-- MySQL dump 10.13  Distrib 8.0.42, for Linux (x86_64)
--
-- Host: localhost    Database: biomechanicseducation
-- ------------------------------------------------------
-- Server version	8.0.42-0ubuntu0.24.04.1

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `6m7_actionscheduler_actions`
--

DROP TABLE IF EXISTS `6m7_actionscheduler_actions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_actionscheduler_actions` (
  `action_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `hook` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  `priority` tinyint unsigned NOT NULL DEFAULT '10',
  `args` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schedule` longtext COLLATE utf8mb4_unicode_520_ci,
  `group_id` bigint unsigned NOT NULL DEFAULT '0',
  `attempts` int NOT NULL DEFAULT '0',
  `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00',
  `claim_id` bigint unsigned NOT NULL DEFAULT '0',
  `extended_args` varchar(8000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`action_id`),
  KEY `hook_status_scheduled_date_gmt` (`hook`(163),`status`,`scheduled_date_gmt`),
  KEY `status_scheduled_date_gmt` (`status`,`scheduled_date_gmt`),
  KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
  KEY `args` (`args`),
  KEY `group_id` (`group_id`),
  KEY `last_attempt_gmt` (`last_attempt_gmt`),
  KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=41158 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_actionscheduler_actions`
--

LOCK TABLES `6m7_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `6m7_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `6m7_actionscheduler_actions` VALUES (41155,'action_scheduler/migration_hook','failed','2024-10-10 13:59:27','2024-10-10 13:59:27',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728568767;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728568767;}',1,1,'2024-10-10 13:59:58','2024-10-10 13:59:58',0,NULL),(41156,'action_scheduler/migration_hook','failed','2024-10-10 14:01:57','2024-10-10 14:01:57',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728568917;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728568917;}',1,1,'2024-10-10 14:01:58','2024-10-10 14:01:58',0,NULL),(41157,'action_scheduler/migration_hook','pending','2024-10-10 14:03:42','2024-10-10 14:03:42',10,'[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1728569022;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1728569022;}',1,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL);
/*!40000 ALTER TABLE `6m7_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_actionscheduler_claims`
--

DROP TABLE IF EXISTS `6m7_actionscheduler_claims`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_actionscheduler_claims` (
  `claim_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `date_created_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`claim_id`),
  KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_actionscheduler_claims`
--

LOCK TABLES `6m7_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `6m7_actionscheduler_claims` DISABLE KEYS */;
/*!40000 ALTER TABLE `6m7_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_actionscheduler_groups`
--

DROP TABLE IF EXISTS `6m7_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_actionscheduler_groups` (
  `group_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_actionscheduler_groups`
--

LOCK TABLES `6m7_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `6m7_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `6m7_actionscheduler_groups` VALUES (1,'action-scheduler-migration');
/*!40000 ALTER TABLE `6m7_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_actionscheduler_logs`
--

DROP TABLE IF EXISTS `6m7_actionscheduler_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_actionscheduler_logs` (
  `log_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `action_id` bigint unsigned NOT NULL,
  `message` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00',
  `log_date_local` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`log_id`),
  KEY `action_id` (`action_id`),
  KEY `log_date_gmt` (`log_date_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_actionscheduler_logs`
--

LOCK TABLES `6m7_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `6m7_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `6m7_actionscheduler_logs` VALUES (1,41155,'action created','2024-10-10 13:58:27','2024-10-10 13:58:27'),(2,41155,'action started via Async Request','2024-10-10 13:59:58','2024-10-10 13:59:58'),(3,41155,'action failed via Async Request: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2024-10-10 13:59:58','2024-10-10 13:59:58'),(4,41156,'action created','2024-10-10 14:00:57','2024-10-10 14:00:57'),(5,41156,'action started via Async Request','2024-10-10 14:01:58','2024-10-10 14:01:58'),(6,41156,'action failed via Async Request: Scheduled action for action_scheduler/migration_hook will not be executed as no callbacks are registered.','2024-10-10 14:01:58','2024-10-10 14:01:58'),(7,41157,'action created','2024-10-10 14:02:42','2024-10-10 14:02:42');
/*!40000 ALTER TABLE `6m7_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_commentmeta`
--

DROP TABLE IF EXISTS `6m7_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_commentmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_commentmeta`
--

LOCK TABLES `6m7_commentmeta` WRITE;
/*!40000 ALTER TABLE `6m7_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `6m7_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_comments`
--

DROP TABLE IF EXISTS `6m7_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_comments` (
  `comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `comment_karma` int NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint unsigned NOT NULL DEFAULT '0',
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_comments`
--

LOCK TABLES `6m7_comments` WRITE;
/*!40000 ALTER TABLE `6m7_comments` DISABLE KEYS */;
INSERT INTO `6m7_comments` VALUES (2,33064,'Sue Hardaker','hello@bee-lieveinyou.com','http://www.bee-lieveinyou.com','2.221.195.99','2022-07-19 07:41:14','2022-07-19 07:41:14','Fantastic content Rach, explaining what we do .. love it',0,'1','','comment',0,0),(3,33064,'Rachel Frances Thomson','rachel@biomechanicseducation.com','','95.150.54.79','2022-07-19 13:54:35','2022-07-19 13:54:35','next week - What is biomechanics coaching?\n\nxx',0,'1','','comment',2,3),(4,31258,'Jacque Chapman','c_jacque1@hotmail.com','','88.104.207.7','2022-02-05 12:07:49','2022-02-05 12:07:49','Will this be available to review as l am unable to attend.',0,'1','','comment',0,0),(5,31258,'Rachel Frances Thomson','rachel@biomechanicseducation.com','','46.69.101.70','2022-02-14 11:18:57','2022-02-14 11:18:57','Yes it will Jacque',0,'1','','comment',4,3),(6,29658,'Catherine Hilton','Catherineahilton@aol.com','','90.222.32.170','2021-09-28 11:39:34','2021-09-28 11:39:34','Hi Rachel\n\n\nI have been watching your Shoulder biomechanics u tube session this morning, and then your e mail popped up!  Happy Birthday, you look fabulous and I enjoy your anatomy and biomechanics explanations.  Enjoy your day and I look forward to continue watching your videos and your regular updates.  Best   Catherine',0,'1','','comment',0,0),(7,29658,'Rachel Frances Thomson','rachel@biomechanicseducation.com','','86.153.161.49','2021-10-02 05:51:47','2021-10-02 05:51:47','Hi Catherine \nhope you like them!!?',0,'1','','comment',6,3),(8,12216,'Brian','Brian@gmail.com','http://prowlshop.top','45.76.126.248','2019-03-20 18:32:46','2019-03-20 18:32:46','what is a lunge hold  2019',0,'1','','comment',0,0),(9,12216,'Rachel France','rachel@biomechanicseducation.com','','109.149.179.9','2019-03-25 12:50:54','2019-03-25 12:50:54','Hi Brian\n\nSorry I am not sure I understand the question clearly? Are you asking me what a LUNGE HOLD is?',0,'1','','comment',8,3),(10,14072,'Alison Plant','plantlet44@googlemail.com','','78.150.185.64','2019-06-08 19:36:21','2019-06-08 19:36:21','thank you for the post Rachel!  I do hope that walking might be seen more positively again, for all of those people intimidated or unable to run or how simply don\'t like it!',0,'1','','comment',0,0),(11,14072,'Rachel France','rachel@biomechanicseducation.com','','46.69.239.52','2019-06-16 18:59:12','2019-06-16 18:59:12','Hey Alison \n\nIts great to hear from you and you are welcome!\nYes I agree, I am certainly a fan and try to encourage others that a little bit consistently makes a huge difference. \n\nWhen will we see you again?',0,'1','','comment',10,3),(12,19072,'Mike Stamp','mikestampphysio@gmail.com','http://facebook.com/mikestampphysiotherapy','62.6.52.9','2019-12-20 08:40:35','2019-12-20 08:40:35','As a physiotherapist primarily and a strength &amp; conditioning coach secondly, I would be very keen to gauge your feedback on what some so called, self professed \"experts in our field\" are beginning to suggest that it doesn\'t matter how we move, as long as we move. \n\nI am personally in the camp of move but move well. I have had heated debates with some of these people whose only retort is \"there\'s no evidence...\" To me, it is simple bio-mechanics: The body is like water - it will take the path of least resistance, it doesn\'t mean we want the water to move that way. Sometimes, we have to show the body how to move.',0,'1','','comment',0,0),(13,19072,'Rachel France','rachel@biomechanicseducation.com','','31.124.12.48','2019-12-23 20:45:47','2019-12-23 20:45:47','Hi Mike,\n\nI have to say I am in your camp in terms of moving well however I see that what causes controversy is in fact ambiguous communication, particularly on social media and in text. \nThe \'biomechanical model\' is being challenged, and I welcome being challenged, encourage it in fact! Yet when broken down into clear language we are all really doing & aiming for very similar, if not the same things, really.\n\nMy specialism in \'intrinsic\' biomechanics is actually what most practices talk about as being the way to work - which is understanding the inner workings of the body. Ultimately the body is an integrated system & one area can affect another, which we ALL seem to agree on BUT I have yet to see any profession actually practise this in application. \n\nAnything that cannot be proven, even with evidence, like the inner workings of a live human and what is happening to the 3 sub systems inside of us is always going to cause debate because NO ONE can prove their view. One paper proves a method works, where another proves the opposite. MRI\'s are being challenged, pain is subjective, every body is different.\n\nSo what we MUST have confidence with is a). Saying the we dont know b). Referring when we feel another professional is better placed to help. c) ALWAYS putting the individual in front if us first, over any research paper or evidence or guru\'s methods.\n\nWe are ALL helping some people and not others because everything will help someone but rarely everyone\n\nI for one rarely, if ever these days, get onto those debates anymore buddy since I find them frustrating and unproductive. \nIf you ever want to chat feel free to contact me 07976 933113 \n\nPeace & Merry Xmas!',0,'1','','comment',12,3),(14,16411,'Tope','tikaret@gmail.com','','82.30.13.236','2019-08-27 07:30:07','2019-08-27 07:30:07','What a fantastic piece, simply challenging and very informative, thank you!',0,'1','','comment',0,0),(15,16411,'Rachel France','rachel@biomechanicseducation.com','','86.141.86.52','2019-08-28 08:25:53','2019-08-28 08:25:53','Thanks Tope!',0,'1','','comment',14,3),(16,17101,'Louise Morrison','Louise808@gmail.com','','81.141.228.30','2019-09-17 07:36:56','2019-09-17 07:36:56','I love this article. I shut down all my social media accounts due to trolling / stalking. It was intense and escalated to emails that pulled info on me over years and years. Put me right off posting but now I think about posting  more credible content. Now I\'m grateful for the learning the experience gave  me. \nLove &amp; light',0,'1','','comment',0,0),(17,17101,'Rachel France','rachel@biomechanicseducation.com','','86.156.177.2','2019-09-23 09:24:10','2019-09-23 09:24:10','Amen Lou!!',0,'1','','comment',16,3),(18,17261,'Susan Adams','suzadams@live.co.uk','','148.252.129.192','2019-09-24 08:11:22','2019-09-24 08:11:22','Great advice! I would add to it by saying it depends on where u are starting from. Perhaps acknowledging the barriers and setting the motivations/solutions to them as so many are put off or limited by kids, time, mental health, feeling overwhelmed, lack of support etc. With that said, bumping into an inspirational person who is willing to help  can give them that boost they needed. . Despite our own issues we can always be that person.. Just like u say.. Random act of kindness, a listening ear. People need to know they matter. Great post thanks Rach!',0,'1','','comment',0,0),(19,17261,'Ranjit Saroy','Ranjitsaroy@mail.com','','217.43.94.81','2019-09-24 20:24:30','2019-09-24 20:24:30','Hey amazing tips which I will definitely adopt.. You’re looking bloody amazing love. You’ve not changed since I last saw you in 2017 when I moved to Manchester. \nHave an amazing birthday lots of love Ranjit xxx',0,'1','','comment',0,0),(20,17261,'Rachel France','rachel@biomechanicseducation.com','','86.156.177.2','2019-09-25 10:05:46','2019-09-25 10:05:46','Hey Ranjit!\nGreat to hear from you! I hope all is well and thank you - I am  xx',0,'1','','comment',19,3),(21,17261,'Rachel France','rachel@biomechanicseducation.com','','86.156.177.2','2019-09-25 10:06:47','2019-09-25 10:06:47','You my friend are pretty fantastic and your name comes up in many of my conversations to other learners! \nYOU bring ME joy! \n\nx',0,'1','','comment',18,3),(22,17261,'Rachel France','rachel@biomechanicseducation.com','','95.150.104.169','2019-12-03 15:58:32','2019-12-03 15:58:32','Aww Susan I have only just found this comment on the website - faaaanxxx!!',0,'1','','comment',21,3),(23,19975,'Ginny Winder','ginnywinder@btinternet.com','','81.158.242.97','2020-02-18 08:07:41','2020-02-18 08:07:41','Really interesting article Rachel... I shall buy this book. I herniated two discs two years ago and still recovering... I can’t run but I’m rehabilitating slowly and surely . Hope to run for the pleasure of it - with my sons in the future.',0,'1','','comment',0,0),(24,19975,'Rachel France','rachel@biomechanicseducation.com','','109.149.35.195','2020-02-18 13:27:32','2020-02-18 13:27:32','Hey Ginny\nThanks for your message and this style of strength training would be ideal for someone rehabbing!\nLet me know who you get on!',0,'1','','comment',23,3),(25,22901,'Toni Hopkins','toni@toniqueholistics.co.uk','http://toniqueholistics.co.uk','80.195.143.74','2020-06-30 08:33:15','2020-06-30 08:33:15','Good morning Racheal, \nThank you for this post. I have been studying the art of movement now for some time and have been moving away from repetition and sets.in certain areas. It was a biography on Joseph Pilates ,once a weak and sickly man ,who then went on to change the way we are physically active.The rest is history.\n\nJoseph Pilates, in my opinion, related to the body on a different level.  He observed and he listened to it. Eventually coming to the conclusion that the human body isn\'t good with repetition. His philosophy was to perform a movement once- but with absolute perfection. If we watch gymnastics display we see evidence of this -a series of movements performed to perfection. I would love to know what he he thinks of our fitness industry as it is today.\nI feel he would be disappointed to see how \'some\'classes using his name are practicing today.\n\nAt the beginning of the year I began studying a course on  exercise considerations for the older adult . Being part of the aging population and feeling seeing and experiencing changes in my body, especially in relation to exercise, I  wanted to know why these changes were happening and why I could perform certain actitvities as well as I did a couple of years ago !  \n\nThe course has changed the way I think and feel about physical activity and exercise. Having the knowledge to back up all the physical and mental changes at different stages in our life is empowering. It\'s given me the credibility and acceptance to do things differently- and that it\'s ok to slow down. \n\nWe don\'t get old- we evolve and we must repect the fact that our bodies need  different methods of care and nurturing at specific times in our lives . If we adapt to this with humble abode and act accordingly,  undoubtedly ,we\'ll be better for it.',0,'1','','comment',0,0),(26,22901,'Rachel France','rachel@biomechanicseducation.com','','46.69.163.35','2020-06-30 11:24:12','2020-06-30 11:24:12','Hey Toni\n\nIts great to hear from you & I hope you are well!\n\nI agree with you for the most part but I still think there is a place for everything. Being an \'exercise\' professional for 30 years has taught me that no \'exercise or movement\' is controversial IF it\'s appropriate for the desired goal, the individuals biomechanics and tissue tolerance. Movement isn\'t always safe or perfect when you consider olympic lifting or gymnastics and yet they are beautiful to watch. \nSo I think as long as we accept each individual body, work bespokely with that body and assist with creating clear sensible SMART goals we can only be limited by our imagination!\nHowever with your population of clients (older adults) it can literally be about movement quality and FEELING like they move well, nimbly or with haste. Then of course reps and sets maybe less enticing. In fact time under tension (TUT) I have found to be great for loading more safely with this demographic. \n\nRach\n\nx',0,'1','','comment',25,3),(27,24764,'Pete Jane','69janey@live.co.uk','','109.150.98.40','2020-11-11 06:50:39','2020-11-11 06:50:39','Very Informative  and interesting read , looking forward too enrolling into your courses in due course.',0,'1','','comment',0,0),(28,24764,'Rachel France','rachel@biomechanicseducation.com','','95.144.201.135','2020-11-12 11:05:50','2020-11-12 11:05:50','Thank you Pete - keep watching - Spine Biomechanics next!\nWe\'d love to have you join us!',0,'1','','comment',27,3),(29,25961,'Michael Burrows','burrows.thefoot@gmail.com','','92.12.130.179','2021-02-05 21:13:14','2021-02-05 21:13:14','Really enjoyed the knee biomechanics, as I  have had a recent problem with osteoarthritis.',0,'1','','comment',0,0),(30,25961,'Rachel France','rachel@biomechanicseducation.com','','95.147.86.25','2021-02-06 08:45:47','2021-02-06 08:45:47','So glad it you enjoyed it Michael!',0,'1','','comment',29,3);
/*!40000 ALTER TABLE `6m7_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_links`
--

DROP TABLE IF EXISTS `6m7_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_links` (
  `link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint unsigned NOT NULL DEFAULT '1',
  `link_rating` int NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_links`
--

LOCK TABLES `6m7_links` WRITE;
/*!40000 ALTER TABLE `6m7_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `6m7_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_options`
--

DROP TABLE IF EXISTS `6m7_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_options` (
  `option_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=1776 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_options`
--

LOCK TABLES `6m7_options` WRITE;
/*!40000 ALTER TABLE `6m7_options` DISABLE KEYS */;
INSERT INTO `6m7_options` VALUES (1,'siteurl','https://biomechanicseducation.com','yes'),(2,'home','https://biomechanicseducation.com','yes'),(3,'blogname','Biomechanics Education','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','matt@studiofinesse.co.uk','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','5','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:285:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:52:\"blog-format/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=blog-format&term=$matches[1]&feed=$matches[2]\";s:47:\"blog-format/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=blog-format&term=$matches[1]&feed=$matches[2]\";s:28:\"blog-format/([^/]+)/embed/?$\";s:58:\"index.php?taxonomy=blog-format&term=$matches[1]&embed=true\";s:40:\"blog-format/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?taxonomy=blog-format&term=$matches[1]&paged=$matches[2]\";s:22:\"blog-format/([^/]+)/?$\";s:47:\"index.php?taxonomy=blog-format&term=$matches[1]\";s:53:\"course-level/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?taxonomy=course-level&term=$matches[1]&feed=$matches[2]\";s:48:\"course-level/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?taxonomy=course-level&term=$matches[1]&feed=$matches[2]\";s:29:\"course-level/([^/]+)/embed/?$\";s:59:\"index.php?taxonomy=course-level&term=$matches[1]&embed=true\";s:41:\"course-level/([^/]+)/page/?([0-9]{1,})/?$\";s:66:\"index.php?taxonomy=course-level&term=$matches[1]&paged=$matches[2]\";s:23:\"course-level/([^/]+)/?$\";s:48:\"index.php?taxonomy=course-level&term=$matches[1]\";s:121:\"courses/((?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars))/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?course-cat=$matches[1]&feed=$matches[2]\";s:116:\"courses/((?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars))/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?course-cat=$matches[1]&feed=$matches[2]\";s:97:\"courses/((?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars))/embed/?$\";s:43:\"index.php?course-cat=$matches[1]&embed=true\";s:109:\"courses/((?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars))/page/?([0-9]{1,})/?$\";s:50:\"index.php?course-cat=$matches[1]&paged=$matches[2]\";s:91:\"courses/((?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars))/?$\";s:32:\"index.php?course-cat=$matches[1]\";s:114:\"courses/(?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars)/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:124:\"courses/(?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars)/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:144:\"courses/(?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars)/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:139:\"courses/(?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars)/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:139:\"courses/(?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars)/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:120:\"courses/(?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars)/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:105:\"courses/((?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars))/([^/]+)/embed/?$\";s:62:\"index.php?course-cat=$matches[1]&course=$matches[2]&embed=true\";s:109:\"courses/((?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars))/([^/]+)/trackback/?$\";s:56:\"index.php?course-cat=$matches[1]&course=$matches[2]&tb=1\";s:117:\"courses/((?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars))/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?course-cat=$matches[1]&course=$matches[2]&paged=$matches[3]\";s:124:\"courses/((?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars))/([^/]+)/comment-page-([0-9]{1,})/?$\";s:69:\"index.php?course-cat=$matches[1]&course=$matches[2]&cpage=$matches[3]\";s:113:\"courses/((?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars))/([^/]+)(?:/([0-9]+))?/?$\";s:68:\"index.php?course-cat=$matches[1]&course=$matches[2]&page=$matches[3]\";s:103:\"courses/(?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars)/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:113:\"courses/(?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars)/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:133:\"courses/(?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars)/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:128:\"courses/(?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars)/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:128:\"courses/(?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars)/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:109:\"courses/(?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars)/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:116:\"courses/((?:biomechanics|cpd-courses|in-person-cpd-courses|online-cpd-courses|webinars))/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?course-cat=$matches[1]&cpage=$matches[2]\";s:50:\"resources/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?resource-format=$matches[1]&feed=$matches[2]\";s:45:\"resources/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?resource-format=$matches[1]&feed=$matches[2]\";s:26:\"resources/([^/]+)/embed/?$\";s:48:\"index.php?resource-format=$matches[1]&embed=true\";s:38:\"resources/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?resource-format=$matches[1]&paged=$matches[2]\";s:20:\"resources/([^/]+)/?$\";s:37:\"index.php?resource-format=$matches[1]\";s:43:\"resources/[^/]+/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"resources/[^/]+/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"resources/[^/]+/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"resources/[^/]+/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"resources/[^/]+/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"resources/[^/]+/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:34:\"resources/([^/]+)/([^/]+)/embed/?$\";s:69:\"index.php?resource-format=$matches[1]&resource=$matches[2]&embed=true\";s:38:\"resources/([^/]+)/([^/]+)/trackback/?$\";s:63:\"index.php?resource-format=$matches[1]&resource=$matches[2]&tb=1\";s:46:\"resources/([^/]+)/([^/]+)/page/?([0-9]{1,})/?$\";s:76:\"index.php?resource-format=$matches[1]&resource=$matches[2]&paged=$matches[3]\";s:53:\"resources/([^/]+)/([^/]+)/comment-page-([0-9]{1,})/?$\";s:76:\"index.php?resource-format=$matches[1]&resource=$matches[2]&cpage=$matches[3]\";s:42:\"resources/([^/]+)/([^/]+)(?:/([0-9]+))?/?$\";s:75:\"index.php?resource-format=$matches[1]&resource=$matches[2]&page=$matches[3]\";s:32:\"resources/[^/]+/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"resources/[^/]+/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"resources/[^/]+/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"resources/[^/]+/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"resources/[^/]+/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"resources/[^/]+/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:45:\"resources/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?resource-format=$matches[1]&cpage=$matches[2]\";s:32:\"faqs/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"faqs/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"faqs/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"faqs/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"faqs/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"faqs/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:21:\"faqs/([^/]+)/embed/?$\";s:37:\"index.php?faqs=$matches[1]&embed=true\";s:25:\"faqs/([^/]+)/trackback/?$\";s:31:\"index.php?faqs=$matches[1]&tb=1\";s:33:\"faqs/([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?faqs=$matches[1]&paged=$matches[2]\";s:40:\"faqs/([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?faqs=$matches[1]&cpage=$matches[2]\";s:29:\"faqs/([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?faqs=$matches[1]&page=$matches[2]\";s:21:\"faqs/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:31:\"faqs/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:51:\"faqs/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"faqs/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:46:\"faqs/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:27:\"faqs/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:48:\"faq-cat/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?faq-cat=$matches[1]&feed=$matches[2]\";s:43:\"faq-cat/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?faq-cat=$matches[1]&feed=$matches[2]\";s:24:\"faq-cat/([^/]+)/embed/?$\";s:40:\"index.php?faq-cat=$matches[1]&embed=true\";s:36:\"faq-cat/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?faq-cat=$matches[1]&paged=$matches[2]\";s:18:\"faq-cat/([^/]+)/?$\";s:29:\"index.php?faq-cat=$matches[1]\";s:43:\"success-stories/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"success-stories/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"success-stories/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"success-stories/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"success-stories/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"success-stories/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"success-stories/([^/]+)/embed/?$\";s:44:\"index.php?testimonial=$matches[1]&embed=true\";s:36:\"success-stories/([^/]+)/trackback/?$\";s:38:\"index.php?testimonial=$matches[1]&tb=1\";s:44:\"success-stories/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?testimonial=$matches[1]&paged=$matches[2]\";s:51:\"success-stories/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?testimonial=$matches[1]&cpage=$matches[2]\";s:40:\"success-stories/([^/]+)(?:/([0-9]+))?/?$\";s:50:\"index.php?testimonial=$matches[1]&page=$matches[2]\";s:32:\"success-stories/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"success-stories/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"success-stories/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"success-stories/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"success-stories/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"success-stories/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"ambassador/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"ambassador/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"ambassador/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"ambassador/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"ambassador/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"ambassador/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"ambassador/([^/]+)/embed/?$\";s:43:\"index.php?ambassador=$matches[1]&embed=true\";s:31:\"ambassador/([^/]+)/trackback/?$\";s:37:\"index.php?ambassador=$matches[1]&tb=1\";s:39:\"ambassador/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?ambassador=$matches[1]&paged=$matches[2]\";s:46:\"ambassador/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?ambassador=$matches[1]&cpage=$matches[2]\";s:35:\"ambassador/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?ambassador=$matches[1]&page=$matches[2]\";s:27:\"ambassador/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"ambassador/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"ambassador/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"ambassador/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"ambassador/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"ambassador/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"tutor/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"tutor/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"tutor/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"tutor/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"tutor/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"tutor/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"tutor/([^/]+)/embed/?$\";s:38:\"index.php?tutor=$matches[1]&embed=true\";s:26:\"tutor/([^/]+)/trackback/?$\";s:32:\"index.php?tutor=$matches[1]&tb=1\";s:34:\"tutor/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?tutor=$matches[1]&paged=$matches[2]\";s:41:\"tutor/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?tutor=$matches[1]&cpage=$matches[2]\";s:30:\"tutor/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?tutor=$matches[1]&page=$matches[2]\";s:22:\"tutor/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"tutor/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"tutor/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"tutor/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"tutor/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"tutor/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"authors/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"authors/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"authors/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"authors/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"authors/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"authors/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"authors/([^/]+)/embed/?$\";s:43:\"index.php?fft_author=$matches[1]&embed=true\";s:28:\"authors/([^/]+)/trackback/?$\";s:37:\"index.php?fft_author=$matches[1]&tb=1\";s:36:\"authors/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?fft_author=$matches[1]&paged=$matches[2]\";s:43:\"authors/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?fft_author=$matches[1]&cpage=$matches[2]\";s:32:\"authors/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?fft_author=$matches[1]&page=$matches[2]\";s:24:\"authors/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"authors/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"authors/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"authors/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"authors/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"authors/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:37:\"locations/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"locations/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"locations/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"locations/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"locations/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"locations/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:26:\"locations/([^/]+)/embed/?$\";s:41:\"index.php?location=$matches[1]&embed=true\";s:30:\"locations/([^/]+)/trackback/?$\";s:35:\"index.php?location=$matches[1]&tb=1\";s:38:\"locations/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?location=$matches[1]&paged=$matches[2]\";s:45:\"locations/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?location=$matches[1]&cpage=$matches[2]\";s:34:\"locations/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?location=$matches[1]&page=$matches[2]\";s:26:\"locations/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"locations/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"locations/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"locations/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"locations/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:32:\"locations/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"venue/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"venue/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"venue/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"venue/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:22:\"venue/([^/]+)/embed/?$\";s:38:\"index.php?venue=$matches[1]&embed=true\";s:26:\"venue/([^/]+)/trackback/?$\";s:32:\"index.php?venue=$matches[1]&tb=1\";s:34:\"venue/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?venue=$matches[1]&paged=$matches[2]\";s:41:\"venue/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?venue=$matches[1]&cpage=$matches[2]\";s:30:\"venue/([^/]+)(?:/([0-9]+))?/?$\";s:44:\"index.php?venue=$matches[1]&page=$matches[2]\";s:22:\"venue/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"venue/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"venue/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"venue/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:55:\"venue-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?taxonomy=venue-category&term=$matches[1]&feed=$matches[2]\";s:50:\"venue-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?taxonomy=venue-category&term=$matches[1]&feed=$matches[2]\";s:31:\"venue-category/([^/]+)/embed/?$\";s:61:\"index.php?taxonomy=venue-category&term=$matches[1]&embed=true\";s:43:\"venue-category/([^/]+)/page/?([0-9]{1,})/?$\";s:68:\"index.php?taxonomy=venue-category&term=$matches[1]&paged=$matches[2]\";s:25:\"venue-category/([^/]+)/?$\";s:50:\"index.php?taxonomy=venue-category&term=$matches[1]\";s:47:\"region/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?taxonomy=region&term=$matches[1]&feed=$matches[2]\";s:42:\"region/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?taxonomy=region&term=$matches[1]&feed=$matches[2]\";s:23:\"region/([^/]+)/embed/?$\";s:53:\"index.php?taxonomy=region&term=$matches[1]&embed=true\";s:35:\"region/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?taxonomy=region&term=$matches[1]&paged=$matches[2]\";s:17:\"region/([^/]+)/?$\";s:42:\"index.php?taxonomy=region&term=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:24:\"index.php??sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=7&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:19:{i:0;s:33:\"acf-extended-pro/acf-extended.php\";i:1;s:34:\"advanced-custom-fields-pro/acf.php\";i:2;s:33:\"classic-editor/classic-editor.php\";i:3;s:37:\"disable-comments/disable-comments.php\";i:4;s:33:\"disable-emojis/disable-emojis.php\";i:5;s:33:\"duplicate-term/duplicate-term.php\";i:6;s:45:\"enable-media-replace/enable-media-replace.php\";i:7;s:25:\"finesse-wp/finesse-wp.php\";i:8;s:41:\"future-fit-plugin/future-fit-training.php\";i:9;s:38:\"post-duplicator/m4c-postduplicator.php\";i:10;s:27:\"redirection/redirection.php\";i:11;s:21:\"safe-svg/safe-svg.php\";i:12;s:53:\"simple-custom-post-order/simple-custom-post-order.php\";i:13;s:21:\"spinupwp/spinupwp.php\";i:14;s:31:\"tracking-code-manager/index.php\";i:15;s:33:\"user-switching/user-switching.php\";i:16;s:41:\"wordpress-importer/wordpress-importer.php\";i:17;s:24:\"wordpress-seo/wp-seo.php\";i:18;s:39:\"wp-migrate-db-pro/wp-migrate-db-pro.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','fft','yes'),(41,'stylesheet','biomechanics-education','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','58975','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','0','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','400','yes'),(57,'thumbnail_size_h','9999','yes'),(58,'thumbnail_crop','0','yes'),(59,'medium_size_w','900','yes'),(60,'medium_size_h','9999','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1200','yes'),(63,'large_size_h','9999','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','large','yes'),(66,'image_default_align','none','yes'),(67,'close_comments_for_old_posts','0','yes'),(68,'close_comments_days_old','14','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','50','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','auto'),(79,'uninstall_plugins','a:6:{s:21:\"spinupwp/spinupwp.php\";a:2:{i:0;s:15:\"SpinupWp\\Plugin\";i:1;s:9:\"uninstall\";}s:45:\"enable-media-replace/enable-media-replace.php\";a:2:{i:0;s:33:\"\\EnableMediaReplace\\InstallHelper\";i:1;s:15:\"uninstallPlugin\";}s:53:\"simple-custom-post-order/simple-custom-post-order.php\";s:18:\"scporder_uninstall\";s:24:\"wordpress-seo/wp-seo.php\";s:14:\"__return_false\";s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}s:31:\"tracking-code-manager/index.php\";s:14:\"tcmp_uninstall\";}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','7','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','41748','on'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1752312289','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','off'),(99,'wp_attachment_pages_enabled','0','yes'),(100,'initial_db_version','57155','yes'),(101,'6m7_user_roles','a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:64:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:15:\"duplicate_posts\";b:1;s:22:\"duplicate_others_posts\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:25:\"gravityforms_view_entries\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:15:\"duplicate_posts\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:11:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:15:\"duplicate_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:6:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:15:\"duplicate_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:39:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:25:\"gravityforms_view_entries\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:37:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:25:\"gravityforms_view_entries\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}s:10:\"site_owner\";a:2:{s:4:\"name\";s:10:\"Site Owner\";s:12:\"capabilities\";a:56:{s:10:\"edit_users\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:15:\"duplicate_posts\";b:1;s:22:\"duplicate_others_posts\";b:1;s:17:\"gform_full_access\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:23:\"wf2fa_activate_2fa_self\";b:1;}}}','on'),(102,'fresh_site','0','off'),(103,'user_count','12','off'),(104,'widget_block','a:6:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(105,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:13:\"array_version\";i:3;}','yes'),(106,'cron','a:20:{i:1751621195;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1751621937;a:1:{s:8:\"fft_sync\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1751628395;a:4:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1751628683;a:3:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1751628684;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1751633589;a:2:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1751634061;a:1:{s:27:\"tcmp_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1751705627;a:1:{s:22:\"redirection_log_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1751887598;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1751888336;a:1:{s:27:\"acf_update_site_health_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1751958001;a:1:{s:19:\"publish_future_post\";a:1:{s:32:\"94890c4de47fe05dededfcd02b667991\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:43019;}}}}i:1751973995;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1751979661;a:1:{s:28:\"tcmp_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1752566429;a:1:{s:19:\"publish_future_post\";a:1:{s:32:\"1633186fc9365a653ccdd3457ab6e6aa\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:43066;}}}}i:1753171228;a:1:{s:19:\"publish_future_post\";a:1:{s:32:\"42e379b3f93210e66f1014cc79bd24b0\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:43069;}}}}i:1753776024;a:1:{s:19:\"publish_future_post\";a:1:{s:32:\"169387199f181c90c449081bf3e9352d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:43073;}}}}i:1754380829;a:1:{s:19:\"publish_future_post\";a:1:{s:32:\"42fa0c248027c6218846940973843aae\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:43081;}}}}i:1754985630;a:1:{s:19:\"publish_future_post\";a:1:{s:32:\"9e2a62408b337ecba9b206aa7f8e0a5d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:43078;}}}}i:1755590432;a:1:{s:19:\"publish_future_post\";a:1:{s:32:\"77436f57f48764efcb89af16d4a742bf\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:43040;}}}}s:7:\"version\";i:2;}','on'),(107,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(121,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.5.5\";s:5:\"files\";a:500:{i:0;s:23:\"archives/editor-rtl.css\";i:1;s:27:\"archives/editor-rtl.min.css\";i:2;s:19:\"archives/editor.css\";i:3;s:23:\"archives/editor.min.css\";i:4;s:22:\"archives/style-rtl.css\";i:5;s:26:\"archives/style-rtl.min.css\";i:6;s:18:\"archives/style.css\";i:7;s:22:\"archives/style.min.css\";i:8;s:20:\"audio/editor-rtl.css\";i:9;s:24:\"audio/editor-rtl.min.css\";i:10;s:16:\"audio/editor.css\";i:11;s:20:\"audio/editor.min.css\";i:12;s:19:\"audio/style-rtl.css\";i:13;s:23:\"audio/style-rtl.min.css\";i:14;s:15:\"audio/style.css\";i:15;s:19:\"audio/style.min.css\";i:16;s:19:\"audio/theme-rtl.css\";i:17;s:23:\"audio/theme-rtl.min.css\";i:18;s:15:\"audio/theme.css\";i:19;s:19:\"audio/theme.min.css\";i:20;s:21:\"avatar/editor-rtl.css\";i:21;s:25:\"avatar/editor-rtl.min.css\";i:22;s:17:\"avatar/editor.css\";i:23;s:21:\"avatar/editor.min.css\";i:24;s:20:\"avatar/style-rtl.css\";i:25;s:24:\"avatar/style-rtl.min.css\";i:26;s:16:\"avatar/style.css\";i:27;s:20:\"avatar/style.min.css\";i:28;s:20:\"block/editor-rtl.css\";i:29;s:24:\"block/editor-rtl.min.css\";i:30;s:16:\"block/editor.css\";i:31;s:20:\"block/editor.min.css\";i:32;s:21:\"button/editor-rtl.css\";i:33;s:25:\"button/editor-rtl.min.css\";i:34;s:17:\"button/editor.css\";i:35;s:21:\"button/editor.min.css\";i:36;s:20:\"button/style-rtl.css\";i:37;s:24:\"button/style-rtl.min.css\";i:38;s:16:\"button/style.css\";i:39;s:20:\"button/style.min.css\";i:40;s:22:\"buttons/editor-rtl.css\";i:41;s:26:\"buttons/editor-rtl.min.css\";i:42;s:18:\"buttons/editor.css\";i:43;s:22:\"buttons/editor.min.css\";i:44;s:21:\"buttons/style-rtl.css\";i:45;s:25:\"buttons/style-rtl.min.css\";i:46;s:17:\"buttons/style.css\";i:47;s:21:\"buttons/style.min.css\";i:48;s:22:\"calendar/style-rtl.css\";i:49;s:26:\"calendar/style-rtl.min.css\";i:50;s:18:\"calendar/style.css\";i:51;s:22:\"calendar/style.min.css\";i:52;s:25:\"categories/editor-rtl.css\";i:53;s:29:\"categories/editor-rtl.min.css\";i:54;s:21:\"categories/editor.css\";i:55;s:25:\"categories/editor.min.css\";i:56;s:24:\"categories/style-rtl.css\";i:57;s:28:\"categories/style-rtl.min.css\";i:58;s:20:\"categories/style.css\";i:59;s:24:\"categories/style.min.css\";i:60;s:19:\"code/editor-rtl.css\";i:61;s:23:\"code/editor-rtl.min.css\";i:62;s:15:\"code/editor.css\";i:63;s:19:\"code/editor.min.css\";i:64;s:18:\"code/style-rtl.css\";i:65;s:22:\"code/style-rtl.min.css\";i:66;s:14:\"code/style.css\";i:67;s:18:\"code/style.min.css\";i:68;s:18:\"code/theme-rtl.css\";i:69;s:22:\"code/theme-rtl.min.css\";i:70;s:14:\"code/theme.css\";i:71;s:18:\"code/theme.min.css\";i:72;s:22:\"columns/editor-rtl.css\";i:73;s:26:\"columns/editor-rtl.min.css\";i:74;s:18:\"columns/editor.css\";i:75;s:22:\"columns/editor.min.css\";i:76;s:21:\"columns/style-rtl.css\";i:77;s:25:\"columns/style-rtl.min.css\";i:78;s:17:\"columns/style.css\";i:79;s:21:\"columns/style.min.css\";i:80;s:29:\"comment-content/style-rtl.css\";i:81;s:33:\"comment-content/style-rtl.min.css\";i:82;s:25:\"comment-content/style.css\";i:83;s:29:\"comment-content/style.min.css\";i:84;s:30:\"comment-template/style-rtl.css\";i:85;s:34:\"comment-template/style-rtl.min.css\";i:86;s:26:\"comment-template/style.css\";i:87;s:30:\"comment-template/style.min.css\";i:88;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:89;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:90;s:38:\"comments-pagination-numbers/editor.css\";i:91;s:42:\"comments-pagination-numbers/editor.min.css\";i:92;s:34:\"comments-pagination/editor-rtl.css\";i:93;s:38:\"comments-pagination/editor-rtl.min.css\";i:94;s:30:\"comments-pagination/editor.css\";i:95;s:34:\"comments-pagination/editor.min.css\";i:96;s:33:\"comments-pagination/style-rtl.css\";i:97;s:37:\"comments-pagination/style-rtl.min.css\";i:98;s:29:\"comments-pagination/style.css\";i:99;s:33:\"comments-pagination/style.min.css\";i:100;s:29:\"comments-title/editor-rtl.css\";i:101;s:33:\"comments-title/editor-rtl.min.css\";i:102;s:25:\"comments-title/editor.css\";i:103;s:29:\"comments-title/editor.min.css\";i:104;s:23:\"comments/editor-rtl.css\";i:105;s:27:\"comments/editor-rtl.min.css\";i:106;s:19:\"comments/editor.css\";i:107;s:23:\"comments/editor.min.css\";i:108;s:22:\"comments/style-rtl.css\";i:109;s:26:\"comments/style-rtl.min.css\";i:110;s:18:\"comments/style.css\";i:111;s:22:\"comments/style.min.css\";i:112;s:20:\"cover/editor-rtl.css\";i:113;s:24:\"cover/editor-rtl.min.css\";i:114;s:16:\"cover/editor.css\";i:115;s:20:\"cover/editor.min.css\";i:116;s:19:\"cover/style-rtl.css\";i:117;s:23:\"cover/style-rtl.min.css\";i:118;s:15:\"cover/style.css\";i:119;s:19:\"cover/style.min.css\";i:120;s:22:\"details/editor-rtl.css\";i:121;s:26:\"details/editor-rtl.min.css\";i:122;s:18:\"details/editor.css\";i:123;s:22:\"details/editor.min.css\";i:124;s:21:\"details/style-rtl.css\";i:125;s:25:\"details/style-rtl.min.css\";i:126;s:17:\"details/style.css\";i:127;s:21:\"details/style.min.css\";i:128;s:20:\"embed/editor-rtl.css\";i:129;s:24:\"embed/editor-rtl.min.css\";i:130;s:16:\"embed/editor.css\";i:131;s:20:\"embed/editor.min.css\";i:132;s:19:\"embed/style-rtl.css\";i:133;s:23:\"embed/style-rtl.min.css\";i:134;s:15:\"embed/style.css\";i:135;s:19:\"embed/style.min.css\";i:136;s:19:\"embed/theme-rtl.css\";i:137;s:23:\"embed/theme-rtl.min.css\";i:138;s:15:\"embed/theme.css\";i:139;s:19:\"embed/theme.min.css\";i:140;s:19:\"file/editor-rtl.css\";i:141;s:23:\"file/editor-rtl.min.css\";i:142;s:15:\"file/editor.css\";i:143;s:19:\"file/editor.min.css\";i:144;s:18:\"file/style-rtl.css\";i:145;s:22:\"file/style-rtl.min.css\";i:146;s:14:\"file/style.css\";i:147;s:18:\"file/style.min.css\";i:148;s:23:\"footnotes/style-rtl.css\";i:149;s:27:\"footnotes/style-rtl.min.css\";i:150;s:19:\"footnotes/style.css\";i:151;s:23:\"footnotes/style.min.css\";i:152;s:23:\"freeform/editor-rtl.css\";i:153;s:27:\"freeform/editor-rtl.min.css\";i:154;s:19:\"freeform/editor.css\";i:155;s:23:\"freeform/editor.min.css\";i:156;s:22:\"gallery/editor-rtl.css\";i:157;s:26:\"gallery/editor-rtl.min.css\";i:158;s:18:\"gallery/editor.css\";i:159;s:22:\"gallery/editor.min.css\";i:160;s:21:\"gallery/style-rtl.css\";i:161;s:25:\"gallery/style-rtl.min.css\";i:162;s:17:\"gallery/style.css\";i:163;s:21:\"gallery/style.min.css\";i:164;s:21:\"gallery/theme-rtl.css\";i:165;s:25:\"gallery/theme-rtl.min.css\";i:166;s:17:\"gallery/theme.css\";i:167;s:21:\"gallery/theme.min.css\";i:168;s:20:\"group/editor-rtl.css\";i:169;s:24:\"group/editor-rtl.min.css\";i:170;s:16:\"group/editor.css\";i:171;s:20:\"group/editor.min.css\";i:172;s:19:\"group/style-rtl.css\";i:173;s:23:\"group/style-rtl.min.css\";i:174;s:15:\"group/style.css\";i:175;s:19:\"group/style.min.css\";i:176;s:19:\"group/theme-rtl.css\";i:177;s:23:\"group/theme-rtl.min.css\";i:178;s:15:\"group/theme.css\";i:179;s:19:\"group/theme.min.css\";i:180;s:21:\"heading/style-rtl.css\";i:181;s:25:\"heading/style-rtl.min.css\";i:182;s:17:\"heading/style.css\";i:183;s:21:\"heading/style.min.css\";i:184;s:19:\"html/editor-rtl.css\";i:185;s:23:\"html/editor-rtl.min.css\";i:186;s:15:\"html/editor.css\";i:187;s:19:\"html/editor.min.css\";i:188;s:20:\"image/editor-rtl.css\";i:189;s:24:\"image/editor-rtl.min.css\";i:190;s:16:\"image/editor.css\";i:191;s:20:\"image/editor.min.css\";i:192;s:19:\"image/style-rtl.css\";i:193;s:23:\"image/style-rtl.min.css\";i:194;s:15:\"image/style.css\";i:195;s:19:\"image/style.min.css\";i:196;s:19:\"image/theme-rtl.css\";i:197;s:23:\"image/theme-rtl.min.css\";i:198;s:15:\"image/theme.css\";i:199;s:19:\"image/theme.min.css\";i:200;s:29:\"latest-comments/style-rtl.css\";i:201;s:33:\"latest-comments/style-rtl.min.css\";i:202;s:25:\"latest-comments/style.css\";i:203;s:29:\"latest-comments/style.min.css\";i:204;s:27:\"latest-posts/editor-rtl.css\";i:205;s:31:\"latest-posts/editor-rtl.min.css\";i:206;s:23:\"latest-posts/editor.css\";i:207;s:27:\"latest-posts/editor.min.css\";i:208;s:26:\"latest-posts/style-rtl.css\";i:209;s:30:\"latest-posts/style-rtl.min.css\";i:210;s:22:\"latest-posts/style.css\";i:211;s:26:\"latest-posts/style.min.css\";i:212;s:18:\"list/style-rtl.css\";i:213;s:22:\"list/style-rtl.min.css\";i:214;s:14:\"list/style.css\";i:215;s:18:\"list/style.min.css\";i:216;s:25:\"media-text/editor-rtl.css\";i:217;s:29:\"media-text/editor-rtl.min.css\";i:218;s:21:\"media-text/editor.css\";i:219;s:25:\"media-text/editor.min.css\";i:220;s:24:\"media-text/style-rtl.css\";i:221;s:28:\"media-text/style-rtl.min.css\";i:222;s:20:\"media-text/style.css\";i:223;s:24:\"media-text/style.min.css\";i:224;s:19:\"more/editor-rtl.css\";i:225;s:23:\"more/editor-rtl.min.css\";i:226;s:15:\"more/editor.css\";i:227;s:19:\"more/editor.min.css\";i:228;s:30:\"navigation-link/editor-rtl.css\";i:229;s:34:\"navigation-link/editor-rtl.min.css\";i:230;s:26:\"navigation-link/editor.css\";i:231;s:30:\"navigation-link/editor.min.css\";i:232;s:29:\"navigation-link/style-rtl.css\";i:233;s:33:\"navigation-link/style-rtl.min.css\";i:234;s:25:\"navigation-link/style.css\";i:235;s:29:\"navigation-link/style.min.css\";i:236;s:33:\"navigation-submenu/editor-rtl.css\";i:237;s:37:\"navigation-submenu/editor-rtl.min.css\";i:238;s:29:\"navigation-submenu/editor.css\";i:239;s:33:\"navigation-submenu/editor.min.css\";i:240;s:25:\"navigation/editor-rtl.css\";i:241;s:29:\"navigation/editor-rtl.min.css\";i:242;s:21:\"navigation/editor.css\";i:243;s:25:\"navigation/editor.min.css\";i:244;s:24:\"navigation/style-rtl.css\";i:245;s:28:\"navigation/style-rtl.min.css\";i:246;s:20:\"navigation/style.css\";i:247;s:24:\"navigation/style.min.css\";i:248;s:23:\"nextpage/editor-rtl.css\";i:249;s:27:\"nextpage/editor-rtl.min.css\";i:250;s:19:\"nextpage/editor.css\";i:251;s:23:\"nextpage/editor.min.css\";i:252;s:24:\"page-list/editor-rtl.css\";i:253;s:28:\"page-list/editor-rtl.min.css\";i:254;s:20:\"page-list/editor.css\";i:255;s:24:\"page-list/editor.min.css\";i:256;s:23:\"page-list/style-rtl.css\";i:257;s:27:\"page-list/style-rtl.min.css\";i:258;s:19:\"page-list/style.css\";i:259;s:23:\"page-list/style.min.css\";i:260;s:24:\"paragraph/editor-rtl.css\";i:261;s:28:\"paragraph/editor-rtl.min.css\";i:262;s:20:\"paragraph/editor.css\";i:263;s:24:\"paragraph/editor.min.css\";i:264;s:23:\"paragraph/style-rtl.css\";i:265;s:27:\"paragraph/style-rtl.min.css\";i:266;s:19:\"paragraph/style.css\";i:267;s:23:\"paragraph/style.min.css\";i:268;s:25:\"post-author/style-rtl.css\";i:269;s:29:\"post-author/style-rtl.min.css\";i:270;s:21:\"post-author/style.css\";i:271;s:25:\"post-author/style.min.css\";i:272;s:33:\"post-comments-form/editor-rtl.css\";i:273;s:37:\"post-comments-form/editor-rtl.min.css\";i:274;s:29:\"post-comments-form/editor.css\";i:275;s:33:\"post-comments-form/editor.min.css\";i:276;s:32:\"post-comments-form/style-rtl.css\";i:277;s:36:\"post-comments-form/style-rtl.min.css\";i:278;s:28:\"post-comments-form/style.css\";i:279;s:32:\"post-comments-form/style.min.css\";i:280;s:27:\"post-content/editor-rtl.css\";i:281;s:31:\"post-content/editor-rtl.min.css\";i:282;s:23:\"post-content/editor.css\";i:283;s:27:\"post-content/editor.min.css\";i:284;s:23:\"post-date/style-rtl.css\";i:285;s:27:\"post-date/style-rtl.min.css\";i:286;s:19:\"post-date/style.css\";i:287;s:23:\"post-date/style.min.css\";i:288;s:27:\"post-excerpt/editor-rtl.css\";i:289;s:31:\"post-excerpt/editor-rtl.min.css\";i:290;s:23:\"post-excerpt/editor.css\";i:291;s:27:\"post-excerpt/editor.min.css\";i:292;s:26:\"post-excerpt/style-rtl.css\";i:293;s:30:\"post-excerpt/style-rtl.min.css\";i:294;s:22:\"post-excerpt/style.css\";i:295;s:26:\"post-excerpt/style.min.css\";i:296;s:34:\"post-featured-image/editor-rtl.css\";i:297;s:38:\"post-featured-image/editor-rtl.min.css\";i:298;s:30:\"post-featured-image/editor.css\";i:299;s:34:\"post-featured-image/editor.min.css\";i:300;s:33:\"post-featured-image/style-rtl.css\";i:301;s:37:\"post-featured-image/style-rtl.min.css\";i:302;s:29:\"post-featured-image/style.css\";i:303;s:33:\"post-featured-image/style.min.css\";i:304;s:34:\"post-navigation-link/style-rtl.css\";i:305;s:38:\"post-navigation-link/style-rtl.min.css\";i:306;s:30:\"post-navigation-link/style.css\";i:307;s:34:\"post-navigation-link/style.min.css\";i:308;s:28:\"post-template/editor-rtl.css\";i:309;s:32:\"post-template/editor-rtl.min.css\";i:310;s:24:\"post-template/editor.css\";i:311;s:28:\"post-template/editor.min.css\";i:312;s:27:\"post-template/style-rtl.css\";i:313;s:31:\"post-template/style-rtl.min.css\";i:314;s:23:\"post-template/style.css\";i:315;s:27:\"post-template/style.min.css\";i:316;s:24:\"post-terms/style-rtl.css\";i:317;s:28:\"post-terms/style-rtl.min.css\";i:318;s:20:\"post-terms/style.css\";i:319;s:24:\"post-terms/style.min.css\";i:320;s:24:\"post-title/style-rtl.css\";i:321;s:28:\"post-title/style-rtl.min.css\";i:322;s:20:\"post-title/style.css\";i:323;s:24:\"post-title/style.min.css\";i:324;s:26:\"preformatted/style-rtl.css\";i:325;s:30:\"preformatted/style-rtl.min.css\";i:326;s:22:\"preformatted/style.css\";i:327;s:26:\"preformatted/style.min.css\";i:328;s:24:\"pullquote/editor-rtl.css\";i:329;s:28:\"pullquote/editor-rtl.min.css\";i:330;s:20:\"pullquote/editor.css\";i:331;s:24:\"pullquote/editor.min.css\";i:332;s:23:\"pullquote/style-rtl.css\";i:333;s:27:\"pullquote/style-rtl.min.css\";i:334;s:19:\"pullquote/style.css\";i:335;s:23:\"pullquote/style.min.css\";i:336;s:23:\"pullquote/theme-rtl.css\";i:337;s:27:\"pullquote/theme-rtl.min.css\";i:338;s:19:\"pullquote/theme.css\";i:339;s:23:\"pullquote/theme.min.css\";i:340;s:39:\"query-pagination-numbers/editor-rtl.css\";i:341;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:342;s:35:\"query-pagination-numbers/editor.css\";i:343;s:39:\"query-pagination-numbers/editor.min.css\";i:344;s:31:\"query-pagination/editor-rtl.css\";i:345;s:35:\"query-pagination/editor-rtl.min.css\";i:346;s:27:\"query-pagination/editor.css\";i:347;s:31:\"query-pagination/editor.min.css\";i:348;s:30:\"query-pagination/style-rtl.css\";i:349;s:34:\"query-pagination/style-rtl.min.css\";i:350;s:26:\"query-pagination/style.css\";i:351;s:30:\"query-pagination/style.min.css\";i:352;s:25:\"query-title/style-rtl.css\";i:353;s:29:\"query-title/style-rtl.min.css\";i:354;s:21:\"query-title/style.css\";i:355;s:25:\"query-title/style.min.css\";i:356;s:20:\"query/editor-rtl.css\";i:357;s:24:\"query/editor-rtl.min.css\";i:358;s:16:\"query/editor.css\";i:359;s:20:\"query/editor.min.css\";i:360;s:19:\"quote/style-rtl.css\";i:361;s:23:\"quote/style-rtl.min.css\";i:362;s:15:\"quote/style.css\";i:363;s:19:\"quote/style.min.css\";i:364;s:19:\"quote/theme-rtl.css\";i:365;s:23:\"quote/theme-rtl.min.css\";i:366;s:15:\"quote/theme.css\";i:367;s:19:\"quote/theme.min.css\";i:368;s:23:\"read-more/style-rtl.css\";i:369;s:27:\"read-more/style-rtl.min.css\";i:370;s:19:\"read-more/style.css\";i:371;s:23:\"read-more/style.min.css\";i:372;s:18:\"rss/editor-rtl.css\";i:373;s:22:\"rss/editor-rtl.min.css\";i:374;s:14:\"rss/editor.css\";i:375;s:18:\"rss/editor.min.css\";i:376;s:17:\"rss/style-rtl.css\";i:377;s:21:\"rss/style-rtl.min.css\";i:378;s:13:\"rss/style.css\";i:379;s:17:\"rss/style.min.css\";i:380;s:21:\"search/editor-rtl.css\";i:381;s:25:\"search/editor-rtl.min.css\";i:382;s:17:\"search/editor.css\";i:383;s:21:\"search/editor.min.css\";i:384;s:20:\"search/style-rtl.css\";i:385;s:24:\"search/style-rtl.min.css\";i:386;s:16:\"search/style.css\";i:387;s:20:\"search/style.min.css\";i:388;s:20:\"search/theme-rtl.css\";i:389;s:24:\"search/theme-rtl.min.css\";i:390;s:16:\"search/theme.css\";i:391;s:20:\"search/theme.min.css\";i:392;s:24:\"separator/editor-rtl.css\";i:393;s:28:\"separator/editor-rtl.min.css\";i:394;s:20:\"separator/editor.css\";i:395;s:24:\"separator/editor.min.css\";i:396;s:23:\"separator/style-rtl.css\";i:397;s:27:\"separator/style-rtl.min.css\";i:398;s:19:\"separator/style.css\";i:399;s:23:\"separator/style.min.css\";i:400;s:23:\"separator/theme-rtl.css\";i:401;s:27:\"separator/theme-rtl.min.css\";i:402;s:19:\"separator/theme.css\";i:403;s:23:\"separator/theme.min.css\";i:404;s:24:\"shortcode/editor-rtl.css\";i:405;s:28:\"shortcode/editor-rtl.min.css\";i:406;s:20:\"shortcode/editor.css\";i:407;s:24:\"shortcode/editor.min.css\";i:408;s:24:\"site-logo/editor-rtl.css\";i:409;s:28:\"site-logo/editor-rtl.min.css\";i:410;s:20:\"site-logo/editor.css\";i:411;s:24:\"site-logo/editor.min.css\";i:412;s:23:\"site-logo/style-rtl.css\";i:413;s:27:\"site-logo/style-rtl.min.css\";i:414;s:19:\"site-logo/style.css\";i:415;s:23:\"site-logo/style.min.css\";i:416;s:27:\"site-tagline/editor-rtl.css\";i:417;s:31:\"site-tagline/editor-rtl.min.css\";i:418;s:23:\"site-tagline/editor.css\";i:419;s:27:\"site-tagline/editor.min.css\";i:420;s:25:\"site-title/editor-rtl.css\";i:421;s:29:\"site-title/editor-rtl.min.css\";i:422;s:21:\"site-title/editor.css\";i:423;s:25:\"site-title/editor.min.css\";i:424;s:24:\"site-title/style-rtl.css\";i:425;s:28:\"site-title/style-rtl.min.css\";i:426;s:20:\"site-title/style.css\";i:427;s:24:\"site-title/style.min.css\";i:428;s:26:\"social-link/editor-rtl.css\";i:429;s:30:\"social-link/editor-rtl.min.css\";i:430;s:22:\"social-link/editor.css\";i:431;s:26:\"social-link/editor.min.css\";i:432;s:27:\"social-links/editor-rtl.css\";i:433;s:31:\"social-links/editor-rtl.min.css\";i:434;s:23:\"social-links/editor.css\";i:435;s:27:\"social-links/editor.min.css\";i:436;s:26:\"social-links/style-rtl.css\";i:437;s:30:\"social-links/style-rtl.min.css\";i:438;s:22:\"social-links/style.css\";i:439;s:26:\"social-links/style.min.css\";i:440;s:21:\"spacer/editor-rtl.css\";i:441;s:25:\"spacer/editor-rtl.min.css\";i:442;s:17:\"spacer/editor.css\";i:443;s:21:\"spacer/editor.min.css\";i:444;s:20:\"spacer/style-rtl.css\";i:445;s:24:\"spacer/style-rtl.min.css\";i:446;s:16:\"spacer/style.css\";i:447;s:20:\"spacer/style.min.css\";i:448;s:20:\"table/editor-rtl.css\";i:449;s:24:\"table/editor-rtl.min.css\";i:450;s:16:\"table/editor.css\";i:451;s:20:\"table/editor.min.css\";i:452;s:19:\"table/style-rtl.css\";i:453;s:23:\"table/style-rtl.min.css\";i:454;s:15:\"table/style.css\";i:455;s:19:\"table/style.min.css\";i:456;s:19:\"table/theme-rtl.css\";i:457;s:23:\"table/theme-rtl.min.css\";i:458;s:15:\"table/theme.css\";i:459;s:19:\"table/theme.min.css\";i:460;s:23:\"tag-cloud/style-rtl.css\";i:461;s:27:\"tag-cloud/style-rtl.min.css\";i:462;s:19:\"tag-cloud/style.css\";i:463;s:23:\"tag-cloud/style.min.css\";i:464;s:28:\"template-part/editor-rtl.css\";i:465;s:32:\"template-part/editor-rtl.min.css\";i:466;s:24:\"template-part/editor.css\";i:467;s:28:\"template-part/editor.min.css\";i:468;s:27:\"template-part/theme-rtl.css\";i:469;s:31:\"template-part/theme-rtl.min.css\";i:470;s:23:\"template-part/theme.css\";i:471;s:27:\"template-part/theme.min.css\";i:472;s:30:\"term-description/style-rtl.css\";i:473;s:34:\"term-description/style-rtl.min.css\";i:474;s:26:\"term-description/style.css\";i:475;s:30:\"term-description/style.min.css\";i:476;s:27:\"text-columns/editor-rtl.css\";i:477;s:31:\"text-columns/editor-rtl.min.css\";i:478;s:23:\"text-columns/editor.css\";i:479;s:27:\"text-columns/editor.min.css\";i:480;s:26:\"text-columns/style-rtl.css\";i:481;s:30:\"text-columns/style-rtl.min.css\";i:482;s:22:\"text-columns/style.css\";i:483;s:26:\"text-columns/style.min.css\";i:484;s:19:\"verse/style-rtl.css\";i:485;s:23:\"verse/style-rtl.min.css\";i:486;s:15:\"verse/style.css\";i:487;s:19:\"verse/style.min.css\";i:488;s:20:\"video/editor-rtl.css\";i:489;s:24:\"video/editor-rtl.min.css\";i:490;s:16:\"video/editor.css\";i:491;s:20:\"video/editor.min.css\";i:492;s:19:\"video/style-rtl.css\";i:493;s:23:\"video/style-rtl.min.css\";i:494;s:15:\"video/style.css\";i:495;s:19:\"video/style.min.css\";i:496;s:19:\"video/theme-rtl.css\";i:497;s:23:\"video/theme-rtl.min.css\";i:498;s:15:\"video/theme.css\";i:499;s:19:\"video/theme.min.css\";}}','yes'),(123,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.5.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.5.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.5.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.5\";s:7:\"version\";s:5:\"6.5.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1721042802;s:15:\"version_checked\";s:5:\"6.5.5\";s:12:\"translations\";a:0:{}}','no'),(127,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1721042803;s:7:\"checked\";a:3:{s:16:\"twentytwentyfour\";s:3:\"1.1\";s:17:\"twentytwentythree\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.7\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:3:{s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.1.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.4.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.7.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(130,'limit_login_activation_timestamp','1721042806','yes'),(131,'limit_login_notice_enable_notify_timestamp','1718278006','yes'),(132,'recovery_keys','a:0:{}','off'),(134,'theme_mods_twentytwentyfour','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1721043624;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','no'),(136,'spinupwp_mail_notice_dismissed','1','no'),(137,'WPLANG','en_GB','yes'),(138,'new_admin_email','matt@studiofinesse.co.uk','yes'),(140,'finished_updating_comment_type','1','yes'),(141,'recently_activated','a:0:{}','off'),(142,'acf_first_activated_version','6.3.3','yes'),(143,'acf_site_health','{\"version\":\"6.4.2\",\"plugin_type\":\"PRO\",\"update_source\":\"ACF Direct\",\"activated\":true,\"activated_url\":\"https:\\/\\/biomechanicseducation.com\",\"license_type\":\"Developer\",\"license_status\":\"active\",\"subscription_expires\":\"\",\"wp_version\":\"6.8.1\",\"mysql_version\":\"8.0.42-0ubuntu0.24.04.1\",\"is_multisite\":false,\"active_theme\":{\"name\":\"Biomechanics Education\",\"version\":\"0.0.1\",\"theme_uri\":\"\",\"stylesheet\":false},\"parent_theme\":{\"name\":\"FFT Group\",\"version\":\"0.0.1\",\"theme_uri\":\"\",\"stylesheet\":false},\"active_plugins\":{\"acf-extended-pro\\/acf-extended.php\":{\"name\":\"Advanced Custom Fields: Extended PRO\",\"version\":\"0.9.1\",\"plugin_uri\":\"https:\\/\\/www.acf-extended.com\"},\"advanced-custom-fields-pro\\/acf.php\":{\"name\":\"Advanced Custom Fields PRO\",\"version\":\"6.4.2\",\"plugin_uri\":\"https:\\/\\/www.advancedcustomfields.com\"},\"classic-editor\\/classic-editor.php\":{\"name\":\"Classic Editor\",\"version\":\"1.6.7\",\"plugin_uri\":\"https:\\/\\/wordpress.org\\/plugins\\/classic-editor\\/\"},\"disable-comments\\/disable-comments.php\":{\"name\":\"Disable Comments\",\"version\":\"2.5.2\",\"plugin_uri\":\"https:\\/\\/wordpress.org\\/plugins\\/disable-comments\\/\"},\"disable-emojis\\/disable-emojis.php\":{\"name\":\"Disable Emojis (GDPR friendly)\",\"version\":\"1.7.7\",\"plugin_uri\":\"https:\\/\\/geek.hellyer.kiwi\\/plugins\\/disable-emojis\\/\"},\"duplicate-term\\/duplicate-term.php\":{\"name\":\"Duplicate Taxonomy Term\",\"version\":\"1.0.2\",\"plugin_uri\":\"\"},\"enable-media-replace\\/enable-media-replace.php\":{\"name\":\"Enable Media Replace\",\"version\":\"4.1.6\",\"plugin_uri\":\"https:\\/\\/wordpress.org\\/plugins\\/enable-media-replace\\/\"},\"finesse-wp\\/finesse-wp.php\":{\"name\":\"FINESSE\",\"version\":\"0.0.1\",\"plugin_uri\":\"https:\\/\\/finessestudio.co\"},\"future-fit-plugin\\/future-fit-training.php\":{\"name\":\"Future Fit Training\",\"version\":\"1.0\",\"plugin_uri\":\"\"},\"post-duplicator\\/m4c-postduplicator.php\":{\"name\":\"Post Duplicator\",\"version\":\"2.47\",\"plugin_uri\":\"\"},\"redirection\\/redirection.php\":{\"name\":\"Redirection\",\"version\":\"5.5.2\",\"plugin_uri\":\"https:\\/\\/redirection.me\\/\"},\"safe-svg\\/safe-svg.php\":{\"name\":\"Safe SVG\",\"version\":\"2.3.1\",\"plugin_uri\":\"https:\\/\\/wordpress.org\\/plugins\\/safe-svg\\/\"},\"simple-custom-post-order\\/simple-custom-post-order.php\":{\"name\":\"Simple Custom Post Order\",\"version\":\"2.5.11\",\"plugin_uri\":\"https:\\/\\/wordpress.org\\/plugins-wp\\/simple-custom-post-order\\/\"},\"spinupwp\\/spinupwp.php\":{\"name\":\"SpinupWP\",\"version\":\"1.8.0\",\"plugin_uri\":\"https:\\/\\/spinupwp.com\"},\"tracking-code-manager\\/index.php\":{\"name\":\"Tracking Code Manager\",\"version\":\"2.5.0\",\"plugin_uri\":\"http:\\/\\/intellywp.com\\/tracking-code-manager\\/\"},\"user-switching\\/user-switching.php\":{\"name\":\"User Switching\",\"version\":\"1.9.2\",\"plugin_uri\":\"https:\\/\\/wordpress.org\\/plugins\\/user-switching\\/\"},\"wordpress-importer\\/wordpress-importer.php\":{\"name\":\"WordPress Importer\",\"version\":\"0.8.4\",\"plugin_uri\":\"https:\\/\\/wordpress.org\\/plugins\\/wordpress-importer\\/\"},\"wp-migrate-db-pro\\/wp-migrate-db-pro.php\":{\"name\":\"WP Migrate\",\"version\":\"2.7.4\",\"plugin_uri\":\"https:\\/\\/deliciousbrains.com\\/wp-migrate-db-pro\\/\"},\"wordpress-seo\\/wp-seo.php\":{\"name\":\"Yoast SEO\",\"version\":\"25.3.1\",\"plugin_uri\":\"https:\\/\\/yoa.st\\/1uj\"}},\"ui_field_groups\":\"0\",\"php_field_groups\":\"0\",\"json_field_groups\":\"26\",\"rest_field_groups\":\"0\",\"all_location_rules\":[\"taxonomy==course-cat\",\"options_page==fft_pages_404\",\"post_type_supports==fft-hero\",\"user_form==edit\",\"post_type==page\",\"post_type==post\",\"post_taxonomy==blog-format:blocks\",\"post_type_supports==fft-blocks\",\"nav_menu==location\\/main-nav\",\"options_page==fs_global_options\",\"post_type==course\",\"post_type==all\",\"post_type!=template\",\"post_type!=faqs\",\"post_type!=testimonial\",\"post_type!=venue\",\"post_type!=cd-form\",\"post_type!=cd-form-entry\",\"options_page==acf-options-header-footer\",\"post_type==cd-form\",\"options_page==acf-options-tools\",\"attachment==all\",\"nav_menu_item==location\\/main-nav\",\"nav_menu_item_depth==0\",\"options_page==fft_course_options\",\"page_type!=front_page\",\"page_type!=posts_page\",\"taxonomy==region\",\"post_type==ambassador\",\"post_type==testimonial\",\"post_type==venue\",\"post_category==category:future-fit-tv\"],\"field_groups_with_single_block_rule\":\"0\",\"field_groups_with_multiple_block_rules\":\"0\",\"field_groups_with_blocks_and_other_rules\":\"0\",\"number_of_fields_by_type\":{\"true_false\":12,\"tab\":5,\"text\":13,\"textarea\":6,\"repeater\":7,\"button_group\":2,\"image\":2,\"group\":6,\"select\":2,\"post_object\":5,\"flexible_content\":2,\"link\":1,\"gallery\":1,\"acfe_code_editor\":2,\"wysiwyg\":1,\"number\":1,\"url\":1,\"taxonomy\":2,\"google_map\":2,\"oembed\":1},\"number_of_third_party_fields_by_type\":[],\"post_types_enabled\":true,\"ui_post_types\":\"15\",\"json_post_types\":\"0\",\"ui_taxonomies\":\"10\",\"json_taxonomies\":\"0\",\"ui_options_pages_enabled\":true,\"ui_options_pages\":\"0\",\"json_options_pages\":\"0\",\"php_options_pages\":\"6\",\"rest_api_format\":\"light\",\"registered_acf_blocks\":\"0\",\"blocks_per_api_version\":[],\"blocks_per_acf_block_version\":[],\"blocks_using_post_meta\":\"0\",\"preload_blocks\":true,\"admin_ui_enabled\":false,\"field_type-modal_enabled\":true,\"field_settings_tabs_enabled\":false,\"shortcode_enabled\":false,\"registered_acf_forms\":\"0\",\"json_save_paths\":1,\"json_load_paths\":2,\"event_first_activated_pro\":1721043536,\"last_updated\":1751283783}','off'),(144,'disable_comments_options','a:8:{s:16:\"is_network_admin\";b:0;s:17:\"remove_everywhere\";b:1;s:19:\"disabled_post_types\";a:3:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:10:\"attachment\";}s:22:\"enable_exclude_by_role\";s:1:\"0\";s:22:\"remove_xmlrpc_comments\";i:0;s:24:\"remove_rest_API_comments\";i:0;s:10:\"db_version\";i:7;s:14:\"settings_saved\";b:1;}','yes'),(145,'disable_comment_version','2.5.2','yes'),(146,'scporder_install','1','yes'),(147,'wpmdb_settings','a:15:{s:3:\"key\";s:40:\"vBPVJX1oJGxp96o1Oa2JyvRooS5MavFc8Wb0I9HG\";s:10:\"allow_pull\";b:1;s:10:\"allow_push\";b:1;s:8:\"profiles\";a:0:{}s:10:\"verify_ssl\";b:0;s:17:\"whitelist_plugins\";a:0:{}s:11:\"max_request\";i:1048576;s:22:\"delay_between_requests\";i:0;s:18:\"prog_tables_hidden\";b:1;s:21:\"pause_before_finalize\";b:0;s:14:\"allow_tracking\";b:0;s:26:\"high_performance_transfers\";b:0;s:18:\"compatibility_mode\";b:1;s:28:\"compatibility_plugin_version\";s:3:\"1.3\";s:7:\"licence\";s:36:\"f9c1a42a-3932-42d9-a2fe-d6c007def30f\";}','no'),(148,'wp_migrate_addon_schema','1','yes'),(149,'acfe','a:3:{s:7:\"version\";s:5:\"0.9.1\";s:7:\"modules\";a:4:{s:11:\"block_types\";a:0:{}s:13:\"options_pages\";a:0:{}s:10:\"post_types\";a:0:{}s:10:\"taxonomies\";a:0:{}}s:7:\"license\";s:48:\"a2V5PTliMTY2YWVkODcwMWE4NDczNmExZGE0MTRiMTk2M2I2\";}','auto'),(150,'simple-rate-time','1878813499','yes'),(151,'acf_version','6.4.2','yes'),(152,'mtphr_post_duplicator_settings','','yes'),(153,'wpmdb_saved_profiles','','no'),(154,'wpmdb_recent_migrations','a:1:{i:0;a:4:{s:4:\"name\";s:39:\"Pull from www.biomechanicseducation.com\";s:5:\"value\";s:7173:\"{\"current_migration\":{\"connected\":true,\"intent\":\"pull\",\"tables_option\":\"all\",\"tables_selected\":[\"wp_actionscheduler_actions\",\"wp_actionscheduler_claims\",\"wp_actionscheduler_groups\",\"wp_actionscheduler_logs\",\"wp_ai1ec_event_category_meta\",\"wp_ai1ec_event_instances\",\"wp_ai1ec_events\",\"wp_aryo_activity_log\",\"wp_cf7dbplugin_st\",\"wp_cf7dbplugin_submits\",\"wp_commentmeta\",\"wp_comments\",\"wp_create_map\",\"wp_easywpsmtp_debug_events\",\"wp_easywpsmtp_tasks_meta\",\"wp_email_log\",\"wp_group_map\",\"wp_independent_analytics_campaign_urls\",\"wp_independent_analytics_campaigns\",\"wp_independent_analytics_cities\",\"wp_independent_analytics_countries\",\"wp_independent_analytics_device_browsers\",\"wp_independent_analytics_device_oss\",\"wp_independent_analytics_device_types\",\"wp_independent_analytics_form_submissions\",\"wp_independent_analytics_forms\",\"wp_independent_analytics_referrers\",\"wp_independent_analytics_reports\",\"wp_independent_analytics_resources\",\"wp_independent_analytics_sessions\",\"wp_independent_analytics_views\",\"wp_independent_analytics_visitors\",\"wp_independent_analytics_wc_orders\",\"wp_layerslider\",\"wp_layerslider_revisions\",\"wp_links\",\"wp_map_locations\",\"wp_ms_snippets\",\"wp_nobuna_backups\",\"wp_nobuna_downloads\",\"wp_nobuna_products\",\"wp_options\",\"wp_postmeta\",\"wp_posts\",\"wp_redirection_404\",\"wp_redirection_groups\",\"wp_redirection_items\",\"wp_redirection_logs\",\"wp_revslider_css\",\"wp_revslider_css_bkp\",\"wp_revslider_layer_animations\",\"wp_revslider_layer_animations_bkp\",\"wp_revslider_navigations\",\"wp_revslider_navigations_bkp\",\"wp_revslider_sliders\",\"wp_revslider_sliders7\",\"wp_revslider_sliders_bkp\",\"wp_revslider_slides\",\"wp_revslider_slides7\",\"wp_revslider_slides_bkp\",\"wp_revslider_static_slides\",\"wp_revslider_static_slides_bkp\",\"wp_snippets\",\"wp_term_relationships\",\"wp_term_taxonomy\",\"wp_termmeta\",\"wp_terms\",\"wp_usermeta\",\"wp_users\",\"wp_wc_admin_note_actions\",\"wp_wc_admin_notes\",\"wp_wc_category_lookup\",\"wp_wc_customer_lookup\",\"wp_wc_deposits_payment_plans\",\"wp_wc_deposits_payment_plans_schedule\",\"wp_wc_download_log\",\"wp_wc_order_addresses\",\"wp_wc_order_coupon_lookup\",\"wp_wc_order_operational_data\",\"wp_wc_order_product_lookup\",\"wp_wc_order_stats\",\"wp_wc_order_tax_lookup\",\"wp_wc_orders\",\"wp_wc_orders_meta\",\"wp_wc_product_attributes_lookup\",\"wp_wc_product_download_directories\",\"wp_wc_product_meta_lookup\",\"wp_wc_rate_limits\",\"wp_wc_reserved_stock\",\"wp_wc_tax_rate_classes\",\"wp_wc_webhooks\",\"wp_wfBadLeechers\",\"wp_wfBlockedIPLog\",\"wp_wfBlocks\",\"wp_wfBlocksAdv\",\"wp_wfConfig\",\"wp_wfCrawlers\",\"wp_wfFileMods\",\"wp_wfHits\",\"wp_wfHoover\",\"wp_wfIssues\",\"wp_wfKnownFileList\",\"wp_wfLeechers\",\"wp_wfLockedOut\",\"wp_wfLocs\",\"wp_wfLogins\",\"wp_wfNet404s\",\"wp_wfNotifications\",\"wp_wfPendingIssues\",\"wp_wfReverseCache\",\"wp_wfSNIPCache\",\"wp_wfScanners\",\"wp_wfStatus\",\"wp_wfThrottleLog\",\"wp_wfVulnScanners\",\"wp_woocommerce_api_keys\",\"wp_woocommerce_attribute_taxonomies\",\"wp_woocommerce_downloadable_product_permissions\",\"wp_woocommerce_log\",\"wp_woocommerce_order_itemmeta\",\"wp_woocommerce_order_items\",\"wp_woocommerce_payment_tokenmeta\",\"wp_woocommerce_payment_tokens\",\"wp_woocommerce_sessions\",\"wp_woocommerce_shipping_zone_locations\",\"wp_woocommerce_shipping_zone_methods\",\"wp_woocommerce_shipping_zones\",\"wp_woocommerce_tax_rate_locations\",\"wp_woocommerce_tax_rates\",\"wp_wpgmza\",\"wp_wpgmza_admin_notices\",\"wp_wpgmza_categories\",\"wp_wpgmza_category_maps\",\"wp_wpgmza_circles\",\"wp_wpgmza_datasets\",\"wp_wpgmza_image_overlays\",\"wp_wpgmza_maps\",\"wp_wpgmza_point_labels\",\"wp_wpgmza_polygon\",\"wp_wpgmza_polylines\",\"wp_wpgmza_rectangles\",\"wp_yoast_indexable\",\"wp_yoast_indexable_hierarchy\",\"wp_yoast_migrations\",\"wp_yoast_primary_term\",\"wp_yoast_seo_links\"],\"backup_option\":\"none\",\"backup_tables_selected\":[],\"post_types_option\":\"all\",\"post_types_selected\":[],\"advanced_options_selected\":[],\"profile_name\":\"Pull from www.biomechanicseducation.com\",\"selected_existing_profile\":null,\"profile_type\":null,\"status\":\"\",\"stages\":[],\"current_stage\":\"\",\"stages_complete\":[],\"running\":false,\"migration_enabled\":false,\"migration_id\":\"b9f56f7e-656f-4fc9-be6e-218d0788bcfc\",\"source_prefix\":\"wp_\",\"destination_prefix\":\"6m7_\",\"preview\":false,\"selectedComboOption\":\"preview\",\"twoMultisites\":false,\"localSource\":false,\"databaseEnabled\":false,\"currentPayloadSize\":0,\"currentMaxPayloadSize\":null,\"fileTransferRequests\":0,\"payloadSizeHistory\":[],\"fileTransferStats\":[],\"forceHighPerformanceTransfers\":true,\"fseDumpFilename\":null,\"highPerformanceTransfersStatus\":false},\"connection_info\":{\"connection_state\":{\"value\":\"https:\\/\\/www.biomechanicseducation.com\\nKclgznqTie\\/AXEW5qk7b2ZoGKizfmn3LuVvvzQsr\",\"url\":\"https:\\/\\/www.biomechanicseducation.com\",\"key\":\"KclgznqTie\\/AXEW5qk7b2ZoGKizfmn3LuVvvzQsr\"},\"status\":{\"auth_form\":{\"username\":\"\",\"password\":\"\"},\"show_auth_form\":false,\"connecting\":false,\"error\":false,\"error_msg\":\"\",\"button_status\":\"disabled\",\"ssl_notice\":false,\"pasted\":false,\"copy_to_remote\":false,\"prefix_mismatch\":false,\"mixed_case_table_name_warning\":false,\"show_mst_warning\":false,\"update_plugin_on_remote\":false,\"retry_over_http\":false}},\"search_replace\":{\"standard_search_replace\":{\"domain\":{\"search\":\"\\/\\/www.biomechanicseducation.com\",\"replace\":\"\\/\\/biomechanicseducation.thecanopy.dev\",\"enabled\":true},\"path\":{\"search\":\"\\/home\\/sites\\/27b\\/2\\/22c0540e7a\\/public_html\",\"replace\":\"\\/sites\\/biomechanicseducation.thecanopy.dev\\/files\",\"enabled\":true}},\"standard_options_enabled\":[\"domain\",\"path\"],\"standard_search_visible\":true,\"custom_search_replace\":[{\"replace_old\":\"\",\"replace_new\":\"\",\"focus\":false,\"regex\":false,\"isValidRegex\":null,\"replace_old_placeholder\":null,\"replace_new_placeholder\":null,\"id\":\"cb22191a-0ae2-4ddb-8830-ebc563dc1d77\"}],\"custom_search_domain_locked\":false},\"media_files\":{\"enabled\":true,\"option\":\"new\",\"available\":true,\"is_licensed\":true,\"message\":\"<b>Addon Missing<\\/b> - The Media Files addon is inactive on the <strong>remote site<\\/strong>. Please install and activate it to enable media file migration.\",\"excludes\":\".DS_Store\\n*.log\\n*backup*\\/\\n*cache*\\/\",\"last_migration\":\"2024-07-16T11:12:34+00:00\",\"date\":\"2024-01-01T11:01:00\"},\"theme_plugin_files\":{\"available\":true,\"is_licensed\":true,\"message\":\"<b>Addon Missing<\\/b> - The Theme & Plugin Files addon is inactive on the <strong>remote site<\\/strong>. Please install and activate it to enable Theme & Plugin Files migration.\",\"theme_files\":{\"enabled\":false},\"themes_option\":\"all\",\"themes_selected\":[],\"themes_excluded\":[],\"themes_excludes\":\".DS_Store\\n.git\\nnode_modules\",\"plugin_files\":{\"enabled\":false},\"plugins_option\":\"all\",\"plugins_selected\":[],\"plugins_excluded\":[],\"plugins_excludes\":\".DS_Store\\n.git\\nnode_modules\",\"muplugin_files\":{\"enabled\":false},\"muplugins_option\":\"selected\",\"muplugins_selected\":[],\"muplugins_excludes\":\".DS_Store\\n.git\\nnode_modules\",\"other_files\":{\"enabled\":false},\"others_option\":\"selected\",\"others_selected\":[],\"others_excludes\":\".DS_Store\\n.git\\nnode_modules\",\"core_files\":{\"enabled\":false},\"core_option\":\"all\",\"core_selected\":[],\"core_excludes\":\".DS_Store\\n.git\\nnode_modules\",\"state\":{\"status\":\"MIGRATION_STARTED\"}},\"multisite_tools\":{\"enabled\":false,\"available\":true,\"is_licensed\":true,\"selected_subsite\":0,\"destination_subsite\":0,\"new_prefix\":\"\",\"message\":\"\"}}\";s:4:\"date\";i:1721124277;s:4:\"guid\";s:36:\"09a51f8d-151a-4e84-8e4b-59896f12d2cc\";}}','no'),(159,'wpmdb_schema_version','3.8.0','no'),(160,'scporder_notice','1','yes'),(162,'limit_login_lockouts','a:0:{}','no'),(163,'limit_login_logged','a:0:{}','no'),(164,'limit_login_retries','a:0:{}','no'),(165,'limit_login_retries_valid','a:0:{}','no'),(166,'limit_login_onboarding_popup_shown','1','yes'),(167,'auto_update_plugins','a:19:{i:0;s:34:\"advanced-custom-fields-pro/acf.php\";i:1;s:33:\"acf-extended-pro/acf-extended.php\";i:2;s:33:\"classic-editor/classic-editor.php\";i:3;s:37:\"disable-comments/disable-comments.php\";i:4;s:33:\"disable-emojis/disable-emojis.php\";i:5;s:33:\"duplicate-term/duplicate-term.php\";i:6;s:45:\"enable-media-replace/enable-media-replace.php\";i:7;s:25:\"finesse-wp/finesse-wp.php\";i:8;s:41:\"future-fit-plugin/future-fit-training.php\";i:10;s:38:\"post-duplicator/m4c-postduplicator.php\";i:11;s:21:\"safe-svg/safe-svg.php\";i:12;s:53:\"simple-custom-post-order/simple-custom-post-order.php\";i:13;s:21:\"spinupwp/spinupwp.php\";i:14;s:33:\"user-switching/user-switching.php\";i:15;s:39:\"wp-migrate-db-pro/wp-migrate-db-pro.php\";i:16;s:24:\"wordpress-seo/wp-seo.php\";i:17;s:41:\"wordpress-importer/wordpress-importer.php\";i:18;s:27:\"redirection/redirection.php\";i:19;s:31:\"tracking-code-manager/index.php\";}','off'),(168,'current_theme','Biomechanics Education','yes'),(169,'theme_mods_fft','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1721119502;s:4:\"data\";a:1:{s:19:\"wp_inactive_widgets\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}}','no'),(170,'theme_switched','','yes'),(172,'default_term_blog-format','2','yes'),(173,'auto_update_themes','a:1:{i:1;s:16:\"twentytwentyfive\";}','off'),(174,'options_company_name','Biomechanics Education','yes'),(175,'_options_company_name','field_61266b934dac9','yes'),(176,'options_company_tagline','','yes'),(177,'_options_company_tagline','field_61266bab6f2f5','yes'),(178,'options_company_email','rachel@biomechanicseducation.com','yes'),(179,'_options_company_email','field_61266bc36f2f6','yes'),(180,'options_company_tel','020 3841 6151','yes'),(181,'_options_company_tel','field_61266c12df644','yes'),(182,'options_company_address_company_address_1','Carnac Cottage','yes'),(183,'_options_company_address_company_address_1','field_61266deaa722e','yes'),(184,'options_company_address_company_address_2','Carnac Court','yes'),(185,'_options_company_address_company_address_2','field_61266e04a722f','yes'),(186,'options_company_address_company_address_street','Cams Estate','yes'),(187,'_options_company_address_company_address_street','field_61266e0ba7230','yes'),(188,'options_company_address_company_address_locality','Fareham','yes'),(189,'_options_company_address_company_address_locality','field_61266e1ba7231','yes'),(190,'options_company_address_company_address_region','Hampshire','yes'),(191,'_options_company_address_company_address_region','field_61266e42a7232','yes'),(192,'options_company_address_company_address_postcode','PO16 8UB','yes'),(193,'_options_company_address_company_address_postcode','field_61266e4fa7233','yes'),(194,'options_company_address_company_address_country','','yes'),(195,'_options_company_address_company_address_country','field_61266e5aa7234','yes'),(196,'options_company_address','','yes'),(197,'_options_company_address','field_61266dd7a722d','yes'),(198,'options_company_social_accounts_0_account','facebook','yes'),(199,'_options_company_social_accounts_0_account','field_61266ce78699d','yes'),(200,'options_company_social_accounts_0_url','https://www.facebook.com/Biomechanics-Education-172683559589454/?_ga=2.4002487.625317827.1721043187-1899146628.1721043187','yes'),(201,'_options_company_social_accounts_0_url','field_61266d838699e','yes'),(202,'options_company_social_accounts_1_account','linkedin','yes'),(203,'_options_company_social_accounts_1_account','field_61266ce78699d','yes'),(204,'options_company_social_accounts_1_url','https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/?_ga=2.4002487.625317827.1721043187-1899146628.1721043187','yes'),(205,'_options_company_social_accounts_1_url','field_61266d838699e','yes'),(206,'options_company_social_accounts_2_account','instagram','yes'),(207,'_options_company_social_accounts_2_account','field_61266ce78699d','yes'),(208,'options_company_social_accounts_2_url','https://www.instagram.com/biomechanics_education/?_ga=2.4002487.625317827.1721043187-1899146628.1721043187','yes'),(209,'_options_company_social_accounts_2_url','field_61266d838699e','yes'),(210,'options_company_social_accounts','4','yes'),(211,'_options_company_social_accounts','field_61266ca48699c','yes'),(212,'options_option_include_opening_hours','0','yes'),(213,'_options_option_include_opening_hours','field_6126713b384e1','yes'),(214,'options_company_whatsapp','','yes'),(215,'_options_company_whatsapp','field_61965d730fecf','yes'),(217,'options_footer_text','[copyright] Biomechanics Education. Registered office [company_address]','no'),(218,'_options_footer_text','field_6160770a55050','no'),(219,'options_footer_logos','a:3:{i:0;s:2:\"10\";i:1;s:5:\"41002\";i:2;s:5:\"41681\";}','off'),(220,'_options_footer_logos','field_663b6153eb87a','no'),(221,'options_login_links','1','off'),(222,'_options_login_links','field_61b7676983e96','no'),(223,'options_option_google_maps','1','off'),(224,'_options_option_google_maps','field_619f5acd2f99e','no'),(225,'options_google_recaptcha_site_key','6LfMPlArAAAAAPYFDe6LPpXgdtmzf2yf9jqUD3Xf','off'),(226,'_options_google_recaptcha_site_key','field_655b5ea0c69f8','no'),(227,'options_google_recaptcha_secret_key','6LfMPlArAAAAAKUZ-ZTWkBB-CKBrmJbicA4Rq2Qv','off'),(228,'_options_google_recaptcha_secret_key','field_655b5ee2ff6cd','no'),(229,'options_maintenance_enabled','0','no'),(230,'_options_maintenance_enabled','field_61b3b42420d2e','no'),(231,'options_option_site_theme','default','off'),(232,'_options_option_site_theme','field_655b2c03a6d00','no'),(235,'wpins_block_notice','a:1:{s:16:\"disable-comments\";s:16:\"disable-comments\";}','yes'),(237,'theme_mods_biomechanics-education','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:8:\"main-nav\";i:3;s:11:\"legal-links\";i:413;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(239,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','off'),(240,'options_company_social_accounts_3_account','youtube','yes'),(241,'_options_company_social_accounts_3_account','field_61266ce78699d','yes'),(242,'options_company_social_accounts_3_url','https://www.youtube.com/channel/UCONlszVeKpExJctWwa9sjUQ','yes'),(243,'_options_company_social_accounts_3_url','field_61266d838699e','yes'),(244,'wp_calendar_block_has_published_posts','1','yes'),(251,'classic-editor-replace','classic','yes'),(252,'classic-editor-allow-users','disallow','yes'),(258,'wpmdb_error_log','********************************************\n******  Log date: 2024/07/16 10:02:42 ******\n********************************************\n\nIntent: pull\nWP Migrate Version: 2.6.13\n\nError: The connection succeeded but the remote site is configured to reject pull connections. You can change this in the \"settings\" tab on the remote site. (#122)\n\n********************************************\n******  Log date: 2024/07/16 10:02:47 ******\n********************************************\n\nIntent: pull\nWP Migrate Version: 2.6.13\n\nError: The connection succeeded but the remote site is configured to reject pull connections. You can change this in the \"settings\" tab on the remote site. (#122)\n\n********************************************\n******  Log date: 2024/07/16 10:03:33 ******\n********************************************\n\nIntent: pull\nWP Migrate Version: 2.6.13\n\nError: The connection succeeded but the remote site is configured to reject pull connections. You can change this in the \"settings\" tab on the remote site. (#122)\n\n********************************************\n******  Log date: 2024/09/06 11:37:54 ******\n********************************************\n\nAction: wpmdb_fire_migration_complete\nWP Migrate Version: 2.6.13\n\nError: WP_Error Object\n(\n    [errors] => Array\n        (\n            [http_request_failed] => Array\n                (\n                    [0] => cURL error 28: Connection timed out after 10000 milliseconds\n                )\n\n        )\n\n    [error_data] => Array\n        (\n        )\n\n    [additional_data:protected] => Array\n        (\n        )\n\n)\n\n\n********************************************\n******  Log date: 2024/09/06 11:37:54 ******\n********************************************\n\nAction: wpmdb_fire_migration_complete\nWP Migrate Version: 2.6.13\n\nError: Error trying to get upgrade data.\n\nArray\n(\n    [connection_failed] => <div class=\"updated warning inline-message\"><strong>Could not connect to api.deliciousbrains.com</strong> &mdash; You will not receive update notifications or be able to activate your license until this is fixed. This issue is often caused by an improperly configured SSL server (https). We recommend <a href=\"https://deliciousbrains.com/wp-migrate-db-pro/doc/could-not-connect-deliciousbrains-com/?utm_campaign=error%2Bmessages&utm_source=MDB%2BPaid&utm_medium=insideplugin\" target=\"_blank\">fixing the SSL configuration on your server</a>, but if you need a quick fix you can:<p><a href=\"https://biomechanicseducation.com/wp-admin/tools.php?page=wp-migrate-db-pro&nonce=be09bc3a63&wpmdb-disable-ssl=1\" class=\"temporarily-disable-ssl button\">Temporarily disable SSL for connections to api.deliciousbrains.com</a></p></div>\n)\n\n\n','off'),(265,'wpmdb_usage','a:2:{s:6:\"action\";s:11:\"pull-remote\";s:4:\"time\";i:1726738323;}','off'),(335,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"matt@studiofinesse.co.uk\";s:7:\"version\";s:5:\"6.8.1\";s:9:\"timestamp\";i:1746055686;}','off'),(349,'acf_pro_license','YToyOntzOjM6ImtleSI7czo3MjoiYjNKa1pYSmZhV1E5TXpRNU16SjhkSGx3WlQxa1pYWmxiRzl3WlhKOFpHRjBaVDB5TURFMExUQTNMVEUySURFeE9qQXdPalF5IjtzOjM6InVybCI7czozMzoiaHR0cHM6Ly9iaW9tZWNoYW5pY3NlZHVjYXRpb24uY29tIjt9','off'),(359,'acf_escaped_html_notice_dismissed','1','auto'),(360,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"25.4\";}','auto'),(361,'wpseo','a:114:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";s:5:\"false\";s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:26:\"permalink_settings_changed\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"25.4\";s:16:\"previous_version\";s:6:\"25.3.1\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:43:\"UEwwzRWLwAmKAvw9xfArEtFaOP02lai37FvSBz0IiKc\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:1;s:22:\"ai_enabled_pre_default\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";s:10:\"1721739189\";s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:6:{s:12:\"access_token\";s:40:\"BXPaQsT5UYdiWwJgN9snkGXHfZ2KaA3GxYg5kz0Z\";s:13:\"refresh_token\";s:40:\"Gmr5L1foHSm2q1nJGFcA57G1QYn4plsh8x8QDZrW\";s:7:\"expires\";i:1752138603;s:11:\"has_expired\";b:0;s:10:\"created_at\";i:1751533803;s:11:\"error_count\";i:0;}s:20:\"semrush_country_code\";s:2:\"uk\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:33:\"https://biomechanicseducation.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:8:{s:24:\"acf-field-group-category\";s:24:\"acf-field-group-category\";s:11:\"blog-format\";s:11:\"blog-format\";s:12:\"course-level\";s:12:\"course-level\";s:10:\"course-cat\";s:10:\"course-cat\";s:15:\"resource-format\";s:9:\"resources\";s:7:\"faq-cat\";s:7:\"faq-cat\";s:14:\"venue-category\";s:14:\"venue-category\";s:6:\"region\";s:6:\"region\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:3:{i:0;s:18:\"siteRepresentation\";i:1;s:14:\"socialProfiles\";i:2;s:19:\"personalPreferences\";}s:36:\"dismiss_configuration_workout_notice\";b:1;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:18:\"first_time_install\";b:0;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";s:10:\"1721739190\";s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:19:\"deny_ccbot_crawling\";b:0;s:29:\"deny_google_extended_crawling\";b:0;s:20:\"deny_gptbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:9:{i:0;s:4:\"post\";i:1;s:4:\"page\";i:2;s:6:\"course\";i:3;s:8:\"resource\";i:4;s:11:\"testimonial\";i:5;s:10:\"ambassador\";i:6;s:5:\"tutor\";i:7;s:10:\"fft-author\";i:8;s:8:\"location\";}s:28:\"last_known_public_taxonomies\";a:6:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";i:3;s:10:\"course-cat\";i:4;s:15:\"resource-format\";i:5;s:7:\"faq-cat\";}s:23:\"last_known_no_unindexed\";a:6:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1751533720;s:31:\"wpseo_unindexed_post_link_count\";i:1751533720;s:35:\"wpseo_total_unindexed_general_items\";i:1751533720;s:31:\"wpseo_unindexed_term_link_count\";i:1751533720;s:27:\"wpseo_total_unindexed_posts\";i:1731691867;s:27:\"wpseo_total_unindexed_terms\";i:1731691867;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;s:44:\"site_kit_configuration_permanently_dismissed\";b:0;s:18:\"site_kit_connected\";b:0;s:37:\"site_kit_tracking_setup_widget_loaded\";s:2:\"no\";s:41:\"site_kit_tracking_first_interaction_stage\";s:0:\"\";s:40:\"site_kit_tracking_last_interaction_stage\";s:0:\"\";s:52:\"site_kit_tracking_setup_widget_temporarily_dismissed\";s:2:\"no\";s:52:\"site_kit_tracking_setup_widget_permanently_dismissed\";s:2:\"no\";s:31:\"google_site_kit_feature_enabled\";b:0;s:15:\"enable_llms_txt\";b:0;}','auto'),(362,'wpseo_titles','a:233:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-pipe\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:22:\"Biomechanics Education\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:87:\"https://biomechanicseducation.com/wp-content/uploads/2016/02/biomachanices_logo-1-1.jpg\";s:12:\"company_name\";s:22:\"Biomechanics Education\";s:22:\"company_alternate_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";i:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:24:\"publishing_principles_id\";i:0;s:25:\"ownership_funding_info_id\";i:0;s:29:\"actionable_feedback_policy_id\";i:0;s:21:\"corrections_policy_id\";i:0;s:16:\"ethics_policy_id\";i:0;s:19:\"diversity_policy_id\";i:0;s:28:\"diversity_staffing_report_id\";i:0;s:15:\"org-description\";s:0:\"\";s:9:\"org-email\";s:0:\"\";s:9:\"org-phone\";s:0:\"\";s:14:\"org-legal-name\";s:0:\"\";s:17:\"org-founding-date\";s:0:\"\";s:20:\"org-number-employees\";s:0:\"\";s:10:\"org-vat-id\";s:0:\"\";s:10:\"org-tax-id\";s:0:\"\";s:7:\"org-iso\";s:0:\"\";s:8:\"org-duns\";s:0:\"\";s:11:\"org-leicode\";s:0:\"\";s:9:\"org-naics\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:12:\"title-course\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:15:\"metadesc-course\";s:0:\"\";s:14:\"noindex-course\";b:0;s:25:\"display-metabox-pt-course\";b:1;s:25:\"post_types-course-maintax\";i:0;s:23:\"schema-page-type-course\";s:7:\"WebPage\";s:26:\"schema-article-type-course\";s:4:\"None\";s:19:\"social-title-course\";s:9:\"%%title%%\";s:25:\"social-description-course\";s:0:\"\";s:23:\"social-image-url-course\";s:0:\"\";s:22:\"social-image-id-course\";i:0;s:14:\"title-resource\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:17:\"metadesc-resource\";s:0:\"\";s:16:\"noindex-resource\";b:0;s:27:\"display-metabox-pt-resource\";b:1;s:27:\"post_types-resource-maintax\";i:0;s:25:\"schema-page-type-resource\";s:7:\"WebPage\";s:28:\"schema-article-type-resource\";s:4:\"None\";s:21:\"social-title-resource\";s:9:\"%%title%%\";s:27:\"social-description-resource\";s:0:\"\";s:25:\"social-image-url-resource\";s:0:\"\";s:24:\"social-image-id-resource\";i:0;s:17:\"title-testimonial\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-testimonial\";s:0:\"\";s:19:\"noindex-testimonial\";b:0;s:30:\"display-metabox-pt-testimonial\";b:1;s:30:\"post_types-testimonial-maintax\";i:0;s:28:\"schema-page-type-testimonial\";s:7:\"WebPage\";s:31:\"schema-article-type-testimonial\";s:4:\"None\";s:24:\"social-title-testimonial\";s:9:\"%%title%%\";s:30:\"social-description-testimonial\";s:0:\"\";s:28:\"social-image-url-testimonial\";s:0:\"\";s:27:\"social-image-id-testimonial\";i:0;s:16:\"title-ambassador\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-ambassador\";s:0:\"\";s:18:\"noindex-ambassador\";b:0;s:29:\"display-metabox-pt-ambassador\";b:1;s:29:\"post_types-ambassador-maintax\";i:0;s:27:\"schema-page-type-ambassador\";s:7:\"WebPage\";s:30:\"schema-article-type-ambassador\";s:4:\"None\";s:23:\"social-title-ambassador\";s:9:\"%%title%%\";s:29:\"social-description-ambassador\";s:0:\"\";s:27:\"social-image-url-ambassador\";s:0:\"\";s:26:\"social-image-id-ambassador\";i:0;s:11:\"title-tutor\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:14:\"metadesc-tutor\";s:0:\"\";s:13:\"noindex-tutor\";b:0;s:24:\"display-metabox-pt-tutor\";b:1;s:24:\"post_types-tutor-maintax\";i:0;s:22:\"schema-page-type-tutor\";s:7:\"WebPage\";s:25:\"schema-article-type-tutor\";s:4:\"None\";s:18:\"social-title-tutor\";s:9:\"%%title%%\";s:24:\"social-description-tutor\";s:0:\"\";s:22:\"social-image-url-tutor\";s:0:\"\";s:21:\"social-image-id-tutor\";i:0;s:16:\"title-fft-author\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-fft-author\";s:0:\"\";s:18:\"noindex-fft-author\";b:0;s:29:\"display-metabox-pt-fft-author\";b:1;s:29:\"post_types-fft-author-maintax\";i:0;s:27:\"schema-page-type-fft-author\";s:7:\"WebPage\";s:30:\"schema-article-type-fft-author\";s:4:\"None\";s:23:\"social-title-fft-author\";s:9:\"%%title%%\";s:29:\"social-description-fft-author\";s:0:\"\";s:27:\"social-image-url-fft-author\";s:0:\"\";s:26:\"social-image-id-fft-author\";i:0;s:14:\"title-location\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:17:\"metadesc-location\";s:0:\"\";s:16:\"noindex-location\";b:0;s:27:\"display-metabox-pt-location\";b:1;s:27:\"post_types-location-maintax\";i:0;s:25:\"schema-page-type-location\";s:7:\"WebPage\";s:28:\"schema-article-type-location\";s:4:\"None\";s:21:\"social-title-location\";s:9:\"%%title%%\";s:27:\"social-description-location\";s:0:\"\";s:25:\"social-image-url-location\";s:0:\"\";s:24:\"social-image-id-location\";i:0;s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:26:\"taxonomy-category-ptparent\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:26:\"taxonomy-post_tag-ptparent\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:29:\"taxonomy-post_format-ptparent\";i:0;s:20:\"title-tax-course-cat\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:23:\"metadesc-tax-course-cat\";s:0:\"\";s:30:\"display-metabox-tax-course-cat\";b:1;s:22:\"noindex-tax-course-cat\";b:0;s:27:\"social-title-tax-course-cat\";s:23:\"%%term_title%% Archives\";s:33:\"social-description-tax-course-cat\";s:0:\"\";s:31:\"social-image-url-tax-course-cat\";s:0:\"\";s:30:\"social-image-id-tax-course-cat\";i:0;s:28:\"taxonomy-course-cat-ptparent\";i:0;s:25:\"title-tax-resource-format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-tax-resource-format\";s:0:\"\";s:35:\"display-metabox-tax-resource-format\";b:1;s:27:\"noindex-tax-resource-format\";b:0;s:32:\"social-title-tax-resource-format\";s:23:\"%%term_title%% Archives\";s:38:\"social-description-tax-resource-format\";s:0:\"\";s:36:\"social-image-url-tax-resource-format\";s:0:\"\";s:35:\"social-image-id-tax-resource-format\";i:0;s:33:\"taxonomy-resource-format-ptparent\";i:0;s:17:\"title-tax-faq-cat\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:20:\"metadesc-tax-faq-cat\";s:0:\"\";s:27:\"display-metabox-tax-faq-cat\";b:1;s:19:\"noindex-tax-faq-cat\";b:0;s:24:\"social-title-tax-faq-cat\";s:23:\"%%term_title%% Archives\";s:30:\"social-description-tax-faq-cat\";s:0:\"\";s:28:\"social-image-url-tax-faq-cat\";s:0:\"\";s:27:\"social-image-id-tax-faq-cat\";i:0;s:25:\"taxonomy-faq-cat-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:1214;s:17:\"company_logo_meta\";a:10:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:8:\"filesize\";i:33136;s:3:\"url\";s:87:\"https://biomechanicseducation.com/wp-content/uploads/2016/02/biomachanices_logo-1-1.jpg\";s:4:\"path\";s:92:\"/sites/biomechanicseducation.com/files/wp-content/uploads/2016/02/biomachanices_logo-1-1.jpg\";s:4:\"size\";s:4:\"full\";s:2:\"id\";i:1214;s:3:\"alt\";s:0:\"\";s:6:\"pixels\";i:24964;s:4:\"type\";s:10:\"image/jpeg\";}s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','auto'),(363,'wpseo_social','a:20:{s:13:\"facebook_site\";s:60:\"https://www.facebook.com/biomechanicseducation/?locale=en_GB\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:0:{}s:12:\"mastodon_url\";s:0:\"\";}','auto'),(373,'acf-field-group-category_children','a:0:{}','auto'),(374,'blog-format_children','a:0:{}','auto'),(376,'resource-format_children','a:0:{}','auto'),(377,'faq-cat_children','a:0:{}','auto'),(383,'wpseo_taxonomy_meta','a:2:{s:10:\"course-cat\";a:4:{i:403;a:5:{s:11:\"wpseo_title\";s:36:\"CPD Courses | Biomechanics Education\";s:10:\"wpseo_desc\";s:105:\"Enhance your biomechanics expertise through our approachable and inclusive online CPD education platform.\";s:13:\"wpseo_focuskw\";s:11:\"CPD Courses\";s:13:\"wpseo_linkdex\";s:2:\"70\";s:19:\"wpseo_content_score\";s:2:\"90\";}i:404;a:5:{s:11:\"wpseo_title\";s:29:\"%%term_title%% | %%sitename%%\";s:10:\"wpseo_desc\";s:161:\"Explore our online CPD courses. Enhance your skills with diverse topics in fitness and health, and stay current with the latest industry practices and knowledge.\";s:13:\"wpseo_focuskw\";s:27:\"Online Biomechanics Courses\";s:13:\"wpseo_linkdex\";s:2:\"38\";s:19:\"wpseo_content_score\";s:1:\"0\";}i:409;a:6:{s:11:\"wpseo_title\";s:29:\"%%term_title%% | %%sitename%%\";s:10:\"wpseo_desc\";s:148:\"Explore our biomechanics webinars. Gain insights into key concepts and practical applications to enhance your expertise and improve client outcomes.\";s:13:\"wpseo_focuskw\";s:21:\"Biomechanics Webinars\";s:13:\"wpseo_linkdex\";s:2:\"46\";s:19:\"wpseo_content_score\";s:1:\"0\";s:30:\"wpseo_inclusive_language_score\";s:2:\"90\";}i:408;a:6:{s:11:\"wpseo_title\";s:46:\"In Person CPD Courses | Biomechanics Education\";s:10:\"wpseo_desc\";s:155:\"Deepen your anatomy knowledge with our Practical Anatomy Series. Access 5 online recorded classrooms and 5 e-zines for comprehensive, interactive learning.\";s:13:\"wpseo_focuskw\";s:34:\"In-person Biomechanics CPD Courses\";s:13:\"wpseo_linkdex\";s:2:\"42\";s:19:\"wpseo_content_score\";s:1:\"0\";s:30:\"wpseo_inclusive_language_score\";s:2:\"90\";}}s:6:\"region\";a:1:{i:454;a:20:{s:11:\"wpseo_title\";s:0:\"\";s:10:\"wpseo_desc\";s:0:\"\";s:15:\"wpseo_canonical\";s:0:\"\";s:13:\"wpseo_bctitle\";s:0:\"\";s:13:\"wpseo_noindex\";s:7:\"default\";s:13:\"wpseo_focuskw\";s:0:\"\";s:13:\"wpseo_linkdex\";s:0:\"\";s:19:\"wpseo_content_score\";s:0:\"\";s:30:\"wpseo_inclusive_language_score\";s:0:\"\";s:19:\"wpseo_focuskeywords\";s:2:\"[]\";s:21:\"wpseo_keywordsynonyms\";s:2:\"[]\";s:20:\"wpseo_is_cornerstone\";s:1:\"0\";s:21:\"wpseo_opengraph-title\";s:0:\"\";s:27:\"wpseo_opengraph-description\";s:0:\"\";s:21:\"wpseo_opengraph-image\";s:0:\"\";s:24:\"wpseo_opengraph-image-id\";s:0:\"\";s:19:\"wpseo_twitter-title\";s:0:\"\";s:25:\"wpseo_twitter-description\";s:0:\"\";s:19:\"wpseo_twitter-image\";s:0:\"\";s:22:\"wpseo_twitter-image-id\";s:0:\"\";}}}','auto'),(389,'options_page_for_courses','39066','off'),(390,'_options_page_for_courses','field_618418683e873','off'),(450,'recovery_mode_email_last_sent','1723712743','auto'),(492,'options_options_google_api_key','AIzaSyCOplD_kbMdjLPCYuWj2CIVvSJjd6IOz64','off'),(493,'_options_options_google_api_key','field_619f5af12f99f','off'),(495,'_fft_messages','a:4:{i:0;a:2:{i:0;s:5:\"error\";i:1;s:122:\"Last sync failed at 2025-05-13 13:43:07 - cURL error 28: Operation timed out after 5001 milliseconds with 0 bytes received\";}i:1;a:2:{i:0;s:5:\"error\";i:1;s:122:\"Last sync failed at 2025-05-17 08:43:07 - cURL error 28: Operation timed out after 5002 milliseconds with 0 bytes received\";}i:2;a:2:{i:0;s:5:\"error\";i:1;s:122:\"Last sync failed at 2025-05-19 13:43:08 - cURL error 28: Operation timed out after 5002 milliseconds with 0 bytes received\";}i:3;a:2:{i:0;s:5:\"error\";i:1;s:122:\"Last sync failed at 2025-06-21 20:43:11 - cURL error 28: Operation timed out after 5000 milliseconds with 0 bytes received\";}}','off'),(501,'option_404_page_hide_hero','0','off'),(502,'_option_404_page_hide_hero','field_66a2380fcda39','off'),(503,'option_404_page_hero_title','Oops, page not found!','off'),(504,'_option_404_page_hero_title','field_617571fe285e8','off'),(505,'option_404_page_hero_text','The page has either been moved or deleted. If you are interested in speaking to us about a specific course, please visit our contact page using the link below','off'),(506,'_option_404_page_hero_text','field_6175723c285e9','off'),(507,'option_404_page_hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Contact us !\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}','off'),(508,'_option_404_page_hero_actions_0_button','field_61757281285eb','off'),(509,'option_404_page_hero_actions','1','off'),(510,'_option_404_page_hero_actions','field_61757270285ea','off'),(511,'option_404_page_hero_style','default','off'),(512,'_option_404_page_hero_style','field_62051d9dc5324','off'),(513,'option_404_page__thumbnail_id','','off'),(514,'_option_404_page__thumbnail_id','field_617570855ddaf','off'),(515,'option_404_page_hero_image_pos_x','right','off'),(516,'_option_404_page_hero_image_pos_x','field_62ec3d05390bb','off'),(517,'option_404_page_hero_image_pos_y','top','off'),(518,'_option_404_page_hero_image_pos_y','field_62ec3d05390bc','off'),(519,'option_404_page_hero_image_pos','','off'),(520,'_option_404_page_hero_image_pos','field_62ec3d05390ba','off'),(521,'option_404_page_blocks','','off'),(522,'_option_404_page_blocks','field_6176696113096','off'),(584,'options_login_links_0_title','Flex','off'),(585,'_options_login_links_0_title','field_61b767b283e97','off'),(586,'options_login_links_0_description','Login to Flex to access your training, schedule your courses and get support.','off'),(587,'_options_login_links_0_description','field_61b767b783e98','off'),(588,'options_login_links_0_link','a:3:{s:5:\"title\";s:5:\"Login\";s:3:\"url\";s:34:\"https://flex.futurefit.co.uk/login\";s:6:\"target\";s:0:\"\";}','off'),(589,'_options_login_links_0_link','field_61b767c083e99','off'),(602,'wpmdb_migration_state','a:3:{s:6:\"action\";s:29:\"wpmdb_fire_migration_complete\";s:3:\"url\";s:17:\"https://fft.local\";s:3:\"sig\";s:28:\"CFquIGWnojcxzxOIyNjhrBJsLgs=\";}','off'),(603,'wpmdb_remote_migration_state','a:5:{s:6:\"action\";s:38:\"wpmdb_verify_connection_to_remote_site\";s:6:\"intent\";s:4:\"pull\";s:7:\"referer\";s:9:\"fft.local\";s:7:\"version\";s:6:\"2.6.13\";s:3:\"sig\";s:28:\"j+OSak6A//dvtDvWg/h9h0CRmog=\";}','off'),(623,'_wp_suggested_policy_text_has_changed','not-changed','off'),(629,'redirection_options','a:32:{s:7:\"support\";b:0;s:5:\"token\";s:32:\"9b58c33db74a741ef08081f4cf56e79c\";s:12:\"monitor_post\";i:1;s:13:\"monitor_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"associated_redirect\";s:0:\"\";s:11:\"auto_target\";s:0:\"\";s:15:\"expire_redirect\";i:7;s:10:\"expire_404\";i:7;s:12:\"log_external\";b:0;s:10:\"log_header\";b:0;s:10:\"track_hits\";b:1;s:7:\"modules\";a:0:{}s:14:\"redirect_cache\";i:1;s:10:\"ip_logging\";i:0;s:10:\"ip_headers\";a:0:{}s:8:\"ip_proxy\";a:0:{}s:13:\"last_group_id\";i:1;s:8:\"rest_api\";i:0;s:5:\"https\";b:0;s:7:\"headers\";a:0:{}s:8:\"database\";s:3:\"4.2\";s:8:\"relocate\";s:0:\"\";s:16:\"preferred_domain\";s:0:\"\";s:7:\"aliases\";a:0:{}s:10:\"permalinks\";a:0:{}s:9:\"cache_key\";i:0;s:13:\"plugin_update\";s:6:\"prompt\";s:13:\"update_notice\";s:3:\"5.5\";s:10:\"flag_query\";s:5:\"exact\";s:9:\"flag_case\";b:1;s:13:\"flag_trailing\";b:1;s:10:\"flag_regex\";b:0;}','auto'),(630,'acf_pro_license_status','a:11:{s:6:\"status\";s:6:\"active\";s:7:\"created\";i:0;s:6:\"expiry\";i:0;s:4:\"name\";s:9:\"Developer\";s:8:\"lifetime\";b:1;s:8:\"refunded\";b:0;s:17:\"view_licenses_url\";s:62:\"https://www.advancedcustomfields.com/my-account/view-licenses/\";s:23:\"manage_subscription_url\";s:0:\"\";s:9:\"error_msg\";s:0:\"\";s:10:\"next_check\";i:1751642019;s:16:\"legacy_multisite\";b:1;}','on'),(634,'acfe_plugin_updates','a:2:{s:7:\"timeout\";i:1747665120;s:5:\"value\";s:81324:\"{\"new_version\":\"0.9.1\",\"stable_version\":\"0.9.1\",\"name\":\"ACF Extended Pro\",\"slug\":\"acf-extended\",\"url\":\"https:\\/\\/www.acf-extended.com\\/?download=acf-extended-pro&#038;changelog=1\",\"last_updated\":\"2024-12-19 11:18:38\",\"homepage\":\"https:\\/\\/www.acf-extended.com\",\"package\":\"https:\\/\\/www.acf-extended.com\\/edd-sl\\/package_download\\/MTc0Nzc0NzkyMDphMlY1UFRsaU1UWTJZV1ZrT0Rjd01XRTRORGN6Tm1FeFpHRTBNVFJpTVRrMk0ySTI6OTQ5OjRhODAzMzQyNWM5NDI3ZjIxYWIwMzEzODU3N2M0ZGRjOmh0dHBzQC8vYmlvbWVjaGFuaWNzZWR1Y2F0aW9uLmNvbTow\",\"download_link\":\"https:\\/\\/www.acf-extended.com\\/edd-sl\\/package_download\\/MTc0Nzc0NzkyMDphMlY1UFRsaU1UWTJZV1ZrT0Rjd01XRTRORGN6Tm1FeFpHRTBNVFJpTVRrMk0ySTI6OTQ5OjRhODAzMzQyNWM5NDI3ZjIxYWIwMzEzODU3N2M0ZGRjOmh0dHBzQC8vYmlvbWVjaGFuaWNzZWR1Y2F0aW9uLmNvbTow\",\"sections\":{\"description\":\"<p>&#x1f680; All-in-one enhancement suite that improves WordPress &amp; Advanced Custom Fields. This plugin aims to provide a powerful administration framework with a wide range of improvements &amp; optimizations.<\\/p>\\n<p><strong>This plugin requires at least ACF Pro 5.8.<\\/strong>\\nIf you don\'t already own <a href=\\\"https:\\/\\/www.advancedcustomfields.com\\/pro\\/\\\">ACF Pro<\\/a>, you should consider it. It\'s one of the most powerful WordPress plugin available.<\\/p>\\n<h3>&#x2b50; Highlight<\\/h3>\\n<ul>\\n<li>14+ New ACF Fields<\\/li>\\n<li>10+ ACF Fields Enhanced<\\/li>\\n<li>4+ New Field Groups Locations<\\/li>\\n<li>Self\\/Multi\\/Bidirectional Fields<\\/li>\\n<li>Advanced Fields Validation<\\/li>\\n<li>Flexible Content as Page Builder<\\/li>\\n<li>Optimize metadata with Performance Mode<\\/li>\\n<li>Advanced Front-End Forms Manager<\\/li>\\n<li>ACF Options Pages \\/ Block Types Manager<\\/li>\\n<li>ACF &amp; WordPress Meta Overview<\\/li>\\n<li>WordPress Post Types \\/ Taxonomies Manager<\\/li>\\n<li>WordPress Options Manager<\\/li>\\n<li>WordPress Admin Enhancements<\\/li>\\n<li>WPML &amp; Polylang Multilingual support<\\/li>\\n<li>... And many more features<h3>&#x1f48e; Pro Highlight<\\/h3><\\/li>\\n<li>20+ New ACF Fields<\\/li>\\n<li>10+ ACF Fields Enhanced<\\/li>\\n<li>20+ New Locations<\\/li>\\n<li>Payment Field with Stripe &amp; PayPal Express<\\/li>\\n<li>Flexible Content Grid System<\\/li>\\n<li>Flexible Content Layouts Locations Rules<\\/li>\\n<li>Templates Manager<\\/li>\\n<li>Builtin Classic Editor<\\/li>\\n<li>Settings UI<\\/li>\\n<li>Screen Layouts<\\/li>\\n<li>Force Json Sync<\\/li>\\n<li>Field Visibility Settings<\\/li>\\n<li>Global Field Conditional Rules<\\/li>\\n<li>... And many more features<h3>&#x1f91f; Philosophy<\\/h3><\\/li>\\n<li>Seamless integration<\\/li>\\n<li>No extra menu, ads or notices<\\/li>\\n<li>Built by developers, for developers<h3>&#x1f6e0;&#xfe0f; Links<\\/h3><\\/li>\\n<li><a href=\\\"https:\\/\\/www.acf-extended.com\\\">Website<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\\">Documentation<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/www.acf-extended.com\\/guides\\\">Guides<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/www.acf-extended.com\\/roadmap\\\">Roadmap<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/github.com\\/acf-extended\\/ACF-Extended\\\">GitHub<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/twitter.com\\/ACFExtended\\\">Twitter<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/twitter.com\\/hwkfr\\\">Twitter<\\/a> (Personal)<\\/li>\\n<li><a href=\\\"https:\\/\\/slack.acf-extended.com\\\">Slack Community<\\/a><h3>&#x1f9f0; Tools<\\/h3><\\/li>\\n<li><a href=\\\"https:\\/\\/wordpress.org\\/plugins\\/acf-extended\\/#faq\\\">FAQ<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/acf-extended\\\">Support<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/acf-extended\\\">Feature Request<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/acf-extended\\/reviews\\/#new-post\\\">Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/ko-fi.com\\/acfextended\\\">Donation<\\/a><h3>&#x1f4c1; Field Groups<\\/h3>\\n<strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/advanced-settings\\\">Advanced Settings<\\/a><\\/strong>\\nEnable advanced settings for all fields within the Field Group.<\\/li>\\n<\\/ul>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/autosync\\\">Auto Sync PHP<\\/a><\\/strong>\\nAutomatically synchronize field groups with local PHP files upon field group updates. This feature will create, include and update a local PHP file for each field group.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/autosync\\\">Auto Sync Json<\\/a><\\/strong>\\nControl which field groups you want to synchronize with local Json files. Display warnings if the Json file has been manually deleted.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/categories\\\">Categories<\\/a><\\/strong>\\nSpice up your field groups with a custom taxonomy and filter field groups by terms.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/custom-key\\\">Custom Key<\\/a><\\/strong>\\nSet custom field group key. Example: <code>group_custom_name<\\/code>.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/custom-meta\\\">Custom Meta<\\/a><\\/strong>\\nAdd custom metas (key\\/value) in the field group administration.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/display-title\\\">Display Title<\\/a><\\/strong>\\nDisplay an alternative field group title in post edition screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/field-group-ui\\\">Field Group UI<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nEnable enhancements to the Field Group UI for a better user experience.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/force-sync\\\">Force Sync<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nAlways keep Json files synchronized with the Field Groups in the database.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/hide-on-screen\\\">Hide on Screen<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nHide Gutenberg Block Editor and 10+ more items to hide in the field group settings.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/instruction-placement\\\">Instructions Placement<\\/a><\\/strong>\\nNew instruction placements let you display field description &quot;above the fields&quot; or in a &quot;tooltip&quot;.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/advanced-post\\\">Location: Advanced Post<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nA collection of multiple new Field Groups locations allowing developers to target posts with specific conditions (Post author, date, slug, path etc...).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/advanced-menu-item\\\">Location: Advanced Menu Item<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nTarget specific &quot;Menu Item Depth&quot; or &quot;Menu Item Type&quot; from the Field Groups Locations rules.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/advanced-taxonomy\\\">Location: Advanced Taxonomy Term<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nA collection of multiple new Field Groups locations allowing developers to target taxonomy and terms with specific conditions (Term name, parent, slug etc...).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/all-post-types\\\">Location: All post types<\\/a><\\/strong>\\nDisplay field groups on all post types edition screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/attachment-list\\\">Location: Attachment List<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay field group on attachment admin list screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/dashboard\\\">Location: Dashboard Widgets<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay field groups and update ACF Fields from the WP Dashboard.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/field-value\\\">Location: Field Value<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a field group based on the field value of an another field group.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/post-type-archive\\\">Location: Post type Archive<\\/a><\\/strong>\\nAdd an Archive Option Page under the Post Type admin menu. Display and save any field groups within it.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/post-type-list\\\">Location: Post type List<\\/a><\\/strong>\\nDisplay field group on post types admin list screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/taxonomy-list\\\">Location: Taxonomy List<\\/a><\\/strong>\\nDisplay field group on taxonomies admin list screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/user-list\\\">Location: User List<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay field group on user admin list screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/woocommerce\\\">Location: Woocommerce<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay field groups on Woocommerce pages.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/wp-settings\\\">Location: WP Settings<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay field groups on WP Settings pages: General, Writing, Reading, Discussion, Media and Permalinks.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/\\\">Local Field Groups<\\/a><\\/strong>\\nDisplay local field groups that are loaded by ACF, but not available in the ACF field group administration. Example: Field groups that are registered in the <code>functions.php<\\/code> file, but not in the ACF UI.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/note\\\">Note<\\/a><\\/strong>\\nAdd a personal note in the field group administration. Only visible to administrators.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/permissions\\\">Permissions<\\/a><\\/strong>\\nAdd permission layer to field groups. Choose which roles can view &amp; edit field groups in the post edition screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/raw-data\\\">Raw Data<\\/a><\\/strong>\\nDisplay raw field group data in a modal to check your configuration &amp; settings.<h3>&#x2699;&#xfe0f; Fields Settings<\\/h3>\\n<strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/field-advanced-settings\\\">Advanced Settings<\\/a><\\/strong>\\nA more sophisticated field settings based on specified location (administration\\/front-end). Example: Field is required only in front-end.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/advanced-validation\\\">Advanced Validation<\\/a><\\/strong>\\nA more sophisticated validation conditions (AND\\/OR) with custom error messages based on specified location (administration\\/front-end).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/bidirectional-fields\\\">Self\\/Multi\\/Bidirectional fields<\\/a><\\/strong>\\nAn advanced bidirectional setting (also called post-to-post) is available for the following fields: Relationship, Post object, User &amp; Taxonomy terms. Fields will work bidirectionally and automatically update each others. Works in groups &amp; clones.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/field-visibility\\\">Field Visibility<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nGet quick access to &quot;Field Visibility&quot;, &quot;Label Visibility&quot;, &quot;Instructions Visibility&quot; and &quot;Required Setting&quot; for the following screens: &quot;Everywhere&quot;, &quot;Front-end&quot; and &quot;Administration&quot;.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/global-condition\\\">Global Condition<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nEnable Global Conditional Logic for a specific field, which can then be used in an another Field Group as condition, both as Field Group Condition and Field Condition.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/field-instruction-placement\\\">Instruction Placement<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nOverride a specific field instruction placement to any position: Below labels, below fields, above fields or tooltip.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/instruction-read-more\\\">Instruction Read More<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nAllow to expand instructions text with a &quot;Read More&quot; link. This feature is useful for lengthy instructions text.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/min-max\\\">Min\\/Max<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nMinimum &amp; maximum items is a global field setting that let you define a specific number of items that can or should be added by the user.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/field-permissions\\\">Permissions<\\/a><\\/strong>\\nAdd permission layer to fields. Choose which roles can view &amp; edit fields in the post edition screen. (can be combined with field groups permissions).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/field-raw-data\\\">Raw data<\\/a><\\/strong>\\nDisplay raw field data in a modal to check your configuration &amp; settings.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/required-message\\\">Required Message<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nThis setting allow developers to define a custom error message within the field settings for a more intuitive user experience.<h3>&#x1f3f7;&#xfe0f; Fields<\\/h3>\\n<strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/advanced-link\\\">Advanced Link<\\/a><\\/strong>\\nDisplay a modern Link Selection in a modal. Posts, Post Types Archives &amp; terms selection can be filtered in the field administration.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/block-editor\\\">Block Editor<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an isolated Block Editor field on admin screen (with Classic Editor enabled) or on the front-end.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/block-types\\\">Block Types<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an ACF Block Types selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/button\\\">Button<\\/a><\\/strong>\\nDisplay a custom submit or button. Built-in ajax call setting. Usage example available in the field administration.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/checkbox\\\">Checkbox<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nDefine grouped choices values using <code>## Title<\\/code> markup in the field\'s choices.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/clone\\\">Clone<\\/a><\\/strong>\\nAllow users to edit clone fields in a modal. Choose the edit button text, display close button and the modal size.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/code-editor\\\">Code Editor<\\/a><\\/strong>\\nEdit code using the native WP Core Codemirror library. Default languages: Text\\/HTML, Javascript, CSS, PHP mixed\\/plain.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/color-picker\\\">Color Picker<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nA collection of advanced settings for the ACF Color Picker. The field can now be displayed as a palette, custom colors can be predefined and RGBA mode is supported.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/columns\\\">Columns<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nOrganize and re-arrange your fields using columns and line-breaks. The field acts like the ACF Accordion\\/Tab field and allow you to create virtually grouped fields which will be displayed inside columns.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/countries\\\">Countries<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Country selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/currencies\\\">Currencies<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Currency selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/datepicker\\\">Date\\/Timepicker<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nDisplay a modern UI of the ACF Datepicker field. CSS and icons have been enhanced to fit WordPress admin UI and colors.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/date-range-picker\\\">Date Range Picker<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Date Range Picker. The field support a wide range of customization, such as: Placeholder, Default dates, Range Restriction, Date restriction, No weekends etc.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/dynamic-render\\\">Dynamic Render<\\/a><\\/strong>\\nDisplay custom HTML\\/PHP content using a simple named hook.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/field-groups-selector\\\">Field Groups<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an ACF Field Groups selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/field-types\\\">Field Types<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an ACF Field Types selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/fields-selector\\\">Fields<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an ACF Fields selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/file\\\">File<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nChoose the uploader type, enable multi file upload and dropzone.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/flexible-content\\\">Flexible Content<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nDisplayed an enhanced version of the native Flexible Content field. Dozens of new settings and settings were added, allowing developers to create the most advanced page builder and fully control the field\'s behavior.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/forms\\\">Forms<\\/a><\\/strong>\\nSelect any dynamic form (format: checkbox, radio or select).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/google-map\\\">Google Map<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nA collection of new settings added to the ACF Google Map Field that allow developers to have more control over the field behavior.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/recaptcha\\\">Google reCaptcha<\\/a><\\/strong>\\nDisplay a reCaptcha field (compatible v2 &amp; v3).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/group\\\">Group<\\/a><\\/strong>\\nAllow users to edit group fields in a modal Choose the edit button text, display close button and the modal size<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/hidden-input\\\">Hidden Input<\\/a><\\/strong>\\nDisplay a hidden input with custom name\\/value<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/image\\\">Image<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nChoose the uploader type, customize the upload folder and set the image as post featured thumbnail<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/image-selector\\\">Image Selector<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an Image Selector field.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/image-sizes\\\">Image Sizes<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an Image Sizes selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/languages\\\">Languages<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Language selector as radio, checkbox or select field type, compatible with WPML &amp; Polylang.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/menu-locations\\\">Menu Locations<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Menu Locations selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/menus\\\">Menus<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Menu selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/options-pages\\\">Options Pages<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an ACF Options Pages selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/payment\\\">Payment<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Payment Field that supports with Stripe &amp; PayPal Express gateways, working on both front-end and back-end.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/payment-cart\\\">Payment Cart<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an optional Payment Cart to easily setup an e-commerce solution.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/payment-selector\\\">Payment Selector<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an optional Payment Selector which let the user switch the payment gateway.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/phone-number\\\">Phone Number<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a fully customizable international Phone Number field.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/post-field\\\">Post Field<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nThe Post Field is a new field that allow developers to move native WordPress fields such as Post Title, Date, Status, Visibility, Permalink etc.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/post-formats\\\">Post Formats<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Post Format selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\\">Post Object<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nAllow user to enter custom value which will be saved as a new post, or enable the inline post creation\\/edit.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/post-statuses\\\">Post Status<\\/a><\\/strong>\\nSelect any post status (format: checkbox, radio or select)<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/post-types\\\">Post Types<\\/a><\\/strong>\\nSelect any post type (format: checkbox, radio or select)<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/radio\\\">Radio<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nDefine grouped choices values using <code>## Title<\\/code> markup in the field\'s choices.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/relationship\\\">Relationship<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nThe Relationship field includes new settings allowing users to create and edit post on-the-fly from the post edit screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/repeater\\\">Repeater<\\/a><\\/strong>\\nAdd stylised to \'Add Row\' button, lock rows and remove repeater\'s actions.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/select\\\">Select<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nChange the default &quot;Select&quot; placeholder text and Search Input placeholder and allow user to enter custom values.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/slug\\\">Slug<\\/a><\\/strong>\\nA slug text input (ie: <code>my-text-input<\\/code>).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/tab\\\">Tab<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisable the last opened tab user preference. Which means that when the user will refresh the page, it will always load the first tab.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/taxonomies\\\">Taxonomies<\\/a><\\/strong>\\nSelect any taxonomy (format: checkbox, radio or select)<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/taxonomy-terms\\\">Taxonomy Terms<\\/a><\\/strong>\\nSelect any terms of any taxonomies, allow specific terms, level or childrens (format: checkbox or select). Terms can be loaded &amp; saved for the current post (just like the native ACF Taxonomy field)<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/templates-selector\\\">Templates<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an ACF Extended Templates selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/textarea\\\">Textarea<\\/a><\\/strong>\\nSwitch font family to monospace and allow tab indent.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/true-false\\\">True\\/False<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nFive new styles have been added to the native True\\/False field.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/user-roles\\\">User Roles<\\/a><\\/strong>\\nSelect any user role (format: checkbox, radio or select)<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/wysiwyg-editor\\\">WYSIWYG Editor<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nNew settings allowing developers to have more control over the field behavior.<h3>&#x1f6e0;&#xfe0f; Modules<\\/h3>\\n<strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/dynamic-block-types\\\">Block Types UI<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nThe Dynamic Block Types module allows you to register and manage ACF Block Types from your WordPress admin, in ACF &gt; Block Types menu. Pro version allows to sync Json\\/PHP files.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/classic-editor\\\">Classic Editor<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nACF Extended is bundled with a custom merged version of the Classic Editor &amp; Disable Gutenberg plugins.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/developer-mode\\\">Developer Mode<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nThe Developer Mode allow you to view all Posts, Terms, Users &amp; Options custom metadata in a readable format. This feature is very useful to check what is actually saved in any WordPress Object.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/dynamic-forms\\\">Forms<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nManage Advanced ACF Forms from the WordPress administration. This module is an enhanced version of the native ACF Form feature. While all native settings can be used, Dynamic Forms adds many new settings and introduce &quot;Actions&quot; for a complete control over the form behavior.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/dynamic-options-pages\\\">Options Pages UI<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nThe Dynamic Options Pages module allows you to register and manage ACF Options Pages from your WordPress admin, in ACF &gt; Options Pages menu. Pro version allows to sync Json\\/PHP files.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/performance-mode\\\">Performance Mode<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nA unique module that allows developers to optimize database load when dealing with hundreds or thousands of metadata with two different methods: Ultra &amp; Hybrid Engines.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/dynamic-post-types\\\">Post Types UI<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nThe Dynamic Post Types module allows you to register and manage custom post types from your WordPress admin, in Tools &gt; Post Types menu. Pro version allows to sync Json\\/PHP files.<\\/p>\\n<p>All native post types settings can be set within the UI. ACF Extended also adds more advanced settings allowing to manage posts per page, order etc\\u2026<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/rewrite-rules\\\">Rewrite Rules<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nGet an overview of all WordPress permalinks structures and rules. Test URLs, export rules and flush permalinks from the UI.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/scripts\\\">Scripts UI<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nRun custom scripts on thousands of posts. Including builtin &quot;Orphan Meta Cleaner&quot;, &quot;Script Launcher&quot; and &quot;Performance Converter&quot; scripts.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/settings-ui\\\">Settings UI<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nThe Settings UI allows developers to get an overview of all ACF and ACF Extended settings values from the ACF &gt; Settings menu.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/dynamic-taxonomies\\\">Taxonomies UI<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nThe Dynamic Taxonomies module allows you to register and manage custom taxonomies from your WordPress admin, in Tools &gt; Taxonomies menu. Pro version allows to sync Json\\/PHP files.<\\/p>\\n<p>All native taxonomies settings can be set within the UI. ACF Extended also adds more advanced settings allowing to manage posts per page, order etc\\u2026<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/templates\\\">Templates<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nManage default ACF values in an advanced way and sync templates with Json\\/PHP files.<h3>&#x1f5a5;&#xfe0f; WordPress<\\/h3>\\n<strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/wordpress\\/ajax-author-box\\\">Ajax Author Box<\\/a><\\/strong>\\nThe native WP Author Metabox has been replaced with an Ajax version allowing to manage thousands of users without slowing down the post administration. The new Author box also include an inline search input.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/wordpress\\/enhanced-ui\\\">Enhanced UI<\\/a><\\/strong>\\nThe Taxonomy, User profile &amp; Settings views have been enhanced for a more consistent administration experience, using CSS\\/JS only.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/wordpress\\/polylang\\\">Polylang<\\/a><\\/strong>\\nACF Extended adds a new layer of compatibility for Polylang. ACF Options Pages and all ACF Extended Modules (Dynamic Post Type, Taxonomy, Options Pages, Block Type) are compatible.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/wordpress\\/screen-layouts\\\">Screen Layouts<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nPost Edit screens have been enhanced allowing up to 3 columns layout and multiple variations.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/wordpress\\/wpml\\\">WPML<\\/a><\\/strong>\\nACF Extended adds a new layer of compatibility for WPML. ACF Options Pages and all ACF Extended Modules (Dynamic Post Type, Taxonomy, Options Pages, Block Type) are compatible.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/wordpress\\/options\\\">WP Options<\\/a><\\/strong>\\nManage WordPress Options from the Settings &gt; Options page. Options value (strings, serialized &amp; Json) will be displayed in a readable form. Values can be edited or deleted.<h3>&#x2764;&#xfe0f; Early Supporters<\\/h3><\\/p>\\n<ul>\\n<li>Thanks to <a href=\\\"https:\\/\\/twitter.com\\/AsmussenBrandon\\\">Brandon A.<\\/a> for his support &amp; tests<\\/li>\\n<li>Thanks to <a href=\\\"https:\\/\\/twitter.com\\/DamChtlv\\\">Damien C.<\\/a> for his support &amp; tests<\\/li>\\n<li>Thanks to <a href=\\\"https:\\/\\/twitter.com\\/Val_Pellegrin\\\">Valentin P.<\\/a> for his support &amp; tests<\\/li>\\n<li>Thanks to Damian P. for his support &amp; tests<\\/li>\\n<li>Thanks to <a href=\\\"https:\\/\\/twitter.com\\/jsaarenk\\\">Jaakko S.<\\/a> for his support &amp; tests<\\/li>\\n<li>Thanks to <a href=\\\"https:\\/\\/twitter.com\\/altendorfme\\\">Renan A.<\\/a> for his support &amp; tests<h3>&#x1f970; Donors<\\/h3><\\/li>\\n<li>Thanks to RavenSays<\\/li>\\n<li>Thanks to Dave A.<\\/li>\\n<li>Thanks to Rob H.<\\/li>\\n<li>Thanks to Valentin P.<\\/li>\\n<li>Thanks to Alan A.<\\/li>\\n<li>Thanks to Damian C.<\\/li>\\n<li>Thanks to Andrew<\\/li>\\n<li>Thanks to Kimantis<\\/li>\\n<li>Thanks to Anonymous<\\/li>\\n<li>Thanks to Chris<\\/li>\\n<li>Thanks to Dennis D.<\\/li>\\n<li>Thanks to Cody R.<\\/li>\\n<li>Thanks to Jamie<\\/li>\\n<li>Thanks to Dave A.<\\/li>\\n<li>Thanks to Paul M.<\\/li>\\n<li>Thanks to David B.<\\/li>\\n<li>Thanks to Swingjac<\\/li>\\n<li>Thanks to Erik<\\/li>\\n<li>Thanks to Giancarlo P.<\\/li>\\n<li>Thanks to Geuer M.<\\/li>\\n<\\/ul>\",\"installation\":\"<h4> Wordpress Install <\\/h4>\\n<ol>\\n<li>Install Advanced Custom Fields: Pro<\\/li>\\n<li>Upload the plugin files to the <code>\\/wp-content\\/plugins\\/acf-extended\\/<\\/code> directory, or install the plugin through the WordPress plugins screen directly.<\\/li>\\n<li>Activate the plugin through the \'Plugins\' screen in WordPress.<\\/li>\\n<li>Everything is ready!<\\/li>\\n<\\/ol>\",\"changelog\":\"<h4> 0.9.1 <\\/h4>\\n<p><strong>ACF Extended Pro 0.9.1:<\\/strong><\\/p>\\n<ul>\\n<li>Field: Flexible Content - Added &quot;Dynamic Preview Iframe&quot; feature<\\/li>\\n<li>Field: Flexible Content - Added &quot;Dynamic Preview Responsive&quot; feature<\\/li>\\n<li>Field: Flexible Content - &quot;Dynamic Preview Iframe&quot; render previews in isolated iframes<\\/li>\\n<li>Field: Flexible Content - &quot;Dynamic Preview Responsive&quot; allows to switch container preview size<\\/li>\\n<li>Field: Address - Cleaned unused argument<\\/li>\\n<li>Field: Google Map - Added <code>acfe_render_google_map()<\\/code> compatibility with sub fields<\\/li>\\n<li>Field: Google Map - Enhanced <code>acfe_render_google_map()<\\/code> compatibility with Dynamic Preview<\\/li>\\n<li>Field: Radio - Fixed &quot;Custom Choice&quot; render<\\/li>\\n<li>Field: WYSIWYG - Enhanced <code>source_code<\\/code> modal reset stylesheet<\\/li>\\n<li>Field Group Location: Renamed &quot;Dashboard&quot; to &quot;WP Dashboard&quot; for consistency<\\/li>\\n<li>Module: Forms - Ajax submission now redraw form on submission<\\/li>\\n<\\/ul>\\n<p><strong>ACF Extended Basic 0.9.1:<\\/strong><\\/p>\\n<ul>\\n<li>Field: Advanced Link - Enhanced malformed values handling<\\/li>\\n<li>Field: Flexible Content - Added <code>acfe\\/flexible\\/toggle_hide<\\/code> filter to control row visibility<\\/li>\\n<li>Field: reCaptcha - Enhanced error handling when using incorrect API key<\\/li>\\n<li>Field: Taxonomy Terms - Fixed ajax nonce verification when field is cloned<\\/li>\\n<li>Module: Forms - Enhanced File\\/Image\\/Gallery &quot;Uploaded To&quot; logic using related Form Action<\\/li>\\n<\\/ul>\\n<h4> 0.9.0.9 <\\/h4>\\n<p><strong>ACF Extended Pro 0.9.0.9:<\\/strong><\\/p>\\n<ul>\\n<li>Field: Address - Added new Address Field<\\/li>\\n<li>Field: Address - Allows to enter\\/search an address with autocomplete (Google Places API)<\\/li>\\n<li>Field: Color Picker - Added &quot;Return Format: Slug&quot; setting<\\/li>\\n<li>Field: Color Picker - Added &quot;Slug&quot; &amp; &quot;RGBA Array&quot; into the &quot;Color Array&quot; return format<\\/li>\\n<li>Field: Color Picker - Added compatibility with CSS variables for &quot;Palette&quot; display<\\/li>\\n<li>Field: Color Picker - Added <code>editor-gradient-presets<\\/code> theme support<\\/li>\\n<li>Field: Date Range Picker - Enhanced compatibility with custom hooks<\\/li>\\n<li>Field: Date Range Picker - Allowed to clear to input manually when &quot;Allow null&quot; is enabled<\\/li>\\n<li>Field: Date Range Picker - Added &quot;x&quot; icon to clear the input when &quot;Allow null&quot; is enabled<\\/li>\\n<li>Field: Date Range Picker - Added &quot;Prepend&quot; &amp; &quot;Append&quot; settings<\\/li>\\n<li>Field: Google Map - Added <code>acfe_render_google_map()<\\/code> helper to display a map on front-end<\\/li>\\n<li>Field: Google Map - Fixed ACF UI settings sync when interacting with the Map Preview<\\/li>\\n<\\/ul>\\n<p><strong>ACF Extended Basic 0.9.0.9:<\\/strong><\\/p>\\n<ul>\\n<li>Field: Flexible Content - Fixed <code>get_row()<\\/code> &amp; <code>get_row_layout()<\\/code> usage in WP Admin preview<\\/li>\\n<li>Field: Taxonomy Terms - Fixed ajax nonce compatibility with ACF 6.3.10<\\/li>\\n<li>Field Group: Small UI\\/CSS tweaks<\\/li>\\n<\\/ul>\\n<h4> 0.9.0.8 <\\/h4>\\n<p><strong>ACF Extended Pro 0.9.0.8:<\\/strong><\\/p>\\n<ul>\\n<li>Field: Phone Number - Fixed data when querying the &quot;Lightweight Phonenumber Library&quot;<\\/li>\\n<li>Field: Image Selector - Fixed images with parameters usage when using &quot;Multiple Select&quot;<\\/li>\\n<li>Field: Image Selector - Enhanced file extension detection when using images with parameters<\\/li>\\n<li>Field: Image Selector - Reworked image rendering using proper <code>&lt;img \\/&gt;<\\/code> with <code>object-fit<\\/code><\\/li>\\n<li>Module: Performance - Hybrid - Restoring a revision doesn\'t append meta references anymore<\\/li>\\n<\\/ul>\\n<p><strong>ACF Extended Basic 0.9.0.8:<\\/strong><\\/p>\\n<ul>\\n<li>Field: Flexible Content - Dynamic Render - Filters can now change <code>wp_enqueue_style()<\\/code> args<\\/li>\\n<li>Field: Flexible Content - Dynamic Render - Filters can now change <code>wp_enqueue_script()<\\/code> args<\\/li>\\n<li>Field: Flexible Content - Dynamic Render - Added <code>get_row_index()<\\/code> usage compatibility<\\/li>\\n<li>Field: Flexible Content - Dynamic Render - Fixed <code>WP_Query<\\/code> loop usage with <code>get_field()<\\/code><\\/li>\\n<li>Field: Icon Picker - Fixed &quot;Media Library&quot; image preview<\\/li>\\n<li>Module: Forms - Allowed usage of fields using the same name as fields in the back-end<\\/li>\\n<li>Module: Forms - Fixed field settings nonce verification compatibility with ACF 6.3.10<\\/li>\\n<li>Module: Performance - Ultra - Revisions are now supported when allowing specific post types<\\/li>\\n<li>Module: Performance - Ultra - Revisions are now compatible with &quot;Save as individual meta&quot;<\\/li>\\n<li>Module: Performance - Ultra - Enhanced &quot;Revision Comparison&quot; view with more readable data<\\/li>\\n<li>Module: Performance - Ultra - Enhanced <code>acf<\\/code> meta detection when the value is malformed<\\/li>\\n<li>Field Group: Location - Fixed warning when using third party location that is later uninstalled<\\/li>\\n<li>General: Enhanced <code>acfe_include()<\\/code> helper<\\/li>\\n<li>General: Fixed potentital PHP 8 warning with <code>acfe_starts_with()<\\/code> helper<\\/li>\\n<li>General: Updated WP 6.7 metabox order handle positioning<\\/li>\\n<li>General: Bump WP version up to 6.7<\\/li>\\n<\\/ul>\\n<h4> Version History <\\/h4>\\n<p>Full Changelog: <a href=\\\"https:\\/\\/www.acf-extended.com\\/changelog\\\">https:\\/\\/www.acf-extended.com\\/changelog<\\/a><\\/p>\",\"faq\":\"<h4>Where can I find the documentation?<\\/h4>\\n<p>You\'ll find the documentation of every features on the <a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\\">official ACF Extended website<\\/a>.<\\/p>\\n<h4>Where can I submit a bug report?<\\/h4>\\n<p>You can file a report on the <a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/acf-extended\\/\\\">Plugin Support Forum<\\/a> or on the <a href=\\\"https:\\/\\/github.com\\/acf-extended\\/ACF-Extended\\\">Github Page<\\/a> if you prefer.<\\/p>\\n<h4>Where can I submit a feature request?<\\/h4>\\n<p>You can submit a feature request on the <a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/acf-extended\\/\\\">Plugin Support Forum<\\/a>. Feature requests are all listed on the <a href=\\\"https:\\/\\/trello.com\\/b\\/QEgpU7CL\\/acf-extended\\\">Official Trello Board<\\/a>.<\\/p>\\n<h4>What is planned for the next update?<\\/h4>\\n<p>The content of the upcoming patch and work in progress features are all listed on the <a href=\\\"https:\\/\\/www.acf-extended.com\\/roadmap\\\">Official Roadmap<\\/a> (or the Trello Board).<\\/p>\\n\"},\"banners\":{\"high\":\"https:\\/\\/ps.w.org\\/acf-extended\\/assets\\/banner-1544x500.png\",\"low\":\"https:\\/\\/ps.w.org\\/acf-extended\\/assets\\/banner-772x250.png\"},\"icons\":{\"1x\":\"https:\\/\\/www.acf-extended.com\\/wp-content\\/uploads\\/edd\\/acf-extended-256x256-1-128x128.png\",\"2x\":\"https:\\/\\/www.acf-extended.com\\/wp-content\\/uploads\\/edd\\/acf-extended-256x256-1.png\"},\"tags\":[\"acf\",\"custom fields\",\"meta\",\"admin\",\"fields\"],\"requires\":\"4.9\",\"tested\":\"6.7\",\"requires_php\":\"5.6\",\"contributors\":{\"hwk-fr\":{\"display_name\":\"hwk-fr\",\"profile\":\"\\/\\/profiles.wordpress.org\\/hwk-fr\",\"avatar\":\"https:\\/\\/wordpress.org\\/grav-redirect.php?user=hwk-fr\"}},\"stable_tag\":\"0.9.1\",\"donate_link\":\"https:\\/\\/www.acf-extended.com\",\"short_description\":\"All-in-one enhancement suite that improves WordPress &amp; Advanced Custom Fields.\",\"license\":\"GPLv2 or later\",\"screenshots\":{\"1\":\"Flexible Content Preview\",\"2\":\"Flexible Content Modal\",\"3\":\"New Fields\",\"4\":\"Post Type List Location\",\"5\":\"Self\\/Multi\\/Bidirectional Fields\",\"6\":\"Developer Mode\",\"7\":\"Dynamic Post Types\",\"8\":\"Enhanced WordPress UI\"},\"faq\":[\"<h4>Where can I find the documentation?<\\/h4>\\n<p>You\'ll find the documentation of every features on the <a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\\">official ACF Extended website<\\/a>.<\\/p>\\n<h4>Where can I submit a bug report?<\\/h4>\\n<p>You can file a report on the <a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/acf-extended\\/\\\">Plugin Support Forum<\\/a> or on the <a href=\\\"https:\\/\\/github.com\\/acf-extended\\/ACF-Extended\\\">Github Page<\\/a> if you prefer.<\\/p>\\n<h4>Where can I submit a feature request?<\\/h4>\\n<p>You can submit a feature request on the <a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/acf-extended\\/\\\">Plugin Support Forum<\\/a>. Feature requests are all listed on the <a href=\\\"https:\\/\\/trello.com\\/b\\/QEgpU7CL\\/acf-extended\\\">Official Trello Board<\\/a>.<\\/p>\\n<h4>What is planned for the next update?<\\/h4>\\n<p>The content of the upcoming patch and work in progress features are all listed on the <a href=\\\"https:\\/\\/www.acf-extended.com\\/roadmap\\\">Official Roadmap<\\/a> (or the Trello Board).<\\/p>\\n\"],\"warnings\":[],\"description\":[\"<p>&#x1f680; All-in-one enhancement suite that improves WordPress &amp; Advanced Custom Fields. This plugin aims to provide a powerful administration framework with a wide range of improvements &amp; optimizations.<\\/p>\\n<p><strong>This plugin requires at least ACF Pro 5.8.<\\/strong>\\nIf you don\'t already own <a href=\\\"https:\\/\\/www.advancedcustomfields.com\\/pro\\/\\\">ACF Pro<\\/a>, you should consider it. It\'s one of the most powerful WordPress plugin available.<\\/p>\\n<h3>&#x2b50; Highlight<\\/h3>\\n<ul>\\n<li>14+ New ACF Fields<\\/li>\\n<li>10+ ACF Fields Enhanced<\\/li>\\n<li>4+ New Field Groups Locations<\\/li>\\n<li>Self\\/Multi\\/Bidirectional Fields<\\/li>\\n<li>Advanced Fields Validation<\\/li>\\n<li>Flexible Content as Page Builder<\\/li>\\n<li>Optimize metadata with Performance Mode<\\/li>\\n<li>Advanced Front-End Forms Manager<\\/li>\\n<li>ACF Options Pages \\/ Block Types Manager<\\/li>\\n<li>ACF &amp; WordPress Meta Overview<\\/li>\\n<li>WordPress Post Types \\/ Taxonomies Manager<\\/li>\\n<li>WordPress Options Manager<\\/li>\\n<li>WordPress Admin Enhancements<\\/li>\\n<li>WPML &amp; Polylang Multilingual support<\\/li>\\n<li>... And many more features<h3>&#x1f48e; Pro Highlight<\\/h3><\\/li>\\n<li>20+ New ACF Fields<\\/li>\\n<li>10+ ACF Fields Enhanced<\\/li>\\n<li>20+ New Locations<\\/li>\\n<li>Payment Field with Stripe &amp; PayPal Express<\\/li>\\n<li>Flexible Content Grid System<\\/li>\\n<li>Flexible Content Layouts Locations Rules<\\/li>\\n<li>Templates Manager<\\/li>\\n<li>Builtin Classic Editor<\\/li>\\n<li>Settings UI<\\/li>\\n<li>Screen Layouts<\\/li>\\n<li>Force Json Sync<\\/li>\\n<li>Field Visibility Settings<\\/li>\\n<li>Global Field Conditional Rules<\\/li>\\n<li>... And many more features<h3>&#x1f91f; Philosophy<\\/h3><\\/li>\\n<li>Seamless integration<\\/li>\\n<li>No extra menu, ads or notices<\\/li>\\n<li>Built by developers, for developers<h3>&#x1f6e0;&#xfe0f; Links<\\/h3><\\/li>\\n<li><a href=\\\"https:\\/\\/www.acf-extended.com\\\">Website<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\\">Documentation<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/www.acf-extended.com\\/guides\\\">Guides<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/www.acf-extended.com\\/roadmap\\\">Roadmap<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/github.com\\/acf-extended\\/ACF-Extended\\\">GitHub<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/twitter.com\\/ACFExtended\\\">Twitter<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/twitter.com\\/hwkfr\\\">Twitter<\\/a> (Personal)<\\/li>\\n<li><a href=\\\"https:\\/\\/slack.acf-extended.com\\\">Slack Community<\\/a><h3>&#x1f9f0; Tools<\\/h3><\\/li>\\n<li><a href=\\\"https:\\/\\/wordpress.org\\/plugins\\/acf-extended\\/#faq\\\">FAQ<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/acf-extended\\\">Support<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/acf-extended\\\">Feature Request<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/wordpress.org\\/support\\/plugin\\/acf-extended\\/reviews\\/#new-post\\\">Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/ko-fi.com\\/acfextended\\\">Donation<\\/a><h3>&#x1f4c1; Field Groups<\\/h3>\\n<strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/advanced-settings\\\">Advanced Settings<\\/a><\\/strong>\\nEnable advanced settings for all fields within the Field Group.<\\/li>\\n<\\/ul>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/autosync\\\">Auto Sync PHP<\\/a><\\/strong>\\nAutomatically synchronize field groups with local PHP files upon field group updates. This feature will create, include and update a local PHP file for each field group.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/autosync\\\">Auto Sync Json<\\/a><\\/strong>\\nControl which field groups you want to synchronize with local Json files. Display warnings if the Json file has been manually deleted.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/categories\\\">Categories<\\/a><\\/strong>\\nSpice up your field groups with a custom taxonomy and filter field groups by terms.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/custom-key\\\">Custom Key<\\/a><\\/strong>\\nSet custom field group key. Example: <code>group_custom_name<\\/code>.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/custom-meta\\\">Custom Meta<\\/a><\\/strong>\\nAdd custom metas (key\\/value) in the field group administration.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/display-title\\\">Display Title<\\/a><\\/strong>\\nDisplay an alternative field group title in post edition screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/field-group-ui\\\">Field Group UI<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nEnable enhancements to the Field Group UI for a better user experience.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/force-sync\\\">Force Sync<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nAlways keep Json files synchronized with the Field Groups in the database.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/hide-on-screen\\\">Hide on Screen<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nHide Gutenberg Block Editor and 10+ more items to hide in the field group settings.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/instruction-placement\\\">Instructions Placement<\\/a><\\/strong>\\nNew instruction placements let you display field description &quot;above the fields&quot; or in a &quot;tooltip&quot;.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/advanced-post\\\">Location: Advanced Post<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nA collection of multiple new Field Groups locations allowing developers to target posts with specific conditions (Post author, date, slug, path etc...).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/advanced-menu-item\\\">Location: Advanced Menu Item<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nTarget specific &quot;Menu Item Depth&quot; or &quot;Menu Item Type&quot; from the Field Groups Locations rules.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/advanced-taxonomy\\\">Location: Advanced Taxonomy Term<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nA collection of multiple new Field Groups locations allowing developers to target taxonomy and terms with specific conditions (Term name, parent, slug etc...).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/all-post-types\\\">Location: All post types<\\/a><\\/strong>\\nDisplay field groups on all post types edition screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/attachment-list\\\">Location: Attachment List<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay field group on attachment admin list screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/dashboard\\\">Location: Dashboard Widgets<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay field groups and update ACF Fields from the WP Dashboard.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/field-value\\\">Location: Field Value<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a field group based on the field value of an another field group.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/post-type-archive\\\">Location: Post type Archive<\\/a><\\/strong>\\nAdd an Archive Option Page under the Post Type admin menu. Display and save any field groups within it.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/post-type-list\\\">Location: Post type List<\\/a><\\/strong>\\nDisplay field group on post types admin list screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/taxonomy-list\\\">Location: Taxonomy List<\\/a><\\/strong>\\nDisplay field group on taxonomies admin list screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/user-list\\\">Location: User List<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay field group on user admin list screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/woocommerce\\\">Location: Woocommerce<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay field groups on Woocommerce pages.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/locations\\/wp-settings\\\">Location: WP Settings<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay field groups on WP Settings pages: General, Writing, Reading, Discussion, Media and Permalinks.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/\\\">Local Field Groups<\\/a><\\/strong>\\nDisplay local field groups that are loaded by ACF, but not available in the ACF field group administration. Example: Field groups that are registered in the <code>functions.php<\\/code> file, but not in the ACF UI.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/note\\\">Note<\\/a><\\/strong>\\nAdd a personal note in the field group administration. Only visible to administrators.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/permissions\\\">Permissions<\\/a><\\/strong>\\nAdd permission layer to field groups. Choose which roles can view &amp; edit field groups in the post edition screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-groups\\/raw-data\\\">Raw Data<\\/a><\\/strong>\\nDisplay raw field group data in a modal to check your configuration &amp; settings.<h3>&#x2699;&#xfe0f; Fields Settings<\\/h3>\\n<strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/field-advanced-settings\\\">Advanced Settings<\\/a><\\/strong>\\nA more sophisticated field settings based on specified location (administration\\/front-end). Example: Field is required only in front-end.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/advanced-validation\\\">Advanced Validation<\\/a><\\/strong>\\nA more sophisticated validation conditions (AND\\/OR) with custom error messages based on specified location (administration\\/front-end).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/bidirectional-fields\\\">Self\\/Multi\\/Bidirectional fields<\\/a><\\/strong>\\nAn advanced bidirectional setting (also called post-to-post) is available for the following fields: Relationship, Post object, User &amp; Taxonomy terms. Fields will work bidirectionally and automatically update each others. Works in groups &amp; clones.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/field-visibility\\\">Field Visibility<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nGet quick access to &quot;Field Visibility&quot;, &quot;Label Visibility&quot;, &quot;Instructions Visibility&quot; and &quot;Required Setting&quot; for the following screens: &quot;Everywhere&quot;, &quot;Front-end&quot; and &quot;Administration&quot;.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/global-condition\\\">Global Condition<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nEnable Global Conditional Logic for a specific field, which can then be used in an another Field Group as condition, both as Field Group Condition and Field Condition.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/field-instruction-placement\\\">Instruction Placement<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nOverride a specific field instruction placement to any position: Below labels, below fields, above fields or tooltip.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/instruction-read-more\\\">Instruction Read More<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nAllow to expand instructions text with a &quot;Read More&quot; link. This feature is useful for lengthy instructions text.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/min-max\\\">Min\\/Max<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nMinimum &amp; maximum items is a global field setting that let you define a specific number of items that can or should be added by the user.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/field-permissions\\\">Permissions<\\/a><\\/strong>\\nAdd permission layer to fields. Choose which roles can view &amp; edit fields in the post edition screen. (can be combined with field groups permissions).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/field-raw-data\\\">Raw data<\\/a><\\/strong>\\nDisplay raw field data in a modal to check your configuration &amp; settings.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/field-settings\\/required-message\\\">Required Message<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nThis setting allow developers to define a custom error message within the field settings for a more intuitive user experience.<h3>&#x1f3f7;&#xfe0f; Fields<\\/h3>\\n<strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/advanced-link\\\">Advanced Link<\\/a><\\/strong>\\nDisplay a modern Link Selection in a modal. Posts, Post Types Archives &amp; terms selection can be filtered in the field administration.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/block-editor\\\">Block Editor<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an isolated Block Editor field on admin screen (with Classic Editor enabled) or on the front-end.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/block-types\\\">Block Types<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an ACF Block Types selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/button\\\">Button<\\/a><\\/strong>\\nDisplay a custom submit or button. Built-in ajax call setting. Usage example available in the field administration.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/checkbox\\\">Checkbox<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nDefine grouped choices values using <code>## Title<\\/code> markup in the field\'s choices.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/clone\\\">Clone<\\/a><\\/strong>\\nAllow users to edit clone fields in a modal. Choose the edit button text, display close button and the modal size.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/code-editor\\\">Code Editor<\\/a><\\/strong>\\nEdit code using the native WP Core Codemirror library. Default languages: Text\\/HTML, Javascript, CSS, PHP mixed\\/plain.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/color-picker\\\">Color Picker<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nA collection of advanced settings for the ACF Color Picker. The field can now be displayed as a palette, custom colors can be predefined and RGBA mode is supported.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/columns\\\">Columns<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nOrganize and re-arrange your fields using columns and line-breaks. The field acts like the ACF Accordion\\/Tab field and allow you to create virtually grouped fields which will be displayed inside columns.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/countries\\\">Countries<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Country selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/currencies\\\">Currencies<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Currency selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/datepicker\\\">Date\\/Timepicker<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nDisplay a modern UI of the ACF Datepicker field. CSS and icons have been enhanced to fit WordPress admin UI and colors.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/date-range-picker\\\">Date Range Picker<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Date Range Picker. The field support a wide range of customization, such as: Placeholder, Default dates, Range Restriction, Date restriction, No weekends etc.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/dynamic-render\\\">Dynamic Render<\\/a><\\/strong>\\nDisplay custom HTML\\/PHP content using a simple named hook.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/field-groups-selector\\\">Field Groups<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an ACF Field Groups selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/field-types\\\">Field Types<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an ACF Field Types selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/fields-selector\\\">Fields<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an ACF Fields selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/file\\\">File<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nChoose the uploader type, enable multi file upload and dropzone.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/flexible-content\\\">Flexible Content<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nDisplayed an enhanced version of the native Flexible Content field. Dozens of new settings and settings were added, allowing developers to create the most advanced page builder and fully control the field\'s behavior.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/forms\\\">Forms<\\/a><\\/strong>\\nSelect any dynamic form (format: checkbox, radio or select).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/google-map\\\">Google Map<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nA collection of new settings added to the ACF Google Map Field that allow developers to have more control over the field behavior.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/recaptcha\\\">Google reCaptcha<\\/a><\\/strong>\\nDisplay a reCaptcha field (compatible v2 &amp; v3).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/group\\\">Group<\\/a><\\/strong>\\nAllow users to edit group fields in a modal Choose the edit button text, display close button and the modal size<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/hidden-input\\\">Hidden Input<\\/a><\\/strong>\\nDisplay a hidden input with custom name\\/value<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/image\\\">Image<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nChoose the uploader type, customize the upload folder and set the image as post featured thumbnail<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/image-selector\\\">Image Selector<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an Image Selector field.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/image-sizes\\\">Image Sizes<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an Image Sizes selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/languages\\\">Languages<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Language selector as radio, checkbox or select field type, compatible with WPML &amp; Polylang.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/menu-locations\\\">Menu Locations<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Menu Locations selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/menus\\\">Menus<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Menu selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/options-pages\\\">Options Pages<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an ACF Options Pages selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/payment\\\">Payment<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Payment Field that supports with Stripe &amp; PayPal Express gateways, working on both front-end and back-end.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/payment-cart\\\">Payment Cart<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an optional Payment Cart to easily setup an e-commerce solution.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/payment-selector\\\">Payment Selector<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an optional Payment Selector which let the user switch the payment gateway.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/phone-number\\\">Phone Number<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a fully customizable international Phone Number field.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/post-field\\\">Post Field<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nThe Post Field is a new field that allow developers to move native WordPress fields such as Post Title, Date, Status, Visibility, Permalink etc.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/post-formats\\\">Post Formats<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay a Post Format selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\\">Post Object<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nAllow user to enter custom value which will be saved as a new post, or enable the inline post creation\\/edit.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/post-statuses\\\">Post Status<\\/a><\\/strong>\\nSelect any post status (format: checkbox, radio or select)<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/post-types\\\">Post Types<\\/a><\\/strong>\\nSelect any post type (format: checkbox, radio or select)<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/radio\\\">Radio<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nDefine grouped choices values using <code>## Title<\\/code> markup in the field\'s choices.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/relationship\\\">Relationship<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nThe Relationship field includes new settings allowing users to create and edit post on-the-fly from the post edit screen.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/repeater\\\">Repeater<\\/a><\\/strong>\\nAdd stylised to \'Add Row\' button, lock rows and remove repeater\'s actions.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/select\\\">Select<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nChange the default &quot;Select&quot; placeholder text and Search Input placeholder and allow user to enter custom values.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/slug\\\">Slug<\\/a><\\/strong>\\nA slug text input (ie: <code>my-text-input<\\/code>).<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/tab\\\">Tab<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisable the last opened tab user preference. Which means that when the user will refresh the page, it will always load the first tab.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/taxonomies\\\">Taxonomies<\\/a><\\/strong>\\nSelect any taxonomy (format: checkbox, radio or select)<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/taxonomy-terms\\\">Taxonomy Terms<\\/a><\\/strong>\\nSelect any terms of any taxonomies, allow specific terms, level or childrens (format: checkbox or select). Terms can be loaded &amp; saved for the current post (just like the native ACF Taxonomy field)<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/templates-selector\\\">Templates<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nDisplay an ACF Extended Templates selector as radio, checkbox or select field type.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/textarea\\\">Textarea<\\/a><\\/strong>\\nSwitch font family to monospace and allow tab indent.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/true-false\\\">True\\/False<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nFive new styles have been added to the native True\\/False field.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/user-roles\\\">User Roles<\\/a><\\/strong>\\nSelect any user role (format: checkbox, radio or select)<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/fields\\/wysiwyg-editor\\\">WYSIWYG Editor<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nNew settings allowing developers to have more control over the field behavior.<h3>&#x1f6e0;&#xfe0f; Modules<\\/h3>\\n<strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/dynamic-block-types\\\">Block Types UI<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nThe Dynamic Block Types module allows you to register and manage ACF Block Types from your WordPress admin, in ACF &gt; Block Types menu. Pro version allows to sync Json\\/PHP files.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/classic-editor\\\">Classic Editor<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nACF Extended is bundled with a custom merged version of the Classic Editor &amp; Disable Gutenberg plugins.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/developer-mode\\\">Developer Mode<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nThe Developer Mode allow you to view all Posts, Terms, Users &amp; Options custom metadata in a readable format. This feature is very useful to check what is actually saved in any WordPress Object.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/dynamic-forms\\\">Forms<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nManage Advanced ACF Forms from the WordPress administration. This module is an enhanced version of the native ACF Form feature. While all native settings can be used, Dynamic Forms adds many new settings and introduce &quot;Actions&quot; for a complete control over the form behavior.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/dynamic-options-pages\\\">Options Pages UI<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nThe Dynamic Options Pages module allows you to register and manage ACF Options Pages from your WordPress admin, in ACF &gt; Options Pages menu. Pro version allows to sync Json\\/PHP files.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/performance-mode\\\">Performance Mode<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nA unique module that allows developers to optimize database load when dealing with hundreds or thousands of metadata with two different methods: Ultra &amp; Hybrid Engines.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/dynamic-post-types\\\">Post Types UI<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nThe Dynamic Post Types module allows you to register and manage custom post types from your WordPress admin, in Tools &gt; Post Types menu. Pro version allows to sync Json\\/PHP files.<\\/p>\\n<p>All native post types settings can be set within the UI. ACF Extended also adds more advanced settings allowing to manage posts per page, order etc\\u2026<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/rewrite-rules\\\">Rewrite Rules<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nGet an overview of all WordPress permalinks structures and rules. Test URLs, export rules and flush permalinks from the UI.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/scripts\\\">Scripts UI<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nRun custom scripts on thousands of posts. Including builtin &quot;Orphan Meta Cleaner&quot;, &quot;Script Launcher&quot; and &quot;Performance Converter&quot; scripts.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/settings-ui\\\">Settings UI<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nThe Settings UI allows developers to get an overview of all ACF and ACF Extended settings values from the ACF &gt; Settings menu.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/dynamic-taxonomies\\\">Taxonomies UI<\\/a><\\/strong> <strong>(FREE \\/ PRO)<\\/strong>\\nThe Dynamic Taxonomies module allows you to register and manage custom taxonomies from your WordPress admin, in Tools &gt; Taxonomies menu. Pro version allows to sync Json\\/PHP files.<\\/p>\\n<p>All native taxonomies settings can be set within the UI. ACF Extended also adds more advanced settings allowing to manage posts per page, order etc\\u2026<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/modules\\/templates\\\">Templates<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nManage default ACF values in an advanced way and sync templates with Json\\/PHP files.<h3>&#x1f5a5;&#xfe0f; WordPress<\\/h3>\\n<strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/wordpress\\/ajax-author-box\\\">Ajax Author Box<\\/a><\\/strong>\\nThe native WP Author Metabox has been replaced with an Ajax version allowing to manage thousands of users without slowing down the post administration. The new Author box also include an inline search input.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/wordpress\\/enhanced-ui\\\">Enhanced UI<\\/a><\\/strong>\\nThe Taxonomy, User profile &amp; Settings views have been enhanced for a more consistent administration experience, using CSS\\/JS only.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/wordpress\\/polylang\\\">Polylang<\\/a><\\/strong>\\nACF Extended adds a new layer of compatibility for Polylang. ACF Options Pages and all ACF Extended Modules (Dynamic Post Type, Taxonomy, Options Pages, Block Type) are compatible.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/wordpress\\/screen-layouts\\\">Screen Layouts<\\/a><\\/strong> <strong>(PRO)<\\/strong>\\nPost Edit screens have been enhanced allowing up to 3 columns layout and multiple variations.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/wordpress\\/wpml\\\">WPML<\\/a><\\/strong>\\nACF Extended adds a new layer of compatibility for WPML. ACF Options Pages and all ACF Extended Modules (Dynamic Post Type, Taxonomy, Options Pages, Block Type) are compatible.<\\/p>\\n<p><strong><a href=\\\"https:\\/\\/www.acf-extended.com\\/features\\/wordpress\\/options\\\">WP Options<\\/a><\\/strong>\\nManage WordPress Options from the Settings &gt; Options page. Options value (strings, serialized &amp; Json) will be displayed in a readable form. Values can be edited or deleted.<h3>&#x2764;&#xfe0f; Early Supporters<\\/h3><\\/p>\\n<ul>\\n<li>Thanks to <a href=\\\"https:\\/\\/twitter.com\\/AsmussenBrandon\\\">Brandon A.<\\/a> for his support &amp; tests<\\/li>\\n<li>Thanks to <a href=\\\"https:\\/\\/twitter.com\\/DamChtlv\\\">Damien C.<\\/a> for his support &amp; tests<\\/li>\\n<li>Thanks to <a href=\\\"https:\\/\\/twitter.com\\/Val_Pellegrin\\\">Valentin P.<\\/a> for his support &amp; tests<\\/li>\\n<li>Thanks to Damian P. for his support &amp; tests<\\/li>\\n<li>Thanks to <a href=\\\"https:\\/\\/twitter.com\\/jsaarenk\\\">Jaakko S.<\\/a> for his support &amp; tests<\\/li>\\n<li>Thanks to <a href=\\\"https:\\/\\/twitter.com\\/altendorfme\\\">Renan A.<\\/a> for his support &amp; tests<h3>&#x1f970; Donors<\\/h3><\\/li>\\n<li>Thanks to RavenSays<\\/li>\\n<li>Thanks to Dave A.<\\/li>\\n<li>Thanks to Rob H.<\\/li>\\n<li>Thanks to Valentin P.<\\/li>\\n<li>Thanks to Alan A.<\\/li>\\n<li>Thanks to Damian C.<\\/li>\\n<li>Thanks to Andrew<\\/li>\\n<li>Thanks to Kimantis<\\/li>\\n<li>Thanks to Anonymous<\\/li>\\n<li>Thanks to Chris<\\/li>\\n<li>Thanks to Dennis D.<\\/li>\\n<li>Thanks to Cody R.<\\/li>\\n<li>Thanks to Jamie<\\/li>\\n<li>Thanks to Dave A.<\\/li>\\n<li>Thanks to Paul M.<\\/li>\\n<li>Thanks to David B.<\\/li>\\n<li>Thanks to Swingjac<\\/li>\\n<li>Thanks to Erik<\\/li>\\n<li>Thanks to Giancarlo P.<\\/li>\\n<li>Thanks to Geuer M.<\\/li>\\n<\\/ul>\"],\"installation\":[\"<h4> Wordpress Install <\\/h4>\\n<ol>\\n<li>Install Advanced Custom Fields: Pro<\\/li>\\n<li>Upload the plugin files to the <code>\\/wp-content\\/plugins\\/acf-extended\\/<\\/code> directory, or install the plugin through the WordPress plugins screen directly.<\\/li>\\n<li>Activate the plugin through the \'Plugins\' screen in WordPress.<\\/li>\\n<li>Everything is ready!<\\/li>\\n<\\/ol>\"],\"changelog\":[\"<h4> 0.9.1 <\\/h4>\\n<p><strong>ACF Extended Pro 0.9.1:<\\/strong><\\/p>\\n<ul>\\n<li>Field: Flexible Content - Added &quot;Dynamic Preview Iframe&quot; feature<\\/li>\\n<li>Field: Flexible Content - Added &quot;Dynamic Preview Responsive&quot; feature<\\/li>\\n<li>Field: Flexible Content - &quot;Dynamic Preview Iframe&quot; render previews in isolated iframes<\\/li>\\n<li>Field: Flexible Content - &quot;Dynamic Preview Responsive&quot; allows to switch container preview size<\\/li>\\n<li>Field: Address - Cleaned unused argument<\\/li>\\n<li>Field: Google Map - Added <code>acfe_render_google_map()<\\/code> compatibility with sub fields<\\/li>\\n<li>Field: Google Map - Enhanced <code>acfe_render_google_map()<\\/code> compatibility with Dynamic Preview<\\/li>\\n<li>Field: Radio - Fixed &quot;Custom Choice&quot; render<\\/li>\\n<li>Field: WYSIWYG - Enhanced <code>source_code<\\/code> modal reset stylesheet<\\/li>\\n<li>Field Group Location: Renamed &quot;Dashboard&quot; to &quot;WP Dashboard&quot; for consistency<\\/li>\\n<li>Module: Forms - Ajax submission now redraw form on submission<\\/li>\\n<\\/ul>\\n<p><strong>ACF Extended Basic 0.9.1:<\\/strong><\\/p>\\n<ul>\\n<li>Field: Advanced Link - Enhanced malformed values handling<\\/li>\\n<li>Field: Flexible Content - Added <code>acfe\\/flexible\\/toggle_hide<\\/code> filter to control row visibility<\\/li>\\n<li>Field: reCaptcha - Enhanced error handling when using incorrect API key<\\/li>\\n<li>Field: Taxonomy Terms - Fixed ajax nonce verification when field is cloned<\\/li>\\n<li>Module: Forms - Enhanced File\\/Image\\/Gallery &quot;Uploaded To&quot; logic using related Form Action<\\/li>\\n<\\/ul>\\n<h4> 0.9.0.9 <\\/h4>\\n<p><strong>ACF Extended Pro 0.9.0.9:<\\/strong><\\/p>\\n<ul>\\n<li>Field: Address - Added new Address Field<\\/li>\\n<li>Field: Address - Allows to enter\\/search an address with autocomplete (Google Places API)<\\/li>\\n<li>Field: Color Picker - Added &quot;Return Format: Slug&quot; setting<\\/li>\\n<li>Field: Color Picker - Added &quot;Slug&quot; &amp; &quot;RGBA Array&quot; into the &quot;Color Array&quot; return format<\\/li>\\n<li>Field: Color Picker - Added compatibility with CSS variables for &quot;Palette&quot; display<\\/li>\\n<li>Field: Color Picker - Added <code>editor-gradient-presets<\\/code> theme support<\\/li>\\n<li>Field: Date Range Picker - Enhanced compatibility with custom hooks<\\/li>\\n<li>Field: Date Range Picker - Allowed to clear to input manually when &quot;Allow null&quot; is enabled<\\/li>\\n<li>Field: Date Range Picker - Added &quot;x&quot; icon to clear the input when &quot;Allow null&quot; is enabled<\\/li>\\n<li>Field: Date Range Picker - Added &quot;Prepend&quot; &amp; &quot;Append&quot; settings<\\/li>\\n<li>Field: Google Map - Added <code>acfe_render_google_map()<\\/code> helper to display a map on front-end<\\/li>\\n<li>Field: Google Map - Fixed ACF UI settings sync when interacting with the Map Preview<\\/li>\\n<\\/ul>\\n<p><strong>ACF Extended Basic 0.9.0.9:<\\/strong><\\/p>\\n<ul>\\n<li>Field: Flexible Content - Fixed <code>get_row()<\\/code> &amp; <code>get_row_layout()<\\/code> usage in WP Admin preview<\\/li>\\n<li>Field: Taxonomy Terms - Fixed ajax nonce compatibility with ACF 6.3.10<\\/li>\\n<li>Field Group: Small UI\\/CSS tweaks<\\/li>\\n<\\/ul>\\n<h4> 0.9.0.8 <\\/h4>\\n<p><strong>ACF Extended Pro 0.9.0.8:<\\/strong><\\/p>\\n<ul>\\n<li>Field: Phone Number - Fixed data when querying the &quot;Lightweight Phonenumber Library&quot;<\\/li>\\n<li>Field: Image Selector - Fixed images with parameters usage when using &quot;Multiple Select&quot;<\\/li>\\n<li>Field: Image Selector - Enhanced file extension detection when using images with parameters<\\/li>\\n<li>Field: Image Selector - Reworked image rendering using proper <code>&lt;img \\/&gt;<\\/code> with <code>object-fit<\\/code><\\/li>\\n<li>Module: Performance - Hybrid - Restoring a revision doesn\'t append meta references anymore<\\/li>\\n<\\/ul>\\n<p><strong>ACF Extended Basic 0.9.0.8:<\\/strong><\\/p>\\n<ul>\\n<li>Field: Flexible Content - Dynamic Render - Filters can now change <code>wp_enqueue_style()<\\/code> args<\\/li>\\n<li>Field: Flexible Content - Dynamic Render - Filters can now change <code>wp_enqueue_script()<\\/code> args<\\/li>\\n<li>Field: Flexible Content - Dynamic Render - Added <code>get_row_index()<\\/code> usage compatibility<\\/li>\\n<li>Field: Flexible Content - Dynamic Render - Fixed <code>WP_Query<\\/code> loop usage with <code>get_field()<\\/code><\\/li>\\n<li>Field: Icon Picker - Fixed &quot;Media Library&quot; image preview<\\/li>\\n<li>Module: Forms - Allowed usage of fields using the same name as fields in the back-end<\\/li>\\n<li>Module: Forms - Fixed field settings nonce verification compatibility with ACF 6.3.10<\\/li>\\n<li>Module: Performance - Ultra - Revisions are now supported when allowing specific post types<\\/li>\\n<li>Module: Performance - Ultra - Revisions are now compatible with &quot;Save as individual meta&quot;<\\/li>\\n<li>Module: Performance - Ultra - Enhanced &quot;Revision Comparison&quot; view with more readable data<\\/li>\\n<li>Module: Performance - Ultra - Enhanced <code>acf<\\/code> meta detection when the value is malformed<\\/li>\\n<li>Field Group: Location - Fixed warning when using third party location that is later uninstalled<\\/li>\\n<li>General: Enhanced <code>acfe_include()<\\/code> helper<\\/li>\\n<li>General: Fixed potentital PHP 8 warning with <code>acfe_starts_with()<\\/code> helper<\\/li>\\n<li>General: Updated WP 6.7 metabox order handle positioning<\\/li>\\n<li>General: Bump WP version up to 6.7<\\/li>\\n<\\/ul>\\n<h4> Version History <\\/h4>\\n<p>Full Changelog: <a href=\\\"https:\\/\\/www.acf-extended.com\\/changelog\\\">https:\\/\\/www.acf-extended.com\\/changelog<\\/a><\\/p>\"],\"plugin\":\"acf-extended-pro\\/acf-extended.php\",\"id\":\"acf-extended-pro\\/acf-extended.php\"}\";}','off'),(678,'acui_columns','a:0:{}','off'),(679,'acui_mail_subject','Welcome to Biomechanics Education','off'),(680,'acui_mail_body','Welcome,<br/>Your data to login in this site is:<br/><ul><li>URL to login: **loginurl**</li><li>Username= **username**</li><li>Password = **password**</li></ul>','off'),(681,'acui_mail_template_id','0','off'),(682,'acui_mail_attachment_id','0','off'),(683,'acui_enable_email_templates','','off'),(684,'acui_mail_disable_wp_editor','','off'),(685,'acui_cron_activated','','off'),(686,'acui_cron_send_mail','','off'),(687,'acui_cron_send_mail_updated','','off'),(688,'acui_cron_delete_users','','off'),(689,'acui_cron_delete_users_assign_posts','0','off'),(690,'acui_cron_change_role_not_present','','off'),(691,'acui_cron_change_role_not_present_role','0','off'),(692,'acui_cron_path_to_file','','off'),(693,'acui_cron_path_to_move','','off'),(694,'acui_cron_path_to_move_auto_rename','','off'),(695,'acui_cron_period','','off'),(696,'acui_cron_role','','off'),(697,'acui_cron_update_roles_existing_users','','off'),(698,'acui_cron_log','','off'),(699,'acui_cron_allow_multiple_accounts','not_allowed','off'),(700,'acui_frontend_send_mail','','off'),(701,'acui_frontend_send_mail_updated','','off'),(702,'acui_frontend_mail_admin','','off'),(703,'acui_frontend_force_user_reset_password','','off'),(704,'acui_frontend_send_mail_admin_address_list','','off'),(705,'acui_frontend_delete_users','','off'),(706,'acui_frontend_delete_users_assign_posts','0','off'),(707,'acui_frontend_change_role_not_present','','off'),(708,'acui_frontend_change_role_not_present_role','0','off'),(709,'acui_frontend_role','','off'),(710,'acui_frontend_update_existing_users','','off'),(711,'acui_frontend_update_roles_existing_users','','off'),(712,'acui_manually_send_mail','','off'),(713,'acui_manually_send_mail_updated','','off'),(714,'acui_automatic_wordpress_email','','off'),(715,'acui_automatic_created_edited_wordpress_email','','off'),(716,'acui_show_profile_fields','','off'),(717,'action_scheduler_hybrid_store_demarkation','41154','auto'),(718,'schema-ActionScheduler_StoreSchema','7.0.1728568707','auto'),(719,'schema-ActionScheduler_LoggerSchema','3.0.1728568707','auto'),(720,'action_scheduler_lock_async-request-runner','6707de56039511.08486761|1728568978','no'),(721,'acui_settings','a:4:{s:14:\"import_backend\";a:0:{}s:15:\"import_frontend\";a:0:{}s:11:\"import_cron\";a:0:{}s:14:\"export_backend\";a:10:{s:4:\"role\";s:0:\"\";s:7:\"columns\";s:0:\"\";s:4:\"from\";s:0:\"\";s:2:\"to\";s:0:\"\";s:9:\"delimiter\";s:5:\"COMMA\";s:17:\"convert_timestamp\";s:2:\"no\";s:15:\"datetime_format\";s:0:\"\";s:27:\"order_fields_alphabetically\";s:2:\"no\";s:36:\"double_encapsulate_serialized_values\";s:2:\"no\";s:48:\"display_arrays_as_comma_separated_list_of_values\";s:2:\"no\";}}','auto'),(802,'options_google_recaptcha_threshold','0.9','off'),(803,'_options_google_recaptcha_threshold','field_672b9041b6bd2','off'),(820,'db_upgraded','','on'),(822,'can_compress_scripts','0','on'),(1101,'category_children','a:0:{}','auto'),(1189,'TCM_PluginInstallDate[tracking-code-manager]','1739278854','auto'),(1190,'TCM_PluginUpdateDate[tracking-code-manager]','1739278855','auto'),(1191,'TCM_ShowWhatsNew','0','auto'),(1192,'TCM_PluginFirstInstall','0','auto'),(1193,'TCM_ShowWhatsNewSeenVersion','-1','auto'),(1194,'TCM_ShowActivationNotice','0','auto'),(1199,'mtphr_postduplicator_version','2.47','auto'),(1228,'mtphr_postduplicator_version_upgraded_from','2.46','auto'),(1323,'course-cat_children','a:1:{i:403;a:3:{i:0;i:404;i:1;i:408;i:2;i:409;}}','auto'),(1490,'TCM_SnippetList','a:1:{i:1;i:4;}','auto'),(1659,'TCM_Snippet_4','a:36:{s:6:\"active\";s:1:\"1\";s:9:\"trackMode\";i:0;s:9:\"trackPage\";i:0;s:2:\"id\";s:1:\"4\";s:4:\"name\";s:24:\"Facebook Marketing Pixel\";s:4:\"code\";s:700:\"<!-- Meta Pixel Code -->\r\n<script>\r\n  !function(f,b,e,v,n,t,s)\r\n  {if(f.fbq)return;n=f.fbq=function(){n.callMethod?\r\n  n.callMethod.apply(n,arguments):n.queue.push(arguments)};\r\n  if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version=\'2.0\';\r\n  n.queue=[];t=b.createElement(e);t.async=!0;\r\n  t.src=v;s=b.getElementsByTagName(e)[0];\r\n  s.parentNode.insertBefore(t,s)}(window, document,\'script\',\r\n  \'https://connect.facebook.net/en_US/fbevents.js\');\r\n  fbq(\'init\', \'130286197378090\');\r\n  fbq(\'track\', \'PageView\');\r\n</script>\r\n<noscript><img height=\"1\" width=\"1\" style=\"display:none\"\r\n  src=\"https://www.facebook.com/tr?id=130286197378090&ev=PageView&noscript=1\"\r\n/></noscript>\r\n<!-- End Meta Pixel Code -->\";s:5:\"order\";s:4:\"1000\";s:8:\"position\";i:0;s:23:\"includeEverywhereActive\";i:1;s:23:\"includeCategoriesActive\";i:0;s:17:\"includeTagsActive\";i:0;s:22:\"exceptCategoriesActive\";i:0;s:16:\"exceptTagsActive\";i:0;s:10:\"deviceType\";a:1:{i:0;s:3:\"all\";}s:30:\"includePostsOfType_page_Active\";i:0;s:23:\"includePostsOfType_page\";a:1:{i:0;s:2:\"-1\";}s:29:\"exceptPostsOfType_page_Active\";i:0;s:30:\"includePostsOfType_post_Active\";i:0;s:23:\"includePostsOfType_post\";a:1:{i:0;s:2:\"-1\";}s:29:\"exceptPostsOfType_post_Active\";i:0;s:11:\"codes_count\";i:1;s:17:\"includeCategories\";a:0:{}s:11:\"includeTags\";a:0:{}s:16:\"exceptCategories\";a:0:{}s:10:\"exceptTags\";a:0:{}s:22:\"exceptPostsOfType_page\";a:0:{}s:22:\"exceptPostsOfType_post\";a:0:{}s:21:\"CTC_10002_ProductsIds\";a:0:{}s:23:\"CTC_10002_CategoriesIds\";a:0:{}s:17:\"CTC_10002_TagsIds\";a:0:{}s:21:\"CTC_10001_ProductsIds\";a:0:{}s:23:\"CTC_10001_CategoriesIds\";a:0:{}s:17:\"CTC_10001_TagsIds\";a:0:{}s:21:\"CTC_10003_ProductsIds\";a:0:{}s:23:\"CTC_10003_CategoriesIds\";a:0:{}s:17:\"CTC_10003_TagsIds\";a:0:{}}','auto');
/*!40000 ALTER TABLE `6m7_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_postmeta`
--

DROP TABLE IF EXISTS `6m7_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_postmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=363546 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_postmeta`
--

LOCK TABLES `6m7_postmeta` WRITE;
/*!40000 ALTER TABLE `6m7_postmeta` DISABLE KEYS */;
INSERT INTO `6m7_postmeta` VALUES (2,3,'_wp_page_template','default'),(6,7,'_edit_last','17'),(7,7,'hero_style','default'),(8,7,'_hero_style','field_62051d9dc5324'),(10,7,'__thumbnail_id','field_617570855ddaf'),(11,7,'hero_image_pos_x','right'),(12,7,'_hero_image_pos_x','field_62ec3d05390bb'),(13,7,'hero_image_pos_y','top'),(14,7,'_hero_image_pos_y','field_62ec3d05390bc'),(15,7,'hero_image_pos',''),(16,7,'_hero_image_pos','field_62ec3d05390ba'),(17,7,'hero_title','Biomechanics Education'),(18,7,'_hero_title','field_617571fe285e8'),(19,7,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(20,7,'_hero_text','field_6175723c285e9'),(21,7,'hero_actions','1'),(22,7,'_hero_actions','field_61757270285ea'),(23,7,'hero_icon',''),(24,7,'_hero_icon','field_61a6182199d03'),(25,7,'fft_hide_from_listings','0'),(26,7,'_fft_hide_from_listings','field_61f1320446ab2'),(27,7,'fft_page_format','default'),(28,7,'_fft_page_format','field_61ae213f1f218'),(29,7,'fft_hide_nav','0'),(30,7,'_fft_hide_nav','field_635bd5e43527c'),(31,7,'fft_hide_header_call_to_action','0'),(32,7,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33,7,'fft_page_sitemap','0'),(34,7,'_fft_page_sitemap','field_61af9b34e8181'),(35,7,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:5:\"video\";i:7;s:5:\"quote\";i:8;s:8:\"template\";}'),(36,7,'_blocks','field_6176696113096'),(37,8,'hero_style','default'),(38,8,'_hero_style','field_62051d9dc5324'),(39,8,'_thumbnail_id',''),(40,8,'__thumbnail_id','field_617570855ddaf'),(41,8,'hero_image_pos_x','right'),(42,8,'_hero_image_pos_x','field_62ec3d05390bb'),(43,8,'hero_image_pos_y','top'),(44,8,'_hero_image_pos_y','field_62ec3d05390bc'),(45,8,'hero_image_pos',''),(46,8,'_hero_image_pos','field_62ec3d05390ba'),(47,8,'hero_title',''),(48,8,'_hero_title','field_617571fe285e8'),(49,8,'hero_text',''),(50,8,'_hero_text','field_6175723c285e9'),(51,8,'hero_actions',''),(52,8,'_hero_actions','field_61757270285ea'),(53,8,'hero_icon',''),(54,8,'_hero_icon','field_61a6182199d03'),(55,8,'fft_hide_from_listings','0'),(56,8,'_fft_hide_from_listings','field_61f1320446ab2'),(57,8,'fft_page_format','default'),(58,8,'_fft_page_format','field_61ae213f1f218'),(59,8,'fft_hide_nav','0'),(60,8,'_fft_hide_nav','field_635bd5e43527c'),(61,8,'fft_hide_header_call_to_action','0'),(62,8,'_fft_hide_header_call_to_action','field_635bd6723527d'),(63,8,'fft_page_sitemap','0'),(64,8,'_fft_page_sitemap','field_61af9b34e8181'),(65,8,'blocks',''),(66,8,'_blocks','field_6176696113096'),(67,7,'_edit_lock','1749735712:18'),(68,9,'_wp_attached_file','2024/07/9001-RGB-White-300x300-1.png'),(69,9,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:36:\"2024/07/9001-RGB-White-300x300-1.png\";s:8:\"filesize\";i:32624;s:5:\"sizes\";a:2:{s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:36:\"9001-RGB-White-300x300-1-300x266.png\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34185;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:36:\"9001-RGB-White-300x300-1-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28506;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(70,10,'_wp_attached_file','2024/07/9001-RGB-White.jpg'),(71,10,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:26:\"2024/07/9001-RGB-White.jpg\";s:8:\"filesize\";i:59368;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"9001-RGB-White-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29790;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:26:\"9001-RGB-White-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29790;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:26:\"9001-RGB-White-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19468;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:26:\"9001-RGB-White-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24493;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:26:\"9001-RGB-White-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22461;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:26:\"9001-RGB-White-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16474;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(73,7,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:13:\"#introduction\";s:6:\"target\";s:0:\"\";}'),(74,7,'_hero_actions_0_button','field_61757281285eb'),(75,11,'hero_style','default'),(76,11,'_hero_style','field_62051d9dc5324'),(77,11,'hero_image_pos_x','right'),(78,11,'_hero_image_pos_x','field_62ec3d05390bb'),(79,11,'hero_image_pos_y','top'),(80,11,'_hero_image_pos_y','field_62ec3d05390bc'),(81,11,'hero_image_pos',''),(82,11,'_hero_image_pos','field_62ec3d05390ba'),(83,11,'hero_title','For Trainers, Coaches & Exercise Professionals'),(84,11,'_hero_title','field_617571fe285e8'),(85,11,'hero_text','Improving Movement Through Education'),(86,11,'_hero_text','field_6175723c285e9'),(87,11,'hero_actions','1'),(88,11,'_hero_actions','field_61757270285ea'),(89,11,'hero_icon',''),(90,11,'_hero_icon','field_61a6182199d03'),(91,11,'fft_hide_from_listings','0'),(92,11,'_fft_hide_from_listings','field_61f1320446ab2'),(93,11,'fft_page_format','default'),(94,11,'_fft_page_format','field_61ae213f1f218'),(95,11,'fft_hide_nav','0'),(96,11,'_fft_hide_nav','field_635bd5e43527c'),(97,11,'fft_hide_header_call_to_action','0'),(98,11,'_fft_hide_header_call_to_action','field_635bd6723527d'),(99,11,'fft_page_sitemap','0'),(100,11,'_fft_page_sitemap','field_61af9b34e8181'),(101,11,'blocks',''),(102,11,'_blocks','field_6176696113096'),(103,11,'_thumbnail_id',''),(104,11,'__thumbnail_id','field_617570855ddaf'),(105,11,'hero_actions_0_button','a:3:{s:5:\"title\";s:29:\"Biomechanics Coaching Diploma\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(106,11,'_hero_actions_0_button','field_61757281285eb'),(3434,164,'Telephone',''),(3435,164,'Telephone',''),(3436,164,'Telephone',''),(3437,164,'Telephone',''),(3438,164,'Telephone',''),(3439,164,'Telephone',''),(3440,164,'Telephone',''),(3441,164,'Telephone',''),(3442,164,'Telephone',''),(3443,164,'Telephone',''),(3444,164,'Telephone',''),(3445,164,'Telephone',''),(3446,164,'Telephone',''),(3447,164,'Telephone',''),(3448,164,'Telephone',''),(3449,164,'Telephone',''),(3450,164,'Telephone',''),(3451,164,'Telephone',''),(3452,164,'Telephone',''),(3453,164,'Telephone',''),(3454,164,'Telephone',''),(3455,164,'Telephone',''),(3456,164,'Telephone',''),(3457,164,'Telephone',''),(3458,164,'Telephone',''),(3459,164,'Telephone',''),(3460,164,'Telephone',''),(3461,164,'Telephone',''),(3462,164,'Telephone',''),(3463,164,'Telephone',''),(3464,164,'Telephone',''),(3465,164,'Telephone',''),(3466,164,'Telephone',''),(3467,164,'Telephone',''),(3468,164,'Telephone',''),(3469,164,'Telephone',''),(3470,164,'Telephone',''),(3471,164,'Telephone',''),(3472,164,'Telephone',''),(3473,164,'Telephone',''),(3474,164,'Telephone',''),(3475,164,'Telephone',''),(3476,164,'Telephone',''),(3477,164,'Telephone',''),(3478,164,'Telephone',''),(3479,164,'Telephone',''),(3480,164,'Telephone',''),(3481,164,'Telephone',''),(3482,164,'Telephone',''),(3483,164,'Telephone',''),(3484,164,'Telephone',''),(3485,164,'Telephone',''),(3486,164,'Telephone',''),(3487,164,'Telephone',''),(3488,164,'Telephone',''),(3489,164,'Telephone',''),(3490,164,'Telephone',''),(3491,164,'Telephone',''),(3492,164,'Telephone',''),(3493,164,'Telephone',''),(3494,164,'Telephone',''),(3495,164,'Telephone',''),(3496,164,'Telephone',''),(3497,164,'Telephone',''),(3498,164,'Telephone',''),(3499,164,'Telephone',''),(3500,164,'Telephone',''),(3501,164,'Telephone',''),(3502,164,'Telephone',''),(3503,164,'Telephone',''),(3504,164,'Telephone',''),(3505,164,'Telephone',''),(3506,164,'Telephone',''),(3507,164,'Telephone',''),(3508,164,'Telephone',''),(3509,164,'Telephone',''),(3510,164,'Telephone',''),(3511,164,'Telephone',''),(3512,164,'Telephone',''),(3513,164,'Telephone',''),(3514,164,'Telephone',''),(3515,164,'Telephone',''),(3516,164,'Telephone',''),(3517,267,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3518,267,'_edit_last','3'),(3519,267,'_image1','284'),(3520,267,'contact_text',''),(3521,267,'_contact_text','field_56ab78a159605'),(3522,267,'contact_number',''),(3523,267,'_contact_number','field_56ab78cc59606'),(3524,284,'_wp_attached_file','2016/02/adductorstrain.jpg'),(3525,284,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:174;s:4:\"file\";s:26:\"2016/02/adductorstrain.jpg\";s:8:\"filesize\";i:61394;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3526,284,'dt-img-hide-title','0'),(3527,286,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3528,286,'_edit_last','2'),(3529,286,'_image1','287'),(3530,286,'contact_text',''),(3531,286,'_contact_text','field_56ab78a159605'),(3532,286,'contact_number',''),(3533,286,'_contact_number','field_56ab78cc59606'),(3534,286,'slide_template','default'),(3535,286,'_wpb_vc_js_status','false'),(3536,286,'_dt_sidebar_position','right'),(3537,286,'_dt_sidebar_widgetarea_id','sidebar_1'),(3538,286,'_dt_sidebar_hide_on_mobile','0'),(3539,286,'_dt_footer_show','1'),(3540,286,'_dt_footer_widgetarea_id','sidebar_2'),(3541,286,'_dt_footer_hide_on_mobile','0'),(3542,286,'_dt_header_title','enabled'),(3543,286,'_dt_header_background','normal'),(3544,286,'_dt_header_background_below_slideshow','disabled'),(3545,286,'_dt_header_transparent_bg_color','#000000'),(3546,286,'_dt_header_transparent_bg_opacity','50'),(3547,286,'_dt_header_transparent_bg_color_scheme','light'),(3548,286,'_dt_slideshow_mode','porthole'),(3549,286,'_dt_slideshow_3d_layout','fullscreen-content'),(3550,286,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(3551,286,'_dt_slideshow_layout','fullwidth'),(3552,286,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(3553,286,'_dt_slideshow_scaling','fill'),(3554,286,'_dt_slideshow_autoplay','paused'),(3555,286,'_dt_slideshow_autoslide_interval','5000'),(3556,286,'_dt_slideshow_hide_captions','0'),(3557,286,'_dt_slideshow_photo_scroller_layout','fullscreen'),(3558,286,'_dt_slideshow_photo_scroller_bg_color','#000000'),(3559,286,'_dt_slideshow_photo_scroller_overlay','1'),(3560,286,'_dt_slideshow_photo_scroller_top_padding','0'),(3561,286,'_dt_slideshow_photo_scroller_bottom_padding','0'),(3562,286,'_dt_slideshow_photo_scroller_side_paddings','0'),(3563,286,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(3564,286,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(3565,286,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(3566,286,'_dt_slideshow_photo_scroller_autoplay','play'),(3567,286,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(3568,286,'_dt_slideshow_photo_scroller_ls_max_width','100'),(3569,286,'_dt_slideshow_photo_scroller_ls_min_width','0'),(3570,286,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(3571,286,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(3572,286,'_dt_slideshow_photo_scroller_pt_max_width','100'),(3573,286,'_dt_slideshow_photo_scroller_pt_min_width','0'),(3574,286,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(3575,286,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(3576,286,'_dt_slideshow_revolution_slider','none'),(3577,286,'_dt_slideshow_layer_slider','none'),(3578,286,'_dt_slideshow_layer_show_bg_and_paddings','0'),(3579,286,'_dt_fancy_header_title_aligment','center'),(3580,286,'_dt_fancy_header_breadcrumbs','enabled'),(3581,286,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(3582,286,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(3583,286,'_dt_fancy_header_title_mode','custom'),(3584,286,'_dt_fancy_header_title_color_mode','color'),(3585,286,'_dt_fancy_header_title_color','#ffffff'),(3586,286,'_dt_fancy_header_subtitle_color_mode','color'),(3587,286,'_dt_fancy_header_subtitle_color','#ffffff'),(3588,286,'_dt_fancy_header_bg_color','#222222'),(3589,286,'_dt_fancy_header_bg_repeat','no-repeat'),(3590,286,'_dt_fancy_header_bg_position_x','center'),(3591,286,'_dt_fancy_header_bg_position_y','center'),(3592,286,'_dt_fancy_header_bg_fullscreen','1'),(3593,286,'_dt_fancy_header_height','300'),(3594,286,'_dt_post_options_back_button',''),(3595,286,'_dt_post_options_hide_thumbnail','0'),(3596,286,'_dt_post_options_related_mode','same'),(3597,286,'_dt_post_options_preview','normal'),(3598,286,'_dt_fancy_header_title_font_size','44'),(3599,286,'_dt_fancy_header_title_line_height','50'),(3600,286,'_dt_fancy_header_subtitle_font_size','30'),(3601,286,'_dt_fancy_header_subtitle_line_height','36'),(3602,287,'_wp_attached_file','2016/02/buildingdisplayinh.jpg'),(3603,287,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:174;s:4:\"file\";s:30:\"2016/02/buildingdisplayinh.jpg\";s:8:\"filesize\";i:39933;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3604,287,'dt-img-hide-title','0'),(3605,289,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3606,289,'_edit_last','3'),(3607,289,'_image1','291'),(3608,289,'contact_text',''),(3609,289,'_contact_text','field_56ab78a159605'),(3610,289,'contact_number',''),(3611,289,'_contact_number','field_56ab78cc59606'),(3612,290,'_wp_attached_file','2016/02/doyouloveit.jpg'),(3613,290,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:174;s:4:\"file\";s:23:\"2016/02/doyouloveit.jpg\";s:8:\"filesize\";i:72743;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3614,290,'dt-img-hide-title','0'),(3615,291,'_wp_attached_file','2016/02/doyouloveit-1.jpg'),(3616,291,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:174;s:4:\"file\";s:25:\"2016/02/doyouloveit-1.jpg\";s:8:\"filesize\";i:72743;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3617,291,'dt-img-hide-title','0'),(3618,293,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3619,293,'_edit_last','3'),(3620,293,'_image1','294'),(3621,293,'contact_text',''),(3622,293,'_contact_text','field_56ab78a159605'),(3623,293,'contact_number',''),(3624,293,'_contact_number','field_56ab78cc59606'),(3625,294,'_wp_attached_file','2016/02/nervetension.jpg'),(3626,294,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:174;s:4:\"file\";s:24:\"2016/02/nervetension.jpg\";s:8:\"filesize\";i:69870;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3627,294,'dt-img-hide-title','0'),(3628,296,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3629,296,'_edit_last','3'),(3630,296,'_image1','297'),(3631,296,'contact_text',''),(3632,296,'_contact_text','field_56ab78a159605'),(3633,296,'contact_number',''),(3634,296,'_contact_number','field_56ab78cc59606'),(3635,297,'_wp_attached_file','2016/02/last4days.jpg'),(3636,297,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:174;s:4:\"file\";s:21:\"2016/02/last4days.jpg\";s:8:\"filesize\";i:77901;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3637,297,'dt-img-hide-title','0'),(3638,341,'_wp_attached_file','2016/02/logobg.jpg'),(3639,341,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:770;s:6:\"height\";i:510;s:4:\"file\";s:18:\"2016/02/logobg.jpg\";s:8:\"filesize\";i:121711;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3640,341,'dt-img-hide-title','0'),(3641,456,'_wc_memberships_force_public','no'),(3642,456,'_edit_last','3'),(3643,456,'_image1','458'),(3644,456,'contact_text',''),(3645,456,'_contact_text','field_56ab78a159605'),(3646,456,'contact_number',''),(3647,456,'_contact_number','field_56ab78cc59606'),(3648,456,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(3649,456,'_dt_header_disabled_transparent_bg_color','#000000'),(3650,456,'_dt_footer_widgetarea_id','sidebar_2'),(3651,456,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(3652,456,'_dt_header_disabled_transparent_bg_color_scheme','light'),(3653,456,'_dt_header_disabled_background','normal'),(3654,456,'_dt_header_transparent_bg_opacity','50'),(3655,456,'_dt_header_transparent_bg_color','#000000'),(3656,456,'_dt_header_transparent_top_bar_bg_opacity','25'),(3657,456,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(3658,456,'_dt_header_transparent_bg_color_scheme','light'),(3659,456,'_dt_header_background_below_slideshow','disabled'),(3660,456,'_dt_header_background','normal'),(3661,456,'_dt_header_title','enabled'),(3662,456,'_dt_footer_hide_on_mobile','0'),(3663,456,'_dt_footer_show','1'),(3664,456,'_dt_sidebar_hide_on_mobile','0'),(3665,456,'_dt_sidebar_widgetarea_id','sidebar_1'),(3666,456,'_dt_sidebar_position','right'),(3667,456,'_wc_memberships_use_custom_post_content_restricted_message','no'),(3668,456,'_wpb_vc_js_status','false'),(3669,456,'_wp_page_template','default'),(3670,456,'_dt_header_disabled_transparent_bg_opacity','50'),(3671,456,'_dt_page_overrides_top_margin',''),(3672,456,'_dt_page_overrides_right_margin',''),(3673,456,'_dt_page_overrides_bottom_margin',''),(3674,456,'_dt_page_overrides_left_margin',''),(3675,456,'_dt_mobile_page_padding_top',''),(3676,456,'_dt_mobile_page_padding_right',''),(3677,456,'_dt_mobile_page_padding_bottom',''),(3678,456,'_dt_mobile_page_padding_left',''),(3679,456,'_dt_post_options_back_button',''),(3680,456,'_dt_post_options_hide_thumbnail','0'),(3681,456,'_dt_post_options_related_mode','same'),(3682,456,'_dt_post_options_preview','normal'),(3683,456,'_dt_microsite_primary_menu',''),(3684,456,'_dt_microsite_split_left_menu',''),(3685,456,'_dt_microsite_split_right_menu',''),(3686,456,'_dt_microsite_mobile_menu',''),(3687,456,'_thumbnail_id','36386'),(3688,458,'_wp_attached_file','2016/02/sowhat.jpg'),(3689,458,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:277;s:6:\"height\";i:173;s:4:\"file\";s:18:\"2016/02/sowhat.jpg\";s:8:\"filesize\";i:70873;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3690,458,'dt-img-hide-title','0'),(3691,556,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3692,556,'_edit_last','3'),(3693,556,'_image1','559'),(3694,556,'contact_text',''),(3695,556,'_contact_text','field_56ab78a159605'),(3696,556,'contact_number',''),(3697,556,'_contact_number','field_56ab78cc59606'),(3698,557,'_wp_attached_file','2016/03/FB-ad3.jpg'),(3699,557,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:627;s:4:\"file\";s:18:\"2016/03/FB-ad3.jpg\";s:8:\"filesize\";i:336884;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3700,557,'dt-img-hide-title','0'),(3701,559,'_wp_attached_file','2016/03/FB-ad3-1.jpg'),(3702,559,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:627;s:4:\"file\";s:20:\"2016/03/FB-ad3-1.jpg\";s:8:\"filesize\";i:336884;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3703,559,'dt-img-hide-title','0'),(3704,561,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3705,561,'_edit_last','3'),(3706,561,'_image1','562'),(3707,561,'contact_text',''),(3708,561,'_contact_text','field_56ab78a159605'),(3709,561,'contact_number',''),(3710,561,'_contact_number','field_56ab78cc59606'),(3711,561,'_transient_timeout_tribe_attendees','1485723437'),(3712,561,'_transient_tribe_attendees','a:0:{}'),(3713,562,'_wp_attached_file','2016/03/Screen-Shot-2016-03-09-at-08.41.00.png'),(3714,562,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:535;s:6:\"height\";i:429;s:4:\"file\";s:46:\"2016/03/Screen-Shot-2016-03-09-at-08.41.00.png\";s:8:\"filesize\";i:278404;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3715,562,'dt-img-hide-title','0'),(3716,569,'_wp_attached_file','2016/03/Screen-Shot-2015-04-14-at-08.40.33.png'),(3717,569,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:551;s:6:\"height\";i:491;s:4:\"file\";s:46:\"2016/03/Screen-Shot-2015-04-14-at-08.40.33.png\";s:8:\"filesize\";i:226140;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3718,569,'dt-img-hide-title','0'),(3719,575,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3720,575,'_edit_last','3'),(3721,575,'_image1','569'),(3722,575,'contact_text',''),(3723,575,'_contact_text','field_56ab78a159605'),(3724,575,'contact_number',''),(3725,575,'_contact_number','field_56ab78cc59606'),(3726,575,'_oembed_49af569de8dc23a09670add4a1ab6acf','{{unknown}}'),(3727,575,'_transient_timeout_tribe_attendees','1485723436'),(3728,575,'_transient_tribe_attendees','a:0:{}'),(3729,575,'_thumbnail_id','569'),(3730,575,'slide_template','default'),(3731,575,'_wpb_vc_js_status','false'),(3732,575,'_dt_sidebar_position','right'),(3733,575,'_dt_sidebar_widgetarea_id','sidebar_1'),(3734,575,'_dt_sidebar_hide_on_mobile','0'),(3735,575,'_dt_footer_show','1'),(3736,575,'_dt_footer_widgetarea_id','sidebar_2'),(3737,575,'_dt_footer_hide_on_mobile','0'),(3738,575,'_dt_header_title','enabled'),(3739,575,'_dt_header_background','normal'),(3740,575,'_dt_header_background_below_slideshow','disabled'),(3741,575,'_dt_header_transparent_bg_color','#000000'),(3742,575,'_dt_header_transparent_bg_opacity','50'),(3743,575,'_dt_header_transparent_bg_color_scheme','light'),(3744,575,'_dt_slideshow_mode','porthole'),(3745,575,'_dt_slideshow_3d_layout','fullscreen-content'),(3746,575,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(3747,575,'_dt_slideshow_layout','fullwidth'),(3748,575,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(3749,575,'_dt_slideshow_scaling','fill'),(3750,575,'_dt_slideshow_autoplay','paused'),(3751,575,'_dt_slideshow_autoslide_interval','5000'),(3752,575,'_dt_slideshow_hide_captions','0'),(3753,575,'_dt_slideshow_photo_scroller_layout','fullscreen'),(3754,575,'_dt_slideshow_photo_scroller_bg_color','#000000'),(3755,575,'_dt_slideshow_photo_scroller_overlay','1'),(3756,575,'_dt_slideshow_photo_scroller_top_padding','0'),(3757,575,'_dt_slideshow_photo_scroller_bottom_padding','0'),(3758,575,'_dt_slideshow_photo_scroller_side_paddings','0'),(3759,575,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(3760,575,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(3761,575,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(3762,575,'_dt_slideshow_photo_scroller_autoplay','play'),(3763,575,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(3764,575,'_dt_slideshow_photo_scroller_ls_max_width','100'),(3765,575,'_dt_slideshow_photo_scroller_ls_min_width','0'),(3766,575,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(3767,575,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(3768,575,'_dt_slideshow_photo_scroller_pt_max_width','100'),(3769,575,'_dt_slideshow_photo_scroller_pt_min_width','0'),(3770,575,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(3771,575,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(3772,575,'_dt_slideshow_revolution_slider','none'),(3773,575,'_dt_slideshow_layer_slider','none'),(3774,575,'_dt_slideshow_layer_show_bg_and_paddings','0'),(3775,575,'_dt_fancy_header_title_aligment','center'),(3776,575,'_dt_fancy_header_breadcrumbs','enabled'),(3777,575,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(3778,575,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(3779,575,'_dt_fancy_header_title_mode','custom'),(3780,575,'_dt_fancy_header_title_color_mode','color'),(3781,575,'_dt_fancy_header_title_color','#ffffff'),(3782,575,'_dt_fancy_header_subtitle_color_mode','color'),(3783,575,'_dt_fancy_header_subtitle_color','#ffffff'),(3784,575,'_dt_fancy_header_bg_color','#222222'),(3785,575,'_dt_fancy_header_bg_repeat','no-repeat'),(3786,575,'_dt_fancy_header_bg_position_x','center'),(3787,575,'_dt_fancy_header_bg_position_y','center'),(3788,575,'_dt_fancy_header_bg_fullscreen','1'),(3789,575,'_dt_fancy_header_height','300'),(3790,575,'_dt_post_options_back_button',''),(3791,575,'_dt_post_options_hide_thumbnail','0'),(3792,575,'_dt_post_options_related_mode','same'),(3793,575,'_dt_post_options_preview','normal'),(3794,575,'_dt_fancy_header_title_font_size','44'),(3795,575,'_dt_fancy_header_title_line_height','50'),(3796,575,'_dt_fancy_header_subtitle_font_size','30'),(3797,575,'_dt_fancy_header_subtitle_line_height','36'),(3798,575,'iawp_total_views','16'),(3799,591,'_wc_memberships_force_public','no'),(3800,591,'_edit_last','3'),(3801,591,'_image1','592'),(3802,591,'contact_text',''),(3803,591,'_contact_text','field_56ab78a159605'),(3804,591,'contact_number',''),(3805,591,'_contact_number','field_56ab78cc59606'),(3806,591,'_transient_timeout_tribe_attendees','1485723436'),(3807,591,'_transient_tribe_attendees','a:0:{}'),(3808,591,'_thumbnail_id','21887'),(3809,591,'_wp_page_template','default'),(3810,591,'slide_template','default'),(3811,591,'rs_page_bg_color','#ffffff'),(3812,591,'_wpb_vc_js_status','false'),(3813,591,'_wc_memberships_use_custom_post_content_restricted_message','no'),(3814,591,'_dt_sidebar_position','right'),(3815,591,'_dt_sidebar_widgetarea_id','sidebar_1'),(3816,591,'_dt_sidebar_hide_on_mobile','0'),(3817,591,'_dt_footer_show','1'),(3818,591,'_dt_footer_widgetarea_id','sidebar_2'),(3819,591,'_dt_footer_hide_on_mobile','0'),(3820,591,'_dt_header_title','enabled'),(3821,591,'_dt_header_background','normal'),(3822,591,'_dt_header_background_below_slideshow','disabled'),(3823,591,'_dt_header_transparent_bg_color_scheme','light'),(3824,591,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(3825,591,'_dt_header_transparent_top_bar_bg_opacity','25'),(3826,591,'_dt_header_transparent_bg_color','#000000'),(3827,591,'_dt_header_transparent_bg_opacity','50'),(3828,591,'_dt_header_disabled_background','normal'),(3829,591,'_dt_header_disabled_transparent_bg_color_scheme','light'),(3830,591,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(3831,591,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(3832,591,'_dt_header_disabled_transparent_bg_color','#000000'),(3833,591,'_dt_header_disabled_transparent_bg_opacity','50'),(3834,591,'_dt_page_overrides_top_margin',''),(3835,591,'_dt_page_overrides_right_margin',''),(3836,591,'_dt_page_overrides_bottom_margin',''),(3837,591,'_dt_page_overrides_left_margin',''),(3838,591,'_dt_mobile_page_padding_top',''),(3839,591,'_dt_mobile_page_padding_right',''),(3840,591,'_dt_mobile_page_padding_bottom',''),(3841,591,'_dt_mobile_page_padding_left',''),(3842,591,'_dt_post_options_back_button',''),(3843,591,'_dt_post_options_hide_thumbnail','0'),(3844,591,'_dt_post_options_related_mode','same'),(3845,591,'_dt_post_options_preview','normal'),(3846,592,'_wp_attached_file','2016/03/Screen-Shot-2016-03-11-at-08.31.23.png'),(3847,592,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:448;s:6:\"height\";i:367;s:4:\"file\";s:46:\"2016/03/Screen-Shot-2016-03-11-at-08.31.23.png\";s:8:\"filesize\";i:269622;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3848,592,'dt-img-hide-title','0'),(3849,595,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3850,595,'_edit_last','3'),(3851,595,'_image1','596'),(3852,595,'contact_text',''),(3853,595,'_contact_text','field_56ab78a159605'),(3854,595,'contact_number',''),(3855,595,'_contact_number','field_56ab78cc59606'),(3856,595,'_transient_timeout_tribe_attendees','1485723436'),(3857,595,'_transient_tribe_attendees','a:0:{}'),(3858,596,'_wp_attached_file','2016/03/Screen-Shot-2016-03-13-at-07.39.10.png'),(3859,596,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:401;s:6:\"height\";i:266;s:4:\"file\";s:46:\"2016/03/Screen-Shot-2016-03-13-at-07.39.10.png\";s:8:\"filesize\";i:41820;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3860,596,'dt-img-hide-title','0'),(3861,616,'_wc_memberships_force_public','no'),(3862,616,'_edit_last','3'),(3863,616,'_image1','624'),(3864,616,'contact_text',''),(3865,616,'_contact_text','field_56ab78a159605'),(3866,616,'contact_number',''),(3867,616,'_contact_number','field_56ab78cc59606'),(3868,616,'_transient_timeout_tribe_attendees','1485723436'),(3869,616,'_transient_tribe_attendees','a:0:{}'),(3870,616,'_thumbnail_id','644'),(3871,616,'_wp_page_template','default'),(3872,616,'_wpb_vc_js_status','false'),(3873,616,'_wc_memberships_use_custom_post_content_restricted_message','no'),(3874,616,'_dt_sidebar_position','right'),(3875,616,'_dt_sidebar_widgetarea_id','sidebar_1'),(3876,616,'_dt_sidebar_hide_on_mobile','0'),(3877,616,'_dt_footer_show','1'),(3878,616,'_dt_footer_widgetarea_id','sidebar_2'),(3879,616,'_dt_footer_hide_on_mobile','0'),(3880,616,'_dt_header_title','enabled'),(3881,616,'_dt_header_background','normal'),(3882,616,'_dt_header_background_below_slideshow','disabled'),(3883,616,'_dt_header_transparent_bg_color_scheme','light'),(3884,616,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(3885,616,'_dt_header_transparent_top_bar_bg_opacity','25'),(3886,616,'_dt_header_transparent_bg_color','#000000'),(3887,616,'_dt_header_transparent_bg_opacity','50'),(3888,616,'_dt_header_disabled_background','normal'),(3889,616,'_dt_header_disabled_transparent_bg_color_scheme','light'),(3890,616,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(3891,616,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(3892,616,'_dt_header_disabled_transparent_bg_color','#000000'),(3893,616,'_dt_header_disabled_transparent_bg_opacity','50'),(3894,616,'_dt_page_overrides_top_margin',''),(3895,616,'_dt_page_overrides_right_margin',''),(3896,616,'_dt_page_overrides_bottom_margin',''),(3897,616,'_dt_page_overrides_left_margin',''),(3898,616,'_dt_mobile_page_padding_top',''),(3899,616,'_dt_mobile_page_padding_right',''),(3900,616,'_dt_mobile_page_padding_bottom',''),(3901,616,'_dt_mobile_page_padding_left',''),(3902,616,'_dt_post_options_back_button',''),(3903,616,'_dt_post_options_hide_thumbnail','0'),(3904,616,'_dt_post_options_related_mode','same'),(3905,616,'_dt_post_options_preview','normal'),(3906,616,'_dt_microsite_primary_menu',''),(3907,616,'_dt_microsite_split_left_menu',''),(3908,616,'_dt_microsite_split_right_menu',''),(3909,616,'_dt_microsite_mobile_menu',''),(3910,616,'iawp_total_views','26'),(3911,617,'_wp_attached_file','2016/03/Screen-Shot-2016-03-15-at-11.18.22.png'),(3912,617,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:197;s:6:\"height\";i:263;s:4:\"file\";s:46:\"2016/03/Screen-Shot-2016-03-15-at-11.18.22.png\";s:8:\"filesize\";i:120245;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3913,617,'dt-img-hide-title','0'),(3914,620,'_wp_attached_file','2016/03/Screen-Shot-2016-03-15-at-11.38.32.png'),(3915,620,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:601;s:6:\"height\";i:588;s:4:\"file\";s:46:\"2016/03/Screen-Shot-2016-03-15-at-11.38.32.png\";s:8:\"filesize\";i:482604;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3916,620,'dt-img-hide-title','0'),(3917,621,'_wp_attached_file','2016/03/Screen-Shot-2016-03-15-at-11.38.32-1.png'),(3918,621,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:601;s:6:\"height\";i:588;s:4:\"file\";s:48:\"2016/03/Screen-Shot-2016-03-15-at-11.38.32-1.png\";s:8:\"filesize\";i:482604;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3919,621,'dt-img-hide-title','0'),(3920,623,'_wp_attached_file','2016/03/Screen-Shot-2016-03-15-at-11.38.32-2.png'),(3921,623,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:601;s:6:\"height\";i:588;s:4:\"file\";s:48:\"2016/03/Screen-Shot-2016-03-15-at-11.38.32-2.png\";s:8:\"filesize\";i:482604;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3922,623,'dt-img-hide-title','0'),(3923,624,'_wp_attached_file','2016/03/Screen-Shot-2016-03-15-at-11.18.22-1.png'),(3924,624,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:197;s:6:\"height\";i:263;s:4:\"file\";s:48:\"2016/03/Screen-Shot-2016-03-15-at-11.18.22-1.png\";s:8:\"filesize\";i:120245;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3925,624,'dt-img-hide-title','0'),(3926,644,'_wp_attached_file','2016/03/Screen-Shot-2016-03-16-at-13.50.14.png'),(3927,644,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:884;s:6:\"height\";i:464;s:4:\"file\";s:46:\"2016/03/Screen-Shot-2016-03-16-at-13.50.14.png\";s:8:\"filesize\";i:491735;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3928,644,'dt-img-hide-title','0'),(3929,647,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3930,647,'_edit_last','3'),(3931,647,'_image1','648'),(3932,647,'contact_text',''),(3933,647,'_contact_text','field_56ab78a159605'),(3934,647,'contact_number',''),(3935,647,'_contact_number','field_56ab78cc59606'),(3936,647,'_transient_timeout_tribe_attendees','1485723436'),(3937,647,'_transient_tribe_attendees','a:0:{}'),(3938,647,'_oembed_228bfada16acd84d4da2d84a2759778e','{{unknown}}'),(3939,648,'_wp_attached_file','2016/03/Screen-Shot-2016-03-18-at-06.37.50.png'),(3940,648,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:392;s:6:\"height\";i:341;s:4:\"file\";s:46:\"2016/03/Screen-Shot-2016-03-18-at-06.37.50.png\";s:8:\"filesize\";i:238646;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3941,648,'dt-img-hide-title','0'),(3942,651,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(3943,651,'_edit_last','3'),(3944,651,'_image1','652'),(3945,651,'contact_text',''),(3946,651,'_contact_text','field_56ab78a159605'),(3947,651,'contact_number',''),(3948,651,'_contact_number','field_56ab78cc59606'),(3949,651,'_transient_timeout_tribe_attendees','1485723436'),(3950,651,'_transient_tribe_attendees','a:0:{}'),(3951,651,'slide_template','default'),(3952,651,'_wpb_vc_js_status','false'),(3953,651,'_dt_sidebar_position','right'),(3954,651,'_dt_sidebar_widgetarea_id','sidebar_1'),(3955,651,'_dt_sidebar_hide_on_mobile','0'),(3956,651,'_dt_footer_show','1'),(3957,651,'_dt_footer_widgetarea_id','sidebar_2'),(3958,651,'_dt_footer_hide_on_mobile','0'),(3959,651,'_dt_header_title','enabled'),(3960,651,'_dt_header_background','normal'),(3961,651,'_dt_header_background_below_slideshow','disabled'),(3962,651,'_dt_header_transparent_bg_color','#000000'),(3963,651,'_dt_header_transparent_bg_opacity','50'),(3964,651,'_dt_header_transparent_bg_color_scheme','light'),(3965,651,'_dt_slideshow_mode','porthole'),(3966,651,'_dt_slideshow_3d_layout','fullscreen-content'),(3967,651,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(3968,651,'_dt_slideshow_layout','fullwidth'),(3969,651,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(3970,651,'_dt_slideshow_scaling','fill'),(3971,651,'_dt_slideshow_autoplay','paused'),(3972,651,'_dt_slideshow_autoslide_interval','5000'),(3973,651,'_dt_slideshow_hide_captions','0'),(3974,651,'_dt_slideshow_photo_scroller_layout','fullscreen'),(3975,651,'_dt_slideshow_photo_scroller_bg_color','#000000'),(3976,651,'_dt_slideshow_photo_scroller_overlay','1'),(3977,651,'_dt_slideshow_photo_scroller_top_padding','0'),(3978,651,'_dt_slideshow_photo_scroller_bottom_padding','0'),(3979,651,'_dt_slideshow_photo_scroller_side_paddings','0'),(3980,651,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(3981,651,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(3982,651,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(3983,651,'_dt_slideshow_photo_scroller_autoplay','play'),(3984,651,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(3985,651,'_dt_slideshow_photo_scroller_ls_max_width','100'),(3986,651,'_dt_slideshow_photo_scroller_ls_min_width','0'),(3987,651,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(3988,651,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(3989,651,'_dt_slideshow_photo_scroller_pt_max_width','100'),(3990,651,'_dt_slideshow_photo_scroller_pt_min_width','0'),(3991,651,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(3992,651,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(3993,651,'_dt_slideshow_revolution_slider','none'),(3994,651,'_dt_slideshow_layer_slider','none'),(3995,651,'_dt_slideshow_layer_show_bg_and_paddings','0'),(3996,651,'_dt_fancy_header_title_aligment','center'),(3997,651,'_dt_fancy_header_breadcrumbs','enabled'),(3998,651,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(3999,651,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(4000,651,'_dt_fancy_header_title_mode','custom'),(4001,651,'_dt_fancy_header_title_color_mode','color'),(4002,651,'_dt_fancy_header_title_color','#ffffff'),(4003,651,'_dt_fancy_header_subtitle_color_mode','color'),(4004,651,'_dt_fancy_header_subtitle_color','#ffffff'),(4005,651,'_dt_fancy_header_bg_color','#222222'),(4006,651,'_dt_fancy_header_bg_repeat','no-repeat'),(4007,651,'_dt_fancy_header_bg_position_x','center'),(4008,651,'_dt_fancy_header_bg_position_y','center'),(4009,651,'_dt_fancy_header_bg_fullscreen','1'),(4010,651,'_dt_fancy_header_height','300'),(4011,651,'_dt_post_options_back_button',''),(4012,651,'_dt_post_options_hide_thumbnail','0'),(4013,651,'_dt_post_options_related_mode','same'),(4014,651,'_dt_post_options_preview','normal'),(4015,651,'_dt_fancy_header_title_font_size','44'),(4016,651,'_dt_fancy_header_title_line_height','50'),(4017,651,'_dt_fancy_header_subtitle_font_size','30'),(4018,651,'_dt_fancy_header_subtitle_line_height','36'),(4019,651,'iawp_total_views','14'),(4020,652,'_wp_attached_file','2016/03/Screen-Shot-2015-11-15-at-20.37.17.png'),(4021,652,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1054;s:6:\"height\";i:646;s:4:\"file\";s:46:\"2016/03/Screen-Shot-2015-11-15-at-20.37.17.png\";s:8:\"filesize\";i:1034447;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4022,652,'dt-img-hide-title','0'),(4023,654,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4024,654,'_edit_last','3'),(4025,654,'_image1','655'),(4026,654,'contact_text',''),(4027,654,'_contact_text','field_56ab78a159605'),(4028,654,'contact_number',''),(4029,654,'_contact_number','field_56ab78cc59606'),(4030,654,'_transient_timeout_tribe_attendees','1485723436'),(4031,654,'_transient_tribe_attendees','a:0:{}'),(4032,654,'_oembed_67ecfea68ce486588edbe8bbeaf1033f','{{unknown}}'),(4033,654,'_oembed_c19b4c550796f8152fe4ba9eae45550f','<a class=\"twitter-timeline\" data-width=\"1200\" data-height=\"1000\" data-dnt=\"true\" href=\"https://twitter.com/YourLevel10Life?ref_src=twsrc%5Etfw\">Tweets by YourLevel10Life</a><script async src=\"https://platform.twitter.com/widgets.js\" charset=\"utf-8\"></script>'),(4034,654,'_oembed_time_c19b4c550796f8152fe4ba9eae45550f','1518728112'),(4035,654,'_oembed_22f26e38c7537426f051e0b66fad6af1','{{unknown}}'),(4036,655,'_wp_attached_file','2016/03/Screen-Shot-2016-03-23-at-10.23.05.png'),(4037,655,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:151;s:6:\"height\";i:150;s:4:\"file\";s:46:\"2016/03/Screen-Shot-2016-03-23-at-10.23.05.png\";s:8:\"filesize\";i:48444;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4038,655,'dt-img-hide-title','0'),(4039,674,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4040,674,'_edit_last','3'),(4041,674,'_image1','675'),(4042,674,'contact_text',''),(4043,674,'_contact_text','field_56ab78a159605'),(4044,674,'contact_number',''),(4045,674,'_contact_number','field_56ab78cc59606'),(4046,674,'_transient_timeout_tribe_attendees','1485723436'),(4047,674,'_transient_tribe_attendees','a:0:{}'),(4048,675,'_wp_attached_file','2016/03/Screen-Shot-2016-03-25-at-07.44.25.png'),(4049,675,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:502;s:4:\"file\";s:46:\"2016/03/Screen-Shot-2016-03-25-at-07.44.25.png\";s:8:\"filesize\";i:494632;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4050,675,'dt-img-hide-title','0'),(4051,677,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4052,677,'_edit_last','3'),(4053,677,'_image1','678'),(4054,677,'contact_text',''),(4055,677,'_contact_text','field_56ab78a159605'),(4056,677,'contact_number',''),(4057,677,'_contact_number','field_56ab78cc59606'),(4058,677,'_transient_timeout_tribe_attendees','1485723436'),(4059,677,'_transient_tribe_attendees','a:0:{}'),(4060,678,'_wp_attached_file','2016/03/Screen-Shot-2016-03-26-at-19.59.04.png'),(4061,678,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:746;s:6:\"height\";i:490;s:4:\"file\";s:46:\"2016/03/Screen-Shot-2016-03-26-at-19.59.04.png\";s:8:\"filesize\";i:640932;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4062,678,'dt-img-hide-title','0'),(4063,682,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4064,682,'_edit_last','3'),(4065,682,'_image1','683'),(4066,682,'contact_text',''),(4067,682,'_contact_text','field_56ab78a159605'),(4068,682,'contact_number',''),(4069,682,'_contact_number','field_56ab78cc59606'),(4070,682,'_transient_timeout_tribe_attendees','1485723435'),(4071,682,'_transient_tribe_attendees','a:0:{}'),(4072,683,'_wp_attached_file','2016/03/neuron.jpg'),(4073,683,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:750;s:4:\"file\";s:18:\"2016/03/neuron.jpg\";s:8:\"filesize\";i:427718;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1169773786\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4074,683,'dt-img-hide-title','0'),(4075,702,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4076,702,'_edit_last','3'),(4077,702,'_image1','703'),(4078,702,'contact_text',''),(4079,702,'_contact_text','field_56ab78a159605'),(4080,702,'contact_number',''),(4081,702,'_contact_number','field_56ab78cc59606'),(4082,702,'_transient_timeout_tribe_attendees','1485723435'),(4083,702,'_transient_tribe_attendees','a:0:{}'),(4084,703,'_wp_attached_file','2016/04/Screen-Shot-2016-04-03-at-06.22.03.png'),(4085,703,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:233;s:6:\"height\";i:232;s:4:\"file\";s:46:\"2016/04/Screen-Shot-2016-04-03-at-06.22.03.png\";s:8:\"filesize\";i:88063;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4086,703,'dt-img-hide-title','0'),(4087,705,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4088,705,'_edit_last','3'),(4089,705,'_image1','706'),(4090,705,'contact_text',''),(4091,705,'_contact_text','field_56ab78a159605'),(4092,705,'contact_number',''),(4093,705,'_contact_number','field_56ab78cc59606'),(4094,705,'_transient_timeout_tribe_attendees','1485723435'),(4095,705,'_transient_tribe_attendees','a:0:{}'),(4096,706,'_wp_attached_file','2016/04/foot.jpg'),(4097,706,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:849;s:6:\"height\";i:566;s:4:\"file\";s:16:\"2016/04/foot.jpg\";s:8:\"filesize\";i:149955;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:11:\"Mat Hayward\";s:6:\"camera\";s:21:\"Canon EOS-1D Mark III\";s:7:\"caption\";s:8:\"Pressure\";s:17:\"created_timestamp\";s:10:\"1196029946\";s:9:\"copyright\";s:11:\"Mat Hayward\";s:12:\"focal_length\";s:3:\"150\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:8:\"Pressure\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:22:{i:0;s:3:\"Mat\";i:1;s:5:\"Stock\";i:2;s:3:\"fat\";i:3;s:5:\"scale\";i:4;s:8:\"pressure\";i:5;s:6:\"stress\";i:6;s:8:\"business\";i:7;s:4:\"work\";i:8;s:3:\"man\";i:9;s:4:\"foot\";i:10;s:4:\"head\";i:11;s:4:\"face\";i:12;s:7:\"grimace\";i:13;s:4:\"hurt\";i:14;s:5:\"apply\";i:15;s:7:\"squeeze\";i:16;s:5:\"pinch\";i:17;s:4:\"pain\";i:18;s:7:\"painful\";i:19;s:11:\"competition\";i:20;s:11:\"competitive\";i:21;s:6:\"goatee\";}}}'),(4098,706,'dt-img-hide-title','0'),(4099,708,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4100,708,'_edit_last','3'),(4101,708,'_image1','709'),(4102,708,'contact_text',''),(4103,708,'_contact_text','field_56ab78a159605'),(4104,708,'contact_number',''),(4105,708,'_contact_number','field_56ab78cc59606'),(4106,708,'_transient_timeout_tribe_attendees','1485723435'),(4107,708,'_transient_tribe_attendees','a:0:{}'),(4108,709,'_wp_attached_file','2016/04/Screen-Shot-2016-04-06-at-09.28.28.png'),(4109,709,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:494;s:6:\"height\";i:443;s:4:\"file\";s:46:\"2016/04/Screen-Shot-2016-04-06-at-09.28.28.png\";s:8:\"filesize\";i:356854;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4110,709,'dt-img-hide-title','0'),(4111,711,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4112,711,'_edit_last','3'),(4113,711,'_image1','715'),(4114,711,'contact_text',''),(4115,711,'_contact_text','field_56ab78a159605'),(4116,711,'contact_number',''),(4117,711,'_contact_number','field_56ab78cc59606'),(4118,711,'_transient_timeout_tribe_attendees','1485723435'),(4119,711,'_transient_tribe_attendees','a:0:{}'),(4120,712,'_wp_attached_file','2016/04/Screen-Shot-2016-04-08-at-20.57.10.png'),(4121,712,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:474;s:6:\"height\";i:176;s:4:\"file\";s:46:\"2016/04/Screen-Shot-2016-04-08-at-20.57.10.png\";s:8:\"filesize\";i:152568;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4122,712,'dt-img-hide-title','0'),(4123,713,'_wp_attached_file','2016/04/Screen-Shot-2016-04-08-at-20.57.18.png'),(4124,713,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:498;s:6:\"height\";i:189;s:4:\"file\";s:46:\"2016/04/Screen-Shot-2016-04-08-at-20.57.18.png\";s:8:\"filesize\";i:211836;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4125,713,'dt-img-hide-title','0'),(4126,714,'_wp_attached_file','2016/04/Screen-Shot-2016-04-08-at-21.02.38.png'),(4127,714,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:251;s:6:\"height\";i:462;s:4:\"file\";s:46:\"2016/04/Screen-Shot-2016-04-08-at-21.02.38.png\";s:8:\"filesize\";i:218562;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4128,714,'dt-img-hide-title','0'),(4129,715,'_wp_attached_file','2016/04/Screen-Shot-2016-04-08-at-21.02.38-1.png'),(4130,715,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:251;s:6:\"height\";i:462;s:4:\"file\";s:48:\"2016/04/Screen-Shot-2016-04-08-at-21.02.38-1.png\";s:8:\"filesize\";i:218562;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4131,715,'dt-img-hide-title','0'),(4132,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(4133,721,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4134,721,'_edit_last','3'),(4135,721,'_image1','722'),(4136,721,'contact_text',''),(4137,721,'_contact_text','field_56ab78a159605'),(4138,721,'contact_number',''),(4139,721,'_contact_number','field_56ab78cc59606'),(4140,721,'_transient_timeout_tribe_attendees','1485723435'),(4141,721,'_transient_tribe_attendees','a:0:{}'),(4142,722,'_wp_attached_file','2016/04/Screen-Shot-2016-04-11-at-12.48.41.png'),(4143,722,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:560;s:6:\"height\";i:350;s:4:\"file\";s:46:\"2016/04/Screen-Shot-2016-04-11-at-12.48.41.png\";s:8:\"filesize\";i:415032;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4144,722,'dt-img-hide-title','0'),(4145,734,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4146,734,'_edit_last','3'),(4147,734,'_image1','735'),(4148,734,'contact_text',''),(4149,734,'_contact_text','field_56ab78a159605'),(4150,734,'contact_number',''),(4151,734,'_contact_number','field_56ab78cc59606'),(4152,734,'_transient_timeout_tribe_attendees','1485723435'),(4153,734,'_transient_tribe_attendees','a:0:{}'),(4154,735,'_wp_attached_file','2016/04/Screen-Shot-2016-04-13-at-05.47.19.png'),(4155,735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:577;s:6:\"height\";i:304;s:4:\"file\";s:46:\"2016/04/Screen-Shot-2016-04-13-at-05.47.19.png\";s:8:\"filesize\";i:313245;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4156,735,'dt-img-hide-title','0'),(4157,758,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4158,758,'_edit_last','3'),(4159,758,'_image1','759'),(4160,758,'contact_text',''),(4161,758,'_contact_text','field_56ab78a159605'),(4162,758,'contact_number',''),(4163,758,'_contact_number','field_56ab78cc59606'),(4164,758,'_transient_timeout_tribe_attendees','1485723435'),(4165,758,'_transient_tribe_attendees','a:0:{}'),(4166,759,'_wp_attached_file','2016/04/Screen-Shot-2016-04-15-at-07.48.13.png'),(4167,759,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:864;s:6:\"height\";i:419;s:4:\"file\";s:46:\"2016/04/Screen-Shot-2016-04-15-at-07.48.13.png\";s:8:\"filesize\";i:690157;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4168,759,'dt-img-hide-title','0'),(4169,761,'_wpb_post_custom_layout','default'),(4170,761,'_edit_last','17'),(4171,761,'_image1','762'),(4172,761,'contact_text',''),(4173,761,'_contact_text','field_56ab78a159605'),(4174,761,'contact_number',''),(4175,761,'_contact_number','field_56ab78cc59606'),(4176,761,'_transient_timeout_tribe_attendees','1485723435'),(4177,761,'_transient_tribe_attendees','a:0:{}'),(4178,761,'_thumbnail_id','38316'),(4179,761,'_wp_page_template','default'),(4180,761,'_wc_memberships_force_public','no'),(4181,761,'_wc_memberships_use_custom_post_content_restricted_message','no'),(4182,761,'_wpb_vc_js_status','false'),(4183,761,'_dt_sidebar_position','right'),(4184,761,'_dt_sidebar_widgetarea_id','sidebar_1'),(4185,761,'_dt_sidebar_hide_on_mobile','0'),(4186,761,'_dt_footer_show','1'),(4187,761,'_dt_footer_widgetarea_id','sidebar_2'),(4188,761,'_dt_footer_hide_on_mobile','0'),(4189,761,'_dt_header_title','enabled'),(4190,761,'_dt_header_background','normal'),(4191,761,'_dt_header_background_below_slideshow','disabled'),(4192,761,'_dt_header_transparent_bg_color_scheme','light'),(4193,761,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(4194,761,'_dt_header_transparent_top_bar_bg_opacity','25'),(4195,761,'_dt_header_transparent_bg_color','#000000'),(4196,761,'_dt_header_transparent_bg_opacity','50'),(4197,761,'_dt_header_disabled_background','normal'),(4198,761,'_dt_header_disabled_transparent_bg_color_scheme','light'),(4199,761,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(4200,761,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(4201,761,'_dt_header_disabled_transparent_bg_color','#000000'),(4202,761,'_dt_header_disabled_transparent_bg_opacity','50'),(4203,761,'_dt_page_overrides_top_margin',''),(4204,761,'_dt_page_overrides_right_margin',''),(4205,761,'_dt_page_overrides_bottom_margin',''),(4206,761,'_dt_page_overrides_left_margin',''),(4207,761,'_dt_mobile_page_padding_top',''),(4208,761,'_dt_mobile_page_padding_right',''),(4209,761,'_dt_mobile_page_padding_bottom',''),(4210,761,'_dt_mobile_page_padding_left',''),(4211,761,'_dt_post_options_back_button',''),(4212,761,'_dt_post_options_hide_thumbnail','0'),(4213,761,'_dt_post_options_related_mode','same'),(4214,761,'_dt_post_options_preview','normal'),(4215,761,'_dt_microsite_primary_menu',''),(4216,761,'_dt_microsite_split_left_menu',''),(4217,761,'_dt_microsite_split_right_menu',''),(4218,761,'_dt_microsite_mobile_menu',''),(4219,761,'iawp_total_views','22'),(4220,762,'_wp_attached_file','2016/04/iStock_000002419682Medium.jpg'),(4221,762,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1975;s:6:\"height\";i:2188;s:4:\"file\";s:37:\"2016/04/iStock_000002419682Medium.jpg\";s:8:\"filesize\";i:694139;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:7:\"unknown\";s:6:\"camera\";s:13:\"Canon EOS 20D\";s:7:\"caption\";s:7:\"kicking\";s:17:\"created_timestamp\";s:10:\"1159615698\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:12:\"martial arts\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:14:{i:0;s:12:\"martial arts\";i:1;s:7:\"martial\";i:2;s:6:\"karate\";i:3;s:9:\"taekwando\";i:4;s:4:\"kick\";i:5;s:7:\"kicking\";i:6;s:3:\"hit\";i:7;s:5:\"crash\";i:8;s:9:\"airbourne\";i:9;s:4:\"male\";i:10;s:3:\"man\";i:11;s:7:\"athlete\";i:12;s:8:\"athletic\";i:13;s:17:\"isolated on black\";}}}'),(4222,762,'dt-img-hide-title','0'),(4223,765,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4224,765,'_edit_last','3'),(4225,765,'_image1','766'),(4226,765,'contact_text',''),(4227,765,'_contact_text','field_56ab78a159605'),(4228,765,'contact_number',''),(4229,765,'_contact_number','field_56ab78cc59606'),(4230,765,'_transient_timeout_tribe_attendees','1485723435'),(4231,765,'_transient_tribe_attendees','a:0:{}'),(4232,766,'_wp_attached_file','2016/04/Screen-Shot-2016-04-22-at-06.03.26.png'),(4233,766,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:781;s:6:\"height\";i:360;s:4:\"file\";s:46:\"2016/04/Screen-Shot-2016-04-22-at-06.03.26.png\";s:8:\"filesize\";i:510860;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4234,766,'dt-img-hide-title','0'),(4235,769,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4236,769,'_edit_last','3'),(4237,769,'_image1','770'),(4238,769,'contact_text',''),(4239,769,'_contact_text','field_56ab78a159605'),(4240,769,'contact_number',''),(4241,769,'_contact_number','field_56ab78cc59606'),(4242,769,'_transient_timeout_tribe_attendees','1485723435'),(4243,769,'_transient_tribe_attendees','a:0:{}'),(4244,770,'_wp_attached_file','2016/04/IMG_0065.jpg'),(4245,770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:20:\"2016/04/IMG_0065.jpg\";s:8:\"filesize\";i:112417;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4246,770,'dt-img-hide-title','0'),(4247,803,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4248,803,'_edit_last','3'),(4249,803,'_image1','804'),(4250,803,'contact_text',''),(4251,803,'_contact_text','field_56ab78a159605'),(4252,803,'contact_number',''),(4253,803,'_contact_number','field_56ab78cc59606'),(4254,803,'_transient_timeout_tribe_attendees','1485723435'),(4255,803,'_transient_tribe_attendees','a:0:{}'),(4256,804,'_wp_attached_file','2016/04/Screen-Shot-2016-04-27-at-16.34.16.png'),(4257,804,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:553;s:6:\"height\";i:495;s:4:\"file\";s:46:\"2016/04/Screen-Shot-2016-04-27-at-16.34.16.png\";s:8:\"filesize\";i:224537;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4258,804,'dt-img-hide-title','0'),(4259,813,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4260,813,'_edit_last','3'),(4261,813,'_image1','814'),(4262,813,'contact_text',''),(4263,813,'_contact_text','field_56ab78a159605'),(4264,813,'contact_number',''),(4265,813,'_contact_number','field_56ab78cc59606'),(4266,813,'_transient_timeout_tribe_attendees','1485723435'),(4267,813,'_transient_tribe_attendees','a:0:{}'),(4268,813,'iawp_total_views','26'),(4269,814,'_wp_attached_file','2016/04/Screen-Shot-2016-04-29-at-11.21.32.png'),(4270,814,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:621;s:6:\"height\";i:621;s:4:\"file\";s:46:\"2016/04/Screen-Shot-2016-04-29-at-11.21.32.png\";s:8:\"filesize\";i:120187;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4271,814,'dt-img-hide-title','0'),(4272,826,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4273,826,'_edit_last','3'),(4274,826,'_image1','827'),(4275,826,'contact_text',''),(4276,826,'_contact_text','field_56ab78a159605'),(4277,826,'contact_number',''),(4278,826,'_contact_number','field_56ab78cc59606'),(4279,826,'_transient_timeout_tribe_attendees','1485723435'),(4280,826,'_transient_tribe_attendees','a:0:{}'),(4281,827,'_wp_attached_file','2016/05/Screen-Shot-2016-04-25-at-08.57.29.png'),(4282,827,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:409;s:6:\"height\";i:464;s:4:\"file\";s:46:\"2016/05/Screen-Shot-2016-04-25-at-08.57.29.png\";s:8:\"filesize\";i:296002;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4283,827,'dt-img-hide-title','0'),(4284,829,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4285,829,'_edit_last','3'),(4286,829,'_image1','830'),(4287,829,'contact_text',''),(4288,829,'_contact_text','field_56ab78a159605'),(4289,829,'contact_number',''),(4290,829,'_contact_number','field_56ab78cc59606'),(4291,829,'_transient_timeout_tribe_attendees','1485723435'),(4292,829,'_transient_tribe_attendees','a:0:{}'),(4293,830,'_wp_attached_file','2016/05/Screen-Shot-2016-05-04-at-10.32.13.png'),(4294,830,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:414;s:6:\"height\";i:490;s:4:\"file\";s:46:\"2016/05/Screen-Shot-2016-05-04-at-10.32.13.png\";s:8:\"filesize\";i:371928;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4295,830,'dt-img-hide-title','0'),(4296,853,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4297,853,'_edit_last','3'),(4298,853,'_image1','854'),(4299,853,'contact_text',''),(4300,853,'_contact_text','field_56ab78a159605'),(4301,853,'contact_number',''),(4302,853,'_contact_number','field_56ab78cc59606'),(4303,853,'_transient_timeout_tribe_attendees','1485723435'),(4304,853,'_transient_tribe_attendees','a:0:{}'),(4305,854,'_wp_attached_file','2016/05/Screen-Shot-2016-05-06-at-08.18.59.png'),(4306,854,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:507;s:6:\"height\";i:346;s:4:\"file\";s:46:\"2016/05/Screen-Shot-2016-05-06-at-08.18.59.png\";s:8:\"filesize\";i:165323;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4307,854,'dt-img-hide-title','0'),(4308,856,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4309,856,'_edit_last','3'),(4310,856,'_image1','857'),(4311,856,'contact_text',''),(4312,856,'_contact_text','field_56ab78a159605'),(4313,856,'contact_number',''),(4314,856,'_contact_number','field_56ab78cc59606'),(4315,856,'_transient_timeout_tribe_attendees','1485723434'),(4316,856,'_transient_tribe_attendees','a:0:{}'),(4317,856,'slide_template','default'),(4318,856,'_wpb_vc_js_status','false'),(4319,856,'_dt_sidebar_position','right'),(4320,856,'_dt_sidebar_widgetarea_id','sidebar_1'),(4321,856,'_dt_sidebar_hide_on_mobile','0'),(4322,856,'_dt_footer_show','1'),(4323,856,'_dt_footer_widgetarea_id','sidebar_2'),(4324,856,'_dt_footer_hide_on_mobile','0'),(4325,856,'_dt_header_title','enabled'),(4326,856,'_dt_header_background','normal'),(4327,856,'_dt_header_background_below_slideshow','disabled'),(4328,856,'_dt_header_transparent_bg_color','#000000'),(4329,856,'_dt_header_transparent_bg_opacity','50'),(4330,856,'_dt_header_transparent_bg_color_scheme','light'),(4331,856,'_dt_slideshow_mode','porthole'),(4332,856,'_dt_slideshow_3d_layout','fullscreen-content'),(4333,856,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(4334,856,'_dt_slideshow_layout','fullwidth'),(4335,856,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(4336,856,'_dt_slideshow_scaling','fill'),(4337,856,'_dt_slideshow_autoplay','paused'),(4338,856,'_dt_slideshow_autoslide_interval','5000'),(4339,856,'_dt_slideshow_hide_captions','0'),(4340,856,'_dt_slideshow_photo_scroller_layout','fullscreen'),(4341,856,'_dt_slideshow_photo_scroller_bg_color','#000000'),(4342,856,'_dt_slideshow_photo_scroller_overlay','1'),(4343,856,'_dt_slideshow_photo_scroller_top_padding','0'),(4344,856,'_dt_slideshow_photo_scroller_bottom_padding','0'),(4345,856,'_dt_slideshow_photo_scroller_side_paddings','0'),(4346,856,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(4347,856,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(4348,856,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(4349,856,'_dt_slideshow_photo_scroller_autoplay','play'),(4350,856,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(4351,856,'_dt_slideshow_photo_scroller_ls_max_width','100'),(4352,856,'_dt_slideshow_photo_scroller_ls_min_width','0'),(4353,856,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(4354,856,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(4355,856,'_dt_slideshow_photo_scroller_pt_max_width','100'),(4356,856,'_dt_slideshow_photo_scroller_pt_min_width','0'),(4357,856,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(4358,856,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(4359,856,'_dt_slideshow_revolution_slider','none'),(4360,856,'_dt_slideshow_layer_slider','none'),(4361,856,'_dt_slideshow_layer_show_bg_and_paddings','0'),(4362,856,'_dt_fancy_header_title_aligment','center'),(4363,856,'_dt_fancy_header_breadcrumbs','enabled'),(4364,856,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(4365,856,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(4366,856,'_dt_fancy_header_title_mode','custom'),(4367,856,'_dt_fancy_header_title_color_mode','color'),(4368,856,'_dt_fancy_header_title_color','#ffffff'),(4369,856,'_dt_fancy_header_subtitle_color_mode','color'),(4370,856,'_dt_fancy_header_subtitle_color','#ffffff'),(4371,856,'_dt_fancy_header_bg_color','#222222'),(4372,856,'_dt_fancy_header_bg_repeat','no-repeat'),(4373,856,'_dt_fancy_header_bg_position_x','center'),(4374,856,'_dt_fancy_header_bg_position_y','center'),(4375,856,'_dt_fancy_header_bg_fullscreen','1'),(4376,856,'_dt_fancy_header_height','300'),(4377,856,'_dt_post_options_back_button',''),(4378,856,'_dt_post_options_hide_thumbnail','0'),(4379,856,'_dt_post_options_related_mode','same'),(4380,856,'_dt_post_options_preview','normal'),(4381,856,'_dt_fancy_header_title_font_size','44'),(4382,856,'_dt_fancy_header_title_line_height','50'),(4383,856,'_dt_fancy_header_subtitle_font_size','30'),(4384,856,'_dt_fancy_header_subtitle_line_height','36'),(4385,856,'iawp_total_views','9'),(4386,857,'_wp_attached_file','2016/05/Screen-Shot-2016-05-09-at-14.59.09.png'),(4387,857,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:567;s:6:\"height\";i:390;s:4:\"file\";s:46:\"2016/05/Screen-Shot-2016-05-09-at-14.59.09.png\";s:8:\"filesize\";i:434549;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4388,857,'dt-img-hide-title','0'),(4389,873,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4390,873,'_edit_last','3'),(4391,873,'_image1','874'),(4392,873,'contact_text',''),(4393,873,'_contact_text','field_56ab78a159605'),(4394,873,'contact_number',''),(4395,873,'_contact_number','field_56ab78cc59606'),(4396,873,'_transient_timeout_tribe_attendees','1485723434'),(4397,873,'_transient_tribe_attendees','a:0:{}'),(4398,874,'_wp_attached_file','2016/05/Screen-Shot-2016-05-12-at-17.23.25.png'),(4399,874,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:946;s:6:\"height\";i:333;s:4:\"file\";s:46:\"2016/05/Screen-Shot-2016-05-12-at-17.23.25.png\";s:8:\"filesize\";i:609491;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4400,874,'dt-img-hide-title','0'),(4401,936,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4402,936,'_edit_last','3'),(4403,936,'_image1','937'),(4404,936,'contact_text',''),(4405,936,'_contact_text','field_56ab78a159605'),(4406,936,'contact_number',''),(4407,936,'_contact_number','field_56ab78cc59606'),(4408,936,'_transient_timeout_tribe_attendees','1485723434'),(4409,936,'_transient_tribe_attendees','a:0:{}'),(4410,937,'_wp_attached_file','2016/05/Screen-Shot-2016-04-23-at-06.41.16.png'),(4411,937,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:594;s:6:\"height\";i:450;s:4:\"file\";s:46:\"2016/05/Screen-Shot-2016-04-23-at-06.41.16.png\";s:8:\"filesize\";i:422481;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4412,937,'dt-img-hide-title','0'),(4413,940,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4414,940,'_edit_last','3'),(4415,940,'_image1','941'),(4416,940,'contact_text',''),(4417,940,'_contact_text','field_56ab78a159605'),(4418,940,'contact_number',''),(4419,940,'_contact_number','field_56ab78cc59606'),(4420,940,'_transient_timeout_tribe_attendees','1485723434'),(4421,940,'_transient_tribe_attendees','a:0:{}'),(4422,941,'_wp_attached_file','2016/05/Screen-Shot-2016-02-16-at-06.49.29.png'),(4423,941,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:431;s:6:\"height\";i:306;s:4:\"file\";s:46:\"2016/05/Screen-Shot-2016-02-16-at-06.49.29.png\";s:8:\"filesize\";i:234783;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4424,941,'dt-img-hide-title','0'),(4425,1014,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4426,1014,'_edit_last','3'),(4427,1014,'_image1','1015'),(4428,1014,'contact_text',''),(4429,1014,'_contact_text','field_56ab78a159605'),(4430,1014,'contact_number',''),(4431,1014,'_contact_number','field_56ab78cc59606'),(4432,1014,'_transient_timeout_tribe_attendees','1485723434'),(4433,1014,'_transient_tribe_attendees','a:0:{}'),(4434,1015,'_wp_attached_file','2016/05/leaping-image.png'),(4435,1015,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:458;s:6:\"height\";i:399;s:4:\"file\";s:25:\"2016/05/leaping-image.png\";s:8:\"filesize\";i:208661;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4436,1015,'dt-img-hide-title','0'),(4437,1017,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4438,1017,'_edit_last','3'),(4439,1017,'_image1','1021'),(4440,1017,'contact_text',''),(4441,1017,'_contact_text','field_56ab78a159605'),(4442,1017,'contact_number',''),(4443,1017,'_contact_number','field_56ab78cc59606'),(4444,1017,'_transient_timeout_tribe_attendees','1485723434'),(4445,1017,'_transient_tribe_attendees','a:0:{}'),(4446,1017,'iawp_total_views','3'),(4447,1018,'_wp_attached_file','2016/05/EXPECTATION-PYRAMID.pdf'),(4448,1018,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:27:\"EXPECTATION-PYRAMID-pdf.jpg\";s:5:\"width\";i:1820;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118051;}s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"EXPECTATION-PYRAMID-pdf-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40048;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"EXPECTATION-PYRAMID-pdf-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60981;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"EXPECTATION-PYRAMID-pdf-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14415;}}s:8:\"filesize\";i:87197;}'),(4449,1018,'dt-img-hide-title','0'),(4450,1019,'_wp_attached_file','2016/05/EXPECTATION-PYRAMID-1.pdf'),(4451,1019,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:29:\"EXPECTATION-PYRAMID-1-pdf.jpg\";s:5:\"width\";i:1820;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118051;}s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"EXPECTATION-PYRAMID-1-pdf-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40048;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"EXPECTATION-PYRAMID-1-pdf-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60981;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"EXPECTATION-PYRAMID-1-pdf-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14415;}}s:8:\"filesize\";i:87197;}'),(4452,1020,'_wp_attached_file','2016/05/Screen-Shot-2016-05-24-at-09.45.45.png'),(4453,1020,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:718;s:6:\"height\";i:535;s:4:\"file\";s:46:\"2016/05/Screen-Shot-2016-05-24-at-09.45.45.png\";s:8:\"filesize\";i:249300;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4454,1020,'dt-img-hide-title','0'),(4455,1021,'_wp_attached_file','2016/05/Screen-Shot-2016-05-24-at-09.45.45-1.png'),(4456,1021,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:718;s:6:\"height\";i:535;s:4:\"file\";s:48:\"2016/05/Screen-Shot-2016-05-24-at-09.45.45-1.png\";s:8:\"filesize\";i:249300;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4457,1021,'dt-img-hide-title','0'),(4458,1023,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4459,1023,'_edit_last','3'),(4460,1023,'_image1','1024'),(4461,1023,'contact_text',''),(4462,1023,'_contact_text','field_56ab78a159605'),(4463,1023,'contact_number',''),(4464,1023,'_contact_number','field_56ab78cc59606'),(4465,1023,'_transient_timeout_tribe_attendees','1485723434'),(4466,1023,'_transient_tribe_attendees','a:0:{}'),(4467,1023,'iawp_total_views','8'),(4468,1024,'_wp_attached_file','2016/05/feet-skele.jpg'),(4469,1024,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:1050;s:4:\"file\";s:22:\"2016/05/feet-skele.jpg\";s:8:\"filesize\";i:46256;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4470,1024,'dt-img-hide-title','0'),(4471,1026,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4472,1026,'_edit_last','3'),(4473,1026,'_image1','1027'),(4474,1026,'contact_text',''),(4475,1026,'_contact_text','field_56ab78a159605'),(4476,1026,'contact_number',''),(4477,1026,'_contact_number','field_56ab78cc59606'),(4478,1026,'_transient_timeout_tribe_attendees','1485723434'),(4479,1026,'_transient_tribe_attendees','a:0:{}'),(4480,1027,'_wp_attached_file','2016/06/13041131_1814009795494731_4065624029059179728_o.jpeg'),(4481,1027,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:214;s:6:\"height\";i:320;s:4:\"file\";s:60:\"2016/06/13041131_1814009795494731_4065624029059179728_o.jpeg\";s:8:\"filesize\";i:22071;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4482,1027,'dt-img-hide-title','0'),(4483,1029,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4484,1029,'_edit_last','3'),(4485,1029,'_image1','1030'),(4486,1029,'contact_text',''),(4487,1029,'_contact_text','field_56ab78a159605'),(4488,1029,'contact_number',''),(4489,1029,'_contact_number','field_56ab78cc59606'),(4490,1029,'_transient_timeout_tribe_attendees','1485723434'),(4491,1029,'_transient_tribe_attendees','a:0:{}'),(4492,1030,'_wp_attached_file','2016/06/skele-pelvis.jpg'),(4493,1030,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1050;s:6:\"height\";i:750;s:4:\"file\";s:24:\"2016/06/skele-pelvis.jpg\";s:8:\"filesize\";i:50191;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4494,1030,'dt-img-hide-title','0'),(4495,1034,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4496,1034,'_edit_last','3'),(4497,1034,'_image1','1035'),(4498,1034,'contact_text',''),(4499,1034,'_contact_text','field_56ab78a159605'),(4500,1034,'contact_number',''),(4501,1034,'_contact_number','field_56ab78cc59606'),(4502,1034,'_transient_timeout_tribe_attendees','1485723434'),(4503,1034,'_transient_tribe_attendees','a:0:{}'),(4504,1035,'_wp_attached_file','2016/06/Screen-Shot-2016-06-07-at-09.48.25.png'),(4505,1035,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:422;s:6:\"height\";i:279;s:4:\"file\";s:46:\"2016/06/Screen-Shot-2016-06-07-at-09.48.25.png\";s:8:\"filesize\";i:222906;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4506,1035,'dt-img-hide-title','0'),(4507,1038,'_wc_memberships_force_public','no'),(4508,1038,'_edit_last','3'),(4509,1038,'_image1','1039'),(4510,1038,'contact_text',''),(4511,1038,'_contact_text','field_56ab78a159605'),(4512,1038,'contact_number',''),(4513,1038,'_contact_number','field_56ab78cc59606'),(4514,1038,'_transient_timeout_tribe_attendees','1485723434'),(4515,1038,'_transient_tribe_attendees','a:0:{}'),(4516,1038,'_thumbnail_id','34810'),(4517,1038,'_wp_page_template','default'),(4518,1038,'_wpb_vc_js_status','false'),(4519,1038,'_wc_memberships_use_custom_post_content_restricted_message','no'),(4520,1038,'_dt_sidebar_position','right'),(4521,1038,'_dt_sidebar_widgetarea_id','sidebar_1'),(4522,1038,'_dt_sidebar_hide_on_mobile','0'),(4523,1038,'_dt_footer_show','1'),(4524,1038,'_dt_footer_widgetarea_id','sidebar_2'),(4525,1038,'_dt_footer_hide_on_mobile','0'),(4526,1038,'_dt_header_title','enabled'),(4527,1038,'_dt_header_background','normal'),(4528,1038,'_dt_header_background_below_slideshow','disabled'),(4529,1038,'_dt_header_transparent_bg_color_scheme','light'),(4530,1038,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(4531,1038,'_dt_header_transparent_top_bar_bg_opacity','25'),(4532,1038,'_dt_header_transparent_bg_color','#000000'),(4533,1038,'_dt_header_transparent_bg_opacity','50'),(4534,1038,'_dt_header_disabled_background','normal'),(4535,1038,'_dt_header_disabled_transparent_bg_color_scheme','light'),(4536,1038,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(4537,1038,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(4538,1038,'_dt_header_disabled_transparent_bg_color','#000000'),(4539,1038,'_dt_header_disabled_transparent_bg_opacity','50'),(4540,1038,'_dt_page_overrides_top_margin',''),(4541,1038,'_dt_page_overrides_right_margin',''),(4542,1038,'_dt_page_overrides_bottom_margin',''),(4543,1038,'_dt_page_overrides_left_margin',''),(4544,1038,'_dt_mobile_page_padding_top',''),(4545,1038,'_dt_mobile_page_padding_right',''),(4546,1038,'_dt_mobile_page_padding_bottom',''),(4547,1038,'_dt_mobile_page_padding_left',''),(4548,1038,'_dt_post_options_back_button',''),(4549,1038,'_dt_post_options_hide_thumbnail','0'),(4550,1038,'_dt_post_options_related_mode','same'),(4551,1038,'_dt_post_options_preview','normal'),(4552,1038,'_dt_microsite_primary_menu',''),(4553,1038,'_dt_microsite_split_left_menu',''),(4554,1038,'_dt_microsite_split_right_menu',''),(4555,1038,'_dt_microsite_mobile_menu',''),(4556,1038,'iawp_total_views','28'),(4557,1039,'_wp_attached_file','2016/06/Screen-Shot-2016-06-09-at-07.03.49.png'),(4558,1039,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:532;s:6:\"height\";i:394;s:4:\"file\";s:46:\"2016/06/Screen-Shot-2016-06-09-at-07.03.49.png\";s:8:\"filesize\";i:226406;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4559,1039,'dt-img-hide-title','0'),(4560,1044,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4561,1044,'_edit_last','3'),(4562,1044,'_image1','1045'),(4563,1044,'contact_text',''),(4564,1044,'_contact_text','field_56ab78a159605'),(4565,1044,'contact_number',''),(4566,1044,'_contact_number','field_56ab78cc59606'),(4567,1044,'_oembed_a65b3ab8c5273d6877a16efcecd69405','{{unknown}}'),(4568,1044,'_oembed_11d4eec5b96f38b0ac6ac4e2c058dca3','{{unknown}}'),(4569,1044,'_oembed_83a838fd9d6170214790f6b33ff08a6c','{{unknown}}'),(4570,1044,'_oembed_e8f266b310ffead82e766c33ca27d573','<a href=\"http://www.ideafit.com/fitness-library/benefits-of-a-personal-trainer\">Top 10 Benefits of Hiring a Personal Trainer</a>'),(4571,1044,'_oembed_time_e8f266b310ffead82e766c33ca27d573','1465713522'),(4572,1044,'_oembed_2598d142976bd764c47477ac5dff0f66','<a href=\"https://www.ideafit.com/fitness-library/benefits-of-a-personal-trainer\">Top 10 Benefits of Hiring a Personal Trainer</a>'),(4573,1044,'_oembed_time_2598d142976bd764c47477ac5dff0f66','1465713518'),(4574,1044,'_oembed_3be7af702e7bbc32ab19c21eaad83ed0','{{unknown}}'),(4575,1044,'_oembed_533edcb686d5ece9cbbf360cd83896e4','{{unknown}}'),(4576,1044,'_oembed_8f108d2b9030a771236e58d4754fbc8d','<a href=\"http://www.ideafit.com/fitness-library/benefits-of-a-personal-trainer\">Top 10 Benefits of Hiring a Personal Trainer</a>'),(4577,1044,'_oembed_time_8f108d2b9030a771236e58d4754fbc8d','1485719089'),(4578,1044,'_oembed_8b7f2a26e34acc7d817f983cd64bd0e7','{{unknown}}'),(4579,1044,'_transient_timeout_tribe_attendees','1485723433'),(4580,1044,'_transient_tribe_attendees','a:0:{}'),(4581,1044,'_oembed_8f31f206bc2fdaef582a61fe9532f4a4','{{unknown}}'),(4582,1044,'_oembed_fd07e9f9327829ca437d7dcd3924c66b','{{unknown}}'),(4583,1044,'_oembed_eff7fac27cd3c1b538fbc180cda0d0b7','{{unknown}}'),(4584,1044,'_oembed_add360de4ead93a54ceb36acdba0c221','{{unknown}}'),(4585,1044,'_oembed_ef746373277bf569048e31344a7b3d4a','{{unknown}}'),(4586,1044,'_oembed_9a730771bdbf36e55deff18ae68d7250','{{unknown}}'),(4587,1044,'iawp_total_views','1'),(4588,1045,'_wp_attached_file','2016/06/Screen-Shot-2016-06-12-at-07.37.45.png'),(4589,1045,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:787;s:6:\"height\";i:426;s:4:\"file\";s:46:\"2016/06/Screen-Shot-2016-06-12-at-07.37.45.png\";s:8:\"filesize\";i:628626;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4590,1045,'dt-img-hide-title','0'),(4591,1049,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4592,1049,'_edit_last','3'),(4593,1049,'_image1','1052'),(4594,1049,'contact_text',''),(4595,1049,'_contact_text','field_56ab78a159605'),(4596,1049,'contact_number',''),(4597,1049,'_contact_number','field_56ab78cc59606'),(4598,1049,'_oembed_8bb3e251a75c07d82b4bbce2ebcdb6f6','{{unknown}}'),(4599,1049,'_oembed_28b6d92faaccb36cee181cac05bcf260','{{unknown}}'),(4600,1049,'_oembed_51f372e10c007b52ee7cf92238c3130a','{{unknown}}'),(4601,1049,'_oembed_cb27bebbb68f9a6dade27316dbe7a639','{{unknown}}'),(4602,1049,'_oembed_4e4833cf5c4356fe9e0833e43c34f4c1','{{unknown}}'),(4603,1049,'_oembed_beb90d569387950a198d3c2ff1de4ecc','{{unknown}}'),(4604,1049,'_oembed_880b980c23db1ae1ff6f72ef592f1cf5','<blockquote data-secret=\"l8IuB9XqCi\" class=\"wp-embedded-content\"><a href=\"http://criticalphysio.net/2016/05/30/is-it-time-to-end-the-tyranny-of-evidence-based-practice/\">Is it time to end the tyranny of evidence based practice?</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"http://criticalphysio.net/2016/05/30/is-it-time-to-end-the-tyranny-of-evidence-based-practice/embed/#?secret=l8IuB9XqCi\" data-secret=\"l8IuB9XqCi\" width=\"600\" height=\"338\" title=\"&#8220;Is it time to end the tyranny of evidence based practice?&#8221; &#8212; critical physiotherapy network\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(4605,1049,'_oembed_time_880b980c23db1ae1ff6f72ef592f1cf5','1465900484'),(4606,1049,'_oembed_e7f2ffc37f10d46010fae1aa5f2c29c1','<blockquote data-secret=\"TLes8yIUkx\" class=\"wp-embedded-content\"><a href=\"http://shoptalk.physiotherapy.ca/if-you-want-to-deliver-real-evidence-based-medicine-read-this/\">If you want to deliver real, evidence-based medicine, read this.</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"http://shoptalk.physiotherapy.ca/if-you-want-to-deliver-real-evidence-based-medicine-read-this/embed/#?secret=TLes8yIUkx\" data-secret=\"TLes8yIUkx\" width=\"600\" height=\"338\" title=\"Embedded WordPress Post\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(4607,1049,'_oembed_time_e7f2ffc37f10d46010fae1aa5f2c29c1','1465900491'),(4608,1049,'_oembed_4168c6556a75b7d4137605bd19c01e61','{{unknown}}'),(4609,1049,'_oembed_114c1aa4cdc1da64a98d19644fceedea','<blockquote data-secret=\"8xxGDoeQU1\" class=\"wp-embedded-content\"><a href=\"http://criticalphysio.net/2016/05/30/is-it-time-to-end-the-tyranny-of-evidence-based-practice/\">Is it time to end the tyranny of evidence based practice?</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"http://criticalphysio.net/2016/05/30/is-it-time-to-end-the-tyranny-of-evidence-based-practice/embed/#?secret=8xxGDoeQU1\" data-secret=\"8xxGDoeQU1\" width=\"600\" height=\"338\" title=\"&#8220;Is it time to end the tyranny of evidence based practice?&#8221; &#8212; critical physiotherapy network\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(4610,1049,'_oembed_time_114c1aa4cdc1da64a98d19644fceedea','1485719084'),(4611,1049,'_oembed_e7d33787d0efb526f72bcd99b81b84ef','<blockquote data-secret=\"frNkuZhXin\" class=\"wp-embedded-content\"><a href=\"http://shoptalk.physiotherapy.ca/if-you-want-to-deliver-real-evidence-based-medicine-read-this/\">If you want to deliver real, evidence-based medicine, read this.</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"http://shoptalk.physiotherapy.ca/if-you-want-to-deliver-real-evidence-based-medicine-read-this/embed/#?secret=frNkuZhXin\" data-secret=\"frNkuZhXin\" width=\"600\" height=\"338\" title=\"Embedded WordPress Post\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(4612,1049,'_oembed_time_e7d33787d0efb526f72bcd99b81b84ef','1485719087'),(4613,1049,'_oembed_e71fe569f0b5555e1f794a21c5708dce','{{unknown}}'),(4614,1049,'_transient_timeout_tribe_attendees','1485723433'),(4615,1049,'_transient_tribe_attendees','a:0:{}'),(4616,1049,'_oembed_5b75f4ebdf69c932d29cdac5604c43c5','<blockquote class=\"wp-embedded-content\" data-secret=\"cN3Qk7k47g\"><a href=\"https://criticalphysio.net/2016/05/30/is-it-time-to-end-the-tyranny-of-evidence-based-practice/\">Is it time to end the tyranny of evidence based practice?</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Is it time to end the tyranny of evidence based practice?&#8221; &#8212; critical physiotherapy network\" src=\"https://criticalphysio.net/2016/05/30/is-it-time-to-end-the-tyranny-of-evidence-based-practice/embed/#?secret=VEnzJDcEio#?secret=cN3Qk7k47g\" data-secret=\"cN3Qk7k47g\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(4617,1049,'_oembed_time_5b75f4ebdf69c932d29cdac5604c43c5','1673861506'),(4618,1049,'_oembed_54ff20c55afc7eeb09931f919f82d944','{{unknown}}'),(4619,1049,'_oembed_3bdd880acfee450845ea4347f5131c80','{{unknown}}'),(4620,1049,'_oembed_d925476d5dc02601ae4cc8858fa59a50','{{unknown}}'),(4621,1049,'_oembed_67ff3ec91d56530decb7522af1b721ff','{{unknown}}'),(4622,1049,'_oembed_6e690116f13df128fac2f54bb9e3c54f','{{unknown}}'),(4623,1049,'_oembed_4a937f66e0a68ed9218e4c638dd9fc72','{{unknown}}'),(4624,1051,'_wp_attached_file','2016/06/Screen-Shot-2016-06-14-at-11.33.28.png'),(4625,1051,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:230;s:6:\"height\";i:238;s:4:\"file\";s:46:\"2016/06/Screen-Shot-2016-06-14-at-11.33.28.png\";s:8:\"filesize\";i:92264;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4626,1051,'dt-img-hide-title','0'),(4627,1054,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4628,1054,'_edit_last','3'),(4629,1054,'_image1','1057'),(4630,1054,'contact_text',''),(4631,1054,'_contact_text','field_56ab78a159605'),(4632,1054,'contact_number',''),(4633,1054,'_contact_number','field_56ab78cc59606'),(4634,1054,'_transient_timeout_tribe_attendees','1485723433'),(4635,1054,'_transient_tribe_attendees','a:0:{}'),(4636,1060,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4637,1060,'_edit_last','3'),(4638,1060,'_image1','1061'),(4639,1060,'contact_text',''),(4640,1060,'_contact_text','field_56ab78a159605'),(4641,1060,'contact_number',''),(4642,1060,'_contact_number','field_56ab78cc59606'),(4643,1060,'_oembed_546f612c4d169a1c762e4b29e5d3fabc','{{unknown}}'),(4644,1060,'_oembed_d85e5db48ef8eac72f1899852add1aad','{{unknown}}'),(4645,1060,'_oembed_29d5b1a7c3214d5660fce6026b70e8a4','{{unknown}}'),(4646,1060,'_transient_timeout_tribe_attendees','1485723433'),(4647,1060,'_transient_tribe_attendees','a:0:{}'),(4648,1064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4649,1064,'_edit_last','3'),(4650,1064,'_image1','1065'),(4651,1064,'contact_text',''),(4652,1064,'_contact_text','field_56ab78a159605'),(4653,1064,'contact_number',''),(4654,1064,'_contact_number','field_56ab78cc59606'),(4655,1064,'_transient_timeout_tribe_attendees','1485723433'),(4656,1064,'_transient_tribe_attendees','a:0:{}'),(4657,1067,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4658,1067,'_edit_last','3'),(4659,1067,'_image1','1068'),(4660,1067,'contact_text',''),(4661,1067,'_contact_text','field_56ab78a159605'),(4662,1067,'contact_number',''),(4663,1067,'_contact_number','field_56ab78cc59606'),(4664,1067,'_transient_timeout_tribe_attendees','1485723433'),(4665,1067,'_transient_tribe_attendees','a:0:{}'),(4666,1072,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4667,1072,'_edit_last','3'),(4668,1072,'_image1','1073'),(4669,1072,'contact_text',''),(4670,1072,'_contact_text','field_56ab78a159605'),(4671,1072,'contact_number',''),(4672,1072,'_contact_number','field_56ab78cc59606'),(4673,1072,'_transient_timeout_tribe_attendees','1485723433'),(4674,1072,'_transient_tribe_attendees','a:0:{}'),(4675,1077,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4676,1077,'_edit_last','2'),(4677,1077,'_image1','1078'),(4678,1077,'contact_text',''),(4679,1077,'_contact_text','field_56ab78a159605'),(4680,1077,'contact_number',''),(4681,1077,'_contact_number','field_56ab78cc59606'),(4682,1077,'_transient_timeout_tribe_attendees','1485723433'),(4683,1077,'_transient_tribe_attendees','a:0:{}'),(4684,1077,'slide_template','default'),(4685,1077,'_wpb_vc_js_status','false'),(4686,1077,'_dt_sidebar_position','right'),(4687,1077,'_dt_sidebar_widgetarea_id','sidebar_1'),(4688,1077,'_dt_sidebar_hide_on_mobile','0'),(4689,1077,'_dt_footer_show','1'),(4690,1077,'_dt_footer_widgetarea_id','sidebar_2'),(4691,1077,'_dt_footer_hide_on_mobile','0'),(4692,1077,'_dt_header_title','enabled'),(4693,1077,'_dt_header_background','normal'),(4694,1077,'_dt_header_background_below_slideshow','disabled'),(4695,1077,'_dt_header_transparent_bg_color','#000000'),(4696,1077,'_dt_header_transparent_bg_opacity','50'),(4697,1077,'_dt_header_transparent_bg_color_scheme','light'),(4698,1077,'_dt_slideshow_mode','porthole'),(4699,1077,'_dt_slideshow_3d_layout','fullscreen-content'),(4700,1077,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(4701,1077,'_dt_slideshow_layout','fullwidth'),(4702,1077,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(4703,1077,'_dt_slideshow_scaling','fill'),(4704,1077,'_dt_slideshow_autoplay','paused'),(4705,1077,'_dt_slideshow_autoslide_interval','5000'),(4706,1077,'_dt_slideshow_hide_captions','0'),(4707,1077,'_dt_slideshow_photo_scroller_layout','fullscreen'),(4708,1077,'_dt_slideshow_photo_scroller_bg_color','#000000'),(4709,1077,'_dt_slideshow_photo_scroller_overlay','1'),(4710,1077,'_dt_slideshow_photo_scroller_top_padding','0'),(4711,1077,'_dt_slideshow_photo_scroller_bottom_padding','0'),(4712,1077,'_dt_slideshow_photo_scroller_side_paddings','0'),(4713,1077,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(4714,1077,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(4715,1077,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(4716,1077,'_dt_slideshow_photo_scroller_autoplay','play'),(4717,1077,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(4718,1077,'_dt_slideshow_photo_scroller_ls_max_width','100'),(4719,1077,'_dt_slideshow_photo_scroller_ls_min_width','0'),(4720,1077,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(4721,1077,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(4722,1077,'_dt_slideshow_photo_scroller_pt_max_width','100'),(4723,1077,'_dt_slideshow_photo_scroller_pt_min_width','0'),(4724,1077,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(4725,1077,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(4726,1077,'_dt_slideshow_revolution_slider','none'),(4727,1077,'_dt_slideshow_layer_slider','none'),(4728,1077,'_dt_slideshow_layer_show_bg_and_paddings','0'),(4729,1077,'_dt_fancy_header_title_aligment','center'),(4730,1077,'_dt_fancy_header_breadcrumbs','enabled'),(4731,1077,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(4732,1077,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(4733,1077,'_dt_fancy_header_title_mode','custom'),(4734,1077,'_dt_fancy_header_title_color_mode','color'),(4735,1077,'_dt_fancy_header_title_color','#ffffff'),(4736,1077,'_dt_fancy_header_subtitle_color_mode','color'),(4737,1077,'_dt_fancy_header_subtitle_color','#ffffff'),(4738,1077,'_dt_fancy_header_bg_color','#222222'),(4739,1077,'_dt_fancy_header_bg_repeat','no-repeat'),(4740,1077,'_dt_fancy_header_bg_position_x','center'),(4741,1077,'_dt_fancy_header_bg_position_y','center'),(4742,1077,'_dt_fancy_header_bg_fullscreen','1'),(4743,1077,'_dt_fancy_header_height','300'),(4744,1077,'_dt_post_options_back_button',''),(4745,1077,'_dt_post_options_hide_thumbnail','0'),(4746,1077,'_dt_post_options_related_mode','same'),(4747,1077,'_dt_post_options_preview','normal'),(4748,1077,'_dt_fancy_header_title_font_size','44'),(4749,1077,'_dt_fancy_header_title_line_height','50'),(4750,1077,'_dt_fancy_header_subtitle_font_size','30'),(4751,1077,'_dt_fancy_header_subtitle_line_height','36'),(4752,1083,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4753,1083,'_edit_last','3'),(4754,1083,'_image1','1084'),(4755,1083,'contact_text',''),(4756,1083,'_contact_text','field_56ab78a159605'),(4757,1083,'contact_number',''),(4758,1083,'_contact_number','field_56ab78cc59606'),(4759,1083,'_transient_timeout_tribe_attendees','1485723433'),(4760,1083,'_transient_tribe_attendees','a:0:{}'),(4761,1087,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4762,1087,'_edit_last','3'),(4763,1087,'_image1','1088'),(4764,1087,'contact_text',''),(4765,1087,'_contact_text','field_56ab78a159605'),(4766,1087,'contact_number',''),(4767,1087,'_contact_number','field_56ab78cc59606'),(4768,1087,'_transient_timeout_tribe_attendees','1485723433'),(4769,1087,'_transient_tribe_attendees','a:0:{}'),(4770,1087,'iawp_total_views','1'),(4771,1093,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4772,1093,'_edit_last','4'),(4773,1093,'_image1','1096'),(4774,1093,'contact_text',''),(4775,1093,'_contact_text','field_56ab78a159605'),(4776,1093,'contact_number',''),(4777,1093,'_contact_number','field_56ab78cc59606'),(4778,1093,'_transient_timeout_tribe_attendees','1485723433'),(4779,1093,'_transient_tribe_attendees','a:0:{}'),(4780,1098,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4781,1098,'_edit_last','4'),(4782,1098,'_image1','1099'),(4783,1098,'contact_text',''),(4784,1098,'_contact_text','field_56ab78a159605'),(4785,1098,'contact_number',''),(4786,1098,'_contact_number','field_56ab78cc59606'),(4787,1098,'_transient_timeout_tribe_attendees','1485723433'),(4788,1098,'_transient_tribe_attendees','a:0:{}'),(4789,1101,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4790,1101,'_edit_last','4'),(4791,1101,'_image1','1106'),(4792,1101,'contact_text',''),(4793,1101,'_contact_text','field_56ab78a159605'),(4794,1101,'contact_number',''),(4795,1101,'_contact_number','field_56ab78cc59606'),(4796,1101,'_transient_timeout_tribe_attendees','1485723433'),(4797,1101,'_transient_tribe_attendees','a:0:{}'),(4798,1108,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4799,1108,'_edit_last','4'),(4800,1108,'_image1','1112'),(4801,1108,'contact_text',''),(4802,1108,'_contact_text','field_56ab78a159605'),(4803,1108,'contact_number',''),(4804,1108,'_contact_number','field_56ab78cc59606'),(4805,1108,'_transient_timeout_tribe_attendees','1485723433'),(4806,1108,'_transient_tribe_attendees','a:0:{}'),(4807,1108,'iawp_total_views','9'),(4808,1114,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4809,1114,'_edit_last','4'),(4810,1114,'_image1','1116'),(4811,1114,'contact_text',''),(4812,1114,'_contact_text','field_56ab78a159605'),(4813,1114,'contact_number',''),(4814,1114,'_contact_number','field_56ab78cc59606'),(4815,1114,'_transient_timeout_tribe_attendees','1485723433'),(4816,1114,'_transient_tribe_attendees','a:0:{}'),(4817,1118,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4818,1118,'_edit_last','4'),(4819,1118,'_image1','341'),(4820,1118,'contact_text',''),(4821,1118,'_contact_text','field_56ab78a159605'),(4822,1118,'contact_number',''),(4823,1118,'_contact_number','field_56ab78cc59606'),(4824,1118,'_transient_timeout_tribe_attendees','1485723432'),(4825,1118,'_transient_tribe_attendees','a:0:{}'),(4826,1124,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4827,1124,'_edit_last','3'),(4828,1124,'_image1','1125'),(4829,1124,'contact_text',''),(4830,1124,'_contact_text','field_56ab78a159605'),(4831,1124,'contact_number',''),(4832,1124,'_contact_number','field_56ab78cc59606'),(4833,1124,'_transient_timeout_tribe_attendees','1485723432'),(4834,1124,'_transient_tribe_attendees','a:0:{}'),(4835,1128,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4836,1128,'_edit_last','3'),(4837,1128,'_image1','1129'),(4838,1128,'contact_text',''),(4839,1128,'_contact_text','field_56ab78a159605'),(4840,1128,'contact_number',''),(4841,1128,'_contact_number','field_56ab78cc59606'),(4842,1128,'_transient_timeout_tribe_attendees','1485723432'),(4843,1128,'_transient_tribe_attendees','a:0:{}'),(4844,1144,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4845,1144,'_edit_last','3'),(4846,1144,'_image1','1145'),(4847,1144,'contact_text',''),(4848,1144,'_contact_text','field_56ab78a159605'),(4849,1144,'contact_number',''),(4850,1144,'_contact_number','field_56ab78cc59606'),(4851,1144,'_transient_timeout_tribe_attendees','1485723432'),(4852,1144,'_transient_tribe_attendees','a:0:{}'),(4853,1166,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4854,1166,'_edit_last','3'),(4855,1166,'_image1','1167'),(4856,1166,'contact_text',''),(4857,1166,'_contact_text','field_56ab78a159605'),(4858,1166,'contact_number',''),(4859,1166,'_contact_number','field_56ab78cc59606'),(4860,1166,'_transient_timeout_tribe_attendees','1485723432'),(4861,1166,'_transient_tribe_attendees','a:0:{}'),(4862,1183,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4863,1183,'_edit_last','3'),(4864,1183,'_image1','1187'),(4865,1183,'contact_text',''),(4866,1183,'_contact_text','field_56ab78a159605'),(4867,1183,'contact_number',''),(4868,1183,'_contact_number','field_56ab78cc59606'),(4869,1183,'_transient_timeout_tribe_attendees','1485723432'),(4870,1183,'_transient_tribe_attendees','a:0:{}'),(4871,1188,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4872,1188,'_edit_last','3'),(4873,1188,'_image1','1189'),(4874,1188,'contact_text',''),(4875,1188,'_contact_text','field_56ab78a159605'),(4876,1188,'contact_number',''),(4877,1188,'_contact_number','field_56ab78cc59606'),(4878,1188,'_transient_timeout_tribe_attendees','1485723432'),(4879,1188,'_transient_tribe_attendees','a:0:{}'),(4880,1193,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4881,1193,'_edit_last','3'),(4882,1193,'_image1','1194'),(4883,1193,'contact_text',''),(4884,1193,'_contact_text','field_56ab78a159605'),(4885,1193,'contact_number',''),(4886,1193,'_contact_number','field_56ab78cc59606'),(4887,1193,'_transient_timeout_tribe_attendees','1485723432'),(4888,1193,'_transient_tribe_attendees','a:0:{}'),(4889,1196,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4890,1196,'_edit_last','3'),(4891,1196,'_image1','1197'),(4892,1196,'contact_text',''),(4893,1196,'_contact_text','field_56ab78a159605'),(4894,1196,'contact_number',''),(4895,1196,'_contact_number','field_56ab78cc59606'),(4896,1196,'_transient_timeout_tribe_attendees','1485723432'),(4897,1196,'_transient_tribe_attendees','a:0:{}'),(4898,1219,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4899,1219,'_edit_last','3'),(4900,1219,'_image1','1220'),(4901,1219,'contact_text',''),(4902,1219,'_contact_text','field_56ab78a159605'),(4903,1219,'contact_number',''),(4904,1219,'_contact_number','field_56ab78cc59606'),(4905,1219,'_transient_timeout_tribe_attendees','1485723432'),(4906,1219,'_transient_tribe_attendees','a:0:{}'),(4907,1219,'_oembed_6e1a3eacb90052b90d1c0b3f1837d102','{{unknown}}'),(4908,1219,'_oembed_635b2f50c3588f891017bdae4a9fbfb2','{{unknown}}'),(4909,1219,'_oembed_a478a056d3f98adb3b15220b1bab94ff','{{unknown}}'),(4910,1219,'_oembed_e83522013a4aa9266dd88925951ea6b6','{{unknown}}'),(4911,1219,'_oembed_d0cbcde72d30bdae18939f5c56e4afe0','{{unknown}}'),(4912,1219,'iawp_total_views','117'),(4913,1222,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4914,1222,'_edit_last','3'),(4915,1222,'_image1','1223'),(4916,1222,'contact_text',''),(4917,1222,'_contact_text','field_56ab78a159605'),(4918,1222,'contact_number',''),(4919,1222,'_contact_number','field_56ab78cc59606'),(4920,1222,'_transient_timeout_tribe_attendees','1485723432'),(4921,1222,'_transient_tribe_attendees','a:0:{}'),(4922,1225,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4923,1225,'_edit_last','3'),(4924,1225,'_image1','1226'),(4925,1225,'contact_text',''),(4926,1225,'_contact_text','field_56ab78a159605'),(4927,1225,'contact_number',''),(4928,1225,'_contact_number','field_56ab78cc59606'),(4929,1225,'_transient_timeout_tribe_attendees','1485723432'),(4930,1225,'_transient_tribe_attendees','a:0:{}'),(4931,1231,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4932,1231,'_edit_last','3'),(4933,1231,'_image1','1232'),(4934,1231,'contact_text',''),(4935,1231,'_contact_text','field_56ab78a159605'),(4936,1231,'contact_number',''),(4937,1231,'_contact_number','field_56ab78cc59606'),(4938,1231,'_transient_timeout_tribe_attendees','1485723432'),(4939,1231,'_transient_tribe_attendees','a:0:{}'),(4940,1234,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4941,1234,'_edit_last','3'),(4942,1234,'_image1','1235'),(4943,1234,'contact_text',''),(4944,1234,'_contact_text','field_56ab78a159605'),(4945,1234,'contact_number',''),(4946,1234,'_contact_number','field_56ab78cc59606'),(4947,1234,'_transient_timeout_tribe_attendees','1485723431'),(4948,1234,'_transient_tribe_attendees','a:0:{}'),(4949,1238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4950,1238,'_edit_last','3'),(4951,1238,'_image1','1239'),(4952,1238,'contact_text',''),(4953,1238,'_contact_text','field_56ab78a159605'),(4954,1238,'contact_number',''),(4955,1238,'_contact_number','field_56ab78cc59606'),(4956,1238,'_transient_timeout_tribe_attendees','1485723431'),(4957,1238,'_transient_tribe_attendees','a:0:{}'),(4958,1241,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4959,1241,'_edit_last','3'),(4960,1241,'_image1','1242'),(4961,1241,'contact_text',''),(4962,1241,'_contact_text','field_56ab78a159605'),(4963,1241,'contact_number',''),(4964,1241,'_contact_number','field_56ab78cc59606'),(4965,1241,'_transient_timeout_tribe_attendees','1485850268'),(4966,1241,'_transient_tribe_attendees','a:0:{}'),(4967,1245,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4968,1245,'_edit_last','3'),(4969,1245,'_image1','1246'),(4970,1245,'contact_text',''),(4971,1245,'_contact_text','field_56ab78a159605'),(4972,1245,'contact_number',''),(4973,1245,'_contact_number','field_56ab78cc59606'),(4974,1245,'_transient_timeout_tribe_attendees','1485850267'),(4975,1245,'_transient_tribe_attendees','a:0:{}'),(4976,1255,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4977,1255,'_edit_last','3'),(4978,1255,'_image1','1256'),(4979,1255,'contact_text',''),(4980,1255,'_contact_text','field_56ab78a159605'),(4981,1255,'contact_number',''),(4982,1255,'_contact_number','field_56ab78cc59606'),(4983,1255,'_transient_timeout_tribe_attendees','1485850267'),(4984,1255,'_transient_tribe_attendees','a:0:{}'),(4985,1261,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4986,1261,'_edit_last','3'),(4987,1261,'_image1','1262'),(4988,1261,'contact_text',''),(4989,1261,'_contact_text','field_56ab78a159605'),(4990,1261,'contact_number',''),(4991,1261,'_contact_number','field_56ab78cc59606'),(4992,1261,'_transient_timeout_tribe_attendees','1485850267'),(4993,1261,'_transient_tribe_attendees','a:0:{}'),(4994,1264,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(4995,1264,'_edit_last','3'),(4996,1264,'_image1','1265'),(4997,1264,'contact_text',''),(4998,1264,'_contact_text','field_56ab78a159605'),(4999,1264,'contact_number',''),(5000,1264,'_contact_number','field_56ab78cc59606'),(5001,1264,'_transient_timeout_tribe_attendees','1485850267'),(5002,1264,'_transient_tribe_attendees','a:0:{}'),(5003,1268,'_wc_memberships_force_public','no'),(5004,1268,'_edit_last','3'),(5005,1268,'_image1','1269'),(5006,1268,'contact_text',''),(5007,1268,'_contact_text','field_56ab78a159605'),(5008,1268,'contact_number',''),(5009,1268,'_contact_number','field_56ab78cc59606'),(5010,1268,'_transient_timeout_tribe_attendees','1485850267'),(5011,1268,'_transient_tribe_attendees','a:0:{}'),(5012,1268,'_thumbnail_id','28733'),(5013,1268,'_wp_page_template','default'),(5014,1268,'_wpb_vc_js_status','false'),(5015,1268,'_wc_memberships_use_custom_post_content_restricted_message','no'),(5016,1268,'_dt_sidebar_position','right'),(5017,1268,'_dt_sidebar_widgetarea_id','sidebar_1'),(5018,1268,'_dt_sidebar_hide_on_mobile','0'),(5019,1268,'_dt_footer_show','1'),(5020,1268,'_dt_footer_widgetarea_id','sidebar_2'),(5021,1268,'_dt_footer_hide_on_mobile','0'),(5022,1268,'_dt_header_title','enabled'),(5023,1268,'_dt_header_background','normal'),(5024,1268,'_dt_header_background_below_slideshow','disabled'),(5025,1268,'_dt_header_transparent_bg_color_scheme','light'),(5026,1268,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(5027,1268,'_dt_header_transparent_top_bar_bg_opacity','25'),(5028,1268,'_dt_header_transparent_bg_color','#000000'),(5029,1268,'_dt_header_transparent_bg_opacity','50'),(5030,1268,'_dt_header_disabled_background','normal'),(5031,1268,'_dt_header_disabled_transparent_bg_color_scheme','light'),(5032,1268,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(5033,1268,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(5034,1268,'_dt_header_disabled_transparent_bg_color','#000000'),(5035,1268,'_dt_header_disabled_transparent_bg_opacity','50'),(5036,1268,'_dt_page_overrides_top_margin',''),(5037,1268,'_dt_page_overrides_right_margin',''),(5038,1268,'_dt_page_overrides_bottom_margin',''),(5039,1268,'_dt_page_overrides_left_margin',''),(5040,1268,'_dt_mobile_page_padding_top',''),(5041,1268,'_dt_mobile_page_padding_right',''),(5042,1268,'_dt_mobile_page_padding_bottom',''),(5043,1268,'_dt_mobile_page_padding_left',''),(5044,1268,'_dt_post_options_back_button',''),(5045,1268,'_dt_post_options_hide_thumbnail','0'),(5046,1268,'_dt_post_options_related_mode','same'),(5047,1268,'_dt_post_options_preview','normal'),(5048,1268,'_dt_microsite_primary_menu',''),(5049,1268,'_dt_microsite_split_left_menu',''),(5050,1268,'_dt_microsite_split_right_menu',''),(5051,1268,'_dt_microsite_mobile_menu',''),(5052,1274,'_wc_memberships_force_public','no'),(5053,1274,'_edit_last','3'),(5054,1274,'_image1','1275'),(5055,1274,'contact_text',''),(5056,1274,'_contact_text','field_56ab78a159605'),(5057,1274,'contact_number',''),(5058,1274,'_contact_number','field_56ab78cc59606'),(5059,1274,'_transient_timeout_tribe_attendees','1485850267'),(5060,1274,'_transient_tribe_attendees','a:0:{}'),(5061,1274,'_thumbnail_id','35837'),(5062,1274,'_wp_page_template','default'),(5063,1274,'_wpb_vc_js_status','false'),(5064,1274,'_wc_memberships_use_custom_post_content_restricted_message','no'),(5065,1274,'_dt_sidebar_position','right'),(5066,1274,'_dt_sidebar_widgetarea_id','sidebar_1'),(5067,1274,'_dt_sidebar_hide_on_mobile','0'),(5068,1274,'_dt_footer_show','1'),(5069,1274,'_dt_footer_widgetarea_id','sidebar_2'),(5070,1274,'_dt_footer_hide_on_mobile','0'),(5071,1274,'_dt_header_title','enabled'),(5072,1274,'_dt_header_background','normal'),(5073,1274,'_dt_header_background_below_slideshow','disabled'),(5074,1274,'_dt_header_transparent_bg_color_scheme','light'),(5075,1274,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(5076,1274,'_dt_header_transparent_top_bar_bg_opacity','25'),(5077,1274,'_dt_header_transparent_bg_color','#000000'),(5078,1274,'_dt_header_transparent_bg_opacity','50'),(5079,1274,'_dt_header_disabled_background','normal'),(5080,1274,'_dt_header_disabled_transparent_bg_color_scheme','light'),(5081,1274,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(5082,1274,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(5083,1274,'_dt_header_disabled_transparent_bg_color','#000000'),(5084,1274,'_dt_header_disabled_transparent_bg_opacity','50'),(5085,1274,'_dt_page_overrides_top_margin',''),(5086,1274,'_dt_page_overrides_right_margin',''),(5087,1274,'_dt_page_overrides_bottom_margin',''),(5088,1274,'_dt_page_overrides_left_margin',''),(5089,1274,'_dt_mobile_page_padding_top',''),(5090,1274,'_dt_mobile_page_padding_right',''),(5091,1274,'_dt_mobile_page_padding_bottom',''),(5092,1274,'_dt_mobile_page_padding_left',''),(5093,1274,'_dt_post_options_back_button',''),(5094,1274,'_dt_post_options_hide_thumbnail','0'),(5095,1274,'_dt_post_options_related_mode','same'),(5096,1274,'_dt_post_options_preview','normal'),(5097,1274,'_dt_microsite_primary_menu',''),(5098,1274,'_dt_microsite_split_left_menu',''),(5099,1274,'_dt_microsite_split_right_menu',''),(5100,1274,'_dt_microsite_mobile_menu',''),(5101,1278,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5102,1278,'_edit_last','3'),(5103,1278,'_image1','1279'),(5104,1278,'contact_text',''),(5105,1278,'_contact_text','field_56ab78a159605'),(5106,1278,'contact_number',''),(5107,1278,'_contact_number','field_56ab78cc59606'),(5108,1278,'_transient_timeout_tribe_attendees','1485850267'),(5109,1278,'_transient_tribe_attendees','a:0:{}'),(5110,1311,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5111,1311,'_edit_last','3'),(5112,1311,'_image1','1312'),(5113,1311,'contact_text',''),(5114,1311,'_contact_text','field_56ab78a159605'),(5115,1311,'contact_number',''),(5116,1311,'_contact_number','field_56ab78cc59606'),(5117,1311,'_transient_timeout_tribe_attendees','1488051875'),(5118,1311,'_transient_tribe_attendees','a:0:{}'),(5119,1315,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5120,1315,'_edit_last','3'),(5121,1315,'_image1','1316'),(5122,1315,'contact_text',''),(5123,1315,'_contact_text','field_56ab78a159605'),(5124,1315,'contact_number',''),(5125,1315,'_contact_number','field_56ab78cc59606'),(5126,1315,'_transient_timeout_tribe_attendees','1488051875'),(5127,1315,'_transient_tribe_attendees','a:0:{}'),(5128,1319,'_wc_memberships_force_public','no'),(5129,1319,'_edit_last','3'),(5130,1319,'_image1','1320'),(5131,1319,'contact_text',''),(5132,1319,'_contact_text','field_56ab78a159605'),(5133,1319,'contact_number',''),(5134,1319,'_contact_number','field_56ab78cc59606'),(5135,1319,'_transient_timeout_tribe_attendees','1488051875'),(5136,1319,'_transient_tribe_attendees','a:0:{}'),(5137,1319,'_thumbnail_id','36690'),(5138,1319,'_wp_page_template','default'),(5139,1319,'_wpb_vc_js_status','false'),(5140,1319,'_wc_memberships_use_custom_post_content_restricted_message','no'),(5141,1319,'_dt_sidebar_position','right'),(5142,1319,'_dt_sidebar_widgetarea_id','sidebar_1'),(5143,1319,'_dt_sidebar_hide_on_mobile','0'),(5144,1319,'_dt_footer_show','1'),(5145,1319,'_dt_footer_widgetarea_id','sidebar_2'),(5146,1319,'_dt_footer_hide_on_mobile','0'),(5147,1319,'_dt_header_title','enabled'),(5148,1319,'_dt_header_background','normal'),(5149,1319,'_dt_header_background_below_slideshow','disabled'),(5150,1319,'_dt_header_transparent_bg_color_scheme','light'),(5151,1319,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(5152,1319,'_dt_header_transparent_top_bar_bg_opacity','25'),(5153,1319,'_dt_header_transparent_bg_color','#000000'),(5154,1319,'_dt_header_transparent_bg_opacity','50'),(5155,1319,'_dt_header_disabled_background','normal'),(5156,1319,'_dt_header_disabled_transparent_bg_color_scheme','light'),(5157,1319,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(5158,1319,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(5159,1319,'_dt_header_disabled_transparent_bg_color','#000000'),(5160,1319,'_dt_header_disabled_transparent_bg_opacity','50'),(5161,1319,'_dt_page_overrides_top_margin',''),(5162,1319,'_dt_page_overrides_right_margin',''),(5163,1319,'_dt_page_overrides_bottom_margin',''),(5164,1319,'_dt_page_overrides_left_margin',''),(5165,1319,'_dt_mobile_page_padding_top',''),(5166,1319,'_dt_mobile_page_padding_right',''),(5167,1319,'_dt_mobile_page_padding_bottom',''),(5168,1319,'_dt_mobile_page_padding_left',''),(5169,1319,'_dt_post_options_back_button',''),(5170,1319,'_dt_post_options_hide_thumbnail','0'),(5171,1319,'_dt_post_options_related_mode','same'),(5172,1319,'_dt_post_options_preview','normal'),(5173,1319,'_dt_microsite_primary_menu',''),(5174,1319,'_dt_microsite_split_left_menu',''),(5175,1319,'_dt_microsite_split_right_menu',''),(5176,1319,'_dt_microsite_mobile_menu',''),(5177,1325,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5178,1325,'_edit_last','3'),(5179,1325,'_image1','1326'),(5180,1325,'contact_text',''),(5181,1325,'_contact_text','field_56ab78a159605'),(5182,1325,'contact_number',''),(5183,1325,'_contact_number','field_56ab78cc59606'),(5184,1325,'_transient_timeout_tribe_attendees','1488051875'),(5185,1325,'_transient_tribe_attendees','a:0:{}'),(5186,1333,'_wc_memberships_force_public','no'),(5187,1333,'_edit_last','3'),(5188,1333,'_image1','1334'),(5189,1333,'contact_text',''),(5190,1333,'_contact_text','field_56ab78a159605'),(5191,1333,'contact_number',''),(5192,1333,'_contact_number','field_56ab78cc59606'),(5193,1333,'_transient_timeout_tribe_attendees','1488051875'),(5194,1333,'_transient_tribe_attendees','a:0:{}'),(5195,1333,'_thumbnail_id','34919'),(5196,1333,'_wp_page_template','default'),(5197,1333,'_dt_microsite_split_left_menu',''),(5198,1333,'_dt_microsite_primary_menu',''),(5199,1333,'_wpb_vc_js_status','false'),(5200,1333,'_wc_memberships_use_custom_post_content_restricted_message','no'),(5201,1333,'_dt_sidebar_position','right'),(5202,1333,'_dt_sidebar_widgetarea_id','sidebar_1'),(5203,1333,'_dt_sidebar_hide_on_mobile','0'),(5204,1333,'_dt_footer_show','1'),(5205,1333,'_dt_footer_widgetarea_id','sidebar_2'),(5206,1333,'_dt_footer_hide_on_mobile','0'),(5207,1333,'_dt_header_title','enabled'),(5208,1333,'_dt_header_background','normal'),(5209,1333,'_dt_header_background_below_slideshow','disabled'),(5210,1333,'_dt_header_transparent_bg_color_scheme','light'),(5211,1333,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(5212,1333,'_dt_header_transparent_top_bar_bg_opacity','25'),(5213,1333,'_dt_header_transparent_bg_color','#000000'),(5214,1333,'_dt_header_transparent_bg_opacity','50'),(5215,1333,'_dt_header_disabled_background','normal'),(5216,1333,'_dt_header_disabled_transparent_bg_color_scheme','light'),(5217,1333,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(5218,1333,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(5219,1333,'_dt_header_disabled_transparent_bg_color','#000000'),(5220,1333,'_dt_header_disabled_transparent_bg_opacity','50'),(5221,1333,'_dt_page_overrides_top_margin',''),(5222,1333,'_dt_page_overrides_right_margin',''),(5223,1333,'_dt_page_overrides_bottom_margin',''),(5224,1333,'_dt_page_overrides_left_margin',''),(5225,1333,'_dt_mobile_page_padding_top',''),(5226,1333,'_dt_mobile_page_padding_right',''),(5227,1333,'_dt_mobile_page_padding_bottom',''),(5228,1333,'_dt_mobile_page_padding_left',''),(5229,1333,'_dt_post_options_back_button',''),(5230,1333,'_dt_post_options_hide_thumbnail','0'),(5231,1333,'_dt_post_options_related_mode','same'),(5232,1333,'_dt_post_options_preview','normal'),(5233,1333,'_dt_microsite_split_right_menu',''),(5234,1333,'_dt_microsite_mobile_menu',''),(5235,1333,'iawp_total_views','73'),(5236,1337,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5237,1337,'_edit_last','3'),(5238,1337,'_image1','1339'),(5239,1337,'contact_text',''),(5240,1337,'_contact_text','field_56ab78a159605'),(5241,1337,'contact_number',''),(5242,1337,'_contact_number','field_56ab78cc59606'),(5243,1337,'_transient_timeout_tribe_attendees','1488051875'),(5244,1337,'_transient_tribe_attendees','a:0:{}'),(5245,1342,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5246,1342,'_edit_last','3'),(5247,1342,'_image1','1343'),(5248,1342,'contact_text',''),(5249,1342,'_contact_text','field_56ab78a159605'),(5250,1342,'contact_number',''),(5251,1342,'_contact_number','field_56ab78cc59606'),(5252,1342,'_transient_timeout_tribe_attendees','1488051875'),(5253,1342,'_transient_tribe_attendees','a:0:{}'),(5254,1346,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5255,1346,'_edit_last','3'),(5256,1346,'_image1','1347'),(5257,1346,'contact_text',''),(5258,1346,'_contact_text','field_56ab78a159605'),(5259,1346,'contact_number',''),(5260,1346,'_contact_number','field_56ab78cc59606'),(5261,1346,'_transient_timeout_tribe_attendees','1488051875'),(5262,1346,'_transient_tribe_attendees','a:0:{}'),(5263,1350,'_wpb_post_custom_layout','default'),(5264,1350,'_edit_last','3'),(5265,1350,'_image1','1351'),(5266,1350,'contact_text',''),(5267,1350,'_contact_text','field_56ab78a159605'),(5268,1350,'contact_number',''),(5269,1350,'_contact_number','field_56ab78cc59606'),(5270,1350,'_transient_timeout_tribe_attendees','1488051875'),(5271,1350,'_transient_tribe_attendees','a:0:{}'),(5272,1350,'_wp_page_template','default'),(5273,1350,'_wc_memberships_force_public','no'),(5274,1350,'_wc_memberships_use_custom_post_content_restricted_message','no'),(5275,1350,'_wpb_vc_js_status','false'),(5276,1350,'_dt_sidebar_position','right'),(5277,1350,'_dt_sidebar_widgetarea_id','sidebar_1'),(5278,1350,'_dt_sidebar_hide_on_mobile','0'),(5279,1350,'_dt_footer_show','1'),(5280,1350,'_dt_footer_widgetarea_id','sidebar_2'),(5281,1350,'_dt_footer_hide_on_mobile','0'),(5282,1350,'_dt_header_title','enabled'),(5283,1350,'_dt_header_background','normal'),(5284,1350,'_dt_header_background_below_slideshow','disabled'),(5285,1350,'_dt_header_transparent_bg_color_scheme','light'),(5286,1350,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(5287,1350,'_dt_header_transparent_top_bar_bg_opacity','25'),(5288,1350,'_dt_header_transparent_bg_color','#000000'),(5289,1350,'_dt_header_transparent_bg_opacity','50'),(5290,1350,'_dt_header_disabled_background','normal'),(5291,1350,'_dt_header_disabled_transparent_bg_color_scheme','light'),(5292,1350,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(5293,1350,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(5294,1350,'_dt_header_disabled_transparent_bg_color','#000000'),(5295,1350,'_dt_header_disabled_transparent_bg_opacity','50'),(5296,1350,'_dt_page_overrides_top_margin',''),(5297,1350,'_dt_page_overrides_right_margin',''),(5298,1350,'_dt_page_overrides_bottom_margin',''),(5299,1350,'_dt_page_overrides_left_margin',''),(5300,1350,'_dt_mobile_page_padding_top',''),(5301,1350,'_dt_mobile_page_padding_right',''),(5302,1350,'_dt_mobile_page_padding_bottom',''),(5303,1350,'_dt_mobile_page_padding_left',''),(5304,1350,'_dt_post_options_back_button',''),(5305,1350,'_dt_post_options_hide_thumbnail','0'),(5306,1350,'_dt_post_options_related_mode','same'),(5307,1350,'_dt_post_options_preview','normal'),(5308,1350,'_dt_microsite_primary_menu',''),(5309,1350,'_dt_microsite_split_left_menu',''),(5310,1350,'_dt_microsite_split_right_menu',''),(5311,1350,'_dt_microsite_mobile_menu',''),(5312,1350,'iawp_total_views','9'),(5313,1353,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5314,1353,'_edit_last','3'),(5315,1353,'_image1','1354'),(5316,1353,'contact_text',''),(5317,1353,'_contact_text','field_56ab78a159605'),(5318,1353,'contact_number',''),(5319,1353,'_contact_number','field_56ab78cc59606'),(5320,1353,'_transient_timeout_tribe_attendees','1488051875'),(5321,1353,'_transient_tribe_attendees','a:0:{}'),(5322,1358,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5323,1358,'_edit_last','3'),(5324,1358,'_image1','1359'),(5325,1358,'contact_text',''),(5326,1358,'_contact_text','field_56ab78a159605'),(5327,1358,'contact_number',''),(5328,1358,'_contact_number','field_56ab78cc59606'),(5329,1358,'_transient_timeout_tribe_attendees','1488051875'),(5330,1358,'_transient_tribe_attendees','a:0:{}'),(5331,1361,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5332,1361,'_edit_last','3'),(5333,1361,'_image1','1362'),(5334,1361,'contact_text',''),(5335,1361,'_contact_text','field_56ab78a159605'),(5336,1361,'contact_number',''),(5337,1361,'_contact_number','field_56ab78cc59606'),(5338,1361,'_transient_timeout_tribe_attendees','1488051875'),(5339,1361,'_transient_tribe_attendees','a:0:{}'),(5340,1365,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5341,1365,'_edit_last','3'),(5342,1365,'_image1','1366'),(5343,1365,'contact_text',''),(5344,1365,'_contact_text','field_56ab78a159605'),(5345,1365,'contact_number',''),(5346,1365,'_contact_number','field_56ab78cc59606'),(5347,1365,'_transient_timeout_tribe_attendees','1488051875'),(5348,1365,'_transient_tribe_attendees','a:0:{}'),(5349,1378,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5350,1378,'_edit_last','3'),(5351,1378,'_image1','1379'),(5352,1378,'contact_text',''),(5353,1378,'_contact_text','field_56ab78a159605'),(5354,1378,'contact_number',''),(5355,1378,'_contact_number','field_56ab78cc59606'),(5356,1378,'_transient_timeout_tribe_attendees','1488051875'),(5357,1378,'_transient_tribe_attendees','a:0:{}'),(5358,1397,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5359,1397,'_edit_last','3'),(5360,1397,'_image1','1398'),(5361,1397,'contact_text',''),(5362,1397,'_contact_text','field_56ab78a159605'),(5363,1397,'contact_number',''),(5364,1397,'_contact_number','field_56ab78cc59606'),(5365,1397,'_transient_timeout_tribe_attendees','1488051875'),(5366,1397,'_transient_tribe_attendees','a:0:{}'),(5367,1402,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5368,1402,'_edit_last','3'),(5369,1402,'_image1','1403'),(5370,1402,'contact_text',''),(5371,1402,'_contact_text','field_56ab78a159605'),(5372,1402,'contact_number',''),(5373,1402,'_contact_number','field_56ab78cc59606'),(5374,1402,'_transient_timeout_tribe_attendees','1488051875'),(5375,1402,'_transient_tribe_attendees','a:0:{}'),(5376,1402,'iawp_total_views','45'),(5377,1405,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5378,1405,'_edit_last','3'),(5379,1405,'_image1','1406'),(5380,1405,'contact_text',''),(5381,1405,'_contact_text','field_56ab78a159605'),(5382,1405,'contact_number',''),(5383,1405,'_contact_number','field_56ab78cc59606'),(5384,1405,'_transient_timeout_tribe_attendees','1488051875'),(5385,1405,'_transient_tribe_attendees','a:0:{}'),(5386,1409,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5387,1409,'_edit_last','3'),(5388,1409,'_image1','1410'),(5389,1409,'contact_text',''),(5390,1409,'_contact_text','field_56ab78a159605'),(5391,1409,'contact_number',''),(5392,1409,'_contact_number','field_56ab78cc59606'),(5393,1409,'_transient_timeout_tribe_attendees','1488051875'),(5394,1409,'_transient_tribe_attendees','a:0:{}'),(5395,1412,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5396,1412,'_edit_last','3'),(5397,1412,'_image1','1413'),(5398,1412,'contact_text',''),(5399,1412,'_contact_text','field_56ab78a159605'),(5400,1412,'contact_number',''),(5401,1412,'_contact_number','field_56ab78cc59606'),(5402,1412,'_transient_timeout_tribe_attendees','1488051973'),(5403,1412,'_transient_tribe_attendees','a:0:{}'),(5404,1415,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5405,1415,'_edit_last','3'),(5406,1415,'_image1','1416'),(5407,1415,'contact_text',''),(5408,1415,'_contact_text','field_56ab78a159605'),(5409,1415,'contact_number',''),(5410,1415,'_contact_number','field_56ab78cc59606'),(5411,1415,'_transient_timeout_tribe_attendees','1488051973'),(5412,1415,'_transient_tribe_attendees','a:0:{}'),(5413,1418,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5414,1418,'_edit_last','3'),(5415,1418,'_image1','1419'),(5416,1418,'contact_text',''),(5417,1418,'_contact_text','field_56ab78a159605'),(5418,1418,'contact_number',''),(5419,1418,'_contact_number','field_56ab78cc59606'),(5420,1418,'_transient_timeout_tribe_attendees','1488051973'),(5421,1418,'_transient_tribe_attendees','a:0:{}'),(5422,1422,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5423,1422,'_edit_last','3'),(5424,1422,'_image1','1423'),(5425,1422,'contact_text',''),(5426,1422,'_contact_text','field_56ab78a159605'),(5427,1422,'contact_number',''),(5428,1422,'_contact_number','field_56ab78cc59606'),(5429,1422,'_transient_timeout_tribe_attendees','1488051973'),(5430,1422,'_transient_tribe_attendees','a:0:{}'),(5431,1432,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5432,1432,'_image1','1433'),(5433,1432,'contact_text',''),(5434,1432,'_contact_text','field_56ab78a159605'),(5435,1432,'contact_number',''),(5436,1432,'_contact_number','field_56ab78cc59606'),(5437,1432,'slide_template','default'),(5438,1432,'_wpb_vc_js_status','false'),(5439,1432,'_dt_sidebar_position','right'),(5440,1432,'_dt_sidebar_widgetarea_id','sidebar_1'),(5441,1432,'_dt_sidebar_hide_on_mobile','0'),(5442,1432,'_dt_footer_show','1'),(5443,1432,'_dt_footer_widgetarea_id','sidebar_2'),(5444,1432,'_dt_footer_hide_on_mobile','0'),(5445,1432,'_dt_header_title','enabled'),(5446,1432,'_dt_header_background','normal'),(5447,1432,'_dt_header_background_below_slideshow','disabled'),(5448,1432,'_dt_header_transparent_bg_color','#000000'),(5449,1432,'_dt_header_transparent_bg_opacity','50'),(5450,1432,'_dt_header_transparent_bg_color_scheme','light'),(5451,1432,'_dt_slideshow_mode','porthole'),(5452,1432,'_dt_slideshow_3d_layout','fullscreen-content'),(5453,1432,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(5454,1432,'_dt_slideshow_layout','fullwidth'),(5455,1432,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(5456,1432,'_dt_slideshow_scaling','fill'),(5457,1432,'_dt_slideshow_autoplay','paused'),(5458,1432,'_dt_slideshow_autoslide_interval','5000'),(5459,1432,'_dt_slideshow_hide_captions','0'),(5460,1432,'_dt_slideshow_photo_scroller_layout','fullscreen'),(5461,1432,'_dt_slideshow_photo_scroller_bg_color','#000000'),(5462,1432,'_dt_slideshow_photo_scroller_overlay','1'),(5463,1432,'_dt_slideshow_photo_scroller_top_padding','0'),(5464,1432,'_dt_slideshow_photo_scroller_bottom_padding','0'),(5465,1432,'_dt_slideshow_photo_scroller_side_paddings','0'),(5466,1432,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(5467,1432,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(5468,1432,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(5469,1432,'_dt_slideshow_photo_scroller_autoplay','play'),(5470,1432,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(5471,1432,'_dt_slideshow_photo_scroller_ls_max_width','100'),(5472,1432,'_dt_slideshow_photo_scroller_ls_min_width','0'),(5473,1432,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(5474,1432,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(5475,1432,'_dt_slideshow_photo_scroller_pt_max_width','100'),(5476,1432,'_dt_slideshow_photo_scroller_pt_min_width','0'),(5477,1432,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(5478,1432,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(5479,1432,'_dt_slideshow_revolution_slider','none'),(5480,1432,'_dt_slideshow_layer_slider','none'),(5481,1432,'_dt_slideshow_layer_show_bg_and_paddings','0'),(5482,1432,'_dt_fancy_header_title_aligment','center'),(5483,1432,'_dt_fancy_header_breadcrumbs','enabled'),(5484,1432,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(5485,1432,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(5486,1432,'_dt_fancy_header_title_mode','custom'),(5487,1432,'_dt_fancy_header_title_color_mode','color'),(5488,1432,'_dt_fancy_header_title_color','#ffffff'),(5489,1432,'_dt_fancy_header_subtitle_color_mode','color'),(5490,1432,'_dt_fancy_header_subtitle_color','#ffffff'),(5491,1432,'_dt_fancy_header_bg_color','#222222'),(5492,1432,'_dt_fancy_header_bg_repeat','no-repeat'),(5493,1432,'_dt_fancy_header_bg_position_x','center'),(5494,1432,'_dt_fancy_header_bg_position_y','center'),(5495,1432,'_dt_fancy_header_bg_fullscreen','1'),(5496,1432,'_dt_fancy_header_height','300'),(5497,1432,'_dt_post_options_back_button',''),(5498,1432,'_dt_post_options_hide_thumbnail','0'),(5499,1432,'_dt_post_options_related_mode','same'),(5500,1432,'_dt_post_options_preview','normal'),(5501,1432,'_thumbnail_id','341'),(5502,1432,'_transient_timeout_tribe_attendees','1488051973'),(5503,1432,'_transient_tribe_attendees','a:0:{}'),(5504,1432,'_image1','1433'),(5505,1432,'contact_text',''),(5506,1432,'_contact_text','field_56ab78a159605'),(5507,1432,'contact_number',''),(5508,1432,'_contact_number','field_56ab78cc59606'),(5509,1432,'_dt_fancy_header_title_font_size','44'),(5510,1432,'_dt_fancy_header_title_line_height','50'),(5511,1432,'_dt_fancy_header_subtitle_font_size','30'),(5512,1432,'_dt_fancy_header_subtitle_line_height','36'),(5513,1442,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5514,1442,'_edit_last','3'),(5515,1442,'_image1','1426'),(5516,1442,'contact_text',''),(5517,1442,'_contact_text','field_56ab78a159605'),(5518,1442,'contact_number',''),(5519,1442,'_contact_number','field_56ab78cc59606'),(5520,1442,'_transient_timeout_tribe_attendees','1488051973'),(5521,1442,'_transient_tribe_attendees','a:0:{}'),(5522,1443,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5523,1443,'_edit_last','3'),(5524,1443,'_image1','1429'),(5525,1443,'contact_text',''),(5526,1443,'_contact_text','field_56ab78a159605'),(5527,1443,'contact_number',''),(5528,1443,'_contact_number','field_56ab78cc59606'),(5529,1443,'_transient_timeout_tribe_attendees','1488051973'),(5530,1443,'_transient_tribe_attendees','a:0:{}'),(5531,1443,'_image1','1429'),(5532,1443,'contact_text',''),(5533,1443,'_contact_text','field_56ab78a159605'),(5534,1443,'contact_number',''),(5535,1443,'_contact_number','field_56ab78cc59606'),(5536,1519,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5537,1519,'_image1','1533'),(5538,1519,'contact_text',''),(5539,1519,'_contact_text','field_56ab78a159605'),(5540,1519,'contact_number',''),(5541,1519,'_contact_number','field_56ab78cc59606'),(5542,1519,'_thumbnail_id','2305'),(5543,1519,'slide_template','default'),(5544,1519,'_wpb_vc_js_status','false'),(5545,1519,'_dt_sidebar_position','right'),(5546,1519,'_dt_sidebar_widgetarea_id','sidebar_1'),(5547,1519,'_dt_sidebar_hide_on_mobile','0'),(5548,1519,'_dt_footer_show','1'),(5549,1519,'_dt_footer_widgetarea_id','sidebar_2'),(5550,1519,'_dt_footer_hide_on_mobile','0'),(5551,1519,'_dt_header_title','enabled'),(5552,1519,'_dt_header_background','normal'),(5553,1519,'_dt_header_background_below_slideshow','disabled'),(5554,1519,'_dt_header_transparent_bg_color','#000000'),(5555,1519,'_dt_header_transparent_bg_opacity','50'),(5556,1519,'_dt_header_transparent_bg_color_scheme','light'),(5557,1519,'_dt_slideshow_mode','porthole'),(5558,1519,'_dt_slideshow_3d_layout','fullscreen-content'),(5559,1519,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(5560,1519,'_dt_slideshow_layout','fullwidth'),(5561,1519,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(5562,1519,'_dt_slideshow_scaling','fill'),(5563,1519,'_dt_slideshow_autoplay','paused'),(5564,1519,'_dt_slideshow_autoslide_interval','5000'),(5565,1519,'_dt_slideshow_hide_captions','0'),(5566,1519,'_dt_slideshow_photo_scroller_layout','fullscreen'),(5567,1519,'_dt_slideshow_photo_scroller_bg_color','#000000'),(5568,1519,'_dt_slideshow_photo_scroller_overlay','1'),(5569,1519,'_dt_slideshow_photo_scroller_top_padding','0'),(5570,1519,'_dt_slideshow_photo_scroller_bottom_padding','0'),(5571,1519,'_dt_slideshow_photo_scroller_side_paddings','0'),(5572,1519,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(5573,1519,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(5574,1519,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(5575,1519,'_dt_slideshow_photo_scroller_autoplay','play'),(5576,1519,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(5577,1519,'_dt_slideshow_photo_scroller_ls_max_width','100'),(5578,1519,'_dt_slideshow_photo_scroller_ls_min_width','0'),(5579,1519,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(5580,1519,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(5581,1519,'_dt_slideshow_photo_scroller_pt_max_width','100'),(5582,1519,'_dt_slideshow_photo_scroller_pt_min_width','0'),(5583,1519,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(5584,1519,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(5585,1519,'_dt_slideshow_revolution_slider','none'),(5586,1519,'_dt_slideshow_layer_slider','none'),(5587,1519,'_dt_slideshow_layer_show_bg_and_paddings','0'),(5588,1519,'_dt_fancy_header_title_aligment','center'),(5589,1519,'_dt_fancy_header_breadcrumbs','enabled'),(5590,1519,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(5591,1519,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(5592,1519,'_dt_fancy_header_title_mode','custom'),(5593,1519,'_dt_fancy_header_title_color_mode','color'),(5594,1519,'_dt_fancy_header_title_color','#ffffff'),(5595,1519,'_dt_fancy_header_subtitle_color_mode','color'),(5596,1519,'_dt_fancy_header_subtitle_color','#ffffff'),(5597,1519,'_dt_fancy_header_bg_color','#222222'),(5598,1519,'_dt_fancy_header_bg_repeat','no-repeat'),(5599,1519,'_dt_fancy_header_bg_position_x','center'),(5600,1519,'_dt_fancy_header_bg_position_y','center'),(5601,1519,'_dt_fancy_header_bg_fullscreen','1'),(5602,1519,'_dt_fancy_header_height','300'),(5603,1519,'_dt_post_options_back_button',''),(5604,1519,'_dt_post_options_hide_thumbnail','0'),(5605,1519,'_dt_post_options_related_mode','same'),(5606,1519,'_dt_post_options_preview','normal'),(5607,1519,'_dt_fancy_header_title_font_size','44'),(5608,1519,'_dt_fancy_header_title_line_height','50'),(5609,1519,'_dt_fancy_header_subtitle_font_size','30'),(5610,1519,'_dt_fancy_header_subtitle_line_height','36'),(5611,1519,'iawp_total_views','20'),(5612,1534,'_wc_memberships_force_public','no'),(5613,1534,'_edit_last','3'),(5614,1534,'_image1','1556'),(5615,1534,'contact_text',''),(5616,1534,'_contact_text','field_56ab78a159605'),(5617,1534,'contact_number',''),(5618,1534,'_contact_number','field_56ab78cc59606'),(5619,1534,'_thumbnail_id','2303'),(5620,1534,'_wc_memberships_use_custom_post_content_restricted_message','no'),(5621,1534,'_wpb_vc_js_status','false'),(5622,1534,'_dt_sidebar_position','right'),(5623,1534,'_dt_sidebar_widgetarea_id','sidebar_1'),(5624,1534,'_dt_sidebar_hide_on_mobile','0'),(5625,1534,'_dt_footer_show','1'),(5626,1534,'_dt_footer_widgetarea_id','sidebar_2'),(5627,1534,'_dt_footer_hide_on_mobile','0'),(5628,1534,'_dt_header_title','enabled'),(5629,1534,'_dt_header_background','normal'),(5630,1534,'_dt_header_background_below_slideshow','disabled'),(5631,1534,'_dt_header_transparent_bg_color','#000000'),(5632,1534,'_dt_header_transparent_bg_opacity','50'),(5633,1534,'_dt_header_transparent_bg_color_scheme','light'),(5634,1534,'_dt_slideshow_3d_layout','fullscreen-content'),(5635,1534,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(5636,1534,'_dt_microsite_mobile_menu',''),(5637,1534,'_dt_microsite_split_right_menu',''),(5638,1534,'_dt_microsite_primary_menu',''),(5639,1534,'_dt_microsite_split_left_menu',''),(5640,1534,'_dt_post_options_back_button',''),(5641,1534,'_dt_post_options_hide_thumbnail','0'),(5642,1534,'_dt_post_options_related_mode','same'),(5643,1534,'_dt_post_options_preview','normal'),(5644,1534,'_wp_page_template','default'),(5645,1534,'_dt_header_transparent_top_bar_bg_color',''),(5646,1534,'_dt_header_transparent_top_bar_bg_opacity','0'),(5647,1534,'_dt_header_disabled_background','normal'),(5648,1534,'_dt_header_disabled_transparent_bg_color_scheme','light'),(5649,1534,'_dt_header_disabled_transparent_top_bar_bg_color',''),(5650,1534,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),(5651,1534,'_dt_header_disabled_transparent_bg_color',''),(5652,1534,'_dt_header_disabled_transparent_bg_opacity','0'),(5653,1534,'_dt_page_overrides_top_margin',''),(5654,1534,'_dt_page_overrides_right_margin',''),(5655,1534,'_dt_page_overrides_bottom_margin',''),(5656,1534,'_dt_page_overrides_left_margin',''),(5657,1534,'_dt_mobile_page_padding_top',''),(5658,1534,'_dt_mobile_page_padding_right',''),(5659,1534,'_dt_mobile_page_padding_bottom',''),(5660,1534,'_dt_mobile_page_padding_left',''),(5661,1534,'iawp_total_views','11'),(5662,1592,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5663,1592,'_image1','1595'),(5664,1592,'contact_text',''),(5665,1592,'_contact_text','field_56ab78a159605'),(5666,1592,'contact_number',''),(5667,1592,'_contact_number','field_56ab78cc59606'),(5668,1592,'_thumbnail_id','2299'),(5669,1592,'slide_template','default'),(5670,1592,'_wpb_vc_js_status','false'),(5671,1592,'_dt_sidebar_position','right'),(5672,1592,'_dt_sidebar_widgetarea_id','sidebar_1'),(5673,1592,'_dt_sidebar_hide_on_mobile','0'),(5674,1592,'_dt_footer_show','1'),(5675,1592,'_dt_footer_widgetarea_id','sidebar_2'),(5676,1592,'_dt_footer_hide_on_mobile','0'),(5677,1592,'_dt_header_title','enabled'),(5678,1592,'_dt_header_background','normal'),(5679,1592,'_dt_header_background_below_slideshow','disabled'),(5680,1592,'_dt_header_transparent_bg_color','#000000'),(5681,1592,'_dt_header_transparent_bg_opacity','50'),(5682,1592,'_dt_header_transparent_bg_color_scheme','light'),(5683,1592,'_dt_slideshow_mode','porthole'),(5684,1592,'_dt_slideshow_3d_layout','fullscreen-content'),(5685,1592,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(5686,1592,'_dt_slideshow_layout','fullwidth'),(5687,1592,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(5688,1592,'_dt_slideshow_scaling','fill'),(5689,1592,'_dt_slideshow_autoplay','paused'),(5690,1592,'_dt_slideshow_autoslide_interval','5000'),(5691,1592,'_dt_slideshow_hide_captions','0'),(5692,1592,'_dt_slideshow_photo_scroller_layout','fullscreen'),(5693,1592,'_dt_slideshow_photo_scroller_bg_color','#000000'),(5694,1592,'_dt_slideshow_photo_scroller_overlay','1'),(5695,1592,'_dt_slideshow_photo_scroller_top_padding','0'),(5696,1592,'_dt_slideshow_photo_scroller_bottom_padding','0'),(5697,1592,'_dt_slideshow_photo_scroller_side_paddings','0'),(5698,1592,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(5699,1592,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(5700,1592,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(5701,1592,'_dt_slideshow_photo_scroller_autoplay','play'),(5702,1592,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(5703,1592,'_dt_slideshow_photo_scroller_ls_max_width','100'),(5704,1592,'_dt_slideshow_photo_scroller_ls_min_width','0'),(5705,1592,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(5706,1592,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(5707,1592,'_dt_slideshow_photo_scroller_pt_max_width','100'),(5708,1592,'_dt_slideshow_photo_scroller_pt_min_width','0'),(5709,1592,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(5710,1592,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(5711,1592,'_dt_slideshow_revolution_slider','none'),(5712,1592,'_dt_slideshow_layer_slider','none'),(5713,1592,'_dt_slideshow_layer_show_bg_and_paddings','0'),(5714,1592,'_dt_fancy_header_title_aligment','center'),(5715,1592,'_dt_fancy_header_breadcrumbs','enabled'),(5716,1592,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(5717,1592,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(5718,1592,'_dt_fancy_header_title_mode','custom'),(5719,1592,'_dt_fancy_header_title_color_mode','color'),(5720,1592,'_dt_fancy_header_title_color','#ffffff'),(5721,1592,'_dt_fancy_header_subtitle_color_mode','color'),(5722,1592,'_dt_fancy_header_subtitle_color','#ffffff'),(5723,1592,'_dt_fancy_header_bg_color','#222222'),(5724,1592,'_dt_fancy_header_bg_repeat','no-repeat'),(5725,1592,'_dt_fancy_header_bg_position_x','center'),(5726,1592,'_dt_fancy_header_bg_position_y','center'),(5727,1592,'_dt_fancy_header_bg_fullscreen','1'),(5728,1592,'_dt_fancy_header_height','300'),(5729,1592,'_dt_post_options_back_button',''),(5730,1592,'_dt_post_options_hide_thumbnail','0'),(5731,1592,'_dt_post_options_related_mode','same'),(5732,1592,'_dt_post_options_preview','normal'),(5733,1592,'_dt_fancy_header_title_font_size','44'),(5734,1592,'_dt_fancy_header_title_line_height','50'),(5735,1592,'_dt_fancy_header_subtitle_font_size','30'),(5736,1592,'_dt_fancy_header_subtitle_line_height','36'),(5737,1649,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5738,1649,'_image1','1660'),(5739,1649,'contact_text',''),(5740,1649,'_contact_text','field_56ab78a159605'),(5741,1649,'contact_number',''),(5742,1649,'_contact_number','field_56ab78cc59606'),(5743,1649,'_thumbnail_id','2295'),(5744,1649,'slide_template','default'),(5745,1649,'_wpb_vc_js_status','false'),(5746,1649,'_dt_sidebar_position','right'),(5747,1649,'_dt_sidebar_widgetarea_id','sidebar_1'),(5748,1649,'_dt_sidebar_hide_on_mobile','0'),(5749,1649,'_dt_footer_show','1'),(5750,1649,'_dt_footer_widgetarea_id','sidebar_2'),(5751,1649,'_dt_footer_hide_on_mobile','0'),(5752,1649,'_dt_header_title','enabled'),(5753,1649,'_dt_header_background','normal'),(5754,1649,'_dt_header_background_below_slideshow','disabled'),(5755,1649,'_dt_header_transparent_bg_color','#000000'),(5756,1649,'_dt_header_transparent_bg_opacity','50'),(5757,1649,'_dt_header_transparent_bg_color_scheme','light'),(5758,1649,'_dt_slideshow_mode','porthole'),(5759,1649,'_dt_slideshow_3d_layout','fullscreen-content'),(5760,1649,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(5761,1649,'_dt_slideshow_layout','fullwidth'),(5762,1649,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(5763,1649,'_dt_slideshow_scaling','fill'),(5764,1649,'_dt_slideshow_autoplay','paused'),(5765,1649,'_dt_slideshow_autoslide_interval','5000'),(5766,1649,'_dt_slideshow_hide_captions','0'),(5767,1649,'_dt_slideshow_photo_scroller_layout','fullscreen'),(5768,1649,'_dt_slideshow_photo_scroller_bg_color','#000000'),(5769,1649,'_dt_slideshow_photo_scroller_overlay','1'),(5770,1649,'_dt_slideshow_photo_scroller_top_padding','0'),(5771,1649,'_dt_slideshow_photo_scroller_bottom_padding','0'),(5772,1649,'_dt_slideshow_photo_scroller_side_paddings','0'),(5773,1649,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(5774,1649,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(5775,1649,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(5776,1649,'_dt_slideshow_photo_scroller_autoplay','play'),(5777,1649,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(5778,1649,'_dt_slideshow_photo_scroller_ls_max_width','100'),(5779,1649,'_dt_slideshow_photo_scroller_ls_min_width','0'),(5780,1649,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(5781,1649,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(5782,1649,'_dt_slideshow_photo_scroller_pt_max_width','100'),(5783,1649,'_dt_slideshow_photo_scroller_pt_min_width','0'),(5784,1649,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(5785,1649,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(5786,1649,'_dt_slideshow_revolution_slider','none'),(5787,1649,'_dt_slideshow_layer_slider','none'),(5788,1649,'_dt_slideshow_layer_show_bg_and_paddings','0'),(5789,1649,'_dt_fancy_header_title_aligment','center'),(5790,1649,'_dt_fancy_header_breadcrumbs','enabled'),(5791,1649,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(5792,1649,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(5793,1649,'_dt_fancy_header_title_mode','custom'),(5794,1649,'_dt_fancy_header_title_color_mode','color'),(5795,1649,'_dt_fancy_header_title_color','#ffffff'),(5796,1649,'_dt_fancy_header_subtitle_color_mode','color'),(5797,1649,'_dt_fancy_header_subtitle_color','#ffffff'),(5798,1649,'_dt_fancy_header_bg_color','#222222'),(5799,1649,'_dt_fancy_header_bg_repeat','no-repeat'),(5800,1649,'_dt_fancy_header_bg_position_x','center'),(5801,1649,'_dt_fancy_header_bg_position_y','center'),(5802,1649,'_dt_fancy_header_bg_fullscreen','1'),(5803,1649,'_dt_fancy_header_height','300'),(5804,1649,'_dt_post_options_back_button',''),(5805,1649,'_dt_post_options_hide_thumbnail','0'),(5806,1649,'_dt_post_options_related_mode','same'),(5807,1649,'_dt_post_options_preview','normal'),(5808,1649,'_dt_fancy_header_title_font_size','44'),(5809,1649,'_dt_fancy_header_title_line_height','50'),(5810,1649,'_dt_fancy_header_subtitle_font_size','30'),(5811,1649,'_dt_fancy_header_subtitle_line_height','36'),(5812,1666,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5813,1666,'_image1','1667'),(5814,1666,'contact_text',''),(5815,1666,'_contact_text','field_56ab78a159605'),(5816,1666,'contact_number',''),(5817,1666,'_contact_number','field_56ab78cc59606'),(5818,1666,'_thumbnail_id','2293'),(5819,1666,'slide_template','default'),(5820,1666,'_wpb_vc_js_status','false'),(5821,1666,'_dt_sidebar_position','right'),(5822,1666,'_dt_sidebar_widgetarea_id','sidebar_1'),(5823,1666,'_dt_sidebar_hide_on_mobile','0'),(5824,1666,'_dt_footer_show','1'),(5825,1666,'_dt_footer_widgetarea_id','sidebar_2'),(5826,1666,'_dt_footer_hide_on_mobile','0'),(5827,1666,'_dt_header_title','enabled'),(5828,1666,'_dt_header_background','normal'),(5829,1666,'_dt_header_background_below_slideshow','disabled'),(5830,1666,'_dt_header_transparent_bg_color','#000000'),(5831,1666,'_dt_header_transparent_bg_opacity','50'),(5832,1666,'_dt_header_transparent_bg_color_scheme','light'),(5833,1666,'_dt_slideshow_mode','porthole'),(5834,1666,'_dt_slideshow_3d_layout','fullscreen-content'),(5835,1666,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(5836,1666,'_dt_slideshow_layout','fullwidth'),(5837,1666,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(5838,1666,'_dt_slideshow_scaling','fill'),(5839,1666,'_dt_slideshow_autoplay','paused'),(5840,1666,'_dt_slideshow_autoslide_interval','5000'),(5841,1666,'_dt_slideshow_hide_captions','0'),(5842,1666,'_dt_slideshow_photo_scroller_layout','fullscreen'),(5843,1666,'_dt_slideshow_photo_scroller_bg_color','#000000'),(5844,1666,'_dt_slideshow_photo_scroller_overlay','1'),(5845,1666,'_dt_slideshow_photo_scroller_top_padding','0'),(5846,1666,'_dt_slideshow_photo_scroller_bottom_padding','0'),(5847,1666,'_dt_slideshow_photo_scroller_side_paddings','0'),(5848,1666,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(5849,1666,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(5850,1666,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(5851,1666,'_dt_slideshow_photo_scroller_autoplay','play'),(5852,1666,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(5853,1666,'_dt_slideshow_photo_scroller_ls_max_width','100'),(5854,1666,'_dt_slideshow_photo_scroller_ls_min_width','0'),(5855,1666,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(5856,1666,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(5857,1666,'_dt_slideshow_photo_scroller_pt_max_width','100'),(5858,1666,'_dt_slideshow_photo_scroller_pt_min_width','0'),(5859,1666,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(5860,1666,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(5861,1666,'_dt_slideshow_revolution_slider','none'),(5862,1666,'_dt_slideshow_layer_slider','none'),(5863,1666,'_dt_slideshow_layer_show_bg_and_paddings','0'),(5864,1666,'_dt_fancy_header_title_aligment','center'),(5865,1666,'_dt_fancy_header_breadcrumbs','enabled'),(5866,1666,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(5867,1666,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(5868,1666,'_dt_fancy_header_title_mode','custom'),(5869,1666,'_dt_fancy_header_title_color_mode','color'),(5870,1666,'_dt_fancy_header_title_color','#ffffff'),(5871,1666,'_dt_fancy_header_subtitle_color_mode','color'),(5872,1666,'_dt_fancy_header_subtitle_color','#ffffff'),(5873,1666,'_dt_fancy_header_bg_color','#222222'),(5874,1666,'_dt_fancy_header_bg_repeat','no-repeat'),(5875,1666,'_dt_fancy_header_bg_position_x','center'),(5876,1666,'_dt_fancy_header_bg_position_y','center'),(5877,1666,'_dt_fancy_header_bg_fullscreen','1'),(5878,1666,'_dt_fancy_header_height','300'),(5879,1666,'_dt_post_options_back_button',''),(5880,1666,'_dt_post_options_hide_thumbnail','0'),(5881,1666,'_dt_post_options_related_mode','same'),(5882,1666,'_dt_post_options_preview','normal'),(5883,1666,'_dt_fancy_header_title_font_size','44'),(5884,1666,'_dt_fancy_header_title_line_height','50'),(5885,1666,'_dt_fancy_header_subtitle_font_size','30'),(5886,1666,'_dt_fancy_header_subtitle_line_height','36'),(5887,1666,'iawp_total_views','7'),(5888,1698,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(5889,1698,'_image1','1721'),(5890,1698,'contact_text',''),(5891,1698,'_contact_text','field_56ab78a159605'),(5892,1698,'contact_number',''),(5893,1698,'_contact_number','field_56ab78cc59606'),(5894,1698,'_thumbnail_id','2291'),(5895,1698,'slide_template','default'),(5896,1698,'_wpb_vc_js_status','false'),(5897,1698,'_dt_sidebar_position','right'),(5898,1698,'_dt_sidebar_widgetarea_id','sidebar_1'),(5899,1698,'_dt_sidebar_hide_on_mobile','0'),(5900,1698,'_dt_footer_show','1'),(5901,1698,'_dt_footer_widgetarea_id','sidebar_2'),(5902,1698,'_dt_footer_hide_on_mobile','0'),(5903,1698,'_dt_header_title','enabled'),(5904,1698,'_dt_header_background','normal'),(5905,1698,'_dt_header_background_below_slideshow','disabled'),(5906,1698,'_dt_header_transparent_bg_color','#000000'),(5907,1698,'_dt_header_transparent_bg_opacity','50'),(5908,1698,'_dt_header_transparent_bg_color_scheme','light'),(5909,1698,'_dt_slideshow_mode','porthole'),(5910,1698,'_dt_slideshow_3d_layout','fullscreen-content'),(5911,1698,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(5912,1698,'_dt_slideshow_layout','fullwidth'),(5913,1698,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(5914,1698,'_dt_slideshow_scaling','fill'),(5915,1698,'_dt_slideshow_autoplay','paused'),(5916,1698,'_dt_slideshow_autoslide_interval','5000'),(5917,1698,'_dt_slideshow_hide_captions','0'),(5918,1698,'_dt_slideshow_photo_scroller_layout','fullscreen'),(5919,1698,'_dt_slideshow_photo_scroller_bg_color','#000000'),(5920,1698,'_dt_slideshow_photo_scroller_overlay','1'),(5921,1698,'_dt_slideshow_photo_scroller_top_padding','0'),(5922,1698,'_dt_slideshow_photo_scroller_bottom_padding','0'),(5923,1698,'_dt_slideshow_photo_scroller_side_paddings','0'),(5924,1698,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(5925,1698,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(5926,1698,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(5927,1698,'_dt_slideshow_photo_scroller_autoplay','play'),(5928,1698,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(5929,1698,'_dt_slideshow_photo_scroller_ls_max_width','100'),(5930,1698,'_dt_slideshow_photo_scroller_ls_min_width','0'),(5931,1698,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(5932,1698,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(5933,1698,'_dt_slideshow_photo_scroller_pt_max_width','100'),(5934,1698,'_dt_slideshow_photo_scroller_pt_min_width','0'),(5935,1698,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(5936,1698,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(5937,1698,'_dt_slideshow_revolution_slider','none'),(5938,1698,'_dt_slideshow_layer_slider','none'),(5939,1698,'_dt_slideshow_layer_show_bg_and_paddings','0'),(5940,1698,'_dt_fancy_header_title_aligment','center'),(5941,1698,'_dt_fancy_header_breadcrumbs','enabled'),(5942,1698,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(5943,1698,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(5944,1698,'_dt_fancy_header_title_mode','custom'),(5945,1698,'_dt_fancy_header_title_color_mode','color'),(5946,1698,'_dt_fancy_header_title_color','#ffffff'),(5947,1698,'_dt_fancy_header_subtitle_color_mode','color'),(5948,1698,'_dt_fancy_header_subtitle_color','#ffffff'),(5949,1698,'_dt_fancy_header_bg_color','#222222'),(5950,1698,'_dt_fancy_header_bg_repeat','no-repeat'),(5951,1698,'_dt_fancy_header_bg_position_x','center'),(5952,1698,'_dt_fancy_header_bg_position_y','center'),(5953,1698,'_dt_fancy_header_bg_fullscreen','1'),(5954,1698,'_dt_fancy_header_height','300'),(5955,1698,'_dt_post_options_back_button',''),(5956,1698,'_dt_post_options_hide_thumbnail','0'),(5957,1698,'_dt_post_options_related_mode','same'),(5958,1698,'_dt_post_options_preview','normal'),(5959,1698,'_dt_fancy_header_title_font_size','44'),(5960,1698,'_dt_fancy_header_title_line_height','50'),(5961,1698,'_dt_fancy_header_subtitle_font_size','30'),(5962,1698,'_dt_fancy_header_subtitle_line_height','36'),(5963,36845,'_edit_last','3'),(5964,36845,'_thumbnail_id','30721'),(5965,36845,'_wp_page_template','default'),(5966,36845,'_wpb_vc_js_status','false'),(5967,36845,'_wc_memberships_force_public','no'),(5968,36845,'_wc_memberships_use_custom_post_content_restricted_message','no'),(5969,36845,'_dt_sidebar_position','right'),(5970,36845,'_dt_sidebar_widgetarea_id','sidebar_1'),(5971,36845,'_dt_sidebar_hide_on_mobile','0'),(5972,36845,'_dt_footer_show','1'),(5973,36845,'_dt_footer_widgetarea_id','sidebar_2'),(5974,36845,'_dt_footer_hide_on_mobile','0'),(5975,36845,'_dt_header_title','enabled'),(5976,36845,'_dt_header_background','normal'),(5977,36845,'_dt_header_background_below_slideshow','disabled'),(5978,36845,'_dt_header_transparent_bg_color_scheme','light'),(5979,36845,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(5980,36845,'_dt_header_transparent_top_bar_bg_opacity','25'),(5981,36845,'_dt_header_transparent_bg_color','#000000'),(5982,36845,'_dt_header_transparent_bg_opacity','50'),(5983,36845,'_dt_header_disabled_background','normal'),(5984,36845,'_dt_header_disabled_transparent_bg_color_scheme','light'),(5985,36845,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(5986,36845,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(5987,36845,'_dt_header_disabled_transparent_bg_color','#000000'),(5988,36845,'_dt_header_disabled_transparent_bg_opacity','50'),(5989,36845,'_dt_page_overrides_top_margin',''),(5990,36845,'_dt_page_overrides_right_margin',''),(5991,36845,'_dt_page_overrides_bottom_margin',''),(5992,36845,'_dt_page_overrides_left_margin',''),(5993,36845,'_dt_mobile_page_padding_top',''),(5994,36845,'_dt_mobile_page_padding_right',''),(5995,36845,'_dt_mobile_page_padding_bottom',''),(5996,36845,'_dt_mobile_page_padding_left',''),(5997,36845,'_dt_post_options_back_button',''),(5998,36845,'_dt_post_options_hide_thumbnail','0'),(5999,36845,'_dt_post_options_related_mode','same'),(6000,36845,'_dt_post_options_preview','normal'),(6001,36845,'_dt_microsite_primary_menu',''),(6002,36845,'_dt_microsite_split_left_menu',''),(6003,36845,'_dt_microsite_split_right_menu',''),(6004,36845,'_dt_microsite_mobile_menu',''),(6005,36845,'iawp_total_views','45'),(6006,37121,'_edit_last','17'),(6007,37121,'_wp_page_template','default'),(6008,37121,'_wpb_vc_js_status','false'),(6009,37121,'_wc_memberships_force_public','no'),(6010,37121,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6011,37121,'_dt_sidebar_position','right'),(6012,37121,'_dt_sidebar_widgetarea_id','sidebar_1'),(6013,37121,'_dt_sidebar_hide_on_mobile','0'),(6014,37121,'_dt_footer_show','1'),(6015,37121,'_dt_footer_widgetarea_id','sidebar_2'),(6016,37121,'_dt_footer_hide_on_mobile','0'),(6017,37121,'_dt_header_title','enabled'),(6018,37121,'_dt_header_background','normal'),(6019,37121,'_dt_header_background_below_slideshow','disabled'),(6020,37121,'_dt_header_transparent_bg_color_scheme','light'),(6021,37121,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(6022,37121,'_dt_header_transparent_top_bar_bg_opacity','25'),(6023,37121,'_dt_header_transparent_bg_color','#000000'),(6024,37121,'_dt_header_transparent_bg_opacity','50'),(6025,37121,'_dt_header_disabled_background','normal'),(6026,37121,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6027,37121,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(6028,37121,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(6029,37121,'_dt_header_disabled_transparent_bg_color','#000000'),(6030,37121,'_dt_header_disabled_transparent_bg_opacity','50'),(6031,37121,'_dt_page_overrides_top_margin',''),(6032,37121,'_dt_page_overrides_right_margin',''),(6033,37121,'_dt_page_overrides_bottom_margin',''),(6034,37121,'_dt_page_overrides_left_margin',''),(6035,37121,'_dt_mobile_page_padding_top',''),(6036,37121,'_dt_mobile_page_padding_right',''),(6037,37121,'_dt_mobile_page_padding_bottom',''),(6038,37121,'_dt_mobile_page_padding_left',''),(6039,37121,'_dt_post_options_back_button',''),(6040,37121,'_dt_post_options_hide_thumbnail','0'),(6041,37121,'_dt_post_options_related_mode','same'),(6042,37121,'_dt_post_options_preview','normal'),(6043,37121,'_dt_microsite_primary_menu',''),(6044,37121,'_dt_microsite_split_left_menu',''),(6045,37121,'_dt_microsite_split_right_menu',''),(6046,37121,'_dt_microsite_mobile_menu',''),(6048,37121,'iawp_total_views','25'),(6049,36198,'_edit_last','2'),(6050,36198,'_wp_page_template','default'),(6051,36198,'_wpb_vc_js_status','false'),(6052,36198,'_wc_memberships_force_public','no'),(6053,36198,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6054,36198,'_dt_sidebar_position','right'),(6055,36198,'_dt_sidebar_widgetarea_id','sidebar_1'),(6056,36198,'_dt_sidebar_hide_on_mobile','0'),(6057,36198,'_dt_footer_show','1'),(6058,36198,'_dt_footer_widgetarea_id','sidebar_2'),(6059,36198,'_dt_footer_hide_on_mobile','0'),(6060,36198,'_dt_header_title','enabled'),(6061,36198,'_dt_header_background','normal'),(6062,36198,'_dt_header_background_below_slideshow','disabled'),(6063,36198,'_dt_header_transparent_bg_color_scheme','light'),(6064,36198,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(6065,36198,'_dt_header_transparent_top_bar_bg_opacity','25'),(6066,36198,'_dt_header_transparent_bg_color','#000000'),(6067,36198,'_dt_header_transparent_bg_opacity','50'),(6068,36198,'_dt_header_disabled_background','normal'),(6069,36198,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6070,36198,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(6071,36198,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(6072,36198,'_dt_header_disabled_transparent_bg_color','#000000'),(6073,36198,'_dt_header_disabled_transparent_bg_opacity','50'),(6074,36198,'_dt_page_overrides_top_margin',''),(6075,36198,'_dt_page_overrides_right_margin',''),(6076,36198,'_dt_page_overrides_bottom_margin',''),(6077,36198,'_dt_page_overrides_left_margin',''),(6078,36198,'_dt_mobile_page_padding_top',''),(6079,36198,'_dt_mobile_page_padding_right',''),(6080,36198,'_dt_mobile_page_padding_bottom',''),(6081,36198,'_dt_mobile_page_padding_left',''),(6082,36198,'_dt_post_options_back_button',''),(6083,36198,'_dt_post_options_hide_thumbnail','0'),(6084,36198,'_dt_post_options_related_mode','same'),(6085,36198,'_dt_post_options_preview','normal'),(6086,36198,'_dt_microsite_primary_menu',''),(6087,36198,'_dt_microsite_split_left_menu',''),(6088,36198,'_dt_microsite_split_right_menu',''),(6089,36198,'_dt_microsite_mobile_menu',''),(6090,36198,'_thumbnail_id','36214'),(6091,36198,'iawp_total_views','28'),(6092,36394,'_edit_last','2'),(6093,36394,'_wp_page_template','default'),(6094,36394,'_wpb_vc_js_status','false'),(6095,36394,'_wc_memberships_force_public','no'),(6096,36394,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6097,36394,'_dt_sidebar_position','right'),(6098,36394,'_dt_sidebar_widgetarea_id','sidebar_1'),(6099,36394,'_dt_sidebar_hide_on_mobile','0'),(6100,36394,'_dt_footer_show','1'),(6101,36394,'_dt_footer_widgetarea_id','sidebar_2'),(6102,36394,'_dt_footer_hide_on_mobile','0'),(6103,36394,'_dt_header_title','enabled'),(6104,36394,'_dt_header_background','normal'),(6105,36394,'_dt_header_background_below_slideshow','disabled'),(6106,36394,'_dt_header_transparent_bg_color_scheme','light'),(6107,36394,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(6108,36394,'_dt_header_transparent_top_bar_bg_opacity','25'),(6109,36394,'_dt_header_transparent_bg_color','#000000'),(6110,36394,'_dt_header_transparent_bg_opacity','50'),(6111,36394,'_dt_header_disabled_background','normal'),(6112,36394,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6113,36394,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(6114,36394,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(6115,36394,'_dt_header_disabled_transparent_bg_color','#000000'),(6116,36394,'_dt_header_disabled_transparent_bg_opacity','50'),(6117,36394,'_dt_page_overrides_top_margin',''),(6118,36394,'_dt_page_overrides_right_margin',''),(6119,36394,'_dt_page_overrides_bottom_margin',''),(6120,36394,'_dt_page_overrides_left_margin',''),(6121,36394,'_dt_mobile_page_padding_top',''),(6122,36394,'_dt_mobile_page_padding_right',''),(6123,36394,'_dt_mobile_page_padding_bottom',''),(6124,36394,'_dt_mobile_page_padding_left',''),(6125,36394,'_dt_post_options_back_button',''),(6126,36394,'_dt_post_options_hide_thumbnail','0'),(6127,36394,'_dt_post_options_related_mode','same'),(6128,36394,'_dt_post_options_preview','normal'),(6129,36394,'_dt_microsite_primary_menu',''),(6130,36394,'_dt_microsite_split_left_menu',''),(6131,36394,'_dt_microsite_split_right_menu',''),(6132,36394,'_dt_microsite_mobile_menu',''),(6133,36394,'_thumbnail_id','36390'),(6134,36414,'_edit_last','2'),(6135,36414,'_thumbnail_id','36419'),(6136,36414,'_wp_page_template','default'),(6137,36414,'_wpb_vc_js_status','false'),(6138,36414,'_wc_memberships_force_public','no'),(6139,36414,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6140,36414,'_dt_sidebar_position','right'),(6141,36414,'_dt_sidebar_widgetarea_id','sidebar_1'),(6142,36414,'_dt_sidebar_hide_on_mobile','0'),(6143,36414,'_dt_footer_show','1'),(6144,36414,'_dt_footer_widgetarea_id','sidebar_2'),(6145,36414,'_dt_footer_hide_on_mobile','0'),(6146,36414,'_dt_header_title','enabled'),(6147,36414,'_dt_header_background','normal'),(6148,36414,'_dt_header_background_below_slideshow','disabled'),(6149,36414,'_dt_header_transparent_bg_color_scheme','light'),(6150,36414,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(6151,36414,'_dt_header_transparent_top_bar_bg_opacity','25'),(6152,36414,'_dt_header_transparent_bg_color','#000000'),(6153,36414,'_dt_header_transparent_bg_opacity','50'),(6154,36414,'_dt_header_disabled_background','normal'),(6155,36414,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6156,36414,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(6157,36414,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(6158,36414,'_dt_header_disabled_transparent_bg_color','#000000'),(6159,36414,'_dt_header_disabled_transparent_bg_opacity','50'),(6160,36414,'_dt_page_overrides_top_margin',''),(6161,36414,'_dt_page_overrides_right_margin',''),(6162,36414,'_dt_page_overrides_bottom_margin',''),(6163,36414,'_dt_page_overrides_left_margin',''),(6164,36414,'_dt_mobile_page_padding_top',''),(6165,36414,'_dt_mobile_page_padding_right',''),(6166,36414,'_dt_mobile_page_padding_bottom',''),(6167,36414,'_dt_mobile_page_padding_left',''),(6168,36414,'_dt_post_options_back_button',''),(6169,36414,'_dt_post_options_hide_thumbnail','0'),(6170,36414,'_dt_post_options_related_mode','same'),(6171,36414,'_dt_post_options_preview','normal'),(6172,36414,'_dt_microsite_primary_menu',''),(6173,36414,'_dt_microsite_split_left_menu',''),(6174,36414,'_dt_microsite_split_right_menu',''),(6175,36414,'_dt_microsite_mobile_menu',''),(6176,36414,'_oembed_e14c16a99a4d54787ad69733dbe5b842','<iframe title=\"Flexed hip Ab:Abd as extended hip rotator\" width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/vMyE2_RRoBc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(6177,36414,'_oembed_time_e14c16a99a4d54787ad69733dbe5b842','1688484044'),(6178,36414,'_oembed_f08ba170b0a7a607f1e8a13a0828cee0','<iframe title=\"Calf raise with shrug\" width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/3nJgjbDli5o?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(6179,36414,'_oembed_time_f08ba170b0a7a607f1e8a13a0828cee0','1688484044'),(6180,36414,'_oembed_2d6335069ad8a33e6296577b8812d0c4','<iframe title=\"Flexed hip Ab:Abd as extended hip rotator\" width=\"654\" height=\"491\" src=\"https://www.youtube.com/embed/vMyE2_RRoBc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(6181,36414,'_oembed_time_2d6335069ad8a33e6296577b8812d0c4','1687927555'),(6182,36414,'_oembed_b128474b0f1f6fe3e698710ffba309b8','<iframe title=\"Calf raise with shrug\" width=\"654\" height=\"491\" src=\"https://www.youtube.com/embed/3nJgjbDli5o?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(6183,36414,'_oembed_time_b128474b0f1f6fe3e698710ffba309b8','1687927555'),(6184,36414,'_oembed_225a5ce68526cbd975192b9aed11dc33','<iframe title=\"Calf raise with shrug\" width=\"1068\" height=\"801\" src=\"https://www.youtube.com/embed/3nJgjbDli5o?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(6185,36414,'_oembed_time_225a5ce68526cbd975192b9aed11dc33','1688484018'),(6186,36414,'_oembed_6a8c7c47964a55f33981d7cb9e6824ec','<iframe title=\"Flexed hip Ab:Abd as extended hip rotator\" width=\"1068\" height=\"801\" src=\"https://www.youtube.com/embed/vMyE2_RRoBc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(6187,36414,'_oembed_time_6a8c7c47964a55f33981d7cb9e6824ec','1688484018'),(6188,36414,'_wp_old_slug','questioncould-using-machines-differently-hold-an-advantage'),(6189,36448,'_wp_page_template','default'),(6190,36448,'_wpb_vc_js_status','false'),(6191,36448,'_wc_memberships_force_public','no'),(6192,36448,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6193,36448,'_dt_sidebar_position','right'),(6194,36448,'_dt_sidebar_widgetarea_id','sidebar_1'),(6195,36448,'_dt_sidebar_hide_on_mobile','0'),(6196,36448,'_dt_footer_show','1'),(6197,36448,'_dt_footer_widgetarea_id','sidebar_2'),(6198,36448,'_dt_footer_hide_on_mobile','0'),(6199,36448,'_dt_header_title','enabled'),(6200,36448,'_dt_header_background','normal'),(6201,36448,'_dt_header_background_below_slideshow','disabled'),(6202,36448,'_dt_header_transparent_bg_color_scheme','light'),(6203,36448,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(6204,36448,'_dt_header_transparent_top_bar_bg_opacity','25'),(6205,36448,'_dt_header_transparent_bg_color','#000000'),(6206,36448,'_dt_header_transparent_bg_opacity','50'),(6207,36448,'_dt_header_disabled_background','normal'),(6208,36448,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6209,36448,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(6210,36448,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(6211,36448,'_dt_header_disabled_transparent_bg_color','#000000'),(6212,36448,'_dt_header_disabled_transparent_bg_opacity','50'),(6213,36448,'_dt_page_overrides_top_margin',''),(6214,36448,'_dt_page_overrides_right_margin',''),(6215,36448,'_dt_page_overrides_bottom_margin',''),(6216,36448,'_dt_page_overrides_left_margin',''),(6217,36448,'_dt_mobile_page_padding_top',''),(6218,36448,'_dt_mobile_page_padding_right',''),(6219,36448,'_dt_mobile_page_padding_bottom',''),(6220,36448,'_dt_mobile_page_padding_left',''),(6221,36448,'_dt_post_options_back_button',''),(6222,36448,'_dt_post_options_hide_thumbnail','0'),(6223,36448,'_dt_post_options_related_mode','same'),(6224,36448,'_dt_post_options_preview','normal'),(6225,36448,'_dt_microsite_primary_menu',''),(6226,36448,'_dt_microsite_split_left_menu',''),(6227,36448,'_dt_microsite_split_right_menu',''),(6228,36448,'_dt_microsite_mobile_menu',''),(6229,36448,'_oembed_e14c16a99a4d54787ad69733dbe5b842','<iframe title=\"Flexed hip Ab:Abd as extended hip rotator\" width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/vMyE2_RRoBc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(6230,36448,'_oembed_time_e14c16a99a4d54787ad69733dbe5b842','1687876627'),(6231,36448,'_oembed_f08ba170b0a7a607f1e8a13a0828cee0','<iframe title=\"Calf raise with shrug\" width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/3nJgjbDli5o?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(6232,36448,'_oembed_time_f08ba170b0a7a607f1e8a13a0828cee0','1687876654'),(6233,36448,'_oembed_2d6335069ad8a33e6296577b8812d0c4','<iframe title=\"Flexed hip Ab:Abd as extended hip rotator\" width=\"654\" height=\"491\" src=\"https://www.youtube.com/embed/vMyE2_RRoBc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(6234,36448,'_oembed_time_2d6335069ad8a33e6296577b8812d0c4','1687927555'),(6235,36448,'_oembed_b128474b0f1f6fe3e698710ffba309b8','<iframe title=\"Calf raise with shrug\" width=\"654\" height=\"491\" src=\"https://www.youtube.com/embed/3nJgjbDli5o?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(6236,36448,'_oembed_time_b128474b0f1f6fe3e698710ffba309b8','1687927555'),(6237,36448,'_dp_original','36414'),(6238,36448,'_oembed_6a8c7c47964a55f33981d7cb9e6824ec','<iframe title=\"Flexed hip Ab:Abd as extended hip rotator\" width=\"1068\" height=\"801\" src=\"https://www.youtube.com/embed/vMyE2_RRoBc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(6239,36448,'_oembed_time_6a8c7c47964a55f33981d7cb9e6824ec','1688470046'),(6240,36448,'_oembed_225a5ce68526cbd975192b9aed11dc33','<iframe title=\"Calf raise with shrug\" width=\"1068\" height=\"801\" src=\"https://www.youtube.com/embed/3nJgjbDli5o?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(6241,36448,'_oembed_time_225a5ce68526cbd975192b9aed11dc33','1688470046'),(6242,36448,'_edit_last','2'),(6243,36448,'_oembed_ebd43341541d9075e9c06870456f8eb3','<blockquote class=\"wp-embedded-content\" data-secret=\"yn8BPrFrFe\"><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\">Biomechanics Coach Course</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Biomechanics Coach Course&#8221; &#8212; Future Fit\" src=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/embed/#?secret=G8w7yldaMR#?secret=yn8BPrFrFe\" data-secret=\"yn8BPrFrFe\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(6244,36448,'_oembed_time_ebd43341541d9075e9c06870456f8eb3','1688470705'),(6245,36448,'_thumbnail_id','36453'),(6246,36448,'iawp_total_views','15'),(6247,35742,'_edit_last','2'),(6248,35742,'_wp_page_template','default'),(6249,35742,'_wpb_vc_js_status','false'),(6250,35742,'_wc_memberships_force_public','no'),(6251,35742,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6252,35742,'_dt_sidebar_position','right'),(6253,35742,'_dt_sidebar_widgetarea_id','sidebar_1'),(6254,35742,'_dt_sidebar_hide_on_mobile','0'),(6255,35742,'_dt_footer_show','1'),(6256,35742,'_dt_footer_widgetarea_id','sidebar_2'),(6257,35742,'_dt_footer_hide_on_mobile','0'),(6258,35742,'_dt_header_title','enabled'),(6259,35742,'_dt_header_background','normal'),(6260,35742,'_dt_header_background_below_slideshow','disabled'),(6261,35742,'_dt_header_transparent_bg_color_scheme','light'),(6262,35742,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(6263,35742,'_dt_header_transparent_top_bar_bg_opacity','25'),(6264,35742,'_dt_header_transparent_bg_color','#000000'),(6265,35742,'_dt_header_transparent_bg_opacity','50'),(6266,35742,'_dt_header_disabled_background','normal'),(6267,35742,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6268,35742,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(6269,35742,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(6270,35742,'_dt_header_disabled_transparent_bg_color','#000000'),(6271,35742,'_dt_header_disabled_transparent_bg_opacity','50'),(6272,35742,'_dt_page_overrides_top_margin',''),(6273,35742,'_dt_page_overrides_right_margin',''),(6274,35742,'_dt_page_overrides_bottom_margin',''),(6275,35742,'_dt_page_overrides_left_margin',''),(6276,35742,'_dt_mobile_page_padding_top',''),(6277,35742,'_dt_mobile_page_padding_right',''),(6278,35742,'_dt_mobile_page_padding_bottom',''),(6279,35742,'_dt_mobile_page_padding_left',''),(6280,35742,'_dt_post_options_back_button',''),(6281,35742,'_dt_post_options_hide_thumbnail','0'),(6282,35742,'_dt_post_options_related_mode','same'),(6283,35742,'_dt_post_options_preview','normal'),(6284,35742,'_dt_microsite_primary_menu',''),(6285,35742,'_dt_microsite_split_left_menu',''),(6286,35742,'_dt_microsite_split_right_menu',''),(6287,35742,'_dt_microsite_mobile_menu',''),(6288,35742,'_thumbnail_id','34558'),(6289,35742,'iawp_total_views','19'),(6290,2273,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6291,2273,'_image1','1438'),(6292,2273,'contact_text',''),(6293,2273,'_contact_text','field_56ab78a159605'),(6294,2273,'contact_number',''),(6295,2273,'_contact_number','field_56ab78cc59606'),(6296,2274,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6297,2274,'_image1','1441'),(6298,2274,'contact_text',''),(6299,2274,'_contact_text','field_56ab78a159605'),(6300,2274,'contact_number',''),(6301,2274,'_contact_number','field_56ab78cc59606'),(6302,2275,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6303,2275,'_image1','1445'),(6304,2275,'contact_text',''),(6305,2275,'_contact_text','field_56ab78a159605'),(6306,2275,'contact_number',''),(6307,2275,'_contact_number','field_56ab78cc59606'),(6308,2276,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6309,2276,'_image1','1449'),(6310,2276,'contact_text',''),(6311,2276,'_contact_text','field_56ab78a159605'),(6312,2276,'contact_number',''),(6313,2276,'_contact_number','field_56ab78cc59606'),(6314,2277,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6315,2277,'_image1','1452'),(6316,2277,'contact_text',''),(6317,2277,'_contact_text','field_56ab78a159605'),(6318,2277,'contact_number',''),(6319,2277,'_contact_number','field_56ab78cc59606'),(6320,2278,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6321,2278,'_image1','1456'),(6322,2278,'contact_text',''),(6323,2278,'_contact_text','field_56ab78a159605'),(6324,2278,'contact_number',''),(6325,2278,'_contact_number','field_56ab78cc59606'),(6326,2279,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6327,2279,'_edit_last','2'),(6328,2279,'_image1','1459'),(6329,2279,'contact_text',''),(6330,2279,'_contact_text','field_56ab78a159605'),(6331,2279,'contact_number',''),(6332,2279,'_contact_number','field_56ab78cc59606'),(6333,2279,'slide_template','default'),(6334,2279,'_wpb_vc_js_status','false'),(6335,2279,'_dt_sidebar_position','right'),(6336,2279,'_dt_sidebar_widgetarea_id','sidebar_1'),(6337,2279,'_dt_sidebar_hide_on_mobile','0'),(6338,2279,'_dt_footer_show','1'),(6339,2279,'_dt_footer_widgetarea_id','sidebar_2'),(6340,2279,'_dt_footer_hide_on_mobile','0'),(6341,2279,'_dt_header_title','enabled'),(6342,2279,'_dt_header_background','normal'),(6343,2279,'_dt_header_background_below_slideshow','disabled'),(6344,2279,'_dt_header_transparent_bg_color','#000000'),(6345,2279,'_dt_header_transparent_bg_opacity','50'),(6346,2279,'_dt_header_transparent_bg_color_scheme','light'),(6347,2279,'_dt_slideshow_mode','porthole'),(6348,2279,'_dt_slideshow_3d_layout','fullscreen-content'),(6349,2279,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(6350,2279,'_dt_slideshow_layout','fullwidth'),(6351,2279,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(6352,2279,'_dt_slideshow_scaling','fill'),(6353,2279,'_dt_slideshow_autoplay','paused'),(6354,2279,'_dt_slideshow_autoslide_interval','5000'),(6355,2279,'_dt_slideshow_hide_captions','0'),(6356,2279,'_dt_slideshow_photo_scroller_layout','fullscreen'),(6357,2279,'_dt_slideshow_photo_scroller_bg_color','#000000'),(6358,2279,'_dt_slideshow_photo_scroller_overlay','1'),(6359,2279,'_dt_slideshow_photo_scroller_top_padding','0'),(6360,2279,'_dt_slideshow_photo_scroller_bottom_padding','0'),(6361,2279,'_dt_slideshow_photo_scroller_side_paddings','0'),(6362,2279,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(6363,2279,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(6364,2279,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(6365,2279,'_dt_slideshow_photo_scroller_autoplay','play'),(6366,2279,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(6367,2279,'_dt_slideshow_photo_scroller_ls_max_width','100'),(6368,2279,'_dt_slideshow_photo_scroller_ls_min_width','0'),(6369,2279,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(6370,2279,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(6371,2279,'_dt_slideshow_photo_scroller_pt_max_width','100'),(6372,2279,'_dt_slideshow_photo_scroller_pt_min_width','0'),(6373,2279,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(6374,2279,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(6375,2279,'_dt_slideshow_revolution_slider','none'),(6376,2279,'_dt_slideshow_layer_slider','none'),(6377,2279,'_dt_slideshow_layer_show_bg_and_paddings','0'),(6378,2279,'_dt_fancy_header_title_aligment','center'),(6379,2279,'_dt_fancy_header_breadcrumbs','enabled'),(6380,2279,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(6381,2279,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(6382,2279,'_dt_fancy_header_title_mode','custom'),(6383,2279,'_dt_fancy_header_title_color_mode','color'),(6384,2279,'_dt_fancy_header_title_color','#ffffff'),(6385,2279,'_dt_fancy_header_subtitle_color_mode','color'),(6386,2279,'_dt_fancy_header_subtitle_color','#ffffff'),(6387,2279,'_dt_fancy_header_bg_color','#222222'),(6388,2279,'_dt_fancy_header_bg_repeat','no-repeat'),(6389,2279,'_dt_fancy_header_bg_position_x','center'),(6390,2279,'_dt_fancy_header_bg_position_y','center'),(6391,2279,'_dt_fancy_header_bg_fullscreen','1'),(6392,2279,'_dt_fancy_header_height','300'),(6393,2279,'_dt_post_options_back_button',''),(6394,2279,'_dt_post_options_hide_thumbnail','0'),(6395,2279,'_dt_post_options_related_mode','same'),(6396,2279,'_dt_post_options_preview','normal'),(6397,2279,'_dt_fancy_header_title_font_size','44'),(6398,2279,'_dt_fancy_header_title_line_height','50'),(6399,2279,'_dt_fancy_header_subtitle_font_size','30'),(6400,2279,'_dt_fancy_header_subtitle_line_height','36'),(6401,2280,'_wc_memberships_force_public','no'),(6402,2280,'_edit_last','3'),(6403,2280,'_image1','1468'),(6404,2280,'contact_text',''),(6405,2280,'_contact_text','field_56ab78a159605'),(6406,2280,'contact_number',''),(6407,2280,'_contact_number','field_56ab78cc59606'),(6408,2280,'_thumbnail_id','2236'),(6409,2280,'_wp_page_template','default'),(6410,2280,'_wpb_vc_js_status','false'),(6411,2280,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6412,2280,'_dt_sidebar_position','right'),(6413,2280,'_dt_sidebar_widgetarea_id','sidebar_1'),(6414,2280,'_dt_sidebar_hide_on_mobile','0'),(6415,2280,'_dt_footer_show','1'),(6416,2280,'_dt_footer_widgetarea_id','sidebar_2'),(6417,2280,'_dt_footer_hide_on_mobile','0'),(6418,2280,'_dt_header_title','enabled'),(6419,2280,'_dt_header_background','normal'),(6420,2280,'_dt_header_background_below_slideshow','disabled'),(6421,2280,'_dt_header_transparent_bg_color_scheme','light'),(6422,2280,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(6423,2280,'_dt_header_transparent_top_bar_bg_opacity','25'),(6424,2280,'_dt_header_transparent_bg_color','#000000'),(6425,2280,'_dt_header_transparent_bg_opacity','50'),(6426,2280,'_dt_header_disabled_background','normal'),(6427,2280,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6428,2280,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(6429,2280,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(6430,2280,'_dt_header_disabled_transparent_bg_color','#000000'),(6431,2280,'_dt_header_disabled_transparent_bg_opacity','50'),(6432,2280,'_dt_page_overrides_top_margin',''),(6433,2280,'_dt_page_overrides_right_margin',''),(6434,2280,'_dt_page_overrides_bottom_margin',''),(6435,2280,'_dt_page_overrides_left_margin',''),(6436,2280,'_dt_mobile_page_padding_top',''),(6437,2280,'_dt_mobile_page_padding_right',''),(6438,2280,'_dt_mobile_page_padding_bottom',''),(6439,2280,'_dt_mobile_page_padding_left',''),(6440,2280,'_dt_post_options_back_button',''),(6441,2280,'_dt_post_options_hide_thumbnail','0'),(6442,2280,'_dt_post_options_related_mode','same'),(6443,2280,'_dt_post_options_preview','normal'),(6444,2280,'_dt_microsite_primary_menu',''),(6445,2280,'_dt_microsite_split_left_menu',''),(6446,2280,'_dt_microsite_split_right_menu',''),(6447,2280,'_dt_microsite_mobile_menu',''),(6448,2283,'_wpb_post_custom_layout','default'),(6449,2283,'_edit_last','17'),(6450,2283,'_thumbnail_id','2237'),(6451,2283,'_image1','1489'),(6452,2283,'contact_text',''),(6453,2283,'_contact_text','field_56ab78a159605'),(6454,2283,'contact_number',''),(6455,2283,'_contact_number','field_56ab78cc59606'),(6456,2283,'_wp_old_slug','how-to-reduce-your-own-back-pain-the-rugby-edition'),(6457,2283,'_wp_page_template','default'),(6458,2283,'_wc_memberships_force_public','no'),(6459,2283,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6460,2283,'_wpb_vc_js_status','false'),(6461,2283,'_dt_sidebar_position','right'),(6462,2283,'_dt_sidebar_widgetarea_id','sidebar_1'),(6463,2283,'_dt_sidebar_hide_on_mobile','0'),(6464,2283,'_dt_footer_show','1'),(6465,2283,'_dt_footer_widgetarea_id','sidebar_2'),(6466,2283,'_dt_footer_hide_on_mobile','0'),(6467,2283,'_dt_header_title','enabled'),(6468,2283,'_dt_header_background','normal'),(6469,2283,'_dt_header_background_below_slideshow','disabled'),(6470,2283,'_dt_header_transparent_bg_color_scheme','light'),(6471,2283,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(6472,2283,'_dt_header_transparent_top_bar_bg_opacity','25'),(6473,2283,'_dt_header_transparent_bg_color','#000000'),(6474,2283,'_dt_header_transparent_bg_opacity','50'),(6475,2283,'_dt_header_disabled_background','normal'),(6476,2283,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6477,2283,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(6478,2283,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(6479,2283,'_dt_header_disabled_transparent_bg_color','#000000'),(6480,2283,'_dt_header_disabled_transparent_bg_opacity','50'),(6481,2283,'_dt_page_overrides_top_margin',''),(6482,2283,'_dt_page_overrides_right_margin',''),(6483,2283,'_dt_page_overrides_bottom_margin',''),(6484,2283,'_dt_page_overrides_left_margin',''),(6485,2283,'_dt_mobile_page_padding_top',''),(6486,2283,'_dt_mobile_page_padding_right',''),(6487,2283,'_dt_mobile_page_padding_bottom',''),(6488,2283,'_dt_mobile_page_padding_left',''),(6489,2283,'_dt_post_options_back_button',''),(6490,2283,'_dt_post_options_hide_thumbnail','0'),(6491,2283,'_dt_post_options_related_mode','same'),(6492,2283,'_dt_post_options_preview','normal'),(6493,2283,'_dt_microsite_primary_menu',''),(6494,2283,'_dt_microsite_split_left_menu',''),(6495,2283,'_dt_microsite_split_right_menu',''),(6496,2283,'_dt_microsite_mobile_menu',''),(6497,2283,'iawp_total_views','125'),(6498,2284,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6499,2284,'_image1','1506'),(6500,2284,'contact_text',''),(6501,2284,'_contact_text','field_56ab78a159605'),(6502,2284,'contact_number',''),(6503,2284,'_contact_number','field_56ab78cc59606'),(6504,2284,'_thumbnail_id','2248'),(6505,2284,'iawp_total_views','11'),(6506,2285,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6507,2285,'_image1','1511'),(6508,2285,'contact_text',''),(6509,2285,'_contact_text','field_56ab78a159605'),(6510,2285,'contact_number',''),(6511,2285,'_contact_number','field_56ab78cc59606'),(6512,2285,'_thumbnail_id','2307'),(6513,2285,'slide_template','default'),(6514,2285,'_wpb_vc_js_status','false'),(6515,2285,'_dt_sidebar_position','right'),(6516,2285,'_dt_sidebar_widgetarea_id','sidebar_1'),(6517,2285,'_dt_sidebar_hide_on_mobile','0'),(6518,2285,'_dt_footer_show','1'),(6519,2285,'_dt_footer_widgetarea_id','sidebar_2'),(6520,2285,'_dt_footer_hide_on_mobile','0'),(6521,2285,'_dt_header_title','enabled'),(6522,2285,'_dt_header_background','normal'),(6523,2285,'_dt_header_background_below_slideshow','disabled'),(6524,2285,'_dt_header_transparent_bg_color','#000000'),(6525,2285,'_dt_header_transparent_bg_opacity','50'),(6526,2285,'_dt_header_transparent_bg_color_scheme','light'),(6527,2285,'_dt_slideshow_mode','porthole'),(6528,2285,'_dt_slideshow_3d_layout','fullscreen-content'),(6529,2285,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(6530,2285,'_dt_slideshow_layout','fullwidth'),(6531,2285,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(6532,2285,'_dt_slideshow_scaling','fill'),(6533,2285,'_dt_slideshow_autoplay','paused'),(6534,2285,'_dt_slideshow_autoslide_interval','5000'),(6535,2285,'_dt_slideshow_hide_captions','0'),(6536,2285,'_dt_slideshow_photo_scroller_layout','fullscreen'),(6537,2285,'_dt_slideshow_photo_scroller_bg_color','#000000'),(6538,2285,'_dt_slideshow_photo_scroller_overlay','1'),(6539,2285,'_dt_slideshow_photo_scroller_top_padding','0'),(6540,2285,'_dt_slideshow_photo_scroller_bottom_padding','0'),(6541,2285,'_dt_slideshow_photo_scroller_side_paddings','0'),(6542,2285,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(6543,2285,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(6544,2285,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(6545,2285,'_dt_slideshow_photo_scroller_autoplay','play'),(6546,2285,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(6547,2285,'_dt_slideshow_photo_scroller_ls_max_width','100'),(6548,2285,'_dt_slideshow_photo_scroller_ls_min_width','0'),(6549,2285,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(6550,2285,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(6551,2285,'_dt_slideshow_photo_scroller_pt_max_width','100'),(6552,2285,'_dt_slideshow_photo_scroller_pt_min_width','0'),(6553,2285,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(6554,2285,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(6555,2285,'_dt_slideshow_revolution_slider','none'),(6556,2285,'_dt_slideshow_layer_slider','none'),(6557,2285,'_dt_slideshow_layer_show_bg_and_paddings','0'),(6558,2285,'_dt_fancy_header_title_aligment','center'),(6559,2285,'_dt_fancy_header_breadcrumbs','enabled'),(6560,2285,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(6561,2285,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(6562,2285,'_dt_fancy_header_title_mode','custom'),(6563,2285,'_dt_fancy_header_title_color_mode','color'),(6564,2285,'_dt_fancy_header_title_color','#ffffff'),(6565,2285,'_dt_fancy_header_subtitle_color_mode','color'),(6566,2285,'_dt_fancy_header_subtitle_color','#ffffff'),(6567,2285,'_dt_fancy_header_bg_color','#222222'),(6568,2285,'_dt_fancy_header_bg_repeat','no-repeat'),(6569,2285,'_dt_fancy_header_bg_position_x','center'),(6570,2285,'_dt_fancy_header_bg_position_y','center'),(6571,2285,'_dt_fancy_header_bg_fullscreen','1'),(6572,2285,'_dt_fancy_header_height','300'),(6573,2285,'_dt_post_options_back_button',''),(6574,2285,'_dt_post_options_hide_thumbnail','0'),(6575,2285,'_dt_post_options_related_mode','same'),(6576,2285,'_dt_post_options_preview','normal'),(6577,2285,'_dt_fancy_header_title_font_size','44'),(6578,2285,'_dt_fancy_header_title_line_height','50'),(6579,2285,'_dt_fancy_header_subtitle_font_size','30'),(6580,2285,'_dt_fancy_header_subtitle_line_height','36'),(6581,2286,'_wc_memberships_force_public','no'),(6582,2286,'_edit_last','3'),(6583,2286,'_image1','1566'),(6584,2286,'contact_text',''),(6585,2286,'_contact_text','field_56ab78a159605'),(6586,2286,'contact_number',''),(6587,2286,'_contact_number','field_56ab78cc59606'),(6588,2286,'_thumbnail_id','2301'),(6589,2286,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6590,2286,'_wpb_vc_js_status','false'),(6591,2286,'_dt_sidebar_position','right'),(6592,2286,'_dt_sidebar_widgetarea_id','sidebar_1'),(6593,2286,'_dt_sidebar_hide_on_mobile','0'),(6594,2286,'_dt_footer_show','1'),(6595,2286,'_dt_footer_widgetarea_id','sidebar_2'),(6596,2286,'_dt_footer_hide_on_mobile','0'),(6597,2286,'_dt_header_title','enabled'),(6598,2286,'_dt_header_background','normal'),(6599,2286,'_dt_header_background_below_slideshow','disabled'),(6600,2286,'_dt_header_transparent_bg_color','#000000'),(6601,2286,'_dt_header_transparent_bg_opacity','50'),(6602,2286,'_dt_header_transparent_bg_color_scheme','light'),(6603,2286,'_dt_slideshow_3d_layout','fullscreen-content'),(6604,2286,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(6605,2286,'_dt_microsite_mobile_menu',''),(6606,2286,'_dt_microsite_split_right_menu',''),(6607,2286,'_dt_microsite_primary_menu',''),(6608,2286,'_dt_microsite_split_left_menu',''),(6609,2286,'_dt_post_options_back_button',''),(6610,2286,'_dt_post_options_hide_thumbnail','0'),(6611,2286,'_dt_post_options_related_mode','same'),(6612,2286,'_dt_post_options_preview','normal'),(6613,2286,'_wp_page_template','default'),(6614,2286,'_dt_header_transparent_top_bar_bg_color',''),(6615,2286,'_dt_header_transparent_top_bar_bg_opacity','0'),(6616,2286,'_dt_header_disabled_background','normal'),(6617,2286,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6618,2286,'_dt_header_disabled_transparent_top_bar_bg_color',''),(6619,2286,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),(6620,2286,'_dt_header_disabled_transparent_bg_color',''),(6621,2286,'_dt_header_disabled_transparent_bg_opacity','0'),(6622,2286,'_dt_page_overrides_top_margin',''),(6623,2286,'_dt_page_overrides_right_margin',''),(6624,2286,'_dt_page_overrides_bottom_margin',''),(6625,2286,'_dt_page_overrides_left_margin',''),(6626,2286,'_dt_mobile_page_padding_top',''),(6627,2286,'_dt_mobile_page_padding_right',''),(6628,2286,'_dt_mobile_page_padding_bottom',''),(6629,2286,'_dt_mobile_page_padding_left',''),(6630,2286,'iawp_total_views','53'),(6631,2287,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6632,2287,'_image1','1637'),(6633,2287,'contact_text',''),(6634,2287,'_contact_text','field_56ab78a159605'),(6635,2287,'contact_number',''),(6636,2287,'_contact_number','field_56ab78cc59606'),(6637,2287,'_wp_old_slug','what-exactly-is-the-imovefreely-programme'),(6638,2287,'_thumbnail_id','2297'),(6639,2287,'slide_template','default'),(6640,2287,'_wpb_vc_js_status','false'),(6641,2287,'_dt_sidebar_position','right'),(6642,2287,'_dt_sidebar_widgetarea_id','sidebar_1'),(6643,2287,'_dt_sidebar_hide_on_mobile','0'),(6644,2287,'_dt_footer_show','1'),(6645,2287,'_dt_footer_widgetarea_id','sidebar_2'),(6646,2287,'_dt_footer_hide_on_mobile','0'),(6647,2287,'_dt_header_title','enabled'),(6648,2287,'_dt_header_background','normal'),(6649,2287,'_dt_header_background_below_slideshow','disabled'),(6650,2287,'_dt_header_transparent_bg_color','#000000'),(6651,2287,'_dt_header_transparent_bg_opacity','50'),(6652,2287,'_dt_header_transparent_bg_color_scheme','light'),(6653,2287,'_dt_slideshow_mode','porthole'),(6654,2287,'_dt_slideshow_3d_layout','fullscreen-content'),(6655,2287,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(6656,2287,'_dt_slideshow_layout','fullwidth'),(6657,2287,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(6658,2287,'_dt_slideshow_scaling','fill'),(6659,2287,'_dt_slideshow_autoplay','paused'),(6660,2287,'_dt_slideshow_autoslide_interval','5000'),(6661,2287,'_dt_slideshow_hide_captions','0'),(6662,2287,'_dt_slideshow_photo_scroller_layout','fullscreen'),(6663,2287,'_dt_slideshow_photo_scroller_bg_color','#000000'),(6664,2287,'_dt_slideshow_photo_scroller_overlay','1'),(6665,2287,'_dt_slideshow_photo_scroller_top_padding','0'),(6666,2287,'_dt_slideshow_photo_scroller_bottom_padding','0'),(6667,2287,'_dt_slideshow_photo_scroller_side_paddings','0'),(6668,2287,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(6669,2287,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(6670,2287,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(6671,2287,'_dt_slideshow_photo_scroller_autoplay','play'),(6672,2287,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(6673,2287,'_dt_slideshow_photo_scroller_ls_max_width','100'),(6674,2287,'_dt_slideshow_photo_scroller_ls_min_width','0'),(6675,2287,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(6676,2287,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(6677,2287,'_dt_slideshow_photo_scroller_pt_max_width','100'),(6678,2287,'_dt_slideshow_photo_scroller_pt_min_width','0'),(6679,2287,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(6680,2287,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(6681,2287,'_dt_slideshow_revolution_slider','none'),(6682,2287,'_dt_slideshow_layer_slider','none'),(6683,2287,'_dt_slideshow_layer_show_bg_and_paddings','0'),(6684,2287,'_dt_fancy_header_title_aligment','center'),(6685,2287,'_dt_fancy_header_breadcrumbs','enabled'),(6686,2287,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(6687,2287,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(6688,2287,'_dt_fancy_header_title_mode','custom'),(6689,2287,'_dt_fancy_header_title_color_mode','color'),(6690,2287,'_dt_fancy_header_title_color','#ffffff'),(6691,2287,'_dt_fancy_header_subtitle_color_mode','color'),(6692,2287,'_dt_fancy_header_subtitle_color','#ffffff'),(6693,2287,'_dt_fancy_header_bg_color','#222222'),(6694,2287,'_dt_fancy_header_bg_repeat','no-repeat'),(6695,2287,'_dt_fancy_header_bg_position_x','center'),(6696,2287,'_dt_fancy_header_bg_position_y','center'),(6697,2287,'_dt_fancy_header_bg_fullscreen','1'),(6698,2287,'_dt_fancy_header_height','300'),(6699,2287,'_dt_post_options_back_button',''),(6700,2287,'_dt_post_options_hide_thumbnail','0'),(6701,2287,'_dt_post_options_related_mode','same'),(6702,2287,'_dt_post_options_preview','normal'),(6703,2287,'_dt_fancy_header_title_font_size','44'),(6704,2287,'_dt_fancy_header_title_line_height','50'),(6705,2287,'_dt_fancy_header_subtitle_font_size','30'),(6706,2287,'_dt_fancy_header_subtitle_line_height','36'),(6707,2287,'iawp_total_views','66'),(6708,2288,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(6709,2288,'_image1','1725'),(6710,2288,'contact_text',''),(6711,2288,'_contact_text','field_56ab78a159605'),(6712,2288,'contact_number',''),(6713,2288,'_contact_number','field_56ab78cc59606'),(6714,2288,'_thumbnail_id','2289'),(6715,2288,'slide_template','default'),(6716,2288,'_wpb_vc_js_status','false'),(6717,2288,'_dt_sidebar_position','right'),(6718,2288,'_dt_sidebar_widgetarea_id','sidebar_1'),(6719,2288,'_dt_sidebar_hide_on_mobile','0'),(6720,2288,'_dt_footer_show','1'),(6721,2288,'_dt_footer_widgetarea_id','sidebar_2'),(6722,2288,'_dt_footer_hide_on_mobile','0'),(6723,2288,'_dt_header_title','enabled'),(6724,2288,'_dt_header_background','normal'),(6725,2288,'_dt_header_background_below_slideshow','disabled'),(6726,2288,'_dt_header_transparent_bg_color','#000000'),(6727,2288,'_dt_header_transparent_bg_opacity','50'),(6728,2288,'_dt_header_transparent_bg_color_scheme','light'),(6729,2288,'_dt_slideshow_mode','porthole'),(6730,2288,'_dt_slideshow_3d_layout','fullscreen-content'),(6731,2288,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(6732,2288,'_dt_slideshow_layout','fullwidth'),(6733,2288,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(6734,2288,'_dt_slideshow_scaling','fill'),(6735,2288,'_dt_slideshow_autoplay','paused'),(6736,2288,'_dt_slideshow_autoslide_interval','5000'),(6737,2288,'_dt_slideshow_hide_captions','0'),(6738,2288,'_dt_slideshow_photo_scroller_layout','fullscreen'),(6739,2288,'_dt_slideshow_photo_scroller_bg_color','#000000'),(6740,2288,'_dt_slideshow_photo_scroller_overlay','1'),(6741,2288,'_dt_slideshow_photo_scroller_top_padding','0'),(6742,2288,'_dt_slideshow_photo_scroller_bottom_padding','0'),(6743,2288,'_dt_slideshow_photo_scroller_side_paddings','0'),(6744,2288,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(6745,2288,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(6746,2288,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(6747,2288,'_dt_slideshow_photo_scroller_autoplay','play'),(6748,2288,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(6749,2288,'_dt_slideshow_photo_scroller_ls_max_width','100'),(6750,2288,'_dt_slideshow_photo_scroller_ls_min_width','0'),(6751,2288,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(6752,2288,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(6753,2288,'_dt_slideshow_photo_scroller_pt_max_width','100'),(6754,2288,'_dt_slideshow_photo_scroller_pt_min_width','0'),(6755,2288,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(6756,2288,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(6757,2288,'_dt_slideshow_revolution_slider','none'),(6758,2288,'_dt_slideshow_layer_slider','none'),(6759,2288,'_dt_slideshow_layer_show_bg_and_paddings','0'),(6760,2288,'_dt_fancy_header_title_aligment','center'),(6761,2288,'_dt_fancy_header_breadcrumbs','enabled'),(6762,2288,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(6763,2288,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(6764,2288,'_dt_fancy_header_title_mode','custom'),(6765,2288,'_dt_fancy_header_title_color_mode','color'),(6766,2288,'_dt_fancy_header_title_color','#ffffff'),(6767,2288,'_dt_fancy_header_subtitle_color_mode','color'),(6768,2288,'_dt_fancy_header_subtitle_color','#ffffff'),(6769,2288,'_dt_fancy_header_bg_color','#222222'),(6770,2288,'_dt_fancy_header_bg_repeat','no-repeat'),(6771,2288,'_dt_fancy_header_bg_position_x','center'),(6772,2288,'_dt_fancy_header_bg_position_y','center'),(6773,2288,'_dt_fancy_header_bg_fullscreen','1'),(6774,2288,'_dt_fancy_header_height','300'),(6775,2288,'_dt_post_options_back_button',''),(6776,2288,'_dt_post_options_hide_thumbnail','0'),(6777,2288,'_dt_post_options_related_mode','same'),(6778,2288,'_dt_post_options_preview','normal'),(6779,2288,'_dt_fancy_header_title_font_size','44'),(6780,2288,'_dt_fancy_header_title_line_height','50'),(6781,2288,'_dt_fancy_header_subtitle_font_size','30'),(6782,2288,'_dt_fancy_header_subtitle_line_height','36'),(6783,35126,'_edit_last','17'),(6784,35126,'_wp_page_template','default'),(6785,35126,'_wpb_vc_js_status','false'),(6786,35126,'_wc_memberships_force_public','no'),(6787,35126,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6788,35126,'_dt_sidebar_position','right'),(6789,35126,'_dt_sidebar_widgetarea_id','sidebar_1'),(6790,35126,'_dt_sidebar_hide_on_mobile','0'),(6791,35126,'_dt_footer_show','1'),(6792,35126,'_dt_footer_widgetarea_id','sidebar_2'),(6793,35126,'_dt_footer_hide_on_mobile','0'),(6794,35126,'_dt_header_title','enabled'),(6795,35126,'_dt_header_background','normal'),(6796,35126,'_dt_header_background_below_slideshow','disabled'),(6797,35126,'_dt_header_transparent_bg_color_scheme','light'),(6798,35126,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(6799,35126,'_dt_header_transparent_top_bar_bg_opacity','25'),(6800,35126,'_dt_header_transparent_bg_color','#000000'),(6801,35126,'_dt_header_transparent_bg_opacity','50'),(6802,35126,'_dt_header_disabled_background','normal'),(6803,35126,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6804,35126,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(6805,35126,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(6806,35126,'_dt_header_disabled_transparent_bg_color','#000000'),(6807,35126,'_dt_header_disabled_transparent_bg_opacity','50'),(6808,35126,'_dt_page_overrides_top_margin',''),(6809,35126,'_dt_page_overrides_right_margin',''),(6810,35126,'_dt_page_overrides_bottom_margin',''),(6811,35126,'_dt_page_overrides_left_margin',''),(6812,35126,'_dt_mobile_page_padding_top',''),(6813,35126,'_dt_mobile_page_padding_right',''),(6814,35126,'_dt_mobile_page_padding_bottom',''),(6815,35126,'_dt_mobile_page_padding_left',''),(6816,35126,'_dt_post_options_back_button',''),(6817,35126,'_dt_post_options_hide_thumbnail','0'),(6818,35126,'_dt_post_options_related_mode','same'),(6819,35126,'_dt_post_options_preview','normal'),(6820,35126,'_dt_microsite_primary_menu',''),(6821,35126,'_dt_microsite_split_left_menu',''),(6822,35126,'_dt_microsite_split_right_menu',''),(6823,35126,'_dt_microsite_mobile_menu',''),(6825,35126,'iawp_total_views','136'),(6826,34054,'_edit_last','17'),(6827,34054,'_wp_page_template','default'),(6828,34054,'_wpb_vc_js_status','false'),(6829,34054,'_wc_memberships_force_public','no'),(6830,34054,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6831,34054,'_dt_sidebar_position','right'),(6832,34054,'_dt_sidebar_widgetarea_id','sidebar_1'),(6833,34054,'_dt_sidebar_hide_on_mobile','0'),(6834,34054,'_dt_footer_show','1'),(6835,34054,'_dt_footer_widgetarea_id','sidebar_2'),(6836,34054,'_dt_footer_hide_on_mobile','0'),(6837,34054,'_dt_header_title','enabled'),(6838,34054,'_dt_header_background','normal'),(6839,34054,'_dt_header_background_below_slideshow','disabled'),(6840,34054,'_dt_header_transparent_bg_color_scheme','light'),(6841,34054,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(6842,34054,'_dt_header_transparent_top_bar_bg_opacity','25'),(6843,34054,'_dt_header_transparent_bg_color','#000000'),(6844,34054,'_dt_header_transparent_bg_opacity','50'),(6845,34054,'_dt_header_disabled_background','normal'),(6846,34054,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6847,34054,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(6848,34054,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(6849,34054,'_dt_header_disabled_transparent_bg_color','#000000'),(6850,34054,'_dt_header_disabled_transparent_bg_opacity','50'),(6851,34054,'_dt_page_overrides_top_margin',''),(6852,34054,'_dt_page_overrides_right_margin',''),(6853,34054,'_dt_page_overrides_bottom_margin',''),(6854,34054,'_dt_page_overrides_left_margin',''),(6855,34054,'_dt_mobile_page_padding_top',''),(6856,34054,'_dt_mobile_page_padding_right',''),(6857,34054,'_dt_mobile_page_padding_bottom',''),(6858,34054,'_dt_mobile_page_padding_left',''),(6859,34054,'_dt_post_options_back_button',''),(6860,34054,'_dt_post_options_hide_thumbnail','0'),(6861,34054,'_dt_post_options_related_mode','same'),(6862,34054,'_dt_post_options_preview','normal'),(6863,34054,'_dt_microsite_primary_menu',''),(6864,34054,'_dt_microsite_split_left_menu',''),(6865,34054,'_dt_microsite_split_right_menu',''),(6866,34054,'_dt_microsite_mobile_menu',''),(6868,34054,'iawp_total_views','69'),(6869,34519,'_edit_last','17'),(6870,34519,'_wp_page_template','default'),(6871,34519,'_wpb_vc_js_status','false'),(6872,34519,'_wc_memberships_force_public','no'),(6873,34519,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6874,34519,'_dt_sidebar_position','right'),(6875,34519,'_dt_sidebar_widgetarea_id','sidebar_1'),(6876,34519,'_dt_sidebar_hide_on_mobile','0'),(6877,34519,'_dt_footer_show','1'),(6878,34519,'_dt_footer_widgetarea_id','sidebar_2'),(6879,34519,'_dt_footer_hide_on_mobile','0'),(6880,34519,'_dt_header_title','enabled'),(6881,34519,'_dt_header_background','normal'),(6882,34519,'_dt_header_background_below_slideshow','disabled'),(6883,34519,'_dt_header_transparent_bg_color_scheme','light'),(6884,34519,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(6885,34519,'_dt_header_transparent_top_bar_bg_opacity','25'),(6886,34519,'_dt_header_transparent_bg_color','#000000'),(6887,34519,'_dt_header_transparent_bg_opacity','50'),(6888,34519,'_dt_header_disabled_background','normal'),(6889,34519,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6890,34519,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(6891,34519,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(6892,34519,'_dt_header_disabled_transparent_bg_color','#000000'),(6893,34519,'_dt_header_disabled_transparent_bg_opacity','50'),(6894,34519,'_dt_page_overrides_top_margin',''),(6895,34519,'_dt_page_overrides_right_margin',''),(6896,34519,'_dt_page_overrides_bottom_margin',''),(6897,34519,'_dt_page_overrides_left_margin',''),(6898,34519,'_dt_mobile_page_padding_top',''),(6899,34519,'_dt_mobile_page_padding_right',''),(6900,34519,'_dt_mobile_page_padding_bottom',''),(6901,34519,'_dt_mobile_page_padding_left',''),(6902,34519,'_dt_post_options_back_button',''),(6903,34519,'_dt_post_options_hide_thumbnail','0'),(6904,34519,'_dt_post_options_related_mode','same'),(6905,34519,'_dt_post_options_preview','normal'),(6906,34519,'_dt_microsite_primary_menu',''),(6907,34519,'_dt_microsite_split_left_menu',''),(6908,34519,'_dt_microsite_split_right_menu',''),(6909,34519,'_dt_microsite_mobile_menu',''),(6910,34519,'_thumbnail_id','40396'),(6911,34519,'iawp_total_views','19'),(6912,33426,'_edit_last','2'),(6913,33426,'_wp_page_template','default'),(6914,33426,'_wpb_vc_js_status','false'),(6915,33426,'_wc_memberships_force_public','no'),(6916,33426,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6917,33426,'_dt_sidebar_position','right'),(6918,33426,'_dt_sidebar_widgetarea_id','sidebar_1'),(6919,33426,'_dt_sidebar_hide_on_mobile','0'),(6920,33426,'_dt_footer_show','1'),(6921,33426,'_dt_footer_widgetarea_id','sidebar_2'),(6922,33426,'_dt_footer_hide_on_mobile','0'),(6923,33426,'_dt_header_title','enabled'),(6924,33426,'_dt_header_background','normal'),(6925,33426,'_dt_header_background_below_slideshow','disabled'),(6926,33426,'_dt_header_transparent_bg_color_scheme','light'),(6927,33426,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(6928,33426,'_dt_header_transparent_top_bar_bg_opacity','25'),(6929,33426,'_dt_header_transparent_bg_color','#000000'),(6930,33426,'_dt_header_transparent_bg_opacity','50'),(6931,33426,'_dt_header_disabled_background','normal'),(6932,33426,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6933,33426,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(6934,33426,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(6935,33426,'_dt_header_disabled_transparent_bg_color','#000000'),(6936,33426,'_dt_header_disabled_transparent_bg_opacity','50'),(6937,33426,'_dt_page_overrides_top_margin',''),(6938,33426,'_dt_page_overrides_right_margin',''),(6939,33426,'_dt_page_overrides_bottom_margin',''),(6940,33426,'_dt_page_overrides_left_margin',''),(6941,33426,'_dt_mobile_page_padding_top',''),(6942,33426,'_dt_mobile_page_padding_right',''),(6943,33426,'_dt_mobile_page_padding_bottom',''),(6944,33426,'_dt_mobile_page_padding_left',''),(6945,33426,'_dt_post_options_back_button',''),(6946,33426,'_dt_post_options_hide_thumbnail','0'),(6947,33426,'_dt_post_options_related_mode','same'),(6948,33426,'_dt_post_options_preview','normal'),(6949,33426,'_dt_microsite_primary_menu',''),(6950,33426,'_dt_microsite_split_left_menu',''),(6951,33426,'_dt_microsite_split_right_menu',''),(6952,33426,'_dt_microsite_mobile_menu',''),(6953,33426,'_thumbnail_id','33436'),(6954,33426,'iawp_total_views','9'),(6955,33779,'_edit_last','3'),(6956,33779,'_wp_page_template','default'),(6957,33779,'_wpb_vc_js_status','false'),(6958,33779,'_wc_memberships_force_public','no'),(6959,33779,'_wc_memberships_use_custom_post_content_restricted_message','no'),(6960,33779,'_dt_sidebar_position','right'),(6961,33779,'_dt_sidebar_widgetarea_id','sidebar_1'),(6962,33779,'_dt_sidebar_hide_on_mobile','0'),(6963,33779,'_dt_footer_show','1'),(6964,33779,'_dt_footer_widgetarea_id','sidebar_2'),(6965,33779,'_dt_footer_hide_on_mobile','0'),(6966,33779,'_dt_header_title','enabled'),(6967,33779,'_dt_header_background','normal'),(6968,33779,'_dt_header_background_below_slideshow','disabled'),(6969,33779,'_dt_header_transparent_bg_color_scheme','light'),(6970,33779,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(6971,33779,'_dt_header_transparent_top_bar_bg_opacity','25'),(6972,33779,'_dt_header_transparent_bg_color','#000000'),(6973,33779,'_dt_header_transparent_bg_opacity','50'),(6974,33779,'_dt_header_disabled_background','normal'),(6975,33779,'_dt_header_disabled_transparent_bg_color_scheme','light'),(6976,33779,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(6977,33779,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(6978,33779,'_dt_header_disabled_transparent_bg_color','#000000'),(6979,33779,'_dt_header_disabled_transparent_bg_opacity','50'),(6980,33779,'_dt_page_overrides_top_margin',''),(6981,33779,'_dt_page_overrides_right_margin',''),(6982,33779,'_dt_page_overrides_bottom_margin',''),(6983,33779,'_dt_page_overrides_left_margin',''),(6984,33779,'_dt_mobile_page_padding_top',''),(6985,33779,'_dt_mobile_page_padding_right',''),(6986,33779,'_dt_mobile_page_padding_bottom',''),(6987,33779,'_dt_mobile_page_padding_left',''),(6988,33779,'_dt_post_options_back_button',''),(6989,33779,'_dt_post_options_hide_thumbnail','0'),(6990,33779,'_dt_post_options_related_mode','same'),(6991,33779,'_dt_post_options_preview','normal'),(6992,33779,'_dt_microsite_primary_menu',''),(6993,33779,'_dt_microsite_split_left_menu',''),(6994,33779,'_dt_microsite_split_right_menu',''),(6995,33779,'_dt_microsite_mobile_menu',''),(6996,33779,'_thumbnail_id','33427'),(6997,33779,'iawp_total_views','176'),(6998,32178,'_edit_last','2'),(6999,32178,'_thumbnail_id','32179'),(7000,32178,'_wp_page_template','default'),(7001,32178,'_wpb_vc_js_status','false'),(7002,32178,'_wc_memberships_force_public','no'),(7003,32178,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7004,32178,'_dt_sidebar_position','right'),(7005,32178,'_dt_sidebar_widgetarea_id','sidebar_1'),(7006,32178,'_dt_sidebar_hide_on_mobile','0'),(7007,32178,'_dt_footer_show','1'),(7008,32178,'_dt_footer_widgetarea_id','sidebar_2'),(7009,32178,'_dt_footer_hide_on_mobile','0'),(7010,32178,'_dt_header_title','enabled'),(7011,32178,'_dt_header_background','normal'),(7012,32178,'_dt_header_background_below_slideshow','disabled'),(7013,32178,'_dt_header_transparent_bg_color_scheme','light'),(7014,32178,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7015,32178,'_dt_header_transparent_top_bar_bg_opacity','25'),(7016,32178,'_dt_header_transparent_bg_color','#000000'),(7017,32178,'_dt_header_transparent_bg_opacity','50'),(7018,32178,'_dt_header_disabled_background','normal'),(7019,32178,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7020,32178,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7021,32178,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7022,32178,'_dt_header_disabled_transparent_bg_color','#000000'),(7023,32178,'_dt_header_disabled_transparent_bg_opacity','50'),(7024,32178,'_dt_page_overrides_top_margin',''),(7025,32178,'_dt_page_overrides_right_margin',''),(7026,32178,'_dt_page_overrides_bottom_margin',''),(7027,32178,'_dt_page_overrides_left_margin',''),(7028,32178,'_dt_mobile_page_padding_top',''),(7029,32178,'_dt_mobile_page_padding_right',''),(7030,32178,'_dt_mobile_page_padding_bottom',''),(7031,32178,'_dt_mobile_page_padding_left',''),(7032,32178,'_dt_post_options_back_button',''),(7033,32178,'_dt_post_options_hide_thumbnail','0'),(7034,32178,'_dt_post_options_related_mode','same'),(7035,32178,'_dt_post_options_preview','normal'),(7036,32178,'_dt_microsite_primary_menu',''),(7037,32178,'_dt_microsite_split_left_menu',''),(7038,32178,'_dt_microsite_split_right_menu',''),(7039,32178,'_dt_microsite_mobile_menu',''),(7040,32181,'_edit_last','2'),(7041,32181,'_thumbnail_id','32182'),(7042,32181,'_wp_page_template','default'),(7043,32181,'_wpb_vc_js_status','false'),(7044,32181,'_wc_memberships_force_public','no'),(7045,32181,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7046,32181,'_dt_sidebar_position','right'),(7047,32181,'_dt_sidebar_widgetarea_id','sidebar_1'),(7048,32181,'_dt_sidebar_hide_on_mobile','0'),(7049,32181,'_dt_footer_show','1'),(7050,32181,'_dt_footer_widgetarea_id','sidebar_2'),(7051,32181,'_dt_footer_hide_on_mobile','0'),(7052,32181,'_dt_header_title','enabled'),(7053,32181,'_dt_header_background','normal'),(7054,32181,'_dt_header_background_below_slideshow','disabled'),(7055,32181,'_dt_header_transparent_bg_color_scheme','light'),(7056,32181,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7057,32181,'_dt_header_transparent_top_bar_bg_opacity','25'),(7058,32181,'_dt_header_transparent_bg_color','#000000'),(7059,32181,'_dt_header_transparent_bg_opacity','50'),(7060,32181,'_dt_header_disabled_background','normal'),(7061,32181,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7062,32181,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7063,32181,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7064,32181,'_dt_header_disabled_transparent_bg_color','#000000'),(7065,32181,'_dt_header_disabled_transparent_bg_opacity','50'),(7066,32181,'_dt_page_overrides_top_margin',''),(7067,32181,'_dt_page_overrides_right_margin',''),(7068,32181,'_dt_page_overrides_bottom_margin',''),(7069,32181,'_dt_page_overrides_left_margin',''),(7070,32181,'_dt_mobile_page_padding_top',''),(7071,32181,'_dt_mobile_page_padding_right',''),(7072,32181,'_dt_mobile_page_padding_bottom',''),(7073,32181,'_dt_mobile_page_padding_left',''),(7074,32181,'_dt_post_options_back_button',''),(7075,32181,'_dt_post_options_hide_thumbnail','0'),(7076,32181,'_dt_post_options_related_mode','same'),(7077,32181,'_dt_post_options_preview','normal'),(7078,32181,'_dt_microsite_primary_menu',''),(7079,32181,'_dt_microsite_split_left_menu',''),(7080,32181,'_dt_microsite_split_right_menu',''),(7081,32181,'_dt_microsite_mobile_menu',''),(7082,33064,'_edit_last','17'),(7083,33064,'_wp_page_template','default'),(7084,33064,'_wpb_vc_js_status','false'),(7085,33064,'_wc_memberships_force_public','no'),(7086,33064,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7087,33064,'_dt_sidebar_position','right'),(7088,33064,'_dt_sidebar_widgetarea_id','sidebar_1'),(7089,33064,'_dt_sidebar_hide_on_mobile','0'),(7090,33064,'_dt_footer_show','1'),(7091,33064,'_dt_footer_widgetarea_id','sidebar_2'),(7092,33064,'_dt_footer_hide_on_mobile','0'),(7093,33064,'_dt_header_title','enabled'),(7094,33064,'_dt_header_background','normal'),(7095,33064,'_dt_header_background_below_slideshow','disabled'),(7096,33064,'_dt_header_transparent_bg_color_scheme','light'),(7097,33064,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7098,33064,'_dt_header_transparent_top_bar_bg_opacity','25'),(7099,33064,'_dt_header_transparent_bg_color','#000000'),(7100,33064,'_dt_header_transparent_bg_opacity','50'),(7101,33064,'_dt_header_disabled_background','normal'),(7102,33064,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7103,33064,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7104,33064,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7105,33064,'_dt_header_disabled_transparent_bg_color','#000000'),(7106,33064,'_dt_header_disabled_transparent_bg_opacity','50'),(7107,33064,'_dt_page_overrides_top_margin',''),(7108,33064,'_dt_page_overrides_right_margin',''),(7109,33064,'_dt_page_overrides_bottom_margin',''),(7110,33064,'_dt_page_overrides_left_margin',''),(7111,33064,'_dt_mobile_page_padding_top',''),(7112,33064,'_dt_mobile_page_padding_right',''),(7113,33064,'_dt_mobile_page_padding_bottom',''),(7114,33064,'_dt_mobile_page_padding_left',''),(7115,33064,'_dt_post_options_back_button',''),(7116,33064,'_dt_post_options_hide_thumbnail','0'),(7117,33064,'_dt_post_options_related_mode','same'),(7118,33064,'_dt_post_options_preview','normal'),(7119,33064,'_dt_microsite_primary_menu',''),(7120,33064,'_dt_microsite_split_left_menu',''),(7121,33064,'_dt_microsite_split_right_menu',''),(7122,33064,'_dt_microsite_mobile_menu',''),(7123,33064,'_thumbnail_id','40398'),(7124,33064,'iawp_total_views','134'),(7125,33066,'_edit_last','17'),(7126,33066,'_wp_page_template','default'),(7127,33066,'_wpb_vc_js_status','false'),(7128,33066,'_wc_memberships_force_public','no'),(7129,33066,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7130,33066,'_dt_sidebar_position','right'),(7131,33066,'_dt_sidebar_widgetarea_id','sidebar_1'),(7132,33066,'_dt_sidebar_hide_on_mobile','0'),(7133,33066,'_dt_footer_show','1'),(7134,33066,'_dt_footer_widgetarea_id','sidebar_2'),(7135,33066,'_dt_footer_hide_on_mobile','0'),(7136,33066,'_dt_header_title','enabled'),(7137,33066,'_dt_header_background','normal'),(7138,33066,'_dt_header_background_below_slideshow','disabled'),(7139,33066,'_dt_header_transparent_bg_color_scheme','light'),(7140,33066,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7141,33066,'_dt_header_transparent_top_bar_bg_opacity','25'),(7142,33066,'_dt_header_transparent_bg_color','#000000'),(7143,33066,'_dt_header_transparent_bg_opacity','50'),(7144,33066,'_dt_header_disabled_background','normal'),(7145,33066,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7146,33066,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7147,33066,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7148,33066,'_dt_header_disabled_transparent_bg_color','#000000'),(7149,33066,'_dt_header_disabled_transparent_bg_opacity','50'),(7150,33066,'_dt_page_overrides_top_margin',''),(7151,33066,'_dt_page_overrides_right_margin',''),(7152,33066,'_dt_page_overrides_bottom_margin',''),(7153,33066,'_dt_page_overrides_left_margin',''),(7154,33066,'_dt_mobile_page_padding_top',''),(7155,33066,'_dt_mobile_page_padding_right',''),(7156,33066,'_dt_mobile_page_padding_bottom',''),(7157,33066,'_dt_mobile_page_padding_left',''),(7158,33066,'_dt_post_options_back_button',''),(7159,33066,'_dt_post_options_hide_thumbnail','0'),(7160,33066,'_dt_post_options_related_mode','same'),(7161,33066,'_dt_post_options_preview','normal'),(7162,33066,'_dt_microsite_primary_menu',''),(7163,33066,'_dt_microsite_split_left_menu',''),(7164,33066,'_dt_microsite_split_right_menu',''),(7165,33066,'_dt_microsite_mobile_menu',''),(7166,33066,'_thumbnail_id','23145'),(7167,33066,'iawp_total_views','195'),(7168,2530,'_wc_memberships_force_public','no'),(7169,2530,'_edit_last','3'),(7170,2530,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7171,2530,'_wpb_vc_js_status','false'),(7172,2530,'_dt_sidebar_position','right'),(7173,2530,'_dt_sidebar_widgetarea_id','sidebar_1'),(7174,2530,'_dt_sidebar_hide_on_mobile','0'),(7175,2530,'_dt_footer_show','1'),(7176,2530,'_dt_footer_widgetarea_id','sidebar_2'),(7177,2530,'_dt_footer_hide_on_mobile','0'),(7178,2530,'_dt_header_title','enabled'),(7179,2530,'_dt_header_background','normal'),(7180,2530,'_dt_header_background_below_slideshow','disabled'),(7181,2530,'_dt_header_transparent_bg_color','#000000'),(7182,2530,'_dt_header_transparent_bg_opacity','50'),(7183,2530,'_dt_header_transparent_bg_color_scheme','light'),(7184,2530,'_dt_slideshow_3d_layout','fullscreen-content'),(7185,2530,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(7186,2530,'_dt_microsite_mobile_menu',''),(7187,2530,'_dt_microsite_split_right_menu',''),(7188,2530,'_dt_microsite_primary_menu',''),(7189,2530,'_dt_microsite_split_left_menu',''),(7190,2530,'_dt_post_options_back_button',''),(7191,2530,'_dt_post_options_hide_thumbnail','0'),(7192,2530,'_dt_post_options_related_mode','same'),(7193,2530,'_dt_post_options_preview','normal'),(7194,2530,'_thumbnail_id','2540'),(7195,2530,'_wp_page_template','default'),(7196,2530,'_dt_header_transparent_top_bar_bg_color',''),(7197,2530,'_dt_header_transparent_top_bar_bg_opacity','0'),(7198,2530,'_dt_header_disabled_background','normal'),(7199,2530,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7200,2530,'_dt_header_disabled_transparent_top_bar_bg_color',''),(7201,2530,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),(7202,2530,'_dt_header_disabled_transparent_bg_color',''),(7203,2530,'_dt_header_disabled_transparent_bg_opacity','0'),(7204,2530,'_dt_page_overrides_top_margin',''),(7205,2530,'_dt_page_overrides_right_margin',''),(7206,2530,'_dt_page_overrides_bottom_margin',''),(7207,2530,'_dt_page_overrides_left_margin',''),(7208,2530,'_dt_mobile_page_padding_top',''),(7209,2530,'_dt_mobile_page_padding_right',''),(7210,2530,'_dt_mobile_page_padding_bottom',''),(7211,2530,'_dt_mobile_page_padding_left',''),(7212,2543,'_dt_page_overrides_right_margin',''),(7213,2543,'_edit_last','3'),(7214,2543,'_thumbnail_id','2548'),(7215,2543,'_dt_page_overrides_left_margin',''),(7216,2543,'_wpb_vc_js_status','false'),(7217,2543,'_dt_sidebar_position','right'),(7218,2543,'_dt_sidebar_widgetarea_id','sidebar_1'),(7219,2543,'_dt_sidebar_hide_on_mobile','0'),(7220,2543,'_dt_footer_show','1'),(7221,2543,'_dt_footer_widgetarea_id','sidebar_2'),(7222,2543,'_dt_footer_hide_on_mobile','0'),(7223,2543,'_dt_header_title','enabled'),(7224,2543,'_dt_header_background','normal'),(7225,2543,'_dt_header_background_below_slideshow','disabled'),(7226,2543,'_dt_header_transparent_bg_color','#000000'),(7227,2543,'_dt_header_transparent_bg_opacity','50'),(7228,2543,'_dt_header_transparent_bg_color_scheme','light'),(7229,2543,'_dt_slideshow_3d_layout','fullscreen-content'),(7230,2543,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(7231,2543,'_dt_post_options_back_button',''),(7232,2543,'_dt_post_options_hide_thumbnail','0'),(7233,2543,'_dt_post_options_related_mode','same'),(7234,2543,'_dt_post_options_preview','normal'),(7235,2543,'_wp_page_template','default'),(7236,2543,'_dt_header_transparent_top_bar_bg_color',''),(7237,2543,'_dt_header_transparent_top_bar_bg_opacity','0'),(7238,2543,'_dt_header_disabled_background','normal'),(7239,2543,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7240,2543,'_dt_header_disabled_transparent_top_bar_bg_color',''),(7241,2543,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),(7242,2543,'_dt_header_disabled_transparent_bg_color',''),(7243,2543,'_dt_header_disabled_transparent_bg_opacity','0'),(7244,2543,'_dt_page_overrides_top_margin',''),(7245,2543,'_dt_page_overrides_bottom_margin',''),(7246,2543,'_dt_fancy_header_uppercase','0'),(7247,2543,'_dt_fancy_header_subtitle_uppercase','0'),(7248,2543,'_dt_microsite_primary_menu',''),(7249,2543,'_dt_microsite_split_left_menu',''),(7250,2543,'_dt_microsite_split_right_menu',''),(7251,2543,'_dt_microsite_mobile_menu',''),(7252,2543,'_wc_memberships_force_public','no'),(7253,2543,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7254,2543,'_dt_mobile_page_padding_top',''),(7255,2543,'_dt_mobile_page_padding_right',''),(7256,2543,'_dt_mobile_page_padding_bottom',''),(7257,2543,'_dt_mobile_page_padding_left',''),(7258,2543,'iawp_total_views','17'),(7259,32172,'_edit_last','2'),(7260,32172,'_thumbnail_id','26985'),(7261,32172,'_wp_page_template','default'),(7262,32172,'_wpb_vc_js_status','false'),(7263,32172,'_wc_memberships_force_public','no'),(7264,32172,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7265,32172,'_dt_sidebar_position','right'),(7266,32172,'_dt_sidebar_widgetarea_id','sidebar_1'),(7267,32172,'_dt_sidebar_hide_on_mobile','0'),(7268,32172,'_dt_footer_show','1'),(7269,32172,'_dt_footer_widgetarea_id','sidebar_2'),(7270,32172,'_dt_footer_hide_on_mobile','0'),(7271,32172,'_dt_header_title','enabled'),(7272,32172,'_dt_header_background','normal'),(7273,32172,'_dt_header_background_below_slideshow','disabled'),(7274,32172,'_dt_header_transparent_bg_color_scheme','light'),(7275,32172,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7276,32172,'_dt_header_transparent_top_bar_bg_opacity','25'),(7277,32172,'_dt_header_transparent_bg_color','#000000'),(7278,32172,'_dt_header_transparent_bg_opacity','50'),(7279,32172,'_dt_header_disabled_background','normal'),(7280,32172,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7281,32172,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7282,32172,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7283,32172,'_dt_header_disabled_transparent_bg_color','#000000'),(7284,32172,'_dt_header_disabled_transparent_bg_opacity','50'),(7285,32172,'_dt_page_overrides_top_margin',''),(7286,32172,'_dt_page_overrides_right_margin',''),(7287,32172,'_dt_page_overrides_bottom_margin',''),(7288,32172,'_dt_page_overrides_left_margin',''),(7289,32172,'_dt_mobile_page_padding_top',''),(7290,32172,'_dt_mobile_page_padding_right',''),(7291,32172,'_dt_mobile_page_padding_bottom',''),(7292,32172,'_dt_mobile_page_padding_left',''),(7293,32172,'_dt_post_options_back_button',''),(7294,32172,'_dt_post_options_hide_thumbnail','0'),(7295,32172,'_dt_post_options_related_mode','same'),(7296,32172,'_dt_post_options_preview','normal'),(7297,32172,'_dt_microsite_primary_menu',''),(7298,32172,'_dt_microsite_split_left_menu',''),(7299,32172,'_dt_microsite_split_right_menu',''),(7300,32172,'_dt_microsite_mobile_menu',''),(7301,32174,'_edit_last','3'),(7302,32174,'_thumbnail_id','31068'),(7303,32174,'_wp_page_template','default'),(7304,32174,'_wpb_vc_js_status','false'),(7305,32174,'_wc_memberships_force_public','no'),(7306,32174,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7307,32174,'_dt_sidebar_position','right'),(7308,32174,'_dt_sidebar_widgetarea_id','sidebar_1'),(7309,32174,'_dt_sidebar_hide_on_mobile','0'),(7310,32174,'_dt_footer_show','1'),(7311,32174,'_dt_footer_widgetarea_id','sidebar_2'),(7312,32174,'_dt_footer_hide_on_mobile','0'),(7313,32174,'_dt_header_title','enabled'),(7314,32174,'_dt_header_background','normal'),(7315,32174,'_dt_header_background_below_slideshow','disabled'),(7316,32174,'_dt_header_transparent_bg_color_scheme','light'),(7317,32174,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7318,32174,'_dt_header_transparent_top_bar_bg_opacity','25'),(7319,32174,'_dt_header_transparent_bg_color','#000000'),(7320,32174,'_dt_header_transparent_bg_opacity','50'),(7321,32174,'_dt_header_disabled_background','normal'),(7322,32174,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7323,32174,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7324,32174,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7325,32174,'_dt_header_disabled_transparent_bg_color','#000000'),(7326,32174,'_dt_header_disabled_transparent_bg_opacity','50'),(7327,32174,'_dt_page_overrides_top_margin',''),(7328,32174,'_dt_page_overrides_right_margin',''),(7329,32174,'_dt_page_overrides_bottom_margin',''),(7330,32174,'_dt_page_overrides_left_margin',''),(7331,32174,'_dt_mobile_page_padding_top',''),(7332,32174,'_dt_mobile_page_padding_right',''),(7333,32174,'_dt_mobile_page_padding_bottom',''),(7334,32174,'_dt_mobile_page_padding_left',''),(7335,32174,'_dt_post_options_back_button',''),(7336,32174,'_dt_post_options_hide_thumbnail','0'),(7337,32174,'_dt_post_options_related_mode','same'),(7338,32174,'_dt_post_options_preview','normal'),(7339,32174,'_dt_microsite_primary_menu',''),(7340,32174,'_dt_microsite_split_left_menu',''),(7341,32174,'_dt_microsite_split_right_menu',''),(7342,32174,'_dt_microsite_mobile_menu',''),(7343,32174,'iawp_total_views','8'),(7344,32176,'_edit_last','2'),(7345,32176,'_thumbnail_id','31427'),(7346,32176,'_wp_page_template','default'),(7347,32176,'_wpb_vc_js_status','false'),(7348,32176,'_wc_memberships_force_public','no'),(7349,32176,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7350,32176,'_dt_sidebar_position','right'),(7351,32176,'_dt_sidebar_widgetarea_id','sidebar_1'),(7352,32176,'_dt_sidebar_hide_on_mobile','0'),(7353,32176,'_dt_footer_show','1'),(7354,32176,'_dt_footer_widgetarea_id','sidebar_2'),(7355,32176,'_dt_footer_hide_on_mobile','0'),(7356,32176,'_dt_header_title','enabled'),(7357,32176,'_dt_header_background','normal'),(7358,32176,'_dt_header_background_below_slideshow','disabled'),(7359,32176,'_dt_header_transparent_bg_color_scheme','light'),(7360,32176,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7361,32176,'_dt_header_transparent_top_bar_bg_opacity','25'),(7362,32176,'_dt_header_transparent_bg_color','#000000'),(7363,32176,'_dt_header_transparent_bg_opacity','50'),(7364,32176,'_dt_header_disabled_background','normal'),(7365,32176,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7366,32176,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7367,32176,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7368,32176,'_dt_header_disabled_transparent_bg_color','#000000'),(7369,32176,'_dt_header_disabled_transparent_bg_opacity','50'),(7370,32176,'_dt_page_overrides_top_margin',''),(7371,32176,'_dt_page_overrides_right_margin',''),(7372,32176,'_dt_page_overrides_bottom_margin',''),(7373,32176,'_dt_page_overrides_left_margin',''),(7374,32176,'_dt_mobile_page_padding_top',''),(7375,32176,'_dt_mobile_page_padding_right',''),(7376,32176,'_dt_mobile_page_padding_bottom',''),(7377,32176,'_dt_mobile_page_padding_left',''),(7378,32176,'_dt_post_options_back_button',''),(7379,32176,'_dt_post_options_hide_thumbnail','0'),(7380,32176,'_dt_post_options_related_mode','same'),(7381,32176,'_dt_post_options_preview','normal'),(7382,32176,'_dt_microsite_primary_menu',''),(7383,32176,'_dt_microsite_split_left_menu',''),(7384,32176,'_dt_microsite_split_right_menu',''),(7385,32176,'_dt_microsite_mobile_menu',''),(7386,32176,'iawp_total_views','43'),(7387,31421,'_wpb_post_custom_layout','default'),(7388,31421,'_edit_last','17'),(7389,31421,'_thumbnail_id','31422'),(7390,31421,'_wp_page_template','default'),(7391,31421,'_wpb_vc_js_status','false'),(7392,31421,'_wc_memberships_force_public','no'),(7393,31421,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7394,31421,'_dt_sidebar_position','right'),(7395,31421,'_dt_sidebar_widgetarea_id','sidebar_1'),(7396,31421,'_dt_sidebar_hide_on_mobile','0'),(7397,31421,'_dt_footer_show','1'),(7398,31421,'_dt_footer_widgetarea_id','sidebar_2'),(7399,31421,'_dt_footer_hide_on_mobile','0'),(7400,31421,'_dt_header_title','enabled'),(7401,31421,'_dt_header_background','normal'),(7402,31421,'_dt_header_background_below_slideshow','disabled'),(7403,31421,'_dt_header_transparent_bg_color_scheme','light'),(7404,31421,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7405,31421,'_dt_header_transparent_top_bar_bg_opacity','25'),(7406,31421,'_dt_header_transparent_bg_color','#000000'),(7407,31421,'_dt_header_transparent_bg_opacity','50'),(7408,31421,'_dt_header_disabled_background','normal'),(7409,31421,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7410,31421,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7411,31421,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7412,31421,'_dt_header_disabled_transparent_bg_color','#000000'),(7413,31421,'_dt_header_disabled_transparent_bg_opacity','50'),(7414,31421,'_dt_page_overrides_top_margin',''),(7415,31421,'_dt_page_overrides_right_margin',''),(7416,31421,'_dt_page_overrides_bottom_margin',''),(7417,31421,'_dt_page_overrides_left_margin',''),(7418,31421,'_dt_mobile_page_padding_top',''),(7419,31421,'_dt_mobile_page_padding_right',''),(7420,31421,'_dt_mobile_page_padding_bottom',''),(7421,31421,'_dt_mobile_page_padding_left',''),(7422,31421,'_dt_post_options_back_button',''),(7423,31421,'_dt_post_options_hide_thumbnail','0'),(7424,31421,'_dt_post_options_related_mode','same'),(7425,31421,'_dt_post_options_preview','normal'),(7426,31421,'_dt_microsite_primary_menu',''),(7427,31421,'_dt_microsite_split_left_menu',''),(7428,31421,'_dt_microsite_split_right_menu',''),(7429,31421,'_dt_microsite_mobile_menu',''),(7430,31421,'iawp_total_views','53'),(7431,31734,'_edit_last','2'),(7432,31734,'_thumbnail_id','31735'),(7433,31734,'_wp_page_template','default'),(7434,31734,'_wpb_vc_js_status','false'),(7435,31734,'_wc_memberships_force_public','no'),(7436,31734,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7437,31734,'_dt_sidebar_position','right'),(7438,31734,'_dt_sidebar_widgetarea_id','sidebar_1'),(7439,31734,'_dt_sidebar_hide_on_mobile','0'),(7440,31734,'_dt_footer_show','1'),(7441,31734,'_dt_footer_widgetarea_id','sidebar_2'),(7442,31734,'_dt_footer_hide_on_mobile','0'),(7443,31734,'_dt_header_title','enabled'),(7444,31734,'_dt_header_background','normal'),(7445,31734,'_dt_header_background_below_slideshow','disabled'),(7446,31734,'_dt_header_transparent_bg_color_scheme','light'),(7447,31734,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7448,31734,'_dt_header_transparent_top_bar_bg_opacity','25'),(7449,31734,'_dt_header_transparent_bg_color','#000000'),(7450,31734,'_dt_header_transparent_bg_opacity','50'),(7451,31734,'_dt_header_disabled_background','normal'),(7452,31734,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7453,31734,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7454,31734,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7455,31734,'_dt_header_disabled_transparent_bg_color','#000000'),(7456,31734,'_dt_header_disabled_transparent_bg_opacity','50'),(7457,31734,'_dt_page_overrides_top_margin',''),(7458,31734,'_dt_page_overrides_right_margin',''),(7459,31734,'_dt_page_overrides_bottom_margin',''),(7460,31734,'_dt_page_overrides_left_margin',''),(7461,31734,'_dt_mobile_page_padding_top',''),(7462,31734,'_dt_mobile_page_padding_right',''),(7463,31734,'_dt_mobile_page_padding_bottom',''),(7464,31734,'_dt_mobile_page_padding_left',''),(7465,31734,'_dt_post_options_back_button',''),(7466,31734,'_dt_post_options_hide_thumbnail','0'),(7467,31734,'_dt_post_options_related_mode','same'),(7468,31734,'_dt_post_options_preview','normal'),(7469,31734,'_dt_microsite_primary_menu',''),(7470,31734,'_dt_microsite_split_left_menu',''),(7471,31734,'_dt_microsite_split_right_menu',''),(7472,31734,'_dt_microsite_mobile_menu',''),(7473,31734,'iawp_total_views','11'),(7474,2668,'_dt_mobile_page_padding_left',''),(7475,2668,'_dt_mobile_page_padding_bottom',''),(7476,2668,'_dt_mobile_page_padding_right',''),(7477,2668,'_dt_mobile_page_padding_top',''),(7478,2668,'_dt_page_overrides_left_margin',''),(7479,2668,'_dt_page_overrides_bottom_margin',''),(7480,2668,'_dt_page_overrides_right_margin',''),(7481,2668,'_dt_page_overrides_top_margin',''),(7482,2668,'_dt_header_disabled_transparent_bg_opacity','0'),(7483,2668,'_dt_header_disabled_transparent_bg_color',''),(7484,2668,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),(7485,2668,'_dt_header_disabled_transparent_top_bar_bg_color',''),(7486,2668,'_dt_header_disabled_background','normal'),(7487,2668,'_wp_page_template','default'),(7488,2668,'_wc_memberships_force_public','no'),(7489,2668,'_edit_last','3'),(7490,2668,'_thumbnail_id','2613'),(7491,2668,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7492,2668,'_wpb_vc_js_status','false'),(7493,2668,'_dt_sidebar_position','right'),(7494,2668,'_dt_sidebar_widgetarea_id','sidebar_1'),(7495,2668,'_dt_sidebar_hide_on_mobile','0'),(7496,2668,'_dt_footer_show','1'),(7497,2668,'_dt_footer_widgetarea_id','sidebar_2'),(7498,2668,'_dt_footer_hide_on_mobile','0'),(7499,2668,'_dt_header_title','enabled'),(7500,2668,'_dt_header_background','normal'),(7501,2668,'_dt_header_background_below_slideshow','disabled'),(7502,2668,'_dt_header_transparent_bg_color','#000000'),(7503,2668,'_dt_header_transparent_bg_opacity','50'),(7504,2668,'_dt_header_transparent_bg_color_scheme','light'),(7505,2668,'_dt_slideshow_3d_layout','fullscreen-content'),(7506,2668,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(7507,2668,'_dt_microsite_mobile_menu',''),(7508,2668,'_dt_microsite_split_right_menu',''),(7509,2668,'_dt_microsite_primary_menu',''),(7510,2668,'_dt_microsite_split_left_menu',''),(7511,2668,'_dt_post_options_back_button',''),(7512,2668,'_dt_post_options_hide_thumbnail','0'),(7513,2668,'_dt_post_options_related_mode','same'),(7514,2668,'_dt_post_options_preview','normal'),(7515,2668,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7516,2668,'_dt_header_transparent_top_bar_bg_opacity','0'),(7517,2668,'_dt_header_transparent_top_bar_bg_color',''),(7518,2668,'iawp_total_views','76'),(7519,2671,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7520,2671,'_thumbnail_id','2837'),(7521,2671,'slide_template','default'),(7522,2671,'_wpb_vc_js_status','false'),(7523,2671,'_dt_sidebar_position','right'),(7524,2671,'_dt_sidebar_widgetarea_id','sidebar_1'),(7525,2671,'_dt_sidebar_hide_on_mobile','0'),(7526,2671,'_dt_footer_show','1'),(7527,2671,'_dt_footer_widgetarea_id','sidebar_2'),(7528,2671,'_dt_footer_hide_on_mobile','0'),(7529,2671,'_dt_header_title','enabled'),(7530,2671,'_dt_header_background','normal'),(7531,2671,'_dt_header_background_below_slideshow','disabled'),(7532,2671,'_dt_header_transparent_bg_color','#000000'),(7533,2671,'_dt_header_transparent_bg_opacity','50'),(7534,2671,'_dt_header_transparent_bg_color_scheme','light'),(7535,2671,'_dt_slideshow_mode','porthole'),(7536,2671,'_dt_slideshow_3d_layout','fullscreen-content'),(7537,2671,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(7538,2671,'_dt_slideshow_layout','fullwidth'),(7539,2671,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(7540,2671,'_dt_slideshow_scaling','fill'),(7541,2671,'_dt_slideshow_autoplay','paused'),(7542,2671,'_dt_slideshow_autoslide_interval','5000'),(7543,2671,'_dt_slideshow_hide_captions','0'),(7544,2671,'_dt_slideshow_photo_scroller_layout','fullscreen'),(7545,2671,'_dt_slideshow_photo_scroller_bg_color','#000000'),(7546,2671,'_dt_slideshow_photo_scroller_overlay','1'),(7547,2671,'_dt_slideshow_photo_scroller_top_padding','0'),(7548,2671,'_dt_slideshow_photo_scroller_bottom_padding','0'),(7549,2671,'_dt_slideshow_photo_scroller_side_paddings','0'),(7550,2671,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(7551,2671,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(7552,2671,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(7553,2671,'_dt_slideshow_photo_scroller_autoplay','play'),(7554,2671,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(7555,2671,'_dt_slideshow_photo_scroller_ls_max_width','100'),(7556,2671,'_dt_slideshow_photo_scroller_ls_min_width','0'),(7557,2671,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(7558,2671,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(7559,2671,'_dt_slideshow_photo_scroller_pt_max_width','100'),(7560,2671,'_dt_slideshow_photo_scroller_pt_min_width','0'),(7561,2671,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(7562,2671,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(7563,2671,'_dt_slideshow_revolution_slider','none'),(7564,2671,'_dt_slideshow_layer_slider','none'),(7565,2671,'_dt_slideshow_layer_show_bg_and_paddings','0'),(7566,2671,'_dt_fancy_header_title_aligment','center'),(7567,2671,'_dt_fancy_header_breadcrumbs','enabled'),(7568,2671,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(7569,2671,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(7570,2671,'_dt_fancy_header_title_mode','custom'),(7571,2671,'_dt_fancy_header_title_color_mode','color'),(7572,2671,'_dt_fancy_header_title_color','#ffffff'),(7573,2671,'_dt_fancy_header_subtitle_color_mode','color'),(7574,2671,'_dt_fancy_header_subtitle_color','#ffffff'),(7575,2671,'_dt_fancy_header_bg_color','#222222'),(7576,2671,'_dt_fancy_header_bg_repeat','no-repeat'),(7577,2671,'_dt_fancy_header_bg_position_x','center'),(7578,2671,'_dt_fancy_header_bg_position_y','center'),(7579,2671,'_dt_fancy_header_bg_fullscreen','1'),(7580,2671,'_dt_fancy_header_height','300'),(7581,2671,'_dt_post_options_back_button',''),(7582,2671,'_dt_post_options_hide_thumbnail','0'),(7583,2671,'_dt_post_options_related_mode','same'),(7584,2671,'_dt_post_options_preview','normal'),(7585,2671,'_dt_fancy_header_title_font_size','44'),(7586,2671,'_dt_fancy_header_title_line_height','50'),(7587,2671,'_dt_fancy_header_subtitle_font_size','30'),(7588,2671,'_dt_fancy_header_subtitle_line_height','36'),(7589,31063,'_edit_last','2'),(7590,31063,'_wp_page_template','default'),(7591,31063,'_wpb_vc_js_status','false'),(7592,31063,'_wc_memberships_force_public','no'),(7593,31063,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7594,31063,'_dt_sidebar_position','right'),(7595,31063,'_dt_sidebar_widgetarea_id','sidebar_1'),(7596,31063,'_dt_sidebar_hide_on_mobile','0'),(7597,31063,'_dt_footer_show','1'),(7598,31063,'_dt_footer_widgetarea_id','sidebar_2'),(7599,31063,'_dt_footer_hide_on_mobile','0'),(7600,31063,'_dt_header_title','enabled'),(7601,31063,'_dt_header_background','normal'),(7602,31063,'_dt_header_background_below_slideshow','disabled'),(7603,31063,'_dt_header_transparent_bg_color_scheme','light'),(7604,31063,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7605,31063,'_dt_header_transparent_top_bar_bg_opacity','25'),(7606,31063,'_dt_header_transparent_bg_color','#000000'),(7607,31063,'_dt_header_transparent_bg_opacity','50'),(7608,31063,'_dt_header_disabled_background','normal'),(7609,31063,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7610,31063,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7611,31063,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7612,31063,'_dt_header_disabled_transparent_bg_color','#000000'),(7613,31063,'_dt_header_disabled_transparent_bg_opacity','50'),(7614,31063,'_dt_page_overrides_top_margin',''),(7615,31063,'_dt_page_overrides_right_margin',''),(7616,31063,'_dt_page_overrides_bottom_margin',''),(7617,31063,'_dt_page_overrides_left_margin',''),(7618,31063,'_dt_mobile_page_padding_top',''),(7619,31063,'_dt_mobile_page_padding_right',''),(7620,31063,'_dt_mobile_page_padding_bottom',''),(7621,31063,'_dt_mobile_page_padding_left',''),(7622,31063,'_dt_post_options_back_button',''),(7623,31063,'_dt_post_options_hide_thumbnail','0'),(7624,31063,'_dt_post_options_related_mode','same'),(7625,31063,'_dt_post_options_preview','normal'),(7626,31063,'_dt_microsite_primary_menu',''),(7627,31063,'_dt_microsite_split_left_menu',''),(7628,31063,'_dt_microsite_split_right_menu',''),(7629,31063,'_dt_microsite_mobile_menu',''),(7630,31063,'_thumbnail_id','31083'),(7631,31258,'_edit_last','2'),(7632,31258,'_thumbnail_id','27748'),(7633,31258,'_wp_page_template','default'),(7634,31258,'_wpb_vc_js_status','false'),(7635,31258,'_wc_memberships_force_public','no'),(7636,31258,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7637,31258,'_dt_sidebar_position','right'),(7638,31258,'_dt_sidebar_widgetarea_id','sidebar_1'),(7639,31258,'_dt_sidebar_hide_on_mobile','0'),(7640,31258,'_dt_footer_show','1'),(7641,31258,'_dt_footer_widgetarea_id','sidebar_2'),(7642,31258,'_dt_footer_hide_on_mobile','0'),(7643,31258,'_dt_header_title','enabled'),(7644,31258,'_dt_header_background','normal'),(7645,31258,'_dt_header_background_below_slideshow','disabled'),(7646,31258,'_dt_header_transparent_bg_color_scheme','light'),(7647,31258,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7648,31258,'_dt_header_transparent_top_bar_bg_opacity','25'),(7649,31258,'_dt_header_transparent_bg_color','#000000'),(7650,31258,'_dt_header_transparent_bg_opacity','50'),(7651,31258,'_dt_header_disabled_background','normal'),(7652,31258,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7653,31258,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7654,31258,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7655,31258,'_dt_header_disabled_transparent_bg_color','#000000'),(7656,31258,'_dt_header_disabled_transparent_bg_opacity','50'),(7657,31258,'_dt_page_overrides_top_margin',''),(7658,31258,'_dt_page_overrides_right_margin',''),(7659,31258,'_dt_page_overrides_bottom_margin',''),(7660,31258,'_dt_page_overrides_left_margin',''),(7661,31258,'_dt_mobile_page_padding_top',''),(7662,31258,'_dt_mobile_page_padding_right',''),(7663,31258,'_dt_mobile_page_padding_bottom',''),(7664,31258,'_dt_mobile_page_padding_left',''),(7665,31258,'_dt_post_options_back_button',''),(7666,31258,'_dt_post_options_hide_thumbnail','0'),(7667,31258,'_dt_post_options_related_mode','same'),(7668,31258,'_dt_post_options_preview','normal'),(7669,31258,'_dt_microsite_primary_menu',''),(7670,31258,'_dt_microsite_split_left_menu',''),(7671,31258,'_dt_microsite_split_right_menu',''),(7672,31258,'_dt_microsite_mobile_menu',''),(7673,37375,'_dt_header_title','enabled'),(7674,37375,'_dt_footer_hide_on_mobile','0'),(7675,37375,'_dt_footer_widgetarea_id','sidebar_2'),(7676,37375,'_dt_footer_show','1'),(7677,37375,'_dt_sidebar_hide_on_mobile','0'),(7678,37375,'_dt_sidebar_widgetarea_id','sidebar_1'),(7679,37375,'_dt_sidebar_position','right'),(7680,37375,'_wpb_vc_js_status','false'),(7681,37375,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7682,37375,'_wp_page_template','default'),(7683,37375,'_wc_memberships_force_public','no'),(7684,37375,'_edit_last','1'),(7685,37375,'iawp_total_views','27'),(7686,37375,'_dt_header_background','normal'),(7687,37375,'_dt_header_background_below_slideshow','disabled'),(7688,37375,'_dt_header_transparent_bg_color_scheme','light'),(7689,37375,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7690,37375,'_dt_header_transparent_top_bar_bg_opacity','25'),(7691,37375,'_dt_header_transparent_bg_color','#000000'),(7692,37375,'_dt_header_transparent_bg_opacity','50'),(7693,37375,'_dt_header_disabled_background','normal'),(7694,37375,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7695,37375,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7696,37375,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7697,37375,'_dt_header_disabled_transparent_bg_color','#000000'),(7698,37375,'_dt_header_disabled_transparent_bg_opacity','50'),(7699,37375,'_dt_page_overrides_top_margin',''),(7700,37375,'_dt_page_overrides_right_margin',''),(7701,37375,'_dt_page_overrides_bottom_margin',''),(7702,37375,'_dt_page_overrides_left_margin',''),(7703,37375,'_dt_mobile_page_padding_top',''),(7704,37375,'_dt_mobile_page_padding_right',''),(7705,37375,'_dt_mobile_page_padding_bottom',''),(7706,37375,'_dt_mobile_page_padding_left',''),(7707,37375,'_dt_post_options_back_button',''),(7708,37375,'_dt_post_options_hide_thumbnail','0'),(7709,37375,'_dt_post_options_related_mode','same'),(7710,37375,'_dt_post_options_preview','normal'),(7711,37375,'_dt_microsite_primary_menu',''),(7712,37375,'_dt_microsite_split_left_menu',''),(7713,37375,'_dt_microsite_split_right_menu',''),(7714,37375,'_dt_microsite_mobile_menu',''),(7715,37375,'_thumbnail_id','34558'),(7716,30642,'_edit_last','2'),(7717,30642,'_wp_page_template','default'),(7718,30642,'_wpb_vc_js_status','false'),(7719,30642,'_wc_memberships_force_public','no'),(7720,30642,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7721,30642,'_dt_sidebar_position','right'),(7722,30642,'_dt_sidebar_widgetarea_id','sidebar_1'),(7723,30642,'_dt_sidebar_hide_on_mobile','0'),(7724,30642,'_dt_footer_show','1'),(7725,30642,'_dt_footer_widgetarea_id','sidebar_2'),(7726,30642,'_dt_footer_hide_on_mobile','0'),(7727,30642,'_dt_header_title','enabled'),(7728,30642,'_dt_header_background','normal'),(7729,30642,'_dt_header_background_below_slideshow','disabled'),(7730,30642,'_dt_header_transparent_bg_color_scheme','light'),(7731,30642,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7732,30642,'_dt_header_transparent_top_bar_bg_opacity','25'),(7733,30642,'_dt_header_transparent_bg_color','#000000'),(7734,30642,'_dt_header_transparent_bg_opacity','50'),(7735,30642,'_dt_header_disabled_background','normal'),(7736,30642,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7737,30642,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7738,30642,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7739,30642,'_dt_header_disabled_transparent_bg_color','#000000'),(7740,30642,'_dt_header_disabled_transparent_bg_opacity','50'),(7741,30642,'_dt_page_overrides_top_margin',''),(7742,30642,'_dt_page_overrides_right_margin',''),(7743,30642,'_dt_page_overrides_bottom_margin',''),(7744,30642,'_dt_page_overrides_left_margin',''),(7745,30642,'_dt_mobile_page_padding_top',''),(7746,30642,'_dt_mobile_page_padding_right',''),(7747,30642,'_dt_mobile_page_padding_bottom',''),(7748,30642,'_dt_mobile_page_padding_left',''),(7749,30642,'_dt_post_options_back_button',''),(7750,30642,'_dt_post_options_hide_thumbnail','0'),(7751,30642,'_dt_post_options_related_mode','same'),(7752,30642,'_dt_post_options_preview','normal'),(7753,30642,'_dt_microsite_primary_menu',''),(7754,30642,'_dt_microsite_split_left_menu',''),(7755,30642,'_dt_microsite_split_right_menu',''),(7756,30642,'_dt_microsite_mobile_menu',''),(7757,30642,'_thumbnail_id','30650'),(7758,30642,'_oembed_22a2c42a99945c40c5708f1e4a8cc928','<iframe title=\"The Kettlebell Swing\" width=\"837\" height=\"628\" src=\"https://www.youtube.com/embed/Z8KrxCh3Gzo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(7759,30642,'_oembed_time_22a2c42a99945c40c5708f1e4a8cc928','1639393510'),(7760,30642,'_oembed_a86854a8fd1b1aa61d601b129dc323c9','<iframe title=\"The Kettlebell Swing\" width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/Z8KrxCh3Gzo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(7761,30642,'_oembed_time_a86854a8fd1b1aa61d601b129dc323c9','1639393532'),(7762,30642,'_oembed_c6df5105e02d5129ee98a73dfaa5721e','<iframe title=\"The Kettlebell Swing\" width=\"841\" height=\"631\" src=\"https://www.youtube.com/embed/Z8KrxCh3Gzo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(7763,30642,'_oembed_time_c6df5105e02d5129ee98a73dfaa5721e','1639393533'),(7764,30642,'iawp_total_views','51'),(7765,30657,'_edit_last','2'),(7766,30657,'_wp_page_template','default'),(7767,30657,'_wpb_vc_js_status','false'),(7768,30657,'_wc_memberships_force_public','no'),(7769,30657,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7770,30657,'_dt_sidebar_position','right'),(7771,30657,'_dt_sidebar_widgetarea_id','sidebar_1'),(7772,30657,'_dt_sidebar_hide_on_mobile','0'),(7773,30657,'_dt_footer_show','1'),(7774,30657,'_dt_footer_widgetarea_id','sidebar_2'),(7775,30657,'_dt_footer_hide_on_mobile','0'),(7776,30657,'_dt_header_title','enabled'),(7777,30657,'_dt_header_background','normal'),(7778,30657,'_dt_header_background_below_slideshow','disabled'),(7779,30657,'_dt_header_transparent_bg_color_scheme','light'),(7780,30657,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7781,30657,'_dt_header_transparent_top_bar_bg_opacity','25'),(7782,30657,'_dt_header_transparent_bg_color','#000000'),(7783,30657,'_dt_header_transparent_bg_opacity','50'),(7784,30657,'_dt_header_disabled_background','normal'),(7785,30657,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7786,30657,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7787,30657,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7788,30657,'_dt_header_disabled_transparent_bg_color','#000000'),(7789,30657,'_dt_header_disabled_transparent_bg_opacity','50'),(7790,30657,'_dt_page_overrides_top_margin',''),(7791,30657,'_dt_page_overrides_right_margin',''),(7792,30657,'_dt_page_overrides_bottom_margin',''),(7793,30657,'_dt_page_overrides_left_margin',''),(7794,30657,'_dt_mobile_page_padding_top',''),(7795,30657,'_dt_mobile_page_padding_right',''),(7796,30657,'_dt_mobile_page_padding_bottom',''),(7797,30657,'_dt_mobile_page_padding_left',''),(7798,30657,'_dt_post_options_back_button',''),(7799,30657,'_dt_post_options_hide_thumbnail','0'),(7800,30657,'_dt_post_options_related_mode','same'),(7801,30657,'_dt_post_options_preview','normal'),(7802,30657,'_dt_microsite_primary_menu',''),(7803,30657,'_dt_microsite_split_left_menu',''),(7804,30657,'_dt_microsite_split_right_menu',''),(7805,30657,'_dt_microsite_mobile_menu',''),(7806,30657,'_thumbnail_id','30660'),(7807,30719,'_edit_last','17'),(7808,30719,'_wp_page_template','default'),(7809,30719,'_wpb_vc_js_status','false'),(7810,30719,'_wc_memberships_force_public','no'),(7811,30719,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7812,30719,'_dt_sidebar_position','right'),(7813,30719,'_dt_sidebar_widgetarea_id','sidebar_1'),(7814,30719,'_dt_sidebar_hide_on_mobile','0'),(7815,30719,'_dt_footer_show','1'),(7816,30719,'_dt_footer_widgetarea_id','sidebar_2'),(7817,30719,'_dt_footer_hide_on_mobile','0'),(7818,30719,'_dt_header_title','enabled'),(7819,30719,'_dt_header_background','normal'),(7820,30719,'_dt_header_background_below_slideshow','disabled'),(7821,30719,'_dt_header_transparent_bg_color_scheme','light'),(7822,30719,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7823,30719,'_dt_header_transparent_top_bar_bg_opacity','25'),(7824,30719,'_dt_header_transparent_bg_color','#000000'),(7825,30719,'_dt_header_transparent_bg_opacity','50'),(7826,30719,'_dt_header_disabled_background','normal'),(7827,30719,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7828,30719,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7829,30719,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7830,30719,'_dt_header_disabled_transparent_bg_color','#000000'),(7831,30719,'_dt_header_disabled_transparent_bg_opacity','50'),(7832,30719,'_dt_page_overrides_top_margin',''),(7833,30719,'_dt_page_overrides_right_margin',''),(7834,30719,'_dt_page_overrides_bottom_margin',''),(7835,30719,'_dt_page_overrides_left_margin',''),(7836,30719,'_dt_mobile_page_padding_top',''),(7837,30719,'_dt_mobile_page_padding_right',''),(7838,30719,'_dt_mobile_page_padding_bottom',''),(7839,30719,'_dt_mobile_page_padding_left',''),(7840,30719,'_dt_post_options_back_button',''),(7841,30719,'_dt_post_options_hide_thumbnail','0'),(7842,30719,'_dt_post_options_related_mode','same'),(7843,30719,'_dt_post_options_preview','normal'),(7844,30719,'_dt_microsite_primary_menu',''),(7845,30719,'_dt_microsite_split_left_menu',''),(7846,30719,'_dt_microsite_split_right_menu',''),(7847,30719,'_dt_microsite_mobile_menu',''),(7848,30719,'_oembed_13cee461ceaf1a3eb0f832bcb868d204','{{unknown}}'),(7849,30719,'_thumbnail_id','30721'),(7850,30719,'_wpb_post_custom_layout','default'),(7851,30719,'iawp_total_views','37'),(7852,2720,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(7853,2720,'_edit_last','3'),(7854,2720,'_thumbnail_id','2723'),(7855,2720,'slide_template','default'),(7856,2720,'_wpb_vc_js_status','false'),(7857,2720,'_dt_sidebar_position','right'),(7858,2720,'_dt_sidebar_widgetarea_id','sidebar_1'),(7859,2720,'_dt_sidebar_hide_on_mobile','0'),(7860,2720,'_dt_footer_show','1'),(7861,2720,'_dt_footer_widgetarea_id','sidebar_2'),(7862,2720,'_dt_footer_hide_on_mobile','0'),(7863,2720,'_dt_header_title','enabled'),(7864,2720,'_dt_header_background','normal'),(7865,2720,'_dt_header_background_below_slideshow','disabled'),(7866,2720,'_dt_header_transparent_bg_color','#000000'),(7867,2720,'_dt_header_transparent_bg_opacity','50'),(7868,2720,'_dt_header_transparent_bg_color_scheme','light'),(7869,2720,'_dt_slideshow_mode','porthole'),(7870,2720,'_dt_slideshow_3d_layout','fullscreen-content'),(7871,2720,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(7872,2720,'_dt_slideshow_layout','fullwidth'),(7873,2720,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(7874,2720,'_dt_slideshow_scaling','fill'),(7875,2720,'_dt_slideshow_autoplay','paused'),(7876,2720,'_dt_slideshow_autoslide_interval','5000'),(7877,2720,'_dt_slideshow_hide_captions','0'),(7878,2720,'_dt_slideshow_photo_scroller_layout','fullscreen'),(7879,2720,'_dt_slideshow_photo_scroller_bg_color','#000000'),(7880,2720,'_dt_slideshow_photo_scroller_overlay','1'),(7881,2720,'_dt_slideshow_photo_scroller_top_padding','0'),(7882,2720,'_dt_slideshow_photo_scroller_bottom_padding','0'),(7883,2720,'_dt_slideshow_photo_scroller_side_paddings','0'),(7884,2720,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(7885,2720,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(7886,2720,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(7887,2720,'_dt_slideshow_photo_scroller_autoplay','play'),(7888,2720,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(7889,2720,'_dt_slideshow_photo_scroller_ls_max_width','100'),(7890,2720,'_dt_slideshow_photo_scroller_ls_min_width','0'),(7891,2720,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(7892,2720,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(7893,2720,'_dt_slideshow_photo_scroller_pt_max_width','100'),(7894,2720,'_dt_slideshow_photo_scroller_pt_min_width','0'),(7895,2720,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(7896,2720,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(7897,2720,'_dt_slideshow_revolution_slider','none'),(7898,2720,'_dt_slideshow_layer_slider','none'),(7899,2720,'_dt_slideshow_layer_show_bg_and_paddings','0'),(7900,2720,'_dt_fancy_header_title_aligment','center'),(7901,2720,'_dt_fancy_header_breadcrumbs','enabled'),(7902,2720,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(7903,2720,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(7904,2720,'_dt_fancy_header_title_mode','custom'),(7905,2720,'_dt_fancy_header_title_color_mode','color'),(7906,2720,'_dt_fancy_header_title_color','#ffffff'),(7907,2720,'_dt_fancy_header_subtitle_color_mode','color'),(7908,2720,'_dt_fancy_header_subtitle_color','#ffffff'),(7909,2720,'_dt_fancy_header_bg_color','#222222'),(7910,2720,'_dt_fancy_header_bg_repeat','no-repeat'),(7911,2720,'_dt_fancy_header_bg_position_x','center'),(7912,2720,'_dt_fancy_header_bg_position_y','center'),(7913,2720,'_dt_fancy_header_bg_fullscreen','1'),(7914,2720,'_dt_fancy_header_height','300'),(7915,2720,'_dt_post_options_back_button',''),(7916,2720,'_dt_post_options_hide_thumbnail','0'),(7917,2720,'_dt_post_options_related_mode','same'),(7918,2720,'_dt_post_options_preview','normal'),(7919,2720,'_dt_fancy_header_title_font_size','44'),(7920,2720,'_dt_fancy_header_title_line_height','50'),(7921,2720,'_dt_fancy_header_subtitle_font_size','30'),(7922,2720,'_dt_fancy_header_subtitle_line_height','36'),(7923,2720,'_oembed_086a15f190549f4b52d32f2aaeff5b90','{{unknown}}'),(7924,2720,'_oembed_c2438f866c08e2445f7a9a44d1cbed49','{{unknown}}'),(7925,2720,'_oembed_ab1669aace9e509c3048792f1b306eee','<blockquote class=\"wp-embedded-content\" data-secret=\"qThLKh6eb2\"><a href=\"https://rad.washington.edu/muscle-atlas/adductor-magnus/\">Adductor Magnus</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://rad.washington.edu/muscle-atlas/adductor-magnus/embed/#?secret=qThLKh6eb2\" data-secret=\"qThLKh6eb2\" width=\"600\" height=\"338\" title=\"&#8220;Adductor Magnus&#8221; &#8212; UW Radiology\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(7926,2720,'_oembed_time_ab1669aace9e509c3048792f1b306eee','1518758048'),(7927,2720,'_oembed_eaeb0832f13a41d37c4f8fb71d05c270','{{unknown}}'),(7928,2720,'_oembed_d9447e625df928b50a4482a2b2504fe0','{{unknown}}'),(7929,2720,'_oembed_f0fc4a76646873184516791d928106a6','{{unknown}}'),(7930,2720,'_oembed_ae358e4c9f488cc9773727571becd6d9','<blockquote class=\"wp-embedded-content\" data-secret=\"28FdU2NALW\"><a href=\"https://www.yoganatomy.com/adductor-magnus-muscle/\">Adductor Magnus Muscle</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://www.yoganatomy.com/adductor-magnus-muscle/embed/#?secret=28FdU2NALW\" data-secret=\"28FdU2NALW\" width=\"600\" height=\"338\" title=\"&#8220;Adductor Magnus Muscle&#8221; &#8212; Yoganatomy\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(7931,2720,'_oembed_time_ae358e4c9f488cc9773727571becd6d9','1518758054'),(7932,2720,'_oembed_f43307af3dbefec8bceb91f6a48118fe','<blockquote class=\"wp-embedded-content\" data-secret=\"Fc4e9WnsBI\"><a href=\"https://ericcressey.com/strength-and-conditioning-textbook-synergists-and-antagonists\">What the Strength and Conditioning Textbook Never Taught You: Synergists and Antagonists</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://ericcressey.com/strength-and-conditioning-textbook-synergists-and-antagonists/embed#?secret=Fc4e9WnsBI\" data-secret=\"Fc4e9WnsBI\" width=\"600\" height=\"338\" title=\"&#8220;What the Strength and Conditioning Textbook Never Taught You: Synergists and Antagonists&#8221; &#8212; Eric Cressey | High Performance Training, Personal Training\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(7933,2720,'_oembed_time_f43307af3dbefec8bceb91f6a48118fe','1518758056'),(7934,2720,'_oembed_eda229e393795d832c3ce9dbd7171c2a','{{unknown}}'),(7935,2720,'_oembed_e5e3ebee3bd50b15ff6a7b770b817034','{{unknown}}'),(7936,2720,'_oembed_444ea55d5010f1ca00c5c4d73a98b635','{{unknown}}'),(7937,2720,'_oembed_4e0637c06cb7c859734956b1fe43881e','{{unknown}}'),(7938,2720,'_oembed_2c37bc8cf0363f0c1eaa81cc99e0813f','<blockquote class=\"wp-embedded-content\" data-secret=\"BCEf3S2dEn\"><a href=\"https://www.strengthandconditioningresearch.com/muscles/adductors/\">Adductors</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://www.strengthandconditioningresearch.com/muscles/adductors/embed/#?secret=BCEf3S2dEn\" data-secret=\"BCEf3S2dEn\" width=\"600\" height=\"338\" title=\"&#8220;Adductors&#8221; &#8212; Strength &amp; Conditioning Research\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(7939,2720,'_oembed_time_2c37bc8cf0363f0c1eaa81cc99e0813f','1518758069'),(7940,30273,'_edit_last','2'),(7941,30273,'_thumbnail_id','30274'),(7942,30273,'_wp_page_template','default'),(7943,30273,'_wpb_vc_js_status','false'),(7944,30273,'_wc_memberships_force_public','no'),(7945,30273,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7946,30273,'_dt_sidebar_position','right'),(7947,30273,'_dt_sidebar_widgetarea_id','sidebar_1'),(7948,30273,'_dt_sidebar_hide_on_mobile','0'),(7949,30273,'_dt_footer_show','1'),(7950,30273,'_dt_footer_widgetarea_id','sidebar_2'),(7951,30273,'_dt_footer_hide_on_mobile','0'),(7952,30273,'_dt_header_title','enabled'),(7953,30273,'_dt_header_background','normal'),(7954,30273,'_dt_header_background_below_slideshow','disabled'),(7955,30273,'_dt_header_transparent_bg_color_scheme','light'),(7956,30273,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(7957,30273,'_dt_header_transparent_top_bar_bg_opacity','25'),(7958,30273,'_dt_header_transparent_bg_color','#000000'),(7959,30273,'_dt_header_transparent_bg_opacity','50'),(7960,30273,'_dt_header_disabled_background','normal'),(7961,30273,'_dt_header_disabled_transparent_bg_color_scheme','light'),(7962,30273,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(7963,30273,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(7964,30273,'_dt_header_disabled_transparent_bg_color','#000000'),(7965,30273,'_dt_header_disabled_transparent_bg_opacity','50'),(7966,30273,'_dt_page_overrides_top_margin',''),(7967,30273,'_dt_page_overrides_right_margin',''),(7968,30273,'_dt_page_overrides_bottom_margin',''),(7969,30273,'_dt_page_overrides_left_margin',''),(7970,30273,'_dt_mobile_page_padding_top',''),(7971,30273,'_dt_mobile_page_padding_right',''),(7972,30273,'_dt_mobile_page_padding_bottom',''),(7973,30273,'_dt_mobile_page_padding_left',''),(7974,30273,'_dt_post_options_back_button',''),(7975,30273,'_dt_post_options_hide_thumbnail','0'),(7976,30273,'_dt_post_options_related_mode','same'),(7977,30273,'_dt_post_options_preview','normal'),(7978,30273,'_dt_microsite_primary_menu',''),(7979,30273,'_dt_microsite_split_left_menu',''),(7980,30273,'_dt_microsite_split_right_menu',''),(7981,30273,'_dt_microsite_mobile_menu',''),(7982,30431,'_edit_last','2'),(7983,30431,'_oembed_2abca27098edaff6ee66e78c53b7b1bd','<iframe title=\"The Turkish Get Up\" width=\"1142\" height=\"857\" src=\"https://www.youtube.com/embed/JnOIuIfMVQM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(7984,30431,'_oembed_time_2abca27098edaff6ee66e78c53b7b1bd','1638271847'),(7985,30431,'_thumbnail_id','21937'),(7986,30431,'_wp_page_template','default'),(7987,30431,'_wpb_vc_js_status','false'),(7988,30431,'_wc_memberships_force_public','no'),(7989,30431,'_wc_memberships_use_custom_post_content_restricted_message','no'),(7990,30431,'_dt_sidebar_position','right'),(7991,30431,'_dt_sidebar_widgetarea_id','sidebar_1'),(7992,30431,'_dt_sidebar_hide_on_mobile','0'),(7993,30431,'_dt_footer_show','1'),(7994,30431,'_dt_footer_widgetarea_id','sidebar_2'),(7995,30431,'_dt_footer_hide_on_mobile','0'),(7996,30431,'_dt_header_title','enabled'),(7997,30431,'_dt_header_background','normal'),(7998,30431,'_dt_header_background_below_slideshow','disabled'),(7999,30431,'_dt_header_transparent_bg_color_scheme','light'),(8000,30431,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(8001,30431,'_dt_header_transparent_top_bar_bg_opacity','25'),(8002,30431,'_dt_header_transparent_bg_color','#000000'),(8003,30431,'_dt_header_transparent_bg_opacity','50'),(8004,30431,'_dt_header_disabled_background','normal'),(8005,30431,'_dt_header_disabled_transparent_bg_color_scheme','light'),(8006,30431,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(8007,30431,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(8008,30431,'_dt_header_disabled_transparent_bg_color','#000000'),(8009,30431,'_dt_header_disabled_transparent_bg_opacity','50'),(8010,30431,'_dt_page_overrides_top_margin',''),(8011,30431,'_dt_page_overrides_right_margin',''),(8012,30431,'_dt_page_overrides_bottom_margin',''),(8013,30431,'_dt_page_overrides_left_margin',''),(8014,30431,'_dt_mobile_page_padding_top',''),(8015,30431,'_dt_mobile_page_padding_right',''),(8016,30431,'_dt_mobile_page_padding_bottom',''),(8017,30431,'_dt_mobile_page_padding_left',''),(8018,30431,'_dt_post_options_back_button',''),(8019,30431,'_dt_post_options_hide_thumbnail','0'),(8020,30431,'_dt_post_options_related_mode','same'),(8021,30431,'_dt_post_options_preview','normal'),(8022,30431,'_dt_microsite_primary_menu',''),(8023,30431,'_dt_microsite_split_left_menu',''),(8024,30431,'_dt_microsite_split_right_menu',''),(8025,30431,'_dt_microsite_mobile_menu',''),(8026,30431,'_oembed_c7cfabe27c88812f4b0fc06581af3f43','<iframe title=\"The Turkish Get Up\" width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/JnOIuIfMVQM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(8027,30431,'_oembed_63785a6cc7b132ac0b8314401ef9f344','<iframe title=\"The Turkish Get Up\" width=\"1146\" height=\"860\" src=\"https://www.youtube.com/embed/JnOIuIfMVQM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(8028,30431,'_oembed_time_63785a6cc7b132ac0b8314401ef9f344','1638272637'),(8029,30431,'_oembed_time_c7cfabe27c88812f4b0fc06581af3f43','1638272637'),(8030,30439,'_edit_last','2'),(8031,30439,'_wp_page_template','default'),(8032,30439,'_wpb_vc_js_status','false'),(8033,30439,'_wc_memberships_force_public','no'),(8034,30439,'_wc_memberships_use_custom_post_content_restricted_message','no'),(8035,30439,'_dt_sidebar_position','right'),(8036,30439,'_dt_sidebar_widgetarea_id','sidebar_1'),(8037,30439,'_dt_sidebar_hide_on_mobile','0'),(8038,30439,'_dt_footer_show','1'),(8039,30439,'_dt_footer_widgetarea_id','sidebar_2'),(8040,30439,'_dt_footer_hide_on_mobile','0'),(8041,30439,'_dt_header_title','enabled'),(8042,30439,'_dt_header_background','normal'),(8043,30439,'_dt_header_background_below_slideshow','disabled'),(8044,30439,'_dt_header_transparent_bg_color_scheme','light'),(8045,30439,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(8046,30439,'_dt_header_transparent_top_bar_bg_opacity','25'),(8047,30439,'_dt_header_transparent_bg_color','#000000'),(8048,30439,'_dt_header_transparent_bg_opacity','50'),(8049,30439,'_dt_header_disabled_background','normal'),(8050,30439,'_dt_header_disabled_transparent_bg_color_scheme','light'),(8051,30439,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(8052,30439,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(8053,30439,'_dt_header_disabled_transparent_bg_color','#000000'),(8054,30439,'_dt_header_disabled_transparent_bg_opacity','50'),(8055,30439,'_dt_page_overrides_top_margin',''),(8056,30439,'_dt_page_overrides_right_margin',''),(8057,30439,'_dt_page_overrides_bottom_margin',''),(8058,30439,'_dt_page_overrides_left_margin',''),(8059,30439,'_dt_mobile_page_padding_top',''),(8060,30439,'_dt_mobile_page_padding_right',''),(8061,30439,'_dt_mobile_page_padding_bottom',''),(8062,30439,'_dt_mobile_page_padding_left',''),(8063,30439,'_dt_post_options_back_button',''),(8064,30439,'_dt_post_options_hide_thumbnail','0'),(8065,30439,'_dt_post_options_related_mode','same'),(8066,30439,'_dt_post_options_preview','normal'),(8067,30439,'_dt_microsite_primary_menu',''),(8068,30439,'_dt_microsite_split_left_menu',''),(8069,30439,'_dt_microsite_split_right_menu',''),(8070,30439,'_dt_microsite_mobile_menu',''),(8071,30439,'_thumbnail_id','26161'),(8072,30500,'_edit_last','2'),(8073,30500,'_wp_page_template','default'),(8074,30500,'_wpb_vc_js_status','false'),(8075,30500,'_wc_memberships_force_public','no'),(8076,30500,'_wc_memberships_use_custom_post_content_restricted_message','no'),(8077,30500,'_dt_sidebar_position','right'),(8078,30500,'_dt_sidebar_widgetarea_id','sidebar_1'),(8079,30500,'_dt_sidebar_hide_on_mobile','0'),(8080,30500,'_dt_footer_show','1'),(8081,30500,'_dt_footer_widgetarea_id','sidebar_2'),(8082,30500,'_dt_footer_hide_on_mobile','0'),(8083,30500,'_dt_header_title','enabled'),(8084,30500,'_dt_header_background','normal'),(8085,30500,'_dt_header_background_below_slideshow','disabled'),(8086,30500,'_dt_header_transparent_bg_color_scheme','light'),(8087,30500,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(8088,30500,'_dt_header_transparent_top_bar_bg_opacity','25'),(8089,30500,'_dt_header_transparent_bg_color','#000000'),(8090,30500,'_dt_header_transparent_bg_opacity','50'),(8091,30500,'_dt_header_disabled_background','normal'),(8092,30500,'_dt_header_disabled_transparent_bg_color_scheme','light'),(8093,30500,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(8094,30500,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(8095,30500,'_dt_header_disabled_transparent_bg_color','#000000'),(8096,30500,'_dt_header_disabled_transparent_bg_opacity','50'),(8097,30500,'_dt_page_overrides_top_margin',''),(8098,30500,'_dt_page_overrides_right_margin',''),(8099,30500,'_dt_page_overrides_bottom_margin',''),(8100,30500,'_dt_page_overrides_left_margin',''),(8101,30500,'_dt_mobile_page_padding_top',''),(8102,30500,'_dt_mobile_page_padding_right',''),(8103,30500,'_dt_mobile_page_padding_bottom',''),(8104,30500,'_dt_mobile_page_padding_left',''),(8105,30500,'_dt_post_options_back_button',''),(8106,30500,'_dt_post_options_hide_thumbnail','0'),(8107,30500,'_dt_post_options_related_mode','same'),(8108,30500,'_dt_post_options_preview','normal'),(8109,30500,'_dt_microsite_primary_menu',''),(8110,30500,'_dt_microsite_split_left_menu',''),(8111,30500,'_dt_microsite_split_right_menu',''),(8112,30500,'_dt_microsite_mobile_menu',''),(8113,30500,'_thumbnail_id','30503'),(8114,30500,'_wp_old_date','2021-12-03'),(8115,30500,'iawp_total_views','70'),(8116,30506,'_edit_last','2'),(8117,30506,'_wp_page_template','default'),(8118,30506,'_wpb_vc_js_status','false'),(8119,30506,'_wc_memberships_force_public','no'),(8120,30506,'_wc_memberships_use_custom_post_content_restricted_message','no'),(8121,30506,'_dt_sidebar_position','right'),(8122,30506,'_dt_sidebar_widgetarea_id','sidebar_1'),(8123,30506,'_dt_sidebar_hide_on_mobile','0'),(8124,30506,'_dt_footer_show','1'),(8125,30506,'_dt_footer_widgetarea_id','sidebar_2'),(8126,30506,'_dt_footer_hide_on_mobile','0'),(8127,30506,'_dt_header_title','enabled'),(8128,30506,'_dt_header_background','normal'),(8129,30506,'_dt_header_background_below_slideshow','disabled'),(8130,30506,'_dt_header_transparent_bg_color_scheme','light'),(8131,30506,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(8132,30506,'_dt_header_transparent_top_bar_bg_opacity','25'),(8133,30506,'_dt_header_transparent_bg_color','#000000'),(8134,30506,'_dt_header_transparent_bg_opacity','50'),(8135,30506,'_dt_header_disabled_background','normal'),(8136,30506,'_dt_header_disabled_transparent_bg_color_scheme','light'),(8137,30506,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(8138,30506,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(8139,30506,'_dt_header_disabled_transparent_bg_color','#000000'),(8140,30506,'_dt_header_disabled_transparent_bg_opacity','50'),(8141,30506,'_dt_page_overrides_top_margin',''),(8142,30506,'_dt_page_overrides_right_margin',''),(8143,30506,'_dt_page_overrides_bottom_margin',''),(8144,30506,'_dt_page_overrides_left_margin',''),(8145,30506,'_dt_mobile_page_padding_top',''),(8146,30506,'_dt_mobile_page_padding_right',''),(8147,30506,'_dt_mobile_page_padding_bottom',''),(8148,30506,'_dt_mobile_page_padding_left',''),(8149,30506,'_dt_post_options_back_button',''),(8150,30506,'_dt_post_options_hide_thumbnail','0'),(8151,30506,'_dt_post_options_related_mode','same'),(8152,30506,'_dt_post_options_preview','normal'),(8153,30506,'_dt_microsite_primary_menu',''),(8154,30506,'_dt_microsite_split_left_menu',''),(8155,30506,'_dt_microsite_split_right_menu',''),(8156,30506,'_dt_microsite_mobile_menu',''),(8157,30506,'_thumbnail_id','30590'),(8158,30528,'_edit_last','2'),(8159,30528,'_wp_page_template','default'),(8160,30528,'_wpb_vc_js_status','false'),(8161,30528,'_wc_memberships_force_public','no'),(8162,30528,'_wc_memberships_use_custom_post_content_restricted_message','no'),(8163,30528,'_dt_sidebar_position','right'),(8164,30528,'_dt_sidebar_widgetarea_id','sidebar_1'),(8165,30528,'_dt_sidebar_hide_on_mobile','0'),(8166,30528,'_dt_footer_show','1'),(8167,30528,'_dt_footer_widgetarea_id','sidebar_2'),(8168,30528,'_dt_footer_hide_on_mobile','0'),(8169,30528,'_dt_header_title','enabled'),(8170,30528,'_dt_header_background','normal'),(8171,30528,'_dt_header_background_below_slideshow','disabled'),(8172,30528,'_dt_header_transparent_bg_color_scheme','light'),(8173,30528,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(8174,30528,'_dt_header_transparent_top_bar_bg_opacity','25'),(8175,30528,'_dt_header_transparent_bg_color','#000000'),(8176,30528,'_dt_header_transparent_bg_opacity','50'),(8177,30528,'_dt_header_disabled_background','normal'),(8178,30528,'_dt_header_disabled_transparent_bg_color_scheme','light'),(8179,30528,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(8180,30528,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(8181,30528,'_dt_header_disabled_transparent_bg_color','#000000'),(8182,30528,'_dt_header_disabled_transparent_bg_opacity','50'),(8183,30528,'_dt_page_overrides_top_margin',''),(8184,30528,'_dt_page_overrides_right_margin',''),(8185,30528,'_dt_page_overrides_bottom_margin',''),(8186,30528,'_dt_page_overrides_left_margin',''),(8187,30528,'_dt_mobile_page_padding_top',''),(8188,30528,'_dt_mobile_page_padding_right',''),(8189,30528,'_dt_mobile_page_padding_bottom',''),(8190,30528,'_dt_mobile_page_padding_left',''),(8191,30528,'_dt_post_options_back_button',''),(8192,30528,'_dt_post_options_hide_thumbnail','0'),(8193,30528,'_dt_post_options_related_mode','same'),(8194,30528,'_dt_post_options_preview','normal'),(8195,30528,'_dt_microsite_primary_menu',''),(8196,30528,'_dt_microsite_split_left_menu',''),(8197,30528,'_dt_microsite_split_right_menu',''),(8198,30528,'_dt_microsite_mobile_menu',''),(8199,30528,'_thumbnail_id','30611'),(8200,30531,'_edit_last','2'),(8201,30531,'_wp_page_template','default'),(8202,30531,'_wpb_vc_js_status','false'),(8203,30531,'_wc_memberships_force_public','no'),(8204,30531,'_wc_memberships_use_custom_post_content_restricted_message','no'),(8205,30531,'_dt_sidebar_position','right'),(8206,30531,'_dt_sidebar_widgetarea_id','sidebar_1'),(8207,30531,'_dt_sidebar_hide_on_mobile','0'),(8208,30531,'_dt_footer_show','1'),(8209,30531,'_dt_footer_widgetarea_id','sidebar_2'),(8210,30531,'_dt_footer_hide_on_mobile','0'),(8211,30531,'_dt_header_title','enabled'),(8212,30531,'_dt_header_background','normal'),(8213,30531,'_dt_header_background_below_slideshow','disabled'),(8214,30531,'_dt_header_transparent_bg_color_scheme','light'),(8215,30531,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(8216,30531,'_dt_header_transparent_top_bar_bg_opacity','25'),(8217,30531,'_dt_header_transparent_bg_color','#000000'),(8218,30531,'_dt_header_transparent_bg_opacity','50'),(8219,30531,'_dt_header_disabled_background','normal'),(8220,30531,'_dt_header_disabled_transparent_bg_color_scheme','light'),(8221,30531,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(8222,30531,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(8223,30531,'_dt_header_disabled_transparent_bg_color','#000000'),(8224,30531,'_dt_header_disabled_transparent_bg_opacity','50'),(8225,30531,'_dt_page_overrides_top_margin',''),(8226,30531,'_dt_page_overrides_right_margin',''),(8227,30531,'_dt_page_overrides_bottom_margin',''),(8228,30531,'_dt_page_overrides_left_margin',''),(8229,30531,'_dt_mobile_page_padding_top',''),(8230,30531,'_dt_mobile_page_padding_right',''),(8231,30531,'_dt_mobile_page_padding_bottom',''),(8232,30531,'_dt_mobile_page_padding_left',''),(8233,30531,'_dt_post_options_back_button',''),(8234,30531,'_dt_post_options_hide_thumbnail','0'),(8235,30531,'_dt_post_options_related_mode','same'),(8236,30531,'_dt_post_options_preview','normal'),(8237,30531,'_dt_microsite_primary_menu',''),(8238,30531,'_dt_microsite_split_left_menu',''),(8239,30531,'_dt_microsite_split_right_menu',''),(8240,30531,'_dt_microsite_mobile_menu',''),(8241,30531,'_thumbnail_id','30633'),(8242,30531,'iawp_total_views','18'),(8243,2755,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8244,2755,'_edit_last','3'),(8245,2755,'_thumbnail_id','2756'),(8246,2755,'slide_template','default'),(8247,2755,'_wpb_vc_js_status','false'),(8248,2755,'_dt_sidebar_position','right'),(8249,2755,'_dt_sidebar_widgetarea_id','sidebar_1'),(8250,2755,'_dt_sidebar_hide_on_mobile','0'),(8251,2755,'_dt_footer_show','1'),(8252,2755,'_dt_footer_widgetarea_id','sidebar_2'),(8253,2755,'_dt_footer_hide_on_mobile','0'),(8254,2755,'_dt_header_title','enabled'),(8255,2755,'_dt_header_background','normal'),(8256,2755,'_dt_header_background_below_slideshow','disabled'),(8257,2755,'_dt_header_transparent_bg_color','#000000'),(8258,2755,'_dt_header_transparent_bg_opacity','50'),(8259,2755,'_dt_header_transparent_bg_color_scheme','light'),(8260,2755,'_dt_slideshow_mode','porthole'),(8261,2755,'_dt_slideshow_3d_layout','fullscreen-content'),(8262,2755,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(8263,2755,'_dt_slideshow_layout','fullwidth'),(8264,2755,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(8265,2755,'_dt_slideshow_scaling','fill'),(8266,2755,'_dt_slideshow_autoplay','paused'),(8267,2755,'_dt_slideshow_autoslide_interval','5000'),(8268,2755,'_dt_slideshow_hide_captions','0'),(8269,2755,'_dt_slideshow_photo_scroller_layout','fullscreen'),(8270,2755,'_dt_slideshow_photo_scroller_bg_color','#000000'),(8271,2755,'_dt_slideshow_photo_scroller_overlay','1'),(8272,2755,'_dt_slideshow_photo_scroller_top_padding','0'),(8273,2755,'_dt_slideshow_photo_scroller_bottom_padding','0'),(8274,2755,'_dt_slideshow_photo_scroller_side_paddings','0'),(8275,2755,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(8276,2755,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(8277,2755,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(8278,2755,'_dt_slideshow_photo_scroller_autoplay','play'),(8279,2755,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(8280,2755,'_dt_slideshow_photo_scroller_ls_max_width','100'),(8281,2755,'_dt_slideshow_photo_scroller_ls_min_width','0'),(8282,2755,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(8283,2755,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(8284,2755,'_dt_slideshow_photo_scroller_pt_max_width','100'),(8285,2755,'_dt_slideshow_photo_scroller_pt_min_width','0'),(8286,2755,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(8287,2755,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(8288,2755,'_dt_slideshow_revolution_slider','none'),(8289,2755,'_dt_slideshow_layer_slider','none'),(8290,2755,'_dt_slideshow_layer_show_bg_and_paddings','0'),(8291,2755,'_dt_fancy_header_title_aligment','center'),(8292,2755,'_dt_fancy_header_breadcrumbs','enabled'),(8293,2755,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(8294,2755,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(8295,2755,'_dt_fancy_header_title_mode','custom'),(8296,2755,'_dt_fancy_header_title_color_mode','color'),(8297,2755,'_dt_fancy_header_title_color','#ffffff'),(8298,2755,'_dt_fancy_header_subtitle_color_mode','color'),(8299,2755,'_dt_fancy_header_subtitle_color','#ffffff'),(8300,2755,'_dt_fancy_header_bg_color','#222222'),(8301,2755,'_dt_fancy_header_bg_repeat','no-repeat'),(8302,2755,'_dt_fancy_header_bg_position_x','center'),(8303,2755,'_dt_fancy_header_bg_position_y','center'),(8304,2755,'_dt_fancy_header_bg_fullscreen','1'),(8305,2755,'_dt_fancy_header_height','300'),(8306,2755,'_dt_post_options_back_button',''),(8307,2755,'_dt_post_options_hide_thumbnail','0'),(8308,2755,'_dt_post_options_related_mode','same'),(8309,2755,'_dt_post_options_preview','normal'),(8310,2755,'_dt_fancy_header_title_font_size','44'),(8311,2755,'_dt_fancy_header_title_line_height','50'),(8312,2755,'_dt_fancy_header_subtitle_font_size','30'),(8313,2755,'_dt_fancy_header_subtitle_line_height','36'),(8314,2755,'iawp_total_views','7'),(8315,2780,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8316,2780,'_edit_last','3'),(8317,2780,'_thumbnail_id','2781'),(8318,2780,'slide_template','default'),(8319,2780,'_wpb_vc_js_status','false'),(8320,2780,'_dt_sidebar_position','right'),(8321,2780,'_dt_sidebar_widgetarea_id','sidebar_1'),(8322,2780,'_dt_sidebar_hide_on_mobile','0'),(8323,2780,'_dt_footer_show','1'),(8324,2780,'_dt_footer_widgetarea_id','sidebar_2'),(8325,2780,'_dt_footer_hide_on_mobile','0'),(8326,2780,'_dt_header_title','enabled'),(8327,2780,'_dt_header_background','normal'),(8328,2780,'_dt_header_background_below_slideshow','disabled'),(8329,2780,'_dt_header_transparent_bg_color','#000000'),(8330,2780,'_dt_header_transparent_bg_opacity','50'),(8331,2780,'_dt_header_transparent_bg_color_scheme','light'),(8332,2780,'_dt_slideshow_mode','porthole'),(8333,2780,'_dt_slideshow_3d_layout','fullscreen-content'),(8334,2780,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(8335,2780,'_dt_slideshow_layout','fullwidth'),(8336,2780,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(8337,2780,'_dt_slideshow_scaling','fill'),(8338,2780,'_dt_slideshow_autoplay','paused'),(8339,2780,'_dt_slideshow_autoslide_interval','5000'),(8340,2780,'_dt_slideshow_hide_captions','0'),(8341,2780,'_dt_slideshow_photo_scroller_layout','fullscreen'),(8342,2780,'_dt_slideshow_photo_scroller_bg_color','#000000'),(8343,2780,'_dt_slideshow_photo_scroller_overlay','1'),(8344,2780,'_dt_slideshow_photo_scroller_top_padding','0'),(8345,2780,'_dt_slideshow_photo_scroller_bottom_padding','0'),(8346,2780,'_dt_slideshow_photo_scroller_side_paddings','0'),(8347,2780,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(8348,2780,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(8349,2780,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(8350,2780,'_dt_slideshow_photo_scroller_autoplay','play'),(8351,2780,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(8352,2780,'_dt_slideshow_photo_scroller_ls_max_width','100'),(8353,2780,'_dt_slideshow_photo_scroller_ls_min_width','0'),(8354,2780,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(8355,2780,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(8356,2780,'_dt_slideshow_photo_scroller_pt_max_width','100'),(8357,2780,'_dt_slideshow_photo_scroller_pt_min_width','0'),(8358,2780,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(8359,2780,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(8360,2780,'_dt_slideshow_revolution_slider','none'),(8361,2780,'_dt_slideshow_layer_slider','none'),(8362,2780,'_dt_slideshow_layer_show_bg_and_paddings','0'),(8363,2780,'_dt_fancy_header_title_aligment','center'),(8364,2780,'_dt_fancy_header_breadcrumbs','enabled'),(8365,2780,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(8366,2780,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(8367,2780,'_dt_fancy_header_title_mode','custom'),(8368,2780,'_dt_fancy_header_title_color_mode','color'),(8369,2780,'_dt_fancy_header_title_color','#ffffff'),(8370,2780,'_dt_fancy_header_subtitle_color_mode','color'),(8371,2780,'_dt_fancy_header_subtitle_color','#ffffff'),(8372,2780,'_dt_fancy_header_bg_color','#222222'),(8373,2780,'_dt_fancy_header_bg_repeat','no-repeat'),(8374,2780,'_dt_fancy_header_bg_position_x','center'),(8375,2780,'_dt_fancy_header_bg_position_y','center'),(8376,2780,'_dt_fancy_header_bg_fullscreen','1'),(8377,2780,'_dt_fancy_header_height','300'),(8378,2780,'_dt_post_options_back_button',''),(8379,2780,'_dt_post_options_hide_thumbnail','0'),(8380,2780,'_dt_post_options_related_mode','same'),(8381,2780,'_dt_post_options_preview','normal'),(8382,2780,'_dt_fancy_header_title_font_size','44'),(8383,2780,'_dt_fancy_header_title_line_height','50'),(8384,2780,'_dt_fancy_header_subtitle_font_size','30'),(8385,2780,'_dt_fancy_header_subtitle_line_height','36'),(8386,29855,'_edit_last','2'),(8387,29855,'_thumbnail_id','18460'),(8388,29855,'_wp_page_template','default'),(8389,29855,'_wpb_vc_js_status','false'),(8390,29855,'_wc_memberships_force_public','no'),(8391,29855,'_wc_memberships_use_custom_post_content_restricted_message','no'),(8392,29855,'_dt_sidebar_position','right'),(8393,29855,'_dt_sidebar_widgetarea_id','sidebar_1'),(8394,29855,'_dt_sidebar_hide_on_mobile','0'),(8395,29855,'_dt_footer_show','1'),(8396,29855,'_dt_footer_widgetarea_id','sidebar_2'),(8397,29855,'_dt_footer_hide_on_mobile','0'),(8398,29855,'_dt_header_title','enabled'),(8399,29855,'_dt_header_background','normal'),(8400,29855,'_dt_header_background_below_slideshow','disabled'),(8401,29855,'_dt_header_transparent_bg_color_scheme','light'),(8402,29855,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(8403,29855,'_dt_header_transparent_top_bar_bg_opacity','25'),(8404,29855,'_dt_header_transparent_bg_color','#000000'),(8405,29855,'_dt_header_transparent_bg_opacity','50'),(8406,29855,'_dt_header_disabled_background','normal'),(8407,29855,'_dt_header_disabled_transparent_bg_color_scheme','light'),(8408,29855,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(8409,29855,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(8410,29855,'_dt_header_disabled_transparent_bg_color','#000000'),(8411,29855,'_dt_header_disabled_transparent_bg_opacity','50'),(8412,29855,'_dt_page_overrides_top_margin',''),(8413,29855,'_dt_page_overrides_right_margin',''),(8414,29855,'_dt_page_overrides_bottom_margin',''),(8415,29855,'_dt_page_overrides_left_margin',''),(8416,29855,'_dt_mobile_page_padding_top',''),(8417,29855,'_dt_mobile_page_padding_right',''),(8418,29855,'_dt_mobile_page_padding_bottom',''),(8419,29855,'_dt_mobile_page_padding_left',''),(8420,29855,'_dt_post_options_back_button',''),(8421,29855,'_dt_post_options_hide_thumbnail','0'),(8422,29855,'_dt_post_options_related_mode','same'),(8423,29855,'_dt_post_options_preview','normal'),(8424,29855,'_dt_microsite_primary_menu',''),(8425,29855,'_dt_microsite_split_left_menu',''),(8426,29855,'_dt_microsite_split_right_menu',''),(8427,29855,'_dt_microsite_mobile_menu',''),(8428,29946,'_edit_last','2'),(8429,29946,'_thumbnail_id','29947'),(8430,29946,'_wp_page_template','default'),(8431,29946,'_wpb_vc_js_status','false'),(8432,29946,'_wc_memberships_force_public','no'),(8433,29946,'_wc_memberships_use_custom_post_content_restricted_message','no'),(8434,29946,'_dt_sidebar_position','right'),(8435,29946,'_dt_sidebar_widgetarea_id','sidebar_1'),(8436,29946,'_dt_sidebar_hide_on_mobile','0'),(8437,29946,'_dt_footer_show','1'),(8438,29946,'_dt_footer_widgetarea_id','sidebar_2'),(8439,29946,'_dt_footer_hide_on_mobile','0'),(8440,29946,'_dt_header_title','enabled'),(8441,29946,'_dt_header_background','normal'),(8442,29946,'_dt_header_background_below_slideshow','disabled'),(8443,29946,'_dt_header_transparent_bg_color_scheme','light'),(8444,29946,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(8445,29946,'_dt_header_transparent_top_bar_bg_opacity','25'),(8446,29946,'_dt_header_transparent_bg_color','#000000'),(8447,29946,'_dt_header_transparent_bg_opacity','50'),(8448,29946,'_dt_header_disabled_background','normal'),(8449,29946,'_dt_header_disabled_transparent_bg_color_scheme','light'),(8450,29946,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(8451,29946,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(8452,29946,'_dt_header_disabled_transparent_bg_color','#000000'),(8453,29946,'_dt_header_disabled_transparent_bg_opacity','50'),(8454,29946,'_dt_page_overrides_top_margin',''),(8455,29946,'_dt_page_overrides_right_margin',''),(8456,29946,'_dt_page_overrides_bottom_margin',''),(8457,29946,'_dt_page_overrides_left_margin',''),(8458,29946,'_dt_mobile_page_padding_top',''),(8459,29946,'_dt_mobile_page_padding_right',''),(8460,29946,'_dt_mobile_page_padding_bottom',''),(8461,29946,'_dt_mobile_page_padding_left',''),(8462,29946,'_dt_post_options_back_button',''),(8463,29946,'_dt_post_options_hide_thumbnail','0'),(8464,29946,'_dt_post_options_related_mode','same'),(8465,29946,'_dt_post_options_preview','normal'),(8466,29946,'_dt_microsite_primary_menu',''),(8467,29946,'_dt_microsite_split_left_menu',''),(8468,29946,'_dt_microsite_split_right_menu',''),(8469,29946,'_dt_microsite_mobile_menu',''),(8470,30099,'_edit_last','2'),(8471,30099,'_thumbnail_id','18634'),(8472,30099,'_wp_page_template','default'),(8473,30099,'_wpb_vc_js_status','false'),(8474,30099,'_wc_memberships_force_public','no'),(8475,30099,'_wc_memberships_use_custom_post_content_restricted_message','no'),(8476,30099,'_dt_sidebar_position','right'),(8477,30099,'_dt_sidebar_widgetarea_id','sidebar_1'),(8478,30099,'_dt_sidebar_hide_on_mobile','0'),(8479,30099,'_dt_footer_show','1'),(8480,30099,'_dt_footer_widgetarea_id','sidebar_2'),(8481,30099,'_dt_footer_hide_on_mobile','0'),(8482,30099,'_dt_header_title','enabled'),(8483,30099,'_dt_header_background','normal'),(8484,30099,'_dt_header_background_below_slideshow','disabled'),(8485,30099,'_dt_header_transparent_bg_color_scheme','light'),(8486,30099,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(8487,30099,'_dt_header_transparent_top_bar_bg_opacity','25'),(8488,30099,'_dt_header_transparent_bg_color','#000000'),(8489,30099,'_dt_header_transparent_bg_opacity','50'),(8490,30099,'_dt_header_disabled_background','normal'),(8491,30099,'_dt_header_disabled_transparent_bg_color_scheme','light'),(8492,30099,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(8493,30099,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(8494,30099,'_dt_header_disabled_transparent_bg_color','#000000'),(8495,30099,'_dt_header_disabled_transparent_bg_opacity','50'),(8496,30099,'_dt_page_overrides_top_margin',''),(8497,30099,'_dt_page_overrides_right_margin',''),(8498,30099,'_dt_page_overrides_bottom_margin',''),(8499,30099,'_dt_page_overrides_left_margin',''),(8500,30099,'_dt_mobile_page_padding_top',''),(8501,30099,'_dt_mobile_page_padding_right',''),(8502,30099,'_dt_mobile_page_padding_bottom',''),(8503,30099,'_dt_mobile_page_padding_left',''),(8504,30099,'_dt_post_options_back_button',''),(8505,30099,'_dt_post_options_hide_thumbnail','0'),(8506,30099,'_dt_post_options_related_mode','same'),(8507,30099,'_dt_post_options_preview','normal'),(8508,30099,'_dt_microsite_primary_menu',''),(8509,30099,'_dt_microsite_split_left_menu',''),(8510,30099,'_dt_microsite_split_right_menu',''),(8511,30099,'_dt_microsite_mobile_menu',''),(8512,30198,'_edit_last','2'),(8513,30198,'_oembed_bfb79b9692f56295aaa31f2eb75fbabe','<iframe title=\"Pec Minor iMoveFreely Flows\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/3MYH7mc7Aes?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(8514,30198,'_oembed_time_bfb79b9692f56295aaa31f2eb75fbabe','1636466891'),(8515,30198,'_thumbnail_id','30202'),(8516,30198,'_wp_page_template','default'),(8517,30198,'_wpb_vc_js_status','false'),(8518,30198,'_wc_memberships_force_public','no'),(8519,30198,'_wc_memberships_use_custom_post_content_restricted_message','no'),(8520,30198,'_dt_sidebar_position','right'),(8521,30198,'_dt_sidebar_widgetarea_id','sidebar_1'),(8522,30198,'_dt_sidebar_hide_on_mobile','0'),(8523,30198,'_dt_footer_show','1'),(8524,30198,'_dt_footer_widgetarea_id','sidebar_2'),(8525,30198,'_dt_footer_hide_on_mobile','0'),(8526,30198,'_dt_header_title','enabled'),(8527,30198,'_dt_header_background','normal'),(8528,30198,'_dt_header_background_below_slideshow','disabled'),(8529,30198,'_dt_header_transparent_bg_color_scheme','light'),(8530,30198,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(8531,30198,'_dt_header_transparent_top_bar_bg_opacity','25'),(8532,30198,'_dt_header_transparent_bg_color','#000000'),(8533,30198,'_dt_header_transparent_bg_opacity','50'),(8534,30198,'_dt_header_disabled_background','normal'),(8535,30198,'_dt_header_disabled_transparent_bg_color_scheme','light'),(8536,30198,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(8537,30198,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(8538,30198,'_dt_header_disabled_transparent_bg_color','#000000'),(8539,30198,'_dt_header_disabled_transparent_bg_opacity','50'),(8540,30198,'_dt_page_overrides_top_margin',''),(8541,30198,'_dt_page_overrides_right_margin',''),(8542,30198,'_dt_page_overrides_bottom_margin',''),(8543,30198,'_dt_page_overrides_left_margin',''),(8544,30198,'_dt_mobile_page_padding_top',''),(8545,30198,'_dt_mobile_page_padding_right',''),(8546,30198,'_dt_mobile_page_padding_bottom',''),(8547,30198,'_dt_mobile_page_padding_left',''),(8548,30198,'_dt_post_options_back_button',''),(8549,30198,'_dt_post_options_hide_thumbnail','0'),(8550,30198,'_dt_post_options_related_mode','same'),(8551,30198,'_dt_post_options_preview','normal'),(8552,30198,'_dt_microsite_primary_menu',''),(8553,30198,'_dt_microsite_split_left_menu',''),(8554,30198,'_dt_microsite_split_right_menu',''),(8555,30198,'_dt_microsite_mobile_menu',''),(8556,2785,'_wpb_post_custom_layout','default'),(8557,2785,'_edit_last','17'),(8558,2785,'_thumbnail_id','18476'),(8559,2785,'_dt_header_transparent_top_bar_bg_color',''),(8560,2785,'_wpb_vc_js_status','false'),(8561,2785,'_dt_sidebar_position','right'),(8562,2785,'_dt_sidebar_widgetarea_id','sidebar_1'),(8563,2785,'_dt_sidebar_hide_on_mobile','0'),(8564,2785,'_dt_footer_show','1'),(8565,2785,'_dt_footer_widgetarea_id','sidebar_2'),(8566,2785,'_dt_footer_hide_on_mobile','0'),(8567,2785,'_dt_header_title','enabled'),(8568,2785,'_dt_header_background','normal'),(8569,2785,'_dt_header_background_below_slideshow','disabled'),(8570,2785,'_dt_header_transparent_bg_color','#000000'),(8571,2785,'_dt_header_transparent_bg_opacity','50'),(8572,2785,'_dt_header_transparent_bg_color_scheme','light'),(8573,2785,'_dt_slideshow_3d_layout','fullscreen-content'),(8574,2785,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(8575,2785,'_dt_microsite_mobile_menu',''),(8576,2785,'_dt_microsite_split_right_menu',''),(8577,2785,'_dt_microsite_primary_menu',''),(8578,2785,'_dt_microsite_split_left_menu',''),(8579,2785,'_dt_post_options_back_button',''),(8580,2785,'_dt_post_options_hide_thumbnail','0'),(8581,2785,'_dt_post_options_related_mode','same'),(8582,2785,'_dt_post_options_preview','normal'),(8583,2785,'_wp_page_template','default'),(8584,2785,'_wc_memberships_force_public','no'),(8585,2785,'_wc_memberships_use_custom_post_content_restricted_message','no'),(8586,2785,'_dt_header_transparent_top_bar_bg_opacity','0'),(8587,2785,'_dt_header_disabled_background','normal'),(8588,2785,'_dt_header_disabled_transparent_bg_color_scheme','light'),(8589,2785,'_dt_header_disabled_transparent_top_bar_bg_color',''),(8590,2785,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),(8591,2785,'_dt_header_disabled_transparent_bg_color',''),(8592,2785,'_dt_header_disabled_transparent_bg_opacity','0'),(8593,2785,'_dt_page_overrides_top_margin',''),(8594,2785,'_dt_page_overrides_right_margin',''),(8595,2785,'_dt_page_overrides_bottom_margin',''),(8596,2785,'_dt_page_overrides_left_margin',''),(8597,2785,'_dt_mobile_page_padding_top',''),(8598,2785,'_dt_mobile_page_padding_right',''),(8599,2785,'_dt_mobile_page_padding_bottom',''),(8600,2785,'_dt_mobile_page_padding_left',''),(8601,2785,'iawp_total_views','1357'),(8602,2808,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8603,2808,'slide_template','default'),(8604,2808,'_wpb_vc_js_status','false'),(8605,2808,'_dt_sidebar_position','right'),(8606,2808,'_dt_sidebar_widgetarea_id','sidebar_1'),(8607,2808,'_dt_sidebar_hide_on_mobile','0'),(8608,2808,'_dt_footer_show','1'),(8609,2808,'_dt_footer_widgetarea_id','sidebar_2'),(8610,2808,'_dt_footer_hide_on_mobile','0'),(8611,2808,'_dt_header_title','enabled'),(8612,2808,'_dt_header_background','normal'),(8613,2808,'_dt_header_background_below_slideshow','disabled'),(8614,2808,'_dt_header_transparent_bg_color','#000000'),(8615,2808,'_dt_header_transparent_bg_opacity','50'),(8616,2808,'_dt_header_transparent_bg_color_scheme','light'),(8617,2808,'_dt_slideshow_mode','porthole'),(8618,2808,'_dt_slideshow_3d_layout','fullscreen-content'),(8619,2808,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(8620,2808,'_dt_slideshow_layout','fullwidth'),(8621,2808,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(8622,2808,'_dt_slideshow_scaling','fill'),(8623,2808,'_dt_slideshow_autoplay','paused'),(8624,2808,'_dt_slideshow_autoslide_interval','5000'),(8625,2808,'_dt_slideshow_hide_captions','0'),(8626,2808,'_dt_slideshow_photo_scroller_layout','fullscreen'),(8627,2808,'_dt_slideshow_photo_scroller_bg_color','#000000'),(8628,2808,'_dt_slideshow_photo_scroller_overlay','1'),(8629,2808,'_dt_slideshow_photo_scroller_top_padding','0'),(8630,2808,'_dt_slideshow_photo_scroller_bottom_padding','0'),(8631,2808,'_dt_slideshow_photo_scroller_side_paddings','0'),(8632,2808,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(8633,2808,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(8634,2808,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(8635,2808,'_dt_slideshow_photo_scroller_autoplay','play'),(8636,2808,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(8637,2808,'_dt_slideshow_photo_scroller_ls_max_width','100'),(8638,2808,'_dt_slideshow_photo_scroller_ls_min_width','0'),(8639,2808,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(8640,2808,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(8641,2808,'_dt_slideshow_photo_scroller_pt_max_width','100'),(8642,2808,'_dt_slideshow_photo_scroller_pt_min_width','0'),(8643,2808,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(8644,2808,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(8645,2808,'_dt_slideshow_revolution_slider','none'),(8646,2808,'_dt_slideshow_layer_slider','none'),(8647,2808,'_dt_slideshow_layer_show_bg_and_paddings','0'),(8648,2808,'_dt_fancy_header_title_aligment','center'),(8649,2808,'_dt_fancy_header_breadcrumbs','enabled'),(8650,2808,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(8651,2808,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(8652,2808,'_dt_fancy_header_title_mode','custom'),(8653,2808,'_dt_fancy_header_title_color_mode','color'),(8654,2808,'_dt_fancy_header_title_color','#ffffff'),(8655,2808,'_dt_fancy_header_subtitle_color_mode','color'),(8656,2808,'_dt_fancy_header_subtitle_color','#ffffff'),(8657,2808,'_dt_fancy_header_bg_color','#222222'),(8658,2808,'_dt_fancy_header_bg_repeat','no-repeat'),(8659,2808,'_dt_fancy_header_bg_position_x','center'),(8660,2808,'_dt_fancy_header_bg_position_y','center'),(8661,2808,'_dt_fancy_header_bg_fullscreen','1'),(8662,2808,'_dt_fancy_header_height','300'),(8663,2808,'_dt_post_options_back_button',''),(8664,2808,'_dt_post_options_hide_thumbnail','0'),(8665,2808,'_dt_post_options_related_mode','same'),(8666,2808,'_dt_post_options_preview','normal'),(8667,2808,'_thumbnail_id','2810'),(8668,2808,'_dt_fancy_header_title_font_size','44'),(8669,2808,'_dt_fancy_header_title_line_height','50'),(8670,2808,'_dt_fancy_header_subtitle_font_size','30'),(8671,2808,'_dt_fancy_header_subtitle_line_height','36'),(8672,2808,'iawp_total_views','35'),(8673,29658,'_edit_last','2'),(8674,29658,'_wp_page_template','default'),(8675,29658,'_wpb_vc_js_status','false'),(8676,29658,'_wc_memberships_force_public','no'),(8677,29658,'_wc_memberships_use_custom_post_content_restricted_message','no'),(8678,29658,'_dt_sidebar_position','right'),(8679,29658,'_dt_sidebar_widgetarea_id','sidebar_1'),(8680,29658,'_dt_sidebar_hide_on_mobile','0'),(8681,29658,'_dt_footer_show','1'),(8682,29658,'_dt_footer_widgetarea_id','sidebar_2'),(8683,29658,'_dt_footer_hide_on_mobile','0'),(8684,29658,'_dt_header_title','enabled'),(8685,29658,'_dt_header_background','normal'),(8686,29658,'_dt_header_background_below_slideshow','disabled'),(8687,29658,'_dt_header_transparent_bg_color_scheme','light'),(8688,29658,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(8689,29658,'_dt_header_transparent_top_bar_bg_opacity','25'),(8690,29658,'_dt_header_transparent_bg_color','#000000'),(8691,29658,'_dt_header_transparent_bg_opacity','50'),(8692,29658,'_dt_header_disabled_background','normal'),(8693,29658,'_dt_header_disabled_transparent_bg_color_scheme','light'),(8694,29658,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(8695,29658,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(8696,29658,'_dt_header_disabled_transparent_bg_color','#000000'),(8697,29658,'_dt_header_disabled_transparent_bg_opacity','50'),(8698,29658,'_dt_page_overrides_top_margin',''),(8699,29658,'_dt_page_overrides_right_margin',''),(8700,29658,'_dt_page_overrides_bottom_margin',''),(8701,29658,'_dt_page_overrides_left_margin',''),(8702,29658,'_dt_mobile_page_padding_top',''),(8703,29658,'_dt_mobile_page_padding_right',''),(8704,29658,'_dt_mobile_page_padding_bottom',''),(8705,29658,'_dt_mobile_page_padding_left',''),(8706,29658,'_dt_post_options_back_button',''),(8707,29658,'_dt_post_options_hide_thumbnail','0'),(8708,29658,'_dt_post_options_related_mode','same'),(8709,29658,'_dt_post_options_preview','normal'),(8710,29658,'_dt_microsite_primary_menu',''),(8711,29658,'_dt_microsite_split_left_menu',''),(8712,29658,'_dt_microsite_split_right_menu',''),(8713,29658,'_dt_microsite_mobile_menu',''),(8714,29658,'_thumbnail_id','28733'),(8715,2845,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8716,2845,'slide_template','default'),(8717,2845,'_wpb_vc_js_status','false'),(8718,2845,'_dt_sidebar_position','right'),(8719,2845,'_dt_sidebar_widgetarea_id','sidebar_1'),(8720,2845,'_dt_sidebar_hide_on_mobile','0'),(8721,2845,'_dt_footer_show','1'),(8722,2845,'_dt_footer_widgetarea_id','sidebar_2'),(8723,2845,'_dt_footer_hide_on_mobile','0'),(8724,2845,'_dt_header_title','enabled'),(8725,2845,'_dt_header_background','normal'),(8726,2845,'_dt_header_background_below_slideshow','disabled'),(8727,2845,'_dt_header_transparent_bg_color','#000000'),(8728,2845,'_dt_header_transparent_bg_opacity','50'),(8729,2845,'_dt_header_transparent_bg_color_scheme','light'),(8730,2845,'_dt_slideshow_mode','porthole'),(8731,2845,'_dt_slideshow_3d_layout','fullscreen-content'),(8732,2845,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(8733,2845,'_dt_slideshow_layout','fullwidth'),(8734,2845,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(8735,2845,'_dt_slideshow_scaling','fill'),(8736,2845,'_dt_slideshow_autoplay','paused'),(8737,2845,'_dt_slideshow_autoslide_interval','5000'),(8738,2845,'_dt_slideshow_hide_captions','0'),(8739,2845,'_dt_slideshow_photo_scroller_layout','fullscreen'),(8740,2845,'_dt_slideshow_photo_scroller_bg_color','#000000'),(8741,2845,'_dt_slideshow_photo_scroller_overlay','1'),(8742,2845,'_dt_slideshow_photo_scroller_top_padding','0'),(8743,2845,'_dt_slideshow_photo_scroller_bottom_padding','0'),(8744,2845,'_dt_slideshow_photo_scroller_side_paddings','0'),(8745,2845,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(8746,2845,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(8747,2845,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(8748,2845,'_dt_slideshow_photo_scroller_autoplay','play'),(8749,2845,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(8750,2845,'_dt_slideshow_photo_scroller_ls_max_width','100'),(8751,2845,'_dt_slideshow_photo_scroller_ls_min_width','0'),(8752,2845,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(8753,2845,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(8754,2845,'_dt_slideshow_photo_scroller_pt_max_width','100'),(8755,2845,'_dt_slideshow_photo_scroller_pt_min_width','0'),(8756,2845,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(8757,2845,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(8758,2845,'_dt_slideshow_revolution_slider','none'),(8759,2845,'_dt_slideshow_layer_slider','none'),(8760,2845,'_dt_slideshow_layer_show_bg_and_paddings','0'),(8761,2845,'_dt_fancy_header_title_aligment','center'),(8762,2845,'_dt_fancy_header_breadcrumbs','enabled'),(8763,2845,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(8764,2845,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(8765,2845,'_dt_fancy_header_title_mode','custom'),(8766,2845,'_dt_fancy_header_title_color_mode','color'),(8767,2845,'_dt_fancy_header_title_color','#ffffff'),(8768,2845,'_dt_fancy_header_subtitle_color_mode','color'),(8769,2845,'_dt_fancy_header_subtitle_color','#ffffff'),(8770,2845,'_dt_fancy_header_bg_color','#222222'),(8771,2845,'_dt_fancy_header_bg_repeat','no-repeat'),(8772,2845,'_dt_fancy_header_bg_position_x','center'),(8773,2845,'_dt_fancy_header_bg_position_y','center'),(8774,2845,'_dt_fancy_header_bg_fullscreen','1'),(8775,2845,'_dt_fancy_header_height','300'),(8776,2845,'_dt_post_options_back_button',''),(8777,2845,'_dt_post_options_hide_thumbnail','0'),(8778,2845,'_dt_post_options_related_mode','same'),(8779,2845,'_dt_post_options_preview','normal'),(8780,2845,'_thumbnail_id','3174'),(8781,2845,'_dt_fancy_header_title_font_size','44'),(8782,2845,'_dt_fancy_header_title_line_height','50'),(8783,2845,'_dt_fancy_header_subtitle_font_size','30'),(8784,2845,'_dt_fancy_header_subtitle_line_height','36'),(8785,2855,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8786,2855,'_edit_last','3'),(8787,2855,'_thumbnail_id','2856'),(8788,2855,'slide_template','default'),(8789,2855,'_wpb_vc_js_status','false'),(8790,2855,'_dt_sidebar_position','right'),(8791,2855,'_dt_sidebar_widgetarea_id','sidebar_1'),(8792,2855,'_dt_sidebar_hide_on_mobile','0'),(8793,2855,'_dt_footer_show','1'),(8794,2855,'_dt_footer_widgetarea_id','sidebar_2'),(8795,2855,'_dt_footer_hide_on_mobile','0'),(8796,2855,'_dt_header_title','enabled'),(8797,2855,'_dt_header_background','normal'),(8798,2855,'_dt_header_background_below_slideshow','disabled'),(8799,2855,'_dt_header_transparent_bg_color','#000000'),(8800,2855,'_dt_header_transparent_bg_opacity','50'),(8801,2855,'_dt_header_transparent_bg_color_scheme','light'),(8802,2855,'_dt_slideshow_mode','porthole'),(8803,2855,'_dt_slideshow_3d_layout','fullscreen-content'),(8804,2855,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(8805,2855,'_dt_slideshow_layout','fullwidth'),(8806,2855,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(8807,2855,'_dt_slideshow_scaling','fill'),(8808,2855,'_dt_slideshow_autoplay','paused'),(8809,2855,'_dt_slideshow_autoslide_interval','5000'),(8810,2855,'_dt_slideshow_hide_captions','0'),(8811,2855,'_dt_slideshow_photo_scroller_layout','fullscreen'),(8812,2855,'_dt_slideshow_photo_scroller_bg_color','#000000'),(8813,2855,'_dt_slideshow_photo_scroller_overlay','1'),(8814,2855,'_dt_slideshow_photo_scroller_top_padding','0'),(8815,2855,'_dt_slideshow_photo_scroller_bottom_padding','0'),(8816,2855,'_dt_slideshow_photo_scroller_side_paddings','0'),(8817,2855,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(8818,2855,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(8819,2855,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(8820,2855,'_dt_slideshow_photo_scroller_autoplay','play'),(8821,2855,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(8822,2855,'_dt_slideshow_photo_scroller_ls_max_width','100'),(8823,2855,'_dt_slideshow_photo_scroller_ls_min_width','0'),(8824,2855,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(8825,2855,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(8826,2855,'_dt_slideshow_photo_scroller_pt_max_width','100'),(8827,2855,'_dt_slideshow_photo_scroller_pt_min_width','0'),(8828,2855,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(8829,2855,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(8830,2855,'_dt_slideshow_revolution_slider','none'),(8831,2855,'_dt_slideshow_layer_slider','none'),(8832,2855,'_dt_slideshow_layer_show_bg_and_paddings','0'),(8833,2855,'_dt_fancy_header_title_aligment','center'),(8834,2855,'_dt_fancy_header_breadcrumbs','enabled'),(8835,2855,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(8836,2855,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(8837,2855,'_dt_fancy_header_title_mode','custom'),(8838,2855,'_dt_fancy_header_title_color_mode','color'),(8839,2855,'_dt_fancy_header_title_color','#ffffff'),(8840,2855,'_dt_fancy_header_subtitle_color_mode','color'),(8841,2855,'_dt_fancy_header_subtitle_color','#ffffff'),(8842,2855,'_dt_fancy_header_bg_color','#222222'),(8843,2855,'_dt_fancy_header_bg_repeat','no-repeat'),(8844,2855,'_dt_fancy_header_bg_position_x','center'),(8845,2855,'_dt_fancy_header_bg_position_y','center'),(8846,2855,'_dt_fancy_header_bg_fullscreen','1'),(8847,2855,'_dt_fancy_header_height','300'),(8848,2855,'_dt_post_options_back_button',''),(8849,2855,'_dt_post_options_hide_thumbnail','0'),(8850,2855,'_dt_post_options_related_mode','same'),(8851,2855,'_dt_post_options_preview','normal'),(8852,2855,'_dt_fancy_header_title_font_size','44'),(8853,2855,'_dt_fancy_header_title_line_height','50'),(8854,2855,'_dt_fancy_header_subtitle_font_size','30'),(8855,2855,'_dt_fancy_header_subtitle_line_height','36'),(8856,2866,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8857,2866,'slide_template','default'),(8858,2866,'_wpb_vc_js_status','false'),(8859,2866,'_dt_sidebar_position','right'),(8860,2866,'_dt_sidebar_widgetarea_id','sidebar_1'),(8861,2866,'_dt_sidebar_hide_on_mobile','0'),(8862,2866,'_dt_footer_show','1'),(8863,2866,'_dt_footer_widgetarea_id','sidebar_2'),(8864,2866,'_dt_footer_hide_on_mobile','0'),(8865,2866,'_dt_header_title','enabled'),(8866,2866,'_dt_header_background','normal'),(8867,2866,'_dt_header_background_below_slideshow','disabled'),(8868,2866,'_dt_header_transparent_bg_color','#000000'),(8869,2866,'_dt_header_transparent_bg_opacity','50'),(8870,2866,'_dt_header_transparent_bg_color_scheme','light'),(8871,2866,'_dt_slideshow_mode','porthole'),(8872,2866,'_dt_slideshow_3d_layout','fullscreen-content'),(8873,2866,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(8874,2866,'_dt_slideshow_layout','fullwidth'),(8875,2866,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(8876,2866,'_dt_slideshow_scaling','fill'),(8877,2866,'_dt_slideshow_autoplay','paused'),(8878,2866,'_dt_slideshow_autoslide_interval','5000'),(8879,2866,'_dt_slideshow_hide_captions','0'),(8880,2866,'_dt_slideshow_photo_scroller_layout','fullscreen'),(8881,2866,'_dt_slideshow_photo_scroller_bg_color','#000000'),(8882,2866,'_dt_slideshow_photo_scroller_overlay','1'),(8883,2866,'_dt_slideshow_photo_scroller_top_padding','0'),(8884,2866,'_dt_slideshow_photo_scroller_bottom_padding','0'),(8885,2866,'_dt_slideshow_photo_scroller_side_paddings','0'),(8886,2866,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(8887,2866,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(8888,2866,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(8889,2866,'_dt_slideshow_photo_scroller_autoplay','play'),(8890,2866,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(8891,2866,'_dt_slideshow_photo_scroller_ls_max_width','100'),(8892,2866,'_dt_slideshow_photo_scroller_ls_min_width','0'),(8893,2866,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(8894,2866,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(8895,2866,'_dt_slideshow_photo_scroller_pt_max_width','100'),(8896,2866,'_dt_slideshow_photo_scroller_pt_min_width','0'),(8897,2866,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(8898,2866,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(8899,2866,'_dt_slideshow_revolution_slider','none'),(8900,2866,'_dt_slideshow_layer_slider','none'),(8901,2866,'_dt_slideshow_layer_show_bg_and_paddings','0'),(8902,2866,'_dt_fancy_header_title_aligment','center'),(8903,2866,'_dt_fancy_header_breadcrumbs','enabled'),(8904,2866,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(8905,2866,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(8906,2866,'_dt_fancy_header_title_mode','custom'),(8907,2866,'_dt_fancy_header_title_color_mode','color'),(8908,2866,'_dt_fancy_header_title_color','#ffffff'),(8909,2866,'_dt_fancy_header_subtitle_color_mode','color'),(8910,2866,'_dt_fancy_header_subtitle_color','#ffffff'),(8911,2866,'_dt_fancy_header_bg_color','#222222'),(8912,2866,'_dt_fancy_header_bg_repeat','no-repeat'),(8913,2866,'_dt_fancy_header_bg_position_x','center'),(8914,2866,'_dt_fancy_header_bg_position_y','center'),(8915,2866,'_dt_fancy_header_bg_fullscreen','1'),(8916,2866,'_dt_fancy_header_height','300'),(8917,2866,'_dt_post_options_back_button',''),(8918,2866,'_dt_post_options_hide_thumbnail','0'),(8919,2866,'_dt_post_options_related_mode','same'),(8920,2866,'_dt_post_options_preview','normal'),(8921,2866,'_thumbnail_id','3173'),(8922,2866,'_dt_fancy_header_title_font_size','44'),(8923,2866,'_dt_fancy_header_title_line_height','50'),(8924,2866,'_dt_fancy_header_subtitle_font_size','30'),(8925,2866,'_dt_fancy_header_subtitle_line_height','36'),(8926,2874,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8927,2874,'_thumbnail_id','3002'),(8928,2874,'slide_template','default'),(8929,2874,'_wpb_vc_js_status','false'),(8930,2874,'_dt_sidebar_position','right'),(8931,2874,'_dt_sidebar_widgetarea_id','sidebar_1'),(8932,2874,'_dt_sidebar_hide_on_mobile','0'),(8933,2874,'_dt_footer_show','1'),(8934,2874,'_dt_footer_widgetarea_id','sidebar_2'),(8935,2874,'_dt_footer_hide_on_mobile','0'),(8936,2874,'_dt_header_title','enabled'),(8937,2874,'_dt_header_background','normal'),(8938,2874,'_dt_header_background_below_slideshow','disabled'),(8939,2874,'_dt_header_transparent_bg_color','#000000'),(8940,2874,'_dt_header_transparent_bg_opacity','50'),(8941,2874,'_dt_header_transparent_bg_color_scheme','light'),(8942,2874,'_dt_slideshow_mode','porthole'),(8943,2874,'_dt_slideshow_3d_layout','fullscreen-content'),(8944,2874,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(8945,2874,'_dt_slideshow_layout','fullwidth'),(8946,2874,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(8947,2874,'_dt_slideshow_scaling','fill'),(8948,2874,'_dt_slideshow_autoplay','paused'),(8949,2874,'_dt_slideshow_autoslide_interval','5000'),(8950,2874,'_dt_slideshow_hide_captions','0'),(8951,2874,'_dt_slideshow_photo_scroller_layout','fullscreen'),(8952,2874,'_dt_slideshow_photo_scroller_bg_color','#000000'),(8953,2874,'_dt_slideshow_photo_scroller_overlay','1'),(8954,2874,'_dt_slideshow_photo_scroller_top_padding','0'),(8955,2874,'_dt_slideshow_photo_scroller_bottom_padding','0'),(8956,2874,'_dt_slideshow_photo_scroller_side_paddings','0'),(8957,2874,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(8958,2874,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(8959,2874,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(8960,2874,'_dt_slideshow_photo_scroller_autoplay','play'),(8961,2874,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(8962,2874,'_dt_slideshow_photo_scroller_ls_max_width','100'),(8963,2874,'_dt_slideshow_photo_scroller_ls_min_width','0'),(8964,2874,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(8965,2874,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(8966,2874,'_dt_slideshow_photo_scroller_pt_max_width','100'),(8967,2874,'_dt_slideshow_photo_scroller_pt_min_width','0'),(8968,2874,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(8969,2874,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(8970,2874,'_dt_slideshow_revolution_slider','none'),(8971,2874,'_dt_slideshow_layer_slider','none'),(8972,2874,'_dt_slideshow_layer_show_bg_and_paddings','0'),(8973,2874,'_dt_fancy_header_title_aligment','center'),(8974,2874,'_dt_fancy_header_breadcrumbs','enabled'),(8975,2874,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(8976,2874,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(8977,2874,'_dt_fancy_header_title_mode','custom'),(8978,2874,'_dt_fancy_header_title_color_mode','color'),(8979,2874,'_dt_fancy_header_title_color','#ffffff'),(8980,2874,'_dt_fancy_header_subtitle_color_mode','color'),(8981,2874,'_dt_fancy_header_subtitle_color','#ffffff'),(8982,2874,'_dt_fancy_header_bg_color','#222222'),(8983,2874,'_dt_fancy_header_bg_repeat','no-repeat'),(8984,2874,'_dt_fancy_header_bg_position_x','center'),(8985,2874,'_dt_fancy_header_bg_position_y','center'),(8986,2874,'_dt_fancy_header_bg_fullscreen','1'),(8987,2874,'_dt_fancy_header_height','300'),(8988,2874,'_dt_post_options_back_button',''),(8989,2874,'_dt_post_options_hide_thumbnail','0'),(8990,2874,'_dt_post_options_related_mode','same'),(8991,2874,'_dt_post_options_preview','normal'),(8992,2874,'_dt_fancy_header_title_font_size','44'),(8993,2874,'_dt_fancy_header_title_line_height','50'),(8994,2874,'_dt_fancy_header_subtitle_font_size','30'),(8995,2874,'_dt_fancy_header_subtitle_line_height','36'),(8996,2959,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(8997,2959,'_thumbnail_id','2976'),(8998,2959,'slide_template','default'),(8999,2959,'_wpb_vc_js_status','false'),(9000,2959,'_dt_sidebar_position','right'),(9001,2959,'_dt_sidebar_widgetarea_id','sidebar_1'),(9002,2959,'_dt_sidebar_hide_on_mobile','0'),(9003,2959,'_dt_footer_show','1'),(9004,2959,'_dt_footer_widgetarea_id','sidebar_2'),(9005,2959,'_dt_footer_hide_on_mobile','0'),(9006,2959,'_dt_header_title','enabled'),(9007,2959,'_dt_header_background','normal'),(9008,2959,'_dt_header_background_below_slideshow','disabled'),(9009,2959,'_dt_header_transparent_bg_color','#000000'),(9010,2959,'_dt_header_transparent_bg_opacity','50'),(9011,2959,'_dt_header_transparent_bg_color_scheme','light'),(9012,2959,'_dt_slideshow_mode','porthole'),(9013,2959,'_dt_slideshow_3d_layout','fullscreen-content'),(9014,2959,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(9015,2959,'_dt_slideshow_layout','fullwidth'),(9016,2959,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(9017,2959,'_dt_slideshow_scaling','fill'),(9018,2959,'_dt_slideshow_autoplay','paused'),(9019,2959,'_dt_slideshow_autoslide_interval','5000'),(9020,2959,'_dt_slideshow_hide_captions','0'),(9021,2959,'_dt_slideshow_photo_scroller_layout','fullscreen'),(9022,2959,'_dt_slideshow_photo_scroller_bg_color','#000000'),(9023,2959,'_dt_slideshow_photo_scroller_overlay','1'),(9024,2959,'_dt_slideshow_photo_scroller_top_padding','0'),(9025,2959,'_dt_slideshow_photo_scroller_bottom_padding','0'),(9026,2959,'_dt_slideshow_photo_scroller_side_paddings','0'),(9027,2959,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(9028,2959,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(9029,2959,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(9030,2959,'_dt_slideshow_photo_scroller_autoplay','play'),(9031,2959,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(9032,2959,'_dt_slideshow_photo_scroller_ls_max_width','100'),(9033,2959,'_dt_slideshow_photo_scroller_ls_min_width','0'),(9034,2959,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(9035,2959,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(9036,2959,'_dt_slideshow_photo_scroller_pt_max_width','100'),(9037,2959,'_dt_slideshow_photo_scroller_pt_min_width','0'),(9038,2959,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(9039,2959,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(9040,2959,'_dt_slideshow_revolution_slider','none'),(9041,2959,'_dt_slideshow_layer_slider','none'),(9042,2959,'_dt_slideshow_layer_show_bg_and_paddings','0'),(9043,2959,'_dt_fancy_header_title_aligment','center'),(9044,2959,'_dt_fancy_header_breadcrumbs','enabled'),(9045,2959,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(9046,2959,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(9047,2959,'_dt_fancy_header_title_mode','custom'),(9048,2959,'_dt_fancy_header_title_color_mode','color'),(9049,2959,'_dt_fancy_header_title_color','#ffffff'),(9050,2959,'_dt_fancy_header_subtitle_color_mode','color'),(9051,2959,'_dt_fancy_header_subtitle_color','#ffffff'),(9052,2959,'_dt_fancy_header_bg_color','#222222'),(9053,2959,'_dt_fancy_header_bg_repeat','no-repeat'),(9054,2959,'_dt_fancy_header_bg_position_x','center'),(9055,2959,'_dt_fancy_header_bg_position_y','center'),(9056,2959,'_dt_fancy_header_bg_fullscreen','1'),(9057,2959,'_dt_fancy_header_height','300'),(9058,2959,'_dt_post_options_back_button',''),(9059,2959,'_dt_post_options_hide_thumbnail','0'),(9060,2959,'_dt_post_options_related_mode','same'),(9061,2959,'_dt_post_options_preview','normal'),(9062,2959,'_dt_fancy_header_title_font_size','44'),(9063,2959,'_dt_fancy_header_title_line_height','50'),(9064,2959,'_dt_fancy_header_subtitle_font_size','30'),(9065,2959,'_dt_fancy_header_subtitle_line_height','36'),(9066,28845,'_edit_last','2'),(9067,28845,'_oembed_775a507f575badff07a28584494b0501','<blockquote class=\"wp-embedded-content\" data-secret=\"xGLJGz648S\"><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/\">Running Biomechanics Workshops</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Running Biomechanics Workshops&#8221; &#8212; Biomechanics Education\" src=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/embed/#?secret=xGLJGz648S\" data-secret=\"xGLJGz648S\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(9068,28845,'_oembed_time_775a507f575badff07a28584494b0501','1627631974'),(9069,28845,'_thumbnail_id','28847'),(9070,28845,'_wp_page_template','default'),(9071,28845,'_wpb_vc_js_status','false'),(9072,28845,'_wc_memberships_force_public','no'),(9073,28845,'_wc_memberships_use_custom_post_content_restricted_message','no'),(9074,28845,'_dt_sidebar_position','right'),(9075,28845,'_dt_sidebar_widgetarea_id','sidebar_1'),(9076,28845,'_dt_sidebar_hide_on_mobile','0'),(9077,28845,'_dt_footer_show','1'),(9078,28845,'_dt_footer_widgetarea_id','sidebar_2'),(9079,28845,'_dt_footer_hide_on_mobile','0'),(9080,28845,'_dt_header_title','enabled'),(9081,28845,'_dt_header_background','normal'),(9082,28845,'_dt_header_background_below_slideshow','disabled'),(9083,28845,'_dt_header_transparent_bg_color_scheme','light'),(9084,28845,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(9085,28845,'_dt_header_transparent_top_bar_bg_opacity','25'),(9086,28845,'_dt_header_transparent_bg_color','#000000'),(9087,28845,'_dt_header_transparent_bg_opacity','50'),(9088,28845,'_dt_header_disabled_background','normal'),(9089,28845,'_dt_header_disabled_transparent_bg_color_scheme','light'),(9090,28845,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(9091,28845,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(9092,28845,'_dt_header_disabled_transparent_bg_color','#000000'),(9093,28845,'_dt_header_disabled_transparent_bg_opacity','50'),(9094,28845,'_dt_page_overrides_top_margin',''),(9095,28845,'_dt_page_overrides_right_margin',''),(9096,28845,'_dt_page_overrides_bottom_margin',''),(9097,28845,'_dt_page_overrides_left_margin',''),(9098,28845,'_dt_mobile_page_padding_top',''),(9099,28845,'_dt_mobile_page_padding_right',''),(9100,28845,'_dt_mobile_page_padding_bottom',''),(9101,28845,'_dt_mobile_page_padding_left',''),(9102,28845,'_dt_post_options_back_button',''),(9103,28845,'_dt_post_options_hide_thumbnail','0'),(9104,28845,'_dt_post_options_related_mode','same'),(9105,28845,'_dt_post_options_preview','normal'),(9106,28845,'_dt_microsite_primary_menu',''),(9107,28845,'_dt_microsite_split_left_menu',''),(9108,28845,'_dt_microsite_split_right_menu',''),(9109,28845,'_dt_microsite_mobile_menu',''),(9110,29093,'_edit_last','2'),(9111,29093,'_thumbnail_id','29095'),(9112,29093,'_wp_page_template','default'),(9113,29093,'_wpb_vc_js_status','false'),(9114,29093,'_wc_memberships_force_public','no'),(9115,29093,'_wc_memberships_use_custom_post_content_restricted_message','no'),(9116,29093,'_dt_sidebar_position','right'),(9117,29093,'_dt_sidebar_widgetarea_id','sidebar_1'),(9118,29093,'_dt_sidebar_hide_on_mobile','0'),(9119,29093,'_dt_footer_show','1'),(9120,29093,'_dt_footer_widgetarea_id','sidebar_2'),(9121,29093,'_dt_footer_hide_on_mobile','0'),(9122,29093,'_dt_header_title','enabled'),(9123,29093,'_dt_header_background','normal'),(9124,29093,'_dt_header_background_below_slideshow','disabled'),(9125,29093,'_dt_header_transparent_bg_color_scheme','light'),(9126,29093,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(9127,29093,'_dt_header_transparent_top_bar_bg_opacity','25'),(9128,29093,'_dt_header_transparent_bg_color','#000000'),(9129,29093,'_dt_header_transparent_bg_opacity','50'),(9130,29093,'_dt_header_disabled_background','normal'),(9131,29093,'_dt_header_disabled_transparent_bg_color_scheme','light'),(9132,29093,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(9133,29093,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(9134,29093,'_dt_header_disabled_transparent_bg_color','#000000'),(9135,29093,'_dt_header_disabled_transparent_bg_opacity','50'),(9136,29093,'_dt_page_overrides_top_margin',''),(9137,29093,'_dt_page_overrides_right_margin',''),(9138,29093,'_dt_page_overrides_bottom_margin',''),(9139,29093,'_dt_page_overrides_left_margin',''),(9140,29093,'_dt_mobile_page_padding_top',''),(9141,29093,'_dt_mobile_page_padding_right',''),(9142,29093,'_dt_mobile_page_padding_bottom',''),(9143,29093,'_dt_mobile_page_padding_left',''),(9144,29093,'_dt_post_options_back_button',''),(9145,29093,'_dt_post_options_hide_thumbnail','0'),(9146,29093,'_dt_post_options_related_mode','same'),(9147,29093,'_dt_post_options_preview','normal'),(9148,29093,'_dt_microsite_primary_menu',''),(9149,29093,'_dt_microsite_split_left_menu',''),(9150,29093,'_dt_microsite_split_right_menu',''),(9151,29093,'_dt_microsite_mobile_menu',''),(9152,2972,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9153,2972,'slide_template','default'),(9154,2972,'_wpb_vc_js_status','false'),(9155,2972,'_dt_sidebar_position','right'),(9156,2972,'_dt_sidebar_widgetarea_id','sidebar_1'),(9157,2972,'_dt_sidebar_hide_on_mobile','0'),(9158,2972,'_dt_footer_show','1'),(9159,2972,'_dt_footer_widgetarea_id','sidebar_2'),(9160,2972,'_dt_footer_hide_on_mobile','0'),(9161,2972,'_dt_header_title','enabled'),(9162,2972,'_dt_header_background','normal'),(9163,2972,'_dt_header_background_below_slideshow','disabled'),(9164,2972,'_dt_header_transparent_bg_color','#000000'),(9165,2972,'_dt_header_transparent_bg_opacity','50'),(9166,2972,'_dt_header_transparent_bg_color_scheme','light'),(9167,2972,'_dt_slideshow_mode','porthole'),(9168,2972,'_dt_slideshow_3d_layout','fullscreen-content'),(9169,2972,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(9170,2972,'_dt_slideshow_layout','fullwidth'),(9171,2972,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(9172,2972,'_dt_slideshow_scaling','fill'),(9173,2972,'_dt_slideshow_autoplay','paused'),(9174,2972,'_dt_slideshow_autoslide_interval','5000'),(9175,2972,'_dt_slideshow_hide_captions','0'),(9176,2972,'_dt_slideshow_photo_scroller_layout','fullscreen'),(9177,2972,'_dt_slideshow_photo_scroller_bg_color','#000000'),(9178,2972,'_dt_slideshow_photo_scroller_overlay','1'),(9179,2972,'_dt_slideshow_photo_scroller_top_padding','0'),(9180,2972,'_dt_slideshow_photo_scroller_bottom_padding','0'),(9181,2972,'_dt_slideshow_photo_scroller_side_paddings','0'),(9182,2972,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(9183,2972,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(9184,2972,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(9185,2972,'_dt_slideshow_photo_scroller_autoplay','play'),(9186,2972,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(9187,2972,'_dt_slideshow_photo_scroller_ls_max_width','100'),(9188,2972,'_dt_slideshow_photo_scroller_ls_min_width','0'),(9189,2972,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(9190,2972,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(9191,2972,'_dt_slideshow_photo_scroller_pt_max_width','100'),(9192,2972,'_dt_slideshow_photo_scroller_pt_min_width','0'),(9193,2972,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(9194,2972,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(9195,2972,'_dt_slideshow_revolution_slider','none'),(9196,2972,'_dt_slideshow_layer_slider','none'),(9197,2972,'_dt_slideshow_layer_show_bg_and_paddings','0'),(9198,2972,'_dt_fancy_header_title_aligment','center'),(9199,2972,'_dt_fancy_header_breadcrumbs','enabled'),(9200,2972,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(9201,2972,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(9202,2972,'_dt_fancy_header_title_mode','custom'),(9203,2972,'_dt_fancy_header_title_color_mode','color'),(9204,2972,'_dt_fancy_header_title_color','#ffffff'),(9205,2972,'_dt_fancy_header_subtitle_color_mode','color'),(9206,2972,'_dt_fancy_header_subtitle_color','#ffffff'),(9207,2972,'_dt_fancy_header_bg_color','#222222'),(9208,2972,'_dt_fancy_header_bg_repeat','no-repeat'),(9209,2972,'_dt_fancy_header_bg_position_x','center'),(9210,2972,'_dt_fancy_header_bg_position_y','center'),(9211,2972,'_dt_fancy_header_bg_fullscreen','1'),(9212,2972,'_dt_fancy_header_height','300'),(9213,2972,'_dt_post_options_back_button',''),(9214,2972,'_dt_post_options_hide_thumbnail','0'),(9215,2972,'_dt_post_options_related_mode','same'),(9216,2972,'_dt_post_options_preview','normal'),(9217,2972,'_thumbnail_id','2986'),(9218,2972,'_dt_fancy_header_title_font_size','44'),(9219,2972,'_dt_fancy_header_title_line_height','50'),(9220,2972,'_dt_fancy_header_subtitle_font_size','30'),(9221,2972,'_dt_fancy_header_subtitle_line_height','36'),(9222,2972,'iawp_total_views','20'),(9223,2978,'_wc_memberships_force_public','no'),(9224,2978,'_edit_last','3'),(9225,2978,'_wc_memberships_use_custom_post_content_restricted_message','no'),(9226,2978,'_wpb_vc_js_status','false'),(9227,2978,'_dt_sidebar_position','right'),(9228,2978,'_dt_sidebar_widgetarea_id','sidebar_1'),(9229,2978,'_dt_sidebar_hide_on_mobile','0'),(9230,2978,'_dt_footer_show','1'),(9231,2978,'_dt_footer_widgetarea_id','sidebar_2'),(9232,2978,'_dt_footer_hide_on_mobile','0'),(9233,2978,'_dt_header_title','enabled'),(9234,2978,'_dt_header_background','normal'),(9235,2978,'_dt_header_background_below_slideshow','disabled'),(9236,2978,'_dt_header_transparent_bg_color','#000000'),(9237,2978,'_dt_header_transparent_bg_opacity','50'),(9238,2978,'_dt_header_transparent_bg_color_scheme','light'),(9239,2978,'_dt_slideshow_3d_layout','fullscreen-content'),(9240,2978,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(9241,2978,'_dt_microsite_mobile_menu',''),(9242,2978,'_dt_microsite_split_right_menu',''),(9243,2978,'_dt_microsite_primary_menu',''),(9244,2978,'_dt_microsite_split_left_menu',''),(9245,2978,'_dt_post_options_back_button',''),(9246,2978,'_dt_post_options_hide_thumbnail','0'),(9247,2978,'_dt_post_options_related_mode','same'),(9248,2978,'_dt_post_options_preview','normal'),(9249,2978,'_thumbnail_id','2999'),(9250,2978,'_wp_page_template','default'),(9251,2978,'_dt_header_transparent_top_bar_bg_color',''),(9252,2978,'_dt_header_transparent_top_bar_bg_opacity','0'),(9253,2978,'_dt_header_disabled_background','normal'),(9254,2978,'_dt_header_disabled_transparent_bg_color_scheme','light'),(9255,2978,'_dt_header_disabled_transparent_top_bar_bg_color',''),(9256,2978,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),(9257,2978,'_dt_header_disabled_transparent_bg_color',''),(9258,2978,'_dt_header_disabled_transparent_bg_opacity','0'),(9259,2978,'_dt_page_overrides_top_margin',''),(9260,2978,'_dt_page_overrides_right_margin',''),(9261,2978,'_dt_page_overrides_bottom_margin',''),(9262,2978,'_dt_page_overrides_left_margin',''),(9263,2978,'_dt_mobile_page_padding_top',''),(9264,2978,'_dt_mobile_page_padding_right',''),(9265,2978,'_dt_mobile_page_padding_bottom',''),(9266,2978,'_dt_mobile_page_padding_left',''),(9267,2978,'iawp_total_views','45'),(9268,28483,'_edit_last','2'),(9269,28483,'_thumbnail_id','28487'),(9270,28483,'_wp_page_template','default'),(9271,28483,'_wpb_vc_js_status','false'),(9272,28483,'_wc_memberships_force_public','no'),(9273,28483,'_wc_memberships_use_custom_post_content_restricted_message','no'),(9274,28483,'_dt_sidebar_position','right'),(9275,28483,'_dt_sidebar_widgetarea_id','sidebar_1'),(9276,28483,'_dt_sidebar_hide_on_mobile','0'),(9277,28483,'_dt_footer_show','1'),(9278,28483,'_dt_footer_widgetarea_id','sidebar_2'),(9279,28483,'_dt_footer_hide_on_mobile','0'),(9280,28483,'_dt_header_title','enabled'),(9281,28483,'_dt_header_background','normal'),(9282,28483,'_dt_header_background_below_slideshow','disabled'),(9283,28483,'_dt_header_transparent_bg_color_scheme','light'),(9284,28483,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(9285,28483,'_dt_header_transparent_top_bar_bg_opacity','25'),(9286,28483,'_dt_header_transparent_bg_color','#000000'),(9287,28483,'_dt_header_transparent_bg_opacity','50'),(9288,28483,'_dt_header_disabled_background','normal'),(9289,28483,'_dt_header_disabled_transparent_bg_color_scheme','light'),(9290,28483,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(9291,28483,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(9292,28483,'_dt_header_disabled_transparent_bg_color','#000000'),(9293,28483,'_dt_header_disabled_transparent_bg_opacity','50'),(9294,28483,'_dt_page_overrides_top_margin',''),(9295,28483,'_dt_page_overrides_right_margin',''),(9296,28483,'_dt_page_overrides_bottom_margin',''),(9297,28483,'_dt_page_overrides_left_margin',''),(9298,28483,'_dt_mobile_page_padding_top',''),(9299,28483,'_dt_mobile_page_padding_right',''),(9300,28483,'_dt_mobile_page_padding_bottom',''),(9301,28483,'_dt_mobile_page_padding_left',''),(9302,28483,'_dt_post_options_back_button',''),(9303,28483,'_dt_post_options_hide_thumbnail','0'),(9304,28483,'_dt_post_options_related_mode','same'),(9305,28483,'_dt_post_options_preview','normal'),(9306,28483,'_dt_microsite_primary_menu',''),(9307,28483,'_dt_microsite_split_left_menu',''),(9308,28483,'_dt_microsite_split_right_menu',''),(9309,28483,'_dt_microsite_mobile_menu',''),(9310,28615,'_edit_last','2'),(9311,28615,'_wp_page_template','default'),(9312,28615,'_wpb_vc_js_status','false'),(9313,28615,'_wc_memberships_force_public','no'),(9314,28615,'_wc_memberships_use_custom_post_content_restricted_message','no'),(9315,28615,'_dt_sidebar_position','right'),(9316,28615,'_dt_sidebar_widgetarea_id','sidebar_1'),(9317,28615,'_dt_sidebar_hide_on_mobile','0'),(9318,28615,'_dt_footer_show','1'),(9319,28615,'_dt_footer_widgetarea_id','sidebar_2'),(9320,28615,'_dt_footer_hide_on_mobile','0'),(9321,28615,'_dt_header_title','enabled'),(9322,28615,'_dt_header_background','normal'),(9323,28615,'_dt_header_background_below_slideshow','disabled'),(9324,28615,'_dt_header_transparent_bg_color_scheme','light'),(9325,28615,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(9326,28615,'_dt_header_transparent_top_bar_bg_opacity','25'),(9327,28615,'_dt_header_transparent_bg_color','#000000'),(9328,28615,'_dt_header_transparent_bg_opacity','50'),(9329,28615,'_dt_header_disabled_background','normal'),(9330,28615,'_dt_header_disabled_transparent_bg_color_scheme','light'),(9331,28615,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(9332,28615,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(9333,28615,'_dt_header_disabled_transparent_bg_color','#000000'),(9334,28615,'_dt_header_disabled_transparent_bg_opacity','50'),(9335,28615,'_dt_page_overrides_top_margin',''),(9336,28615,'_dt_page_overrides_right_margin',''),(9337,28615,'_dt_page_overrides_bottom_margin',''),(9338,28615,'_dt_page_overrides_left_margin',''),(9339,28615,'_dt_mobile_page_padding_top',''),(9340,28615,'_dt_mobile_page_padding_right',''),(9341,28615,'_dt_mobile_page_padding_bottom',''),(9342,28615,'_dt_mobile_page_padding_left',''),(9343,28615,'_dt_post_options_back_button',''),(9344,28615,'_dt_post_options_hide_thumbnail','0'),(9345,28615,'_dt_post_options_related_mode','same'),(9346,28615,'_dt_post_options_preview','normal'),(9347,28615,'_dt_microsite_primary_menu',''),(9348,28615,'_dt_microsite_split_left_menu',''),(9349,28615,'_dt_microsite_split_right_menu',''),(9350,28615,'_dt_microsite_mobile_menu',''),(9351,28615,'_thumbnail_id','28620'),(9352,28615,'iawp_total_views','24'),(9353,3178,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9354,3178,'_thumbnail_id','3191'),(9355,3178,'slide_template','default'),(9356,3178,'_wpb_vc_js_status','false'),(9357,3178,'_dt_sidebar_position','right'),(9358,3178,'_dt_sidebar_widgetarea_id','sidebar_1'),(9359,3178,'_dt_sidebar_hide_on_mobile','0'),(9360,3178,'_dt_footer_show','1'),(9361,3178,'_dt_footer_widgetarea_id','sidebar_2'),(9362,3178,'_dt_footer_hide_on_mobile','0'),(9363,3178,'_dt_header_title','enabled'),(9364,3178,'_dt_header_background','normal'),(9365,3178,'_dt_header_background_below_slideshow','disabled'),(9366,3178,'_dt_header_transparent_bg_color','#000000'),(9367,3178,'_dt_header_transparent_bg_opacity','50'),(9368,3178,'_dt_header_transparent_bg_color_scheme','light'),(9369,3178,'_dt_slideshow_mode','porthole'),(9370,3178,'_dt_slideshow_3d_layout','fullscreen-content'),(9371,3178,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(9372,3178,'_dt_slideshow_layout','fullwidth'),(9373,3178,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(9374,3178,'_dt_slideshow_scaling','fill'),(9375,3178,'_dt_slideshow_autoplay','paused'),(9376,3178,'_dt_slideshow_autoslide_interval','5000'),(9377,3178,'_dt_slideshow_hide_captions','0'),(9378,3178,'_dt_slideshow_photo_scroller_layout','fullscreen'),(9379,3178,'_dt_slideshow_photo_scroller_bg_color','#000000'),(9380,3178,'_dt_slideshow_photo_scroller_overlay','1'),(9381,3178,'_dt_slideshow_photo_scroller_top_padding','0'),(9382,3178,'_dt_slideshow_photo_scroller_bottom_padding','0'),(9383,3178,'_dt_slideshow_photo_scroller_side_paddings','0'),(9384,3178,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(9385,3178,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(9386,3178,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(9387,3178,'_dt_slideshow_photo_scroller_autoplay','play'),(9388,3178,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(9389,3178,'_dt_slideshow_photo_scroller_ls_max_width','100'),(9390,3178,'_dt_slideshow_photo_scroller_ls_min_width','0'),(9391,3178,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(9392,3178,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(9393,3178,'_dt_slideshow_photo_scroller_pt_max_width','100'),(9394,3178,'_dt_slideshow_photo_scroller_pt_min_width','0'),(9395,3178,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(9396,3178,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(9397,3178,'_dt_slideshow_revolution_slider','none'),(9398,3178,'_dt_slideshow_layer_slider','none'),(9399,3178,'_dt_slideshow_layer_show_bg_and_paddings','0'),(9400,3178,'_dt_fancy_header_title_aligment','center'),(9401,3178,'_dt_fancy_header_breadcrumbs','enabled'),(9402,3178,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(9403,3178,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(9404,3178,'_dt_fancy_header_title_mode','custom'),(9405,3178,'_dt_fancy_header_title_color_mode','color'),(9406,3178,'_dt_fancy_header_title_color','#ffffff'),(9407,3178,'_dt_fancy_header_subtitle_color_mode','color'),(9408,3178,'_dt_fancy_header_subtitle_color','#ffffff'),(9409,3178,'_dt_fancy_header_bg_color','#222222'),(9410,3178,'_dt_fancy_header_bg_repeat','no-repeat'),(9411,3178,'_dt_fancy_header_bg_position_x','center'),(9412,3178,'_dt_fancy_header_bg_position_y','center'),(9413,3178,'_dt_fancy_header_bg_fullscreen','1'),(9414,3178,'_dt_fancy_header_height','300'),(9415,3178,'_dt_post_options_back_button',''),(9416,3178,'_dt_post_options_hide_thumbnail','0'),(9417,3178,'_dt_post_options_related_mode','same'),(9418,3178,'_dt_post_options_preview','normal'),(9419,3178,'_dt_fancy_header_title_font_size','44'),(9420,3178,'_dt_fancy_header_title_line_height','50'),(9421,3178,'_dt_fancy_header_subtitle_font_size','30'),(9422,3178,'_dt_fancy_header_subtitle_line_height','36'),(9423,3198,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9424,3198,'_edit_last','3'),(9425,3198,'slide_template','default'),(9426,3198,'_wpb_vc_js_status','false'),(9427,3198,'_dt_sidebar_position','right'),(9428,3198,'_dt_sidebar_widgetarea_id','sidebar_1'),(9429,3198,'_dt_sidebar_hide_on_mobile','0'),(9430,3198,'_dt_footer_show','1'),(9431,3198,'_dt_footer_widgetarea_id','sidebar_2'),(9432,3198,'_dt_footer_hide_on_mobile','0'),(9433,3198,'_dt_header_title','enabled'),(9434,3198,'_dt_header_background','normal'),(9435,3198,'_dt_header_background_below_slideshow','disabled'),(9436,3198,'_dt_header_transparent_bg_color','#000000'),(9437,3198,'_dt_header_transparent_bg_opacity','50'),(9438,3198,'_dt_header_transparent_bg_color_scheme','light'),(9439,3198,'_dt_slideshow_mode','porthole'),(9440,3198,'_dt_slideshow_3d_layout','fullscreen-content'),(9441,3198,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(9442,3198,'_dt_slideshow_layout','fullwidth'),(9443,3198,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(9444,3198,'_dt_slideshow_scaling','fill'),(9445,3198,'_dt_slideshow_autoplay','paused'),(9446,3198,'_dt_slideshow_autoslide_interval','5000'),(9447,3198,'_dt_slideshow_hide_captions','0'),(9448,3198,'_dt_slideshow_photo_scroller_layout','fullscreen'),(9449,3198,'_dt_slideshow_photo_scroller_bg_color','#000000'),(9450,3198,'_dt_slideshow_photo_scroller_overlay','1'),(9451,3198,'_dt_slideshow_photo_scroller_top_padding','0'),(9452,3198,'_dt_slideshow_photo_scroller_bottom_padding','0'),(9453,3198,'_dt_slideshow_photo_scroller_side_paddings','0'),(9454,3198,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(9455,3198,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(9456,3198,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(9457,3198,'_dt_slideshow_photo_scroller_autoplay','play'),(9458,3198,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(9459,3198,'_dt_slideshow_photo_scroller_ls_max_width','100'),(9460,3198,'_dt_slideshow_photo_scroller_ls_min_width','0'),(9461,3198,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(9462,3198,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(9463,3198,'_dt_slideshow_photo_scroller_pt_max_width','100'),(9464,3198,'_dt_slideshow_photo_scroller_pt_min_width','0'),(9465,3198,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(9466,3198,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(9467,3198,'_dt_slideshow_revolution_slider','none'),(9468,3198,'_dt_slideshow_layer_slider','none'),(9469,3198,'_dt_slideshow_layer_show_bg_and_paddings','0'),(9470,3198,'_dt_fancy_header_title_aligment','center'),(9471,3198,'_dt_fancy_header_breadcrumbs','enabled'),(9472,3198,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(9473,3198,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(9474,3198,'_dt_fancy_header_title_mode','custom'),(9475,3198,'_dt_fancy_header_title_color_mode','color'),(9476,3198,'_dt_fancy_header_title_color','#ffffff'),(9477,3198,'_dt_fancy_header_subtitle_color_mode','color'),(9478,3198,'_dt_fancy_header_subtitle_color','#ffffff'),(9479,3198,'_dt_fancy_header_bg_color','#222222'),(9480,3198,'_dt_fancy_header_bg_repeat','no-repeat'),(9481,3198,'_dt_fancy_header_bg_position_x','center'),(9482,3198,'_dt_fancy_header_bg_position_y','center'),(9483,3198,'_dt_fancy_header_bg_fullscreen','1'),(9484,3198,'_dt_fancy_header_height','300'),(9485,3198,'_dt_post_options_back_button',''),(9486,3198,'_dt_post_options_hide_thumbnail','0'),(9487,3198,'_dt_post_options_related_mode','same'),(9488,3198,'_dt_post_options_preview','normal'),(9489,3198,'_thumbnail_id','3213'),(9490,3198,'_dt_fancy_header_title_font_size','44'),(9491,3198,'_dt_fancy_header_title_line_height','50'),(9492,3198,'_dt_fancy_header_subtitle_font_size','30'),(9493,3198,'_dt_fancy_header_subtitle_line_height','36'),(9494,3198,'iawp_total_views','4'),(9495,28326,'_edit_last','2'),(9496,28326,'_oembed_ec42434429e13fa1b49d1c7c4c743d70','<iframe title=\"&#039;The Slump&#039; Sciatic Nerve Mobilisation Technique\" width=\"948\" height=\"711\" src=\"https://www.youtube.com/embed/xMDNnhoXWRs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(9497,28326,'_oembed_time_ec42434429e13fa1b49d1c7c4c743d70','1624455619'),(9498,28326,'_oembed_f293a42257b3c22b2be862beb8b7d2db','<iframe title=\"4 Sign Screen &amp; Exercise\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/_Lkur9ZcNXw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(9499,28326,'_oembed_time_f293a42257b3c22b2be862beb8b7d2db','1624455912'),(9500,28326,'_oembed_cbf62734bf3c74ee807a2e667b9c3422','<iframe title=\"Lumbar mobility nerve mobilisation preparation\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/IKdmb5L5uh8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(9501,28326,'_oembed_time_cbf62734bf3c74ee807a2e667b9c3422','1624457986'),(9502,28326,'_thumbnail_id','27968'),(9503,28326,'_wp_page_template','default'),(9504,28326,'_wpb_vc_js_status','false'),(9505,28326,'_wc_memberships_force_public','no'),(9506,28326,'_wc_memberships_use_custom_post_content_restricted_message','no'),(9507,28326,'_dt_sidebar_position','right'),(9508,28326,'_dt_sidebar_widgetarea_id','sidebar_1'),(9509,28326,'_dt_sidebar_hide_on_mobile','0'),(9510,28326,'_dt_footer_show','1'),(9511,28326,'_dt_footer_widgetarea_id','sidebar_2'),(9512,28326,'_dt_footer_hide_on_mobile','0'),(9513,28326,'_dt_header_title','enabled'),(9514,28326,'_dt_header_background','normal'),(9515,28326,'_dt_header_background_below_slideshow','disabled'),(9516,28326,'_dt_header_transparent_bg_color_scheme','light'),(9517,28326,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(9518,28326,'_dt_header_transparent_top_bar_bg_opacity','25'),(9519,28326,'_dt_header_transparent_bg_color','#000000'),(9520,28326,'_dt_header_transparent_bg_opacity','50'),(9521,28326,'_dt_header_disabled_background','normal'),(9522,28326,'_dt_header_disabled_transparent_bg_color_scheme','light'),(9523,28326,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(9524,28326,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(9525,28326,'_dt_header_disabled_transparent_bg_color','#000000'),(9526,28326,'_dt_header_disabled_transparent_bg_opacity','50'),(9527,28326,'_dt_page_overrides_top_margin',''),(9528,28326,'_dt_page_overrides_right_margin',''),(9529,28326,'_dt_page_overrides_bottom_margin',''),(9530,28326,'_dt_page_overrides_left_margin',''),(9531,28326,'_dt_mobile_page_padding_top',''),(9532,28326,'_dt_mobile_page_padding_right',''),(9533,28326,'_dt_mobile_page_padding_bottom',''),(9534,28326,'_dt_mobile_page_padding_left',''),(9535,28326,'_dt_post_options_back_button',''),(9536,28326,'_dt_post_options_hide_thumbnail','0'),(9537,28326,'_dt_post_options_related_mode','same'),(9538,28326,'_dt_post_options_preview','normal'),(9539,28326,'_dt_microsite_primary_menu',''),(9540,28326,'_dt_microsite_split_left_menu',''),(9541,28326,'_dt_microsite_split_right_menu',''),(9542,28326,'_dt_microsite_mobile_menu',''),(9543,28326,'_oembed_1fd4529bdd13b3f8332701f6da95da51','<iframe title=\"&#039;The Slump&#039; Sciatic Nerve Mobilisation Technique\" width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/xMDNnhoXWRs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(9544,28326,'_oembed_time_1fd4529bdd13b3f8332701f6da95da51','1624458127'),(9545,3227,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9546,3227,'_edit_last','3'),(9547,3227,'_thumbnail_id','3234'),(9548,3227,'slide_template','default'),(9549,3227,'_wpb_vc_js_status','false'),(9550,3227,'_dt_sidebar_position','right'),(9551,3227,'_dt_sidebar_widgetarea_id','sidebar_1'),(9552,3227,'_dt_sidebar_hide_on_mobile','0'),(9553,3227,'_dt_footer_show','1'),(9554,3227,'_dt_footer_widgetarea_id','sidebar_2'),(9555,3227,'_dt_footer_hide_on_mobile','0'),(9556,3227,'_dt_header_title','enabled'),(9557,3227,'_dt_header_background','normal'),(9558,3227,'_dt_header_background_below_slideshow','disabled'),(9559,3227,'_dt_header_transparent_bg_color','#000000'),(9560,3227,'_dt_header_transparent_bg_opacity','50'),(9561,3227,'_dt_header_transparent_bg_color_scheme','light'),(9562,3227,'_dt_slideshow_mode','porthole'),(9563,3227,'_dt_slideshow_3d_layout','fullscreen-content'),(9564,3227,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(9565,3227,'_dt_slideshow_layout','fullwidth'),(9566,3227,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(9567,3227,'_dt_slideshow_scaling','fill'),(9568,3227,'_dt_slideshow_autoplay','paused'),(9569,3227,'_dt_slideshow_autoslide_interval','5000'),(9570,3227,'_dt_slideshow_hide_captions','0'),(9571,3227,'_dt_slideshow_photo_scroller_layout','fullscreen'),(9572,3227,'_dt_slideshow_photo_scroller_bg_color','#000000'),(9573,3227,'_dt_slideshow_photo_scroller_overlay','1'),(9574,3227,'_dt_slideshow_photo_scroller_top_padding','0'),(9575,3227,'_dt_slideshow_photo_scroller_bottom_padding','0'),(9576,3227,'_dt_slideshow_photo_scroller_side_paddings','0'),(9577,3227,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(9578,3227,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(9579,3227,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(9580,3227,'_dt_slideshow_photo_scroller_autoplay','play'),(9581,3227,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(9582,3227,'_dt_slideshow_photo_scroller_ls_max_width','100'),(9583,3227,'_dt_slideshow_photo_scroller_ls_min_width','0'),(9584,3227,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(9585,3227,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(9586,3227,'_dt_slideshow_photo_scroller_pt_max_width','100'),(9587,3227,'_dt_slideshow_photo_scroller_pt_min_width','0'),(9588,3227,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(9589,3227,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(9590,3227,'_dt_slideshow_revolution_slider','none'),(9591,3227,'_dt_slideshow_layer_slider','none'),(9592,3227,'_dt_slideshow_layer_show_bg_and_paddings','0'),(9593,3227,'_dt_fancy_header_title_aligment','center'),(9594,3227,'_dt_fancy_header_breadcrumbs','enabled'),(9595,3227,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(9596,3227,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(9597,3227,'_dt_fancy_header_title_mode','custom'),(9598,3227,'_dt_fancy_header_title_color_mode','color'),(9599,3227,'_dt_fancy_header_title_color','#ffffff'),(9600,3227,'_dt_fancy_header_subtitle_color_mode','color'),(9601,3227,'_dt_fancy_header_subtitle_color','#ffffff'),(9602,3227,'_dt_fancy_header_bg_color','#222222'),(9603,3227,'_dt_fancy_header_bg_repeat','no-repeat'),(9604,3227,'_dt_fancy_header_bg_position_x','center'),(9605,3227,'_dt_fancy_header_bg_position_y','center'),(9606,3227,'_dt_fancy_header_bg_fullscreen','1'),(9607,3227,'_dt_fancy_header_height','300'),(9608,3227,'_dt_post_options_back_button',''),(9609,3227,'_dt_post_options_hide_thumbnail','0'),(9610,3227,'_dt_post_options_related_mode','same'),(9611,3227,'_dt_post_options_preview','normal'),(9612,3227,'_dt_fancy_header_title_font_size','44'),(9613,3227,'_dt_fancy_header_title_line_height','50'),(9614,3227,'_dt_fancy_header_subtitle_font_size','30'),(9615,3227,'_dt_fancy_header_subtitle_line_height','36'),(9616,3239,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9617,3239,'_edit_last','3'),(9618,3239,'slide_template','default'),(9619,3239,'_wpb_vc_js_status','false'),(9620,3239,'_dt_sidebar_position','right'),(9621,3239,'_dt_sidebar_widgetarea_id','sidebar_1'),(9622,3239,'_dt_sidebar_hide_on_mobile','0'),(9623,3239,'_dt_footer_show','1'),(9624,3239,'_dt_footer_widgetarea_id','sidebar_2'),(9625,3239,'_dt_footer_hide_on_mobile','0'),(9626,3239,'_dt_header_title','enabled'),(9627,3239,'_dt_header_background','normal'),(9628,3239,'_dt_header_background_below_slideshow','disabled'),(9629,3239,'_dt_header_transparent_bg_color','#000000'),(9630,3239,'_dt_header_transparent_bg_opacity','50'),(9631,3239,'_dt_header_transparent_bg_color_scheme','light'),(9632,3239,'_dt_slideshow_mode','porthole'),(9633,3239,'_dt_slideshow_3d_layout','fullscreen-content'),(9634,3239,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(9635,3239,'_dt_slideshow_layout','fullwidth'),(9636,3239,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(9637,3239,'_dt_slideshow_scaling','fill'),(9638,3239,'_dt_slideshow_autoplay','paused'),(9639,3239,'_dt_slideshow_autoslide_interval','5000'),(9640,3239,'_dt_slideshow_hide_captions','0'),(9641,3239,'_dt_slideshow_photo_scroller_layout','fullscreen'),(9642,3239,'_dt_slideshow_photo_scroller_bg_color','#000000'),(9643,3239,'_dt_slideshow_photo_scroller_overlay','1'),(9644,3239,'_dt_slideshow_photo_scroller_top_padding','0'),(9645,3239,'_dt_slideshow_photo_scroller_bottom_padding','0'),(9646,3239,'_dt_slideshow_photo_scroller_side_paddings','0'),(9647,3239,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(9648,3239,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(9649,3239,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(9650,3239,'_dt_slideshow_photo_scroller_autoplay','play'),(9651,3239,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(9652,3239,'_dt_slideshow_photo_scroller_ls_max_width','100'),(9653,3239,'_dt_slideshow_photo_scroller_ls_min_width','0'),(9654,3239,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(9655,3239,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(9656,3239,'_dt_slideshow_photo_scroller_pt_max_width','100'),(9657,3239,'_dt_slideshow_photo_scroller_pt_min_width','0'),(9658,3239,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(9659,3239,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(9660,3239,'_dt_slideshow_revolution_slider','none'),(9661,3239,'_dt_slideshow_layer_slider','none'),(9662,3239,'_dt_slideshow_layer_show_bg_and_paddings','0'),(9663,3239,'_dt_fancy_header_title_aligment','center'),(9664,3239,'_dt_fancy_header_breadcrumbs','enabled'),(9665,3239,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(9666,3239,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(9667,3239,'_dt_fancy_header_title_mode','custom'),(9668,3239,'_dt_fancy_header_title_color_mode','color'),(9669,3239,'_dt_fancy_header_title_color','#ffffff'),(9670,3239,'_dt_fancy_header_subtitle_color_mode','color'),(9671,3239,'_dt_fancy_header_subtitle_color','#ffffff'),(9672,3239,'_dt_fancy_header_bg_color','#222222'),(9673,3239,'_dt_fancy_header_bg_repeat','no-repeat'),(9674,3239,'_dt_fancy_header_bg_position_x','center'),(9675,3239,'_dt_fancy_header_bg_position_y','center'),(9676,3239,'_dt_fancy_header_bg_fullscreen','1'),(9677,3239,'_dt_fancy_header_height','300'),(9678,3239,'_dt_post_options_back_button',''),(9679,3239,'_dt_post_options_hide_thumbnail','0'),(9680,3239,'_dt_post_options_related_mode','same'),(9681,3239,'_dt_post_options_preview','normal'),(9682,3239,'_thumbnail_id','3243'),(9683,3239,'_dt_fancy_header_title_font_size','44'),(9684,3239,'_dt_fancy_header_title_line_height','50'),(9685,3239,'_dt_fancy_header_subtitle_font_size','30'),(9686,3239,'_dt_fancy_header_subtitle_line_height','36'),(9687,3321,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9688,3321,'_edit_last','3'),(9689,3321,'slide_template','default'),(9690,3321,'_wpb_vc_js_status','false'),(9691,3321,'_dt_sidebar_position','right'),(9692,3321,'_dt_sidebar_widgetarea_id','sidebar_1'),(9693,3321,'_dt_sidebar_hide_on_mobile','0'),(9694,3321,'_dt_footer_show','1'),(9695,3321,'_dt_footer_widgetarea_id','sidebar_2'),(9696,3321,'_dt_footer_hide_on_mobile','0'),(9697,3321,'_dt_header_title','enabled'),(9698,3321,'_dt_header_background','normal'),(9699,3321,'_dt_header_background_below_slideshow','disabled'),(9700,3321,'_dt_header_transparent_bg_color','#000000'),(9701,3321,'_dt_header_transparent_bg_opacity','50'),(9702,3321,'_dt_header_transparent_bg_color_scheme','light'),(9703,3321,'_dt_slideshow_mode','porthole'),(9704,3321,'_dt_slideshow_3d_layout','fullscreen-content'),(9705,3321,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(9706,3321,'_dt_slideshow_layout','fullwidth'),(9707,3321,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(9708,3321,'_dt_slideshow_scaling','fill'),(9709,3321,'_dt_slideshow_autoplay','paused'),(9710,3321,'_dt_slideshow_autoslide_interval','5000'),(9711,3321,'_dt_slideshow_hide_captions','0'),(9712,3321,'_dt_slideshow_photo_scroller_layout','fullscreen'),(9713,3321,'_dt_slideshow_photo_scroller_bg_color','#000000'),(9714,3321,'_dt_slideshow_photo_scroller_overlay','1'),(9715,3321,'_dt_slideshow_photo_scroller_top_padding','0'),(9716,3321,'_dt_slideshow_photo_scroller_bottom_padding','0'),(9717,3321,'_dt_slideshow_photo_scroller_side_paddings','0'),(9718,3321,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(9719,3321,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(9720,3321,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(9721,3321,'_dt_slideshow_photo_scroller_autoplay','play'),(9722,3321,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(9723,3321,'_dt_slideshow_photo_scroller_ls_max_width','100'),(9724,3321,'_dt_slideshow_photo_scroller_ls_min_width','0'),(9725,3321,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(9726,3321,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(9727,3321,'_dt_slideshow_photo_scroller_pt_max_width','100'),(9728,3321,'_dt_slideshow_photo_scroller_pt_min_width','0'),(9729,3321,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(9730,3321,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(9731,3321,'_dt_slideshow_revolution_slider','none'),(9732,3321,'_dt_slideshow_layer_slider','none'),(9733,3321,'_dt_slideshow_layer_show_bg_and_paddings','0'),(9734,3321,'_dt_fancy_header_title_aligment','center'),(9735,3321,'_dt_fancy_header_breadcrumbs','enabled'),(9736,3321,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(9737,3321,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(9738,3321,'_dt_fancy_header_title_mode','custom'),(9739,3321,'_dt_fancy_header_title_color_mode','color'),(9740,3321,'_dt_fancy_header_title_color','#ffffff'),(9741,3321,'_dt_fancy_header_subtitle_color_mode','color'),(9742,3321,'_dt_fancy_header_subtitle_color','#ffffff'),(9743,3321,'_dt_fancy_header_bg_color','#222222'),(9744,3321,'_dt_fancy_header_bg_repeat','no-repeat'),(9745,3321,'_dt_fancy_header_bg_position_x','center'),(9746,3321,'_dt_fancy_header_bg_position_y','center'),(9747,3321,'_dt_fancy_header_bg_fullscreen','1'),(9748,3321,'_dt_fancy_header_height','300'),(9749,3321,'_dt_post_options_back_button',''),(9750,3321,'_dt_post_options_hide_thumbnail','0'),(9751,3321,'_dt_post_options_related_mode','same'),(9752,3321,'_dt_post_options_preview','normal'),(9753,3321,'_thumbnail_id','3325'),(9754,3321,'_oembed_b62035c01accdba23b20ed4aa8e8714b','<blockquote data-secret=\"ViroTisAMG\" class=\"wp-embedded-content\"><a href=\"https://www.healthambition.com/7-steps-to-replace-diet-soda/\">7 Steps to Replace Diet Soda with Something Healthy</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://www.healthambition.com/7-steps-to-replace-diet-soda/embed/#?secret=ViroTisAMG\" data-secret=\"ViroTisAMG\" width=\"600\" height=\"338\" title=\"&#8220;7 Steps to Replace Diet Soda with Something Healthy&#8221; &#8212; Health Ambition\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(9755,3321,'_oembed_time_b62035c01accdba23b20ed4aa8e8714b','1507796728'),(9756,3321,'_dt_fancy_header_title_font_size','44'),(9757,3321,'_dt_fancy_header_title_line_height','50'),(9758,3321,'_dt_fancy_header_subtitle_font_size','30'),(9759,3321,'_dt_fancy_header_subtitle_line_height','36'),(9760,3321,'iawp_total_views','24'),(9761,27746,'_edit_last','2'),(9762,27746,'_oembed_41e15dc60dc45cfe1b60fc377ac8c03e','<blockquote class=\"wp-embedded-content\" data-secret=\"1Tfcd43bjs\"><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/\">Pelvis &#038; Spine Biomechanics 2 Day Attendance Workshop (Pre-Course Online Study)</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Pelvis &#038; Spine Biomechanics 2 Day Attendance Workshop (Pre-Course Online Study)&#8221; &#8212; Biomechanics Education\" src=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/embed/#?secret=1Tfcd43bjs\" data-secret=\"1Tfcd43bjs\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(9763,27746,'_oembed_time_41e15dc60dc45cfe1b60fc377ac8c03e','1621334997'),(9764,27746,'_thumbnail_id','27748'),(9765,27746,'_wp_page_template','default'),(9766,27746,'_wpb_vc_js_status','false'),(9767,27746,'_wc_memberships_force_public','no'),(9768,27746,'_wc_memberships_use_custom_post_content_restricted_message','no'),(9769,27746,'_dt_sidebar_position','right'),(9770,27746,'_dt_sidebar_widgetarea_id','sidebar_1'),(9771,27746,'_dt_sidebar_hide_on_mobile','0'),(9772,27746,'_dt_footer_show','1'),(9773,27746,'_dt_footer_widgetarea_id','sidebar_2'),(9774,27746,'_dt_footer_hide_on_mobile','0'),(9775,27746,'_dt_header_title','enabled'),(9776,27746,'_dt_header_background','normal'),(9777,27746,'_dt_header_background_below_slideshow','disabled'),(9778,27746,'_dt_header_transparent_bg_color_scheme','light'),(9779,27746,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(9780,27746,'_dt_header_transparent_top_bar_bg_opacity','25'),(9781,27746,'_dt_header_transparent_bg_color','#000000'),(9782,27746,'_dt_header_transparent_bg_opacity','50'),(9783,27746,'_dt_header_disabled_background','normal'),(9784,27746,'_dt_header_disabled_transparent_bg_color_scheme','light'),(9785,27746,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(9786,27746,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(9787,27746,'_dt_header_disabled_transparent_bg_color','#000000'),(9788,27746,'_dt_header_disabled_transparent_bg_opacity','50'),(9789,27746,'_dt_page_overrides_top_margin',''),(9790,27746,'_dt_page_overrides_right_margin',''),(9791,27746,'_dt_page_overrides_bottom_margin',''),(9792,27746,'_dt_page_overrides_left_margin',''),(9793,27746,'_dt_mobile_page_padding_top',''),(9794,27746,'_dt_mobile_page_padding_right',''),(9795,27746,'_dt_mobile_page_padding_bottom',''),(9796,27746,'_dt_mobile_page_padding_left',''),(9797,27746,'_dt_post_options_back_button',''),(9798,27746,'_dt_post_options_hide_thumbnail','0'),(9799,27746,'_dt_post_options_related_mode','same'),(9800,27746,'_dt_post_options_preview','normal'),(9801,27746,'_dt_microsite_primary_menu',''),(9802,27746,'_dt_microsite_split_left_menu',''),(9803,27746,'_dt_microsite_split_right_menu',''),(9804,27746,'_dt_microsite_mobile_menu',''),(9805,27746,'iawp_total_views','23'),(9806,27868,'_edit_last','2'),(9807,27868,'_wp_page_template','default'),(9808,27868,'_wpb_vc_js_status','false'),(9809,27868,'_wc_memberships_force_public','no'),(9810,27868,'_wc_memberships_use_custom_post_content_restricted_message','no'),(9811,27868,'_dt_sidebar_position','right'),(9812,27868,'_dt_sidebar_widgetarea_id','sidebar_1'),(9813,27868,'_dt_sidebar_hide_on_mobile','0'),(9814,27868,'_dt_footer_show','1'),(9815,27868,'_dt_footer_widgetarea_id','sidebar_2'),(9816,27868,'_dt_footer_hide_on_mobile','0'),(9817,27868,'_dt_header_title','enabled'),(9818,27868,'_dt_header_background','normal'),(9819,27868,'_dt_header_background_below_slideshow','disabled'),(9820,27868,'_dt_header_transparent_bg_color_scheme','light'),(9821,27868,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(9822,27868,'_dt_header_transparent_top_bar_bg_opacity','25'),(9823,27868,'_dt_header_transparent_bg_color','#000000'),(9824,27868,'_dt_header_transparent_bg_opacity','50'),(9825,27868,'_dt_header_disabled_background','normal'),(9826,27868,'_dt_header_disabled_transparent_bg_color_scheme','light'),(9827,27868,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(9828,27868,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(9829,27868,'_dt_header_disabled_transparent_bg_color','#000000'),(9830,27868,'_dt_header_disabled_transparent_bg_opacity','50'),(9831,27868,'_dt_page_overrides_top_margin',''),(9832,27868,'_dt_page_overrides_right_margin',''),(9833,27868,'_dt_page_overrides_bottom_margin',''),(9834,27868,'_dt_page_overrides_left_margin',''),(9835,27868,'_dt_mobile_page_padding_top',''),(9836,27868,'_dt_mobile_page_padding_right',''),(9837,27868,'_dt_mobile_page_padding_bottom',''),(9838,27868,'_dt_mobile_page_padding_left',''),(9839,27868,'_dt_post_options_back_button',''),(9840,27868,'_dt_post_options_hide_thumbnail','0'),(9841,27868,'_dt_post_options_related_mode','same'),(9842,27868,'_dt_post_options_preview','normal'),(9843,27868,'_dt_microsite_primary_menu',''),(9844,27868,'_dt_microsite_split_left_menu',''),(9845,27868,'_dt_microsite_split_right_menu',''),(9846,27868,'_dt_microsite_mobile_menu',''),(9847,27868,'_thumbnail_id','23146'),(9848,27868,'iawp_total_views','5'),(9849,3478,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9850,3478,'_edit_last','3'),(9851,3478,'_thumbnail_id','3479'),(9852,3478,'slide_template','default'),(9853,3478,'_wpb_vc_js_status','false'),(9854,3478,'_dt_sidebar_position','right'),(9855,3478,'_dt_sidebar_widgetarea_id','sidebar_1'),(9856,3478,'_dt_sidebar_hide_on_mobile','0'),(9857,3478,'_dt_footer_show','1'),(9858,3478,'_dt_footer_widgetarea_id','sidebar_2'),(9859,3478,'_dt_footer_hide_on_mobile','0'),(9860,3478,'_dt_header_title','enabled'),(9861,3478,'_dt_header_background','normal'),(9862,3478,'_dt_header_background_below_slideshow','disabled'),(9863,3478,'_dt_header_transparent_bg_color','#000000'),(9864,3478,'_dt_header_transparent_bg_opacity','50'),(9865,3478,'_dt_header_transparent_bg_color_scheme','light'),(9866,3478,'_dt_slideshow_mode','porthole'),(9867,3478,'_dt_slideshow_3d_layout','fullscreen-content'),(9868,3478,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(9869,3478,'_dt_slideshow_layout','fullwidth'),(9870,3478,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(9871,3478,'_dt_slideshow_scaling','fill'),(9872,3478,'_dt_slideshow_autoplay','paused'),(9873,3478,'_dt_slideshow_autoslide_interval','5000'),(9874,3478,'_dt_slideshow_hide_captions','0'),(9875,3478,'_dt_slideshow_photo_scroller_layout','fullscreen'),(9876,3478,'_dt_slideshow_photo_scroller_bg_color','#000000'),(9877,3478,'_dt_slideshow_photo_scroller_overlay','1'),(9878,3478,'_dt_slideshow_photo_scroller_top_padding','0'),(9879,3478,'_dt_slideshow_photo_scroller_bottom_padding','0'),(9880,3478,'_dt_slideshow_photo_scroller_side_paddings','0'),(9881,3478,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(9882,3478,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(9883,3478,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(9884,3478,'_dt_slideshow_photo_scroller_autoplay','play'),(9885,3478,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(9886,3478,'_dt_slideshow_photo_scroller_ls_max_width','100'),(9887,3478,'_dt_slideshow_photo_scroller_ls_min_width','0'),(9888,3478,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(9889,3478,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(9890,3478,'_dt_slideshow_photo_scroller_pt_max_width','100'),(9891,3478,'_dt_slideshow_photo_scroller_pt_min_width','0'),(9892,3478,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(9893,3478,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(9894,3478,'_dt_slideshow_revolution_slider','none'),(9895,3478,'_dt_slideshow_layer_slider','none'),(9896,3478,'_dt_slideshow_layer_show_bg_and_paddings','0'),(9897,3478,'_dt_fancy_header_title_aligment','center'),(9898,3478,'_dt_fancy_header_breadcrumbs','enabled'),(9899,3478,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(9900,3478,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(9901,3478,'_dt_fancy_header_title_mode','custom'),(9902,3478,'_dt_fancy_header_title_color_mode','color'),(9903,3478,'_dt_fancy_header_title_color','#ffffff'),(9904,3478,'_dt_fancy_header_subtitle_color_mode','color'),(9905,3478,'_dt_fancy_header_subtitle_color','#ffffff'),(9906,3478,'_dt_fancy_header_bg_color','#222222'),(9907,3478,'_dt_fancy_header_bg_repeat','no-repeat'),(9908,3478,'_dt_fancy_header_bg_position_x','center'),(9909,3478,'_dt_fancy_header_bg_position_y','center'),(9910,3478,'_dt_fancy_header_bg_fullscreen','1'),(9911,3478,'_dt_fancy_header_height','300'),(9912,3478,'_dt_post_options_back_button',''),(9913,3478,'_dt_post_options_hide_thumbnail','0'),(9914,3478,'_dt_post_options_related_mode','same'),(9915,3478,'_dt_post_options_preview','normal'),(9916,3478,'_dt_fancy_header_title_font_size','44'),(9917,3478,'_dt_fancy_header_title_line_height','50'),(9918,3478,'_dt_fancy_header_subtitle_font_size','30'),(9919,3478,'_dt_fancy_header_subtitle_line_height','36'),(9920,3478,'_oembed_6e1a3eacb90052b90d1c0b3f1837d102','{{unknown}}'),(9921,3478,'_oembed_635b2f50c3588f891017bdae4a9fbfb2','{{unknown}}'),(9922,3478,'_oembed_a478a056d3f98adb3b15220b1bab94ff','{{unknown}}'),(9923,3478,'_oembed_e83522013a4aa9266dd88925951ea6b6','{{unknown}}'),(9924,3478,'_oembed_d0cbcde72d30bdae18939f5c56e4afe0','{{unknown}}'),(9925,3501,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9926,3501,'_edit_last','3'),(9927,3501,'_thumbnail_id','3502'),(9928,3501,'slide_template','default'),(9929,3501,'_wpb_vc_js_status','false'),(9930,3501,'_dt_sidebar_position','right'),(9931,3501,'_dt_sidebar_widgetarea_id','sidebar_1'),(9932,3501,'_dt_sidebar_hide_on_mobile','0'),(9933,3501,'_dt_footer_show','1'),(9934,3501,'_dt_footer_widgetarea_id','sidebar_2'),(9935,3501,'_dt_footer_hide_on_mobile','0'),(9936,3501,'_dt_header_title','enabled'),(9937,3501,'_dt_header_background','normal'),(9938,3501,'_dt_header_background_below_slideshow','disabled'),(9939,3501,'_dt_header_transparent_bg_color','#000000'),(9940,3501,'_dt_header_transparent_bg_opacity','50'),(9941,3501,'_dt_header_transparent_bg_color_scheme','light'),(9942,3501,'_dt_slideshow_mode','porthole'),(9943,3501,'_dt_slideshow_3d_layout','fullscreen-content'),(9944,3501,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(9945,3501,'_dt_slideshow_layout','fullwidth'),(9946,3501,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(9947,3501,'_dt_slideshow_scaling','fill'),(9948,3501,'_dt_slideshow_autoplay','paused'),(9949,3501,'_dt_slideshow_autoslide_interval','5000'),(9950,3501,'_dt_slideshow_hide_captions','0'),(9951,3501,'_dt_slideshow_photo_scroller_layout','fullscreen'),(9952,3501,'_dt_slideshow_photo_scroller_bg_color','#000000'),(9953,3501,'_dt_slideshow_photo_scroller_overlay','1'),(9954,3501,'_dt_slideshow_photo_scroller_top_padding','0'),(9955,3501,'_dt_slideshow_photo_scroller_bottom_padding','0'),(9956,3501,'_dt_slideshow_photo_scroller_side_paddings','0'),(9957,3501,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(9958,3501,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(9959,3501,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(9960,3501,'_dt_slideshow_photo_scroller_autoplay','play'),(9961,3501,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(9962,3501,'_dt_slideshow_photo_scroller_ls_max_width','100'),(9963,3501,'_dt_slideshow_photo_scroller_ls_min_width','0'),(9964,3501,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(9965,3501,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(9966,3501,'_dt_slideshow_photo_scroller_pt_max_width','100'),(9967,3501,'_dt_slideshow_photo_scroller_pt_min_width','0'),(9968,3501,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(9969,3501,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(9970,3501,'_dt_slideshow_revolution_slider','none'),(9971,3501,'_dt_slideshow_layer_slider','none'),(9972,3501,'_dt_slideshow_layer_show_bg_and_paddings','0'),(9973,3501,'_dt_fancy_header_title_aligment','center'),(9974,3501,'_dt_fancy_header_breadcrumbs','enabled'),(9975,3501,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(9976,3501,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(9977,3501,'_dt_fancy_header_title_mode','custom'),(9978,3501,'_dt_fancy_header_title_color_mode','color'),(9979,3501,'_dt_fancy_header_title_color','#ffffff'),(9980,3501,'_dt_fancy_header_subtitle_color_mode','color'),(9981,3501,'_dt_fancy_header_subtitle_color','#ffffff'),(9982,3501,'_dt_fancy_header_bg_color','#222222'),(9983,3501,'_dt_fancy_header_bg_repeat','no-repeat'),(9984,3501,'_dt_fancy_header_bg_position_x','center'),(9985,3501,'_dt_fancy_header_bg_position_y','center'),(9986,3501,'_dt_fancy_header_bg_fullscreen','1'),(9987,3501,'_dt_fancy_header_height','300'),(9988,3501,'_dt_post_options_back_button',''),(9989,3501,'_dt_post_options_hide_thumbnail','0'),(9990,3501,'_dt_post_options_related_mode','same'),(9991,3501,'_dt_post_options_preview','normal'),(9992,3501,'_dt_fancy_header_title_font_size','44'),(9993,3501,'_dt_fancy_header_title_line_height','50'),(9994,3501,'_dt_fancy_header_subtitle_font_size','30'),(9995,3501,'_dt_fancy_header_subtitle_line_height','36'),(9996,3550,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(9997,3550,'_edit_last','3'),(9998,3550,'_thumbnail_id','3551'),(9999,3550,'slide_template','default'),(10000,3550,'_wpb_vc_js_status','false'),(10001,3550,'_dt_sidebar_position','right'),(10002,3550,'_dt_sidebar_widgetarea_id','sidebar_1'),(10003,3550,'_dt_sidebar_hide_on_mobile','0'),(10004,3550,'_dt_footer_show','1'),(10005,3550,'_dt_footer_widgetarea_id','sidebar_2'),(10006,3550,'_dt_footer_hide_on_mobile','0'),(10007,3550,'_dt_header_title','enabled'),(10008,3550,'_dt_header_background','normal'),(10009,3550,'_dt_header_background_below_slideshow','disabled'),(10010,3550,'_dt_header_transparent_bg_color','#000000'),(10011,3550,'_dt_header_transparent_bg_opacity','50'),(10012,3550,'_dt_header_transparent_bg_color_scheme','light'),(10013,3550,'_dt_slideshow_mode','porthole'),(10014,3550,'_dt_slideshow_3d_layout','fullscreen-content'),(10015,3550,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(10016,3550,'_dt_slideshow_layout','fullwidth'),(10017,3550,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(10018,3550,'_dt_slideshow_scaling','fill'),(10019,3550,'_dt_slideshow_autoplay','paused'),(10020,3550,'_dt_slideshow_autoslide_interval','5000'),(10021,3550,'_dt_slideshow_hide_captions','0'),(10022,3550,'_dt_slideshow_photo_scroller_layout','fullscreen'),(10023,3550,'_dt_slideshow_photo_scroller_bg_color','#000000'),(10024,3550,'_dt_slideshow_photo_scroller_overlay','1'),(10025,3550,'_dt_slideshow_photo_scroller_top_padding','0'),(10026,3550,'_dt_slideshow_photo_scroller_bottom_padding','0'),(10027,3550,'_dt_slideshow_photo_scroller_side_paddings','0'),(10028,3550,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(10029,3550,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(10030,3550,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(10031,3550,'_dt_slideshow_photo_scroller_autoplay','play'),(10032,3550,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(10033,3550,'_dt_slideshow_photo_scroller_ls_max_width','100'),(10034,3550,'_dt_slideshow_photo_scroller_ls_min_width','0'),(10035,3550,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(10036,3550,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(10037,3550,'_dt_slideshow_photo_scroller_pt_max_width','100'),(10038,3550,'_dt_slideshow_photo_scroller_pt_min_width','0'),(10039,3550,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(10040,3550,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(10041,3550,'_dt_slideshow_revolution_slider','none'),(10042,3550,'_dt_slideshow_layer_slider','none'),(10043,3550,'_dt_slideshow_layer_show_bg_and_paddings','0'),(10044,3550,'_dt_fancy_header_title_aligment','center'),(10045,3550,'_dt_fancy_header_breadcrumbs','enabled'),(10046,3550,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(10047,3550,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(10048,3550,'_dt_fancy_header_title_mode','custom'),(10049,3550,'_dt_fancy_header_title_color_mode','color'),(10050,3550,'_dt_fancy_header_title_color','#ffffff'),(10051,3550,'_dt_fancy_header_subtitle_color_mode','color'),(10052,3550,'_dt_fancy_header_subtitle_color','#ffffff'),(10053,3550,'_dt_fancy_header_bg_color','#222222'),(10054,3550,'_dt_fancy_header_bg_repeat','no-repeat'),(10055,3550,'_dt_fancy_header_bg_position_x','center'),(10056,3550,'_dt_fancy_header_bg_position_y','center'),(10057,3550,'_dt_fancy_header_bg_fullscreen','1'),(10058,3550,'_dt_fancy_header_height','300'),(10059,3550,'_dt_post_options_back_button',''),(10060,3550,'_dt_post_options_hide_thumbnail','0'),(10061,3550,'_dt_post_options_related_mode','same'),(10062,3550,'_dt_post_options_preview','normal'),(10063,3550,'_dt_fancy_header_title_font_size','44'),(10064,3550,'_dt_fancy_header_title_line_height','50'),(10065,3550,'_dt_fancy_header_subtitle_font_size','30'),(10066,3550,'_dt_fancy_header_subtitle_line_height','36'),(10067,3628,'_dt_header_transparent_top_bar_bg_color',''),(10068,3628,'_edit_last','3'),(10069,3628,'_thumbnail_id','3629'),(10070,3628,'slide_template','default'),(10071,3628,'_wpb_vc_js_status','false'),(10072,3628,'_dt_sidebar_position','right'),(10073,3628,'_dt_sidebar_widgetarea_id','sidebar_1'),(10074,3628,'_dt_sidebar_hide_on_mobile','0'),(10075,3628,'_dt_footer_show','1'),(10076,3628,'_dt_footer_widgetarea_id','sidebar_2'),(10077,3628,'_dt_footer_hide_on_mobile','0'),(10078,3628,'_dt_header_title','enabled'),(10079,3628,'_dt_header_background','normal'),(10080,3628,'_dt_header_background_below_slideshow','disabled'),(10081,3628,'_dt_header_transparent_bg_color','#000000'),(10082,3628,'_dt_header_transparent_bg_opacity','50'),(10083,3628,'_dt_header_transparent_bg_color_scheme','light'),(10084,3628,'_dt_slideshow_3d_layout','fullscreen-content'),(10085,3628,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(10086,3628,'_dt_post_options_back_button',''),(10087,3628,'_dt_post_options_hide_thumbnail','0'),(10088,3628,'_dt_post_options_related_mode','same'),(10089,3628,'_dt_post_options_preview','normal'),(10090,3628,'_wc_memberships_force_public','no'),(10091,3628,'_wc_memberships_use_custom_post_content_restricted_message','no'),(10092,3628,'_dt_header_transparent_top_bar_bg_opacity','0'),(10093,3628,'_dt_header_disabled_background','normal'),(10094,3628,'_dt_header_disabled_transparent_bg_color_scheme','light'),(10095,3628,'_dt_header_disabled_transparent_top_bar_bg_color',''),(10096,3628,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),(10097,3628,'_dt_header_disabled_transparent_bg_color',''),(10098,3628,'_dt_header_disabled_transparent_bg_opacity','0'),(10099,3628,'_dt_page_overrides_top_margin',''),(10100,3628,'_dt_page_overrides_bottom_margin',''),(10101,26957,'_edit_last','2'),(10102,26957,'_thumbnail_id','26965'),(10103,26957,'_wp_page_template','default'),(10104,26957,'_wpb_vc_js_status','false'),(10105,26957,'_wc_memberships_force_public','no'),(10106,26957,'_wc_memberships_use_custom_post_content_restricted_message','no'),(10107,26957,'_dt_sidebar_position','right'),(10108,26957,'_dt_sidebar_widgetarea_id','sidebar_1'),(10109,26957,'_dt_sidebar_hide_on_mobile','0'),(10110,26957,'_dt_footer_show','1'),(10111,26957,'_dt_footer_widgetarea_id','sidebar_2'),(10112,26957,'_dt_footer_hide_on_mobile','0'),(10113,26957,'_dt_header_title','enabled'),(10114,26957,'_dt_header_background','normal'),(10115,26957,'_dt_header_background_below_slideshow','disabled'),(10116,26957,'_dt_header_transparent_bg_color_scheme','light'),(10117,26957,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(10118,26957,'_dt_header_transparent_top_bar_bg_opacity','25'),(10119,26957,'_dt_header_transparent_bg_color','#000000'),(10120,26957,'_dt_header_transparent_bg_opacity','50'),(10121,26957,'_dt_header_disabled_background','normal'),(10122,26957,'_dt_header_disabled_transparent_bg_color_scheme','light'),(10123,26957,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(10124,26957,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(10125,26957,'_dt_header_disabled_transparent_bg_color','#000000'),(10126,26957,'_dt_header_disabled_transparent_bg_opacity','50'),(10127,26957,'_dt_page_overrides_top_margin',''),(10128,26957,'_dt_page_overrides_right_margin',''),(10129,26957,'_dt_page_overrides_bottom_margin',''),(10130,26957,'_dt_page_overrides_left_margin',''),(10131,26957,'_dt_mobile_page_padding_top',''),(10132,26957,'_dt_mobile_page_padding_right',''),(10133,26957,'_dt_mobile_page_padding_bottom',''),(10134,26957,'_dt_mobile_page_padding_left',''),(10135,26957,'_dt_post_options_back_button',''),(10136,26957,'_dt_post_options_hide_thumbnail','0'),(10137,26957,'_dt_post_options_related_mode','same'),(10138,26957,'_dt_post_options_preview','normal'),(10139,26957,'_dt_microsite_primary_menu',''),(10140,26957,'_dt_microsite_split_left_menu',''),(10141,26957,'_dt_microsite_split_right_menu',''),(10142,26957,'_dt_microsite_mobile_menu',''),(10143,27204,'_edit_last','2'),(10144,27204,'_thumbnail_id','27205'),(10145,27204,'_wp_page_template','default'),(10146,27204,'_wpb_vc_js_status','false'),(10147,27204,'_wc_memberships_force_public','no'),(10148,27204,'_wc_memberships_use_custom_post_content_restricted_message','no'),(10149,27204,'_dt_sidebar_position','right'),(10150,27204,'_dt_sidebar_widgetarea_id','sidebar_1'),(10151,27204,'_dt_sidebar_hide_on_mobile','0'),(10152,27204,'_dt_footer_show','1'),(10153,27204,'_dt_footer_widgetarea_id','sidebar_2'),(10154,27204,'_dt_footer_hide_on_mobile','0'),(10155,27204,'_dt_header_title','enabled'),(10156,27204,'_dt_header_background','normal'),(10157,27204,'_dt_header_background_below_slideshow','disabled'),(10158,27204,'_dt_header_transparent_bg_color_scheme','light'),(10159,27204,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(10160,27204,'_dt_header_transparent_top_bar_bg_opacity','25'),(10161,27204,'_dt_header_transparent_bg_color','#000000'),(10162,27204,'_dt_header_transparent_bg_opacity','50'),(10163,27204,'_dt_header_disabled_background','normal'),(10164,27204,'_dt_header_disabled_transparent_bg_color_scheme','light'),(10165,27204,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(10166,27204,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(10167,27204,'_dt_header_disabled_transparent_bg_color','#000000'),(10168,27204,'_dt_header_disabled_transparent_bg_opacity','50'),(10169,27204,'_dt_page_overrides_top_margin',''),(10170,27204,'_dt_page_overrides_right_margin',''),(10171,27204,'_dt_page_overrides_bottom_margin',''),(10172,27204,'_dt_page_overrides_left_margin',''),(10173,27204,'_dt_mobile_page_padding_top',''),(10174,27204,'_dt_mobile_page_padding_right',''),(10175,27204,'_dt_mobile_page_padding_bottom',''),(10176,27204,'_dt_mobile_page_padding_left',''),(10177,27204,'_dt_post_options_back_button',''),(10178,27204,'_dt_post_options_hide_thumbnail','0'),(10179,27204,'_dt_post_options_related_mode','same'),(10180,27204,'_dt_post_options_preview','normal'),(10181,27204,'_dt_microsite_primary_menu',''),(10182,27204,'_dt_microsite_split_left_menu',''),(10183,27204,'_dt_microsite_split_right_menu',''),(10184,27204,'_dt_microsite_mobile_menu',''),(10185,27204,'iawp_total_views','150'),(10186,3689,'_edit_last','2'),(10187,3689,'_thumbnail_id','3690'),(10188,3689,'slide_template','default'),(10189,3689,'_wpb_vc_js_status','false'),(10190,3689,'_dt_sidebar_position','right'),(10191,3689,'_dt_sidebar_widgetarea_id','sidebar_1'),(10192,3689,'_dt_sidebar_hide_on_mobile','0'),(10193,3689,'_dt_footer_show','1'),(10194,3689,'_dt_footer_widgetarea_id','sidebar_2'),(10195,3689,'_dt_footer_hide_on_mobile','0'),(10196,3689,'_dt_header_title','enabled'),(10197,3689,'_dt_header_background','normal'),(10198,3689,'_dt_header_background_below_slideshow','disabled'),(10199,3689,'_dt_header_transparent_bg_color','#000000'),(10200,3689,'_dt_header_transparent_bg_opacity','50'),(10201,3689,'_dt_header_transparent_bg_color_scheme','light'),(10202,3689,'_dt_slideshow_mode','porthole'),(10203,3689,'_dt_slideshow_3d_layout','fullscreen-content'),(10204,3689,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(10205,3689,'_dt_slideshow_layout','fullwidth'),(10206,3689,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(10207,3689,'_dt_slideshow_scaling','fill'),(10208,3689,'_dt_slideshow_autoplay','paused'),(10209,3689,'_dt_slideshow_autoslide_interval','5000'),(10210,3689,'_dt_slideshow_hide_captions','0'),(10211,3689,'_dt_slideshow_photo_scroller_layout','fullscreen'),(10212,3689,'_dt_slideshow_photo_scroller_bg_color','#000000'),(10213,3689,'_dt_slideshow_photo_scroller_overlay','1'),(10214,3689,'_dt_slideshow_photo_scroller_top_padding','0'),(10215,3689,'_dt_slideshow_photo_scroller_bottom_padding','0'),(10216,3689,'_dt_slideshow_photo_scroller_side_paddings','0'),(10217,3689,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(10218,3689,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(10219,3689,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(10220,3689,'_dt_slideshow_photo_scroller_autoplay','play'),(10221,3689,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(10222,3689,'_dt_slideshow_photo_scroller_ls_max_width','100'),(10223,3689,'_dt_slideshow_photo_scroller_ls_min_width','0'),(10224,3689,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(10225,3689,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(10226,3689,'_dt_slideshow_photo_scroller_pt_max_width','100'),(10227,3689,'_dt_slideshow_photo_scroller_pt_min_width','0'),(10228,3689,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(10229,3689,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(10230,3689,'_dt_slideshow_revolution_slider','none'),(10231,3689,'_dt_slideshow_layer_slider','none'),(10232,3689,'_dt_slideshow_layer_show_bg_and_paddings','0'),(10233,3689,'_dt_fancy_header_title_aligment','center'),(10234,3689,'_dt_fancy_header_breadcrumbs','enabled'),(10235,3689,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(10236,3689,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(10237,3689,'_dt_fancy_header_title_mode','custom'),(10238,3689,'_dt_fancy_header_title_color_mode','color'),(10239,3689,'_dt_fancy_header_title_color','#ffffff'),(10240,3689,'_dt_fancy_header_subtitle_color_mode','color'),(10241,3689,'_dt_fancy_header_subtitle_color','#ffffff'),(10242,3689,'_dt_fancy_header_bg_color','#222222'),(10243,3689,'_dt_fancy_header_bg_repeat','no-repeat'),(10244,3689,'_dt_fancy_header_bg_position_x','center'),(10245,3689,'_dt_fancy_header_bg_position_y','center'),(10246,3689,'_dt_fancy_header_bg_fullscreen','1'),(10247,3689,'_dt_fancy_header_height','300'),(10248,3689,'_dt_post_options_back_button',''),(10249,3689,'_dt_post_options_hide_thumbnail','0'),(10250,3689,'_dt_post_options_related_mode','same'),(10251,3689,'_dt_post_options_preview','normal'),(10252,3689,'_dt_fancy_header_title_font_size','44'),(10253,3689,'_dt_fancy_header_title_line_height','50'),(10254,3689,'_dt_fancy_header_subtitle_font_size','30'),(10255,3689,'_dt_fancy_header_subtitle_line_height','36'),(10256,3783,'_edit_last','2'),(10257,3783,'_thumbnail_id','3784'),(10258,3783,'slide_template','default'),(10259,3783,'_wpb_vc_js_status','false'),(10260,3783,'_dt_sidebar_position','right'),(10261,3783,'_dt_sidebar_widgetarea_id','sidebar_1'),(10262,3783,'_dt_sidebar_hide_on_mobile','0'),(10263,3783,'_dt_footer_show','1'),(10264,3783,'_dt_footer_widgetarea_id','sidebar_2'),(10265,3783,'_dt_footer_hide_on_mobile','0'),(10266,3783,'_dt_header_title','enabled'),(10267,3783,'_dt_header_background','normal'),(10268,3783,'_dt_header_background_below_slideshow','disabled'),(10269,3783,'_dt_header_transparent_bg_color','#000000'),(10270,3783,'_dt_header_transparent_bg_opacity','50'),(10271,3783,'_dt_header_transparent_bg_color_scheme','light'),(10272,3783,'_dt_slideshow_mode','porthole'),(10273,3783,'_dt_slideshow_3d_layout','fullscreen-content'),(10274,3783,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(10275,3783,'_dt_slideshow_layout','fullwidth'),(10276,3783,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(10277,3783,'_dt_slideshow_scaling','fill'),(10278,3783,'_dt_slideshow_autoplay','paused'),(10279,3783,'_dt_slideshow_autoslide_interval','5000'),(10280,3783,'_dt_slideshow_hide_captions','0'),(10281,3783,'_dt_slideshow_photo_scroller_layout','fullscreen'),(10282,3783,'_dt_slideshow_photo_scroller_bg_color','#000000'),(10283,3783,'_dt_slideshow_photo_scroller_overlay','1'),(10284,3783,'_dt_slideshow_photo_scroller_top_padding','0'),(10285,3783,'_dt_slideshow_photo_scroller_bottom_padding','0'),(10286,3783,'_dt_slideshow_photo_scroller_side_paddings','0'),(10287,3783,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(10288,3783,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(10289,3783,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(10290,3783,'_dt_slideshow_photo_scroller_autoplay','play'),(10291,3783,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(10292,3783,'_dt_slideshow_photo_scroller_ls_max_width','100'),(10293,3783,'_dt_slideshow_photo_scroller_ls_min_width','0'),(10294,3783,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(10295,3783,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(10296,3783,'_dt_slideshow_photo_scroller_pt_max_width','100'),(10297,3783,'_dt_slideshow_photo_scroller_pt_min_width','0'),(10298,3783,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(10299,3783,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(10300,3783,'_dt_slideshow_revolution_slider','none'),(10301,3783,'_dt_slideshow_layer_slider','none'),(10302,3783,'_dt_slideshow_layer_show_bg_and_paddings','0'),(10303,3783,'_dt_fancy_header_title_aligment','center'),(10304,3783,'_dt_fancy_header_breadcrumbs','enabled'),(10305,3783,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(10306,3783,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(10307,3783,'_dt_fancy_header_title_mode','custom'),(10308,3783,'_dt_fancy_header_title_color_mode','color'),(10309,3783,'_dt_fancy_header_title_color','#ffffff'),(10310,3783,'_dt_fancy_header_subtitle_color_mode','color'),(10311,3783,'_dt_fancy_header_subtitle_color','#ffffff'),(10312,3783,'_dt_fancy_header_bg_color','#222222'),(10313,3783,'_dt_fancy_header_bg_repeat','no-repeat'),(10314,3783,'_dt_fancy_header_bg_position_x','center'),(10315,3783,'_dt_fancy_header_bg_position_y','center'),(10316,3783,'_dt_fancy_header_bg_fullscreen','1'),(10317,3783,'_dt_fancy_header_height','300'),(10318,3783,'_dt_post_options_back_button',''),(10319,3783,'_dt_post_options_hide_thumbnail','0'),(10320,3783,'_dt_post_options_related_mode','same'),(10321,3783,'_dt_post_options_preview','normal'),(10322,3783,'_dt_fancy_header_title_font_size','44'),(10323,3783,'_dt_fancy_header_title_line_height','50'),(10324,3783,'_dt_fancy_header_subtitle_font_size','30'),(10325,3783,'_dt_fancy_header_subtitle_line_height','36'),(10326,3783,'_oembed_1c9a1184a61259387c8e86de854c78e0','{{unknown}}'),(10327,3800,'_edit_last','2'),(10328,3800,'_thumbnail_id','3801'),(10329,3800,'slide_template','default'),(10330,3800,'_wpb_vc_js_status','false'),(10331,3800,'_dt_sidebar_position','right'),(10332,3800,'_dt_sidebar_widgetarea_id','sidebar_1'),(10333,3800,'_dt_sidebar_hide_on_mobile','0'),(10334,3800,'_dt_footer_show','1'),(10335,3800,'_dt_footer_widgetarea_id','sidebar_2'),(10336,3800,'_dt_footer_hide_on_mobile','0'),(10337,3800,'_dt_header_title','enabled'),(10338,3800,'_dt_header_background','normal'),(10339,3800,'_dt_header_background_below_slideshow','disabled'),(10340,3800,'_dt_header_transparent_bg_color','#000000'),(10341,3800,'_dt_header_transparent_bg_opacity','50'),(10342,3800,'_dt_header_transparent_bg_color_scheme','light'),(10343,3800,'_dt_slideshow_mode','porthole'),(10344,3800,'_dt_slideshow_3d_layout','fullscreen-content'),(10345,3800,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(10346,3800,'_dt_slideshow_layout','fullwidth'),(10347,3800,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(10348,3800,'_dt_slideshow_scaling','fill'),(10349,3800,'_dt_slideshow_autoplay','paused'),(10350,3800,'_dt_slideshow_autoslide_interval','5000'),(10351,3800,'_dt_slideshow_hide_captions','0'),(10352,3800,'_dt_slideshow_photo_scroller_layout','fullscreen'),(10353,3800,'_dt_slideshow_photo_scroller_bg_color','#000000'),(10354,3800,'_dt_slideshow_photo_scroller_overlay','1'),(10355,3800,'_dt_slideshow_photo_scroller_top_padding','0'),(10356,3800,'_dt_slideshow_photo_scroller_bottom_padding','0'),(10357,3800,'_dt_slideshow_photo_scroller_side_paddings','0'),(10358,3800,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(10359,3800,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(10360,3800,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(10361,3800,'_dt_slideshow_photo_scroller_autoplay','play'),(10362,3800,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(10363,3800,'_dt_slideshow_photo_scroller_ls_max_width','100'),(10364,3800,'_dt_slideshow_photo_scroller_ls_min_width','0'),(10365,3800,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(10366,3800,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(10367,3800,'_dt_slideshow_photo_scroller_pt_max_width','100'),(10368,3800,'_dt_slideshow_photo_scroller_pt_min_width','0'),(10369,3800,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(10370,3800,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(10371,3800,'_dt_slideshow_revolution_slider','none'),(10372,3800,'_dt_slideshow_layer_slider','none'),(10373,3800,'_dt_slideshow_layer_show_bg_and_paddings','0'),(10374,3800,'_dt_fancy_header_title_aligment','center'),(10375,3800,'_dt_fancy_header_breadcrumbs','enabled'),(10376,3800,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(10377,3800,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(10378,3800,'_dt_fancy_header_title_mode','custom'),(10379,3800,'_dt_fancy_header_title_color_mode','color'),(10380,3800,'_dt_fancy_header_title_color','#ffffff'),(10381,3800,'_dt_fancy_header_subtitle_color_mode','color'),(10382,3800,'_dt_fancy_header_subtitle_color','#ffffff'),(10383,3800,'_dt_fancy_header_bg_color','#222222'),(10384,3800,'_dt_fancy_header_bg_repeat','no-repeat'),(10385,3800,'_dt_fancy_header_bg_position_x','center'),(10386,3800,'_dt_fancy_header_bg_position_y','center'),(10387,3800,'_dt_fancy_header_bg_fullscreen','1'),(10388,3800,'_dt_fancy_header_height','300'),(10389,3800,'_dt_post_options_back_button',''),(10390,3800,'_dt_post_options_hide_thumbnail','0'),(10391,3800,'_dt_post_options_related_mode','same'),(10392,3800,'_dt_post_options_preview','normal'),(10393,3800,'_dt_fancy_header_title_font_size','44'),(10394,3800,'_dt_fancy_header_title_line_height','50'),(10395,3800,'_dt_fancy_header_subtitle_font_size','30'),(10396,3800,'_dt_fancy_header_subtitle_line_height','36'),(10397,3817,'_edit_last','2'),(10398,3817,'slide_template','default'),(10399,3817,'_wpb_vc_js_status','false'),(10400,3817,'_dt_sidebar_position','right'),(10401,3817,'_dt_sidebar_widgetarea_id','sidebar_1'),(10402,3817,'_dt_sidebar_hide_on_mobile','0'),(10403,3817,'_dt_footer_show','1'),(10404,3817,'_dt_footer_widgetarea_id','sidebar_2'),(10405,3817,'_dt_footer_hide_on_mobile','0'),(10406,3817,'_dt_header_title','enabled'),(10407,3817,'_dt_header_background','normal'),(10408,3817,'_dt_header_background_below_slideshow','disabled'),(10409,3817,'_dt_header_transparent_bg_color','#000000'),(10410,3817,'_dt_header_transparent_bg_opacity','50'),(10411,3817,'_dt_header_transparent_bg_color_scheme','light'),(10412,3817,'_dt_slideshow_mode','porthole'),(10413,3817,'_dt_slideshow_3d_layout','fullscreen-content'),(10414,3817,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(10415,3817,'_dt_slideshow_layout','fullwidth'),(10416,3817,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(10417,3817,'_dt_slideshow_scaling','fill'),(10418,3817,'_dt_slideshow_autoplay','paused'),(10419,3817,'_dt_slideshow_autoslide_interval','5000'),(10420,3817,'_dt_slideshow_hide_captions','0'),(10421,3817,'_dt_slideshow_photo_scroller_layout','fullscreen'),(10422,3817,'_dt_slideshow_photo_scroller_bg_color','#000000'),(10423,3817,'_dt_slideshow_photo_scroller_overlay','1'),(10424,3817,'_dt_slideshow_photo_scroller_top_padding','0'),(10425,3817,'_dt_slideshow_photo_scroller_bottom_padding','0'),(10426,3817,'_dt_slideshow_photo_scroller_side_paddings','0'),(10427,3817,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(10428,3817,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(10429,3817,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(10430,3817,'_dt_slideshow_photo_scroller_autoplay','play'),(10431,3817,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(10432,3817,'_dt_slideshow_photo_scroller_ls_max_width','100'),(10433,3817,'_dt_slideshow_photo_scroller_ls_min_width','0'),(10434,3817,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(10435,3817,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(10436,3817,'_dt_slideshow_photo_scroller_pt_max_width','100'),(10437,3817,'_dt_slideshow_photo_scroller_pt_min_width','0'),(10438,3817,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(10439,3817,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(10440,3817,'_dt_slideshow_revolution_slider','none'),(10441,3817,'_dt_slideshow_layer_slider','none'),(10442,3817,'_dt_slideshow_layer_show_bg_and_paddings','0'),(10443,3817,'_dt_fancy_header_title_aligment','center'),(10444,3817,'_dt_fancy_header_breadcrumbs','enabled'),(10445,3817,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(10446,3817,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(10447,3817,'_dt_fancy_header_title_mode','custom'),(10448,3817,'_dt_fancy_header_title_color_mode','color'),(10449,3817,'_dt_fancy_header_title_color','#ffffff'),(10450,3817,'_dt_fancy_header_subtitle_color_mode','color'),(10451,3817,'_dt_fancy_header_subtitle_color','#ffffff'),(10452,3817,'_dt_fancy_header_bg_color','#222222'),(10453,3817,'_dt_fancy_header_bg_repeat','no-repeat'),(10454,3817,'_dt_fancy_header_bg_position_x','center'),(10455,3817,'_dt_fancy_header_bg_position_y','center'),(10456,3817,'_dt_fancy_header_bg_fullscreen','1'),(10457,3817,'_dt_fancy_header_height','300'),(10458,3817,'_dt_post_options_back_button',''),(10459,3817,'_dt_post_options_hide_thumbnail','0'),(10460,3817,'_dt_post_options_related_mode','same'),(10461,3817,'_dt_post_options_preview','normal'),(10462,3817,'_thumbnail_id','3819'),(10463,3817,'_dt_fancy_header_title_font_size','44'),(10464,3817,'_dt_fancy_header_title_line_height','50'),(10465,3817,'_dt_fancy_header_subtitle_font_size','30'),(10466,3817,'_dt_fancy_header_subtitle_line_height','36'),(10467,3827,'_edit_last','2'),(10468,3827,'slide_template','default'),(10469,3827,'_wpb_vc_js_status','false'),(10470,3827,'_dt_sidebar_position','right'),(10471,3827,'_dt_sidebar_widgetarea_id','sidebar_1'),(10472,3827,'_dt_sidebar_hide_on_mobile','0'),(10473,3827,'_dt_footer_show','1'),(10474,3827,'_dt_footer_widgetarea_id','sidebar_2'),(10475,3827,'_dt_footer_hide_on_mobile','0'),(10476,3827,'_dt_header_title','enabled'),(10477,3827,'_dt_header_background','normal'),(10478,3827,'_dt_header_background_below_slideshow','disabled'),(10479,3827,'_dt_header_transparent_bg_color','#000000'),(10480,3827,'_dt_header_transparent_bg_opacity','50'),(10481,3827,'_dt_header_transparent_bg_color_scheme','light'),(10482,3827,'_dt_slideshow_mode','porthole'),(10483,3827,'_dt_slideshow_3d_layout','fullscreen-content'),(10484,3827,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(10485,3827,'_dt_slideshow_layout','fullwidth'),(10486,3827,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(10487,3827,'_dt_slideshow_scaling','fill'),(10488,3827,'_dt_slideshow_autoplay','paused'),(10489,3827,'_dt_slideshow_autoslide_interval','5000'),(10490,3827,'_dt_slideshow_hide_captions','0'),(10491,3827,'_dt_slideshow_photo_scroller_layout','fullscreen'),(10492,3827,'_dt_slideshow_photo_scroller_bg_color','#000000'),(10493,3827,'_dt_slideshow_photo_scroller_overlay','1'),(10494,3827,'_dt_slideshow_photo_scroller_top_padding','0'),(10495,3827,'_dt_slideshow_photo_scroller_bottom_padding','0'),(10496,3827,'_dt_slideshow_photo_scroller_side_paddings','0'),(10497,3827,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(10498,3827,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(10499,3827,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(10500,3827,'_dt_slideshow_photo_scroller_autoplay','play'),(10501,3827,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(10502,3827,'_dt_slideshow_photo_scroller_ls_max_width','100'),(10503,3827,'_dt_slideshow_photo_scroller_ls_min_width','0'),(10504,3827,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(10505,3827,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(10506,3827,'_dt_slideshow_photo_scroller_pt_max_width','100'),(10507,3827,'_dt_slideshow_photo_scroller_pt_min_width','0'),(10508,3827,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(10509,3827,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(10510,3827,'_dt_slideshow_revolution_slider','none'),(10511,3827,'_dt_slideshow_layer_slider','none'),(10512,3827,'_dt_slideshow_layer_show_bg_and_paddings','0'),(10513,3827,'_dt_fancy_header_title_aligment','center'),(10514,3827,'_dt_fancy_header_breadcrumbs','enabled'),(10515,3827,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(10516,3827,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(10517,3827,'_dt_fancy_header_title_mode','custom'),(10518,3827,'_dt_fancy_header_title_color_mode','color'),(10519,3827,'_dt_fancy_header_title_color','#ffffff'),(10520,3827,'_dt_fancy_header_subtitle_color_mode','color'),(10521,3827,'_dt_fancy_header_subtitle_color','#ffffff'),(10522,3827,'_dt_fancy_header_bg_color','#222222'),(10523,3827,'_dt_fancy_header_bg_repeat','no-repeat'),(10524,3827,'_dt_fancy_header_bg_position_x','center'),(10525,3827,'_dt_fancy_header_bg_position_y','center'),(10526,3827,'_dt_fancy_header_bg_fullscreen','1'),(10527,3827,'_dt_fancy_header_height','300'),(10528,3827,'_dt_post_options_back_button',''),(10529,3827,'_dt_post_options_hide_thumbnail','0'),(10530,3827,'_dt_post_options_related_mode','same'),(10531,3827,'_dt_post_options_preview','normal'),(10532,3827,'_thumbnail_id','3829'),(10533,3827,'_wp_old_slug','3827-2'),(10534,3827,'_dt_fancy_header_title_font_size','44'),(10535,3827,'_dt_fancy_header_title_line_height','50'),(10536,3827,'_dt_fancy_header_subtitle_font_size','30'),(10537,3827,'_dt_fancy_header_subtitle_line_height','36'),(10538,26101,'_edit_last','2'),(10539,26101,'_thumbnail_id','26106'),(10540,26101,'_wp_page_template','default'),(10541,26101,'_wpb_vc_js_status','false'),(10542,26101,'_wc_memberships_force_public','no'),(10543,26101,'_wc_memberships_use_custom_post_content_restricted_message','no'),(10544,26101,'_dt_sidebar_position','right'),(10545,26101,'_dt_sidebar_widgetarea_id','sidebar_1'),(10546,26101,'_dt_sidebar_hide_on_mobile','0'),(10547,26101,'_dt_footer_show','1'),(10548,26101,'_dt_footer_widgetarea_id','sidebar_2'),(10549,26101,'_dt_footer_hide_on_mobile','0'),(10550,26101,'_dt_header_title','enabled'),(10551,26101,'_dt_header_background','normal'),(10552,26101,'_dt_header_background_below_slideshow','disabled'),(10553,26101,'_dt_header_transparent_bg_color_scheme','light'),(10554,26101,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(10555,26101,'_dt_header_transparent_top_bar_bg_opacity','25'),(10556,26101,'_dt_header_transparent_bg_color','#000000'),(10557,26101,'_dt_header_transparent_bg_opacity','50'),(10558,26101,'_dt_header_disabled_background','normal'),(10559,26101,'_dt_header_disabled_transparent_bg_color_scheme','light'),(10560,26101,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(10561,26101,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(10562,26101,'_dt_header_disabled_transparent_bg_color','#000000'),(10563,26101,'_dt_header_disabled_transparent_bg_opacity','50'),(10564,26101,'_dt_page_overrides_top_margin',''),(10565,26101,'_dt_page_overrides_right_margin',''),(10566,26101,'_dt_page_overrides_bottom_margin',''),(10567,26101,'_dt_page_overrides_left_margin',''),(10568,26101,'_dt_mobile_page_padding_top',''),(10569,26101,'_dt_mobile_page_padding_right',''),(10570,26101,'_dt_mobile_page_padding_bottom',''),(10571,26101,'_dt_mobile_page_padding_left',''),(10572,26101,'_dt_post_options_back_button',''),(10573,26101,'_dt_post_options_hide_thumbnail','0'),(10574,26101,'_dt_post_options_related_mode','same'),(10575,26101,'_dt_post_options_preview','normal'),(10576,26101,'_dt_microsite_primary_menu',''),(10577,26101,'_dt_microsite_split_left_menu',''),(10578,26101,'_dt_microsite_split_right_menu',''),(10579,26101,'_dt_microsite_mobile_menu',''),(10580,26101,'iawp_total_views','58'),(10581,3902,'_edit_last','2'),(10582,3902,'_thumbnail_id','3903'),(10583,3902,'slide_template','default'),(10584,3902,'_wpb_vc_js_status','false'),(10585,3902,'_dt_sidebar_position','right'),(10586,3902,'_dt_sidebar_widgetarea_id','sidebar_1'),(10587,3902,'_dt_sidebar_hide_on_mobile','0'),(10588,3902,'_dt_footer_show','1'),(10589,3902,'_dt_footer_widgetarea_id','sidebar_2'),(10590,3902,'_dt_footer_hide_on_mobile','0'),(10591,3902,'_dt_header_title','enabled'),(10592,3902,'_dt_header_background','normal'),(10593,3902,'_dt_header_background_below_slideshow','disabled'),(10594,3902,'_dt_header_transparent_bg_color','#000000'),(10595,3902,'_dt_header_transparent_bg_opacity','50'),(10596,3902,'_dt_header_transparent_bg_color_scheme','light'),(10597,3902,'_dt_slideshow_mode','porthole'),(10598,3902,'_dt_slideshow_3d_layout','fullscreen-content'),(10599,3902,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(10600,3902,'_dt_slideshow_layout','fullwidth'),(10601,3902,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(10602,3902,'_dt_slideshow_scaling','fill'),(10603,3902,'_dt_slideshow_autoplay','paused'),(10604,3902,'_dt_slideshow_autoslide_interval','5000'),(10605,3902,'_dt_slideshow_hide_captions','0'),(10606,3902,'_dt_slideshow_photo_scroller_layout','fullscreen'),(10607,3902,'_dt_slideshow_photo_scroller_bg_color','#000000'),(10608,3902,'_dt_slideshow_photo_scroller_overlay','1'),(10609,3902,'_dt_slideshow_photo_scroller_top_padding','0'),(10610,3902,'_dt_slideshow_photo_scroller_bottom_padding','0'),(10611,3902,'_dt_slideshow_photo_scroller_side_paddings','0'),(10612,3902,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(10613,3902,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(10614,3902,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(10615,3902,'_dt_slideshow_photo_scroller_autoplay','play'),(10616,3902,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(10617,3902,'_dt_slideshow_photo_scroller_ls_max_width','100'),(10618,3902,'_dt_slideshow_photo_scroller_ls_min_width','0'),(10619,3902,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(10620,3902,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(10621,3902,'_dt_slideshow_photo_scroller_pt_max_width','100'),(10622,3902,'_dt_slideshow_photo_scroller_pt_min_width','0'),(10623,3902,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(10624,3902,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(10625,3902,'_dt_slideshow_revolution_slider','none'),(10626,3902,'_dt_slideshow_layer_slider','none'),(10627,3902,'_dt_slideshow_layer_show_bg_and_paddings','0'),(10628,3902,'_dt_fancy_header_title_aligment','center'),(10629,3902,'_dt_fancy_header_breadcrumbs','enabled'),(10630,3902,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(10631,3902,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(10632,3902,'_dt_fancy_header_title_mode','custom'),(10633,3902,'_dt_fancy_header_title_color_mode','color'),(10634,3902,'_dt_fancy_header_title_color','#ffffff'),(10635,3902,'_dt_fancy_header_subtitle_color_mode','color'),(10636,3902,'_dt_fancy_header_subtitle_color','#ffffff'),(10637,3902,'_dt_fancy_header_bg_color','#222222'),(10638,3902,'_dt_fancy_header_bg_repeat','no-repeat'),(10639,3902,'_dt_fancy_header_bg_position_x','center'),(10640,3902,'_dt_fancy_header_bg_position_y','center'),(10641,3902,'_dt_fancy_header_bg_fullscreen','1'),(10642,3902,'_dt_fancy_header_height','300'),(10643,3902,'_dt_post_options_back_button',''),(10644,3902,'_dt_post_options_hide_thumbnail','0'),(10645,3902,'_dt_post_options_related_mode','same'),(10646,3902,'_dt_post_options_preview','normal'),(10647,3902,'_dt_fancy_header_title_font_size','44'),(10648,3902,'_dt_fancy_header_title_line_height','50'),(10649,3902,'_dt_fancy_header_subtitle_font_size','30'),(10650,3902,'_dt_fancy_header_subtitle_line_height','36'),(10651,3913,'_edit_last','2'),(10652,3913,'_thumbnail_id','3915'),(10653,3913,'slide_template','default'),(10654,3913,'_wpb_vc_js_status','false'),(10655,3913,'_dt_sidebar_position','right'),(10656,3913,'_dt_sidebar_widgetarea_id','sidebar_1'),(10657,3913,'_dt_sidebar_hide_on_mobile','0'),(10658,3913,'_dt_footer_show','1'),(10659,3913,'_dt_footer_widgetarea_id','sidebar_2'),(10660,3913,'_dt_footer_hide_on_mobile','0'),(10661,3913,'_dt_header_title','enabled'),(10662,3913,'_dt_header_background','normal'),(10663,3913,'_dt_header_background_below_slideshow','disabled'),(10664,3913,'_dt_header_transparent_bg_color','#000000'),(10665,3913,'_dt_header_transparent_bg_opacity','50'),(10666,3913,'_dt_header_transparent_bg_color_scheme','light'),(10667,3913,'_dt_slideshow_mode','porthole'),(10668,3913,'_dt_slideshow_3d_layout','fullscreen-content'),(10669,3913,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(10670,3913,'_dt_slideshow_layout','fullwidth'),(10671,3913,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(10672,3913,'_dt_slideshow_scaling','fill'),(10673,3913,'_dt_slideshow_autoplay','paused'),(10674,3913,'_dt_slideshow_autoslide_interval','5000'),(10675,3913,'_dt_slideshow_hide_captions','0'),(10676,3913,'_dt_slideshow_photo_scroller_layout','fullscreen'),(10677,3913,'_dt_slideshow_photo_scroller_bg_color','#000000'),(10678,3913,'_dt_slideshow_photo_scroller_overlay','1'),(10679,3913,'_dt_slideshow_photo_scroller_top_padding','0'),(10680,3913,'_dt_slideshow_photo_scroller_bottom_padding','0'),(10681,3913,'_dt_slideshow_photo_scroller_side_paddings','0'),(10682,3913,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(10683,3913,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(10684,3913,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(10685,3913,'_dt_slideshow_photo_scroller_autoplay','play'),(10686,3913,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(10687,3913,'_dt_slideshow_photo_scroller_ls_max_width','100'),(10688,3913,'_dt_slideshow_photo_scroller_ls_min_width','0'),(10689,3913,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(10690,3913,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(10691,3913,'_dt_slideshow_photo_scroller_pt_max_width','100'),(10692,3913,'_dt_slideshow_photo_scroller_pt_min_width','0'),(10693,3913,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(10694,3913,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(10695,3913,'_dt_slideshow_revolution_slider','none'),(10696,3913,'_dt_slideshow_layer_slider','none'),(10697,3913,'_dt_slideshow_layer_show_bg_and_paddings','0'),(10698,3913,'_dt_fancy_header_title_aligment','center'),(10699,3913,'_dt_fancy_header_breadcrumbs','enabled'),(10700,3913,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(10701,3913,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(10702,3913,'_dt_fancy_header_title_mode','custom'),(10703,3913,'_dt_fancy_header_title_color_mode','color'),(10704,3913,'_dt_fancy_header_title_color','#ffffff'),(10705,3913,'_dt_fancy_header_subtitle_color_mode','color'),(10706,3913,'_dt_fancy_header_subtitle_color','#ffffff'),(10707,3913,'_dt_fancy_header_bg_color','#222222'),(10708,3913,'_dt_fancy_header_bg_repeat','no-repeat'),(10709,3913,'_dt_fancy_header_bg_position_x','center'),(10710,3913,'_dt_fancy_header_bg_position_y','center'),(10711,3913,'_dt_fancy_header_bg_fullscreen','1'),(10712,3913,'_dt_fancy_header_height','300'),(10713,3913,'_dt_post_options_back_button',''),(10714,3913,'_dt_post_options_hide_thumbnail','0'),(10715,3913,'_dt_post_options_related_mode','same'),(10716,3913,'_dt_post_options_preview','normal'),(10717,3913,'_dt_fancy_header_title_font_size','44'),(10718,3913,'_dt_fancy_header_title_line_height','50'),(10719,3913,'_dt_fancy_header_subtitle_font_size','30'),(10720,3913,'_dt_fancy_header_subtitle_line_height','36'),(10721,3920,'_edit_last','2'),(10722,3920,'_thumbnail_id','3921'),(10723,3920,'slide_template','default'),(10724,3920,'_wpb_vc_js_status','false'),(10725,3920,'_dt_sidebar_position','right'),(10726,3920,'_dt_sidebar_widgetarea_id','sidebar_1'),(10727,3920,'_dt_sidebar_hide_on_mobile','0'),(10728,3920,'_dt_footer_show','1'),(10729,3920,'_dt_footer_widgetarea_id','sidebar_2'),(10730,3920,'_dt_footer_hide_on_mobile','0'),(10731,3920,'_dt_header_title','enabled'),(10732,3920,'_dt_header_background','normal'),(10733,3920,'_dt_header_background_below_slideshow','disabled'),(10734,3920,'_dt_header_transparent_bg_color','#000000'),(10735,3920,'_dt_header_transparent_bg_opacity','50'),(10736,3920,'_dt_header_transparent_bg_color_scheme','light'),(10737,3920,'_dt_slideshow_mode','porthole'),(10738,3920,'_dt_slideshow_3d_layout','fullscreen-content'),(10739,3920,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(10740,3920,'_dt_slideshow_layout','fullwidth'),(10741,3920,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(10742,3920,'_dt_slideshow_scaling','fill'),(10743,3920,'_dt_slideshow_autoplay','paused'),(10744,3920,'_dt_slideshow_autoslide_interval','5000'),(10745,3920,'_dt_slideshow_hide_captions','0'),(10746,3920,'_dt_slideshow_photo_scroller_layout','fullscreen'),(10747,3920,'_dt_slideshow_photo_scroller_bg_color','#000000'),(10748,3920,'_dt_slideshow_photo_scroller_overlay','1'),(10749,3920,'_dt_slideshow_photo_scroller_top_padding','0'),(10750,3920,'_dt_slideshow_photo_scroller_bottom_padding','0'),(10751,3920,'_dt_slideshow_photo_scroller_side_paddings','0'),(10752,3920,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(10753,3920,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(10754,3920,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(10755,3920,'_dt_slideshow_photo_scroller_autoplay','play'),(10756,3920,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(10757,3920,'_dt_slideshow_photo_scroller_ls_max_width','100'),(10758,3920,'_dt_slideshow_photo_scroller_ls_min_width','0'),(10759,3920,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(10760,3920,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(10761,3920,'_dt_slideshow_photo_scroller_pt_max_width','100'),(10762,3920,'_dt_slideshow_photo_scroller_pt_min_width','0'),(10763,3920,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(10764,3920,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(10765,3920,'_dt_slideshow_revolution_slider','none'),(10766,3920,'_dt_slideshow_layer_slider','none'),(10767,3920,'_dt_slideshow_layer_show_bg_and_paddings','0'),(10768,3920,'_dt_fancy_header_title_aligment','center'),(10769,3920,'_dt_fancy_header_breadcrumbs','enabled'),(10770,3920,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(10771,3920,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(10772,3920,'_dt_fancy_header_title_mode','custom'),(10773,3920,'_dt_fancy_header_title_color_mode','color'),(10774,3920,'_dt_fancy_header_title_color','#ffffff'),(10775,3920,'_dt_fancy_header_subtitle_color_mode','color'),(10776,3920,'_dt_fancy_header_subtitle_color','#ffffff'),(10777,3920,'_dt_fancy_header_bg_color','#222222'),(10778,3920,'_dt_fancy_header_bg_repeat','no-repeat'),(10779,3920,'_dt_fancy_header_bg_position_x','center'),(10780,3920,'_dt_fancy_header_bg_position_y','center'),(10781,3920,'_dt_fancy_header_bg_fullscreen','1'),(10782,3920,'_dt_fancy_header_height','300'),(10783,3920,'_dt_post_options_back_button',''),(10784,3920,'_dt_post_options_hide_thumbnail','0'),(10785,3920,'_dt_post_options_related_mode','same'),(10786,3920,'_dt_post_options_preview','normal'),(10787,3920,'_dt_fancy_header_title_font_size','44'),(10788,3920,'_dt_fancy_header_title_line_height','50'),(10789,3920,'_dt_fancy_header_subtitle_font_size','30'),(10790,3920,'_dt_fancy_header_subtitle_line_height','36'),(10791,3920,'_oembed_c3598477d2c2149f2e2d0754ea3a7f8b','{{unknown}}'),(10792,3920,'_oembed_792c206bacda7cbe7977e41b52e64c9b','{{unknown}}'),(10793,3920,'_oembed_112d7f2861cc388293b610ed5c784707','{{unknown}}'),(10794,3920,'_oembed_b37557921a770ba997cec60ff5c71b7c','{{unknown}}'),(10795,3920,'_oembed_517152772baef64e8388e7d96cfe6538','{{unknown}}'),(10796,3920,'_oembed_4f25291ea36e8ece29373b44014994a7','{{unknown}}'),(10797,3920,'_oembed_eeb3d477669b6a131aeff2ab18bd8e1f','{{unknown}}'),(10798,3920,'_oembed_2079c51f3c0391bb4ff5a5e64e9cbed7','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/9XEA3k_QIKo?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(10799,3920,'_oembed_time_2079c51f3c0391bb4ff5a5e64e9cbed7','1516281952'),(10800,3947,'_edit_last','2'),(10801,3947,'_thumbnail_id','3948'),(10802,3947,'slide_template','default'),(10803,3947,'_wpb_vc_js_status','false'),(10804,3947,'_dt_sidebar_position','right'),(10805,3947,'_dt_sidebar_widgetarea_id','sidebar_1'),(10806,3947,'_dt_sidebar_hide_on_mobile','0'),(10807,3947,'_dt_footer_show','1'),(10808,3947,'_dt_footer_widgetarea_id','sidebar_2'),(10809,3947,'_dt_footer_hide_on_mobile','0'),(10810,3947,'_dt_header_title','enabled'),(10811,3947,'_dt_header_background','normal'),(10812,3947,'_dt_header_background_below_slideshow','disabled'),(10813,3947,'_dt_header_transparent_bg_color','#000000'),(10814,3947,'_dt_header_transparent_bg_opacity','50'),(10815,3947,'_dt_header_transparent_bg_color_scheme','light'),(10816,3947,'_dt_slideshow_mode','porthole'),(10817,3947,'_dt_slideshow_3d_layout','fullscreen-content'),(10818,3947,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(10819,3947,'_dt_slideshow_layout','fullwidth'),(10820,3947,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(10821,3947,'_dt_slideshow_scaling','fill'),(10822,3947,'_dt_slideshow_autoplay','paused'),(10823,3947,'_dt_slideshow_autoslide_interval','5000'),(10824,3947,'_dt_slideshow_hide_captions','0'),(10825,3947,'_dt_slideshow_photo_scroller_layout','fullscreen'),(10826,3947,'_dt_slideshow_photo_scroller_bg_color','#000000'),(10827,3947,'_dt_slideshow_photo_scroller_overlay','1'),(10828,3947,'_dt_slideshow_photo_scroller_top_padding','0'),(10829,3947,'_dt_slideshow_photo_scroller_bottom_padding','0'),(10830,3947,'_dt_slideshow_photo_scroller_side_paddings','0'),(10831,3947,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(10832,3947,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(10833,3947,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(10834,3947,'_dt_slideshow_photo_scroller_autoplay','play'),(10835,3947,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(10836,3947,'_dt_slideshow_photo_scroller_ls_max_width','100'),(10837,3947,'_dt_slideshow_photo_scroller_ls_min_width','0'),(10838,3947,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(10839,3947,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(10840,3947,'_dt_slideshow_photo_scroller_pt_max_width','100'),(10841,3947,'_dt_slideshow_photo_scroller_pt_min_width','0'),(10842,3947,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(10843,3947,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(10844,3947,'_dt_slideshow_revolution_slider','none'),(10845,3947,'_dt_slideshow_layer_slider','none'),(10846,3947,'_dt_slideshow_layer_show_bg_and_paddings','0'),(10847,3947,'_dt_fancy_header_title_aligment','center'),(10848,3947,'_dt_fancy_header_breadcrumbs','enabled'),(10849,3947,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(10850,3947,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(10851,3947,'_dt_fancy_header_title_mode','custom'),(10852,3947,'_dt_fancy_header_title_color_mode','color'),(10853,3947,'_dt_fancy_header_title_color','#ffffff'),(10854,3947,'_dt_fancy_header_subtitle_color_mode','color'),(10855,3947,'_dt_fancy_header_subtitle_color','#ffffff'),(10856,3947,'_dt_fancy_header_bg_color','#222222'),(10857,3947,'_dt_fancy_header_bg_repeat','no-repeat'),(10858,3947,'_dt_fancy_header_bg_position_x','center'),(10859,3947,'_dt_fancy_header_bg_position_y','center'),(10860,3947,'_dt_fancy_header_bg_fullscreen','1'),(10861,3947,'_dt_fancy_header_height','300'),(10862,3947,'_dt_post_options_back_button',''),(10863,3947,'_dt_post_options_hide_thumbnail','0'),(10864,3947,'_dt_post_options_related_mode','same'),(10865,3947,'_dt_post_options_preview','normal'),(10866,3947,'_dt_fancy_header_title_font_size','44'),(10867,3947,'_dt_fancy_header_title_line_height','50'),(10868,3947,'_dt_fancy_header_subtitle_font_size','30'),(10869,3947,'_dt_fancy_header_subtitle_line_height','36'),(10870,3953,'_edit_last','2'),(10871,3953,'_thumbnail_id','3954'),(10872,3953,'slide_template','default'),(10873,3953,'_wpb_vc_js_status','false'),(10874,3953,'_dt_sidebar_position','right'),(10875,3953,'_dt_sidebar_widgetarea_id','sidebar_1'),(10876,3953,'_dt_sidebar_hide_on_mobile','0'),(10877,3953,'_dt_footer_show','1'),(10878,3953,'_dt_footer_widgetarea_id','sidebar_2'),(10879,3953,'_dt_footer_hide_on_mobile','0'),(10880,3953,'_dt_header_title','enabled'),(10881,3953,'_dt_header_background','normal'),(10882,3953,'_dt_header_background_below_slideshow','disabled'),(10883,3953,'_dt_header_transparent_bg_color','#000000'),(10884,3953,'_dt_header_transparent_bg_opacity','50'),(10885,3953,'_dt_header_transparent_bg_color_scheme','light'),(10886,3953,'_dt_slideshow_mode','porthole'),(10887,3953,'_dt_slideshow_3d_layout','fullscreen-content'),(10888,3953,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(10889,3953,'_dt_slideshow_layout','fullwidth'),(10890,3953,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(10891,3953,'_dt_slideshow_scaling','fill'),(10892,3953,'_dt_slideshow_autoplay','paused'),(10893,3953,'_dt_slideshow_autoslide_interval','5000'),(10894,3953,'_dt_slideshow_hide_captions','0'),(10895,3953,'_dt_slideshow_photo_scroller_layout','fullscreen'),(10896,3953,'_dt_slideshow_photo_scroller_bg_color','#000000'),(10897,3953,'_dt_slideshow_photo_scroller_overlay','1'),(10898,3953,'_dt_slideshow_photo_scroller_top_padding','0'),(10899,3953,'_dt_slideshow_photo_scroller_bottom_padding','0'),(10900,3953,'_dt_slideshow_photo_scroller_side_paddings','0'),(10901,3953,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(10902,3953,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(10903,3953,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(10904,3953,'_dt_slideshow_photo_scroller_autoplay','play'),(10905,3953,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(10906,3953,'_dt_slideshow_photo_scroller_ls_max_width','100'),(10907,3953,'_dt_slideshow_photo_scroller_ls_min_width','0'),(10908,3953,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(10909,3953,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(10910,3953,'_dt_slideshow_photo_scroller_pt_max_width','100'),(10911,3953,'_dt_slideshow_photo_scroller_pt_min_width','0'),(10912,3953,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(10913,3953,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(10914,3953,'_dt_slideshow_revolution_slider','none'),(10915,3953,'_dt_slideshow_layer_slider','none'),(10916,3953,'_dt_slideshow_layer_show_bg_and_paddings','0'),(10917,3953,'_dt_fancy_header_title_aligment','center'),(10918,3953,'_dt_fancy_header_breadcrumbs','enabled'),(10919,3953,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(10920,3953,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(10921,3953,'_dt_fancy_header_title_mode','custom'),(10922,3953,'_dt_fancy_header_title_color_mode','color'),(10923,3953,'_dt_fancy_header_title_color','#ffffff'),(10924,3953,'_dt_fancy_header_subtitle_color_mode','color'),(10925,3953,'_dt_fancy_header_subtitle_color','#ffffff'),(10926,3953,'_dt_fancy_header_bg_color','#222222'),(10927,3953,'_dt_fancy_header_bg_repeat','no-repeat'),(10928,3953,'_dt_fancy_header_bg_position_x','center'),(10929,3953,'_dt_fancy_header_bg_position_y','center'),(10930,3953,'_dt_fancy_header_bg_fullscreen','1'),(10931,3953,'_dt_fancy_header_height','300'),(10932,3953,'_dt_post_options_back_button',''),(10933,3953,'_dt_post_options_hide_thumbnail','0'),(10934,3953,'_dt_post_options_related_mode','same'),(10935,3953,'_dt_post_options_preview','normal'),(10936,3953,'_dt_fancy_header_title_font_size','44'),(10937,3953,'_dt_fancy_header_title_line_height','50'),(10938,3953,'_dt_fancy_header_subtitle_font_size','30'),(10939,3953,'_dt_fancy_header_subtitle_line_height','36'),(10940,3968,'_edit_last','2'),(10941,3968,'_thumbnail_id','3969'),(10942,3968,'slide_template','default'),(10943,3968,'_wpb_vc_js_status','false'),(10944,3968,'_dt_sidebar_position','right'),(10945,3968,'_dt_sidebar_widgetarea_id','sidebar_1'),(10946,3968,'_dt_sidebar_hide_on_mobile','0'),(10947,3968,'_dt_footer_show','1'),(10948,3968,'_dt_footer_widgetarea_id','sidebar_2'),(10949,3968,'_dt_footer_hide_on_mobile','0'),(10950,3968,'_dt_header_title','enabled'),(10951,3968,'_dt_header_background','normal'),(10952,3968,'_dt_header_background_below_slideshow','disabled'),(10953,3968,'_dt_header_transparent_bg_color','#000000'),(10954,3968,'_dt_header_transparent_bg_opacity','50'),(10955,3968,'_dt_header_transparent_bg_color_scheme','light'),(10956,3968,'_dt_slideshow_mode','porthole'),(10957,3968,'_dt_slideshow_3d_layout','fullscreen-content'),(10958,3968,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(10959,3968,'_dt_slideshow_layout','fullwidth'),(10960,3968,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(10961,3968,'_dt_slideshow_scaling','fill'),(10962,3968,'_dt_slideshow_autoplay','paused'),(10963,3968,'_dt_slideshow_autoslide_interval','5000'),(10964,3968,'_dt_slideshow_hide_captions','0'),(10965,3968,'_dt_slideshow_photo_scroller_layout','fullscreen'),(10966,3968,'_dt_slideshow_photo_scroller_bg_color','#000000'),(10967,3968,'_dt_slideshow_photo_scroller_overlay','1'),(10968,3968,'_dt_slideshow_photo_scroller_top_padding','0'),(10969,3968,'_dt_slideshow_photo_scroller_bottom_padding','0'),(10970,3968,'_dt_slideshow_photo_scroller_side_paddings','0'),(10971,3968,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(10972,3968,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(10973,3968,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(10974,3968,'_dt_slideshow_photo_scroller_autoplay','play'),(10975,3968,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(10976,3968,'_dt_slideshow_photo_scroller_ls_max_width','100'),(10977,3968,'_dt_slideshow_photo_scroller_ls_min_width','0'),(10978,3968,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(10979,3968,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(10980,3968,'_dt_slideshow_photo_scroller_pt_max_width','100'),(10981,3968,'_dt_slideshow_photo_scroller_pt_min_width','0'),(10982,3968,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(10983,3968,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(10984,3968,'_dt_slideshow_revolution_slider','none'),(10985,3968,'_dt_slideshow_layer_slider','none'),(10986,3968,'_dt_slideshow_layer_show_bg_and_paddings','0'),(10987,3968,'_dt_fancy_header_title_aligment','center'),(10988,3968,'_dt_fancy_header_breadcrumbs','enabled'),(10989,3968,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(10990,3968,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(10991,3968,'_dt_fancy_header_title_mode','custom'),(10992,3968,'_dt_fancy_header_title_color_mode','color'),(10993,3968,'_dt_fancy_header_title_color','#ffffff'),(10994,3968,'_dt_fancy_header_subtitle_color_mode','color'),(10995,3968,'_dt_fancy_header_subtitle_color','#ffffff'),(10996,3968,'_dt_fancy_header_bg_color','#222222'),(10997,3968,'_dt_fancy_header_bg_repeat','no-repeat'),(10998,3968,'_dt_fancy_header_bg_position_x','center'),(10999,3968,'_dt_fancy_header_bg_position_y','center'),(11000,3968,'_dt_fancy_header_bg_fullscreen','1'),(11001,3968,'_dt_fancy_header_height','300'),(11002,3968,'_dt_post_options_back_button',''),(11003,3968,'_dt_post_options_hide_thumbnail','0'),(11004,3968,'_dt_post_options_related_mode','same'),(11005,3968,'_dt_post_options_preview','normal'),(11006,3968,'_dt_fancy_header_title_font_size','44'),(11007,3968,'_dt_fancy_header_title_line_height','50'),(11008,3968,'_dt_fancy_header_subtitle_font_size','30'),(11009,3968,'_dt_fancy_header_subtitle_line_height','36'),(11010,4004,'_edit_last','2'),(11011,4004,'slide_template','default'),(11012,4004,'_wpb_vc_js_status','false'),(11013,4004,'_dt_sidebar_position','right'),(11014,4004,'_dt_sidebar_widgetarea_id','sidebar_1'),(11015,4004,'_dt_sidebar_hide_on_mobile','0'),(11016,4004,'_dt_footer_show','1'),(11017,4004,'_dt_footer_widgetarea_id','sidebar_2'),(11018,4004,'_dt_footer_hide_on_mobile','0'),(11019,4004,'_dt_header_title','enabled'),(11020,4004,'_dt_header_background','normal'),(11021,4004,'_dt_header_background_below_slideshow','disabled'),(11022,4004,'_dt_header_transparent_bg_color','#000000'),(11023,4004,'_dt_header_transparent_bg_opacity','50'),(11024,4004,'_dt_header_transparent_bg_color_scheme','light'),(11025,4004,'_dt_slideshow_mode','porthole'),(11026,4004,'_dt_slideshow_3d_layout','fullscreen-content'),(11027,4004,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(11028,4004,'_dt_slideshow_layout','fullwidth'),(11029,4004,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(11030,4004,'_dt_slideshow_scaling','fill'),(11031,4004,'_dt_slideshow_autoplay','paused'),(11032,4004,'_dt_slideshow_autoslide_interval','5000'),(11033,4004,'_dt_slideshow_hide_captions','0'),(11034,4004,'_dt_slideshow_photo_scroller_layout','fullscreen'),(11035,4004,'_dt_slideshow_photo_scroller_bg_color','#000000'),(11036,4004,'_dt_slideshow_photo_scroller_overlay','1'),(11037,4004,'_dt_slideshow_photo_scroller_top_padding','0'),(11038,4004,'_dt_slideshow_photo_scroller_bottom_padding','0'),(11039,4004,'_dt_slideshow_photo_scroller_side_paddings','0'),(11040,4004,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(11041,4004,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(11042,4004,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(11043,4004,'_dt_slideshow_photo_scroller_autoplay','play'),(11044,4004,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(11045,4004,'_dt_slideshow_photo_scroller_ls_max_width','100'),(11046,4004,'_dt_slideshow_photo_scroller_ls_min_width','0'),(11047,4004,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(11048,4004,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(11049,4004,'_dt_slideshow_photo_scroller_pt_max_width','100'),(11050,4004,'_dt_slideshow_photo_scroller_pt_min_width','0'),(11051,4004,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(11052,4004,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(11053,4004,'_dt_slideshow_revolution_slider','none'),(11054,4004,'_dt_slideshow_layer_slider','none'),(11055,4004,'_dt_slideshow_layer_show_bg_and_paddings','0'),(11056,4004,'_dt_fancy_header_title_aligment','center'),(11057,4004,'_dt_fancy_header_breadcrumbs','enabled'),(11058,4004,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(11059,4004,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(11060,4004,'_dt_fancy_header_title_mode','custom'),(11061,4004,'_dt_fancy_header_title_color_mode','color'),(11062,4004,'_dt_fancy_header_title_color','#ffffff'),(11063,4004,'_dt_fancy_header_subtitle_color_mode','color'),(11064,4004,'_dt_fancy_header_subtitle_color','#ffffff'),(11065,4004,'_dt_fancy_header_bg_color','#222222'),(11066,4004,'_dt_fancy_header_bg_repeat','no-repeat'),(11067,4004,'_dt_fancy_header_bg_position_x','center'),(11068,4004,'_dt_fancy_header_bg_position_y','center'),(11069,4004,'_dt_fancy_header_bg_fullscreen','1'),(11070,4004,'_dt_fancy_header_height','300'),(11071,4004,'_dt_post_options_back_button',''),(11072,4004,'_dt_post_options_hide_thumbnail','0'),(11073,4004,'_dt_post_options_related_mode','same'),(11074,4004,'_dt_post_options_preview','normal'),(11075,4004,'_thumbnail_id','4012'),(11076,4004,'_dt_fancy_header_title_font_size','44'),(11077,4004,'_dt_fancy_header_title_line_height','50'),(11078,4004,'_dt_fancy_header_subtitle_font_size','30'),(11079,4004,'_dt_fancy_header_subtitle_line_height','36'),(11080,4106,'_wc_memberships_force_public','no'),(11081,4106,'_edit_last','17'),(11083,4106,'_wc_memberships_use_custom_post_content_restricted_message','no'),(11084,4106,'_wpb_vc_js_status','false'),(11085,4106,'_dt_sidebar_position','right'),(11086,4106,'_dt_sidebar_widgetarea_id','sidebar_1'),(11087,4106,'_dt_sidebar_hide_on_mobile','0'),(11088,4106,'_dt_footer_show','1'),(11089,4106,'_dt_footer_widgetarea_id','sidebar_2'),(11090,4106,'_dt_footer_hide_on_mobile','0'),(11091,4106,'_dt_header_title','enabled'),(11092,4106,'_dt_header_background','normal'),(11093,4106,'_dt_header_background_below_slideshow','disabled'),(11094,4106,'_dt_header_transparent_bg_color','#000000'),(11095,4106,'_dt_header_transparent_bg_opacity','50'),(11096,4106,'_dt_header_transparent_bg_color_scheme','light'),(11097,4106,'_dt_slideshow_3d_layout','fullscreen-content'),(11098,4106,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(11099,4106,'_dt_microsite_mobile_menu',''),(11100,4106,'_dt_microsite_split_right_menu',''),(11101,4106,'_dt_microsite_primary_menu',''),(11102,4106,'_dt_microsite_split_left_menu',''),(11103,4106,'_dt_post_options_back_button',''),(11104,4106,'_dt_post_options_hide_thumbnail','0'),(11105,4106,'_dt_post_options_related_mode','same'),(11106,4106,'_dt_post_options_preview','normal'),(11107,4106,'_wp_page_template','default'),(11108,4106,'_dt_header_transparent_top_bar_bg_color',''),(11109,4106,'_dt_header_transparent_top_bar_bg_opacity','0'),(11110,4106,'_dt_header_disabled_background','normal'),(11111,4106,'_dt_header_disabled_transparent_bg_color_scheme','light'),(11112,4106,'_dt_header_disabled_transparent_top_bar_bg_color',''),(11113,4106,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),(11114,4106,'_dt_header_disabled_transparent_bg_color',''),(11115,4106,'_dt_header_disabled_transparent_bg_opacity','0'),(11116,4106,'_dt_page_overrides_top_margin',''),(11117,4106,'_dt_page_overrides_right_margin',''),(11118,4106,'_dt_page_overrides_bottom_margin',''),(11119,4106,'_dt_page_overrides_left_margin',''),(11120,4106,'_dt_mobile_page_padding_top',''),(11121,4106,'_dt_mobile_page_padding_right',''),(11122,4106,'_dt_mobile_page_padding_bottom',''),(11123,4106,'_dt_mobile_page_padding_left',''),(11124,4106,'_wpb_post_custom_layout','default'),(11125,4106,'iawp_total_views','50'),(11126,4377,'_edit_last','2'),(11127,4377,'slide_template','default'),(11128,4377,'_wpb_vc_js_status','false'),(11129,4377,'_dt_sidebar_position','right'),(11130,4377,'_dt_sidebar_widgetarea_id','sidebar_1'),(11131,4377,'_dt_sidebar_hide_on_mobile','0'),(11132,4377,'_dt_footer_show','1'),(11133,4377,'_dt_footer_widgetarea_id','sidebar_2'),(11134,4377,'_dt_footer_hide_on_mobile','0'),(11135,4377,'_dt_header_title','enabled'),(11136,4377,'_dt_header_background','normal'),(11137,4377,'_dt_header_background_below_slideshow','disabled'),(11138,4377,'_dt_header_transparent_bg_color','#000000'),(11139,4377,'_dt_header_transparent_bg_opacity','50'),(11140,4377,'_dt_header_transparent_bg_color_scheme','light'),(11141,4377,'_dt_header_disabled_background','normal'),(11142,4377,'_dt_header_disabled_transparent_bg_color','#000000'),(11143,4377,'_dt_header_disabled_transparent_bg_opacity','50'),(11144,4377,'_dt_header_disabled_transparent_bg_color_scheme','light'),(11145,4377,'_dt_page_overrides_top_margin',''),(11146,4377,'_dt_page_overrides_bottom_margin',''),(11147,4377,'_dt_slideshow_mode','porthole'),(11148,4377,'_dt_slideshow_3d_layout','fullscreen-content'),(11149,4377,'_dt_slideshow_3d_slider_proportions','a:2:{s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";}'),(11150,4377,'_dt_slideshow_layout','fullwidth'),(11151,4377,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(11152,4377,'_dt_slideshow_scaling','fill'),(11153,4377,'_dt_slideshow_autoplay','paused'),(11154,4377,'_dt_slideshow_autoslide_interval','5000'),(11155,4377,'_dt_slideshow_hide_captions','0'),(11156,4377,'_dt_slideshow_photo_scroller_layout','fullscreen'),(11157,4377,'_dt_slideshow_photo_scroller_bg_color','#000000'),(11158,4377,'_dt_slideshow_photo_scroller_overlay','1'),(11159,4377,'_dt_slideshow_photo_scroller_top_padding','0'),(11160,4377,'_dt_slideshow_photo_scroller_bottom_padding','0'),(11161,4377,'_dt_slideshow_photo_scroller_side_paddings','0'),(11162,4377,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(11163,4377,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(11164,4377,'_dt_slideshow_photo_scroller_thumbnails_width',''),(11165,4377,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(11166,4377,'_dt_slideshow_photo_scroller_autoplay','play'),(11167,4377,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(11168,4377,'fake_id',''),(11169,4377,'_dt_slideshow_photo_scroller_ls_max_width','100'),(11170,4377,'_dt_slideshow_photo_scroller_ls_min_width','0'),(11171,4377,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(11172,4377,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(11173,4377,'_dt_slideshow_photo_scroller_pt_max_width','100'),(11174,4377,'_dt_slideshow_photo_scroller_pt_min_width','0'),(11175,4377,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(11176,4377,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(11177,4377,'_dt_slideshow_revolution_slider','none'),(11178,4377,'_dt_slideshow_layer_slider','none'),(11179,4377,'_dt_slideshow_layer_show_bg_and_paddings','0'),(11180,4377,'_dt_fancy_header_layout_heading',''),(11181,4377,'_dt_fancy_header_title_aligment','center'),(11182,4377,'_dt_fancy_header_height','300'),(11183,4377,'_dt_fancy_header_padding-top','0px'),(11184,4377,'_dt_fancy_header_padding-bottom','0px'),(11185,4377,'_dt_fancy_header_breadcrumbs_heading',''),(11186,4377,'_dt_fancy_header_breadcrumbs','enabled'),(11187,4377,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(11188,4377,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(11189,4377,'_dt_fancy_header_title_heading',''),(11190,4377,'_dt_fancy_header_title_mode','custom'),(11191,4377,'_dt_fancy_header_title',''),(11192,4377,'_dt_fancy_header_title_font_size','30'),(11193,4377,'_dt_fancy_header_title_line_height','36'),(11194,4377,'_dt_fancy_header_uppercase','0'),(11195,4377,'_dt_fancy_header_title_color_mode','color'),(11196,4377,'_dt_fancy_header_title_color','#ffffff'),(11197,4377,'_dt_fancy_header_subtitle_heading',''),(11198,4377,'_dt_fancy_header_subtitle',''),(11199,4377,'_dt_fancy_header_subtitle_font_size','18'),(11200,4377,'_dt_fancy_header_subtitle_line_height','26'),(11201,4377,'_dt_fancy_header_subtitle_uppercase','0'),(11202,4377,'_dt_fancy_header_subtitle_color_mode','color'),(11203,4377,'_dt_fancy_header_subtitle_color','#ffffff'),(11204,4377,'_dt_fancy_header_bg_heading',''),(11205,4377,'_dt_fancy_header_bg_color','#222222'),(11206,4377,'_dt_fancy_header_bg_image','a:0:{}'),(11207,4377,'_dt_fancy_header_bg_repeat','no-repeat'),(11208,4377,'_dt_fancy_header_bg_position_x','center'),(11209,4377,'_dt_fancy_header_bg_position_y','center'),(11210,4377,'_dt_fancy_header_bg_fullscreen','1'),(11211,4377,'_dt_fancy_header_bg_overlay','0'),(11212,4377,'_dt_fancy_header_overlay_color','#000'),(11213,4377,'_dt_fancy_header_bg_overlay_opacity','50'),(11214,4377,'_dt_fancy_header_scroll_effect','default'),(11215,4377,'_dt_fancy_header_bg_parallax','0.5'),(11216,4377,'_dt_post_options_back_button',''),(11217,4377,'_dt_post_options_hide_thumbnail','0'),(11218,4377,'_dt_post_options_related_mode','same'),(11219,4377,'_dt_post_options_preview','normal'),(11220,4377,'_dt_microsite_page_layout','wide'),(11221,4377,'_dt_microsite_page_loading','enabled'),(11222,4377,'_dt_microsite_primary_menu',''),(11223,4377,'_dt_microsite_split_left_menu',''),(11224,4377,'_dt_microsite_split_right_menu',''),(11225,4377,'_dt_microsite_mobile_menu',''),(11226,4377,'_dt_microsite_logo_link',''),(11227,4377,'main_logo_heading',''),(11228,4377,'_dt_microsite_main_logo_type','default'),(11229,4377,'_dt_microsite_main_logo_regular','a:0:{}'),(11230,4377,'_dt_microsite_main_logo_hd','a:0:{}'),(11231,4377,'transparent_logo_heading',''),(11232,4377,'_dt_microsite_transparent_logo_type','default'),(11233,4377,'_dt_microsite_transparent_logo_regular','a:0:{}'),(11234,4377,'_dt_microsite_transparent_logo_hd','a:0:{}'),(11235,4377,'_dt_microsite_mixed_logo_type','default'),(11236,4377,'_dt_microsite_mixed_logo_regular','a:0:{}'),(11237,4377,'_dt_microsite_mixed_logo_hd','a:0:{}'),(11238,4377,'floating_logo_heading',''),(11239,4377,'_dt_microsite_floating_logo_type','default'),(11240,4377,'_dt_microsite_floating_logo_regular','a:0:{}'),(11241,4377,'_dt_microsite_floating_logo_hd','a:0:{}'),(11242,4377,'_dt_microsite_mobile_logo_type','default'),(11243,4377,'_dt_microsite_mobile_logo_regular','a:0:{}'),(11244,4377,'_dt_microsite_mobile_logo_hd','a:0:{}'),(11245,4377,'bottom_logo_heading',''),(11246,4377,'_dt_microsite_bottom_logo_type','default'),(11247,4377,'_dt_microsite_bottom_logo_regular','a:0:{}'),(11248,4377,'_dt_microsite_bottom_logo_hd','a:0:{}'),(11249,4377,'favicon_heading',''),(11250,4377,'_dt_microsite_favicon_type','default'),(11251,4377,'_dt_microsite_favicon','a:0:{}'),(11252,4377,'_wc_memberships_force_public','no'),(11253,4377,'_wc_memberships_use_custom_post_content_restricted_message','no'),(11254,5279,'_edit_last','2'),(11255,5279,'_dt_header_disabled_transparent_top_bar_bg_color',''),(11256,5279,'_wp_page_template','default'),(11257,5279,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),(11258,5279,'_wpb_vc_js_status','false'),(11259,5279,'_dt_sidebar_position','right'),(11260,5279,'_dt_sidebar_widgetarea_id','sidebar_1'),(11261,5279,'_dt_sidebar_hide_on_mobile','0'),(11262,5279,'_dt_footer_show','1'),(11263,5279,'_dt_footer_widgetarea_id','sidebar_2'),(11264,5279,'_dt_footer_hide_on_mobile','0'),(11265,5279,'_dt_header_title','enabled'),(11266,5279,'_dt_header_background','normal'),(11267,5279,'_dt_header_background_below_slideshow','disabled'),(11268,5279,'_dt_header_transparent_bg_color_scheme','light'),(11269,5279,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(11270,5279,'_dt_header_transparent_top_bar_bg_opacity','25'),(11271,5279,'_dt_header_transparent_bg_color','#000000'),(11272,5279,'_dt_header_transparent_bg_opacity','50'),(11273,5279,'_dt_header_disabled_background','normal'),(11274,5279,'_dt_header_disabled_transparent_bg_color','#000000'),(11275,5279,'_dt_header_disabled_transparent_bg_opacity','50'),(11276,5279,'_dt_header_disabled_transparent_bg_color_scheme','light'),(11277,5279,'_dt_page_overrides_top_margin',''),(11278,5279,'_dt_page_overrides_bottom_margin',''),(11279,5279,'_dt_fancy_header_uppercase','0'),(11280,5279,'_dt_fancy_header_subtitle_uppercase','0'),(11281,5279,'_dt_post_options_back_button',''),(11282,5279,'_dt_post_options_hide_thumbnail','0'),(11283,5279,'_dt_post_options_related_mode','same'),(11284,5279,'_dt_post_options_preview','normal'),(11285,5279,'_dt_microsite_primary_menu',''),(11286,5279,'_dt_microsite_split_left_menu',''),(11287,5279,'_dt_microsite_split_right_menu',''),(11288,5279,'_dt_microsite_mobile_menu',''),(11289,5279,'_wc_memberships_force_public','no'),(11290,5279,'_wc_memberships_use_custom_post_content_restricted_message','no'),(11291,5279,'_thumbnail_id','5309'),(11292,5279,'_wp_old_slug','is-there-a-right-shoe-for-you-the-problem-with-shoe-shopping'),(11293,5279,'_dt_page_overrides_right_margin',''),(11294,5279,'_dt_page_overrides_left_margin',''),(11295,5279,'_dt_mobile_page_padding_top',''),(11296,5279,'_dt_mobile_page_padding_right',''),(11297,5279,'_dt_mobile_page_padding_bottom',''),(11298,5279,'_dt_mobile_page_padding_left',''),(11299,5279,'iawp_total_views','14'),(11300,5409,'_dt_fancy_header_padding-top','0px'),(11301,5409,'_dt_fancy_header_padding-bottom','0px'),(11302,5409,'_dt_fancy_header_title_heading',''),(11303,5409,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(11304,5409,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(11305,5409,'_dt_fancy_header_breadcrumbs','enabled'),(11306,5409,'_dt_fancy_header_breadcrumbs_heading',''),(11307,5409,'_dt_fancy_header_height','300'),(11308,5409,'_dt_fancy_header_title_aligment','center'),(11309,5409,'fake_id',''),(11310,5409,'_dt_slideshow_photo_scroller_ls_max_width','100'),(11311,5409,'_dt_slideshow_photo_scroller_ls_min_width','0'),(11312,5409,'_edit_last','2'),(11313,5409,'_dt_slideshow_photo_scroller_thumbnails_width',''),(11314,5409,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(11315,5409,'_dt_slideshow_photo_scroller_autoplay','play'),(11316,5409,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(11317,5409,'_dt_page_overrides_bottom_margin',''),(11318,5409,'_dt_page_overrides_top_margin',''),(11319,5409,'_dt_header_disabled_transparent_bg_color_scheme','light'),(11320,5409,'_dt_header_disabled_transparent_bg_opacity','50'),(11321,5409,'_dt_header_disabled_transparent_bg_color','#000000'),(11322,5409,'_dt_header_disabled_background','normal'),(11323,5409,'_dt_header_transparent_bg_opacity','50'),(11324,5409,'_dt_header_transparent_bg_color','#000000'),(11325,5409,'_dt_header_transparent_top_bar_bg_opacity','25'),(11326,5409,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(11327,5409,'_dt_header_transparent_bg_color_scheme','light'),(11328,5409,'_dt_header_background_below_slideshow','disabled'),(11329,5409,'_dt_header_background','normal'),(11330,5409,'_dt_header_title','enabled'),(11331,5409,'_dt_footer_hide_on_mobile','0'),(11332,5409,'_dt_footer_widgetarea_id','sidebar_2'),(11333,5409,'_dt_footer_show','1'),(11334,5409,'_wp_page_template','default'),(11335,5409,'slide_template','default'),(11336,5409,'_wpb_vc_js_status','false'),(11337,5409,'_dt_sidebar_position','right'),(11338,5409,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(11339,5409,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(11340,5409,'_dt_slideshow_photo_scroller_side_paddings','0'),(11341,5409,'_dt_slideshow_photo_scroller_bottom_padding','0'),(11342,5409,'_dt_slideshow_photo_scroller_top_padding','0'),(11343,5409,'_dt_slideshow_photo_scroller_overlay','1'),(11344,5409,'_dt_slideshow_photo_scroller_bg_color','#000000'),(11345,5409,'_dt_slideshow_photo_scroller_layout','fullscreen'),(11346,5409,'_dt_slideshow_hide_captions','0'),(11347,5409,'_dt_slideshow_autoslide_interval','5000'),(11348,5409,'_dt_slideshow_autoplay','paused'),(11349,5409,'_dt_slideshow_scaling','fill'),(11350,5409,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(11351,5409,'_dt_slideshow_layout','fullwidth'),(11352,5409,'_dt_slideshow_mode','porthole'),(11353,5409,'_dt_sidebar_widgetarea_id','sidebar_1'),(11354,5409,'_dt_sidebar_hide_on_mobile','0'),(11355,5409,'_dt_fancy_header_layout_heading',''),(11356,5409,'_dt_slideshow_layer_show_bg_and_paddings','0'),(11357,5409,'_dt_slideshow_layer_slider','none'),(11358,5409,'_dt_slideshow_revolution_slider','none'),(11359,5409,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(11360,5409,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(11361,5409,'_dt_slideshow_photo_scroller_pt_min_width','0'),(11362,5409,'_dt_slideshow_photo_scroller_pt_max_width','100'),(11363,5409,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(11364,5409,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(11365,5409,'_dt_fancy_header_title_mode','custom'),(11366,5409,'_dt_fancy_header_title',''),(11367,5409,'_dt_fancy_header_title_font_size','30'),(11368,5409,'_dt_fancy_header_title_line_height','36'),(11369,5409,'_dt_fancy_header_uppercase','0'),(11370,5409,'_dt_fancy_header_title_color_mode','color'),(11371,5409,'_dt_fancy_header_title_color','#ffffff'),(11372,5409,'_dt_fancy_header_subtitle_heading',''),(11373,5409,'_dt_fancy_header_subtitle',''),(11374,5409,'_dt_fancy_header_subtitle_font_size','18'),(11375,5409,'_dt_fancy_header_subtitle_line_height','26'),(11376,5409,'_dt_fancy_header_subtitle_uppercase','0'),(11377,5409,'_dt_fancy_header_subtitle_color_mode','color'),(11378,5409,'_dt_fancy_header_subtitle_color','#ffffff'),(11379,5409,'_dt_fancy_header_bg_heading',''),(11380,5409,'_dt_fancy_header_bg_color','#222222'),(11381,5409,'_dt_fancy_header_bg_image','a:0:{}'),(11382,5409,'_dt_fancy_header_bg_repeat','no-repeat'),(11383,5409,'_dt_fancy_header_bg_position_x','center'),(11384,5409,'_dt_fancy_header_bg_position_y','center'),(11385,5409,'_dt_fancy_header_bg_fullscreen','1'),(11386,5409,'_dt_fancy_header_bg_overlay','0'),(11387,5409,'_dt_fancy_header_overlay_color','#000'),(11388,5409,'_dt_fancy_header_bg_overlay_opacity','50'),(11389,5409,'_dt_fancy_header_scroll_effect','default'),(11390,5409,'_dt_fancy_header_bg_parallax','0.5'),(11391,5409,'_dt_post_options_back_button',''),(11392,5409,'_dt_post_options_hide_thumbnail','0'),(11393,5409,'_dt_post_options_related_mode','same'),(11394,5409,'_dt_post_options_preview','normal'),(11395,5409,'_dt_microsite_page_layout','wide'),(11396,5409,'_dt_microsite_page_loading','enabled'),(11397,5409,'_dt_microsite_primary_menu',''),(11398,5409,'_dt_microsite_split_left_menu',''),(11399,5409,'_dt_microsite_split_right_menu',''),(11400,5409,'_dt_microsite_mobile_menu',''),(11401,5409,'_dt_microsite_logo_link',''),(11402,5409,'main_logo_heading',''),(11403,5409,'_dt_microsite_main_logo_type','default'),(11404,5409,'_dt_microsite_main_logo_regular','a:0:{}'),(11405,5409,'_dt_microsite_main_logo_hd','a:0:{}'),(11406,5409,'transparent_logo_heading',''),(11407,5409,'_dt_microsite_transparent_logo_type','default'),(11408,5409,'_dt_microsite_transparent_logo_regular','a:0:{}'),(11409,5409,'_dt_microsite_transparent_logo_hd','a:0:{}'),(11410,5409,'_dt_microsite_mixed_logo_type','default'),(11411,5409,'_dt_microsite_mixed_logo_regular','a:0:{}'),(11412,5409,'_dt_microsite_mixed_logo_hd','a:0:{}'),(11413,5409,'floating_logo_heading',''),(11414,5409,'_dt_microsite_floating_logo_type','default'),(11415,5409,'_dt_microsite_floating_logo_regular','a:0:{}'),(11416,5409,'_dt_microsite_floating_logo_hd','a:0:{}'),(11417,5409,'_dt_microsite_mobile_logo_type','default'),(11418,5409,'_dt_microsite_mobile_logo_regular','a:0:{}'),(11419,5409,'_dt_microsite_mobile_logo_hd','a:0:{}'),(11420,5409,'_dt_microsite_transparent_mobile_logo_type','default'),(11421,5409,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(11422,5409,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(11423,5409,'bottom_logo_heading',''),(11424,5409,'_dt_microsite_bottom_logo_type','default'),(11425,5409,'_dt_microsite_bottom_logo_regular','a:0:{}'),(11426,5409,'_dt_microsite_bottom_logo_hd','a:0:{}'),(11427,5409,'favicon_heading',''),(11428,5409,'_dt_microsite_favicon_type','default'),(11429,5409,'_dt_microsite_favicon','a:0:{}'),(11430,5409,'_wc_memberships_force_public','no'),(11431,5409,'_wc_memberships_use_custom_post_content_restricted_message','no'),(11432,5409,'_thumbnail_id','6309'),(11433,10370,'_wp_old_slug','level-4-low-back-pain-specialist-diploma-in-biomechanics-coaching-is-here'),(11434,10370,'_thumbnail_id','10372'),(11435,10370,'_edit_last','2'),(11436,10370,'_wc_memberships_force_public','no'),(11437,10370,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(11438,10370,'_dt_page_overrides_right_margin',''),(11439,10370,'_wpb_vc_js_status','false'),(11440,10370,'_dt_sidebar_position','right'),(11441,10370,'_dt_sidebar_widgetarea_id','sidebar_1'),(11442,10370,'_dt_sidebar_hide_on_mobile','0'),(11443,10370,'_dt_footer_show','1'),(11444,10370,'_dt_footer_widgetarea_id','sidebar_2'),(11445,10370,'_dt_footer_hide_on_mobile','0'),(11446,10370,'_dt_header_title','enabled'),(11447,10370,'_dt_header_background','normal'),(11448,10370,'_dt_header_background_below_slideshow','disabled'),(11449,10370,'_dt_header_transparent_bg_color_scheme','light'),(11450,10370,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(11451,10370,'_dt_header_transparent_top_bar_bg_opacity','25'),(11452,10370,'_dt_header_transparent_bg_color','#000000'),(11453,10370,'_dt_header_transparent_bg_opacity','50'),(11454,10370,'_dt_header_disabled_background','normal'),(11455,10370,'_dt_header_disabled_transparent_bg_color_scheme','light'),(11456,10370,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(11457,10370,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(11458,10370,'_dt_header_disabled_transparent_bg_color','#000000'),(11459,10370,'_dt_header_disabled_transparent_bg_opacity','50'),(11460,10370,'_dt_page_overrides_top_margin',''),(11461,10370,'_dt_page_overrides_bottom_margin',''),(11462,10370,'_dt_post_options_back_button',''),(11463,10370,'_dt_post_options_hide_thumbnail','0'),(11464,10370,'_dt_post_options_related_mode','same'),(11465,10370,'_dt_post_options_preview','normal'),(11466,10370,'_dt_mobile_page_padding_right',''),(11467,10370,'_dt_mobile_page_padding_bottom',''),(11468,10370,'_dt_mobile_page_padding_left',''),(11469,10370,'_dt_microsite_primary_menu',''),(11470,10370,'_wp_page_template','default'),(11471,10370,'_dt_page_overrides_left_margin',''),(11472,10370,'_dt_mobile_page_padding_top',''),(11473,10370,'_dt_microsite_split_left_menu',''),(11474,10370,'_dt_microsite_split_right_menu',''),(11475,10370,'_dt_microsite_mobile_menu',''),(11476,10370,'iawp_total_views','34'),(11477,19844,'_edit_last','2'),(11478,19844,'_wp_page_template','default'),(11479,19844,'slide_template','default'),(11480,19844,'_wpb_vc_js_status','false'),(11481,19844,'_wc_memberships_force_public','no'),(11482,19844,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(11483,19844,'_dt_sidebar_position','right'),(11484,19844,'_dt_sidebar_widgetarea_id','sidebar_1'),(11485,19844,'_dt_sidebar_hide_on_mobile','0'),(11486,19844,'_dt_footer_show','1'),(11487,19844,'_dt_footer_widgetarea_id','sidebar_2'),(11488,19844,'_dt_footer_hide_on_mobile','0'),(11489,19844,'_dt_header_title','enabled'),(11490,19844,'_dt_header_background','normal'),(11491,19844,'_dt_header_background_below_slideshow','disabled'),(11492,19844,'_dt_header_transparent_bg_color_scheme','light'),(11493,19844,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(11494,19844,'_dt_header_transparent_top_bar_bg_opacity','25'),(11495,19844,'_dt_header_transparent_bg_color','#000000'),(11496,19844,'_dt_header_transparent_bg_opacity','50'),(11497,19844,'_dt_header_disabled_background','normal'),(11498,19844,'_dt_header_disabled_transparent_bg_color_scheme','light'),(11499,19844,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(11500,19844,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(11501,19844,'_dt_header_disabled_transparent_bg_color','#000000'),(11502,19844,'_dt_header_disabled_transparent_bg_opacity','50'),(11503,19844,'_dt_page_overrides_top_margin',''),(11504,19844,'_dt_page_overrides_bottom_margin',''),(11505,19844,'_dt_post_options_back_button',''),(11506,19844,'_dt_post_options_hide_thumbnail','0'),(11507,19844,'_dt_post_options_related_mode','same'),(11508,19844,'_dt_post_options_preview','normal'),(11509,19844,'_thumbnail_id','19852'),(11510,21948,'_edit_last','2'),(11511,21948,'_thumbnail_id','21949'),(11512,21948,'_wp_page_template','default'),(11513,21948,'slide_template','default'),(11514,21948,'rs_page_bg_color','#ffffff'),(11515,21948,'_wpb_vc_js_status','false'),(11516,21948,'_wc_memberships_force_public','no'),(11517,21948,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(11518,21948,'_dt_sidebar_position','right'),(11519,21948,'_dt_sidebar_widgetarea_id','sidebar_1'),(11520,21948,'_dt_sidebar_hide_on_mobile','0'),(11521,21948,'_dt_footer_show','1'),(11522,21948,'_dt_footer_widgetarea_id','sidebar_2'),(11523,21948,'_dt_footer_hide_on_mobile','0'),(11524,21948,'_dt_header_title','enabled'),(11525,21948,'_dt_header_background','normal'),(11526,21948,'_dt_header_background_below_slideshow','disabled'),(11527,21948,'_dt_header_transparent_bg_color_scheme','light'),(11528,21948,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(11529,21948,'_dt_header_transparent_top_bar_bg_opacity','25'),(11530,21948,'_dt_header_transparent_bg_color','#000000'),(11531,21948,'_dt_header_transparent_bg_opacity','50'),(11532,21948,'_dt_header_disabled_background','normal'),(11533,21948,'_dt_header_disabled_transparent_bg_color_scheme','light'),(11534,21948,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(11535,21948,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(11536,21948,'_dt_header_disabled_transparent_bg_color','#000000'),(11537,21948,'_dt_header_disabled_transparent_bg_opacity','50'),(11538,21948,'_dt_page_overrides_top_margin',''),(11539,21948,'_dt_page_overrides_right_margin',''),(11540,21948,'_dt_page_overrides_bottom_margin',''),(11541,21948,'_dt_page_overrides_left_margin',''),(11542,21948,'_dt_mobile_page_padding_top',''),(11543,21948,'_dt_mobile_page_padding_right',''),(11544,21948,'_dt_mobile_page_padding_bottom',''),(11545,21948,'_dt_mobile_page_padding_left',''),(11546,21948,'_dt_post_options_back_button',''),(11547,21948,'_dt_post_options_hide_thumbnail','0'),(11548,21948,'_dt_post_options_related_mode','same'),(11549,21948,'_dt_post_options_preview','normal'),(11550,21948,'iawp_total_views','31'),(11551,4779,'_dt_mobile_page_padding_left',''),(11552,4779,'_dt_mobile_page_padding_bottom',''),(11553,4779,'_dt_mobile_page_padding_right',''),(11554,4779,'_dt_mobile_page_padding_top',''),(11555,4779,'_dt_page_overrides_left_margin',''),(11556,4779,'_dt_page_overrides_right_margin',''),(11557,4779,'_dt_header_disabled_transparent_top_bar_bg_opacity','0'),(11558,4779,'_dt_header_disabled_transparent_top_bar_bg_color',''),(11559,4779,'_edit_last','17'),(11560,4779,'_thumbnail_id','4785'),(11561,4779,'_wpb_post_custom_layout','default'),(11562,4779,'_wpb_vc_js_status','false'),(11563,4779,'_dt_sidebar_position','right'),(11564,4779,'_dt_sidebar_widgetarea_id','sidebar_1'),(11565,4779,'_dt_sidebar_hide_on_mobile','0'),(11566,4779,'_dt_footer_show','1'),(11567,4779,'_dt_footer_widgetarea_id','sidebar_2'),(11568,4779,'_dt_footer_hide_on_mobile','0'),(11569,4779,'_dt_header_title','enabled'),(11570,4779,'_dt_header_background','normal'),(11571,4779,'_dt_header_background_below_slideshow','disabled'),(11572,4779,'_dt_header_transparent_bg_color_scheme','light'),(11573,4779,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(11574,4779,'_dt_header_transparent_top_bar_bg_opacity','25'),(11575,4779,'_dt_header_transparent_bg_color','#000000'),(11576,4779,'_dt_header_transparent_bg_opacity','50'),(11577,4779,'_dt_header_disabled_background','normal'),(11578,4779,'_dt_header_disabled_transparent_bg_color','#000000'),(11579,4779,'_dt_header_disabled_transparent_bg_opacity','50'),(11580,4779,'_dt_header_disabled_transparent_bg_color_scheme','light'),(11581,4779,'_dt_page_overrides_top_margin',''),(11582,4779,'_dt_page_overrides_bottom_margin',''),(11583,4779,'_dt_fancy_header_uppercase','0'),(11584,4779,'_dt_fancy_header_subtitle_uppercase','0'),(11585,4779,'_dt_post_options_back_button',''),(11586,4779,'_dt_post_options_hide_thumbnail','0'),(11587,4779,'_dt_post_options_related_mode','same'),(11588,4779,'_dt_post_options_preview','normal'),(11589,4779,'_dt_microsite_primary_menu',''),(11590,4779,'_dt_microsite_split_left_menu',''),(11591,4779,'_dt_microsite_split_right_menu',''),(11592,4779,'_dt_microsite_mobile_menu',''),(11593,4779,'_wc_memberships_force_public','no'),(11594,4779,'_wc_memberships_use_custom_post_content_restricted_message','no'),(11595,4779,'_wp_page_template','default'),(11596,4791,'_edit_last','2'),(11597,4791,'_thumbnail_id','4793'),(11598,4791,'slide_template','default'),(11599,4791,'_wpb_vc_js_status','false'),(11600,4791,'_dt_sidebar_position','right'),(11601,4791,'_dt_sidebar_widgetarea_id','sidebar_1'),(11602,4791,'_dt_sidebar_hide_on_mobile','0'),(11603,4791,'_dt_footer_show','1'),(11604,4791,'_dt_footer_widgetarea_id','sidebar_2'),(11605,4791,'_dt_footer_hide_on_mobile','0'),(11606,4791,'_dt_header_title','enabled'),(11607,4791,'_dt_header_background','normal'),(11608,4791,'_dt_header_background_below_slideshow','disabled'),(11609,4791,'_dt_header_transparent_bg_color_scheme','light'),(11610,4791,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(11611,4791,'_dt_header_transparent_top_bar_bg_opacity','25'),(11612,4791,'_dt_header_transparent_bg_color','#000000'),(11613,4791,'_dt_header_transparent_bg_opacity','50'),(11614,4791,'_dt_header_disabled_background','normal'),(11615,4791,'_dt_header_disabled_transparent_bg_color','#000000'),(11616,4791,'_dt_header_disabled_transparent_bg_opacity','50'),(11617,4791,'_dt_header_disabled_transparent_bg_color_scheme','light'),(11618,4791,'_dt_page_overrides_top_margin',''),(11619,4791,'_dt_page_overrides_bottom_margin',''),(11620,4791,'_dt_slideshow_mode','porthole'),(11621,4791,'_dt_slideshow_layout','fullwidth'),(11622,4791,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(11623,4791,'_dt_slideshow_scaling','fill'),(11624,4791,'_dt_slideshow_autoplay','paused'),(11625,4791,'_dt_slideshow_autoslide_interval','5000'),(11626,4791,'_dt_slideshow_hide_captions','0'),(11627,4791,'_dt_slideshow_photo_scroller_layout','fullscreen'),(11628,4791,'_dt_slideshow_photo_scroller_bg_color','#000000'),(11629,4791,'_dt_slideshow_photo_scroller_overlay','1'),(11630,4791,'_dt_slideshow_photo_scroller_top_padding','0'),(11631,4791,'_dt_slideshow_photo_scroller_bottom_padding','0'),(11632,4791,'_dt_slideshow_photo_scroller_side_paddings','0'),(11633,4791,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(11634,4791,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(11635,4791,'_dt_slideshow_photo_scroller_thumbnails_width',''),(11636,4791,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(11637,4791,'_dt_slideshow_photo_scroller_autoplay','play'),(11638,4791,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(11639,4791,'fake_id',''),(11640,4791,'_dt_slideshow_photo_scroller_ls_max_width','100'),(11641,4791,'_dt_slideshow_photo_scroller_ls_min_width','0'),(11642,4791,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(11643,4791,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(11644,4791,'_dt_slideshow_photo_scroller_pt_max_width','100'),(11645,4791,'_dt_slideshow_photo_scroller_pt_min_width','0'),(11646,4791,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(11647,4791,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(11648,4791,'_dt_slideshow_revolution_slider','none'),(11649,4791,'_dt_slideshow_layer_slider','none'),(11650,4791,'_dt_slideshow_layer_show_bg_and_paddings','0'),(11651,4791,'_dt_fancy_header_layout_heading',''),(11652,4791,'_dt_fancy_header_title_aligment','center'),(11653,4791,'_dt_fancy_header_height','300'),(11654,4791,'_dt_fancy_header_padding-top','0px'),(11655,4791,'_dt_fancy_header_padding-bottom','0px'),(11656,4791,'_dt_fancy_header_breadcrumbs_heading',''),(11657,4791,'_dt_fancy_header_breadcrumbs','enabled'),(11658,4791,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(11659,4791,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(11660,4791,'_dt_fancy_header_title_heading',''),(11661,4791,'_dt_fancy_header_title_mode','custom'),(11662,4791,'_dt_fancy_header_title',''),(11663,4791,'_dt_fancy_header_title_font_size','30'),(11664,4791,'_dt_fancy_header_title_line_height','36'),(11665,4791,'_dt_fancy_header_uppercase','0'),(11666,4791,'_dt_fancy_header_title_color_mode','color'),(11667,4791,'_dt_fancy_header_title_color','#ffffff'),(11668,4791,'_dt_fancy_header_subtitle_heading',''),(11669,4791,'_dt_fancy_header_subtitle',''),(11670,4791,'_dt_fancy_header_subtitle_font_size','18'),(11671,4791,'_dt_fancy_header_subtitle_line_height','26'),(11672,4791,'_dt_fancy_header_subtitle_uppercase','0'),(11673,4791,'_dt_fancy_header_subtitle_color_mode','color'),(11674,4791,'_dt_fancy_header_subtitle_color','#ffffff'),(11675,4791,'_dt_fancy_header_bg_heading',''),(11676,4791,'_dt_fancy_header_bg_color','#222222'),(11677,4791,'_dt_fancy_header_bg_image','a:0:{}'),(11678,4791,'_dt_fancy_header_bg_repeat','no-repeat'),(11679,4791,'_dt_fancy_header_bg_position_x','center'),(11680,4791,'_dt_fancy_header_bg_position_y','center'),(11681,4791,'_dt_fancy_header_bg_fullscreen','1'),(11682,4791,'_dt_fancy_header_bg_overlay','0'),(11683,4791,'_dt_fancy_header_overlay_color','#000'),(11684,4791,'_dt_fancy_header_bg_overlay_opacity','50'),(11685,4791,'_dt_fancy_header_scroll_effect','default'),(11686,4791,'_dt_fancy_header_bg_parallax','0.5'),(11687,4791,'_dt_post_options_back_button',''),(11688,4791,'_dt_post_options_hide_thumbnail','0'),(11689,4791,'_dt_post_options_related_mode','same'),(11690,4791,'_dt_post_options_preview','normal'),(11691,4791,'_dt_microsite_page_layout','wide'),(11692,4791,'_dt_microsite_page_loading','enabled'),(11693,4791,'_dt_microsite_primary_menu',''),(11694,4791,'_dt_microsite_split_left_menu',''),(11695,4791,'_dt_microsite_split_right_menu',''),(11696,4791,'_dt_microsite_mobile_menu',''),(11697,4791,'_dt_microsite_logo_link',''),(11698,4791,'main_logo_heading',''),(11699,4791,'_dt_microsite_main_logo_type','default'),(11700,4791,'_dt_microsite_main_logo_regular','a:0:{}'),(11701,4791,'_dt_microsite_main_logo_hd','a:0:{}'),(11702,4791,'transparent_logo_heading',''),(11703,4791,'_dt_microsite_transparent_logo_type','default'),(11704,4791,'_dt_microsite_transparent_logo_regular','a:0:{}'),(11705,4791,'_dt_microsite_transparent_logo_hd','a:0:{}'),(11706,4791,'_dt_microsite_mixed_logo_type','default'),(11707,4791,'_dt_microsite_mixed_logo_regular','a:0:{}'),(11708,4791,'_dt_microsite_mixed_logo_hd','a:0:{}'),(11709,4791,'floating_logo_heading',''),(11710,4791,'_dt_microsite_floating_logo_type','default'),(11711,4791,'_dt_microsite_floating_logo_regular','a:0:{}'),(11712,4791,'_dt_microsite_floating_logo_hd','a:0:{}'),(11713,4791,'_dt_microsite_mobile_logo_type','default'),(11714,4791,'_dt_microsite_mobile_logo_regular','a:0:{}'),(11715,4791,'_dt_microsite_mobile_logo_hd','a:0:{}'),(11716,4791,'_dt_microsite_transparent_mobile_logo_type','default'),(11717,4791,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(11718,4791,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(11719,4791,'bottom_logo_heading',''),(11720,4791,'_dt_microsite_bottom_logo_type','default'),(11721,4791,'_dt_microsite_bottom_logo_regular','a:0:{}'),(11722,4791,'_dt_microsite_bottom_logo_hd','a:0:{}'),(11723,4791,'favicon_heading',''),(11724,4791,'_dt_microsite_favicon_type','default'),(11725,4791,'_dt_microsite_favicon','a:0:{}'),(11726,4791,'_wc_memberships_force_public','no'),(11727,4791,'_wc_memberships_use_custom_post_content_restricted_message','no'),(11728,5131,'_edit_last','2'),(11729,5131,'_wp_page_template','default'),(11730,5131,'slide_template','default'),(11731,5131,'_wpb_vc_js_status','false'),(11732,5131,'_dt_sidebar_position','right'),(11733,5131,'_dt_sidebar_widgetarea_id','sidebar_1'),(11734,5131,'_dt_sidebar_hide_on_mobile','0'),(11735,5131,'_dt_footer_show','1'),(11736,5131,'_dt_footer_widgetarea_id','sidebar_2'),(11737,5131,'_dt_footer_hide_on_mobile','0'),(11738,5131,'_dt_header_title','enabled'),(11739,5131,'_dt_header_background','normal'),(11740,5131,'_dt_header_background_below_slideshow','disabled'),(11741,5131,'_dt_header_transparent_bg_color_scheme','light'),(11742,5131,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(11743,5131,'_dt_header_transparent_top_bar_bg_opacity','25'),(11744,5131,'_dt_header_transparent_bg_color','#000000'),(11745,5131,'_dt_header_transparent_bg_opacity','50'),(11746,5131,'_dt_header_disabled_background','normal'),(11747,5131,'_dt_header_disabled_transparent_bg_color','#000000'),(11748,5131,'_dt_header_disabled_transparent_bg_opacity','50'),(11749,5131,'_dt_header_disabled_transparent_bg_color_scheme','light'),(11750,5131,'_dt_page_overrides_top_margin',''),(11751,5131,'_dt_page_overrides_bottom_margin',''),(11752,5131,'_dt_slideshow_mode','porthole'),(11753,5131,'_dt_slideshow_layout','fullwidth'),(11754,5131,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(11755,5131,'_dt_slideshow_scaling','fill'),(11756,5131,'_dt_slideshow_autoplay','paused'),(11757,5131,'_dt_slideshow_autoslide_interval','5000'),(11758,5131,'_dt_slideshow_hide_captions','0'),(11759,5131,'_dt_slideshow_photo_scroller_layout','fullscreen'),(11760,5131,'_dt_slideshow_photo_scroller_bg_color','#000000'),(11761,5131,'_dt_slideshow_photo_scroller_overlay','1'),(11762,5131,'_dt_slideshow_photo_scroller_top_padding','0'),(11763,5131,'_dt_slideshow_photo_scroller_bottom_padding','0'),(11764,5131,'_dt_slideshow_photo_scroller_side_paddings','0'),(11765,5131,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(11766,5131,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(11767,5131,'_dt_slideshow_photo_scroller_thumbnails_width',''),(11768,5131,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(11769,5131,'_dt_slideshow_photo_scroller_autoplay','play'),(11770,5131,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(11771,5131,'fake_id',''),(11772,5131,'_dt_slideshow_photo_scroller_ls_max_width','100'),(11773,5131,'_dt_slideshow_photo_scroller_ls_min_width','0'),(11774,5131,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(11775,5131,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(11776,5131,'_dt_slideshow_photo_scroller_pt_max_width','100'),(11777,5131,'_dt_slideshow_photo_scroller_pt_min_width','0'),(11778,5131,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(11779,5131,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(11780,5131,'_dt_slideshow_revolution_slider','none'),(11781,5131,'_dt_slideshow_layer_slider','none'),(11782,5131,'_dt_slideshow_layer_show_bg_and_paddings','0'),(11783,5131,'_dt_fancy_header_layout_heading',''),(11784,5131,'_dt_fancy_header_title_aligment','center'),(11785,5131,'_dt_fancy_header_height','300'),(11786,5131,'_dt_fancy_header_padding-top','0px'),(11787,5131,'_dt_fancy_header_padding-bottom','0px'),(11788,5131,'_dt_fancy_header_breadcrumbs_heading',''),(11789,5131,'_dt_fancy_header_breadcrumbs','enabled'),(11790,5131,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(11791,5131,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(11792,5131,'_dt_fancy_header_title_heading',''),(11793,5131,'_dt_fancy_header_title_mode','custom'),(11794,5131,'_dt_fancy_header_title',''),(11795,5131,'_dt_fancy_header_title_font_size','30'),(11796,5131,'_dt_fancy_header_title_line_height','36'),(11797,5131,'_dt_fancy_header_uppercase','0'),(11798,5131,'_dt_fancy_header_title_color_mode','color'),(11799,5131,'_dt_fancy_header_title_color','#ffffff'),(11800,5131,'_dt_fancy_header_subtitle_heading',''),(11801,5131,'_dt_fancy_header_subtitle',''),(11802,5131,'_dt_fancy_header_subtitle_font_size','18'),(11803,5131,'_dt_fancy_header_subtitle_line_height','26'),(11804,5131,'_dt_fancy_header_subtitle_uppercase','0'),(11805,5131,'_dt_fancy_header_subtitle_color_mode','color'),(11806,5131,'_dt_fancy_header_subtitle_color','#ffffff'),(11807,5131,'_dt_fancy_header_bg_heading',''),(11808,5131,'_dt_fancy_header_bg_color','#222222'),(11809,5131,'_dt_fancy_header_bg_image','a:0:{}'),(11810,5131,'_dt_fancy_header_bg_repeat','no-repeat'),(11811,5131,'_dt_fancy_header_bg_position_x','center'),(11812,5131,'_dt_fancy_header_bg_position_y','center'),(11813,5131,'_dt_fancy_header_bg_fullscreen','1'),(11814,5131,'_dt_fancy_header_bg_overlay','0'),(11815,5131,'_dt_fancy_header_overlay_color','#000'),(11816,5131,'_dt_fancy_header_bg_overlay_opacity','50'),(11817,5131,'_dt_fancy_header_scroll_effect','default'),(11818,5131,'_dt_fancy_header_bg_parallax','0.5'),(11819,5131,'_dt_post_options_back_button',''),(11820,5131,'_dt_post_options_hide_thumbnail','0'),(11821,5131,'_dt_post_options_related_mode','same'),(11822,5131,'_dt_post_options_preview','normal'),(11823,5131,'_dt_microsite_page_layout','wide'),(11824,5131,'_dt_microsite_page_loading','enabled'),(11825,5131,'_dt_microsite_primary_menu',''),(11826,5131,'_dt_microsite_split_left_menu',''),(11827,5131,'_dt_microsite_split_right_menu',''),(11828,5131,'_dt_microsite_mobile_menu',''),(11829,5131,'_dt_microsite_logo_link',''),(11830,5131,'main_logo_heading',''),(11831,5131,'_dt_microsite_main_logo_type','default'),(11832,5131,'_dt_microsite_main_logo_regular','a:0:{}'),(11833,5131,'_dt_microsite_main_logo_hd','a:0:{}'),(11834,5131,'transparent_logo_heading',''),(11835,5131,'_dt_microsite_transparent_logo_type','default'),(11836,5131,'_dt_microsite_transparent_logo_regular','a:0:{}'),(11837,5131,'_dt_microsite_transparent_logo_hd','a:0:{}'),(11838,5131,'_dt_microsite_mixed_logo_type','default'),(11839,5131,'_dt_microsite_mixed_logo_regular','a:0:{}'),(11840,5131,'_dt_microsite_mixed_logo_hd','a:0:{}'),(11841,5131,'floating_logo_heading',''),(11842,5131,'_dt_microsite_floating_logo_type','default'),(11843,5131,'_dt_microsite_floating_logo_regular','a:0:{}'),(11844,5131,'_dt_microsite_floating_logo_hd','a:0:{}'),(11845,5131,'_dt_microsite_mobile_logo_type','default'),(11846,5131,'_dt_microsite_mobile_logo_regular','a:0:{}'),(11847,5131,'_dt_microsite_mobile_logo_hd','a:0:{}'),(11848,5131,'_dt_microsite_transparent_mobile_logo_type','default'),(11849,5131,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(11850,5131,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(11851,5131,'bottom_logo_heading',''),(11852,5131,'_dt_microsite_bottom_logo_type','default'),(11853,5131,'_dt_microsite_bottom_logo_regular','a:0:{}'),(11854,5131,'_dt_microsite_bottom_logo_hd','a:0:{}'),(11855,5131,'favicon_heading',''),(11856,5131,'_dt_microsite_favicon_type','default'),(11857,5131,'_dt_microsite_favicon','a:0:{}'),(11858,5131,'_wc_memberships_force_public','no'),(11859,5131,'_wc_memberships_use_custom_post_content_restricted_message','no'),(11860,5131,'_thumbnail_id','5255'),(11861,5323,'_edit_last','2'),(11862,5323,'_thumbnail_id','5329'),(11863,5323,'_wp_page_template','default'),(11864,5323,'slide_template','default'),(11865,5323,'_wpb_vc_js_status','false'),(11866,5323,'_dt_sidebar_position','right'),(11867,5323,'_dt_sidebar_widgetarea_id','sidebar_1'),(11868,5323,'_dt_sidebar_hide_on_mobile','0'),(11869,5323,'_dt_footer_show','1'),(11870,5323,'_dt_footer_widgetarea_id','sidebar_2'),(11871,5323,'_dt_footer_hide_on_mobile','0'),(11872,5323,'_dt_header_title','enabled'),(11873,5323,'_dt_header_background','normal'),(11874,5323,'_dt_header_background_below_slideshow','disabled'),(11875,5323,'_dt_header_transparent_bg_color_scheme','light'),(11876,5323,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(11877,5323,'_dt_header_transparent_top_bar_bg_opacity','25'),(11878,5323,'_dt_header_transparent_bg_color','#000000'),(11879,5323,'_dt_header_transparent_bg_opacity','50'),(11880,5323,'_dt_header_disabled_background','normal'),(11881,5323,'_dt_header_disabled_transparent_bg_color','#000000'),(11882,5323,'_dt_header_disabled_transparent_bg_opacity','50'),(11883,5323,'_dt_header_disabled_transparent_bg_color_scheme','light'),(11884,5323,'_dt_page_overrides_top_margin',''),(11885,5323,'_dt_page_overrides_bottom_margin',''),(11886,5323,'_dt_slideshow_mode','porthole'),(11887,5323,'_dt_slideshow_layout','fullwidth'),(11888,5323,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(11889,5323,'_dt_slideshow_scaling','fill'),(11890,5323,'_dt_slideshow_autoplay','paused'),(11891,5323,'_dt_slideshow_autoslide_interval','5000'),(11892,5323,'_dt_slideshow_hide_captions','0'),(11893,5323,'_dt_slideshow_photo_scroller_layout','fullscreen'),(11894,5323,'_dt_slideshow_photo_scroller_bg_color','#000000'),(11895,5323,'_dt_slideshow_photo_scroller_overlay','1'),(11896,5323,'_dt_slideshow_photo_scroller_top_padding','0'),(11897,5323,'_dt_slideshow_photo_scroller_bottom_padding','0'),(11898,5323,'_dt_slideshow_photo_scroller_side_paddings','0'),(11899,5323,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(11900,5323,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(11901,5323,'_dt_slideshow_photo_scroller_thumbnails_width',''),(11902,5323,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(11903,5323,'_dt_slideshow_photo_scroller_autoplay','play'),(11904,5323,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(11905,5323,'fake_id',''),(11906,5323,'_dt_slideshow_photo_scroller_ls_max_width','100'),(11907,5323,'_dt_slideshow_photo_scroller_ls_min_width','0'),(11908,5323,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(11909,5323,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(11910,5323,'_dt_slideshow_photo_scroller_pt_max_width','100'),(11911,5323,'_dt_slideshow_photo_scroller_pt_min_width','0'),(11912,5323,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(11913,5323,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(11914,5323,'_dt_slideshow_revolution_slider','none'),(11915,5323,'_dt_slideshow_layer_slider','none'),(11916,5323,'_dt_slideshow_layer_show_bg_and_paddings','0'),(11917,5323,'_dt_fancy_header_layout_heading',''),(11918,5323,'_dt_fancy_header_title_aligment','center'),(11919,5323,'_dt_fancy_header_height','300'),(11920,5323,'_dt_fancy_header_padding-top','0px'),(11921,5323,'_dt_fancy_header_padding-bottom','0px'),(11922,5323,'_dt_fancy_header_breadcrumbs_heading',''),(11923,5323,'_dt_fancy_header_breadcrumbs','enabled'),(11924,5323,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(11925,5323,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(11926,5323,'_dt_fancy_header_title_heading',''),(11927,5323,'_dt_fancy_header_title_mode','custom'),(11928,5323,'_dt_fancy_header_title',''),(11929,5323,'_dt_fancy_header_title_font_size','30'),(11930,5323,'_dt_fancy_header_title_line_height','36'),(11931,5323,'_dt_fancy_header_uppercase','0'),(11932,5323,'_dt_fancy_header_title_color_mode','color'),(11933,5323,'_dt_fancy_header_title_color','#ffffff'),(11934,5323,'_dt_fancy_header_subtitle_heading',''),(11935,5323,'_dt_fancy_header_subtitle',''),(11936,5323,'_dt_fancy_header_subtitle_font_size','18'),(11937,5323,'_dt_fancy_header_subtitle_line_height','26'),(11938,5323,'_dt_fancy_header_subtitle_uppercase','0'),(11939,5323,'_dt_fancy_header_subtitle_color_mode','color'),(11940,5323,'_dt_fancy_header_subtitle_color','#ffffff'),(11941,5323,'_dt_fancy_header_bg_heading',''),(11942,5323,'_dt_fancy_header_bg_color','#222222'),(11943,5323,'_dt_fancy_header_bg_image','a:0:{}'),(11944,5323,'_dt_fancy_header_bg_repeat','no-repeat'),(11945,5323,'_dt_fancy_header_bg_position_x','center'),(11946,5323,'_dt_fancy_header_bg_position_y','center'),(11947,5323,'_dt_fancy_header_bg_fullscreen','1'),(11948,5323,'_dt_fancy_header_bg_overlay','0'),(11949,5323,'_dt_fancy_header_overlay_color','#000'),(11950,5323,'_dt_fancy_header_bg_overlay_opacity','50'),(11951,5323,'_dt_fancy_header_scroll_effect','default'),(11952,5323,'_dt_fancy_header_bg_parallax','0.5'),(11953,5323,'_dt_post_options_back_button',''),(11954,5323,'_dt_post_options_hide_thumbnail','0'),(11955,5323,'_dt_post_options_related_mode','same'),(11956,5323,'_dt_post_options_preview','normal'),(11957,5323,'_dt_microsite_page_layout','wide'),(11958,5323,'_dt_microsite_page_loading','enabled'),(11959,5323,'_dt_microsite_primary_menu',''),(11960,5323,'_dt_microsite_split_left_menu',''),(11961,5323,'_dt_microsite_split_right_menu',''),(11962,5323,'_dt_microsite_mobile_menu',''),(11963,5323,'_dt_microsite_logo_link',''),(11964,5323,'main_logo_heading',''),(11965,5323,'_dt_microsite_main_logo_type','default'),(11966,5323,'_dt_microsite_main_logo_regular','a:0:{}'),(11967,5323,'_dt_microsite_main_logo_hd','a:0:{}'),(11968,5323,'transparent_logo_heading',''),(11969,5323,'_dt_microsite_transparent_logo_type','default'),(11970,5323,'_dt_microsite_transparent_logo_regular','a:0:{}'),(11971,5323,'_dt_microsite_transparent_logo_hd','a:0:{}'),(11972,5323,'_dt_microsite_mixed_logo_type','default'),(11973,5323,'_dt_microsite_mixed_logo_regular','a:0:{}'),(11974,5323,'_dt_microsite_mixed_logo_hd','a:0:{}'),(11975,5323,'floating_logo_heading',''),(11976,5323,'_dt_microsite_floating_logo_type','default'),(11977,5323,'_dt_microsite_floating_logo_regular','a:0:{}'),(11978,5323,'_dt_microsite_floating_logo_hd','a:0:{}'),(11979,5323,'_dt_microsite_mobile_logo_type','default'),(11980,5323,'_dt_microsite_mobile_logo_regular','a:0:{}'),(11981,5323,'_dt_microsite_mobile_logo_hd','a:0:{}'),(11982,5323,'_dt_microsite_transparent_mobile_logo_type','default'),(11983,5323,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(11984,5323,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(11985,5323,'bottom_logo_heading',''),(11986,5323,'_dt_microsite_bottom_logo_type','default'),(11987,5323,'_dt_microsite_bottom_logo_regular','a:0:{}'),(11988,5323,'_dt_microsite_bottom_logo_hd','a:0:{}'),(11989,5323,'favicon_heading',''),(11990,5323,'_dt_microsite_favicon_type','default'),(11991,5323,'_dt_microsite_favicon','a:0:{}'),(11992,5323,'_wc_memberships_force_public','no'),(11993,5323,'_wc_memberships_use_custom_post_content_restricted_message','no'),(11994,6336,'_thumbnail_id','6342'),(11995,6336,'_oembed_time_d5a9e6636f5f3d6c2babfa7f9cd24b96','1520888811'),(11996,6336,'_oembed_d5a9e6636f5f3d6c2babfa7f9cd24b96','<iframe width=\"689\" height=\"388\" src=\"https://www.youtube.com/embed/la6jOLuMSiU?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(11997,6336,'_oembed_time_f26a9e74756ca1b40cda1a1d2110acd9','1520877434'),(11998,6336,'_oembed_f26a9e74756ca1b40cda1a1d2110acd9','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/la6jOLuMSiU?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(11999,6336,'_wc_memberships_use_custom_post_content_restricted_message','no'),(12000,6336,'_wc_memberships_force_public','no'),(12001,6336,'_dt_microsite_favicon','a:0:{}'),(12002,6336,'_dt_microsite_favicon_type','default'),(12003,6336,'favicon_heading',''),(12004,6336,'_dt_microsite_bottom_logo_hd','a:0:{}'),(12005,6336,'_dt_microsite_bottom_logo_regular','a:0:{}'),(12006,6336,'_dt_microsite_bottom_logo_type','default'),(12007,6336,'bottom_logo_heading',''),(12008,6336,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(12009,6336,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(12010,6336,'_dt_microsite_transparent_mobile_logo_type','default'),(12011,6336,'_dt_microsite_mobile_logo_hd','a:0:{}'),(12012,6336,'_dt_microsite_mobile_logo_regular','a:0:{}'),(12013,6336,'_dt_microsite_mobile_logo_type','default'),(12014,6336,'_dt_microsite_floating_logo_hd','a:0:{}'),(12015,6336,'_dt_microsite_floating_logo_regular','a:0:{}'),(12016,6336,'_dt_microsite_floating_logo_type','default'),(12017,6336,'floating_logo_heading',''),(12018,6336,'_dt_microsite_mixed_logo_hd','a:0:{}'),(12019,6336,'_dt_microsite_mixed_logo_regular','a:0:{}'),(12020,6336,'_dt_microsite_mixed_logo_type','default'),(12021,6336,'_dt_microsite_transparent_logo_hd','a:0:{}'),(12022,6336,'_dt_microsite_transparent_logo_regular','a:0:{}'),(12023,6336,'transparent_logo_heading',''),(12024,6336,'_dt_microsite_transparent_logo_type','default'),(12025,6336,'_dt_microsite_main_logo_hd','a:0:{}'),(12026,6336,'_dt_microsite_main_logo_regular','a:0:{}'),(12027,6336,'_dt_microsite_main_logo_type','default'),(12028,6336,'main_logo_heading',''),(12029,6336,'_dt_microsite_logo_link',''),(12030,6336,'_dt_microsite_mobile_menu',''),(12031,6336,'_dt_microsite_split_right_menu',''),(12032,6336,'_dt_microsite_split_left_menu',''),(12033,6336,'_dt_microsite_primary_menu',''),(12034,6336,'_dt_microsite_page_loading','enabled'),(12035,6336,'_dt_microsite_page_layout','wide'),(12036,6336,'_dt_post_options_preview','normal'),(12037,6336,'_dt_post_options_related_mode','same'),(12038,6336,'_dt_post_options_hide_thumbnail','0'),(12039,6336,'_dt_post_options_back_button',''),(12040,6336,'_dt_fancy_header_bg_parallax','0.5'),(12041,6336,'_dt_fancy_header_scroll_effect','default'),(12042,6336,'_dt_fancy_header_bg_overlay_opacity','50'),(12043,6336,'_dt_fancy_header_overlay_color','#000'),(12044,6336,'_dt_fancy_header_bg_overlay','0'),(12045,6336,'_dt_fancy_header_bg_fullscreen','1'),(12046,6336,'_dt_fancy_header_bg_position_y','center'),(12047,6336,'_dt_fancy_header_bg_position_x','center'),(12048,6336,'_dt_fancy_header_bg_repeat','no-repeat'),(12049,6336,'_dt_fancy_header_bg_image','a:0:{}'),(12050,6336,'_dt_fancy_header_bg_color','#222222'),(12051,6336,'_dt_fancy_header_bg_heading',''),(12052,6336,'_dt_fancy_header_subtitle_color','#ffffff'),(12053,6336,'_dt_fancy_header_subtitle_color_mode','color'),(12054,6336,'_dt_fancy_header_subtitle_uppercase','0'),(12055,6336,'_dt_fancy_header_subtitle_line_height','26'),(12056,6336,'_dt_fancy_header_subtitle_font_size','18'),(12057,6336,'_dt_fancy_header_subtitle',''),(12058,6336,'_dt_fancy_header_subtitle_heading',''),(12059,6336,'_dt_fancy_header_title_color','#ffffff'),(12060,6336,'_dt_fancy_header_title_color_mode','color'),(12061,6336,'_dt_fancy_header_uppercase','0'),(12062,6336,'_dt_fancy_header_title_line_height','36'),(12063,6336,'_dt_fancy_header_title_font_size','30'),(12064,6336,'_dt_fancy_header_title',''),(12065,6336,'_dt_fancy_header_title_mode','custom'),(12066,6336,'_dt_fancy_header_title_heading',''),(12067,6336,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(12068,6336,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(12069,6336,'_dt_fancy_header_breadcrumbs','enabled'),(12070,6336,'_dt_fancy_header_breadcrumbs_heading',''),(12071,6336,'_dt_fancy_header_padding-bottom','0px'),(12072,6336,'_dt_fancy_header_padding-top','0px'),(12073,6336,'_dt_fancy_header_height','300'),(12074,6336,'_dt_fancy_header_title_aligment','center'),(12075,6336,'_dt_fancy_header_layout_heading',''),(12076,6336,'_dt_slideshow_layer_show_bg_and_paddings','0'),(12077,6336,'_dt_slideshow_layer_slider','none'),(12078,6336,'_dt_slideshow_revolution_slider','none'),(12079,6336,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(12080,6336,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(12081,6336,'_dt_slideshow_photo_scroller_pt_min_width','0'),(12082,6336,'_dt_slideshow_photo_scroller_pt_max_width','100'),(12083,6336,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(12084,6336,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(12085,6336,'_dt_slideshow_photo_scroller_ls_min_width','0'),(12086,6336,'fake_id',''),(12087,6336,'_dt_slideshow_photo_scroller_ls_max_width','100'),(12088,6336,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(12089,6336,'_dt_slideshow_photo_scroller_autoplay','play'),(12090,6336,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(12091,6336,'_dt_slideshow_photo_scroller_thumbnails_width',''),(12092,6336,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(12093,6336,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(12094,6336,'_dt_slideshow_photo_scroller_side_paddings','0'),(12095,6336,'_dt_slideshow_photo_scroller_bottom_padding','0'),(12096,6336,'_dt_slideshow_photo_scroller_top_padding','0'),(12097,6336,'_dt_slideshow_photo_scroller_overlay','1'),(12098,6336,'_dt_slideshow_photo_scroller_bg_color','#000000'),(12099,6336,'_dt_slideshow_photo_scroller_layout','fullscreen'),(12100,6336,'_dt_slideshow_hide_captions','0'),(12101,6336,'_dt_slideshow_autoslide_interval','5000'),(12102,6336,'_dt_slideshow_autoplay','paused'),(12103,6336,'_dt_slideshow_scaling','fill'),(12104,6336,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(12105,6336,'_dt_slideshow_layout','fullwidth'),(12106,6336,'_dt_slideshow_mode','porthole'),(12107,6336,'_dt_page_overrides_bottom_margin',''),(12108,6336,'_dt_page_overrides_top_margin',''),(12109,6336,'_dt_header_disabled_transparent_bg_color_scheme','light'),(12110,6336,'_dt_header_disabled_transparent_bg_opacity','50'),(12111,6336,'_dt_header_disabled_transparent_bg_color','#000000'),(12112,6336,'_dt_header_disabled_background','normal'),(12113,6336,'_dt_header_transparent_bg_opacity','50'),(12114,6336,'_dt_header_transparent_bg_color','#000000'),(12115,6336,'_dt_header_transparent_top_bar_bg_opacity','25'),(12116,6336,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(12117,6336,'_dt_header_transparent_bg_color_scheme','light'),(12118,6336,'_dt_header_background_below_slideshow','disabled'),(12119,6336,'_dt_header_background','normal'),(12120,6336,'_dt_header_title','enabled'),(12121,6336,'_dt_footer_hide_on_mobile','0'),(12122,6336,'_dt_footer_widgetarea_id','sidebar_2'),(12123,6336,'_dt_footer_show','1'),(12124,6336,'_dt_sidebar_hide_on_mobile','0'),(12125,6336,'_dt_sidebar_widgetarea_id','sidebar_1'),(12126,6336,'_dt_sidebar_position','right'),(12127,6336,'_wpb_vc_js_status','false'),(12128,6336,'slide_template','default'),(12129,6336,'_wp_page_template','default'),(12130,6336,'_edit_last','2'),(12131,6336,'_oembed_1406129b20c1c4f9bc98158b1b0cec83','<iframe width=\"710\" height=\"399\" src=\"https://www.youtube.com/embed/la6jOLuMSiU?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(12132,6336,'_oembed_time_1406129b20c1c4f9bc98158b1b0cec83','1521445984'),(12133,6336,'iawp_total_views','1'),(12134,6391,'_edit_last','2'),(12135,6391,'_wp_page_template','default'),(12136,6391,'slide_template','default'),(12137,6391,'_wpb_vc_js_status','false'),(12138,6391,'_dt_sidebar_position','right'),(12139,6391,'_dt_sidebar_widgetarea_id','sidebar_1'),(12140,6391,'_dt_sidebar_hide_on_mobile','0'),(12141,6391,'_dt_footer_show','1'),(12142,6391,'_dt_footer_widgetarea_id','sidebar_2'),(12143,6391,'_dt_footer_hide_on_mobile','0'),(12144,6391,'_dt_header_title','enabled'),(12145,6391,'_dt_header_background','normal'),(12146,6391,'_dt_header_background_below_slideshow','disabled'),(12147,6391,'_dt_header_transparent_bg_color_scheme','light'),(12148,6391,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(12149,6391,'_dt_header_transparent_top_bar_bg_opacity','25'),(12150,6391,'_dt_header_transparent_bg_color','#000000'),(12151,6391,'_dt_header_transparent_bg_opacity','50'),(12152,6391,'_dt_header_disabled_background','normal'),(12153,6391,'_dt_header_disabled_transparent_bg_color','#000000'),(12154,6391,'_dt_header_disabled_transparent_bg_opacity','50'),(12155,6391,'_dt_header_disabled_transparent_bg_color_scheme','light'),(12156,6391,'_dt_page_overrides_top_margin',''),(12157,6391,'_dt_page_overrides_bottom_margin',''),(12158,6391,'_dt_slideshow_mode','porthole'),(12159,6391,'_dt_slideshow_layout','fullwidth'),(12160,6391,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(12161,6391,'_dt_slideshow_scaling','fill'),(12162,6391,'_dt_slideshow_autoplay','paused'),(12163,6391,'_dt_slideshow_autoslide_interval','5000'),(12164,6391,'_dt_slideshow_hide_captions','0'),(12165,6391,'_dt_slideshow_photo_scroller_layout','fullscreen'),(12166,6391,'_dt_slideshow_photo_scroller_bg_color','#000000'),(12167,6391,'_dt_slideshow_photo_scroller_overlay','1'),(12168,6391,'_dt_slideshow_photo_scroller_top_padding','0'),(12169,6391,'_dt_slideshow_photo_scroller_bottom_padding','0'),(12170,6391,'_dt_slideshow_photo_scroller_side_paddings','0'),(12171,6391,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(12172,6391,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(12173,6391,'_dt_slideshow_photo_scroller_thumbnails_width',''),(12174,6391,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(12175,6391,'_dt_slideshow_photo_scroller_autoplay','play'),(12176,6391,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(12177,6391,'fake_id',''),(12178,6391,'_dt_slideshow_photo_scroller_ls_max_width','100'),(12179,6391,'_dt_slideshow_photo_scroller_ls_min_width','0'),(12180,6391,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(12181,6391,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(12182,6391,'_dt_slideshow_photo_scroller_pt_max_width','100'),(12183,6391,'_dt_slideshow_photo_scroller_pt_min_width','0'),(12184,6391,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(12185,6391,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(12186,6391,'_dt_slideshow_revolution_slider','none'),(12187,6391,'_dt_slideshow_layer_slider','none'),(12188,6391,'_dt_slideshow_layer_show_bg_and_paddings','0'),(12189,6391,'_dt_fancy_header_layout_heading',''),(12190,6391,'_dt_fancy_header_title_aligment','center'),(12191,6391,'_dt_fancy_header_height','300'),(12192,6391,'_dt_fancy_header_padding-top','0px'),(12193,6391,'_dt_fancy_header_padding-bottom','0px'),(12194,6391,'_dt_fancy_header_breadcrumbs_heading',''),(12195,6391,'_dt_fancy_header_breadcrumbs','enabled'),(12196,6391,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(12197,6391,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(12198,6391,'_dt_fancy_header_title_heading',''),(12199,6391,'_dt_fancy_header_title_mode','custom'),(12200,6391,'_dt_fancy_header_title',''),(12201,6391,'_dt_fancy_header_title_font_size','30'),(12202,6391,'_dt_fancy_header_title_line_height','36'),(12203,6391,'_dt_fancy_header_uppercase','0'),(12204,6391,'_dt_fancy_header_title_color_mode','color'),(12205,6391,'_dt_fancy_header_title_color','#ffffff'),(12206,6391,'_dt_fancy_header_subtitle_heading',''),(12207,6391,'_dt_fancy_header_subtitle',''),(12208,6391,'_dt_fancy_header_subtitle_font_size','18'),(12209,6391,'_dt_fancy_header_subtitle_line_height','26'),(12210,6391,'_dt_fancy_header_subtitle_uppercase','0'),(12211,6391,'_dt_fancy_header_subtitle_color_mode','color'),(12212,6391,'_dt_fancy_header_subtitle_color','#ffffff'),(12213,6391,'_dt_fancy_header_bg_heading',''),(12214,6391,'_dt_fancy_header_bg_color','#222222'),(12215,6391,'_dt_fancy_header_bg_image','a:0:{}'),(12216,6391,'_dt_fancy_header_bg_repeat','no-repeat'),(12217,6391,'_dt_fancy_header_bg_position_x','center'),(12218,6391,'_dt_fancy_header_bg_position_y','center'),(12219,6391,'_dt_fancy_header_bg_fullscreen','1'),(12220,6391,'_dt_fancy_header_bg_overlay','0'),(12221,6391,'_dt_fancy_header_overlay_color','#000'),(12222,6391,'_dt_fancy_header_bg_overlay_opacity','50'),(12223,6391,'_dt_fancy_header_scroll_effect','default'),(12224,6391,'_dt_fancy_header_bg_parallax','0.5'),(12225,6391,'_dt_post_options_back_button',''),(12226,6391,'_dt_post_options_hide_thumbnail','0'),(12227,6391,'_dt_post_options_related_mode','same'),(12228,6391,'_dt_post_options_preview','normal'),(12229,6391,'_dt_microsite_page_layout','wide'),(12230,6391,'_dt_microsite_page_loading','enabled'),(12231,6391,'_dt_microsite_primary_menu',''),(12232,6391,'_dt_microsite_split_left_menu',''),(12233,6391,'_dt_microsite_split_right_menu',''),(12234,6391,'_dt_microsite_mobile_menu',''),(12235,6391,'_dt_microsite_logo_link',''),(12236,6391,'main_logo_heading',''),(12237,6391,'_dt_microsite_main_logo_type','default'),(12238,6391,'_dt_microsite_main_logo_regular','a:0:{}'),(12239,6391,'_dt_microsite_main_logo_hd','a:0:{}'),(12240,6391,'transparent_logo_heading',''),(12241,6391,'_dt_microsite_transparent_logo_type','default'),(12242,6391,'_dt_microsite_transparent_logo_regular','a:0:{}'),(12243,6391,'_dt_microsite_transparent_logo_hd','a:0:{}'),(12244,6391,'_dt_microsite_mixed_logo_type','default'),(12245,6391,'_dt_microsite_mixed_logo_regular','a:0:{}'),(12246,6391,'_dt_microsite_mixed_logo_hd','a:0:{}'),(12247,6391,'floating_logo_heading',''),(12248,6391,'_dt_microsite_floating_logo_type','default'),(12249,6391,'_dt_microsite_floating_logo_regular','a:0:{}'),(12250,6391,'_dt_microsite_floating_logo_hd','a:0:{}'),(12251,6391,'_dt_microsite_mobile_logo_type','default'),(12252,6391,'_dt_microsite_mobile_logo_regular','a:0:{}'),(12253,6391,'_dt_microsite_mobile_logo_hd','a:0:{}'),(12254,6391,'_dt_microsite_transparent_mobile_logo_type','default'),(12255,6391,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(12256,6391,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(12257,6391,'bottom_logo_heading',''),(12258,6391,'_dt_microsite_bottom_logo_type','default'),(12259,6391,'_dt_microsite_bottom_logo_regular','a:0:{}'),(12260,6391,'_dt_microsite_bottom_logo_hd','a:0:{}'),(12261,6391,'favicon_heading',''),(12262,6391,'_dt_microsite_favicon_type','default'),(12263,6391,'_dt_microsite_favicon','a:0:{}'),(12264,6391,'_wc_memberships_force_public','no'),(12265,6391,'_wc_memberships_use_custom_post_content_restricted_message','no'),(12266,6391,'_thumbnail_id','6417'),(12267,6391,'iawp_total_views','56'),(12268,6721,'_edit_last','2'),(12269,6721,'_wp_page_template','default'),(12270,6721,'slide_template','default'),(12271,6721,'_wpb_vc_js_status','false'),(12272,6721,'_dt_sidebar_position','right'),(12273,6721,'_dt_sidebar_widgetarea_id','sidebar_1'),(12274,6721,'_dt_sidebar_hide_on_mobile','0'),(12275,6721,'_dt_footer_show','1'),(12276,6721,'_dt_footer_widgetarea_id','sidebar_2'),(12277,6721,'_dt_footer_hide_on_mobile','0'),(12278,6721,'_dt_header_title','enabled'),(12279,6721,'_dt_header_background','normal'),(12280,6721,'_dt_header_background_below_slideshow','disabled'),(12281,6721,'_dt_header_transparent_bg_color_scheme','light'),(12282,6721,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(12283,6721,'_dt_header_transparent_top_bar_bg_opacity','25'),(12284,6721,'_dt_header_transparent_bg_color','#000000'),(12285,6721,'_dt_header_transparent_bg_opacity','50'),(12286,6721,'_dt_header_disabled_background','normal'),(12287,6721,'_dt_header_disabled_transparent_bg_color','#000000'),(12288,6721,'_dt_header_disabled_transparent_bg_opacity','50'),(12289,6721,'_dt_header_disabled_transparent_bg_color_scheme','light'),(12290,6721,'_dt_page_overrides_top_margin',''),(12291,6721,'_dt_page_overrides_bottom_margin',''),(12292,6721,'_dt_slideshow_mode','porthole'),(12293,6721,'_dt_slideshow_layout','fullwidth'),(12294,6721,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(12295,6721,'_dt_slideshow_scaling','fill'),(12296,6721,'_dt_slideshow_autoplay','paused'),(12297,6721,'_dt_slideshow_autoslide_interval','5000'),(12298,6721,'_dt_slideshow_hide_captions','0'),(12299,6721,'_dt_slideshow_photo_scroller_layout','fullscreen'),(12300,6721,'_dt_slideshow_photo_scroller_bg_color','#000000'),(12301,6721,'_dt_slideshow_photo_scroller_overlay','1'),(12302,6721,'_dt_slideshow_photo_scroller_top_padding','0'),(12303,6721,'_dt_slideshow_photo_scroller_bottom_padding','0'),(12304,6721,'_dt_slideshow_photo_scroller_side_paddings','0'),(12305,6721,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(12306,6721,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(12307,6721,'_dt_slideshow_photo_scroller_thumbnails_width',''),(12308,6721,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(12309,6721,'_dt_slideshow_photo_scroller_autoplay','play'),(12310,6721,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(12311,6721,'fake_id',''),(12312,6721,'_dt_slideshow_photo_scroller_ls_max_width','100'),(12313,6721,'_dt_slideshow_photo_scroller_ls_min_width','0'),(12314,6721,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(12315,6721,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(12316,6721,'_dt_slideshow_photo_scroller_pt_max_width','100'),(12317,6721,'_dt_slideshow_photo_scroller_pt_min_width','0'),(12318,6721,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(12319,6721,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(12320,6721,'_dt_slideshow_revolution_slider','none'),(12321,6721,'_dt_slideshow_layer_slider','none'),(12322,6721,'_dt_slideshow_layer_show_bg_and_paddings','0'),(12323,6721,'_dt_fancy_header_layout_heading',''),(12324,6721,'_dt_fancy_header_title_aligment','center'),(12325,6721,'_dt_fancy_header_height','300'),(12326,6721,'_dt_fancy_header_padding-top','0px'),(12327,6721,'_dt_fancy_header_padding-bottom','0px'),(12328,6721,'_dt_fancy_header_breadcrumbs_heading',''),(12329,6721,'_dt_fancy_header_breadcrumbs','enabled'),(12330,6721,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(12331,6721,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(12332,6721,'_dt_fancy_header_title_heading',''),(12333,6721,'_dt_fancy_header_title_mode','custom'),(12334,6721,'_dt_fancy_header_title',''),(12335,6721,'_dt_fancy_header_title_font_size','30'),(12336,6721,'_dt_fancy_header_title_line_height','36'),(12337,6721,'_dt_fancy_header_uppercase','0'),(12338,6721,'_dt_fancy_header_title_color_mode','color'),(12339,6721,'_dt_fancy_header_title_color','#ffffff'),(12340,6721,'_dt_fancy_header_subtitle_heading',''),(12341,6721,'_dt_fancy_header_subtitle',''),(12342,6721,'_dt_fancy_header_subtitle_font_size','18'),(12343,6721,'_dt_fancy_header_subtitle_line_height','26'),(12344,6721,'_dt_fancy_header_subtitle_uppercase','0'),(12345,6721,'_dt_fancy_header_subtitle_color_mode','color'),(12346,6721,'_dt_fancy_header_subtitle_color','#ffffff'),(12347,6721,'_dt_fancy_header_bg_heading',''),(12348,6721,'_dt_fancy_header_bg_color','#222222'),(12349,6721,'_dt_fancy_header_bg_image','a:0:{}'),(12350,6721,'_dt_fancy_header_bg_repeat','no-repeat'),(12351,6721,'_dt_fancy_header_bg_position_x','center'),(12352,6721,'_dt_fancy_header_bg_position_y','center'),(12353,6721,'_dt_fancy_header_bg_fullscreen','1'),(12354,6721,'_dt_fancy_header_bg_overlay','0'),(12355,6721,'_dt_fancy_header_overlay_color','#000'),(12356,6721,'_dt_fancy_header_bg_overlay_opacity','50'),(12357,6721,'_dt_fancy_header_scroll_effect','default'),(12358,6721,'_dt_fancy_header_bg_parallax','0.5'),(12359,6721,'_dt_post_options_back_button',''),(12360,6721,'_dt_post_options_hide_thumbnail','0'),(12361,6721,'_dt_post_options_related_mode','same'),(12362,6721,'_dt_post_options_preview','normal'),(12363,6721,'_dt_microsite_page_layout','wide'),(12364,6721,'_dt_microsite_page_loading','enabled'),(12365,6721,'_dt_microsite_primary_menu',''),(12366,6721,'_dt_microsite_split_left_menu',''),(12367,6721,'_dt_microsite_split_right_menu',''),(12368,6721,'_dt_microsite_mobile_menu',''),(12369,6721,'_dt_microsite_logo_link',''),(12370,6721,'main_logo_heading',''),(12371,6721,'_dt_microsite_main_logo_type','default'),(12372,6721,'_dt_microsite_main_logo_regular','a:0:{}'),(12373,6721,'_dt_microsite_main_logo_hd','a:0:{}'),(12374,6721,'transparent_logo_heading',''),(12375,6721,'_dt_microsite_transparent_logo_type','default'),(12376,6721,'_dt_microsite_transparent_logo_regular','a:0:{}'),(12377,6721,'_dt_microsite_transparent_logo_hd','a:0:{}'),(12378,6721,'_dt_microsite_mixed_logo_type','default'),(12379,6721,'_dt_microsite_mixed_logo_regular','a:0:{}'),(12380,6721,'_dt_microsite_mixed_logo_hd','a:0:{}'),(12381,6721,'floating_logo_heading',''),(12382,6721,'_dt_microsite_floating_logo_type','default'),(12383,6721,'_dt_microsite_floating_logo_regular','a:0:{}'),(12384,6721,'_dt_microsite_floating_logo_hd','a:0:{}'),(12385,6721,'_dt_microsite_mobile_logo_type','default'),(12386,6721,'_dt_microsite_mobile_logo_regular','a:0:{}'),(12387,6721,'_dt_microsite_mobile_logo_hd','a:0:{}'),(12388,6721,'_dt_microsite_transparent_mobile_logo_type','default'),(12389,6721,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(12390,6721,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(12391,6721,'bottom_logo_heading',''),(12392,6721,'_dt_microsite_bottom_logo_type','default'),(12393,6721,'_dt_microsite_bottom_logo_regular','a:0:{}'),(12394,6721,'_dt_microsite_bottom_logo_hd','a:0:{}'),(12395,6721,'favicon_heading',''),(12396,6721,'_dt_microsite_favicon_type','default'),(12397,6721,'_dt_microsite_favicon','a:0:{}'),(12398,6721,'_wc_memberships_force_public','no'),(12399,6721,'_wc_memberships_use_custom_post_content_restricted_message','no'),(12400,6721,'_thumbnail_id','6724'),(12401,6721,'iawp_total_views','23'),(12402,6451,'_edit_last','2'),(12403,6451,'_oembed_b6b07bb1f47c9cccd2cb80fbd5c7bf37','{{unknown}}'),(12404,6451,'_wp_page_template','default'),(12405,6451,'slide_template','default'),(12406,6451,'_wpb_vc_js_status','false'),(12407,6451,'_dt_sidebar_position','right'),(12408,6451,'_dt_sidebar_widgetarea_id','sidebar_1'),(12409,6451,'_dt_sidebar_hide_on_mobile','0'),(12410,6451,'_dt_footer_show','1'),(12411,6451,'_dt_footer_widgetarea_id','sidebar_2'),(12412,6451,'_dt_footer_hide_on_mobile','0'),(12413,6451,'_dt_header_title','enabled'),(12414,6451,'_dt_header_background','normal'),(12415,6451,'_dt_header_background_below_slideshow','disabled'),(12416,6451,'_dt_header_transparent_bg_color_scheme','light'),(12417,6451,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(12418,6451,'_dt_header_transparent_top_bar_bg_opacity','25'),(12419,6451,'_dt_header_transparent_bg_color','#000000'),(12420,6451,'_dt_header_transparent_bg_opacity','50'),(12421,6451,'_dt_header_disabled_background','normal'),(12422,6451,'_dt_header_disabled_transparent_bg_color','#000000'),(12423,6451,'_dt_header_disabled_transparent_bg_opacity','50'),(12424,6451,'_dt_header_disabled_transparent_bg_color_scheme','light'),(12425,6451,'_dt_page_overrides_top_margin',''),(12426,6451,'_dt_page_overrides_bottom_margin',''),(12427,6451,'_dt_slideshow_mode','porthole'),(12428,6451,'_dt_slideshow_layout','fullwidth'),(12429,6451,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(12430,6451,'_dt_slideshow_scaling','fill'),(12431,6451,'_dt_slideshow_autoplay','paused'),(12432,6451,'_dt_slideshow_autoslide_interval','5000'),(12433,6451,'_dt_slideshow_hide_captions','0'),(12434,6451,'_dt_slideshow_photo_scroller_layout','fullscreen'),(12435,6451,'_dt_slideshow_photo_scroller_bg_color','#000000'),(12436,6451,'_dt_slideshow_photo_scroller_overlay','1'),(12437,6451,'_dt_slideshow_photo_scroller_top_padding','0'),(12438,6451,'_dt_slideshow_photo_scroller_bottom_padding','0'),(12439,6451,'_dt_slideshow_photo_scroller_side_paddings','0'),(12440,6451,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(12441,6451,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(12442,6451,'_dt_slideshow_photo_scroller_thumbnails_width',''),(12443,6451,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(12444,6451,'_dt_slideshow_photo_scroller_autoplay','play'),(12445,6451,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(12446,6451,'fake_id',''),(12447,6451,'_dt_slideshow_photo_scroller_ls_max_width','100'),(12448,6451,'_dt_slideshow_photo_scroller_ls_min_width','0'),(12449,6451,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(12450,6451,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(12451,6451,'_dt_slideshow_photo_scroller_pt_max_width','100'),(12452,6451,'_dt_slideshow_photo_scroller_pt_min_width','0'),(12453,6451,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(12454,6451,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(12455,6451,'_dt_slideshow_revolution_slider','none'),(12456,6451,'_dt_slideshow_layer_slider','none'),(12457,6451,'_dt_slideshow_layer_show_bg_and_paddings','0'),(12458,6451,'_dt_fancy_header_layout_heading',''),(12459,6451,'_dt_fancy_header_title_aligment','center'),(12460,6451,'_dt_fancy_header_height','300'),(12461,6451,'_dt_fancy_header_padding-top','0px'),(12462,6451,'_dt_fancy_header_padding-bottom','0px'),(12463,6451,'_dt_fancy_header_breadcrumbs_heading',''),(12464,6451,'_dt_fancy_header_breadcrumbs','enabled'),(12465,6451,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(12466,6451,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(12467,6451,'_dt_fancy_header_title_heading',''),(12468,6451,'_dt_fancy_header_title_mode','custom'),(12469,6451,'_dt_fancy_header_title',''),(12470,6451,'_dt_fancy_header_title_font_size','30'),(12471,6451,'_dt_fancy_header_title_line_height','36'),(12472,6451,'_dt_fancy_header_uppercase','0'),(12473,6451,'_dt_fancy_header_title_color_mode','color'),(12474,6451,'_dt_fancy_header_title_color','#ffffff'),(12475,6451,'_dt_fancy_header_subtitle_heading',''),(12476,6451,'_dt_fancy_header_subtitle',''),(12477,6451,'_dt_fancy_header_subtitle_font_size','18'),(12478,6451,'_dt_fancy_header_subtitle_line_height','26'),(12479,6451,'_dt_fancy_header_subtitle_uppercase','0'),(12480,6451,'_dt_fancy_header_subtitle_color_mode','color'),(12481,6451,'_dt_fancy_header_subtitle_color','#ffffff'),(12482,6451,'_dt_fancy_header_bg_heading',''),(12483,6451,'_dt_fancy_header_bg_color','#222222'),(12484,6451,'_dt_fancy_header_bg_image','a:0:{}'),(12485,6451,'_dt_fancy_header_bg_repeat','no-repeat'),(12486,6451,'_dt_fancy_header_bg_position_x','center'),(12487,6451,'_dt_fancy_header_bg_position_y','center'),(12488,6451,'_dt_fancy_header_bg_fullscreen','1'),(12489,6451,'_dt_fancy_header_bg_overlay','0'),(12490,6451,'_dt_fancy_header_overlay_color','#000'),(12491,6451,'_dt_fancy_header_bg_overlay_opacity','50'),(12492,6451,'_dt_fancy_header_scroll_effect','default'),(12493,6451,'_dt_fancy_header_bg_parallax','0.5'),(12494,6451,'_dt_post_options_back_button',''),(12495,6451,'_dt_post_options_hide_thumbnail','0'),(12496,6451,'_dt_post_options_related_mode','same'),(12497,6451,'_dt_post_options_preview','normal'),(12498,6451,'_dt_microsite_page_layout','wide'),(12499,6451,'_dt_microsite_page_loading','enabled'),(12500,6451,'_dt_microsite_primary_menu',''),(12501,6451,'_dt_microsite_split_left_menu',''),(12502,6451,'_dt_microsite_split_right_menu',''),(12503,6451,'_dt_microsite_mobile_menu',''),(12504,6451,'_dt_microsite_logo_link',''),(12505,6451,'main_logo_heading',''),(12506,6451,'_dt_microsite_main_logo_type','default'),(12507,6451,'_dt_microsite_main_logo_regular','a:0:{}'),(12508,6451,'_dt_microsite_main_logo_hd','a:0:{}'),(12509,6451,'transparent_logo_heading',''),(12510,6451,'_dt_microsite_transparent_logo_type','default'),(12511,6451,'_dt_microsite_transparent_logo_regular','a:0:{}'),(12512,6451,'_dt_microsite_transparent_logo_hd','a:0:{}'),(12513,6451,'_dt_microsite_mixed_logo_type','default'),(12514,6451,'_dt_microsite_mixed_logo_regular','a:0:{}'),(12515,6451,'_dt_microsite_mixed_logo_hd','a:0:{}'),(12516,6451,'floating_logo_heading',''),(12517,6451,'_dt_microsite_floating_logo_type','default'),(12518,6451,'_dt_microsite_floating_logo_regular','a:0:{}'),(12519,6451,'_dt_microsite_floating_logo_hd','a:0:{}'),(12520,6451,'_dt_microsite_mobile_logo_type','default'),(12521,6451,'_dt_microsite_mobile_logo_regular','a:0:{}'),(12522,6451,'_dt_microsite_mobile_logo_hd','a:0:{}'),(12523,6451,'_dt_microsite_transparent_mobile_logo_type','default'),(12524,6451,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(12525,6451,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(12526,6451,'bottom_logo_heading',''),(12527,6451,'_dt_microsite_bottom_logo_type','default'),(12528,6451,'_dt_microsite_bottom_logo_regular','a:0:{}'),(12529,6451,'_dt_microsite_bottom_logo_hd','a:0:{}'),(12530,6451,'favicon_heading',''),(12531,6451,'_dt_microsite_favicon_type','default'),(12532,6451,'_dt_microsite_favicon','a:0:{}'),(12533,6451,'_wc_memberships_force_public','no'),(12534,6451,'_wc_memberships_use_custom_post_content_restricted_message','no'),(12535,6451,'_thumbnail_id','6456'),(12536,6451,'_wp_old_slug','do-you-ever-feel-like-a-fraud-3-steps-to-learning-anatomy-physiology'),(12537,6451,'iawp_total_views','1'),(12538,6471,'_edit_last','2'),(12539,6471,'_wp_page_template','default'),(12540,6471,'slide_template','default'),(12541,6471,'_wpb_vc_js_status','false'),(12542,6471,'_dt_sidebar_position','right'),(12543,6471,'_dt_sidebar_widgetarea_id','sidebar_1'),(12544,6471,'_dt_sidebar_hide_on_mobile','0'),(12545,6471,'_dt_footer_show','1'),(12546,6471,'_dt_footer_widgetarea_id','sidebar_2'),(12547,6471,'_dt_footer_hide_on_mobile','0'),(12548,6471,'_dt_header_title','enabled'),(12549,6471,'_dt_header_background','normal'),(12550,6471,'_dt_header_background_below_slideshow','disabled'),(12551,6471,'_dt_header_transparent_bg_color_scheme','light'),(12552,6471,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(12553,6471,'_dt_header_transparent_top_bar_bg_opacity','25'),(12554,6471,'_dt_header_transparent_bg_color','#000000'),(12555,6471,'_dt_header_transparent_bg_opacity','50'),(12556,6471,'_dt_header_disabled_background','normal'),(12557,6471,'_dt_header_disabled_transparent_bg_color','#000000'),(12558,6471,'_dt_header_disabled_transparent_bg_opacity','50'),(12559,6471,'_dt_header_disabled_transparent_bg_color_scheme','light'),(12560,6471,'_dt_page_overrides_top_margin',''),(12561,6471,'_dt_page_overrides_bottom_margin',''),(12562,6471,'_dt_slideshow_mode','porthole'),(12563,6471,'_dt_slideshow_layout','fullwidth'),(12564,6471,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(12565,6471,'_dt_slideshow_scaling','fill'),(12566,6471,'_dt_slideshow_autoplay','paused'),(12567,6471,'_dt_slideshow_autoslide_interval','5000'),(12568,6471,'_dt_slideshow_hide_captions','0'),(12569,6471,'_dt_slideshow_photo_scroller_layout','fullscreen'),(12570,6471,'_dt_slideshow_photo_scroller_bg_color','#000000'),(12571,6471,'_dt_slideshow_photo_scroller_overlay','1'),(12572,6471,'_dt_slideshow_photo_scroller_top_padding','0'),(12573,6471,'_dt_slideshow_photo_scroller_bottom_padding','0'),(12574,6471,'_dt_slideshow_photo_scroller_side_paddings','0'),(12575,6471,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(12576,6471,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(12577,6471,'_dt_slideshow_photo_scroller_thumbnails_width',''),(12578,6471,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(12579,6471,'_dt_slideshow_photo_scroller_autoplay','play'),(12580,6471,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(12581,6471,'fake_id',''),(12582,6471,'_dt_slideshow_photo_scroller_ls_max_width','100'),(12583,6471,'_dt_slideshow_photo_scroller_ls_min_width','0'),(12584,6471,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(12585,6471,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(12586,6471,'_dt_slideshow_photo_scroller_pt_max_width','100'),(12587,6471,'_dt_slideshow_photo_scroller_pt_min_width','0'),(12588,6471,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(12589,6471,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(12590,6471,'_dt_slideshow_revolution_slider','none'),(12591,6471,'_dt_slideshow_layer_slider','none'),(12592,6471,'_dt_slideshow_layer_show_bg_and_paddings','0'),(12593,6471,'_dt_fancy_header_layout_heading',''),(12594,6471,'_dt_fancy_header_title_aligment','center'),(12595,6471,'_dt_fancy_header_height','300'),(12596,6471,'_dt_fancy_header_padding-top','0px'),(12597,6471,'_dt_fancy_header_padding-bottom','0px'),(12598,6471,'_dt_fancy_header_breadcrumbs_heading',''),(12599,6471,'_dt_fancy_header_breadcrumbs','enabled'),(12600,6471,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(12601,6471,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(12602,6471,'_dt_fancy_header_title_heading',''),(12603,6471,'_dt_fancy_header_title_mode','custom'),(12604,6471,'_dt_fancy_header_title',''),(12605,6471,'_dt_fancy_header_title_font_size','30'),(12606,6471,'_dt_fancy_header_title_line_height','36'),(12607,6471,'_dt_fancy_header_uppercase','0'),(12608,6471,'_dt_fancy_header_title_color_mode','color'),(12609,6471,'_dt_fancy_header_title_color','#ffffff'),(12610,6471,'_dt_fancy_header_subtitle_heading',''),(12611,6471,'_dt_fancy_header_subtitle',''),(12612,6471,'_dt_fancy_header_subtitle_font_size','18'),(12613,6471,'_dt_fancy_header_subtitle_line_height','26'),(12614,6471,'_dt_fancy_header_subtitle_uppercase','0'),(12615,6471,'_dt_fancy_header_subtitle_color_mode','color'),(12616,6471,'_dt_fancy_header_subtitle_color','#ffffff'),(12617,6471,'_dt_fancy_header_bg_heading',''),(12618,6471,'_dt_fancy_header_bg_color','#222222'),(12619,6471,'_dt_fancy_header_bg_image','a:0:{}'),(12620,6471,'_dt_fancy_header_bg_repeat','no-repeat'),(12621,6471,'_dt_fancy_header_bg_position_x','center'),(12622,6471,'_dt_fancy_header_bg_position_y','center'),(12623,6471,'_dt_fancy_header_bg_fullscreen','1'),(12624,6471,'_dt_fancy_header_bg_overlay','0'),(12625,6471,'_dt_fancy_header_overlay_color','#000'),(12626,6471,'_dt_fancy_header_bg_overlay_opacity','50'),(12627,6471,'_dt_fancy_header_scroll_effect','default'),(12628,6471,'_dt_fancy_header_bg_parallax','0.5'),(12629,6471,'_dt_post_options_back_button',''),(12630,6471,'_dt_post_options_hide_thumbnail','0'),(12631,6471,'_dt_post_options_related_mode','same'),(12632,6471,'_dt_post_options_preview','normal'),(12633,6471,'_dt_microsite_page_layout','wide'),(12634,6471,'_dt_microsite_page_loading','enabled'),(12635,6471,'_dt_microsite_primary_menu',''),(12636,6471,'_dt_microsite_split_left_menu',''),(12637,6471,'_dt_microsite_split_right_menu',''),(12638,6471,'_dt_microsite_mobile_menu',''),(12639,6471,'_dt_microsite_logo_link',''),(12640,6471,'main_logo_heading',''),(12641,6471,'_dt_microsite_main_logo_type','default'),(12642,6471,'_dt_microsite_main_logo_regular','a:0:{}'),(12643,6471,'_dt_microsite_main_logo_hd','a:0:{}'),(12644,6471,'transparent_logo_heading',''),(12645,6471,'_dt_microsite_transparent_logo_type','default'),(12646,6471,'_dt_microsite_transparent_logo_regular','a:0:{}'),(12647,6471,'_dt_microsite_transparent_logo_hd','a:0:{}'),(12648,6471,'_dt_microsite_mixed_logo_type','default'),(12649,6471,'_dt_microsite_mixed_logo_regular','a:0:{}'),(12650,6471,'_dt_microsite_mixed_logo_hd','a:0:{}'),(12651,6471,'floating_logo_heading',''),(12652,6471,'_dt_microsite_floating_logo_type','default'),(12653,6471,'_dt_microsite_floating_logo_regular','a:0:{}'),(12654,6471,'_dt_microsite_floating_logo_hd','a:0:{}'),(12655,6471,'_dt_microsite_mobile_logo_type','default'),(12656,6471,'_dt_microsite_mobile_logo_regular','a:0:{}'),(12657,6471,'_dt_microsite_mobile_logo_hd','a:0:{}'),(12658,6471,'_dt_microsite_transparent_mobile_logo_type','default'),(12659,6471,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(12660,6471,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(12661,6471,'bottom_logo_heading',''),(12662,6471,'_dt_microsite_bottom_logo_type','default'),(12663,6471,'_dt_microsite_bottom_logo_regular','a:0:{}'),(12664,6471,'_dt_microsite_bottom_logo_hd','a:0:{}'),(12665,6471,'favicon_heading',''),(12666,6471,'_dt_microsite_favicon_type','default'),(12667,6471,'_dt_microsite_favicon','a:0:{}'),(12668,6471,'_wc_memberships_force_public','no'),(12669,6471,'_wc_memberships_use_custom_post_content_restricted_message','no'),(12670,6471,'_thumbnail_id','6472'),(12671,6471,'iawp_total_views','22'),(12672,7024,'_dt_slideshow_mode','porthole'),(12673,7024,'_dt_page_overrides_top_margin',''),(12674,7024,'_dt_page_overrides_bottom_margin',''),(12675,7024,'_dt_header_disabled_transparent_bg_color_scheme','light'),(12676,7024,'_dt_header_disabled_transparent_bg_color','#000000'),(12677,7024,'_dt_header_disabled_transparent_bg_opacity','50'),(12678,7024,'_dt_header_disabled_background','normal'),(12679,7024,'_dt_header_transparent_bg_color','#000000'),(12680,7024,'_dt_header_transparent_bg_opacity','50'),(12681,7024,'_dt_header_transparent_top_bar_bg_opacity','25'),(12682,7024,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(12683,7024,'_dt_header_transparent_bg_color_scheme','light'),(12684,7024,'_dt_header_background','normal'),(12685,7024,'_dt_header_background_below_slideshow','disabled'),(12686,7024,'_dt_header_title','enabled'),(12687,7024,'_dt_footer_widgetarea_id','sidebar_2'),(12688,7024,'_dt_footer_hide_on_mobile','0'),(12689,7024,'_dt_slideshow_layout','fullwidth'),(12690,7024,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(12691,7024,'_dt_footer_show','1'),(12692,7024,'_dt_sidebar_widgetarea_id','sidebar_1'),(12693,7024,'_dt_sidebar_hide_on_mobile','0'),(12694,7024,'_dt_sidebar_position','right'),(12695,7024,'_wp_page_template','default'),(12696,7024,'slide_template','default'),(12697,7024,'_wpb_vc_js_status','false'),(12698,7024,'_thumbnail_id','7025'),(12699,7024,'_edit_last','2'),(12700,7024,'_dt_slideshow_scaling','fill'),(12701,7024,'_dt_slideshow_autoplay','paused'),(12702,7024,'_dt_slideshow_autoslide_interval','5000'),(12703,7024,'_dt_slideshow_hide_captions','0'),(12704,7024,'_dt_slideshow_photo_scroller_layout','fullscreen'),(12705,7024,'_dt_slideshow_photo_scroller_bg_color','#000000'),(12706,7024,'_dt_slideshow_photo_scroller_overlay','1'),(12707,7024,'_dt_slideshow_photo_scroller_top_padding','0'),(12708,7024,'_dt_slideshow_photo_scroller_bottom_padding','0'),(12709,7024,'_dt_slideshow_photo_scroller_side_paddings','0'),(12710,7024,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(12711,7024,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(12712,7024,'_dt_slideshow_photo_scroller_thumbnails_width',''),(12713,7024,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(12714,7024,'_dt_slideshow_photo_scroller_autoplay','play'),(12715,7024,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(12716,7024,'fake_id',''),(12717,7024,'_dt_slideshow_photo_scroller_ls_max_width','100'),(12718,7024,'_dt_slideshow_photo_scroller_ls_min_width','0'),(12719,7024,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(12720,7024,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(12721,7024,'_dt_slideshow_photo_scroller_pt_max_width','100'),(12722,7024,'_dt_slideshow_photo_scroller_pt_min_width','0'),(12723,7024,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(12724,7024,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(12725,7024,'_dt_slideshow_revolution_slider','none'),(12726,7024,'_dt_slideshow_layer_slider','none'),(12727,7024,'_dt_slideshow_layer_show_bg_and_paddings','0'),(12728,7024,'_dt_fancy_header_layout_heading',''),(12729,7024,'_dt_fancy_header_title_aligment','center'),(12730,7024,'_dt_fancy_header_height','300'),(12731,7024,'_dt_fancy_header_padding-top','0px'),(12732,7024,'_dt_fancy_header_padding-bottom','0px'),(12733,7024,'_dt_fancy_header_breadcrumbs_heading',''),(12734,7024,'_dt_fancy_header_breadcrumbs','enabled'),(12735,7024,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(12736,7024,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(12737,7024,'_dt_fancy_header_title_heading',''),(12738,7024,'_dt_fancy_header_title_mode','custom'),(12739,7024,'_dt_fancy_header_title',''),(12740,7024,'_dt_fancy_header_title_font_size','30'),(12741,7024,'_dt_fancy_header_title_line_height','36'),(12742,7024,'_dt_fancy_header_uppercase','0'),(12743,7024,'_dt_fancy_header_title_color_mode','color'),(12744,7024,'_dt_fancy_header_title_color','#ffffff'),(12745,7024,'_dt_fancy_header_subtitle_heading',''),(12746,7024,'_dt_fancy_header_subtitle',''),(12747,7024,'_dt_fancy_header_subtitle_font_size','18'),(12748,7024,'_dt_fancy_header_subtitle_line_height','26'),(12749,7024,'_dt_fancy_header_subtitle_uppercase','0'),(12750,7024,'_dt_fancy_header_subtitle_color_mode','color'),(12751,7024,'_dt_fancy_header_subtitle_color','#ffffff'),(12752,7024,'_dt_fancy_header_bg_heading',''),(12753,7024,'_dt_fancy_header_bg_color','#222222'),(12754,7024,'_dt_fancy_header_bg_image','a:0:{}'),(12755,7024,'_dt_fancy_header_bg_repeat','no-repeat'),(12756,7024,'_dt_fancy_header_bg_position_x','center'),(12757,7024,'_dt_fancy_header_bg_position_y','center'),(12758,7024,'_dt_fancy_header_bg_fullscreen','1'),(12759,7024,'_dt_fancy_header_bg_overlay','0'),(12760,7024,'_dt_fancy_header_overlay_color','#000'),(12761,7024,'_dt_fancy_header_bg_overlay_opacity','50'),(12762,7024,'_dt_fancy_header_scroll_effect','default'),(12763,7024,'_dt_fancy_header_bg_parallax','0.5'),(12764,7024,'_dt_post_options_back_button',''),(12765,7024,'_dt_post_options_hide_thumbnail','0'),(12766,7024,'_dt_post_options_related_mode','same'),(12767,7024,'_dt_post_options_preview','normal'),(12768,7024,'_dt_microsite_page_layout','wide'),(12769,7024,'_dt_microsite_page_loading','enabled'),(12770,7024,'_dt_microsite_primary_menu',''),(12771,7024,'_dt_microsite_split_left_menu',''),(12772,7024,'_dt_microsite_split_right_menu',''),(12773,7024,'_dt_microsite_mobile_menu',''),(12774,7024,'_dt_microsite_logo_link',''),(12775,7024,'main_logo_heading',''),(12776,7024,'_dt_microsite_main_logo_type','default'),(12777,7024,'_dt_microsite_main_logo_regular','a:0:{}'),(12778,7024,'_dt_microsite_main_logo_hd','a:0:{}'),(12779,7024,'transparent_logo_heading',''),(12780,7024,'_dt_microsite_transparent_logo_type','default'),(12781,7024,'_dt_microsite_transparent_logo_regular','a:0:{}'),(12782,7024,'_dt_microsite_transparent_logo_hd','a:0:{}'),(12783,7024,'_dt_microsite_mixed_logo_type','default'),(12784,7024,'_dt_microsite_mixed_logo_regular','a:0:{}'),(12785,7024,'_dt_microsite_mixed_logo_hd','a:0:{}'),(12786,7024,'floating_logo_heading',''),(12787,7024,'_dt_microsite_floating_logo_type','default'),(12788,7024,'_dt_microsite_floating_logo_regular','a:0:{}'),(12789,7024,'_dt_microsite_floating_logo_hd','a:0:{}'),(12790,7024,'_dt_microsite_mobile_logo_type','default'),(12791,7024,'_dt_microsite_mobile_logo_regular','a:0:{}'),(12792,7024,'_dt_microsite_mobile_logo_hd','a:0:{}'),(12793,7024,'_dt_microsite_transparent_mobile_logo_type','default'),(12794,7024,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(12795,7024,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(12796,7024,'bottom_logo_heading',''),(12797,7024,'_dt_microsite_bottom_logo_type','default'),(12798,7024,'_dt_microsite_bottom_logo_regular','a:0:{}'),(12799,7024,'_dt_microsite_bottom_logo_hd','a:0:{}'),(12800,7024,'favicon_heading',''),(12801,7024,'_dt_microsite_favicon_type','default'),(12802,7024,'_dt_microsite_favicon','a:0:{}'),(12803,7024,'_wc_memberships_force_public','no'),(12804,7024,'_wc_memberships_use_custom_post_content_restricted_message','no'),(12805,7024,'_wp_old_slug','what-do-a-good-night-sleep-a-crunchy-mcflurry-an-amazing-learning-experience-have-to-do-with-you'),(12806,10762,'_thumbnail_id','10763'),(12807,10762,'_edit_last','2'),(12808,10762,'_wc_memberships_force_public','no'),(12809,10762,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(12810,10762,'slide_template','default'),(12811,10762,'_wpb_vc_js_status','false'),(12812,10762,'_dt_sidebar_position','right'),(12813,10762,'_dt_sidebar_widgetarea_id','sidebar_1'),(12814,10762,'_dt_sidebar_hide_on_mobile','0'),(12815,10762,'_dt_footer_show','1'),(12816,10762,'_dt_footer_widgetarea_id','sidebar_2'),(12817,10762,'_dt_footer_hide_on_mobile','0'),(12818,10762,'_dt_header_title','enabled'),(12819,10762,'_dt_header_background','normal'),(12820,10762,'_dt_header_background_below_slideshow','disabled'),(12821,10762,'_dt_header_transparent_bg_color_scheme','light'),(12822,10762,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(12823,10762,'_dt_header_transparent_top_bar_bg_opacity','25'),(12824,10762,'_dt_header_transparent_bg_color','#000000'),(12825,10762,'_dt_header_transparent_bg_opacity','50'),(12826,10762,'_dt_header_disabled_background','normal'),(12827,10762,'_dt_header_disabled_transparent_bg_color_scheme','light'),(12828,10762,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(12829,10762,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(12830,10762,'_dt_header_disabled_transparent_bg_color','#000000'),(12831,10762,'_dt_header_disabled_transparent_bg_opacity','50'),(12832,10762,'_dt_page_overrides_top_margin',''),(12833,10762,'_dt_page_overrides_bottom_margin',''),(12834,10762,'_dt_post_options_back_button',''),(12835,10762,'_dt_post_options_hide_thumbnail','0'),(12836,10762,'_dt_post_options_related_mode','same'),(12837,10762,'_dt_post_options_preview','normal'),(12838,10762,'iawp_total_views','1'),(12839,18855,'_edit_last','2'),(12840,18855,'_thumbnail_id','18856'),(12841,18855,'_wp_page_template','default'),(12842,18855,'_dt_page_overrides_right_margin',''),(12843,18855,'_wpb_vc_js_status','false'),(12844,18855,'_wc_memberships_force_public','no'),(12845,18855,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(12846,18855,'_dt_sidebar_position','right'),(12847,18855,'_dt_sidebar_widgetarea_id','sidebar_1'),(12848,18855,'_dt_sidebar_hide_on_mobile','0'),(12849,18855,'_dt_footer_show','1'),(12850,18855,'_dt_footer_widgetarea_id','sidebar_2'),(12851,18855,'_dt_footer_hide_on_mobile','0'),(12852,18855,'_dt_header_title','enabled'),(12853,18855,'_dt_header_background','normal'),(12854,18855,'_dt_header_background_below_slideshow','disabled'),(12855,18855,'_dt_header_transparent_bg_color_scheme','light'),(12856,18855,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(12857,18855,'_dt_header_transparent_top_bar_bg_opacity','25'),(12858,18855,'_dt_header_transparent_bg_color','#000000'),(12859,18855,'_dt_header_transparent_bg_opacity','50'),(12860,18855,'_dt_header_disabled_background','normal'),(12861,18855,'_dt_header_disabled_transparent_bg_color_scheme','light'),(12862,18855,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(12863,18855,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(12864,18855,'_dt_header_disabled_transparent_bg_color','#000000'),(12865,18855,'_dt_header_disabled_transparent_bg_opacity','50'),(12866,18855,'_dt_page_overrides_top_margin',''),(12867,18855,'_dt_page_overrides_bottom_margin',''),(12868,18855,'_dt_post_options_back_button',''),(12869,18855,'_dt_post_options_hide_thumbnail','0'),(12870,18855,'_dt_post_options_related_mode','same'),(12871,18855,'_dt_post_options_preview','normal'),(12872,18855,'_dt_page_overrides_left_margin',''),(12873,18855,'_dt_mobile_page_padding_top',''),(12874,18855,'_dt_mobile_page_padding_right',''),(12875,18855,'_dt_mobile_page_padding_bottom',''),(12876,18855,'_dt_mobile_page_padding_left',''),(12877,18855,'_dt_microsite_primary_menu',''),(12878,18855,'_dt_microsite_split_left_menu',''),(12879,18855,'_dt_microsite_split_right_menu',''),(12880,18855,'_dt_microsite_mobile_menu',''),(12881,18855,'iawp_total_views','47'),(12882,6680,'_edit_last','2'),(12883,6680,'_thumbnail_id','6681'),(12884,6680,'_wp_page_template','default'),(12885,6680,'slide_template','default'),(12886,6680,'_wpb_vc_js_status','false'),(12887,6680,'_dt_sidebar_position','right'),(12888,6680,'_dt_sidebar_widgetarea_id','sidebar_1'),(12889,6680,'_dt_sidebar_hide_on_mobile','0'),(12890,6680,'_dt_footer_show','1'),(12891,6680,'_dt_footer_widgetarea_id','sidebar_2'),(12892,6680,'_dt_footer_hide_on_mobile','0'),(12893,6680,'_dt_header_title','enabled'),(12894,6680,'_dt_header_background','normal'),(12895,6680,'_dt_header_background_below_slideshow','disabled'),(12896,6680,'_dt_header_transparent_bg_color_scheme','light'),(12897,6680,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(12898,6680,'_dt_header_transparent_top_bar_bg_opacity','25'),(12899,6680,'_dt_header_transparent_bg_color','#000000'),(12900,6680,'_dt_header_transparent_bg_opacity','50'),(12901,6680,'_dt_header_disabled_background','normal'),(12902,6680,'_dt_header_disabled_transparent_bg_color','#000000'),(12903,6680,'_dt_header_disabled_transparent_bg_opacity','50'),(12904,6680,'_dt_header_disabled_transparent_bg_color_scheme','light'),(12905,6680,'_dt_page_overrides_top_margin',''),(12906,6680,'_dt_page_overrides_bottom_margin',''),(12907,6680,'_dt_slideshow_mode','porthole'),(12908,6680,'_dt_slideshow_layout','fullwidth'),(12909,6680,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(12910,6680,'_dt_slideshow_scaling','fill'),(12911,6680,'_dt_slideshow_autoplay','paused'),(12912,6680,'_dt_slideshow_autoslide_interval','5000'),(12913,6680,'_dt_slideshow_hide_captions','0'),(12914,6680,'_dt_slideshow_photo_scroller_layout','fullscreen'),(12915,6680,'_dt_slideshow_photo_scroller_bg_color','#000000'),(12916,6680,'_dt_slideshow_photo_scroller_overlay','1'),(12917,6680,'_dt_slideshow_photo_scroller_top_padding','0'),(12918,6680,'_dt_slideshow_photo_scroller_bottom_padding','0'),(12919,6680,'_dt_slideshow_photo_scroller_side_paddings','0'),(12920,6680,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(12921,6680,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(12922,6680,'_dt_slideshow_photo_scroller_thumbnails_width',''),(12923,6680,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(12924,6680,'_dt_slideshow_photo_scroller_autoplay','play'),(12925,6680,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(12926,6680,'fake_id',''),(12927,6680,'_dt_slideshow_photo_scroller_ls_max_width','100'),(12928,6680,'_dt_slideshow_photo_scroller_ls_min_width','0'),(12929,6680,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(12930,6680,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(12931,6680,'_dt_slideshow_photo_scroller_pt_max_width','100'),(12932,6680,'_dt_slideshow_photo_scroller_pt_min_width','0'),(12933,6680,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(12934,6680,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(12935,6680,'_dt_slideshow_revolution_slider','none'),(12936,6680,'_dt_slideshow_layer_slider','none'),(12937,6680,'_dt_slideshow_layer_show_bg_and_paddings','0'),(12938,6680,'_dt_fancy_header_layout_heading',''),(12939,6680,'_dt_fancy_header_title_aligment','center'),(12940,6680,'_dt_fancy_header_height','300'),(12941,6680,'_dt_fancy_header_padding-top','0px'),(12942,6680,'_dt_fancy_header_padding-bottom','0px'),(12943,6680,'_dt_fancy_header_breadcrumbs_heading',''),(12944,6680,'_dt_fancy_header_breadcrumbs','enabled'),(12945,6680,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(12946,6680,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(12947,6680,'_dt_fancy_header_title_heading',''),(12948,6680,'_dt_fancy_header_title_mode','custom'),(12949,6680,'_dt_fancy_header_title',''),(12950,6680,'_dt_fancy_header_title_font_size','30'),(12951,6680,'_dt_fancy_header_title_line_height','36'),(12952,6680,'_dt_fancy_header_uppercase','0'),(12953,6680,'_dt_fancy_header_title_color_mode','color'),(12954,6680,'_dt_fancy_header_title_color','#ffffff'),(12955,6680,'_dt_fancy_header_subtitle_heading',''),(12956,6680,'_dt_fancy_header_subtitle',''),(12957,6680,'_dt_fancy_header_subtitle_font_size','18'),(12958,6680,'_dt_fancy_header_subtitle_line_height','26'),(12959,6680,'_dt_fancy_header_subtitle_uppercase','0'),(12960,6680,'_dt_fancy_header_subtitle_color_mode','color'),(12961,6680,'_dt_fancy_header_subtitle_color','#ffffff'),(12962,6680,'_dt_fancy_header_bg_heading',''),(12963,6680,'_dt_fancy_header_bg_color','#222222'),(12964,6680,'_dt_fancy_header_bg_image','a:0:{}'),(12965,6680,'_dt_fancy_header_bg_repeat','no-repeat'),(12966,6680,'_dt_fancy_header_bg_position_x','center'),(12967,6680,'_dt_fancy_header_bg_position_y','center'),(12968,6680,'_dt_fancy_header_bg_fullscreen','1'),(12969,6680,'_dt_fancy_header_bg_overlay','0'),(12970,6680,'_dt_fancy_header_overlay_color','#000'),(12971,6680,'_dt_fancy_header_bg_overlay_opacity','50'),(12972,6680,'_dt_fancy_header_scroll_effect','default'),(12973,6680,'_dt_fancy_header_bg_parallax','0.5'),(12974,6680,'_dt_post_options_back_button',''),(12975,6680,'_dt_post_options_hide_thumbnail','0'),(12976,6680,'_dt_post_options_related_mode','same'),(12977,6680,'_dt_post_options_preview','normal'),(12978,6680,'_dt_microsite_page_layout','wide'),(12979,6680,'_dt_microsite_page_loading','enabled'),(12980,6680,'_dt_microsite_primary_menu',''),(12981,6680,'_dt_microsite_split_left_menu',''),(12982,6680,'_dt_microsite_split_right_menu',''),(12983,6680,'_dt_microsite_mobile_menu',''),(12984,6680,'_dt_microsite_logo_link',''),(12985,6680,'main_logo_heading',''),(12986,6680,'_dt_microsite_main_logo_type','default'),(12987,6680,'_dt_microsite_main_logo_regular','a:0:{}'),(12988,6680,'_dt_microsite_main_logo_hd','a:0:{}'),(12989,6680,'transparent_logo_heading',''),(12990,6680,'_dt_microsite_transparent_logo_type','default'),(12991,6680,'_dt_microsite_transparent_logo_regular','a:0:{}'),(12992,6680,'_dt_microsite_transparent_logo_hd','a:0:{}'),(12993,6680,'_dt_microsite_mixed_logo_type','default'),(12994,6680,'_dt_microsite_mixed_logo_regular','a:0:{}'),(12995,6680,'_dt_microsite_mixed_logo_hd','a:0:{}'),(12996,6680,'floating_logo_heading',''),(12997,6680,'_dt_microsite_floating_logo_type','default'),(12998,6680,'_dt_microsite_floating_logo_regular','a:0:{}'),(12999,6680,'_dt_microsite_floating_logo_hd','a:0:{}'),(13000,6680,'_dt_microsite_mobile_logo_type','default'),(13001,6680,'_dt_microsite_mobile_logo_regular','a:0:{}'),(13002,6680,'_dt_microsite_mobile_logo_hd','a:0:{}'),(13003,6680,'_dt_microsite_transparent_mobile_logo_type','default'),(13004,6680,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(13005,6680,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(13006,6680,'bottom_logo_heading',''),(13007,6680,'_dt_microsite_bottom_logo_type','default'),(13008,6680,'_dt_microsite_bottom_logo_regular','a:0:{}'),(13009,6680,'_dt_microsite_bottom_logo_hd','a:0:{}'),(13010,6680,'favicon_heading',''),(13011,6680,'_dt_microsite_favicon_type','default'),(13012,6680,'_dt_microsite_favicon','a:0:{}'),(13013,6680,'_wc_memberships_force_public','no'),(13014,6680,'_wc_memberships_use_custom_post_content_restricted_message','no'),(13015,6680,'iawp_total_views','19'),(13016,6769,'_edit_last','2'),(13017,6769,'_thumbnail_id','6771'),(13018,6769,'_wp_page_template','default'),(13019,6769,'slide_template','default'),(13020,6769,'_wpb_vc_js_status','false'),(13021,6769,'_dt_sidebar_position','right'),(13022,6769,'_dt_sidebar_widgetarea_id','sidebar_1'),(13023,6769,'_dt_sidebar_hide_on_mobile','0'),(13024,6769,'_dt_footer_show','1'),(13025,6769,'_dt_footer_widgetarea_id','sidebar_2'),(13026,6769,'_dt_footer_hide_on_mobile','0'),(13027,6769,'_dt_header_title','enabled'),(13028,6769,'_dt_header_background','normal'),(13029,6769,'_dt_header_background_below_slideshow','disabled'),(13030,6769,'_dt_header_transparent_bg_color_scheme','light'),(13031,6769,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(13032,6769,'_dt_header_transparent_top_bar_bg_opacity','25'),(13033,6769,'_dt_header_transparent_bg_color','#000000'),(13034,6769,'_dt_header_transparent_bg_opacity','50'),(13035,6769,'_dt_header_disabled_background','normal'),(13036,6769,'_dt_header_disabled_transparent_bg_color','#000000'),(13037,6769,'_dt_header_disabled_transparent_bg_opacity','50'),(13038,6769,'_dt_header_disabled_transparent_bg_color_scheme','light'),(13039,6769,'_dt_page_overrides_top_margin',''),(13040,6769,'_dt_page_overrides_bottom_margin',''),(13041,6769,'_dt_slideshow_mode','porthole'),(13042,6769,'_dt_slideshow_layout','fullwidth'),(13043,6769,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(13044,6769,'_dt_slideshow_scaling','fill'),(13045,6769,'_dt_slideshow_autoplay','paused'),(13046,6769,'_dt_slideshow_autoslide_interval','5000'),(13047,6769,'_dt_slideshow_hide_captions','0'),(13048,6769,'_dt_slideshow_photo_scroller_layout','fullscreen'),(13049,6769,'_dt_slideshow_photo_scroller_bg_color','#000000'),(13050,6769,'_dt_slideshow_photo_scroller_overlay','1'),(13051,6769,'_dt_slideshow_photo_scroller_top_padding','0'),(13052,6769,'_dt_slideshow_photo_scroller_bottom_padding','0'),(13053,6769,'_dt_slideshow_photo_scroller_side_paddings','0'),(13054,6769,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(13055,6769,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(13056,6769,'_dt_slideshow_photo_scroller_thumbnails_width',''),(13057,6769,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(13058,6769,'_dt_slideshow_photo_scroller_autoplay','play'),(13059,6769,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(13060,6769,'fake_id',''),(13061,6769,'_dt_slideshow_photo_scroller_ls_max_width','100'),(13062,6769,'_dt_slideshow_photo_scroller_ls_min_width','0'),(13063,6769,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(13064,6769,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(13065,6769,'_dt_slideshow_photo_scroller_pt_max_width','100'),(13066,6769,'_dt_slideshow_photo_scroller_pt_min_width','0'),(13067,6769,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(13068,6769,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(13069,6769,'_dt_slideshow_revolution_slider','none'),(13070,6769,'_dt_slideshow_layer_slider','none'),(13071,6769,'_dt_slideshow_layer_show_bg_and_paddings','0'),(13072,6769,'_dt_fancy_header_layout_heading',''),(13073,6769,'_dt_fancy_header_title_aligment','center'),(13074,6769,'_dt_fancy_header_height','300'),(13075,6769,'_dt_fancy_header_padding-top','0px'),(13076,6769,'_dt_fancy_header_padding-bottom','0px'),(13077,6769,'_dt_fancy_header_breadcrumbs_heading',''),(13078,6769,'_dt_fancy_header_breadcrumbs','enabled'),(13079,6769,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(13080,6769,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(13081,6769,'_dt_fancy_header_title_heading',''),(13082,6769,'_dt_fancy_header_title_mode','custom'),(13083,6769,'_dt_fancy_header_title',''),(13084,6769,'_dt_fancy_header_title_font_size','30'),(13085,6769,'_dt_fancy_header_title_line_height','36'),(13086,6769,'_dt_fancy_header_uppercase','0'),(13087,6769,'_dt_fancy_header_title_color_mode','color'),(13088,6769,'_dt_fancy_header_title_color','#ffffff'),(13089,6769,'_dt_fancy_header_subtitle_heading',''),(13090,6769,'_dt_fancy_header_subtitle',''),(13091,6769,'_dt_fancy_header_subtitle_font_size','18'),(13092,6769,'_dt_fancy_header_subtitle_line_height','26'),(13093,6769,'_dt_fancy_header_subtitle_uppercase','0'),(13094,6769,'_dt_fancy_header_subtitle_color_mode','color'),(13095,6769,'_dt_fancy_header_subtitle_color','#ffffff'),(13096,6769,'_dt_fancy_header_bg_heading',''),(13097,6769,'_dt_fancy_header_bg_color','#222222'),(13098,6769,'_dt_fancy_header_bg_image','a:0:{}'),(13099,6769,'_dt_fancy_header_bg_repeat','no-repeat'),(13100,6769,'_dt_fancy_header_bg_position_x','center'),(13101,6769,'_dt_fancy_header_bg_position_y','center'),(13102,6769,'_dt_fancy_header_bg_fullscreen','1'),(13103,6769,'_dt_fancy_header_bg_overlay','0'),(13104,6769,'_dt_fancy_header_overlay_color','#000'),(13105,6769,'_dt_fancy_header_bg_overlay_opacity','50'),(13106,6769,'_dt_fancy_header_scroll_effect','default'),(13107,6769,'_dt_fancy_header_bg_parallax','0.5'),(13108,6769,'_dt_post_options_back_button',''),(13109,6769,'_dt_post_options_hide_thumbnail','0'),(13110,6769,'_dt_post_options_related_mode','same'),(13111,6769,'_dt_post_options_preview','normal'),(13112,6769,'_dt_microsite_page_layout','wide'),(13113,6769,'_dt_microsite_page_loading','enabled'),(13114,6769,'_dt_microsite_primary_menu',''),(13115,6769,'_dt_microsite_split_left_menu',''),(13116,6769,'_dt_microsite_split_right_menu',''),(13117,6769,'_dt_microsite_mobile_menu',''),(13118,6769,'_dt_microsite_logo_link',''),(13119,6769,'main_logo_heading',''),(13120,6769,'_dt_microsite_main_logo_type','default'),(13121,6769,'_dt_microsite_main_logo_regular','a:0:{}'),(13122,6769,'_dt_microsite_main_logo_hd','a:0:{}'),(13123,6769,'transparent_logo_heading',''),(13124,6769,'_dt_microsite_transparent_logo_type','default'),(13125,6769,'_dt_microsite_transparent_logo_regular','a:0:{}'),(13126,6769,'_dt_microsite_transparent_logo_hd','a:0:{}'),(13127,6769,'_dt_microsite_mixed_logo_type','default'),(13128,6769,'_dt_microsite_mixed_logo_regular','a:0:{}'),(13129,6769,'_dt_microsite_mixed_logo_hd','a:0:{}'),(13130,6769,'floating_logo_heading',''),(13131,6769,'_dt_microsite_floating_logo_type','default'),(13132,6769,'_dt_microsite_floating_logo_regular','a:0:{}'),(13133,6769,'_dt_microsite_floating_logo_hd','a:0:{}'),(13134,6769,'_dt_microsite_mobile_logo_type','default'),(13135,6769,'_dt_microsite_mobile_logo_regular','a:0:{}'),(13136,6769,'_dt_microsite_mobile_logo_hd','a:0:{}'),(13137,6769,'_dt_microsite_transparent_mobile_logo_type','default'),(13138,6769,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(13139,6769,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(13140,6769,'bottom_logo_heading',''),(13141,6769,'_dt_microsite_bottom_logo_type','default'),(13142,6769,'_dt_microsite_bottom_logo_regular','a:0:{}'),(13143,6769,'_dt_microsite_bottom_logo_hd','a:0:{}'),(13144,6769,'favicon_heading',''),(13145,6769,'_dt_microsite_favicon_type','default'),(13146,6769,'_dt_microsite_favicon','a:0:{}'),(13147,6769,'_wc_memberships_force_public','no'),(13148,6769,'_wc_memberships_use_custom_post_content_restricted_message','no'),(13149,6843,'_edit_last','2'),(13150,6843,'_thumbnail_id','6846'),(13151,6843,'_wp_page_template','default'),(13152,6843,'slide_template','default'),(13153,6843,'_wpb_vc_js_status','false'),(13154,6843,'_dt_sidebar_position','right'),(13155,6843,'_dt_sidebar_widgetarea_id','sidebar_1'),(13156,6843,'_dt_sidebar_hide_on_mobile','0'),(13157,6843,'_dt_footer_show','1'),(13158,6843,'_dt_footer_widgetarea_id','sidebar_2'),(13159,6843,'_dt_footer_hide_on_mobile','0'),(13160,6843,'_dt_header_title','enabled'),(13161,6843,'_dt_header_background','normal'),(13162,6843,'_dt_header_background_below_slideshow','disabled'),(13163,6843,'_dt_header_transparent_bg_color_scheme','light'),(13164,6843,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(13165,6843,'_dt_header_transparent_top_bar_bg_opacity','25'),(13166,6843,'_dt_header_transparent_bg_color','#000000'),(13167,6843,'_dt_header_transparent_bg_opacity','50'),(13168,6843,'_dt_header_disabled_background','normal'),(13169,6843,'_dt_header_disabled_transparent_bg_color','#000000'),(13170,6843,'_dt_header_disabled_transparent_bg_opacity','50'),(13171,6843,'_dt_header_disabled_transparent_bg_color_scheme','light'),(13172,6843,'_dt_page_overrides_top_margin',''),(13173,6843,'_dt_page_overrides_bottom_margin',''),(13174,6843,'_dt_slideshow_mode','porthole'),(13175,6843,'_dt_slideshow_layout','fullwidth'),(13176,6843,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(13177,6843,'_dt_slideshow_scaling','fill'),(13178,6843,'_dt_slideshow_autoplay','paused'),(13179,6843,'_dt_slideshow_autoslide_interval','5000'),(13180,6843,'_dt_slideshow_hide_captions','0'),(13181,6843,'_dt_slideshow_photo_scroller_layout','fullscreen'),(13182,6843,'_dt_slideshow_photo_scroller_bg_color','#000000'),(13183,6843,'_dt_slideshow_photo_scroller_overlay','1'),(13184,6843,'_dt_slideshow_photo_scroller_top_padding','0'),(13185,6843,'_dt_slideshow_photo_scroller_bottom_padding','0'),(13186,6843,'_dt_slideshow_photo_scroller_side_paddings','0'),(13187,6843,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(13188,6843,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(13189,6843,'_dt_slideshow_photo_scroller_thumbnails_width',''),(13190,6843,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(13191,6843,'_dt_slideshow_photo_scroller_autoplay','play'),(13192,6843,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(13193,6843,'fake_id',''),(13194,6843,'_dt_slideshow_photo_scroller_ls_max_width','100'),(13195,6843,'_dt_slideshow_photo_scroller_ls_min_width','0'),(13196,6843,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(13197,6843,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(13198,6843,'_dt_slideshow_photo_scroller_pt_max_width','100'),(13199,6843,'_dt_slideshow_photo_scroller_pt_min_width','0'),(13200,6843,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(13201,6843,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(13202,6843,'_dt_slideshow_revolution_slider','none'),(13203,6843,'_dt_slideshow_layer_slider','none'),(13204,6843,'_dt_slideshow_layer_show_bg_and_paddings','0'),(13205,6843,'_dt_fancy_header_layout_heading',''),(13206,6843,'_dt_fancy_header_title_aligment','center'),(13207,6843,'_dt_fancy_header_height','300'),(13208,6843,'_dt_fancy_header_padding-top','0px'),(13209,6843,'_dt_fancy_header_padding-bottom','0px'),(13210,6843,'_dt_fancy_header_breadcrumbs_heading',''),(13211,6843,'_dt_fancy_header_breadcrumbs','enabled'),(13212,6843,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(13213,6843,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(13214,6843,'_dt_fancy_header_title_heading',''),(13215,6843,'_dt_fancy_header_title_mode','custom'),(13216,6843,'_dt_fancy_header_title',''),(13217,6843,'_dt_fancy_header_title_font_size','30'),(13218,6843,'_dt_fancy_header_title_line_height','36'),(13219,6843,'_dt_fancy_header_uppercase','0'),(13220,6843,'_dt_fancy_header_title_color_mode','color'),(13221,6843,'_dt_fancy_header_title_color','#ffffff'),(13222,6843,'_dt_fancy_header_subtitle_heading',''),(13223,6843,'_dt_fancy_header_subtitle',''),(13224,6843,'_dt_fancy_header_subtitle_font_size','18'),(13225,6843,'_dt_fancy_header_subtitle_line_height','26'),(13226,6843,'_dt_fancy_header_subtitle_uppercase','0'),(13227,6843,'_dt_fancy_header_subtitle_color_mode','color'),(13228,6843,'_dt_fancy_header_subtitle_color','#ffffff'),(13229,6843,'_dt_fancy_header_bg_heading',''),(13230,6843,'_dt_fancy_header_bg_color','#222222'),(13231,6843,'_dt_fancy_header_bg_image','a:0:{}'),(13232,6843,'_dt_fancy_header_bg_repeat','no-repeat'),(13233,6843,'_dt_fancy_header_bg_position_x','center'),(13234,6843,'_dt_fancy_header_bg_position_y','center'),(13235,6843,'_dt_fancy_header_bg_fullscreen','1'),(13236,6843,'_dt_fancy_header_bg_overlay','0'),(13237,6843,'_dt_fancy_header_overlay_color','#000'),(13238,6843,'_dt_fancy_header_bg_overlay_opacity','50'),(13239,6843,'_dt_fancy_header_scroll_effect','default'),(13240,6843,'_dt_fancy_header_bg_parallax','0.5'),(13241,6843,'_dt_post_options_back_button',''),(13242,6843,'_dt_post_options_hide_thumbnail','0'),(13243,6843,'_dt_post_options_related_mode','same'),(13244,6843,'_dt_post_options_preview','normal'),(13245,6843,'_dt_microsite_page_layout','wide'),(13246,6843,'_dt_microsite_page_loading','enabled'),(13247,6843,'_dt_microsite_primary_menu',''),(13248,6843,'_dt_microsite_split_left_menu',''),(13249,6843,'_dt_microsite_split_right_menu',''),(13250,6843,'_dt_microsite_mobile_menu',''),(13251,6843,'_dt_microsite_logo_link',''),(13252,6843,'main_logo_heading',''),(13253,6843,'_dt_microsite_main_logo_type','default'),(13254,6843,'_dt_microsite_main_logo_regular','a:0:{}'),(13255,6843,'_dt_microsite_main_logo_hd','a:0:{}'),(13256,6843,'transparent_logo_heading',''),(13257,6843,'_dt_microsite_transparent_logo_type','default'),(13258,6843,'_dt_microsite_transparent_logo_regular','a:0:{}'),(13259,6843,'_dt_microsite_transparent_logo_hd','a:0:{}'),(13260,6843,'_dt_microsite_mixed_logo_type','default'),(13261,6843,'_dt_microsite_mixed_logo_regular','a:0:{}'),(13262,6843,'_dt_microsite_mixed_logo_hd','a:0:{}'),(13263,6843,'floating_logo_heading',''),(13264,6843,'_dt_microsite_floating_logo_type','default'),(13265,6843,'_dt_microsite_floating_logo_regular','a:0:{}'),(13266,6843,'_dt_microsite_floating_logo_hd','a:0:{}'),(13267,6843,'_dt_microsite_mobile_logo_type','default'),(13268,6843,'_dt_microsite_mobile_logo_regular','a:0:{}'),(13269,6843,'_dt_microsite_mobile_logo_hd','a:0:{}'),(13270,6843,'_dt_microsite_transparent_mobile_logo_type','default'),(13271,6843,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(13272,6843,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(13273,6843,'bottom_logo_heading',''),(13274,6843,'_dt_microsite_bottom_logo_type','default'),(13275,6843,'_dt_microsite_bottom_logo_regular','a:0:{}'),(13276,6843,'_dt_microsite_bottom_logo_hd','a:0:{}'),(13277,6843,'favicon_heading',''),(13278,6843,'_dt_microsite_favicon_type','default'),(13279,6843,'_dt_microsite_favicon','a:0:{}'),(13280,6843,'_wc_memberships_force_public','no'),(13281,6843,'_wc_memberships_use_custom_post_content_restricted_message','no'),(13282,6843,'iawp_total_views','55'),(13283,7098,'_edit_last','2'),(13284,7098,'_thumbnail_id','7099'),(13285,7098,'_wp_page_template','default'),(13286,7098,'slide_template','default'),(13287,7098,'_wpb_vc_js_status','false'),(13288,7098,'_dt_sidebar_position','right'),(13289,7098,'_dt_sidebar_widgetarea_id','sidebar_1'),(13290,7098,'_dt_sidebar_hide_on_mobile','0'),(13291,7098,'_dt_footer_show','1'),(13292,7098,'_dt_footer_widgetarea_id','sidebar_2'),(13293,7098,'_dt_footer_hide_on_mobile','0'),(13294,7098,'_dt_header_title','enabled'),(13295,7098,'_dt_header_background','normal'),(13296,7098,'_dt_header_background_below_slideshow','disabled'),(13297,7098,'_dt_header_transparent_bg_color_scheme','light'),(13298,7098,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(13299,7098,'_dt_header_transparent_top_bar_bg_opacity','25'),(13300,7098,'_dt_header_transparent_bg_color','#000000'),(13301,7098,'_dt_header_transparent_bg_opacity','50'),(13302,7098,'_dt_header_disabled_background','normal'),(13303,7098,'_dt_header_disabled_transparent_bg_color','#000000'),(13304,7098,'_dt_header_disabled_transparent_bg_opacity','50'),(13305,7098,'_dt_header_disabled_transparent_bg_color_scheme','light'),(13306,7098,'_dt_page_overrides_top_margin',''),(13307,7098,'_dt_page_overrides_bottom_margin',''),(13308,7098,'_dt_slideshow_mode','porthole'),(13309,7098,'_dt_slideshow_layout','fullwidth'),(13310,7098,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(13311,7098,'_dt_slideshow_scaling','fill'),(13312,7098,'_dt_slideshow_autoplay','paused'),(13313,7098,'_dt_slideshow_autoslide_interval','5000'),(13314,7098,'_dt_slideshow_hide_captions','0'),(13315,7098,'_dt_slideshow_photo_scroller_layout','fullscreen'),(13316,7098,'_dt_slideshow_photo_scroller_bg_color','#000000'),(13317,7098,'_dt_slideshow_photo_scroller_overlay','1'),(13318,7098,'_dt_slideshow_photo_scroller_top_padding','0'),(13319,7098,'_dt_slideshow_photo_scroller_bottom_padding','0'),(13320,7098,'_dt_slideshow_photo_scroller_side_paddings','0'),(13321,7098,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(13322,7098,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(13323,7098,'_dt_slideshow_photo_scroller_thumbnails_width',''),(13324,7098,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(13325,7098,'_dt_slideshow_photo_scroller_autoplay','play'),(13326,7098,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(13327,7098,'fake_id',''),(13328,7098,'_dt_slideshow_photo_scroller_ls_max_width','100'),(13329,7098,'_dt_slideshow_photo_scroller_ls_min_width','0'),(13330,7098,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(13331,7098,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(13332,7098,'_dt_slideshow_photo_scroller_pt_max_width','100'),(13333,7098,'_dt_slideshow_photo_scroller_pt_min_width','0'),(13334,7098,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(13335,7098,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(13336,7098,'_dt_slideshow_revolution_slider','none'),(13337,7098,'_dt_slideshow_layer_slider','none'),(13338,7098,'_dt_slideshow_layer_show_bg_and_paddings','0'),(13339,7098,'_dt_fancy_header_layout_heading',''),(13340,7098,'_dt_fancy_header_title_aligment','center'),(13341,7098,'_dt_fancy_header_height','300'),(13342,7098,'_dt_fancy_header_padding-top','0px'),(13343,7098,'_dt_fancy_header_padding-bottom','0px'),(13344,7098,'_dt_fancy_header_breadcrumbs_heading',''),(13345,7098,'_dt_fancy_header_breadcrumbs','enabled'),(13346,7098,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(13347,7098,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(13348,7098,'_dt_fancy_header_title_heading',''),(13349,7098,'_dt_fancy_header_title_mode','custom'),(13350,7098,'_dt_fancy_header_title',''),(13351,7098,'_dt_fancy_header_title_font_size','30'),(13352,7098,'_dt_fancy_header_title_line_height','36'),(13353,7098,'_dt_fancy_header_uppercase','0'),(13354,7098,'_dt_fancy_header_title_color_mode','color'),(13355,7098,'_dt_fancy_header_title_color','#ffffff'),(13356,7098,'_dt_fancy_header_subtitle_heading',''),(13357,7098,'_dt_fancy_header_subtitle',''),(13358,7098,'_dt_fancy_header_subtitle_font_size','18'),(13359,7098,'_dt_fancy_header_subtitle_line_height','26'),(13360,7098,'_dt_fancy_header_subtitle_uppercase','0'),(13361,7098,'_dt_fancy_header_subtitle_color_mode','color'),(13362,7098,'_dt_fancy_header_subtitle_color','#ffffff'),(13363,7098,'_dt_fancy_header_bg_heading',''),(13364,7098,'_dt_fancy_header_bg_color','#222222'),(13365,7098,'_dt_fancy_header_bg_image','a:0:{}'),(13366,7098,'_dt_fancy_header_bg_repeat','no-repeat'),(13367,7098,'_dt_fancy_header_bg_position_x','center'),(13368,7098,'_dt_fancy_header_bg_position_y','center'),(13369,7098,'_dt_fancy_header_bg_fullscreen','1'),(13370,7098,'_dt_fancy_header_bg_overlay','0'),(13371,7098,'_dt_fancy_header_overlay_color','#000'),(13372,7098,'_dt_fancy_header_bg_overlay_opacity','50'),(13373,7098,'_dt_fancy_header_scroll_effect','default'),(13374,7098,'_dt_fancy_header_bg_parallax','0.5'),(13375,7098,'_dt_post_options_back_button',''),(13376,7098,'_dt_post_options_hide_thumbnail','0'),(13377,7098,'_dt_post_options_related_mode','same'),(13378,7098,'_dt_post_options_preview','normal'),(13379,7098,'_dt_microsite_page_layout','wide'),(13380,7098,'_dt_microsite_page_loading','enabled'),(13381,7098,'_dt_microsite_primary_menu',''),(13382,7098,'_dt_microsite_split_left_menu',''),(13383,7098,'_dt_microsite_split_right_menu',''),(13384,7098,'_dt_microsite_mobile_menu',''),(13385,7098,'_dt_microsite_logo_link',''),(13386,7098,'main_logo_heading',''),(13387,7098,'_dt_microsite_main_logo_type','default'),(13388,7098,'_dt_microsite_main_logo_regular','a:0:{}'),(13389,7098,'_dt_microsite_main_logo_hd','a:0:{}'),(13390,7098,'transparent_logo_heading',''),(13391,7098,'_dt_microsite_transparent_logo_type','default'),(13392,7098,'_dt_microsite_transparent_logo_regular','a:0:{}'),(13393,7098,'_dt_microsite_transparent_logo_hd','a:0:{}'),(13394,7098,'_dt_microsite_mixed_logo_type','default'),(13395,7098,'_dt_microsite_mixed_logo_regular','a:0:{}'),(13396,7098,'_dt_microsite_mixed_logo_hd','a:0:{}'),(13397,7098,'floating_logo_heading',''),(13398,7098,'_dt_microsite_floating_logo_type','default'),(13399,7098,'_dt_microsite_floating_logo_regular','a:0:{}'),(13400,7098,'_dt_microsite_floating_logo_hd','a:0:{}'),(13401,7098,'_dt_microsite_mobile_logo_type','default'),(13402,7098,'_dt_microsite_mobile_logo_regular','a:0:{}'),(13403,7098,'_dt_microsite_mobile_logo_hd','a:0:{}'),(13404,7098,'_dt_microsite_transparent_mobile_logo_type','default'),(13405,7098,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(13406,7098,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(13407,7098,'bottom_logo_heading',''),(13408,7098,'_dt_microsite_bottom_logo_type','default'),(13409,7098,'_dt_microsite_bottom_logo_regular','a:0:{}'),(13410,7098,'_dt_microsite_bottom_logo_hd','a:0:{}'),(13411,7098,'favicon_heading',''),(13412,7098,'_dt_microsite_favicon_type','default'),(13413,7098,'_dt_microsite_favicon','a:0:{}'),(13414,7098,'_wc_memberships_force_public','no'),(13415,7098,'_wc_memberships_use_custom_post_content_restricted_message','no'),(13416,7297,'_oembed_6f744d70553ae89fd391c92a187dec5e','<iframe width=\"850\" height=\"478\" src=\"https://www.youtube.com/embed/la6jOLuMSiU?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(13417,7297,'_oembed_time_6f744d70553ae89fd391c92a187dec5e','1528702665'),(13418,7297,'_edit_last','2'),(13419,7297,'_wp_page_template','default'),(13420,7297,'slide_template','default'),(13421,7297,'_wpb_vc_js_status','false'),(13422,7297,'_dt_sidebar_position','right'),(13423,7297,'_dt_sidebar_widgetarea_id','sidebar_1'),(13424,7297,'_dt_sidebar_hide_on_mobile','0'),(13425,7297,'_dt_footer_show','1'),(13426,7297,'_dt_footer_widgetarea_id','sidebar_2'),(13427,7297,'_dt_footer_hide_on_mobile','0'),(13428,7297,'_dt_header_title','enabled'),(13429,7297,'_dt_header_background','normal'),(13430,7297,'_dt_header_background_below_slideshow','disabled'),(13431,7297,'_dt_header_transparent_bg_color_scheme','light'),(13432,7297,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(13433,7297,'_dt_header_transparent_top_bar_bg_opacity','25'),(13434,7297,'_dt_header_transparent_bg_color','#000000'),(13435,7297,'_dt_header_transparent_bg_opacity','50'),(13436,7297,'_dt_header_disabled_background','normal'),(13437,7297,'_dt_header_disabled_transparent_bg_color_scheme','light'),(13438,7297,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(13439,7297,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(13440,7297,'_dt_header_disabled_transparent_bg_color','#000000'),(13441,7297,'_dt_header_disabled_transparent_bg_opacity','50'),(13442,7297,'_dt_page_overrides_top_margin',''),(13443,7297,'_dt_page_overrides_bottom_margin',''),(13444,7297,'_dt_slideshow_mode','porthole'),(13445,7297,'_dt_slideshow_layout','fullwidth'),(13446,7297,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(13447,7297,'_dt_slideshow_scaling','fill'),(13448,7297,'_dt_slideshow_autoplay','paused'),(13449,7297,'_dt_slideshow_autoslide_interval','5000'),(13450,7297,'_dt_slideshow_hide_captions','0'),(13451,7297,'_dt_slideshow_photo_scroller_layout','fullscreen'),(13452,7297,'_dt_slideshow_photo_scroller_bg_color','#000000'),(13453,7297,'_dt_slideshow_photo_scroller_overlay','1'),(13454,7297,'_dt_slideshow_photo_scroller_top_padding','0'),(13455,7297,'_dt_slideshow_photo_scroller_bottom_padding','0'),(13456,7297,'_dt_slideshow_photo_scroller_side_paddings','0'),(13457,7297,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(13458,7297,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(13459,7297,'_dt_slideshow_photo_scroller_thumbnails_width',''),(13460,7297,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(13461,7297,'_dt_slideshow_photo_scroller_autoplay','play'),(13462,7297,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(13463,7297,'fake_id',''),(13464,7297,'_dt_slideshow_photo_scroller_ls_max_width','100'),(13465,7297,'_dt_slideshow_photo_scroller_ls_min_width','0'),(13466,7297,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(13467,7297,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(13468,7297,'_dt_slideshow_photo_scroller_pt_max_width','100'),(13469,7297,'_dt_slideshow_photo_scroller_pt_min_width','0'),(13470,7297,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(13471,7297,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(13472,7297,'_dt_slideshow_revolution_slider','none'),(13473,7297,'_dt_slideshow_layer_slider','none'),(13474,7297,'_dt_slideshow_layer_show_bg_and_paddings','0'),(13475,7297,'_dt_fancy_header_layout_heading',''),(13476,7297,'_dt_fancy_header_title_aligment','center'),(13477,7297,'_dt_fancy_header_height','300'),(13478,7297,'_dt_fancy_header_padding-top','0px'),(13479,7297,'_dt_fancy_header_padding-bottom','0px'),(13480,7297,'_dt_fancy_header_breadcrumbs_heading',''),(13481,7297,'_dt_fancy_header_breadcrumbs','enabled'),(13482,7297,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(13483,7297,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(13484,7297,'_dt_fancy_header_title_heading',''),(13485,7297,'_dt_fancy_header_title_mode','custom'),(13486,7297,'_dt_fancy_header_title',''),(13487,7297,'_dt_fancy_header_title_font_size','30'),(13488,7297,'_dt_fancy_header_title_line_height','36'),(13489,7297,'_dt_fancy_header_uppercase','0'),(13490,7297,'_dt_fancy_header_title_color_mode','color'),(13491,7297,'_dt_fancy_header_title_color','#ffffff'),(13492,7297,'_dt_fancy_header_subtitle_heading',''),(13493,7297,'_dt_fancy_header_subtitle',''),(13494,7297,'_dt_fancy_header_subtitle_font_size','18'),(13495,7297,'_dt_fancy_header_subtitle_line_height','26'),(13496,7297,'_dt_fancy_header_subtitle_uppercase','0'),(13497,7297,'_dt_fancy_header_subtitle_color_mode','color'),(13498,7297,'_dt_fancy_header_subtitle_color','#ffffff'),(13499,7297,'_dt_fancy_header_bg_heading',''),(13500,7297,'_dt_fancy_header_bg_color','#222222'),(13501,7297,'_dt_fancy_header_bg_image','a:0:{}'),(13502,7297,'_dt_fancy_header_bg_repeat','no-repeat'),(13503,7297,'_dt_fancy_header_bg_position_x','center'),(13504,7297,'_dt_fancy_header_bg_position_y','center'),(13505,7297,'_dt_fancy_header_bg_fullscreen','1'),(13506,7297,'_dt_fancy_header_bg_overlay','0'),(13507,7297,'_dt_fancy_header_overlay_color','#000'),(13508,7297,'_dt_fancy_header_bg_overlay_opacity','50'),(13509,7297,'_dt_fancy_header_scroll_effect','default'),(13510,7297,'_dt_fancy_header_bg_parallax','0.5'),(13511,7297,'_dt_post_options_back_button',''),(13512,7297,'_dt_post_options_hide_thumbnail','0'),(13513,7297,'_dt_post_options_related_mode','same'),(13514,7297,'_dt_post_options_preview','normal'),(13515,7297,'_dt_microsite_page_layout','wide'),(13516,7297,'_dt_microsite_page_loading','enabled'),(13517,7297,'_dt_microsite_primary_menu',''),(13518,7297,'_dt_microsite_split_left_menu',''),(13519,7297,'_dt_microsite_split_right_menu',''),(13520,7297,'_dt_microsite_mobile_menu',''),(13521,7297,'_dt_microsite_logo_link',''),(13522,7297,'main_logo_heading',''),(13523,7297,'_dt_microsite_main_logo_type','default'),(13524,7297,'_dt_microsite_main_logo_regular','a:0:{}'),(13525,7297,'_dt_microsite_main_logo_hd','a:0:{}'),(13526,7297,'transparent_logo_heading',''),(13527,7297,'_dt_microsite_transparent_logo_type','default'),(13528,7297,'_dt_microsite_transparent_logo_regular','a:0:{}'),(13529,7297,'_dt_microsite_transparent_logo_hd','a:0:{}'),(13530,7297,'_dt_microsite_mixed_logo_type','default'),(13531,7297,'_dt_microsite_mixed_logo_regular','a:0:{}'),(13532,7297,'_dt_microsite_mixed_logo_hd','a:0:{}'),(13533,7297,'floating_logo_heading',''),(13534,7297,'_dt_microsite_floating_logo_type','default'),(13535,7297,'_dt_microsite_floating_logo_regular','a:0:{}'),(13536,7297,'_dt_microsite_floating_logo_hd','a:0:{}'),(13537,7297,'_dt_microsite_mobile_logo_type','default'),(13538,7297,'_dt_microsite_mobile_logo_regular','a:0:{}'),(13539,7297,'_dt_microsite_mobile_logo_hd','a:0:{}'),(13540,7297,'_dt_microsite_transparent_mobile_logo_type','default'),(13541,7297,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(13542,7297,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(13543,7297,'bottom_logo_heading',''),(13544,7297,'_dt_microsite_bottom_logo_type','default'),(13545,7297,'_dt_microsite_bottom_logo_regular','a:0:{}'),(13546,7297,'_dt_microsite_bottom_logo_hd','a:0:{}'),(13547,7297,'favicon_heading',''),(13548,7297,'_dt_microsite_favicon_type','default'),(13549,7297,'_dt_microsite_favicon','a:0:{}'),(13550,7297,'_wc_memberships_force_public','no'),(13551,7297,'_wc_memberships_use_custom_post_content_restricted_message','no'),(13552,7297,'_thumbnail_id','7303'),(13553,7297,'_oembed_12d4cd88208c55afbf572658e2493a91','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/la6jOLuMSiU?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(13554,7297,'_oembed_time_12d4cd88208c55afbf572658e2493a91','1528130728'),(13555,7474,'slide_template','default'),(13556,7474,'_wp_page_template','default'),(13557,7474,'_edit_last','2'),(13558,7474,'_wpb_vc_js_status','false'),(13559,7474,'_dt_sidebar_position','right'),(13560,7474,'_dt_sidebar_widgetarea_id','sidebar_1'),(13561,7474,'_dt_sidebar_hide_on_mobile','0'),(13562,7474,'_dt_footer_show','1'),(13563,7474,'_dt_footer_widgetarea_id','sidebar_2'),(13564,7474,'_dt_footer_hide_on_mobile','0'),(13565,7474,'_dt_header_title','enabled'),(13566,7474,'_dt_header_background','normal'),(13567,7474,'_dt_header_background_below_slideshow','disabled'),(13568,7474,'_dt_header_transparent_bg_color_scheme','light'),(13569,7474,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(13570,7474,'_dt_header_transparent_top_bar_bg_opacity','25'),(13571,7474,'_dt_header_transparent_bg_color','#000000'),(13572,7474,'_dt_header_transparent_bg_opacity','50'),(13573,7474,'_dt_header_disabled_background','normal'),(13574,7474,'_dt_header_disabled_transparent_bg_color_scheme','light'),(13575,7474,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(13576,7474,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(13577,7474,'_dt_header_disabled_transparent_bg_color','#000000'),(13578,7474,'_dt_header_disabled_transparent_bg_opacity','50'),(13579,7474,'_dt_page_overrides_top_margin',''),(13580,7474,'_dt_page_overrides_bottom_margin',''),(13581,7474,'_dt_slideshow_mode','porthole'),(13582,7474,'_dt_slideshow_layout','fullwidth'),(13583,7474,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(13584,7474,'_dt_slideshow_scaling','fill'),(13585,7474,'_dt_slideshow_autoplay','paused'),(13586,7474,'_dt_slideshow_autoslide_interval','5000'),(13587,7474,'_dt_slideshow_hide_captions','0'),(13588,7474,'_dt_slideshow_photo_scroller_layout','fullscreen'),(13589,7474,'_dt_slideshow_photo_scroller_bg_color','#000000'),(13590,7474,'_dt_slideshow_photo_scroller_overlay','1'),(13591,7474,'_dt_slideshow_photo_scroller_top_padding','0'),(13592,7474,'_dt_slideshow_photo_scroller_bottom_padding','0'),(13593,7474,'_dt_slideshow_photo_scroller_side_paddings','0'),(13594,7474,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(13595,7474,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(13596,7474,'_dt_slideshow_photo_scroller_thumbnails_width',''),(13597,7474,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(13598,7474,'_dt_slideshow_photo_scroller_autoplay','play'),(13599,7474,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(13600,7474,'fake_id',''),(13601,7474,'_dt_slideshow_photo_scroller_ls_max_width','100'),(13602,7474,'_dt_slideshow_photo_scroller_ls_min_width','0'),(13603,7474,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(13604,7474,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(13605,7474,'_dt_slideshow_photo_scroller_pt_max_width','100'),(13606,7474,'_dt_slideshow_photo_scroller_pt_min_width','0'),(13607,7474,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(13608,7474,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(13609,7474,'_dt_slideshow_revolution_slider','none'),(13610,7474,'_dt_slideshow_layer_slider','none'),(13611,7474,'_dt_slideshow_layer_show_bg_and_paddings','0'),(13612,7474,'_dt_fancy_header_layout_heading',''),(13613,7474,'_dt_fancy_header_title_aligment','center'),(13614,7474,'_dt_fancy_header_height','300'),(13615,7474,'_dt_fancy_header_padding-top','0px'),(13616,7474,'_dt_fancy_header_padding-bottom','0px'),(13617,7474,'_dt_fancy_header_breadcrumbs_heading',''),(13618,7474,'_dt_fancy_header_breadcrumbs','enabled'),(13619,7474,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(13620,7474,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(13621,7474,'_dt_fancy_header_title_heading',''),(13622,7474,'_dt_fancy_header_title_mode','custom'),(13623,7474,'_dt_fancy_header_title',''),(13624,7474,'_dt_fancy_header_title_font_size','30'),(13625,7474,'_dt_fancy_header_title_line_height','36'),(13626,7474,'_dt_fancy_header_uppercase','0'),(13627,7474,'_dt_fancy_header_title_color_mode','color'),(13628,7474,'_dt_fancy_header_title_color','#ffffff'),(13629,7474,'_dt_fancy_header_subtitle_heading',''),(13630,7474,'_dt_fancy_header_subtitle',''),(13631,7474,'_dt_fancy_header_subtitle_font_size','18'),(13632,7474,'_dt_fancy_header_subtitle_line_height','26'),(13633,7474,'_dt_fancy_header_subtitle_uppercase','0'),(13634,7474,'_dt_fancy_header_subtitle_color_mode','color'),(13635,7474,'_dt_fancy_header_subtitle_color','#ffffff'),(13636,7474,'_dt_fancy_header_bg_heading',''),(13637,7474,'_dt_fancy_header_bg_color','#222222'),(13638,7474,'_dt_fancy_header_bg_image','a:0:{}'),(13639,7474,'_dt_fancy_header_bg_repeat','no-repeat'),(13640,7474,'_dt_fancy_header_bg_position_x','center'),(13641,7474,'_dt_fancy_header_bg_position_y','center'),(13642,7474,'_dt_fancy_header_bg_fullscreen','1'),(13643,7474,'_dt_fancy_header_bg_overlay','0'),(13644,7474,'_dt_fancy_header_overlay_color','#000'),(13645,7474,'_dt_fancy_header_bg_overlay_opacity','50'),(13646,7474,'_dt_fancy_header_scroll_effect','default'),(13647,7474,'_dt_fancy_header_bg_parallax','0.5'),(13648,7474,'_dt_post_options_back_button',''),(13649,7474,'_dt_post_options_hide_thumbnail','0'),(13650,7474,'_dt_post_options_related_mode','same'),(13651,7474,'_dt_post_options_preview','normal'),(13652,7474,'_dt_microsite_page_layout','wide'),(13653,7474,'_dt_microsite_page_loading','enabled'),(13654,7474,'_dt_microsite_primary_menu',''),(13655,7474,'_dt_microsite_split_left_menu',''),(13656,7474,'_dt_microsite_split_right_menu',''),(13657,7474,'_dt_microsite_mobile_menu',''),(13658,7474,'_dt_microsite_logo_link',''),(13659,7474,'main_logo_heading',''),(13660,7474,'_dt_microsite_main_logo_type','default'),(13661,7474,'_dt_microsite_main_logo_regular','a:0:{}'),(13662,7474,'_dt_microsite_main_logo_hd','a:0:{}'),(13663,7474,'transparent_logo_heading',''),(13664,7474,'_dt_microsite_transparent_logo_type','default'),(13665,7474,'_dt_microsite_transparent_logo_regular','a:0:{}'),(13666,7474,'_dt_microsite_transparent_logo_hd','a:0:{}'),(13667,7474,'_dt_microsite_mixed_logo_type','default'),(13668,7474,'_dt_microsite_mixed_logo_regular','a:0:{}'),(13669,7474,'_dt_microsite_mixed_logo_hd','a:0:{}'),(13670,7474,'floating_logo_heading',''),(13671,7474,'_dt_microsite_floating_logo_type','default'),(13672,7474,'_dt_microsite_floating_logo_regular','a:0:{}'),(13673,7474,'_dt_microsite_floating_logo_hd','a:0:{}'),(13674,7474,'_dt_microsite_mobile_logo_type','default'),(13675,7474,'_dt_microsite_mobile_logo_regular','a:0:{}'),(13676,7474,'_dt_microsite_mobile_logo_hd','a:0:{}'),(13677,7474,'_dt_microsite_transparent_mobile_logo_type','default'),(13678,7474,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(13679,7474,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(13680,7474,'bottom_logo_heading',''),(13681,7474,'_dt_microsite_bottom_logo_type','default'),(13682,7474,'_dt_microsite_bottom_logo_regular','a:0:{}'),(13683,7474,'_dt_microsite_bottom_logo_hd','a:0:{}'),(13684,7474,'favicon_heading',''),(13685,7474,'_dt_microsite_favicon_type','default'),(13686,7474,'_dt_microsite_favicon','a:0:{}'),(13687,7474,'_wc_memberships_force_public','no'),(13688,7474,'_wc_memberships_use_custom_post_content_restricted_message','no'),(13689,7474,'_thumbnail_id','7476'),(13690,7591,'_edit_last','2'),(13691,7591,'_oembed_c74fc2c390c94a98f8c06fa65df99a43','<iframe width=\"846\" height=\"476\" src=\"https://www.youtube.com/embed/Z7oSs8sxmk0?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(13692,7591,'_oembed_34732e012c65e2f9f2ca643b38f857c8','<iframe width=\"665\" height=\"374\" src=\"https://www.youtube.com/embed/Z7oSs8sxmk0?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(13693,7591,'_oembed_time_ecb9e879b84c5ef87ee43543cb810157','1550398723'),(13694,7591,'_oembed_time_c74fc2c390c94a98f8c06fa65df99a43','1529934872'),(13695,7591,'_oembed_53608792e4398ca7b6c108758a86f049','<iframe width=\"846\" height=\"476\" src=\"https://www.youtube.com/embed/videoseries?list=PLIeUKmcFBY8CbjR7U3vSyxBxPD_XqNI9w\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(13696,7591,'_oembed_time_53608792e4398ca7b6c108758a86f049','1529934968'),(13697,7591,'_thumbnail_id','7592'),(13698,7591,'_wp_page_template','default'),(13699,7591,'slide_template','default'),(13700,7591,'_wpb_vc_js_status','false'),(13701,7591,'_dt_sidebar_position','right'),(13702,7591,'_dt_sidebar_widgetarea_id','sidebar_1'),(13703,7591,'_dt_sidebar_hide_on_mobile','0'),(13704,7591,'_dt_footer_show','1'),(13705,7591,'_dt_footer_widgetarea_id','sidebar_2'),(13706,7591,'_dt_footer_hide_on_mobile','0'),(13707,7591,'_dt_header_title','enabled'),(13708,7591,'_dt_header_background','normal'),(13709,7591,'_dt_header_background_below_slideshow','disabled'),(13710,7591,'_dt_header_transparent_bg_color_scheme','light'),(13711,7591,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(13712,7591,'_dt_header_transparent_top_bar_bg_opacity','25'),(13713,7591,'_dt_header_transparent_bg_color','#000000'),(13714,7591,'_dt_header_transparent_bg_opacity','50'),(13715,7591,'_dt_header_disabled_background','normal'),(13716,7591,'_dt_header_disabled_transparent_bg_color_scheme','light'),(13717,7591,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(13718,7591,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(13719,7591,'_dt_header_disabled_transparent_bg_color','#000000'),(13720,7591,'_dt_header_disabled_transparent_bg_opacity','50'),(13721,7591,'_dt_page_overrides_top_margin',''),(13722,7591,'_dt_page_overrides_bottom_margin',''),(13723,7591,'_dt_post_options_back_button',''),(13724,7591,'_dt_post_options_hide_thumbnail','0'),(13725,7591,'_dt_post_options_related_mode','same'),(13726,7591,'_dt_post_options_preview','normal'),(13727,7591,'_wc_memberships_force_public','no'),(13728,7591,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(13729,7591,'_oembed_60499a316c6351a44e7000a0486198d9','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/Z7oSs8sxmk0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(13730,7591,'_oembed_time_60499a316c6351a44e7000a0486198d9','1550398942'),(13731,7591,'_oembed_4054e1d6b49038c17e656c59b991e1e4','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/videoseries?list=PLIeUKmcFBY8CbjR7U3vSyxBxPD_XqNI9w\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(13732,7591,'_oembed_time_4054e1d6b49038c17e656c59b991e1e4','1529935827'),(13733,7591,'_oembed_0e5e1e34a782329f24bafc8e08e94a4d','<iframe width=\"850\" height=\"478\" src=\"https://www.youtube.com/embed/Z7oSs8sxmk0?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(13734,7591,'_oembed_time_0e5e1e34a782329f24bafc8e08e94a4d','1529935829'),(13735,7591,'_oembed_dcc1d52197e829e37c8d5f8127397156','<iframe width=\"850\" height=\"478\" src=\"https://www.youtube.com/embed/videoseries?list=PLIeUKmcFBY8CbjR7U3vSyxBxPD_XqNI9w\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(13736,7591,'_oembed_time_dcc1d52197e829e37c8d5f8127397156','1529935829'),(13737,7591,'_oembed_time_34732e012c65e2f9f2ca643b38f857c8','1529959315'),(13738,7591,'_oembed_783cb247aa5afb5db253cd1be1ebbdb7','<iframe width=\"665\" height=\"374\" src=\"https://www.youtube.com/embed/videoseries?list=PLIeUKmcFBY8CbjR7U3vSyxBxPD_XqNI9w\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(13739,7591,'_oembed_time_783cb247aa5afb5db253cd1be1ebbdb7','1529959315'),(13740,7591,'_oembed_edc148e3780715b7781ec8b1f4643fdf','<iframe width=\"881\" height=\"496\" src=\"https://www.youtube.com/embed/Z7oSs8sxmk0?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(13741,7591,'_oembed_time_edc148e3780715b7781ec8b1f4643fdf','1530542313'),(13742,7591,'_oembed_ecb9e879b84c5ef87ee43543cb810157','<iframe width=\"770\" height=\"433\" src=\"https://www.youtube.com/embed/Z7oSs8sxmk0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(13743,7845,'_oembed_time_bfca05b2647470bc62851969549c9e9a','1550411562'),(13744,7845,'_oembed_bfca05b2647470bc62851969549c9e9a','<iframe width=\"770\" height=\"433\" src=\"https://www.youtube.com/embed/IHKZ6Jeted0?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(13745,7845,'_edit_last','2'),(13746,7845,'_wp_page_template','default'),(13747,7845,'slide_template','default'),(13748,7845,'_wpb_vc_js_status','false'),(13749,7845,'_dt_sidebar_position','right'),(13750,7845,'_dt_sidebar_widgetarea_id','sidebar_1'),(13751,7845,'_dt_sidebar_hide_on_mobile','0'),(13752,7845,'_dt_footer_show','1'),(13753,7845,'_dt_footer_widgetarea_id','sidebar_2'),(13754,7845,'_dt_footer_hide_on_mobile','0'),(13755,7845,'_dt_header_title','enabled'),(13756,7845,'_dt_header_background','normal'),(13757,7845,'_dt_header_background_below_slideshow','disabled'),(13758,7845,'_dt_header_transparent_bg_color_scheme','light'),(13759,7845,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(13760,7845,'_dt_header_transparent_top_bar_bg_opacity','25'),(13761,7845,'_dt_header_transparent_bg_color','#000000'),(13762,7845,'_dt_header_transparent_bg_opacity','50'),(13763,7845,'_dt_header_disabled_background','normal'),(13764,7845,'_dt_header_disabled_transparent_bg_color_scheme','light'),(13765,7845,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(13766,7845,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(13767,7845,'_dt_header_disabled_transparent_bg_color','#000000'),(13768,7845,'_dt_header_disabled_transparent_bg_opacity','50'),(13769,7845,'_dt_page_overrides_top_margin',''),(13770,7845,'_dt_page_overrides_bottom_margin',''),(13771,7845,'_dt_post_options_back_button',''),(13772,7845,'_dt_post_options_hide_thumbnail','0'),(13773,7845,'_dt_post_options_related_mode','same'),(13774,7845,'_dt_post_options_preview','normal'),(13775,7845,'_wc_memberships_force_public','no'),(13776,7845,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(13777,7845,'_thumbnail_id','7852'),(13778,7845,'_oembed_45a5b98fd33bb4f69dfa7f2c5269da7d','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/IHKZ6Jeted0?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(13779,7845,'_oembed_time_45a5b98fd33bb4f69dfa7f2c5269da7d','1531155580'),(13780,7845,'_oembed_76169761f29216b133530da397fa66cf','<iframe width=\"896\" height=\"504\" src=\"https://www.youtube.com/embed/IHKZ6Jeted0?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(13781,7845,'_oembed_time_76169761f29216b133530da397fa66cf','1531460062'),(13782,7845,'iawp_total_views','15'),(13783,26456,'_edit_last','6'),(13784,26456,'_thumbnail_id','26460'),(13785,26456,'_wp_page_template','default'),(13786,26456,'_wpb_vc_js_status','false'),(13787,26456,'_wc_memberships_force_public','no'),(13788,26456,'_wc_memberships_use_custom_post_content_restricted_message','no'),(13789,26456,'_dt_sidebar_position','right'),(13790,26456,'_dt_sidebar_widgetarea_id','sidebar_1'),(13791,26456,'_dt_sidebar_hide_on_mobile','0'),(13792,26456,'_dt_footer_show','1'),(13793,26456,'_dt_footer_widgetarea_id','sidebar_2'),(13794,26456,'_dt_footer_hide_on_mobile','0'),(13795,26456,'_dt_header_title','enabled'),(13796,26456,'_dt_header_background','normal'),(13797,26456,'_dt_header_background_below_slideshow','disabled'),(13798,26456,'_dt_header_transparent_bg_color_scheme','light'),(13799,26456,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(13800,26456,'_dt_header_transparent_top_bar_bg_opacity','25'),(13801,26456,'_dt_header_transparent_bg_color','#000000'),(13802,26456,'_dt_header_transparent_bg_opacity','50'),(13803,26456,'_dt_header_disabled_background','normal'),(13804,26456,'_dt_header_disabled_transparent_bg_color_scheme','light'),(13805,26456,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(13806,26456,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(13807,26456,'_dt_header_disabled_transparent_bg_color','#000000'),(13808,26456,'_dt_header_disabled_transparent_bg_opacity','50'),(13809,26456,'_dt_page_overrides_top_margin',''),(13810,26456,'_dt_page_overrides_right_margin',''),(13811,26456,'_dt_page_overrides_bottom_margin',''),(13812,26456,'_dt_page_overrides_left_margin',''),(13813,26456,'_dt_mobile_page_padding_top',''),(13814,26456,'_dt_mobile_page_padding_right',''),(13815,26456,'_dt_mobile_page_padding_bottom',''),(13816,26456,'_dt_mobile_page_padding_left',''),(13817,26456,'_dt_post_options_back_button',''),(13818,26456,'_dt_post_options_hide_thumbnail','0'),(13819,26456,'_dt_post_options_related_mode','same'),(13820,26456,'_dt_post_options_preview','normal'),(13821,26456,'_dt_microsite_primary_menu',''),(13822,26456,'_dt_microsite_split_left_menu',''),(13823,26456,'_dt_microsite_split_right_menu',''),(13824,26456,'_dt_microsite_mobile_menu',''),(13825,26456,'_oembed_c5b7c44aa0245e8de03361d3f8f33641','<blockquote class=\"wp-embedded-content\" data-secret=\"bXnvrmqObN\"><a href=\"https://www.worldspineday.org/\">WELCOME TO WORLD SPINE DAY</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;WELCOME TO WORLD SPINE DAY&#8221; &#8212; World Spine Day\" src=\"https://www.worldspineday.org/embed/#?secret=vfc0ZiN4Pp#?secret=bXnvrmqObN\" data-secret=\"bXnvrmqObN\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(13826,26456,'_oembed_time_c5b7c44aa0245e8de03361d3f8f33641','1696569055'),(13827,26456,'_oembed_8de868dc0fd86792c5b4787aec37a3b7','{{unknown}}'),(13828,26456,'iawp_total_views','15'),(13829,7228,'_edit_last','2'),(13830,7228,'_thumbnail_id','7229'),(13831,7228,'_wp_page_template','default'),(13832,7228,'slide_template','default'),(13833,7228,'_wpb_vc_js_status','false'),(13834,7228,'_dt_sidebar_position','right'),(13835,7228,'_dt_sidebar_widgetarea_id','sidebar_1'),(13836,7228,'_dt_sidebar_hide_on_mobile','0'),(13837,7228,'_dt_footer_show','1'),(13838,7228,'_dt_footer_widgetarea_id','sidebar_2'),(13839,7228,'_dt_footer_hide_on_mobile','0'),(13840,7228,'_dt_header_title','enabled'),(13841,7228,'_dt_header_background','normal'),(13842,7228,'_dt_header_background_below_slideshow','disabled'),(13843,7228,'_dt_header_transparent_bg_color_scheme','light'),(13844,7228,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(13845,7228,'_dt_header_transparent_top_bar_bg_opacity','25'),(13846,7228,'_dt_header_transparent_bg_color','#000000'),(13847,7228,'_dt_header_transparent_bg_opacity','50'),(13848,7228,'_dt_header_disabled_background','normal'),(13849,7228,'_dt_header_disabled_transparent_bg_color_scheme','light'),(13850,7228,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(13851,7228,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(13852,7228,'_dt_header_disabled_transparent_bg_color','#000000'),(13853,7228,'_dt_header_disabled_transparent_bg_opacity','50'),(13854,7228,'_dt_page_overrides_top_margin',''),(13855,7228,'_dt_page_overrides_bottom_margin',''),(13856,7228,'_dt_slideshow_mode','porthole'),(13857,7228,'_dt_slideshow_layout','fullwidth'),(13858,7228,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(13859,7228,'_dt_slideshow_scaling','fill'),(13860,7228,'_dt_slideshow_autoplay','paused'),(13861,7228,'_dt_slideshow_autoslide_interval','5000'),(13862,7228,'_dt_slideshow_hide_captions','0'),(13863,7228,'_dt_slideshow_photo_scroller_layout','fullscreen'),(13864,7228,'_dt_slideshow_photo_scroller_bg_color','#000000'),(13865,7228,'_dt_slideshow_photo_scroller_overlay','1'),(13866,7228,'_dt_slideshow_photo_scroller_top_padding','0'),(13867,7228,'_dt_slideshow_photo_scroller_bottom_padding','0'),(13868,7228,'_dt_slideshow_photo_scroller_side_paddings','0'),(13869,7228,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(13870,7228,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(13871,7228,'_dt_slideshow_photo_scroller_thumbnails_width',''),(13872,7228,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(13873,7228,'_dt_slideshow_photo_scroller_autoplay','play'),(13874,7228,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(13875,7228,'fake_id',''),(13876,7228,'_dt_slideshow_photo_scroller_ls_max_width','100'),(13877,7228,'_dt_slideshow_photo_scroller_ls_min_width','0'),(13878,7228,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(13879,7228,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(13880,7228,'_dt_slideshow_photo_scroller_pt_max_width','100'),(13881,7228,'_dt_slideshow_photo_scroller_pt_min_width','0'),(13882,7228,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(13883,7228,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(13884,7228,'_dt_slideshow_revolution_slider','none'),(13885,7228,'_dt_slideshow_layer_slider','none'),(13886,7228,'_dt_slideshow_layer_show_bg_and_paddings','0'),(13887,7228,'_dt_fancy_header_layout_heading',''),(13888,7228,'_dt_fancy_header_title_aligment','center'),(13889,7228,'_dt_fancy_header_height','300'),(13890,7228,'_dt_fancy_header_padding-top','0px'),(13891,7228,'_dt_fancy_header_padding-bottom','0px'),(13892,7228,'_dt_fancy_header_breadcrumbs_heading',''),(13893,7228,'_dt_fancy_header_breadcrumbs','enabled'),(13894,7228,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(13895,7228,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(13896,7228,'_dt_fancy_header_title_heading',''),(13897,7228,'_dt_fancy_header_title_mode','custom'),(13898,7228,'_dt_fancy_header_title',''),(13899,7228,'_dt_fancy_header_title_font_size','30'),(13900,7228,'_dt_fancy_header_title_line_height','36'),(13901,7228,'_dt_fancy_header_uppercase','0'),(13902,7228,'_dt_fancy_header_title_color_mode','color'),(13903,7228,'_dt_fancy_header_title_color','#ffffff'),(13904,7228,'_dt_fancy_header_subtitle_heading',''),(13905,7228,'_dt_fancy_header_subtitle',''),(13906,7228,'_dt_fancy_header_subtitle_font_size','18'),(13907,7228,'_dt_fancy_header_subtitle_line_height','26'),(13908,7228,'_dt_fancy_header_subtitle_uppercase','0'),(13909,7228,'_dt_fancy_header_subtitle_color_mode','color'),(13910,7228,'_dt_fancy_header_subtitle_color','#ffffff'),(13911,7228,'_dt_fancy_header_bg_heading',''),(13912,7228,'_dt_fancy_header_bg_color','#222222'),(13913,7228,'_dt_fancy_header_bg_image','a:0:{}'),(13914,7228,'_dt_fancy_header_bg_repeat','no-repeat'),(13915,7228,'_dt_fancy_header_bg_position_x','center'),(13916,7228,'_dt_fancy_header_bg_position_y','center'),(13917,7228,'_dt_fancy_header_bg_fullscreen','1'),(13918,7228,'_dt_fancy_header_bg_overlay','0'),(13919,7228,'_dt_fancy_header_overlay_color','#000'),(13920,7228,'_dt_fancy_header_bg_overlay_opacity','50'),(13921,7228,'_dt_fancy_header_scroll_effect','default'),(13922,7228,'_dt_fancy_header_bg_parallax','0.5'),(13923,7228,'_dt_post_options_back_button',''),(13924,7228,'_dt_post_options_hide_thumbnail','0'),(13925,7228,'_dt_post_options_related_mode','same'),(13926,7228,'_dt_post_options_preview','normal'),(13927,7228,'_dt_microsite_page_layout','wide'),(13928,7228,'_dt_microsite_page_loading','enabled'),(13929,7228,'_dt_microsite_primary_menu',''),(13930,7228,'_dt_microsite_split_left_menu',''),(13931,7228,'_dt_microsite_split_right_menu',''),(13932,7228,'_dt_microsite_mobile_menu',''),(13933,7228,'_dt_microsite_logo_link',''),(13934,7228,'main_logo_heading',''),(13935,7228,'_dt_microsite_main_logo_type','default'),(13936,7228,'_dt_microsite_main_logo_regular','a:0:{}'),(13937,7228,'_dt_microsite_main_logo_hd','a:0:{}'),(13938,7228,'transparent_logo_heading',''),(13939,7228,'_dt_microsite_transparent_logo_type','default'),(13940,7228,'_dt_microsite_transparent_logo_regular','a:0:{}'),(13941,7228,'_dt_microsite_transparent_logo_hd','a:0:{}'),(13942,7228,'_dt_microsite_mixed_logo_type','default'),(13943,7228,'_dt_microsite_mixed_logo_regular','a:0:{}'),(13944,7228,'_dt_microsite_mixed_logo_hd','a:0:{}'),(13945,7228,'floating_logo_heading',''),(13946,7228,'_dt_microsite_floating_logo_type','default'),(13947,7228,'_dt_microsite_floating_logo_regular','a:0:{}'),(13948,7228,'_dt_microsite_floating_logo_hd','a:0:{}'),(13949,7228,'_dt_microsite_mobile_logo_type','default'),(13950,7228,'_dt_microsite_mobile_logo_regular','a:0:{}'),(13951,7228,'_dt_microsite_mobile_logo_hd','a:0:{}'),(13952,7228,'_dt_microsite_transparent_mobile_logo_type','default'),(13953,7228,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(13954,7228,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(13955,7228,'bottom_logo_heading',''),(13956,7228,'_dt_microsite_bottom_logo_type','default'),(13957,7228,'_dt_microsite_bottom_logo_regular','a:0:{}'),(13958,7228,'_dt_microsite_bottom_logo_hd','a:0:{}'),(13959,7228,'favicon_heading',''),(13960,7228,'_dt_microsite_favicon_type','default'),(13961,7228,'_dt_microsite_favicon','a:0:{}'),(13962,7228,'_wc_memberships_force_public','no'),(13963,7228,'_wc_memberships_use_custom_post_content_restricted_message','no'),(13964,7522,'_edit_last','2'),(13965,7522,'_oembed_abe8d835d06fa2cc8ac4e061e14d65b9','<iframe width=\"846\" height=\"476\" src=\"https://www.youtube.com/embed/juSK5KxCEbg?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(13966,7522,'_oembed_time_abe8d835d06fa2cc8ac4e061e14d65b9','1529306263'),(13967,7522,'_oembed_f13d9336e614d5fd8c20176a6629c26a','{{unknown}}'),(13968,7522,'_thumbnail_id','7523'),(13969,7522,'_wp_page_template','default'),(13970,7522,'slide_template','default'),(13971,7522,'_wpb_vc_js_status','false'),(13972,7522,'_dt_sidebar_position','right'),(13973,7522,'_dt_sidebar_widgetarea_id','sidebar_1'),(13974,7522,'_dt_sidebar_hide_on_mobile','0'),(13975,7522,'_dt_footer_show','1'),(13976,7522,'_dt_footer_widgetarea_id','sidebar_2'),(13977,7522,'_dt_footer_hide_on_mobile','0'),(13978,7522,'_dt_header_title','enabled'),(13979,7522,'_dt_header_background','normal'),(13980,7522,'_dt_header_background_below_slideshow','disabled'),(13981,7522,'_dt_header_transparent_bg_color_scheme','light'),(13982,7522,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(13983,7522,'_dt_header_transparent_top_bar_bg_opacity','25'),(13984,7522,'_dt_header_transparent_bg_color','#000000'),(13985,7522,'_dt_header_transparent_bg_opacity','50'),(13986,7522,'_dt_header_disabled_background','normal'),(13987,7522,'_dt_header_disabled_transparent_bg_color_scheme','light'),(13988,7522,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(13989,7522,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(13990,7522,'_dt_header_disabled_transparent_bg_color','#000000'),(13991,7522,'_dt_header_disabled_transparent_bg_opacity','50'),(13992,7522,'_dt_page_overrides_top_margin',''),(13993,7522,'_dt_page_overrides_bottom_margin',''),(13994,7522,'_dt_post_options_back_button',''),(13995,7522,'_dt_post_options_hide_thumbnail','0'),(13996,7522,'_dt_post_options_related_mode','same'),(13997,7522,'_dt_post_options_preview','normal'),(13998,7522,'_wc_memberships_force_public','no'),(13999,7522,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(14000,7522,'_oembed_6305b8a4004c9e917bf936b9c2f4a1b5','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/juSK5KxCEbg?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14001,7522,'_oembed_time_6305b8a4004c9e917bf936b9c2f4a1b5','1529309521'),(14002,7522,'_oembed_822b5828db1749f96f6b560c62836c05','<iframe width=\"850\" height=\"478\" src=\"https://www.youtube.com/embed/juSK5KxCEbg?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14003,7522,'_oembed_time_822b5828db1749f96f6b560c62836c05','1529309533'),(14004,7522,'_oembed_a0e9f63111749399229fc6e3988da58c','<iframe width=\"938\" height=\"528\" src=\"https://www.youtube.com/embed/juSK5KxCEbg?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14005,7522,'_oembed_time_a0e9f63111749399229fc6e3988da58c','1529319856'),(14006,7522,'_oembed_c27ead1c9a4c012391c65843a6522759','<iframe width=\"1015\" height=\"571\" src=\"https://www.youtube.com/embed/juSK5KxCEbg?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14007,7522,'_oembed_time_c27ead1c9a4c012391c65843a6522759','1529390627'),(14008,7522,'_oembed_21b0ad4e5133eb71ef4da6b15581dc61','<iframe width=\"770\" height=\"433\" src=\"https://www.youtube.com/embed/juSK5KxCEbg?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(14009,7522,'_oembed_time_21b0ad4e5133eb71ef4da6b15581dc61','1550398359'),(14010,7522,'iawp_total_views','93'),(14011,7657,'_wpb_vc_js_status','false'),(14012,7657,'_wp_page_template','default'),(14013,7657,'slide_template','default'),(14014,7657,'_oembed_time_0ee8e5ad3f6083d5f5389d8cf2c79162','1550411364'),(14015,7657,'_edit_last','2'),(14016,7657,'_oembed_0ee8e5ad3f6083d5f5389d8cf2c79162','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/xGmd1gsUhKs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(14017,7657,'_oembed_48183b3d56a7ec3f40a37d91097f9adb','<iframe width=\"896\" height=\"504\" src=\"https://www.youtube.com/embed/xGmd1gsUhKs?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14018,7657,'_oembed_time_3c2f48d93c678ff72cd40855d0e9c772','1550411273'),(14019,7657,'_oembed_3c2f48d93c678ff72cd40855d0e9c772','<iframe width=\"770\" height=\"433\" src=\"https://www.youtube.com/embed/xGmd1gsUhKs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(14020,7657,'_dt_sidebar_position','right'),(14021,7657,'_dt_sidebar_widgetarea_id','sidebar_1'),(14022,7657,'_dt_sidebar_hide_on_mobile','0'),(14023,7657,'_dt_footer_show','1'),(14024,7657,'_dt_footer_widgetarea_id','sidebar_2'),(14025,7657,'_dt_footer_hide_on_mobile','0'),(14026,7657,'_dt_header_title','enabled'),(14027,7657,'_dt_header_background','normal'),(14028,7657,'_dt_header_background_below_slideshow','disabled'),(14029,7657,'_dt_header_transparent_bg_color_scheme','light'),(14030,7657,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14031,7657,'_dt_header_transparent_top_bar_bg_opacity','25'),(14032,7657,'_dt_header_transparent_bg_color','#000000'),(14033,7657,'_dt_header_transparent_bg_opacity','50'),(14034,7657,'_dt_header_disabled_background','normal'),(14035,7657,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14036,7657,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14037,7657,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14038,7657,'_dt_header_disabled_transparent_bg_color','#000000'),(14039,7657,'_dt_header_disabled_transparent_bg_opacity','50'),(14040,7657,'_dt_page_overrides_top_margin',''),(14041,7657,'_dt_page_overrides_bottom_margin',''),(14042,7657,'_dt_post_options_back_button',''),(14043,7657,'_dt_post_options_hide_thumbnail','0'),(14044,7657,'_dt_post_options_related_mode','same'),(14045,7657,'_dt_post_options_preview','normal'),(14046,7657,'_wc_memberships_force_public','no'),(14047,7657,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(14048,7657,'_oembed_09d718387629a58fb6190848fd97be8f','<iframe width=\"881\" height=\"496\" src=\"https://www.youtube.com/embed/xGmd1gsUhKs?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14049,7657,'_oembed_time_09d718387629a58fb6190848fd97be8f','1530537338'),(14050,7657,'_thumbnail_id','7661'),(14051,7657,'_oembed_time_48183b3d56a7ec3f40a37d91097f9adb','1530562155'),(14052,7657,'_oembed_c218b5361becf7f929b81b210dc4bc14','<iframe width=\"1131\" height=\"636\" src=\"https://www.youtube.com/embed/xGmd1gsUhKs?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14053,7657,'_oembed_time_c218b5361becf7f929b81b210dc4bc14','1530565975'),(14054,7920,'_oembed_9d737182d56f1ad24b72116477948feb','<iframe width=\"892\" height=\"502\" src=\"https://www.youtube.com/embed/MLKcc9i5zmE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14055,7920,'_oembed_dd87623f129a121750a4994c4febc053','<iframe width=\"1163\" height=\"654\" src=\"https://www.youtube.com/embed/MLKcc9i5zmE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14056,7920,'_oembed_time_e1f96980f372305e695f1074ec73f336','1550411683'),(14057,7920,'_oembed_e1f96980f372305e695f1074ec73f336','<iframe width=\"770\" height=\"433\" src=\"https://www.youtube.com/embed/MLKcc9i5zmE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(14058,7920,'_edit_last','2'),(14059,7920,'_thumbnail_id','7923'),(14060,7920,'_wp_page_template','default'),(14061,7920,'slide_template','default'),(14062,7920,'_wpb_vc_js_status','false'),(14063,7920,'_dt_sidebar_position','right'),(14064,7920,'_dt_sidebar_widgetarea_id','sidebar_1'),(14065,7920,'_dt_sidebar_hide_on_mobile','0'),(14066,7920,'_dt_footer_show','1'),(14067,7920,'_dt_footer_widgetarea_id','sidebar_2'),(14068,7920,'_dt_footer_hide_on_mobile','0'),(14069,7920,'_dt_header_title','enabled'),(14070,7920,'_dt_header_background','normal'),(14071,7920,'_dt_header_background_below_slideshow','disabled'),(14072,7920,'_dt_header_transparent_bg_color_scheme','light'),(14073,7920,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14074,7920,'_dt_header_transparent_top_bar_bg_opacity','25'),(14075,7920,'_dt_header_transparent_bg_color','#000000'),(14076,7920,'_dt_header_transparent_bg_opacity','50'),(14077,7920,'_dt_header_disabled_background','normal'),(14078,7920,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14079,7920,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14080,7920,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14081,7920,'_dt_header_disabled_transparent_bg_color','#000000'),(14082,7920,'_dt_header_disabled_transparent_bg_opacity','50'),(14083,7920,'_dt_page_overrides_top_margin',''),(14084,7920,'_dt_page_overrides_bottom_margin',''),(14085,7920,'_dt_post_options_back_button',''),(14086,7920,'_dt_post_options_hide_thumbnail','0'),(14087,7920,'_dt_post_options_related_mode','same'),(14088,7920,'_dt_post_options_preview','normal'),(14089,7920,'_wc_memberships_force_public','no'),(14090,7920,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(14091,7920,'_oembed_time_9d737182d56f1ad24b72116477948feb','1531747214'),(14092,7920,'_oembed_2cb748c38ec90507e719b39652cda1bf','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/MLKcc9i5zmE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14093,7920,'_oembed_time_2cb748c38ec90507e719b39652cda1bf','1531747266'),(14094,7920,'_oembed_ae8fc9da9deb5286e94b4e7b538917ea','<iframe width=\"896\" height=\"504\" src=\"https://www.youtube.com/embed/MLKcc9i5zmE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14095,7920,'_oembed_time_ae8fc9da9deb5286e94b4e7b538917ea','1531747266'),(14096,7920,'_oembed_time_dd87623f129a121750a4994c4febc053','1532087628'),(14097,7995,'_oembed_time_ba921b7bdf1029a6aa68022c850e1718','1550411891'),(14098,7995,'_edit_last','2'),(14099,7995,'_wp_page_template','default'),(14100,7995,'slide_template','default'),(14101,7995,'_wpb_vc_js_status','false'),(14102,7995,'_dt_sidebar_position','right'),(14103,7995,'_dt_sidebar_widgetarea_id','sidebar_1'),(14104,7995,'_dt_sidebar_hide_on_mobile','0'),(14105,7995,'_dt_footer_show','1'),(14106,7995,'_dt_footer_widgetarea_id','sidebar_2'),(14107,7995,'_dt_footer_hide_on_mobile','0'),(14108,7995,'_dt_header_title','enabled'),(14109,7995,'_dt_header_background','normal'),(14110,7995,'_dt_header_background_below_slideshow','disabled'),(14111,7995,'_dt_header_transparent_bg_color_scheme','light'),(14112,7995,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14113,7995,'_dt_header_transparent_top_bar_bg_opacity','25'),(14114,7995,'_dt_header_transparent_bg_color','#000000'),(14115,7995,'_dt_header_transparent_bg_opacity','50'),(14116,7995,'_dt_header_disabled_background','normal'),(14117,7995,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14118,7995,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14119,7995,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14120,7995,'_dt_header_disabled_transparent_bg_color','#000000'),(14121,7995,'_dt_header_disabled_transparent_bg_opacity','50'),(14122,7995,'_dt_page_overrides_top_margin',''),(14123,7995,'_dt_page_overrides_bottom_margin',''),(14124,7995,'_dt_post_options_back_button',''),(14125,7995,'_dt_post_options_hide_thumbnail','0'),(14126,7995,'_dt_post_options_related_mode','same'),(14127,7995,'_dt_post_options_preview','normal'),(14128,7995,'_wc_memberships_force_public','no'),(14129,7995,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(14130,7995,'_thumbnail_id','7997'),(14131,7995,'_oembed_7b315a0dcb7783efe414eb3a212fb3cb','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/MhaNa5isxdc?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14132,7995,'_oembed_time_7b315a0dcb7783efe414eb3a212fb3cb','1532351691'),(14133,7995,'_oembed_e5d93559cf68b83aba839493864cbb45','<iframe width=\"920\" height=\"518\" src=\"https://www.youtube.com/embed/MhaNa5isxdc?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14134,7995,'_oembed_time_e5d93559cf68b83aba839493864cbb45','1532376283'),(14135,7995,'_oembed_ba921b7bdf1029a6aa68022c850e1718','<iframe width=\"770\" height=\"433\" src=\"https://www.youtube.com/embed/MhaNa5isxdc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(14136,7995,'_oembed_42c9b6af716e461812332e34eba7f004','<iframe title=\"SQHAT PROJECT A2G PART 6 THE KNEE\" width=\"793\" height=\"446\" src=\"https://www.youtube.com/embed/MhaNa5isxdc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(14137,7995,'_oembed_time_42c9b6af716e461812332e34eba7f004','1560513292'),(14138,7995,'iawp_total_views','8'),(14139,8345,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14140,8345,'_dt_header_transparent_top_bar_bg_opacity','25'),(14141,8345,'_dt_header_background_below_slideshow','disabled'),(14142,8345,'_dt_header_transparent_bg_color_scheme','light'),(14143,8345,'_dt_footer_widgetarea_id','sidebar_2'),(14144,8345,'_dt_footer_hide_on_mobile','0'),(14145,8345,'_dt_header_title','enabled'),(14146,8345,'_dt_header_background','normal'),(14147,8345,'_dt_footer_show','1'),(14148,8345,'_dt_sidebar_hide_on_mobile','0'),(14149,8345,'slide_template','default'),(14150,8345,'_wpb_vc_js_status','false'),(14151,8345,'_dt_sidebar_position','right'),(14152,8345,'_dt_sidebar_widgetarea_id','sidebar_1'),(14153,8345,'_edit_last','2'),(14154,8345,'_wp_page_template','default'),(14155,8345,'_dt_header_transparent_bg_color','#000000'),(14156,8345,'_dt_header_transparent_bg_opacity','50'),(14157,8345,'_dt_header_disabled_background','normal'),(14158,8345,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14159,8345,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14160,8345,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14161,8345,'_dt_header_disabled_transparent_bg_color','#000000'),(14162,8345,'_dt_header_disabled_transparent_bg_opacity','50'),(14163,8345,'_dt_page_overrides_top_margin',''),(14164,8345,'_dt_page_overrides_bottom_margin',''),(14165,8345,'_dt_slideshow_mode','porthole'),(14166,8345,'_dt_slideshow_layout','fullwidth'),(14167,8345,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(14168,8345,'_dt_slideshow_scaling','fill'),(14169,8345,'_dt_slideshow_autoplay','paused'),(14170,8345,'_dt_slideshow_autoslide_interval','5000'),(14171,8345,'_dt_slideshow_hide_captions','0'),(14172,8345,'_dt_slideshow_photo_scroller_layout','fullscreen'),(14173,8345,'_dt_slideshow_photo_scroller_bg_color','#000000'),(14174,8345,'_dt_slideshow_photo_scroller_overlay','1'),(14175,8345,'_dt_slideshow_photo_scroller_top_padding','0'),(14176,8345,'_dt_slideshow_photo_scroller_bottom_padding','0'),(14177,8345,'_dt_slideshow_photo_scroller_side_paddings','0'),(14178,8345,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(14179,8345,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(14180,8345,'_dt_slideshow_photo_scroller_thumbnails_width',''),(14181,8345,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(14182,8345,'_dt_slideshow_photo_scroller_autoplay','play'),(14183,8345,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(14184,8345,'fake_id',''),(14185,8345,'_dt_slideshow_photo_scroller_ls_max_width','100'),(14186,8345,'_dt_slideshow_photo_scroller_ls_min_width','0'),(14187,8345,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(14188,8345,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(14189,8345,'_dt_slideshow_photo_scroller_pt_max_width','100'),(14190,8345,'_dt_slideshow_photo_scroller_pt_min_width','0'),(14191,8345,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(14192,8345,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(14193,8345,'_dt_slideshow_revolution_slider','none'),(14194,8345,'_dt_slideshow_layer_slider','none'),(14195,8345,'_dt_slideshow_layer_show_bg_and_paddings','0'),(14196,8345,'_dt_fancy_header_layout_heading',''),(14197,8345,'_dt_fancy_header_title_aligment','center'),(14198,8345,'_dt_fancy_header_height','300'),(14199,8345,'_dt_fancy_header_padding-top','0px'),(14200,8345,'_dt_fancy_header_padding-bottom','0px'),(14201,8345,'_dt_fancy_header_breadcrumbs_heading',''),(14202,8345,'_dt_fancy_header_breadcrumbs','enabled'),(14203,8345,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(14204,8345,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(14205,8345,'_dt_fancy_header_title_heading',''),(14206,8345,'_dt_fancy_header_title_mode','custom'),(14207,8345,'_dt_fancy_header_title',''),(14208,8345,'_dt_fancy_header_title_font_size','30'),(14209,8345,'_dt_fancy_header_title_line_height','36'),(14210,8345,'_dt_fancy_header_uppercase','0'),(14211,8345,'_dt_fancy_header_title_color_mode','color'),(14212,8345,'_dt_fancy_header_title_color','#ffffff'),(14213,8345,'_dt_fancy_header_subtitle_heading',''),(14214,8345,'_dt_fancy_header_subtitle',''),(14215,8345,'_dt_fancy_header_subtitle_font_size','18'),(14216,8345,'_dt_fancy_header_subtitle_line_height','26'),(14217,8345,'_dt_fancy_header_subtitle_uppercase','0'),(14218,8345,'_dt_fancy_header_subtitle_color_mode','color'),(14219,8345,'_dt_fancy_header_subtitle_color','#ffffff'),(14220,8345,'_dt_fancy_header_bg_heading',''),(14221,8345,'_dt_fancy_header_bg_color','#222222'),(14222,8345,'_dt_fancy_header_bg_image','a:0:{}'),(14223,8345,'_dt_fancy_header_bg_repeat','no-repeat'),(14224,8345,'_dt_fancy_header_bg_position_x','center'),(14225,8345,'_dt_fancy_header_bg_position_y','center'),(14226,8345,'_dt_fancy_header_bg_fullscreen','1'),(14227,8345,'_dt_fancy_header_bg_overlay','0'),(14228,8345,'_dt_fancy_header_overlay_color','#000'),(14229,8345,'_dt_fancy_header_bg_overlay_opacity','50'),(14230,8345,'_dt_fancy_header_scroll_effect','default'),(14231,8345,'_dt_fancy_header_bg_parallax','0.5'),(14232,8345,'_dt_post_options_back_button',''),(14233,8345,'_dt_post_options_hide_thumbnail','0'),(14234,8345,'_dt_post_options_related_mode','same'),(14235,8345,'_dt_post_options_preview','normal'),(14236,8345,'_dt_microsite_page_layout','wide'),(14237,8345,'_dt_microsite_page_loading','enabled'),(14238,8345,'_dt_microsite_primary_menu',''),(14239,8345,'_dt_microsite_split_left_menu',''),(14240,8345,'_dt_microsite_split_right_menu',''),(14241,8345,'_dt_microsite_mobile_menu',''),(14242,8345,'_dt_microsite_logo_link',''),(14243,8345,'main_logo_heading',''),(14244,8345,'_dt_microsite_main_logo_type','default'),(14245,8345,'_dt_microsite_main_logo_regular','a:0:{}'),(14246,8345,'_dt_microsite_main_logo_hd','a:0:{}'),(14247,8345,'transparent_logo_heading',''),(14248,8345,'_dt_microsite_transparent_logo_type','default'),(14249,8345,'_dt_microsite_transparent_logo_regular','a:0:{}'),(14250,8345,'_dt_microsite_transparent_logo_hd','a:0:{}'),(14251,8345,'_dt_microsite_mixed_logo_type','default'),(14252,8345,'_dt_microsite_mixed_logo_regular','a:0:{}'),(14253,8345,'_dt_microsite_mixed_logo_hd','a:0:{}'),(14254,8345,'floating_logo_heading',''),(14255,8345,'_dt_microsite_floating_logo_type','default'),(14256,8345,'_dt_microsite_floating_logo_regular','a:0:{}'),(14257,8345,'_dt_microsite_floating_logo_hd','a:0:{}'),(14258,8345,'_dt_microsite_mobile_logo_type','default'),(14259,8345,'_dt_microsite_mobile_logo_regular','a:0:{}'),(14260,8345,'_dt_microsite_mobile_logo_hd','a:0:{}'),(14261,8345,'_dt_microsite_transparent_mobile_logo_type','default'),(14262,8345,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(14263,8345,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(14264,8345,'bottom_logo_heading',''),(14265,8345,'_dt_microsite_bottom_logo_type','default'),(14266,8345,'_dt_microsite_bottom_logo_regular','a:0:{}'),(14267,8345,'_dt_microsite_bottom_logo_hd','a:0:{}'),(14268,8345,'favicon_heading',''),(14269,8345,'_dt_microsite_favicon_type','default'),(14270,8345,'_dt_microsite_favicon','a:0:{}'),(14271,8345,'_wc_memberships_force_public','no'),(14272,8345,'_wc_memberships_use_custom_post_content_restricted_message','no'),(14273,8345,'_thumbnail_id','8364'),(14274,8345,'_oembed_ed18523d25f8ede1e0aaa9ff23a2d03a','<iframe width=\"916\" height=\"515\" src=\"https://www.youtube.com/embed/gG6yxr0z2PE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14275,8345,'_oembed_time_ed18523d25f8ede1e0aaa9ff23a2d03a','1533907071'),(14276,8345,'_oembed_ed558108a300637be4d2a9627ca4a60c','{{unknown}}'),(14277,8345,'_oembed_c9f6267807a2a507c01babce7345464f','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/gG6yxr0z2PE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14278,8345,'_oembed_time_c9f6267807a2a507c01babce7345464f','1534167593'),(14279,8345,'_oembed_d2c69ad7512ce86a1058ddd43614a283','<iframe width=\"920\" height=\"518\" src=\"https://www.youtube.com/embed/gG6yxr0z2PE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14280,8345,'_oembed_time_d2c69ad7512ce86a1058ddd43614a283','1533907112'),(14281,8345,'_wp_old_slug','6-ways-to-improve-your-group-fitness-programmes-a-personal-trainers-group-instructors-guide'),(14282,8345,'iawp_total_views','57'),(14283,8441,'_edit_last','2'),(14284,8441,'_oembed_c5cf20ce2139f595e22eb5f68ae47143','<iframe width=\"708\" height=\"398\" src=\"https://www.youtube.com/embed/Yp8PRby27BA?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14285,8441,'_wp_old_date','2018-08-19'),(14286,8441,'_thumbnail_id','8442'),(14287,8441,'_wp_page_template','default'),(14288,8441,'slide_template','default'),(14289,8441,'_wpb_vc_js_status','false'),(14290,8441,'_dt_sidebar_position','right'),(14291,8441,'_dt_sidebar_widgetarea_id','sidebar_1'),(14292,8441,'_dt_sidebar_hide_on_mobile','0'),(14293,8441,'_dt_footer_show','1'),(14294,8441,'_dt_footer_widgetarea_id','sidebar_2'),(14295,8441,'_dt_footer_hide_on_mobile','0'),(14296,8441,'_dt_header_title','enabled'),(14297,8441,'_dt_header_background','normal'),(14298,8441,'_dt_header_background_below_slideshow','disabled'),(14299,8441,'_dt_header_transparent_bg_color_scheme','light'),(14300,8441,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14301,8441,'_dt_header_transparent_top_bar_bg_opacity','25'),(14302,8441,'_dt_header_transparent_bg_color','#000000'),(14303,8441,'_dt_header_transparent_bg_opacity','50'),(14304,8441,'_dt_header_disabled_background','normal'),(14305,8441,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14306,8441,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14307,8441,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14308,8441,'_dt_header_disabled_transparent_bg_color','#000000'),(14309,8441,'_dt_header_disabled_transparent_bg_opacity','50'),(14310,8441,'_dt_page_overrides_top_margin',''),(14311,8441,'_dt_page_overrides_bottom_margin',''),(14312,8441,'_dt_slideshow_mode','porthole'),(14313,8441,'_dt_slideshow_layout','fullwidth'),(14314,8441,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(14315,8441,'_dt_slideshow_scaling','fill'),(14316,8441,'_dt_slideshow_autoplay','paused'),(14317,8441,'_dt_slideshow_autoslide_interval','5000'),(14318,8441,'_dt_slideshow_hide_captions','0'),(14319,8441,'_dt_slideshow_photo_scroller_layout','fullscreen'),(14320,8441,'_dt_slideshow_photo_scroller_bg_color','#000000'),(14321,8441,'_dt_slideshow_photo_scroller_overlay','1'),(14322,8441,'_dt_slideshow_photo_scroller_top_padding','0'),(14323,8441,'_dt_slideshow_photo_scroller_bottom_padding','0'),(14324,8441,'_dt_slideshow_photo_scroller_side_paddings','0'),(14325,8441,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(14326,8441,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(14327,8441,'_dt_slideshow_photo_scroller_thumbnails_width',''),(14328,8441,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(14329,8441,'_dt_slideshow_photo_scroller_autoplay','play'),(14330,8441,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(14331,8441,'fake_id',''),(14332,8441,'_dt_slideshow_photo_scroller_ls_max_width','100'),(14333,8441,'_dt_slideshow_photo_scroller_ls_min_width','0'),(14334,8441,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(14335,8441,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(14336,8441,'_dt_slideshow_photo_scroller_pt_max_width','100'),(14337,8441,'_dt_slideshow_photo_scroller_pt_min_width','0'),(14338,8441,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(14339,8441,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(14340,8441,'_dt_slideshow_revolution_slider','none'),(14341,8441,'_dt_slideshow_layer_slider','none'),(14342,8441,'_dt_slideshow_layer_show_bg_and_paddings','0'),(14343,8441,'_dt_fancy_header_layout_heading',''),(14344,8441,'_dt_fancy_header_title_aligment','center'),(14345,8441,'_dt_fancy_header_height','300'),(14346,8441,'_dt_fancy_header_padding-top','0px'),(14347,8441,'_dt_fancy_header_padding-bottom','0px'),(14348,8441,'_dt_fancy_header_breadcrumbs_heading',''),(14349,8441,'_dt_fancy_header_breadcrumbs','enabled'),(14350,8441,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(14351,8441,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(14352,8441,'_dt_fancy_header_title_heading',''),(14353,8441,'_dt_fancy_header_title_mode','custom'),(14354,8441,'_dt_fancy_header_title',''),(14355,8441,'_dt_fancy_header_title_font_size','30'),(14356,8441,'_dt_fancy_header_title_line_height','36'),(14357,8441,'_dt_fancy_header_uppercase','0'),(14358,8441,'_dt_fancy_header_title_color_mode','color'),(14359,8441,'_dt_fancy_header_title_color','#ffffff'),(14360,8441,'_dt_fancy_header_subtitle_heading',''),(14361,8441,'_dt_fancy_header_subtitle',''),(14362,8441,'_dt_fancy_header_subtitle_font_size','18'),(14363,8441,'_dt_fancy_header_subtitle_line_height','26'),(14364,8441,'_dt_fancy_header_subtitle_uppercase','0'),(14365,8441,'_dt_fancy_header_subtitle_color_mode','color'),(14366,8441,'_dt_fancy_header_subtitle_color','#ffffff'),(14367,8441,'_dt_fancy_header_bg_heading',''),(14368,8441,'_dt_fancy_header_bg_color','#222222'),(14369,8441,'_dt_fancy_header_bg_image','a:0:{}'),(14370,8441,'_dt_fancy_header_bg_repeat','no-repeat'),(14371,8441,'_dt_fancy_header_bg_position_x','center'),(14372,8441,'_dt_fancy_header_bg_position_y','center'),(14373,8441,'_dt_fancy_header_bg_fullscreen','1'),(14374,8441,'_dt_fancy_header_bg_overlay','0'),(14375,8441,'_dt_fancy_header_overlay_color','#000'),(14376,8441,'_dt_fancy_header_bg_overlay_opacity','50'),(14377,8441,'_dt_fancy_header_scroll_effect','default'),(14378,8441,'_dt_fancy_header_bg_parallax','0.5'),(14379,8441,'_dt_post_options_back_button',''),(14380,8441,'_dt_post_options_hide_thumbnail','0'),(14381,8441,'_dt_post_options_related_mode','same'),(14382,8441,'_dt_post_options_preview','normal'),(14383,8441,'_dt_microsite_page_layout','wide'),(14384,8441,'_dt_microsite_page_loading','enabled'),(14385,8441,'_dt_microsite_primary_menu',''),(14386,8441,'_dt_microsite_split_left_menu',''),(14387,8441,'_dt_microsite_split_right_menu',''),(14388,8441,'_dt_microsite_mobile_menu',''),(14389,8441,'_dt_microsite_logo_link',''),(14390,8441,'main_logo_heading',''),(14391,8441,'_dt_microsite_main_logo_type','default'),(14392,8441,'_dt_microsite_main_logo_regular','a:0:{}'),(14393,8441,'_dt_microsite_main_logo_hd','a:0:{}'),(14394,8441,'transparent_logo_heading',''),(14395,8441,'_dt_microsite_transparent_logo_type','default'),(14396,8441,'_dt_microsite_transparent_logo_regular','a:0:{}'),(14397,8441,'_dt_microsite_transparent_logo_hd','a:0:{}'),(14398,8441,'_dt_microsite_mixed_logo_type','default'),(14399,8441,'_dt_microsite_mixed_logo_regular','a:0:{}'),(14400,8441,'_dt_microsite_mixed_logo_hd','a:0:{}'),(14401,8441,'floating_logo_heading',''),(14402,8441,'_dt_microsite_floating_logo_type','default'),(14403,8441,'_dt_microsite_floating_logo_regular','a:0:{}'),(14404,8441,'_dt_microsite_floating_logo_hd','a:0:{}'),(14405,8441,'_dt_microsite_mobile_logo_type','default'),(14406,8441,'_dt_microsite_mobile_logo_regular','a:0:{}'),(14407,8441,'_dt_microsite_mobile_logo_hd','a:0:{}'),(14408,8441,'_dt_microsite_transparent_mobile_logo_type','default'),(14409,8441,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(14410,8441,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(14411,8441,'bottom_logo_heading',''),(14412,8441,'_dt_microsite_bottom_logo_type','default'),(14413,8441,'_dt_microsite_bottom_logo_regular','a:0:{}'),(14414,8441,'_dt_microsite_bottom_logo_hd','a:0:{}'),(14415,8441,'favicon_heading',''),(14416,8441,'_dt_microsite_favicon_type','default'),(14417,8441,'_dt_microsite_favicon','a:0:{}'),(14418,8441,'_wc_memberships_force_public','no'),(14419,8441,'_wc_memberships_use_custom_post_content_restricted_message','no'),(14420,8441,'_oembed_time_c5cf20ce2139f595e22eb5f68ae47143','1534794407'),(14421,8441,'_oembed_0a2e8935ac26c54aff1e5cb8a7ec17f0','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/Yp8PRby27BA?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14422,8441,'_oembed_time_0a2e8935ac26c54aff1e5cb8a7ec17f0','1534794507'),(14423,8441,'_oembed_e13e317013603a133640855905497dab','<iframe width=\"712\" height=\"401\" src=\"https://www.youtube.com/embed/Yp8PRby27BA?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14424,8441,'_oembed_time_e13e317013603a133640855905497dab','1534794509'),(14425,8441,'_oembed_dddf84cfdb0ffe6dd1eb59067f65738e','<iframe width=\"920\" height=\"518\" src=\"https://www.youtube.com/embed/Yp8PRby27BA?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14426,8441,'_oembed_time_dddf84cfdb0ffe6dd1eb59067f65738e','1535203273'),(14427,9947,'_edit_last','2'),(14428,9947,'_wp_page_template','default'),(14429,9947,'slide_template','default'),(14430,9947,'_wpb_vc_js_status','false'),(14431,9947,'_dt_sidebar_position','right'),(14432,9947,'_dt_sidebar_widgetarea_id','sidebar_1'),(14433,9947,'_dt_sidebar_hide_on_mobile','0'),(14434,9947,'_dt_footer_show','1'),(14435,9947,'_dt_footer_widgetarea_id','sidebar_2'),(14436,9947,'_dt_footer_hide_on_mobile','0'),(14437,9947,'_dt_header_title','enabled'),(14438,9947,'_dt_header_background','normal'),(14439,9947,'_dt_header_background_below_slideshow','disabled'),(14440,9947,'_dt_header_transparent_bg_color_scheme','light'),(14441,9947,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14442,9947,'_dt_header_transparent_top_bar_bg_opacity','25'),(14443,9947,'_dt_header_transparent_bg_color','#000000'),(14444,9947,'_dt_header_transparent_bg_opacity','50'),(14445,9947,'_dt_header_disabled_background','normal'),(14446,9947,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14447,9947,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14448,9947,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14449,9947,'_dt_header_disabled_transparent_bg_color','#000000'),(14450,9947,'_dt_header_disabled_transparent_bg_opacity','50'),(14451,9947,'_dt_page_overrides_top_margin',''),(14452,9947,'_dt_page_overrides_bottom_margin',''),(14453,9947,'_dt_slideshow_mode','porthole'),(14454,9947,'_dt_slideshow_layout','fullwidth'),(14455,9947,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(14456,9947,'_dt_slideshow_scaling','fill'),(14457,9947,'_dt_slideshow_autoplay','paused'),(14458,9947,'_dt_slideshow_autoslide_interval','5000'),(14459,9947,'_dt_slideshow_hide_captions','0'),(14460,9947,'_dt_slideshow_photo_scroller_layout','fullscreen'),(14461,9947,'_dt_slideshow_photo_scroller_bg_color','#000000'),(14462,9947,'_dt_slideshow_photo_scroller_overlay','1'),(14463,9947,'_dt_slideshow_photo_scroller_top_padding','0'),(14464,9947,'_dt_slideshow_photo_scroller_bottom_padding','0'),(14465,9947,'_dt_slideshow_photo_scroller_side_paddings','0'),(14466,9947,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(14467,9947,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(14468,9947,'_dt_slideshow_photo_scroller_thumbnails_width',''),(14469,9947,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(14470,9947,'_dt_slideshow_photo_scroller_autoplay','play'),(14471,9947,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(14472,9947,'fake_id',''),(14473,9947,'_dt_slideshow_photo_scroller_ls_max_width','100'),(14474,9947,'_dt_slideshow_photo_scroller_ls_min_width','0'),(14475,9947,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(14476,9947,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(14477,9947,'_dt_slideshow_photo_scroller_pt_max_width','100'),(14478,9947,'_dt_slideshow_photo_scroller_pt_min_width','0'),(14479,9947,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(14480,9947,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(14481,9947,'_dt_slideshow_revolution_slider','none'),(14482,9947,'_dt_slideshow_layer_slider','none'),(14483,9947,'_dt_slideshow_layer_show_bg_and_paddings','0'),(14484,9947,'_dt_fancy_header_layout_heading',''),(14485,9947,'_dt_fancy_header_title_aligment','center'),(14486,9947,'_dt_fancy_header_height','300'),(14487,9947,'_dt_fancy_header_padding-top','0px'),(14488,9947,'_dt_fancy_header_padding-bottom','0px'),(14489,9947,'_dt_fancy_header_breadcrumbs_heading',''),(14490,9947,'_dt_fancy_header_breadcrumbs','enabled'),(14491,9947,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(14492,9947,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(14493,9947,'_dt_fancy_header_title_heading',''),(14494,9947,'_dt_fancy_header_title_mode','custom'),(14495,9947,'_dt_fancy_header_title',''),(14496,9947,'_dt_fancy_header_title_font_size','30'),(14497,9947,'_dt_fancy_header_title_line_height','36'),(14498,9947,'_dt_fancy_header_uppercase','0'),(14499,9947,'_dt_fancy_header_title_color_mode','color'),(14500,9947,'_dt_fancy_header_title_color','#ffffff'),(14501,9947,'_dt_fancy_header_subtitle_heading',''),(14502,9947,'_dt_fancy_header_subtitle',''),(14503,9947,'_dt_fancy_header_subtitle_font_size','18'),(14504,9947,'_dt_fancy_header_subtitle_line_height','26'),(14505,9947,'_dt_fancy_header_subtitle_uppercase','0'),(14506,9947,'_dt_fancy_header_subtitle_color_mode','color'),(14507,9947,'_dt_fancy_header_subtitle_color','#ffffff'),(14508,9947,'_dt_fancy_header_bg_heading',''),(14509,9947,'_dt_fancy_header_bg_color','#222222'),(14510,9947,'_dt_fancy_header_bg_image','a:0:{}'),(14511,9947,'_dt_fancy_header_bg_repeat','no-repeat'),(14512,9947,'_dt_fancy_header_bg_position_x','center'),(14513,9947,'_dt_fancy_header_bg_position_y','center'),(14514,9947,'_dt_fancy_header_bg_fullscreen','1'),(14515,9947,'_dt_fancy_header_bg_overlay','0'),(14516,9947,'_dt_fancy_header_overlay_color','#000'),(14517,9947,'_dt_fancy_header_bg_overlay_opacity','50'),(14518,9947,'_dt_fancy_header_scroll_effect','default'),(14519,9947,'_dt_fancy_header_bg_parallax','0.5'),(14520,9947,'_dt_post_options_back_button',''),(14521,9947,'_dt_post_options_hide_thumbnail','0'),(14522,9947,'_dt_post_options_related_mode','same'),(14523,9947,'_dt_post_options_preview','normal'),(14524,9947,'_dt_microsite_page_layout','wide'),(14525,9947,'_dt_microsite_page_loading','enabled'),(14526,9947,'_dt_microsite_primary_menu',''),(14527,9947,'_dt_microsite_split_left_menu',''),(14528,9947,'_dt_microsite_split_right_menu',''),(14529,9947,'_dt_microsite_mobile_menu',''),(14530,9947,'_dt_microsite_logo_link',''),(14531,9947,'main_logo_heading',''),(14532,9947,'_dt_microsite_main_logo_type','default'),(14533,9947,'_dt_microsite_main_logo_regular','a:0:{}'),(14534,9947,'_dt_microsite_main_logo_hd','a:0:{}'),(14535,9947,'transparent_logo_heading',''),(14536,9947,'_dt_microsite_transparent_logo_type','default'),(14537,9947,'_dt_microsite_transparent_logo_regular','a:0:{}'),(14538,9947,'_dt_microsite_transparent_logo_hd','a:0:{}'),(14539,9947,'_dt_microsite_mixed_logo_type','default'),(14540,9947,'_dt_microsite_mixed_logo_regular','a:0:{}'),(14541,9947,'_dt_microsite_mixed_logo_hd','a:0:{}'),(14542,9947,'floating_logo_heading',''),(14543,9947,'_dt_microsite_floating_logo_type','default'),(14544,9947,'_dt_microsite_floating_logo_regular','a:0:{}'),(14545,9947,'_dt_microsite_floating_logo_hd','a:0:{}'),(14546,9947,'_dt_microsite_mobile_logo_type','default'),(14547,9947,'_dt_microsite_mobile_logo_regular','a:0:{}'),(14548,9947,'_dt_microsite_mobile_logo_hd','a:0:{}'),(14549,9947,'_dt_microsite_transparent_mobile_logo_type','default'),(14550,9947,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(14551,9947,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(14552,9947,'bottom_logo_heading',''),(14553,9947,'_dt_microsite_bottom_logo_type','default'),(14554,9947,'_dt_microsite_bottom_logo_regular','a:0:{}'),(14555,9947,'_dt_microsite_bottom_logo_hd','a:0:{}'),(14556,9947,'favicon_heading',''),(14557,9947,'_dt_microsite_favicon_type','default'),(14558,9947,'_dt_microsite_favicon','a:0:{}'),(14559,9947,'_wc_memberships_force_public','no'),(14560,9947,'_wc_memberships_use_custom_post_content_restricted_message','no'),(14561,9947,'iawp_total_views','60'),(14562,8100,'_oembed_time_06e2a0850a640ff11f91857ee398183c','1550412095'),(14563,8100,'_oembed_06e2a0850a640ff11f91857ee398183c','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/3eZ_XAshI_8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(14564,8100,'_oembed_time_1110fcf7bf3d4cd73727559de202d863','1550412022'),(14565,8100,'_oembed_1110fcf7bf3d4cd73727559de202d863','<iframe width=\"770\" height=\"433\" src=\"https://www.youtube.com/embed/3eZ_XAshI_8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(14566,8100,'_edit_last','2'),(14567,8100,'_thumbnail_id','8104'),(14568,8100,'_wp_page_template','default'),(14569,8100,'slide_template','default'),(14570,8100,'_wpb_vc_js_status','false'),(14571,8100,'_dt_sidebar_position','right'),(14572,8100,'_dt_sidebar_widgetarea_id','sidebar_1'),(14573,8100,'_dt_sidebar_hide_on_mobile','0'),(14574,8100,'_dt_footer_show','1'),(14575,8100,'_dt_footer_widgetarea_id','sidebar_2'),(14576,8100,'_dt_footer_hide_on_mobile','0'),(14577,8100,'_dt_header_title','enabled'),(14578,8100,'_dt_header_background','normal'),(14579,8100,'_dt_header_background_below_slideshow','disabled'),(14580,8100,'_dt_header_transparent_bg_color_scheme','light'),(14581,8100,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14582,8100,'_dt_header_transparent_top_bar_bg_opacity','25'),(14583,8100,'_dt_header_transparent_bg_color','#000000'),(14584,8100,'_dt_header_transparent_bg_opacity','50'),(14585,8100,'_dt_header_disabled_background','normal'),(14586,8100,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14587,8100,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14588,8100,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14589,8100,'_dt_header_disabled_transparent_bg_color','#000000'),(14590,8100,'_dt_header_disabled_transparent_bg_opacity','50'),(14591,8100,'_dt_page_overrides_top_margin',''),(14592,8100,'_dt_page_overrides_bottom_margin',''),(14593,8100,'_dt_post_options_back_button',''),(14594,8100,'_dt_post_options_hide_thumbnail','0'),(14595,8100,'_dt_post_options_related_mode','same'),(14596,8100,'_dt_post_options_preview','normal'),(14597,8100,'_wc_memberships_force_public','no'),(14598,8100,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(14599,8100,'_oembed_12311e403ca8f526425e76947a361947','<iframe width=\"920\" height=\"518\" src=\"https://www.youtube.com/embed/3eZ_XAshI_8?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14600,8100,'_oembed_time_12311e403ca8f526425e76947a361947','1533579540'),(14601,8100,'iawp_total_views','43'),(14602,8301,'_edit_last','2'),(14603,8301,'_thumbnail_id','8302'),(14604,8301,'_wp_page_template','default'),(14605,8301,'slide_template','default'),(14606,8301,'_wpb_vc_js_status','false'),(14607,8301,'_dt_sidebar_position','right'),(14608,8301,'_dt_sidebar_widgetarea_id','sidebar_1'),(14609,8301,'_dt_sidebar_hide_on_mobile','0'),(14610,8301,'_dt_footer_show','1'),(14611,8301,'_dt_footer_widgetarea_id','sidebar_2'),(14612,8301,'_dt_footer_hide_on_mobile','0'),(14613,8301,'_dt_header_title','enabled'),(14614,8301,'_dt_header_background','normal'),(14615,8301,'_dt_header_background_below_slideshow','disabled'),(14616,8301,'_dt_header_transparent_bg_color_scheme','light'),(14617,8301,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14618,8301,'_dt_header_transparent_top_bar_bg_opacity','25'),(14619,8301,'_dt_header_transparent_bg_color','#000000'),(14620,8301,'_dt_header_transparent_bg_opacity','50'),(14621,8301,'_dt_header_disabled_background','normal'),(14622,8301,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14623,8301,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14624,8301,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14625,8301,'_dt_header_disabled_transparent_bg_color','#000000'),(14626,8301,'_dt_header_disabled_transparent_bg_opacity','50'),(14627,8301,'_dt_page_overrides_top_margin',''),(14628,8301,'_dt_page_overrides_bottom_margin',''),(14629,8301,'_dt_post_options_back_button',''),(14630,8301,'_dt_post_options_hide_thumbnail','0'),(14631,8301,'_dt_post_options_related_mode','same'),(14632,8301,'_dt_post_options_preview','normal'),(14633,8301,'_wc_memberships_force_public','no'),(14634,8301,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(14635,8529,'_oembed_time_b4f8a9c9280c7e95f8939a3d4c78a1bd','1535263525'),(14636,8529,'_oembed_b4f8a9c9280c7e95f8939a3d4c78a1bd','<iframe width=\"1030\" height=\"579\" src=\"https://www.youtube.com/embed/_BvAfkY8PYI?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14637,8529,'_wp_old_slug','identifying-the-root-problem-accountability-owning-it-a-guide-to-helping-your-clients-achieve-their-goals'),(14638,8529,'_edit_last','2'),(14639,8529,'_wp_page_template','default'),(14640,8529,'slide_template','default'),(14641,8529,'_wpb_vc_js_status','false'),(14642,8529,'_dt_sidebar_position','right'),(14643,8529,'_dt_sidebar_widgetarea_id','sidebar_1'),(14644,8529,'_dt_sidebar_hide_on_mobile','0'),(14645,8529,'_dt_footer_show','1'),(14646,8529,'_dt_footer_widgetarea_id','sidebar_2'),(14647,8529,'_dt_footer_hide_on_mobile','0'),(14648,8529,'_dt_header_title','enabled'),(14649,8529,'_dt_header_background','normal'),(14650,8529,'_dt_header_background_below_slideshow','disabled'),(14651,8529,'_dt_header_transparent_bg_color_scheme','light'),(14652,8529,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14653,8529,'_dt_header_transparent_top_bar_bg_opacity','25'),(14654,8529,'_dt_header_transparent_bg_color','#000000'),(14655,8529,'_dt_header_transparent_bg_opacity','50'),(14656,8529,'_dt_header_disabled_background','normal'),(14657,8529,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14658,8529,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14659,8529,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14660,8529,'_dt_header_disabled_transparent_bg_color','#000000'),(14661,8529,'_dt_header_disabled_transparent_bg_opacity','50'),(14662,8529,'_dt_page_overrides_top_margin',''),(14663,8529,'_dt_page_overrides_bottom_margin',''),(14664,8529,'_dt_slideshow_mode','porthole'),(14665,8529,'_dt_slideshow_layout','fullwidth'),(14666,8529,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(14667,8529,'_dt_slideshow_scaling','fill'),(14668,8529,'_dt_slideshow_autoplay','paused'),(14669,8529,'_dt_slideshow_autoslide_interval','5000'),(14670,8529,'_dt_slideshow_hide_captions','0'),(14671,8529,'_dt_slideshow_photo_scroller_layout','fullscreen'),(14672,8529,'_dt_slideshow_photo_scroller_bg_color','#000000'),(14673,8529,'_dt_slideshow_photo_scroller_overlay','1'),(14674,8529,'_dt_slideshow_photo_scroller_top_padding','0'),(14675,8529,'_dt_slideshow_photo_scroller_bottom_padding','0'),(14676,8529,'_dt_slideshow_photo_scroller_side_paddings','0'),(14677,8529,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(14678,8529,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(14679,8529,'_dt_slideshow_photo_scroller_thumbnails_width',''),(14680,8529,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(14681,8529,'_dt_slideshow_photo_scroller_autoplay','play'),(14682,8529,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(14683,8529,'fake_id',''),(14684,8529,'_dt_slideshow_photo_scroller_ls_max_width','100'),(14685,8529,'_dt_slideshow_photo_scroller_ls_min_width','0'),(14686,8529,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(14687,8529,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(14688,8529,'_dt_slideshow_photo_scroller_pt_max_width','100'),(14689,8529,'_dt_slideshow_photo_scroller_pt_min_width','0'),(14690,8529,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(14691,8529,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(14692,8529,'_dt_slideshow_revolution_slider','none'),(14693,8529,'_dt_slideshow_layer_slider','none'),(14694,8529,'_dt_slideshow_layer_show_bg_and_paddings','0'),(14695,8529,'_dt_fancy_header_layout_heading',''),(14696,8529,'_dt_fancy_header_title_aligment','center'),(14697,8529,'_dt_fancy_header_height','300'),(14698,8529,'_dt_fancy_header_padding-top','0px'),(14699,8529,'_dt_fancy_header_padding-bottom','0px'),(14700,8529,'_dt_fancy_header_breadcrumbs_heading',''),(14701,8529,'_dt_fancy_header_breadcrumbs','enabled'),(14702,8529,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(14703,8529,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(14704,8529,'_dt_fancy_header_title_heading',''),(14705,8529,'_dt_fancy_header_title_mode','custom'),(14706,8529,'_dt_fancy_header_title',''),(14707,8529,'_dt_fancy_header_title_font_size','30'),(14708,8529,'_dt_fancy_header_title_line_height','36'),(14709,8529,'_dt_fancy_header_uppercase','0'),(14710,8529,'_dt_fancy_header_title_color_mode','color'),(14711,8529,'_dt_fancy_header_title_color','#ffffff'),(14712,8529,'_dt_fancy_header_subtitle_heading',''),(14713,8529,'_dt_fancy_header_subtitle',''),(14714,8529,'_dt_fancy_header_subtitle_font_size','18'),(14715,8529,'_dt_fancy_header_subtitle_line_height','26'),(14716,8529,'_dt_fancy_header_subtitle_uppercase','0'),(14717,8529,'_dt_fancy_header_subtitle_color_mode','color'),(14718,8529,'_dt_fancy_header_subtitle_color','#ffffff'),(14719,8529,'_dt_fancy_header_bg_heading',''),(14720,8529,'_dt_fancy_header_bg_color','#222222'),(14721,8529,'_dt_fancy_header_bg_image','a:0:{}'),(14722,8529,'_dt_fancy_header_bg_repeat','no-repeat'),(14723,8529,'_dt_fancy_header_bg_position_x','center'),(14724,8529,'_dt_fancy_header_bg_position_y','center'),(14725,8529,'_dt_fancy_header_bg_fullscreen','1'),(14726,8529,'_dt_fancy_header_bg_overlay','0'),(14727,8529,'_dt_fancy_header_overlay_color','#000'),(14728,8529,'_dt_fancy_header_bg_overlay_opacity','50'),(14729,8529,'_dt_fancy_header_scroll_effect','default'),(14730,8529,'_dt_fancy_header_bg_parallax','0.5'),(14731,8529,'_dt_post_options_back_button',''),(14732,8529,'_dt_post_options_hide_thumbnail','0'),(14733,8529,'_dt_post_options_related_mode','same'),(14734,8529,'_dt_post_options_preview','normal'),(14735,8529,'_dt_microsite_page_layout','wide'),(14736,8529,'_dt_microsite_page_loading','enabled'),(14737,8529,'_dt_microsite_primary_menu',''),(14738,8529,'_dt_microsite_split_left_menu',''),(14739,8529,'_dt_microsite_split_right_menu',''),(14740,8529,'_dt_microsite_mobile_menu',''),(14741,8529,'_dt_microsite_logo_link',''),(14742,8529,'main_logo_heading',''),(14743,8529,'_dt_microsite_main_logo_type','default'),(14744,8529,'_dt_microsite_main_logo_regular','a:0:{}'),(14745,8529,'_dt_microsite_main_logo_hd','a:0:{}'),(14746,8529,'transparent_logo_heading',''),(14747,8529,'_dt_microsite_transparent_logo_type','default'),(14748,8529,'_dt_microsite_transparent_logo_regular','a:0:{}'),(14749,8529,'_dt_microsite_transparent_logo_hd','a:0:{}'),(14750,8529,'_dt_microsite_mixed_logo_type','default'),(14751,8529,'_dt_microsite_mixed_logo_regular','a:0:{}'),(14752,8529,'_dt_microsite_mixed_logo_hd','a:0:{}'),(14753,8529,'floating_logo_heading',''),(14754,8529,'_dt_microsite_floating_logo_type','default'),(14755,8529,'_dt_microsite_floating_logo_regular','a:0:{}'),(14756,8529,'_dt_microsite_floating_logo_hd','a:0:{}'),(14757,8529,'_dt_microsite_mobile_logo_type','default'),(14758,8529,'_dt_microsite_mobile_logo_regular','a:0:{}'),(14759,8529,'_dt_microsite_mobile_logo_hd','a:0:{}'),(14760,8529,'_dt_microsite_transparent_mobile_logo_type','default'),(14761,8529,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(14762,8529,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(14763,8529,'bottom_logo_heading',''),(14764,8529,'_dt_microsite_bottom_logo_type','default'),(14765,8529,'_dt_microsite_bottom_logo_regular','a:0:{}'),(14766,8529,'_dt_microsite_bottom_logo_hd','a:0:{}'),(14767,8529,'favicon_heading',''),(14768,8529,'_dt_microsite_favicon_type','default'),(14769,8529,'_dt_microsite_favicon','a:0:{}'),(14770,8529,'_wc_memberships_force_public','no'),(14771,8529,'_wc_memberships_use_custom_post_content_restricted_message','no'),(14772,8529,'_thumbnail_id','8531'),(14773,8529,'_oembed_e2618846a29055901b70d4a37f25364d','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/_BvAfkY8PYI?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14774,8529,'_oembed_time_e2618846a29055901b70d4a37f25364d','1535365331'),(14775,8529,'_oembed_98fa30971dde7ad24d5b01d9c79b5669','<iframe width=\"1034\" height=\"582\" src=\"https://www.youtube.com/embed/_BvAfkY8PYI?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14776,8529,'_oembed_time_98fa30971dde7ad24d5b01d9c79b5669','1535263538'),(14777,8529,'_oembed_8b8fd7e5256a14dead3a57eacba55bf6','<iframe width=\"920\" height=\"518\" src=\"https://www.youtube.com/embed/_BvAfkY8PYI?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14778,8529,'_oembed_time_8b8fd7e5256a14dead3a57eacba55bf6','1535269508'),(14779,8598,'_oembed_8848f16c6e747bb9d3f3e88e18c1704c','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/AgEcJN2Rras?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14780,8598,'_edit_last','2'),(14781,8598,'_wp_page_template','default'),(14782,8598,'slide_template','default'),(14783,8598,'_wpb_vc_js_status','false'),(14784,8598,'_dt_sidebar_position','right'),(14785,8598,'_dt_sidebar_widgetarea_id','sidebar_1'),(14786,8598,'_dt_sidebar_hide_on_mobile','0'),(14787,8598,'_dt_footer_show','1'),(14788,8598,'_dt_footer_widgetarea_id','sidebar_2'),(14789,8598,'_dt_footer_hide_on_mobile','0'),(14790,8598,'_dt_header_title','enabled'),(14791,8598,'_dt_header_background','normal'),(14792,8598,'_dt_header_background_below_slideshow','disabled'),(14793,8598,'_dt_header_transparent_bg_color_scheme','light'),(14794,8598,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14795,8598,'_dt_header_transparent_top_bar_bg_opacity','25'),(14796,8598,'_dt_header_transparent_bg_color','#000000'),(14797,8598,'_dt_header_transparent_bg_opacity','50'),(14798,8598,'_dt_header_disabled_background','normal'),(14799,8598,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14800,8598,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14801,8598,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14802,8598,'_dt_header_disabled_transparent_bg_color','#000000'),(14803,8598,'_dt_header_disabled_transparent_bg_opacity','50'),(14804,8598,'_dt_page_overrides_top_margin',''),(14805,8598,'_dt_page_overrides_bottom_margin',''),(14806,8598,'_dt_slideshow_mode','porthole'),(14807,8598,'_dt_slideshow_layout','fullwidth'),(14808,8598,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(14809,8598,'_dt_slideshow_scaling','fill'),(14810,8598,'_dt_slideshow_autoplay','paused'),(14811,8598,'_dt_slideshow_autoslide_interval','5000'),(14812,8598,'_dt_slideshow_hide_captions','0'),(14813,8598,'_dt_slideshow_photo_scroller_layout','fullscreen'),(14814,8598,'_dt_slideshow_photo_scroller_bg_color','#000000'),(14815,8598,'_dt_slideshow_photo_scroller_overlay','1'),(14816,8598,'_dt_slideshow_photo_scroller_top_padding','0'),(14817,8598,'_dt_slideshow_photo_scroller_bottom_padding','0'),(14818,8598,'_dt_slideshow_photo_scroller_side_paddings','0'),(14819,8598,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(14820,8598,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(14821,8598,'_dt_slideshow_photo_scroller_thumbnails_width',''),(14822,8598,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(14823,8598,'_dt_slideshow_photo_scroller_autoplay','play'),(14824,8598,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(14825,8598,'fake_id',''),(14826,8598,'_dt_slideshow_photo_scroller_ls_max_width','100'),(14827,8598,'_dt_slideshow_photo_scroller_ls_min_width','0'),(14828,8598,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(14829,8598,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(14830,8598,'_dt_slideshow_photo_scroller_pt_max_width','100'),(14831,8598,'_dt_slideshow_photo_scroller_pt_min_width','0'),(14832,8598,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(14833,8598,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(14834,8598,'_dt_slideshow_revolution_slider','none'),(14835,8598,'_dt_slideshow_layer_slider','none'),(14836,8598,'_dt_slideshow_layer_show_bg_and_paddings','0'),(14837,8598,'_dt_fancy_header_layout_heading',''),(14838,8598,'_dt_fancy_header_title_aligment','center'),(14839,8598,'_dt_fancy_header_height','300'),(14840,8598,'_dt_fancy_header_padding-top','0px'),(14841,8598,'_dt_fancy_header_padding-bottom','0px'),(14842,8598,'_dt_fancy_header_breadcrumbs_heading',''),(14843,8598,'_dt_fancy_header_breadcrumbs','enabled'),(14844,8598,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(14845,8598,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(14846,8598,'_dt_fancy_header_title_heading',''),(14847,8598,'_dt_fancy_header_title_mode','custom'),(14848,8598,'_dt_fancy_header_title',''),(14849,8598,'_dt_fancy_header_title_font_size','30'),(14850,8598,'_dt_fancy_header_title_line_height','36'),(14851,8598,'_dt_fancy_header_uppercase','0'),(14852,8598,'_dt_fancy_header_title_color_mode','color'),(14853,8598,'_dt_fancy_header_title_color','#ffffff'),(14854,8598,'_dt_fancy_header_subtitle_heading',''),(14855,8598,'_dt_fancy_header_subtitle',''),(14856,8598,'_dt_fancy_header_subtitle_font_size','18'),(14857,8598,'_dt_fancy_header_subtitle_line_height','26'),(14858,8598,'_dt_fancy_header_subtitle_uppercase','0'),(14859,8598,'_dt_fancy_header_subtitle_color_mode','color'),(14860,8598,'_dt_fancy_header_subtitle_color','#ffffff'),(14861,8598,'_dt_fancy_header_bg_heading',''),(14862,8598,'_dt_fancy_header_bg_color','#222222'),(14863,8598,'_dt_fancy_header_bg_image','a:0:{}'),(14864,8598,'_dt_fancy_header_bg_repeat','no-repeat'),(14865,8598,'_dt_fancy_header_bg_position_x','center'),(14866,8598,'_dt_fancy_header_bg_position_y','center'),(14867,8598,'_dt_fancy_header_bg_fullscreen','1'),(14868,8598,'_dt_fancy_header_bg_overlay','0'),(14869,8598,'_dt_fancy_header_overlay_color','#000'),(14870,8598,'_dt_fancy_header_bg_overlay_opacity','50'),(14871,8598,'_dt_fancy_header_scroll_effect','default'),(14872,8598,'_dt_fancy_header_bg_parallax','0.5'),(14873,8598,'_dt_post_options_back_button',''),(14874,8598,'_dt_post_options_hide_thumbnail','0'),(14875,8598,'_dt_post_options_related_mode','same'),(14876,8598,'_dt_post_options_preview','normal'),(14877,8598,'_dt_microsite_page_layout','wide'),(14878,8598,'_dt_microsite_page_loading','enabled'),(14879,8598,'_dt_microsite_primary_menu',''),(14880,8598,'_dt_microsite_split_left_menu',''),(14881,8598,'_dt_microsite_split_right_menu',''),(14882,8598,'_dt_microsite_mobile_menu',''),(14883,8598,'_dt_microsite_logo_link',''),(14884,8598,'main_logo_heading',''),(14885,8598,'_dt_microsite_main_logo_type','default'),(14886,8598,'_dt_microsite_main_logo_regular','a:0:{}'),(14887,8598,'_dt_microsite_main_logo_hd','a:0:{}'),(14888,8598,'transparent_logo_heading',''),(14889,8598,'_dt_microsite_transparent_logo_type','default'),(14890,8598,'_dt_microsite_transparent_logo_regular','a:0:{}'),(14891,8598,'_dt_microsite_transparent_logo_hd','a:0:{}'),(14892,8598,'_dt_microsite_mixed_logo_type','default'),(14893,8598,'_dt_microsite_mixed_logo_regular','a:0:{}'),(14894,8598,'_dt_microsite_mixed_logo_hd','a:0:{}'),(14895,8598,'floating_logo_heading',''),(14896,8598,'_dt_microsite_floating_logo_type','default'),(14897,8598,'_dt_microsite_floating_logo_regular','a:0:{}'),(14898,8598,'_dt_microsite_floating_logo_hd','a:0:{}'),(14899,8598,'_dt_microsite_mobile_logo_type','default'),(14900,8598,'_dt_microsite_mobile_logo_regular','a:0:{}'),(14901,8598,'_dt_microsite_mobile_logo_hd','a:0:{}'),(14902,8598,'_dt_microsite_transparent_mobile_logo_type','default'),(14903,8598,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(14904,8598,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(14905,8598,'bottom_logo_heading',''),(14906,8598,'_dt_microsite_bottom_logo_type','default'),(14907,8598,'_dt_microsite_bottom_logo_regular','a:0:{}'),(14908,8598,'_dt_microsite_bottom_logo_hd','a:0:{}'),(14909,8598,'favicon_heading',''),(14910,8598,'_dt_microsite_favicon_type','default'),(14911,8598,'_dt_microsite_favicon','a:0:{}'),(14912,8598,'_wc_memberships_force_public','no'),(14913,8598,'_wc_memberships_use_custom_post_content_restricted_message','no'),(14914,8598,'_thumbnail_id','8645'),(14915,8598,'_oembed_time_8848f16c6e747bb9d3f3e88e18c1704c','1536251932'),(14916,8598,'_oembed_5f9d919e4598b2ca25bb5e0ad136a459','<iframe width=\"920\" height=\"518\" src=\"https://www.youtube.com/embed/AgEcJN2Rras?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(14917,8598,'_oembed_time_5f9d919e4598b2ca25bb5e0ad136a459','1536302698'),(14918,8804,'_edit_last','2'),(14919,8804,'_thumbnail_id','8805'),(14920,8804,'_wp_page_template','default'),(14921,8804,'slide_template','default'),(14922,8804,'_wpb_vc_js_status','false'),(14923,8804,'_dt_sidebar_position','right'),(14924,8804,'_dt_sidebar_widgetarea_id','sidebar_1'),(14925,8804,'_dt_sidebar_hide_on_mobile','0'),(14926,8804,'_dt_footer_show','1'),(14927,8804,'_dt_footer_widgetarea_id','sidebar_2'),(14928,8804,'_dt_footer_hide_on_mobile','0'),(14929,8804,'_dt_header_title','enabled'),(14930,8804,'_dt_header_background','normal'),(14931,8804,'_dt_header_background_below_slideshow','disabled'),(14932,8804,'_dt_header_transparent_bg_color_scheme','light'),(14933,8804,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(14934,8804,'_dt_header_transparent_top_bar_bg_opacity','25'),(14935,8804,'_dt_header_transparent_bg_color','#000000'),(14936,8804,'_dt_header_transparent_bg_opacity','50'),(14937,8804,'_dt_header_disabled_background','normal'),(14938,8804,'_dt_header_disabled_transparent_bg_color_scheme','light'),(14939,8804,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(14940,8804,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(14941,8804,'_dt_header_disabled_transparent_bg_color','#000000'),(14942,8804,'_dt_header_disabled_transparent_bg_opacity','50'),(14943,8804,'_dt_page_overrides_top_margin',''),(14944,8804,'_dt_page_overrides_bottom_margin',''),(14945,8804,'_dt_slideshow_mode','porthole'),(14946,8804,'_dt_slideshow_layout','fullwidth'),(14947,8804,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(14948,8804,'_dt_slideshow_scaling','fill'),(14949,8804,'_dt_slideshow_autoplay','paused'),(14950,8804,'_dt_slideshow_autoslide_interval','5000'),(14951,8804,'_dt_slideshow_hide_captions','0'),(14952,8804,'_dt_slideshow_photo_scroller_layout','fullscreen'),(14953,8804,'_dt_slideshow_photo_scroller_bg_color','#000000'),(14954,8804,'_dt_slideshow_photo_scroller_overlay','1'),(14955,8804,'_dt_slideshow_photo_scroller_top_padding','0'),(14956,8804,'_dt_slideshow_photo_scroller_bottom_padding','0'),(14957,8804,'_dt_slideshow_photo_scroller_side_paddings','0'),(14958,8804,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(14959,8804,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(14960,8804,'_dt_slideshow_photo_scroller_thumbnails_width',''),(14961,8804,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(14962,8804,'_dt_slideshow_photo_scroller_autoplay','play'),(14963,8804,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(14964,8804,'fake_id',''),(14965,8804,'_dt_slideshow_photo_scroller_ls_max_width','100'),(14966,8804,'_dt_slideshow_photo_scroller_ls_min_width','0'),(14967,8804,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(14968,8804,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(14969,8804,'_dt_slideshow_photo_scroller_pt_max_width','100'),(14970,8804,'_dt_slideshow_photo_scroller_pt_min_width','0'),(14971,8804,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(14972,8804,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(14973,8804,'_dt_slideshow_revolution_slider','none'),(14974,8804,'_dt_slideshow_layer_slider','none'),(14975,8804,'_dt_slideshow_layer_show_bg_and_paddings','0'),(14976,8804,'_dt_fancy_header_layout_heading',''),(14977,8804,'_dt_fancy_header_title_aligment','center'),(14978,8804,'_dt_fancy_header_height','300'),(14979,8804,'_dt_fancy_header_padding-top','0px'),(14980,8804,'_dt_fancy_header_padding-bottom','0px'),(14981,8804,'_dt_fancy_header_breadcrumbs_heading',''),(14982,8804,'_dt_fancy_header_breadcrumbs','enabled'),(14983,8804,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(14984,8804,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(14985,8804,'_dt_fancy_header_title_heading',''),(14986,8804,'_dt_fancy_header_title_mode','custom'),(14987,8804,'_dt_fancy_header_title',''),(14988,8804,'_dt_fancy_header_title_font_size','30'),(14989,8804,'_dt_fancy_header_title_line_height','36'),(14990,8804,'_dt_fancy_header_uppercase','0'),(14991,8804,'_dt_fancy_header_title_color_mode','color'),(14992,8804,'_dt_fancy_header_title_color','#ffffff'),(14993,8804,'_dt_fancy_header_subtitle_heading',''),(14994,8804,'_dt_fancy_header_subtitle',''),(14995,8804,'_dt_fancy_header_subtitle_font_size','18'),(14996,8804,'_dt_fancy_header_subtitle_line_height','26'),(14997,8804,'_dt_fancy_header_subtitle_uppercase','0'),(14998,8804,'_dt_fancy_header_subtitle_color_mode','color'),(14999,8804,'_dt_fancy_header_subtitle_color','#ffffff'),(15000,8804,'_dt_fancy_header_bg_heading',''),(15001,8804,'_dt_fancy_header_bg_color','#222222'),(15002,8804,'_dt_fancy_header_bg_image','a:0:{}'),(15003,8804,'_dt_fancy_header_bg_repeat','no-repeat'),(15004,8804,'_dt_fancy_header_bg_position_x','center'),(15005,8804,'_dt_fancy_header_bg_position_y','center'),(15006,8804,'_dt_fancy_header_bg_fullscreen','1'),(15007,8804,'_dt_fancy_header_bg_overlay','0'),(15008,8804,'_dt_fancy_header_overlay_color','#000'),(15009,8804,'_dt_fancy_header_bg_overlay_opacity','50'),(15010,8804,'_dt_fancy_header_scroll_effect','default'),(15011,8804,'_dt_fancy_header_bg_parallax','0.5'),(15012,8804,'_dt_post_options_back_button',''),(15013,8804,'_dt_post_options_hide_thumbnail','0'),(15014,8804,'_dt_post_options_related_mode','same'),(15015,8804,'_dt_post_options_preview','normal'),(15016,8804,'_dt_microsite_page_layout','wide'),(15017,8804,'_dt_microsite_page_loading','enabled'),(15018,8804,'_dt_microsite_primary_menu',''),(15019,8804,'_dt_microsite_split_left_menu',''),(15020,8804,'_dt_microsite_split_right_menu',''),(15021,8804,'_dt_microsite_mobile_menu',''),(15022,8804,'_dt_microsite_logo_link',''),(15023,8804,'main_logo_heading',''),(15024,8804,'_dt_microsite_main_logo_type','default'),(15025,8804,'_dt_microsite_main_logo_regular','a:0:{}'),(15026,8804,'_dt_microsite_main_logo_hd','a:0:{}'),(15027,8804,'transparent_logo_heading',''),(15028,8804,'_dt_microsite_transparent_logo_type','default'),(15029,8804,'_dt_microsite_transparent_logo_regular','a:0:{}'),(15030,8804,'_dt_microsite_transparent_logo_hd','a:0:{}'),(15031,8804,'_dt_microsite_mixed_logo_type','default'),(15032,8804,'_dt_microsite_mixed_logo_regular','a:0:{}'),(15033,8804,'_dt_microsite_mixed_logo_hd','a:0:{}'),(15034,8804,'floating_logo_heading',''),(15035,8804,'_dt_microsite_floating_logo_type','default'),(15036,8804,'_dt_microsite_floating_logo_regular','a:0:{}'),(15037,8804,'_dt_microsite_floating_logo_hd','a:0:{}'),(15038,8804,'_dt_microsite_mobile_logo_type','default'),(15039,8804,'_dt_microsite_mobile_logo_regular','a:0:{}'),(15040,8804,'_dt_microsite_mobile_logo_hd','a:0:{}'),(15041,8804,'_dt_microsite_transparent_mobile_logo_type','default'),(15042,8804,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(15043,8804,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(15044,8804,'bottom_logo_heading',''),(15045,8804,'_dt_microsite_bottom_logo_type','default'),(15046,8804,'_dt_microsite_bottom_logo_regular','a:0:{}'),(15047,8804,'_dt_microsite_bottom_logo_hd','a:0:{}'),(15048,8804,'favicon_heading',''),(15049,8804,'_dt_microsite_favicon_type','default'),(15050,8804,'_dt_microsite_favicon','a:0:{}'),(15051,8804,'_wc_memberships_force_public','no'),(15052,8804,'_wc_memberships_use_custom_post_content_restricted_message','no'),(15053,8804,'_oembed_7a575eaf2c3631490dce40468cc4e2ec','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/YJ7dWMhlAoE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15054,8804,'_oembed_time_7a575eaf2c3631490dce40468cc4e2ec','1536574168'),(15055,8804,'_oembed_ad9066fef1140e3498abefb6054dac2e','<iframe width=\"920\" height=\"518\" src=\"https://www.youtube.com/embed/YJ7dWMhlAoE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15056,8804,'_oembed_time_ad9066fef1140e3498abefb6054dac2e','1536574099'),(15057,8804,'_oembed_1a01742bca2a76b62d3a6437002543d8','<iframe width=\"910\" height=\"512\" src=\"https://www.youtube.com/embed/YJ7dWMhlAoE?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15058,8804,'_oembed_time_1a01742bca2a76b62d3a6437002543d8','1536928234'),(15059,8890,'_edit_last','2'),(15060,8890,'_thumbnail_id','8891'),(15061,8890,'_wp_page_template','default'),(15062,8890,'slide_template','default'),(15063,8890,'_wpb_vc_js_status','false'),(15064,8890,'_dt_sidebar_position','right'),(15065,8890,'_dt_sidebar_widgetarea_id','sidebar_1'),(15066,8890,'_dt_sidebar_hide_on_mobile','0'),(15067,8890,'_dt_footer_show','1'),(15068,8890,'_dt_footer_widgetarea_id','sidebar_2'),(15069,8890,'_dt_footer_hide_on_mobile','0'),(15070,8890,'_dt_header_title','enabled'),(15071,8890,'_dt_header_background','normal'),(15072,8890,'_dt_header_background_below_slideshow','disabled'),(15073,8890,'_dt_header_transparent_bg_color_scheme','light'),(15074,8890,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(15075,8890,'_dt_header_transparent_top_bar_bg_opacity','25'),(15076,8890,'_dt_header_transparent_bg_color','#000000'),(15077,8890,'_dt_header_transparent_bg_opacity','50'),(15078,8890,'_dt_header_disabled_background','normal'),(15079,8890,'_dt_header_disabled_transparent_bg_color_scheme','light'),(15080,8890,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(15081,8890,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(15082,8890,'_dt_header_disabled_transparent_bg_color','#000000'),(15083,8890,'_dt_header_disabled_transparent_bg_opacity','50'),(15084,8890,'_dt_page_overrides_top_margin',''),(15085,8890,'_dt_page_overrides_bottom_margin',''),(15086,8890,'_dt_slideshow_mode','porthole'),(15087,8890,'_dt_slideshow_layout','fullwidth'),(15088,8890,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(15089,8890,'_dt_slideshow_scaling','fill'),(15090,8890,'_dt_slideshow_autoplay','paused'),(15091,8890,'_dt_slideshow_autoslide_interval','5000'),(15092,8890,'_dt_slideshow_hide_captions','0'),(15093,8890,'_dt_slideshow_photo_scroller_layout','fullscreen'),(15094,8890,'_dt_slideshow_photo_scroller_bg_color','#000000'),(15095,8890,'_dt_slideshow_photo_scroller_overlay','1'),(15096,8890,'_dt_slideshow_photo_scroller_top_padding','0'),(15097,8890,'_dt_slideshow_photo_scroller_bottom_padding','0'),(15098,8890,'_dt_slideshow_photo_scroller_side_paddings','0'),(15099,8890,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(15100,8890,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(15101,8890,'_dt_slideshow_photo_scroller_thumbnails_width',''),(15102,8890,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(15103,8890,'_dt_slideshow_photo_scroller_autoplay','play'),(15104,8890,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(15105,8890,'fake_id',''),(15106,8890,'_dt_slideshow_photo_scroller_ls_max_width','100'),(15107,8890,'_dt_slideshow_photo_scroller_ls_min_width','0'),(15108,8890,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(15109,8890,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(15110,8890,'_dt_slideshow_photo_scroller_pt_max_width','100'),(15111,8890,'_dt_slideshow_photo_scroller_pt_min_width','0'),(15112,8890,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(15113,8890,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(15114,8890,'_dt_slideshow_revolution_slider','none'),(15115,8890,'_dt_slideshow_layer_slider','none'),(15116,8890,'_dt_slideshow_layer_show_bg_and_paddings','0'),(15117,8890,'_dt_fancy_header_layout_heading',''),(15118,8890,'_dt_fancy_header_title_aligment','center'),(15119,8890,'_dt_fancy_header_height','300'),(15120,8890,'_dt_fancy_header_padding-top','0px'),(15121,8890,'_dt_fancy_header_padding-bottom','0px'),(15122,8890,'_dt_fancy_header_breadcrumbs_heading',''),(15123,8890,'_dt_fancy_header_breadcrumbs','enabled'),(15124,8890,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(15125,8890,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(15126,8890,'_dt_fancy_header_title_heading',''),(15127,8890,'_dt_fancy_header_title_mode','custom'),(15128,8890,'_dt_fancy_header_title',''),(15129,8890,'_dt_fancy_header_title_font_size','30'),(15130,8890,'_dt_fancy_header_title_line_height','36'),(15131,8890,'_dt_fancy_header_uppercase','0'),(15132,8890,'_dt_fancy_header_title_color_mode','color'),(15133,8890,'_dt_fancy_header_title_color','#ffffff'),(15134,8890,'_dt_fancy_header_subtitle_heading',''),(15135,8890,'_dt_fancy_header_subtitle',''),(15136,8890,'_dt_fancy_header_subtitle_font_size','18'),(15137,8890,'_dt_fancy_header_subtitle_line_height','26'),(15138,8890,'_dt_fancy_header_subtitle_uppercase','0'),(15139,8890,'_dt_fancy_header_subtitle_color_mode','color'),(15140,8890,'_dt_fancy_header_subtitle_color','#ffffff'),(15141,8890,'_dt_fancy_header_bg_heading',''),(15142,8890,'_dt_fancy_header_bg_color','#222222'),(15143,8890,'_dt_fancy_header_bg_image','a:0:{}'),(15144,8890,'_dt_fancy_header_bg_repeat','no-repeat'),(15145,8890,'_dt_fancy_header_bg_position_x','center'),(15146,8890,'_dt_fancy_header_bg_position_y','center'),(15147,8890,'_dt_fancy_header_bg_fullscreen','1'),(15148,8890,'_dt_fancy_header_bg_overlay','0'),(15149,8890,'_dt_fancy_header_overlay_color','#000'),(15150,8890,'_dt_fancy_header_bg_overlay_opacity','50'),(15151,8890,'_dt_fancy_header_scroll_effect','default'),(15152,8890,'_dt_fancy_header_bg_parallax','0.5'),(15153,8890,'_dt_post_options_back_button',''),(15154,8890,'_dt_post_options_hide_thumbnail','0'),(15155,8890,'_dt_post_options_related_mode','same'),(15156,8890,'_dt_post_options_preview','normal'),(15157,8890,'_dt_microsite_page_layout','wide'),(15158,8890,'_dt_microsite_page_loading','enabled'),(15159,8890,'_dt_microsite_primary_menu',''),(15160,8890,'_dt_microsite_split_left_menu',''),(15161,8890,'_dt_microsite_split_right_menu',''),(15162,8890,'_dt_microsite_mobile_menu',''),(15163,8890,'_dt_microsite_logo_link',''),(15164,8890,'main_logo_heading',''),(15165,8890,'_dt_microsite_main_logo_type','default'),(15166,8890,'_dt_microsite_main_logo_regular','a:0:{}'),(15167,8890,'_dt_microsite_main_logo_hd','a:0:{}'),(15168,8890,'transparent_logo_heading',''),(15169,8890,'_dt_microsite_transparent_logo_type','default'),(15170,8890,'_dt_microsite_transparent_logo_regular','a:0:{}'),(15171,8890,'_dt_microsite_transparent_logo_hd','a:0:{}'),(15172,8890,'_dt_microsite_mixed_logo_type','default'),(15173,8890,'_dt_microsite_mixed_logo_regular','a:0:{}'),(15174,8890,'_dt_microsite_mixed_logo_hd','a:0:{}'),(15175,8890,'floating_logo_heading',''),(15176,8890,'_dt_microsite_floating_logo_type','default'),(15177,8890,'_dt_microsite_floating_logo_regular','a:0:{}'),(15178,8890,'_dt_microsite_floating_logo_hd','a:0:{}'),(15179,8890,'_dt_microsite_mobile_logo_type','default'),(15180,8890,'_dt_microsite_mobile_logo_regular','a:0:{}'),(15181,8890,'_dt_microsite_mobile_logo_hd','a:0:{}'),(15182,8890,'_dt_microsite_transparent_mobile_logo_type','default'),(15183,8890,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(15184,8890,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(15185,8890,'bottom_logo_heading',''),(15186,8890,'_dt_microsite_bottom_logo_type','default'),(15187,8890,'_dt_microsite_bottom_logo_regular','a:0:{}'),(15188,8890,'_dt_microsite_bottom_logo_hd','a:0:{}'),(15189,8890,'favicon_heading',''),(15190,8890,'_dt_microsite_favicon_type','default'),(15191,8890,'_dt_microsite_favicon','a:0:{}'),(15192,8890,'_wc_memberships_force_public','no'),(15193,8890,'_wc_memberships_use_custom_post_content_restricted_message','no'),(15194,8890,'_oembed_4f8bb4b0d1a0a42ecc359c95d3cdca25','<iframe width=\"906\" height=\"510\" src=\"https://www.youtube.com/embed/EmIcR7R2xwY?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15195,8890,'_oembed_time_4f8bb4b0d1a0a42ecc359c95d3cdca25','1537168078'),(15196,8890,'_oembed_4e3b8e9d64728db5f8dbe5de9d037ca4','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/EmIcR7R2xwY?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15197,8890,'_oembed_time_4e3b8e9d64728db5f8dbe5de9d037ca4','1537168112'),(15198,8890,'_oembed_ea20a95a9f1ae87ea36a547abaae3b3c','<iframe width=\"910\" height=\"512\" src=\"https://www.youtube.com/embed/EmIcR7R2xwY?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15199,8890,'_oembed_time_ea20a95a9f1ae87ea36a547abaae3b3c','1537168113'),(15200,8890,'_oembed_a373322f897fcc618d199fb62f7a074b','<iframe width=\"918\" height=\"516\" src=\"https://www.youtube.com/embed/EmIcR7R2xwY?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15201,8890,'_oembed_time_a373322f897fcc618d199fb62f7a074b','1537805821'),(15202,9491,'_oembed_time_5d40801a7ae9225e27df4ce49b8240ae','1540104636'),(15203,9491,'_oembed_5d40801a7ae9225e27df4ce49b8240ae','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/4hmbG6K3WN0?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15204,9491,'_edit_last','2'),(15205,9491,'_thumbnail_id','9492'),(15206,9491,'_wp_page_template','default'),(15207,9491,'slide_template','default'),(15208,9491,'_wpb_vc_js_status','false'),(15209,9491,'_dt_sidebar_position','right'),(15210,9491,'_dt_sidebar_widgetarea_id','sidebar_1'),(15211,9491,'_dt_sidebar_hide_on_mobile','0'),(15212,9491,'_dt_footer_show','1'),(15213,9491,'_dt_footer_widgetarea_id','sidebar_2'),(15214,9491,'_dt_footer_hide_on_mobile','0'),(15215,9491,'_dt_header_title','enabled'),(15216,9491,'_dt_header_background','normal'),(15217,9491,'_dt_header_background_below_slideshow','disabled'),(15218,9491,'_dt_header_transparent_bg_color_scheme','light'),(15219,9491,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(15220,9491,'_dt_header_transparent_top_bar_bg_opacity','25'),(15221,9491,'_dt_header_transparent_bg_color','#000000'),(15222,9491,'_dt_header_transparent_bg_opacity','50'),(15223,9491,'_dt_header_disabled_background','normal'),(15224,9491,'_dt_header_disabled_transparent_bg_color_scheme','light'),(15225,9491,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(15226,9491,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(15227,9491,'_dt_header_disabled_transparent_bg_color','#000000'),(15228,9491,'_dt_header_disabled_transparent_bg_opacity','50'),(15229,9491,'_dt_page_overrides_top_margin',''),(15230,9491,'_dt_page_overrides_bottom_margin',''),(15231,9491,'_dt_slideshow_mode','porthole'),(15232,9491,'_dt_slideshow_layout','fullwidth'),(15233,9491,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(15234,9491,'_dt_slideshow_scaling','fill'),(15235,9491,'_dt_slideshow_autoplay','paused'),(15236,9491,'_dt_slideshow_autoslide_interval','5000'),(15237,9491,'_dt_slideshow_hide_captions','0'),(15238,9491,'_dt_slideshow_photo_scroller_layout','fullscreen'),(15239,9491,'_dt_slideshow_photo_scroller_bg_color','#000000'),(15240,9491,'_dt_slideshow_photo_scroller_overlay','1'),(15241,9491,'_dt_slideshow_photo_scroller_top_padding','0'),(15242,9491,'_dt_slideshow_photo_scroller_bottom_padding','0'),(15243,9491,'_dt_slideshow_photo_scroller_side_paddings','0'),(15244,9491,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(15245,9491,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(15246,9491,'_dt_slideshow_photo_scroller_thumbnails_width',''),(15247,9491,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(15248,9491,'_dt_slideshow_photo_scroller_autoplay','play'),(15249,9491,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(15250,9491,'fake_id',''),(15251,9491,'_dt_slideshow_photo_scroller_ls_max_width','100'),(15252,9491,'_dt_slideshow_photo_scroller_ls_min_width','0'),(15253,9491,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(15254,9491,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(15255,9491,'_dt_slideshow_photo_scroller_pt_max_width','100'),(15256,9491,'_dt_slideshow_photo_scroller_pt_min_width','0'),(15257,9491,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(15258,9491,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(15259,9491,'_dt_slideshow_revolution_slider','none'),(15260,9491,'_dt_slideshow_layer_slider','none'),(15261,9491,'_dt_slideshow_layer_show_bg_and_paddings','0'),(15262,9491,'_dt_fancy_header_layout_heading',''),(15263,9491,'_dt_fancy_header_title_aligment','center'),(15264,9491,'_dt_fancy_header_height','300'),(15265,9491,'_dt_fancy_header_padding-top','0px'),(15266,9491,'_dt_fancy_header_padding-bottom','0px'),(15267,9491,'_dt_fancy_header_breadcrumbs_heading',''),(15268,9491,'_dt_fancy_header_breadcrumbs','enabled'),(15269,9491,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(15270,9491,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(15271,9491,'_dt_fancy_header_title_heading',''),(15272,9491,'_dt_fancy_header_title_mode','custom'),(15273,9491,'_dt_fancy_header_title',''),(15274,9491,'_dt_fancy_header_title_font_size','30'),(15275,9491,'_dt_fancy_header_title_line_height','36'),(15276,9491,'_dt_fancy_header_uppercase','0'),(15277,9491,'_dt_fancy_header_title_color_mode','color'),(15278,9491,'_dt_fancy_header_title_color','#ffffff'),(15279,9491,'_dt_fancy_header_subtitle_heading',''),(15280,9491,'_dt_fancy_header_subtitle',''),(15281,9491,'_dt_fancy_header_subtitle_font_size','18'),(15282,9491,'_dt_fancy_header_subtitle_line_height','26'),(15283,9491,'_dt_fancy_header_subtitle_uppercase','0'),(15284,9491,'_dt_fancy_header_subtitle_color_mode','color'),(15285,9491,'_dt_fancy_header_subtitle_color','#ffffff'),(15286,9491,'_dt_fancy_header_bg_heading',''),(15287,9491,'_dt_fancy_header_bg_color','#222222'),(15288,9491,'_dt_fancy_header_bg_image','a:0:{}'),(15289,9491,'_dt_fancy_header_bg_repeat','no-repeat'),(15290,9491,'_dt_fancy_header_bg_position_x','center'),(15291,9491,'_dt_fancy_header_bg_position_y','center'),(15292,9491,'_dt_fancy_header_bg_fullscreen','1'),(15293,9491,'_dt_fancy_header_bg_overlay','0'),(15294,9491,'_dt_fancy_header_overlay_color','#000'),(15295,9491,'_dt_fancy_header_bg_overlay_opacity','50'),(15296,9491,'_dt_fancy_header_scroll_effect','default'),(15297,9491,'_dt_fancy_header_bg_parallax','0.5'),(15298,9491,'_dt_post_options_back_button',''),(15299,9491,'_dt_post_options_hide_thumbnail','0'),(15300,9491,'_dt_post_options_related_mode','same'),(15301,9491,'_dt_post_options_preview','normal'),(15302,9491,'_dt_microsite_page_layout','wide'),(15303,9491,'_dt_microsite_page_loading','enabled'),(15304,9491,'_dt_microsite_primary_menu',''),(15305,9491,'_dt_microsite_split_left_menu',''),(15306,9491,'_dt_microsite_split_right_menu',''),(15307,9491,'_dt_microsite_mobile_menu',''),(15308,9491,'_dt_microsite_logo_link',''),(15309,9491,'main_logo_heading',''),(15310,9491,'_dt_microsite_main_logo_type','default'),(15311,9491,'_dt_microsite_main_logo_regular','a:0:{}'),(15312,9491,'_dt_microsite_main_logo_hd','a:0:{}'),(15313,9491,'transparent_logo_heading',''),(15314,9491,'_dt_microsite_transparent_logo_type','default'),(15315,9491,'_dt_microsite_transparent_logo_regular','a:0:{}'),(15316,9491,'_dt_microsite_transparent_logo_hd','a:0:{}'),(15317,9491,'_dt_microsite_mixed_logo_type','default'),(15318,9491,'_dt_microsite_mixed_logo_regular','a:0:{}'),(15319,9491,'_dt_microsite_mixed_logo_hd','a:0:{}'),(15320,9491,'floating_logo_heading',''),(15321,9491,'_dt_microsite_floating_logo_type','default'),(15322,9491,'_dt_microsite_floating_logo_regular','a:0:{}'),(15323,9491,'_dt_microsite_floating_logo_hd','a:0:{}'),(15324,9491,'_dt_microsite_mobile_logo_type','default'),(15325,9491,'_dt_microsite_mobile_logo_regular','a:0:{}'),(15326,9491,'_dt_microsite_mobile_logo_hd','a:0:{}'),(15327,9491,'_dt_microsite_transparent_mobile_logo_type','default'),(15328,9491,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(15329,9491,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(15330,9491,'bottom_logo_heading',''),(15331,9491,'_dt_microsite_bottom_logo_type','default'),(15332,9491,'_dt_microsite_bottom_logo_regular','a:0:{}'),(15333,9491,'_dt_microsite_bottom_logo_hd','a:0:{}'),(15334,9491,'favicon_heading',''),(15335,9491,'_dt_microsite_favicon_type','default'),(15336,9491,'_dt_microsite_favicon','a:0:{}'),(15337,9491,'_wc_memberships_force_public','no'),(15338,9491,'_wc_memberships_use_custom_post_content_restricted_message','no'),(15339,9491,'_wp_old_date','2018-10-12'),(15340,9698,'_thumbnail_id','9701'),(15341,9698,'_edit_last','2'),(15342,9698,'_wp_page_template','default'),(15343,9698,'slide_template','default'),(15344,9698,'_wpb_vc_js_status','false'),(15345,9698,'_dt_sidebar_position','right'),(15346,9698,'_dt_sidebar_widgetarea_id','sidebar_1'),(15347,9698,'_dt_sidebar_hide_on_mobile','0'),(15348,9698,'_dt_footer_show','1'),(15349,9698,'_dt_footer_widgetarea_id','sidebar_2'),(15350,9698,'_dt_footer_hide_on_mobile','0'),(15351,9698,'_dt_header_title','enabled'),(15352,9698,'_dt_header_background','normal'),(15353,9698,'_dt_header_background_below_slideshow','disabled'),(15354,9698,'_dt_header_transparent_bg_color_scheme','light'),(15355,9698,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(15356,9698,'_dt_header_transparent_top_bar_bg_opacity','25'),(15357,9698,'_dt_header_transparent_bg_color','#000000'),(15358,9698,'_dt_header_transparent_bg_opacity','50'),(15359,9698,'_dt_header_disabled_background','normal'),(15360,9698,'_dt_header_disabled_transparent_bg_color_scheme','light'),(15361,9698,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(15362,9698,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(15363,9698,'_dt_header_disabled_transparent_bg_color','#000000'),(15364,9698,'_dt_header_disabled_transparent_bg_opacity','50'),(15365,9698,'_dt_page_overrides_top_margin',''),(15366,9698,'_dt_page_overrides_bottom_margin',''),(15367,9698,'_dt_slideshow_mode','porthole'),(15368,9698,'_dt_slideshow_layout','fullwidth'),(15369,9698,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(15370,9698,'_dt_slideshow_scaling','fill'),(15371,9698,'_dt_slideshow_autoplay','paused'),(15372,9698,'_dt_slideshow_autoslide_interval','5000'),(15373,9698,'_dt_slideshow_hide_captions','0'),(15374,9698,'_dt_slideshow_photo_scroller_layout','fullscreen'),(15375,9698,'_dt_slideshow_photo_scroller_bg_color','#000000'),(15376,9698,'_dt_slideshow_photo_scroller_overlay','1'),(15377,9698,'_dt_slideshow_photo_scroller_top_padding','0'),(15378,9698,'_dt_slideshow_photo_scroller_bottom_padding','0'),(15379,9698,'_dt_slideshow_photo_scroller_side_paddings','0'),(15380,9698,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(15381,9698,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(15382,9698,'_dt_slideshow_photo_scroller_thumbnails_width',''),(15383,9698,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(15384,9698,'_dt_slideshow_photo_scroller_autoplay','play'),(15385,9698,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(15386,9698,'fake_id',''),(15387,9698,'_dt_slideshow_photo_scroller_ls_max_width','100'),(15388,9698,'_dt_slideshow_photo_scroller_ls_min_width','0'),(15389,9698,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(15390,9698,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(15391,9698,'_dt_slideshow_photo_scroller_pt_max_width','100'),(15392,9698,'_dt_slideshow_photo_scroller_pt_min_width','0'),(15393,9698,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(15394,9698,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(15395,9698,'_dt_slideshow_revolution_slider','none'),(15396,9698,'_dt_slideshow_layer_slider','none'),(15397,9698,'_dt_slideshow_layer_show_bg_and_paddings','0'),(15398,9698,'_dt_fancy_header_layout_heading',''),(15399,9698,'_dt_fancy_header_title_aligment','center'),(15400,9698,'_dt_fancy_header_height','300'),(15401,9698,'_dt_fancy_header_padding-top','0px'),(15402,9698,'_dt_fancy_header_padding-bottom','0px'),(15403,9698,'_dt_fancy_header_breadcrumbs_heading',''),(15404,9698,'_dt_fancy_header_breadcrumbs','enabled'),(15405,9698,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(15406,9698,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(15407,9698,'_dt_fancy_header_title_heading',''),(15408,9698,'_dt_fancy_header_title_mode','custom'),(15409,9698,'_dt_fancy_header_title',''),(15410,9698,'_dt_fancy_header_title_font_size','30'),(15411,9698,'_dt_fancy_header_title_line_height','36'),(15412,9698,'_dt_fancy_header_uppercase','0'),(15413,9698,'_dt_fancy_header_title_color_mode','color'),(15414,9698,'_dt_fancy_header_title_color','#ffffff'),(15415,9698,'_dt_fancy_header_subtitle_heading',''),(15416,9698,'_dt_fancy_header_subtitle',''),(15417,9698,'_dt_fancy_header_subtitle_font_size','18'),(15418,9698,'_dt_fancy_header_subtitle_line_height','26'),(15419,9698,'_dt_fancy_header_subtitle_uppercase','0'),(15420,9698,'_dt_fancy_header_subtitle_color_mode','color'),(15421,9698,'_dt_fancy_header_subtitle_color','#ffffff'),(15422,9698,'_dt_fancy_header_bg_heading',''),(15423,9698,'_dt_fancy_header_bg_color','#222222'),(15424,9698,'_dt_fancy_header_bg_image','a:0:{}'),(15425,9698,'_dt_fancy_header_bg_repeat','no-repeat'),(15426,9698,'_dt_fancy_header_bg_position_x','center'),(15427,9698,'_dt_fancy_header_bg_position_y','center'),(15428,9698,'_dt_fancy_header_bg_fullscreen','1'),(15429,9698,'_dt_fancy_header_bg_overlay','0'),(15430,9698,'_dt_fancy_header_overlay_color','#000'),(15431,9698,'_dt_fancy_header_bg_overlay_opacity','50'),(15432,9698,'_dt_fancy_header_scroll_effect','default'),(15433,9698,'_dt_fancy_header_bg_parallax','0.5'),(15434,9698,'_dt_post_options_back_button',''),(15435,9698,'_dt_post_options_hide_thumbnail','0'),(15436,9698,'_dt_post_options_related_mode','same'),(15437,9698,'_dt_post_options_preview','normal'),(15438,9698,'_dt_microsite_page_layout','wide'),(15439,9698,'_dt_microsite_page_loading','enabled'),(15440,9698,'_dt_microsite_primary_menu',''),(15441,9698,'_dt_microsite_split_left_menu',''),(15442,9698,'_dt_microsite_split_right_menu',''),(15443,9698,'_dt_microsite_mobile_menu',''),(15444,9698,'_dt_microsite_logo_link',''),(15445,9698,'main_logo_heading',''),(15446,9698,'_dt_microsite_main_logo_type','default'),(15447,9698,'_dt_microsite_main_logo_regular','a:0:{}'),(15448,9698,'_dt_microsite_main_logo_hd','a:0:{}'),(15449,9698,'transparent_logo_heading',''),(15450,9698,'_dt_microsite_transparent_logo_type','default'),(15451,9698,'_dt_microsite_transparent_logo_regular','a:0:{}'),(15452,9698,'_dt_microsite_transparent_logo_hd','a:0:{}'),(15453,9698,'_dt_microsite_mixed_logo_type','default'),(15454,9698,'_dt_microsite_mixed_logo_regular','a:0:{}'),(15455,9698,'_dt_microsite_mixed_logo_hd','a:0:{}'),(15456,9698,'floating_logo_heading',''),(15457,9698,'_dt_microsite_floating_logo_type','default'),(15458,9698,'_dt_microsite_floating_logo_regular','a:0:{}'),(15459,9698,'_dt_microsite_floating_logo_hd','a:0:{}'),(15460,9698,'_dt_microsite_mobile_logo_type','default'),(15461,9698,'_dt_microsite_mobile_logo_regular','a:0:{}'),(15462,9698,'_dt_microsite_mobile_logo_hd','a:0:{}'),(15463,9698,'_dt_microsite_transparent_mobile_logo_type','default'),(15464,9698,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(15465,9698,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(15466,9698,'bottom_logo_heading',''),(15467,9698,'_dt_microsite_bottom_logo_type','default'),(15468,9698,'_dt_microsite_bottom_logo_regular','a:0:{}'),(15469,9698,'_dt_microsite_bottom_logo_hd','a:0:{}'),(15470,9698,'favicon_heading',''),(15471,9698,'_dt_microsite_favicon_type','default'),(15472,9698,'_dt_microsite_favicon','a:0:{}'),(15473,9698,'_wc_memberships_force_public','no'),(15474,9698,'_wc_memberships_use_custom_post_content_restricted_message','no'),(15475,9698,'_wp_old_slug','the-ripple-effect-how-1-action-can-impact-hundreds-of-others-whats-your-ripple-effect'),(15476,9698,'iawp_total_views','7'),(15477,9752,'_edit_last','2'),(15478,9752,'_wp_page_template','default'),(15479,9752,'slide_template','default'),(15480,9752,'_wpb_vc_js_status','false'),(15481,9752,'_dt_sidebar_position','right'),(15482,9752,'_dt_sidebar_widgetarea_id','sidebar_1'),(15483,9752,'_dt_sidebar_hide_on_mobile','0'),(15484,9752,'_dt_footer_show','1'),(15485,9752,'_dt_footer_widgetarea_id','sidebar_2'),(15486,9752,'_dt_footer_hide_on_mobile','0'),(15487,9752,'_dt_header_title','enabled'),(15488,9752,'_dt_header_background','normal'),(15489,9752,'_dt_header_background_below_slideshow','disabled'),(15490,9752,'_dt_header_transparent_bg_color_scheme','light'),(15491,9752,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(15492,9752,'_dt_header_transparent_top_bar_bg_opacity','25'),(15493,9752,'_dt_header_transparent_bg_color','#000000'),(15494,9752,'_dt_header_transparent_bg_opacity','50'),(15495,9752,'_dt_header_disabled_background','normal'),(15496,9752,'_dt_header_disabled_transparent_bg_color_scheme','light'),(15497,9752,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(15498,9752,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(15499,9752,'_dt_header_disabled_transparent_bg_color','#000000'),(15500,9752,'_dt_header_disabled_transparent_bg_opacity','50'),(15501,9752,'_dt_page_overrides_top_margin',''),(15502,9752,'_dt_page_overrides_bottom_margin',''),(15503,9752,'_dt_slideshow_mode','porthole'),(15504,9752,'_dt_slideshow_layout','fullwidth'),(15505,9752,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(15506,9752,'_dt_slideshow_scaling','fill'),(15507,9752,'_dt_slideshow_autoplay','paused'),(15508,9752,'_dt_slideshow_autoslide_interval','5000'),(15509,9752,'_dt_slideshow_hide_captions','0'),(15510,9752,'_dt_slideshow_photo_scroller_layout','fullscreen'),(15511,9752,'_dt_slideshow_photo_scroller_bg_color','#000000'),(15512,9752,'_dt_slideshow_photo_scroller_overlay','1'),(15513,9752,'_dt_slideshow_photo_scroller_top_padding','0'),(15514,9752,'_dt_slideshow_photo_scroller_bottom_padding','0'),(15515,9752,'_dt_slideshow_photo_scroller_side_paddings','0'),(15516,9752,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(15517,9752,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(15518,9752,'_dt_slideshow_photo_scroller_thumbnails_width',''),(15519,9752,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(15520,9752,'_dt_slideshow_photo_scroller_autoplay','play'),(15521,9752,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(15522,9752,'fake_id',''),(15523,9752,'_dt_slideshow_photo_scroller_ls_max_width','100'),(15524,9752,'_dt_slideshow_photo_scroller_ls_min_width','0'),(15525,9752,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(15526,9752,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(15527,9752,'_dt_slideshow_photo_scroller_pt_max_width','100'),(15528,9752,'_dt_slideshow_photo_scroller_pt_min_width','0'),(15529,9752,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(15530,9752,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(15531,9752,'_dt_slideshow_revolution_slider','none'),(15532,9752,'_dt_slideshow_layer_slider','none'),(15533,9752,'_dt_slideshow_layer_show_bg_and_paddings','0'),(15534,9752,'_dt_fancy_header_layout_heading',''),(15535,9752,'_dt_fancy_header_title_aligment','center'),(15536,9752,'_dt_fancy_header_height','300'),(15537,9752,'_dt_fancy_header_padding-top','0px'),(15538,9752,'_dt_fancy_header_padding-bottom','0px'),(15539,9752,'_dt_fancy_header_breadcrumbs_heading',''),(15540,9752,'_dt_fancy_header_breadcrumbs','enabled'),(15541,9752,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(15542,9752,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(15543,9752,'_dt_fancy_header_title_heading',''),(15544,9752,'_dt_fancy_header_title_mode','custom'),(15545,9752,'_dt_fancy_header_title',''),(15546,9752,'_dt_fancy_header_title_font_size','30'),(15547,9752,'_dt_fancy_header_title_line_height','36'),(15548,9752,'_dt_fancy_header_uppercase','0'),(15549,9752,'_dt_fancy_header_title_color_mode','color'),(15550,9752,'_dt_fancy_header_title_color','#ffffff'),(15551,9752,'_dt_fancy_header_subtitle_heading',''),(15552,9752,'_dt_fancy_header_subtitle',''),(15553,9752,'_dt_fancy_header_subtitle_font_size','18'),(15554,9752,'_dt_fancy_header_subtitle_line_height','26'),(15555,9752,'_dt_fancy_header_subtitle_uppercase','0'),(15556,9752,'_dt_fancy_header_subtitle_color_mode','color'),(15557,9752,'_dt_fancy_header_subtitle_color','#ffffff'),(15558,9752,'_dt_fancy_header_bg_heading',''),(15559,9752,'_dt_fancy_header_bg_color','#222222'),(15560,9752,'_dt_fancy_header_bg_image','a:0:{}'),(15561,9752,'_dt_fancy_header_bg_repeat','no-repeat'),(15562,9752,'_dt_fancy_header_bg_position_x','center'),(15563,9752,'_dt_fancy_header_bg_position_y','center'),(15564,9752,'_dt_fancy_header_bg_fullscreen','1'),(15565,9752,'_dt_fancy_header_bg_overlay','0'),(15566,9752,'_dt_fancy_header_overlay_color','#000'),(15567,9752,'_dt_fancy_header_bg_overlay_opacity','50'),(15568,9752,'_dt_fancy_header_scroll_effect','default'),(15569,9752,'_dt_fancy_header_bg_parallax','0.5'),(15570,9752,'_dt_post_options_back_button',''),(15571,9752,'_dt_post_options_hide_thumbnail','0'),(15572,9752,'_dt_post_options_related_mode','same'),(15573,9752,'_dt_post_options_preview','normal'),(15574,9752,'_dt_microsite_page_layout','wide'),(15575,9752,'_dt_microsite_page_loading','enabled'),(15576,9752,'_dt_microsite_primary_menu',''),(15577,9752,'_dt_microsite_split_left_menu',''),(15578,9752,'_dt_microsite_split_right_menu',''),(15579,9752,'_dt_microsite_mobile_menu',''),(15580,9752,'_dt_microsite_logo_link',''),(15581,9752,'main_logo_heading',''),(15582,9752,'_dt_microsite_main_logo_type','default'),(15583,9752,'_dt_microsite_main_logo_regular','a:0:{}'),(15584,9752,'_dt_microsite_main_logo_hd','a:0:{}'),(15585,9752,'transparent_logo_heading',''),(15586,9752,'_dt_microsite_transparent_logo_type','default'),(15587,9752,'_dt_microsite_transparent_logo_regular','a:0:{}'),(15588,9752,'_dt_microsite_transparent_logo_hd','a:0:{}'),(15589,9752,'_dt_microsite_mixed_logo_type','default'),(15590,9752,'_dt_microsite_mixed_logo_regular','a:0:{}'),(15591,9752,'_dt_microsite_mixed_logo_hd','a:0:{}'),(15592,9752,'floating_logo_heading',''),(15593,9752,'_dt_microsite_floating_logo_type','default'),(15594,9752,'_dt_microsite_floating_logo_regular','a:0:{}'),(15595,9752,'_dt_microsite_floating_logo_hd','a:0:{}'),(15596,9752,'_dt_microsite_mobile_logo_type','default'),(15597,9752,'_dt_microsite_mobile_logo_regular','a:0:{}'),(15598,9752,'_dt_microsite_mobile_logo_hd','a:0:{}'),(15599,9752,'_dt_microsite_transparent_mobile_logo_type','default'),(15600,9752,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(15601,9752,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(15602,9752,'bottom_logo_heading',''),(15603,9752,'_dt_microsite_bottom_logo_type','default'),(15604,9752,'_dt_microsite_bottom_logo_regular','a:0:{}'),(15605,9752,'_dt_microsite_bottom_logo_hd','a:0:{}'),(15606,9752,'favicon_heading',''),(15607,9752,'_dt_microsite_favicon_type','default'),(15608,9752,'_dt_microsite_favicon','a:0:{}'),(15609,9752,'_wc_memberships_force_public','no'),(15610,9752,'_wc_memberships_use_custom_post_content_restricted_message','no'),(15611,9752,'_thumbnail_id','9753'),(15612,9178,'_edit_last','2'),(15613,9178,'_oembed_76d62619cf32f26969a224478e48dfa9','<iframe width=\"914\" height=\"514\" src=\"https://www.youtube.com/embed/_aF05Y04v6A?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15614,9178,'_oembed_time_76d62619cf32f26969a224478e48dfa9','1537806947'),(15615,9178,'_thumbnail_id','9179'),(15616,9178,'_wp_page_template','default'),(15617,9178,'slide_template','default'),(15618,9178,'_wpb_vc_js_status','false'),(15619,9178,'_dt_sidebar_position','right'),(15620,9178,'_dt_sidebar_widgetarea_id','sidebar_1'),(15621,9178,'_dt_sidebar_hide_on_mobile','0'),(15622,9178,'_dt_footer_show','1'),(15623,9178,'_dt_footer_widgetarea_id','sidebar_2'),(15624,9178,'_dt_footer_hide_on_mobile','0'),(15625,9178,'_dt_header_title','enabled'),(15626,9178,'_dt_header_background','normal'),(15627,9178,'_dt_header_background_below_slideshow','disabled'),(15628,9178,'_dt_header_transparent_bg_color_scheme','light'),(15629,9178,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(15630,9178,'_dt_header_transparent_top_bar_bg_opacity','25'),(15631,9178,'_dt_header_transparent_bg_color','#000000'),(15632,9178,'_dt_header_transparent_bg_opacity','50'),(15633,9178,'_dt_header_disabled_background','normal'),(15634,9178,'_dt_header_disabled_transparent_bg_color_scheme','light'),(15635,9178,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(15636,9178,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(15637,9178,'_dt_header_disabled_transparent_bg_color','#000000'),(15638,9178,'_dt_header_disabled_transparent_bg_opacity','50'),(15639,9178,'_dt_page_overrides_top_margin',''),(15640,9178,'_dt_page_overrides_bottom_margin',''),(15641,9178,'_dt_slideshow_mode','porthole'),(15642,9178,'_dt_slideshow_layout','fullwidth'),(15643,9178,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(15644,9178,'_dt_slideshow_scaling','fill'),(15645,9178,'_dt_slideshow_autoplay','paused'),(15646,9178,'_dt_slideshow_autoslide_interval','5000'),(15647,9178,'_dt_slideshow_hide_captions','0'),(15648,9178,'_dt_slideshow_photo_scroller_layout','fullscreen'),(15649,9178,'_dt_slideshow_photo_scroller_bg_color','#000000'),(15650,9178,'_dt_slideshow_photo_scroller_overlay','1'),(15651,9178,'_dt_slideshow_photo_scroller_top_padding','0'),(15652,9178,'_dt_slideshow_photo_scroller_bottom_padding','0'),(15653,9178,'_dt_slideshow_photo_scroller_side_paddings','0'),(15654,9178,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(15655,9178,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(15656,9178,'_dt_slideshow_photo_scroller_thumbnails_width',''),(15657,9178,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(15658,9178,'_dt_slideshow_photo_scroller_autoplay','play'),(15659,9178,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(15660,9178,'fake_id',''),(15661,9178,'_dt_slideshow_photo_scroller_ls_max_width','100'),(15662,9178,'_dt_slideshow_photo_scroller_ls_min_width','0'),(15663,9178,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(15664,9178,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(15665,9178,'_dt_slideshow_photo_scroller_pt_max_width','100'),(15666,9178,'_dt_slideshow_photo_scroller_pt_min_width','0'),(15667,9178,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(15668,9178,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(15669,9178,'_dt_slideshow_revolution_slider','none'),(15670,9178,'_dt_slideshow_layer_slider','none'),(15671,9178,'_dt_slideshow_layer_show_bg_and_paddings','0'),(15672,9178,'_dt_fancy_header_layout_heading',''),(15673,9178,'_dt_fancy_header_title_aligment','center'),(15674,9178,'_dt_fancy_header_height','300'),(15675,9178,'_dt_fancy_header_padding-top','0px'),(15676,9178,'_dt_fancy_header_padding-bottom','0px'),(15677,9178,'_dt_fancy_header_breadcrumbs_heading',''),(15678,9178,'_dt_fancy_header_breadcrumbs','enabled'),(15679,9178,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(15680,9178,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(15681,9178,'_dt_fancy_header_title_heading',''),(15682,9178,'_dt_fancy_header_title_mode','custom'),(15683,9178,'_dt_fancy_header_title',''),(15684,9178,'_dt_fancy_header_title_font_size','30'),(15685,9178,'_dt_fancy_header_title_line_height','36'),(15686,9178,'_dt_fancy_header_uppercase','0'),(15687,9178,'_dt_fancy_header_title_color_mode','color'),(15688,9178,'_dt_fancy_header_title_color','#ffffff'),(15689,9178,'_dt_fancy_header_subtitle_heading',''),(15690,9178,'_dt_fancy_header_subtitle',''),(15691,9178,'_dt_fancy_header_subtitle_font_size','18'),(15692,9178,'_dt_fancy_header_subtitle_line_height','26'),(15693,9178,'_dt_fancy_header_subtitle_uppercase','0'),(15694,9178,'_dt_fancy_header_subtitle_color_mode','color'),(15695,9178,'_dt_fancy_header_subtitle_color','#ffffff'),(15696,9178,'_dt_fancy_header_bg_heading',''),(15697,9178,'_dt_fancy_header_bg_color','#222222'),(15698,9178,'_dt_fancy_header_bg_image','a:0:{}'),(15699,9178,'_dt_fancy_header_bg_repeat','no-repeat'),(15700,9178,'_dt_fancy_header_bg_position_x','center'),(15701,9178,'_dt_fancy_header_bg_position_y','center'),(15702,9178,'_dt_fancy_header_bg_fullscreen','1'),(15703,9178,'_dt_fancy_header_bg_overlay','0'),(15704,9178,'_dt_fancy_header_overlay_color','#000'),(15705,9178,'_dt_fancy_header_bg_overlay_opacity','50'),(15706,9178,'_dt_fancy_header_scroll_effect','default'),(15707,9178,'_dt_fancy_header_bg_parallax','0.5'),(15708,9178,'_dt_post_options_back_button',''),(15709,9178,'_dt_post_options_hide_thumbnail','0'),(15710,9178,'_dt_post_options_related_mode','same'),(15711,9178,'_dt_post_options_preview','normal'),(15712,9178,'_dt_microsite_page_layout','wide'),(15713,9178,'_dt_microsite_page_loading','enabled'),(15714,9178,'_dt_microsite_primary_menu',''),(15715,9178,'_dt_microsite_split_left_menu',''),(15716,9178,'_dt_microsite_split_right_menu',''),(15717,9178,'_dt_microsite_mobile_menu',''),(15718,9178,'_dt_microsite_logo_link',''),(15719,9178,'main_logo_heading',''),(15720,9178,'_dt_microsite_main_logo_type','default'),(15721,9178,'_dt_microsite_main_logo_regular','a:0:{}'),(15722,9178,'_dt_microsite_main_logo_hd','a:0:{}'),(15723,9178,'transparent_logo_heading',''),(15724,9178,'_dt_microsite_transparent_logo_type','default'),(15725,9178,'_dt_microsite_transparent_logo_regular','a:0:{}'),(15726,9178,'_dt_microsite_transparent_logo_hd','a:0:{}'),(15727,9178,'_dt_microsite_mixed_logo_type','default'),(15728,9178,'_dt_microsite_mixed_logo_regular','a:0:{}'),(15729,9178,'_dt_microsite_mixed_logo_hd','a:0:{}'),(15730,9178,'floating_logo_heading',''),(15731,9178,'_dt_microsite_floating_logo_type','default'),(15732,9178,'_dt_microsite_floating_logo_regular','a:0:{}'),(15733,9178,'_dt_microsite_floating_logo_hd','a:0:{}'),(15734,9178,'_dt_microsite_mobile_logo_type','default'),(15735,9178,'_dt_microsite_mobile_logo_regular','a:0:{}'),(15736,9178,'_dt_microsite_mobile_logo_hd','a:0:{}'),(15737,9178,'_dt_microsite_transparent_mobile_logo_type','default'),(15738,9178,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(15739,9178,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(15740,9178,'bottom_logo_heading',''),(15741,9178,'_dt_microsite_bottom_logo_type','default'),(15742,9178,'_dt_microsite_bottom_logo_regular','a:0:{}'),(15743,9178,'_dt_microsite_bottom_logo_hd','a:0:{}'),(15744,9178,'favicon_heading',''),(15745,9178,'_dt_microsite_favicon_type','default'),(15746,9178,'_dt_microsite_favicon','a:0:{}'),(15747,9178,'_wc_memberships_force_public','no'),(15748,9178,'_wc_memberships_use_custom_post_content_restricted_message','no'),(15749,9178,'_oembed_ce6a0df0bcf641e6ea47faae354d8cb0','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/_aF05Y04v6A?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15750,9178,'_oembed_time_ce6a0df0bcf641e6ea47faae354d8cb0','1537809164'),(15751,9178,'_oembed_61857f10a3558f469481ac2f20c7e08b','<iframe width=\"918\" height=\"516\" src=\"https://www.youtube.com/embed/_aF05Y04v6A?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15752,9178,'_oembed_time_61857f10a3558f469481ac2f20c7e08b','1537809165'),(15753,9178,'_oembed_cb9c66cc0baa695f8d16fd7f9acbeff1','<iframe title=\"BEHAVIOR CHANGE PART 6 THE 4 MINUTE RULE\" width=\"726\" height=\"408\" src=\"https://www.youtube.com/embed/_aF05Y04v6A?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen></iframe>'),(15754,9178,'_oembed_time_cb9c66cc0baa695f8d16fd7f9acbeff1','1699864385'),(15755,9178,'iawp_total_views','39'),(15756,9226,'_edit_last','2'),(15757,9226,'_oembed_a93f8d479fb86fb39b7d20cdb8035589','<iframe width=\"914\" height=\"514\" src=\"https://www.youtube.com/embed/1bRQ8HR9AEY?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15758,9226,'_oembed_time_a93f8d479fb86fb39b7d20cdb8035589','1538134828'),(15759,9226,'_wp_page_template','default'),(15760,9226,'slide_template','default'),(15761,9226,'_wpb_vc_js_status','false'),(15762,9226,'_dt_sidebar_position','right'),(15763,9226,'_dt_sidebar_widgetarea_id','sidebar_1'),(15764,9226,'_dt_sidebar_hide_on_mobile','0'),(15765,9226,'_dt_footer_show','1'),(15766,9226,'_dt_footer_widgetarea_id','sidebar_2'),(15767,9226,'_dt_footer_hide_on_mobile','0'),(15768,9226,'_dt_header_title','enabled'),(15769,9226,'_dt_header_background','normal'),(15770,9226,'_dt_header_background_below_slideshow','disabled'),(15771,9226,'_dt_header_transparent_bg_color_scheme','light'),(15772,9226,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(15773,9226,'_dt_header_transparent_top_bar_bg_opacity','25'),(15774,9226,'_dt_header_transparent_bg_color','#000000'),(15775,9226,'_dt_header_transparent_bg_opacity','50'),(15776,9226,'_dt_header_disabled_background','normal'),(15777,9226,'_dt_header_disabled_transparent_bg_color_scheme','light'),(15778,9226,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(15779,9226,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(15780,9226,'_dt_header_disabled_transparent_bg_color','#000000'),(15781,9226,'_dt_header_disabled_transparent_bg_opacity','50'),(15782,9226,'_dt_page_overrides_top_margin',''),(15783,9226,'_dt_page_overrides_bottom_margin',''),(15784,9226,'_dt_slideshow_mode','porthole'),(15785,9226,'_dt_slideshow_layout','fullwidth'),(15786,9226,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(15787,9226,'_dt_slideshow_scaling','fill'),(15788,9226,'_dt_slideshow_autoplay','paused'),(15789,9226,'_dt_slideshow_autoslide_interval','5000'),(15790,9226,'_dt_slideshow_hide_captions','0'),(15791,9226,'_dt_slideshow_photo_scroller_layout','fullscreen'),(15792,9226,'_dt_slideshow_photo_scroller_bg_color','#000000'),(15793,9226,'_dt_slideshow_photo_scroller_overlay','1'),(15794,9226,'_dt_slideshow_photo_scroller_top_padding','0'),(15795,9226,'_dt_slideshow_photo_scroller_bottom_padding','0'),(15796,9226,'_dt_slideshow_photo_scroller_side_paddings','0'),(15797,9226,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(15798,9226,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(15799,9226,'_dt_slideshow_photo_scroller_thumbnails_width',''),(15800,9226,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(15801,9226,'_dt_slideshow_photo_scroller_autoplay','play'),(15802,9226,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(15803,9226,'fake_id',''),(15804,9226,'_dt_slideshow_photo_scroller_ls_max_width','100'),(15805,9226,'_dt_slideshow_photo_scroller_ls_min_width','0'),(15806,9226,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(15807,9226,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(15808,9226,'_dt_slideshow_photo_scroller_pt_max_width','100'),(15809,9226,'_dt_slideshow_photo_scroller_pt_min_width','0'),(15810,9226,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(15811,9226,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(15812,9226,'_dt_slideshow_revolution_slider','none'),(15813,9226,'_dt_slideshow_layer_slider','none'),(15814,9226,'_dt_slideshow_layer_show_bg_and_paddings','0'),(15815,9226,'_dt_fancy_header_layout_heading',''),(15816,9226,'_dt_fancy_header_title_aligment','center'),(15817,9226,'_dt_fancy_header_height','300'),(15818,9226,'_dt_fancy_header_padding-top','0px'),(15819,9226,'_dt_fancy_header_padding-bottom','0px'),(15820,9226,'_dt_fancy_header_breadcrumbs_heading',''),(15821,9226,'_dt_fancy_header_breadcrumbs','enabled'),(15822,9226,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(15823,9226,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(15824,9226,'_dt_fancy_header_title_heading',''),(15825,9226,'_dt_fancy_header_title_mode','custom'),(15826,9226,'_dt_fancy_header_title',''),(15827,9226,'_dt_fancy_header_title_font_size','30'),(15828,9226,'_dt_fancy_header_title_line_height','36'),(15829,9226,'_dt_fancy_header_uppercase','0'),(15830,9226,'_dt_fancy_header_title_color_mode','color'),(15831,9226,'_dt_fancy_header_title_color','#ffffff'),(15832,9226,'_dt_fancy_header_subtitle_heading',''),(15833,9226,'_dt_fancy_header_subtitle',''),(15834,9226,'_dt_fancy_header_subtitle_font_size','18'),(15835,9226,'_dt_fancy_header_subtitle_line_height','26'),(15836,9226,'_dt_fancy_header_subtitle_uppercase','0'),(15837,9226,'_dt_fancy_header_subtitle_color_mode','color'),(15838,9226,'_dt_fancy_header_subtitle_color','#ffffff'),(15839,9226,'_dt_fancy_header_bg_heading',''),(15840,9226,'_dt_fancy_header_bg_color','#222222'),(15841,9226,'_dt_fancy_header_bg_image','a:0:{}'),(15842,9226,'_dt_fancy_header_bg_repeat','no-repeat'),(15843,9226,'_dt_fancy_header_bg_position_x','center'),(15844,9226,'_dt_fancy_header_bg_position_y','center'),(15845,9226,'_dt_fancy_header_bg_fullscreen','1'),(15846,9226,'_dt_fancy_header_bg_overlay','0'),(15847,9226,'_dt_fancy_header_overlay_color','#000'),(15848,9226,'_dt_fancy_header_bg_overlay_opacity','50'),(15849,9226,'_dt_fancy_header_scroll_effect','default'),(15850,9226,'_dt_fancy_header_bg_parallax','0.5'),(15851,9226,'_dt_post_options_back_button',''),(15852,9226,'_dt_post_options_hide_thumbnail','0'),(15853,9226,'_dt_post_options_related_mode','same'),(15854,9226,'_dt_post_options_preview','normal'),(15855,9226,'_dt_microsite_page_layout','wide'),(15856,9226,'_dt_microsite_page_loading','enabled'),(15857,9226,'_dt_microsite_primary_menu',''),(15858,9226,'_dt_microsite_split_left_menu',''),(15859,9226,'_dt_microsite_split_right_menu',''),(15860,9226,'_dt_microsite_mobile_menu',''),(15861,9226,'_dt_microsite_logo_link',''),(15862,9226,'main_logo_heading',''),(15863,9226,'_dt_microsite_main_logo_type','default'),(15864,9226,'_dt_microsite_main_logo_regular','a:0:{}'),(15865,9226,'_dt_microsite_main_logo_hd','a:0:{}'),(15866,9226,'transparent_logo_heading',''),(15867,9226,'_dt_microsite_transparent_logo_type','default'),(15868,9226,'_dt_microsite_transparent_logo_regular','a:0:{}'),(15869,9226,'_dt_microsite_transparent_logo_hd','a:0:{}'),(15870,9226,'_dt_microsite_mixed_logo_type','default'),(15871,9226,'_dt_microsite_mixed_logo_regular','a:0:{}'),(15872,9226,'_dt_microsite_mixed_logo_hd','a:0:{}'),(15873,9226,'floating_logo_heading',''),(15874,9226,'_dt_microsite_floating_logo_type','default'),(15875,9226,'_dt_microsite_floating_logo_regular','a:0:{}'),(15876,9226,'_dt_microsite_floating_logo_hd','a:0:{}'),(15877,9226,'_dt_microsite_mobile_logo_type','default'),(15878,9226,'_dt_microsite_mobile_logo_regular','a:0:{}'),(15879,9226,'_dt_microsite_mobile_logo_hd','a:0:{}'),(15880,9226,'_dt_microsite_transparent_mobile_logo_type','default'),(15881,9226,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(15882,9226,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(15883,9226,'bottom_logo_heading',''),(15884,9226,'_dt_microsite_bottom_logo_type','default'),(15885,9226,'_dt_microsite_bottom_logo_regular','a:0:{}'),(15886,9226,'_dt_microsite_bottom_logo_hd','a:0:{}'),(15887,9226,'favicon_heading',''),(15888,9226,'_dt_microsite_favicon_type','default'),(15889,9226,'_dt_microsite_favicon','a:0:{}'),(15890,9226,'_wc_memberships_force_public','no'),(15891,9226,'_wc_memberships_use_custom_post_content_restricted_message','no'),(15892,9226,'_oembed_44e4e81249ee6478b74e51ab8b4a7d9f','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/1bRQ8HR9AEY?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15893,9226,'_oembed_time_44e4e81249ee6478b74e51ab8b4a7d9f','1538402230'),(15894,9226,'_oembed_decbb58404990ee93e9f6f110afc7165','<iframe width=\"918\" height=\"516\" src=\"https://www.youtube.com/embed/1bRQ8HR9AEY?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15895,9226,'_oembed_time_decbb58404990ee93e9f6f110afc7165','1538134892'),(15896,9226,'_thumbnail_id','9257'),(15897,9226,'_oembed_e996851789280640ff5ebe210f6044cb','<iframe width=\"920\" height=\"518\" src=\"https://www.youtube.com/embed/1bRQ8HR9AEY?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(15898,9226,'_oembed_time_e996851789280640ff5ebe210f6044cb','1538823895'),(15899,9226,'iawp_total_views','6'),(15900,9417,'_edit_last','2'),(15901,9417,'_thumbnail_id','9422'),(15902,9417,'_wp_page_template','default'),(15903,9417,'slide_template','default'),(15904,9417,'_wpb_vc_js_status','false'),(15905,9417,'_dt_sidebar_position','right'),(15906,9417,'_dt_sidebar_widgetarea_id','sidebar_1'),(15907,9417,'_dt_sidebar_hide_on_mobile','0'),(15908,9417,'_dt_footer_show','1'),(15909,9417,'_dt_footer_widgetarea_id','sidebar_2'),(15910,9417,'_dt_footer_hide_on_mobile','0'),(15911,9417,'_dt_header_title','enabled'),(15912,9417,'_dt_header_background','normal'),(15913,9417,'_dt_header_background_below_slideshow','disabled'),(15914,9417,'_dt_header_transparent_bg_color_scheme','light'),(15915,9417,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(15916,9417,'_dt_header_transparent_top_bar_bg_opacity','25'),(15917,9417,'_dt_header_transparent_bg_color','#000000'),(15918,9417,'_dt_header_transparent_bg_opacity','50'),(15919,9417,'_dt_header_disabled_background','normal'),(15920,9417,'_dt_header_disabled_transparent_bg_color_scheme','light'),(15921,9417,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(15922,9417,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(15923,9417,'_dt_header_disabled_transparent_bg_color','#000000'),(15924,9417,'_dt_header_disabled_transparent_bg_opacity','50'),(15925,9417,'_dt_page_overrides_top_margin',''),(15926,9417,'_dt_page_overrides_bottom_margin',''),(15927,9417,'_dt_slideshow_mode','porthole'),(15928,9417,'_dt_slideshow_layout','fullwidth'),(15929,9417,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(15930,9417,'_dt_slideshow_scaling','fill'),(15931,9417,'_dt_slideshow_autoplay','paused'),(15932,9417,'_dt_slideshow_autoslide_interval','5000'),(15933,9417,'_dt_slideshow_hide_captions','0'),(15934,9417,'_dt_slideshow_photo_scroller_layout','fullscreen'),(15935,9417,'_dt_slideshow_photo_scroller_bg_color','#000000'),(15936,9417,'_dt_slideshow_photo_scroller_overlay','1'),(15937,9417,'_dt_slideshow_photo_scroller_top_padding','0'),(15938,9417,'_dt_slideshow_photo_scroller_bottom_padding','0'),(15939,9417,'_dt_slideshow_photo_scroller_side_paddings','0'),(15940,9417,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(15941,9417,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(15942,9417,'_dt_slideshow_photo_scroller_thumbnails_width',''),(15943,9417,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(15944,9417,'_dt_slideshow_photo_scroller_autoplay','play'),(15945,9417,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(15946,9417,'fake_id',''),(15947,9417,'_dt_slideshow_photo_scroller_ls_max_width','100'),(15948,9417,'_dt_slideshow_photo_scroller_ls_min_width','0'),(15949,9417,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(15950,9417,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(15951,9417,'_dt_slideshow_photo_scroller_pt_max_width','100'),(15952,9417,'_dt_slideshow_photo_scroller_pt_min_width','0'),(15953,9417,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(15954,9417,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(15955,9417,'_dt_slideshow_revolution_slider','none'),(15956,9417,'_dt_slideshow_layer_slider','none'),(15957,9417,'_dt_slideshow_layer_show_bg_and_paddings','0'),(15958,9417,'_dt_fancy_header_layout_heading',''),(15959,9417,'_dt_fancy_header_title_aligment','center'),(15960,9417,'_dt_fancy_header_height','300'),(15961,9417,'_dt_fancy_header_padding-top','0px'),(15962,9417,'_dt_fancy_header_padding-bottom','0px'),(15963,9417,'_dt_fancy_header_breadcrumbs_heading',''),(15964,9417,'_dt_fancy_header_breadcrumbs','enabled'),(15965,9417,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(15966,9417,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(15967,9417,'_dt_fancy_header_title_heading',''),(15968,9417,'_dt_fancy_header_title_mode','custom'),(15969,9417,'_dt_fancy_header_title',''),(15970,9417,'_dt_fancy_header_title_font_size','30'),(15971,9417,'_dt_fancy_header_title_line_height','36'),(15972,9417,'_dt_fancy_header_uppercase','0'),(15973,9417,'_dt_fancy_header_title_color_mode','color'),(15974,9417,'_dt_fancy_header_title_color','#ffffff'),(15975,9417,'_dt_fancy_header_subtitle_heading',''),(15976,9417,'_dt_fancy_header_subtitle',''),(15977,9417,'_dt_fancy_header_subtitle_font_size','18'),(15978,9417,'_dt_fancy_header_subtitle_line_height','26'),(15979,9417,'_dt_fancy_header_subtitle_uppercase','0'),(15980,9417,'_dt_fancy_header_subtitle_color_mode','color'),(15981,9417,'_dt_fancy_header_subtitle_color','#ffffff'),(15982,9417,'_dt_fancy_header_bg_heading',''),(15983,9417,'_dt_fancy_header_bg_color','#222222'),(15984,9417,'_dt_fancy_header_bg_image','a:0:{}'),(15985,9417,'_dt_fancy_header_bg_repeat','no-repeat'),(15986,9417,'_dt_fancy_header_bg_position_x','center'),(15987,9417,'_dt_fancy_header_bg_position_y','center'),(15988,9417,'_dt_fancy_header_bg_fullscreen','1'),(15989,9417,'_dt_fancy_header_bg_overlay','0'),(15990,9417,'_dt_fancy_header_overlay_color','#000'),(15991,9417,'_dt_fancy_header_bg_overlay_opacity','50'),(15992,9417,'_dt_fancy_header_scroll_effect','default'),(15993,9417,'_dt_fancy_header_bg_parallax','0.5'),(15994,9417,'_dt_post_options_back_button',''),(15995,9417,'_dt_post_options_hide_thumbnail','0'),(15996,9417,'_dt_post_options_related_mode','same'),(15997,9417,'_dt_post_options_preview','normal'),(15998,9417,'_dt_microsite_page_layout','wide'),(15999,9417,'_dt_microsite_page_loading','enabled'),(16000,9417,'_dt_microsite_primary_menu',''),(16001,9417,'_dt_microsite_split_left_menu',''),(16002,9417,'_dt_microsite_split_right_menu',''),(16003,9417,'_dt_microsite_mobile_menu',''),(16004,9417,'_dt_microsite_logo_link',''),(16005,9417,'main_logo_heading',''),(16006,9417,'_dt_microsite_main_logo_type','default'),(16007,9417,'_dt_microsite_main_logo_regular','a:0:{}'),(16008,9417,'_dt_microsite_main_logo_hd','a:0:{}'),(16009,9417,'transparent_logo_heading',''),(16010,9417,'_dt_microsite_transparent_logo_type','default'),(16011,9417,'_dt_microsite_transparent_logo_regular','a:0:{}'),(16012,9417,'_dt_microsite_transparent_logo_hd','a:0:{}'),(16013,9417,'_dt_microsite_mixed_logo_type','default'),(16014,9417,'_dt_microsite_mixed_logo_regular','a:0:{}'),(16015,9417,'_dt_microsite_mixed_logo_hd','a:0:{}'),(16016,9417,'floating_logo_heading',''),(16017,9417,'_dt_microsite_floating_logo_type','default'),(16018,9417,'_dt_microsite_floating_logo_regular','a:0:{}'),(16019,9417,'_dt_microsite_floating_logo_hd','a:0:{}'),(16020,9417,'_dt_microsite_mobile_logo_type','default'),(16021,9417,'_dt_microsite_mobile_logo_regular','a:0:{}'),(16022,9417,'_dt_microsite_mobile_logo_hd','a:0:{}'),(16023,9417,'_dt_microsite_transparent_mobile_logo_type','default'),(16024,9417,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(16025,9417,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(16026,9417,'bottom_logo_heading',''),(16027,9417,'_dt_microsite_bottom_logo_type','default'),(16028,9417,'_dt_microsite_bottom_logo_regular','a:0:{}'),(16029,9417,'_dt_microsite_bottom_logo_hd','a:0:{}'),(16030,9417,'favicon_heading',''),(16031,9417,'_dt_microsite_favicon_type','default'),(16032,9417,'_dt_microsite_favicon','a:0:{}'),(16033,9417,'_wc_memberships_force_public','no'),(16034,9417,'_wc_memberships_use_custom_post_content_restricted_message','no'),(16035,9417,'_oembed_532b9c81bc2f330c1a67392f09826968','<iframe width=\"916\" height=\"515\" src=\"https://www.youtube.com/embed/33nYy-rpdmw?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(16036,9417,'_oembed_time_532b9c81bc2f330c1a67392f09826968','1539004818'),(16037,9417,'_oembed_3d17551bbd2c0f2c602f72c57b2291f5','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/33nYy-rpdmw?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(16038,9417,'_oembed_time_3d17551bbd2c0f2c602f72c57b2291f5','1539005311'),(16039,9417,'_oembed_47128c29137a3a1be5bfcd8996cf91bf','<iframe width=\"920\" height=\"518\" src=\"https://www.youtube.com/embed/33nYy-rpdmw?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(16040,9417,'_oembed_time_47128c29137a3a1be5bfcd8996cf91bf','1539005493'),(16041,9560,'_edit_last','2'),(16042,9560,'_oembed_time_027de0c2dfec6f1cbcb1521773291e49','1540224970'),(16043,9560,'_oembed_027de0c2dfec6f1cbcb1521773291e49','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/ktPwzRtf8MU?feature=oembed\" frameborder=\"0\" allow=\"autoplay; encrypted-media\" allowfullscreen></iframe>'),(16044,9560,'_thumbnail_id','9561'),(16045,9560,'_wp_page_template','default'),(16046,9560,'slide_template','default'),(16047,9560,'_wpb_vc_js_status','false'),(16048,9560,'_dt_sidebar_position','right'),(16049,9560,'_dt_sidebar_widgetarea_id','sidebar_1'),(16050,9560,'_dt_sidebar_hide_on_mobile','0'),(16051,9560,'_dt_footer_show','1'),(16052,9560,'_dt_footer_widgetarea_id','sidebar_2'),(16053,9560,'_dt_footer_hide_on_mobile','0'),(16054,9560,'_dt_header_title','enabled'),(16055,9560,'_dt_header_background','normal'),(16056,9560,'_dt_header_background_below_slideshow','disabled'),(16057,9560,'_dt_header_transparent_bg_color_scheme','light'),(16058,9560,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16059,9560,'_dt_header_transparent_top_bar_bg_opacity','25'),(16060,9560,'_dt_header_transparent_bg_color','#000000'),(16061,9560,'_dt_header_transparent_bg_opacity','50'),(16062,9560,'_dt_header_disabled_background','normal'),(16063,9560,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16064,9560,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16065,9560,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16066,9560,'_dt_header_disabled_transparent_bg_color','#000000'),(16067,9560,'_dt_header_disabled_transparent_bg_opacity','50'),(16068,9560,'_dt_page_overrides_top_margin',''),(16069,9560,'_dt_page_overrides_bottom_margin',''),(16070,9560,'_dt_slideshow_mode','porthole'),(16071,9560,'_dt_slideshow_layout','fullwidth'),(16072,9560,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(16073,9560,'_dt_slideshow_scaling','fill'),(16074,9560,'_dt_slideshow_autoplay','paused'),(16075,9560,'_dt_slideshow_autoslide_interval','5000'),(16076,9560,'_dt_slideshow_hide_captions','0'),(16077,9560,'_dt_slideshow_photo_scroller_layout','fullscreen'),(16078,9560,'_dt_slideshow_photo_scroller_bg_color','#000000'),(16079,9560,'_dt_slideshow_photo_scroller_overlay','1'),(16080,9560,'_dt_slideshow_photo_scroller_top_padding','0'),(16081,9560,'_dt_slideshow_photo_scroller_bottom_padding','0'),(16082,9560,'_dt_slideshow_photo_scroller_side_paddings','0'),(16083,9560,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(16084,9560,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(16085,9560,'_dt_slideshow_photo_scroller_thumbnails_width',''),(16086,9560,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(16087,9560,'_dt_slideshow_photo_scroller_autoplay','play'),(16088,9560,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(16089,9560,'fake_id',''),(16090,9560,'_dt_slideshow_photo_scroller_ls_max_width','100'),(16091,9560,'_dt_slideshow_photo_scroller_ls_min_width','0'),(16092,9560,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(16093,9560,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(16094,9560,'_dt_slideshow_photo_scroller_pt_max_width','100'),(16095,9560,'_dt_slideshow_photo_scroller_pt_min_width','0'),(16096,9560,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(16097,9560,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(16098,9560,'_dt_slideshow_revolution_slider','none'),(16099,9560,'_dt_slideshow_layer_slider','none'),(16100,9560,'_dt_slideshow_layer_show_bg_and_paddings','0'),(16101,9560,'_dt_fancy_header_layout_heading',''),(16102,9560,'_dt_fancy_header_title_aligment','center'),(16103,9560,'_dt_fancy_header_height','300'),(16104,9560,'_dt_fancy_header_padding-top','0px'),(16105,9560,'_dt_fancy_header_padding-bottom','0px'),(16106,9560,'_dt_fancy_header_breadcrumbs_heading',''),(16107,9560,'_dt_fancy_header_breadcrumbs','enabled'),(16108,9560,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(16109,9560,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(16110,9560,'_dt_fancy_header_title_heading',''),(16111,9560,'_dt_fancy_header_title_mode','custom'),(16112,9560,'_dt_fancy_header_title',''),(16113,9560,'_dt_fancy_header_title_font_size','30'),(16114,9560,'_dt_fancy_header_title_line_height','36'),(16115,9560,'_dt_fancy_header_uppercase','0'),(16116,9560,'_dt_fancy_header_title_color_mode','color'),(16117,9560,'_dt_fancy_header_title_color','#ffffff'),(16118,9560,'_dt_fancy_header_subtitle_heading',''),(16119,9560,'_dt_fancy_header_subtitle',''),(16120,9560,'_dt_fancy_header_subtitle_font_size','18'),(16121,9560,'_dt_fancy_header_subtitle_line_height','26'),(16122,9560,'_dt_fancy_header_subtitle_uppercase','0'),(16123,9560,'_dt_fancy_header_subtitle_color_mode','color'),(16124,9560,'_dt_fancy_header_subtitle_color','#ffffff'),(16125,9560,'_dt_fancy_header_bg_heading',''),(16126,9560,'_dt_fancy_header_bg_color','#222222'),(16127,9560,'_dt_fancy_header_bg_image','a:0:{}'),(16128,9560,'_dt_fancy_header_bg_repeat','no-repeat'),(16129,9560,'_dt_fancy_header_bg_position_x','center'),(16130,9560,'_dt_fancy_header_bg_position_y','center'),(16131,9560,'_dt_fancy_header_bg_fullscreen','1'),(16132,9560,'_dt_fancy_header_bg_overlay','0'),(16133,9560,'_dt_fancy_header_overlay_color','#000'),(16134,9560,'_dt_fancy_header_bg_overlay_opacity','50'),(16135,9560,'_dt_fancy_header_scroll_effect','default'),(16136,9560,'_dt_fancy_header_bg_parallax','0.5'),(16137,9560,'_dt_post_options_back_button',''),(16138,9560,'_dt_post_options_hide_thumbnail','0'),(16139,9560,'_dt_post_options_related_mode','same'),(16140,9560,'_dt_post_options_preview','normal'),(16141,9560,'_dt_microsite_page_layout','wide'),(16142,9560,'_dt_microsite_page_loading','enabled'),(16143,9560,'_dt_microsite_primary_menu',''),(16144,9560,'_dt_microsite_split_left_menu',''),(16145,9560,'_dt_microsite_split_right_menu',''),(16146,9560,'_dt_microsite_mobile_menu',''),(16147,9560,'_dt_microsite_logo_link',''),(16148,9560,'main_logo_heading',''),(16149,9560,'_dt_microsite_main_logo_type','default'),(16150,9560,'_dt_microsite_main_logo_regular','a:0:{}'),(16151,9560,'_dt_microsite_main_logo_hd','a:0:{}'),(16152,9560,'transparent_logo_heading',''),(16153,9560,'_dt_microsite_transparent_logo_type','default'),(16154,9560,'_dt_microsite_transparent_logo_regular','a:0:{}'),(16155,9560,'_dt_microsite_transparent_logo_hd','a:0:{}'),(16156,9560,'_dt_microsite_mixed_logo_type','default'),(16157,9560,'_dt_microsite_mixed_logo_regular','a:0:{}'),(16158,9560,'_dt_microsite_mixed_logo_hd','a:0:{}'),(16159,9560,'floating_logo_heading',''),(16160,9560,'_dt_microsite_floating_logo_type','default'),(16161,9560,'_dt_microsite_floating_logo_regular','a:0:{}'),(16162,9560,'_dt_microsite_floating_logo_hd','a:0:{}'),(16163,9560,'_dt_microsite_mobile_logo_type','default'),(16164,9560,'_dt_microsite_mobile_logo_regular','a:0:{}'),(16165,9560,'_dt_microsite_mobile_logo_hd','a:0:{}'),(16166,9560,'_dt_microsite_transparent_mobile_logo_type','default'),(16167,9560,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(16168,9560,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(16169,9560,'bottom_logo_heading',''),(16170,9560,'_dt_microsite_bottom_logo_type','default'),(16171,9560,'_dt_microsite_bottom_logo_regular','a:0:{}'),(16172,9560,'_dt_microsite_bottom_logo_hd','a:0:{}'),(16173,9560,'favicon_heading',''),(16174,9560,'_dt_microsite_favicon_type','default'),(16175,9560,'_dt_microsite_favicon','a:0:{}'),(16176,9560,'_wc_memberships_force_public','no'),(16177,9560,'_wc_memberships_use_custom_post_content_restricted_message','no'),(16178,9560,'_wp_old_date','2018-10-21'),(16179,10018,'_oembed_4ee7e0a35ccfcffff6c7eaa27c10c618','{{unknown}}'),(16180,10018,'_edit_last','2'),(16181,10018,'_wp_page_template','default'),(16182,10018,'slide_template','default'),(16183,10018,'_wpb_vc_js_status','false'),(16184,10018,'_dt_sidebar_position','right'),(16185,10018,'_dt_sidebar_widgetarea_id','sidebar_1'),(16186,10018,'_dt_sidebar_hide_on_mobile','0'),(16187,10018,'_dt_footer_show','1'),(16188,10018,'_dt_footer_widgetarea_id','sidebar_2'),(16189,10018,'_dt_footer_hide_on_mobile','0'),(16190,10018,'_dt_header_title','enabled'),(16191,10018,'_dt_header_background','normal'),(16192,10018,'_dt_header_background_below_slideshow','disabled'),(16193,10018,'_dt_header_transparent_bg_color_scheme','light'),(16194,10018,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16195,10018,'_dt_header_transparent_top_bar_bg_opacity','25'),(16196,10018,'_dt_header_transparent_bg_color','#000000'),(16197,10018,'_dt_header_transparent_bg_opacity','50'),(16198,10018,'_dt_header_disabled_background','normal'),(16199,10018,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16200,10018,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16201,10018,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16202,10018,'_dt_header_disabled_transparent_bg_color','#000000'),(16203,10018,'_dt_header_disabled_transparent_bg_opacity','50'),(16204,10018,'_dt_page_overrides_top_margin',''),(16205,10018,'_dt_page_overrides_bottom_margin',''),(16206,10018,'_dt_slideshow_mode','porthole'),(16207,10018,'_dt_slideshow_layout','fullwidth'),(16208,10018,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(16209,10018,'_dt_slideshow_scaling','fill'),(16210,10018,'_dt_slideshow_autoplay','paused'),(16211,10018,'_dt_slideshow_autoslide_interval','5000'),(16212,10018,'_dt_slideshow_hide_captions','0'),(16213,10018,'_dt_slideshow_photo_scroller_layout','fullscreen'),(16214,10018,'_dt_slideshow_photo_scroller_bg_color','#000000'),(16215,10018,'_dt_slideshow_photo_scroller_overlay','1'),(16216,10018,'_dt_slideshow_photo_scroller_top_padding','0'),(16217,10018,'_dt_slideshow_photo_scroller_bottom_padding','0'),(16218,10018,'_dt_slideshow_photo_scroller_side_paddings','0'),(16219,10018,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(16220,10018,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(16221,10018,'_dt_slideshow_photo_scroller_thumbnails_width',''),(16222,10018,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(16223,10018,'_dt_slideshow_photo_scroller_autoplay','play'),(16224,10018,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(16225,10018,'fake_id',''),(16226,10018,'_dt_slideshow_photo_scroller_ls_max_width','100'),(16227,10018,'_dt_slideshow_photo_scroller_ls_min_width','0'),(16228,10018,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(16229,10018,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(16230,10018,'_dt_slideshow_photo_scroller_pt_max_width','100'),(16231,10018,'_dt_slideshow_photo_scroller_pt_min_width','0'),(16232,10018,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(16233,10018,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(16234,10018,'_dt_slideshow_revolution_slider','none'),(16235,10018,'_dt_slideshow_layer_slider','none'),(16236,10018,'_dt_slideshow_layer_show_bg_and_paddings','0'),(16237,10018,'_dt_fancy_header_layout_heading',''),(16238,10018,'_dt_fancy_header_title_aligment','center'),(16239,10018,'_dt_fancy_header_height','300'),(16240,10018,'_dt_fancy_header_padding-top','0px'),(16241,10018,'_dt_fancy_header_padding-bottom','0px'),(16242,10018,'_dt_fancy_header_breadcrumbs_heading',''),(16243,10018,'_dt_fancy_header_breadcrumbs','enabled'),(16244,10018,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(16245,10018,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(16246,10018,'_dt_fancy_header_title_heading',''),(16247,10018,'_dt_fancy_header_title_mode','custom'),(16248,10018,'_dt_fancy_header_title',''),(16249,10018,'_dt_fancy_header_title_font_size','30'),(16250,10018,'_dt_fancy_header_title_line_height','36'),(16251,10018,'_dt_fancy_header_uppercase','0'),(16252,10018,'_dt_fancy_header_title_color_mode','color'),(16253,10018,'_dt_fancy_header_title_color','#ffffff'),(16254,10018,'_dt_fancy_header_subtitle_heading',''),(16255,10018,'_dt_fancy_header_subtitle',''),(16256,10018,'_dt_fancy_header_subtitle_font_size','18'),(16257,10018,'_dt_fancy_header_subtitle_line_height','26'),(16258,10018,'_dt_fancy_header_subtitle_uppercase','0'),(16259,10018,'_dt_fancy_header_subtitle_color_mode','color'),(16260,10018,'_dt_fancy_header_subtitle_color','#ffffff'),(16261,10018,'_dt_fancy_header_bg_heading',''),(16262,10018,'_dt_fancy_header_bg_color','#222222'),(16263,10018,'_dt_fancy_header_bg_image','a:0:{}'),(16264,10018,'_dt_fancy_header_bg_repeat','no-repeat'),(16265,10018,'_dt_fancy_header_bg_position_x','center'),(16266,10018,'_dt_fancy_header_bg_position_y','center'),(16267,10018,'_dt_fancy_header_bg_fullscreen','1'),(16268,10018,'_dt_fancy_header_bg_overlay','0'),(16269,10018,'_dt_fancy_header_overlay_color','#000'),(16270,10018,'_dt_fancy_header_bg_overlay_opacity','50'),(16271,10018,'_dt_fancy_header_scroll_effect','default'),(16272,10018,'_dt_fancy_header_bg_parallax','0.5'),(16273,10018,'_dt_post_options_back_button',''),(16274,10018,'_dt_post_options_hide_thumbnail','0'),(16275,10018,'_dt_post_options_related_mode','same'),(16276,10018,'_dt_post_options_preview','normal'),(16277,10018,'_dt_microsite_page_layout','wide'),(16278,10018,'_dt_microsite_page_loading','enabled'),(16279,10018,'_dt_microsite_primary_menu',''),(16280,10018,'_dt_microsite_split_left_menu',''),(16281,10018,'_dt_microsite_split_right_menu',''),(16282,10018,'_dt_microsite_mobile_menu',''),(16283,10018,'_dt_microsite_logo_link',''),(16284,10018,'main_logo_heading',''),(16285,10018,'_dt_microsite_main_logo_type','default'),(16286,10018,'_dt_microsite_main_logo_regular','a:0:{}'),(16287,10018,'_dt_microsite_main_logo_hd','a:0:{}'),(16288,10018,'transparent_logo_heading',''),(16289,10018,'_dt_microsite_transparent_logo_type','default'),(16290,10018,'_dt_microsite_transparent_logo_regular','a:0:{}'),(16291,10018,'_dt_microsite_transparent_logo_hd','a:0:{}'),(16292,10018,'_dt_microsite_mixed_logo_type','default'),(16293,10018,'_dt_microsite_mixed_logo_regular','a:0:{}'),(16294,10018,'_dt_microsite_mixed_logo_hd','a:0:{}'),(16295,10018,'floating_logo_heading',''),(16296,10018,'_dt_microsite_floating_logo_type','default'),(16297,10018,'_dt_microsite_floating_logo_regular','a:0:{}'),(16298,10018,'_dt_microsite_floating_logo_hd','a:0:{}'),(16299,10018,'_dt_microsite_mobile_logo_type','default'),(16300,10018,'_dt_microsite_mobile_logo_regular','a:0:{}'),(16301,10018,'_dt_microsite_mobile_logo_hd','a:0:{}'),(16302,10018,'_dt_microsite_transparent_mobile_logo_type','default'),(16303,10018,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(16304,10018,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(16305,10018,'bottom_logo_heading',''),(16306,10018,'_dt_microsite_bottom_logo_type','default'),(16307,10018,'_dt_microsite_bottom_logo_regular','a:0:{}'),(16308,10018,'_dt_microsite_bottom_logo_hd','a:0:{}'),(16309,10018,'favicon_heading',''),(16310,10018,'_dt_microsite_favicon_type','default'),(16311,10018,'_dt_microsite_favicon','a:0:{}'),(16312,10018,'_wc_memberships_force_public','no'),(16313,10018,'_wc_memberships_use_custom_post_content_restricted_message','no'),(16314,10018,'_thumbnail_id','10053'),(16315,10018,'_oembed_time_4ee7e0a35ccfcffff6c7eaa27c10c618','1543696672'),(16316,10090,'_edit_last','2'),(16317,10090,'_wp_page_template','default'),(16318,10090,'slide_template','default'),(16319,10090,'_wpb_vc_js_status','false'),(16320,10090,'_dt_sidebar_position','right'),(16321,10090,'_dt_sidebar_widgetarea_id','sidebar_1'),(16322,10090,'_dt_sidebar_hide_on_mobile','0'),(16323,10090,'_dt_footer_show','1'),(16324,10090,'_dt_footer_widgetarea_id','sidebar_2'),(16325,10090,'_dt_footer_hide_on_mobile','0'),(16326,10090,'_dt_header_title','enabled'),(16327,10090,'_dt_header_background','normal'),(16328,10090,'_dt_header_background_below_slideshow','disabled'),(16329,10090,'_dt_header_transparent_bg_color_scheme','light'),(16330,10090,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16331,10090,'_dt_header_transparent_top_bar_bg_opacity','25'),(16332,10090,'_dt_header_transparent_bg_color','#000000'),(16333,10090,'_dt_header_transparent_bg_opacity','50'),(16334,10090,'_dt_header_disabled_background','normal'),(16335,10090,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16336,10090,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16337,10090,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16338,10090,'_dt_header_disabled_transparent_bg_color','#000000'),(16339,10090,'_dt_header_disabled_transparent_bg_opacity','50'),(16340,10090,'_dt_page_overrides_top_margin',''),(16341,10090,'_dt_page_overrides_bottom_margin',''),(16342,10090,'_dt_slideshow_mode','porthole'),(16343,10090,'_dt_slideshow_layout','fullwidth'),(16344,10090,'_dt_slideshow_slider_proportions','a:2:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"500\";}'),(16345,10090,'_dt_slideshow_scaling','fill'),(16346,10090,'_dt_slideshow_autoplay','paused'),(16347,10090,'_dt_slideshow_autoslide_interval','5000'),(16348,10090,'_dt_slideshow_hide_captions','0'),(16349,10090,'_dt_slideshow_photo_scroller_layout','fullscreen'),(16350,10090,'_dt_slideshow_photo_scroller_bg_color','#000000'),(16351,10090,'_dt_slideshow_photo_scroller_overlay','1'),(16352,10090,'_dt_slideshow_photo_scroller_top_padding','0'),(16353,10090,'_dt_slideshow_photo_scroller_bottom_padding','0'),(16354,10090,'_dt_slideshow_photo_scroller_side_paddings','0'),(16355,10090,'_dt_slideshow_photo_scroller_inactive_opacity','15'),(16356,10090,'_dt_slideshow_photo_scroller_thumbnails_visibility','show'),(16357,10090,'_dt_slideshow_photo_scroller_thumbnails_width',''),(16358,10090,'_dt_slideshow_photo_scroller_thumbnails_height','85'),(16359,10090,'_dt_slideshow_photo_scroller_autoplay','play'),(16360,10090,'_dt_slideshow_photo_scroller_autoplay_speed','4000'),(16361,10090,'fake_id',''),(16362,10090,'_dt_slideshow_photo_scroller_ls_max_width','100'),(16363,10090,'_dt_slideshow_photo_scroller_ls_min_width','0'),(16364,10090,'_dt_slideshow_photo_scroller_ls_fill_dt','fit'),(16365,10090,'_dt_slideshow_photo_scroller_ls_fill_mob','fit'),(16366,10090,'_dt_slideshow_photo_scroller_pt_max_width','100'),(16367,10090,'_dt_slideshow_photo_scroller_pt_min_width','0'),(16368,10090,'_dt_slideshow_photo_scroller_pt_fill_dt','fit'),(16369,10090,'_dt_slideshow_photo_scroller_pt_fill_mob','fit'),(16370,10090,'_dt_slideshow_revolution_slider','none'),(16371,10090,'_dt_slideshow_layer_slider','none'),(16372,10090,'_dt_slideshow_layer_show_bg_and_paddings','0'),(16373,10090,'_dt_fancy_header_layout_heading',''),(16374,10090,'_dt_fancy_header_title_aligment','center'),(16375,10090,'_dt_fancy_header_height','300'),(16376,10090,'_dt_fancy_header_padding-top','0px'),(16377,10090,'_dt_fancy_header_padding-bottom','0px'),(16378,10090,'_dt_fancy_header_breadcrumbs_heading',''),(16379,10090,'_dt_fancy_header_breadcrumbs','enabled'),(16380,10090,'_dt_fancy_header_breadcrumbs_text_color','#ffffff'),(16381,10090,'_dt_fancy_header_breadcrumbs_bg_color','disabled'),(16382,10090,'_dt_fancy_header_title_heading',''),(16383,10090,'_dt_fancy_header_title_mode','custom'),(16384,10090,'_dt_fancy_header_title',''),(16385,10090,'_dt_fancy_header_title_font_size','30'),(16386,10090,'_dt_fancy_header_title_line_height','36'),(16387,10090,'_dt_fancy_header_uppercase','0'),(16388,10090,'_dt_fancy_header_title_color_mode','color'),(16389,10090,'_dt_fancy_header_title_color','#ffffff'),(16390,10090,'_dt_fancy_header_subtitle_heading',''),(16391,10090,'_dt_fancy_header_subtitle',''),(16392,10090,'_dt_fancy_header_subtitle_font_size','18'),(16393,10090,'_dt_fancy_header_subtitle_line_height','26'),(16394,10090,'_dt_fancy_header_subtitle_uppercase','0'),(16395,10090,'_dt_fancy_header_subtitle_color_mode','color'),(16396,10090,'_dt_fancy_header_subtitle_color','#ffffff'),(16397,10090,'_dt_fancy_header_bg_heading',''),(16398,10090,'_dt_fancy_header_bg_color','#222222'),(16399,10090,'_dt_fancy_header_bg_image','a:0:{}'),(16400,10090,'_dt_fancy_header_bg_repeat','no-repeat'),(16401,10090,'_dt_fancy_header_bg_position_x','center'),(16402,10090,'_dt_fancy_header_bg_position_y','center'),(16403,10090,'_dt_fancy_header_bg_fullscreen','1'),(16404,10090,'_dt_fancy_header_bg_overlay','0'),(16405,10090,'_dt_fancy_header_overlay_color','#000'),(16406,10090,'_dt_fancy_header_bg_overlay_opacity','50'),(16407,10090,'_dt_fancy_header_scroll_effect','default'),(16408,10090,'_dt_fancy_header_bg_parallax','0.5'),(16409,10090,'_dt_post_options_back_button',''),(16410,10090,'_dt_post_options_hide_thumbnail','0'),(16411,10090,'_dt_post_options_related_mode','same'),(16412,10090,'_dt_post_options_preview','normal'),(16413,10090,'_dt_microsite_page_layout','wide'),(16414,10090,'_dt_microsite_page_loading','enabled'),(16415,10090,'_dt_microsite_primary_menu',''),(16416,10090,'_dt_microsite_split_left_menu',''),(16417,10090,'_dt_microsite_split_right_menu',''),(16418,10090,'_dt_microsite_mobile_menu',''),(16419,10090,'_dt_microsite_logo_link',''),(16420,10090,'main_logo_heading',''),(16421,10090,'_dt_microsite_main_logo_type','default'),(16422,10090,'_dt_microsite_main_logo_regular','a:0:{}'),(16423,10090,'_dt_microsite_main_logo_hd','a:0:{}'),(16424,10090,'transparent_logo_heading',''),(16425,10090,'_dt_microsite_transparent_logo_type','default'),(16426,10090,'_dt_microsite_transparent_logo_regular','a:0:{}'),(16427,10090,'_dt_microsite_transparent_logo_hd','a:0:{}'),(16428,10090,'_dt_microsite_mixed_logo_type','default'),(16429,10090,'_dt_microsite_mixed_logo_regular','a:0:{}'),(16430,10090,'_dt_microsite_mixed_logo_hd','a:0:{}'),(16431,10090,'floating_logo_heading',''),(16432,10090,'_dt_microsite_floating_logo_type','default'),(16433,10090,'_dt_microsite_floating_logo_regular','a:0:{}'),(16434,10090,'_dt_microsite_floating_logo_hd','a:0:{}'),(16435,10090,'_dt_microsite_mobile_logo_type','default'),(16436,10090,'_dt_microsite_mobile_logo_regular','a:0:{}'),(16437,10090,'_dt_microsite_mobile_logo_hd','a:0:{}'),(16438,10090,'_dt_microsite_transparent_mobile_logo_type','default'),(16439,10090,'_dt_microsite_transparent_mobile_logo_regular','a:0:{}'),(16440,10090,'_dt_microsite_transparent_mobile_logo_hd','a:0:{}'),(16441,10090,'bottom_logo_heading',''),(16442,10090,'_dt_microsite_bottom_logo_type','default'),(16443,10090,'_dt_microsite_bottom_logo_regular','a:0:{}'),(16444,10090,'_dt_microsite_bottom_logo_hd','a:0:{}'),(16445,10090,'favicon_heading',''),(16446,10090,'_dt_microsite_favicon_type','default'),(16447,10090,'_dt_microsite_favicon','a:0:{}'),(16448,10090,'_wc_memberships_force_public','no'),(16449,10090,'_wc_memberships_use_custom_post_content_restricted_message','no'),(16450,10090,'_thumbnail_id','10130'),(16451,10442,'_thumbnail_id','10443'),(16452,10442,'_edit_last','2'),(16453,10442,'_wc_memberships_force_public','no'),(16454,10442,'_wc_memberships_use_custom_post_content_restricted_message','no'),(16455,10442,'slide_template','default'),(16456,10442,'_wpb_vc_js_status','false'),(16457,10442,'_dt_sidebar_position','right'),(16458,10442,'_dt_sidebar_widgetarea_id','sidebar_1'),(16459,10442,'_dt_sidebar_hide_on_mobile','0'),(16460,10442,'_dt_footer_show','1'),(16461,10442,'_dt_footer_widgetarea_id','sidebar_2'),(16462,10442,'_dt_footer_hide_on_mobile','0'),(16463,10442,'_dt_header_title','enabled'),(16464,10442,'_dt_header_background','normal'),(16465,10442,'_dt_header_background_below_slideshow','disabled'),(16466,10442,'_dt_header_transparent_bg_color_scheme','light'),(16467,10442,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16468,10442,'_dt_header_transparent_top_bar_bg_opacity','25'),(16469,10442,'_dt_header_transparent_bg_color','#000000'),(16470,10442,'_dt_header_transparent_bg_opacity','50'),(16471,10442,'_dt_header_disabled_background','normal'),(16472,10442,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16473,10442,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16474,10442,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16475,10442,'_dt_header_disabled_transparent_bg_color','#000000'),(16476,10442,'_dt_header_disabled_transparent_bg_opacity','50'),(16477,10442,'_dt_page_overrides_top_margin',''),(16478,10442,'_dt_page_overrides_bottom_margin',''),(16479,10442,'_dt_post_options_back_button',''),(16480,10442,'_dt_post_options_hide_thumbnail','0'),(16481,10442,'_dt_post_options_related_mode','same'),(16482,10442,'_dt_post_options_preview','normal'),(16483,11155,'_thumbnail_id','11156'),(16484,11155,'_edit_last','2'),(16485,11155,'_wc_memberships_force_public','no'),(16486,11155,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(16487,11155,'slide_template','default'),(16488,11155,'_wpb_vc_js_status','false'),(16489,11155,'_dt_sidebar_position','right'),(16490,11155,'_dt_sidebar_widgetarea_id','sidebar_1'),(16491,11155,'_dt_sidebar_hide_on_mobile','0'),(16492,11155,'_dt_footer_show','1'),(16493,11155,'_dt_footer_widgetarea_id','sidebar_2'),(16494,11155,'_dt_footer_hide_on_mobile','0'),(16495,11155,'_dt_header_title','enabled'),(16496,11155,'_dt_header_background','normal'),(16497,11155,'_dt_header_background_below_slideshow','disabled'),(16498,11155,'_dt_header_transparent_bg_color_scheme','light'),(16499,11155,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16500,11155,'_dt_header_transparent_top_bar_bg_opacity','25'),(16501,11155,'_dt_header_transparent_bg_color','#000000'),(16502,11155,'_dt_header_transparent_bg_opacity','50'),(16503,11155,'_dt_header_disabled_background','normal'),(16504,11155,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16505,11155,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16506,11155,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16507,11155,'_dt_header_disabled_transparent_bg_color','#000000'),(16508,11155,'_dt_header_disabled_transparent_bg_opacity','50'),(16509,11155,'_dt_page_overrides_top_margin',''),(16510,11155,'_dt_page_overrides_bottom_margin',''),(16511,11155,'_dt_post_options_back_button',''),(16512,11155,'_dt_post_options_hide_thumbnail','0'),(16513,11155,'_dt_post_options_related_mode','same'),(16514,11155,'_dt_post_options_preview','normal'),(16515,11155,'iawp_total_views','10'),(16516,12073,'_thumbnail_id','12076'),(16517,12073,'_edit_last','2'),(16518,12073,'_wc_memberships_force_public','no'),(16519,12073,'_wc_memberships_use_custom_post_content_restricted_message','no'),(16520,12073,'slide_template','default'),(16521,12073,'_wpb_vc_js_status','false'),(16522,12073,'_dt_sidebar_position','right'),(16523,12073,'_dt_sidebar_widgetarea_id','sidebar_1'),(16524,12073,'_dt_sidebar_hide_on_mobile','0'),(16525,12073,'_dt_footer_show','1'),(16526,12073,'_dt_footer_widgetarea_id','sidebar_2'),(16527,12073,'_dt_footer_hide_on_mobile','0'),(16528,12073,'_dt_header_title','enabled'),(16529,12073,'_dt_header_background','normal'),(16530,12073,'_dt_header_background_below_slideshow','disabled'),(16531,12073,'_dt_header_transparent_bg_color_scheme','light'),(16532,12073,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16533,12073,'_dt_header_transparent_top_bar_bg_opacity','25'),(16534,12073,'_dt_header_transparent_bg_color','#000000'),(16535,12073,'_dt_header_transparent_bg_opacity','50'),(16536,12073,'_dt_header_disabled_background','normal'),(16537,12073,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16538,12073,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16539,12073,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16540,12073,'_dt_header_disabled_transparent_bg_color','#000000'),(16541,12073,'_dt_header_disabled_transparent_bg_opacity','50'),(16542,12073,'_dt_page_overrides_top_margin',''),(16543,12073,'_dt_page_overrides_bottom_margin',''),(16544,12073,'_dt_post_options_back_button',''),(16545,12073,'_dt_post_options_hide_thumbnail','0'),(16546,12073,'_dt_post_options_related_mode','same'),(16547,12073,'_dt_post_options_preview','normal'),(16548,10832,'_oembed_7e3dcb744340e753eca52b7b92e417db','<iframe width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/qp0HIF3SfI4?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(16549,10832,'_oembed_time_7e3dcb744340e753eca52b7b92e417db','1547496909'),(16550,10832,'_thumbnail_id','10836'),(16551,10832,'_edit_last','2'),(16552,10832,'_wc_memberships_force_public','no'),(16553,10832,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(16554,10832,'slide_template','default'),(16555,10832,'_wpb_vc_js_status','false'),(16556,10832,'_dt_sidebar_position','right'),(16557,10832,'_dt_sidebar_widgetarea_id','sidebar_1'),(16558,10832,'_dt_sidebar_hide_on_mobile','0'),(16559,10832,'_dt_footer_show','1'),(16560,10832,'_dt_footer_widgetarea_id','sidebar_2'),(16561,10832,'_dt_footer_hide_on_mobile','0'),(16562,10832,'_dt_header_title','enabled'),(16563,10832,'_dt_header_background','normal'),(16564,10832,'_dt_header_background_below_slideshow','disabled'),(16565,10832,'_dt_header_transparent_bg_color_scheme','light'),(16566,10832,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16567,10832,'_dt_header_transparent_top_bar_bg_opacity','25'),(16568,10832,'_dt_header_transparent_bg_color','#000000'),(16569,10832,'_dt_header_transparent_bg_opacity','50'),(16570,10832,'_dt_header_disabled_background','normal'),(16571,10832,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16572,10832,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16573,10832,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16574,10832,'_dt_header_disabled_transparent_bg_color','#000000'),(16575,10832,'_dt_header_disabled_transparent_bg_opacity','50'),(16576,10832,'_dt_page_overrides_top_margin',''),(16577,10832,'_dt_page_overrides_bottom_margin',''),(16578,10832,'_dt_post_options_back_button',''),(16579,10832,'_dt_post_options_hide_thumbnail','0'),(16580,10832,'_dt_post_options_related_mode','same'),(16581,10832,'_dt_post_options_preview','normal'),(16582,10929,'_oembed_63da53475214a9350e6ffb8b5e6dae14','{{unknown}}'),(16583,10929,'_thumbnail_id','10930'),(16584,10929,'_edit_last','2'),(16585,10929,'_wc_memberships_force_public','no'),(16586,10929,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(16587,10929,'slide_template','default'),(16588,10929,'_wpb_vc_js_status','false'),(16589,10929,'_dt_sidebar_position','right'),(16590,10929,'_dt_sidebar_widgetarea_id','sidebar_1'),(16591,10929,'_dt_sidebar_hide_on_mobile','0'),(16592,10929,'_dt_footer_show','1'),(16593,10929,'_dt_footer_widgetarea_id','sidebar_2'),(16594,10929,'_dt_footer_hide_on_mobile','0'),(16595,10929,'_dt_header_title','enabled'),(16596,10929,'_dt_header_background','normal'),(16597,10929,'_dt_header_background_below_slideshow','disabled'),(16598,10929,'_dt_header_transparent_bg_color_scheme','light'),(16599,10929,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16600,10929,'_dt_header_transparent_top_bar_bg_opacity','25'),(16601,10929,'_dt_header_transparent_bg_color','#000000'),(16602,10929,'_dt_header_transparent_bg_opacity','50'),(16603,10929,'_dt_header_disabled_background','normal'),(16604,10929,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16605,10929,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16606,10929,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16607,10929,'_dt_header_disabled_transparent_bg_color','#000000'),(16608,10929,'_dt_header_disabled_transparent_bg_opacity','50'),(16609,10929,'_dt_page_overrides_top_margin',''),(16610,10929,'_dt_page_overrides_bottom_margin',''),(16611,10929,'_dt_post_options_back_button',''),(16612,10929,'_dt_post_options_hide_thumbnail','0'),(16613,10929,'_dt_post_options_related_mode','same'),(16614,10929,'_dt_post_options_preview','normal'),(16615,10929,'iawp_total_views','8'),(16616,11024,'_wc_memberships_force_public','no'),(16617,11024,'_thumbnail_id','11025'),(16618,11024,'_edit_last','2'),(16619,11024,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(16620,11024,'slide_template','default'),(16621,11024,'_wpb_vc_js_status','false'),(16622,11024,'_dt_sidebar_position','right'),(16623,11024,'_dt_sidebar_widgetarea_id','sidebar_1'),(16624,11024,'_dt_sidebar_hide_on_mobile','0'),(16625,11024,'_dt_footer_show','1'),(16626,11024,'_dt_footer_widgetarea_id','sidebar_2'),(16627,11024,'_dt_footer_hide_on_mobile','0'),(16628,11024,'_dt_header_title','enabled'),(16629,11024,'_dt_header_background','normal'),(16630,11024,'_dt_header_background_below_slideshow','disabled'),(16631,11024,'_dt_header_transparent_bg_color_scheme','light'),(16632,11024,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16633,11024,'_dt_header_transparent_top_bar_bg_opacity','25'),(16634,11024,'_dt_header_transparent_bg_color','#000000'),(16635,11024,'_dt_header_transparent_bg_opacity','50'),(16636,11024,'_dt_header_disabled_background','normal'),(16637,11024,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16638,11024,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16639,11024,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16640,11024,'_dt_header_disabled_transparent_bg_color','#000000'),(16641,11024,'_dt_header_disabled_transparent_bg_opacity','50'),(16642,11024,'_dt_page_overrides_top_margin',''),(16643,11024,'_dt_page_overrides_bottom_margin',''),(16644,11024,'_dt_post_options_back_button',''),(16645,11024,'_dt_post_options_hide_thumbnail','0'),(16646,11024,'_dt_post_options_related_mode','same'),(16647,11024,'_dt_post_options_preview','normal'),(16648,11024,'iawp_total_views','13'),(16649,11407,'_dt_microsite_mobile_menu',''),(16650,11407,'_dt_microsite_split_right_menu',''),(16651,11407,'_dt_microsite_split_left_menu',''),(16652,11407,'_dt_microsite_primary_menu',''),(16653,11407,'_dt_mobile_page_padding_left',''),(16654,11407,'_dt_mobile_page_padding_bottom',''),(16655,11407,'_dt_mobile_page_padding_right',''),(16656,11407,'_dt_mobile_page_padding_top',''),(16657,11407,'_dt_page_overrides_left_margin',''),(16658,11407,'_dt_page_overrides_right_margin',''),(16659,11407,'_wp_page_template','default'),(16660,11407,'_thumbnail_id','11408'),(16661,11407,'_edit_last','17'),(16662,11407,'_wc_memberships_force_public','no'),(16663,11407,'_wc_memberships_use_custom_post_content_restricted_message','no'),(16664,11407,'_wpb_post_custom_layout','default'),(16665,11407,'_wpb_vc_js_status','false'),(16666,11407,'_dt_sidebar_position','right'),(16667,11407,'_dt_sidebar_widgetarea_id','sidebar_1'),(16668,11407,'_dt_sidebar_hide_on_mobile','0'),(16669,11407,'_dt_footer_show','1'),(16670,11407,'_dt_footer_widgetarea_id','sidebar_2'),(16671,11407,'_dt_footer_hide_on_mobile','0'),(16672,11407,'_dt_header_title','enabled'),(16673,11407,'_dt_header_background','normal'),(16674,11407,'_dt_header_background_below_slideshow','disabled'),(16675,11407,'_dt_header_transparent_bg_color_scheme','light'),(16676,11407,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16677,11407,'_dt_header_transparent_top_bar_bg_opacity','25'),(16678,11407,'_dt_header_transparent_bg_color','#000000'),(16679,11407,'_dt_header_transparent_bg_opacity','50'),(16680,11407,'_dt_header_disabled_background','normal'),(16681,11407,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16682,11407,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16683,11407,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16684,11407,'_dt_header_disabled_transparent_bg_color','#000000'),(16685,11407,'_dt_header_disabled_transparent_bg_opacity','50'),(16686,11407,'_dt_page_overrides_top_margin',''),(16687,11407,'_dt_page_overrides_bottom_margin',''),(16688,11407,'_dt_post_options_back_button',''),(16689,11407,'_dt_post_options_hide_thumbnail','0'),(16690,11407,'_dt_post_options_related_mode','same'),(16691,11407,'_dt_post_options_preview','normal'),(16692,11407,'iawp_total_views','17'),(16693,11702,'_edit_last','2'),(16694,11702,'_wc_memberships_force_public','no'),(16695,11702,'_wc_memberships_use_custom_post_content_restricted_message','no'),(16696,11702,'slide_template','default'),(16697,11702,'_wpb_vc_js_status','false'),(16698,11702,'_dt_sidebar_position','right'),(16699,11702,'_dt_sidebar_widgetarea_id','sidebar_1'),(16700,11702,'_dt_sidebar_hide_on_mobile','0'),(16701,11702,'_dt_footer_show','1'),(16702,11702,'_dt_footer_widgetarea_id','sidebar_2'),(16703,11702,'_dt_footer_hide_on_mobile','0'),(16704,11702,'_dt_header_title','enabled'),(16705,11702,'_dt_header_background','normal'),(16706,11702,'_dt_header_background_below_slideshow','disabled'),(16707,11702,'_dt_header_transparent_bg_color_scheme','light'),(16708,11702,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16709,11702,'_dt_header_transparent_top_bar_bg_opacity','25'),(16710,11702,'_dt_header_transparent_bg_color','#000000'),(16711,11702,'_dt_header_transparent_bg_opacity','50'),(16712,11702,'_dt_header_disabled_background','normal'),(16713,11702,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16714,11702,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16715,11702,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16716,11702,'_dt_header_disabled_transparent_bg_color','#000000'),(16717,11702,'_dt_header_disabled_transparent_bg_opacity','50'),(16718,11702,'_dt_page_overrides_top_margin',''),(16719,11702,'_dt_page_overrides_bottom_margin',''),(16720,11702,'_dt_post_options_back_button',''),(16721,11702,'_dt_post_options_hide_thumbnail','0'),(16722,11702,'_dt_post_options_related_mode','same'),(16723,11702,'_dt_post_options_preview','normal'),(16724,11702,'_thumbnail_id','11712'),(16725,11702,'iawp_total_views','4'),(16726,11824,'_thumbnail_id','11825'),(16727,11824,'_edit_last','2'),(16728,11824,'_wc_memberships_force_public','no'),(16729,11824,'_wc_memberships_use_custom_post_content_restricted_message','no'),(16730,11824,'slide_template','default'),(16731,11824,'_wpb_vc_js_status','false'),(16732,11824,'_dt_sidebar_position','right'),(16733,11824,'_dt_sidebar_widgetarea_id','sidebar_1'),(16734,11824,'_dt_sidebar_hide_on_mobile','0'),(16735,11824,'_dt_footer_show','1'),(16736,11824,'_dt_footer_widgetarea_id','sidebar_2'),(16737,11824,'_dt_footer_hide_on_mobile','0'),(16738,11824,'_dt_header_title','enabled'),(16739,11824,'_dt_header_background','normal'),(16740,11824,'_dt_header_background_below_slideshow','disabled'),(16741,11824,'_dt_header_transparent_bg_color_scheme','light'),(16742,11824,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16743,11824,'_dt_header_transparent_top_bar_bg_opacity','25'),(16744,11824,'_dt_header_transparent_bg_color','#000000'),(16745,11824,'_dt_header_transparent_bg_opacity','50'),(16746,11824,'_dt_header_disabled_background','normal'),(16747,11824,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16748,11824,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16749,11824,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16750,11824,'_dt_header_disabled_transparent_bg_color','#000000'),(16751,11824,'_dt_header_disabled_transparent_bg_opacity','50'),(16752,11824,'_dt_page_overrides_top_margin',''),(16753,11824,'_dt_page_overrides_bottom_margin',''),(16754,11824,'_dt_post_options_back_button',''),(16755,11824,'_dt_post_options_hide_thumbnail','0'),(16756,11824,'_dt_post_options_related_mode','same'),(16757,11824,'_dt_post_options_preview','normal'),(16758,13299,'_edit_last','17'),(16759,13299,'_wc_memberships_force_public','no'),(16760,13299,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(16761,13299,'_wpb_post_custom_layout','default'),(16762,13299,'_wpb_vc_js_status','false'),(16763,13299,'_dt_sidebar_position','right'),(16764,13299,'_dt_sidebar_widgetarea_id','sidebar_1'),(16765,13299,'_dt_sidebar_hide_on_mobile','0'),(16766,13299,'_dt_footer_show','1'),(16767,13299,'_dt_footer_widgetarea_id','sidebar_2'),(16768,13299,'_dt_footer_hide_on_mobile','0'),(16769,13299,'_dt_header_title','enabled'),(16770,13299,'_dt_header_background','normal'),(16771,13299,'_dt_header_background_below_slideshow','disabled'),(16772,13299,'_dt_header_transparent_bg_color_scheme','light'),(16773,13299,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16774,13299,'_dt_header_transparent_top_bar_bg_opacity','25'),(16775,13299,'_dt_header_transparent_bg_color','#000000'),(16776,13299,'_dt_header_transparent_bg_opacity','50'),(16777,13299,'_dt_header_disabled_background','normal'),(16778,13299,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16779,13299,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16780,13299,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16781,13299,'_dt_header_disabled_transparent_bg_color','#000000'),(16782,13299,'_dt_header_disabled_transparent_bg_opacity','50'),(16783,13299,'_dt_page_overrides_top_margin',''),(16784,13299,'_dt_page_overrides_bottom_margin',''),(16785,13299,'_dt_post_options_back_button',''),(16786,13299,'_dt_post_options_hide_thumbnail','0'),(16787,13299,'_dt_post_options_related_mode','same'),(16788,13299,'_dt_post_options_preview','normal'),(16789,13299,'_thumbnail_id','13440'),(16790,13299,'_wp_page_template','default'),(16791,13299,'_dt_page_overrides_right_margin',''),(16792,13299,'_dt_page_overrides_left_margin',''),(16793,13299,'_dt_mobile_page_padding_top',''),(16794,13299,'_dt_mobile_page_padding_right',''),(16795,13299,'_dt_mobile_page_padding_bottom',''),(16796,13299,'_dt_mobile_page_padding_left',''),(16797,13299,'_dt_microsite_primary_menu',''),(16798,13299,'_dt_microsite_split_left_menu',''),(16799,13299,'_dt_microsite_split_right_menu',''),(16800,13299,'_dt_microsite_mobile_menu',''),(16801,13299,'iawp_total_views','22'),(16802,14386,'_thumbnail_id','14387'),(16803,14386,'_edit_last','17'),(16804,14386,'_wp_page_template','default'),(16805,14386,'_wpb_post_custom_layout','default'),(16806,14386,'_wpb_vc_js_status','false'),(16807,14386,'_wc_memberships_force_public','no'),(16808,14386,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(16809,14386,'_dt_sidebar_position','right'),(16810,14386,'_dt_sidebar_widgetarea_id','sidebar_1'),(16811,14386,'_dt_sidebar_hide_on_mobile','0'),(16812,14386,'_dt_footer_show','1'),(16813,14386,'_dt_footer_widgetarea_id','sidebar_2'),(16814,14386,'_dt_footer_hide_on_mobile','0'),(16815,14386,'_dt_header_title','enabled'),(16816,14386,'_dt_header_background','normal'),(16817,14386,'_dt_header_background_below_slideshow','disabled'),(16818,14386,'_dt_header_transparent_bg_color_scheme','light'),(16819,14386,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16820,14386,'_dt_header_transparent_top_bar_bg_opacity','25'),(16821,14386,'_dt_header_transparent_bg_color','#000000'),(16822,14386,'_dt_header_transparent_bg_opacity','50'),(16823,14386,'_dt_header_disabled_background','normal'),(16824,14386,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16825,14386,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16826,14386,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16827,14386,'_dt_header_disabled_transparent_bg_color','#000000'),(16828,14386,'_dt_header_disabled_transparent_bg_opacity','50'),(16829,14386,'_dt_page_overrides_top_margin',''),(16830,14386,'_dt_page_overrides_bottom_margin',''),(16831,14386,'_dt_post_options_back_button',''),(16832,14386,'_dt_post_options_hide_thumbnail','0'),(16833,14386,'_dt_post_options_related_mode','same'),(16834,14386,'_dt_post_options_preview','normal'),(16835,14386,'_oembed_f3e05b3cf9b789357e5c0b9fcc765e97','<iframe title=\"Hip Hitching\" width=\"916\" height=\"515\" src=\"https://www.youtube.com/embed/UhuuS6h3R6Q?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(16836,14386,'_oembed_time_f3e05b3cf9b789357e5c0b9fcc765e97','1560368363'),(16837,14386,'_oembed_d845c2c4c6fccc2dacfe1d0438535b42','<iframe title=\"Hip Hitching\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/UhuuS6h3R6Q?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(16838,14386,'_oembed_time_d845c2c4c6fccc2dacfe1d0438535b42','1718082220'),(16839,14386,'_oembed_fe8bf291f210210f619726f9998909e7','<iframe title=\"Hip Hitching\" width=\"920\" height=\"518\" src=\"https://www.youtube.com/embed/UhuuS6h3R6Q?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(16840,14386,'_oembed_time_fe8bf291f210210f619726f9998909e7','1560368405'),(16841,14386,'_oembed_8753b87817a486943a6da73f0ed9fd75','<iframe title=\"Hip Hitching\" width=\"712\" height=\"401\" src=\"https://www.youtube.com/embed/UhuuS6h3R6Q?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(16842,14386,'_oembed_time_8753b87817a486943a6da73f0ed9fd75','1718081016'),(16843,14386,'_dt_page_overrides_right_margin',''),(16844,14386,'_dt_page_overrides_left_margin',''),(16845,14386,'_dt_mobile_page_padding_top',''),(16846,14386,'_dt_mobile_page_padding_right',''),(16847,14386,'_dt_mobile_page_padding_bottom',''),(16848,14386,'_dt_mobile_page_padding_left',''),(16849,14386,'_dt_microsite_primary_menu',''),(16850,14386,'_dt_microsite_split_left_menu',''),(16851,14386,'_dt_microsite_split_right_menu',''),(16852,14386,'_dt_microsite_mobile_menu',''),(16853,14386,'iawp_total_views','436'),(16854,11549,'_edit_last','2'),(16855,11549,'_thumbnail_id','11550'),(16856,11549,'_dt_post_options_preview','normal'),(16857,11549,'_dt_post_options_related_mode','same'),(16858,11549,'_dt_post_options_hide_thumbnail','0'),(16859,11549,'_dt_post_options_back_button',''),(16860,11549,'_dt_page_overrides_bottom_margin',''),(16861,11549,'_dt_page_overrides_top_margin',''),(16862,11549,'_dt_header_disabled_transparent_bg_opacity','50'),(16863,11549,'_dt_header_disabled_transparent_bg_color','#000000'),(16864,11549,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16865,11549,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16866,11549,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16867,11549,'_dt_header_disabled_background','normal'),(16868,11549,'_dt_header_transparent_bg_opacity','50'),(16869,11549,'_dt_header_transparent_bg_color','#000000'),(16870,11549,'_dt_header_transparent_top_bar_bg_opacity','25'),(16871,11549,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16872,11549,'_dt_header_transparent_bg_color_scheme','light'),(16873,11549,'_dt_header_background_below_slideshow','disabled'),(16874,11549,'_dt_header_background','normal'),(16875,11549,'_dt_header_title','enabled'),(16876,11549,'_dt_footer_hide_on_mobile','0'),(16877,11549,'_dt_footer_widgetarea_id','sidebar_2'),(16878,11549,'_dt_footer_show','1'),(16879,11549,'_dt_sidebar_hide_on_mobile','0'),(16880,11549,'_dt_sidebar_widgetarea_id','sidebar_1'),(16881,11549,'_dt_sidebar_position','right'),(16882,11549,'_wpb_vc_js_status','false'),(16883,11549,'slide_template','default'),(16884,11549,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(16885,11549,'_wc_memberships_force_public','no'),(16886,11549,'_wp_old_slug','funding-for-ex-military-via-elcas-become-a-level-4-low-back-pain-specialist-biomechanics-coach'),(16887,12216,'_thumbnail_id','12217'),(16888,12216,'_edit_last','2'),(16889,12216,'_wc_memberships_force_public','no'),(16890,12216,'_wc_memberships_use_custom_post_content_restricted_message','no'),(16891,12216,'slide_template','default'),(16892,12216,'_wpb_vc_js_status','false'),(16893,12216,'_dt_sidebar_position','right'),(16894,12216,'_dt_sidebar_widgetarea_id','sidebar_1'),(16895,12216,'_dt_sidebar_hide_on_mobile','0'),(16896,12216,'_dt_footer_show','1'),(16897,12216,'_dt_footer_widgetarea_id','sidebar_2'),(16898,12216,'_dt_footer_hide_on_mobile','0'),(16899,12216,'_dt_header_title','enabled'),(16900,12216,'_dt_header_background','normal'),(16901,12216,'_dt_header_background_below_slideshow','disabled'),(16902,12216,'_dt_header_transparent_bg_color_scheme','light'),(16903,12216,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16904,12216,'_dt_header_transparent_top_bar_bg_opacity','25'),(16905,12216,'_dt_header_transparent_bg_color','#000000'),(16906,12216,'_dt_header_transparent_bg_opacity','50'),(16907,12216,'_dt_header_disabled_background','normal'),(16908,12216,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16909,12216,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16910,12216,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16911,12216,'_dt_header_disabled_transparent_bg_color','#000000'),(16912,12216,'_dt_header_disabled_transparent_bg_opacity','50'),(16913,12216,'_dt_page_overrides_top_margin',''),(16914,12216,'_dt_page_overrides_bottom_margin',''),(16915,12216,'_dt_post_options_back_button',''),(16916,12216,'_dt_post_options_hide_thumbnail','0'),(16917,12216,'_dt_post_options_related_mode','same'),(16918,12216,'_dt_post_options_preview','normal'),(16919,12344,'_thumbnail_id','12345'),(16920,12344,'_edit_last','2'),(16921,12344,'_wc_memberships_force_public','no'),(16922,12344,'_wc_memberships_use_custom_post_content_restricted_message','no'),(16923,12344,'slide_template','default'),(16924,12344,'_wpb_vc_js_status','false'),(16925,12344,'_dt_sidebar_position','right'),(16926,12344,'_dt_sidebar_widgetarea_id','sidebar_1'),(16927,12344,'_dt_sidebar_hide_on_mobile','0'),(16928,12344,'_dt_footer_show','1'),(16929,12344,'_dt_footer_widgetarea_id','sidebar_2'),(16930,12344,'_dt_footer_hide_on_mobile','0'),(16931,12344,'_dt_header_title','enabled'),(16932,12344,'_dt_header_background','normal'),(16933,12344,'_dt_header_background_below_slideshow','disabled'),(16934,12344,'_dt_header_transparent_bg_color_scheme','light'),(16935,12344,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16936,12344,'_dt_header_transparent_top_bar_bg_opacity','25'),(16937,12344,'_dt_header_transparent_bg_color','#000000'),(16938,12344,'_dt_header_transparent_bg_opacity','50'),(16939,12344,'_dt_header_disabled_background','normal'),(16940,12344,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16941,12344,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16942,12344,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16943,12344,'_dt_header_disabled_transparent_bg_color','#000000'),(16944,12344,'_dt_header_disabled_transparent_bg_opacity','50'),(16945,12344,'_dt_page_overrides_top_margin',''),(16946,12344,'_dt_page_overrides_bottom_margin',''),(16947,12344,'_dt_post_options_back_button',''),(16948,12344,'_dt_post_options_hide_thumbnail','0'),(16949,12344,'_dt_post_options_related_mode','same'),(16950,12344,'_dt_post_options_preview','normal'),(16951,12781,'_oembed_86ce2b8c279232e0fa51aa3e0fc697c8','<blockquote class=\"wp-embedded-content\" data-secret=\"Fe623RorfF\"><a href=\"https://www.biomechanicseducation.com/1333-2/\">Post Contraction Sensory Discharge</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://www.biomechanicseducation.com/1333-2/embed/#?secret=Fe623RorfF\" data-secret=\"Fe623RorfF\" width=\"600\" height=\"338\" title=\"&#8220;Post Contraction Sensory Discharge&#8221; &#8212; Biomechanics Education\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(16952,12781,'_oembed_time_86ce2b8c279232e0fa51aa3e0fc697c8','1554743772'),(16953,12781,'_edit_last','2'),(16954,12781,'_wc_memberships_force_public','no'),(16955,12781,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(16956,12781,'slide_template','default'),(16957,12781,'_wpb_vc_js_status','false'),(16958,12781,'_dt_sidebar_position','right'),(16959,12781,'_dt_sidebar_widgetarea_id','sidebar_1'),(16960,12781,'_dt_sidebar_hide_on_mobile','0'),(16961,12781,'_dt_footer_show','1'),(16962,12781,'_dt_footer_widgetarea_id','sidebar_2'),(16963,12781,'_dt_footer_hide_on_mobile','0'),(16964,12781,'_dt_header_title','enabled'),(16965,12781,'_dt_header_background','normal'),(16966,12781,'_dt_header_background_below_slideshow','disabled'),(16967,12781,'_dt_header_transparent_bg_color_scheme','light'),(16968,12781,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(16969,12781,'_dt_header_transparent_top_bar_bg_opacity','25'),(16970,12781,'_dt_header_transparent_bg_color','#000000'),(16971,12781,'_dt_header_transparent_bg_opacity','50'),(16972,12781,'_dt_header_disabled_background','normal'),(16973,12781,'_dt_header_disabled_transparent_bg_color_scheme','light'),(16974,12781,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(16975,12781,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(16976,12781,'_dt_header_disabled_transparent_bg_color','#000000'),(16977,12781,'_dt_header_disabled_transparent_bg_opacity','50'),(16978,12781,'_dt_page_overrides_top_margin',''),(16979,12781,'_dt_page_overrides_bottom_margin',''),(16980,12781,'_dt_post_options_back_button',''),(16981,12781,'_dt_post_options_hide_thumbnail','0'),(16982,12781,'_dt_post_options_related_mode','same'),(16983,12781,'_dt_post_options_preview','normal'),(16984,12781,'_thumbnail_id','12786'),(16985,12781,'iawp_total_views','31'),(16986,12883,'_thumbnail_id','12889'),(16987,12883,'_edit_last','2'),(16988,12883,'_wc_memberships_force_public','no'),(16989,12883,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(16990,12883,'slide_template','default'),(16991,12883,'_wpb_vc_js_status','false'),(16992,12883,'_dt_sidebar_position','right'),(16993,12883,'_dt_sidebar_widgetarea_id','sidebar_1'),(16994,12883,'_dt_sidebar_hide_on_mobile','0'),(16995,12883,'_dt_footer_show','1'),(16996,12883,'_dt_footer_widgetarea_id','sidebar_2'),(16997,12883,'_dt_footer_hide_on_mobile','0'),(16998,12883,'_dt_header_title','enabled'),(16999,12883,'_dt_header_background','normal'),(17000,12883,'_dt_header_background_below_slideshow','disabled'),(17001,12883,'_dt_header_transparent_bg_color_scheme','light'),(17002,12883,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17003,12883,'_dt_header_transparent_top_bar_bg_opacity','25'),(17004,12883,'_dt_header_transparent_bg_color','#000000'),(17005,12883,'_dt_header_transparent_bg_opacity','50'),(17006,12883,'_dt_header_disabled_background','normal'),(17007,12883,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17008,12883,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17009,12883,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17010,12883,'_dt_header_disabled_transparent_bg_color','#000000'),(17011,12883,'_dt_header_disabled_transparent_bg_opacity','50'),(17012,12883,'_dt_page_overrides_top_margin',''),(17013,12883,'_dt_page_overrides_bottom_margin',''),(17014,12883,'_dt_post_options_back_button',''),(17015,12883,'_dt_post_options_hide_thumbnail','0'),(17016,12883,'_dt_post_options_related_mode','same'),(17017,12883,'_dt_post_options_preview','normal'),(17018,12883,'iawp_total_views','48'),(17019,13708,'_thumbnail_id','13709'),(17020,13708,'_edit_last','2'),(17021,13708,'_wc_memberships_force_public','no'),(17022,13708,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17023,13708,'slide_template','default'),(17024,13708,'_wpb_vc_js_status','false'),(17025,13708,'_dt_sidebar_position','right'),(17026,13708,'_dt_sidebar_widgetarea_id','sidebar_1'),(17027,13708,'_dt_sidebar_hide_on_mobile','0'),(17028,13708,'_dt_footer_show','1'),(17029,13708,'_dt_footer_widgetarea_id','sidebar_2'),(17030,13708,'_dt_footer_hide_on_mobile','0'),(17031,13708,'_dt_header_title','enabled'),(17032,13708,'_dt_header_background','normal'),(17033,13708,'_dt_header_background_below_slideshow','disabled'),(17034,13708,'_dt_header_transparent_bg_color_scheme','light'),(17035,13708,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17036,13708,'_dt_header_transparent_top_bar_bg_opacity','25'),(17037,13708,'_dt_header_transparent_bg_color','#000000'),(17038,13708,'_dt_header_transparent_bg_opacity','50'),(17039,13708,'_dt_header_disabled_background','normal'),(17040,13708,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17041,13708,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17042,13708,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17043,13708,'_dt_header_disabled_transparent_bg_color','#000000'),(17044,13708,'_dt_header_disabled_transparent_bg_opacity','50'),(17045,13708,'_dt_page_overrides_top_margin',''),(17046,13708,'_dt_page_overrides_bottom_margin',''),(17047,13708,'_dt_post_options_back_button',''),(17048,13708,'_dt_post_options_hide_thumbnail','0'),(17049,13708,'_dt_post_options_related_mode','same'),(17050,13708,'_dt_post_options_preview','normal'),(17051,12493,'_oembed_01d7d539aba290854736e8abbb3c1c5c','<blockquote class=\"wp-embedded-content\" data-secret=\"45SifTC4gB\"><a href=\"https://www.biomechanicseducation.com/the-cause-treatment-prevention-of-adductor-muscle-tears-in-sports-players-fitness-clients/\">The Cause, Treatment &#038; Prevention Of Adductor Muscle Tears In Sports Players &#038; Fitness Clients</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" src=\"https://www.biomechanicseducation.com/the-cause-treatment-prevention-of-adductor-muscle-tears-in-sports-players-fitness-clients/embed/#?secret=45SifTC4gB\" data-secret=\"45SifTC4gB\" width=\"600\" height=\"338\" title=\"&#8220;The Cause, Treatment &#038; Prevention Of Adductor Muscle Tears In Sports Players &#038; Fitness Clients&#8221; &#8212; Biomechanics Education\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(17052,12493,'_oembed_time_01d7d539aba290854736e8abbb3c1c5c','1554743870'),(17053,12493,'_edit_last','3'),(17054,12493,'_wc_memberships_force_public','no'),(17055,12493,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17056,12493,'_wpb_post_custom_layout','default'),(17057,12493,'_wpb_vc_js_status','false'),(17058,12493,'_dt_sidebar_position','right'),(17059,12493,'_dt_sidebar_widgetarea_id','sidebar_1'),(17060,12493,'_dt_sidebar_hide_on_mobile','0'),(17061,12493,'_dt_footer_show','1'),(17062,12493,'_dt_footer_widgetarea_id','sidebar_2'),(17063,12493,'_dt_footer_hide_on_mobile','0'),(17064,12493,'_dt_header_title','enabled'),(17065,12493,'_dt_header_background','normal'),(17066,12493,'_dt_header_background_below_slideshow','disabled'),(17067,12493,'_dt_header_transparent_bg_color_scheme','light'),(17068,12493,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17069,12493,'_dt_header_transparent_top_bar_bg_opacity','25'),(17070,12493,'_dt_header_transparent_bg_color','#000000'),(17071,12493,'_dt_header_transparent_bg_opacity','50'),(17072,12493,'_dt_header_disabled_background','normal'),(17073,12493,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17074,12493,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17075,12493,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17076,12493,'_dt_header_disabled_transparent_bg_color','#000000'),(17077,12493,'_dt_header_disabled_transparent_bg_opacity','50'),(17078,12493,'_dt_page_overrides_top_margin',''),(17079,12493,'_dt_page_overrides_bottom_margin',''),(17080,12493,'_dt_post_options_back_button',''),(17081,12493,'_dt_post_options_hide_thumbnail','0'),(17082,12493,'_dt_post_options_related_mode','same'),(17083,12493,'_dt_post_options_preview','normal'),(17084,12493,'_thumbnail_id','12497'),(17085,12493,'_wp_page_template','default'),(17086,12493,'_dt_page_overrides_right_margin',''),(17087,12493,'_dt_page_overrides_left_margin',''),(17088,12493,'_dt_mobile_page_padding_top',''),(17089,12493,'_dt_mobile_page_padding_right',''),(17090,12493,'_dt_mobile_page_padding_bottom',''),(17091,12493,'_dt_mobile_page_padding_left',''),(17092,12493,'_dt_microsite_primary_menu',''),(17093,12493,'_dt_microsite_split_left_menu',''),(17094,12493,'_dt_microsite_split_right_menu',''),(17095,12493,'_dt_microsite_mobile_menu',''),(17096,12493,'iawp_total_views','520'),(17097,13007,'_edit_last','2'),(17098,13007,'_wc_memberships_force_public','no'),(17099,13007,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17100,13007,'slide_template','default'),(17101,13007,'_wpb_vc_js_status','false'),(17102,13007,'_dt_sidebar_position','right'),(17103,13007,'_dt_sidebar_widgetarea_id','sidebar_1'),(17104,13007,'_dt_sidebar_hide_on_mobile','0'),(17105,13007,'_dt_footer_show','1'),(17106,13007,'_dt_footer_widgetarea_id','sidebar_2'),(17107,13007,'_dt_footer_hide_on_mobile','0'),(17108,13007,'_dt_header_title','enabled'),(17109,13007,'_dt_header_background','normal'),(17110,13007,'_dt_header_background_below_slideshow','disabled'),(17111,13007,'_dt_header_transparent_bg_color_scheme','light'),(17112,13007,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17113,13007,'_dt_header_transparent_top_bar_bg_opacity','25'),(17114,13007,'_dt_header_transparent_bg_color','#000000'),(17115,13007,'_dt_header_transparent_bg_opacity','50'),(17116,13007,'_dt_header_disabled_background','normal'),(17117,13007,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17118,13007,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17119,13007,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17120,13007,'_dt_header_disabled_transparent_bg_color','#000000'),(17121,13007,'_dt_header_disabled_transparent_bg_opacity','50'),(17122,13007,'_dt_page_overrides_top_margin',''),(17123,13007,'_dt_page_overrides_bottom_margin',''),(17124,13007,'_dt_post_options_back_button',''),(17125,13007,'_dt_post_options_hide_thumbnail','0'),(17126,13007,'_dt_post_options_related_mode','same'),(17127,13007,'_dt_post_options_preview','normal'),(17128,13007,'_thumbnail_id','13010'),(17129,13140,'_thumbnail_id','13154'),(17130,13140,'_edit_last','2'),(17131,13140,'_wc_memberships_force_public','no'),(17132,13140,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17133,13140,'slide_template','default'),(17134,13140,'_wpb_vc_js_status','false'),(17135,13140,'_dt_sidebar_position','right'),(17136,13140,'_dt_sidebar_widgetarea_id','sidebar_1'),(17137,13140,'_dt_sidebar_hide_on_mobile','0'),(17138,13140,'_dt_footer_show','1'),(17139,13140,'_dt_footer_widgetarea_id','sidebar_2'),(17140,13140,'_dt_footer_hide_on_mobile','0'),(17141,13140,'_dt_header_title','enabled'),(17142,13140,'_dt_header_background','normal'),(17143,13140,'_dt_header_background_below_slideshow','disabled'),(17144,13140,'_dt_header_transparent_bg_color_scheme','light'),(17145,13140,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17146,13140,'_dt_header_transparent_top_bar_bg_opacity','25'),(17147,13140,'_dt_header_transparent_bg_color','#000000'),(17148,13140,'_dt_header_transparent_bg_opacity','50'),(17149,13140,'_dt_header_disabled_background','normal'),(17150,13140,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17151,13140,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17152,13140,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17153,13140,'_dt_header_disabled_transparent_bg_color','#000000'),(17154,13140,'_dt_header_disabled_transparent_bg_opacity','50'),(17155,13140,'_dt_page_overrides_top_margin',''),(17156,13140,'_dt_page_overrides_bottom_margin',''),(17157,13140,'_dt_post_options_back_button',''),(17158,13140,'_dt_post_options_hide_thumbnail','0'),(17159,13140,'_dt_post_options_related_mode','same'),(17160,13140,'_dt_post_options_preview','normal'),(17161,13140,'iawp_total_views','27'),(17162,13618,'_thumbnail_id','13619'),(17163,13618,'_edit_last','2'),(17164,13618,'_wc_memberships_force_public','no'),(17165,13618,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17166,13618,'slide_template','default'),(17167,13618,'_wpb_vc_js_status','false'),(17168,13618,'_dt_sidebar_position','right'),(17169,13618,'_dt_sidebar_widgetarea_id','sidebar_1'),(17170,13618,'_dt_sidebar_hide_on_mobile','0'),(17171,13618,'_dt_footer_show','1'),(17172,13618,'_dt_footer_widgetarea_id','sidebar_2'),(17173,13618,'_dt_footer_hide_on_mobile','0'),(17174,13618,'_dt_header_title','enabled'),(17175,13618,'_dt_header_background','normal'),(17176,13618,'_dt_header_background_below_slideshow','disabled'),(17177,13618,'_dt_header_transparent_bg_color_scheme','light'),(17178,13618,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17179,13618,'_dt_header_transparent_top_bar_bg_opacity','25'),(17180,13618,'_dt_header_transparent_bg_color','#000000'),(17181,13618,'_dt_header_transparent_bg_opacity','50'),(17182,13618,'_dt_header_disabled_background','normal'),(17183,13618,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17184,13618,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17185,13618,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17186,13618,'_dt_header_disabled_transparent_bg_color','#000000'),(17187,13618,'_dt_header_disabled_transparent_bg_opacity','50'),(17188,13618,'_dt_page_overrides_top_margin',''),(17189,13618,'_dt_page_overrides_bottom_margin',''),(17190,13618,'_dt_post_options_back_button',''),(17191,13618,'_dt_post_options_hide_thumbnail','0'),(17192,13618,'_dt_post_options_related_mode','same'),(17193,13618,'_dt_post_options_preview','normal'),(17194,15169,'_edit_last','2'),(17195,15169,'_thumbnail_id','15175'),(17196,15169,'_wp_page_template','default'),(17197,15169,'slide_template','default'),(17198,15169,'_wpb_vc_js_status','false'),(17199,15169,'_wc_memberships_force_public','no'),(17200,15169,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17201,15169,'_dt_sidebar_position','right'),(17202,15169,'_dt_sidebar_widgetarea_id','sidebar_4'),(17203,15169,'_dt_sidebar_hide_on_mobile','0'),(17204,15169,'_dt_footer_show','1'),(17205,15169,'_dt_footer_widgetarea_id','sidebar_2'),(17206,15169,'_dt_footer_hide_on_mobile','0'),(17207,15169,'_dt_header_title','enabled'),(17208,15169,'_dt_header_background','normal'),(17209,15169,'_dt_header_background_below_slideshow','disabled'),(17210,15169,'_dt_header_transparent_bg_color_scheme','light'),(17211,15169,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17212,15169,'_dt_header_transparent_top_bar_bg_opacity','25'),(17213,15169,'_dt_header_transparent_bg_color','#000000'),(17214,15169,'_dt_header_transparent_bg_opacity','50'),(17215,15169,'_dt_header_disabled_background','normal'),(17216,15169,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17217,15169,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17218,15169,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17219,15169,'_dt_header_disabled_transparent_bg_color','#000000'),(17220,15169,'_dt_header_disabled_transparent_bg_opacity','50'),(17221,15169,'_dt_page_overrides_top_margin',''),(17222,15169,'_dt_page_overrides_bottom_margin',''),(17223,15169,'_dt_post_options_back_button',''),(17224,15169,'_dt_post_options_hide_thumbnail','0'),(17225,15169,'_dt_post_options_related_mode','same'),(17226,15169,'_dt_post_options_preview','normal'),(17227,15432,'_edit_last','2'),(17228,15432,'_wp_page_template','default'),(17229,15432,'slide_template','default'),(17230,15432,'_wpb_vc_js_status','false'),(17231,15432,'_wc_memberships_force_public','no'),(17232,15432,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17233,15432,'_dt_sidebar_position','right'),(17234,15432,'_dt_sidebar_widgetarea_id','sidebar_4'),(17235,15432,'_dt_sidebar_hide_on_mobile','0'),(17236,15432,'_dt_footer_show','1'),(17237,15432,'_dt_footer_widgetarea_id','sidebar_2'),(17238,15432,'_dt_footer_hide_on_mobile','0'),(17239,15432,'_dt_header_title','enabled'),(17240,15432,'_dt_header_background','normal'),(17241,15432,'_dt_header_background_below_slideshow','disabled'),(17242,15432,'_dt_header_transparent_bg_color_scheme','light'),(17243,15432,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17244,15432,'_dt_header_transparent_top_bar_bg_opacity','25'),(17245,15432,'_dt_header_transparent_bg_color','#000000'),(17246,15432,'_dt_header_transparent_bg_opacity','50'),(17247,15432,'_dt_header_disabled_background','normal'),(17248,15432,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17249,15432,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17250,15432,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17251,15432,'_dt_header_disabled_transparent_bg_color','#000000'),(17252,15432,'_dt_header_disabled_transparent_bg_opacity','50'),(17253,15432,'_dt_page_overrides_top_margin',''),(17254,15432,'_dt_page_overrides_bottom_margin',''),(17255,15432,'_dt_post_options_back_button',''),(17256,15432,'_dt_post_options_hide_thumbnail','0'),(17257,15432,'_dt_post_options_related_mode','same'),(17258,15432,'_dt_post_options_preview','normal'),(17259,15432,'_oembed_90263494cb226f5ba33427ff105a05af','<div id=\"fb-root\"></div><script async=\"1\" defer=\"1\" crossorigin=\"anonymous\" src=\"https://connect.facebook.net/en_GB/sdk.js#xfbml=1&amp;version=v3.3\"></script><div class=\"fb-video\" data-href=\"https://www.facebook.com/gary/videos/2336471133290315/\" data-width=\"1200\"><blockquote cite=\"https://www.facebook.com/gary/videos/2336471133290315/\" class=\"fb-xfbml-parse-ignore\"><a href=\"https://www.facebook.com/gary/videos/2336471133290315/\">Stop Buying Into the Idea of Passive Income</a><p></p>Posted by <a href=\"https://www.facebook.com/gary/\">Gary Vaynerchuk</a> on Wednesday, 26 June 2019</blockquote></div>'),(17260,15432,'_oembed_time_90263494cb226f5ba33427ff105a05af','1563804233'),(17261,15432,'_oembed_df2cc77b00bb8b653cd6b277ed395dcb','<div id=\"fb-root\"></div><script async=\"1\" defer=\"1\" crossorigin=\"anonymous\" src=\"https://connect.facebook.net/en_GB/sdk.js#xfbml=1&amp;version=v3.3\"></script><div class=\"fb-video\" data-href=\"https://www.facebook.com/gary/videos/2336471133290315/\" data-width=\"871\"><blockquote cite=\"https://www.facebook.com/gary/videos/2336471133290315/\" class=\"fb-xfbml-parse-ignore\"><a href=\"https://www.facebook.com/gary/videos/2336471133290315/\">Stop Buying Into the Idea of Passive Income</a><p></p>Posted by <a href=\"https://www.facebook.com/gary/\">Gary Vaynerchuk</a> on Wednesday, 26 June 2019</blockquote></div>'),(17262,15432,'_oembed_time_df2cc77b00bb8b653cd6b277ed395dcb','1563804237'),(17263,15432,'_thumbnail_id','15434'),(17264,15432,'_oembed_c1ceb570e38c4602021b0914451fc810','<div id=\"fb-root\"></div><script async=\"1\" defer=\"1\" crossorigin=\"anonymous\" src=\"https://connect.facebook.net/en_GB/sdk.js#xfbml=1&amp;version=v3.3\"></script><div class=\"fb-video\" data-href=\"https://www.facebook.com/gary/videos/2336471133290315/\" data-width=\"875\"><blockquote cite=\"https://www.facebook.com/gary/videos/2336471133290315/\" class=\"fb-xfbml-parse-ignore\"><a href=\"https://www.facebook.com/gary/videos/2336471133290315/\">Stop Buying Into the Idea of Passive Income</a><p></p>Posted by <a href=\"https://www.facebook.com/gary/\">Gary Vaynerchuk</a> on Wednesday, 26 June 2019</blockquote></div>'),(17265,15432,'_oembed_time_c1ceb570e38c4602021b0914451fc810','1563804335'),(17266,15432,'_oembed_992bd318bc60e2235d097f6f0917a0ac','<div id=\"fb-root\"></div><script async=\"1\" defer=\"1\" crossorigin=\"anonymous\" src=\"https://connect.facebook.net/en_US/sdk.js#xfbml=1&amp;version=v3.3\"></script><div class=\"fb-video\" data-href=\"https://www.facebook.com/gary/videos/2336471133290315/\" data-width=\"900\"><blockquote cite=\"https://www.facebook.com/gary/videos/2336471133290315/\" class=\"fb-xfbml-parse-ignore\"><a href=\"https://www.facebook.com/gary/videos/2336471133290315/\">Stop Buying Into the Idea of Passive Income</a><p></p>Posted by <a href=\"https://www.facebook.com/gary/\">Gary Vaynerchuk</a> on Wednesday, June 26, 2019</blockquote></div>'),(17267,15432,'_oembed_time_992bd318bc60e2235d097f6f0917a0ac','1564383432'),(17268,14072,'slide_template','default'),(17269,14072,'_wpb_vc_js_status','false'),(17270,14072,'_edit_last','2'),(17271,14072,'_wp_page_template','default'),(17272,14072,'_wc_memberships_force_public','no'),(17273,14072,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17274,14072,'_dt_sidebar_position','right'),(17275,14072,'_dt_sidebar_widgetarea_id','sidebar_1'),(17276,14072,'_dt_sidebar_hide_on_mobile','0'),(17277,14072,'_dt_footer_show','1'),(17278,14072,'_dt_footer_widgetarea_id','sidebar_2'),(17279,14072,'_dt_footer_hide_on_mobile','0'),(17280,14072,'_dt_header_title','enabled'),(17281,14072,'_dt_header_background','normal'),(17282,14072,'_dt_header_background_below_slideshow','disabled'),(17283,14072,'_dt_header_transparent_bg_color_scheme','light'),(17284,14072,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17285,14072,'_dt_header_transparent_top_bar_bg_opacity','25'),(17286,14072,'_dt_header_transparent_bg_color','#000000'),(17287,14072,'_dt_header_transparent_bg_opacity','50'),(17288,14072,'_dt_header_disabled_background','normal'),(17289,14072,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17290,14072,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17291,14072,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17292,14072,'_dt_header_disabled_transparent_bg_color','#000000'),(17293,14072,'_dt_header_disabled_transparent_bg_opacity','50'),(17294,14072,'_dt_page_overrides_top_margin',''),(17295,14072,'_dt_page_overrides_bottom_margin',''),(17296,14072,'_dt_post_options_back_button',''),(17297,14072,'_dt_post_options_hide_thumbnail','0'),(17298,14072,'_dt_post_options_related_mode','same'),(17299,14072,'_dt_post_options_preview','normal'),(17300,14072,'_thumbnail_id','14075'),(17301,14072,'iawp_total_views','200'),(17302,14118,'_edit_last','2'),(17303,14118,'_wp_page_template','default'),(17304,14118,'slide_template','default'),(17305,14118,'_wpb_vc_js_status','false'),(17306,14118,'_wc_memberships_force_public','no'),(17307,14118,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17308,14118,'_dt_sidebar_position','right'),(17309,14118,'_dt_sidebar_widgetarea_id','sidebar_1'),(17310,14118,'_dt_sidebar_hide_on_mobile','0'),(17311,14118,'_dt_footer_show','1'),(17312,14118,'_dt_footer_widgetarea_id','sidebar_2'),(17313,14118,'_dt_footer_hide_on_mobile','0'),(17314,14118,'_dt_header_title','enabled'),(17315,14118,'_dt_header_background','normal'),(17316,14118,'_dt_header_background_below_slideshow','disabled'),(17317,14118,'_dt_header_transparent_bg_color_scheme','light'),(17318,14118,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17319,14118,'_dt_header_transparent_top_bar_bg_opacity','25'),(17320,14118,'_dt_header_transparent_bg_color','#000000'),(17321,14118,'_dt_header_transparent_bg_opacity','50'),(17322,14118,'_dt_header_disabled_background','normal'),(17323,14118,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17324,14118,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17325,14118,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17326,14118,'_dt_header_disabled_transparent_bg_color','#000000'),(17327,14118,'_dt_header_disabled_transparent_bg_opacity','50'),(17328,14118,'_dt_page_overrides_top_margin',''),(17329,14118,'_dt_page_overrides_bottom_margin',''),(17330,14118,'_dt_post_options_back_button',''),(17331,14118,'_dt_post_options_hide_thumbnail','0'),(17332,14118,'_dt_post_options_related_mode','same'),(17333,14118,'_dt_post_options_preview','normal'),(17334,14118,'_thumbnail_id','14133'),(17335,15786,'_edit_last','2'),(17336,15786,'_oembed_4f3762f420987398cc7532e308fdf610','<iframe title=\"Sub Talar Joint Test (STJ)\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/19cTcHQp5hQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(17337,15786,'_oembed_time_4f3762f420987398cc7532e308fdf610','1565026756'),(17338,15786,'_oembed_32ceffdfdf3219b1bcf91dd1a68d7fdd','<iframe title=\"Jacks Test\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/iW7uAzKJmgs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(17339,15786,'_oembed_time_32ceffdfdf3219b1bcf91dd1a68d7fdd','1565026836'),(17340,15786,'_thumbnail_id','15789'),(17341,15786,'_wp_page_template','default'),(17342,15786,'slide_template','default'),(17343,15786,'_wpb_vc_js_status','false'),(17344,15786,'_wc_memberships_force_public','no'),(17345,15786,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17346,15786,'_dt_sidebar_position','right'),(17347,15786,'_dt_sidebar_widgetarea_id','sidebar_4'),(17348,15786,'_dt_sidebar_hide_on_mobile','0'),(17349,15786,'_dt_footer_show','1'),(17350,15786,'_dt_footer_widgetarea_id','sidebar_2'),(17351,15786,'_dt_footer_hide_on_mobile','0'),(17352,15786,'_dt_header_title','enabled'),(17353,15786,'_dt_header_background','normal'),(17354,15786,'_dt_header_background_below_slideshow','disabled'),(17355,15786,'_dt_header_transparent_bg_color_scheme','light'),(17356,15786,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17357,15786,'_dt_header_transparent_top_bar_bg_opacity','25'),(17358,15786,'_dt_header_transparent_bg_color','#000000'),(17359,15786,'_dt_header_transparent_bg_opacity','50'),(17360,15786,'_dt_header_disabled_background','normal'),(17361,15786,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17362,15786,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17363,15786,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17364,15786,'_dt_header_disabled_transparent_bg_color','#000000'),(17365,15786,'_dt_header_disabled_transparent_bg_opacity','50'),(17366,15786,'_dt_page_overrides_top_margin',''),(17367,15786,'_dt_page_overrides_bottom_margin',''),(17368,15786,'_dt_post_options_back_button',''),(17369,15786,'_dt_post_options_hide_thumbnail','0'),(17370,15786,'_dt_post_options_related_mode','same'),(17371,15786,'_dt_post_options_preview','normal'),(17372,15786,'iawp_total_views','42'),(17373,16054,'_edit_last','2'),(17374,16054,'_thumbnail_id','7922'),(17375,16054,'_wp_page_template','default'),(17376,16054,'slide_template','default'),(17377,16054,'_wp_old_slug','biomechanics-education-1-day-workshops-for-personal-trainers-sports-therapists-sc-coaches-and-more'),(17378,16054,'_wpb_vc_js_status','false'),(17379,16054,'_wc_memberships_force_public','no'),(17380,16054,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17381,16054,'_dt_sidebar_position','right'),(17382,16054,'_dt_sidebar_widgetarea_id','sidebar_4'),(17383,16054,'_dt_sidebar_hide_on_mobile','0'),(17384,16054,'_dt_footer_show','1'),(17385,16054,'_dt_footer_widgetarea_id','sidebar_2'),(17386,16054,'_dt_footer_hide_on_mobile','0'),(17387,16054,'_dt_header_title','enabled'),(17388,16054,'_dt_header_background','normal'),(17389,16054,'_dt_header_background_below_slideshow','disabled'),(17390,16054,'_dt_header_transparent_bg_color_scheme','light'),(17391,16054,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17392,16054,'_dt_header_transparent_top_bar_bg_opacity','25'),(17393,16054,'_dt_header_transparent_bg_color','#000000'),(17394,16054,'_dt_header_transparent_bg_opacity','50'),(17395,16054,'_dt_header_disabled_background','normal'),(17396,16054,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17397,16054,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17398,16054,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17399,16054,'_dt_header_disabled_transparent_bg_color','#000000'),(17400,16054,'_dt_header_disabled_transparent_bg_opacity','50'),(17401,16054,'_dt_page_overrides_top_margin',''),(17402,16054,'_dt_page_overrides_bottom_margin',''),(17403,16054,'_dt_post_options_back_button',''),(17404,16054,'_dt_post_options_hide_thumbnail','0'),(17405,16054,'_dt_post_options_related_mode','same'),(17406,16054,'_dt_post_options_preview','normal'),(17407,14576,'_edit_last','2'),(17408,14576,'_thumbnail_id','14577'),(17409,14576,'_wp_page_template','default'),(17410,14576,'_dt_page_overrides_right_margin',''),(17411,14576,'_wpb_vc_js_status','false'),(17412,14576,'_wc_memberships_force_public','no'),(17413,14576,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17414,14576,'_dt_sidebar_position','right'),(17415,14576,'_dt_sidebar_widgetarea_id','sidebar_4'),(17416,14576,'_dt_sidebar_hide_on_mobile','0'),(17417,14576,'_dt_footer_show','1'),(17418,14576,'_dt_footer_widgetarea_id','sidebar_2'),(17419,14576,'_dt_footer_hide_on_mobile','0'),(17420,14576,'_dt_header_title','enabled'),(17421,14576,'_dt_header_background','normal'),(17422,14576,'_dt_header_background_below_slideshow','disabled'),(17423,14576,'_dt_header_transparent_bg_color_scheme','light'),(17424,14576,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17425,14576,'_dt_header_transparent_top_bar_bg_opacity','25'),(17426,14576,'_dt_header_transparent_bg_color','#000000'),(17427,14576,'_dt_header_transparent_bg_opacity','50'),(17428,14576,'_dt_header_disabled_background','normal'),(17429,14576,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17430,14576,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17431,14576,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17432,14576,'_dt_header_disabled_transparent_bg_color','#000000'),(17433,14576,'_dt_header_disabled_transparent_bg_opacity','50'),(17434,14576,'_dt_page_overrides_top_margin',''),(17435,14576,'_dt_page_overrides_bottom_margin',''),(17436,14576,'_dt_post_options_back_button',''),(17437,14576,'_dt_post_options_hide_thumbnail','0'),(17438,14576,'_dt_post_options_related_mode','same'),(17439,14576,'_dt_post_options_preview','normal'),(17440,14576,'_dt_page_overrides_left_margin',''),(17441,14576,'_dt_mobile_page_padding_top',''),(17442,14576,'_dt_mobile_page_padding_right',''),(17443,14576,'_dt_mobile_page_padding_bottom',''),(17444,14576,'_dt_mobile_page_padding_left',''),(17445,14576,'_dt_microsite_primary_menu',''),(17446,14576,'_dt_microsite_split_left_menu',''),(17447,14576,'_dt_microsite_split_right_menu',''),(17448,14576,'_dt_microsite_mobile_menu',''),(17449,14576,'iawp_total_views','38'),(17450,14845,'_edit_last','2'),(17451,14845,'_thumbnail_id','14846'),(17452,14845,'_wp_page_template','default'),(17453,14845,'slide_template','default'),(17454,14845,'_wpb_vc_js_status','false'),(17455,14845,'_wc_memberships_force_public','no'),(17456,14845,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17457,14845,'_dt_sidebar_position','right'),(17458,14845,'_dt_sidebar_widgetarea_id','sidebar_4'),(17459,14845,'_dt_sidebar_hide_on_mobile','0'),(17460,14845,'_dt_footer_show','1'),(17461,14845,'_dt_footer_widgetarea_id','sidebar_2'),(17462,14845,'_dt_footer_hide_on_mobile','0'),(17463,14845,'_dt_header_title','enabled'),(17464,14845,'_dt_header_background','normal'),(17465,14845,'_dt_header_background_below_slideshow','disabled'),(17466,14845,'_dt_header_transparent_bg_color_scheme','light'),(17467,14845,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17468,14845,'_dt_header_transparent_top_bar_bg_opacity','25'),(17469,14845,'_dt_header_transparent_bg_color','#000000'),(17470,14845,'_dt_header_transparent_bg_opacity','50'),(17471,14845,'_dt_header_disabled_background','normal'),(17472,14845,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17473,14845,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17474,14845,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17475,14845,'_dt_header_disabled_transparent_bg_color','#000000'),(17476,14845,'_dt_header_disabled_transparent_bg_opacity','50'),(17477,14845,'_dt_page_overrides_top_margin',''),(17478,14845,'_dt_page_overrides_bottom_margin',''),(17479,14845,'_dt_post_options_back_button',''),(17480,14845,'_dt_post_options_hide_thumbnail','0'),(17481,14845,'_dt_post_options_related_mode','same'),(17482,14845,'_dt_post_options_preview','normal'),(17483,15291,'_edit_last','2'),(17484,15291,'_thumbnail_id','15294'),(17485,15291,'_wp_page_template','default'),(17486,15291,'slide_template','default'),(17487,15291,'_wpb_vc_js_status','true'),(17488,15291,'_wc_memberships_force_public','no'),(17489,15291,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17490,15291,'_dt_sidebar_position','right'),(17491,15291,'_dt_sidebar_widgetarea_id','sidebar_4'),(17492,15291,'_dt_sidebar_hide_on_mobile','0'),(17493,15291,'_dt_footer_show','1'),(17494,15291,'_dt_footer_widgetarea_id','sidebar_2'),(17495,15291,'_dt_footer_hide_on_mobile','0'),(17496,15291,'_dt_header_title','enabled'),(17497,15291,'_dt_header_background','normal'),(17498,15291,'_dt_header_background_below_slideshow','disabled'),(17499,15291,'_dt_header_transparent_bg_color_scheme','light'),(17500,15291,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17501,15291,'_dt_header_transparent_top_bar_bg_opacity','25'),(17502,15291,'_dt_header_transparent_bg_color','#000000'),(17503,15291,'_dt_header_transparent_bg_opacity','50'),(17504,15291,'_dt_header_disabled_background','normal'),(17505,15291,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17506,15291,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17507,15291,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17508,15291,'_dt_header_disabled_transparent_bg_color','#000000'),(17509,15291,'_dt_header_disabled_transparent_bg_opacity','50'),(17510,15291,'_dt_page_overrides_top_margin',''),(17511,15291,'_dt_page_overrides_bottom_margin',''),(17512,15291,'_dt_post_options_back_button',''),(17513,15291,'_dt_post_options_hide_thumbnail','0'),(17514,15291,'_dt_post_options_related_mode','same'),(17515,15291,'_dt_post_options_preview','normal'),(17516,15291,'_wp_old_slug','is-there-such-a-thing-as-caring-too-much-and-can-it-adversely-affect-your-client'),(17517,15602,'_edit_last','17'),(17518,15602,'_wp_page_template','default'),(17519,15602,'_dt_page_overrides_right_margin',''),(17520,15602,'_wpb_vc_js_status','false'),(17521,15602,'_wc_memberships_force_public','no'),(17522,15602,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17523,15602,'_dt_sidebar_position','right'),(17524,15602,'_dt_sidebar_widgetarea_id','sidebar_4'),(17525,15602,'_dt_sidebar_hide_on_mobile','0'),(17526,15602,'_dt_footer_show','1'),(17527,15602,'_dt_footer_widgetarea_id','sidebar_2'),(17528,15602,'_dt_footer_hide_on_mobile','0'),(17529,15602,'_dt_header_title','enabled'),(17530,15602,'_dt_header_background','normal'),(17531,15602,'_dt_header_background_below_slideshow','disabled'),(17532,15602,'_dt_header_transparent_bg_color_scheme','light'),(17533,15602,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17534,15602,'_dt_header_transparent_top_bar_bg_opacity','25'),(17535,15602,'_dt_header_transparent_bg_color','#000000'),(17536,15602,'_dt_header_transparent_bg_opacity','50'),(17537,15602,'_dt_header_disabled_background','normal'),(17538,15602,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17539,15602,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17540,15602,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17541,15602,'_dt_header_disabled_transparent_bg_color','#000000'),(17542,15602,'_dt_header_disabled_transparent_bg_opacity','50'),(17543,15602,'_dt_page_overrides_top_margin',''),(17544,15602,'_dt_page_overrides_bottom_margin',''),(17545,15602,'_dt_post_options_back_button',''),(17546,15602,'_dt_post_options_hide_thumbnail','0'),(17547,15602,'_dt_post_options_related_mode','same'),(17548,15602,'_dt_post_options_preview','normal'),(17549,15602,'_thumbnail_id','15609'),(17550,15602,'_oembed_411aed04532f8bc60d694d1699847b9e','<blockquote class=\"wp-embedded-content\" data-secret=\"wAj63NuzbI\"><a href=\"https://hersco.com/education-center/foot-biomechanics-root-theory/\">Foot Biomechanics, Part 1: Root Theory</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Foot Biomechanics, Part 1: Root Theory&#8221; &#8212; Hersco Edu Center\" src=\"https://hersco.com/education-center/foot-biomechanics-root-theory/embed/#?secret=vImjB53VGt#?secret=wAj63NuzbI\" data-secret=\"wAj63NuzbI\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(17551,15602,'_oembed_time_411aed04532f8bc60d694d1699847b9e','1684178740'),(17552,15602,'_dt_page_overrides_left_margin',''),(17553,15602,'_dt_mobile_page_padding_top',''),(17554,15602,'_dt_mobile_page_padding_right',''),(17555,15602,'_dt_mobile_page_padding_bottom',''),(17556,15602,'_dt_mobile_page_padding_left',''),(17557,15602,'_dt_microsite_primary_menu',''),(17558,15602,'_dt_microsite_split_left_menu',''),(17559,15602,'_dt_microsite_split_right_menu',''),(17560,15602,'_dt_microsite_mobile_menu',''),(17561,15602,'_wpb_post_custom_layout','default'),(17562,15602,'iawp_total_views','38'),(17563,18287,'_edit_last','2'),(17564,18287,'_thumbnail_id','18288'),(17565,18287,'_wp_page_template','default'),(17566,18287,'slide_template','default'),(17567,18287,'_wpb_vc_js_status','false'),(17568,18287,'_wc_memberships_force_public','no'),(17569,18287,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17570,18287,'_dt_sidebar_position','right'),(17571,18287,'_dt_sidebar_widgetarea_id','sidebar_4'),(17572,18287,'_dt_sidebar_hide_on_mobile','0'),(17573,18287,'_dt_footer_show','1'),(17574,18287,'_dt_footer_widgetarea_id','sidebar_2'),(17575,18287,'_dt_footer_hide_on_mobile','0'),(17576,18287,'_dt_header_title','enabled'),(17577,18287,'_dt_header_background','normal'),(17578,18287,'_dt_header_background_below_slideshow','disabled'),(17579,18287,'_dt_header_transparent_bg_color_scheme','light'),(17580,18287,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17581,18287,'_dt_header_transparent_top_bar_bg_opacity','25'),(17582,18287,'_dt_header_transparent_bg_color','#000000'),(17583,18287,'_dt_header_transparent_bg_opacity','50'),(17584,18287,'_dt_header_disabled_background','normal'),(17585,18287,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17586,18287,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17587,18287,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17588,18287,'_dt_header_disabled_transparent_bg_color','#000000'),(17589,18287,'_dt_header_disabled_transparent_bg_opacity','50'),(17590,18287,'_dt_page_overrides_top_margin',''),(17591,18287,'_dt_page_overrides_bottom_margin',''),(17592,18287,'_dt_post_options_back_button',''),(17593,18287,'_dt_post_options_hide_thumbnail','0'),(17594,18287,'_dt_post_options_related_mode','same'),(17595,18287,'_dt_post_options_preview','normal'),(17596,18628,'_edit_last','17'),(17597,18628,'_thumbnail_id','18633'),(17598,18628,'_wp_page_template','default'),(17599,18628,'_wpb_post_custom_layout','default'),(17600,18628,'_wpb_vc_js_status','false'),(17601,18628,'_wc_memberships_force_public','no'),(17602,18628,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17603,18628,'_dt_sidebar_position','right'),(17604,18628,'_dt_sidebar_widgetarea_id','sidebar_1'),(17605,18628,'_dt_sidebar_hide_on_mobile','0'),(17606,18628,'_dt_footer_show','1'),(17607,18628,'_dt_footer_widgetarea_id','sidebar_2'),(17608,18628,'_dt_footer_hide_on_mobile','0'),(17609,18628,'_dt_header_title','enabled'),(17610,18628,'_dt_header_background','normal'),(17611,18628,'_dt_header_background_below_slideshow','disabled'),(17612,18628,'_dt_header_transparent_bg_color_scheme','light'),(17613,18628,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17614,18628,'_dt_header_transparent_top_bar_bg_opacity','25'),(17615,18628,'_dt_header_transparent_bg_color','#000000'),(17616,18628,'_dt_header_transparent_bg_opacity','50'),(17617,18628,'_dt_header_disabled_background','normal'),(17618,18628,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17619,18628,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17620,18628,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17621,18628,'_dt_header_disabled_transparent_bg_color','#000000'),(17622,18628,'_dt_header_disabled_transparent_bg_opacity','50'),(17623,18628,'_dt_page_overrides_top_margin',''),(17624,18628,'_dt_page_overrides_bottom_margin',''),(17625,18628,'_dt_post_options_back_button',''),(17626,18628,'_dt_post_options_hide_thumbnail','0'),(17627,18628,'_dt_post_options_related_mode','same'),(17628,18628,'_dt_post_options_preview','normal'),(17629,18628,'_oembed_fd28b0a7c68c7fdd5a350a9a2676034c','{{unknown}}'),(17630,18628,'_wp_old_slug','the-tight-hip-flexor-misconception'),(17631,18628,'_dt_page_overrides_right_margin',''),(17632,18628,'_dt_page_overrides_left_margin',''),(17633,18628,'_dt_mobile_page_padding_top',''),(17634,18628,'_dt_mobile_page_padding_right',''),(17635,18628,'_dt_mobile_page_padding_bottom',''),(17636,18628,'_dt_mobile_page_padding_left',''),(17637,18628,'_dt_microsite_primary_menu',''),(17638,18628,'_dt_microsite_split_left_menu',''),(17639,18628,'_dt_microsite_split_right_menu',''),(17640,18628,'_dt_microsite_mobile_menu',''),(17641,18628,'iawp_total_views','54'),(17642,19072,'_wc_memberships_force_public','no'),(17643,19072,'_thumbnail_id','19073'),(17644,19072,'_dt_post_options_related_mode','same'),(17645,19072,'_dt_page_overrides_bottom_margin',''),(17646,19072,'_dt_post_options_back_button',''),(17647,19072,'_dt_post_options_hide_thumbnail','0'),(17648,19072,'_dt_post_options_preview','normal'),(17649,19072,'_edit_last','2'),(17650,19072,'_dt_sidebar_position','right'),(17651,19072,'_dt_sidebar_widgetarea_id','sidebar_1'),(17652,19072,'_dt_sidebar_hide_on_mobile','0'),(17653,19072,'_dt_footer_show','1'),(17654,19072,'_dt_footer_widgetarea_id','sidebar_2'),(17655,19072,'_dt_footer_hide_on_mobile','0'),(17656,19072,'_dt_header_title','enabled'),(17657,19072,'_dt_header_background','normal'),(17658,19072,'_dt_header_background_below_slideshow','disabled'),(17659,19072,'_dt_header_transparent_bg_color_scheme','light'),(17660,19072,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17661,19072,'_dt_header_transparent_top_bar_bg_opacity','25'),(17662,19072,'_dt_header_transparent_bg_color','#000000'),(17663,19072,'_dt_header_transparent_bg_opacity','50'),(17664,19072,'_dt_header_disabled_background','normal'),(17665,19072,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17666,19072,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17667,19072,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17668,19072,'_dt_header_disabled_transparent_bg_color','#000000'),(17669,19072,'_dt_header_disabled_transparent_bg_opacity','50'),(17670,19072,'_dt_page_overrides_top_margin',''),(17671,19072,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17672,19072,'slide_template','default'),(17673,19072,'_wpb_vc_js_status','false'),(17674,19072,'_wp_page_template','default'),(17675,19072,'_wp_old_slug','intrinsic-biomechanics-for-personal-trainers-knowing-the-how-the-why-for-exercise-prescription'),(17676,19072,'iawp_total_views','28'),(17677,16225,'_edit_last','2'),(17678,16225,'_wp_page_template','default'),(17679,16225,'slide_template','default'),(17680,16225,'_wpb_vc_js_status','false'),(17681,16225,'_wc_memberships_force_public','no'),(17682,16225,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17683,16225,'_dt_sidebar_position','right'),(17684,16225,'_dt_sidebar_widgetarea_id','sidebar_4'),(17685,16225,'_dt_sidebar_hide_on_mobile','0'),(17686,16225,'_dt_footer_show','1'),(17687,16225,'_dt_footer_widgetarea_id','sidebar_2'),(17688,16225,'_dt_footer_hide_on_mobile','0'),(17689,16225,'_dt_header_title','enabled'),(17690,16225,'_dt_header_background','normal'),(17691,16225,'_dt_header_background_below_slideshow','disabled'),(17692,16225,'_dt_header_transparent_bg_color_scheme','light'),(17693,16225,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17694,16225,'_dt_header_transparent_top_bar_bg_opacity','25'),(17695,16225,'_dt_header_transparent_bg_color','#000000'),(17696,16225,'_dt_header_transparent_bg_opacity','50'),(17697,16225,'_dt_header_disabled_background','normal'),(17698,16225,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17699,16225,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17700,16225,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17701,16225,'_dt_header_disabled_transparent_bg_color','#000000'),(17702,16225,'_dt_header_disabled_transparent_bg_opacity','50'),(17703,16225,'_dt_page_overrides_top_margin',''),(17704,16225,'_dt_page_overrides_bottom_margin',''),(17705,16225,'_dt_post_options_back_button',''),(17706,16225,'_dt_post_options_hide_thumbnail','0'),(17707,16225,'_dt_post_options_related_mode','same'),(17708,16225,'_dt_post_options_preview','normal'),(17709,16225,'_thumbnail_id','16228'),(17710,16411,'_dt_microsite_mobile_menu',''),(17711,16411,'_dt_microsite_split_right_menu',''),(17712,16411,'_dt_microsite_split_left_menu',''),(17713,16411,'_dt_microsite_primary_menu',''),(17714,16411,'_dt_mobile_page_padding_left',''),(17715,16411,'_dt_mobile_page_padding_bottom',''),(17716,16411,'_dt_mobile_page_padding_right',''),(17717,16411,'_dt_mobile_page_padding_top',''),(17718,16411,'_dt_page_overrides_left_margin',''),(17719,16411,'_dt_page_overrides_right_margin',''),(17720,16411,'_edit_last','17'),(17721,16411,'_wp_page_template','default'),(17722,16411,'_wpb_post_custom_layout','default'),(17723,16411,'_wpb_vc_js_status','false'),(17724,16411,'_wc_memberships_force_public','no'),(17725,16411,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17726,16411,'_dt_sidebar_position','right'),(17727,16411,'_dt_sidebar_widgetarea_id','sidebar_4'),(17728,16411,'_dt_sidebar_hide_on_mobile','0'),(17729,16411,'_dt_footer_show','1'),(17730,16411,'_dt_footer_widgetarea_id','sidebar_2'),(17731,16411,'_dt_footer_hide_on_mobile','0'),(17732,16411,'_dt_header_title','enabled'),(17733,16411,'_dt_header_background','normal'),(17734,16411,'_dt_header_background_below_slideshow','disabled'),(17735,16411,'_dt_header_transparent_bg_color_scheme','light'),(17736,16411,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17737,16411,'_dt_header_transparent_top_bar_bg_opacity','25'),(17738,16411,'_dt_header_transparent_bg_color','#000000'),(17739,16411,'_dt_header_transparent_bg_opacity','50'),(17740,16411,'_dt_header_disabled_background','normal'),(17741,16411,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17742,16411,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17743,16411,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17744,16411,'_dt_header_disabled_transparent_bg_color','#000000'),(17745,16411,'_dt_header_disabled_transparent_bg_opacity','50'),(17746,16411,'_dt_page_overrides_top_margin',''),(17747,16411,'_dt_page_overrides_bottom_margin',''),(17748,16411,'_dt_post_options_back_button',''),(17749,16411,'_dt_post_options_hide_thumbnail','0'),(17750,16411,'_dt_post_options_related_mode','same'),(17751,16411,'_dt_post_options_preview','normal'),(17752,16411,'_thumbnail_id','16415'),(17753,16411,'iawp_total_views','108'),(17754,17101,'_edit_last','2'),(17755,17101,'_wp_page_template','default'),(17756,17101,'slide_template','default'),(17757,17101,'_wpb_vc_js_status','false'),(17758,17101,'_wc_memberships_force_public','no'),(17759,17101,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17760,17101,'_dt_sidebar_position','right'),(17761,17101,'_dt_sidebar_widgetarea_id','sidebar_4'),(17762,17101,'_dt_sidebar_hide_on_mobile','0'),(17763,17101,'_dt_footer_show','1'),(17764,17101,'_dt_footer_widgetarea_id','sidebar_2'),(17765,17101,'_dt_footer_hide_on_mobile','0'),(17766,17101,'_dt_header_title','enabled'),(17767,17101,'_dt_header_background','normal'),(17768,17101,'_dt_header_background_below_slideshow','disabled'),(17769,17101,'_dt_header_transparent_bg_color_scheme','light'),(17770,17101,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17771,17101,'_dt_header_transparent_top_bar_bg_opacity','25'),(17772,17101,'_dt_header_transparent_bg_color','#000000'),(17773,17101,'_dt_header_transparent_bg_opacity','50'),(17774,17101,'_dt_header_disabled_background','normal'),(17775,17101,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17776,17101,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17777,17101,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17778,17101,'_dt_header_disabled_transparent_bg_color','#000000'),(17779,17101,'_dt_header_disabled_transparent_bg_opacity','50'),(17780,17101,'_dt_page_overrides_top_margin',''),(17781,17101,'_dt_page_overrides_bottom_margin',''),(17782,17101,'_dt_post_options_back_button',''),(17783,17101,'_dt_post_options_hide_thumbnail','0'),(17784,17101,'_dt_post_options_related_mode','same'),(17785,17101,'_dt_post_options_preview','normal'),(17786,17101,'_thumbnail_id','17103'),(17787,17101,'iawp_total_views','1'),(17788,17991,'_edit_last','2'),(17789,17991,'_thumbnail_id','17992'),(17790,17991,'_wp_page_template','default'),(17791,17991,'slide_template','default'),(17792,17991,'_wpb_vc_js_status','false'),(17793,17991,'_wc_memberships_force_public','no'),(17794,17991,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17795,17991,'_dt_sidebar_position','right'),(17796,17991,'_dt_sidebar_widgetarea_id','sidebar_4'),(17797,17991,'_dt_sidebar_hide_on_mobile','0'),(17798,17991,'_dt_footer_show','1'),(17799,17991,'_dt_footer_widgetarea_id','sidebar_2'),(17800,17991,'_dt_footer_hide_on_mobile','0'),(17801,17991,'_dt_header_title','enabled'),(17802,17991,'_dt_header_background','normal'),(17803,17991,'_dt_header_background_below_slideshow','disabled'),(17804,17991,'_dt_header_transparent_bg_color_scheme','light'),(17805,17991,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17806,17991,'_dt_header_transparent_top_bar_bg_opacity','25'),(17807,17991,'_dt_header_transparent_bg_color','#000000'),(17808,17991,'_dt_header_transparent_bg_opacity','50'),(17809,17991,'_dt_header_disabled_background','normal'),(17810,17991,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17811,17991,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17812,17991,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17813,17991,'_dt_header_disabled_transparent_bg_color','#000000'),(17814,17991,'_dt_header_disabled_transparent_bg_opacity','50'),(17815,17991,'_dt_page_overrides_top_margin',''),(17816,17991,'_dt_page_overrides_bottom_margin',''),(17817,17991,'_dt_post_options_back_button',''),(17818,17991,'_dt_post_options_hide_thumbnail','0'),(17819,17991,'_dt_post_options_related_mode','same'),(17820,17991,'_dt_post_options_preview','normal'),(17821,18735,'_edit_last','2'),(17822,18735,'_thumbnail_id','18736'),(17823,18735,'_wp_page_template','default'),(17824,18735,'_dt_page_overrides_right_margin',''),(17825,18735,'_wpb_vc_js_status','false'),(17826,18735,'_wc_memberships_force_public','no'),(17827,18735,'_wc_memberships_use_custom_post_content_restricted_message','no'),(17828,18735,'_dt_sidebar_position','right'),(17829,18735,'_dt_sidebar_widgetarea_id','sidebar_1'),(17830,18735,'_dt_sidebar_hide_on_mobile','0'),(17831,18735,'_dt_footer_show','1'),(17832,18735,'_dt_footer_widgetarea_id','sidebar_2'),(17833,18735,'_dt_footer_hide_on_mobile','0'),(17834,18735,'_dt_header_title','enabled'),(17835,18735,'_dt_header_background','normal'),(17836,18735,'_dt_header_background_below_slideshow','disabled'),(17837,18735,'_dt_header_transparent_bg_color_scheme','light'),(17838,18735,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17839,18735,'_dt_header_transparent_top_bar_bg_opacity','25'),(17840,18735,'_dt_header_transparent_bg_color','#000000'),(17841,18735,'_dt_header_transparent_bg_opacity','50'),(17842,18735,'_dt_header_disabled_background','normal'),(17843,18735,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17844,18735,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17845,18735,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17846,18735,'_dt_header_disabled_transparent_bg_color','#000000'),(17847,18735,'_dt_header_disabled_transparent_bg_opacity','50'),(17848,18735,'_dt_page_overrides_top_margin',''),(17849,18735,'_dt_page_overrides_bottom_margin',''),(17850,18735,'_dt_post_options_back_button',''),(17851,18735,'_dt_post_options_hide_thumbnail','0'),(17852,18735,'_dt_post_options_related_mode','same'),(17853,18735,'_dt_post_options_preview','normal'),(17854,18735,'_dt_page_overrides_left_margin',''),(17855,18735,'_dt_mobile_page_padding_top',''),(17856,18735,'_dt_mobile_page_padding_right',''),(17857,18735,'_dt_mobile_page_padding_bottom',''),(17858,18735,'_dt_mobile_page_padding_left',''),(17859,18735,'_dt_microsite_primary_menu',''),(17860,18735,'_dt_microsite_split_left_menu',''),(17861,18735,'_dt_microsite_split_right_menu',''),(17862,18735,'_dt_microsite_mobile_menu',''),(17863,16425,'_wp_attached_file','2019/08/Static-Isometric-Scores-Core-Ratios.png'),(17864,16425,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:584;s:6:\"height\";i:617;s:4:\"file\";s:47:\"2019/08/Static-Isometric-Scores-Core-Ratios.png\";s:8:\"filesize\";i:236535;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17865,16601,'_edit_last','2'),(17866,16601,'_wp_page_template','default'),(17867,16601,'slide_template','default'),(17868,16601,'_wpb_vc_js_status','false'),(17869,16601,'_wc_memberships_force_public','no'),(17870,16601,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17871,16601,'_dt_sidebar_position','right'),(17872,16601,'_dt_sidebar_widgetarea_id','sidebar_4'),(17873,16601,'_dt_sidebar_hide_on_mobile','0'),(17874,16601,'_dt_footer_show','1'),(17875,16601,'_dt_footer_widgetarea_id','sidebar_2'),(17876,16601,'_dt_footer_hide_on_mobile','0'),(17877,16601,'_dt_header_title','enabled'),(17878,16601,'_dt_header_background','normal'),(17879,16601,'_dt_header_background_below_slideshow','disabled'),(17880,16601,'_dt_header_transparent_bg_color_scheme','light'),(17881,16601,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17882,16601,'_dt_header_transparent_top_bar_bg_opacity','25'),(17883,16601,'_dt_header_transparent_bg_color','#000000'),(17884,16601,'_dt_header_transparent_bg_opacity','50'),(17885,16601,'_dt_header_disabled_background','normal'),(17886,16601,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17887,16601,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17888,16601,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17889,16601,'_dt_header_disabled_transparent_bg_color','#000000'),(17890,16601,'_dt_header_disabled_transparent_bg_opacity','50'),(17891,16601,'_dt_page_overrides_top_margin',''),(17892,16601,'_dt_page_overrides_bottom_margin',''),(17893,16601,'_dt_post_options_back_button',''),(17894,16601,'_dt_post_options_hide_thumbnail','0'),(17895,16601,'_dt_post_options_related_mode','same'),(17896,16601,'_dt_post_options_preview','normal'),(17897,16601,'_thumbnail_id','16613'),(17898,16935,'_oembed_1bb2e04b133b901c422206907e4f4b8e','{{unknown}}'),(17899,16935,'_oembed_a2870c783639b90e03087120c73c9ba6','{{unknown}}'),(17900,16935,'_edit_last','17'),(17901,16935,'_wp_page_template','default'),(17902,16935,'_dt_page_overrides_right_margin',''),(17903,16935,'_wpb_vc_js_status','false'),(17904,16935,'_wc_memberships_force_public','no'),(17905,16935,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17906,16935,'_dt_sidebar_position','right'),(17907,16935,'_dt_sidebar_widgetarea_id','sidebar_4'),(17908,16935,'_dt_sidebar_hide_on_mobile','0'),(17909,16935,'_dt_footer_show','1'),(17910,16935,'_dt_footer_widgetarea_id','sidebar_2'),(17911,16935,'_dt_footer_hide_on_mobile','0'),(17912,16935,'_dt_header_title','enabled'),(17913,16935,'_dt_header_background','normal'),(17914,16935,'_dt_header_background_below_slideshow','disabled'),(17915,16935,'_dt_header_transparent_bg_color_scheme','light'),(17916,16935,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17917,16935,'_dt_header_transparent_top_bar_bg_opacity','25'),(17918,16935,'_dt_header_transparent_bg_color','#000000'),(17919,16935,'_dt_header_transparent_bg_opacity','50'),(17920,16935,'_dt_header_disabled_background','normal'),(17921,16935,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17922,16935,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17923,16935,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17924,16935,'_dt_header_disabled_transparent_bg_color','#000000'),(17925,16935,'_dt_header_disabled_transparent_bg_opacity','50'),(17926,16935,'_dt_page_overrides_top_margin',''),(17927,16935,'_dt_page_overrides_bottom_margin',''),(17928,16935,'_dt_post_options_back_button',''),(17929,16935,'_dt_post_options_hide_thumbnail','0'),(17930,16935,'_dt_post_options_related_mode','same'),(17931,16935,'_dt_post_options_preview','normal'),(17932,16935,'_thumbnail_id','11156'),(17933,16935,'_dt_page_overrides_left_margin',''),(17934,16935,'_dt_mobile_page_padding_top',''),(17935,16935,'_dt_mobile_page_padding_right',''),(17936,16935,'_dt_mobile_page_padding_bottom',''),(17937,16935,'_dt_mobile_page_padding_left',''),(17938,16935,'_dt_microsite_primary_menu',''),(17939,16935,'_dt_microsite_split_left_menu',''),(17940,16935,'_dt_microsite_split_right_menu',''),(17941,16935,'_dt_microsite_mobile_menu',''),(17942,16935,'_wpb_post_custom_layout','default'),(17943,16935,'iawp_total_views','213'),(17944,17377,'_oembed_5f767bd5c1cd3f435c99076c790fde56','<iframe title=\"A Class Divided (full film) | FRONTLINE\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/1mcCLm_LwpE?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(17945,17377,'_oembed_time_5f767bd5c1cd3f435c99076c790fde56','1569834237'),(17946,17377,'_edit_last','2'),(17947,17377,'_wp_page_template','default'),(17948,17377,'slide_template','default'),(17949,17377,'_wpb_vc_js_status','false'),(17950,17377,'_wc_memberships_force_public','no'),(17951,17377,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17952,17377,'_dt_sidebar_position','right'),(17953,17377,'_dt_sidebar_widgetarea_id','sidebar_4'),(17954,17377,'_dt_sidebar_hide_on_mobile','0'),(17955,17377,'_dt_footer_show','1'),(17956,17377,'_dt_footer_widgetarea_id','sidebar_2'),(17957,17377,'_dt_footer_hide_on_mobile','0'),(17958,17377,'_dt_header_title','enabled'),(17959,17377,'_dt_header_background','normal'),(17960,17377,'_dt_header_background_below_slideshow','disabled'),(17961,17377,'_dt_header_transparent_bg_color_scheme','light'),(17962,17377,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17963,17377,'_dt_header_transparent_top_bar_bg_opacity','25'),(17964,17377,'_dt_header_transparent_bg_color','#000000'),(17965,17377,'_dt_header_transparent_bg_opacity','50'),(17966,17377,'_dt_header_disabled_background','normal'),(17967,17377,'_dt_header_disabled_transparent_bg_color_scheme','light'),(17968,17377,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(17969,17377,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(17970,17377,'_dt_header_disabled_transparent_bg_color','#000000'),(17971,17377,'_dt_header_disabled_transparent_bg_opacity','50'),(17972,17377,'_dt_page_overrides_top_margin',''),(17973,17377,'_dt_page_overrides_bottom_margin',''),(17974,17377,'_dt_post_options_back_button',''),(17975,17377,'_dt_post_options_hide_thumbnail','0'),(17976,17377,'_dt_post_options_related_mode','same'),(17977,17377,'_dt_post_options_preview','normal'),(17978,17377,'_thumbnail_id','17389'),(17979,17261,'_edit_last','2'),(17980,17261,'_thumbnail_id','17262'),(17981,17261,'_wp_page_template','default'),(17982,17261,'slide_template','default'),(17983,17261,'_wpb_vc_js_status','false'),(17984,17261,'_wc_memberships_force_public','no'),(17985,17261,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(17986,17261,'_dt_sidebar_position','right'),(17987,17261,'_dt_sidebar_widgetarea_id','sidebar_4'),(17988,17261,'_dt_sidebar_hide_on_mobile','0'),(17989,17261,'_dt_footer_show','1'),(17990,17261,'_dt_footer_widgetarea_id','sidebar_2'),(17991,17261,'_dt_footer_hide_on_mobile','0'),(17992,17261,'_dt_header_title','enabled'),(17993,17261,'_dt_header_background','normal'),(17994,17261,'_dt_header_background_below_slideshow','disabled'),(17995,17261,'_dt_header_transparent_bg_color_scheme','light'),(17996,17261,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(17997,17261,'_dt_header_transparent_top_bar_bg_opacity','25'),(17998,17261,'_dt_header_transparent_bg_color','#000000'),(17999,17261,'_dt_header_transparent_bg_opacity','50'),(18000,17261,'_dt_header_disabled_background','normal'),(18001,17261,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18002,17261,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18003,17261,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18004,17261,'_dt_header_disabled_transparent_bg_color','#000000'),(18005,17261,'_dt_header_disabled_transparent_bg_opacity','50'),(18006,17261,'_dt_page_overrides_top_margin',''),(18007,17261,'_dt_page_overrides_bottom_margin',''),(18008,17261,'_dt_post_options_back_button',''),(18009,17261,'_dt_post_options_hide_thumbnail','0'),(18010,17261,'_dt_post_options_related_mode','same'),(18011,17261,'_dt_post_options_preview','normal'),(18012,17661,'_edit_last','17'),(18013,17661,'_thumbnail_id','17664'),(18014,17661,'_wp_page_template','default'),(18015,17661,'_wpb_post_custom_layout','default'),(18016,17661,'_wpb_vc_js_status','false'),(18017,17661,'_wc_memberships_force_public','no'),(18018,17661,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18019,17661,'_dt_sidebar_position','right'),(18020,17661,'_dt_sidebar_widgetarea_id','sidebar_4'),(18021,17661,'_dt_sidebar_hide_on_mobile','0'),(18022,17661,'_dt_footer_show','1'),(18023,17661,'_dt_footer_widgetarea_id','sidebar_2'),(18024,17661,'_dt_footer_hide_on_mobile','0'),(18025,17661,'_dt_header_title','enabled'),(18026,17661,'_dt_header_background','normal'),(18027,17661,'_dt_header_background_below_slideshow','disabled'),(18028,17661,'_dt_header_transparent_bg_color_scheme','light'),(18029,17661,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18030,17661,'_dt_header_transparent_top_bar_bg_opacity','25'),(18031,17661,'_dt_header_transparent_bg_color','#000000'),(18032,17661,'_dt_header_transparent_bg_opacity','50'),(18033,17661,'_dt_header_disabled_background','normal'),(18034,17661,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18035,17661,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18036,17661,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18037,17661,'_dt_header_disabled_transparent_bg_color','#000000'),(18038,17661,'_dt_header_disabled_transparent_bg_opacity','50'),(18039,17661,'_dt_page_overrides_top_margin',''),(18040,17661,'_dt_page_overrides_bottom_margin',''),(18041,17661,'_dt_post_options_back_button',''),(18042,17661,'_dt_post_options_hide_thumbnail','0'),(18043,17661,'_dt_post_options_related_mode','same'),(18044,17661,'_dt_post_options_preview','normal'),(18045,17661,'_dt_page_overrides_right_margin',''),(18046,17661,'_dt_page_overrides_left_margin',''),(18047,17661,'_dt_mobile_page_padding_top',''),(18048,17661,'_dt_mobile_page_padding_right',''),(18049,17661,'_dt_mobile_page_padding_bottom',''),(18050,17661,'_dt_mobile_page_padding_left',''),(18051,17661,'_dt_microsite_primary_menu',''),(18052,17661,'_dt_microsite_split_left_menu',''),(18053,17661,'_dt_microsite_split_right_menu',''),(18054,17661,'_dt_microsite_mobile_menu',''),(18055,17815,'_thumbnail_id','17850'),(18056,17815,'_wp_old_slug','the-cossack-movement-analysis-made-simple-why-you-should-could-would-a-client-do-it'),(18057,17815,'_wp_page_template','default'),(18058,17815,'_dt_page_overrides_right_margin',''),(18059,17815,'_edit_last','2'),(18060,17815,'_oembed_856eefc1c4f1c5d4775f4f63c062613f','<iframe title=\"COSSACK 1 SLOW\" width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/4YZqwufM5Jk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18061,17815,'_oembed_time_856eefc1c4f1c5d4775f4f63c062613f','1637736887'),(18062,17815,'_wpb_vc_js_status','false'),(18063,17815,'_wc_memberships_force_public','no'),(18064,17815,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18065,17815,'_dt_sidebar_position','right'),(18066,17815,'_dt_sidebar_widgetarea_id','sidebar_4'),(18067,17815,'_dt_sidebar_hide_on_mobile','0'),(18068,17815,'_dt_footer_show','1'),(18069,17815,'_dt_footer_widgetarea_id','sidebar_2'),(18070,17815,'_dt_footer_hide_on_mobile','0'),(18071,17815,'_dt_header_title','enabled'),(18072,17815,'_dt_header_background','normal'),(18073,17815,'_dt_header_background_below_slideshow','disabled'),(18074,17815,'_dt_header_transparent_bg_color_scheme','light'),(18075,17815,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18076,17815,'_dt_header_transparent_top_bar_bg_opacity','25'),(18077,17815,'_dt_header_transparent_bg_color','#000000'),(18078,17815,'_dt_header_transparent_bg_opacity','50'),(18079,17815,'_dt_header_disabled_background','normal'),(18080,17815,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18081,17815,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18082,17815,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18083,17815,'_dt_header_disabled_transparent_bg_color','#000000'),(18084,17815,'_dt_header_disabled_transparent_bg_opacity','50'),(18085,17815,'_dt_page_overrides_top_margin',''),(18086,17815,'_dt_page_overrides_bottom_margin',''),(18087,17815,'_dt_post_options_back_button',''),(18088,17815,'_dt_post_options_hide_thumbnail','0'),(18089,17815,'_dt_post_options_related_mode','same'),(18090,17815,'_dt_post_options_preview','normal'),(18091,17815,'_oembed_e52306e181255613a39f759aadba7904','<iframe title=\"COSSACK 1 SLOW\" width=\"920\" height=\"690\" src=\"https://www.youtube.com/embed/4YZqwufM5Jk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18092,17815,'_oembed_time_e52306e181255613a39f759aadba7904','1571067975'),(18093,17815,'_oembed_98c662d505bbf9791db14d2acab4132e','<iframe title=\"COSSACK 1 SLOW\" width=\"787\" height=\"590\" src=\"https://www.youtube.com/embed/4YZqwufM5Jk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18094,17815,'_oembed_time_98c662d505bbf9791db14d2acab4132e','1637736041'),(18095,17815,'_dt_page_overrides_left_margin',''),(18096,17815,'_dt_mobile_page_padding_top',''),(18097,17815,'_dt_mobile_page_padding_right',''),(18098,17815,'_dt_mobile_page_padding_bottom',''),(18099,17815,'_dt_mobile_page_padding_left',''),(18100,17815,'_dt_microsite_primary_menu',''),(18101,17815,'_dt_microsite_split_left_menu',''),(18102,17815,'_dt_microsite_split_right_menu',''),(18103,17815,'_dt_microsite_mobile_menu',''),(18104,17815,'_oembed_ee65f289024e72a9e0997eefc14c2297','<iframe title=\"COSSACK 1 SLOW\" width=\"789\" height=\"592\" src=\"https://www.youtube.com/embed/4YZqwufM5Jk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18105,17815,'_oembed_time_ee65f289024e72a9e0997eefc14c2297','1637736888'),(18106,17815,'iawp_total_views','62'),(18107,18161,'_edit_last','2'),(18108,18161,'_thumbnail_id','18162'),(18109,18161,'_wp_page_template','default'),(18110,18161,'slide_template','default'),(18111,18161,'_wpb_vc_js_status','false'),(18112,18161,'_wc_memberships_force_public','no'),(18113,18161,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18114,18161,'_dt_sidebar_position','right'),(18115,18161,'_dt_sidebar_widgetarea_id','sidebar_4'),(18116,18161,'_dt_sidebar_hide_on_mobile','0'),(18117,18161,'_dt_footer_show','1'),(18118,18161,'_dt_footer_widgetarea_id','sidebar_2'),(18119,18161,'_dt_footer_hide_on_mobile','0'),(18120,18161,'_dt_header_title','enabled'),(18121,18161,'_dt_header_background','normal'),(18122,18161,'_dt_header_background_below_slideshow','disabled'),(18123,18161,'_dt_header_transparent_bg_color_scheme','light'),(18124,18161,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18125,18161,'_dt_header_transparent_top_bar_bg_opacity','25'),(18126,18161,'_dt_header_transparent_bg_color','#000000'),(18127,18161,'_dt_header_transparent_bg_opacity','50'),(18128,18161,'_dt_header_disabled_background','normal'),(18129,18161,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18130,18161,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18131,18161,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18132,18161,'_dt_header_disabled_transparent_bg_color','#000000'),(18133,18161,'_dt_header_disabled_transparent_bg_opacity','50'),(18134,18161,'_dt_page_overrides_top_margin',''),(18135,18161,'_dt_page_overrides_bottom_margin',''),(18136,18161,'_dt_post_options_back_button',''),(18137,18161,'_dt_post_options_hide_thumbnail','0'),(18138,18161,'_dt_post_options_related_mode','same'),(18139,18161,'_dt_post_options_preview','normal'),(18140,18457,'_edit_last','2'),(18141,18457,'_thumbnail_id','18460'),(18142,18457,'_wp_page_template','default'),(18143,18457,'slide_template','default'),(18144,18457,'_wpb_vc_js_status','false'),(18145,18457,'_wc_memberships_force_public','no'),(18146,18457,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18147,18457,'_dt_sidebar_position','right'),(18148,18457,'_dt_sidebar_widgetarea_id','sidebar_1'),(18149,18457,'_dt_sidebar_hide_on_mobile','0'),(18150,18457,'_dt_footer_show','1'),(18151,18457,'_dt_footer_widgetarea_id','sidebar_2'),(18152,18457,'_dt_footer_hide_on_mobile','0'),(18153,18457,'_dt_header_title','enabled'),(18154,18457,'_dt_header_background','normal'),(18155,18457,'_dt_header_background_below_slideshow','disabled'),(18156,18457,'_dt_header_transparent_bg_color_scheme','light'),(18157,18457,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18158,18457,'_dt_header_transparent_top_bar_bg_opacity','25'),(18159,18457,'_dt_header_transparent_bg_color','#000000'),(18160,18457,'_dt_header_transparent_bg_opacity','50'),(18161,18457,'_dt_header_disabled_background','normal'),(18162,18457,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18163,18457,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18164,18457,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18165,18457,'_dt_header_disabled_transparent_bg_color','#000000'),(18166,18457,'_dt_header_disabled_transparent_bg_opacity','50'),(18167,18457,'_dt_page_overrides_top_margin',''),(18168,18457,'_dt_page_overrides_bottom_margin',''),(18169,18457,'_dt_post_options_back_button',''),(18170,18457,'_dt_post_options_hide_thumbnail','0'),(18171,18457,'_dt_post_options_related_mode','same'),(18172,18457,'_dt_post_options_preview','normal'),(18173,22127,'_wp_page_template','default'),(18174,22127,'_edit_last','2'),(18175,22127,'_thumbnail_id','22132'),(18176,22127,'_dt_footer_widgetarea_id','sidebar_2'),(18177,22127,'_dt_footer_show','1'),(18178,22127,'_dt_sidebar_hide_on_mobile','0'),(18179,22127,'_dt_sidebar_widgetarea_id','sidebar_1'),(18180,22127,'_dt_sidebar_position','right'),(18181,22127,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18182,22127,'_dt_page_overrides_top_margin',''),(18183,22127,'_dt_post_options_hide_thumbnail','0'),(18184,22127,'_dt_post_options_related_mode','same'),(18185,22127,'_dt_post_options_preview','normal'),(18186,22127,'_dt_mobile_page_padding_left',''),(18187,22127,'_dt_post_options_back_button',''),(18188,22127,'_dt_mobile_page_padding_bottom',''),(18189,22127,'_dt_mobile_page_padding_right',''),(18190,22127,'_dt_page_overrides_left_margin',''),(18191,22127,'_dt_mobile_page_padding_top',''),(18192,22127,'_dt_page_overrides_bottom_margin',''),(18193,22127,'_dt_page_overrides_right_margin',''),(18194,22127,'_wpb_vc_js_status','false'),(18195,22127,'_wc_memberships_force_public','no'),(18196,22127,'slide_template','default'),(18197,22127,'rs_page_bg_color','#ffffff'),(18198,22127,'_dt_header_disabled_transparent_bg_opacity','50'),(18199,22127,'_dt_header_disabled_transparent_bg_color','#000000'),(18200,22127,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18201,22127,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18202,22127,'_dt_header_disabled_background','normal'),(18203,22127,'_dt_header_transparent_bg_opacity','50'),(18204,22127,'_dt_header_transparent_top_bar_bg_opacity','25'),(18205,22127,'_dt_header_transparent_bg_color','#000000'),(18206,22127,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18207,22127,'_dt_header_transparent_bg_color_scheme','light'),(18208,22127,'_dt_header_background_below_slideshow','disabled'),(18209,22127,'_dt_header_background','normal'),(18210,22127,'_dt_header_title','enabled'),(18211,22127,'_dt_footer_hide_on_mobile','0'),(18212,22127,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18213,19124,'_dt_post_options_preview','normal'),(18214,19124,'_dt_post_options_related_mode','same'),(18215,19124,'_dt_post_options_hide_thumbnail','0'),(18216,19124,'_dt_post_options_back_button',''),(18217,19124,'_dt_page_overrides_bottom_margin',''),(18218,19124,'_dt_page_overrides_top_margin',''),(18219,19124,'_dt_header_disabled_transparent_bg_opacity','50'),(18220,19124,'_dt_header_disabled_transparent_bg_color','#000000'),(18221,19124,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18222,19124,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18223,19124,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18224,19124,'_dt_header_disabled_background','normal'),(18225,19124,'_dt_header_transparent_bg_opacity','50'),(18226,19124,'_dt_header_transparent_bg_color','#000000'),(18227,19124,'_dt_header_transparent_top_bar_bg_opacity','25'),(18228,19124,'_thumbnail_id','19125'),(18229,19124,'_wp_page_template','default'),(18230,19124,'slide_template','default'),(18231,19124,'_wpb_vc_js_status','false'),(18232,19124,'_wc_memberships_force_public','no'),(18233,19124,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18234,19124,'_dt_sidebar_position','right'),(18235,19124,'_dt_sidebar_widgetarea_id','sidebar_1'),(18236,19124,'_dt_sidebar_hide_on_mobile','0'),(18237,19124,'_dt_footer_show','1'),(18238,19124,'_dt_footer_widgetarea_id','sidebar_2'),(18239,19124,'_dt_footer_hide_on_mobile','0'),(18240,19124,'_dt_header_title','enabled'),(18241,19124,'_dt_header_background','normal'),(18242,19124,'_dt_header_background_below_slideshow','disabled'),(18243,19124,'_dt_header_transparent_bg_color_scheme','light'),(18244,19124,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18245,19124,'_edit_last','2'),(18246,19124,'iawp_total_views','5'),(18247,19203,'_dt_header_disabled_transparent_bg_color','#000000'),(18248,19203,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18249,19203,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18250,19203,'_dt_header_transparent_bg_color','#000000'),(18251,19203,'_dt_header_transparent_top_bar_bg_opacity','25'),(18252,19203,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18253,19203,'_dt_header_transparent_bg_color_scheme','light'),(18254,19203,'_dt_header_background_below_slideshow','disabled'),(18255,19203,'_dt_header_background','normal'),(18256,19203,'_dt_header_title','enabled'),(18257,19203,'_dt_footer_hide_on_mobile','0'),(18258,19203,'_dt_footer_widgetarea_id','sidebar_2'),(18259,19203,'_dt_footer_show','1'),(18260,19203,'_dt_sidebar_hide_on_mobile','0'),(18261,19203,'_dt_sidebar_widgetarea_id','sidebar_1'),(18262,19203,'_dt_sidebar_position','right'),(18263,19203,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18264,19203,'_wc_memberships_force_public','no'),(18265,19203,'_wpb_vc_js_status','false'),(18266,19203,'slide_template','default'),(18267,19203,'_wp_page_template','default'),(18268,19203,'_thumbnail_id','19204'),(18269,19203,'_edit_last','2'),(18270,19203,'_dt_post_options_back_button',''),(18271,19203,'_dt_post_options_hide_thumbnail','0'),(18272,19203,'_dt_post_options_related_mode','same'),(18273,19203,'_dt_post_options_preview','normal'),(18274,19203,'_dt_page_overrides_top_margin',''),(18275,19203,'_dt_header_disabled_transparent_bg_opacity','50'),(18276,19203,'_dt_page_overrides_bottom_margin',''),(18277,19203,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18278,19203,'_dt_header_transparent_bg_opacity','50'),(18279,19203,'_dt_header_disabled_background','normal'),(18280,19320,'_edit_last','2'),(18281,19320,'_thumbnail_id','19321'),(18282,19320,'_wp_page_template','default'),(18283,19320,'slide_template','default'),(18284,19320,'_wpb_vc_js_status','false'),(18285,19320,'_wc_memberships_force_public','no'),(18286,19320,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18287,19320,'_dt_sidebar_position','right'),(18288,19320,'_dt_sidebar_widgetarea_id','sidebar_1'),(18289,19320,'_dt_sidebar_hide_on_mobile','0'),(18290,19320,'_dt_footer_show','1'),(18291,19320,'_dt_footer_widgetarea_id','sidebar_2'),(18292,19320,'_dt_footer_hide_on_mobile','0'),(18293,19320,'_dt_header_title','enabled'),(18294,19320,'_dt_header_background','normal'),(18295,19320,'_dt_header_background_below_slideshow','disabled'),(18296,19320,'_dt_header_transparent_bg_color_scheme','light'),(18297,19320,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18298,19320,'_dt_header_transparent_top_bar_bg_opacity','25'),(18299,19320,'_dt_header_transparent_bg_color','#000000'),(18300,19320,'_dt_header_transparent_bg_opacity','50'),(18301,19320,'_dt_header_disabled_background','normal'),(18302,19320,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18303,19320,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18304,19320,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18305,19320,'_dt_header_disabled_transparent_bg_color','#000000'),(18306,19320,'_dt_header_disabled_transparent_bg_opacity','50'),(18307,19320,'_dt_page_overrides_top_margin',''),(18308,19320,'_dt_page_overrides_bottom_margin',''),(18309,19320,'_dt_post_options_back_button',''),(18310,19320,'_dt_post_options_hide_thumbnail','0'),(18311,19320,'_dt_post_options_related_mode','same'),(18312,19320,'_dt_post_options_preview','normal'),(18313,19426,'_edit_last','2'),(18314,19426,'_thumbnail_id','19427'),(18315,19426,'_wp_page_template','default'),(18316,19426,'slide_template','default'),(18317,19426,'_wpb_vc_js_status','false'),(18318,19426,'_wc_memberships_force_public','no'),(18319,19426,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18320,19426,'_dt_sidebar_position','right'),(18321,19426,'_dt_sidebar_widgetarea_id','sidebar_1'),(18322,19426,'_dt_sidebar_hide_on_mobile','0'),(18323,19426,'_dt_footer_show','1'),(18324,19426,'_dt_footer_widgetarea_id','sidebar_2'),(18325,19426,'_dt_footer_hide_on_mobile','0'),(18326,19426,'_dt_header_title','enabled'),(18327,19426,'_dt_header_background','normal'),(18328,19426,'_dt_header_background_below_slideshow','disabled'),(18329,19426,'_dt_header_transparent_bg_color_scheme','light'),(18330,19426,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18331,19426,'_dt_header_transparent_top_bar_bg_opacity','25'),(18332,19426,'_dt_header_transparent_bg_color','#000000'),(18333,19426,'_dt_header_transparent_bg_opacity','50'),(18334,19426,'_dt_header_disabled_background','normal'),(18335,19426,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18336,19426,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18337,19426,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18338,19426,'_dt_header_disabled_transparent_bg_color','#000000'),(18339,19426,'_dt_header_disabled_transparent_bg_opacity','50'),(18340,19426,'_dt_page_overrides_top_margin',''),(18341,19426,'_dt_page_overrides_bottom_margin',''),(18342,19426,'_dt_post_options_back_button',''),(18343,19426,'_dt_post_options_hide_thumbnail','0'),(18344,19426,'_dt_post_options_related_mode','same'),(18345,19426,'_dt_post_options_preview','normal'),(18346,19515,'_edit_last','17'),(18347,19515,'_wp_page_template','default'),(18348,19515,'_wpb_post_custom_layout','default'),(18349,19515,'_wpb_vc_js_status','false'),(18350,19515,'_wc_memberships_force_public','no'),(18351,19515,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18352,19515,'_dt_sidebar_position','right'),(18353,19515,'_dt_sidebar_widgetarea_id','sidebar_1'),(18354,19515,'_dt_sidebar_hide_on_mobile','0'),(18355,19515,'_dt_footer_show','1'),(18356,19515,'_dt_footer_widgetarea_id','sidebar_2'),(18357,19515,'_dt_footer_hide_on_mobile','0'),(18358,19515,'_dt_header_title','enabled'),(18359,19515,'_dt_header_background','normal'),(18360,19515,'_dt_header_background_below_slideshow','disabled'),(18361,19515,'_dt_header_transparent_bg_color_scheme','light'),(18362,19515,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18363,19515,'_dt_header_transparent_top_bar_bg_opacity','25'),(18364,19515,'_dt_header_transparent_bg_color','#000000'),(18365,19515,'_dt_header_transparent_bg_opacity','50'),(18366,19515,'_dt_header_disabled_background','normal'),(18367,19515,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18368,19515,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18369,19515,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18370,19515,'_dt_header_disabled_transparent_bg_color','#000000'),(18371,19515,'_dt_header_disabled_transparent_bg_opacity','50'),(18372,19515,'_dt_page_overrides_top_margin',''),(18373,19515,'_dt_page_overrides_bottom_margin',''),(18374,19515,'_dt_post_options_back_button',''),(18375,19515,'_dt_post_options_hide_thumbnail','0'),(18376,19515,'_dt_post_options_related_mode','same'),(18377,19515,'_dt_post_options_preview','normal'),(18378,19515,'_oembed_0851577af68cdd3a4924c93157918219','<iframe title=\"Slump Sciatic Nerve Mobilisation Technique\" width=\"875\" height=\"656\" src=\"https://www.youtube.com/embed/Vr4ItLOv0zk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18379,19515,'_oembed_time_0851577af68cdd3a4924c93157918219','1579531807'),(18380,19515,'_thumbnail_id','19518'),(18381,19515,'_oembed_2f7a404b916786033bb23bd6b4cdf5b7','<iframe title=\"Slump Sciatic Nerve Mobilisation Technique\" width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/Vr4ItLOv0zk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(18382,19515,'_oembed_time_2f7a404b916786033bb23bd6b4cdf5b7','1718017914'),(18383,19515,'_oembed_f4d3c0ecae2d9df41f23ce05442c74e7','<iframe title=\"Slump Sciatic Nerve Mobilisation Technique\" width=\"879\" height=\"659\" src=\"https://www.youtube.com/embed/Vr4ItLOv0zk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18384,19515,'_oembed_time_f4d3c0ecae2d9df41f23ce05442c74e7','1579532600'),(18385,19515,'_oembed_9a8befea01d943ad2ba55e884276e913','<iframe title=\"Slump Sciatic Nerve Mobilisation Technique\" width=\"712\" height=\"534\" src=\"https://www.youtube.com/embed/Vr4ItLOv0zk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(18386,19515,'_oembed_time_9a8befea01d943ad2ba55e884276e913','1718016609'),(18387,19515,'_dt_page_overrides_right_margin',''),(18388,19515,'_dt_page_overrides_left_margin',''),(18389,19515,'_dt_mobile_page_padding_top',''),(18390,19515,'_dt_mobile_page_padding_right',''),(18391,19515,'_dt_mobile_page_padding_bottom',''),(18392,19515,'_dt_mobile_page_padding_left',''),(18393,19515,'_dt_microsite_primary_menu',''),(18394,19515,'_dt_microsite_split_left_menu',''),(18395,19515,'_dt_microsite_split_right_menu',''),(18396,19515,'_dt_microsite_mobile_menu',''),(18397,19515,'iawp_total_views','87'),(18398,19518,'_wp_attached_file','2020/01/When-stretching-doesnt-work-Gastrocnemius.png'),(18399,19518,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:53:\"2020/01/When-stretching-doesnt-work-Gastrocnemius.png\";s:8:\"filesize\";i:1065769;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18400,19587,'_edit_last','2'),(18401,19587,'_thumbnail_id','19588'),(18402,19587,'_wp_page_template','default'),(18403,19587,'slide_template','default'),(18404,19587,'_wpb_vc_js_status','false'),(18405,19587,'_wc_memberships_force_public','no'),(18406,19587,'_wc_memberships_use_custom_post_content_restricted_message','no'),(18407,19587,'_dt_sidebar_position','right'),(18408,19587,'_dt_sidebar_widgetarea_id','sidebar_1'),(18409,19587,'_dt_sidebar_hide_on_mobile','0'),(18410,19587,'_dt_footer_show','1'),(18411,19587,'_dt_footer_widgetarea_id','sidebar_2'),(18412,19587,'_dt_footer_hide_on_mobile','0'),(18413,19587,'_dt_header_title','enabled'),(18414,19587,'_dt_header_background','normal'),(18415,19587,'_dt_header_background_below_slideshow','disabled'),(18416,19587,'_dt_header_transparent_bg_color_scheme','light'),(18417,19587,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18418,19587,'_dt_header_transparent_top_bar_bg_opacity','25'),(18419,19587,'_dt_header_transparent_bg_color','#000000'),(18420,19587,'_dt_header_transparent_bg_opacity','50'),(18421,19587,'_dt_header_disabled_background','normal'),(18422,19587,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18423,19587,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18424,19587,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18425,19587,'_dt_header_disabled_transparent_bg_color','#000000'),(18426,19587,'_dt_header_disabled_transparent_bg_opacity','50'),(18427,19587,'_dt_page_overrides_top_margin',''),(18428,19587,'_dt_page_overrides_bottom_margin',''),(18429,19587,'_dt_post_options_back_button',''),(18430,19587,'_dt_post_options_hide_thumbnail','0'),(18431,19587,'_dt_post_options_related_mode','same'),(18432,19587,'_dt_post_options_preview','normal'),(18433,19677,'_edit_last','2'),(18434,19677,'_thumbnail_id','19678'),(18435,19677,'_wp_page_template','default'),(18436,19677,'slide_template','default'),(18437,19677,'_wpb_vc_js_status','false'),(18438,19677,'_wc_memberships_force_public','no'),(18439,19677,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18440,19677,'_dt_sidebar_position','right'),(18441,19677,'_dt_sidebar_widgetarea_id','sidebar_1'),(18442,19677,'_dt_sidebar_hide_on_mobile','0'),(18443,19677,'_dt_footer_show','1'),(18444,19677,'_dt_footer_widgetarea_id','sidebar_2'),(18445,19677,'_dt_footer_hide_on_mobile','0'),(18446,19677,'_dt_header_title','enabled'),(18447,19677,'_dt_header_background','normal'),(18448,19677,'_dt_header_background_below_slideshow','disabled'),(18449,19677,'_dt_header_transparent_bg_color_scheme','light'),(18450,19677,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18451,19677,'_dt_header_transparent_top_bar_bg_opacity','25'),(18452,19677,'_dt_header_transparent_bg_color','#000000'),(18453,19677,'_dt_header_transparent_bg_opacity','50'),(18454,19677,'_dt_header_disabled_background','normal'),(18455,19677,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18456,19677,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18457,19677,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18458,19677,'_dt_header_disabled_transparent_bg_color','#000000'),(18459,19677,'_dt_header_disabled_transparent_bg_opacity','50'),(18460,19677,'_dt_page_overrides_top_margin',''),(18461,19677,'_dt_page_overrides_bottom_margin',''),(18462,19677,'_dt_post_options_back_button',''),(18463,19677,'_dt_post_options_hide_thumbnail','0'),(18464,19677,'_dt_post_options_related_mode','same'),(18465,19677,'_dt_post_options_preview','normal'),(18466,19677,'iawp_total_views','39'),(18467,19975,'_edit_last','2'),(18468,19975,'_thumbnail_id','19983'),(18469,19975,'_wp_page_template','default'),(18470,19975,'slide_template','default'),(18471,19975,'_wpb_vc_js_status','false'),(18472,19975,'_wc_memberships_force_public','no'),(18473,19975,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18474,19975,'_dt_sidebar_position','right'),(18475,19975,'_dt_sidebar_widgetarea_id','sidebar_1'),(18476,19975,'_dt_sidebar_hide_on_mobile','0'),(18477,19975,'_dt_footer_show','1'),(18478,19975,'_dt_footer_widgetarea_id','sidebar_2'),(18479,19975,'_dt_footer_hide_on_mobile','0'),(18480,19975,'_dt_header_title','enabled'),(18481,19975,'_dt_header_background','normal'),(18482,19975,'_dt_header_background_below_slideshow','disabled'),(18483,19975,'_dt_header_transparent_bg_color_scheme','light'),(18484,19975,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18485,19975,'_dt_header_transparent_top_bar_bg_opacity','25'),(18486,19975,'_dt_header_transparent_bg_color','#000000'),(18487,19975,'_dt_header_transparent_bg_opacity','50'),(18488,19975,'_dt_header_disabled_background','normal'),(18489,19975,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18490,19975,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18491,19975,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18492,19975,'_dt_header_disabled_transparent_bg_color','#000000'),(18493,19975,'_dt_header_disabled_transparent_bg_opacity','50'),(18494,19975,'_dt_page_overrides_top_margin',''),(18495,19975,'_dt_page_overrides_bottom_margin',''),(18496,19975,'_dt_post_options_back_button',''),(18497,19975,'_dt_post_options_hide_thumbnail','0'),(18498,19975,'_dt_post_options_related_mode','same'),(18499,19975,'_dt_post_options_preview','normal'),(18500,19975,'iawp_total_views','3'),(18501,20290,'_edit_last','2'),(18502,20290,'_oembed_343c154eb8a90cc9badf35eac026f038','<iframe title=\"&#039;The Slump&#039; Sciatic Nerve Mobilisation Technique\" width=\"878\" height=\"659\" src=\"https://www.youtube.com/embed/xMDNnhoXWRs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18503,20290,'_oembed_time_343c154eb8a90cc9badf35eac026f038','1583159702'),(18504,20290,'_thumbnail_id','20291'),(18505,20290,'_wp_page_template','default'),(18506,20290,'slide_template','default'),(18507,20290,'_wpb_vc_js_status','false'),(18508,20290,'_wc_memberships_force_public','no'),(18509,20290,'_wc_memberships_use_custom_post_content_restricted_message','no'),(18510,20290,'_dt_sidebar_position','right'),(18511,20290,'_dt_sidebar_widgetarea_id','sidebar_1'),(18512,20290,'_dt_sidebar_hide_on_mobile','0'),(18513,20290,'_dt_footer_show','1'),(18514,20290,'_dt_footer_widgetarea_id','sidebar_2'),(18515,20290,'_dt_footer_hide_on_mobile','0'),(18516,20290,'_dt_header_title','enabled'),(18517,20290,'_dt_header_background','normal'),(18518,20290,'_dt_header_background_below_slideshow','disabled'),(18519,20290,'_dt_header_transparent_bg_color_scheme','light'),(18520,20290,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18521,20290,'_dt_header_transparent_top_bar_bg_opacity','25'),(18522,20290,'_dt_header_transparent_bg_color','#000000'),(18523,20290,'_dt_header_transparent_bg_opacity','50'),(18524,20290,'_dt_header_disabled_background','normal'),(18525,20290,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18526,20290,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18527,20290,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18528,20290,'_dt_header_disabled_transparent_bg_color','#000000'),(18529,20290,'_dt_header_disabled_transparent_bg_opacity','50'),(18530,20290,'_dt_page_overrides_top_margin',''),(18531,20290,'_dt_page_overrides_bottom_margin',''),(18532,20290,'_dt_post_options_back_button',''),(18533,20290,'_dt_post_options_hide_thumbnail','0'),(18534,20290,'_dt_post_options_related_mode','same'),(18535,20290,'_dt_post_options_preview','normal'),(18536,20290,'_oembed_1fd4529bdd13b3f8332701f6da95da51','<iframe title=\"&#039;The Slump&#039; Sciatic Nerve Mobilisation Technique\" width=\"1200\" height=\"900\" src=\"https://www.youtube.com/embed/xMDNnhoXWRs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18537,20290,'_oembed_time_1fd4529bdd13b3f8332701f6da95da51','1583161161'),(18538,20290,'_oembed_44e4e49919f8edfbdf8f57d09e630491','<iframe title=\"&#039;The Slump&#039; Sciatic Nerve Mobilisation Technique\" width=\"882\" height=\"662\" src=\"https://www.youtube.com/embed/xMDNnhoXWRs?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18539,20290,'_oembed_time_44e4e49919f8edfbdf8f57d09e630491','1583161165'),(18540,20290,'iawp_total_views','4'),(18541,20459,'slide_template','default'),(18542,20459,'_edit_last','2'),(18543,20459,'_wp_page_template','default'),(18544,20459,'_wpb_vc_js_status','false'),(18545,20459,'_wc_memberships_force_public','no'),(18546,20459,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18547,20459,'_dt_sidebar_position','right'),(18548,20459,'_dt_sidebar_widgetarea_id','sidebar_1'),(18549,20459,'_dt_sidebar_hide_on_mobile','0'),(18550,20459,'_dt_footer_show','1'),(18551,20459,'_dt_footer_widgetarea_id','sidebar_2'),(18552,20459,'_dt_footer_hide_on_mobile','0'),(18553,20459,'_dt_header_title','enabled'),(18554,20459,'_dt_header_background','normal'),(18555,20459,'_dt_header_background_below_slideshow','disabled'),(18556,20459,'_dt_header_transparent_bg_color_scheme','light'),(18557,20459,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18558,20459,'_dt_header_transparent_top_bar_bg_opacity','25'),(18559,20459,'_dt_header_transparent_bg_color','#000000'),(18560,20459,'_dt_header_transparent_bg_opacity','50'),(18561,20459,'_dt_header_disabled_background','normal'),(18562,20459,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18563,20459,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18564,20459,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18565,20459,'_dt_header_disabled_transparent_bg_color','#000000'),(18566,20459,'_dt_header_disabled_transparent_bg_opacity','50'),(18567,20459,'_dt_page_overrides_top_margin',''),(18568,20459,'_dt_page_overrides_bottom_margin',''),(18569,20459,'_dt_post_options_back_button',''),(18570,20459,'_dt_post_options_hide_thumbnail','0'),(18571,20459,'_dt_post_options_related_mode','same'),(18572,20459,'_dt_post_options_preview','normal'),(18573,20459,'_oembed_597f4ab555b60b991a323ac219db8434','<iframe title=\"Dean Connolly\" width=\"916\" height=\"515\" src=\"https://www.youtube.com/embed/aHsrJipzsTA?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18574,20459,'_oembed_time_597f4ab555b60b991a323ac219db8434','1583782659'),(18575,20459,'_thumbnail_id','20461'),(18576,20459,'_oembed_f546e22771d0a5922d2bb2242240dc3d','<iframe title=\"Dean Connolly\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/aHsrJipzsTA?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18577,20459,'_oembed_time_f546e22771d0a5922d2bb2242240dc3d','1583782699'),(18578,20459,'_oembed_9419ef19950e581706d0525f3556aa54','<iframe title=\"Dean Connolly\" width=\"920\" height=\"518\" src=\"https://www.youtube.com/embed/aHsrJipzsTA?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18579,20459,'_oembed_time_9419ef19950e581706d0525f3556aa54','1583782701'),(18580,20624,'_edit_last','2'),(18581,20624,'_thumbnail_id','20632'),(18582,20624,'_wp_page_template','default'),(18583,20624,'slide_template','default'),(18584,20624,'_wpb_vc_js_status','false'),(18585,20624,'_wc_memberships_force_public','no'),(18586,20624,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18587,20624,'_dt_sidebar_position','right'),(18588,20624,'_dt_sidebar_widgetarea_id','sidebar_1'),(18589,20624,'_dt_sidebar_hide_on_mobile','0'),(18590,20624,'_dt_footer_show','1'),(18591,20624,'_dt_footer_widgetarea_id','sidebar_2'),(18592,20624,'_dt_footer_hide_on_mobile','0'),(18593,20624,'_dt_header_title','enabled'),(18594,20624,'_dt_header_background','normal'),(18595,20624,'_dt_header_background_below_slideshow','disabled'),(18596,20624,'_dt_header_transparent_bg_color_scheme','light'),(18597,20624,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18598,20624,'_dt_header_transparent_top_bar_bg_opacity','25'),(18599,20624,'_dt_header_transparent_bg_color','#000000'),(18600,20624,'_dt_header_transparent_bg_opacity','50'),(18601,20624,'_dt_header_disabled_background','normal'),(18602,20624,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18603,20624,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18604,20624,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18605,20624,'_dt_header_disabled_transparent_bg_color','#000000'),(18606,20624,'_dt_header_disabled_transparent_bg_opacity','50'),(18607,20624,'_dt_page_overrides_top_margin',''),(18608,20624,'_dt_page_overrides_bottom_margin',''),(18609,20624,'_dt_post_options_back_button',''),(18610,20624,'_dt_post_options_hide_thumbnail','0'),(18611,20624,'_dt_post_options_related_mode','same'),(18612,20624,'_dt_post_options_preview','normal'),(18613,20168,'_edit_last','2'),(18614,20168,'_oembed_c18352dd69c83f58a9979437f7b19b53','<iframe title=\"Median Nerve Test &amp; Exercise\" width=\"916\" height=\"515\" src=\"https://www.youtube.com/embed/Ggalmxs6ziQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18615,20168,'_oembed_time_c18352dd69c83f58a9979437f7b19b53','1582554434'),(18616,20168,'_thumbnail_id','20169'),(18617,20168,'_wp_page_template','default'),(18618,20168,'slide_template','default'),(18619,20168,'_wpb_vc_js_status','false'),(18620,20168,'_wc_memberships_force_public','no'),(18621,20168,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18622,20168,'_dt_sidebar_position','right'),(18623,20168,'_dt_sidebar_widgetarea_id','sidebar_1'),(18624,20168,'_dt_sidebar_hide_on_mobile','0'),(18625,20168,'_dt_footer_show','1'),(18626,20168,'_dt_footer_widgetarea_id','sidebar_2'),(18627,20168,'_dt_footer_hide_on_mobile','0'),(18628,20168,'_dt_header_title','enabled'),(18629,20168,'_dt_header_background','normal'),(18630,20168,'_dt_header_background_below_slideshow','disabled'),(18631,20168,'_dt_header_transparent_bg_color_scheme','light'),(18632,20168,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18633,20168,'_dt_header_transparent_top_bar_bg_opacity','25'),(18634,20168,'_dt_header_transparent_bg_color','#000000'),(18635,20168,'_dt_header_transparent_bg_opacity','50'),(18636,20168,'_dt_header_disabled_background','normal'),(18637,20168,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18638,20168,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18639,20168,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18640,20168,'_dt_header_disabled_transparent_bg_color','#000000'),(18641,20168,'_dt_header_disabled_transparent_bg_opacity','50'),(18642,20168,'_dt_page_overrides_top_margin',''),(18643,20168,'_dt_page_overrides_bottom_margin',''),(18644,20168,'_dt_post_options_back_button',''),(18645,20168,'_dt_post_options_hide_thumbnail','0'),(18646,20168,'_dt_post_options_related_mode','same'),(18647,20168,'_dt_post_options_preview','normal'),(18648,20168,'_oembed_ce5e434f81a812e23eaf70fefa63ac68','<iframe title=\"Median Nerve Test &amp; Exercise\" width=\"1200\" height=\"675\" src=\"https://www.youtube.com/embed/Ggalmxs6ziQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18649,20168,'_oembed_time_ce5e434f81a812e23eaf70fefa63ac68','1582555595'),(18650,20168,'_oembed_e9184fb2260f34d6259dc99fbfab25bd','<iframe title=\"Median Nerve Test &amp; Exercise\" width=\"920\" height=\"518\" src=\"https://www.youtube.com/embed/Ggalmxs6ziQ?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>'),(18651,20168,'_oembed_time_e9184fb2260f34d6259dc99fbfab25bd','1582555599'),(18652,20168,'_wp_old_slug','got-any-clients-who-experience-elbow-pain-when-pulling-gripping-or-pressing'),(18653,21235,'_edit_last','2'),(18654,21235,'_thumbnail_id','21237'),(18655,21235,'_wp_page_template','default'),(18656,21235,'slide_template','default'),(18657,21235,'_wpb_vc_js_status','false'),(18658,21235,'_wc_memberships_force_public','no'),(18659,21235,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18660,21235,'_dt_sidebar_position','right'),(18661,21235,'_dt_sidebar_widgetarea_id','sidebar_1'),(18662,21235,'_dt_sidebar_hide_on_mobile','0'),(18663,21235,'_dt_footer_show','1'),(18664,21235,'_dt_footer_widgetarea_id','sidebar_2'),(18665,21235,'_dt_footer_hide_on_mobile','0'),(18666,21235,'_dt_header_title','enabled'),(18667,21235,'_dt_header_background','normal'),(18668,21235,'_dt_header_background_below_slideshow','disabled'),(18669,21235,'_dt_header_transparent_bg_color_scheme','light'),(18670,21235,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18671,21235,'_dt_header_transparent_top_bar_bg_opacity','25'),(18672,21235,'_dt_header_transparent_bg_color','#000000'),(18673,21235,'_dt_header_transparent_bg_opacity','50'),(18674,21235,'_dt_header_disabled_background','normal'),(18675,21235,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18676,21235,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18677,21235,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18678,21235,'_dt_header_disabled_transparent_bg_color','#000000'),(18679,21235,'_dt_header_disabled_transparent_bg_opacity','50'),(18680,21235,'_dt_page_overrides_top_margin',''),(18681,21235,'_dt_page_overrides_bottom_margin',''),(18682,21235,'_dt_post_options_back_button',''),(18683,21235,'_dt_post_options_hide_thumbnail','0'),(18684,21235,'_dt_post_options_related_mode','same'),(18685,21235,'_dt_post_options_preview','normal'),(18686,21788,'_edit_last','2'),(18687,21788,'_thumbnail_id','21789'),(18688,21788,'_wp_page_template','default'),(18689,21788,'slide_template','default'),(18690,21788,'_wpb_vc_js_status','false'),(18691,21788,'_wc_memberships_force_public','no'),(18692,21788,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18693,21788,'_dt_sidebar_position','right'),(18694,21788,'_dt_sidebar_widgetarea_id','sidebar_1'),(18695,21788,'_dt_sidebar_hide_on_mobile','0'),(18696,21788,'_dt_footer_show','1'),(18697,21788,'_dt_footer_widgetarea_id','sidebar_2'),(18698,21788,'_dt_footer_hide_on_mobile','0'),(18699,21788,'_dt_header_title','enabled'),(18700,21788,'_dt_header_background','normal'),(18701,21788,'_dt_header_background_below_slideshow','disabled'),(18702,21788,'_dt_header_transparent_bg_color_scheme','light'),(18703,21788,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18704,21788,'_dt_header_transparent_top_bar_bg_opacity','25'),(18705,21788,'_dt_header_transparent_bg_color','#000000'),(18706,21788,'_dt_header_transparent_bg_opacity','50'),(18707,21788,'_dt_header_disabled_background','normal'),(18708,21788,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18709,21788,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18710,21788,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18711,21788,'_dt_header_disabled_transparent_bg_color','#000000'),(18712,21788,'_dt_header_disabled_transparent_bg_opacity','50'),(18713,21788,'_dt_page_overrides_top_margin',''),(18714,21788,'_dt_page_overrides_bottom_margin',''),(18715,21788,'_dt_post_options_back_button',''),(18716,21788,'_dt_post_options_hide_thumbnail','0'),(18717,21788,'_dt_post_options_related_mode','same'),(18718,21788,'_dt_post_options_preview','normal'),(18719,22301,'slide_template','default'),(18720,22301,'_thumbnail_id','22306'),(18721,22301,'_wp_page_template','default'),(18722,22301,'_edit_last','2'),(18723,22301,'_oembed_816994f8b2fb70e863f2dba315228b20','{{unknown}}'),(18724,22301,'rs_page_bg_color','#ffffff'),(18725,22301,'_wpb_vc_js_status','false'),(18726,22301,'_wc_memberships_force_public','no'),(18727,22301,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18728,22301,'_dt_sidebar_position','right'),(18729,22301,'_dt_sidebar_widgetarea_id','sidebar_1'),(18730,22301,'_dt_sidebar_hide_on_mobile','0'),(18731,22301,'_dt_footer_show','1'),(18732,22301,'_dt_footer_widgetarea_id','sidebar_2'),(18733,22301,'_dt_footer_hide_on_mobile','0'),(18734,22301,'_dt_header_title','enabled'),(18735,22301,'_dt_header_background','normal'),(18736,22301,'_dt_header_background_below_slideshow','disabled'),(18737,22301,'_dt_header_transparent_bg_color_scheme','light'),(18738,22301,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18739,22301,'_dt_header_transparent_top_bar_bg_opacity','25'),(18740,22301,'_dt_header_transparent_bg_color','#000000'),(18741,22301,'_dt_header_transparent_bg_opacity','50'),(18742,22301,'_dt_header_disabled_background','normal'),(18743,22301,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18744,22301,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18745,22301,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18746,22301,'_dt_header_disabled_transparent_bg_color','#000000'),(18747,22301,'_dt_header_disabled_transparent_bg_opacity','50'),(18748,22301,'_dt_page_overrides_top_margin',''),(18749,22301,'_dt_page_overrides_right_margin',''),(18750,22301,'_dt_page_overrides_bottom_margin',''),(18751,22301,'_dt_page_overrides_left_margin',''),(18752,22301,'_dt_mobile_page_padding_top',''),(18753,22301,'_dt_mobile_page_padding_right',''),(18754,22301,'_dt_mobile_page_padding_bottom',''),(18755,22301,'_dt_mobile_page_padding_left',''),(18756,22301,'_dt_post_options_back_button',''),(18757,22301,'_dt_post_options_hide_thumbnail','0'),(18758,22301,'_dt_post_options_related_mode','same'),(18759,22301,'_dt_post_options_preview','normal'),(18760,22301,'iawp_total_views','69'),(18761,23077,'_dt_header_title','enabled'),(18762,23077,'_dt_header_background','normal'),(18763,23077,'_dt_post_options_related_mode','same'),(18764,23077,'_dt_post_options_preview','normal'),(18765,23077,'_dt_post_options_back_button',''),(18766,23077,'_dt_post_options_hide_thumbnail','0'),(18767,23077,'_dt_mobile_page_padding_bottom',''),(18768,23077,'_dt_mobile_page_padding_left',''),(18769,23077,'_dt_mobile_page_padding_top',''),(18770,23077,'_dt_mobile_page_padding_right',''),(18771,23077,'_dt_page_overrides_bottom_margin',''),(18772,23077,'_dt_page_overrides_left_margin',''),(18773,23077,'_dt_page_overrides_top_margin',''),(18774,23077,'_dt_page_overrides_right_margin',''),(18775,23077,'_dt_header_disabled_transparent_bg_color','#000000'),(18776,23077,'_dt_header_disabled_transparent_bg_opacity','50'),(18777,23077,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18778,23077,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18779,23077,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18780,23077,'_dt_header_transparent_bg_opacity','50'),(18781,23077,'_dt_header_disabled_background','normal'),(18782,23077,'_dt_header_transparent_bg_color','#000000'),(18783,23077,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18784,23077,'_dt_header_transparent_top_bar_bg_opacity','25'),(18785,23077,'_dt_header_background_below_slideshow','disabled'),(18786,23077,'_dt_header_transparent_bg_color_scheme','light'),(18787,23077,'_dt_footer_widgetarea_id','sidebar_2'),(18788,23077,'_dt_footer_hide_on_mobile','0'),(18789,23077,'_dt_sidebar_hide_on_mobile','0'),(18790,23077,'_dt_footer_show','1'),(18791,23077,'_dt_sidebar_position','right'),(18792,23077,'_dt_sidebar_widgetarea_id','sidebar_1'),(18793,23077,'_wc_memberships_force_public','no'),(18794,23077,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18795,23077,'rs_page_bg_color','#ffffff'),(18796,23077,'_wpb_vc_js_status','false'),(18797,23077,'_thumbnail_id','23081'),(18798,23077,'_wp_page_template','default'),(18799,23077,'slide_template','default'),(18800,23077,'_edit_last','2'),(18801,22617,'_dt_mobile_page_padding_left',''),(18802,22617,'_dt_mobile_page_padding_right',''),(18803,22617,'_dt_mobile_page_padding_bottom',''),(18804,22617,'_dt_mobile_page_padding_top',''),(18805,22617,'_dt_page_overrides_left_margin',''),(18806,22617,'_dt_page_overrides_bottom_margin',''),(18807,22617,'_dt_page_overrides_right_margin',''),(18808,22617,'_dt_page_overrides_top_margin',''),(18809,22617,'_dt_header_disabled_transparent_bg_opacity','50'),(18810,22617,'_dt_header_disabled_transparent_bg_color','#000000'),(18811,22617,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18812,22617,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18813,22617,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18814,22617,'_dt_header_disabled_background','normal'),(18815,22617,'_dt_header_transparent_bg_opacity','50'),(18816,22617,'_dt_header_transparent_bg_color','#000000'),(18817,22617,'_dt_header_transparent_top_bar_bg_opacity','25'),(18818,22617,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18819,22617,'_dt_header_transparent_bg_color_scheme','light'),(18820,22617,'_dt_header_background_below_slideshow','disabled'),(18821,22617,'_dt_header_background','normal'),(18822,22617,'_dt_header_title','enabled'),(18823,22617,'_dt_footer_hide_on_mobile','0'),(18824,22617,'_dt_footer_widgetarea_id','sidebar_2'),(18825,22617,'_dt_footer_show','1'),(18826,22617,'_dt_sidebar_hide_on_mobile','0'),(18827,22617,'_dt_sidebar_widgetarea_id','sidebar_1'),(18828,22617,'_dt_sidebar_position','right'),(18829,22617,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18830,22617,'_wc_memberships_force_public','no'),(18831,22617,'_wpb_vc_js_status','false'),(18832,22617,'rs_page_bg_color','#ffffff'),(18833,22617,'slide_template','default'),(18834,22617,'_wp_page_template','default'),(18835,22617,'_thumbnail_id','22621'),(18836,22617,'_edit_last','2'),(18837,22617,'_dt_post_options_back_button',''),(18838,22617,'_dt_post_options_hide_thumbnail','0'),(18839,22617,'_dt_post_options_related_mode','same'),(18840,22617,'_dt_post_options_preview','normal'),(18841,22758,'_thumbnail_id','22780'),(18842,22758,'_edit_last','2'),(18843,22758,'_wp_page_template','default'),(18844,22758,'slide_template','default'),(18845,22758,'rs_page_bg_color','#ffffff'),(18846,22758,'_wpb_vc_js_status','false'),(18847,22758,'_wc_memberships_force_public','no'),(18848,22758,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18849,22758,'_dt_sidebar_position','right'),(18850,22758,'_dt_sidebar_widgetarea_id','sidebar_1'),(18851,22758,'_dt_sidebar_hide_on_mobile','0'),(18852,22758,'_dt_footer_show','1'),(18853,22758,'_dt_footer_widgetarea_id','sidebar_2'),(18854,22758,'_dt_footer_hide_on_mobile','0'),(18855,22758,'_dt_header_title','enabled'),(18856,22758,'_dt_header_background','normal'),(18857,22758,'_dt_header_background_below_slideshow','disabled'),(18858,22758,'_dt_header_transparent_bg_color_scheme','light'),(18859,22758,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18860,22758,'_dt_header_transparent_top_bar_bg_opacity','25'),(18861,22758,'_dt_header_transparent_bg_color','#000000'),(18862,22758,'_dt_header_transparent_bg_opacity','50'),(18863,22758,'_dt_header_disabled_background','normal'),(18864,22758,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18865,22758,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18866,22758,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18867,22758,'_dt_header_disabled_transparent_bg_color','#000000'),(18868,22758,'_dt_header_disabled_transparent_bg_opacity','50'),(18869,22758,'_dt_page_overrides_top_margin',''),(18870,22758,'_dt_page_overrides_right_margin',''),(18871,22758,'_dt_page_overrides_bottom_margin',''),(18872,22758,'_dt_page_overrides_left_margin',''),(18873,22758,'_dt_mobile_page_padding_top',''),(18874,22758,'_dt_mobile_page_padding_right',''),(18875,22758,'_dt_mobile_page_padding_bottom',''),(18876,22758,'_dt_mobile_page_padding_left',''),(18877,22758,'_dt_post_options_back_button',''),(18878,22758,'_dt_post_options_hide_thumbnail','0'),(18879,22758,'_dt_post_options_related_mode','same'),(18880,22758,'_dt_post_options_preview','normal'),(18881,22901,'_edit_last','2'),(18882,22901,'_thumbnail_id','22619'),(18883,22901,'_wp_page_template','default'),(18884,22901,'slide_template','default'),(18885,22901,'rs_page_bg_color','#ffffff'),(18886,22901,'_wpb_vc_js_status','false'),(18887,22901,'_wc_memberships_force_public','no'),(18888,22901,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18889,22901,'_dt_sidebar_position','right'),(18890,22901,'_dt_sidebar_widgetarea_id','sidebar_1'),(18891,22901,'_dt_sidebar_hide_on_mobile','0'),(18892,22901,'_dt_footer_show','1'),(18893,22901,'_dt_footer_widgetarea_id','sidebar_2'),(18894,22901,'_dt_footer_hide_on_mobile','0'),(18895,22901,'_dt_header_title','enabled'),(18896,22901,'_dt_header_background','normal'),(18897,22901,'_dt_header_background_below_slideshow','disabled'),(18898,22901,'_dt_header_transparent_bg_color_scheme','light'),(18899,22901,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18900,22901,'_dt_header_transparent_top_bar_bg_opacity','25'),(18901,22901,'_dt_header_transparent_bg_color','#000000'),(18902,22901,'_dt_header_transparent_bg_opacity','50'),(18903,22901,'_dt_header_disabled_background','normal'),(18904,22901,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18905,22901,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18906,22901,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18907,22901,'_dt_header_disabled_transparent_bg_color','#000000'),(18908,22901,'_dt_header_disabled_transparent_bg_opacity','50'),(18909,22901,'_dt_page_overrides_top_margin',''),(18910,22901,'_dt_page_overrides_right_margin',''),(18911,22901,'_dt_page_overrides_bottom_margin',''),(18912,22901,'_dt_page_overrides_left_margin',''),(18913,22901,'_dt_mobile_page_padding_top',''),(18914,22901,'_dt_mobile_page_padding_right',''),(18915,22901,'_dt_mobile_page_padding_bottom',''),(18916,22901,'_dt_mobile_page_padding_left',''),(18917,22901,'_dt_post_options_back_button',''),(18918,22901,'_dt_post_options_hide_thumbnail','0'),(18919,22901,'_dt_post_options_related_mode','same'),(18920,22901,'_dt_post_options_preview','normal'),(18921,22901,'iawp_total_views','5'),(18922,23305,'_edit_last','2'),(18923,23305,'_wp_page_template','default'),(18924,23305,'slide_template','default'),(18925,23305,'rs_page_bg_color','#ffffff'),(18926,23305,'_wpb_vc_js_status','false'),(18927,23305,'_wc_memberships_force_public','no'),(18928,23305,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(18929,23305,'_dt_sidebar_position','right'),(18930,23305,'_dt_sidebar_widgetarea_id','sidebar_1'),(18931,23305,'_dt_sidebar_hide_on_mobile','0'),(18932,23305,'_dt_footer_show','1'),(18933,23305,'_dt_footer_widgetarea_id','sidebar_2'),(18934,23305,'_dt_footer_hide_on_mobile','0'),(18935,23305,'_dt_header_title','enabled'),(18936,23305,'_dt_header_background','normal'),(18937,23305,'_dt_header_background_below_slideshow','disabled'),(18938,23305,'_dt_header_transparent_bg_color_scheme','light'),(18939,23305,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18940,23305,'_dt_header_transparent_top_bar_bg_opacity','25'),(18941,23305,'_dt_header_transparent_bg_color','#000000'),(18942,23305,'_dt_header_transparent_bg_opacity','50'),(18943,23305,'_dt_header_disabled_background','normal'),(18944,23305,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18945,23305,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18946,23305,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18947,23305,'_dt_header_disabled_transparent_bg_color','#000000'),(18948,23305,'_dt_header_disabled_transparent_bg_opacity','50'),(18949,23305,'_dt_page_overrides_top_margin',''),(18950,23305,'_dt_page_overrides_right_margin',''),(18951,23305,'_dt_page_overrides_bottom_margin',''),(18952,23305,'_dt_page_overrides_left_margin',''),(18953,23305,'_dt_mobile_page_padding_top',''),(18954,23305,'_dt_mobile_page_padding_right',''),(18955,23305,'_dt_mobile_page_padding_bottom',''),(18956,23305,'_dt_mobile_page_padding_left',''),(18957,23305,'_dt_post_options_back_button',''),(18958,23305,'_dt_post_options_hide_thumbnail','0'),(18959,23305,'_dt_post_options_related_mode','same'),(18960,23305,'_dt_post_options_preview','normal'),(18961,23305,'_oembed_5340a5f42600a3c4dd1ff481d3bed3b2','<blockquote class=\"wp-embedded-content\" data-secret=\"4wddbzv6Yw\"><a href=\"https://gabbettperformance.com.au/1256-2/\">Load Management is Not about Decreasing Minutes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;Load Management is Not about Decreasing Minutes&#8221; &#8212; Gabbett Performance\" src=\"https://gabbettperformance.com.au/1256-2/embed/#?secret=4wddbzv6Yw\" data-secret=\"4wddbzv6Yw\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(18962,23305,'_oembed_time_5340a5f42600a3c4dd1ff481d3bed3b2','1595756203'),(18963,23305,'_thumbnail_id','23317'),(18964,26749,'_edit_last','2'),(18965,26749,'_thumbnail_id','26750'),(18966,26749,'_wp_page_template','default'),(18967,26749,'_wpb_vc_js_status','false'),(18968,26749,'_wc_memberships_force_public','no'),(18969,26749,'_wc_memberships_use_custom_post_content_restricted_message','no'),(18970,26749,'_dt_sidebar_position','right'),(18971,26749,'_dt_sidebar_widgetarea_id','sidebar_1'),(18972,26749,'_dt_sidebar_hide_on_mobile','0'),(18973,26749,'_dt_footer_show','1'),(18974,26749,'_dt_footer_widgetarea_id','sidebar_2'),(18975,26749,'_dt_footer_hide_on_mobile','0'),(18976,26749,'_dt_header_title','enabled'),(18977,26749,'_dt_header_background','normal'),(18978,26749,'_dt_header_background_below_slideshow','disabled'),(18979,26749,'_dt_header_transparent_bg_color_scheme','light'),(18980,26749,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(18981,26749,'_dt_header_transparent_top_bar_bg_opacity','25'),(18982,26749,'_dt_header_transparent_bg_color','#000000'),(18983,26749,'_dt_header_transparent_bg_opacity','50'),(18984,26749,'_dt_header_disabled_background','normal'),(18985,26749,'_dt_header_disabled_transparent_bg_color_scheme','light'),(18986,26749,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(18987,26749,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(18988,26749,'_dt_header_disabled_transparent_bg_color','#000000'),(18989,26749,'_dt_header_disabled_transparent_bg_opacity','50'),(18990,26749,'_dt_page_overrides_top_margin',''),(18991,26749,'_dt_page_overrides_right_margin',''),(18992,26749,'_dt_page_overrides_bottom_margin',''),(18993,26749,'_dt_page_overrides_left_margin',''),(18994,26749,'_dt_mobile_page_padding_top',''),(18995,26749,'_dt_mobile_page_padding_right',''),(18996,26749,'_dt_mobile_page_padding_bottom',''),(18997,26749,'_dt_mobile_page_padding_left',''),(18998,26749,'_dt_post_options_back_button',''),(18999,26749,'_dt_post_options_hide_thumbnail','0'),(19000,26749,'_dt_post_options_related_mode','same'),(19001,26749,'_dt_post_options_preview','normal'),(19002,26749,'_dt_microsite_primary_menu',''),(19003,26749,'_dt_microsite_split_left_menu',''),(19004,26749,'_dt_microsite_split_right_menu',''),(19005,26749,'_dt_microsite_mobile_menu',''),(19006,26749,'_oembed_09c9573a8ba2c3ca513aa242b82148ff','{{unknown}}'),(19007,26749,'iawp_total_views','17'),(19008,23317,'_wp_attached_file','2020/07/shutterstock_238685191-scaled-1.jpg'),(19009,23317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:43:\"2020/07/shutterstock_238685191-scaled-1.jpg\";s:8:\"filesize\";i:441849;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19010,23383,'_edit_last','2'),(19011,23383,'_thumbnail_id','23386'),(19012,23383,'_wp_page_template','default'),(19013,23383,'slide_template','default'),(19014,23383,'rs_page_bg_color','#ffffff'),(19015,23383,'_wpb_vc_js_status','false'),(19016,23383,'_wc_memberships_force_public','no'),(19017,23383,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(19018,23383,'_dt_sidebar_position','right'),(19019,23383,'_dt_sidebar_widgetarea_id','sidebar_1'),(19020,23383,'_dt_sidebar_hide_on_mobile','0'),(19021,23383,'_dt_footer_show','1'),(19022,23383,'_dt_footer_widgetarea_id','sidebar_2'),(19023,23383,'_dt_footer_hide_on_mobile','0'),(19024,23383,'_dt_header_title','enabled'),(19025,23383,'_dt_header_background','normal'),(19026,23383,'_dt_header_background_below_slideshow','disabled'),(19027,23383,'_dt_header_transparent_bg_color_scheme','light'),(19028,23383,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19029,23383,'_dt_header_transparent_top_bar_bg_opacity','25'),(19030,23383,'_dt_header_transparent_bg_color','#000000'),(19031,23383,'_dt_header_transparent_bg_opacity','50'),(19032,23383,'_dt_header_disabled_background','normal'),(19033,23383,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19034,23383,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19035,23383,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19036,23383,'_dt_header_disabled_transparent_bg_color','#000000'),(19037,23383,'_dt_header_disabled_transparent_bg_opacity','50'),(19038,23383,'_dt_page_overrides_top_margin',''),(19039,23383,'_dt_page_overrides_right_margin',''),(19040,23383,'_dt_page_overrides_bottom_margin',''),(19041,23383,'_dt_page_overrides_left_margin',''),(19042,23383,'_dt_mobile_page_padding_top',''),(19043,23383,'_dt_mobile_page_padding_right',''),(19044,23383,'_dt_mobile_page_padding_bottom',''),(19045,23383,'_dt_mobile_page_padding_left',''),(19046,23383,'_dt_post_options_back_button',''),(19047,23383,'_dt_post_options_hide_thumbnail','0'),(19048,23383,'_dt_post_options_related_mode','same'),(19049,23383,'_dt_post_options_preview','normal'),(19050,23383,'iawp_total_views','1'),(19051,23386,'_wp_attached_file','2020/08/shutterstock_76949212-scaled-1.jpg'),(19052,23386,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:42:\"2020/08/shutterstock_76949212-scaled-1.jpg\";s:8:\"filesize\";i:152684;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19053,23526,'_edit_last','2'),(19054,23526,'_wp_page_template','default'),(19055,23526,'slide_template','default'),(19056,23526,'rs_page_bg_color','#ffffff'),(19057,23526,'_wpb_vc_js_status','false'),(19058,23526,'_wc_memberships_force_public','no'),(19059,23526,'_wc_memberships_use_custom_post_content_restricted_message','yes'),(19060,23526,'_dt_sidebar_position','right'),(19061,23526,'_dt_sidebar_widgetarea_id','sidebar_1'),(19062,23526,'_dt_sidebar_hide_on_mobile','0'),(19063,23526,'_dt_footer_show','1'),(19064,23526,'_dt_footer_widgetarea_id','sidebar_2'),(19065,23526,'_dt_footer_hide_on_mobile','0'),(19066,23526,'_dt_header_title','enabled'),(19067,23526,'_dt_header_background','normal'),(19068,23526,'_dt_header_background_below_slideshow','disabled'),(19069,23526,'_dt_header_transparent_bg_color_scheme','light'),(19070,23526,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19071,23526,'_dt_header_transparent_top_bar_bg_opacity','25'),(19072,23526,'_dt_header_transparent_bg_color','#000000'),(19073,23526,'_dt_header_transparent_bg_opacity','50'),(19074,23526,'_dt_header_disabled_background','normal'),(19075,23526,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19076,23526,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19077,23526,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19078,23526,'_dt_header_disabled_transparent_bg_color','#000000'),(19079,23526,'_dt_header_disabled_transparent_bg_opacity','50'),(19080,23526,'_dt_page_overrides_top_margin',''),(19081,23526,'_dt_page_overrides_right_margin',''),(19082,23526,'_dt_page_overrides_bottom_margin',''),(19083,23526,'_dt_page_overrides_left_margin',''),(19084,23526,'_dt_mobile_page_padding_top',''),(19085,23526,'_dt_mobile_page_padding_right',''),(19086,23526,'_dt_mobile_page_padding_bottom',''),(19087,23526,'_dt_mobile_page_padding_left',''),(19088,23526,'_dt_post_options_back_button',''),(19089,23526,'_dt_post_options_hide_thumbnail','0'),(19090,23526,'_dt_post_options_related_mode','same'),(19091,23526,'_dt_post_options_preview','normal'),(19092,23526,'_thumbnail_id','23541'),(19093,23541,'_wp_attached_file','2020/08/diggity-marketing-s8HyIEe7lF0-unsplash-scaled-1.jpg'),(19094,23541,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:59:\"2020/08/diggity-marketing-s8HyIEe7lF0-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:338993;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19095,23636,'_edit_last','2'),(19096,23636,'_thumbnail_id','23637'),(19097,23636,'_wp_page_template','default'),(19098,23636,'slide_template','default'),(19099,23636,'rs_page_bg_color','#ffffff'),(19100,23636,'_wpb_vc_js_status','false'),(19101,23636,'_wc_memberships_force_public','no'),(19102,23636,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19103,23636,'_dt_sidebar_position','right'),(19104,23636,'_dt_sidebar_widgetarea_id','sidebar_1'),(19105,23636,'_dt_sidebar_hide_on_mobile','0'),(19106,23636,'_dt_footer_show','1'),(19107,23636,'_dt_footer_widgetarea_id','sidebar_2'),(19108,23636,'_dt_footer_hide_on_mobile','0'),(19109,23636,'_dt_header_title','enabled'),(19110,23636,'_dt_header_background','normal'),(19111,23636,'_dt_header_background_below_slideshow','disabled'),(19112,23636,'_dt_header_transparent_bg_color_scheme','light'),(19113,23636,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19114,23636,'_dt_header_transparent_top_bar_bg_opacity','25'),(19115,23636,'_dt_header_transparent_bg_color','#000000'),(19116,23636,'_dt_header_transparent_bg_opacity','50'),(19117,23636,'_dt_header_disabled_background','normal'),(19118,23636,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19119,23636,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19120,23636,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19121,23636,'_dt_header_disabled_transparent_bg_color','#000000'),(19122,23636,'_dt_header_disabled_transparent_bg_opacity','50'),(19123,23636,'_dt_page_overrides_top_margin',''),(19124,23636,'_dt_page_overrides_right_margin',''),(19125,23636,'_dt_page_overrides_bottom_margin',''),(19126,23636,'_dt_page_overrides_left_margin',''),(19127,23636,'_dt_mobile_page_padding_top',''),(19128,23636,'_dt_mobile_page_padding_right',''),(19129,23636,'_dt_mobile_page_padding_bottom',''),(19130,23636,'_dt_mobile_page_padding_left',''),(19131,23636,'_dt_post_options_back_button',''),(19132,23636,'_dt_post_options_hide_thumbnail','0'),(19133,23636,'_dt_post_options_related_mode','same'),(19134,23636,'_dt_post_options_preview','normal'),(19135,23636,'iawp_total_views','12'),(19136,23637,'_wp_attached_file','2020/08/blue-skele-man.jpg'),(19137,23637,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:1200;s:4:\"file\";s:26:\"2020/08/blue-skele-man.jpg\";s:8:\"filesize\";i:566872;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(19138,23765,'_edit_last','2'),(19139,23765,'_wp_page_template','default'),(19140,23765,'slide_template','default'),(19141,23765,'rs_page_bg_color','#ffffff'),(19142,23765,'_wpb_vc_js_status','false'),(19143,23765,'_wc_memberships_force_public','no'),(19144,23765,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19145,23765,'_dt_sidebar_position','right'),(19146,23765,'_dt_sidebar_widgetarea_id','sidebar_1'),(19147,23765,'_dt_sidebar_hide_on_mobile','0'),(19148,23765,'_dt_footer_show','1'),(19149,23765,'_dt_footer_widgetarea_id','sidebar_2'),(19150,23765,'_dt_footer_hide_on_mobile','0'),(19151,23765,'_dt_header_title','enabled'),(19152,23765,'_dt_header_background','normal'),(19153,23765,'_dt_header_background_below_slideshow','disabled'),(19154,23765,'_dt_header_transparent_bg_color_scheme','light'),(19155,23765,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19156,23765,'_dt_header_transparent_top_bar_bg_opacity','25'),(19157,23765,'_dt_header_transparent_bg_color','#000000'),(19158,23765,'_dt_header_transparent_bg_opacity','50'),(19159,23765,'_dt_header_disabled_background','normal'),(19160,23765,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19161,23765,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19162,23765,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19163,23765,'_dt_header_disabled_transparent_bg_color','#000000'),(19164,23765,'_dt_header_disabled_transparent_bg_opacity','50'),(19165,23765,'_dt_page_overrides_top_margin',''),(19166,23765,'_dt_page_overrides_right_margin',''),(19167,23765,'_dt_page_overrides_bottom_margin',''),(19168,23765,'_dt_page_overrides_left_margin',''),(19169,23765,'_dt_mobile_page_padding_top',''),(19170,23765,'_dt_mobile_page_padding_right',''),(19171,23765,'_dt_mobile_page_padding_bottom',''),(19172,23765,'_dt_mobile_page_padding_left',''),(19173,23765,'_dt_post_options_back_button',''),(19174,23765,'_dt_post_options_hide_thumbnail','0'),(19175,23765,'_dt_post_options_related_mode','same'),(19176,23765,'_dt_post_options_preview','normal'),(19177,23765,'_thumbnail_id','23770'),(19178,23766,'_wp_attached_file','2020/08/shutterstock_1176407491-scaled-1.jpg'),(19179,23766,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/08/shutterstock_1176407491-scaled-1.jpg\";s:8:\"filesize\";i:845114;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(19180,23769,'_wp_attached_file','2020/08/shutterstock_1176407491-1.jpg'),(19181,23769,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1333;s:4:\"file\";s:37:\"2020/08/shutterstock_1176407491-1.jpg\";s:8:\"filesize\";i:1696219;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(19182,23770,'_wp_attached_file','2020/08/shutterstock_1176407491-2.jpg'),(19183,23770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1333;s:4:\"file\";s:37:\"2020/08/shutterstock_1176407491-2.jpg\";s:8:\"filesize\";i:1696219;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(19184,23939,'_edit_last','2'),(19185,23939,'_thumbnail_id','23949'),(19186,23939,'_wp_page_template','default'),(19187,23939,'slide_template','default'),(19188,23939,'rs_page_bg_color','#ffffff'),(19189,23939,'_wpb_vc_js_status','false'),(19190,23939,'_wc_memberships_force_public','no'),(19191,23939,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19192,23939,'_dt_sidebar_position','right'),(19193,23939,'_dt_sidebar_widgetarea_id','sidebar_1'),(19194,23939,'_dt_sidebar_hide_on_mobile','0'),(19195,23939,'_dt_footer_show','1'),(19196,23939,'_dt_footer_widgetarea_id','sidebar_2'),(19197,23939,'_dt_footer_hide_on_mobile','0'),(19198,23939,'_dt_header_title','enabled'),(19199,23939,'_dt_header_background','normal'),(19200,23939,'_dt_header_background_below_slideshow','disabled'),(19201,23939,'_dt_header_transparent_bg_color_scheme','light'),(19202,23939,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19203,23939,'_dt_header_transparent_top_bar_bg_opacity','25'),(19204,23939,'_dt_header_transparent_bg_color','#000000'),(19205,23939,'_dt_header_transparent_bg_opacity','50'),(19206,23939,'_dt_header_disabled_background','normal'),(19207,23939,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19208,23939,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19209,23939,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19210,23939,'_dt_header_disabled_transparent_bg_color','#000000'),(19211,23939,'_dt_header_disabled_transparent_bg_opacity','50'),(19212,23939,'_dt_page_overrides_top_margin',''),(19213,23939,'_dt_page_overrides_right_margin',''),(19214,23939,'_dt_page_overrides_bottom_margin',''),(19215,23939,'_dt_page_overrides_left_margin',''),(19216,23939,'_dt_mobile_page_padding_top',''),(19217,23939,'_dt_mobile_page_padding_right',''),(19218,23939,'_dt_mobile_page_padding_bottom',''),(19219,23939,'_dt_mobile_page_padding_left',''),(19220,23939,'_dt_post_options_back_button',''),(19221,23939,'_dt_post_options_hide_thumbnail','0'),(19222,23939,'_dt_post_options_related_mode','same'),(19223,23939,'_dt_post_options_preview','normal'),(19224,23947,'_wp_attached_file','2020/09/IMG_3042-scaled-1.jpeg'),(19225,23947,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1708;s:6:\"height\";i:2560;s:4:\"file\";s:30:\"2020/09/IMG_3042-scaled-1.jpeg\";s:8:\"filesize\";i:397715;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19226,23949,'_wp_attached_file','2020/09/IMG_3042-1-e1599560790546.jpeg'),(19227,23949,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1499;s:4:\"file\";s:38:\"2020/09/IMG_3042-1-e1599560790546.jpeg\";s:8:\"filesize\";i:182207;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(19228,23949,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:1499;s:4:\"file\";s:15:\"IMG_3042-1.jpeg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-768x1151.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(19229,24097,'_edit_last','2'),(19230,24097,'_thumbnail_id','24100'),(19231,24097,'_wp_page_template','default'),(19232,24097,'slide_template','default'),(19233,24097,'rs_page_bg_color','#ffffff'),(19234,24097,'_wpb_vc_js_status','false'),(19235,24097,'_wc_memberships_force_public','no'),(19236,24097,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19237,24097,'_dt_sidebar_position','right'),(19238,24097,'_dt_sidebar_widgetarea_id','sidebar_1'),(19239,24097,'_dt_sidebar_hide_on_mobile','0'),(19240,24097,'_dt_footer_show','1'),(19241,24097,'_dt_footer_widgetarea_id','sidebar_2'),(19242,24097,'_dt_footer_hide_on_mobile','0'),(19243,24097,'_dt_header_title','enabled'),(19244,24097,'_dt_header_background','normal'),(19245,24097,'_dt_header_background_below_slideshow','disabled'),(19246,24097,'_dt_header_transparent_bg_color_scheme','light'),(19247,24097,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19248,24097,'_dt_header_transparent_top_bar_bg_opacity','25'),(19249,24097,'_dt_header_transparent_bg_color','#000000'),(19250,24097,'_dt_header_transparent_bg_opacity','50'),(19251,24097,'_dt_header_disabled_background','normal'),(19252,24097,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19253,24097,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19254,24097,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19255,24097,'_dt_header_disabled_transparent_bg_color','#000000'),(19256,24097,'_dt_header_disabled_transparent_bg_opacity','50'),(19257,24097,'_dt_page_overrides_top_margin',''),(19258,24097,'_dt_page_overrides_right_margin',''),(19259,24097,'_dt_page_overrides_bottom_margin',''),(19260,24097,'_dt_page_overrides_left_margin',''),(19261,24097,'_dt_mobile_page_padding_top',''),(19262,24097,'_dt_mobile_page_padding_right',''),(19263,24097,'_dt_mobile_page_padding_bottom',''),(19264,24097,'_dt_mobile_page_padding_left',''),(19265,24097,'_dt_post_options_back_button',''),(19266,24097,'_dt_post_options_hide_thumbnail','0'),(19267,24097,'_dt_post_options_related_mode','same'),(19268,24097,'_dt_post_options_preview','normal'),(19269,24097,'iawp_total_views','10'),(19270,24100,'_wp_attached_file','2020/09/DSC01482-scaled-1.jpg'),(19271,24100,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:29:\"2020/09/DSC01482-scaled-1.jpg\";s:8:\"filesize\";i:845774;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583576187\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19272,24186,'_edit_last','2'),(19273,24186,'_thumbnail_id','24189'),(19274,24186,'_wp_page_template','default'),(19275,24186,'slide_template','default'),(19276,24186,'rs_page_bg_color','#ffffff'),(19277,24186,'_wpb_vc_js_status','false'),(19278,24186,'_wc_memberships_force_public','no'),(19279,24186,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19280,24186,'_dt_sidebar_position','right'),(19281,24186,'_dt_sidebar_widgetarea_id','sidebar_1'),(19282,24186,'_dt_sidebar_hide_on_mobile','0'),(19283,24186,'_dt_footer_show','1'),(19284,24186,'_dt_footer_widgetarea_id','sidebar_2'),(19285,24186,'_dt_footer_hide_on_mobile','0'),(19286,24186,'_dt_header_title','enabled'),(19287,24186,'_dt_header_background','normal'),(19288,24186,'_dt_header_background_below_slideshow','disabled'),(19289,24186,'_dt_header_transparent_bg_color_scheme','light'),(19290,24186,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19291,24186,'_dt_header_transparent_top_bar_bg_opacity','25'),(19292,24186,'_dt_header_transparent_bg_color','#000000'),(19293,24186,'_dt_header_transparent_bg_opacity','50'),(19294,24186,'_dt_header_disabled_background','normal'),(19295,24186,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19296,24186,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19297,24186,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19298,24186,'_dt_header_disabled_transparent_bg_color','#000000'),(19299,24186,'_dt_header_disabled_transparent_bg_opacity','50'),(19300,24186,'_dt_page_overrides_top_margin',''),(19301,24186,'_dt_page_overrides_right_margin',''),(19302,24186,'_dt_page_overrides_bottom_margin',''),(19303,24186,'_dt_page_overrides_left_margin',''),(19304,24186,'_dt_mobile_page_padding_top',''),(19305,24186,'_dt_mobile_page_padding_right',''),(19306,24186,'_dt_mobile_page_padding_bottom',''),(19307,24186,'_dt_mobile_page_padding_left',''),(19308,24186,'_dt_post_options_back_button',''),(19309,24186,'_dt_post_options_hide_thumbnail','0'),(19310,24186,'_dt_post_options_related_mode','same'),(19311,24186,'_dt_post_options_preview','normal'),(19312,24187,'_wp_attached_file','2020/09/shutterstock_109415894-scaled-1.jpg'),(19313,24187,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/09/shutterstock_109415894-scaled-1.jpg\";s:8:\"filesize\";i:234684;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19314,24764,'_edit_last','17'),(19315,24764,'_wp_page_template','default'),(19316,24764,'_wpb_vc_js_status','false'),(19317,24764,'_wc_memberships_force_public','no'),(19318,24764,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19319,24764,'_dt_sidebar_position','right'),(19320,24764,'_dt_sidebar_widgetarea_id','sidebar_1'),(19321,24764,'_dt_sidebar_hide_on_mobile','0'),(19322,24764,'_dt_footer_show','1'),(19323,24764,'_dt_footer_widgetarea_id','sidebar_2'),(19324,24764,'_dt_footer_hide_on_mobile','0'),(19325,24764,'_dt_header_title','enabled'),(19326,24764,'_dt_header_background','normal'),(19327,24764,'_dt_header_background_below_slideshow','disabled'),(19328,24764,'_dt_header_transparent_bg_color_scheme','light'),(19329,24764,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19330,24764,'_dt_header_transparent_top_bar_bg_opacity','25'),(19331,24764,'_dt_header_transparent_bg_color','#000000'),(19332,24764,'_dt_header_transparent_bg_opacity','50'),(19333,24764,'_dt_header_disabled_background','normal'),(19334,24764,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19335,24764,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19336,24764,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19337,24764,'_dt_header_disabled_transparent_bg_color','#000000'),(19338,24764,'_dt_header_disabled_transparent_bg_opacity','50'),(19339,24764,'_dt_page_overrides_top_margin',''),(19340,24764,'_dt_page_overrides_right_margin',''),(19341,24764,'_dt_page_overrides_bottom_margin',''),(19342,24764,'_dt_page_overrides_left_margin',''),(19343,24764,'_dt_mobile_page_padding_top',''),(19344,24764,'_dt_mobile_page_padding_right',''),(19345,24764,'_dt_mobile_page_padding_bottom',''),(19346,24764,'_dt_mobile_page_padding_left',''),(19347,24764,'_dt_post_options_back_button',''),(19348,24764,'_dt_post_options_hide_thumbnail','0'),(19349,24764,'_dt_post_options_related_mode','same'),(19350,24764,'_dt_post_options_preview','normal'),(19351,24764,'_dt_microsite_primary_menu',''),(19352,24764,'_dt_microsite_split_left_menu',''),(19353,24764,'_dt_microsite_split_right_menu',''),(19354,24764,'_dt_microsite_mobile_menu',''),(19355,24764,'_thumbnail_id','24781'),(19356,24764,'iawp_total_views','126'),(19357,24770,'_wp_attached_file','2020/11/1401137150-huge-scaled-1.jpg'),(19358,24770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:36:\"2020/11/1401137150-huge-scaled-1.jpg\";s:8:\"filesize\";i:606557;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(19359,24188,'_wp_attached_file','2020/09/shutterstock_147943874-scaled-1.jpg'),(19360,24188,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2048;s:4:\"file\";s:43:\"2020/09/shutterstock_147943874-scaled-1.jpg\";s:8:\"filesize\";i:264721;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19361,24189,'_wp_attached_file','2020/09/shutterstock_172528928-scaled-1.jpg'),(19362,24189,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2426;s:4:\"file\";s:43:\"2020/09/shutterstock_172528928-scaled-1.jpg\";s:8:\"filesize\";i:171057;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19363,24190,'_wp_attached_file','2020/09/Screenshot-2020-09-29-at-13.19.57.png'),(19364,24190,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1198;s:6:\"height\";i:820;s:4:\"file\";s:45:\"2020/09/Screenshot-2020-09-29-at-13.19.57.png\";s:8:\"filesize\";i:225026;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19365,24262,'_dt_microsite_mobile_menu',''),(19366,24262,'_dt_microsite_primary_menu',''),(19367,24262,'_dt_microsite_split_right_menu',''),(19368,24262,'_dt_microsite_split_left_menu',''),(19369,24262,'_edit_last','17'),(19370,24262,'_oembed_a67416ddb34fe9b09e0b2f27429c9030','{{unknown}}'),(19371,24262,'_oembed_19a8ab8e4963781e49b8bab506f44523','{{unknown}}'),(19372,24262,'_oembed_aeea7529b829aec65e18c3da31c9d937','{{unknown}}'),(19373,24262,'_oembed_f447031acbe4701b25849466f88613bf','{{unknown}}'),(19374,24262,'_oembed_0b1b8020442bbe1aa55b416d9374dddc','{{unknown}}'),(19375,24262,'_oembed_1beeaef0656861ae03a279dfe7d25650','{{unknown}}'),(19376,24262,'_oembed_66d90c2179dc07eb889455d525ee7e25','{{unknown}}'),(19377,24262,'_thumbnail_id','24268'),(19378,24262,'_wp_page_template','default'),(19379,24262,'_wpb_post_custom_layout','default'),(19380,24262,'_wpb_vc_js_status','false'),(19381,24262,'_wc_memberships_force_public','no'),(19382,24262,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19383,24262,'_dt_sidebar_position','right'),(19384,24262,'_dt_sidebar_widgetarea_id','sidebar_1'),(19385,24262,'_dt_sidebar_hide_on_mobile','0'),(19386,24262,'_dt_footer_show','1'),(19387,24262,'_dt_footer_widgetarea_id','sidebar_2'),(19388,24262,'_dt_footer_hide_on_mobile','0'),(19389,24262,'_dt_header_title','enabled'),(19390,24262,'_dt_header_background','normal'),(19391,24262,'_dt_header_background_below_slideshow','disabled'),(19392,24262,'_dt_header_transparent_bg_color_scheme','light'),(19393,24262,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19394,24262,'_dt_header_transparent_top_bar_bg_opacity','25'),(19395,24262,'_dt_header_transparent_bg_color','#000000'),(19396,24262,'_dt_header_transparent_bg_opacity','50'),(19397,24262,'_dt_header_disabled_background','normal'),(19398,24262,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19399,24262,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19400,24262,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19401,24262,'_dt_header_disabled_transparent_bg_color','#000000'),(19402,24262,'_dt_header_disabled_transparent_bg_opacity','50'),(19403,24262,'_dt_page_overrides_top_margin',''),(19404,24262,'_dt_page_overrides_right_margin',''),(19405,24262,'_dt_page_overrides_bottom_margin',''),(19406,24262,'_dt_page_overrides_left_margin',''),(19407,24262,'_dt_mobile_page_padding_top',''),(19408,24262,'_dt_mobile_page_padding_right',''),(19409,24262,'_dt_mobile_page_padding_bottom',''),(19410,24262,'_dt_mobile_page_padding_left',''),(19411,24262,'_dt_post_options_back_button',''),(19412,24262,'_dt_post_options_hide_thumbnail','0'),(19413,24262,'_dt_post_options_related_mode','same'),(19414,24262,'_dt_post_options_preview','normal'),(19415,24262,'_oembed_3def0c03180df5f715b6903a590ab566','{{unknown}}'),(19416,24262,'_oembed_6f75646b1cd670bec930725d994cf6ce','{{unknown}}'),(19417,24262,'_oembed_45fbc8bd05bf2a37aa768c45ac85b154','{{unknown}}'),(19418,24262,'_oembed_b1b776871a11ff27e1aaedd892a00dba','{{unknown}}'),(19419,24262,'_oembed_ad7b4f03cf09654c5271e000c63c1f72','{{unknown}}'),(19420,24262,'_oembed_a8b79948190139165f439ed2e87f85d3','{{unknown}}'),(19421,24262,'_oembed_44f877bd0fdf5d8a4eb47a3b34bdd61f','{{unknown}}'),(19422,24262,'_oembed_8a881ec626481af794ff0746d09e7b1f','{{unknown}}'),(19423,24262,'_oembed_1aa6768d90fc40415af732c319544cab','{{unknown}}'),(19424,24262,'_oembed_63c9ac558ac8cbf69f4b8f6d497f2b74','{{unknown}}'),(19425,24262,'_oembed_2c887c70adfe206a1e9d75b813e0237f','{{unknown}}'),(19426,24262,'_oembed_e2171746807308e3bd8454b98a529b1a','{{unknown}}'),(19427,24262,'iawp_total_views','247'),(19428,24266,'_wp_attached_file','2020/10/ARTICULARIS-GENUS.png'),(19429,24266,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1496;s:6:\"height\";i:1482;s:4:\"file\";s:29:\"2020/10/ARTICULARIS-GENUS.png\";s:8:\"filesize\";i:1235022;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19430,24267,'_wp_attached_file','2020/10/TENSA-VASTUS-INTERMEDIUS.png'),(19431,24267,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1512;s:6:\"height\";i:1454;s:4:\"file\";s:36:\"2020/10/TENSA-VASTUS-INTERMEDIUS.png\";s:8:\"filesize\";i:1230242;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19432,24268,'_wp_attached_file','2020/10/shutterstock_1401205709-scaled-1.jpg'),(19433,24268,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/10/shutterstock_1401205709-scaled-1.jpg\";s:8:\"filesize\";i:577676;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1597392656\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(19434,24449,'_edit_last','2'),(19435,24449,'_thumbnail_id','24451'),(19436,24449,'_wp_page_template','default'),(19437,24449,'slide_template','default'),(19438,24449,'rs_page_bg_color','#ffffff'),(19439,24449,'_wpb_vc_js_status','false'),(19440,24449,'_wc_memberships_force_public','no'),(19441,24449,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19442,24449,'_dt_sidebar_position','right'),(19443,24449,'_dt_sidebar_widgetarea_id','sidebar_1'),(19444,24449,'_dt_sidebar_hide_on_mobile','0'),(19445,24449,'_dt_footer_show','1'),(19446,24449,'_dt_footer_widgetarea_id','sidebar_2'),(19447,24449,'_dt_footer_hide_on_mobile','0'),(19448,24449,'_dt_header_title','enabled'),(19449,24449,'_dt_header_background','normal'),(19450,24449,'_dt_header_background_below_slideshow','disabled'),(19451,24449,'_dt_header_transparent_bg_color_scheme','light'),(19452,24449,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19453,24449,'_dt_header_transparent_top_bar_bg_opacity','25'),(19454,24449,'_dt_header_transparent_bg_color','#000000'),(19455,24449,'_dt_header_transparent_bg_opacity','50'),(19456,24449,'_dt_header_disabled_background','normal'),(19457,24449,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19458,24449,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19459,24449,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19460,24449,'_dt_header_disabled_transparent_bg_color','#000000'),(19461,24449,'_dt_header_disabled_transparent_bg_opacity','50'),(19462,24449,'_dt_page_overrides_top_margin',''),(19463,24449,'_dt_page_overrides_right_margin',''),(19464,24449,'_dt_page_overrides_bottom_margin',''),(19465,24449,'_dt_page_overrides_left_margin',''),(19466,24449,'_dt_mobile_page_padding_top',''),(19467,24449,'_dt_mobile_page_padding_right',''),(19468,24449,'_dt_mobile_page_padding_bottom',''),(19469,24449,'_dt_mobile_page_padding_left',''),(19470,24449,'_dt_post_options_back_button',''),(19471,24449,'_dt_post_options_hide_thumbnail','0'),(19472,24449,'_dt_post_options_related_mode','same'),(19473,24449,'_dt_post_options_preview','normal'),(19474,24449,'_dt_microsite_primary_menu',''),(19475,24449,'_dt_microsite_split_left_menu',''),(19476,24449,'_dt_microsite_split_right_menu',''),(19477,24449,'_dt_microsite_mobile_menu',''),(19478,24451,'_wp_attached_file','2020/10/shutterstock_619010450-scaled-1.jpg'),(19479,24451,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1741;s:4:\"file\";s:43:\"2020/10/shutterstock_619010450-scaled-1.jpg\";s:8:\"filesize\";i:1253926;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19480,24544,'_edit_last','17'),(19481,24544,'_thumbnail_id','24642'),(19482,24544,'_wp_page_template','default'),(19483,24544,'_wpb_vc_js_status','false'),(19484,24544,'_wc_memberships_force_public','no'),(19485,24544,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19486,24544,'_dt_sidebar_position','right'),(19487,24544,'_dt_sidebar_widgetarea_id','sidebar_1'),(19488,24544,'_dt_sidebar_hide_on_mobile','0'),(19489,24544,'_dt_footer_show','1'),(19490,24544,'_dt_footer_widgetarea_id','sidebar_2'),(19491,24544,'_dt_footer_hide_on_mobile','0'),(19492,24544,'_dt_header_title','enabled'),(19493,24544,'_dt_header_background','normal'),(19494,24544,'_dt_header_background_below_slideshow','disabled'),(19495,24544,'_dt_header_transparent_bg_color_scheme','light'),(19496,24544,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19497,24544,'_dt_header_transparent_top_bar_bg_opacity','25'),(19498,24544,'_dt_header_transparent_bg_color','#000000'),(19499,24544,'_dt_header_transparent_bg_opacity','50'),(19500,24544,'_dt_header_disabled_background','normal'),(19501,24544,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19502,24544,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19503,24544,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19504,24544,'_dt_header_disabled_transparent_bg_color','#000000'),(19505,24544,'_dt_header_disabled_transparent_bg_opacity','50'),(19506,24544,'_dt_page_overrides_top_margin',''),(19507,24544,'_dt_page_overrides_right_margin',''),(19508,24544,'_dt_page_overrides_bottom_margin',''),(19509,24544,'_dt_page_overrides_left_margin',''),(19510,24544,'_dt_mobile_page_padding_top',''),(19511,24544,'_dt_mobile_page_padding_right',''),(19512,24544,'_dt_mobile_page_padding_bottom',''),(19513,24544,'_dt_mobile_page_padding_left',''),(19514,24544,'_dt_post_options_back_button',''),(19515,24544,'_dt_post_options_hide_thumbnail','0'),(19516,24544,'_dt_post_options_related_mode','same'),(19517,24544,'_dt_post_options_preview','normal'),(19518,24544,'_dt_microsite_primary_menu',''),(19519,24544,'_dt_microsite_split_left_menu',''),(19520,24544,'_dt_microsite_split_right_menu',''),(19521,24544,'_dt_microsite_mobile_menu',''),(19522,24544,'iawp_total_views','59'),(19523,24546,'_wp_attached_file','2020/10/shutterstock_1339561676.pdf'),(19524,24546,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:31:\"shutterstock_1339561676-pdf.jpg\";s:5:\"width\";i:1157;s:6:\"height\";i:891;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163042;}s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"shutterstock_1339561676-pdf-900x693.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:693;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103601;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"shutterstock_1339561676-pdf-400x308.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32363;}}s:8:\"filesize\";i:17897844;}'),(19525,24547,'_wp_attached_file','2020/10/Screenshot-2020-10-26-at-20.18.14.png'),(19526,24547,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1380;s:6:\"height\";i:1284;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-26-at-20.18.14.png\";s:8:\"filesize\";i:1881439;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19527,24548,'_wp_attached_file','2020/10/Screenshot-2020-10-26-at-19.30.48.png'),(19528,24548,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:520;s:6:\"height\";i:358;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-26-at-19.30.48.png\";s:8:\"filesize\";i:99478;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19529,24549,'_wp_attached_file','2020/10/Screenshot-2020-10-26-at-19.30.18.png'),(19530,24549,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:866;s:6:\"height\";i:408;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-26-at-19.30.18.png\";s:8:\"filesize\";i:213403;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19531,24550,'_wp_attached_file','2020/10/Screenshot-2020-10-26-at-20.20.58.png'),(19532,24550,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1142;s:6:\"height\";i:1066;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-10-26-at-20.20.58.png\";s:8:\"filesize\";i:686438;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19533,24642,'_wp_attached_file','2020/10/Screenshot-2020-11-03-at-11.50.51.png'),(19534,24642,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:842;s:6:\"height\";i:726;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-11-03-at-11.50.51.png\";s:8:\"filesize\";i:837751;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19535,24644,'_wp_attached_file','2020/10/Screenshot-2020-11-03-at-11.50.51-1.png'),(19536,24644,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:842;s:6:\"height\";i:726;s:4:\"file\";s:47:\"2020/10/Screenshot-2020-11-03-at-11.50.51-1.png\";s:8:\"filesize\";i:741690;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19537,24645,'_wp_attached_file','2020/10/Screenshot-2020-11-03-at-11.50.51-2.png'),(19538,24645,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:842;s:6:\"height\";i:726;s:4:\"file\";s:47:\"2020/10/Screenshot-2020-11-03-at-11.50.51-2.png\";s:8:\"filesize\";i:755272;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19539,24646,'_wp_attached_file','2020/10/Screenshot-2020-11-03-at-11.57.12.png'),(19540,24646,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:722;s:6:\"height\";i:636;s:4:\"file\";s:45:\"2020/10/Screenshot-2020-11-03-at-11.57.12.png\";s:8:\"filesize\";i:576322;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19541,24648,'_edit_last','2'),(19542,24648,'_thumbnail_id','24653'),(19543,24648,'_wp_page_template','default'),(19544,24648,'slide_template','default'),(19545,24648,'rs_page_bg_color','#ffffff'),(19546,24648,'_wpb_vc_js_status','false'),(19547,24648,'_wc_memberships_force_public','no'),(19548,24648,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19549,24648,'_dt_sidebar_position','right'),(19550,24648,'_dt_sidebar_widgetarea_id','sidebar_1'),(19551,24648,'_dt_sidebar_hide_on_mobile','0'),(19552,24648,'_dt_footer_show','1'),(19553,24648,'_dt_footer_widgetarea_id','sidebar_2'),(19554,24648,'_dt_footer_hide_on_mobile','0'),(19555,24648,'_dt_header_title','enabled'),(19556,24648,'_dt_header_background','normal'),(19557,24648,'_dt_header_background_below_slideshow','disabled'),(19558,24648,'_dt_header_transparent_bg_color_scheme','light'),(19559,24648,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19560,24648,'_dt_header_transparent_top_bar_bg_opacity','25'),(19561,24648,'_dt_header_transparent_bg_color','#000000'),(19562,24648,'_dt_header_transparent_bg_opacity','50'),(19563,24648,'_dt_header_disabled_background','normal'),(19564,24648,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19565,24648,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19566,24648,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19567,24648,'_dt_header_disabled_transparent_bg_color','#000000'),(19568,24648,'_dt_header_disabled_transparent_bg_opacity','50'),(19569,24648,'_dt_page_overrides_top_margin',''),(19570,24648,'_dt_page_overrides_right_margin',''),(19571,24648,'_dt_page_overrides_bottom_margin',''),(19572,24648,'_dt_page_overrides_left_margin',''),(19573,24648,'_dt_mobile_page_padding_top',''),(19574,24648,'_dt_mobile_page_padding_right',''),(19575,24648,'_dt_mobile_page_padding_bottom',''),(19576,24648,'_dt_mobile_page_padding_left',''),(19577,24648,'_dt_post_options_back_button',''),(19578,24648,'_dt_post_options_hide_thumbnail','0'),(19579,24648,'_dt_post_options_related_mode','same'),(19580,24648,'_dt_post_options_preview','normal'),(19581,24648,'_dt_microsite_primary_menu',''),(19582,24648,'_dt_microsite_split_left_menu',''),(19583,24648,'_dt_microsite_split_right_menu',''),(19584,24648,'_dt_microsite_mobile_menu',''),(19585,24649,'_wp_attached_file','2020/11/Screenshot-2020-11-03-at-12.38.44.png'),(19586,24649,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1762;s:6:\"height\";i:1102;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-03-at-12.38.44.png\";s:8:\"filesize\";i:1008795;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19587,24653,'_wp_attached_file','2020/11/photo-boards-25QCezs8-oo-unsplash.jpg'),(19588,24653,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:45:\"2020/11/photo-boards-25QCezs8-oo-unsplash.jpg\";s:8:\"filesize\";i:117633;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(19589,24771,'_wp_attached_file','2020/11/shutterstock_1377046316-scaled-1.jpg'),(19590,24771,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/11/shutterstock_1377046316-scaled-1.jpg\";s:8:\"filesize\";i:300735;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(19591,24772,'_wp_attached_file','2020/11/shutterstock_1350320282-scaled-1.jpg'),(19592,24772,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/11/shutterstock_1350320282-scaled-1.jpg\";s:8:\"filesize\";i:310189;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(19593,24773,'_wp_attached_file','2020/11/shutterstock_293557031-scaled-1.jpg'),(19594,24773,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/11/shutterstock_293557031-scaled-1.jpg\";s:8:\"filesize\";i:369593;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19595,24774,'_wp_attached_file','2020/11/shutterstock_223319263-scaled-1.jpg'),(19596,24774,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/11/shutterstock_223319263-scaled-1.jpg\";s:8:\"filesize\";i:383077;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19597,24775,'_wp_attached_file','2020/11/shutterstock_149230190-scaled-1.jpg'),(19598,24775,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/11/shutterstock_149230190-scaled-1.jpg\";s:8:\"filesize\";i:247680;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19599,24776,'_wp_attached_file','2020/11/shutterstock_303065684-scaled-1.jpg'),(19600,24776,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/11/shutterstock_303065684-scaled-1.jpg\";s:8:\"filesize\";i:316439;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19601,24777,'_wp_attached_file','2020/11/shutterstock_293555465-scaled-1.jpg'),(19602,24777,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/11/shutterstock_293555465-scaled-1.jpg\";s:8:\"filesize\";i:357678;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19603,24778,'_wp_attached_file','2020/11/shutterstock_303067988-scaled-1.jpg'),(19604,24778,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/11/shutterstock_303067988-scaled-1.jpg\";s:8:\"filesize\";i:266576;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19605,24779,'_wp_attached_file','2020/11/shutterstock_293550401-scaled-1.jpg'),(19606,24779,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/11/shutterstock_293550401-scaled-1.jpg\";s:8:\"filesize\";i:322018;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19607,24780,'_wp_attached_file','2020/11/shutterstock_303082580-scaled-1.jpg'),(19608,24780,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/11/shutterstock_303082580-scaled-1.jpg\";s:8:\"filesize\";i:312334;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19609,24781,'_wp_attached_file','2020/11/shutterstock_1757766335-scaled-1.jpg'),(19610,24781,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/11/shutterstock_1757766335-scaled-1.jpg\";s:8:\"filesize\";i:642962;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(19611,24782,'_wp_attached_file','2020/11/shutterstock_293551259-scaled-1.jpg'),(19612,24782,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/11/shutterstock_293551259-scaled-1.jpg\";s:8:\"filesize\";i:337777;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19613,24783,'_wp_attached_file','2020/11/Screenshot-2020-11-09-at-08.58.26.png'),(19614,24783,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:372;s:6:\"height\";i:544;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-09-at-08.58.26.png\";s:8:\"filesize\";i:218722;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19615,24784,'_wp_attached_file','2020/11/Screenshot-2020-11-09-at-08.59.52.png'),(19616,24784,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:390;s:6:\"height\";i:524;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-09-at-08.59.52.png\";s:8:\"filesize\";i:233502;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19617,25457,'_edit_last','2'),(19618,25457,'_thumbnail_id','24189'),(19619,25457,'_wp_page_template','default'),(19620,25457,'slide_template','default'),(19621,25457,'rs_page_bg_color','#ffffff'),(19622,25457,'_wpb_vc_js_status','false'),(19623,25457,'_wc_memberships_force_public','no'),(19624,25457,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19625,25457,'_dt_sidebar_position','right'),(19626,25457,'_dt_sidebar_widgetarea_id','sidebar_1'),(19627,25457,'_dt_sidebar_hide_on_mobile','0'),(19628,25457,'_dt_footer_show','1'),(19629,25457,'_dt_footer_widgetarea_id','sidebar_2'),(19630,25457,'_dt_footer_hide_on_mobile','0'),(19631,25457,'_dt_header_title','enabled'),(19632,25457,'_dt_header_background','normal'),(19633,25457,'_dt_header_background_below_slideshow','disabled'),(19634,25457,'_dt_header_transparent_bg_color_scheme','light'),(19635,25457,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19636,25457,'_dt_header_transparent_top_bar_bg_opacity','25'),(19637,25457,'_dt_header_transparent_bg_color','#000000'),(19638,25457,'_dt_header_transparent_bg_opacity','50'),(19639,25457,'_dt_header_disabled_background','normal'),(19640,25457,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19641,25457,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19642,25457,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19643,25457,'_dt_header_disabled_transparent_bg_color','#000000'),(19644,25457,'_dt_header_disabled_transparent_bg_opacity','50'),(19645,25457,'_dt_page_overrides_top_margin',''),(19646,25457,'_dt_page_overrides_right_margin',''),(19647,25457,'_dt_page_overrides_bottom_margin',''),(19648,25457,'_dt_page_overrides_left_margin',''),(19649,25457,'_dt_mobile_page_padding_top',''),(19650,25457,'_dt_mobile_page_padding_right',''),(19651,25457,'_dt_mobile_page_padding_bottom',''),(19652,25457,'_dt_mobile_page_padding_left',''),(19653,25457,'_dt_post_options_back_button',''),(19654,25457,'_dt_post_options_hide_thumbnail','0'),(19655,25457,'_dt_post_options_related_mode','same'),(19656,25457,'_dt_post_options_preview','normal'),(19657,25457,'_dt_microsite_primary_menu',''),(19658,25457,'_dt_microsite_split_left_menu',''),(19659,25457,'_dt_microsite_split_right_menu',''),(19660,25457,'_dt_microsite_mobile_menu',''),(19661,25457,'iawp_total_views','34'),(19662,25460,'_wp_attached_file','2020/12/shutterstock_278017295-scaled-1.jpg'),(19663,25460,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2351;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/12/shutterstock_278017295-scaled-1.jpg\";s:8:\"filesize\";i:246766;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19664,25461,'_wp_attached_file','2020/12/shutterstock_305274299-scaled-1.jpg'),(19665,25461,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:876;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/12/shutterstock_305274299-scaled-1.jpg\";s:8:\"filesize\";i:124877;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19666,25462,'_wp_attached_file','2020/12/Screenshot-2020-12-15-at-10.17.34.png'),(19667,25462,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2366;s:6:\"height\";i:2322;s:4:\"file\";s:45:\"2020/12/Screenshot-2020-12-15-at-10.17.34.png\";s:8:\"filesize\";i:1324049;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19668,24785,'_wp_attached_file','2020/11/Screenshot-2020-11-09-at-08.59.31.png'),(19669,24785,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:364;s:6:\"height\";i:532;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-09-at-08.59.31.png\";s:8:\"filesize\";i:230541;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19670,24786,'_wp_attached_file','2020/11/Screenshot-2020-11-09-at-09.03.16.png'),(19671,24786,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:366;s:6:\"height\";i:520;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-09-at-09.03.16.png\";s:8:\"filesize\";i:197706;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19672,24894,'_edit_last','2'),(19673,24894,'_thumbnail_id','24903'),(19674,24894,'_wp_page_template','default'),(19675,24894,'slide_template','default'),(19676,24894,'rs_page_bg_color','#ffffff'),(19677,24894,'_wpb_vc_js_status','false'),(19678,24894,'_wc_memberships_force_public','no'),(19679,24894,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19680,24894,'_dt_sidebar_position','right'),(19681,24894,'_dt_sidebar_widgetarea_id','sidebar_1'),(19682,24894,'_dt_sidebar_hide_on_mobile','0'),(19683,24894,'_dt_footer_show','1'),(19684,24894,'_dt_footer_widgetarea_id','sidebar_2'),(19685,24894,'_dt_footer_hide_on_mobile','0'),(19686,24894,'_dt_header_title','enabled'),(19687,24894,'_dt_header_background','normal'),(19688,24894,'_dt_header_background_below_slideshow','disabled'),(19689,24894,'_dt_header_transparent_bg_color_scheme','light'),(19690,24894,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19691,24894,'_dt_header_transparent_top_bar_bg_opacity','25'),(19692,24894,'_dt_header_transparent_bg_color','#000000'),(19693,24894,'_dt_header_transparent_bg_opacity','50'),(19694,24894,'_dt_header_disabled_background','normal'),(19695,24894,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19696,24894,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19697,24894,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19698,24894,'_dt_header_disabled_transparent_bg_color','#000000'),(19699,24894,'_dt_header_disabled_transparent_bg_opacity','50'),(19700,24894,'_dt_page_overrides_top_margin',''),(19701,24894,'_dt_page_overrides_right_margin',''),(19702,24894,'_dt_page_overrides_bottom_margin',''),(19703,24894,'_dt_page_overrides_left_margin',''),(19704,24894,'_dt_mobile_page_padding_top',''),(19705,24894,'_dt_mobile_page_padding_right',''),(19706,24894,'_dt_mobile_page_padding_bottom',''),(19707,24894,'_dt_mobile_page_padding_left',''),(19708,24894,'_dt_post_options_back_button',''),(19709,24894,'_dt_post_options_hide_thumbnail','0'),(19710,24894,'_dt_post_options_related_mode','same'),(19711,24894,'_dt_post_options_preview','normal'),(19712,24894,'_dt_microsite_primary_menu',''),(19713,24894,'_dt_microsite_split_left_menu',''),(19714,24894,'_dt_microsite_split_right_menu',''),(19715,24894,'_dt_microsite_mobile_menu',''),(19716,24894,'iawp_total_views','35'),(19717,24895,'_wp_attached_file','2020/11/Screenshot-2020-11-16-at-13.37.56.png'),(19718,24895,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1332;s:6:\"height\";i:994;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-16-at-13.37.56.png\";s:8:\"filesize\";i:624743;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19719,24896,'_wp_attached_file','2020/11/Screenshot-2020-11-16-at-13.40.48.png'),(19720,24896,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1222;s:6:\"height\";i:842;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-16-at-13.40.48.png\";s:8:\"filesize\";i:95824;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19721,24897,'_wp_attached_file','2020/11/Screenshot-2020-11-16-at-13.42.30.png'),(19722,24897,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1180;s:6:\"height\";i:742;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-16-at-13.42.30.png\";s:8:\"filesize\";i:635499;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19723,24898,'_wp_attached_file','2020/11/Screenshot-2020-11-16-at-13.45.41.png'),(19724,24898,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:850;s:6:\"height\";i:1294;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-16-at-13.45.41.png\";s:8:\"filesize\";i:354629;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19725,24899,'_wp_attached_file','2020/11/Screenshot-2020-11-16-at-13.47.56.png'),(19726,24899,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:996;s:6:\"height\";i:876;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-16-at-13.47.56.png\";s:8:\"filesize\";i:684857;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19727,24900,'_wp_attached_file','2020/11/Screenshot-2020-11-16-at-13.49.35.png'),(19728,24900,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1224;s:6:\"height\";i:716;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-16-at-13.49.35.png\";s:8:\"filesize\";i:65286;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19729,24901,'_wp_attached_file','2020/11/Screenshot-2020-11-16-at-13.51.37.png'),(19730,24901,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1220;s:6:\"height\";i:1674;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-16-at-13.51.37.png\";s:8:\"filesize\";i:1309550;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19731,24903,'_wp_attached_file','2020/11/shutterstock_128700983.jpg'),(19732,24903,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:964;s:4:\"file\";s:34:\"2020/11/shutterstock_128700983.jpg\";s:8:\"filesize\";i:118198;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(19733,25092,'_edit_last','17'),(19734,25092,'_wp_page_template','default'),(19735,25092,'slide_template','default'),(19736,25092,'rs_page_bg_color','#ffffff'),(19737,25092,'_wpb_vc_js_status','false'),(19738,25092,'_wc_memberships_force_public','no'),(19739,25092,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19740,25092,'_dt_sidebar_position','right'),(19741,25092,'_dt_sidebar_widgetarea_id','sidebar_1'),(19742,25092,'_dt_sidebar_hide_on_mobile','0'),(19743,25092,'_dt_footer_show','1'),(19744,25092,'_dt_footer_widgetarea_id','sidebar_2'),(19745,25092,'_dt_footer_hide_on_mobile','0'),(19746,25092,'_dt_header_title','enabled'),(19747,25092,'_dt_header_background','normal'),(19748,25092,'_dt_header_background_below_slideshow','disabled'),(19749,25092,'_dt_header_transparent_bg_color_scheme','light'),(19750,25092,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19751,25092,'_dt_header_transparent_top_bar_bg_opacity','25'),(19752,25092,'_dt_header_transparent_bg_color','#000000'),(19753,25092,'_dt_header_transparent_bg_opacity','50'),(19754,25092,'_dt_header_disabled_background','normal'),(19755,25092,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19756,25092,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19757,25092,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19758,25092,'_dt_header_disabled_transparent_bg_color','#000000'),(19759,25092,'_dt_header_disabled_transparent_bg_opacity','50'),(19760,25092,'_dt_page_overrides_top_margin',''),(19761,25092,'_dt_page_overrides_right_margin',''),(19762,25092,'_dt_page_overrides_bottom_margin',''),(19763,25092,'_dt_page_overrides_left_margin',''),(19764,25092,'_dt_mobile_page_padding_top',''),(19765,25092,'_dt_mobile_page_padding_right',''),(19766,25092,'_dt_mobile_page_padding_bottom',''),(19767,25092,'_dt_mobile_page_padding_left',''),(19768,25092,'_dt_post_options_back_button',''),(19769,25092,'_dt_post_options_hide_thumbnail','0'),(19770,25092,'_dt_post_options_related_mode','same'),(19771,25092,'_dt_post_options_preview','normal'),(19772,25092,'_dt_microsite_primary_menu',''),(19773,25092,'_dt_microsite_split_left_menu',''),(19774,25092,'_dt_microsite_split_right_menu',''),(19775,25092,'_dt_microsite_mobile_menu',''),(19776,25092,'_thumbnail_id','25128'),(19777,25092,'iawp_total_views','186'),(19778,25095,'_wp_attached_file','2020/11/max-okhrimenko-L3FHnmrPyCI-unsplash-scaled-1.jpg'),(19779,25095,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2020/11/max-okhrimenko-L3FHnmrPyCI-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:662455;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19780,25096,'_wp_attached_file','2020/11/Screenshot-2020-11-30-at-09.38.00.png'),(19781,25096,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1112;s:6:\"height\";i:1396;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-30-at-09.38.00.png\";s:8:\"filesize\";i:1666483;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19782,25097,'_wp_attached_file','2020/11/Screenshot-2020-11-30-at-11.09.03.png'),(19783,25097,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:472;s:6:\"height\";i:474;s:4:\"file\";s:45:\"2020/11/Screenshot-2020-11-30-at-11.09.03.png\";s:8:\"filesize\";i:299393;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(19784,25121,'_wp_attached_file','2020/12/shutterstock_1800824056-scaled-1.jpg'),(19785,25121,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/12/shutterstock_1800824056-scaled-1.jpg\";s:8:\"filesize\";i:702784;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(19786,25466,'_edit_last','17'),(19787,25466,'_thumbnail_id','24188'),(19788,25466,'_wp_page_template','default'),(19789,25466,'slide_template','default'),(19790,25466,'rs_page_bg_color','#ffffff'),(19791,25466,'_wpb_vc_js_status','false'),(19792,25466,'_wc_memberships_force_public','no'),(19793,25466,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19794,25466,'_dt_sidebar_position','right'),(19795,25466,'_dt_sidebar_widgetarea_id','sidebar_1'),(19796,25466,'_dt_sidebar_hide_on_mobile','0'),(19797,25466,'_dt_footer_show','1'),(19798,25466,'_dt_footer_widgetarea_id','sidebar_2'),(19799,25466,'_dt_footer_hide_on_mobile','0'),(19800,25466,'_dt_header_title','enabled'),(19801,25466,'_dt_header_background','normal'),(19802,25466,'_dt_header_background_below_slideshow','disabled'),(19803,25466,'_dt_header_transparent_bg_color_scheme','light'),(19804,25466,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19805,25466,'_dt_header_transparent_top_bar_bg_opacity','25'),(19806,25466,'_dt_header_transparent_bg_color','#000000'),(19807,25466,'_dt_header_transparent_bg_opacity','50'),(19808,25466,'_dt_header_disabled_background','normal'),(19809,25466,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19810,25466,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19811,25466,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19812,25466,'_dt_header_disabled_transparent_bg_color','#000000'),(19813,25466,'_dt_header_disabled_transparent_bg_opacity','50'),(19814,25466,'_dt_page_overrides_top_margin',''),(19815,25466,'_dt_page_overrides_right_margin',''),(19816,25466,'_dt_page_overrides_bottom_margin',''),(19817,25466,'_dt_page_overrides_left_margin',''),(19818,25466,'_dt_mobile_page_padding_top',''),(19819,25466,'_dt_mobile_page_padding_right',''),(19820,25466,'_dt_mobile_page_padding_bottom',''),(19821,25466,'_dt_mobile_page_padding_left',''),(19822,25466,'_dt_post_options_back_button',''),(19823,25466,'_dt_post_options_hide_thumbnail','0'),(19824,25466,'_dt_post_options_related_mode','same'),(19825,25466,'_dt_post_options_preview','normal'),(19826,25466,'_dt_microsite_primary_menu',''),(19827,25466,'_dt_microsite_split_left_menu',''),(19828,25466,'_dt_microsite_split_right_menu',''),(19829,25466,'_dt_microsite_mobile_menu',''),(19830,25466,'iawp_total_views','141'),(19831,27321,'_edit_last','17'),(19832,27321,'_wp_page_template','default'),(19833,27321,'_wpb_vc_js_status','false'),(19834,27321,'_wc_memberships_force_public','no'),(19835,27321,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19836,27321,'_dt_sidebar_position','right'),(19837,27321,'_dt_sidebar_widgetarea_id','sidebar_1'),(19838,27321,'_dt_sidebar_hide_on_mobile','0'),(19839,27321,'_dt_footer_show','1'),(19840,27321,'_dt_footer_widgetarea_id','sidebar_2'),(19841,27321,'_dt_footer_hide_on_mobile','0'),(19842,27321,'_dt_header_title','enabled'),(19843,27321,'_dt_header_background','normal'),(19844,27321,'_dt_header_background_below_slideshow','disabled'),(19845,27321,'_dt_header_transparent_bg_color_scheme','light'),(19846,27321,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19847,27321,'_dt_header_transparent_top_bar_bg_opacity','25'),(19848,27321,'_dt_header_transparent_bg_color','#000000'),(19849,27321,'_dt_header_transparent_bg_opacity','50'),(19850,27321,'_dt_header_disabled_background','normal'),(19851,27321,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19852,27321,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19853,27321,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19854,27321,'_dt_header_disabled_transparent_bg_color','#000000'),(19855,27321,'_dt_header_disabled_transparent_bg_opacity','50'),(19856,27321,'_dt_page_overrides_top_margin',''),(19857,27321,'_dt_page_overrides_right_margin',''),(19858,27321,'_dt_page_overrides_bottom_margin',''),(19859,27321,'_dt_page_overrides_left_margin',''),(19860,27321,'_dt_mobile_page_padding_top',''),(19861,27321,'_dt_mobile_page_padding_right',''),(19862,27321,'_dt_mobile_page_padding_bottom',''),(19863,27321,'_dt_mobile_page_padding_left',''),(19864,27321,'_dt_post_options_back_button',''),(19865,27321,'_dt_post_options_hide_thumbnail','0'),(19866,27321,'_dt_post_options_related_mode','same'),(19867,27321,'_dt_post_options_preview','normal'),(19868,27321,'_dt_microsite_primary_menu',''),(19869,27321,'_dt_microsite_split_left_menu',''),(19870,27321,'_dt_microsite_split_right_menu',''),(19871,27321,'_dt_microsite_mobile_menu',''),(19872,27321,'_thumbnail_id','27335'),(19873,27321,'iawp_total_views','40'),(19874,25961,'_dt_header_disabled_transparent_bg_color','#000000'),(19875,25961,'_dt_header_disabled_transparent_bg_opacity','50'),(19876,25961,'_dt_page_overrides_top_margin',''),(19877,25961,'_dt_page_overrides_right_margin',''),(19878,25961,'_dt_page_overrides_bottom_margin',''),(19879,25961,'_dt_page_overrides_left_margin',''),(19880,25961,'_dt_mobile_page_padding_top',''),(19881,25961,'_dt_mobile_page_padding_right',''),(19882,25961,'_dt_mobile_page_padding_bottom',''),(19883,25961,'_dt_mobile_page_padding_left',''),(19884,25961,'_dt_post_options_back_button',''),(19885,25961,'_dt_post_options_hide_thumbnail','0'),(19886,25961,'_dt_post_options_related_mode','same'),(19887,25961,'_dt_post_options_preview','normal'),(19888,25961,'_dt_microsite_primary_menu',''),(19889,25961,'_dt_microsite_split_left_menu',''),(19890,25961,'_dt_microsite_split_right_menu',''),(19891,25961,'_dt_microsite_mobile_menu',''),(19892,25961,'_wp_page_template','default'),(19893,25961,'_wpb_vc_js_status','false'),(19894,25961,'_wc_memberships_force_public','no'),(19895,25961,'_wc_memberships_use_custom_post_content_restricted_message','no'),(19896,25961,'_dt_sidebar_position','right'),(19897,25961,'_dt_sidebar_widgetarea_id','sidebar_1'),(19898,25961,'_dt_sidebar_hide_on_mobile','0'),(19899,25961,'_dt_footer_show','1'),(19900,25961,'_dt_footer_widgetarea_id','sidebar_2'),(19901,25961,'_dt_footer_hide_on_mobile','0'),(19902,25961,'_dt_header_title','enabled'),(19903,25961,'_dt_header_background','normal'),(19904,25961,'_dt_header_background_below_slideshow','disabled'),(19905,25961,'_dt_header_transparent_bg_color_scheme','light'),(19906,25961,'_dt_header_transparent_top_bar_bg_color','#ffffff'),(19907,25961,'_dt_header_transparent_top_bar_bg_opacity','25'),(19908,25961,'_dt_header_transparent_bg_color','#000000'),(19909,25961,'_dt_header_transparent_bg_opacity','50'),(19910,25961,'_dt_header_disabled_background','normal'),(19911,25961,'_dt_header_disabled_transparent_bg_color_scheme','light'),(19912,25961,'_dt_header_disabled_transparent_top_bar_bg_color','#ffffff'),(19913,25961,'_dt_header_disabled_transparent_top_bar_bg_opacity','25'),(19914,25961,'_edit_last','2'),(19915,25961,'_thumbnail_id','25974'),(20120,36414,'_oembed_075b3b4e43d5199af30c4a34b4daba73','<iframe title=\"Calf raise with shrug\" width=\"500\" height=\"375\" src=\"https://www.youtube.com/embed/3nJgjbDli5o?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(20121,36414,'_oembed_time_075b3b4e43d5199af30c4a34b4daba73','1721123824'),(20122,36414,'_oembed_dc84aa5290d2fb6efdd89892575e7533','<iframe title=\"Flexed hip Ab:Abd as extended hip rotator\" width=\"500\" height=\"375\" src=\"https://www.youtube.com/embed/vMyE2_RRoBc?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(20123,36414,'_oembed_time_dc84aa5290d2fb6efdd89892575e7533','1721123824'),(20124,37635,'_wp_attached_file','2018/01/96a40932-e0c0-42a0-9437-d6186e878608-1.jpg'),(20125,37635,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:50:\"2018/01/96a40932-e0c0-42a0-9437-d6186e878608-1.jpg\";s:8:\"filesize\";i:43036;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20126,37636,'_wp_attached_file','2018/01/e488fdf8-5606-486f-b0af-66ef8325a023-1.jpg'),(20127,37636,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:1600;s:4:\"file\";s:50:\"2018/01/e488fdf8-5606-486f-b0af-66ef8325a023-1.jpg\";s:8:\"filesize\";i:129988;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20128,37640,'_wp_attached_file','2018/01/IMG_8328-1.jpeg'),(20129,37640,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1855;s:6:\"height\";i:1284;s:4:\"file\";s:23:\"2018/01/IMG_8328-1.jpeg\";s:8:\"filesize\";i:1823201;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20130,37641,'_wp_attached_file','2018/01/IMG_8327-1.jpeg'),(20131,37641,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:694;s:6:\"height\";i:1284;s:4:\"file\";s:23:\"2018/01/IMG_8327-1.jpeg\";s:8:\"filesize\";i:835765;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20132,37981,'_wp_attached_file','2018/01/IMG_0920-1.jpg'),(20133,37981,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1440;s:4:\"file\";s:22:\"2018/01/IMG_0920-1.jpg\";s:8:\"filesize\";i:245319;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20134,37989,'_wp_attached_file','2018/01/Screenshot-2024-03-12-at-09.21.42-1.png'),(20135,37989,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:524;s:4:\"file\";s:47:\"2018/01/Screenshot-2024-03-12-at-09.21.42-1.png\";s:8:\"filesize\";i:407819;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20136,37990,'_wp_attached_file','2018/01/JessHairFix-scaled-1.jpg'),(20137,37990,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:32:\"2018/01/JessHairFix-scaled-1.jpg\";s:8:\"filesize\";i:533327;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20138,37997,'_wp_attached_file','2024/03/FINDING-YOUR-ELEMENT-WORKBOOK-1.pdf'),(20139,37997,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:39:\"FINDING-YOUR-ELEMENT-WORKBOOK-1-pdf.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:1820;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:307802;}s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"FINDING-YOUR-ELEMENT-WORKBOOK-1-pdf-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132690;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"FINDING-YOUR-ELEMENT-WORKBOOK-1-pdf-1200x1600.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219990;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"FINDING-YOUR-ELEMENT-WORKBOOK-1-pdf-400x533.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:533;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34463;}}s:8:\"filesize\";i:4788894;}'),(20140,37998,'_wp_attached_file','2024/03/IBA-Business-Group-Workbook-1.pdf'),(20141,37998,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:37:\"IBA-Business-Group-Workbook-1-pdf.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:1387;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118064;}s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"IBA-Business-Group-Workbook-1-pdf-900x1300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98005;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"IBA-Business-Group-Workbook-1-pdf-400x578.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28169;}}s:8:\"filesize\";i:1203621;}'),(20142,38011,'_wp_attached_file','2024/03/2d24i6hf-1.png'),(20143,38011,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:22:\"2024/03/2d24i6hf-1.png\";s:8:\"filesize\";i:666761;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20144,38017,'_wp_attached_file','2024/03/FFG_Wordmark_Black_RGB-01-e1710432922797-1.png'),(20145,38017,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:70;s:4:\"file\";s:54:\"2024/03/FFG_Wordmark_Black_RGB-01-e1710432922797-1.png\";s:8:\"filesize\";i:3368;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20146,38017,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_Black_RGB-01.png\";}s:18:\"full-1710432922797\";a:3:{s:5:\"width\";i:500;s:6:\"height\";i:117;s:4:\"file\";s:44:\"FFG_Wordmark_Black_RGB-01-e1710432746919.png\";}}'),(20147,38017,'_wp_page_template','default'),(20148,38017,'dt-video-url',''),(20149,38017,'dt-img-link',''),(20150,38017,'dt-img-hide-title','0'),(20151,38023,'_wp_attached_file','2024/03/FFG_Wordmark_White_RGB-01-e1710433635803-1.png'),(20152,38023,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:70;s:4:\"file\";s:54:\"2024/03/FFG_Wordmark_White_RGB-01-e1710433635803-1.png\";s:8:\"filesize\";i:3054;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20153,38023,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_White_RGB-01.png\";}}'),(20154,38023,'dt-img-hide-title','0'),(20155,38037,'_wp_attached_file','2018/01/MIRREN-KWP-WALKER-2-scaled-1.jpg'),(20156,38037,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1685;s:4:\"file\";s:40:\"2018/01/MIRREN-KWP-WALKER-2-scaled-1.jpg\";s:8:\"filesize\";i:811685;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 6D Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1570644048\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20157,38038,'_wp_attached_file','2024/03/Personal-trainer-teaching-class-900x600-1-1.webp'),(20158,38038,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:56:\"2024/03/Personal-trainer-teaching-class-900x600-1-1.webp\";s:8:\"filesize\";i:31426;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20159,38136,'_wp_attached_file','2024/03/FF_biomechanics-logo-1-2.png'),(20160,38136,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:307;s:4:\"file\";s:36:\"2024/03/FF_biomechanics-logo-1-2.png\";s:8:\"filesize\";i:63154;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20161,38138,'_wp_attached_file','2024/03/FF_biomechanics-logo-1-1-1.png'),(20162,38138,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:307;s:4:\"file\";s:38:\"2024/03/FF_biomechanics-logo-1-1-1.png\";s:8:\"filesize\";i:63154;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20163,38316,'_wp_attached_file','2024/04/core-training-1.webp'),(20164,38316,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:28:\"2024/04/core-training-1.webp\";s:8:\"filesize\";i:30556;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20165,38319,'_wp_attached_file','2024/04/coaching-fitness-online-1.webp'),(20166,38319,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:38:\"2024/04/coaching-fitness-online-1.webp\";s:8:\"filesize\";i:27798;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20167,38321,'_wp_attached_file','2024/04/building-your-gitness-business-1.webp'),(20168,38321,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:45:\"2024/04/building-your-gitness-business-1.webp\";s:8:\"filesize\";i:33796;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20169,38323,'_wp_attached_file','2024/04/behaviour-change-coaching-1.webp'),(20170,38323,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:40:\"2024/04/behaviour-change-coaching-1.webp\";s:8:\"filesize\";i:38170;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20171,38324,'_wp_attached_file','2024/04/FutureFitRebrand-Images-Gym-OnlineRes-169-900x600-1-1.webp'),(20172,38324,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:66:\"2024/04/FutureFitRebrand-Images-Gym-OnlineRes-169-900x600-1-1.webp\";s:8:\"filesize\";i:29084;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20173,38343,'_wp_attached_file','2024/04/FutureFitRebrand-Images-LV3PT-38-900x600-1-1.webp'),(20174,38343,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:57:\"2024/04/FutureFitRebrand-Images-LV3PT-38-900x600-1-1.webp\";s:8:\"filesize\";i:24914;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20175,38344,'_wp_attached_file','2024/04/2-Overview-1200x675-1-1.webp'),(20176,38344,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:36:\"2024/04/2-Overview-1200x675-1-1.webp\";s:8:\"filesize\";i:50178;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20177,38345,'_wp_attached_file','2024/04/2-Overview-1200x675-2-1.webp'),(20178,38345,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:36:\"2024/04/2-Overview-1200x675-2-1.webp\";s:8:\"filesize\";i:50178;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20179,38347,'_wp_attached_file','2024/04/Testimonial-2-Pilates-900x600-1-1.webp'),(20180,38347,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:46:\"2024/04/Testimonial-2-Pilates-900x600-1-1.webp\";s:8:\"filesize\";i:21380;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20181,38348,'_wp_attached_file','2024/04/shutterstock_309156773-900x600-1-1.webp'),(20182,38348,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:47:\"2024/04/shutterstock_309156773-900x600-1-1.webp\";s:8:\"filesize\";i:42104;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20183,38352,'_wp_attached_file','2024/04/LC_12-900x600-1-1.webp'),(20184,38352,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2024/04/LC_12-900x600-1-1.webp\";s:8:\"filesize\";i:42164;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20185,38354,'_wp_attached_file','2024/04/Personal-trainer-teaching-class-900x600-1-1.webp'),(20186,38354,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:56:\"2024/04/Personal-trainer-teaching-class-900x600-1-1.webp\";s:8:\"filesize\";i:31426;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20187,38356,'_wp_attached_file','2024/04/Gym-Instructor-17-900x600-1-1.webp'),(20188,38356,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:42:\"2024/04/Gym-Instructor-17-900x600-1-1.webp\";s:8:\"filesize\";i:52510;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20189,38366,'_wp_attached_file','2024/04/Qualifications-2-900x600-1-1.webp'),(20190,38366,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2024/04/Qualifications-2-900x600-1-1.webp\";s:8:\"filesize\";i:22888;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20191,38369,'_wp_attached_file','2024/04/9001-RGB-White-1.png'),(20192,38369,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1890;s:6:\"height\";i:1890;s:4:\"file\";s:28:\"2024/04/9001-RGB-White-1.png\";s:8:\"filesize\";i:309506;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20193,38585,'_wp_attached_file','2018/01/Alanna-63-scaled-1.jpg'),(20194,38585,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:30:\"2018/01/Alanna-63-scaled-1.jpg\";s:8:\"filesize\";i:909512;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:9:\"Kaye Ford\";s:6:\"camera\";s:12:\"Canon EOS R6\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1643632499\";s:9:\"copyright\";s:12:\"FORDTOGRAPHY\";s:12:\"focal_length\";s:2:\"42\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20195,38586,'_wp_attached_file','2018/01/Screenshot-2024-05-31-at-08.36.04-1.png'),(20196,38586,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:470;s:6:\"height\";i:976;s:4:\"file\";s:47:\"2018/01/Screenshot-2024-05-31-at-08.36.04-1.png\";s:8:\"filesize\";i:396823;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20197,37375,'_edit_lock','1738438168:3'),(20198,30977,'_wp_attached_file','2022/01/WEBSITE-PDF-GTBM-LINK-.pdf'),(20199,30977,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:29:\"WEBSITE-PDF-GTBM-LINK-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91308;}s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"WEBSITE-PDF-GTBM-LINK-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44766;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"WEBSITE-PDF-GTBM-LINK-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64925;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"WEBSITE-PDF-GTBM-LINK-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15124;}}s:8:\"filesize\";i:221805;}'),(20200,30991,'_wp_attached_file','2022/01/Screenshot-2022-01-12-at-10.42.13.png'),(20201,30991,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:236;s:6:\"height\";i:164;s:4:\"file\";s:45:\"2022/01/Screenshot-2022-01-12-at-10.42.13.png\";s:8:\"filesize\";i:34937;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20202,30993,'_wp_attached_file','2022/01/FFT_logo_blue.png'),(20203,30993,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2564;s:6:\"height\";i:950;s:4:\"file\";s:25:\"2022/01/FFT_logo_blue.png\";s:8:\"filesize\";i:88362;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20204,31064,'_wp_attached_file','2022/01/chris-montgomery-smgTvepind4-unsplash-scaled-1.jpg'),(20205,31064,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:58:\"2022/01/chris-montgomery-smgTvepind4-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:614086;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20206,31065,'_wp_attached_file','2022/01/neonbrand-1-aA2Fadydc-unsplash-scaled-1.jpg'),(20207,31065,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:51:\"2022/01/neonbrand-1-aA2Fadydc-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:413229;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20208,31065,'_wp_attachment_image_alt','Online vs Face to Face workshop - biomechanics education'),(20209,31065,'dt-img-hide-title','0'),(20210,31066,'_wp_attached_file','2022/01/sam-balye-w1FwDvIreZU-unsplash-scaled-1.jpg'),(20211,31066,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1807;s:4:\"file\";s:51:\"2022/01/sam-balye-w1FwDvIreZU-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:556372;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20212,31067,'_wp_attached_file','2022/01/windows-v94mlgvsza4-unsplash-scaled-1.jpg'),(20213,31067,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1716;s:6:\"height\";i:2560;s:4:\"file\";s:49:\"2022/01/windows-v94mlgvsza4-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:623979;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20214,31068,'_wp_attached_file','2022/01/gabin-vallet-J154nEkpzlQ-unsplash-scaled-1.jpg'),(20215,31068,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:54:\"2022/01/gabin-vallet-J154nEkpzlQ-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:854586;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20216,31068,'_wp_attachment_image_alt','gabin-vallet - Online vs Face to Face- biomechanics education'),(20217,31068,'dt-img-hide-title','0'),(20218,31069,'_wp_attached_file','2022/01/jonathan-borba-R0y_bEUjiOM-unsplash-scaled-1.jpg'),(20219,31069,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:56:\"2022/01/jonathan-borba-R0y_bEUjiOM-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:444166;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20220,31069,'_wp_attachment_image_alt','jonathan-borba - online vs face to face workshop - biomechanics education'),(20221,31069,'dt-img-hide-title','0'),(20222,31070,'_wp_attached_file','2022/01/victor-freitas-nlZTjUZX2qo-unsplash-scaled-1.jpg'),(20223,31070,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:56:\"2022/01/victor-freitas-nlZTjUZX2qo-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:810583;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20224,31071,'_wp_attached_file','2022/01/windows-v94mlgvsza4-unsplash-1-scaled-1.jpg'),(20225,31071,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1716;s:4:\"file\";s:51:\"2022/01/windows-v94mlgvsza4-unsplash-1-scaled-1.jpg\";s:8:\"filesize\";i:621971;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20226,31083,'_wp_attached_file','2022/01/Screenshot-2022-01-19-at-08.56.42.png'),(20227,31083,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2090;s:6:\"height\";i:762;s:4:\"file\";s:45:\"2022/01/Screenshot-2022-01-19-at-08.56.42.png\";s:8:\"filesize\";i:2432274;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20228,31185,'_wp_attached_file','2017/04/Screenshot-2022-01-26-at-11.34.54.png'),(20229,31185,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2062;s:6:\"height\";i:1456;s:4:\"file\";s:45:\"2017/04/Screenshot-2022-01-26-at-11.34.54.png\";s:8:\"filesize\";i:4125096;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20230,31185,'_wp_attachment_image_alt','[Case Study] Elite Lifter Laura Hewitt - biomechanics education'),(20231,31185,'dt-img-hide-title','0'),(20232,31259,'_wp_attached_file','2022/02/Screenshot-2022-02-02-at-11.32.03.png'),(20233,31259,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2450;s:6:\"height\";i:1186;s:4:\"file\";s:45:\"2022/02/Screenshot-2022-02-02-at-11.32.03.png\";s:8:\"filesize\";i:561469;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20234,31260,'_wp_attached_file','2022/02/shutterstock_1798734148-scaled-1.jpg'),(20235,31260,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1648;s:4:\"file\";s:44:\"2022/02/shutterstock_1798734148-scaled-1.jpg\";s:8:\"filesize\";i:463008;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:76:\"Copyright (c) 2020 Prostock-studio/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:64:\"Fatigue,After,Active,Hard,Training.,Tired,Guy,With,Dumbbells,And\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,hands,strength,slim,blog,fit,fatigue,muscles,exercises,\";}}}'),(20236,31260,'_wp_attachment_image_alt','Understanding Nerves - young man relaxing on the sofa'),(20237,31260,'dt-img-hide-title','0'),(20238,31261,'_wp_attached_file','2022/02/shutterstock_423021502-scaled-1.jpg');
INSERT INTO `6m7_postmeta` VALUES (20239,31261,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:43:\"2022/02/shutterstock_423021502-scaled-1.jpg\";s:8:\"filesize\";i:252352;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:74:\"Copyright (c) 2016 Photology1971/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:55:\"Single,Athletic,Woman,With,Blond,Hair,In,Blue,Outfit,On\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"studio,woman,young,active,back,training,stretching,muscles,midai\";}}}'),(20240,31261,'_wp_attachment_image_alt','Understanding Nerves - young woman exercising'),(20241,31261,'dt-img-hide-title','0'),(20242,31262,'_wp_attached_file','2022/02/IMG_1564-scaled-1.jpg'),(20243,31262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2022/02/IMG_1564-scaled-1.jpg\";s:8:\"filesize\";i:404889;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20244,31262,'_wp_attachment_image_alt','Understanding Nerves - Rachel Frances Thomson'),(20245,31262,'dt-img-hide-title','0'),(20246,31325,'_wp_attached_file','2022/02/WEBSITE-PDF-TENNIS-LINKS-.pdf'),(20247,31325,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:32:\"WEBSITE-PDF-TENNIS-LINKS-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88973;}s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"WEBSITE-PDF-TENNIS-LINKS-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43731;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"WEBSITE-PDF-TENNIS-LINKS-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63126;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"WEBSITE-PDF-TENNIS-LINKS-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14733;}}s:8:\"filesize\";i:221249;}'),(20248,31386,'_wp_attached_file','2022/02/foyht.png'),(20249,31386,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:363;s:6:\"height\";i:532;s:4:\"file\";s:17:\"2022/02/foyht.png\";s:8:\"filesize\";i:18034;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20250,31422,'_wp_attached_file','2022/02/IMG_4529.jpg'),(20251,31422,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1127;s:6:\"height\";i:1124;s:4:\"file\";s:20:\"2022/02/IMG_4529.jpg\";s:8:\"filesize\";i:137927;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1644519393\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20252,31422,'_wp_attachment_image_alt','Neuromuscular Exercise - biomechanics education'),(20253,31422,'dt-img-hide-title','0'),(20254,31424,'_wp_attached_file','2022/02/IMG_4672.jpg'),(20255,31424,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1284;s:6:\"height\";i:1279;s:4:\"file\";s:20:\"2022/02/IMG_4672.jpg\";s:8:\"filesize\";i:277275;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:10:\"1644847083\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20256,31424,'_wp_attachment_image_alt','Neuromuscular Exercise - one leg'),(20257,31424,'dt-img-hide-title','0'),(20258,31425,'_wp_attached_file','2022/02/IMG_4673.jpg'),(20259,31425,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1284;s:6:\"height\";i:1284;s:4:\"file\";s:20:\"2022/02/IMG_4673.jpg\";s:8:\"filesize\";i:269725;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:10:\"1644847090\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20260,31426,'_wp_attached_file','2022/02/IMG_4674.jpg'),(20261,31426,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1284;s:6:\"height\";i:1291;s:4:\"file\";s:20:\"2022/02/IMG_4674.jpg\";s:8:\"filesize\";i:270671;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:10:\"1644847097\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20262,31427,'_wp_attached_file','2022/02/IMG_4675.jpg'),(20263,31427,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1283;s:6:\"height\";i:1277;s:4:\"file\";s:20:\"2022/02/IMG_4675.jpg\";s:8:\"filesize\";i:310145;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:10:\"1644847188\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20264,31428,'_wp_attached_file','2022/02/IMG_4103.jpg'),(20265,31428,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1799;s:6:\"height\";i:1284;s:4:\"file\";s:20:\"2022/02/IMG_4103.jpg\";s:8:\"filesize\";i:388082;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:10:\"1643204952\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20266,31429,'_wp_attached_file','2022/02/IMG_4666.jpg'),(20267,31429,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1832;s:6:\"height\";i:974;s:4:\"file\";s:20:\"2022/02/IMG_4666.jpg\";s:8:\"filesize\";i:305858;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:10:\"1644839377\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20268,31430,'_wp_attached_file','2022/02/IMG_4667.jpg'),(20269,31430,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2208;s:6:\"height\";i:1005;s:4:\"file\";s:20:\"2022/02/IMG_4667.jpg\";s:8:\"filesize\";i:378821;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:10:\"1644839404\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20270,31431,'_wp_attached_file','2022/02/IMG_2336.jpeg'),(20271,31431,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2071;s:6:\"height\";i:1212;s:4:\"file\";s:21:\"2022/02/IMG_2336.jpeg\";s:8:\"filesize\";i:555816;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:10:\"1638180787\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20272,31431,'_wp_attachment_image_alt','rachel thomson - exercise biomechanics education'),(20273,31431,'dt-img-hide-title','0'),(20274,31432,'_wp_attached_file','2022/02/IMG_4098.jpg'),(20275,31432,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1509;s:6:\"height\";i:1284;s:4:\"file\";s:20:\"2022/02/IMG_4098.jpg\";s:8:\"filesize\";i:331842;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:10:\"1643204907\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20276,31432,'_wp_attachment_image_alt','Neuromuscular Exercise with dog - rachel thomson'),(20277,31432,'dt-img-hide-title','0'),(20278,31433,'_wp_attached_file','2022/02/IMG_4665.jpg'),(20279,31433,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2257;s:6:\"height\";i:766;s:4:\"file\";s:20:\"2022/02/IMG_4665.jpg\";s:8:\"filesize\";i:326973;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:10:\"1644839368\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20280,31433,'_wp_attachment_image_alt','neuromuscular exercise - rachel thomson'),(20281,31433,'dt-img-hide-title','0'),(20282,31478,'_wp_attached_file','2022/02/WEBSITE-PDF-Understanding-Nerves-LINKS-.pdf'),(20283,31478,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:46:\"WEBSITE-PDF-Understanding-Nerves-LINKS-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91334;}s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"WEBSITE-PDF-Understanding-Nerves-LINKS-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42220;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"WEBSITE-PDF-Understanding-Nerves-LINKS-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61584;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"WEBSITE-PDF-Understanding-Nerves-LINKS-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14192;}}s:8:\"filesize\";i:221366;}'),(20284,31479,'_wp_attached_file','2022/02/Understanding-Nerves-with-Biomechanics-Education.pdf'),(20285,31479,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:56:\"Understanding-Nerves-with-Biomechanics-Education-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105983;}s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Understanding-Nerves-with-Biomechanics-Education-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46545;}s:5:\"large\";a:5:{s:4:\"file\";s:65:\"Understanding-Nerves-with-Biomechanics-Education-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72623;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Understanding-Nerves-with-Biomechanics-Education-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14782;}}s:8:\"filesize\";i:73410263;}'),(20286,31499,'_wp_attached_file','2022/02/Screenshot-2022-02-18-at-14.56.58.png'),(20287,31499,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1832;s:6:\"height\";i:1218;s:4:\"file\";s:45:\"2022/02/Screenshot-2022-02-18-at-14.56.58.png\";s:8:\"filesize\";i:3105204;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20288,31500,'_wp_attached_file','2022/02/shutterstock_660966850-scaled-1.jpg'),(20289,31500,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:43:\"2022/02/shutterstock_660966850-scaled-1.jpg\";s:8:\"filesize\";i:330565;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:75:\"Copyright (c) 2017 wavebreakmedia/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:65:\"Low,Section,Of,Sportswoman,Suffering,From,Knee,Pain,While,Sitting\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"sportswoman,shadow,human limb,human bone,physical injury,track a\";}}}'),(20290,31585,'_wp_attached_file','2022/02/WEBSITE-PDF-DEAD-LINKS-.pdf'),(20291,31585,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:30:\"WEBSITE-PDF-DEAD-LINKS-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92521;}s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"WEBSITE-PDF-DEAD-LINKS-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42864;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"WEBSITE-PDF-DEAD-LINKS-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62731;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"WEBSITE-PDF-DEAD-LINKS-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14382;}}s:8:\"filesize\";i:222256;}'),(20292,31586,'_wp_attached_file','2022/02/Deadlift-Analysis-Made-Simple-.pdf'),(20293,31586,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:37:\"Deadlift-Analysis-Made-Simple-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96596;}s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Deadlift-Analysis-Made-Simple-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42299;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"Deadlift-Analysis-Made-Simple-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66142;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Deadlift-Analysis-Made-Simple-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13654;}}s:8:\"filesize\";i:40079807;}'),(20294,31612,'_wp_attached_file','2018/01/Screenshot-2022-02-28-at-12.34.48.png'),(20295,31612,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:928;s:6:\"height\";i:926;s:4:\"file\";s:45:\"2018/01/Screenshot-2022-02-28-at-12.34.48.png\";s:8:\"filesize\";i:863433;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20296,31612,'_wp_attachment_image_alt','Mark Laws - IBA discovery day'),(20297,31612,'dt-img-hide-title','0'),(20298,31613,'_wp_attached_file','2018/01/Screenshot-2022-02-28-at-12.33.59.png'),(20299,31613,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:346;s:6:\"height\";i:476;s:4:\"file\";s:45:\"2018/01/Screenshot-2022-02-28-at-12.33.59.png\";s:8:\"filesize\";i:214855;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20300,31613,'_wp_attachment_image_alt','Mark Laws - biomechanics education'),(20301,31613,'dt-img-hide-title','0'),(20302,31614,'_wp_attached_file','2018/01/IMG_5329-scaled-1.jpeg'),(20303,31614,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2011;s:4:\"file\";s:30:\"2018/01/IMG_5329-scaled-1.jpeg\";s:8:\"filesize\";i:584245;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1575992174\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20304,31614,'_wp_attachment_image_alt','IBA Discovery Day Workshops - biomechanics education'),(20305,31614,'dt-img-hide-title','0'),(20306,31615,'_wp_attached_file','2018/01/JoshMullin.jpg'),(20307,31615,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:660;s:6:\"height\";i:199;s:4:\"file\";s:22:\"2018/01/JoshMullin.jpg\";s:8:\"filesize\";i:13261;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20308,31651,'_wp_attached_file','2022/03/WEBSITE-PDF-foot-LINKS-.pdf'),(20309,31651,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:30:\"WEBSITE-PDF-foot-LINKS-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90722;}s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"WEBSITE-PDF-foot-LINKS-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41904;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"WEBSITE-PDF-foot-LINKS-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61345;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"WEBSITE-PDF-foot-LINKS-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14110;}}s:8:\"filesize\";i:220507;}'),(20310,31652,'_wp_attached_file','2022/03/WEBSITE-PDF-foot-LINKS-1-1.pdf'),(20311,31652,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:34:\"WEBSITE-PDF-foot-LINKS-1-1-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90722;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"WEBSITE-PDF-foot-LINKS-1-1-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41904;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"WEBSITE-PDF-foot-LINKS-1-1-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61345;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"WEBSITE-PDF-foot-LINKS-1-1-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14110;}}s:8:\"filesize\";i:220507;}'),(20312,31735,'_wp_attached_file','2022/03/brett-jordan-mgXsJEKse1A-unsplash-scaled-1.jpg'),(20313,31735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:54:\"2022/03/brett-jordan-mgXsJEKse1A-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:210641;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20314,31747,'_wp_attached_file','2022/03/priscilla-du-preez-Q7wGvnbuwj0-unsplash-scaled-1.jpg'),(20315,31747,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:60:\"2022/03/priscilla-du-preez-Q7wGvnbuwj0-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:707424;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20316,31747,'_wp_attachment_image_alt','The Power of Words - biomechanics education'),(20317,31747,'dt-img-hide-title','0'),(20318,31748,'_wp_attached_file','2022/03/franco-antonio-giovanella-PVDWaEhSIAg-unsplash-scaled-1.jpg'),(20319,31748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:67:\"2022/03/franco-antonio-giovanella-PVDWaEhSIAg-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:171849;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20320,31749,'_wp_attached_file','2022/03/brett-jordan-Fp4ERdkR5jU-unsplash-scaled-1.jpg'),(20321,31749,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:54:\"2022/03/brett-jordan-Fp4ERdkR5jU-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:293930;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20322,31749,'_wp_attachment_image_alt','brett-jordan - practice makes perfect'),(20323,31749,'dt-img-hide-title','0'),(20324,31877,'_wp_attached_file','2022/03/Portrait_Mike-Stewart-2.png'),(20325,31877,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2512;s:6:\"height\";i:1880;s:4:\"file\";s:35:\"2022/03/Portrait_Mike-Stewart-2.png\";s:8:\"filesize\";i:4349280;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20326,31877,'_wp_attachment_image_alt','Portrait_Mike Stewart - biomechanics education'),(20327,31877,'dt-img-hide-title','0'),(20328,31879,'_wp_attached_file','2022/03/JBE-Rio-3.jpg'),(20329,31879,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2022/03/JBE-Rio-3.jpg\";s:8:\"filesize\";i:118380;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20330,31879,'_wp_attachment_image_alt','JBE Rio 3 - the kaizen project'),(20331,31879,'dt-img-hide-title','0'),(20332,32012,'_wp_attached_file','2022/04/Screenshot-2020-02-19-at-09.09.01.png'),(20333,32012,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:592;s:6:\"height\";i:1174;s:4:\"file\";s:45:\"2022/04/Screenshot-2020-02-19-at-09.09.01.png\";s:8:\"filesize\";i:899052;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20334,32012,'_wp_attachment_image_alt','Rachel France - the kaizen project'),(20335,32012,'dt-img-hide-title','0'),(20336,32179,'_wp_attached_file','2022/04/IMG_8092.jpeg'),(20337,32179,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1479;s:6:\"height\";i:727;s:4:\"file\";s:21:\"2022/04/IMG_8092.jpeg\";s:8:\"filesize\";i:225138;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20338,32179,'_wp_attachment_image_alt','Rachel France - exercising'),(20339,32179,'dt-img-hide-title','0'),(20340,32182,'_wp_attached_file','2022/04/Screenshot-2022-04-20-at-06.54.03.png'),(20341,32182,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1244;s:6:\"height\";i:870;s:4:\"file\";s:45:\"2022/04/Screenshot-2022-04-20-at-06.54.03.png\";s:8:\"filesize\";i:281191;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20342,32182,'_wp_attachment_image_alt','Rachel France - cimspa member profile'),(20343,32182,'dt-img-hide-title','0'),(20344,32475,'_wp_attached_file','2022/05/CIRCLE-OF-CONTROL-.png'),(20345,32475,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1320;s:6:\"height\";i:936;s:4:\"file\";s:30:\"2022/05/CIRCLE-OF-CONTROL-.png\";s:8:\"filesize\";i:116899;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20346,32483,'_wp_attached_file','2022/05/Screenshot-2022-05-19-at-15.55.07.png'),(20347,32483,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1148;s:6:\"height\";i:982;s:4:\"file\";s:45:\"2022/05/Screenshot-2022-05-19-at-15.55.07.png\";s:8:\"filesize\";i:232747;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20348,32556,'_wp_attached_file','2022/05/IMG_1591-1-scaled-1.jpg'),(20349,32556,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:31:\"2022/05/IMG_1591-1-scaled-1.jpg\";s:8:\"filesize\";i:399096;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20350,32556,'_wp_attachment_image_alt','A man lies on an exercise mat, he is wearing a blue top and black shorts, white socks, and white trainers. He has his left knee bent and right leg straight on the floor. Rachel is knelt beside him wearing an orange top and black tracksuit bottoms, and socks. She is gesturing something with her hands and talking to the class.'),(20351,32556,'dt-img-hide-title','0'),(20352,32557,'_wp_attached_file','2022/05/IMG_1595-1.jpg'),(20353,32557,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2388;s:6:\"height\";i:1592;s:4:\"file\";s:22:\"2022/05/IMG_1595-1.jpg\";s:8:\"filesize\";i:176256;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20354,32558,'_wp_attached_file','2022/05/IMG_1597-1.jpg'),(20355,32558,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2388;s:6:\"height\";i:1592;s:4:\"file\";s:22:\"2022/05/IMG_1597-1.jpg\";s:8:\"filesize\";i:136646;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20356,32559,'_wp_attached_file','2022/05/IMG_1597-1-2.jpg'),(20357,32559,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2387;s:6:\"height\";i:1088;s:4:\"file\";s:24:\"2022/05/IMG_1597-1-2.jpg\";s:8:\"filesize\";i:149309;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1653496525\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20358,32560,'_wp_attached_file','2022/05/fullsizeoutput_54c2-1-scaled-1.jpeg'),(20359,32560,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:43:\"2022/05/fullsizeoutput_54c2-1-scaled-1.jpeg\";s:8:\"filesize\";i:345280;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20360,32561,'_wp_attached_file','2022/05/fullsizeoutput_54c2-1-1-scaled-1.jpeg'),(20361,32561,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:45:\"2022/05/fullsizeoutput_54c2-1-1-scaled-1.jpeg\";s:8:\"filesize\";i:287380;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1653497034\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20362,32922,'_wp_attached_file','2018/01/Screenshot-2022-06-30-at-08.14.26.png'),(20363,32922,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:536;s:6:\"height\";i:444;s:4:\"file\";s:45:\"2018/01/Screenshot-2022-06-30-at-08.14.26.png\";s:8:\"filesize\";i:343949;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20364,32973,'_wp_attached_file','2022/07/Event-links-man-2021.pdf'),(20365,32973,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:28:\"Event-links-man-2021-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121981;}s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Event-links-man-2021-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92245;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Event-links-man-2021-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28802;}}s:8:\"filesize\";i:391742;}'),(20366,10763,'_wp_attached_file','2019/01/AN-‘ANTERIOR-TILT-Of-The-Pelvis-IS-NOT-A-DIAGNOSIS.png'),(20367,10763,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:64:\"2019/01/AN-‘ANTERIOR-TILT-Of-The-Pelvis-IS-NOT-A-DIAGNOSIS.png\";s:8:\"filesize\";i:1173171;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20368,10835,'_wp_attached_file','2019/01/Start-With-Why-Simon-Sinek.jpg'),(20369,10835,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1594;s:6:\"height\";i:2400;s:4:\"file\";s:38:\"2019/01/Start-With-Why-Simon-Sinek.jpg\";s:8:\"filesize\";i:174798;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20370,10836,'_wp_attached_file','2019/01/Always-Always-Start-With-Why.png'),(20371,10836,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:40:\"2019/01/Always-Always-Start-With-Why.png\";s:8:\"filesize\";i:1017135;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20372,10836,'_wp_old_slug','always-always-start-with-why'),(20373,10836,'dt-img-hide-title','0'),(20374,10930,'_wp_attached_file','2019/01/Chair-Rebellion-Biomechanics-Education.png'),(20375,10930,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:50:\"2019/01/Chair-Rebellion-Biomechanics-Education.png\";s:8:\"filesize\";i:1126364;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20376,10931,'_wp_attached_file','2019/01/Chair-Rebel-3-Biomechanics-Education.jpg'),(20377,10931,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:720;s:6:\"height\";i:1170;s:4:\"file\";s:48:\"2019/01/Chair-Rebel-3-Biomechanics-Education.jpg\";s:8:\"filesize\";i:109955;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20378,10932,'_wp_attached_file','2019/01/Chair-Rebel-1-Biomechanics-Education-scaled.jpg'),(20379,10932,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:55:\"2019/01/Chair-Rebel-1-Biomechanics-Education-scaled.jpg\";s:8:\"filesize\";i:499557;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 8 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511364851\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.071428571428571\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:40:\"Chair-Rebel-1-Biomechanics-Education.jpg\";}'),(20380,11025,'_wp_attached_file','2019/01/Grit-Vs-Talent.png'),(20381,11025,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:26:\"2019/01/Grit-Vs-Talent.png\";s:8:\"filesize\";i:442086;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20382,11026,'_wp_attached_file','2019/01/THE-GRIT-SCALE-.png'),(20383,11026,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:903;s:6:\"height\";i:1346;s:4:\"file\";s:27:\"2019/01/THE-GRIT-SCALE-.png\";s:8:\"filesize\";i:2281442;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20384,11027,'_wp_attached_file','2019/01/THE-GRIT-SCALE-2.png'),(20385,11027,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:914;s:6:\"height\";i:1326;s:4:\"file\";s:28:\"2019/01/THE-GRIT-SCALE-2.png\";s:8:\"filesize\";i:2251213;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20386,11098,'_wp_attached_file','2018/06/CPD-Points-IconsEndorsed-10PTS1600.jpg'),(20387,11098,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1600;s:4:\"file\";s:46:\"2018/06/CPD-Points-IconsEndorsed-10PTS1600.jpg\";s:8:\"filesize\";i:153512;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20388,11099,'_wp_attached_file','2018/06/STA-LOGO-cpd-16.jpg'),(20389,11099,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:341;s:6:\"height\";i:300;s:4:\"file\";s:27:\"2018/06/STA-LOGO-cpd-16.jpg\";s:8:\"filesize\";i:75335;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20390,11104,'_wp_attached_file','2018/06/Screenshot-2019-02-01-at-12.55.16.png'),(20391,11104,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:740;s:6:\"height\";i:342;s:4:\"file\";s:45:\"2018/06/Screenshot-2019-02-01-at-12.55.16.png\";s:8:\"filesize\";i:230835;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20392,11106,'_wp_attached_file','2018/02/Screenshot-2019-02-01-at-12.58.18.png'),(20393,11106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:674;s:6:\"height\";i:312;s:4:\"file\";s:45:\"2018/02/Screenshot-2019-02-01-at-12.58.18.png\";s:8:\"filesize\";i:181418;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20394,11107,'_wp_attached_file','2018/01/Screenshot-2019-02-01-at-13.44.26.png'),(20395,11107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:398;s:6:\"height\";i:346;s:4:\"file\";s:45:\"2018/01/Screenshot-2019-02-01-at-13.44.26.png\";s:8:\"filesize\";i:184300;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20396,11109,'_wp_attached_file','2019/02/IMG_2009-scaled.jpeg'),(20397,11109,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1923;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2019/02/IMG_2009-scaled.jpeg\";s:8:\"filesize\";i:512793;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone 7\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1532471677\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.87\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.058823529411765\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_2009.jpeg\";}'),(20398,11156,'_wp_attached_file','2019/02/Overhead-Squat-Front-Squat-Why-we-do-them-and-how-to-improve-them.png'),(20399,11156,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:77:\"2019/02/Overhead-Squat-Front-Squat-Why-we-do-them-and-how-to-improve-them.png\";s:8:\"filesize\";i:1345462;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20400,11285,'_wp_attached_file','2019/02/Screenshot-2019-02-06-at-10.41.33.png'),(20401,11285,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:656;s:6:\"height\";i:306;s:4:\"file\";s:45:\"2019/02/Screenshot-2019-02-06-at-10.41.33.png\";s:8:\"filesize\";i:184710;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20402,11408,'_wp_attached_file','2019/02/Periodisation-and-personal-trainers.png'),(20403,11408,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:47:\"2019/02/Periodisation-and-personal-trainers.png\";s:8:\"filesize\";i:931600;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20404,11550,'_wp_attached_file','2019/02/ELCAS-Funding-Ex-Military-Funding-For-Biomechanics-Education.png'),(20405,11550,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:72:\"2019/02/ELCAS-Funding-Ex-Military-Funding-For-Biomechanics-Education.png\";s:8:\"filesize\";i:1412036;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20406,11703,'_wp_attached_file','2019/02/Chris-Kaizen-Project-scaled.jpg'),(20407,11703,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:39:\"2019/02/Chris-Kaizen-Project-scaled.jpg\";s:8:\"filesize\";i:341498;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"Chris-Kaizen-Project.jpg\";}'),(20408,11706,'_wp_attached_file','2019/02/Jonathan-Broom-Edwards-scaled.jpg'),(20409,11706,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:41:\"2019/02/Jonathan-Broom-Edwards-scaled.jpg\";s:8:\"filesize\";i:419626;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551002705\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:26:\"Jonathan-Broom-Edwards.jpg\";}'),(20410,11707,'_wp_attached_file','2019/02/Mike-Grice-Kaizen-Project-2019-scaled.jpg'),(20411,11707,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:49:\"2019/02/Mike-Grice-Kaizen-Project-2019-scaled.jpg\";s:8:\"filesize\";i:379107;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551007657\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:34:\"Mike-Grice-Kaizen-Project-2019.jpg\";}'),(20412,11708,'_wp_attached_file','2019/02/Ben-Coomber-Kaizen-Project-2019-scaled.jpg'),(20413,11708,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:50:\"2019/02/Ben-Coomber-Kaizen-Project-2019-scaled.jpg\";s:8:\"filesize\";i:450490;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1551010576\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"29\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:35:\"Ben-Coomber-Kaizen-Project-2019.jpg\";}'),(20414,11712,'_wp_attached_file','2019/02/Eddie-Hall-Kaizen-Project.jpeg'),(20415,11712,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:540;s:4:\"file\";s:38:\"2019/02/Eddie-Hall-Kaizen-Project.jpeg\";s:8:\"filesize\";i:49518;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20416,11825,'_wp_attached_file','2019/03/Menopause-Personal-Trainers-Biomechanics-Coach.png'),(20417,11825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:58:\"2019/03/Menopause-Personal-Trainers-Biomechanics-Coach.png\";s:8:\"filesize\";i:971793;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20418,12076,'_wp_attached_file','2019/03/Top-7-Squat-Styles-For-Personal-Trainers-Biomechanics-Education.png'),(20419,12076,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:75:\"2019/03/Top-7-Squat-Styles-For-Personal-Trainers-Biomechanics-Education.png\";s:8:\"filesize\";i:852872;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20420,12217,'_wp_attached_file','2019/03/Personal-Trainers-Guide-To-Lunges.png'),(20421,12217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:45:\"2019/03/Personal-Trainers-Guide-To-Lunges.png\";s:8:\"filesize\";i:1007820;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20422,12345,'_wp_attached_file','2019/03/Personal-Trainers-Deadlift-Biomechanics-Coach.png'),(20423,12345,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:57:\"2019/03/Personal-Trainers-Deadlift-Biomechanics-Coach.png\";s:8:\"filesize\";i:1016792;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20424,12346,'_wp_attached_file','2019/03/Single-Leg-Deadlift-Biomechanics-Coach.png'),(20425,12346,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2046;s:6:\"height\";i:1434;s:4:\"file\";s:50:\"2019/03/Single-Leg-Deadlift-Biomechanics-Coach.png\";s:8:\"filesize\";i:2404787;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20426,12347,'_wp_attached_file','2019/03/Stiff-leg-Deadlift-Biomechanics-Coach.png'),(20427,12347,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2040;s:6:\"height\";i:1480;s:4:\"file\";s:49:\"2019/03/Stiff-leg-Deadlift-Biomechanics-Coach.png\";s:8:\"filesize\";i:2134696;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20428,12393,'_wp_attached_file','2019/02/filip-mroz-167499-unsplash-scaled.jpg'),(20429,12393,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1829;s:6:\"height\";i:2560;s:4:\"file\";s:45:\"2019/02/filip-mroz-167499-unsplash-scaled.jpg\";s:8:\"filesize\";i:195516;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:30:\"filip-mroz-167499-unsplash.jpg\";}'),(20430,12394,'_wp_attached_file','2019/02/william-stitt-111353-unsplash-1-scaled.jpg'),(20431,12394,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:50:\"2019/02/william-stitt-111353-unsplash-1-scaled.jpg\";s:8:\"filesize\";i:387581;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:35:\"william-stitt-111353-unsplash-1.jpg\";}'),(20432,12400,'_wp_attached_file','2019/03/tammy-gann-733591-unsplash-scaled.jpg'),(20433,12400,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1991;s:6:\"height\";i:2560;s:4:\"file\";s:45:\"2019/03/tammy-gann-733591-unsplash-scaled.jpg\";s:8:\"filesize\";i:569926;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:30:\"tammy-gann-733591-unsplash.jpg\";}'),(20434,12497,'_wp_attached_file','2019/04/Hip-Abduction-Guide-For-Personal-Trainers.png'),(20435,12497,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:53:\"2019/04/Hip-Abduction-Guide-For-Personal-Trainers.png\";s:8:\"filesize\";i:785210;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20436,12504,'_wp_attached_file','2019/04/Hip-abduction-adduction.jpg'),(20437,12504,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:736;s:6:\"height\";i:490;s:4:\"file\";s:35:\"2019/04/Hip-abduction-adduction.jpg\";s:8:\"filesize\";i:66550;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20438,12547,'_wp_attached_file','2019/04/william-stitt-111353-unsplash-2.jpg'),(20439,12547,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:43:\"2019/04/william-stitt-111353-unsplash-2.jpg\";s:8:\"filesize\";i:27880;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20440,12786,'_wp_attached_file','2019/04/Hip-Flexors-Back-Pain.png'),(20441,12786,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:33:\"2019/04/Hip-Flexors-Back-Pain.png\";s:8:\"filesize\";i:1401681;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20442,12884,'_wp_attached_file','2019/04/Anterior-View-of-Pectoralis-Major-Biomechanics-Education-Antony-For-Personal-Trainers-scaled.jpeg'),(20443,12884,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:105:\"2019/04/Anterior-View-of-Pectoralis-Major-Biomechanics-Education-Antony-For-Personal-Trainers-scaled.jpeg\";s:8:\"filesize\";i:644510;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 8 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1554997606\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:90:\"Anterior-View-of-Pectoralis-Major-Biomechanics-Education-Antony-For-Personal-Trainers.jpeg\";}'),(20444,12885,'_wp_attached_file','2019/04/Anatomy-of-Pec-Minor-Biomechanics-Education-scaled.jpeg'),(20445,12885,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:63:\"2019/04/Anatomy-of-Pec-Minor-Biomechanics-Education-scaled.jpeg\";s:8:\"filesize\";i:672605;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 8 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1554997591\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"20\";s:13:\"shutter_speed\";s:18:\"0.0098039215686275\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:48:\"Anatomy-of-Pec-Minor-Biomechanics-Education.jpeg\";}'),(20446,12886,'_wp_attached_file','2019/04/Anterior-View-of-the-Scapula-scaled.jpeg'),(20447,12886,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:48:\"2019/04/Anterior-View-of-the-Scapula-scaled.jpeg\";s:8:\"filesize\";i:472155;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 8 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1554997511\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:33:\"Anterior-View-of-the-Scapula.jpeg\";}'),(20448,12887,'_wp_attached_file','2019/04/Pec-Minor-Anti-Spasm-Biomechanics-Education-Biomechanics-Coach-scaled.jpg'),(20449,12887,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:81:\"2019/04/Pec-Minor-Anti-Spasm-Biomechanics-Education-Biomechanics-Coach-scaled.jpg\";s:8:\"filesize\";i:505260;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469185005\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:66:\"Pec-Minor-Anti-Spasm-Biomechanics-Education-Biomechanics-Coach.jpg\";}'),(20450,12888,'_wp_attached_file','2019/04/Pulling-Exercises-Retraction-Biomechanics-Coaching-scaled.jpg'),(20451,12888,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:69:\"2019/04/Pulling-Exercises-Retraction-Biomechanics-Coaching-scaled.jpg\";s:8:\"filesize\";i:247092;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469185154\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"45\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:54:\"Pulling-Exercises-Retraction-Biomechanics-Coaching.jpg\";}'),(20452,12889,'_wp_attached_file','2019/04/More-_Pulling_-Might-NOT-Be-The-Answer-To-Those-Rounded-Shoulders.png'),(20453,12889,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:77:\"2019/04/More-_Pulling_-Might-NOT-Be-The-Answer-To-Those-Rounded-Shoulders.png\";s:8:\"filesize\";i:1226185;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20454,12889,'dt-img-hide-title','0'),(20455,13010,'_wp_attached_file','2019/04/Are-Shoulder-Problems-Are-The-New-Low-Back-Pain_.png'),(20456,13010,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:60:\"2019/04/Are-Shoulder-Problems-Are-The-New-Low-Back-Pain_.png\";s:8:\"filesize\";i:865724;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20457,13010,'_wp_attachment_image_alt','Are Shoulder Problems Are The New Low Back Pain_'),(20458,13010,'dt-img-hide-title','0'),(20459,13146,'_wp_attached_file','2019/04/image.png'),(20460,13146,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1131;s:6:\"height\";i:781;s:4:\"file\";s:17:\"2019/04/image.png\";s:8:\"filesize\";i:1016688;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20461,13147,'_wp_attached_file','2019/04/image-1.png'),(20462,13147,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1018;s:6:\"height\";i:1109;s:4:\"file\";s:19:\"2019/04/image-1.png\";s:8:\"filesize\";i:1184354;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20463,13148,'_wp_attached_file','2019/04/image-2.png'),(20464,13148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3648;s:6:\"height\";i:5472;s:4:\"file\";s:19:\"2019/04/image-2.png\";s:8:\"filesize\";i:25141477;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20465,13149,'_wp_attached_file','2019/04/image-3.png'),(20466,13149,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2019/04/image-3.png\";s:8:\"filesize\";i:20361476;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20467,13150,'_wp_attached_file','2019/04/image-4.png'),(20468,13150,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:5472;s:6:\"height\";i:3648;s:4:\"file\";s:19:\"2019/04/image-4.png\";s:8:\"filesize\";i:21643162;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20469,13150,'dt-img-hide-title','0'),(20470,13154,'_wp_attached_file','2019/04/Infraspinatus-Biomechanics-Education-The-piriformis-of-the-shoulder.png'),(20471,13154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:720;s:4:\"file\";s:79:\"2019/04/Infraspinatus-Biomechanics-Education-The-piriformis-of-the-shoulder.png\";s:8:\"filesize\";i:569887;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20472,13430,'_wp_attached_file','2019/05/Biomechanics-Education-Turkish-Get-Up-1.jpg'),(20473,13430,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1558;s:6:\"height\";i:725;s:4:\"file\";s:51:\"2019/05/Biomechanics-Education-Turkish-Get-Up-1.jpg\";s:8:\"filesize\";i:80021;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20474,13431,'_wp_attached_file','2019/05/Turkish-Get-Up-2-Biomechanics-Education.jpg'),(20475,13431,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:632;s:4:\"file\";s:51:\"2019/05/Turkish-Get-Up-2-Biomechanics-Education.jpg\";s:8:\"filesize\";i:74987;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20476,13432,'_wp_attached_file','2019/05/Turkish-Get-Up-3-Biomechanics-Education.jpg'),(20477,13432,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:898;s:4:\"file\";s:51:\"2019/05/Turkish-Get-Up-3-Biomechanics-Education.jpg\";s:8:\"filesize\";i:104210;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20478,13434,'_wp_attached_file','2019/05/Turkish-Get-Up-4-Biomechanics-Coach.jpg'),(20479,13434,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:962;s:4:\"file\";s:47:\"2019/05/Turkish-Get-Up-4-Biomechanics-Coach.jpg\";s:8:\"filesize\";i:109060;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20480,13435,'_wp_attached_file','2019/05/Turkish-Get-Up-Instruction-Biomechanics-Coach.jpg'),(20481,13435,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1064;s:4:\"file\";s:57:\"2019/05/Turkish-Get-Up-Instruction-Biomechanics-Coach.jpg\";s:8:\"filesize\";i:130720;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20482,13436,'_wp_attached_file','2019/05/Turkish-Get-Up-Guide-Biomechanics-Education.jpg'),(20483,13436,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1505;s:6:\"height\";i:1212;s:4:\"file\";s:55:\"2019/05/Turkish-Get-Up-Guide-Biomechanics-Education.jpg\";s:8:\"filesize\";i:122922;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20484,13437,'_wp_attached_file','2019/05/Turkish-Get-Up-Biomechanics-Education-Kneeling-lunge-position.jpg'),(20485,13437,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1532;s:6:\"height\";i:1169;s:4:\"file\";s:73:\"2019/05/Turkish-Get-Up-Biomechanics-Education-Kneeling-lunge-position.jpg\";s:8:\"filesize\";i:114823;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20486,13438,'_wp_attached_file','2019/05/Biomechanics-Education-Turkish-Get-Up-Stand.jpg'),(20487,13438,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1510;s:6:\"height\";i:1202;s:4:\"file\";s:55:\"2019/05/Biomechanics-Education-Turkish-Get-Up-Stand.jpg\";s:8:\"filesize\";i:121721;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20488,13440,'_wp_attached_file','2019/05/Why-The-Turkish-Get-Up-Is-Valuable-To-A-Personal-Trainers-Programming-1.png'),(20489,13440,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:83:\"2019/05/Why-The-Turkish-Get-Up-Is-Valuable-To-A-Personal-Trainers-Programming-1.png\";s:8:\"filesize\";i:755873;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20490,13619,'_wp_attached_file','2019/05/Walking-THE-Most-Underestimated-Medicine-In-Modern-Culture-1.png'),(20491,13619,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:72:\"2019/05/Walking-THE-Most-Underestimated-Medicine-In-Modern-Culture-1.png\";s:8:\"filesize\";i:1184849;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20492,23634,'_wp_attached_file','2020/08/shutterstock_127096280.jpg'),(20493,23634,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2400;s:6:\"height\";i:2400;s:4:\"file\";s:34:\"2020/08/shutterstock_127096280.jpg\";s:8:\"filesize\";i:1569050;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20494,23949,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:1499;s:4:\"file\";s:15:\"IMG_3042-1.jpeg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-768x1151.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(20495,30369,'_wp_attached_file','2021/11/WEBSITE-PDF-SMART-LINKS-.pdf'),(20496,30369,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:31:\"WEBSITE-PDF-SMART-LINKS-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88814;}s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"WEBSITE-PDF-SMART-LINKS-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43393;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"WEBSITE-PDF-SMART-LINKS-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62727;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"WEBSITE-PDF-SMART-LINKS-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14663;}}s:8:\"filesize\";i:222850;}'),(20497,30371,'_wp_attached_file','2021/11/danielle-macinnes-IuLgi9PWETU-unsplash-scaled-1.jpg'),(20498,30371,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:59:\"2021/11/danielle-macinnes-IuLgi9PWETU-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:364011;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20499,30373,'_wp_attached_file','2021/11/WEBSITE-PDF-WALK-MORE-LINKS-.pdf'),(20500,30373,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:35:\"WEBSITE-PDF-WALK-MORE-LINKS-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87779;}s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"WEBSITE-PDF-WALK-MORE-LINKS-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42586;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"WEBSITE-PDF-WALK-MORE-LINKS-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61670;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"WEBSITE-PDF-WALK-MORE-LINKS-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14418;}}s:8:\"filesize\";i:222143;}'),(20501,30375,'_wp_attached_file','2021/11/jeffrey-grospe-6djTDnq4Svw-unsplash-scaled-1.jpg'),(20502,30375,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2048;s:4:\"file\";s:56:\"2021/11/jeffrey-grospe-6djTDnq4Svw-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:911359;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20503,30377,'_wp_attached_file','2021/11/elisa-ventur-bmJAXAz6ads-unsplash-scaled-1.jpg'),(20504,30377,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:54:\"2021/11/elisa-ventur-bmJAXAz6ads-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:473176;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20505,30379,'_wp_attached_file','2021/11/WEBSITE-PDF-STRESS-LINKS-.pdf'),(20506,30379,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:32:\"WEBSITE-PDF-STRESS-LINKS-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89382;}s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"WEBSITE-PDF-STRESS-LINKS-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43134;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"WEBSITE-PDF-STRESS-LINKS-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62641;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"WEBSITE-PDF-STRESS-LINKS-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14638;}}s:8:\"filesize\";i:221600;}'),(20507,30380,'_wp_attached_file','2021/11/WEBSITE-PDF-SQUAT-LINKS-.pdf'),(20508,30380,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:31:\"WEBSITE-PDF-SQUAT-LINKS-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87207;}s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"WEBSITE-PDF-SQUAT-LINKS-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42425;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"WEBSITE-PDF-SQUAT-LINKS-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61611;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"WEBSITE-PDF-SQUAT-LINKS-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14389;}}s:8:\"filesize\";i:222207;}'),(20509,30436,'_wp_attached_file','2021/11/IMG_2328-scaled-1.jpeg'),(20510,30436,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:30:\"2021/11/IMG_2328-scaled-1.jpeg\";s:8:\"filesize\";i:654824;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 12 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1638116014\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.1\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20511,30437,'_wp_attached_file','2021/11/IMG_1395-scaled-1.jpeg'),(20512,30437,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:30:\"2021/11/IMG_1395-scaled-1.jpeg\";s:8:\"filesize\";i:681189;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:35:\"iPad Pro (11-inch) (3rd generation)\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1636906825\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"3\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20513,30443,'_wp_attached_file','2021/11/WEBSITE-PDF-weak-glutes-LINKS-.pdf'),(20514,30443,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:37:\"WEBSITE-PDF-weak-glutes-LINKS-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88934;}s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"WEBSITE-PDF-weak-glutes-LINKS-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43687;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"WEBSITE-PDF-weak-glutes-LINKS-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63444;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"WEBSITE-PDF-weak-glutes-LINKS-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14547;}}s:8:\"filesize\";i:222541;}'),(20515,30487,'_wp_attached_file','2021/12/paola-aguilar-O-FR79xcGh8-unsplash-scaled-1.jpg'),(20516,30487,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1706;s:6:\"height\";i:2560;s:4:\"file\";s:55:\"2021/12/paola-aguilar-O-FR79xcGh8-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:622444;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20517,30488,'_wp_attached_file','2021/12/joshua-earle-ICE__bo2Vws-unsplash-scaled-1.jpg'),(20518,30488,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:54:\"2021/12/joshua-earle-ICE__bo2Vws-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:478447;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20519,30489,'_wp_attached_file','2021/12/frank-mckenna-OD9EOzfSOh0-unsplash-scaled-1.jpg'),(20520,30489,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1704;s:4:\"file\";s:55:\"2021/12/frank-mckenna-OD9EOzfSOh0-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:563631;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20521,30491,'_wp_attached_file','2021/12/sri-jalasutram-e2U-VYSY7ro-unsplash-scaled-1.jpg'),(20522,30491,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2021/12/sri-jalasutram-e2U-VYSY7ro-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:601028;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20523,30502,'_wp_attached_file','2021/12/Screenshot-2021-11-26-at-15.08.58.png'),(20524,30502,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1320;s:6:\"height\";i:628;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-11-26-at-15.08.58.png\";s:8:\"filesize\";i:604538;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20525,30503,'_wp_attached_file','2021/12/IMG_2288-scaled-1.jpg'),(20526,30503,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/12/IMG_2288-scaled-1.jpg\";s:8:\"filesize\";i:603028;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1637927867\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20527,30588,'_wp_attached_file','2021/12/Screenshot-2021-12-09-at-08.12.45.png'),(20528,30588,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:426;s:6:\"height\";i:634;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-09-at-08.12.45.png\";s:8:\"filesize\";i:289590;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20529,30589,'_wp_attached_file','2021/12/armand-khoury-Ba6IlmAzl-k-unsplash-scaled-1.jpg'),(20530,30589,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1807;s:6:\"height\";i:2560;s:4:\"file\";s:55:\"2021/12/armand-khoury-Ba6IlmAzl-k-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:559490;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20531,30590,'_wp_attached_file','2021/12/Screenshot-2021-12-09-at-08.13.15.png'),(20532,30590,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:792;s:6:\"height\";i:682;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-09-at-08.13.15.png\";s:8:\"filesize\";i:665002;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20533,30595,'_wp_attached_file','2021/12/Screenshot-2021-12-09-at-20.23.19.png'),(20534,30595,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:404;s:6:\"height\";i:346;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-09-at-20.23.19.png\";s:8:\"filesize\";i:143995;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20535,30596,'_wp_attached_file','2021/12/Screenshot-2021-12-09-at-20.23.27.png'),(20536,30596,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:458;s:6:\"height\";i:350;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-09-at-20.23.27.png\";s:8:\"filesize\";i:178464;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20537,30603,'_wp_attached_file','2021/12/Screenshot-2021-12-09-at-20.43.57.png'),(20538,30603,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:456;s:6:\"height\";i:690;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-09-at-20.43.57.png\";s:8:\"filesize\";i:203454;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20539,30605,'_wp_attached_file','2021/12/carl-heyerdahl-KE0nC8-58MQ-unsplash-scaled-1.jpg'),(20540,30605,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:56:\"2021/12/carl-heyerdahl-KE0nC8-58MQ-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:387030;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20541,30605,'dt-img-hide-title','0'),(20542,30606,'_wp_attached_file','2021/12/luis-villasmil-mlVbMbxfWI4-unsplash-scaled-1.jpg'),(20543,30606,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2021/12/luis-villasmil-mlVbMbxfWI4-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:871467;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20544,30606,'dt-img-hide-title','0'),(20545,30609,'_wp_attached_file','2021/12/david-clode-E32fGlISSBk-unsplash-scaled-1.jpg'),(20546,30609,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1788;s:6:\"height\";i:2560;s:4:\"file\";s:53:\"2021/12/david-clode-E32fGlISSBk-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:356231;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20547,30610,'_wp_attached_file','2021/12/stephanie-leblanc-SVwOposMxHY-unsplash-scaled-1.jpg'),(20548,30610,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2021/12/stephanie-leblanc-SVwOposMxHY-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:250054;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20549,30610,'dt-img-hide-title','0'),(20550,30611,'_wp_attached_file','2021/12/david-clode-2slBHG3HtdA-unsplash-scaled-1.jpg'),(20551,30611,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1643;s:4:\"file\";s:53:\"2021/12/david-clode-2slBHG3HtdA-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:342399;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20552,30612,'_wp_attached_file','2021/12/sabri-tuzcu-r1EwRkllP1I-unsplash-scaled-1.jpg'),(20553,30612,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1696;s:4:\"file\";s:53:\"2021/12/sabri-tuzcu-r1EwRkllP1I-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:369707;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20554,30612,'dt-img-hide-title','0'),(20555,30613,'_wp_attached_file','2021/12/rima-kruciene-Tq9Ln3gpiG4-unsplash-scaled-1.jpg'),(20556,30613,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:55:\"2021/12/rima-kruciene-Tq9Ln3gpiG4-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:393880;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20557,30632,'_wp_attached_file','2021/12/christopher-bill-rrTRZdCu7No-unsplash-scaled-1.jpg'),(20558,30632,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:58:\"2021/12/christopher-bill-rrTRZdCu7No-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:365401;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20559,30633,'_wp_attached_file','2021/12/mathieu-stern-1zO4O3Z0UJA-unsplash-scaled-1.jpg'),(20560,30633,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:55:\"2021/12/mathieu-stern-1zO4O3Z0UJA-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:318473;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20561,30634,'_wp_attached_file','2021/12/riccardo-annandale-7e2pe9wjL9M-unsplash.jpg'),(20562,30634,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1981;s:6:\"height\";i:1588;s:4:\"file\";s:51:\"2021/12/riccardo-annandale-7e2pe9wjL9M-unsplash.jpg\";s:8:\"filesize\";i:361439;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20563,30635,'_wp_attached_file','2021/12/neonbrand-1-aA2Fadydc-unsplash-scaled-1.jpg'),(20564,30635,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:51:\"2021/12/neonbrand-1-aA2Fadydc-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:413229;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20565,30636,'_wp_attached_file','2021/12/merakist-RxOrX1iW15A-unsplash-scaled-1.jpg'),(20566,30636,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:50:\"2021/12/merakist-RxOrX1iW15A-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:207328;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20567,30637,'_wp_attached_file','2021/12/javier-allegue-barros-i5Kx0P8A0d4-unsplash-scaled-1.jpg'),(20568,30637,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:63:\"2021/12/javier-allegue-barros-i5Kx0P8A0d4-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:168961;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20569,30638,'_wp_attached_file','2021/12/afif-kusuma-mv38TB_Ljj8-unsplash-scaled-1.jpg'),(20570,30638,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:53:\"2021/12/afif-kusuma-mv38TB_Ljj8-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:536166;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20571,30650,'_wp_attached_file','2021/12/taco-fleur-qxoOajPS55U-unsplash-scaled-1.jpg'),(20572,30650,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:52:\"2021/12/taco-fleur-qxoOajPS55U-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:491807;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20573,30651,'_wp_attached_file','2021/12/sergio-pedemonte-LqtHvyd80Mo-unsplash-scaled-1.jpg'),(20574,30651,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:58:\"2021/12/sergio-pedemonte-LqtHvyd80Mo-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:283450;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20575,30653,'_wp_attached_file','2021/12/ivan-pergasi-7IB2ifwA21Y-unsplash-scaled-1.jpg'),(20576,30653,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1714;s:6:\"height\";i:2560;s:4:\"file\";s:54:\"2021/12/ivan-pergasi-7IB2ifwA21Y-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:372471;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20577,30660,'_wp_attached_file','2021/12/brett-jordan-nd2fFCkXWTw-unsplash-scaled-1.jpg'),(20578,30660,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:54:\"2021/12/brett-jordan-nd2fFCkXWTw-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:324844;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20579,30661,'_wp_attached_file','2021/12/quino-al-P05VBPvNr3s-unsplash-scaled-1.jpg'),(20580,30661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:50:\"2021/12/quino-al-P05VBPvNr3s-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:827454;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20581,30662,'_wp_attached_file','2021/12/guille-alvarez-IcI3FizU9Cw-unsplash-scaled-1.jpg'),(20582,30662,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:56:\"2021/12/guille-alvarez-IcI3FizU9Cw-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:372521;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20583,30680,'_wp_attached_file','2021/12/Screenshot-2021-12-13-at-11.32.09.png'),(20584,30680,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2064;s:6:\"height\";i:1026;s:4:\"file\";s:45:\"2021/12/Screenshot-2021-12-13-at-11.32.09.png\";s:8:\"filesize\";i:4003400;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20585,30681,'_wp_attached_file','2021/12/fullsizeoutput_52be-scaled-1.jpeg'),(20586,30681,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1646;s:4:\"file\";s:41:\"2021/12/fullsizeoutput_52be-scaled-1.jpeg\";s:8:\"filesize\";i:569967;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D3100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1633707827\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20587,30682,'_wp_attached_file','2021/12/fullsizeoutput_52ea.jpeg'),(20588,30682,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2388;s:6:\"height\";i:1592;s:4:\"file\";s:32:\"2021/12/fullsizeoutput_52ea.jpeg\";s:8:\"filesize\";i:536973;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20589,30683,'_wp_attached_file','2021/12/DSC03820-scaled-1.jpg'),(20590,30683,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2021/12/DSC03820-scaled-1.jpg\";s:8:\"filesize\";i:622328;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550944791\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20591,30684,'_wp_attached_file','2021/12/IMG_7668-scaled-1.jpg'),(20592,30684,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/12/IMG_7668-scaled-1.jpg\";s:8:\"filesize\";i:895570;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1488037711\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20593,30685,'_wp_attached_file','2021/12/image0.jpeg'),(20594,30685,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:19:\"2021/12/image0.jpeg\";s:8:\"filesize\";i:118784;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:35:\"iPad Pro (11-inch) (3rd generation)\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1636906825\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"3\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20595,30721,'_wp_attached_file','2021/12/alora-griffiths-E3wehabi_B4-unsplash-scaled-1.jpg'),(20596,30721,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:57:\"2021/12/alora-griffiths-E3wehabi_B4-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:654661;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20597,30722,'_wp_attached_file','2021/12/alora-griffiths-7-ruqVJbHAo-unsplash-scaled-1.jpg'),(20598,30722,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1438;s:4:\"file\";s:57:\"2021/12/alora-griffiths-7-ruqVJbHAo-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:448196;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20599,38587,'_wp_attached_file','2015/12/logo-1.jpg'),(20600,38587,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:326;s:6:\"height\";i:114;s:4:\"file\";s:18:\"2015/12/logo-1.jpg\";s:8:\"filesize\";i:19700;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20601,38588,'_wp_attached_file','2015/12/cropped-logo-e1450943806897-1.jpg'),(20602,38588,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:229;s:6:\"height\";i:80;s:4:\"file\";s:41:\"2015/12/cropped-logo-e1450943806897-1.jpg\";s:8:\"filesize\";i:7039;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20603,38588,'_wp_attachment_context','custom-header'),(20604,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(20605,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(20606,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(20607,38589,'_wp_attached_file','2015/12/cropped-logo-1-e1450943874492-1.jpg'),(20608,38589,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:229;s:6:\"height\";i:80;s:4:\"file\";s:43:\"2015/12/cropped-logo-1-e1450943874492-1.jpg\";s:8:\"filesize\";i:7039;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20609,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(20610,192,'_wp_attached_file','2015/12/blog_img-3.jpg'),(20611,192,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:174;s:4:\"file\";s:22:\"2015/12/blog_img-3.jpg\";s:8:\"filesize\";i:72897;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20612,192,'dt-img-hide-title','0'),(20613,194,'_wp_attached_file','2016/01/blog_img-2.jpg'),(20614,194,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:174;s:4:\"file\";s:22:\"2016/01/blog_img-2.jpg\";s:8:\"filesize\";i:72897;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20615,194,'dt-img-hide-title','0'),(20616,205,'_wp_attached_file','2015/12/blog_img-2-1.jpg'),(20617,205,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:174;s:4:\"file\";s:24:\"2015/12/blog_img-2-1.jpg\";s:8:\"filesize\";i:72897;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20618,205,'dt-img-hide-title','0'),(20619,206,'_wp_attached_file','2016/01/blog_img-1-2.jpg'),(20620,206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:174;s:4:\"file\";s:24:\"2016/01/blog_img-1-2.jpg\";s:8:\"filesize\";i:72897;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20621,206,'dt-img-hide-title','0'),(20622,208,'_wp_attached_file','2016/01/blog_img-1-1-1.jpg'),(20623,208,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:174;s:4:\"file\";s:26:\"2016/01/blog_img-1-1-1.jpg\";s:8:\"filesize\";i:72897;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20624,208,'dt-img-hide-title','0'),(20625,247,'_wp_attached_file','2016/02/favicon-1.jpg'),(20626,247,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:34;s:6:\"height\";i:40;s:4:\"file\";s:21:\"2016/02/favicon-1.jpg\";s:8:\"filesize\";i:14102;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20627,247,'dt-img-hide-title','0'),(20628,248,'_wp_attached_file','2016/02/cropped-favicon-1.jpg'),(20629,248,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:29:\"2016/02/cropped-favicon-1.jpg\";s:8:\"filesize\";i:43926;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20630,248,'_wp_attachment_context','site-icon'),(20631,248,'dt-img-hide-title','0'),(20632,265,'_wp_attached_file','2016/02/iba-1.jpg'),(20633,265,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:770;s:6:\"height\";i:510;s:4:\"file\";s:17:\"2016/02/iba-1.jpg\";s:8:\"filesize\";i:83477;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20634,265,'dt-img-hide-title','0'),(20635,266,'_wp_attached_file','2016/02/biomechanics-education-direct-debit-form-1.pdf'),(20636,266,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:50:\"biomechanics-education-direct-debit-form-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91861;}s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"biomechanics-education-direct-debit-form-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71263;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"biomechanics-education-direct-debit-form-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25446;}}s:8:\"filesize\";i:55564;}'),(20637,280,'_wp_attached_file','2016/01/4signtestexercisepdf_2016-1.pdf'),(20638,280,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:35:\"4signtestexercisepdf_2016-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197516;}s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"4signtestexercisepdf_2016-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140475;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"4signtestexercisepdf_2016-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38681;}}s:8:\"filesize\";i:119190;}'),(20639,283,'_wp_attached_file','2016/02/logosmall-1.jpg'),(20640,283,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:26;s:6:\"height\";i:30;s:4:\"file\";s:23:\"2016/02/logosmall-1.jpg\";s:8:\"filesize\";i:19472;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20641,283,'dt-img-hide-title','0'),(20642,284,'dt-img-hide-title','0'),(20643,285,'_wp_attached_file','2016/01/doyouloveit-1.jpg'),(20644,285,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:278;s:6:\"height\";i:174;s:4:\"file\";s:25:\"2016/01/doyouloveit-1.jpg\";s:8:\"filesize\";i:72743;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20645,285,'dt-img-hide-title','0'),(20646,287,'dt-img-hide-title','0'),(20647,290,'dt-img-hide-title','0'),(20648,291,'dt-img-hide-title','0'),(20649,294,'dt-img-hide-title','0'),(20650,297,'dt-img-hide-title','0'),(20651,333,'_wp_attached_file','2016/02/imovefreely-1.jpg'),(20652,333,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:770;s:6:\"height\";i:510;s:4:\"file\";s:25:\"2016/02/imovefreely-1.jpg\";s:8:\"filesize\";i:100418;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20653,333,'dt-img-hide-title','0'),(20654,341,'dt-img-hide-title','0'),(20655,407,'_wp_attached_file','2016/02/paypal-1-1.jpg'),(20656,407,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:308;s:6:\"height\";i:122;s:4:\"file\";s:22:\"2016/02/paypal-1-1.jpg\";s:8:\"filesize\";i:43169;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20657,407,'dt-img-hide-title','0'),(20658,458,'dt-img-hide-title','0'),(20659,495,'_wp_attached_file','2016/02/Koala-1.jpg'),(20660,495,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:19:\"2016/02/Koala-1.jpg\";s:8:\"filesize\";i:780831;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:6:\"Corbis\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1202729563\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20661,495,'dt-img-hide-title','0'),(20662,497,'_wp_attached_file','2016/02/Koala2-1.jpg'),(20663,497,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:502;s:6:\"height\";i:768;s:4:\"file\";s:20:\"2016/02/Koala2-1.jpg\";s:8:\"filesize\";i:441230;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:6:\"Corbis\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1202729563\";s:9:\"copyright\";s:32:\"© Corbis.  All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(20664,497,'dt-img-hide-title','0'),(20665,505,'_wp_attached_file','2016/02/Hydrangeas-1.jpg'),(20666,505,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:768;s:4:\"file\";s:24:\"2016/02/Hydrangeas-1.jpg\";s:8:\"filesize\";i:595284;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:11:\"Amish Patel\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1206376913\";s:9:\"copyright\";s:24:\"© Microsoft Corporation\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20667,505,'dt-img-hide-title','0'),(20668,554,'_wp_attached_file','2016/03/imovefreely-1.jpg'),(20669,554,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:25:\"2016/03/imovefreely-1.jpg\";s:8:\"filesize\";i:112814;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20670,38590,'_wp_attached_file','2016/03/noimage-12.png'),(20671,38590,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:22:\"2016/03/noimage-12.png\";s:8:\"filesize\";i:25642;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20672,38591,'_wp_attached_file','2016/03/noimage-1-1.png'),(20673,38591,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-1-1.png\";s:8:\"filesize\";i:25642;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20674,38592,'_wp_attached_file','2016/03/noimage-7.gif'),(20675,38592,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:21:\"2016/03/noimage-7.gif\";s:8:\"filesize\";i:30087;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20676,38593,'_wp_attached_file','2016/03/noimage-1-1.gif'),(20677,38593,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-1-1.gif\";s:8:\"filesize\";i:30087;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20678,210,'_wp_attached_file','2016/03/noimage-49.jpg'),(20679,210,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:22:\"2016/03/noimage-49.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20680,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(20681,210,'dt-img-link',''),(20682,210,'dt-img-hide-title','0'),(20683,221,'_wp_attached_file','2016/03/noimage-1-1.jpg'),(20684,221,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-1-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20685,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(20686,221,'dt-img-link',''),(20687,221,'dt-img-hide-title','0'),(20688,224,'_wp_attached_file','2016/03/noimage-2-1.jpg'),(20689,224,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-2-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20690,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(20691,224,'dt-img-link',''),(20692,224,'dt-img-hide-title','0'),(20693,228,'_wp_attached_file','2016/03/noimage-3-1.jpg'),(20694,228,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-3-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20695,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(20696,228,'dt-img-link',''),(20697,228,'dt-img-hide-title','0'),(20698,230,'_wp_attached_file','2016/03/noimage-4-1.jpg'),(20699,230,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-4-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20700,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(20701,230,'dt-img-link',''),(20702,230,'dt-img-hide-title','0'),(20703,237,'_wp_attached_file','2016/03/noimage-5-1.jpg'),(20704,237,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-5-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20705,237,'dt-img-hide-title','0'),(20706,237,'dt-img-link',''),(20707,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(20708,253,'_wp_attached_file','2016/03/noimage-2-1.gif'),(20709,253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-2-1.gif\";s:8:\"filesize\";i:30087;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20710,256,'_wp_attached_file','2016/03/noimage-3-1.gif'),(20711,256,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-3-1.gif\";s:8:\"filesize\";i:30087;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20712,386,'_wp_attached_file','2016/03/noimage-6-1.jpg'),(20713,386,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-6-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20714,389,'_wp_attached_file','2016/03/noimage-7-1.jpg'),(20715,389,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-7-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20716,557,'dt-img-hide-title','0'),(20717,559,'dt-img-hide-title','0'),(20718,562,'dt-img-hide-title','0'),(20719,569,'dt-img-hide-title','0'),(20720,592,'dt-img-hide-title','0'),(20721,596,'dt-img-hide-title','0'),(20722,390,'_wp_attached_file','2016/03/noimage-8-1.jpg'),(20723,390,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-8-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20724,391,'_wp_attached_file','2016/03/noimage-9-1.jpg'),(20725,391,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-9-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20726,392,'_wp_attached_file','2016/03/noimage-10-1.jpg'),(20727,392,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-10-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20728,394,'_wp_attached_file','2016/03/noimage-11-1.jpg'),(20729,394,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-11-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20730,395,'_wp_attached_file','2016/03/noimage-12-1.jpg'),(20731,395,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-12-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20732,398,'_wp_attached_file','2016/03/noimage-13-1.jpg'),(20733,398,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-13-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20734,399,'_wp_attached_file','2016/03/noimage-14-1.jpg'),(20735,399,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-14-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20736,401,'_wp_attached_file','2016/03/noimage-15-1.jpg'),(20737,401,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-15-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20738,402,'_wp_attached_file','2016/03/noimage-16-1.jpg'),(20739,402,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-16-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20740,403,'_wp_attached_file','2016/03/noimage-17-1.jpg'),(20741,403,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-17-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20742,404,'_wp_attached_file','2016/03/noimage-18-1.jpg'),(20743,404,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-18-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20744,406,'_wp_attached_file','2016/03/noimage-19-1.jpg'),(20745,406,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-19-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20746,408,'_wp_attached_file','2016/03/noimage-21-1.jpg'),(20747,408,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-21-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20748,409,'_wp_attached_file','2016/03/noimage-22-1.jpg'),(20749,409,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-22-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20750,617,'dt-img-hide-title','0'),(20751,620,'dt-img-hide-title','0'),(20752,621,'dt-img-hide-title','0'),(20753,623,'dt-img-hide-title','0'),(20754,624,'dt-img-hide-title','0'),(20755,644,'dt-img-hide-title','0'),(20756,648,'dt-img-hide-title','0'),(20757,652,'dt-img-hide-title','0'),(20758,655,'dt-img-hide-title','0'),(20759,675,'dt-img-hide-title','0'),(20760,678,'dt-img-hide-title','0'),(20761,683,'dt-img-hide-title','0'),(20762,703,'dt-img-hide-title','0'),(20763,706,'dt-img-hide-title','0'),(20764,709,'dt-img-hide-title','0'),(20765,712,'dt-img-hide-title','0'),(20766,713,'dt-img-hide-title','0'),(20767,714,'dt-img-hide-title','0'),(20768,715,'dt-img-hide-title','0'),(20769,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(20770,722,'dt-img-hide-title','0'),(20771,735,'dt-img-hide-title','0'),(20772,759,'dt-img-hide-title','0'),(20773,762,'dt-img-hide-title','0'),(20774,766,'dt-img-hide-title','0'),(20775,770,'dt-img-hide-title','0'),(20776,804,'dt-img-hide-title','0'),(20777,814,'dt-img-hide-title','0'),(20778,827,'dt-img-hide-title','0'),(20779,830,'dt-img-hide-title','0'),(20780,854,'dt-img-hide-title','0'),(20781,857,'dt-img-hide-title','0'),(20782,874,'dt-img-hide-title','0'),(20783,937,'dt-img-hide-title','0'),(20784,941,'dt-img-hide-title','0'),(20785,1015,'dt-img-hide-title','0'),(20786,1018,'dt-img-hide-title','0'),(20787,1020,'dt-img-hide-title','0'),(20788,1021,'dt-img-hide-title','0'),(20789,1024,'dt-img-hide-title','0'),(20790,1027,'dt-img-hide-title','0'),(20791,1030,'dt-img-hide-title','0'),(20792,1035,'dt-img-hide-title','0'),(20793,1039,'dt-img-hide-title','0'),(20794,1045,'dt-img-hide-title','0'),(20795,1051,'dt-img-hide-title','0'),(20796,10836,'_wp_old_slug','always-always-start-with-why'),(20797,10836,'dt-img-hide-title','0'),(20798,12889,'dt-img-hide-title','0'),(20799,13010,'_wp_attachment_image_alt','Are Shoulder Problems Are The New Low Back Pain_'),(20800,13010,'dt-img-hide-title','0'),(20801,13150,'dt-img-hide-title','0'),(20802,23949,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:1499;s:4:\"file\";s:15:\"IMG_3042-1.jpeg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-768x1151.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(20803,30605,'dt-img-hide-title','0'),(20804,30606,'dt-img-hide-title','0'),(20805,30610,'dt-img-hide-title','0'),(20806,30612,'dt-img-hide-title','0'),(20807,31065,'_wp_attachment_image_alt','Online vs Face to Face workshop - biomechanics education'),(20808,31065,'dt-img-hide-title','0'),(20809,31068,'_wp_attachment_image_alt','gabin-vallet - Online vs Face to Face- biomechanics education'),(20810,31068,'dt-img-hide-title','0'),(20811,31069,'_wp_attachment_image_alt','jonathan-borba - online vs face to face workshop - biomechanics education'),(20812,31069,'dt-img-hide-title','0'),(20813,31185,'_wp_attachment_image_alt','[Case Study] Elite Lifter Laura Hewitt - biomechanics education'),(20814,31185,'dt-img-hide-title','0'),(20815,31260,'_wp_attachment_image_alt','Understanding Nerves - young man relaxing on the sofa'),(20816,31260,'dt-img-hide-title','0'),(20817,31261,'_wp_attachment_image_alt','Understanding Nerves - young woman exercising'),(20818,31261,'dt-img-hide-title','0'),(20819,31262,'_wp_attachment_image_alt','Understanding Nerves - Rachel Frances Thomson'),(20820,31262,'dt-img-hide-title','0'),(20821,31422,'_wp_attachment_image_alt','Neuromuscular Exercise - biomechanics education'),(20822,31422,'dt-img-hide-title','0'),(20823,31424,'_wp_attachment_image_alt','Neuromuscular Exercise - one leg'),(20824,31424,'dt-img-hide-title','0'),(20825,31431,'_wp_attachment_image_alt','rachel thomson - exercise biomechanics education'),(20826,31431,'dt-img-hide-title','0'),(20827,31432,'_wp_attachment_image_alt','Neuromuscular Exercise with dog - rachel thomson'),(20828,31432,'dt-img-hide-title','0'),(20829,31433,'_wp_attachment_image_alt','neuromuscular exercise - rachel thomson'),(20830,31433,'dt-img-hide-title','0'),(20831,31612,'_wp_attachment_image_alt','Mark Laws - IBA discovery day'),(20832,31612,'dt-img-hide-title','0'),(20833,31613,'_wp_attachment_image_alt','Mark Laws - biomechanics education'),(20834,31613,'dt-img-hide-title','0'),(20835,31614,'_wp_attachment_image_alt','IBA Discovery Day Workshops - biomechanics education'),(20836,31614,'dt-img-hide-title','0'),(20837,31747,'_wp_attachment_image_alt','The Power of Words - biomechanics education'),(20838,31747,'dt-img-hide-title','0'),(20839,31749,'_wp_attachment_image_alt','brett-jordan - practice makes perfect'),(20840,31749,'dt-img-hide-title','0'),(20841,31877,'_wp_attachment_image_alt','Portrait_Mike Stewart - biomechanics education'),(20842,31877,'dt-img-hide-title','0'),(20843,31879,'_wp_attachment_image_alt','JBE Rio 3 - the kaizen project'),(20844,31879,'dt-img-hide-title','0'),(20845,32012,'_wp_attachment_image_alt','Rachel France - the kaizen project'),(20846,32012,'dt-img-hide-title','0'),(20847,32179,'_wp_attachment_image_alt','Rachel France - exercising'),(20848,32179,'dt-img-hide-title','0'),(20849,32182,'_wp_attachment_image_alt','Rachel France - cimspa member profile'),(20850,32182,'dt-img-hide-title','0'),(20851,32556,'_wp_attachment_image_alt','A man lies on an exercise mat, he is wearing a blue top and black shorts, white socks, and white trainers. He has his left knee bent and right leg straight on the floor. Rachel is knelt beside him wearing an orange top and black tracksuit bottoms, and socks. She is gesturing something with her hands and talking to the class.'),(20852,32556,'dt-img-hide-title','0'),(20853,38017,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_Black_RGB-01.png\";}s:18:\"full-1710432922797\";a:3:{s:5:\"width\";i:500;s:6:\"height\";i:117;s:4:\"file\";s:44:\"FFG_Wordmark_Black_RGB-01-e1710432746919.png\";}}'),(20854,38017,'_wp_page_template','default'),(20855,38017,'dt-video-url',''),(20856,38017,'dt-img-link',''),(20857,38017,'dt-img-hide-title','0'),(20858,38023,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_White_RGB-01.png\";}}'),(20859,38023,'dt-img-hide-title','0'),(20860,38588,'_wp_attachment_context','custom-header'),(20861,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(20862,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(20863,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(20864,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(20865,192,'dt-img-hide-title','0'),(20866,194,'dt-img-hide-title','0'),(20867,205,'dt-img-hide-title','0'),(20868,206,'dt-img-hide-title','0'),(20869,208,'dt-img-hide-title','0'),(20870,247,'dt-img-hide-title','0'),(20871,248,'_wp_attachment_context','site-icon'),(20872,248,'dt-img-hide-title','0'),(20873,265,'dt-img-hide-title','0'),(20874,283,'dt-img-hide-title','0'),(20875,284,'dt-img-hide-title','0'),(20876,285,'dt-img-hide-title','0'),(20877,287,'dt-img-hide-title','0'),(20878,290,'dt-img-hide-title','0'),(20879,291,'dt-img-hide-title','0'),(20880,294,'dt-img-hide-title','0'),(20881,297,'dt-img-hide-title','0'),(20882,333,'dt-img-hide-title','0'),(20883,341,'dt-img-hide-title','0'),(20884,407,'dt-img-hide-title','0'),(20885,458,'dt-img-hide-title','0'),(20886,495,'dt-img-hide-title','0'),(20887,497,'dt-img-hide-title','0'),(20888,505,'dt-img-hide-title','0'),(20889,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(20890,210,'dt-img-link',''),(20891,210,'dt-img-hide-title','0'),(20892,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(20893,221,'dt-img-link',''),(20894,221,'dt-img-hide-title','0'),(20895,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(20896,224,'dt-img-link',''),(20897,224,'dt-img-hide-title','0'),(20898,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(20899,228,'dt-img-link',''),(20900,228,'dt-img-hide-title','0'),(20901,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(20902,230,'dt-img-link',''),(20903,230,'dt-img-hide-title','0'),(20904,237,'dt-img-hide-title','0'),(20905,237,'dt-img-link',''),(20906,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(20907,557,'dt-img-hide-title','0'),(20908,559,'dt-img-hide-title','0'),(20909,562,'dt-img-hide-title','0'),(20910,569,'dt-img-hide-title','0'),(20911,592,'dt-img-hide-title','0'),(20912,596,'dt-img-hide-title','0'),(20913,410,'_wp_attached_file','2016/03/noimage-23-1.jpg'),(20914,410,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-23-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20915,411,'_wp_attached_file','2016/03/noimage-24-1.jpg'),(20916,411,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-24-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20917,412,'_wp_attached_file','2016/03/noimage-25-1.jpg'),(20918,412,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-25-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20919,617,'dt-img-hide-title','0'),(20920,620,'dt-img-hide-title','0'),(20921,1448,'_wp_attached_file','2016/03/noimage-20-1.jpg'),(20922,1448,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-20-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20923,621,'dt-img-hide-title','0'),(20924,623,'dt-img-hide-title','0'),(20925,624,'dt-img-hide-title','0'),(20926,644,'dt-img-hide-title','0'),(20927,648,'dt-img-hide-title','0'),(20928,750,'_wp_attached_file','2016/03/noimage-4-1.gif'),(20929,750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-4-1.gif\";s:8:\"filesize\";i:30087;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20930,824,'_wp_attached_file','2016/03/noimage-26-1.jpg'),(20931,824,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-26-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20932,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(20933,824,'dt-img-link',''),(20934,824,'dt-img-hide-title','0'),(20935,825,'_wp_attached_file','2016/03/noimage-27-1.jpg'),(20936,825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-27-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20937,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(20938,825,'dt-img-link',''),(20939,825,'dt-img-hide-title','0'),(20940,828,'_wp_attached_file','2016/03/noimage-30-1.jpg'),(20941,828,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-30-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20942,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(20943,828,'dt-img-link',''),(20944,828,'dt-img-hide-title','0'),(20945,871,'_wp_attached_file','2016/03/noimage-32-1.jpg'),(20946,871,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-32-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20947,875,'_wp_attached_file','2016/03/noimage-33-1.jpg'),(20948,875,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-33-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20949,877,'_wp_attached_file','2016/03/noimage-34-1.jpg'),(20950,877,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-34-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20951,880,'_wp_attached_file','2016/03/noimage-35-1.jpg'),(20952,880,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-35-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20953,891,'_wp_attached_file','2016/03/noimage-36-1.jpg'),(20954,891,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-36-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20955,892,'_wp_attached_file','2016/03/noimage-37-1.jpg'),(20956,892,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-37-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20957,910,'_wp_attached_file','2016/03/noimage-3-1.png'),(20958,910,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-3-1.png\";s:8:\"filesize\";i:25642;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20959,1449,'_wp_attached_file','2016/03/noimage-2-1.png'),(20960,1449,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-2-1.png\";s:8:\"filesize\";i:25642;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20961,1450,'_wp_attached_file','2016/03/noimage-28-1.jpg'),(20962,1450,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-28-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20963,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(20964,1450,'dt-img-link',''),(20965,1450,'dt-img-hide-title','0'),(20966,1451,'_wp_attached_file','2016/03/noimage-29-1.jpg'),(20967,1451,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-29-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20968,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(20969,1451,'dt-img-link',''),(20970,1451,'dt-img-hide-title','0'),(20971,1452,'_wp_attached_file','2016/03/noimage-31-1.jpg'),(20972,1452,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-31-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20973,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(20974,1452,'dt-img-link',''),(20975,1452,'dt-img-hide-title','0'),(20976,652,'dt-img-hide-title','0'),(20977,655,'dt-img-hide-title','0'),(20978,911,'_wp_attached_file','2016/03/noimage-4-1.png'),(20979,911,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-4-1.png\";s:8:\"filesize\";i:25642;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20980,912,'_wp_attached_file','2016/03/noimage-5-1.png'),(20981,912,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-5-1.png\";s:8:\"filesize\";i:25642;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20982,913,'_wp_attached_file','2016/03/noimage-6-1.png'),(20983,913,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-6-1.png\";s:8:\"filesize\";i:25642;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20984,914,'_wp_attached_file','2016/03/noimage-7-1.png'),(20985,914,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-7-1.png\";s:8:\"filesize\";i:25642;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20986,938,'_wp_attached_file','2016/03/noimage-40-1.jpg'),(20987,938,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-40-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20988,939,'_wp_attached_file','2016/03/noimage-41-1.jpg'),(20989,939,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-41-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20990,948,'_wp_attached_file','2016/03/noimage-42-1.jpg'),(20991,948,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-42-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20992,951,'_wp_attached_file','2016/03/noimage-43-1.jpg'),(20993,951,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-43-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20994,960,'_wp_attached_file','2016/03/noimage-44-1.jpg'),(20995,960,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-44-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20996,967,'_wp_attached_file','2016/03/noimage-45-1.jpg'),(20997,967,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-45-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(20998,970,'_wp_attached_file','2016/03/noimage-46-1.jpg'),(20999,970,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-46-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21000,985,'_wp_attached_file','2016/03/noimage-47-1.jpg'),(21001,985,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-47-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21002,991,'_wp_attached_file','2016/03/noimage-48-1.jpg'),(21003,991,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-48-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21004,1007,'_wp_attached_file','2016/03/noimage-8-1.png'),(21005,1007,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-8-1.png\";s:8:\"filesize\";i:25642;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21006,1008,'_wp_attached_file','2016/03/noimage-9-1.png'),(21007,1008,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-9-1.png\";s:8:\"filesize\";i:25642;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21008,1010,'_wp_attached_file','2016/03/noimage-10-1.png'),(21009,1010,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-10-1.png\";s:8:\"filesize\";i:25642;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21010,1453,'_wp_attached_file','2016/03/noimage-38-1.jpg'),(21011,1453,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-38-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21012,1454,'_wp_attached_file','2016/03/noimage-39-1.jpg'),(21013,1454,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-39-1.jpg\";s:8:\"filesize\";i:58366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21014,675,'dt-img-hide-title','0'),(21015,678,'dt-img-hide-title','0'),(21016,683,'dt-img-hide-title','0'),(21017,703,'dt-img-hide-title','0'),(21018,706,'dt-img-hide-title','0'),(21019,709,'dt-img-hide-title','0'),(21020,712,'dt-img-hide-title','0'),(21021,713,'dt-img-hide-title','0'),(21022,714,'dt-img-hide-title','0'),(21023,715,'dt-img-hide-title','0'),(21024,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(21025,722,'dt-img-hide-title','0'),(21026,735,'dt-img-hide-title','0'),(21027,759,'dt-img-hide-title','0'),(21028,762,'dt-img-hide-title','0'),(21029,766,'dt-img-hide-title','0'),(21030,770,'dt-img-hide-title','0'),(21031,804,'dt-img-hide-title','0'),(21032,1011,'_wp_attached_file','2016/03/noimage-11-1.png'),(21033,1011,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:24:\"2016/03/noimage-11-1.png\";s:8:\"filesize\";i:25642;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21034,1012,'_wp_attached_file','2016/03/noimage-5-1.gif'),(21035,1012,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-5-1.gif\";s:8:\"filesize\";i:30087;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21036,1013,'_wp_attached_file','2016/03/noimage-6-1.gif'),(21037,1013,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2016/03/noimage-6-1.gif\";s:8:\"filesize\";i:30087;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21038,814,'dt-img-hide-title','0'),(21039,827,'dt-img-hide-title','0'),(21040,830,'dt-img-hide-title','0'),(21041,854,'dt-img-hide-title','0'),(21042,857,'dt-img-hide-title','0'),(21043,874,'dt-img-hide-title','0'),(21044,937,'dt-img-hide-title','0'),(21045,941,'dt-img-hide-title','0'),(21046,955,'_wp_attached_file','2016/05/moreinfo-1.jpg'),(21047,955,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:567;s:6:\"height\";i:64;s:4:\"file\";s:22:\"2016/05/moreinfo-1.jpg\";s:8:\"filesize\";i:41432;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(21048,955,'dt-img-hide-title','0'),(21049,969,'_wp_attached_file','2016/05/imovefreelysm-1.jpg'),(21050,969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:580;s:6:\"height\";i:372;s:4:\"file\";s:27:\"2016/05/imovefreelysm-1.jpg\";s:8:\"filesize\";i:24876;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21051,969,'_wp_attachment_image_alt','imove Freely'),(21052,969,'dt-img-hide-title','0'),(21053,1001,'_wp_attached_file','2016/05/imovefreely2-1.jpg'),(21054,1001,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:580;s:6:\"height\";i:372;s:4:\"file\";s:26:\"2016/05/imovefreely2-1.jpg\";s:8:\"filesize\";i:118779;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(21055,1001,'dt-img-hide-title','0'),(21056,1015,'dt-img-hide-title','0'),(21057,1018,'dt-img-hide-title','0'),(21058,1020,'dt-img-hide-title','0'),(21059,1021,'dt-img-hide-title','0'),(21060,1024,'dt-img-hide-title','0'),(21061,1027,'dt-img-hide-title','0'),(21062,1030,'dt-img-hide-title','0'),(21063,1035,'dt-img-hide-title','0'),(21064,1039,'dt-img-hide-title','0'),(21065,1045,'dt-img-hide-title','0'),(21066,1051,'dt-img-hide-title','0'),(21067,1052,'_wp_attached_file','2016/06/Screen-Shot-2016-06-14-at-11.33.28-1-1.png'),(21068,1052,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:230;s:6:\"height\";i:238;s:4:\"file\";s:50:\"2016/06/Screen-Shot-2016-06-14-at-11.33.28-1-1.png\";s:8:\"filesize\";i:92264;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21069,1052,'dt-img-hide-title','0'),(21070,1055,'_wp_attached_file','2016/06/Screen-Shot-2016-06-14-at-11.27.18-1.png'),(21071,1055,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1103;s:6:\"height\";i:307;s:4:\"file\";s:48:\"2016/06/Screen-Shot-2016-06-14-at-11.27.18-1.png\";s:8:\"filesize\";i:678249;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21072,1055,'dt-img-hide-title','0'),(21073,1057,'_wp_attached_file','2016/06/Screen-Shot-2016-06-12-at-07.37.45-1-1.png'),(21074,1057,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:787;s:6:\"height\";i:426;s:4:\"file\";s:50:\"2016/06/Screen-Shot-2016-06-12-at-07.37.45-1-1.png\";s:8:\"filesize\";i:628626;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21075,1057,'dt-img-hide-title','0'),(21076,1061,'_wp_attached_file','2016/06/IMG_0065-1.jpg'),(21077,1061,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:22:\"2016/06/IMG_0065-1.jpg\";s:8:\"filesize\";i:112417;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(21078,1061,'dt-img-hide-title','0'),(21079,1065,'_wp_attached_file','2016/06/Screen-Shot-2016-06-22-at-09.16.39-1.png'),(21080,1065,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:578;s:6:\"height\";i:300;s:4:\"file\";s:48:\"2016/06/Screen-Shot-2016-06-22-at-09.16.39-1.png\";s:8:\"filesize\";i:202784;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21081,1065,'dt-img-hide-title','0'),(21082,1068,'_wp_attached_file','2016/06/Screen-Shot-2016-06-24-at-06.59.44-1.png'),(21083,1068,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:725;s:6:\"height\";i:479;s:4:\"file\";s:48:\"2016/06/Screen-Shot-2016-06-24-at-06.59.44-1.png\";s:8:\"filesize\";i:728019;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21084,1068,'dt-img-hide-title','0'),(21085,1073,'_wp_attached_file','2016/06/Screen-Shot-2016-06-26-at-05.52.50-1.png'),(21086,1073,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:783;s:6:\"height\";i:520;s:4:\"file\";s:48:\"2016/06/Screen-Shot-2016-06-26-at-05.52.50-1.png\";s:8:\"filesize\";i:848182;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21087,1073,'dt-img-hide-title','0'),(21088,1078,'_wp_attached_file','2016/06/new-profile-pic-green-1.jpg'),(21089,1078,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:915;s:4:\"file\";s:35:\"2016/06/new-profile-pic-green-1.jpg\";s:8:\"filesize\";i:99975;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21090,1078,'dt-img-hide-title','0'),(21091,1084,'_wp_attached_file','2016/06/Screen-Shot-2016-06-30-at-09.11.02-1.png'),(21092,1084,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:559;s:6:\"height\";i:583;s:4:\"file\";s:48:\"2016/06/Screen-Shot-2016-06-30-at-09.11.02-1.png\";s:8:\"filesize\";i:633008;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21093,1084,'dt-img-hide-title','0'),(21094,1088,'_wp_attached_file','2016/07/Banhus-Mark-1.jpg'),(21095,1088,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:666;s:6:\"height\";i:666;s:4:\"file\";s:25:\"2016/07/Banhus-Mark-1.jpg\";s:8:\"filesize\";i:68505;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21096,1088,'dt-img-hide-title','0'),(21097,1094,'_wp_attached_file','2016/07/Ski-3.jpg'),(21098,1094,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:458;s:4:\"file\";s:17:\"2016/07/Ski-3.jpg\";s:8:\"filesize\";i:69758;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21099,1094,'dt-img-hide-title','0'),(21100,1096,'_wp_attached_file','2016/07/Ski-1-1.jpg'),(21101,1096,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:458;s:4:\"file\";s:19:\"2016/07/Ski-1-1.jpg\";s:8:\"filesize\";i:69758;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21102,1096,'dt-img-hide-title','0'),(21103,1097,'_wp_attached_file','2016/07/Ski-2-1.jpg'),(21104,1097,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:458;s:4:\"file\";s:19:\"2016/07/Ski-2-1.jpg\";s:8:\"filesize\";i:69758;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21105,1097,'dt-img-hide-title','0'),(21106,1099,'_wp_attached_file','2016/07/ebc934f8-53db-41b5-8b43-68e976bc064a-1.jpg'),(21107,1099,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:50:\"2016/07/ebc934f8-53db-41b5-8b43-68e976bc064a-1.jpg\";s:8:\"filesize\";i:14258;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21108,1099,'dt-img-hide-title','0'),(21109,1106,'_wp_attached_file','2016/07/Small-1.jpg'),(21110,1106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:925;s:6:\"height\";i:614;s:4:\"file\";s:19:\"2016/07/Small-1.jpg\";s:8:\"filesize\";i:73814;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21111,1106,'dt-img-hide-title','0'),(21112,1110,'_wp_attached_file','2016/07/weight-lifter-312254_1280-1.png'),(21113,1110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:956;s:4:\"file\";s:39:\"2016/07/weight-lifter-312254_1280-1.png\";s:8:\"filesize\";i:109936;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21114,1110,'dt-img-hide-title','0'),(21115,2108,'_wp_attached_file','2017/03/07-1.png'),(21116,2108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:389;s:6:\"height\";i:449;s:4:\"file\";s:16:\"2017/03/07-1.png\";s:8:\"filesize\";i:95035;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21117,2108,'dt-img-hide-title','0'),(21118,2109,'_wp_attached_file','2017/03/08-1.png'),(21119,2109,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:413;s:4:\"file\";s:16:\"2017/03/08-1.png\";s:8:\"filesize\";i:154098;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21120,2109,'dt-img-hide-title','0'),(21121,2110,'_wp_attached_file','2017/03/09-1.png'),(21122,2110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:601;s:6:\"height\";i:420;s:4:\"file\";s:16:\"2017/03/09-1.png\";s:8:\"filesize\";i:135079;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21123,2110,'dt-img-hide-title','0'),(21124,2111,'_wp_attached_file','2017/03/10-1.png'),(21125,2111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:415;s:4:\"file\";s:16:\"2017/03/10-1.png\";s:8:\"filesize\";i:88450;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21126,2111,'dt-img-hide-title','0'),(21127,2112,'_wp_attached_file','2017/03/11-1.png'),(21128,2112,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:578;s:6:\"height\";i:401;s:4:\"file\";s:16:\"2017/03/11-1.png\";s:8:\"filesize\";i:169668;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21129,2112,'dt-img-hide-title','0'),(21130,2113,'_wp_attached_file','2017/03/12-1.png'),(21131,2113,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:417;s:4:\"file\";s:16:\"2017/03/12-1.png\";s:8:\"filesize\";i:167764;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21132,2113,'dt-img-hide-title','0'),(21133,2114,'_wp_attached_file','2017/03/13-1.jpg'),(21134,2114,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:421;s:6:\"height\";i:475;s:4:\"file\";s:16:\"2017/03/13-1.jpg\";s:8:\"filesize\";i:55144;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21135,2114,'dt-img-hide-title','0'),(21136,2115,'_wp_attached_file','2017/03/13-1.png'),(21137,2115,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:388;s:6:\"height\";i:449;s:4:\"file\";s:16:\"2017/03/13-1.png\";s:8:\"filesize\";i:92198;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21138,2115,'dt-img-hide-title','0'),(21139,38588,'_wp_attachment_context','custom-header'),(21140,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(21141,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(21142,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(21143,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(21144,192,'dt-img-hide-title','0'),(21145,194,'dt-img-hide-title','0'),(21146,205,'dt-img-hide-title','0'),(21147,206,'dt-img-hide-title','0'),(21148,208,'dt-img-hide-title','0'),(21149,247,'dt-img-hide-title','0'),(21150,248,'_wp_attachment_context','site-icon'),(21151,248,'dt-img-hide-title','0'),(21152,265,'dt-img-hide-title','0'),(21153,283,'dt-img-hide-title','0'),(21154,284,'dt-img-hide-title','0'),(21155,285,'dt-img-hide-title','0'),(21156,287,'dt-img-hide-title','0'),(21157,290,'dt-img-hide-title','0'),(21158,291,'dt-img-hide-title','0'),(21159,294,'dt-img-hide-title','0'),(21160,297,'dt-img-hide-title','0'),(21161,333,'dt-img-hide-title','0'),(21162,341,'dt-img-hide-title','0'),(21163,407,'dt-img-hide-title','0'),(21164,458,'dt-img-hide-title','0'),(21165,495,'dt-img-hide-title','0'),(21166,497,'dt-img-hide-title','0'),(21167,505,'dt-img-hide-title','0'),(21168,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(21169,210,'dt-img-link',''),(21170,210,'dt-img-hide-title','0'),(21171,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(21172,221,'dt-img-link',''),(21173,221,'dt-img-hide-title','0'),(21174,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(21175,224,'dt-img-link',''),(21176,224,'dt-img-hide-title','0'),(21177,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(21178,228,'dt-img-link',''),(21179,228,'dt-img-hide-title','0'),(21180,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(21181,230,'dt-img-link',''),(21182,230,'dt-img-hide-title','0'),(21183,237,'dt-img-hide-title','0'),(21184,237,'dt-img-link',''),(21185,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(21186,557,'dt-img-hide-title','0'),(21187,559,'dt-img-hide-title','0'),(21188,562,'dt-img-hide-title','0'),(21189,569,'dt-img-hide-title','0'),(21190,592,'dt-img-hide-title','0'),(21191,596,'dt-img-hide-title','0'),(21192,617,'dt-img-hide-title','0'),(21193,620,'dt-img-hide-title','0'),(21194,621,'dt-img-hide-title','0'),(21195,623,'dt-img-hide-title','0'),(21196,624,'dt-img-hide-title','0'),(21197,644,'dt-img-hide-title','0'),(21198,648,'dt-img-hide-title','0'),(21199,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(21200,824,'dt-img-link',''),(21201,824,'dt-img-hide-title','0'),(21202,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(21203,825,'dt-img-link',''),(21204,825,'dt-img-hide-title','0'),(21205,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(21206,828,'dt-img-link',''),(21207,828,'dt-img-hide-title','0'),(21208,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(21209,1450,'dt-img-link',''),(21210,1450,'dt-img-hide-title','0'),(21211,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(21212,1451,'dt-img-link',''),(21213,1451,'dt-img-hide-title','0'),(21214,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(21215,1452,'dt-img-link',''),(21216,1452,'dt-img-hide-title','0'),(21217,652,'dt-img-hide-title','0'),(21218,655,'dt-img-hide-title','0'),(21219,675,'dt-img-hide-title','0'),(21220,678,'dt-img-hide-title','0'),(21221,683,'dt-img-hide-title','0'),(21222,703,'dt-img-hide-title','0'),(21223,706,'dt-img-hide-title','0'),(21224,709,'dt-img-hide-title','0'),(21225,712,'dt-img-hide-title','0'),(21226,713,'dt-img-hide-title','0'),(21227,714,'dt-img-hide-title','0'),(21228,715,'dt-img-hide-title','0'),(21229,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(21230,722,'dt-img-hide-title','0'),(21231,735,'dt-img-hide-title','0'),(21232,759,'dt-img-hide-title','0'),(21233,762,'dt-img-hide-title','0'),(21234,766,'dt-img-hide-title','0'),(21235,770,'dt-img-hide-title','0'),(21236,804,'dt-img-hide-title','0'),(21237,814,'dt-img-hide-title','0'),(21238,827,'dt-img-hide-title','0'),(21239,830,'dt-img-hide-title','0'),(21240,854,'dt-img-hide-title','0'),(21241,857,'dt-img-hide-title','0'),(21242,874,'dt-img-hide-title','0'),(21243,937,'dt-img-hide-title','0'),(21244,941,'dt-img-hide-title','0'),(21245,955,'dt-img-hide-title','0'),(21246,969,'_wp_attachment_image_alt','imove Freely'),(21247,969,'dt-img-hide-title','0'),(21248,1001,'dt-img-hide-title','0'),(21249,1015,'dt-img-hide-title','0'),(21250,1018,'dt-img-hide-title','0'),(21251,1020,'dt-img-hide-title','0'),(21252,1021,'dt-img-hide-title','0'),(21253,1024,'dt-img-hide-title','0'),(21254,1027,'dt-img-hide-title','0'),(21255,1030,'dt-img-hide-title','0'),(21256,1035,'dt-img-hide-title','0'),(21257,1039,'dt-img-hide-title','0'),(21258,1045,'dt-img-hide-title','0'),(21259,1051,'dt-img-hide-title','0'),(21260,1052,'dt-img-hide-title','0'),(21261,1055,'dt-img-hide-title','0'),(21262,1057,'dt-img-hide-title','0'),(21263,1061,'dt-img-hide-title','0'),(21264,1065,'dt-img-hide-title','0'),(21265,1068,'dt-img-hide-title','0'),(21266,1073,'dt-img-hide-title','0'),(21267,1078,'dt-img-hide-title','0'),(21268,1084,'dt-img-hide-title','0'),(21269,1088,'dt-img-hide-title','0'),(21270,1094,'dt-img-hide-title','0'),(21271,1096,'dt-img-hide-title','0'),(21272,1097,'dt-img-hide-title','0'),(21273,1099,'dt-img-hide-title','0'),(21274,1106,'dt-img-hide-title','0'),(21275,1110,'dt-img-hide-title','0'),(21276,1112,'_wp_attached_file','2016/07/IMG_7918-1.jpg'),(21277,1112,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2016/07/IMG_7918-1.jpg\";s:8:\"filesize\";i:144011;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(21278,1112,'dt-img-hide-title','0'),(21279,1116,'_wp_attached_file','2016/07/dreamstime_s_13250215-1.jpg'),(21280,1116,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:667;s:4:\"file\";s:35:\"2016/07/dreamstime_s_13250215-1.jpg\";s:8:\"filesize\";i:181185;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:27:\"(c) Jaeeho | Dreamstime.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21281,1116,'dt-img-hide-title','0'),(21282,1125,'_wp_attached_file','2016/07/Screen-Shot-2016-07-22-at-07.33.16-1.png'),(21283,1125,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:554;s:6:\"height\";i:357;s:4:\"file\";s:48:\"2016/07/Screen-Shot-2016-07-22-at-07.33.16-1.png\";s:8:\"filesize\";i:348078;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21284,1125,'dt-img-hide-title','0'),(21285,1129,'_wp_attached_file','2016/07/Screen-Shot-2016-07-25-at-08.42.14-1.png'),(21286,1129,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:659;s:6:\"height\";i:420;s:4:\"file\";s:48:\"2016/07/Screen-Shot-2016-07-25-at-08.42.14-1.png\";s:8:\"filesize\";i:486386;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21287,1129,'dt-img-hide-title','0'),(21288,1145,'_wp_attached_file','2016/07/Screen-Shot-2016-06-24-at-08.20.20-1.png'),(21289,1145,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:426;s:6:\"height\";i:496;s:4:\"file\";s:48:\"2016/07/Screen-Shot-2016-06-24-at-08.20.20-1.png\";s:8:\"filesize\";i:234673;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21290,1145,'dt-img-hide-title','0'),(21291,1167,'_wp_attached_file','2016/08/8-x-10-render-1-of-1-1.jpg'),(21292,1167,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:320;s:6:\"height\";i:213;s:4:\"file\";s:34:\"2016/08/8-x-10-render-1-of-1-1.jpg\";s:8:\"filesize\";i:16306;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D90\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1351796723\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"52\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21293,1167,'dt-img-hide-title','0'),(21294,1184,'_wp_attached_file','2016/08/Screen-Shot-2016-08-07-at-19.31.36-1.png'),(21295,1184,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:249;s:6:\"height\";i:305;s:4:\"file\";s:48:\"2016/08/Screen-Shot-2016-08-07-at-19.31.36-1.png\";s:8:\"filesize\";i:96203;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21296,1184,'dt-img-hide-title','0'),(21297,1186,'_wp_attached_file','2016/08/Screen-Shot-2016-08-07-at-19.32.53-2.png'),(21298,1186,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:248;s:6:\"height\";i:202;s:4:\"file\";s:48:\"2016/08/Screen-Shot-2016-08-07-at-19.32.53-2.png\";s:8:\"filesize\";i:67968;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21299,1186,'dt-img-hide-title','0'),(21300,1187,'_wp_attached_file','2016/08/Screen-Shot-2016-08-07-at-19.32.53-1-1.png'),(21301,1187,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:248;s:6:\"height\";i:202;s:4:\"file\";s:50:\"2016/08/Screen-Shot-2016-08-07-at-19.32.53-1-1.png\";s:8:\"filesize\";i:67968;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21302,1187,'dt-img-hide-title','0'),(21303,1189,'_wp_attached_file','2016/08/pushupsiStock_000004578917Large-1-scaled.jpg'),(21304,1189,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1067;s:4:\"file\";s:52:\"2016/08/pushupsiStock_000004578917Large-1-scaled.jpg\";s:8:\"filesize\";i:141675;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:7:\"unknown\";s:6:\"camera\";s:26:\"Canon EOS DIGITAL REBEL XT\";s:7:\"caption\";s:75:\"An isolated shot of a businessman doing push up while working on his laptop\";s:17:\"created_timestamp\";s:10:\"1191967674\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:19:\"Working businessman\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:29:{i:0;s:8:\"business\";i:1;s:11:\"businessman\";i:2;s:8:\"computer\";i:3;s:8:\"isolated\";i:4;s:10:\"technology\";i:5;s:8:\"exercise\";i:6;s:7:\"workout\";i:7;s:5:\"sport\";i:8;s:6:\"sporty\";i:9;s:7:\"push-up\";i:10;s:6:\"laptop\";i:11;s:3:\"man\";i:12;s:6:\"people\";i:13;s:8:\"internet\";i:14;s:7:\"working\";i:15;s:6:\"people\";i:16;s:6:\"keypad\";i:17;s:9:\"executive\";i:18;s:7:\"manager\";i:19;s:15:\"business person\";i:20;s:4:\"male\";i:21;s:4:\"suit\";i:22;s:5:\"asian\";i:23;s:12:\"professional\";i:24;s:7:\"concept\";i:25;s:10:\"conceptual\";i:26;s:8:\"metaphor\";i:27;s:11:\"hardworking\";i:28;s:10:\"hardworker\";}}s:14:\"original_image\";s:37:\"pushupsiStock_000004578917Large-1.jpg\";}'),(21305,1189,'dt-img-hide-title','0'),(21306,1194,'_wp_attached_file','2016/08/Screen-Shot-2016-08-12-at-07.13.04-1.png'),(21307,1194,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:608;s:6:\"height\";i:373;s:4:\"file\";s:48:\"2016/08/Screen-Shot-2016-08-12-at-07.13.04-1.png\";s:8:\"filesize\";i:319468;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21308,1194,'dt-img-hide-title','0'),(21309,1197,'_wp_attached_file','2016/08/Screen-Shot-2016-08-15-at-17.56.12-1.png'),(21310,1197,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:399;s:6:\"height\";i:296;s:4:\"file\";s:48:\"2016/08/Screen-Shot-2016-08-15-at-17.56.12-1.png\";s:8:\"filesize\";i:246657;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21311,1197,'dt-img-hide-title','0'),(21312,1200,'_wp_attached_file','2016/02/no_image-1.gif'),(21313,1200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:85;s:6:\"height\";i:85;s:4:\"file\";s:22:\"2016/02/no_image-1.gif\";s:8:\"filesize\";i:2084;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21314,1201,'_wp_attached_file','2016/02/No_Image-1.jpg'),(21315,1201,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:568;s:6:\"height\";i:676;s:4:\"file\";s:22:\"2016/02/No_Image-1.jpg\";s:8:\"filesize\";i:80428;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(21316,1201,'dt-img-hide-title','0'),(21317,1202,'_wp_attached_file','2016/02/tom_waldron-2.jpg'),(21318,1202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:25:\"2016/02/tom_waldron-2.jpg\";s:8:\"filesize\";i:50507;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(21319,1202,'dt-img-hide-title','0'),(21320,1203,'_wp_attached_file','2016/02/Ben_Coomber-1.jpg'),(21321,1203,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:25:\"2016/02/Ben_Coomber-1.jpg\";s:8:\"filesize\";i:9048;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21322,1203,'dt-img-hide-title','0'),(21323,1204,'_wp_attached_file','2016/02/Brendan_Chaplin-1.jpg'),(21324,1204,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:29:\"2016/02/Brendan_Chaplin-1.jpg\";s:8:\"filesize\";i:11785;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21325,1204,'dt-img-hide-title','0'),(21326,1205,'_wp_attached_file','2016/02/Stephen_Aish-2.jpg'),(21327,1205,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:26:\"2016/02/Stephen_Aish-2.jpg\";s:8:\"filesize\";i:40586;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(21328,1205,'dt-img-hide-title','0'),(21329,1206,'_wp_attached_file','2016/02/Flech-1.jpg'),(21330,1206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:19:\"2016/02/Flech-1.jpg\";s:8:\"filesize\";i:5638;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21331,1206,'dt-img-hide-title','0'),(21332,1207,'_wp_attached_file','2016/02/Mairi_Taylor-1.jpg'),(21333,1207,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:26:\"2016/02/Mairi_Taylor-1.jpg\";s:8:\"filesize\";i:7269;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21334,1207,'dt-img-hide-title','0'),(21335,1209,'_wp_attached_file','2016/02/tom_waldron-1-1.jpg'),(21336,1209,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:27:\"2016/02/tom_waldron-1-1.jpg\";s:8:\"filesize\";i:8780;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21337,1209,'dt-img-hide-title','0'),(21338,1210,'_wp_attached_file','2016/02/Stephen_Aish-1-1.jpg'),(21339,1210,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:28:\"2016/02/Stephen_Aish-1-1.jpg\";s:8:\"filesize\";i:5290;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21340,1210,'dt-img-hide-title','0'),(21341,1211,'_wp_attached_file','2016/02/Mike_Grice-1.jpg'),(21342,1211,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:24:\"2016/02/Mike_Grice-1.jpg\";s:8:\"filesize\";i:5765;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21343,1211,'dt-img-hide-title','0'),(21344,1212,'_wp_attached_file','2016/02/Rachel_France-1.jpg'),(21345,1212,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:27:\"2016/02/Rachel_France-1.jpg\";s:8:\"filesize\";i:5423;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21346,1212,'dt-img-hide-title','0'),(21347,1213,'_wp_attached_file','2016/02/biomachanices_logo-2.jpg'),(21348,1213,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:32:\"2016/02/biomachanices_logo-2.jpg\";s:8:\"filesize\";i:25588;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(21349,1213,'dt-img-hide-title','0'),(21350,1214,'_wp_attached_file','2016/02/biomachanices_logo-1-1.jpg'),(21351,1214,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:158;s:6:\"height\";i:158;s:4:\"file\";s:34:\"2016/02/biomachanices_logo-1-1.jpg\";s:8:\"filesize\";i:33136;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(21352,1214,'dt-img-hide-title','0'),(21353,1220,'_wp_attached_file','2016/08/Screen-Shot-2016-08-19-at-12.31.22-1.png'),(21354,1220,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:193;s:6:\"height\";i:190;s:4:\"file\";s:48:\"2016/08/Screen-Shot-2016-08-19-at-12.31.22-1.png\";s:8:\"filesize\";i:99782;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21355,1220,'dt-img-hide-title','0'),(21356,1223,'_wp_attached_file','2016/08/Screen-Shot-2016-08-22-at-20.59.30-1.png'),(21357,1223,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:506;s:6:\"height\";i:382;s:4:\"file\";s:48:\"2016/08/Screen-Shot-2016-08-22-at-20.59.30-1.png\";s:8:\"filesize\";i:266769;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21358,1223,'dt-img-hide-title','0'),(21359,1226,'_wp_attached_file','2016/08/Screen-Shot-2016-08-24-at-09.31.37-2.png'),(21360,1226,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:468;s:6:\"height\";i:239;s:4:\"file\";s:48:\"2016/08/Screen-Shot-2016-08-24-at-09.31.37-2.png\";s:8:\"filesize\";i:196253;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21361,1226,'dt-img-hide-title','0'),(21362,1228,'_wp_attached_file','2016/08/Screen-Shot-2016-08-24-at-09.31.37-1-1.png'),(21363,1228,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:468;s:6:\"height\";i:239;s:4:\"file\";s:50:\"2016/08/Screen-Shot-2016-08-24-at-09.31.37-1-1.png\";s:8:\"filesize\";i:196253;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21364,1228,'dt-img-hide-title','0'),(21365,1232,'_wp_attached_file','2016/08/Screen-Shot-2016-08-26-at-08.01.16-1.png'),(21366,1232,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:590;s:6:\"height\";i:493;s:4:\"file\";s:48:\"2016/08/Screen-Shot-2016-08-26-at-08.01.16-1.png\";s:8:\"filesize\";i:357150;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21367,1232,'dt-img-hide-title','0'),(21368,1235,'_wp_attached_file','2016/08/Screen-Shot-2016-08-28-at-07.37.26-1.png'),(21369,1235,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:585;s:6:\"height\";i:393;s:4:\"file\";s:48:\"2016/08/Screen-Shot-2016-08-28-at-07.37.26-1.png\";s:8:\"filesize\";i:224533;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21370,1235,'dt-img-hide-title','0'),(21371,1239,'_wp_attached_file','2016/08/Screen-Shot-2016-08-31-at-06.52.01-1.png'),(21372,1239,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:263;s:4:\"file\";s:48:\"2016/08/Screen-Shot-2016-08-31-at-06.52.01-1.png\";s:8:\"filesize\";i:153767;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21373,1239,'dt-img-hide-title','0'),(21374,1242,'_wp_attached_file','2016/09/IMG_1037-1.jpg'),(21375,1242,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:479;s:6:\"height\";i:552;s:4:\"file\";s:22:\"2016/09/IMG_1037-1.jpg\";s:8:\"filesize\";i:56665;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 4S\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1359292133\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.28\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:16:\"0.00163132137031\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(21376,1242,'dt-img-hide-title','0'),(21377,1246,'_wp_attached_file','2016/09/Screen-Shot-2016-09-05-at-14.56.12-1.png'),(21378,1246,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:596;s:6:\"height\";i:726;s:4:\"file\";s:48:\"2016/09/Screen-Shot-2016-09-05-at-14.56.12-1.png\";s:8:\"filesize\";i:812839;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21379,1246,'dt-img-hide-title','0'),(21380,1256,'_wp_attached_file','2016/09/Screen-Shot-2016-09-09-at-07.13.09-1.png'),(21381,1256,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:974;s:6:\"height\";i:514;s:4:\"file\";s:48:\"2016/09/Screen-Shot-2016-09-09-at-07.13.09-1.png\";s:8:\"filesize\";i:1050130;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21382,1256,'dt-img-hide-title','0'),(21383,1262,'_wp_attached_file','2016/09/1512862_10155715079610570_2017315832845655257_n-1.jpg'),(21384,1262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:539;s:6:\"height\";i:540;s:4:\"file\";s:61:\"2016/09/1512862_10155715079610570_2017315832845655257_n-1.jpg\";s:8:\"filesize\";i:17711;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21385,1262,'dt-img-hide-title','0'),(21386,1265,'_wp_attached_file','2016/09/Screen-Shot-2016-09-14-at-08.32.41-1.png'),(21387,1265,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:662;s:6:\"height\";i:408;s:4:\"file\";s:48:\"2016/09/Screen-Shot-2016-09-14-at-08.32.41-1.png\";s:8:\"filesize\";i:91062;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21388,1265,'dt-img-hide-title','0'),(21389,1269,'_wp_attached_file','2016/09/Screen-Shot-2016-09-16-at-07.31.40-1.png'),(21390,1269,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:818;s:6:\"height\";i:686;s:4:\"file\";s:48:\"2016/09/Screen-Shot-2016-09-16-at-07.31.40-1.png\";s:8:\"filesize\";i:760045;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21391,1269,'dt-img-hide-title','0'),(21392,1275,'_wp_attached_file','2016/09/Screen-Shot-2016-09-21-at-08.50.14-1.png'),(21393,1275,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:442;s:6:\"height\";i:446;s:4:\"file\";s:48:\"2016/09/Screen-Shot-2016-09-21-at-08.50.14-1.png\";s:8:\"filesize\";i:365369;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21394,1275,'dt-img-hide-title','0'),(21395,1279,'_wp_attached_file','2016/09/Screen-Shot-2016-09-21-at-09.03.28-1.png'),(21396,1279,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:944;s:6:\"height\";i:476;s:4:\"file\";s:48:\"2016/09/Screen-Shot-2016-09-21-at-09.03.28-1.png\";s:8:\"filesize\";i:714727;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21397,1279,'dt-img-hide-title','0'),(21398,1312,'_wp_attached_file','2016/09/Screen-Shot-2016-09-27-at-06.13.02-1.png'),(21399,1312,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2336;s:6:\"height\";i:1374;s:4:\"file\";s:48:\"2016/09/Screen-Shot-2016-09-27-at-06.13.02-1.png\";s:8:\"filesize\";i:3952334;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21400,1312,'dt-img-hide-title','0'),(21401,1316,'_wp_attached_file','2016/09/Screen-Shot-2016-09-29-at-07.55.35-1.png'),(21402,1316,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1122;s:6:\"height\";i:628;s:4:\"file\";s:48:\"2016/09/Screen-Shot-2016-09-29-at-07.55.35-1.png\";s:8:\"filesize\";i:782550;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21403,1316,'dt-img-hide-title','0'),(21404,1320,'_wp_attached_file','2016/10/Screen-Shot-2016-10-01-at-05.55.06-1.png'),(21405,1320,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1626;s:6:\"height\";i:930;s:4:\"file\";s:48:\"2016/10/Screen-Shot-2016-10-01-at-05.55.06-1.png\";s:8:\"filesize\";i:1655037;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21406,1320,'dt-img-hide-title','0'),(21407,1326,'_wp_attached_file','2016/10/Screen-Shot-2016-10-10-at-19.55.53-1.png'),(21408,1326,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1978;s:6:\"height\";i:1252;s:4:\"file\";s:48:\"2016/10/Screen-Shot-2016-10-10-at-19.55.53-1.png\";s:8:\"filesize\";i:3986137;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21409,1326,'dt-img-hide-title','0'),(21410,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(21411,1334,'_wp_attached_file','2016/10/woman-on-beach-1.jpg'),(21412,1334,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:28:\"2016/10/woman-on-beach-1.jpg\";s:8:\"filesize\";i:161442;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(21413,1334,'dt-img-hide-title','0'),(21414,1338,'_wp_attached_file','2016/10/Biomechanics-Coach-CMYK-300dpi-1.jpg'),(21415,1338,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2111;s:6:\"height\";i:702;s:4:\"file\";s:44:\"2016/10/Biomechanics-Coach-CMYK-300dpi-1.jpg\";s:8:\"filesize\";i:507325;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21416,1338,'dt-img-hide-title','0'),(21417,1339,'_wp_attached_file','2016/10/IMG_3647-1-scaled.jpg'),(21418,1339,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2016/10/IMG_3647-1-scaled.jpg\";s:8:\"filesize\";i:542195;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_3647-1.jpg\";}'),(21419,1339,'dt-img-hide-title','0'),(21420,1343,'_wp_attached_file','2016/10/Screen-Shot-2016-10-19-at-08.44.06-1.png'),(21421,1343,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1120;s:6:\"height\";i:584;s:4:\"file\";s:48:\"2016/10/Screen-Shot-2016-10-19-at-08.44.06-1.png\";s:8:\"filesize\";i:498999;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21422,1343,'dt-img-hide-title','0'),(21423,1347,'_wp_attached_file','2016/10/Screen-Shot-2016-10-21-at-06.40.34-1.png'),(21424,1347,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1130;s:6:\"height\";i:750;s:4:\"file\";s:48:\"2016/10/Screen-Shot-2016-10-21-at-06.40.34-1.png\";s:8:\"filesize\";i:1405161;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21425,1347,'dt-img-hide-title','0'),(21426,1351,'_wp_attached_file','2016/10/Screen-Shot-2015-11-21-at-20.08.59-1.png'),(21427,1351,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:829;s:6:\"height\";i:411;s:4:\"file\";s:48:\"2016/10/Screen-Shot-2015-11-21-at-20.08.59-1.png\";s:8:\"filesize\";i:655601;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21428,1351,'dt-img-hide-title','0'),(21429,38588,'_wp_attachment_context','custom-header'),(21430,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(21431,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(21432,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(21433,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(21434,192,'dt-img-hide-title','0'),(21435,194,'dt-img-hide-title','0'),(21436,205,'dt-img-hide-title','0'),(21437,206,'dt-img-hide-title','0'),(21438,208,'dt-img-hide-title','0'),(21439,247,'dt-img-hide-title','0'),(21440,248,'_wp_attachment_context','site-icon'),(21441,248,'dt-img-hide-title','0'),(21442,265,'dt-img-hide-title','0'),(21443,283,'dt-img-hide-title','0'),(21444,284,'dt-img-hide-title','0'),(21445,285,'dt-img-hide-title','0'),(21446,287,'dt-img-hide-title','0'),(21447,290,'dt-img-hide-title','0'),(21448,291,'dt-img-hide-title','0'),(21449,294,'dt-img-hide-title','0'),(21450,297,'dt-img-hide-title','0'),(21451,333,'dt-img-hide-title','0'),(21452,341,'dt-img-hide-title','0'),(21453,407,'dt-img-hide-title','0'),(21454,458,'dt-img-hide-title','0'),(21455,495,'dt-img-hide-title','0'),(21456,497,'dt-img-hide-title','0'),(21457,505,'dt-img-hide-title','0'),(21458,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(21459,210,'dt-img-link',''),(21460,210,'dt-img-hide-title','0'),(21461,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(21462,221,'dt-img-link',''),(21463,221,'dt-img-hide-title','0'),(21464,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(21465,224,'dt-img-link',''),(21466,224,'dt-img-hide-title','0'),(21467,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(21468,228,'dt-img-link',''),(21469,228,'dt-img-hide-title','0'),(21470,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(21471,230,'dt-img-link',''),(21472,230,'dt-img-hide-title','0'),(21473,237,'dt-img-hide-title','0'),(21474,237,'dt-img-link',''),(21475,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(21476,557,'dt-img-hide-title','0'),(21477,559,'dt-img-hide-title','0'),(21478,562,'dt-img-hide-title','0'),(21479,569,'dt-img-hide-title','0'),(21480,592,'dt-img-hide-title','0'),(21481,596,'dt-img-hide-title','0'),(21482,617,'dt-img-hide-title','0'),(21483,620,'dt-img-hide-title','0'),(21484,621,'dt-img-hide-title','0'),(21485,623,'dt-img-hide-title','0'),(21486,624,'dt-img-hide-title','0'),(21487,644,'dt-img-hide-title','0'),(21488,648,'dt-img-hide-title','0'),(21489,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(21490,824,'dt-img-link',''),(21491,824,'dt-img-hide-title','0'),(21492,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(21493,825,'dt-img-link',''),(21494,825,'dt-img-hide-title','0'),(21495,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(21496,828,'dt-img-link',''),(21497,828,'dt-img-hide-title','0'),(21498,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(21499,1450,'dt-img-link',''),(21500,1450,'dt-img-hide-title','0'),(21501,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(21502,1451,'dt-img-link',''),(21503,1451,'dt-img-hide-title','0'),(21504,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(21505,1452,'dt-img-link',''),(21506,1452,'dt-img-hide-title','0'),(21507,652,'dt-img-hide-title','0'),(21508,655,'dt-img-hide-title','0'),(21509,675,'dt-img-hide-title','0'),(21510,678,'dt-img-hide-title','0'),(21511,683,'dt-img-hide-title','0'),(21512,703,'dt-img-hide-title','0'),(21513,706,'dt-img-hide-title','0'),(21514,709,'dt-img-hide-title','0'),(21515,712,'dt-img-hide-title','0'),(21516,713,'dt-img-hide-title','0'),(21517,714,'dt-img-hide-title','0'),(21518,715,'dt-img-hide-title','0'),(21519,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(21520,722,'dt-img-hide-title','0'),(21521,735,'dt-img-hide-title','0'),(21522,759,'dt-img-hide-title','0'),(21523,762,'dt-img-hide-title','0'),(21524,766,'dt-img-hide-title','0'),(21525,770,'dt-img-hide-title','0'),(21526,804,'dt-img-hide-title','0'),(21527,814,'dt-img-hide-title','0'),(21528,827,'dt-img-hide-title','0'),(21529,830,'dt-img-hide-title','0'),(21530,854,'dt-img-hide-title','0'),(21531,857,'dt-img-hide-title','0'),(21532,874,'dt-img-hide-title','0'),(21533,937,'dt-img-hide-title','0'),(21534,941,'dt-img-hide-title','0'),(21535,955,'dt-img-hide-title','0'),(21536,969,'_wp_attachment_image_alt','imove Freely'),(21537,969,'dt-img-hide-title','0'),(21538,1001,'dt-img-hide-title','0'),(21539,1015,'dt-img-hide-title','0'),(21540,1018,'dt-img-hide-title','0'),(21541,1020,'dt-img-hide-title','0'),(21542,1021,'dt-img-hide-title','0'),(21543,1024,'dt-img-hide-title','0'),(21544,1027,'dt-img-hide-title','0'),(21545,1030,'dt-img-hide-title','0'),(21546,1035,'dt-img-hide-title','0'),(21547,1039,'dt-img-hide-title','0'),(21548,1045,'dt-img-hide-title','0'),(21549,1051,'dt-img-hide-title','0'),(21550,1052,'dt-img-hide-title','0'),(21551,1055,'dt-img-hide-title','0'),(21552,1057,'dt-img-hide-title','0'),(21553,1061,'dt-img-hide-title','0'),(21554,1065,'dt-img-hide-title','0'),(21555,1068,'dt-img-hide-title','0'),(21556,1073,'dt-img-hide-title','0'),(21557,1078,'dt-img-hide-title','0'),(21558,1084,'dt-img-hide-title','0'),(21559,1088,'dt-img-hide-title','0'),(21560,1094,'dt-img-hide-title','0'),(21561,1096,'dt-img-hide-title','0'),(21562,1097,'dt-img-hide-title','0'),(21563,1099,'dt-img-hide-title','0'),(21564,1106,'dt-img-hide-title','0'),(21565,1110,'dt-img-hide-title','0'),(21566,1112,'dt-img-hide-title','0'),(21567,1116,'dt-img-hide-title','0'),(21568,1125,'dt-img-hide-title','0'),(21569,1129,'dt-img-hide-title','0'),(21570,1145,'dt-img-hide-title','0'),(21571,1167,'dt-img-hide-title','0'),(21572,1184,'dt-img-hide-title','0'),(21573,1186,'dt-img-hide-title','0'),(21574,1187,'dt-img-hide-title','0'),(21575,1189,'dt-img-hide-title','0'),(21576,1194,'dt-img-hide-title','0'),(21577,1197,'dt-img-hide-title','0'),(21578,1201,'dt-img-hide-title','0'),(21579,1202,'dt-img-hide-title','0'),(21580,1203,'dt-img-hide-title','0'),(21581,1204,'dt-img-hide-title','0'),(21582,1205,'dt-img-hide-title','0'),(21583,1206,'dt-img-hide-title','0'),(21584,1207,'dt-img-hide-title','0'),(21585,1209,'dt-img-hide-title','0'),(21586,1210,'dt-img-hide-title','0'),(21587,1211,'dt-img-hide-title','0'),(21588,1212,'dt-img-hide-title','0'),(21589,1213,'dt-img-hide-title','0'),(21590,1214,'dt-img-hide-title','0'),(21591,1220,'dt-img-hide-title','0'),(21592,1223,'dt-img-hide-title','0'),(21593,1226,'dt-img-hide-title','0'),(21594,1228,'dt-img-hide-title','0'),(21595,1232,'dt-img-hide-title','0'),(21596,1235,'dt-img-hide-title','0'),(21597,1239,'dt-img-hide-title','0'),(21598,1242,'dt-img-hide-title','0'),(21599,1246,'dt-img-hide-title','0'),(21600,1256,'dt-img-hide-title','0'),(21601,1262,'dt-img-hide-title','0'),(21602,1265,'dt-img-hide-title','0'),(21603,1269,'dt-img-hide-title','0'),(21604,1275,'dt-img-hide-title','0'),(21605,1279,'dt-img-hide-title','0'),(21606,1312,'dt-img-hide-title','0'),(21607,1316,'dt-img-hide-title','0'),(21608,1320,'dt-img-hide-title','0'),(21609,1326,'dt-img-hide-title','0'),(21610,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(21611,1334,'dt-img-hide-title','0'),(21612,1338,'dt-img-hide-title','0'),(21613,1339,'dt-img-hide-title','0'),(21614,1343,'dt-img-hide-title','0'),(21615,1347,'dt-img-hide-title','0'),(21616,1351,'dt-img-hide-title','0'),(21617,38588,'_wp_attachment_context','custom-header'),(21618,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(21619,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(21620,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(21621,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(21622,192,'dt-img-hide-title','0'),(21623,194,'dt-img-hide-title','0'),(21624,205,'dt-img-hide-title','0'),(21625,206,'dt-img-hide-title','0'),(21626,208,'dt-img-hide-title','0'),(21627,247,'dt-img-hide-title','0'),(21628,248,'_wp_attachment_context','site-icon'),(21629,248,'dt-img-hide-title','0'),(21630,265,'dt-img-hide-title','0'),(21631,283,'dt-img-hide-title','0'),(21632,284,'dt-img-hide-title','0'),(21633,285,'dt-img-hide-title','0'),(21634,287,'dt-img-hide-title','0'),(21635,290,'dt-img-hide-title','0'),(21636,291,'dt-img-hide-title','0'),(21637,294,'dt-img-hide-title','0'),(21638,297,'dt-img-hide-title','0'),(21639,333,'dt-img-hide-title','0'),(21640,341,'dt-img-hide-title','0'),(21641,407,'dt-img-hide-title','0'),(21642,458,'dt-img-hide-title','0'),(21643,495,'dt-img-hide-title','0'),(21644,497,'dt-img-hide-title','0'),(21645,505,'dt-img-hide-title','0'),(21646,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(21647,210,'dt-img-link',''),(21648,210,'dt-img-hide-title','0'),(21649,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(21650,221,'dt-img-link',''),(21651,221,'dt-img-hide-title','0'),(21652,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(21653,224,'dt-img-link',''),(21654,224,'dt-img-hide-title','0'),(21655,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(21656,228,'dt-img-link',''),(21657,228,'dt-img-hide-title','0'),(21658,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(21659,230,'dt-img-link',''),(21660,230,'dt-img-hide-title','0'),(21661,237,'dt-img-hide-title','0'),(21662,237,'dt-img-link',''),(21663,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(21664,557,'dt-img-hide-title','0'),(21665,559,'dt-img-hide-title','0'),(21666,562,'dt-img-hide-title','0'),(21667,569,'dt-img-hide-title','0'),(21668,592,'dt-img-hide-title','0'),(21669,596,'dt-img-hide-title','0'),(21670,617,'dt-img-hide-title','0'),(21671,620,'dt-img-hide-title','0'),(21672,621,'dt-img-hide-title','0'),(21673,623,'dt-img-hide-title','0'),(21674,624,'dt-img-hide-title','0'),(21675,644,'dt-img-hide-title','0'),(21676,648,'dt-img-hide-title','0'),(21677,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(21678,824,'dt-img-link',''),(21679,824,'dt-img-hide-title','0'),(21680,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(21681,825,'dt-img-link',''),(21682,825,'dt-img-hide-title','0'),(21683,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(21684,828,'dt-img-link',''),(21685,828,'dt-img-hide-title','0'),(21686,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(21687,1450,'dt-img-link',''),(21688,1450,'dt-img-hide-title','0'),(21689,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(21690,1451,'dt-img-link',''),(21691,1451,'dt-img-hide-title','0'),(21692,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(21693,1452,'dt-img-link',''),(21694,1452,'dt-img-hide-title','0'),(21695,652,'dt-img-hide-title','0'),(21696,655,'dt-img-hide-title','0'),(21697,675,'dt-img-hide-title','0'),(21698,678,'dt-img-hide-title','0'),(21699,683,'dt-img-hide-title','0'),(21700,703,'dt-img-hide-title','0'),(21701,706,'dt-img-hide-title','0'),(21702,709,'dt-img-hide-title','0'),(21703,712,'dt-img-hide-title','0'),(21704,713,'dt-img-hide-title','0'),(21705,714,'dt-img-hide-title','0'),(21706,715,'dt-img-hide-title','0'),(21707,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(21708,722,'dt-img-hide-title','0'),(21709,735,'dt-img-hide-title','0'),(21710,759,'dt-img-hide-title','0'),(21711,762,'dt-img-hide-title','0'),(21712,766,'dt-img-hide-title','0'),(21713,770,'dt-img-hide-title','0'),(21714,804,'dt-img-hide-title','0'),(21715,814,'dt-img-hide-title','0'),(21716,827,'dt-img-hide-title','0'),(21717,830,'dt-img-hide-title','0'),(21718,854,'dt-img-hide-title','0'),(21719,857,'dt-img-hide-title','0'),(21720,874,'dt-img-hide-title','0'),(21721,937,'dt-img-hide-title','0'),(21722,941,'dt-img-hide-title','0'),(21723,955,'dt-img-hide-title','0'),(21724,969,'_wp_attachment_image_alt','imove Freely'),(21725,969,'dt-img-hide-title','0'),(21726,1001,'dt-img-hide-title','0'),(21727,1015,'dt-img-hide-title','0'),(21728,1018,'dt-img-hide-title','0'),(21729,1020,'dt-img-hide-title','0'),(21730,1021,'dt-img-hide-title','0'),(21731,1024,'dt-img-hide-title','0'),(21732,1027,'dt-img-hide-title','0'),(21733,1030,'dt-img-hide-title','0'),(21734,1035,'dt-img-hide-title','0'),(21735,1039,'dt-img-hide-title','0'),(21736,1045,'dt-img-hide-title','0'),(21737,1051,'dt-img-hide-title','0'),(21738,1052,'dt-img-hide-title','0'),(21739,1055,'dt-img-hide-title','0'),(21740,1057,'dt-img-hide-title','0'),(21741,1061,'dt-img-hide-title','0'),(21742,1065,'dt-img-hide-title','0'),(21743,1068,'dt-img-hide-title','0'),(21744,1073,'dt-img-hide-title','0'),(21745,1078,'dt-img-hide-title','0'),(21746,1084,'dt-img-hide-title','0'),(21747,1088,'dt-img-hide-title','0'),(21748,1094,'dt-img-hide-title','0'),(21749,1096,'dt-img-hide-title','0'),(21750,1097,'dt-img-hide-title','0'),(21751,1099,'dt-img-hide-title','0'),(21752,1106,'dt-img-hide-title','0'),(21753,1110,'dt-img-hide-title','0'),(21754,1112,'dt-img-hide-title','0'),(21755,1116,'dt-img-hide-title','0'),(21756,1125,'dt-img-hide-title','0'),(21757,1129,'dt-img-hide-title','0'),(21758,1145,'dt-img-hide-title','0'),(21759,1167,'dt-img-hide-title','0'),(21760,1184,'dt-img-hide-title','0'),(21761,1186,'dt-img-hide-title','0'),(21762,1187,'dt-img-hide-title','0'),(21763,1189,'dt-img-hide-title','0'),(21764,1194,'dt-img-hide-title','0'),(21765,1197,'dt-img-hide-title','0'),(21766,1201,'dt-img-hide-title','0'),(21767,1202,'dt-img-hide-title','0'),(21768,1203,'dt-img-hide-title','0'),(21769,1204,'dt-img-hide-title','0'),(21770,1205,'dt-img-hide-title','0'),(21771,1206,'dt-img-hide-title','0'),(21772,1207,'dt-img-hide-title','0'),(21773,1209,'dt-img-hide-title','0'),(21774,1210,'dt-img-hide-title','0'),(21775,1211,'dt-img-hide-title','0'),(21776,1212,'dt-img-hide-title','0'),(21777,1213,'dt-img-hide-title','0'),(21778,1214,'dt-img-hide-title','0'),(21779,1220,'dt-img-hide-title','0'),(21780,1223,'dt-img-hide-title','0'),(21781,1226,'dt-img-hide-title','0'),(21782,1228,'dt-img-hide-title','0'),(21783,1232,'dt-img-hide-title','0'),(21784,1235,'dt-img-hide-title','0'),(21785,1239,'dt-img-hide-title','0'),(21786,1242,'dt-img-hide-title','0'),(21787,1246,'dt-img-hide-title','0'),(21788,1256,'dt-img-hide-title','0'),(21789,1262,'dt-img-hide-title','0'),(21790,1265,'dt-img-hide-title','0'),(21791,1269,'dt-img-hide-title','0'),(21792,1275,'dt-img-hide-title','0'),(21793,1279,'dt-img-hide-title','0'),(21794,1312,'dt-img-hide-title','0'),(21795,1316,'dt-img-hide-title','0'),(21796,1320,'dt-img-hide-title','0'),(21797,1326,'dt-img-hide-title','0'),(21798,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(21799,1334,'dt-img-hide-title','0'),(21800,1338,'dt-img-hide-title','0'),(21801,1339,'dt-img-hide-title','0'),(21802,1343,'dt-img-hide-title','0'),(21803,1347,'dt-img-hide-title','0'),(21804,1351,'dt-img-hide-title','0'),(21805,1354,'_wp_attached_file','2016/10/Screen-Shot-2016-10-26-at-08.01.02-1.png'),(21806,1354,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1394;s:6:\"height\";i:534;s:4:\"file\";s:48:\"2016/10/Screen-Shot-2016-10-26-at-08.01.02-1.png\";s:8:\"filesize\";i:814593;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21807,1354,'dt-img-hide-title','0'),(21808,1357,'_wp_attached_file','2016/10/Screen-Shot-2016-10-28-at-09.45.03-2.png'),(21809,1357,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:870;s:6:\"height\";i:774;s:4:\"file\";s:48:\"2016/10/Screen-Shot-2016-10-28-at-09.45.03-2.png\";s:8:\"filesize\";i:851649;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21810,1357,'dt-img-hide-title','0'),(21811,1359,'_wp_attached_file','2016/10/Screen-Shot-2016-10-28-at-09.45.03-1-1.png'),(21812,1359,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:870;s:6:\"height\";i:774;s:4:\"file\";s:50:\"2016/10/Screen-Shot-2016-10-28-at-09.45.03-1-1.png\";s:8:\"filesize\";i:851649;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21813,1359,'dt-img-hide-title','0'),(21814,1362,'_wp_attached_file','2016/10/IMG_0353-1.jpg'),(21815,1362,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1500;s:6:\"height\";i:2100;s:4:\"file\";s:22:\"2016/10/IMG_0353-1.jpg\";s:8:\"filesize\";i:1711658;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D3X\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1415887186\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"120\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:17:\"0.011111111111111\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:21:\"Quartz website photos\";}}}'),(21816,1362,'dt-img-hide-title','0'),(21817,1366,'_wp_attached_file','2016/11/humerus-1.jpg'),(21818,1366,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:618;s:6:\"height\";i:557;s:4:\"file\";s:21:\"2016/11/humerus-1.jpg\";s:8:\"filesize\";i:21672;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21819,1366,'dt-img-hide-title','0'),(21820,1379,'_wp_attached_file','2016/11/945943_687454997947221_1738088506_n1-1.jpg'),(21821,1379,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:604;s:6:\"height\";i:402;s:4:\"file\";s:50:\"2016/11/945943_687454997947221_1738088506_n1-1.jpg\";s:8:\"filesize\";i:31832;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21822,1379,'dt-img-hide-title','0'),(21823,1398,'_wp_attached_file','2016/11/Screen-Shot-2016-11-10-at-07.10.48-1.png'),(21824,1398,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:576;s:6:\"height\";i:376;s:4:\"file\";s:48:\"2016/11/Screen-Shot-2016-11-10-at-07.10.48-1.png\";s:8:\"filesize\";i:121931;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21825,1398,'dt-img-hide-title','0'),(21826,1403,'_wp_attached_file','2016/11/Screen-Shot-2016-11-12-at-06.37.45-1.png'),(21827,1403,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1384;s:6:\"height\";i:904;s:4:\"file\";s:48:\"2016/11/Screen-Shot-2016-11-12-at-06.37.45-1.png\";s:8:\"filesize\";i:1045044;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21828,1403,'dt-img-hide-title','0'),(21829,1406,'_wp_attached_file','2016/11/Screen-Shot-2016-11-14-at-06.53.33-1.png'),(21830,1406,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1268;s:6:\"height\";i:434;s:4:\"file\";s:48:\"2016/11/Screen-Shot-2016-11-14-at-06.53.33-1.png\";s:8:\"filesize\";i:298539;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21831,1406,'dt-img-hide-title','0'),(21832,1410,'_wp_attached_file','2016/11/Screen-Shot-2016-11-17-at-07.19.00-1.png'),(21833,1410,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1120;s:6:\"height\";i:552;s:4:\"file\";s:48:\"2016/11/Screen-Shot-2016-11-17-at-07.19.00-1.png\";s:8:\"filesize\";i:1096508;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21834,1410,'dt-img-hide-title','0'),(21835,1413,'_wp_attached_file','2016/11/Screen-Shot-2016-11-20-at-08.02.59-1.png'),(21836,1413,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1628;s:6:\"height\";i:800;s:4:\"file\";s:48:\"2016/11/Screen-Shot-2016-11-20-at-08.02.59-1.png\";s:8:\"filesize\";i:1019445;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21837,1413,'dt-img-hide-title','0'),(21838,1416,'_wp_attached_file','2016/11/IMG_6258-1.jpg'),(21839,1416,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:22:\"2016/11/IMG_6258-1.jpg\";s:8:\"filesize\";i:264184;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(21840,1416,'dt-img-hide-title','0'),(21841,1419,'_wp_attached_file','2016/11/Screen-Shot-2016-11-25-at-11.14.22-1.png'),(21842,1419,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:778;s:6:\"height\";i:740;s:4:\"file\";s:48:\"2016/11/Screen-Shot-2016-11-25-at-11.14.22-1.png\";s:8:\"filesize\";i:1136246;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21843,1419,'dt-img-hide-title','0'),(21844,1423,'_wp_attached_file','2016/11/Screen-Shot-2016-11-27-at-06.48.29-1.png'),(21845,1423,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:798;s:6:\"height\";i:614;s:4:\"file\";s:48:\"2016/11/Screen-Shot-2016-11-27-at-06.48.29-1.png\";s:8:\"filesize\";i:261085;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21846,1423,'dt-img-hide-title','0'),(21847,1429,'_wp_attached_file','2016/11/Screen-Shot-2016-11-13-at-07.21.13-1.png'),(21848,1429,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:554;s:6:\"height\";i:834;s:4:\"file\";s:48:\"2016/11/Screen-Shot-2016-11-13-at-07.21.13-1.png\";s:8:\"filesize\";i:297960;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21849,1429,'dt-img-hide-title','0'),(21850,1430,'_wp_attached_file','2016/12/Screen-Shot-2016-12-01-at-06.46.06-1.png'),(21851,1430,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:722;s:6:\"height\";i:746;s:4:\"file\";s:48:\"2016/12/Screen-Shot-2016-12-01-at-06.46.06-1.png\";s:8:\"filesize\";i:630832;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21852,1430,'dt-img-hide-title','0'),(21853,1433,'_wp_attached_file','2016/12/Screen-Shot-2016-11-10-at-08.16.36-1.png'),(21854,1433,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1498;s:6:\"height\";i:1218;s:4:\"file\";s:48:\"2016/12/Screen-Shot-2016-11-10-at-08.16.36-1.png\";s:8:\"filesize\";i:2785714;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21855,1433,'dt-img-hide-title','0'),(21856,1463,'_wp_attached_file','2016/12/605.png'),(21857,1463,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:15:\"2016/12/605.png\";s:8:\"filesize\";i:94295;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21858,1463,'dt-img-hide-title','0'),(21859,1463,'dt-img-hide-title','0'),(21860,1463,'dt-img-hide-title','0'),(21861,1463,'dt-img-hide-title','0'),(21862,1463,'dt-img-hide-title','0'),(21863,1468,'_wp_attached_file','2016/12/bg-rev-d.jpg'),(21864,1468,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2016/12/bg-rev-d.jpg\";s:8:\"filesize\";i:132391;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21865,1468,'dt-img-hide-title','0'),(21866,2229,'_wp_attached_file','2016/12/MG_9943-1-1-scaled.jpg'),(21867,2229,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:30:\"2016/12/MG_9943-1-1-scaled.jpg\";s:8:\"filesize\";i:428620;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469184327\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:15:\"MG_9943-1-1.jpg\";}'),(21868,2229,'dt-img-hide-title','0'),(21869,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(21870,2230,'_wp_attached_file','2016/12/running-up-stairs-1.jpg'),(21871,2230,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:682;s:6:\"height\";i:1024;s:4:\"file\";s:31:\"2016/12/running-up-stairs-1.jpg\";s:8:\"filesize\";i:251043;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:22:\"© Royalty-Free/Corbis\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:70:\"Back View of Man Running on Stairs --- Image by © Royalty-Free/Corbis\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:32:\"© Corbis.  All Rights Reserved.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:34:\"Back View of Man Running on Stairs\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:15:{i:0;s:1:\"1\";i:1;s:6:\"Adults\";i:2;s:9:\"Back view\";i:3;s:8:\"Clothing\";i:4;s:5:\"Males\";i:5;s:3:\"Men\";i:6;s:6:\"Motion\";i:7;s:8:\"Outdoors\";i:8;s:6:\"Outfit\";i:9;s:6:\"People\";i:10;s:10:\"Recreation\";i:11;s:7:\"Running\";i:12;s:6:\"Sports\";i:13;s:7:\"Uniform\";i:14;s:6:\"Whites\";}}}'),(21872,2230,'dt-img-hide-title','0'),(21873,2231,'_wp_attached_file','2016/12/Screen-Shot-2016-12-14-at-08.01.47-1.png'),(21874,2231,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:944;s:6:\"height\";i:350;s:4:\"file\";s:48:\"2016/12/Screen-Shot-2016-12-14-at-08.01.47-1.png\";s:8:\"filesize\";i:145538;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21875,2231,'dt-img-hide-title','0'),(21876,2232,'_wp_attached_file','2016/12/Screen-Shot-2016-12-17-at-08.18.50-1.png'),(21877,2232,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:886;s:6:\"height\";i:528;s:4:\"file\";s:48:\"2016/12/Screen-Shot-2016-12-17-at-08.18.50-1.png\";s:8:\"filesize\";i:365129;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21878,2232,'dt-img-hide-title','0'),(21879,2233,'_wp_attached_file','2016/12/Screen-Shot-2016-12-19-at-09.05.47-1.png'),(21880,2233,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1182;s:6:\"height\";i:626;s:4:\"file\";s:48:\"2016/12/Screen-Shot-2016-12-19-at-09.05.47-1.png\";s:8:\"filesize\";i:633098;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21881,2233,'dt-img-hide-title','0'),(21882,2234,'_wp_attached_file','2016/12/Screen-Shot-2016-12-21-at-07.29.24-1.png'),(21883,2234,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:394;s:6:\"height\";i:282;s:4:\"file\";s:48:\"2016/12/Screen-Shot-2016-12-21-at-07.29.24-1.png\";s:8:\"filesize\";i:74031;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21884,2234,'dt-img-hide-title','0'),(21885,2235,'_wp_attached_file','2016/12/IMG_0065-1.jpg'),(21886,2235,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:22:\"2016/12/IMG_0065-1.jpg\";s:8:\"filesize\";i:112417;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(21887,2235,'dt-img-hide-title','0'),(21888,1474,'_wp_attached_file','2017/01/Biomechanics-Education-Logo-1.jpg'),(21889,1474,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:160;s:6:\"height\";i:80;s:4:\"file\";s:41:\"2017/01/Biomechanics-Education-Logo-1.jpg\";s:8:\"filesize\";i:6467;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21890,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(21891,1474,'dt-img-hide-title','0'),(21892,1475,'_wp_attached_file','2017/01/Biomechanics-Education-Logo-For-Mobile-1.jpg'),(21893,1475,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:60;s:4:\"file\";s:52:\"2017/01/Biomechanics-Education-Logo-For-Mobile-1.jpg\";s:8:\"filesize\";i:4355;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21894,1475,'dt-img-hide-title','0'),(21895,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(21896,1476,'_wp_attached_file','2017/01/Biomechanics-Education-Homepage-Hero-1.jpg'),(21897,1476,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1903;s:6:\"height\";i:650;s:4:\"file\";s:50:\"2017/01/Biomechanics-Education-Homepage-Hero-1.jpg\";s:8:\"filesize\";i:107025;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21898,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(21899,1476,'dt-img-hide-title','0'),(21900,1478,'_wp_attached_file','2017/01/Biomechanics-Education-Homepage-Hero-2-1.jpg'),(21901,1478,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1903;s:6:\"height\";i:650;s:4:\"file\";s:52:\"2017/01/Biomechanics-Education-Homepage-Hero-2-1.jpg\";s:8:\"filesize\";i:95552;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21902,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(21903,1478,'dt-img-hide-title','0'),(21904,1479,'_wp_attached_file','2017/01/Screen-Shot-2017-01-13-at-10.57.16-1.png'),(21905,1479,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:48:\"2017/01/Screen-Shot-2017-01-13-at-10.57.16-1.png\";s:8:\"filesize\";i:1202445;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21906,1479,'dt-img-hide-title','0'),(21907,1489,'_wp_attached_file','2016/03/Biomechanics-Education-Exercise-With-Ropes-2.jpg'),(21908,1489,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:56:\"2016/03/Biomechanics-Education-Exercise-With-Ropes-2.jpg\";s:8:\"filesize\";i:45588;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21909,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(21910,1489,'dt-img-hide-title','0'),(21911,1500,'_wp_attached_file','2017/01/Biomechanics-Education-Logo100-1.jpg'),(21912,1500,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:200;s:6:\"height\";i:100;s:4:\"file\";s:44:\"2017/01/Biomechanics-Education-Logo100-1.jpg\";s:8:\"filesize\";i:8202;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21913,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(21914,1500,'dt-img-hide-title','0'),(21915,1501,'_wp_attached_file','2017/01/Biomechanics-Education-Homepage-Hero-3-1.jpg'),(21916,1501,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1903;s:6:\"height\";i:650;s:4:\"file\";s:52:\"2017/01/Biomechanics-Education-Homepage-Hero-3-1.jpg\";s:8:\"filesize\";i:96445;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21917,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(21918,1501,'dt-img-hide-title','0'),(21919,1504,'_wp_attached_file','2016/03/Biomechanics-Education-Banner-Homepage-1.jpg'),(21920,1504,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1903;s:6:\"height\";i:800;s:4:\"file\";s:52:\"2016/03/Biomechanics-Education-Banner-Homepage-1.jpg\";s:8:\"filesize\";i:118999;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21921,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(21922,1504,'dt-img-hide-title','0'),(21923,1508,'_wp_attached_file','2017/01/Biomechanics-Education-Homepage-Hero-4-1.jpg'),(21924,1508,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1903;s:6:\"height\";i:650;s:4:\"file\";s:52:\"2017/01/Biomechanics-Education-Homepage-Hero-4-1.jpg\";s:8:\"filesize\";i:77296;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21925,1508,'_wp_attachment_image_alt',''),(21926,1508,'dt-img-hide-title','0'),(21927,1508,'dt-video-url',''),(21928,1508,'dt-img-link',''),(21929,1510,'_wp_attached_file','2016/03/Biomechanics-Education-Exercise-With-Ropes-1-1.jpg'),(21930,1510,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:58:\"2016/03/Biomechanics-Education-Exercise-With-Ropes-1-1.jpg\";s:8:\"filesize\";i:22790;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21931,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(21932,1510,'dt-img-hide-title','0'),(21933,1514,'_wp_attached_file','2017/01/banner-background-gradient-1.jpg'),(21934,1514,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1903;s:6:\"height\";i:730;s:4:\"file\";s:40:\"2017/01/banner-background-gradient-1.jpg\";s:8:\"filesize\";i:28904;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21935,1514,'dt-img-hide-title','0'),(21936,2236,'_wp_attached_file','2017/01/Screen-Shot-2017-01-09-at-10.01.15-1.png'),(21937,2236,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1152;s:6:\"height\";i:764;s:4:\"file\";s:48:\"2017/01/Screen-Shot-2017-01-09-at-10.01.15-1.png\";s:8:\"filesize\";i:1623020;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21938,2236,'dt-img-hide-title','0'),(21939,2237,'_wp_attached_file','2017/01/tulang-ngilu-2.jpg'),(21940,2237,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:576;s:6:\"height\";i:421;s:4:\"file\";s:26:\"2017/01/tulang-ngilu-2.jpg\";s:8:\"filesize\";i:42692;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21941,2237,'dt-img-hide-title','0'),(21942,2238,'_wp_attached_file','2017/01/Screen-Shot-2017-01-13-at-10.56.55-1.png'),(21943,2238,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1284;s:6:\"height\";i:724;s:4:\"file\";s:48:\"2017/01/Screen-Shot-2017-01-13-at-10.56.55-1.png\";s:8:\"filesize\";i:1190801;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21944,2238,'dt-img-hide-title','0'),(21945,2239,'_wp_attached_file','2017/01/tulang-ngilu-1-1.jpg'),(21946,2239,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:576;s:6:\"height\";i:421;s:4:\"file\";s:28:\"2017/01/tulang-ngilu-1-1.jpg\";s:8:\"filesize\";i:42692;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21947,2239,'dt-img-hide-title','0'),(21948,2247,'_wp_attached_file','2017/01/muscles-stretching-3-1.jpg'),(21949,2247,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:337;s:4:\"file\";s:34:\"2017/01/muscles-stretching-3-1.jpg\";s:8:\"filesize\";i:51247;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21950,2247,'dt-img-hide-title','0'),(21951,2248,'_wp_attached_file','2017/01/WHY-2.png'),(21952,2248,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:17:\"2017/01/WHY-2.png\";s:8:\"filesize\";i:893996;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21953,2248,'dt-img-hide-title','0'),(21954,2249,'_wp_attached_file','2017/01/WHY-1-1.png'),(21955,2249,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:19:\"2017/01/WHY-1-1.png\";s:8:\"filesize\";i:893996;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21956,2249,'dt-img-hide-title','0'),(21957,1533,'_wp_attached_file','2017/01/Do-you-really-have-a-weak-core-1-2.png'),(21958,1533,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:46:\"2017/01/Do-you-really-have-a-weak-core-1-2.png\";s:8:\"filesize\";i:909856;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21959,1533,'dt-img-hide-title','0'),(21960,1535,'_wp_attached_file','2017/02/Screen-Shot-2017-02-06-at-16.39.52-1.png'),(21961,1535,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1892;s:6:\"height\";i:1222;s:4:\"file\";s:48:\"2017/02/Screen-Shot-2017-02-06-at-16.39.52-1.png\";s:8:\"filesize\";i:2611459;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21962,1535,'dt-img-hide-title','0'),(21963,1536,'_wp_attached_file','2017/02/implication-of-articles-blog-1-1.png'),(21964,1536,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:480;s:6:\"height\";i:640;s:4:\"file\";s:44:\"2017/02/implication-of-articles-blog-1-1.png\";s:8:\"filesize\";i:293515;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21965,1536,'dt-img-hide-title','0'),(21966,1540,'_wp_attached_file','2017/02/insoles-3.png'),(21967,1540,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:21:\"2017/02/insoles-3.png\";s:8:\"filesize\";i:1119523;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21968,1540,'dt-img-hide-title','0'),(21969,1546,'_wp_attached_file','2017/02/IMG_7423-1-scaled.jpg'),(21970,1546,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2017/02/IMG_7423-1-scaled.jpg\";s:8:\"filesize\";i:928309;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1486381298\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.058823529411765\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_7423-1.jpg\";}'),(21971,1546,'dt-img-hide-title','0'),(21972,1556,'_wp_attached_file','2017/02/insoles-1-1.png'),(21973,1556,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:23:\"2017/02/insoles-1-1.png\";s:8:\"filesize\";i:1119523;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21974,1556,'dt-img-hide-title','0'),(21975,1566,'_wp_attached_file','2017/02/Screen-Shot-2017-02-13-at-17.54.51-1.png'),(21976,1566,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1212;s:6:\"height\";i:618;s:4:\"file\";s:48:\"2017/02/Screen-Shot-2017-02-13-at-17.54.51-1.png\";s:8:\"filesize\";i:1073114;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21977,1566,'dt-img-hide-title','0'),(21978,1595,'_wp_attached_file','2017/02/shutterstock_383061178-1-scaled.jpg'),(21979,1595,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:43:\"2017/02/shutterstock_383061178-1-scaled.jpg\";s:8:\"filesize\";i:609259;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:28:\"shutterstock_383061178-1.jpg\";}'),(21980,1595,'dt-img-hide-title','0'),(21981,1608,'_wp_attached_file','2016/03/Map-Marker-Marker-Outside-Azure-1.png'),(21982,1608,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:128;s:6:\"height\";i:128;s:4:\"file\";s:45:\"2016/03/Map-Marker-Marker-Outside-Azure-1.png\";s:8:\"filesize\";i:10612;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21983,1608,'dt-video-url',''),(21984,1608,'dt-img-link',''),(21985,1608,'dt-img-hide-title','0'),(21986,1825,'_wp_attached_file','2016/03/chrome_2017-02-15_11-54-53-1.png'),(21987,1825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:84;s:6:\"height\";i:74;s:4:\"file\";s:40:\"2016/03/chrome_2017-02-15_11-54-53-1.png\";s:8:\"filesize\";i:3990;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21988,1825,'dt-img-hide-title','0'),(21989,2250,'_wp_attached_file','2017/01/Screen-Shot-2017-01-27-at-09.43.35-1.png'),(21990,2250,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:452;s:6:\"height\";i:280;s:4:\"file\";s:48:\"2017/01/Screen-Shot-2017-01-27-at-09.43.35-1.png\";s:8:\"filesize\";i:227003;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21991,2250,'dt-img-hide-title','0'),(21992,2251,'_wp_attached_file','2017/01/Screen-Shot-2017-01-31-at-06.45.25-1.png'),(21993,2251,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:766;s:6:\"height\";i:480;s:4:\"file\";s:48:\"2017/01/Screen-Shot-2017-01-31-at-06.45.25-1.png\";s:8:\"filesize\";i:239900;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(21994,2251,'dt-img-hide-title','0'),(21995,2252,'_wp_attached_file','2017/02/IMG_7422-1-scaled.jpg'),(21996,2252,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2017/02/IMG_7422-1-scaled.jpg\";s:8:\"filesize\";i:653961;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1486395739\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:17:\"0.058823529411765\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_7422-1.jpg\";}'),(21997,2252,'dt-img-hide-title','0'),(21998,2253,'_wp_attached_file','2017/02/cs-bag-causing-back-pain-1440x810-1.jpg'),(21999,2253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:810;s:4:\"file\";s:47:\"2017/02/cs-bag-causing-back-pain-1440x810-1.jpg\";s:8:\"filesize\";i:214494;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:6:\"Dirima\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22000,2253,'dt-img-hide-title','0'),(22001,2108,'dt-img-hide-title','0'),(22002,2109,'dt-img-hide-title','0'),(22003,2110,'dt-img-hide-title','0'),(22004,2111,'dt-img-hide-title','0'),(22005,2112,'dt-img-hide-title','0'),(22006,2113,'dt-img-hide-title','0'),(22007,2114,'dt-img-hide-title','0'),(22008,2115,'dt-img-hide-title','0'),(22009,1675,'_wp_attached_file','2017/03/The-Spinal-Engine-Full-cover-100-dpi-1.jpg'),(22010,1675,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:381;s:4:\"file\";s:50:\"2017/03/The-Spinal-Engine-Full-cover-100-dpi-1.jpg\";s:8:\"filesize\";i:50555;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22011,1675,'dt-img-hide-title','0'),(22012,30642,'_oembed_dbbd812a2ce8b6c4a1189b5c6d6841bd','<iframe title=\"The Kettlebell Swing\" width=\"500\" height=\"375\" src=\"https://www.youtube.com/embed/Z8KrxCh3Gzo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(22013,30642,'_oembed_time_dbbd812a2ce8b6c4a1189b5c6d6841bd','1721129113'),(22014,30431,'_oembed_3bdcdd18e796ac0edd1ddcd2fa64289b','<iframe title=\"The Turkish Get Up\" width=\"500\" height=\"375\" src=\"https://www.youtube.com/embed/JnOIuIfMVQM?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(22015,30431,'_oembed_time_3bdcdd18e796ac0edd1ddcd2fa64289b','1721129113'),(22016,30198,'_oembed_cf5a74a11faf416e4f2591366e6315c5','<iframe title=\"Pec Minor iMoveFreely Flows\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/3MYH7mc7Aes?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(22017,30198,'_oembed_time_cf5a74a11faf416e4f2591366e6315c5','1721129113'),(22018,38588,'_wp_attachment_context','custom-header'),(22019,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(22020,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(22021,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(22022,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(22023,192,'dt-img-hide-title','0'),(22024,194,'dt-img-hide-title','0'),(22025,205,'dt-img-hide-title','0'),(22026,206,'dt-img-hide-title','0'),(22027,208,'dt-img-hide-title','0'),(22028,247,'dt-img-hide-title','0'),(22029,248,'_wp_attachment_context','site-icon'),(22030,248,'dt-img-hide-title','0'),(22031,265,'dt-img-hide-title','0'),(22032,283,'dt-img-hide-title','0'),(22033,284,'dt-img-hide-title','0'),(22034,285,'dt-img-hide-title','0'),(22035,287,'dt-img-hide-title','0'),(22036,290,'dt-img-hide-title','0'),(22037,291,'dt-img-hide-title','0'),(22038,294,'dt-img-hide-title','0'),(22039,297,'dt-img-hide-title','0'),(22040,333,'dt-img-hide-title','0'),(22041,341,'dt-img-hide-title','0'),(22042,407,'dt-img-hide-title','0'),(22043,458,'dt-img-hide-title','0'),(22044,495,'dt-img-hide-title','0'),(22045,497,'dt-img-hide-title','0'),(22046,505,'dt-img-hide-title','0'),(22047,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(22048,210,'dt-img-link',''),(22049,210,'dt-img-hide-title','0'),(22050,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(22051,221,'dt-img-link',''),(22052,221,'dt-img-hide-title','0'),(22053,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(22054,224,'dt-img-link',''),(22055,224,'dt-img-hide-title','0'),(22056,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(22057,228,'dt-img-link',''),(22058,228,'dt-img-hide-title','0'),(22059,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(22060,230,'dt-img-link',''),(22061,230,'dt-img-hide-title','0'),(22062,237,'dt-img-hide-title','0'),(22063,237,'dt-img-link',''),(22064,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(22065,557,'dt-img-hide-title','0'),(22066,559,'dt-img-hide-title','0'),(22067,562,'dt-img-hide-title','0'),(22068,569,'dt-img-hide-title','0'),(22069,592,'dt-img-hide-title','0'),(22070,596,'dt-img-hide-title','0'),(22071,617,'dt-img-hide-title','0'),(22072,620,'dt-img-hide-title','0'),(22073,621,'dt-img-hide-title','0'),(22074,623,'dt-img-hide-title','0'),(22075,624,'dt-img-hide-title','0'),(22076,644,'dt-img-hide-title','0'),(22077,648,'dt-img-hide-title','0'),(22078,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(22079,824,'dt-img-link',''),(22080,824,'dt-img-hide-title','0'),(22081,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(22082,825,'dt-img-link',''),(22083,825,'dt-img-hide-title','0'),(22084,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(22085,828,'dt-img-link',''),(22086,828,'dt-img-hide-title','0'),(22087,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(22088,1450,'dt-img-link',''),(22089,1450,'dt-img-hide-title','0'),(22090,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(22091,1451,'dt-img-link',''),(22092,1451,'dt-img-hide-title','0'),(22093,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(22094,1452,'dt-img-link',''),(22095,1452,'dt-img-hide-title','0'),(22096,652,'dt-img-hide-title','0'),(22097,655,'dt-img-hide-title','0'),(22098,675,'dt-img-hide-title','0'),(22099,678,'dt-img-hide-title','0'),(22100,683,'dt-img-hide-title','0'),(22101,703,'dt-img-hide-title','0'),(22102,706,'dt-img-hide-title','0'),(22103,709,'dt-img-hide-title','0'),(22104,712,'dt-img-hide-title','0'),(22105,713,'dt-img-hide-title','0'),(22106,714,'dt-img-hide-title','0'),(22107,715,'dt-img-hide-title','0'),(22108,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(22109,722,'dt-img-hide-title','0'),(22110,735,'dt-img-hide-title','0'),(22111,759,'dt-img-hide-title','0'),(22112,762,'dt-img-hide-title','0'),(22113,766,'dt-img-hide-title','0'),(22114,770,'dt-img-hide-title','0'),(22115,804,'dt-img-hide-title','0'),(22116,814,'dt-img-hide-title','0'),(22117,827,'dt-img-hide-title','0'),(22118,830,'dt-img-hide-title','0'),(22119,854,'dt-img-hide-title','0'),(22120,857,'dt-img-hide-title','0'),(22121,874,'dt-img-hide-title','0'),(22122,937,'dt-img-hide-title','0'),(22123,941,'dt-img-hide-title','0'),(22124,955,'dt-img-hide-title','0'),(22125,969,'_wp_attachment_image_alt','imove Freely'),(22126,969,'dt-img-hide-title','0'),(22127,1001,'dt-img-hide-title','0'),(22128,1015,'dt-img-hide-title','0'),(22129,1018,'dt-img-hide-title','0'),(22130,1020,'dt-img-hide-title','0'),(22131,1021,'dt-img-hide-title','0'),(22132,1024,'dt-img-hide-title','0'),(22133,1027,'dt-img-hide-title','0'),(22134,1030,'dt-img-hide-title','0'),(22135,1035,'dt-img-hide-title','0'),(22136,1039,'dt-img-hide-title','0'),(22137,1045,'dt-img-hide-title','0'),(22138,1051,'dt-img-hide-title','0'),(22139,1052,'dt-img-hide-title','0'),(22140,1055,'dt-img-hide-title','0'),(22141,1057,'dt-img-hide-title','0'),(22142,1061,'dt-img-hide-title','0'),(22143,1065,'dt-img-hide-title','0'),(22144,1068,'dt-img-hide-title','0'),(22145,1073,'dt-img-hide-title','0'),(22146,1078,'dt-img-hide-title','0'),(22147,1084,'dt-img-hide-title','0'),(22148,1088,'dt-img-hide-title','0'),(22149,1094,'dt-img-hide-title','0'),(22150,1096,'dt-img-hide-title','0'),(22151,1097,'dt-img-hide-title','0'),(22152,1099,'dt-img-hide-title','0'),(22153,1106,'dt-img-hide-title','0'),(22154,1110,'dt-img-hide-title','0'),(22155,1112,'dt-img-hide-title','0'),(22156,1116,'dt-img-hide-title','0'),(22157,1125,'dt-img-hide-title','0'),(22158,1129,'dt-img-hide-title','0'),(22159,1145,'dt-img-hide-title','0'),(22160,1167,'dt-img-hide-title','0'),(22161,1184,'dt-img-hide-title','0'),(22162,1186,'dt-img-hide-title','0'),(22163,1187,'dt-img-hide-title','0'),(22164,1189,'dt-img-hide-title','0'),(22165,1194,'dt-img-hide-title','0'),(22166,1197,'dt-img-hide-title','0'),(22167,1201,'dt-img-hide-title','0'),(22168,1202,'dt-img-hide-title','0'),(22169,1203,'dt-img-hide-title','0'),(22170,1204,'dt-img-hide-title','0'),(22171,1205,'dt-img-hide-title','0'),(22172,1206,'dt-img-hide-title','0'),(22173,1207,'dt-img-hide-title','0'),(22174,1209,'dt-img-hide-title','0'),(22175,1210,'dt-img-hide-title','0'),(22176,1211,'dt-img-hide-title','0'),(22177,1212,'dt-img-hide-title','0'),(22178,1213,'dt-img-hide-title','0'),(22179,1214,'dt-img-hide-title','0'),(22180,1220,'dt-img-hide-title','0'),(22181,1223,'dt-img-hide-title','0'),(22182,1226,'dt-img-hide-title','0'),(22183,1228,'dt-img-hide-title','0'),(22184,1232,'dt-img-hide-title','0'),(22185,1235,'dt-img-hide-title','0'),(22186,1239,'dt-img-hide-title','0'),(22187,1242,'dt-img-hide-title','0'),(22188,1246,'dt-img-hide-title','0'),(22189,1256,'dt-img-hide-title','0'),(22190,1262,'dt-img-hide-title','0'),(22191,1265,'dt-img-hide-title','0'),(22192,1269,'dt-img-hide-title','0'),(22193,1275,'dt-img-hide-title','0'),(22194,1279,'dt-img-hide-title','0'),(22195,1312,'dt-img-hide-title','0'),(22196,1316,'dt-img-hide-title','0'),(22197,1320,'dt-img-hide-title','0'),(22198,1326,'dt-img-hide-title','0'),(22199,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(22200,1334,'dt-img-hide-title','0'),(22201,1338,'dt-img-hide-title','0'),(22202,1339,'dt-img-hide-title','0'),(22203,1343,'dt-img-hide-title','0'),(22204,1347,'dt-img-hide-title','0'),(22205,1351,'dt-img-hide-title','0'),(22206,1354,'dt-img-hide-title','0'),(22207,1357,'dt-img-hide-title','0'),(22208,1359,'dt-img-hide-title','0'),(22209,1362,'dt-img-hide-title','0'),(22210,1366,'dt-img-hide-title','0'),(22211,1379,'dt-img-hide-title','0'),(22212,1398,'dt-img-hide-title','0'),(22213,1403,'dt-img-hide-title','0'),(22214,1406,'dt-img-hide-title','0'),(22215,1410,'dt-img-hide-title','0'),(22216,1413,'dt-img-hide-title','0'),(22217,1416,'dt-img-hide-title','0'),(22218,1419,'dt-img-hide-title','0'),(22219,1423,'dt-img-hide-title','0'),(22220,1429,'dt-img-hide-title','0'),(22221,1430,'dt-img-hide-title','0'),(22222,1433,'dt-img-hide-title','0'),(22223,1463,'dt-img-hide-title','0'),(22224,1463,'dt-img-hide-title','0'),(22225,1463,'dt-img-hide-title','0'),(22226,1463,'dt-img-hide-title','0'),(22227,1463,'dt-img-hide-title','0'),(22228,1468,'dt-img-hide-title','0'),(22229,2229,'dt-img-hide-title','0'),(22230,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(22231,2230,'dt-img-hide-title','0'),(22232,2231,'dt-img-hide-title','0'),(22233,2232,'dt-img-hide-title','0'),(22234,2233,'dt-img-hide-title','0'),(22235,2234,'dt-img-hide-title','0'),(22236,2235,'dt-img-hide-title','0'),(22237,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(22238,1474,'dt-img-hide-title','0'),(22239,1475,'dt-img-hide-title','0'),(22240,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(22241,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(22242,1476,'dt-img-hide-title','0'),(22243,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(22244,1478,'dt-img-hide-title','0'),(22245,1479,'dt-img-hide-title','0'),(22246,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(22247,1489,'dt-img-hide-title','0'),(22248,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(22249,1500,'dt-img-hide-title','0'),(22250,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(22251,1501,'dt-img-hide-title','0'),(22252,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(22253,1504,'dt-img-hide-title','0'),(22254,1508,'_wp_attachment_image_alt',''),(22255,1508,'dt-img-hide-title','0'),(22256,1508,'dt-video-url',''),(22257,1508,'dt-img-link',''),(22258,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(22259,1510,'dt-img-hide-title','0'),(22260,1514,'dt-img-hide-title','0'),(22261,2236,'dt-img-hide-title','0'),(22262,2237,'dt-img-hide-title','0'),(22263,2238,'dt-img-hide-title','0'),(22264,2239,'dt-img-hide-title','0'),(22265,2247,'dt-img-hide-title','0'),(22266,2248,'dt-img-hide-title','0'),(22267,2249,'dt-img-hide-title','0'),(22268,1533,'dt-img-hide-title','0'),(22269,1535,'dt-img-hide-title','0'),(22270,1536,'dt-img-hide-title','0'),(22271,1540,'dt-img-hide-title','0'),(22272,1546,'dt-img-hide-title','0'),(22273,1556,'dt-img-hide-title','0'),(22274,1566,'dt-img-hide-title','0'),(22275,1595,'dt-img-hide-title','0'),(22276,1608,'dt-video-url',''),(22277,1608,'dt-img-link',''),(22278,1608,'dt-img-hide-title','0'),(22279,1825,'dt-img-hide-title','0'),(22280,2250,'dt-img-hide-title','0'),(22281,2251,'dt-img-hide-title','0'),(22282,2252,'dt-img-hide-title','0'),(22283,2253,'dt-img-hide-title','0'),(22284,2254,'_wp_attached_file','2017/02/sports-massage-therapy-steyning-1.jpg'),(22285,2254,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:460;s:4:\"file\";s:45:\"2017/02/sports-massage-therapy-steyning-1.jpg\";s:8:\"filesize\";i:82491;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22286,2254,'dt-img-hide-title','0'),(22287,2255,'_wp_attached_file','2017/02/high-heels-for-women-1.jpg'),(22288,2255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:599;s:4:\"file\";s:34:\"2017/02/high-heels-for-women-1.jpg\";s:8:\"filesize\";i:260962;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22289,2255,'dt-img-hide-title','0'),(22290,2256,'_wp_attached_file','2017/02/IMG_4580-1-scaled.jpg'),(22291,2256,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2017/02/IMG_4580-1-scaled.jpg\";s:8:\"filesize\";i:691620;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_4580-1.jpg\";}'),(22292,2256,'dt-img-hide-title','0'),(22293,2257,'_wp_attached_file','2017/02/IMG_7390-1-scaled.jpg'),(22294,2257,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2017/02/IMG_7390-1-scaled.jpg\";s:8:\"filesize\";i:585821;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1486383437\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:3:\"0.1\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_7390-1.jpg\";}'),(22295,2257,'dt-img-hide-title','0'),(22296,2258,'_wp_attached_file','2017/02/family-running-together3-1.jpg'),(22297,2258,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:390;s:6:\"height\";i:296;s:4:\"file\";s:38:\"2017/02/family-running-together3-1.jpg\";s:8:\"filesize\";i:130696;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22298,2258,'dt-img-hide-title','0'),(22299,2259,'_wp_attached_file','2017/02/iMoveFreely-CMYK-300dpi-1.jpg'),(22300,2259,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:37:\"2017/02/iMoveFreely-CMYK-300dpi-1.jpg\";s:8:\"filesize\";i:371896;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22301,2259,'dt-img-hide-title','0'),(22302,1646,'_wp_attached_file','2017/02/MG_0055-1-1-1-scaled.jpg'),(22303,1646,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:32:\"2017/02/MG_0055-1-1-1-scaled.jpg\";s:8:\"filesize\";i:340641;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469186376\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:17:\"MG_0055-1-1-1.jpg\";}'),(22304,1646,'dt-img-hide-title','0'),(22305,1650,'_wp_attached_file','2017/03/IMG_5942-1-scaled.jpg'),(22306,1650,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2017/03/IMG_5942-1-scaled.jpg\";s:8:\"filesize\";i:406482;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1475944436\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_5942-1.jpg\";}'),(22307,1650,'dt-img-hide-title','0'),(22313,2241,'_wp_attached_file','2017/03/IMG_7642-1-scaled.jpg'),(22314,2241,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2017/03/IMG_7642-1-scaled.jpg\";s:8:\"filesize\";i:529059;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1488023805\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_7642-1.jpg\";}'),(22315,2241,'dt-img-hide-title','0'),(22316,2242,'_wp_attached_file','2017/03/IMG_7643-1-scaled.jpg'),(22317,2242,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2017/03/IMG_7643-1-scaled.jpg\";s:8:\"filesize\";i:320264;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1488023904\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.65\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:17:\"0.058823529411765\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_7643-1.jpg\";}'),(22318,2242,'dt-img-hide-title','0'),(22319,2243,'_wp_attached_file','2017/03/BEYV5585-1.jpg'),(22320,2243,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:22:\"2017/03/BEYV5585-1.jpg\";s:8:\"filesize\";i:763478;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1488022003\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22321,2243,'dt-img-hide-title','0'),(22322,2244,'_wp_attached_file','2017/03/IMG_7623-1-scaled.jpg'),(22323,2244,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2017/03/IMG_7623-1-scaled.jpg\";s:8:\"filesize\";i:513094;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1488019171\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_7623-1.jpg\";}'),(22324,2244,'dt-img-hide-title','0'),(22325,2245,'_wp_attached_file','2017/03/IMG_7612-1-scaled.jpg'),(22326,2245,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2017/03/IMG_7612-1-scaled.jpg\";s:8:\"filesize\";i:440870;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1488017614\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_7612-1.jpg\";}'),(22327,2245,'dt-img-hide-title','0'),(22328,2246,'_wp_attached_file','2017/03/Screen-Shot-2017-02-27-at-12.26.26-1-1.png'),(22329,2246,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1560;s:6:\"height\";i:632;s:4:\"file\";s:50:\"2017/03/Screen-Shot-2017-02-27-at-12.26.26-1-1.png\";s:8:\"filesize\";i:2031752;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22330,2246,'dt-img-hide-title','0'),(22331,2260,'_wp_attached_file','2017/02/iMoveFreely-Transparent-300dpi-2.png'),(22332,2260,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:44:\"2017/02/iMoveFreely-Transparent-300dpi-2.png\";s:8:\"filesize\";i:82954;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22333,2260,'dt-img-hide-title','0'),(22334,2261,'_wp_attached_file','2017/02/iMoveFreely-Transparent-300dpi-1-1.png'),(22335,2261,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:46:\"2017/02/iMoveFreely-Transparent-300dpi-1-1.png\";s:8:\"filesize\";i:82954;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22336,2261,'dt-img-hide-title','0'),(22337,2262,'_wp_attached_file','2017/02/iMoveFreely-Transparent-300dpi-2-e1488270154255-1.png'),(22338,2262,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:240;s:4:\"file\";s:61:\"2017/02/iMoveFreely-Transparent-300dpi-2-e1488270154255-1.png\";s:8:\"filesize\";i:37279;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22339,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(22340,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(22341,2262,'dt-img-hide-title','0'),(22342,2263,'_wp_attached_file','2017/02/imovefreely-blog-1.png'),(22343,2263,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:810;s:4:\"file\";s:30:\"2017/02/imovefreely-blog-1.png\";s:8:\"filesize\";i:1448762;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22344,2263,'dt-img-hide-title','0'),(22345,2264,'_wp_attached_file','2017/02/swiss-ball-chest-press_1-1024x820-1.jpg'),(22346,2264,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:820;s:4:\"file\";s:47:\"2017/02/swiss-ball-chest-press_1-1024x820-1.jpg\";s:8:\"filesize\";i:207400;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22347,2264,'dt-img-hide-title','0'),(22348,2265,'_wp_attached_file','2017/03/IMG_5917-1-scaled.jpg'),(22349,2265,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2017/03/IMG_5917-1-scaled.jpg\";s:8:\"filesize\";i:461741;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1475935500\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_5917-1.jpg\";}'),(22350,2265,'dt-img-hide-title','0'),(22351,2266,'_wp_attached_file','2017/03/shutterstock_520571764-1-scaled.jpg'),(22352,2266,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:43:\"2017/03/shutterstock_520571764-1-scaled.jpg\";s:8:\"filesize\";i:352481;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:28:\"shutterstock_520571764-1.jpg\";}'),(22353,2266,'dt-img-hide-title','0'),(22354,2267,'_wp_attached_file','2017/03/shutterstock_508393762-1-scaled.jpg'),(22355,2267,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:43:\"2017/03/shutterstock_508393762-1-scaled.jpg\";s:8:\"filesize\";i:380056;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:28:\"shutterstock_508393762-1.jpg\";}'),(22356,2267,'dt-img-hide-title','0'),(22357,2268,'_wp_attached_file','2017/03/blue-skele-man-1.jpg'),(22358,2268,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:1200;s:4:\"file\";s:28:\"2017/03/blue-skele-man-1.jpg\";s:8:\"filesize\";i:566872;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22359,2268,'dt-img-hide-title','0'),(22360,2269,'_wp_attached_file','2017/03/Screen-Shot-2017-03-13-at-11.45.20-1.png'),(22361,2269,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:394;s:4:\"file\";s:48:\"2017/03/Screen-Shot-2017-03-13-at-11.45.20-1.png\";s:8:\"filesize\";i:337151;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22362,2269,'dt-img-hide-title','0'),(22363,2270,'_wp_attached_file','2017/03/shutterstock_259089836-1-scaled.jpg'),(22364,2270,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1703;s:4:\"file\";s:43:\"2017/03/shutterstock_259089836-1-scaled.jpg\";s:8:\"filesize\";i:530160;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:28:\"shutterstock_259089836-1.jpg\";}'),(22365,2270,'dt-img-hide-title','0'),(22366,1658,'_wp_attached_file','2017/03/Screen-Shot-2017-03-13-at-11.47.46-1.png'),(22367,1658,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:930;s:6:\"height\";i:506;s:4:\"file\";s:48:\"2017/03/Screen-Shot-2017-03-13-at-11.47.46-1.png\";s:8:\"filesize\";i:807919;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22368,1658,'dt-img-hide-title','0'),(22369,1660,'_wp_attached_file','2017/03/mindset-blog-image-3-1.png'),(22370,1660,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:810;s:4:\"file\";s:34:\"2017/03/mindset-blog-image-3-1.png\";s:8:\"filesize\";i:1562746;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22371,1660,'dt-img-hide-title','0'),(22372,1667,'_wp_attached_file','2017/03/Screen-Shot-2017-03-20-at-07.25.06-1.png'),(22373,1667,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:680;s:4:\"file\";s:48:\"2017/03/Screen-Shot-2017-03-20-at-07.25.06-1.png\";s:8:\"filesize\";i:1524296;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22374,1667,'dt-img-hide-title','0'),(22375,1668,'_wp_attached_file','2017/03/Screen-Shot-2017-03-20-at-07.25.24-1.png'),(22376,1668,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1202;s:6:\"height\";i:912;s:4:\"file\";s:48:\"2017/03/Screen-Shot-2017-03-20-at-07.25.24-1.png\";s:8:\"filesize\";i:1190687;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22377,1668,'dt-img-hide-title','0'),(22378,1669,'_wp_attached_file','2017/03/Screen-Shot-2017-03-20-at-07.24.55-1.png'),(22379,1669,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1202;s:6:\"height\";i:676;s:4:\"file\";s:48:\"2017/03/Screen-Shot-2017-03-20-at-07.24.55-1.png\";s:8:\"filesize\";i:1465766;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22380,1669,'dt-img-hide-title','0'),(22381,1674,'_wp_attached_file','2017/03/back-mechanic-by-stuart-mcgill-1.jpg'),(22382,1674,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:250;s:4:\"file\";s:44:\"2017/03/back-mechanic-by-stuart-mcgill-1.jpg\";s:8:\"filesize\";i:22507;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22383,1674,'dt-img-hide-title','0'),(22384,2102,'_wp_attached_file','2017/03/01-1.png'),(22385,2102,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:575;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2017/03/01-1.png\";s:8:\"filesize\";i:136895;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22386,2102,'dt-img-hide-title','0'),(22387,2103,'_wp_attached_file','2017/03/02-1.png'),(22388,2103,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:599;s:6:\"height\";i:408;s:4:\"file\";s:16:\"2017/03/02-1.png\";s:8:\"filesize\";i:125557;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22389,2103,'dt-img-hide-title','0'),(22390,2104,'_wp_attached_file','2017/03/03-1.png'),(22391,2104,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:590;s:6:\"height\";i:410;s:4:\"file\";s:16:\"2017/03/03-1.png\";s:8:\"filesize\";i:81201;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22392,2104,'dt-img-hide-title','0'),(22393,2105,'_wp_attached_file','2017/03/04-1.png'),(22394,2105,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:604;s:6:\"height\";i:416;s:4:\"file\";s:16:\"2017/03/04-1.png\";s:8:\"filesize\";i:162967;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22395,2105,'dt-img-hide-title','0'),(22396,2106,'_wp_attached_file','2017/03/05-1.png'),(22397,2106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:385;s:6:\"height\";i:448;s:4:\"file\";s:16:\"2017/03/05-1.png\";s:8:\"filesize\";i:65562;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22398,2106,'dt-img-hide-title','0'),(22399,2107,'_wp_attached_file','2017/03/06-1.png'),(22400,2107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:389;s:6:\"height\";i:449;s:4:\"file\";s:16:\"2017/03/06-1.png\";s:8:\"filesize\";i:76304;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22401,2107,'dt-img-hide-title','0'),(22402,2108,'dt-img-hide-title','0'),(22403,2109,'dt-img-hide-title','0'),(22404,2110,'dt-img-hide-title','0'),(22405,2111,'dt-img-hide-title','0'),(22406,2112,'dt-img-hide-title','0'),(22407,2113,'dt-img-hide-title','0'),(22408,2114,'dt-img-hide-title','0'),(22409,2115,'dt-img-hide-title','0'),(22410,1675,'dt-img-hide-title','0'),(22411,1699,'_wp_attached_file','2017/03/IMG_8292-1-scaled.jpg'),(22412,1699,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2017/03/IMG_8292-1-scaled.jpg\";s:8:\"filesize\";i:761053;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_8292-1.jpg\";}'),(22413,1699,'dt-img-hide-title','0'),(22414,1700,'_wp_attached_file','2017/03/Screen-Shot-2017-03-27-at-11.06.01-1.png'),(22415,1700,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1602;s:6:\"height\";i:1940;s:4:\"file\";s:48:\"2017/03/Screen-Shot-2017-03-27-at-11.06.01-1.png\";s:8:\"filesize\";i:5004863;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22416,1700,'dt-img-hide-title','0'),(22417,1701,'_wp_attached_file','2017/03/IMG_8291-1.png'),(22418,1701,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1242;s:6:\"height\";i:2208;s:4:\"file\";s:22:\"2017/03/IMG_8291-1.png\";s:8:\"filesize\";i:4510042;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22419,1701,'dt-img-hide-title','0'),(22420,1702,'_wp_attached_file','2017/03/IMG_8290-1.png'),(22421,1702,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1242;s:6:\"height\";i:2208;s:4:\"file\";s:22:\"2017/03/IMG_8290-1.png\";s:8:\"filesize\";i:4929821;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22422,1702,'dt-img-hide-title','0'),(22423,2217,'_wp_attached_file','2017/03/02-1.jpg'),(22424,2217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2006;s:6:\"height\";i:975;s:4:\"file\";s:16:\"2017/03/02-1.jpg\";s:8:\"filesize\";i:268102;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22425,2217,'dt-img-hide-title','0'),(22426,2222,'_wp_attached_file','2016/03/iMoveFreely-Transparent-300dpi-2-300x180-1.png'),(22427,2222,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:180;s:4:\"file\";s:54:\"2016/03/iMoveFreely-Transparent-300dpi-2-300x180-1.png\";s:8:\"filesize\";i:31948;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22428,2222,'dt-img-hide-title','0'),(22429,2271,'_wp_attached_file','2017/03/Screen-Shot-2017-03-21-at-06.57.52-1.png'),(22430,2271,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:522;s:4:\"file\";s:48:\"2017/03/Screen-Shot-2017-03-21-at-06.57.52-1.png\";s:8:\"filesize\";i:298656;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22431,2271,'dt-img-hide-title','0'),(22432,2289,'_wp_attached_file','2017/04/Struggles-1-1.png'),(22433,2289,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:163;s:4:\"file\";s:25:\"2017/04/Struggles-1-1.png\";s:8:\"filesize\";i:79787;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22434,2289,'dt-img-hide-title','0'),(22435,2291,'_wp_attached_file','2017/03/A-Weekend-Presenting-At-The-International-Fitness-Showcase-300x169-1.png'),(22436,2291,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:169;s:4:\"file\";s:80:\"2017/03/A-Weekend-Presenting-At-The-International-Fitness-Showcase-300x169-1.png\";s:8:\"filesize\";i:48978;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22437,2291,'dt-img-hide-title','0'),(22438,2293,'_wp_attached_file','2017/03/Own-research-1.png'),(22439,2293,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:170;s:4:\"file\";s:26:\"2017/03/Own-research-1.png\";s:8:\"filesize\";i:104419;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22440,2293,'dt-img-hide-title','0'),(22441,7,'_thumbnail_id','38951'),(22442,38945,'hero_style','default'),(22443,38945,'_hero_style','field_62051d9dc5324'),(22444,38945,'hero_image_pos_x','right'),(22445,38945,'_hero_image_pos_x','field_62ec3d05390bb'),(22446,38945,'hero_image_pos_y','top'),(22447,38945,'_hero_image_pos_y','field_62ec3d05390bc'),(22448,38945,'hero_image_pos',''),(22449,38945,'_hero_image_pos','field_62ec3d05390ba'),(22450,38945,'hero_title','For Trainers, Coaches & Exercise Professionals'),(22451,38945,'_hero_title','field_617571fe285e8'),(22452,38945,'hero_text','Improving Movement Through Education'),(22453,38945,'_hero_text','field_6175723c285e9'),(22454,38945,'hero_actions','1'),(22455,38945,'_hero_actions','field_61757270285ea'),(22456,38945,'hero_icon',''),(22457,38945,'_hero_icon','field_61a6182199d03'),(22458,38945,'fft_hide_from_listings','0'),(22459,38945,'_fft_hide_from_listings','field_61f1320446ab2'),(22460,38945,'fft_page_format','default'),(22461,38945,'_fft_page_format','field_61ae213f1f218'),(22462,38945,'fft_hide_nav','0'),(22463,38945,'_fft_hide_nav','field_635bd5e43527c'),(22464,38945,'fft_hide_header_call_to_action','0'),(22465,38945,'_fft_hide_header_call_to_action','field_635bd6723527d'),(22466,38945,'fft_page_sitemap','0'),(22467,38945,'_fft_page_sitemap','field_61af9b34e8181'),(22468,38945,'blocks',''),(22469,38945,'_blocks','field_6176696113096'),(22470,38945,'hero_actions_0_button','a:3:{s:5:\"title\";s:29:\"Biomechanics Coaching Diploma\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(22471,38945,'_hero_actions_0_button','field_61757281285eb'),(22472,38945,'_thumbnail_id','31069'),(22473,38945,'__thumbnail_id','field_617570855ddaf'),(22474,38588,'_wp_attachment_context','custom-header'),(22475,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(22476,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(22477,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(22478,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(22479,192,'dt-img-hide-title','0'),(22480,194,'dt-img-hide-title','0'),(22481,205,'dt-img-hide-title','0'),(22482,206,'dt-img-hide-title','0'),(22483,208,'dt-img-hide-title','0'),(22484,247,'dt-img-hide-title','0'),(22485,248,'_wp_attachment_context','site-icon'),(22486,248,'dt-img-hide-title','0'),(22487,265,'dt-img-hide-title','0'),(22488,283,'dt-img-hide-title','0'),(22489,284,'dt-img-hide-title','0'),(22490,285,'dt-img-hide-title','0'),(22491,287,'dt-img-hide-title','0'),(22492,290,'dt-img-hide-title','0'),(22493,291,'dt-img-hide-title','0'),(22494,294,'dt-img-hide-title','0'),(22495,297,'dt-img-hide-title','0'),(22496,333,'dt-img-hide-title','0'),(22497,341,'dt-img-hide-title','0'),(22498,407,'dt-img-hide-title','0'),(22499,458,'dt-img-hide-title','0'),(22500,495,'dt-img-hide-title','0'),(22501,497,'dt-img-hide-title','0'),(22502,505,'dt-img-hide-title','0'),(22503,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(22504,210,'dt-img-link',''),(22505,210,'dt-img-hide-title','0'),(22506,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(22507,221,'dt-img-link',''),(22508,221,'dt-img-hide-title','0'),(22509,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(22510,224,'dt-img-link',''),(22511,224,'dt-img-hide-title','0'),(22512,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(22513,228,'dt-img-link',''),(22514,228,'dt-img-hide-title','0'),(22515,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(22516,230,'dt-img-link',''),(22517,230,'dt-img-hide-title','0'),(22518,237,'dt-img-hide-title','0'),(22519,237,'dt-img-link',''),(22520,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(22521,557,'dt-img-hide-title','0'),(22522,559,'dt-img-hide-title','0'),(22523,562,'dt-img-hide-title','0'),(22524,569,'dt-img-hide-title','0'),(22525,592,'dt-img-hide-title','0'),(22526,596,'dt-img-hide-title','0'),(22527,617,'dt-img-hide-title','0'),(22528,620,'dt-img-hide-title','0'),(22529,621,'dt-img-hide-title','0'),(22530,623,'dt-img-hide-title','0'),(22531,624,'dt-img-hide-title','0'),(22532,644,'dt-img-hide-title','0'),(22533,648,'dt-img-hide-title','0'),(22534,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(22535,824,'dt-img-link',''),(22536,824,'dt-img-hide-title','0'),(22537,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(22538,825,'dt-img-link',''),(22539,825,'dt-img-hide-title','0'),(22540,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(22541,828,'dt-img-link',''),(22542,828,'dt-img-hide-title','0'),(22543,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(22544,1450,'dt-img-link',''),(22545,1450,'dt-img-hide-title','0'),(22546,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(22547,1451,'dt-img-link',''),(22548,1451,'dt-img-hide-title','0'),(22549,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(22550,1452,'dt-img-link',''),(22551,1452,'dt-img-hide-title','0'),(22552,652,'dt-img-hide-title','0'),(22553,655,'dt-img-hide-title','0'),(22554,675,'dt-img-hide-title','0'),(22555,678,'dt-img-hide-title','0'),(22556,683,'dt-img-hide-title','0'),(22557,703,'dt-img-hide-title','0'),(22558,706,'dt-img-hide-title','0'),(22559,709,'dt-img-hide-title','0'),(22560,712,'dt-img-hide-title','0'),(22561,713,'dt-img-hide-title','0'),(22562,714,'dt-img-hide-title','0'),(22563,715,'dt-img-hide-title','0'),(22564,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(22565,722,'dt-img-hide-title','0'),(22566,735,'dt-img-hide-title','0'),(22567,759,'dt-img-hide-title','0'),(22568,762,'dt-img-hide-title','0'),(22569,766,'dt-img-hide-title','0'),(22570,770,'dt-img-hide-title','0'),(22571,804,'dt-img-hide-title','0'),(22572,814,'dt-img-hide-title','0'),(22573,827,'dt-img-hide-title','0'),(22574,830,'dt-img-hide-title','0'),(22575,854,'dt-img-hide-title','0'),(22576,857,'dt-img-hide-title','0'),(22577,874,'dt-img-hide-title','0'),(22578,937,'dt-img-hide-title','0'),(22579,941,'dt-img-hide-title','0'),(22580,955,'dt-img-hide-title','0'),(22581,969,'_wp_attachment_image_alt','imove Freely'),(22582,969,'dt-img-hide-title','0'),(22583,1001,'dt-img-hide-title','0'),(22584,1015,'dt-img-hide-title','0'),(22585,1018,'dt-img-hide-title','0'),(22586,1020,'dt-img-hide-title','0'),(22587,1021,'dt-img-hide-title','0'),(22588,1024,'dt-img-hide-title','0'),(22589,1027,'dt-img-hide-title','0'),(22590,1030,'dt-img-hide-title','0'),(22591,1035,'dt-img-hide-title','0'),(22592,1039,'dt-img-hide-title','0'),(22593,1045,'dt-img-hide-title','0'),(22594,1051,'dt-img-hide-title','0'),(22595,1052,'dt-img-hide-title','0'),(22596,1055,'dt-img-hide-title','0'),(22597,1057,'dt-img-hide-title','0'),(22598,1061,'dt-img-hide-title','0'),(22599,1065,'dt-img-hide-title','0'),(22600,1068,'dt-img-hide-title','0'),(22601,1073,'dt-img-hide-title','0'),(22602,1078,'dt-img-hide-title','0'),(22603,1084,'dt-img-hide-title','0'),(22604,1088,'dt-img-hide-title','0'),(22605,1094,'dt-img-hide-title','0'),(22606,1096,'dt-img-hide-title','0'),(22607,1097,'dt-img-hide-title','0'),(22608,1099,'dt-img-hide-title','0'),(22609,1106,'dt-img-hide-title','0'),(22610,1110,'dt-img-hide-title','0'),(22611,1112,'dt-img-hide-title','0'),(22612,1116,'dt-img-hide-title','0'),(22613,1125,'dt-img-hide-title','0'),(22614,1129,'dt-img-hide-title','0'),(22615,1145,'dt-img-hide-title','0'),(22616,1167,'dt-img-hide-title','0'),(22617,1184,'dt-img-hide-title','0'),(22618,1186,'dt-img-hide-title','0'),(22619,1187,'dt-img-hide-title','0'),(22620,1189,'dt-img-hide-title','0'),(22621,1194,'dt-img-hide-title','0'),(22622,1197,'dt-img-hide-title','0'),(22623,1201,'dt-img-hide-title','0'),(22624,1202,'dt-img-hide-title','0'),(22625,1203,'dt-img-hide-title','0'),(22626,1204,'dt-img-hide-title','0'),(22627,1205,'dt-img-hide-title','0'),(22628,1206,'dt-img-hide-title','0'),(22629,1207,'dt-img-hide-title','0'),(22630,1209,'dt-img-hide-title','0'),(22631,1210,'dt-img-hide-title','0'),(22632,1211,'dt-img-hide-title','0'),(22633,1212,'dt-img-hide-title','0'),(22634,1213,'dt-img-hide-title','0'),(22635,1214,'dt-img-hide-title','0'),(22636,1220,'dt-img-hide-title','0'),(22637,1223,'dt-img-hide-title','0'),(22638,1226,'dt-img-hide-title','0'),(22639,1228,'dt-img-hide-title','0'),(22640,1232,'dt-img-hide-title','0'),(22641,1235,'dt-img-hide-title','0'),(22642,1239,'dt-img-hide-title','0'),(22643,1242,'dt-img-hide-title','0'),(22644,1246,'dt-img-hide-title','0'),(22645,1256,'dt-img-hide-title','0'),(22646,1262,'dt-img-hide-title','0'),(22647,1265,'dt-img-hide-title','0'),(22648,1269,'dt-img-hide-title','0'),(22649,1275,'dt-img-hide-title','0'),(22650,1279,'dt-img-hide-title','0'),(22651,1312,'dt-img-hide-title','0'),(22652,1316,'dt-img-hide-title','0'),(22653,1320,'dt-img-hide-title','0'),(22654,1326,'dt-img-hide-title','0'),(22655,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(22656,1334,'dt-img-hide-title','0'),(22657,1338,'dt-img-hide-title','0'),(22658,1339,'dt-img-hide-title','0'),(22659,1343,'dt-img-hide-title','0'),(22660,1347,'dt-img-hide-title','0'),(22661,1351,'dt-img-hide-title','0'),(22662,1354,'dt-img-hide-title','0'),(22663,1357,'dt-img-hide-title','0'),(22664,1359,'dt-img-hide-title','0'),(22665,1362,'dt-img-hide-title','0'),(22666,1366,'dt-img-hide-title','0'),(22667,1379,'dt-img-hide-title','0'),(22668,1398,'dt-img-hide-title','0'),(22669,1403,'dt-img-hide-title','0'),(22670,1406,'dt-img-hide-title','0'),(22671,1410,'dt-img-hide-title','0'),(22672,1413,'dt-img-hide-title','0'),(22673,1416,'dt-img-hide-title','0'),(22674,1419,'dt-img-hide-title','0'),(22675,1423,'dt-img-hide-title','0'),(22676,1429,'dt-img-hide-title','0'),(22677,1430,'dt-img-hide-title','0'),(22678,1433,'dt-img-hide-title','0'),(22679,1463,'dt-img-hide-title','0'),(22680,1463,'dt-img-hide-title','0'),(22681,1463,'dt-img-hide-title','0'),(22682,1463,'dt-img-hide-title','0'),(22683,1463,'dt-img-hide-title','0'),(22684,1468,'dt-img-hide-title','0'),(22685,2229,'dt-img-hide-title','0'),(22686,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(22687,2230,'dt-img-hide-title','0'),(22688,2231,'dt-img-hide-title','0'),(22689,2232,'dt-img-hide-title','0'),(22690,2233,'dt-img-hide-title','0'),(22691,2234,'dt-img-hide-title','0'),(22692,2235,'dt-img-hide-title','0'),(22693,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(22694,1474,'dt-img-hide-title','0'),(22695,1475,'dt-img-hide-title','0'),(22696,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(22697,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(22698,1476,'dt-img-hide-title','0'),(22699,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(22700,1478,'dt-img-hide-title','0'),(22701,1479,'dt-img-hide-title','0'),(22702,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(22703,1489,'dt-img-hide-title','0'),(22704,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(22705,1500,'dt-img-hide-title','0'),(22706,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(22707,1501,'dt-img-hide-title','0'),(22708,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(22709,1504,'dt-img-hide-title','0'),(22710,1508,'_wp_attachment_image_alt',''),(22711,1508,'dt-img-hide-title','0'),(22712,1508,'dt-video-url',''),(22713,1508,'dt-img-link',''),(22714,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(22715,1510,'dt-img-hide-title','0'),(22716,1514,'dt-img-hide-title','0'),(22717,2236,'dt-img-hide-title','0'),(22718,2237,'dt-img-hide-title','0'),(22719,2238,'dt-img-hide-title','0'),(22720,2239,'dt-img-hide-title','0'),(22721,2247,'dt-img-hide-title','0'),(22722,2248,'dt-img-hide-title','0'),(22723,2249,'dt-img-hide-title','0'),(22724,1533,'dt-img-hide-title','0'),(22725,1535,'dt-img-hide-title','0'),(22726,1536,'dt-img-hide-title','0'),(22727,1540,'dt-img-hide-title','0'),(22728,1546,'dt-img-hide-title','0'),(22729,1556,'dt-img-hide-title','0'),(22730,1566,'dt-img-hide-title','0'),(22731,1595,'dt-img-hide-title','0'),(22732,1608,'dt-video-url',''),(22733,1608,'dt-img-link',''),(22734,1608,'dt-img-hide-title','0'),(22735,1825,'dt-img-hide-title','0'),(22736,2250,'dt-img-hide-title','0'),(22737,2251,'dt-img-hide-title','0'),(22738,2252,'dt-img-hide-title','0'),(22739,2253,'dt-img-hide-title','0'),(22740,2254,'dt-img-hide-title','0'),(22741,2255,'dt-img-hide-title','0'),(22742,2256,'dt-img-hide-title','0'),(22743,2257,'dt-img-hide-title','0'),(22744,2258,'dt-img-hide-title','0'),(22745,2259,'dt-img-hide-title','0'),(22746,1646,'dt-img-hide-title','0'),(22747,1650,'dt-img-hide-title','0'),(22751,2241,'dt-img-hide-title','0'),(22752,2242,'dt-img-hide-title','0'),(22753,2243,'dt-img-hide-title','0'),(22754,2244,'dt-img-hide-title','0'),(22755,2245,'dt-img-hide-title','0'),(22756,2246,'dt-img-hide-title','0'),(22757,2260,'dt-img-hide-title','0'),(22758,2261,'dt-img-hide-title','0'),(22759,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(22760,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(22761,2262,'dt-img-hide-title','0'),(22762,2263,'dt-img-hide-title','0'),(22763,2264,'dt-img-hide-title','0'),(22764,2265,'dt-img-hide-title','0'),(22765,2266,'dt-img-hide-title','0'),(22766,2267,'dt-img-hide-title','0'),(22767,2268,'dt-img-hide-title','0'),(22768,2269,'dt-img-hide-title','0'),(22769,2270,'dt-img-hide-title','0'),(22770,1658,'dt-img-hide-title','0'),(22771,1660,'dt-img-hide-title','0'),(22772,1667,'dt-img-hide-title','0'),(22773,1668,'dt-img-hide-title','0'),(22774,1669,'dt-img-hide-title','0'),(22775,1674,'dt-img-hide-title','0'),(22776,2102,'dt-img-hide-title','0'),(22777,2103,'dt-img-hide-title','0'),(22778,2104,'dt-img-hide-title','0'),(22779,2105,'dt-img-hide-title','0'),(22780,2106,'dt-img-hide-title','0'),(22781,2107,'dt-img-hide-title','0'),(22782,2108,'dt-img-hide-title','0'),(22783,2109,'dt-img-hide-title','0'),(22784,2110,'dt-img-hide-title','0'),(22785,2111,'dt-img-hide-title','0'),(22786,2112,'dt-img-hide-title','0'),(22787,2113,'dt-img-hide-title','0'),(22788,2114,'dt-img-hide-title','0'),(22789,2115,'dt-img-hide-title','0'),(22790,1675,'dt-img-hide-title','0'),(22791,1699,'dt-img-hide-title','0'),(22792,1700,'dt-img-hide-title','0'),(22793,1701,'dt-img-hide-title','0'),(22794,1702,'dt-img-hide-title','0'),(22795,2217,'dt-img-hide-title','0'),(22796,2222,'dt-img-hide-title','0'),(22797,2271,'dt-img-hide-title','0'),(22798,2289,'dt-img-hide-title','0'),(22799,2291,'dt-img-hide-title','0'),(22800,2293,'dt-img-hide-title','0'),(22801,2295,'_wp_attached_file','2017/03/mindset-blog-1-1.png'),(22802,2295,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:169;s:4:\"file\";s:28:\"2017/03/mindset-blog-1-1.png\";s:8:\"filesize\";i:87864;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22803,2295,'dt-img-hide-title','0'),(22804,2297,'_wp_attached_file','2017/02/what-exactaly-1.png'),(22805,2297,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:169;s:4:\"file\";s:27:\"2017/02/what-exactaly-1.png\";s:8:\"filesize\";i:98062;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22806,2297,'dt-img-hide-title','0'),(22807,2299,'_wp_attached_file','2017/02/5-quads-1.jpg'),(22808,2299,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:225;s:4:\"file\";s:21:\"2017/02/5-quads-1.jpg\";s:8:\"filesize\";i:15524;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22809,2299,'dt-img-hide-title','0'),(22810,2301,'_wp_attached_file','2017/02/6-tips-1.png'),(22811,2301,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:153;s:4:\"file\";s:20:\"2017/02/6-tips-1.png\";s:8:\"filesize\";i:59835;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22812,2301,'dt-img-hide-title','0'),(22813,2303,'_wp_attached_file','2017/02/insoles-2-1.png'),(22814,2303,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:157;s:4:\"file\";s:23:\"2017/02/insoles-2-1.png\";s:8:\"filesize\";i:100456;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22815,2303,'dt-img-hide-title','0'),(22816,2305,'_wp_attached_file','2017/01/Do-you-really-have-a-weak-core-1-1-1.png'),(22817,2305,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:157;s:4:\"file\";s:48:\"2017/01/Do-you-really-have-a-weak-core-1-1-1.png\";s:8:\"filesize\";i:69744;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22818,2305,'dt-img-hide-title','0'),(22819,2307,'_wp_attached_file','2017/01/out-of-minds-1.png'),(22820,2307,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:186;s:4:\"file\";s:26:\"2017/01/out-of-minds-1.png\";s:8:\"filesize\";i:90017;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22821,2307,'dt-img-hide-title','0'),(22822,2405,'_wp_attached_file','2016/03/TV-1-1.png'),(22823,2405,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:356;s:6:\"height\";i:203;s:4:\"file\";s:18:\"2016/03/TV-1-1.png\";s:8:\"filesize\";i:173844;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22824,2405,'dt-img-hide-title','0'),(22825,2405,'_wp_attachment_image_alt','iMoveFreely® Exercises To Try At Home'),(22826,2409,'_wp_attached_file','2016/03/TV-2-1.png'),(22827,2409,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:356;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2016/03/TV-2-1.png\";s:8:\"filesize\";i:82134;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22828,2409,'dt-img-hide-title','0'),(22829,2409,'_wp_attachment_image_alt','Don’t Listen To Us….Listen To Them!'),(22830,2410,'_wp_attached_file','2016/03/TV-3-1.png'),(22831,2410,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:354;s:6:\"height\";i:201;s:4:\"file\";s:18:\"2016/03/TV-3-1.png\";s:8:\"filesize\";i:122604;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22832,2410,'dt-img-hide-title','0'),(22833,2410,'_wp_attachment_image_alt','Presentations at The Movement Convention'),(22834,2411,'_wp_attached_file','2016/03/TV-4-1.png'),(22835,2411,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:358;s:6:\"height\";i:201;s:4:\"file\";s:18:\"2016/03/TV-4-1.png\";s:8:\"filesize\";i:129514;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22836,2411,'dt-img-hide-title','0'),(22837,2411,'_wp_attachment_image_alt','Just For Fun'),(22838,2413,'_wp_attached_file','2016/03/TV-5-1.png'),(22839,2413,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:355;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2016/03/TV-5-1.png\";s:8:\"filesize\";i:64210;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22840,2413,'dt-img-hide-title','0'),(22841,2413,'_wp_attachment_image_alt','We all Squat Differently?'),(22842,2415,'_wp_attached_file','2016/03/TV-6-1.png'),(22843,2415,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:535;s:6:\"height\";i:300;s:4:\"file\";s:18:\"2016/03/TV-6-1.png\";s:8:\"filesize\";i:225159;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22844,2415,'dt-img-hide-title','0'),(22845,2415,'_wp_attachment_image_alt','What Do Our Workshops Look Like?'),(22846,2534,'_wp_attached_file','2017/04/laura-hewitt-2.png'),(22847,2534,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:294;s:4:\"file\";s:26:\"2017/04/laura-hewitt-2.png\";s:8:\"filesize\";i:146046;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22848,2534,'dt-img-hide-title','0'),(22849,2535,'_wp_attached_file','2017/04/laura-hewitt-1-1.png'),(22850,2535,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:150;s:4:\"file\";s:28:\"2017/04/laura-hewitt-1-1.png\";s:8:\"filesize\";i:68670;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22851,2535,'dt-img-hide-title','0'),(22852,2537,'_wp_attached_file','2017/04/Screen-Shot-2017-04-11-at-07.36.42-1.png'),(22853,2537,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2102;s:6:\"height\";i:1484;s:4:\"file\";s:48:\"2017/04/Screen-Shot-2017-04-11-at-07.36.42-1.png\";s:8:\"filesize\";i:4624790;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22854,2537,'dt-img-hide-title','0'),(22855,2538,'_wp_attached_file','2017/04/Screen-Shot-2017-04-07-at-16.16.54-1.png'),(22856,2538,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:548;s:6:\"height\";i:606;s:4:\"file\";s:48:\"2017/04/Screen-Shot-2017-04-07-at-16.16.54-1.png\";s:8:\"filesize\";i:598228;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22857,2538,'dt-img-hide-title','0'),(22858,2539,'_wp_attached_file','2017/04/Screen-Shot-2017-04-07-at-16.16.47-1.png'),(22859,2539,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:534;s:6:\"height\";i:346;s:4:\"file\";s:48:\"2017/04/Screen-Shot-2017-04-07-at-16.16.47-1.png\";s:8:\"filesize\";i:388103;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22860,2539,'dt-img-hide-title','0'),(22861,2540,'_wp_attached_file','2017/04/Screen-Shot-2017-04-07-at-16.15.59-1.png'),(22862,2540,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:672;s:4:\"file\";s:48:\"2017/04/Screen-Shot-2017-04-07-at-16.15.59-1.png\";s:8:\"filesize\";i:1082019;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22863,2540,'dt-img-hide-title','0'),(22864,2541,'_wp_attached_file','2017/04/Screen-Shot-2017-04-03-at-15.20.42-1.png'),(22865,2541,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:852;s:6:\"height\";i:1200;s:4:\"file\";s:48:\"2017/04/Screen-Shot-2017-04-03-at-15.20.42-1.png\";s:8:\"filesize\";i:1158046;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22866,2541,'dt-img-hide-title','0'),(22867,2548,'_wp_attached_file','2017/04/Screen-Shot-2017-04-13-at-13.42.07-1.png'),(22868,2548,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:822;s:6:\"height\";i:572;s:4:\"file\";s:48:\"2017/04/Screen-Shot-2017-04-13-at-13.42.07-1.png\";s:8:\"filesize\";i:766661;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22869,2548,'dt-img-hide-title','0'),(22870,2549,'_wp_attached_file','2017/04/Screen-Shot-2017-04-13-at-13.32.48-1.png'),(22871,2549,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:540;s:6:\"height\";i:768;s:4:\"file\";s:48:\"2017/04/Screen-Shot-2017-04-13-at-13.32.48-1.png\";s:8:\"filesize\";i:401756;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22872,2549,'dt-img-hide-title','0'),(22873,2550,'_wp_attached_file','2017/04/Screen-Shot-2017-04-13-at-11.30.58-1.png'),(22874,2550,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2166;s:6:\"height\";i:890;s:4:\"file\";s:48:\"2017/04/Screen-Shot-2017-04-13-at-11.30.58-1.png\";s:8:\"filesize\";i:2635719;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22875,2550,'dt-img-hide-title','0'),(22876,2551,'_wp_attached_file','2017/04/Screen-Shot-2017-04-13-at-11.25.50-1.png'),(22877,2551,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1726;s:6:\"height\";i:852;s:4:\"file\";s:48:\"2017/04/Screen-Shot-2017-04-13-at-11.25.50-1.png\";s:8:\"filesize\";i:1717314;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22878,2551,'dt-img-hide-title','0'),(22879,2552,'_wp_attached_file','2017/04/Screen-Shot-2017-04-13-at-11.24.47-1.png'),(22880,2552,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:734;s:6:\"height\";i:760;s:4:\"file\";s:48:\"2017/04/Screen-Shot-2017-04-13-at-11.24.47-1.png\";s:8:\"filesize\";i:681616;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22881,2552,'dt-img-hide-title','0'),(22882,2611,'_wp_attached_file','2017/04/IMG_8821-1.jpg'),(22883,2611,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"file\";s:22:\"2017/04/IMG_8821-1.jpg\";s:8:\"filesize\";i:1009050;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22884,2611,'dt-img-hide-title','0'),(22885,2612,'_wp_attached_file','2017/04/Screen-Shot-2017-04-24-at-10.29.43-1.png'),(22886,2612,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:856;s:6:\"height\";i:432;s:4:\"file\";s:48:\"2017/04/Screen-Shot-2017-04-24-at-10.29.43-1.png\";s:8:\"filesize\";i:607349;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22887,2612,'dt-img-hide-title','0'),(22888,2613,'_wp_attached_file','2017/04/Screen-Shot-2017-04-24-at-10.29.29-1.png'),(22889,2613,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:586;s:6:\"height\";i:300;s:4:\"file\";s:48:\"2017/04/Screen-Shot-2017-04-24-at-10.29.29-1.png\";s:8:\"filesize\";i:372087;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22890,2613,'dt-img-hide-title','0'),(22891,2614,'_wp_attached_file','2017/04/Screen-Shot-2017-04-18-at-10.55.17-1.png'),(22892,2614,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1538;s:6:\"height\";i:964;s:4:\"file\";s:48:\"2017/04/Screen-Shot-2017-04-18-at-10.55.17-1.png\";s:8:\"filesize\";i:458324;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22893,2614,'dt-img-hide-title','0'),(22894,2615,'_wp_attached_file','2017/04/IMG_4580-1-scaled.jpg'),(22895,2615,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2017/04/IMG_4580-1-scaled.jpg\";s:8:\"filesize\";i:691620;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_4580-1.jpg\";}'),(22896,2615,'dt-img-hide-title','0'),(22897,2655,'_wp_attached_file','2017/05/Screen-Shot-2017-05-01-at-20.58.33-1.png'),(22898,2655,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1684;s:6:\"height\";i:684;s:4:\"file\";s:48:\"2017/05/Screen-Shot-2017-05-01-at-20.58.33-1.png\";s:8:\"filesize\";i:1689707;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22899,2655,'dt-img-hide-title','0'),(22900,2656,'_wp_attached_file','2017/05/Screen-Shot-2017-05-01-at-20.49.59-1.png'),(22901,2656,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1072;s:6:\"height\";i:532;s:4:\"file\";s:48:\"2017/05/Screen-Shot-2017-05-01-at-20.49.59-1.png\";s:8:\"filesize\";i:733570;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22902,2656,'dt-img-hide-title','0'),(22903,2657,'_wp_attached_file','2017/05/Screen-Shot-2017-04-25-at-07.39.55-1.png'),(22904,2657,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:612;s:6:\"height\";i:318;s:4:\"file\";s:48:\"2017/05/Screen-Shot-2017-04-25-at-07.39.55-1.png\";s:8:\"filesize\";i:105163;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22905,2657,'dt-img-hide-title','0'),(22906,2658,'_wp_attached_file','2017/05/Screen-Shot-2017-04-25-at-07.35.11-1.png'),(22907,2658,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:680;s:6:\"height\";i:904;s:4:\"file\";s:48:\"2017/05/Screen-Shot-2017-04-25-at-07.35.11-1.png\";s:8:\"filesize\";i:861861;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22908,2658,'dt-img-hide-title','0'),(22909,2721,'_wp_attached_file','2017/05/Screen-Shot-2017-05-16-at-06.19.57-1.png'),(22910,2721,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:564;s:6:\"height\";i:1026;s:4:\"file\";s:48:\"2017/05/Screen-Shot-2017-05-16-at-06.19.57-1.png\";s:8:\"filesize\";i:881547;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22911,2721,'dt-img-hide-title','0'),(22912,2722,'_wp_attached_file','2017/05/IMG_9354-1.jpg'),(22913,2722,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2017/05/IMG_9354-1.jpg\";s:8:\"filesize\";i:238099;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1494433588\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22914,2722,'dt-img-hide-title','0'),(22915,2723,'_wp_attached_file','2017/05/Screen-Shot-2017-05-16-at-06.15.24-1.png'),(22916,2723,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:826;s:6:\"height\";i:430;s:4:\"file\";s:48:\"2017/05/Screen-Shot-2017-05-16-at-06.15.24-1.png\";s:8:\"filesize\";i:444865;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22917,2723,'dt-img-hide-title','0'),(22918,2724,'_wp_attached_file','2017/05/Screen-Shot-2017-05-16-at-06.15.15-1.png'),(22919,2724,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1202;s:6:\"height\";i:590;s:4:\"file\";s:48:\"2017/05/Screen-Shot-2017-05-16-at-06.15.15-1.png\";s:8:\"filesize\";i:978261;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22920,2724,'dt-img-hide-title','0'),(22921,2725,'_wp_attached_file','2017/05/IMG_9448-1.png'),(22922,2725,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1242;s:6:\"height\";i:2208;s:4:\"file\";s:22:\"2017/05/IMG_9448-1.png\";s:8:\"filesize\";i:855837;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22923,2725,'dt-img-hide-title','0'),(22924,2726,'_wp_attached_file','2017/05/IMG_9327-1.jpg'),(22925,2726,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:22:\"2017/05/IMG_9327-1.jpg\";s:8:\"filesize\";i:275163;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(22926,2726,'dt-img-hide-title','0'),(22927,2727,'_wp_attached_file','2017/05/Screen-Shot-2017-01-11-at-10.11.31-1.png'),(22928,2727,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:996;s:6:\"height\";i:552;s:4:\"file\";s:48:\"2017/05/Screen-Shot-2017-01-11-at-10.11.31-1.png\";s:8:\"filesize\";i:958285;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22929,2727,'dt-img-hide-title','0'),(22930,2728,'_wp_attached_file','2017/05/Screen-Shot-2016-12-18-at-06.52.03-1.png'),(22931,2728,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1012;s:6:\"height\";i:1356;s:4:\"file\";s:48:\"2017/05/Screen-Shot-2016-12-18-at-06.52.03-1.png\";s:8:\"filesize\";i:911881;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22932,2728,'dt-img-hide-title','0'),(22933,2729,'_wp_attached_file','2017/05/Screen-Shot-2016-12-18-at-06.51.56-1.png'),(22934,2729,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:614;s:6:\"height\";i:628;s:4:\"file\";s:48:\"2017/05/Screen-Shot-2016-12-18-at-06.51.56-1.png\";s:8:\"filesize\";i:445112;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22935,2729,'dt-img-hide-title','0'),(22936,2756,'_wp_attached_file','2017/05/Screen-Shot-2017-05-22-at-21.01.16-1.png'),(22937,2756,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1542;s:6:\"height\";i:764;s:4:\"file\";s:48:\"2017/05/Screen-Shot-2017-05-22-at-21.01.16-1.png\";s:8:\"filesize\";i:1593767;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22938,2756,'dt-img-hide-title','0'),(22939,2759,'_wp_attached_file','2017/05/Screen-Shot-2017-05-23-at-06.26.43-1.png'),(22940,2759,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:594;s:6:\"height\";i:308;s:4:\"file\";s:48:\"2017/05/Screen-Shot-2017-05-23-at-06.26.43-1.png\";s:8:\"filesize\";i:318799;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22941,2759,'dt-img-hide-title','0'),(22942,2781,'_wp_attached_file','2017/05/This-Tough-Lesson-Could-See-Your-Client-Relationships-Excel-1.png'),(22943,2781,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:73:\"2017/05/This-Tough-Lesson-Could-See-Your-Client-Relationships-Excel-1.png\";s:8:\"filesize\";i:424739;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22944,2781,'dt-img-hide-title','0'),(22945,2786,'_wp_attached_file','2017/05/SPINE-Biomechanics-blog-1.png'),(22946,2786,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:37:\"2017/05/SPINE-Biomechanics-blog-1.png\";s:8:\"filesize\";i:513375;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22947,2786,'dt-img-hide-title','0'),(22948,2787,'_wp_attached_file','2017/05/MG_9964-1-scaled.jpg'),(22949,2787,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2017/05/MG_9964-1-scaled.jpg\";s:8:\"filesize\";i:268535;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469184863\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"MG_9964-1.jpg\";}'),(22950,2787,'dt-img-hide-title','0'),(22951,2788,'_wp_attached_file','2017/05/How-To-Identify-If-Your-Quadratus-Lumborum-Muscle-Is-In-Spasm-Its-Effect-On-Lower-Back-Pain-Movement-Ability-1.png'),(22952,2788,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:122:\"2017/05/How-To-Identify-If-Your-Quadratus-Lumborum-Muscle-Is-In-Spasm-Its-Effect-On-Lower-Back-Pain-Movement-Ability-1.png\";s:8:\"filesize\";i:985311;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22953,2788,'dt-img-hide-title','0'),(22954,2788,'_wp_attachment_image_alt','the effect of quadratus lumborum muscle'),(22955,2810,'_wp_attached_file','2017/06/Screen-Shot-2017-06-19-at-11.13.10-1.png'),(22956,2810,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1206;s:6:\"height\";i:600;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-19-at-11.13.10-1.png\";s:8:\"filesize\";i:999689;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22957,2810,'dt-img-hide-title','0'),(22958,2811,'_wp_attached_file','2017/06/Screen-Shot-2017-06-18-at-20.23.23-1.png'),(22959,2811,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1130;s:6:\"height\";i:800;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-18-at-20.23.23-1.png\";s:8:\"filesize\";i:950543;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22960,2811,'dt-img-hide-title','0'),(22961,2812,'_wp_attached_file','2017/06/Screen-Shot-2017-06-18-at-20.22.11-1.png'),(22962,2812,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:792;s:6:\"height\";i:786;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-18-at-20.22.11-1.png\";s:8:\"filesize\";i:534964;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22963,2812,'dt-img-hide-title','0'),(22964,2813,'_wp_attached_file','2017/06/Screen-Shot-2017-06-18-at-20.22.59-1.png'),(22965,2813,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1062;s:6:\"height\";i:796;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-18-at-20.22.59-1.png\";s:8:\"filesize\";i:725001;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22966,2813,'dt-img-hide-title','0'),(22967,2814,'_wp_attached_file','2017/06/Screen-Shot-2017-06-18-at-20.22.27-1.png'),(22968,2814,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:526;s:6:\"height\";i:548;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-18-at-20.22.27-1.png\";s:8:\"filesize\";i:305793;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22969,2814,'dt-img-hide-title','0'),(22970,2815,'_wp_attached_file','2017/06/Screen-Shot-2017-06-18-at-20.24.53-1.png'),(22971,2815,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:842;s:6:\"height\";i:608;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-18-at-20.24.53-1.png\";s:8:\"filesize\";i:316569;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22972,2815,'dt-img-hide-title','0'),(22973,2816,'_wp_attached_file','2017/06/shutterstock_82385002-1.jpeg'),(22974,2816,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:776;s:6:\"height\";i:1164;s:4:\"file\";s:36:\"2017/06/shutterstock_82385002-1.jpeg\";s:8:\"filesize\";i:61255;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22975,2816,'dt-img-hide-title','0'),(22976,2817,'_wp_attached_file','2017/06/shutterstock_251044630-1.jpeg'),(22977,2817,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:961;s:6:\"height\";i:960;s:4:\"file\";s:37:\"2017/06/shutterstock_251044630-1.jpeg\";s:8:\"filesize\";i:55308;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22978,2817,'dt-img-hide-title','0'),(22979,2818,'_wp_attached_file','2017/06/shutterstock_415217266-1.jpeg'),(22980,2818,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1069;s:6:\"height\";i:713;s:4:\"file\";s:37:\"2017/06/shutterstock_415217266-1.jpeg\";s:8:\"filesize\";i:86138;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22981,2818,'dt-img-hide-title','0'),(22982,2837,'_wp_attached_file','2017/05/knee2FFoot-Biomechanics-blog-1.png'),(22983,2837,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:512;s:4:\"file\";s:42:\"2017/05/knee2FFoot-Biomechanics-blog-1.png\";s:8:\"filesize\";i:759206;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22984,2837,'dt-img-hide-title','0'),(22985,2846,'_wp_attached_file','2017/06/IMG_0096-1-scaled.jpg'),(22986,2846,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2017/06/IMG_0096-1-scaled.jpg\";s:8:\"filesize\";i:893605;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1497777543\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00061087354917532\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_0096-1.jpg\";}'),(22987,2846,'dt-img-hide-title','0'),(22988,2847,'_wp_attached_file','2017/06/IMG_0101-1.jpg'),(22989,2847,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1931;s:6:\"height\";i:1931;s:4:\"file\";s:22:\"2017/06/IMG_0101-1.jpg\";s:8:\"filesize\";i:649030;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1497799391\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.65\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22990,2847,'dt-img-hide-title','0'),(22991,2856,'_wp_attached_file','2017/06/Screen-Shot-2017-06-27-at-19.00.46-1.png'),(22992,2856,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:626;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-27-at-19.00.46-1.png\";s:8:\"filesize\";i:1152563;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22993,2856,'dt-img-hide-title','0'),(22994,2857,'_wp_attached_file','2017/06/Screen-Shot-2017-06-27-at-19.04.21-1.png'),(22995,2857,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1216;s:6:\"height\";i:802;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-27-at-19.04.21-1.png\";s:8:\"filesize\";i:1572026;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22996,2857,'dt-img-hide-title','0'),(22997,2858,'_wp_attached_file','2017/06/Screen-Shot-2017-06-27-at-19.05.55-1.png'),(22998,2858,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1274;s:6:\"height\";i:800;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-27-at-19.05.55-1.png\";s:8:\"filesize\";i:1166507;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(22999,2858,'dt-img-hide-title','0'),(23000,2859,'_wp_attached_file','2017/06/Screen-Shot-2017-06-27-at-19.13.05-1.png'),(23001,2859,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:654;s:6:\"height\";i:780;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-27-at-19.13.05-1.png\";s:8:\"filesize\";i:988200;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23002,2859,'dt-img-hide-title','0'),(23003,38588,'_wp_attachment_context','custom-header'),(23004,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(23005,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(23006,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(23007,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(23008,192,'dt-img-hide-title','0'),(23009,194,'dt-img-hide-title','0'),(23010,205,'dt-img-hide-title','0'),(23011,206,'dt-img-hide-title','0'),(23012,208,'dt-img-hide-title','0'),(23013,247,'dt-img-hide-title','0'),(23014,248,'_wp_attachment_context','site-icon'),(23015,248,'dt-img-hide-title','0'),(23016,265,'dt-img-hide-title','0'),(23017,283,'dt-img-hide-title','0'),(23018,284,'dt-img-hide-title','0'),(23019,285,'dt-img-hide-title','0'),(23020,287,'dt-img-hide-title','0'),(23021,290,'dt-img-hide-title','0'),(23022,291,'dt-img-hide-title','0'),(23023,294,'dt-img-hide-title','0'),(23024,297,'dt-img-hide-title','0'),(23025,333,'dt-img-hide-title','0'),(23026,341,'dt-img-hide-title','0'),(23027,407,'dt-img-hide-title','0'),(23028,458,'dt-img-hide-title','0'),(23029,495,'dt-img-hide-title','0'),(23030,497,'dt-img-hide-title','0'),(23031,505,'dt-img-hide-title','0'),(23032,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(23033,210,'dt-img-link',''),(23034,210,'dt-img-hide-title','0'),(23035,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(23036,221,'dt-img-link',''),(23037,221,'dt-img-hide-title','0'),(23038,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(23039,224,'dt-img-link',''),(23040,224,'dt-img-hide-title','0'),(23041,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(23042,228,'dt-img-link',''),(23043,228,'dt-img-hide-title','0'),(23044,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(23045,230,'dt-img-link',''),(23046,230,'dt-img-hide-title','0'),(23047,237,'dt-img-hide-title','0'),(23048,237,'dt-img-link',''),(23049,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(23050,557,'dt-img-hide-title','0'),(23051,559,'dt-img-hide-title','0'),(23052,562,'dt-img-hide-title','0'),(23053,569,'dt-img-hide-title','0'),(23054,592,'dt-img-hide-title','0'),(23055,596,'dt-img-hide-title','0'),(23056,617,'dt-img-hide-title','0'),(23057,620,'dt-img-hide-title','0'),(23058,621,'dt-img-hide-title','0'),(23059,623,'dt-img-hide-title','0'),(23060,624,'dt-img-hide-title','0'),(23061,644,'dt-img-hide-title','0'),(23062,648,'dt-img-hide-title','0'),(23063,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(23064,824,'dt-img-link',''),(23065,824,'dt-img-hide-title','0'),(23066,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(23067,825,'dt-img-link',''),(23068,825,'dt-img-hide-title','0'),(23069,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(23070,828,'dt-img-link',''),(23071,828,'dt-img-hide-title','0'),(23072,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(23073,1450,'dt-img-link',''),(23074,1450,'dt-img-hide-title','0'),(23075,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(23076,1451,'dt-img-link',''),(23077,1451,'dt-img-hide-title','0'),(23078,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(23079,1452,'dt-img-link',''),(23080,1452,'dt-img-hide-title','0'),(23081,652,'dt-img-hide-title','0'),(23082,655,'dt-img-hide-title','0'),(23083,675,'dt-img-hide-title','0'),(23084,678,'dt-img-hide-title','0'),(23085,683,'dt-img-hide-title','0'),(23086,703,'dt-img-hide-title','0'),(23087,706,'dt-img-hide-title','0'),(23088,709,'dt-img-hide-title','0'),(23089,712,'dt-img-hide-title','0'),(23090,713,'dt-img-hide-title','0'),(23091,714,'dt-img-hide-title','0'),(23092,715,'dt-img-hide-title','0'),(23093,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(23094,722,'dt-img-hide-title','0'),(23095,735,'dt-img-hide-title','0'),(23096,759,'dt-img-hide-title','0'),(23097,762,'dt-img-hide-title','0'),(23098,766,'dt-img-hide-title','0'),(23099,770,'dt-img-hide-title','0'),(23100,804,'dt-img-hide-title','0'),(23101,814,'dt-img-hide-title','0'),(23102,827,'dt-img-hide-title','0'),(23103,830,'dt-img-hide-title','0'),(23104,854,'dt-img-hide-title','0'),(23105,857,'dt-img-hide-title','0'),(23106,874,'dt-img-hide-title','0'),(23107,937,'dt-img-hide-title','0'),(23108,941,'dt-img-hide-title','0'),(23109,955,'dt-img-hide-title','0'),(23110,969,'_wp_attachment_image_alt','imove Freely'),(23111,969,'dt-img-hide-title','0'),(23112,1001,'dt-img-hide-title','0'),(23113,1015,'dt-img-hide-title','0'),(23114,1018,'dt-img-hide-title','0'),(23115,1020,'dt-img-hide-title','0'),(23116,1021,'dt-img-hide-title','0'),(23117,1024,'dt-img-hide-title','0'),(23118,1027,'dt-img-hide-title','0'),(23119,1030,'dt-img-hide-title','0'),(23120,1035,'dt-img-hide-title','0'),(23121,1039,'dt-img-hide-title','0'),(23122,1045,'dt-img-hide-title','0'),(23123,1051,'dt-img-hide-title','0'),(23124,1052,'dt-img-hide-title','0'),(23125,1055,'dt-img-hide-title','0'),(23126,1057,'dt-img-hide-title','0'),(23127,1061,'dt-img-hide-title','0'),(23128,1065,'dt-img-hide-title','0'),(23129,1068,'dt-img-hide-title','0'),(23130,1073,'dt-img-hide-title','0'),(23131,1078,'dt-img-hide-title','0'),(23132,1084,'dt-img-hide-title','0'),(23133,1088,'dt-img-hide-title','0'),(23134,1094,'dt-img-hide-title','0'),(23135,1096,'dt-img-hide-title','0'),(23136,1097,'dt-img-hide-title','0'),(23137,1099,'dt-img-hide-title','0'),(23138,1106,'dt-img-hide-title','0'),(23139,1110,'dt-img-hide-title','0'),(23140,1112,'dt-img-hide-title','0'),(23141,1116,'dt-img-hide-title','0'),(23142,1125,'dt-img-hide-title','0'),(23143,1129,'dt-img-hide-title','0'),(23144,1145,'dt-img-hide-title','0'),(23145,1167,'dt-img-hide-title','0'),(23146,1184,'dt-img-hide-title','0'),(23147,1186,'dt-img-hide-title','0'),(23148,1187,'dt-img-hide-title','0'),(23149,1189,'dt-img-hide-title','0'),(23150,1194,'dt-img-hide-title','0'),(23151,1197,'dt-img-hide-title','0'),(23152,1201,'dt-img-hide-title','0'),(23153,1202,'dt-img-hide-title','0'),(23154,1203,'dt-img-hide-title','0'),(23155,1204,'dt-img-hide-title','0'),(23156,1205,'dt-img-hide-title','0'),(23157,1206,'dt-img-hide-title','0'),(23158,1207,'dt-img-hide-title','0'),(23159,1209,'dt-img-hide-title','0'),(23160,1210,'dt-img-hide-title','0'),(23161,1211,'dt-img-hide-title','0'),(23162,1212,'dt-img-hide-title','0'),(23163,1213,'dt-img-hide-title','0'),(23164,1214,'dt-img-hide-title','0'),(23165,1220,'dt-img-hide-title','0'),(23166,1223,'dt-img-hide-title','0'),(23167,1226,'dt-img-hide-title','0'),(23168,1228,'dt-img-hide-title','0'),(23169,1232,'dt-img-hide-title','0'),(23170,1235,'dt-img-hide-title','0'),(23171,1239,'dt-img-hide-title','0'),(23172,1242,'dt-img-hide-title','0'),(23173,1246,'dt-img-hide-title','0'),(23174,1256,'dt-img-hide-title','0'),(23175,1262,'dt-img-hide-title','0'),(23176,1265,'dt-img-hide-title','0'),(23177,1269,'dt-img-hide-title','0'),(23178,1275,'dt-img-hide-title','0'),(23179,1279,'dt-img-hide-title','0'),(23180,1312,'dt-img-hide-title','0'),(23181,1316,'dt-img-hide-title','0'),(23182,1320,'dt-img-hide-title','0'),(23183,1326,'dt-img-hide-title','0'),(23184,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(23185,1334,'dt-img-hide-title','0'),(23186,1338,'dt-img-hide-title','0'),(23187,1339,'dt-img-hide-title','0'),(23188,1343,'dt-img-hide-title','0'),(23189,1347,'dt-img-hide-title','0'),(23190,1351,'dt-img-hide-title','0'),(23191,1354,'dt-img-hide-title','0'),(23192,1357,'dt-img-hide-title','0'),(23193,1359,'dt-img-hide-title','0'),(23194,1362,'dt-img-hide-title','0'),(23195,1366,'dt-img-hide-title','0'),(23196,1379,'dt-img-hide-title','0'),(23197,1398,'dt-img-hide-title','0'),(23198,1403,'dt-img-hide-title','0'),(23199,1406,'dt-img-hide-title','0'),(23200,1410,'dt-img-hide-title','0'),(23201,1413,'dt-img-hide-title','0'),(23202,1416,'dt-img-hide-title','0'),(23203,1419,'dt-img-hide-title','0'),(23204,1423,'dt-img-hide-title','0'),(23205,1429,'dt-img-hide-title','0'),(23206,1430,'dt-img-hide-title','0'),(23207,1433,'dt-img-hide-title','0'),(23208,1463,'dt-img-hide-title','0'),(23209,1463,'dt-img-hide-title','0'),(23210,1463,'dt-img-hide-title','0'),(23211,1463,'dt-img-hide-title','0'),(23212,1463,'dt-img-hide-title','0'),(23213,1468,'dt-img-hide-title','0'),(23214,2229,'dt-img-hide-title','0'),(23215,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(23216,2230,'dt-img-hide-title','0'),(23217,2231,'dt-img-hide-title','0'),(23218,2232,'dt-img-hide-title','0'),(23219,2233,'dt-img-hide-title','0'),(23220,2234,'dt-img-hide-title','0'),(23221,2235,'dt-img-hide-title','0'),(23222,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(23223,1474,'dt-img-hide-title','0'),(23224,1475,'dt-img-hide-title','0'),(23225,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(23226,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(23227,1476,'dt-img-hide-title','0'),(23228,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(23229,1478,'dt-img-hide-title','0'),(23230,1479,'dt-img-hide-title','0'),(23231,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(23232,1489,'dt-img-hide-title','0'),(23233,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(23234,1500,'dt-img-hide-title','0'),(23235,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(23236,1501,'dt-img-hide-title','0'),(23237,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(23238,1504,'dt-img-hide-title','0'),(23239,1508,'_wp_attachment_image_alt',''),(23240,1508,'dt-img-hide-title','0'),(23241,1508,'dt-video-url',''),(23242,1508,'dt-img-link',''),(23243,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(23244,1510,'dt-img-hide-title','0'),(23245,1514,'dt-img-hide-title','0'),(23246,2236,'dt-img-hide-title','0'),(23247,2237,'dt-img-hide-title','0'),(23248,2238,'dt-img-hide-title','0'),(23249,2239,'dt-img-hide-title','0'),(23250,2247,'dt-img-hide-title','0'),(23251,2248,'dt-img-hide-title','0'),(23252,2249,'dt-img-hide-title','0'),(23253,1533,'dt-img-hide-title','0'),(23254,1535,'dt-img-hide-title','0'),(23255,1536,'dt-img-hide-title','0'),(23256,1540,'dt-img-hide-title','0'),(23257,1546,'dt-img-hide-title','0'),(23258,1556,'dt-img-hide-title','0'),(23259,1566,'dt-img-hide-title','0'),(23260,1595,'dt-img-hide-title','0'),(23261,1608,'dt-video-url',''),(23262,1608,'dt-img-link',''),(23263,1608,'dt-img-hide-title','0'),(23264,1825,'dt-img-hide-title','0'),(23265,2250,'dt-img-hide-title','0'),(23266,2251,'dt-img-hide-title','0'),(23267,2252,'dt-img-hide-title','0'),(23268,2253,'dt-img-hide-title','0'),(23269,2254,'dt-img-hide-title','0'),(23270,2255,'dt-img-hide-title','0'),(23271,2256,'dt-img-hide-title','0'),(23272,2257,'dt-img-hide-title','0'),(23273,2258,'dt-img-hide-title','0'),(23274,2259,'dt-img-hide-title','0'),(23275,1646,'dt-img-hide-title','0'),(23276,1650,'dt-img-hide-title','0'),(23280,2241,'dt-img-hide-title','0'),(23281,2242,'dt-img-hide-title','0'),(23282,2243,'dt-img-hide-title','0'),(23283,2244,'dt-img-hide-title','0'),(23284,2245,'dt-img-hide-title','0'),(23285,2246,'dt-img-hide-title','0'),(23286,2260,'dt-img-hide-title','0'),(23287,2261,'dt-img-hide-title','0'),(23288,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(23289,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(23290,2262,'dt-img-hide-title','0'),(23291,2263,'dt-img-hide-title','0'),(23292,2264,'dt-img-hide-title','0'),(23293,2265,'dt-img-hide-title','0'),(23294,2266,'dt-img-hide-title','0'),(23295,2267,'dt-img-hide-title','0'),(23296,2268,'dt-img-hide-title','0'),(23297,2269,'dt-img-hide-title','0'),(23298,2270,'dt-img-hide-title','0'),(23299,1658,'dt-img-hide-title','0'),(23300,1660,'dt-img-hide-title','0'),(23301,1667,'dt-img-hide-title','0'),(23302,1668,'dt-img-hide-title','0'),(23303,1669,'dt-img-hide-title','0'),(23304,1674,'dt-img-hide-title','0'),(23305,2102,'dt-img-hide-title','0'),(23306,2103,'dt-img-hide-title','0'),(23307,2104,'dt-img-hide-title','0'),(23308,2105,'dt-img-hide-title','0'),(23309,2106,'dt-img-hide-title','0'),(23310,2107,'dt-img-hide-title','0'),(23311,2108,'dt-img-hide-title','0'),(23312,2109,'dt-img-hide-title','0'),(23313,2110,'dt-img-hide-title','0'),(23314,2111,'dt-img-hide-title','0'),(23315,2112,'dt-img-hide-title','0'),(23316,2113,'dt-img-hide-title','0'),(23317,2114,'dt-img-hide-title','0'),(23318,2115,'dt-img-hide-title','0'),(23319,1675,'dt-img-hide-title','0'),(23320,1699,'dt-img-hide-title','0'),(23321,1700,'dt-img-hide-title','0'),(23322,1701,'dt-img-hide-title','0'),(23323,1702,'dt-img-hide-title','0'),(23324,2217,'dt-img-hide-title','0'),(23325,2222,'dt-img-hide-title','0'),(23326,2271,'dt-img-hide-title','0'),(23327,2289,'dt-img-hide-title','0'),(23328,2291,'dt-img-hide-title','0'),(23329,2293,'dt-img-hide-title','0'),(23330,2295,'dt-img-hide-title','0'),(23331,2297,'dt-img-hide-title','0'),(23332,2299,'dt-img-hide-title','0'),(23333,2301,'dt-img-hide-title','0'),(23334,2303,'dt-img-hide-title','0'),(23335,2305,'dt-img-hide-title','0'),(23336,2307,'dt-img-hide-title','0'),(23337,2405,'dt-img-hide-title','0'),(23338,2405,'_wp_attachment_image_alt','iMoveFreely® Exercises To Try At Home'),(23339,2409,'dt-img-hide-title','0'),(23340,2409,'_wp_attachment_image_alt','Don’t Listen To Us….Listen To Them!'),(23341,2410,'dt-img-hide-title','0'),(23342,2410,'_wp_attachment_image_alt','Presentations at The Movement Convention'),(23343,2411,'dt-img-hide-title','0'),(23344,2411,'_wp_attachment_image_alt','Just For Fun'),(23345,2413,'dt-img-hide-title','0'),(23346,2413,'_wp_attachment_image_alt','We all Squat Differently?'),(23347,2415,'dt-img-hide-title','0'),(23348,2415,'_wp_attachment_image_alt','What Do Our Workshops Look Like?'),(23349,2534,'dt-img-hide-title','0'),(23350,2535,'dt-img-hide-title','0'),(23351,2537,'dt-img-hide-title','0'),(23352,2538,'dt-img-hide-title','0'),(23353,2539,'dt-img-hide-title','0'),(23354,2540,'dt-img-hide-title','0'),(23355,2541,'dt-img-hide-title','0'),(23356,2548,'dt-img-hide-title','0'),(23357,2549,'dt-img-hide-title','0'),(23358,2550,'dt-img-hide-title','0'),(23359,2551,'dt-img-hide-title','0'),(23360,2552,'dt-img-hide-title','0'),(23361,2611,'dt-img-hide-title','0'),(23362,2612,'dt-img-hide-title','0'),(23363,2613,'dt-img-hide-title','0'),(23364,2614,'dt-img-hide-title','0'),(23365,2615,'dt-img-hide-title','0'),(23366,2655,'dt-img-hide-title','0'),(23367,2656,'dt-img-hide-title','0'),(23368,2657,'dt-img-hide-title','0'),(23369,2658,'dt-img-hide-title','0'),(23370,2721,'dt-img-hide-title','0'),(23371,2722,'dt-img-hide-title','0'),(23372,2723,'dt-img-hide-title','0'),(23373,2724,'dt-img-hide-title','0'),(23374,2725,'dt-img-hide-title','0'),(23375,2726,'dt-img-hide-title','0'),(23376,2727,'dt-img-hide-title','0'),(23377,2728,'dt-img-hide-title','0'),(23378,2729,'dt-img-hide-title','0'),(23379,2756,'dt-img-hide-title','0'),(23380,2759,'dt-img-hide-title','0'),(23381,2781,'dt-img-hide-title','0'),(23382,2786,'dt-img-hide-title','0'),(23383,2787,'dt-img-hide-title','0'),(23384,2788,'dt-img-hide-title','0'),(23385,2788,'_wp_attachment_image_alt','the effect of quadratus lumborum muscle'),(23386,2810,'dt-img-hide-title','0'),(23387,2811,'dt-img-hide-title','0'),(23388,2812,'dt-img-hide-title','0'),(23389,2813,'dt-img-hide-title','0'),(23390,2814,'dt-img-hide-title','0'),(23391,2815,'dt-img-hide-title','0'),(23392,2816,'dt-img-hide-title','0'),(23393,2817,'dt-img-hide-title','0'),(23394,2818,'dt-img-hide-title','0'),(23395,2837,'dt-img-hide-title','0'),(23396,2846,'dt-img-hide-title','0'),(23397,2847,'dt-img-hide-title','0'),(23398,2856,'dt-img-hide-title','0'),(23399,2857,'dt-img-hide-title','0'),(23400,2858,'dt-img-hide-title','0'),(23401,2859,'dt-img-hide-title','0'),(23402,2860,'_wp_attached_file','2017/06/Screen-Shot-2017-06-27-at-19.13.59-1.png'),(23403,2860,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1448;s:6:\"height\";i:726;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-27-at-19.13.59-1.png\";s:8:\"filesize\";i:1727411;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23404,2860,'dt-img-hide-title','0'),(23405,2861,'_wp_attached_file','2017/06/Screen-Shot-2017-06-27-at-19.20.34-1.png'),(23406,2861,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1060;s:6:\"height\";i:796;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-27-at-19.20.34-1.png\";s:8:\"filesize\";i:616559;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23407,2861,'dt-img-hide-title','0'),(23408,2862,'_wp_attached_file','2017/06/Screen-Shot-2017-06-27-at-19.25.30-1.png'),(23409,2862,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1190;s:6:\"height\";i:796;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-27-at-19.25.30-1.png\";s:8:\"filesize\";i:452640;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23410,2862,'dt-img-hide-title','0'),(23411,2868,'_wp_attached_file','2017/06/Want-50-More-Muscle-Output-1.png'),(23412,2868,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:40:\"2017/06/Want-50-More-Muscle-Output-1.png\";s:8:\"filesize\";i:747952;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23413,2868,'dt-img-hide-title','0'),(23414,2869,'_wp_attached_file','2017/06/Screen-Shot-2017-06-29-at-08.09.23-1.png'),(23415,2869,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1186;s:6:\"height\";i:804;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-29-at-08.09.23-1.png\";s:8:\"filesize\";i:968431;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23416,2869,'dt-img-hide-title','0'),(23417,2870,'_wp_attached_file','2017/06/Screen-Shot-2017-06-29-at-08.08.25-1.png'),(23418,2870,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:898;s:6:\"height\";i:1350;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-29-at-08.08.25-1.png\";s:8:\"filesize\";i:1446765;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23419,2870,'dt-img-hide-title','0'),(23420,2871,'_wp_attached_file','2017/06/Screen-Shot-2017-06-29-at-08.07.42-1.png'),(23421,2871,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1442;s:6:\"height\";i:650;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-29-at-08.07.42-1.png\";s:8:\"filesize\";i:1191944;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23422,2871,'dt-img-hide-title','0'),(23423,2875,'_wp_attached_file','2017/06/Screen-Shot-2017-06-29-at-08.46.51-1.png'),(23424,2875,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1220;s:6:\"height\";i:1308;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-29-at-08.46.51-1.png\";s:8:\"filesize\";i:1314954;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23425,2875,'dt-img-hide-title','0'),(23426,2876,'_wp_attached_file','2017/06/Move-more-or-move-less-1.png'),(23427,2876,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:36:\"2017/06/Move-more-or-move-less-1.png\";s:8:\"filesize\";i:233275;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23428,2876,'dt-img-hide-title','0'),(23429,2877,'_wp_attached_file','2017/06/Screen-Shot-2017-06-29-at-08.54.01-1.png'),(23430,2877,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1162;s:6:\"height\";i:550;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-29-at-08.54.01-1.png\";s:8:\"filesize\";i:451254;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23431,2877,'dt-img-hide-title','0'),(23432,2878,'_wp_attached_file','2017/06/Screen-Shot-2017-06-29-at-08.57.56-1.png'),(23433,2878,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1776;s:6:\"height\";i:960;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-29-at-08.57.56-1.png\";s:8:\"filesize\";i:2692523;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23434,2878,'dt-img-hide-title','0'),(23435,2879,'_wp_attached_file','2017/06/Screen-Shot-2017-06-29-at-08.57.16-1.png'),(23436,2879,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2244;s:6:\"height\";i:1102;s:4:\"file\";s:48:\"2017/06/Screen-Shot-2017-06-29-at-08.57.16-1.png\";s:8:\"filesize\";i:2727177;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23437,2879,'dt-img-hide-title','0'),(23438,2894,'_wp_attached_file','2017/06/CIMSPA_Partner_Logo_trans-1.png'),(23439,2894,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1417;s:6:\"height\";i:661;s:4:\"file\";s:39:\"2017/06/CIMSPA_Partner_Logo_trans-1.png\";s:8:\"filesize\";i:52842;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23440,2894,'dt-img-hide-title','0'),(23441,2894,'dt-video-url',''),(23442,2894,'dt-img-link',''),(23443,2896,'_wp_attached_file','2017/06/table_pic-1.jpg'),(23444,2896,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:787;s:6:\"height\";i:426;s:4:\"file\";s:23:\"2017/06/table_pic-1.jpg\";s:8:\"filesize\";i:262982;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(23445,2896,'dt-img-hide-title','0'),(23446,2896,'dt-video-url',''),(23447,2896,'dt-img-link',''),(23448,2960,'_wp_attached_file','2017/07/iStock_000016731739Large-1-scaled.jpg'),(23449,2960,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:45:\"2017/07/iStock_000016731739Large-1-scaled.jpg\";s:8:\"filesize\";i:510606;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:22:\"Canon EOS-1Ds Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1306493319\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:30:\"iStock_000016731739Large-1.jpg\";}'),(23450,2960,'dt-img-hide-title','0'),(23451,2961,'_wp_attached_file','2017/07/Screen-Shot-2017-06-30-at-08.38.12-1.png'),(23452,2961,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:692;s:6:\"height\";i:678;s:4:\"file\";s:48:\"2017/07/Screen-Shot-2017-06-30-at-08.38.12-1.png\";s:8:\"filesize\";i:514047;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23453,2961,'dt-img-hide-title','0'),(23454,2962,'_wp_attached_file','2017/07/Screen-Shot-2017-07-03-at-10.01.47-1.png'),(23455,2962,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2106;s:6:\"height\";i:486;s:4:\"file\";s:48:\"2017/07/Screen-Shot-2017-07-03-at-10.01.47-1.png\";s:8:\"filesize\";i:1364509;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23456,2962,'dt-img-hide-title','0'),(23457,2963,'_wp_attached_file','2017/07/Screen-Shot-2017-06-30-at-08.23.34-1.png'),(23458,2963,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1236;s:6:\"height\";i:922;s:4:\"file\";s:48:\"2017/07/Screen-Shot-2017-06-30-at-08.23.34-1.png\";s:8:\"filesize\";i:606724;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23459,2963,'dt-img-hide-title','0'),(23460,2964,'_wp_attached_file','2017/07/Screen-Shot-2017-07-03-at-10.10.13-1.png'),(23461,2964,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1818;s:6:\"height\";i:1444;s:4:\"file\";s:48:\"2017/07/Screen-Shot-2017-07-03-at-10.10.13-1.png\";s:8:\"filesize\";i:1254996;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23462,2964,'dt-img-hide-title','0'),(23463,2965,'_wp_attached_file','2017/07/Screen-Shot-2017-07-10-at-16.21.26-1.png'),(23464,2965,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:958;s:6:\"height\";i:766;s:4:\"file\";s:48:\"2017/07/Screen-Shot-2017-07-10-at-16.21.26-1.png\";s:8:\"filesize\";i:679916;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23465,2965,'dt-img-hide-title','0'),(23466,2966,'_wp_attached_file','2017/07/Screen-Shot-2017-07-10-at-16.21.37-1.png'),(23467,2966,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:786;s:6:\"height\";i:552;s:4:\"file\";s:48:\"2017/07/Screen-Shot-2017-07-10-at-16.21.37-1.png\";s:8:\"filesize\";i:371052;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23468,2966,'dt-img-hide-title','0'),(23469,2967,'_wp_attached_file','2017/07/Screen-Shot-2017-07-10-at-16.22.33-1.png'),(23470,2967,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:586;s:6:\"height\";i:542;s:4:\"file\";s:48:\"2017/07/Screen-Shot-2017-07-10-at-16.22.33-1.png\";s:8:\"filesize\";i:214753;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23471,2967,'dt-img-hide-title','0'),(23472,2968,'_wp_attached_file','2017/07/Could-The-Core-Stability-Training-Your-Prescribing-Your-Clients-Actually-Be-Damaging-Them-1.png'),(23473,2968,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:103:\"2017/07/Could-The-Core-Stability-Training-Your-Prescribing-Your-Clients-Actually-Be-Damaging-Them-1.png\";s:8:\"filesize\";i:462379;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23474,2968,'dt-img-hide-title','0'),(23475,2969,'_wp_attached_file','2017/07/2Could-The-Core-Stability-Training-Your-Prescribing-Your-Clients-Actually-Be-Damaging-Them-1.png'),(23476,2969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:104:\"2017/07/2Could-The-Core-Stability-Training-Your-Prescribing-Your-Clients-Actually-Be-Damaging-Them-1.png\";s:8:\"filesize\";i:299093;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23477,2969,'dt-img-hide-title','0'),(23478,2976,'_wp_attached_file','2017/08/core-stability-1.png'),(23479,2976,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:28:\"2017/08/core-stability-1.png\";s:8:\"filesize\";i:960177;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23480,2976,'dt-img-hide-title','0'),(23481,2986,'_wp_attached_file','2017/08/simon-case-study-2-1.png'),(23482,2986,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:32:\"2017/08/simon-case-study-2-1.png\";s:8:\"filesize\";i:495241;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23483,2986,'dt-img-hide-title','0'),(23484,2999,'_wp_attached_file','2017/07/ex-vs-in-1.png'),(23485,2999,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:22:\"2017/07/ex-vs-in-1.png\";s:8:\"filesize\";i:1015579;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23486,2999,'dt-img-hide-title','0'),(23487,3002,'_wp_attached_file','2017/07/clients-moving-1.png'),(23488,3002,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:28:\"2017/07/clients-moving-1.png\";s:8:\"filesize\";i:823481;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23489,3002,'dt-img-hide-title','0'),(23490,3003,'_wp_attached_file','2017/07/Screen-Shot-2017-07-12-at-15.15.42-1.png'),(23491,3003,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:686;s:6:\"height\";i:1074;s:4:\"file\";s:48:\"2017/07/Screen-Shot-2017-07-12-at-15.15.42-1.png\";s:8:\"filesize\";i:463745;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23492,3003,'dt-img-hide-title','0'),(23493,3004,'_wp_attached_file','2017/07/Screen-Shot-2017-07-12-at-15.14.53-1.png'),(23494,3004,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:692;s:6:\"height\";i:984;s:4:\"file\";s:48:\"2017/07/Screen-Shot-2017-07-12-at-15.14.53-1.png\";s:8:\"filesize\";i:1052736;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23495,3004,'dt-img-hide-title','0'),(23496,3005,'_wp_attached_file','2017/07/Screen-Shot-2017-07-12-at-15.37.03-1.png'),(23497,3005,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:578;s:6:\"height\";i:780;s:4:\"file\";s:48:\"2017/07/Screen-Shot-2017-07-12-at-15.37.03-1.png\";s:8:\"filesize\";i:591085;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23498,3005,'dt-img-hide-title','0'),(23499,3006,'_wp_attached_file','2017/07/Screen-Shot-2017-07-12-at-15.40.22-1.png'),(23500,3006,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:944;s:6:\"height\";i:624;s:4:\"file\";s:48:\"2017/07/Screen-Shot-2017-07-12-at-15.40.22-1.png\";s:8:\"filesize\";i:495982;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23501,3006,'dt-img-hide-title','0'),(23502,3014,'_wp_attached_file','2017/08/sample-case-study-1-1.jpeg'),(23503,3014,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:6720;s:6:\"height\";i:9325;s:4:\"file\";s:34:\"2017/08/sample-case-study-1-1.jpeg\";s:8:\"filesize\";i:18982778;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"XP-420 Series\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(23504,3014,'dt-img-hide-title','0'),(23505,3015,'_wp_attached_file','2017/08/sample-case-study-2-1.jpeg'),(23506,3015,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:6749;s:6:\"height\";i:9331;s:4:\"file\";s:34:\"2017/08/sample-case-study-2-1.jpeg\";s:8:\"filesize\";i:20417838;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"XP-420 Series\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(23507,3015,'dt-img-hide-title','0'),(23508,3016,'_wp_attached_file','2017/08/sample-case-study-3-1.jpeg'),(23509,3016,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:6778;s:6:\"height\";i:9309;s:4:\"file\";s:34:\"2017/08/sample-case-study-3-1.jpeg\";s:8:\"filesize\";i:17898822;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"XP-420 Series\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(23510,3016,'dt-img-hide-title','0'),(23511,3034,'_wp_attached_file','2017/07/BIOMECHANICS-COACH-2-1.png'),(23512,3034,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:34:\"2017/07/BIOMECHANICS-COACH-2-1.png\";s:8:\"filesize\";i:1025995;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23513,3034,'dt-img-hide-title','0'),(23514,3173,'_wp_attached_file','2017/07/muscle-output-1.png'),(23515,3173,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:27:\"2017/07/muscle-output-1.png\";s:8:\"filesize\";i:932070;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23516,3173,'dt-img-hide-title','0'),(23517,3174,'_wp_attached_file','2017/06/Why-You-Shouldnt-Let-Your-Nerves-Hold-You-Back-From-Living-Your-Dream-1.png'),(23518,3174,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:83:\"2017/06/Why-You-Shouldnt-Let-Your-Nerves-Hold-You-Back-From-Living-Your-Dream-1.png\";s:8:\"filesize\";i:1418103;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23519,3174,'dt-img-hide-title','0'),(23520,3179,'_wp_attached_file','2017/08/IMG_1180-1-scaled.jpg'),(23521,3179,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2017/08/IMG_1180-1-scaled.jpg\";s:8:\"filesize\";i:469859;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1501950697\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"IMG_1180-1.jpg\";}'),(23522,3179,'dt-img-hide-title','0'),(23523,3180,'_wp_attached_file','2017/08/Screen-Shot-2017-08-12-at-16.23.04-1.png'),(23524,3180,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:566;s:6:\"height\";i:312;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2017-08-12-at-16.23.04-1.png\";s:8:\"filesize\";i:69412;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23525,3180,'dt-img-hide-title','0'),(23526,3183,'_wp_attached_file','2017/08/Screen-Shot-2017-08-16-at-06.51.38-1.png'),(23527,3183,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:456;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2017-08-16-at-06.51.38-1.png\";s:8:\"filesize\";i:657356;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23528,3183,'dt-img-hide-title','0'),(23529,3188,'_wp_attached_file','2017/08/imovefreely-blog-2-1.png'),(23530,3188,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:810;s:4:\"file\";s:32:\"2017/08/imovefreely-blog-2-1.png\";s:8:\"filesize\";i:1754157;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23531,3188,'dt-img-hide-title','0'),(23532,3191,'_wp_attached_file','2017/08/Do-you-fear-3-1.png'),(23533,3191,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:27:\"2017/08/Do-you-fear-3-1.png\";s:8:\"filesize\";i:777092;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23534,3191,'dt-img-hide-title','0'),(23535,3200,'_wp_attached_file','2017/08/Screen-Shot-2017-08-21-at-14.45.45-1.png'),(23536,3200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1190;s:6:\"height\";i:1628;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2017-08-21-at-14.45.45-1.png\";s:8:\"filesize\";i:1776687;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23537,3200,'dt-img-hide-title','0'),(23538,3201,'_wp_attached_file','2017/08/Screen-Shot-2017-08-21-at-14.45.38-1.png'),(23539,3201,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1194;s:6:\"height\";i:900;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2017-08-21-at-14.45.38-1.png\";s:8:\"filesize\";i:441722;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23540,3201,'dt-img-hide-title','0'),(23541,3202,'_wp_attached_file','2017/08/Screen-Shot-2017-08-21-at-14.45.28-1.png'),(23542,3202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1188;s:6:\"height\";i:1582;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2017-08-21-at-14.45.28-1.png\";s:8:\"filesize\";i:970394;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23543,3202,'dt-img-hide-title','0'),(23544,3203,'_wp_attached_file','2017/08/Screen-Shot-2017-08-21-at-14.45.13-1.png'),(23545,3203,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1198;s:6:\"height\";i:1302;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2017-08-21-at-14.45.13-1.png\";s:8:\"filesize\";i:800618;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23546,3203,'dt-img-hide-title','0'),(23547,3205,'_wp_attached_file','2017/08/Screen-Shot-2017-08-21-at-14.50.57-1.png'),(23548,3205,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1126;s:6:\"height\";i:962;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2017-08-21-at-14.50.57-1.png\";s:8:\"filesize\";i:1323040;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23549,3205,'dt-img-hide-title','0'),(23550,3206,'_wp_attached_file','2017/08/Screen-Shot-2017-08-21-at-14.57.23-1.png'),(23551,3206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2194;s:6:\"height\";i:884;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2017-08-21-at-14.57.23-1.png\";s:8:\"filesize\";i:2516265;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23552,3206,'dt-img-hide-title','0'),(23553,3207,'_wp_attached_file','2017/08/Screen-Shot-2017-08-21-at-14.58.44-1.png'),(23554,3207,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:562;s:6:\"height\";i:798;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2017-08-21-at-14.58.44-1.png\";s:8:\"filesize\";i:368112;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23555,3207,'dt-img-hide-title','0'),(23556,3208,'_wp_attached_file','2017/08/Screen-Shot-2017-08-21-at-15.02.45-1.png'),(23557,3208,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:542;s:6:\"height\";i:290;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2017-08-21-at-15.02.45-1.png\";s:8:\"filesize\";i:182471;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23558,3208,'dt-img-hide-title','0'),(23559,3213,'_wp_attached_file','2017/08/Craftsmen-1-1-1.png'),(23560,3213,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:27:\"2017/08/Craftsmen-1-1-1.png\";s:8:\"filesize\";i:541814;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23561,3213,'dt-img-hide-title','0'),(23562,3214,'_wp_attached_file','2017/08/Craftsmen-6-1-1.png'),(23563,3214,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:27:\"2017/08/Craftsmen-6-1-1.png\";s:8:\"filesize\";i:971569;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23564,3214,'dt-img-hide-title','0'),(23565,3228,'_wp_attached_file','2017/08/Screen-Shot-2017-08-29-at-09.46.31-1.png'),(23566,3228,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1390;s:6:\"height\";i:572;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2017-08-29-at-09.46.31-1.png\";s:8:\"filesize\";i:621199;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23567,3228,'dt-img-hide-title','0'),(23568,3229,'_wp_attached_file','2017/08/Screen-Shot-2017-08-29-at-09.45.59-1.png'),(23569,3229,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:592;s:6:\"height\";i:394;s:4:\"file\";s:48:\"2017/08/Screen-Shot-2017-08-29-at-09.45.59-1.png\";s:8:\"filesize\";i:295051;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23570,3229,'dt-img-hide-title','0'),(23571,3230,'_wp_attached_file','2017/08/brunch-1.png'),(23572,3230,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:20:\"2017/08/brunch-1.png\";s:8:\"filesize\";i:340529;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23573,3230,'dt-img-hide-title','0'),(23574,3234,'_wp_attached_file','2017/08/The-Weak-Core-1.png'),(23575,3234,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:27:\"2017/08/The-Weak-Core-1.png\";s:8:\"filesize\";i:981294;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23576,3234,'dt-img-hide-title','0'),(23577,3242,'_wp_attached_file','2017/09/WARNING-For-PTs-Dont-Get-Caught-In-The-Sexy-Trap-2.png'),(23578,3242,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:560;s:6:\"height\";i:315;s:4:\"file\";s:62:\"2017/09/WARNING-For-PTs-Dont-Get-Caught-In-The-Sexy-Trap-2.png\";s:8:\"filesize\";i:288509;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23579,3242,'dt-img-hide-title','0'),(23580,3243,'_wp_attached_file','2017/09/WARNING-For-PTs-Dont-Get-Caught-In-The-Sexy-Trap-1-1.png'),(23581,3243,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:560;s:6:\"height\";i:315;s:4:\"file\";s:64:\"2017/09/WARNING-For-PTs-Dont-Get-Caught-In-The-Sexy-Trap-1-1.png\";s:8:\"filesize\";i:286272;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23582,3243,'dt-img-hide-title','0'),(23583,3325,'_wp_attached_file','2017/09/Nose-Bleed-1.png'),(23584,3325,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:24:\"2017/09/Nose-Bleed-1.png\";s:8:\"filesize\";i:807653;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23585,3325,'dt-img-hide-title','0'),(23586,4022,'_wp_attached_file','2018/01/Biomechanics-Education-Logo-For-Mobile-1.jpg'),(23587,4022,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:120;s:6:\"height\";i:60;s:4:\"file\";s:52:\"2018/01/Biomechanics-Education-Logo-For-Mobile-1.jpg\";s:8:\"filesize\";i:4355;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(23588,4733,'_wp_attached_file','2018/01/IBA-Discovery-Day-Workshop-1-scaled.jpg'),(23589,4733,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:47:\"2018/01/IBA-Discovery-Day-Workshop-1-scaled.jpg\";s:8:\"filesize\";i:670462;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1488037711\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"32\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:32:\"IBA-Discovery-Day-Workshop-1.jpg\";}'),(23590,4733,'_wp_attachment_image_alt','iba-discovery-day-workshop'),(23591,4733,'dt-img-hide-title','0'),(23592,4927,'_wp_attached_file','2018/02/all-sports-banner-grey-1.jpg'),(23593,4927,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1845;s:6:\"height\";i:476;s:4:\"file\";s:36:\"2018/02/all-sports-banner-grey-1.jpg\";s:8:\"filesize\";i:220399;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(23594,38588,'_wp_attachment_context','custom-header'),(23595,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(23596,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(23597,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(23598,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(23599,192,'dt-img-hide-title','0'),(23600,194,'dt-img-hide-title','0'),(23601,205,'dt-img-hide-title','0'),(23602,206,'dt-img-hide-title','0'),(23603,208,'dt-img-hide-title','0'),(23604,247,'dt-img-hide-title','0'),(23605,248,'_wp_attachment_context','site-icon'),(23606,248,'dt-img-hide-title','0'),(23607,265,'dt-img-hide-title','0'),(23608,283,'dt-img-hide-title','0'),(23609,284,'dt-img-hide-title','0'),(23610,285,'dt-img-hide-title','0'),(23611,287,'dt-img-hide-title','0'),(23612,290,'dt-img-hide-title','0'),(23613,291,'dt-img-hide-title','0'),(23614,294,'dt-img-hide-title','0'),(23615,297,'dt-img-hide-title','0'),(23616,333,'dt-img-hide-title','0'),(23617,341,'dt-img-hide-title','0'),(23618,407,'dt-img-hide-title','0'),(23619,458,'dt-img-hide-title','0'),(23620,495,'dt-img-hide-title','0'),(23621,497,'dt-img-hide-title','0'),(23622,505,'dt-img-hide-title','0'),(23623,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(23624,210,'dt-img-link',''),(23625,210,'dt-img-hide-title','0'),(23626,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(23627,221,'dt-img-link',''),(23628,221,'dt-img-hide-title','0'),(23629,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(23630,224,'dt-img-link',''),(23631,224,'dt-img-hide-title','0'),(23632,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(23633,228,'dt-img-link',''),(23634,228,'dt-img-hide-title','0'),(23635,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(23636,230,'dt-img-link',''),(23637,230,'dt-img-hide-title','0'),(23638,237,'dt-img-hide-title','0'),(23639,237,'dt-img-link',''),(23640,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(23641,557,'dt-img-hide-title','0'),(23642,559,'dt-img-hide-title','0'),(23643,562,'dt-img-hide-title','0'),(23644,569,'dt-img-hide-title','0'),(23645,592,'dt-img-hide-title','0'),(23646,596,'dt-img-hide-title','0'),(23647,617,'dt-img-hide-title','0'),(23648,620,'dt-img-hide-title','0'),(23649,621,'dt-img-hide-title','0'),(23650,623,'dt-img-hide-title','0'),(23651,624,'dt-img-hide-title','0'),(23652,644,'dt-img-hide-title','0'),(23653,648,'dt-img-hide-title','0'),(23654,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(23655,824,'dt-img-link',''),(23656,824,'dt-img-hide-title','0'),(23657,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(23658,825,'dt-img-link',''),(23659,825,'dt-img-hide-title','0'),(23660,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(23661,828,'dt-img-link',''),(23662,828,'dt-img-hide-title','0'),(23663,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(23664,1450,'dt-img-link',''),(23665,1450,'dt-img-hide-title','0'),(23666,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(23667,1451,'dt-img-link',''),(23668,1451,'dt-img-hide-title','0'),(23669,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(23670,1452,'dt-img-link',''),(23671,1452,'dt-img-hide-title','0'),(23672,652,'dt-img-hide-title','0'),(23673,655,'dt-img-hide-title','0'),(23674,675,'dt-img-hide-title','0'),(23675,678,'dt-img-hide-title','0'),(23676,683,'dt-img-hide-title','0'),(23677,703,'dt-img-hide-title','0'),(23678,706,'dt-img-hide-title','0'),(23679,709,'dt-img-hide-title','0'),(23680,712,'dt-img-hide-title','0'),(23681,713,'dt-img-hide-title','0'),(23682,714,'dt-img-hide-title','0'),(23683,715,'dt-img-hide-title','0'),(23684,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(23685,722,'dt-img-hide-title','0'),(23686,735,'dt-img-hide-title','0'),(23687,759,'dt-img-hide-title','0'),(23688,762,'dt-img-hide-title','0'),(23689,766,'dt-img-hide-title','0'),(23690,770,'dt-img-hide-title','0'),(23691,804,'dt-img-hide-title','0'),(23692,814,'dt-img-hide-title','0'),(23693,827,'dt-img-hide-title','0'),(23694,830,'dt-img-hide-title','0'),(23695,854,'dt-img-hide-title','0'),(23696,857,'dt-img-hide-title','0'),(23697,874,'dt-img-hide-title','0'),(23698,937,'dt-img-hide-title','0'),(23699,941,'dt-img-hide-title','0'),(23700,955,'dt-img-hide-title','0'),(23701,969,'_wp_attachment_image_alt','imove Freely'),(23702,969,'dt-img-hide-title','0'),(23703,1001,'dt-img-hide-title','0'),(23704,1015,'dt-img-hide-title','0'),(23705,1018,'dt-img-hide-title','0'),(23706,1020,'dt-img-hide-title','0'),(23707,1021,'dt-img-hide-title','0'),(23708,1024,'dt-img-hide-title','0'),(23709,1027,'dt-img-hide-title','0'),(23710,1030,'dt-img-hide-title','0'),(23711,1035,'dt-img-hide-title','0'),(23712,1039,'dt-img-hide-title','0'),(23713,1045,'dt-img-hide-title','0'),(23714,1051,'dt-img-hide-title','0'),(23715,1052,'dt-img-hide-title','0'),(23716,1055,'dt-img-hide-title','0'),(23717,1057,'dt-img-hide-title','0'),(23718,1061,'dt-img-hide-title','0'),(23719,1065,'dt-img-hide-title','0'),(23720,1068,'dt-img-hide-title','0'),(23721,1073,'dt-img-hide-title','0'),(23722,1078,'dt-img-hide-title','0'),(23723,1084,'dt-img-hide-title','0'),(23724,1088,'dt-img-hide-title','0'),(23725,1094,'dt-img-hide-title','0'),(23726,1096,'dt-img-hide-title','0'),(23727,1097,'dt-img-hide-title','0'),(23728,1099,'dt-img-hide-title','0'),(23729,1106,'dt-img-hide-title','0'),(23730,1110,'dt-img-hide-title','0'),(23731,1112,'dt-img-hide-title','0'),(23732,1116,'dt-img-hide-title','0'),(23733,1125,'dt-img-hide-title','0'),(23734,1129,'dt-img-hide-title','0'),(23735,1145,'dt-img-hide-title','0'),(23736,1167,'dt-img-hide-title','0'),(23737,1184,'dt-img-hide-title','0'),(23738,1186,'dt-img-hide-title','0'),(23739,1187,'dt-img-hide-title','0'),(23740,1189,'dt-img-hide-title','0'),(23741,1194,'dt-img-hide-title','0'),(23742,1197,'dt-img-hide-title','0'),(23743,1201,'dt-img-hide-title','0'),(23744,1202,'dt-img-hide-title','0'),(23745,1203,'dt-img-hide-title','0'),(23746,1204,'dt-img-hide-title','0'),(23747,1205,'dt-img-hide-title','0'),(23748,1206,'dt-img-hide-title','0'),(23749,1207,'dt-img-hide-title','0'),(23750,1209,'dt-img-hide-title','0'),(23751,1210,'dt-img-hide-title','0'),(23752,1211,'dt-img-hide-title','0'),(23753,1212,'dt-img-hide-title','0'),(23754,1213,'dt-img-hide-title','0'),(23755,1214,'dt-img-hide-title','0'),(23756,1220,'dt-img-hide-title','0'),(23757,1223,'dt-img-hide-title','0'),(23758,1226,'dt-img-hide-title','0'),(23759,1228,'dt-img-hide-title','0'),(23760,1232,'dt-img-hide-title','0'),(23761,1235,'dt-img-hide-title','0'),(23762,1239,'dt-img-hide-title','0'),(23763,1242,'dt-img-hide-title','0'),(23764,1246,'dt-img-hide-title','0'),(23765,1256,'dt-img-hide-title','0'),(23766,1262,'dt-img-hide-title','0'),(23767,1265,'dt-img-hide-title','0'),(23768,1269,'dt-img-hide-title','0'),(23769,1275,'dt-img-hide-title','0'),(23770,1279,'dt-img-hide-title','0'),(23771,1312,'dt-img-hide-title','0'),(23772,1316,'dt-img-hide-title','0'),(23773,1320,'dt-img-hide-title','0'),(23774,1326,'dt-img-hide-title','0'),(23775,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(23776,1334,'dt-img-hide-title','0'),(23777,1338,'dt-img-hide-title','0'),(23778,1339,'dt-img-hide-title','0'),(23779,1343,'dt-img-hide-title','0'),(23780,1347,'dt-img-hide-title','0'),(23781,1351,'dt-img-hide-title','0'),(23782,1354,'dt-img-hide-title','0'),(23783,1357,'dt-img-hide-title','0'),(23784,1359,'dt-img-hide-title','0'),(23785,1362,'dt-img-hide-title','0'),(23786,1366,'dt-img-hide-title','0'),(23787,1379,'dt-img-hide-title','0'),(23788,1398,'dt-img-hide-title','0'),(23789,1403,'dt-img-hide-title','0'),(23790,1406,'dt-img-hide-title','0'),(23791,1410,'dt-img-hide-title','0'),(23792,1413,'dt-img-hide-title','0'),(23793,1416,'dt-img-hide-title','0'),(23794,1419,'dt-img-hide-title','0'),(23795,1423,'dt-img-hide-title','0'),(23796,1429,'dt-img-hide-title','0'),(23797,1430,'dt-img-hide-title','0'),(23798,1433,'dt-img-hide-title','0'),(23799,1463,'dt-img-hide-title','0'),(23800,1463,'dt-img-hide-title','0'),(23801,1463,'dt-img-hide-title','0'),(23802,1463,'dt-img-hide-title','0'),(23803,1463,'dt-img-hide-title','0'),(23804,1468,'dt-img-hide-title','0'),(23805,2229,'dt-img-hide-title','0'),(23806,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(23807,2230,'dt-img-hide-title','0'),(23808,2231,'dt-img-hide-title','0'),(23809,2232,'dt-img-hide-title','0'),(23810,2233,'dt-img-hide-title','0'),(23811,2234,'dt-img-hide-title','0'),(23812,2235,'dt-img-hide-title','0'),(23813,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(23814,1474,'dt-img-hide-title','0'),(23815,1475,'dt-img-hide-title','0'),(23816,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(23817,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(23818,1476,'dt-img-hide-title','0'),(23819,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(23820,1478,'dt-img-hide-title','0'),(23821,1479,'dt-img-hide-title','0'),(23822,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(23823,1489,'dt-img-hide-title','0'),(23824,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(23825,1500,'dt-img-hide-title','0'),(23826,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(23827,1501,'dt-img-hide-title','0'),(23828,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(23829,1504,'dt-img-hide-title','0'),(23830,1508,'_wp_attachment_image_alt',''),(23831,1508,'dt-img-hide-title','0'),(23832,1508,'dt-video-url',''),(23833,1508,'dt-img-link',''),(23834,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(23835,1510,'dt-img-hide-title','0'),(23836,1514,'dt-img-hide-title','0'),(23837,2236,'dt-img-hide-title','0'),(23838,2237,'dt-img-hide-title','0'),(23839,2238,'dt-img-hide-title','0'),(23840,2239,'dt-img-hide-title','0'),(23841,2247,'dt-img-hide-title','0'),(23842,2248,'dt-img-hide-title','0'),(23843,2249,'dt-img-hide-title','0'),(23844,1533,'dt-img-hide-title','0'),(23845,1535,'dt-img-hide-title','0'),(23846,1536,'dt-img-hide-title','0'),(23847,1540,'dt-img-hide-title','0'),(23848,1546,'dt-img-hide-title','0'),(23849,1556,'dt-img-hide-title','0'),(23850,1566,'dt-img-hide-title','0'),(23851,1595,'dt-img-hide-title','0'),(23852,1608,'dt-video-url',''),(23853,1608,'dt-img-link',''),(23854,1608,'dt-img-hide-title','0'),(23855,1825,'dt-img-hide-title','0'),(23856,2250,'dt-img-hide-title','0'),(23857,2251,'dt-img-hide-title','0'),(23858,2252,'dt-img-hide-title','0'),(23859,2253,'dt-img-hide-title','0'),(23860,2254,'dt-img-hide-title','0'),(23861,2255,'dt-img-hide-title','0'),(23862,2256,'dt-img-hide-title','0'),(23863,2257,'dt-img-hide-title','0'),(23864,2258,'dt-img-hide-title','0'),(23865,2259,'dt-img-hide-title','0'),(23866,1646,'dt-img-hide-title','0'),(23867,1650,'dt-img-hide-title','0'),(23871,2241,'dt-img-hide-title','0'),(23872,2242,'dt-img-hide-title','0'),(23873,2243,'dt-img-hide-title','0'),(23874,2244,'dt-img-hide-title','0'),(23875,2245,'dt-img-hide-title','0'),(23876,2246,'dt-img-hide-title','0'),(23877,2260,'dt-img-hide-title','0'),(23878,2261,'dt-img-hide-title','0'),(23879,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(23880,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(23881,2262,'dt-img-hide-title','0'),(23882,2263,'dt-img-hide-title','0'),(23883,2264,'dt-img-hide-title','0'),(23884,2265,'dt-img-hide-title','0'),(23885,2266,'dt-img-hide-title','0'),(23886,2267,'dt-img-hide-title','0'),(23887,2268,'dt-img-hide-title','0'),(23888,2269,'dt-img-hide-title','0'),(23889,2270,'dt-img-hide-title','0'),(23890,1658,'dt-img-hide-title','0'),(23891,1660,'dt-img-hide-title','0'),(23892,1667,'dt-img-hide-title','0'),(23893,1668,'dt-img-hide-title','0'),(23894,1669,'dt-img-hide-title','0'),(23895,1674,'dt-img-hide-title','0'),(23896,2102,'dt-img-hide-title','0'),(23897,2103,'dt-img-hide-title','0'),(23898,2104,'dt-img-hide-title','0'),(23899,2105,'dt-img-hide-title','0'),(23900,2106,'dt-img-hide-title','0'),(23901,2107,'dt-img-hide-title','0'),(23902,2108,'dt-img-hide-title','0'),(23903,2109,'dt-img-hide-title','0'),(23904,2110,'dt-img-hide-title','0'),(23905,2111,'dt-img-hide-title','0'),(23906,2112,'dt-img-hide-title','0'),(23907,2113,'dt-img-hide-title','0'),(23908,2114,'dt-img-hide-title','0'),(23909,2115,'dt-img-hide-title','0'),(23910,1675,'dt-img-hide-title','0'),(23911,1699,'dt-img-hide-title','0'),(23912,1700,'dt-img-hide-title','0'),(23913,1701,'dt-img-hide-title','0'),(23914,1702,'dt-img-hide-title','0'),(23915,2217,'dt-img-hide-title','0'),(23916,2222,'dt-img-hide-title','0'),(23917,2271,'dt-img-hide-title','0'),(23918,2289,'dt-img-hide-title','0'),(23919,2291,'dt-img-hide-title','0'),(23920,2293,'dt-img-hide-title','0'),(23921,2295,'dt-img-hide-title','0'),(23922,2297,'dt-img-hide-title','0'),(23923,2299,'dt-img-hide-title','0'),(23924,2301,'dt-img-hide-title','0'),(23925,2303,'dt-img-hide-title','0'),(23926,2305,'dt-img-hide-title','0'),(23927,2307,'dt-img-hide-title','0'),(23928,2405,'dt-img-hide-title','0'),(23929,2405,'_wp_attachment_image_alt','iMoveFreely® Exercises To Try At Home'),(23930,2409,'dt-img-hide-title','0'),(23931,2409,'_wp_attachment_image_alt','Don’t Listen To Us….Listen To Them!'),(23932,2410,'dt-img-hide-title','0'),(23933,2410,'_wp_attachment_image_alt','Presentations at The Movement Convention'),(23934,2411,'dt-img-hide-title','0'),(23935,2411,'_wp_attachment_image_alt','Just For Fun'),(23936,2413,'dt-img-hide-title','0'),(23937,2413,'_wp_attachment_image_alt','We all Squat Differently?'),(23938,2415,'dt-img-hide-title','0'),(23939,2415,'_wp_attachment_image_alt','What Do Our Workshops Look Like?'),(23940,2534,'dt-img-hide-title','0'),(23941,2535,'dt-img-hide-title','0'),(23942,2537,'dt-img-hide-title','0'),(23943,2538,'dt-img-hide-title','0'),(23944,2539,'dt-img-hide-title','0'),(23945,2540,'dt-img-hide-title','0'),(23946,2541,'dt-img-hide-title','0'),(23947,2548,'dt-img-hide-title','0'),(23948,2549,'dt-img-hide-title','0'),(23949,2550,'dt-img-hide-title','0'),(23950,2551,'dt-img-hide-title','0'),(23951,2552,'dt-img-hide-title','0'),(23952,2611,'dt-img-hide-title','0'),(23953,2612,'dt-img-hide-title','0'),(23954,2613,'dt-img-hide-title','0'),(23955,2614,'dt-img-hide-title','0'),(23956,2615,'dt-img-hide-title','0'),(23957,2655,'dt-img-hide-title','0'),(23958,2656,'dt-img-hide-title','0'),(23959,2657,'dt-img-hide-title','0'),(23960,2658,'dt-img-hide-title','0'),(23961,2721,'dt-img-hide-title','0'),(23962,2722,'dt-img-hide-title','0'),(23963,2723,'dt-img-hide-title','0'),(23964,2724,'dt-img-hide-title','0'),(23965,2725,'dt-img-hide-title','0'),(23966,2726,'dt-img-hide-title','0'),(23967,2727,'dt-img-hide-title','0'),(23968,2728,'dt-img-hide-title','0'),(23969,2729,'dt-img-hide-title','0'),(23970,2756,'dt-img-hide-title','0'),(23971,2759,'dt-img-hide-title','0'),(23972,2781,'dt-img-hide-title','0'),(23973,2786,'dt-img-hide-title','0'),(23974,2787,'dt-img-hide-title','0'),(23975,2788,'dt-img-hide-title','0'),(23976,2788,'_wp_attachment_image_alt','the effect of quadratus lumborum muscle'),(23977,2810,'dt-img-hide-title','0'),(23978,2811,'dt-img-hide-title','0'),(23979,2812,'dt-img-hide-title','0'),(23980,2813,'dt-img-hide-title','0'),(23981,2814,'dt-img-hide-title','0'),(23982,2815,'dt-img-hide-title','0'),(23983,2816,'dt-img-hide-title','0'),(23984,2817,'dt-img-hide-title','0'),(23985,2818,'dt-img-hide-title','0'),(23986,2837,'dt-img-hide-title','0'),(23987,2846,'dt-img-hide-title','0'),(23988,2847,'dt-img-hide-title','0'),(23989,2856,'dt-img-hide-title','0'),(23990,2857,'dt-img-hide-title','0'),(23991,2858,'dt-img-hide-title','0'),(23992,2859,'dt-img-hide-title','0'),(23993,2860,'dt-img-hide-title','0'),(23994,2861,'dt-img-hide-title','0'),(23995,2862,'dt-img-hide-title','0'),(23996,2868,'dt-img-hide-title','0'),(23997,2869,'dt-img-hide-title','0'),(23998,2870,'dt-img-hide-title','0'),(23999,2871,'dt-img-hide-title','0'),(24000,2875,'dt-img-hide-title','0'),(24001,2876,'dt-img-hide-title','0'),(24002,2877,'dt-img-hide-title','0'),(24003,2878,'dt-img-hide-title','0'),(24004,2879,'dt-img-hide-title','0'),(24005,2894,'dt-img-hide-title','0'),(24006,2894,'dt-video-url',''),(24007,2894,'dt-img-link',''),(24008,2896,'dt-img-hide-title','0'),(24009,2896,'dt-video-url',''),(24010,2896,'dt-img-link',''),(24011,2960,'dt-img-hide-title','0'),(24012,2961,'dt-img-hide-title','0'),(24013,2962,'dt-img-hide-title','0'),(24014,2963,'dt-img-hide-title','0'),(24015,2964,'dt-img-hide-title','0'),(24016,2965,'dt-img-hide-title','0'),(24017,2966,'dt-img-hide-title','0'),(24018,2967,'dt-img-hide-title','0'),(24019,2968,'dt-img-hide-title','0'),(24020,2969,'dt-img-hide-title','0'),(24021,2976,'dt-img-hide-title','0'),(24022,2986,'dt-img-hide-title','0'),(24023,2999,'dt-img-hide-title','0'),(24024,3002,'dt-img-hide-title','0'),(24025,3003,'dt-img-hide-title','0'),(24026,3004,'dt-img-hide-title','0'),(24027,3005,'dt-img-hide-title','0'),(24028,3006,'dt-img-hide-title','0'),(24029,3014,'dt-img-hide-title','0'),(24030,3015,'dt-img-hide-title','0'),(24031,3016,'dt-img-hide-title','0'),(24032,3034,'dt-img-hide-title','0'),(24033,3173,'dt-img-hide-title','0'),(24034,3174,'dt-img-hide-title','0'),(24035,3179,'dt-img-hide-title','0'),(24036,3180,'dt-img-hide-title','0'),(24037,3183,'dt-img-hide-title','0'),(24038,3188,'dt-img-hide-title','0'),(24039,3191,'dt-img-hide-title','0'),(24040,3200,'dt-img-hide-title','0'),(24041,3201,'dt-img-hide-title','0'),(24042,3202,'dt-img-hide-title','0'),(24043,3203,'dt-img-hide-title','0'),(24044,3205,'dt-img-hide-title','0'),(24045,3206,'dt-img-hide-title','0'),(24046,3207,'dt-img-hide-title','0'),(24047,3208,'dt-img-hide-title','0'),(24048,3213,'dt-img-hide-title','0'),(24049,3214,'dt-img-hide-title','0'),(24050,3228,'dt-img-hide-title','0'),(24051,3229,'dt-img-hide-title','0'),(24052,3230,'dt-img-hide-title','0'),(24053,3234,'dt-img-hide-title','0'),(24054,3242,'dt-img-hide-title','0'),(24055,3243,'dt-img-hide-title','0'),(24056,3325,'dt-img-hide-title','0'),(24057,3479,'_wp_attached_file','2017/09/Home-Brewing-2-1.png'),(24058,3479,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:28:\"2017/09/Home-Brewing-2-1.png\";s:8:\"filesize\";i:691772;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24059,3479,'dt-img-hide-title','0'),(24060,3496,'_wp_attached_file','2017/09/Rachel-France-1-scaled.jpg'),(24061,3496,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:34:\"2017/09/Rachel-France-1-scaled.jpg\";s:8:\"filesize\";i:193325;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:13:\"Ben Whitehead\";s:6:\"camera\";s:13:\"Canon EOS 50D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1298997933\";s:9:\"copyright\";s:111:\"Copyright 2010 Ben Whitehead Photography. No usage permitted without prior written consent. All rights reserved\";s:12:\"focal_length\";s:2:\"63\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"Rachel-France-1.jpg\";}'),(24062,3496,'dt-img-hide-title','0'),(24063,3496,'_wp_attachment_image_alt','Rachel France - profile image'),(24064,3497,'_wp_attached_file','2017/09/Wendy-1.jpg'),(24065,3497,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:535;s:6:\"height\";i:470;s:4:\"file\";s:19:\"2017/09/Wendy-1.jpg\";s:8:\"filesize\";i:56767;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24066,3497,'dt-img-hide-title','0'),(24067,3498,'_wp_attached_file','2017/09/Chris-1.jpg'),(24068,3498,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:824;s:6:\"height\";i:960;s:4:\"file\";s:19:\"2017/09/Chris-1.jpg\";s:8:\"filesize\";i:27495;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24069,3498,'dt-img-hide-title','0'),(24070,3499,'_wp_attached_file','2017/09/Tom-1-scaled.jpg'),(24071,3499,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:24:\"2017/09/Tom-1-scaled.jpg\";s:8:\"filesize\";i:509550;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1475846496\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:9:\"Tom-1.jpg\";}'),(24072,3499,'dt-img-hide-title','0'),(24073,3502,'_wp_attached_file','2017/09/2018-locked-prices-1.png'),(24074,3502,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:32:\"2017/09/2018-locked-prices-1.png\";s:8:\"filesize\";i:218786;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24075,3502,'dt-img-hide-title','0'),(24076,3504,'_wp_attached_file','2017/09/Screen-Shot-2017-09-14-at-11.16.38-1.png'),(24077,3504,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1182;s:6:\"height\";i:486;s:4:\"file\";s:48:\"2017/09/Screen-Shot-2017-09-14-at-11.16.38-1.png\";s:8:\"filesize\";i:229991;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24078,3504,'dt-img-hide-title','0'),(24079,3505,'_wp_attached_file','2017/09/Screen-Shot-2017-09-14-at-11.17.01-1.png'),(24080,3505,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1168;s:6:\"height\";i:730;s:4:\"file\";s:48:\"2017/09/Screen-Shot-2017-09-14-at-11.17.01-1.png\";s:8:\"filesize\";i:349814;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24081,3505,'dt-img-hide-title','0'),(24082,3506,'_wp_attached_file','2017/09/Screen-Shot-2017-09-14-at-11.17.15-1.png'),(24083,3506,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1164;s:6:\"height\";i:668;s:4:\"file\";s:48:\"2017/09/Screen-Shot-2017-09-14-at-11.17.15-1.png\";s:8:\"filesize\";i:338324;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24084,3506,'dt-img-hide-title','0'),(24085,3507,'_wp_attached_file','2017/09/Screen-Shot-2017-09-14-at-11.16.10-1.png'),(24086,3507,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1178;s:6:\"height\";i:378;s:4:\"file\";s:48:\"2017/09/Screen-Shot-2017-09-14-at-11.16.10-1.png\";s:8:\"filesize\";i:140275;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24087,3507,'dt-img-hide-title','0'),(24088,3511,'_wp_attached_file','2017/09/Screen-Shot-2017-09-14-at-11.15.58-1.png'),(24089,3511,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1164;s:6:\"height\";i:598;s:4:\"file\";s:48:\"2017/09/Screen-Shot-2017-09-14-at-11.15.58-1.png\";s:8:\"filesize\";i:287042;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24090,3511,'dt-img-hide-title','0'),(24091,3528,'_wp_attached_file','2017/09/Screen-Shot-2017-09-26-at-06.36.47-1.png'),(24092,3528,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:678;s:6:\"height\";i:248;s:4:\"file\";s:48:\"2017/09/Screen-Shot-2017-09-26-at-06.36.47-1.png\";s:8:\"filesize\";i:92400;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24093,3528,'dt-img-hide-title','0'),(24094,3534,'_wp_attached_file','2017/09/Chris01-1.jpg'),(24095,3534,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2017/09/Chris01-1.jpg\";s:8:\"filesize\";i:26755;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(24096,3534,'dt-video-url',''),(24097,3534,'dt-img-link',''),(24098,3534,'dt-img-hide-title','0'),(24099,3535,'_wp_attached_file','2017/09/Rachel-France01-1.jpg'),(24100,3535,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:29:\"2017/09/Rachel-France01-1.jpg\";s:8:\"filesize\";i:26743;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(24101,3535,'dt-video-url',''),(24102,3535,'dt-img-link',''),(24103,3535,'dt-img-hide-title','0'),(24104,3535,'_wp_attachment_image_alt','Tachel France - biomechanics education'),(24105,3536,'_wp_attached_file','2017/09/Tom01-1.jpg'),(24106,3536,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:19:\"2017/09/Tom01-1.jpg\";s:8:\"filesize\";i:34234;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(24107,3536,'dt-video-url',''),(24108,3536,'dt-img-link',''),(24109,3536,'dt-img-hide-title','0'),(24110,3537,'_wp_attached_file','2017/09/Wendy01-1.jpg'),(24111,3537,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:250;s:6:\"height\";i:250;s:4:\"file\";s:21:\"2017/09/Wendy01-1.jpg\";s:8:\"filesize\";i:42458;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(24112,3537,'dt-video-url',''),(24113,3537,'dt-img-link',''),(24114,3537,'dt-img-hide-title','0'),(24115,3551,'_wp_attached_file','2017/10/Fustrated-by-Recurring-Injuries-1.png'),(24116,3551,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:45:\"2017/10/Fustrated-by-Recurring-Injuries-1.png\";s:8:\"filesize\";i:1262278;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24117,3551,'dt-img-hide-title','0'),(24118,3629,'_wp_attached_file','2017/10/Beyond-90-Challenge-1.png'),(24119,3629,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:33:\"2017/10/Beyond-90-Challenge-1.png\";s:8:\"filesize\";i:623171;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24120,3629,'dt-img-hide-title','0'),(24121,3630,'_wp_attached_file','2017/10/arms-crossed-1.png'),(24122,3630,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:256;s:6:\"height\";i:256;s:4:\"file\";s:26:\"2017/10/arms-crossed-1.png\";s:8:\"filesize\";i:18566;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24123,3630,'dt-img-hide-title','0'),(24124,3631,'_wp_attached_file','2017/10/Avoid-Sitting-1.jpg'),(24125,3631,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:620;s:6:\"height\";i:330;s:4:\"file\";s:27:\"2017/10/Avoid-Sitting-1.jpg\";s:8:\"filesize\";i:31779;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24126,3631,'dt-img-hide-title','0'),(24127,3632,'_wp_attached_file','2017/10/I-will-stand-1.jpg'),(24128,3632,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2508;s:6:\"height\";i:1672;s:4:\"file\";s:26:\"2017/10/I-will-stand-1.jpg\";s:8:\"filesize\";i:299511;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24129,3632,'dt-img-hide-title','0'),(24130,3633,'_wp_attached_file','2017/10/standing-desk-1.jpg'),(24131,3633,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1508;s:6:\"height\";i:1067;s:4:\"file\";s:27:\"2017/10/standing-desk-1.jpg\";s:8:\"filesize\";i:884602;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(24132,3633,'dt-img-hide-title','0'),(24133,3634,'_wp_attached_file','2017/10/Question-myself-1.jpg'),(24134,3634,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1386;s:6:\"height\";i:1385;s:4:\"file\";s:29:\"2017/10/Question-myself-1.jpg\";s:8:\"filesize\";i:365074;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:33:\"3d human with a red question mark\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:13:\"question mark\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:24:{i:0;s:2:\"3d\";i:1;s:8:\"humorous\";i:2;s:8:\"abstract\";i:3;s:6:\"people\";i:4;s:5:\"human\";i:5;s:9:\"character\";i:6;s:5:\"white\";i:7;s:11:\"exclamation\";i:8;s:4:\"mark\";i:9;s:5:\"point\";i:10;s:3:\"red\";i:11;s:5:\"happy\";i:12;s:6:\"appeal\";i:13;s:8:\"question\";i:14;s:6:\"answer\";i:15;s:3:\"why\";i:16;s:9:\"confusion\";i:17;s:4:\"idea\";i:18;s:7:\"caution\";i:19;s:4:\"mind\";i:20;s:7:\"thought\";i:21;s:5:\"think\";i:22;s:7:\"concept\";i:23;s:8:\"strategy\";}}}'),(24135,3634,'dt-img-hide-title','0'),(24136,3635,'_wp_attached_file','2017/10/squatty-potty-unicorn-1.png'),(24137,3635,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:636;s:6:\"height\";i:315;s:4:\"file\";s:35:\"2017/10/squatty-potty-unicorn-1.png\";s:8:\"filesize\";i:344367;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24138,3635,'dt-img-hide-title','0'),(24139,3636,'_wp_attached_file','2017/10/Beyond-90-Challenge-3-1.png'),(24140,3636,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:35:\"2017/10/Beyond-90-Challenge-3-1.png\";s:8:\"filesize\";i:575536;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24141,3636,'dt-img-hide-title','0'),(24142,3655,'_wp_attached_file','2017/10/CIMSPA_Partner_Logo_trans_113x53-1.png'),(24143,3655,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:142;s:6:\"height\";i:66;s:4:\"file\";s:46:\"2017/10/CIMSPA_Partner_Logo_trans_113x53-1.png\";s:8:\"filesize\";i:5345;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24144,3655,'dt-video-url',''),(24145,3655,'dt-img-link',''),(24146,3655,'dt-img-hide-title','0'),(24147,3690,'_wp_attached_file','2017/10/move-freely-2-1.png'),(24148,3690,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:27:\"2017/10/move-freely-2-1.png\";s:8:\"filesize\";i:756244;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24149,3690,'dt-img-hide-title','0'),(24150,3692,'_wp_attached_file','2017/10/Biomechanics-physio-1-scaled.jpg'),(24151,3692,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:40:\"2017/10/Biomechanics-physio-1-scaled.jpg\";s:8:\"filesize\";i:298812;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:54:\"Chiropractor massage the female patient spine and back\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:54:\"Chiropractor massage the female patient spine and back\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:42:{i:0;s:10:\"adjustment\";i:1;s:4:\"arms\";i:2;s:4:\"back\";i:3;s:4:\"bend\";i:4;s:5:\"bones\";i:5;s:4:\"care\";i:6;s:9:\"caucasian\";i:7;s:12:\"chiropractic\";i:8;s:12:\"chiropractor\";i:9;s:6:\"clinic\";i:10;s:10:\"discussion\";i:11;s:6:\"doctor\";i:12;s:11:\"examination\";i:13;s:10:\"explaining\";i:14;s:6:\"female\";i:15;s:6:\"health\";i:16;s:7:\"healthy\";i:17;s:4:\"hips\";i:18;s:5:\"human\";i:19;s:4:\"knee\";i:20;s:4:\"male\";i:21;s:12:\"manipulation\";i:22;s:7:\"medical\";i:23;s:10:\"occupation\";i:24;s:6:\"office\";i:25;s:9:\"osteopath\";i:26;s:10:\"osteopathy\";i:27;s:4:\"pain\";i:28;s:7:\"patient\";i:29;s:6:\"people\";i:30;s:8:\"physical\";i:31;s:13:\"physiotherapy\";i:32;s:12:\"professional\";i:33;s:14:\"rehabilitation\";i:34;s:6:\"relief\";i:35;s:6:\"spinal\";i:36;s:5:\"spine\";i:37;s:6:\"sports\";i:38;s:10:\"supplement\";i:39;s:7:\"talking\";i:40;s:9:\"therapist\";i:41;s:7:\"therapy\";}}s:14:\"original_image\";s:25:\"Biomechanics-physio-1.jpg\";}'),(24152,3692,'dt-img-hide-title','0'),(24153,3693,'_wp_attached_file','2017/10/seek-a-professional-1.jpg'),(24154,3693,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:533;s:4:\"file\";s:33:\"2017/10/seek-a-professional-1.jpg\";s:8:\"filesize\";i:111731;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24155,3693,'dt-img-hide-title','0'),(24156,3694,'_wp_attached_file','2017/10/you-1-scaled.jpg'),(24157,3694,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:24:\"2017/10/you-1-scaled.jpg\";s:8:\"filesize\";i:152546;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:9:\"you-1.jpg\";}'),(24158,3694,'dt-img-hide-title','0'),(24159,3695,'_wp_attached_file','2017/10/shoulder-blade-pain-1.jpg'),(24160,3695,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:628;s:6:\"height\";i:314;s:4:\"file\";s:33:\"2017/10/shoulder-blade-pain-1.jpg\";s:8:\"filesize\";i:69901;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24161,3695,'dt-img-hide-title','0'),(24162,3699,'_wp_attached_file','2017/10/ballet-pumps-1.jpg'),(24163,3699,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:246;s:6:\"height\";i:355;s:4:\"file\";s:26:\"2017/10/ballet-pumps-1.jpg\";s:8:\"filesize\";i:10335;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24164,3699,'dt-img-hide-title','0'),(24165,3784,'_wp_attached_file','2017/10/Abdominal-Injuries-1-1.png'),(24166,3784,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:34:\"2017/10/Abdominal-Injuries-1-1.png\";s:8:\"filesize\";i:709291;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24167,3784,'dt-img-hide-title','0'),(24168,3789,'_wp_attached_file','2017/10/hernia-1.jpg'),(24169,3789,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:603;s:6:\"height\";i:348;s:4:\"file\";s:20:\"2017/10/hernia-1.jpg\";s:8:\"filesize\";i:42113;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24170,3789,'dt-img-hide-title','0'),(24171,3801,'_wp_attached_file','2017/11/Why-Go-to-The-Dentist-1-1.png'),(24172,3801,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:37:\"2017/11/Why-Go-to-The-Dentist-1-1.png\";s:8:\"filesize\";i:890650;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24173,3801,'dt-img-hide-title','0'),(24174,3803,'_wp_attached_file','2017/11/calluses-on-hand-1-1.jpg'),(24175,3803,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:32:\"2017/11/calluses-on-hand-1-1.jpg\";s:8:\"filesize\";i:639202;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24176,3803,'dt-img-hide-title','0'),(24177,3815,'_wp_attached_file','2017/03/Kaizen_white_on_black-1-scaled.jpg'),(24178,3815,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:890;s:4:\"file\";s:42:\"2017/03/Kaizen_white_on_black-1-scaled.jpg\";s:8:\"filesize\";i:117299;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"Kaizen_white_on_black-1.jpg\";}'),(24179,3819,'_wp_attached_file','2017/11/Home-Brewing-3-1.png'),(24180,3819,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:28:\"2017/11/Home-Brewing-3-1.png\";s:8:\"filesize\";i:758465;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24181,3820,'_wp_attached_file','2017/11/Home-Brewing-4.png'),(24182,3820,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:26:\"2017/11/Home-Brewing-4.png\";s:8:\"filesize\";i:526923;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24183,3821,'_wp_attached_file','2017/11/communication-1.png'),(24184,3821,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:355;s:6:\"height\";i:142;s:4:\"file\";s:27:\"2017/11/communication-1.png\";s:8:\"filesize\";i:4455;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24185,3829,'_wp_attached_file','2017/11/Home-Brewing-2-1.png'),(24186,3829,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:28:\"2017/11/Home-Brewing-2-1.png\";s:8:\"filesize\";i:954284;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24187,3830,'_wp_attached_file','2017/11/PT-FUSTRATION-1.jpg'),(24188,3830,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:600;s:4:\"file\";s:27:\"2017/11/PT-FUSTRATION-1.jpg\";s:8:\"filesize\";i:482794;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 5D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1203684055\";s:9:\"copyright\";s:11:\"Randy Plett\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:4:{i:0;s:8:\"exercise\";i:1;s:7:\"fitness\";i:2;s:3:\"gym\";i:3;s:6:\"people\";}}}'),(24189,3831,'_wp_attached_file','2017/11/coaching-1.png'),(24190,3831,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:22:\"2017/11/coaching-1.png\";s:8:\"filesize\";i:20421;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24191,3832,'_wp_attached_file','2017/11/sprinterglow-1.png'),(24192,3832,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1334;s:6:\"height\";i:958;s:4:\"file\";s:26:\"2017/11/sprinterglow-1.png\";s:8:\"filesize\";i:780429;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24193,3833,'_wp_attached_file','2017/11/shutterstock_52725265-1.jpg'),(24194,3833,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:940;s:6:\"height\";i:350;s:4:\"file\";s:35:\"2017/11/shutterstock_52725265-1.jpg\";s:8:\"filesize\";i:80990;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24195,3903,'_wp_attached_file','2017/11/Home-Brewing-1-1.png'),(24196,3903,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:28:\"2017/11/Home-Brewing-1-1.png\";s:8:\"filesize\";i:690675;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24197,3914,'_wp_attached_file','2017/12/0x0ss-85-1.jpg'),(24198,3914,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:4:\"file\";s:22:\"2017/12/0x0ss-85-1.jpg\";s:8:\"filesize\";i:170851;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24199,3915,'_wp_attached_file','2017/12/Home-Brewing-3-1.png'),(24200,3915,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:28:\"2017/12/Home-Brewing-3-1.png\";s:8:\"filesize\";i:613672;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24201,4733,'_wp_attachment_image_alt','iba-discovery-day-workshop'),(24202,4733,'dt-img-hide-title','0'),(24203,10836,'_wp_old_slug','always-always-start-with-why'),(24204,10836,'dt-img-hide-title','0'),(24205,12889,'dt-img-hide-title','0'),(24206,13010,'_wp_attachment_image_alt','Are Shoulder Problems Are The New Low Back Pain_'),(24207,13010,'dt-img-hide-title','0'),(24208,13150,'dt-img-hide-title','0'),(24209,16415,'_wp_attached_file','2019/08/Core-Ratios_-The-Personal-Trainers-Guide-To-Assessing-Programming-For-The-Core-1.png'),(24210,16415,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:92:\"2019/08/Core-Ratios_-The-Personal-Trainers-Guide-To-Assessing-Programming-For-The-Core-1.png\";s:8:\"filesize\";i:606625;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24211,22619,'_wp_attached_file','2020/06/lindsey-saenz-kR3X9NxgW7E-unsplash-scaled-1.jpg'),(24212,22619,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1709;s:6:\"height\";i:2560;s:4:\"file\";s:55:\"2020/06/lindsey-saenz-kR3X9NxgW7E-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:465226;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24213,23949,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:1499;s:4:\"file\";s:15:\"IMG_3042-1.jpeg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-768x1151.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(24214,30605,'dt-img-hide-title','0'),(24215,30606,'dt-img-hide-title','0'),(24216,30610,'dt-img-hide-title','0'),(24217,30612,'dt-img-hide-title','0'),(24218,31065,'_wp_attachment_image_alt','Online vs Face to Face workshop - biomechanics education'),(24219,31065,'dt-img-hide-title','0'),(24220,31068,'_wp_attachment_image_alt','gabin-vallet - Online vs Face to Face- biomechanics education'),(24221,31068,'dt-img-hide-title','0'),(24222,31069,'_wp_attachment_image_alt','jonathan-borba - online vs face to face workshop - biomechanics education'),(24223,31069,'dt-img-hide-title','0'),(24224,31185,'_wp_attachment_image_alt','[Case Study] Elite Lifter Laura Hewitt - biomechanics education'),(24225,31185,'dt-img-hide-title','0'),(24226,31260,'_wp_attachment_image_alt','Understanding Nerves - young man relaxing on the sofa'),(24227,31260,'dt-img-hide-title','0'),(24228,31261,'_wp_attachment_image_alt','Understanding Nerves - young woman exercising'),(24229,31261,'dt-img-hide-title','0'),(24230,31262,'_wp_attachment_image_alt','Understanding Nerves - Rachel Frances Thomson'),(24231,31262,'dt-img-hide-title','0'),(24232,31422,'_wp_attachment_image_alt','Neuromuscular Exercise - biomechanics education'),(24233,31422,'dt-img-hide-title','0'),(24234,31424,'_wp_attachment_image_alt','Neuromuscular Exercise - one leg'),(24235,31424,'dt-img-hide-title','0'),(24236,31431,'_wp_attachment_image_alt','rachel thomson - exercise biomechanics education'),(24237,31431,'dt-img-hide-title','0'),(24238,31432,'_wp_attachment_image_alt','Neuromuscular Exercise with dog - rachel thomson'),(24239,31432,'dt-img-hide-title','0'),(24240,31433,'_wp_attachment_image_alt','neuromuscular exercise - rachel thomson'),(24241,31433,'dt-img-hide-title','0'),(24242,31612,'_wp_attachment_image_alt','Mark Laws - IBA discovery day'),(24243,31612,'dt-img-hide-title','0'),(24244,31613,'_wp_attachment_image_alt','Mark Laws - biomechanics education'),(24245,31613,'dt-img-hide-title','0'),(24246,31614,'_wp_attachment_image_alt','IBA Discovery Day Workshops - biomechanics education'),(24247,31614,'dt-img-hide-title','0'),(24248,31747,'_wp_attachment_image_alt','The Power of Words - biomechanics education'),(24249,31747,'dt-img-hide-title','0'),(24250,31749,'_wp_attachment_image_alt','brett-jordan - practice makes perfect'),(24251,31749,'dt-img-hide-title','0'),(24252,31877,'_wp_attachment_image_alt','Portrait_Mike Stewart - biomechanics education'),(24253,31877,'dt-img-hide-title','0'),(24254,31879,'_wp_attachment_image_alt','JBE Rio 3 - the kaizen project'),(24255,31879,'dt-img-hide-title','0'),(24256,32012,'_wp_attachment_image_alt','Rachel France - the kaizen project'),(24257,32012,'dt-img-hide-title','0'),(24258,32179,'_wp_attachment_image_alt','Rachel France - exercising'),(24259,32179,'dt-img-hide-title','0'),(24260,32182,'_wp_attachment_image_alt','Rachel France - cimspa member profile'),(24261,32182,'dt-img-hide-title','0'),(24262,32556,'_wp_attachment_image_alt','A man lies on an exercise mat, he is wearing a blue top and black shorts, white socks, and white trainers. He has his left knee bent and right leg straight on the floor. Rachel is knelt beside him wearing an orange top and black tracksuit bottoms, and socks. She is gesturing something with her hands and talking to the class.'),(24263,32556,'dt-img-hide-title','0'),(24264,34558,'_wp_attached_file','2022/12/IMG_1564-scaled-1.jpg'),(24265,34558,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2022/12/IMG_1564-scaled-1.jpg\";s:8:\"filesize\";i:404889;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(24266,38017,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_Black_RGB-01.png\";}s:18:\"full-1710432922797\";a:3:{s:5:\"width\";i:500;s:6:\"height\";i:117;s:4:\"file\";s:44:\"FFG_Wordmark_Black_RGB-01-e1710432746919.png\";}}'),(24267,38017,'_wp_page_template','default'),(24268,38017,'dt-video-url',''),(24269,38017,'dt-img-link',''),(24270,38017,'dt-img-hide-title','0'),(24271,38023,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_White_RGB-01.png\";}}'),(24272,38023,'dt-img-hide-title','0'),(24273,38588,'_wp_attachment_context','custom-header'),(24274,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(24275,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(24276,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(24277,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(24278,192,'dt-img-hide-title','0'),(24279,194,'dt-img-hide-title','0'),(24280,205,'dt-img-hide-title','0'),(24281,206,'dt-img-hide-title','0'),(24282,208,'dt-img-hide-title','0'),(24283,247,'dt-img-hide-title','0'),(24284,248,'_wp_attachment_context','site-icon'),(24285,248,'dt-img-hide-title','0'),(24286,265,'dt-img-hide-title','0'),(24287,283,'dt-img-hide-title','0'),(24288,284,'dt-img-hide-title','0'),(24289,285,'dt-img-hide-title','0'),(24290,287,'dt-img-hide-title','0'),(24291,290,'dt-img-hide-title','0'),(24292,291,'dt-img-hide-title','0'),(24293,294,'dt-img-hide-title','0'),(24294,297,'dt-img-hide-title','0'),(24295,333,'dt-img-hide-title','0'),(24296,341,'dt-img-hide-title','0'),(24297,407,'dt-img-hide-title','0'),(24298,458,'dt-img-hide-title','0'),(24299,495,'dt-img-hide-title','0'),(24300,497,'dt-img-hide-title','0'),(24301,505,'dt-img-hide-title','0'),(24302,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(24303,210,'dt-img-link',''),(24304,210,'dt-img-hide-title','0'),(24305,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(24306,221,'dt-img-link',''),(24307,221,'dt-img-hide-title','0'),(24308,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(24309,224,'dt-img-link',''),(24310,224,'dt-img-hide-title','0'),(24311,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(24312,228,'dt-img-link',''),(24313,228,'dt-img-hide-title','0'),(24314,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(24315,230,'dt-img-link',''),(24316,230,'dt-img-hide-title','0'),(24317,237,'dt-img-hide-title','0'),(24318,237,'dt-img-link',''),(24319,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(24320,557,'dt-img-hide-title','0'),(24321,559,'dt-img-hide-title','0'),(24322,562,'dt-img-hide-title','0'),(24323,569,'dt-img-hide-title','0'),(24324,592,'dt-img-hide-title','0'),(24325,596,'dt-img-hide-title','0'),(24326,617,'dt-img-hide-title','0'),(24327,620,'dt-img-hide-title','0'),(24328,621,'dt-img-hide-title','0'),(24329,623,'dt-img-hide-title','0'),(24330,624,'dt-img-hide-title','0'),(24331,644,'dt-img-hide-title','0'),(24332,648,'dt-img-hide-title','0'),(24333,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(24334,824,'dt-img-link',''),(24335,824,'dt-img-hide-title','0'),(24336,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(24337,825,'dt-img-link',''),(24338,825,'dt-img-hide-title','0'),(24339,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(24340,828,'dt-img-link',''),(24341,828,'dt-img-hide-title','0'),(24342,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(24343,1450,'dt-img-link',''),(24344,1450,'dt-img-hide-title','0'),(24345,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(24346,1451,'dt-img-link',''),(24347,1451,'dt-img-hide-title','0'),(24348,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(24349,1452,'dt-img-link',''),(24350,1452,'dt-img-hide-title','0'),(24351,652,'dt-img-hide-title','0'),(24352,655,'dt-img-hide-title','0'),(24353,675,'dt-img-hide-title','0'),(24354,678,'dt-img-hide-title','0'),(24355,683,'dt-img-hide-title','0'),(24356,703,'dt-img-hide-title','0'),(24357,706,'dt-img-hide-title','0'),(24358,709,'dt-img-hide-title','0'),(24359,712,'dt-img-hide-title','0'),(24360,713,'dt-img-hide-title','0'),(24361,714,'dt-img-hide-title','0'),(24362,715,'dt-img-hide-title','0'),(24363,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(24364,722,'dt-img-hide-title','0'),(24365,735,'dt-img-hide-title','0'),(24366,759,'dt-img-hide-title','0'),(24367,762,'dt-img-hide-title','0'),(24368,766,'dt-img-hide-title','0'),(24369,770,'dt-img-hide-title','0'),(24370,804,'dt-img-hide-title','0'),(24371,814,'dt-img-hide-title','0'),(24372,827,'dt-img-hide-title','0'),(24373,830,'dt-img-hide-title','0'),(24374,854,'dt-img-hide-title','0'),(24375,857,'dt-img-hide-title','0'),(24376,874,'dt-img-hide-title','0'),(24377,937,'dt-img-hide-title','0'),(24378,941,'dt-img-hide-title','0'),(24379,955,'dt-img-hide-title','0'),(24380,969,'_wp_attachment_image_alt','imove Freely'),(24381,969,'dt-img-hide-title','0'),(24382,1001,'dt-img-hide-title','0'),(24383,1015,'dt-img-hide-title','0'),(24384,1018,'dt-img-hide-title','0'),(24385,1020,'dt-img-hide-title','0'),(24386,1021,'dt-img-hide-title','0'),(24387,1024,'dt-img-hide-title','0'),(24388,1027,'dt-img-hide-title','0'),(24389,1030,'dt-img-hide-title','0'),(24390,1035,'dt-img-hide-title','0'),(24391,1039,'dt-img-hide-title','0'),(24392,1045,'dt-img-hide-title','0'),(24393,1051,'dt-img-hide-title','0'),(24394,1052,'dt-img-hide-title','0'),(24395,1055,'dt-img-hide-title','0'),(24396,1057,'dt-img-hide-title','0'),(24397,1061,'dt-img-hide-title','0'),(24398,1065,'dt-img-hide-title','0'),(24399,1068,'dt-img-hide-title','0'),(24400,1073,'dt-img-hide-title','0'),(24401,1078,'dt-img-hide-title','0'),(24402,1084,'dt-img-hide-title','0'),(24403,1088,'dt-img-hide-title','0'),(24404,1094,'dt-img-hide-title','0'),(24405,1096,'dt-img-hide-title','0'),(24406,1097,'dt-img-hide-title','0'),(24407,1099,'dt-img-hide-title','0'),(24408,1106,'dt-img-hide-title','0'),(24409,1110,'dt-img-hide-title','0'),(24410,1112,'dt-img-hide-title','0'),(24411,1116,'dt-img-hide-title','0'),(24412,1125,'dt-img-hide-title','0'),(24413,1129,'dt-img-hide-title','0'),(24414,1145,'dt-img-hide-title','0'),(24415,1167,'dt-img-hide-title','0'),(24416,1184,'dt-img-hide-title','0'),(24417,1186,'dt-img-hide-title','0'),(24418,1187,'dt-img-hide-title','0'),(24419,1189,'dt-img-hide-title','0'),(24420,1194,'dt-img-hide-title','0'),(24421,1197,'dt-img-hide-title','0'),(24422,1201,'dt-img-hide-title','0'),(24423,1202,'dt-img-hide-title','0'),(24424,1203,'dt-img-hide-title','0'),(24425,1204,'dt-img-hide-title','0'),(24426,1205,'dt-img-hide-title','0'),(24427,1206,'dt-img-hide-title','0'),(24428,1207,'dt-img-hide-title','0'),(24429,1209,'dt-img-hide-title','0'),(24430,1210,'dt-img-hide-title','0'),(24431,1211,'dt-img-hide-title','0'),(24432,1212,'dt-img-hide-title','0'),(24433,1213,'dt-img-hide-title','0'),(24434,1214,'dt-img-hide-title','0'),(24435,1220,'dt-img-hide-title','0'),(24436,1223,'dt-img-hide-title','0'),(24437,1226,'dt-img-hide-title','0'),(24438,1228,'dt-img-hide-title','0'),(24439,1232,'dt-img-hide-title','0'),(24440,1235,'dt-img-hide-title','0'),(24441,1239,'dt-img-hide-title','0'),(24442,1242,'dt-img-hide-title','0'),(24443,1246,'dt-img-hide-title','0'),(24444,1256,'dt-img-hide-title','0'),(24445,1262,'dt-img-hide-title','0'),(24446,1265,'dt-img-hide-title','0'),(24447,1269,'dt-img-hide-title','0'),(24448,1275,'dt-img-hide-title','0'),(24449,1279,'dt-img-hide-title','0'),(24450,1312,'dt-img-hide-title','0'),(24451,1316,'dt-img-hide-title','0'),(24452,1320,'dt-img-hide-title','0'),(24453,1326,'dt-img-hide-title','0'),(24454,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(24455,1334,'dt-img-hide-title','0'),(24456,1338,'dt-img-hide-title','0'),(24457,1339,'dt-img-hide-title','0'),(24458,1343,'dt-img-hide-title','0'),(24459,1347,'dt-img-hide-title','0'),(24460,1351,'dt-img-hide-title','0'),(24461,1354,'dt-img-hide-title','0'),(24462,1357,'dt-img-hide-title','0'),(24463,1359,'dt-img-hide-title','0'),(24464,1362,'dt-img-hide-title','0'),(24465,1366,'dt-img-hide-title','0'),(24466,1379,'dt-img-hide-title','0'),(24467,1398,'dt-img-hide-title','0'),(24468,1403,'dt-img-hide-title','0'),(24469,1406,'dt-img-hide-title','0'),(24470,1410,'dt-img-hide-title','0'),(24471,1413,'dt-img-hide-title','0'),(24472,1416,'dt-img-hide-title','0'),(24473,1419,'dt-img-hide-title','0'),(24474,1423,'dt-img-hide-title','0'),(24475,1429,'dt-img-hide-title','0'),(24476,1430,'dt-img-hide-title','0'),(24477,1433,'dt-img-hide-title','0'),(24478,1463,'dt-img-hide-title','0'),(24479,1463,'dt-img-hide-title','0'),(24480,1463,'dt-img-hide-title','0'),(24481,1463,'dt-img-hide-title','0'),(24482,1463,'dt-img-hide-title','0'),(24483,1468,'dt-img-hide-title','0'),(24484,2229,'dt-img-hide-title','0'),(24485,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(24486,2230,'dt-img-hide-title','0'),(24487,2231,'dt-img-hide-title','0'),(24488,2232,'dt-img-hide-title','0'),(24489,2233,'dt-img-hide-title','0'),(24490,2234,'dt-img-hide-title','0'),(24491,2235,'dt-img-hide-title','0'),(24492,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(24493,1474,'dt-img-hide-title','0'),(24494,1475,'dt-img-hide-title','0'),(24495,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(24496,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(24497,1476,'dt-img-hide-title','0'),(24498,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(24499,1478,'dt-img-hide-title','0'),(24500,1479,'dt-img-hide-title','0'),(24501,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(24502,1489,'dt-img-hide-title','0'),(24503,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(24504,1500,'dt-img-hide-title','0'),(24505,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(24506,1501,'dt-img-hide-title','0'),(24507,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(24508,1504,'dt-img-hide-title','0'),(24509,1508,'_wp_attachment_image_alt',''),(24510,1508,'dt-img-hide-title','0'),(24511,1508,'dt-video-url',''),(24512,1508,'dt-img-link',''),(24513,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(24514,1510,'dt-img-hide-title','0'),(24515,1514,'dt-img-hide-title','0'),(24516,2236,'dt-img-hide-title','0'),(24517,2237,'dt-img-hide-title','0'),(24518,2238,'dt-img-hide-title','0'),(24519,2239,'dt-img-hide-title','0'),(24520,2247,'dt-img-hide-title','0'),(24521,2248,'dt-img-hide-title','0'),(24522,2249,'dt-img-hide-title','0'),(24523,1533,'dt-img-hide-title','0'),(24524,1535,'dt-img-hide-title','0'),(24525,1536,'dt-img-hide-title','0'),(24526,1540,'dt-img-hide-title','0'),(24527,1546,'dt-img-hide-title','0'),(24528,1556,'dt-img-hide-title','0'),(24529,1566,'dt-img-hide-title','0'),(24530,1595,'dt-img-hide-title','0'),(24531,1608,'dt-video-url',''),(24532,1608,'dt-img-link',''),(24533,1608,'dt-img-hide-title','0'),(24534,1825,'dt-img-hide-title','0'),(24535,2250,'dt-img-hide-title','0'),(24536,2251,'dt-img-hide-title','0'),(24537,2252,'dt-img-hide-title','0'),(24538,2253,'dt-img-hide-title','0'),(24539,2254,'dt-img-hide-title','0'),(24540,2255,'dt-img-hide-title','0'),(24541,2256,'dt-img-hide-title','0'),(24542,2257,'dt-img-hide-title','0'),(24543,2258,'dt-img-hide-title','0'),(24544,2259,'dt-img-hide-title','0'),(24545,1646,'dt-img-hide-title','0'),(24546,1650,'dt-img-hide-title','0'),(24550,2241,'dt-img-hide-title','0'),(24551,2242,'dt-img-hide-title','0'),(24552,2243,'dt-img-hide-title','0'),(24553,2244,'dt-img-hide-title','0'),(24554,2245,'dt-img-hide-title','0'),(24555,2246,'dt-img-hide-title','0'),(24556,2260,'dt-img-hide-title','0'),(24557,2261,'dt-img-hide-title','0'),(24558,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(24559,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(24560,2262,'dt-img-hide-title','0'),(24561,2263,'dt-img-hide-title','0'),(24562,2264,'dt-img-hide-title','0'),(24563,2265,'dt-img-hide-title','0'),(24564,2266,'dt-img-hide-title','0'),(24565,2267,'dt-img-hide-title','0'),(24566,2268,'dt-img-hide-title','0'),(24567,2269,'dt-img-hide-title','0'),(24568,2270,'dt-img-hide-title','0'),(24569,1658,'dt-img-hide-title','0'),(24570,1660,'dt-img-hide-title','0'),(24571,1667,'dt-img-hide-title','0'),(24572,1668,'dt-img-hide-title','0'),(24573,1669,'dt-img-hide-title','0'),(24574,1674,'dt-img-hide-title','0'),(24575,2102,'dt-img-hide-title','0'),(24576,2103,'dt-img-hide-title','0'),(24577,2104,'dt-img-hide-title','0'),(24578,2105,'dt-img-hide-title','0'),(24579,2106,'dt-img-hide-title','0'),(24580,2107,'dt-img-hide-title','0'),(24581,2108,'dt-img-hide-title','0'),(24582,2109,'dt-img-hide-title','0'),(24583,2110,'dt-img-hide-title','0'),(24584,2111,'dt-img-hide-title','0'),(24585,2112,'dt-img-hide-title','0'),(24586,2113,'dt-img-hide-title','0'),(24587,2114,'dt-img-hide-title','0'),(24588,2115,'dt-img-hide-title','0'),(24589,1675,'dt-img-hide-title','0'),(24590,1699,'dt-img-hide-title','0'),(24591,1700,'dt-img-hide-title','0'),(24592,1701,'dt-img-hide-title','0'),(24593,1702,'dt-img-hide-title','0'),(24594,2217,'dt-img-hide-title','0'),(24595,2222,'dt-img-hide-title','0'),(24596,2271,'dt-img-hide-title','0'),(24597,2289,'dt-img-hide-title','0'),(24598,2291,'dt-img-hide-title','0'),(24599,2293,'dt-img-hide-title','0'),(24600,2295,'dt-img-hide-title','0'),(24601,2297,'dt-img-hide-title','0'),(24602,2299,'dt-img-hide-title','0'),(24603,2301,'dt-img-hide-title','0'),(24604,2303,'dt-img-hide-title','0'),(24605,2305,'dt-img-hide-title','0'),(24606,2307,'dt-img-hide-title','0'),(24607,2405,'dt-img-hide-title','0'),(24608,2405,'_wp_attachment_image_alt','iMoveFreely® Exercises To Try At Home'),(24609,2409,'dt-img-hide-title','0'),(24610,2409,'_wp_attachment_image_alt','Don’t Listen To Us….Listen To Them!'),(24611,2410,'dt-img-hide-title','0'),(24612,2410,'_wp_attachment_image_alt','Presentations at The Movement Convention'),(24613,2411,'dt-img-hide-title','0'),(24614,2411,'_wp_attachment_image_alt','Just For Fun'),(24615,2413,'dt-img-hide-title','0'),(24616,2413,'_wp_attachment_image_alt','We all Squat Differently?'),(24617,2415,'dt-img-hide-title','0'),(24618,2415,'_wp_attachment_image_alt','What Do Our Workshops Look Like?'),(24619,2534,'dt-img-hide-title','0'),(24620,2535,'dt-img-hide-title','0'),(24621,2537,'dt-img-hide-title','0'),(24622,2538,'dt-img-hide-title','0'),(24623,2539,'dt-img-hide-title','0'),(24624,2540,'dt-img-hide-title','0'),(24625,2541,'dt-img-hide-title','0'),(24626,2548,'dt-img-hide-title','0'),(24627,2549,'dt-img-hide-title','0'),(24628,2550,'dt-img-hide-title','0'),(24629,2551,'dt-img-hide-title','0'),(24630,2552,'dt-img-hide-title','0'),(24631,2611,'dt-img-hide-title','0'),(24632,2612,'dt-img-hide-title','0'),(24633,2613,'dt-img-hide-title','0'),(24634,2614,'dt-img-hide-title','0'),(24635,2615,'dt-img-hide-title','0'),(24636,2655,'dt-img-hide-title','0'),(24637,2656,'dt-img-hide-title','0'),(24638,2657,'dt-img-hide-title','0'),(24639,2658,'dt-img-hide-title','0'),(24640,2721,'dt-img-hide-title','0'),(24641,2722,'dt-img-hide-title','0'),(24642,2723,'dt-img-hide-title','0'),(24643,2724,'dt-img-hide-title','0'),(24644,2725,'dt-img-hide-title','0'),(24645,2726,'dt-img-hide-title','0'),(24646,2727,'dt-img-hide-title','0'),(24647,2728,'dt-img-hide-title','0'),(24648,2729,'dt-img-hide-title','0'),(24649,2756,'dt-img-hide-title','0'),(24650,2759,'dt-img-hide-title','0'),(24651,2781,'dt-img-hide-title','0'),(24652,2786,'dt-img-hide-title','0'),(24653,2787,'dt-img-hide-title','0'),(24654,2788,'dt-img-hide-title','0'),(24655,2788,'_wp_attachment_image_alt','the effect of quadratus lumborum muscle'),(24656,2810,'dt-img-hide-title','0'),(24657,2811,'dt-img-hide-title','0'),(24658,2812,'dt-img-hide-title','0'),(24659,2813,'dt-img-hide-title','0'),(24660,2814,'dt-img-hide-title','0'),(24661,2815,'dt-img-hide-title','0'),(24662,2816,'dt-img-hide-title','0'),(24663,2817,'dt-img-hide-title','0'),(24664,2818,'dt-img-hide-title','0'),(24665,2837,'dt-img-hide-title','0'),(24666,2846,'dt-img-hide-title','0'),(24667,2847,'dt-img-hide-title','0'),(24668,2856,'dt-img-hide-title','0'),(24669,2857,'dt-img-hide-title','0'),(24670,2858,'dt-img-hide-title','0'),(24671,2859,'dt-img-hide-title','0'),(24672,2860,'dt-img-hide-title','0'),(24673,2861,'dt-img-hide-title','0'),(24674,2862,'dt-img-hide-title','0'),(24675,2868,'dt-img-hide-title','0'),(24676,2869,'dt-img-hide-title','0'),(24677,2870,'dt-img-hide-title','0'),(24678,2871,'dt-img-hide-title','0'),(24679,2875,'dt-img-hide-title','0'),(24680,2876,'dt-img-hide-title','0'),(24681,2877,'dt-img-hide-title','0'),(24682,2878,'dt-img-hide-title','0'),(24683,2879,'dt-img-hide-title','0'),(24684,2894,'dt-img-hide-title','0'),(24685,2894,'dt-video-url',''),(24686,2894,'dt-img-link',''),(24687,2896,'dt-img-hide-title','0'),(24688,2896,'dt-video-url',''),(24689,2896,'dt-img-link',''),(24690,2960,'dt-img-hide-title','0'),(24691,2961,'dt-img-hide-title','0'),(24692,2962,'dt-img-hide-title','0'),(24693,2963,'dt-img-hide-title','0'),(24694,2964,'dt-img-hide-title','0'),(24695,2965,'dt-img-hide-title','0'),(24696,2966,'dt-img-hide-title','0'),(24697,2967,'dt-img-hide-title','0'),(24698,2968,'dt-img-hide-title','0'),(24699,2969,'dt-img-hide-title','0'),(24700,2976,'dt-img-hide-title','0'),(24701,2986,'dt-img-hide-title','0'),(24702,2999,'dt-img-hide-title','0'),(24703,3002,'dt-img-hide-title','0'),(24704,3003,'dt-img-hide-title','0'),(24705,3004,'dt-img-hide-title','0'),(24706,3005,'dt-img-hide-title','0'),(24707,3006,'dt-img-hide-title','0'),(24708,3014,'dt-img-hide-title','0'),(24709,3015,'dt-img-hide-title','0'),(24710,3016,'dt-img-hide-title','0'),(24711,3034,'dt-img-hide-title','0'),(24712,3173,'dt-img-hide-title','0'),(24713,3174,'dt-img-hide-title','0'),(24714,3179,'dt-img-hide-title','0'),(24715,3180,'dt-img-hide-title','0'),(24716,3183,'dt-img-hide-title','0'),(24717,3188,'dt-img-hide-title','0'),(24718,3191,'dt-img-hide-title','0'),(24719,3200,'dt-img-hide-title','0'),(24720,3201,'dt-img-hide-title','0'),(24721,3202,'dt-img-hide-title','0'),(24722,3203,'dt-img-hide-title','0'),(24723,3205,'dt-img-hide-title','0'),(24724,3206,'dt-img-hide-title','0'),(24725,3207,'dt-img-hide-title','0'),(24726,3208,'dt-img-hide-title','0'),(24727,3213,'dt-img-hide-title','0'),(24728,3214,'dt-img-hide-title','0'),(24729,3228,'dt-img-hide-title','0'),(24730,3229,'dt-img-hide-title','0'),(24731,3230,'dt-img-hide-title','0'),(24732,3234,'dt-img-hide-title','0'),(24733,3242,'dt-img-hide-title','0'),(24734,3243,'dt-img-hide-title','0'),(24735,3325,'dt-img-hide-title','0'),(24736,3479,'dt-img-hide-title','0'),(24737,3496,'dt-img-hide-title','0'),(24738,3496,'_wp_attachment_image_alt','Rachel France - profile image'),(24739,3497,'dt-img-hide-title','0'),(24740,3498,'dt-img-hide-title','0'),(24741,3499,'dt-img-hide-title','0'),(24742,3502,'dt-img-hide-title','0'),(24743,3504,'dt-img-hide-title','0'),(24744,3505,'dt-img-hide-title','0'),(24745,3506,'dt-img-hide-title','0'),(24746,3507,'dt-img-hide-title','0'),(24747,3511,'dt-img-hide-title','0'),(24748,3528,'dt-img-hide-title','0'),(24749,3534,'dt-video-url',''),(24750,3534,'dt-img-link',''),(24751,3534,'dt-img-hide-title','0'),(24752,3535,'dt-video-url',''),(24753,3535,'dt-img-link',''),(24754,3535,'dt-img-hide-title','0'),(24755,3535,'_wp_attachment_image_alt','Tachel France - biomechanics education'),(24756,3536,'dt-video-url',''),(24757,3536,'dt-img-link',''),(24758,3536,'dt-img-hide-title','0'),(24759,3537,'dt-video-url',''),(24760,3537,'dt-img-link',''),(24761,3537,'dt-img-hide-title','0'),(24762,3551,'dt-img-hide-title','0'),(24763,3629,'dt-img-hide-title','0'),(24764,3630,'dt-img-hide-title','0'),(24765,3631,'dt-img-hide-title','0'),(24766,3632,'dt-img-hide-title','0'),(24767,3633,'dt-img-hide-title','0'),(24768,3634,'dt-img-hide-title','0'),(24769,3635,'dt-img-hide-title','0'),(24770,3636,'dt-img-hide-title','0'),(24771,3655,'dt-video-url',''),(24772,3655,'dt-img-link',''),(24773,3655,'dt-img-hide-title','0'),(24774,3690,'dt-img-hide-title','0'),(24775,3692,'dt-img-hide-title','0'),(24776,3693,'dt-img-hide-title','0'),(24777,3694,'dt-img-hide-title','0'),(24778,3695,'dt-img-hide-title','0'),(24779,3699,'dt-img-hide-title','0'),(24780,3784,'dt-img-hide-title','0'),(24781,3789,'dt-img-hide-title','0'),(24782,3801,'dt-img-hide-title','0'),(24783,3803,'dt-img-hide-title','0'),(24784,3921,'_wp_attached_file','2017/12/Find-us-at-homebrewing.com_-1.png'),(24785,3921,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:41:\"2017/12/Find-us-at-homebrewing.com_-1.png\";s:8:\"filesize\";i:434765;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24786,3923,'_wp_attached_file','2017/12/Everything-should-be-made-as-simple-as-possible-but-not-simpler.-Albert-Einstein-1.jpg'),(24787,3923,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:94:\"2017/12/Everything-should-be-made-as-simple-as-possible-but-not-simpler.-Albert-Einstein-1.jpg\";s:8:\"filesize\";i:99229;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24788,3948,'_wp_attached_file','2017/12/19.12.17-Preparation-and-capacity-1.png'),(24789,3948,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:47:\"2017/12/19.12.17-Preparation-and-capacity-1.png\";s:8:\"filesize\";i:824059;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24790,3950,'_wp_attached_file','2017/12/Screen-Shot-2017-12-19-at-02.28.14-1.png'),(24791,3950,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:3258;s:6:\"height\";i:1908;s:4:\"file\";s:48:\"2017/12/Screen-Shot-2017-12-19-at-02.28.14-1.png\";s:8:\"filesize\";i:4059195;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24792,3954,'_wp_attached_file','2017/12/certificate-1.png'),(24793,3954,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:25:\"2017/12/certificate-1.png\";s:8:\"filesize\";i:1213922;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24794,3957,'_wp_attached_file','2017/12/20689649_10154903127672081_9002171364846902606_o-1.jpg'),(24795,3957,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1440;s:6:\"height\";i:1440;s:4:\"file\";s:62:\"2017/12/20689649_10154903127672081_9002171364846902606_o-1.jpg\";s:8:\"filesize\";i:269640;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24796,3969,'_wp_attached_file','2018/01/Find-us-at-homebrewing.com_-1.png'),(24797,3969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:41:\"2018/01/Find-us-at-homebrewing.com_-1.png\";s:8:\"filesize\";i:834806;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24798,3970,'_wp_attached_file','2018/01/Find-us-at-homebrewing.com-2-1.png'),(24799,3970,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:42:\"2018/01/Find-us-at-homebrewing.com-2-1.png\";s:8:\"filesize\";i:827763;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24800,3978,'_wp_attached_file','2018/01/smart-goals1-1-1.jpg'),(24801,3978,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1591;s:6:\"height\";i:788;s:4:\"file\";s:28:\"2018/01/smart-goals1-1-1.jpg\";s:8:\"filesize\";i:148206;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:13:\"Jennifer Wood\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1426179223\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24802,4012,'_wp_attached_file','2018/01/Which-Came-First-1.png'),(24803,4012,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:30:\"2018/01/Which-Came-First-1.png\";s:8:\"filesize\";i:923449;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24804,4107,'_wp_attached_file','2018/01/What-exactly-is-Intrinsic-Biomechanics-1.png'),(24805,4107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:52:\"2018/01/What-exactly-is-Intrinsic-Biomechanics-1.png\";s:8:\"filesize\";i:846877;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24806,4107,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics'),(24807,4107,'dt-img-hide-title','0'),(24808,4107,'_wp_old_slug','what-exactly-is-intrinsic-biomechanics'),(24809,4108,'_wp_attached_file','2018/01/What-exactly-is-Intrinsic-Biomechanics-2-1.png'),(24810,4108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:628;s:4:\"file\";s:54:\"2018/01/What-exactly-is-Intrinsic-Biomechanics-2-1.png\";s:8:\"filesize\";i:938800;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24811,4108,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics-2'),(24812,4108,'dt-img-hide-title','0'),(24813,4110,'_wp_attached_file','2018/01/ankleinvsupine-1.jpg'),(24814,4110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:441;s:6:\"height\";i:375;s:4:\"file\";s:28:\"2018/01/ankleinvsupine-1.jpg\";s:8:\"filesize\";i:32494;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:4:\"Paul\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1294833643\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24815,4111,'_wp_attached_file','2018/01/Picture1-1-1.png'),(24816,4111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1012;s:6:\"height\";i:728;s:4:\"file\";s:24:\"2018/01/Picture1-1-1.png\";s:8:\"filesize\";i:436553;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24817,4112,'_wp_attached_file','2018/01/23279787_145150382772305_2188784676288593920_n-1.jpg'),(24818,4112,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:628;s:6:\"height\";i:628;s:4:\"file\";s:60:\"2018/01/23279787_145150382772305_2188784676288593920_n-1.jpg\";s:8:\"filesize\";i:51376;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24819,4113,'_wp_attached_file','2018/01/IMG_3483-1.jpg'),(24820,4113,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:22:\"2018/01/IMG_3483-1.jpg\";s:8:\"filesize\";i:305007;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(24821,4114,'_wp_attached_file','2018/01/IMG_3491-1.jpg'),(24822,4114,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:22:\"2018/01/IMG_3491-1.jpg\";s:8:\"filesize\";i:228190;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(24823,4115,'_wp_attached_file','2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1.jpg'),(24824,4115,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:78:\"2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1.jpg\";s:8:\"filesize\";i:1341178;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24825,4116,'_wp_attached_file','2018/01/olympic-lifting-2-1.jpg'),(24826,4116,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:579;s:6:\"height\";i:369;s:4:\"file\";s:31:\"2018/01/olympic-lifting-2-1.jpg\";s:8:\"filesize\";i:63680;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24827,4247,'_wp_attached_file','2018/01/allsportsbanner-1.jpg'),(24828,4247,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:476;s:4:\"file\";s:29:\"2018/01/allsportsbanner-1.jpg\";s:8:\"filesize\";i:681498;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24829,4253,'_wp_attached_file','2018/01/all-sportsbanner-1.jpg'),(24830,4253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1845;s:6:\"height\";i:476;s:4:\"file\";s:30:\"2018/01/all-sportsbanner-1.jpg\";s:8:\"filesize\";i:919745;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:5:\"Print\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(24831,4399,'_wp_attached_file','2018/01/Special-Fast-Track-3-Day-Pelvic-Spine-Biomechanics-Workshop-1-scaled.jpg'),(24832,4399,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:80:\"2018/01/Special-Fast-Track-3-Day-Pelvic-Spine-Biomechanics-Workshop-1-scaled.jpg\";s:8:\"filesize\";i:265773;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:65:\"Special-Fast-Track-3-Day-Pelvic-Spine-Biomechanics-Workshop-1.jpg\";}'),(24833,4399,'_wp_attachment_image_alt','special-fast-track-3-day-pelvic-spine-biomechanics-workshop'),(24834,4399,'dt-img-hide-title','0'),(24835,4593,'_wp_attached_file','2018/01/Product_place-holder-1.png'),(24836,4593,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2018/01/Product_place-holder-1.png\";s:8:\"filesize\";i:10453;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24837,4601,'_wp_attached_file','2018/01/chrome_2018-02-02_10-29-22-1.png'),(24838,4601,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:40:\"2018/01/chrome_2018-02-02_10-29-22-1.png\";s:8:\"filesize\";i:20155;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24839,4601,'dt-img-hide-title','0'),(24840,4705,'_wp_attached_file','2018/02/iMoveFreely®-Instructor-1-scaled.jpg'),(24841,4705,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:45:\"2018/02/iMoveFreely®-Instructor-1-scaled.jpg\";s:8:\"filesize\";i:705219;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"FinePix S1800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1318678570\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"7.6\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.013333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:30:\"iMoveFreely®-Instructor-1.jpg\";}'),(24842,4705,'_wp_attachment_image_alt','imovefreely-instructor - biomechanics education'),(24843,4705,'dt-img-hide-title','0'),(24844,4707,'_wp_attached_file','2018/02/GOLF-DAY-1-1-scaled.jpg'),(24845,4707,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2357;s:4:\"file\";s:31:\"2018/02/GOLF-DAY-1-1-scaled.jpg\";s:8:\"filesize\";i:271482;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"GOLF-DAY-1-1.jpg\";}'),(24846,4707,'dt-img-hide-title','0'),(24847,4709,'_wp_attached_file','2018/02/Intrinsic-Biomechanics-Taster-1.jpg'),(24848,4709,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:43:\"2018/02/Intrinsic-Biomechanics-Taster-1.jpg\";s:8:\"filesize\";i:230139;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(24849,4709,'_wp_attachment_image_alt','intrinsic-biomechanics-taster'),(24850,4709,'dt-img-hide-title','0'),(24851,4711,'_wp_attached_file','2018/01/BIO-ASSESSMENT-1-1.png'),(24852,4711,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1498;s:6:\"height\";i:1218;s:4:\"file\";s:30:\"2018/01/BIO-ASSESSMENT-1-1.png\";s:8:\"filesize\";i:2785714;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24853,4715,'_wp_attached_file','2018/01/Low-Back-Health-Workshop-2-scaled.jpg'),(24854,4715,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1700;s:4:\"file\";s:45:\"2018/01/Low-Back-Health-Workshop-2-scaled.jpg\";s:8:\"filesize\";i:332777;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:30:\"Low-Back-Health-Workshop-2.jpg\";}'),(24855,4715,'_wp_attachment_image_alt','low-back-health-workshop - biomechanics education'),(24856,4715,'dt-img-hide-title','0'),(24857,4717,'_wp_attached_file','2018/01/Knee-Foot-Biomechanics-2-Day-Workshop-1-scaled.jpg'),(24858,4717,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:58:\"2018/01/Knee-Foot-Biomechanics-2-Day-Workshop-1-scaled.jpg\";s:8:\"filesize\";i:389899;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:43:\"Knee-Foot-Biomechanics-2-Day-Workshop-1.jpg\";}'),(24859,4717,'_wp_attachment_image_alt','knee-foot-biomechanics-2-day-workshop'),(24860,4717,'dt-img-hide-title','0'),(24861,4719,'_wp_attached_file','2018/01/Shoulder-Biomechanics-Workshop-1-scaled.jpg'),(24862,4719,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:51:\"2018/01/Shoulder-Biomechanics-Workshop-1-scaled.jpg\";s:8:\"filesize\";i:609259;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:36:\"Shoulder-Biomechanics-Workshop-1.jpg\";}'),(24863,4725,'_wp_attached_file','2018/01/IBA-MEMBERHSIP-1-1-scaled.jpg'),(24864,4725,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:37:\"2018/01/IBA-MEMBERHSIP-1-1-scaled.jpg\";s:8:\"filesize\";i:502279;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"IBA-MEMBERHSIP-1-1.jpg\";}'),(24865,4729,'_wp_attached_file','2018/01/Spine-Biomechanics-2-Day-Workshop-2-scaled.jpg'),(24866,4729,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:54:\"2018/01/Spine-Biomechanics-2-Day-Workshop-2-scaled.jpg\";s:8:\"filesize\";i:265773;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:39:\"Spine-Biomechanics-2-Day-Workshop-2.jpg\";}'),(24867,4731,'_wp_attached_file','2018/01/Pelvic-Biomechanics-2-Day-Workshop-2-scaled.jpg'),(24868,4731,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1918;s:4:\"file\";s:55:\"2018/01/Pelvic-Biomechanics-2-Day-Workshop-2-scaled.jpg\";s:8:\"filesize\";i:280995;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:40:\"Pelvic-Biomechanics-2-Day-Workshop-2.jpg\";}'),(24869,4733,'_wp_attachment_image_alt','iba-discovery-day-workshop'),(24870,4733,'dt-img-hide-title','0'),(24871,4785,'_wp_attached_file','2018/02/Screen-Shot-2018-02-06-at-15.32.25-1.png'),(24872,4785,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1202;s:6:\"height\";i:622;s:4:\"file\";s:48:\"2018/02/Screen-Shot-2018-02-06-at-15.32.25-1.png\";s:8:\"filesize\";i:1095211;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24873,4793,'_wp_attached_file','2018/02/Screen-Shot-2018-02-06-at-15.35.57-1.png'),(24874,4793,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1210;s:6:\"height\";i:628;s:4:\"file\";s:48:\"2018/02/Screen-Shot-2018-02-06-at-15.35.57-1.png\";s:8:\"filesize\";i:1470017;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24875,5073,'_wp_attached_file','2018/01/logosmall-1.jpg'),(24876,5073,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:26;s:6:\"height\";i:30;s:4:\"file\";s:23:\"2018/01/logosmall-1.jpg\";s:8:\"filesize\";i:19472;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(24877,5133,'_wp_attached_file','2018/01/Fast-Track-3-Day-Pelvic-Spine-Biomechanics-1-1-scaled.jpg'),(24878,5133,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:65:\"2018/01/Fast-Track-3-Day-Pelvic-Spine-Biomechanics-1-1-scaled.jpg\";s:8:\"filesize\";i:493184;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1395929948\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:50:\"Fast-Track-3-Day-Pelvic-Spine-Biomechanics-1-1.jpg\";}'),(24879,5135,'_wp_attached_file','2018/01/Biomechanics-Coach™-Diploma-Workshop-Series-1-1-scaled.jpg'),(24880,5135,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:68:\"2018/01/Biomechanics-Coach™-Diploma-Workshop-Series-1-1-scaled.jpg\";s:8:\"filesize\";i:381706;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1456571647\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.058823529411765\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:53:\"Biomechanics-Coach™-Diploma-Workshop-Series-1-1.jpg\";}'),(24881,5135,'_wp_attachment_image_alt','Biomechanics Coach & Diploma Workshop Series'),(24882,5135,'dt-img-hide-title','0'),(24883,5137,'_wp_attached_file','2018/02/Fast-Track-3-Day-Shoulder-Knee-Foot-1-1-scaled.jpg'),(24884,5137,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:58:\"2018/02/Fast-Track-3-Day-Shoulder-Knee-Foot-1-1-scaled.jpg\";s:8:\"filesize\";i:386108;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1395930419\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:43:\"Fast-Track-3-Day-Shoulder-Knee-Foot-1-1.jpg\";}'),(24885,5139,'_wp_attached_file','2018/01/Low-Back-Health-Workshop-1-1-scaled.jpg'),(24886,5139,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:47:\"2018/01/Low-Back-Health-Workshop-1-1-scaled.jpg\";s:8:\"filesize\";i:580575;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1449136504\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:32:\"Low-Back-Health-Workshop-1-1.jpg\";}'),(24887,5139,'_wp_attachment_image_alt','Low Back Health Workshop'),(24888,5139,'dt-img-hide-title','0'),(24889,5141,'_wp_attached_file','2018/02/82da4fb4-df15-48b9-93b3-b67b9fb8d252-1.jpg'),(24890,5141,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:900;s:4:\"file\";s:50:\"2018/02/82da4fb4-df15-48b9-93b3-b67b9fb8d252-1.jpg\";s:8:\"filesize\";i:213619;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24891,5143,'_wp_attached_file','2018/01/Spine-Biomechanics-2-Day-Workshop-1-1-scaled.jpg'),(24892,5143,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:56:\"2018/01/Spine-Biomechanics-2-Day-Workshop-1-1-scaled.jpg\";s:8:\"filesize\";i:685551;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone 5s\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1397666006\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.12\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:41:\"Spine-Biomechanics-2-Day-Workshop-1-1.jpg\";}'),(24893,5143,'_wp_attachment_image_alt','Spine Biomechanics 2 Day Workshop'),(24894,5143,'dt-img-hide-title','0'),(24895,5145,'_wp_attached_file','2018/02/Screen-Shot-2018-02-12-at-11.35.33-1.png'),(24896,5145,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:492;s:4:\"file\";s:48:\"2018/02/Screen-Shot-2018-02-12-at-11.35.33-1.png\";s:8:\"filesize\";i:483250;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24897,5149,'_wp_attached_file','2018/01/Pelvic-Biomechanics-2-Day-Workshop-1-1.jpg'),(24898,5149,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:4:\"file\";s:50:\"2018/01/Pelvic-Biomechanics-2-Day-Workshop-1-1.jpg\";s:8:\"filesize\";i:264184;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(24899,5149,'_wp_attachment_image_alt','Pelvic Biomechanics 2 Day Workshop'),(24900,5149,'dt-img-hide-title','0'),(24901,5151,'_wp_attached_file','2018/01/Shoulder-Biomechanics-2-Day-Workshop-1.jpg'),(24902,5151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:50:\"2018/01/Shoulder-Biomechanics-2-Day-Workshop-1.jpg\";s:8:\"filesize\";i:213537;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(24903,5151,'_wp_attachment_image_alt','Shoulder Biomechanics 2 Day Workshop'),(24904,5151,'dt-img-hide-title','0'),(24905,5153,'_wp_attached_file','2018/01/Biomechanics-Coach™-Practical-Assessment-2-scaled.jpg'),(24906,5153,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:63:\"2018/01/Biomechanics-Coach™-Practical-Assessment-2-scaled.jpg\";s:8:\"filesize\";i:810958;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1472377411\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:48:\"Biomechanics-Coach™-Practical-Assessment-2.jpg\";}'),(24907,5155,'_wp_attached_file','2018/01/Biomechanics-Coach™-Practical-Assessment-1-1-scaled.jpg'),(24908,5155,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:65:\"2018/01/Biomechanics-Coach™-Practical-Assessment-1-1-scaled.jpg\";s:8:\"filesize\";i:810958;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1472377411\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"40\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:50:\"Biomechanics-Coach™-Practical-Assessment-1-1.jpg\";}'),(24909,5155,'dt-img-hide-title','0'),(24910,5155,'dt-video-url',''),(24911,5155,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split'),(24912,5253,'_wp_attached_file','2018/02/Christie-Brinkley-1-1.jpg'),(24913,5253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:669;s:6:\"height\";i:989;s:4:\"file\";s:33:\"2018/02/Christie-Brinkley-1-1.jpg\";s:8:\"filesize\";i:621155;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:31:\"Sports Illustrated/Getty Images\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:226:\"Swimsuit: 1979 Issue: Portrait of Christie Brinkley during photo shoot on beach. \rSeychelles 11/22/1978\rCREDIT: Walter Iooss Jr. (Photo by Walter Iooss Jr. /Sports Illustrated/Contour by Getty Images)\r(Set Number: X22862 TK1 )\";s:17:\"created_timestamp\";s:9:\"280540800\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:38:\"Christie Brinkley, Swimsuit Issue 1979\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:5:{i:0;s:6:\"Female\";i:1;s:8:\"Portrait\";i:2;s:9:\"Published\";i:3;s:14:\"Swimsuit Model\";i:4;s:23:\"Used 10/21/2013 SI Book\";}}}'),(24914,5253,'dt-img-hide-title','0'),(24915,5255,'_wp_attached_file','2018/02/Stop-Wishing-For-Someone-Elses-Body…Make-Yours-The-Best-It-Can-Be.png'),(24916,5255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:776;s:6:\"height\";i:388;s:4:\"file\";s:79:\"2018/02/Stop-Wishing-For-Someone-Elses-Body…Make-Yours-The-Best-It-Can-Be.png\";s:8:\"filesize\";i:508799;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24917,5281,'_wp_attached_file','2018/02/Start-Rite-Shoes-1.jpg'),(24918,5281,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1053;s:6:\"height\";i:667;s:4:\"file\";s:30:\"2018/02/Start-Rite-Shoes-1.jpg\";s:8:\"filesize\";i:502709;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24919,5309,'_wp_attached_file','2018/02/Is-there-a-right-shoe-for-you_-1.png'),(24920,5309,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:776;s:6:\"height\";i:388;s:4:\"file\";s:44:\"2018/02/Is-there-a-right-shoe-for-you_-1.png\";s:8:\"filesize\";i:481878;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24921,5325,'_wp_attached_file','2018/02/Is-Stress-A-Bad-Thing_-Biomechanics-Coach-Biomechanics-Education-1.png'),(24922,5325,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:776;s:6:\"height\";i:388;s:4:\"file\";s:78:\"2018/02/Is-Stress-A-Bad-Thing_-Biomechanics-Coach-Biomechanics-Education-1.png\";s:8:\"filesize\";i:425742;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24923,5325,'dt-img-hide-title','0'),(24924,5329,'_wp_attached_file','2018/02/Is-Stress-A-Bad-Thing_-Biomechanics-Coach-Biomechanics-Education-Personal-Trainers-1.png'),(24925,5329,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:96:\"2018/02/Is-Stress-A-Bad-Thing_-Biomechanics-Coach-Biomechanics-Education-Personal-Trainers-1.png\";s:8:\"filesize\";i:974337;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24926,5363,'_wp_attached_file','2018/02/Is-stress-a-bad-thing-1-1.jpg'),(24927,5363,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1281;s:4:\"file\";s:37:\"2018/02/Is-stress-a-bad-thing-1-1.jpg\";s:8:\"filesize\";i:444214;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D800\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24928,5413,'_wp_attached_file','2018/03/Quadriceps-Dominance-0-30-degrees-knee-flexion-1.png'),(24929,5413,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:416;s:6:\"height\";i:418;s:4:\"file\";s:60:\"2018/03/Quadriceps-Dominance-0-30-degrees-knee-flexion-1.png\";s:8:\"filesize\";i:67734;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24930,5415,'_wp_attached_file','2018/03/Quadriceps-Dominance-30-90-degrees-knee-flexion-1.png'),(24931,5415,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:404;s:6:\"height\";i:416;s:4:\"file\";s:61:\"2018/03/Quadriceps-Dominance-30-90-degrees-knee-flexion-1.png\";s:8:\"filesize\";i:94519;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24932,5417,'_wp_attached_file','2018/03/Quadriceps-Dominance-Test-1.png'),(24933,5417,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:279;s:6:\"height\";i:503;s:4:\"file\";s:39:\"2018/03/Quadriceps-Dominance-Test-1.png\";s:8:\"filesize\";i:209637;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24934,6309,'_wp_attached_file','2018/03/Are-your-clients-at-risk-of-knee-injury_-Do-the-quadriceps-dominant-test-and-find-out-1.png'),(24935,6309,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:99:\"2018/03/Are-your-clients-at-risk-of-knee-injury_-Do-the-quadriceps-dominant-test-and-find-out-1.png\";s:8:\"filesize\";i:1236767;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24936,6342,'_wp_attached_file','2018/03/Discover-1-Simple-Shoulder-Exercise-That-Could-Help-Reduce-Back-Pain-Improve-Movement-1.png'),(24937,6342,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:99:\"2018/03/Discover-1-Simple-Shoulder-Exercise-That-Could-Help-Reduce-Back-Pain-Improve-Movement-1.png\";s:8:\"filesize\";i:1031366;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(24938,38588,'_wp_attachment_context','custom-header'),(24939,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(24940,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(24941,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(24942,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(24943,192,'dt-img-hide-title','0'),(24944,194,'dt-img-hide-title','0'),(24945,205,'dt-img-hide-title','0'),(24946,206,'dt-img-hide-title','0'),(24947,208,'dt-img-hide-title','0'),(24948,247,'dt-img-hide-title','0'),(24949,248,'_wp_attachment_context','site-icon'),(24950,248,'dt-img-hide-title','0'),(24951,265,'dt-img-hide-title','0'),(24952,283,'dt-img-hide-title','0'),(24953,284,'dt-img-hide-title','0'),(24954,285,'dt-img-hide-title','0'),(24955,287,'dt-img-hide-title','0'),(24956,290,'dt-img-hide-title','0'),(24957,291,'dt-img-hide-title','0'),(24958,294,'dt-img-hide-title','0'),(24959,297,'dt-img-hide-title','0'),(24960,333,'dt-img-hide-title','0'),(24961,341,'dt-img-hide-title','0'),(24962,407,'dt-img-hide-title','0'),(24963,458,'dt-img-hide-title','0'),(24964,495,'dt-img-hide-title','0'),(24965,497,'dt-img-hide-title','0'),(24966,505,'dt-img-hide-title','0'),(24967,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(24968,210,'dt-img-link',''),(24969,210,'dt-img-hide-title','0'),(24970,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(24971,221,'dt-img-link',''),(24972,221,'dt-img-hide-title','0'),(24973,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(24974,224,'dt-img-link',''),(24975,224,'dt-img-hide-title','0'),(24976,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(24977,228,'dt-img-link',''),(24978,228,'dt-img-hide-title','0'),(24979,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(24980,230,'dt-img-link',''),(24981,230,'dt-img-hide-title','0'),(24982,237,'dt-img-hide-title','0'),(24983,237,'dt-img-link',''),(24984,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(24985,557,'dt-img-hide-title','0'),(24986,559,'dt-img-hide-title','0'),(24987,562,'dt-img-hide-title','0'),(24988,569,'dt-img-hide-title','0'),(24989,592,'dt-img-hide-title','0'),(24990,596,'dt-img-hide-title','0'),(24991,617,'dt-img-hide-title','0'),(24992,620,'dt-img-hide-title','0'),(24993,621,'dt-img-hide-title','0'),(24994,623,'dt-img-hide-title','0'),(24995,624,'dt-img-hide-title','0'),(24996,644,'dt-img-hide-title','0'),(24997,648,'dt-img-hide-title','0'),(24998,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(24999,824,'dt-img-link',''),(25000,824,'dt-img-hide-title','0'),(25001,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(25002,825,'dt-img-link',''),(25003,825,'dt-img-hide-title','0'),(25004,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(25005,828,'dt-img-link',''),(25006,828,'dt-img-hide-title','0'),(25007,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(25008,1450,'dt-img-link',''),(25009,1450,'dt-img-hide-title','0'),(25010,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(25011,1451,'dt-img-link',''),(25012,1451,'dt-img-hide-title','0'),(25013,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(25014,1452,'dt-img-link',''),(25015,1452,'dt-img-hide-title','0'),(25016,652,'dt-img-hide-title','0'),(25017,655,'dt-img-hide-title','0'),(25018,675,'dt-img-hide-title','0'),(25019,678,'dt-img-hide-title','0'),(25020,683,'dt-img-hide-title','0'),(25021,703,'dt-img-hide-title','0'),(25022,706,'dt-img-hide-title','0'),(25023,709,'dt-img-hide-title','0'),(25024,712,'dt-img-hide-title','0'),(25025,713,'dt-img-hide-title','0'),(25026,714,'dt-img-hide-title','0'),(25027,715,'dt-img-hide-title','0'),(25028,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(25029,722,'dt-img-hide-title','0'),(25030,735,'dt-img-hide-title','0'),(25031,759,'dt-img-hide-title','0'),(25032,762,'dt-img-hide-title','0'),(25033,766,'dt-img-hide-title','0'),(25034,770,'dt-img-hide-title','0'),(25035,804,'dt-img-hide-title','0'),(25036,814,'dt-img-hide-title','0'),(25037,827,'dt-img-hide-title','0'),(25038,830,'dt-img-hide-title','0'),(25039,854,'dt-img-hide-title','0'),(25040,857,'dt-img-hide-title','0'),(25041,874,'dt-img-hide-title','0'),(25042,937,'dt-img-hide-title','0'),(25043,941,'dt-img-hide-title','0'),(25044,955,'dt-img-hide-title','0'),(25045,969,'_wp_attachment_image_alt','imove Freely'),(25046,969,'dt-img-hide-title','0'),(25047,1001,'dt-img-hide-title','0'),(25048,1015,'dt-img-hide-title','0'),(25049,1018,'dt-img-hide-title','0'),(25050,1020,'dt-img-hide-title','0'),(25051,1021,'dt-img-hide-title','0'),(25052,1024,'dt-img-hide-title','0'),(25053,1027,'dt-img-hide-title','0'),(25054,1030,'dt-img-hide-title','0'),(25055,1035,'dt-img-hide-title','0'),(25056,1039,'dt-img-hide-title','0'),(25057,1045,'dt-img-hide-title','0'),(25058,1051,'dt-img-hide-title','0'),(25059,1052,'dt-img-hide-title','0'),(25060,1055,'dt-img-hide-title','0'),(25061,1057,'dt-img-hide-title','0'),(25062,1061,'dt-img-hide-title','0'),(25063,1065,'dt-img-hide-title','0'),(25064,1068,'dt-img-hide-title','0'),(25065,1073,'dt-img-hide-title','0'),(25066,1078,'dt-img-hide-title','0'),(25067,1084,'dt-img-hide-title','0'),(25068,1088,'dt-img-hide-title','0'),(25069,1094,'dt-img-hide-title','0'),(25070,1096,'dt-img-hide-title','0'),(25071,1097,'dt-img-hide-title','0'),(25072,1099,'dt-img-hide-title','0'),(25073,1106,'dt-img-hide-title','0'),(25074,1110,'dt-img-hide-title','0'),(25075,1112,'dt-img-hide-title','0'),(25076,1116,'dt-img-hide-title','0'),(25077,1125,'dt-img-hide-title','0'),(25078,1129,'dt-img-hide-title','0'),(25079,1145,'dt-img-hide-title','0'),(25080,1167,'dt-img-hide-title','0'),(25081,1184,'dt-img-hide-title','0'),(25082,1186,'dt-img-hide-title','0'),(25083,1187,'dt-img-hide-title','0'),(25084,1189,'dt-img-hide-title','0'),(25085,1194,'dt-img-hide-title','0'),(25086,1197,'dt-img-hide-title','0'),(25087,1201,'dt-img-hide-title','0'),(25088,1202,'dt-img-hide-title','0'),(25089,1203,'dt-img-hide-title','0'),(25090,1204,'dt-img-hide-title','0'),(25091,1205,'dt-img-hide-title','0'),(25092,1206,'dt-img-hide-title','0'),(25093,1207,'dt-img-hide-title','0'),(25094,1209,'dt-img-hide-title','0'),(25095,1210,'dt-img-hide-title','0'),(25096,1211,'dt-img-hide-title','0'),(25097,1212,'dt-img-hide-title','0'),(25098,1213,'dt-img-hide-title','0'),(25099,1214,'dt-img-hide-title','0'),(25100,1220,'dt-img-hide-title','0'),(25101,1223,'dt-img-hide-title','0'),(25102,1226,'dt-img-hide-title','0'),(25103,1228,'dt-img-hide-title','0'),(25104,1232,'dt-img-hide-title','0'),(25105,1235,'dt-img-hide-title','0'),(25106,1239,'dt-img-hide-title','0'),(25107,1242,'dt-img-hide-title','0'),(25108,1246,'dt-img-hide-title','0'),(25109,1256,'dt-img-hide-title','0'),(25110,1262,'dt-img-hide-title','0'),(25111,1265,'dt-img-hide-title','0'),(25112,1269,'dt-img-hide-title','0'),(25113,1275,'dt-img-hide-title','0'),(25114,1279,'dt-img-hide-title','0'),(25115,1312,'dt-img-hide-title','0'),(25116,1316,'dt-img-hide-title','0'),(25117,1320,'dt-img-hide-title','0'),(25118,1326,'dt-img-hide-title','0'),(25119,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(25120,1334,'dt-img-hide-title','0'),(25121,1338,'dt-img-hide-title','0'),(25122,1339,'dt-img-hide-title','0'),(25123,1343,'dt-img-hide-title','0'),(25124,1347,'dt-img-hide-title','0'),(25125,1351,'dt-img-hide-title','0'),(25126,1354,'dt-img-hide-title','0'),(25127,1357,'dt-img-hide-title','0'),(25128,1359,'dt-img-hide-title','0'),(25129,1362,'dt-img-hide-title','0'),(25130,1366,'dt-img-hide-title','0'),(25131,1379,'dt-img-hide-title','0'),(25132,1398,'dt-img-hide-title','0'),(25133,1403,'dt-img-hide-title','0'),(25134,1406,'dt-img-hide-title','0'),(25135,1410,'dt-img-hide-title','0'),(25136,1413,'dt-img-hide-title','0'),(25137,1416,'dt-img-hide-title','0'),(25138,1419,'dt-img-hide-title','0'),(25139,1423,'dt-img-hide-title','0'),(25140,1429,'dt-img-hide-title','0'),(25141,1430,'dt-img-hide-title','0'),(25142,1433,'dt-img-hide-title','0'),(25143,1463,'dt-img-hide-title','0'),(25144,1463,'dt-img-hide-title','0'),(25145,1463,'dt-img-hide-title','0'),(25146,1463,'dt-img-hide-title','0'),(25147,1463,'dt-img-hide-title','0'),(25148,1468,'dt-img-hide-title','0'),(25149,2229,'dt-img-hide-title','0'),(25150,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(25151,2230,'dt-img-hide-title','0'),(25152,2231,'dt-img-hide-title','0'),(25153,2232,'dt-img-hide-title','0'),(25154,2233,'dt-img-hide-title','0'),(25155,2234,'dt-img-hide-title','0'),(25156,2235,'dt-img-hide-title','0'),(25157,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(25158,1474,'dt-img-hide-title','0'),(25159,1475,'dt-img-hide-title','0'),(25160,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(25161,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(25162,1476,'dt-img-hide-title','0'),(25163,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(25164,1478,'dt-img-hide-title','0'),(25165,1479,'dt-img-hide-title','0'),(25166,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(25167,1489,'dt-img-hide-title','0'),(25168,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(25169,1500,'dt-img-hide-title','0'),(25170,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(25171,1501,'dt-img-hide-title','0'),(25172,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(25173,1504,'dt-img-hide-title','0'),(25174,1508,'_wp_attachment_image_alt',''),(25175,1508,'dt-img-hide-title','0'),(25176,1508,'dt-video-url',''),(25177,1508,'dt-img-link',''),(25178,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(25179,1510,'dt-img-hide-title','0'),(25180,1514,'dt-img-hide-title','0'),(25181,2236,'dt-img-hide-title','0'),(25182,2237,'dt-img-hide-title','0'),(25183,2238,'dt-img-hide-title','0'),(25184,2239,'dt-img-hide-title','0'),(25185,2247,'dt-img-hide-title','0'),(25186,2248,'dt-img-hide-title','0'),(25187,2249,'dt-img-hide-title','0'),(25188,1533,'dt-img-hide-title','0'),(25189,1535,'dt-img-hide-title','0'),(25190,1536,'dt-img-hide-title','0'),(25191,1540,'dt-img-hide-title','0'),(25192,1546,'dt-img-hide-title','0'),(25193,1556,'dt-img-hide-title','0'),(25194,1566,'dt-img-hide-title','0'),(25195,1595,'dt-img-hide-title','0'),(25196,1608,'dt-video-url',''),(25197,1608,'dt-img-link',''),(25198,1608,'dt-img-hide-title','0'),(25199,1825,'dt-img-hide-title','0'),(25200,2250,'dt-img-hide-title','0'),(25201,2251,'dt-img-hide-title','0'),(25202,2252,'dt-img-hide-title','0'),(25203,2253,'dt-img-hide-title','0'),(25204,2254,'dt-img-hide-title','0'),(25205,2255,'dt-img-hide-title','0'),(25206,2256,'dt-img-hide-title','0'),(25207,2257,'dt-img-hide-title','0'),(25208,2258,'dt-img-hide-title','0'),(25209,2259,'dt-img-hide-title','0'),(25210,1646,'dt-img-hide-title','0'),(25211,1650,'dt-img-hide-title','0'),(25215,2241,'dt-img-hide-title','0'),(25216,2242,'dt-img-hide-title','0'),(25217,2243,'dt-img-hide-title','0'),(25218,2244,'dt-img-hide-title','0'),(25219,2245,'dt-img-hide-title','0'),(25220,2246,'dt-img-hide-title','0'),(25221,2260,'dt-img-hide-title','0'),(25222,2261,'dt-img-hide-title','0'),(25223,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(25224,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(25225,2262,'dt-img-hide-title','0'),(25226,2263,'dt-img-hide-title','0'),(25227,2264,'dt-img-hide-title','0'),(25228,2265,'dt-img-hide-title','0'),(25229,2266,'dt-img-hide-title','0'),(25230,2267,'dt-img-hide-title','0'),(25231,2268,'dt-img-hide-title','0'),(25232,2269,'dt-img-hide-title','0'),(25233,2270,'dt-img-hide-title','0'),(25234,1658,'dt-img-hide-title','0'),(25235,1660,'dt-img-hide-title','0'),(25236,1667,'dt-img-hide-title','0'),(25237,1668,'dt-img-hide-title','0'),(25238,1669,'dt-img-hide-title','0'),(25239,1674,'dt-img-hide-title','0'),(25240,2102,'dt-img-hide-title','0'),(25241,2103,'dt-img-hide-title','0'),(25242,2104,'dt-img-hide-title','0'),(25243,2105,'dt-img-hide-title','0'),(25244,2106,'dt-img-hide-title','0'),(25245,2107,'dt-img-hide-title','0'),(25246,2108,'dt-img-hide-title','0'),(25247,2109,'dt-img-hide-title','0'),(25248,2110,'dt-img-hide-title','0'),(25249,2111,'dt-img-hide-title','0'),(25250,2112,'dt-img-hide-title','0'),(25251,2113,'dt-img-hide-title','0'),(25252,2114,'dt-img-hide-title','0'),(25253,2115,'dt-img-hide-title','0'),(25254,1675,'dt-img-hide-title','0'),(25255,1699,'dt-img-hide-title','0'),(25256,1700,'dt-img-hide-title','0'),(25257,1701,'dt-img-hide-title','0'),(25258,1702,'dt-img-hide-title','0'),(25259,2217,'dt-img-hide-title','0'),(25260,2222,'dt-img-hide-title','0'),(25261,2271,'dt-img-hide-title','0'),(25262,2289,'dt-img-hide-title','0'),(25263,2291,'dt-img-hide-title','0'),(25264,2293,'dt-img-hide-title','0'),(25265,2295,'dt-img-hide-title','0'),(25266,2297,'dt-img-hide-title','0'),(25267,2299,'dt-img-hide-title','0'),(25268,2301,'dt-img-hide-title','0'),(25269,2303,'dt-img-hide-title','0'),(25270,2305,'dt-img-hide-title','0'),(25271,2307,'dt-img-hide-title','0'),(25272,2405,'dt-img-hide-title','0'),(25273,2405,'_wp_attachment_image_alt','iMoveFreely® Exercises To Try At Home'),(25274,2409,'dt-img-hide-title','0'),(25275,2409,'_wp_attachment_image_alt','Don’t Listen To Us….Listen To Them!'),(25276,2410,'dt-img-hide-title','0'),(25277,2410,'_wp_attachment_image_alt','Presentations at The Movement Convention'),(25278,2411,'dt-img-hide-title','0'),(25279,2411,'_wp_attachment_image_alt','Just For Fun'),(25280,2413,'dt-img-hide-title','0'),(25281,2413,'_wp_attachment_image_alt','We all Squat Differently?'),(25282,2415,'dt-img-hide-title','0'),(25283,2415,'_wp_attachment_image_alt','What Do Our Workshops Look Like?'),(25284,2534,'dt-img-hide-title','0'),(25285,2535,'dt-img-hide-title','0'),(25286,2537,'dt-img-hide-title','0'),(25287,2538,'dt-img-hide-title','0'),(25288,2539,'dt-img-hide-title','0'),(25289,2540,'dt-img-hide-title','0'),(25290,2541,'dt-img-hide-title','0'),(25291,2548,'dt-img-hide-title','0'),(25292,2549,'dt-img-hide-title','0'),(25293,2550,'dt-img-hide-title','0'),(25294,2551,'dt-img-hide-title','0'),(25295,2552,'dt-img-hide-title','0'),(25296,2611,'dt-img-hide-title','0'),(25297,2612,'dt-img-hide-title','0'),(25298,2613,'dt-img-hide-title','0'),(25299,2614,'dt-img-hide-title','0'),(25300,2615,'dt-img-hide-title','0'),(25301,2655,'dt-img-hide-title','0'),(25302,2656,'dt-img-hide-title','0'),(25303,2657,'dt-img-hide-title','0'),(25304,2658,'dt-img-hide-title','0'),(25305,2721,'dt-img-hide-title','0'),(25306,2722,'dt-img-hide-title','0'),(25307,2723,'dt-img-hide-title','0'),(25308,2724,'dt-img-hide-title','0'),(25309,2725,'dt-img-hide-title','0'),(25310,2726,'dt-img-hide-title','0'),(25311,2727,'dt-img-hide-title','0'),(25312,2728,'dt-img-hide-title','0'),(25313,2729,'dt-img-hide-title','0'),(25314,2756,'dt-img-hide-title','0'),(25315,2759,'dt-img-hide-title','0'),(25316,2781,'dt-img-hide-title','0'),(25317,2786,'dt-img-hide-title','0'),(25318,2787,'dt-img-hide-title','0'),(25319,2788,'dt-img-hide-title','0'),(25320,2788,'_wp_attachment_image_alt','the effect of quadratus lumborum muscle'),(25321,2810,'dt-img-hide-title','0'),(25322,2811,'dt-img-hide-title','0'),(25323,2812,'dt-img-hide-title','0'),(25324,2813,'dt-img-hide-title','0'),(25325,2814,'dt-img-hide-title','0'),(25326,2815,'dt-img-hide-title','0'),(25327,2816,'dt-img-hide-title','0'),(25328,2817,'dt-img-hide-title','0'),(25329,2818,'dt-img-hide-title','0'),(25330,2837,'dt-img-hide-title','0'),(25331,2846,'dt-img-hide-title','0'),(25332,2847,'dt-img-hide-title','0'),(25333,2856,'dt-img-hide-title','0'),(25334,2857,'dt-img-hide-title','0'),(25335,2858,'dt-img-hide-title','0'),(25336,2859,'dt-img-hide-title','0'),(25337,2860,'dt-img-hide-title','0'),(25338,2861,'dt-img-hide-title','0'),(25339,2862,'dt-img-hide-title','0'),(25340,2868,'dt-img-hide-title','0'),(25341,2869,'dt-img-hide-title','0'),(25342,2870,'dt-img-hide-title','0'),(25343,2871,'dt-img-hide-title','0'),(25344,2875,'dt-img-hide-title','0'),(25345,2876,'dt-img-hide-title','0'),(25346,2877,'dt-img-hide-title','0'),(25347,2878,'dt-img-hide-title','0'),(25348,2879,'dt-img-hide-title','0'),(25349,2894,'dt-img-hide-title','0'),(25350,2894,'dt-video-url',''),(25351,2894,'dt-img-link',''),(25352,2896,'dt-img-hide-title','0'),(25353,2896,'dt-video-url',''),(25354,2896,'dt-img-link',''),(25355,2960,'dt-img-hide-title','0'),(25356,2961,'dt-img-hide-title','0'),(25357,2962,'dt-img-hide-title','0'),(25358,2963,'dt-img-hide-title','0'),(25359,2964,'dt-img-hide-title','0'),(25360,2965,'dt-img-hide-title','0'),(25361,2966,'dt-img-hide-title','0'),(25362,2967,'dt-img-hide-title','0'),(25363,2968,'dt-img-hide-title','0'),(25364,2969,'dt-img-hide-title','0'),(25365,2976,'dt-img-hide-title','0'),(25366,2986,'dt-img-hide-title','0'),(25367,2999,'dt-img-hide-title','0'),(25368,3002,'dt-img-hide-title','0'),(25369,3003,'dt-img-hide-title','0'),(25370,3004,'dt-img-hide-title','0'),(25371,3005,'dt-img-hide-title','0'),(25372,3006,'dt-img-hide-title','0'),(25373,3014,'dt-img-hide-title','0'),(25374,3015,'dt-img-hide-title','0'),(25375,3016,'dt-img-hide-title','0'),(25376,3034,'dt-img-hide-title','0'),(25377,3173,'dt-img-hide-title','0'),(25378,3174,'dt-img-hide-title','0'),(25379,3179,'dt-img-hide-title','0'),(25380,3180,'dt-img-hide-title','0'),(25381,3183,'dt-img-hide-title','0'),(25382,3188,'dt-img-hide-title','0'),(25383,3191,'dt-img-hide-title','0'),(25384,3200,'dt-img-hide-title','0'),(25385,3201,'dt-img-hide-title','0'),(25386,3202,'dt-img-hide-title','0'),(25387,3203,'dt-img-hide-title','0'),(25388,3205,'dt-img-hide-title','0'),(25389,3206,'dt-img-hide-title','0'),(25390,3207,'dt-img-hide-title','0'),(25391,3208,'dt-img-hide-title','0'),(25392,3213,'dt-img-hide-title','0'),(25393,3214,'dt-img-hide-title','0'),(25394,3228,'dt-img-hide-title','0'),(25395,3229,'dt-img-hide-title','0'),(25396,3230,'dt-img-hide-title','0'),(25397,3234,'dt-img-hide-title','0'),(25398,3242,'dt-img-hide-title','0'),(25399,3243,'dt-img-hide-title','0'),(25400,3325,'dt-img-hide-title','0'),(25401,3479,'dt-img-hide-title','0'),(25402,3496,'dt-img-hide-title','0'),(25403,3496,'_wp_attachment_image_alt','Rachel France - profile image'),(25404,3497,'dt-img-hide-title','0'),(25405,3498,'dt-img-hide-title','0'),(25406,3499,'dt-img-hide-title','0'),(25407,3502,'dt-img-hide-title','0'),(25408,3504,'dt-img-hide-title','0'),(25409,3505,'dt-img-hide-title','0'),(25410,3506,'dt-img-hide-title','0'),(25411,3507,'dt-img-hide-title','0'),(25412,3511,'dt-img-hide-title','0'),(25413,3528,'dt-img-hide-title','0'),(25414,3534,'dt-video-url',''),(25415,3534,'dt-img-link',''),(25416,3534,'dt-img-hide-title','0'),(25417,3535,'dt-video-url',''),(25418,3535,'dt-img-link',''),(25419,3535,'dt-img-hide-title','0'),(25420,3535,'_wp_attachment_image_alt','Tachel France - biomechanics education'),(25421,3536,'dt-video-url',''),(25422,3536,'dt-img-link',''),(25423,3536,'dt-img-hide-title','0'),(25424,3537,'dt-video-url',''),(25425,3537,'dt-img-link',''),(25426,3537,'dt-img-hide-title','0'),(25427,3551,'dt-img-hide-title','0'),(25428,3629,'dt-img-hide-title','0'),(25429,3630,'dt-img-hide-title','0'),(25430,3631,'dt-img-hide-title','0'),(25431,3632,'dt-img-hide-title','0'),(25432,3633,'dt-img-hide-title','0'),(25433,3634,'dt-img-hide-title','0'),(25434,3635,'dt-img-hide-title','0'),(25435,3636,'dt-img-hide-title','0'),(25436,3655,'dt-video-url',''),(25437,3655,'dt-img-link',''),(25438,3655,'dt-img-hide-title','0'),(25439,3690,'dt-img-hide-title','0'),(25440,3692,'dt-img-hide-title','0'),(25441,3693,'dt-img-hide-title','0'),(25442,3694,'dt-img-hide-title','0'),(25443,3695,'dt-img-hide-title','0'),(25444,3699,'dt-img-hide-title','0'),(25445,3784,'dt-img-hide-title','0'),(25446,3789,'dt-img-hide-title','0'),(25447,3801,'dt-img-hide-title','0'),(25448,3803,'dt-img-hide-title','0'),(25449,4107,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics'),(25450,4107,'dt-img-hide-title','0'),(25451,4107,'_wp_old_slug','what-exactly-is-intrinsic-biomechanics'),(25452,4108,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics-2'),(25453,4108,'dt-img-hide-title','0'),(25454,4399,'_wp_attachment_image_alt','special-fast-track-3-day-pelvic-spine-biomechanics-workshop'),(25455,4399,'dt-img-hide-title','0'),(25456,4601,'dt-img-hide-title','0'),(25457,4705,'_wp_attachment_image_alt','imovefreely-instructor - biomechanics education'),(25458,4705,'dt-img-hide-title','0'),(25459,4707,'dt-img-hide-title','0'),(25460,4709,'_wp_attachment_image_alt','intrinsic-biomechanics-taster'),(25461,4709,'dt-img-hide-title','0'),(25462,4715,'_wp_attachment_image_alt','low-back-health-workshop - biomechanics education'),(25463,4715,'dt-img-hide-title','0'),(25464,4717,'_wp_attachment_image_alt','knee-foot-biomechanics-2-day-workshop'),(25465,4717,'dt-img-hide-title','0'),(25466,4733,'_wp_attachment_image_alt','iba-discovery-day-workshop'),(25467,4733,'dt-img-hide-title','0'),(25468,5135,'_wp_attachment_image_alt','Biomechanics Coach & Diploma Workshop Series'),(25469,5135,'dt-img-hide-title','0'),(25470,5139,'_wp_attachment_image_alt','Low Back Health Workshop'),(25471,5139,'dt-img-hide-title','0'),(25472,5143,'_wp_attachment_image_alt','Spine Biomechanics 2 Day Workshop'),(25473,5143,'dt-img-hide-title','0'),(25474,5149,'_wp_attachment_image_alt','Pelvic Biomechanics 2 Day Workshop'),(25475,5149,'dt-img-hide-title','0'),(25476,5151,'_wp_attachment_image_alt','Shoulder Biomechanics 2 Day Workshop'),(25477,5151,'dt-img-hide-title','0'),(25478,5155,'dt-img-hide-title','0'),(25479,5155,'dt-video-url',''),(25480,5155,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split'),(25481,5253,'dt-img-hide-title','0'),(25482,5325,'dt-img-hide-title','0'),(25483,6395,'_wp_attached_file','2018/03/Side-Plank-Biomechanics-Education-1.jpg'),(25484,6395,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1368;s:6:\"height\";i:912;s:4:\"file\";s:47:\"2018/03/Side-Plank-Biomechanics-Education-1.jpg\";s:8:\"filesize\";i:619535;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469186772\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(25485,6395,'dt-img-hide-title','0'),(25486,6409,'_wp_attached_file','2018/03/depositphotos_116037318-stock-photo-woman-exercising-in-gym-1.jpg'),(25487,6409,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1023;s:6:\"height\";i:683;s:4:\"file\";s:73:\"2018/03/depositphotos_116037318-stock-photo-woman-exercising-in-gym-1.jpg\";s:8:\"filesize\";i:72907;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25488,6410,'_wp_attached_file','2018/03/Rachel-France-Listening-to-Dan-John-Never-Let-Go-1.jpg'),(25489,6410,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:1200;s:4:\"file\";s:62:\"2018/03/Rachel-France-Listening-to-Dan-John-Never-Let-Go-1.jpg\";s:8:\"filesize\";i:119316;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(25490,6410,'_wp_attachment_image_alt','Rachel France - Listening to Dan John, Never Let Go'),(25491,6410,'dt-img-hide-title','0'),(25492,6415,'_wp_attached_file','2018/03/Walking-1.png'),(25493,6415,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:21:\"2018/03/Walking-1.png\";s:8:\"filesize\";i:1631819;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25494,6417,'_wp_attached_file','2018/03/Why-I-Believe-Best-Selling-Author-Strength-Guru-Dan-John-Was-Wrong.png'),(25495,6417,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:78:\"2018/03/Why-I-Believe-Best-Selling-Author-Strength-Guru-Dan-John-Was-Wrong.png\";s:8:\"filesize\";i:1005872;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25496,6453,'_wp_attached_file','2018/03/3-Steps-To-Learn-Anatomy-Physiology-2.png'),(25497,6453,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:49:\"2018/03/3-Steps-To-Learn-Anatomy-Physiology-2.png\";s:8:\"filesize\";i:1582712;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25498,6456,'_wp_attached_file','2018/03/3-Steps-To-Learn-Anatomy-Physiology-1-1.png'),(25499,6456,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:51:\"2018/03/3-Steps-To-Learn-Anatomy-Physiology-1-1.png\";s:8:\"filesize\";i:983162;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25500,6472,'_wp_attached_file','2018/03/The-Cause-Treatment-Prevention-Of-Adductor-Muscle-Tears-In-Sports-Players-Fitness-Clients-1.jpg'),(25501,6472,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1713;s:6:\"height\";i:1055;s:4:\"file\";s:103:\"2018/03/The-Cause-Treatment-Prevention-Of-Adductor-Muscle-Tears-In-Sports-Players-Fitness-Clients-1.jpg\";s:8:\"filesize\";i:529138;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS-1D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1350838241\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"400\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(25502,6681,'_wp_attached_file','2018/04/Why-personal-trainers-need-to-get-over-their-issues-with-group-exercise-1.png'),(25503,6681,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:85:\"2018/04/Why-personal-trainers-need-to-get-over-their-issues-with-group-exercise-1.png\";s:8:\"filesize\";i:1255742;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25504,6682,'_wp_attached_file','2018/04/Rachel-France-Group-Exercise-1.jpg'),(25505,6682,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:638;s:4:\"file\";s:42:\"2018/04/Rachel-France-Group-Exercise-1.jpg\";s:8:\"filesize\";i:76699;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25506,6682,'_wp_attachment_image_alt','Rachel France smiling - Group Exercise'),(25507,6682,'dt-img-hide-title','0'),(25508,6683,'_wp_attached_file','2018/04/Rachel-France-Biomechanics-Education-Group-Exercise-1-scaled.jpg'),(25509,6683,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:72:\"2018/04/Rachel-France-Biomechanics-Education-Group-Exercise-1-scaled.jpg\";s:8:\"filesize\";i:676465;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:57:\"Rachel-France-Biomechanics-Education-Group-Exercise-1.jpg\";}'),(25510,6683,'_wp_attachment_image_alt','Rachel France - Biomechanics Education - Group Exercise'),(25511,6683,'dt-img-hide-title','0'),(25512,6724,'_wp_attached_file','2018/04/Paradigm-Shift-1.png'),(25513,6724,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:28:\"2018/04/Paradigm-Shift-1.png\";s:8:\"filesize\";i:978226;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25514,6724,'dt-img-hide-title','0'),(25515,6771,'_wp_attached_file','2018/04/4-Tips-To-Better-Serving-Your-Clients-Through-Referrals-1.png'),(25516,6771,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:69:\"2018/04/4-Tips-To-Better-Serving-Your-Clients-Through-Referrals-1.png\";s:8:\"filesize\";i:1068163;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25517,6846,'_wp_attached_file','2018/04/Personal-Trainers-Exercise-Prescription-Tired-vs-Better-Biomechanics-Coaching-1.png'),(25518,6846,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:91:\"2018/04/Personal-Trainers-Exercise-Prescription-Tired-vs-Better-Biomechanics-Coaching-1.png\";s:8:\"filesize\";i:866988;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25519,7025,'_wp_attached_file','2018/05/What-Is-Your-Personal-Training-Guarantee_-Biomechanics-Coaching-1.png'),(25520,7025,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:77:\"2018/05/What-Is-Your-Personal-Training-Guarantee_-Biomechanics-Coaching-1.png\";s:8:\"filesize\";i:942285;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25521,7099,'_wp_attached_file','2018/05/How-intelligent-are-you_-And-does-it-actually-matter_-Biomechanics-Coach-Personal-Trainer-1.png'),(25522,7099,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:103:\"2018/05/How-intelligent-are-you_-And-does-it-actually-matter_-Biomechanics-Coach-Personal-Trainer-1.png\";s:8:\"filesize\";i:1502595;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25523,7191,'_wp_attached_file','2018/05/Fundamental-movement-principles-1.pptx'),(25524,7191,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:100503299;}'),(25525,7229,'_wp_attached_file','2018/05/Embrace-the-Imperfections-why-personal-trainers-need-to-treat-everyone-as-individuals-1.png'),(25526,7229,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:99:\"2018/05/Embrace-the-Imperfections-why-personal-trainers-need-to-treat-everyone-as-individuals-1.png\";s:8:\"filesize\";i:1455573;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25527,7303,'_wp_attached_file','2018/06/Are-All-Biomechanical-Studies-Flawed_-And-Would-You-Like-To-Squat-Better_-Biomechanics-Coaching-1.png'),(25528,7303,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:109:\"2018/06/Are-All-Biomechanical-Studies-Flawed_-And-Would-You-Like-To-Squat-Better_-Biomechanics-Coaching-1.png\";s:8:\"filesize\";i:917980;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25529,7303,'dt-img-hide-title','0'),(25530,7476,'_wp_attached_file','2018/06/Functional-Movement-Tests-vs-Single-Joint-Assessment-A-personal-trainers-guide-1.png'),(25531,7476,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:92:\"2018/06/Functional-Movement-Tests-vs-Single-Joint-Assessment-A-personal-trainers-guide-1.png\";s:8:\"filesize\";i:1187539;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25532,7523,'_wp_attached_file','2018/06/How-To-Squat-Ass-To-Grass-Project-Squat-Part-1-1.png'),(25533,7523,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:60:\"2018/06/How-To-Squat-Ass-To-Grass-Project-Squat-Part-1-1.png\";s:8:\"filesize\";i:420394;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25534,7527,'_wp_attached_file','2018/06/Biomechanics-Coaching-How-To-Squat-Ass-To-Grass-Project-Squat-1.jpg'),(25535,7527,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1818;s:6:\"height\";i:1818;s:4:\"file\";s:75:\"2018/06/Biomechanics-Coaching-How-To-Squat-Ass-To-Grass-Project-Squat-1.jpg\";s:8:\"filesize\";i:356886;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25536,7592,'_wp_attached_file','2018/06/Project-Squat-Part-2-How-To-Test-For-And-Improve-Pelvic-Function-1.png'),(25537,7592,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:78:\"2018/06/Project-Squat-Part-2-How-To-Test-For-And-Improve-Pelvic-Function-1.png\";s:8:\"filesize\";i:921675;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25538,7661,'_wp_attached_file','2018/07/Project-Squat-Part-3-How-To-Test-For-And-Improve-Spine-Dysfunction-1.png'),(25539,7661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:80:\"2018/07/Project-Squat-Part-3-How-To-Test-For-And-Improve-Spine-Dysfunction-1.png\";s:8:\"filesize\";i:641478;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25540,7665,'_wp_attached_file','2018/07/Ranges-of-movement-in-Lumbar-spine-1.png'),(25541,7665,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1046;s:6:\"height\";i:506;s:4:\"file\";s:48:\"2018/07/Ranges-of-movement-in-Lumbar-spine-1.png\";s:8:\"filesize\";i:142838;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25542,7666,'_wp_attached_file','2018/07/Range-of-movement-at-each-spinal-segment-1.png'),(25543,7666,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:962;s:6:\"height\";i:1206;s:4:\"file\";s:54:\"2018/07/Range-of-movement-at-each-spinal-segment-1.png\";s:8:\"filesize\";i:122714;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25544,7690,'_wp_attached_file','2018/07/Flowin-e1612198973357-1.png'),(25545,7690,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:340;s:4:\"file\";s:35:\"2018/07/Flowin-e1612198973357-1.png\";s:8:\"filesize\";i:10689;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25546,7690,'_wp_page_template','default'),(25547,7690,'dt-video-url',''),(25548,7690,'dt-img-link',''),(25549,7690,'dt-img-hide-title','0'),(25550,7690,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1284;s:6:\"height\";i:1248;s:4:\"file\";s:10:\"Flowin.png\";}}'),(25551,7696,'_wp_attached_file','2018/07/TherapyEmpire-e1612199025177-1.png'),(25552,7696,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:270;s:4:\"file\";s:42:\"2018/07/TherapyEmpire-e1612199025177-1.png\";s:8:\"filesize\";i:17278;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25553,7696,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1128;s:6:\"height\";i:871;s:4:\"file\";s:17:\"TherapyEmpire.png\";}}'),(25554,7696,'_wp_page_template','default'),(25555,7696,'dt-video-url',''),(25556,7696,'dt-img-link',''),(25557,7696,'dt-img-hide-title','0'),(25558,7709,'_wp_attached_file','2018/07/PulseRoll-1-e1612199062812-1.png'),(25559,7709,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:275;s:4:\"file\";s:40:\"2018/07/PulseRoll-1-e1612199062812-1.png\";s:8:\"filesize\";i:13049;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25560,7709,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1085;s:6:\"height\";i:851;s:4:\"file\";s:15:\"PulseRoll-1.png\";}}'),(25561,7709,'_wp_page_template','default'),(25562,7709,'dt-video-url',''),(25563,7709,'dt-img-link',''),(25564,7709,'dt-img-hide-title','0'),(25565,7711,'_wp_attached_file','2018/07/Wolverson-1.png'),(25566,7711,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:333;s:4:\"file\";s:23:\"2018/07/Wolverson-1.png\";s:8:\"filesize\";i:24486;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25567,7711,'_wp_page_template','default'),(25568,7711,'dt-video-url',''),(25569,7711,'dt-img-link',''),(25570,7711,'dt-img-hide-title','0'),(25571,7852,'_wp_attached_file','2018/07/Project-Squat-Part-4-The-Nervous-System-And-How-It-Affects-The-Squat-1.png'),(25572,7852,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:82:\"2018/07/Project-Squat-Part-4-The-Nervous-System-And-How-It-Affects-The-Squat-1.png\";s:8:\"filesize\";i:650319;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25573,7922,'_wp_attached_file','2018/07/Biomechanics-Coaching-courses-UK-1-scaled.jpg'),(25574,7922,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:53:\"2018/07/Biomechanics-Coaching-courses-UK-1-scaled.jpg\";s:8:\"filesize\";i:423263;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1530965699\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:38:\"Biomechanics-Coaching-courses-UK-1.jpg\";}'),(25575,7923,'_wp_attached_file','2018/07/Project-squat-a2g-how-your-shoulder-affects-your-squat-depth-1.png'),(25576,7923,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:74:\"2018/07/Project-squat-a2g-how-your-shoulder-affects-your-squat-depth-1.png\";s:8:\"filesize\";i:426964;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25577,7997,'_wp_attached_file','2018/07/Project-squat-a2g-how-your-knees-affect-your-squat-1.png'),(25578,7997,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:64:\"2018/07/Project-squat-a2g-how-your-knees-affect-your-squat-1.png\";s:8:\"filesize\";i:453286;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25579,8104,'_wp_attached_file','2018/07/Project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat-1.png'),(25580,8104,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:77:\"2018/07/Project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat-1.png\";s:8:\"filesize\";i:538288;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25581,8302,'_wp_attached_file','2018/08/Part-8-Project-Squat-When-Squatting-Deeper-Is-More-Than-Just-About-What-You-Do-In-The-Gym-1.png'),(25582,8302,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:103:\"2018/08/Part-8-Project-Squat-When-Squatting-Deeper-Is-More-Than-Just-About-What-You-Do-In-The-Gym-1.png\";s:8:\"filesize\";i:1066558;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25583,8348,'_wp_attached_file','2018/08/Anatomy-Colouring-Book-1.jpg'),(25584,8348,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:260;s:6:\"height\";i:333;s:4:\"file\";s:36:\"2018/08/Anatomy-Colouring-Book-1.jpg\";s:8:\"filesize\";i:23856;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25585,8351,'_wp_attached_file','2018/08/DSC07316-1-scaled.jpg'),(25586,8351,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1440;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2018/08/DSC07316-1-scaled.jpg\";s:8:\"filesize\";i:476007;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1530970621\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"DSC07316-1.jpg\";}'),(25587,8351,'dt-img-hide-title','0'),(25588,8364,'_wp_attached_file','2018/08/6-Tips-To-Improve-Your-Group-Fitness-Programmes-1.png'),(25589,8364,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:61:\"2018/08/6-Tips-To-Improve-Your-Group-Fitness-Programmes-1.png\";s:8:\"filesize\";i:1247035;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25590,8442,'_wp_attached_file','2018/08/How-Do-We-As-Fitness-Professionals-Educate-Our-Clients-Towards-Behaviour-Change_-1.png'),(25591,8442,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:94:\"2018/08/How-Do-We-As-Fitness-Professionals-Educate-Our-Clients-Towards-Behaviour-Change_-1.png\";s:8:\"filesize\";i:1008618;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25592,8531,'_wp_attached_file','2018/08/Revealed_-The-secret-to-helping-clients-reach-their-goals-1.png'),(25593,8531,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:71:\"2018/08/Revealed_-The-secret-to-helping-clients-reach-their-goals-1.png\";s:8:\"filesize\";i:1032318;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25594,8645,'_wp_attached_file','2018/08/4-Tactics-To-Help-Your-Clients-Stick-To-Their-New-Healthy-Habits-1.png'),(25595,8645,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:78:\"2018/08/4-Tactics-To-Help-Your-Clients-Stick-To-Their-New-Healthy-Habits-1.png\";s:8:\"filesize\";i:1046322;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25596,8805,'_wp_attached_file','2018/09/How-To-Stay-Focused-On-Your-Goals-While-The-Voices-In-Your-Head-Battle-It-Out-1.png'),(25597,8805,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:91:\"2018/09/How-To-Stay-Focused-On-Your-Goals-While-The-Voices-In-Your-Head-Battle-It-Out-1.png\";s:8:\"filesize\";i:860706;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25598,8891,'_wp_attached_file','2018/09/How-to-stop-giving-in-to-temptation-and-stay-on-track-to-your-goals-1.png'),(25599,8891,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:81:\"2018/09/How-to-stop-giving-in-to-temptation-and-stay-on-track-to-your-goals-1.png\";s:8:\"filesize\";i:1218085;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25600,8948,'_wp_attached_file','2018/09/Biomechanics-Education-Data-Protection-Policy-2018-1.pdf'),(25601,8948,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:60:\"Biomechanics-Education-Data-Protection-Policy-2018-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203328;}s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Data-Protection-Policy-2018-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153282;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Biomechanics-Education-Data-Protection-Policy-2018-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43547;}}s:8:\"filesize\";i:85557;}'),(25602,8963,'_wp_attached_file','2018/09/Biomechanics-Education-Appeals-procedure-2018-1.pdf'),(25603,8963,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:55:\"Biomechanics-Education-Appeals-procedure-2018-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176811;}s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Biomechanics-Education-Appeals-procedure-2018-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129020;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Biomechanics-Education-Appeals-procedure-2018-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35398;}}s:8:\"filesize\";i:76351;}'),(25604,8964,'_wp_attached_file','2018/09/Biomechanics-Education-Conflict-of-Interest-2018-copy-1.pdf'),(25605,8964,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:63:\"Biomechanics-Education-Conflict-of-Interest-2018-copy-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109524;}s:6:\"medium\";a:5:{s:4:\"file\";s:72:\"Biomechanics-Education-Conflict-of-Interest-2018-copy-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81112;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"Biomechanics-Education-Conflict-of-Interest-2018-copy-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24272;}}s:8:\"filesize\";i:67411;}'),(25606,8965,'_wp_attached_file','2018/09/Biomechanics-Education-Health-Safety-2018-1-1.pdf'),(25607,8965,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:53:\"Biomechanics-Education-Health-Safety-2018-1-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:327025;}s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Biomechanics-Education-Health-Safety-2018-1-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:240996;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"Biomechanics-Education-Health-Safety-2018-1-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64794;}}s:8:\"filesize\";i:131406;}'),(25608,9064,'_wp_attached_file','2018/09/Biomechanics-Education-Diversity-and-equality-policy-2018-1.pdf'),(25609,9064,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:67:\"Biomechanics-Education-Diversity-and-equality-policy-2018-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:283326;}s:6:\"medium\";a:5:{s:4:\"file\";s:76:\"Biomechanics-Education-Diversity-and-equality-policy-2018-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206652;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:75:\"Biomechanics-Education-Diversity-and-equality-policy-2018-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58566;}}s:8:\"filesize\";i:97566;}'),(25610,9065,'_wp_attached_file','2018/09/Biomechanics-education-Induction-pack-2018-1.pdf'),(25611,9065,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:52:\"Biomechanics-education-Induction-pack-2018-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194926;}s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"Biomechanics-education-Induction-pack-2018-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145038;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Biomechanics-education-Induction-pack-2018-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36375;}}s:8:\"filesize\";i:139756;}'),(25612,9066,'_wp_attached_file','2018/09/Biomechanics-Education-Malpractice-Documentation-2018-1.pdf'),(25613,9066,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:63:\"Biomechanics-Education-Malpractice-Documentation-2018-1-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194494;}s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"Biomechanics-Education-Malpractice-Documentation-2018-1-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82896;}s:5:\"large\";a:5:{s:4:\"file\";s:72:\"Biomechanics-Education-Malpractice-Documentation-2018-1-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129864;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"Biomechanics-Education-Malpractice-Documentation-2018-1-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21192;}}s:8:\"filesize\";i:106932;}'),(25614,9067,'_wp_attached_file','2018/09/Safeguarding-Adults-Biomechanics-Education-1-1.pdf'),(25615,9067,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:54:\"Safeguarding-Adults-Biomechanics-Education-1-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:248192;}s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Safeguarding-Adults-Biomechanics-Education-1-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171360;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Safeguarding-Adults-Biomechanics-Education-1-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41980;}}s:8:\"filesize\";i:252445;}'),(25616,9174,'_wp_attached_file','2018/09/CookiePolicy-1.pdf'),(25617,9174,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:22:\"CookiePolicy-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180768;}s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"CookiePolicy-1-pdf-900x1165.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1165;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125156;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"CookiePolicy-1-pdf-400x518.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34074;}}s:8:\"filesize\";i:95424;}'),(25618,9175,'_wp_attached_file','2018/09/PrivacyPolicy-1.pdf'),(25619,9175,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:23:\"PrivacyPolicy-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170516;}s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"PrivacyPolicy-1-pdf-900x1165.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1165;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120215;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"PrivacyPolicy-1-pdf-400x518.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32817;}}s:8:\"filesize\";i:86685;}'),(25620,9176,'_wp_attached_file','2018/09/TermsandConditions-1.pdf'),(25621,9176,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:28:\"TermsandConditions-1-pdf.jpg\";s:5:\"width\";i:1088;s:6:\"height\";i:1408;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:248117;}s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"TermsandConditions-1-pdf-900x1165.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1165;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171975;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"TermsandConditions-1-pdf-400x518.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43834;}}s:8:\"filesize\";i:102037;}'),(25622,9179,'_wp_attached_file','2018/09/Breaking-Bad-habits-with-the-4-minute-rule-1.png'),(25623,9179,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:56:\"2018/09/Breaking-Bad-habits-with-the-4-minute-rule-1.png\";s:8:\"filesize\";i:754609;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25624,9257,'_wp_attached_file','2018/10/Willpower-Attitude-When-Dealing-With-Bad-Attitudes-On-A-Fitness-Journey-1.png'),(25625,9257,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:85:\"2018/10/Willpower-Attitude-When-Dealing-With-Bad-Attitudes-On-A-Fitness-Journey-1.png\";s:8:\"filesize\";i:1011791;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25626,9422,'_wp_attached_file','2018/10/Creating-a-plan-of-action-to-ensure-success-with-your-fitness-goals-1.png'),(25627,9422,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:81:\"2018/10/Creating-a-plan-of-action-to-ensure-success-with-your-fitness-goals-1.png\";s:8:\"filesize\";i:931600;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25628,9448,'_wp_attached_file','2018/10/STA-e1612198752810-1.png'),(25629,9448,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:350;s:6:\"height\";i:263;s:4:\"file\";s:32:\"2018/10/STA-e1612198752810-1.png\";s:8:\"filesize\";i:29441;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25630,9448,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:420;s:6:\"height\";i:315;s:4:\"file\";s:7:\"STA.png\";}}'),(25631,9448,'_wp_page_template','default'),(25632,9448,'dt-video-url',''),(25633,9448,'dt-img-link',''),(25634,9448,'dt-img-hide-title','0'),(25635,9451,'_wp_attached_file','2018/10/Brytespark_New_2018-1-1-1.png'),(25636,9451,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:269;s:6:\"height\";i:221;s:4:\"file\";s:37:\"2018/10/Brytespark_New_2018-1-1-1.png\";s:8:\"filesize\";i:7122;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(25637,10836,'_wp_old_slug','always-always-start-with-why'),(25638,10836,'dt-img-hide-title','0'),(25639,12889,'dt-img-hide-title','0'),(25640,13010,'_wp_attachment_image_alt','Are Shoulder Problems Are The New Low Back Pain_'),(25641,13010,'dt-img-hide-title','0'),(25642,13150,'dt-img-hide-title','0'),(25643,38588,'_wp_attachment_context','custom-header'),(25644,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(25645,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(25646,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(25647,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(25648,192,'dt-img-hide-title','0'),(25649,194,'dt-img-hide-title','0'),(25650,205,'dt-img-hide-title','0'),(25651,206,'dt-img-hide-title','0'),(25652,208,'dt-img-hide-title','0'),(25653,247,'dt-img-hide-title','0'),(25654,248,'_wp_attachment_context','site-icon'),(25655,248,'dt-img-hide-title','0'),(25656,265,'dt-img-hide-title','0'),(25657,283,'dt-img-hide-title','0'),(25658,284,'dt-img-hide-title','0'),(25659,285,'dt-img-hide-title','0'),(25660,287,'dt-img-hide-title','0'),(25661,290,'dt-img-hide-title','0'),(25662,291,'dt-img-hide-title','0'),(25663,294,'dt-img-hide-title','0'),(25664,297,'dt-img-hide-title','0'),(25665,333,'dt-img-hide-title','0'),(25666,341,'dt-img-hide-title','0'),(25667,407,'dt-img-hide-title','0'),(25668,458,'dt-img-hide-title','0'),(25669,495,'dt-img-hide-title','0'),(25670,497,'dt-img-hide-title','0'),(25671,505,'dt-img-hide-title','0'),(25672,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(25673,210,'dt-img-link',''),(25674,210,'dt-img-hide-title','0'),(25675,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(25676,221,'dt-img-link',''),(25677,221,'dt-img-hide-title','0'),(25678,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(25679,224,'dt-img-link',''),(25680,224,'dt-img-hide-title','0'),(25681,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(25682,228,'dt-img-link',''),(25683,228,'dt-img-hide-title','0'),(25684,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(25685,230,'dt-img-link',''),(25686,230,'dt-img-hide-title','0'),(25687,237,'dt-img-hide-title','0'),(25688,237,'dt-img-link',''),(25689,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(25690,557,'dt-img-hide-title','0'),(25691,559,'dt-img-hide-title','0'),(25692,562,'dt-img-hide-title','0'),(25693,569,'dt-img-hide-title','0'),(25694,592,'dt-img-hide-title','0'),(25695,596,'dt-img-hide-title','0'),(25696,617,'dt-img-hide-title','0'),(25697,620,'dt-img-hide-title','0'),(25698,621,'dt-img-hide-title','0'),(25699,623,'dt-img-hide-title','0'),(25700,624,'dt-img-hide-title','0'),(25701,644,'dt-img-hide-title','0'),(25702,648,'dt-img-hide-title','0'),(25703,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(25704,824,'dt-img-link',''),(25705,824,'dt-img-hide-title','0'),(25706,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(25707,825,'dt-img-link',''),(25708,825,'dt-img-hide-title','0'),(25709,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(25710,828,'dt-img-link',''),(25711,828,'dt-img-hide-title','0'),(25712,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(25713,1450,'dt-img-link',''),(25714,1450,'dt-img-hide-title','0'),(25715,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(25716,1451,'dt-img-link',''),(25717,1451,'dt-img-hide-title','0'),(25718,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(25719,1452,'dt-img-link',''),(25720,1452,'dt-img-hide-title','0'),(25721,652,'dt-img-hide-title','0'),(25722,655,'dt-img-hide-title','0'),(25723,675,'dt-img-hide-title','0'),(25724,678,'dt-img-hide-title','0'),(25725,683,'dt-img-hide-title','0'),(25726,703,'dt-img-hide-title','0'),(25727,706,'dt-img-hide-title','0'),(25728,709,'dt-img-hide-title','0'),(25729,712,'dt-img-hide-title','0'),(25730,713,'dt-img-hide-title','0'),(25731,714,'dt-img-hide-title','0'),(25732,715,'dt-img-hide-title','0'),(25733,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(25734,722,'dt-img-hide-title','0'),(25735,735,'dt-img-hide-title','0'),(25736,759,'dt-img-hide-title','0'),(25737,762,'dt-img-hide-title','0'),(25738,766,'dt-img-hide-title','0'),(25739,770,'dt-img-hide-title','0'),(25740,804,'dt-img-hide-title','0'),(25741,814,'dt-img-hide-title','0'),(25742,827,'dt-img-hide-title','0'),(25743,830,'dt-img-hide-title','0'),(25744,854,'dt-img-hide-title','0'),(25745,857,'dt-img-hide-title','0'),(25746,874,'dt-img-hide-title','0'),(25747,937,'dt-img-hide-title','0'),(25748,941,'dt-img-hide-title','0'),(25749,955,'dt-img-hide-title','0'),(25750,969,'_wp_attachment_image_alt','imove Freely'),(25751,969,'dt-img-hide-title','0'),(25752,1001,'dt-img-hide-title','0'),(25753,1015,'dt-img-hide-title','0'),(25754,1018,'dt-img-hide-title','0'),(25755,1020,'dt-img-hide-title','0'),(25756,1021,'dt-img-hide-title','0'),(25757,1024,'dt-img-hide-title','0'),(25758,1027,'dt-img-hide-title','0'),(25759,1030,'dt-img-hide-title','0'),(25760,1035,'dt-img-hide-title','0'),(25761,1039,'dt-img-hide-title','0'),(25762,1045,'dt-img-hide-title','0'),(25763,1051,'dt-img-hide-title','0'),(25764,1052,'dt-img-hide-title','0'),(25765,1055,'dt-img-hide-title','0'),(25766,1057,'dt-img-hide-title','0'),(25767,1061,'dt-img-hide-title','0'),(25768,1065,'dt-img-hide-title','0'),(25769,1068,'dt-img-hide-title','0'),(25770,1073,'dt-img-hide-title','0'),(25771,1078,'dt-img-hide-title','0'),(25772,1084,'dt-img-hide-title','0'),(25773,1088,'dt-img-hide-title','0'),(25774,1094,'dt-img-hide-title','0'),(25775,1096,'dt-img-hide-title','0'),(25776,1097,'dt-img-hide-title','0'),(25777,1099,'dt-img-hide-title','0'),(25778,1106,'dt-img-hide-title','0'),(25779,1110,'dt-img-hide-title','0'),(25780,1112,'dt-img-hide-title','0'),(25781,1116,'dt-img-hide-title','0'),(25782,1125,'dt-img-hide-title','0'),(25783,1129,'dt-img-hide-title','0'),(25784,1145,'dt-img-hide-title','0'),(25785,1167,'dt-img-hide-title','0'),(25786,1184,'dt-img-hide-title','0'),(25787,1186,'dt-img-hide-title','0'),(25788,1187,'dt-img-hide-title','0'),(25789,1189,'dt-img-hide-title','0'),(25790,1194,'dt-img-hide-title','0'),(25791,1197,'dt-img-hide-title','0'),(25792,1201,'dt-img-hide-title','0'),(25793,1202,'dt-img-hide-title','0'),(25794,1203,'dt-img-hide-title','0'),(25795,1204,'dt-img-hide-title','0'),(25796,1205,'dt-img-hide-title','0'),(25797,1206,'dt-img-hide-title','0'),(25798,1207,'dt-img-hide-title','0'),(25799,1209,'dt-img-hide-title','0'),(25800,1210,'dt-img-hide-title','0'),(25801,1211,'dt-img-hide-title','0'),(25802,1212,'dt-img-hide-title','0'),(25803,1213,'dt-img-hide-title','0'),(25804,1214,'dt-img-hide-title','0'),(25805,1220,'dt-img-hide-title','0'),(25806,1223,'dt-img-hide-title','0'),(25807,1226,'dt-img-hide-title','0'),(25808,1228,'dt-img-hide-title','0'),(25809,1232,'dt-img-hide-title','0'),(25810,1235,'dt-img-hide-title','0'),(25811,1239,'dt-img-hide-title','0'),(25812,1242,'dt-img-hide-title','0'),(25813,1246,'dt-img-hide-title','0'),(25814,1256,'dt-img-hide-title','0'),(25815,1262,'dt-img-hide-title','0'),(25816,1265,'dt-img-hide-title','0'),(25817,1269,'dt-img-hide-title','0'),(25818,1275,'dt-img-hide-title','0'),(25819,1279,'dt-img-hide-title','0'),(25820,1312,'dt-img-hide-title','0'),(25821,1316,'dt-img-hide-title','0'),(25822,1320,'dt-img-hide-title','0'),(25823,1326,'dt-img-hide-title','0'),(25824,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(25825,1334,'dt-img-hide-title','0'),(25826,1338,'dt-img-hide-title','0'),(25827,1339,'dt-img-hide-title','0'),(25828,1343,'dt-img-hide-title','0'),(25829,1347,'dt-img-hide-title','0'),(25830,1351,'dt-img-hide-title','0'),(25831,1354,'dt-img-hide-title','0'),(25832,1357,'dt-img-hide-title','0'),(25833,1359,'dt-img-hide-title','0'),(25834,1362,'dt-img-hide-title','0'),(25835,1366,'dt-img-hide-title','0'),(25836,1379,'dt-img-hide-title','0'),(25837,1398,'dt-img-hide-title','0'),(25838,1403,'dt-img-hide-title','0'),(25839,1406,'dt-img-hide-title','0'),(25840,1410,'dt-img-hide-title','0'),(25841,1413,'dt-img-hide-title','0'),(25842,1416,'dt-img-hide-title','0'),(25843,1419,'dt-img-hide-title','0'),(25844,1423,'dt-img-hide-title','0'),(25845,1429,'dt-img-hide-title','0'),(25846,1430,'dt-img-hide-title','0'),(25847,1433,'dt-img-hide-title','0'),(25848,1463,'dt-img-hide-title','0'),(25849,1463,'dt-img-hide-title','0'),(25850,1463,'dt-img-hide-title','0'),(25851,1463,'dt-img-hide-title','0'),(25852,1463,'dt-img-hide-title','0'),(25853,1468,'dt-img-hide-title','0'),(25854,2229,'dt-img-hide-title','0'),(25855,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(25856,2230,'dt-img-hide-title','0'),(25857,2231,'dt-img-hide-title','0'),(25858,2232,'dt-img-hide-title','0'),(25859,2233,'dt-img-hide-title','0'),(25860,2234,'dt-img-hide-title','0'),(25861,2235,'dt-img-hide-title','0'),(25862,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(25863,1474,'dt-img-hide-title','0'),(25864,1475,'dt-img-hide-title','0'),(25865,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(25866,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(25867,1476,'dt-img-hide-title','0'),(25868,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(25869,1478,'dt-img-hide-title','0'),(25870,1479,'dt-img-hide-title','0'),(25871,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(25872,1489,'dt-img-hide-title','0'),(25873,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(25874,1500,'dt-img-hide-title','0'),(25875,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(25876,1501,'dt-img-hide-title','0'),(25877,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(25878,1504,'dt-img-hide-title','0'),(25879,1508,'_wp_attachment_image_alt',''),(25880,1508,'dt-img-hide-title','0'),(25881,1508,'dt-video-url',''),(25882,1508,'dt-img-link',''),(25883,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(25884,1510,'dt-img-hide-title','0'),(25885,1514,'dt-img-hide-title','0'),(25886,2236,'dt-img-hide-title','0'),(25887,2237,'dt-img-hide-title','0'),(25888,2238,'dt-img-hide-title','0'),(25889,2239,'dt-img-hide-title','0'),(25890,2247,'dt-img-hide-title','0'),(25891,2248,'dt-img-hide-title','0'),(25892,2249,'dt-img-hide-title','0'),(25893,1533,'dt-img-hide-title','0'),(25894,1535,'dt-img-hide-title','0'),(25895,1536,'dt-img-hide-title','0'),(25896,1540,'dt-img-hide-title','0'),(25897,1546,'dt-img-hide-title','0'),(25898,1556,'dt-img-hide-title','0'),(25899,1566,'dt-img-hide-title','0'),(25900,1595,'dt-img-hide-title','0'),(25901,1608,'dt-video-url',''),(25902,1608,'dt-img-link',''),(25903,1608,'dt-img-hide-title','0'),(25904,1825,'dt-img-hide-title','0'),(25905,2250,'dt-img-hide-title','0'),(25906,2251,'dt-img-hide-title','0'),(25907,2252,'dt-img-hide-title','0'),(25908,2253,'dt-img-hide-title','0'),(25909,2254,'dt-img-hide-title','0'),(25910,2255,'dt-img-hide-title','0'),(25911,2256,'dt-img-hide-title','0'),(25912,2257,'dt-img-hide-title','0'),(25913,2258,'dt-img-hide-title','0'),(25914,2259,'dt-img-hide-title','0'),(25915,1646,'dt-img-hide-title','0'),(25916,1650,'dt-img-hide-title','0'),(25920,2241,'dt-img-hide-title','0'),(25921,2242,'dt-img-hide-title','0'),(25922,2243,'dt-img-hide-title','0'),(25923,2244,'dt-img-hide-title','0'),(25924,2245,'dt-img-hide-title','0'),(25925,2246,'dt-img-hide-title','0'),(25926,2260,'dt-img-hide-title','0'),(25927,2261,'dt-img-hide-title','0'),(25928,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(25929,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(25930,2262,'dt-img-hide-title','0'),(25931,2263,'dt-img-hide-title','0'),(25932,2264,'dt-img-hide-title','0'),(25933,2265,'dt-img-hide-title','0'),(25934,2266,'dt-img-hide-title','0'),(25935,2267,'dt-img-hide-title','0'),(25936,2268,'dt-img-hide-title','0'),(25937,2269,'dt-img-hide-title','0'),(25938,2270,'dt-img-hide-title','0'),(25939,1658,'dt-img-hide-title','0'),(25940,1660,'dt-img-hide-title','0'),(25941,1667,'dt-img-hide-title','0'),(25942,1668,'dt-img-hide-title','0'),(25943,1669,'dt-img-hide-title','0'),(25944,1674,'dt-img-hide-title','0'),(25945,2102,'dt-img-hide-title','0'),(25946,2103,'dt-img-hide-title','0'),(25947,2104,'dt-img-hide-title','0'),(25948,2105,'dt-img-hide-title','0'),(25949,2106,'dt-img-hide-title','0'),(25950,2107,'dt-img-hide-title','0'),(25951,2108,'dt-img-hide-title','0'),(25952,2109,'dt-img-hide-title','0'),(25953,2110,'dt-img-hide-title','0'),(25954,2111,'dt-img-hide-title','0'),(25955,2112,'dt-img-hide-title','0'),(25956,2113,'dt-img-hide-title','0'),(25957,2114,'dt-img-hide-title','0'),(25958,2115,'dt-img-hide-title','0'),(25959,1675,'dt-img-hide-title','0'),(25960,1699,'dt-img-hide-title','0'),(25961,1700,'dt-img-hide-title','0'),(25962,1701,'dt-img-hide-title','0'),(25963,1702,'dt-img-hide-title','0'),(25964,2217,'dt-img-hide-title','0'),(25965,2222,'dt-img-hide-title','0'),(25966,2271,'dt-img-hide-title','0'),(25967,2289,'dt-img-hide-title','0'),(25968,2291,'dt-img-hide-title','0'),(25969,2293,'dt-img-hide-title','0'),(25970,2295,'dt-img-hide-title','0'),(25971,2297,'dt-img-hide-title','0'),(25972,2299,'dt-img-hide-title','0'),(25973,2301,'dt-img-hide-title','0'),(25974,2303,'dt-img-hide-title','0'),(25975,2305,'dt-img-hide-title','0'),(25976,2307,'dt-img-hide-title','0'),(25977,2405,'dt-img-hide-title','0'),(25978,2405,'_wp_attachment_image_alt','iMoveFreely® Exercises To Try At Home'),(25979,2409,'dt-img-hide-title','0'),(25980,2409,'_wp_attachment_image_alt','Don’t Listen To Us….Listen To Them!'),(25981,2410,'dt-img-hide-title','0'),(25982,2410,'_wp_attachment_image_alt','Presentations at The Movement Convention'),(25983,2411,'dt-img-hide-title','0'),(25984,2411,'_wp_attachment_image_alt','Just For Fun'),(25985,2413,'dt-img-hide-title','0'),(25986,2413,'_wp_attachment_image_alt','We all Squat Differently?'),(25987,2415,'dt-img-hide-title','0'),(25988,2415,'_wp_attachment_image_alt','What Do Our Workshops Look Like?'),(25989,2534,'dt-img-hide-title','0'),(25990,2535,'dt-img-hide-title','0'),(25991,2537,'dt-img-hide-title','0'),(25992,2538,'dt-img-hide-title','0'),(25993,2539,'dt-img-hide-title','0'),(25994,2540,'dt-img-hide-title','0'),(25995,2541,'dt-img-hide-title','0'),(25996,2548,'dt-img-hide-title','0'),(25997,2549,'dt-img-hide-title','0'),(25998,2550,'dt-img-hide-title','0'),(25999,2551,'dt-img-hide-title','0'),(26000,2552,'dt-img-hide-title','0'),(26001,2611,'dt-img-hide-title','0'),(26002,2612,'dt-img-hide-title','0'),(26003,2613,'dt-img-hide-title','0'),(26004,2614,'dt-img-hide-title','0'),(26005,2615,'dt-img-hide-title','0'),(26006,2655,'dt-img-hide-title','0'),(26007,2656,'dt-img-hide-title','0'),(26008,2657,'dt-img-hide-title','0'),(26009,2658,'dt-img-hide-title','0'),(26010,2721,'dt-img-hide-title','0'),(26011,2722,'dt-img-hide-title','0'),(26012,2723,'dt-img-hide-title','0'),(26013,2724,'dt-img-hide-title','0'),(26014,2725,'dt-img-hide-title','0'),(26015,2726,'dt-img-hide-title','0'),(26016,2727,'dt-img-hide-title','0'),(26017,2728,'dt-img-hide-title','0'),(26018,2729,'dt-img-hide-title','0'),(26019,2756,'dt-img-hide-title','0'),(26020,2759,'dt-img-hide-title','0'),(26021,2781,'dt-img-hide-title','0'),(26022,2786,'dt-img-hide-title','0'),(26023,2787,'dt-img-hide-title','0'),(26024,2788,'dt-img-hide-title','0'),(26025,2788,'_wp_attachment_image_alt','the effect of quadratus lumborum muscle'),(26026,2810,'dt-img-hide-title','0'),(26027,2811,'dt-img-hide-title','0'),(26028,2812,'dt-img-hide-title','0'),(26029,2813,'dt-img-hide-title','0'),(26030,2814,'dt-img-hide-title','0'),(26031,2815,'dt-img-hide-title','0'),(26032,2816,'dt-img-hide-title','0'),(26033,2817,'dt-img-hide-title','0'),(26034,2818,'dt-img-hide-title','0'),(26035,2837,'dt-img-hide-title','0'),(26036,2846,'dt-img-hide-title','0'),(26037,2847,'dt-img-hide-title','0'),(26038,2856,'dt-img-hide-title','0'),(26039,2857,'dt-img-hide-title','0'),(26040,2858,'dt-img-hide-title','0'),(26041,2859,'dt-img-hide-title','0'),(26042,2860,'dt-img-hide-title','0'),(26043,2861,'dt-img-hide-title','0'),(26044,2862,'dt-img-hide-title','0'),(26045,2868,'dt-img-hide-title','0'),(26046,2869,'dt-img-hide-title','0'),(26047,2870,'dt-img-hide-title','0'),(26048,2871,'dt-img-hide-title','0'),(26049,2875,'dt-img-hide-title','0'),(26050,2876,'dt-img-hide-title','0'),(26051,2877,'dt-img-hide-title','0'),(26052,2878,'dt-img-hide-title','0'),(26053,2879,'dt-img-hide-title','0'),(26054,2894,'dt-img-hide-title','0'),(26055,2894,'dt-video-url',''),(26056,2894,'dt-img-link',''),(26057,2896,'dt-img-hide-title','0'),(26058,2896,'dt-video-url',''),(26059,2896,'dt-img-link',''),(26060,2960,'dt-img-hide-title','0'),(26061,2961,'dt-img-hide-title','0'),(26062,2962,'dt-img-hide-title','0'),(26063,2963,'dt-img-hide-title','0'),(26064,2964,'dt-img-hide-title','0'),(26065,2965,'dt-img-hide-title','0'),(26066,2966,'dt-img-hide-title','0'),(26067,2967,'dt-img-hide-title','0'),(26068,2968,'dt-img-hide-title','0'),(26069,2969,'dt-img-hide-title','0'),(26070,2976,'dt-img-hide-title','0'),(26071,2986,'dt-img-hide-title','0'),(26072,2999,'dt-img-hide-title','0'),(26073,3002,'dt-img-hide-title','0'),(26074,3003,'dt-img-hide-title','0'),(26075,3004,'dt-img-hide-title','0'),(26076,3005,'dt-img-hide-title','0'),(26077,3006,'dt-img-hide-title','0'),(26078,3014,'dt-img-hide-title','0'),(26079,3015,'dt-img-hide-title','0'),(26080,3016,'dt-img-hide-title','0'),(26081,3034,'dt-img-hide-title','0'),(26082,3173,'dt-img-hide-title','0'),(26083,3174,'dt-img-hide-title','0'),(26084,3179,'dt-img-hide-title','0'),(26085,3180,'dt-img-hide-title','0'),(26086,3183,'dt-img-hide-title','0'),(26087,3188,'dt-img-hide-title','0'),(26088,3191,'dt-img-hide-title','0'),(26089,3200,'dt-img-hide-title','0'),(26090,3201,'dt-img-hide-title','0'),(26091,3202,'dt-img-hide-title','0'),(26092,3203,'dt-img-hide-title','0'),(26093,3205,'dt-img-hide-title','0'),(26094,3206,'dt-img-hide-title','0'),(26095,3207,'dt-img-hide-title','0'),(26096,3208,'dt-img-hide-title','0'),(26097,3213,'dt-img-hide-title','0'),(26098,3214,'dt-img-hide-title','0'),(26099,3228,'dt-img-hide-title','0'),(26100,3229,'dt-img-hide-title','0'),(26101,3230,'dt-img-hide-title','0'),(26102,3234,'dt-img-hide-title','0'),(26103,3242,'dt-img-hide-title','0'),(26104,3243,'dt-img-hide-title','0'),(26105,3325,'dt-img-hide-title','0'),(26106,3479,'dt-img-hide-title','0'),(26107,3496,'dt-img-hide-title','0'),(26108,3496,'_wp_attachment_image_alt','Rachel France - profile image'),(26109,3497,'dt-img-hide-title','0'),(26110,3498,'dt-img-hide-title','0'),(26111,3499,'dt-img-hide-title','0'),(26112,3502,'dt-img-hide-title','0'),(26113,3504,'dt-img-hide-title','0'),(26114,3505,'dt-img-hide-title','0'),(26115,3506,'dt-img-hide-title','0'),(26116,3507,'dt-img-hide-title','0'),(26117,3511,'dt-img-hide-title','0'),(26118,3528,'dt-img-hide-title','0'),(26119,3534,'dt-video-url',''),(26120,3534,'dt-img-link',''),(26121,3534,'dt-img-hide-title','0'),(26122,3535,'dt-video-url',''),(26123,3535,'dt-img-link',''),(26124,3535,'dt-img-hide-title','0'),(26125,3535,'_wp_attachment_image_alt','Tachel France - biomechanics education'),(26126,3536,'dt-video-url',''),(26127,3536,'dt-img-link',''),(26128,3536,'dt-img-hide-title','0'),(26129,3537,'dt-video-url',''),(26130,3537,'dt-img-link',''),(26131,3537,'dt-img-hide-title','0'),(26132,3551,'dt-img-hide-title','0'),(26133,3629,'dt-img-hide-title','0'),(26134,3630,'dt-img-hide-title','0'),(26135,3631,'dt-img-hide-title','0'),(26136,3632,'dt-img-hide-title','0'),(26137,3633,'dt-img-hide-title','0'),(26138,3634,'dt-img-hide-title','0'),(26139,3635,'dt-img-hide-title','0'),(26140,3636,'dt-img-hide-title','0'),(26141,3655,'dt-video-url',''),(26142,3655,'dt-img-link',''),(26143,3655,'dt-img-hide-title','0'),(26144,3690,'dt-img-hide-title','0'),(26145,3692,'dt-img-hide-title','0'),(26146,3693,'dt-img-hide-title','0'),(26147,3694,'dt-img-hide-title','0'),(26148,3695,'dt-img-hide-title','0'),(26149,3699,'dt-img-hide-title','0'),(26150,3784,'dt-img-hide-title','0'),(26151,3789,'dt-img-hide-title','0'),(26152,3801,'dt-img-hide-title','0'),(26153,3803,'dt-img-hide-title','0'),(26154,4107,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics'),(26155,4107,'dt-img-hide-title','0'),(26156,4107,'_wp_old_slug','what-exactly-is-intrinsic-biomechanics'),(26157,4108,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics-2'),(26158,4108,'dt-img-hide-title','0'),(26159,4399,'_wp_attachment_image_alt','special-fast-track-3-day-pelvic-spine-biomechanics-workshop'),(26160,4399,'dt-img-hide-title','0'),(26161,4601,'dt-img-hide-title','0'),(26162,4705,'_wp_attachment_image_alt','imovefreely-instructor - biomechanics education'),(26163,4705,'dt-img-hide-title','0'),(26164,4707,'dt-img-hide-title','0'),(26165,4709,'_wp_attachment_image_alt','intrinsic-biomechanics-taster'),(26166,4709,'dt-img-hide-title','0'),(26167,4715,'_wp_attachment_image_alt','low-back-health-workshop - biomechanics education'),(26168,4715,'dt-img-hide-title','0'),(26169,4717,'_wp_attachment_image_alt','knee-foot-biomechanics-2-day-workshop'),(26170,4717,'dt-img-hide-title','0'),(26171,4733,'_wp_attachment_image_alt','iba-discovery-day-workshop'),(26172,4733,'dt-img-hide-title','0'),(26173,5135,'_wp_attachment_image_alt','Biomechanics Coach & Diploma Workshop Series'),(26174,5135,'dt-img-hide-title','0'),(26175,5139,'_wp_attachment_image_alt','Low Back Health Workshop'),(26176,5139,'dt-img-hide-title','0'),(26177,5143,'_wp_attachment_image_alt','Spine Biomechanics 2 Day Workshop'),(26178,5143,'dt-img-hide-title','0'),(26179,5149,'_wp_attachment_image_alt','Pelvic Biomechanics 2 Day Workshop'),(26180,5149,'dt-img-hide-title','0'),(26181,5151,'_wp_attachment_image_alt','Shoulder Biomechanics 2 Day Workshop'),(26182,5151,'dt-img-hide-title','0'),(26183,5155,'dt-img-hide-title','0'),(26184,5155,'dt-video-url',''),(26185,5155,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split'),(26186,5253,'dt-img-hide-title','0'),(26187,5325,'dt-img-hide-title','0'),(26188,6395,'dt-img-hide-title','0'),(26189,6410,'_wp_attachment_image_alt','Rachel France - Listening to Dan John, Never Let Go'),(26190,6410,'dt-img-hide-title','0'),(26191,6682,'_wp_attachment_image_alt','Rachel France smiling - Group Exercise'),(26192,6682,'dt-img-hide-title','0'),(26193,6683,'_wp_attachment_image_alt','Rachel France - Biomechanics Education - Group Exercise'),(26194,6683,'dt-img-hide-title','0'),(26195,6724,'dt-img-hide-title','0'),(26196,7303,'dt-img-hide-title','0'),(26197,7690,'_wp_page_template','default'),(26198,7690,'dt-video-url',''),(26199,7690,'dt-img-link',''),(26200,7690,'dt-img-hide-title','0'),(26201,7690,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1284;s:6:\"height\";i:1248;s:4:\"file\";s:10:\"Flowin.png\";}}'),(26202,7696,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1128;s:6:\"height\";i:871;s:4:\"file\";s:17:\"TherapyEmpire.png\";}}'),(26203,7696,'_wp_page_template','default'),(26204,7696,'dt-video-url',''),(26205,7696,'dt-img-link',''),(26206,7696,'dt-img-hide-title','0'),(26207,7709,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1085;s:6:\"height\";i:851;s:4:\"file\";s:15:\"PulseRoll-1.png\";}}'),(26208,7709,'_wp_page_template','default'),(26209,7709,'dt-video-url',''),(26210,7709,'dt-img-link',''),(26211,7709,'dt-img-hide-title','0'),(26212,7711,'_wp_page_template','default'),(26213,7711,'dt-video-url',''),(26214,7711,'dt-img-link',''),(26215,7711,'dt-img-hide-title','0'),(26216,8351,'dt-img-hide-title','0'),(26217,9448,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:420;s:6:\"height\";i:315;s:4:\"file\";s:7:\"STA.png\";}}'),(26218,9448,'_wp_page_template','default'),(26219,9448,'dt-video-url',''),(26220,9448,'dt-img-link',''),(26221,9448,'dt-img-hide-title','0'),(26222,9453,'_wp_attached_file','2018/10/CIMSPA-1.png'),(26223,9453,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:283;s:6:\"height\";i:207;s:4:\"file\";s:20:\"2018/10/CIMSPA-1.png\";s:8:\"filesize\";i:61508;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26224,9455,'_wp_attached_file','2018/10/BTN-1.png'),(26225,9455,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:232;s:6:\"height\";i:178;s:4:\"file\";s:17:\"2018/10/BTN-1.png\";s:8:\"filesize\";i:6334;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26226,9457,'_wp_attached_file','2018/10/BTN-3-1.png'),(26227,9457,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:232;s:6:\"height\";i:178;s:4:\"file\";s:19:\"2018/10/BTN-3-1.png\";s:8:\"filesize\";i:6334;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26228,9492,'_wp_attached_file','2018/10/Stopping-a-small-blip-becoming-a-major-fail-Personal-Trainers-Guide-To-Shifting-Paradigms-1.png'),(26229,9492,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:103:\"2018/10/Stopping-a-small-blip-becoming-a-major-fail-Personal-Trainers-Guide-To-Shifting-Paradigms-1.png\";s:8:\"filesize\";i:1050813;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26230,9561,'_wp_attached_file','2018/10/The-4-Legs-Of-Life-Creating-Balance-In-Your-Life-1.png'),(26231,9561,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:62:\"2018/10/The-4-Legs-Of-Life-Creating-Balance-In-Your-Life-1.png\";s:8:\"filesize\";i:895698;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26232,9701,'_wp_attached_file','2018/10/The-Ripple-Effect-How-1-action-can-impact-hundreds-of-people-1.png'),(26233,9701,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:74:\"2018/10/The-Ripple-Effect-How-1-action-can-impact-hundreds-of-people-1.png\";s:8:\"filesize\";i:1205352;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26234,9753,'_wp_attached_file','2018/11/Personal-trainers-guide-to-dealing-with-a-client-who-is-in-pain-1.png'),(26235,9753,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:77:\"2018/11/Personal-trainers-guide-to-dealing-with-a-client-who-is-in-pain-1.png\";s:8:\"filesize\";i:1127566;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26236,9948,'_wp_attached_file','2018/11/Strength-Conditioning-Education-Biomechanics-Coaching-1.png'),(26237,9948,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2201;s:6:\"height\";i:569;s:4:\"file\";s:67:\"2018/11/Strength-Conditioning-Education-Biomechanics-Coaching-1.png\";s:8:\"filesize\";i:348852;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26238,9977,'_wp_attached_file','2018/11/Biomechanics-Coaching-Strength-Conditioning-1.png'),(26239,9977,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:57:\"2018/11/Biomechanics-Coaching-Strength-Conditioning-1.png\";s:8:\"filesize\";i:1178942;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26240,10053,'_wp_attached_file','2018/11/Biomechanics-Education-Academy-Dare-To-Dream-1.png'),(26241,10053,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:58:\"2018/11/Biomechanics-Education-Academy-Dare-To-Dream-1.png\";s:8:\"filesize\";i:697590;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26242,10130,'_wp_attached_file','2018/11/My-Experience-Of-Being-A-Level-4-Strength-Conditioning-Learner-Day-1-2-1.jpg'),(26243,10130,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:84:\"2018/11/My-Experience-Of-Being-A-Level-4-Strength-Conditioning-Learner-Day-1-2-1.jpg\";s:8:\"filesize\";i:216394;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26244,10372,'_wp_attached_file','2018/12/Level-4-Low-Back-Pain-Qualification-for-Personal-Trainers-1.png'),(26245,10372,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:71:\"2018/12/Level-4-Low-Back-Pain-Qualification-for-Personal-Trainers-1.png\";s:8:\"filesize\";i:872886;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26246,10372,'_wp_attachment_image_alt','Level 4 Low Back Pain Qualification for Personal Trainers'),(26247,10372,'dt-img-hide-title','0'),(26248,10443,'_wp_attached_file','2018/12/Taking-Risks.-Take-That-Leap-Of-Faith.png'),(26249,10443,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:49:\"2018/12/Taking-Risks.-Take-That-Leap-Of-Faith.png\";s:8:\"filesize\";i:914354;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26250,10836,'_wp_old_slug','always-always-start-with-why'),(26251,10836,'dt-img-hide-title','0'),(26252,12889,'dt-img-hide-title','0'),(26253,13010,'_wp_attachment_image_alt','Are Shoulder Problems Are The New Low Back Pain_'),(26254,13010,'dt-img-hide-title','0'),(26255,13150,'dt-img-hide-title','0'),(26256,13709,'_wp_attached_file','2019/05/Running-Biomechanics-Biomechanics-Education-1.png'),(26257,13709,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:57:\"2019/05/Running-Biomechanics-Biomechanics-Education-1.png\";s:8:\"filesize\";i:656190;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26258,13709,'dt-video-url',''),(26259,13709,'dt-img-link','https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description'),(26260,13709,'dt-img-hide-title','0'),(26261,13831,'_wp_attached_file','2019/05/woocommerce-placeholder.png'),(26262,13831,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2019/05/woocommerce-placeholder.png\";s:8:\"filesize\";i:102644;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26263,14075,'_wp_attached_file','2019/06/How-I-Knocked-10-Minutes-Off-My-Half-Marathon-Time-In-Just-4-Weeks-1.png'),(26264,14075,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:80:\"2019/06/How-I-Knocked-10-Minutes-Off-My-Half-Marathon-Time-In-Just-4-Weeks-1.png\";s:8:\"filesize\";i:1390443;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26265,14133,'_wp_attached_file','2019/06/6-Steps-To-Improving-Your-Metabolic-Profile-Biomechanics-Education-1.png'),(26266,14133,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:80:\"2019/06/6-Steps-To-Improving-Your-Metabolic-Profile-Biomechanics-Education-1.png\";s:8:\"filesize\";i:1546261;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26267,14387,'_wp_attached_file','2019/06/Why-You-Should-Consider-Adding-Hip-Hitching-To-Your-Clients-Programmes-1.png'),(26268,14387,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:84:\"2019/06/Why-You-Should-Consider-Adding-Hip-Hitching-To-Your-Clients-Programmes-1.png\";s:8:\"filesize\";i:711002;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26269,14577,'_wp_attached_file','2019/06/Online-Education-Versus-Face-To-Face-Learning-Which-is-better_-1.png'),(26270,14577,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:76:\"2019/06/Online-Education-Versus-Face-To-Face-Learning-Which-is-better_-1.png\";s:8:\"filesize\";i:1125301;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26271,14784,'_wp_attached_file','2019/06/Diploma-Handbook-2019-1-1.pdf'),(26272,14784,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:33:\"Diploma-Handbook-2019-1-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73714;}s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Diploma-Handbook-2019-1-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55278;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Diploma-Handbook-2019-1-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16711;}}s:8:\"filesize\";i:217762;}'),(26273,14846,'_wp_attached_file','2019/07/Why-Strengthening-_Weak_-Glutes-May-Not-Be-The-Answer-1.png'),(26274,14846,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:67:\"2019/07/Why-Strengthening-_Weak_-Glutes-May-Not-Be-The-Answer-1.png\";s:8:\"filesize\";i:549074;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26275,15175,'_wp_attached_file','2019/07/Is-It-Actually-An-Injury_-1.png'),(26276,15175,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:39:\"2019/07/Is-It-Actually-An-Injury_-1.png\";s:8:\"filesize\";i:775742;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26277,15294,'_wp_attached_file','2019/07/Is-There-Such-A-Thing-As-Caring-Too-Much_-And-Can-It-Adversely-Affect-Your-Client_-1.png'),(26278,15294,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:96:\"2019/07/Is-There-Such-A-Thing-As-Caring-Too-Much_-And-Can-It-Adversely-Affect-Your-Client_-1.png\";s:8:\"filesize\";i:1150771;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26279,15434,'_wp_attached_file','2019/07/Stop-Chasing-Quick-Fixes-Gary-V-I-Agree-On-This-1.png'),(26280,15434,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:61:\"2019/07/Stop-Chasing-Quick-Fixes-Gary-V-I-Agree-On-This-1.png\";s:8:\"filesize\";i:517707;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26281,15604,'_wp_attached_file','2019/07/Pronation-of-the-foot-Foot-Biomechanics-1.png'),(26282,15604,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:376;s:6:\"height\";i:1080;s:4:\"file\";s:53:\"2019/07/Pronation-of-the-foot-Foot-Biomechanics-1.png\";s:8:\"filesize\";i:227401;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26283,15605,'_wp_attached_file','2019/07/Supination-of-the-foot-Foot-Biomechanics-1.png'),(26284,15605,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:382;s:6:\"height\";i:1046;s:4:\"file\";s:54:\"2019/07/Supination-of-the-foot-Foot-Biomechanics-1.png\";s:8:\"filesize\";i:219276;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26285,15606,'_wp_attached_file','2019/07/The-Gait-Cycle-Foot-Biomechanics-1.png'),(26286,15606,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1188;s:6:\"height\";i:754;s:4:\"file\";s:46:\"2019/07/The-Gait-Cycle-Foot-Biomechanics-1.png\";s:8:\"filesize\";i:306730;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26287,15609,'_wp_attached_file','2019/07/Foot-Biomechanics-Part-1-The-Over-Pronation-Fallacy-1.png'),(26288,15609,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:65:\"2019/07/Foot-Biomechanics-Part-1-The-Over-Pronation-Fallacy-1.png\";s:8:\"filesize\";i:909748;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26289,15787,'_wp_attached_file','2019/08/Jacks-test-1-scaled.jpg'),(26290,15787,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:31:\"2019/08/Jacks-test-1-scaled.jpg\";s:8:\"filesize\";i:845368;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:16:\"Jacks-test-1.jpg\";}'),(26291,15788,'_wp_attached_file','2019/08/Subtalar-Motion-Test-1-scaled.jpg'),(26292,15788,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:41:\"2019/08/Subtalar-Motion-Test-1-scaled.jpg\";s:8:\"filesize\";i:579450;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:26:\"Subtalar-Motion-Test-1.jpg\";}'),(26293,15789,'_wp_attached_file','2019/08/Foot-Biomechanics-Part-2-1.png'),(26294,15789,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:38:\"2019/08/Foot-Biomechanics-Part-2-1.png\";s:8:\"filesize\";i:1239569;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26295,16056,'_wp_attached_file','2019/08/Golf-Biomechanics-Workshop-1.png'),(26296,16056,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:40:\"2019/08/Golf-Biomechanics-Workshop-1.png\";s:8:\"filesize\";i:1796075;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26297,16056,'_wp_attachment_image_alt','Golf Biomechanics Workshop'),(26298,16056,'dt-img-hide-title','0'),(26299,16057,'_wp_attached_file','2019/08/Running-Biomechanics-Workshop-1.png'),(26300,16057,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:43:\"2019/08/Running-Biomechanics-Workshop-1.png\";s:8:\"filesize\";i:858824;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26301,16057,'_wp_attachment_image_alt','Running Biomechanics Workshop'),(26302,16057,'dt-img-hide-title','0'),(26303,16228,'_wp_attached_file','2019/08/The-Weak-Core-Myth_-Core-Progressions-That-All-Personal-Trainers-Should-Know-1.png'),(26304,16228,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:90:\"2019/08/The-Weak-Core-Myth_-Core-Progressions-That-All-Personal-Trainers-Should-Know-1.png\";s:8:\"filesize\";i:1150409;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26305,16241,'_wp_attached_file','2019/08/Core-Progressions-for-personal-trainers-1-1-scaled.jpg'),(26306,16241,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2019/08/Core-Progressions-for-personal-trainers-1-1-scaled.jpg\";s:8:\"filesize\";i:294075;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469186142\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"Core-Progressions-for-personal-trainers-1-1.jpg\";}'),(26307,16245,'_wp_attached_file','2019/08/Core-progressions-for-personal-trainers-2-1-scaled.jpg'),(26308,16245,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2019/08/Core-progressions-for-personal-trainers-2-1-scaled.jpg\";s:8:\"filesize\";i:312550;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469186138\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:47:\"Core-progressions-for-personal-trainers-2-1.jpg\";}'),(26309,16251,'_wp_attached_file','2019/08/Core-Progressions-all-personal-trainers-should-know-4-1-scaled.jpg'),(26310,16251,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1819;s:4:\"file\";s:74:\"2019/08/Core-Progressions-all-personal-trainers-should-know-4-1-scaled.jpg\";s:8:\"filesize\";i:292515;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469186219\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:59:\"Core-Progressions-all-personal-trainers-should-know-4-1.jpg\";}'),(26311,16252,'_wp_attached_file','2019/08/Core-Progressions-for-personal-trainers-to-use-with-clients-3-1-scaled.jpg'),(26312,16252,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:82:\"2019/08/Core-Progressions-for-personal-trainers-to-use-with-clients-3-1-scaled.jpg\";s:8:\"filesize\";i:345557;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469186198\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"45\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:67:\"Core-Progressions-for-personal-trainers-to-use-with-clients-3-1.jpg\";}'),(26313,16254,'_wp_attached_file','2019/08/Core-Progressions-Prone-Kneeling-1-scaled.jpg'),(26314,16254,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:53:\"2019/08/Core-Progressions-Prone-Kneeling-1-scaled.jpg\";s:8:\"filesize\";i:319003;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469186237\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:38:\"Core-Progressions-Prone-Kneeling-1.jpg\";}'),(26315,16258,'_wp_attached_file','2019/08/Core-Progressions-Prone-Kneeling-2-1-scaled.jpg'),(26316,16258,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:55:\"2019/08/Core-Progressions-Prone-Kneeling-2-1-scaled.jpg\";s:8:\"filesize\";i:304237;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469186275\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:40:\"Core-Progressions-Prone-Kneeling-2-1.jpg\";}'),(26317,16412,'_wp_attached_file','2019/08/Bridge-Extension-Core-Training-1-scaled.jpg'),(26318,16412,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:51:\"2019/08/Bridge-Extension-Core-Training-1-scaled.jpg\";s:8:\"filesize\";i:379413;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469185737\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"45\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:36:\"Bridge-Extension-Core-Training-1.jpg\";}'),(26319,16413,'_wp_attached_file','2019/08/Flexor-Core-Training-1-scaled.jpg'),(26320,16413,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1936;s:4:\"file\";s:41:\"2019/08/Flexor-Core-Training-1-scaled.jpg\";s:8:\"filesize\";i:325051;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469185214\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:26:\"Flexor-Core-Training-1.jpg\";}'),(26321,16420,'_wp_attached_file','2019/08/Core-Ratios-Side-Bridge-2-1-scaled.jpg'),(26322,16420,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:46:\"2019/08/Core-Ratios-Side-Bridge-2-1-scaled.jpg\";s:8:\"filesize\";i:333778;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469186772\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:31:\"Core-Ratios-Side-Bridge-2-1.jpg\";}'),(26323,16422,'_wp_attached_file','2019/08/Isometric-Flexion-Test-1.png'),(26324,16422,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:519;s:6:\"height\";i:495;s:4:\"file\";s:36:\"2019/08/Isometric-Flexion-Test-1.png\";s:8:\"filesize\";i:154289;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26325,16423,'_wp_attached_file','2019/08/Isometric-Extension-Test-1.png'),(26326,16423,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:534;s:6:\"height\";i:531;s:4:\"file\";s:38:\"2019/08/Isometric-Extension-Test-1.png\";s:8:\"filesize\";i:160142;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26327,16424,'_wp_attached_file','2019/08/Isometric-Lateral-Test-1.png'),(26328,16424,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:537;s:6:\"height\";i:534;s:4:\"file\";s:36:\"2019/08/Isometric-Lateral-Test-1.png\";s:8:\"filesize\";i:144865;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26329,17662,'_wp_attached_file','2019/10/Communication-Skills-For-Personal-Trainers-1.png'),(26330,17662,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:56:\"2019/10/Communication-Skills-For-Personal-Trainers-1.png\";s:8:\"filesize\";i:870182;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26331,17664,'_wp_attached_file','2019/10/Communication-Skills-For-Personal-Trainers-Biomechanics-Coach-1-scaled.jpg'),(26332,17664,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1214;s:4:\"file\";s:82:\"2019/10/Communication-Skills-For-Personal-Trainers-Biomechanics-Coach-1-scaled.jpg\";s:8:\"filesize\";i:444055;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1530968318\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:9:\"0.0015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:67:\"Communication-Skills-For-Personal-Trainers-Biomechanics-Coach-1.jpg\";}'),(26333,17664,'dt-video-url',''),(26334,17664,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549'),(26335,17664,'dt-img-hide-title','0'),(26336,17850,'_wp_attached_file','2019/10/The-Cossack-Should-it-be-in-your-or-your-clients-training-plans-1.png'),(26337,17850,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:77:\"2019/10/The-Cossack-Should-it-be-in-your-or-your-clients-training-plans-1.png\";s:8:\"filesize\";i:1096355;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26338,17917,'_wp_attached_file','2019/10/products-icon-1.png'),(26339,17917,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:503;s:6:\"height\";i:463;s:4:\"file\";s:27:\"2019/10/products-icon-1.png\";s:8:\"filesize\";i:253969;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26340,17992,'_wp_attached_file','2019/10/The-Deadlift-Which-variation-is-right-for-you-Biomechanics-Coach-1.png'),(26341,17992,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:78:\"2019/10/The-Deadlift-Which-variation-is-right-for-you-Biomechanics-Coach-1.png\";s:8:\"filesize\";i:1016805;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26342,18162,'_wp_attached_file','2019/10/Great-Coaches-are-Great-Students-1-scaled.jpg'),(26343,18162,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:53:\"2019/10/Great-Coaches-are-Great-Students-1-scaled.jpg\";s:8:\"filesize\";i:478117;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1530973077\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:38:\"Great-Coaches-are-Great-Students-1.jpg\";}'),(26344,18288,'_wp_attached_file','2019/11/Earwax-Experience-Halloween-Biomechanics-Education-1.png'),(26345,18288,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:64:\"2019/11/Earwax-Experience-Halloween-Biomechanics-Education-1.png\";s:8:\"filesize\";i:946884;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26346,18460,'_wp_attached_file','2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png'),(26347,18460,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:54:\"2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png\";s:8:\"filesize\";i:1028983;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26348,18476,'_wp_attached_file','2019/11/pelvic-spine-image-1-scaled.jpg'),(26349,18476,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:39:\"2019/11/pelvic-spine-image-1-scaled.jpg\";s:8:\"filesize\";i:650994;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535288506\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"2200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"pelvic-spine-image-1.jpg\";}'),(26350,18477,'_wp_attached_file','2019/11/pelvic-spine-image416x278-1.jpg'),(26351,18477,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:416;s:6:\"height\";i:278;s:4:\"file\";s:39:\"2019/11/pelvic-spine-image416x278-1.jpg\";s:8:\"filesize\";i:66777;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535288506\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"2200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26352,18485,'_wp_attached_file','2019/11/shoulder-knee-foot-416x278-1.jpg'),(26353,18485,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:416;s:6:\"height\";i:278;s:4:\"file\";s:40:\"2019/11/shoulder-knee-foot-416x278-1.jpg\";s:8:\"filesize\";i:69449;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535291370\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:4:\"2200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26354,18633,'_wp_attached_file','2019/11/Hip-Flexors-Are-they-actually-tight_-1.png'),(26355,18633,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:50:\"2019/11/Hip-Flexors-Are-they-actually-tight_-1.png\";s:8:\"filesize\";i:1308802;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26356,18634,'_wp_attached_file','2019/11/Modified-Thomas-Test-Biomechanics-Education-1.jpeg'),(26357,18634,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:854;s:4:\"file\";s:58:\"2019/11/Modified-Thomas-Test-Biomechanics-Education-1.jpeg\";s:8:\"filesize\";i:293248;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535291471\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"900\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26358,18736,'_wp_attached_file','2019/11/iMoveFreely-12-tips-for-a-healthier-happier-life-1.png'),(26359,18736,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:62:\"2019/11/iMoveFreely-12-tips-for-a-healthier-happier-life-1.png\";s:8:\"filesize\";i:1272668;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26360,23949,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:1499;s:4:\"file\";s:15:\"IMG_3042-1.jpeg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-768x1151.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(26361,26107,'_wp_attached_file','2021/02/shutterstock_309794156-scaled-1.jpg'),(26362,26107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2021/02/shutterstock_309794156-scaled-1.jpg\";s:8:\"filesize\";i:547678;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26363,30605,'dt-img-hide-title','0'),(26364,30606,'dt-img-hide-title','0'),(26365,30610,'dt-img-hide-title','0'),(26366,30612,'dt-img-hide-title','0'),(26367,31065,'_wp_attachment_image_alt','Online vs Face to Face workshop - biomechanics education'),(26368,31065,'dt-img-hide-title','0'),(26369,31068,'_wp_attachment_image_alt','gabin-vallet - Online vs Face to Face- biomechanics education'),(26370,31068,'dt-img-hide-title','0'),(26371,31069,'_wp_attachment_image_alt','jonathan-borba - online vs face to face workshop - biomechanics education'),(26372,31069,'dt-img-hide-title','0'),(26373,31185,'_wp_attachment_image_alt','[Case Study] Elite Lifter Laura Hewitt - biomechanics education'),(26374,31185,'dt-img-hide-title','0'),(26375,31260,'_wp_attachment_image_alt','Understanding Nerves - young man relaxing on the sofa'),(26376,31260,'dt-img-hide-title','0'),(26377,31261,'_wp_attachment_image_alt','Understanding Nerves - young woman exercising'),(26378,31261,'dt-img-hide-title','0'),(26379,31262,'_wp_attachment_image_alt','Understanding Nerves - Rachel Frances Thomson'),(26380,31262,'dt-img-hide-title','0'),(26381,31422,'_wp_attachment_image_alt','Neuromuscular Exercise - biomechanics education'),(26382,31422,'dt-img-hide-title','0'),(26383,31424,'_wp_attachment_image_alt','Neuromuscular Exercise - one leg'),(26384,31424,'dt-img-hide-title','0'),(26385,31431,'_wp_attachment_image_alt','rachel thomson - exercise biomechanics education'),(26386,31431,'dt-img-hide-title','0'),(26387,31432,'_wp_attachment_image_alt','Neuromuscular Exercise with dog - rachel thomson'),(26388,31432,'dt-img-hide-title','0'),(26389,31433,'_wp_attachment_image_alt','neuromuscular exercise - rachel thomson'),(26390,31433,'dt-img-hide-title','0'),(26391,31612,'_wp_attachment_image_alt','Mark Laws - IBA discovery day'),(26392,31612,'dt-img-hide-title','0'),(26393,31613,'_wp_attachment_image_alt','Mark Laws - biomechanics education'),(26394,31613,'dt-img-hide-title','0'),(26395,31614,'_wp_attachment_image_alt','IBA Discovery Day Workshops - biomechanics education'),(26396,31614,'dt-img-hide-title','0'),(26397,31747,'_wp_attachment_image_alt','The Power of Words - biomechanics education'),(26398,31747,'dt-img-hide-title','0'),(26399,31749,'_wp_attachment_image_alt','brett-jordan - practice makes perfect'),(26400,31749,'dt-img-hide-title','0'),(26401,31877,'_wp_attachment_image_alt','Portrait_Mike Stewart - biomechanics education'),(26402,31877,'dt-img-hide-title','0'),(26403,31879,'_wp_attachment_image_alt','JBE Rio 3 - the kaizen project'),(26404,31879,'dt-img-hide-title','0'),(26405,32012,'_wp_attachment_image_alt','Rachel France - the kaizen project'),(26406,32012,'dt-img-hide-title','0'),(26407,32179,'_wp_attachment_image_alt','Rachel France - exercising'),(26408,32179,'dt-img-hide-title','0'),(26409,32182,'_wp_attachment_image_alt','Rachel France - cimspa member profile'),(26410,32182,'dt-img-hide-title','0'),(26411,32556,'_wp_attachment_image_alt','A man lies on an exercise mat, he is wearing a blue top and black shorts, white socks, and white trainers. He has his left knee bent and right leg straight on the floor. Rachel is knelt beside him wearing an orange top and black tracksuit bottoms, and socks. She is gesturing something with her hands and talking to the class.'),(26412,32556,'dt-img-hide-title','0'),(26413,35276,'_wp_attached_file','2022/05/DSC_6385-scaled-1.jpg'),(26414,35276,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:29:\"2022/05/DSC_6385-scaled-1.jpg\";s:8:\"filesize\";i:705156;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535281439\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"38\";s:3:\"iso\";s:4:\"2200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26415,35279,'_wp_attached_file','2022/05/2O8A2841-scaled-1.jpg'),(26416,35279,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2022/05/2O8A2841-scaled-1.jpg\";s:8:\"filesize\";i:540859;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1475847647\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26417,35280,'_wp_attached_file','2022/05/2O8A2843-scaled-1.jpg'),(26418,35280,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2022/05/2O8A2843-scaled-1.jpg\";s:8:\"filesize\";i:519696;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1475847892\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26419,35281,'_wp_attached_file','2022/05/IMG_4234-1.jpg'),(26420,35281,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:1365;s:4:\"file\";s:22:\"2022/05/IMG_4234-1.jpg\";s:8:\"filesize\";i:347870;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1511123652\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26421,35282,'_wp_attached_file','2022/05/IMG_1548-1.jpg'),(26422,35282,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:640;s:4:\"file\";s:22:\"2022/05/IMG_1548-1.jpg\";s:8:\"filesize\";i:58592;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26423,35283,'_wp_attached_file','2022/05/IMG_2774-scaled-1.jpeg'),(26424,35283,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:30:\"2022/05/IMG_2774-scaled-1.jpeg\";s:8:\"filesize\";i:578458;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 11 Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1581076538\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"125\";s:13:\"shutter_speed\";s:17:\"0.010204081632653\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26425,35284,'_wp_attached_file','2022/05/DSC_7309-scaled-1.jpg'),(26426,35284,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:29:\"2022/05/DSC_7309-scaled-1.jpg\";s:8:\"filesize\";i:712197;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535296129\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"78\";s:3:\"iso\";s:4:\"5000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26427,35285,'_wp_attached_file','2022/05/DSC_6931-scaled-1.jpg'),(26428,35285,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:29:\"2022/05/DSC_6931-scaled-1.jpg\";s:8:\"filesize\";i:644927;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535291219\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26429,35287,'_wp_attached_file','2022/05/DSC_7309-1-scaled-1.jpg'),(26430,35287,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:31:\"2022/05/DSC_7309-1-scaled-1.jpg\";s:8:\"filesize\";i:712197;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535296129\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"78\";s:3:\"iso\";s:4:\"5000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26431,35484,'_wp_attached_file','2023/03/FFG_Wordmark_Black_RGB-01-2.png'),(26432,35484,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:39:\"2023/03/FFG_Wordmark_Black_RGB-01-2.png\";s:8:\"filesize\";i:20247;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26433,35488,'_wp_attached_file','2023/03/FFG_Wordmark_Black_RGB-01-1-1.png'),(26434,35488,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:41:\"2023/03/FFG_Wordmark_Black_RGB-01-1-1.png\";s:8:\"filesize\";i:20247;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26435,35490,'_wp_attached_file','2023/03/FFT_Wordmark_FutureCoral_RGB-01-1.png'),(26436,35490,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:45:\"2023/03/FFT_Wordmark_FutureCoral_RGB-01-1.png\";s:8:\"filesize\";i:19644;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26437,35748,'_wp_attached_file','2023/04/sam-moghadam-khamseh-vOZP2LojrHI-unsplash-scaled-1.jpg'),(26438,35748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:62:\"2023/04/sam-moghadam-khamseh-vOZP2LojrHI-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:639956;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26439,35749,'_wp_attached_file','2023/04/sule-makaroglu-PnUYkTFkOD0-unsplash-scaled-1.jpg'),(26440,35749,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2023/04/sule-makaroglu-PnUYkTFkOD0-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:868046;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26441,35750,'_wp_attached_file','2023/04/nathan-dumlao-NXMZxygMw8o-unsplash-scaled-1.jpg'),(26442,35750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:55:\"2023/04/nathan-dumlao-NXMZxygMw8o-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:453623;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26443,35751,'_wp_attached_file','2023/04/jonathan-borba-R0y_bEUjiOM-unsplash-scaled-1.jpg'),(26444,35751,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:56:\"2023/04/jonathan-borba-R0y_bEUjiOM-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:447219;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26445,35752,'_wp_attached_file','2023/04/sincerely-media-5uLbdKsUXMg-unsplash-scaled-1.jpg'),(26446,35752,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:57:\"2023/04/sincerely-media-5uLbdKsUXMg-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:334453;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26447,35753,'_wp_attached_file','2023/04/toralf-thomassen-5S40ixhBK-I-unsplash-scaled-1.jpg'),(26448,35753,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2057;s:4:\"file\";s:58:\"2023/04/toralf-thomassen-5S40ixhBK-I-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:305625;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26449,35754,'_wp_attached_file','2023/04/sincerely-media-mvHuY-t4QII-unsplash-scaled-1.jpg'),(26450,35754,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:57:\"2023/04/sincerely-media-mvHuY-t4QII-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:365334;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26451,35755,'_wp_attached_file','2023/04/sincerely-media-LYn0koTX-oo-unsplash-scaled-1.jpg'),(26452,35755,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:57:\"2023/04/sincerely-media-LYn0koTX-oo-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:196122;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26453,35805,'_wp_attached_file','2018/01/BROGAN-NEEDHAM-1-1.png'),(26454,35805,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1054;s:6:\"height\";i:1138;s:4:\"file\";s:30:\"2018/01/BROGAN-NEEDHAM-1-1.png\";s:8:\"filesize\";i:1752847;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26455,35806,'_wp_attached_file','2018/01/LEWIS-BAKER-1-1.png'),(26456,35806,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:762;s:6:\"height\";i:1180;s:4:\"file\";s:27:\"2018/01/LEWIS-BAKER-1-1.png\";s:8:\"filesize\";i:682442;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26457,35817,'_wp_attached_file','2023/04/IMG_4905-1.jpg'),(26458,35817,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1058;s:6:\"height\";i:1113;s:4:\"file\";s:22:\"2023/04/IMG_4905-1.jpg\";s:8:\"filesize\";i:206400;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1681076462\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26459,35818,'_wp_attached_file','2023/04/KIM-TOMLIN-1.jpg'),(26460,35818,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2023/04/KIM-TOMLIN-1.jpg\";s:8:\"filesize\";i:586436;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1622132091\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26461,35819,'_wp_attached_file','2023/04/PAUL-SWAINSON-1.jpg'),(26462,35819,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:662;s:4:\"file\";s:27:\"2023/04/PAUL-SWAINSON-1.jpg\";s:8:\"filesize\";i:64404;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26463,35837,'_wp_attached_file','2016/09/Screenshot-2023-02-07-at-15.05.56-1.png'),(26464,35837,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1144;s:6:\"height\";i:326;s:4:\"file\";s:47:\"2016/09/Screenshot-2023-02-07-at-15.05.56-1.png\";s:8:\"filesize\";i:477103;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26465,35882,'_wp_attached_file','2022/02/CIMSPA-1_2-CPD-Black-RGB-1.png'),(26466,35882,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:237;s:6:\"height\";i:326;s:4:\"file\";s:38:\"2022/02/CIMSPA-1_2-CPD-Black-RGB-1.png\";s:8:\"filesize\";i:8377;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26467,35883,'_wp_attached_file','2022/02/CIMSPA-1-CPD-Black-RGB-1.png'),(26468,35883,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:237;s:6:\"height\";i:325;s:4:\"file\";s:36:\"2022/02/CIMSPA-1-CPD-Black-RGB-1.png\";s:8:\"filesize\";i:7277;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26469,35886,'_wp_attached_file','2021/02/CIMSPA-2-CPD-Black-RGB-1.png'),(26470,35886,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:238;s:6:\"height\";i:325;s:4:\"file\";s:36:\"2021/02/CIMSPA-2-CPD-Black-RGB-1.png\";s:8:\"filesize\";i:8062;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26471,35888,'_wp_attached_file','2020/03/CIMSPA-10-CPD-Endorsed-Black-RGB-1.png'),(26472,35888,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:238;s:6:\"height\";i:326;s:4:\"file\";s:46:\"2020/03/CIMSPA-10-CPD-Endorsed-Black-RGB-1.png\";s:8:\"filesize\";i:9752;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26473,35889,'_wp_attached_file','2020/03/CIMSPA-2-CPD-Black-RGB-1.png'),(26474,35889,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:238;s:6:\"height\";i:325;s:4:\"file\";s:36:\"2020/03/CIMSPA-2-CPD-Black-RGB-1.png\";s:8:\"filesize\";i:8062;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26475,35890,'_wp_attached_file','2020/03/CIMSPA-7-CPD-Endorsed-Black-RGB-1.png'),(26476,35890,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:237;s:6:\"height\";i:326;s:4:\"file\";s:45:\"2020/03/CIMSPA-7-CPD-Endorsed-Black-RGB-1.png\";s:8:\"filesize\";i:9152;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26477,35891,'_wp_attached_file','2020/03/CIMSPA-9-CPD-Endorsed-Black-RGB-1.png'),(26478,35891,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:237;s:6:\"height\";i:326;s:4:\"file\";s:45:\"2020/03/CIMSPA-9-CPD-Endorsed-Black-RGB-1.png\";s:8:\"filesize\";i:9791;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26479,35892,'_wp_attached_file','2018/02/CIMSPA-3-CPD-Endorsed-Black-RGB-1.png'),(26480,35892,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:237;s:6:\"height\";i:326;s:4:\"file\";s:45:\"2018/02/CIMSPA-3-CPD-Endorsed-Black-RGB-1.png\";s:8:\"filesize\";i:9573;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26481,35976,'_wp_attached_file','2019/09/Screenshot-2023-05-03-at-09.06.28-1.png'),(26482,35976,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1256;s:6:\"height\";i:1254;s:4:\"file\";s:47:\"2019/09/Screenshot-2023-05-03-at-09.06.28-1.png\";s:8:\"filesize\";i:2284623;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26483,36060,'_wp_attached_file','2023/05/Screenshot-2022-02-28-at-12.33.59-218x300-1-1.png'),(26484,36060,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:218;s:6:\"height\";i:300;s:4:\"file\";s:57:\"2023/05/Screenshot-2022-02-28-at-12.33.59-218x300-1-1.png\";s:8:\"filesize\";i:72024;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26485,36061,'_wp_attached_file','2023/05/PAUL-SWAINSON-232x300-1-1.jpg'),(26486,36061,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:232;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2023/05/PAUL-SWAINSON-232x300-1-1.jpg\";s:8:\"filesize\";i:11576;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26487,36111,'_wp_attached_file','2018/01/RajKharay_Stepthotix-1.png'),(26488,36111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:721;s:6:\"height\";i:721;s:4:\"file\";s:34:\"2018/01/RajKharay_Stepthotix-1.png\";s:8:\"filesize\";i:535700;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26489,36112,'_wp_attached_file','2018/01/Omar-fitandfun-292-Copy-scaled-1.jpg'),(26490,36112,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2220;s:4:\"file\";s:44:\"2018/01/Omar-fitandfun-292-Copy-scaled-1.jpg\";s:8:\"filesize\";i:543358;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"NIKON D90\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1378661591\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26491,36113,'_wp_attached_file','2018/01/21d7656c-9c04-41e2-8682-aff07c31d097-1.jpg'),(26492,36113,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:4:\"file\";s:50:\"2018/01/21d7656c-9c04-41e2-8682-aff07c31d097-1.jpg\";s:8:\"filesize\";i:290066;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26493,36118,'_wp_attached_file','2018/02/IMG_4960-1.heic'),(26494,36118,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:3103423;}'),(26495,36119,'_wp_attached_file','2018/02/IMG_4960-1.jpg'),(26496,36119,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1636;s:6:\"height\";i:2180;s:4:\"file\";s:22:\"2018/02/IMG_4960-1.jpg\";s:8:\"filesize\";i:1314346;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 13 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1681281224\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.7\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26497,36200,'_wp_attached_file','2023/05/mathew-schwartz-zIIXVa5BwvM-unsplash-scaled-1.jpg'),(26498,36200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:57:\"2023/05/mathew-schwartz-zIIXVa5BwvM-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:223857;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26499,36201,'_wp_attached_file','2023/05/kiwihug-Hld-BtdRdPU-unsplash-scaled-1.jpg'),(26500,36201,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:49:\"2023/05/kiwihug-Hld-BtdRdPU-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:281207;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26501,36202,'_wp_attached_file','2023/05/ta-z-Nk7hHi3I__0-unsplash-scaled-1.jpg'),(26502,36202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:46:\"2023/05/ta-z-Nk7hHi3I__0-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:443690;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26503,36214,'_wp_attached_file','2023/05/shutterstock_1067442071-300x200-1-1.jpg'),(26504,36214,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:47:\"2023/05/shutterstock_1067442071-300x200-1-1.jpg\";s:8:\"filesize\";i:16852;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:67:\"Copyright (c) 2018 Lopolo/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:35:\"Modern,Rehabilitation,Physiotherapy\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"treatment,medical,rehab,woman,mature,young,exercise,nursing,reco\";}}}'),(26505,36327,'_wp_attached_file','2023/06/Privacy-Policy_2023-1.pdf'),(26506,36327,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:29:\"Privacy-Policy_2023-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:248160;}s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Privacy-Policy_2023-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179309;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Privacy-Policy_2023-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48225;}}s:8:\"filesize\";i:73904;}'),(26507,36328,'_wp_attached_file','2023/06/Biomechanics-Education-Health-Safety_2023-1.pdf'),(26508,36328,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:51:\"Biomechanics-Education-Health-Safety_2023-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:338344;}s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Biomechanics-Education-Health-Safety_2023-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:250151;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"Biomechanics-Education-Health-Safety_2023-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66048;}}s:8:\"filesize\";i:277381;}'),(26509,36349,'_wp_attached_file','2023/06/The-movement-optimists-affirmation-9-1.png'),(26510,36349,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:50:\"2023/06/The-movement-optimists-affirmation-9-1.png\";s:8:\"filesize\";i:1563318;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26511,36378,'_wp_attached_file','2023/06/MicrosoftTeams-image-37-2.jpg'),(26512,36378,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2016;s:6:\"height\";i:908;s:4:\"file\";s:37:\"2023/06/MicrosoftTeams-image-37-2.jpg\";s:8:\"filesize\";i:261428;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26513,36384,'_wp_attached_file','2023/06/MicrosoftTeams-image-41-1.jpg'),(26514,36384,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2016;s:6:\"height\";i:908;s:4:\"file\";s:37:\"2023/06/MicrosoftTeams-image-41-1.jpg\";s:8:\"filesize\";i:276370;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26515,36385,'_wp_attached_file','2023/06/MicrosoftTeams-image-35-1.jpg'),(26516,36385,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1153;s:4:\"file\";s:37:\"2023/06/MicrosoftTeams-image-35-1.jpg\";s:8:\"filesize\";i:229958;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26517,36386,'_wp_attached_file','2023/06/MicrosoftTeams-image-36-1.jpg'),(26518,36386,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2016;s:6:\"height\";i:908;s:4:\"file\";s:37:\"2023/06/MicrosoftTeams-image-36-1.jpg\";s:8:\"filesize\";i:360994;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26519,36387,'_wp_attached_file','2023/06/MicrosoftTeams-image-38-1.jpg'),(26520,36387,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2016;s:6:\"height\";i:908;s:4:\"file\";s:37:\"2023/06/MicrosoftTeams-image-38-1.jpg\";s:8:\"filesize\";i:373779;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26521,36388,'_wp_attached_file','2023/06/MicrosoftTeams-image-39-1.jpg'),(26522,36388,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2016;s:6:\"height\";i:908;s:4:\"file\";s:37:\"2023/06/MicrosoftTeams-image-39-1.jpg\";s:8:\"filesize\";i:384854;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26523,36389,'_wp_attached_file','2023/06/MicrosoftTeams-image-40-1.jpg'),(26524,36389,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2016;s:6:\"height\";i:908;s:4:\"file\";s:37:\"2023/06/MicrosoftTeams-image-40-1.jpg\";s:8:\"filesize\";i:378170;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26525,36390,'_wp_attached_file','2023/06/MicrosoftTeams-image-37-1-1.jpg'),(26526,36390,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2016;s:6:\"height\";i:908;s:4:\"file\";s:39:\"2023/06/MicrosoftTeams-image-37-1-1.jpg\";s:8:\"filesize\";i:261428;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26527,36400,'_wp_attached_file','2023/06/MicrosoftTeams-image-45-1.jpg'),(26528,36400,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1600;s:4:\"file\";s:37:\"2023/06/MicrosoftTeams-image-45-1.jpg\";s:8:\"filesize\";i:279638;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(26529,36415,'_wp_attached_file','2023/06/Screenshot-2023-06-27-at-08.46.30-1.png'),(26530,36415,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2710;s:6:\"height\";i:1518;s:4:\"file\";s:47:\"2023/06/Screenshot-2023-06-27-at-08.46.30-1.png\";s:8:\"filesize\";i:2407004;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26531,36419,'_wp_attached_file','2023/06/amol-sonar-wUyiLNXnNHY-unsplash-scaled-1.jpg'),(26532,36419,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:52:\"2023/06/amol-sonar-wUyiLNXnNHY-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:279631;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(26533,38017,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_Black_RGB-01.png\";}s:18:\"full-1710432922797\";a:3:{s:5:\"width\";i:500;s:6:\"height\";i:117;s:4:\"file\";s:44:\"FFG_Wordmark_Black_RGB-01-e1710432746919.png\";}}'),(26534,38017,'_wp_page_template','default'),(26535,38017,'dt-video-url',''),(26536,38017,'dt-img-link',''),(26537,38017,'dt-img-hide-title','0'),(26538,38023,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_White_RGB-01.png\";}}'),(26539,38023,'dt-img-hide-title','0'),(26540,38588,'_wp_attachment_context','custom-header'),(26541,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(26542,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(26543,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(26544,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(26545,192,'dt-img-hide-title','0'),(26546,194,'dt-img-hide-title','0'),(26547,205,'dt-img-hide-title','0'),(26548,206,'dt-img-hide-title','0'),(26549,208,'dt-img-hide-title','0'),(26550,247,'dt-img-hide-title','0'),(26551,248,'_wp_attachment_context','site-icon'),(26552,248,'dt-img-hide-title','0'),(26553,265,'dt-img-hide-title','0'),(26554,283,'dt-img-hide-title','0'),(26555,284,'dt-img-hide-title','0'),(26556,285,'dt-img-hide-title','0'),(26557,287,'dt-img-hide-title','0'),(26558,290,'dt-img-hide-title','0'),(26559,291,'dt-img-hide-title','0'),(26560,294,'dt-img-hide-title','0'),(26561,297,'dt-img-hide-title','0'),(26562,333,'dt-img-hide-title','0'),(26563,341,'dt-img-hide-title','0'),(26564,407,'dt-img-hide-title','0'),(26565,458,'dt-img-hide-title','0'),(26566,495,'dt-img-hide-title','0'),(26567,497,'dt-img-hide-title','0'),(26568,505,'dt-img-hide-title','0'),(26569,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(26570,210,'dt-img-link',''),(26571,210,'dt-img-hide-title','0'),(26572,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(26573,221,'dt-img-link',''),(26574,221,'dt-img-hide-title','0'),(26575,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(26576,224,'dt-img-link',''),(26577,224,'dt-img-hide-title','0'),(26578,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(26579,228,'dt-img-link',''),(26580,228,'dt-img-hide-title','0'),(26581,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(26582,230,'dt-img-link',''),(26583,230,'dt-img-hide-title','0'),(26584,237,'dt-img-hide-title','0'),(26585,237,'dt-img-link',''),(26586,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(26587,557,'dt-img-hide-title','0'),(26588,559,'dt-img-hide-title','0'),(26589,562,'dt-img-hide-title','0'),(26590,569,'dt-img-hide-title','0'),(26591,592,'dt-img-hide-title','0'),(26592,596,'dt-img-hide-title','0'),(26593,617,'dt-img-hide-title','0'),(26594,620,'dt-img-hide-title','0'),(26595,621,'dt-img-hide-title','0'),(26596,623,'dt-img-hide-title','0'),(26597,624,'dt-img-hide-title','0'),(26598,644,'dt-img-hide-title','0'),(26599,648,'dt-img-hide-title','0'),(26600,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(26601,824,'dt-img-link',''),(26602,824,'dt-img-hide-title','0'),(26603,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(26604,825,'dt-img-link',''),(26605,825,'dt-img-hide-title','0'),(26606,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(26607,828,'dt-img-link',''),(26608,828,'dt-img-hide-title','0'),(26609,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(26610,1450,'dt-img-link',''),(26611,1450,'dt-img-hide-title','0'),(26612,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(26613,1451,'dt-img-link',''),(26614,1451,'dt-img-hide-title','0'),(26615,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(26616,1452,'dt-img-link',''),(26617,1452,'dt-img-hide-title','0'),(26618,652,'dt-img-hide-title','0'),(26619,655,'dt-img-hide-title','0'),(26620,675,'dt-img-hide-title','0'),(26621,678,'dt-img-hide-title','0'),(26622,683,'dt-img-hide-title','0'),(26623,703,'dt-img-hide-title','0'),(26624,706,'dt-img-hide-title','0'),(26625,709,'dt-img-hide-title','0'),(26626,712,'dt-img-hide-title','0'),(26627,713,'dt-img-hide-title','0'),(26628,714,'dt-img-hide-title','0'),(26629,715,'dt-img-hide-title','0'),(26630,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(26631,722,'dt-img-hide-title','0'),(26632,735,'dt-img-hide-title','0'),(26633,759,'dt-img-hide-title','0'),(26634,762,'dt-img-hide-title','0'),(26635,766,'dt-img-hide-title','0'),(26636,770,'dt-img-hide-title','0'),(26637,804,'dt-img-hide-title','0'),(26638,814,'dt-img-hide-title','0'),(26639,827,'dt-img-hide-title','0'),(26640,830,'dt-img-hide-title','0'),(26641,854,'dt-img-hide-title','0'),(26642,857,'dt-img-hide-title','0'),(26643,874,'dt-img-hide-title','0'),(26644,937,'dt-img-hide-title','0'),(26645,941,'dt-img-hide-title','0'),(26646,955,'dt-img-hide-title','0'),(26647,969,'_wp_attachment_image_alt','imove Freely'),(26648,969,'dt-img-hide-title','0'),(26649,1001,'dt-img-hide-title','0'),(26650,1015,'dt-img-hide-title','0'),(26651,1018,'dt-img-hide-title','0'),(26652,1020,'dt-img-hide-title','0'),(26653,1021,'dt-img-hide-title','0'),(26654,1024,'dt-img-hide-title','0'),(26655,1027,'dt-img-hide-title','0'),(26656,1030,'dt-img-hide-title','0'),(26657,1035,'dt-img-hide-title','0'),(26658,1039,'dt-img-hide-title','0'),(26659,1045,'dt-img-hide-title','0'),(26660,1051,'dt-img-hide-title','0'),(26661,1052,'dt-img-hide-title','0'),(26662,1055,'dt-img-hide-title','0'),(26663,1057,'dt-img-hide-title','0'),(26664,1061,'dt-img-hide-title','0'),(26665,1065,'dt-img-hide-title','0'),(26666,1068,'dt-img-hide-title','0'),(26667,1073,'dt-img-hide-title','0'),(26668,1078,'dt-img-hide-title','0'),(26669,1084,'dt-img-hide-title','0'),(26670,1088,'dt-img-hide-title','0'),(26671,1094,'dt-img-hide-title','0'),(26672,1096,'dt-img-hide-title','0'),(26673,1097,'dt-img-hide-title','0'),(26674,1099,'dt-img-hide-title','0'),(26675,1106,'dt-img-hide-title','0'),(26676,1110,'dt-img-hide-title','0'),(26677,1112,'dt-img-hide-title','0'),(26678,1116,'dt-img-hide-title','0'),(26679,1125,'dt-img-hide-title','0'),(26680,1129,'dt-img-hide-title','0'),(26681,1145,'dt-img-hide-title','0'),(26682,1167,'dt-img-hide-title','0'),(26683,1184,'dt-img-hide-title','0'),(26684,1186,'dt-img-hide-title','0'),(26685,1187,'dt-img-hide-title','0'),(26686,1189,'dt-img-hide-title','0'),(26687,1194,'dt-img-hide-title','0'),(26688,1197,'dt-img-hide-title','0'),(26689,1201,'dt-img-hide-title','0'),(26690,1202,'dt-img-hide-title','0'),(26691,1203,'dt-img-hide-title','0'),(26692,1204,'dt-img-hide-title','0'),(26693,1205,'dt-img-hide-title','0'),(26694,1206,'dt-img-hide-title','0'),(26695,1207,'dt-img-hide-title','0'),(26696,1209,'dt-img-hide-title','0'),(26697,1210,'dt-img-hide-title','0'),(26698,1211,'dt-img-hide-title','0'),(26699,1212,'dt-img-hide-title','0'),(26700,1213,'dt-img-hide-title','0'),(26701,1214,'dt-img-hide-title','0'),(26702,1220,'dt-img-hide-title','0'),(26703,1223,'dt-img-hide-title','0'),(26704,1226,'dt-img-hide-title','0'),(26705,1228,'dt-img-hide-title','0'),(26706,1232,'dt-img-hide-title','0'),(26707,1235,'dt-img-hide-title','0'),(26708,1239,'dt-img-hide-title','0'),(26709,1242,'dt-img-hide-title','0'),(26710,1246,'dt-img-hide-title','0'),(26711,1256,'dt-img-hide-title','0'),(26712,1262,'dt-img-hide-title','0'),(26713,1265,'dt-img-hide-title','0'),(26714,1269,'dt-img-hide-title','0'),(26715,1275,'dt-img-hide-title','0'),(26716,1279,'dt-img-hide-title','0'),(26717,1312,'dt-img-hide-title','0'),(26718,1316,'dt-img-hide-title','0'),(26719,1320,'dt-img-hide-title','0'),(26720,1326,'dt-img-hide-title','0'),(26721,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(26722,1334,'dt-img-hide-title','0'),(26723,1338,'dt-img-hide-title','0'),(26724,1339,'dt-img-hide-title','0'),(26725,1343,'dt-img-hide-title','0'),(26726,1347,'dt-img-hide-title','0'),(26727,1351,'dt-img-hide-title','0'),(26728,1354,'dt-img-hide-title','0'),(26729,1357,'dt-img-hide-title','0'),(26730,1359,'dt-img-hide-title','0'),(26731,1362,'dt-img-hide-title','0'),(26732,1366,'dt-img-hide-title','0'),(26733,1379,'dt-img-hide-title','0'),(26734,1398,'dt-img-hide-title','0'),(26735,1403,'dt-img-hide-title','0'),(26736,1406,'dt-img-hide-title','0'),(26737,1410,'dt-img-hide-title','0'),(26738,1413,'dt-img-hide-title','0'),(26739,1416,'dt-img-hide-title','0'),(26740,1419,'dt-img-hide-title','0'),(26741,1423,'dt-img-hide-title','0'),(26742,1429,'dt-img-hide-title','0'),(26743,1430,'dt-img-hide-title','0'),(26744,1433,'dt-img-hide-title','0'),(26745,1463,'dt-img-hide-title','0'),(26746,1463,'dt-img-hide-title','0'),(26747,1463,'dt-img-hide-title','0'),(26748,1463,'dt-img-hide-title','0'),(26749,1463,'dt-img-hide-title','0'),(26750,1468,'dt-img-hide-title','0'),(26751,2229,'dt-img-hide-title','0'),(26752,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(26753,2230,'dt-img-hide-title','0'),(26754,2231,'dt-img-hide-title','0'),(26755,2232,'dt-img-hide-title','0'),(26756,2233,'dt-img-hide-title','0'),(26757,2234,'dt-img-hide-title','0'),(26758,2235,'dt-img-hide-title','0'),(26759,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(26760,1474,'dt-img-hide-title','0'),(26761,1475,'dt-img-hide-title','0'),(26762,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(26763,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(26764,1476,'dt-img-hide-title','0'),(26765,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(26766,1478,'dt-img-hide-title','0'),(26767,1479,'dt-img-hide-title','0'),(26768,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(26769,1489,'dt-img-hide-title','0'),(26770,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(26771,1500,'dt-img-hide-title','0'),(26772,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(26773,1501,'dt-img-hide-title','0'),(26774,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(26775,1504,'dt-img-hide-title','0'),(26776,1508,'_wp_attachment_image_alt',''),(26777,1508,'dt-img-hide-title','0'),(26778,1508,'dt-video-url',''),(26779,1508,'dt-img-link',''),(26780,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(26781,1510,'dt-img-hide-title','0'),(26782,1514,'dt-img-hide-title','0'),(26783,2236,'dt-img-hide-title','0'),(26784,2237,'dt-img-hide-title','0'),(26785,2238,'dt-img-hide-title','0'),(26786,2239,'dt-img-hide-title','0'),(26787,2247,'dt-img-hide-title','0'),(26788,2248,'dt-img-hide-title','0'),(26789,2249,'dt-img-hide-title','0'),(26790,1533,'dt-img-hide-title','0'),(26791,1535,'dt-img-hide-title','0'),(26792,1536,'dt-img-hide-title','0'),(26793,1540,'dt-img-hide-title','0'),(26794,1546,'dt-img-hide-title','0'),(26795,1556,'dt-img-hide-title','0'),(26796,1566,'dt-img-hide-title','0'),(26797,1595,'dt-img-hide-title','0'),(26798,1608,'dt-video-url',''),(26799,1608,'dt-img-link',''),(26800,1608,'dt-img-hide-title','0'),(26801,1825,'dt-img-hide-title','0'),(26802,2250,'dt-img-hide-title','0'),(26803,2251,'dt-img-hide-title','0'),(26804,2252,'dt-img-hide-title','0'),(26805,2253,'dt-img-hide-title','0'),(26806,2254,'dt-img-hide-title','0'),(26807,2255,'dt-img-hide-title','0'),(26808,2256,'dt-img-hide-title','0'),(26809,2257,'dt-img-hide-title','0'),(26810,2258,'dt-img-hide-title','0'),(26811,2259,'dt-img-hide-title','0'),(26812,1646,'dt-img-hide-title','0'),(26813,1650,'dt-img-hide-title','0'),(26817,2241,'dt-img-hide-title','0'),(26818,2242,'dt-img-hide-title','0'),(26819,2243,'dt-img-hide-title','0'),(26820,2244,'dt-img-hide-title','0'),(26821,2245,'dt-img-hide-title','0'),(26822,2246,'dt-img-hide-title','0'),(26823,2260,'dt-img-hide-title','0'),(26824,2261,'dt-img-hide-title','0'),(26825,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(26826,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(26827,2262,'dt-img-hide-title','0'),(26828,2263,'dt-img-hide-title','0'),(26829,2264,'dt-img-hide-title','0'),(26830,2265,'dt-img-hide-title','0'),(26831,2266,'dt-img-hide-title','0'),(26832,2267,'dt-img-hide-title','0'),(26833,2268,'dt-img-hide-title','0'),(26834,2269,'dt-img-hide-title','0'),(26835,2270,'dt-img-hide-title','0'),(26836,1658,'dt-img-hide-title','0'),(26837,1660,'dt-img-hide-title','0'),(26838,1667,'dt-img-hide-title','0'),(26839,1668,'dt-img-hide-title','0'),(26840,1669,'dt-img-hide-title','0'),(26841,1674,'dt-img-hide-title','0'),(26842,2102,'dt-img-hide-title','0'),(26843,2103,'dt-img-hide-title','0'),(26844,2104,'dt-img-hide-title','0'),(26845,2105,'dt-img-hide-title','0'),(26846,2106,'dt-img-hide-title','0'),(26847,2107,'dt-img-hide-title','0'),(26848,2108,'dt-img-hide-title','0'),(26849,2109,'dt-img-hide-title','0'),(26850,2110,'dt-img-hide-title','0'),(26851,2111,'dt-img-hide-title','0'),(26852,2112,'dt-img-hide-title','0'),(26853,2113,'dt-img-hide-title','0'),(26854,2114,'dt-img-hide-title','0'),(26855,2115,'dt-img-hide-title','0'),(26856,1675,'dt-img-hide-title','0'),(26857,1699,'dt-img-hide-title','0'),(26858,1700,'dt-img-hide-title','0'),(26859,1701,'dt-img-hide-title','0'),(26860,1702,'dt-img-hide-title','0'),(26861,2217,'dt-img-hide-title','0'),(26862,2222,'dt-img-hide-title','0'),(26863,2271,'dt-img-hide-title','0'),(26864,2289,'dt-img-hide-title','0'),(26865,2291,'dt-img-hide-title','0'),(26866,2293,'dt-img-hide-title','0'),(26867,2295,'dt-img-hide-title','0'),(26868,2297,'dt-img-hide-title','0'),(26869,2299,'dt-img-hide-title','0'),(26870,2301,'dt-img-hide-title','0'),(26871,2303,'dt-img-hide-title','0'),(26872,2305,'dt-img-hide-title','0'),(26873,2307,'dt-img-hide-title','0'),(26874,2405,'dt-img-hide-title','0'),(26875,2405,'_wp_attachment_image_alt','iMoveFreely® Exercises To Try At Home'),(26876,2409,'dt-img-hide-title','0'),(26877,2409,'_wp_attachment_image_alt','Don’t Listen To Us….Listen To Them!'),(26878,2410,'dt-img-hide-title','0'),(26879,2410,'_wp_attachment_image_alt','Presentations at The Movement Convention'),(26880,2411,'dt-img-hide-title','0'),(26881,2411,'_wp_attachment_image_alt','Just For Fun'),(26882,2413,'dt-img-hide-title','0'),(26883,2413,'_wp_attachment_image_alt','We all Squat Differently?'),(26884,2415,'dt-img-hide-title','0'),(26885,2415,'_wp_attachment_image_alt','What Do Our Workshops Look Like?'),(26886,2534,'dt-img-hide-title','0'),(26887,2535,'dt-img-hide-title','0'),(26888,2537,'dt-img-hide-title','0'),(26889,2538,'dt-img-hide-title','0'),(26890,2539,'dt-img-hide-title','0'),(26891,2540,'dt-img-hide-title','0'),(26892,2541,'dt-img-hide-title','0'),(26893,2548,'dt-img-hide-title','0'),(26894,2549,'dt-img-hide-title','0'),(26895,2550,'dt-img-hide-title','0'),(26896,2551,'dt-img-hide-title','0'),(26897,2552,'dt-img-hide-title','0'),(26898,2611,'dt-img-hide-title','0'),(26899,2612,'dt-img-hide-title','0'),(26900,2613,'dt-img-hide-title','0'),(26901,2614,'dt-img-hide-title','0'),(26902,2615,'dt-img-hide-title','0'),(26903,2655,'dt-img-hide-title','0'),(26904,2656,'dt-img-hide-title','0'),(26905,2657,'dt-img-hide-title','0'),(26906,2658,'dt-img-hide-title','0'),(26907,2721,'dt-img-hide-title','0'),(26908,2722,'dt-img-hide-title','0'),(26909,2723,'dt-img-hide-title','0'),(26910,2724,'dt-img-hide-title','0'),(26911,2725,'dt-img-hide-title','0'),(26912,2726,'dt-img-hide-title','0'),(26913,2727,'dt-img-hide-title','0'),(26914,2728,'dt-img-hide-title','0'),(26915,2729,'dt-img-hide-title','0'),(26916,2756,'dt-img-hide-title','0'),(26917,2759,'dt-img-hide-title','0'),(26918,2781,'dt-img-hide-title','0'),(26919,2786,'dt-img-hide-title','0'),(26920,2787,'dt-img-hide-title','0'),(26921,2788,'dt-img-hide-title','0'),(26922,2788,'_wp_attachment_image_alt','the effect of quadratus lumborum muscle'),(26923,2810,'dt-img-hide-title','0'),(26924,2811,'dt-img-hide-title','0'),(26925,2812,'dt-img-hide-title','0'),(26926,2813,'dt-img-hide-title','0'),(26927,2814,'dt-img-hide-title','0'),(26928,2815,'dt-img-hide-title','0'),(26929,2816,'dt-img-hide-title','0'),(26930,2817,'dt-img-hide-title','0'),(26931,2818,'dt-img-hide-title','0'),(26932,2837,'dt-img-hide-title','0'),(26933,2846,'dt-img-hide-title','0'),(26934,2847,'dt-img-hide-title','0'),(26935,2856,'dt-img-hide-title','0'),(26936,2857,'dt-img-hide-title','0'),(26937,2858,'dt-img-hide-title','0'),(26938,2859,'dt-img-hide-title','0'),(26939,2860,'dt-img-hide-title','0'),(26940,2861,'dt-img-hide-title','0'),(26941,2862,'dt-img-hide-title','0'),(26942,2868,'dt-img-hide-title','0'),(26943,2869,'dt-img-hide-title','0'),(26944,2870,'dt-img-hide-title','0'),(26945,2871,'dt-img-hide-title','0'),(26946,2875,'dt-img-hide-title','0'),(26947,2876,'dt-img-hide-title','0'),(26948,2877,'dt-img-hide-title','0'),(26949,2878,'dt-img-hide-title','0'),(26950,2879,'dt-img-hide-title','0'),(26951,2894,'dt-img-hide-title','0'),(26952,2894,'dt-video-url',''),(26953,2894,'dt-img-link',''),(26954,2896,'dt-img-hide-title','0'),(26955,2896,'dt-video-url',''),(26956,2896,'dt-img-link',''),(26957,2960,'dt-img-hide-title','0'),(26958,2961,'dt-img-hide-title','0'),(26959,2962,'dt-img-hide-title','0'),(26960,2963,'dt-img-hide-title','0'),(26961,2964,'dt-img-hide-title','0'),(26962,2965,'dt-img-hide-title','0'),(26963,2966,'dt-img-hide-title','0'),(26964,2967,'dt-img-hide-title','0'),(26965,2968,'dt-img-hide-title','0'),(26966,2969,'dt-img-hide-title','0'),(26967,2976,'dt-img-hide-title','0'),(26968,2986,'dt-img-hide-title','0'),(26969,2999,'dt-img-hide-title','0'),(26970,3002,'dt-img-hide-title','0'),(26971,3003,'dt-img-hide-title','0'),(26972,3004,'dt-img-hide-title','0'),(26973,3005,'dt-img-hide-title','0'),(26974,3006,'dt-img-hide-title','0'),(26975,3014,'dt-img-hide-title','0'),(26976,3015,'dt-img-hide-title','0'),(26977,3016,'dt-img-hide-title','0'),(26978,3034,'dt-img-hide-title','0'),(26979,3173,'dt-img-hide-title','0'),(26980,3174,'dt-img-hide-title','0'),(26981,3179,'dt-img-hide-title','0'),(26982,3180,'dt-img-hide-title','0'),(26983,3183,'dt-img-hide-title','0'),(26984,3188,'dt-img-hide-title','0'),(26985,3191,'dt-img-hide-title','0'),(26986,3200,'dt-img-hide-title','0'),(26987,3201,'dt-img-hide-title','0'),(26988,3202,'dt-img-hide-title','0'),(26989,3203,'dt-img-hide-title','0'),(26990,3205,'dt-img-hide-title','0'),(26991,3206,'dt-img-hide-title','0'),(26992,3207,'dt-img-hide-title','0'),(26993,3208,'dt-img-hide-title','0'),(26994,3213,'dt-img-hide-title','0'),(26995,3214,'dt-img-hide-title','0'),(26996,3228,'dt-img-hide-title','0'),(26997,3229,'dt-img-hide-title','0'),(26998,3230,'dt-img-hide-title','0'),(26999,3234,'dt-img-hide-title','0'),(27000,3242,'dt-img-hide-title','0'),(27001,3243,'dt-img-hide-title','0'),(27002,3325,'dt-img-hide-title','0'),(27003,3479,'dt-img-hide-title','0'),(27004,3496,'dt-img-hide-title','0'),(27005,3496,'_wp_attachment_image_alt','Rachel France - profile image'),(27006,3497,'dt-img-hide-title','0'),(27007,3498,'dt-img-hide-title','0'),(27008,3499,'dt-img-hide-title','0'),(27009,3502,'dt-img-hide-title','0'),(27010,3504,'dt-img-hide-title','0'),(27011,3505,'dt-img-hide-title','0'),(27012,3506,'dt-img-hide-title','0'),(27013,3507,'dt-img-hide-title','0'),(27014,3511,'dt-img-hide-title','0'),(27015,3528,'dt-img-hide-title','0'),(27016,3534,'dt-video-url',''),(27017,3534,'dt-img-link',''),(27018,3534,'dt-img-hide-title','0'),(27019,3535,'dt-video-url',''),(27020,3535,'dt-img-link',''),(27021,3535,'dt-img-hide-title','0'),(27022,3535,'_wp_attachment_image_alt','Tachel France - biomechanics education'),(27023,3536,'dt-video-url',''),(27024,3536,'dt-img-link',''),(27025,3536,'dt-img-hide-title','0'),(27026,3537,'dt-video-url',''),(27027,3537,'dt-img-link',''),(27028,3537,'dt-img-hide-title','0'),(27029,3551,'dt-img-hide-title','0'),(27030,3629,'dt-img-hide-title','0'),(27031,3630,'dt-img-hide-title','0'),(27032,3631,'dt-img-hide-title','0'),(27033,3632,'dt-img-hide-title','0'),(27034,3633,'dt-img-hide-title','0'),(27035,3634,'dt-img-hide-title','0'),(27036,3635,'dt-img-hide-title','0'),(27037,3636,'dt-img-hide-title','0'),(27038,3655,'dt-video-url',''),(27039,3655,'dt-img-link',''),(27040,3655,'dt-img-hide-title','0'),(27041,3690,'dt-img-hide-title','0'),(27042,3692,'dt-img-hide-title','0'),(27043,3693,'dt-img-hide-title','0'),(27044,3694,'dt-img-hide-title','0'),(27045,3695,'dt-img-hide-title','0'),(27046,3699,'dt-img-hide-title','0'),(27047,3784,'dt-img-hide-title','0'),(27048,3789,'dt-img-hide-title','0'),(27049,3801,'dt-img-hide-title','0'),(27050,3803,'dt-img-hide-title','0'),(27051,4107,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics'),(27052,4107,'dt-img-hide-title','0'),(27053,4107,'_wp_old_slug','what-exactly-is-intrinsic-biomechanics'),(27054,4108,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics-2'),(27055,4108,'dt-img-hide-title','0'),(27056,4399,'_wp_attachment_image_alt','special-fast-track-3-day-pelvic-spine-biomechanics-workshop'),(27057,4399,'dt-img-hide-title','0'),(27058,4601,'dt-img-hide-title','0'),(27059,4705,'_wp_attachment_image_alt','imovefreely-instructor - biomechanics education'),(27060,4705,'dt-img-hide-title','0'),(27061,4707,'dt-img-hide-title','0'),(27062,4709,'_wp_attachment_image_alt','intrinsic-biomechanics-taster'),(27063,4709,'dt-img-hide-title','0'),(27064,4715,'_wp_attachment_image_alt','low-back-health-workshop - biomechanics education'),(27065,4715,'dt-img-hide-title','0'),(27066,4717,'_wp_attachment_image_alt','knee-foot-biomechanics-2-day-workshop'),(27067,4717,'dt-img-hide-title','0'),(27068,4733,'_wp_attachment_image_alt','iba-discovery-day-workshop'),(27069,4733,'dt-img-hide-title','0'),(27070,5135,'_wp_attachment_image_alt','Biomechanics Coach & Diploma Workshop Series'),(27071,5135,'dt-img-hide-title','0'),(27072,5139,'_wp_attachment_image_alt','Low Back Health Workshop'),(27073,5139,'dt-img-hide-title','0'),(27074,5143,'_wp_attachment_image_alt','Spine Biomechanics 2 Day Workshop'),(27075,5143,'dt-img-hide-title','0'),(27076,5149,'_wp_attachment_image_alt','Pelvic Biomechanics 2 Day Workshop'),(27077,5149,'dt-img-hide-title','0'),(27078,5151,'_wp_attachment_image_alt','Shoulder Biomechanics 2 Day Workshop'),(27079,5151,'dt-img-hide-title','0'),(27080,5155,'dt-img-hide-title','0'),(27081,5155,'dt-video-url',''),(27082,5155,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split'),(27083,5253,'dt-img-hide-title','0'),(27084,5325,'dt-img-hide-title','0'),(27085,6395,'dt-img-hide-title','0'),(27086,6410,'_wp_attachment_image_alt','Rachel France - Listening to Dan John, Never Let Go'),(27087,6410,'dt-img-hide-title','0'),(27088,6682,'_wp_attachment_image_alt','Rachel France smiling - Group Exercise'),(27089,6682,'dt-img-hide-title','0'),(27090,6683,'_wp_attachment_image_alt','Rachel France - Biomechanics Education - Group Exercise'),(27091,6683,'dt-img-hide-title','0'),(27092,6724,'dt-img-hide-title','0'),(27093,7303,'dt-img-hide-title','0'),(27094,7690,'_wp_page_template','default'),(27095,7690,'dt-video-url',''),(27096,7690,'dt-img-link',''),(27097,7690,'dt-img-hide-title','0'),(27098,7690,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1284;s:6:\"height\";i:1248;s:4:\"file\";s:10:\"Flowin.png\";}}'),(27099,7696,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1128;s:6:\"height\";i:871;s:4:\"file\";s:17:\"TherapyEmpire.png\";}}'),(27100,7696,'_wp_page_template','default'),(27101,7696,'dt-video-url',''),(27102,7696,'dt-img-link',''),(27103,7696,'dt-img-hide-title','0'),(27104,7709,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1085;s:6:\"height\";i:851;s:4:\"file\";s:15:\"PulseRoll-1.png\";}}'),(27105,7709,'_wp_page_template','default'),(27106,7709,'dt-video-url',''),(27107,7709,'dt-img-link',''),(27108,7709,'dt-img-hide-title','0'),(27109,7711,'_wp_page_template','default'),(27110,7711,'dt-video-url',''),(27111,7711,'dt-img-link',''),(27112,7711,'dt-img-hide-title','0'),(27113,8351,'dt-img-hide-title','0'),(27114,9448,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:420;s:6:\"height\";i:315;s:4:\"file\";s:7:\"STA.png\";}}'),(27115,9448,'_wp_page_template','default'),(27116,9448,'dt-video-url',''),(27117,9448,'dt-img-link',''),(27118,9448,'dt-img-hide-title','0'),(27119,10372,'_wp_attachment_image_alt','Level 4 Low Back Pain Qualification for Personal Trainers'),(27120,10372,'dt-img-hide-title','0'),(27121,10836,'_wp_old_slug','always-always-start-with-why'),(27122,10836,'dt-img-hide-title','0'),(27123,12889,'dt-img-hide-title','0'),(27124,13010,'_wp_attachment_image_alt','Are Shoulder Problems Are The New Low Back Pain_'),(27125,13010,'dt-img-hide-title','0'),(27126,13150,'dt-img-hide-title','0'),(27127,13709,'dt-video-url',''),(27128,13709,'dt-img-link','https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description'),(27129,13709,'dt-img-hide-title','0'),(27130,16056,'_wp_attachment_image_alt','Golf Biomechanics Workshop'),(27131,16056,'dt-img-hide-title','0'),(27132,16057,'_wp_attachment_image_alt','Running Biomechanics Workshop'),(27133,16057,'dt-img-hide-title','0'),(27134,17664,'dt-video-url',''),(27135,17664,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549'),(27136,17664,'dt-img-hide-title','0'),(27137,18856,'_wp_attached_file','2019/12/Asking-SMART-Questions-Biomechanics-Coaching-1.png'),(27138,18856,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:58:\"2019/12/Asking-SMART-Questions-Biomechanics-Coaching-1.png\";s:8:\"filesize\";i:1178630;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27139,19073,'_wp_attached_file','2019/12/Intrinsic-Biomechanics-For-Personal-Trainers-3-Phase-System-For-Health-Function-Performance-1.png'),(27140,19073,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:105:\"2019/12/Intrinsic-Biomechanics-For-Personal-Trainers-3-Phase-System-For-Health-Function-Performance-1.png\";s:8:\"filesize\";i:1188437;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27141,19073,'_wp_attachment_image_alt','Intrinsic Biomechanics For Personal Trainers - 3 Phase System For Health, Function & Performance'),(27142,19073,'dt-img-hide-title','0'),(27143,19125,'_wp_attached_file','2019/12/2019-A-Year-In-Review-For-Biomechanics-Education-1.png'),(27144,19125,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:62:\"2019/12/2019-A-Year-In-Review-For-Biomechanics-Education-1.png\";s:8:\"filesize\";i:889768;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27145,19204,'_wp_attached_file','2019/12/6-Questions-To-Get-You-Started-In-2020-1.png'),(27146,19204,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:52:\"2019/12/6-Questions-To-Get-You-Started-In-2020-1.png\";s:8:\"filesize\";i:938890;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27147,19321,'_wp_attached_file','2020/01/New-Year-New-You-Set-Up-To-Fail-1.png'),(27148,19321,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:45:\"2020/01/New-Year-New-You-Set-Up-To-Fail-1.png\";s:8:\"filesize\";i:1114085;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27149,19427,'_wp_attached_file','2020/01/NET-Training-How-to-fit-mobility-into-strength-training-programmes-1.png'),(27150,19427,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:80:\"2020/01/NET-Training-How-to-fit-mobility-into-strength-training-programmes-1.png\";s:8:\"filesize\";i:1081252;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27151,19588,'_wp_attached_file','2020/01/Time-Energy-Vampires-Biomechanics-Education-1.png'),(27152,19588,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:57:\"2020/01/Time-Energy-Vampires-Biomechanics-Education-1.png\";s:8:\"filesize\";i:1113510;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27153,19607,'_wp_attached_file','2020/01/Screenshot-2020-01-28-at-11.24.14-1.png'),(27154,19607,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:830;s:6:\"height\";i:974;s:4:\"file\";s:47:\"2020/01/Screenshot-2020-01-28-at-11.24.14-1.png\";s:8:\"filesize\";i:988061;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27155,19678,'_wp_attached_file','2020/02/Can-we-forget-how-to-move-Biomechanics-Education-1.png'),(27156,19678,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:62:\"2020/02/Can-we-forget-how-to-move-Biomechanics-Education-1.png\";s:8:\"filesize\";i:1046546;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27157,19852,'_wp_attached_file','2020/02/Retiring-From-Armed-Forces-Becoming-A-Biomechanics-Coach-1.png'),(27158,19852,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:70:\"2020/02/Retiring-From-Armed-Forces-Becoming-A-Biomechanics-Coach-1.png\";s:8:\"filesize\";i:1199920;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27159,19916,'_wp_attached_file','2020/02/Kaizen_white_on_black-e1497196549198-1.jpg'),(27160,19916,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:174;s:4:\"file\";s:50:\"2020/02/Kaizen_white_on_black-e1497196549198-1.jpg\";s:8:\"filesize\";i:17603;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27161,19918,'_wp_attached_file','2020/02/Kaizen_Profile_Rachel-1.png'),(27162,19918,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:308;s:6:\"height\";i:432;s:4:\"file\";s:35:\"2020/02/Kaizen_Profile_Rachel-1.png\";s:8:\"filesize\";i:188733;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27163,19976,'_wp_attached_file','2020/02/Can-You-Be-Fit-But-Unhealthy-At-The-Same-Time_-1.png'),(27164,19976,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:60:\"2020/02/Can-You-Be-Fit-But-Unhealthy-At-The-Same-Time_-1.png\";s:8:\"filesize\";i:1144666;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27165,19983,'_wp_attached_file','2020/02/Can-You-Be-Fit-But-Unhealthy-At-The-Same-Time-Why-I-stopped-running-1.png'),(27166,19983,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:81:\"2020/02/Can-You-Be-Fit-But-Unhealthy-At-The-Same-Time-Why-I-stopped-running-1.png\";s:8:\"filesize\";i:795868;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27167,20048,'_wp_attached_file','2020/02/Screenshot-2020-02-19-at-09.24.55-2.png'),(27168,20048,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1394;s:6:\"height\";i:1056;s:4:\"file\";s:47:\"2020/02/Screenshot-2020-02-19-at-09.24.55-2.png\";s:8:\"filesize\";i:2327227;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27169,20049,'_wp_attached_file','2020/02/Screenshot-2020-02-19-at-09.24.55-1-1.png'),(27170,20049,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:758;s:4:\"file\";s:49:\"2020/02/Screenshot-2020-02-19-at-09.24.55-1-1.png\";s:8:\"filesize\";i:1094793;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27171,20050,'_wp_attached_file','2020/02/IMG_2750-2.jpg'),(27172,20050,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1125;s:6:\"height\";i:1345;s:4:\"file\";s:22:\"2020/02/IMG_2750-2.jpg\";s:8:\"filesize\";i:166687;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27173,20051,'_wp_attached_file','2020/02/IMG_2750-1-1.jpg'),(27174,20051,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:598;s:4:\"file\";s:24:\"2020/02/IMG_2750-1-1.jpg\";s:8:\"filesize\";i:53579;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:10:\"1581024124\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27175,20056,'_wp_attached_file','2020/02/Screenshot-2020-02-19-at-09.08.09-1.png'),(27176,20056,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:819;s:4:\"file\";s:47:\"2020/02/Screenshot-2020-02-19-at-09.08.09-1.png\";s:8:\"filesize\";i:559519;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27177,20060,'_wp_attached_file','2020/02/Screenshot-2020-02-19-at-13.52.00-1.png'),(27178,20060,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:505;s:4:\"file\";s:47:\"2020/02/Screenshot-2020-02-19-at-13.52.00-1.png\";s:8:\"filesize\";i:335185;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27179,20064,'_wp_attached_file','2020/02/Screenshot-2020-02-19-at-09.09.01-1.png'),(27180,20064,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:992;s:4:\"file\";s:47:\"2020/02/Screenshot-2020-02-19-at-09.09.01-1.png\";s:8:\"filesize\";i:632587;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27181,20066,'_wp_attached_file','2020/02/IMG_6077-1.jpg'),(27182,20066,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:667;s:4:\"file\";s:22:\"2020/02/IMG_6077-1.jpg\";s:8:\"filesize\";i:47861;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27183,20169,'_wp_attached_file','2020/02/Elbow-pain-when-gripping-or-pulling_-1.png'),(27184,20169,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:50:\"2020/02/Elbow-pain-when-gripping-or-pulling_-1.png\";s:8:\"filesize\";i:993789;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27185,20291,'_wp_attached_file','2020/03/Reduced-Nerve-Mobility-Inhibits-Muscle-Performance-1.png'),(27186,20291,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:64:\"2020/03/Reduced-Nerve-Mobility-Inhibits-Muscle-Performance-1.png\";s:8:\"filesize\";i:1019463;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27187,20461,'_wp_attached_file','2020/03/Building-healthy-habits-Biomechanics-Education-1.png'),(27188,20461,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:60:\"2020/03/Building-healthy-habits-Biomechanics-Education-1.png\";s:8:\"filesize\";i:960290;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27189,20625,'_wp_attached_file','2020/03/Screenshot-2020-03-18-at-16.10.48-1.png'),(27190,20625,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1406;s:6:\"height\";i:1100;s:4:\"file\";s:47:\"2020/03/Screenshot-2020-03-18-at-16.10.48-1.png\";s:8:\"filesize\";i:561033;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27191,20627,'_wp_attached_file','2020/03/Screenshot-2020-03-18-at-16.14.04-1.png'),(27192,20627,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:808;s:6:\"height\";i:610;s:4:\"file\";s:47:\"2020/03/Screenshot-2020-03-18-at-16.14.04-1.png\";s:8:\"filesize\";i:413893;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27193,20628,'_wp_attached_file','2020/03/Screenshot-2020-03-18-at-16.23.00-1.png'),(27194,20628,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1904;s:6:\"height\";i:642;s:4:\"file\";s:47:\"2020/03/Screenshot-2020-03-18-at-16.23.00-1.png\";s:8:\"filesize\";i:2674818;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27195,20629,'_wp_attached_file','2020/03/Screenshot-2020-03-18-at-16.26.37-1.png'),(27196,20629,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1928;s:6:\"height\";i:758;s:4:\"file\";s:47:\"2020/03/Screenshot-2020-03-18-at-16.26.37-1.png\";s:8:\"filesize\";i:2975641;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27197,20631,'_wp_attached_file','2020/03/nadine-shaabana-2JjDzTll6eA-unsplash-scaled-1.jpg'),(27198,20631,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:57:\"2020/03/nadine-shaabana-2JjDzTll6eA-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:189706;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27199,20632,'_wp_attached_file','2020/03/daoudi-aissa-absT1BNRDAI-unsplash-scaled-1.jpg'),(27200,20632,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2101;s:6:\"height\";i:2560;s:4:\"file\";s:54:\"2020/03/daoudi-aissa-absT1BNRDAI-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:935805;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27201,20671,'_wp_attached_file','2020/03/Screenshot-2020-03-20-at-14.49.01-1.png'),(27202,20671,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:498;s:6:\"height\";i:756;s:4:\"file\";s:47:\"2020/03/Screenshot-2020-03-20-at-14.49.01-1.png\";s:8:\"filesize\";i:310084;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27203,20709,'_wp_attached_file','2020/03/IMG_0096-scaled-1.jpg'),(27204,20709,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2020/03/IMG_0096-scaled-1.jpg\";s:8:\"filesize\";i:921902;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27205,21236,'_wp_attached_file','2020/04/Screenshot-2020-04-13-at-15.45.37-1.png'),(27206,21236,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1142;s:6:\"height\";i:784;s:4:\"file\";s:47:\"2020/04/Screenshot-2020-04-13-at-15.45.37-1.png\";s:8:\"filesize\";i:558128;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27207,21237,'_wp_attached_file','2020/04/kari-shea-qa1wvrlWCio-unsplash-1.jpg'),(27208,21237,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:1200;s:4:\"file\";s:44:\"2020/04/kari-shea-qa1wvrlWCio-unsplash-1.jpg\";s:8:\"filesize\";i:160655;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27209,21476,'_wp_attached_file','2020/03/Screenshot-2020-04-27-at-17.03.32-2.png'),(27210,21476,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:880;s:4:\"file\";s:47:\"2020/03/Screenshot-2020-04-27-at-17.03.32-2.png\";s:8:\"filesize\";i:650236;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27211,21477,'_wp_attached_file','2020/03/Screenshot-2020-04-27-at-17.03.32-1-1.png'),(27212,21477,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:800;s:6:\"height\";i:880;s:4:\"file\";s:49:\"2020/03/Screenshot-2020-04-27-at-17.03.32-1-1.png\";s:8:\"filesize\";i:650236;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27213,21527,'_wp_attached_file','2020/03/IMG_5656-1.jpeg'),(27214,21527,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:775;s:4:\"file\";s:23:\"2020/03/IMG_5656-1.jpeg\";s:8:\"filesize\";i:191109;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27215,21528,'_wp_attached_file','2020/03/IMG_5657-1.jpeg'),(27216,21528,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1276;s:6:\"height\";i:642;s:4:\"file\";s:23:\"2020/03/IMG_5657-1.jpeg\";s:8:\"filesize\";i:160922;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27217,21629,'_wp_attached_file','2020/03/Screenshot-2020-04-30-at-08.02.13-1.png'),(27218,21629,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1548;s:6:\"height\";i:1132;s:4:\"file\";s:47:\"2020/03/Screenshot-2020-04-30-at-08.02.13-1.png\";s:8:\"filesize\";i:2110178;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27219,21685,'_wp_attached_file','2020/05/william-iven-SpVHcbuKi6E-unsplash-scaled-1.jpg'),(27220,21685,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1700;s:4:\"file\";s:54:\"2020/05/william-iven-SpVHcbuKi6E-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:253523;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27221,21789,'_wp_attached_file','2020/05/Get-rid-of-your-clients-Biomechanics-Education-1.png'),(27222,21789,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:60:\"2020/05/Get-rid-of-your-clients-Biomechanics-Education-1.png\";s:8:\"filesize\";i:925551;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27223,21886,'_wp_attached_file','2020/05/Screenshot-2020-05-15-at-19.06.58-1.png'),(27224,21886,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2010;s:6:\"height\";i:660;s:4:\"file\";s:47:\"2020/05/Screenshot-2020-05-15-at-19.06.58-1.png\";s:8:\"filesize\";i:1008656;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27225,21887,'_wp_attached_file','2020/05/bewakoof-com-official-mtOMSpOWxRI-unsplash-scaled-1.jpg'),(27226,21887,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1681;s:6:\"height\";i:2560;s:4:\"file\";s:63:\"2020/05/bewakoof-com-official-mtOMSpOWxRI-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:453082;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27227,21937,'_wp_attached_file','2020/05/diego-lozano-yZQ9PCabSoM-unsplash-scaled-1.jpg'),(27228,21937,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:54:\"2020/05/diego-lozano-yZQ9PCabSoM-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:769076;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27229,21940,'_wp_attached_file','2016/10/MG_9952-scaled-1.jpg'),(27230,21940,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:28:\"2016/10/MG_9952-scaled-1.jpg\";s:8:\"filesize\";i:287039;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27231,21949,'_wp_attached_file','2020/05/MET-Muscle-Energy-Techniques-Biomechanics-Education-2020-1.png'),(27232,21949,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:70:\"2020/05/MET-Muscle-Energy-Techniques-Biomechanics-Education-2020-1.png\";s:8:\"filesize\";i:1042806;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27233,22132,'_wp_attached_file','2020/05/Raising-Standards-of-Personal-Trainers-in-the-UK-Biomechanics-Education-CIMPSA-1-1.png'),(27234,22132,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1225;s:6:\"height\";i:612;s:4:\"file\";s:94:\"2020/05/Raising-Standards-of-Personal-Trainers-in-the-UK-Biomechanics-Education-CIMPSA-1-1.png\";s:8:\"filesize\";i:1326967;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27235,23949,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:1499;s:4:\"file\";s:15:\"IMG_3042-1.jpeg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-768x1151.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(27236,37375,'hero_style','default'),(27237,37375,'_hero_style','field_62051d9dc5324'),(27238,37375,'__thumbnail_id','field_617570855ddaf'),(27239,37375,'hero_image_pos_x','right'),(27240,37375,'_hero_image_pos_x','field_62ec3d05390bb'),(27241,37375,'hero_image_pos_y','top'),(27242,37375,'_hero_image_pos_y','field_62ec3d05390bc'),(27243,37375,'hero_image_pos',''),(27244,37375,'_hero_image_pos','field_62ec3d05390ba'),(27245,37375,'hero_title',''),(27246,37375,'_hero_title','field_617571fe285e8'),(27247,37375,'hero_text',''),(27248,37375,'_hero_text','field_6175723c285e9'),(27249,37375,'hero_actions',''),(27250,37375,'_hero_actions','field_61757270285ea'),(27251,37375,'hero_icon',''),(27252,37375,'_hero_icon','field_61a6182199d03'),(27253,37375,'fft_hide_from_listings','0'),(27254,37375,'_fft_hide_from_listings','field_61f1320446ab2'),(27255,37375,'post_format',''),(27256,37375,'_post_format','field_61756bfb51898'),(27257,37375,'post_author',''),(27258,37375,'_post_author','field_62ec389d22113'),(27259,37375,'post_reviewer',''),(27260,37375,'_post_reviewer','field_627140a2a9800'),(27261,37375,'post_table_of_contents','0'),(27262,37375,'_post_table_of_contents','field_65c503bc846a6'),(27263,38947,'_thumbnail_id','34558'),(27264,38947,'__thumbnail_id','field_617570855ddaf'),(27265,38947,'hero_style','default'),(27266,38947,'_hero_style','field_62051d9dc5324'),(27267,38947,'hero_image_pos_x','right'),(27268,38947,'_hero_image_pos_x','field_62ec3d05390bb'),(27269,38947,'hero_image_pos_y','top'),(27270,38947,'_hero_image_pos_y','field_62ec3d05390bc'),(27271,38947,'hero_image_pos',''),(27272,38947,'_hero_image_pos','field_62ec3d05390ba'),(27273,38947,'hero_title',''),(27274,38947,'_hero_title','field_617571fe285e8'),(27275,38947,'hero_text',''),(27276,38947,'_hero_text','field_6175723c285e9'),(27277,38947,'hero_actions',''),(27278,38947,'_hero_actions','field_61757270285ea'),(27279,38947,'hero_icon',''),(27280,38947,'_hero_icon','field_61a6182199d03'),(27281,38947,'fft_hide_from_listings','0'),(27282,38947,'_fft_hide_from_listings','field_61f1320446ab2'),(27283,38947,'post_format',''),(27284,38947,'_post_format','field_61756bfb51898'),(27285,38947,'post_author',''),(27286,38947,'_post_author','field_62ec389d22113'),(27287,38947,'post_reviewer',''),(27288,38947,'_post_reviewer','field_627140a2a9800'),(27289,38947,'post_table_of_contents','0'),(27290,38947,'_post_table_of_contents','field_65c503bc846a6'),(27291,38588,'_wp_attachment_context','custom-header'),(27292,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(27293,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(27294,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(27295,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(27296,192,'dt-img-hide-title','0'),(27297,194,'dt-img-hide-title','0'),(27298,205,'dt-img-hide-title','0'),(27299,206,'dt-img-hide-title','0'),(27300,208,'dt-img-hide-title','0'),(27301,247,'dt-img-hide-title','0'),(27302,248,'_wp_attachment_context','site-icon'),(27303,248,'dt-img-hide-title','0'),(27304,265,'dt-img-hide-title','0'),(27305,283,'dt-img-hide-title','0'),(27306,284,'dt-img-hide-title','0'),(27307,285,'dt-img-hide-title','0'),(27308,287,'dt-img-hide-title','0'),(27309,290,'dt-img-hide-title','0'),(27310,291,'dt-img-hide-title','0'),(27311,294,'dt-img-hide-title','0'),(27312,297,'dt-img-hide-title','0'),(27313,333,'dt-img-hide-title','0'),(27314,341,'dt-img-hide-title','0'),(27315,407,'dt-img-hide-title','0'),(27316,458,'dt-img-hide-title','0'),(27317,495,'dt-img-hide-title','0'),(27318,497,'dt-img-hide-title','0'),(27319,505,'dt-img-hide-title','0'),(27320,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(27321,210,'dt-img-link',''),(27322,210,'dt-img-hide-title','0'),(27323,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(27324,221,'dt-img-link',''),(27325,221,'dt-img-hide-title','0'),(27326,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(27327,224,'dt-img-link',''),(27328,224,'dt-img-hide-title','0'),(27329,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(27330,228,'dt-img-link',''),(27331,228,'dt-img-hide-title','0'),(27332,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(27333,230,'dt-img-link',''),(27334,230,'dt-img-hide-title','0'),(27335,237,'dt-img-hide-title','0'),(27336,237,'dt-img-link',''),(27337,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(27338,557,'dt-img-hide-title','0'),(27339,559,'dt-img-hide-title','0'),(27340,562,'dt-img-hide-title','0'),(27341,569,'dt-img-hide-title','0'),(27342,592,'dt-img-hide-title','0'),(27343,596,'dt-img-hide-title','0'),(27344,617,'dt-img-hide-title','0'),(27345,620,'dt-img-hide-title','0'),(27346,621,'dt-img-hide-title','0'),(27347,623,'dt-img-hide-title','0'),(27348,624,'dt-img-hide-title','0'),(27349,644,'dt-img-hide-title','0'),(27350,648,'dt-img-hide-title','0'),(27351,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(27352,824,'dt-img-link',''),(27353,824,'dt-img-hide-title','0'),(27354,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(27355,825,'dt-img-link',''),(27356,825,'dt-img-hide-title','0'),(27357,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(27358,828,'dt-img-link',''),(27359,828,'dt-img-hide-title','0'),(27360,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(27361,1450,'dt-img-link',''),(27362,1450,'dt-img-hide-title','0'),(27363,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(27364,1451,'dt-img-link',''),(27365,1451,'dt-img-hide-title','0'),(27366,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(27367,1452,'dt-img-link',''),(27368,1452,'dt-img-hide-title','0'),(27369,652,'dt-img-hide-title','0'),(27370,655,'dt-img-hide-title','0'),(27371,675,'dt-img-hide-title','0'),(27372,678,'dt-img-hide-title','0'),(27373,683,'dt-img-hide-title','0'),(27374,703,'dt-img-hide-title','0'),(27375,706,'dt-img-hide-title','0'),(27376,709,'dt-img-hide-title','0'),(27377,712,'dt-img-hide-title','0'),(27378,713,'dt-img-hide-title','0'),(27379,714,'dt-img-hide-title','0'),(27380,715,'dt-img-hide-title','0'),(27381,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(27382,722,'dt-img-hide-title','0'),(27383,735,'dt-img-hide-title','0'),(27384,759,'dt-img-hide-title','0'),(27385,762,'dt-img-hide-title','0'),(27386,766,'dt-img-hide-title','0'),(27387,770,'dt-img-hide-title','0'),(27388,804,'dt-img-hide-title','0'),(27389,814,'dt-img-hide-title','0'),(27390,827,'dt-img-hide-title','0'),(27391,830,'dt-img-hide-title','0'),(27392,854,'dt-img-hide-title','0'),(27393,857,'dt-img-hide-title','0'),(27394,874,'dt-img-hide-title','0'),(27395,937,'dt-img-hide-title','0'),(27396,941,'dt-img-hide-title','0'),(27397,955,'dt-img-hide-title','0'),(27398,969,'_wp_attachment_image_alt','imove Freely'),(27399,969,'dt-img-hide-title','0'),(27400,1001,'dt-img-hide-title','0'),(27401,1015,'dt-img-hide-title','0'),(27402,1018,'dt-img-hide-title','0'),(27403,1020,'dt-img-hide-title','0'),(27404,1021,'dt-img-hide-title','0'),(27405,1024,'dt-img-hide-title','0'),(27406,1027,'dt-img-hide-title','0'),(27407,1030,'dt-img-hide-title','0'),(27408,1035,'dt-img-hide-title','0'),(27409,1039,'dt-img-hide-title','0'),(27410,1045,'dt-img-hide-title','0'),(27411,1051,'dt-img-hide-title','0'),(27412,1052,'dt-img-hide-title','0'),(27413,1055,'dt-img-hide-title','0'),(27414,1057,'dt-img-hide-title','0'),(27415,1061,'dt-img-hide-title','0'),(27416,1065,'dt-img-hide-title','0'),(27417,1068,'dt-img-hide-title','0'),(27418,1073,'dt-img-hide-title','0'),(27419,1078,'dt-img-hide-title','0'),(27420,1084,'dt-img-hide-title','0'),(27421,1088,'dt-img-hide-title','0'),(27422,1094,'dt-img-hide-title','0'),(27423,1096,'dt-img-hide-title','0'),(27424,1097,'dt-img-hide-title','0'),(27425,1099,'dt-img-hide-title','0'),(27426,1106,'dt-img-hide-title','0'),(27427,1110,'dt-img-hide-title','0'),(27428,1112,'dt-img-hide-title','0'),(27429,1116,'dt-img-hide-title','0'),(27430,1125,'dt-img-hide-title','0'),(27431,1129,'dt-img-hide-title','0'),(27432,1145,'dt-img-hide-title','0'),(27433,1167,'dt-img-hide-title','0'),(27434,1184,'dt-img-hide-title','0'),(27435,1186,'dt-img-hide-title','0'),(27436,1187,'dt-img-hide-title','0'),(27437,1189,'dt-img-hide-title','0'),(27438,1194,'dt-img-hide-title','0'),(27439,1197,'dt-img-hide-title','0'),(27440,1201,'dt-img-hide-title','0'),(27441,1202,'dt-img-hide-title','0'),(27442,1203,'dt-img-hide-title','0'),(27443,1204,'dt-img-hide-title','0'),(27444,1205,'dt-img-hide-title','0'),(27445,1206,'dt-img-hide-title','0'),(27446,1207,'dt-img-hide-title','0'),(27447,1209,'dt-img-hide-title','0'),(27448,1210,'dt-img-hide-title','0'),(27449,1211,'dt-img-hide-title','0'),(27450,1212,'dt-img-hide-title','0'),(27451,1213,'dt-img-hide-title','0'),(27452,1214,'dt-img-hide-title','0'),(27453,1220,'dt-img-hide-title','0'),(27454,1223,'dt-img-hide-title','0'),(27455,1226,'dt-img-hide-title','0'),(27456,1228,'dt-img-hide-title','0'),(27457,1232,'dt-img-hide-title','0'),(27458,1235,'dt-img-hide-title','0'),(27459,1239,'dt-img-hide-title','0'),(27460,1242,'dt-img-hide-title','0'),(27461,1246,'dt-img-hide-title','0'),(27462,1256,'dt-img-hide-title','0'),(27463,1262,'dt-img-hide-title','0'),(27464,1265,'dt-img-hide-title','0'),(27465,1269,'dt-img-hide-title','0'),(27466,1275,'dt-img-hide-title','0'),(27467,1279,'dt-img-hide-title','0'),(27468,1312,'dt-img-hide-title','0'),(27469,1316,'dt-img-hide-title','0'),(27470,1320,'dt-img-hide-title','0'),(27471,1326,'dt-img-hide-title','0'),(27472,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(27473,1334,'dt-img-hide-title','0'),(27474,1338,'dt-img-hide-title','0'),(27475,1339,'dt-img-hide-title','0'),(27476,1343,'dt-img-hide-title','0'),(27477,1347,'dt-img-hide-title','0'),(27478,1351,'dt-img-hide-title','0'),(27479,1354,'dt-img-hide-title','0'),(27480,1357,'dt-img-hide-title','0'),(27481,1359,'dt-img-hide-title','0'),(27482,1362,'dt-img-hide-title','0'),(27483,1366,'dt-img-hide-title','0'),(27484,1379,'dt-img-hide-title','0'),(27485,1398,'dt-img-hide-title','0'),(27486,1403,'dt-img-hide-title','0'),(27487,1406,'dt-img-hide-title','0'),(27488,1410,'dt-img-hide-title','0'),(27489,1413,'dt-img-hide-title','0'),(27490,1416,'dt-img-hide-title','0'),(27491,1419,'dt-img-hide-title','0'),(27492,1423,'dt-img-hide-title','0'),(27493,1429,'dt-img-hide-title','0'),(27494,1430,'dt-img-hide-title','0'),(27495,1433,'dt-img-hide-title','0'),(27496,1463,'dt-img-hide-title','0'),(27497,1463,'dt-img-hide-title','0'),(27498,1463,'dt-img-hide-title','0'),(27499,1463,'dt-img-hide-title','0'),(27500,1463,'dt-img-hide-title','0'),(27501,1468,'dt-img-hide-title','0'),(27502,2229,'dt-img-hide-title','0'),(27503,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(27504,2230,'dt-img-hide-title','0'),(27505,2231,'dt-img-hide-title','0'),(27506,2232,'dt-img-hide-title','0'),(27507,2233,'dt-img-hide-title','0'),(27508,2234,'dt-img-hide-title','0'),(27509,2235,'dt-img-hide-title','0'),(27510,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(27511,1474,'dt-img-hide-title','0'),(27512,1475,'dt-img-hide-title','0'),(27513,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(27514,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(27515,1476,'dt-img-hide-title','0'),(27516,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(27517,1478,'dt-img-hide-title','0'),(27518,1479,'dt-img-hide-title','0'),(27519,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(27520,1489,'dt-img-hide-title','0'),(27521,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(27522,1500,'dt-img-hide-title','0'),(27523,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(27524,1501,'dt-img-hide-title','0'),(27525,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(27526,1504,'dt-img-hide-title','0'),(27527,1508,'_wp_attachment_image_alt',''),(27528,1508,'dt-img-hide-title','0'),(27529,1508,'dt-video-url',''),(27530,1508,'dt-img-link',''),(27531,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(27532,1510,'dt-img-hide-title','0'),(27533,1514,'dt-img-hide-title','0'),(27534,2236,'dt-img-hide-title','0'),(27535,2237,'dt-img-hide-title','0'),(27536,2238,'dt-img-hide-title','0'),(27537,2239,'dt-img-hide-title','0'),(27538,2247,'dt-img-hide-title','0'),(27539,2248,'dt-img-hide-title','0'),(27540,2249,'dt-img-hide-title','0'),(27541,1533,'dt-img-hide-title','0'),(27542,1535,'dt-img-hide-title','0'),(27543,1536,'dt-img-hide-title','0'),(27544,1540,'dt-img-hide-title','0'),(27545,1546,'dt-img-hide-title','0'),(27546,1556,'dt-img-hide-title','0'),(27547,1566,'dt-img-hide-title','0'),(27548,1595,'dt-img-hide-title','0'),(27549,1608,'dt-video-url',''),(27550,1608,'dt-img-link',''),(27551,1608,'dt-img-hide-title','0'),(27552,1825,'dt-img-hide-title','0'),(27553,2250,'dt-img-hide-title','0'),(27554,2251,'dt-img-hide-title','0'),(27555,2252,'dt-img-hide-title','0'),(27556,2253,'dt-img-hide-title','0'),(27557,2254,'dt-img-hide-title','0'),(27558,2255,'dt-img-hide-title','0'),(27559,2256,'dt-img-hide-title','0'),(27560,2257,'dt-img-hide-title','0'),(27561,2258,'dt-img-hide-title','0'),(27562,2259,'dt-img-hide-title','0'),(27563,1646,'dt-img-hide-title','0'),(27564,1650,'dt-img-hide-title','0'),(27568,2241,'dt-img-hide-title','0'),(27569,2242,'dt-img-hide-title','0'),(27570,2243,'dt-img-hide-title','0'),(27571,2244,'dt-img-hide-title','0'),(27572,2245,'dt-img-hide-title','0'),(27573,2246,'dt-img-hide-title','0'),(27574,2260,'dt-img-hide-title','0'),(27575,2261,'dt-img-hide-title','0'),(27576,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(27577,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(27578,2262,'dt-img-hide-title','0'),(27579,2263,'dt-img-hide-title','0'),(27580,2264,'dt-img-hide-title','0'),(27581,2265,'dt-img-hide-title','0'),(27582,2266,'dt-img-hide-title','0'),(27583,2267,'dt-img-hide-title','0'),(27584,2268,'dt-img-hide-title','0'),(27585,2269,'dt-img-hide-title','0'),(27586,2270,'dt-img-hide-title','0'),(27587,1658,'dt-img-hide-title','0'),(27588,1660,'dt-img-hide-title','0'),(27589,1667,'dt-img-hide-title','0'),(27590,1668,'dt-img-hide-title','0'),(27591,1669,'dt-img-hide-title','0'),(27592,1674,'dt-img-hide-title','0'),(27593,2102,'dt-img-hide-title','0'),(27594,2103,'dt-img-hide-title','0'),(27595,2104,'dt-img-hide-title','0'),(27596,2105,'dt-img-hide-title','0'),(27597,2106,'dt-img-hide-title','0'),(27598,2107,'dt-img-hide-title','0'),(27599,2108,'dt-img-hide-title','0'),(27600,2109,'dt-img-hide-title','0'),(27601,2110,'dt-img-hide-title','0'),(27602,2111,'dt-img-hide-title','0'),(27603,2112,'dt-img-hide-title','0'),(27604,2113,'dt-img-hide-title','0'),(27605,2114,'dt-img-hide-title','0'),(27606,2115,'dt-img-hide-title','0'),(27607,1675,'dt-img-hide-title','0'),(27608,1699,'dt-img-hide-title','0'),(27609,1700,'dt-img-hide-title','0'),(27610,1701,'dt-img-hide-title','0'),(27611,1702,'dt-img-hide-title','0'),(27612,2217,'dt-img-hide-title','0'),(27613,2222,'dt-img-hide-title','0'),(27614,2271,'dt-img-hide-title','0'),(27615,2289,'dt-img-hide-title','0'),(27616,2291,'dt-img-hide-title','0'),(27617,2293,'dt-img-hide-title','0'),(27618,2295,'dt-img-hide-title','0'),(27619,2297,'dt-img-hide-title','0'),(27620,2299,'dt-img-hide-title','0'),(27621,2301,'dt-img-hide-title','0'),(27622,2303,'dt-img-hide-title','0'),(27623,2305,'dt-img-hide-title','0'),(27624,2307,'dt-img-hide-title','0'),(27625,2405,'dt-img-hide-title','0'),(27626,2405,'_wp_attachment_image_alt','iMoveFreely® Exercises To Try At Home'),(27627,2409,'dt-img-hide-title','0'),(27628,2409,'_wp_attachment_image_alt','Don’t Listen To Us….Listen To Them!'),(27629,2410,'dt-img-hide-title','0'),(27630,2410,'_wp_attachment_image_alt','Presentations at The Movement Convention'),(27631,2411,'dt-img-hide-title','0'),(27632,2411,'_wp_attachment_image_alt','Just For Fun'),(27633,2413,'dt-img-hide-title','0'),(27634,2413,'_wp_attachment_image_alt','We all Squat Differently?'),(27635,2415,'dt-img-hide-title','0'),(27636,2415,'_wp_attachment_image_alt','What Do Our Workshops Look Like?'),(27637,2534,'dt-img-hide-title','0'),(27638,2535,'dt-img-hide-title','0'),(27639,2537,'dt-img-hide-title','0'),(27640,2538,'dt-img-hide-title','0'),(27641,2539,'dt-img-hide-title','0'),(27642,2540,'dt-img-hide-title','0'),(27643,2541,'dt-img-hide-title','0'),(27644,2548,'dt-img-hide-title','0'),(27645,2549,'dt-img-hide-title','0'),(27646,2550,'dt-img-hide-title','0'),(27647,2551,'dt-img-hide-title','0'),(27648,2552,'dt-img-hide-title','0'),(27649,2611,'dt-img-hide-title','0'),(27650,2612,'dt-img-hide-title','0'),(27651,2613,'dt-img-hide-title','0'),(27652,2614,'dt-img-hide-title','0'),(27653,2615,'dt-img-hide-title','0'),(27654,2655,'dt-img-hide-title','0'),(27655,2656,'dt-img-hide-title','0'),(27656,2657,'dt-img-hide-title','0'),(27657,2658,'dt-img-hide-title','0'),(27658,2721,'dt-img-hide-title','0'),(27659,2722,'dt-img-hide-title','0'),(27660,2723,'dt-img-hide-title','0'),(27661,2724,'dt-img-hide-title','0'),(27662,2725,'dt-img-hide-title','0'),(27663,2726,'dt-img-hide-title','0'),(27664,2727,'dt-img-hide-title','0'),(27665,2728,'dt-img-hide-title','0'),(27666,2729,'dt-img-hide-title','0'),(27667,2756,'dt-img-hide-title','0'),(27668,2759,'dt-img-hide-title','0'),(27669,2781,'dt-img-hide-title','0'),(27670,2786,'dt-img-hide-title','0'),(27671,2787,'dt-img-hide-title','0'),(27672,2788,'dt-img-hide-title','0'),(27673,2788,'_wp_attachment_image_alt','the effect of quadratus lumborum muscle'),(27674,2810,'dt-img-hide-title','0'),(27675,2811,'dt-img-hide-title','0'),(27676,2812,'dt-img-hide-title','0'),(27677,2813,'dt-img-hide-title','0'),(27678,2814,'dt-img-hide-title','0'),(27679,2815,'dt-img-hide-title','0'),(27680,2816,'dt-img-hide-title','0'),(27681,2817,'dt-img-hide-title','0'),(27682,2818,'dt-img-hide-title','0'),(27683,2837,'dt-img-hide-title','0'),(27684,2846,'dt-img-hide-title','0'),(27685,2847,'dt-img-hide-title','0'),(27686,2856,'dt-img-hide-title','0'),(27687,2857,'dt-img-hide-title','0'),(27688,2858,'dt-img-hide-title','0'),(27689,2859,'dt-img-hide-title','0'),(27690,2860,'dt-img-hide-title','0'),(27691,2861,'dt-img-hide-title','0'),(27692,2862,'dt-img-hide-title','0'),(27693,2868,'dt-img-hide-title','0'),(27694,2869,'dt-img-hide-title','0'),(27695,2870,'dt-img-hide-title','0'),(27696,2871,'dt-img-hide-title','0'),(27697,2875,'dt-img-hide-title','0'),(27698,2876,'dt-img-hide-title','0'),(27699,2877,'dt-img-hide-title','0'),(27700,2878,'dt-img-hide-title','0'),(27701,2879,'dt-img-hide-title','0'),(27702,2894,'dt-img-hide-title','0'),(27703,2894,'dt-video-url',''),(27704,2894,'dt-img-link',''),(27705,2896,'dt-img-hide-title','0'),(27706,2896,'dt-video-url',''),(27707,2896,'dt-img-link',''),(27708,2960,'dt-img-hide-title','0'),(27709,2961,'dt-img-hide-title','0'),(27710,2962,'dt-img-hide-title','0'),(27711,2963,'dt-img-hide-title','0'),(27712,2964,'dt-img-hide-title','0'),(27713,2965,'dt-img-hide-title','0'),(27714,2966,'dt-img-hide-title','0'),(27715,2967,'dt-img-hide-title','0'),(27716,2968,'dt-img-hide-title','0'),(27717,2969,'dt-img-hide-title','0'),(27718,2976,'dt-img-hide-title','0'),(27719,2986,'dt-img-hide-title','0'),(27720,2999,'dt-img-hide-title','0'),(27721,3002,'dt-img-hide-title','0'),(27722,3003,'dt-img-hide-title','0'),(27723,3004,'dt-img-hide-title','0'),(27724,3005,'dt-img-hide-title','0'),(27725,3006,'dt-img-hide-title','0'),(27726,3014,'dt-img-hide-title','0'),(27727,3015,'dt-img-hide-title','0'),(27728,3016,'dt-img-hide-title','0'),(27729,3034,'dt-img-hide-title','0'),(27730,3173,'dt-img-hide-title','0'),(27731,3174,'dt-img-hide-title','0'),(27732,3179,'dt-img-hide-title','0'),(27733,3180,'dt-img-hide-title','0'),(27734,3183,'dt-img-hide-title','0'),(27735,3188,'dt-img-hide-title','0'),(27736,3191,'dt-img-hide-title','0'),(27737,3200,'dt-img-hide-title','0'),(27738,3201,'dt-img-hide-title','0'),(27739,3202,'dt-img-hide-title','0'),(27740,3203,'dt-img-hide-title','0'),(27741,3205,'dt-img-hide-title','0'),(27742,3206,'dt-img-hide-title','0'),(27743,3207,'dt-img-hide-title','0'),(27744,3208,'dt-img-hide-title','0'),(27745,3213,'dt-img-hide-title','0'),(27746,3214,'dt-img-hide-title','0'),(27747,3228,'dt-img-hide-title','0'),(27748,3229,'dt-img-hide-title','0'),(27749,3230,'dt-img-hide-title','0'),(27750,3234,'dt-img-hide-title','0'),(27751,3242,'dt-img-hide-title','0'),(27752,3243,'dt-img-hide-title','0'),(27753,3325,'dt-img-hide-title','0'),(27754,3479,'dt-img-hide-title','0'),(27755,3496,'dt-img-hide-title','0'),(27756,3496,'_wp_attachment_image_alt','Rachel France - profile image'),(27757,3497,'dt-img-hide-title','0'),(27758,3498,'dt-img-hide-title','0'),(27759,3499,'dt-img-hide-title','0'),(27760,3502,'dt-img-hide-title','0'),(27761,3504,'dt-img-hide-title','0'),(27762,3505,'dt-img-hide-title','0'),(27763,3506,'dt-img-hide-title','0'),(27764,3507,'dt-img-hide-title','0'),(27765,3511,'dt-img-hide-title','0'),(27766,3528,'dt-img-hide-title','0'),(27767,3534,'dt-video-url',''),(27768,3534,'dt-img-link',''),(27769,3534,'dt-img-hide-title','0'),(27770,3535,'dt-video-url',''),(27771,3535,'dt-img-link',''),(27772,3535,'dt-img-hide-title','0'),(27773,3535,'_wp_attachment_image_alt','Tachel France - biomechanics education'),(27774,3536,'dt-video-url',''),(27775,3536,'dt-img-link',''),(27776,3536,'dt-img-hide-title','0'),(27777,3537,'dt-video-url',''),(27778,3537,'dt-img-link',''),(27779,3537,'dt-img-hide-title','0'),(27780,3551,'dt-img-hide-title','0'),(27781,3629,'dt-img-hide-title','0'),(27782,3630,'dt-img-hide-title','0'),(27783,3631,'dt-img-hide-title','0'),(27784,3632,'dt-img-hide-title','0'),(27785,3633,'dt-img-hide-title','0'),(27786,3634,'dt-img-hide-title','0'),(27787,3635,'dt-img-hide-title','0'),(27788,3636,'dt-img-hide-title','0'),(27789,3655,'dt-video-url',''),(27790,3655,'dt-img-link',''),(27791,3655,'dt-img-hide-title','0'),(27792,3690,'dt-img-hide-title','0'),(27793,3692,'dt-img-hide-title','0'),(27794,3693,'dt-img-hide-title','0'),(27795,3694,'dt-img-hide-title','0'),(27796,3695,'dt-img-hide-title','0'),(27797,3699,'dt-img-hide-title','0'),(27798,3784,'dt-img-hide-title','0'),(27799,3789,'dt-img-hide-title','0'),(27800,3801,'dt-img-hide-title','0'),(27801,3803,'dt-img-hide-title','0'),(27802,4107,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics'),(27803,4107,'dt-img-hide-title','0'),(27804,4107,'_wp_old_slug','what-exactly-is-intrinsic-biomechanics'),(27805,4108,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics-2'),(27806,4108,'dt-img-hide-title','0'),(27807,4399,'_wp_attachment_image_alt','special-fast-track-3-day-pelvic-spine-biomechanics-workshop'),(27808,4399,'dt-img-hide-title','0'),(27809,4601,'dt-img-hide-title','0'),(27810,4705,'_wp_attachment_image_alt','imovefreely-instructor - biomechanics education'),(27811,4705,'dt-img-hide-title','0'),(27812,4707,'dt-img-hide-title','0'),(27813,4709,'_wp_attachment_image_alt','intrinsic-biomechanics-taster'),(27814,4709,'dt-img-hide-title','0'),(27815,4715,'_wp_attachment_image_alt','low-back-health-workshop - biomechanics education'),(27816,4715,'dt-img-hide-title','0'),(27817,4717,'_wp_attachment_image_alt','knee-foot-biomechanics-2-day-workshop'),(27818,4717,'dt-img-hide-title','0'),(27819,4733,'_wp_attachment_image_alt','iba-discovery-day-workshop'),(27820,4733,'dt-img-hide-title','0'),(27821,5135,'_wp_attachment_image_alt','Biomechanics Coach & Diploma Workshop Series'),(27822,5135,'dt-img-hide-title','0'),(27823,5139,'_wp_attachment_image_alt','Low Back Health Workshop'),(27824,5139,'dt-img-hide-title','0'),(27825,5143,'_wp_attachment_image_alt','Spine Biomechanics 2 Day Workshop'),(27826,5143,'dt-img-hide-title','0'),(27827,5149,'_wp_attachment_image_alt','Pelvic Biomechanics 2 Day Workshop'),(27828,5149,'dt-img-hide-title','0'),(27829,5151,'_wp_attachment_image_alt','Shoulder Biomechanics 2 Day Workshop'),(27830,5151,'dt-img-hide-title','0'),(27831,5155,'dt-img-hide-title','0'),(27832,5155,'dt-video-url',''),(27833,5155,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split'),(27834,5253,'dt-img-hide-title','0'),(27835,5325,'dt-img-hide-title','0'),(27836,6395,'dt-img-hide-title','0'),(27837,6410,'_wp_attachment_image_alt','Rachel France - Listening to Dan John, Never Let Go'),(27838,6410,'dt-img-hide-title','0'),(27839,6682,'_wp_attachment_image_alt','Rachel France smiling - Group Exercise'),(27840,6682,'dt-img-hide-title','0'),(27841,6683,'_wp_attachment_image_alt','Rachel France - Biomechanics Education - Group Exercise'),(27842,6683,'dt-img-hide-title','0'),(27843,6724,'dt-img-hide-title','0'),(27844,7303,'dt-img-hide-title','0'),(27845,7690,'_wp_page_template','default'),(27846,7690,'dt-video-url',''),(27847,7690,'dt-img-link',''),(27848,7690,'dt-img-hide-title','0'),(27849,7690,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1284;s:6:\"height\";i:1248;s:4:\"file\";s:10:\"Flowin.png\";}}'),(27850,7696,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1128;s:6:\"height\";i:871;s:4:\"file\";s:17:\"TherapyEmpire.png\";}}'),(27851,7696,'_wp_page_template','default'),(27852,7696,'dt-video-url',''),(27853,7696,'dt-img-link',''),(27854,7696,'dt-img-hide-title','0'),(27855,7709,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1085;s:6:\"height\";i:851;s:4:\"file\";s:15:\"PulseRoll-1.png\";}}'),(27856,7709,'_wp_page_template','default'),(27857,7709,'dt-video-url',''),(27858,7709,'dt-img-link',''),(27859,7709,'dt-img-hide-title','0'),(27860,7711,'_wp_page_template','default'),(27861,7711,'dt-video-url',''),(27862,7711,'dt-img-link',''),(27863,7711,'dt-img-hide-title','0'),(27864,8351,'dt-img-hide-title','0'),(27865,9448,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:420;s:6:\"height\";i:315;s:4:\"file\";s:7:\"STA.png\";}}'),(27866,9448,'_wp_page_template','default'),(27867,9448,'dt-video-url',''),(27868,9448,'dt-img-link',''),(27869,9448,'dt-img-hide-title','0'),(27870,10372,'_wp_attachment_image_alt','Level 4 Low Back Pain Qualification for Personal Trainers'),(27871,10372,'dt-img-hide-title','0'),(27872,10836,'_wp_old_slug','always-always-start-with-why'),(27873,10836,'dt-img-hide-title','0'),(27874,12889,'dt-img-hide-title','0'),(27875,13010,'_wp_attachment_image_alt','Are Shoulder Problems Are The New Low Back Pain_'),(27876,13010,'dt-img-hide-title','0'),(27877,13150,'dt-img-hide-title','0'),(27878,13709,'dt-video-url',''),(27879,13709,'dt-img-link','https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description'),(27880,13709,'dt-img-hide-title','0'),(27881,16056,'_wp_attachment_image_alt','Golf Biomechanics Workshop'),(27882,16056,'dt-img-hide-title','0'),(27883,16057,'_wp_attachment_image_alt','Running Biomechanics Workshop'),(27884,16057,'dt-img-hide-title','0'),(27885,17664,'dt-video-url',''),(27886,17664,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549'),(27887,17664,'dt-img-hide-title','0'),(27888,19073,'_wp_attachment_image_alt','Intrinsic Biomechanics For Personal Trainers - 3 Phase System For Health, Function & Performance'),(27889,19073,'dt-img-hide-title','0'),(27890,22306,'_wp_attached_file','2020/06/jesper-aggergaard-CEM52sAHR80-unsplash-scaled-1.jpg'),(27891,22306,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:59:\"2020/06/jesper-aggergaard-CEM52sAHR80-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:233531;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27892,22612,'_wp_attached_file','2020/06/CIMSPA-Education-Partner-Training-Provider-Logo-Navy-RGB-1.png'),(27893,22612,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1064;s:6:\"height\";i:208;s:4:\"file\";s:70:\"2020/06/CIMSPA-Education-Partner-Training-Provider-Logo-Navy-RGB-1.png\";s:8:\"filesize\";i:19499;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27894,22621,'_wp_attached_file','2020/06/drew-beamer-xU5Mqq0Chck-unsplash-scaled-1.jpg'),(27895,22621,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:53:\"2020/06/drew-beamer-xU5Mqq0Chck-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:329625;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27896,22622,'_wp_attached_file','2020/06/martin-sanchez-JQ0YVavMKLo-unsplash-scaled-1.jpg'),(27897,22622,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1918;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2020/06/martin-sanchez-JQ0YVavMKLo-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:849743;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27898,22760,'_wp_attached_file','2020/06/felix-koutchinski-FOro6jhMw30-unsplash-scaled-1.jpg'),(27899,22760,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:59:\"2020/06/felix-koutchinski-FOro6jhMw30-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:1200869;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27900,22780,'_wp_attached_file','2020/06/felix-koutchinski-FOro6jhMw30-unsplash-1-1.jpg'),(27901,22780,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1333;s:4:\"file\";s:54:\"2020/06/felix-koutchinski-FOro6jhMw30-unsplash-1-1.jpg\";s:8:\"filesize\";i:980860;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27902,23078,'_wp_attached_file','2020/07/Screenshot-2020-07-07-at-16.49.55-e1594137121921-1.png'),(27903,23078,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:445;s:4:\"file\";s:62:\"2020/07/Screenshot-2020-07-07-at-16.49.55-e1594137121921-1.png\";s:8:\"filesize\";i:170061;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27904,23078,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1204;s:6:\"height\";i:1072;s:4:\"file\";s:37:\"Screenshot-2020-07-07-at-16.49.55.png\";}}'),(27905,23080,'_wp_attached_file','2020/07/Screenshot-2020-07-06-at-11.06.38-1.png'),(27906,23080,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:788;s:6:\"height\";i:704;s:4:\"file\";s:47:\"2020/07/Screenshot-2020-07-06-at-11.06.38-1.png\";s:8:\"filesize\";i:165770;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27907,23081,'_wp_attached_file','2020/07/ani-kolleshi-vu-DaZVeny0-unsplash-scaled-1.jpg'),(27908,23081,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1529;s:4:\"file\";s:54:\"2020/07/ani-kolleshi-vu-DaZVeny0-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:315847;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27909,23138,'_wp_attached_file','2018/01/shutterstock_128700983-scaled-1.jpg'),(27910,23138,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2467;s:4:\"file\";s:43:\"2018/01/shutterstock_128700983-scaled-1.jpg\";s:8:\"filesize\";i:407229;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27911,23139,'_wp_attached_file','2018/01/shutterstock_147789482-scaled-1.jpg'),(27912,23139,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2304;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2018/01/shutterstock_147789482-scaled-1.jpg\";s:8:\"filesize\";i:213009;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27913,23140,'_wp_attached_file','2018/01/shutterstock_172528928-scaled-1.jpg'),(27914,23140,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2426;s:4:\"file\";s:43:\"2018/01/shutterstock_172528928-scaled-1.jpg\";s:8:\"filesize\";i:216660;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27915,23141,'_wp_attached_file','2018/01/shutterstock_383061178-scaled-1.jpg'),(27916,23141,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:43:\"2018/01/shutterstock_383061178-scaled-1.jpg\";s:8:\"filesize\";i:496133;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27917,23142,'_wp_attached_file','2018/01/shutterstock_619010450-scaled-1.jpg'),(27918,23142,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1741;s:4:\"file\";s:43:\"2018/01/shutterstock_619010450-scaled-1.jpg\";s:8:\"filesize\";i:1138750;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27919,23143,'_wp_attached_file','2018/01/shutterstock_326244254-scaled-1.jpg'),(27920,23143,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2018/01/shutterstock_326244254-scaled-1.jpg\";s:8:\"filesize\";i:588255;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27921,23144,'_wp_attached_file','2018/01/DSC_6800-scaled-1.jpg'),(27922,23144,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:29:\"2018/01/DSC_6800-scaled-1.jpg\";s:8:\"filesize\";i:398981;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27923,23145,'_wp_attached_file','2018/01/DSC_6730-scaled-1.jpg'),(27924,23145,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:29:\"2018/01/DSC_6730-scaled-1.jpg\";s:8:\"filesize\";i:488841;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27925,23146,'_wp_attached_file','2018/01/DSC_7052-scaled-1.jpg'),(27926,23146,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:29:\"2018/01/DSC_7052-scaled-1.jpg\";s:8:\"filesize\";i:598036;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27927,23147,'_wp_attached_file','2018/01/DSC_6608-scaled-1.jpg'),(27928,23147,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:29:\"2018/01/DSC_6608-scaled-1.jpg\";s:8:\"filesize\";i:433432;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27929,23148,'_wp_attached_file','2018/01/DSC_6610-scaled-1.jpg'),(27930,23148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:29:\"2018/01/DSC_6610-scaled-1.jpg\";s:8:\"filesize\";i:417852;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27931,23306,'_wp_attached_file','2020/07/Daily-Load-1.pdf'),(27932,23306,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:20:\"Daily-Load-1-pdf.jpg\";s:5:\"width\";i:1919;s:6:\"height\";i:1356;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149157;}s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"Daily-Load-1-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54924;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Daily-Load-1-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80340;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"Daily-Load-1-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16709;}}s:8:\"filesize\";i:107323;}'),(27933,23307,'_wp_attached_file','2020/07/Screenshot-2020-07-25-at-13.57.41-1.png'),(27934,23307,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2644;s:6:\"height\";i:936;s:4:\"file\";s:47:\"2020/07/Screenshot-2020-07-25-at-13.57.41-1.png\";s:8:\"filesize\";i:231563;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27935,23949,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:1499;s:4:\"file\";s:15:\"IMG_3042-1.jpeg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-768x1151.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(27936,24335,'_wp_attached_file','2020/10/IMG_0670-1.jpg'),(27937,24335,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1066;s:6:\"height\";i:1020;s:4:\"file\";s:22:\"2020/10/IMG_0670-1.jpg\";s:8:\"filesize\";i:535669;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27938,24674,'_wp_attached_file','2020/11/CAR-05112020-1-1.pdf'),(27939,24674,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:24:\"CAR-05112020-1-1-pdf.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:1387;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125992;}s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"CAR-05112020-1-1-pdf-900x1300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101362;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"CAR-05112020-1-1-pdf-400x578.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32403;}}s:8:\"filesize\";i:3056117;}'),(27940,24676,'_wp_attached_file','2020/11/CAR-grid-form-SAMPLE-2020-1.pdf'),(27941,24676,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:35:\"CAR-grid-form-SAMPLE-2020-1-pdf.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:1387;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174531;}s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"CAR-grid-form-SAMPLE-2020-1-pdf-900x1300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145805;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"CAR-grid-form-SAMPLE-2020-1-pdf-400x578.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42718;}}s:8:\"filesize\";i:147046;}'),(27942,24677,'_wp_attached_file','2020/11/Written-Report-Template-Sample-201920-1.pdf'),(27943,24677,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:47:\"Written-Report-Template-Sample-201920-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218952;}s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Written-Report-Template-Sample-201920-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158236;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Written-Report-Template-Sample-201920-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43343;}}s:8:\"filesize\";i:657869;}'),(27944,24690,'_wp_attached_file','2020/11/EXAMPLE-DW-Biomechanics-Coach-Case-Study-1.pdf'),(27945,24690,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:50:\"EXAMPLE-DW-Biomechanics-Coach-Case-Study-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88049;}s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"EXAMPLE-DW-Biomechanics-Coach-Case-Study-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64299;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"EXAMPLE-DW-Biomechanics-Coach-Case-Study-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21632;}}s:8:\"filesize\";i:1747050;}'),(27946,24805,'_wp_attached_file','2020/11/IMG_1593-1.jpg'),(27947,24805,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2020/11/IMG_1593-1.jpg\";s:8:\"filesize\";i:169662;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27948,24805,'_wp_attachment_backup_sizes','a:3:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:12:\"IMG_1593.jpg\";}s:18:\"full-1605688593104\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"IMG_1593-e1604933246144.jpg\";}s:18:\"full-1605688603868\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"IMG_1593-e1605688593104.jpg\";}}'),(27949,24806,'_wp_attached_file','2020/11/adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-scaled-e1604934352547-1.jpg'),(27950,24806,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:1696;s:4:\"file\";s:74:\"2020/11/adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-scaled-e1604934352547-1.jpg\";s:8:\"filesize\";i:141398;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27951,24806,'_wp_attachment_backup_sizes','a:13:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:49:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-scaled.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:51:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:51:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:52:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"2048x2048-orig\";a:4:{s:4:\"file\";s:52:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(27952,24809,'_wp_attached_file','2020/11/olia-nayda-3TQ8I-sR9a8-unsplash-scaled-1.jpg'),(27953,24809,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:52:\"2020/11/olia-nayda-3TQ8I-sR9a8-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:612728;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27954,24937,'_wp_attached_file','2020/11/IMG_1450-e1605684970838-1.jpg'),(27955,24937,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:780;s:6:\"height\";i:1040;s:4:\"file\";s:37:\"2020/11/IMG_1450-e1605684970838-1.jpg\";s:8:\"filesize\";i:184997;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27956,24937,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1080;s:6:\"height\";i:1440;s:4:\"file\";s:12:\"IMG_1450.jpg\";}}'),(27957,24938,'_wp_attached_file','2020/11/IMG_1450-1-1.jpg'),(27958,24938,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1074;s:6:\"height\";i:1088;s:4:\"file\";s:24:\"2020/11/IMG_1450-1-1.jpg\";s:8:\"filesize\";i:360268;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27959,25098,'_wp_attached_file','2020/11/Screenshot-2020-11-30-at-11.08.12-1.png'),(27960,25098,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:388;s:6:\"height\";i:496;s:4:\"file\";s:47:\"2020/11/Screenshot-2020-11-30-at-11.08.12-1.png\";s:8:\"filesize\";i:307811;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27961,25099,'_wp_attached_file','2020/11/shutterstock_1544639351-scaled-1.jpg'),(27962,25099,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/11/shutterstock_1544639351-scaled-1.jpg\";s:8:\"filesize\";i:521942;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27963,25100,'_wp_attached_file','2020/11/Screenshot-2020-11-30-at-11.12.14-1.png'),(27964,25100,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:436;s:6:\"height\";i:510;s:4:\"file\";s:47:\"2020/11/Screenshot-2020-11-30-at-11.12.14-1.png\";s:8:\"filesize\";i:271648;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27965,25101,'_wp_attached_file','2020/11/Screenshot-2020-11-30-at-11.13.25-1.png'),(27966,25101,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1210;s:6:\"height\";i:602;s:4:\"file\";s:47:\"2020/11/Screenshot-2020-11-30-at-11.13.25-1.png\";s:8:\"filesize\";i:887074;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27967,25102,'_wp_attached_file','2020/11/Screenshot-2020-11-30-at-11.14.26-1.png'),(27968,25102,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:362;s:6:\"height\";i:462;s:4:\"file\";s:47:\"2020/11/Screenshot-2020-11-30-at-11.14.26-1.png\";s:8:\"filesize\";i:228638;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27969,25103,'_wp_attached_file','2020/11/Screenshot-2020-11-30-at-11.08.22-1.png'),(27970,25103,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:384;s:6:\"height\";i:496;s:4:\"file\";s:47:\"2020/11/Screenshot-2020-11-30-at-11.08.22-1.png\";s:8:\"filesize\";i:254907;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27971,25104,'_wp_attached_file','2020/11/Screenshot-2020-11-30-at-11.17.22-1.png'),(27972,25104,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:712;s:6:\"height\";i:446;s:4:\"file\";s:47:\"2020/11/Screenshot-2020-11-30-at-11.17.22-1.png\";s:8:\"filesize\";i:332833;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27973,25119,'_wp_attached_file','2020/11/shutterstock_1709130394-scaled-1.jpg'),(27974,25119,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/11/shutterstock_1709130394-scaled-1.jpg\";s:8:\"filesize\";i:789020;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27975,25123,'_wp_attached_file','2020/12/shutterstock_1544641526-scaled-1.jpg'),(27976,25123,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/12/shutterstock_1544641526-scaled-1.jpg\";s:8:\"filesize\";i:638166;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27977,25124,'_wp_attached_file','2020/12/shutterstock_1666658332-scaled-1.jpg'),(27978,25124,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/12/shutterstock_1666658332-scaled-1.jpg\";s:8:\"filesize\";i:880056;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27979,25125,'_wp_attached_file','2020/12/shutterstock_1666655449-scaled-1.jpg'),(27980,25125,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/12/shutterstock_1666655449-scaled-1.jpg\";s:8:\"filesize\";i:862977;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27981,25126,'_wp_attached_file','2020/12/shutterstock_1544641502-scaled-1.jpg'),(27982,25126,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/12/shutterstock_1544641502-scaled-1.jpg\";s:8:\"filesize\";i:671007;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27983,25127,'_wp_attached_file','2020/12/shutterstock_303082082-scaled-1.jpg'),(27984,25127,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/12/shutterstock_303082082-scaled-1.jpg\";s:8:\"filesize\";i:408583;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27985,25128,'_wp_attached_file','2020/12/shutterstock_1520541617-scaled-1.jpg'),(27986,25128,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1964;s:4:\"file\";s:44:\"2020/12/shutterstock_1520541617-scaled-1.jpg\";s:8:\"filesize\";i:686135;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(27987,25168,'_wp_attached_file','2020/12/Screenshot-2020-12-04-at-11.05.19-1.png'),(27988,25168,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2100;s:6:\"height\";i:1488;s:4:\"file\";s:47:\"2020/12/Screenshot-2020-12-04-at-11.05.19-1.png\";s:8:\"filesize\";i:2770112;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27989,25169,'_wp_attached_file','2020/12/IMG_9214-scaled-1.jpg'),(27990,25169,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:798;s:4:\"file\";s:29:\"2020/12/IMG_9214-scaled-1.jpg\";s:8:\"filesize\";i:280378;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1494089008\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27991,25170,'_wp_attached_file','2020/12/Screenshot-2020-12-04-at-11.24.44-1.png'),(27992,25170,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1912;s:6:\"height\";i:1656;s:4:\"file\";s:47:\"2020/12/Screenshot-2020-12-04-at-11.24.44-1.png\";s:8:\"filesize\";i:2147054;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27993,25171,'_wp_attached_file','2020/12/Screenshot-2020-12-04-at-11.26.36-1.png'),(27994,25171,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2640;s:6:\"height\";i:1276;s:4:\"file\";s:47:\"2020/12/Screenshot-2020-12-04-at-11.26.36-1.png\";s:8:\"filesize\";i:5146732;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27995,25354,'_wp_attached_file','2020/12/CIMSPA-Endorsed-Logo-Navy-RGB_1.eps_-1.png'),(27996,25354,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1358;s:6:\"height\";i:413;s:4:\"file\";s:50:\"2020/12/CIMSPA-Endorsed-Logo-Navy-RGB_1.eps_-1.png\";s:8:\"filesize\";i:70698;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27997,25355,'_wp_attached_file','2020/12/CIMSPA-Education-Partner-Training-Provider-Logo-Na.eps_-1.png'),(27998,25355,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2126;s:6:\"height\";i:413;s:4:\"file\";s:69:\"2020/12/CIMSPA-Education-Partner-Training-Provider-Logo-Na.eps_-1.png\";s:8:\"filesize\";i:100837;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(27999,25356,'_wp_attached_file','2020/12/CIMSPA-Education-Partner-Training-Provider-Logo-Bl.eps_-1.png'),(28000,25356,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2126;s:6:\"height\";i:413;s:4:\"file\";s:69:\"2020/12/CIMSPA-Education-Partner-Training-Provider-Logo-Bl.eps_-1.png\";s:8:\"filesize\";i:96925;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28001,25357,'_wp_attached_file','2020/12/CIMSPA_CIMSPA_Stronger_Together_Logo_Navy.eps_-1.png'),(28002,25357,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:4583;s:6:\"height\";i:2042;s:4:\"file\";s:60:\"2020/12/CIMSPA_CIMSPA_Stronger_Together_Logo_Navy.eps_-1.png\";s:8:\"filesize\";i:434856;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28003,25358,'_wp_attached_file','2020/12/CIMSPA-Endorsed-Logo-Navy-RGB_2.eps_-1.png'),(28004,25358,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1358;s:6:\"height\";i:413;s:4:\"file\";s:50:\"2020/12/CIMSPA-Endorsed-Logo-Navy-RGB_2.eps_-1.png\";s:8:\"filesize\";i:70698;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28005,25467,'_wp_attached_file','2020/12/shutterstock_1697704519-scaled-1.jpg'),(28006,25467,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/12/shutterstock_1697704519-scaled-1.jpg\";s:8:\"filesize\";i:854535;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(28007,25468,'_wp_attached_file','2020/12/shutterstock_293547812-scaled-1.jpg'),(28008,25468,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/12/shutterstock_293547812-scaled-1.jpg\";s:8:\"filesize\";i:412053;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28009,25469,'_wp_attached_file','2020/12/shutterstock_293546465-scaled-1.jpg'),(28010,25469,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/12/shutterstock_293546465-scaled-1.jpg\";s:8:\"filesize\";i:368908;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28011,25470,'_wp_attached_file','2020/12/shutterstock_1697704909-scaled-1.jpg'),(28012,25470,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/12/shutterstock_1697704909-scaled-1.jpg\";s:8:\"filesize\";i:966649;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(28013,25471,'_wp_attached_file','2020/12/shutterstock_293547224-scaled-1.jpg'),(28014,25471,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2020/12/shutterstock_293547224-scaled-1.jpg\";s:8:\"filesize\";i:402029;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28015,27205,'_wp_attached_file','2021/04/Screenshot-2020-09-14-at-10.58.59-1.png'),(28016,27205,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2132;s:6:\"height\";i:2154;s:4:\"file\";s:47:\"2021/04/Screenshot-2020-09-14-at-10.58.59-1.png\";s:8:\"filesize\";i:2678343;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28017,30605,'dt-img-hide-title','0'),(28018,30606,'dt-img-hide-title','0'),(28019,30610,'dt-img-hide-title','0'),(28020,30612,'dt-img-hide-title','0'),(28021,31065,'_wp_attachment_image_alt','Online vs Face to Face workshop - biomechanics education'),(28022,31065,'dt-img-hide-title','0'),(28023,31068,'_wp_attachment_image_alt','gabin-vallet - Online vs Face to Face- biomechanics education'),(28024,31068,'dt-img-hide-title','0'),(28025,31069,'_wp_attachment_image_alt','jonathan-borba - online vs face to face workshop - biomechanics education'),(28026,31069,'dt-img-hide-title','0'),(28027,31185,'_wp_attachment_image_alt','[Case Study] Elite Lifter Laura Hewitt - biomechanics education'),(28028,31185,'dt-img-hide-title','0'),(28029,31260,'_wp_attachment_image_alt','Understanding Nerves - young man relaxing on the sofa'),(28030,31260,'dt-img-hide-title','0'),(28031,31261,'_wp_attachment_image_alt','Understanding Nerves - young woman exercising'),(28032,31261,'dt-img-hide-title','0'),(28033,31262,'_wp_attachment_image_alt','Understanding Nerves - Rachel Frances Thomson'),(28034,31262,'dt-img-hide-title','0'),(28035,31422,'_wp_attachment_image_alt','Neuromuscular Exercise - biomechanics education'),(28036,31422,'dt-img-hide-title','0'),(28037,31424,'_wp_attachment_image_alt','Neuromuscular Exercise - one leg'),(28038,31424,'dt-img-hide-title','0'),(28039,31431,'_wp_attachment_image_alt','rachel thomson - exercise biomechanics education'),(28040,31431,'dt-img-hide-title','0'),(28041,31432,'_wp_attachment_image_alt','Neuromuscular Exercise with dog - rachel thomson'),(28042,31432,'dt-img-hide-title','0'),(28043,31433,'_wp_attachment_image_alt','neuromuscular exercise - rachel thomson'),(28044,31433,'dt-img-hide-title','0'),(28045,31612,'_wp_attachment_image_alt','Mark Laws - IBA discovery day'),(28046,31612,'dt-img-hide-title','0'),(28047,31613,'_wp_attachment_image_alt','Mark Laws - biomechanics education'),(28048,31613,'dt-img-hide-title','0'),(28049,31614,'_wp_attachment_image_alt','IBA Discovery Day Workshops - biomechanics education'),(28050,31614,'dt-img-hide-title','0'),(28051,31747,'_wp_attachment_image_alt','The Power of Words - biomechanics education'),(28052,31747,'dt-img-hide-title','0'),(28053,31749,'_wp_attachment_image_alt','brett-jordan - practice makes perfect'),(28054,31749,'dt-img-hide-title','0'),(28055,31877,'_wp_attachment_image_alt','Portrait_Mike Stewart - biomechanics education'),(28056,31877,'dt-img-hide-title','0'),(28057,31879,'_wp_attachment_image_alt','JBE Rio 3 - the kaizen project'),(28058,31879,'dt-img-hide-title','0'),(28059,32012,'_wp_attachment_image_alt','Rachel France - the kaizen project'),(28060,32012,'dt-img-hide-title','0'),(28061,32179,'_wp_attachment_image_alt','Rachel France - exercising'),(28062,32179,'dt-img-hide-title','0'),(28063,32182,'_wp_attachment_image_alt','Rachel France - cimspa member profile'),(28064,32182,'dt-img-hide-title','0'),(28065,32556,'_wp_attachment_image_alt','A man lies on an exercise mat, he is wearing a blue top and black shorts, white socks, and white trainers. He has his left knee bent and right leg straight on the floor. Rachel is knelt beside him wearing an orange top and black tracksuit bottoms, and socks. She is gesturing something with her hands and talking to the class.'),(28066,32556,'dt-img-hide-title','0'),(28067,38588,'_wp_attachment_context','custom-header'),(28068,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(28069,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(28070,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(28071,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(28072,192,'dt-img-hide-title','0'),(28073,194,'dt-img-hide-title','0'),(28074,205,'dt-img-hide-title','0'),(28075,206,'dt-img-hide-title','0'),(28076,208,'dt-img-hide-title','0'),(28077,247,'dt-img-hide-title','0'),(28078,248,'_wp_attachment_context','site-icon'),(28079,248,'dt-img-hide-title','0'),(28080,265,'dt-img-hide-title','0'),(28081,283,'dt-img-hide-title','0'),(28082,284,'dt-img-hide-title','0'),(28083,285,'dt-img-hide-title','0'),(28084,287,'dt-img-hide-title','0'),(28085,290,'dt-img-hide-title','0'),(28086,291,'dt-img-hide-title','0'),(28087,294,'dt-img-hide-title','0'),(28088,297,'dt-img-hide-title','0'),(28089,333,'dt-img-hide-title','0'),(28090,341,'dt-img-hide-title','0'),(28091,407,'dt-img-hide-title','0'),(28092,458,'dt-img-hide-title','0'),(28093,495,'dt-img-hide-title','0'),(28094,497,'dt-img-hide-title','0'),(28095,505,'dt-img-hide-title','0'),(28096,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(28097,210,'dt-img-link',''),(28098,210,'dt-img-hide-title','0'),(28099,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(28100,221,'dt-img-link',''),(28101,221,'dt-img-hide-title','0'),(28102,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(28103,224,'dt-img-link',''),(28104,224,'dt-img-hide-title','0'),(28105,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(28106,228,'dt-img-link',''),(28107,228,'dt-img-hide-title','0'),(28108,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(28109,230,'dt-img-link',''),(28110,230,'dt-img-hide-title','0'),(28111,237,'dt-img-hide-title','0'),(28112,237,'dt-img-link',''),(28113,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(28114,557,'dt-img-hide-title','0'),(28115,559,'dt-img-hide-title','0'),(28116,562,'dt-img-hide-title','0'),(28117,569,'dt-img-hide-title','0'),(28118,592,'dt-img-hide-title','0'),(28119,596,'dt-img-hide-title','0'),(28120,617,'dt-img-hide-title','0'),(28121,620,'dt-img-hide-title','0'),(28122,621,'dt-img-hide-title','0'),(28123,623,'dt-img-hide-title','0'),(28124,624,'dt-img-hide-title','0'),(28125,644,'dt-img-hide-title','0'),(28126,648,'dt-img-hide-title','0'),(28127,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(28128,824,'dt-img-link',''),(28129,824,'dt-img-hide-title','0'),(28130,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(28131,825,'dt-img-link',''),(28132,825,'dt-img-hide-title','0'),(28133,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(28134,828,'dt-img-link',''),(28135,828,'dt-img-hide-title','0'),(28136,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(28137,1450,'dt-img-link',''),(28138,1450,'dt-img-hide-title','0'),(28139,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(28140,1451,'dt-img-link',''),(28141,1451,'dt-img-hide-title','0'),(28142,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(28143,1452,'dt-img-link',''),(28144,1452,'dt-img-hide-title','0'),(28145,652,'dt-img-hide-title','0'),(28146,655,'dt-img-hide-title','0'),(28147,675,'dt-img-hide-title','0'),(28148,678,'dt-img-hide-title','0'),(28149,683,'dt-img-hide-title','0'),(28150,703,'dt-img-hide-title','0'),(28151,706,'dt-img-hide-title','0'),(28152,709,'dt-img-hide-title','0'),(28153,712,'dt-img-hide-title','0'),(28154,713,'dt-img-hide-title','0'),(28155,714,'dt-img-hide-title','0'),(28156,715,'dt-img-hide-title','0'),(28157,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(28158,722,'dt-img-hide-title','0'),(28159,735,'dt-img-hide-title','0'),(28160,759,'dt-img-hide-title','0'),(28161,762,'dt-img-hide-title','0'),(28162,766,'dt-img-hide-title','0'),(28163,770,'dt-img-hide-title','0'),(28164,804,'dt-img-hide-title','0'),(28165,814,'dt-img-hide-title','0'),(28166,827,'dt-img-hide-title','0'),(28167,830,'dt-img-hide-title','0'),(28168,854,'dt-img-hide-title','0'),(28169,857,'dt-img-hide-title','0'),(28170,874,'dt-img-hide-title','0'),(28171,937,'dt-img-hide-title','0'),(28172,941,'dt-img-hide-title','0'),(28173,955,'dt-img-hide-title','0'),(28174,969,'_wp_attachment_image_alt','imove Freely'),(28175,969,'dt-img-hide-title','0'),(28176,1001,'dt-img-hide-title','0'),(28177,1015,'dt-img-hide-title','0'),(28178,1018,'dt-img-hide-title','0'),(28179,1020,'dt-img-hide-title','0'),(28180,1021,'dt-img-hide-title','0'),(28181,1024,'dt-img-hide-title','0'),(28182,1027,'dt-img-hide-title','0'),(28183,1030,'dt-img-hide-title','0'),(28184,1035,'dt-img-hide-title','0'),(28185,1039,'dt-img-hide-title','0'),(28186,1045,'dt-img-hide-title','0'),(28187,1051,'dt-img-hide-title','0'),(28188,1052,'dt-img-hide-title','0'),(28189,1055,'dt-img-hide-title','0'),(28190,1057,'dt-img-hide-title','0'),(28191,1061,'dt-img-hide-title','0'),(28192,1065,'dt-img-hide-title','0'),(28193,1068,'dt-img-hide-title','0'),(28194,1073,'dt-img-hide-title','0'),(28195,1078,'dt-img-hide-title','0'),(28196,1084,'dt-img-hide-title','0'),(28197,1088,'dt-img-hide-title','0'),(28198,1094,'dt-img-hide-title','0'),(28199,1096,'dt-img-hide-title','0'),(28200,1097,'dt-img-hide-title','0'),(28201,1099,'dt-img-hide-title','0'),(28202,1106,'dt-img-hide-title','0'),(28203,1110,'dt-img-hide-title','0'),(28204,1112,'dt-img-hide-title','0'),(28205,1116,'dt-img-hide-title','0'),(28206,1125,'dt-img-hide-title','0'),(28207,1129,'dt-img-hide-title','0'),(28208,1145,'dt-img-hide-title','0'),(28209,1167,'dt-img-hide-title','0'),(28210,1184,'dt-img-hide-title','0'),(28211,1186,'dt-img-hide-title','0'),(28212,1187,'dt-img-hide-title','0'),(28213,1189,'dt-img-hide-title','0'),(28214,1194,'dt-img-hide-title','0'),(28215,1197,'dt-img-hide-title','0'),(28216,1201,'dt-img-hide-title','0'),(28217,1202,'dt-img-hide-title','0'),(28218,1203,'dt-img-hide-title','0'),(28219,1204,'dt-img-hide-title','0'),(28220,1205,'dt-img-hide-title','0'),(28221,1206,'dt-img-hide-title','0'),(28222,1207,'dt-img-hide-title','0'),(28223,1209,'dt-img-hide-title','0'),(28224,1210,'dt-img-hide-title','0'),(28225,1211,'dt-img-hide-title','0'),(28226,1212,'dt-img-hide-title','0'),(28227,1213,'dt-img-hide-title','0'),(28228,1214,'dt-img-hide-title','0'),(28229,1220,'dt-img-hide-title','0'),(28230,1223,'dt-img-hide-title','0'),(28231,1226,'dt-img-hide-title','0'),(28232,1228,'dt-img-hide-title','0'),(28233,1232,'dt-img-hide-title','0'),(28234,1235,'dt-img-hide-title','0'),(28235,1239,'dt-img-hide-title','0'),(28236,1242,'dt-img-hide-title','0'),(28237,1246,'dt-img-hide-title','0'),(28238,1256,'dt-img-hide-title','0'),(28239,1262,'dt-img-hide-title','0'),(28240,1265,'dt-img-hide-title','0'),(28241,1269,'dt-img-hide-title','0'),(28242,1275,'dt-img-hide-title','0'),(28243,1279,'dt-img-hide-title','0'),(28244,1312,'dt-img-hide-title','0'),(28245,1316,'dt-img-hide-title','0'),(28246,1320,'dt-img-hide-title','0'),(28247,1326,'dt-img-hide-title','0'),(28248,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(28249,1334,'dt-img-hide-title','0'),(28250,1338,'dt-img-hide-title','0'),(28251,1339,'dt-img-hide-title','0'),(28252,1343,'dt-img-hide-title','0'),(28253,1347,'dt-img-hide-title','0'),(28254,1351,'dt-img-hide-title','0'),(28255,1354,'dt-img-hide-title','0'),(28256,1357,'dt-img-hide-title','0'),(28257,1359,'dt-img-hide-title','0'),(28258,1362,'dt-img-hide-title','0'),(28259,1366,'dt-img-hide-title','0'),(28260,1379,'dt-img-hide-title','0'),(28261,1398,'dt-img-hide-title','0'),(28262,1403,'dt-img-hide-title','0'),(28263,1406,'dt-img-hide-title','0'),(28264,1410,'dt-img-hide-title','0'),(28265,1413,'dt-img-hide-title','0'),(28266,1416,'dt-img-hide-title','0'),(28267,1419,'dt-img-hide-title','0'),(28268,1423,'dt-img-hide-title','0'),(28269,1429,'dt-img-hide-title','0'),(28270,1430,'dt-img-hide-title','0'),(28271,1433,'dt-img-hide-title','0'),(28272,1463,'dt-img-hide-title','0'),(28273,1463,'dt-img-hide-title','0'),(28274,1463,'dt-img-hide-title','0'),(28275,1463,'dt-img-hide-title','0'),(28276,1463,'dt-img-hide-title','0'),(28277,1468,'dt-img-hide-title','0'),(28278,2229,'dt-img-hide-title','0'),(28279,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(28280,2230,'dt-img-hide-title','0'),(28281,2231,'dt-img-hide-title','0'),(28282,2232,'dt-img-hide-title','0'),(28283,2233,'dt-img-hide-title','0'),(28284,2234,'dt-img-hide-title','0'),(28285,2235,'dt-img-hide-title','0'),(28286,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(28287,1474,'dt-img-hide-title','0'),(28288,1475,'dt-img-hide-title','0'),(28289,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(28290,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(28291,1476,'dt-img-hide-title','0'),(28292,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(28293,1478,'dt-img-hide-title','0'),(28294,1479,'dt-img-hide-title','0'),(28295,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(28296,1489,'dt-img-hide-title','0'),(28297,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(28298,1500,'dt-img-hide-title','0'),(28299,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(28300,1501,'dt-img-hide-title','0'),(28301,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(28302,1504,'dt-img-hide-title','0'),(28303,1508,'_wp_attachment_image_alt',''),(28304,1508,'dt-img-hide-title','0'),(28305,1508,'dt-video-url',''),(28306,1508,'dt-img-link',''),(28307,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(28308,1510,'dt-img-hide-title','0'),(28309,1514,'dt-img-hide-title','0'),(28310,2236,'dt-img-hide-title','0'),(28311,2237,'dt-img-hide-title','0'),(28312,2238,'dt-img-hide-title','0'),(28313,2239,'dt-img-hide-title','0'),(28314,2247,'dt-img-hide-title','0'),(28315,2248,'dt-img-hide-title','0'),(28316,2249,'dt-img-hide-title','0'),(28317,1533,'dt-img-hide-title','0'),(28318,1535,'dt-img-hide-title','0'),(28319,1536,'dt-img-hide-title','0'),(28320,1540,'dt-img-hide-title','0'),(28321,1546,'dt-img-hide-title','0'),(28322,1556,'dt-img-hide-title','0'),(28323,1566,'dt-img-hide-title','0'),(28324,1595,'dt-img-hide-title','0'),(28325,1608,'dt-video-url',''),(28326,1608,'dt-img-link',''),(28327,1608,'dt-img-hide-title','0'),(28328,1825,'dt-img-hide-title','0'),(28329,2250,'dt-img-hide-title','0'),(28330,2251,'dt-img-hide-title','0'),(28331,2252,'dt-img-hide-title','0'),(28332,2253,'dt-img-hide-title','0'),(28333,2254,'dt-img-hide-title','0'),(28334,2255,'dt-img-hide-title','0'),(28335,2256,'dt-img-hide-title','0'),(28336,2257,'dt-img-hide-title','0'),(28337,2258,'dt-img-hide-title','0'),(28338,2259,'dt-img-hide-title','0'),(28339,1646,'dt-img-hide-title','0'),(28340,1650,'dt-img-hide-title','0'),(28344,2241,'dt-img-hide-title','0'),(28345,2242,'dt-img-hide-title','0'),(28346,2243,'dt-img-hide-title','0'),(28347,2244,'dt-img-hide-title','0'),(28348,2245,'dt-img-hide-title','0'),(28349,2246,'dt-img-hide-title','0'),(28350,2260,'dt-img-hide-title','0'),(28351,2261,'dt-img-hide-title','0'),(28352,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(28353,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(28354,2262,'dt-img-hide-title','0'),(28355,2263,'dt-img-hide-title','0'),(28356,2264,'dt-img-hide-title','0'),(28357,2265,'dt-img-hide-title','0'),(28358,2266,'dt-img-hide-title','0'),(28359,2267,'dt-img-hide-title','0'),(28360,2268,'dt-img-hide-title','0'),(28361,2269,'dt-img-hide-title','0'),(28362,2270,'dt-img-hide-title','0'),(28363,1658,'dt-img-hide-title','0'),(28364,1660,'dt-img-hide-title','0'),(28365,1667,'dt-img-hide-title','0'),(28366,1668,'dt-img-hide-title','0'),(28367,1669,'dt-img-hide-title','0'),(28368,1674,'dt-img-hide-title','0'),(28369,2102,'dt-img-hide-title','0'),(28370,2103,'dt-img-hide-title','0'),(28371,2104,'dt-img-hide-title','0'),(28372,2105,'dt-img-hide-title','0'),(28373,2106,'dt-img-hide-title','0'),(28374,2107,'dt-img-hide-title','0'),(28375,2108,'dt-img-hide-title','0'),(28376,2109,'dt-img-hide-title','0'),(28377,2110,'dt-img-hide-title','0'),(28378,2111,'dt-img-hide-title','0'),(28379,2112,'dt-img-hide-title','0'),(28380,2113,'dt-img-hide-title','0'),(28381,2114,'dt-img-hide-title','0'),(28382,2115,'dt-img-hide-title','0'),(28383,1675,'dt-img-hide-title','0'),(28384,1699,'dt-img-hide-title','0'),(28385,1700,'dt-img-hide-title','0'),(28386,1701,'dt-img-hide-title','0'),(28387,1702,'dt-img-hide-title','0'),(28388,2217,'dt-img-hide-title','0'),(28389,2222,'dt-img-hide-title','0'),(28390,2271,'dt-img-hide-title','0'),(28391,2289,'dt-img-hide-title','0'),(28392,2291,'dt-img-hide-title','0'),(28393,2293,'dt-img-hide-title','0'),(28394,2295,'dt-img-hide-title','0'),(28395,2297,'dt-img-hide-title','0'),(28396,2299,'dt-img-hide-title','0'),(28397,2301,'dt-img-hide-title','0'),(28398,2303,'dt-img-hide-title','0'),(28399,2305,'dt-img-hide-title','0'),(28400,2307,'dt-img-hide-title','0'),(28401,2405,'dt-img-hide-title','0'),(28402,2405,'_wp_attachment_image_alt','iMoveFreely® Exercises To Try At Home'),(28403,2409,'dt-img-hide-title','0'),(28404,2409,'_wp_attachment_image_alt','Don’t Listen To Us….Listen To Them!'),(28405,2410,'dt-img-hide-title','0'),(28406,2410,'_wp_attachment_image_alt','Presentations at The Movement Convention'),(28407,2411,'dt-img-hide-title','0'),(28408,2411,'_wp_attachment_image_alt','Just For Fun'),(28409,2413,'dt-img-hide-title','0'),(28410,2413,'_wp_attachment_image_alt','We all Squat Differently?'),(28411,2415,'dt-img-hide-title','0'),(28412,2415,'_wp_attachment_image_alt','What Do Our Workshops Look Like?'),(28413,2534,'dt-img-hide-title','0'),(28414,2535,'dt-img-hide-title','0'),(28415,2537,'dt-img-hide-title','0'),(28416,2538,'dt-img-hide-title','0'),(28417,2539,'dt-img-hide-title','0'),(28418,2540,'dt-img-hide-title','0'),(28419,2541,'dt-img-hide-title','0'),(28420,2548,'dt-img-hide-title','0'),(28421,2549,'dt-img-hide-title','0'),(28422,2550,'dt-img-hide-title','0'),(28423,2551,'dt-img-hide-title','0'),(28424,2552,'dt-img-hide-title','0'),(28425,2611,'dt-img-hide-title','0'),(28426,2612,'dt-img-hide-title','0'),(28427,2613,'dt-img-hide-title','0'),(28428,2614,'dt-img-hide-title','0'),(28429,2615,'dt-img-hide-title','0'),(28430,2655,'dt-img-hide-title','0'),(28431,2656,'dt-img-hide-title','0'),(28432,2657,'dt-img-hide-title','0'),(28433,2658,'dt-img-hide-title','0'),(28434,2721,'dt-img-hide-title','0'),(28435,2722,'dt-img-hide-title','0'),(28436,2723,'dt-img-hide-title','0'),(28437,2724,'dt-img-hide-title','0'),(28438,2725,'dt-img-hide-title','0'),(28439,2726,'dt-img-hide-title','0'),(28440,2727,'dt-img-hide-title','0'),(28441,2728,'dt-img-hide-title','0'),(28442,2729,'dt-img-hide-title','0'),(28443,2756,'dt-img-hide-title','0'),(28444,2759,'dt-img-hide-title','0'),(28445,2781,'dt-img-hide-title','0'),(28446,2786,'dt-img-hide-title','0'),(28447,2787,'dt-img-hide-title','0'),(28448,2788,'dt-img-hide-title','0'),(28449,2788,'_wp_attachment_image_alt','the effect of quadratus lumborum muscle'),(28450,2810,'dt-img-hide-title','0'),(28451,2811,'dt-img-hide-title','0'),(28452,2812,'dt-img-hide-title','0'),(28453,2813,'dt-img-hide-title','0'),(28454,2814,'dt-img-hide-title','0'),(28455,2815,'dt-img-hide-title','0'),(28456,2816,'dt-img-hide-title','0'),(28457,2817,'dt-img-hide-title','0'),(28458,2818,'dt-img-hide-title','0'),(28459,2837,'dt-img-hide-title','0'),(28460,2846,'dt-img-hide-title','0'),(28461,2847,'dt-img-hide-title','0'),(28462,2856,'dt-img-hide-title','0'),(28463,2857,'dt-img-hide-title','0'),(28464,2858,'dt-img-hide-title','0'),(28465,2859,'dt-img-hide-title','0'),(28466,2860,'dt-img-hide-title','0'),(28467,2861,'dt-img-hide-title','0'),(28468,2862,'dt-img-hide-title','0'),(28469,2868,'dt-img-hide-title','0'),(28470,2869,'dt-img-hide-title','0'),(28471,2870,'dt-img-hide-title','0'),(28472,2871,'dt-img-hide-title','0'),(28473,2875,'dt-img-hide-title','0'),(28474,2876,'dt-img-hide-title','0'),(28475,2877,'dt-img-hide-title','0'),(28476,2878,'dt-img-hide-title','0'),(28477,2879,'dt-img-hide-title','0'),(28478,2894,'dt-img-hide-title','0'),(28479,2894,'dt-video-url',''),(28480,2894,'dt-img-link',''),(28481,2896,'dt-img-hide-title','0'),(28482,2896,'dt-video-url',''),(28483,2896,'dt-img-link',''),(28484,2960,'dt-img-hide-title','0'),(28485,2961,'dt-img-hide-title','0'),(28486,2962,'dt-img-hide-title','0'),(28487,2963,'dt-img-hide-title','0'),(28488,2964,'dt-img-hide-title','0'),(28489,2965,'dt-img-hide-title','0'),(28490,2966,'dt-img-hide-title','0'),(28491,2967,'dt-img-hide-title','0'),(28492,2968,'dt-img-hide-title','0'),(28493,2969,'dt-img-hide-title','0'),(28494,2976,'dt-img-hide-title','0'),(28495,2986,'dt-img-hide-title','0'),(28496,2999,'dt-img-hide-title','0'),(28497,3002,'dt-img-hide-title','0'),(28498,3003,'dt-img-hide-title','0'),(28499,3004,'dt-img-hide-title','0'),(28500,3005,'dt-img-hide-title','0'),(28501,3006,'dt-img-hide-title','0'),(28502,3014,'dt-img-hide-title','0'),(28503,3015,'dt-img-hide-title','0'),(28504,3016,'dt-img-hide-title','0'),(28505,3034,'dt-img-hide-title','0'),(28506,3173,'dt-img-hide-title','0'),(28507,3174,'dt-img-hide-title','0'),(28508,3179,'dt-img-hide-title','0'),(28509,3180,'dt-img-hide-title','0'),(28510,3183,'dt-img-hide-title','0'),(28511,3188,'dt-img-hide-title','0'),(28512,3191,'dt-img-hide-title','0'),(28513,3200,'dt-img-hide-title','0'),(28514,3201,'dt-img-hide-title','0'),(28515,3202,'dt-img-hide-title','0'),(28516,3203,'dt-img-hide-title','0'),(28517,3205,'dt-img-hide-title','0'),(28518,3206,'dt-img-hide-title','0'),(28519,3207,'dt-img-hide-title','0'),(28520,3208,'dt-img-hide-title','0'),(28521,3213,'dt-img-hide-title','0'),(28522,3214,'dt-img-hide-title','0'),(28523,3228,'dt-img-hide-title','0'),(28524,3229,'dt-img-hide-title','0'),(28525,3230,'dt-img-hide-title','0'),(28526,3234,'dt-img-hide-title','0'),(28527,3242,'dt-img-hide-title','0'),(28528,3243,'dt-img-hide-title','0'),(28529,3325,'dt-img-hide-title','0'),(28530,3479,'dt-img-hide-title','0'),(28531,3496,'dt-img-hide-title','0'),(28532,3496,'_wp_attachment_image_alt','Rachel France - profile image'),(28533,3497,'dt-img-hide-title','0'),(28534,3498,'dt-img-hide-title','0'),(28535,3499,'dt-img-hide-title','0'),(28536,3502,'dt-img-hide-title','0'),(28537,3504,'dt-img-hide-title','0'),(28538,3505,'dt-img-hide-title','0'),(28539,3506,'dt-img-hide-title','0'),(28540,3507,'dt-img-hide-title','0'),(28541,3511,'dt-img-hide-title','0'),(28542,3528,'dt-img-hide-title','0'),(28543,3534,'dt-video-url',''),(28544,3534,'dt-img-link',''),(28545,3534,'dt-img-hide-title','0'),(28546,3535,'dt-video-url',''),(28547,3535,'dt-img-link',''),(28548,3535,'dt-img-hide-title','0'),(28549,3535,'_wp_attachment_image_alt','Tachel France - biomechanics education'),(28550,3536,'dt-video-url',''),(28551,3536,'dt-img-link',''),(28552,3536,'dt-img-hide-title','0'),(28553,3537,'dt-video-url',''),(28554,3537,'dt-img-link',''),(28555,3537,'dt-img-hide-title','0'),(28556,3551,'dt-img-hide-title','0'),(28557,3629,'dt-img-hide-title','0'),(28558,3630,'dt-img-hide-title','0'),(28559,3631,'dt-img-hide-title','0'),(28560,3632,'dt-img-hide-title','0'),(28561,3633,'dt-img-hide-title','0'),(28562,3634,'dt-img-hide-title','0'),(28563,3635,'dt-img-hide-title','0'),(28564,3636,'dt-img-hide-title','0'),(28565,3655,'dt-video-url',''),(28566,3655,'dt-img-link',''),(28567,3655,'dt-img-hide-title','0'),(28568,3690,'dt-img-hide-title','0'),(28569,3692,'dt-img-hide-title','0'),(28570,3693,'dt-img-hide-title','0'),(28571,3694,'dt-img-hide-title','0'),(28572,3695,'dt-img-hide-title','0'),(28573,3699,'dt-img-hide-title','0'),(28574,3784,'dt-img-hide-title','0'),(28575,3789,'dt-img-hide-title','0'),(28576,3801,'dt-img-hide-title','0'),(28577,3803,'dt-img-hide-title','0'),(28578,4107,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics'),(28579,4107,'dt-img-hide-title','0'),(28580,4107,'_wp_old_slug','what-exactly-is-intrinsic-biomechanics'),(28581,4108,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics-2'),(28582,4108,'dt-img-hide-title','0'),(28583,4399,'_wp_attachment_image_alt','special-fast-track-3-day-pelvic-spine-biomechanics-workshop'),(28584,4399,'dt-img-hide-title','0'),(28585,4601,'dt-img-hide-title','0'),(28586,4705,'_wp_attachment_image_alt','imovefreely-instructor - biomechanics education'),(28587,4705,'dt-img-hide-title','0'),(28588,4707,'dt-img-hide-title','0'),(28589,4709,'_wp_attachment_image_alt','intrinsic-biomechanics-taster'),(28590,4709,'dt-img-hide-title','0'),(28591,4715,'_wp_attachment_image_alt','low-back-health-workshop - biomechanics education'),(28592,4715,'dt-img-hide-title','0'),(28593,4717,'_wp_attachment_image_alt','knee-foot-biomechanics-2-day-workshop'),(28594,4717,'dt-img-hide-title','0'),(28595,4733,'_wp_attachment_image_alt','iba-discovery-day-workshop'),(28596,4733,'dt-img-hide-title','0'),(28597,5135,'_wp_attachment_image_alt','Biomechanics Coach & Diploma Workshop Series'),(28598,5135,'dt-img-hide-title','0'),(28599,5139,'_wp_attachment_image_alt','Low Back Health Workshop'),(28600,5139,'dt-img-hide-title','0'),(28601,5143,'_wp_attachment_image_alt','Spine Biomechanics 2 Day Workshop'),(28602,5143,'dt-img-hide-title','0'),(28603,5149,'_wp_attachment_image_alt','Pelvic Biomechanics 2 Day Workshop'),(28604,5149,'dt-img-hide-title','0'),(28605,5151,'_wp_attachment_image_alt','Shoulder Biomechanics 2 Day Workshop'),(28606,5151,'dt-img-hide-title','0'),(28607,5155,'dt-img-hide-title','0'),(28608,5155,'dt-video-url',''),(28609,5155,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split'),(28610,5253,'dt-img-hide-title','0'),(28611,5325,'dt-img-hide-title','0'),(28612,6395,'dt-img-hide-title','0'),(28613,6410,'_wp_attachment_image_alt','Rachel France - Listening to Dan John, Never Let Go'),(28614,6410,'dt-img-hide-title','0'),(28615,6682,'_wp_attachment_image_alt','Rachel France smiling - Group Exercise'),(28616,6682,'dt-img-hide-title','0'),(28617,6683,'_wp_attachment_image_alt','Rachel France - Biomechanics Education - Group Exercise'),(28618,6683,'dt-img-hide-title','0'),(28619,6724,'dt-img-hide-title','0'),(28620,7303,'dt-img-hide-title','0'),(28621,7690,'_wp_page_template','default'),(28622,7690,'dt-video-url',''),(28623,7690,'dt-img-link',''),(28624,7690,'dt-img-hide-title','0'),(28625,7690,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1284;s:6:\"height\";i:1248;s:4:\"file\";s:10:\"Flowin.png\";}}'),(28626,7696,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1128;s:6:\"height\";i:871;s:4:\"file\";s:17:\"TherapyEmpire.png\";}}'),(28627,7696,'_wp_page_template','default'),(28628,7696,'dt-video-url',''),(28629,7696,'dt-img-link',''),(28630,7696,'dt-img-hide-title','0'),(28631,7709,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1085;s:6:\"height\";i:851;s:4:\"file\";s:15:\"PulseRoll-1.png\";}}'),(28632,7709,'_wp_page_template','default'),(28633,7709,'dt-video-url',''),(28634,7709,'dt-img-link',''),(28635,7709,'dt-img-hide-title','0'),(28636,7711,'_wp_page_template','default'),(28637,7711,'dt-video-url',''),(28638,7711,'dt-img-link',''),(28639,7711,'dt-img-hide-title','0'),(28640,8351,'dt-img-hide-title','0'),(28641,9448,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:420;s:6:\"height\";i:315;s:4:\"file\";s:7:\"STA.png\";}}'),(28642,9448,'_wp_page_template','default'),(28643,9448,'dt-video-url',''),(28644,9448,'dt-img-link',''),(28645,9448,'dt-img-hide-title','0'),(28646,10372,'_wp_attachment_image_alt','Level 4 Low Back Pain Qualification for Personal Trainers'),(28647,10372,'dt-img-hide-title','0'),(28648,10836,'_wp_old_slug','always-always-start-with-why'),(28649,10836,'dt-img-hide-title','0'),(28650,12889,'dt-img-hide-title','0'),(28651,13010,'_wp_attachment_image_alt','Are Shoulder Problems Are The New Low Back Pain_'),(28652,13010,'dt-img-hide-title','0'),(28653,13150,'dt-img-hide-title','0'),(28654,13709,'dt-video-url',''),(28655,13709,'dt-img-link','https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description'),(28656,13709,'dt-img-hide-title','0'),(28657,16056,'_wp_attachment_image_alt','Golf Biomechanics Workshop'),(28658,16056,'dt-img-hide-title','0'),(28659,16057,'_wp_attachment_image_alt','Running Biomechanics Workshop'),(28660,16057,'dt-img-hide-title','0'),(28661,17664,'dt-video-url',''),(28662,17664,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549'),(28663,17664,'dt-img-hide-title','0'),(28664,19073,'_wp_attachment_image_alt','Intrinsic Biomechanics For Personal Trainers - 3 Phase System For Health, Function & Performance'),(28665,19073,'dt-img-hide-title','0'),(28666,23078,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1204;s:6:\"height\";i:1072;s:4:\"file\";s:37:\"Screenshot-2020-07-07-at-16.49.55.png\";}}'),(28667,23949,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:1499;s:4:\"file\";s:15:\"IMG_3042-1.jpeg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-768x1151.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(28668,24805,'_wp_attachment_backup_sizes','a:3:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:12:\"IMG_1593.jpg\";}s:18:\"full-1605688593104\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"IMG_1593-e1604933246144.jpg\";}s:18:\"full-1605688603868\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"IMG_1593-e1605688593104.jpg\";}}'),(28669,24806,'_wp_attachment_backup_sizes','a:13:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:49:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-scaled.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:51:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:51:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:52:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"2048x2048-orig\";a:4:{s:4:\"file\";s:52:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(28670,24937,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1080;s:6:\"height\";i:1440;s:4:\"file\";s:12:\"IMG_1450.jpg\";}}'),(28671,25472,'_wp_attached_file','2020/12/shutterstock_1800822229-scaled-1.jpg'),(28672,25472,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/12/shutterstock_1800822229-scaled-1.jpg\";s:8:\"filesize\";i:701849;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(28673,25473,'_wp_attached_file','2020/12/Screenshot-2020-12-15-at-10.55.19-1.png'),(28674,25473,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2436;s:6:\"height\";i:1646;s:4:\"file\";s:47:\"2020/12/Screenshot-2020-12-15-at-10.55.19-1.png\";s:8:\"filesize\";i:1668243;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28675,25474,'_wp_attached_file','2020/12/shutterstock_1663518505-scaled-1.jpg'),(28676,25474,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2020/12/shutterstock_1663518505-scaled-1.jpg\";s:8:\"filesize\";i:979524;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(28677,25551,'_wp_attached_file','2020/12/CIMSPA-Education-Partner-Training-Provider-Logo-White-RGB-1.png'),(28678,25551,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1064;s:6:\"height\";i:208;s:4:\"file\";s:71:\"2020/12/CIMSPA-Education-Partner-Training-Provider-Logo-White-RGB-1.png\";s:8:\"filesize\";i:17564;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28679,25551,'_wp_attachment_image_alt','CIMSPA-Education-Partner-Training-Provider'),(28680,25551,'dt-img-hide-title','0'),(28681,25582,'_wp_attached_file','2020/12/Pelvic-Biomechanics-Practical-Anatomy-Part-1-–-The-Bones-Muscles-Actions-Google-Docs-1.pdf'),(28682,25582,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:96:\"Pelvic-Biomechanics-Practical-Anatomy-Part-1-–-The-Bones-Muscles-Actions-Google-Docs-1-pdf.jpg\";s:5:\"width\";i:1498;s:6:\"height\";i:2118;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97451;}s:6:\"medium\";a:5:{s:4:\"file\";s:105:\"Pelvic-Biomechanics-Practical-Anatomy-Part-1-–-The-Bones-Muscles-Actions-Google-Docs-1-pdf-900x1272.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41734;}s:5:\"large\";a:5:{s:4:\"file\";s:106:\"Pelvic-Biomechanics-Practical-Anatomy-Part-1-–-The-Bones-Muscles-Actions-Google-Docs-1-pdf-1200x1697.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1697;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64031;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:104:\"Pelvic-Biomechanics-Practical-Anatomy-Part-1-–-The-Bones-Muscles-Actions-Google-Docs-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13223;}}s:8:\"filesize\";i:173291;}'),(28683,25696,'_wp_attached_file','2021/01/shutterstock_1697704519-scaled-1.jpg'),(28684,25696,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2021/01/shutterstock_1697704519-scaled-1.jpg\";s:8:\"filesize\";i:854535;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(28685,25697,'_wp_attached_file','2021/01/shutterstock_293547812-scaled-1.jpg'),(28686,25697,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2021/01/shutterstock_293547812-scaled-1.jpg\";s:8:\"filesize\";i:412053;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28687,25698,'_wp_attached_file','2021/01/shutterstock_293546465-scaled-1.jpg'),(28688,25698,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2021/01/shutterstock_293546465-scaled-1.jpg\";s:8:\"filesize\";i:368908;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28689,25700,'_wp_attached_file','2021/01/shutterstock_1335929453-scaled-1.jpg'),(28690,25700,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2021/01/shutterstock_1335929453-scaled-1.jpg\";s:8:\"filesize\";i:237272;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(28691,25701,'_wp_attached_file','2021/01/shutterstock_145358134-scaled-1.jpg'),(28692,25701,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2021/01/shutterstock_145358134-scaled-1.jpg\";s:8:\"filesize\";i:439374;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28693,25703,'_wp_attached_file','2021/01/shutterstock_293547815-scaled-1.jpg'),(28694,25703,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2021/01/shutterstock_293547815-scaled-1.jpg\";s:8:\"filesize\";i:378233;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28695,25704,'_wp_attached_file','2021/01/Screenshot-2021-01-04-at-15.06.00-1.png'),(28696,25704,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1698;s:6:\"height\";i:1426;s:4:\"file\";s:47:\"2021/01/Screenshot-2021-01-04-at-15.06.00-1.png\";s:8:\"filesize\";i:1643569;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28697,25705,'_wp_attached_file','2021/01/shutterstock_151422785-scaled-1.jpg'),(28698,25705,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2021/01/shutterstock_151422785-scaled-1.jpg\";s:8:\"filesize\";i:326526;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28699,25881,'_wp_attached_file','2021/01/WEBSITE-PDF-SPINE-LINKS-1-2.pdf'),(28700,25881,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:35:\"WEBSITE-PDF-SPINE-LINKS-1-2-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101671;}s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"WEBSITE-PDF-SPINE-LINKS-1-2-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46767;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"WEBSITE-PDF-SPINE-LINKS-1-2-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67973;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"WEBSITE-PDF-SPINE-LINKS-1-2-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15371;}}s:8:\"filesize\";i:222437;}'),(28701,25882,'_wp_attached_file','2021/01/WEBSITE-PDF-SPINE-LINKS-1-1-1.pdf'),(28702,25882,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:37:\"WEBSITE-PDF-SPINE-LINKS-1-1-1-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101671;}s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"WEBSITE-PDF-SPINE-LINKS-1-1-1-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46767;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"WEBSITE-PDF-SPINE-LINKS-1-1-1-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67973;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"WEBSITE-PDF-SPINE-LINKS-1-1-1-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15371;}}s:8:\"filesize\";i:222437;}'),(28703,25885,'_wp_attached_file','2021/01/IMG_4408-1.jpg'),(28704,25885,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1125;s:6:\"height\";i:1384;s:4:\"file\";s:22:\"2021/01/IMG_4408-1.jpg\";s:8:\"filesize\";i:1702605;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(28705,25907,'_wp_attached_file','2021/01/tengyart-auEPahZjT40-unsplash-scaled-1.jpg'),(28706,25907,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:50:\"2021/01/tengyart-auEPahZjT40-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:315458;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28707,25974,'_wp_attached_file','2021/01/shutterstock_1141946069-scaled-1.jpg'),(28708,25974,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:44:\"2021/01/shutterstock_1141946069-scaled-1.jpg\";s:8:\"filesize\";i:253137;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2018 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:44:\"Anatomy,Of,Human,Knee,Joint.,3d,Illustration\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"organ,treatment,medical,joint,cross section,anatomy,part,exercis\";}}}'),(28709,25975,'_wp_attached_file','2021/01/shutterstock_296166746-scaled-1.jpg'),(28710,25975,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2021/01/shutterstock_296166746-scaled-1.jpg\";s:8:\"filesize\";i:199703;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28711,25976,'_wp_attached_file','2021/01/shutterstock_1030913119-scaled-1.jpg'),(28712,25976,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:44:\"2021/01/shutterstock_1030913119-scaled-1.jpg\";s:8:\"filesize\";i:359064;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(28713,25977,'_wp_attached_file','2021/01/shutterstock_199824647-scaled-1.jpg'),(28714,25977,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2021/01/shutterstock_199824647-scaled-1.jpg\";s:8:\"filesize\";i:247383;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28715,25978,'_wp_attached_file','2021/01/Screenshot-2021-01-26-at-15.10.33-1.png'),(28716,25978,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1680;s:6:\"height\";i:1248;s:4:\"file\";s:47:\"2021/01/Screenshot-2021-01-26-at-15.10.33-1.png\";s:8:\"filesize\";i:490588;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28717,25979,'_wp_attached_file','2021/01/Screenshot-2021-01-26-at-15.10.45-1.png'),(28718,25979,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1248;s:6:\"height\";i:1240;s:4:\"file\";s:47:\"2021/01/Screenshot-2021-01-26-at-15.10.45-1.png\";s:8:\"filesize\";i:945192;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28719,26047,'_wp_attached_file','2021/02/IMG_4410-1.jpg'),(28720,26047,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1125;s:6:\"height\";i:1384;s:4:\"file\";s:22:\"2021/02/IMG_4410-1.jpg\";s:8:\"filesize\";i:1652762;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(28721,26048,'_wp_attached_file','2021/02/Screenshot-2021-02-01-at-08.24.11-1.png'),(28722,26048,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:1916;s:4:\"file\";s:47:\"2021/02/Screenshot-2021-02-01-at-08.24.11-1.png\";s:8:\"filesize\";i:7031589;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28723,26053,'_wp_attached_file','2021/02/Vgym-1.png'),(28724,26053,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:114;s:6:\"height\";i:110;s:4:\"file\";s:18:\"2021/02/Vgym-1.png\";s:8:\"filesize\";i:5505;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28725,26106,'_wp_attached_file','2021/02/shutterstock_1401205709-scaled-1.jpg'),(28726,26106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2021/02/shutterstock_1401205709-scaled-1.jpg\";s:8:\"filesize\";i:577838;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(28727,26108,'_wp_attached_file','2021/02/shutterstock_309793826-scaled-1.jpg'),(28728,26108,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2021/02/shutterstock_309793826-scaled-1.jpg\";s:8:\"filesize\";i:512875;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2015 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:57:\"Medically,Accurate,Illustration,Of,The,Vastus,Intermedius\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"frontal,muscular,medical,vastus,anatomy,thigh,upper,isolated,bod\";}}}'),(28729,26109,'_wp_attached_file','2021/02/TENSA-VASTUS-INTERMEDIUS-1.png'),(28730,26109,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1512;s:6:\"height\";i:1454;s:4:\"file\";s:38:\"2021/02/TENSA-VASTUS-INTERMEDIUS-1.png\";s:8:\"filesize\";i:1631961;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28731,26110,'_wp_attached_file','2021/02/ARTICULARIS-GENUS-1.jpg'),(28732,26110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1575;s:6:\"height\";i:2100;s:4:\"file\";s:31:\"2021/02/ARTICULARIS-GENUS-1.jpg\";s:8:\"filesize\";i:540918;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28733,26111,'_wp_attached_file','2021/02/BICEP-FEM-LONG-shutterstock_303082511-scaled-1.jpg'),(28734,26111,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:58:\"2021/02/BICEP-FEM-LONG-shutterstock_303082511-scaled-1.jpg\";s:8:\"filesize\";i:304555;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2015 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:67:\"Medically,Accurate,Muscle,Illustration,Of,The,Biceps,Femoris,Longus\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,longus,medical,anatomy,thigh,upper,isolated,skin,back,b\";}}}'),(28735,26112,'_wp_attached_file','2021/02/BICEP-FEM-SHORT-shutterstock_303082577-scaled-1.jpg'),(28736,26112,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2021/02/BICEP-FEM-SHORT-shutterstock_303082577-scaled-1.jpg\";s:8:\"filesize\";i:260861;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2015 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:66:\"Medically,Accurate,Muscle,Illustration,Of,The,Biceps,Femoris,Short\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,medical,anatomy,thigh,upper,isolated,skin,back,body,tra\";}}}'),(28737,26113,'_wp_attached_file','2021/02/SEMIMEM-shutterstock_303066836-scaled-1.jpg'),(28738,26113,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:51:\"2021/02/SEMIMEM-shutterstock_303066836-scaled-1.jpg\";s:8:\"filesize\";i:348459;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2015 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:61:\"Medically,Accurate,Muscle,Illustration,Of,The,Semimembranosus\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,medical,anatomy,thigh,upper,isolated,skin,back,body,tra\";}}}'),(28739,26114,'_wp_attached_file','2021/02/SEMITEN-shutterstock_293552699-scaled-1.jpg'),(28740,26114,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:51:\"2021/02/SEMITEN-shutterstock_293552699-scaled-1.jpg\";s:8:\"filesize\";i:318730;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2015 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:51:\"Medical,Accurate,Illustration,Of,The,Semitendinosus\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"medical,accurate,anatomy,upper,leg,3d,skeleton,white,plain,semit\";}}}'),(28741,26154,'_wp_attached_file','2021/02/David_Lloyd_Photo-1.jpg'),(28742,26154,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:722;s:6:\"height\";i:960;s:4:\"file\";s:31:\"2021/02/David_Lloyd_Photo-1.jpg\";s:8:\"filesize\";i:45928;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28743,26155,'_wp_attached_file','2021/02/Screenshot-2021-02-05-at-13.33.11-1.png'),(28744,26155,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:534;s:6:\"height\";i:528;s:4:\"file\";s:47:\"2021/02/Screenshot-2021-02-05-at-13.33.11-1.png\";s:8:\"filesize\";i:489742;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28745,26156,'_wp_attached_file','2021/02/image-1.png'),(28746,26156,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2224;s:6:\"height\";i:2020;s:4:\"file\";s:19:\"2021/02/image-1.png\";s:8:\"filesize\";i:4004498;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28747,26157,'_wp_attached_file','2021/02/Screenshot-2021-02-05-at-14.59.03-1.png'),(28748,26157,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1738;s:6:\"height\";i:656;s:4:\"file\";s:47:\"2021/02/Screenshot-2021-02-05-at-14.59.03-1.png\";s:8:\"filesize\";i:1527324;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28749,26161,'_wp_attached_file','2021/02/emma-simpson-mNGaaLeWEp0-unsplash-scaled-1.jpg'),(28750,26161,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:54:\"2021/02/emma-simpson-mNGaaLeWEp0-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:639078;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28751,26190,'_wp_attached_file','2021/02/FUNDAMENTAL-QUIZ-ANSWERS-1-1-1.pdf'),(28752,26190,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:38:\"FUNDAMENTAL-QUIZ-ANSWERS-1-1-1-pdf.jpg\";s:5:\"width\";i:1189;s:6:\"height\";i:1682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113966;}s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"FUNDAMENTAL-QUIZ-ANSWERS-1-1-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76509;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"FUNDAMENTAL-QUIZ-ANSWERS-1-1-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25628;}}s:8:\"filesize\";i:226914;}'),(28753,26239,'_wp_attached_file','2021/02/matthew-ball-3wW2fBjptQo-unsplash-scaled-1.jpg'),(28754,26239,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:54:\"2021/02/matthew-ball-3wW2fBjptQo-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:150801;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28755,26457,'_wp_attached_file','2021/02/Screenshot-2021-02-22-at-14.45.07-1.png'),(28756,26457,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1086;s:6:\"height\";i:600;s:4:\"file\";s:47:\"2021/02/Screenshot-2021-02-22-at-14.45.07-1.png\";s:8:\"filesize\";i:687224;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28757,26458,'_wp_attached_file','2021/02/Screenshot-2021-02-22-at-14.43.34-1.png'),(28758,26458,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1088;s:6:\"height\";i:384;s:4:\"file\";s:47:\"2021/02/Screenshot-2021-02-22-at-14.43.34-1.png\";s:8:\"filesize\";i:515693;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28759,26459,'_wp_attached_file','2021/02/Screenshot-2021-02-22-at-14.44.24-1.png'),(28760,26459,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1028;s:6:\"height\";i:552;s:4:\"file\";s:47:\"2021/02/Screenshot-2021-02-22-at-14.44.24-1.png\";s:8:\"filesize\";i:704217;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28761,26460,'_wp_attached_file','2021/02/Screenshot-2021-02-22-at-14.46.08-1.png'),(28762,26460,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1102;s:6:\"height\";i:864;s:4:\"file\";s:47:\"2021/02/Screenshot-2021-02-22-at-14.46.08-1.png\";s:8:\"filesize\";i:1060252;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28763,26468,'_wp_attached_file','2021/02/WEBSITE-PDF-SPINE-LINKS-copy-2.pdf'),(28764,26468,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:38:\"WEBSITE-PDF-SPINE-LINKS-copy-2-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92607;}s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"WEBSITE-PDF-SPINE-LINKS-copy-2-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45951;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"WEBSITE-PDF-SPINE-LINKS-copy-2-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67625;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"WEBSITE-PDF-SPINE-LINKS-copy-2-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15081;}}s:8:\"filesize\";i:222372;}'),(28765,26476,'_wp_attached_file','2021/02/WEBSITE-PDF-SPINE-LINKS-copy-1-1.pdf'),(28766,26476,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:40:\"WEBSITE-PDF-SPINE-LINKS-copy-1-1-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92097;}s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"WEBSITE-PDF-SPINE-LINKS-copy-1-1-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45893;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"WEBSITE-PDF-SPINE-LINKS-copy-1-1-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"WEBSITE-PDF-SPINE-LINKS-copy-1-1-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15141;}}s:8:\"filesize\";i:220808;}'),(28767,26530,'_wp_attached_file','2021/02/Workshop-Covid-19-questionnaire-LINK-1-1.pdf'),(28768,26530,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:48:\"Workshop-Covid-19-questionnaire-LINK-1-1-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72544;}s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Workshop-Covid-19-questionnaire-LINK-1-1-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35242;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"Workshop-Covid-19-questionnaire-LINK-1-1-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52356;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Workshop-Covid-19-questionnaire-LINK-1-1-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12207;}}s:8:\"filesize\";i:199377;}'),(28769,26532,'_wp_attached_file','2021/02/Workshop-feedback-questionnaire-LINK-1-1.pdf'),(28770,26532,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:48:\"Workshop-feedback-questionnaire-LINK-1-1-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72500;}s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Workshop-feedback-questionnaire-LINK-1-1-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32155;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"Workshop-feedback-questionnaire-LINK-1-1-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48229;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Workshop-feedback-questionnaire-LINK-1-1-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10876;}}s:8:\"filesize\";i:196829;}'),(28771,26535,'_wp_attached_file','2021/02/Clinical-questionnaire-guidance-1-1.pdf'),(28772,26535,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:43:\"Clinical-questionnaire-guidance-1-1-pdf.jpg\";s:5:\"width\";i:1707;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143764;}s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Clinical-questionnaire-guidance-1-1-pdf-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57454;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"Clinical-questionnaire-guidance-1-1-pdf-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82740;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Clinical-questionnaire-guidance-1-1-pdf-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18846;}}s:8:\"filesize\";i:178811;}'),(28773,26570,'_wp_attached_file','2021/03/53FD148C-1E3B-4EDB-9777-00D3DB9B3B15-1.png'),(28774,26570,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:501;s:6:\"height\";i:501;s:4:\"file\";s:50:\"2021/03/53FD148C-1E3B-4EDB-9777-00D3DB9B3B15-1.png\";s:8:\"filesize\";i:725654;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28775,26572,'_wp_attached_file','2020/11/Screenshot-2021-03-03-at-19.49.29-1.png'),(28776,26572,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1484;s:6:\"height\";i:618;s:4:\"file\";s:47:\"2020/11/Screenshot-2021-03-03-at-19.49.29-1.png\";s:8:\"filesize\";i:1315223;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28777,26573,'_wp_attached_file','2021/03/E640A33D-16F3-400E-AB36-F9CB496F07E4-1.png'),(28778,26573,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:501;s:6:\"height\";i:501;s:4:\"file\";s:50:\"2021/03/E640A33D-16F3-400E-AB36-F9CB496F07E4-1.png\";s:8:\"filesize\";i:718479;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28779,26750,'_wp_attached_file','2021/03/shutterstock_1744603634-scaled-1.jpg'),(28780,26750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:44:\"2021/03/shutterstock_1744603634-scaled-1.jpg\";s:8:\"filesize\";i:544572;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2020 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:53:\"Young,Girl,Does,Breathing,Exercises,In,A,Gym,With,Her\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"practice,woman,young,motivation,exercise,young adult,protection,\";}}}'),(28781,26752,'_wp_attached_file','2021/03/shutterstock_1550458109-scaled-1.jpg'),(28782,26752,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1634;s:4:\"file\";s:44:\"2021/03/shutterstock_1550458109-scaled-1.jpg\";s:8:\"filesize\";i:986795;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2019 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:52:\"Green,Lungs,Of,Planet,Earth.,3d,Rendering,Of,A,Clean\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"untouched,co2 reduction,habitat,eco,lungs,clean air,oxygen,energ\";}}}'),(28783,26753,'_wp_attached_file','2021/03/Screenshot-2021-03-15-at-20.51.25-1.png'),(28784,26753,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1488;s:6:\"height\";i:960;s:4:\"file\";s:47:\"2021/03/Screenshot-2021-03-15-at-20.51.25-1.png\";s:8:\"filesize\";i:3290891;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28785,26754,'_wp_attached_file','2021/03/shutterstock_1811918470-scaled-1.jpg'),(28786,26754,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2021/03/shutterstock_1811918470-scaled-1.jpg\";s:8:\"filesize\";i:1050142;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2020 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:60:\"The,Diaphragm,Muscle,In,Isolation,Human,Anatomy,3d,Rendering\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"medical,anatomy,skeletal,isolated,respiration,body,medical illus\";}}}'),(28787,26755,'_wp_attached_file','2021/03/shutterstock_1711824001-scaled-1.jpg'),(28788,26755,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:44:\"2021/03/shutterstock_1711824001-scaled-1.jpg\";s:8:\"filesize\";i:563652;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2020 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:52:\"Young,Woman,With,N95,Face,Mask,Adding,Weights,To,The\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"infection,working out,woman,activity,strength,young,caucasian,mo\";}}}'),(28789,26882,'_wp_attached_file','2021/02/shutterstock_440565091_635713970809-scaled-1.jpg'),(28790,26882,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2021/02/shutterstock_440565091_635713970809-scaled-1.jpg\";s:8:\"filesize\";i:321996;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2016 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:61:\"3d,Rendered,,Medically,Accurate,Illustration,Of,The,Popliteus\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,medical,anatomy,upper,isolated,popliteus,body,hip,later\";}}}'),(28791,26958,'_wp_attached_file','2021/03/simone-secci-49uySSA678U-unsplash-scaled-1.jpg'),(28792,26958,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:54:\"2021/03/simone-secci-49uySSA678U-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:129303;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(28793,30605,'dt-img-hide-title','0'),(28794,30606,'dt-img-hide-title','0'),(28795,30610,'dt-img-hide-title','0'),(28796,30612,'dt-img-hide-title','0'),(28797,31065,'_wp_attachment_image_alt','Online vs Face to Face workshop - biomechanics education'),(28798,31065,'dt-img-hide-title','0'),(28799,31068,'_wp_attachment_image_alt','gabin-vallet - Online vs Face to Face- biomechanics education'),(28800,31068,'dt-img-hide-title','0'),(28801,31069,'_wp_attachment_image_alt','jonathan-borba - online vs face to face workshop - biomechanics education'),(28802,31069,'dt-img-hide-title','0'),(28803,31185,'_wp_attachment_image_alt','[Case Study] Elite Lifter Laura Hewitt - biomechanics education'),(28804,31185,'dt-img-hide-title','0'),(28805,31260,'_wp_attachment_image_alt','Understanding Nerves - young man relaxing on the sofa'),(28806,31260,'dt-img-hide-title','0'),(28807,31261,'_wp_attachment_image_alt','Understanding Nerves - young woman exercising'),(28808,31261,'dt-img-hide-title','0'),(28809,31262,'_wp_attachment_image_alt','Understanding Nerves - Rachel Frances Thomson'),(28810,31262,'dt-img-hide-title','0'),(28811,31422,'_wp_attachment_image_alt','Neuromuscular Exercise - biomechanics education'),(28812,31422,'dt-img-hide-title','0'),(28813,31424,'_wp_attachment_image_alt','Neuromuscular Exercise - one leg'),(28814,31424,'dt-img-hide-title','0'),(28815,31431,'_wp_attachment_image_alt','rachel thomson - exercise biomechanics education'),(28816,31431,'dt-img-hide-title','0'),(28817,31432,'_wp_attachment_image_alt','Neuromuscular Exercise with dog - rachel thomson'),(28818,31432,'dt-img-hide-title','0'),(28819,31433,'_wp_attachment_image_alt','neuromuscular exercise - rachel thomson'),(28820,31433,'dt-img-hide-title','0'),(28821,31612,'_wp_attachment_image_alt','Mark Laws - IBA discovery day'),(28822,31612,'dt-img-hide-title','0'),(28823,31613,'_wp_attachment_image_alt','Mark Laws - biomechanics education'),(28824,31613,'dt-img-hide-title','0'),(28825,31614,'_wp_attachment_image_alt','IBA Discovery Day Workshops - biomechanics education'),(28826,31614,'dt-img-hide-title','0'),(28827,31747,'_wp_attachment_image_alt','The Power of Words - biomechanics education'),(28828,31747,'dt-img-hide-title','0'),(28829,31749,'_wp_attachment_image_alt','brett-jordan - practice makes perfect'),(28830,31749,'dt-img-hide-title','0'),(28831,31877,'_wp_attachment_image_alt','Portrait_Mike Stewart - biomechanics education'),(28832,31877,'dt-img-hide-title','0'),(28833,31879,'_wp_attachment_image_alt','JBE Rio 3 - the kaizen project'),(28834,31879,'dt-img-hide-title','0'),(28835,32012,'_wp_attachment_image_alt','Rachel France - the kaizen project'),(28836,32012,'dt-img-hide-title','0'),(28837,32179,'_wp_attachment_image_alt','Rachel France - exercising'),(28838,32179,'dt-img-hide-title','0'),(28839,32182,'_wp_attachment_image_alt','Rachel France - cimspa member profile'),(28840,32182,'dt-img-hide-title','0'),(28841,32556,'_wp_attachment_image_alt','A man lies on an exercise mat, he is wearing a blue top and black shorts, white socks, and white trainers. He has his left knee bent and right leg straight on the floor. Rachel is knelt beside him wearing an orange top and black tracksuit bottoms, and socks. She is gesturing something with her hands and talking to the class.'),(28842,32556,'dt-img-hide-title','0'),(28843,38017,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_Black_RGB-01.png\";}s:18:\"full-1710432922797\";a:3:{s:5:\"width\";i:500;s:6:\"height\";i:117;s:4:\"file\";s:44:\"FFG_Wordmark_Black_RGB-01-e1710432746919.png\";}}'),(28844,38017,'_wp_page_template','default'),(28845,38017,'dt-video-url',''),(28846,38017,'dt-img-link',''),(28847,38017,'dt-img-hide-title','0'),(28848,38023,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_White_RGB-01.png\";}}'),(28849,38023,'dt-img-hide-title','0'),(28850,38588,'_wp_attachment_context','custom-header'),(28851,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(28852,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(28853,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(28854,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(28855,192,'dt-img-hide-title','0'),(28856,194,'dt-img-hide-title','0'),(28857,205,'dt-img-hide-title','0'),(28858,206,'dt-img-hide-title','0'),(28859,208,'dt-img-hide-title','0'),(28860,247,'dt-img-hide-title','0'),(28861,248,'_wp_attachment_context','site-icon'),(28862,248,'dt-img-hide-title','0'),(28863,265,'dt-img-hide-title','0'),(28864,283,'dt-img-hide-title','0'),(28865,284,'dt-img-hide-title','0'),(28866,285,'dt-img-hide-title','0'),(28867,287,'dt-img-hide-title','0'),(28868,290,'dt-img-hide-title','0'),(28869,291,'dt-img-hide-title','0'),(28870,294,'dt-img-hide-title','0'),(28871,297,'dt-img-hide-title','0'),(28872,333,'dt-img-hide-title','0'),(28873,341,'dt-img-hide-title','0'),(28874,407,'dt-img-hide-title','0'),(28875,458,'dt-img-hide-title','0'),(28876,495,'dt-img-hide-title','0'),(28877,497,'dt-img-hide-title','0'),(28878,505,'dt-img-hide-title','0'),(28879,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(28880,210,'dt-img-link',''),(28881,210,'dt-img-hide-title','0'),(28882,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(28883,221,'dt-img-link',''),(28884,221,'dt-img-hide-title','0'),(28885,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(28886,224,'dt-img-link',''),(28887,224,'dt-img-hide-title','0'),(28888,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(28889,228,'dt-img-link',''),(28890,228,'dt-img-hide-title','0'),(28891,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(28892,230,'dt-img-link',''),(28893,230,'dt-img-hide-title','0'),(28894,237,'dt-img-hide-title','0'),(28895,237,'dt-img-link',''),(28896,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(28897,557,'dt-img-hide-title','0'),(28898,559,'dt-img-hide-title','0'),(28899,562,'dt-img-hide-title','0'),(28900,569,'dt-img-hide-title','0'),(28901,592,'dt-img-hide-title','0'),(28902,596,'dt-img-hide-title','0'),(28903,617,'dt-img-hide-title','0'),(28904,620,'dt-img-hide-title','0'),(28905,621,'dt-img-hide-title','0'),(28906,623,'dt-img-hide-title','0'),(28907,624,'dt-img-hide-title','0'),(28908,644,'dt-img-hide-title','0'),(28909,648,'dt-img-hide-title','0'),(28910,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(28911,824,'dt-img-link',''),(28912,824,'dt-img-hide-title','0'),(28913,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(28914,825,'dt-img-link',''),(28915,825,'dt-img-hide-title','0'),(28916,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(28917,828,'dt-img-link',''),(28918,828,'dt-img-hide-title','0'),(28919,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(28920,1450,'dt-img-link',''),(28921,1450,'dt-img-hide-title','0'),(28922,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(28923,1451,'dt-img-link',''),(28924,1451,'dt-img-hide-title','0'),(28925,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(28926,1452,'dt-img-link',''),(28927,1452,'dt-img-hide-title','0'),(28928,652,'dt-img-hide-title','0'),(28929,655,'dt-img-hide-title','0'),(28930,675,'dt-img-hide-title','0'),(28931,678,'dt-img-hide-title','0'),(28932,683,'dt-img-hide-title','0'),(28933,703,'dt-img-hide-title','0'),(28934,706,'dt-img-hide-title','0'),(28935,709,'dt-img-hide-title','0'),(28936,712,'dt-img-hide-title','0'),(28937,713,'dt-img-hide-title','0'),(28938,714,'dt-img-hide-title','0'),(28939,715,'dt-img-hide-title','0'),(28940,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(28941,722,'dt-img-hide-title','0'),(28942,735,'dt-img-hide-title','0'),(28943,759,'dt-img-hide-title','0'),(28944,762,'dt-img-hide-title','0'),(28945,766,'dt-img-hide-title','0'),(28946,770,'dt-img-hide-title','0'),(28947,804,'dt-img-hide-title','0'),(28948,814,'dt-img-hide-title','0'),(28949,827,'dt-img-hide-title','0'),(28950,830,'dt-img-hide-title','0'),(28951,854,'dt-img-hide-title','0'),(28952,857,'dt-img-hide-title','0'),(28953,874,'dt-img-hide-title','0'),(28954,937,'dt-img-hide-title','0'),(28955,941,'dt-img-hide-title','0'),(28956,955,'dt-img-hide-title','0'),(28957,969,'_wp_attachment_image_alt','imove Freely'),(28958,969,'dt-img-hide-title','0'),(28959,1001,'dt-img-hide-title','0'),(28960,1015,'dt-img-hide-title','0'),(28961,1018,'dt-img-hide-title','0'),(28962,1020,'dt-img-hide-title','0'),(28963,1021,'dt-img-hide-title','0'),(28964,1024,'dt-img-hide-title','0'),(28965,1027,'dt-img-hide-title','0'),(28966,1030,'dt-img-hide-title','0'),(28967,1035,'dt-img-hide-title','0'),(28968,1039,'dt-img-hide-title','0'),(28969,1045,'dt-img-hide-title','0'),(28970,1051,'dt-img-hide-title','0'),(28971,1052,'dt-img-hide-title','0'),(28972,1055,'dt-img-hide-title','0'),(28973,1057,'dt-img-hide-title','0'),(28974,1061,'dt-img-hide-title','0'),(28975,1065,'dt-img-hide-title','0'),(28976,1068,'dt-img-hide-title','0'),(28977,1073,'dt-img-hide-title','0'),(28978,1078,'dt-img-hide-title','0'),(28979,1084,'dt-img-hide-title','0'),(28980,1088,'dt-img-hide-title','0'),(28981,1094,'dt-img-hide-title','0'),(28982,1096,'dt-img-hide-title','0'),(28983,1097,'dt-img-hide-title','0'),(28984,1099,'dt-img-hide-title','0'),(28985,1106,'dt-img-hide-title','0'),(28986,1110,'dt-img-hide-title','0'),(28987,1112,'dt-img-hide-title','0'),(28988,1116,'dt-img-hide-title','0'),(28989,1125,'dt-img-hide-title','0'),(28990,1129,'dt-img-hide-title','0'),(28991,1145,'dt-img-hide-title','0'),(28992,1167,'dt-img-hide-title','0'),(28993,1184,'dt-img-hide-title','0'),(28994,1186,'dt-img-hide-title','0'),(28995,1187,'dt-img-hide-title','0'),(28996,1189,'dt-img-hide-title','0'),(28997,1194,'dt-img-hide-title','0'),(28998,1197,'dt-img-hide-title','0'),(28999,1201,'dt-img-hide-title','0'),(29000,1202,'dt-img-hide-title','0'),(29001,1203,'dt-img-hide-title','0'),(29002,1204,'dt-img-hide-title','0'),(29003,1205,'dt-img-hide-title','0'),(29004,1206,'dt-img-hide-title','0'),(29005,1207,'dt-img-hide-title','0'),(29006,1209,'dt-img-hide-title','0'),(29007,1210,'dt-img-hide-title','0'),(29008,1211,'dt-img-hide-title','0'),(29009,1212,'dt-img-hide-title','0'),(29010,1213,'dt-img-hide-title','0'),(29011,1214,'dt-img-hide-title','0'),(29012,1220,'dt-img-hide-title','0'),(29013,1223,'dt-img-hide-title','0'),(29014,1226,'dt-img-hide-title','0'),(29015,1228,'dt-img-hide-title','0'),(29016,1232,'dt-img-hide-title','0'),(29017,1235,'dt-img-hide-title','0'),(29018,1239,'dt-img-hide-title','0'),(29019,1242,'dt-img-hide-title','0'),(29020,1246,'dt-img-hide-title','0'),(29021,1256,'dt-img-hide-title','0'),(29022,1262,'dt-img-hide-title','0'),(29023,1265,'dt-img-hide-title','0'),(29024,1269,'dt-img-hide-title','0'),(29025,1275,'dt-img-hide-title','0'),(29026,1279,'dt-img-hide-title','0'),(29027,1312,'dt-img-hide-title','0'),(29028,1316,'dt-img-hide-title','0'),(29029,1320,'dt-img-hide-title','0'),(29030,1326,'dt-img-hide-title','0'),(29031,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(29032,1334,'dt-img-hide-title','0'),(29033,1338,'dt-img-hide-title','0'),(29034,1339,'dt-img-hide-title','0'),(29035,1343,'dt-img-hide-title','0'),(29036,1347,'dt-img-hide-title','0'),(29037,1351,'dt-img-hide-title','0'),(29038,1354,'dt-img-hide-title','0'),(29039,1357,'dt-img-hide-title','0'),(29040,1359,'dt-img-hide-title','0'),(29041,1362,'dt-img-hide-title','0'),(29042,1366,'dt-img-hide-title','0'),(29043,1379,'dt-img-hide-title','0'),(29044,1398,'dt-img-hide-title','0'),(29045,1403,'dt-img-hide-title','0'),(29046,1406,'dt-img-hide-title','0'),(29047,1410,'dt-img-hide-title','0'),(29048,1413,'dt-img-hide-title','0'),(29049,1416,'dt-img-hide-title','0'),(29050,1419,'dt-img-hide-title','0'),(29051,1423,'dt-img-hide-title','0'),(29052,1429,'dt-img-hide-title','0'),(29053,1430,'dt-img-hide-title','0'),(29054,1433,'dt-img-hide-title','0'),(29055,1463,'dt-img-hide-title','0'),(29056,1463,'dt-img-hide-title','0'),(29057,1463,'dt-img-hide-title','0'),(29058,1463,'dt-img-hide-title','0'),(29059,1463,'dt-img-hide-title','0'),(29060,1468,'dt-img-hide-title','0'),(29061,2229,'dt-img-hide-title','0'),(29062,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(29063,2230,'dt-img-hide-title','0'),(29064,2231,'dt-img-hide-title','0'),(29065,2232,'dt-img-hide-title','0'),(29066,2233,'dt-img-hide-title','0'),(29067,2234,'dt-img-hide-title','0'),(29068,2235,'dt-img-hide-title','0'),(29069,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(29070,1474,'dt-img-hide-title','0'),(29071,1475,'dt-img-hide-title','0'),(29072,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(29073,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(29074,1476,'dt-img-hide-title','0'),(29075,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(29076,1478,'dt-img-hide-title','0'),(29077,1479,'dt-img-hide-title','0'),(29078,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(29079,1489,'dt-img-hide-title','0'),(29080,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(29081,1500,'dt-img-hide-title','0'),(29082,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(29083,1501,'dt-img-hide-title','0'),(29084,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(29085,1504,'dt-img-hide-title','0'),(29086,1508,'_wp_attachment_image_alt',''),(29087,1508,'dt-img-hide-title','0'),(29088,1508,'dt-video-url',''),(29089,1508,'dt-img-link',''),(29090,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(29091,1510,'dt-img-hide-title','0'),(29092,1514,'dt-img-hide-title','0'),(29093,2236,'dt-img-hide-title','0'),(29094,2237,'dt-img-hide-title','0'),(29095,2238,'dt-img-hide-title','0'),(29096,2239,'dt-img-hide-title','0'),(29097,2247,'dt-img-hide-title','0'),(29098,2248,'dt-img-hide-title','0'),(29099,2249,'dt-img-hide-title','0'),(29100,1533,'dt-img-hide-title','0'),(29101,1535,'dt-img-hide-title','0'),(29102,1536,'dt-img-hide-title','0'),(29103,1540,'dt-img-hide-title','0'),(29104,1546,'dt-img-hide-title','0'),(29105,1556,'dt-img-hide-title','0'),(29106,1566,'dt-img-hide-title','0'),(29107,1595,'dt-img-hide-title','0'),(29108,1608,'dt-video-url',''),(29109,1608,'dt-img-link',''),(29110,1608,'dt-img-hide-title','0'),(29111,1825,'dt-img-hide-title','0'),(29112,2250,'dt-img-hide-title','0'),(29113,2251,'dt-img-hide-title','0'),(29114,2252,'dt-img-hide-title','0'),(29115,2253,'dt-img-hide-title','0'),(29116,2254,'dt-img-hide-title','0'),(29117,2255,'dt-img-hide-title','0'),(29118,2256,'dt-img-hide-title','0'),(29119,2257,'dt-img-hide-title','0'),(29120,2258,'dt-img-hide-title','0'),(29121,2259,'dt-img-hide-title','0'),(29122,1646,'dt-img-hide-title','0'),(29123,1650,'dt-img-hide-title','0'),(29127,2241,'dt-img-hide-title','0'),(29128,2242,'dt-img-hide-title','0'),(29129,2243,'dt-img-hide-title','0'),(29130,2244,'dt-img-hide-title','0'),(29131,2245,'dt-img-hide-title','0'),(29132,2246,'dt-img-hide-title','0'),(29133,2260,'dt-img-hide-title','0'),(29134,2261,'dt-img-hide-title','0'),(29135,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(29136,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(29137,2262,'dt-img-hide-title','0'),(29138,2263,'dt-img-hide-title','0'),(29139,2264,'dt-img-hide-title','0'),(29140,2265,'dt-img-hide-title','0'),(29141,2266,'dt-img-hide-title','0'),(29142,2267,'dt-img-hide-title','0'),(29143,2268,'dt-img-hide-title','0'),(29144,2269,'dt-img-hide-title','0'),(29145,2270,'dt-img-hide-title','0'),(29146,1658,'dt-img-hide-title','0'),(29147,1660,'dt-img-hide-title','0'),(29148,1667,'dt-img-hide-title','0'),(29149,1668,'dt-img-hide-title','0'),(29150,1669,'dt-img-hide-title','0'),(29151,1674,'dt-img-hide-title','0'),(29152,2102,'dt-img-hide-title','0'),(29153,2103,'dt-img-hide-title','0'),(29154,2104,'dt-img-hide-title','0'),(29155,2105,'dt-img-hide-title','0'),(29156,2106,'dt-img-hide-title','0'),(29157,2107,'dt-img-hide-title','0'),(29158,2108,'dt-img-hide-title','0'),(29159,2109,'dt-img-hide-title','0'),(29160,2110,'dt-img-hide-title','0'),(29161,2111,'dt-img-hide-title','0'),(29162,2112,'dt-img-hide-title','0'),(29163,2113,'dt-img-hide-title','0'),(29164,2114,'dt-img-hide-title','0'),(29165,2115,'dt-img-hide-title','0'),(29166,1675,'dt-img-hide-title','0'),(29167,1699,'dt-img-hide-title','0'),(29168,1700,'dt-img-hide-title','0'),(29169,1701,'dt-img-hide-title','0'),(29170,1702,'dt-img-hide-title','0'),(29171,2217,'dt-img-hide-title','0'),(29172,2222,'dt-img-hide-title','0'),(29173,2271,'dt-img-hide-title','0'),(29174,2289,'dt-img-hide-title','0'),(29175,2291,'dt-img-hide-title','0'),(29176,2293,'dt-img-hide-title','0'),(29177,2295,'dt-img-hide-title','0'),(29178,2297,'dt-img-hide-title','0'),(29179,2299,'dt-img-hide-title','0'),(29180,2301,'dt-img-hide-title','0'),(29181,2303,'dt-img-hide-title','0'),(29182,2305,'dt-img-hide-title','0'),(29183,2307,'dt-img-hide-title','0'),(29184,2405,'dt-img-hide-title','0'),(29185,2405,'_wp_attachment_image_alt','iMoveFreely® Exercises To Try At Home'),(29186,2409,'dt-img-hide-title','0'),(29187,2409,'_wp_attachment_image_alt','Don’t Listen To Us….Listen To Them!'),(29188,2410,'dt-img-hide-title','0'),(29189,2410,'_wp_attachment_image_alt','Presentations at The Movement Convention'),(29190,2411,'dt-img-hide-title','0'),(29191,2411,'_wp_attachment_image_alt','Just For Fun'),(29192,2413,'dt-img-hide-title','0'),(29193,2413,'_wp_attachment_image_alt','We all Squat Differently?'),(29194,2415,'dt-img-hide-title','0'),(29195,2415,'_wp_attachment_image_alt','What Do Our Workshops Look Like?'),(29196,2534,'dt-img-hide-title','0'),(29197,2535,'dt-img-hide-title','0'),(29198,2537,'dt-img-hide-title','0'),(29199,2538,'dt-img-hide-title','0'),(29200,2539,'dt-img-hide-title','0'),(29201,2540,'dt-img-hide-title','0'),(29202,2541,'dt-img-hide-title','0'),(29203,2548,'dt-img-hide-title','0'),(29204,2549,'dt-img-hide-title','0'),(29205,2550,'dt-img-hide-title','0'),(29206,2551,'dt-img-hide-title','0'),(29207,2552,'dt-img-hide-title','0'),(29208,2611,'dt-img-hide-title','0'),(29209,2612,'dt-img-hide-title','0'),(29210,2613,'dt-img-hide-title','0'),(29211,2614,'dt-img-hide-title','0'),(29212,2615,'dt-img-hide-title','0'),(29213,2655,'dt-img-hide-title','0'),(29214,2656,'dt-img-hide-title','0'),(29215,2657,'dt-img-hide-title','0'),(29216,2658,'dt-img-hide-title','0'),(29217,2721,'dt-img-hide-title','0'),(29218,2722,'dt-img-hide-title','0'),(29219,2723,'dt-img-hide-title','0'),(29220,2724,'dt-img-hide-title','0'),(29221,2725,'dt-img-hide-title','0'),(29222,2726,'dt-img-hide-title','0'),(29223,2727,'dt-img-hide-title','0'),(29224,2728,'dt-img-hide-title','0'),(29225,2729,'dt-img-hide-title','0'),(29226,2756,'dt-img-hide-title','0'),(29227,2759,'dt-img-hide-title','0'),(29228,2781,'dt-img-hide-title','0'),(29229,2786,'dt-img-hide-title','0'),(29230,2787,'dt-img-hide-title','0'),(29231,2788,'dt-img-hide-title','0'),(29232,2788,'_wp_attachment_image_alt','the effect of quadratus lumborum muscle'),(29233,2810,'dt-img-hide-title','0'),(29234,2811,'dt-img-hide-title','0'),(29235,2812,'dt-img-hide-title','0'),(29236,2813,'dt-img-hide-title','0'),(29237,2814,'dt-img-hide-title','0'),(29238,2815,'dt-img-hide-title','0'),(29239,2816,'dt-img-hide-title','0'),(29240,2817,'dt-img-hide-title','0'),(29241,2818,'dt-img-hide-title','0'),(29242,2837,'dt-img-hide-title','0'),(29243,2846,'dt-img-hide-title','0'),(29244,2847,'dt-img-hide-title','0'),(29245,2856,'dt-img-hide-title','0'),(29246,2857,'dt-img-hide-title','0'),(29247,2858,'dt-img-hide-title','0'),(29248,2859,'dt-img-hide-title','0'),(29249,2860,'dt-img-hide-title','0'),(29250,2861,'dt-img-hide-title','0'),(29251,2862,'dt-img-hide-title','0'),(29252,2868,'dt-img-hide-title','0'),(29253,2869,'dt-img-hide-title','0'),(29254,2870,'dt-img-hide-title','0'),(29255,2871,'dt-img-hide-title','0'),(29256,2875,'dt-img-hide-title','0'),(29257,2876,'dt-img-hide-title','0'),(29258,2877,'dt-img-hide-title','0'),(29259,2878,'dt-img-hide-title','0'),(29260,2879,'dt-img-hide-title','0'),(29261,2894,'dt-img-hide-title','0'),(29262,2894,'dt-video-url',''),(29263,2894,'dt-img-link',''),(29264,2896,'dt-img-hide-title','0'),(29265,2896,'dt-video-url',''),(29266,2896,'dt-img-link',''),(29267,2960,'dt-img-hide-title','0'),(29268,2961,'dt-img-hide-title','0'),(29269,2962,'dt-img-hide-title','0'),(29270,2963,'dt-img-hide-title','0'),(29271,2964,'dt-img-hide-title','0'),(29272,2965,'dt-img-hide-title','0'),(29273,2966,'dt-img-hide-title','0'),(29274,2967,'dt-img-hide-title','0'),(29275,2968,'dt-img-hide-title','0'),(29276,2969,'dt-img-hide-title','0'),(29277,2976,'dt-img-hide-title','0'),(29278,2986,'dt-img-hide-title','0'),(29279,2999,'dt-img-hide-title','0'),(29280,3002,'dt-img-hide-title','0'),(29281,3003,'dt-img-hide-title','0'),(29282,3004,'dt-img-hide-title','0'),(29283,3005,'dt-img-hide-title','0'),(29284,3006,'dt-img-hide-title','0'),(29285,3014,'dt-img-hide-title','0'),(29286,3015,'dt-img-hide-title','0'),(29287,3016,'dt-img-hide-title','0'),(29288,3034,'dt-img-hide-title','0'),(29289,3173,'dt-img-hide-title','0'),(29290,3174,'dt-img-hide-title','0'),(29291,3179,'dt-img-hide-title','0'),(29292,3180,'dt-img-hide-title','0'),(29293,3183,'dt-img-hide-title','0'),(29294,3188,'dt-img-hide-title','0'),(29295,3191,'dt-img-hide-title','0'),(29296,3200,'dt-img-hide-title','0'),(29297,3201,'dt-img-hide-title','0'),(29298,3202,'dt-img-hide-title','0'),(29299,3203,'dt-img-hide-title','0'),(29300,3205,'dt-img-hide-title','0'),(29301,3206,'dt-img-hide-title','0'),(29302,3207,'dt-img-hide-title','0'),(29303,3208,'dt-img-hide-title','0'),(29304,3213,'dt-img-hide-title','0'),(29305,3214,'dt-img-hide-title','0'),(29306,3228,'dt-img-hide-title','0'),(29307,3229,'dt-img-hide-title','0'),(29308,3230,'dt-img-hide-title','0'),(29309,3234,'dt-img-hide-title','0'),(29310,3242,'dt-img-hide-title','0'),(29311,3243,'dt-img-hide-title','0'),(29312,3325,'dt-img-hide-title','0'),(29313,3479,'dt-img-hide-title','0'),(29314,3496,'dt-img-hide-title','0'),(29315,3496,'_wp_attachment_image_alt','Rachel France - profile image'),(29316,3497,'dt-img-hide-title','0'),(29317,3498,'dt-img-hide-title','0'),(29318,3499,'dt-img-hide-title','0'),(29319,3502,'dt-img-hide-title','0'),(29320,3504,'dt-img-hide-title','0'),(29321,3505,'dt-img-hide-title','0'),(29322,3506,'dt-img-hide-title','0'),(29323,3507,'dt-img-hide-title','0'),(29324,3511,'dt-img-hide-title','0'),(29325,3528,'dt-img-hide-title','0'),(29326,3534,'dt-video-url',''),(29327,3534,'dt-img-link',''),(29328,3534,'dt-img-hide-title','0'),(29329,3535,'dt-video-url',''),(29330,3535,'dt-img-link',''),(29331,3535,'dt-img-hide-title','0'),(29332,3535,'_wp_attachment_image_alt','Tachel France - biomechanics education'),(29333,3536,'dt-video-url',''),(29334,3536,'dt-img-link',''),(29335,3536,'dt-img-hide-title','0'),(29336,3537,'dt-video-url',''),(29337,3537,'dt-img-link',''),(29338,3537,'dt-img-hide-title','0'),(29339,3551,'dt-img-hide-title','0'),(29340,3629,'dt-img-hide-title','0'),(29341,3630,'dt-img-hide-title','0'),(29342,3631,'dt-img-hide-title','0'),(29343,3632,'dt-img-hide-title','0'),(29344,3633,'dt-img-hide-title','0'),(29345,3634,'dt-img-hide-title','0'),(29346,3635,'dt-img-hide-title','0'),(29347,3636,'dt-img-hide-title','0'),(29348,3655,'dt-video-url',''),(29349,3655,'dt-img-link',''),(29350,3655,'dt-img-hide-title','0'),(29351,3690,'dt-img-hide-title','0'),(29352,3692,'dt-img-hide-title','0'),(29353,3693,'dt-img-hide-title','0'),(29354,3694,'dt-img-hide-title','0'),(29355,3695,'dt-img-hide-title','0'),(29356,3699,'dt-img-hide-title','0'),(29357,3784,'dt-img-hide-title','0'),(29358,3789,'dt-img-hide-title','0'),(29359,3801,'dt-img-hide-title','0'),(29360,3803,'dt-img-hide-title','0'),(29361,4107,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics'),(29362,4107,'dt-img-hide-title','0'),(29363,4107,'_wp_old_slug','what-exactly-is-intrinsic-biomechanics'),(29364,4108,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics-2'),(29365,4108,'dt-img-hide-title','0'),(29366,4399,'_wp_attachment_image_alt','special-fast-track-3-day-pelvic-spine-biomechanics-workshop'),(29367,4399,'dt-img-hide-title','0'),(29368,4601,'dt-img-hide-title','0'),(29369,4705,'_wp_attachment_image_alt','imovefreely-instructor - biomechanics education'),(29370,4705,'dt-img-hide-title','0'),(29371,4707,'dt-img-hide-title','0'),(29372,4709,'_wp_attachment_image_alt','intrinsic-biomechanics-taster'),(29373,4709,'dt-img-hide-title','0'),(29374,4715,'_wp_attachment_image_alt','low-back-health-workshop - biomechanics education'),(29375,4715,'dt-img-hide-title','0'),(29376,4717,'_wp_attachment_image_alt','knee-foot-biomechanics-2-day-workshop'),(29377,4717,'dt-img-hide-title','0'),(29378,4733,'_wp_attachment_image_alt','iba-discovery-day-workshop'),(29379,4733,'dt-img-hide-title','0'),(29380,5135,'_wp_attachment_image_alt','Biomechanics Coach & Diploma Workshop Series'),(29381,5135,'dt-img-hide-title','0'),(29382,5139,'_wp_attachment_image_alt','Low Back Health Workshop'),(29383,5139,'dt-img-hide-title','0'),(29384,5143,'_wp_attachment_image_alt','Spine Biomechanics 2 Day Workshop'),(29385,5143,'dt-img-hide-title','0'),(29386,5149,'_wp_attachment_image_alt','Pelvic Biomechanics 2 Day Workshop'),(29387,5149,'dt-img-hide-title','0'),(29388,5151,'_wp_attachment_image_alt','Shoulder Biomechanics 2 Day Workshop'),(29389,5151,'dt-img-hide-title','0'),(29390,5155,'dt-img-hide-title','0'),(29391,5155,'dt-video-url',''),(29392,5155,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split'),(29393,5253,'dt-img-hide-title','0'),(29394,5325,'dt-img-hide-title','0'),(29395,6395,'dt-img-hide-title','0'),(29396,6410,'_wp_attachment_image_alt','Rachel France - Listening to Dan John, Never Let Go'),(29397,6410,'dt-img-hide-title','0'),(29398,6682,'_wp_attachment_image_alt','Rachel France smiling - Group Exercise'),(29399,6682,'dt-img-hide-title','0'),(29400,6683,'_wp_attachment_image_alt','Rachel France - Biomechanics Education - Group Exercise'),(29401,6683,'dt-img-hide-title','0'),(29402,6724,'dt-img-hide-title','0'),(29403,7303,'dt-img-hide-title','0'),(29404,7690,'_wp_page_template','default'),(29405,7690,'dt-video-url',''),(29406,7690,'dt-img-link',''),(29407,7690,'dt-img-hide-title','0'),(29408,7690,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1284;s:6:\"height\";i:1248;s:4:\"file\";s:10:\"Flowin.png\";}}'),(29409,7696,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1128;s:6:\"height\";i:871;s:4:\"file\";s:17:\"TherapyEmpire.png\";}}'),(29410,7696,'_wp_page_template','default'),(29411,7696,'dt-video-url',''),(29412,7696,'dt-img-link',''),(29413,7696,'dt-img-hide-title','0'),(29414,7709,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1085;s:6:\"height\";i:851;s:4:\"file\";s:15:\"PulseRoll-1.png\";}}'),(29415,7709,'_wp_page_template','default'),(29416,7709,'dt-video-url',''),(29417,7709,'dt-img-link',''),(29418,7709,'dt-img-hide-title','0'),(29419,7711,'_wp_page_template','default'),(29420,7711,'dt-video-url',''),(29421,7711,'dt-img-link',''),(29422,7711,'dt-img-hide-title','0'),(29423,8351,'dt-img-hide-title','0'),(29424,9448,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:420;s:6:\"height\";i:315;s:4:\"file\";s:7:\"STA.png\";}}'),(29425,9448,'_wp_page_template','default'),(29426,9448,'dt-video-url',''),(29427,9448,'dt-img-link',''),(29428,9448,'dt-img-hide-title','0'),(29429,10372,'_wp_attachment_image_alt','Level 4 Low Back Pain Qualification for Personal Trainers'),(29430,10372,'dt-img-hide-title','0'),(29431,10836,'_wp_old_slug','always-always-start-with-why'),(29432,10836,'dt-img-hide-title','0'),(29433,12889,'dt-img-hide-title','0'),(29434,13010,'_wp_attachment_image_alt','Are Shoulder Problems Are The New Low Back Pain_'),(29435,13010,'dt-img-hide-title','0'),(29436,13150,'dt-img-hide-title','0'),(29437,13709,'dt-video-url',''),(29438,13709,'dt-img-link','https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description'),(29439,13709,'dt-img-hide-title','0'),(29440,16056,'_wp_attachment_image_alt','Golf Biomechanics Workshop'),(29441,16056,'dt-img-hide-title','0'),(29442,16057,'_wp_attachment_image_alt','Running Biomechanics Workshop'),(29443,16057,'dt-img-hide-title','0'),(29444,17664,'dt-video-url',''),(29445,17664,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549'),(29446,17664,'dt-img-hide-title','0'),(29447,19073,'_wp_attachment_image_alt','Intrinsic Biomechanics For Personal Trainers - 3 Phase System For Health, Function & Performance'),(29448,19073,'dt-img-hide-title','0'),(29449,23078,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1204;s:6:\"height\";i:1072;s:4:\"file\";s:37:\"Screenshot-2020-07-07-at-16.49.55.png\";}}'),(29450,23949,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:1499;s:4:\"file\";s:15:\"IMG_3042-1.jpeg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-768x1151.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(29451,24805,'_wp_attachment_backup_sizes','a:3:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:12:\"IMG_1593.jpg\";}s:18:\"full-1605688593104\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"IMG_1593-e1604933246144.jpg\";}s:18:\"full-1605688603868\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"IMG_1593-e1605688593104.jpg\";}}'),(29452,24806,'_wp_attachment_backup_sizes','a:13:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:49:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-scaled.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:51:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:51:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:52:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"2048x2048-orig\";a:4:{s:4:\"file\";s:52:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(29453,24937,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1080;s:6:\"height\";i:1440;s:4:\"file\";s:12:\"IMG_1450.jpg\";}}'),(29454,25551,'_wp_attachment_image_alt','CIMSPA-Education-Partner-Training-Provider'),(29455,25551,'dt-img-hide-title','0'),(29456,26959,'_wp_attached_file','2021/03/artem-maltsev-0CvHQ62gwY8-unsplash-scaled-1.jpg'),(29457,26959,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:55:\"2021/03/artem-maltsev-0CvHQ62gwY8-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:524661;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29458,26960,'_wp_attached_file','2021/03/adi-goldstein-FLANJGNY2Bk-unsplash-scaled-1.jpg'),(29459,26960,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:55:\"2021/03/adi-goldstein-FLANJGNY2Bk-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:268666;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29460,26961,'_wp_attached_file','2021/03/timothy-dykes-90uVYog2FKE-unsplash-scaled-1.jpg'),(29461,26961,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:55:\"2021/03/timothy-dykes-90uVYog2FKE-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:399324;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29462,26962,'_wp_attached_file','2021/03/benjamin-davies-JrZ1yE1PjQ0-unsplash-scaled-1.jpg'),(29463,26962,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:57:\"2021/03/benjamin-davies-JrZ1yE1PjQ0-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:515801;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29464,26963,'_wp_attached_file','2021/03/bruce-mars-xj8qrWvuOEs-unsplash-scaled-1.jpg'),(29465,26963,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:52:\"2021/03/bruce-mars-xj8qrWvuOEs-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:351428;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29466,26964,'_wp_attached_file','2021/03/windows-v94mlgvsza4-unsplash-scaled-1.jpg'),(29467,26964,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1716;s:4:\"file\";s:49:\"2021/03/windows-v94mlgvsza4-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:621971;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(29468,26965,'_wp_attached_file','2021/03/mathew-schwartz-8rj4sz9YLCI-unsplash-scaled-1.jpg'),(29469,26965,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:57:\"2021/03/mathew-schwartz-8rj4sz9YLCI-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:155835;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29470,26966,'_wp_attached_file','2021/03/tachina-lee-wjk_SSqCE4-unsplash-scaled-1.jpg'),(29471,26966,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:52:\"2021/03/tachina-lee-wjk_SSqCE4-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:230947;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29472,26985,'_wp_attached_file','2016/10/shutterstock_1054776068-scaled-1.jpg'),(29473,26985,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1004;s:4:\"file\";s:44:\"2016/10/shutterstock_1054776068-scaled-1.jpg\";s:8:\"filesize\";i:217684;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2018 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:61:\"Human,Anatomy,Muscular,System,3d,Rendering,With,Clipping,Path\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,medical,education,strength,body,leg,red,3d,white,fitnes\";}}}'),(29474,26986,'_wp_attached_file','2016/10/shutterstock_156616898-scaled-1.jpg'),(29475,26986,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1748;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2016/10/shutterstock_156616898-scaled-1.jpg\";s:8:\"filesize\";i:714279;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2013 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:63:\"Anatomy,Of,Male,And,Female,Muscular,System,-,Anterior,Posterior\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,vastus medialis,didactic,anatomy,isolated,plate,thoraco\";}}}'),(29476,27072,'_wp_attached_file','2021/04/Screenshot-2021-02-01-at-08.24.44-1.png'),(29477,27072,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1716;s:6:\"height\";i:2478;s:4:\"file\";s:47:\"2021/04/Screenshot-2021-02-01-at-08.24.44-1.png\";s:8:\"filesize\";i:7691877;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29478,27206,'_wp_attached_file','2021/04/Screenshot-2021-04-11-at-07.42.06-1.png'),(29479,27206,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1786;s:6:\"height\";i:2436;s:4:\"file\";s:47:\"2021/04/Screenshot-2021-04-11-at-07.42.06-1.png\";s:8:\"filesize\";i:1383257;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29480,27207,'_wp_attached_file','2021/04/shutterstock_199824647-scaled-1.jpg'),(29481,27207,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2021/04/shutterstock_199824647-scaled-1.jpg\";s:8:\"filesize\";i:247383;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29482,27301,'_wp_attached_file','2018/02/iMoveFreely-Transparent-300dpi-1.png'),(29483,27301,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:44:\"2018/02/iMoveFreely-Transparent-300dpi-1.png\";s:8:\"filesize\";i:82954;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29484,27302,'_wp_attached_file','2018/02/DSC01963-scaled-1.jpg'),(29485,27302,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:29:\"2018/02/DSC01963-scaled-1.jpg\";s:8:\"filesize\";i:920737;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583593239\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29486,27303,'_wp_attached_file','2018/02/IMG_0096-scaled-1.jpg'),(29487,27303,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2018/02/IMG_0096-scaled-1.jpg\";s:8:\"filesize\";i:893605;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:14:\"iPhone 6s Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1497777543\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"25\";s:13:\"shutter_speed\";s:19:\"0.00061087354917532\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29488,27304,'_wp_attached_file','2018/02/IMG_1199-scaled-1.jpeg'),(29489,27304,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:30:\"2018/02/IMG_1199-scaled-1.jpeg\";s:8:\"filesize\";i:738060;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 11 Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1575736718\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:17:\"0.019607843137255\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(29490,27322,'_wp_attached_file','2021/04/Gastroc-scaled-1.jpg'),(29491,27322,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:28:\"2021/04/Gastroc-scaled-1.jpg\";s:8:\"filesize\";i:194595;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(29492,27322,'dt-img-hide-title','0'),(29493,27323,'_wp_attached_file','2021/04/soleus-scaled-1.jpg'),(29494,27323,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2021/04/soleus-scaled-1.jpg\";s:8:\"filesize\";i:208796;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2015 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:52:\"Medically,Accurate,Muscle,Illustration,Of,The,Soleus\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,medical,anatomy,isolated,skin,back,body,transparent,leg\";}}}'),(29495,27324,'_wp_attached_file','2021/04/plantaris-1-1.png'),(29496,27324,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:528;s:6:\"height\";i:742;s:4:\"file\";s:25:\"2021/04/plantaris-1-1.png\";s:8:\"filesize\";i:267357;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29497,27325,'_wp_attached_file','2021/04/Fibularis-longus-scaled-1.jpg'),(29498,27325,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:37:\"2021/04/Fibularis-longus-scaled-1.jpg\";s:8:\"filesize\";i:286166;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2015 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:54:\"Medically,Accurate,Illustration,Of,The,Peroneus,Longus\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,longus,medical,anatomy,isolated,body,lateral,leg,3d,whi\";}}}'),(29499,27326,'_wp_attached_file','2021/04/fibularis-brevis-scaled-1.jpg'),(29500,27326,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:37:\"2021/04/fibularis-brevis-scaled-1.jpg\";s:8:\"filesize\";i:265942;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2015 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:54:\"Medically,Accurate,Illustration,Of,The,Peroneus,Brevis\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,medical,anatomy,isolated,body,lateral,leg,3d,white,fitn\";}}}'),(29501,27327,'_wp_attached_file','2021/04/tib-ant-scaled-1.jpg'),(29502,27327,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2021/04/tib-ant-scaled-1.jpg\";s:8:\"filesize\";i:396484;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29503,27328,'_wp_attached_file','2021/04/extensor-digitorum-longus-scaled-1.jpg'),(29504,27328,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:46:\"2021/04/extensor-digitorum-longus-scaled-1.jpg\";s:8:\"filesize\";i:321654;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:69:\"Copyright (c) 2015 design36/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:73:\"Concept,Or,Conceptual,3d,Extensor,Digitorum,Longus,,Anatomical,And,Muscle\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,longus,medical,vastus,didactic,body,leg,3d,femoris,digi\";}}}'),(29505,27329,'_wp_attached_file','2021/04/extensor-hallucis-longus-scaled-1.jpg'),(29506,27329,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1536;s:6:\"height\";i:2560;s:4:\"file\";s:45:\"2021/04/extensor-hallucis-longus-scaled-1.jpg\";s:8:\"filesize\";i:150014;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:68:\"Copyright (c) 2015 SciePro/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:61:\"Medical,Accurate,Illustration,Of,The,Extensor,Hallucis,Longus\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"longus,medical,accurate,anatomy,anterior,leg,3d,skeleton,white,p\";}}}'),(29507,27330,'_wp_attached_file','2021/04/tib-post-scaled-1.jpg'),(29508,27330,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/04/tib-post-scaled-1.jpg\";s:8:\"filesize\";i:349969;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2016 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:51:\"Human,Body,Muscles,Anatomy,(tibialis,Posterior).,3d\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,triceps,infographic,medical,education,strength,anatomy,\";}}}'),(29509,27331,'_wp_attached_file','2021/04/flexor-digitorum-longus-scaled-1.jpg'),(29510,27331,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:44:\"2021/04/flexor-digitorum-longus-scaled-1.jpg\";s:8:\"filesize\";i:167620;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2015 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:69:\"Medically,Accurate,Muscle,Illustration,Of,The,Flexor,Digitorum,Longus\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,longus,medical,anatomy,isolated,skin,back,body,transpar\";}}}'),(29511,27332,'_wp_attached_file','2021/04/flexor-hallucis-longus-scaled-1.jpg'),(29512,27332,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2021/04/flexor-hallucis-longus-scaled-1.jpg\";s:8:\"filesize\";i:290088;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2016 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:55:\"Human,Body,Muscles,Anatomy,(flexor,Hallucis,Longus).,3d\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,longus,triceps,infographic,medical,education,strength,a\";}}}'),(29513,27333,'_wp_attached_file','2021/04/extensor-hallucis-brevis-scaled-1.jpg'),(29514,27333,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:45:\"2021/04/extensor-hallucis-brevis-scaled-1.jpg\";s:8:\"filesize\";i:218137;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:68:\"Copyright (c) 2015 SciePro/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:61:\"Medical,Accurate,Illustration,Of,The,Extensor,Hallucis,Brevis\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"medical,accurate,anatomy,anterior,3d,skeleton,white,plain,muscle\";}}}'),(29515,27334,'_wp_attached_file','2021/04/extensor-digitorum-brevis-scaled-1.jpg'),(29516,27334,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:46:\"2021/04/extensor-digitorum-brevis-scaled-1.jpg\";s:8:\"filesize\";i:137476;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:68:\"Copyright (c) 2019 SciePro/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:76:\"3d,Rendered,Medically,Accurate,Illustration,Of,The,Extensor,Digitorum,Brevis\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,on white,medical,extensor digitorum brevis,strength,ten\";}}}'),(29517,27335,'_wp_attached_file','2021/04/flexor-digitorum-brevis-scaled-1.jpg'),(29518,27335,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:44:\"2021/04/flexor-digitorum-brevis-scaled-1.jpg\";s:8:\"filesize\";i:302455;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:68:\"Copyright (c) 2015 SciePro/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:62:\"Medically,Accurate,Illustration,Of,The,Flexor,Digitorum,Brevis\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,medical,anatomy,isolated,body,3d,digitorum,white,fitnes\";}}}'),(29519,27336,'_wp_attached_file','2021/04/flexor-hallucis-brevis-scaled-1.jpg'),(29520,27336,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:43:\"2021/04/flexor-hallucis-brevis-scaled-1.jpg\";s:8:\"filesize\";i:287124;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:60:\"Copyright (c) 2015 Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:61:\"Medically,Accurate,Illustration,Of,The,Flexor,Hallucis,Brevis\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,medical,anatomy,isolated,body,3d,white,fitness,muscle,b\";}}}'),(29521,27351,'_wp_attached_file','2021/04/BC-workout-card-blank-2015-1.pdf'),(29522,27351,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:36:\"BC-workout-card-blank-2015-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:266357;}s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"BC-workout-card-blank-2015-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196593;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"BC-workout-card-blank-2015-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55943;}}s:8:\"filesize\";i:415442;}'),(29523,27619,'_wp_attached_file','2021/05/3AD2C09C-8D54-48D6-BDE0-BA75A551AFDF-1.png'),(29524,27619,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:501;s:6:\"height\";i:501;s:4:\"file\";s:50:\"2021/05/3AD2C09C-8D54-48D6-BDE0-BA75A551AFDF-1.png\";s:8:\"filesize\";i:662470;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29525,27620,'_wp_attached_file','2021/05/IMG_4580-scaled-1.jpg'),(29526,27620,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2021/05/IMG_4580-scaled-1.jpg\";s:8:\"filesize\";i:691620;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29527,27622,'_wp_attached_file','2018/01/Add-a-heading-6-copy-1.png'),(29528,27622,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:34:\"2018/01/Add-a-heading-6-copy-1.png\";s:8:\"filesize\";i:860816;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29529,27628,'_wp_attached_file','2018/01/Screenshot-2021-05-10-at-11.22.06-1.png'),(29530,27628,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1494;s:6:\"height\";i:516;s:4:\"file\";s:47:\"2018/01/Screenshot-2021-05-10-at-11.22.06-1.png\";s:8:\"filesize\";i:857262;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29531,27663,'_wp_attached_file','2021/05/Canva-Man-Wearing-White-Long-sleeved-Shirt-Pushing-Two-Black-Barbells-scaled-1.jpg'),(29532,27663,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1704;s:4:\"file\";s:90:\"2021/05/Canva-Man-Wearing-White-Long-sleeved-Shirt-Pushing-Two-Black-Barbells-scaled-1.jpg\";s:8:\"filesize\";i:470068;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(29533,27664,'_wp_attached_file','2021/05/Canva-Photo-of-Man-Holding-Black-Rope-scaled-1.jpg'),(29534,27664,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1443;s:4:\"file\";s:58:\"2021/05/Canva-Photo-of-Man-Holding-Black-Rope-scaled-1.jpg\";s:8:\"filesize\";i:259881;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:4:\"X-A2\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1455736142\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:18:\"0.0022222222222222\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(29535,27665,'_wp_attached_file','2021/05/Canva-Woman-Wearing-White-and-Black-Sweat-Suit-Doing-Curl-Ups-scaled-1.jpg');
INSERT INTO `6m7_postmeta` VALUES (29536,27665,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:82:\"2021/05/Canva-Woman-Wearing-White-and-Black-Sweat-Suit-Doing-Curl-Ups-scaled-1.jpg\";s:8:\"filesize\";i:429009;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:28:{i:0;s:5:\"black\";i:1;s:4:\"body\";i:2;s:5:\"sport\";i:3;s:5:\"group\";i:4;s:6:\"female\";i:5;s:5:\"young\";i:6;s:11:\"beautyrobic\";i:7;s:6:\"beauty\";i:8;s:5:\"woman\";i:9;s:9:\"abdominal\";i:10;s:3:\"gym\";i:11;s:3:\"fit\";i:12;s:7:\"fitness\";i:13;s:4:\"work\";i:14;s:6:\"person\";i:15;s:6:\"people\";i:16;s:5:\"blond\";i:17;s:9:\"caucasian\";i:18;s:6:\"carpet\";i:19;s:5:\"floor\";i:20;s:5:\"lying\";i:21;s:7:\"flexion\";i:22;s:4:\"girl\";i:23;s:5:\"smile\";i:24;s:5:\"young\";i:25;s:4:\"back\";i:26;s:4:\"help\";i:27;s:8:\"training\";}}}'),(29537,27747,'_wp_attached_file','2021/05/shutterstock_312582254-scaled-1.jpg'),(29538,27747,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:43:\"2021/05/shutterstock_312582254-scaled-1.jpg\";s:8:\"filesize\";i:529847;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:68:\"Copyright (c) 2015 SciePro/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:47:\"Medically,Accurate,Illustration,-,Sciatic,Nerve\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"iliosacral,medical,ilium,anatomy,back,pelvis,body,plexus,hip,ner\";}}}'),(29539,27748,'_wp_attached_file','2021/05/shutterstock_1311339359-scaled-1.jpg'),(29540,27748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1896;s:4:\"file\";s:44:\"2021/05/shutterstock_1311339359-scaled-1.jpg\";s:8:\"filesize\";i:341869;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:72:\"Copyright (c) 2019 Lightspring/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:65:\"Sciatica,Pain,Symptoms,And,Diagnosis,Medical,Concept,As,A,Disease\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"lumbar,pain,disease,anatomy,3d illustration elements,concept,pin\";}}}'),(29541,27749,'_wp_attached_file','2021/05/shutterstock_1648667119-scaled-1.jpg'),(29542,27749,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:44:\"2021/05/shutterstock_1648667119-scaled-1.jpg\";s:8:\"filesize\";i:469039;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:70:\"Copyright (c) 2020 vitstudio/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:64:\"Pinched,Human,Sciatic,Nerve,,Anatomical,Vision.,3d,Illustration.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"inflamed,medical,joint,anatomy,pinched nerve,xray,body,hip,leg,n\";}}}'),(29543,27750,'_wp_attached_file','2021/05/shutterstock_312582254-1-scaled-1.jpg'),(29544,27750,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:45:\"2021/05/shutterstock_312582254-1-scaled-1.jpg\";s:8:\"filesize\";i:529847;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:68:\"Copyright (c) 2015 SciePro/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:47:\"Medically,Accurate,Illustration,-,Sciatic,Nerve\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"iliosacral,medical,ilium,anatomy,back,pelvis,body,plexus,hip,ner\";}}}'),(29545,27751,'_wp_attached_file','2021/05/shutterstock_1311339359-1-scaled-1.jpg'),(29546,27751,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1896;s:4:\"file\";s:46:\"2021/05/shutterstock_1311339359-1-scaled-1.jpg\";s:8:\"filesize\";i:341869;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:72:\"Copyright (c) 2019 Lightspring/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:65:\"Sciatica,Pain,Symptoms,And,Diagnosis,Medical,Concept,As,A,Disease\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"lumbar,pain,disease,anatomy,3d illustration elements,concept,pin\";}}}'),(29547,27752,'_wp_attached_file','2021/05/shutterstock_1648667119-1-scaled-1.jpg'),(29548,27752,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:46:\"2021/05/shutterstock_1648667119-1-scaled-1.jpg\";s:8:\"filesize\";i:469039;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:70:\"Copyright (c) 2020 vitstudio/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:64:\"Pinched,Human,Sciatic,Nerve,,Anatomical,Vision.,3d,Illustration.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"inflamed,medical,joint,anatomy,pinched nerve,xray,body,hip,leg,n\";}}}'),(29549,27753,'_wp_attached_file','2021/05/Screenshot-2021-05-18-at-10.58.01-1.png'),(29550,27753,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1844;s:6:\"height\";i:1148;s:4:\"file\";s:47:\"2021/05/Screenshot-2021-05-18-at-10.58.01-1.png\";s:8:\"filesize\";i:470256;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29551,27787,'_wp_attached_file','2021/05/Pelvis-Spine-Biomechanics-2-day-Workshop-Manual-AUG-2020-pdf-1.pdf'),(29552,27787,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:70:\"Pelvis-Spine-Biomechanics-2-day-Workshop-Manual-AUG-2020-pdf-1-pdf.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:1387;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149730;}s:6:\"medium\";a:5:{s:4:\"file\";s:79:\"Pelvis-Spine-Biomechanics-2-day-Workshop-Manual-AUG-2020-pdf-1-pdf-900x1300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126369;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:78:\"Pelvis-Spine-Biomechanics-2-day-Workshop-Manual-AUG-2020-pdf-1-pdf-400x578.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37558;}}s:8:\"filesize\";i:73199878;}'),(29553,27788,'_wp_attached_file','2021/05/Shoulder-Knee-Foot-Biomechanics-Workshop-Manual-JAN-2021-version-1-1.pdf'),(29554,27788,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:76:\"Shoulder-Knee-Foot-Biomechanics-Workshop-Manual-JAN-2021-version-1-1-pdf.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:1387;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140332;}s:6:\"medium\";a:5:{s:4:\"file\";s:85:\"Shoulder-Knee-Foot-Biomechanics-Workshop-Manual-JAN-2021-version-1-1-pdf-900x1300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121250;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:84:\"Shoulder-Knee-Foot-Biomechanics-Workshop-Manual-JAN-2021-version-1-1-pdf-400x578.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36004;}}s:8:\"filesize\";i:53073388;}'),(29555,27789,'_wp_attached_file','2021/05/PROGRAMMING-WORK-SHEETS-1-1.pdf'),(29556,27789,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:35:\"PROGRAMMING-WORK-SHEETS-1-1-pdf.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:1387;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69167;}s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"PROGRAMMING-WORK-SHEETS-1-1-pdf-900x1300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60378;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"PROGRAMMING-WORK-SHEETS-1-1-pdf-400x578.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20389;}}s:8:\"filesize\";i:229476;}'),(29557,27790,'_wp_attached_file','2021/05/SCREENING-FORMS-TEMPLATES-EXERCISE-SHEETS-2021-1.pdf'),(29558,27790,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:56:\"SCREENING-FORMS-TEMPLATES-EXERCISE-SHEETS-2021-1-pdf.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:1387;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235627;}s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"SCREENING-FORMS-TEMPLATES-EXERCISE-SHEETS-2021-1-pdf-900x1300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196587;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"SCREENING-FORMS-TEMPLATES-EXERCISE-SHEETS-2021-1-pdf-400x578.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59598;}}s:8:\"filesize\";i:5872566;}'),(29559,27791,'_wp_attached_file','2021/05/NEWEST-Screening-Form-Latest-2021-1-1.pdf'),(29560,27791,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:45:\"NEWEST-Screening-Form-Latest-2021-1-1-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196121;}s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"NEWEST-Screening-Form-Latest-2021-1-1-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90615;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"NEWEST-Screening-Form-Latest-2021-1-1-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134888;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"NEWEST-Screening-Form-Latest-2021-1-1-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27313;}}s:8:\"filesize\";i:188713;}'),(29561,27792,'_wp_attached_file','2021/05/CAR-202122-1.pdf'),(29562,27792,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:20:\"CAR-202122-1-pdf.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:1387;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125992;}s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"CAR-202122-1-pdf-900x1300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101362;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"CAR-202122-1-pdf-400x578.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32403;}}s:8:\"filesize\";i:2031138;}'),(29563,27793,'_wp_attached_file','2021/05/Written-Report-Guidance-202122-1.pdf'),(29564,27793,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:40:\"Written-Report-Guidance-202122-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218952;}s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Written-Report-Guidance-202122-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158236;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Written-Report-Guidance-202122-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43343;}}s:8:\"filesize\";i:657869;}'),(29565,27797,'_wp_attached_file','2021/05/NEW-LBP-workshop-manual-DAY-1-2019-1-1.pdf'),(29566,27797,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:46:\"NEW-LBP-workshop-manual-DAY-1-2019-1-1-pdf.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:1387;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209362;}s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"NEW-LBP-workshop-manual-DAY-1-2019-1-1-pdf-900x1300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169431;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"NEW-LBP-workshop-manual-DAY-1-2019-1-1-pdf-400x578.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46177;}}s:8:\"filesize\";i:31478681;}'),(29567,27798,'_wp_attached_file','2021/05/L4-LBP-MANUAL-day-2-2019-1-1.pdf'),(29568,27798,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:36:\"L4-LBP-MANUAL-day-2-2019-1-1-pdf.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:1387;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219366;}s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"L4-LBP-MANUAL-day-2-2019-1-1-pdf-900x1300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177356;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"L4-LBP-MANUAL-day-2-2019-1-1-pdf-400x578.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48988;}}s:8:\"filesize\";i:9882029;}'),(29569,27802,'_wp_attached_file','2021/05/iMoveFreely®-Instructor-Reconditioning-Programme-Workshop-Mar-2020-1.pdf'),(29570,27802,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:77:\"iMoveFreely®-Instructor-Reconditioning-Programme-Workshop-Mar-2020-1-pdf.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:1387;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153893;}s:6:\"medium\";a:5:{s:4:\"file\";s:86:\"iMoveFreely®-Instructor-Reconditioning-Programme-Workshop-Mar-2020-1-pdf-900x1300.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129005;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:85:\"iMoveFreely®-Instructor-Reconditioning-Programme-Workshop-Mar-2020-1-pdf-400x578.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37519;}}s:8:\"filesize\";i:184659895;}'),(29571,27903,'_wp_attached_file','2018/01/2O8A3005-scaled-1.jpg'),(29572,27903,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2018/01/2O8A3005-scaled-1.jpg\";s:8:\"filesize\";i:785552;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"7.1\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1475852767\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29573,27906,'_wp_attached_file','2021/05/DSC03820-scaled-1.jpg'),(29574,27906,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:29:\"2021/05/DSC03820-scaled-1.jpg\";s:8:\"filesize\";i:622328;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"4.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1550944791\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:4:\"4000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(29575,27907,'_wp_attached_file','2021/05/1c9de0f0-a49f-43ce-86e9-db6a0425f88d-1.jpg'),(29576,27907,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:50:\"2021/05/1c9de0f0-a49f-43ce-86e9-db6a0425f88d-1.jpg\";s:8:\"filesize\";i:232674;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(29577,30605,'dt-img-hide-title','0'),(29578,30606,'dt-img-hide-title','0'),(29579,30610,'dt-img-hide-title','0'),(29580,30612,'dt-img-hide-title','0'),(29581,31065,'_wp_attachment_image_alt','Online vs Face to Face workshop - biomechanics education'),(29582,31065,'dt-img-hide-title','0'),(29583,31068,'_wp_attachment_image_alt','gabin-vallet - Online vs Face to Face- biomechanics education'),(29584,31068,'dt-img-hide-title','0'),(29585,31069,'_wp_attachment_image_alt','jonathan-borba - online vs face to face workshop - biomechanics education'),(29586,31069,'dt-img-hide-title','0'),(29587,31185,'_wp_attachment_image_alt','[Case Study] Elite Lifter Laura Hewitt - biomechanics education'),(29588,31185,'dt-img-hide-title','0'),(29589,31260,'_wp_attachment_image_alt','Understanding Nerves - young man relaxing on the sofa'),(29590,31260,'dt-img-hide-title','0'),(29591,31261,'_wp_attachment_image_alt','Understanding Nerves - young woman exercising'),(29592,31261,'dt-img-hide-title','0'),(29593,31262,'_wp_attachment_image_alt','Understanding Nerves - Rachel Frances Thomson'),(29594,31262,'dt-img-hide-title','0'),(29595,31422,'_wp_attachment_image_alt','Neuromuscular Exercise - biomechanics education'),(29596,31422,'dt-img-hide-title','0'),(29597,31424,'_wp_attachment_image_alt','Neuromuscular Exercise - one leg'),(29598,31424,'dt-img-hide-title','0'),(29599,31431,'_wp_attachment_image_alt','rachel thomson - exercise biomechanics education'),(29600,31431,'dt-img-hide-title','0'),(29601,31432,'_wp_attachment_image_alt','Neuromuscular Exercise with dog - rachel thomson'),(29602,31432,'dt-img-hide-title','0'),(29603,31433,'_wp_attachment_image_alt','neuromuscular exercise - rachel thomson'),(29604,31433,'dt-img-hide-title','0'),(29605,31612,'_wp_attachment_image_alt','Mark Laws - IBA discovery day'),(29606,31612,'dt-img-hide-title','0'),(29607,31613,'_wp_attachment_image_alt','Mark Laws - biomechanics education'),(29608,31613,'dt-img-hide-title','0'),(29609,31614,'_wp_attachment_image_alt','IBA Discovery Day Workshops - biomechanics education'),(29610,31614,'dt-img-hide-title','0'),(29611,31747,'_wp_attachment_image_alt','The Power of Words - biomechanics education'),(29612,31747,'dt-img-hide-title','0'),(29613,31749,'_wp_attachment_image_alt','brett-jordan - practice makes perfect'),(29614,31749,'dt-img-hide-title','0'),(29615,31877,'_wp_attachment_image_alt','Portrait_Mike Stewart - biomechanics education'),(29616,31877,'dt-img-hide-title','0'),(29617,31879,'_wp_attachment_image_alt','JBE Rio 3 - the kaizen project'),(29618,31879,'dt-img-hide-title','0'),(29619,32012,'_wp_attachment_image_alt','Rachel France - the kaizen project'),(29620,32012,'dt-img-hide-title','0'),(29621,32179,'_wp_attachment_image_alt','Rachel France - exercising'),(29622,32179,'dt-img-hide-title','0'),(29623,32182,'_wp_attachment_image_alt','Rachel France - cimspa member profile'),(29624,32182,'dt-img-hide-title','0'),(29625,32556,'_wp_attachment_image_alt','A man lies on an exercise mat, he is wearing a blue top and black shorts, white socks, and white trainers. He has his left knee bent and right leg straight on the floor. Rachel is knelt beside him wearing an orange top and black tracksuit bottoms, and socks. She is gesturing something with her hands and talking to the class.'),(29626,32556,'dt-img-hide-title','0'),(29627,38017,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_Black_RGB-01.png\";}s:18:\"full-1710432922797\";a:3:{s:5:\"width\";i:500;s:6:\"height\";i:117;s:4:\"file\";s:44:\"FFG_Wordmark_Black_RGB-01-e1710432746919.png\";}}'),(29628,38017,'_wp_page_template','default'),(29629,38017,'dt-video-url',''),(29630,38017,'dt-img-link',''),(29631,38017,'dt-img-hide-title','0'),(29632,38023,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_White_RGB-01.png\";}}'),(29633,38023,'dt-img-hide-title','0'),(29666,38950,'_wp_attached_file','2024/07/DSC01585-scaled.jpg'),(29667,38950,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:27:\"2024/07/DSC01585-scaled.jpg\";s:8:\"filesize\";i:703943;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC01585-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152933;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC01585-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225690;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC01585-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65002;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC01585-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125489;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC01585-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:321131;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC01585-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:496725;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC01585-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73990;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC01585-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194310;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC01585-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:293703;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC01585-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64841;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC01585-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152933;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC01585-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225690;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC01585-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63617;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC01585-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155759;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"DSC01585-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:233164;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"DSC01585-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66881;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"DSC01585-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162426;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"DSC01585-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:241005;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"DSC01585-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59610;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"DSC01585-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130523;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"DSC01585-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188010;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583578395\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"36\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC01585.jpg\";}'),(29668,38588,'_wp_attachment_context','custom-header'),(29669,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(29670,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(29671,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(29672,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(29673,192,'dt-img-hide-title','0'),(29674,194,'dt-img-hide-title','0'),(29675,205,'dt-img-hide-title','0'),(29676,206,'dt-img-hide-title','0'),(29677,208,'dt-img-hide-title','0'),(29678,247,'dt-img-hide-title','0'),(29679,248,'_wp_attachment_context','site-icon'),(29680,248,'dt-img-hide-title','0'),(29681,265,'dt-img-hide-title','0'),(29682,283,'dt-img-hide-title','0'),(29683,284,'dt-img-hide-title','0'),(29684,285,'dt-img-hide-title','0'),(29685,287,'dt-img-hide-title','0'),(29686,290,'dt-img-hide-title','0'),(29687,291,'dt-img-hide-title','0'),(29688,294,'dt-img-hide-title','0'),(29689,297,'dt-img-hide-title','0'),(29690,333,'dt-img-hide-title','0'),(29691,341,'dt-img-hide-title','0'),(29692,407,'dt-img-hide-title','0'),(29693,458,'dt-img-hide-title','0'),(29694,495,'dt-img-hide-title','0'),(29695,497,'dt-img-hide-title','0'),(29696,505,'dt-img-hide-title','0'),(29697,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(29698,210,'dt-img-link',''),(29699,210,'dt-img-hide-title','0'),(29700,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(29701,221,'dt-img-link',''),(29702,221,'dt-img-hide-title','0'),(29703,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(29704,224,'dt-img-link',''),(29705,224,'dt-img-hide-title','0'),(29706,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(29707,228,'dt-img-link',''),(29708,228,'dt-img-hide-title','0'),(29709,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(29710,230,'dt-img-link',''),(29711,230,'dt-img-hide-title','0'),(29712,237,'dt-img-hide-title','0'),(29713,237,'dt-img-link',''),(29714,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(29715,557,'dt-img-hide-title','0'),(29716,559,'dt-img-hide-title','0'),(29717,562,'dt-img-hide-title','0'),(29718,569,'dt-img-hide-title','0'),(29719,592,'dt-img-hide-title','0'),(29720,596,'dt-img-hide-title','0'),(29721,617,'dt-img-hide-title','0'),(29722,620,'dt-img-hide-title','0'),(29723,621,'dt-img-hide-title','0'),(29724,623,'dt-img-hide-title','0'),(29725,624,'dt-img-hide-title','0'),(29726,644,'dt-img-hide-title','0'),(29727,648,'dt-img-hide-title','0'),(29728,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(29729,824,'dt-img-link',''),(29730,824,'dt-img-hide-title','0'),(29731,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(29732,825,'dt-img-link',''),(29733,825,'dt-img-hide-title','0'),(29734,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(29735,828,'dt-img-link',''),(29736,828,'dt-img-hide-title','0'),(29737,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(29738,1450,'dt-img-link',''),(29739,1450,'dt-img-hide-title','0'),(29740,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(29741,1451,'dt-img-link',''),(29742,1451,'dt-img-hide-title','0'),(29743,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(29744,1452,'dt-img-link',''),(29745,1452,'dt-img-hide-title','0'),(29746,652,'dt-img-hide-title','0'),(29747,655,'dt-img-hide-title','0'),(29748,675,'dt-img-hide-title','0'),(29749,678,'dt-img-hide-title','0'),(29750,683,'dt-img-hide-title','0'),(29751,703,'dt-img-hide-title','0'),(29752,706,'dt-img-hide-title','0'),(29753,709,'dt-img-hide-title','0'),(29754,712,'dt-img-hide-title','0'),(29755,713,'dt-img-hide-title','0'),(29756,714,'dt-img-hide-title','0'),(29757,715,'dt-img-hide-title','0'),(29758,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(29759,722,'dt-img-hide-title','0'),(29760,735,'dt-img-hide-title','0'),(29761,759,'dt-img-hide-title','0'),(29762,762,'dt-img-hide-title','0'),(29763,766,'dt-img-hide-title','0'),(29764,770,'dt-img-hide-title','0'),(29765,804,'dt-img-hide-title','0'),(29766,814,'dt-img-hide-title','0'),(29767,827,'dt-img-hide-title','0'),(29768,830,'dt-img-hide-title','0'),(29769,854,'dt-img-hide-title','0'),(29770,857,'dt-img-hide-title','0'),(29771,874,'dt-img-hide-title','0'),(29772,937,'dt-img-hide-title','0'),(29773,941,'dt-img-hide-title','0'),(29774,955,'dt-img-hide-title','0'),(29775,969,'_wp_attachment_image_alt','imove Freely'),(29776,969,'dt-img-hide-title','0'),(29777,1001,'dt-img-hide-title','0'),(29778,1015,'dt-img-hide-title','0'),(29779,1018,'dt-img-hide-title','0'),(29780,1020,'dt-img-hide-title','0'),(29781,1021,'dt-img-hide-title','0'),(29782,1024,'dt-img-hide-title','0'),(29783,1027,'dt-img-hide-title','0'),(29784,1030,'dt-img-hide-title','0'),(29785,1035,'dt-img-hide-title','0'),(29786,1039,'dt-img-hide-title','0'),(29787,1045,'dt-img-hide-title','0'),(29788,1051,'dt-img-hide-title','0'),(29789,1052,'dt-img-hide-title','0'),(29790,1055,'dt-img-hide-title','0'),(29791,1057,'dt-img-hide-title','0'),(29792,1061,'dt-img-hide-title','0'),(29793,1065,'dt-img-hide-title','0'),(29794,1068,'dt-img-hide-title','0'),(29795,1073,'dt-img-hide-title','0'),(29796,1078,'dt-img-hide-title','0'),(29797,1084,'dt-img-hide-title','0'),(29798,1088,'dt-img-hide-title','0'),(29799,1094,'dt-img-hide-title','0'),(29800,1096,'dt-img-hide-title','0'),(29801,1097,'dt-img-hide-title','0'),(29802,1099,'dt-img-hide-title','0'),(29803,1106,'dt-img-hide-title','0'),(29804,1110,'dt-img-hide-title','0'),(29805,1112,'dt-img-hide-title','0'),(29806,1116,'dt-img-hide-title','0'),(29807,1125,'dt-img-hide-title','0'),(29808,1129,'dt-img-hide-title','0'),(29809,1145,'dt-img-hide-title','0'),(29810,1167,'dt-img-hide-title','0'),(29811,1184,'dt-img-hide-title','0'),(29812,1186,'dt-img-hide-title','0'),(29813,1187,'dt-img-hide-title','0'),(29814,1189,'dt-img-hide-title','0'),(29815,1194,'dt-img-hide-title','0'),(29816,1197,'dt-img-hide-title','0'),(29817,1201,'dt-img-hide-title','0'),(29818,1202,'dt-img-hide-title','0'),(29819,1203,'dt-img-hide-title','0'),(29820,1204,'dt-img-hide-title','0'),(29821,1205,'dt-img-hide-title','0'),(29822,1206,'dt-img-hide-title','0'),(29823,1207,'dt-img-hide-title','0'),(29824,1209,'dt-img-hide-title','0'),(29825,1210,'dt-img-hide-title','0'),(29826,1211,'dt-img-hide-title','0'),(29827,1212,'dt-img-hide-title','0'),(29828,1213,'dt-img-hide-title','0'),(29829,1214,'dt-img-hide-title','0'),(29830,1220,'dt-img-hide-title','0'),(29831,1223,'dt-img-hide-title','0'),(29832,1226,'dt-img-hide-title','0'),(29833,1228,'dt-img-hide-title','0'),(29834,1232,'dt-img-hide-title','0'),(29835,1235,'dt-img-hide-title','0'),(29836,1239,'dt-img-hide-title','0'),(29837,1242,'dt-img-hide-title','0'),(29838,1246,'dt-img-hide-title','0'),(29839,1256,'dt-img-hide-title','0'),(29840,1262,'dt-img-hide-title','0'),(29841,1265,'dt-img-hide-title','0'),(29842,1269,'dt-img-hide-title','0'),(29843,1275,'dt-img-hide-title','0'),(29844,1279,'dt-img-hide-title','0'),(29845,1312,'dt-img-hide-title','0'),(29846,1316,'dt-img-hide-title','0'),(29847,1320,'dt-img-hide-title','0'),(29848,1326,'dt-img-hide-title','0'),(29849,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(29850,1334,'dt-img-hide-title','0'),(29851,1338,'dt-img-hide-title','0'),(29852,1339,'dt-img-hide-title','0'),(29853,1343,'dt-img-hide-title','0'),(29854,1347,'dt-img-hide-title','0'),(29855,1351,'dt-img-hide-title','0'),(29856,1354,'dt-img-hide-title','0'),(29857,1357,'dt-img-hide-title','0'),(29858,1359,'dt-img-hide-title','0'),(29859,1362,'dt-img-hide-title','0'),(29860,1366,'dt-img-hide-title','0'),(29861,1379,'dt-img-hide-title','0'),(29862,1398,'dt-img-hide-title','0'),(29863,1403,'dt-img-hide-title','0'),(29864,1406,'dt-img-hide-title','0'),(29865,1410,'dt-img-hide-title','0'),(29866,1413,'dt-img-hide-title','0'),(29867,1416,'dt-img-hide-title','0'),(29868,1419,'dt-img-hide-title','0'),(29869,1423,'dt-img-hide-title','0'),(29870,1429,'dt-img-hide-title','0'),(29871,1430,'dt-img-hide-title','0'),(29872,1433,'dt-img-hide-title','0'),(29873,1463,'dt-img-hide-title','0'),(29874,1463,'dt-img-hide-title','0'),(29875,1463,'dt-img-hide-title','0'),(29876,1463,'dt-img-hide-title','0'),(29877,1463,'dt-img-hide-title','0'),(29878,1468,'dt-img-hide-title','0'),(29879,2229,'dt-img-hide-title','0'),(29880,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(29881,2230,'dt-img-hide-title','0'),(29882,2231,'dt-img-hide-title','0'),(29883,2232,'dt-img-hide-title','0'),(29884,2233,'dt-img-hide-title','0'),(29885,2234,'dt-img-hide-title','0'),(29886,2235,'dt-img-hide-title','0'),(29887,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(29888,1474,'dt-img-hide-title','0'),(29889,1475,'dt-img-hide-title','0'),(29890,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(29891,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(29892,1476,'dt-img-hide-title','0'),(29893,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(29894,1478,'dt-img-hide-title','0'),(29895,1479,'dt-img-hide-title','0'),(29896,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(29897,1489,'dt-img-hide-title','0'),(29898,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(29899,1500,'dt-img-hide-title','0'),(29900,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(29901,1501,'dt-img-hide-title','0'),(29902,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(29903,1504,'dt-img-hide-title','0'),(29904,1508,'_wp_attachment_image_alt',''),(29905,1508,'dt-img-hide-title','0'),(29906,1508,'dt-video-url',''),(29907,1508,'dt-img-link',''),(29908,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(29909,1510,'dt-img-hide-title','0'),(29910,1514,'dt-img-hide-title','0'),(29911,2236,'dt-img-hide-title','0'),(29912,2237,'dt-img-hide-title','0'),(29913,2238,'dt-img-hide-title','0'),(29914,2239,'dt-img-hide-title','0'),(29915,2247,'dt-img-hide-title','0'),(29916,2248,'dt-img-hide-title','0'),(29917,2249,'dt-img-hide-title','0'),(29918,1533,'dt-img-hide-title','0'),(29919,1535,'dt-img-hide-title','0'),(29920,1536,'dt-img-hide-title','0'),(29921,1540,'dt-img-hide-title','0'),(29922,1546,'dt-img-hide-title','0'),(29923,1556,'dt-img-hide-title','0'),(29924,1566,'dt-img-hide-title','0'),(29925,1595,'dt-img-hide-title','0'),(29926,1608,'dt-video-url',''),(29927,1608,'dt-img-link',''),(29928,1608,'dt-img-hide-title','0'),(29929,1825,'dt-img-hide-title','0'),(29930,2250,'dt-img-hide-title','0'),(29931,2251,'dt-img-hide-title','0'),(29932,2252,'dt-img-hide-title','0'),(29933,2253,'dt-img-hide-title','0'),(29934,2254,'dt-img-hide-title','0'),(29935,2255,'dt-img-hide-title','0'),(29936,2256,'dt-img-hide-title','0'),(29937,2257,'dt-img-hide-title','0'),(29938,2258,'dt-img-hide-title','0'),(29939,2259,'dt-img-hide-title','0'),(29940,1646,'dt-img-hide-title','0'),(29941,1650,'dt-img-hide-title','0'),(29945,2241,'dt-img-hide-title','0'),(29946,2242,'dt-img-hide-title','0'),(29947,2243,'dt-img-hide-title','0'),(29948,2244,'dt-img-hide-title','0'),(29949,2245,'dt-img-hide-title','0'),(29950,2246,'dt-img-hide-title','0'),(29951,2260,'dt-img-hide-title','0'),(29952,2261,'dt-img-hide-title','0'),(29953,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(29954,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(29955,2262,'dt-img-hide-title','0'),(29956,2263,'dt-img-hide-title','0'),(29957,2264,'dt-img-hide-title','0'),(29958,2265,'dt-img-hide-title','0'),(29959,2266,'dt-img-hide-title','0'),(29960,2267,'dt-img-hide-title','0'),(29961,2268,'dt-img-hide-title','0'),(29962,2269,'dt-img-hide-title','0'),(29963,2270,'dt-img-hide-title','0'),(29964,1658,'dt-img-hide-title','0'),(29965,1660,'dt-img-hide-title','0'),(29966,1667,'dt-img-hide-title','0'),(29967,1668,'dt-img-hide-title','0'),(29968,1669,'dt-img-hide-title','0'),(29969,1674,'dt-img-hide-title','0'),(29970,2102,'dt-img-hide-title','0'),(29971,2103,'dt-img-hide-title','0'),(29972,2104,'dt-img-hide-title','0'),(29973,2105,'dt-img-hide-title','0'),(29974,2106,'dt-img-hide-title','0'),(29975,2107,'dt-img-hide-title','0'),(29976,2108,'dt-img-hide-title','0'),(29977,2109,'dt-img-hide-title','0'),(29978,2110,'dt-img-hide-title','0'),(29979,2111,'dt-img-hide-title','0'),(29980,2112,'dt-img-hide-title','0'),(29981,2113,'dt-img-hide-title','0'),(29982,2114,'dt-img-hide-title','0'),(29983,2115,'dt-img-hide-title','0'),(29984,1675,'dt-img-hide-title','0'),(29985,1699,'dt-img-hide-title','0'),(29986,1700,'dt-img-hide-title','0'),(29987,1701,'dt-img-hide-title','0'),(29988,1702,'dt-img-hide-title','0'),(29989,2217,'dt-img-hide-title','0'),(29990,2222,'dt-img-hide-title','0'),(29991,2271,'dt-img-hide-title','0'),(29992,2289,'dt-img-hide-title','0'),(29993,2291,'dt-img-hide-title','0'),(29994,2293,'dt-img-hide-title','0'),(29995,2295,'dt-img-hide-title','0'),(29996,2297,'dt-img-hide-title','0'),(29997,2299,'dt-img-hide-title','0'),(29998,2301,'dt-img-hide-title','0'),(29999,2303,'dt-img-hide-title','0'),(30000,2305,'dt-img-hide-title','0'),(30001,2307,'dt-img-hide-title','0'),(30002,2405,'dt-img-hide-title','0'),(30003,2405,'_wp_attachment_image_alt','iMoveFreely® Exercises To Try At Home'),(30004,2409,'dt-img-hide-title','0'),(30005,2409,'_wp_attachment_image_alt','Don’t Listen To Us….Listen To Them!'),(30006,2410,'dt-img-hide-title','0'),(30007,2410,'_wp_attachment_image_alt','Presentations at The Movement Convention'),(30008,2411,'dt-img-hide-title','0'),(30009,2411,'_wp_attachment_image_alt','Just For Fun'),(30010,2413,'dt-img-hide-title','0'),(30011,2413,'_wp_attachment_image_alt','We all Squat Differently?'),(30012,2415,'dt-img-hide-title','0'),(30013,2415,'_wp_attachment_image_alt','What Do Our Workshops Look Like?'),(30014,2534,'dt-img-hide-title','0'),(30015,2535,'dt-img-hide-title','0'),(30016,2537,'dt-img-hide-title','0'),(30017,2538,'dt-img-hide-title','0'),(30018,2539,'dt-img-hide-title','0'),(30019,2540,'dt-img-hide-title','0'),(30020,2541,'dt-img-hide-title','0'),(30021,2548,'dt-img-hide-title','0'),(30022,2549,'dt-img-hide-title','0'),(30023,2550,'dt-img-hide-title','0'),(30024,2551,'dt-img-hide-title','0'),(30025,2552,'dt-img-hide-title','0'),(30026,2611,'dt-img-hide-title','0'),(30027,2612,'dt-img-hide-title','0'),(30028,2613,'dt-img-hide-title','0'),(30029,2614,'dt-img-hide-title','0'),(30030,2615,'dt-img-hide-title','0'),(30031,2655,'dt-img-hide-title','0'),(30032,2656,'dt-img-hide-title','0'),(30033,2657,'dt-img-hide-title','0'),(30034,2658,'dt-img-hide-title','0'),(30035,2721,'dt-img-hide-title','0'),(30036,2722,'dt-img-hide-title','0'),(30037,2723,'dt-img-hide-title','0'),(30038,2724,'dt-img-hide-title','0'),(30039,2725,'dt-img-hide-title','0'),(30040,2726,'dt-img-hide-title','0'),(30041,2727,'dt-img-hide-title','0'),(30042,2728,'dt-img-hide-title','0'),(30043,2729,'dt-img-hide-title','0'),(30044,2756,'dt-img-hide-title','0'),(30045,2759,'dt-img-hide-title','0'),(30046,2781,'dt-img-hide-title','0'),(30047,2786,'dt-img-hide-title','0'),(30048,2787,'dt-img-hide-title','0'),(30049,2788,'dt-img-hide-title','0'),(30050,2788,'_wp_attachment_image_alt','the effect of quadratus lumborum muscle'),(30051,2810,'dt-img-hide-title','0'),(30052,2811,'dt-img-hide-title','0'),(30053,2812,'dt-img-hide-title','0'),(30054,2813,'dt-img-hide-title','0'),(30055,2814,'dt-img-hide-title','0'),(30056,2815,'dt-img-hide-title','0'),(30057,2816,'dt-img-hide-title','0'),(30058,2817,'dt-img-hide-title','0'),(30059,2818,'dt-img-hide-title','0'),(30060,2837,'dt-img-hide-title','0'),(30061,2846,'dt-img-hide-title','0'),(30062,2847,'dt-img-hide-title','0'),(30063,2856,'dt-img-hide-title','0'),(30064,2857,'dt-img-hide-title','0'),(30065,2858,'dt-img-hide-title','0'),(30066,2859,'dt-img-hide-title','0'),(30067,2860,'dt-img-hide-title','0'),(30068,2861,'dt-img-hide-title','0'),(30069,2862,'dt-img-hide-title','0'),(30070,2868,'dt-img-hide-title','0'),(30071,2869,'dt-img-hide-title','0'),(30072,2870,'dt-img-hide-title','0'),(30073,2871,'dt-img-hide-title','0'),(30074,2875,'dt-img-hide-title','0'),(30075,2876,'dt-img-hide-title','0'),(30076,2877,'dt-img-hide-title','0'),(30077,2878,'dt-img-hide-title','0'),(30078,2879,'dt-img-hide-title','0'),(30079,2894,'dt-img-hide-title','0'),(30080,2894,'dt-video-url',''),(30081,2894,'dt-img-link',''),(30082,2896,'dt-img-hide-title','0'),(30083,2896,'dt-video-url',''),(30084,2896,'dt-img-link',''),(30085,2960,'dt-img-hide-title','0'),(30086,2961,'dt-img-hide-title','0'),(30087,2962,'dt-img-hide-title','0'),(30088,2963,'dt-img-hide-title','0'),(30089,2964,'dt-img-hide-title','0'),(30090,2965,'dt-img-hide-title','0'),(30091,2966,'dt-img-hide-title','0'),(30092,2967,'dt-img-hide-title','0'),(30093,2968,'dt-img-hide-title','0'),(30094,2969,'dt-img-hide-title','0'),(30095,2976,'dt-img-hide-title','0'),(30096,2986,'dt-img-hide-title','0'),(30097,2999,'dt-img-hide-title','0'),(30098,3002,'dt-img-hide-title','0'),(30099,3003,'dt-img-hide-title','0'),(30100,3004,'dt-img-hide-title','0'),(30101,3005,'dt-img-hide-title','0'),(30102,3006,'dt-img-hide-title','0'),(30103,3014,'dt-img-hide-title','0'),(30104,3015,'dt-img-hide-title','0'),(30105,3016,'dt-img-hide-title','0'),(30106,3034,'dt-img-hide-title','0'),(30107,3173,'dt-img-hide-title','0'),(30108,3174,'dt-img-hide-title','0'),(30109,3179,'dt-img-hide-title','0'),(30110,3180,'dt-img-hide-title','0'),(30111,3183,'dt-img-hide-title','0'),(30112,3188,'dt-img-hide-title','0'),(30113,3191,'dt-img-hide-title','0'),(30114,3200,'dt-img-hide-title','0'),(30115,3201,'dt-img-hide-title','0'),(30116,3202,'dt-img-hide-title','0'),(30117,3203,'dt-img-hide-title','0'),(30118,3205,'dt-img-hide-title','0'),(30119,3206,'dt-img-hide-title','0'),(30120,3207,'dt-img-hide-title','0'),(30121,3208,'dt-img-hide-title','0'),(30122,3213,'dt-img-hide-title','0'),(30123,3214,'dt-img-hide-title','0'),(30124,3228,'dt-img-hide-title','0'),(30125,3229,'dt-img-hide-title','0'),(30126,3230,'dt-img-hide-title','0'),(30127,3234,'dt-img-hide-title','0'),(30128,3242,'dt-img-hide-title','0'),(30129,3243,'dt-img-hide-title','0'),(30130,3325,'dt-img-hide-title','0'),(30131,3479,'dt-img-hide-title','0'),(30132,3496,'dt-img-hide-title','0'),(30133,3496,'_wp_attachment_image_alt','Rachel France - profile image'),(30134,3497,'dt-img-hide-title','0'),(30135,3498,'dt-img-hide-title','0'),(30136,3499,'dt-img-hide-title','0'),(30137,3502,'dt-img-hide-title','0'),(30138,3504,'dt-img-hide-title','0'),(30139,3505,'dt-img-hide-title','0'),(30140,3506,'dt-img-hide-title','0'),(30141,3507,'dt-img-hide-title','0'),(30142,3511,'dt-img-hide-title','0'),(30143,3528,'dt-img-hide-title','0'),(30144,3534,'dt-video-url',''),(30145,3534,'dt-img-link',''),(30146,3534,'dt-img-hide-title','0'),(30147,3535,'dt-video-url',''),(30148,3535,'dt-img-link',''),(30149,3535,'dt-img-hide-title','0'),(30150,3535,'_wp_attachment_image_alt','Tachel France - biomechanics education'),(30151,3536,'dt-video-url',''),(30152,3536,'dt-img-link',''),(30153,3536,'dt-img-hide-title','0'),(30154,3537,'dt-video-url',''),(30155,3537,'dt-img-link',''),(30156,3537,'dt-img-hide-title','0'),(30157,3551,'dt-img-hide-title','0'),(30158,3629,'dt-img-hide-title','0'),(30159,3630,'dt-img-hide-title','0'),(30160,3631,'dt-img-hide-title','0'),(30161,3632,'dt-img-hide-title','0'),(30162,3633,'dt-img-hide-title','0'),(30163,3634,'dt-img-hide-title','0'),(30164,3635,'dt-img-hide-title','0'),(30165,3636,'dt-img-hide-title','0'),(30166,3655,'dt-video-url',''),(30167,3655,'dt-img-link',''),(30168,3655,'dt-img-hide-title','0'),(30169,3690,'dt-img-hide-title','0'),(30170,3692,'dt-img-hide-title','0'),(30171,3693,'dt-img-hide-title','0'),(30172,3694,'dt-img-hide-title','0'),(30173,3695,'dt-img-hide-title','0'),(30174,3699,'dt-img-hide-title','0'),(30175,3784,'dt-img-hide-title','0'),(30176,3789,'dt-img-hide-title','0'),(30177,3801,'dt-img-hide-title','0'),(30178,3803,'dt-img-hide-title','0'),(30179,4107,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics'),(30180,4107,'dt-img-hide-title','0'),(30181,4107,'_wp_old_slug','what-exactly-is-intrinsic-biomechanics'),(30182,4108,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics-2'),(30183,4108,'dt-img-hide-title','0'),(30184,4399,'_wp_attachment_image_alt','special-fast-track-3-day-pelvic-spine-biomechanics-workshop'),(30185,4399,'dt-img-hide-title','0'),(30186,4601,'dt-img-hide-title','0'),(30187,4705,'_wp_attachment_image_alt','imovefreely-instructor - biomechanics education'),(30188,4705,'dt-img-hide-title','0'),(30189,4707,'dt-img-hide-title','0'),(30190,4709,'_wp_attachment_image_alt','intrinsic-biomechanics-taster'),(30191,4709,'dt-img-hide-title','0'),(30192,4715,'_wp_attachment_image_alt','low-back-health-workshop - biomechanics education'),(30193,4715,'dt-img-hide-title','0'),(30194,4717,'_wp_attachment_image_alt','knee-foot-biomechanics-2-day-workshop'),(30195,4717,'dt-img-hide-title','0'),(30196,4733,'_wp_attachment_image_alt','iba-discovery-day-workshop'),(30197,4733,'dt-img-hide-title','0'),(30198,5135,'_wp_attachment_image_alt','Biomechanics Coach & Diploma Workshop Series'),(30199,5135,'dt-img-hide-title','0'),(30200,5139,'_wp_attachment_image_alt','Low Back Health Workshop'),(30201,5139,'dt-img-hide-title','0'),(30202,5143,'_wp_attachment_image_alt','Spine Biomechanics 2 Day Workshop'),(30203,5143,'dt-img-hide-title','0'),(30204,5149,'_wp_attachment_image_alt','Pelvic Biomechanics 2 Day Workshop'),(30205,5149,'dt-img-hide-title','0'),(30206,5151,'_wp_attachment_image_alt','Shoulder Biomechanics 2 Day Workshop'),(30207,5151,'dt-img-hide-title','0'),(30208,5155,'dt-img-hide-title','0'),(30209,5155,'dt-video-url',''),(30210,5155,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split'),(30211,5253,'dt-img-hide-title','0'),(30212,5325,'dt-img-hide-title','0'),(30213,6395,'dt-img-hide-title','0'),(30214,6410,'_wp_attachment_image_alt','Rachel France - Listening to Dan John, Never Let Go'),(30215,6410,'dt-img-hide-title','0'),(30216,6682,'_wp_attachment_image_alt','Rachel France smiling - Group Exercise'),(30217,6682,'dt-img-hide-title','0'),(30218,6683,'_wp_attachment_image_alt','Rachel France - Biomechanics Education - Group Exercise'),(30219,6683,'dt-img-hide-title','0'),(30220,6724,'dt-img-hide-title','0'),(30221,7303,'dt-img-hide-title','0'),(30222,7690,'_wp_page_template','default'),(30223,7690,'dt-video-url',''),(30224,7690,'dt-img-link',''),(30225,7690,'dt-img-hide-title','0'),(30226,7690,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1284;s:6:\"height\";i:1248;s:4:\"file\";s:10:\"Flowin.png\";}}'),(30227,7696,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1128;s:6:\"height\";i:871;s:4:\"file\";s:17:\"TherapyEmpire.png\";}}'),(30228,7696,'_wp_page_template','default'),(30229,7696,'dt-video-url',''),(30230,7696,'dt-img-link',''),(30231,7696,'dt-img-hide-title','0'),(30232,7709,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1085;s:6:\"height\";i:851;s:4:\"file\";s:15:\"PulseRoll-1.png\";}}'),(30233,7709,'_wp_page_template','default'),(30234,7709,'dt-video-url',''),(30235,7709,'dt-img-link',''),(30236,7709,'dt-img-hide-title','0'),(30237,7711,'_wp_page_template','default'),(30238,7711,'dt-video-url',''),(30239,7711,'dt-img-link',''),(30240,7711,'dt-img-hide-title','0'),(30241,8351,'dt-img-hide-title','0'),(30242,9448,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:420;s:6:\"height\";i:315;s:4:\"file\";s:7:\"STA.png\";}}'),(30243,9448,'_wp_page_template','default'),(30244,9448,'dt-video-url',''),(30245,9448,'dt-img-link',''),(30246,9448,'dt-img-hide-title','0'),(30247,10372,'_wp_attachment_image_alt','Level 4 Low Back Pain Qualification for Personal Trainers'),(30248,10372,'dt-img-hide-title','0'),(30249,10836,'_wp_old_slug','always-always-start-with-why'),(30250,10836,'dt-img-hide-title','0'),(30251,12889,'dt-img-hide-title','0'),(30252,13010,'_wp_attachment_image_alt','Are Shoulder Problems Are The New Low Back Pain_'),(30253,13010,'dt-img-hide-title','0'),(30254,13150,'dt-img-hide-title','0'),(30255,13709,'dt-video-url',''),(30256,13709,'dt-img-link','https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description'),(30257,13709,'dt-img-hide-title','0'),(30258,16056,'_wp_attachment_image_alt','Golf Biomechanics Workshop'),(30259,16056,'dt-img-hide-title','0'),(30260,16057,'_wp_attachment_image_alt','Running Biomechanics Workshop'),(30261,16057,'dt-img-hide-title','0'),(30262,17664,'dt-video-url',''),(30263,17664,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549'),(30264,17664,'dt-img-hide-title','0'),(30265,19073,'_wp_attachment_image_alt','Intrinsic Biomechanics For Personal Trainers - 3 Phase System For Health, Function & Performance'),(30266,19073,'dt-img-hide-title','0'),(30267,23078,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1204;s:6:\"height\";i:1072;s:4:\"file\";s:37:\"Screenshot-2020-07-07-at-16.49.55.png\";}}'),(30268,23949,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:1499;s:4:\"file\";s:15:\"IMG_3042-1.jpeg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-768x1151.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(30269,24805,'_wp_attachment_backup_sizes','a:3:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:12:\"IMG_1593.jpg\";}s:18:\"full-1605688593104\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"IMG_1593-e1604933246144.jpg\";}s:18:\"full-1605688603868\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"IMG_1593-e1605688593104.jpg\";}}'),(30270,24806,'_wp_attachment_backup_sizes','a:13:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:49:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-scaled.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:51:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:51:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:52:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"2048x2048-orig\";a:4:{s:4:\"file\";s:52:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(30271,24937,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1080;s:6:\"height\";i:1440;s:4:\"file\";s:12:\"IMG_1450.jpg\";}}'),(30272,25551,'_wp_attachment_image_alt','CIMSPA-Education-Partner-Training-Provider'),(30273,25551,'dt-img-hide-title','0'),(30274,27322,'dt-img-hide-title','0'),(30275,27960,'_wp_attached_file','2021/06/IMG_8658-1.jpg'),(30276,27960,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1284;s:6:\"height\";i:1271;s:4:\"file\";s:22:\"2021/06/IMG_8658-1.jpg\";s:8:\"filesize\";i:1052346;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(30277,27962,'_wp_attached_file','2021/06/tingey-injury-law-firm-9SKhDFnw4c4-unsplash-scaled-1.jpg'),(30278,27962,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:64:\"2021/06/tingey-injury-law-firm-9SKhDFnw4c4-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:434109;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30279,27963,'_wp_attached_file','2021/06/shutterstock_1067442071-scaled-1.jpg'),(30280,27963,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:44:\"2021/06/shutterstock_1067442071-scaled-1.jpg\";s:8:\"filesize\";i:287891;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:67:\"Copyright (c) 2018 Lopolo/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:35:\"Modern,Rehabilitation,Physiotherapy\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"treatment,medical,rehab,woman,mature,young,exercise,nursing,reco\";}}}'),(30281,27964,'_wp_attached_file','2021/06/shutterstock_1756367075-scaled-1.jpg'),(30282,27964,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:44:\"2021/06/shutterstock_1756367075-scaled-1.jpg\";s:8:\"filesize\";i:351378;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:67:\"Copyright (c) 2020 Jbruiz/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:48:\"Podiatry,And,Biomechanics,Session,With,A,Patient\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"medical,reflexology,surgeon,leg,professional,healing,problem,rea\";}}}'),(30283,27965,'_wp_attached_file','2021/06/ryan-snaadt-sEJpq3D2vMo-unsplash-scaled-1.jpg'),(30284,27965,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:53:\"2021/06/ryan-snaadt-sEJpq3D2vMo-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:404439;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30285,27966,'_wp_attached_file','2021/06/ryan-snaadt-qCPUBf1ek-Y-unsplash-scaled-1.jpg'),(30286,27966,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:53:\"2021/06/ryan-snaadt-qCPUBf1ek-Y-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:333614;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30287,27967,'_wp_attached_file','2021/06/ryan-snaadt-1hI7tt6FMQg-unsplash-scaled-1.jpg'),(30288,27967,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:53:\"2021/06/ryan-snaadt-1hI7tt6FMQg-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:329440;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30289,27968,'_wp_attached_file','2021/06/annie-spratt-oQfSHQ2Uaic-unsplash-scaled-1.jpg'),(30290,27968,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1708;s:6:\"height\";i:2560;s:4:\"file\";s:54:\"2021/06/annie-spratt-oQfSHQ2Uaic-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:385562;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30291,27969,'_wp_attached_file','2021/06/ryan-snaadt-NZ35JeEUfls-unsplash-scaled-1.jpg'),(30292,27969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:53:\"2021/06/ryan-snaadt-NZ35JeEUfls-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:315464;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30293,27970,'_wp_attached_file','2021/06/sule-makaroglu-PnUYkTFkOD0-unsplash-scaled-1.jpg'),(30294,27970,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:56:\"2021/06/sule-makaroglu-PnUYkTFkOD0-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:865057;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30295,27971,'_wp_attached_file','2021/06/victor-freitas-nlZTjUZX2qo-unsplash-scaled-1.jpg'),(30296,27971,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:56:\"2021/06/victor-freitas-nlZTjUZX2qo-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:810583;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30297,27972,'_wp_attached_file','2021/06/IMG_8670-scaled-1.jpg'),(30298,27972,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/06/IMG_8670-scaled-1.jpg\";s:8:\"filesize\";i:684454;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(30299,27973,'_wp_attached_file','2021/06/IMG_8673-scaled-1.jpg'),(30300,27973,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/06/IMG_8673-scaled-1.jpg\";s:8:\"filesize\";i:455415;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(30301,27974,'_wp_attached_file','2021/06/IMG_8671-scaled-1.jpg'),(30302,27974,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/06/IMG_8671-scaled-1.jpg\";s:8:\"filesize\";i:452964;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(30303,27975,'_wp_attached_file','2021/06/IMG_8674-scaled-1.jpg'),(30304,27975,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/06/IMG_8674-scaled-1.jpg\";s:8:\"filesize\";i:454796;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(30305,27976,'_wp_attached_file','2021/06/IMG_8675-scaled-1.jpg'),(30306,27976,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/06/IMG_8675-scaled-1.jpg\";s:8:\"filesize\";i:458859;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(30307,27977,'_wp_attached_file','2021/06/IMG_8676-scaled-1.jpg'),(30308,27977,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/06/IMG_8676-scaled-1.jpg\";s:8:\"filesize\";i:450914;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(30309,27994,'_wp_attached_file','2021/06/anupam-mahapatra-Vz0RbclzG_w-unsplash-scaled-1.jpg'),(30310,27994,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:58:\"2021/06/anupam-mahapatra-Vz0RbclzG_w-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:585209;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30311,28024,'_wp_attached_file','2021/06/Dr-Gary-Mendoza-1.png'),(30312,28024,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1296;s:6:\"height\";i:1944;s:4:\"file\";s:29:\"2021/06/Dr-Gary-Mendoza-1.png\";s:8:\"filesize\";i:4159556;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30313,28083,'_wp_attached_file','2021/06/Diploma-Handbook-NEW-2021-1.pdf'),(30314,28083,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:35:\"Diploma-Handbook-NEW-2021-1-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75848;}s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Diploma-Handbook-NEW-2021-1-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56139;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Diploma-Handbook-NEW-2021-1-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17062;}}s:8:\"filesize\";i:825492;}'),(30315,28280,'_wp_attached_file','2021/06/IMG_7323-1.jpg'),(30316,28280,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:810;s:6:\"height\";i:1080;s:4:\"file\";s:22:\"2021/06/IMG_7323-1.jpg\";s:8:\"filesize\";i:294117;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(30317,28328,'_wp_attached_file','2021/06/DSC_6687-scaled-1.jpg'),(30318,28328,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:29:\"2021/06/DSC_6687-scaled-1.jpg\";s:8:\"filesize\";i:661187;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535287482\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(30319,28329,'_wp_attached_file','2021/06/DSC_6770-scaled-1.jpg'),(30320,28329,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:29:\"2021/06/DSC_6770-scaled-1.jpg\";s:8:\"filesize\";i:650994;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535288506\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"2200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(30321,28385,'_wp_attached_file','2019/04/jenny-hill-mQVWb7kUoOE-unsplash-scaled-1.jpg'),(30322,28385,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1703;s:4:\"file\";s:52:\"2019/04/jenny-hill-mQVWb7kUoOE-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:617638;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30323,28470,'_wp_attached_file','2021/07/AMY-LINFORD-PHOTO-2.jpg'),(30324,28470,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:405;s:4:\"file\";s:31:\"2021/07/AMY-LINFORD-PHOTO-2.jpg\";s:8:\"filesize\";i:27468;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30325,28471,'_wp_attached_file','2021/07/AMY-LINFORD-PHOTO-1-1.jpg'),(30326,28471,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:405;s:4:\"file\";s:33:\"2021/07/AMY-LINFORD-PHOTO-1-1.jpg\";s:8:\"filesize\";i:27468;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30327,28484,'_wp_attached_file','2021/07/shutterstock_515526265-scaled-1.jpg'),(30328,28484,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:43:\"2021/07/shutterstock_515526265-scaled-1.jpg\";s:8:\"filesize\";i:300746;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:70:\"Copyright (c) 2016 stockfour/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:62:\"Senior,Man,And,Personal,Trainer,Writing,Results,On,A,Clipboard\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"medical,rehab,mature,nursing,cure,retirement,stretching,clipboar\";}}}'),(30329,28485,'_wp_attached_file','2021/07/shutterstock_624551885-scaled-1.jpg'),(30330,28485,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:43:\"2021/07/shutterstock_624551885-scaled-1.jpg\";s:8:\"filesize\";i:501348;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:71:\"Copyright (c) 2017 InesBazdar/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:66:\"Young,Female,And,Her,Fitness,Instructor,Are,Having,Conversation,At\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"fitness instructor,muscular,two people,woman,activity,strength,a\";}}}'),(30331,28485,'_wp_attachment_image_alt','Young,Female,And,Her,Fitness,Instructor,Are,Having,Conversation'),(30332,28485,'dt-img-hide-title','0'),(30333,38951,'_wp_attached_file','2024/07/BE-Home-page-hero-Image.jpg'),(30334,38951,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:35:\"2024/07/BE-Home-page-hero-Image.jpg\";s:8:\"filesize\";i:277187;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE-Home-page-hero-Image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70037;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE-Home-page-hero-Image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106556;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE-Home-page-hero-Image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21034;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE-Home-page-hero-Image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55456;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE-Home-page-hero-Image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153280;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE-Home-page-hero-Image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235443;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE-Home-page-hero-Image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27586;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE-Home-page-hero-Image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92616;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE-Home-page-hero-Image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141068;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE-Home-page-hero-Image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20961;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE-Home-page-hero-Image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70082;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE-Home-page-hero-Image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106559;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE-Home-page-hero-Image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21538;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE-Home-page-hero-Image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71709;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE-Home-page-hero-Image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108792;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE-Home-page-hero-Image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22892;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE-Home-page-hero-Image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77122;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE-Home-page-hero-Image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116762;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE-Home-page-hero-Image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17676;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE-Home-page-hero-Image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58388;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE-Home-page-hero-Image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89319;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30335,28486,'_wp_attached_file','2021/07/shutterstock_793347169-scaled-1.jpg'),(30336,28486,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:43:\"2021/07/shutterstock_793347169-scaled-1.jpg\";s:8:\"filesize\";i:426303;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:71:\"Copyright (c) 2018 Guitarfoto/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:55:\"Group,Of,Yong,People,Using,Smart,Phone,For,Social,Media\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"friendship,smartphone,young,university,concept,happy,hipster,stu\";}}}'),(30337,28487,'_wp_attached_file','2021/07/shutterstock_409451293-scaled-1.jpg'),(30338,28487,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1619;s:4:\"file\";s:43:\"2021/07/shutterstock_409451293-scaled-1.jpg\";s:8:\"filesize\";i:223521;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:68:\"Copyright (c) 2016 HomeArt/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:53:\"Funny,Man,In,Helmet,With,Shotgun,Sitting,On,The,Floor\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"play,gun,game,aim,entertainment,warrior,concept,couch,focus,guy,\";}}}'),(30339,28488,'_wp_attached_file','2021/07/peggy-anke-SjeRPKfVDj8-unsplash-scaled-1.jpg'),(30340,28488,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:52:\"2021/07/peggy-anke-SjeRPKfVDj8-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:665148;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30341,28489,'_wp_attached_file','2021/07/geron-dison-9_FmYJTSYTU-unsplash-scaled-1.jpg'),(30342,28489,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:53:\"2021/07/geron-dison-9_FmYJTSYTU-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:339665;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30343,28490,'_wp_attached_file','2021/07/cardmapr-nl-LQZQM_z1b-s-unsplash-scaled-1.jpg'),(30344,28490,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:53:\"2021/07/cardmapr-nl-LQZQM_z1b-s-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:406362;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30345,28491,'_wp_attached_file','2021/07/shutterstock_436476886-scaled-1.jpg'),(30346,28491,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1144;s:4:\"file\";s:43:\"2021/07/shutterstock_436476886-scaled-1.jpg\";s:8:\"filesize\";i:458155;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:73:\"Copyright (c) 2016 Rawpixel.com/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:55:\"Social,Media,Online,Connect,Wireless,Technology,Concept\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"college,friendship,networking,discussion,tablet,startup,casual,c\";}}}'),(30347,28492,'_wp_attached_file','2021/07/mimi-thian-lp1AKIUV3yo-unsplash-scaled-1.jpg'),(30348,28492,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:52:\"2021/07/mimi-thian-lp1AKIUV3yo-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:334133;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30349,28513,'_wp_attached_file','2021/07/WEBSITE-PDF-FOOT-ANATOMY-PART-5-1.pdf'),(30350,28513,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:41:\"WEBSITE-PDF-FOOT-ANATOMY-PART-5-1-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94396;}s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"WEBSITE-PDF-FOOT-ANATOMY-PART-5-1-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45525;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"WEBSITE-PDF-FOOT-ANATOMY-PART-5-1-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66811;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"WEBSITE-PDF-FOOT-ANATOMY-PART-5-1-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15571;}}s:8:\"filesize\";i:222525;}'),(30351,28514,'_wp_attached_file','2021/07/WEBSITE-PDF-PARTS-1-5-1.pdf'),(30352,28514,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:31:\"WEBSITE-PDF-PARTS-1-5-1-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108800;}s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"WEBSITE-PDF-PARTS-1-5-1-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48445;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"WEBSITE-PDF-PARTS-1-5-1-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72532;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"WEBSITE-PDF-PARTS-1-5-1-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15366;}}s:8:\"filesize\";i:228624;}'),(30353,28516,'_wp_attached_file','2021/07/Screenshot-2021-07-06-at-14.34.49-1.png'),(30354,28516,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1784;s:6:\"height\";i:448;s:4:\"file\";s:47:\"2021/07/Screenshot-2021-07-06-at-14.34.49-1.png\";s:8:\"filesize\";i:1957738;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30355,28517,'_wp_attached_file','2021/07/Screenshot-2021-07-06-at-14.38.57-1.png'),(30356,28517,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1598;s:6:\"height\";i:690;s:4:\"file\";s:47:\"2021/07/Screenshot-2021-07-06-at-14.38.57-1.png\";s:8:\"filesize\";i:1353862;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30357,28620,'_wp_attached_file','2021/07/shutterstock_651221473-scaled-1.jpg'),(30358,28620,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1870;s:4:\"file\";s:43:\"2021/07/shutterstock_651221473-scaled-1.jpg\";s:8:\"filesize\";i:480354;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30359,28621,'_wp_attached_file','2021/07/shutterstock_1364554769-scaled-1.jpg'),(30360,28621,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1304;s:4:\"file\";s:44:\"2021/07/shutterstock_1364554769-scaled-1.jpg\";s:8:\"filesize\";i:441730;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(30361,28622,'_wp_attached_file','2021/07/shutterstock_1068924428-scaled-1.jpg'),(30362,28622,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:44:\"2021/07/shutterstock_1068924428-scaled-1.jpg\";s:8:\"filesize\";i:301201;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:76:\"Copyright (c) 2018 Motortion Films/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:67:\"Healthy,Nutrition,Expert,Making,Weekly,Meal,Plan,For,Client,,Weight\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"woman,advice,program,body,exercising,life,obese,tips,weekly,smil\";}}}'),(30363,28623,'_wp_attached_file','2021/07/shutterstock_1107423758-scaled-1.jpg'),(30364,28623,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:44:\"2021/07/shutterstock_1107423758-scaled-1.jpg\";s:8:\"filesize\";i:419785;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:76:\"Copyright (c) 2018 Photographee.eu/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:60:\"Smiling,Woman,Talking,To,A,Wellness,Coach,To,Find,Motivation\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"psychotherapist,psychological,office,interpersonal,listen,profes\";}}}'),(30365,28625,'_wp_attached_file','2021/07/Screenshot-2021-07-12-at-14.52.34-1.png'),(30366,28625,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1096;s:6:\"height\";i:448;s:4:\"file\";s:47:\"2021/07/Screenshot-2021-07-12-at-14.52.34-1.png\";s:8:\"filesize\";i:239107;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30367,28733,'_wp_attached_file','2021/07/IMG_6257-1.jpeg'),(30368,28733,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1272;s:6:\"height\";i:1125;s:4:\"file\";s:23:\"2021/07/IMG_6257-1.jpeg\";s:8:\"filesize\";i:263053;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(30369,28847,'_wp_attached_file','2021/07/filip-mroz-167499-unsplash-scaled-1.jpg'),(30370,28847,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1829;s:6:\"height\";i:2560;s:4:\"file\";s:47:\"2021/07/filip-mroz-167499-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:193631;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30371,28848,'_wp_attached_file','2021/07/jenny-hill-mQVWb7kUoOE-unsplash-scaled-1.jpg'),(30372,28848,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1703;s:4:\"file\";s:52:\"2021/07/jenny-hill-mQVWb7kUoOE-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:617638;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(30373,29056,'_wp_attached_file','2021/08/Headshot-2019-1.jpg'),(30374,29056,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1399;s:6:\"height\";i:1080;s:4:\"file\";s:27:\"2021/08/Headshot-2019-1.jpg\";s:8:\"filesize\";i:123213;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(30375,30605,'dt-img-hide-title','0'),(30376,30606,'dt-img-hide-title','0'),(30377,30610,'dt-img-hide-title','0'),(30378,30612,'dt-img-hide-title','0'),(30379,31065,'_wp_attachment_image_alt','Online vs Face to Face workshop - biomechanics education'),(30380,31065,'dt-img-hide-title','0'),(30381,31068,'_wp_attachment_image_alt','gabin-vallet - Online vs Face to Face- biomechanics education'),(30382,31068,'dt-img-hide-title','0'),(30383,31069,'_wp_attachment_image_alt','jonathan-borba - online vs face to face workshop - biomechanics education'),(30384,31069,'dt-img-hide-title','0'),(30385,31185,'_wp_attachment_image_alt','[Case Study] Elite Lifter Laura Hewitt - biomechanics education'),(30386,31185,'dt-img-hide-title','0'),(30387,31260,'_wp_attachment_image_alt','Understanding Nerves - young man relaxing on the sofa'),(30388,31260,'dt-img-hide-title','0'),(30389,31261,'_wp_attachment_image_alt','Understanding Nerves - young woman exercising'),(30390,31261,'dt-img-hide-title','0'),(30391,31262,'_wp_attachment_image_alt','Understanding Nerves - Rachel Frances Thomson'),(30392,31262,'dt-img-hide-title','0'),(30393,31422,'_wp_attachment_image_alt','Neuromuscular Exercise - biomechanics education'),(30394,31422,'dt-img-hide-title','0'),(30395,31424,'_wp_attachment_image_alt','Neuromuscular Exercise - one leg'),(30396,31424,'dt-img-hide-title','0'),(30397,31431,'_wp_attachment_image_alt','rachel thomson - exercise biomechanics education'),(30398,31431,'dt-img-hide-title','0'),(30399,31432,'_wp_attachment_image_alt','Neuromuscular Exercise with dog - rachel thomson'),(30400,31432,'dt-img-hide-title','0'),(30401,31433,'_wp_attachment_image_alt','neuromuscular exercise - rachel thomson'),(30402,31433,'dt-img-hide-title','0'),(30403,31612,'_wp_attachment_image_alt','Mark Laws - IBA discovery day'),(30404,31612,'dt-img-hide-title','0'),(30405,31613,'_wp_attachment_image_alt','Mark Laws - biomechanics education'),(30406,31613,'dt-img-hide-title','0'),(30407,31614,'_wp_attachment_image_alt','IBA Discovery Day Workshops - biomechanics education'),(30408,31614,'dt-img-hide-title','0'),(30409,31747,'_wp_attachment_image_alt','The Power of Words - biomechanics education'),(30410,38953,'hero_style','default'),(30411,38953,'_hero_style','field_62051d9dc5324'),(30412,38953,'hero_image_pos_x','right'),(30413,38953,'_hero_image_pos_x','field_62ec3d05390bb'),(30414,38953,'hero_image_pos_y','top'),(30415,38953,'_hero_image_pos_y','field_62ec3d05390bc'),(30416,38953,'hero_image_pos',''),(30417,38953,'_hero_image_pos','field_62ec3d05390ba'),(30418,38953,'hero_title','Biomechanics Education'),(30419,38953,'_hero_title','field_617571fe285e8'),(30420,38953,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(30421,38953,'_hero_text','field_6175723c285e9'),(30422,38953,'hero_actions','1'),(30423,38953,'_hero_actions','field_61757270285ea'),(30424,38953,'hero_icon',''),(30425,38953,'_hero_icon','field_61a6182199d03'),(30426,38953,'fft_hide_from_listings','0'),(30427,38953,'_fft_hide_from_listings','field_61f1320446ab2'),(30428,38953,'fft_page_format','default'),(30429,38953,'_fft_page_format','field_61ae213f1f218'),(30430,38953,'fft_hide_nav','0'),(30431,38953,'_fft_hide_nav','field_635bd5e43527c'),(30432,38953,'fft_hide_header_call_to_action','0'),(30433,38953,'_fft_hide_header_call_to_action','field_635bd6723527d'),(30434,38953,'fft_page_sitemap','0'),(30435,38953,'_fft_page_sitemap','field_61af9b34e8181'),(30436,38953,'blocks',''),(30437,38953,'_blocks','field_6176696113096'),(30438,38953,'hero_actions_0_button','a:3:{s:5:\"title\";s:29:\"Biomechanics Coaching Diploma\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(30439,38953,'_hero_actions_0_button','field_61757281285eb'),(30440,38953,'_thumbnail_id','38951'),(30441,38953,'__thumbnail_id','field_617570855ddaf'),(30557,38957,'hero_style','default'),(30558,38957,'_hero_style','field_62051d9dc5324'),(30559,38957,'hero_image_pos_x','right'),(30560,38957,'_hero_image_pos_x','field_62ec3d05390bb'),(30561,38957,'hero_image_pos_y','top'),(30562,38957,'_hero_image_pos_y','field_62ec3d05390bc'),(30563,38957,'hero_image_pos',''),(30564,38957,'_hero_image_pos','field_62ec3d05390ba'),(30565,38957,'hero_title','Biomechanics Education'),(30566,38957,'_hero_title','field_617571fe285e8'),(30567,38957,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(30568,38957,'_hero_text','field_6175723c285e9'),(30569,38957,'hero_actions','1'),(30570,38957,'_hero_actions','field_61757270285ea'),(30571,38957,'hero_icon',''),(30572,38957,'_hero_icon','field_61a6182199d03'),(30573,38957,'fft_hide_from_listings','0'),(30574,38957,'_fft_hide_from_listings','field_61f1320446ab2'),(30575,38957,'fft_page_format','default'),(30576,38957,'_fft_page_format','field_61ae213f1f218'),(30577,38957,'fft_hide_nav','0'),(30578,38957,'_fft_hide_nav','field_635bd5e43527c'),(30579,38957,'fft_hide_header_call_to_action','0'),(30580,38957,'_fft_hide_header_call_to_action','field_635bd6723527d'),(30581,38957,'fft_page_sitemap','0'),(30582,38957,'_fft_page_sitemap','field_61af9b34e8181'),(30583,38957,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:5:\"video\";i:2;s:5:\"cards\";}'),(30584,38957,'_blocks','field_6176696113096'),(30585,38957,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(30586,38957,'_hero_actions_0_button','field_61757281285eb'),(30587,38957,'_thumbnail_id','38951'),(30588,38957,'__thumbnail_id','field_617570855ddaf'),(30589,38957,'blocks_0_acfe_flexible_toggle',''),(30590,38957,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(30591,38957,'blocks_0_acfe_flexible_layout_title','Text Block'),(30592,38957,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(30593,38957,'blocks_0_options_theme','#ffffff'),(30594,38957,'_blocks_0_options_theme','field_6176830e2ad17'),(30595,38957,'blocks_0_options',''),(30596,38957,'_blocks_0_options','field_6176830e2ad16'),(30597,38957,'blocks_0_text_block_heading',''),(30598,38957,'_blocks_0_text_block_heading','field_617669d413097'),(30599,38957,'blocks_0_text_block_content','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(30600,38957,'_blocks_0_text_block_content','field_617669ec13098'),(30601,38957,'blocks_1_acfe_flexible_toggle',''),(30602,38957,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(30603,38957,'blocks_1_acfe_flexible_layout_title','Video'),(30604,38957,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(30605,38957,'blocks_1_size','full'),(30606,38957,'_blocks_1_size','field_6487038f297c1'),(30607,38957,'blocks_1_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(30608,38957,'_blocks_1_video_src','field_6193c4a98ec07'),(30609,38957,'blocks_1_video_thumbnail','38956'),(30610,38957,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(30611,38957,'blocks_2_acfe_flexible_toggle',''),(30612,38957,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(30613,38957,'blocks_2_acfe_flexible_layout_title','Cards'),(30614,38957,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(30615,38957,'blocks_2_options_theme','#ffffff'),(30616,38957,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(30617,38957,'blocks_2_options_format','carousel'),(30618,38957,'_blocks_2_options_format','field_617a7b15245b5'),(30619,38957,'blocks_2_options_style','default'),(30620,38957,'_blocks_2_options_style','field_6278ffb63484a'),(30621,38957,'blocks_2_options_cards_current_listing','0'),(30622,38957,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(30623,38957,'blocks_2_options_cards_content','custom'),(30624,38957,'_blocks_2_options_cards_content','field_617aba6122688'),(30625,38957,'blocks_2_options',''),(30626,38957,'_blocks_2_options','field_617a7b15245b3'),(30627,38957,'blocks_2_cards_custom_0_image',''),(30628,38957,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(30629,38957,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(30630,38957,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(30631,38957,'blocks_2_cards_custom_0_text','Enhance your personal training skills with our Biomechanics Coaching Diploma. Explore anatomy in greater depth, acquire effective techniques for rapid recovery, and optimise rehabilitation processes.'),(30632,38957,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(30633,38957,'blocks_2_cards_custom_0_link',''),(30634,38957,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(30635,38957,'blocks_2_cards_custom_1_image',''),(30636,38957,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(30637,38957,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(30638,38957,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(30639,38957,'blocks_2_cards_custom_1_text','Discover why understanding intrinsic biomechanics is essential for Pilates instructors: safer workouts, precise cues, and personalised sessions for optimal fitness and injury prevention.'),(30640,38957,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(30641,38957,'blocks_2_cards_custom_1_link',''),(30642,38957,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(30643,38957,'blocks_2_cards_custom_2_image',''),(30644,38957,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(30645,38957,'blocks_2_cards_custom_2_title','Biomechanics and SMT'),(30646,38957,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(30647,38957,'blocks_2_cards_custom_2_text','Explore why knowledge of intrinsic biomechanics is crucial for sports massage therapists: enhancing recovery, preventing injuries, and tailoring treatments for peak performance.'),(30648,38957,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(30649,38957,'blocks_2_cards_custom_2_link',''),(30650,38957,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(30651,38957,'blocks_2_cards_custom_3_image',''),(30652,38957,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(30653,38957,'blocks_2_cards_custom_3_title','Biomechanics and Clinicians'),(30654,38957,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(30655,38957,'blocks_2_cards_custom_3_text','Learn why understanding intrinsic biomechanics is vital for clinicians like podiatrists and physios: improving treatment precision, preventing injuries, and optimising patient recovery and performance.'),(30656,38957,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(30657,38957,'blocks_2_cards_custom_3_link',''),(30658,38957,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(30659,38957,'blocks_2_cards_custom_4_image',''),(30660,38957,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(30661,38957,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches'),(30662,38957,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(30663,38957,'blocks_2_cards_custom_4_text','Discover why understanding intrinsic biomechanics is essential for sports coaches: enhancing athletic performance, minimizing injury risks, and optimising training effectiveness.'),(30664,38957,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(30665,38957,'blocks_2_cards_custom_4_link',''),(30666,38957,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(30667,38957,'blocks_2_cards_custom_5_image',''),(30668,38957,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(30669,38957,'blocks_2_cards_custom_5_title','How to become a Biomechanics Coach'),(30670,38957,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(30671,38957,'blocks_2_cards_custom_5_text','Explore why understanding intrinsic biomechanics is crucial for aspiring biomechanics coaches: mastering movement mechanics, optimising athletic performance, and advancing injury prevention strategies.'),(30672,38957,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(30673,38957,'blocks_2_cards_custom_5_link',''),(30674,38957,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(30675,38957,'blocks_2_cards_custom','6'),(30676,38957,'_blocks_2_cards_custom','field_6194cbf84d386'),(30677,7,'_oembed_5e993ad5c29463aeb6392d185b91533a','{{unknown}}'),(30686,38958,'hero_style','default'),(30687,38958,'_hero_style','field_62051d9dc5324'),(30688,38958,'hero_image_pos_x','right'),(30689,38958,'_hero_image_pos_x','field_62ec3d05390bb'),(30690,38958,'hero_image_pos_y','top'),(30691,38958,'_hero_image_pos_y','field_62ec3d05390bc'),(30692,38958,'hero_image_pos',''),(30693,38958,'_hero_image_pos','field_62ec3d05390ba'),(30694,38958,'hero_title','Biomechanics Education'),(30695,38958,'_hero_title','field_617571fe285e8'),(30696,38958,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(30697,38958,'_hero_text','field_6175723c285e9'),(30698,38958,'hero_actions','1'),(30699,38958,'_hero_actions','field_61757270285ea'),(30700,38958,'hero_icon',''),(30701,38958,'_hero_icon','field_61a6182199d03'),(30702,38958,'fft_hide_from_listings','0'),(30703,38958,'_fft_hide_from_listings','field_61f1320446ab2'),(30704,38958,'fft_page_format','default'),(30705,38958,'_fft_page_format','field_61ae213f1f218'),(30706,38958,'fft_hide_nav','0'),(30707,38958,'_fft_hide_nav','field_635bd5e43527c'),(30708,38958,'fft_hide_header_call_to_action','0'),(30709,38958,'_fft_hide_header_call_to_action','field_635bd6723527d'),(30710,38958,'fft_page_sitemap','0'),(30711,38958,'_fft_page_sitemap','field_61af9b34e8181'),(30712,38958,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:5:\"video\";i:2;s:5:\"cards\";}'),(30713,38958,'_blocks','field_6176696113096'),(30714,38958,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(30715,38958,'_hero_actions_0_button','field_61757281285eb'),(30716,38958,'_thumbnail_id','38951'),(30717,38958,'__thumbnail_id','field_617570855ddaf'),(30718,38958,'blocks_0_acfe_flexible_toggle',''),(30719,38958,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(30720,38958,'blocks_0_acfe_flexible_layout_title','Text Block'),(30721,38958,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(30722,38958,'blocks_0_options_theme','#ffffff'),(30723,38958,'_blocks_0_options_theme','field_6176830e2ad17'),(30724,38958,'blocks_0_options',''),(30725,38958,'_blocks_0_options','field_6176830e2ad16'),(30726,38958,'blocks_0_text_block_heading',''),(30727,38958,'_blocks_0_text_block_heading','field_617669d413097'),(30728,38958,'blocks_0_text_block_content','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(30729,38958,'_blocks_0_text_block_content','field_617669ec13098'),(30730,38958,'blocks_1_acfe_flexible_toggle',''),(30731,38958,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(30732,38958,'blocks_1_acfe_flexible_layout_title','Video'),(30733,38958,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(30734,38958,'blocks_1_size','large'),(30735,38958,'_blocks_1_size','field_6487038f297c1'),(30736,38958,'blocks_1_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(30737,38958,'_blocks_1_video_src','field_6193c4a98ec07'),(30738,38958,'blocks_1_video_thumbnail','38956'),(30739,38958,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(30740,38958,'blocks_2_acfe_flexible_toggle',''),(30741,38958,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(30742,38958,'blocks_2_acfe_flexible_layout_title','Cards'),(30743,38958,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(30744,38958,'blocks_2_options_theme','#ffffff'),(30745,38958,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(30746,38958,'blocks_2_options_format','carousel'),(30747,38958,'_blocks_2_options_format','field_617a7b15245b5'),(30748,38958,'blocks_2_options_style','default'),(30749,38958,'_blocks_2_options_style','field_6278ffb63484a'),(30750,38958,'blocks_2_options_cards_current_listing','0'),(30751,38958,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(30752,38958,'blocks_2_options_cards_content','custom'),(30753,38958,'_blocks_2_options_cards_content','field_617aba6122688'),(30754,38958,'blocks_2_options',''),(30755,38958,'_blocks_2_options','field_617a7b15245b3'),(30756,38958,'blocks_2_cards_custom_0_image',''),(30757,38958,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(30758,38958,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(30759,38958,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(30760,38958,'blocks_2_cards_custom_0_text','Enhance your personal training skills with our Biomechanics Coaching Diploma. Explore anatomy in greater depth, acquire effective techniques for rapid recovery, and optimise rehabilitation processes.'),(30761,38958,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(30762,38958,'blocks_2_cards_custom_0_link',''),(30763,38958,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(30764,38958,'blocks_2_cards_custom_1_image',''),(30765,38958,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(30766,38958,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(30767,38958,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(30768,38958,'blocks_2_cards_custom_1_text','Discover why understanding intrinsic biomechanics is essential for Pilates instructors: safer workouts, precise cues, and personalised sessions for optimal fitness and injury prevention.'),(30769,38958,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(30770,38958,'blocks_2_cards_custom_1_link',''),(30771,38958,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(30772,38958,'blocks_2_cards_custom_2_image',''),(30773,38958,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(30774,38958,'blocks_2_cards_custom_2_title','Biomechanics and SMT'),(30775,38958,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(30776,38958,'blocks_2_cards_custom_2_text','Explore why knowledge of intrinsic biomechanics is crucial for sports massage therapists: enhancing recovery, preventing injuries, and tailoring treatments for peak performance.'),(30777,38958,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(30778,38958,'blocks_2_cards_custom_2_link',''),(30779,38958,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(30780,38958,'blocks_2_cards_custom_3_image',''),(30781,38958,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(30782,38958,'blocks_2_cards_custom_3_title','Biomechanics and Clinicians'),(30783,38958,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(30784,38958,'blocks_2_cards_custom_3_text','Learn why understanding intrinsic biomechanics is vital for clinicians like podiatrists and physios: improving treatment precision, preventing injuries, and optimising patient recovery and performance.'),(30785,38958,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(30786,38958,'blocks_2_cards_custom_3_link',''),(30787,38958,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(30788,38958,'blocks_2_cards_custom_4_image',''),(30789,38958,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(30790,38958,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches'),(30791,38958,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(30792,38958,'blocks_2_cards_custom_4_text','Discover why understanding intrinsic biomechanics is essential for sports coaches: enhancing athletic performance, minimizing injury risks, and optimising training effectiveness.'),(30793,38958,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(30794,38958,'blocks_2_cards_custom_4_link',''),(30795,38958,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(30796,38958,'blocks_2_cards_custom_5_image',''),(30797,38958,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(30798,38958,'blocks_2_cards_custom_5_title','How to become a Biomechanics Coach'),(30799,38958,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(30800,38958,'blocks_2_cards_custom_5_text','Explore why understanding intrinsic biomechanics is crucial for aspiring biomechanics coaches: mastering movement mechanics, optimising athletic performance, and advancing injury prevention strategies.'),(30801,38958,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(30802,38958,'blocks_2_cards_custom_5_link',''),(30803,38958,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(30804,38958,'blocks_2_cards_custom','6'),(30805,38958,'_blocks_2_cards_custom','field_6194cbf84d386'),(30806,38958,'blocks_1_row_content_title',''),(30807,38958,'_blocks_1_row_content_title','field_64870132a865d'),(30808,38958,'blocks_1_row_content_heading',''),(30809,38958,'_blocks_1_row_content_heading','field_64870142a865e'),(30810,38958,'blocks_1_row_content_text',''),(30811,38958,'_blocks_1_row_content_text','field_64870148a865f'),(30812,38958,'blocks_1_row_content',''),(30813,38958,'_blocks_1_row_content','field_6487008ba865c'),(30838,38959,'hero_style','default'),(30839,38959,'_hero_style','field_62051d9dc5324'),(30840,38959,'hero_image_pos_x','right'),(30841,38959,'_hero_image_pos_x','field_62ec3d05390bb'),(30842,38959,'hero_image_pos_y','top'),(30843,38959,'_hero_image_pos_y','field_62ec3d05390bc'),(30844,38959,'hero_image_pos',''),(30845,38959,'_hero_image_pos','field_62ec3d05390ba'),(30846,38959,'hero_title','Biomechanics Education'),(30847,38959,'_hero_title','field_617571fe285e8'),(30848,38959,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(30849,38959,'_hero_text','field_6175723c285e9'),(30850,38959,'hero_actions','1'),(30851,38959,'_hero_actions','field_61757270285ea'),(30852,38959,'hero_icon',''),(30853,38959,'_hero_icon','field_61a6182199d03'),(30854,38959,'fft_hide_from_listings','0'),(30855,38959,'_fft_hide_from_listings','field_61f1320446ab2'),(30856,38959,'fft_page_format','default'),(30857,38959,'_fft_page_format','field_61ae213f1f218'),(30858,38959,'fft_hide_nav','0'),(30859,38959,'_fft_hide_nav','field_635bd5e43527c'),(30860,38959,'fft_hide_header_call_to_action','0'),(30861,38959,'_fft_hide_header_call_to_action','field_635bd6723527d'),(30862,38959,'fft_page_sitemap','0'),(30863,38959,'_fft_page_sitemap','field_61af9b34e8181'),(30864,38959,'blocks','a:3:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:5:\"cards\";}'),(30865,38959,'_blocks','field_6176696113096'),(30866,38959,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(30867,38959,'_hero_actions_0_button','field_61757281285eb'),(30868,38959,'_thumbnail_id','38951'),(30869,38959,'__thumbnail_id','field_617570855ddaf'),(30870,38959,'blocks_1_acfe_flexible_toggle',''),(30871,38959,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(30872,38959,'blocks_1_acfe_flexible_layout_title','Video'),(30873,38959,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(30874,38959,'blocks_1_size','large'),(30875,38959,'_blocks_1_size','field_6487038f297c1'),(30876,38959,'blocks_1_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(30877,38959,'_blocks_1_video_src','field_6193c4a98ec07'),(30878,38959,'blocks_1_video_thumbnail','38956'),(30879,38959,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(30880,38959,'blocks_2_acfe_flexible_toggle',''),(30881,38959,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(30882,38959,'blocks_2_acfe_flexible_layout_title','Cards'),(30883,38959,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(30884,38959,'blocks_2_options_theme','#ffffff'),(30885,38959,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(30886,38959,'blocks_2_options_format','carousel'),(30887,38959,'_blocks_2_options_format','field_617a7b15245b5'),(30888,38959,'blocks_2_options_style','default'),(30889,38959,'_blocks_2_options_style','field_6278ffb63484a'),(30890,38959,'blocks_2_options_cards_current_listing','0'),(30891,38959,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(30892,38959,'blocks_2_options_cards_content','custom'),(30893,38959,'_blocks_2_options_cards_content','field_617aba6122688'),(30894,38959,'blocks_2_options',''),(30895,38959,'_blocks_2_options','field_617a7b15245b3'),(30896,38959,'blocks_2_cards_custom_0_image',''),(30897,38959,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(30898,38959,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(30899,38959,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(30900,38959,'blocks_2_cards_custom_0_text','Enhance your personal training skills with our Biomechanics Coaching Diploma. Explore anatomy in greater depth, acquire effective techniques for rapid recovery, and optimise rehabilitation processes.'),(30901,38959,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(30902,38959,'blocks_2_cards_custom_0_link',''),(30903,38959,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(30904,38959,'blocks_2_cards_custom_1_image',''),(30905,38959,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(30906,38959,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(30907,38959,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(30908,38959,'blocks_2_cards_custom_1_text','Discover why understanding intrinsic biomechanics is essential for Pilates instructors: safer workouts, precise cues, and personalised sessions for optimal fitness and injury prevention.'),(30909,38959,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(30910,38959,'blocks_2_cards_custom_1_link',''),(30911,38959,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(30912,38959,'blocks_2_cards_custom_2_image',''),(30913,38959,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(30914,38959,'blocks_2_cards_custom_2_title','Biomechanics and SMT'),(30915,38959,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(30916,38959,'blocks_2_cards_custom_2_text','Explore why knowledge of intrinsic biomechanics is crucial for sports massage therapists: enhancing recovery, preventing injuries, and tailoring treatments for peak performance.'),(30917,38959,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(30918,38959,'blocks_2_cards_custom_2_link',''),(30919,38959,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(30920,38959,'blocks_2_cards_custom_3_image',''),(30921,38959,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(30922,38959,'blocks_2_cards_custom_3_title','Biomechanics and Clinicians'),(30923,38959,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(30924,38959,'blocks_2_cards_custom_3_text','Learn why understanding intrinsic biomechanics is vital for clinicians like podiatrists and physios: improving treatment precision, preventing injuries, and optimising patient recovery and performance.'),(30925,38959,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(30926,38959,'blocks_2_cards_custom_3_link',''),(30927,38959,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(30928,38959,'blocks_2_cards_custom_4_image',''),(30929,38959,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(30930,38959,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches'),(30931,38959,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(30932,38959,'blocks_2_cards_custom_4_text','Discover why understanding intrinsic biomechanics is essential for sports coaches: enhancing athletic performance, minimizing injury risks, and optimising training effectiveness.'),(30933,38959,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(30934,38959,'blocks_2_cards_custom_4_link',''),(30935,38959,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(30936,38959,'blocks_2_cards_custom_5_image',''),(30937,38959,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(30938,38959,'blocks_2_cards_custom_5_title','How to become a Biomechanics Coach'),(30939,38959,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(30940,38959,'blocks_2_cards_custom_5_text','Explore why understanding intrinsic biomechanics is crucial for aspiring biomechanics coaches: mastering movement mechanics, optimising athletic performance, and advancing injury prevention strategies.'),(30941,38959,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(30942,38959,'blocks_2_cards_custom_5_link',''),(30943,38959,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(30944,38959,'blocks_2_cards_custom','6'),(30945,38959,'_blocks_2_cards_custom','field_6194cbf84d386'),(30946,38959,'blocks_1_row_content_title',''),(30947,38959,'_blocks_1_row_content_title','field_64870132a865d'),(30948,38959,'blocks_1_row_content_heading',''),(30949,38959,'_blocks_1_row_content_heading','field_64870142a865e'),(30950,38959,'blocks_1_row_content_text',''),(30951,38959,'_blocks_1_row_content_text','field_64870148a865f'),(30952,38959,'blocks_1_row_content',''),(30953,38959,'_blocks_1_row_content','field_6487008ba865c'),(30954,38959,'blocks_0_acfe_flexible_toggle',''),(30955,38959,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(30956,38959,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(30957,38959,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(30958,38959,'blocks_0_options_theme','#ffffff'),(30959,38959,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(30960,38959,'blocks_0_options_reverse','0'),(30961,38959,'_blocks_0_options_reverse','field_61768049bb8ac'),(30962,38959,'blocks_0_options',''),(30963,38959,'_blocks_0_options','field_617682517c334'),(30964,38959,'blocks_0_split_5050_image','38950'),(30965,38959,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(30966,38959,'blocks_0_split_5050_video',''),(30967,38959,'_blocks_0_split_5050_video','field_6239f3160848a'),(30968,38959,'blocks_0_split_5050_content_title',''),(30969,38959,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(30970,38959,'blocks_0_split_5050_content_heading','What is Biomechanics Education ?'),(30971,38959,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(30972,38959,'blocks_0_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(30973,38959,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(30974,38959,'blocks_0_split_5050_content_actions',''),(30975,38959,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(30976,38959,'blocks_0_split_5050_content',''),(30977,38959,'_blocks_0_split_5050_content','field_61767afceb8ba'),(30978,38960,'_wp_attached_file','2024/07/Rob-and-Rachel-shaking-hands-at-a-partership-kiosk.png'),(30979,38960,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:552;s:6:\"height\";i:366;s:4:\"file\";s:62:\"2024/07/Rob-and-Rachel-shaking-hands-at-a-partership-kiosk.png\";s:8:\"filesize\";i:320159;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Rob-and-Rachel-shaking-hands-at-a-partership-kiosk-400x265.png\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173519;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:62:\"Rob-and-Rachel-shaking-hands-at-a-partership-kiosk-400x366.png\";s:5:\"width\";i:400;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:243273;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:62:\"Rob-and-Rachel-shaking-hands-at-a-partership-kiosk-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174137;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:62:\"Rob-and-Rachel-shaking-hands-at-a-partership-kiosk-300x366.png\";s:5:\"width\";i:300;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183045;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:62:\"Rob-and-Rachel-shaking-hands-at-a-partership-kiosk-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:194610;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:62:\"Rob-and-Rachel-shaking-hands-at-a-partership-kiosk-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155851;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(31004,38961,'hero_style','default'),(31005,38961,'_hero_style','field_62051d9dc5324'),(31006,38961,'hero_image_pos_x','right'),(31007,38961,'_hero_image_pos_x','field_62ec3d05390bb'),(31008,38961,'hero_image_pos_y','top'),(31009,38961,'_hero_image_pos_y','field_62ec3d05390bc'),(31010,38961,'hero_image_pos',''),(31011,38961,'_hero_image_pos','field_62ec3d05390ba'),(31012,38961,'hero_title','Biomechanics Education'),(31013,38961,'_hero_title','field_617571fe285e8'),(31014,38961,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(31015,38961,'_hero_text','field_6175723c285e9'),(31016,38961,'hero_actions','1'),(31017,38961,'_hero_actions','field_61757270285ea'),(31018,38961,'hero_icon',''),(31019,38961,'_hero_icon','field_61a6182199d03'),(31020,38961,'fft_hide_from_listings','0'),(31021,38961,'_fft_hide_from_listings','field_61f1320446ab2'),(31022,38961,'fft_page_format','default'),(31023,38961,'_fft_page_format','field_61ae213f1f218'),(31024,38961,'fft_hide_nav','0'),(31025,38961,'_fft_hide_nav','field_635bd5e43527c'),(31026,38961,'fft_hide_header_call_to_action','0'),(31027,38961,'_fft_hide_header_call_to_action','field_635bd6723527d'),(31028,38961,'fft_page_sitemap','0'),(31029,38961,'_fft_page_sitemap','field_61af9b34e8181'),(31030,38961,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:5:\"cards\";i:3;s:10:\"split_5050\";}'),(31031,38961,'_blocks','field_6176696113096'),(31032,38961,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(31033,38961,'_hero_actions_0_button','field_61757281285eb'),(31034,38961,'_thumbnail_id','38951'),(31035,38961,'__thumbnail_id','field_617570855ddaf'),(31036,38961,'blocks_1_acfe_flexible_toggle',''),(31037,38961,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(31038,38961,'blocks_1_acfe_flexible_layout_title','Video'),(31039,38961,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(31040,38961,'blocks_1_size','large'),(31041,38961,'_blocks_1_size','field_6487038f297c1'),(31042,38961,'blocks_1_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(31043,38961,'_blocks_1_video_src','field_6193c4a98ec07'),(31044,38961,'blocks_1_video_thumbnail','38956'),(31045,38961,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(31046,38961,'blocks_2_acfe_flexible_toggle',''),(31047,38961,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(31048,38961,'blocks_2_acfe_flexible_layout_title','Cards'),(31049,38961,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(31050,38961,'blocks_2_options_theme','#ffffff'),(31051,38961,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(31052,38961,'blocks_2_options_format','carousel'),(31053,38961,'_blocks_2_options_format','field_617a7b15245b5'),(31054,38961,'blocks_2_options_style','default'),(31055,38961,'_blocks_2_options_style','field_6278ffb63484a'),(31056,38961,'blocks_2_options_cards_current_listing','0'),(31057,38961,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(31058,38961,'blocks_2_options_cards_content','custom'),(31059,38961,'_blocks_2_options_cards_content','field_617aba6122688'),(31060,38961,'blocks_2_options',''),(31061,38961,'_blocks_2_options','field_617a7b15245b3'),(31062,38961,'blocks_2_cards_custom_0_image',''),(31063,38961,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(31064,38961,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(31065,38961,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(31066,38961,'blocks_2_cards_custom_0_text','Enhance your personal training skills with our Biomechanics Coaching Diploma. Explore anatomy in greater depth, acquire effective techniques for rapid recovery, and optimise rehabilitation processes.'),(31067,38961,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(31068,38961,'blocks_2_cards_custom_0_link',''),(31069,38961,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(31070,38961,'blocks_2_cards_custom_1_image',''),(31071,38961,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(31072,38961,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(31073,38961,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(31074,38961,'blocks_2_cards_custom_1_text','Discover why understanding intrinsic biomechanics is essential for Pilates instructors: safer workouts, precise cues, and personalised sessions for optimal fitness and injury prevention.'),(31075,38961,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(31076,38961,'blocks_2_cards_custom_1_link',''),(31077,38961,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(31078,38961,'blocks_2_cards_custom_2_image',''),(31079,38961,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(31080,38961,'blocks_2_cards_custom_2_title','Biomechanics and SMT'),(31081,38961,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(31082,38961,'blocks_2_cards_custom_2_text','Explore why knowledge of intrinsic biomechanics is crucial for sports massage therapists: enhancing recovery, preventing injuries, and tailoring treatments for peak performance.'),(31083,38961,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(31084,38961,'blocks_2_cards_custom_2_link',''),(31085,38961,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(31086,38961,'blocks_2_cards_custom_3_image',''),(31087,38961,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(31088,38961,'blocks_2_cards_custom_3_title','Biomechanics and Clinicians'),(31089,38961,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(31090,38961,'blocks_2_cards_custom_3_text','Learn why understanding intrinsic biomechanics is vital for clinicians like podiatrists and physios: improving treatment precision, preventing injuries, and optimising patient recovery and performance.'),(31091,38961,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(31092,38961,'blocks_2_cards_custom_3_link',''),(31093,38961,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(31094,38961,'blocks_2_cards_custom_4_image',''),(31095,38961,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(31096,38961,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches'),(31097,38961,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(31098,38961,'blocks_2_cards_custom_4_text','Discover why understanding intrinsic biomechanics is essential for sports coaches: enhancing athletic performance, minimizing injury risks, and optimising training effectiveness.'),(31099,38961,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(31100,38961,'blocks_2_cards_custom_4_link',''),(31101,38961,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(31102,38961,'blocks_2_cards_custom_5_image',''),(31103,38961,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(31104,38961,'blocks_2_cards_custom_5_title','How to become a Biomechanics Coach'),(31105,38961,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(31106,38961,'blocks_2_cards_custom_5_text','Explore why understanding intrinsic biomechanics is crucial for aspiring biomechanics coaches: mastering movement mechanics, optimising athletic performance, and advancing injury prevention strategies.'),(31107,38961,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(31108,38961,'blocks_2_cards_custom_5_link',''),(31109,38961,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(31110,38961,'blocks_2_cards_custom','6'),(31111,38961,'_blocks_2_cards_custom','field_6194cbf84d386'),(31112,38961,'blocks_1_row_content_title',''),(31113,38961,'_blocks_1_row_content_title','field_64870132a865d'),(31114,38961,'blocks_1_row_content_heading',''),(31115,38961,'_blocks_1_row_content_heading','field_64870142a865e'),(31116,38961,'blocks_1_row_content_text',''),(31117,38961,'_blocks_1_row_content_text','field_64870148a865f'),(31118,38961,'blocks_1_row_content',''),(31119,38961,'_blocks_1_row_content','field_6487008ba865c'),(31120,38961,'blocks_0_acfe_flexible_toggle',''),(31121,38961,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(31122,38961,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(31123,38961,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(31124,38961,'blocks_0_options_theme','#ffffff'),(31125,38961,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(31126,38961,'blocks_0_options_reverse','0'),(31127,38961,'_blocks_0_options_reverse','field_61768049bb8ac'),(31128,38961,'blocks_0_options',''),(31129,38961,'_blocks_0_options','field_617682517c334'),(31130,38961,'blocks_0_split_5050_image','38950'),(31131,38961,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(31132,38961,'blocks_0_split_5050_video',''),(31133,38961,'_blocks_0_split_5050_video','field_6239f3160848a'),(31134,38961,'blocks_0_split_5050_content_title',''),(31135,38961,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(31136,38961,'blocks_0_split_5050_content_heading','What is Biomechanics Education ?'),(31137,38961,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(31138,38961,'blocks_0_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(31139,38961,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(31140,38961,'blocks_0_split_5050_content_actions',''),(31141,38961,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(31142,38961,'blocks_0_split_5050_content',''),(31143,38961,'_blocks_0_split_5050_content','field_61767afceb8ba'),(31144,38961,'blocks_3_acfe_flexible_toggle',''),(31145,38961,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(31146,38961,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(31147,38961,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(31148,38961,'blocks_3_options_theme','#ffffff'),(31149,38961,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(31150,38961,'blocks_3_options_reverse','0'),(31151,38961,'_blocks_3_options_reverse','field_61768049bb8ac'),(31152,38961,'blocks_3_options',''),(31153,38961,'_blocks_3_options','field_617682517c334'),(31154,38961,'blocks_3_split_5050_image','38960'),(31155,38961,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(31156,38961,'blocks_3_split_5050_video',''),(31157,38961,'_blocks_3_split_5050_video','field_6239f3160848a'),(31158,38961,'blocks_3_split_5050_content_title','Working In Partnership'),(31159,38961,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(31160,38961,'blocks_3_split_5050_content_heading','Biomechanics Education and Future Fit'),(31161,38961,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(31162,38961,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(31163,38961,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(31164,38961,'blocks_3_split_5050_content_actions',''),(31165,38961,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(31166,38961,'blocks_3_split_5050_content',''),(31167,38961,'_blocks_3_split_5050_content','field_61767afceb8ba'),(31207,38964,'_edit_lock','1739188231:17'),(31208,38964,'_edit_last','17'),(31209,38964,'hero_style','default'),(31210,38964,'_hero_style','field_62051d9dc5324'),(31212,38964,'__thumbnail_id','field_617570855ddaf'),(31213,38964,'hero_image_pos_x','right'),(31214,38964,'_hero_image_pos_x','field_62ec3d05390bb'),(31215,38964,'hero_image_pos_y','top'),(31216,38964,'_hero_image_pos_y','field_62ec3d05390bc'),(31217,38964,'hero_image_pos',''),(31218,38964,'_hero_image_pos','field_62ec3d05390ba'),(31219,38964,'hero_title',''),(31220,38964,'_hero_title','field_617571fe285e8'),(31221,38964,'hero_text','It was everything I was hoping for and really helped me understand why current training systems aren\'t working as they should be.  '),(31222,38964,'_hero_text','field_6175723c285e9'),(31223,38964,'hero_actions',''),(31224,38964,'_hero_actions','field_61757270285ea'),(31225,38964,'hero_icon',''),(31226,38964,'_hero_icon','field_61a6182199d03'),(31239,38964,'blocks',''),(31240,38964,'_blocks','field_6176696113096'),(31241,38964,'testimonial_quote','It was everything I was hoping for and really helped me understand why current training systems aren\'t working as they should be.  '),(31242,38964,'_testimonial_quote','field_61812ae117979'),(31243,38964,'testimonial_image','40964'),(31244,38964,'_testimonial_image','field_61812af71797a'),(31245,38965,'_edit_lock','1739188231:17'),(31246,38965,'_edit_last','17'),(31247,38965,'hero_style','default'),(31248,38965,'_hero_style','field_62051d9dc5324'),(31250,38965,'__thumbnail_id','field_617570855ddaf'),(31251,38965,'hero_image_pos_x','right'),(31252,38965,'_hero_image_pos_x','field_62ec3d05390bb'),(31253,38965,'hero_image_pos_y','top'),(31254,38965,'_hero_image_pos_y','field_62ec3d05390bc'),(31255,38965,'hero_image_pos',''),(31256,38965,'_hero_image_pos','field_62ec3d05390ba'),(31257,38965,'hero_title',''),(31258,38965,'_hero_title','field_617571fe285e8'),(31259,38965,'hero_text','I loved every aspect of the Diploma in Biomechanics Coaching Course! Rachel is one of the best teachers I’ve come across'),(31260,38965,'_hero_text','field_6175723c285e9'),(31261,38965,'hero_actions',''),(31262,38965,'_hero_actions','field_61757270285ea'),(31263,38965,'hero_icon',''),(31264,38965,'_hero_icon','field_61a6182199d03'),(31277,38965,'blocks',''),(31278,38965,'_blocks','field_6176696113096'),(31279,38965,'testimonial_quote','I loved every aspect of the Diploma in Biomechanics Coaching Course! Rachel is one of the best teachers I’ve come across'),(31280,38965,'_testimonial_quote','field_61812ae117979'),(31281,38965,'testimonial_image','40963'),(31282,38965,'_testimonial_image','field_61812af71797a'),(31301,38966,'hero_style','default'),(31302,38966,'_hero_style','field_62051d9dc5324'),(31303,38966,'hero_image_pos_x','right'),(31304,38966,'_hero_image_pos_x','field_62ec3d05390bb'),(31305,38966,'hero_image_pos_y','top'),(31306,38966,'_hero_image_pos_y','field_62ec3d05390bc'),(31307,38966,'hero_image_pos',''),(31308,38966,'_hero_image_pos','field_62ec3d05390ba'),(31309,38966,'hero_title','Biomechanics Education'),(31310,38966,'_hero_title','field_617571fe285e8'),(31311,38966,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(31312,38966,'_hero_text','field_6175723c285e9'),(31313,38966,'hero_actions','1'),(31314,38966,'_hero_actions','field_61757270285ea'),(31315,38966,'hero_icon',''),(31316,38966,'_hero_icon','field_61a6182199d03'),(31317,38966,'fft_hide_from_listings','0'),(31318,38966,'_fft_hide_from_listings','field_61f1320446ab2'),(31319,38966,'fft_page_format','default'),(31320,38966,'_fft_page_format','field_61ae213f1f218'),(31321,38966,'fft_hide_nav','0'),(31322,38966,'_fft_hide_nav','field_635bd5e43527c'),(31323,38966,'fft_hide_header_call_to_action','0'),(31324,38966,'_fft_hide_header_call_to_action','field_635bd6723527d'),(31325,38966,'fft_page_sitemap','0'),(31326,38966,'_fft_page_sitemap','field_61af9b34e8181'),(31327,38966,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:5:\"cards\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(31328,38966,'_blocks','field_6176696113096'),(31329,38966,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(31330,38966,'_hero_actions_0_button','field_61757281285eb'),(31331,38966,'_thumbnail_id','38951'),(31332,38966,'__thumbnail_id','field_617570855ddaf'),(31333,38966,'blocks_1_acfe_flexible_toggle',''),(31334,38966,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(31335,38966,'blocks_1_acfe_flexible_layout_title','Video'),(31336,38966,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(31337,38966,'blocks_1_size','large'),(31338,38966,'_blocks_1_size','field_6487038f297c1'),(31339,38966,'blocks_1_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(31340,38966,'_blocks_1_video_src','field_6193c4a98ec07'),(31341,38966,'blocks_1_video_thumbnail','38956'),(31342,38966,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(31343,38966,'blocks_2_acfe_flexible_toggle',''),(31344,38966,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(31345,38966,'blocks_2_acfe_flexible_layout_title','Cards'),(31346,38966,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(31347,38966,'blocks_2_options_theme','#ffffff'),(31348,38966,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(31349,38966,'blocks_2_options_format','carousel'),(31350,38966,'_blocks_2_options_format','field_617a7b15245b5'),(31351,38966,'blocks_2_options_style','default'),(31352,38966,'_blocks_2_options_style','field_6278ffb63484a'),(31353,38966,'blocks_2_options_cards_current_listing','0'),(31354,38966,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(31355,38966,'blocks_2_options_cards_content','custom'),(31356,38966,'_blocks_2_options_cards_content','field_617aba6122688'),(31357,38966,'blocks_2_options',''),(31358,38966,'_blocks_2_options','field_617a7b15245b3'),(31359,38966,'blocks_2_cards_custom_0_image',''),(31360,38966,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(31361,38966,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(31362,38966,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(31363,38966,'blocks_2_cards_custom_0_text','Enhance your personal training skills with our Biomechanics Coaching Diploma. Explore anatomy in greater depth, acquire effective techniques for rapid recovery, and optimise rehabilitation processes.'),(31364,38966,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(31365,38966,'blocks_2_cards_custom_0_link',''),(31366,38966,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(31367,38966,'blocks_2_cards_custom_1_image',''),(31368,38966,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(31369,38966,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(31370,38966,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(31371,38966,'blocks_2_cards_custom_1_text','Discover why understanding intrinsic biomechanics is essential for Pilates instructors: safer workouts, precise cues, and personalised sessions for optimal fitness and injury prevention.'),(31372,38966,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(31373,38966,'blocks_2_cards_custom_1_link',''),(31374,38966,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(31375,38966,'blocks_2_cards_custom_2_image',''),(31376,38966,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(31377,38966,'blocks_2_cards_custom_2_title','Biomechanics and SMT'),(31378,38966,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(31379,38966,'blocks_2_cards_custom_2_text','Explore why knowledge of intrinsic biomechanics is crucial for sports massage therapists: enhancing recovery, preventing injuries, and tailoring treatments for peak performance.'),(31380,38966,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(31381,38966,'blocks_2_cards_custom_2_link',''),(31382,38966,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(31383,38966,'blocks_2_cards_custom_3_image',''),(31384,38966,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(31385,38966,'blocks_2_cards_custom_3_title','Biomechanics and Clinicians'),(31386,38966,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(31387,38966,'blocks_2_cards_custom_3_text','Learn why understanding intrinsic biomechanics is vital for clinicians like podiatrists and physios: improving treatment precision, preventing injuries, and optimising patient recovery and performance.'),(31388,38966,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(31389,38966,'blocks_2_cards_custom_3_link',''),(31390,38966,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(31391,38966,'blocks_2_cards_custom_4_image',''),(31392,38966,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(31393,38966,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches'),(31394,38966,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(31395,38966,'blocks_2_cards_custom_4_text','Discover why understanding intrinsic biomechanics is essential for sports coaches: enhancing athletic performance, minimizing injury risks, and optimising training effectiveness.'),(31396,38966,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(31397,38966,'blocks_2_cards_custom_4_link',''),(31398,38966,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(31399,38966,'blocks_2_cards_custom_5_image',''),(31400,38966,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(31401,38966,'blocks_2_cards_custom_5_title','How to become a Biomechanics Coach'),(31402,38966,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(31403,38966,'blocks_2_cards_custom_5_text','Explore why understanding intrinsic biomechanics is crucial for aspiring biomechanics coaches: mastering movement mechanics, optimising athletic performance, and advancing injury prevention strategies.'),(31404,38966,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(31405,38966,'blocks_2_cards_custom_5_link',''),(31406,38966,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(31407,38966,'blocks_2_cards_custom','6'),(31408,38966,'_blocks_2_cards_custom','field_6194cbf84d386'),(31409,38966,'blocks_1_row_content_title',''),(31410,38966,'_blocks_1_row_content_title','field_64870132a865d'),(31411,38966,'blocks_1_row_content_heading',''),(31412,38966,'_blocks_1_row_content_heading','field_64870142a865e'),(31413,38966,'blocks_1_row_content_text',''),(31414,38966,'_blocks_1_row_content_text','field_64870148a865f'),(31415,38966,'blocks_1_row_content',''),(31416,38966,'_blocks_1_row_content','field_6487008ba865c'),(31417,38966,'blocks_0_acfe_flexible_toggle',''),(31418,38966,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(31419,38966,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(31420,38966,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(31421,38966,'blocks_0_options_theme','#ffffff'),(31422,38966,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(31423,38966,'blocks_0_options_reverse','0'),(31424,38966,'_blocks_0_options_reverse','field_61768049bb8ac'),(31425,38966,'blocks_0_options',''),(31426,38966,'_blocks_0_options','field_617682517c334'),(31427,38966,'blocks_0_split_5050_image','38950'),(31428,38966,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(31429,38966,'blocks_0_split_5050_video',''),(31430,38966,'_blocks_0_split_5050_video','field_6239f3160848a'),(31431,38966,'blocks_0_split_5050_content_title',''),(31432,38966,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(31433,38966,'blocks_0_split_5050_content_heading','What is Biomechanics Education ?'),(31434,38966,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(31435,38966,'blocks_0_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(31436,38966,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(31437,38966,'blocks_0_split_5050_content_actions',''),(31438,38966,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(31439,38966,'blocks_0_split_5050_content',''),(31440,38966,'_blocks_0_split_5050_content','field_61767afceb8ba'),(31441,38966,'blocks_3_acfe_flexible_toggle',''),(31442,38966,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(31443,38966,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(31444,38966,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(31445,38966,'blocks_3_options_theme','#ffffff'),(31446,38966,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(31447,38966,'blocks_3_options_reverse','0'),(31448,38966,'_blocks_3_options_reverse','field_61768049bb8ac'),(31449,38966,'blocks_3_options',''),(31450,38966,'_blocks_3_options','field_617682517c334'),(31451,38966,'blocks_3_split_5050_image','38960'),(31452,38966,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(31453,38966,'blocks_3_split_5050_video',''),(31454,38966,'_blocks_3_split_5050_video','field_6239f3160848a'),(31455,38966,'blocks_3_split_5050_content_title','Working In Partnership'),(31456,38966,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(31457,38966,'blocks_3_split_5050_content_heading','Biomechanics Education and Future Fit'),(31458,38966,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(31459,38966,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(31460,38966,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(31461,38966,'blocks_3_split_5050_content_actions',''),(31462,38966,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(31463,38966,'blocks_3_split_5050_content',''),(31464,38966,'_blocks_3_split_5050_content','field_61767afceb8ba'),(31465,38966,'blocks_4_acfe_flexible_toggle',''),(31466,38966,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(31467,38966,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(31468,38966,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(31469,38966,'blocks_4_testimonial_slider_content_title',''),(31470,38966,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(31471,38966,'blocks_4_testimonial_slider_content_heading','Testimonials'),(31472,38966,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(31473,38966,'blocks_4_testimonial_slider_content_text',''),(31474,38966,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(31475,38966,'blocks_4_testimonial_slider_content_actions',''),(31476,38966,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(31477,38966,'blocks_4_testimonial_slider_content',''),(31478,38966,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(31479,38966,'blocks_4_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(31480,38966,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(31481,38966,'blocks_4_testimonial_slider_ambassador_bool','0'),(31482,38966,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(31885,38969,'hero_style','default'),(31886,38969,'_hero_style','field_62051d9dc5324'),(31887,38969,'hero_image_pos_x','right'),(31888,38969,'_hero_image_pos_x','field_62ec3d05390bb'),(31889,38969,'hero_image_pos_y','top'),(31890,38969,'_hero_image_pos_y','field_62ec3d05390bc'),(31891,38969,'hero_image_pos',''),(31892,38969,'_hero_image_pos','field_62ec3d05390ba'),(31893,38969,'hero_title','Biomechanics Education'),(31894,38969,'_hero_title','field_617571fe285e8'),(31895,38969,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(31896,38969,'_hero_text','field_6175723c285e9'),(31897,38969,'hero_actions','1'),(31898,38969,'_hero_actions','field_61757270285ea'),(31899,38969,'hero_icon',''),(31900,38969,'_hero_icon','field_61a6182199d03'),(31901,38969,'fft_hide_from_listings','0'),(31902,38969,'_fft_hide_from_listings','field_61f1320446ab2'),(31903,38969,'fft_page_format','default'),(31904,38969,'_fft_page_format','field_61ae213f1f218'),(31905,38969,'fft_hide_nav','0'),(31906,38969,'_fft_hide_nav','field_635bd5e43527c'),(31907,38969,'fft_hide_header_call_to_action','0'),(31908,38969,'_fft_hide_header_call_to_action','field_635bd6723527d'),(31909,38969,'fft_page_sitemap','0'),(31910,38969,'_fft_page_sitemap','field_61af9b34e8181'),(31911,38969,'blocks','a:6:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:5:\"cards\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";i:5;s:10:\"accordions\";}'),(31912,38969,'_blocks','field_6176696113096'),(31913,38969,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(31914,38969,'_hero_actions_0_button','field_61757281285eb'),(31915,38969,'_thumbnail_id','38951'),(31916,38969,'__thumbnail_id','field_617570855ddaf'),(31917,38969,'blocks_1_acfe_flexible_toggle',''),(31918,38969,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(31919,38969,'blocks_1_acfe_flexible_layout_title','Video'),(31920,38969,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(31921,38969,'blocks_1_size','large'),(31922,38969,'_blocks_1_size','field_6487038f297c1'),(31923,38969,'blocks_1_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(31924,38969,'_blocks_1_video_src','field_6193c4a98ec07'),(31925,38969,'blocks_1_video_thumbnail','38956'),(31926,38969,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(31927,38969,'blocks_2_acfe_flexible_toggle',''),(31928,38969,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(31929,38969,'blocks_2_acfe_flexible_layout_title','Cards'),(31930,38969,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(31931,38969,'blocks_2_options_theme','#ffffff'),(31932,38969,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(31933,38969,'blocks_2_options_format','carousel'),(31934,38969,'_blocks_2_options_format','field_617a7b15245b5'),(31935,38969,'blocks_2_options_style','default'),(31936,38969,'_blocks_2_options_style','field_6278ffb63484a'),(31937,38969,'blocks_2_options_cards_current_listing','0'),(31938,38969,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(31939,38969,'blocks_2_options_cards_content','custom'),(31940,38969,'_blocks_2_options_cards_content','field_617aba6122688'),(31941,38969,'blocks_2_options',''),(31942,38969,'_blocks_2_options','field_617a7b15245b3'),(31943,38969,'blocks_2_cards_custom_0_image',''),(31944,38969,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(31945,38969,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(31946,38969,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(31947,38969,'blocks_2_cards_custom_0_text','Enhance your personal training skills with our Biomechanics Coaching Diploma. Explore anatomy in greater depth, acquire effective techniques for rapid recovery, and optimise rehabilitation processes.'),(31948,38969,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(31949,38969,'blocks_2_cards_custom_0_link',''),(31950,38969,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(31951,38969,'blocks_2_cards_custom_1_image',''),(31952,38969,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(31953,38969,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(31954,38969,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(31955,38969,'blocks_2_cards_custom_1_text','Discover why understanding intrinsic biomechanics is essential for Pilates instructors: safer workouts, precise cues, and personalised sessions for optimal fitness and injury prevention.'),(31956,38969,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(31957,38969,'blocks_2_cards_custom_1_link',''),(31958,38969,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(31959,38969,'blocks_2_cards_custom_2_image',''),(31960,38969,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(31961,38969,'blocks_2_cards_custom_2_title','Biomechanics and SMT'),(31962,38969,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(31963,38969,'blocks_2_cards_custom_2_text','Explore why knowledge of intrinsic biomechanics is crucial for sports massage therapists: enhancing recovery, preventing injuries, and tailoring treatments for peak performance.'),(31964,38969,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(31965,38969,'blocks_2_cards_custom_2_link',''),(31966,38969,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(31967,38969,'blocks_2_cards_custom_3_image',''),(31968,38969,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(31969,38969,'blocks_2_cards_custom_3_title','Biomechanics and Clinicians'),(31970,38969,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(31971,38969,'blocks_2_cards_custom_3_text','Learn why understanding intrinsic biomechanics is vital for clinicians like podiatrists and physios: improving treatment precision, preventing injuries, and optimising patient recovery and performance.'),(31972,38969,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(31973,38969,'blocks_2_cards_custom_3_link',''),(31974,38969,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(31975,38969,'blocks_2_cards_custom_4_image',''),(31976,38969,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(31977,38969,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches'),(31978,38969,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(31979,38969,'blocks_2_cards_custom_4_text','Discover why understanding intrinsic biomechanics is essential for sports coaches: enhancing athletic performance, minimizing injury risks, and optimising training effectiveness.'),(31980,38969,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(31981,38969,'blocks_2_cards_custom_4_link',''),(31982,38969,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(31983,38969,'blocks_2_cards_custom_5_image',''),(31984,38969,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(31985,38969,'blocks_2_cards_custom_5_title','How to become a Biomechanics Coach'),(31986,38969,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(31987,38969,'blocks_2_cards_custom_5_text','Explore why understanding intrinsic biomechanics is crucial for aspiring biomechanics coaches: mastering movement mechanics, optimising athletic performance, and advancing injury prevention strategies.'),(31988,38969,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(31989,38969,'blocks_2_cards_custom_5_link',''),(31990,38969,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(31991,38969,'blocks_2_cards_custom','6'),(31992,38969,'_blocks_2_cards_custom','field_6194cbf84d386'),(31993,38969,'blocks_1_row_content_title',''),(31994,38969,'_blocks_1_row_content_title','field_64870132a865d'),(31995,38969,'blocks_1_row_content_heading',''),(31996,38969,'_blocks_1_row_content_heading','field_64870142a865e'),(31997,38969,'blocks_1_row_content_text',''),(31998,38969,'_blocks_1_row_content_text','field_64870148a865f'),(31999,38969,'blocks_1_row_content',''),(32000,38969,'_blocks_1_row_content','field_6487008ba865c'),(32001,38969,'blocks_0_acfe_flexible_toggle',''),(32002,38969,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(32003,38969,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(32004,38969,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(32005,38969,'blocks_0_options_theme','#ffffff'),(32006,38969,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(32007,38969,'blocks_0_options_reverse','0'),(32008,38969,'_blocks_0_options_reverse','field_61768049bb8ac'),(32009,38969,'blocks_0_options',''),(32010,38969,'_blocks_0_options','field_617682517c334'),(32011,38969,'blocks_0_split_5050_image','38950'),(32012,38969,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(32013,38969,'blocks_0_split_5050_video',''),(32014,38969,'_blocks_0_split_5050_video','field_6239f3160848a'),(32015,38969,'blocks_0_split_5050_content_title',''),(32016,38969,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(32017,38969,'blocks_0_split_5050_content_heading','What is Biomechanics Education ?'),(32018,38969,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(32019,38969,'blocks_0_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(32020,38969,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(32021,38969,'blocks_0_split_5050_content_actions',''),(32022,38969,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(32023,38969,'blocks_0_split_5050_content',''),(32024,38969,'_blocks_0_split_5050_content','field_61767afceb8ba'),(32025,38969,'blocks_3_acfe_flexible_toggle',''),(32026,38969,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(32027,38969,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(32028,38969,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(32029,38969,'blocks_3_options_theme','#ffffff'),(32030,38969,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(32031,38969,'blocks_3_options_reverse','0'),(32032,38969,'_blocks_3_options_reverse','field_61768049bb8ac'),(32033,38969,'blocks_3_options',''),(32034,38969,'_blocks_3_options','field_617682517c334'),(32035,38969,'blocks_3_split_5050_image','38960'),(32036,38969,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(32037,38969,'blocks_3_split_5050_video',''),(32038,38969,'_blocks_3_split_5050_video','field_6239f3160848a'),(32039,38969,'blocks_3_split_5050_content_title','Working In Partnership'),(32040,38969,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(32041,38969,'blocks_3_split_5050_content_heading','Biomechanics Education and Future Fit'),(32042,38969,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(32043,38969,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(32044,38969,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(32045,38969,'blocks_3_split_5050_content_actions',''),(32046,38969,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(32047,38969,'blocks_3_split_5050_content',''),(32048,38969,'_blocks_3_split_5050_content','field_61767afceb8ba'),(32049,38969,'blocks_4_acfe_flexible_toggle',''),(32050,38969,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(32051,38969,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(32052,38969,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(32053,38969,'blocks_4_testimonial_slider_content_title',''),(32054,38969,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(32055,38969,'blocks_4_testimonial_slider_content_heading','Testimonials'),(32056,38969,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(32057,38969,'blocks_4_testimonial_slider_content_text',''),(32058,38969,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(32059,38969,'blocks_4_testimonial_slider_content_actions',''),(32060,38969,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(32061,38969,'blocks_4_testimonial_slider_content',''),(32062,38969,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(32063,38969,'blocks_4_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(32064,38969,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(32065,38969,'blocks_4_testimonial_slider_ambassador_bool','0'),(32066,38969,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(32067,38969,'blocks_5_acfe_flexible_toggle',''),(32068,38969,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(32069,38969,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(32070,38969,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(32071,38969,'blocks_5_options_theme','#ffffff'),(32072,38969,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(32073,38969,'blocks_5_options_state','0'),(32074,38969,'_blocks_5_options_state','field_6239fcb7508c5'),(32075,38969,'blocks_5_options',''),(32076,38969,'_blocks_5_options','field_6177e2991ac44'),(32077,38969,'blocks_5_content_title',''),(32078,38969,'_blocks_5_content_title','field_64d237e8bb1e2'),(32079,38969,'blocks_5_content_heading','Testimonials'),(32080,38969,'_blocks_5_content_heading','field_64d237e8bb1e3'),(32081,38969,'blocks_5_content_text','<span class=\"TextRun SCXW190755261 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW190755261 BCX8\">“As a Biomechanics Coach I can make the ability to adapt and plan for my clients even more effective and try to reduce those niggles</span><span class=\"NormalTextRun SCXW190755261 BCX8\"> and aches </span><span class=\"NormalTextRun SCXW190755261 BCX8\">b</span><span class=\"NormalTextRun SCXW190755261 BCX8\">y focusing</span><span class=\"NormalTextRun SCXW190755261 BCX8\"> on moving with greater efficiency.”</span></span><span class=\"EOP SCXW190755261 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>'),(32082,38969,'_blocks_5_content_text','field_64d237e8bb1e4'),(32083,38969,'blocks_5_content_actions',''),(32084,38969,'_blocks_5_content_actions','field_64d237e8bb1e5'),(32085,38969,'blocks_5_content_align','left'),(32086,38969,'_blocks_5_content_align','field_64d2443e6b6aa'),(32087,38969,'blocks_5_content',''),(32088,38969,'_blocks_5_content','field_64d237e8bb1e1'),(32089,38969,'blocks_5_accordion_content','custom'),(32090,38969,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(32091,38969,'blocks_5_accordion_items_0_title',''),(32092,38969,'_blocks_5_accordion_items_0_title','field_6177e2991ac4d'),(32093,38969,'blocks_5_accordion_items_0_text','<span class=\"TextRun SCXW163927336 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW163927336 BCX8\">“Just a quick update really. Attended the </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW163927336 BCX8\">iMoveFreely</span><span class=\"NormalTextRun SCXW163927336 BCX8\"> workshop last year, sourced funding and set-up a ‘</span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW163927336 BCX8\">mobilise</span><span class=\"NormalTextRun SCXW163927336 BCX8\"> &amp; move’ class. A year later </span><span class=\"NormalTextRun SCXW163927336 BCX8\">we’re</span><span class=\"NormalTextRun SCXW163927336 BCX8\"> still going </span><span class=\"NormalTextRun SCXW163927336 BCX8\">strong,</span> <span class=\"NormalTextRun SCXW163927336 BCX8\">and </span><span class=\"NormalTextRun SCXW163927336 BCX8\">I\'m</span><span class=\"NormalTextRun SCXW163927336 BCX8\"> signed up to the Diploma in </span><span class=\"NormalTextRun SCXW163927336 BCX8\">Biomechanics</span><span class=\"NormalTextRun SCXW163927336 BCX8\"> Coaching starting in </span><span class=\"NormalTextRun SCXW163927336 BCX8\">September</span><span class=\"NormalTextRun SCXW163927336 BCX8\">. </span><span class=\"NormalTextRun SCXW163927336 BCX8\">Can’t</span><span class=\"NormalTextRun SCXW163927336 BCX8\"> wait to see what the future holds.”</span></span><span class=\"EOP SCXW163927336 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>'),(32094,38969,'_blocks_5_accordion_items_0_text','field_6177e2991ac4e'),(32095,38969,'blocks_5_accordion_items_1_title',''),(32096,38969,'_blocks_5_accordion_items_1_title','field_6177e2991ac4d'),(32097,38969,'blocks_5_accordion_items_1_text','<span class=\"TextRun SCXW51308647 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW51308647 BCX8\">“</span><span class=\"NormalTextRun SCXW51308647 BCX8\">I loved every aspect of the Diploma in Biomechanics Coaching Course! Rachel is </span><span class=\"NormalTextRun SCXW51308647 BCX8\">one of</span><span class=\"NormalTextRun SCXW51308647 BCX8\"> the best </span><span class=\"NormalTextRun SCXW51308647 BCX8\">teachers</span> <span class=\"NormalTextRun SCXW51308647 BCX8\">I’ve</span><span class=\"NormalTextRun SCXW51308647 BCX8\"> come across in my </span><span class=\"NormalTextRun SCXW51308647 BCX8\">career </span><span class=\"NormalTextRun SCXW51308647 BCX8\">as a </span><span class=\"NormalTextRun SCXW51308647 BCX8\">professional</span><span class=\"NormalTextRun SCXW51308647 BCX8\"> movement </span><span class=\"NormalTextRun SCXW51308647 BCX8\">specialist</span><span class=\"NormalTextRun SCXW51308647 BCX8\">. S</span><span class=\"NormalTextRun SCXW51308647 BCX8\">h</span><span class=\"NormalTextRun SCXW51308647 BCX8\">e teaches at a level that everyone can understand</span><span class=\"NormalTextRun SCXW51308647 BCX8\">, especially with some more challenging aspects of the course and empowers you </span><span class=\"NormalTextRun SCXW51308647 BCX8\">professionally</span><span class=\"NormalTextRun SCXW51308647 BCX8\"> and personally.”</span></span><span class=\"EOP SCXW51308647 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>'),(32098,38969,'_blocks_5_accordion_items_1_text','field_6177e2991ac4e'),(32099,38969,'blocks_5_accordion_items','2'),(32100,38969,'_blocks_5_accordion_items','field_6177e2991ac4c'),(32101,38969,'blocks_5_actions',''),(32102,38969,'_blocks_5_actions','field_61a746a817f7a'),(32103,38970,'hero_style','default'),(32104,38970,'_hero_style','field_62051d9dc5324'),(32105,38970,'hero_image_pos_x','right'),(32106,38970,'_hero_image_pos_x','field_62ec3d05390bb'),(32107,38970,'hero_image_pos_y','top'),(32108,38970,'_hero_image_pos_y','field_62ec3d05390bc'),(32109,38970,'hero_image_pos',''),(32110,38970,'_hero_image_pos','field_62ec3d05390ba'),(32111,38970,'hero_title','Biomechanics Education'),(32112,38970,'_hero_title','field_617571fe285e8'),(32113,38970,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(32114,38970,'_hero_text','field_6175723c285e9'),(32115,38970,'hero_actions','1'),(32116,38970,'_hero_actions','field_61757270285ea'),(32117,38970,'hero_icon',''),(32118,38970,'_hero_icon','field_61a6182199d03'),(32119,38970,'fft_hide_from_listings','0'),(32120,38970,'_fft_hide_from_listings','field_61f1320446ab2'),(32121,38970,'fft_page_format','default'),(32122,38970,'_fft_page_format','field_61ae213f1f218'),(32123,38970,'fft_hide_nav','0'),(32124,38970,'_fft_hide_nav','field_635bd5e43527c'),(32125,38970,'fft_hide_header_call_to_action','0'),(32126,38970,'_fft_hide_header_call_to_action','field_635bd6723527d'),(32127,38970,'fft_page_sitemap','0'),(32128,38970,'_fft_page_sitemap','field_61af9b34e8181'),(32129,38970,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:5:\"cards\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(32130,38970,'_blocks','field_6176696113096'),(32131,38970,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(32132,38970,'_hero_actions_0_button','field_61757281285eb'),(32133,38970,'_thumbnail_id','38951'),(32134,38970,'__thumbnail_id','field_617570855ddaf'),(32135,38970,'blocks_1_acfe_flexible_toggle',''),(32136,38970,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(32137,38970,'blocks_1_acfe_flexible_layout_title','Video'),(32138,38970,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(32139,38970,'blocks_1_size','large'),(32140,38970,'_blocks_1_size','field_6487038f297c1'),(32141,38970,'blocks_1_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(32142,38970,'_blocks_1_video_src','field_6193c4a98ec07'),(32143,38970,'blocks_1_video_thumbnail','38956'),(32144,38970,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(32145,38970,'blocks_2_acfe_flexible_toggle',''),(32146,38970,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(32147,38970,'blocks_2_acfe_flexible_layout_title','Cards'),(32148,38970,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(32149,38970,'blocks_2_options_theme','#ffffff'),(32150,38970,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(32151,38970,'blocks_2_options_format','carousel'),(32152,38970,'_blocks_2_options_format','field_617a7b15245b5'),(32153,38970,'blocks_2_options_style','default'),(32154,38970,'_blocks_2_options_style','field_6278ffb63484a'),(32155,38970,'blocks_2_options_cards_current_listing','0'),(32156,38970,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(32157,38970,'blocks_2_options_cards_content','custom'),(32158,38970,'_blocks_2_options_cards_content','field_617aba6122688'),(32159,38970,'blocks_2_options',''),(32160,38970,'_blocks_2_options','field_617a7b15245b3'),(32161,38970,'blocks_2_cards_custom_0_image',''),(32162,38970,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(32163,38970,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(32164,38970,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(32165,38970,'blocks_2_cards_custom_0_text','Enhance your personal training skills with our Biomechanics Coaching Diploma. Explore anatomy in greater depth, acquire effective techniques for rapid recovery, and optimise rehabilitation processes.'),(32166,38970,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(32167,38970,'blocks_2_cards_custom_0_link',''),(32168,38970,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(32169,38970,'blocks_2_cards_custom_1_image',''),(32170,38970,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(32171,38970,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(32172,38970,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(32173,38970,'blocks_2_cards_custom_1_text','Discover why understanding intrinsic biomechanics is essential for Pilates instructors: safer workouts, precise cues, and personalised sessions for optimal fitness and injury prevention.'),(32174,38970,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(32175,38970,'blocks_2_cards_custom_1_link',''),(32176,38970,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(32177,38970,'blocks_2_cards_custom_2_image',''),(32178,38970,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(32179,38970,'blocks_2_cards_custom_2_title','Biomechanics and SMT'),(32180,38970,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(32181,38970,'blocks_2_cards_custom_2_text','Explore why knowledge of intrinsic biomechanics is crucial for sports massage therapists: enhancing recovery, preventing injuries, and tailoring treatments for peak performance.'),(32182,38970,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(32183,38970,'blocks_2_cards_custom_2_link',''),(32184,38970,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(32185,38970,'blocks_2_cards_custom_3_image',''),(32186,38970,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(32187,38970,'blocks_2_cards_custom_3_title','Biomechanics and Clinicians'),(32188,38970,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(32189,38970,'blocks_2_cards_custom_3_text','Learn why understanding intrinsic biomechanics is vital for clinicians like podiatrists and physios: improving treatment precision, preventing injuries, and optimising patient recovery and performance.'),(32190,38970,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(32191,38970,'blocks_2_cards_custom_3_link',''),(32192,38970,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(32193,38970,'blocks_2_cards_custom_4_image',''),(32194,38970,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(32195,38970,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches'),(32196,38970,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(32197,38970,'blocks_2_cards_custom_4_text','Discover why understanding intrinsic biomechanics is essential for sports coaches: enhancing athletic performance, minimizing injury risks, and optimising training effectiveness.'),(32198,38970,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(32199,38970,'blocks_2_cards_custom_4_link',''),(32200,38970,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(32201,38970,'blocks_2_cards_custom_5_image',''),(32202,38970,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(32203,38970,'blocks_2_cards_custom_5_title','How to become a Biomechanics Coach'),(32204,38970,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(32205,38970,'blocks_2_cards_custom_5_text','Explore why understanding intrinsic biomechanics is crucial for aspiring biomechanics coaches: mastering movement mechanics, optimising athletic performance, and advancing injury prevention strategies.'),(32206,38970,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(32207,38970,'blocks_2_cards_custom_5_link',''),(32208,38970,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(32209,38970,'blocks_2_cards_custom','6'),(32210,38970,'_blocks_2_cards_custom','field_6194cbf84d386'),(32211,38970,'blocks_1_row_content_title',''),(32212,38970,'_blocks_1_row_content_title','field_64870132a865d'),(32213,38970,'blocks_1_row_content_heading',''),(32214,38970,'_blocks_1_row_content_heading','field_64870142a865e'),(32215,38970,'blocks_1_row_content_text',''),(32216,38970,'_blocks_1_row_content_text','field_64870148a865f'),(32217,38970,'blocks_1_row_content',''),(32218,38970,'_blocks_1_row_content','field_6487008ba865c'),(32219,38970,'blocks_0_acfe_flexible_toggle',''),(32220,38970,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(32221,38970,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(32222,38970,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(32223,38970,'blocks_0_options_theme','#ffffff'),(32224,38970,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(32225,38970,'blocks_0_options_reverse','0'),(32226,38970,'_blocks_0_options_reverse','field_61768049bb8ac'),(32227,38970,'blocks_0_options',''),(32228,38970,'_blocks_0_options','field_617682517c334'),(32229,38970,'blocks_0_split_5050_image','38950'),(32230,38970,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(32231,38970,'blocks_0_split_5050_video',''),(32232,38970,'_blocks_0_split_5050_video','field_6239f3160848a'),(32233,38970,'blocks_0_split_5050_content_title',''),(32234,38970,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(32235,38970,'blocks_0_split_5050_content_heading','What is Biomechanics Education ?'),(32236,38970,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(32237,38970,'blocks_0_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(32238,38970,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(32239,38970,'blocks_0_split_5050_content_actions',''),(32240,38970,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(32241,38970,'blocks_0_split_5050_content',''),(32242,38970,'_blocks_0_split_5050_content','field_61767afceb8ba'),(32243,38970,'blocks_3_acfe_flexible_toggle',''),(32244,38970,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(32245,38970,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(32246,38970,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(32247,38970,'blocks_3_options_theme','#ffffff'),(32248,38970,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(32249,38970,'blocks_3_options_reverse','0'),(32250,38970,'_blocks_3_options_reverse','field_61768049bb8ac'),(32251,38970,'blocks_3_options',''),(32252,38970,'_blocks_3_options','field_617682517c334'),(32253,38970,'blocks_3_split_5050_image','38960'),(32254,38970,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(32255,38970,'blocks_3_split_5050_video',''),(32256,38970,'_blocks_3_split_5050_video','field_6239f3160848a'),(32257,38970,'blocks_3_split_5050_content_title','Working In Partnership'),(32258,38970,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(32259,38970,'blocks_3_split_5050_content_heading','Biomechanics Education and Future Fit'),(32260,38970,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(32261,38970,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(32262,38970,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(32263,38970,'blocks_3_split_5050_content_actions',''),(32264,38970,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(32265,38970,'blocks_3_split_5050_content',''),(32266,38970,'_blocks_3_split_5050_content','field_61767afceb8ba'),(32267,38970,'blocks_4_acfe_flexible_toggle',''),(32268,38970,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(32269,38970,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(32270,38970,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(32271,38970,'blocks_4_testimonial_slider_content_title',''),(32272,38970,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(32273,38970,'blocks_4_testimonial_slider_content_heading','Testimonials'),(32274,38970,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(32275,38970,'blocks_4_testimonial_slider_content_text',''),(32276,38970,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(32277,38970,'blocks_4_testimonial_slider_content_actions',''),(32278,38970,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(32279,38970,'blocks_4_testimonial_slider_content',''),(32280,38970,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(32281,38970,'blocks_4_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(32282,38970,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(32283,38970,'blocks_4_testimonial_slider_ambassador_bool','0'),(32284,38970,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(32287,38971,'hero_style','default'),(32288,38971,'_hero_style','field_62051d9dc5324'),(32289,38971,'hero_image_pos_x','right'),(32290,38971,'_hero_image_pos_x','field_62ec3d05390bb'),(32291,38971,'hero_image_pos_y','top'),(32292,38971,'_hero_image_pos_y','field_62ec3d05390bc'),(32293,38971,'hero_image_pos',''),(32294,38971,'_hero_image_pos','field_62ec3d05390ba'),(32295,38971,'hero_title','Biomechanics Education'),(32296,38971,'_hero_title','field_617571fe285e8'),(32297,38971,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(32298,38971,'_hero_text','field_6175723c285e9'),(32299,38971,'hero_actions','1'),(32300,38971,'_hero_actions','field_61757270285ea'),(32301,38971,'hero_icon',''),(32302,38971,'_hero_icon','field_61a6182199d03'),(32303,38971,'fft_hide_from_listings','0'),(32304,38971,'_fft_hide_from_listings','field_61f1320446ab2'),(32305,38971,'fft_page_format','default'),(32306,38971,'_fft_page_format','field_61ae213f1f218'),(32307,38971,'fft_hide_nav','0'),(32308,38971,'_fft_hide_nav','field_635bd5e43527c'),(32309,38971,'fft_hide_header_call_to_action','0'),(32310,38971,'_fft_hide_header_call_to_action','field_635bd6723527d'),(32311,38971,'fft_page_sitemap','0'),(32312,38971,'_fft_page_sitemap','field_61af9b34e8181'),(32313,38971,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:5:\"cards\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(32314,38971,'_blocks','field_6176696113096'),(32315,38971,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(32316,38971,'_hero_actions_0_button','field_61757281285eb'),(32317,38971,'_thumbnail_id','38951'),(32318,38971,'__thumbnail_id','field_617570855ddaf'),(32319,38971,'blocks_1_acfe_flexible_toggle',''),(32320,38971,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(32321,38971,'blocks_1_acfe_flexible_layout_title','Video'),(32322,38971,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(32323,38971,'blocks_1_size','large'),(32324,38971,'_blocks_1_size','field_6487038f297c1'),(32325,38971,'blocks_1_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(32326,38971,'_blocks_1_video_src','field_6193c4a98ec07'),(32327,38971,'blocks_1_video_thumbnail','38956'),(32328,38971,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(32329,38971,'blocks_2_acfe_flexible_toggle',''),(32330,38971,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(32331,38971,'blocks_2_acfe_flexible_layout_title','Cards'),(32332,38971,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(32333,38971,'blocks_2_options_theme','#ffffff'),(32334,38971,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(32335,38971,'blocks_2_options_format','carousel'),(32336,38971,'_blocks_2_options_format','field_617a7b15245b5'),(32337,38971,'blocks_2_options_style','default'),(32338,38971,'_blocks_2_options_style','field_6278ffb63484a'),(32339,38971,'blocks_2_options_cards_current_listing','0'),(32340,38971,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(32341,38971,'blocks_2_options_cards_content','selection'),(32342,38971,'_blocks_2_options_cards_content','field_617aba6122688'),(32343,38971,'blocks_2_options',''),(32344,38971,'_blocks_2_options','field_617a7b15245b3'),(32345,38971,'blocks_2_cards_custom_0_image',''),(32346,38971,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(32347,38971,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(32348,38971,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(32349,38971,'blocks_2_cards_custom_0_text','Enhance your personal training skills with our Biomechanics Coaching Diploma. Explore anatomy in greater depth, acquire effective techniques for rapid recovery, and optimise rehabilitation processes.'),(32350,38971,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(32351,38971,'blocks_2_cards_custom_0_link',''),(32352,38971,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(32353,38971,'blocks_2_cards_custom_1_image',''),(32354,38971,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(32355,38971,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(32356,38971,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(32357,38971,'blocks_2_cards_custom_1_text','Discover why understanding intrinsic biomechanics is essential for Pilates instructors: safer workouts, precise cues, and personalised sessions for optimal fitness and injury prevention.'),(32358,38971,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(32359,38971,'blocks_2_cards_custom_1_link',''),(32360,38971,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(32361,38971,'blocks_2_cards_custom_2_image',''),(32362,38971,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(32363,38971,'blocks_2_cards_custom_2_title','Biomechanics and SMT'),(32364,38971,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(32365,38971,'blocks_2_cards_custom_2_text','Explore why knowledge of intrinsic biomechanics is crucial for sports massage therapists: enhancing recovery, preventing injuries, and tailoring treatments for peak performance.'),(32366,38971,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(32367,38971,'blocks_2_cards_custom_2_link',''),(32368,38971,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(32369,38971,'blocks_2_cards_custom_3_image',''),(32370,38971,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(32371,38971,'blocks_2_cards_custom_3_title','Biomechanics and Clinicians'),(32372,38971,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(32373,38971,'blocks_2_cards_custom_3_text','Learn why understanding intrinsic biomechanics is vital for clinicians like podiatrists and physios: improving treatment precision, preventing injuries, and optimising patient recovery and performance.'),(32374,38971,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(32375,38971,'blocks_2_cards_custom_3_link',''),(32376,38971,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(32377,38971,'blocks_2_cards_custom_4_image',''),(32378,38971,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(32379,38971,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches'),(32380,38971,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(32381,38971,'blocks_2_cards_custom_4_text','Discover why understanding intrinsic biomechanics is essential for sports coaches: enhancing athletic performance, minimizing injury risks, and optimising training effectiveness.'),(32382,38971,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(32383,38971,'blocks_2_cards_custom_4_link',''),(32384,38971,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(32385,38971,'blocks_2_cards_custom_5_image',''),(32386,38971,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(32387,38971,'blocks_2_cards_custom_5_title','How to become a Biomechanics Coach'),(32388,38971,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(32389,38971,'blocks_2_cards_custom_5_text','Explore why understanding intrinsic biomechanics is crucial for aspiring biomechanics coaches: mastering movement mechanics, optimising athletic performance, and advancing injury prevention strategies.'),(32390,38971,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(32391,38971,'blocks_2_cards_custom_5_link',''),(32392,38971,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(32393,38971,'blocks_2_cards_custom','6'),(32394,38971,'_blocks_2_cards_custom','field_6194cbf84d386'),(32395,38971,'blocks_1_row_content_title',''),(32396,38971,'_blocks_1_row_content_title','field_64870132a865d'),(32397,38971,'blocks_1_row_content_heading',''),(32398,38971,'_blocks_1_row_content_heading','field_64870142a865e'),(32399,38971,'blocks_1_row_content_text',''),(32400,38971,'_blocks_1_row_content_text','field_64870148a865f'),(32401,38971,'blocks_1_row_content',''),(32402,38971,'_blocks_1_row_content','field_6487008ba865c'),(32403,38971,'blocks_0_acfe_flexible_toggle',''),(32404,38971,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(32405,38971,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(32406,38971,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(32407,38971,'blocks_0_options_theme','#ffffff'),(32408,38971,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(32409,38971,'blocks_0_options_reverse','0'),(32410,38971,'_blocks_0_options_reverse','field_61768049bb8ac'),(32411,38971,'blocks_0_options',''),(32412,38971,'_blocks_0_options','field_617682517c334'),(32413,38971,'blocks_0_split_5050_image','38950'),(32414,38971,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(32415,38971,'blocks_0_split_5050_video',''),(32416,38971,'_blocks_0_split_5050_video','field_6239f3160848a'),(32417,38971,'blocks_0_split_5050_content_title',''),(32418,38971,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(32419,38971,'blocks_0_split_5050_content_heading','What is Biomechanics Education ?'),(32420,38971,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(32421,38971,'blocks_0_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(32422,38971,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(32423,38971,'blocks_0_split_5050_content_actions',''),(32424,38971,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(32425,38971,'blocks_0_split_5050_content',''),(32426,38971,'_blocks_0_split_5050_content','field_61767afceb8ba'),(32427,38971,'blocks_3_acfe_flexible_toggle',''),(32428,38971,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(32429,38971,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(32430,38971,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(32431,38971,'blocks_3_options_theme','#ffffff'),(32432,38971,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(32433,38971,'blocks_3_options_reverse','0'),(32434,38971,'_blocks_3_options_reverse','field_61768049bb8ac'),(32435,38971,'blocks_3_options',''),(32436,38971,'_blocks_3_options','field_617682517c334'),(32437,38971,'blocks_3_split_5050_image','38960'),(32438,38971,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(32439,38971,'blocks_3_split_5050_video',''),(32440,38971,'_blocks_3_split_5050_video','field_6239f3160848a'),(32441,38971,'blocks_3_split_5050_content_title','Working In Partnership'),(32442,38971,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(32443,38971,'blocks_3_split_5050_content_heading','Biomechanics Education and Future Fit'),(32444,38971,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(32445,38971,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(32446,38971,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(32447,38971,'blocks_3_split_5050_content_actions',''),(32448,38971,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(32449,38971,'blocks_3_split_5050_content',''),(32450,38971,'_blocks_3_split_5050_content','field_61767afceb8ba'),(32451,38971,'blocks_4_acfe_flexible_toggle',''),(32452,38971,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(32453,38971,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(32454,38971,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(32455,38971,'blocks_4_testimonial_slider_content_title',''),(32456,38971,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(32457,38971,'blocks_4_testimonial_slider_content_heading','Testimonials'),(32458,38971,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(32459,38971,'blocks_4_testimonial_slider_content_text',''),(32460,38971,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(32461,38971,'blocks_4_testimonial_slider_content_actions',''),(32462,38971,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(32463,38971,'blocks_4_testimonial_slider_content',''),(32464,38971,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(32465,38971,'blocks_4_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(32466,38971,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(32467,38971,'blocks_4_testimonial_slider_ambassador_bool','0'),(32468,38971,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(32469,38971,'blocks_2_options_cards_select_posts','a:4:{i:0;s:4:\"9178\";i:1;s:4:\"8598\";i:2;s:4:\"6769\";i:3;s:5:\"14118\";}'),(32470,38971,'_blocks_2_options_cards_select_posts','field_6193f85fbaea1'),(32513,38972,'hero_style','default'),(32514,38972,'_hero_style','field_62051d9dc5324'),(32515,38972,'hero_image_pos_x','right'),(32516,38972,'_hero_image_pos_x','field_62ec3d05390bb'),(32517,38972,'hero_image_pos_y','top'),(32518,38972,'_hero_image_pos_y','field_62ec3d05390bc'),(32519,38972,'hero_image_pos',''),(32520,38972,'_hero_image_pos','field_62ec3d05390ba'),(32521,38972,'hero_title','Biomechanics Education'),(32522,38972,'_hero_title','field_617571fe285e8'),(32523,38972,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(32524,38972,'_hero_text','field_6175723c285e9'),(32525,38972,'hero_actions','1'),(32526,38972,'_hero_actions','field_61757270285ea'),(32527,38972,'hero_icon',''),(32528,38972,'_hero_icon','field_61a6182199d03'),(32529,38972,'fft_hide_from_listings','0'),(32530,38972,'_fft_hide_from_listings','field_61f1320446ab2'),(32531,38972,'fft_page_format','default'),(32532,38972,'_fft_page_format','field_61ae213f1f218'),(32533,38972,'fft_hide_nav','0'),(32534,38972,'_fft_hide_nav','field_635bd5e43527c'),(32535,38972,'fft_hide_header_call_to_action','0'),(32536,38972,'_fft_hide_header_call_to_action','field_635bd6723527d'),(32537,38972,'fft_page_sitemap','0'),(32538,38972,'_fft_page_sitemap','field_61af9b34e8181'),(32539,38972,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:18:\"testimonial_slider\";}'),(32540,38972,'_blocks','field_6176696113096'),(32541,38972,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(32542,38972,'_hero_actions_0_button','field_61757281285eb'),(32543,38972,'_thumbnail_id','38951'),(32544,38972,'__thumbnail_id','field_617570855ddaf'),(32545,38972,'blocks_1_acfe_flexible_toggle',''),(32546,38972,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(32547,38972,'blocks_1_acfe_flexible_layout_title','Video'),(32548,38972,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(32549,38972,'blocks_1_size','large'),(32550,38972,'_blocks_1_size','field_6487038f297c1'),(32551,38972,'blocks_1_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(32552,38972,'_blocks_1_video_src','field_6193c4a98ec07'),(32553,38972,'blocks_1_video_thumbnail','38956'),(32554,38972,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(32555,38972,'blocks_1_row_content_title',''),(32556,38972,'_blocks_1_row_content_title','field_64870132a865d'),(32557,38972,'blocks_1_row_content_heading',''),(32558,38972,'_blocks_1_row_content_heading','field_64870142a865e'),(32559,38972,'blocks_1_row_content_text',''),(32560,38972,'_blocks_1_row_content_text','field_64870148a865f'),(32561,38972,'blocks_1_row_content',''),(32562,38972,'_blocks_1_row_content','field_6487008ba865c'),(32563,38972,'blocks_0_acfe_flexible_toggle',''),(32564,38972,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(32565,38972,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(32566,38972,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(32567,38972,'blocks_0_options_theme','#ffffff'),(32568,38972,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(32569,38972,'blocks_0_options_reverse','0'),(32570,38972,'_blocks_0_options_reverse','field_61768049bb8ac'),(32571,38972,'blocks_0_options',''),(32572,38972,'_blocks_0_options','field_617682517c334'),(32573,38972,'blocks_0_split_5050_image','38950'),(32574,38972,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(32575,38972,'blocks_0_split_5050_video',''),(32576,38972,'_blocks_0_split_5050_video','field_6239f3160848a'),(32577,38972,'blocks_0_split_5050_content_title',''),(32578,38972,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(32579,38972,'blocks_0_split_5050_content_heading','What is Biomechanics Education ?'),(32580,38972,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(32581,38972,'blocks_0_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(32582,38972,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(32583,38972,'blocks_0_split_5050_content_actions',''),(32584,38972,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(32585,38972,'blocks_0_split_5050_content',''),(32586,38972,'_blocks_0_split_5050_content','field_61767afceb8ba'),(32587,38972,'blocks_2_acfe_flexible_toggle',''),(32588,38972,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(32589,38972,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(32590,38972,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(32591,38972,'blocks_2_options_theme','#ffffff'),(32592,38972,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(32593,38972,'blocks_2_options_reverse','0'),(32594,38972,'_blocks_2_options_reverse','field_61768049bb8ac'),(32595,38972,'blocks_2_options',''),(32596,38972,'_blocks_2_options','field_617682517c334'),(32597,38972,'blocks_2_split_5050_image','38960'),(32598,38972,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(32599,38972,'blocks_2_split_5050_video',''),(32600,38972,'_blocks_2_split_5050_video','field_6239f3160848a'),(32601,38972,'blocks_2_split_5050_content_title','Working In Partnership'),(32602,38972,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(32603,38972,'blocks_2_split_5050_content_heading','Biomechanics Education and Future Fit'),(32604,38972,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(32605,38972,'blocks_2_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(32606,38972,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(32607,38972,'blocks_2_split_5050_content_actions',''),(32608,38972,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(32609,38972,'blocks_2_split_5050_content',''),(32610,38972,'_blocks_2_split_5050_content','field_61767afceb8ba'),(32611,38972,'blocks_3_acfe_flexible_toggle',''),(32612,38972,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(32613,38972,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(32614,38972,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(32615,38972,'blocks_3_testimonial_slider_content_title',''),(32616,38972,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(32617,38972,'blocks_3_testimonial_slider_content_heading','Testimonials'),(32618,38972,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(32619,38972,'blocks_3_testimonial_slider_content_text',''),(32620,38972,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(32621,38972,'blocks_3_testimonial_slider_content_actions',''),(32622,38972,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(32623,38972,'blocks_3_testimonial_slider_content',''),(32624,38972,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(32625,38972,'blocks_3_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(32626,38972,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(32627,38972,'blocks_3_testimonial_slider_ambassador_bool','0'),(32628,38972,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(32629,38973,'_edit_lock','1732883974:18'),(32630,38973,'_edit_last','5'),(32631,38973,'hero_style','default'),(32632,38973,'_hero_style','field_62051d9dc5324'),(32634,38973,'__thumbnail_id','field_617570855ddaf'),(32635,38973,'hero_image_pos_x','right'),(32636,38973,'_hero_image_pos_x','field_62ec3d05390bb'),(32637,38973,'hero_image_pos_y','top'),(32638,38973,'_hero_image_pos_y','field_62ec3d05390bc'),(32639,38973,'hero_image_pos',''),(32640,38973,'_hero_image_pos','field_62ec3d05390ba'),(32641,38973,'hero_title','Biomechanics Coach Course - David Lloyd'),(32642,38973,'_hero_title','field_617571fe285e8'),(32643,38973,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(32644,38973,'_hero_text','field_6175723c285e9'),(32645,38973,'hero_actions','1'),(32646,38973,'_hero_actions','field_61757270285ea'),(32647,38973,'hero_icon',''),(32648,38973,'_hero_icon','field_61a6182199d03'),(32649,38973,'fft_hide_from_listings','0'),(32650,38973,'_fft_hide_from_listings','field_61f1320446ab2'),(32651,38973,'fft_page_format','default'),(32652,38973,'_fft_page_format','field_61ae213f1f218'),(32653,38973,'fft_hide_nav','1'),(32654,38973,'_fft_hide_nav','field_635bd5e43527c'),(32655,38973,'fft_hide_header_call_to_action','0'),(32656,38973,'_fft_hide_header_call_to_action','field_635bd6723527d'),(32657,38973,'fft_page_sitemap','1'),(32658,38973,'_fft_page_sitemap','field_61af9b34e8181'),(32659,38973,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(32660,38973,'_blocks','field_6176696113096'),(32661,38974,'hero_style','default'),(32662,38974,'_hero_style','field_62051d9dc5324'),(32663,38974,'_thumbnail_id',''),(32664,38974,'__thumbnail_id','field_617570855ddaf'),(32665,38974,'hero_image_pos_x','right'),(32666,38974,'_hero_image_pos_x','field_62ec3d05390bb'),(32667,38974,'hero_image_pos_y','top'),(32668,38974,'_hero_image_pos_y','field_62ec3d05390bc'),(32669,38974,'hero_image_pos',''),(32670,38974,'_hero_image_pos','field_62ec3d05390ba'),(32671,38974,'hero_title',''),(32672,38974,'_hero_title','field_617571fe285e8'),(32673,38974,'hero_text',''),(32674,38974,'_hero_text','field_6175723c285e9'),(32675,38974,'hero_actions',''),(32676,38974,'_hero_actions','field_61757270285ea'),(32677,38974,'hero_icon',''),(32678,38974,'_hero_icon','field_61a6182199d03'),(32679,38974,'fft_hide_from_listings','0'),(32680,38974,'_fft_hide_from_listings','field_61f1320446ab2'),(32681,38974,'fft_page_format','default'),(32682,38974,'_fft_page_format','field_61ae213f1f218'),(32683,38974,'fft_hide_nav','0'),(32684,38974,'_fft_hide_nav','field_635bd5e43527c'),(32685,38974,'fft_hide_header_call_to_action','0'),(32686,38974,'_fft_hide_header_call_to_action','field_635bd6723527d'),(32687,38974,'fft_page_sitemap','0'),(32688,38974,'_fft_page_sitemap','field_61af9b34e8181'),(32689,38974,'blocks',''),(32690,38974,'_blocks','field_6176696113096'),(32692,38975,'hero_style','default'),(32693,38975,'_hero_style','field_62051d9dc5324'),(32694,38975,'hero_image_pos_x','right'),(32695,38975,'_hero_image_pos_x','field_62ec3d05390bb'),(32696,38975,'hero_image_pos_y','top'),(32697,38975,'_hero_image_pos_y','field_62ec3d05390bc'),(32698,38975,'hero_image_pos',''),(32699,38975,'_hero_image_pos','field_62ec3d05390ba'),(32700,38975,'hero_title',''),(32701,38975,'_hero_title','field_617571fe285e8'),(32702,38975,'hero_text',''),(32703,38975,'_hero_text','field_6175723c285e9'),(32704,38975,'hero_actions',''),(32705,38975,'_hero_actions','field_61757270285ea'),(32706,38975,'hero_icon',''),(32707,38975,'_hero_icon','field_61a6182199d03'),(32708,38975,'fft_hide_from_listings','0'),(32709,38975,'_fft_hide_from_listings','field_61f1320446ab2'),(32710,38975,'fft_page_format','default'),(32711,38975,'_fft_page_format','field_61ae213f1f218'),(32712,38975,'fft_hide_nav','1'),(32713,38975,'_fft_hide_nav','field_635bd5e43527c'),(32714,38975,'fft_hide_header_call_to_action','0'),(32715,38975,'_fft_hide_header_call_to_action','field_635bd6723527d'),(32716,38975,'fft_page_sitemap','1'),(32717,38975,'_fft_page_sitemap','field_61af9b34e8181'),(32718,38975,'blocks',''),(32719,38975,'_blocks','field_6176696113096'),(32720,38975,'_thumbnail_id',''),(32721,38975,'__thumbnail_id','field_617570855ddaf'),(32723,38973,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-38973-6\";s:6:\"target\";s:6:\"_blank\";}'),(32724,38973,'_hero_actions_0_button','field_61757281285eb'),(32725,38976,'hero_style','default'),(32726,38976,'_hero_style','field_62051d9dc5324'),(32727,38976,'hero_image_pos_x','right'),(32728,38976,'_hero_image_pos_x','field_62ec3d05390bb'),(32729,38976,'hero_image_pos_y','top'),(32730,38976,'_hero_image_pos_y','field_62ec3d05390bc'),(32731,38976,'hero_image_pos',''),(32732,38976,'_hero_image_pos','field_62ec3d05390ba'),(32733,38976,'hero_title','Biomechanics Coach Course - David Lloyd'),(32734,38976,'_hero_title','field_617571fe285e8'),(32735,38976,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(32736,38976,'_hero_text','field_6175723c285e9'),(32737,38976,'hero_actions','1'),(32738,38976,'_hero_actions','field_61757270285ea'),(32739,38976,'hero_icon',''),(32740,38976,'_hero_icon','field_61a6182199d03'),(32741,38976,'fft_hide_from_listings','0'),(32742,38976,'_fft_hide_from_listings','field_61f1320446ab2'),(32743,38976,'fft_page_format','default'),(32744,38976,'_fft_page_format','field_61ae213f1f218'),(32745,38976,'fft_hide_nav','1'),(32746,38976,'_fft_hide_nav','field_635bd5e43527c'),(32747,38976,'fft_hide_header_call_to_action','0'),(32748,38976,'_fft_hide_header_call_to_action','field_635bd6723527d'),(32749,38976,'fft_page_sitemap','1'),(32750,38976,'_fft_page_sitemap','field_61af9b34e8181'),(32751,38976,'blocks',''),(32752,38976,'_blocks','field_6176696113096'),(32753,38976,'_thumbnail_id',''),(32754,38976,'__thumbnail_id','field_617570855ddaf'),(32755,38976,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(32756,38976,'_hero_actions_0_button','field_61757281285eb'),(32757,38977,'_wp_attached_file','2024/07/David-Lloyd-referral-page-hero-image.jpg'),(32758,38977,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:48:\"2024/07/David-Lloyd-referral-page-hero-image.jpg\";s:8:\"filesize\";i:351122;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"David-Lloyd-referral-page-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72130;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"David-Lloyd-referral-page-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115253;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"David-Lloyd-referral-page-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20327;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"David-Lloyd-referral-page-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55588;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"David-Lloyd-referral-page-hero-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175037;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:50:\"David-Lloyd-referral-page-hero-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:282876;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:48:\"David-Lloyd-referral-page-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25206;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:48:\"David-Lloyd-referral-page-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94500;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:50:\"David-Lloyd-referral-page-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151854;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:48:\"David-Lloyd-referral-page-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20205;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:48:\"David-Lloyd-referral-page-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72049;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:49:\"David-Lloyd-referral-page-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115265;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:48:\"David-Lloyd-referral-page-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20535;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:48:\"David-Lloyd-referral-page-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75655;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:49:\"David-Lloyd-referral-page-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120717;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:48:\"David-Lloyd-referral-page-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21304;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:48:\"David-Lloyd-referral-page-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78087;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:49:\"David-Lloyd-referral-page-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125045;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:48:\"David-Lloyd-referral-page-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18178;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:48:\"David-Lloyd-referral-page-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64572;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:49:\"David-Lloyd-referral-page-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102141;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(32759,38973,'_thumbnail_id','38977'),(32760,38978,'hero_style','default'),(32761,38978,'_hero_style','field_62051d9dc5324'),(32762,38978,'hero_image_pos_x','right'),(32763,38978,'_hero_image_pos_x','field_62ec3d05390bb'),(32764,38978,'hero_image_pos_y','top'),(32765,38978,'_hero_image_pos_y','field_62ec3d05390bc'),(32766,38978,'hero_image_pos',''),(32767,38978,'_hero_image_pos','field_62ec3d05390ba'),(32768,38978,'hero_title','Biomechanics Coach Course - David Lloyd'),(32769,38978,'_hero_title','field_617571fe285e8'),(32770,38978,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(32771,38978,'_hero_text','field_6175723c285e9'),(32772,38978,'hero_actions','1'),(32773,38978,'_hero_actions','field_61757270285ea'),(32774,38978,'hero_icon',''),(32775,38978,'_hero_icon','field_61a6182199d03'),(32776,38978,'fft_hide_from_listings','0'),(32777,38978,'_fft_hide_from_listings','field_61f1320446ab2'),(32778,38978,'fft_page_format','default'),(32779,38978,'_fft_page_format','field_61ae213f1f218'),(32780,38978,'fft_hide_nav','1'),(32781,38978,'_fft_hide_nav','field_635bd5e43527c'),(32782,38978,'fft_hide_header_call_to_action','0'),(32783,38978,'_fft_hide_header_call_to_action','field_635bd6723527d'),(32784,38978,'fft_page_sitemap','1'),(32785,38978,'_fft_page_sitemap','field_61af9b34e8181'),(32786,38978,'blocks',''),(32787,38978,'_blocks','field_6176696113096'),(32788,38978,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(32789,38978,'_hero_actions_0_button','field_61757281285eb'),(32790,38978,'_thumbnail_id','38977'),(32791,38978,'__thumbnail_id','field_617570855ddaf'),(32814,38979,'hero_style','default'),(32815,38979,'_hero_style','field_62051d9dc5324'),(32816,38979,'hero_image_pos_x','right'),(32817,38979,'_hero_image_pos_x','field_62ec3d05390bb'),(32818,38979,'hero_image_pos_y','top'),(32819,38979,'_hero_image_pos_y','field_62ec3d05390bc'),(32820,38979,'hero_image_pos',''),(32821,38979,'_hero_image_pos','field_62ec3d05390ba'),(32822,38979,'hero_title','Biomechanics Coach Course - David Lloyd'),(32823,38979,'_hero_title','field_617571fe285e8'),(32824,38979,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(32825,38979,'_hero_text','field_6175723c285e9'),(32826,38979,'hero_actions','1'),(32827,38979,'_hero_actions','field_61757270285ea'),(32828,38979,'hero_icon',''),(32829,38979,'_hero_icon','field_61a6182199d03'),(32830,38979,'fft_hide_from_listings','0'),(32831,38979,'_fft_hide_from_listings','field_61f1320446ab2'),(32832,38979,'fft_page_format','default'),(32833,38979,'_fft_page_format','field_61ae213f1f218'),(32834,38979,'fft_hide_nav','1'),(32835,38979,'_fft_hide_nav','field_635bd5e43527c'),(32836,38979,'fft_hide_header_call_to_action','0'),(32837,38979,'_fft_hide_header_call_to_action','field_635bd6723527d'),(32838,38979,'fft_page_sitemap','1'),(32839,38979,'_fft_page_sitemap','field_61af9b34e8181'),(32840,38979,'blocks','a:1:{i:0;s:4:\"form\";}'),(32841,38979,'_blocks','field_6176696113096'),(32842,38979,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(32843,38979,'_hero_actions_0_button','field_61757281285eb'),(32844,38979,'_thumbnail_id','38977'),(32845,38979,'__thumbnail_id','field_617570855ddaf'),(32846,38979,'blocks_0_acfe_flexible_toggle',''),(32847,38979,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(32848,38979,'blocks_0_acfe_flexible_layout_title','Form'),(32849,38979,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(32850,38979,'blocks_0_row_content_format','standard'),(32851,38979,'_blocks_0_row_content_format','field_6481ead962881'),(32852,38979,'blocks_0_row_content_title','Off Biomechanics Coach Course'),(32853,38979,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(32854,38979,'blocks_0_row_content_heading','Up to 10% Off'),(32855,38979,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(32856,38979,'blocks_0_row_content_text',''),(32857,38979,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(32858,38979,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(32859,38979,'_blocks_0_row_content_actions_0_button','field_61a0f5f5b3db5'),(32860,38979,'blocks_0_row_content_actions','1'),(32861,38979,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(32862,38979,'blocks_0_row_content',''),(32863,38979,'_blocks_0_row_content','field_61a0f5f5b3db0'),(32864,38979,'blocks_0_row_form',''),(32865,38979,'_blocks_0_row_form','field_61a4ff2c0b08e'),(32866,38979,'blocks_0_row_form_button_label',''),(32867,38979,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(32922,38981,'hero_style','default'),(32923,38981,'_hero_style','field_62051d9dc5324'),(32924,38981,'hero_image_pos_x','right'),(32925,38981,'_hero_image_pos_x','field_62ec3d05390bb'),(32926,38981,'hero_image_pos_y','top'),(32927,38981,'_hero_image_pos_y','field_62ec3d05390bc'),(32928,38981,'hero_image_pos',''),(32929,38981,'_hero_image_pos','field_62ec3d05390ba'),(32930,38981,'hero_title','Biomechanics Coach Course - David Lloyd'),(32931,38981,'_hero_title','field_617571fe285e8'),(32932,38981,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(32933,38981,'_hero_text','field_6175723c285e9'),(32934,38981,'hero_actions','1'),(32935,38981,'_hero_actions','field_61757270285ea'),(32936,38981,'hero_icon',''),(32937,38981,'_hero_icon','field_61a6182199d03'),(32938,38981,'fft_hide_from_listings','0'),(32939,38981,'_fft_hide_from_listings','field_61f1320446ab2'),(32940,38981,'fft_page_format','default'),(32941,38981,'_fft_page_format','field_61ae213f1f218'),(32942,38981,'fft_hide_nav','1'),(32943,38981,'_fft_hide_nav','field_635bd5e43527c'),(32944,38981,'fft_hide_header_call_to_action','0'),(32945,38981,'_fft_hide_header_call_to_action','field_635bd6723527d'),(32946,38981,'fft_page_sitemap','1'),(32947,38981,'_fft_page_sitemap','field_61af9b34e8181'),(32948,38981,'blocks','a:1:{i:0;s:4:\"form\";}'),(32949,38981,'_blocks','field_6176696113096'),(32950,38981,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(32951,38981,'_hero_actions_0_button','field_61757281285eb'),(32952,38981,'_thumbnail_id','38977'),(32953,38981,'__thumbnail_id','field_617570855ddaf'),(32954,38981,'blocks_0_acfe_flexible_toggle',''),(32955,38981,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(32956,38981,'blocks_0_acfe_flexible_layout_title','Form'),(32957,38981,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(32958,38981,'blocks_0_row_content_format','standard'),(32959,38981,'_blocks_0_row_content_format','field_6481ead962881'),(32960,38981,'blocks_0_row_content_title','Off Biomechanics Coach Course'),(32961,38981,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(32962,38981,'blocks_0_row_content_heading','Up to 10% Off'),(32963,38981,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(32964,38981,'blocks_0_row_content_text','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(32965,38981,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(32966,38981,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(32967,38981,'_blocks_0_row_content_actions_0_button','field_61a0f5f5b3db5'),(32968,38981,'blocks_0_row_content_actions','1'),(32969,38981,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(32970,38981,'blocks_0_row_content',''),(32971,38981,'_blocks_0_row_content','field_61a0f5f5b3db0'),(32972,38981,'blocks_0_row_form',''),(32973,38981,'_blocks_0_row_form','field_61a4ff2c0b08e'),(32974,38981,'blocks_0_row_form_button_label',''),(32975,38981,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(32976,38982,'hero_style','default'),(32977,38982,'_hero_style','field_62051d9dc5324'),(32978,38982,'hero_image_pos_x','right'),(32979,38982,'_hero_image_pos_x','field_62ec3d05390bb'),(32980,38982,'hero_image_pos_y','top'),(32981,38982,'_hero_image_pos_y','field_62ec3d05390bc'),(32982,38982,'hero_image_pos',''),(32983,38982,'_hero_image_pos','field_62ec3d05390ba'),(32984,38982,'hero_title','Biomechanics Coach Course - David Lloyd'),(32985,38982,'_hero_title','field_617571fe285e8'),(32986,38982,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(32987,38982,'_hero_text','field_6175723c285e9'),(32988,38982,'hero_actions','1'),(32989,38982,'_hero_actions','field_61757270285ea'),(32990,38982,'hero_icon',''),(32991,38982,'_hero_icon','field_61a6182199d03'),(32992,38982,'fft_hide_from_listings','0'),(32993,38982,'_fft_hide_from_listings','field_61f1320446ab2'),(32994,38982,'fft_page_format','default'),(32995,38982,'_fft_page_format','field_61ae213f1f218'),(32996,38982,'fft_hide_nav','1'),(32997,38982,'_fft_hide_nav','field_635bd5e43527c'),(32998,38982,'fft_hide_header_call_to_action','0'),(32999,38982,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33000,38982,'fft_page_sitemap','1'),(33001,38982,'_fft_page_sitemap','field_61af9b34e8181'),(33002,38982,'blocks','a:1:{i:0;s:4:\"form\";}'),(33003,38982,'_blocks','field_6176696113096'),(33004,38982,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(33005,38982,'_hero_actions_0_button','field_61757281285eb'),(33006,38982,'_thumbnail_id','38977'),(33007,38982,'__thumbnail_id','field_617570855ddaf'),(33008,38982,'blocks_0_acfe_flexible_toggle',''),(33009,38982,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(33010,38982,'blocks_0_acfe_flexible_layout_title','Form'),(33011,38982,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(33012,38982,'blocks_0_row_content_format','standard'),(33013,38982,'_blocks_0_row_content_format','field_6481ead962881'),(33014,38982,'blocks_0_row_content_title','Off Biomechanics Coach Course'),(33015,38982,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(33016,38982,'blocks_0_row_content_heading','Up to 10% Off'),(33017,38982,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(33018,38982,'blocks_0_row_content_text','<h2 style=\"text-align: center;\"><strong>Up to 10% Off</strong></h2>\r\n<p style=\"text-align: center;\">Off Biomechanics Coach Course</p>\r\n\r\n<pre style=\"text-align: center;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</pre>'),(33019,38982,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(33020,38982,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(33021,38982,'_blocks_0_row_content_actions_0_button','field_61a0f5f5b3db5'),(33022,38982,'blocks_0_row_content_actions','1'),(33023,38982,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(33024,38982,'blocks_0_row_content',''),(33025,38982,'_blocks_0_row_content','field_61a0f5f5b3db0'),(33026,38982,'blocks_0_row_form',''),(33027,38982,'_blocks_0_row_form','field_61a4ff2c0b08e'),(33028,38982,'blocks_0_row_form_button_label',''),(33029,38982,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(33030,38983,'hero_style','default'),(33031,38983,'_hero_style','field_62051d9dc5324'),(33032,38983,'hero_image_pos_x','right'),(33033,38983,'_hero_image_pos_x','field_62ec3d05390bb'),(33034,38983,'hero_image_pos_y','top'),(33035,38983,'_hero_image_pos_y','field_62ec3d05390bc'),(33036,38983,'hero_image_pos',''),(33037,38983,'_hero_image_pos','field_62ec3d05390ba'),(33038,38983,'hero_title','Biomechanics Coach Course - David Lloyd'),(33039,38983,'_hero_title','field_617571fe285e8'),(33040,38983,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(33041,38983,'_hero_text','field_6175723c285e9'),(33042,38983,'hero_actions','1'),(33043,38983,'_hero_actions','field_61757270285ea'),(33044,38983,'hero_icon',''),(33045,38983,'_hero_icon','field_61a6182199d03'),(33046,38983,'fft_hide_from_listings','0'),(33047,38983,'_fft_hide_from_listings','field_61f1320446ab2'),(33048,38983,'fft_page_format','default'),(33049,38983,'_fft_page_format','field_61ae213f1f218'),(33050,38983,'fft_hide_nav','1'),(33051,38983,'_fft_hide_nav','field_635bd5e43527c'),(33052,38983,'fft_hide_header_call_to_action','0'),(33053,38983,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33054,38983,'fft_page_sitemap','1'),(33055,38983,'_fft_page_sitemap','field_61af9b34e8181'),(33056,38983,'blocks','a:1:{i:0;s:4:\"form\";}'),(33057,38983,'_blocks','field_6176696113096'),(33058,38983,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(33059,38983,'_hero_actions_0_button','field_61757281285eb'),(33060,38983,'_thumbnail_id','38977'),(33061,38983,'__thumbnail_id','field_617570855ddaf'),(33062,38983,'blocks_0_acfe_flexible_toggle',''),(33063,38983,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(33064,38983,'blocks_0_acfe_flexible_layout_title','Form'),(33065,38983,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(33066,38983,'blocks_0_row_content_format','standard'),(33067,38983,'_blocks_0_row_content_format','field_6481ead962881'),(33068,38983,'blocks_0_row_content_title','Off Biomechanics Coach Course'),(33069,38983,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(33070,38983,'blocks_0_row_content_heading','Up to 10% Off'),(33071,38983,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(33072,38983,'blocks_0_row_content_text','<h4 style=\"text-align: center;\"><strong>Up to 10% Off</strong></h4>\r\n<p style=\"text-align: center;\">Off Biomechanics Coach Course</p>\r\n<p style=\"text-align: center;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(33073,38983,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(33074,38983,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(33075,38983,'_blocks_0_row_content_actions_0_button','field_61a0f5f5b3db5'),(33076,38983,'blocks_0_row_content_actions','1'),(33077,38983,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(33078,38983,'blocks_0_row_content',''),(33079,38983,'_blocks_0_row_content','field_61a0f5f5b3db0'),(33080,38983,'blocks_0_row_form',''),(33081,38983,'_blocks_0_row_form','field_61a4ff2c0b08e'),(33082,38983,'blocks_0_row_form_button_label',''),(33083,38983,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(33084,38984,'hero_style','default'),(33085,38984,'_hero_style','field_62051d9dc5324'),(33086,38984,'hero_image_pos_x','right'),(33087,38984,'_hero_image_pos_x','field_62ec3d05390bb'),(33088,38984,'hero_image_pos_y','top'),(33089,38984,'_hero_image_pos_y','field_62ec3d05390bc'),(33090,38984,'hero_image_pos',''),(33091,38984,'_hero_image_pos','field_62ec3d05390ba'),(33092,38984,'hero_title','Biomechanics Coach Course - David Lloyd'),(33093,38984,'_hero_title','field_617571fe285e8'),(33094,38984,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(33095,38984,'_hero_text','field_6175723c285e9'),(33096,38984,'hero_actions','1'),(33097,38984,'_hero_actions','field_61757270285ea'),(33098,38984,'hero_icon',''),(33099,38984,'_hero_icon','field_61a6182199d03'),(33100,38984,'fft_hide_from_listings','0'),(33101,38984,'_fft_hide_from_listings','field_61f1320446ab2'),(33102,38984,'fft_page_format','default'),(33103,38984,'_fft_page_format','field_61ae213f1f218'),(33104,38984,'fft_hide_nav','1'),(33105,38984,'_fft_hide_nav','field_635bd5e43527c'),(33106,38984,'fft_hide_header_call_to_action','0'),(33107,38984,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33108,38984,'fft_page_sitemap','1'),(33109,38984,'_fft_page_sitemap','field_61af9b34e8181'),(33110,38984,'blocks','a:1:{i:0;s:4:\"form\";}'),(33111,38984,'_blocks','field_6176696113096'),(33112,38984,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(33113,38984,'_hero_actions_0_button','field_61757281285eb'),(33114,38984,'_thumbnail_id','38977'),(33115,38984,'__thumbnail_id','field_617570855ddaf'),(33116,38984,'blocks_0_acfe_flexible_toggle',''),(33117,38984,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(33118,38984,'blocks_0_acfe_flexible_layout_title','Form'),(33119,38984,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(33120,38984,'blocks_0_row_content_format','standard'),(33121,38984,'_blocks_0_row_content_format','field_6481ead962881'),(33122,38984,'blocks_0_row_content_title','Off Biomechanics Coach Course'),(33123,38984,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(33124,38984,'blocks_0_row_content_heading','Up to 10% Off'),(33125,38984,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(33126,38984,'blocks_0_row_content_text','<p style=\"text-align: center;\"><em><strong>Up to 10% Off</strong></em></p>\r\n<p style=\"text-align: center;\">Off Biomechanics Coach Course</p>\r\n<p style=\"text-align: center;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(33127,38984,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(33128,38984,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(33129,38984,'_blocks_0_row_content_actions_0_button','field_61a0f5f5b3db5'),(33130,38984,'blocks_0_row_content_actions','1'),(33131,38984,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(33132,38984,'blocks_0_row_content',''),(33133,38984,'_blocks_0_row_content','field_61a0f5f5b3db0'),(33134,38984,'blocks_0_row_form',''),(33135,38984,'_blocks_0_row_form','field_61a4ff2c0b08e'),(33136,38984,'blocks_0_row_form_button_label',''),(33137,38984,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(33138,38985,'hero_style','default'),(33139,38985,'_hero_style','field_62051d9dc5324'),(33140,38985,'hero_image_pos_x','right'),(33141,38985,'_hero_image_pos_x','field_62ec3d05390bb'),(33142,38985,'hero_image_pos_y','top'),(33143,38985,'_hero_image_pos_y','field_62ec3d05390bc'),(33144,38985,'hero_image_pos',''),(33145,38985,'_hero_image_pos','field_62ec3d05390ba'),(33146,38985,'hero_title','Biomechanics Coach Course - David Lloyd'),(33147,38985,'_hero_title','field_617571fe285e8'),(33148,38985,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(33149,38985,'_hero_text','field_6175723c285e9'),(33150,38985,'hero_actions','1'),(33151,38985,'_hero_actions','field_61757270285ea'),(33152,38985,'hero_icon',''),(33153,38985,'_hero_icon','field_61a6182199d03'),(33154,38985,'fft_hide_from_listings','0'),(33155,38985,'_fft_hide_from_listings','field_61f1320446ab2'),(33156,38985,'fft_page_format','default'),(33157,38985,'_fft_page_format','field_61ae213f1f218'),(33158,38985,'fft_hide_nav','1'),(33159,38985,'_fft_hide_nav','field_635bd5e43527c'),(33160,38985,'fft_hide_header_call_to_action','0'),(33161,38985,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33162,38985,'fft_page_sitemap','1'),(33163,38985,'_fft_page_sitemap','field_61af9b34e8181'),(33164,38985,'blocks','a:1:{i:0;s:4:\"form\";}'),(33165,38985,'_blocks','field_6176696113096'),(33166,38985,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(33167,38985,'_hero_actions_0_button','field_61757281285eb'),(33168,38985,'_thumbnail_id','38977'),(33169,38985,'__thumbnail_id','field_617570855ddaf'),(33170,38985,'blocks_0_acfe_flexible_toggle',''),(33171,38985,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(33172,38985,'blocks_0_acfe_flexible_layout_title','Form'),(33173,38985,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(33174,38985,'blocks_0_row_content_format','standard'),(33175,38985,'_blocks_0_row_content_format','field_6481ead962881'),(33176,38985,'blocks_0_row_content_title','Off Biomechanics Coach Course'),(33177,38985,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(33178,38985,'blocks_0_row_content_heading','Up to 10% Off'),(33179,38985,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(33180,38985,'blocks_0_row_content_text','<p style=\"text-align: left;\"><em><strong>Up to 10% Off</strong></em></p>\r\n<p style=\"text-align: center;\">Off Biomechanics Coach Course</p>\r\n<p style=\"text-align: center;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(33181,38985,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(33182,38985,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(33183,38985,'_blocks_0_row_content_actions_0_button','field_61a0f5f5b3db5'),(33184,38985,'blocks_0_row_content_actions','1'),(33185,38985,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(33186,38985,'blocks_0_row_content',''),(33187,38985,'_blocks_0_row_content','field_61a0f5f5b3db0'),(33188,38985,'blocks_0_row_form',''),(33189,38985,'_blocks_0_row_form','field_61a4ff2c0b08e'),(33190,38985,'blocks_0_row_form_button_label',''),(33191,38985,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(33192,38986,'hero_style','default'),(33193,38986,'_hero_style','field_62051d9dc5324'),(33194,38986,'hero_image_pos_x','right'),(33195,38986,'_hero_image_pos_x','field_62ec3d05390bb'),(33196,38986,'hero_image_pos_y','top'),(33197,38986,'_hero_image_pos_y','field_62ec3d05390bc'),(33198,38986,'hero_image_pos',''),(33199,38986,'_hero_image_pos','field_62ec3d05390ba'),(33200,38986,'hero_title','Biomechanics Coach Course - David Lloyd'),(33201,38986,'_hero_title','field_617571fe285e8'),(33202,38986,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(33203,38986,'_hero_text','field_6175723c285e9'),(33204,38986,'hero_actions','1'),(33205,38986,'_hero_actions','field_61757270285ea'),(33206,38986,'hero_icon',''),(33207,38986,'_hero_icon','field_61a6182199d03'),(33208,38986,'fft_hide_from_listings','0'),(33209,38986,'_fft_hide_from_listings','field_61f1320446ab2'),(33210,38986,'fft_page_format','default'),(33211,38986,'_fft_page_format','field_61ae213f1f218'),(33212,38986,'fft_hide_nav','1'),(33213,38986,'_fft_hide_nav','field_635bd5e43527c'),(33214,38986,'fft_hide_header_call_to_action','0'),(33215,38986,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33216,38986,'fft_page_sitemap','1'),(33217,38986,'_fft_page_sitemap','field_61af9b34e8181'),(33218,38986,'blocks','a:1:{i:0;s:4:\"form\";}'),(33219,38986,'_blocks','field_6176696113096'),(33220,38986,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(33221,38986,'_hero_actions_0_button','field_61757281285eb'),(33222,38986,'_thumbnail_id','38977'),(33223,38986,'__thumbnail_id','field_617570855ddaf'),(33224,38986,'blocks_0_acfe_flexible_toggle',''),(33225,38986,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(33226,38986,'blocks_0_acfe_flexible_layout_title','Form'),(33227,38986,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(33228,38986,'blocks_0_row_content_format','standard'),(33229,38986,'_blocks_0_row_content_format','field_6481ead962881'),(33230,38986,'blocks_0_row_content_title','Off Biomechanics Coach Course'),(33231,38986,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(33232,38986,'blocks_0_row_content_heading','Up to 10% Off'),(33233,38986,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(33234,38986,'blocks_0_row_content_text','<p style=\"text-align: center;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: center;\">Off Biomechanics Coach Course</p>\r\n<p style=\"text-align: center;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(33235,38986,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(33236,38986,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(33237,38986,'_blocks_0_row_content_actions_0_button','field_61a0f5f5b3db5'),(33238,38986,'blocks_0_row_content_actions','1'),(33239,38986,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(33240,38986,'blocks_0_row_content',''),(33241,38986,'_blocks_0_row_content','field_61a0f5f5b3db0'),(33242,38986,'blocks_0_row_form',''),(33243,38986,'_blocks_0_row_form','field_61a4ff2c0b08e'),(33244,38986,'blocks_0_row_form_button_label',''),(33245,38986,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(33246,38987,'hero_style','default'),(33247,38987,'_hero_style','field_62051d9dc5324'),(33248,38987,'hero_image_pos_x','right'),(33249,38987,'_hero_image_pos_x','field_62ec3d05390bb'),(33250,38987,'hero_image_pos_y','top'),(33251,38987,'_hero_image_pos_y','field_62ec3d05390bc'),(33252,38987,'hero_image_pos',''),(33253,38987,'_hero_image_pos','field_62ec3d05390ba'),(33254,38987,'hero_title','Biomechanics Coach Course - David Lloyd'),(33255,38987,'_hero_title','field_617571fe285e8'),(33256,38987,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(33257,38987,'_hero_text','field_6175723c285e9'),(33258,38987,'hero_actions','1'),(33259,38987,'_hero_actions','field_61757270285ea'),(33260,38987,'hero_icon',''),(33261,38987,'_hero_icon','field_61a6182199d03'),(33262,38987,'fft_hide_from_listings','0'),(33263,38987,'_fft_hide_from_listings','field_61f1320446ab2'),(33264,38987,'fft_page_format','default'),(33265,38987,'_fft_page_format','field_61ae213f1f218'),(33266,38987,'fft_hide_nav','1'),(33267,38987,'_fft_hide_nav','field_635bd5e43527c'),(33268,38987,'fft_hide_header_call_to_action','0'),(33269,38987,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33270,38987,'fft_page_sitemap','1'),(33271,38987,'_fft_page_sitemap','field_61af9b34e8181'),(33272,38987,'blocks','a:1:{i:0;s:4:\"form\";}'),(33273,38987,'_blocks','field_6176696113096'),(33274,38987,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(33275,38987,'_hero_actions_0_button','field_61757281285eb'),(33276,38987,'_thumbnail_id','38977'),(33277,38987,'__thumbnail_id','field_617570855ddaf'),(33278,38987,'blocks_0_acfe_flexible_toggle',''),(33279,38987,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(33280,38987,'blocks_0_acfe_flexible_layout_title','Form'),(33281,38987,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(33282,38987,'blocks_0_row_content_format','standard'),(33283,38987,'_blocks_0_row_content_format','field_6481ead962881'),(33284,38987,'blocks_0_row_content_title',''),(33285,38987,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(33286,38987,'blocks_0_row_content_heading',''),(33287,38987,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(33288,38987,'blocks_0_row_content_text','<p style=\"text-align: center;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: center;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: center;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(33289,38987,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(33290,38987,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(33291,38987,'_blocks_0_row_content_actions_0_button','field_61a0f5f5b3db5'),(33292,38987,'blocks_0_row_content_actions','1'),(33293,38987,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(33294,38987,'blocks_0_row_content',''),(33295,38987,'_blocks_0_row_content','field_61a0f5f5b3db0'),(33296,38987,'blocks_0_row_form',''),(33297,38987,'_blocks_0_row_form','field_61a4ff2c0b08e'),(33298,38987,'blocks_0_row_form_button_label',''),(33299,38987,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(33300,38988,'hero_style','default'),(33301,38988,'_hero_style','field_62051d9dc5324'),(33302,38988,'hero_image_pos_x','right'),(33303,38988,'_hero_image_pos_x','field_62ec3d05390bb'),(33304,38988,'hero_image_pos_y','top'),(33305,38988,'_hero_image_pos_y','field_62ec3d05390bc'),(33306,38988,'hero_image_pos',''),(33307,38988,'_hero_image_pos','field_62ec3d05390ba'),(33308,38988,'hero_title','Biomechanics Coach Course - David Lloyd'),(33309,38988,'_hero_title','field_617571fe285e8'),(33310,38988,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(33311,38988,'_hero_text','field_6175723c285e9'),(33312,38988,'hero_actions','1'),(33313,38988,'_hero_actions','field_61757270285ea'),(33314,38988,'hero_icon',''),(33315,38988,'_hero_icon','field_61a6182199d03'),(33316,38988,'fft_hide_from_listings','0'),(33317,38988,'_fft_hide_from_listings','field_61f1320446ab2'),(33318,38988,'fft_page_format','default'),(33319,38988,'_fft_page_format','field_61ae213f1f218'),(33320,38988,'fft_hide_nav','1'),(33321,38988,'_fft_hide_nav','field_635bd5e43527c'),(33322,38988,'fft_hide_header_call_to_action','0'),(33323,38988,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33324,38988,'fft_page_sitemap','1'),(33325,38988,'_fft_page_sitemap','field_61af9b34e8181'),(33326,38988,'blocks','a:1:{i:0;s:4:\"form\";}'),(33327,38988,'_blocks','field_6176696113096'),(33328,38988,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(33329,38988,'_hero_actions_0_button','field_61757281285eb'),(33330,38988,'_thumbnail_id','38977'),(33331,38988,'__thumbnail_id','field_617570855ddaf'),(33332,38988,'blocks_0_acfe_flexible_toggle',''),(33333,38988,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(33334,38988,'blocks_0_acfe_flexible_layout_title','Form'),(33335,38988,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(33336,38988,'blocks_0_row_content_format','standard'),(33337,38988,'_blocks_0_row_content_format','field_6481ead962881'),(33338,38988,'blocks_0_row_content_title',''),(33339,38988,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(33340,38988,'blocks_0_row_content_heading',''),(33341,38988,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(33342,38988,'blocks_0_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(33343,38988,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(33344,38988,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(33345,38988,'_blocks_0_row_content_actions_0_button','field_61a0f5f5b3db5'),(33346,38988,'blocks_0_row_content_actions','1'),(33347,38988,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(33348,38988,'blocks_0_row_content',''),(33349,38988,'_blocks_0_row_content','field_61a0f5f5b3db0'),(33350,38988,'blocks_0_row_form',''),(33351,38988,'_blocks_0_row_form','field_61a4ff2c0b08e'),(33352,38988,'blocks_0_row_form_button_label',''),(33353,38988,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(33355,38973,'blocks_0_acfe_flexible_toggle',''),(33356,38973,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(33357,38973,'blocks_0_acfe_flexible_layout_title','Icons'),(33358,38973,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(33359,38973,'blocks_0_options_theme','#ffffff'),(33360,38973,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(33361,38973,'blocks_0_options_format','row'),(33362,38973,'_blocks_0_options_format','field_64bfde9a90690'),(33363,38973,'blocks_0_options',''),(33364,38973,'_blocks_0_options','field_64bfdd9b90684'),(33365,38973,'blocks_0_icon_row_items_0_icon','qualification.svg'),(33366,38973,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(33367,38973,'blocks_0_icon_row_items_0_label','Course Type'),(33368,38973,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(33369,38973,'blocks_0_icon_row_items_0_text','Blended Learning'),(33370,38973,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(33371,38973,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(33372,38973,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(33373,38973,'blocks_0_icon_row_items_1_label','Qualification'),(33374,38973,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(33375,38973,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(33376,38973,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(33377,38973,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(33378,38973,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(33379,38973,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(33380,38973,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(33381,38973,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(33382,38973,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(33383,38973,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(33384,38973,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(33385,38973,'blocks_0_icon_row_items_3_label','IBA Registered'),(33386,38973,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(33387,38973,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(33388,38973,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(33389,38973,'blocks_0_icon_row_items','4'),(33390,38973,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(33391,38973,'blocks_1_acfe_flexible_toggle',''),(33392,38973,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(33393,38973,'blocks_1_acfe_flexible_layout_title','Form'),(33394,38973,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(33395,38973,'blocks_1_row_content_format','promotion'),(33396,38973,'_blocks_1_row_content_format','field_6481ead962881'),(33397,38973,'blocks_1_row_content_title',''),(33398,38973,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(33399,38973,'blocks_1_row_content_heading',''),(33400,38973,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(33401,38973,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(33402,38973,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(33403,38973,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(33404,38973,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(33405,38973,'blocks_1_row_content_actions','1'),(33406,38973,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(33407,38973,'blocks_1_row_content',''),(33408,38973,'_blocks_1_row_content','field_61a0f5f5b3db0'),(33409,38973,'blocks_1_row_form','40414'),(33410,38973,'_blocks_1_row_form','field_61a4ff2c0b08e'),(33411,38973,'blocks_1_row_form_button_label',''),(33412,38973,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(33413,38990,'hero_style','default'),(33414,38990,'_hero_style','field_62051d9dc5324'),(33415,38990,'hero_image_pos_x','right'),(33416,38990,'_hero_image_pos_x','field_62ec3d05390bb'),(33417,38990,'hero_image_pos_y','top'),(33418,38990,'_hero_image_pos_y','field_62ec3d05390bc'),(33419,38990,'hero_image_pos',''),(33420,38990,'_hero_image_pos','field_62ec3d05390ba'),(33421,38990,'hero_title','Biomechanics Coach Course - David Lloyd'),(33422,38990,'_hero_title','field_617571fe285e8'),(33423,38990,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(33424,38990,'_hero_text','field_6175723c285e9'),(33425,38990,'hero_actions','1'),(33426,38990,'_hero_actions','field_61757270285ea'),(33427,38990,'hero_icon',''),(33428,38990,'_hero_icon','field_61a6182199d03'),(33429,38990,'fft_hide_from_listings','0'),(33430,38990,'_fft_hide_from_listings','field_61f1320446ab2'),(33431,38990,'fft_page_format','default'),(33432,38990,'_fft_page_format','field_61ae213f1f218'),(33433,38990,'fft_hide_nav','1'),(33434,38990,'_fft_hide_nav','field_635bd5e43527c'),(33435,38990,'fft_hide_header_call_to_action','0'),(33436,38990,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33437,38990,'fft_page_sitemap','1'),(33438,38990,'_fft_page_sitemap','field_61af9b34e8181'),(33439,38990,'blocks','a:2:{i:0;s:5:\"icons\";i:1;s:4:\"form\";}'),(33440,38990,'_blocks','field_6176696113096'),(33441,38990,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(33442,38990,'_hero_actions_0_button','field_61757281285eb'),(33443,38990,'_thumbnail_id','38977'),(33444,38990,'__thumbnail_id','field_617570855ddaf'),(33445,38990,'blocks_0_acfe_flexible_toggle',''),(33446,38990,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(33447,38990,'blocks_0_acfe_flexible_layout_title','Icons'),(33448,38990,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(33449,38990,'blocks_0_options_theme','#b61234'),(33450,38990,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(33451,38990,'blocks_0_options_format','row'),(33452,38990,'_blocks_0_options_format','field_64bfde9a90690'),(33453,38990,'blocks_0_options',''),(33454,38990,'_blocks_0_options','field_64bfdd9b90684'),(33455,38990,'blocks_0_icon_row_items_0_icon','qualification.svg'),(33456,38990,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(33457,38990,'blocks_0_icon_row_items_0_label','Course Type'),(33458,38990,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(33459,38990,'blocks_0_icon_row_items_0_text','Blended Learning'),(33460,38990,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(33461,38990,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(33462,38990,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(33463,38990,'blocks_0_icon_row_items_1_label','Qualification'),(33464,38990,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(33465,38990,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(33466,38990,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(33467,38990,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(33468,38990,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(33469,38990,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(33470,38990,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(33471,38990,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(33472,38990,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(33473,38990,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(33474,38990,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(33475,38990,'blocks_0_icon_row_items_3_label','IBA Registered'),(33476,38990,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(33477,38990,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(33478,38990,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(33479,38990,'blocks_0_icon_row_items','4'),(33480,38990,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(33481,38990,'blocks_1_acfe_flexible_toggle',''),(33482,38990,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(33483,38990,'blocks_1_acfe_flexible_layout_title','Form'),(33484,38990,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(33485,38990,'blocks_1_row_content_format','standard'),(33486,38990,'_blocks_1_row_content_format','field_6481ead962881'),(33487,38990,'blocks_1_row_content_title',''),(33488,38990,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(33489,38990,'blocks_1_row_content_heading',''),(33490,38990,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(33491,38990,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(33492,38990,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(33493,38990,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(33494,38990,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(33495,38990,'blocks_1_row_content_actions','1'),(33496,38990,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(33497,38990,'blocks_1_row_content',''),(33498,38990,'_blocks_1_row_content','field_61a0f5f5b3db0'),(33499,38990,'blocks_1_row_form',''),(33500,38990,'_blocks_1_row_form','field_61a4ff2c0b08e'),(33501,38990,'blocks_1_row_form_button_label',''),(33502,38990,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(33503,38973,'blocks_1_row_content_promotion_label','Up to 10% Off'),(33504,38973,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(33505,38973,'blocks_1_row_content_promotion_heading','Diploma in Biomechanics Coaching'),(33506,38973,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(33507,38973,'blocks_1_row_content_promotion_value','Up to 10% Off'),(33508,38973,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(33509,38973,'blocks_1_row_content_promotion_terms','Receive 10% off the Diploma in Biomechanics Coaching as a David Lloyd Personal Trainer'),(33510,38973,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(33511,38973,'blocks_1_row_content_promotion',''),(33512,38973,'_blocks_1_row_content_promotion','field_6481eb3962882'),(33513,38973,'blocks_1_row_form_title','David Lloyd Referral'),(33514,38973,'_blocks_1_row_form_title','field_64872db5127af'),(33515,38991,'hero_style','default'),(33516,38991,'_hero_style','field_62051d9dc5324'),(33517,38991,'hero_image_pos_x','right'),(33518,38991,'_hero_image_pos_x','field_62ec3d05390bb'),(33519,38991,'hero_image_pos_y','top'),(33520,38991,'_hero_image_pos_y','field_62ec3d05390bc'),(33521,38991,'hero_image_pos',''),(33522,38991,'_hero_image_pos','field_62ec3d05390ba'),(33523,38991,'hero_title','Biomechanics Coach Course - David Lloyd'),(33524,38991,'_hero_title','field_617571fe285e8'),(33525,38991,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(33526,38991,'_hero_text','field_6175723c285e9'),(33527,38991,'hero_actions','1'),(33528,38991,'_hero_actions','field_61757270285ea'),(33529,38991,'hero_icon',''),(33530,38991,'_hero_icon','field_61a6182199d03'),(33531,38991,'fft_hide_from_listings','0'),(33532,38991,'_fft_hide_from_listings','field_61f1320446ab2'),(33533,38991,'fft_page_format','default'),(33534,38991,'_fft_page_format','field_61ae213f1f218'),(33535,38991,'fft_hide_nav','1'),(33536,38991,'_fft_hide_nav','field_635bd5e43527c'),(33537,38991,'fft_hide_header_call_to_action','0'),(33538,38991,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33539,38991,'fft_page_sitemap','1'),(33540,38991,'_fft_page_sitemap','field_61af9b34e8181'),(33541,38991,'blocks','a:2:{i:0;s:5:\"icons\";i:1;s:4:\"form\";}'),(33542,38991,'_blocks','field_6176696113096'),(33543,38991,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(33544,38991,'_hero_actions_0_button','field_61757281285eb'),(33545,38991,'_thumbnail_id','38977'),(33546,38991,'__thumbnail_id','field_617570855ddaf'),(33547,38991,'blocks_0_acfe_flexible_toggle',''),(33548,38991,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(33549,38991,'blocks_0_acfe_flexible_layout_title','Icons'),(33550,38991,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(33551,38991,'blocks_0_options_theme','#b61234'),(33552,38991,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(33553,38991,'blocks_0_options_format','row'),(33554,38991,'_blocks_0_options_format','field_64bfde9a90690'),(33555,38991,'blocks_0_options',''),(33556,38991,'_blocks_0_options','field_64bfdd9b90684'),(33557,38991,'blocks_0_icon_row_items_0_icon','qualification.svg'),(33558,38991,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(33559,38991,'blocks_0_icon_row_items_0_label','Course Type'),(33560,38991,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(33561,38991,'blocks_0_icon_row_items_0_text','Blended Learning'),(33562,38991,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(33563,38991,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(33564,38991,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(33565,38991,'blocks_0_icon_row_items_1_label','Qualification'),(33566,38991,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(33567,38991,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(33568,38991,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(33569,38991,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(33570,38991,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(33571,38991,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(33572,38991,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(33573,38991,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(33574,38991,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(33575,38991,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(33576,38991,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(33577,38991,'blocks_0_icon_row_items_3_label','IBA Registered'),(33578,38991,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(33579,38991,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(33580,38991,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(33581,38991,'blocks_0_icon_row_items','4'),(33582,38991,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(33583,38991,'blocks_1_acfe_flexible_toggle',''),(33584,38991,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(33585,38991,'blocks_1_acfe_flexible_layout_title','Form'),(33586,38991,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(33587,38991,'blocks_1_row_content_format','promotion'),(33588,38991,'_blocks_1_row_content_format','field_6481ead962881'),(33589,38991,'blocks_1_row_content_title',''),(33590,38991,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(33591,38991,'blocks_1_row_content_heading',''),(33592,38991,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(33593,38991,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(33594,38991,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(33595,38991,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(33596,38991,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(33597,38991,'blocks_1_row_content_actions','1'),(33598,38991,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(33599,38991,'blocks_1_row_content',''),(33600,38991,'_blocks_1_row_content','field_61a0f5f5b3db0'),(33601,38991,'blocks_1_row_form',''),(33602,38991,'_blocks_1_row_form','field_61a4ff2c0b08e'),(33603,38991,'blocks_1_row_form_button_label',''),(33604,38991,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(33605,38991,'blocks_1_row_content_promotion_label',''),(33606,38991,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(33607,38991,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(33608,38991,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(33609,38991,'blocks_1_row_content_promotion_value','Up to 10% Off'),(33610,38991,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(33611,38991,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(33612,38991,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(33613,38991,'blocks_1_row_content_promotion',''),(33614,38991,'_blocks_1_row_content_promotion','field_6481eb3962882'),(33615,38991,'blocks_1_row_form_title','David Lloyd Referral'),(33616,38991,'_blocks_1_row_form_title','field_64872db5127af'),(33617,38992,'hero_style','default'),(33618,38992,'_hero_style','field_62051d9dc5324'),(33619,38992,'hero_image_pos_x','right'),(33620,38992,'_hero_image_pos_x','field_62ec3d05390bb'),(33621,38992,'hero_image_pos_y','top'),(33622,38992,'_hero_image_pos_y','field_62ec3d05390bc'),(33623,38992,'hero_image_pos',''),(33624,38992,'_hero_image_pos','field_62ec3d05390ba'),(33625,38992,'hero_title','Biomechanics Coach Course - David Lloyd'),(33626,38992,'_hero_title','field_617571fe285e8'),(33627,38992,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(33628,38992,'_hero_text','field_6175723c285e9'),(33629,38992,'hero_actions','1'),(33630,38992,'_hero_actions','field_61757270285ea'),(33631,38992,'hero_icon',''),(33632,38992,'_hero_icon','field_61a6182199d03'),(33633,38992,'fft_hide_from_listings','0'),(33634,38992,'_fft_hide_from_listings','field_61f1320446ab2'),(33635,38992,'fft_page_format','default'),(33636,38992,'_fft_page_format','field_61ae213f1f218'),(33637,38992,'fft_hide_nav','1'),(33638,38992,'_fft_hide_nav','field_635bd5e43527c'),(33639,38992,'fft_hide_header_call_to_action','0'),(33640,38992,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33641,38992,'fft_page_sitemap','1'),(33642,38992,'_fft_page_sitemap','field_61af9b34e8181'),(33643,38992,'blocks','a:2:{i:0;s:5:\"icons\";i:1;s:4:\"form\";}'),(33644,38992,'_blocks','field_6176696113096'),(33645,38992,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(33646,38992,'_hero_actions_0_button','field_61757281285eb'),(33647,38992,'_thumbnail_id','38977'),(33648,38992,'__thumbnail_id','field_617570855ddaf'),(33649,38992,'blocks_0_acfe_flexible_toggle',''),(33650,38992,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(33651,38992,'blocks_0_acfe_flexible_layout_title','Icons'),(33652,38992,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(33653,38992,'blocks_0_options_theme','#b61234'),(33654,38992,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(33655,38992,'blocks_0_options_format','row'),(33656,38992,'_blocks_0_options_format','field_64bfde9a90690'),(33657,38992,'blocks_0_options',''),(33658,38992,'_blocks_0_options','field_64bfdd9b90684'),(33659,38992,'blocks_0_icon_row_items_0_icon','qualification.svg'),(33660,38992,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(33661,38992,'blocks_0_icon_row_items_0_label','Course Type'),(33662,38992,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(33663,38992,'blocks_0_icon_row_items_0_text','Blended Learning'),(33664,38992,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(33665,38992,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(33666,38992,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(33667,38992,'blocks_0_icon_row_items_1_label','Qualification'),(33668,38992,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(33669,38992,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(33670,38992,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(33671,38992,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(33672,38992,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(33673,38992,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(33674,38992,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(33675,38992,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(33676,38992,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(33677,38992,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(33678,38992,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(33679,38992,'blocks_0_icon_row_items_3_label','IBA Registered'),(33680,38992,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(33681,38992,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(33682,38992,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(33683,38992,'blocks_0_icon_row_items','4'),(33684,38992,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(33685,38992,'blocks_1_acfe_flexible_toggle',''),(33686,38992,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(33687,38992,'blocks_1_acfe_flexible_layout_title','Form'),(33688,38992,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(33689,38992,'blocks_1_row_content_format','promotion'),(33690,38992,'_blocks_1_row_content_format','field_6481ead962881'),(33691,38992,'blocks_1_row_content_title',''),(33692,38992,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(33693,38992,'blocks_1_row_content_heading',''),(33694,38992,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(33695,38992,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(33696,38992,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(33697,38992,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(33698,38992,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(33699,38992,'blocks_1_row_content_actions','1'),(33700,38992,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(33701,38992,'blocks_1_row_content',''),(33702,38992,'_blocks_1_row_content','field_61a0f5f5b3db0'),(33703,38992,'blocks_1_row_form',''),(33704,38992,'_blocks_1_row_form','field_61a4ff2c0b08e'),(33705,38992,'blocks_1_row_form_button_label',''),(33706,38992,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(33707,38992,'blocks_1_row_content_promotion_label','Up to 10% Off'),(33708,38992,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(33709,38992,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(33710,38992,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(33711,38992,'blocks_1_row_content_promotion_value','Up to 10% Off'),(33712,38992,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(33713,38992,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(33714,38992,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(33715,38992,'blocks_1_row_content_promotion',''),(33716,38992,'_blocks_1_row_content_promotion','field_6481eb3962882'),(33717,38992,'blocks_1_row_form_title','David Lloyd Referral'),(33718,38992,'_blocks_1_row_form_title','field_64872db5127af'),(33719,38993,'hero_style','default'),(33720,38993,'_hero_style','field_62051d9dc5324'),(33721,38993,'hero_image_pos_x','right'),(33722,38993,'_hero_image_pos_x','field_62ec3d05390bb'),(33723,38993,'hero_image_pos_y','top'),(33724,38993,'_hero_image_pos_y','field_62ec3d05390bc'),(33725,38993,'hero_image_pos',''),(33726,38993,'_hero_image_pos','field_62ec3d05390ba'),(33727,38993,'hero_title','Biomechanics Coach Course - David Lloyd'),(33728,38993,'_hero_title','field_617571fe285e8'),(33729,38993,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(33730,38993,'_hero_text','field_6175723c285e9'),(33731,38993,'hero_actions','1'),(33732,38993,'_hero_actions','field_61757270285ea'),(33733,38993,'hero_icon',''),(33734,38993,'_hero_icon','field_61a6182199d03'),(33735,38993,'fft_hide_from_listings','0'),(33736,38993,'_fft_hide_from_listings','field_61f1320446ab2'),(33737,38993,'fft_page_format','default'),(33738,38993,'_fft_page_format','field_61ae213f1f218'),(33739,38993,'fft_hide_nav','1'),(33740,38993,'_fft_hide_nav','field_635bd5e43527c'),(33741,38993,'fft_hide_header_call_to_action','0'),(33742,38993,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33743,38993,'fft_page_sitemap','1'),(33744,38993,'_fft_page_sitemap','field_61af9b34e8181'),(33745,38993,'blocks','a:2:{i:0;s:5:\"icons\";i:1;s:4:\"form\";}'),(33746,38993,'_blocks','field_6176696113096'),(33747,38993,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(33748,38993,'_hero_actions_0_button','field_61757281285eb'),(33749,38993,'_thumbnail_id','38977'),(33750,38993,'__thumbnail_id','field_617570855ddaf'),(33751,38993,'blocks_0_acfe_flexible_toggle',''),(33752,38993,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(33753,38993,'blocks_0_acfe_flexible_layout_title','Icons'),(33754,38993,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(33755,38993,'blocks_0_options_theme','#f5f5f5'),(33756,38993,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(33757,38993,'blocks_0_options_format','row'),(33758,38993,'_blocks_0_options_format','field_64bfde9a90690'),(33759,38993,'blocks_0_options',''),(33760,38993,'_blocks_0_options','field_64bfdd9b90684'),(33761,38993,'blocks_0_icon_row_items_0_icon','qualification.svg'),(33762,38993,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(33763,38993,'blocks_0_icon_row_items_0_label','Course Type'),(33764,38993,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(33765,38993,'blocks_0_icon_row_items_0_text','Blended Learning'),(33766,38993,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(33767,38993,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(33768,38993,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(33769,38993,'blocks_0_icon_row_items_1_label','Qualification'),(33770,38993,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(33771,38993,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(33772,38993,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(33773,38993,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(33774,38993,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(33775,38993,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(33776,38993,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(33777,38993,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(33778,38993,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(33779,38993,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(33780,38993,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(33781,38993,'blocks_0_icon_row_items_3_label','IBA Registered'),(33782,38993,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(33783,38993,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(33784,38993,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(33785,38993,'blocks_0_icon_row_items','4'),(33786,38993,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(33787,38993,'blocks_1_acfe_flexible_toggle',''),(33788,38993,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(33789,38993,'blocks_1_acfe_flexible_layout_title','Form'),(33790,38993,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(33791,38993,'blocks_1_row_content_format','promotion'),(33792,38993,'_blocks_1_row_content_format','field_6481ead962881'),(33793,38993,'blocks_1_row_content_title',''),(33794,38993,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(33795,38993,'blocks_1_row_content_heading',''),(33796,38993,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(33797,38993,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(33798,38993,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(33799,38993,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(33800,38993,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(33801,38993,'blocks_1_row_content_actions','1'),(33802,38993,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(33803,38993,'blocks_1_row_content',''),(33804,38993,'_blocks_1_row_content','field_61a0f5f5b3db0'),(33805,38993,'blocks_1_row_form',''),(33806,38993,'_blocks_1_row_form','field_61a4ff2c0b08e'),(33807,38993,'blocks_1_row_form_button_label',''),(33808,38993,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(33809,38993,'blocks_1_row_content_promotion_label','Up to 10% Off'),(33810,38993,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(33811,38993,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(33812,38993,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(33813,38993,'blocks_1_row_content_promotion_value','Up to 10% Off'),(33814,38993,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(33815,38993,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(33816,38993,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(33817,38993,'blocks_1_row_content_promotion',''),(33818,38993,'_blocks_1_row_content_promotion','field_6481eb3962882'),(33819,38993,'blocks_1_row_form_title','David Lloyd Referral'),(33820,38993,'_blocks_1_row_form_title','field_64872db5127af'),(33821,38994,'hero_style','default'),(33822,38994,'_hero_style','field_62051d9dc5324'),(33823,38994,'hero_image_pos_x','right'),(33824,38994,'_hero_image_pos_x','field_62ec3d05390bb'),(33825,38994,'hero_image_pos_y','top'),(33826,38994,'_hero_image_pos_y','field_62ec3d05390bc'),(33827,38994,'hero_image_pos',''),(33828,38994,'_hero_image_pos','field_62ec3d05390ba'),(33829,38994,'hero_title','Biomechanics Coach Course - David Lloyd'),(33830,38994,'_hero_title','field_617571fe285e8'),(33831,38994,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(33832,38994,'_hero_text','field_6175723c285e9'),(33833,38994,'hero_actions','1'),(33834,38994,'_hero_actions','field_61757270285ea'),(33835,38994,'hero_icon',''),(33836,38994,'_hero_icon','field_61a6182199d03'),(33837,38994,'fft_hide_from_listings','0'),(33838,38994,'_fft_hide_from_listings','field_61f1320446ab2'),(33839,38994,'fft_page_format','default'),(33840,38994,'_fft_page_format','field_61ae213f1f218'),(33841,38994,'fft_hide_nav','1'),(33842,38994,'_fft_hide_nav','field_635bd5e43527c'),(33843,38994,'fft_hide_header_call_to_action','0'),(33844,38994,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33845,38994,'fft_page_sitemap','1'),(33846,38994,'_fft_page_sitemap','field_61af9b34e8181'),(33847,38994,'blocks','a:2:{i:0;s:5:\"icons\";i:1;s:4:\"form\";}'),(33848,38994,'_blocks','field_6176696113096'),(33849,38994,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(33850,38994,'_hero_actions_0_button','field_61757281285eb'),(33851,38994,'_thumbnail_id','38977'),(33852,38994,'__thumbnail_id','field_617570855ddaf'),(33853,38994,'blocks_0_acfe_flexible_toggle',''),(33854,38994,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(33855,38994,'blocks_0_acfe_flexible_layout_title','Icons'),(33856,38994,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(33857,38994,'blocks_0_options_theme','#ffffff'),(33858,38994,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(33859,38994,'blocks_0_options_format','row'),(33860,38994,'_blocks_0_options_format','field_64bfde9a90690'),(33861,38994,'blocks_0_options',''),(33862,38994,'_blocks_0_options','field_64bfdd9b90684'),(33863,38994,'blocks_0_icon_row_items_0_icon','qualification.svg'),(33864,38994,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(33865,38994,'blocks_0_icon_row_items_0_label','Course Type'),(33866,38994,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(33867,38994,'blocks_0_icon_row_items_0_text','Blended Learning'),(33868,38994,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(33869,38994,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(33870,38994,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(33871,38994,'blocks_0_icon_row_items_1_label','Qualification'),(33872,38994,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(33873,38994,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(33874,38994,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(33875,38994,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(33876,38994,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(33877,38994,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(33878,38994,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(33879,38994,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(33880,38994,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(33881,38994,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(33882,38994,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(33883,38994,'blocks_0_icon_row_items_3_label','IBA Registered'),(33884,38994,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(33885,38994,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(33886,38994,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(33887,38994,'blocks_0_icon_row_items','4'),(33888,38994,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(33889,38994,'blocks_1_acfe_flexible_toggle',''),(33890,38994,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(33891,38994,'blocks_1_acfe_flexible_layout_title','Form'),(33892,38994,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(33893,38994,'blocks_1_row_content_format','promotion'),(33894,38994,'_blocks_1_row_content_format','field_6481ead962881'),(33895,38994,'blocks_1_row_content_title',''),(33896,38994,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(33897,38994,'blocks_1_row_content_heading',''),(33898,38994,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(33899,38994,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(33900,38994,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(33901,38994,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(33902,38994,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(33903,38994,'blocks_1_row_content_actions','1'),(33904,38994,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(33905,38994,'blocks_1_row_content',''),(33906,38994,'_blocks_1_row_content','field_61a0f5f5b3db0'),(33907,38994,'blocks_1_row_form',''),(33908,38994,'_blocks_1_row_form','field_61a4ff2c0b08e'),(33909,38994,'blocks_1_row_form_button_label',''),(33910,38994,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(33911,38994,'blocks_1_row_content_promotion_label','Up to 10% Off'),(33912,38994,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(33913,38994,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(33914,38994,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(33915,38994,'blocks_1_row_content_promotion_value','Up to 10% Off'),(33916,38994,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(33917,38994,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(33918,38994,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(33919,38994,'blocks_1_row_content_promotion',''),(33920,38994,'_blocks_1_row_content_promotion','field_6481eb3962882'),(33921,38994,'blocks_1_row_form_title','David Lloyd Referral'),(33922,38994,'_blocks_1_row_form_title','field_64872db5127af'),(33965,38996,'hero_style','default'),(33966,38996,'_hero_style','field_62051d9dc5324'),(33967,38996,'hero_image_pos_x','right'),(33968,38996,'_hero_image_pos_x','field_62ec3d05390bb'),(33969,38996,'hero_image_pos_y','top'),(33970,38996,'_hero_image_pos_y','field_62ec3d05390bc'),(33971,38996,'hero_image_pos',''),(33972,38996,'_hero_image_pos','field_62ec3d05390ba'),(33973,38996,'hero_title','Biomechanics Coach Course - David Lloyd'),(33974,38996,'_hero_title','field_617571fe285e8'),(33975,38996,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(33976,38996,'_hero_text','field_6175723c285e9'),(33977,38996,'hero_actions','1'),(33978,38996,'_hero_actions','field_61757270285ea'),(33979,38996,'hero_icon',''),(33980,38996,'_hero_icon','field_61a6182199d03'),(33981,38996,'fft_hide_from_listings','0'),(33982,38996,'_fft_hide_from_listings','field_61f1320446ab2'),(33983,38996,'fft_page_format','default'),(33984,38996,'_fft_page_format','field_61ae213f1f218'),(33985,38996,'fft_hide_nav','1'),(33986,38996,'_fft_hide_nav','field_635bd5e43527c'),(33987,38996,'fft_hide_header_call_to_action','0'),(33988,38996,'_fft_hide_header_call_to_action','field_635bd6723527d'),(33989,38996,'fft_page_sitemap','1'),(33990,38996,'_fft_page_sitemap','field_61af9b34e8181'),(33991,38996,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";}'),(33992,38996,'_blocks','field_6176696113096'),(33993,38996,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(33994,38996,'_hero_actions_0_button','field_61757281285eb'),(33995,38996,'_thumbnail_id','38977'),(33996,38996,'__thumbnail_id','field_617570855ddaf'),(33997,38996,'blocks_0_acfe_flexible_toggle',''),(33998,38996,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(33999,38996,'blocks_0_acfe_flexible_layout_title','Icons'),(34000,38996,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(34001,38996,'blocks_0_options_theme','#ffffff'),(34002,38996,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(34003,38996,'blocks_0_options_format','row'),(34004,38996,'_blocks_0_options_format','field_64bfde9a90690'),(34005,38996,'blocks_0_options',''),(34006,38996,'_blocks_0_options','field_64bfdd9b90684'),(34007,38996,'blocks_0_icon_row_items_0_icon','qualification.svg'),(34008,38996,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(34009,38996,'blocks_0_icon_row_items_0_label','Course Type'),(34010,38996,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(34011,38996,'blocks_0_icon_row_items_0_text','Blended Learning'),(34012,38996,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(34013,38996,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(34014,38996,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(34015,38996,'blocks_0_icon_row_items_1_label','Qualification'),(34016,38996,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(34017,38996,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(34018,38996,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(34019,38996,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(34020,38996,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(34021,38996,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(34022,38996,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(34023,38996,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(34024,38996,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(34025,38996,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(34026,38996,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(34027,38996,'blocks_0_icon_row_items_3_label','IBA Registered'),(34028,38996,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(34029,38996,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(34030,38996,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(34031,38996,'blocks_0_icon_row_items','4'),(34032,38996,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(34033,38996,'blocks_1_acfe_flexible_toggle',''),(34034,38996,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(34035,38996,'blocks_1_acfe_flexible_layout_title','Form'),(34036,38996,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(34037,38996,'blocks_1_row_content_format','promotion'),(34038,38996,'_blocks_1_row_content_format','field_6481ead962881'),(34039,38996,'blocks_1_row_content_title',''),(34040,38996,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(34041,38996,'blocks_1_row_content_heading',''),(34042,38996,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(34043,38996,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(34044,38996,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(34045,38996,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(34046,38996,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(34047,38996,'blocks_1_row_content_actions','1'),(34048,38996,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(34049,38996,'blocks_1_row_content',''),(34050,38996,'_blocks_1_row_content','field_61a0f5f5b3db0'),(34051,38996,'blocks_1_row_form',''),(34052,38996,'_blocks_1_row_form','field_61a4ff2c0b08e'),(34053,38996,'blocks_1_row_form_button_label',''),(34054,38996,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(34055,38996,'blocks_1_row_content_promotion_label','Up to 10% Off'),(34056,38996,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(34057,38996,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(34058,38996,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(34059,38996,'blocks_1_row_content_promotion_value','Up to 10% Off'),(34060,38996,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(34061,38996,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(34062,38996,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(34063,38996,'blocks_1_row_content_promotion',''),(34064,38996,'_blocks_1_row_content_promotion','field_6481eb3962882'),(34065,38996,'blocks_1_row_form_title','David Lloyd Referral'),(34066,38996,'_blocks_1_row_form_title','field_64872db5127af'),(34067,38996,'blocks_2_acfe_flexible_toggle',''),(34068,38996,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(34069,38996,'blocks_2_acfe_flexible_layout_title','Video'),(34070,38996,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(34071,38996,'blocks_2_size','large'),(34072,38996,'_blocks_2_size','field_6487038f297c1'),(34073,38996,'blocks_2_row_content_title',''),(34074,38996,'_blocks_2_row_content_title','field_64870132a865d'),(34075,38996,'blocks_2_row_content_heading',''),(34076,38996,'_blocks_2_row_content_heading','field_64870142a865e'),(34077,38996,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(34078,38996,'_blocks_2_row_content_text','field_64870148a865f'),(34079,38996,'blocks_2_row_content',''),(34080,38996,'_blocks_2_row_content','field_6487008ba865c'),(34081,38996,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(34082,38996,'_blocks_2_video_src','field_6193c4a98ec07'),(34083,38996,'blocks_2_video_thumbnail',''),(34084,38996,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(34085,38996,'blocks_3_acfe_flexible_toggle',''),(34086,38996,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(34087,38996,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(34088,38996,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(34089,38996,'blocks_3_options_theme','#ffffff'),(34090,38996,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(34091,38996,'blocks_3_options_reverse','0'),(34092,38996,'_blocks_3_options_reverse','field_61768049bb8ac'),(34093,38996,'blocks_3_options',''),(34094,38996,'_blocks_3_options','field_617682517c334'),(34095,38996,'blocks_3_split_5050_image',''),(34096,38996,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(34097,38996,'blocks_3_split_5050_video','https://youtu.be/9V5OgVeLLKA'),(34098,38996,'_blocks_3_split_5050_video','field_6239f3160848a'),(34099,38996,'blocks_3_split_5050_content_title',''),(34100,38996,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(34101,38996,'blocks_3_split_5050_content_heading',''),(34102,38996,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(34103,38996,'blocks_3_split_5050_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(34104,38996,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(34105,38996,'blocks_3_split_5050_content_actions',''),(34106,38996,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(34107,38996,'blocks_3_split_5050_content',''),(34108,38996,'_blocks_3_split_5050_content','field_61767afceb8ba'),(34109,38997,'hero_style','default'),(34110,38997,'_hero_style','field_62051d9dc5324'),(34111,38997,'hero_image_pos_x','right'),(34112,38997,'_hero_image_pos_x','field_62ec3d05390bb'),(34113,38997,'hero_image_pos_y','top'),(34114,38997,'_hero_image_pos_y','field_62ec3d05390bc'),(34115,38997,'hero_image_pos',''),(34116,38997,'_hero_image_pos','field_62ec3d05390ba'),(34117,38997,'hero_title','Biomechanics Coach Course - David Lloyd'),(34118,38997,'_hero_title','field_617571fe285e8'),(34119,38997,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(34120,38997,'_hero_text','field_6175723c285e9'),(34121,38997,'hero_actions','1'),(34122,38997,'_hero_actions','field_61757270285ea'),(34123,38997,'hero_icon',''),(34124,38997,'_hero_icon','field_61a6182199d03'),(34125,38997,'fft_hide_from_listings','0'),(34126,38997,'_fft_hide_from_listings','field_61f1320446ab2'),(34127,38997,'fft_page_format','default'),(34128,38997,'_fft_page_format','field_61ae213f1f218'),(34129,38997,'fft_hide_nav','1'),(34130,38997,'_fft_hide_nav','field_635bd5e43527c'),(34131,38997,'fft_hide_header_call_to_action','0'),(34132,38997,'_fft_hide_header_call_to_action','field_635bd6723527d'),(34133,38997,'fft_page_sitemap','1'),(34134,38997,'_fft_page_sitemap','field_61af9b34e8181'),(34135,38997,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";}'),(34136,38997,'_blocks','field_6176696113096'),(34137,38997,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(34138,38997,'_hero_actions_0_button','field_61757281285eb'),(34139,38997,'_thumbnail_id','38977'),(34140,38997,'__thumbnail_id','field_617570855ddaf'),(34141,38997,'blocks_0_acfe_flexible_toggle',''),(34142,38997,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(34143,38997,'blocks_0_acfe_flexible_layout_title','Icons'),(34144,38997,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(34145,38997,'blocks_0_options_theme','#ffffff'),(34146,38997,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(34147,38997,'blocks_0_options_format','row'),(34148,38997,'_blocks_0_options_format','field_64bfde9a90690'),(34149,38997,'blocks_0_options',''),(34150,38997,'_blocks_0_options','field_64bfdd9b90684'),(34151,38997,'blocks_0_icon_row_items_0_icon','qualification.svg'),(34152,38997,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(34153,38997,'blocks_0_icon_row_items_0_label','Course Type'),(34154,38997,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(34155,38997,'blocks_0_icon_row_items_0_text','Blended Learning'),(34156,38997,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(34157,38997,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(34158,38997,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(34159,38997,'blocks_0_icon_row_items_1_label','Qualification'),(34160,38997,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(34161,38997,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(34162,38997,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(34163,38997,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(34164,38997,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(34165,38997,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(34166,38997,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(34167,38997,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(34168,38997,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(34169,38997,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(34170,38997,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(34171,38997,'blocks_0_icon_row_items_3_label','IBA Registered'),(34172,38997,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(34173,38997,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(34174,38997,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(34175,38997,'blocks_0_icon_row_items','4'),(34176,38997,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(34177,38997,'blocks_1_acfe_flexible_toggle',''),(34178,38997,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(34179,38997,'blocks_1_acfe_flexible_layout_title','Form'),(34180,38997,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(34181,38997,'blocks_1_row_content_format','promotion'),(34182,38997,'_blocks_1_row_content_format','field_6481ead962881'),(34183,38997,'blocks_1_row_content_title',''),(34184,38997,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(34185,38997,'blocks_1_row_content_heading',''),(34186,38997,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(34187,38997,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(34188,38997,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(34189,38997,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(34190,38997,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(34191,38997,'blocks_1_row_content_actions','1'),(34192,38997,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(34193,38997,'blocks_1_row_content',''),(34194,38997,'_blocks_1_row_content','field_61a0f5f5b3db0'),(34195,38997,'blocks_1_row_form',''),(34196,38997,'_blocks_1_row_form','field_61a4ff2c0b08e'),(34197,38997,'blocks_1_row_form_button_label',''),(34198,38997,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(34199,38997,'blocks_1_row_content_promotion_label','Up to 10% Off'),(34200,38997,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(34201,38997,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(34202,38997,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(34203,38997,'blocks_1_row_content_promotion_value','Up to 10% Off'),(34204,38997,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(34205,38997,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(34206,38997,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(34207,38997,'blocks_1_row_content_promotion',''),(34208,38997,'_blocks_1_row_content_promotion','field_6481eb3962882'),(34209,38997,'blocks_1_row_form_title','David Lloyd Referral'),(34210,38997,'_blocks_1_row_form_title','field_64872db5127af'),(34211,38997,'blocks_2_acfe_flexible_toggle',''),(34212,38997,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(34213,38997,'blocks_2_acfe_flexible_layout_title','Video'),(34214,38997,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(34215,38997,'blocks_2_size','large'),(34216,38997,'_blocks_2_size','field_6487038f297c1'),(34217,38997,'blocks_2_row_content_title',''),(34218,38997,'_blocks_2_row_content_title','field_64870132a865d'),(34219,38997,'blocks_2_row_content_heading','Course Overview'),(34220,38997,'_blocks_2_row_content_heading','field_64870142a865e'),(34221,38997,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(34222,38997,'_blocks_2_row_content_text','field_64870148a865f'),(34223,38997,'blocks_2_row_content',''),(34224,38997,'_blocks_2_row_content','field_6487008ba865c'),(34225,38997,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(34226,38997,'_blocks_2_video_src','field_6193c4a98ec07'),(34227,38997,'blocks_2_video_thumbnail',''),(34228,38997,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(34229,38997,'blocks_3_acfe_flexible_toggle',''),(34230,38997,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(34231,38997,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(34232,38997,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(34233,38997,'blocks_3_options_theme','#ffffff'),(34234,38997,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(34235,38997,'blocks_3_options_reverse','0'),(34236,38997,'_blocks_3_options_reverse','field_61768049bb8ac'),(34237,38997,'blocks_3_options',''),(34238,38997,'_blocks_3_options','field_617682517c334'),(34239,38997,'blocks_3_split_5050_image',''),(34240,38997,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(34241,38997,'blocks_3_split_5050_video','https://youtu.be/9V5OgVeLLKA'),(34242,38997,'_blocks_3_split_5050_video','field_6239f3160848a'),(34243,38997,'blocks_3_split_5050_content_title',''),(34244,38997,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(34245,38997,'blocks_3_split_5050_content_heading',''),(34246,38997,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(34247,38997,'blocks_3_split_5050_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(34248,38997,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(34249,38997,'blocks_3_split_5050_content_actions',''),(34250,38997,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(34251,38997,'blocks_3_split_5050_content',''),(34252,38997,'_blocks_3_split_5050_content','field_61767afceb8ba'),(34253,38998,'_wp_attached_file','2024/07/Black-and-White-Professional-Fitness-Youtube-Thumbnail-3.png'),(34254,38998,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:68:\"2024/07/Black-and-White-Professional-Fitness-Youtube-Thumbnail-3.png\";s:8:\"filesize\";i:671485;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:297076;}s:5:\"large\";a:5:{s:4:\"file\";s:69:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:461755;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84530;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:224610;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116196;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-900x720.png\";s:5:\"width\";i:900;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:376634;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:69:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-1200x720.png\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:474830;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99403;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:340664;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:69:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-1200x720.png\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:474830;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76121;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-675x720.png\";s:5:\"width\";i:675;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:265477;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-900x720.png\";s:5:\"width\";i:900;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:376634;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103230;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:367402;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:69:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-1200x720.png\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:474830;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84530;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:68:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:297076;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:69:\"Black-and-White-Professional-Fitness-Youtube-Thumbnail-3-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:461755;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(34255,38999,'hero_style','default'),(34256,38999,'_hero_style','field_62051d9dc5324'),(34257,38999,'hero_image_pos_x','right'),(34258,38999,'_hero_image_pos_x','field_62ec3d05390bb'),(34259,38999,'hero_image_pos_y','top'),(34260,38999,'_hero_image_pos_y','field_62ec3d05390bc'),(34261,38999,'hero_image_pos',''),(34262,38999,'_hero_image_pos','field_62ec3d05390ba'),(34263,38999,'hero_title','Biomechanics Coach Course - David Lloyd'),(34264,38999,'_hero_title','field_617571fe285e8'),(34265,38999,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(34266,38999,'_hero_text','field_6175723c285e9'),(34267,38999,'hero_actions','1'),(34268,38999,'_hero_actions','field_61757270285ea'),(34269,38999,'hero_icon',''),(34270,38999,'_hero_icon','field_61a6182199d03'),(34271,38999,'fft_hide_from_listings','0'),(34272,38999,'_fft_hide_from_listings','field_61f1320446ab2'),(34273,38999,'fft_page_format','default'),(34274,38999,'_fft_page_format','field_61ae213f1f218'),(34275,38999,'fft_hide_nav','1'),(34276,38999,'_fft_hide_nav','field_635bd5e43527c'),(34277,38999,'fft_hide_header_call_to_action','0'),(34278,38999,'_fft_hide_header_call_to_action','field_635bd6723527d'),(34279,38999,'fft_page_sitemap','1'),(34280,38999,'_fft_page_sitemap','field_61af9b34e8181'),(34281,38999,'blocks','a:3:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";}'),(34282,38999,'_blocks','field_6176696113096'),(34283,38999,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(34284,38999,'_hero_actions_0_button','field_61757281285eb'),(34285,38999,'_thumbnail_id','38977'),(34286,38999,'__thumbnail_id','field_617570855ddaf'),(34287,38999,'blocks_0_acfe_flexible_toggle',''),(34288,38999,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(34289,38999,'blocks_0_acfe_flexible_layout_title','Icons'),(34290,38999,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(34291,38999,'blocks_0_options_theme','#ffffff'),(34292,38999,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(34293,38999,'blocks_0_options_format','row'),(34294,38999,'_blocks_0_options_format','field_64bfde9a90690'),(34295,38999,'blocks_0_options',''),(34296,38999,'_blocks_0_options','field_64bfdd9b90684'),(34297,38999,'blocks_0_icon_row_items_0_icon','qualification.svg'),(34298,38999,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(34299,38999,'blocks_0_icon_row_items_0_label','Course Type'),(34300,38999,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(34301,38999,'blocks_0_icon_row_items_0_text','Blended Learning'),(34302,38999,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(34303,38999,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(34304,38999,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(34305,38999,'blocks_0_icon_row_items_1_label','Qualification'),(34306,38999,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(34307,38999,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(34308,38999,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(34309,38999,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(34310,38999,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(34311,38999,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(34312,38999,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(34313,38999,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(34314,38999,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(34315,38999,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(34316,38999,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(34317,38999,'blocks_0_icon_row_items_3_label','IBA Registered'),(34318,38999,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(34319,38999,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(34320,38999,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(34321,38999,'blocks_0_icon_row_items','4'),(34322,38999,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(34323,38999,'blocks_1_acfe_flexible_toggle',''),(34324,38999,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(34325,38999,'blocks_1_acfe_flexible_layout_title','Form'),(34326,38999,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(34327,38999,'blocks_1_row_content_format','promotion'),(34328,38999,'_blocks_1_row_content_format','field_6481ead962881'),(34329,38999,'blocks_1_row_content_title',''),(34330,38999,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(34331,38999,'blocks_1_row_content_heading',''),(34332,38999,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(34333,38999,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(34334,38999,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(34335,38999,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(34336,38999,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(34337,38999,'blocks_1_row_content_actions','1'),(34338,38999,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(34339,38999,'blocks_1_row_content',''),(34340,38999,'_blocks_1_row_content','field_61a0f5f5b3db0'),(34341,38999,'blocks_1_row_form',''),(34342,38999,'_blocks_1_row_form','field_61a4ff2c0b08e'),(34343,38999,'blocks_1_row_form_button_label',''),(34344,38999,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(34345,38999,'blocks_1_row_content_promotion_label','Up to 10% Off'),(34346,38999,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(34347,38999,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(34348,38999,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(34349,38999,'blocks_1_row_content_promotion_value','Up to 10% Off'),(34350,38999,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(34351,38999,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(34352,38999,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(34353,38999,'blocks_1_row_content_promotion',''),(34354,38999,'_blocks_1_row_content_promotion','field_6481eb3962882'),(34355,38999,'blocks_1_row_form_title','David Lloyd Referral'),(34356,38999,'_blocks_1_row_form_title','field_64872db5127af'),(34357,38999,'blocks_2_acfe_flexible_toggle',''),(34358,38999,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(34359,38999,'blocks_2_acfe_flexible_layout_title','Video'),(34360,38999,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(34361,38999,'blocks_2_size','large'),(34362,38999,'_blocks_2_size','field_6487038f297c1'),(34363,38999,'blocks_2_row_content_title',''),(34364,38999,'_blocks_2_row_content_title','field_64870132a865d'),(34365,38999,'blocks_2_row_content_heading','Course Overview'),(34366,38999,'_blocks_2_row_content_heading','field_64870142a865e'),(34367,38999,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(34368,38999,'_blocks_2_row_content_text','field_64870148a865f'),(34369,38999,'blocks_2_row_content',''),(34370,38999,'_blocks_2_row_content','field_6487008ba865c'),(34371,38999,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(34372,38999,'_blocks_2_video_src','field_6193c4a98ec07'),(34373,38999,'blocks_2_video_thumbnail','38998'),(34374,38999,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(34391,39001,'hero_style','default'),(34392,39001,'_hero_style','field_62051d9dc5324'),(34393,39001,'hero_image_pos_x','right'),(34394,39001,'_hero_image_pos_x','field_62ec3d05390bb'),(34395,39001,'hero_image_pos_y','top'),(34396,39001,'_hero_image_pos_y','field_62ec3d05390bc'),(34397,39001,'hero_image_pos',''),(34398,39001,'_hero_image_pos','field_62ec3d05390ba'),(34399,39001,'hero_title','Biomechanics Coach Course - David Lloyd'),(34400,39001,'_hero_title','field_617571fe285e8'),(34401,39001,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(34402,39001,'_hero_text','field_6175723c285e9'),(34403,39001,'hero_actions','1'),(34404,39001,'_hero_actions','field_61757270285ea'),(34405,39001,'hero_icon',''),(34406,39001,'_hero_icon','field_61a6182199d03'),(34407,39001,'fft_hide_from_listings','0'),(34408,39001,'_fft_hide_from_listings','field_61f1320446ab2'),(34409,39001,'fft_page_format','default'),(34410,39001,'_fft_page_format','field_61ae213f1f218'),(34411,39001,'fft_hide_nav','1'),(34412,39001,'_fft_hide_nav','field_635bd5e43527c'),(34413,39001,'fft_hide_header_call_to_action','0'),(34414,39001,'_fft_hide_header_call_to_action','field_635bd6723527d'),(34415,39001,'fft_page_sitemap','1'),(34416,39001,'_fft_page_sitemap','field_61af9b34e8181'),(34417,39001,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:5:\"logos\";}'),(34418,39001,'_blocks','field_6176696113096'),(34419,39001,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(34420,39001,'_hero_actions_0_button','field_61757281285eb'),(34421,39001,'_thumbnail_id','38977'),(34422,39001,'__thumbnail_id','field_617570855ddaf'),(34423,39001,'blocks_0_acfe_flexible_toggle',''),(34424,39001,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(34425,39001,'blocks_0_acfe_flexible_layout_title','Icons'),(34426,39001,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(34427,39001,'blocks_0_options_theme','#ffffff'),(34428,39001,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(34429,39001,'blocks_0_options_format','row'),(34430,39001,'_blocks_0_options_format','field_64bfde9a90690'),(34431,39001,'blocks_0_options',''),(34432,39001,'_blocks_0_options','field_64bfdd9b90684'),(34433,39001,'blocks_0_icon_row_items_0_icon','qualification.svg'),(34434,39001,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(34435,39001,'blocks_0_icon_row_items_0_label','Course Type'),(34436,39001,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(34437,39001,'blocks_0_icon_row_items_0_text','Blended Learning'),(34438,39001,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(34439,39001,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(34440,39001,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(34441,39001,'blocks_0_icon_row_items_1_label','Qualification'),(34442,39001,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(34443,39001,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(34444,39001,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(34445,39001,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(34446,39001,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(34447,39001,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(34448,39001,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(34449,39001,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(34450,39001,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(34451,39001,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(34452,39001,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(34453,39001,'blocks_0_icon_row_items_3_label','IBA Registered'),(34454,39001,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(34455,39001,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(34456,39001,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(34457,39001,'blocks_0_icon_row_items','4'),(34458,39001,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(34459,39001,'blocks_1_acfe_flexible_toggle',''),(34460,39001,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(34461,39001,'blocks_1_acfe_flexible_layout_title','Form'),(34462,39001,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(34463,39001,'blocks_1_row_content_format','promotion'),(34464,39001,'_blocks_1_row_content_format','field_6481ead962881'),(34465,39001,'blocks_1_row_content_title',''),(34466,39001,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(34467,39001,'blocks_1_row_content_heading',''),(34468,39001,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(34469,39001,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(34470,39001,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(34471,39001,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(34472,39001,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(34473,39001,'blocks_1_row_content_actions','1'),(34474,39001,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(34475,39001,'blocks_1_row_content',''),(34476,39001,'_blocks_1_row_content','field_61a0f5f5b3db0'),(34477,39001,'blocks_1_row_form',''),(34478,39001,'_blocks_1_row_form','field_61a4ff2c0b08e'),(34479,39001,'blocks_1_row_form_button_label',''),(34480,39001,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(34481,39001,'blocks_1_row_content_promotion_label','Up to 10% Off'),(34482,39001,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(34483,39001,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(34484,39001,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(34485,39001,'blocks_1_row_content_promotion_value','Up to 10% Off'),(34486,39001,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(34487,39001,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(34488,39001,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(34489,39001,'blocks_1_row_content_promotion',''),(34490,39001,'_blocks_1_row_content_promotion','field_6481eb3962882'),(34491,39001,'blocks_1_row_form_title','David Lloyd Referral'),(34492,39001,'_blocks_1_row_form_title','field_64872db5127af'),(34493,39001,'blocks_2_acfe_flexible_toggle',''),(34494,39001,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(34495,39001,'blocks_2_acfe_flexible_layout_title','Video'),(34496,39001,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(34497,39001,'blocks_2_size','large'),(34498,39001,'_blocks_2_size','field_6487038f297c1'),(34499,39001,'blocks_2_row_content_title',''),(34500,39001,'_blocks_2_row_content_title','field_64870132a865d'),(34501,39001,'blocks_2_row_content_heading','Course Overview'),(34502,39001,'_blocks_2_row_content_heading','field_64870142a865e'),(34503,39001,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(34504,39001,'_blocks_2_row_content_text','field_64870148a865f'),(34505,39001,'blocks_2_row_content',''),(34506,39001,'_blocks_2_row_content','field_6487008ba865c'),(34507,39001,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(34508,39001,'_blocks_2_video_src','field_6193c4a98ec07'),(34509,39001,'blocks_2_video_thumbnail','38998'),(34510,39001,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(34511,39001,'blocks_3_acfe_flexible_toggle',''),(34512,39001,'_blocks_3_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(34513,39001,'blocks_3_acfe_flexible_layout_title','Logos'),(34514,39001,'_blocks_3_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(34515,39001,'blocks_3_options_theme','#ffffff'),(34516,39001,'_blocks_3_options_theme','field_61782954ee966_field_6176830e2ad17'),(34517,39001,'blocks_3_options_format','carousel'),(34518,39001,'_blocks_3_options_format','field_61782964ee971'),(34519,39001,'blocks_3_options',''),(34520,39001,'_blocks_3_options','field_61782954ee965'),(34521,39001,'blocks_3_logos','a:2:{i:0;s:4:\"1213\";i:1;s:5:\"39000\";}'),(34522,39001,'_blocks_3_logos','field_61782954ee96d'),(34523,39001,'blocks_3_title',''),(34524,39001,'_blocks_3_title','field_668fbfdc2daa1'),(34525,38973,'blocks_2_acfe_flexible_toggle',''),(34526,38973,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(34527,38973,'blocks_2_acfe_flexible_layout_title','Logos'),(34528,38973,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(34529,38973,'blocks_2_options_theme','#ffffff'),(34530,38973,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(34531,38973,'blocks_2_options_format','grid'),(34532,38973,'_blocks_2_options_format','field_61782964ee971'),(34533,38973,'blocks_2_options',''),(34534,38973,'_blocks_2_options','field_61782954ee965'),(34535,38973,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(34536,38973,'_blocks_2_logos','field_61782954ee96d'),(34537,38973,'blocks_2_title',''),(34538,38973,'_blocks_2_title','field_668fbfdc2daa1'),(34539,38973,'blocks_3_acfe_flexible_toggle',''),(34540,38973,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(34541,38973,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(34542,38973,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(34543,38973,'blocks_3_size','large'),(34544,38973,'_blocks_3_size','field_6487038f297c1'),(34545,38973,'blocks_3_row_content_title',''),(34546,38973,'_blocks_3_row_content_title','field_64870132a865d'),(34547,38973,'blocks_3_row_content_heading','Course Overview'),(34548,38973,'_blocks_3_row_content_heading','field_64870142a865e'),(34549,38973,'blocks_3_row_content_text','This Diploma in Biomechanics Coaching will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring learners a system that pulls their skills together.'),(34550,38973,'_blocks_3_row_content_text','field_64870148a865f'),(34551,38973,'blocks_3_row_content',''),(34552,38973,'_blocks_3_row_content','field_6487008ba865c'),(34553,38973,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(34554,38973,'_blocks_3_video_src','field_6193c4a98ec07'),(34555,38973,'blocks_3_video_thumbnail','38998'),(34556,38973,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(34557,39002,'hero_style','default'),(34558,39002,'_hero_style','field_62051d9dc5324'),(34559,39002,'hero_image_pos_x','right'),(34560,39002,'_hero_image_pos_x','field_62ec3d05390bb'),(34561,39002,'hero_image_pos_y','top'),(34562,39002,'_hero_image_pos_y','field_62ec3d05390bc'),(34563,39002,'hero_image_pos',''),(34564,39002,'_hero_image_pos','field_62ec3d05390ba'),(34565,39002,'hero_title','Biomechanics Coach Course - David Lloyd'),(34566,39002,'_hero_title','field_617571fe285e8'),(34567,39002,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(34568,39002,'_hero_text','field_6175723c285e9'),(34569,39002,'hero_actions','1'),(34570,39002,'_hero_actions','field_61757270285ea'),(34571,39002,'hero_icon',''),(34572,39002,'_hero_icon','field_61a6182199d03'),(34573,39002,'fft_hide_from_listings','0'),(34574,39002,'_fft_hide_from_listings','field_61f1320446ab2'),(34575,39002,'fft_page_format','default'),(34576,39002,'_fft_page_format','field_61ae213f1f218'),(34577,39002,'fft_hide_nav','1'),(34578,39002,'_fft_hide_nav','field_635bd5e43527c'),(34579,39002,'fft_hide_header_call_to_action','0'),(34580,39002,'_fft_hide_header_call_to_action','field_635bd6723527d'),(34581,39002,'fft_page_sitemap','1'),(34582,39002,'_fft_page_sitemap','field_61af9b34e8181'),(34583,39002,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";}'),(34584,39002,'_blocks','field_6176696113096'),(34585,39002,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(34586,39002,'_hero_actions_0_button','field_61757281285eb'),(34587,39002,'_thumbnail_id','38977'),(34588,39002,'__thumbnail_id','field_617570855ddaf'),(34589,39002,'blocks_0_acfe_flexible_toggle',''),(34590,39002,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(34591,39002,'blocks_0_acfe_flexible_layout_title','Icons'),(34592,39002,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(34593,39002,'blocks_0_options_theme','#ffffff'),(34594,39002,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(34595,39002,'blocks_0_options_format','row'),(34596,39002,'_blocks_0_options_format','field_64bfde9a90690'),(34597,39002,'blocks_0_options',''),(34598,39002,'_blocks_0_options','field_64bfdd9b90684'),(34599,39002,'blocks_0_icon_row_items_0_icon','qualification.svg'),(34600,39002,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(34601,39002,'blocks_0_icon_row_items_0_label','Course Type'),(34602,39002,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(34603,39002,'blocks_0_icon_row_items_0_text','Blended Learning'),(34604,39002,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(34605,39002,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(34606,39002,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(34607,39002,'blocks_0_icon_row_items_1_label','Qualification'),(34608,39002,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(34609,39002,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(34610,39002,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(34611,39002,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(34612,39002,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(34613,39002,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(34614,39002,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(34615,39002,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(34616,39002,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(34617,39002,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(34618,39002,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(34619,39002,'blocks_0_icon_row_items_3_label','IBA Registered'),(34620,39002,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(34621,39002,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(34622,39002,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(34623,39002,'blocks_0_icon_row_items','4'),(34624,39002,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(34625,39002,'blocks_1_acfe_flexible_toggle',''),(34626,39002,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(34627,39002,'blocks_1_acfe_flexible_layout_title','Form'),(34628,39002,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(34629,39002,'blocks_1_row_content_format','promotion'),(34630,39002,'_blocks_1_row_content_format','field_6481ead962881'),(34631,39002,'blocks_1_row_content_title',''),(34632,39002,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(34633,39002,'blocks_1_row_content_heading',''),(34634,39002,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(34635,39002,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(34636,39002,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(34637,39002,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(34638,39002,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(34639,39002,'blocks_1_row_content_actions','1'),(34640,39002,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(34641,39002,'blocks_1_row_content',''),(34642,39002,'_blocks_1_row_content','field_61a0f5f5b3db0'),(34643,39002,'blocks_1_row_form',''),(34644,39002,'_blocks_1_row_form','field_61a4ff2c0b08e'),(34645,39002,'blocks_1_row_form_button_label',''),(34646,39002,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(34647,39002,'blocks_1_row_content_promotion_label','Up to 10% Off'),(34648,39002,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(34649,39002,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(34650,39002,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(34651,39002,'blocks_1_row_content_promotion_value','Up to 10% Off'),(34652,39002,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(34653,39002,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(34654,39002,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(34655,39002,'blocks_1_row_content_promotion',''),(34656,39002,'_blocks_1_row_content_promotion','field_6481eb3962882'),(34657,39002,'blocks_1_row_form_title','David Lloyd Referral'),(34658,39002,'_blocks_1_row_form_title','field_64872db5127af'),(34659,39002,'blocks_2_acfe_flexible_toggle',''),(34660,39002,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(34661,39002,'blocks_2_acfe_flexible_layout_title','Logos'),(34662,39002,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(34663,39002,'blocks_2_options_theme','#ffffff'),(34664,39002,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(34665,39002,'blocks_2_options_format','carousel'),(34666,39002,'_blocks_2_options_format','field_61782964ee971'),(34667,39002,'blocks_2_options',''),(34668,39002,'_blocks_2_options','field_61782954ee965'),(34669,39002,'blocks_2_logos','a:2:{i:0;s:4:\"1213\";i:1;s:5:\"39000\";}'),(34670,39002,'_blocks_2_logos','field_61782954ee96d'),(34671,39002,'blocks_2_title',''),(34672,39002,'_blocks_2_title','field_668fbfdc2daa1'),(34673,39002,'blocks_3_acfe_flexible_toggle',''),(34674,39002,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(34675,39002,'blocks_3_acfe_flexible_layout_title','Video'),(34676,39002,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(34677,39002,'blocks_3_size','large'),(34678,39002,'_blocks_3_size','field_6487038f297c1'),(34679,39002,'blocks_3_row_content_title',''),(34680,39002,'_blocks_3_row_content_title','field_64870132a865d'),(34681,39002,'blocks_3_row_content_heading','Course Overview'),(34682,39002,'_blocks_3_row_content_heading','field_64870142a865e'),(34683,39002,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(34684,39002,'_blocks_3_row_content_text','field_64870148a865f'),(34685,39002,'blocks_3_row_content',''),(34686,39002,'_blocks_3_row_content','field_6487008ba865c'),(34687,39002,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(34688,39002,'_blocks_3_video_src','field_6193c4a98ec07'),(34689,39002,'blocks_3_video_thumbnail','38998'),(34690,39002,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(34691,39003,'hero_style','default'),(34692,39003,'_hero_style','field_62051d9dc5324'),(34693,39003,'hero_image_pos_x','right'),(34694,39003,'_hero_image_pos_x','field_62ec3d05390bb'),(34695,39003,'hero_image_pos_y','top'),(34696,39003,'_hero_image_pos_y','field_62ec3d05390bc'),(34697,39003,'hero_image_pos',''),(34698,39003,'_hero_image_pos','field_62ec3d05390ba'),(34699,39003,'hero_title','Biomechanics Coach Course - David Lloyd'),(34700,39003,'_hero_title','field_617571fe285e8'),(34701,39003,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(34702,39003,'_hero_text','field_6175723c285e9'),(34703,39003,'hero_actions','1'),(34704,39003,'_hero_actions','field_61757270285ea'),(34705,39003,'hero_icon',''),(34706,39003,'_hero_icon','field_61a6182199d03'),(34707,39003,'fft_hide_from_listings','0'),(34708,39003,'_fft_hide_from_listings','field_61f1320446ab2'),(34709,39003,'fft_page_format','default'),(34710,39003,'_fft_page_format','field_61ae213f1f218'),(34711,39003,'fft_hide_nav','1'),(34712,39003,'_fft_hide_nav','field_635bd5e43527c'),(34713,39003,'fft_hide_header_call_to_action','0'),(34714,39003,'_fft_hide_header_call_to_action','field_635bd6723527d'),(34715,39003,'fft_page_sitemap','1'),(34716,39003,'_fft_page_sitemap','field_61af9b34e8181'),(34717,39003,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";}'),(34718,39003,'_blocks','field_6176696113096'),(34719,39003,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(34720,39003,'_hero_actions_0_button','field_61757281285eb'),(34721,39003,'_thumbnail_id','38977'),(34722,39003,'__thumbnail_id','field_617570855ddaf'),(34723,39003,'blocks_0_acfe_flexible_toggle',''),(34724,39003,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(34725,39003,'blocks_0_acfe_flexible_layout_title','Icons'),(34726,39003,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(34727,39003,'blocks_0_options_theme','#ffffff'),(34728,39003,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(34729,39003,'blocks_0_options_format','row'),(34730,39003,'_blocks_0_options_format','field_64bfde9a90690'),(34731,39003,'blocks_0_options',''),(34732,39003,'_blocks_0_options','field_64bfdd9b90684'),(34733,39003,'blocks_0_icon_row_items_0_icon','qualification.svg'),(34734,39003,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(34735,39003,'blocks_0_icon_row_items_0_label','Course Type'),(34736,39003,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(34737,39003,'blocks_0_icon_row_items_0_text','Blended Learning'),(34738,39003,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(34739,39003,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(34740,39003,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(34741,39003,'blocks_0_icon_row_items_1_label','Qualification'),(34742,39003,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(34743,39003,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(34744,39003,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(34745,39003,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(34746,39003,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(34747,39003,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(34748,39003,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(34749,39003,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(34750,39003,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(34751,39003,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(34752,39003,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(34753,39003,'blocks_0_icon_row_items_3_label','IBA Registered'),(34754,39003,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(34755,39003,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(34756,39003,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(34757,39003,'blocks_0_icon_row_items','4'),(34758,39003,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(34759,39003,'blocks_1_acfe_flexible_toggle',''),(34760,39003,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(34761,39003,'blocks_1_acfe_flexible_layout_title','Form'),(34762,39003,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(34763,39003,'blocks_1_row_content_format','promotion'),(34764,39003,'_blocks_1_row_content_format','field_6481ead962881'),(34765,39003,'blocks_1_row_content_title',''),(34766,39003,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(34767,39003,'blocks_1_row_content_heading',''),(34768,39003,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(34769,39003,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(34770,39003,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(34771,39003,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(34772,39003,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(34773,39003,'blocks_1_row_content_actions','1'),(34774,39003,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(34775,39003,'blocks_1_row_content',''),(34776,39003,'_blocks_1_row_content','field_61a0f5f5b3db0'),(34777,39003,'blocks_1_row_form',''),(34778,39003,'_blocks_1_row_form','field_61a4ff2c0b08e'),(34779,39003,'blocks_1_row_form_button_label',''),(34780,39003,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(34781,39003,'blocks_1_row_content_promotion_label','Up to 10% Off'),(34782,39003,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(34783,39003,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(34784,39003,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(34785,39003,'blocks_1_row_content_promotion_value','Up to 10% Off'),(34786,39003,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(34787,39003,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(34788,39003,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(34789,39003,'blocks_1_row_content_promotion',''),(34790,39003,'_blocks_1_row_content_promotion','field_6481eb3962882'),(34791,39003,'blocks_1_row_form_title','David Lloyd Referral'),(34792,39003,'_blocks_1_row_form_title','field_64872db5127af'),(34793,39003,'blocks_2_acfe_flexible_toggle',''),(34794,39003,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(34795,39003,'blocks_2_acfe_flexible_layout_title','Logos'),(34796,39003,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(34797,39003,'blocks_2_options_theme','#ffffff'),(34798,39003,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(34799,39003,'blocks_2_options_format','grid'),(34800,39003,'_blocks_2_options_format','field_61782964ee971'),(34801,39003,'blocks_2_options',''),(34802,39003,'_blocks_2_options','field_61782954ee965'),(34803,39003,'blocks_2_logos','a:2:{i:0;s:5:\"39000\";i:1;s:3:\"341\";}'),(34804,39003,'_blocks_2_logos','field_61782954ee96d'),(34805,39003,'blocks_2_title',''),(34806,39003,'_blocks_2_title','field_668fbfdc2daa1'),(34807,39003,'blocks_3_acfe_flexible_toggle',''),(34808,39003,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(34809,39003,'blocks_3_acfe_flexible_layout_title','Video'),(34810,39003,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(34811,39003,'blocks_3_size','large'),(34812,39003,'_blocks_3_size','field_6487038f297c1'),(34813,39003,'blocks_3_row_content_title',''),(34814,39003,'_blocks_3_row_content_title','field_64870132a865d'),(34815,39003,'blocks_3_row_content_heading','Course Overview'),(34816,39003,'_blocks_3_row_content_heading','field_64870142a865e'),(34817,39003,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(34818,39003,'_blocks_3_row_content_text','field_64870148a865f'),(34819,39003,'blocks_3_row_content',''),(34820,39003,'_blocks_3_row_content','field_6487008ba865c'),(34821,39003,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(34822,39003,'_blocks_3_video_src','field_6193c4a98ec07'),(34823,39003,'blocks_3_video_thumbnail','38998'),(34824,39003,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(34825,39004,'_wp_attached_file','2024/07/Dl-clubs-logo_rgb.png'),(34826,39004,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:396;s:6:\"height\";i:155;s:4:\"file\";s:29:\"2024/07/Dl-clubs-logo_rgb.png\";s:8:\"filesize\";i:26608;s:5:\"sizes\";a:1:{s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:29:\"Dl-clubs-logo_rgb-300x155.png\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23279;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(34827,39005,'hero_style','default'),(34828,39005,'_hero_style','field_62051d9dc5324'),(34829,39005,'hero_image_pos_x','right'),(34830,39005,'_hero_image_pos_x','field_62ec3d05390bb'),(34831,39005,'hero_image_pos_y','top'),(34832,39005,'_hero_image_pos_y','field_62ec3d05390bc'),(34833,39005,'hero_image_pos',''),(34834,39005,'_hero_image_pos','field_62ec3d05390ba'),(34835,39005,'hero_title','Biomechanics Coach Course - David Lloyd'),(34836,39005,'_hero_title','field_617571fe285e8'),(34837,39005,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(34838,39005,'_hero_text','field_6175723c285e9'),(34839,39005,'hero_actions','1'),(34840,39005,'_hero_actions','field_61757270285ea'),(34841,39005,'hero_icon',''),(34842,39005,'_hero_icon','field_61a6182199d03'),(34843,39005,'fft_hide_from_listings','0'),(34844,39005,'_fft_hide_from_listings','field_61f1320446ab2'),(34845,39005,'fft_page_format','default'),(34846,39005,'_fft_page_format','field_61ae213f1f218'),(34847,39005,'fft_hide_nav','1'),(34848,39005,'_fft_hide_nav','field_635bd5e43527c'),(34849,39005,'fft_hide_header_call_to_action','0'),(34850,39005,'_fft_hide_header_call_to_action','field_635bd6723527d'),(34851,39005,'fft_page_sitemap','1'),(34852,39005,'_fft_page_sitemap','field_61af9b34e8181'),(34853,39005,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";}'),(34854,39005,'_blocks','field_6176696113096'),(34855,39005,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(34856,39005,'_hero_actions_0_button','field_61757281285eb'),(34857,39005,'_thumbnail_id','38977'),(34858,39005,'__thumbnail_id','field_617570855ddaf'),(34859,39005,'blocks_0_acfe_flexible_toggle',''),(34860,39005,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(34861,39005,'blocks_0_acfe_flexible_layout_title','Icons'),(34862,39005,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(34863,39005,'blocks_0_options_theme','#ffffff'),(34864,39005,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(34865,39005,'blocks_0_options_format','row'),(34866,39005,'_blocks_0_options_format','field_64bfde9a90690'),(34867,39005,'blocks_0_options',''),(34868,39005,'_blocks_0_options','field_64bfdd9b90684'),(34869,39005,'blocks_0_icon_row_items_0_icon','qualification.svg'),(34870,39005,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(34871,39005,'blocks_0_icon_row_items_0_label','Course Type'),(34872,39005,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(34873,39005,'blocks_0_icon_row_items_0_text','Blended Learning'),(34874,39005,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(34875,39005,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(34876,39005,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(34877,39005,'blocks_0_icon_row_items_1_label','Qualification'),(34878,39005,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(34879,39005,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(34880,39005,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(34881,39005,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(34882,39005,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(34883,39005,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(34884,39005,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(34885,39005,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(34886,39005,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(34887,39005,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(34888,39005,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(34889,39005,'blocks_0_icon_row_items_3_label','IBA Registered'),(34890,39005,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(34891,39005,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(34892,39005,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(34893,39005,'blocks_0_icon_row_items','4'),(34894,39005,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(34895,39005,'blocks_1_acfe_flexible_toggle',''),(34896,39005,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(34897,39005,'blocks_1_acfe_flexible_layout_title','Form'),(34898,39005,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(34899,39005,'blocks_1_row_content_format','promotion'),(34900,39005,'_blocks_1_row_content_format','field_6481ead962881'),(34901,39005,'blocks_1_row_content_title',''),(34902,39005,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(34903,39005,'blocks_1_row_content_heading',''),(34904,39005,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(34905,39005,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(34906,39005,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(34907,39005,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(34908,39005,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(34909,39005,'blocks_1_row_content_actions','1'),(34910,39005,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(34911,39005,'blocks_1_row_content',''),(34912,39005,'_blocks_1_row_content','field_61a0f5f5b3db0'),(34913,39005,'blocks_1_row_form',''),(34914,39005,'_blocks_1_row_form','field_61a4ff2c0b08e'),(34915,39005,'blocks_1_row_form_button_label',''),(34916,39005,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(34917,39005,'blocks_1_row_content_promotion_label','Up to 10% Off'),(34918,39005,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(34919,39005,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(34920,39005,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(34921,39005,'blocks_1_row_content_promotion_value','Up to 10% Off'),(34922,39005,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(34923,39005,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(34924,39005,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(34925,39005,'blocks_1_row_content_promotion',''),(34926,39005,'_blocks_1_row_content_promotion','field_6481eb3962882'),(34927,39005,'blocks_1_row_form_title','David Lloyd Referral'),(34928,39005,'_blocks_1_row_form_title','field_64872db5127af'),(34929,39005,'blocks_2_acfe_flexible_toggle',''),(34930,39005,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(34931,39005,'blocks_2_acfe_flexible_layout_title','Logos'),(34932,39005,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(34933,39005,'blocks_2_options_theme','#ffffff'),(34934,39005,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(34935,39005,'blocks_2_options_format','grid'),(34936,39005,'_blocks_2_options_format','field_61782964ee971'),(34937,39005,'blocks_2_options',''),(34938,39005,'_blocks_2_options','field_61782954ee965'),(34939,39005,'blocks_2_logos','a:2:{i:0;s:3:\"341\";i:1;s:5:\"39004\";}'),(34940,39005,'_blocks_2_logos','field_61782954ee96d'),(34941,39005,'blocks_2_title',''),(34942,39005,'_blocks_2_title','field_668fbfdc2daa1'),(34943,39005,'blocks_3_acfe_flexible_toggle',''),(34944,39005,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(34945,39005,'blocks_3_acfe_flexible_layout_title','Video'),(34946,39005,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(34947,39005,'blocks_3_size','large'),(34948,39005,'_blocks_3_size','field_6487038f297c1'),(34949,39005,'blocks_3_row_content_title',''),(34950,39005,'_blocks_3_row_content_title','field_64870132a865d'),(34951,39005,'blocks_3_row_content_heading','Course Overview'),(34952,39005,'_blocks_3_row_content_heading','field_64870142a865e'),(34953,39005,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(34954,39005,'_blocks_3_row_content_text','field_64870148a865f'),(34955,39005,'blocks_3_row_content',''),(34956,39005,'_blocks_3_row_content','field_6487008ba865c'),(34957,39005,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(34958,39005,'_blocks_3_video_src','field_6193c4a98ec07'),(34959,39005,'blocks_3_video_thumbnail','38998'),(34960,39005,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(34961,39006,'hero_style','default'),(34962,39006,'_hero_style','field_62051d9dc5324'),(34963,39006,'hero_image_pos_x','right'),(34964,39006,'_hero_image_pos_x','field_62ec3d05390bb'),(34965,39006,'hero_image_pos_y','top'),(34966,39006,'_hero_image_pos_y','field_62ec3d05390bc'),(34967,39006,'hero_image_pos',''),(34968,39006,'_hero_image_pos','field_62ec3d05390ba'),(34969,39006,'hero_title','Biomechanics Coach Course - David Lloyd'),(34970,39006,'_hero_title','field_617571fe285e8'),(34971,39006,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(34972,39006,'_hero_text','field_6175723c285e9'),(34973,39006,'hero_actions','1'),(34974,39006,'_hero_actions','field_61757270285ea'),(34975,39006,'hero_icon',''),(34976,39006,'_hero_icon','field_61a6182199d03'),(34977,39006,'fft_hide_from_listings','0'),(34978,39006,'_fft_hide_from_listings','field_61f1320446ab2'),(34979,39006,'fft_page_format','default'),(34980,39006,'_fft_page_format','field_61ae213f1f218'),(34981,39006,'fft_hide_nav','1'),(34982,39006,'_fft_hide_nav','field_635bd5e43527c'),(34983,39006,'fft_hide_header_call_to_action','0'),(34984,39006,'_fft_hide_header_call_to_action','field_635bd6723527d'),(34985,39006,'fft_page_sitemap','1'),(34986,39006,'_fft_page_sitemap','field_61af9b34e8181'),(34987,39006,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";}'),(34988,39006,'_blocks','field_6176696113096'),(34989,39006,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(34990,39006,'_hero_actions_0_button','field_61757281285eb'),(34991,39006,'_thumbnail_id','38977'),(34992,39006,'__thumbnail_id','field_617570855ddaf'),(34993,39006,'blocks_0_acfe_flexible_toggle',''),(34994,39006,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(34995,39006,'blocks_0_acfe_flexible_layout_title','Icons'),(34996,39006,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(34997,39006,'blocks_0_options_theme','#ffffff'),(34998,39006,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(34999,39006,'blocks_0_options_format','row'),(35000,39006,'_blocks_0_options_format','field_64bfde9a90690'),(35001,39006,'blocks_0_options',''),(35002,39006,'_blocks_0_options','field_64bfdd9b90684'),(35003,39006,'blocks_0_icon_row_items_0_icon','qualification.svg'),(35004,39006,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(35005,39006,'blocks_0_icon_row_items_0_label','Course Type'),(35006,39006,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(35007,39006,'blocks_0_icon_row_items_0_text','Blended Learning'),(35008,39006,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(35009,39006,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(35010,39006,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(35011,39006,'blocks_0_icon_row_items_1_label','Qualification'),(35012,39006,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(35013,39006,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(35014,39006,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(35015,39006,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(35016,39006,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(35017,39006,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(35018,39006,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(35019,39006,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(35020,39006,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(35021,39006,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(35022,39006,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(35023,39006,'blocks_0_icon_row_items_3_label','IBA Registered'),(35024,39006,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(35025,39006,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(35026,39006,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(35027,39006,'blocks_0_icon_row_items','4'),(35028,39006,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(35029,39006,'blocks_1_acfe_flexible_toggle',''),(35030,39006,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(35031,39006,'blocks_1_acfe_flexible_layout_title','Form'),(35032,39006,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(35033,39006,'blocks_1_row_content_format','promotion'),(35034,39006,'_blocks_1_row_content_format','field_6481ead962881'),(35035,39006,'blocks_1_row_content_title',''),(35036,39006,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(35037,39006,'blocks_1_row_content_heading',''),(35038,39006,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(35039,39006,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(35040,39006,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(35041,39006,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(35042,39006,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(35043,39006,'blocks_1_row_content_actions','1'),(35044,39006,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(35045,39006,'blocks_1_row_content',''),(35046,39006,'_blocks_1_row_content','field_61a0f5f5b3db0'),(35047,39006,'blocks_1_row_form',''),(35048,39006,'_blocks_1_row_form','field_61a4ff2c0b08e'),(35049,39006,'blocks_1_row_form_button_label',''),(35050,39006,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(35051,39006,'blocks_1_row_content_promotion_label','Up to 10% Off'),(35052,39006,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(35053,39006,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(35054,39006,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(35055,39006,'blocks_1_row_content_promotion_value','Up to 10% Off'),(35056,39006,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(35057,39006,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(35058,39006,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(35059,39006,'blocks_1_row_content_promotion',''),(35060,39006,'_blocks_1_row_content_promotion','field_6481eb3962882'),(35061,39006,'blocks_1_row_form_title','David Lloyd Referral'),(35062,39006,'_blocks_1_row_form_title','field_64872db5127af'),(35063,39006,'blocks_2_acfe_flexible_toggle',''),(35064,39006,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(35065,39006,'blocks_2_acfe_flexible_layout_title','Logos'),(35066,39006,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(35067,39006,'blocks_2_options_theme','#ffffff'),(35068,39006,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(35069,39006,'blocks_2_options_format','grid'),(35070,39006,'_blocks_2_options_format','field_61782964ee971'),(35071,39006,'blocks_2_options',''),(35072,39006,'_blocks_2_options','field_61782954ee965'),(35073,39006,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(35074,39006,'_blocks_2_logos','field_61782954ee96d'),(35075,39006,'blocks_2_title',''),(35076,39006,'_blocks_2_title','field_668fbfdc2daa1'),(35077,39006,'blocks_3_acfe_flexible_toggle',''),(35078,39006,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(35079,39006,'blocks_3_acfe_flexible_layout_title','Video'),(35080,39006,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(35081,39006,'blocks_3_size','large'),(35082,39006,'_blocks_3_size','field_6487038f297c1'),(35083,39006,'blocks_3_row_content_title',''),(35084,39006,'_blocks_3_row_content_title','field_64870132a865d'),(35085,39006,'blocks_3_row_content_heading','Course Overview'),(35086,39006,'_blocks_3_row_content_heading','field_64870142a865e'),(35087,39006,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(35088,39006,'_blocks_3_row_content_text','field_64870148a865f'),(35089,39006,'blocks_3_row_content',''),(35090,39006,'_blocks_3_row_content','field_6487008ba865c'),(35091,39006,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(35092,39006,'_blocks_3_video_src','field_6193c4a98ec07'),(35093,39006,'blocks_3_video_thumbnail','38998'),(35094,39006,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(35095,39007,'hero_style','default'),(35096,39007,'_hero_style','field_62051d9dc5324'),(35097,39007,'hero_image_pos_x','right'),(35098,39007,'_hero_image_pos_x','field_62ec3d05390bb'),(35099,39007,'hero_image_pos_y','top'),(35100,39007,'_hero_image_pos_y','field_62ec3d05390bc'),(35101,39007,'hero_image_pos',''),(35102,39007,'_hero_image_pos','field_62ec3d05390ba'),(35103,39007,'hero_title','Biomechanics Coach Course - David Lloyd'),(35104,39007,'_hero_title','field_617571fe285e8'),(35105,39007,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(35106,39007,'_hero_text','field_6175723c285e9'),(35107,39007,'hero_actions','1'),(35108,39007,'_hero_actions','field_61757270285ea'),(35109,39007,'hero_icon',''),(35110,39007,'_hero_icon','field_61a6182199d03'),(35111,39007,'fft_hide_from_listings','0'),(35112,39007,'_fft_hide_from_listings','field_61f1320446ab2'),(35113,39007,'fft_page_format','default'),(35114,39007,'_fft_page_format','field_61ae213f1f218'),(35115,39007,'fft_hide_nav','1'),(35116,39007,'_fft_hide_nav','field_635bd5e43527c'),(35117,39007,'fft_hide_header_call_to_action','0'),(35118,39007,'_fft_hide_header_call_to_action','field_635bd6723527d'),(35119,39007,'fft_page_sitemap','1'),(35120,39007,'_fft_page_sitemap','field_61af9b34e8181'),(35121,39007,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";}'),(35122,39007,'_blocks','field_6176696113096'),(35123,39007,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(35124,39007,'_hero_actions_0_button','field_61757281285eb'),(35125,39007,'_thumbnail_id','38977'),(35126,39007,'__thumbnail_id','field_617570855ddaf'),(35127,39007,'blocks_0_acfe_flexible_toggle',''),(35128,39007,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(35129,39007,'blocks_0_acfe_flexible_layout_title','Icons'),(35130,39007,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(35131,39007,'blocks_0_options_theme','#ffffff'),(35132,39007,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(35133,39007,'blocks_0_options_format','row'),(35134,39007,'_blocks_0_options_format','field_64bfde9a90690'),(35135,39007,'blocks_0_options',''),(35136,39007,'_blocks_0_options','field_64bfdd9b90684'),(35137,39007,'blocks_0_icon_row_items_0_icon','qualification.svg'),(35138,39007,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(35139,39007,'blocks_0_icon_row_items_0_label','Course Type'),(35140,39007,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(35141,39007,'blocks_0_icon_row_items_0_text','Blended Learning'),(35142,39007,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(35143,39007,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(35144,39007,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(35145,39007,'blocks_0_icon_row_items_1_label','Qualification'),(35146,39007,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(35147,39007,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(35148,39007,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(35149,39007,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(35150,39007,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(35151,39007,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(35152,39007,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(35153,39007,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(35154,39007,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(35155,39007,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(35156,39007,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(35157,39007,'blocks_0_icon_row_items_3_label','IBA Registered'),(35158,39007,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(35159,39007,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(35160,39007,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(35161,39007,'blocks_0_icon_row_items','4'),(35162,39007,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(35163,39007,'blocks_1_acfe_flexible_toggle',''),(35164,39007,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(35165,39007,'blocks_1_acfe_flexible_layout_title','Form'),(35166,39007,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(35167,39007,'blocks_1_row_content_format','promotion'),(35168,39007,'_blocks_1_row_content_format','field_6481ead962881'),(35169,39007,'blocks_1_row_content_title',''),(35170,39007,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(35171,39007,'blocks_1_row_content_heading',''),(35172,39007,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(35173,39007,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(35174,39007,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(35175,39007,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(35176,39007,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(35177,39007,'blocks_1_row_content_actions','1'),(35178,39007,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(35179,39007,'blocks_1_row_content',''),(35180,39007,'_blocks_1_row_content','field_61a0f5f5b3db0'),(35181,39007,'blocks_1_row_form',''),(35182,39007,'_blocks_1_row_form','field_61a4ff2c0b08e'),(35183,39007,'blocks_1_row_form_button_label',''),(35184,39007,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(35185,39007,'blocks_1_row_content_promotion_label','Up to 10% Off'),(35186,39007,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(35187,39007,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(35188,39007,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(35189,39007,'blocks_1_row_content_promotion_value','Up to 10% Off'),(35190,39007,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(35191,39007,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(35192,39007,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(35193,39007,'blocks_1_row_content_promotion',''),(35194,39007,'_blocks_1_row_content_promotion','field_6481eb3962882'),(35195,39007,'blocks_1_row_form_title','David Lloyd Referral'),(35196,39007,'_blocks_1_row_form_title','field_64872db5127af'),(35197,39007,'blocks_2_acfe_flexible_toggle',''),(35198,39007,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(35199,39007,'blocks_2_acfe_flexible_layout_title','Logos'),(35200,39007,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(35201,39007,'blocks_2_options_theme','#ffffff'),(35202,39007,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(35203,39007,'blocks_2_options_format','grid'),(35204,39007,'_blocks_2_options_format','field_61782964ee971'),(35205,39007,'blocks_2_options',''),(35206,39007,'_blocks_2_options','field_61782954ee965'),(35207,39007,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(35208,39007,'_blocks_2_logos','field_61782954ee96d'),(35209,39007,'blocks_2_title',''),(35210,39007,'_blocks_2_title','field_668fbfdc2daa1'),(35211,39007,'blocks_3_acfe_flexible_toggle',''),(35212,39007,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(35213,39007,'blocks_3_acfe_flexible_layout_title','Video'),(35214,39007,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(35215,39007,'blocks_3_size','full'),(35216,39007,'_blocks_3_size','field_6487038f297c1'),(35217,39007,'blocks_3_row_content_title',''),(35218,39007,'_blocks_3_row_content_title','field_64870132a865d'),(35219,39007,'blocks_3_row_content_heading','Course Overview'),(35220,39007,'_blocks_3_row_content_heading','field_64870142a865e'),(35221,39007,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(35222,39007,'_blocks_3_row_content_text','field_64870148a865f'),(35223,39007,'blocks_3_row_content',''),(35224,39007,'_blocks_3_row_content','field_6487008ba865c'),(35225,39007,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(35226,39007,'_blocks_3_video_src','field_6193c4a98ec07'),(35227,39007,'blocks_3_video_thumbnail','38998'),(35228,39007,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(35229,39008,'hero_style','default'),(35230,39008,'_hero_style','field_62051d9dc5324'),(35231,39008,'hero_image_pos_x','right'),(35232,39008,'_hero_image_pos_x','field_62ec3d05390bb'),(35233,39008,'hero_image_pos_y','top'),(35234,39008,'_hero_image_pos_y','field_62ec3d05390bc'),(35235,39008,'hero_image_pos',''),(35236,39008,'_hero_image_pos','field_62ec3d05390ba'),(35237,39008,'hero_title','Biomechanics Coach Course - David Lloyd'),(35238,39008,'_hero_title','field_617571fe285e8'),(35239,39008,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(35240,39008,'_hero_text','field_6175723c285e9'),(35241,39008,'hero_actions','1'),(35242,39008,'_hero_actions','field_61757270285ea'),(35243,39008,'hero_icon',''),(35244,39008,'_hero_icon','field_61a6182199d03'),(35245,39008,'fft_hide_from_listings','0'),(35246,39008,'_fft_hide_from_listings','field_61f1320446ab2'),(35247,39008,'fft_page_format','default'),(35248,39008,'_fft_page_format','field_61ae213f1f218'),(35249,39008,'fft_hide_nav','1'),(35250,39008,'_fft_hide_nav','field_635bd5e43527c'),(35251,39008,'fft_hide_header_call_to_action','0'),(35252,39008,'_fft_hide_header_call_to_action','field_635bd6723527d'),(35253,39008,'fft_page_sitemap','1'),(35254,39008,'_fft_page_sitemap','field_61af9b34e8181'),(35255,39008,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";}'),(35256,39008,'_blocks','field_6176696113096'),(35257,39008,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(35258,39008,'_hero_actions_0_button','field_61757281285eb'),(35259,39008,'_thumbnail_id','38977'),(35260,39008,'__thumbnail_id','field_617570855ddaf'),(35261,39008,'blocks_0_acfe_flexible_toggle',''),(35262,39008,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(35263,39008,'blocks_0_acfe_flexible_layout_title','Icons'),(35264,39008,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(35265,39008,'blocks_0_options_theme','#ffffff'),(35266,39008,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(35267,39008,'blocks_0_options_format','row'),(35268,39008,'_blocks_0_options_format','field_64bfde9a90690'),(35269,39008,'blocks_0_options',''),(35270,39008,'_blocks_0_options','field_64bfdd9b90684'),(35271,39008,'blocks_0_icon_row_items_0_icon','qualification.svg'),(35272,39008,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(35273,39008,'blocks_0_icon_row_items_0_label','Course Type'),(35274,39008,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(35275,39008,'blocks_0_icon_row_items_0_text','Blended Learning'),(35276,39008,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(35277,39008,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(35278,39008,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(35279,39008,'blocks_0_icon_row_items_1_label','Qualification'),(35280,39008,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(35281,39008,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(35282,39008,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(35283,39008,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(35284,39008,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(35285,39008,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(35286,39008,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(35287,39008,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(35288,39008,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(35289,39008,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(35290,39008,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(35291,39008,'blocks_0_icon_row_items_3_label','IBA Registered'),(35292,39008,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(35293,39008,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(35294,39008,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(35295,39008,'blocks_0_icon_row_items','4'),(35296,39008,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(35297,39008,'blocks_1_acfe_flexible_toggle',''),(35298,39008,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(35299,39008,'blocks_1_acfe_flexible_layout_title','Form'),(35300,39008,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(35301,39008,'blocks_1_row_content_format','promotion'),(35302,39008,'_blocks_1_row_content_format','field_6481ead962881'),(35303,39008,'blocks_1_row_content_title',''),(35304,39008,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(35305,39008,'blocks_1_row_content_heading',''),(35306,39008,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(35307,39008,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(35308,39008,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(35309,39008,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(35310,39008,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(35311,39008,'blocks_1_row_content_actions','1'),(35312,39008,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(35313,39008,'blocks_1_row_content',''),(35314,39008,'_blocks_1_row_content','field_61a0f5f5b3db0'),(35315,39008,'blocks_1_row_form',''),(35316,39008,'_blocks_1_row_form','field_61a4ff2c0b08e'),(35317,39008,'blocks_1_row_form_button_label',''),(35318,39008,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(35319,39008,'blocks_1_row_content_promotion_label','Up to 10% Off'),(35320,39008,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(35321,39008,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(35322,39008,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(35323,39008,'blocks_1_row_content_promotion_value','Up to 10% Off'),(35324,39008,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(35325,39008,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(35326,39008,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(35327,39008,'blocks_1_row_content_promotion',''),(35328,39008,'_blocks_1_row_content_promotion','field_6481eb3962882'),(35329,39008,'blocks_1_row_form_title','David Lloyd Referral'),(35330,39008,'_blocks_1_row_form_title','field_64872db5127af'),(35331,39008,'blocks_2_acfe_flexible_toggle',''),(35332,39008,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(35333,39008,'blocks_2_acfe_flexible_layout_title','Logos'),(35334,39008,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(35335,39008,'blocks_2_options_theme','#ffffff'),(35336,39008,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(35337,39008,'blocks_2_options_format','grid'),(35338,39008,'_blocks_2_options_format','field_61782964ee971'),(35339,39008,'blocks_2_options',''),(35340,39008,'_blocks_2_options','field_61782954ee965'),(35341,39008,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(35342,39008,'_blocks_2_logos','field_61782954ee96d'),(35343,39008,'blocks_2_title',''),(35344,39008,'_blocks_2_title','field_668fbfdc2daa1'),(35345,39008,'blocks_3_acfe_flexible_toggle',''),(35346,39008,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(35347,39008,'blocks_3_acfe_flexible_layout_title','Video'),(35348,39008,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(35349,39008,'blocks_3_size','large'),(35350,39008,'_blocks_3_size','field_6487038f297c1'),(35351,39008,'blocks_3_row_content_title',''),(35352,39008,'_blocks_3_row_content_title','field_64870132a865d'),(35353,39008,'blocks_3_row_content_heading','Course Overview'),(35354,39008,'_blocks_3_row_content_heading','field_64870142a865e'),(35355,39008,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(35356,39008,'_blocks_3_row_content_text','field_64870148a865f'),(35357,39008,'blocks_3_row_content',''),(35358,39008,'_blocks_3_row_content','field_6487008ba865c'),(35359,39008,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(35360,39008,'_blocks_3_video_src','field_6193c4a98ec07'),(35361,39008,'blocks_3_video_thumbnail','38998'),(35362,39008,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(35363,39009,'_wp_attached_file','2024/07/Course-info-whats-included-image-scaled.jpg'),(35364,39009,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:51:\"2024/07/Course-info-whats-included-image-scaled.jpg\";s:8:\"filesize\";i:562674;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Course-info-whats-included-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83228;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"Course-info-whats-included-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127683;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Course-info-whats-included-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30896;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"Course-info-whats-included-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66494;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"Course-info-whats-included-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194814;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:46:\"Course-info-whats-included-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:345243;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:44:\"Course-info-whats-included-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36804;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:44:\"Course-info-whats-included-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112360;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:46:\"Course-info-whats-included-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185571;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:44:\"Course-info-whats-included-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30850;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:44:\"Course-info-whats-included-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83228;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:45:\"Course-info-whats-included-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127683;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:44:\"Course-info-whats-included-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29058;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:44:\"Course-info-whats-included-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80560;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:45:\"Course-info-whats-included-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130174;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:44:\"Course-info-whats-included-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32373;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:44:\"Course-info-whats-included-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90547;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:45:\"Course-info-whats-included-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142493;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:44:\"Course-info-whats-included-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28149;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:44:\"Course-info-whats-included-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73274;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:45:\"Course-info-whats-included-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111784;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:36:\"Course-info-whats-included-image.jpg\";}'),(35365,39010,'_wp_attached_file','2024/07/What-youll-learn-tab-image-scaled.jpeg'),(35366,39010,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:46:\"2024/07/What-youll-learn-tab-image-scaled.jpeg\";s:8:\"filesize\";i:350083;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"What-youll-learn-tab-image-900x600.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64183;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"What-youll-learn-tab-image-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97688;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"What-youll-learn-tab-image-400x267.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21969;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"What-youll-learn-tab-image-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50949;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"What-youll-learn-tab-image-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145788;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:41:\"What-youll-learn-tab-image-2048x1365.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235590;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:39:\"What-youll-learn-tab-image-400x400.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27393;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:39:\"What-youll-learn-tab-image-900x900.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86310;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:41:\"What-youll-learn-tab-image-1200x1200.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135049;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:39:\"What-youll-learn-tab-image-400x266.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21934;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:39:\"What-youll-learn-tab-image-900x600.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64183;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:40:\"What-youll-learn-tab-image-1200x800.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97688;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:39:\"What-youll-learn-tab-image-300x400.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21319;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:39:\"What-youll-learn-tab-image-675x900.jpeg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63641;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:40:\"What-youll-learn-tab-image-900x1200.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98579;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:39:\"What-youll-learn-tab-image-400x300.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24037;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:39:\"What-youll-learn-tab-image-900x675.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71909;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:40:\"What-youll-learn-tab-image-1200x900.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110513;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:39:\"What-youll-learn-tab-image-400x225.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20014;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:39:\"What-youll-learn-tab-image-900x506.jpeg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56368;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:40:\"What-youll-learn-tab-image-1200x675.jpeg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84992;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:11:\"NIKON D3100\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1633862181\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:31:\"What-youll-learn-tab-image.jpeg\";}'),(35367,38973,'blocks_4_acfe_flexible_toggle',''),(35368,38973,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(35369,38973,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(35370,38973,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(35371,38973,'blocks_4_options_theme','#ffffff'),(35372,38973,'_blocks_4_options_theme','field_6176830e2ad17'),(35373,38973,'blocks_4_options',''),(35374,38973,'_blocks_4_options','field_6176830e2ad16'),(35375,38973,'blocks_4_text_block_heading','Learn more about the course'),(35376,38973,'_blocks_4_text_block_heading','field_617669d413097'),(35377,38973,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching learners will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(35378,38973,'_blocks_4_text_block_content','field_617669ec13098'),(35379,38973,'blocks_5_acfe_flexible_toggle',''),(35380,38973,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(35381,38973,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(35382,38973,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(35383,38973,'blocks_5_options_theme','#ffffff'),(35384,38973,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(35385,38973,'blocks_5_options',''),(35386,38973,'_blocks_5_options','field_6177cfcd8140f'),(35387,38973,'blocks_5_tabs_0_tab_label','What\'s Included'),(35388,38973,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(35389,38973,'blocks_5_tabs_0_tab_content_title',''),(35390,38973,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(35391,38973,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(35392,38973,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(35393,38973,'blocks_5_tabs_0_tab_content_text','This Diploma in Biomechanics Coaching will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(35394,38973,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(35395,38973,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(35396,38973,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(35397,38973,'blocks_5_tabs_0_tab_content_actions','1'),(35398,38973,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(35399,38973,'blocks_5_tabs_0_tab_content',''),(35400,38973,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(35401,38973,'blocks_5_tabs_0_tab_image','39009'),(35402,38973,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(35403,38973,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(35404,38973,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(35405,38973,'blocks_5_tabs_1_tab_content_title',''),(35406,38973,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(35407,38973,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(35408,38973,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(35409,38973,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(35410,38973,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(35411,38973,'blocks_5_tabs_1_tab_content_actions','1'),(35412,38973,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(35413,38973,'blocks_5_tabs_1_tab_content',''),(35414,38973,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(35415,38973,'blocks_5_tabs_1_tab_image','39010'),(35416,38973,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(35417,38973,'blocks_5_tabs','2'),(35418,38973,'_blocks_5_tabs','field_6177cff281419'),(35419,39011,'hero_style','default'),(35420,39011,'_hero_style','field_62051d9dc5324'),(35421,39011,'hero_image_pos_x','right'),(35422,39011,'_hero_image_pos_x','field_62ec3d05390bb'),(35423,39011,'hero_image_pos_y','top'),(35424,39011,'_hero_image_pos_y','field_62ec3d05390bc'),(35425,39011,'hero_image_pos',''),(35426,39011,'_hero_image_pos','field_62ec3d05390ba'),(35427,39011,'hero_title','Biomechanics Coach Course - David Lloyd'),(35428,39011,'_hero_title','field_617571fe285e8'),(35429,39011,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(35430,39011,'_hero_text','field_6175723c285e9'),(35431,39011,'hero_actions','1'),(35432,39011,'_hero_actions','field_61757270285ea'),(35433,39011,'hero_icon',''),(35434,39011,'_hero_icon','field_61a6182199d03'),(35435,39011,'fft_hide_from_listings','0'),(35436,39011,'_fft_hide_from_listings','field_61f1320446ab2'),(35437,39011,'fft_page_format','default'),(35438,39011,'_fft_page_format','field_61ae213f1f218'),(35439,39011,'fft_hide_nav','1'),(35440,39011,'_fft_hide_nav','field_635bd5e43527c'),(35441,39011,'fft_hide_header_call_to_action','0'),(35442,39011,'_fft_hide_header_call_to_action','field_635bd6723527d'),(35443,39011,'fft_page_sitemap','1'),(35444,39011,'_fft_page_sitemap','field_61af9b34e8181'),(35445,39011,'blocks','a:6:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";}'),(35446,39011,'_blocks','field_6176696113096'),(35447,39011,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(35448,39011,'_hero_actions_0_button','field_61757281285eb'),(35449,39011,'_thumbnail_id','38977'),(35450,39011,'__thumbnail_id','field_617570855ddaf'),(35451,39011,'blocks_0_acfe_flexible_toggle',''),(35452,39011,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(35453,39011,'blocks_0_acfe_flexible_layout_title','Icons'),(35454,39011,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(35455,39011,'blocks_0_options_theme','#ffffff'),(35456,39011,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(35457,39011,'blocks_0_options_format','row'),(35458,39011,'_blocks_0_options_format','field_64bfde9a90690'),(35459,39011,'blocks_0_options',''),(35460,39011,'_blocks_0_options','field_64bfdd9b90684'),(35461,39011,'blocks_0_icon_row_items_0_icon','qualification.svg'),(35462,39011,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(35463,39011,'blocks_0_icon_row_items_0_label','Course Type'),(35464,39011,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(35465,39011,'blocks_0_icon_row_items_0_text','Blended Learning'),(35466,39011,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(35467,39011,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(35468,39011,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(35469,39011,'blocks_0_icon_row_items_1_label','Qualification'),(35470,39011,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(35471,39011,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(35472,39011,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(35473,39011,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(35474,39011,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(35475,39011,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(35476,39011,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(35477,39011,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(35478,39011,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(35479,39011,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(35480,39011,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(35481,39011,'blocks_0_icon_row_items_3_label','IBA Registered'),(35482,39011,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(35483,39011,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(35484,39011,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(35485,39011,'blocks_0_icon_row_items','4'),(35486,39011,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(35487,39011,'blocks_1_acfe_flexible_toggle',''),(35488,39011,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(35489,39011,'blocks_1_acfe_flexible_layout_title','Form'),(35490,39011,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(35491,39011,'blocks_1_row_content_format','promotion'),(35492,39011,'_blocks_1_row_content_format','field_6481ead962881'),(35493,39011,'blocks_1_row_content_title',''),(35494,39011,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(35495,39011,'blocks_1_row_content_heading',''),(35496,39011,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(35497,39011,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(35498,39011,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(35499,39011,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(35500,39011,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(35501,39011,'blocks_1_row_content_actions','1'),(35502,39011,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(35503,39011,'blocks_1_row_content',''),(35504,39011,'_blocks_1_row_content','field_61a0f5f5b3db0'),(35505,39011,'blocks_1_row_form',''),(35506,39011,'_blocks_1_row_form','field_61a4ff2c0b08e'),(35507,39011,'blocks_1_row_form_button_label',''),(35508,39011,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(35509,39011,'blocks_1_row_content_promotion_label','Up to 10% Off'),(35510,39011,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(35511,39011,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(35512,39011,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(35513,39011,'blocks_1_row_content_promotion_value','Up to 10% Off'),(35514,39011,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(35515,39011,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(35516,39011,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(35517,39011,'blocks_1_row_content_promotion',''),(35518,39011,'_blocks_1_row_content_promotion','field_6481eb3962882'),(35519,39011,'blocks_1_row_form_title','David Lloyd Referral'),(35520,39011,'_blocks_1_row_form_title','field_64872db5127af'),(35521,39011,'blocks_2_acfe_flexible_toggle',''),(35522,39011,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(35523,39011,'blocks_2_acfe_flexible_layout_title','Logos'),(35524,39011,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(35525,39011,'blocks_2_options_theme','#ffffff'),(35526,39011,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(35527,39011,'blocks_2_options_format','grid'),(35528,39011,'_blocks_2_options_format','field_61782964ee971'),(35529,39011,'blocks_2_options',''),(35530,39011,'_blocks_2_options','field_61782954ee965'),(35531,39011,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(35532,39011,'_blocks_2_logos','field_61782954ee96d'),(35533,39011,'blocks_2_title',''),(35534,39011,'_blocks_2_title','field_668fbfdc2daa1'),(35535,39011,'blocks_3_acfe_flexible_toggle',''),(35536,39011,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(35537,39011,'blocks_3_acfe_flexible_layout_title','Video'),(35538,39011,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(35539,39011,'blocks_3_size','large'),(35540,39011,'_blocks_3_size','field_6487038f297c1'),(35541,39011,'blocks_3_row_content_title',''),(35542,39011,'_blocks_3_row_content_title','field_64870132a865d'),(35543,39011,'blocks_3_row_content_heading','Course Overview'),(35544,39011,'_blocks_3_row_content_heading','field_64870142a865e'),(35545,39011,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(35546,39011,'_blocks_3_row_content_text','field_64870148a865f'),(35547,39011,'blocks_3_row_content',''),(35548,39011,'_blocks_3_row_content','field_6487008ba865c'),(35549,39011,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(35550,39011,'_blocks_3_video_src','field_6193c4a98ec07'),(35551,39011,'blocks_3_video_thumbnail','38998'),(35552,39011,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(35553,39011,'blocks_4_acfe_flexible_toggle',''),(35554,39011,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(35555,39011,'blocks_4_acfe_flexible_layout_title','Text Block'),(35556,39011,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(35557,39011,'blocks_4_options_theme','#b61234'),(35558,39011,'_blocks_4_options_theme','field_6176830e2ad17'),(35559,39011,'blocks_4_options',''),(35560,39011,'_blocks_4_options','field_6176830e2ad16'),(35561,39011,'blocks_4_text_block_heading','Learn more about the course'),(35562,39011,'_blocks_4_text_block_heading','field_617669d413097'),(35563,39011,'blocks_4_text_block_content','Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.'),(35564,39011,'_blocks_4_text_block_content','field_617669ec13098'),(35565,39011,'blocks_5_acfe_flexible_toggle',''),(35566,39011,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(35567,39011,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(35568,39011,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(35569,39011,'blocks_5_options_theme','#b61234'),(35570,39011,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(35571,39011,'blocks_5_options',''),(35572,39011,'_blocks_5_options','field_6177cfcd8140f'),(35573,39011,'blocks_5_tabs_0_tab_label','What\'s Included'),(35574,39011,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(35575,39011,'blocks_5_tabs_0_tab_content_title',''),(35576,39011,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(35577,39011,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(35578,39011,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(35579,39011,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(35580,39011,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(35581,39011,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(35582,39011,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(35583,39011,'blocks_5_tabs_0_tab_content_actions','1'),(35584,39011,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(35585,39011,'blocks_5_tabs_0_tab_content',''),(35586,39011,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(35587,39011,'blocks_5_tabs_0_tab_image','39009'),(35588,39011,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(35589,39011,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(35590,39011,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(35591,39011,'blocks_5_tabs_1_tab_content_title',''),(35592,39011,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(35593,39011,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(35594,39011,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(35595,39011,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(35596,39011,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(35597,39011,'blocks_5_tabs_1_tab_content_actions',''),(35598,39011,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(35599,39011,'blocks_5_tabs_1_tab_content',''),(35600,39011,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(35601,39011,'blocks_5_tabs_1_tab_image','39010'),(35602,39011,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(35603,39011,'blocks_5_tabs','2'),(35604,39011,'_blocks_5_tabs','field_6177cff281419'),(35605,39012,'hero_style','default'),(35606,39012,'_hero_style','field_62051d9dc5324'),(35607,39012,'hero_image_pos_x','right'),(35608,39012,'_hero_image_pos_x','field_62ec3d05390bb'),(35609,39012,'hero_image_pos_y','top'),(35610,39012,'_hero_image_pos_y','field_62ec3d05390bc'),(35611,39012,'hero_image_pos',''),(35612,39012,'_hero_image_pos','field_62ec3d05390ba'),(35613,39012,'hero_title','Biomechanics Coach Course - David Lloyd'),(35614,39012,'_hero_title','field_617571fe285e8'),(35615,39012,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(35616,39012,'_hero_text','field_6175723c285e9'),(35617,39012,'hero_actions','1'),(35618,39012,'_hero_actions','field_61757270285ea'),(35619,39012,'hero_icon',''),(35620,39012,'_hero_icon','field_61a6182199d03'),(35621,39012,'fft_hide_from_listings','0'),(35622,39012,'_fft_hide_from_listings','field_61f1320446ab2'),(35623,39012,'fft_page_format','default'),(35624,39012,'_fft_page_format','field_61ae213f1f218'),(35625,39012,'fft_hide_nav','1'),(35626,39012,'_fft_hide_nav','field_635bd5e43527c'),(35627,39012,'fft_hide_header_call_to_action','0'),(35628,39012,'_fft_hide_header_call_to_action','field_635bd6723527d'),(35629,39012,'fft_page_sitemap','1'),(35630,39012,'_fft_page_sitemap','field_61af9b34e8181'),(35631,39012,'blocks','a:6:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";}'),(35632,39012,'_blocks','field_6176696113096'),(35633,39012,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(35634,39012,'_hero_actions_0_button','field_61757281285eb'),(35635,39012,'_thumbnail_id','38977'),(35636,39012,'__thumbnail_id','field_617570855ddaf'),(35637,39012,'blocks_0_acfe_flexible_toggle',''),(35638,39012,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(35639,39012,'blocks_0_acfe_flexible_layout_title','Icons'),(35640,39012,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(35641,39012,'blocks_0_options_theme','#ffffff'),(35642,39012,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(35643,39012,'blocks_0_options_format','row'),(35644,39012,'_blocks_0_options_format','field_64bfde9a90690'),(35645,39012,'blocks_0_options',''),(35646,39012,'_blocks_0_options','field_64bfdd9b90684'),(35647,39012,'blocks_0_icon_row_items_0_icon','qualification.svg'),(35648,39012,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(35649,39012,'blocks_0_icon_row_items_0_label','Course Type'),(35650,39012,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(35651,39012,'blocks_0_icon_row_items_0_text','Blended Learning'),(35652,39012,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(35653,39012,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(35654,39012,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(35655,39012,'blocks_0_icon_row_items_1_label','Qualification'),(35656,39012,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(35657,39012,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(35658,39012,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(35659,39012,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(35660,39012,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(35661,39012,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(35662,39012,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(35663,39012,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(35664,39012,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(35665,39012,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(35666,39012,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(35667,39012,'blocks_0_icon_row_items_3_label','IBA Registered'),(35668,39012,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(35669,39012,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(35670,39012,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(35671,39012,'blocks_0_icon_row_items','4'),(35672,39012,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(35673,39012,'blocks_1_acfe_flexible_toggle',''),(35674,39012,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(35675,39012,'blocks_1_acfe_flexible_layout_title','Form'),(35676,39012,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(35677,39012,'blocks_1_row_content_format','promotion'),(35678,39012,'_blocks_1_row_content_format','field_6481ead962881'),(35679,39012,'blocks_1_row_content_title',''),(35680,39012,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(35681,39012,'blocks_1_row_content_heading',''),(35682,39012,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(35683,39012,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(35684,39012,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(35685,39012,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(35686,39012,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(35687,39012,'blocks_1_row_content_actions','1'),(35688,39012,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(35689,39012,'blocks_1_row_content',''),(35690,39012,'_blocks_1_row_content','field_61a0f5f5b3db0'),(35691,39012,'blocks_1_row_form',''),(35692,39012,'_blocks_1_row_form','field_61a4ff2c0b08e'),(35693,39012,'blocks_1_row_form_button_label',''),(35694,39012,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(35695,39012,'blocks_1_row_content_promotion_label','Up to 10% Off'),(35696,39012,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(35697,39012,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(35698,39012,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(35699,39012,'blocks_1_row_content_promotion_value','Up to 10% Off'),(35700,39012,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(35701,39012,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(35702,39012,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(35703,39012,'blocks_1_row_content_promotion',''),(35704,39012,'_blocks_1_row_content_promotion','field_6481eb3962882'),(35705,39012,'blocks_1_row_form_title','David Lloyd Referral'),(35706,39012,'_blocks_1_row_form_title','field_64872db5127af'),(35707,39012,'blocks_2_acfe_flexible_toggle',''),(35708,39012,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(35709,39012,'blocks_2_acfe_flexible_layout_title','Logos'),(35710,39012,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(35711,39012,'blocks_2_options_theme','#ffffff'),(35712,39012,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(35713,39012,'blocks_2_options_format','grid'),(35714,39012,'_blocks_2_options_format','field_61782964ee971'),(35715,39012,'blocks_2_options',''),(35716,39012,'_blocks_2_options','field_61782954ee965'),(35717,39012,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(35718,39012,'_blocks_2_logos','field_61782954ee96d'),(35719,39012,'blocks_2_title',''),(35720,39012,'_blocks_2_title','field_668fbfdc2daa1'),(35721,39012,'blocks_3_acfe_flexible_toggle',''),(35722,39012,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(35723,39012,'blocks_3_acfe_flexible_layout_title','Video'),(35724,39012,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(35725,39012,'blocks_3_size','large'),(35726,39012,'_blocks_3_size','field_6487038f297c1'),(35727,39012,'blocks_3_row_content_title',''),(35728,39012,'_blocks_3_row_content_title','field_64870132a865d'),(35729,39012,'blocks_3_row_content_heading','Course Overview'),(35730,39012,'_blocks_3_row_content_heading','field_64870142a865e'),(35731,39012,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(35732,39012,'_blocks_3_row_content_text','field_64870148a865f'),(35733,39012,'blocks_3_row_content',''),(35734,39012,'_blocks_3_row_content','field_6487008ba865c'),(35735,39012,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(35736,39012,'_blocks_3_video_src','field_6193c4a98ec07'),(35737,39012,'blocks_3_video_thumbnail','38998'),(35738,39012,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(35739,39012,'blocks_4_acfe_flexible_toggle',''),(35740,39012,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(35741,39012,'blocks_4_acfe_flexible_layout_title','Text Block'),(35742,39012,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(35743,39012,'blocks_4_options_theme','#ffffff'),(35744,39012,'_blocks_4_options_theme','field_6176830e2ad17'),(35745,39012,'blocks_4_options',''),(35746,39012,'_blocks_4_options','field_6176830e2ad16'),(35747,39012,'blocks_4_text_block_heading','Learn more about the course'),(35748,39012,'_blocks_4_text_block_heading','field_617669d413097'),(35749,39012,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(35750,39012,'_blocks_4_text_block_content','field_617669ec13098'),(35751,39012,'blocks_5_acfe_flexible_toggle',''),(35752,39012,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(35753,39012,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(35754,39012,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(35755,39012,'blocks_5_options_theme','#ffffff'),(35756,39012,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(35757,39012,'blocks_5_options',''),(35758,39012,'_blocks_5_options','field_6177cfcd8140f'),(35759,39012,'blocks_5_tabs_0_tab_label','What\'s Included'),(35760,39012,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(35761,39012,'blocks_5_tabs_0_tab_content_title',''),(35762,39012,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(35763,39012,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(35764,39012,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(35765,39012,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(35766,39012,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(35767,39012,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(35768,39012,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(35769,39012,'blocks_5_tabs_0_tab_content_actions','1'),(35770,39012,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(35771,39012,'blocks_5_tabs_0_tab_content',''),(35772,39012,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(35773,39012,'blocks_5_tabs_0_tab_image','39009'),(35774,39012,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(35775,39012,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(35776,39012,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(35777,39012,'blocks_5_tabs_1_tab_content_title',''),(35778,39012,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(35779,39012,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(35780,39012,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(35781,39012,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(35782,39012,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(35783,39012,'blocks_5_tabs_1_tab_content_actions',''),(35784,39012,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(35785,39012,'blocks_5_tabs_1_tab_content',''),(35786,39012,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(35787,39012,'blocks_5_tabs_1_tab_image','39010'),(35788,39012,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(35789,39012,'blocks_5_tabs','2'),(35790,39012,'_blocks_5_tabs','field_6177cff281419'),(35791,38973,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(35792,38973,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(35793,39013,'hero_style','default'),(35794,39013,'_hero_style','field_62051d9dc5324'),(35795,39013,'hero_image_pos_x','right'),(35796,39013,'_hero_image_pos_x','field_62ec3d05390bb'),(35797,39013,'hero_image_pos_y','top'),(35798,39013,'_hero_image_pos_y','field_62ec3d05390bc'),(35799,39013,'hero_image_pos',''),(35800,39013,'_hero_image_pos','field_62ec3d05390ba'),(35801,39013,'hero_title','Biomechanics Coach Course - David Lloyd'),(35802,39013,'_hero_title','field_617571fe285e8'),(35803,39013,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(35804,39013,'_hero_text','field_6175723c285e9'),(35805,39013,'hero_actions','1'),(35806,39013,'_hero_actions','field_61757270285ea'),(35807,39013,'hero_icon',''),(35808,39013,'_hero_icon','field_61a6182199d03'),(35809,39013,'fft_hide_from_listings','0'),(35810,39013,'_fft_hide_from_listings','field_61f1320446ab2'),(35811,39013,'fft_page_format','default'),(35812,39013,'_fft_page_format','field_61ae213f1f218'),(35813,39013,'fft_hide_nav','1'),(35814,39013,'_fft_hide_nav','field_635bd5e43527c'),(35815,39013,'fft_hide_header_call_to_action','0'),(35816,39013,'_fft_hide_header_call_to_action','field_635bd6723527d'),(35817,39013,'fft_page_sitemap','1'),(35818,39013,'_fft_page_sitemap','field_61af9b34e8181'),(35819,39013,'blocks','a:6:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";}'),(35820,39013,'_blocks','field_6176696113096'),(35821,39013,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(35822,39013,'_hero_actions_0_button','field_61757281285eb'),(35823,39013,'_thumbnail_id','38977'),(35824,39013,'__thumbnail_id','field_617570855ddaf'),(35825,39013,'blocks_0_acfe_flexible_toggle',''),(35826,39013,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(35827,39013,'blocks_0_acfe_flexible_layout_title','Icons'),(35828,39013,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(35829,39013,'blocks_0_options_theme','#ffffff'),(35830,39013,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(35831,39013,'blocks_0_options_format','row'),(35832,39013,'_blocks_0_options_format','field_64bfde9a90690'),(35833,39013,'blocks_0_options',''),(35834,39013,'_blocks_0_options','field_64bfdd9b90684'),(35835,39013,'blocks_0_icon_row_items_0_icon','qualification.svg'),(35836,39013,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(35837,39013,'blocks_0_icon_row_items_0_label','Course Type'),(35838,39013,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(35839,39013,'blocks_0_icon_row_items_0_text','Blended Learning'),(35840,39013,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(35841,39013,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(35842,39013,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(35843,39013,'blocks_0_icon_row_items_1_label','Qualification'),(35844,39013,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(35845,39013,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(35846,39013,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(35847,39013,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(35848,39013,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(35849,39013,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(35850,39013,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(35851,39013,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(35852,39013,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(35853,39013,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(35854,39013,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(35855,39013,'blocks_0_icon_row_items_3_label','IBA Registered'),(35856,39013,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(35857,39013,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(35858,39013,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(35859,39013,'blocks_0_icon_row_items','4'),(35860,39013,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(35861,39013,'blocks_1_acfe_flexible_toggle',''),(35862,39013,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(35863,39013,'blocks_1_acfe_flexible_layout_title','Form'),(35864,39013,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(35865,39013,'blocks_1_row_content_format','promotion'),(35866,39013,'_blocks_1_row_content_format','field_6481ead962881'),(35867,39013,'blocks_1_row_content_title',''),(35868,39013,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(35869,39013,'blocks_1_row_content_heading',''),(35870,39013,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(35871,39013,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(35872,39013,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(35873,39013,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(35874,39013,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(35875,39013,'blocks_1_row_content_actions','1'),(35876,39013,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(35877,39013,'blocks_1_row_content',''),(35878,39013,'_blocks_1_row_content','field_61a0f5f5b3db0'),(35879,39013,'blocks_1_row_form',''),(35880,39013,'_blocks_1_row_form','field_61a4ff2c0b08e'),(35881,39013,'blocks_1_row_form_button_label',''),(35882,39013,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(35883,39013,'blocks_1_row_content_promotion_label','Up to 10% Off'),(35884,39013,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(35885,39013,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(35886,39013,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(35887,39013,'blocks_1_row_content_promotion_value','Up to 10% Off'),(35888,39013,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(35889,39013,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(35890,39013,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(35891,39013,'blocks_1_row_content_promotion',''),(35892,39013,'_blocks_1_row_content_promotion','field_6481eb3962882'),(35893,39013,'blocks_1_row_form_title','David Lloyd Referral'),(35894,39013,'_blocks_1_row_form_title','field_64872db5127af'),(35895,39013,'blocks_2_acfe_flexible_toggle',''),(35896,39013,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(35897,39013,'blocks_2_acfe_flexible_layout_title','Logos'),(35898,39013,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(35899,39013,'blocks_2_options_theme','#ffffff'),(35900,39013,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(35901,39013,'blocks_2_options_format','grid'),(35902,39013,'_blocks_2_options_format','field_61782964ee971'),(35903,39013,'blocks_2_options',''),(35904,39013,'_blocks_2_options','field_61782954ee965'),(35905,39013,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(35906,39013,'_blocks_2_logos','field_61782954ee96d'),(35907,39013,'blocks_2_title',''),(35908,39013,'_blocks_2_title','field_668fbfdc2daa1'),(35909,39013,'blocks_3_acfe_flexible_toggle',''),(35910,39013,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(35911,39013,'blocks_3_acfe_flexible_layout_title','Video'),(35912,39013,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(35913,39013,'blocks_3_size','large'),(35914,39013,'_blocks_3_size','field_6487038f297c1'),(35915,39013,'blocks_3_row_content_title',''),(35916,39013,'_blocks_3_row_content_title','field_64870132a865d'),(35917,39013,'blocks_3_row_content_heading','Course Overview'),(35918,39013,'_blocks_3_row_content_heading','field_64870142a865e'),(35919,39013,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(35920,39013,'_blocks_3_row_content_text','field_64870148a865f'),(35921,39013,'blocks_3_row_content',''),(35922,39013,'_blocks_3_row_content','field_6487008ba865c'),(35923,39013,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(35924,39013,'_blocks_3_video_src','field_6193c4a98ec07'),(35925,39013,'blocks_3_video_thumbnail','38998'),(35926,39013,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(35927,39013,'blocks_4_acfe_flexible_toggle',''),(35928,39013,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(35929,39013,'blocks_4_acfe_flexible_layout_title','Text Block'),(35930,39013,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(35931,39013,'blocks_4_options_theme','#ffffff'),(35932,39013,'_blocks_4_options_theme','field_6176830e2ad17'),(35933,39013,'blocks_4_options',''),(35934,39013,'_blocks_4_options','field_6176830e2ad16'),(35935,39013,'blocks_4_text_block_heading','Learn more about the course'),(35936,39013,'_blocks_4_text_block_heading','field_617669d413097'),(35937,39013,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(35938,39013,'_blocks_4_text_block_content','field_617669ec13098'),(35939,39013,'blocks_5_acfe_flexible_toggle',''),(35940,39013,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(35941,39013,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(35942,39013,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(35943,39013,'blocks_5_options_theme','#ffffff'),(35944,39013,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(35945,39013,'blocks_5_options',''),(35946,39013,'_blocks_5_options','field_6177cfcd8140f'),(35947,39013,'blocks_5_tabs_0_tab_label','What\'s Included'),(35948,39013,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(35949,39013,'blocks_5_tabs_0_tab_content_title',''),(35950,39013,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(35951,39013,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(35952,39013,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(35953,39013,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(35954,39013,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(35955,39013,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(35956,39013,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(35957,39013,'blocks_5_tabs_0_tab_content_actions','1'),(35958,39013,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(35959,39013,'blocks_5_tabs_0_tab_content',''),(35960,39013,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(35961,39013,'blocks_5_tabs_0_tab_image','39009'),(35962,39013,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(35963,39013,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(35964,39013,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(35965,39013,'blocks_5_tabs_1_tab_content_title',''),(35966,39013,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(35967,39013,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(35968,39013,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(35969,39013,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(35970,39013,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(35971,39013,'blocks_5_tabs_1_tab_content_actions','1'),(35972,39013,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(35973,39013,'blocks_5_tabs_1_tab_content',''),(35974,39013,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(35975,39013,'blocks_5_tabs_1_tab_image','39010'),(35976,39013,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(35977,39013,'blocks_5_tabs','2'),(35978,39013,'_blocks_5_tabs','field_6177cff281419'),(35979,39013,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(35980,39013,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(35981,39014,'_edit_lock','1727266555:5'),(35982,39014,'_edit_last','5'),(35983,39015,'_edit_lock','1738582584:17'),(35984,39015,'_edit_last','17'),(35985,39016,'_edit_lock','1727266544:5'),(35986,39016,'_edit_last','14'),(35987,39017,'_edit_lock','1727266540:5'),(35988,39017,'_edit_last','14'),(35989,39018,'_edit_lock','1727266535:5'),(35990,39018,'_edit_last','5'),(35991,39019,'_edit_lock','1727266530:5'),(35992,39019,'_edit_last','5'),(35993,39020,'_edit_lock','1738582608:17'),(35994,39020,'_edit_last','17'),(35995,39021,'_edit_lock','1727266515:5'),(35996,39021,'_edit_last','14'),(35997,39022,'_edit_lock','1727101512:5'),(35998,39022,'_edit_last','5'),(35999,39023,'_edit_lock','1727266510:5'),(36000,39023,'_edit_last','14'),(36001,39024,'_edit_lock','1738582654:17'),(36002,39024,'_edit_last','17'),(36003,39025,'_edit_lock','1727266498:5'),(36004,39025,'_edit_last','14'),(36005,39026,'_edit_lock','1727266492:5'),(36006,39026,'_edit_last','14'),(36007,39027,'_edit_lock','1738582783:17'),(36008,39027,'_edit_last','17'),(36009,38973,'blocks_6_acfe_flexible_toggle',''),(36010,38973,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(36011,38973,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(36012,38973,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(36013,38973,'blocks_6_options_theme','#ffffff'),(36014,38973,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(36015,38973,'blocks_6_options_state','0'),(36016,38973,'_blocks_6_options_state','field_6239fcb7508c5'),(36017,38973,'blocks_6_options',''),(36018,38973,'_blocks_6_options','field_6177e2991ac44'),(36019,38973,'blocks_6_accordion_content','faqs'),(36020,38973,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(36021,38973,'blocks_6_actions',''),(36022,38973,'_blocks_6_actions','field_61a746a817f7a'),(36023,39028,'hero_style','default'),(36024,39028,'_hero_style','field_62051d9dc5324'),(36025,39028,'hero_image_pos_x','right'),(36026,39028,'_hero_image_pos_x','field_62ec3d05390bb'),(36027,39028,'hero_image_pos_y','top'),(36028,39028,'_hero_image_pos_y','field_62ec3d05390bc'),(36029,39028,'hero_image_pos',''),(36030,39028,'_hero_image_pos','field_62ec3d05390ba'),(36031,39028,'hero_title','Biomechanics Coach Course - David Lloyd'),(36032,39028,'_hero_title','field_617571fe285e8'),(36033,39028,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(36034,39028,'_hero_text','field_6175723c285e9'),(36035,39028,'hero_actions','1'),(36036,39028,'_hero_actions','field_61757270285ea'),(36037,39028,'hero_icon',''),(36038,39028,'_hero_icon','field_61a6182199d03'),(36039,39028,'fft_hide_from_listings','0'),(36040,39028,'_fft_hide_from_listings','field_61f1320446ab2'),(36041,39028,'fft_page_format','default'),(36042,39028,'_fft_page_format','field_61ae213f1f218'),(36043,39028,'fft_hide_nav','1'),(36044,39028,'_fft_hide_nav','field_635bd5e43527c'),(36045,39028,'fft_hide_header_call_to_action','0'),(36046,39028,'_fft_hide_header_call_to_action','field_635bd6723527d'),(36047,39028,'fft_page_sitemap','1'),(36048,39028,'_fft_page_sitemap','field_61af9b34e8181'),(36049,39028,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";}'),(36050,39028,'_blocks','field_6176696113096'),(36051,39028,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(36052,39028,'_hero_actions_0_button','field_61757281285eb'),(36053,39028,'_thumbnail_id','38977'),(36054,39028,'__thumbnail_id','field_617570855ddaf'),(36055,39028,'blocks_0_acfe_flexible_toggle',''),(36056,39028,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(36057,39028,'blocks_0_acfe_flexible_layout_title','Icons'),(36058,39028,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(36059,39028,'blocks_0_options_theme','#ffffff'),(36060,39028,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(36061,39028,'blocks_0_options_format','row'),(36062,39028,'_blocks_0_options_format','field_64bfde9a90690'),(36063,39028,'blocks_0_options',''),(36064,39028,'_blocks_0_options','field_64bfdd9b90684'),(36065,39028,'blocks_0_icon_row_items_0_icon','qualification.svg'),(36066,39028,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(36067,39028,'blocks_0_icon_row_items_0_label','Course Type'),(36068,39028,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(36069,39028,'blocks_0_icon_row_items_0_text','Blended Learning'),(36070,39028,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(36071,39028,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(36072,39028,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(36073,39028,'blocks_0_icon_row_items_1_label','Qualification'),(36074,39028,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(36075,39028,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(36076,39028,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(36077,39028,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(36078,39028,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(36079,39028,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(36080,39028,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(36081,39028,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(36082,39028,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(36083,39028,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(36084,39028,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(36085,39028,'blocks_0_icon_row_items_3_label','IBA Registered'),(36086,39028,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(36087,39028,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(36088,39028,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(36089,39028,'blocks_0_icon_row_items','4'),(36090,39028,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(36091,39028,'blocks_1_acfe_flexible_toggle',''),(36092,39028,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(36093,39028,'blocks_1_acfe_flexible_layout_title','Form'),(36094,39028,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(36095,39028,'blocks_1_row_content_format','promotion'),(36096,39028,'_blocks_1_row_content_format','field_6481ead962881'),(36097,39028,'blocks_1_row_content_title',''),(36098,39028,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(36099,39028,'blocks_1_row_content_heading',''),(36100,39028,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(36101,39028,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(36102,39028,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(36103,39028,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(36104,39028,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(36105,39028,'blocks_1_row_content_actions','1'),(36106,39028,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(36107,39028,'blocks_1_row_content',''),(36108,39028,'_blocks_1_row_content','field_61a0f5f5b3db0'),(36109,39028,'blocks_1_row_form',''),(36110,39028,'_blocks_1_row_form','field_61a4ff2c0b08e'),(36111,39028,'blocks_1_row_form_button_label',''),(36112,39028,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(36113,39028,'blocks_1_row_content_promotion_label','Up to 10% Off'),(36114,39028,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(36115,39028,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(36116,39028,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(36117,39028,'blocks_1_row_content_promotion_value','Up to 10% Off'),(36118,39028,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(36119,39028,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(36120,39028,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(36121,39028,'blocks_1_row_content_promotion',''),(36122,39028,'_blocks_1_row_content_promotion','field_6481eb3962882'),(36123,39028,'blocks_1_row_form_title','David Lloyd Referral'),(36124,39028,'_blocks_1_row_form_title','field_64872db5127af'),(36125,39028,'blocks_2_acfe_flexible_toggle',''),(36126,39028,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(36127,39028,'blocks_2_acfe_flexible_layout_title','Logos'),(36128,39028,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(36129,39028,'blocks_2_options_theme','#ffffff'),(36130,39028,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(36131,39028,'blocks_2_options_format','grid'),(36132,39028,'_blocks_2_options_format','field_61782964ee971'),(36133,39028,'blocks_2_options',''),(36134,39028,'_blocks_2_options','field_61782954ee965'),(36135,39028,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(36136,39028,'_blocks_2_logos','field_61782954ee96d'),(36137,39028,'blocks_2_title',''),(36138,39028,'_blocks_2_title','field_668fbfdc2daa1'),(36139,39028,'blocks_3_acfe_flexible_toggle',''),(36140,39028,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(36141,39028,'blocks_3_acfe_flexible_layout_title','Video'),(36142,39028,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(36143,39028,'blocks_3_size','large'),(36144,39028,'_blocks_3_size','field_6487038f297c1'),(36145,39028,'blocks_3_row_content_title',''),(36146,39028,'_blocks_3_row_content_title','field_64870132a865d'),(36147,39028,'blocks_3_row_content_heading','Course Overview'),(36148,39028,'_blocks_3_row_content_heading','field_64870142a865e'),(36149,39028,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(36150,39028,'_blocks_3_row_content_text','field_64870148a865f'),(36151,39028,'blocks_3_row_content',''),(36152,39028,'_blocks_3_row_content','field_6487008ba865c'),(36153,39028,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(36154,39028,'_blocks_3_video_src','field_6193c4a98ec07'),(36155,39028,'blocks_3_video_thumbnail','38998'),(36156,39028,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(36157,39028,'blocks_4_acfe_flexible_toggle',''),(36158,39028,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(36159,39028,'blocks_4_acfe_flexible_layout_title','Text Block'),(36160,39028,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(36161,39028,'blocks_4_options_theme','#ffffff'),(36162,39028,'_blocks_4_options_theme','field_6176830e2ad17'),(36163,39028,'blocks_4_options',''),(36164,39028,'_blocks_4_options','field_6176830e2ad16'),(36165,39028,'blocks_4_text_block_heading','Learn more about the course'),(36166,39028,'_blocks_4_text_block_heading','field_617669d413097'),(36167,39028,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(36168,39028,'_blocks_4_text_block_content','field_617669ec13098'),(36169,39028,'blocks_5_acfe_flexible_toggle',''),(36170,39028,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(36171,39028,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(36172,39028,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(36173,39028,'blocks_5_options_theme','#ffffff'),(36174,39028,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(36175,39028,'blocks_5_options',''),(36176,39028,'_blocks_5_options','field_6177cfcd8140f'),(36177,39028,'blocks_5_tabs_0_tab_label','What\'s Included'),(36178,39028,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(36179,39028,'blocks_5_tabs_0_tab_content_title',''),(36180,39028,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(36181,39028,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(36182,39028,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(36183,39028,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(36184,39028,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(36185,39028,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(36186,39028,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(36187,39028,'blocks_5_tabs_0_tab_content_actions','1'),(36188,39028,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(36189,39028,'blocks_5_tabs_0_tab_content',''),(36190,39028,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(36191,39028,'blocks_5_tabs_0_tab_image','39009'),(36192,39028,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(36193,39028,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(36194,39028,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(36195,39028,'blocks_5_tabs_1_tab_content_title',''),(36196,39028,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(36197,39028,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(36198,39028,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(36199,39028,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(36200,39028,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(36201,39028,'blocks_5_tabs_1_tab_content_actions','1'),(36202,39028,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(36203,39028,'blocks_5_tabs_1_tab_content',''),(36204,39028,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(36205,39028,'blocks_5_tabs_1_tab_image','39010'),(36206,39028,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(36207,39028,'blocks_5_tabs','2'),(36208,39028,'_blocks_5_tabs','field_6177cff281419'),(36209,39028,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(36210,39028,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(36211,39028,'blocks_6_acfe_flexible_toggle',''),(36212,39028,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(36213,39028,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(36214,39028,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(36215,39028,'blocks_6_options_theme','#b61234'),(36216,39028,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(36217,39028,'blocks_6_options_state','1'),(36218,39028,'_blocks_6_options_state','field_6239fcb7508c5'),(36219,39028,'blocks_6_options',''),(36220,39028,'_blocks_6_options','field_6177e2991ac44'),(36221,39028,'blocks_6_accordion_content','faqs_all'),(36222,39028,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(36223,39028,'blocks_6_actions',''),(36224,39028,'_blocks_6_actions','field_61a746a817f7a'),(36225,38973,'blocks_6_content_title',''),(36226,38973,'_blocks_6_content_title','field_64d237e8bb1e2'),(36227,38973,'blocks_6_content_heading','Frequently asked questions'),(36228,38973,'_blocks_6_content_heading','field_64d237e8bb1e3'),(36229,38973,'blocks_6_content_text',''),(36230,38973,'_blocks_6_content_text','field_64d237e8bb1e4'),(36231,38973,'blocks_6_content_actions',''),(36232,38973,'_blocks_6_content_actions','field_64d237e8bb1e5'),(36233,38973,'blocks_6_content_align','left'),(36234,38973,'_blocks_6_content_align','field_64d2443e6b6aa'),(36235,38973,'blocks_6_content',''),(36236,38973,'_blocks_6_content','field_64d237e8bb1e1'),(36237,38973,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(36238,38973,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(36239,39029,'hero_style','default'),(36240,39029,'_hero_style','field_62051d9dc5324'),(36241,39029,'hero_image_pos_x','right'),(36242,39029,'_hero_image_pos_x','field_62ec3d05390bb'),(36243,39029,'hero_image_pos_y','top'),(36244,39029,'_hero_image_pos_y','field_62ec3d05390bc'),(36245,39029,'hero_image_pos',''),(36246,39029,'_hero_image_pos','field_62ec3d05390ba'),(36247,39029,'hero_title','Biomechanics Coach Course - David Lloyd'),(36248,39029,'_hero_title','field_617571fe285e8'),(36249,39029,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(36250,39029,'_hero_text','field_6175723c285e9'),(36251,39029,'hero_actions','1'),(36252,39029,'_hero_actions','field_61757270285ea'),(36253,39029,'hero_icon',''),(36254,39029,'_hero_icon','field_61a6182199d03'),(36255,39029,'fft_hide_from_listings','0'),(36256,39029,'_fft_hide_from_listings','field_61f1320446ab2'),(36257,39029,'fft_page_format','default'),(36258,39029,'_fft_page_format','field_61ae213f1f218'),(36259,39029,'fft_hide_nav','1'),(36260,39029,'_fft_hide_nav','field_635bd5e43527c'),(36261,39029,'fft_hide_header_call_to_action','0'),(36262,39029,'_fft_hide_header_call_to_action','field_635bd6723527d'),(36263,39029,'fft_page_sitemap','1'),(36264,39029,'_fft_page_sitemap','field_61af9b34e8181'),(36265,39029,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";}'),(36266,39029,'_blocks','field_6176696113096'),(36267,39029,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(36268,39029,'_hero_actions_0_button','field_61757281285eb'),(36269,39029,'_thumbnail_id','38977'),(36270,39029,'__thumbnail_id','field_617570855ddaf'),(36271,39029,'blocks_0_acfe_flexible_toggle',''),(36272,39029,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(36273,39029,'blocks_0_acfe_flexible_layout_title','Icons'),(36274,39029,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(36275,39029,'blocks_0_options_theme','#ffffff'),(36276,39029,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(36277,39029,'blocks_0_options_format','row'),(36278,39029,'_blocks_0_options_format','field_64bfde9a90690'),(36279,39029,'blocks_0_options',''),(36280,39029,'_blocks_0_options','field_64bfdd9b90684'),(36281,39029,'blocks_0_icon_row_items_0_icon','qualification.svg'),(36282,39029,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(36283,39029,'blocks_0_icon_row_items_0_label','Course Type'),(36284,39029,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(36285,39029,'blocks_0_icon_row_items_0_text','Blended Learning'),(36286,39029,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(36287,39029,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(36288,39029,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(36289,39029,'blocks_0_icon_row_items_1_label','Qualification'),(36290,39029,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(36291,39029,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(36292,39029,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(36293,39029,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(36294,39029,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(36295,39029,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(36296,39029,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(36297,39029,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(36298,39029,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(36299,39029,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(36300,39029,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(36301,39029,'blocks_0_icon_row_items_3_label','IBA Registered'),(36302,39029,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(36303,39029,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(36304,39029,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(36305,39029,'blocks_0_icon_row_items','4'),(36306,39029,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(36307,39029,'blocks_1_acfe_flexible_toggle',''),(36308,39029,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(36309,39029,'blocks_1_acfe_flexible_layout_title','Form'),(36310,39029,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(36311,39029,'blocks_1_row_content_format','promotion'),(36312,39029,'_blocks_1_row_content_format','field_6481ead962881'),(36313,39029,'blocks_1_row_content_title',''),(36314,39029,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(36315,39029,'blocks_1_row_content_heading',''),(36316,39029,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(36317,39029,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(36318,39029,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(36319,39029,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(36320,39029,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(36321,39029,'blocks_1_row_content_actions','1'),(36322,39029,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(36323,39029,'blocks_1_row_content',''),(36324,39029,'_blocks_1_row_content','field_61a0f5f5b3db0'),(36325,39029,'blocks_1_row_form',''),(36326,39029,'_blocks_1_row_form','field_61a4ff2c0b08e'),(36327,39029,'blocks_1_row_form_button_label',''),(36328,39029,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(36329,39029,'blocks_1_row_content_promotion_label','Up to 10% Off'),(36330,39029,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(36331,39029,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(36332,39029,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(36333,39029,'blocks_1_row_content_promotion_value','Up to 10% Off'),(36334,39029,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(36335,39029,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(36336,39029,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(36337,39029,'blocks_1_row_content_promotion',''),(36338,39029,'_blocks_1_row_content_promotion','field_6481eb3962882'),(36339,39029,'blocks_1_row_form_title','David Lloyd Referral'),(36340,39029,'_blocks_1_row_form_title','field_64872db5127af'),(36341,39029,'blocks_2_acfe_flexible_toggle',''),(36342,39029,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(36343,39029,'blocks_2_acfe_flexible_layout_title','Logos'),(36344,39029,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(36345,39029,'blocks_2_options_theme','#ffffff'),(36346,39029,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(36347,39029,'blocks_2_options_format','grid'),(36348,39029,'_blocks_2_options_format','field_61782964ee971'),(36349,39029,'blocks_2_options',''),(36350,39029,'_blocks_2_options','field_61782954ee965'),(36351,39029,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(36352,39029,'_blocks_2_logos','field_61782954ee96d'),(36353,39029,'blocks_2_title',''),(36354,39029,'_blocks_2_title','field_668fbfdc2daa1'),(36355,39029,'blocks_3_acfe_flexible_toggle',''),(36356,39029,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(36357,39029,'blocks_3_acfe_flexible_layout_title','Video'),(36358,39029,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(36359,39029,'blocks_3_size','large'),(36360,39029,'_blocks_3_size','field_6487038f297c1'),(36361,39029,'blocks_3_row_content_title',''),(36362,39029,'_blocks_3_row_content_title','field_64870132a865d'),(36363,39029,'blocks_3_row_content_heading','Course Overview'),(36364,39029,'_blocks_3_row_content_heading','field_64870142a865e'),(36365,39029,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(36366,39029,'_blocks_3_row_content_text','field_64870148a865f'),(36367,39029,'blocks_3_row_content',''),(36368,39029,'_blocks_3_row_content','field_6487008ba865c'),(36369,39029,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(36370,39029,'_blocks_3_video_src','field_6193c4a98ec07'),(36371,39029,'blocks_3_video_thumbnail','38998'),(36372,39029,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(36373,39029,'blocks_4_acfe_flexible_toggle',''),(36374,39029,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(36375,39029,'blocks_4_acfe_flexible_layout_title','Text Block'),(36376,39029,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(36377,39029,'blocks_4_options_theme','#ffffff'),(36378,39029,'_blocks_4_options_theme','field_6176830e2ad17'),(36379,39029,'blocks_4_options',''),(36380,39029,'_blocks_4_options','field_6176830e2ad16'),(36381,39029,'blocks_4_text_block_heading','Learn more about the course'),(36382,39029,'_blocks_4_text_block_heading','field_617669d413097'),(36383,39029,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(36384,39029,'_blocks_4_text_block_content','field_617669ec13098'),(36385,39029,'blocks_5_acfe_flexible_toggle',''),(36386,39029,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(36387,39029,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(36388,39029,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(36389,39029,'blocks_5_options_theme','#ffffff'),(36390,39029,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(36391,39029,'blocks_5_options',''),(36392,39029,'_blocks_5_options','field_6177cfcd8140f'),(36393,39029,'blocks_5_tabs_0_tab_label','What\'s Included'),(36394,39029,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(36395,39029,'blocks_5_tabs_0_tab_content_title',''),(36396,39029,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(36397,39029,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(36398,39029,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(36399,39029,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(36400,39029,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(36401,39029,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(36402,39029,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(36403,39029,'blocks_5_tabs_0_tab_content_actions','1'),(36404,39029,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(36405,39029,'blocks_5_tabs_0_tab_content',''),(36406,39029,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(36407,39029,'blocks_5_tabs_0_tab_image','39009'),(36408,39029,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(36409,39029,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(36410,39029,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(36411,39029,'blocks_5_tabs_1_tab_content_title',''),(36412,39029,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(36413,39029,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(36414,39029,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(36415,39029,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(36416,39029,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(36417,39029,'blocks_5_tabs_1_tab_content_actions','1'),(36418,39029,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(36419,39029,'blocks_5_tabs_1_tab_content',''),(36420,39029,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(36421,39029,'blocks_5_tabs_1_tab_image','39010'),(36422,39029,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(36423,39029,'blocks_5_tabs','2'),(36424,39029,'_blocks_5_tabs','field_6177cff281419'),(36425,39029,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(36426,39029,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(36427,39029,'blocks_6_acfe_flexible_toggle',''),(36428,39029,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(36429,39029,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(36430,39029,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(36431,39029,'blocks_6_options_theme','#b61234'),(36432,39029,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(36433,39029,'blocks_6_options_state','1'),(36434,39029,'_blocks_6_options_state','field_6239fcb7508c5'),(36435,39029,'blocks_6_options',''),(36436,39029,'_blocks_6_options','field_6177e2991ac44'),(36437,39029,'blocks_6_accordion_content','faqs'),(36438,39029,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(36439,39029,'blocks_6_actions',''),(36440,39029,'_blocks_6_actions','field_61a746a817f7a'),(36441,39029,'blocks_6_content_title',''),(36442,39029,'_blocks_6_content_title','field_64d237e8bb1e2'),(36443,39029,'blocks_6_content_heading',''),(36444,39029,'_blocks_6_content_heading','field_64d237e8bb1e3'),(36445,39029,'blocks_6_content_text',''),(36446,39029,'_blocks_6_content_text','field_64d237e8bb1e4'),(36447,39029,'blocks_6_content_actions',''),(36448,39029,'_blocks_6_content_actions','field_64d237e8bb1e5'),(36449,39029,'blocks_6_content_align','left'),(36450,39029,'_blocks_6_content_align','field_64d2443e6b6aa'),(36451,39029,'blocks_6_content',''),(36452,39029,'_blocks_6_content','field_64d237e8bb1e1'),(36453,39029,'blocks_6_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39023\";i:7;s:5:\"39019\";i:8;s:5:\"39015\";i:9;s:5:\"39027\";i:10;s:5:\"39026\";i:11;s:5:\"39022\";i:12;s:5:\"39024\";i:13;s:5:\"39020\";}'),(36454,39029,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(36455,39030,'hero_style','default'),(36456,39030,'_hero_style','field_62051d9dc5324'),(36457,39030,'hero_image_pos_x','right'),(36458,39030,'_hero_image_pos_x','field_62ec3d05390bb'),(36459,39030,'hero_image_pos_y','top'),(36460,39030,'_hero_image_pos_y','field_62ec3d05390bc'),(36461,39030,'hero_image_pos',''),(36462,39030,'_hero_image_pos','field_62ec3d05390ba'),(36463,39030,'hero_title','Biomechanics Coach Course - David Lloyd'),(36464,39030,'_hero_title','field_617571fe285e8'),(36465,39030,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(36466,39030,'_hero_text','field_6175723c285e9'),(36467,39030,'hero_actions','1'),(36468,39030,'_hero_actions','field_61757270285ea'),(36469,39030,'hero_icon',''),(36470,39030,'_hero_icon','field_61a6182199d03'),(36471,39030,'fft_hide_from_listings','0'),(36472,39030,'_fft_hide_from_listings','field_61f1320446ab2'),(36473,39030,'fft_page_format','default'),(36474,39030,'_fft_page_format','field_61ae213f1f218'),(36475,39030,'fft_hide_nav','1'),(36476,39030,'_fft_hide_nav','field_635bd5e43527c'),(36477,39030,'fft_hide_header_call_to_action','0'),(36478,39030,'_fft_hide_header_call_to_action','field_635bd6723527d'),(36479,39030,'fft_page_sitemap','1'),(36480,39030,'_fft_page_sitemap','field_61af9b34e8181'),(36481,39030,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";}'),(36482,39030,'_blocks','field_6176696113096'),(36483,39030,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(36484,39030,'_hero_actions_0_button','field_61757281285eb'),(36485,39030,'_thumbnail_id','38977'),(36486,39030,'__thumbnail_id','field_617570855ddaf'),(36487,39030,'blocks_0_acfe_flexible_toggle',''),(36488,39030,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(36489,39030,'blocks_0_acfe_flexible_layout_title','Icons'),(36490,39030,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(36491,39030,'blocks_0_options_theme','#ffffff'),(36492,39030,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(36493,39030,'blocks_0_options_format','row'),(36494,39030,'_blocks_0_options_format','field_64bfde9a90690'),(36495,39030,'blocks_0_options',''),(36496,39030,'_blocks_0_options','field_64bfdd9b90684'),(36497,39030,'blocks_0_icon_row_items_0_icon','qualification.svg'),(36498,39030,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(36499,39030,'blocks_0_icon_row_items_0_label','Course Type'),(36500,39030,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(36501,39030,'blocks_0_icon_row_items_0_text','Blended Learning'),(36502,39030,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(36503,39030,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(36504,39030,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(36505,39030,'blocks_0_icon_row_items_1_label','Qualification'),(36506,39030,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(36507,39030,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(36508,39030,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(36509,39030,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(36510,39030,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(36511,39030,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(36512,39030,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(36513,39030,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(36514,39030,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(36515,39030,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(36516,39030,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(36517,39030,'blocks_0_icon_row_items_3_label','IBA Registered'),(36518,39030,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(36519,39030,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(36520,39030,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(36521,39030,'blocks_0_icon_row_items','4'),(36522,39030,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(36523,39030,'blocks_1_acfe_flexible_toggle',''),(36524,39030,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(36525,39030,'blocks_1_acfe_flexible_layout_title','Form'),(36526,39030,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(36527,39030,'blocks_1_row_content_format','promotion'),(36528,39030,'_blocks_1_row_content_format','field_6481ead962881'),(36529,39030,'blocks_1_row_content_title',''),(36530,39030,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(36531,39030,'blocks_1_row_content_heading',''),(36532,39030,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(36533,39030,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(36534,39030,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(36535,39030,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(36536,39030,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(36537,39030,'blocks_1_row_content_actions','1'),(36538,39030,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(36539,39030,'blocks_1_row_content',''),(36540,39030,'_blocks_1_row_content','field_61a0f5f5b3db0'),(36541,39030,'blocks_1_row_form',''),(36542,39030,'_blocks_1_row_form','field_61a4ff2c0b08e'),(36543,39030,'blocks_1_row_form_button_label',''),(36544,39030,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(36545,39030,'blocks_1_row_content_promotion_label','Up to 10% Off'),(36546,39030,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(36547,39030,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(36548,39030,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(36549,39030,'blocks_1_row_content_promotion_value','Up to 10% Off'),(36550,39030,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(36551,39030,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(36552,39030,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(36553,39030,'blocks_1_row_content_promotion',''),(36554,39030,'_blocks_1_row_content_promotion','field_6481eb3962882'),(36555,39030,'blocks_1_row_form_title','David Lloyd Referral'),(36556,39030,'_blocks_1_row_form_title','field_64872db5127af'),(36557,39030,'blocks_2_acfe_flexible_toggle',''),(36558,39030,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(36559,39030,'blocks_2_acfe_flexible_layout_title','Logos'),(36560,39030,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(36561,39030,'blocks_2_options_theme','#ffffff'),(36562,39030,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(36563,39030,'blocks_2_options_format','grid'),(36564,39030,'_blocks_2_options_format','field_61782964ee971'),(36565,39030,'blocks_2_options',''),(36566,39030,'_blocks_2_options','field_61782954ee965'),(36567,39030,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(36568,39030,'_blocks_2_logos','field_61782954ee96d'),(36569,39030,'blocks_2_title',''),(36570,39030,'_blocks_2_title','field_668fbfdc2daa1'),(36571,39030,'blocks_3_acfe_flexible_toggle',''),(36572,39030,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(36573,39030,'blocks_3_acfe_flexible_layout_title','Video'),(36574,39030,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(36575,39030,'blocks_3_size','large'),(36576,39030,'_blocks_3_size','field_6487038f297c1'),(36577,39030,'blocks_3_row_content_title',''),(36578,39030,'_blocks_3_row_content_title','field_64870132a865d'),(36579,39030,'blocks_3_row_content_heading','Course Overview'),(36580,39030,'_blocks_3_row_content_heading','field_64870142a865e'),(36581,39030,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(36582,39030,'_blocks_3_row_content_text','field_64870148a865f'),(36583,39030,'blocks_3_row_content',''),(36584,39030,'_blocks_3_row_content','field_6487008ba865c'),(36585,39030,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(36586,39030,'_blocks_3_video_src','field_6193c4a98ec07'),(36587,39030,'blocks_3_video_thumbnail','38998'),(36588,39030,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(36589,39030,'blocks_4_acfe_flexible_toggle',''),(36590,39030,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(36591,39030,'blocks_4_acfe_flexible_layout_title','Text Block'),(36592,39030,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(36593,39030,'blocks_4_options_theme','#ffffff'),(36594,39030,'_blocks_4_options_theme','field_6176830e2ad17'),(36595,39030,'blocks_4_options',''),(36596,39030,'_blocks_4_options','field_6176830e2ad16'),(36597,39030,'blocks_4_text_block_heading','Learn more about the course'),(36598,39030,'_blocks_4_text_block_heading','field_617669d413097'),(36599,39030,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(36600,39030,'_blocks_4_text_block_content','field_617669ec13098'),(36601,39030,'blocks_5_acfe_flexible_toggle',''),(36602,39030,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(36603,39030,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(36604,39030,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(36605,39030,'blocks_5_options_theme','#ffffff'),(36606,39030,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(36607,39030,'blocks_5_options',''),(36608,39030,'_blocks_5_options','field_6177cfcd8140f'),(36609,39030,'blocks_5_tabs_0_tab_label','What\'s Included'),(36610,39030,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(36611,39030,'blocks_5_tabs_0_tab_content_title',''),(36612,39030,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(36613,39030,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(36614,39030,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(36615,39030,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(36616,39030,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(36617,39030,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(36618,39030,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(36619,39030,'blocks_5_tabs_0_tab_content_actions','1'),(36620,39030,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(36621,39030,'blocks_5_tabs_0_tab_content',''),(36622,39030,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(36623,39030,'blocks_5_tabs_0_tab_image','39009'),(36624,39030,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(36625,39030,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(36626,39030,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(36627,39030,'blocks_5_tabs_1_tab_content_title',''),(36628,39030,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(36629,39030,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(36630,39030,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(36631,39030,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(36632,39030,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(36633,39030,'blocks_5_tabs_1_tab_content_actions','1'),(36634,39030,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(36635,39030,'blocks_5_tabs_1_tab_content',''),(36636,39030,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(36637,39030,'blocks_5_tabs_1_tab_image','39010'),(36638,39030,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(36639,39030,'blocks_5_tabs','2'),(36640,39030,'_blocks_5_tabs','field_6177cff281419'),(36641,39030,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(36642,39030,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(36643,39030,'blocks_6_acfe_flexible_toggle',''),(36644,39030,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(36645,39030,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(36646,39030,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(36647,39030,'blocks_6_options_theme','#ffffff'),(36648,39030,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(36649,39030,'blocks_6_options_state','0'),(36650,39030,'_blocks_6_options_state','field_6239fcb7508c5'),(36651,39030,'blocks_6_options',''),(36652,39030,'_blocks_6_options','field_6177e2991ac44'),(36653,39030,'blocks_6_accordion_content','faqs'),(36654,39030,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(36655,39030,'blocks_6_actions',''),(36656,39030,'_blocks_6_actions','field_61a746a817f7a'),(36657,39030,'blocks_6_content_title',''),(36658,39030,'_blocks_6_content_title','field_64d237e8bb1e2'),(36659,39030,'blocks_6_content_heading','Frequently asked questions'),(36660,39030,'_blocks_6_content_heading','field_64d237e8bb1e3'),(36661,39030,'blocks_6_content_text',''),(36662,39030,'_blocks_6_content_text','field_64d237e8bb1e4'),(36663,39030,'blocks_6_content_actions',''),(36664,39030,'_blocks_6_content_actions','field_64d237e8bb1e5'),(36665,39030,'blocks_6_content_align','left'),(36666,39030,'_blocks_6_content_align','field_64d2443e6b6aa'),(36667,39030,'blocks_6_content',''),(36668,39030,'_blocks_6_content','field_64d237e8bb1e1'),(36669,39030,'blocks_6_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39023\";i:7;s:5:\"39019\";i:8;s:5:\"39015\";i:9;s:5:\"39027\";i:10;s:5:\"39026\";i:11;s:5:\"39022\";i:12;s:5:\"39024\";i:13;s:5:\"39020\";}'),(36670,39030,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(36671,39031,'hero_style','default'),(36672,39031,'_hero_style','field_62051d9dc5324'),(36673,39031,'hero_image_pos_x','right'),(36674,39031,'_hero_image_pos_x','field_62ec3d05390bb'),(36675,39031,'hero_image_pos_y','top'),(36676,39031,'_hero_image_pos_y','field_62ec3d05390bc'),(36677,39031,'hero_image_pos',''),(36678,39031,'_hero_image_pos','field_62ec3d05390ba'),(36679,39031,'hero_title','Biomechanics Coach Course - David Lloyd'),(36680,39031,'_hero_title','field_617571fe285e8'),(36681,39031,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(36682,39031,'_hero_text','field_6175723c285e9'),(36683,39031,'hero_actions','1'),(36684,39031,'_hero_actions','field_61757270285ea'),(36685,39031,'hero_icon',''),(36686,39031,'_hero_icon','field_61a6182199d03'),(36687,39031,'fft_hide_from_listings','0'),(36688,39031,'_fft_hide_from_listings','field_61f1320446ab2'),(36689,39031,'fft_page_format','default'),(36690,39031,'_fft_page_format','field_61ae213f1f218'),(36691,39031,'fft_hide_nav','1'),(36692,39031,'_fft_hide_nav','field_635bd5e43527c'),(36693,39031,'fft_hide_header_call_to_action','0'),(36694,39031,'_fft_hide_header_call_to_action','field_635bd6723527d'),(36695,39031,'fft_page_sitemap','1'),(36696,39031,'_fft_page_sitemap','field_61af9b34e8181'),(36697,39031,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";}'),(36698,39031,'_blocks','field_6176696113096'),(36699,39031,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(36700,39031,'_hero_actions_0_button','field_61757281285eb'),(36701,39031,'_thumbnail_id','38977'),(36702,39031,'__thumbnail_id','field_617570855ddaf'),(36703,39031,'blocks_0_acfe_flexible_toggle',''),(36704,39031,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(36705,39031,'blocks_0_acfe_flexible_layout_title','Icons'),(36706,39031,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(36707,39031,'blocks_0_options_theme','#ffffff'),(36708,39031,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(36709,39031,'blocks_0_options_format','row'),(36710,39031,'_blocks_0_options_format','field_64bfde9a90690'),(36711,39031,'blocks_0_options',''),(36712,39031,'_blocks_0_options','field_64bfdd9b90684'),(36713,39031,'blocks_0_icon_row_items_0_icon','qualification.svg'),(36714,39031,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(36715,39031,'blocks_0_icon_row_items_0_label','Course Type'),(36716,39031,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(36717,39031,'blocks_0_icon_row_items_0_text','Blended Learning'),(36718,39031,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(36719,39031,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(36720,39031,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(36721,39031,'blocks_0_icon_row_items_1_label','Qualification'),(36722,39031,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(36723,39031,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(36724,39031,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(36725,39031,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(36726,39031,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(36727,39031,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(36728,39031,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(36729,39031,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(36730,39031,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(36731,39031,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(36732,39031,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(36733,39031,'blocks_0_icon_row_items_3_label','IBA Registered'),(36734,39031,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(36735,39031,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(36736,39031,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(36737,39031,'blocks_0_icon_row_items','4'),(36738,39031,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(36739,39031,'blocks_1_acfe_flexible_toggle',''),(36740,39031,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(36741,39031,'blocks_1_acfe_flexible_layout_title','Form'),(36742,39031,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(36743,39031,'blocks_1_row_content_format','promotion'),(36744,39031,'_blocks_1_row_content_format','field_6481ead962881'),(36745,39031,'blocks_1_row_content_title',''),(36746,39031,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(36747,39031,'blocks_1_row_content_heading',''),(36748,39031,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(36749,39031,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(36750,39031,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(36751,39031,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(36752,39031,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(36753,39031,'blocks_1_row_content_actions','1'),(36754,39031,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(36755,39031,'blocks_1_row_content',''),(36756,39031,'_blocks_1_row_content','field_61a0f5f5b3db0'),(36757,39031,'blocks_1_row_form',''),(36758,39031,'_blocks_1_row_form','field_61a4ff2c0b08e'),(36759,39031,'blocks_1_row_form_button_label',''),(36760,39031,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(36761,39031,'blocks_1_row_content_promotion_label','Up to 10% Off'),(36762,39031,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(36763,39031,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(36764,39031,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(36765,39031,'blocks_1_row_content_promotion_value','Up to 10% Off'),(36766,39031,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(36767,39031,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(36768,39031,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(36769,39031,'blocks_1_row_content_promotion',''),(36770,39031,'_blocks_1_row_content_promotion','field_6481eb3962882'),(36771,39031,'blocks_1_row_form_title','David Lloyd Referral'),(36772,39031,'_blocks_1_row_form_title','field_64872db5127af'),(36773,39031,'blocks_2_acfe_flexible_toggle',''),(36774,39031,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(36775,39031,'blocks_2_acfe_flexible_layout_title','Logos'),(36776,39031,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(36777,39031,'blocks_2_options_theme','#ffffff'),(36778,39031,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(36779,39031,'blocks_2_options_format','grid'),(36780,39031,'_blocks_2_options_format','field_61782964ee971'),(36781,39031,'blocks_2_options',''),(36782,39031,'_blocks_2_options','field_61782954ee965'),(36783,39031,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(36784,39031,'_blocks_2_logos','field_61782954ee96d'),(36785,39031,'blocks_2_title',''),(36786,39031,'_blocks_2_title','field_668fbfdc2daa1'),(36787,39031,'blocks_3_acfe_flexible_toggle',''),(36788,39031,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(36789,39031,'blocks_3_acfe_flexible_layout_title','Video'),(36790,39031,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(36791,39031,'blocks_3_size','large'),(36792,39031,'_blocks_3_size','field_6487038f297c1'),(36793,39031,'blocks_3_row_content_title',''),(36794,39031,'_blocks_3_row_content_title','field_64870132a865d'),(36795,39031,'blocks_3_row_content_heading','Course Overview'),(36796,39031,'_blocks_3_row_content_heading','field_64870142a865e'),(36797,39031,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(36798,39031,'_blocks_3_row_content_text','field_64870148a865f'),(36799,39031,'blocks_3_row_content',''),(36800,39031,'_blocks_3_row_content','field_6487008ba865c'),(36801,39031,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(36802,39031,'_blocks_3_video_src','field_6193c4a98ec07'),(36803,39031,'blocks_3_video_thumbnail','38998'),(36804,39031,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(36805,39031,'blocks_4_acfe_flexible_toggle',''),(36806,39031,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(36807,39031,'blocks_4_acfe_flexible_layout_title','Text Block'),(36808,39031,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(36809,39031,'blocks_4_options_theme','#ffffff'),(36810,39031,'_blocks_4_options_theme','field_6176830e2ad17'),(36811,39031,'blocks_4_options',''),(36812,39031,'_blocks_4_options','field_6176830e2ad16'),(36813,39031,'blocks_4_text_block_heading','Learn more about the course'),(36814,39031,'_blocks_4_text_block_heading','field_617669d413097'),(36815,39031,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(36816,39031,'_blocks_4_text_block_content','field_617669ec13098'),(36817,39031,'blocks_5_acfe_flexible_toggle',''),(36818,39031,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(36819,39031,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(36820,39031,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(36821,39031,'blocks_5_options_theme','#ffffff'),(36822,39031,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(36823,39031,'blocks_5_options',''),(36824,39031,'_blocks_5_options','field_6177cfcd8140f'),(36825,39031,'blocks_5_tabs_0_tab_label','What\'s Included'),(36826,39031,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(36827,39031,'blocks_5_tabs_0_tab_content_title',''),(36828,39031,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(36829,39031,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(36830,39031,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(36831,39031,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(36832,39031,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(36833,39031,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(36834,39031,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(36835,39031,'blocks_5_tabs_0_tab_content_actions','1'),(36836,39031,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(36837,39031,'blocks_5_tabs_0_tab_content',''),(36838,39031,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(36839,39031,'blocks_5_tabs_0_tab_image','39009'),(36840,39031,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(36841,39031,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(36842,39031,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(36843,39031,'blocks_5_tabs_1_tab_content_title',''),(36844,39031,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(36845,39031,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(36846,39031,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(36847,39031,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(36848,39031,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(36849,39031,'blocks_5_tabs_1_tab_content_actions','1'),(36850,39031,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(36851,39031,'blocks_5_tabs_1_tab_content',''),(36852,39031,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(36853,39031,'blocks_5_tabs_1_tab_image','39010'),(36854,39031,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(36855,39031,'blocks_5_tabs','2'),(36856,39031,'_blocks_5_tabs','field_6177cff281419'),(36857,39031,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(36858,39031,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(36859,39031,'blocks_6_acfe_flexible_toggle',''),(36860,39031,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(36861,39031,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(36862,39031,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(36863,39031,'blocks_6_options_theme','#ffffff'),(36864,39031,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(36865,39031,'blocks_6_options_state','0'),(36866,39031,'_blocks_6_options_state','field_6239fcb7508c5'),(36867,39031,'blocks_6_options',''),(36868,39031,'_blocks_6_options','field_6177e2991ac44'),(36869,39031,'blocks_6_accordion_content','faqs_all'),(36870,39031,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(36871,39031,'blocks_6_actions',''),(36872,39031,'_blocks_6_actions','field_61a746a817f7a'),(36873,39031,'blocks_6_content_title',''),(36874,39031,'_blocks_6_content_title','field_64d237e8bb1e2'),(36875,39031,'blocks_6_content_heading','Frequently asked questions'),(36876,39031,'_blocks_6_content_heading','field_64d237e8bb1e3'),(36877,39031,'blocks_6_content_text',''),(36878,39031,'_blocks_6_content_text','field_64d237e8bb1e4'),(36879,39031,'blocks_6_content_actions',''),(36880,39031,'_blocks_6_content_actions','field_64d237e8bb1e5'),(36881,39031,'blocks_6_content_align','left'),(36882,39031,'_blocks_6_content_align','field_64d2443e6b6aa'),(36883,39031,'blocks_6_content',''),(36884,39031,'_blocks_6_content','field_64d237e8bb1e1'),(36885,39031,'blocks_6_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39023\";i:7;s:5:\"39019\";i:8;s:5:\"39015\";i:9;s:5:\"39027\";i:10;s:5:\"39026\";i:11;s:5:\"39022\";i:12;s:5:\"39024\";i:13;s:5:\"39020\";}'),(36886,39031,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(36887,39032,'hero_style','default'),(36888,39032,'_hero_style','field_62051d9dc5324'),(36889,39032,'hero_image_pos_x','right'),(36890,39032,'_hero_image_pos_x','field_62ec3d05390bb'),(36891,39032,'hero_image_pos_y','top'),(36892,39032,'_hero_image_pos_y','field_62ec3d05390bc'),(36893,39032,'hero_image_pos',''),(36894,39032,'_hero_image_pos','field_62ec3d05390ba'),(36895,39032,'hero_title','Biomechanics Coach Course - David Lloyd'),(36896,39032,'_hero_title','field_617571fe285e8'),(36897,39032,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(36898,39032,'_hero_text','field_6175723c285e9'),(36899,39032,'hero_actions','1'),(36900,39032,'_hero_actions','field_61757270285ea'),(36901,39032,'hero_icon',''),(36902,39032,'_hero_icon','field_61a6182199d03'),(36903,39032,'fft_hide_from_listings','0'),(36904,39032,'_fft_hide_from_listings','field_61f1320446ab2'),(36905,39032,'fft_page_format','default'),(36906,39032,'_fft_page_format','field_61ae213f1f218'),(36907,39032,'fft_hide_nav','1'),(36908,39032,'_fft_hide_nav','field_635bd5e43527c'),(36909,39032,'fft_hide_header_call_to_action','0'),(36910,39032,'_fft_hide_header_call_to_action','field_635bd6723527d'),(36911,39032,'fft_page_sitemap','1'),(36912,39032,'_fft_page_sitemap','field_61af9b34e8181'),(36913,39032,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";}'),(36914,39032,'_blocks','field_6176696113096'),(36915,39032,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(36916,39032,'_hero_actions_0_button','field_61757281285eb'),(36917,39032,'_thumbnail_id','38977'),(36918,39032,'__thumbnail_id','field_617570855ddaf'),(36919,39032,'blocks_0_acfe_flexible_toggle',''),(36920,39032,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(36921,39032,'blocks_0_acfe_flexible_layout_title','Icons'),(36922,39032,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(36923,39032,'blocks_0_options_theme','#ffffff'),(36924,39032,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(36925,39032,'blocks_0_options_format','row'),(36926,39032,'_blocks_0_options_format','field_64bfde9a90690'),(36927,39032,'blocks_0_options',''),(36928,39032,'_blocks_0_options','field_64bfdd9b90684'),(36929,39032,'blocks_0_icon_row_items_0_icon','qualification.svg'),(36930,39032,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(36931,39032,'blocks_0_icon_row_items_0_label','Course Type'),(36932,39032,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(36933,39032,'blocks_0_icon_row_items_0_text','Blended Learning'),(36934,39032,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(36935,39032,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(36936,39032,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(36937,39032,'blocks_0_icon_row_items_1_label','Qualification'),(36938,39032,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(36939,39032,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(36940,39032,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(36941,39032,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(36942,39032,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(36943,39032,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(36944,39032,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(36945,39032,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(36946,39032,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(36947,39032,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(36948,39032,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(36949,39032,'blocks_0_icon_row_items_3_label','IBA Registered'),(36950,39032,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(36951,39032,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(36952,39032,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(36953,39032,'blocks_0_icon_row_items','4'),(36954,39032,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(36955,39032,'blocks_1_acfe_flexible_toggle',''),(36956,39032,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(36957,39032,'blocks_1_acfe_flexible_layout_title','Form'),(36958,39032,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(36959,39032,'blocks_1_row_content_format','promotion'),(36960,39032,'_blocks_1_row_content_format','field_6481ead962881'),(36961,39032,'blocks_1_row_content_title',''),(36962,39032,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(36963,39032,'blocks_1_row_content_heading',''),(36964,39032,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(36965,39032,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(36966,39032,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(36967,39032,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(36968,39032,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(36969,39032,'blocks_1_row_content_actions','1'),(36970,39032,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(36971,39032,'blocks_1_row_content',''),(36972,39032,'_blocks_1_row_content','field_61a0f5f5b3db0'),(36973,39032,'blocks_1_row_form',''),(36974,39032,'_blocks_1_row_form','field_61a4ff2c0b08e'),(36975,39032,'blocks_1_row_form_button_label',''),(36976,39032,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(36977,39032,'blocks_1_row_content_promotion_label','Up to 10% Off'),(36978,39032,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(36979,39032,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(36980,39032,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(36981,39032,'blocks_1_row_content_promotion_value','Up to 10% Off'),(36982,39032,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(36983,39032,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(36984,39032,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(36985,39032,'blocks_1_row_content_promotion',''),(36986,39032,'_blocks_1_row_content_promotion','field_6481eb3962882'),(36987,39032,'blocks_1_row_form_title','David Lloyd Referral'),(36988,39032,'_blocks_1_row_form_title','field_64872db5127af'),(36989,39032,'blocks_2_acfe_flexible_toggle',''),(36990,39032,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(36991,39032,'blocks_2_acfe_flexible_layout_title','Logos'),(36992,39032,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(36993,39032,'blocks_2_options_theme','#ffffff'),(36994,39032,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(36995,39032,'blocks_2_options_format','grid'),(36996,39032,'_blocks_2_options_format','field_61782964ee971'),(36997,39032,'blocks_2_options',''),(36998,39032,'_blocks_2_options','field_61782954ee965'),(36999,39032,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(37000,39032,'_blocks_2_logos','field_61782954ee96d'),(37001,39032,'blocks_2_title',''),(37002,39032,'_blocks_2_title','field_668fbfdc2daa1'),(37003,39032,'blocks_3_acfe_flexible_toggle',''),(37004,39032,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(37005,39032,'blocks_3_acfe_flexible_layout_title','Video'),(37006,39032,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(37007,39032,'blocks_3_size','large'),(37008,39032,'_blocks_3_size','field_6487038f297c1'),(37009,39032,'blocks_3_row_content_title',''),(37010,39032,'_blocks_3_row_content_title','field_64870132a865d'),(37011,39032,'blocks_3_row_content_heading','Course Overview'),(37012,39032,'_blocks_3_row_content_heading','field_64870142a865e'),(37013,39032,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(37014,39032,'_blocks_3_row_content_text','field_64870148a865f'),(37015,39032,'blocks_3_row_content',''),(37016,39032,'_blocks_3_row_content','field_6487008ba865c'),(37017,39032,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(37018,39032,'_blocks_3_video_src','field_6193c4a98ec07'),(37019,39032,'blocks_3_video_thumbnail','38998'),(37020,39032,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(37021,39032,'blocks_4_acfe_flexible_toggle',''),(37022,39032,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(37023,39032,'blocks_4_acfe_flexible_layout_title','Text Block'),(37024,39032,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(37025,39032,'blocks_4_options_theme','#ffffff'),(37026,39032,'_blocks_4_options_theme','field_6176830e2ad17'),(37027,39032,'blocks_4_options',''),(37028,39032,'_blocks_4_options','field_6176830e2ad16'),(37029,39032,'blocks_4_text_block_heading','Learn more about the course'),(37030,39032,'_blocks_4_text_block_heading','field_617669d413097'),(37031,39032,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(37032,39032,'_blocks_4_text_block_content','field_617669ec13098'),(37033,39032,'blocks_5_acfe_flexible_toggle',''),(37034,39032,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(37035,39032,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(37036,39032,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(37037,39032,'blocks_5_options_theme','#ffffff'),(37038,39032,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(37039,39032,'blocks_5_options',''),(37040,39032,'_blocks_5_options','field_6177cfcd8140f'),(37041,39032,'blocks_5_tabs_0_tab_label','What\'s Included'),(37042,39032,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(37043,39032,'blocks_5_tabs_0_tab_content_title',''),(37044,39032,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(37045,39032,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(37046,39032,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(37047,39032,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(37048,39032,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(37049,39032,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(37050,39032,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(37051,39032,'blocks_5_tabs_0_tab_content_actions','1'),(37052,39032,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(37053,39032,'blocks_5_tabs_0_tab_content',''),(37054,39032,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(37055,39032,'blocks_5_tabs_0_tab_image','39009'),(37056,39032,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(37057,39032,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(37058,39032,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(37059,39032,'blocks_5_tabs_1_tab_content_title',''),(37060,39032,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(37061,39032,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(37062,39032,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(37063,39032,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(37064,39032,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(37065,39032,'blocks_5_tabs_1_tab_content_actions','1'),(37066,39032,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(37067,39032,'blocks_5_tabs_1_tab_content',''),(37068,39032,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(37069,39032,'blocks_5_tabs_1_tab_image','39010'),(37070,39032,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(37071,39032,'blocks_5_tabs','2'),(37072,39032,'_blocks_5_tabs','field_6177cff281419'),(37073,39032,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(37074,39032,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(37075,39032,'blocks_6_acfe_flexible_toggle',''),(37076,39032,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(37077,39032,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(37078,39032,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(37079,39032,'blocks_6_options_theme','#ffffff'),(37080,39032,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(37081,39032,'blocks_6_options_state','0'),(37082,39032,'_blocks_6_options_state','field_6239fcb7508c5'),(37083,39032,'blocks_6_options',''),(37084,39032,'_blocks_6_options','field_6177e2991ac44'),(37085,39032,'blocks_6_accordion_content','faqs'),(37086,39032,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(37087,39032,'blocks_6_actions',''),(37088,39032,'_blocks_6_actions','field_61a746a817f7a'),(37089,39032,'blocks_6_content_title',''),(37090,39032,'_blocks_6_content_title','field_64d237e8bb1e2'),(37091,39032,'blocks_6_content_heading','Frequently asked questions'),(37092,39032,'_blocks_6_content_heading','field_64d237e8bb1e3'),(37093,39032,'blocks_6_content_text',''),(37094,39032,'_blocks_6_content_text','field_64d237e8bb1e4'),(37095,39032,'blocks_6_content_actions',''),(37096,39032,'_blocks_6_content_actions','field_64d237e8bb1e5'),(37097,39032,'blocks_6_content_align','right'),(37098,39032,'_blocks_6_content_align','field_64d2443e6b6aa'),(37099,39032,'blocks_6_content',''),(37100,39032,'_blocks_6_content','field_64d237e8bb1e1'),(37101,39032,'blocks_6_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39023\";i:7;s:5:\"39019\";i:8;s:5:\"39015\";i:9;s:5:\"39027\";i:10;s:5:\"39026\";i:11;s:5:\"39022\";i:12;s:5:\"39024\";i:13;s:5:\"39020\";}'),(37102,39032,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(37103,39033,'hero_style','default'),(37104,39033,'_hero_style','field_62051d9dc5324'),(37105,39033,'hero_image_pos_x','right'),(37106,39033,'_hero_image_pos_x','field_62ec3d05390bb'),(37107,39033,'hero_image_pos_y','top'),(37108,39033,'_hero_image_pos_y','field_62ec3d05390bc'),(37109,39033,'hero_image_pos',''),(37110,39033,'_hero_image_pos','field_62ec3d05390ba'),(37111,39033,'hero_title','Biomechanics Coach Course - David Lloyd'),(37112,39033,'_hero_title','field_617571fe285e8'),(37113,39033,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(37114,39033,'_hero_text','field_6175723c285e9'),(37115,39033,'hero_actions','1'),(37116,39033,'_hero_actions','field_61757270285ea'),(37117,39033,'hero_icon',''),(37118,39033,'_hero_icon','field_61a6182199d03'),(37119,39033,'fft_hide_from_listings','0'),(37120,39033,'_fft_hide_from_listings','field_61f1320446ab2'),(37121,39033,'fft_page_format','default'),(37122,39033,'_fft_page_format','field_61ae213f1f218'),(37123,39033,'fft_hide_nav','1'),(37124,39033,'_fft_hide_nav','field_635bd5e43527c'),(37125,39033,'fft_hide_header_call_to_action','0'),(37126,39033,'_fft_hide_header_call_to_action','field_635bd6723527d'),(37127,39033,'fft_page_sitemap','1'),(37128,39033,'_fft_page_sitemap','field_61af9b34e8181'),(37129,39033,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";}'),(37130,39033,'_blocks','field_6176696113096'),(37131,39033,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(37132,39033,'_hero_actions_0_button','field_61757281285eb'),(37133,39033,'_thumbnail_id','38977'),(37134,39033,'__thumbnail_id','field_617570855ddaf'),(37135,39033,'blocks_0_acfe_flexible_toggle',''),(37136,39033,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(37137,39033,'blocks_0_acfe_flexible_layout_title','Icons'),(37138,39033,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(37139,39033,'blocks_0_options_theme','#ffffff'),(37140,39033,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(37141,39033,'blocks_0_options_format','row'),(37142,39033,'_blocks_0_options_format','field_64bfde9a90690'),(37143,39033,'blocks_0_options',''),(37144,39033,'_blocks_0_options','field_64bfdd9b90684'),(37145,39033,'blocks_0_icon_row_items_0_icon','qualification.svg'),(37146,39033,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(37147,39033,'blocks_0_icon_row_items_0_label','Course Type'),(37148,39033,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(37149,39033,'blocks_0_icon_row_items_0_text','Blended Learning'),(37150,39033,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(37151,39033,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(37152,39033,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(37153,39033,'blocks_0_icon_row_items_1_label','Qualification'),(37154,39033,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(37155,39033,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(37156,39033,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(37157,39033,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(37158,39033,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(37159,39033,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(37160,39033,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(37161,39033,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(37162,39033,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(37163,39033,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(37164,39033,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(37165,39033,'blocks_0_icon_row_items_3_label','IBA Registered'),(37166,39033,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(37167,39033,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(37168,39033,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(37169,39033,'blocks_0_icon_row_items','4'),(37170,39033,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(37171,39033,'blocks_1_acfe_flexible_toggle',''),(37172,39033,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(37173,39033,'blocks_1_acfe_flexible_layout_title','Form'),(37174,39033,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(37175,39033,'blocks_1_row_content_format','promotion'),(37176,39033,'_blocks_1_row_content_format','field_6481ead962881'),(37177,39033,'blocks_1_row_content_title',''),(37178,39033,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(37179,39033,'blocks_1_row_content_heading',''),(37180,39033,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(37181,39033,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(37182,39033,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(37183,39033,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(37184,39033,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(37185,39033,'blocks_1_row_content_actions','1'),(37186,39033,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(37187,39033,'blocks_1_row_content',''),(37188,39033,'_blocks_1_row_content','field_61a0f5f5b3db0'),(37189,39033,'blocks_1_row_form',''),(37190,39033,'_blocks_1_row_form','field_61a4ff2c0b08e'),(37191,39033,'blocks_1_row_form_button_label',''),(37192,39033,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(37193,39033,'blocks_1_row_content_promotion_label','Up to 10% Off'),(37194,39033,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(37195,39033,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(37196,39033,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(37197,39033,'blocks_1_row_content_promotion_value','Up to 10% Off'),(37198,39033,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(37199,39033,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(37200,39033,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(37201,39033,'blocks_1_row_content_promotion',''),(37202,39033,'_blocks_1_row_content_promotion','field_6481eb3962882'),(37203,39033,'blocks_1_row_form_title','David Lloyd Referral'),(37204,39033,'_blocks_1_row_form_title','field_64872db5127af'),(37205,39033,'blocks_2_acfe_flexible_toggle',''),(37206,39033,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(37207,39033,'blocks_2_acfe_flexible_layout_title','Logos'),(37208,39033,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(37209,39033,'blocks_2_options_theme','#ffffff'),(37210,39033,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(37211,39033,'blocks_2_options_format','grid'),(37212,39033,'_blocks_2_options_format','field_61782964ee971'),(37213,39033,'blocks_2_options',''),(37214,39033,'_blocks_2_options','field_61782954ee965'),(37215,39033,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(37216,39033,'_blocks_2_logos','field_61782954ee96d'),(37217,39033,'blocks_2_title',''),(37218,39033,'_blocks_2_title','field_668fbfdc2daa1'),(37219,39033,'blocks_3_acfe_flexible_toggle',''),(37220,39033,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(37221,39033,'blocks_3_acfe_flexible_layout_title','Video'),(37222,39033,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(37223,39033,'blocks_3_size','large'),(37224,39033,'_blocks_3_size','field_6487038f297c1'),(37225,39033,'blocks_3_row_content_title',''),(37226,39033,'_blocks_3_row_content_title','field_64870132a865d'),(37227,39033,'blocks_3_row_content_heading','Course Overview'),(37228,39033,'_blocks_3_row_content_heading','field_64870142a865e'),(37229,39033,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(37230,39033,'_blocks_3_row_content_text','field_64870148a865f'),(37231,39033,'blocks_3_row_content',''),(37232,39033,'_blocks_3_row_content','field_6487008ba865c'),(37233,39033,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(37234,39033,'_blocks_3_video_src','field_6193c4a98ec07'),(37235,39033,'blocks_3_video_thumbnail','38998'),(37236,39033,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(37237,39033,'blocks_4_acfe_flexible_toggle',''),(37238,39033,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(37239,39033,'blocks_4_acfe_flexible_layout_title','Text Block'),(37240,39033,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(37241,39033,'blocks_4_options_theme','#ffffff'),(37242,39033,'_blocks_4_options_theme','field_6176830e2ad17'),(37243,39033,'blocks_4_options',''),(37244,39033,'_blocks_4_options','field_6176830e2ad16'),(37245,39033,'blocks_4_text_block_heading','Learn more about the course'),(37246,39033,'_blocks_4_text_block_heading','field_617669d413097'),(37247,39033,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(37248,39033,'_blocks_4_text_block_content','field_617669ec13098'),(37249,39033,'blocks_5_acfe_flexible_toggle',''),(37250,39033,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(37251,39033,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(37252,39033,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(37253,39033,'blocks_5_options_theme','#ffffff'),(37254,39033,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(37255,39033,'blocks_5_options',''),(37256,39033,'_blocks_5_options','field_6177cfcd8140f'),(37257,39033,'blocks_5_tabs_0_tab_label','What\'s Included'),(37258,39033,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(37259,39033,'blocks_5_tabs_0_tab_content_title',''),(37260,39033,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(37261,39033,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(37262,39033,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(37263,39033,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(37264,39033,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(37265,39033,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(37266,39033,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(37267,39033,'blocks_5_tabs_0_tab_content_actions','1'),(37268,39033,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(37269,39033,'blocks_5_tabs_0_tab_content',''),(37270,39033,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(37271,39033,'blocks_5_tabs_0_tab_image','39009'),(37272,39033,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(37273,39033,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(37274,39033,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(37275,39033,'blocks_5_tabs_1_tab_content_title',''),(37276,39033,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(37277,39033,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(37278,39033,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(37279,39033,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(37280,39033,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(37281,39033,'blocks_5_tabs_1_tab_content_actions','1'),(37282,39033,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(37283,39033,'blocks_5_tabs_1_tab_content',''),(37284,39033,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(37285,39033,'blocks_5_tabs_1_tab_image','39010'),(37286,39033,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(37287,39033,'blocks_5_tabs','2'),(37288,39033,'_blocks_5_tabs','field_6177cff281419'),(37289,39033,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(37290,39033,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(37291,39033,'blocks_6_acfe_flexible_toggle',''),(37292,39033,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(37293,39033,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(37294,39033,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(37295,39033,'blocks_6_options_theme','#ffffff'),(37296,39033,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(37297,39033,'blocks_6_options_state','0'),(37298,39033,'_blocks_6_options_state','field_6239fcb7508c5'),(37299,39033,'blocks_6_options',''),(37300,39033,'_blocks_6_options','field_6177e2991ac44'),(37301,39033,'blocks_6_accordion_content','faqs'),(37302,39033,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(37303,39033,'blocks_6_actions',''),(37304,39033,'_blocks_6_actions','field_61a746a817f7a'),(37305,39033,'blocks_6_content_title',''),(37306,39033,'_blocks_6_content_title','field_64d237e8bb1e2'),(37307,39033,'blocks_6_content_heading','Frequently asked questions'),(37308,39033,'_blocks_6_content_heading','field_64d237e8bb1e3'),(37309,39033,'blocks_6_content_text',''),(37310,39033,'_blocks_6_content_text','field_64d237e8bb1e4'),(37311,39033,'blocks_6_content_actions',''),(37312,39033,'_blocks_6_content_actions','field_64d237e8bb1e5'),(37313,39033,'blocks_6_content_align','left'),(37314,39033,'_blocks_6_content_align','field_64d2443e6b6aa'),(37315,39033,'blocks_6_content',''),(37316,39033,'_blocks_6_content','field_64d237e8bb1e1'),(37317,39033,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(37318,39033,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(37319,39034,'hero_style','default'),(37320,39034,'_hero_style','field_62051d9dc5324'),(37321,39034,'hero_image_pos_x','right'),(37322,39034,'_hero_image_pos_x','field_62ec3d05390bb'),(37323,39034,'hero_image_pos_y','top'),(37324,39034,'_hero_image_pos_y','field_62ec3d05390bc'),(37325,39034,'hero_image_pos',''),(37326,39034,'_hero_image_pos','field_62ec3d05390ba'),(37327,39034,'hero_title','Biomechanics Coach Course - David Lloyd'),(37328,39034,'_hero_title','field_617571fe285e8'),(37329,39034,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(37330,39034,'_hero_text','field_6175723c285e9'),(37331,39034,'hero_actions','1'),(37332,39034,'_hero_actions','field_61757270285ea'),(37333,39034,'hero_icon',''),(37334,39034,'_hero_icon','field_61a6182199d03'),(37335,39034,'fft_hide_from_listings','0'),(37336,39034,'_fft_hide_from_listings','field_61f1320446ab2'),(37337,39034,'fft_page_format','default'),(37338,39034,'_fft_page_format','field_61ae213f1f218'),(37339,39034,'fft_hide_nav','1'),(37340,39034,'_fft_hide_nav','field_635bd5e43527c'),(37341,39034,'fft_hide_header_call_to_action','0'),(37342,39034,'_fft_hide_header_call_to_action','field_635bd6723527d'),(37343,39034,'fft_page_sitemap','1'),(37344,39034,'_fft_page_sitemap','field_61af9b34e8181'),(37345,39034,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";}'),(37346,39034,'_blocks','field_6176696113096'),(37347,39034,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:6:\"_blank\";}'),(37348,39034,'_hero_actions_0_button','field_61757281285eb'),(37349,39034,'_thumbnail_id','38977'),(37350,39034,'__thumbnail_id','field_617570855ddaf'),(37351,39034,'blocks_0_acfe_flexible_toggle',''),(37352,39034,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(37353,39034,'blocks_0_acfe_flexible_layout_title','Icons'),(37354,39034,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(37355,39034,'blocks_0_options_theme','#ffffff'),(37356,39034,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(37357,39034,'blocks_0_options_format','row'),(37358,39034,'_blocks_0_options_format','field_64bfde9a90690'),(37359,39034,'blocks_0_options',''),(37360,39034,'_blocks_0_options','field_64bfdd9b90684'),(37361,39034,'blocks_0_icon_row_items_0_icon','qualification.svg'),(37362,39034,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(37363,39034,'blocks_0_icon_row_items_0_label','Course Type'),(37364,39034,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(37365,39034,'blocks_0_icon_row_items_0_text','Blended Learning'),(37366,39034,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(37367,39034,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(37368,39034,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(37369,39034,'blocks_0_icon_row_items_1_label','Qualification'),(37370,39034,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(37371,39034,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(37372,39034,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(37373,39034,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(37374,39034,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(37375,39034,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(37376,39034,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(37377,39034,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(37378,39034,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(37379,39034,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(37380,39034,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(37381,39034,'blocks_0_icon_row_items_3_label','IBA Registered'),(37382,39034,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(37383,39034,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(37384,39034,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(37385,39034,'blocks_0_icon_row_items','4'),(37386,39034,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(37387,39034,'blocks_1_acfe_flexible_toggle',''),(37388,39034,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(37389,39034,'blocks_1_acfe_flexible_layout_title','Form'),(37390,39034,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(37391,39034,'blocks_1_row_content_format','promotion'),(37392,39034,'_blocks_1_row_content_format','field_6481ead962881'),(37393,39034,'blocks_1_row_content_title',''),(37394,39034,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(37395,39034,'blocks_1_row_content_heading',''),(37396,39034,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(37397,39034,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(37398,39034,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(37399,39034,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(37400,39034,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(37401,39034,'blocks_1_row_content_actions','1'),(37402,39034,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(37403,39034,'blocks_1_row_content',''),(37404,39034,'_blocks_1_row_content','field_61a0f5f5b3db0'),(37405,39034,'blocks_1_row_form',''),(37406,39034,'_blocks_1_row_form','field_61a4ff2c0b08e'),(37407,39034,'blocks_1_row_form_button_label',''),(37408,39034,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(37409,39034,'blocks_1_row_content_promotion_label','Up to 10% Off'),(37410,39034,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(37411,39034,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(37412,39034,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(37413,39034,'blocks_1_row_content_promotion_value','Up to 10% Off'),(37414,39034,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(37415,39034,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(37416,39034,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(37417,39034,'blocks_1_row_content_promotion',''),(37418,39034,'_blocks_1_row_content_promotion','field_6481eb3962882'),(37419,39034,'blocks_1_row_form_title','David Lloyd Referral'),(37420,39034,'_blocks_1_row_form_title','field_64872db5127af'),(37421,39034,'blocks_2_acfe_flexible_toggle',''),(37422,39034,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(37423,39034,'blocks_2_acfe_flexible_layout_title','Logos'),(37424,39034,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(37425,39034,'blocks_2_options_theme','#ffffff'),(37426,39034,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(37427,39034,'blocks_2_options_format','grid'),(37428,39034,'_blocks_2_options_format','field_61782964ee971'),(37429,39034,'blocks_2_options',''),(37430,39034,'_blocks_2_options','field_61782954ee965'),(37431,39034,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(37432,39034,'_blocks_2_logos','field_61782954ee96d'),(37433,39034,'blocks_2_title',''),(37434,39034,'_blocks_2_title','field_668fbfdc2daa1'),(37435,39034,'blocks_3_acfe_flexible_toggle',''),(37436,39034,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(37437,39034,'blocks_3_acfe_flexible_layout_title','Video'),(37438,39034,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(37439,39034,'blocks_3_size','large'),(37440,39034,'_blocks_3_size','field_6487038f297c1'),(37441,39034,'blocks_3_row_content_title',''),(37442,39034,'_blocks_3_row_content_title','field_64870132a865d'),(37443,39034,'blocks_3_row_content_heading','Course Overview'),(37444,39034,'_blocks_3_row_content_heading','field_64870142a865e'),(37445,39034,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(37446,39034,'_blocks_3_row_content_text','field_64870148a865f'),(37447,39034,'blocks_3_row_content',''),(37448,39034,'_blocks_3_row_content','field_6487008ba865c'),(37449,39034,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(37450,39034,'_blocks_3_video_src','field_6193c4a98ec07'),(37451,39034,'blocks_3_video_thumbnail','38998'),(37452,39034,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(37453,39034,'blocks_4_acfe_flexible_toggle',''),(37454,39034,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(37455,39034,'blocks_4_acfe_flexible_layout_title','Text Block'),(37456,39034,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(37457,39034,'blocks_4_options_theme','#ffffff'),(37458,39034,'_blocks_4_options_theme','field_6176830e2ad17'),(37459,39034,'blocks_4_options',''),(37460,39034,'_blocks_4_options','field_6176830e2ad16'),(37461,39034,'blocks_4_text_block_heading','Learn more about the course'),(37462,39034,'_blocks_4_text_block_heading','field_617669d413097'),(37463,39034,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(37464,39034,'_blocks_4_text_block_content','field_617669ec13098'),(37465,39034,'blocks_5_acfe_flexible_toggle',''),(37466,39034,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(37467,39034,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(37468,39034,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(37469,39034,'blocks_5_options_theme','#ffffff'),(37470,39034,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(37471,39034,'blocks_5_options',''),(37472,39034,'_blocks_5_options','field_6177cfcd8140f'),(37473,39034,'blocks_5_tabs_0_tab_label','What\'s Included'),(37474,39034,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(37475,39034,'blocks_5_tabs_0_tab_content_title',''),(37476,39034,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(37477,39034,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(37478,39034,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(37479,39034,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(37480,39034,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(37481,39034,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(37482,39034,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(37483,39034,'blocks_5_tabs_0_tab_content_actions','1'),(37484,39034,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(37485,39034,'blocks_5_tabs_0_tab_content',''),(37486,39034,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(37487,39034,'blocks_5_tabs_0_tab_image','39009'),(37488,39034,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(37489,39034,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(37490,39034,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(37491,39034,'blocks_5_tabs_1_tab_content_title',''),(37492,39034,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(37493,39034,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(37494,39034,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(37495,39034,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(37496,39034,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(37497,39034,'blocks_5_tabs_1_tab_content_actions','1'),(37498,39034,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(37499,39034,'blocks_5_tabs_1_tab_content',''),(37500,39034,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(37501,39034,'blocks_5_tabs_1_tab_image','39010'),(37502,39034,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(37503,39034,'blocks_5_tabs','2'),(37504,39034,'_blocks_5_tabs','field_6177cff281419'),(37505,39034,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(37506,39034,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(37507,39034,'blocks_6_acfe_flexible_toggle',''),(37508,39034,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(37509,39034,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(37510,39034,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(37511,39034,'blocks_6_options_theme','#ffffff'),(37512,39034,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(37513,39034,'blocks_6_options_state','0'),(37514,39034,'_blocks_6_options_state','field_6239fcb7508c5'),(37515,39034,'blocks_6_options',''),(37516,39034,'_blocks_6_options','field_6177e2991ac44'),(37517,39034,'blocks_6_accordion_content','faqs'),(37518,39034,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(37519,39034,'blocks_6_actions',''),(37520,39034,'_blocks_6_actions','field_61a746a817f7a'),(37521,39034,'blocks_6_content_title',''),(37522,39034,'_blocks_6_content_title','field_64d237e8bb1e2'),(37523,39034,'blocks_6_content_heading','Frequently asked questions'),(37524,39034,'_blocks_6_content_heading','field_64d237e8bb1e3'),(37525,39034,'blocks_6_content_text',''),(37526,39034,'_blocks_6_content_text','field_64d237e8bb1e4'),(37527,39034,'blocks_6_content_actions',''),(37528,39034,'_blocks_6_content_actions','field_64d237e8bb1e5'),(37529,39034,'blocks_6_content_align','right'),(37530,39034,'_blocks_6_content_align','field_64d2443e6b6aa'),(37531,39034,'blocks_6_content',''),(37532,39034,'_blocks_6_content','field_64d237e8bb1e1'),(37533,39034,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(37534,39034,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(37535,39035,'_wp_attached_file','2024/07/David-Loyd-Promo-Panel-image.jpg'),(37536,39035,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:40:\"2024/07/David-Loyd-Promo-Panel-image.jpg\";s:8:\"filesize\";i:27592;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"David-Loyd-Promo-Panel-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15045;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:40:\"David-Loyd-Promo-Panel-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19965;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:40:\"David-Loyd-Promo-Panel-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15018;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:40:\"David-Loyd-Promo-Panel-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15118;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:40:\"David-Loyd-Promo-Panel-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15873;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:40:\"David-Loyd-Promo-Panel-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13334;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(37537,38973,'blocks_7_acfe_flexible_toggle',''),(37538,38973,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(37539,38973,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(37540,38973,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(37541,38973,'blocks_7_options_alignment','center'),(37542,38973,'_blocks_7_options_alignment','field_61769449f5490'),(37543,38973,'blocks_7_options',''),(37544,38973,'_blocks_7_options','field_617693e1428f0'),(37545,38973,'blocks_7_promo_panel_image','39035'),(37546,38973,'_blocks_7_promo_panel_image','field_617693e1428f3'),(37547,38973,'blocks_7_promo_panel_content_heading','Ready to level up your exercise career?'),(37548,38973,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(37549,38973,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(37550,38973,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(37551,38973,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(37552,38973,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(37553,38973,'blocks_7_promo_panel_content_actions','1'),(37554,38973,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(37555,38973,'blocks_7_promo_panel_content',''),(37556,38973,'_blocks_7_promo_panel_content','field_617693e1428f4'),(37557,39036,'hero_style','default'),(37558,39036,'_hero_style','field_62051d9dc5324'),(37559,39036,'hero_image_pos_x','right'),(37560,39036,'_hero_image_pos_x','field_62ec3d05390bb'),(37561,39036,'hero_image_pos_y','top'),(37562,39036,'_hero_image_pos_y','field_62ec3d05390bc'),(37563,39036,'hero_image_pos',''),(37564,39036,'_hero_image_pos','field_62ec3d05390ba'),(37565,39036,'hero_title','Biomechanics Coach Course - David Lloyd'),(37566,39036,'_hero_title','field_617571fe285e8'),(37567,39036,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(37568,39036,'_hero_text','field_6175723c285e9'),(37569,39036,'hero_actions','1'),(37570,39036,'_hero_actions','field_61757270285ea'),(37571,39036,'hero_icon',''),(37572,39036,'_hero_icon','field_61a6182199d03'),(37573,39036,'fft_hide_from_listings','0'),(37574,39036,'_fft_hide_from_listings','field_61f1320446ab2'),(37575,39036,'fft_page_format','default'),(37576,39036,'_fft_page_format','field_61ae213f1f218'),(37577,39036,'fft_hide_nav','1'),(37578,39036,'_fft_hide_nav','field_635bd5e43527c'),(37579,39036,'fft_hide_header_call_to_action','0'),(37580,39036,'_fft_hide_header_call_to_action','field_635bd6723527d'),(37581,39036,'fft_page_sitemap','1'),(37582,39036,'_fft_page_sitemap','field_61af9b34e8181'),(37583,39036,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(37584,39036,'_blocks','field_6176696113096'),(37585,39036,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-38973-6\";s:6:\"target\";s:6:\"_blank\";}'),(37586,39036,'_hero_actions_0_button','field_61757281285eb'),(37587,39036,'_thumbnail_id','38977'),(37588,39036,'__thumbnail_id','field_617570855ddaf'),(37589,39036,'blocks_0_acfe_flexible_toggle',''),(37590,39036,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(37591,39036,'blocks_0_acfe_flexible_layout_title','Icons'),(37592,39036,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(37593,39036,'blocks_0_options_theme','#ffffff'),(37594,39036,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(37595,39036,'blocks_0_options_format','row'),(37596,39036,'_blocks_0_options_format','field_64bfde9a90690'),(37597,39036,'blocks_0_options',''),(37598,39036,'_blocks_0_options','field_64bfdd9b90684'),(37599,39036,'blocks_0_icon_row_items_0_icon','qualification.svg'),(37600,39036,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(37601,39036,'blocks_0_icon_row_items_0_label','Course Type'),(37602,39036,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(37603,39036,'blocks_0_icon_row_items_0_text','Blended Learning'),(37604,39036,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(37605,39036,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(37606,39036,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(37607,39036,'blocks_0_icon_row_items_1_label','Qualification'),(37608,39036,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(37609,39036,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(37610,39036,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(37611,39036,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(37612,39036,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(37613,39036,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(37614,39036,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(37615,39036,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(37616,39036,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(37617,39036,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(37618,39036,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(37619,39036,'blocks_0_icon_row_items_3_label','IBA Registered'),(37620,39036,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(37621,39036,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(37622,39036,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(37623,39036,'blocks_0_icon_row_items','4'),(37624,39036,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(37625,39036,'blocks_1_acfe_flexible_toggle',''),(37626,39036,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(37627,39036,'blocks_1_acfe_flexible_layout_title','Form'),(37628,39036,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(37629,39036,'blocks_1_row_content_format','promotion'),(37630,39036,'_blocks_1_row_content_format','field_6481ead962881'),(37631,39036,'blocks_1_row_content_title',''),(37632,39036,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(37633,39036,'blocks_1_row_content_heading',''),(37634,39036,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(37635,39036,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(37636,39036,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(37637,39036,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(37638,39036,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(37639,39036,'blocks_1_row_content_actions','1'),(37640,39036,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(37641,39036,'blocks_1_row_content',''),(37642,39036,'_blocks_1_row_content','field_61a0f5f5b3db0'),(37643,39036,'blocks_1_row_form',''),(37644,39036,'_blocks_1_row_form','field_61a4ff2c0b08e'),(37645,39036,'blocks_1_row_form_button_label',''),(37646,39036,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(37647,39036,'blocks_1_row_content_promotion_label','Up to 10% Off'),(37648,39036,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(37649,39036,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(37650,39036,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(37651,39036,'blocks_1_row_content_promotion_value','Up to 10% Off'),(37652,39036,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(37653,39036,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(37654,39036,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(37655,39036,'blocks_1_row_content_promotion',''),(37656,39036,'_blocks_1_row_content_promotion','field_6481eb3962882'),(37657,39036,'blocks_1_row_form_title','David Lloyd Referral'),(37658,39036,'_blocks_1_row_form_title','field_64872db5127af'),(37659,39036,'blocks_2_acfe_flexible_toggle',''),(37660,39036,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(37661,39036,'blocks_2_acfe_flexible_layout_title','Logos'),(37662,39036,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(37663,39036,'blocks_2_options_theme','#ffffff'),(37664,39036,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(37665,39036,'blocks_2_options_format','grid'),(37666,39036,'_blocks_2_options_format','field_61782964ee971'),(37667,39036,'blocks_2_options',''),(37668,39036,'_blocks_2_options','field_61782954ee965'),(37669,39036,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(37670,39036,'_blocks_2_logos','field_61782954ee96d'),(37671,39036,'blocks_2_title',''),(37672,39036,'_blocks_2_title','field_668fbfdc2daa1'),(37673,39036,'blocks_3_acfe_flexible_toggle',''),(37674,39036,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(37675,39036,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(37676,39036,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(37677,39036,'blocks_3_size','large'),(37678,39036,'_blocks_3_size','field_6487038f297c1'),(37679,39036,'blocks_3_row_content_title',''),(37680,39036,'_blocks_3_row_content_title','field_64870132a865d'),(37681,39036,'blocks_3_row_content_heading','Course Overview'),(37682,39036,'_blocks_3_row_content_heading','field_64870142a865e'),(37683,39036,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(37684,39036,'_blocks_3_row_content_text','field_64870148a865f'),(37685,39036,'blocks_3_row_content',''),(37686,39036,'_blocks_3_row_content','field_6487008ba865c'),(37687,39036,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(37688,39036,'_blocks_3_video_src','field_6193c4a98ec07'),(37689,39036,'blocks_3_video_thumbnail','38998'),(37690,39036,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(37691,39036,'blocks_4_acfe_flexible_toggle',''),(37692,39036,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(37693,39036,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(37694,39036,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(37695,39036,'blocks_4_options_theme','#ffffff'),(37696,39036,'_blocks_4_options_theme','field_6176830e2ad17'),(37697,39036,'blocks_4_options',''),(37698,39036,'_blocks_4_options','field_6176830e2ad16'),(37699,39036,'blocks_4_text_block_heading','Learn more about the course'),(37700,39036,'_blocks_4_text_block_heading','field_617669d413097'),(37701,39036,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(37702,39036,'_blocks_4_text_block_content','field_617669ec13098'),(37703,39036,'blocks_5_acfe_flexible_toggle',''),(37704,39036,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(37705,39036,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(37706,39036,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(37707,39036,'blocks_5_options_theme','#ffffff'),(37708,39036,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(37709,39036,'blocks_5_options',''),(37710,39036,'_blocks_5_options','field_6177cfcd8140f'),(37711,39036,'blocks_5_tabs_0_tab_label','What\'s Included'),(37712,39036,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(37713,39036,'blocks_5_tabs_0_tab_content_title',''),(37714,39036,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(37715,39036,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(37716,39036,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(37717,39036,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(37718,39036,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(37719,39036,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(37720,39036,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(37721,39036,'blocks_5_tabs_0_tab_content_actions','1'),(37722,39036,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(37723,39036,'blocks_5_tabs_0_tab_content',''),(37724,39036,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(37725,39036,'blocks_5_tabs_0_tab_image','39009'),(37726,39036,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(37727,39036,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(37728,39036,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(37729,39036,'blocks_5_tabs_1_tab_content_title',''),(37730,39036,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(37731,39036,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(37732,39036,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(37733,39036,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(37734,39036,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(37735,39036,'blocks_5_tabs_1_tab_content_actions','1'),(37736,39036,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(37737,39036,'blocks_5_tabs_1_tab_content',''),(37738,39036,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(37739,39036,'blocks_5_tabs_1_tab_image','39010'),(37740,39036,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(37741,39036,'blocks_5_tabs','2'),(37742,39036,'_blocks_5_tabs','field_6177cff281419'),(37743,39036,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(37744,39036,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(37745,39036,'blocks_6_acfe_flexible_toggle',''),(37746,39036,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(37747,39036,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(37748,39036,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(37749,39036,'blocks_6_options_theme','#ffffff'),(37750,39036,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(37751,39036,'blocks_6_options_state','0'),(37752,39036,'_blocks_6_options_state','field_6239fcb7508c5'),(37753,39036,'blocks_6_options',''),(37754,39036,'_blocks_6_options','field_6177e2991ac44'),(37755,39036,'blocks_6_accordion_content','faqs'),(37756,39036,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(37757,39036,'blocks_6_actions',''),(37758,39036,'_blocks_6_actions','field_61a746a817f7a'),(37759,39036,'blocks_6_content_title',''),(37760,39036,'_blocks_6_content_title','field_64d237e8bb1e2'),(37761,39036,'blocks_6_content_heading','Frequently asked questions'),(37762,39036,'_blocks_6_content_heading','field_64d237e8bb1e3'),(37763,39036,'blocks_6_content_text',''),(37764,39036,'_blocks_6_content_text','field_64d237e8bb1e4'),(37765,39036,'blocks_6_content_actions',''),(37766,39036,'_blocks_6_content_actions','field_64d237e8bb1e5'),(37767,39036,'blocks_6_content_align','right'),(37768,39036,'_blocks_6_content_align','field_64d2443e6b6aa'),(37769,39036,'blocks_6_content',''),(37770,39036,'_blocks_6_content','field_64d237e8bb1e1'),(37771,39036,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(37772,39036,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(37773,39036,'blocks_7_acfe_flexible_toggle',''),(37774,39036,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(37775,39036,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(37776,39036,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(37777,39036,'blocks_7_options_alignment','center'),(37778,39036,'_blocks_7_options_alignment','field_61769449f5490'),(37779,39036,'blocks_7_options',''),(37780,39036,'_blocks_7_options','field_617693e1428f0'),(37781,39036,'blocks_7_promo_panel_image','39035'),(37782,39036,'_blocks_7_promo_panel_image','field_617693e1428f3'),(37783,39036,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(37784,39036,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(37785,39036,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(37786,39036,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(37787,39036,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(37788,39036,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(37789,39036,'blocks_7_promo_panel_content_actions','1'),(37790,39036,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(37791,39036,'blocks_7_promo_panel_content',''),(37792,39036,'_blocks_7_promo_panel_content','field_617693e1428f4'),(37793,39037,'hero_style','default'),(37794,39037,'_hero_style','field_62051d9dc5324'),(37795,39037,'hero_image_pos_x','right'),(37796,39037,'_hero_image_pos_x','field_62ec3d05390bb'),(37797,39037,'hero_image_pos_y','top'),(37798,39037,'_hero_image_pos_y','field_62ec3d05390bc'),(37799,39037,'hero_image_pos',''),(37800,39037,'_hero_image_pos','field_62ec3d05390ba'),(37801,39037,'hero_title','Biomechanics Coach Course - David Lloyd'),(37802,39037,'_hero_title','field_617571fe285e8'),(37803,39037,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(37804,39037,'_hero_text','field_6175723c285e9'),(37805,39037,'hero_actions','1'),(37806,39037,'_hero_actions','field_61757270285ea'),(37807,39037,'hero_icon',''),(37808,39037,'_hero_icon','field_61a6182199d03'),(37809,39037,'fft_hide_from_listings','0'),(37810,39037,'_fft_hide_from_listings','field_61f1320446ab2'),(37811,39037,'fft_page_format','default'),(37812,39037,'_fft_page_format','field_61ae213f1f218'),(37813,39037,'fft_hide_nav','1'),(37814,39037,'_fft_hide_nav','field_635bd5e43527c'),(37815,39037,'fft_hide_header_call_to_action','0'),(37816,39037,'_fft_hide_header_call_to_action','field_635bd6723527d'),(37817,39037,'fft_page_sitemap','1'),(37818,39037,'_fft_page_sitemap','field_61af9b34e8181'),(37819,39037,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(37820,39037,'_blocks','field_6176696113096'),(37821,39037,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-38973-6\";s:6:\"target\";s:6:\"_blank\";}'),(37822,39037,'_hero_actions_0_button','field_61757281285eb'),(37823,39037,'_thumbnail_id','38977'),(37824,39037,'__thumbnail_id','field_617570855ddaf'),(37825,39037,'blocks_0_acfe_flexible_toggle',''),(37826,39037,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(37827,39037,'blocks_0_acfe_flexible_layout_title','Icons'),(37828,39037,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(37829,39037,'blocks_0_options_theme','#ffffff'),(37830,39037,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(37831,39037,'blocks_0_options_format','row'),(37832,39037,'_blocks_0_options_format','field_64bfde9a90690'),(37833,39037,'blocks_0_options',''),(37834,39037,'_blocks_0_options','field_64bfdd9b90684'),(37835,39037,'blocks_0_icon_row_items_0_icon','qualification.svg'),(37836,39037,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(37837,39037,'blocks_0_icon_row_items_0_label','Course Type'),(37838,39037,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(37839,39037,'blocks_0_icon_row_items_0_text','Blended Learning'),(37840,39037,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(37841,39037,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(37842,39037,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(37843,39037,'blocks_0_icon_row_items_1_label','Qualification'),(37844,39037,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(37845,39037,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(37846,39037,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(37847,39037,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(37848,39037,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(37849,39037,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(37850,39037,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(37851,39037,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(37852,39037,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(37853,39037,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(37854,39037,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(37855,39037,'blocks_0_icon_row_items_3_label','IBA Registered'),(37856,39037,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(37857,39037,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(37858,39037,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(37859,39037,'blocks_0_icon_row_items','4'),(37860,39037,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(37861,39037,'blocks_1_acfe_flexible_toggle',''),(37862,39037,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(37863,39037,'blocks_1_acfe_flexible_layout_title','Form'),(37864,39037,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(37865,39037,'blocks_1_row_content_format','promotion'),(37866,39037,'_blocks_1_row_content_format','field_6481ead962881'),(37867,39037,'blocks_1_row_content_title',''),(37868,39037,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(37869,39037,'blocks_1_row_content_heading',''),(37870,39037,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(37871,39037,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(37872,39037,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(37873,39037,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(37874,39037,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(37875,39037,'blocks_1_row_content_actions','1'),(37876,39037,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(37877,39037,'blocks_1_row_content',''),(37878,39037,'_blocks_1_row_content','field_61a0f5f5b3db0'),(37879,39037,'blocks_1_row_form',''),(37880,39037,'_blocks_1_row_form','field_61a4ff2c0b08e'),(37881,39037,'blocks_1_row_form_button_label',''),(37882,39037,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(37883,39037,'blocks_1_row_content_promotion_label','Up to 10% Off'),(37884,39037,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(37885,39037,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(37886,39037,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(37887,39037,'blocks_1_row_content_promotion_value','Up to 10% Off'),(37888,39037,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(37889,39037,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(37890,39037,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(37891,39037,'blocks_1_row_content_promotion',''),(37892,39037,'_blocks_1_row_content_promotion','field_6481eb3962882'),(37893,39037,'blocks_1_row_form_title','David Lloyd Referral'),(37894,39037,'_blocks_1_row_form_title','field_64872db5127af'),(37895,39037,'blocks_2_acfe_flexible_toggle',''),(37896,39037,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(37897,39037,'blocks_2_acfe_flexible_layout_title','Logos'),(37898,39037,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(37899,39037,'blocks_2_options_theme','#ffffff'),(37900,39037,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(37901,39037,'blocks_2_options_format','grid'),(37902,39037,'_blocks_2_options_format','field_61782964ee971'),(37903,39037,'blocks_2_options',''),(37904,39037,'_blocks_2_options','field_61782954ee965'),(37905,39037,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(37906,39037,'_blocks_2_logos','field_61782954ee96d'),(37907,39037,'blocks_2_title',''),(37908,39037,'_blocks_2_title','field_668fbfdc2daa1'),(37909,39037,'blocks_3_acfe_flexible_toggle',''),(37910,39037,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(37911,39037,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(37912,39037,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(37913,39037,'blocks_3_size','large'),(37914,39037,'_blocks_3_size','field_6487038f297c1'),(37915,39037,'blocks_3_row_content_title',''),(37916,39037,'_blocks_3_row_content_title','field_64870132a865d'),(37917,39037,'blocks_3_row_content_heading','Course Overview'),(37918,39037,'_blocks_3_row_content_heading','field_64870142a865e'),(37919,39037,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(37920,39037,'_blocks_3_row_content_text','field_64870148a865f'),(37921,39037,'blocks_3_row_content',''),(37922,39037,'_blocks_3_row_content','field_6487008ba865c'),(37923,39037,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(37924,39037,'_blocks_3_video_src','field_6193c4a98ec07'),(37925,39037,'blocks_3_video_thumbnail','38998'),(37926,39037,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(37927,39037,'blocks_4_acfe_flexible_toggle',''),(37928,39037,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(37929,39037,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(37930,39037,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(37931,39037,'blocks_4_options_theme','#ffffff'),(37932,39037,'_blocks_4_options_theme','field_6176830e2ad17'),(37933,39037,'blocks_4_options',''),(37934,39037,'_blocks_4_options','field_6176830e2ad16'),(37935,39037,'blocks_4_text_block_heading','Learn more about the course'),(37936,39037,'_blocks_4_text_block_heading','field_617669d413097'),(37937,39037,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(37938,39037,'_blocks_4_text_block_content','field_617669ec13098'),(37939,39037,'blocks_5_acfe_flexible_toggle',''),(37940,39037,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(37941,39037,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(37942,39037,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(37943,39037,'blocks_5_options_theme','#ffffff'),(37944,39037,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(37945,39037,'blocks_5_options',''),(37946,39037,'_blocks_5_options','field_6177cfcd8140f'),(37947,39037,'blocks_5_tabs_0_tab_label','What\'s Included'),(37948,39037,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(37949,39037,'blocks_5_tabs_0_tab_content_title',''),(37950,39037,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(37951,39037,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(37952,39037,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(37953,39037,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(37954,39037,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(37955,39037,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(37956,39037,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(37957,39037,'blocks_5_tabs_0_tab_content_actions','1'),(37958,39037,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(37959,39037,'blocks_5_tabs_0_tab_content',''),(37960,39037,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(37961,39037,'blocks_5_tabs_0_tab_image','39009'),(37962,39037,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(37963,39037,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(37964,39037,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(37965,39037,'blocks_5_tabs_1_tab_content_title',''),(37966,39037,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(37967,39037,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(37968,39037,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(37969,39037,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(37970,39037,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(37971,39037,'blocks_5_tabs_1_tab_content_actions','1'),(37972,39037,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(37973,39037,'blocks_5_tabs_1_tab_content',''),(37974,39037,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(37975,39037,'blocks_5_tabs_1_tab_image','39010'),(37976,39037,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(37977,39037,'blocks_5_tabs','2'),(37978,39037,'_blocks_5_tabs','field_6177cff281419'),(37979,39037,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(37980,39037,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(37981,39037,'blocks_6_acfe_flexible_toggle',''),(37982,39037,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(37983,39037,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(37984,39037,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(37985,39037,'blocks_6_options_theme','#ffffff'),(37986,39037,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(37987,39037,'blocks_6_options_state','0'),(37988,39037,'_blocks_6_options_state','field_6239fcb7508c5'),(37989,39037,'blocks_6_options',''),(37990,39037,'_blocks_6_options','field_6177e2991ac44'),(37991,39037,'blocks_6_accordion_content','faqs'),(37992,39037,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(37993,39037,'blocks_6_actions',''),(37994,39037,'_blocks_6_actions','field_61a746a817f7a'),(37995,39037,'blocks_6_content_title',''),(37996,39037,'_blocks_6_content_title','field_64d237e8bb1e2'),(37997,39037,'blocks_6_content_heading','Frequently asked questions'),(37998,39037,'_blocks_6_content_heading','field_64d237e8bb1e3'),(37999,39037,'blocks_6_content_text',''),(38000,39037,'_blocks_6_content_text','field_64d237e8bb1e4'),(38001,39037,'blocks_6_content_actions',''),(38002,39037,'_blocks_6_content_actions','field_64d237e8bb1e5'),(38003,39037,'blocks_6_content_align','left'),(38004,39037,'_blocks_6_content_align','field_64d2443e6b6aa'),(38005,39037,'blocks_6_content',''),(38006,39037,'_blocks_6_content','field_64d237e8bb1e1'),(38007,39037,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(38008,39037,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(38009,39037,'blocks_7_acfe_flexible_toggle',''),(38010,39037,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(38011,39037,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(38012,39037,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(38013,39037,'blocks_7_options_alignment','center'),(38014,39037,'_blocks_7_options_alignment','field_61769449f5490'),(38015,39037,'blocks_7_options',''),(38016,39037,'_blocks_7_options','field_617693e1428f0'),(38017,39037,'blocks_7_promo_panel_image','39035'),(38018,39037,'_blocks_7_promo_panel_image','field_617693e1428f3'),(38019,39037,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(38020,39037,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(38021,39037,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(38022,39037,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(38023,39037,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(38024,39037,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(38025,39037,'blocks_7_promo_panel_content_actions','1'),(38026,39037,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(38027,39037,'blocks_7_promo_panel_content',''),(38028,39037,'_blocks_7_promo_panel_content','field_617693e1428f4'),(38029,39038,'_edit_lock','1733320710:18'),(38030,39038,'_edit_last','5'),(38031,39038,'hero_style','default'),(38032,39038,'_hero_style','field_62051d9dc5324'),(38033,39038,'__thumbnail_id','field_617570855ddaf'),(38034,39038,'hero_image_pos_x','right'),(38035,39038,'_hero_image_pos_x','field_62ec3d05390bb'),(38036,39038,'hero_image_pos_y','top'),(38037,39038,'_hero_image_pos_y','field_62ec3d05390bc'),(38038,39038,'hero_image_pos',''),(38039,39038,'_hero_image_pos','field_62ec3d05390ba'),(38040,39038,'hero_title','Biomechanics Coach Course - EMD UK'),(38041,39038,'_hero_title','field_617571fe285e8'),(38042,39038,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a EMD UK member. '),(38043,39038,'_hero_text','field_6175723c285e9'),(38044,39038,'hero_actions','1'),(38045,39038,'_hero_actions','field_61757270285ea'),(38046,39038,'hero_icon',''),(38047,39038,'_hero_icon','field_61a6182199d03'),(38048,39038,'fft_hide_from_listings','0'),(38049,39038,'_fft_hide_from_listings','field_61f1320446ab2'),(38050,39038,'fft_page_format','default'),(38051,39038,'_fft_page_format','field_61ae213f1f218'),(38052,39038,'fft_hide_nav','1'),(38053,39038,'_fft_hide_nav','field_635bd5e43527c'),(38054,39038,'fft_hide_header_call_to_action','0'),(38055,39038,'_fft_hide_header_call_to_action','field_635bd6723527d'),(38056,39038,'fft_page_sitemap','1'),(38057,39038,'_fft_page_sitemap','field_61af9b34e8181'),(38058,39038,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(38059,39038,'_blocks','field_6176696113096'),(38060,39038,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(38061,39038,'_hero_actions_0_button','field_61757281285eb'),(38062,39038,'_thumbnail_id','38977'),(38063,39038,'blocks_0_acfe_flexible_toggle',''),(38064,39038,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(38065,39038,'blocks_0_acfe_flexible_layout_title','Icons'),(38066,39038,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(38067,39038,'blocks_0_options_theme','#ffffff'),(38068,39038,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(38069,39038,'blocks_0_options_format','row'),(38070,39038,'_blocks_0_options_format','field_64bfde9a90690'),(38071,39038,'blocks_0_options',''),(38072,39038,'_blocks_0_options','field_64bfdd9b90684'),(38073,39038,'blocks_0_icon_row_items_0_icon','qualification.svg'),(38074,39038,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(38075,39038,'blocks_0_icon_row_items_0_label','Course Type'),(38076,39038,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(38077,39038,'blocks_0_icon_row_items_0_text','Blended Learning'),(38078,39038,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(38079,39038,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(38080,39038,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(38081,39038,'blocks_0_icon_row_items_1_label','Qualification'),(38082,39038,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(38083,39038,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(38084,39038,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(38085,39038,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(38086,39038,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(38087,39038,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(38088,39038,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(38089,39038,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(38090,39038,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(38091,39038,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(38092,39038,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(38093,39038,'blocks_0_icon_row_items_3_label','IBA Registered'),(38094,39038,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(38095,39038,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(38096,39038,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(38097,39038,'blocks_0_icon_row_items','4'),(38098,39038,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(38099,39038,'blocks_1_acfe_flexible_toggle',''),(38100,39038,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(38101,39038,'blocks_1_acfe_flexible_layout_title','Form'),(38102,39038,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(38103,39038,'blocks_1_row_content_format','promotion'),(38104,39038,'_blocks_1_row_content_format','field_6481ead962881'),(38105,39038,'blocks_1_row_content_title',''),(38106,39038,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(38107,39038,'blocks_1_row_content_heading',''),(38108,39038,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(38109,39038,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(38110,39038,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(38111,39038,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(38112,39038,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(38113,39038,'blocks_1_row_content_actions','1'),(38114,39038,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(38115,39038,'blocks_1_row_content',''),(38116,39038,'_blocks_1_row_content','field_61a0f5f5b3db0'),(38117,39038,'blocks_1_row_form','40413'),(38118,39038,'_blocks_1_row_form','field_61a4ff2c0b08e'),(38119,39038,'blocks_1_row_form_button_label',''),(38120,39038,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(38121,39038,'blocks_1_row_content_promotion_label','Biomechanics Coach Course'),(38122,39038,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(38123,39038,'blocks_1_row_content_promotion_heading','Up to 10% Off'),(38124,39038,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(38125,39038,'blocks_1_row_content_promotion_value','Up to 10% Off'),(38126,39038,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(38127,39038,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an EMD UK member'),(38128,39038,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(38129,39038,'blocks_1_row_content_promotion',''),(38130,39038,'_blocks_1_row_content_promotion','field_6481eb3962882'),(38131,39038,'blocks_1_row_form_title','EMD UK Referral'),(38132,39038,'_blocks_1_row_form_title','field_64872db5127af'),(38133,39038,'blocks_2_acfe_flexible_toggle',''),(38134,39038,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(38135,39038,'blocks_2_acfe_flexible_layout_title','Logos'),(38136,39038,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(38137,39038,'blocks_2_options_theme','#ffffff'),(38138,39038,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(38139,39038,'blocks_2_options_format','grid'),(38140,39038,'_blocks_2_options_format','field_61782964ee971'),(38141,39038,'blocks_2_options',''),(38142,39038,'_blocks_2_options','field_61782954ee965'),(38143,39038,'blocks_2_logos','a:2:{i:0;s:5:\"38587\";i:1;s:5:\"39040\";}'),(38144,39038,'_blocks_2_logos','field_61782954ee96d'),(38145,39038,'blocks_2_title',''),(38146,39038,'_blocks_2_title','field_668fbfdc2daa1'),(38147,39038,'blocks_3_acfe_flexible_toggle',''),(38148,39038,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(38149,39038,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(38150,39038,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(38151,39038,'blocks_3_size','large'),(38152,39038,'_blocks_3_size','field_6487038f297c1'),(38153,39038,'blocks_3_row_content_title',''),(38154,39038,'_blocks_3_row_content_title','field_64870132a865d'),(38155,39038,'blocks_3_row_content_heading','Course Overview'),(38156,39038,'_blocks_3_row_content_heading','field_64870142a865e'),(38157,39038,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(38158,39038,'_blocks_3_row_content_text','field_64870148a865f'),(38159,39038,'blocks_3_row_content',''),(38160,39038,'_blocks_3_row_content','field_6487008ba865c'),(38161,39038,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(38162,39038,'_blocks_3_video_src','field_6193c4a98ec07'),(38163,39038,'blocks_3_video_thumbnail','38998'),(38164,39038,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(38165,39038,'blocks_4_acfe_flexible_toggle',''),(38166,39038,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(38167,39038,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(38168,39038,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(38169,39038,'blocks_4_options_theme','#ffffff'),(38170,39038,'_blocks_4_options_theme','field_6176830e2ad17'),(38171,39038,'blocks_4_options',''),(38172,39038,'_blocks_4_options','field_6176830e2ad16'),(38173,39038,'blocks_4_text_block_heading','Learn more about the course'),(38174,39038,'_blocks_4_text_block_heading','field_617669d413097'),(38175,39038,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(38176,39038,'_blocks_4_text_block_content','field_617669ec13098'),(38177,39038,'blocks_5_acfe_flexible_toggle',''),(38178,39038,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(38179,39038,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(38180,39038,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(38181,39038,'blocks_5_options_theme','#ffffff'),(38182,39038,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(38183,39038,'blocks_5_options',''),(38184,39038,'_blocks_5_options','field_6177cfcd8140f'),(38185,39038,'blocks_5_tabs_0_tab_label','What\'s Included'),(38186,39038,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(38187,39038,'blocks_5_tabs_0_tab_content_title',''),(38188,39038,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(38189,39038,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(38190,39038,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(38191,39038,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(38192,39038,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(38193,39038,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(38194,39038,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(38195,39038,'blocks_5_tabs_0_tab_content_actions','1'),(38196,39038,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(38197,39038,'blocks_5_tabs_0_tab_content',''),(38198,39038,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(38199,39038,'blocks_5_tabs_0_tab_image','39009'),(38200,39038,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(38201,39038,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(38202,39038,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(38203,39038,'blocks_5_tabs_1_tab_content_title',''),(38204,39038,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(38205,39038,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(38206,39038,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(38207,39038,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(38208,39038,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(38209,39038,'blocks_5_tabs_1_tab_content_actions','1'),(38210,39038,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(38211,39038,'blocks_5_tabs_1_tab_content',''),(38212,39038,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(38213,39038,'blocks_5_tabs_1_tab_image','39010'),(38214,39038,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(38215,39038,'blocks_5_tabs','2'),(38216,39038,'_blocks_5_tabs','field_6177cff281419'),(38217,39038,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(38218,39038,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(38219,39038,'blocks_6_acfe_flexible_toggle',''),(38220,39038,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(38221,39038,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(38222,39038,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(38223,39038,'blocks_6_options_theme','#ffffff'),(38224,39038,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(38225,39038,'blocks_6_options_state','0'),(38226,39038,'_blocks_6_options_state','field_6239fcb7508c5'),(38227,39038,'blocks_6_options',''),(38228,39038,'_blocks_6_options','field_6177e2991ac44'),(38229,39038,'blocks_6_accordion_content','faqs'),(38230,39038,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(38231,39038,'blocks_6_actions',''),(38232,39038,'_blocks_6_actions','field_61a746a817f7a'),(38233,39038,'blocks_6_content_title',''),(38234,39038,'_blocks_6_content_title','field_64d237e8bb1e2'),(38235,39038,'blocks_6_content_heading','Frequently asked questions'),(38236,39038,'_blocks_6_content_heading','field_64d237e8bb1e3'),(38237,39038,'blocks_6_content_text',''),(38238,39038,'_blocks_6_content_text','field_64d237e8bb1e4'),(38239,39038,'blocks_6_content_actions',''),(38240,39038,'_blocks_6_content_actions','field_64d237e8bb1e5'),(38241,39038,'blocks_6_content_align','left'),(38242,39038,'_blocks_6_content_align','field_64d2443e6b6aa'),(38243,39038,'blocks_6_content',''),(38244,39038,'_blocks_6_content','field_64d237e8bb1e1'),(38245,39038,'blocks_6_accordion_faqs_select','a:13:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";i:12;s:5:\"39023\";}'),(38246,39038,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(38247,39038,'blocks_7_acfe_flexible_toggle',''),(38248,39038,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(38249,39038,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(38250,39038,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(38251,39038,'blocks_7_options_alignment','center'),(38252,39038,'_blocks_7_options_alignment','field_61769449f5490'),(38253,39038,'blocks_7_options',''),(38254,39038,'_blocks_7_options','field_617693e1428f0'),(38255,39038,'blocks_7_promo_panel_image','39035'),(38256,39038,'_blocks_7_promo_panel_image','field_617693e1428f3'),(38257,39038,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(38258,39038,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(38259,39038,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(38260,39038,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(38261,39038,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(38262,39038,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(38263,39038,'blocks_7_promo_panel_content_actions','1'),(38264,39038,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(38265,39038,'blocks_7_promo_panel_content',''),(38266,39038,'_blocks_7_promo_panel_content','field_617693e1428f4'),(38267,39040,'_wp_attached_file','2024/07/EMD-UK-Logo.png'),(38268,39040,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:117;s:4:\"file\";s:23:\"2024/07/EMD-UK-Logo.png\";s:8:\"filesize\";i:27869;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(38269,39041,'hero_style','default'),(38270,39041,'_hero_style','field_62051d9dc5324'),(38271,39041,'hero_image_pos_x','right'),(38272,39041,'_hero_image_pos_x','field_62ec3d05390bb'),(38273,39041,'hero_image_pos_y','top'),(38274,39041,'_hero_image_pos_y','field_62ec3d05390bc'),(38275,39041,'hero_image_pos',''),(38276,39041,'_hero_image_pos','field_62ec3d05390ba'),(38277,39041,'hero_title','Biomechanics Coach Course - EMD UK'),(38278,39041,'_hero_title','field_617571fe285e8'),(38279,39041,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a EMD UK member. '),(38280,39041,'_hero_text','field_6175723c285e9'),(38281,39041,'hero_actions','1'),(38282,39041,'_hero_actions','field_61757270285ea'),(38283,39041,'hero_icon',''),(38284,39041,'_hero_icon','field_61a6182199d03'),(38285,39041,'fft_hide_from_listings','0'),(38286,39041,'_fft_hide_from_listings','field_61f1320446ab2'),(38287,39041,'fft_page_format','default'),(38288,39041,'_fft_page_format','field_61ae213f1f218'),(38289,39041,'fft_hide_nav','1'),(38290,39041,'_fft_hide_nav','field_635bd5e43527c'),(38291,39041,'fft_hide_header_call_to_action','0'),(38292,39041,'_fft_hide_header_call_to_action','field_635bd6723527d'),(38293,39041,'fft_page_sitemap','1'),(38294,39041,'_fft_page_sitemap','field_61af9b34e8181'),(38295,39041,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(38296,39041,'_blocks','field_6176696113096'),(38297,39041,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-38973-6\";s:6:\"target\";s:6:\"_blank\";}'),(38298,39041,'_hero_actions_0_button','field_61757281285eb'),(38299,39041,'_thumbnail_id','38977'),(38300,39041,'__thumbnail_id','field_617570855ddaf'),(38301,39041,'blocks_0_acfe_flexible_toggle',''),(38302,39041,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(38303,39041,'blocks_0_acfe_flexible_layout_title','Icons'),(38304,39041,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(38305,39041,'blocks_0_options_theme','#ffffff'),(38306,39041,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(38307,39041,'blocks_0_options_format','row'),(38308,39041,'_blocks_0_options_format','field_64bfde9a90690'),(38309,39041,'blocks_0_options',''),(38310,39041,'_blocks_0_options','field_64bfdd9b90684'),(38311,39041,'blocks_0_icon_row_items_0_icon','qualification.svg'),(38312,39041,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(38313,39041,'blocks_0_icon_row_items_0_label','Course Type'),(38314,39041,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(38315,39041,'blocks_0_icon_row_items_0_text','Blended Learning'),(38316,39041,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(38317,39041,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(38318,39041,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(38319,39041,'blocks_0_icon_row_items_1_label','Qualification'),(38320,39041,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(38321,39041,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(38322,39041,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(38323,39041,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(38324,39041,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(38325,39041,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(38326,39041,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(38327,39041,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(38328,39041,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(38329,39041,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(38330,39041,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(38331,39041,'blocks_0_icon_row_items_3_label','IBA Registered'),(38332,39041,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(38333,39041,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(38334,39041,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(38335,39041,'blocks_0_icon_row_items','4'),(38336,39041,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(38337,39041,'blocks_1_acfe_flexible_toggle',''),(38338,39041,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(38339,39041,'blocks_1_acfe_flexible_layout_title','Form'),(38340,39041,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(38341,39041,'blocks_1_row_content_format','promotion'),(38342,39041,'_blocks_1_row_content_format','field_6481ead962881'),(38343,39041,'blocks_1_row_content_title',''),(38344,39041,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(38345,39041,'blocks_1_row_content_heading',''),(38346,39041,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(38347,39041,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(38348,39041,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(38349,39041,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(38350,39041,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(38351,39041,'blocks_1_row_content_actions','1'),(38352,39041,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(38353,39041,'blocks_1_row_content',''),(38354,39041,'_blocks_1_row_content','field_61a0f5f5b3db0'),(38355,39041,'blocks_1_row_form',''),(38356,39041,'_blocks_1_row_form','field_61a4ff2c0b08e'),(38357,39041,'blocks_1_row_form_button_label',''),(38358,39041,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(38359,39041,'blocks_1_row_content_promotion_label','Up to 10% Off'),(38360,39041,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(38361,39041,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(38362,39041,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(38363,39041,'blocks_1_row_content_promotion_value','Up to 10% Off'),(38364,39041,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(38365,39041,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an EMD UK member'),(38366,39041,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(38367,39041,'blocks_1_row_content_promotion',''),(38368,39041,'_blocks_1_row_content_promotion','field_6481eb3962882'),(38369,39041,'blocks_1_row_form_title','EMD UK Referral'),(38370,39041,'_blocks_1_row_form_title','field_64872db5127af'),(38371,39041,'blocks_2_acfe_flexible_toggle',''),(38372,39041,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(38373,39041,'blocks_2_acfe_flexible_layout_title','Logos'),(38374,39041,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(38375,39041,'blocks_2_options_theme','#ffffff'),(38376,39041,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(38377,39041,'blocks_2_options_format','grid'),(38378,39041,'_blocks_2_options_format','field_61782964ee971'),(38379,39041,'blocks_2_options',''),(38380,39041,'_blocks_2_options','field_61782954ee965'),(38381,39041,'blocks_2_logos','a:2:{i:0;s:5:\"38587\";i:1;s:5:\"39040\";}'),(38382,39041,'_blocks_2_logos','field_61782954ee96d'),(38383,39041,'blocks_2_title',''),(38384,39041,'_blocks_2_title','field_668fbfdc2daa1'),(38385,39041,'blocks_3_acfe_flexible_toggle',''),(38386,39041,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(38387,39041,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(38388,39041,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(38389,39041,'blocks_3_size','large'),(38390,39041,'_blocks_3_size','field_6487038f297c1'),(38391,39041,'blocks_3_row_content_title',''),(38392,39041,'_blocks_3_row_content_title','field_64870132a865d'),(38393,39041,'blocks_3_row_content_heading','Course Overview'),(38394,39041,'_blocks_3_row_content_heading','field_64870142a865e'),(38395,39041,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(38396,39041,'_blocks_3_row_content_text','field_64870148a865f'),(38397,39041,'blocks_3_row_content',''),(38398,39041,'_blocks_3_row_content','field_6487008ba865c'),(38399,39041,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(38400,39041,'_blocks_3_video_src','field_6193c4a98ec07'),(38401,39041,'blocks_3_video_thumbnail','38998'),(38402,39041,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(38403,39041,'blocks_4_acfe_flexible_toggle',''),(38404,39041,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(38405,39041,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(38406,39041,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(38407,39041,'blocks_4_options_theme','#ffffff'),(38408,39041,'_blocks_4_options_theme','field_6176830e2ad17'),(38409,39041,'blocks_4_options',''),(38410,39041,'_blocks_4_options','field_6176830e2ad16'),(38411,39041,'blocks_4_text_block_heading','Learn more about the course'),(38412,39041,'_blocks_4_text_block_heading','field_617669d413097'),(38413,39041,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(38414,39041,'_blocks_4_text_block_content','field_617669ec13098'),(38415,39041,'blocks_5_acfe_flexible_toggle',''),(38416,39041,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(38417,39041,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(38418,39041,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(38419,39041,'blocks_5_options_theme','#ffffff'),(38420,39041,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(38421,39041,'blocks_5_options',''),(38422,39041,'_blocks_5_options','field_6177cfcd8140f'),(38423,39041,'blocks_5_tabs_0_tab_label','What\'s Included'),(38424,39041,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(38425,39041,'blocks_5_tabs_0_tab_content_title',''),(38426,39041,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(38427,39041,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(38428,39041,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(38429,39041,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(38430,39041,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(38431,39041,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(38432,39041,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(38433,39041,'blocks_5_tabs_0_tab_content_actions','1'),(38434,39041,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(38435,39041,'blocks_5_tabs_0_tab_content',''),(38436,39041,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(38437,39041,'blocks_5_tabs_0_tab_image','39009'),(38438,39041,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(38439,39041,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(38440,39041,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(38441,39041,'blocks_5_tabs_1_tab_content_title',''),(38442,39041,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(38443,39041,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(38444,39041,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(38445,39041,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(38446,39041,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(38447,39041,'blocks_5_tabs_1_tab_content_actions','1'),(38448,39041,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(38449,39041,'blocks_5_tabs_1_tab_content',''),(38450,39041,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(38451,39041,'blocks_5_tabs_1_tab_image','39010'),(38452,39041,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(38453,39041,'blocks_5_tabs','2'),(38454,39041,'_blocks_5_tabs','field_6177cff281419'),(38455,39041,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(38456,39041,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(38457,39041,'blocks_6_acfe_flexible_toggle',''),(38458,39041,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(38459,39041,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(38460,39041,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(38461,39041,'blocks_6_options_theme','#ffffff'),(38462,39041,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(38463,39041,'blocks_6_options_state','0'),(38464,39041,'_blocks_6_options_state','field_6239fcb7508c5'),(38465,39041,'blocks_6_options',''),(38466,39041,'_blocks_6_options','field_6177e2991ac44'),(38467,39041,'blocks_6_accordion_content','faqs'),(38468,39041,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(38469,39041,'blocks_6_actions',''),(38470,39041,'_blocks_6_actions','field_61a746a817f7a'),(38471,39041,'blocks_6_content_title',''),(38472,39041,'_blocks_6_content_title','field_64d237e8bb1e2'),(38473,39041,'blocks_6_content_heading','Frequently asked questions'),(38474,39041,'_blocks_6_content_heading','field_64d237e8bb1e3'),(38475,39041,'blocks_6_content_text',''),(38476,39041,'_blocks_6_content_text','field_64d237e8bb1e4'),(38477,39041,'blocks_6_content_actions',''),(38478,39041,'_blocks_6_content_actions','field_64d237e8bb1e5'),(38479,39041,'blocks_6_content_align','left'),(38480,39041,'_blocks_6_content_align','field_64d2443e6b6aa'),(38481,39041,'blocks_6_content',''),(38482,39041,'_blocks_6_content','field_64d237e8bb1e1'),(38483,39041,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(38484,39041,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(38485,39041,'blocks_7_acfe_flexible_toggle',''),(38486,39041,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(38487,39041,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(38488,39041,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(38489,39041,'blocks_7_options_alignment','center'),(38490,39041,'_blocks_7_options_alignment','field_61769449f5490'),(38491,39041,'blocks_7_options',''),(38492,39041,'_blocks_7_options','field_617693e1428f0'),(38493,39041,'blocks_7_promo_panel_image','39035'),(38494,39041,'_blocks_7_promo_panel_image','field_617693e1428f3'),(38495,39041,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(38496,39041,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(38497,39041,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(38498,39041,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(38499,39041,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(38500,39041,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(38501,39041,'blocks_7_promo_panel_content_actions','1'),(38502,39041,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(38503,39041,'blocks_7_promo_panel_content',''),(38504,39041,'_blocks_7_promo_panel_content','field_617693e1428f4'),(38505,39042,'hero_style','default'),(38506,39042,'_hero_style','field_62051d9dc5324'),(38507,39042,'hero_image_pos_x','right'),(38508,39042,'_hero_image_pos_x','field_62ec3d05390bb'),(38509,39042,'hero_image_pos_y','top'),(38510,39042,'_hero_image_pos_y','field_62ec3d05390bc'),(38511,39042,'hero_image_pos',''),(38512,39042,'_hero_image_pos','field_62ec3d05390ba'),(38513,39042,'hero_title','Biomechanics Coach Course - EMD UK'),(38514,39042,'_hero_title','field_617571fe285e8'),(38515,39042,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a EMD UK member. '),(38516,39042,'_hero_text','field_6175723c285e9'),(38517,39042,'hero_actions','1'),(38518,39042,'_hero_actions','field_61757270285ea'),(38519,39042,'hero_icon',''),(38520,39042,'_hero_icon','field_61a6182199d03'),(38521,39042,'fft_hide_from_listings','0'),(38522,39042,'_fft_hide_from_listings','field_61f1320446ab2'),(38523,39042,'fft_page_format','default'),(38524,39042,'_fft_page_format','field_61ae213f1f218'),(38525,39042,'fft_hide_nav','1'),(38526,39042,'_fft_hide_nav','field_635bd5e43527c'),(38527,39042,'fft_hide_header_call_to_action','0'),(38528,39042,'_fft_hide_header_call_to_action','field_635bd6723527d'),(38529,39042,'fft_page_sitemap','1'),(38530,39042,'_fft_page_sitemap','field_61af9b34e8181'),(38531,39042,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(38532,39042,'_blocks','field_6176696113096'),(38533,39042,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(38534,39042,'_hero_actions_0_button','field_61757281285eb'),(38535,39042,'_thumbnail_id','38977'),(38536,39042,'__thumbnail_id','field_617570855ddaf'),(38537,39042,'blocks_0_acfe_flexible_toggle',''),(38538,39042,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(38539,39042,'blocks_0_acfe_flexible_layout_title','Icons'),(38540,39042,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(38541,39042,'blocks_0_options_theme','#ffffff'),(38542,39042,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(38543,39042,'blocks_0_options_format','row'),(38544,39042,'_blocks_0_options_format','field_64bfde9a90690'),(38545,39042,'blocks_0_options',''),(38546,39042,'_blocks_0_options','field_64bfdd9b90684'),(38547,39042,'blocks_0_icon_row_items_0_icon','qualification.svg'),(38548,39042,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(38549,39042,'blocks_0_icon_row_items_0_label','Course Type'),(38550,39042,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(38551,39042,'blocks_0_icon_row_items_0_text','Blended Learning'),(38552,39042,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(38553,39042,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(38554,39042,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(38555,39042,'blocks_0_icon_row_items_1_label','Qualification'),(38556,39042,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(38557,39042,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(38558,39042,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(38559,39042,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(38560,39042,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(38561,39042,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(38562,39042,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(38563,39042,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(38564,39042,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(38565,39042,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(38566,39042,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(38567,39042,'blocks_0_icon_row_items_3_label','IBA Registered'),(38568,39042,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(38569,39042,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(38570,39042,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(38571,39042,'blocks_0_icon_row_items','4'),(38572,39042,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(38573,39042,'blocks_1_acfe_flexible_toggle',''),(38574,39042,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(38575,39042,'blocks_1_acfe_flexible_layout_title','Form'),(38576,39042,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(38577,39042,'blocks_1_row_content_format','promotion'),(38578,39042,'_blocks_1_row_content_format','field_6481ead962881'),(38579,39042,'blocks_1_row_content_title',''),(38580,39042,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(38581,39042,'blocks_1_row_content_heading',''),(38582,39042,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(38583,39042,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(38584,39042,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(38585,39042,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(38586,39042,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(38587,39042,'blocks_1_row_content_actions','1'),(38588,39042,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(38589,39042,'blocks_1_row_content',''),(38590,39042,'_blocks_1_row_content','field_61a0f5f5b3db0'),(38591,39042,'blocks_1_row_form',''),(38592,39042,'_blocks_1_row_form','field_61a4ff2c0b08e'),(38593,39042,'blocks_1_row_form_button_label',''),(38594,39042,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(38595,39042,'blocks_1_row_content_promotion_label','Up to 10% Off'),(38596,39042,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(38597,39042,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(38598,39042,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(38599,39042,'blocks_1_row_content_promotion_value','Up to 10% Off'),(38600,39042,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(38601,39042,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an EMD UK member'),(38602,39042,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(38603,39042,'blocks_1_row_content_promotion',''),(38604,39042,'_blocks_1_row_content_promotion','field_6481eb3962882'),(38605,39042,'blocks_1_row_form_title','EMD UK Referral'),(38606,39042,'_blocks_1_row_form_title','field_64872db5127af'),(38607,39042,'blocks_2_acfe_flexible_toggle',''),(38608,39042,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(38609,39042,'blocks_2_acfe_flexible_layout_title','Logos'),(38610,39042,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(38611,39042,'blocks_2_options_theme','#ffffff'),(38612,39042,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(38613,39042,'blocks_2_options_format','grid'),(38614,39042,'_blocks_2_options_format','field_61782964ee971'),(38615,39042,'blocks_2_options',''),(38616,39042,'_blocks_2_options','field_61782954ee965'),(38617,39042,'blocks_2_logos','a:2:{i:0;s:5:\"38587\";i:1;s:5:\"39040\";}'),(38618,39042,'_blocks_2_logos','field_61782954ee96d'),(38619,39042,'blocks_2_title',''),(38620,39042,'_blocks_2_title','field_668fbfdc2daa1'),(38621,39042,'blocks_3_acfe_flexible_toggle',''),(38622,39042,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(38623,39042,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(38624,39042,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(38625,39042,'blocks_3_size','large'),(38626,39042,'_blocks_3_size','field_6487038f297c1'),(38627,39042,'blocks_3_row_content_title',''),(38628,39042,'_blocks_3_row_content_title','field_64870132a865d'),(38629,39042,'blocks_3_row_content_heading','Course Overview'),(38630,39042,'_blocks_3_row_content_heading','field_64870142a865e'),(38631,39042,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(38632,39042,'_blocks_3_row_content_text','field_64870148a865f'),(38633,39042,'blocks_3_row_content',''),(38634,39042,'_blocks_3_row_content','field_6487008ba865c'),(38635,39042,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(38636,39042,'_blocks_3_video_src','field_6193c4a98ec07'),(38637,39042,'blocks_3_video_thumbnail','38998'),(38638,39042,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(38639,39042,'blocks_4_acfe_flexible_toggle',''),(38640,39042,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(38641,39042,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(38642,39042,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(38643,39042,'blocks_4_options_theme','#ffffff'),(38644,39042,'_blocks_4_options_theme','field_6176830e2ad17'),(38645,39042,'blocks_4_options',''),(38646,39042,'_blocks_4_options','field_6176830e2ad16'),(38647,39042,'blocks_4_text_block_heading','Learn more about the course'),(38648,39042,'_blocks_4_text_block_heading','field_617669d413097'),(38649,39042,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(38650,39042,'_blocks_4_text_block_content','field_617669ec13098'),(38651,39042,'blocks_5_acfe_flexible_toggle',''),(38652,39042,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(38653,39042,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(38654,39042,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(38655,39042,'blocks_5_options_theme','#ffffff'),(38656,39042,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(38657,39042,'blocks_5_options',''),(38658,39042,'_blocks_5_options','field_6177cfcd8140f'),(38659,39042,'blocks_5_tabs_0_tab_label','What\'s Included'),(38660,39042,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(38661,39042,'blocks_5_tabs_0_tab_content_title',''),(38662,39042,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(38663,39042,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(38664,39042,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(38665,39042,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(38666,39042,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(38667,39042,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(38668,39042,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(38669,39042,'blocks_5_tabs_0_tab_content_actions','1'),(38670,39042,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(38671,39042,'blocks_5_tabs_0_tab_content',''),(38672,39042,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(38673,39042,'blocks_5_tabs_0_tab_image','39009'),(38674,39042,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(38675,39042,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(38676,39042,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(38677,39042,'blocks_5_tabs_1_tab_content_title',''),(38678,39042,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(38679,39042,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(38680,39042,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(38681,39042,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(38682,39042,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(38683,39042,'blocks_5_tabs_1_tab_content_actions','1'),(38684,39042,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(38685,39042,'blocks_5_tabs_1_tab_content',''),(38686,39042,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(38687,39042,'blocks_5_tabs_1_tab_image','39010'),(38688,39042,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(38689,39042,'blocks_5_tabs','2'),(38690,39042,'_blocks_5_tabs','field_6177cff281419'),(38691,39042,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(38692,39042,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(38693,39042,'blocks_6_acfe_flexible_toggle',''),(38694,39042,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(38695,39042,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(38696,39042,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(38697,39042,'blocks_6_options_theme','#ffffff'),(38698,39042,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(38699,39042,'blocks_6_options_state','0'),(38700,39042,'_blocks_6_options_state','field_6239fcb7508c5'),(38701,39042,'blocks_6_options',''),(38702,39042,'_blocks_6_options','field_6177e2991ac44'),(38703,39042,'blocks_6_accordion_content','faqs'),(38704,39042,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(38705,39042,'blocks_6_actions',''),(38706,39042,'_blocks_6_actions','field_61a746a817f7a'),(38707,39042,'blocks_6_content_title',''),(38708,39042,'_blocks_6_content_title','field_64d237e8bb1e2'),(38709,39042,'blocks_6_content_heading','Frequently asked questions'),(38710,39042,'_blocks_6_content_heading','field_64d237e8bb1e3'),(38711,39042,'blocks_6_content_text',''),(38712,39042,'_blocks_6_content_text','field_64d237e8bb1e4'),(38713,39042,'blocks_6_content_actions',''),(38714,39042,'_blocks_6_content_actions','field_64d237e8bb1e5'),(38715,39042,'blocks_6_content_align','left'),(38716,39042,'_blocks_6_content_align','field_64d2443e6b6aa'),(38717,39042,'blocks_6_content',''),(38718,39042,'_blocks_6_content','field_64d237e8bb1e1'),(38719,39042,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(38720,39042,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(38721,39042,'blocks_7_acfe_flexible_toggle',''),(38722,39042,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(38723,39042,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(38724,39042,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(38725,39042,'blocks_7_options_alignment','center'),(38726,39042,'_blocks_7_options_alignment','field_61769449f5490'),(38727,39042,'blocks_7_options',''),(38728,39042,'_blocks_7_options','field_617693e1428f0'),(38729,39042,'blocks_7_promo_panel_image','39035'),(38730,39042,'_blocks_7_promo_panel_image','field_617693e1428f3'),(38731,39042,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(38732,39042,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(38733,39042,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(38734,39042,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(38735,39042,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(38736,39042,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(38737,39042,'blocks_7_promo_panel_content_actions','1'),(38738,39042,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(38739,39042,'blocks_7_promo_panel_content',''),(38740,39042,'_blocks_7_promo_panel_content','field_617693e1428f4'),(38741,39043,'_edit_lock','1728478036:5'),(38742,39043,'_edit_last','5'),(38743,39043,'hero_style','default'),(38744,39043,'_hero_style','field_62051d9dc5324'),(38745,39043,'__thumbnail_id','field_617570855ddaf'),(38746,39043,'hero_image_pos_x','right'),(38747,39043,'_hero_image_pos_x','field_62ec3d05390bb'),(38748,39043,'hero_image_pos_y','top'),(38749,39043,'_hero_image_pos_y','field_62ec3d05390bc'),(38750,39043,'hero_image_pos',''),(38751,39043,'_hero_image_pos','field_62ec3d05390ba'),(38752,39043,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(38753,39043,'_hero_title','field_617571fe285e8'),(38754,39043,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(38755,39043,'_hero_text','field_6175723c285e9'),(38756,39043,'hero_actions','1'),(38757,39043,'_hero_actions','field_61757270285ea'),(38758,39043,'hero_icon',''),(38759,39043,'_hero_icon','field_61a6182199d03'),(38760,39043,'fft_hide_from_listings','0'),(38761,39043,'_fft_hide_from_listings','field_61f1320446ab2'),(38762,39043,'fft_page_format','default'),(38763,39043,'_fft_page_format','field_61ae213f1f218'),(38764,39043,'fft_hide_nav','1'),(38765,39043,'_fft_hide_nav','field_635bd5e43527c'),(38766,39043,'fft_hide_header_call_to_action','0'),(38767,39043,'_fft_hide_header_call_to_action','field_635bd6723527d'),(38768,39043,'fft_page_sitemap','1'),(38769,39043,'_fft_page_sitemap','field_61af9b34e8181'),(38770,39043,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:8:\"template\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(38771,39043,'_blocks','field_6176696113096'),(38772,39043,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39043-3\";s:6:\"target\";s:6:\"_blank\";}'),(38773,39043,'_hero_actions_0_button','field_61757281285eb'),(38774,39043,'_thumbnail_id','40310'),(38775,39043,'blocks_0_acfe_flexible_toggle',''),(38776,39043,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(38777,39043,'blocks_0_acfe_flexible_layout_title','Icons'),(38778,39043,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(38779,39043,'blocks_0_options_theme','#ffffff'),(38780,39043,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(38781,39043,'blocks_0_options_format','row'),(38782,39043,'_blocks_0_options_format','field_64bfde9a90690'),(38783,39043,'blocks_0_options',''),(38784,39043,'_blocks_0_options','field_64bfdd9b90684'),(38785,39043,'blocks_0_icon_row_items_0_icon','qualification.svg'),(38786,39043,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(38787,39043,'blocks_0_icon_row_items_0_label','Course Type'),(38788,39043,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(38789,39043,'blocks_0_icon_row_items_0_text','Blended Learning'),(38790,39043,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(38791,39043,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(38792,39043,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(38793,39043,'blocks_0_icon_row_items_1_label','Qualification'),(38794,39043,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(38795,39043,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(38796,39043,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(38797,39043,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(38798,39043,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(38799,39043,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(38800,39043,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(38801,39043,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(38802,39043,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(38803,39043,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(38804,39043,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(38805,39043,'blocks_0_icon_row_items_3_label','IBA Registered'),(38806,39043,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(38807,39043,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(38808,39043,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(38809,39043,'blocks_0_icon_row_items','4'),(38810,39043,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(38811,39043,'blocks_1_acfe_flexible_toggle',''),(38812,39043,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(38813,39043,'blocks_1_acfe_flexible_layout_title','Form'),(38814,39043,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(38815,39043,'blocks_1_row_content_format','promotion'),(38816,39043,'_blocks_1_row_content_format','field_6481ead962881'),(38817,39043,'blocks_1_row_content_title',''),(38818,39043,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(38819,39043,'blocks_1_row_content_heading',''),(38820,39043,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(38821,39043,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(38822,39043,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(38823,39043,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(38824,39043,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(38825,39043,'blocks_1_row_content_actions','1'),(38826,39043,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(38827,39043,'blocks_1_row_content',''),(38828,39043,'_blocks_1_row_content','field_61a0f5f5b3db0'),(38829,39043,'blocks_1_row_form','40416'),(38830,39043,'_blocks_1_row_form','field_61a4ff2c0b08e'),(38831,39043,'blocks_1_row_form_button_label',''),(38832,39043,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(38833,39043,'blocks_1_row_content_promotion_label',''),(38834,39043,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(38835,39043,'blocks_1_row_content_promotion_heading','Up to 10% Off For Event Attendees '),(38836,39043,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(38837,39043,'blocks_1_row_content_promotion_value','10%'),(38838,39043,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(38839,39043,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(38840,39043,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(38841,39043,'blocks_1_row_content_promotion',''),(38842,39043,'_blocks_1_row_content_promotion','field_6481eb3962882'),(38843,39043,'blocks_1_row_form_title','Event Referral'),(38844,39043,'_blocks_1_row_form_title','field_64872db5127af'),(38979,38973,'_yoast_wpseo_title','David Lloyd Referral | Biomechanics Education'),(38980,38973,'_yoast_wpseo_metadesc','Discover the David Lloyd referral for biomechanics education. Obtain exclusive discount to enhance your professional development through our partnership.'),(38981,38973,'_yoast_wpseo_estimated-reading-time-minutes','1'),(38982,39038,'_yoast_wpseo_title','EMD Referral | Biomechanics Education'),(38983,39038,'_yoast_wpseo_metadesc','Explore the EMD referral for biomechanics education. Access exclusive offers and opportunities to advance your knowledge and skills through our partnership.'),(38984,39038,'_yoast_wpseo_estimated-reading-time-minutes','1'),(38985,39043,'_yoast_wpseo_title','Events | Biomechanics Education'),(38986,39043,'_yoast_wpseo_metadesc','Join our biomechanics education event to explore the latest advancements and techniques. Network with professionals and gain insights to elevate your practice.'),(38987,39043,'_yoast_wpseo_estimated-reading-time-minutes','1'),(38988,7,'_yoast_wpseo_title','Biomechanics Education %%sep%% Resources & Courses'),(38989,7,'_yoast_wpseo_metadesc','Discover top resources and courses in human movement science. Enhance your biomechanics knowledge and skills with expert guidance.'),(38990,7,'_yoast_wpseo_estimated-reading-time-minutes','1'),(38991,3,'_edit_lock','1728557952:1'),(38992,3,'_edit_last','5'),(38993,3,'hero_style','default'),(38994,3,'_hero_style','field_62051d9dc5324'),(38996,3,'__thumbnail_id','field_617570855ddaf'),(38997,3,'hero_image_pos_x','right'),(38998,3,'_hero_image_pos_x','field_62ec3d05390bb'),(38999,3,'hero_image_pos_y','top'),(39000,3,'_hero_image_pos_y','field_62ec3d05390bc'),(39001,3,'hero_image_pos',''),(39002,3,'_hero_image_pos','field_62ec3d05390ba'),(39003,3,'hero_title','Privacy Policy'),(39004,3,'_hero_title','field_617571fe285e8'),(39005,3,'hero_text','Our privacy policy details how we handle your data responsibly, keeping your information secure and confidential.'),(39006,3,'_hero_text','field_6175723c285e9'),(39007,3,'hero_actions',''),(39008,3,'_hero_actions','field_61757270285ea'),(39009,3,'hero_icon',''),(39010,3,'_hero_icon','field_61a6182199d03'),(39011,3,'fft_hide_from_listings','0'),(39012,3,'_fft_hide_from_listings','field_61f1320446ab2'),(39013,3,'fft_page_format','default'),(39014,3,'_fft_page_format','field_61ae213f1f218'),(39015,3,'fft_hide_nav','0'),(39016,3,'_fft_hide_nav','field_635bd5e43527c'),(39017,3,'fft_hide_header_call_to_action','0'),(39018,3,'_fft_hide_header_call_to_action','field_635bd6723527d'),(39019,3,'fft_page_sitemap','0'),(39020,3,'_fft_page_sitemap','field_61af9b34e8181'),(39021,3,'blocks','a:1:{i:0;s:10:\"text_block\";}'),(39022,3,'_blocks','field_6176696113096'),(39023,3,'_yoast_wpseo_title','Privacy Policy | Biomechanics Education'),(39024,3,'_yoast_wpseo_metadesc','Our privacy policy details how we handle your data responsibly, keeping your information secure and confidential.'),(39025,3,'_yoast_wpseo_content_score','60'),(39026,3,'_yoast_wpseo_estimated-reading-time-minutes','3'),(39027,39046,'hero_style','default'),(39028,39046,'_hero_style','field_62051d9dc5324'),(39029,39046,'_thumbnail_id',''),(39030,39046,'__thumbnail_id','field_617570855ddaf'),(39031,39046,'hero_image_pos_x','right'),(39032,39046,'_hero_image_pos_x','field_62ec3d05390bb'),(39033,39046,'hero_image_pos_y','top'),(39034,39046,'_hero_image_pos_y','field_62ec3d05390bc'),(39035,39046,'hero_image_pos',''),(39036,39046,'_hero_image_pos','field_62ec3d05390ba'),(39037,39046,'hero_title',''),(39038,39046,'_hero_title','field_617571fe285e8'),(39039,39046,'hero_text',''),(39040,39046,'_hero_text','field_6175723c285e9'),(39041,39046,'hero_actions',''),(39042,39046,'_hero_actions','field_61757270285ea'),(39043,39046,'hero_icon',''),(39044,39046,'_hero_icon','field_61a6182199d03'),(39045,39046,'fft_hide_from_listings','0'),(39046,39046,'_fft_hide_from_listings','field_61f1320446ab2'),(39047,39046,'fft_page_format','default'),(39048,39046,'_fft_page_format','field_61ae213f1f218'),(39049,39046,'fft_hide_nav','0'),(39050,39046,'_fft_hide_nav','field_635bd5e43527c'),(39051,39046,'fft_hide_header_call_to_action','0'),(39052,39046,'_fft_hide_header_call_to_action','field_635bd6723527d'),(39053,39046,'fft_page_sitemap','0'),(39054,39046,'_fft_page_sitemap','field_61af9b34e8181'),(39055,39046,'blocks',''),(39056,39046,'_blocks','field_6176696113096'),(39060,39047,'_wp_attached_file','2024/07/Events-referral-page-hero-image.jpg'),(39061,39047,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:43:\"2024/07/Events-referral-page-hero-image.jpg\";s:8:\"filesize\";i:485453;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Events-referral-page-hero-image-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118228;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"Events-referral-page-hero-image-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176180;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Events-referral-page-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43434;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"Events-referral-page-hero-image-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95651;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"Events-referral-page-hero-image-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:254504;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:45:\"Events-referral-page-hero-image-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:393261;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:43:\"Events-referral-page-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54637;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:43:\"Events-referral-page-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160153;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:45:\"Events-referral-page-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:244864;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:43:\"Events-referral-page-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43360;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:43:\"Events-referral-page-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117586;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:44:\"Events-referral-page-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175500;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:43:\"Events-referral-page-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44857;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:43:\"Events-referral-page-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125684;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:44:\"Events-referral-page-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191318;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:43:\"Events-referral-page-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46621;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:43:\"Events-referral-page-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129987;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:44:\"Events-referral-page-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195747;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:43:\"Events-referral-page-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39986;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:43:\"Events-referral-page-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106788;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:44:\"Events-referral-page-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158601;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1686307045\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"51\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(39062,39048,'hero_style','default'),(39063,39048,'_hero_style','field_62051d9dc5324'),(39064,39048,'hero_image_pos_x','right'),(39065,39048,'_hero_image_pos_x','field_62ec3d05390bb'),(39066,39048,'hero_image_pos_y','top'),(39067,39048,'_hero_image_pos_y','field_62ec3d05390bc'),(39068,39048,'hero_image_pos',''),(39069,39048,'_hero_image_pos','field_62ec3d05390ba'),(39070,39048,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(39071,39048,'_hero_title','field_617571fe285e8'),(39072,39048,'hero_text','Biomechanics Education has worked hard in gathering data for over 20 years on both Elite Athletes and usual gym-goers. The culmination of this research has been the development of the Diploma in Biomechanics Coaching course - an evidence-based program that teaches Movement practitioners, Pilates instructors, Personal Trainers, and Physiotherapists how to develop and deepen their understanding of human movement, intrinsic biomechanics, and modern ailments they may find within their clients.'),(39073,39048,'_hero_text','field_6175723c285e9'),(39074,39048,'hero_actions','1'),(39075,39048,'_hero_actions','field_61757270285ea'),(39076,39048,'hero_icon',''),(39077,39048,'_hero_icon','field_61a6182199d03'),(39078,39048,'fft_hide_from_listings','0'),(39079,39048,'_fft_hide_from_listings','field_61f1320446ab2'),(39080,39048,'fft_page_format','default'),(39081,39048,'_fft_page_format','field_61ae213f1f218'),(39082,39048,'fft_hide_nav','1'),(39083,39048,'_fft_hide_nav','field_635bd5e43527c'),(39084,39048,'fft_hide_header_call_to_action','0'),(39085,39048,'_fft_hide_header_call_to_action','field_635bd6723527d'),(39086,39048,'fft_page_sitemap','1'),(39087,39048,'_fft_page_sitemap','field_61af9b34e8181'),(39088,39048,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(39089,39048,'_blocks','field_6176696113096'),(39090,39048,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(39091,39048,'_hero_actions_0_button','field_61757281285eb'),(39092,39048,'_thumbnail_id','39047'),(39093,39048,'__thumbnail_id','field_617570855ddaf'),(39094,39048,'blocks_0_acfe_flexible_toggle',''),(39095,39048,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(39096,39048,'blocks_0_acfe_flexible_layout_title','Icons'),(39097,39048,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(39098,39048,'blocks_0_options_theme','#ffffff'),(39099,39048,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(39100,39048,'blocks_0_options_format','row'),(39101,39048,'_blocks_0_options_format','field_64bfde9a90690'),(39102,39048,'blocks_0_options',''),(39103,39048,'_blocks_0_options','field_64bfdd9b90684'),(39104,39048,'blocks_0_icon_row_items_0_icon','qualification.svg'),(39105,39048,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(39106,39048,'blocks_0_icon_row_items_0_label','Course Type'),(39107,39048,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(39108,39048,'blocks_0_icon_row_items_0_text','Blended Learning'),(39109,39048,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(39110,39048,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(39111,39048,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(39112,39048,'blocks_0_icon_row_items_1_label','Qualification'),(39113,39048,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(39114,39048,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(39115,39048,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(39116,39048,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(39117,39048,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(39118,39048,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(39119,39048,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(39120,39048,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(39121,39048,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(39122,39048,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(39123,39048,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(39124,39048,'blocks_0_icon_row_items_3_label','IBA Registered'),(39125,39048,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(39126,39048,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(39127,39048,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(39128,39048,'blocks_0_icon_row_items','4'),(39129,39048,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(39130,39048,'blocks_1_acfe_flexible_toggle',''),(39131,39048,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(39132,39048,'blocks_1_acfe_flexible_layout_title','Form'),(39133,39048,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(39134,39048,'blocks_1_row_content_format','promotion'),(39135,39048,'_blocks_1_row_content_format','field_6481ead962881'),(39136,39048,'blocks_1_row_content_title',''),(39137,39048,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(39138,39048,'blocks_1_row_content_heading',''),(39139,39048,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(39140,39048,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(39141,39048,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(39142,39048,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(39143,39048,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(39144,39048,'blocks_1_row_content_actions','1'),(39145,39048,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(39146,39048,'blocks_1_row_content',''),(39147,39048,'_blocks_1_row_content','field_61a0f5f5b3db0'),(39148,39048,'blocks_1_row_form',''),(39149,39048,'_blocks_1_row_form','field_61a4ff2c0b08e'),(39150,39048,'blocks_1_row_form_button_label',''),(39151,39048,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(39152,39048,'blocks_1_row_content_promotion_label','Up to 10% Off'),(39153,39048,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(39154,39048,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(39155,39048,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(39156,39048,'blocks_1_row_content_promotion_value','Up to 10% Off'),(39157,39048,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(39158,39048,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an EMD UK member'),(39159,39048,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(39160,39048,'blocks_1_row_content_promotion',''),(39161,39048,'_blocks_1_row_content_promotion','field_6481eb3962882'),(39162,39048,'blocks_1_row_form_title','EMD UK Referral'),(39163,39048,'_blocks_1_row_form_title','field_64872db5127af'),(39164,39048,'blocks_2_acfe_flexible_toggle',''),(39165,39048,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(39166,39048,'blocks_2_acfe_flexible_layout_title','Logos'),(39167,39048,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(39168,39048,'blocks_2_options_theme','#ffffff'),(39169,39048,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(39170,39048,'blocks_2_options_format','grid'),(39171,39048,'_blocks_2_options_format','field_61782964ee971'),(39172,39048,'blocks_2_options',''),(39173,39048,'_blocks_2_options','field_61782954ee965'),(39174,39048,'blocks_2_logos','a:2:{i:0;s:5:\"38587\";i:1;s:5:\"39040\";}'),(39175,39048,'_blocks_2_logos','field_61782954ee96d'),(39176,39048,'blocks_2_title',''),(39177,39048,'_blocks_2_title','field_668fbfdc2daa1'),(39178,39048,'blocks_3_acfe_flexible_toggle',''),(39179,39048,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(39180,39048,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(39181,39048,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(39182,39048,'blocks_3_size','large'),(39183,39048,'_blocks_3_size','field_6487038f297c1'),(39184,39048,'blocks_3_row_content_title',''),(39185,39048,'_blocks_3_row_content_title','field_64870132a865d'),(39186,39048,'blocks_3_row_content_heading','Course Overview'),(39187,39048,'_blocks_3_row_content_heading','field_64870142a865e'),(39188,39048,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(39189,39048,'_blocks_3_row_content_text','field_64870148a865f'),(39190,39048,'blocks_3_row_content',''),(39191,39048,'_blocks_3_row_content','field_6487008ba865c'),(39192,39048,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(39193,39048,'_blocks_3_video_src','field_6193c4a98ec07'),(39194,39048,'blocks_3_video_thumbnail','38998'),(39195,39048,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(39196,39048,'blocks_4_acfe_flexible_toggle',''),(39197,39048,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(39198,39048,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(39199,39048,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(39200,39048,'blocks_4_options_theme','#ffffff'),(39201,39048,'_blocks_4_options_theme','field_6176830e2ad17'),(39202,39048,'blocks_4_options',''),(39203,39048,'_blocks_4_options','field_6176830e2ad16'),(39204,39048,'blocks_4_text_block_heading','Learn more about the course'),(39205,39048,'_blocks_4_text_block_heading','field_617669d413097'),(39206,39048,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(39207,39048,'_blocks_4_text_block_content','field_617669ec13098'),(39208,39048,'blocks_5_acfe_flexible_toggle',''),(39209,39048,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(39210,39048,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(39211,39048,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(39212,39048,'blocks_5_options_theme','#ffffff'),(39213,39048,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(39214,39048,'blocks_5_options',''),(39215,39048,'_blocks_5_options','field_6177cfcd8140f'),(39216,39048,'blocks_5_tabs_0_tab_label','What\'s Included'),(39217,39048,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(39218,39048,'blocks_5_tabs_0_tab_content_title',''),(39219,39048,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(39220,39048,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(39221,39048,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(39222,39048,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(39223,39048,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(39224,39048,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(39225,39048,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(39226,39048,'blocks_5_tabs_0_tab_content_actions','1'),(39227,39048,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(39228,39048,'blocks_5_tabs_0_tab_content',''),(39229,39048,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(39230,39048,'blocks_5_tabs_0_tab_image','39009'),(39231,39048,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(39232,39048,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(39233,39048,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(39234,39048,'blocks_5_tabs_1_tab_content_title',''),(39235,39048,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(39236,39048,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(39237,39048,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(39238,39048,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(39239,39048,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(39240,39048,'blocks_5_tabs_1_tab_content_actions','1'),(39241,39048,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(39242,39048,'blocks_5_tabs_1_tab_content',''),(39243,39048,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(39244,39048,'blocks_5_tabs_1_tab_image','39010'),(39245,39048,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(39246,39048,'blocks_5_tabs','2'),(39247,39048,'_blocks_5_tabs','field_6177cff281419'),(39248,39048,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(39249,39048,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(39250,39048,'blocks_6_acfe_flexible_toggle',''),(39251,39048,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(39252,39048,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(39253,39048,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(39254,39048,'blocks_6_options_theme','#ffffff'),(39255,39048,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(39256,39048,'blocks_6_options_state','0'),(39257,39048,'_blocks_6_options_state','field_6239fcb7508c5'),(39258,39048,'blocks_6_options',''),(39259,39048,'_blocks_6_options','field_6177e2991ac44'),(39260,39048,'blocks_6_accordion_content','faqs'),(39261,39048,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(39262,39048,'blocks_6_actions',''),(39263,39048,'_blocks_6_actions','field_61a746a817f7a'),(39264,39048,'blocks_6_content_title',''),(39265,39048,'_blocks_6_content_title','field_64d237e8bb1e2'),(39266,39048,'blocks_6_content_heading','Frequently asked questions'),(39267,39048,'_blocks_6_content_heading','field_64d237e8bb1e3'),(39268,39048,'blocks_6_content_text',''),(39269,39048,'_blocks_6_content_text','field_64d237e8bb1e4'),(39270,39048,'blocks_6_content_actions',''),(39271,39048,'_blocks_6_content_actions','field_64d237e8bb1e5'),(39272,39048,'blocks_6_content_align','left'),(39273,39048,'_blocks_6_content_align','field_64d2443e6b6aa'),(39274,39048,'blocks_6_content',''),(39275,39048,'_blocks_6_content','field_64d237e8bb1e1'),(39276,39048,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(39277,39048,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(39278,39048,'blocks_7_acfe_flexible_toggle',''),(39279,39048,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(39280,39048,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(39281,39048,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(39282,39048,'blocks_7_options_alignment','center'),(39283,39048,'_blocks_7_options_alignment','field_61769449f5490'),(39284,39048,'blocks_7_options',''),(39285,39048,'_blocks_7_options','field_617693e1428f0'),(39286,39048,'blocks_7_promo_panel_image','39035'),(39287,39048,'_blocks_7_promo_panel_image','field_617693e1428f3'),(39288,39048,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(39289,39048,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(39290,39048,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(39291,39048,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(39292,39048,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(39293,39048,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(39294,39048,'blocks_7_promo_panel_content_actions','1'),(39295,39048,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(39296,39048,'blocks_7_promo_panel_content',''),(39297,39048,'_blocks_7_promo_panel_content','field_617693e1428f4'),(39534,39050,'hero_style','default'),(39535,39050,'_hero_style','field_62051d9dc5324'),(39536,39050,'hero_image_pos_x','right'),(39537,39050,'_hero_image_pos_x','field_62ec3d05390bb'),(39538,39050,'hero_image_pos_y','top'),(39539,39050,'_hero_image_pos_y','field_62ec3d05390bc'),(39540,39050,'hero_image_pos',''),(39541,39050,'_hero_image_pos','field_62ec3d05390ba'),(39542,39050,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(39543,39050,'_hero_title','field_617571fe285e8'),(39544,39050,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(39545,39050,'_hero_text','field_6175723c285e9'),(39546,39050,'hero_actions','1'),(39547,39050,'_hero_actions','field_61757270285ea'),(39548,39050,'hero_icon',''),(39549,39050,'_hero_icon','field_61a6182199d03'),(39550,39050,'fft_hide_from_listings','0'),(39551,39050,'_fft_hide_from_listings','field_61f1320446ab2'),(39552,39050,'fft_page_format','default'),(39553,39050,'_fft_page_format','field_61ae213f1f218'),(39554,39050,'fft_hide_nav','1'),(39555,39050,'_fft_hide_nav','field_635bd5e43527c'),(39556,39050,'fft_hide_header_call_to_action','0'),(39557,39050,'_fft_hide_header_call_to_action','field_635bd6723527d'),(39558,39050,'fft_page_sitemap','1'),(39559,39050,'_fft_page_sitemap','field_61af9b34e8181'),(39560,39050,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(39561,39050,'_blocks','field_6176696113096'),(39562,39050,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(39563,39050,'_hero_actions_0_button','field_61757281285eb'),(39564,39050,'_thumbnail_id','39047'),(39565,39050,'__thumbnail_id','field_617570855ddaf'),(39566,39050,'blocks_0_acfe_flexible_toggle',''),(39567,39050,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(39568,39050,'blocks_0_acfe_flexible_layout_title','Icons'),(39569,39050,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(39570,39050,'blocks_0_options_theme','#ffffff'),(39571,39050,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(39572,39050,'blocks_0_options_format','row'),(39573,39050,'_blocks_0_options_format','field_64bfde9a90690'),(39574,39050,'blocks_0_options',''),(39575,39050,'_blocks_0_options','field_64bfdd9b90684'),(39576,39050,'blocks_0_icon_row_items_0_icon','qualification.svg'),(39577,39050,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(39578,39050,'blocks_0_icon_row_items_0_label','Course Type'),(39579,39050,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(39580,39050,'blocks_0_icon_row_items_0_text','Blended Learning'),(39581,39050,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(39582,39050,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(39583,39050,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(39584,39050,'blocks_0_icon_row_items_1_label','Qualification'),(39585,39050,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(39586,39050,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(39587,39050,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(39588,39050,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(39589,39050,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(39590,39050,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(39591,39050,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(39592,39050,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(39593,39050,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(39594,39050,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(39595,39050,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(39596,39050,'blocks_0_icon_row_items_3_label','IBA Registered'),(39597,39050,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(39598,39050,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(39599,39050,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(39600,39050,'blocks_0_icon_row_items','4'),(39601,39050,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(39602,39050,'blocks_1_acfe_flexible_toggle',''),(39603,39050,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(39604,39050,'blocks_1_acfe_flexible_layout_title','Form'),(39605,39050,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(39606,39050,'blocks_1_row_content_format','promotion'),(39607,39050,'_blocks_1_row_content_format','field_6481ead962881'),(39608,39050,'blocks_1_row_content_title',''),(39609,39050,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(39610,39050,'blocks_1_row_content_heading',''),(39611,39050,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(39612,39050,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(39613,39050,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(39614,39050,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(39615,39050,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(39616,39050,'blocks_1_row_content_actions','1'),(39617,39050,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(39618,39050,'blocks_1_row_content',''),(39619,39050,'_blocks_1_row_content','field_61a0f5f5b3db0'),(39620,39050,'blocks_1_row_form',''),(39621,39050,'_blocks_1_row_form','field_61a4ff2c0b08e'),(39622,39050,'blocks_1_row_form_button_label',''),(39623,39050,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(39624,39050,'blocks_1_row_content_promotion_label','Up to 10% Off'),(39625,39050,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(39626,39050,'blocks_1_row_content_promotion_heading','For Event Attendees '),(39627,39050,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(39628,39050,'blocks_1_row_content_promotion_value','Up to 10% Off'),(39629,39050,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(39630,39050,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an EMD UK member'),(39631,39050,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(39632,39050,'blocks_1_row_content_promotion',''),(39633,39050,'_blocks_1_row_content_promotion','field_6481eb3962882'),(39634,39050,'blocks_1_row_form_title','EMD UK Referral'),(39635,39050,'_blocks_1_row_form_title','field_64872db5127af'),(39636,39050,'blocks_2_acfe_flexible_toggle',''),(39637,39050,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(39638,39050,'blocks_2_acfe_flexible_layout_title','Logos'),(39639,39050,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(39640,39050,'blocks_2_options_theme','#ffffff'),(39641,39050,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(39642,39050,'blocks_2_options_format','grid'),(39643,39050,'_blocks_2_options_format','field_61782964ee971'),(39644,39050,'blocks_2_options',''),(39645,39050,'_blocks_2_options','field_61782954ee965'),(39646,39050,'blocks_2_logos','a:2:{i:0;s:5:\"38587\";i:1;s:5:\"39040\";}'),(39647,39050,'_blocks_2_logos','field_61782954ee96d'),(39648,39050,'blocks_2_title',''),(39649,39050,'_blocks_2_title','field_668fbfdc2daa1'),(39650,39050,'blocks_3_acfe_flexible_toggle',''),(39651,39050,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(39652,39050,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(39653,39050,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(39654,39050,'blocks_3_size','large'),(39655,39050,'_blocks_3_size','field_6487038f297c1'),(39656,39050,'blocks_3_row_content_title',''),(39657,39050,'_blocks_3_row_content_title','field_64870132a865d'),(39658,39050,'blocks_3_row_content_heading','Course Overview'),(39659,39050,'_blocks_3_row_content_heading','field_64870142a865e'),(39660,39050,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(39661,39050,'_blocks_3_row_content_text','field_64870148a865f'),(39662,39050,'blocks_3_row_content',''),(39663,39050,'_blocks_3_row_content','field_6487008ba865c'),(39664,39050,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(39665,39050,'_blocks_3_video_src','field_6193c4a98ec07'),(39666,39050,'blocks_3_video_thumbnail','38998'),(39667,39050,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(39668,39050,'blocks_4_acfe_flexible_toggle',''),(39669,39050,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(39670,39050,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(39671,39050,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(39672,39050,'blocks_4_options_theme','#ffffff'),(39673,39050,'_blocks_4_options_theme','field_6176830e2ad17'),(39674,39050,'blocks_4_options',''),(39675,39050,'_blocks_4_options','field_6176830e2ad16'),(39676,39050,'blocks_4_text_block_heading','Learn more about the course'),(39677,39050,'_blocks_4_text_block_heading','field_617669d413097'),(39678,39050,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(39679,39050,'_blocks_4_text_block_content','field_617669ec13098'),(39680,39050,'blocks_5_acfe_flexible_toggle',''),(39681,39050,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(39682,39050,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(39683,39050,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(39684,39050,'blocks_5_options_theme','#ffffff'),(39685,39050,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(39686,39050,'blocks_5_options',''),(39687,39050,'_blocks_5_options','field_6177cfcd8140f'),(39688,39050,'blocks_5_tabs_0_tab_label','What\'s Included'),(39689,39050,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(39690,39050,'blocks_5_tabs_0_tab_content_title',''),(39691,39050,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(39692,39050,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(39693,39050,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(39694,39050,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(39695,39050,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(39696,39050,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(39697,39050,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(39698,39050,'blocks_5_tabs_0_tab_content_actions','1'),(39699,39050,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(39700,39050,'blocks_5_tabs_0_tab_content',''),(39701,39050,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(39702,39050,'blocks_5_tabs_0_tab_image','39009'),(39703,39050,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(39704,39050,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(39705,39050,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(39706,39050,'blocks_5_tabs_1_tab_content_title',''),(39707,39050,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(39708,39050,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(39709,39050,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(39710,39050,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(39711,39050,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(39712,39050,'blocks_5_tabs_1_tab_content_actions','1'),(39713,39050,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(39714,39050,'blocks_5_tabs_1_tab_content',''),(39715,39050,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(39716,39050,'blocks_5_tabs_1_tab_image','39010'),(39717,39050,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(39718,39050,'blocks_5_tabs','2'),(39719,39050,'_blocks_5_tabs','field_6177cff281419'),(39720,39050,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(39721,39050,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(39722,39050,'blocks_6_acfe_flexible_toggle',''),(39723,39050,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(39724,39050,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(39725,39050,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(39726,39050,'blocks_6_options_theme','#ffffff'),(39727,39050,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(39728,39050,'blocks_6_options_state','0'),(39729,39050,'_blocks_6_options_state','field_6239fcb7508c5'),(39730,39050,'blocks_6_options',''),(39731,39050,'_blocks_6_options','field_6177e2991ac44'),(39732,39050,'blocks_6_accordion_content','faqs'),(39733,39050,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(39734,39050,'blocks_6_actions',''),(39735,39050,'_blocks_6_actions','field_61a746a817f7a'),(39736,39050,'blocks_6_content_title',''),(39737,39050,'_blocks_6_content_title','field_64d237e8bb1e2'),(39738,39050,'blocks_6_content_heading','Frequently asked questions'),(39739,39050,'_blocks_6_content_heading','field_64d237e8bb1e3'),(39740,39050,'blocks_6_content_text',''),(39741,39050,'_blocks_6_content_text','field_64d237e8bb1e4'),(39742,39050,'blocks_6_content_actions',''),(39743,39050,'_blocks_6_content_actions','field_64d237e8bb1e5'),(39744,39050,'blocks_6_content_align','left'),(39745,39050,'_blocks_6_content_align','field_64d2443e6b6aa'),(39746,39050,'blocks_6_content',''),(39747,39050,'_blocks_6_content','field_64d237e8bb1e1'),(39748,39050,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(39749,39050,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(39750,39050,'blocks_7_acfe_flexible_toggle',''),(39751,39050,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(39752,39050,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(39753,39050,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(39754,39050,'blocks_7_options_alignment','center'),(39755,39050,'_blocks_7_options_alignment','field_61769449f5490'),(39756,39050,'blocks_7_options',''),(39757,39050,'_blocks_7_options','field_617693e1428f0'),(39758,39050,'blocks_7_promo_panel_image','39035'),(39759,39050,'_blocks_7_promo_panel_image','field_617693e1428f3'),(39760,39050,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(39761,39050,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(39762,39050,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(39763,39050,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(39764,39050,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(39765,39050,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(39766,39050,'blocks_7_promo_panel_content_actions','1'),(39767,39050,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(39768,39050,'blocks_7_promo_panel_content',''),(39769,39050,'_blocks_7_promo_panel_content','field_617693e1428f4'),(39770,39051,'_wp_attached_file','2024/07/Event-referral-page-rachel-and-rob-partnership-image.png'),(39771,39051,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:552;s:6:\"height\";i:366;s:4:\"file\";s:64:\"2024/07/Event-referral-page-rachel-and-rob-partnership-image.png\";s:8:\"filesize\";i:320159;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Event-referral-page-rachel-and-rob-partnership-image-400x265.png\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173519;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:64:\"Event-referral-page-rachel-and-rob-partnership-image-400x366.png\";s:5:\"width\";i:400;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:243273;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:64:\"Event-referral-page-rachel-and-rob-partnership-image-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174137;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:64:\"Event-referral-page-rachel-and-rob-partnership-image-300x366.png\";s:5:\"width\";i:300;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183045;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:64:\"Event-referral-page-rachel-and-rob-partnership-image-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:194610;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:64:\"Event-referral-page-rachel-and-rob-partnership-image-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155851;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(39772,39052,'_wp_attached_file','2024/07/Rachel-France-image.jpg'),(39773,39052,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1401;s:6:\"height\";i:2560;s:4:\"file\";s:31:\"2024/07/Rachel-France-image.jpg\";s:8:\"filesize\";i:286556;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Rachel-France-image-900x1645.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1645;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168436;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"Rachel-France-image-1200x2193.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:2193;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264037;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"Rachel-France-image-400x731.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:731;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45461;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Rachel-France-image-768x1403.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1403;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129758;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"Rachel-France-image-841x1536.jpg\";s:5:\"width\";i:841;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151209;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"Rachel-France-image-1121x2048.jpg\";s:5:\"width\";i:1121;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:238304;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:31:\"Rachel-France-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29551;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:31:\"Rachel-France-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104377;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:33:\"Rachel-France-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160307;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:31:\"Rachel-France-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20679;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:31:\"Rachel-France-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69096;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:32:\"Rachel-France-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105553;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:31:\"Rachel-France-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23811;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:31:\"Rachel-France-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86959;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:32:\"Rachel-France-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136941;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:31:\"Rachel-France-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22987;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:31:\"Rachel-France-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78357;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:32:\"Rachel-France-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119768;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:31:\"Rachel-France-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18238;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:31:\"Rachel-France-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59414;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:32:\"Rachel-France-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90998;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(39926,39053,'hero_style','default'),(39927,39053,'_hero_style','field_62051d9dc5324'),(39928,39053,'hero_image_pos_x','right'),(39929,39053,'_hero_image_pos_x','field_62ec3d05390bb'),(39930,39053,'hero_image_pos_y','top'),(39931,39053,'_hero_image_pos_y','field_62ec3d05390bc'),(39932,39053,'hero_image_pos',''),(39933,39053,'_hero_image_pos','field_62ec3d05390ba'),(39934,39053,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(39935,39053,'_hero_title','field_617571fe285e8'),(39936,39053,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(39937,39053,'_hero_text','field_6175723c285e9'),(39938,39053,'hero_actions','1'),(39939,39053,'_hero_actions','field_61757270285ea'),(39940,39053,'hero_icon',''),(39941,39053,'_hero_icon','field_61a6182199d03'),(39942,39053,'fft_hide_from_listings','0'),(39943,39053,'_fft_hide_from_listings','field_61f1320446ab2'),(39944,39053,'fft_page_format','default'),(39945,39053,'_fft_page_format','field_61ae213f1f218'),(39946,39053,'fft_hide_nav','1'),(39947,39053,'_fft_hide_nav','field_635bd5e43527c'),(39948,39053,'fft_hide_header_call_to_action','0'),(39949,39053,'_fft_hide_header_call_to_action','field_635bd6723527d'),(39950,39053,'fft_page_sitemap','1'),(39951,39053,'_fft_page_sitemap','field_61af9b34e8181'),(39952,39053,'blocks','a:10:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"text_block\";i:7;s:4:\"tabs\";i:8;s:10:\"accordions\";i:9;s:11:\"promo_panel\";}'),(39953,39053,'_blocks','field_6176696113096'),(39954,39053,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(39955,39053,'_hero_actions_0_button','field_61757281285eb'),(39956,39053,'_thumbnail_id','39047'),(39957,39053,'__thumbnail_id','field_617570855ddaf'),(39958,39053,'blocks_0_acfe_flexible_toggle',''),(39959,39053,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(39960,39053,'blocks_0_acfe_flexible_layout_title','Icons'),(39961,39053,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(39962,39053,'blocks_0_options_theme','#ffffff'),(39963,39053,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(39964,39053,'blocks_0_options_format','row'),(39965,39053,'_blocks_0_options_format','field_64bfde9a90690'),(39966,39053,'blocks_0_options',''),(39967,39053,'_blocks_0_options','field_64bfdd9b90684'),(39968,39053,'blocks_0_icon_row_items_0_icon','qualification.svg'),(39969,39053,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(39970,39053,'blocks_0_icon_row_items_0_label','Course Type'),(39971,39053,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(39972,39053,'blocks_0_icon_row_items_0_text','Blended Learning'),(39973,39053,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(39974,39053,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(39975,39053,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(39976,39053,'blocks_0_icon_row_items_1_label','Qualification'),(39977,39053,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(39978,39053,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(39979,39053,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(39980,39053,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(39981,39053,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(39982,39053,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(39983,39053,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(39984,39053,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(39985,39053,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(39986,39053,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(39987,39053,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(39988,39053,'blocks_0_icon_row_items_3_label','IBA Registered'),(39989,39053,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(39990,39053,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(39991,39053,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(39992,39053,'blocks_0_icon_row_items','4'),(39993,39053,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(39994,39053,'blocks_1_acfe_flexible_toggle',''),(39995,39053,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(39996,39053,'blocks_1_acfe_flexible_layout_title','Form'),(39997,39053,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(39998,39053,'blocks_1_row_content_format','promotion'),(39999,39053,'_blocks_1_row_content_format','field_6481ead962881'),(40000,39053,'blocks_1_row_content_title',''),(40001,39053,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(40002,39053,'blocks_1_row_content_heading',''),(40003,39053,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(40004,39053,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(40005,39053,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(40006,39053,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(40007,39053,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(40008,39053,'blocks_1_row_content_actions','1'),(40009,39053,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(40010,39053,'blocks_1_row_content',''),(40011,39053,'_blocks_1_row_content','field_61a0f5f5b3db0'),(40012,39053,'blocks_1_row_form',''),(40013,39053,'_blocks_1_row_form','field_61a4ff2c0b08e'),(40014,39053,'blocks_1_row_form_button_label',''),(40015,39053,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(40016,39053,'blocks_1_row_content_promotion_label','Up to 10% Off'),(40017,39053,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(40018,39053,'blocks_1_row_content_promotion_heading','For Event Attendees '),(40019,39053,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(40020,39053,'blocks_1_row_content_promotion_value','Up to 10% Off'),(40021,39053,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(40022,39053,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(40023,39053,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(40024,39053,'blocks_1_row_content_promotion',''),(40025,39053,'_blocks_1_row_content_promotion','field_6481eb3962882'),(40026,39053,'blocks_1_row_form_title','EMD UK Referral'),(40027,39053,'_blocks_1_row_form_title','field_64872db5127af'),(40028,39053,'blocks_2_acfe_flexible_toggle',''),(40029,39053,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(40030,39053,'blocks_2_acfe_flexible_layout_title','Logos'),(40031,39053,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(40032,39053,'blocks_2_options_theme','#ffffff'),(40033,39053,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(40034,39053,'blocks_2_options_format','grid'),(40035,39053,'_blocks_2_options_format','field_61782964ee971'),(40036,39053,'blocks_2_options',''),(40037,39053,'_blocks_2_options','field_61782954ee965'),(40038,39053,'blocks_2_logos','a:1:{i:0;s:5:\"38587\";}'),(40039,39053,'_blocks_2_logos','field_61782954ee96d'),(40040,39053,'blocks_2_title',''),(40041,39053,'_blocks_2_title','field_668fbfdc2daa1'),(40042,39053,'blocks_3_acfe_flexible_toggle',''),(40043,39053,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(40044,39053,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(40045,39053,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(40046,39053,'blocks_3_size','large'),(40047,39053,'_blocks_3_size','field_6487038f297c1'),(40048,39053,'blocks_3_row_content_title',''),(40049,39053,'_blocks_3_row_content_title','field_64870132a865d'),(40050,39053,'blocks_3_row_content_heading','Course Overview'),(40051,39053,'_blocks_3_row_content_heading','field_64870142a865e'),(40052,39053,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(40053,39053,'_blocks_3_row_content_text','field_64870148a865f'),(40054,39053,'blocks_3_row_content',''),(40055,39053,'_blocks_3_row_content','field_6487008ba865c'),(40056,39053,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(40057,39053,'_blocks_3_video_src','field_6193c4a98ec07'),(40058,39053,'blocks_3_video_thumbnail','38998'),(40059,39053,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(40060,39053,'blocks_4_acfe_flexible_toggle',''),(40061,39053,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(40062,39053,'blocks_4_acfe_flexible_layout_title','Partnership section'),(40063,39053,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(40064,39053,'blocks_4_options_theme','#ffffff'),(40065,39053,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(40066,39053,'blocks_4_options_reverse','0'),(40067,39053,'_blocks_4_options_reverse','field_61768049bb8ac'),(40068,39053,'blocks_4_options',''),(40069,39053,'_blocks_4_options','field_617682517c334'),(40070,39053,'blocks_4_split_5050_image','39051'),(40071,39053,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(40072,39053,'blocks_4_split_5050_video',''),(40073,39053,'_blocks_4_split_5050_video','field_6239f3160848a'),(40074,39053,'blocks_4_split_5050_content_title',''),(40075,39053,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(40076,39053,'blocks_4_split_5050_content_heading','Working in Partnership'),(40077,39053,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(40078,39053,'blocks_4_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(40079,39053,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(40080,39053,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(40081,39053,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(40082,39053,'blocks_4_split_5050_content_actions','1'),(40083,39053,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(40084,39053,'blocks_4_split_5050_content',''),(40085,39053,'_blocks_4_split_5050_content','field_61767afceb8ba'),(40086,39053,'blocks_5_acfe_flexible_toggle',''),(40087,39053,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(40088,39053,'blocks_5_acfe_flexible_layout_title','About Rachel'),(40089,39053,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(40090,39053,'blocks_5_options_theme','#ffffff'),(40091,39053,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(40092,39053,'blocks_5_options_reverse','1'),(40093,39053,'_blocks_5_options_reverse','field_61768049bb8ac'),(40094,39053,'blocks_5_options',''),(40095,39053,'_blocks_5_options','field_617682517c334'),(40096,39053,'blocks_5_split_5050_image','39052'),(40097,39053,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(40098,39053,'blocks_5_split_5050_video',''),(40099,39053,'_blocks_5_split_5050_video','field_6239f3160848a'),(40100,39053,'blocks_5_split_5050_content_title',''),(40101,39053,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(40102,39053,'blocks_5_split_5050_content_heading','Rachel France'),(40103,39053,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(40104,39053,'blocks_5_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(40105,39053,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(40106,39053,'blocks_5_split_5050_content_actions',''),(40107,39053,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(40108,39053,'blocks_5_split_5050_content',''),(40109,39053,'_blocks_5_split_5050_content','field_61767afceb8ba'),(40110,39053,'blocks_6_acfe_flexible_toggle',''),(40111,39053,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(40112,39053,'blocks_6_acfe_flexible_layout_title','Learn More Heading Text'),(40113,39053,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(40114,39053,'blocks_6_options_theme','#ffffff'),(40115,39053,'_blocks_6_options_theme','field_6176830e2ad17'),(40116,39053,'blocks_6_options',''),(40117,39053,'_blocks_6_options','field_6176830e2ad16'),(40118,39053,'blocks_6_text_block_heading','Learn more about the course'),(40119,39053,'_blocks_6_text_block_heading','field_617669d413097'),(40120,39053,'blocks_6_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(40121,39053,'_blocks_6_text_block_content','field_617669ec13098'),(40122,39053,'blocks_7_acfe_flexible_toggle',''),(40123,39053,'_blocks_7_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(40124,39053,'blocks_7_acfe_flexible_layout_title','Further course info, what\'s included'),(40125,39053,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(40126,39053,'blocks_7_options_theme','#ffffff'),(40127,39053,'_blocks_7_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(40128,39053,'blocks_7_options',''),(40129,39053,'_blocks_7_options','field_6177cfcd8140f'),(40130,39053,'blocks_7_tabs_0_tab_label','What\'s Included'),(40131,39053,'_blocks_7_tabs_0_tab_label','field_6177d0068141a'),(40132,39053,'blocks_7_tabs_0_tab_content_title',''),(40133,39053,'_blocks_7_tabs_0_tab_content_title','field_6177cfcd81414'),(40134,39053,'blocks_7_tabs_0_tab_content_heading','Define Your Skills'),(40135,39053,'_blocks_7_tabs_0_tab_content_heading','field_6177cfcd81415'),(40136,39053,'blocks_7_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(40137,39053,'_blocks_7_tabs_0_tab_content_text','field_6177cfcd81416'),(40138,39053,'blocks_7_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(40139,39053,'_blocks_7_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(40140,39053,'blocks_7_tabs_0_tab_content_actions','1'),(40141,39053,'_blocks_7_tabs_0_tab_content_actions','field_6177cfcd81417'),(40142,39053,'blocks_7_tabs_0_tab_content',''),(40143,39053,'_blocks_7_tabs_0_tab_content','field_6177cfcd81413'),(40144,39053,'blocks_7_tabs_0_tab_image','39009'),(40145,39053,'_blocks_7_tabs_0_tab_image','field_6177cfcd81412'),(40146,39053,'blocks_7_tabs_1_tab_label','What You\'ll Learn'),(40147,39053,'_blocks_7_tabs_1_tab_label','field_6177d0068141a'),(40148,39053,'blocks_7_tabs_1_tab_content_title',''),(40149,39053,'_blocks_7_tabs_1_tab_content_title','field_6177cfcd81414'),(40150,39053,'blocks_7_tabs_1_tab_content_heading','Included Learning'),(40151,39053,'_blocks_7_tabs_1_tab_content_heading','field_6177cfcd81415'),(40152,39053,'blocks_7_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(40153,39053,'_blocks_7_tabs_1_tab_content_text','field_6177cfcd81416'),(40154,39053,'blocks_7_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(40155,39053,'_blocks_7_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(40156,39053,'blocks_7_tabs_1_tab_content_actions','1'),(40157,39053,'_blocks_7_tabs_1_tab_content_actions','field_6177cfcd81417'),(40158,39053,'blocks_7_tabs_1_tab_content',''),(40159,39053,'_blocks_7_tabs_1_tab_content','field_6177cfcd81413'),(40160,39053,'blocks_7_tabs_1_tab_image','39010'),(40161,39053,'_blocks_7_tabs_1_tab_image','field_6177cfcd81412'),(40162,39053,'blocks_7_tabs','2'),(40163,39053,'_blocks_7_tabs','field_6177cff281419'),(40164,39053,'blocks_8_acfe_flexible_toggle',''),(40165,39053,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(40166,39053,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(40167,39053,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(40168,39053,'blocks_8_options_theme','#ffffff'),(40169,39053,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(40170,39053,'blocks_8_options_state','0'),(40171,39053,'_blocks_8_options_state','field_6239fcb7508c5'),(40172,39053,'blocks_8_options',''),(40173,39053,'_blocks_8_options','field_6177e2991ac44'),(40174,39053,'blocks_8_content_title',''),(40175,39053,'_blocks_8_content_title','field_64d237e8bb1e2'),(40176,39053,'blocks_8_content_heading','Frequently asked questions'),(40177,39053,'_blocks_8_content_heading','field_64d237e8bb1e3'),(40178,39053,'blocks_8_content_text',''),(40179,39053,'_blocks_8_content_text','field_64d237e8bb1e4'),(40180,39053,'blocks_8_content_actions',''),(40181,39053,'_blocks_8_content_actions','field_64d237e8bb1e5'),(40182,39053,'blocks_8_content_align','left'),(40183,39053,'_blocks_8_content_align','field_64d2443e6b6aa'),(40184,39053,'blocks_8_content',''),(40185,39053,'_blocks_8_content','field_64d237e8bb1e1'),(40186,39053,'blocks_8_accordion_content','faqs'),(40187,39053,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(40188,39053,'blocks_8_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(40189,39053,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(40190,39053,'blocks_8_actions',''),(40191,39053,'_blocks_8_actions','field_61a746a817f7a'),(40192,39053,'blocks_9_acfe_flexible_toggle',''),(40193,39053,'_blocks_9_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(40194,39053,'blocks_9_acfe_flexible_layout_title','Promo Panel'),(40195,39053,'_blocks_9_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(40196,39053,'blocks_9_options_alignment','center'),(40197,39053,'_blocks_9_options_alignment','field_61769449f5490'),(40198,39053,'blocks_9_options',''),(40199,39053,'_blocks_9_options','field_617693e1428f0'),(40200,39053,'blocks_9_promo_panel_image','39035'),(40201,39053,'_blocks_9_promo_panel_image','field_617693e1428f3'),(40202,39053,'blocks_9_promo_panel_content_heading','Ready to level up your fitness career ?'),(40203,39053,'_blocks_9_promo_panel_content_heading','field_617693e1428f6'),(40204,39053,'blocks_9_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(40205,39053,'_blocks_9_promo_panel_content_text','field_617693e1428f7'),(40206,39053,'blocks_9_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(40207,39053,'_blocks_9_promo_panel_content_actions_0_button','field_617693e1428f9'),(40208,39053,'blocks_9_promo_panel_content_actions','1'),(40209,39053,'_blocks_9_promo_panel_content_actions','field_617693e1428f8'),(40210,39053,'blocks_9_promo_panel_content',''),(40211,39053,'_blocks_9_promo_panel_content','field_617693e1428f4'),(40212,39043,'blocks_2_acfe_flexible_toggle',''),(40213,39043,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(40214,39043,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(40215,39043,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(40216,39043,'blocks_2_size','large'),(40217,39043,'_blocks_2_size','field_6487038f297c1'),(40218,39043,'blocks_2_row_content_title',''),(40219,39043,'_blocks_2_row_content_title','field_64870132a865d'),(40220,39043,'blocks_2_row_content_heading','Course Overview'),(40221,39043,'_blocks_2_row_content_heading','field_64870142a865e'),(40222,39043,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(40223,39043,'_blocks_2_row_content_text','field_64870148a865f'),(40224,39043,'blocks_2_row_content',''),(40225,39043,'_blocks_2_row_content','field_6487008ba865c'),(40226,39043,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(40227,39043,'_blocks_2_video_src','field_6193c4a98ec07'),(40228,39043,'blocks_2_video_thumbnail','38998'),(40229,39043,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(40358,39054,'hero_style','default'),(40359,39054,'_hero_style','field_62051d9dc5324'),(40360,39054,'hero_image_pos_x','right'),(40361,39054,'_hero_image_pos_x','field_62ec3d05390bb'),(40362,39054,'hero_image_pos_y','top'),(40363,39054,'_hero_image_pos_y','field_62ec3d05390bc'),(40364,39054,'hero_image_pos',''),(40365,39054,'_hero_image_pos','field_62ec3d05390ba'),(40366,39054,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(40367,39054,'_hero_title','field_617571fe285e8'),(40368,39054,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(40369,39054,'_hero_text','field_6175723c285e9'),(40370,39054,'hero_actions','1'),(40371,39054,'_hero_actions','field_61757270285ea'),(40372,39054,'hero_icon',''),(40373,39054,'_hero_icon','field_61a6182199d03'),(40374,39054,'fft_hide_from_listings','0'),(40375,39054,'_fft_hide_from_listings','field_61f1320446ab2'),(40376,39054,'fft_page_format','default'),(40377,39054,'_fft_page_format','field_61ae213f1f218'),(40378,39054,'fft_hide_nav','1'),(40379,39054,'_fft_hide_nav','field_635bd5e43527c'),(40380,39054,'fft_hide_header_call_to_action','0'),(40381,39054,'_fft_hide_header_call_to_action','field_635bd6723527d'),(40382,39054,'fft_page_sitemap','1'),(40383,39054,'_fft_page_sitemap','field_61af9b34e8181'),(40384,39054,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(40385,39054,'_blocks','field_6176696113096'),(40386,39054,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(40387,39054,'_hero_actions_0_button','field_61757281285eb'),(40388,39054,'_thumbnail_id','39047'),(40389,39054,'__thumbnail_id','field_617570855ddaf'),(40390,39054,'blocks_0_acfe_flexible_toggle',''),(40391,39054,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(40392,39054,'blocks_0_acfe_flexible_layout_title','Icons'),(40393,39054,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(40394,39054,'blocks_0_options_theme','#ffffff'),(40395,39054,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(40396,39054,'blocks_0_options_format','row'),(40397,39054,'_blocks_0_options_format','field_64bfde9a90690'),(40398,39054,'blocks_0_options',''),(40399,39054,'_blocks_0_options','field_64bfdd9b90684'),(40400,39054,'blocks_0_icon_row_items_0_icon','qualification.svg'),(40401,39054,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(40402,39054,'blocks_0_icon_row_items_0_label','Course Type'),(40403,39054,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(40404,39054,'blocks_0_icon_row_items_0_text','Blended Learning'),(40405,39054,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(40406,39054,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(40407,39054,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(40408,39054,'blocks_0_icon_row_items_1_label','Qualification'),(40409,39054,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(40410,39054,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(40411,39054,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(40412,39054,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(40413,39054,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(40414,39054,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(40415,39054,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(40416,39054,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(40417,39054,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(40418,39054,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(40419,39054,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(40420,39054,'blocks_0_icon_row_items_3_label','IBA Registered'),(40421,39054,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(40422,39054,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(40423,39054,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(40424,39054,'blocks_0_icon_row_items','4'),(40425,39054,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(40426,39054,'blocks_1_acfe_flexible_toggle',''),(40427,39054,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(40428,39054,'blocks_1_acfe_flexible_layout_title','Form'),(40429,39054,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(40430,39054,'blocks_1_row_content_format','promotion'),(40431,39054,'_blocks_1_row_content_format','field_6481ead962881'),(40432,39054,'blocks_1_row_content_title',''),(40433,39054,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(40434,39054,'blocks_1_row_content_heading',''),(40435,39054,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(40436,39054,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(40437,39054,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(40438,39054,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(40439,39054,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(40440,39054,'blocks_1_row_content_actions','1'),(40441,39054,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(40442,39054,'blocks_1_row_content',''),(40443,39054,'_blocks_1_row_content','field_61a0f5f5b3db0'),(40444,39054,'blocks_1_row_form',''),(40445,39054,'_blocks_1_row_form','field_61a4ff2c0b08e'),(40446,39054,'blocks_1_row_form_button_label',''),(40447,39054,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(40448,39054,'blocks_1_row_content_promotion_label','Up to 10% Off'),(40449,39054,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(40450,39054,'blocks_1_row_content_promotion_heading','For Event Attendees '),(40451,39054,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(40452,39054,'blocks_1_row_content_promotion_value','Up to 10% Off'),(40453,39054,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(40454,39054,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(40455,39054,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(40456,39054,'blocks_1_row_content_promotion',''),(40457,39054,'_blocks_1_row_content_promotion','field_6481eb3962882'),(40458,39054,'blocks_1_row_form_title','EMD UK Referral'),(40459,39054,'_blocks_1_row_form_title','field_64872db5127af'),(40460,39054,'blocks_4_acfe_flexible_toggle',''),(40461,39054,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(40462,39054,'blocks_4_acfe_flexible_layout_title','About Rachel'),(40463,39054,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(40464,39054,'blocks_4_options_theme','#ffffff'),(40465,39054,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(40466,39054,'blocks_4_options_reverse','1'),(40467,39054,'_blocks_4_options_reverse','field_61768049bb8ac'),(40468,39054,'blocks_4_options',''),(40469,39054,'_blocks_4_options','field_617682517c334'),(40470,39054,'blocks_4_split_5050_image','39052'),(40471,39054,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(40472,39054,'blocks_4_split_5050_video',''),(40473,39054,'_blocks_4_split_5050_video','field_6239f3160848a'),(40474,39054,'blocks_4_split_5050_content_title',''),(40475,39054,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(40476,39054,'blocks_4_split_5050_content_heading','Rachel France'),(40477,39054,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(40478,39054,'blocks_4_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(40479,39054,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(40480,39054,'blocks_4_split_5050_content_actions',''),(40481,39054,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(40482,39054,'blocks_4_split_5050_content',''),(40483,39054,'_blocks_4_split_5050_content','field_61767afceb8ba'),(40484,39054,'blocks_2_acfe_flexible_toggle',''),(40485,39054,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(40486,39054,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(40487,39054,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(40488,39054,'blocks_2_size','large'),(40489,39054,'_blocks_2_size','field_6487038f297c1'),(40490,39054,'blocks_2_row_content_title',''),(40491,39054,'_blocks_2_row_content_title','field_64870132a865d'),(40492,39054,'blocks_2_row_content_heading','Course Overview'),(40493,39054,'_blocks_2_row_content_heading','field_64870142a865e'),(40494,39054,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(40495,39054,'_blocks_2_row_content_text','field_64870148a865f'),(40496,39054,'blocks_2_row_content',''),(40497,39054,'_blocks_2_row_content','field_6487008ba865c'),(40498,39054,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(40499,39054,'_blocks_2_video_src','field_6193c4a98ec07'),(40500,39054,'blocks_2_video_thumbnail','38998'),(40501,39054,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(40502,39054,'blocks_3_acfe_flexible_toggle',''),(40503,39054,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(40504,39054,'blocks_3_acfe_flexible_layout_title','Partnership section'),(40505,39054,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(40506,39054,'blocks_3_options_theme','#ffffff'),(40507,39054,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(40508,39054,'blocks_3_options_reverse','0'),(40509,39054,'_blocks_3_options_reverse','field_61768049bb8ac'),(40510,39054,'blocks_3_options',''),(40511,39054,'_blocks_3_options','field_617682517c334'),(40512,39054,'blocks_3_split_5050_image','39051'),(40513,39054,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(40514,39054,'blocks_3_split_5050_video',''),(40515,39054,'_blocks_3_split_5050_video','field_6239f3160848a'),(40516,39054,'blocks_3_split_5050_content_title',''),(40517,39054,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(40518,39054,'blocks_3_split_5050_content_heading','Working in Partnership'),(40519,39054,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(40520,39054,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(40521,39054,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(40522,39054,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(40523,39054,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(40524,39054,'blocks_3_split_5050_content_actions','1'),(40525,39054,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(40526,39054,'blocks_3_split_5050_content',''),(40527,39054,'_blocks_3_split_5050_content','field_61767afceb8ba'),(40528,39054,'blocks_5_acfe_flexible_toggle',''),(40529,39054,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(40530,39054,'blocks_5_acfe_flexible_layout_title','Learn More Heading Text'),(40531,39054,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(40532,39054,'blocks_5_options_theme','#ffffff'),(40533,39054,'_blocks_5_options_theme','field_6176830e2ad17'),(40534,39054,'blocks_5_options',''),(40535,39054,'_blocks_5_options','field_6176830e2ad16'),(40536,39054,'blocks_5_text_block_heading','Learn more about the course'),(40537,39054,'_blocks_5_text_block_heading','field_617669d413097'),(40538,39054,'blocks_5_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(40539,39054,'_blocks_5_text_block_content','field_617669ec13098'),(40540,39054,'blocks_6_acfe_flexible_toggle',''),(40541,39054,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(40542,39054,'blocks_6_acfe_flexible_layout_title','Further course info, what\'s included'),(40543,39054,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(40544,39054,'blocks_6_options_theme','#ffffff'),(40545,39054,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(40546,39054,'blocks_6_options',''),(40547,39054,'_blocks_6_options','field_6177cfcd8140f'),(40548,39054,'blocks_6_tabs_0_tab_label','What\'s Included'),(40549,39054,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(40550,39054,'blocks_6_tabs_0_tab_content_title',''),(40551,39054,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(40552,39054,'blocks_6_tabs_0_tab_content_heading','Define Your Skills'),(40553,39054,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(40554,39054,'blocks_6_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(40555,39054,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(40556,39054,'blocks_6_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(40557,39054,'_blocks_6_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(40558,39054,'blocks_6_tabs_0_tab_content_actions','1'),(40559,39054,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(40560,39054,'blocks_6_tabs_0_tab_content',''),(40561,39054,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(40562,39054,'blocks_6_tabs_0_tab_image','39009'),(40563,39054,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(40564,39054,'blocks_6_tabs_1_tab_label','What You\'ll Learn'),(40565,39054,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(40566,39054,'blocks_6_tabs_1_tab_content_title',''),(40567,39054,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(40568,39054,'blocks_6_tabs_1_tab_content_heading','Included Learning'),(40569,39054,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(40570,39054,'blocks_6_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(40571,39054,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(40572,39054,'blocks_6_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(40573,39054,'_blocks_6_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(40574,39054,'blocks_6_tabs_1_tab_content_actions','1'),(40575,39054,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(40576,39054,'blocks_6_tabs_1_tab_content',''),(40577,39054,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(40578,39054,'blocks_6_tabs_1_tab_image','39010'),(40579,39054,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(40580,39054,'blocks_6_tabs','2'),(40581,39054,'_blocks_6_tabs','field_6177cff281419'),(40582,39054,'blocks_7_acfe_flexible_toggle',''),(40583,39054,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(40584,39054,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(40585,39054,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(40586,39054,'blocks_7_options_theme','#ffffff'),(40587,39054,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(40588,39054,'blocks_7_options_state','0'),(40589,39054,'_blocks_7_options_state','field_6239fcb7508c5'),(40590,39054,'blocks_7_options',''),(40591,39054,'_blocks_7_options','field_6177e2991ac44'),(40592,39054,'blocks_7_content_title',''),(40593,39054,'_blocks_7_content_title','field_64d237e8bb1e2'),(40594,39054,'blocks_7_content_heading','Frequently asked questions'),(40595,39054,'_blocks_7_content_heading','field_64d237e8bb1e3'),(40596,39054,'blocks_7_content_text',''),(40597,39054,'_blocks_7_content_text','field_64d237e8bb1e4'),(40598,39054,'blocks_7_content_actions',''),(40599,39054,'_blocks_7_content_actions','field_64d237e8bb1e5'),(40600,39054,'blocks_7_content_align','left'),(40601,39054,'_blocks_7_content_align','field_64d2443e6b6aa'),(40602,39054,'blocks_7_content',''),(40603,39054,'_blocks_7_content','field_64d237e8bb1e1'),(40604,39054,'blocks_7_accordion_content','faqs'),(40605,39054,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(40606,39054,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(40607,39054,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(40608,39054,'blocks_7_actions',''),(40609,39054,'_blocks_7_actions','field_61a746a817f7a'),(40610,39054,'blocks_8_acfe_flexible_toggle',''),(40611,39054,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(40612,39054,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(40613,39054,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(40614,39054,'blocks_8_options_alignment','center'),(40615,39054,'_blocks_8_options_alignment','field_61769449f5490'),(40616,39054,'blocks_8_options',''),(40617,39054,'_blocks_8_options','field_617693e1428f0'),(40618,39054,'blocks_8_promo_panel_image','39035'),(40619,39054,'_blocks_8_promo_panel_image','field_617693e1428f3'),(40620,39054,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(40621,39054,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(40622,39054,'blocks_8_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(40623,39054,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(40624,39054,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(40625,39054,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(40626,39054,'blocks_8_promo_panel_content_actions','1'),(40627,39054,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(40628,39054,'blocks_8_promo_panel_content',''),(40629,39054,'_blocks_8_promo_panel_content','field_617693e1428f4'),(40630,39055,'hero_style','default'),(40631,39055,'_hero_style','field_62051d9dc5324'),(40632,39055,'_thumbnail_id','39047'),(40633,39055,'__thumbnail_id','field_617570855ddaf'),(40634,39055,'hero_image_pos_x','right'),(40635,39055,'_hero_image_pos_x','field_62ec3d05390bb'),(40636,39055,'hero_image_pos_y','top'),(40637,39055,'_hero_image_pos_y','field_62ec3d05390bc'),(40638,39055,'hero_image_pos',''),(40639,39055,'_hero_image_pos','field_62ec3d05390ba'),(40640,39055,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(40641,39055,'_hero_title','field_617571fe285e8'),(40642,39055,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(40643,39055,'_hero_text','field_6175723c285e9'),(40644,39055,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(40645,39055,'_hero_actions_0_button','field_61757281285eb'),(40646,39055,'hero_actions','1'),(40647,39055,'_hero_actions','field_61757270285ea'),(40648,39055,'hero_icon',''),(40649,39055,'_hero_icon','field_61a6182199d03'),(40650,39055,'fft_hide_from_listings','0'),(40651,39055,'_fft_hide_from_listings','field_61f1320446ab2'),(40652,39055,'fft_page_format','default'),(40653,39055,'_fft_page_format','field_61ae213f1f218'),(40654,39055,'fft_hide_nav','1'),(40655,39055,'_fft_hide_nav','field_635bd5e43527c'),(40656,39055,'fft_hide_header_call_to_action','0'),(40657,39055,'_fft_hide_header_call_to_action','field_635bd6723527d'),(40658,39055,'fft_page_sitemap','1'),(40659,39055,'_fft_page_sitemap','field_61af9b34e8181'),(40660,39055,'blocks_0_acfe_flexible_toggle',''),(40661,39055,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(40662,39055,'blocks_0_acfe_flexible_layout_title','Icons'),(40663,39055,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(40664,39055,'blocks_0_options_theme','#ffffff'),(40665,39055,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(40666,39055,'blocks_0_options_format','row'),(40667,39055,'_blocks_0_options_format','field_64bfde9a90690'),(40668,39055,'blocks_0_options',''),(40669,39055,'_blocks_0_options','field_64bfdd9b90684'),(40670,39055,'blocks_0_icon_row_items_0_icon','qualification.svg'),(40671,39055,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(40672,39055,'blocks_0_icon_row_items_0_label','Course Type'),(40673,39055,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(40674,39055,'blocks_0_icon_row_items_0_text','Blended Learning'),(40675,39055,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(40676,39055,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(40677,39055,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(40678,39055,'blocks_0_icon_row_items_1_label','Qualification'),(40679,39055,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(40680,39055,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(40681,39055,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(40682,39055,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(40683,39055,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(40684,39055,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(40685,39055,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(40686,39055,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(40687,39055,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(40688,39055,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(40689,39055,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(40690,39055,'blocks_0_icon_row_items_3_label','IBA Registered'),(40691,39055,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(40692,39055,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(40693,39055,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(40694,39055,'blocks_0_icon_row_items','4'),(40695,39055,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(40696,39055,'blocks_1_acfe_flexible_toggle',''),(40697,39055,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(40698,39055,'blocks_1_acfe_flexible_layout_title','Form'),(40699,39055,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(40700,39055,'blocks_1_row_content_format','promotion'),(40701,39055,'_blocks_1_row_content_format','field_6481ead962881'),(40702,39055,'blocks_1_row_content_promotion_label','Up to 10% Off'),(40703,39055,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(40704,39055,'blocks_1_row_content_promotion_heading','For Event Attendees '),(40705,39055,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(40706,39055,'blocks_1_row_content_promotion_value','Up to 10% Off'),(40707,39055,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(40708,39055,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(40709,39055,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(40710,39055,'blocks_1_row_content_promotion',''),(40711,39055,'_blocks_1_row_content_promotion','field_6481eb3962882'),(40712,39055,'blocks_1_row_form_title','EMD UK Referral'),(40713,39055,'_blocks_1_row_form_title','field_64872db5127af'),(40714,39055,'blocks_1_row_form',''),(40715,39055,'_blocks_1_row_form','field_61a4ff2c0b08e'),(40716,39055,'blocks_1_row_form_button_label',''),(40717,39055,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(40718,39055,'blocks_2_acfe_flexible_toggle',''),(40719,39055,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(40720,39055,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(40721,39055,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(40722,39055,'blocks_2_size','large'),(40723,39055,'_blocks_2_size','field_6487038f297c1'),(40724,39055,'blocks_2_row_content_title',''),(40725,39055,'_blocks_2_row_content_title','field_64870132a865d'),(40726,39055,'blocks_2_row_content_heading','Course Overview'),(40727,39055,'_blocks_2_row_content_heading','field_64870142a865e'),(40728,39055,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(40729,39055,'_blocks_2_row_content_text','field_64870148a865f'),(40730,39055,'blocks_2_row_content',''),(40731,39055,'_blocks_2_row_content','field_6487008ba865c'),(40732,39055,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(40733,39055,'_blocks_2_video_src','field_6193c4a98ec07'),(40734,39055,'blocks_2_video_thumbnail','38998'),(40735,39055,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(40736,39055,'blocks_3_acfe_flexible_toggle',''),(40737,39055,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(40738,39055,'blocks_3_acfe_flexible_layout_title','Partnership section'),(40739,39055,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(40740,39055,'blocks_3_options_theme','#ffffff'),(40741,39055,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(40742,39055,'blocks_3_options_reverse','0'),(40743,39055,'_blocks_3_options_reverse','field_61768049bb8ac'),(40744,39055,'blocks_3_options',''),(40745,39055,'_blocks_3_options','field_617682517c334'),(40746,39055,'blocks_3_split_5050_image','39051'),(40747,39055,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(40748,39055,'blocks_3_split_5050_video',''),(40749,39055,'_blocks_3_split_5050_video','field_6239f3160848a'),(40750,39055,'blocks_3_split_5050_content_title',''),(40751,39055,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(40752,39055,'blocks_3_split_5050_content_heading','Working in Partnership'),(40753,39055,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(40754,39055,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(40755,39055,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(40756,39055,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(40757,39055,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(40758,39055,'blocks_3_split_5050_content_actions','1'),(40759,39055,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(40760,39055,'blocks_3_split_5050_content',''),(40761,39055,'_blocks_3_split_5050_content','field_61767afceb8ba'),(40762,39055,'blocks_4_acfe_flexible_toggle',''),(40763,39055,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(40764,39055,'blocks_4_acfe_flexible_layout_title','About Rachel'),(40765,39055,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(40766,39055,'blocks_4_options_theme','#ffffff'),(40767,39055,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(40768,39055,'blocks_4_options_reverse','1'),(40769,39055,'_blocks_4_options_reverse','field_61768049bb8ac'),(40770,39055,'blocks_4_options',''),(40771,39055,'_blocks_4_options','field_617682517c334'),(40772,39055,'blocks_4_split_5050_image','39052'),(40773,39055,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(40774,39055,'blocks_4_split_5050_video',''),(40775,39055,'_blocks_4_split_5050_video','field_6239f3160848a'),(40776,39055,'blocks_4_split_5050_content_title',''),(40777,39055,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(40778,39055,'blocks_4_split_5050_content_heading','Rachel France'),(40779,39055,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(40780,39055,'blocks_4_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(40781,39055,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(40782,39055,'blocks_4_split_5050_content_actions',''),(40783,39055,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(40784,39055,'blocks_4_split_5050_content',''),(40785,39055,'_blocks_4_split_5050_content','field_61767afceb8ba'),(40786,39055,'blocks_5_acfe_flexible_toggle',''),(40787,39055,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(40788,39055,'blocks_5_acfe_flexible_layout_title','Learn More Heading Text'),(40789,39055,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(40790,39055,'blocks_5_options_theme','#ffffff'),(40791,39055,'_blocks_5_options_theme','field_6176830e2ad17'),(40792,39055,'blocks_5_options',''),(40793,39055,'_blocks_5_options','field_6176830e2ad16'),(40794,39055,'blocks_5_text_block_heading','Learn more about the course'),(40795,39055,'_blocks_5_text_block_heading','field_617669d413097'),(40796,39055,'blocks_5_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(40797,39055,'_blocks_5_text_block_content','field_617669ec13098'),(40798,39055,'blocks_6_acfe_flexible_toggle',''),(40799,39055,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(40800,39055,'blocks_6_acfe_flexible_layout_title','Further course info, what\'s included'),(40801,39055,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(40802,39055,'blocks_6_options_theme','#ffffff'),(40803,39055,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(40804,39055,'blocks_6_options',''),(40805,39055,'_blocks_6_options','field_6177cfcd8140f'),(40806,39055,'blocks_6_tabs_0_tab_label','What\'s Included'),(40807,39055,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(40808,39055,'blocks_6_tabs_0_tab_content_title',''),(40809,39055,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(40810,39055,'blocks_6_tabs_0_tab_content_heading','Define Your Skills'),(40811,39055,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(40812,39055,'blocks_6_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(40813,39055,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(40814,39055,'blocks_6_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(40815,39055,'_blocks_6_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(40816,39055,'blocks_6_tabs_0_tab_content_actions','1'),(40817,39055,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(40818,39055,'blocks_6_tabs_0_tab_content',''),(40819,39055,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(40820,39055,'blocks_6_tabs_0_tab_image','39009'),(40821,39055,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(40822,39055,'blocks_6_tabs_1_tab_label','What You\'ll Learn'),(40823,39055,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(40824,39055,'blocks_6_tabs_1_tab_content_title',''),(40825,39055,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(40826,39055,'blocks_6_tabs_1_tab_content_heading','Included Learning'),(40827,39055,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(40828,39055,'blocks_6_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(40829,39055,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(40830,39055,'blocks_6_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(40831,39055,'_blocks_6_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(40832,39055,'blocks_6_tabs_1_tab_content_actions','1'),(40833,39055,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(40834,39055,'blocks_6_tabs_1_tab_content',''),(40835,39055,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(40836,39055,'blocks_6_tabs_1_tab_image','39010'),(40837,39055,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(40838,39055,'blocks_6_tabs','2'),(40839,39055,'_blocks_6_tabs','field_6177cff281419'),(40840,39055,'blocks_7_acfe_flexible_toggle',''),(40841,39055,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(40842,39055,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(40843,39055,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(40844,39055,'blocks_7_options_theme','#ffffff'),(40845,39055,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(40846,39055,'blocks_7_options_state','0'),(40847,39055,'_blocks_7_options_state','field_6239fcb7508c5'),(40848,39055,'blocks_7_options',''),(40849,39055,'_blocks_7_options','field_6177e2991ac44'),(40850,39055,'blocks_7_content_title',''),(40851,39055,'_blocks_7_content_title','field_64d237e8bb1e2'),(40852,39055,'blocks_7_content_heading','Frequently asked questions'),(40853,39055,'_blocks_7_content_heading','field_64d237e8bb1e3'),(40854,39055,'blocks_7_content_text',''),(40855,39055,'_blocks_7_content_text','field_64d237e8bb1e4'),(40856,39055,'blocks_7_content_actions',''),(40857,39055,'_blocks_7_content_actions','field_64d237e8bb1e5'),(40858,39055,'blocks_7_content_align','left'),(40859,39055,'_blocks_7_content_align','field_64d2443e6b6aa'),(40860,39055,'blocks_7_content',''),(40861,39055,'_blocks_7_content','field_64d237e8bb1e1'),(40862,39055,'blocks_7_accordion_content','faqs'),(40863,39055,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(40864,39055,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(40865,39055,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(40866,39055,'blocks_7_actions',''),(40867,39055,'_blocks_7_actions','field_61a746a817f7a'),(40868,39055,'blocks_8_acfe_flexible_toggle',''),(40869,39055,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(40870,39055,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(40871,39055,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(40872,39055,'blocks_8_options_alignment','center'),(40873,39055,'_blocks_8_options_alignment','field_61769449f5490'),(40874,39055,'blocks_8_options',''),(40875,39055,'_blocks_8_options','field_617693e1428f0'),(40876,39055,'blocks_8_promo_panel_image','39035'),(40877,39055,'_blocks_8_promo_panel_image','field_617693e1428f3'),(40878,39055,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(40879,39055,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(40880,39055,'blocks_8_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(40881,39055,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(40882,39055,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(40883,39055,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(40884,39055,'blocks_8_promo_panel_content_actions','1'),(40885,39055,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(40886,39055,'blocks_8_promo_panel_content',''),(40887,39055,'_blocks_8_promo_panel_content','field_617693e1428f4'),(40888,39055,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(40889,39055,'_blocks','field_6176696113096'),(40890,39055,'blocks_1_row_content_title',''),(40891,39055,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(40892,39055,'blocks_1_row_content_heading',''),(40893,39055,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(40894,39055,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(40895,39055,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(40896,39055,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(40897,39055,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(40898,39055,'blocks_1_row_content_actions','1'),(40899,39055,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(40900,39055,'blocks_1_row_content',''),(40901,39055,'_blocks_1_row_content','field_61a0f5f5b3db0'),(40980,39056,'hero_style','default'),(40981,39056,'_hero_style','field_62051d9dc5324'),(40982,39056,'hero_image_pos_x','right'),(40983,39056,'_hero_image_pos_x','field_62ec3d05390bb'),(40984,39056,'hero_image_pos_y','top'),(40985,39056,'_hero_image_pos_y','field_62ec3d05390bc'),(40986,39056,'hero_image_pos',''),(40987,39056,'_hero_image_pos','field_62ec3d05390ba'),(40988,39056,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(40989,39056,'_hero_title','field_617571fe285e8'),(40990,39056,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(40991,39056,'_hero_text','field_6175723c285e9'),(40992,39056,'hero_actions','1'),(40993,39056,'_hero_actions','field_61757270285ea'),(40994,39056,'hero_icon',''),(40995,39056,'_hero_icon','field_61a6182199d03'),(40996,39056,'fft_hide_from_listings','0'),(40997,39056,'_fft_hide_from_listings','field_61f1320446ab2'),(40998,39056,'fft_page_format','default'),(40999,39056,'_fft_page_format','field_61ae213f1f218'),(41000,39056,'fft_hide_nav','1'),(41001,39056,'_fft_hide_nav','field_635bd5e43527c'),(41002,39056,'fft_hide_header_call_to_action','0'),(41003,39056,'_fft_hide_header_call_to_action','field_635bd6723527d'),(41004,39056,'fft_page_sitemap','1'),(41005,39056,'_fft_page_sitemap','field_61af9b34e8181'),(41006,39056,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(41007,39056,'_blocks','field_6176696113096'),(41008,39056,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(41009,39056,'_hero_actions_0_button','field_61757281285eb'),(41010,39056,'_thumbnail_id','39047'),(41011,39056,'__thumbnail_id','field_617570855ddaf'),(41012,39056,'blocks_0_acfe_flexible_toggle',''),(41013,39056,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(41014,39056,'blocks_0_acfe_flexible_layout_title','Icons'),(41015,39056,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(41016,39056,'blocks_0_options_theme','#ffffff'),(41017,39056,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(41018,39056,'blocks_0_options_format','row'),(41019,39056,'_blocks_0_options_format','field_64bfde9a90690'),(41020,39056,'blocks_0_options',''),(41021,39056,'_blocks_0_options','field_64bfdd9b90684'),(41022,39056,'blocks_0_icon_row_items_0_icon','qualification.svg'),(41023,39056,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(41024,39056,'blocks_0_icon_row_items_0_label','Course Type'),(41025,39056,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(41026,39056,'blocks_0_icon_row_items_0_text','Blended Learning'),(41027,39056,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(41028,39056,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(41029,39056,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(41030,39056,'blocks_0_icon_row_items_1_label','Qualification'),(41031,39056,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(41032,39056,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(41033,39056,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(41034,39056,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(41035,39056,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(41036,39056,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(41037,39056,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(41038,39056,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(41039,39056,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(41040,39056,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(41041,39056,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(41042,39056,'blocks_0_icon_row_items_3_label','IBA Registered'),(41043,39056,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(41044,39056,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(41045,39056,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(41046,39056,'blocks_0_icon_row_items','4'),(41047,39056,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(41048,39056,'blocks_1_acfe_flexible_toggle',''),(41049,39056,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(41050,39056,'blocks_1_acfe_flexible_layout_title','Form'),(41051,39056,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(41052,39056,'blocks_1_row_content_format','promotion'),(41053,39056,'_blocks_1_row_content_format','field_6481ead962881'),(41054,39056,'blocks_1_row_content_title',''),(41055,39056,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(41056,39056,'blocks_1_row_content_heading',''),(41057,39056,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(41058,39056,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(41059,39056,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(41060,39056,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(41061,39056,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(41062,39056,'blocks_1_row_content_actions','1'),(41063,39056,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(41064,39056,'blocks_1_row_content',''),(41065,39056,'_blocks_1_row_content','field_61a0f5f5b3db0'),(41066,39056,'blocks_1_row_form',''),(41067,39056,'_blocks_1_row_form','field_61a4ff2c0b08e'),(41068,39056,'blocks_1_row_form_button_label',''),(41069,39056,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(41070,39056,'blocks_1_row_content_promotion_label','Up to 10% Off'),(41071,39056,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(41072,39056,'blocks_1_row_content_promotion_heading','For Event Attendees '),(41073,39056,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(41074,39056,'blocks_1_row_content_promotion_value','Up to 10% Off'),(41075,39056,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(41076,39056,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(41077,39056,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(41078,39056,'blocks_1_row_content_promotion',''),(41079,39056,'_blocks_1_row_content_promotion','field_6481eb3962882'),(41080,39056,'blocks_1_row_form_title','EMD UK Referral'),(41081,39056,'_blocks_1_row_form_title','field_64872db5127af'),(41082,39056,'blocks_2_acfe_flexible_toggle',''),(41083,39056,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(41084,39056,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(41085,39056,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(41086,39056,'blocks_2_size','large'),(41087,39056,'_blocks_2_size','field_6487038f297c1'),(41088,39056,'blocks_2_row_content_title',''),(41089,39056,'_blocks_2_row_content_title','field_64870132a865d'),(41090,39056,'blocks_2_row_content_heading','Course Overview'),(41091,39056,'_blocks_2_row_content_heading','field_64870142a865e'),(41092,39056,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(41093,39056,'_blocks_2_row_content_text','field_64870148a865f'),(41094,39056,'blocks_2_row_content',''),(41095,39056,'_blocks_2_row_content','field_6487008ba865c'),(41096,39056,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(41097,39056,'_blocks_2_video_src','field_6193c4a98ec07'),(41098,39056,'blocks_2_video_thumbnail','38998'),(41099,39056,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(41100,39056,'blocks_3_acfe_flexible_toggle',''),(41101,39056,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(41102,39056,'blocks_3_acfe_flexible_layout_title','Partnership section'),(41103,39056,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(41104,39056,'blocks_3_options_theme','#ffffff'),(41105,39056,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(41106,39056,'blocks_3_options_reverse','0'),(41107,39056,'_blocks_3_options_reverse','field_61768049bb8ac'),(41108,39056,'blocks_3_options',''),(41109,39056,'_blocks_3_options','field_617682517c334'),(41110,39056,'blocks_3_split_5050_image','39051'),(41111,39056,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(41112,39056,'blocks_3_split_5050_video',''),(41113,39056,'_blocks_3_split_5050_video','field_6239f3160848a'),(41114,39056,'blocks_3_split_5050_content_title',''),(41115,39056,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(41116,39056,'blocks_3_split_5050_content_heading','Working in Partnership'),(41117,39056,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(41118,39056,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(41119,39056,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(41120,39056,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(41121,39056,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(41122,39056,'blocks_3_split_5050_content_actions','1'),(41123,39056,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(41124,39056,'blocks_3_split_5050_content',''),(41125,39056,'_blocks_3_split_5050_content','field_61767afceb8ba'),(41126,39056,'blocks_7_acfe_flexible_toggle',''),(41127,39056,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(41128,39056,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(41129,39056,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(41130,39056,'blocks_7_options_theme','#ffffff'),(41131,39056,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(41132,39056,'blocks_7_options_state','0'),(41133,39056,'_blocks_7_options_state','field_6239fcb7508c5'),(41134,39056,'blocks_7_options',''),(41135,39056,'_blocks_7_options','field_6177e2991ac44'),(41136,39056,'blocks_7_content_title',''),(41137,39056,'_blocks_7_content_title','field_64d237e8bb1e2'),(41138,39056,'blocks_7_content_heading','Frequently asked questions'),(41139,39056,'_blocks_7_content_heading','field_64d237e8bb1e3'),(41140,39056,'blocks_7_content_text',''),(41141,39056,'_blocks_7_content_text','field_64d237e8bb1e4'),(41142,39056,'blocks_7_content_actions',''),(41143,39056,'_blocks_7_content_actions','field_64d237e8bb1e5'),(41144,39056,'blocks_7_content_align','left'),(41145,39056,'_blocks_7_content_align','field_64d2443e6b6aa'),(41146,39056,'blocks_7_content',''),(41147,39056,'_blocks_7_content','field_64d237e8bb1e1'),(41148,39056,'blocks_7_accordion_content','faqs'),(41149,39056,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(41150,39056,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(41151,39056,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(41152,39056,'blocks_7_actions',''),(41153,39056,'_blocks_7_actions','field_61a746a817f7a'),(41154,39056,'blocks_8_acfe_flexible_toggle',''),(41155,39056,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(41156,39056,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(41157,39056,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(41158,39056,'blocks_8_options_alignment','center'),(41159,39056,'_blocks_8_options_alignment','field_61769449f5490'),(41160,39056,'blocks_8_options',''),(41161,39056,'_blocks_8_options','field_617693e1428f0'),(41162,39056,'blocks_8_promo_panel_image','39035'),(41163,39056,'_blocks_8_promo_panel_image','field_617693e1428f3'),(41164,39056,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(41165,39056,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(41166,39056,'blocks_8_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(41167,39056,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(41168,39056,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(41169,39056,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(41170,39056,'blocks_8_promo_panel_content_actions','1'),(41171,39056,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(41172,39056,'blocks_8_promo_panel_content',''),(41173,39056,'_blocks_8_promo_panel_content','field_617693e1428f4'),(41174,39056,'blocks_4_acfe_flexible_toggle',''),(41175,39056,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(41176,39056,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(41177,39056,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(41178,39056,'blocks_4_options_theme','#ffffff'),(41179,39056,'_blocks_4_options_theme','field_6176830e2ad17'),(41180,39056,'blocks_4_options',''),(41181,39056,'_blocks_4_options','field_6176830e2ad16'),(41182,39056,'blocks_4_text_block_heading','Learn more about the course'),(41183,39056,'_blocks_4_text_block_heading','field_617669d413097'),(41184,39056,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(41185,39056,'_blocks_4_text_block_content','field_617669ec13098'),(41186,39056,'blocks_5_acfe_flexible_toggle',''),(41187,39056,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(41188,39056,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(41189,39056,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(41190,39056,'blocks_5_options_theme','#ffffff'),(41191,39056,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(41192,39056,'blocks_5_options',''),(41193,39056,'_blocks_5_options','field_6177cfcd8140f'),(41194,39056,'blocks_5_tabs_0_tab_label','What\'s Included'),(41195,39056,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(41196,39056,'blocks_5_tabs_0_tab_content_title',''),(41197,39056,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(41198,39056,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(41199,39056,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(41200,39056,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(41201,39056,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(41202,39056,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(41203,39056,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(41204,39056,'blocks_5_tabs_0_tab_content_actions','1'),(41205,39056,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(41206,39056,'blocks_5_tabs_0_tab_content',''),(41207,39056,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(41208,39056,'blocks_5_tabs_0_tab_image','39009'),(41209,39056,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(41210,39056,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(41211,39056,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(41212,39056,'blocks_5_tabs_1_tab_content_title',''),(41213,39056,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(41214,39056,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(41215,39056,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(41216,39056,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(41217,39056,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(41218,39056,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(41219,39056,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(41220,39056,'blocks_5_tabs_1_tab_content_actions','1'),(41221,39056,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(41222,39056,'blocks_5_tabs_1_tab_content',''),(41223,39056,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(41224,39056,'blocks_5_tabs_1_tab_image','39010'),(41225,39056,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(41226,39056,'blocks_5_tabs','2'),(41227,39056,'_blocks_5_tabs','field_6177cff281419'),(41228,39056,'blocks_6_acfe_flexible_toggle',''),(41229,39056,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(41230,39056,'blocks_6_acfe_flexible_layout_title','About Rachel'),(41231,39056,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(41232,39056,'blocks_6_options_theme','#ffffff'),(41233,39056,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(41234,39056,'blocks_6_options_reverse','1'),(41235,39056,'_blocks_6_options_reverse','field_61768049bb8ac'),(41236,39056,'blocks_6_options',''),(41237,39056,'_blocks_6_options','field_617682517c334'),(41238,39056,'blocks_6_split_5050_image','39052'),(41239,39056,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(41240,39056,'blocks_6_split_5050_video',''),(41241,39056,'_blocks_6_split_5050_video','field_6239f3160848a'),(41242,39056,'blocks_6_split_5050_content_title',''),(41243,39056,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(41244,39056,'blocks_6_split_5050_content_heading','Rachel France'),(41245,39056,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(41246,39056,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(41247,39056,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(41248,39056,'blocks_6_split_5050_content_actions',''),(41249,39056,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(41250,39056,'blocks_6_split_5050_content',''),(41251,39056,'_blocks_6_split_5050_content','field_61767afceb8ba'),(41252,39057,'hero_style','default'),(41253,39057,'_hero_style','field_62051d9dc5324'),(41254,39057,'hero_image_pos_x','right'),(41255,39057,'_hero_image_pos_x','field_62ec3d05390bb'),(41256,39057,'hero_image_pos_y','top'),(41257,39057,'_hero_image_pos_y','field_62ec3d05390bc'),(41258,39057,'hero_image_pos',''),(41259,39057,'_hero_image_pos','field_62ec3d05390ba'),(41260,39057,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(41261,39057,'_hero_title','field_617571fe285e8'),(41262,39057,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(41263,39057,'_hero_text','field_6175723c285e9'),(41264,39057,'hero_actions','1'),(41265,39057,'_hero_actions','field_61757270285ea'),(41266,39057,'hero_icon',''),(41267,39057,'_hero_icon','field_61a6182199d03'),(41268,39057,'fft_hide_from_listings','0'),(41269,39057,'_fft_hide_from_listings','field_61f1320446ab2'),(41270,39057,'fft_page_format','default'),(41271,39057,'_fft_page_format','field_61ae213f1f218'),(41272,39057,'fft_hide_nav','1'),(41273,39057,'_fft_hide_nav','field_635bd5e43527c'),(41274,39057,'fft_hide_header_call_to_action','0'),(41275,39057,'_fft_hide_header_call_to_action','field_635bd6723527d'),(41276,39057,'fft_page_sitemap','1'),(41277,39057,'_fft_page_sitemap','field_61af9b34e8181'),(41278,39057,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(41279,39057,'_blocks','field_6176696113096'),(41280,39057,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(41281,39057,'_hero_actions_0_button','field_61757281285eb'),(41282,39057,'_thumbnail_id','39047'),(41283,39057,'__thumbnail_id','field_617570855ddaf'),(41284,39057,'blocks_0_acfe_flexible_toggle',''),(41285,39057,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(41286,39057,'blocks_0_acfe_flexible_layout_title','Icons'),(41287,39057,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(41288,39057,'blocks_0_options_theme','#ffffff'),(41289,39057,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(41290,39057,'blocks_0_options_format','row'),(41291,39057,'_blocks_0_options_format','field_64bfde9a90690'),(41292,39057,'blocks_0_options',''),(41293,39057,'_blocks_0_options','field_64bfdd9b90684'),(41294,39057,'blocks_0_icon_row_items_0_icon','qualification.svg'),(41295,39057,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(41296,39057,'blocks_0_icon_row_items_0_label','Course Type'),(41297,39057,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(41298,39057,'blocks_0_icon_row_items_0_text','Blended Learning'),(41299,39057,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(41300,39057,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(41301,39057,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(41302,39057,'blocks_0_icon_row_items_1_label','Qualification'),(41303,39057,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(41304,39057,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(41305,39057,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(41306,39057,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(41307,39057,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(41308,39057,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(41309,39057,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(41310,39057,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(41311,39057,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(41312,39057,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(41313,39057,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(41314,39057,'blocks_0_icon_row_items_3_label','IBA Registered'),(41315,39057,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(41316,39057,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(41317,39057,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(41318,39057,'blocks_0_icon_row_items','4'),(41319,39057,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(41320,39057,'blocks_1_acfe_flexible_toggle',''),(41321,39057,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(41322,39057,'blocks_1_acfe_flexible_layout_title','Form'),(41323,39057,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(41324,39057,'blocks_1_row_content_format','promotion'),(41325,39057,'_blocks_1_row_content_format','field_6481ead962881'),(41326,39057,'blocks_1_row_content_title',''),(41327,39057,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(41328,39057,'blocks_1_row_content_heading',''),(41329,39057,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(41330,39057,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(41331,39057,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(41332,39057,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(41333,39057,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(41334,39057,'blocks_1_row_content_actions','1'),(41335,39057,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(41336,39057,'blocks_1_row_content',''),(41337,39057,'_blocks_1_row_content','field_61a0f5f5b3db0'),(41338,39057,'blocks_1_row_form',''),(41339,39057,'_blocks_1_row_form','field_61a4ff2c0b08e'),(41340,39057,'blocks_1_row_form_button_label',''),(41341,39057,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(41342,39057,'blocks_1_row_content_promotion_label','Up to 10% Off'),(41343,39057,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(41344,39057,'blocks_1_row_content_promotion_heading','For Event Attendees '),(41345,39057,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(41346,39057,'blocks_1_row_content_promotion_value','Up to 10% Off'),(41347,39057,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(41348,39057,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(41349,39057,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(41350,39057,'blocks_1_row_content_promotion',''),(41351,39057,'_blocks_1_row_content_promotion','field_6481eb3962882'),(41352,39057,'blocks_1_row_form_title','EMD UK Referral'),(41353,39057,'_blocks_1_row_form_title','field_64872db5127af'),(41354,39057,'blocks_2_acfe_flexible_toggle',''),(41355,39057,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(41356,39057,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(41357,39057,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(41358,39057,'blocks_2_size','large'),(41359,39057,'_blocks_2_size','field_6487038f297c1'),(41360,39057,'blocks_2_row_content_title',''),(41361,39057,'_blocks_2_row_content_title','field_64870132a865d'),(41362,39057,'blocks_2_row_content_heading','Course Overview'),(41363,39057,'_blocks_2_row_content_heading','field_64870142a865e'),(41364,39057,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(41365,39057,'_blocks_2_row_content_text','field_64870148a865f'),(41366,39057,'blocks_2_row_content',''),(41367,39057,'_blocks_2_row_content','field_6487008ba865c'),(41368,39057,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(41369,39057,'_blocks_2_video_src','field_6193c4a98ec07'),(41370,39057,'blocks_2_video_thumbnail','38998'),(41371,39057,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(41372,39057,'blocks_3_acfe_flexible_toggle',''),(41373,39057,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(41374,39057,'blocks_3_acfe_flexible_layout_title','Partnership section'),(41375,39057,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(41376,39057,'blocks_3_options_theme','#ffffff'),(41377,39057,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(41378,39057,'blocks_3_options_reverse','0'),(41379,39057,'_blocks_3_options_reverse','field_61768049bb8ac'),(41380,39057,'blocks_3_options',''),(41381,39057,'_blocks_3_options','field_617682517c334'),(41382,39057,'blocks_3_split_5050_image','39051'),(41383,39057,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(41384,39057,'blocks_3_split_5050_video',''),(41385,39057,'_blocks_3_split_5050_video','field_6239f3160848a'),(41386,39057,'blocks_3_split_5050_content_title',''),(41387,39057,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(41388,39057,'blocks_3_split_5050_content_heading','Working in Partnership'),(41389,39057,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(41390,39057,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(41391,39057,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(41392,39057,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(41393,39057,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(41394,39057,'blocks_3_split_5050_content_actions','1'),(41395,39057,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(41396,39057,'blocks_3_split_5050_content',''),(41397,39057,'_blocks_3_split_5050_content','field_61767afceb8ba'),(41398,39057,'blocks_7_acfe_flexible_toggle',''),(41399,39057,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(41400,39057,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(41401,39057,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(41402,39057,'blocks_7_options_theme','#ffffff'),(41403,39057,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(41404,39057,'blocks_7_options_state','0'),(41405,39057,'_blocks_7_options_state','field_6239fcb7508c5'),(41406,39057,'blocks_7_options',''),(41407,39057,'_blocks_7_options','field_6177e2991ac44'),(41408,39057,'blocks_7_content_title',''),(41409,39057,'_blocks_7_content_title','field_64d237e8bb1e2'),(41410,39057,'blocks_7_content_heading','Frequently asked questions'),(41411,39057,'_blocks_7_content_heading','field_64d237e8bb1e3'),(41412,39057,'blocks_7_content_text',''),(41413,39057,'_blocks_7_content_text','field_64d237e8bb1e4'),(41414,39057,'blocks_7_content_actions',''),(41415,39057,'_blocks_7_content_actions','field_64d237e8bb1e5'),(41416,39057,'blocks_7_content_align','left'),(41417,39057,'_blocks_7_content_align','field_64d2443e6b6aa'),(41418,39057,'blocks_7_content',''),(41419,39057,'_blocks_7_content','field_64d237e8bb1e1'),(41420,39057,'blocks_7_accordion_content','faqs'),(41421,39057,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(41422,39057,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(41423,39057,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(41424,39057,'blocks_7_actions',''),(41425,39057,'_blocks_7_actions','field_61a746a817f7a'),(41426,39057,'blocks_8_acfe_flexible_toggle',''),(41427,39057,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(41428,39057,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(41429,39057,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(41430,39057,'blocks_8_options_alignment','center'),(41431,39057,'_blocks_8_options_alignment','field_61769449f5490'),(41432,39057,'blocks_8_options',''),(41433,39057,'_blocks_8_options','field_617693e1428f0'),(41434,39057,'blocks_8_promo_panel_image','39035'),(41435,39057,'_blocks_8_promo_panel_image','field_617693e1428f3'),(41436,39057,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(41437,39057,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(41438,39057,'blocks_8_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(41439,39057,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(41440,39057,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(41441,39057,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(41442,39057,'blocks_8_promo_panel_content_actions','1'),(41443,39057,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(41444,39057,'blocks_8_promo_panel_content',''),(41445,39057,'_blocks_8_promo_panel_content','field_617693e1428f4'),(41446,39057,'blocks_4_acfe_flexible_toggle',''),(41447,39057,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(41448,39057,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(41449,39057,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(41450,39057,'blocks_4_options_theme','#ffffff'),(41451,39057,'_blocks_4_options_theme','field_6176830e2ad17'),(41452,39057,'blocks_4_options',''),(41453,39057,'_blocks_4_options','field_6176830e2ad16'),(41454,39057,'blocks_4_text_block_heading','Learn more about the course'),(41455,39057,'_blocks_4_text_block_heading','field_617669d413097'),(41456,39057,'blocks_4_text_block_content','Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.'),(41457,39057,'_blocks_4_text_block_content','field_617669ec13098'),(41458,39057,'blocks_5_acfe_flexible_toggle',''),(41459,39057,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(41460,39057,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(41461,39057,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(41462,39057,'blocks_5_options_theme','#ffffff'),(41463,39057,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(41464,39057,'blocks_5_options',''),(41465,39057,'_blocks_5_options','field_6177cfcd8140f'),(41466,39057,'blocks_5_tabs_0_tab_label','What\'s Included'),(41467,39057,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(41468,39057,'blocks_5_tabs_0_tab_content_title',''),(41469,39057,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(41470,39057,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(41471,39057,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(41472,39057,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(41473,39057,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(41474,39057,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(41475,39057,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(41476,39057,'blocks_5_tabs_0_tab_content_actions','1'),(41477,39057,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(41478,39057,'blocks_5_tabs_0_tab_content',''),(41479,39057,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(41480,39057,'blocks_5_tabs_0_tab_image','39009'),(41481,39057,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(41482,39057,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(41483,39057,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(41484,39057,'blocks_5_tabs_1_tab_content_title',''),(41485,39057,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(41486,39057,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(41487,39057,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(41488,39057,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(41489,39057,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(41490,39057,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(41491,39057,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(41492,39057,'blocks_5_tabs_1_tab_content_actions','1'),(41493,39057,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(41494,39057,'blocks_5_tabs_1_tab_content',''),(41495,39057,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(41496,39057,'blocks_5_tabs_1_tab_image','39010'),(41497,39057,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(41498,39057,'blocks_5_tabs','2'),(41499,39057,'_blocks_5_tabs','field_6177cff281419'),(41500,39057,'blocks_6_acfe_flexible_toggle',''),(41501,39057,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(41502,39057,'blocks_6_acfe_flexible_layout_title','About Rachel'),(41503,39057,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(41504,39057,'blocks_6_options_theme','#ffffff'),(41505,39057,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(41506,39057,'blocks_6_options_reverse','1'),(41507,39057,'_blocks_6_options_reverse','field_61768049bb8ac'),(41508,39057,'blocks_6_options',''),(41509,39057,'_blocks_6_options','field_617682517c334'),(41510,39057,'blocks_6_split_5050_image','39052'),(41511,39057,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(41512,39057,'blocks_6_split_5050_video',''),(41513,39057,'_blocks_6_split_5050_video','field_6239f3160848a'),(41514,39057,'blocks_6_split_5050_content_title',''),(41515,39057,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(41516,39057,'blocks_6_split_5050_content_heading','Rachel France'),(41517,39057,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(41518,39057,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(41519,39057,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(41520,39057,'blocks_6_split_5050_content_actions',''),(41521,39057,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(41522,39057,'blocks_6_split_5050_content',''),(41523,39057,'_blocks_6_split_5050_content','field_61767afceb8ba'),(41524,39043,'blocks_4_acfe_flexible_toggle',''),(41525,39043,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(41526,39043,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(41527,39043,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(41528,39043,'blocks_4_content','<h2 style=\"text-align: center;\">Learn More About the Course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics Coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(41529,39043,'_blocks_4_content','field_6193c9b5eac84'),(41656,39058,'hero_style','default'),(41657,39058,'_hero_style','field_62051d9dc5324'),(41658,39058,'hero_image_pos_x','right'),(41659,39058,'_hero_image_pos_x','field_62ec3d05390bb'),(41660,39058,'hero_image_pos_y','top'),(41661,39058,'_hero_image_pos_y','field_62ec3d05390bc'),(41662,39058,'hero_image_pos',''),(41663,39058,'_hero_image_pos','field_62ec3d05390ba'),(41664,39058,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(41665,39058,'_hero_title','field_617571fe285e8'),(41666,39058,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(41667,39058,'_hero_text','field_6175723c285e9'),(41668,39058,'hero_actions','1'),(41669,39058,'_hero_actions','field_61757270285ea'),(41670,39058,'hero_icon',''),(41671,39058,'_hero_icon','field_61a6182199d03'),(41672,39058,'fft_hide_from_listings','0'),(41673,39058,'_fft_hide_from_listings','field_61f1320446ab2'),(41674,39058,'fft_page_format','default'),(41675,39058,'_fft_page_format','field_61ae213f1f218'),(41676,39058,'fft_hide_nav','1'),(41677,39058,'_fft_hide_nav','field_635bd5e43527c'),(41678,39058,'fft_hide_header_call_to_action','0'),(41679,39058,'_fft_hide_header_call_to_action','field_635bd6723527d'),(41680,39058,'fft_page_sitemap','1'),(41681,39058,'_fft_page_sitemap','field_61af9b34e8181'),(41682,39058,'blocks','a:10:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"split_5050\";i:8;s:10:\"accordions\";i:9;s:11:\"promo_panel\";}'),(41683,39058,'_blocks','field_6176696113096'),(41684,39058,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(41685,39058,'_hero_actions_0_button','field_61757281285eb'),(41686,39058,'_thumbnail_id','39047'),(41687,39058,'__thumbnail_id','field_617570855ddaf'),(41688,39058,'blocks_0_acfe_flexible_toggle',''),(41689,39058,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(41690,39058,'blocks_0_acfe_flexible_layout_title','Icons'),(41691,39058,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(41692,39058,'blocks_0_options_theme','#ffffff'),(41693,39058,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(41694,39058,'blocks_0_options_format','row'),(41695,39058,'_blocks_0_options_format','field_64bfde9a90690'),(41696,39058,'blocks_0_options',''),(41697,39058,'_blocks_0_options','field_64bfdd9b90684'),(41698,39058,'blocks_0_icon_row_items_0_icon','qualification.svg'),(41699,39058,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(41700,39058,'blocks_0_icon_row_items_0_label','Course Type'),(41701,39058,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(41702,39058,'blocks_0_icon_row_items_0_text','Blended Learning'),(41703,39058,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(41704,39058,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(41705,39058,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(41706,39058,'blocks_0_icon_row_items_1_label','Qualification'),(41707,39058,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(41708,39058,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(41709,39058,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(41710,39058,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(41711,39058,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(41712,39058,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(41713,39058,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(41714,39058,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(41715,39058,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(41716,39058,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(41717,39058,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(41718,39058,'blocks_0_icon_row_items_3_label','IBA Registered'),(41719,39058,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(41720,39058,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(41721,39058,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(41722,39058,'blocks_0_icon_row_items','4'),(41723,39058,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(41724,39058,'blocks_1_acfe_flexible_toggle',''),(41725,39058,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(41726,39058,'blocks_1_acfe_flexible_layout_title','Form'),(41727,39058,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(41728,39058,'blocks_1_row_content_format','promotion'),(41729,39058,'_blocks_1_row_content_format','field_6481ead962881'),(41730,39058,'blocks_1_row_content_title',''),(41731,39058,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(41732,39058,'blocks_1_row_content_heading',''),(41733,39058,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(41734,39058,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(41735,39058,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(41736,39058,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(41737,39058,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(41738,39058,'blocks_1_row_content_actions','1'),(41739,39058,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(41740,39058,'blocks_1_row_content',''),(41741,39058,'_blocks_1_row_content','field_61a0f5f5b3db0'),(41742,39058,'blocks_1_row_form',''),(41743,39058,'_blocks_1_row_form','field_61a4ff2c0b08e'),(41744,39058,'blocks_1_row_form_button_label',''),(41745,39058,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(41746,39058,'blocks_1_row_content_promotion_label','Up to 10% Off'),(41747,39058,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(41748,39058,'blocks_1_row_content_promotion_heading','For Event Attendees '),(41749,39058,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(41750,39058,'blocks_1_row_content_promotion_value','Up to 10% Off'),(41751,39058,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(41752,39058,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(41753,39058,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(41754,39058,'blocks_1_row_content_promotion',''),(41755,39058,'_blocks_1_row_content_promotion','field_6481eb3962882'),(41756,39058,'blocks_1_row_form_title','EMD UK Referral'),(41757,39058,'_blocks_1_row_form_title','field_64872db5127af'),(41758,39058,'blocks_2_acfe_flexible_toggle',''),(41759,39058,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(41760,39058,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(41761,39058,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(41762,39058,'blocks_2_size','large'),(41763,39058,'_blocks_2_size','field_6487038f297c1'),(41764,39058,'blocks_2_row_content_title',''),(41765,39058,'_blocks_2_row_content_title','field_64870132a865d'),(41766,39058,'blocks_2_row_content_heading','Course Overview'),(41767,39058,'_blocks_2_row_content_heading','field_64870142a865e'),(41768,39058,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(41769,39058,'_blocks_2_row_content_text','field_64870148a865f'),(41770,39058,'blocks_2_row_content',''),(41771,39058,'_blocks_2_row_content','field_6487008ba865c'),(41772,39058,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(41773,39058,'_blocks_2_video_src','field_6193c4a98ec07'),(41774,39058,'blocks_2_video_thumbnail','38998'),(41775,39058,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(41776,39058,'blocks_3_acfe_flexible_toggle',''),(41777,39058,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(41778,39058,'blocks_3_acfe_flexible_layout_title','Partnership section'),(41779,39058,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(41780,39058,'blocks_3_options_theme','#ffffff'),(41781,39058,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(41782,39058,'blocks_3_options_reverse','0'),(41783,39058,'_blocks_3_options_reverse','field_61768049bb8ac'),(41784,39058,'blocks_3_options',''),(41785,39058,'_blocks_3_options','field_617682517c334'),(41786,39058,'blocks_3_split_5050_image','39051'),(41787,39058,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(41788,39058,'blocks_3_split_5050_video',''),(41789,39058,'_blocks_3_split_5050_video','field_6239f3160848a'),(41790,39058,'blocks_3_split_5050_content_title',''),(41791,39058,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(41792,39058,'blocks_3_split_5050_content_heading','Working in Partnership'),(41793,39058,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(41794,39058,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(41795,39058,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(41796,39058,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(41797,39058,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(41798,39058,'blocks_3_split_5050_content_actions','1'),(41799,39058,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(41800,39058,'blocks_3_split_5050_content',''),(41801,39058,'_blocks_3_split_5050_content','field_61767afceb8ba'),(41802,39058,'blocks_4_acfe_flexible_toggle',''),(41803,39058,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(41804,39058,'blocks_4_acfe_flexible_layout_title','Standard/Editorial Content'),(41805,39058,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(41806,39058,'blocks_4_content','<h2 style=\"text-align: center;\">Learn more about the course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(41807,39058,'_blocks_4_content','field_6193c9b5eac84'),(41808,39058,'blocks_5_acfe_flexible_toggle','1'),(41809,39058,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(41810,39058,'blocks_5_acfe_flexible_layout_title','Learn More Heading Text'),(41811,39058,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(41812,39058,'blocks_5_options_theme','#ffffff'),(41813,39058,'_blocks_5_options_theme','field_6176830e2ad17'),(41814,39058,'blocks_5_options',''),(41815,39058,'_blocks_5_options','field_6176830e2ad16'),(41816,39058,'blocks_5_text_block_heading','Learn more about the course'),(41817,39058,'_blocks_5_text_block_heading','field_617669d413097'),(41818,39058,'blocks_5_text_block_content','Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.'),(41819,39058,'_blocks_5_text_block_content','field_617669ec13098'),(41820,39058,'blocks_6_acfe_flexible_toggle',''),(41821,39058,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(41822,39058,'blocks_6_acfe_flexible_layout_title','Further course info, what\'s included'),(41823,39058,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(41824,39058,'blocks_6_options_theme','#ffffff'),(41825,39058,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(41826,39058,'blocks_6_options',''),(41827,39058,'_blocks_6_options','field_6177cfcd8140f'),(41828,39058,'blocks_6_tabs_0_tab_label','What\'s Included'),(41829,39058,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(41830,39058,'blocks_6_tabs_0_tab_content_title',''),(41831,39058,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(41832,39058,'blocks_6_tabs_0_tab_content_heading','Define Your Skills'),(41833,39058,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(41834,39058,'blocks_6_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(41835,39058,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(41836,39058,'blocks_6_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(41837,39058,'_blocks_6_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(41838,39058,'blocks_6_tabs_0_tab_content_actions','1'),(41839,39058,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(41840,39058,'blocks_6_tabs_0_tab_content',''),(41841,39058,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(41842,39058,'blocks_6_tabs_0_tab_image','39009'),(41843,39058,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(41844,39058,'blocks_6_tabs_1_tab_label','What You\'ll Learn'),(41845,39058,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(41846,39058,'blocks_6_tabs_1_tab_content_title',''),(41847,39058,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(41848,39058,'blocks_6_tabs_1_tab_content_heading','Included Learning'),(41849,39058,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(41850,39058,'blocks_6_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(41851,39058,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(41852,39058,'blocks_6_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(41853,39058,'_blocks_6_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(41854,39058,'blocks_6_tabs_1_tab_content_actions','1'),(41855,39058,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(41856,39058,'blocks_6_tabs_1_tab_content',''),(41857,39058,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(41858,39058,'blocks_6_tabs_1_tab_image','39010'),(41859,39058,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(41860,39058,'blocks_6_tabs','2'),(41861,39058,'_blocks_6_tabs','field_6177cff281419'),(41862,39058,'blocks_7_acfe_flexible_toggle',''),(41863,39058,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(41864,39058,'blocks_7_acfe_flexible_layout_title','About Rachel'),(41865,39058,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(41866,39058,'blocks_7_options_theme','#ffffff'),(41867,39058,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(41868,39058,'blocks_7_options_reverse','1'),(41869,39058,'_blocks_7_options_reverse','field_61768049bb8ac'),(41870,39058,'blocks_7_options',''),(41871,39058,'_blocks_7_options','field_617682517c334'),(41872,39058,'blocks_7_split_5050_image','39052'),(41873,39058,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(41874,39058,'blocks_7_split_5050_video',''),(41875,39058,'_blocks_7_split_5050_video','field_6239f3160848a'),(41876,39058,'blocks_7_split_5050_content_title',''),(41877,39058,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(41878,39058,'blocks_7_split_5050_content_heading','Rachel France'),(41879,39058,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(41880,39058,'blocks_7_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(41881,39058,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(41882,39058,'blocks_7_split_5050_content_actions',''),(41883,39058,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(41884,39058,'blocks_7_split_5050_content',''),(41885,39058,'_blocks_7_split_5050_content','field_61767afceb8ba'),(41886,39058,'blocks_8_acfe_flexible_toggle',''),(41887,39058,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(41888,39058,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(41889,39058,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(41890,39058,'blocks_8_options_theme','#ffffff'),(41891,39058,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(41892,39058,'blocks_8_options_state','0'),(41893,39058,'_blocks_8_options_state','field_6239fcb7508c5'),(41894,39058,'blocks_8_options',''),(41895,39058,'_blocks_8_options','field_6177e2991ac44'),(41896,39058,'blocks_8_content_title',''),(41897,39058,'_blocks_8_content_title','field_64d237e8bb1e2'),(41898,39058,'blocks_8_content_heading','Frequently asked questions'),(41899,39058,'_blocks_8_content_heading','field_64d237e8bb1e3'),(41900,39058,'blocks_8_content_text',''),(41901,39058,'_blocks_8_content_text','field_64d237e8bb1e4'),(41902,39058,'blocks_8_content_actions',''),(41903,39058,'_blocks_8_content_actions','field_64d237e8bb1e5'),(41904,39058,'blocks_8_content_align','left'),(41905,39058,'_blocks_8_content_align','field_64d2443e6b6aa'),(41906,39058,'blocks_8_content',''),(41907,39058,'_blocks_8_content','field_64d237e8bb1e1'),(41908,39058,'blocks_8_accordion_content','faqs'),(41909,39058,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(41910,39058,'blocks_8_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(41911,39058,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(41912,39058,'blocks_8_actions',''),(41913,39058,'_blocks_8_actions','field_61a746a817f7a'),(41914,39058,'blocks_9_acfe_flexible_toggle',''),(41915,39058,'_blocks_9_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(41916,39058,'blocks_9_acfe_flexible_layout_title','Promo Panel'),(41917,39058,'_blocks_9_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(41918,39058,'blocks_9_options_alignment','center'),(41919,39058,'_blocks_9_options_alignment','field_61769449f5490'),(41920,39058,'blocks_9_options',''),(41921,39058,'_blocks_9_options','field_617693e1428f0'),(41922,39058,'blocks_9_promo_panel_image','39035'),(41923,39058,'_blocks_9_promo_panel_image','field_617693e1428f3'),(41924,39058,'blocks_9_promo_panel_content_heading','Ready to level up your fitness career ?'),(41925,39058,'_blocks_9_promo_panel_content_heading','field_617693e1428f6'),(41926,39058,'blocks_9_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(41927,39058,'_blocks_9_promo_panel_content_text','field_617693e1428f7'),(41928,39058,'blocks_9_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(41929,39058,'_blocks_9_promo_panel_content_actions_0_button','field_617693e1428f9'),(41930,39058,'blocks_9_promo_panel_content_actions','1'),(41931,39058,'_blocks_9_promo_panel_content_actions','field_617693e1428f8'),(41932,39058,'blocks_9_promo_panel_content',''),(41933,39058,'_blocks_9_promo_panel_content','field_617693e1428f4'),(41934,39043,'blocks_5_acfe_flexible_toggle',''),(41935,39043,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(41936,39043,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(41937,39043,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(41938,39043,'blocks_5_options_theme','#ffffff'),(41939,39043,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(41940,39043,'blocks_5_options',''),(41941,39043,'_blocks_5_options','field_6177cfcd8140f'),(41942,39043,'blocks_5_tabs_0_tab_label','What\'s Included'),(41943,39043,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(41944,39043,'blocks_5_tabs_0_tab_content_title',''),(41945,39043,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(41946,39043,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(41947,39043,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(41948,39043,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(41949,39043,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(41950,39043,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(41951,39043,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(41952,39043,'blocks_5_tabs_0_tab_content_actions','1'),(41953,39043,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(41954,39043,'blocks_5_tabs_0_tab_content',''),(41955,39043,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(41956,39043,'blocks_5_tabs_0_tab_image','39009'),(41957,39043,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(41958,39043,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(41959,39043,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(41960,39043,'blocks_5_tabs_1_tab_content_title',''),(41961,39043,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(41962,39043,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(41963,39043,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(41964,39043,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(41965,39043,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(41966,39043,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(41967,39043,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(41968,39043,'blocks_5_tabs_1_tab_content_actions','1'),(41969,39043,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(41970,39043,'blocks_5_tabs_1_tab_content',''),(41971,39043,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(41972,39043,'blocks_5_tabs_1_tab_image','31067'),(41973,39043,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(41974,39043,'blocks_5_tabs','2'),(41975,39043,'_blocks_5_tabs','field_6177cff281419'),(41976,39043,'blocks_6_acfe_flexible_toggle',''),(41977,39043,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(41978,39043,'blocks_6_acfe_flexible_layout_title','About Rachel'),(41979,39043,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(41980,39043,'blocks_6_options_theme','#ffffff'),(41981,39043,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(41982,39043,'blocks_6_options_reverse','0'),(41983,39043,'_blocks_6_options_reverse','field_61768049bb8ac'),(41984,39043,'blocks_6_options',''),(41985,39043,'_blocks_6_options','field_617682517c334'),(41986,39043,'blocks_6_split_5050_image','39052'),(41987,39043,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(41988,39043,'blocks_6_split_5050_video',''),(41989,39043,'_blocks_6_split_5050_video','field_6239f3160848a'),(41990,39043,'blocks_6_split_5050_content_title',''),(41991,39043,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(41992,39043,'blocks_6_split_5050_content_heading','Rachel Frances Thomson'),(41993,39043,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(41994,39043,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(41995,39043,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(41996,39043,'blocks_6_split_5050_content_actions',''),(41997,39043,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(41998,39043,'blocks_6_split_5050_content',''),(41999,39043,'_blocks_6_split_5050_content','field_61767afceb8ba'),(42000,39043,'blocks_7_acfe_flexible_toggle',''),(42001,39043,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(42002,39043,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(42003,39043,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(42004,39043,'blocks_7_options_theme','#ffffff'),(42005,39043,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(42006,39043,'blocks_7_options_state','0'),(42007,39043,'_blocks_7_options_state','field_6239fcb7508c5'),(42008,39043,'blocks_7_options',''),(42009,39043,'_blocks_7_options','field_6177e2991ac44'),(42010,39043,'blocks_7_content_title',''),(42011,39043,'_blocks_7_content_title','field_64d237e8bb1e2'),(42012,39043,'blocks_7_content_heading','Frequently asked questions'),(42013,39043,'_blocks_7_content_heading','field_64d237e8bb1e3'),(42014,39043,'blocks_7_content_text',''),(42015,39043,'_blocks_7_content_text','field_64d237e8bb1e4'),(42016,39043,'blocks_7_content_actions',''),(42017,39043,'_blocks_7_content_actions','field_64d237e8bb1e5'),(42018,39043,'blocks_7_content_align','left'),(42019,39043,'_blocks_7_content_align','field_64d2443e6b6aa'),(42020,39043,'blocks_7_content',''),(42021,39043,'_blocks_7_content','field_64d237e8bb1e1'),(42022,39043,'blocks_7_accordion_content','faqs'),(42023,39043,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(42024,39043,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(42025,39043,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(42026,39043,'blocks_7_actions',''),(42027,39043,'_blocks_7_actions','field_61a746a817f7a'),(42028,39043,'blocks_8_acfe_flexible_toggle',''),(42029,39043,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(42030,39043,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(42031,39043,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(42032,39043,'blocks_8_options_alignment','center'),(42033,39043,'_blocks_8_options_alignment','field_61769449f5490'),(42034,39043,'blocks_8_options',''),(42035,39043,'_blocks_8_options','field_617693e1428f0'),(42036,39043,'blocks_8_promo_panel_image','39035'),(42037,39043,'_blocks_8_promo_panel_image','field_617693e1428f3'),(42038,39043,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(42039,39043,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(42040,39043,'blocks_8_promo_panel_content_text','Download a price guide today to receive an exclusive 10% off for all David Lloyd Personal Trainers.'),(42041,39043,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(42042,39043,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(42043,39043,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(42044,39043,'blocks_8_promo_panel_content_actions','1'),(42045,39043,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(42046,39043,'blocks_8_promo_panel_content',''),(42047,39043,'_blocks_8_promo_panel_content','field_617693e1428f4'),(42048,39059,'hero_style','default'),(42049,39059,'_hero_style','field_62051d9dc5324'),(42050,39059,'hero_image_pos_x','right'),(42051,39059,'_hero_image_pos_x','field_62ec3d05390bb'),(42052,39059,'hero_image_pos_y','top'),(42053,39059,'_hero_image_pos_y','field_62ec3d05390bc'),(42054,39059,'hero_image_pos',''),(42055,39059,'_hero_image_pos','field_62ec3d05390ba'),(42056,39059,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(42057,39059,'_hero_title','field_617571fe285e8'),(42058,39059,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(42059,39059,'_hero_text','field_6175723c285e9'),(42060,39059,'hero_actions','1'),(42061,39059,'_hero_actions','field_61757270285ea'),(42062,39059,'hero_icon',''),(42063,39059,'_hero_icon','field_61a6182199d03'),(42064,39059,'fft_hide_from_listings','0'),(42065,39059,'_fft_hide_from_listings','field_61f1320446ab2'),(42066,39059,'fft_page_format','default'),(42067,39059,'_fft_page_format','field_61ae213f1f218'),(42068,39059,'fft_hide_nav','1'),(42069,39059,'_fft_hide_nav','field_635bd5e43527c'),(42070,39059,'fft_hide_header_call_to_action','0'),(42071,39059,'_fft_hide_header_call_to_action','field_635bd6723527d'),(42072,39059,'fft_page_sitemap','1'),(42073,39059,'_fft_page_sitemap','field_61af9b34e8181'),(42074,39059,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(42075,39059,'_blocks','field_6176696113096'),(42076,39059,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(42077,39059,'_hero_actions_0_button','field_61757281285eb'),(42078,39059,'_thumbnail_id','39047'),(42079,39059,'__thumbnail_id','field_617570855ddaf'),(42080,39059,'blocks_0_acfe_flexible_toggle',''),(42081,39059,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(42082,39059,'blocks_0_acfe_flexible_layout_title','Icons'),(42083,39059,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(42084,39059,'blocks_0_options_theme','#ffffff'),(42085,39059,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(42086,39059,'blocks_0_options_format','row'),(42087,39059,'_blocks_0_options_format','field_64bfde9a90690'),(42088,39059,'blocks_0_options',''),(42089,39059,'_blocks_0_options','field_64bfdd9b90684'),(42090,39059,'blocks_0_icon_row_items_0_icon','qualification.svg'),(42091,39059,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(42092,39059,'blocks_0_icon_row_items_0_label','Course Type'),(42093,39059,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(42094,39059,'blocks_0_icon_row_items_0_text','Blended Learning'),(42095,39059,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(42096,39059,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(42097,39059,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(42098,39059,'blocks_0_icon_row_items_1_label','Qualification'),(42099,39059,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(42100,39059,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(42101,39059,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(42102,39059,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(42103,39059,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(42104,39059,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(42105,39059,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(42106,39059,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(42107,39059,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(42108,39059,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(42109,39059,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(42110,39059,'blocks_0_icon_row_items_3_label','IBA Registered'),(42111,39059,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(42112,39059,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(42113,39059,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(42114,39059,'blocks_0_icon_row_items','4'),(42115,39059,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(42116,39059,'blocks_1_acfe_flexible_toggle',''),(42117,39059,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(42118,39059,'blocks_1_acfe_flexible_layout_title','Form'),(42119,39059,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(42120,39059,'blocks_1_row_content_format','promotion'),(42121,39059,'_blocks_1_row_content_format','field_6481ead962881'),(42122,39059,'blocks_1_row_content_title',''),(42123,39059,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(42124,39059,'blocks_1_row_content_heading',''),(42125,39059,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(42126,39059,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(42127,39059,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(42128,39059,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(42129,39059,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(42130,39059,'blocks_1_row_content_actions','1'),(42131,39059,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(42132,39059,'blocks_1_row_content',''),(42133,39059,'_blocks_1_row_content','field_61a0f5f5b3db0'),(42134,39059,'blocks_1_row_form',''),(42135,39059,'_blocks_1_row_form','field_61a4ff2c0b08e'),(42136,39059,'blocks_1_row_form_button_label',''),(42137,39059,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(42138,39059,'blocks_1_row_content_promotion_label','Up to 10% Off'),(42139,39059,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(42140,39059,'blocks_1_row_content_promotion_heading','For Event Attendees '),(42141,39059,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(42142,39059,'blocks_1_row_content_promotion_value','Up to 10% Off'),(42143,39059,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(42144,39059,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(42145,39059,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(42146,39059,'blocks_1_row_content_promotion',''),(42147,39059,'_blocks_1_row_content_promotion','field_6481eb3962882'),(42148,39059,'blocks_1_row_form_title','EMD UK Referral'),(42149,39059,'_blocks_1_row_form_title','field_64872db5127af'),(42150,39059,'blocks_2_acfe_flexible_toggle',''),(42151,39059,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(42152,39059,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(42153,39059,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(42154,39059,'blocks_2_size','large'),(42155,39059,'_blocks_2_size','field_6487038f297c1'),(42156,39059,'blocks_2_row_content_title',''),(42157,39059,'_blocks_2_row_content_title','field_64870132a865d'),(42158,39059,'blocks_2_row_content_heading','Course Overview'),(42159,39059,'_blocks_2_row_content_heading','field_64870142a865e'),(42160,39059,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(42161,39059,'_blocks_2_row_content_text','field_64870148a865f'),(42162,39059,'blocks_2_row_content',''),(42163,39059,'_blocks_2_row_content','field_6487008ba865c'),(42164,39059,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(42165,39059,'_blocks_2_video_src','field_6193c4a98ec07'),(42166,39059,'blocks_2_video_thumbnail','38998'),(42167,39059,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(42168,39059,'blocks_3_acfe_flexible_toggle',''),(42169,39059,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(42170,39059,'blocks_3_acfe_flexible_layout_title','Partnership section'),(42171,39059,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(42172,39059,'blocks_3_options_theme','#ffffff'),(42173,39059,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(42174,39059,'blocks_3_options_reverse','0'),(42175,39059,'_blocks_3_options_reverse','field_61768049bb8ac'),(42176,39059,'blocks_3_options',''),(42177,39059,'_blocks_3_options','field_617682517c334'),(42178,39059,'blocks_3_split_5050_image','39051'),(42179,39059,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(42180,39059,'blocks_3_split_5050_video',''),(42181,39059,'_blocks_3_split_5050_video','field_6239f3160848a'),(42182,39059,'blocks_3_split_5050_content_title',''),(42183,39059,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(42184,39059,'blocks_3_split_5050_content_heading','Working in Partnership'),(42185,39059,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(42186,39059,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(42187,39059,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(42188,39059,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(42189,39059,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(42190,39059,'blocks_3_split_5050_content_actions','1'),(42191,39059,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(42192,39059,'blocks_3_split_5050_content',''),(42193,39059,'_blocks_3_split_5050_content','field_61767afceb8ba'),(42194,39059,'blocks_4_acfe_flexible_toggle',''),(42195,39059,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(42196,39059,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(42197,39059,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(42198,39059,'blocks_4_content','<h2 style=\"text-align: center;\">Learn more about the course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(42199,39059,'_blocks_4_content','field_6193c9b5eac84'),(42200,39059,'blocks_5_acfe_flexible_toggle',''),(42201,39059,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(42202,39059,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(42203,39059,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(42204,39059,'blocks_5_options_theme','#ffffff'),(42205,39059,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(42206,39059,'blocks_5_options',''),(42207,39059,'_blocks_5_options','field_6177cfcd8140f'),(42208,39059,'blocks_5_tabs_0_tab_label','What\'s Included'),(42209,39059,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(42210,39059,'blocks_5_tabs_0_tab_content_title',''),(42211,39059,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(42212,39059,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(42213,39059,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(42214,39059,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(42215,39059,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(42216,39059,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(42217,39059,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(42218,39059,'blocks_5_tabs_0_tab_content_actions','1'),(42219,39059,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(42220,39059,'blocks_5_tabs_0_tab_content',''),(42221,39059,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(42222,39059,'blocks_5_tabs_0_tab_image','39009'),(42223,39059,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(42224,39059,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(42225,39059,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(42226,39059,'blocks_5_tabs_1_tab_content_title',''),(42227,39059,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(42228,39059,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(42229,39059,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(42230,39059,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(42231,39059,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(42232,39059,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(42233,39059,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(42234,39059,'blocks_5_tabs_1_tab_content_actions','1'),(42235,39059,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(42236,39059,'blocks_5_tabs_1_tab_content',''),(42237,39059,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(42238,39059,'blocks_5_tabs_1_tab_image','39010'),(42239,39059,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(42240,39059,'blocks_5_tabs','2'),(42241,39059,'_blocks_5_tabs','field_6177cff281419'),(42242,39059,'blocks_6_acfe_flexible_toggle',''),(42243,39059,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(42244,39059,'blocks_6_acfe_flexible_layout_title','About Rachel'),(42245,39059,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(42246,39059,'blocks_6_options_theme','#ffffff'),(42247,39059,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(42248,39059,'blocks_6_options_reverse','0'),(42249,39059,'_blocks_6_options_reverse','field_61768049bb8ac'),(42250,39059,'blocks_6_options',''),(42251,39059,'_blocks_6_options','field_617682517c334'),(42252,39059,'blocks_6_split_5050_image','39052'),(42253,39059,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(42254,39059,'blocks_6_split_5050_video',''),(42255,39059,'_blocks_6_split_5050_video','field_6239f3160848a'),(42256,39059,'blocks_6_split_5050_content_title',''),(42257,39059,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(42258,39059,'blocks_6_split_5050_content_heading','Rachel France'),(42259,39059,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(42260,39059,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(42261,39059,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(42262,39059,'blocks_6_split_5050_content_actions',''),(42263,39059,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(42264,39059,'blocks_6_split_5050_content',''),(42265,39059,'_blocks_6_split_5050_content','field_61767afceb8ba'),(42266,39059,'blocks_7_acfe_flexible_toggle',''),(42267,39059,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(42268,39059,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(42269,39059,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(42270,39059,'blocks_7_options_theme','#ffffff'),(42271,39059,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(42272,39059,'blocks_7_options_state','0'),(42273,39059,'_blocks_7_options_state','field_6239fcb7508c5'),(42274,39059,'blocks_7_options',''),(42275,39059,'_blocks_7_options','field_6177e2991ac44'),(42276,39059,'blocks_7_content_title',''),(42277,39059,'_blocks_7_content_title','field_64d237e8bb1e2'),(42278,39059,'blocks_7_content_heading','Frequently asked questions'),(42279,39059,'_blocks_7_content_heading','field_64d237e8bb1e3'),(42280,39059,'blocks_7_content_text',''),(42281,39059,'_blocks_7_content_text','field_64d237e8bb1e4'),(42282,39059,'blocks_7_content_actions',''),(42283,39059,'_blocks_7_content_actions','field_64d237e8bb1e5'),(42284,39059,'blocks_7_content_align','left'),(42285,39059,'_blocks_7_content_align','field_64d2443e6b6aa'),(42286,39059,'blocks_7_content',''),(42287,39059,'_blocks_7_content','field_64d237e8bb1e1'),(42288,39059,'blocks_7_accordion_content','faqs'),(42289,39059,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(42290,39059,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(42291,39059,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(42292,39059,'blocks_7_actions',''),(42293,39059,'_blocks_7_actions','field_61a746a817f7a'),(42294,39059,'blocks_8_acfe_flexible_toggle',''),(42295,39059,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(42296,39059,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(42297,39059,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(42298,39059,'blocks_8_options_alignment','center'),(42299,39059,'_blocks_8_options_alignment','field_61769449f5490'),(42300,39059,'blocks_8_options',''),(42301,39059,'_blocks_8_options','field_617693e1428f0'),(42302,39059,'blocks_8_promo_panel_image','39035'),(42303,39059,'_blocks_8_promo_panel_image','field_617693e1428f3'),(42304,39059,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(42305,39059,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(42306,39059,'blocks_8_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(42307,39059,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(42308,39059,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(42309,39059,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(42310,39059,'blocks_8_promo_panel_content_actions','1'),(42311,39059,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(42312,39059,'blocks_8_promo_panel_content',''),(42313,39059,'_blocks_8_promo_panel_content','field_617693e1428f4'),(42314,39060,'hero_style','default'),(42315,39060,'_hero_style','field_62051d9dc5324'),(42316,39060,'hero_image_pos_x','right'),(42317,39060,'_hero_image_pos_x','field_62ec3d05390bb'),(42318,39060,'hero_image_pos_y','top'),(42319,39060,'_hero_image_pos_y','field_62ec3d05390bc'),(42320,39060,'hero_image_pos',''),(42321,39060,'_hero_image_pos','field_62ec3d05390ba'),(42322,39060,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(42323,39060,'_hero_title','field_617571fe285e8'),(42324,39060,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(42325,39060,'_hero_text','field_6175723c285e9'),(42326,39060,'hero_actions','1'),(42327,39060,'_hero_actions','field_61757270285ea'),(42328,39060,'hero_icon',''),(42329,39060,'_hero_icon','field_61a6182199d03'),(42330,39060,'fft_hide_from_listings','0'),(42331,39060,'_fft_hide_from_listings','field_61f1320446ab2'),(42332,39060,'fft_page_format','default'),(42333,39060,'_fft_page_format','field_61ae213f1f218'),(42334,39060,'fft_hide_nav','1'),(42335,39060,'_fft_hide_nav','field_635bd5e43527c'),(42336,39060,'fft_hide_header_call_to_action','0'),(42337,39060,'_fft_hide_header_call_to_action','field_635bd6723527d'),(42338,39060,'fft_page_sitemap','1'),(42339,39060,'_fft_page_sitemap','field_61af9b34e8181'),(42340,39060,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(42341,39060,'_blocks','field_6176696113096'),(42342,39060,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(42343,39060,'_hero_actions_0_button','field_61757281285eb'),(42344,39060,'_thumbnail_id','39047'),(42345,39060,'__thumbnail_id','field_617570855ddaf'),(42346,39060,'blocks_0_acfe_flexible_toggle',''),(42347,39060,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(42348,39060,'blocks_0_acfe_flexible_layout_title','Icons'),(42349,39060,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(42350,39060,'blocks_0_options_theme','#ffffff'),(42351,39060,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(42352,39060,'blocks_0_options_format','row'),(42353,39060,'_blocks_0_options_format','field_64bfde9a90690'),(42354,39060,'blocks_0_options',''),(42355,39060,'_blocks_0_options','field_64bfdd9b90684'),(42356,39060,'blocks_0_icon_row_items_0_icon','qualification.svg'),(42357,39060,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(42358,39060,'blocks_0_icon_row_items_0_label','Course Type'),(42359,39060,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(42360,39060,'blocks_0_icon_row_items_0_text','Blended Learning'),(42361,39060,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(42362,39060,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(42363,39060,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(42364,39060,'blocks_0_icon_row_items_1_label','Qualification'),(42365,39060,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(42366,39060,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(42367,39060,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(42368,39060,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(42369,39060,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(42370,39060,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(42371,39060,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(42372,39060,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(42373,39060,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(42374,39060,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(42375,39060,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(42376,39060,'blocks_0_icon_row_items_3_label','IBA Registered'),(42377,39060,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(42378,39060,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(42379,39060,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(42380,39060,'blocks_0_icon_row_items','4'),(42381,39060,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(42382,39060,'blocks_1_acfe_flexible_toggle',''),(42383,39060,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(42384,39060,'blocks_1_acfe_flexible_layout_title','Form'),(42385,39060,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(42386,39060,'blocks_1_row_content_format','promotion'),(42387,39060,'_blocks_1_row_content_format','field_6481ead962881'),(42388,39060,'blocks_1_row_content_title',''),(42389,39060,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(42390,39060,'blocks_1_row_content_heading',''),(42391,39060,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(42392,39060,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(42393,39060,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(42394,39060,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(42395,39060,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(42396,39060,'blocks_1_row_content_actions','1'),(42397,39060,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(42398,39060,'blocks_1_row_content',''),(42399,39060,'_blocks_1_row_content','field_61a0f5f5b3db0'),(42400,39060,'blocks_1_row_form',''),(42401,39060,'_blocks_1_row_form','field_61a4ff2c0b08e'),(42402,39060,'blocks_1_row_form_button_label',''),(42403,39060,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(42404,39060,'blocks_1_row_content_promotion_label','Up to 10% Off'),(42405,39060,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(42406,39060,'blocks_1_row_content_promotion_heading','For Event Attendees '),(42407,39060,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(42408,39060,'blocks_1_row_content_promotion_value','Up to 10% Off'),(42409,39060,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(42410,39060,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(42411,39060,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(42412,39060,'blocks_1_row_content_promotion',''),(42413,39060,'_blocks_1_row_content_promotion','field_6481eb3962882'),(42414,39060,'blocks_1_row_form_title','EMD UK Referral'),(42415,39060,'_blocks_1_row_form_title','field_64872db5127af'),(42416,39060,'blocks_2_acfe_flexible_toggle',''),(42417,39060,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(42418,39060,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(42419,39060,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(42420,39060,'blocks_2_size','large'),(42421,39060,'_blocks_2_size','field_6487038f297c1'),(42422,39060,'blocks_2_row_content_title',''),(42423,39060,'_blocks_2_row_content_title','field_64870132a865d'),(42424,39060,'blocks_2_row_content_heading','Course Overview'),(42425,39060,'_blocks_2_row_content_heading','field_64870142a865e'),(42426,39060,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(42427,39060,'_blocks_2_row_content_text','field_64870148a865f'),(42428,39060,'blocks_2_row_content',''),(42429,39060,'_blocks_2_row_content','field_6487008ba865c'),(42430,39060,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(42431,39060,'_blocks_2_video_src','field_6193c4a98ec07'),(42432,39060,'blocks_2_video_thumbnail','38998'),(42433,39060,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(42434,39060,'blocks_3_acfe_flexible_toggle',''),(42435,39060,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(42436,39060,'blocks_3_acfe_flexible_layout_title','Partnership section'),(42437,39060,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(42438,39060,'blocks_3_options_theme','#ffffff'),(42439,39060,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(42440,39060,'blocks_3_options_reverse','0'),(42441,39060,'_blocks_3_options_reverse','field_61768049bb8ac'),(42442,39060,'blocks_3_options',''),(42443,39060,'_blocks_3_options','field_617682517c334'),(42444,39060,'blocks_3_split_5050_image','39051'),(42445,39060,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(42446,39060,'blocks_3_split_5050_video',''),(42447,39060,'_blocks_3_split_5050_video','field_6239f3160848a'),(42448,39060,'blocks_3_split_5050_content_title',''),(42449,39060,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(42450,39060,'blocks_3_split_5050_content_heading','Working in Partnership'),(42451,39060,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(42452,39060,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(42453,39060,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(42454,39060,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(42455,39060,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(42456,39060,'blocks_3_split_5050_content_actions','1'),(42457,39060,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(42458,39060,'blocks_3_split_5050_content',''),(42459,39060,'_blocks_3_split_5050_content','field_61767afceb8ba'),(42460,39060,'blocks_4_acfe_flexible_toggle',''),(42461,39060,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(42462,39060,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(42463,39060,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(42464,39060,'blocks_4_content','<h2 style=\"text-align: center;\">Learn more about the course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(42465,39060,'_blocks_4_content','field_6193c9b5eac84'),(42466,39060,'blocks_5_acfe_flexible_toggle',''),(42467,39060,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(42468,39060,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(42469,39060,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(42470,39060,'blocks_5_options_theme','#ffffff'),(42471,39060,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(42472,39060,'blocks_5_options',''),(42473,39060,'_blocks_5_options','field_6177cfcd8140f'),(42474,39060,'blocks_5_tabs_0_tab_label','What\'s Included'),(42475,39060,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(42476,39060,'blocks_5_tabs_0_tab_content_title',''),(42477,39060,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(42478,39060,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(42479,39060,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(42480,39060,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(42481,39060,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(42482,39060,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(42483,39060,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(42484,39060,'blocks_5_tabs_0_tab_content_actions','1'),(42485,39060,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(42486,39060,'blocks_5_tabs_0_tab_content',''),(42487,39060,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(42488,39060,'blocks_5_tabs_0_tab_image','39009'),(42489,39060,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(42490,39060,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(42491,39060,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(42492,39060,'blocks_5_tabs_1_tab_content_title',''),(42493,39060,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(42494,39060,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(42495,39060,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(42496,39060,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(42497,39060,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(42498,39060,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(42499,39060,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(42500,39060,'blocks_5_tabs_1_tab_content_actions','1'),(42501,39060,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(42502,39060,'blocks_5_tabs_1_tab_content',''),(42503,39060,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(42504,39060,'blocks_5_tabs_1_tab_image','39010'),(42505,39060,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(42506,39060,'blocks_5_tabs','2'),(42507,39060,'_blocks_5_tabs','field_6177cff281419'),(42508,39060,'blocks_6_acfe_flexible_toggle',''),(42509,39060,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(42510,39060,'blocks_6_acfe_flexible_layout_title','About Rachel'),(42511,39060,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(42512,39060,'blocks_6_options_theme','#ffffff'),(42513,39060,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(42514,39060,'blocks_6_options_reverse','0'),(42515,39060,'_blocks_6_options_reverse','field_61768049bb8ac'),(42516,39060,'blocks_6_options',''),(42517,39060,'_blocks_6_options','field_617682517c334'),(42518,39060,'blocks_6_split_5050_image','39052'),(42519,39060,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(42520,39060,'blocks_6_split_5050_video',''),(42521,39060,'_blocks_6_split_5050_video','field_6239f3160848a'),(42522,39060,'blocks_6_split_5050_content_title',''),(42523,39060,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(42524,39060,'blocks_6_split_5050_content_heading','Rachel France'),(42525,39060,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(42526,39060,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(42527,39060,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(42528,39060,'blocks_6_split_5050_content_actions',''),(42529,39060,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(42530,39060,'blocks_6_split_5050_content',''),(42531,39060,'_blocks_6_split_5050_content','field_61767afceb8ba'),(42532,39060,'blocks_7_acfe_flexible_toggle',''),(42533,39060,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(42534,39060,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(42535,39060,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(42536,39060,'blocks_7_options_theme','#ffffff'),(42537,39060,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(42538,39060,'blocks_7_options_state','0'),(42539,39060,'_blocks_7_options_state','field_6239fcb7508c5'),(42540,39060,'blocks_7_options',''),(42541,39060,'_blocks_7_options','field_6177e2991ac44'),(42542,39060,'blocks_7_content_title',''),(42543,39060,'_blocks_7_content_title','field_64d237e8bb1e2'),(42544,39060,'blocks_7_content_heading','Frequently asked questions'),(42545,39060,'_blocks_7_content_heading','field_64d237e8bb1e3'),(42546,39060,'blocks_7_content_text',''),(42547,39060,'_blocks_7_content_text','field_64d237e8bb1e4'),(42548,39060,'blocks_7_content_actions',''),(42549,39060,'_blocks_7_content_actions','field_64d237e8bb1e5'),(42550,39060,'blocks_7_content_align','left'),(42551,39060,'_blocks_7_content_align','field_64d2443e6b6aa'),(42552,39060,'blocks_7_content',''),(42553,39060,'_blocks_7_content','field_64d237e8bb1e1'),(42554,39060,'blocks_7_accordion_content','faqs'),(42555,39060,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(42556,39060,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(42557,39060,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(42558,39060,'blocks_7_actions',''),(42559,39060,'_blocks_7_actions','field_61a746a817f7a'),(42560,39060,'blocks_8_acfe_flexible_toggle',''),(42561,39060,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(42562,39060,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(42563,39060,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(42564,39060,'blocks_8_options_alignment','center'),(42565,39060,'_blocks_8_options_alignment','field_61769449f5490'),(42566,39060,'blocks_8_options',''),(42567,39060,'_blocks_8_options','field_617693e1428f0'),(42568,39060,'blocks_8_promo_panel_image','39035'),(42569,39060,'_blocks_8_promo_panel_image','field_617693e1428f3'),(42570,39060,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(42571,39060,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(42572,39060,'blocks_8_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(42573,39060,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(42574,39060,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(42575,39060,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(42576,39060,'blocks_8_promo_panel_content_actions','1'),(42577,39060,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(42578,39060,'blocks_8_promo_panel_content',''),(42579,39060,'_blocks_8_promo_panel_content','field_617693e1428f4'),(42580,39061,'hero_style','default'),(42581,39061,'_hero_style','field_62051d9dc5324'),(42582,39061,'hero_image_pos_x','right'),(42583,39061,'_hero_image_pos_x','field_62ec3d05390bb'),(42584,39061,'hero_image_pos_y','top'),(42585,39061,'_hero_image_pos_y','field_62ec3d05390bc'),(42586,39061,'hero_image_pos',''),(42587,39061,'_hero_image_pos','field_62ec3d05390ba'),(42588,39061,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(42589,39061,'_hero_title','field_617571fe285e8'),(42590,39061,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(42591,39061,'_hero_text','field_6175723c285e9'),(42592,39061,'hero_actions','1'),(42593,39061,'_hero_actions','field_61757270285ea'),(42594,39061,'hero_icon',''),(42595,39061,'_hero_icon','field_61a6182199d03'),(42596,39061,'fft_hide_from_listings','0'),(42597,39061,'_fft_hide_from_listings','field_61f1320446ab2'),(42598,39061,'fft_page_format','default'),(42599,39061,'_fft_page_format','field_61ae213f1f218'),(42600,39061,'fft_hide_nav','1'),(42601,39061,'_fft_hide_nav','field_635bd5e43527c'),(42602,39061,'fft_hide_header_call_to_action','0'),(42603,39061,'_fft_hide_header_call_to_action','field_635bd6723527d'),(42604,39061,'fft_page_sitemap','1'),(42605,39061,'_fft_page_sitemap','field_61af9b34e8181'),(42606,39061,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(42607,39061,'_blocks','field_6176696113096'),(42608,39061,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(42609,39061,'_hero_actions_0_button','field_61757281285eb'),(42610,39061,'_thumbnail_id','39047'),(42611,39061,'__thumbnail_id','field_617570855ddaf'),(42612,39061,'blocks_0_acfe_flexible_toggle',''),(42613,39061,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(42614,39061,'blocks_0_acfe_flexible_layout_title','Icons'),(42615,39061,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(42616,39061,'blocks_0_options_theme','#ffffff'),(42617,39061,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(42618,39061,'blocks_0_options_format','row'),(42619,39061,'_blocks_0_options_format','field_64bfde9a90690'),(42620,39061,'blocks_0_options',''),(42621,39061,'_blocks_0_options','field_64bfdd9b90684'),(42622,39061,'blocks_0_icon_row_items_0_icon','qualification.svg'),(42623,39061,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(42624,39061,'blocks_0_icon_row_items_0_label','Course Type'),(42625,39061,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(42626,39061,'blocks_0_icon_row_items_0_text','Blended Learning'),(42627,39061,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(42628,39061,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(42629,39061,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(42630,39061,'blocks_0_icon_row_items_1_label','Qualification'),(42631,39061,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(42632,39061,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(42633,39061,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(42634,39061,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(42635,39061,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(42636,39061,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(42637,39061,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(42638,39061,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(42639,39061,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(42640,39061,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(42641,39061,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(42642,39061,'blocks_0_icon_row_items_3_label','IBA Registered'),(42643,39061,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(42644,39061,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(42645,39061,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(42646,39061,'blocks_0_icon_row_items','4'),(42647,39061,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(42648,39061,'blocks_1_acfe_flexible_toggle',''),(42649,39061,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(42650,39061,'blocks_1_acfe_flexible_layout_title','Form'),(42651,39061,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(42652,39061,'blocks_1_row_content_format','promotion'),(42653,39061,'_blocks_1_row_content_format','field_6481ead962881'),(42654,39061,'blocks_1_row_content_title',''),(42655,39061,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(42656,39061,'blocks_1_row_content_heading',''),(42657,39061,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(42658,39061,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(42659,39061,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(42660,39061,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(42661,39061,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(42662,39061,'blocks_1_row_content_actions','1'),(42663,39061,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(42664,39061,'blocks_1_row_content',''),(42665,39061,'_blocks_1_row_content','field_61a0f5f5b3db0'),(42666,39061,'blocks_1_row_form',''),(42667,39061,'_blocks_1_row_form','field_61a4ff2c0b08e'),(42668,39061,'blocks_1_row_form_button_label',''),(42669,39061,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(42670,39061,'blocks_1_row_content_promotion_label','Up to 10% Off'),(42671,39061,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(42672,39061,'blocks_1_row_content_promotion_heading','For Event Attendees '),(42673,39061,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(42674,39061,'blocks_1_row_content_promotion_value','10%'),(42675,39061,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(42676,39061,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(42677,39061,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(42678,39061,'blocks_1_row_content_promotion',''),(42679,39061,'_blocks_1_row_content_promotion','field_6481eb3962882'),(42680,39061,'blocks_1_row_form_title','EMD UK Referral'),(42681,39061,'_blocks_1_row_form_title','field_64872db5127af'),(42682,39061,'blocks_2_acfe_flexible_toggle',''),(42683,39061,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(42684,39061,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(42685,39061,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(42686,39061,'blocks_2_size','large'),(42687,39061,'_blocks_2_size','field_6487038f297c1'),(42688,39061,'blocks_2_row_content_title',''),(42689,39061,'_blocks_2_row_content_title','field_64870132a865d'),(42690,39061,'blocks_2_row_content_heading','Course Overview'),(42691,39061,'_blocks_2_row_content_heading','field_64870142a865e'),(42692,39061,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(42693,39061,'_blocks_2_row_content_text','field_64870148a865f'),(42694,39061,'blocks_2_row_content',''),(42695,39061,'_blocks_2_row_content','field_6487008ba865c'),(42696,39061,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(42697,39061,'_blocks_2_video_src','field_6193c4a98ec07'),(42698,39061,'blocks_2_video_thumbnail','38998'),(42699,39061,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(42700,39061,'blocks_3_acfe_flexible_toggle',''),(42701,39061,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(42702,39061,'blocks_3_acfe_flexible_layout_title','Partnership section'),(42703,39061,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(42704,39061,'blocks_3_options_theme','#ffffff'),(42705,39061,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(42706,39061,'blocks_3_options_reverse','0'),(42707,39061,'_blocks_3_options_reverse','field_61768049bb8ac'),(42708,39061,'blocks_3_options',''),(42709,39061,'_blocks_3_options','field_617682517c334'),(42710,39061,'blocks_3_split_5050_image','39051'),(42711,39061,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(42712,39061,'blocks_3_split_5050_video',''),(42713,39061,'_blocks_3_split_5050_video','field_6239f3160848a'),(42714,39061,'blocks_3_split_5050_content_title',''),(42715,39061,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(42716,39061,'blocks_3_split_5050_content_heading','Working in Partnership'),(42717,39061,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(42718,39061,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(42719,39061,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(42720,39061,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(42721,39061,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(42722,39061,'blocks_3_split_5050_content_actions','1'),(42723,39061,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(42724,39061,'blocks_3_split_5050_content',''),(42725,39061,'_blocks_3_split_5050_content','field_61767afceb8ba'),(42726,39061,'blocks_4_acfe_flexible_toggle',''),(42727,39061,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(42728,39061,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(42729,39061,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(42730,39061,'blocks_4_content','<h2 style=\"text-align: center;\">Learn more about the course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(42731,39061,'_blocks_4_content','field_6193c9b5eac84'),(42732,39061,'blocks_5_acfe_flexible_toggle',''),(42733,39061,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(42734,39061,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(42735,39061,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(42736,39061,'blocks_5_options_theme','#ffffff'),(42737,39061,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(42738,39061,'blocks_5_options',''),(42739,39061,'_blocks_5_options','field_6177cfcd8140f'),(42740,39061,'blocks_5_tabs_0_tab_label','What\'s Included'),(42741,39061,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(42742,39061,'blocks_5_tabs_0_tab_content_title',''),(42743,39061,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(42744,39061,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(42745,39061,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(42746,39061,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(42747,39061,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(42748,39061,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(42749,39061,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(42750,39061,'blocks_5_tabs_0_tab_content_actions','1'),(42751,39061,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(42752,39061,'blocks_5_tabs_0_tab_content',''),(42753,39061,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(42754,39061,'blocks_5_tabs_0_tab_image','39009'),(42755,39061,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(42756,39061,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(42757,39061,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(42758,39061,'blocks_5_tabs_1_tab_content_title',''),(42759,39061,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(42760,39061,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(42761,39061,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(42762,39061,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(42763,39061,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(42764,39061,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(42765,39061,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(42766,39061,'blocks_5_tabs_1_tab_content_actions','1'),(42767,39061,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(42768,39061,'blocks_5_tabs_1_tab_content',''),(42769,39061,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(42770,39061,'blocks_5_tabs_1_tab_image','39010'),(42771,39061,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(42772,39061,'blocks_5_tabs','2'),(42773,39061,'_blocks_5_tabs','field_6177cff281419'),(42774,39061,'blocks_6_acfe_flexible_toggle',''),(42775,39061,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(42776,39061,'blocks_6_acfe_flexible_layout_title','About Rachel'),(42777,39061,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(42778,39061,'blocks_6_options_theme','#ffffff'),(42779,39061,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(42780,39061,'blocks_6_options_reverse','0'),(42781,39061,'_blocks_6_options_reverse','field_61768049bb8ac'),(42782,39061,'blocks_6_options',''),(42783,39061,'_blocks_6_options','field_617682517c334'),(42784,39061,'blocks_6_split_5050_image','39052'),(42785,39061,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(42786,39061,'blocks_6_split_5050_video',''),(42787,39061,'_blocks_6_split_5050_video','field_6239f3160848a'),(42788,39061,'blocks_6_split_5050_content_title',''),(42789,39061,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(42790,39061,'blocks_6_split_5050_content_heading','Rachel France'),(42791,39061,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(42792,39061,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(42793,39061,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(42794,39061,'blocks_6_split_5050_content_actions',''),(42795,39061,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(42796,39061,'blocks_6_split_5050_content',''),(42797,39061,'_blocks_6_split_5050_content','field_61767afceb8ba'),(42798,39061,'blocks_7_acfe_flexible_toggle',''),(42799,39061,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(42800,39061,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(42801,39061,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(42802,39061,'blocks_7_options_theme','#ffffff'),(42803,39061,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(42804,39061,'blocks_7_options_state','0'),(42805,39061,'_blocks_7_options_state','field_6239fcb7508c5'),(42806,39061,'blocks_7_options',''),(42807,39061,'_blocks_7_options','field_6177e2991ac44'),(42808,39061,'blocks_7_content_title',''),(42809,39061,'_blocks_7_content_title','field_64d237e8bb1e2'),(42810,39061,'blocks_7_content_heading','Frequently asked questions'),(42811,39061,'_blocks_7_content_heading','field_64d237e8bb1e3'),(42812,39061,'blocks_7_content_text',''),(42813,39061,'_blocks_7_content_text','field_64d237e8bb1e4'),(42814,39061,'blocks_7_content_actions',''),(42815,39061,'_blocks_7_content_actions','field_64d237e8bb1e5'),(42816,39061,'blocks_7_content_align','left'),(42817,39061,'_blocks_7_content_align','field_64d2443e6b6aa'),(42818,39061,'blocks_7_content',''),(42819,39061,'_blocks_7_content','field_64d237e8bb1e1'),(42820,39061,'blocks_7_accordion_content','faqs'),(42821,39061,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(42822,39061,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(42823,39061,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(42824,39061,'blocks_7_actions',''),(42825,39061,'_blocks_7_actions','field_61a746a817f7a'),(42826,39061,'blocks_8_acfe_flexible_toggle',''),(42827,39061,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(42828,39061,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(42829,39061,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(42830,39061,'blocks_8_options_alignment','center'),(42831,39061,'_blocks_8_options_alignment','field_61769449f5490'),(42832,39061,'blocks_8_options',''),(42833,39061,'_blocks_8_options','field_617693e1428f0'),(42834,39061,'blocks_8_promo_panel_image','39035'),(42835,39061,'_blocks_8_promo_panel_image','field_617693e1428f3'),(42836,39061,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(42837,39061,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(42838,39061,'blocks_8_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(42839,39061,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(42840,39061,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(42841,39061,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(42842,39061,'blocks_8_promo_panel_content_actions','1'),(42843,39061,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(42844,39061,'blocks_8_promo_panel_content',''),(42845,39061,'_blocks_8_promo_panel_content','field_617693e1428f4'),(42846,39062,'_wp_attached_file','2024/07/Website-Privacy-Policy-Rev01.pdf'),(42847,39062,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:36:\"Website-Privacy-Policy-Rev01-pdf.jpg\";s:5:\"width\";i:1060;s:6:\"height\";i:1499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259708;}s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Website-Privacy-Policy-Rev01-pdf-900x1273.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1273;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182726;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Website-Privacy-Policy-Rev01-pdf-400x566.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:566;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47650;}}s:8:\"filesize\";i:387179;}'),(42855,39063,'hero_style','default'),(42856,39063,'_hero_style','field_62051d9dc5324'),(42857,39063,'hero_image_pos_x','right'),(42858,39063,'_hero_image_pos_x','field_62ec3d05390bb'),(42859,39063,'hero_image_pos_y','top'),(42860,39063,'_hero_image_pos_y','field_62ec3d05390bc'),(42861,39063,'hero_image_pos',''),(42862,39063,'_hero_image_pos','field_62ec3d05390ba'),(42863,39063,'hero_title','Privacy Policy'),(42864,39063,'_hero_title','field_617571fe285e8'),(42865,39063,'hero_text','Our privacy policy details how we handle your data responsibly, keeping your information secure and confidential.'),(42866,39063,'_hero_text','field_6175723c285e9'),(42867,39063,'hero_actions',''),(42868,39063,'_hero_actions','field_61757270285ea'),(42869,39063,'hero_icon',''),(42870,39063,'_hero_icon','field_61a6182199d03'),(42871,39063,'fft_hide_from_listings','0'),(42872,39063,'_fft_hide_from_listings','field_61f1320446ab2'),(42873,39063,'fft_page_format','default'),(42874,39063,'_fft_page_format','field_61ae213f1f218'),(42875,39063,'fft_hide_nav','0'),(42876,39063,'_fft_hide_nav','field_635bd5e43527c'),(42877,39063,'fft_hide_header_call_to_action','0'),(42878,39063,'_fft_hide_header_call_to_action','field_635bd6723527d'),(42879,39063,'fft_page_sitemap','0'),(42880,39063,'_fft_page_sitemap','field_61af9b34e8181'),(42881,39063,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(42882,39063,'_blocks','field_6176696113096'),(42883,39063,'_thumbnail_id',''),(42884,39063,'__thumbnail_id','field_617570855ddaf'),(42885,39063,'blocks_0_acfe_flexible_toggle',''),(42886,39063,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(42887,39063,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(42888,39063,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(42889,39063,'blocks_0_content','<a href=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Website-Privacy-Policy-Rev01.pdf\">Website Privacy Policy - Rev01</a>'),(42890,39063,'_blocks_0_content','field_6193c9b5eac84'),(42891,39064,'hero_style','default'),(42892,39064,'_hero_style','field_62051d9dc5324'),(42893,39064,'_thumbnail_id',''),(42894,39064,'__thumbnail_id','field_617570855ddaf'),(42895,39064,'hero_image_pos_x','right'),(42896,39064,'_hero_image_pos_x','field_62ec3d05390bb'),(42897,39064,'hero_image_pos_y','top'),(42898,39064,'_hero_image_pos_y','field_62ec3d05390bc'),(42899,39064,'hero_image_pos',''),(42900,39064,'_hero_image_pos','field_62ec3d05390ba'),(42901,39064,'hero_title','Privacy Policy'),(42902,39064,'_hero_title','field_617571fe285e8'),(42903,39064,'hero_text','Our privacy policy details how we handle your data responsibly, keeping your information secure and confidential.'),(42904,39064,'_hero_text','field_6175723c285e9'),(42905,39064,'hero_actions',''),(42906,39064,'_hero_actions','field_61757270285ea'),(42907,39064,'hero_icon',''),(42908,39064,'_hero_icon','field_61a6182199d03'),(42909,39064,'fft_hide_from_listings','0'),(42910,39064,'_fft_hide_from_listings','field_61f1320446ab2'),(42911,39064,'fft_page_format','default'),(42912,39064,'_fft_page_format','field_61ae213f1f218'),(42913,39064,'fft_hide_nav','0'),(42914,39064,'_fft_hide_nav','field_635bd5e43527c'),(42915,39064,'fft_hide_header_call_to_action','0'),(42916,39064,'_fft_hide_header_call_to_action','field_635bd6723527d'),(42917,39064,'fft_page_sitemap','0'),(42918,39064,'_fft_page_sitemap','field_61af9b34e8181'),(42919,39064,'blocks_0_acfe_flexible_toggle',''),(42920,39064,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(42921,39064,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(42922,39064,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(42923,39064,'blocks_0_content','<a href=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Website-Privacy-Policy-Rev01.pdf\">Website Privacy Policy - Rev01</a>'),(42924,39064,'_blocks_0_content','field_6193c9b5eac84'),(42925,39064,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(42926,39064,'_blocks','field_6176696113096'),(42928,39065,'hero_style','default'),(42929,39065,'_hero_style','field_62051d9dc5324'),(42930,39065,'hero_image_pos_x','right'),(42931,39065,'_hero_image_pos_x','field_62ec3d05390bb'),(42932,39065,'hero_image_pos_y','top'),(42933,39065,'_hero_image_pos_y','field_62ec3d05390bc'),(42934,39065,'hero_image_pos',''),(42935,39065,'_hero_image_pos','field_62ec3d05390ba'),(42936,39065,'hero_title','Privacy Policy'),(42937,39065,'_hero_title','field_617571fe285e8'),(42938,39065,'hero_text','Our privacy policy details how we handle your data responsibly, keeping your information secure and confidential.'),(42939,39065,'_hero_text','field_6175723c285e9'),(42940,39065,'hero_actions',''),(42941,39065,'_hero_actions','field_61757270285ea'),(42942,39065,'hero_icon',''),(42943,39065,'_hero_icon','field_61a6182199d03'),(42944,39065,'fft_hide_from_listings','0'),(42945,39065,'_fft_hide_from_listings','field_61f1320446ab2'),(42946,39065,'fft_page_format','default'),(42947,39065,'_fft_page_format','field_61ae213f1f218'),(42948,39065,'fft_hide_nav','0'),(42949,39065,'_fft_hide_nav','field_635bd5e43527c'),(42950,39065,'fft_hide_header_call_to_action','0'),(42951,39065,'_fft_hide_header_call_to_action','field_635bd6723527d'),(42952,39065,'fft_page_sitemap','0'),(42953,39065,'_fft_page_sitemap','field_61af9b34e8181'),(42954,39065,'blocks',''),(42955,39065,'_blocks','field_6176696113096'),(42956,39065,'_thumbnail_id',''),(42957,39065,'__thumbnail_id','field_617570855ddaf'),(42959,39066,'_edit_lock','1749735866:18'),(42960,39066,'_edit_last','5'),(42961,39067,'_wp_attached_file','2024/07/Image-for-courses-page-hero.jpg'),(42962,39067,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/07/Image-for-courses-page-hero.jpg\";s:8:\"filesize\";i:535585;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Image-for-courses-page-hero-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119593;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"Image-for-courses-page-hero-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184140;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Image-for-courses-page-hero-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41111;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"Image-for-courses-page-hero-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95150;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"Image-for-courses-page-hero-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:271841;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:41:\"Image-for-courses-page-hero-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:422653;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:39:\"Image-for-courses-page-hero-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55544;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:39:\"Image-for-courses-page-hero-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176053;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:41:\"Image-for-courses-page-hero-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:270807;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:39:\"Image-for-courses-page-hero-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41020;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:39:\"Image-for-courses-page-hero-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118703;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:40:\"Image-for-courses-page-hero-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182761;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:39:\"Image-for-courses-page-hero-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47296;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:39:\"Image-for-courses-page-hero-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143802;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:40:\"Image-for-courses-page-hero-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221005;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:39:\"Image-for-courses-page-hero-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45414;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:39:\"Image-for-courses-page-hero-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135876;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:40:\"Image-for-courses-page-hero-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209500;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:39:\"Image-for-courses-page-hero-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38265;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:39:\"Image-for-courses-page-hero-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106945;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:40:\"Image-for-courses-page-hero-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162758;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1686319973\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(42963,39066,'hero_style','default'),(42964,39066,'_hero_style','field_62051d9dc5324'),(42965,39066,'_thumbnail_id','39067'),(42966,39066,'__thumbnail_id','field_617570855ddaf'),(42967,39066,'hero_image_pos_x','right'),(42968,39066,'_hero_image_pos_x','field_62ec3d05390bb'),(42969,39066,'hero_image_pos_y','top'),(42970,39066,'_hero_image_pos_y','field_62ec3d05390bc'),(42971,39066,'hero_image_pos',''),(42972,39066,'_hero_image_pos','field_62ec3d05390ba'),(42973,39066,'hero_title','Courses'),(42974,39066,'_hero_title','field_617571fe285e8'),(42975,39066,'hero_text','Explore Industry-Leading Biomechanics Courses for Fitness Professionals'),(42976,39066,'_hero_text','field_6175723c285e9'),(42977,39066,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(42978,39066,'_hero_actions_0_button','field_61757281285eb'),(42979,39066,'hero_actions','1'),(42980,39066,'_hero_actions','field_61757270285ea'),(42981,39066,'hero_icon',''),(42982,39066,'_hero_icon','field_61a6182199d03'),(42983,39066,'fft_hide_from_listings','0'),(42984,39066,'_fft_hide_from_listings','field_61f1320446ab2'),(42985,39066,'fft_page_format','default'),(42986,39066,'_fft_page_format','field_61ae213f1f218'),(42987,39066,'fft_hide_nav','0'),(42988,39066,'_fft_hide_nav','field_635bd5e43527c'),(42989,39066,'fft_hide_header_call_to_action','0'),(42990,39066,'_fft_hide_header_call_to_action','field_635bd6723527d'),(42991,39066,'fft_page_sitemap','0'),(42992,39066,'_fft_page_sitemap','field_61af9b34e8181'),(43005,39066,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"cards\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:8:\"template\";}'),(43006,39066,'_blocks','field_6176696113096'),(43007,39066,'_yoast_wpseo_estimated-reading-time-minutes','1'),(43008,39068,'hero_style','default'),(43009,39068,'_hero_style','field_62051d9dc5324'),(43010,39068,'_thumbnail_id','39067'),(43011,39068,'__thumbnail_id','field_617570855ddaf'),(43012,39068,'hero_image_pos_x','right'),(43013,39068,'_hero_image_pos_x','field_62ec3d05390bb'),(43014,39068,'hero_image_pos_y','top'),(43015,39068,'_hero_image_pos_y','field_62ec3d05390bc'),(43016,39068,'hero_image_pos',''),(43017,39068,'_hero_image_pos','field_62ec3d05390ba'),(43018,39068,'hero_title','Courses'),(43019,39068,'_hero_title','field_617571fe285e8'),(43020,39068,'hero_text',''),(43021,39068,'_hero_text','field_6175723c285e9'),(43022,39068,'hero_actions_0_button',''),(43023,39068,'_hero_actions_0_button','field_61757281285eb'),(43024,39068,'hero_actions','1'),(43025,39068,'_hero_actions','field_61757270285ea'),(43026,39068,'hero_icon',''),(43027,39068,'_hero_icon','field_61a6182199d03'),(43028,39068,'fft_hide_from_listings','0'),(43029,39068,'_fft_hide_from_listings','field_61f1320446ab2'),(43030,39068,'fft_page_format','default'),(43031,39068,'_fft_page_format','field_61ae213f1f218'),(43032,39068,'fft_hide_nav','0'),(43033,39068,'_fft_hide_nav','field_635bd5e43527c'),(43034,39068,'fft_hide_header_call_to_action','0'),(43035,39068,'_fft_hide_header_call_to_action','field_635bd6723527d'),(43036,39068,'fft_page_sitemap','0'),(43037,39068,'_fft_page_sitemap','field_61af9b34e8181'),(43038,39068,'blocks_0_acfe_flexible_toggle',''),(43039,39068,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(43040,39068,'blocks_0_acfe_flexible_layout_title','Text Block'),(43041,39068,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(43042,39068,'blocks_0_options_theme','#ffffff'),(43043,39068,'_blocks_0_options_theme','field_6176830e2ad17'),(43044,39068,'blocks_0_options',''),(43045,39068,'_blocks_0_options','field_6176830e2ad16'),(43046,39068,'blocks_0_text_block_heading',''),(43047,39068,'_blocks_0_text_block_heading','field_617669d413097'),(43048,39068,'blocks_0_text_block_content',''),(43049,39068,'_blocks_0_text_block_content','field_617669ec13098'),(43050,39068,'blocks','a:1:{i:0;s:10:\"text_block\";}'),(43051,39068,'_blocks','field_6176696113096'),(43088,39069,'hero_style','default'),(43089,39069,'_hero_style','field_62051d9dc5324'),(43090,39069,'_thumbnail_id','39067'),(43091,39069,'__thumbnail_id','field_617570855ddaf'),(43092,39069,'hero_image_pos_x','right'),(43093,39069,'_hero_image_pos_x','field_62ec3d05390bb'),(43094,39069,'hero_image_pos_y','top'),(43095,39069,'_hero_image_pos_y','field_62ec3d05390bc'),(43096,39069,'hero_image_pos',''),(43097,39069,'_hero_image_pos','field_62ec3d05390ba'),(43098,39069,'hero_title','Courses'),(43099,39069,'_hero_title','field_617571fe285e8'),(43100,39069,'hero_text',''),(43101,39069,'_hero_text','field_6175723c285e9'),(43102,39069,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(43103,39069,'_hero_actions_0_button','field_61757281285eb'),(43104,39069,'hero_actions','1'),(43105,39069,'_hero_actions','field_61757270285ea'),(43106,39069,'hero_icon',''),(43107,39069,'_hero_icon','field_61a6182199d03'),(43108,39069,'fft_hide_from_listings','0'),(43109,39069,'_fft_hide_from_listings','field_61f1320446ab2'),(43110,39069,'fft_page_format','default'),(43111,39069,'_fft_page_format','field_61ae213f1f218'),(43112,39069,'fft_hide_nav','0'),(43113,39069,'_fft_hide_nav','field_635bd5e43527c'),(43114,39069,'fft_hide_header_call_to_action','0'),(43115,39069,'_fft_hide_header_call_to_action','field_635bd6723527d'),(43116,39069,'fft_page_sitemap','0'),(43117,39069,'_fft_page_sitemap','field_61af9b34e8181'),(43118,39069,'blocks','a:1:{i:0;s:5:\"icons\";}'),(43119,39069,'_blocks','field_6176696113096'),(43120,39069,'blocks_0_acfe_flexible_toggle',''),(43121,39069,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(43122,39069,'blocks_0_acfe_flexible_layout_title','Icons'),(43123,39069,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(43124,39069,'blocks_0_options_theme','#ffffff'),(43125,39069,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(43126,39069,'blocks_0_options_format','row'),(43127,39069,'_blocks_0_options_format','field_64bfde9a90690'),(43128,39069,'blocks_0_options',''),(43129,39069,'_blocks_0_options','field_64bfdd9b90684'),(43130,39069,'blocks_0_icon_row_items_0_icon','world.svg'),(43131,39069,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(43132,39069,'blocks_0_icon_row_items_0_label',''),(43133,39069,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(43134,39069,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(43135,39069,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(43136,39069,'blocks_0_icon_row_items_1_icon','home-study.svg'),(43137,39069,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(43138,39069,'blocks_0_icon_row_items_1_label',''),(43139,39069,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(43140,39069,'blocks_0_icon_row_items_1_text','Built and taught in house'),(43141,39069,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(43142,39069,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(43143,39069,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(43144,39069,'blocks_0_icon_row_items_2_label',''),(43145,39069,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(43146,39069,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(43147,39069,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(43148,39069,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(43149,39069,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(43150,39069,'blocks_0_icon_row_items_3_label',''),(43151,39069,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(43152,39069,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(43153,39069,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(43154,39069,'blocks_0_icon_row_items','4'),(43155,39069,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(43224,39071,'hero_style','default'),(43225,39071,'_hero_style','field_62051d9dc5324'),(43226,39071,'_thumbnail_id','39067'),(43227,39071,'__thumbnail_id','field_617570855ddaf'),(43228,39071,'hero_image_pos_x','right'),(43229,39071,'_hero_image_pos_x','field_62ec3d05390bb'),(43230,39071,'hero_image_pos_y','top'),(43231,39071,'_hero_image_pos_y','field_62ec3d05390bc'),(43232,39071,'hero_image_pos',''),(43233,39071,'_hero_image_pos','field_62ec3d05390ba'),(43234,39071,'hero_title','Courses'),(43235,39071,'_hero_title','field_617571fe285e8'),(43236,39071,'hero_text',''),(43237,39071,'_hero_text','field_6175723c285e9'),(43238,39071,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(43239,39071,'_hero_actions_0_button','field_61757281285eb'),(43240,39071,'hero_actions','1'),(43241,39071,'_hero_actions','field_61757270285ea'),(43242,39071,'hero_icon',''),(43243,39071,'_hero_icon','field_61a6182199d03'),(43244,39071,'fft_hide_from_listings','0'),(43245,39071,'_fft_hide_from_listings','field_61f1320446ab2'),(43246,39071,'fft_page_format','default'),(43247,39071,'_fft_page_format','field_61ae213f1f218'),(43248,39071,'fft_hide_nav','0'),(43249,39071,'_fft_hide_nav','field_635bd5e43527c'),(43250,39071,'fft_hide_header_call_to_action','0'),(43251,39071,'_fft_hide_header_call_to_action','field_635bd6723527d'),(43252,39071,'fft_page_sitemap','0'),(43253,39071,'_fft_page_sitemap','field_61af9b34e8181'),(43254,39071,'blocks','a:1:{i:0;s:5:\"icons\";}'),(43255,39071,'_blocks','field_6176696113096'),(43256,39071,'blocks_0_acfe_flexible_toggle',''),(43257,39071,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(43258,39071,'blocks_0_acfe_flexible_layout_title','Icons'),(43259,39071,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(43260,39071,'blocks_0_options_theme','#b61234'),(43261,39071,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(43262,39071,'blocks_0_options_format','row'),(43263,39071,'_blocks_0_options_format','field_64bfde9a90690'),(43264,39071,'blocks_0_options',''),(43265,39071,'_blocks_0_options','field_64bfdd9b90684'),(43266,39071,'blocks_0_icon_row_items_0_icon','world.svg'),(43267,39071,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(43268,39071,'blocks_0_icon_row_items_0_label',''),(43269,39071,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(43270,39071,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(43271,39071,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(43272,39071,'blocks_0_icon_row_items_1_icon','home-study.svg'),(43273,39071,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(43274,39071,'blocks_0_icon_row_items_1_label',''),(43275,39071,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(43276,39071,'blocks_0_icon_row_items_1_text','Built and taught in house'),(43277,39071,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(43278,39071,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(43279,39071,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(43280,39071,'blocks_0_icon_row_items_2_label',''),(43281,39071,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(43282,39071,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(43283,39071,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(43284,39071,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(43285,39071,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(43286,39071,'blocks_0_icon_row_items_3_label',''),(43287,39071,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(43288,39071,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(43289,39071,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(43290,39071,'blocks_0_icon_row_items','4'),(43291,39071,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(43308,39072,'hero_style','default'),(43309,39072,'_hero_style','field_62051d9dc5324'),(43310,39072,'_thumbnail_id','39067'),(43311,39072,'__thumbnail_id','field_617570855ddaf'),(43312,39072,'hero_image_pos_x','right'),(43313,39072,'_hero_image_pos_x','field_62ec3d05390bb'),(43314,39072,'hero_image_pos_y','top'),(43315,39072,'_hero_image_pos_y','field_62ec3d05390bc'),(43316,39072,'hero_image_pos',''),(43317,39072,'_hero_image_pos','field_62ec3d05390ba'),(43318,39072,'hero_title','Courses'),(43319,39072,'_hero_title','field_617571fe285e8'),(43320,39072,'hero_text',''),(43321,39072,'_hero_text','field_6175723c285e9'),(43322,39072,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(43323,39072,'_hero_actions_0_button','field_61757281285eb'),(43324,39072,'hero_actions','1'),(43325,39072,'_hero_actions','field_61757270285ea'),(43326,39072,'hero_icon',''),(43327,39072,'_hero_icon','field_61a6182199d03'),(43328,39072,'fft_hide_from_listings','0'),(43329,39072,'_fft_hide_from_listings','field_61f1320446ab2'),(43330,39072,'fft_page_format','default'),(43331,39072,'_fft_page_format','field_61ae213f1f218'),(43332,39072,'fft_hide_nav','0'),(43333,39072,'_fft_hide_nav','field_635bd5e43527c'),(43334,39072,'fft_hide_header_call_to_action','0'),(43335,39072,'_fft_hide_header_call_to_action','field_635bd6723527d'),(43336,39072,'fft_page_sitemap','0'),(43337,39072,'_fft_page_sitemap','field_61af9b34e8181'),(43338,39072,'blocks','a:3:{i:0;s:5:\"icons\";i:1;s:16:\"standard_content\";i:2;s:14:\"course_compare\";}'),(43339,39072,'_blocks','field_6176696113096'),(43340,39072,'blocks_0_acfe_flexible_toggle',''),(43341,39072,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(43342,39072,'blocks_0_acfe_flexible_layout_title','Icons'),(43343,39072,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(43344,39072,'blocks_0_options_theme','#b61234'),(43345,39072,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(43346,39072,'blocks_0_options_format','row'),(43347,39072,'_blocks_0_options_format','field_64bfde9a90690'),(43348,39072,'blocks_0_options',''),(43349,39072,'_blocks_0_options','field_64bfdd9b90684'),(43350,39072,'blocks_0_icon_row_items_0_icon','world.svg'),(43351,39072,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(43352,39072,'blocks_0_icon_row_items_0_label',''),(43353,39072,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(43354,39072,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(43355,39072,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(43356,39072,'blocks_0_icon_row_items_1_icon','home-study.svg'),(43357,39072,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(43358,39072,'blocks_0_icon_row_items_1_label',''),(43359,39072,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(43360,39072,'blocks_0_icon_row_items_1_text','Built and taught in house'),(43361,39072,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(43362,39072,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(43363,39072,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(43364,39072,'blocks_0_icon_row_items_2_label',''),(43365,39072,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(43366,39072,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(43367,39072,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(43368,39072,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(43369,39072,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(43370,39072,'blocks_0_icon_row_items_3_label',''),(43371,39072,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(43372,39072,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(43373,39072,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(43374,39072,'blocks_0_icon_row_items','4'),(43375,39072,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(43376,39072,'blocks_1_acfe_flexible_toggle',''),(43377,39072,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(43378,39072,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(43379,39072,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(43380,39072,'blocks_1_content','<h2 style=\"text-align: center;\"><strong>Overview</strong></h2>\r\n<p style=\"text-align: center;\">Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.</p>'),(43381,39072,'_blocks_1_content','field_6193c9b5eac84'),(43382,39072,'blocks_2_acfe_flexible_toggle',''),(43383,39072,'_blocks_2_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(43384,39072,'blocks_2_acfe_flexible_layout_title','Course Comparison'),(43385,39072,'_blocks_2_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(43386,39072,'blocks_2_options_theme','#ffffff'),(43387,39072,'_blocks_2_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(43388,39072,'blocks_2_options',''),(43389,39072,'_blocks_2_options','field_617ac0b7f6c08'),(43390,39072,'blocks_2_show','category'),(43391,39072,'_blocks_2_show','field_61a49cba9d946'),(43392,39073,'_edit_lock','1721745276:5'),(43393,39073,'_edit_last','5'),(43394,39073,'blocks_0_acfe_flexible_toggle',''),(43395,39073,'_blocks_0_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(43396,39073,'blocks_0_acfe_flexible_layout_title','Promo Panel'),(43397,39073,'_blocks_0_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(43398,39073,'blocks_0_options_alignment','center'),(43399,39073,'_blocks_0_options_alignment','field_61769449f5490'),(43400,39073,'blocks_0_options',''),(43401,39073,'_blocks_0_options','field_617693e1428f0'),(43402,39073,'blocks_0_promo_panel_image','39035'),(43403,39073,'_blocks_0_promo_panel_image','field_617693e1428f3'),(43404,39073,'blocks_0_promo_panel_content_heading','Ready to level up your fitness career ?'),(43405,39073,'_blocks_0_promo_panel_content_heading','field_617693e1428f6'),(43406,39073,'blocks_0_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(43407,39073,'_blocks_0_promo_panel_content_text','field_617693e1428f7'),(43408,39073,'blocks_0_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39066-6\";s:6:\"target\";s:0:\"\";}'),(43409,39073,'_blocks_0_promo_panel_content_actions_0_button','field_617693e1428f9'),(43410,39073,'blocks_0_promo_panel_content_actions','1'),(43411,39073,'_blocks_0_promo_panel_content_actions','field_617693e1428f8'),(43412,39073,'blocks_0_promo_panel_content',''),(43413,39073,'_blocks_0_promo_panel_content','field_617693e1428f4'),(43414,39073,'blocks','a:1:{i:0;s:11:\"promo_panel\";}'),(43415,39073,'_blocks','field_6176696113096'),(43422,39074,'hero_style','default'),(43423,39074,'_hero_style','field_62051d9dc5324'),(43424,39074,'_thumbnail_id','39067'),(43425,39074,'__thumbnail_id','field_617570855ddaf'),(43426,39074,'hero_image_pos_x','right'),(43427,39074,'_hero_image_pos_x','field_62ec3d05390bb'),(43428,39074,'hero_image_pos_y','top'),(43429,39074,'_hero_image_pos_y','field_62ec3d05390bc'),(43430,39074,'hero_image_pos',''),(43431,39074,'_hero_image_pos','field_62ec3d05390ba'),(43432,39074,'hero_title','Courses'),(43433,39074,'_hero_title','field_617571fe285e8'),(43434,39074,'hero_text',''),(43435,39074,'_hero_text','field_6175723c285e9'),(43436,39074,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(43437,39074,'_hero_actions_0_button','field_61757281285eb'),(43438,39074,'hero_actions','1'),(43439,39074,'_hero_actions','field_61757270285ea'),(43440,39074,'hero_icon',''),(43441,39074,'_hero_icon','field_61a6182199d03'),(43442,39074,'fft_hide_from_listings','0'),(43443,39074,'_fft_hide_from_listings','field_61f1320446ab2'),(43444,39074,'fft_page_format','default'),(43445,39074,'_fft_page_format','field_61ae213f1f218'),(43446,39074,'fft_hide_nav','0'),(43447,39074,'_fft_hide_nav','field_635bd5e43527c'),(43448,39074,'fft_hide_header_call_to_action','0'),(43449,39074,'_fft_hide_header_call_to_action','field_635bd6723527d'),(43450,39074,'fft_page_sitemap','0'),(43451,39074,'_fft_page_sitemap','field_61af9b34e8181'),(43452,39074,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:16:\"standard_content\";i:2;s:14:\"course_compare\";i:3;s:8:\"template\";}'),(43453,39074,'_blocks','field_6176696113096'),(43454,39074,'blocks_0_acfe_flexible_toggle',''),(43455,39074,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(43456,39074,'blocks_0_acfe_flexible_layout_title','Icons'),(43457,39074,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(43458,39074,'blocks_0_options_theme','#b61234'),(43459,39074,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(43460,39074,'blocks_0_options_format','row'),(43461,39074,'_blocks_0_options_format','field_64bfde9a90690'),(43462,39074,'blocks_0_options',''),(43463,39074,'_blocks_0_options','field_64bfdd9b90684'),(43464,39074,'blocks_0_icon_row_items_0_icon','world.svg'),(43465,39074,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(43466,39074,'blocks_0_icon_row_items_0_label',''),(43467,39074,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(43468,39074,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(43469,39074,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(43470,39074,'blocks_0_icon_row_items_1_icon','home-study.svg'),(43471,39074,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(43472,39074,'blocks_0_icon_row_items_1_label',''),(43473,39074,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(43474,39074,'blocks_0_icon_row_items_1_text','Built and taught in house'),(43475,39074,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(43476,39074,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(43477,39074,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(43478,39074,'blocks_0_icon_row_items_2_label',''),(43479,39074,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(43480,39074,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(43481,39074,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(43482,39074,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(43483,39074,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(43484,39074,'blocks_0_icon_row_items_3_label',''),(43485,39074,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(43486,39074,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(43487,39074,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(43488,39074,'blocks_0_icon_row_items','4'),(43489,39074,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(43490,39074,'blocks_1_acfe_flexible_toggle',''),(43491,39074,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(43492,39074,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(43493,39074,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(43494,39074,'blocks_1_content','<h2 style=\"text-align: center;\"><strong>Overview</strong></h2>\r\n<p style=\"text-align: center;\">Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.</p>'),(43495,39074,'_blocks_1_content','field_6193c9b5eac84'),(43496,39074,'blocks_2_acfe_flexible_toggle',''),(43497,39074,'_blocks_2_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(43498,39074,'blocks_2_acfe_flexible_layout_title','Course Comparison'),(43499,39074,'_blocks_2_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(43500,39074,'blocks_2_options_theme','#ffffff'),(43501,39074,'_blocks_2_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(43502,39074,'blocks_2_options',''),(43503,39074,'_blocks_2_options','field_617ac0b7f6c08'),(43504,39074,'blocks_2_show','category'),(43505,39074,'_blocks_2_show','field_61a49cba9d946'),(43506,39074,'blocks_3_acfe_flexible_toggle',''),(43507,39074,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(43508,39074,'blocks_3_acfe_flexible_layout_title','Template'),(43509,39074,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(43510,39074,'blocks_3_template','39073'),(43511,39074,'_blocks_3_template','field_617bdd570fe01'),(43514,39076,'_wp_attached_file','2024/07/CPD-courses-page-hero-image.jpg'),(43515,39076,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:39:\"2024/07/CPD-courses-page-hero-image.jpg\";s:8:\"filesize\";i:377451;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"CPD-courses-page-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94012;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"CPD-courses-page-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143213;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"CPD-courses-page-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28078;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"CPD-courses-page-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74054;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:41:\"CPD-courses-page-hero-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205747;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:41:\"CPD-courses-page-hero-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:315205;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:39:\"CPD-courses-page-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34780;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:39:\"CPD-courses-page-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115895;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:41:\"CPD-courses-page-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175341;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:39:\"CPD-courses-page-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27923;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:39:\"CPD-courses-page-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94038;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:40:\"CPD-courses-page-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143185;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:39:\"CPD-courses-page-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26589;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:39:\"CPD-courses-page-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87611;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:40:\"CPD-courses-page-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132790;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:39:\"CPD-courses-page-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30120;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:39:\"CPD-courses-page-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102453;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:40:\"CPD-courses-page-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155475;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:39:\"CPD-courses-page-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24394;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:39:\"CPD-courses-page-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81299;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:40:\"CPD-courses-page-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123866;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(44142,39085,'_wp_attached_file','2024/07/FutureFitRebrand-Images-Nutrition-HomeLearning-88-scaled.jpg'),(44143,39085,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:68:\"2024/07/FutureFitRebrand-Images-Nutrition-HomeLearning-88-scaled.jpg\";s:8:\"filesize\";i:438920;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:61:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101762;}s:5:\"large\";a:5:{s:4:\"file\";s:62:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144654;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:61:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49002;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:61:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85447;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:63:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201549;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:63:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:308285;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:61:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59099;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:61:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139261;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:63:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203882;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:61:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49002;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:61:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101762;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:62:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144654;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:61:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52898;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:61:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116152;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:62:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167066;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:61:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51482;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:61:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111799;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:62:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160506;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:61:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47703;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:61:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97420;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:62:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137752;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1635340274\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"38\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:53:\"FutureFitRebrand-Images-Nutrition-HomeLearning-88.jpg\";}'),(44219,39087,'_edit_lock','1726554379:11'),(44220,39087,'_edit_last','11'),(44221,39087,'blocks_0_acfe_flexible_toggle',''),(44222,39087,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(44223,39087,'blocks_0_acfe_flexible_layout_title','Icons'),(44224,39087,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(44225,39087,'blocks_0_options_theme','#b61234'),(44226,39087,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(44227,39087,'blocks_0_options_format','row'),(44228,39087,'_blocks_0_options_format','field_64bfde9a90690'),(44229,39087,'blocks_0_options',''),(44230,39087,'_blocks_0_options','field_64bfdd9b90684'),(44231,39087,'blocks_0_icon_row_items_0_icon','study.svg'),(44232,39087,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(44233,39087,'blocks_0_icon_row_items_0_label',''),(44234,39087,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(44235,39087,'blocks_0_icon_row_items_0_text','Supported by over 20 years of research'),(44236,39087,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(44237,39087,'blocks_0_icon_row_items_1_icon','finance.svg'),(44238,39087,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(44239,39087,'blocks_0_icon_row_items_1_label',''),(44240,39087,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(44241,39087,'blocks_0_icon_row_items_1_text','Monthly finance payments available'),(44242,39087,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(44243,39087,'blocks_0_icon_row_items_2_icon','leaders.svg'),(44244,39087,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(44245,39087,'blocks_0_icon_row_items_2_label',''),(44246,39087,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(44247,39087,'blocks_0_icon_row_items_2_text','Expand and retain your client base'),(44248,39087,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(44249,39087,'blocks_0_icon_row_items_3_icon','progression.svg'),(44250,39087,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(44251,39087,'blocks_0_icon_row_items_3_label',''),(44252,39087,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(44253,39087,'blocks_0_icon_row_items_3_text','Take your understanding of movement to the next level'),(44254,39087,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(44255,39087,'blocks_0_icon_row_items','4'),(44256,39087,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(44257,39087,'blocks','a:1:{i:0;s:5:\"icons\";}'),(44258,39087,'_blocks','field_6176696113096'),(44386,39090,'_wp_attached_file','2024/07/Behaviour-Change-coaching-page-hero-image-scaled.jpg'),(44387,39090,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:60:\"2024/07/Behaviour-Change-coaching-page-hero-image-scaled.jpg\";s:8:\"filesize\";i:388625;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Behaviour-Change-coaching-page-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90835;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Behaviour-Change-coaching-page-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124362;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Behaviour-Change-coaching-page-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47576;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Behaviour-Change-coaching-page-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77826;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"Behaviour-Change-coaching-page-hero-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170737;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:55:\"Behaviour-Change-coaching-page-hero-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:263428;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:53:\"Behaviour-Change-coaching-page-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53734;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:53:\"Behaviour-Change-coaching-page-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114795;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:55:\"Behaviour-Change-coaching-page-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165472;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:53:\"Behaviour-Change-coaching-page-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47562;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:53:\"Behaviour-Change-coaching-page-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90835;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:54:\"Behaviour-Change-coaching-page-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124362;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:53:\"Behaviour-Change-coaching-page-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47864;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:53:\"Behaviour-Change-coaching-page-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95139;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:54:\"Behaviour-Change-coaching-page-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134588;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:53:\"Behaviour-Change-coaching-page-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49526;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:53:\"Behaviour-Change-coaching-page-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97759;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:54:\"Behaviour-Change-coaching-page-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135866;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:53:\"Behaviour-Change-coaching-page-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44787;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:53:\"Behaviour-Change-coaching-page-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81437;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:54:\"Behaviour-Change-coaching-page-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109389;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1634029656\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:45:\"Behaviour-Change-coaching-page-hero-image.jpg\";}'),(44940,39100,'_wp_attached_file','2024/07/50.50-behaviour-change-coaching-image-scaled.jpg'),(44941,39100,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:56:\"2024/07/50.50-behaviour-change-coaching-image-scaled.jpg\";s:8:\"filesize\";i:488694;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"50.50-behaviour-change-coaching-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88670;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"50.50-behaviour-change-coaching-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128156;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"50.50-behaviour-change-coaching-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40221;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"50.50-behaviour-change-coaching-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73812;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"50.50-behaviour-change-coaching-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185341;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"50.50-behaviour-change-coaching-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:309998;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:49:\"50.50-behaviour-change-coaching-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51775;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:49:\"50.50-behaviour-change-coaching-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133934;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:51:\"50.50-behaviour-change-coaching-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:213783;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:49:\"50.50-behaviour-change-coaching-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40212;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:49:\"50.50-behaviour-change-coaching-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88670;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:50:\"50.50-behaviour-change-coaching-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128156;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:49:\"50.50-behaviour-change-coaching-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44599;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:49:\"50.50-behaviour-change-coaching-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110932;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:50:\"50.50-behaviour-change-coaching-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176119;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:49:\"50.50-behaviour-change-coaching-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43665;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:49:\"50.50-behaviour-change-coaching-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100492;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:50:\"50.50-behaviour-change-coaching-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148777;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:49:\"50.50-behaviour-change-coaching-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37464;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:49:\"50.50-behaviour-change-coaching-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79858;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:50:\"50.50-behaviour-change-coaching-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114089;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626527445\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:41:\"50.50-behaviour-change-coaching-image.jpg\";}'),(47476,39124,'_wp_attached_file','2024/07/course-content-tabs-ection.png'),(47477,39124,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:38:\"2024/07/course-content-tabs-ection.png\";s:8:\"filesize\";i:310504;s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"course-content-tabs-ection-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80424;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"course-content-tabs-ection-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227470;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:38:\"course-content-tabs-ection-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117394;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:38:\"course-content-tabs-ection-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80237;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:38:\"course-content-tabs-ection-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94159;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:38:\"course-content-tabs-ection-675x600.png\";s:5:\"width\";i:675;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:252564;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:38:\"course-content-tabs-ection-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89711;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:38:\"course-content-tabs-ection-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79771;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:38:\"course-content-tabs-ection-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:299150;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(48583,37121,'_edit_lock','1726231794:14'),(48584,33066,'_edit_lock','1745501323:18'),(49391,39134,'_edit_lock','1727266487:5'),(49392,39134,'_edit_last','14'),(49393,39135,'_edit_lock','1727266481:5'),(49394,39135,'_edit_last','14'),(49395,39137,'_edit_lock','1727266473:5'),(49396,39137,'_edit_last','14'),(49397,39138,'_edit_lock','1727266465:5'),(49398,39138,'_edit_last','14'),(49399,39139,'_edit_lock','1727266445:5'),(49400,39139,'_edit_last','5'),(50771,39147,'hero_style','default'),(50772,39147,'_hero_style','field_62051d9dc5324'),(50773,39147,'hero_image_pos_x','right'),(50774,39147,'_hero_image_pos_x','field_62ec3d05390bb'),(50775,39147,'hero_image_pos_y','top'),(50776,39147,'_hero_image_pos_y','field_62ec3d05390bc'),(50777,39147,'hero_image_pos',''),(50778,39147,'_hero_image_pos','field_62ec3d05390ba'),(50779,39147,'hero_title','Biomechanics Education'),(50780,39147,'_hero_title','field_617571fe285e8'),(50781,39147,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(50782,39147,'_hero_text','field_6175723c285e9'),(50783,39147,'hero_actions','1'),(50784,39147,'_hero_actions','field_61757270285ea'),(50785,39147,'hero_icon',''),(50786,39147,'_hero_icon','field_61a6182199d03'),(50787,39147,'fft_hide_from_listings','0'),(50788,39147,'_fft_hide_from_listings','field_61f1320446ab2'),(50789,39147,'fft_page_format','default'),(50790,39147,'_fft_page_format','field_61ae213f1f218'),(50791,39147,'fft_hide_nav','0'),(50792,39147,'_fft_hide_nav','field_635bd5e43527c'),(50793,39147,'fft_hide_header_call_to_action','0'),(50794,39147,'_fft_hide_header_call_to_action','field_635bd6723527d'),(50795,39147,'fft_page_sitemap','0'),(50796,39147,'_fft_page_sitemap','field_61af9b34e8181'),(50797,39147,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:18:\"testimonial_slider\";}'),(50798,39147,'_blocks','field_6176696113096'),(50799,39147,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(50800,39147,'_hero_actions_0_button','field_61757281285eb'),(50801,39147,'_thumbnail_id','38951'),(50802,39147,'__thumbnail_id','field_617570855ddaf'),(50803,39147,'blocks_1_acfe_flexible_toggle','1'),(50804,39147,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(50805,39147,'blocks_1_acfe_flexible_layout_title','Video'),(50806,39147,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(50807,39147,'blocks_1_size','large'),(50808,39147,'_blocks_1_size','field_6487038f297c1'),(50809,39147,'blocks_1_video_src',''),(50810,39147,'_blocks_1_video_src','field_6193c4a98ec07'),(50811,39147,'blocks_1_video_thumbnail',''),(50812,39147,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(50813,39147,'blocks_1_row_content_title',''),(50814,39147,'_blocks_1_row_content_title','field_64870132a865d'),(50815,39147,'blocks_1_row_content_heading',''),(50816,39147,'_blocks_1_row_content_heading','field_64870142a865e'),(50817,39147,'blocks_1_row_content_text',''),(50818,39147,'_blocks_1_row_content_text','field_64870148a865f'),(50819,39147,'blocks_1_row_content',''),(50820,39147,'_blocks_1_row_content','field_6487008ba865c'),(50821,39147,'blocks_0_acfe_flexible_toggle',''),(50822,39147,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(50823,39147,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(50824,39147,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(50825,39147,'blocks_0_options_theme','#ffffff'),(50826,39147,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(50827,39147,'blocks_0_options_reverse','0'),(50828,39147,'_blocks_0_options_reverse','field_61768049bb8ac'),(50829,39147,'blocks_0_options',''),(50830,39147,'_blocks_0_options','field_617682517c334'),(50831,39147,'blocks_0_split_5050_image','38950'),(50832,39147,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(50833,39147,'blocks_0_split_5050_video',''),(50834,39147,'_blocks_0_split_5050_video','field_6239f3160848a'),(50835,39147,'blocks_0_split_5050_content_title',''),(50836,39147,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(50837,39147,'blocks_0_split_5050_content_heading','What is Biomechanics Education ?'),(50838,39147,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(50839,39147,'blocks_0_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(50840,39147,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(50841,39147,'blocks_0_split_5050_content_actions',''),(50842,39147,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(50843,39147,'blocks_0_split_5050_content',''),(50844,39147,'_blocks_0_split_5050_content','field_61767afceb8ba'),(50845,39147,'blocks_2_acfe_flexible_toggle',''),(50846,39147,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(50847,39147,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(50848,39147,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(50849,39147,'blocks_2_options_theme','#ffffff'),(50850,39147,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(50851,39147,'blocks_2_options_reverse','0'),(50852,39147,'_blocks_2_options_reverse','field_61768049bb8ac'),(50853,39147,'blocks_2_options',''),(50854,39147,'_blocks_2_options','field_617682517c334'),(50855,39147,'blocks_2_split_5050_image','38960'),(50856,39147,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(50857,39147,'blocks_2_split_5050_video',''),(50858,39147,'_blocks_2_split_5050_video','field_6239f3160848a'),(50859,39147,'blocks_2_split_5050_content_title','Working In Partnership'),(50860,39147,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(50861,39147,'blocks_2_split_5050_content_heading','Biomechanics Education and Future Fit'),(50862,39147,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(50863,39147,'blocks_2_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(50864,39147,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(50865,39147,'blocks_2_split_5050_content_actions',''),(50866,39147,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(50867,39147,'blocks_2_split_5050_content',''),(50868,39147,'_blocks_2_split_5050_content','field_61767afceb8ba'),(50869,39147,'blocks_3_acfe_flexible_toggle',''),(50870,39147,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(50871,39147,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(50872,39147,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(50873,39147,'blocks_3_testimonial_slider_content_title',''),(50874,39147,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(50875,39147,'blocks_3_testimonial_slider_content_heading','Testimonials'),(50876,39147,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(50877,39147,'blocks_3_testimonial_slider_content_text',''),(50878,39147,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(50879,39147,'blocks_3_testimonial_slider_content_actions',''),(50880,39147,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(50881,39147,'blocks_3_testimonial_slider_content',''),(50882,39147,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(50883,39147,'blocks_3_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(50884,39147,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(50885,39147,'blocks_3_testimonial_slider_ambassador_bool','0'),(50886,39147,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(50888,38965,'_yoast_wpseo_estimated-reading-time-minutes','0'),(50890,38588,'_wp_attachment_context','custom-header'),(50891,38588,'_wp_attachment_custom_header_last_used_biomechaqnics','1450943915'),(50892,38588,'_wp_attachment_is_custom_header','biomechaqnics'),(50893,38588,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:16:\"cropped-logo.jpg\";}}'),(50894,38589,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1200;s:6:\"height\";i:419;s:4:\"file\";s:18:\"cropped-logo-1.jpg\";}}'),(50895,192,'dt-img-hide-title','0'),(50896,194,'dt-img-hide-title','0'),(50897,205,'dt-img-hide-title','0'),(50898,206,'dt-img-hide-title','0'),(50899,208,'dt-img-hide-title','0'),(50900,247,'dt-img-hide-title','0'),(50901,248,'_wp_attachment_context','site-icon'),(50902,248,'dt-img-hide-title','0'),(50903,265,'dt-img-hide-title','0'),(50904,283,'dt-img-hide-title','0'),(50905,284,'dt-img-hide-title','0'),(50906,285,'dt-img-hide-title','0'),(50907,287,'dt-img-hide-title','0'),(50908,290,'dt-img-hide-title','0'),(50909,291,'dt-img-hide-title','0'),(50910,294,'dt-img-hide-title','0'),(50911,297,'dt-img-hide-title','0'),(50912,333,'dt-img-hide-title','0'),(50913,341,'dt-img-hide-title','0'),(50914,407,'dt-img-hide-title','0'),(50915,458,'dt-img-hide-title','0'),(50916,495,'dt-img-hide-title','0'),(50917,497,'dt-img-hide-title','0'),(50918,505,'dt-img-hide-title','0'),(50919,210,'dt-video-url','https://www.youtube.com/watch?v=1GOLAWeHgE4'),(50920,210,'dt-img-link',''),(50921,210,'dt-img-hide-title','0'),(50922,221,'dt-video-url','https://www.youtube.com/watch?v=Mx6xkyi5Ij8'),(50923,221,'dt-img-link',''),(50924,221,'dt-img-hide-title','0'),(50925,224,'dt-video-url','https://www.youtube.com/watch?v=Cnfj6QCGLyA'),(50926,224,'dt-img-link',''),(50927,224,'dt-img-hide-title','0'),(50928,228,'dt-video-url','https://www.youtube.com/watch?v=GsrIZ1mnOvU'),(50929,228,'dt-img-link',''),(50930,228,'dt-img-hide-title','0'),(50931,230,'dt-video-url','https://www.youtube.com/watch?v=jEa0tOaffRg'),(50932,230,'dt-img-link',''),(50933,230,'dt-img-hide-title','0'),(50934,237,'dt-img-hide-title','0'),(50935,237,'dt-img-link',''),(50936,237,'dt-video-url','https://www.youtube.com/watch?v=SggKs7nGKIU'),(50937,557,'dt-img-hide-title','0'),(50938,559,'dt-img-hide-title','0'),(50939,562,'dt-img-hide-title','0'),(50940,569,'dt-img-hide-title','0'),(50941,592,'dt-img-hide-title','0'),(50942,596,'dt-img-hide-title','0'),(50943,617,'dt-img-hide-title','0'),(50944,620,'dt-img-hide-title','0'),(50945,621,'dt-img-hide-title','0'),(50946,623,'dt-img-hide-title','0'),(50947,624,'dt-img-hide-title','0'),(50948,644,'dt-img-hide-title','0'),(50949,648,'dt-img-hide-title','0'),(50950,824,'dt-video-url','https://www.youtube.com/watch?v=KymrN15iiCI'),(50951,824,'dt-img-link',''),(50952,824,'dt-img-hide-title','0'),(50953,825,'dt-video-url','https://www.youtube.com/watch?v=azFtBCV7A0U'),(50954,825,'dt-img-link',''),(50955,825,'dt-img-hide-title','0'),(50956,828,'dt-video-url','https://www.youtube.com/watch?v=iwg_w3R6KMI'),(50957,828,'dt-img-link',''),(50958,828,'dt-img-hide-title','0'),(50959,1450,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(50960,1450,'dt-img-link',''),(50961,1450,'dt-img-hide-title','0'),(50962,1451,'dt-video-url','https://www.youtube.com/watch?v=9HyO6cKn6Ys'),(50963,1451,'dt-img-link',''),(50964,1451,'dt-img-hide-title','0'),(50965,1452,'dt-video-url','https://www.youtube.com/results?search_query=dance+class'),(50966,1452,'dt-img-link',''),(50967,1452,'dt-img-hide-title','0'),(50968,652,'dt-img-hide-title','0'),(50969,655,'dt-img-hide-title','0'),(50970,675,'dt-img-hide-title','0'),(50971,678,'dt-img-hide-title','0'),(50972,683,'dt-img-hide-title','0'),(50973,703,'dt-img-hide-title','0'),(50974,706,'dt-img-hide-title','0'),(50975,709,'dt-img-hide-title','0'),(50976,712,'dt-img-hide-title','0'),(50977,713,'dt-img-hide-title','0'),(50978,714,'dt-img-hide-title','0'),(50979,715,'dt-img-hide-title','0'),(50980,715,'_wp_attachment_image_alt','Rachel France Lead Instructor -'),(50981,722,'dt-img-hide-title','0'),(50982,735,'dt-img-hide-title','0'),(50983,759,'dt-img-hide-title','0'),(50984,762,'dt-img-hide-title','0'),(50985,766,'dt-img-hide-title','0'),(50986,770,'dt-img-hide-title','0'),(50987,804,'dt-img-hide-title','0'),(50988,814,'dt-img-hide-title','0'),(50989,827,'dt-img-hide-title','0'),(50990,830,'dt-img-hide-title','0'),(50991,854,'dt-img-hide-title','0'),(50992,857,'dt-img-hide-title','0'),(50993,874,'dt-img-hide-title','0'),(50994,937,'dt-img-hide-title','0'),(50995,941,'dt-img-hide-title','0'),(50996,955,'dt-img-hide-title','0'),(50997,969,'_wp_attachment_image_alt','imove Freely'),(50998,969,'dt-img-hide-title','0'),(50999,1001,'dt-img-hide-title','0'),(51000,1015,'dt-img-hide-title','0'),(51001,1018,'dt-img-hide-title','0'),(51002,1020,'dt-img-hide-title','0'),(51003,1021,'dt-img-hide-title','0'),(51004,1024,'dt-img-hide-title','0'),(51005,1027,'dt-img-hide-title','0'),(51006,1030,'dt-img-hide-title','0'),(51007,1035,'dt-img-hide-title','0'),(51008,1039,'dt-img-hide-title','0'),(51009,1045,'dt-img-hide-title','0'),(51010,1051,'dt-img-hide-title','0'),(51011,1052,'dt-img-hide-title','0'),(51012,1055,'dt-img-hide-title','0'),(51013,1057,'dt-img-hide-title','0'),(51014,1061,'dt-img-hide-title','0'),(51015,1065,'dt-img-hide-title','0'),(51016,1068,'dt-img-hide-title','0'),(51017,1073,'dt-img-hide-title','0'),(51018,1078,'dt-img-hide-title','0'),(51019,1084,'dt-img-hide-title','0'),(51020,1088,'dt-img-hide-title','0'),(51021,1094,'dt-img-hide-title','0'),(51022,1096,'dt-img-hide-title','0'),(51023,1097,'dt-img-hide-title','0'),(51024,1099,'dt-img-hide-title','0'),(51025,1106,'dt-img-hide-title','0'),(51026,1110,'dt-img-hide-title','0'),(51027,1112,'dt-img-hide-title','0'),(51028,1116,'dt-img-hide-title','0'),(51029,1125,'dt-img-hide-title','0'),(51030,1129,'dt-img-hide-title','0'),(51031,1145,'dt-img-hide-title','0'),(51032,1167,'dt-img-hide-title','0'),(51033,1184,'dt-img-hide-title','0'),(51034,1186,'dt-img-hide-title','0'),(51035,1187,'dt-img-hide-title','0'),(51036,1189,'dt-img-hide-title','0'),(51037,1194,'dt-img-hide-title','0'),(51038,1197,'dt-img-hide-title','0'),(51039,1201,'dt-img-hide-title','0'),(51040,1202,'dt-img-hide-title','0'),(51041,1203,'dt-img-hide-title','0'),(51042,1204,'dt-img-hide-title','0'),(51043,1205,'dt-img-hide-title','0'),(51044,1206,'dt-img-hide-title','0'),(51045,1207,'dt-img-hide-title','0'),(51046,1209,'dt-img-hide-title','0'),(51047,1210,'dt-img-hide-title','0'),(51048,1211,'dt-img-hide-title','0'),(51049,1212,'dt-img-hide-title','0'),(51050,1213,'dt-img-hide-title','0'),(51051,1214,'dt-img-hide-title','0'),(51052,1220,'dt-img-hide-title','0'),(51053,1223,'dt-img-hide-title','0'),(51054,1226,'dt-img-hide-title','0'),(51055,1228,'dt-img-hide-title','0'),(51056,1232,'dt-img-hide-title','0'),(51057,1235,'dt-img-hide-title','0'),(51058,1239,'dt-img-hide-title','0'),(51059,1242,'dt-img-hide-title','0'),(51060,1246,'dt-img-hide-title','0'),(51061,1256,'dt-img-hide-title','0'),(51062,1262,'dt-img-hide-title','0'),(51063,1265,'dt-img-hide-title','0'),(51064,1269,'dt-img-hide-title','0'),(51065,1275,'dt-img-hide-title','0'),(51066,1279,'dt-img-hide-title','0'),(51067,1312,'dt-img-hide-title','0'),(51068,1316,'dt-img-hide-title','0'),(51069,1320,'dt-img-hide-title','0'),(51070,1326,'dt-img-hide-title','0'),(51071,1326,'_wp_attachment_image_alt','Events and workshop - biomechanics education'),(51072,1334,'dt-img-hide-title','0'),(51073,1338,'dt-img-hide-title','0'),(51074,1339,'dt-img-hide-title','0'),(51075,1343,'dt-img-hide-title','0'),(51076,1347,'dt-img-hide-title','0'),(51077,1351,'dt-img-hide-title','0'),(51078,1354,'dt-img-hide-title','0'),(51079,1357,'dt-img-hide-title','0'),(51080,1359,'dt-img-hide-title','0'),(51081,1362,'dt-img-hide-title','0'),(51082,1366,'dt-img-hide-title','0'),(51083,1379,'dt-img-hide-title','0'),(51084,1398,'dt-img-hide-title','0'),(51085,1403,'dt-img-hide-title','0'),(51086,1406,'dt-img-hide-title','0'),(51087,1410,'dt-img-hide-title','0'),(51088,1413,'dt-img-hide-title','0'),(51089,1416,'dt-img-hide-title','0'),(51090,1419,'dt-img-hide-title','0'),(51091,1423,'dt-img-hide-title','0'),(51092,1429,'dt-img-hide-title','0'),(51093,1430,'dt-img-hide-title','0'),(51094,1433,'dt-img-hide-title','0'),(51095,1463,'dt-img-hide-title','0'),(51096,1463,'dt-img-hide-title','0'),(51097,1463,'dt-img-hide-title','0'),(51098,1463,'dt-img-hide-title','0'),(51099,1463,'dt-img-hide-title','0'),(51100,1468,'dt-img-hide-title','0'),(51101,2229,'dt-img-hide-title','0'),(51102,2229,'_wp_attachment_image_alt','woman with hoodie - biomechanics education'),(51103,2230,'dt-img-hide-title','0'),(51104,2231,'dt-img-hide-title','0'),(51105,2232,'dt-img-hide-title','0'),(51106,2233,'dt-img-hide-title','0'),(51107,2234,'dt-img-hide-title','0'),(51108,2235,'dt-img-hide-title','0'),(51109,1474,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(51110,1474,'dt-img-hide-title','0'),(51111,1475,'dt-img-hide-title','0'),(51112,1475,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(51113,1476,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(51114,1476,'dt-img-hide-title','0'),(51115,1478,'_wp_attachment_image_alt','biomechanics-education-homepage-hero-2'),(51116,1478,'dt-img-hide-title','0'),(51117,1479,'dt-img-hide-title','0'),(51118,1489,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(51119,1489,'dt-img-hide-title','0'),(51120,1500,'_wp_attachment_image_alt','Logo for Biomechanics Education - Improving Movement Through Education'),(51121,1500,'dt-img-hide-title','0'),(51122,1501,'_wp_attachment_image_alt','Boimechanics Education - Personal Trainer Education'),(51123,1501,'dt-img-hide-title','0'),(51124,1504,'_wp_attachment_image_alt','biomechanics-education-banner-homepage'),(51125,1504,'dt-img-hide-title','0'),(51126,1508,'_wp_attachment_image_alt',''),(51127,1508,'dt-img-hide-title','0'),(51128,1508,'dt-video-url',''),(51129,1508,'dt-img-link',''),(51130,1510,'_wp_attachment_image_alt','biomechanics-education-exercise-with-ropes'),(51131,1510,'dt-img-hide-title','0'),(51132,1514,'dt-img-hide-title','0'),(51133,2236,'dt-img-hide-title','0'),(51134,2237,'dt-img-hide-title','0'),(51135,2238,'dt-img-hide-title','0'),(51136,2239,'dt-img-hide-title','0'),(51137,2247,'dt-img-hide-title','0'),(51138,2248,'dt-img-hide-title','0'),(51139,2249,'dt-img-hide-title','0'),(51140,1533,'dt-img-hide-title','0'),(51141,1535,'dt-img-hide-title','0'),(51142,1536,'dt-img-hide-title','0'),(51143,1540,'dt-img-hide-title','0'),(51144,1546,'dt-img-hide-title','0'),(51145,1556,'dt-img-hide-title','0'),(51146,1566,'dt-img-hide-title','0'),(51147,1595,'dt-img-hide-title','0'),(51148,1608,'dt-video-url',''),(51149,1608,'dt-img-link',''),(51150,1608,'dt-img-hide-title','0'),(51151,1825,'dt-img-hide-title','0'),(51152,2250,'dt-img-hide-title','0'),(51153,2251,'dt-img-hide-title','0'),(51154,2252,'dt-img-hide-title','0'),(51155,2253,'dt-img-hide-title','0'),(51156,2254,'dt-img-hide-title','0'),(51157,2255,'dt-img-hide-title','0'),(51158,2256,'dt-img-hide-title','0'),(51159,2257,'dt-img-hide-title','0'),(51160,2258,'dt-img-hide-title','0'),(51161,2259,'dt-img-hide-title','0'),(51162,1646,'dt-img-hide-title','0'),(51163,1650,'dt-img-hide-title','0'),(51167,2241,'dt-img-hide-title','0'),(51168,2242,'dt-img-hide-title','0'),(51169,2243,'dt-img-hide-title','0'),(51170,2244,'dt-img-hide-title','0'),(51171,2245,'dt-img-hide-title','0'),(51172,2246,'dt-img-hide-title','0'),(51173,2260,'dt-img-hide-title','0'),(51174,2261,'dt-img-hide-title','0'),(51175,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(51176,2262,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1170;s:6:\"height\";i:702;s:4:\"file\";s:36:\"iMoveFreely-Transparent-300dpi-2.png\";}}'),(51177,2262,'dt-img-hide-title','0'),(51178,2263,'dt-img-hide-title','0'),(51179,2264,'dt-img-hide-title','0'),(51180,2265,'dt-img-hide-title','0'),(51181,2266,'dt-img-hide-title','0'),(51182,2267,'dt-img-hide-title','0'),(51183,2268,'dt-img-hide-title','0'),(51184,2269,'dt-img-hide-title','0'),(51185,2270,'dt-img-hide-title','0'),(51186,1658,'dt-img-hide-title','0'),(51187,1660,'dt-img-hide-title','0'),(51188,1667,'dt-img-hide-title','0'),(51189,1668,'dt-img-hide-title','0'),(51190,1669,'dt-img-hide-title','0'),(51191,1674,'dt-img-hide-title','0'),(51192,2102,'dt-img-hide-title','0'),(51193,2103,'dt-img-hide-title','0'),(51194,2104,'dt-img-hide-title','0'),(51195,2105,'dt-img-hide-title','0'),(51196,2106,'dt-img-hide-title','0'),(51197,2107,'dt-img-hide-title','0'),(51198,2108,'dt-img-hide-title','0'),(51199,2109,'dt-img-hide-title','0'),(51200,2110,'dt-img-hide-title','0'),(51201,2111,'dt-img-hide-title','0'),(51202,2112,'dt-img-hide-title','0'),(51203,2113,'dt-img-hide-title','0'),(51204,2114,'dt-img-hide-title','0'),(51205,2115,'dt-img-hide-title','0'),(51206,1675,'dt-img-hide-title','0'),(51207,1699,'dt-img-hide-title','0'),(51208,1700,'dt-img-hide-title','0'),(51209,1701,'dt-img-hide-title','0'),(51210,1702,'dt-img-hide-title','0'),(51211,2217,'dt-img-hide-title','0'),(51212,2222,'dt-img-hide-title','0'),(51213,2271,'dt-img-hide-title','0'),(51214,2289,'dt-img-hide-title','0'),(51215,2291,'dt-img-hide-title','0'),(51216,2293,'dt-img-hide-title','0'),(51217,2295,'dt-img-hide-title','0'),(51218,2297,'dt-img-hide-title','0'),(51219,2299,'dt-img-hide-title','0'),(51220,2301,'dt-img-hide-title','0'),(51221,2303,'dt-img-hide-title','0'),(51222,2305,'dt-img-hide-title','0'),(51223,2307,'dt-img-hide-title','0'),(51224,2405,'dt-img-hide-title','0'),(51225,2405,'_wp_attachment_image_alt','iMoveFreely® Exercises To Try At Home'),(51226,2409,'dt-img-hide-title','0'),(51227,2409,'_wp_attachment_image_alt','Don’t Listen To Us….Listen To Them!'),(51228,2410,'dt-img-hide-title','0'),(51229,2410,'_wp_attachment_image_alt','Presentations at The Movement Convention'),(51230,2411,'dt-img-hide-title','0'),(51231,2411,'_wp_attachment_image_alt','Just For Fun'),(51232,2413,'dt-img-hide-title','0'),(51233,2413,'_wp_attachment_image_alt','We all Squat Differently?'),(51234,2415,'dt-img-hide-title','0'),(51235,2415,'_wp_attachment_image_alt','What Do Our Workshops Look Like?'),(51236,2534,'dt-img-hide-title','0'),(51237,2535,'dt-img-hide-title','0'),(51238,2537,'dt-img-hide-title','0'),(51239,2538,'dt-img-hide-title','0'),(51240,2539,'dt-img-hide-title','0'),(51241,2540,'dt-img-hide-title','0'),(51242,2541,'dt-img-hide-title','0'),(51243,2548,'dt-img-hide-title','0'),(51244,2549,'dt-img-hide-title','0'),(51245,2550,'dt-img-hide-title','0'),(51246,2551,'dt-img-hide-title','0'),(51247,2552,'dt-img-hide-title','0'),(51248,2611,'dt-img-hide-title','0'),(51249,2612,'dt-img-hide-title','0'),(51250,2613,'dt-img-hide-title','0'),(51251,2614,'dt-img-hide-title','0'),(51252,2615,'dt-img-hide-title','0'),(51253,2655,'dt-img-hide-title','0'),(51254,2656,'dt-img-hide-title','0'),(51255,2657,'dt-img-hide-title','0'),(51256,2658,'dt-img-hide-title','0'),(51257,2721,'dt-img-hide-title','0'),(51258,2722,'dt-img-hide-title','0'),(51259,2723,'dt-img-hide-title','0'),(51260,2724,'dt-img-hide-title','0'),(51261,2725,'dt-img-hide-title','0'),(51262,2726,'dt-img-hide-title','0'),(51263,2727,'dt-img-hide-title','0'),(51264,2728,'dt-img-hide-title','0'),(51265,2729,'dt-img-hide-title','0'),(51266,2756,'dt-img-hide-title','0'),(51267,2759,'dt-img-hide-title','0'),(51268,2781,'dt-img-hide-title','0'),(51269,2786,'dt-img-hide-title','0'),(51270,2787,'dt-img-hide-title','0'),(51271,2788,'dt-img-hide-title','0'),(51272,2788,'_wp_attachment_image_alt','the effect of quadratus lumborum muscle'),(51273,2810,'dt-img-hide-title','0'),(51274,2811,'dt-img-hide-title','0'),(51275,2812,'dt-img-hide-title','0'),(51276,2813,'dt-img-hide-title','0'),(51277,2814,'dt-img-hide-title','0'),(51278,2815,'dt-img-hide-title','0'),(51279,2816,'dt-img-hide-title','0'),(51280,2817,'dt-img-hide-title','0'),(51281,2818,'dt-img-hide-title','0'),(51282,2837,'dt-img-hide-title','0'),(51283,2846,'dt-img-hide-title','0'),(51284,2847,'dt-img-hide-title','0'),(51285,2856,'dt-img-hide-title','0'),(51286,2857,'dt-img-hide-title','0'),(51287,2858,'dt-img-hide-title','0'),(51288,2859,'dt-img-hide-title','0'),(51289,2860,'dt-img-hide-title','0'),(51290,2861,'dt-img-hide-title','0'),(51291,2862,'dt-img-hide-title','0'),(51292,2868,'dt-img-hide-title','0'),(51293,2869,'dt-img-hide-title','0'),(51294,2870,'dt-img-hide-title','0'),(51295,2871,'dt-img-hide-title','0'),(51296,2875,'dt-img-hide-title','0'),(51297,2876,'dt-img-hide-title','0'),(51298,2877,'dt-img-hide-title','0'),(51299,2878,'dt-img-hide-title','0'),(51300,2879,'dt-img-hide-title','0'),(51301,2894,'dt-img-hide-title','0'),(51302,2894,'dt-video-url',''),(51303,2894,'dt-img-link',''),(51304,2896,'dt-img-hide-title','0'),(51305,2896,'dt-video-url',''),(51306,2896,'dt-img-link',''),(51307,2960,'dt-img-hide-title','0'),(51308,2961,'dt-img-hide-title','0'),(51309,2962,'dt-img-hide-title','0'),(51310,2963,'dt-img-hide-title','0'),(51311,2964,'dt-img-hide-title','0'),(51312,2965,'dt-img-hide-title','0'),(51313,2966,'dt-img-hide-title','0'),(51314,2967,'dt-img-hide-title','0'),(51315,2968,'dt-img-hide-title','0'),(51316,2969,'dt-img-hide-title','0'),(51317,2976,'dt-img-hide-title','0'),(51318,2986,'dt-img-hide-title','0'),(51319,2999,'dt-img-hide-title','0'),(51320,3002,'dt-img-hide-title','0'),(51321,3003,'dt-img-hide-title','0'),(51322,3004,'dt-img-hide-title','0'),(51323,3005,'dt-img-hide-title','0'),(51324,3006,'dt-img-hide-title','0'),(51325,3014,'dt-img-hide-title','0'),(51326,3015,'dt-img-hide-title','0'),(51327,3016,'dt-img-hide-title','0'),(51328,3034,'dt-img-hide-title','0'),(51329,3173,'dt-img-hide-title','0'),(51330,3174,'dt-img-hide-title','0'),(51331,3179,'dt-img-hide-title','0'),(51332,3180,'dt-img-hide-title','0'),(51333,3183,'dt-img-hide-title','0'),(51334,3188,'dt-img-hide-title','0'),(51335,3191,'dt-img-hide-title','0'),(51336,3200,'dt-img-hide-title','0'),(51337,3201,'dt-img-hide-title','0'),(51338,3202,'dt-img-hide-title','0'),(51339,3203,'dt-img-hide-title','0'),(51340,3205,'dt-img-hide-title','0'),(51341,3206,'dt-img-hide-title','0'),(51342,3207,'dt-img-hide-title','0'),(51343,3208,'dt-img-hide-title','0'),(51344,3213,'dt-img-hide-title','0'),(51345,3214,'dt-img-hide-title','0'),(51346,3228,'dt-img-hide-title','0'),(51347,3229,'dt-img-hide-title','0'),(51348,3230,'dt-img-hide-title','0'),(51349,3234,'dt-img-hide-title','0'),(51350,3242,'dt-img-hide-title','0'),(51351,3243,'dt-img-hide-title','0'),(51352,3325,'dt-img-hide-title','0'),(51353,3479,'dt-img-hide-title','0'),(51354,3496,'dt-img-hide-title','0'),(51355,3496,'_wp_attachment_image_alt','Rachel France - profile image'),(51356,3497,'dt-img-hide-title','0'),(51357,3498,'dt-img-hide-title','0'),(51358,3499,'dt-img-hide-title','0'),(51359,3502,'dt-img-hide-title','0'),(51360,3504,'dt-img-hide-title','0'),(51361,3505,'dt-img-hide-title','0'),(51362,3506,'dt-img-hide-title','0'),(51363,3507,'dt-img-hide-title','0'),(51364,3511,'dt-img-hide-title','0'),(51365,3528,'dt-img-hide-title','0'),(51366,3534,'dt-video-url',''),(51367,3534,'dt-img-link',''),(51368,3534,'dt-img-hide-title','0'),(51369,3535,'dt-video-url',''),(51370,3535,'dt-img-link',''),(51371,3535,'dt-img-hide-title','0'),(51372,3535,'_wp_attachment_image_alt','Tachel France - biomechanics education'),(51373,3536,'dt-video-url',''),(51374,3536,'dt-img-link',''),(51375,3536,'dt-img-hide-title','0'),(51376,3537,'dt-video-url',''),(51377,3537,'dt-img-link',''),(51378,3537,'dt-img-hide-title','0'),(51379,3551,'dt-img-hide-title','0'),(51380,3629,'dt-img-hide-title','0'),(51381,3630,'dt-img-hide-title','0'),(51382,3631,'dt-img-hide-title','0'),(51383,3632,'dt-img-hide-title','0'),(51384,3633,'dt-img-hide-title','0'),(51385,3634,'dt-img-hide-title','0'),(51386,3635,'dt-img-hide-title','0'),(51387,3636,'dt-img-hide-title','0'),(51388,3655,'dt-video-url',''),(51389,3655,'dt-img-link',''),(51390,3655,'dt-img-hide-title','0'),(51391,3690,'dt-img-hide-title','0'),(51392,3692,'dt-img-hide-title','0'),(51393,3693,'dt-img-hide-title','0'),(51394,3694,'dt-img-hide-title','0'),(51395,3695,'dt-img-hide-title','0'),(51396,3699,'dt-img-hide-title','0'),(51397,3784,'dt-img-hide-title','0'),(51398,3789,'dt-img-hide-title','0'),(51399,3801,'dt-img-hide-title','0'),(51400,3803,'dt-img-hide-title','0'),(51401,4107,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics'),(51402,4107,'dt-img-hide-title','0'),(51403,4107,'_wp_old_slug','what-exactly-is-intrinsic-biomechanics'),(51404,4108,'_wp_attachment_image_alt','what-exactly-is-intrinsic-biomechanics-2'),(51405,4108,'dt-img-hide-title','0'),(51406,4399,'_wp_attachment_image_alt','special-fast-track-3-day-pelvic-spine-biomechanics-workshop'),(51407,4399,'dt-img-hide-title','0'),(51408,4601,'dt-img-hide-title','0'),(51409,4705,'_wp_attachment_image_alt','imovefreely-instructor - biomechanics education'),(51410,4705,'dt-img-hide-title','0'),(51411,4707,'dt-img-hide-title','0'),(51412,4709,'_wp_attachment_image_alt','intrinsic-biomechanics-taster'),(51413,4709,'dt-img-hide-title','0'),(51414,4715,'_wp_attachment_image_alt','low-back-health-workshop - biomechanics education'),(51415,4715,'dt-img-hide-title','0'),(51416,4717,'_wp_attachment_image_alt','knee-foot-biomechanics-2-day-workshop'),(51417,4717,'dt-img-hide-title','0'),(51418,4733,'_wp_attachment_image_alt','iba-discovery-day-workshop'),(51419,4733,'dt-img-hide-title','0'),(51420,5135,'_wp_attachment_image_alt','Biomechanics Coach & Diploma Workshop Series'),(51421,5135,'dt-img-hide-title','0'),(51422,5139,'_wp_attachment_image_alt','Low Back Health Workshop'),(51423,5139,'dt-img-hide-title','0'),(51424,5143,'_wp_attachment_image_alt','Spine Biomechanics 2 Day Workshop'),(51425,5143,'dt-img-hide-title','0'),(51426,5149,'_wp_attachment_image_alt','Pelvic Biomechanics 2 Day Workshop'),(51427,5149,'dt-img-hide-title','0'),(51428,5151,'_wp_attachment_image_alt','Shoulder Biomechanics 2 Day Workshop'),(51429,5151,'dt-img-hide-title','0'),(51430,5155,'dt-img-hide-title','0'),(51431,5155,'dt-video-url',''),(51432,5155,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split'),(51433,5253,'dt-img-hide-title','0'),(51434,5325,'dt-img-hide-title','0'),(51435,6395,'dt-img-hide-title','0'),(51436,6410,'_wp_attachment_image_alt','Rachel France - Listening to Dan John, Never Let Go'),(51437,6410,'dt-img-hide-title','0'),(51438,6682,'_wp_attachment_image_alt','Rachel France smiling - Group Exercise'),(51439,6682,'dt-img-hide-title','0'),(51440,6683,'_wp_attachment_image_alt','Rachel France - Biomechanics Education - Group Exercise'),(51441,6683,'dt-img-hide-title','0'),(51442,6724,'dt-img-hide-title','0'),(51443,7303,'dt-img-hide-title','0'),(51444,7690,'_wp_page_template','default'),(51445,7690,'dt-video-url',''),(51446,7690,'dt-img-link',''),(51447,7690,'dt-img-hide-title','0'),(51448,7690,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1284;s:6:\"height\";i:1248;s:4:\"file\";s:10:\"Flowin.png\";}}'),(51449,7696,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1128;s:6:\"height\";i:871;s:4:\"file\";s:17:\"TherapyEmpire.png\";}}'),(51450,7696,'_wp_page_template','default'),(51451,7696,'dt-video-url',''),(51452,7696,'dt-img-link',''),(51453,7696,'dt-img-hide-title','0'),(51454,7709,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1085;s:6:\"height\";i:851;s:4:\"file\";s:15:\"PulseRoll-1.png\";}}'),(51455,7709,'_wp_page_template','default'),(51456,7709,'dt-video-url',''),(51457,7709,'dt-img-link',''),(51458,7709,'dt-img-hide-title','0'),(51459,7711,'_wp_page_template','default'),(51460,7711,'dt-video-url',''),(51461,7711,'dt-img-link',''),(51462,7711,'dt-img-hide-title','0'),(51463,8351,'dt-img-hide-title','0'),(51464,9448,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:420;s:6:\"height\";i:315;s:4:\"file\";s:7:\"STA.png\";}}'),(51465,9448,'_wp_page_template','default'),(51466,9448,'dt-video-url',''),(51467,9448,'dt-img-link',''),(51468,9448,'dt-img-hide-title','0'),(51469,10372,'_wp_attachment_image_alt','Level 4 Low Back Pain Qualification for Personal Trainers'),(51470,10372,'dt-img-hide-title','0'),(51471,10836,'_wp_old_slug','always-always-start-with-why'),(51472,10836,'dt-img-hide-title','0'),(51473,12889,'dt-img-hide-title','0'),(51474,13010,'_wp_attachment_image_alt','Are Shoulder Problems Are The New Low Back Pain_'),(51475,13010,'dt-img-hide-title','0'),(51476,13150,'dt-img-hide-title','0'),(51477,13709,'dt-video-url',''),(51478,13709,'dt-img-link','https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description'),(51479,13709,'dt-img-hide-title','0'),(51480,16056,'_wp_attachment_image_alt','Golf Biomechanics Workshop'),(51481,16056,'dt-img-hide-title','0'),(51482,16057,'_wp_attachment_image_alt','Running Biomechanics Workshop'),(51483,16057,'dt-img-hide-title','0'),(51484,17664,'dt-video-url',''),(51485,17664,'dt-img-link','https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549'),(51486,17664,'dt-img-hide-title','0'),(51487,19073,'_wp_attachment_image_alt','Intrinsic Biomechanics For Personal Trainers - 3 Phase System For Health, Function & Performance'),(51488,19073,'dt-img-hide-title','0'),(51489,23078,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1204;s:6:\"height\";i:1072;s:4:\"file\";s:37:\"Screenshot-2020-07-07-at-16.49.55.png\";}}'),(51490,23949,'_wp_attachment_backup_sizes','a:11:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1000;s:6:\"height\";i:1499;s:4:\"file\";s:15:\"IMG_3042-1.jpeg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x300.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-768x1151.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1151;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:24:\"IMG_3042-1-683x1024.jpeg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-600x899.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:899;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:23:\"IMG_3042-1-200x200.jpeg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(51491,24805,'_wp_attachment_backup_sizes','a:3:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:12:\"IMG_1593.jpg\";}s:18:\"full-1605688593104\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"IMG_1593-e1604933246144.jpg\";}s:18:\"full-1605688603868\";a:3:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:27:\"IMG_1593-e1605688593104.jpg\";}}'),(51492,24806,'_wp_attachment_backup_sizes','a:13:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:49:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-scaled.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"medium_large-orig\";a:4:{s:4:\"file\";s:51:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-768x1152.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:10:\"large-orig\";a:4:{s:4:\"file\";s:51:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-683x1024.jpg\";s:5:\"width\";i:683;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"1536x1536-orig\";a:4:{s:4:\"file\";s:52:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-1024x1536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"2048x2048-orig\";a:4:{s:4:\"file\";s:52:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-1365x2048.jpg\";s:5:\"width\";i:1365;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:26:\"woocommerce_thumbnail-orig\";a:5:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:23:\"woocommerce_single-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:34:\"woocommerce_gallery_thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:17:\"shop_catalog-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"shop_single-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-600x900.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:19:\"shop_thumbnail-orig\";a:4:{s:4:\"file\";s:50:\"adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-200x200.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(51493,24937,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1080;s:6:\"height\";i:1440;s:4:\"file\";s:12:\"IMG_1450.jpg\";}}'),(51494,25551,'_wp_attachment_image_alt','CIMSPA-Education-Partner-Training-Provider'),(51495,25551,'dt-img-hide-title','0'),(51496,27322,'dt-img-hide-title','0'),(51497,28485,'_wp_attachment_image_alt','Young,Female,And,Her,Fitness,Instructor,Are,Having,Conversation'),(51498,28485,'dt-img-hide-title','0'),(51499,29095,'_wp_attached_file','2021/08/Screenshot-2021-08-16-at-13.52.46-1.png'),(51500,29095,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:892;s:6:\"height\";i:482;s:4:\"file\";s:47:\"2021/08/Screenshot-2021-08-16-at-13.52.46-1.png\";s:8:\"filesize\";i:669394;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51501,29120,'_wp_attached_file','2021/08/Screenshot-2021-05-25-at-10.02.31-1.png'),(51502,29120,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2456;s:6:\"height\";i:756;s:4:\"file\";s:47:\"2021/08/Screenshot-2021-05-25-at-10.02.31-1.png\";s:8:\"filesize\";i:2052630;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51503,29230,'_wp_attached_file','2021/08/RUN-shutterstock_1046319301-scaled-1.jpg'),(51504,29230,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:853;s:4:\"file\";s:48:\"2021/08/RUN-shutterstock_1046319301-scaled-1.jpg\";s:8:\"filesize\";i:344758;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:68:\"Copyright (c) 2018 Maridav/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:64:\"Biomechanics,Of,Running,-,Gait,Cycle,Movement,Analysis,Of,Runner\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"smartwatch,feet,kinesiology,knees,sprint,run,body,stride,fit,com\";}}}'),(51505,29231,'_wp_attached_file','2021/08/SWIM-shutterstock_571053160-scaled-1.jpg'),(51506,29231,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:48:\"2021/08/SWIM-shutterstock_571053160-scaled-1.jpg\";s:8:\"filesize\";i:686644;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:71:\"Copyright (c) 2017 Jacob Lund/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:55:\"Shot,Of,Fit,Young,Man,Turning,Over,Underwater.,Pro,Male\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"young,training,inside,exercising,preparation,professional,horizo\";}}}'),(51507,29232,'_wp_attached_file','2021/08/GOLF-andrew-lomas-aGlpdQ2Yolk-unsplash-scaled-1.jpg'),(51508,29232,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1708;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2021/08/GOLF-andrew-lomas-aGlpdQ2Yolk-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:723177;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51509,29233,'_wp_attached_file','2021/08/TENNIS-shutterstock_741712714-scaled-1.jpg'),(51510,29233,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:50:\"2021/08/TENNIS-shutterstock_741712714-scaled-1.jpg\";s:8:\"filesize\";i:658464;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:71:\"Copyright (c) 2017 PabloBenii/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:61:\"Professional,Tennis,Player,Man,Playing,On,Court,In,Afternoon.\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"play,game,activity,competition,training,racket,serve,tournament,\";}}}'),(51511,29234,'_wp_attached_file','2021/08/RUGBY-shutterstock_327071678-scaled-1.jpg'),(51512,29234,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1408;s:4:\"file\";s:49:\"2021/08/RUGBY-shutterstock_327071678-scaled-1.jpg\";s:8:\"filesize\";i:802218;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:75:\"Copyright (c) 2015 wavebreakmedia/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:56:\"Rugby,Stadium,Against,Rugby,Players,Tackling,During,Game\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:64:\"tackling,game,young,caucasian,clash,mid,competition,arena,sports\";}}}'),(51513,29235,'_wp_attached_file','2021/08/coen-van-de-broek-hdyYvZ3Hj7w-unsplash-scaled-1.jpg'),(51514,29235,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:59:\"2021/08/coen-van-de-broek-hdyYvZ3Hj7w-unsplash-scaled-1.jpg\";s:8:\"filesize\";i:746954;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51515,29236,'_wp_attached_file','2021/08/Screenshot-2021-08-26-at-18.20.01-1.png'),(51516,29236,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1618;s:6:\"height\";i:702;s:4:\"file\";s:47:\"2021/08/Screenshot-2021-08-26-at-18.20.01-1.png\";s:8:\"filesize\";i:1903888;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51517,29308,'_wp_attached_file','2021/09/RUGBY-shutterstock_1405130222-scaled-1.jpg'),(51518,29308,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1704;s:4:\"file\";s:50:\"2021/09/RUGBY-shutterstock_1405130222-scaled-1.jpg\";s:8:\"filesize\";i:470033;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:75:\"Copyright (c) 2019 sportoakimirka/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:48:\"The,Young,Female,Rugby,Player,On,Green,Backround\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:64:\"muscular,play,yard,happy,american,run,body,professional,beautifu\";}}}'),(51519,29333,'_wp_attached_file','2021/09/SL1-scaled-1.jpg'),(51520,29333,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:24:\"2021/09/SL1-scaled-1.jpg\";s:8:\"filesize\";i:415861;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone SE\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1542101952\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51521,29334,'_wp_attached_file','2021/09/SL2-scaled-1.jpg'),(51522,29334,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:24:\"2021/09/SL2-scaled-1.jpg\";s:8:\"filesize\";i:451378;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone SE\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1542101898\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:2:\"64\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51523,29335,'_wp_attached_file','2021/09/SL3-scaled-1.jpg'),(51524,29335,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:24:\"2021/09/SL3-scaled-1.jpg\";s:8:\"filesize\";i:411067;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone SE\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1542101942\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.15\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:16:\"0.03030303030303\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51525,29338,'_wp_attached_file','2021/09/SBL1-scaled-1.jpeg'),(51526,29338,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:26:\"2021/09/SBL1-scaled-1.jpeg\";s:8:\"filesize\";i:419792;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588612577\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51527,29339,'_wp_attached_file','2021/09/SBL2-scaled-1.jpeg'),(51528,29339,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:26:\"2021/09/SBL2-scaled-1.jpeg\";s:8:\"filesize\";i:611770;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1588362293\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51529,29340,'_wp_attached_file','2021/09/SBL3-scaled-1.jpg'),(51530,29340,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:25:\"2021/09/SBL3-scaled-1.jpg\";s:8:\"filesize\";i:613267;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"iPhone XR\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1547229194\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"4.25\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51531,29341,'_wp_attached_file','2021/09/Screenshot-2021-09-03-at-11.58.39-1.png'),(51532,29341,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1822;s:6:\"height\";i:548;s:4:\"file\";s:47:\"2021/09/Screenshot-2021-09-03-at-11.58.39-1.png\";s:8:\"filesize\";i:1982311;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51533,29342,'_wp_attached_file','2021/09/Screenshot-2021-09-03-at-12.00.25-1.png'),(51534,29342,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1424;s:6:\"height\";i:770;s:4:\"file\";s:47:\"2021/09/Screenshot-2021-09-03-at-12.00.25-1.png\";s:8:\"filesize\";i:1625735;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51535,29344,'_wp_attached_file','2021/09/Screenshot-2021-09-03-at-12.03.05-1.png'),(51536,29344,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1848;s:6:\"height\";i:548;s:4:\"file\";s:47:\"2021/09/Screenshot-2021-09-03-at-12.03.05-1.png\";s:8:\"filesize\";i:1857311;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51537,29346,'_wp_attached_file','2021/09/Screenshot-2021-09-03-at-12.11.36-1.png'),(51538,29346,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1436;s:6:\"height\";i:652;s:4:\"file\";s:47:\"2021/09/Screenshot-2021-09-03-at-12.11.36-1.png\";s:8:\"filesize\";i:1676296;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51539,29347,'_wp_attached_file','2021/09/Screenshot-2021-09-03-at-12.07.59-1.png'),(51540,29347,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1438;s:6:\"height\";i:550;s:4:\"file\";s:47:\"2021/09/Screenshot-2021-09-03-at-12.07.59-1.png\";s:8:\"filesize\";i:1202098;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51541,29349,'_wp_attached_file','2021/09/Screenshot-2021-09-03-at-12.13.19-1.png'),(51542,29349,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1966;s:6:\"height\";i:522;s:4:\"file\";s:47:\"2021/09/Screenshot-2021-09-03-at-12.13.19-1.png\";s:8:\"filesize\";i:1528360;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51543,29350,'_wp_attached_file','2021/09/Screenshot-2021-09-03-at-12.15.15-1.png'),(51544,29350,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2092;s:6:\"height\";i:628;s:4:\"file\";s:47:\"2021/09/Screenshot-2021-09-03-at-12.15.15-1.png\";s:8:\"filesize\";i:2094407;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51545,29351,'_wp_attached_file','2021/09/Screenshot-2021-09-03-at-12.26.58-1.png'),(51546,29351,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1432;s:6:\"height\";i:1194;s:4:\"file\";s:47:\"2021/09/Screenshot-2021-09-03-at-12.26.58-1.png\";s:8:\"filesize\";i:3075597;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51547,29381,'_wp_attached_file','2021/09/Pic-for-bio-1.jpg'),(51548,29381,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:546;s:6:\"height\";i:728;s:4:\"file\";s:25:\"2021/09/Pic-for-bio-1.jpg\";s:8:\"filesize\";i:113013;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1596699992\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51549,29405,'_wp_attached_file','2021/09/Rachel-France-Kaizan-2019-1.mp4'),(51550,29405,'_wp_attachment_metadata','a:11:{s:7:\"bitrate\";i:19731959;s:8:\"filesize\";i:228245789;s:9:\"mime_type\";s:9:\"video/mp4\";s:6:\"length\";i:91;s:16:\"length_formatted\";s:4:\"1:31\";s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:10:\"fileformat\";s:3:\"mp4\";s:10:\"dataformat\";s:9:\"quicktime\";s:5:\"audio\";a:9:{s:10:\"dataformat\";s:3:\"mp4\";s:7:\"bitrate\";i:317375;s:5:\"codec\";s:19:\"ISO/IEC 14496-3 AAC\";s:11:\"sample_rate\";d:48000;s:8:\"channels\";i:2;s:15:\"bits_per_sample\";i:16;s:8:\"lossless\";b:0;s:11:\"channelmode\";s:6:\"stereo\";s:17:\"compression_ratio\";d:0.20662434895833334;}s:17:\"created_timestamp\";i:1556483707;}'),(51551,29659,'_wp_attached_file','2021/09/IMG_2697-1.heic'),(51552,29659,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:2208082;}'),(51553,29660,'_wp_attached_file','2021/09/IMG_0248-1.jpg'),(51554,29660,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:496;s:6:\"height\";i:352;s:4:\"file\";s:22:\"2021/09/IMG_0248-1.jpg\";s:8:\"filesize\";i:36294;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51555,29661,'_wp_attached_file','2021/09/IMG_6265-scaled-1.jpg'),(51556,29661,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:29:\"2021/09/IMG_6265-scaled-1.jpg\";s:8:\"filesize\";i:594958;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51557,29662,'_wp_attached_file','2021/09/GetAttachmentCAP825L1-1.jpg'),(51558,29662,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2021/09/GetAttachmentCAP825L1-1.jpg\";s:8:\"filesize\";i:21663;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51559,29663,'_wp_attached_file','2021/09/heaven-2-1.jpg'),(51560,29663,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:1024;s:4:\"file\";s:22:\"2021/09/heaven-2-1.jpg\";s:8:\"filesize\";i:147953;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:15:\"FinePix S2000HD\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1316354066\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"5\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.066666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51561,29664,'_wp_attached_file','2021/09/IMG_5232-1.jpg'),(51562,29664,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:22:\"2021/09/IMG_5232-1.jpg\";s:8:\"filesize\";i:138106;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51563,29665,'_wp_attached_file','2021/09/Screenshot-2021-09-28-at-07.56.39-1.png'),(51564,29665,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:906;s:6:\"height\";i:1104;s:4:\"file\";s:47:\"2021/09/Screenshot-2021-09-28-at-07.56.39-1.png\";s:8:\"filesize\";i:2157163;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51565,29666,'_wp_attached_file','2021/09/Screenshot-2021-09-28-at-07.31.40-1.png');
INSERT INTO `6m7_postmeta` VALUES (51566,29666,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1100;s:6:\"height\";i:864;s:4:\"file\";s:47:\"2021/09/Screenshot-2021-09-28-at-07.31.40-1.png\";s:8:\"filesize\";i:1259551;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51567,29667,'_wp_attached_file','2021/09/GetAttachmentCATNH3ZA-1.jpg'),(51568,29667,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:382;s:6:\"height\";i:480;s:4:\"file\";s:35:\"2021/09/GetAttachmentCATNH3ZA-1.jpg\";s:8:\"filesize\";i:10985;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51569,29668,'_wp_attached_file','2021/09/Screen-Shot-2015-07-24-at-14.27.06-1.png'),(51570,29668,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:322;s:6:\"height\";i:450;s:4:\"file\";s:48:\"2021/09/Screen-Shot-2015-07-24-at-14.27.06-1.png\";s:8:\"filesize\";i:328771;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51571,29669,'_wp_attached_file','2021/09/IMG_0497-scaled-1.jpg'),(51572,29669,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/09/IMG_0497-scaled-1.jpg\";s:8:\"filesize\";i:885038;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:17:\"iPhone 12 Pro Max\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1632641055\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.71\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51573,29670,'_wp_attached_file','2021/09/IMG_2198-scaled-1.jpg'),(51574,29670,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/09/IMG_2198-scaled-1.jpg\";s:8:\"filesize\";i:589916;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 11 Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579456249\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.71\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:17:\"0.058823529411765\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51575,29671,'_wp_attached_file','2021/09/IMG_2198-1-scaled-1.jpg'),(51576,29671,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:31:\"2021/09/IMG_2198-1-scaled-1.jpg\";s:8:\"filesize\";i:589916;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 11 Pro\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1579456249\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.71\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:17:\"0.058823529411765\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51577,29672,'_wp_attached_file','2021/09/IMG_8159-scaled-1.jpg'),(51578,29672,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1923;s:6:\"height\";i:2560;s:4:\"file\";s:29:\"2021/09/IMG_8159-scaled-1.jpg\";s:8:\"filesize\";i:487816;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 8 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1540922668\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"2.87\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.058823529411765\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51579,29689,'_wp_attached_file','2021/09/IMG_0098-1.heic'),(51580,29689,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:888536;}'),(51581,29856,'_wp_attached_file','2021/10/Screenshot-2021-10-11-at-19.58.41-1.png'),(51582,29856,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:732;s:6:\"height\";i:438;s:4:\"file\";s:47:\"2021/10/Screenshot-2021-10-11-at-19.58.41-1.png\";s:8:\"filesize\";i:167438;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51583,29945,'_wp_attached_file','2021/10/WEBSITE-PDF-SPINE-LINKS-1-1.pdf'),(51584,29945,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:4:{s:4:\"full\";a:5:{s:4:\"file\";s:35:\"WEBSITE-PDF-SPINE-LINKS-1-1-pdf.jpg\";s:5:\"width\";i:1497;s:6:\"height\";i:1058;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100541;}s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"WEBSITE-PDF-SPINE-LINKS-1-1-pdf-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49191;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"WEBSITE-PDF-SPINE-LINKS-1-1-pdf-1200x848.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72805;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"WEBSITE-PDF-SPINE-LINKS-1-1-pdf-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16064;}}s:8:\"filesize\";i:224183;}'),(51585,29947,'_wp_attached_file','2021/10/IMG_0515-1.jpeg'),(51586,29947,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1125;s:6:\"height\";i:1485;s:4:\"file\";s:23:\"2021/10/IMG_0515-1.jpeg\";s:8:\"filesize\";i:629447;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:10:\"Screenshot\";s:17:\"created_timestamp\";s:10:\"1632583031\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:10:\"Screenshot\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51587,30200,'_wp_attached_file','2021/11/MG_9971-scaled-1.jpg'),(51588,30200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1707;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2021/11/MG_9971-scaled-1.jpg\";s:8:\"filesize\";i:505260;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"8\";s:6:\"credit\";s:12:\"Adam Bagshaw\";s:6:\"camera\";s:12:\"Canon EOS 6D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1469185005\";s:9:\"copyright\";s:12:\"Adam Bagshaw\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51589,30202,'_wp_attached_file','2021/11/Screenshot-2021-11-09-at-14.18.47-1.png'),(51590,30202,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1674;s:6:\"height\";i:1290;s:4:\"file\";s:47:\"2021/11/Screenshot-2021-11-09-at-14.18.47-1.png\";s:8:\"filesize\";i:3862826;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51591,30274,'_wp_attached_file','2021/11/take-a-hike-day-fun-1.jpg'),(51592,30274,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:750;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2021/11/take-a-hike-day-fun-1.jpg\";s:8:\"filesize\";i:65913;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51593,30275,'_wp_attached_file','2021/11/image0-1.jpeg'),(51594,30275,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:21:\"2021/11/image0-1.jpeg\";s:8:\"filesize\";i:118784;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:35:\"iPad Pro (11-inch) (3rd generation)\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1636906825\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"3\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(51595,30605,'dt-img-hide-title','0'),(51596,30606,'dt-img-hide-title','0'),(51597,30610,'dt-img-hide-title','0'),(51598,30612,'dt-img-hide-title','0'),(51599,31065,'_wp_attachment_image_alt','Online vs Face to Face workshop - biomechanics education'),(51600,31065,'dt-img-hide-title','0'),(51601,31068,'_wp_attachment_image_alt','gabin-vallet - Online vs Face to Face- biomechanics education'),(51602,31068,'dt-img-hide-title','0'),(51603,31069,'_wp_attachment_image_alt','jonathan-borba - online vs face to face workshop - biomechanics education'),(51604,31069,'dt-img-hide-title','0'),(51605,31185,'_wp_attachment_image_alt','[Case Study] Elite Lifter Laura Hewitt - biomechanics education'),(51606,31185,'dt-img-hide-title','0'),(51607,31260,'_wp_attachment_image_alt','Understanding Nerves - young man relaxing on the sofa'),(51608,31260,'dt-img-hide-title','0'),(51609,31261,'_wp_attachment_image_alt','Understanding Nerves - young woman exercising'),(51610,31261,'dt-img-hide-title','0'),(51611,31262,'_wp_attachment_image_alt','Understanding Nerves - Rachel Frances Thomson'),(51612,31262,'dt-img-hide-title','0'),(51613,31422,'_wp_attachment_image_alt','Neuromuscular Exercise - biomechanics education'),(51614,31422,'dt-img-hide-title','0'),(51615,31424,'_wp_attachment_image_alt','Neuromuscular Exercise - one leg'),(51616,31424,'dt-img-hide-title','0'),(51617,31431,'_wp_attachment_image_alt','rachel thomson - exercise biomechanics education'),(51618,31431,'dt-img-hide-title','0'),(51619,31432,'_wp_attachment_image_alt','Neuromuscular Exercise with dog - rachel thomson'),(51620,31432,'dt-img-hide-title','0'),(51621,31433,'_wp_attachment_image_alt','neuromuscular exercise - rachel thomson'),(51622,31433,'dt-img-hide-title','0'),(51623,31612,'_wp_attachment_image_alt','Mark Laws - IBA discovery day'),(51624,31612,'dt-img-hide-title','0'),(51625,31613,'_wp_attachment_image_alt','Mark Laws - biomechanics education'),(51626,31613,'dt-img-hide-title','0'),(51627,31614,'_wp_attachment_image_alt','IBA Discovery Day Workshops - biomechanics education'),(51628,31614,'dt-img-hide-title','0'),(51629,31747,'_wp_attachment_image_alt','The Power of Words - biomechanics education'),(51630,31747,'dt-img-hide-title','0'),(51631,31749,'_wp_attachment_image_alt','brett-jordan - practice makes perfect'),(51632,31749,'dt-img-hide-title','0'),(51633,31877,'_wp_attachment_image_alt','Portrait_Mike Stewart - biomechanics education'),(51634,31877,'dt-img-hide-title','0'),(51635,31879,'_wp_attachment_image_alt','JBE Rio 3 - the kaizen project'),(51636,31879,'dt-img-hide-title','0'),(51637,32012,'_wp_attachment_image_alt','Rachel France - the kaizen project'),(51638,32012,'dt-img-hide-title','0'),(51639,32179,'_wp_attachment_image_alt','Rachel France - exercising'),(51640,32179,'dt-img-hide-title','0'),(51641,32182,'_wp_attachment_image_alt','Rachel France - cimspa member profile'),(51642,32182,'dt-img-hide-title','0'),(51643,32556,'_wp_attachment_image_alt','A man lies on an exercise mat, he is wearing a blue top and black shorts, white socks, and white trainers. He has his left knee bent and right leg straight on the floor. Rachel is knelt beside him wearing an orange top and black tracksuit bottoms, and socks. She is gesturing something with her hands and talking to the class.'),(51644,32556,'dt-img-hide-title','0'),(51645,38017,'_wp_attachment_backup_sizes','a:2:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_Black_RGB-01.png\";}s:18:\"full-1710432922797\";a:3:{s:5:\"width\";i:500;s:6:\"height\";i:117;s:4:\"file\";s:44:\"FFG_Wordmark_Black_RGB-01-e1710432746919.png\";}}'),(51646,38017,'_wp_page_template','default'),(51647,38017,'dt-video-url',''),(51648,38017,'dt-img-link',''),(51649,38017,'dt-img-hide-title','0'),(51650,38023,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:29:\"FFG_Wordmark_White_RGB-01.png\";}}'),(51651,38023,'dt-img-hide-title','0'),(51659,39148,'_edit_lock','1733320733:18'),(51660,39148,'_edit_last','5'),(51661,39148,'hero_style','default'),(51662,39148,'_hero_style','field_62051d9dc5324'),(51664,39148,'__thumbnail_id','field_617570855ddaf'),(51665,39148,'hero_image_pos_x','right'),(51666,39148,'_hero_image_pos_x','field_62ec3d05390bb'),(51667,39148,'hero_image_pos_y','top'),(51668,39148,'_hero_image_pos_y','field_62ec3d05390bc'),(51669,39148,'hero_image_pos',''),(51670,39148,'_hero_image_pos','field_62ec3d05390ba'),(51671,39148,'hero_title','Getting Started'),(51672,39148,'_hero_title','field_617571fe285e8'),(51673,39148,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(51674,39148,'_hero_text','field_6175723c285e9'),(51675,39148,'hero_actions',''),(51676,39148,'_hero_actions','field_61757270285ea'),(51677,39148,'hero_icon','bars'),(51678,39148,'_hero_icon','field_61a6182199d03'),(51679,39148,'fft_hide_from_listings','0'),(51680,39148,'_fft_hide_from_listings','field_61f1320446ab2'),(51681,39148,'fft_page_format','default'),(51682,39148,'_fft_page_format','field_61ae213f1f218'),(51683,39148,'fft_hide_nav','0'),(51684,39148,'_fft_hide_nav','field_635bd5e43527c'),(51685,39148,'fft_hide_header_call_to_action','0'),(51686,39148,'_fft_hide_header_call_to_action','field_635bd6723527d'),(51687,39148,'fft_page_sitemap','0'),(51688,39148,'_fft_page_sitemap','field_61af9b34e8181'),(51689,39148,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";}'),(51690,39148,'_blocks','field_6176696113096'),(51691,39148,'_yoast_wpseo_estimated-reading-time-minutes','1'),(51692,39149,'hero_style','default'),(51693,39149,'_hero_style','field_62051d9dc5324'),(51694,39149,'_thumbnail_id',''),(51695,39149,'__thumbnail_id','field_617570855ddaf'),(51696,39149,'hero_image_pos_x','right'),(51697,39149,'_hero_image_pos_x','field_62ec3d05390bb'),(51698,39149,'hero_image_pos_y','top'),(51699,39149,'_hero_image_pos_y','field_62ec3d05390bc'),(51700,39149,'hero_image_pos',''),(51701,39149,'_hero_image_pos','field_62ec3d05390ba'),(51702,39149,'hero_title','Getting Started'),(51703,39149,'_hero_title','field_617571fe285e8'),(51704,39149,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and more for informed movement choices.'),(51705,39149,'_hero_text','field_6175723c285e9'),(51706,39149,'hero_actions',''),(51707,39149,'_hero_actions','field_61757270285ea'),(51708,39149,'hero_icon','circle'),(51709,39149,'_hero_icon','field_61a6182199d03'),(51710,39149,'fft_hide_from_listings','0'),(51711,39149,'_fft_hide_from_listings','field_61f1320446ab2'),(51712,39149,'fft_page_format','default'),(51713,39149,'_fft_page_format','field_61ae213f1f218'),(51714,39149,'fft_hide_nav','0'),(51715,39149,'_fft_hide_nav','field_635bd5e43527c'),(51716,39149,'fft_hide_header_call_to_action','0'),(51717,39149,'_fft_hide_header_call_to_action','field_635bd6723527d'),(51718,39149,'fft_page_sitemap','0'),(51719,39149,'_fft_page_sitemap','field_61af9b34e8181'),(51720,39149,'blocks',''),(51721,39149,'_blocks','field_6176696113096'),(51753,39151,'hero_style','default'),(51754,39151,'_hero_style','field_62051d9dc5324'),(51755,39151,'hero_image_pos_x','right'),(51756,39151,'_hero_image_pos_x','field_62ec3d05390bb'),(51757,39151,'hero_image_pos_y','top'),(51758,39151,'_hero_image_pos_y','field_62ec3d05390bc'),(51759,39151,'hero_image_pos',''),(51760,39151,'_hero_image_pos','field_62ec3d05390ba'),(51761,39151,'hero_title','Getting Started'),(51762,39151,'_hero_title','field_617571fe285e8'),(51763,39151,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and more for informed movement choices.'),(51764,39151,'_hero_text','field_6175723c285e9'),(51765,39151,'hero_actions',''),(51766,39151,'_hero_actions','field_61757270285ea'),(51767,39151,'hero_icon','bars'),(51768,39151,'_hero_icon','field_61a6182199d03'),(51769,39151,'fft_hide_from_listings','0'),(51770,39151,'_fft_hide_from_listings','field_61f1320446ab2'),(51771,39151,'fft_page_format','default'),(51772,39151,'_fft_page_format','field_61ae213f1f218'),(51773,39151,'fft_hide_nav','0'),(51774,39151,'_fft_hide_nav','field_635bd5e43527c'),(51775,39151,'fft_hide_header_call_to_action','0'),(51776,39151,'_fft_hide_header_call_to_action','field_635bd6723527d'),(51777,39151,'fft_page_sitemap','0'),(51778,39151,'_fft_page_sitemap','field_61af9b34e8181'),(51779,39151,'blocks',''),(51780,39151,'_blocks','field_6176696113096'),(51781,39151,'_thumbnail_id',''),(51782,39151,'__thumbnail_id','field_617570855ddaf'),(51783,39152,'_wp_attached_file','2024/07/Image-of-rachel-for-Getting-started-5050-split.jpg'),(51784,39152,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:58:\"2024/07/Image-of-rachel-for-Getting-started-5050-split.jpg\";s:8:\"filesize\";i:403400;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Image-of-rachel-for-Getting-started-5050-split-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83798;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"Image-of-rachel-for-Getting-started-5050-split-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133176;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Image-of-rachel-for-Getting-started-5050-split-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22677;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"Image-of-rachel-for-Getting-started-5050-split-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64048;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"Image-of-rachel-for-Getting-started-5050-split-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199544;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:60:\"Image-of-rachel-for-Getting-started-5050-split-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:318801;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:58:\"Image-of-rachel-for-Getting-started-5050-split-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31254;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:58:\"Image-of-rachel-for-Getting-started-5050-split-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118598;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:60:\"Image-of-rachel-for-Getting-started-5050-split-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188337;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:58:\"Image-of-rachel-for-Getting-started-5050-split-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22608;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:58:\"Image-of-rachel-for-Getting-started-5050-split-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83711;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:59:\"Image-of-rachel-for-Getting-started-5050-split-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133092;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:58:\"Image-of-rachel-for-Getting-started-5050-split-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24404;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:58:\"Image-of-rachel-for-Getting-started-5050-split-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93365;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:59:\"Image-of-rachel-for-Getting-started-5050-split-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149831;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:58:\"Image-of-rachel-for-Getting-started-5050-split-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24844;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:58:\"Image-of-rachel-for-Getting-started-5050-split-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92576;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:59:\"Image-of-rachel-for-Getting-started-5050-split-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147061;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:58:\"Image-of-rachel-for-Getting-started-5050-split-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19686;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:58:\"Image-of-rachel-for-Getting-started-5050-split-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71370;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:59:\"Image-of-rachel-for-Getting-started-5050-split-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112763;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(51856,39153,'hero_style','default'),(51857,39153,'_hero_style','field_62051d9dc5324'),(51858,39153,'hero_image_pos_x','right'),(51859,39153,'_hero_image_pos_x','field_62ec3d05390bb'),(51860,39153,'hero_image_pos_y','top'),(51861,39153,'_hero_image_pos_y','field_62ec3d05390bc'),(51862,39153,'hero_image_pos',''),(51863,39153,'_hero_image_pos','field_62ec3d05390ba'),(51864,39153,'hero_title','Getting Started'),(51865,39153,'_hero_title','field_617571fe285e8'),(51866,39153,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and more for informed movement choices.'),(51867,39153,'_hero_text','field_6175723c285e9'),(51868,39153,'hero_actions',''),(51869,39153,'_hero_actions','field_61757270285ea'),(51870,39153,'hero_icon','bars'),(51871,39153,'_hero_icon','field_61a6182199d03'),(51872,39153,'fft_hide_from_listings','0'),(51873,39153,'_fft_hide_from_listings','field_61f1320446ab2'),(51874,39153,'fft_page_format','default'),(51875,39153,'_fft_page_format','field_61ae213f1f218'),(51876,39153,'fft_hide_nav','0'),(51877,39153,'_fft_hide_nav','field_635bd5e43527c'),(51878,39153,'fft_hide_header_call_to_action','0'),(51879,39153,'_fft_hide_header_call_to_action','field_635bd6723527d'),(51880,39153,'fft_page_sitemap','0'),(51881,39153,'_fft_page_sitemap','field_61af9b34e8181'),(51882,39153,'blocks','a:3:{i:0;s:5:\"cards\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";}'),(51883,39153,'_blocks','field_6176696113096'),(51884,39153,'_thumbnail_id',''),(51885,39153,'__thumbnail_id','field_617570855ddaf'),(51886,39153,'blocks_0_acfe_flexible_toggle',''),(51887,39153,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(51888,39153,'blocks_0_acfe_flexible_layout_title','Cards'),(51889,39153,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(51890,39153,'blocks_0_options_theme','#ffffff'),(51891,39153,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(51892,39153,'blocks_0_options_format','carousel'),(51893,39153,'_blocks_0_options_format','field_617a7b15245b5'),(51894,39153,'blocks_0_options_style','default'),(51895,39153,'_blocks_0_options_style','field_6278ffb63484a'),(51896,39153,'blocks_0_options_cards_current_listing','0'),(51897,39153,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(51898,39153,'blocks_0_options_cards_content','custom'),(51899,39153,'_blocks_0_options_cards_content','field_617aba6122688'),(51900,39153,'blocks_0_options',''),(51901,39153,'_blocks_0_options','field_617a7b15245b3'),(51902,39153,'blocks_0_cards_custom_0_image',''),(51903,39153,'_blocks_0_cards_custom_0_image','field_6194cc284d387'),(51904,39153,'blocks_0_cards_custom_0_title',''),(51905,39153,'_blocks_0_cards_custom_0_title','field_6194cc454d388'),(51906,39153,'blocks_0_cards_custom_0_text',''),(51907,39153,'_blocks_0_cards_custom_0_text','field_6194cc4a4d389'),(51908,39153,'blocks_0_cards_custom_0_link',''),(51909,39153,'_blocks_0_cards_custom_0_link','field_6194cc534d38a'),(51910,39153,'blocks_0_cards_custom','1'),(51911,39153,'_blocks_0_cards_custom','field_6194cbf84d386'),(51912,39153,'blocks_1_acfe_flexible_toggle',''),(51913,39153,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(51914,39153,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(51915,39153,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(51916,39153,'blocks_1_options_theme','#ffffff'),(51917,39153,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(51918,39153,'blocks_1_options_reverse','0'),(51919,39153,'_blocks_1_options_reverse','field_61768049bb8ac'),(51920,39153,'blocks_1_options',''),(51921,39153,'_blocks_1_options','field_617682517c334'),(51922,39153,'blocks_1_split_5050_image','39152'),(51923,39153,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(51924,39153,'blocks_1_split_5050_video',''),(51925,39153,'_blocks_1_split_5050_video','field_6239f3160848a'),(51926,39153,'blocks_1_split_5050_content_title',''),(51927,39153,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(51928,39153,'blocks_1_split_5050_content_heading','About our career guides'),(51929,39153,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(51930,39153,'blocks_1_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and multiple UK workshop locations. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(51931,39153,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(51932,39153,'blocks_1_split_5050_content_actions',''),(51933,39153,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(51934,39153,'blocks_1_split_5050_content',''),(51935,39153,'_blocks_1_split_5050_content','field_61767afceb8ba'),(51936,39153,'blocks_2_acfe_flexible_toggle',''),(51937,39153,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(51938,39153,'blocks_2_acfe_flexible_layout_title','Form'),(51939,39153,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(51940,39153,'blocks_2_row_content_format','standard'),(51941,39153,'_blocks_2_row_content_format','field_6481ead962881'),(51942,39153,'blocks_2_row_content_title','Ready to get started ?'),(51943,39153,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(51944,39153,'blocks_2_row_content_heading','Ready to get started ?'),(51945,39153,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(51946,39153,'blocks_2_row_content_text','Complete The Form to Get Your Free Price Guide'),(51947,39153,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(51948,39153,'blocks_2_row_content_actions',''),(51949,39153,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(51950,39153,'blocks_2_row_content',''),(51951,39153,'_blocks_2_row_content','field_61a0f5f5b3db0'),(51952,39153,'blocks_2_row_form',''),(51953,39153,'_blocks_2_row_form','field_61a4ff2c0b08e'),(51954,39153,'blocks_2_row_form_button_label',''),(51955,39153,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(51957,39154,'_edit_lock','1726750760:5'),(51958,39154,'_edit_last','5'),(51959,39154,'hero_style','default'),(51960,39154,'_hero_style','field_62051d9dc5324'),(51961,39154,'_thumbnail_id','38321'),(51962,39154,'__thumbnail_id','field_617570855ddaf'),(51963,39154,'hero_image_pos_x','right'),(51964,39154,'_hero_image_pos_x','field_62ec3d05390bb'),(51965,39154,'hero_image_pos_y','top'),(51966,39154,'_hero_image_pos_y','field_62ec3d05390bc'),(51967,39154,'hero_image_pos',''),(51968,39154,'_hero_image_pos','field_62ec3d05390ba'),(51969,39154,'hero_title','Resources'),(51970,39154,'_hero_title','field_617571fe285e8'),(51971,39154,'hero_text','Innovative content to support the growth of your organisation.'),(51972,39154,'_hero_text','field_6175723c285e9'),(51973,39154,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(51974,39154,'_hero_actions_0_button','field_61757281285eb'),(51975,39154,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-2\";s:6:\"target\";s:0:\"\";}'),(51976,39154,'_hero_actions_1_button','field_61757281285eb'),(51977,39154,'hero_actions','2'),(51978,39154,'_hero_actions','field_61757270285ea'),(51979,39154,'hero_icon',''),(51980,39154,'_hero_icon','field_61a6182199d03'),(51981,39154,'fft_hide_from_listings','0'),(51982,39154,'_fft_hide_from_listings','field_61f1320446ab2'),(51983,39154,'fft_page_format','default'),(51984,39154,'_fft_page_format','field_61ae213f1f218'),(51985,39154,'fft_hide_nav','0'),(51986,39154,'_fft_hide_nav','field_635bd5e43527c'),(51987,39154,'fft_hide_header_call_to_action','0'),(51988,39154,'_fft_hide_header_call_to_action','field_635bd6723527d'),(51989,39154,'fft_page_sitemap','0'),(51990,39154,'_fft_page_sitemap','field_61af9b34e8181'),(51991,39154,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:4:\"form\";i:2;s:10:\"link_stack\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:18:\"testimonial_slider\";}'),(51992,39154,'_blocks','field_6176696113096'),(51993,39154,'_yoast_wpseo_estimated-reading-time-minutes','1'),(51994,39155,'hero_style','default'),(51995,39155,'_hero_style','field_62051d9dc5324'),(51996,39155,'_thumbnail_id','38321'),(51997,39155,'__thumbnail_id','field_617570855ddaf'),(51998,39155,'hero_image_pos_x','right'),(51999,39155,'_hero_image_pos_x','field_62ec3d05390bb'),(52000,39155,'hero_image_pos_y','top'),(52001,39155,'_hero_image_pos_y','field_62ec3d05390bc'),(52002,39155,'hero_image_pos',''),(52003,39155,'_hero_image_pos','field_62ec3d05390ba'),(52004,39155,'hero_title','Resources'),(52005,39155,'_hero_title','field_617571fe285e8'),(52006,39155,'hero_text','Innovative content to support the growth of your organisation.'),(52007,39155,'_hero_text','field_6175723c285e9'),(52008,39155,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-78389-3\";s:6:\"target\";s:0:\"\";}'),(52009,39155,'_hero_actions_0_button','field_61757281285eb'),(52010,39155,'hero_actions_1_button',''),(52011,39155,'_hero_actions_1_button','field_61757281285eb'),(52012,39155,'hero_actions','2'),(52013,39155,'_hero_actions','field_61757270285ea'),(52014,39155,'hero_icon',''),(52015,39155,'_hero_icon','field_61a6182199d03'),(52016,39155,'fft_hide_from_listings','0'),(52017,39155,'_fft_hide_from_listings','field_61f1320446ab2'),(52018,39155,'fft_page_format','default'),(52019,39155,'_fft_page_format','field_61ae213f1f218'),(52020,39155,'fft_hide_nav','0'),(52021,39155,'_fft_hide_nav','field_635bd5e43527c'),(52022,39155,'fft_hide_header_call_to_action','0'),(52023,39155,'_fft_hide_header_call_to_action','field_635bd6723527d'),(52024,39155,'fft_page_sitemap','0'),(52025,39155,'_fft_page_sitemap','field_61af9b34e8181'),(52026,39155,'blocks',''),(52027,39155,'_blocks','field_6176696113096'),(52028,39156,'hero_style','default'),(52029,39156,'_hero_style','field_62051d9dc5324'),(52030,39156,'_thumbnail_id','38321'),(52031,39156,'__thumbnail_id','field_617570855ddaf'),(52032,39156,'hero_image_pos_x','right'),(52033,39156,'_hero_image_pos_x','field_62ec3d05390bb'),(52034,39156,'hero_image_pos_y','top'),(52035,39156,'_hero_image_pos_y','field_62ec3d05390bc'),(52036,39156,'hero_image_pos',''),(52037,39156,'_hero_image_pos','field_62ec3d05390ba'),(52038,39156,'hero_title','Resources'),(52039,39156,'_hero_title','field_617571fe285e8'),(52040,39156,'hero_text','Innovative content to support the growth of your organisation.'),(52041,39156,'_hero_text','field_6175723c285e9'),(52042,39156,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(52043,39156,'_hero_actions_0_button','field_61757281285eb'),(52044,39156,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-1\";s:6:\"target\";s:0:\"\";}'),(52045,39156,'_hero_actions_1_button','field_61757281285eb'),(52046,39156,'hero_actions','2'),(52047,39156,'_hero_actions','field_61757270285ea'),(52048,39156,'hero_icon',''),(52049,39156,'_hero_icon','field_61a6182199d03'),(52050,39156,'fft_hide_from_listings','0'),(52051,39156,'_fft_hide_from_listings','field_61f1320446ab2'),(52052,39156,'fft_page_format','default'),(52053,39156,'_fft_page_format','field_61ae213f1f218'),(52054,39156,'fft_hide_nav','0'),(52055,39156,'_fft_hide_nav','field_635bd5e43527c'),(52056,39156,'fft_hide_header_call_to_action','0'),(52057,39156,'_fft_hide_header_call_to_action','field_635bd6723527d'),(52058,39156,'fft_page_sitemap','0'),(52059,39156,'_fft_page_sitemap','field_61af9b34e8181'),(52060,39156,'blocks',''),(52061,39156,'_blocks','field_6176696113096'),(52062,39154,'blocks_0_acfe_flexible_toggle',''),(52063,39154,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(52064,39154,'blocks_0_acfe_flexible_layout_title','Text Block'),(52065,39154,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(52066,39154,'blocks_0_options_theme','#f5f5f5'),(52067,39154,'_blocks_0_options_theme','field_6176830e2ad17'),(52068,39154,'blocks_0_options',''),(52069,39154,'_blocks_0_options','field_6176830e2ad16'),(52070,39154,'blocks_0_text_block_heading','Resources Available'),(52071,39154,'_blocks_0_text_block_heading','field_617669d413097'),(52072,39154,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(52073,39154,'_blocks_0_text_block_content','field_617669ec13098'),(52098,39158,'hero_style','default'),(52099,39158,'_hero_style','field_62051d9dc5324'),(52100,39158,'_thumbnail_id','38321'),(52101,39158,'__thumbnail_id','field_617570855ddaf'),(52102,39158,'hero_image_pos_x','right'),(52103,39158,'_hero_image_pos_x','field_62ec3d05390bb'),(52104,39158,'hero_image_pos_y','top'),(52105,39158,'_hero_image_pos_y','field_62ec3d05390bc'),(52106,39158,'hero_image_pos',''),(52107,39158,'_hero_image_pos','field_62ec3d05390ba'),(52108,39158,'hero_title','Resources'),(52109,39158,'_hero_title','field_617571fe285e8'),(52110,39158,'hero_text','Innovative content to support the growth of your organisation.'),(52111,39158,'_hero_text','field_6175723c285e9'),(52112,39158,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(52113,39158,'_hero_actions_0_button','field_61757281285eb'),(52114,39158,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-1\";s:6:\"target\";s:0:\"\";}'),(52115,39158,'_hero_actions_1_button','field_61757281285eb'),(52116,39158,'hero_actions','2'),(52117,39158,'_hero_actions','field_61757270285ea'),(52118,39158,'hero_icon',''),(52119,39158,'_hero_icon','field_61a6182199d03'),(52120,39158,'fft_hide_from_listings','0'),(52121,39158,'_fft_hide_from_listings','field_61f1320446ab2'),(52122,39158,'fft_page_format','default'),(52123,39158,'_fft_page_format','field_61ae213f1f218'),(52124,39158,'fft_hide_nav','0'),(52125,39158,'_fft_hide_nav','field_635bd5e43527c'),(52126,39158,'fft_hide_header_call_to_action','0'),(52127,39158,'_fft_hide_header_call_to_action','field_635bd6723527d'),(52128,39158,'fft_page_sitemap','0'),(52129,39158,'_fft_page_sitemap','field_61af9b34e8181'),(52130,39158,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";}'),(52131,39158,'_blocks','field_6176696113096'),(52132,39158,'blocks_0_acfe_flexible_toggle',''),(52133,39158,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(52134,39158,'blocks_0_acfe_flexible_layout_title','Text Block'),(52135,39158,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(52136,39158,'blocks_0_options_theme','#f5f5f5'),(52137,39158,'_blocks_0_options_theme','field_6176830e2ad17'),(52138,39158,'blocks_0_options',''),(52139,39158,'_blocks_0_options','field_6176830e2ad16'),(52140,39158,'blocks_0_text_block_heading','Resources Available'),(52141,39158,'_blocks_0_text_block_heading','field_617669d413097'),(52142,39158,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(52143,39158,'_blocks_0_text_block_content','field_617669ec13098'),(52144,39158,'blocks_1_acfe_flexible_toggle',''),(52145,39158,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(52146,39158,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(52147,39158,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(52148,39158,'blocks_1_options_theme','#ffffff'),(52149,39158,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(52150,39158,'blocks_1_options_reverse','0'),(52151,39158,'_blocks_1_options_reverse','field_61768049bb8ac'),(52152,39158,'blocks_1_options',''),(52153,39158,'_blocks_1_options','field_617682517c334'),(52154,39158,'blocks_1_split_5050_image',''),(52155,39158,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(52156,39158,'blocks_1_split_5050_video','https://www.youtube.com/@biomedu'),(52157,39158,'_blocks_1_split_5050_video','field_6239f3160848a'),(52158,39158,'blocks_1_split_5050_content_title',''),(52159,39158,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(52160,39158,'blocks_1_split_5050_content_heading','Video Resources'),(52161,39158,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(52162,39158,'blocks_1_split_5050_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(52163,39158,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(52164,39158,'blocks_1_split_5050_content_actions',''),(52165,39158,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(52166,39158,'blocks_1_split_5050_content',''),(52167,39158,'_blocks_1_split_5050_content','field_61767afceb8ba'),(52168,39154,'_oembed_f20eabecc61bfa8a2cd16fff474d5a10','{{unknown}}'),(52195,39160,'hero_style','default'),(52196,39160,'_hero_style','field_62051d9dc5324'),(52197,39160,'_thumbnail_id','38321'),(52198,39160,'__thumbnail_id','field_617570855ddaf'),(52199,39160,'hero_image_pos_x','right'),(52200,39160,'_hero_image_pos_x','field_62ec3d05390bb'),(52201,39160,'hero_image_pos_y','top'),(52202,39160,'_hero_image_pos_y','field_62ec3d05390bc'),(52203,39160,'hero_image_pos',''),(52204,39160,'_hero_image_pos','field_62ec3d05390ba'),(52205,39160,'hero_title','Resources'),(52206,39160,'_hero_title','field_617571fe285e8'),(52207,39160,'hero_text','Innovative content to support the growth of your organisation.'),(52208,39160,'_hero_text','field_6175723c285e9'),(52209,39160,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(52210,39160,'_hero_actions_0_button','field_61757281285eb'),(52211,39160,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-1\";s:6:\"target\";s:0:\"\";}'),(52212,39160,'_hero_actions_1_button','field_61757281285eb'),(52213,39160,'hero_actions','2'),(52214,39160,'_hero_actions','field_61757270285ea'),(52215,39160,'hero_icon',''),(52216,39160,'_hero_icon','field_61a6182199d03'),(52217,39160,'fft_hide_from_listings','0'),(52218,39160,'_fft_hide_from_listings','field_61f1320446ab2'),(52219,39160,'fft_page_format','default'),(52220,39160,'_fft_page_format','field_61ae213f1f218'),(52221,39160,'fft_hide_nav','0'),(52222,39160,'_fft_hide_nav','field_635bd5e43527c'),(52223,39160,'fft_hide_header_call_to_action','0'),(52224,39160,'_fft_hide_header_call_to_action','field_635bd6723527d'),(52225,39160,'fft_page_sitemap','0'),(52226,39160,'_fft_page_sitemap','field_61af9b34e8181'),(52227,39160,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"link_stack\";}'),(52228,39160,'_blocks','field_6176696113096'),(52229,39160,'blocks_0_acfe_flexible_toggle',''),(52230,39160,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(52231,39160,'blocks_0_acfe_flexible_layout_title','Text Block'),(52232,39160,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(52233,39160,'blocks_0_options_theme','#f5f5f5'),(52234,39160,'_blocks_0_options_theme','field_6176830e2ad17'),(52235,39160,'blocks_0_options',''),(52236,39160,'_blocks_0_options','field_6176830e2ad16'),(52237,39160,'blocks_0_text_block_heading','Resources Available'),(52238,39160,'_blocks_0_text_block_heading','field_617669d413097'),(52239,39160,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(52240,39160,'_blocks_0_text_block_content','field_617669ec13098'),(52241,39160,'blocks_1_acfe_flexible_toggle',''),(52242,39160,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(52243,39160,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(52244,39160,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(52245,39160,'blocks_1_options_theme','#ffffff'),(52246,39160,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(52247,39160,'blocks_1_options_reverse','0'),(52248,39160,'_blocks_1_options_reverse','field_61768049bb8ac'),(52249,39160,'blocks_1_options',''),(52250,39160,'_blocks_1_options','field_617682517c334'),(52251,39160,'blocks_1_split_5050_image',''),(52252,39160,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(52253,39160,'blocks_1_split_5050_video','https://www.youtube.com/@biomedu'),(52254,39160,'_blocks_1_split_5050_video','field_6239f3160848a'),(52255,39160,'blocks_1_split_5050_content_title',''),(52256,39160,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(52257,39160,'blocks_1_split_5050_content_heading','Video Resources'),(52258,39160,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(52259,39160,'blocks_1_split_5050_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(52260,39160,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(52261,39160,'blocks_1_split_5050_content_actions',''),(52262,39160,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(52263,39160,'blocks_1_split_5050_content',''),(52264,39160,'_blocks_1_split_5050_content','field_61767afceb8ba'),(52265,39160,'blocks_2_acfe_flexible_toggle',''),(52266,39160,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(52267,39160,'blocks_2_acfe_flexible_layout_title','Link Stack'),(52268,39160,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(52269,39160,'blocks_2_options_theme','#ffffff'),(52270,39160,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(52271,39160,'blocks_2_options',''),(52272,39160,'_blocks_2_options','field_6177b758246ae'),(52273,39160,'blocks_2_link_stack_content_title',''),(52274,39160,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(52275,39160,'blocks_2_link_stack_content_heading','About Our Channel '),(52276,39160,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(52277,39160,'blocks_2_link_stack_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(52278,39160,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(52279,39160,'blocks_2_link_stack_content_actions',''),(52280,39160,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(52281,39160,'blocks_2_link_stack_content',''),(52282,39160,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(52283,39160,'blocks_2_link_stack_0_label','Hosted by Rachel Frances Thompson'),(52284,39160,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(52285,39160,'blocks_2_link_stack_0_title','Our YouTube Channel'),(52286,39160,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(52287,39160,'blocks_2_link_stack_0_url','https://www.youtube.com/@biomedu'),(52288,39160,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(52289,39160,'blocks_2_link_stack','1'),(52290,39160,'_blocks_2_link_stack','field_6177b7f600cff'),(52341,39161,'hero_style','default'),(52342,39161,'_hero_style','field_62051d9dc5324'),(52343,39161,'_thumbnail_id','38321'),(52344,39161,'__thumbnail_id','field_617570855ddaf'),(52345,39161,'hero_image_pos_x','right'),(52346,39161,'_hero_image_pos_x','field_62ec3d05390bb'),(52347,39161,'hero_image_pos_y','top'),(52348,39161,'_hero_image_pos_y','field_62ec3d05390bc'),(52349,39161,'hero_image_pos',''),(52350,39161,'_hero_image_pos','field_62ec3d05390ba'),(52351,39161,'hero_title','Resources'),(52352,39161,'_hero_title','field_617571fe285e8'),(52353,39161,'hero_text','Innovative content to support the growth of your organisation.'),(52354,39161,'_hero_text','field_6175723c285e9'),(52355,39161,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(52356,39161,'_hero_actions_0_button','field_61757281285eb'),(52357,39161,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-1\";s:6:\"target\";s:0:\"\";}'),(52358,39161,'_hero_actions_1_button','field_61757281285eb'),(52359,39161,'hero_actions','2'),(52360,39161,'_hero_actions','field_61757270285ea'),(52361,39161,'hero_icon',''),(52362,39161,'_hero_icon','field_61a6182199d03'),(52363,39161,'fft_hide_from_listings','0'),(52364,39161,'_fft_hide_from_listings','field_61f1320446ab2'),(52365,39161,'fft_page_format','default'),(52366,39161,'_fft_page_format','field_61ae213f1f218'),(52367,39161,'fft_hide_nav','0'),(52368,39161,'_fft_hide_nav','field_635bd5e43527c'),(52369,39161,'fft_hide_header_call_to_action','0'),(52370,39161,'_fft_hide_header_call_to_action','field_635bd6723527d'),(52371,39161,'fft_page_sitemap','0'),(52372,39161,'_fft_page_sitemap','field_61af9b34e8181'),(52373,39161,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"link_stack\";i:2;s:10:\"split_5050\";}'),(52374,39161,'_blocks','field_6176696113096'),(52375,39161,'blocks_0_acfe_flexible_toggle',''),(52376,39161,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(52377,39161,'blocks_0_acfe_flexible_layout_title','Text Block'),(52378,39161,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(52379,39161,'blocks_0_options_theme','#f5f5f5'),(52380,39161,'_blocks_0_options_theme','field_6176830e2ad17'),(52381,39161,'blocks_0_options',''),(52382,39161,'_blocks_0_options','field_6176830e2ad16'),(52383,39161,'blocks_0_text_block_heading','Resources Available'),(52384,39161,'_blocks_0_text_block_heading','field_617669d413097'),(52385,39161,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(52386,39161,'_blocks_0_text_block_content','field_617669ec13098'),(52387,39161,'blocks_1_acfe_flexible_toggle',''),(52388,39161,'_blocks_1_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(52389,39161,'blocks_1_acfe_flexible_layout_title','Link Stack'),(52390,39161,'_blocks_1_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(52391,39161,'blocks_1_options_theme','#ffffff'),(52392,39161,'_blocks_1_options_theme','field_6177b758246af_field_6176830e2ad17'),(52393,39161,'blocks_1_options',''),(52394,39161,'_blocks_1_options','field_6177b758246ae'),(52395,39161,'blocks_1_link_stack_content_title',''),(52396,39161,'_blocks_1_link_stack_content_title','field_6177b7b600cf9'),(52397,39161,'blocks_1_link_stack_content_heading','About Our Channel '),(52398,39161,'_blocks_1_link_stack_content_heading','field_6177b7b600cfa'),(52399,39161,'blocks_1_link_stack_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(52400,39161,'_blocks_1_link_stack_content_text','field_6177b7b600cfb'),(52401,39161,'blocks_1_link_stack_content_actions',''),(52402,39161,'_blocks_1_link_stack_content_actions','field_6177b7b600cfc'),(52403,39161,'blocks_1_link_stack_content',''),(52404,39161,'_blocks_1_link_stack_content','field_6177b7b600cf8'),(52405,39161,'blocks_1_link_stack_0_label','Hosted by Rachel Frances Thompson'),(52406,39161,'_blocks_1_link_stack_0_label','field_6177b80900d00'),(52407,39161,'blocks_1_link_stack_0_title','Our YouTube Channel'),(52408,39161,'_blocks_1_link_stack_0_title','field_6177b80f00d01'),(52409,39161,'blocks_1_link_stack_0_url','https://www.youtube.com/@biomedu'),(52410,39161,'_blocks_1_link_stack_0_url','field_6177b82200d02'),(52411,39161,'blocks_1_link_stack','1'),(52412,39161,'_blocks_1_link_stack','field_6177b7f600cff'),(52413,39161,'blocks_2_acfe_flexible_toggle','1'),(52414,39161,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(52415,39161,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(52416,39161,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(52417,39161,'blocks_2_options_theme','#ffffff'),(52418,39161,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(52419,39161,'blocks_2_options_reverse','0'),(52420,39161,'_blocks_2_options_reverse','field_61768049bb8ac'),(52421,39161,'blocks_2_options',''),(52422,39161,'_blocks_2_options','field_617682517c334'),(52423,39161,'blocks_2_split_5050_image',''),(52424,39161,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(52425,39161,'blocks_2_split_5050_video','https://www.youtube.com/@biomedu'),(52426,39161,'_blocks_2_split_5050_video','field_6239f3160848a'),(52427,39161,'blocks_2_split_5050_content_title',''),(52428,39161,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(52429,39161,'blocks_2_split_5050_content_heading','Video Resources'),(52430,39161,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(52431,39161,'blocks_2_split_5050_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(52432,39161,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(52433,39161,'blocks_2_split_5050_content_actions',''),(52434,39161,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(52435,39161,'blocks_2_split_5050_content',''),(52436,39161,'_blocks_2_split_5050_content','field_61767afceb8ba'),(52437,39162,'hero_style','default'),(52438,39162,'_hero_style','field_62051d9dc5324'),(52439,39162,'_thumbnail_id','38321'),(52440,39162,'__thumbnail_id','field_617570855ddaf'),(52441,39162,'hero_image_pos_x','right'),(52442,39162,'_hero_image_pos_x','field_62ec3d05390bb'),(52443,39162,'hero_image_pos_y','top'),(52444,39162,'_hero_image_pos_y','field_62ec3d05390bc'),(52445,39162,'hero_image_pos',''),(52446,39162,'_hero_image_pos','field_62ec3d05390ba'),(52447,39162,'hero_title','Resources'),(52448,39162,'_hero_title','field_617571fe285e8'),(52449,39162,'hero_text','Innovative content to support the growth of your organisation.'),(52450,39162,'_hero_text','field_6175723c285e9'),(52451,39162,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(52452,39162,'_hero_actions_0_button','field_61757281285eb'),(52453,39162,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-1\";s:6:\"target\";s:0:\"\";}'),(52454,39162,'_hero_actions_1_button','field_61757281285eb'),(52455,39162,'hero_actions','2'),(52456,39162,'_hero_actions','field_61757270285ea'),(52457,39162,'hero_icon',''),(52458,39162,'_hero_icon','field_61a6182199d03'),(52459,39162,'fft_hide_from_listings','0'),(52460,39162,'_fft_hide_from_listings','field_61f1320446ab2'),(52461,39162,'fft_page_format','default'),(52462,39162,'_fft_page_format','field_61ae213f1f218'),(52463,39162,'fft_hide_nav','0'),(52464,39162,'_fft_hide_nav','field_635bd5e43527c'),(52465,39162,'fft_hide_header_call_to_action','0'),(52466,39162,'_fft_hide_header_call_to_action','field_635bd6723527d'),(52467,39162,'fft_page_sitemap','0'),(52468,39162,'_fft_page_sitemap','field_61af9b34e8181'),(52469,39162,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"link_stack\";i:2;s:10:\"split_5050\";}'),(52470,39162,'_blocks','field_6176696113096'),(52471,39162,'blocks_0_acfe_flexible_toggle',''),(52472,39162,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(52473,39162,'blocks_0_acfe_flexible_layout_title','Text Block'),(52474,39162,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(52475,39162,'blocks_0_options_theme','#f5f5f5'),(52476,39162,'_blocks_0_options_theme','field_6176830e2ad17'),(52477,39162,'blocks_0_options',''),(52478,39162,'_blocks_0_options','field_6176830e2ad16'),(52479,39162,'blocks_0_text_block_heading','Resources Available'),(52480,39162,'_blocks_0_text_block_heading','field_617669d413097'),(52481,39162,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(52482,39162,'_blocks_0_text_block_content','field_617669ec13098'),(52483,39162,'blocks_1_acfe_flexible_toggle',''),(52484,39162,'_blocks_1_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(52485,39162,'blocks_1_acfe_flexible_layout_title','Link Stack'),(52486,39162,'_blocks_1_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(52487,39162,'blocks_1_options_theme','#ffffff'),(52488,39162,'_blocks_1_options_theme','field_6177b758246af_field_6176830e2ad17'),(52489,39162,'blocks_1_options',''),(52490,39162,'_blocks_1_options','field_6177b758246ae'),(52491,39162,'blocks_1_link_stack_content_title',''),(52492,39162,'_blocks_1_link_stack_content_title','field_6177b7b600cf9'),(52493,39162,'blocks_1_link_stack_content_heading','About Our YouTube Channel '),(52494,39162,'_blocks_1_link_stack_content_heading','field_6177b7b600cfa'),(52495,39162,'blocks_1_link_stack_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(52496,39162,'_blocks_1_link_stack_content_text','field_6177b7b600cfb'),(52497,39162,'blocks_1_link_stack_content_actions',''),(52498,39162,'_blocks_1_link_stack_content_actions','field_6177b7b600cfc'),(52499,39162,'blocks_1_link_stack_content',''),(52500,39162,'_blocks_1_link_stack_content','field_6177b7b600cf8'),(52501,39162,'blocks_1_link_stack_0_label','Hosted by Rachel Frances Thompson'),(52502,39162,'_blocks_1_link_stack_0_label','field_6177b80900d00'),(52503,39162,'blocks_1_link_stack_0_title','Our YouTube Channel'),(52504,39162,'_blocks_1_link_stack_0_title','field_6177b80f00d01'),(52505,39162,'blocks_1_link_stack_0_url','https://www.youtube.com/@biomedu'),(52506,39162,'_blocks_1_link_stack_0_url','field_6177b82200d02'),(52507,39162,'blocks_1_link_stack','1'),(52508,39162,'_blocks_1_link_stack','field_6177b7f600cff'),(52509,39162,'blocks_2_acfe_flexible_toggle','1'),(52510,39162,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(52511,39162,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(52512,39162,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(52513,39162,'blocks_2_options_theme','#ffffff'),(52514,39162,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(52515,39162,'blocks_2_options_reverse','0'),(52516,39162,'_blocks_2_options_reverse','field_61768049bb8ac'),(52517,39162,'blocks_2_options',''),(52518,39162,'_blocks_2_options','field_617682517c334'),(52519,39162,'blocks_2_split_5050_image',''),(52520,39162,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(52521,39162,'blocks_2_split_5050_video','https://www.youtube.com/@biomedu'),(52522,39162,'_blocks_2_split_5050_video','field_6239f3160848a'),(52523,39162,'blocks_2_split_5050_content_title',''),(52524,39162,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(52525,39162,'blocks_2_split_5050_content_heading','Video Resources'),(52526,39162,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(52527,39162,'blocks_2_split_5050_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(52528,39162,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(52529,39162,'blocks_2_split_5050_content_actions',''),(52530,39162,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(52531,39162,'blocks_2_split_5050_content',''),(52532,39162,'_blocks_2_split_5050_content','field_61767afceb8ba'),(52553,39163,'hero_style','default'),(52554,39163,'_hero_style','field_62051d9dc5324'),(52555,39163,'_thumbnail_id','38321'),(52556,39163,'__thumbnail_id','field_617570855ddaf'),(52557,39163,'hero_image_pos_x','right'),(52558,39163,'_hero_image_pos_x','field_62ec3d05390bb'),(52559,39163,'hero_image_pos_y','top'),(52560,39163,'_hero_image_pos_y','field_62ec3d05390bc'),(52561,39163,'hero_image_pos',''),(52562,39163,'_hero_image_pos','field_62ec3d05390ba'),(52563,39163,'hero_title','Resources'),(52564,39163,'_hero_title','field_617571fe285e8'),(52565,39163,'hero_text','Innovative content to support the growth of your organisation.'),(52566,39163,'_hero_text','field_6175723c285e9'),(52567,39163,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(52568,39163,'_hero_actions_0_button','field_61757281285eb'),(52569,39163,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-1\";s:6:\"target\";s:0:\"\";}'),(52570,39163,'_hero_actions_1_button','field_61757281285eb'),(52571,39163,'hero_actions','2'),(52572,39163,'_hero_actions','field_61757270285ea'),(52573,39163,'hero_icon',''),(52574,39163,'_hero_icon','field_61a6182199d03'),(52575,39163,'fft_hide_from_listings','0'),(52576,39163,'_fft_hide_from_listings','field_61f1320446ab2'),(52577,39163,'fft_page_format','default'),(52578,39163,'_fft_page_format','field_61ae213f1f218'),(52579,39163,'fft_hide_nav','0'),(52580,39163,'_fft_hide_nav','field_635bd5e43527c'),(52581,39163,'fft_hide_header_call_to_action','0'),(52582,39163,'_fft_hide_header_call_to_action','field_635bd6723527d'),(52583,39163,'fft_page_sitemap','0'),(52584,39163,'_fft_page_sitemap','field_61af9b34e8181'),(52585,39163,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"link_stack\";i:2;s:5:\"cards\";}'),(52586,39163,'_blocks','field_6176696113096'),(52587,39163,'blocks_0_acfe_flexible_toggle',''),(52588,39163,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(52589,39163,'blocks_0_acfe_flexible_layout_title','Text Block'),(52590,39163,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(52591,39163,'blocks_0_options_theme','#f5f5f5'),(52592,39163,'_blocks_0_options_theme','field_6176830e2ad17'),(52593,39163,'blocks_0_options',''),(52594,39163,'_blocks_0_options','field_6176830e2ad16'),(52595,39163,'blocks_0_text_block_heading','Resources Available'),(52596,39163,'_blocks_0_text_block_heading','field_617669d413097'),(52597,39163,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(52598,39163,'_blocks_0_text_block_content','field_617669ec13098'),(52599,39163,'blocks_1_acfe_flexible_toggle',''),(52600,39163,'_blocks_1_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(52601,39163,'blocks_1_acfe_flexible_layout_title','Link Stack'),(52602,39163,'_blocks_1_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(52603,39163,'blocks_1_options_theme','#ffffff'),(52604,39163,'_blocks_1_options_theme','field_6177b758246af_field_6176830e2ad17'),(52605,39163,'blocks_1_options',''),(52606,39163,'_blocks_1_options','field_6177b758246ae'),(52607,39163,'blocks_1_link_stack_content_title',''),(52608,39163,'_blocks_1_link_stack_content_title','field_6177b7b600cf9'),(52609,39163,'blocks_1_link_stack_content_heading','About Our YouTube Channel '),(52610,39163,'_blocks_1_link_stack_content_heading','field_6177b7b600cfa'),(52611,39163,'blocks_1_link_stack_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(52612,39163,'_blocks_1_link_stack_content_text','field_6177b7b600cfb'),(52613,39163,'blocks_1_link_stack_content_actions',''),(52614,39163,'_blocks_1_link_stack_content_actions','field_6177b7b600cfc'),(52615,39163,'blocks_1_link_stack_content',''),(52616,39163,'_blocks_1_link_stack_content','field_6177b7b600cf8'),(52617,39163,'blocks_1_link_stack_0_label','Hosted by Rachel Frances Thompson'),(52618,39163,'_blocks_1_link_stack_0_label','field_6177b80900d00'),(52619,39163,'blocks_1_link_stack_0_title','Our YouTube Channel'),(52620,39163,'_blocks_1_link_stack_0_title','field_6177b80f00d01'),(52621,39163,'blocks_1_link_stack_0_url','https://www.youtube.com/@biomedu'),(52622,39163,'_blocks_1_link_stack_0_url','field_6177b82200d02'),(52623,39163,'blocks_1_link_stack','1'),(52624,39163,'_blocks_1_link_stack','field_6177b7f600cff'),(52625,39163,'blocks_2_acfe_flexible_toggle',''),(52626,39163,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(52627,39163,'blocks_2_acfe_flexible_layout_title','Cards'),(52628,39163,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(52629,39163,'blocks_2_options_theme','#ffffff'),(52630,39163,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(52631,39163,'blocks_2_options_format','carousel'),(52632,39163,'_blocks_2_options_format','field_617a7b15245b5'),(52633,39163,'blocks_2_options_style','cover-image'),(52634,39163,'_blocks_2_options_style','field_6278ffb63484a'),(52635,39163,'blocks_2_options_cards_current_listing','0'),(52636,39163,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(52637,39163,'blocks_2_options_cards_content','post_type'),(52638,39163,'_blocks_2_options_cards_content','field_617aba6122688'),(52639,39163,'blocks_2_options_cards_post_type','post'),(52640,39163,'_blocks_2_options_cards_post_type','field_6194cc744d38b'),(52641,39163,'blocks_2_options_cards_posts_per_page','6'),(52642,39163,'_blocks_2_options_cards_posts_per_page','field_61a7565b1a0f2'),(52643,39163,'blocks_2_options',''),(52644,39163,'_blocks_2_options','field_617a7b15245b3'),(52645,39164,'hero_style','default'),(52646,39164,'_hero_style','field_62051d9dc5324'),(52647,39164,'_thumbnail_id','38321'),(52648,39164,'__thumbnail_id','field_617570855ddaf'),(52649,39164,'hero_image_pos_x','right'),(52650,39164,'_hero_image_pos_x','field_62ec3d05390bb'),(52651,39164,'hero_image_pos_y','top'),(52652,39164,'_hero_image_pos_y','field_62ec3d05390bc'),(52653,39164,'hero_image_pos',''),(52654,39164,'_hero_image_pos','field_62ec3d05390ba'),(52655,39164,'hero_title','Resources'),(52656,39164,'_hero_title','field_617571fe285e8'),(52657,39164,'hero_text','Innovative content to support the growth of your organisation.'),(52658,39164,'_hero_text','field_6175723c285e9'),(52659,39164,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(52660,39164,'_hero_actions_0_button','field_61757281285eb'),(52661,39164,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-1\";s:6:\"target\";s:0:\"\";}'),(52662,39164,'_hero_actions_1_button','field_61757281285eb'),(52663,39164,'hero_actions','2'),(52664,39164,'_hero_actions','field_61757270285ea'),(52665,39164,'hero_icon',''),(52666,39164,'_hero_icon','field_61a6182199d03'),(52667,39164,'fft_hide_from_listings','0'),(52668,39164,'_fft_hide_from_listings','field_61f1320446ab2'),(52669,39164,'fft_page_format','default'),(52670,39164,'_fft_page_format','field_61ae213f1f218'),(52671,39164,'fft_hide_nav','0'),(52672,39164,'_fft_hide_nav','field_635bd5e43527c'),(52673,39164,'fft_hide_header_call_to_action','0'),(52674,39164,'_fft_hide_header_call_to_action','field_635bd6723527d'),(52675,39164,'fft_page_sitemap','0'),(52676,39164,'_fft_page_sitemap','field_61af9b34e8181'),(52677,39164,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"link_stack\";i:2;s:5:\"cards\";}'),(52678,39164,'_blocks','field_6176696113096'),(52679,39164,'blocks_0_acfe_flexible_toggle',''),(52680,39164,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(52681,39164,'blocks_0_acfe_flexible_layout_title','Text Block'),(52682,39164,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(52683,39164,'blocks_0_options_theme','#f5f5f5'),(52684,39164,'_blocks_0_options_theme','field_6176830e2ad17'),(52685,39164,'blocks_0_options',''),(52686,39164,'_blocks_0_options','field_6176830e2ad16'),(52687,39164,'blocks_0_text_block_heading','Resources Available'),(52688,39164,'_blocks_0_text_block_heading','field_617669d413097'),(52689,39164,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(52690,39164,'_blocks_0_text_block_content','field_617669ec13098'),(52691,39164,'blocks_1_acfe_flexible_toggle',''),(52692,39164,'_blocks_1_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(52693,39164,'blocks_1_acfe_flexible_layout_title','Link Stack'),(52694,39164,'_blocks_1_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(52695,39164,'blocks_1_options_theme','#ffffff'),(52696,39164,'_blocks_1_options_theme','field_6177b758246af_field_6176830e2ad17'),(52697,39164,'blocks_1_options',''),(52698,39164,'_blocks_1_options','field_6177b758246ae'),(52699,39164,'blocks_1_link_stack_content_title',''),(52700,39164,'_blocks_1_link_stack_content_title','field_6177b7b600cf9'),(52701,39164,'blocks_1_link_stack_content_heading','About Our YouTube Channel '),(52702,39164,'_blocks_1_link_stack_content_heading','field_6177b7b600cfa'),(52703,39164,'blocks_1_link_stack_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(52704,39164,'_blocks_1_link_stack_content_text','field_6177b7b600cfb'),(52705,39164,'blocks_1_link_stack_content_actions',''),(52706,39164,'_blocks_1_link_stack_content_actions','field_6177b7b600cfc'),(52707,39164,'blocks_1_link_stack_content',''),(52708,39164,'_blocks_1_link_stack_content','field_6177b7b600cf8'),(52709,39164,'blocks_1_link_stack_0_label','Hosted by Rachel Frances Thompson'),(52710,39164,'_blocks_1_link_stack_0_label','field_6177b80900d00'),(52711,39164,'blocks_1_link_stack_0_title','Our YouTube Channel'),(52712,39164,'_blocks_1_link_stack_0_title','field_6177b80f00d01'),(52713,39164,'blocks_1_link_stack_0_url','https://www.youtube.com/@biomedu'),(52714,39164,'_blocks_1_link_stack_0_url','field_6177b82200d02'),(52715,39164,'blocks_1_link_stack','1'),(52716,39164,'_blocks_1_link_stack','field_6177b7f600cff'),(52717,39164,'blocks_2_acfe_flexible_toggle',''),(52718,39164,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(52719,39164,'blocks_2_acfe_flexible_layout_title','Cards'),(52720,39164,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(52721,39164,'blocks_2_options_theme','#ffffff'),(52722,39164,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(52723,39164,'blocks_2_options_format','carousel'),(52724,39164,'_blocks_2_options_format','field_617a7b15245b5'),(52725,39164,'blocks_2_options_style','featured'),(52726,39164,'_blocks_2_options_style','field_6278ffb63484a'),(52727,39164,'blocks_2_options_cards_current_listing','0'),(52728,39164,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(52729,39164,'blocks_2_options_cards_content','post_type'),(52730,39164,'_blocks_2_options_cards_content','field_617aba6122688'),(52731,39164,'blocks_2_options_cards_post_type','post'),(52732,39164,'_blocks_2_options_cards_post_type','field_6194cc744d38b'),(52733,39164,'blocks_2_options_cards_posts_per_page','6'),(52734,39164,'_blocks_2_options_cards_posts_per_page','field_61a7565b1a0f2'),(52735,39164,'blocks_2_options',''),(52736,39164,'_blocks_2_options','field_617a7b15245b3'),(52737,39165,'_wp_attached_file','2024/07/IBA-Discovery-Day-Workshop-600x450-1.jpg'),(52738,39165,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:48:\"2024/07/IBA-Discovery-Day-Workshop-600x450-1.jpg\";s:8:\"filesize\";i:53746;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"IBA-Discovery-Day-Workshop-600x450-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22944;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:48:\"IBA-Discovery-Day-Workshop-600x450-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27934;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:48:\"IBA-Discovery-Day-Workshop-600x450-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20844;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:48:\"IBA-Discovery-Day-Workshop-600x450-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21254;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:48:\"IBA-Discovery-Day-Workshop-600x450-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22944;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:48:\"IBA-Discovery-Day-Workshop-600x450-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19048;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(52781,39166,'hero_style','default'),(52782,39166,'_hero_style','field_62051d9dc5324'),(52783,39166,'_thumbnail_id','38321'),(52784,39166,'__thumbnail_id','field_617570855ddaf'),(52785,39166,'hero_image_pos_x','right'),(52786,39166,'_hero_image_pos_x','field_62ec3d05390bb'),(52787,39166,'hero_image_pos_y','top'),(52788,39166,'_hero_image_pos_y','field_62ec3d05390bc'),(52789,39166,'hero_image_pos',''),(52790,39166,'_hero_image_pos','field_62ec3d05390ba'),(52791,39166,'hero_title','Resources'),(52792,39166,'_hero_title','field_617571fe285e8'),(52793,39166,'hero_text','Innovative content to support the growth of your organisation.'),(52794,39166,'_hero_text','field_6175723c285e9'),(52795,39166,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(52796,39166,'_hero_actions_0_button','field_61757281285eb'),(52797,39166,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-1\";s:6:\"target\";s:0:\"\";}'),(52798,39166,'_hero_actions_1_button','field_61757281285eb'),(52799,39166,'hero_actions','2'),(52800,39166,'_hero_actions','field_61757270285ea'),(52801,39166,'hero_icon',''),(52802,39166,'_hero_icon','field_61a6182199d03'),(52803,39166,'fft_hide_from_listings','0'),(52804,39166,'_fft_hide_from_listings','field_61f1320446ab2'),(52805,39166,'fft_page_format','default'),(52806,39166,'_fft_page_format','field_61ae213f1f218'),(52807,39166,'fft_hide_nav','0'),(52808,39166,'_fft_hide_nav','field_635bd5e43527c'),(52809,39166,'fft_hide_header_call_to_action','0'),(52810,39166,'_fft_hide_header_call_to_action','field_635bd6723527d'),(52811,39166,'fft_page_sitemap','0'),(52812,39166,'_fft_page_sitemap','field_61af9b34e8181'),(52813,39166,'blocks','a:5:{i:0;s:10:\"text_block\";i:1;s:10:\"link_stack\";i:2;s:5:\"cards\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(52814,39166,'_blocks','field_6176696113096'),(52815,39166,'blocks_0_acfe_flexible_toggle',''),(52816,39166,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(52817,39166,'blocks_0_acfe_flexible_layout_title','Text Block'),(52818,39166,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(52819,39166,'blocks_0_options_theme','#f5f5f5'),(52820,39166,'_blocks_0_options_theme','field_6176830e2ad17'),(52821,39166,'blocks_0_options',''),(52822,39166,'_blocks_0_options','field_6176830e2ad16'),(52823,39166,'blocks_0_text_block_heading','Resources Available'),(52824,39166,'_blocks_0_text_block_heading','field_617669d413097'),(52825,39166,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(52826,39166,'_blocks_0_text_block_content','field_617669ec13098'),(52827,39166,'blocks_1_acfe_flexible_toggle',''),(52828,39166,'_blocks_1_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(52829,39166,'blocks_1_acfe_flexible_layout_title','Link Stack'),(52830,39166,'_blocks_1_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(52831,39166,'blocks_1_options_theme','#ffffff'),(52832,39166,'_blocks_1_options_theme','field_6177b758246af_field_6176830e2ad17'),(52833,39166,'blocks_1_options',''),(52834,39166,'_blocks_1_options','field_6177b758246ae'),(52835,39166,'blocks_1_link_stack_content_title',''),(52836,39166,'_blocks_1_link_stack_content_title','field_6177b7b600cf9'),(52837,39166,'blocks_1_link_stack_content_heading','About Our YouTube Channel '),(52838,39166,'_blocks_1_link_stack_content_heading','field_6177b7b600cfa'),(52839,39166,'blocks_1_link_stack_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(52840,39166,'_blocks_1_link_stack_content_text','field_6177b7b600cfb'),(52841,39166,'blocks_1_link_stack_content_actions',''),(52842,39166,'_blocks_1_link_stack_content_actions','field_6177b7b600cfc'),(52843,39166,'blocks_1_link_stack_content',''),(52844,39166,'_blocks_1_link_stack_content','field_6177b7b600cf8'),(52845,39166,'blocks_1_link_stack_0_label','Hosted by Rachel Frances Thompson'),(52846,39166,'_blocks_1_link_stack_0_label','field_6177b80900d00'),(52847,39166,'blocks_1_link_stack_0_title','Our YouTube Channel'),(52848,39166,'_blocks_1_link_stack_0_title','field_6177b80f00d01'),(52849,39166,'blocks_1_link_stack_0_url','https://www.youtube.com/@biomedu'),(52850,39166,'_blocks_1_link_stack_0_url','field_6177b82200d02'),(52851,39166,'blocks_1_link_stack','1'),(52852,39166,'_blocks_1_link_stack','field_6177b7f600cff'),(52853,39166,'blocks_2_acfe_flexible_toggle',''),(52854,39166,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(52855,39166,'blocks_2_acfe_flexible_layout_title','Cards'),(52856,39166,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(52857,39166,'blocks_2_options_theme','#ffffff'),(52858,39166,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(52859,39166,'blocks_2_options_format','carousel'),(52860,39166,'_blocks_2_options_format','field_617a7b15245b5'),(52861,39166,'blocks_2_options_style','featured'),(52862,39166,'_blocks_2_options_style','field_6278ffb63484a'),(52863,39166,'blocks_2_options_cards_current_listing','0'),(52864,39166,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(52865,39166,'blocks_2_options_cards_content','post_type'),(52866,39166,'_blocks_2_options_cards_content','field_617aba6122688'),(52867,39166,'blocks_2_options_cards_post_type','post'),(52868,39166,'_blocks_2_options_cards_post_type','field_6194cc744d38b'),(52869,39166,'blocks_2_options_cards_posts_per_page','6'),(52870,39166,'_blocks_2_options_cards_posts_per_page','field_61a7565b1a0f2'),(52871,39166,'blocks_2_options',''),(52872,39166,'_blocks_2_options','field_617a7b15245b3'),(52873,39166,'blocks_3_acfe_flexible_toggle',''),(52874,39166,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(52875,39166,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(52876,39166,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(52877,39166,'blocks_3_options_theme','#ffffff'),(52878,39166,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(52879,39166,'blocks_3_options_reverse','0'),(52880,39166,'_blocks_3_options_reverse','field_61768049bb8ac'),(52881,39166,'blocks_3_options',''),(52882,39166,'_blocks_3_options','field_617682517c334'),(52883,39166,'blocks_3_split_5050_image','39165'),(52884,39166,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(52885,39166,'blocks_3_split_5050_video',''),(52886,39166,'_blocks_3_split_5050_video','field_6239f3160848a'),(52887,39166,'blocks_3_split_5050_content_title',''),(52888,39166,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(52889,39166,'blocks_3_split_5050_content_heading','IBA Membership'),(52890,39166,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(52891,39166,'blocks_3_split_5050_content_text','Explore the Intrinsic Biomechanics Association (IBA), your portal to a vibrant community and essential resources for Biomechanics Trainers™ &amp; Coaches™. Operated by Biomechanics Education Limited, IBA provides networking opportunities, standardized practices, and continuous education in biomechanics. As a member, you\'ll gain access to exclusive workshops, discounts on courses and products, mentorship, and a dynamic professional network. Join today to elevate your practice and remain at the cutting edge of biomechanical innovation.'),(52892,39166,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(52893,39166,'blocks_3_split_5050_content_actions',''),(52894,39166,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(52895,39166,'blocks_3_split_5050_content',''),(52896,39166,'_blocks_3_split_5050_content','field_61767afceb8ba'),(52897,39166,'blocks_4_acfe_flexible_toggle',''),(52898,39166,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(52899,39166,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(52900,39166,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(52901,39166,'blocks_4_testimonial_slider_content_title',''),(52902,39166,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(52903,39166,'blocks_4_testimonial_slider_content_heading','Testimonials'),(52904,39166,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(52905,39166,'blocks_4_testimonial_slider_content_text','Discover what people say about us'),(52906,39166,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(52907,39166,'blocks_4_testimonial_slider_content_actions',''),(52908,39166,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(52909,39166,'blocks_4_testimonial_slider_content',''),(52910,39166,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(52911,39166,'blocks_4_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(52912,39166,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(52913,39166,'blocks_4_testimonial_slider_ambassador_bool','0'),(52914,39166,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(52915,39167,'hero_style','default'),(52916,39167,'_hero_style','field_62051d9dc5324'),(52917,39167,'_thumbnail_id','38321'),(52918,39167,'__thumbnail_id','field_617570855ddaf'),(52919,39167,'hero_image_pos_x','right'),(52920,39167,'_hero_image_pos_x','field_62ec3d05390bb'),(52921,39167,'hero_image_pos_y','top'),(52922,39167,'_hero_image_pos_y','field_62ec3d05390bc'),(52923,39167,'hero_image_pos',''),(52924,39167,'_hero_image_pos','field_62ec3d05390ba'),(52925,39167,'hero_title','Resources'),(52926,39167,'_hero_title','field_617571fe285e8'),(52927,39167,'hero_text','Innovative content to support the growth of your organisation.'),(52928,39167,'_hero_text','field_6175723c285e9'),(52929,39167,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(52930,39167,'_hero_actions_0_button','field_61757281285eb'),(52931,39167,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-1\";s:6:\"target\";s:0:\"\";}'),(52932,39167,'_hero_actions_1_button','field_61757281285eb'),(52933,39167,'hero_actions','2'),(52934,39167,'_hero_actions','field_61757270285ea'),(52935,39167,'hero_icon',''),(52936,39167,'_hero_icon','field_61a6182199d03'),(52937,39167,'fft_hide_from_listings','0'),(52938,39167,'_fft_hide_from_listings','field_61f1320446ab2'),(52939,39167,'fft_page_format','default'),(52940,39167,'_fft_page_format','field_61ae213f1f218'),(52941,39167,'fft_hide_nav','0'),(52942,39167,'_fft_hide_nav','field_635bd5e43527c'),(52943,39167,'fft_hide_header_call_to_action','0'),(52944,39167,'_fft_hide_header_call_to_action','field_635bd6723527d'),(52945,39167,'fft_page_sitemap','0'),(52946,39167,'_fft_page_sitemap','field_61af9b34e8181'),(52947,39167,'blocks','a:5:{i:0;s:10:\"text_block\";i:1;s:10:\"link_stack\";i:2;s:5:\"cards\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(52948,39167,'_blocks','field_6176696113096'),(52949,39167,'blocks_0_acfe_flexible_toggle',''),(52950,39167,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(52951,39167,'blocks_0_acfe_flexible_layout_title','Text Block'),(52952,39167,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(52953,39167,'blocks_0_options_theme','#f5f5f5'),(52954,39167,'_blocks_0_options_theme','field_6176830e2ad17'),(52955,39167,'blocks_0_options',''),(52956,39167,'_blocks_0_options','field_6176830e2ad16'),(52957,39167,'blocks_0_text_block_heading','Resources Available'),(52958,39167,'_blocks_0_text_block_heading','field_617669d413097'),(52959,39167,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(52960,39167,'_blocks_0_text_block_content','field_617669ec13098'),(52961,39167,'blocks_1_acfe_flexible_toggle',''),(52962,39167,'_blocks_1_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(52963,39167,'blocks_1_acfe_flexible_layout_title','Link Stack'),(52964,39167,'_blocks_1_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(52965,39167,'blocks_1_options_theme','#ffffff'),(52966,39167,'_blocks_1_options_theme','field_6177b758246af_field_6176830e2ad17'),(52967,39167,'blocks_1_options',''),(52968,39167,'_blocks_1_options','field_6177b758246ae'),(52969,39167,'blocks_1_link_stack_content_title',''),(52970,39167,'_blocks_1_link_stack_content_title','field_6177b7b600cf9'),(52971,39167,'blocks_1_link_stack_content_heading','About Our YouTube Channel '),(52972,39167,'_blocks_1_link_stack_content_heading','field_6177b7b600cfa'),(52973,39167,'blocks_1_link_stack_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(52974,39167,'_blocks_1_link_stack_content_text','field_6177b7b600cfb'),(52975,39167,'blocks_1_link_stack_content_actions',''),(52976,39167,'_blocks_1_link_stack_content_actions','field_6177b7b600cfc'),(52977,39167,'blocks_1_link_stack_content',''),(52978,39167,'_blocks_1_link_stack_content','field_6177b7b600cf8'),(52979,39167,'blocks_1_link_stack_0_label','Hosted by Rachel Frances Thompson'),(52980,39167,'_blocks_1_link_stack_0_label','field_6177b80900d00'),(52981,39167,'blocks_1_link_stack_0_title','Our YouTube Channel'),(52982,39167,'_blocks_1_link_stack_0_title','field_6177b80f00d01'),(52983,39167,'blocks_1_link_stack_0_url','https://www.youtube.com/@biomedu'),(52984,39167,'_blocks_1_link_stack_0_url','field_6177b82200d02'),(52985,39167,'blocks_1_link_stack','1'),(52986,39167,'_blocks_1_link_stack','field_6177b7f600cff'),(52987,39167,'blocks_2_acfe_flexible_toggle',''),(52988,39167,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(52989,39167,'blocks_2_acfe_flexible_layout_title','Cards'),(52990,39167,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(52991,39167,'blocks_2_options_theme','#ffffff'),(52992,39167,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(52993,39167,'blocks_2_options_format','carousel'),(52994,39167,'_blocks_2_options_format','field_617a7b15245b5'),(52995,39167,'blocks_2_options_style','featured'),(52996,39167,'_blocks_2_options_style','field_6278ffb63484a'),(52997,39167,'blocks_2_options_cards_current_listing','0'),(52998,39167,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(52999,39167,'blocks_2_options_cards_content','post_type'),(53000,39167,'_blocks_2_options_cards_content','field_617aba6122688'),(53001,39167,'blocks_2_options_cards_post_type','post'),(53002,39167,'_blocks_2_options_cards_post_type','field_6194cc744d38b'),(53003,39167,'blocks_2_options_cards_posts_per_page','6'),(53004,39167,'_blocks_2_options_cards_posts_per_page','field_61a7565b1a0f2'),(53005,39167,'blocks_2_options',''),(53006,39167,'_blocks_2_options','field_617a7b15245b3'),(53007,39167,'blocks_3_acfe_flexible_toggle',''),(53008,39167,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(53009,39167,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(53010,39167,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(53011,39167,'blocks_3_options_theme','#ffffff'),(53012,39167,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(53013,39167,'blocks_3_options_reverse','0'),(53014,39167,'_blocks_3_options_reverse','field_61768049bb8ac'),(53015,39167,'blocks_3_options',''),(53016,39167,'_blocks_3_options','field_617682517c334'),(53017,39167,'blocks_3_split_5050_image','39165'),(53018,39167,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(53019,39167,'blocks_3_split_5050_video',''),(53020,39167,'_blocks_3_split_5050_video','field_6239f3160848a'),(53021,39167,'blocks_3_split_5050_content_title',''),(53022,39167,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(53023,39167,'blocks_3_split_5050_content_heading','IBA Membership'),(53024,39167,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(53025,39167,'blocks_3_split_5050_content_text','Explore the Intrinsic Biomechanics Association (IBA), your portal to a vibrant community and essential resources for Biomechanics Trainers™ &amp; Coaches™. Operated by Biomechanics Education Limited, IBA provides networking opportunities, standardized practices, and continuous education in biomechanics. As a member, you\'ll gain access to exclusive workshops, discounts on courses and products, mentorship, and a dynamic professional network. Join today to elevate your practice and remain at the cutting edge of biomechanical innovation.'),(53026,39167,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(53027,39167,'blocks_3_split_5050_content_actions',''),(53028,39167,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(53029,39167,'blocks_3_split_5050_content',''),(53030,39167,'_blocks_3_split_5050_content','field_61767afceb8ba'),(53031,39167,'blocks_4_acfe_flexible_toggle',''),(53032,39167,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(53033,39167,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(53034,39167,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(53035,39167,'blocks_4_testimonial_slider_content_title',''),(53036,39167,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(53037,39167,'blocks_4_testimonial_slider_content_heading','Testimonials'),(53038,39167,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(53039,39167,'blocks_4_testimonial_slider_content_text','Discover what people say about us'),(53040,39167,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(53041,39167,'blocks_4_testimonial_slider_content_actions',''),(53042,39167,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(53043,39167,'blocks_4_testimonial_slider_content',''),(53044,39167,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(53045,39167,'blocks_4_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38965\";i:2;s:5:\"38964\";}'),(53046,39167,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(53047,39167,'blocks_4_testimonial_slider_ambassador_bool','0'),(53048,39167,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(53051,38964,'_yoast_wpseo_estimated-reading-time-minutes','0'),(53054,39168,'_edit_lock','1739188230:17'),(53055,39168,'_edit_last','17'),(53056,39168,'hero_style','default'),(53057,39168,'_hero_style','field_62051d9dc5324'),(53059,39168,'__thumbnail_id','field_617570855ddaf'),(53060,39168,'hero_image_pos_x','right'),(53061,39168,'_hero_image_pos_x','field_62ec3d05390bb'),(53062,39168,'hero_image_pos_y','top'),(53063,39168,'_hero_image_pos_y','field_62ec3d05390bc'),(53064,39168,'hero_image_pos',''),(53065,39168,'_hero_image_pos','field_62ec3d05390ba'),(53066,39168,'hero_title',''),(53067,39168,'_hero_title','field_617571fe285e8'),(53068,39168,'hero_text','The course has opened up my mind in so many ways and has totally changed my business model.'),(53069,39168,'_hero_text','field_6175723c285e9'),(53070,39168,'hero_actions',''),(53071,39168,'_hero_actions','field_61757270285ea'),(53072,39168,'hero_icon',''),(53073,39168,'_hero_icon','field_61a6182199d03'),(53086,39168,'blocks',''),(53087,39168,'_blocks','field_6176696113096'),(53088,39168,'testimonial_quote','The course has opened up my mind in so many ways and has totally changed my business model.'),(53089,39168,'_testimonial_quote','field_61812ae117979'),(53090,39168,'testimonial_image','40962'),(53091,39168,'_testimonial_image','field_61812af71797a'),(53092,39168,'_yoast_wpseo_estimated-reading-time-minutes','0'),(53093,39169,'_edit_lock','1727100240:5'),(53094,39169,'_edit_last','5'),(53095,39169,'hero_style','default'),(53096,39169,'_hero_style','field_62051d9dc5324'),(53098,39169,'__thumbnail_id','field_617570855ddaf'),(53099,39169,'hero_image_pos_x','right'),(53100,39169,'_hero_image_pos_x','field_62ec3d05390bb'),(53101,39169,'hero_image_pos_y','top'),(53102,39169,'_hero_image_pos_y','field_62ec3d05390bc'),(53103,39169,'hero_image_pos',''),(53104,39169,'_hero_image_pos','field_62ec3d05390ba'),(53105,39169,'hero_title',''),(53106,39169,'_hero_title','field_617571fe285e8'),(53107,39169,'hero_text',''),(53108,39169,'_hero_text','field_6175723c285e9'),(53109,39169,'hero_actions',''),(53110,39169,'_hero_actions','field_61757270285ea'),(53111,39169,'hero_icon',''),(53112,39169,'_hero_icon','field_61a6182199d03'),(53125,39169,'blocks',''),(53126,39169,'_blocks','field_6176696113096'),(53127,39169,'testimonial_quote','You are amazing at what you do, you’ve inspired hundreds of people, including me! If I can be half the teacher you are I will be happy!'),(53128,39169,'_testimonial_quote','field_61812ae117979'),(53129,39169,'testimonial_image','40961'),(53130,39169,'_testimonial_image','field_61812af71797a'),(53131,39169,'_yoast_wpseo_estimated-reading-time-minutes','0'),(53132,39170,'_edit_lock','1739188230:17'),(53133,39170,'_edit_last','5'),(53134,39170,'hero_style','default'),(53135,39170,'_hero_style','field_62051d9dc5324'),(53137,39170,'__thumbnail_id','field_617570855ddaf'),(53138,39170,'hero_image_pos_x','right'),(53139,39170,'_hero_image_pos_x','field_62ec3d05390bb'),(53140,39170,'hero_image_pos_y','top'),(53141,39170,'_hero_image_pos_y','field_62ec3d05390bc'),(53142,39170,'hero_image_pos',''),(53143,39170,'_hero_image_pos','field_62ec3d05390ba'),(53144,39170,'hero_title','Tess Hoggar '),(53145,39170,'_hero_title','field_617571fe285e8'),(53146,39170,'hero_text','I cannot thank you enough for opening my eyes and changing my business and helping me be the professional I want to be...for once I feel like the expert...WOW!'),(53147,39170,'_hero_text','field_6175723c285e9'),(53148,39170,'hero_actions',''),(53149,39170,'_hero_actions','field_61757270285ea'),(53150,39170,'hero_icon',''),(53151,39170,'_hero_icon','field_61a6182199d03'),(53164,39170,'blocks',''),(53165,39170,'_blocks','field_6176696113096'),(53166,39170,'testimonial_quote','I cannot thank you enough for opening my eyes and changing my business and helping me be the professional I want to be... for once I feel like the expert... WOW!'),(53167,39170,'_testimonial_quote','field_61812ae117979'),(53168,39170,'testimonial_image','40960'),(53169,39170,'_testimonial_image','field_61812af71797a'),(53170,39170,'_yoast_wpseo_estimated-reading-time-minutes','0'),(53171,39171,'hero_style','default'),(53172,39171,'_hero_style','field_62051d9dc5324'),(53173,39171,'_thumbnail_id','38321'),(53174,39171,'__thumbnail_id','field_617570855ddaf'),(53175,39171,'hero_image_pos_x','right'),(53176,39171,'_hero_image_pos_x','field_62ec3d05390bb'),(53177,39171,'hero_image_pos_y','top'),(53178,39171,'_hero_image_pos_y','field_62ec3d05390bc'),(53179,39171,'hero_image_pos',''),(53180,39171,'_hero_image_pos','field_62ec3d05390ba'),(53181,39171,'hero_title','Resources'),(53182,39171,'_hero_title','field_617571fe285e8'),(53183,39171,'hero_text','Innovative content to support the growth of your organisation.'),(53184,39171,'_hero_text','field_6175723c285e9'),(53185,39171,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(53186,39171,'_hero_actions_0_button','field_61757281285eb'),(53187,39171,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-1\";s:6:\"target\";s:0:\"\";}'),(53188,39171,'_hero_actions_1_button','field_61757281285eb'),(53189,39171,'hero_actions','2'),(53190,39171,'_hero_actions','field_61757270285ea'),(53191,39171,'hero_icon',''),(53192,39171,'_hero_icon','field_61a6182199d03'),(53193,39171,'fft_hide_from_listings','0'),(53194,39171,'_fft_hide_from_listings','field_61f1320446ab2'),(53195,39171,'fft_page_format','default'),(53196,39171,'_fft_page_format','field_61ae213f1f218'),(53197,39171,'fft_hide_nav','0'),(53198,39171,'_fft_hide_nav','field_635bd5e43527c'),(53199,39171,'fft_hide_header_call_to_action','0'),(53200,39171,'_fft_hide_header_call_to_action','field_635bd6723527d'),(53201,39171,'fft_page_sitemap','0'),(53202,39171,'_fft_page_sitemap','field_61af9b34e8181'),(53203,39171,'blocks','a:5:{i:0;s:10:\"text_block\";i:1;s:10:\"link_stack\";i:2;s:5:\"cards\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(53204,39171,'_blocks','field_6176696113096'),(53205,39171,'blocks_0_acfe_flexible_toggle',''),(53206,39171,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(53207,39171,'blocks_0_acfe_flexible_layout_title','Text Block'),(53208,39171,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(53209,39171,'blocks_0_options_theme','#f5f5f5'),(53210,39171,'_blocks_0_options_theme','field_6176830e2ad17'),(53211,39171,'blocks_0_options',''),(53212,39171,'_blocks_0_options','field_6176830e2ad16'),(53213,39171,'blocks_0_text_block_heading','Resources Available'),(53214,39171,'_blocks_0_text_block_heading','field_617669d413097'),(53215,39171,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(53216,39171,'_blocks_0_text_block_content','field_617669ec13098'),(53217,39171,'blocks_1_acfe_flexible_toggle',''),(53218,39171,'_blocks_1_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(53219,39171,'blocks_1_acfe_flexible_layout_title','Link Stack'),(53220,39171,'_blocks_1_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(53221,39171,'blocks_1_options_theme','#ffffff'),(53222,39171,'_blocks_1_options_theme','field_6177b758246af_field_6176830e2ad17'),(53223,39171,'blocks_1_options',''),(53224,39171,'_blocks_1_options','field_6177b758246ae'),(53225,39171,'blocks_1_link_stack_content_title',''),(53226,39171,'_blocks_1_link_stack_content_title','field_6177b7b600cf9'),(53227,39171,'blocks_1_link_stack_content_heading','About Our YouTube Channel '),(53228,39171,'_blocks_1_link_stack_content_heading','field_6177b7b600cfa'),(53229,39171,'blocks_1_link_stack_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(53230,39171,'_blocks_1_link_stack_content_text','field_6177b7b600cfb'),(53231,39171,'blocks_1_link_stack_content_actions',''),(53232,39171,'_blocks_1_link_stack_content_actions','field_6177b7b600cfc'),(53233,39171,'blocks_1_link_stack_content',''),(53234,39171,'_blocks_1_link_stack_content','field_6177b7b600cf8'),(53235,39171,'blocks_1_link_stack_0_label','Hosted by Rachel Frances Thompson'),(53236,39171,'_blocks_1_link_stack_0_label','field_6177b80900d00'),(53237,39171,'blocks_1_link_stack_0_title','Our YouTube Channel'),(53238,39171,'_blocks_1_link_stack_0_title','field_6177b80f00d01'),(53239,39171,'blocks_1_link_stack_0_url','https://www.youtube.com/@biomedu'),(53240,39171,'_blocks_1_link_stack_0_url','field_6177b82200d02'),(53241,39171,'blocks_1_link_stack','1'),(53242,39171,'_blocks_1_link_stack','field_6177b7f600cff'),(53243,39171,'blocks_2_acfe_flexible_toggle',''),(53244,39171,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(53245,39171,'blocks_2_acfe_flexible_layout_title','Cards'),(53246,39171,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(53247,39171,'blocks_2_options_theme','#ffffff'),(53248,39171,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(53249,39171,'blocks_2_options_format','carousel'),(53250,39171,'_blocks_2_options_format','field_617a7b15245b5'),(53251,39171,'blocks_2_options_style','featured'),(53252,39171,'_blocks_2_options_style','field_6278ffb63484a'),(53253,39171,'blocks_2_options_cards_current_listing','0'),(53254,39171,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(53255,39171,'blocks_2_options_cards_content','post_type'),(53256,39171,'_blocks_2_options_cards_content','field_617aba6122688'),(53257,39171,'blocks_2_options_cards_post_type','post'),(53258,39171,'_blocks_2_options_cards_post_type','field_6194cc744d38b'),(53259,39171,'blocks_2_options_cards_posts_per_page','6'),(53260,39171,'_blocks_2_options_cards_posts_per_page','field_61a7565b1a0f2'),(53261,39171,'blocks_2_options',''),(53262,39171,'_blocks_2_options','field_617a7b15245b3'),(53263,39171,'blocks_3_acfe_flexible_toggle',''),(53264,39171,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(53265,39171,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(53266,39171,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(53267,39171,'blocks_3_options_theme','#ffffff'),(53268,39171,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(53269,39171,'blocks_3_options_reverse','0'),(53270,39171,'_blocks_3_options_reverse','field_61768049bb8ac'),(53271,39171,'blocks_3_options',''),(53272,39171,'_blocks_3_options','field_617682517c334'),(53273,39171,'blocks_3_split_5050_image','39165'),(53274,39171,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(53275,39171,'blocks_3_split_5050_video',''),(53276,39171,'_blocks_3_split_5050_video','field_6239f3160848a'),(53277,39171,'blocks_3_split_5050_content_title',''),(53278,39171,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(53279,39171,'blocks_3_split_5050_content_heading','IBA Membership'),(53280,39171,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(53281,39171,'blocks_3_split_5050_content_text','Explore the Intrinsic Biomechanics Association (IBA), your portal to a vibrant community and essential resources for Biomechanics Trainers™ &amp; Coaches™. Operated by Biomechanics Education Limited, IBA provides networking opportunities, standardized practices, and continuous education in biomechanics. As a member, you\'ll gain access to exclusive workshops, discounts on courses and products, mentorship, and a dynamic professional network. Join today to elevate your practice and remain at the cutting edge of biomechanical innovation.'),(53282,39171,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(53283,39171,'blocks_3_split_5050_content_actions',''),(53284,39171,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(53285,39171,'blocks_3_split_5050_content',''),(53286,39171,'_blocks_3_split_5050_content','field_61767afceb8ba'),(53287,39171,'blocks_4_acfe_flexible_toggle',''),(53288,39171,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(53289,39171,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(53290,39171,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(53291,39171,'blocks_4_testimonial_slider_content_title',''),(53292,39171,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(53293,39171,'blocks_4_testimonial_slider_content_heading','Testimonials'),(53294,39171,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(53295,39171,'blocks_4_testimonial_slider_content_text','Discover what people say about us'),(53296,39171,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(53297,39171,'blocks_4_testimonial_slider_content_actions',''),(53298,39171,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(53299,39171,'blocks_4_testimonial_slider_content',''),(53300,39171,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(53301,39171,'blocks_4_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"39169\";i:2;s:5:\"39170\";}'),(53302,39171,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(53303,39171,'blocks_4_testimonial_slider_ambassador_bool','0'),(53304,39171,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(53305,39172,'_edit_lock','1745570688:17'),(53306,39172,'_edit_last','13'),(53307,39172,'hero_style','default'),(53308,39172,'_hero_style','field_62051d9dc5324'),(53310,39172,'__thumbnail_id','field_617570855ddaf'),(53311,39172,'hero_image_pos_x','right'),(53312,39172,'_hero_image_pos_x','field_62ec3d05390bb'),(53313,39172,'hero_image_pos_y','top'),(53314,39172,'_hero_image_pos_y','field_62ec3d05390bc'),(53315,39172,'hero_image_pos',''),(53316,39172,'_hero_image_pos','field_62ec3d05390ba'),(53317,39172,'hero_title','About Us'),(53318,39172,'_hero_title','field_617571fe285e8'),(53319,39172,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(53320,39172,'_hero_text','field_6175723c285e9'),(53321,39172,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(53322,39172,'_hero_actions_0_button','field_61757281285eb'),(53323,39172,'hero_actions','1'),(53324,39172,'_hero_actions','field_61757270285ea'),(53325,39172,'hero_icon',''),(53326,39172,'_hero_icon','field_61a6182199d03'),(53327,39172,'fft_hide_from_listings','0'),(53328,39172,'_fft_hide_from_listings','field_61f1320446ab2'),(53329,39172,'fft_page_format','default'),(53330,39172,'_fft_page_format','field_61ae213f1f218'),(53331,39172,'fft_hide_nav','0'),(53332,39172,'_fft_hide_nav','field_635bd5e43527c'),(53333,39172,'fft_hide_header_call_to_action','0'),(53334,39172,'_fft_hide_header_call_to_action','field_635bd6723527d'),(53335,39172,'fft_page_sitemap','0'),(53336,39172,'_fft_page_sitemap','field_61af9b34e8181'),(53337,39172,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(53338,39172,'_blocks','field_6176696113096'),(53339,39172,'_yoast_wpseo_estimated-reading-time-minutes','1'),(53340,39173,'hero_style','default'),(53341,39173,'_hero_style','field_62051d9dc5324'),(53342,39173,'_thumbnail_id',''),(53343,39173,'__thumbnail_id','field_617570855ddaf'),(53344,39173,'hero_image_pos_x','right'),(53345,39173,'_hero_image_pos_x','field_62ec3d05390bb'),(53346,39173,'hero_image_pos_y','top'),(53347,39173,'_hero_image_pos_y','field_62ec3d05390bc'),(53348,39173,'hero_image_pos',''),(53349,39173,'_hero_image_pos','field_62ec3d05390ba'),(53350,39173,'hero_title','About Us'),(53351,39173,'_hero_title','field_617571fe285e8'),(53352,39173,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(53353,39173,'_hero_text','field_6175723c285e9'),(53354,39173,'hero_actions_0_button',''),(53355,39173,'_hero_actions_0_button','field_61757281285eb'),(53356,39173,'hero_actions','1'),(53357,39173,'_hero_actions','field_61757270285ea'),(53358,39173,'hero_icon',''),(53359,39173,'_hero_icon','field_61a6182199d03'),(53360,39173,'fft_hide_from_listings','0'),(53361,39173,'_fft_hide_from_listings','field_61f1320446ab2'),(53362,39173,'fft_page_format','default'),(53363,39173,'_fft_page_format','field_61ae213f1f218'),(53364,39173,'fft_hide_nav','0'),(53365,39173,'_fft_hide_nav','field_635bd5e43527c'),(53366,39173,'fft_hide_header_call_to_action','0'),(53367,39173,'_fft_hide_header_call_to_action','field_635bd6723527d'),(53368,39173,'fft_page_sitemap','0'),(53369,39173,'_fft_page_sitemap','field_61af9b34e8181'),(53370,39173,'blocks',''),(53371,39173,'_blocks','field_6176696113096'),(53409,39174,'hero_style','default'),(53410,39174,'_hero_style','field_62051d9dc5324'),(53411,39174,'hero_image_pos_x','right'),(53412,39174,'_hero_image_pos_x','field_62ec3d05390bb'),(53413,39174,'hero_image_pos_y','top'),(53414,39174,'_hero_image_pos_y','field_62ec3d05390bc'),(53415,39174,'hero_image_pos',''),(53416,39174,'_hero_image_pos','field_62ec3d05390ba'),(53417,39174,'hero_title','About Us'),(53418,39174,'_hero_title','field_617571fe285e8'),(53419,39174,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(53420,39174,'_hero_text','field_6175723c285e9'),(53421,39174,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(53422,39174,'_hero_actions_0_button','field_61757281285eb'),(53423,39174,'hero_actions','1'),(53424,39174,'_hero_actions','field_61757270285ea'),(53425,39174,'hero_icon',''),(53426,39174,'_hero_icon','field_61a6182199d03'),(53427,39174,'fft_hide_from_listings','0'),(53428,39174,'_fft_hide_from_listings','field_61f1320446ab2'),(53429,39174,'fft_page_format','default'),(53430,39174,'_fft_page_format','field_61ae213f1f218'),(53431,39174,'fft_hide_nav','0'),(53432,39174,'_fft_hide_nav','field_635bd5e43527c'),(53433,39174,'fft_hide_header_call_to_action','0'),(53434,39174,'_fft_hide_header_call_to_action','field_635bd6723527d'),(53435,39174,'fft_page_sitemap','0'),(53436,39174,'_fft_page_sitemap','field_61af9b34e8181'),(53437,39174,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";}'),(53438,39174,'_blocks','field_6176696113096'),(53439,39174,'_thumbnail_id',''),(53440,39174,'__thumbnail_id','field_617570855ddaf'),(53441,39174,'blocks_0_acfe_flexible_toggle',''),(53442,39174,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(53443,39174,'blocks_0_acfe_flexible_layout_title','Text Block'),(53444,39174,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(53445,39174,'blocks_0_options_theme','#ffffff'),(53446,39174,'_blocks_0_options_theme','field_6176830e2ad17'),(53447,39174,'blocks_0_options',''),(53448,39174,'_blocks_0_options','field_6176830e2ad16'),(53449,39174,'blocks_0_text_block_heading','Who is Biomechanics Education'),(53450,39174,'_blocks_0_text_block_heading','field_617669d413097'),(53451,39174,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.'),(53452,39174,'_blocks_0_text_block_content','field_617669ec13098'),(53453,39174,'blocks_1_acfe_flexible_toggle',''),(53454,39174,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(53455,39174,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(53456,39174,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(53457,39174,'blocks_1_options_theme','#ffffff'),(53458,39174,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(53459,39174,'blocks_1_options_reverse','0'),(53460,39174,'_blocks_1_options_reverse','field_61768049bb8ac'),(53461,39174,'blocks_1_options',''),(53462,39174,'_blocks_1_options','field_617682517c334'),(53463,39174,'blocks_1_split_5050_image','35276'),(53464,39174,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(53465,39174,'blocks_1_split_5050_video',''),(53466,39174,'_blocks_1_split_5050_video','field_6239f3160848a'),(53467,39174,'blocks_1_split_5050_content_title',''),(53468,39174,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(53469,39174,'blocks_1_split_5050_content_heading','What we do'),(53470,39174,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(53471,39174,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(53472,39174,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(53473,39174,'blocks_1_split_5050_content_actions',''),(53474,39174,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(53475,39174,'blocks_1_split_5050_content',''),(53476,39174,'_blocks_1_split_5050_content','field_61767afceb8ba'),(53477,39175,'_wp_attached_file','2024/07/Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail.png'),(53478,39175,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:73:\"2024/07/Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail.png\";s:8:\"filesize\";i:943875;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:458845;}s:5:\"large\";a:5:{s:4:\"file\";s:74:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:773424;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103301;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:343550;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227392;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-900x720.png\";s:5:\"width\";i:900;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:826212;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:74:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-1200x720.png\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:922375;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:134710;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:605033;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:74:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-1200x720.png\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:922375;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:177635;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-675x720.png\";s:5:\"width\";i:675;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:693195;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-900x720.png\";s:5:\"width\";i:900;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:826212;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157496;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:707091;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:74:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-1200x720.png\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:922375;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103301;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:73:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:458845;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:74:\"Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:773424;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(53498,39176,'hero_style','default'),(53499,39176,'_hero_style','field_62051d9dc5324'),(53500,39176,'hero_image_pos_x','right'),(53501,39176,'_hero_image_pos_x','field_62ec3d05390bb'),(53502,39176,'hero_image_pos_y','top'),(53503,39176,'_hero_image_pos_y','field_62ec3d05390bc'),(53504,39176,'hero_image_pos',''),(53505,39176,'_hero_image_pos','field_62ec3d05390ba'),(53506,39176,'hero_title','About Us'),(53507,39176,'_hero_title','field_617571fe285e8'),(53508,39176,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(53509,39176,'_hero_text','field_6175723c285e9'),(53510,39176,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(53511,39176,'_hero_actions_0_button','field_61757281285eb'),(53512,39176,'hero_actions','1'),(53513,39176,'_hero_actions','field_61757270285ea'),(53514,39176,'hero_icon',''),(53515,39176,'_hero_icon','field_61a6182199d03'),(53516,39176,'fft_hide_from_listings','0'),(53517,39176,'_fft_hide_from_listings','field_61f1320446ab2'),(53518,39176,'fft_page_format','default'),(53519,39176,'_fft_page_format','field_61ae213f1f218'),(53520,39176,'fft_hide_nav','0'),(53521,39176,'_fft_hide_nav','field_635bd5e43527c'),(53522,39176,'fft_hide_header_call_to_action','0'),(53523,39176,'_fft_hide_header_call_to_action','field_635bd6723527d'),(53524,39176,'fft_page_sitemap','0'),(53525,39176,'_fft_page_sitemap','field_61af9b34e8181'),(53526,39176,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";}'),(53527,39176,'_blocks','field_6176696113096'),(53528,39176,'blocks_0_acfe_flexible_toggle',''),(53529,39176,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(53530,39176,'blocks_0_acfe_flexible_layout_title','Text Block'),(53531,39176,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(53532,39176,'blocks_0_options_theme','#ffffff'),(53533,39176,'_blocks_0_options_theme','field_6176830e2ad17'),(53534,39176,'blocks_0_options',''),(53535,39176,'_blocks_0_options','field_6176830e2ad16'),(53536,39176,'blocks_0_text_block_heading','Who is Biomechanics Education'),(53537,39176,'_blocks_0_text_block_heading','field_617669d413097'),(53538,39176,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.'),(53539,39176,'_blocks_0_text_block_content','field_617669ec13098'),(53540,39176,'blocks_1_acfe_flexible_toggle',''),(53541,39176,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(53542,39176,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(53543,39176,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(53544,39176,'blocks_1_options_theme','#ffffff'),(53545,39176,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(53546,39176,'blocks_1_options_reverse','0'),(53547,39176,'_blocks_1_options_reverse','field_61768049bb8ac'),(53548,39176,'blocks_1_options',''),(53549,39176,'_blocks_1_options','field_617682517c334'),(53550,39176,'blocks_1_split_5050_image','35276'),(53551,39176,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(53552,39176,'blocks_1_split_5050_video',''),(53553,39176,'_blocks_1_split_5050_video','field_6239f3160848a'),(53554,39176,'blocks_1_split_5050_content_title',''),(53555,39176,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(53556,39176,'blocks_1_split_5050_content_heading','What we do'),(53557,39176,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(53558,39176,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(53559,39176,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(53560,39176,'blocks_1_split_5050_content_actions',''),(53561,39176,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(53562,39176,'blocks_1_split_5050_content',''),(53563,39176,'_blocks_1_split_5050_content','field_61767afceb8ba'),(53564,39176,'_thumbnail_id',''),(53565,39176,'__thumbnail_id','field_617570855ddaf'),(53566,39176,'blocks_2_acfe_flexible_toggle',''),(53567,39176,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(53568,39176,'blocks_2_acfe_flexible_layout_title','Video'),(53569,39176,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(53570,39176,'blocks_2_size','large'),(53571,39176,'_blocks_2_size','field_6487038f297c1'),(53572,39176,'blocks_2_row_content_title',''),(53573,39176,'_blocks_2_row_content_title','field_64870132a865d'),(53574,39176,'blocks_2_row_content_heading','Welcome to Biomechanics Education'),(53575,39176,'_blocks_2_row_content_heading','field_64870142a865e'),(53576,39176,'blocks_2_row_content_text',''),(53577,39176,'_blocks_2_row_content_text','field_64870148a865f'),(53578,39176,'blocks_2_row_content',''),(53579,39176,'_blocks_2_row_content','field_6487008ba865c'),(53580,39176,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(53581,39176,'_blocks_2_video_src','field_6193c4a98ec07'),(53582,39176,'blocks_2_video_thumbnail','39175'),(53583,39176,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(53619,39177,'hero_style','default'),(53620,39177,'_hero_style','field_62051d9dc5324'),(53621,39177,'hero_image_pos_x','right'),(53622,39177,'_hero_image_pos_x','field_62ec3d05390bb'),(53623,39177,'hero_image_pos_y','top'),(53624,39177,'_hero_image_pos_y','field_62ec3d05390bc'),(53625,39177,'hero_image_pos',''),(53626,39177,'_hero_image_pos','field_62ec3d05390ba'),(53627,39177,'hero_title','About Us'),(53628,39177,'_hero_title','field_617571fe285e8'),(53629,39177,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(53630,39177,'_hero_text','field_6175723c285e9'),(53631,39177,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(53632,39177,'_hero_actions_0_button','field_61757281285eb'),(53633,39177,'hero_actions','1'),(53634,39177,'_hero_actions','field_61757270285ea'),(53635,39177,'hero_icon',''),(53636,39177,'_hero_icon','field_61a6182199d03'),(53637,39177,'fft_hide_from_listings','0'),(53638,39177,'_fft_hide_from_listings','field_61f1320446ab2'),(53639,39177,'fft_page_format','default'),(53640,39177,'_fft_page_format','field_61ae213f1f218'),(53641,39177,'fft_hide_nav','0'),(53642,39177,'_fft_hide_nav','field_635bd5e43527c'),(53643,39177,'fft_hide_header_call_to_action','0'),(53644,39177,'_fft_hide_header_call_to_action','field_635bd6723527d'),(53645,39177,'fft_page_sitemap','0'),(53646,39177,'_fft_page_sitemap','field_61af9b34e8181'),(53647,39177,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(53648,39177,'_blocks','field_6176696113096'),(53649,39177,'blocks_0_acfe_flexible_toggle',''),(53650,39177,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(53651,39177,'blocks_0_acfe_flexible_layout_title','Text Block'),(53652,39177,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(53653,39177,'blocks_0_options_theme','#ffffff'),(53654,39177,'_blocks_0_options_theme','field_6176830e2ad17'),(53655,39177,'blocks_0_options',''),(53656,39177,'_blocks_0_options','field_6176830e2ad16'),(53657,39177,'blocks_0_text_block_heading','Who is Biomechanics Education'),(53658,39177,'_blocks_0_text_block_heading','field_617669d413097'),(53659,39177,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.'),(53660,39177,'_blocks_0_text_block_content','field_617669ec13098'),(53661,39177,'blocks_1_acfe_flexible_toggle',''),(53662,39177,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(53663,39177,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(53664,39177,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(53665,39177,'blocks_1_options_theme','#ffffff'),(53666,39177,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(53667,39177,'blocks_1_options_reverse','0'),(53668,39177,'_blocks_1_options_reverse','field_61768049bb8ac'),(53669,39177,'blocks_1_options',''),(53670,39177,'_blocks_1_options','field_617682517c334'),(53671,39177,'blocks_1_split_5050_image','35276'),(53672,39177,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(53673,39177,'blocks_1_split_5050_video',''),(53674,39177,'_blocks_1_split_5050_video','field_6239f3160848a'),(53675,39177,'blocks_1_split_5050_content_title',''),(53676,39177,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(53677,39177,'blocks_1_split_5050_content_heading','What we do'),(53678,39177,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(53679,39177,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(53680,39177,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(53681,39177,'blocks_1_split_5050_content_actions',''),(53682,39177,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(53683,39177,'blocks_1_split_5050_content',''),(53684,39177,'_blocks_1_split_5050_content','field_61767afceb8ba'),(53685,39177,'blocks_2_acfe_flexible_toggle',''),(53686,39177,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(53687,39177,'blocks_2_acfe_flexible_layout_title','Video'),(53688,39177,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(53689,39177,'blocks_2_size','large'),(53690,39177,'_blocks_2_size','field_6487038f297c1'),(53691,39177,'blocks_2_row_content_title',''),(53692,39177,'_blocks_2_row_content_title','field_64870132a865d'),(53693,39177,'blocks_2_row_content_heading','Welcome to Biomechanics Education'),(53694,39177,'_blocks_2_row_content_heading','field_64870142a865e'),(53695,39177,'blocks_2_row_content_text',''),(53696,39177,'_blocks_2_row_content_text','field_64870148a865f'),(53697,39177,'blocks_2_row_content',''),(53698,39177,'_blocks_2_row_content','field_6487008ba865c'),(53699,39177,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(53700,39177,'_blocks_2_video_src','field_6193c4a98ec07'),(53701,39177,'blocks_2_video_thumbnail','39175'),(53702,39177,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(53703,39177,'_thumbnail_id',''),(53704,39177,'__thumbnail_id','field_617570855ddaf'),(53705,39177,'blocks_3_acfe_flexible_toggle',''),(53706,39177,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(53707,39177,'blocks_3_acfe_flexible_layout_title','Cards'),(53708,39177,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(53709,39177,'blocks_3_options_theme','#ffffff'),(53710,39177,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(53711,39177,'blocks_3_options_format','carousel'),(53712,39177,'_blocks_3_options_format','field_617a7b15245b5'),(53713,39177,'blocks_3_options_style','default'),(53714,39177,'_blocks_3_options_style','field_6278ffb63484a'),(53715,39177,'blocks_3_options_cards_current_listing','0'),(53716,39177,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(53717,39177,'blocks_3_options_cards_content','custom'),(53718,39177,'_blocks_3_options_cards_content','field_617aba6122688'),(53719,39177,'blocks_3_options',''),(53720,39177,'_blocks_3_options','field_617a7b15245b3'),(53721,39177,'blocks_3_cards_custom_0_image',''),(53722,39177,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(53723,39177,'blocks_3_cards_custom_0_title','Our Team'),(53724,39177,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(53725,39177,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(53726,39177,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(53727,39177,'blocks_3_cards_custom_0_link',''),(53728,39177,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(53729,39177,'blocks_3_cards_custom_1_image',''),(53730,39177,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(53731,39177,'blocks_3_cards_custom_1_title','Our Partners'),(53732,39177,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(53733,39177,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(53734,39177,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(53735,39177,'blocks_3_cards_custom_1_link',''),(53736,39177,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(53737,39177,'blocks_3_cards_custom','2'),(53738,39177,'_blocks_3_cards_custom','field_6194cbf84d386'),(53860,39179,'hero_style','default'),(53861,39179,'_hero_style','field_62051d9dc5324'),(53862,39179,'hero_image_pos_x','right'),(53863,39179,'_hero_image_pos_x','field_62ec3d05390bb'),(53864,39179,'hero_image_pos_y','top'),(53865,39179,'_hero_image_pos_y','field_62ec3d05390bc'),(53866,39179,'hero_image_pos',''),(53867,39179,'_hero_image_pos','field_62ec3d05390ba'),(53868,39179,'hero_title','About Us'),(53869,39179,'_hero_title','field_617571fe285e8'),(53870,39179,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(53871,39179,'_hero_text','field_6175723c285e9'),(53872,39179,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(53873,39179,'_hero_actions_0_button','field_61757281285eb'),(53874,39179,'hero_actions','1'),(53875,39179,'_hero_actions','field_61757270285ea'),(53876,39179,'hero_icon',''),(53877,39179,'_hero_icon','field_61a6182199d03'),(53878,39179,'fft_hide_from_listings','0'),(53879,39179,'_fft_hide_from_listings','field_61f1320446ab2'),(53880,39179,'fft_page_format','default'),(53881,39179,'_fft_page_format','field_61ae213f1f218'),(53882,39179,'fft_hide_nav','0'),(53883,39179,'_fft_hide_nav','field_635bd5e43527c'),(53884,39179,'fft_hide_header_call_to_action','0'),(53885,39179,'_fft_hide_header_call_to_action','field_635bd6723527d'),(53886,39179,'fft_page_sitemap','0'),(53887,39179,'_fft_page_sitemap','field_61af9b34e8181'),(53888,39179,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(53889,39179,'_blocks','field_6176696113096'),(53890,39179,'blocks_0_acfe_flexible_toggle',''),(53891,39179,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(53892,39179,'blocks_0_acfe_flexible_layout_title','Text Block'),(53893,39179,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(53894,39179,'blocks_0_options_theme','#ffffff'),(53895,39179,'_blocks_0_options_theme','field_6176830e2ad17'),(53896,39179,'blocks_0_options',''),(53897,39179,'_blocks_0_options','field_6176830e2ad16'),(53898,39179,'blocks_0_text_block_heading','Who is Biomechanics Education'),(53899,39179,'_blocks_0_text_block_heading','field_617669d413097'),(53900,39179,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.'),(53901,39179,'_blocks_0_text_block_content','field_617669ec13098'),(53902,39179,'blocks_1_acfe_flexible_toggle',''),(53903,39179,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(53904,39179,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(53905,39179,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(53906,39179,'blocks_1_options_theme','#ffffff'),(53907,39179,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(53908,39179,'blocks_1_options_reverse','0'),(53909,39179,'_blocks_1_options_reverse','field_61768049bb8ac'),(53910,39179,'blocks_1_options',''),(53911,39179,'_blocks_1_options','field_617682517c334'),(53912,39179,'blocks_1_split_5050_image','35276'),(53913,39179,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(53914,39179,'blocks_1_split_5050_video',''),(53915,39179,'_blocks_1_split_5050_video','field_6239f3160848a'),(53916,39179,'blocks_1_split_5050_content_title',''),(53917,39179,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(53918,39179,'blocks_1_split_5050_content_heading','What we do'),(53919,39179,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(53920,39179,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(53921,39179,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(53922,39179,'blocks_1_split_5050_content_actions',''),(53923,39179,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(53924,39179,'blocks_1_split_5050_content',''),(53925,39179,'_blocks_1_split_5050_content','field_61767afceb8ba'),(53926,39179,'blocks_2_acfe_flexible_toggle',''),(53927,39179,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(53928,39179,'blocks_2_acfe_flexible_layout_title','Video'),(53929,39179,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(53930,39179,'blocks_2_size','large'),(53931,39179,'_blocks_2_size','field_6487038f297c1'),(53932,39179,'blocks_2_row_content_title',''),(53933,39179,'_blocks_2_row_content_title','field_64870132a865d'),(53934,39179,'blocks_2_row_content_heading','Welcome to Biomechanics Education'),(53935,39179,'_blocks_2_row_content_heading','field_64870142a865e'),(53936,39179,'blocks_2_row_content_text',''),(53937,39179,'_blocks_2_row_content_text','field_64870148a865f'),(53938,39179,'blocks_2_row_content',''),(53939,39179,'_blocks_2_row_content','field_6487008ba865c'),(53940,39179,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(53941,39179,'_blocks_2_video_src','field_6193c4a98ec07'),(53942,39179,'blocks_2_video_thumbnail','39175'),(53943,39179,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(53944,39179,'blocks_3_acfe_flexible_toggle',''),(53945,39179,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(53946,39179,'blocks_3_acfe_flexible_layout_title','Cards'),(53947,39179,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(53948,39179,'blocks_3_options_theme','#ffffff'),(53949,39179,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(53950,39179,'blocks_3_options_format','grid'),(53951,39179,'_blocks_3_options_format','field_617a7b15245b5'),(53952,39179,'blocks_3_options_style','default'),(53953,39179,'_blocks_3_options_style','field_6278ffb63484a'),(53954,39179,'blocks_3_options_cards_current_listing','0'),(53955,39179,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(53956,39179,'blocks_3_options_cards_content','custom'),(53957,39179,'_blocks_3_options_cards_content','field_617aba6122688'),(53958,39179,'blocks_3_options',''),(53959,39179,'_blocks_3_options','field_617a7b15245b3'),(53960,39179,'blocks_3_cards_custom_0_image',''),(53961,39179,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(53962,39179,'blocks_3_cards_custom_0_title','Our Team'),(53963,39179,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(53964,39179,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(53965,39179,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(53966,39179,'blocks_3_cards_custom_0_link',''),(53967,39179,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(53968,39179,'blocks_3_cards_custom_1_image',''),(53969,39179,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(53970,39179,'blocks_3_cards_custom_1_title','Our Partners'),(53971,39179,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(53972,39179,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(53973,39179,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(53974,39179,'blocks_3_cards_custom_1_link',''),(53975,39179,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(53976,39179,'blocks_3_cards_custom','2'),(53977,39179,'_blocks_3_cards_custom','field_6194cbf84d386'),(53978,39179,'_thumbnail_id',''),(53979,39179,'__thumbnail_id','field_617570855ddaf'),(53981,39180,'hero_style','default'),(53982,39180,'_hero_style','field_62051d9dc5324'),(53983,39180,'hero_image_pos_x','right'),(53984,39180,'_hero_image_pos_x','field_62ec3d05390bb'),(53985,39180,'hero_image_pos_y','top'),(53986,39180,'_hero_image_pos_y','field_62ec3d05390bc'),(53987,39180,'hero_image_pos',''),(53988,39180,'_hero_image_pos','field_62ec3d05390ba'),(53989,39180,'hero_title','About Us'),(53990,39180,'_hero_title','field_617571fe285e8'),(53991,39180,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(53992,39180,'_hero_text','field_6175723c285e9'),(53993,39180,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(53994,39180,'_hero_actions_0_button','field_61757281285eb'),(53995,39180,'hero_actions','1'),(53996,39180,'_hero_actions','field_61757270285ea'),(53997,39180,'hero_icon',''),(53998,39180,'_hero_icon','field_61a6182199d03'),(53999,39180,'fft_hide_from_listings','0'),(54000,39180,'_fft_hide_from_listings','field_61f1320446ab2'),(54001,39180,'fft_page_format','default'),(54002,39180,'_fft_page_format','field_61ae213f1f218'),(54003,39180,'fft_hide_nav','0'),(54004,39180,'_fft_hide_nav','field_635bd5e43527c'),(54005,39180,'fft_hide_header_call_to_action','0'),(54006,39180,'_fft_hide_header_call_to_action','field_635bd6723527d'),(54007,39180,'fft_page_sitemap','0'),(54008,39180,'_fft_page_sitemap','field_61af9b34e8181'),(54009,39180,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(54010,39180,'_blocks','field_6176696113096'),(54011,39180,'blocks_0_acfe_flexible_toggle',''),(54012,39180,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(54013,39180,'blocks_0_acfe_flexible_layout_title','Text Block'),(54014,39180,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(54015,39180,'blocks_0_options_theme','#ffffff'),(54016,39180,'_blocks_0_options_theme','field_6176830e2ad17'),(54017,39180,'blocks_0_options',''),(54018,39180,'_blocks_0_options','field_6176830e2ad16'),(54019,39180,'blocks_0_text_block_heading','Who is Biomechanics Education'),(54020,39180,'_blocks_0_text_block_heading','field_617669d413097'),(54021,39180,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.'),(54022,39180,'_blocks_0_text_block_content','field_617669ec13098'),(54023,39180,'blocks_1_acfe_flexible_toggle',''),(54024,39180,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(54025,39180,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(54026,39180,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(54027,39180,'blocks_1_options_theme','#ffffff'),(54028,39180,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(54029,39180,'blocks_1_options_reverse','1'),(54030,39180,'_blocks_1_options_reverse','field_61768049bb8ac'),(54031,39180,'blocks_1_options',''),(54032,39180,'_blocks_1_options','field_617682517c334'),(54033,39180,'blocks_1_split_5050_image','35276'),(54034,39180,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(54035,39180,'blocks_1_split_5050_video',''),(54036,39180,'_blocks_1_split_5050_video','field_6239f3160848a'),(54037,39180,'blocks_1_split_5050_content_title',''),(54038,39180,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(54039,39180,'blocks_1_split_5050_content_heading','What we do'),(54040,39180,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(54041,39180,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(54042,39180,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(54043,39180,'blocks_1_split_5050_content_actions',''),(54044,39180,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(54045,39180,'blocks_1_split_5050_content',''),(54046,39180,'_blocks_1_split_5050_content','field_61767afceb8ba'),(54047,39180,'blocks_2_acfe_flexible_toggle',''),(54048,39180,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(54049,39180,'blocks_2_acfe_flexible_layout_title','Video'),(54050,39180,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(54051,39180,'blocks_2_size','large'),(54052,39180,'_blocks_2_size','field_6487038f297c1'),(54053,39180,'blocks_2_row_content_title',''),(54054,39180,'_blocks_2_row_content_title','field_64870132a865d'),(54055,39180,'blocks_2_row_content_heading','Welcome to Biomechanics Education'),(54056,39180,'_blocks_2_row_content_heading','field_64870142a865e'),(54057,39180,'blocks_2_row_content_text',''),(54058,39180,'_blocks_2_row_content_text','field_64870148a865f'),(54059,39180,'blocks_2_row_content',''),(54060,39180,'_blocks_2_row_content','field_6487008ba865c'),(54061,39180,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(54062,39180,'_blocks_2_video_src','field_6193c4a98ec07'),(54063,39180,'blocks_2_video_thumbnail','39175'),(54064,39180,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(54065,39180,'blocks_3_acfe_flexible_toggle',''),(54066,39180,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(54067,39180,'blocks_3_acfe_flexible_layout_title','Cards'),(54068,39180,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(54069,39180,'blocks_3_options_theme','#ffffff'),(54070,39180,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(54071,39180,'blocks_3_options_format','grid'),(54072,39180,'_blocks_3_options_format','field_617a7b15245b5'),(54073,39180,'blocks_3_options_style','default'),(54074,39180,'_blocks_3_options_style','field_6278ffb63484a'),(54075,39180,'blocks_3_options_cards_current_listing','0'),(54076,39180,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(54077,39180,'blocks_3_options_cards_content','custom'),(54078,39180,'_blocks_3_options_cards_content','field_617aba6122688'),(54079,39180,'blocks_3_options',''),(54080,39180,'_blocks_3_options','field_617a7b15245b3'),(54081,39180,'blocks_3_cards_custom_0_image',''),(54082,39180,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(54083,39180,'blocks_3_cards_custom_0_title','Our Team'),(54084,39180,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(54085,39180,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(54086,39180,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(54087,39180,'blocks_3_cards_custom_0_link',''),(54088,39180,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(54089,39180,'blocks_3_cards_custom_1_image',''),(54090,39180,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(54091,39180,'blocks_3_cards_custom_1_title','Our Partners'),(54092,39180,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(54093,39180,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(54094,39180,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(54095,39180,'blocks_3_cards_custom_1_link',''),(54096,39180,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(54097,39180,'blocks_3_cards_custom','2'),(54098,39180,'_blocks_3_cards_custom','field_6194cbf84d386'),(54099,39180,'_thumbnail_id',''),(54100,39180,'__thumbnail_id','field_617570855ddaf'),(54102,39181,'hero_style','default'),(54103,39181,'_hero_style','field_62051d9dc5324'),(54104,39181,'hero_image_pos_x','right'),(54105,39181,'_hero_image_pos_x','field_62ec3d05390bb'),(54106,39181,'hero_image_pos_y','top'),(54107,39181,'_hero_image_pos_y','field_62ec3d05390bc'),(54108,39181,'hero_image_pos',''),(54109,39181,'_hero_image_pos','field_62ec3d05390ba'),(54110,39181,'hero_title','About Us'),(54111,39181,'_hero_title','field_617571fe285e8'),(54112,39181,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(54113,39181,'_hero_text','field_6175723c285e9'),(54114,39181,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(54115,39181,'_hero_actions_0_button','field_61757281285eb'),(54116,39181,'hero_actions','1'),(54117,39181,'_hero_actions','field_61757270285ea'),(54118,39181,'hero_icon',''),(54119,39181,'_hero_icon','field_61a6182199d03'),(54120,39181,'fft_hide_from_listings','0'),(54121,39181,'_fft_hide_from_listings','field_61f1320446ab2'),(54122,39181,'fft_page_format','default'),(54123,39181,'_fft_page_format','field_61ae213f1f218'),(54124,39181,'fft_hide_nav','0'),(54125,39181,'_fft_hide_nav','field_635bd5e43527c'),(54126,39181,'fft_hide_header_call_to_action','0'),(54127,39181,'_fft_hide_header_call_to_action','field_635bd6723527d'),(54128,39181,'fft_page_sitemap','0'),(54129,39181,'_fft_page_sitemap','field_61af9b34e8181'),(54130,39181,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(54131,39181,'_blocks','field_6176696113096'),(54132,39181,'blocks_0_acfe_flexible_toggle',''),(54133,39181,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(54134,39181,'blocks_0_acfe_flexible_layout_title','Text Block'),(54135,39181,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(54136,39181,'blocks_0_options_theme','#ffffff'),(54137,39181,'_blocks_0_options_theme','field_6176830e2ad17'),(54138,39181,'blocks_0_options',''),(54139,39181,'_blocks_0_options','field_6176830e2ad16'),(54140,39181,'blocks_0_text_block_heading','Who is Biomechanics Education'),(54141,39181,'_blocks_0_text_block_heading','field_617669d413097'),(54142,39181,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.'),(54143,39181,'_blocks_0_text_block_content','field_617669ec13098'),(54144,39181,'blocks_1_acfe_flexible_toggle',''),(54145,39181,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(54146,39181,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(54147,39181,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(54148,39181,'blocks_1_options_theme','#f5f5f5'),(54149,39181,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(54150,39181,'blocks_1_options_reverse','1'),(54151,39181,'_blocks_1_options_reverse','field_61768049bb8ac'),(54152,39181,'blocks_1_options',''),(54153,39181,'_blocks_1_options','field_617682517c334'),(54154,39181,'blocks_1_split_5050_image','35276'),(54155,39181,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(54156,39181,'blocks_1_split_5050_video',''),(54157,39181,'_blocks_1_split_5050_video','field_6239f3160848a'),(54158,39181,'blocks_1_split_5050_content_title',''),(54159,39181,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(54160,39181,'blocks_1_split_5050_content_heading','What we do'),(54161,39181,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(54162,39181,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(54163,39181,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(54164,39181,'blocks_1_split_5050_content_actions',''),(54165,39181,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(54166,39181,'blocks_1_split_5050_content',''),(54167,39181,'_blocks_1_split_5050_content','field_61767afceb8ba'),(54168,39181,'blocks_2_acfe_flexible_toggle',''),(54169,39181,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(54170,39181,'blocks_2_acfe_flexible_layout_title','Video'),(54171,39181,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(54172,39181,'blocks_2_size','large'),(54173,39181,'_blocks_2_size','field_6487038f297c1'),(54174,39181,'blocks_2_row_content_title',''),(54175,39181,'_blocks_2_row_content_title','field_64870132a865d'),(54176,39181,'blocks_2_row_content_heading','Welcome to Biomechanics Education'),(54177,39181,'_blocks_2_row_content_heading','field_64870142a865e'),(54178,39181,'blocks_2_row_content_text',''),(54179,39181,'_blocks_2_row_content_text','field_64870148a865f'),(54180,39181,'blocks_2_row_content',''),(54181,39181,'_blocks_2_row_content','field_6487008ba865c'),(54182,39181,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(54183,39181,'_blocks_2_video_src','field_6193c4a98ec07'),(54184,39181,'blocks_2_video_thumbnail','39175'),(54185,39181,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(54186,39181,'blocks_3_acfe_flexible_toggle',''),(54187,39181,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(54188,39181,'blocks_3_acfe_flexible_layout_title','Cards'),(54189,39181,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(54190,39181,'blocks_3_options_theme','#ffffff'),(54191,39181,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(54192,39181,'blocks_3_options_format','grid'),(54193,39181,'_blocks_3_options_format','field_617a7b15245b5'),(54194,39181,'blocks_3_options_style','default'),(54195,39181,'_blocks_3_options_style','field_6278ffb63484a'),(54196,39181,'blocks_3_options_cards_current_listing','0'),(54197,39181,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(54198,39181,'blocks_3_options_cards_content','custom'),(54199,39181,'_blocks_3_options_cards_content','field_617aba6122688'),(54200,39181,'blocks_3_options',''),(54201,39181,'_blocks_3_options','field_617a7b15245b3'),(54202,39181,'blocks_3_cards_custom_0_image',''),(54203,39181,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(54204,39181,'blocks_3_cards_custom_0_title','Our Team'),(54205,39181,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(54206,39181,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(54207,39181,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(54208,39181,'blocks_3_cards_custom_0_link',''),(54209,39181,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(54210,39181,'blocks_3_cards_custom_1_image',''),(54211,39181,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(54212,39181,'blocks_3_cards_custom_1_title','Our Partners'),(54213,39181,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(54214,39181,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(54215,39181,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(54216,39181,'blocks_3_cards_custom_1_link',''),(54217,39181,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(54218,39181,'blocks_3_cards_custom','2'),(54219,39181,'_blocks_3_cards_custom','field_6194cbf84d386'),(54220,39181,'_thumbnail_id',''),(54221,39181,'__thumbnail_id','field_617570855ddaf'),(54223,39182,'hero_style','default'),(54224,39182,'_hero_style','field_62051d9dc5324'),(54225,39182,'hero_image_pos_x','right'),(54226,39182,'_hero_image_pos_x','field_62ec3d05390bb'),(54227,39182,'hero_image_pos_y','top'),(54228,39182,'_hero_image_pos_y','field_62ec3d05390bc'),(54229,39182,'hero_image_pos',''),(54230,39182,'_hero_image_pos','field_62ec3d05390ba'),(54231,39182,'hero_title','About Us'),(54232,39182,'_hero_title','field_617571fe285e8'),(54233,39182,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(54234,39182,'_hero_text','field_6175723c285e9'),(54235,39182,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(54236,39182,'_hero_actions_0_button','field_61757281285eb'),(54237,39182,'hero_actions','1'),(54238,39182,'_hero_actions','field_61757270285ea'),(54239,39182,'hero_icon',''),(54240,39182,'_hero_icon','field_61a6182199d03'),(54241,39182,'fft_hide_from_listings','0'),(54242,39182,'_fft_hide_from_listings','field_61f1320446ab2'),(54243,39182,'fft_page_format','default'),(54244,39182,'_fft_page_format','field_61ae213f1f218'),(54245,39182,'fft_hide_nav','0'),(54246,39182,'_fft_hide_nav','field_635bd5e43527c'),(54247,39182,'fft_hide_header_call_to_action','0'),(54248,39182,'_fft_hide_header_call_to_action','field_635bd6723527d'),(54249,39182,'fft_page_sitemap','0'),(54250,39182,'_fft_page_sitemap','field_61af9b34e8181'),(54251,39182,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(54252,39182,'_blocks','field_6176696113096'),(54253,39182,'blocks_0_acfe_flexible_toggle',''),(54254,39182,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(54255,39182,'blocks_0_acfe_flexible_layout_title','Text Block'),(54256,39182,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(54257,39182,'blocks_0_options_theme','#ffffff'),(54258,39182,'_blocks_0_options_theme','field_6176830e2ad17'),(54259,39182,'blocks_0_options',''),(54260,39182,'_blocks_0_options','field_6176830e2ad16'),(54261,39182,'blocks_0_text_block_heading','Who is Biomechanics Education ?'),(54262,39182,'_blocks_0_text_block_heading','field_617669d413097'),(54263,39182,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.'),(54264,39182,'_blocks_0_text_block_content','field_617669ec13098'),(54265,39182,'blocks_1_acfe_flexible_toggle',''),(54266,39182,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(54267,39182,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(54268,39182,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(54269,39182,'blocks_1_options_theme','#f5f5f5'),(54270,39182,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(54271,39182,'blocks_1_options_reverse','1'),(54272,39182,'_blocks_1_options_reverse','field_61768049bb8ac'),(54273,39182,'blocks_1_options',''),(54274,39182,'_blocks_1_options','field_617682517c334'),(54275,39182,'blocks_1_split_5050_image','35276'),(54276,39182,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(54277,39182,'blocks_1_split_5050_video',''),(54278,39182,'_blocks_1_split_5050_video','field_6239f3160848a'),(54279,39182,'blocks_1_split_5050_content_title',''),(54280,39182,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(54281,39182,'blocks_1_split_5050_content_heading','What we do'),(54282,39182,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(54283,39182,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(54284,39182,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(54285,39182,'blocks_1_split_5050_content_actions',''),(54286,39182,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(54287,39182,'blocks_1_split_5050_content',''),(54288,39182,'_blocks_1_split_5050_content','field_61767afceb8ba'),(54289,39182,'blocks_2_acfe_flexible_toggle',''),(54290,39182,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(54291,39182,'blocks_2_acfe_flexible_layout_title','Video'),(54292,39182,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(54293,39182,'blocks_2_size','large'),(54294,39182,'_blocks_2_size','field_6487038f297c1'),(54295,39182,'blocks_2_row_content_title',''),(54296,39182,'_blocks_2_row_content_title','field_64870132a865d'),(54297,39182,'blocks_2_row_content_heading','Welcome to Biomechanics Education'),(54298,39182,'_blocks_2_row_content_heading','field_64870142a865e'),(54299,39182,'blocks_2_row_content_text',''),(54300,39182,'_blocks_2_row_content_text','field_64870148a865f'),(54301,39182,'blocks_2_row_content',''),(54302,39182,'_blocks_2_row_content','field_6487008ba865c'),(54303,39182,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(54304,39182,'_blocks_2_video_src','field_6193c4a98ec07'),(54305,39182,'blocks_2_video_thumbnail','39175'),(54306,39182,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(54307,39182,'blocks_3_acfe_flexible_toggle',''),(54308,39182,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(54309,39182,'blocks_3_acfe_flexible_layout_title','Cards'),(54310,39182,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(54311,39182,'blocks_3_options_theme','#ffffff'),(54312,39182,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(54313,39182,'blocks_3_options_format','grid'),(54314,39182,'_blocks_3_options_format','field_617a7b15245b5'),(54315,39182,'blocks_3_options_style','default'),(54316,39182,'_blocks_3_options_style','field_6278ffb63484a'),(54317,39182,'blocks_3_options_cards_current_listing','0'),(54318,39182,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(54319,39182,'blocks_3_options_cards_content','custom'),(54320,39182,'_blocks_3_options_cards_content','field_617aba6122688'),(54321,39182,'blocks_3_options',''),(54322,39182,'_blocks_3_options','field_617a7b15245b3'),(54323,39182,'blocks_3_cards_custom_0_image',''),(54324,39182,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(54325,39182,'blocks_3_cards_custom_0_title','Our Team'),(54326,39182,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(54327,39182,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(54328,39182,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(54329,39182,'blocks_3_cards_custom_0_link',''),(54330,39182,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(54331,39182,'blocks_3_cards_custom_1_image',''),(54332,39182,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(54333,39182,'blocks_3_cards_custom_1_title','Our Partners'),(54334,39182,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(54335,39182,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(54336,39182,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(54337,39182,'blocks_3_cards_custom_1_link',''),(54338,39182,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(54339,39182,'blocks_3_cards_custom','2'),(54340,39182,'_blocks_3_cards_custom','field_6194cbf84d386'),(54341,39182,'_thumbnail_id',''),(54342,39182,'__thumbnail_id','field_617570855ddaf'),(54344,39183,'hero_style','default'),(54345,39183,'_hero_style','field_62051d9dc5324'),(54346,39183,'hero_image_pos_x','right'),(54347,39183,'_hero_image_pos_x','field_62ec3d05390bb'),(54348,39183,'hero_image_pos_y','top'),(54349,39183,'_hero_image_pos_y','field_62ec3d05390bc'),(54350,39183,'hero_image_pos',''),(54351,39183,'_hero_image_pos','field_62ec3d05390ba'),(54352,39183,'hero_title','About Us'),(54353,39183,'_hero_title','field_617571fe285e8'),(54354,39183,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(54355,39183,'_hero_text','field_6175723c285e9'),(54356,39183,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(54357,39183,'_hero_actions_0_button','field_61757281285eb'),(54358,39183,'hero_actions','1'),(54359,39183,'_hero_actions','field_61757270285ea'),(54360,39183,'hero_icon',''),(54361,39183,'_hero_icon','field_61a6182199d03'),(54362,39183,'fft_hide_from_listings','0'),(54363,39183,'_fft_hide_from_listings','field_61f1320446ab2'),(54364,39183,'fft_page_format','default'),(54365,39183,'_fft_page_format','field_61ae213f1f218'),(54366,39183,'fft_hide_nav','0'),(54367,39183,'_fft_hide_nav','field_635bd5e43527c'),(54368,39183,'fft_hide_header_call_to_action','0'),(54369,39183,'_fft_hide_header_call_to_action','field_635bd6723527d'),(54370,39183,'fft_page_sitemap','0'),(54371,39183,'_fft_page_sitemap','field_61af9b34e8181'),(54372,39183,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(54373,39183,'_blocks','field_6176696113096'),(54374,39183,'blocks_0_acfe_flexible_toggle',''),(54375,39183,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(54376,39183,'blocks_0_acfe_flexible_layout_title','Text Block'),(54377,39183,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(54378,39183,'blocks_0_options_theme','#ffffff'),(54379,39183,'_blocks_0_options_theme','field_6176830e2ad17'),(54380,39183,'blocks_0_options',''),(54381,39183,'_blocks_0_options','field_6176830e2ad16'),(54382,39183,'blocks_0_text_block_heading','Who is Biomechanics Education?'),(54383,39183,'_blocks_0_text_block_heading','field_617669d413097'),(54384,39183,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.'),(54385,39183,'_blocks_0_text_block_content','field_617669ec13098'),(54386,39183,'blocks_1_acfe_flexible_toggle',''),(54387,39183,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(54388,39183,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(54389,39183,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(54390,39183,'blocks_1_options_theme','#f5f5f5'),(54391,39183,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(54392,39183,'blocks_1_options_reverse','1'),(54393,39183,'_blocks_1_options_reverse','field_61768049bb8ac'),(54394,39183,'blocks_1_options',''),(54395,39183,'_blocks_1_options','field_617682517c334'),(54396,39183,'blocks_1_split_5050_image','35276'),(54397,39183,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(54398,39183,'blocks_1_split_5050_video',''),(54399,39183,'_blocks_1_split_5050_video','field_6239f3160848a'),(54400,39183,'blocks_1_split_5050_content_title',''),(54401,39183,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(54402,39183,'blocks_1_split_5050_content_heading','What we do'),(54403,39183,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(54404,39183,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(54405,39183,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(54406,39183,'blocks_1_split_5050_content_actions',''),(54407,39183,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(54408,39183,'blocks_1_split_5050_content',''),(54409,39183,'_blocks_1_split_5050_content','field_61767afceb8ba'),(54410,39183,'blocks_2_acfe_flexible_toggle',''),(54411,39183,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(54412,39183,'blocks_2_acfe_flexible_layout_title','Video'),(54413,39183,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(54414,39183,'blocks_2_size','large'),(54415,39183,'_blocks_2_size','field_6487038f297c1'),(54416,39183,'blocks_2_row_content_title',''),(54417,39183,'_blocks_2_row_content_title','field_64870132a865d'),(54418,39183,'blocks_2_row_content_heading','Welcome to Biomechanics Education'),(54419,39183,'_blocks_2_row_content_heading','field_64870142a865e'),(54420,39183,'blocks_2_row_content_text',''),(54421,39183,'_blocks_2_row_content_text','field_64870148a865f'),(54422,39183,'blocks_2_row_content',''),(54423,39183,'_blocks_2_row_content','field_6487008ba865c'),(54424,39183,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(54425,39183,'_blocks_2_video_src','field_6193c4a98ec07'),(54426,39183,'blocks_2_video_thumbnail','39175'),(54427,39183,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(54428,39183,'blocks_3_acfe_flexible_toggle',''),(54429,39183,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(54430,39183,'blocks_3_acfe_flexible_layout_title','Cards'),(54431,39183,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(54432,39183,'blocks_3_options_theme','#ffffff'),(54433,39183,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(54434,39183,'blocks_3_options_format','grid'),(54435,39183,'_blocks_3_options_format','field_617a7b15245b5'),(54436,39183,'blocks_3_options_style','default'),(54437,39183,'_blocks_3_options_style','field_6278ffb63484a'),(54438,39183,'blocks_3_options_cards_current_listing','0'),(54439,39183,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(54440,39183,'blocks_3_options_cards_content','custom'),(54441,39183,'_blocks_3_options_cards_content','field_617aba6122688'),(54442,39183,'blocks_3_options',''),(54443,39183,'_blocks_3_options','field_617a7b15245b3'),(54444,39183,'blocks_3_cards_custom_0_image',''),(54445,39183,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(54446,39183,'blocks_3_cards_custom_0_title','Our Team'),(54447,39183,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(54448,39183,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(54449,39183,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(54450,39183,'blocks_3_cards_custom_0_link',''),(54451,39183,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(54452,39183,'blocks_3_cards_custom_1_image',''),(54453,39183,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(54454,39183,'blocks_3_cards_custom_1_title','Our Partners'),(54455,39183,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(54456,39183,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(54457,39183,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(54458,39183,'blocks_3_cards_custom_1_link',''),(54459,39183,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(54460,39183,'blocks_3_cards_custom','2'),(54461,39183,'_blocks_3_cards_custom','field_6194cbf84d386'),(54462,39183,'_thumbnail_id',''),(54463,39183,'__thumbnail_id','field_617570855ddaf'),(54464,39172,'_thumbnail_id','40408'),(54465,39184,'hero_style','default'),(54466,39184,'_hero_style','field_62051d9dc5324'),(54467,39184,'hero_image_pos_x','right'),(54468,39184,'_hero_image_pos_x','field_62ec3d05390bb'),(54469,39184,'hero_image_pos_y','top'),(54470,39184,'_hero_image_pos_y','field_62ec3d05390bc'),(54471,39184,'hero_image_pos',''),(54472,39184,'_hero_image_pos','field_62ec3d05390ba'),(54473,39184,'hero_title','About Us'),(54474,39184,'_hero_title','field_617571fe285e8'),(54475,39184,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(54476,39184,'_hero_text','field_6175723c285e9'),(54477,39184,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(54478,39184,'_hero_actions_0_button','field_61757281285eb'),(54479,39184,'hero_actions','1'),(54480,39184,'_hero_actions','field_61757270285ea'),(54481,39184,'hero_icon',''),(54482,39184,'_hero_icon','field_61a6182199d03'),(54483,39184,'fft_hide_from_listings','0'),(54484,39184,'_fft_hide_from_listings','field_61f1320446ab2'),(54485,39184,'fft_page_format','default'),(54486,39184,'_fft_page_format','field_61ae213f1f218'),(54487,39184,'fft_hide_nav','0'),(54488,39184,'_fft_hide_nav','field_635bd5e43527c'),(54489,39184,'fft_hide_header_call_to_action','0'),(54490,39184,'_fft_hide_header_call_to_action','field_635bd6723527d'),(54491,39184,'fft_page_sitemap','0'),(54492,39184,'_fft_page_sitemap','field_61af9b34e8181'),(54493,39184,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(54494,39184,'_blocks','field_6176696113096'),(54495,39184,'blocks_0_acfe_flexible_toggle',''),(54496,39184,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(54497,39184,'blocks_0_acfe_flexible_layout_title','Text Block'),(54498,39184,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(54499,39184,'blocks_0_options_theme','#ffffff'),(54500,39184,'_blocks_0_options_theme','field_6176830e2ad17'),(54501,39184,'blocks_0_options',''),(54502,39184,'_blocks_0_options','field_6176830e2ad16'),(54503,39184,'blocks_0_text_block_heading','Who is Biomechanics Education?'),(54504,39184,'_blocks_0_text_block_heading','field_617669d413097'),(54505,39184,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.'),(54506,39184,'_blocks_0_text_block_content','field_617669ec13098'),(54507,39184,'blocks_1_acfe_flexible_toggle',''),(54508,39184,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(54509,39184,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(54510,39184,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(54511,39184,'blocks_1_options_theme','#f5f5f5'),(54512,39184,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(54513,39184,'blocks_1_options_reverse','1'),(54514,39184,'_blocks_1_options_reverse','field_61768049bb8ac'),(54515,39184,'blocks_1_options',''),(54516,39184,'_blocks_1_options','field_617682517c334'),(54517,39184,'blocks_1_split_5050_image','35276'),(54518,39184,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(54519,39184,'blocks_1_split_5050_video',''),(54520,39184,'_blocks_1_split_5050_video','field_6239f3160848a'),(54521,39184,'blocks_1_split_5050_content_title',''),(54522,39184,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(54523,39184,'blocks_1_split_5050_content_heading','What we do'),(54524,39184,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(54525,39184,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(54526,39184,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(54527,39184,'blocks_1_split_5050_content_actions',''),(54528,39184,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(54529,39184,'blocks_1_split_5050_content',''),(54530,39184,'_blocks_1_split_5050_content','field_61767afceb8ba'),(54531,39184,'blocks_2_acfe_flexible_toggle',''),(54532,39184,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(54533,39184,'blocks_2_acfe_flexible_layout_title','Video'),(54534,39184,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(54535,39184,'blocks_2_size','large'),(54536,39184,'_blocks_2_size','field_6487038f297c1'),(54537,39184,'blocks_2_row_content_title',''),(54538,39184,'_blocks_2_row_content_title','field_64870132a865d'),(54539,39184,'blocks_2_row_content_heading','Welcome to Biomechanics Education'),(54540,39184,'_blocks_2_row_content_heading','field_64870142a865e'),(54541,39184,'blocks_2_row_content_text',''),(54542,39184,'_blocks_2_row_content_text','field_64870148a865f'),(54543,39184,'blocks_2_row_content',''),(54544,39184,'_blocks_2_row_content','field_6487008ba865c'),(54545,39184,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(54546,39184,'_blocks_2_video_src','field_6193c4a98ec07'),(54547,39184,'blocks_2_video_thumbnail','39175'),(54548,39184,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(54549,39184,'blocks_3_acfe_flexible_toggle',''),(54550,39184,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(54551,39184,'blocks_3_acfe_flexible_layout_title','Cards'),(54552,39184,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(54553,39184,'blocks_3_options_theme','#ffffff'),(54554,39184,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(54555,39184,'blocks_3_options_format','grid'),(54556,39184,'_blocks_3_options_format','field_617a7b15245b5'),(54557,39184,'blocks_3_options_style','default'),(54558,39184,'_blocks_3_options_style','field_6278ffb63484a'),(54559,39184,'blocks_3_options_cards_current_listing','0'),(54560,39184,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(54561,39184,'blocks_3_options_cards_content','custom'),(54562,39184,'_blocks_3_options_cards_content','field_617aba6122688'),(54563,39184,'blocks_3_options',''),(54564,39184,'_blocks_3_options','field_617a7b15245b3'),(54565,39184,'blocks_3_cards_custom_0_image',''),(54566,39184,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(54567,39184,'blocks_3_cards_custom_0_title','Our Team'),(54568,39184,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(54569,39184,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(54570,39184,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(54571,39184,'blocks_3_cards_custom_0_link',''),(54572,39184,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(54573,39184,'blocks_3_cards_custom_1_image',''),(54574,39184,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(54575,39184,'blocks_3_cards_custom_1_title','Our Partners'),(54576,39184,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(54577,39184,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(54578,39184,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(54579,39184,'blocks_3_cards_custom_1_link',''),(54580,39184,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(54581,39184,'blocks_3_cards_custom','2'),(54582,39184,'_blocks_3_cards_custom','field_6194cbf84d386'),(54583,39184,'_thumbnail_id','39175'),(54584,39184,'__thumbnail_id','field_617570855ddaf'),(54587,39186,'_wp_attached_file','2024/07/About-us-Hero-image.png'),(54588,39186,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:31:\"2024/07/About-us-Hero-image.png\";s:8:\"filesize\";i:911470;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:425098;}s:5:\"large\";a:5:{s:4:\"file\";s:32:\"About-us-Hero-image-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:728232;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88886;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:315427;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:213191;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-900x720.png\";s:5:\"width\";i:900;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:803656;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:32:\"About-us-Hero-image-1200x720.png\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:890649;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117965;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:566128;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:32:\"About-us-Hero-image-1200x720.png\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:890649;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:169898;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-675x720.png\";s:5:\"width\";i:675;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:679605;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-900x720.png\";s:5:\"width\";i:900;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:803656;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141705;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:671325;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:32:\"About-us-Hero-image-1200x720.png\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:890649;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88886;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:31:\"About-us-Hero-image-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:425098;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:32:\"About-us-Hero-image-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:728232;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(54589,39187,'hero_style','default'),(54590,39187,'_hero_style','field_62051d9dc5324'),(54591,39187,'hero_image_pos_x','right'),(54592,39187,'_hero_image_pos_x','field_62ec3d05390bb'),(54593,39187,'hero_image_pos_y','top'),(54594,39187,'_hero_image_pos_y','field_62ec3d05390bc'),(54595,39187,'hero_image_pos',''),(54596,39187,'_hero_image_pos','field_62ec3d05390ba'),(54597,39187,'hero_title','About Us'),(54598,39187,'_hero_title','field_617571fe285e8'),(54599,39187,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(54600,39187,'_hero_text','field_6175723c285e9'),(54601,39187,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(54602,39187,'_hero_actions_0_button','field_61757281285eb'),(54603,39187,'hero_actions','1'),(54604,39187,'_hero_actions','field_61757270285ea'),(54605,39187,'hero_icon',''),(54606,39187,'_hero_icon','field_61a6182199d03'),(54607,39187,'fft_hide_from_listings','0'),(54608,39187,'_fft_hide_from_listings','field_61f1320446ab2'),(54609,39187,'fft_page_format','default'),(54610,39187,'_fft_page_format','field_61ae213f1f218'),(54611,39187,'fft_hide_nav','0'),(54612,39187,'_fft_hide_nav','field_635bd5e43527c'),(54613,39187,'fft_hide_header_call_to_action','0'),(54614,39187,'_fft_hide_header_call_to_action','field_635bd6723527d'),(54615,39187,'fft_page_sitemap','0'),(54616,39187,'_fft_page_sitemap','field_61af9b34e8181'),(54617,39187,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(54618,39187,'_blocks','field_6176696113096'),(54619,39187,'blocks_0_acfe_flexible_toggle',''),(54620,39187,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(54621,39187,'blocks_0_acfe_flexible_layout_title','Text Block'),(54622,39187,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(54623,39187,'blocks_0_options_theme','#ffffff'),(54624,39187,'_blocks_0_options_theme','field_6176830e2ad17'),(54625,39187,'blocks_0_options',''),(54626,39187,'_blocks_0_options','field_6176830e2ad16'),(54627,39187,'blocks_0_text_block_heading','Who is Biomechanics Education?'),(54628,39187,'_blocks_0_text_block_heading','field_617669d413097'),(54629,39187,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.'),(54630,39187,'_blocks_0_text_block_content','field_617669ec13098'),(54631,39187,'blocks_1_acfe_flexible_toggle',''),(54632,39187,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(54633,39187,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(54634,39187,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(54635,39187,'blocks_1_options_theme','#f5f5f5'),(54636,39187,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(54637,39187,'blocks_1_options_reverse','1'),(54638,39187,'_blocks_1_options_reverse','field_61768049bb8ac'),(54639,39187,'blocks_1_options',''),(54640,39187,'_blocks_1_options','field_617682517c334'),(54641,39187,'blocks_1_split_5050_image','35276'),(54642,39187,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(54643,39187,'blocks_1_split_5050_video',''),(54644,39187,'_blocks_1_split_5050_video','field_6239f3160848a'),(54645,39187,'blocks_1_split_5050_content_title',''),(54646,39187,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(54647,39187,'blocks_1_split_5050_content_heading','What we do'),(54648,39187,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(54649,39187,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(54650,39187,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(54651,39187,'blocks_1_split_5050_content_actions',''),(54652,39187,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(54653,39187,'blocks_1_split_5050_content',''),(54654,39187,'_blocks_1_split_5050_content','field_61767afceb8ba'),(54655,39187,'blocks_2_acfe_flexible_toggle',''),(54656,39187,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(54657,39187,'blocks_2_acfe_flexible_layout_title','Video'),(54658,39187,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(54659,39187,'blocks_2_size','large'),(54660,39187,'_blocks_2_size','field_6487038f297c1'),(54661,39187,'blocks_2_row_content_title',''),(54662,39187,'_blocks_2_row_content_title','field_64870132a865d'),(54663,39187,'blocks_2_row_content_heading','Welcome to Biomechanics Education'),(54664,39187,'_blocks_2_row_content_heading','field_64870142a865e'),(54665,39187,'blocks_2_row_content_text',''),(54666,39187,'_blocks_2_row_content_text','field_64870148a865f'),(54667,39187,'blocks_2_row_content',''),(54668,39187,'_blocks_2_row_content','field_6487008ba865c'),(54669,39187,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(54670,39187,'_blocks_2_video_src','field_6193c4a98ec07'),(54671,39187,'blocks_2_video_thumbnail','39175'),(54672,39187,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(54673,39187,'blocks_3_acfe_flexible_toggle',''),(54674,39187,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(54675,39187,'blocks_3_acfe_flexible_layout_title','Cards'),(54676,39187,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(54677,39187,'blocks_3_options_theme','#ffffff'),(54678,39187,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(54679,39187,'blocks_3_options_format','grid'),(54680,39187,'_blocks_3_options_format','field_617a7b15245b5'),(54681,39187,'blocks_3_options_style','default'),(54682,39187,'_blocks_3_options_style','field_6278ffb63484a'),(54683,39187,'blocks_3_options_cards_current_listing','0'),(54684,39187,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(54685,39187,'blocks_3_options_cards_content','custom'),(54686,39187,'_blocks_3_options_cards_content','field_617aba6122688'),(54687,39187,'blocks_3_options',''),(54688,39187,'_blocks_3_options','field_617a7b15245b3'),(54689,39187,'blocks_3_cards_custom_0_image',''),(54690,39187,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(54691,39187,'blocks_3_cards_custom_0_title','Our Team'),(54692,39187,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(54693,39187,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(54694,39187,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(54695,39187,'blocks_3_cards_custom_0_link',''),(54696,39187,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(54697,39187,'blocks_3_cards_custom_1_image',''),(54698,39187,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(54699,39187,'blocks_3_cards_custom_1_title','Our Partners'),(54700,39187,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(54701,39187,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(54702,39187,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(54703,39187,'blocks_3_cards_custom_1_link',''),(54704,39187,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(54705,39187,'blocks_3_cards_custom','2'),(54706,39187,'_blocks_3_cards_custom','field_6194cbf84d386'),(54707,39187,'_thumbnail_id','39186'),(54708,39187,'__thumbnail_id','field_617570855ddaf'),(54709,39188,'hero_style','default'),(54710,39188,'_hero_style','field_62051d9dc5324'),(54711,39188,'hero_image_pos_x','right'),(54712,39188,'_hero_image_pos_x','field_62ec3d05390bb'),(54713,39188,'hero_image_pos_y','top'),(54714,39188,'_hero_image_pos_y','field_62ec3d05390bc'),(54715,39188,'hero_image_pos',''),(54716,39188,'_hero_image_pos','field_62ec3d05390ba'),(54717,39188,'hero_title','About Us'),(54718,39188,'_hero_title','field_617571fe285e8'),(54719,39188,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(54720,39188,'_hero_text','field_6175723c285e9'),(54721,39188,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(54722,39188,'_hero_actions_0_button','field_61757281285eb'),(54723,39188,'hero_actions','1'),(54724,39188,'_hero_actions','field_61757270285ea'),(54725,39188,'hero_icon',''),(54726,39188,'_hero_icon','field_61a6182199d03'),(54727,39188,'fft_hide_from_listings','0'),(54728,39188,'_fft_hide_from_listings','field_61f1320446ab2'),(54729,39188,'fft_page_format','default'),(54730,39188,'_fft_page_format','field_61ae213f1f218'),(54731,39188,'fft_hide_nav','0'),(54732,39188,'_fft_hide_nav','field_635bd5e43527c'),(54733,39188,'fft_hide_header_call_to_action','0'),(54734,39188,'_fft_hide_header_call_to_action','field_635bd6723527d'),(54735,39188,'fft_page_sitemap','0'),(54736,39188,'_fft_page_sitemap','field_61af9b34e8181'),(54737,39188,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(54738,39188,'_blocks','field_6176696113096'),(54739,39188,'blocks_0_acfe_flexible_toggle',''),(54740,39188,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(54741,39188,'blocks_0_acfe_flexible_layout_title','Text Block'),(54742,39188,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(54743,39188,'blocks_0_options_theme','#ffffff'),(54744,39188,'_blocks_0_options_theme','field_6176830e2ad17'),(54745,39188,'blocks_0_options',''),(54746,39188,'_blocks_0_options','field_6176830e2ad16'),(54747,39188,'blocks_0_text_block_heading','Who is Biomechanics Education?'),(54748,39188,'_blocks_0_text_block_heading','field_617669d413097'),(54749,39188,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.'),(54750,39188,'_blocks_0_text_block_content','field_617669ec13098'),(54751,39188,'blocks_1_acfe_flexible_toggle',''),(54752,39188,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(54753,39188,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(54754,39188,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(54755,39188,'blocks_1_options_theme','#f5f5f5'),(54756,39188,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(54757,39188,'blocks_1_options_reverse','0'),(54758,39188,'_blocks_1_options_reverse','field_61768049bb8ac'),(54759,39188,'blocks_1_options',''),(54760,39188,'_blocks_1_options','field_617682517c334'),(54761,39188,'blocks_1_split_5050_image','35276'),(54762,39188,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(54763,39188,'blocks_1_split_5050_video',''),(54764,39188,'_blocks_1_split_5050_video','field_6239f3160848a'),(54765,39188,'blocks_1_split_5050_content_title',''),(54766,39188,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(54767,39188,'blocks_1_split_5050_content_heading','What we do'),(54768,39188,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(54769,39188,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(54770,39188,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(54771,39188,'blocks_1_split_5050_content_actions',''),(54772,39188,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(54773,39188,'blocks_1_split_5050_content',''),(54774,39188,'_blocks_1_split_5050_content','field_61767afceb8ba'),(54775,39188,'blocks_2_acfe_flexible_toggle',''),(54776,39188,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(54777,39188,'blocks_2_acfe_flexible_layout_title','Video'),(54778,39188,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(54779,39188,'blocks_2_size','large'),(54780,39188,'_blocks_2_size','field_6487038f297c1'),(54781,39188,'blocks_2_row_content_title',''),(54782,39188,'_blocks_2_row_content_title','field_64870132a865d'),(54783,39188,'blocks_2_row_content_heading','Welcome to Biomechanics Education'),(54784,39188,'_blocks_2_row_content_heading','field_64870142a865e'),(54785,39188,'blocks_2_row_content_text',''),(54786,39188,'_blocks_2_row_content_text','field_64870148a865f'),(54787,39188,'blocks_2_row_content',''),(54788,39188,'_blocks_2_row_content','field_6487008ba865c'),(54789,39188,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(54790,39188,'_blocks_2_video_src','field_6193c4a98ec07'),(54791,39188,'blocks_2_video_thumbnail','39175'),(54792,39188,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(54793,39188,'blocks_3_acfe_flexible_toggle',''),(54794,39188,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(54795,39188,'blocks_3_acfe_flexible_layout_title','Cards'),(54796,39188,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(54797,39188,'blocks_3_options_theme','#ffffff'),(54798,39188,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(54799,39188,'blocks_3_options_format','grid'),(54800,39188,'_blocks_3_options_format','field_617a7b15245b5'),(54801,39188,'blocks_3_options_style','default'),(54802,39188,'_blocks_3_options_style','field_6278ffb63484a'),(54803,39188,'blocks_3_options_cards_current_listing','0'),(54804,39188,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(54805,39188,'blocks_3_options_cards_content','custom'),(54806,39188,'_blocks_3_options_cards_content','field_617aba6122688'),(54807,39188,'blocks_3_options',''),(54808,39188,'_blocks_3_options','field_617a7b15245b3'),(54809,39188,'blocks_3_cards_custom_0_image',''),(54810,39188,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(54811,39188,'blocks_3_cards_custom_0_title','Our Team'),(54812,39188,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(54813,39188,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(54814,39188,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(54815,39188,'blocks_3_cards_custom_0_link',''),(54816,39188,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(54817,39188,'blocks_3_cards_custom_1_image',''),(54818,39188,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(54819,39188,'blocks_3_cards_custom_1_title','Our Partners'),(54820,39188,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(54821,39188,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(54822,39188,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(54823,39188,'blocks_3_cards_custom_1_link',''),(54824,39188,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(54825,39188,'blocks_3_cards_custom','2'),(54826,39188,'_blocks_3_cards_custom','field_6194cbf84d386'),(54827,39188,'_thumbnail_id','39186'),(54828,39188,'__thumbnail_id','field_617570855ddaf'),(54835,39189,'hero_style','default'),(54836,39189,'_hero_style','field_62051d9dc5324'),(54837,39189,'hero_image_pos_x','right'),(54838,39189,'_hero_image_pos_x','field_62ec3d05390bb'),(54839,39189,'hero_image_pos_y','top'),(54840,39189,'_hero_image_pos_y','field_62ec3d05390bc'),(54841,39189,'hero_image_pos',''),(54842,39189,'_hero_image_pos','field_62ec3d05390ba'),(54843,39189,'hero_title','About Us'),(54844,39189,'_hero_title','field_617571fe285e8'),(54845,39189,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(54846,39189,'_hero_text','field_6175723c285e9'),(54847,39189,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(54848,39189,'_hero_actions_0_button','field_61757281285eb'),(54849,39189,'hero_actions','1'),(54850,39189,'_hero_actions','field_61757270285ea'),(54851,39189,'hero_icon',''),(54852,39189,'_hero_icon','field_61a6182199d03'),(54853,39189,'fft_hide_from_listings','0'),(54854,39189,'_fft_hide_from_listings','field_61f1320446ab2'),(54855,39189,'fft_page_format','default'),(54856,39189,'_fft_page_format','field_61ae213f1f218'),(54857,39189,'fft_hide_nav','0'),(54858,39189,'_fft_hide_nav','field_635bd5e43527c'),(54859,39189,'fft_hide_header_call_to_action','0'),(54860,39189,'_fft_hide_header_call_to_action','field_635bd6723527d'),(54861,39189,'fft_page_sitemap','0'),(54862,39189,'_fft_page_sitemap','field_61af9b34e8181'),(54863,39189,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(54864,39189,'_blocks','field_6176696113096'),(54865,39189,'blocks_1_acfe_flexible_toggle',''),(54866,39189,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(54867,39189,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(54868,39189,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(54869,39189,'blocks_1_options_theme','#f5f5f5'),(54870,39189,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(54871,39189,'blocks_1_options_reverse','0'),(54872,39189,'_blocks_1_options_reverse','field_61768049bb8ac'),(54873,39189,'blocks_1_options',''),(54874,39189,'_blocks_1_options','field_617682517c334'),(54875,39189,'blocks_1_split_5050_image','35276'),(54876,39189,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(54877,39189,'blocks_1_split_5050_video',''),(54878,39189,'_blocks_1_split_5050_video','field_6239f3160848a'),(54879,39189,'blocks_1_split_5050_content_title',''),(54880,39189,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(54881,39189,'blocks_1_split_5050_content_heading','What we do'),(54882,39189,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(54883,39189,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(54884,39189,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(54885,39189,'blocks_1_split_5050_content_actions',''),(54886,39189,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(54887,39189,'blocks_1_split_5050_content',''),(54888,39189,'_blocks_1_split_5050_content','field_61767afceb8ba'),(54889,39189,'blocks_2_acfe_flexible_toggle',''),(54890,39189,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(54891,39189,'blocks_2_acfe_flexible_layout_title','Video'),(54892,39189,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(54893,39189,'blocks_2_size','large'),(54894,39189,'_blocks_2_size','field_6487038f297c1'),(54895,39189,'blocks_2_row_content_title',''),(54896,39189,'_blocks_2_row_content_title','field_64870132a865d'),(54897,39189,'blocks_2_row_content_heading','Welcome to Biomechanics Education'),(54898,39189,'_blocks_2_row_content_heading','field_64870142a865e'),(54899,39189,'blocks_2_row_content_text',''),(54900,39189,'_blocks_2_row_content_text','field_64870148a865f'),(54901,39189,'blocks_2_row_content',''),(54902,39189,'_blocks_2_row_content','field_6487008ba865c'),(54903,39189,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(54904,39189,'_blocks_2_video_src','field_6193c4a98ec07'),(54905,39189,'blocks_2_video_thumbnail','39175'),(54906,39189,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(54907,39189,'blocks_3_acfe_flexible_toggle',''),(54908,39189,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(54909,39189,'blocks_3_acfe_flexible_layout_title','Cards'),(54910,39189,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(54911,39189,'blocks_3_options_theme','#ffffff'),(54912,39189,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(54913,39189,'blocks_3_options_format','grid'),(54914,39189,'_blocks_3_options_format','field_617a7b15245b5'),(54915,39189,'blocks_3_options_style','default'),(54916,39189,'_blocks_3_options_style','field_6278ffb63484a'),(54917,39189,'blocks_3_options_cards_current_listing','0'),(54918,39189,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(54919,39189,'blocks_3_options_cards_content','custom'),(54920,39189,'_blocks_3_options_cards_content','field_617aba6122688'),(54921,39189,'blocks_3_options',''),(54922,39189,'_blocks_3_options','field_617a7b15245b3'),(54923,39189,'blocks_3_cards_custom_0_image',''),(54924,39189,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(54925,39189,'blocks_3_cards_custom_0_title','Our Team'),(54926,39189,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(54927,39189,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(54928,39189,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(54929,39189,'blocks_3_cards_custom_0_link',''),(54930,39189,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(54931,39189,'blocks_3_cards_custom_1_image',''),(54932,39189,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(54933,39189,'blocks_3_cards_custom_1_title','Our Partners'),(54934,39189,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(54935,39189,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(54936,39189,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(54937,39189,'blocks_3_cards_custom_1_link',''),(54938,39189,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(54939,39189,'blocks_3_cards_custom','2'),(54940,39189,'_blocks_3_cards_custom','field_6194cbf84d386'),(54941,39189,'_thumbnail_id','39186'),(54942,39189,'__thumbnail_id','field_617570855ddaf'),(54943,39189,'blocks_0_acfe_flexible_toggle',''),(54944,39189,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(54945,39189,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(54946,39189,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(54947,39189,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(54948,39189,'_blocks_0_content','field_6193c9b5eac84'),(54949,39190,'hero_style','default'),(54950,39190,'_hero_style','field_62051d9dc5324'),(54951,39190,'hero_image_pos_x','right'),(54952,39190,'_hero_image_pos_x','field_62ec3d05390bb'),(54953,39190,'hero_image_pos_y','top'),(54954,39190,'_hero_image_pos_y','field_62ec3d05390bc'),(54955,39190,'hero_image_pos',''),(54956,39190,'_hero_image_pos','field_62ec3d05390ba'),(54957,39190,'hero_title','About Us'),(54958,39190,'_hero_title','field_617571fe285e8'),(54959,39190,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(54960,39190,'_hero_text','field_6175723c285e9'),(54961,39190,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(54962,39190,'_hero_actions_0_button','field_61757281285eb'),(54963,39190,'hero_actions','1'),(54964,39190,'_hero_actions','field_61757270285ea'),(54965,39190,'hero_icon',''),(54966,39190,'_hero_icon','field_61a6182199d03'),(54967,39190,'fft_hide_from_listings','0'),(54968,39190,'_fft_hide_from_listings','field_61f1320446ab2'),(54969,39190,'fft_page_format','default'),(54970,39190,'_fft_page_format','field_61ae213f1f218'),(54971,39190,'fft_hide_nav','0'),(54972,39190,'_fft_hide_nav','field_635bd5e43527c'),(54973,39190,'fft_hide_header_call_to_action','0'),(54974,39190,'_fft_hide_header_call_to_action','field_635bd6723527d'),(54975,39190,'fft_page_sitemap','0'),(54976,39190,'_fft_page_sitemap','field_61af9b34e8181'),(54977,39190,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(54978,39190,'_blocks','field_6176696113096'),(54979,39190,'blocks_1_acfe_flexible_toggle',''),(54980,39190,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(54981,39190,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(54982,39190,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(54983,39190,'blocks_1_options_theme','#f5f5f5'),(54984,39190,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(54985,39190,'blocks_1_options_reverse','0'),(54986,39190,'_blocks_1_options_reverse','field_61768049bb8ac'),(54987,39190,'blocks_1_options',''),(54988,39190,'_blocks_1_options','field_617682517c334'),(54989,39190,'blocks_1_split_5050_image','35276'),(54990,39190,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(54991,39190,'blocks_1_split_5050_video',''),(54992,39190,'_blocks_1_split_5050_video','field_6239f3160848a'),(54993,39190,'blocks_1_split_5050_content_title',''),(54994,39190,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(54995,39190,'blocks_1_split_5050_content_heading','What we do'),(54996,39190,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(54997,39190,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(54998,39190,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(54999,39190,'blocks_1_split_5050_content_actions',''),(55000,39190,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(55001,39190,'blocks_1_split_5050_content',''),(55002,39190,'_blocks_1_split_5050_content','field_61767afceb8ba'),(55003,39190,'blocks_2_acfe_flexible_toggle',''),(55004,39190,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(55005,39190,'blocks_2_acfe_flexible_layout_title','Video'),(55006,39190,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(55007,39190,'blocks_2_size','large'),(55008,39190,'_blocks_2_size','field_6487038f297c1'),(55009,39190,'blocks_2_row_content_title','Welcome to Biomechanics Education'),(55010,39190,'_blocks_2_row_content_title','field_64870132a865d'),(55011,39190,'blocks_2_row_content_heading',''),(55012,39190,'_blocks_2_row_content_heading','field_64870142a865e'),(55013,39190,'blocks_2_row_content_text',''),(55014,39190,'_blocks_2_row_content_text','field_64870148a865f'),(55015,39190,'blocks_2_row_content',''),(55016,39190,'_blocks_2_row_content','field_6487008ba865c'),(55017,39190,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(55018,39190,'_blocks_2_video_src','field_6193c4a98ec07'),(55019,39190,'blocks_2_video_thumbnail','39175'),(55020,39190,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(55021,39190,'blocks_3_acfe_flexible_toggle',''),(55022,39190,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(55023,39190,'blocks_3_acfe_flexible_layout_title','Cards'),(55024,39190,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(55025,39190,'blocks_3_options_theme','#ffffff'),(55026,39190,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(55027,39190,'blocks_3_options_format','grid'),(55028,39190,'_blocks_3_options_format','field_617a7b15245b5'),(55029,39190,'blocks_3_options_style','default'),(55030,39190,'_blocks_3_options_style','field_6278ffb63484a'),(55031,39190,'blocks_3_options_cards_current_listing','0'),(55032,39190,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(55033,39190,'blocks_3_options_cards_content','custom'),(55034,39190,'_blocks_3_options_cards_content','field_617aba6122688'),(55035,39190,'blocks_3_options',''),(55036,39190,'_blocks_3_options','field_617a7b15245b3'),(55037,39190,'blocks_3_cards_custom_0_image',''),(55038,39190,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(55039,39190,'blocks_3_cards_custom_0_title','Our Team'),(55040,39190,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(55041,39190,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(55042,39190,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(55043,39190,'blocks_3_cards_custom_0_link',''),(55044,39190,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(55045,39190,'blocks_3_cards_custom_1_image',''),(55046,39190,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(55047,39190,'blocks_3_cards_custom_1_title','Our Partners'),(55048,39190,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(55049,39190,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(55050,39190,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(55051,39190,'blocks_3_cards_custom_1_link',''),(55052,39190,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(55053,39190,'blocks_3_cards_custom','2'),(55054,39190,'_blocks_3_cards_custom','field_6194cbf84d386'),(55055,39190,'_thumbnail_id','39186'),(55056,39190,'__thumbnail_id','field_617570855ddaf'),(55057,39190,'blocks_0_acfe_flexible_toggle',''),(55058,39190,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(55059,39190,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(55060,39190,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(55061,39190,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(55062,39190,'_blocks_0_content','field_6193c9b5eac84'),(55063,39191,'hero_style','default'),(55064,39191,'_hero_style','field_62051d9dc5324'),(55065,39191,'hero_image_pos_x','right'),(55066,39191,'_hero_image_pos_x','field_62ec3d05390bb'),(55067,39191,'hero_image_pos_y','top'),(55068,39191,'_hero_image_pos_y','field_62ec3d05390bc'),(55069,39191,'hero_image_pos',''),(55070,39191,'_hero_image_pos','field_62ec3d05390ba'),(55071,39191,'hero_title','About Us'),(55072,39191,'_hero_title','field_617571fe285e8'),(55073,39191,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(55074,39191,'_hero_text','field_6175723c285e9'),(55075,39191,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(55076,39191,'_hero_actions_0_button','field_61757281285eb'),(55077,39191,'hero_actions','1'),(55078,39191,'_hero_actions','field_61757270285ea'),(55079,39191,'hero_icon',''),(55080,39191,'_hero_icon','field_61a6182199d03'),(55081,39191,'fft_hide_from_listings','0'),(55082,39191,'_fft_hide_from_listings','field_61f1320446ab2'),(55083,39191,'fft_page_format','default'),(55084,39191,'_fft_page_format','field_61ae213f1f218'),(55085,39191,'fft_hide_nav','0'),(55086,39191,'_fft_hide_nav','field_635bd5e43527c'),(55087,39191,'fft_hide_header_call_to_action','0'),(55088,39191,'_fft_hide_header_call_to_action','field_635bd6723527d'),(55089,39191,'fft_page_sitemap','0'),(55090,39191,'_fft_page_sitemap','field_61af9b34e8181'),(55091,39191,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(55092,39191,'_blocks','field_6176696113096'),(55093,39191,'blocks_1_acfe_flexible_toggle',''),(55094,39191,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(55095,39191,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(55096,39191,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(55097,39191,'blocks_1_options_theme','#f5f5f5'),(55098,39191,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(55099,39191,'blocks_1_options_reverse','0'),(55100,39191,'_blocks_1_options_reverse','field_61768049bb8ac'),(55101,39191,'blocks_1_options',''),(55102,39191,'_blocks_1_options','field_617682517c334'),(55103,39191,'blocks_1_split_5050_image','35276'),(55104,39191,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(55105,39191,'blocks_1_split_5050_video',''),(55106,39191,'_blocks_1_split_5050_video','field_6239f3160848a'),(55107,39191,'blocks_1_split_5050_content_title',''),(55108,39191,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(55109,39191,'blocks_1_split_5050_content_heading','What we do'),(55110,39191,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(55111,39191,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(55112,39191,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(55113,39191,'blocks_1_split_5050_content_actions',''),(55114,39191,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(55115,39191,'blocks_1_split_5050_content',''),(55116,39191,'_blocks_1_split_5050_content','field_61767afceb8ba'),(55117,39191,'blocks_2_acfe_flexible_toggle',''),(55118,39191,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(55119,39191,'blocks_2_acfe_flexible_layout_title','Video'),(55120,39191,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(55121,39191,'blocks_2_size','large'),(55122,39191,'_blocks_2_size','field_6487038f297c1'),(55123,39191,'blocks_2_row_content_title',''),(55124,39191,'_blocks_2_row_content_title','field_64870132a865d'),(55125,39191,'blocks_2_row_content_heading',''),(55126,39191,'_blocks_2_row_content_heading','field_64870142a865e'),(55127,39191,'blocks_2_row_content_text',''),(55128,39191,'_blocks_2_row_content_text','field_64870148a865f'),(55129,39191,'blocks_2_row_content',''),(55130,39191,'_blocks_2_row_content','field_6487008ba865c'),(55131,39191,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(55132,39191,'_blocks_2_video_src','field_6193c4a98ec07'),(55133,39191,'blocks_2_video_thumbnail','39175'),(55134,39191,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(55135,39191,'blocks_3_acfe_flexible_toggle',''),(55136,39191,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(55137,39191,'blocks_3_acfe_flexible_layout_title','Cards'),(55138,39191,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(55139,39191,'blocks_3_options_theme','#ffffff'),(55140,39191,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(55141,39191,'blocks_3_options_format','grid'),(55142,39191,'_blocks_3_options_format','field_617a7b15245b5'),(55143,39191,'blocks_3_options_style','default'),(55144,39191,'_blocks_3_options_style','field_6278ffb63484a'),(55145,39191,'blocks_3_options_cards_current_listing','0'),(55146,39191,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(55147,39191,'blocks_3_options_cards_content','custom'),(55148,39191,'_blocks_3_options_cards_content','field_617aba6122688'),(55149,39191,'blocks_3_options',''),(55150,39191,'_blocks_3_options','field_617a7b15245b3'),(55151,39191,'blocks_3_cards_custom_0_image',''),(55152,39191,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(55153,39191,'blocks_3_cards_custom_0_title','Our Team'),(55154,39191,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(55155,39191,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(55156,39191,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(55157,39191,'blocks_3_cards_custom_0_link',''),(55158,39191,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(55159,39191,'blocks_3_cards_custom_1_image',''),(55160,39191,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(55161,39191,'blocks_3_cards_custom_1_title','Our Partners'),(55162,39191,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(55163,39191,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(55164,39191,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(55165,39191,'blocks_3_cards_custom_1_link',''),(55166,39191,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(55167,39191,'blocks_3_cards_custom','2'),(55168,39191,'_blocks_3_cards_custom','field_6194cbf84d386'),(55169,39191,'_thumbnail_id','39186'),(55170,39191,'__thumbnail_id','field_617570855ddaf'),(55171,39191,'blocks_0_acfe_flexible_toggle',''),(55172,39191,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(55173,39191,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(55174,39191,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(55175,39191,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(55176,39191,'_blocks_0_content','field_6193c9b5eac84'),(55177,39192,'hero_style','default'),(55178,39192,'_hero_style','field_62051d9dc5324'),(55179,39192,'hero_image_pos_x','right'),(55180,39192,'_hero_image_pos_x','field_62ec3d05390bb'),(55181,39192,'hero_image_pos_y','top'),(55182,39192,'_hero_image_pos_y','field_62ec3d05390bc'),(55183,39192,'hero_image_pos',''),(55184,39192,'_hero_image_pos','field_62ec3d05390ba'),(55185,39192,'hero_title','About Us'),(55186,39192,'_hero_title','field_617571fe285e8'),(55187,39192,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(55188,39192,'_hero_text','field_6175723c285e9'),(55189,39192,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(55190,39192,'_hero_actions_0_button','field_61757281285eb'),(55191,39192,'hero_actions','1'),(55192,39192,'_hero_actions','field_61757270285ea'),(55193,39192,'hero_icon',''),(55194,39192,'_hero_icon','field_61a6182199d03'),(55195,39192,'fft_hide_from_listings','0'),(55196,39192,'_fft_hide_from_listings','field_61f1320446ab2'),(55197,39192,'fft_page_format','default'),(55198,39192,'_fft_page_format','field_61ae213f1f218'),(55199,39192,'fft_hide_nav','0'),(55200,39192,'_fft_hide_nav','field_635bd5e43527c'),(55201,39192,'fft_hide_header_call_to_action','0'),(55202,39192,'_fft_hide_header_call_to_action','field_635bd6723527d'),(55203,39192,'fft_page_sitemap','0'),(55204,39192,'_fft_page_sitemap','field_61af9b34e8181'),(55205,39192,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(55206,39192,'_blocks','field_6176696113096'),(55207,39192,'blocks_1_acfe_flexible_toggle',''),(55208,39192,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(55209,39192,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(55210,39192,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(55211,39192,'blocks_1_options_theme','#b61234'),(55212,39192,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(55213,39192,'blocks_1_options_reverse','0'),(55214,39192,'_blocks_1_options_reverse','field_61768049bb8ac'),(55215,39192,'blocks_1_options',''),(55216,39192,'_blocks_1_options','field_617682517c334'),(55217,39192,'blocks_1_split_5050_image','35276'),(55218,39192,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(55219,39192,'blocks_1_split_5050_video',''),(55220,39192,'_blocks_1_split_5050_video','field_6239f3160848a'),(55221,39192,'blocks_1_split_5050_content_title',''),(55222,39192,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(55223,39192,'blocks_1_split_5050_content_heading','What we do'),(55224,39192,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(55225,39192,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(55226,39192,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(55227,39192,'blocks_1_split_5050_content_actions',''),(55228,39192,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(55229,39192,'blocks_1_split_5050_content',''),(55230,39192,'_blocks_1_split_5050_content','field_61767afceb8ba'),(55231,39192,'blocks_2_acfe_flexible_toggle',''),(55232,39192,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(55233,39192,'blocks_2_acfe_flexible_layout_title','Video'),(55234,39192,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(55235,39192,'blocks_2_size','large'),(55236,39192,'_blocks_2_size','field_6487038f297c1'),(55237,39192,'blocks_2_row_content_title',''),(55238,39192,'_blocks_2_row_content_title','field_64870132a865d'),(55239,39192,'blocks_2_row_content_heading',''),(55240,39192,'_blocks_2_row_content_heading','field_64870142a865e'),(55241,39192,'blocks_2_row_content_text',''),(55242,39192,'_blocks_2_row_content_text','field_64870148a865f'),(55243,39192,'blocks_2_row_content',''),(55244,39192,'_blocks_2_row_content','field_6487008ba865c'),(55245,39192,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(55246,39192,'_blocks_2_video_src','field_6193c4a98ec07'),(55247,39192,'blocks_2_video_thumbnail','39175'),(55248,39192,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(55249,39192,'blocks_3_acfe_flexible_toggle',''),(55250,39192,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(55251,39192,'blocks_3_acfe_flexible_layout_title','Cards'),(55252,39192,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(55253,39192,'blocks_3_options_theme','#ffffff'),(55254,39192,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(55255,39192,'blocks_3_options_format','grid'),(55256,39192,'_blocks_3_options_format','field_617a7b15245b5'),(55257,39192,'blocks_3_options_style','default'),(55258,39192,'_blocks_3_options_style','field_6278ffb63484a'),(55259,39192,'blocks_3_options_cards_current_listing','0'),(55260,39192,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(55261,39192,'blocks_3_options_cards_content','custom'),(55262,39192,'_blocks_3_options_cards_content','field_617aba6122688'),(55263,39192,'blocks_3_options',''),(55264,39192,'_blocks_3_options','field_617a7b15245b3'),(55265,39192,'blocks_3_cards_custom_0_image',''),(55266,39192,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(55267,39192,'blocks_3_cards_custom_0_title','Our Team'),(55268,39192,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(55269,39192,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(55270,39192,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(55271,39192,'blocks_3_cards_custom_0_link',''),(55272,39192,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(55273,39192,'blocks_3_cards_custom_1_image',''),(55274,39192,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(55275,39192,'blocks_3_cards_custom_1_title','Our Partners'),(55276,39192,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(55277,39192,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(55278,39192,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(55279,39192,'blocks_3_cards_custom_1_link',''),(55280,39192,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(55281,39192,'blocks_3_cards_custom','2'),(55282,39192,'_blocks_3_cards_custom','field_6194cbf84d386'),(55283,39192,'_thumbnail_id','39186'),(55284,39192,'__thumbnail_id','field_617570855ddaf'),(55285,39192,'blocks_0_acfe_flexible_toggle',''),(55286,39192,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(55287,39192,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(55288,39192,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(55289,39192,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(55290,39192,'_blocks_0_content','field_6193c9b5eac84'),(55405,39168,'hide_hero','0'),(55406,39168,'_hide_hero','field_66a2380fcda39'),(55412,3,'_oembed_4b6e01defa6bbe35f8e378b37d840c8c','{{unknown}}'),(55413,3,'hide_hero','0'),(55414,3,'_hide_hero','field_66a2380fcda39'),(55416,3,'blocks_0_acfe_flexible_toggle',''),(55417,3,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(55418,3,'blocks_0_acfe_flexible_layout_title','Text Block'),(55419,3,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(55420,3,'blocks_0_options_theme','#ffffff'),(55421,3,'_blocks_0_options_theme','field_6176830e2ad17'),(55422,3,'blocks_0_options',''),(55423,3,'_blocks_0_options','field_6176830e2ad16'),(55424,3,'blocks_0_text_block_heading',''),(55425,3,'_blocks_0_text_block_heading','field_617669d413097'),(55426,3,'blocks_0_text_block_content','We are FUTURE FIT TRAINING LIMITED. We’re a company registered in England and Wales with company number 04381540, whose registered address is C/O Azets Carnac Place, Cams Hall Estate, Fareham, Hampshire, United Kingdom, PO16 8UY. In this privacy notice we will refer to ourselves as ‘<strong>we</strong>’, ‘<strong>us</strong>’ or ‘<strong>our</strong>’. We are the Data Controller of the Personal Information we collect, hold, and use about you, as explained in this notice.\r\n\r\nYou can contact us in any of the following ways:\r\n\r\n<a href=\"mailto:info@futurefit.co.uk\" target=\"_blank\" rel=\"noopener\">a. by emailing us at </a>info@futurefit.co.uk; or\r\n\r\nb. by writing to us at Future Fit Training, C/O Azets Carnac Place, Cams Hall Estate, Fareham, Hampshire, United Kingdom, PO16 8UY.\r\n\r\nWe take the privacy, including the security, of Personal Information we hold about you seriously. This privacy notice tells you how we collect Personal Information about you and how we use that Personal Information. You should read this privacy notice carefully so that you know and can understand why and how we use the Personal Information we collect and hold about you.\r\n\r\nWe have appointed Sian Roberts as our Data Protection Officer. You can contact them using the details set out above.\r\n\r\nWe may issue you with other privacy notices from time to time, including when we collect Personal Information from you. This privacy notice is intended to supplement these and does not override them.\r\n\r\nWe may update this privacy notice from time to time. This version was last updated on 21st March 2024.\r\n<ol>\r\n 	<li data-list-text=\"1.\"><strong><a name=\"bookmark1\"></a>‌Key definitions</strong>\r\n<ol>\r\n 	<li data-list-text=\"1.1.\">The Key terms that we use throughout this privacy notice are defined below, for ease:</li>\r\n 	<li data-list-text=\"1.2.\">Data Controller: under UK data protection law, this is the organisation or person responsible for deciding how Personal Information is collected and stored and how it is used.</li>\r\n 	<li data-list-text=\"1.3.\">Data Processor: a Data Controller may appoint another organisation or person to carry out certain tasks on its behalf in relation to the Personal Information. (This may include hosting of a site containing Personal Information, for example, or providing an email marketing service that facilitates mass distribution of marketing material to a Data Controller’s customer base).</li>\r\n 	<li data-list-text=\"1.4.\">Personal Information: any information from which a living individual can be identified. It does not apply to information that has been anonymised.</li>\r\n 	<li data-list-text=\"1.5.\">Special Information: certain very sensitive Personal Information requires extra protection under data protection law. Sensitive data includes information relating to health, racial and ethnic origin, political opinions, religious and similar beliefs, trade union membership, sex life, and sexual orientation. It also includes genetic information and biometric information.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"2.\"><strong><a name=\"bookmark2\"></a>‌Details of Personal Information that we collect and hold about you</strong>\r\n<ol>\r\n 	<li data-list-text=\"2.1.\">Set out in the table below are the general categories and details of retention periods in relation to those categories and, in each case, the types of Personal Information that we collect, use, and hold about you.\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>General category</td>\r\n<td>Types of Personal Information in that category</td>\r\n</tr>\r\n<tr>\r\n<td>Identity information</td>\r\n<td>This is information relating to your identity such as your name (including any previous names and any titles you use), gender, marital status, and date of birth.</td>\r\n</tr>\r\n<tr>\r\n<td>Contact information</td>\r\n<td>This is information relating to your contact details such as email address, addresses, phone numbers.</td>\r\n</tr>\r\n<tr>\r\n<td>Account information</td>\r\n<td>This is information relating to your account with us (including username and password).</td>\r\n</tr>\r\n<tr>\r\n<td>Payment information</td>\r\n<td>This is information relating to the methods by which you provide payment to us such as bank account details, credit or debit card details and details of any payments (including amounts and dates) that are made between us.</td>\r\n</tr>\r\n<tr>\r\n<td>Transaction information</td>\r\n<td>This is information relating to transactions between us such as details of the services, and/or digital content provided to you as well as any returns details.</td>\r\n</tr>\r\n<tr>\r\n<td>Survey information</td>\r\n<td>This is information that we have collected from you or that you have provided to us in respect of surveys and feedback.</td>\r\n</tr>\r\n<tr>\r\n<td>Marketing information</td>\r\n<td>This is information relating to your marketing and communications preferences.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Website, device and technical information</td>\r\n<td>This is information about your use of our website and technical data which we collect (including your IP address, the type of browser you are using and the version, the operating system you are using, details about the time zone and location settings on the device, and other information we receive about your device).</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</li>\r\n 	<li data-list-text=\"2.2.\">You can contact us (using the details at the beginning of this notice) to request a copy of our retention policy, which sets out how long different types of Personal Information will be kept for.</li>\r\n 	<li data-list-text=\"2.3.\">The types of Personal Information we collect about you may differ from person to person, depending on who you are and the relationship between us.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"3.\"><strong><a name=\"bookmark3\"></a>‌Details of Special Information that we collect and hold about you</strong>\r\n<ol>\r\n 	<li data-list-text=\"3.1.\">Special Information is explained in Section 1 above. We may collect and hold the following types of special information about you when you voluntarily provide this to us, to ensure we can offer you the necessary support and/or adjustments to fully benefit from our services:a. ethnic origin b. religion;c. health;</li>\r\n 	<li data-list-text=\"3.2.\">We do not collect information from you relating to criminal convictions or offences.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"4.\"><strong><a name=\"bookmark4\"></a>‌Details of how and why we use Personal Information</strong>\r\n<ol>\r\n 	<li data-list-text=\"4.1.\">We are only able to use your Personal Information for certain legal reasons set out in data protection law. There are legal reasons under data protection law other than those listed below; but, in most cases, we will use your Personal Information for the following legal reasons:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Contract Reason: this is in order to perform our obligations to you under a contract we have entered into with you;</li>\r\n 	<li data-list-text=\"b.\">Legitimate Interests Reason: this is where the use of your Personal Information is necessary for our (or a third party’s) legitimate interests, so long as that legitimate interest does not override your fundamental rights, freedoms, or interests;</li>\r\n 	<li data-list-text=\"c.\">Legal Obligation Reason: this is where we must use your Personal Information in order to perform a legal obligation by which we are bound; and</li>\r\n 	<li data-list-text=\"d.\">Consent Reason: this is where you have given us your consent to use your Personal Information for a specific reason or specific reasons.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"4.2.\">As explained in Section 3 above, there are more sensitive types of Personal Information that require higher levels of protection. If we process such sensitive types of Personal Information, we will usually do so in the following circumstances:</li>\r\n 	<li data-list-text=\"4.2.\">a. we have your explicit consent;b. where it is necessary in relation to legal claims;\r\n\r\nc. where you have made the Personal Information public.</li>\r\n 	<li data-list-text=\"4.3.\">So that we are able to provide you with services, we will need your Personal Information. If you do not provide us with the required Personal Information, we may be prevented from supplying the services to you.</li>\r\n 	<li data-list-text=\"4.4.\">It is important that you keep your Personal Information up to date. If any of your Personal Information changes, please contact us as soon as possible to let us know. If you do not contact us to keep your information updated, we may be prevented from supplying the services to you. (For example, if you change address and do not tell us, your goods may be delivered to the wrong address).</li>\r\n 	<li data-list-text=\"4.5.\">Where we rely on consent for a specific purpose as the legal reason for processing your Personal Information, you have the right under data protection law to withdraw your consent at any time. If you wish to withdraw your consent, please contact us using the details set out at the beginning of this notice. If we receive a request from you withdrawing your consent to a specific purpose, we will stop processing your Personal Information for that purpose unless we have another legal reason for processing your Personal Information, in which case we will confirm that reason to you.</li>\r\n 	<li data-list-text=\"4.6.\">We explain in the table below the different purposes for which we use your Personal Information and, in each case, the legal reason(s) allowing us to use your Personal Information. Please also note the following:\r\n<ol>\r\n 	<li data-list-text=\"a.\">if we use the Legitimate Interests Reason as the legal reason for which we can use your Personal Information, we have also explained what that legitimate interest is; and</li>\r\n 	<li data-list-text=\"b.\">for some of the purposes, we may have listed more than one legal reason on which we can use your Personal Information, because the legal reason may be different in different circumstances. If you need confirmation of the specific legal reason that we are relying on to use your Personal Information for that purpose, please contact us using the contact details set out at the start of this privacy notice.\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Purpose</td>\r\n<td>Legal reason(s) for using the Personal Information</td>\r\n</tr>\r\n<tr>\r\n<td>To register you as a customer</td>\r\n<td>Contract Reason\r\n\r\nLegitimate Interests Reason (in order to offer you other goods, services, and/or digital content which helps us to develop our business)</td>\r\n</tr>\r\n<tr>\r\n<td>To process your order, which includes taking payment from you, advising you of any updates in relation to your order, or any enforcement action against you to recover payment</td>\r\n<td>Contract Reason\r\n\r\nLegitimate Interests Reason (in order to recover money that you owe us)</td>\r\n</tr>\r\n<tr>\r\n<td>To manage our contract with you and to notify you of any changes</td>\r\n<td>Contract Reason\r\n\r\nLegal Obligation Reason</td>\r\n</tr>\r\n<tr>\r\n<td>To comply with audit and accounting matters</td>\r\n<td>Legal Obligation Reason</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>For record-keeping, including in relation to any guarantees or warranties provided as part of the sale of goods, services, and/or digital content</td>\r\n<td>Contract Reason\r\n\r\nLegal Obligation Reason</td>\r\n</tr>\r\n<tr>\r\n<td>To improve the goods, services, and/or digital content that we supply</td>\r\n<td>Legitimate Interests Reason (in order to improve the goods, services, and/or digital content for future customers and to grow our business)</td>\r\n</tr>\r\n<tr>\r\n<td>To recommend and send communications to you about goods, services, and/or digital content that you may be interested in. (More details about marketing are set out in section 11 below).</td>\r\n<td>Legitimate Interests Reason (in order to grow our business) Consent Reason</td>\r\n</tr>\r\n<tr>\r\n<td>To ensure the smooth running and correct operation of our website</td>\r\n<td>Legitimate Interests Reason (to ensure our website runs correctly)</td>\r\n</tr>\r\n<tr>\r\n<td>To understand how customers and visitors to our website use the website and interact with it via data analysis</td>\r\n<td>Legitimate Interests Reason (to improve and grow our business, including our website, and to understand our customers\' needs, desires, and requirements)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"4.7.\">Sometimes we may anonymise Personal Information you provide to us so that you can no longer be identified from it and use this for our own purposes. In addition, sometimes we may use some of the information you provide to us together with other people’s information to give us statistical data for our own purposes. Because this is grouped together with other information and you are not identifiable from that combined data, we are able to use this.</li>\r\n 	<li data-list-text=\"4.8.\">Under data protection law, we can only use your Personal Information for the purposes we have told you about unless we consider that the new purpose is compatible with the purpose(s) we told you about. If we want to use your Personal Information for a different purpose that we do not think is compatible with the purpose(s) we told you about, we will contact you to explain this and provide you with a supplementary privacy notice.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"5.\"><strong><a name=\"bookmark5\"></a>‌Details of how we collect Personal Information and Special Information</strong>\r\n<ol>\r\n 	<li data-list-text=\"5.1.\">We usually collect identity information, contact information, payment information, transaction information, survey information, marketing information, special Information; directly from you when you fill out a form, survey or questionnaire, purchase services, and/or digital content from us, contact us by email, phone, in writing, or otherwise. This includes the Personal Information that you provide to us when you subscribe to our mailing list or enter a competition or survey.</li>\r\n 	<li data-list-text=\"5.2.\">We may receive some of your Personal Information from third parties or publicly available sources. This includes:\r\n<ol>\r\n 	<li data-list-text=\"a.\">contact information and payment information from our other companies under Future Fit Group such as Future Fit For Business, iCareiMove, Biomechanics Education or Future Fit Group;</li>\r\n 	<li data-list-text=\"b.\">identity information and contact information from our contracted partnerships such as your employer or organisation contracting us to provide services to you;</li>\r\n 	<li data-list-text=\"c.\">website, device and technical information from third parties such as analytics providers (e.g. Google);</li>\r\n 	<li data-list-text=\"d.\">any other methods by which you collect personal information.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"5.3.\">We may also receive website, device, and technical information automatically from technologies such as cookies that are installed on our website. To find out more about these, please see our cookie policy, which is available on our website.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"6.\"><strong><a name=\"bookmark6\"></a>‌Details about who Personal Information may be shared with</strong>\r\n<ol>\r\n 	<li data-list-text=\"6.1.\">We may need to share your Personal Information with other organisations or people. These organisations include:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Other companies in our group (who may act as joint Data Controllers or as Data Processors on our behalf) and who describe the services they provide that require them to have access to Personal Information, e.g. IT services, or describe the reasons it may be shared with them, e.g. for management reporting.</li>\r\n 	<li data-list-text=\"b.\">Third parties who are not part of our group. These may include:\r\n<ol>\r\n 	<li data-list-text=\"i.\">Suppliers, such as IT support services, payment providers, administration providers, marketing agencies, who are based in UK;</li>\r\n 	<li data-list-text=\"ii.\">Government bodies and regulatory bodies, such as HMRC, fraud prevention agencies, who are based in UK;</li>\r\n 	<li data-list-text=\"iii.\">Our advisers: such as lawyers, accountants, auditors, insurance companies who are based in UK;</li>\r\n 	<li data-list-text=\"iv.\">Our bankers who are based in UK;</li>\r\n 	<li data-list-text=\"v.\">Credit reference agencies who are based in UK;</li>\r\n 	<li data-list-text=\"vi.\">Email platforms which are based in UK;</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"c.\">Any organisations that propose to purchase our business and assets, in which case we may disclose your Personal Information to the potential purchaser.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"6.2.\">Depending on the circumstances, the organisations, or people who we share your Personal Information with will be acting as either Data Processors or Data Controllers. Where we share your Personal Information with a Data Processor, we will ensure that we have in place contracts that set out the responsibilities and obligations of us and them, including in respect of security of Personal Information.</li>\r\n 	<li data-list-text=\"6.3.\">We do not sell or trade any of the Personal Information that you have provided to us.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"7.\"><strong><a name=\"bookmark7\"></a>‌Details about transfers to countries outside of the EEA</strong>\r\n<ol>\r\n 	<li data-list-text=\"7.1.\">If any transfer of Personal Information by us will mean that your Personal Information is transferred outside of the EEA, we will ensure that safeguards are in place so that a similar degree of protection is given to your Personal Information as is given to it within the EEA. We will also ensure that the transfer is made in compliance with data protection laws (including, where relevant, any exceptionsto the general rules on transferring Personal Information outside of the EEA that are available to us – these are known as ‘derogations’ under data protection laws). We may need to transfer personal information outside of the EEA to other organisations within our group or to the third parties listed above in Section 6 who may be located outside of the EEA.</li>\r\n 	<li data-list-text=\"7.2.\">The safeguards set out in data protection laws for transferring Personal Information outside of the EEA include:</li>\r\n 	<li data-list-text=\"7.2.\">a. where the transfer is to a country or territory that the EU Commission has approved as ensuring an adequate level of protection;\r\n<ol>\r\n 	<li data-list-text=\"b.\">where Personal Information is transferred to another organisation within our group, under an agreement covering this situation, which is known as \'binding corporate rules\';</li>\r\n 	<li data-list-text=\"c.\">having in place a standard set of clauses that have been approved by the EU Commission;</li>\r\n 	<li data-list-text=\"d.\">compliance with an approved code of conduct by a relevant data protection supervisory authority (in the UK, this is the Information Commissioner’s Office (<strong>ICO</strong>);</li>\r\n 	<li data-list-text=\"e.\">certification with an approved certification mechanism;</li>\r\n 	<li data-list-text=\"f.\">where the EU Commission has approved specific arrangements in respect of certain countries, such as the Data Privacy Framework arrangement (or any successor arrangements, if applicable) in place with the US.</li>\r\n</ol>\r\n</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"8.\"><strong><a name=\"bookmark8\"></a>‌Automated decision-making</strong>\r\n<ol>\r\n 	<li data-list-text=\"8.1.\">‘Automated decision making’ is where a decision is automatically made without any human involvement. Under data protection laws, this includes profiling. ‘Profiling’ is the automated processing of Personal Information to evaluate or analyse certain personal aspects of a person (such as their behaviour, characteristics, interests or preferences).</li>\r\n 	<li data-list-text=\"8.2.\">Data protection laws place restrictions upon us if we carry out any automated decision-making (including profiling) that produces a legal effect or similarly significant effect on you.</li>\r\n 	<li data-list-text=\"8.3.\">We do not carry out any automated decision making (including profiling) that produces a legal effect or similarly significant effect on you. If we decide to do this, we will notify you and we will inform you of the legal reason we are able to do this.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"9.\"><strong><a name=\"bookmark9\"></a>‌Your rights under data protection law</strong>\r\n<ol>\r\n 	<li data-list-text=\"9.1.\">Under data protection laws you have certain rights in relation to your Personal Information, as follows:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Right to request access: (this is often called ‘subject access’). This is the right to obtain from us a copy of the Personal Information that we hold about you. We must also provide you with certain other information in response to these requests to help you understand how your Personal Information is being used.</li>\r\n 	<li data-list-text=\"b.\">Right to correction: this is the right to request that any incorrect Personal Information is corrected, and that any incomplete Personal Information is completed.</li>\r\n 	<li data-list-text=\"c.\">Right to erasure: (this is often called the \'right to be forgotten\'). This right only applies in certain circumstances. Where it does apply, you have the right to request that we erase all of your Personal Information.</li>\r\n 	<li data-list-text=\"d.\">Right to restrict processing: this right only applies in certain circumstances. Where it applies, you have the right to request that we restrict the processing of your Personal Information.</li>\r\n 	<li data-list-text=\"e.\">Right to data portability: this right allows you to request that we transfer your Personal Information to someone else.</li>\r\n 	<li data-list-text=\"f.\">Right to object: you have the right to object to us processing your Personal Information for direct marketing purposes. You also have the right to object to us processing Personal Information where our legal reason for doing so is the Legitimate Interests Reason (see Section 4 above) and there is something about your particular situation that means that you want to object to us processing your Personal Information. In certain circumstances you have the right to object to processing where such processing consists of profiling (including profiling for direct marketing).</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"9.2.\">In addition to the rights set out in Section 9, where we rely on consent as the legal reason for using your Personal Information, you have the right to withdraw your consent. Further details about this are set out in Section 4.</li>\r\n 	<li data-list-text=\"9.3.\">If you want to exercise any of the above rights in relation to your Personal Information, please contact us using the details set out at the beginning of this notice. If you make a request, please note:</li>\r\n 	<li data-list-text=\"9.3.\">a. we may need certain information from you so that we can verify your identity;b. we do not charge a fee for exercising your rights unless your request is unfounded or excessive; and\r\n\r\nc. if your request is unfounded or excessive, we may refuse to deal with your request.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"10.\"><strong><a name=\"bookmark10\"></a>‌Marketing</strong>\r\n<ol>\r\n 	<li data-list-text=\"10.1.\">You may receive marketing from us about similar goods and services, where either you have consented to this, or we have another legal reason by which we can contact you for marketing purposes.</li>\r\n 	<li data-list-text=\"10.2.\">However, we will give you the opportunity to manage how or if we market to you. In any email we send you, we provide a link to either unsubscribe or opt out, or to change your marketing preferences. To change your marketing preferences and/or to request that we stop processing your Personal Information for marketing purposes, you can always contact us on the details set out at the beginning of this notice.</li>\r\n 	<li data-list-text=\"10.3.\">If you request that we stop marketing to you, this will not prevent us from sending communications to you that are not to do with marketing, for example in relation to services that you have purchased from us.</li>\r\n 	<li data-list-text=\"10.4.\">We do not pass your Personal Information on to any third parties for marketing purposes.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"11.\"><strong><a name=\"bookmark11\"></a>‌Complaints</strong>\r\n<ol>\r\n 	<li data-list-text=\"11.1.\">If you are unhappy about the way that we have handled or used your Personal Information, you have the right to complain to the UK supervisory authority for data protection, which is the Information Commissioner’s Office (<strong>ICO</strong>). Please contact us in the first instance if you wish to raise any queries or make a complaint in respect of our handling or use of your Personal Information, so that we have the opportunity to discuss this with you and to take steps to resolve the position. You<img src=\"FFfB%20new%20privacy%20policy_files/Image_002.png\" alt=\"image\" width=\"2\" height=\"45\" />Future Fit Group is the holding company for Future Fit Training, Future Fit for Business, Biomechanics Education Ltd, iCareiMove Ltd and Future Fit Technologies. Registered Office Address: C/O Azets, Carnac Place, Cams Hall Estate,\r\n\r\nFareham, Hampshire, United Kingdom, PO16 8UY. Company number: 13442367\r\n\r\nWebsite privacy policy\r\n\r\n8\r\n\r\nLast Edit: 16/05/2024 15:12:00\r\n\r\nRevision Number: 1 Author: Future Fit\r\n\r\ncan contact us using the details set out at the beginning of this privacy notice</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"12.\"><strong><a name=\"bookmark12\"></a>‌Third-party websites</strong>Our website may contain links to third-party websites. If you click and follow those links, they will take you to the third-party website. Those third-party websites may collect Personal Information from you, and you will need to check their privacy notices to understand how your Personal Information is collected and used by them.</li>\r\n 	<li data-list-text=\"13.\"><strong>Cookies</strong></li>\r\n</ol>\r\nWe use cookies on our website. You’ll find a notice about this on our homepage as well, which also links back to this policy. We last updated our policy on 7th May 2024.\r\n\r\nInformation about cookies\r\n\r\nA cookie is a small text file that is placed onto your computer (or other electronic device) when you access our website. There are 4 different types of cookies:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Strictly necessary cookies (required for the website to run). These allow you to do things like log in securely.</li>\r\n 	<li data-list-text=\"b.\">Performance cookies (which measure how many visitors use our site, which pages they visit and how they interact with the site). These help us to improve our website.</li>\r\n 	<li data-list-text=\"c.\">Functionality cookies (which remember specific visitor’s preferences for the way they use our site, e.g. language settings or font size).</li>\r\n 	<li data-list-text=\"d.\">Targeting/advertising cookies (these collect information about individual visitors that enable us, or third parties, to provide relevant advertisements to those who have visited our site)</li>\r\n</ol>\r\nOur website may use each type of cookie in order to:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Make your online experience more efficient and enjoyable</li>\r\n 	<li data-list-text=\"b.\">Improve our services</li>\r\n 	<li data-list-text=\"c.\">Recognise you whenever you visit this website and distinguish you from other users of our site</li>\r\n 	<li data-list-text=\"d.\">Obtain information about your preferences and use of our site</li>\r\n 	<li data-list-text=\"e.\">Provide you with advertising that is tailored to your interests</li>\r\n 	<li data-list-text=\"f.\">Carry out research and data analysis to help us to improve our content and services and to better understand our customer preferences and interests</li>\r\n</ol>\r\nYour web browser places cookies on your hard drive for record-keeping purposes and sometimes to track information about you. We have set out specific details of the cookies we use on our site in the table below.\r\n\r\nThird-party cookies\r\n\r\nLike many other websites, third parties may also set cookies on our website. These third parties are responsible for the cookies they set on our site and we have no control over them. For further information on how their cookies policies work, please visit their websites.\r\n\r\nManaging cookies\r\n\r\nYou can manage cookies yourself.\r\n\r\nYou can set your web browser to refuse cookies, delete cookies, or to alert you when cookies are being sent.\r\n\r\nYou will need to visit the web browser’s site to manage, but for ease we have provided links to popular browsers below:\r\n\r\nGoogle Chrome:\r\n\r\nhttps://support.google.com/accounts/answer/61416?co=GENIE.Platform%3DDesktop&amp;hl=en\r\n\r\nMicrosoft Firefox: https://support.mozilla.org/en-US/kb/enable-and-disable-cookies-website-preferences Microsoft Internet Explorer: https://support.microsoft.com/en-gb/help/17442/windows-internet- explorer-delete-manage-cookies\r\n\r\nApple Safari: https://support.apple.com/kb/ph21411?locale=en_US\r\n\r\n<a href=\"http://www.aboutcookies.org/\" target=\"_blank\" rel=\"noopener\">For further information about cookies and how to manage or disable them please go to: </a><a href=\"http://www.aboutcookies.org/\" target=\"_blank\" rel=\"noopener\">www.aboutcookies.org.</a>\r\n\r\nPlease also note that if you change/block cookies then:\r\n<ul>\r\n 	<li>some parts of our website may not function properly or as well as they otherwise might;</li>\r\n 	<li>changes will apply across all websites that you visit (unless you choose to block cookies only from particular websites); and</li>\r\n 	<li>the settlings that you change will only apply on the device on which you change the settings and will not apply across all other devices that you use.</li>\r\n</ul>\r\nSpecific details\r\n\r\nWe have set out in the table below details of each of the cookies on our site, a description of what they do and, where relevant, external links that provide more information about them:\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Cookie Name</td>\r\n<td>Description</td>\r\n<td>External Information (if relevant)</td>\r\n</tr>\r\n<tr>\r\n<td>Google Analytics</td>\r\n<td>We use Google Analytics to analyse the use of this website. Google Analytics generates statistical and other information about website use by means of cookies, which are stored on users\' computers. The information generated relating to our website is used to create reports about the use of the website. Google will store\r\n\r\nthis information.</td>\r\n<td><a href=\"http://www.google.com/privacypolicy.html\" target=\"_blank\" rel=\"noopener\">Google\'s privacy policy is available at: http://www.google.com/privacypolicy.html.</a></td>\r\n</tr>\r\n</tbody>\r\n</table>'),(55427,3,'_blocks_0_text_block_content','field_617669ec13098'),(55428,39194,'hero_style','default'),(55429,39194,'_hero_style','field_62051d9dc5324'),(55430,39194,'hero_image_pos_x','right'),(55431,39194,'_hero_image_pos_x','field_62ec3d05390bb'),(55432,39194,'hero_image_pos_y','top'),(55433,39194,'_hero_image_pos_y','field_62ec3d05390bc'),(55434,39194,'hero_image_pos',''),(55435,39194,'_hero_image_pos','field_62ec3d05390ba'),(55436,39194,'hero_title','Privacy Policy'),(55437,39194,'_hero_title','field_617571fe285e8'),(55438,39194,'hero_text','Our privacy policy details how we handle your data responsibly, keeping your information secure and confidential.'),(55439,39194,'_hero_text','field_6175723c285e9'),(55440,39194,'hero_actions',''),(55441,39194,'_hero_actions','field_61757270285ea'),(55442,39194,'hero_icon',''),(55443,39194,'_hero_icon','field_61a6182199d03'),(55444,39194,'fft_hide_from_listings','0'),(55445,39194,'_fft_hide_from_listings','field_61f1320446ab2'),(55446,39194,'fft_page_format','default'),(55447,39194,'_fft_page_format','field_61ae213f1f218'),(55448,39194,'fft_hide_nav','0'),(55449,39194,'_fft_hide_nav','field_635bd5e43527c'),(55450,39194,'fft_hide_header_call_to_action','0'),(55451,39194,'_fft_hide_header_call_to_action','field_635bd6723527d'),(55452,39194,'fft_page_sitemap','0'),(55453,39194,'_fft_page_sitemap','field_61af9b34e8181'),(55454,39194,'blocks','a:1:{i:0;s:10:\"text_block\";}'),(55455,39194,'_blocks','field_6176696113096'),(55456,39194,'hide_hero','0'),(55457,39194,'_hide_hero','field_66a2380fcda39'),(55458,39194,'_thumbnail_id',''),(55459,39194,'__thumbnail_id','field_617570855ddaf'),(55460,39194,'blocks_0_acfe_flexible_toggle',''),(55461,39194,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(55462,39194,'blocks_0_acfe_flexible_layout_title','Text Block'),(55463,39194,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(55464,39194,'blocks_0_options_theme','#ffffff'),(55465,39194,'_blocks_0_options_theme','field_6176830e2ad17'),(55466,39194,'blocks_0_options',''),(55467,39194,'_blocks_0_options','field_6176830e2ad16'),(55468,39194,'blocks_0_text_block_heading',''),(55469,39194,'_blocks_0_text_block_heading','field_617669d413097'),(55470,39194,'blocks_0_text_block_content','We are FUTURE FIT TRAINING LIMITED. We’re a company registered in England and Wales with company number 04381540, whose registered address is C/O Azets Carnac Place, Cams Hall Estate, Fareham, Hampshire, United Kingdom, PO16 8UY. In this privacy notice we will refer to ourselves as ‘<strong>we</strong>’, ‘<strong>us</strong>’ or ‘<strong>our</strong>’. We are the Data Controller of the Personal Information we collect, hold, and use about you, as explained in this notice.\r\n\r\nYou can contact us in any of the following ways:\r\n\r\n<a href=\"mailto:info@futurefit.co.uk\" target=\"_blank\" rel=\"noopener\">a. by emailing us at </a>info@futurefit.co.uk; or\r\n\r\nb. by writing to us at Future Fit Training, C/O Azets Carnac Place, Cams Hall Estate, Fareham, Hampshire, United Kingdom, PO16 8UY.\r\n\r\nWe take the privacy, including the security, of Personal Information we hold about you seriously. This privacy notice tells you how we collect Personal Information about you and how we use that Personal Information. You should read this privacy notice carefully so that you know and can understand why and how we use the Personal Information we collect and hold about you.\r\n\r\nWe have appointed Sian Roberts as our Data Protection Officer. You can contact them using the details set out above.\r\n\r\nWe may issue you with other privacy notices from time to time, including when we collect Personal Information from you. This privacy notice is intended to supplement these and does not override them.\r\n\r\nWe may update this privacy notice from time to time. This version was last updated on 21st March 2024.\r\n<ol>\r\n 	<li data-list-text=\"1.\"><strong><a name=\"bookmark1\"></a>‌Key definitions</strong>\r\n<ol>\r\n 	<li data-list-text=\"1.1.\">The Key terms that we use throughout this privacy notice are defined below, for ease:</li>\r\n 	<li data-list-text=\"1.2.\">Data Controller: under UK data protection law, this is the organisation or person responsible for deciding how Personal Information is collected and stored and how it is used.</li>\r\n 	<li data-list-text=\"1.3.\">Data Processor: a Data Controller may appoint another organisation or person to carry out certain tasks on its behalf in relation to the Personal Information. (This may include hosting of a site containing Personal Information, for example, or providing an email marketing service that facilitates mass distribution of marketing material to a Data Controller’s customer base).</li>\r\n 	<li data-list-text=\"1.4.\">Personal Information: any information from which a living individual can be identified. It does not apply to information that has been anonymised.</li>\r\n 	<li data-list-text=\"1.5.\">Special Information: certain very sensitive Personal Information requires extra protection under data protection law. Sensitive data includes information relating to health, racial and ethnic origin, political opinions, religious and similar beliefs, trade union membership, sex life, and sexual orientation. It also includes genetic information and biometric information.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"2.\"><strong><a name=\"bookmark2\"></a>‌Details of Personal Information that we collect and hold about you</strong>\r\n<ol>\r\n 	<li data-list-text=\"2.1.\">Set out in the table below are the general categories and details of retention periods in relation to those categories and, in each case, the types of Personal Information that we collect, use, and hold about you.\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>General category</td>\r\n<td>Types of Personal Information in that category</td>\r\n</tr>\r\n<tr>\r\n<td>Identity information</td>\r\n<td>This is information relating to your identity such as your name (including any previous names and any titles you use), gender, marital status, and date of birth.</td>\r\n</tr>\r\n<tr>\r\n<td>Contact information</td>\r\n<td>This is information relating to your contact details such as email address, addresses, phone numbers.</td>\r\n</tr>\r\n<tr>\r\n<td>Account information</td>\r\n<td>This is information relating to your account with us (including username and password).</td>\r\n</tr>\r\n<tr>\r\n<td>Payment information</td>\r\n<td>This is information relating to the methods by which you provide payment to us such as bank account details, credit or debit card details and details of any payments (including amounts and dates) that are made between us.</td>\r\n</tr>\r\n<tr>\r\n<td>Transaction information</td>\r\n<td>This is information relating to transactions between us such as details of the services, and/or digital content provided to you as well as any returns details.</td>\r\n</tr>\r\n<tr>\r\n<td>Survey information</td>\r\n<td>This is information that we have collected from you or that you have provided to us in respect of surveys and feedback.</td>\r\n</tr>\r\n<tr>\r\n<td>Marketing information</td>\r\n<td>This is information relating to your marketing and communications preferences.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Website, device and technical information</td>\r\n<td>This is information about your use of our website and technical data which we collect (including your IP address, the type of browser you are using and the version, the operating system you are using, details about the time zone and location settings on the device, and other information we receive about your device).</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</li>\r\n 	<li data-list-text=\"2.2.\">You can contact us (using the details at the beginning of this notice) to request a copy of our retention policy, which sets out how long different types of Personal Information will be kept for.</li>\r\n 	<li data-list-text=\"2.3.\">The types of Personal Information we collect about you may differ from person to person, depending on who you are and the relationship between us.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"3.\"><strong><a name=\"bookmark3\"></a>‌Details of Special Information that we collect and hold about you</strong>\r\n<ol>\r\n 	<li data-list-text=\"3.1.\">Special Information is explained in Section 1 above. We may collect and hold the following types of special information about you when you voluntarily provide this to us, to ensure we can offer you the necessary support and/or adjustments to fully benefit from our services:\r\n\r\na. ethnic origin b. religion;\r\n\r\nc. health;</li>\r\n 	<li data-list-text=\"3.2.\">We do not collect information from you relating to criminal convictions or offences.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"4.\"><strong><a name=\"bookmark4\"></a>‌Details of how and why we use Personal Information</strong>\r\n<ol>\r\n 	<li data-list-text=\"4.1.\">We are only able to use your Personal Information for certain legal reasons set out in data protection law. There are legal reasons under data protection law other than those listed below; but, in most cases, we will use your Personal Information for the following legal reasons:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Contract Reason: this is in order to perform our obligations to you under a contract we have entered into with you;</li>\r\n 	<li data-list-text=\"b.\">Legitimate Interests Reason: this is where the use of your Personal Information is necessary for our (or a third party’s) legitimate interests, so long as that legitimate interest does not override your fundamental rights, freedoms, or interests;</li>\r\n 	<li data-list-text=\"c.\">Legal Obligation Reason: this is where we must use your Personal Information in order to perform a legal obligation by which we are bound; and</li>\r\n 	<li data-list-text=\"d.\">Consent Reason: this is where you have given us your consent to use your Personal Information for a specific reason or specific reasons.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"4.2.\">As explained in Section 3 above, there are more sensitive types of Personal Information that require higher levels of protection. If we process such sensitive types of Personal Information, we will usually do so in the following circumstances:\r\n\r\na. we have your explicit consent;\r\n\r\nb. where it is necessary in relation to legal claims;\r\n\r\nc. where you have made the Personal Information public.</li>\r\n 	<li data-list-text=\"4.3.\">So that we are able to provide you with services, we will need your Personal Information. If you do not provide us with the required Personal Information, we may be prevented from supplying the services to you.</li>\r\n 	<li data-list-text=\"4.4.\">It is important that you keep your Personal Information up to date. If any of your Personal Information changes, please contact us as soon as possible to let us know. If you do not contact us to keep your information updated, we may be prevented from supplying the services to you. (For example, if you change address and do not tell us, your goods may be delivered to the wrong address).</li>\r\n 	<li data-list-text=\"4.5.\">Where we rely on consent for a specific purpose as the legal reason for processing your Personal Information, you have the right under data protection law to withdraw your consent at any time. If you wish to withdraw your consent, please contact us using the details set out at the beginning of this notice. If we receive a request from you withdrawing your consent to a specific purpose, we will stop processing your Personal Information for that purpose unless we have another legal reason for processing your Personal Information, in which case we will confirm that reason to you.</li>\r\n 	<li data-list-text=\"4.6.\">We explain in the table below the different purposes for which we use your Personal Information and, in each case, the legal reason(s) allowing us to use your Personal Information. Please also note the following:\r\n<ol>\r\n 	<li data-list-text=\"a.\">if we use the Legitimate Interests Reason as the legal reason for which we can use your Personal Information, we have also explained what that legitimate interest is; and</li>\r\n 	<li data-list-text=\"b.\">for some of the purposes, we may have listed more than one legal reason on which we can use your Personal Information, because the legal reason may be different in different circumstances. If you need confirmation of the specific legal reason that we are relying on to use your Personal Information for that purpose, please contact us using the contact details set out at the start of this privacy notice.\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Purpose</td>\r\n<td>Legal reason(s) for using the Personal Information</td>\r\n</tr>\r\n<tr>\r\n<td>To register you as a customer</td>\r\n<td>Contract Reason\r\n\r\nLegitimate Interests Reason (in order to offer you other goods, services, and/or digital content which helps us to develop our business)</td>\r\n</tr>\r\n<tr>\r\n<td>To process your order, which includes taking payment from you, advising you of any updates in relation to your order, or any enforcement action against you to recover payment</td>\r\n<td>Contract Reason\r\n\r\nLegitimate Interests Reason (in order to recover money that you owe us)</td>\r\n</tr>\r\n<tr>\r\n<td>To manage our contract with you and to notify you of any changes</td>\r\n<td>Contract Reason\r\n\r\nLegal Obligation Reason</td>\r\n</tr>\r\n<tr>\r\n<td>To comply with audit and accounting matters</td>\r\n<td>Legal Obligation Reason</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>For record-keeping, including in relation to any guarantees or warranties provided as part of the sale of goods, services, and/or digital content</td>\r\n<td>Contract Reason\r\n\r\nLegal Obligation Reason</td>\r\n</tr>\r\n<tr>\r\n<td>To improve the goods, services, and/or digital content that we supply</td>\r\n<td>Legitimate Interests Reason (in order to improve the goods, services, and/or digital content for future customers and to grow our business)</td>\r\n</tr>\r\n<tr>\r\n<td>To recommend and send communications to you about goods, services, and/or digital content that you may be interested in. (More details about marketing are set out in section 11 below).</td>\r\n<td>Legitimate Interests Reason (in order to grow our business) Consent Reason</td>\r\n</tr>\r\n<tr>\r\n<td>To ensure the smooth running and correct operation of our website</td>\r\n<td>Legitimate Interests Reason (to ensure our website runs correctly)</td>\r\n</tr>\r\n<tr>\r\n<td>To understand how customers and visitors to our website use the website and interact with it via data analysis</td>\r\n<td>Legitimate Interests Reason (to improve and grow our business, including our website, and to understand our customers\' needs, desires, and requirements)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"4.7.\">Sometimes we may anonymise Personal Information you provide to us so that you can no longer be identified from it and use this for our own purposes. In addition, sometimes we may use some of the information you provide to us together with other people’s information to give us statistical data for our own purposes. Because this is grouped together with other information and you are not identifiable from that combined data, we are able to use this.</li>\r\n 	<li data-list-text=\"4.8.\">Under data protection law, we can only use your Personal Information for the purposes we have told you about unless we consider that the new purpose is compatible with the purpose(s) we told you about. If we want to use your Personal Information for a different purpose that we do not think is compatible with the purpose(s) we told you about, we will contact you to explain this and provide you with a supplementary privacy notice.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"5.\"><strong><a name=\"bookmark5\"></a>‌Details of how we collect Personal Information and Special Information</strong>\r\n<ol>\r\n 	<li data-list-text=\"5.1.\">We usually collect identity information, contact information, payment information, transaction information, survey information, marketing information, special Information; directly from you when you fill out a form, survey or questionnaire, purchase services, and/or digital content from us, contact us by email, phone, in writing, or otherwise. This includes the Personal Information that you provide to us when you subscribe to our mailing list or enter a competition or survey.</li>\r\n 	<li data-list-text=\"5.2.\">We may receive some of your Personal Information from third parties or publicly available sources. This includes:\r\n<ol>\r\n 	<li data-list-text=\"a.\">contact information and payment information from our other companies under Future Fit Group such as Future Fit For Business, iCareiMove, Biomechanics Education or Future Fit Group;</li>\r\n 	<li data-list-text=\"b.\">identity information and contact information from our contracted partnerships such as your employer or organisation contracting us to provide services to you;</li>\r\n 	<li data-list-text=\"c.\">website, device and technical information from third parties such as analytics providers (e.g. Google);</li>\r\n 	<li data-list-text=\"d.\">any other methods by which you collect personal information.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"5.3.\">We may also receive website, device, and technical information automatically from technologies such as cookies that are installed on our website. To find out more about these, please see our cookie policy, which is available on our website.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"6.\"><strong><a name=\"bookmark6\"></a>‌Details about who Personal Information may be shared with</strong>\r\n<ol>\r\n 	<li data-list-text=\"6.1.\">We may need to share your Personal Information with other organisations or people. These organisations include:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Other companies in our group (who may act as joint Data Controllers or as Data Processors on our behalf) and who describe the services they provide that require them to have access to Personal Information, e.g. IT services, or describe the reasons it may be shared with them, e.g. for management reporting.</li>\r\n 	<li data-list-text=\"b.\">Third parties who are not part of our group. These may include:\r\n<ol>\r\n 	<li data-list-text=\"i.\">Suppliers, such as IT support services, payment providers, administration providers, marketing agencies, who are based in UK;</li>\r\n 	<li data-list-text=\"ii.\">Government bodies and regulatory bodies, such as HMRC, fraud prevention agencies, who are based in UK;</li>\r\n 	<li data-list-text=\"iii.\">Our advisers: such as lawyers, accountants, auditors, insurance companies who are based in UK;</li>\r\n 	<li data-list-text=\"iv.\">Our bankers who are based in UK;</li>\r\n 	<li data-list-text=\"v.\">Credit reference agencies who are based in UK;</li>\r\n 	<li data-list-text=\"vi.\">Email platforms which are based in UK;</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"c.\">Any organisations that propose to purchase our business and assets, in which case we may disclose your Personal Information to the potential purchaser.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"6.2.\">Depending on the circumstances, the organisations, or people who we share your Personal Information with will be acting as either Data Processors or Data Controllers. Where we share your Personal Information with a Data Processor, we will ensure that we have in place contracts that set out the responsibilities and obligations of us and them, including in respect of security of Personal Information.</li>\r\n 	<li data-list-text=\"6.3.\">We do not sell or trade any of the Personal Information that you have provided to us.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"7.\"><strong><a name=\"bookmark7\"></a>‌Details about transfers to countries outside of the EEA</strong>\r\n<ol>\r\n 	<li data-list-text=\"7.1.\">If any transfer of Personal Information by us will mean that your Personal Information is transferred outside of the EEA, we will ensure that safeguards are in place so that a similar degree of protection is given to your Personal Information as is given to it within the EEA. We will also ensure that the transfer is made in compliance with data protection laws (including, where relevant, any exceptions\r\n\r\nto the general rules on transferring Personal Information outside of the EEA that are available to us – these are known as ‘derogations’ under data protection laws). We may need to transfer personal information outside of the EEA to other organisations within our group or to the third parties listed above in Section 6 who may be located outside of the EEA.</li>\r\n 	<li data-list-text=\"7.2.\">The safeguards set out in data protection laws for transferring Personal Information outside of the EEA include:\r\n\r\na. where the transfer is to a country or territory that the EU Commission has approved as ensuring an adequate level of protection;\r\n<ol>\r\n 	<li data-list-text=\"b.\">where Personal Information is transferred to another organisation within our group, under an agreement covering this situation, which is known as \'binding corporate rules\';</li>\r\n 	<li data-list-text=\"c.\">having in place a standard set of clauses that have been approved by the EU Commission;</li>\r\n 	<li data-list-text=\"d.\">compliance with an approved code of conduct by a relevant data protection supervisory authority (in the UK, this is the Information Commissioner’s Office (<strong>ICO</strong>);</li>\r\n 	<li data-list-text=\"e.\">certification with an approved certification mechanism;</li>\r\n 	<li data-list-text=\"f.\">where the EU Commission has approved specific arrangements in respect of certain countries, such as the Data Privacy Framework arrangement (or any successor arrangements, if applicable) in place with the US.</li>\r\n</ol>\r\n</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"8.\"><strong><a name=\"bookmark8\"></a>‌Automated decision-making</strong>\r\n<ol>\r\n 	<li data-list-text=\"8.1.\">‘Automated decision making’ is where a decision is automatically made without any human involvement. Under data protection laws, this includes profiling. ‘Profiling’ is the automated processing of Personal Information to evaluate or analyse certain personal aspects of a person (such as their behaviour, characteristics, interests or preferences).</li>\r\n 	<li data-list-text=\"8.2.\">Data protection laws place restrictions upon us if we carry out any automated decision-making (including profiling) that produces a legal effect or similarly significant effect on you.</li>\r\n 	<li data-list-text=\"8.3.\">We do not carry out any automated decision making (including profiling) that produces a legal effect or similarly significant effect on you. If we decide to do this, we will notify you and we will inform you of the legal reason we are able to do this.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"9.\"><strong><a name=\"bookmark9\"></a>‌Your rights under data protection law</strong>\r\n<ol>\r\n 	<li data-list-text=\"9.1.\">Under data protection laws you have certain rights in relation to your Personal Information, as follows:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Right to request access: (this is often called ‘subject access’). This is the right to obtain from us a copy of the Personal Information that we hold about you. We must also provide you with certain other information in response to these requests to help you understand how your Personal Information is being used.</li>\r\n 	<li data-list-text=\"b.\">Right to correction: this is the right to request that any incorrect Personal Information is corrected, and that any incomplete Personal Information is completed.</li>\r\n 	<li data-list-text=\"c.\">Right to erasure: (this is often called the \'right to be forgotten\'). This right only applies in certain circumstances. Where it does apply, you have the right to request that we erase all of your Personal Information.</li>\r\n 	<li data-list-text=\"d.\">Right to restrict processing: this right only applies in certain circumstances. Where it applies, you have the right to request that we restrict the processing of your Personal Information.</li>\r\n 	<li data-list-text=\"e.\">Right to data portability: this right allows you to request that we transfer your Personal Information to someone else.</li>\r\n 	<li data-list-text=\"f.\">Right to object: you have the right to object to us processing your Personal Information for direct marketing purposes. You also have the right to object to us processing Personal Information where our legal reason for doing so is the Legitimate Interests Reason (see Section 4 above) and there is something about your particular situation that means that you want to object to us processing your Personal Information. In certain circumstances you have the right to object to processing where such processing consists of profiling (including profiling for direct marketing).\r\n\r\n<img src=\"FFfB%20new%20privacy%20policy_files/Image_001.png\" alt=\"image\" width=\"6\" height=\"14\" /></li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"9.2.\">In addition to the rights set out in Section 9, where we rely on consent as the legal reason for using your Personal Information, you have the right to withdraw your consent. Further details about this are set out in Section 4.</li>\r\n 	<li data-list-text=\"9.3.\">If you want to exercise any of the above rights in relation to your Personal Information, please contact us using the details set out at the beginning of this notice. If you make a request, please note:\r\n\r\na. we may need certain information from you so that we can verify your identity;\r\n\r\nb. we do not charge a fee for exercising your rights unless your request is unfounded or excessive; and\r\n\r\nc. if your request is unfounded or excessive, we may refuse to deal with your request.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"10.\"><strong><a name=\"bookmark10\"></a>‌Marketing</strong>\r\n<ol>\r\n 	<li data-list-text=\"10.1.\">You may receive marketing from us about similar goods and services, where either you have consented to this, or we have another legal reason by which we can contact you for marketing purposes.</li>\r\n 	<li data-list-text=\"10.2.\">However, we will give you the opportunity to manage how or if we market to you. In any email we send you, we provide a link to either unsubscribe or opt out, or to change your marketing preferences. To change your marketing preferences and/or to request that we stop processing your Personal Information for marketing purposes, you can always contact us on the details set out at the beginning of this notice.</li>\r\n 	<li data-list-text=\"10.3.\">If you request that we stop marketing to you, this will not prevent us from sending communications to you that are not to do with marketing, for example in relation to services that you have purchased from us.</li>\r\n 	<li data-list-text=\"10.4.\">We do not pass your Personal Information on to any third parties for marketing purposes.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"11.\"><strong><a name=\"bookmark11\"></a>‌Complaints</strong>\r\n<ol>\r\n 	<li data-list-text=\"11.1.\">If you are unhappy about the way that we have handled or used your Personal Information, you have the right to complain to the UK supervisory authority for data protection, which is the Information Commissioner’s Office (<strong>ICO</strong>). Please contact us in the first instance if you wish to raise any queries or make a complaint in respect of our handling or use of your Personal Information, so that we have the opportunity to discuss this with you and to take steps to resolve the position. You\r\n\r\n<img src=\"FFfB%20new%20privacy%20policy_files/Image_002.png\" alt=\"image\" width=\"2\" height=\"45\" />\r\n\r\n<img src=\"FFfB%20new%20privacy%20policy_files/Image_003.png\" alt=\"image\" width=\"441\" height=\"50\" />\r\n\r\nFuture Fit Group is the holding company for Future Fit Training, Future Fit for Business, Biomechanics Education Ltd, iCareiMove Ltd and Future Fit Technologies. Registered Office Address: C/O Azets, Carnac Place, Cams Hall Estate,\r\n\r\nFareham, Hampshire, United Kingdom, PO16 8UY. Company number: 13442367\r\n\r\nWebsite privacy policy\r\n\r\n8\r\n\r\nLast Edit: 16/05/2024 15:12:00\r\n\r\nRevision Number: 1 Author: Future Fit\r\n\r\ncan contact us using the details set out at the beginning of this privacy notice.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"12.\"><strong><a name=\"bookmark12\"></a>‌Third-party websites</strong>Our website may contain links to third-party websites. If you click and follow those links, they will take you to the third-party website. Those third-party websites may collect Personal Information from you, and you will need to check their privacy notices to understand how your Personal Information is collected and used by them.</li>\r\n 	<li data-list-text=\"13.\"><strong>Cookies</strong></li>\r\n</ol>\r\nWe use cookies on our website. You’ll find a notice about this on our homepage as well, which also links back to this policy. We last updated our policy on 7th May 2024.\r\n\r\nInformation about cookies\r\n\r\nA cookie is a small text file that is placed onto your computer (or other electronic device) when you access our website. There are 4 different types of cookies:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Strictly necessary cookies (required for the website to run). These allow you to do things like log in securely.</li>\r\n 	<li data-list-text=\"b.\">Performance cookies (which measure how many visitors use our site, which pages they visit and how they interact with the site). These help us to improve our website.</li>\r\n 	<li data-list-text=\"c.\">Functionality cookies (which remember specific visitor’s preferences for the way they use our site, e.g. language settings or font size).</li>\r\n 	<li data-list-text=\"d.\">Targeting/advertising cookies (these collect information about individual visitors that enable us, or third parties, to provide relevant advertisements to those who have visited our site)</li>\r\n</ol>\r\nOur website may use each type of cookie in order to:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Make your online experience more efficient and enjoyable</li>\r\n 	<li data-list-text=\"b.\">Improve our services</li>\r\n 	<li data-list-text=\"c.\">Recognise you whenever you visit this website and distinguish you from other users of our site</li>\r\n 	<li data-list-text=\"d.\">Obtain information about your preferences and use of our site</li>\r\n 	<li data-list-text=\"e.\">Provide you with advertising that is tailored to your interests</li>\r\n 	<li data-list-text=\"f.\">Carry out research and data analysis to help us to improve our content and services and to better understand our customer preferences and interests</li>\r\n</ol>\r\nYour web browser places cookies on your hard drive for record-keeping purposes and sometimes to track information about you. We have set out specific details of the cookies we use on our site in the table below.\r\n\r\nThird-party cookies\r\n\r\nLike many other websites, third parties may also set cookies on our website. These third parties are responsible for the cookies they set on our site and we have no control over them. For further information on how their cookies policies work, please visit their websites.\r\n\r\nManaging cookies\r\n\r\nYou can manage cookies yourself.\r\n\r\nYou can set your web browser to refuse cookies, delete cookies, or to alert you when cookies are being sent.\r\n\r\nYou will need to visit the web browser’s site to manage, but for ease we have provided links to popular browsers below:\r\n\r\nGoogle Chrome:\r\n\r\nhttps://support.google.com/accounts/answer/61416?co=GENIE.Platform%3DDesktop&amp;hl=en\r\n\r\nMicrosoft Firefox: https://support.mozilla.org/en-US/kb/enable-and-disable-cookies-website-preferences Microsoft Internet Explorer: https://support.microsoft.com/en-gb/help/17442/windows-internet- explorer-delete-manage-cookies\r\n\r\nApple Safari: https://support.apple.com/kb/ph21411?locale=en_US\r\n\r\n<a href=\"http://www.aboutcookies.org/\" target=\"_blank\" rel=\"noopener\">For further information about cookies and how to manage or disable them please go to: </a><a href=\"http://www.aboutcookies.org/\" target=\"_blank\" rel=\"noopener\">www.aboutcookies.org.</a>\r\n\r\nPlease also note that if you change/block cookies then:\r\n<ul>\r\n 	<li>some parts of our website may not function properly or as well as they otherwise might;</li>\r\n 	<li>changes will apply across all websites that you visit (unless you choose to block cookies only from particular websites); and</li>\r\n 	<li>the settlings that you change will only apply on the device on which you change the settings and will not apply across all other devices that you use.</li>\r\n</ul>\r\nSpecific details\r\n\r\nWe have set out in the table below details of each of the cookies on our site, a description of what they do and, where relevant, external links that provide more information about them:\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Cookie Name</td>\r\n<td>Description</td>\r\n<td>External Information (if relevant)</td>\r\n</tr>\r\n<tr>\r\n<td>Google Analytics</td>\r\n<td>We use Google Analytics to analyse the use of this website. Google Analytics generates statistical and other information about website use by means of cookies, which are stored on users\' computers. The information generated relating to our website is used to create reports about the use of the website. Google will store\r\n\r\nthis information.</td>\r\n<td><a href=\"http://www.google.com/privacypolicy.html\" target=\"_blank\" rel=\"noopener\">Google\'s privacy policy is available at: http://www.google.com/privacypolicy.html.</a></td>\r\n</tr>\r\n</tbody>\r\n</table>'),(55471,39194,'_blocks_0_text_block_content','field_617669ec13098'),(55472,39196,'_edit_lock','1747130587:17'),(55473,39196,'_edit_last','17'),(55474,39196,'hide_hero','0'),(55475,39196,'_hide_hero','field_66a2380fcda39'),(55476,39196,'fft_hide_from_listings','0'),(55477,39196,'_fft_hide_from_listings','field_61f1320446ab2'),(55478,39196,'fft_page_format','default'),(55479,39196,'_fft_page_format','field_61ae213f1f218'),(55480,39196,'fft_hide_nav','0'),(55481,39196,'_fft_hide_nav','field_635bd5e43527c'),(55482,39196,'fft_hide_header_call_to_action','0'),(55483,39196,'_fft_hide_header_call_to_action','field_635bd6723527d'),(55484,39196,'fft_page_sitemap','0'),(55485,39196,'_fft_page_sitemap','field_61af9b34e8181'),(55486,39196,'blocks_0_acfe_flexible_toggle',''),(55487,39196,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(55488,39196,'blocks_0_acfe_flexible_layout_title','Text Block'),(55489,39196,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(55490,39196,'blocks_0_options_theme','#f5f5f5'),(55491,39196,'_blocks_0_options_theme','field_6176830e2ad17'),(55492,39196,'blocks_0_options',''),(55493,39196,'_blocks_0_options','field_6176830e2ad16'),(55494,39196,'blocks_0_text_block_heading','Get in Touch'),(55495,39196,'_blocks_0_text_block_heading','field_617669d413097'),(55496,39196,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support you. Whether you’re interested in courses, or looking for a bespoke solution, or you\'re part of an organisation that wants a bespoke service, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(55497,39196,'_blocks_0_text_block_content','field_617669ec13098'),(55498,39196,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";}'),(55499,39196,'_blocks','field_6176696113096'),(55500,39196,'_yoast_wpseo_title','Contact Us | Biomechanics Education'),(55501,39196,'_yoast_wpseo_metadesc','Contact us for inquiries and support. We\'re here to assist with any questions about our courses, services, or anything else related to biomechanics education.'),(55502,39196,'_yoast_wpseo_estimated-reading-time-minutes','1'),(55503,39197,'hide_hero','1'),(55504,39197,'_hide_hero','field_66a2380fcda39'),(55505,39197,'fft_hide_from_listings','0'),(55506,39197,'_fft_hide_from_listings','field_61f1320446ab2'),(55507,39197,'fft_page_format','default'),(55508,39197,'_fft_page_format','field_61ae213f1f218'),(55509,39197,'fft_hide_nav','0'),(55510,39197,'_fft_hide_nav','field_635bd5e43527c'),(55511,39197,'fft_hide_header_call_to_action','0'),(55512,39197,'_fft_hide_header_call_to_action','field_635bd6723527d'),(55513,39197,'fft_page_sitemap','0'),(55514,39197,'_fft_page_sitemap','field_61af9b34e8181'),(55515,39197,'blocks_0_acfe_flexible_toggle',''),(55516,39197,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(55517,39197,'blocks_0_acfe_flexible_layout_title','Text Block'),(55518,39197,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(55519,39197,'blocks_0_options_theme','#ffffff'),(55520,39197,'_blocks_0_options_theme','field_6176830e2ad17'),(55521,39197,'blocks_0_options',''),(55522,39197,'_blocks_0_options','field_6176830e2ad16'),(55523,39197,'blocks_0_text_block_heading','Get in Touch'),(55524,39197,'_blocks_0_text_block_heading','field_617669d413097'),(55525,39197,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(55526,39197,'_blocks_0_text_block_content','field_617669ec13098'),(55527,39197,'blocks','a:1:{i:0;s:10:\"text_block\";}'),(55528,39197,'_blocks','field_6176696113096'),(55555,39196,'hero_title','Contact us'),(55556,39196,'_hero_title','field_617571fe285e8'),(55557,39196,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your Intrinsic biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in Biomechanics Coaching.'),(55558,39196,'_hero_text','field_6175723c285e9'),(55559,39196,'hero_actions','1'),(55560,39196,'_hero_actions','field_61757270285ea'),(55561,39196,'hero_style','default'),(55562,39196,'_hero_style','field_62051d9dc5324'),(55563,39196,'hero_icon','lines'),(55564,39196,'_hero_icon','field_61a6182199d03'),(55565,39199,'hide_hero','0'),(55566,39199,'_hide_hero','field_66a2380fcda39'),(55567,39199,'fft_hide_from_listings','0'),(55568,39199,'_fft_hide_from_listings','field_61f1320446ab2'),(55569,39199,'fft_page_format','default'),(55570,39199,'_fft_page_format','field_61ae213f1f218'),(55571,39199,'fft_hide_nav','0'),(55572,39199,'_fft_hide_nav','field_635bd5e43527c'),(55573,39199,'fft_hide_header_call_to_action','0'),(55574,39199,'_fft_hide_header_call_to_action','field_635bd6723527d'),(55575,39199,'fft_page_sitemap','0'),(55576,39199,'_fft_page_sitemap','field_61af9b34e8181'),(55577,39199,'blocks_0_acfe_flexible_toggle',''),(55578,39199,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(55579,39199,'blocks_0_acfe_flexible_layout_title','Text Block'),(55580,39199,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(55581,39199,'blocks_0_options_theme','#ffffff'),(55582,39199,'_blocks_0_options_theme','field_6176830e2ad17'),(55583,39199,'blocks_0_options',''),(55584,39199,'_blocks_0_options','field_6176830e2ad16'),(55585,39199,'blocks_0_text_block_heading','Get in Touch'),(55586,39199,'_blocks_0_text_block_heading','field_617669d413097'),(55587,39199,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(55588,39199,'_blocks_0_text_block_content','field_617669ec13098'),(55589,39199,'blocks','a:1:{i:0;s:10:\"text_block\";}'),(55590,39199,'_blocks','field_6176696113096'),(55591,39199,'hero_title','Contact us'),(55592,39199,'_hero_title','field_617571fe285e8'),(55593,39199,'hero_text',''),(55594,39199,'_hero_text','field_6175723c285e9'),(55595,39199,'hero_actions',''),(55596,39199,'_hero_actions','field_61757270285ea'),(55597,39199,'hero_style','icon'),(55598,39199,'_hero_style','field_62051d9dc5324'),(55599,39199,'hero_icon','lines'),(55600,39199,'_hero_icon','field_61a6182199d03'),(56036,39207,'_edit_lock','1739188434:17'),(56037,39207,'_edit_last','17'),(56038,39208,'_wp_attached_file','2024/07/Price-guide-mock-up-BME-price-guide.png'),(56039,39208,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:47:\"2024/07/Price-guide-mock-up-BME-price-guide.png\";s:8:\"filesize\";i:102999;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Price-guide-mock-up-BME-price-guide-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87492;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:47:\"Price-guide-mock-up-BME-price-guide-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100322;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:47:\"Price-guide-mock-up-BME-price-guide-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87409;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:47:\"Price-guide-mock-up-BME-price-guide-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79993;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:47:\"Price-guide-mock-up-BME-price-guide-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100322;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:47:\"Price-guide-mock-up-BME-price-guide-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86861;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56298,39214,'_edit_lock','1741944234:18'),(56299,39214,'_edit_last','18'),(56300,39215,'_wp_attached_file','2024/07/Biomechanics-and-personal-training-hero-image.jpg'),(56301,39215,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:57:\"2024/07/Biomechanics-and-personal-training-hero-image.jpg\";s:8:\"filesize\";i:311381;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"Biomechanics-and-personal-training-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74982;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113295;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"Biomechanics-and-personal-training-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22477;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"Biomechanics-and-personal-training-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58476;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"Biomechanics-and-personal-training-hero-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164057;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:59:\"Biomechanics-and-personal-training-hero-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:254734;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:57:\"Biomechanics-and-personal-training-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27996;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:57:\"Biomechanics-and-personal-training-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94812;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:59:\"Biomechanics-and-personal-training-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145742;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:57:\"Biomechanics-and-personal-training-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22412;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:57:\"Biomechanics-and-personal-training-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74952;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113413;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:57:\"Biomechanics-and-personal-training-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21378;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:57:\"Biomechanics-and-personal-training-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72496;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111911;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:57:\"Biomechanics-and-personal-training-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23783;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:57:\"Biomechanics-and-personal-training-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79197;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120437;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:57:\"Biomechanics-and-personal-training-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19567;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:57:\"Biomechanics-and-personal-training-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65031;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99069;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56302,39214,'hide_hero','0'),(56303,39214,'_hide_hero','field_66a2380fcda39'),(56304,39214,'hero_title','Biomechanics and Personal Training'),(56305,39214,'_hero_title','field_617571fe285e8'),(56306,39214,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(56307,39214,'_hero_text','field_6175723c285e9'),(56308,39214,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(56309,39214,'_hero_actions_0_button','field_61757281285eb'),(56310,39214,'hero_actions','1'),(56311,39214,'_hero_actions','field_61757270285ea'),(56312,39214,'hero_style','default'),(56313,39214,'_hero_style','field_62051d9dc5324'),(56314,39214,'_thumbnail_id','39215'),(56315,39214,'__thumbnail_id','field_617570855ddaf'),(56316,39214,'hero_image_pos_x','right'),(56317,39214,'_hero_image_pos_x','field_62ec3d05390bb'),(56318,39214,'hero_image_pos_y','top'),(56319,39214,'_hero_image_pos_y','field_62ec3d05390bc'),(56320,39214,'hero_image_pos',''),(56321,39214,'_hero_image_pos','field_62ec3d05390ba'),(56322,39214,'fft_hide_from_listings','0'),(56323,39214,'_fft_hide_from_listings','field_61f1320446ab2'),(56324,39214,'fft_page_format','default'),(56325,39214,'_fft_page_format','field_61ae213f1f218'),(56326,39214,'fft_hide_nav','0'),(56327,39214,'_fft_hide_nav','field_635bd5e43527c'),(56328,39214,'fft_hide_header_call_to_action','0'),(56329,39214,'_fft_hide_header_call_to_action','field_635bd6723527d'),(56330,39214,'fft_page_sitemap','0'),(56331,39214,'_fft_page_sitemap','field_61af9b34e8181'),(56332,39214,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(56333,39214,'_blocks','field_6176696113096'),(56334,39214,'_yoast_wpseo_focuskw','Biomechanics and Personal Training'),(56335,39214,'_yoast_wpseo_title','Personal Training | Biomechanics Education'),(56336,39214,'_yoast_wpseo_linkdex','38'),(56337,39214,'_yoast_wpseo_estimated-reading-time-minutes','1'),(56338,39216,'hide_hero','0'),(56339,39216,'_hide_hero','field_66a2380fcda39'),(56340,39216,'hero_title','Biomechanics and Personal Training'),(56341,39216,'_hero_title','field_617571fe285e8'),(56342,39216,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(56343,39216,'_hero_text','field_6175723c285e9'),(56344,39216,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(56345,39216,'_hero_actions_0_button','field_61757281285eb'),(56346,39216,'hero_actions','1'),(56347,39216,'_hero_actions','field_61757270285ea'),(56348,39216,'hero_style','default'),(56349,39216,'_hero_style','field_62051d9dc5324'),(56350,39216,'_thumbnail_id','39215'),(56351,39216,'__thumbnail_id','field_617570855ddaf'),(56352,39216,'hero_image_pos_x','right'),(56353,39216,'_hero_image_pos_x','field_62ec3d05390bb'),(56354,39216,'hero_image_pos_y','top'),(56355,39216,'_hero_image_pos_y','field_62ec3d05390bc'),(56356,39216,'hero_image_pos',''),(56357,39216,'_hero_image_pos','field_62ec3d05390ba'),(56358,39216,'fft_hide_from_listings','0'),(56359,39216,'_fft_hide_from_listings','field_61f1320446ab2'),(56360,39216,'fft_page_format','default'),(56361,39216,'_fft_page_format','field_61ae213f1f218'),(56362,39216,'fft_hide_nav','0'),(56363,39216,'_fft_hide_nav','field_635bd5e43527c'),(56364,39216,'fft_hide_header_call_to_action','0'),(56365,39216,'_fft_hide_header_call_to_action','field_635bd6723527d'),(56366,39216,'fft_page_sitemap','0'),(56367,39216,'_fft_page_sitemap','field_61af9b34e8181'),(56368,39216,'blocks',''),(56369,39216,'_blocks','field_6176696113096'),(56370,39217,'_wp_attached_file','2024/07/Biomechanics-and-personal-training-steps-image.jpg'),(56371,39217,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:58:\"2024/07/Biomechanics-and-personal-training-steps-image.jpg\";s:8:\"filesize\";i:351122;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-steps-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72130;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"Biomechanics-and-personal-training-steps-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115253;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-steps-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20327;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-steps-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55588;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"Biomechanics-and-personal-training-steps-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175037;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:60:\"Biomechanics-and-personal-training-steps-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:282876;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-steps-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25206;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-steps-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94500;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:60:\"Biomechanics-and-personal-training-steps-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151854;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-steps-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20205;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-steps-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72049;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:59:\"Biomechanics-and-personal-training-steps-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115265;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-steps-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20535;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-steps-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75655;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:59:\"Biomechanics-and-personal-training-steps-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120717;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-steps-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21304;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-steps-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78087;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:59:\"Biomechanics-and-personal-training-steps-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125045;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-steps-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18178;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-steps-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64572;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:59:\"Biomechanics-and-personal-training-steps-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102141;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56418,39218,'hide_hero','0'),(56419,39218,'_hide_hero','field_66a2380fcda39'),(56420,39218,'hero_title','Biomechanics and Personal Training'),(56421,39218,'_hero_title','field_617571fe285e8'),(56422,39218,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(56423,39218,'_hero_text','field_6175723c285e9'),(56424,39218,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(56425,39218,'_hero_actions_0_button','field_61757281285eb'),(56426,39218,'hero_actions','1'),(56427,39218,'_hero_actions','field_61757270285ea'),(56428,39218,'hero_style','default'),(56429,39218,'_hero_style','field_62051d9dc5324'),(56430,39218,'_thumbnail_id','39215'),(56431,39218,'__thumbnail_id','field_617570855ddaf'),(56432,39218,'hero_image_pos_x','right'),(56433,39218,'_hero_image_pos_x','field_62ec3d05390bb'),(56434,39218,'hero_image_pos_y','top'),(56435,39218,'_hero_image_pos_y','field_62ec3d05390bc'),(56436,39218,'hero_image_pos',''),(56437,39218,'_hero_image_pos','field_62ec3d05390ba'),(56438,39218,'fft_hide_from_listings','0'),(56439,39218,'_fft_hide_from_listings','field_61f1320446ab2'),(56440,39218,'fft_page_format','default'),(56441,39218,'_fft_page_format','field_61ae213f1f218'),(56442,39218,'fft_hide_nav','0'),(56443,39218,'_fft_hide_nav','field_635bd5e43527c'),(56444,39218,'fft_hide_header_call_to_action','0'),(56445,39218,'_fft_hide_header_call_to_action','field_635bd6723527d'),(56446,39218,'fft_page_sitemap','0'),(56447,39218,'_fft_page_sitemap','field_61af9b34e8181'),(56448,39218,'blocks','a:2:{i:0;s:8:\"template\";i:1;s:5:\"steps\";}'),(56449,39218,'_blocks','field_6176696113096'),(56450,39218,'blocks_0_acfe_flexible_toggle',''),(56451,39218,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(56452,39218,'blocks_0_acfe_flexible_layout_title','Template'),(56453,39218,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(56454,39218,'blocks_0_template','39087'),(56455,39218,'_blocks_0_template','field_617bdd570fe01'),(56456,39218,'blocks_1_acfe_flexible_toggle',''),(56457,39218,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(56458,39218,'blocks_1_acfe_flexible_layout_title','Steps'),(56459,39218,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(56460,39218,'blocks_1_row_content_title',''),(56461,39218,'_blocks_1_row_content_title','field_64888cd1e26e0'),(56462,39218,'blocks_1_row_content_heading','Benefits of training with us'),(56463,39218,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(56464,39218,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(56465,39218,'_blocks_1_row_content_text','field_64888ce2e26e2'),(56466,39218,'blocks_1_row_content_actions',''),(56467,39218,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(56468,39218,'blocks_1_row_content',''),(56469,39218,'_blocks_1_row_content','field_64888cb0e26df'),(56470,39218,'blocks_1_steps_0_icon','progression.svg'),(56471,39218,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(56472,39218,'blocks_1_steps_0_title','Earning potential'),(56473,39218,'_blocks_1_steps_0_title','field_64888d94e26e7'),(56474,39218,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(56475,39218,'_blocks_1_steps_0_text','field_64888d99e26e8'),(56476,39218,'blocks_1_steps_1_icon','support.svg'),(56477,39218,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(56478,39218,'blocks_1_steps_1_title','Lifetime Learning Promise'),(56479,39218,'_blocks_1_steps_1_title','field_64888d94e26e7'),(56480,39218,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(56481,39218,'_blocks_1_steps_1_text','field_64888d99e26e8'),(56482,39218,'blocks_1_steps_2_icon','qualification.svg'),(56483,39218,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(56484,39218,'blocks_1_steps_2_title','Evidence based hands on learning'),(56485,39218,'_blocks_1_steps_2_title','field_64888d94e26e7'),(56486,39218,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(56487,39218,'_blocks_1_steps_2_text','field_64888d99e26e8'),(56488,39218,'blocks_1_steps_3_icon','leaders.svg'),(56489,39218,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(56490,39218,'blocks_1_steps_3_title','Stand out from the crowd'),(56491,39218,'_blocks_1_steps_3_title','field_64888d94e26e7'),(56492,39218,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(56493,39218,'_blocks_1_steps_3_text','field_64888d99e26e8'),(56494,39218,'blocks_1_steps','4'),(56495,39218,'_blocks_1_steps','field_64888d44e26e5'),(56574,39220,'_wp_attached_file','2024/07/Biomechanics-and-personal-training-50.50-image.jpg'),(56575,39220,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:58:\"2024/07/Biomechanics-and-personal-training-50.50-image.jpg\";s:8:\"filesize\";i:482013;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104284;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"Biomechanics-and-personal-training-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153794;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-50.50-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44178;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-50.50-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85748;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"Biomechanics-and-personal-training-50.50-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224170;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:60:\"Biomechanics-and-personal-training-50.50-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:367048;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-50.50-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48640;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-50.50-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127488;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:60:\"Biomechanics-and-personal-training-50.50-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198459;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-50.50-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44185;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104263;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:59:\"Biomechanics-and-personal-training-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153711;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-50.50-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40389;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-50.50-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98998;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:59:\"Biomechanics-and-personal-training-50.50-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151765;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-50.50-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45676;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-50.50-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110220;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:59:\"Biomechanics-and-personal-training-50.50-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164368;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-50.50-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40445;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:58:\"Biomechanics-and-personal-training-50.50-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92556;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:59:\"Biomechanics-and-personal-training-50.50-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135004;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1631955560\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(56658,39221,'hide_hero','0'),(56659,39221,'_hide_hero','field_66a2380fcda39'),(56660,39221,'hero_title','Biomechanics and Personal Training'),(56661,39221,'_hero_title','field_617571fe285e8'),(56662,39221,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(56663,39221,'_hero_text','field_6175723c285e9'),(56664,39221,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(56665,39221,'_hero_actions_0_button','field_61757281285eb'),(56666,39221,'hero_actions','1'),(56667,39221,'_hero_actions','field_61757270285ea'),(56668,39221,'hero_style','default'),(56669,39221,'_hero_style','field_62051d9dc5324'),(56670,39221,'_thumbnail_id','39215'),(56671,39221,'__thumbnail_id','field_617570855ddaf'),(56672,39221,'hero_image_pos_x','right'),(56673,39221,'_hero_image_pos_x','field_62ec3d05390bb'),(56674,39221,'hero_image_pos_y','top'),(56675,39221,'_hero_image_pos_y','field_62ec3d05390bc'),(56676,39221,'hero_image_pos',''),(56677,39221,'_hero_image_pos','field_62ec3d05390ba'),(56678,39221,'fft_hide_from_listings','0'),(56679,39221,'_fft_hide_from_listings','field_61f1320446ab2'),(56680,39221,'fft_page_format','default'),(56681,39221,'_fft_page_format','field_61ae213f1f218'),(56682,39221,'fft_hide_nav','0'),(56683,39221,'_fft_hide_nav','field_635bd5e43527c'),(56684,39221,'fft_hide_header_call_to_action','0'),(56685,39221,'_fft_hide_header_call_to_action','field_635bd6723527d'),(56686,39221,'fft_page_sitemap','0'),(56687,39221,'_fft_page_sitemap','field_61af9b34e8181'),(56688,39221,'blocks','a:3:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";}'),(56689,39221,'_blocks','field_6176696113096'),(56690,39221,'blocks_0_acfe_flexible_toggle',''),(56691,39221,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(56692,39221,'blocks_0_acfe_flexible_layout_title','Steps'),(56693,39221,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(56694,39221,'blocks_0_row_content_title',''),(56695,39221,'_blocks_0_row_content_title','field_64888cd1e26e0'),(56696,39221,'blocks_0_row_content_heading','Benefits of training with us'),(56697,39221,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(56698,39221,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(56699,39221,'_blocks_0_row_content_text','field_64888ce2e26e2'),(56700,39221,'blocks_0_row_content_actions',''),(56701,39221,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(56702,39221,'blocks_0_row_content',''),(56703,39221,'_blocks_0_row_content','field_64888cb0e26df'),(56704,39221,'blocks_0_steps_0_icon','progression.svg'),(56705,39221,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(56706,39221,'blocks_0_steps_0_title','Earning potential'),(56707,39221,'_blocks_0_steps_0_title','field_64888d94e26e7'),(56708,39221,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(56709,39221,'_blocks_0_steps_0_text','field_64888d99e26e8'),(56710,39221,'blocks_0_steps_1_icon','support.svg'),(56711,39221,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(56712,39221,'blocks_0_steps_1_title','Lifetime Learning Promise'),(56713,39221,'_blocks_0_steps_1_title','field_64888d94e26e7'),(56714,39221,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(56715,39221,'_blocks_0_steps_1_text','field_64888d99e26e8'),(56716,39221,'blocks_0_steps_2_icon','qualification.svg'),(56717,39221,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(56718,39221,'blocks_0_steps_2_title','Evidence based hands on learning'),(56719,39221,'_blocks_0_steps_2_title','field_64888d94e26e7'),(56720,39221,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(56721,39221,'_blocks_0_steps_2_text','field_64888d99e26e8'),(56722,39221,'blocks_0_steps_3_icon','leaders.svg'),(56723,39221,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(56724,39221,'blocks_0_steps_3_title','Stand out from the crowd'),(56725,39221,'_blocks_0_steps_3_title','field_64888d94e26e7'),(56726,39221,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(56727,39221,'_blocks_0_steps_3_text','field_64888d99e26e8'),(56728,39221,'blocks_0_steps','4'),(56729,39221,'_blocks_0_steps','field_64888d44e26e5'),(56730,39221,'blocks_1_acfe_flexible_toggle',''),(56731,39221,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(56732,39221,'blocks_1_acfe_flexible_layout_title','Video'),(56733,39221,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(56734,39221,'blocks_1_size','large'),(56735,39221,'_blocks_1_size','field_6487038f297c1'),(56736,39221,'blocks_1_row_content_title',''),(56737,39221,'_blocks_1_row_content_title','field_64870132a865d'),(56738,39221,'blocks_1_row_content_heading',''),(56739,39221,'_blocks_1_row_content_heading','field_64870142a865e'),(56740,39221,'blocks_1_row_content_text',''),(56741,39221,'_blocks_1_row_content_text','field_64870148a865f'),(56742,39221,'blocks_1_row_content',''),(56743,39221,'_blocks_1_row_content','field_6487008ba865c'),(56744,39221,'blocks_1_video_src',''),(56745,39221,'_blocks_1_video_src','field_6193c4a98ec07'),(56746,39221,'blocks_1_video_thumbnail',''),(56747,39221,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(56748,39221,'blocks_2_acfe_flexible_toggle',''),(56749,39221,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(56750,39221,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(56751,39221,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(56752,39221,'blocks_2_options_theme','#ffffff'),(56753,39221,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(56754,39221,'blocks_2_options_reverse','0'),(56755,39221,'_blocks_2_options_reverse','field_61768049bb8ac'),(56756,39221,'blocks_2_options',''),(56757,39221,'_blocks_2_options','field_617682517c334'),(56758,39221,'blocks_2_split_5050_image','39220'),(56759,39221,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(56760,39221,'blocks_2_split_5050_video',''),(56761,39221,'_blocks_2_split_5050_video','field_6239f3160848a'),(56762,39221,'blocks_2_split_5050_content_title',''),(56763,39221,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(56764,39221,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a PT'),(56765,39221,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(56766,39221,'blocks_2_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(56767,39221,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(56768,39221,'blocks_2_split_5050_content_actions',''),(56769,39221,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(56770,39221,'blocks_2_split_5050_content',''),(56771,39221,'_blocks_2_split_5050_content','field_61767afceb8ba'),(56844,39222,'hide_hero','0'),(56845,39222,'_hide_hero','field_66a2380fcda39'),(56846,39222,'hero_title','Biomechanics and Personal Training'),(56847,39222,'_hero_title','field_617571fe285e8'),(56848,39222,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(56849,39222,'_hero_text','field_6175723c285e9'),(56850,39222,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(56851,39222,'_hero_actions_0_button','field_61757281285eb'),(56852,39222,'hero_actions','1'),(56853,39222,'_hero_actions','field_61757270285ea'),(56854,39222,'hero_style','default'),(56855,39222,'_hero_style','field_62051d9dc5324'),(56856,39222,'_thumbnail_id','39215'),(56857,39222,'__thumbnail_id','field_617570855ddaf'),(56858,39222,'hero_image_pos_x','right'),(56859,39222,'_hero_image_pos_x','field_62ec3d05390bb'),(56860,39222,'hero_image_pos_y','top'),(56861,39222,'_hero_image_pos_y','field_62ec3d05390bc'),(56862,39222,'hero_image_pos',''),(56863,39222,'_hero_image_pos','field_62ec3d05390ba'),(56864,39222,'fft_hide_from_listings','0'),(56865,39222,'_fft_hide_from_listings','field_61f1320446ab2'),(56866,39222,'fft_page_format','default'),(56867,39222,'_fft_page_format','field_61ae213f1f218'),(56868,39222,'fft_hide_nav','0'),(56869,39222,'_fft_hide_nav','field_635bd5e43527c'),(56870,39222,'fft_hide_header_call_to_action','0'),(56871,39222,'_fft_hide_header_call_to_action','field_635bd6723527d'),(56872,39222,'fft_page_sitemap','0'),(56873,39222,'_fft_page_sitemap','field_61af9b34e8181'),(56874,39222,'blocks','a:5:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";}'),(56875,39222,'_blocks','field_6176696113096'),(56876,39222,'blocks_0_acfe_flexible_toggle',''),(56877,39222,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(56878,39222,'blocks_0_acfe_flexible_layout_title','Steps'),(56879,39222,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(56880,39222,'blocks_0_row_content_title',''),(56881,39222,'_blocks_0_row_content_title','field_64888cd1e26e0'),(56882,39222,'blocks_0_row_content_heading','Benefits of training with us'),(56883,39222,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(56884,39222,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(56885,39222,'_blocks_0_row_content_text','field_64888ce2e26e2'),(56886,39222,'blocks_0_row_content_actions',''),(56887,39222,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(56888,39222,'blocks_0_row_content',''),(56889,39222,'_blocks_0_row_content','field_64888cb0e26df'),(56890,39222,'blocks_0_steps_0_icon','progression.svg'),(56891,39222,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(56892,39222,'blocks_0_steps_0_title','Earning potential'),(56893,39222,'_blocks_0_steps_0_title','field_64888d94e26e7'),(56894,39222,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(56895,39222,'_blocks_0_steps_0_text','field_64888d99e26e8'),(56896,39222,'blocks_0_steps_1_icon','support.svg'),(56897,39222,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(56898,39222,'blocks_0_steps_1_title','Lifetime Learning Promise'),(56899,39222,'_blocks_0_steps_1_title','field_64888d94e26e7'),(56900,39222,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(56901,39222,'_blocks_0_steps_1_text','field_64888d99e26e8'),(56902,39222,'blocks_0_steps_2_icon','qualification.svg'),(56903,39222,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(56904,39222,'blocks_0_steps_2_title','Evidence based hands on learning'),(56905,39222,'_blocks_0_steps_2_title','field_64888d94e26e7'),(56906,39222,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(56907,39222,'_blocks_0_steps_2_text','field_64888d99e26e8'),(56908,39222,'blocks_0_steps_3_icon','leaders.svg'),(56909,39222,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(56910,39222,'blocks_0_steps_3_title','Stand out from the crowd'),(56911,39222,'_blocks_0_steps_3_title','field_64888d94e26e7'),(56912,39222,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(56913,39222,'_blocks_0_steps_3_text','field_64888d99e26e8'),(56914,39222,'blocks_0_steps','4'),(56915,39222,'_blocks_0_steps','field_64888d44e26e5'),(56916,39222,'blocks_1_acfe_flexible_toggle',''),(56917,39222,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(56918,39222,'blocks_1_acfe_flexible_layout_title','Video'),(56919,39222,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(56920,39222,'blocks_1_size','large'),(56921,39222,'_blocks_1_size','field_6487038f297c1'),(56922,39222,'blocks_1_row_content_title',''),(56923,39222,'_blocks_1_row_content_title','field_64870132a865d'),(56924,39222,'blocks_1_row_content_heading',''),(56925,39222,'_blocks_1_row_content_heading','field_64870142a865e'),(56926,39222,'blocks_1_row_content_text',''),(56927,39222,'_blocks_1_row_content_text','field_64870148a865f'),(56928,39222,'blocks_1_row_content',''),(56929,39222,'_blocks_1_row_content','field_6487008ba865c'),(56930,39222,'blocks_1_video_src',''),(56931,39222,'_blocks_1_video_src','field_6193c4a98ec07'),(56932,39222,'blocks_1_video_thumbnail',''),(56933,39222,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(56934,39222,'blocks_2_acfe_flexible_toggle',''),(56935,39222,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(56936,39222,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(56937,39222,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(56938,39222,'blocks_2_options_theme','#ffffff'),(56939,39222,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(56940,39222,'blocks_2_options_reverse','0'),(56941,39222,'_blocks_2_options_reverse','field_61768049bb8ac'),(56942,39222,'blocks_2_options',''),(56943,39222,'_blocks_2_options','field_617682517c334'),(56944,39222,'blocks_2_split_5050_image','39220'),(56945,39222,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(56946,39222,'blocks_2_split_5050_video',''),(56947,39222,'_blocks_2_split_5050_video','field_6239f3160848a'),(56948,39222,'blocks_2_split_5050_content_title',''),(56949,39222,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(56950,39222,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a PT'),(56951,39222,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(56952,39222,'blocks_2_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(56953,39222,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(56954,39222,'blocks_2_split_5050_content_actions',''),(56955,39222,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(56956,39222,'blocks_2_split_5050_content',''),(56957,39222,'_blocks_2_split_5050_content','field_61767afceb8ba'),(56958,39222,'blocks_3_acfe_flexible_toggle',''),(56959,39222,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(56960,39222,'blocks_3_acfe_flexible_layout_title','Form'),(56961,39222,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(56962,39222,'blocks_3_row_content_format','standard'),(56963,39222,'_blocks_3_row_content_format','field_6481ead962881'),(56964,39222,'blocks_3_row_content_title',''),(56965,39222,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(56966,39222,'blocks_3_row_content_heading','Enquire Today'),(56967,39222,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(56968,39222,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(56969,39222,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(56970,39222,'blocks_3_row_content_actions',''),(56971,39222,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(56972,39222,'blocks_3_row_content',''),(56973,39222,'_blocks_3_row_content','field_61a0f5f5b3db0'),(56974,39222,'blocks_3_row_form',''),(56975,39222,'_blocks_3_row_form','field_61a4ff2c0b08e'),(56976,39222,'blocks_3_row_form_button_label',''),(56977,39222,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(56978,39222,'blocks_4_acfe_flexible_toggle',''),(56979,39222,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(56980,39222,'blocks_4_acfe_flexible_layout_title','Tabs'),(56981,39222,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(56982,39222,'blocks_4_options_theme','#ffffff'),(56983,39222,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(56984,39222,'blocks_4_options',''),(56985,39222,'_blocks_4_options','field_6177cfcd8140f'),(56986,39222,'blocks_4_tabs_0_tab_label','What will I learn ?'),(56987,39222,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(56988,39222,'blocks_4_tabs_0_tab_content_title',''),(56989,39222,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(56990,39222,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(56991,39222,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(56992,39222,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(56993,39222,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(56994,39222,'blocks_4_tabs_0_tab_content_actions',''),(56995,39222,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(56996,39222,'blocks_4_tabs_0_tab_content',''),(56997,39222,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(56998,39222,'blocks_4_tabs_0_tab_image',''),(56999,39222,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(57000,39222,'blocks_4_tabs_1_tab_label','What do I need ?'),(57001,39222,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(57002,39222,'blocks_4_tabs_1_tab_content_title',''),(57003,39222,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(57004,39222,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(57005,39222,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(57006,39222,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(57007,39222,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(57008,39222,'blocks_4_tabs_1_tab_content_actions',''),(57009,39222,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(57010,39222,'blocks_4_tabs_1_tab_content',''),(57011,39222,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(57012,39222,'blocks_4_tabs_1_tab_image',''),(57013,39222,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(57014,39222,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(57015,39222,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(57016,39222,'blocks_4_tabs_2_tab_content_title',''),(57017,39222,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(57018,39222,'blocks_4_tabs_2_tab_content_heading','Locations'),(57019,39222,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(57020,39222,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(57021,39222,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(57022,39222,'blocks_4_tabs_2_tab_content_actions',''),(57023,39222,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(57024,39222,'blocks_4_tabs_2_tab_content',''),(57025,39222,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(57026,39222,'blocks_4_tabs_2_tab_image',''),(57027,39222,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(57028,39222,'blocks_4_tabs','3'),(57029,39222,'_blocks_4_tabs','field_6177cff281419'),(57030,39223,'_wp_attached_file','2024/07/entry-requirements.jpg'),(57031,39223,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:658;s:4:\"file\";s:30:\"2024/07/entry-requirements.jpg\";s:8:\"filesize\";i:458379;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"entry-requirements-900x592.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:592;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62116;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"entry-requirements-400x263.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21229;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"entry-requirements-768x505.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49795;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:30:\"entry-requirements-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27942;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:30:\"entry-requirements-900x658.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71210;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:30:\"entry-requirements-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21503;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:30:\"entry-requirements-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62858;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:30:\"entry-requirements-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23256;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:30:\"entry-requirements-675x658.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58608;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:30:\"entry-requirements-900x658.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71210;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:30:\"entry-requirements-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22894;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:30:\"entry-requirements-900x658.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:658;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71210;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:30:\"entry-requirements-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19346;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:30:\"entry-requirements-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55671;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:71:\"Copyright (c) 2013 Frannyanne/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:61:\"A,Mortarboard,And,Graduation,Scroll,,Tied,With,Red,Ribbon,,On\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:451:\"college,education,vignette,achievement,pile,tassel,three,academia,mortar board,acadaemia,graduation,academic,graduate,copy space,hat,diploma,knowledge,old,degree,ribbon,scroll,professor,books,background,ceremony,success,vintage,old style,doctorate,tassle,study,stacked,student,undersaturated,university,concept,certificate,effort,learning,horizontal orientation,cap,teacher,reward,tied,landscape orientation,mortarboard,copyspace,black,retro,schooling\";}}}'),(57032,39224,'_wp_attached_file','2024/07/locations.png'),(57033,39224,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:616;s:6:\"height\";i:409;s:4:\"file\";s:21:\"2024/07/locations.png\";s:8:\"filesize\";i:129725;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"locations-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74834;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:21:\"locations-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109340;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:21:\"locations-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:74915;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:21:\"locations-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80518;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:21:\"locations-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:85093;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:21:\"locations-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:65510;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(57076,39225,'hide_hero','0'),(57077,39225,'_hide_hero','field_66a2380fcda39'),(57078,39225,'hero_title','Biomechanics and Personal Training'),(57079,39225,'_hero_title','field_617571fe285e8'),(57080,39225,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(57081,39225,'_hero_text','field_6175723c285e9'),(57082,39225,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(57083,39225,'_hero_actions_0_button','field_61757281285eb'),(57084,39225,'hero_actions','1'),(57085,39225,'_hero_actions','field_61757270285ea'),(57086,39225,'hero_style','default'),(57087,39225,'_hero_style','field_62051d9dc5324'),(57088,39225,'_thumbnail_id','39215'),(57089,39225,'__thumbnail_id','field_617570855ddaf'),(57090,39225,'hero_image_pos_x','right'),(57091,39225,'_hero_image_pos_x','field_62ec3d05390bb'),(57092,39225,'hero_image_pos_y','top'),(57093,39225,'_hero_image_pos_y','field_62ec3d05390bc'),(57094,39225,'hero_image_pos',''),(57095,39225,'_hero_image_pos','field_62ec3d05390ba'),(57096,39225,'fft_hide_from_listings','0'),(57097,39225,'_fft_hide_from_listings','field_61f1320446ab2'),(57098,39225,'fft_page_format','default'),(57099,39225,'_fft_page_format','field_61ae213f1f218'),(57100,39225,'fft_hide_nav','0'),(57101,39225,'_fft_hide_nav','field_635bd5e43527c'),(57102,39225,'fft_hide_header_call_to_action','0'),(57103,39225,'_fft_hide_header_call_to_action','field_635bd6723527d'),(57104,39225,'fft_page_sitemap','0'),(57105,39225,'_fft_page_sitemap','field_61af9b34e8181'),(57106,39225,'blocks','a:7:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";}'),(57107,39225,'_blocks','field_6176696113096'),(57108,39225,'blocks_0_acfe_flexible_toggle',''),(57109,39225,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(57110,39225,'blocks_0_acfe_flexible_layout_title','Steps'),(57111,39225,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(57112,39225,'blocks_0_row_content_title',''),(57113,39225,'_blocks_0_row_content_title','field_64888cd1e26e0'),(57114,39225,'blocks_0_row_content_heading','Benefits of training with us'),(57115,39225,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(57116,39225,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(57117,39225,'_blocks_0_row_content_text','field_64888ce2e26e2'),(57118,39225,'blocks_0_row_content_actions',''),(57119,39225,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(57120,39225,'blocks_0_row_content',''),(57121,39225,'_blocks_0_row_content','field_64888cb0e26df'),(57122,39225,'blocks_0_steps_0_icon','progression.svg'),(57123,39225,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(57124,39225,'blocks_0_steps_0_title','Earning potential'),(57125,39225,'_blocks_0_steps_0_title','field_64888d94e26e7'),(57126,39225,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(57127,39225,'_blocks_0_steps_0_text','field_64888d99e26e8'),(57128,39225,'blocks_0_steps_1_icon','support.svg'),(57129,39225,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(57130,39225,'blocks_0_steps_1_title','Lifetime Learning Promise'),(57131,39225,'_blocks_0_steps_1_title','field_64888d94e26e7'),(57132,39225,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(57133,39225,'_blocks_0_steps_1_text','field_64888d99e26e8'),(57134,39225,'blocks_0_steps_2_icon','qualification.svg'),(57135,39225,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(57136,39225,'blocks_0_steps_2_title','Evidence based hands on learning'),(57137,39225,'_blocks_0_steps_2_title','field_64888d94e26e7'),(57138,39225,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(57139,39225,'_blocks_0_steps_2_text','field_64888d99e26e8'),(57140,39225,'blocks_0_steps_3_icon','leaders.svg'),(57141,39225,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(57142,39225,'blocks_0_steps_3_title','Stand out from the crowd'),(57143,39225,'_blocks_0_steps_3_title','field_64888d94e26e7'),(57144,39225,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(57145,39225,'_blocks_0_steps_3_text','field_64888d99e26e8'),(57146,39225,'blocks_0_steps','4'),(57147,39225,'_blocks_0_steps','field_64888d44e26e5'),(57148,39225,'blocks_1_acfe_flexible_toggle',''),(57149,39225,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(57150,39225,'blocks_1_acfe_flexible_layout_title','Video'),(57151,39225,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(57152,39225,'blocks_1_size','large'),(57153,39225,'_blocks_1_size','field_6487038f297c1'),(57154,39225,'blocks_1_row_content_title',''),(57155,39225,'_blocks_1_row_content_title','field_64870132a865d'),(57156,39225,'blocks_1_row_content_heading',''),(57157,39225,'_blocks_1_row_content_heading','field_64870142a865e'),(57158,39225,'blocks_1_row_content_text',''),(57159,39225,'_blocks_1_row_content_text','field_64870148a865f'),(57160,39225,'blocks_1_row_content',''),(57161,39225,'_blocks_1_row_content','field_6487008ba865c'),(57162,39225,'blocks_1_video_src',''),(57163,39225,'_blocks_1_video_src','field_6193c4a98ec07'),(57164,39225,'blocks_1_video_thumbnail',''),(57165,39225,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(57166,39225,'blocks_2_acfe_flexible_toggle',''),(57167,39225,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(57168,39225,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(57169,39225,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(57170,39225,'blocks_2_options_theme','#ffffff'),(57171,39225,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(57172,39225,'blocks_2_options_reverse','0'),(57173,39225,'_blocks_2_options_reverse','field_61768049bb8ac'),(57174,39225,'blocks_2_options',''),(57175,39225,'_blocks_2_options','field_617682517c334'),(57176,39225,'blocks_2_split_5050_image','39220'),(57177,39225,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(57178,39225,'blocks_2_split_5050_video',''),(57179,39225,'_blocks_2_split_5050_video','field_6239f3160848a'),(57180,39225,'blocks_2_split_5050_content_title',''),(57181,39225,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(57182,39225,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a PT'),(57183,39225,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(57184,39225,'blocks_2_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(57185,39225,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(57186,39225,'blocks_2_split_5050_content_actions',''),(57187,39225,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(57188,39225,'blocks_2_split_5050_content',''),(57189,39225,'_blocks_2_split_5050_content','field_61767afceb8ba'),(57190,39225,'blocks_3_acfe_flexible_toggle',''),(57191,39225,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(57192,39225,'blocks_3_acfe_flexible_layout_title','Form'),(57193,39225,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(57194,39225,'blocks_3_row_content_format','standard'),(57195,39225,'_blocks_3_row_content_format','field_6481ead962881'),(57196,39225,'blocks_3_row_content_title',''),(57197,39225,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(57198,39225,'blocks_3_row_content_heading','Enquire Today'),(57199,39225,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(57200,39225,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(57201,39225,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(57202,39225,'blocks_3_row_content_actions',''),(57203,39225,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(57204,39225,'blocks_3_row_content',''),(57205,39225,'_blocks_3_row_content','field_61a0f5f5b3db0'),(57206,39225,'blocks_3_row_form',''),(57207,39225,'_blocks_3_row_form','field_61a4ff2c0b08e'),(57208,39225,'blocks_3_row_form_button_label',''),(57209,39225,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(57210,39225,'blocks_4_acfe_flexible_toggle',''),(57211,39225,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(57212,39225,'blocks_4_acfe_flexible_layout_title','Tabs'),(57213,39225,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(57214,39225,'blocks_4_options_theme','#ffffff'),(57215,39225,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(57216,39225,'blocks_4_options',''),(57217,39225,'_blocks_4_options','field_6177cfcd8140f'),(57218,39225,'blocks_4_tabs_0_tab_label','What will I learn ?'),(57219,39225,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(57220,39225,'blocks_4_tabs_0_tab_content_title',''),(57221,39225,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(57222,39225,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(57223,39225,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(57224,39225,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(57225,39225,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(57226,39225,'blocks_4_tabs_0_tab_content_actions',''),(57227,39225,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(57228,39225,'blocks_4_tabs_0_tab_content',''),(57229,39225,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(57230,39225,'blocks_4_tabs_0_tab_image','39076'),(57231,39225,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(57232,39225,'blocks_4_tabs_1_tab_label','What do I need ?'),(57233,39225,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(57234,39225,'blocks_4_tabs_1_tab_content_title',''),(57235,39225,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(57236,39225,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(57237,39225,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(57238,39225,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(57239,39225,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(57240,39225,'blocks_4_tabs_1_tab_content_actions',''),(57241,39225,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(57242,39225,'blocks_4_tabs_1_tab_content',''),(57243,39225,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(57244,39225,'blocks_4_tabs_1_tab_image','39223'),(57245,39225,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(57246,39225,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(57247,39225,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(57248,39225,'blocks_4_tabs_2_tab_content_title',''),(57249,39225,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(57250,39225,'blocks_4_tabs_2_tab_content_heading','Locations'),(57251,39225,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(57252,39225,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(57253,39225,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(57254,39225,'blocks_4_tabs_2_tab_content_actions',''),(57255,39225,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(57256,39225,'blocks_4_tabs_2_tab_content',''),(57257,39225,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(57258,39225,'blocks_4_tabs_2_tab_image','39224'),(57259,39225,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(57260,39225,'blocks_4_tabs','3'),(57261,39225,'_blocks_4_tabs','field_6177cff281419'),(57262,39225,'blocks_5_acfe_flexible_toggle',''),(57263,39225,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(57264,39225,'blocks_5_acfe_flexible_layout_title','Text Block'),(57265,39225,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(57266,39225,'blocks_5_options_theme','#b61234'),(57267,39225,'_blocks_5_options_theme','field_6176830e2ad17'),(57268,39225,'blocks_5_options',''),(57269,39225,'_blocks_5_options','field_6176830e2ad16'),(57270,39225,'blocks_5_text_block_heading','Fees & Funding Options'),(57271,39225,'_blocks_5_text_block_heading','field_617669d413097'),(57272,39225,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(57273,39225,'_blocks_5_text_block_content','field_617669ec13098'),(57274,39225,'blocks_6_acfe_flexible_toggle',''),(57275,39225,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(57276,39225,'blocks_6_acfe_flexible_layout_title','Icons'),(57277,39225,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(57278,39225,'blocks_6_options_theme','#b61234'),(57279,39225,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(57280,39225,'blocks_6_options_format','row'),(57281,39225,'_blocks_6_options_format','field_64bfde9a90690'),(57282,39225,'blocks_6_options',''),(57283,39225,'_blocks_6_options','field_64bfdd9b90684'),(57284,39225,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(57285,39225,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(57286,39225,'blocks_6_icon_row_items_0_label','Pay in Full'),(57287,39225,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(57288,39225,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(57289,39225,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(57290,39225,'blocks_6_icon_row_items_1_icon','finance.svg'),(57291,39225,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(57292,39225,'blocks_6_icon_row_items_1_label','0% finance'),(57293,39225,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(57294,39225,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(57295,39225,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(57296,39225,'blocks_6_icon_row_items_2_icon','deposit.svg'),(57297,39225,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(57298,39225,'blocks_6_icon_row_items_2_label','Deposit & balance'),(57299,39225,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(57300,39225,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(57301,39225,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(57302,39225,'blocks_6_icon_row_items','3'),(57303,39225,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(57322,39226,'hide_hero','0'),(57323,39226,'_hide_hero','field_66a2380fcda39'),(57324,39226,'hero_title','Biomechanics and Personal Training'),(57325,39226,'_hero_title','field_617571fe285e8'),(57326,39226,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(57327,39226,'_hero_text','field_6175723c285e9'),(57328,39226,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(57329,39226,'_hero_actions_0_button','field_61757281285eb'),(57330,39226,'hero_actions','1'),(57331,39226,'_hero_actions','field_61757270285ea'),(57332,39226,'hero_style','default'),(57333,39226,'_hero_style','field_62051d9dc5324'),(57334,39226,'_thumbnail_id','39215'),(57335,39226,'__thumbnail_id','field_617570855ddaf'),(57336,39226,'hero_image_pos_x','right'),(57337,39226,'_hero_image_pos_x','field_62ec3d05390bb'),(57338,39226,'hero_image_pos_y','top'),(57339,39226,'_hero_image_pos_y','field_62ec3d05390bc'),(57340,39226,'hero_image_pos',''),(57341,39226,'_hero_image_pos','field_62ec3d05390ba'),(57342,39226,'fft_hide_from_listings','0'),(57343,39226,'_fft_hide_from_listings','field_61f1320446ab2'),(57344,39226,'fft_page_format','default'),(57345,39226,'_fft_page_format','field_61ae213f1f218'),(57346,39226,'fft_hide_nav','0'),(57347,39226,'_fft_hide_nav','field_635bd5e43527c'),(57348,39226,'fft_hide_header_call_to_action','0'),(57349,39226,'_fft_hide_header_call_to_action','field_635bd6723527d'),(57350,39226,'fft_page_sitemap','0'),(57351,39226,'_fft_page_sitemap','field_61af9b34e8181'),(57352,39226,'blocks','a:8:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:18:\"testimonial_slider\";}'),(57353,39226,'_blocks','field_6176696113096'),(57354,39226,'blocks_0_acfe_flexible_toggle',''),(57355,39226,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(57356,39226,'blocks_0_acfe_flexible_layout_title','Steps'),(57357,39226,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(57358,39226,'blocks_0_row_content_title',''),(57359,39226,'_blocks_0_row_content_title','field_64888cd1e26e0'),(57360,39226,'blocks_0_row_content_heading','Benefits of training with us'),(57361,39226,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(57362,39226,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(57363,39226,'_blocks_0_row_content_text','field_64888ce2e26e2'),(57364,39226,'blocks_0_row_content_actions',''),(57365,39226,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(57366,39226,'blocks_0_row_content',''),(57367,39226,'_blocks_0_row_content','field_64888cb0e26df'),(57368,39226,'blocks_0_steps_0_icon','progression.svg'),(57369,39226,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(57370,39226,'blocks_0_steps_0_title','Earning potential'),(57371,39226,'_blocks_0_steps_0_title','field_64888d94e26e7'),(57372,39226,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(57373,39226,'_blocks_0_steps_0_text','field_64888d99e26e8'),(57374,39226,'blocks_0_steps_1_icon','support.svg'),(57375,39226,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(57376,39226,'blocks_0_steps_1_title','Lifetime Learning Promise'),(57377,39226,'_blocks_0_steps_1_title','field_64888d94e26e7'),(57378,39226,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(57379,39226,'_blocks_0_steps_1_text','field_64888d99e26e8'),(57380,39226,'blocks_0_steps_2_icon','qualification.svg'),(57381,39226,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(57382,39226,'blocks_0_steps_2_title','Evidence based hands on learning'),(57383,39226,'_blocks_0_steps_2_title','field_64888d94e26e7'),(57384,39226,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(57385,39226,'_blocks_0_steps_2_text','field_64888d99e26e8'),(57386,39226,'blocks_0_steps_3_icon','leaders.svg'),(57387,39226,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(57388,39226,'blocks_0_steps_3_title','Stand out from the crowd'),(57389,39226,'_blocks_0_steps_3_title','field_64888d94e26e7'),(57390,39226,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(57391,39226,'_blocks_0_steps_3_text','field_64888d99e26e8'),(57392,39226,'blocks_0_steps','4'),(57393,39226,'_blocks_0_steps','field_64888d44e26e5'),(57394,39226,'blocks_1_acfe_flexible_toggle',''),(57395,39226,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(57396,39226,'blocks_1_acfe_flexible_layout_title','Video'),(57397,39226,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(57398,39226,'blocks_1_size','large'),(57399,39226,'_blocks_1_size','field_6487038f297c1'),(57400,39226,'blocks_1_row_content_title',''),(57401,39226,'_blocks_1_row_content_title','field_64870132a865d'),(57402,39226,'blocks_1_row_content_heading',''),(57403,39226,'_blocks_1_row_content_heading','field_64870142a865e'),(57404,39226,'blocks_1_row_content_text',''),(57405,39226,'_blocks_1_row_content_text','field_64870148a865f'),(57406,39226,'blocks_1_row_content',''),(57407,39226,'_blocks_1_row_content','field_6487008ba865c'),(57408,39226,'blocks_1_video_src',''),(57409,39226,'_blocks_1_video_src','field_6193c4a98ec07'),(57410,39226,'blocks_1_video_thumbnail',''),(57411,39226,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(57412,39226,'blocks_2_acfe_flexible_toggle',''),(57413,39226,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(57414,39226,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(57415,39226,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(57416,39226,'blocks_2_options_theme','#ffffff'),(57417,39226,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(57418,39226,'blocks_2_options_reverse','0'),(57419,39226,'_blocks_2_options_reverse','field_61768049bb8ac'),(57420,39226,'blocks_2_options',''),(57421,39226,'_blocks_2_options','field_617682517c334'),(57422,39226,'blocks_2_split_5050_image','39220'),(57423,39226,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(57424,39226,'blocks_2_split_5050_video',''),(57425,39226,'_blocks_2_split_5050_video','field_6239f3160848a'),(57426,39226,'blocks_2_split_5050_content_title',''),(57427,39226,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(57428,39226,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a PT'),(57429,39226,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(57430,39226,'blocks_2_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(57431,39226,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(57432,39226,'blocks_2_split_5050_content_actions',''),(57433,39226,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(57434,39226,'blocks_2_split_5050_content',''),(57435,39226,'_blocks_2_split_5050_content','field_61767afceb8ba'),(57436,39226,'blocks_3_acfe_flexible_toggle',''),(57437,39226,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(57438,39226,'blocks_3_acfe_flexible_layout_title','Form'),(57439,39226,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(57440,39226,'blocks_3_row_content_format','standard'),(57441,39226,'_blocks_3_row_content_format','field_6481ead962881'),(57442,39226,'blocks_3_row_content_title',''),(57443,39226,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(57444,39226,'blocks_3_row_content_heading','Enquire Today'),(57445,39226,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(57446,39226,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(57447,39226,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(57448,39226,'blocks_3_row_content_actions',''),(57449,39226,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(57450,39226,'blocks_3_row_content',''),(57451,39226,'_blocks_3_row_content','field_61a0f5f5b3db0'),(57452,39226,'blocks_3_row_form',''),(57453,39226,'_blocks_3_row_form','field_61a4ff2c0b08e'),(57454,39226,'blocks_3_row_form_button_label',''),(57455,39226,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(57456,39226,'blocks_4_acfe_flexible_toggle',''),(57457,39226,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(57458,39226,'blocks_4_acfe_flexible_layout_title','Tabs'),(57459,39226,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(57460,39226,'blocks_4_options_theme','#ffffff'),(57461,39226,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(57462,39226,'blocks_4_options',''),(57463,39226,'_blocks_4_options','field_6177cfcd8140f'),(57464,39226,'blocks_4_tabs_0_tab_label','What will I learn ?'),(57465,39226,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(57466,39226,'blocks_4_tabs_0_tab_content_title',''),(57467,39226,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(57468,39226,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(57469,39226,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(57470,39226,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(57471,39226,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(57472,39226,'blocks_4_tabs_0_tab_content_actions',''),(57473,39226,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(57474,39226,'blocks_4_tabs_0_tab_content',''),(57475,39226,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(57476,39226,'blocks_4_tabs_0_tab_image','39076'),(57477,39226,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(57478,39226,'blocks_4_tabs_1_tab_label','What do I need ?'),(57479,39226,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(57480,39226,'blocks_4_tabs_1_tab_content_title',''),(57481,39226,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(57482,39226,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(57483,39226,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(57484,39226,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(57485,39226,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(57486,39226,'blocks_4_tabs_1_tab_content_actions',''),(57487,39226,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(57488,39226,'blocks_4_tabs_1_tab_content',''),(57489,39226,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(57490,39226,'blocks_4_tabs_1_tab_image','39223'),(57491,39226,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(57492,39226,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(57493,39226,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(57494,39226,'blocks_4_tabs_2_tab_content_title',''),(57495,39226,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(57496,39226,'blocks_4_tabs_2_tab_content_heading','Locations'),(57497,39226,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(57498,39226,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(57499,39226,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(57500,39226,'blocks_4_tabs_2_tab_content_actions',''),(57501,39226,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(57502,39226,'blocks_4_tabs_2_tab_content',''),(57503,39226,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(57504,39226,'blocks_4_tabs_2_tab_image','39224'),(57505,39226,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(57506,39226,'blocks_4_tabs','3'),(57507,39226,'_blocks_4_tabs','field_6177cff281419'),(57508,39226,'blocks_5_acfe_flexible_toggle',''),(57509,39226,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(57510,39226,'blocks_5_acfe_flexible_layout_title','Text Block'),(57511,39226,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(57512,39226,'blocks_5_options_theme','#b61234'),(57513,39226,'_blocks_5_options_theme','field_6176830e2ad17'),(57514,39226,'blocks_5_options',''),(57515,39226,'_blocks_5_options','field_6176830e2ad16'),(57516,39226,'blocks_5_text_block_heading','Fees & Funding Options'),(57517,39226,'_blocks_5_text_block_heading','field_617669d413097'),(57518,39226,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(57519,39226,'_blocks_5_text_block_content','field_617669ec13098'),(57520,39226,'blocks_6_acfe_flexible_toggle',''),(57521,39226,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(57522,39226,'blocks_6_acfe_flexible_layout_title','Icons'),(57523,39226,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(57524,39226,'blocks_6_options_theme','#b61234'),(57525,39226,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(57526,39226,'blocks_6_options_format','row'),(57527,39226,'_blocks_6_options_format','field_64bfde9a90690'),(57528,39226,'blocks_6_options',''),(57529,39226,'_blocks_6_options','field_64bfdd9b90684'),(57530,39226,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(57531,39226,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(57532,39226,'blocks_6_icon_row_items_0_label','Pay in Full'),(57533,39226,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(57534,39226,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(57535,39226,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(57536,39226,'blocks_6_icon_row_items_1_icon','finance.svg'),(57537,39226,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(57538,39226,'blocks_6_icon_row_items_1_label','0% finance'),(57539,39226,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(57540,39226,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(57541,39226,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(57542,39226,'blocks_6_icon_row_items_2_icon','deposit.svg'),(57543,39226,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(57544,39226,'blocks_6_icon_row_items_2_label','Deposit & balance'),(57545,39226,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(57546,39226,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(57547,39226,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(57548,39226,'blocks_6_icon_row_items','3'),(57549,39226,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(57550,39226,'blocks_7_acfe_flexible_toggle',''),(57551,39226,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(57552,39226,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(57553,39226,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(57554,39226,'blocks_7_testimonial_slider_content_title',''),(57555,39226,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(57556,39226,'blocks_7_testimonial_slider_content_heading','Testimonials'),(57557,39226,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(57558,39226,'blocks_7_testimonial_slider_content_text',''),(57559,39226,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(57560,39226,'blocks_7_testimonial_slider_content_actions',''),(57561,39226,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(57562,39226,'blocks_7_testimonial_slider_content',''),(57563,39226,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(57564,39226,'blocks_7_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(57565,39226,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(57566,39226,'blocks_7_testimonial_slider_ambassador_bool','0'),(57567,39226,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(57596,39227,'hide_hero','0'),(57597,39227,'_hide_hero','field_66a2380fcda39'),(57598,39227,'hero_title','Biomechanics and Personal Training'),(57599,39227,'_hero_title','field_617571fe285e8'),(57600,39227,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(57601,39227,'_hero_text','field_6175723c285e9'),(57602,39227,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(57603,39227,'_hero_actions_0_button','field_61757281285eb'),(57604,39227,'hero_actions','1'),(57605,39227,'_hero_actions','field_61757270285ea'),(57606,39227,'hero_style','default'),(57607,39227,'_hero_style','field_62051d9dc5324'),(57608,39227,'_thumbnail_id','39215'),(57609,39227,'__thumbnail_id','field_617570855ddaf'),(57610,39227,'hero_image_pos_x','right'),(57611,39227,'_hero_image_pos_x','field_62ec3d05390bb'),(57612,39227,'hero_image_pos_y','top'),(57613,39227,'_hero_image_pos_y','field_62ec3d05390bc'),(57614,39227,'hero_image_pos',''),(57615,39227,'_hero_image_pos','field_62ec3d05390ba'),(57616,39227,'fft_hide_from_listings','0'),(57617,39227,'_fft_hide_from_listings','field_61f1320446ab2'),(57618,39227,'fft_page_format','default'),(57619,39227,'_fft_page_format','field_61ae213f1f218'),(57620,39227,'fft_hide_nav','0'),(57621,39227,'_fft_hide_nav','field_635bd5e43527c'),(57622,39227,'fft_hide_header_call_to_action','0'),(57623,39227,'_fft_hide_header_call_to_action','field_635bd6723527d'),(57624,39227,'fft_page_sitemap','0'),(57625,39227,'_fft_page_sitemap','field_61af9b34e8181'),(57626,39227,'blocks','a:9:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:18:\"testimonial_slider\";i:8;s:10:\"accordions\";}'),(57627,39227,'_blocks','field_6176696113096'),(57628,39227,'blocks_0_acfe_flexible_toggle',''),(57629,39227,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(57630,39227,'blocks_0_acfe_flexible_layout_title','Steps'),(57631,39227,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(57632,39227,'blocks_0_row_content_title',''),(57633,39227,'_blocks_0_row_content_title','field_64888cd1e26e0'),(57634,39227,'blocks_0_row_content_heading','Benefits of training with us'),(57635,39227,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(57636,39227,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(57637,39227,'_blocks_0_row_content_text','field_64888ce2e26e2'),(57638,39227,'blocks_0_row_content_actions',''),(57639,39227,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(57640,39227,'blocks_0_row_content',''),(57641,39227,'_blocks_0_row_content','field_64888cb0e26df'),(57642,39227,'blocks_0_steps_0_icon','progression.svg'),(57643,39227,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(57644,39227,'blocks_0_steps_0_title','Earning potential'),(57645,39227,'_blocks_0_steps_0_title','field_64888d94e26e7'),(57646,39227,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(57647,39227,'_blocks_0_steps_0_text','field_64888d99e26e8'),(57648,39227,'blocks_0_steps_1_icon','support.svg'),(57649,39227,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(57650,39227,'blocks_0_steps_1_title','Lifetime Learning Promise'),(57651,39227,'_blocks_0_steps_1_title','field_64888d94e26e7'),(57652,39227,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(57653,39227,'_blocks_0_steps_1_text','field_64888d99e26e8'),(57654,39227,'blocks_0_steps_2_icon','qualification.svg'),(57655,39227,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(57656,39227,'blocks_0_steps_2_title','Evidence based hands on learning'),(57657,39227,'_blocks_0_steps_2_title','field_64888d94e26e7'),(57658,39227,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(57659,39227,'_blocks_0_steps_2_text','field_64888d99e26e8'),(57660,39227,'blocks_0_steps_3_icon','leaders.svg'),(57661,39227,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(57662,39227,'blocks_0_steps_3_title','Stand out from the crowd'),(57663,39227,'_blocks_0_steps_3_title','field_64888d94e26e7'),(57664,39227,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(57665,39227,'_blocks_0_steps_3_text','field_64888d99e26e8'),(57666,39227,'blocks_0_steps','4'),(57667,39227,'_blocks_0_steps','field_64888d44e26e5'),(57668,39227,'blocks_1_acfe_flexible_toggle',''),(57669,39227,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(57670,39227,'blocks_1_acfe_flexible_layout_title','Video'),(57671,39227,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(57672,39227,'blocks_1_size','large'),(57673,39227,'_blocks_1_size','field_6487038f297c1'),(57674,39227,'blocks_1_row_content_title',''),(57675,39227,'_blocks_1_row_content_title','field_64870132a865d'),(57676,39227,'blocks_1_row_content_heading',''),(57677,39227,'_blocks_1_row_content_heading','field_64870142a865e'),(57678,39227,'blocks_1_row_content_text',''),(57679,39227,'_blocks_1_row_content_text','field_64870148a865f'),(57680,39227,'blocks_1_row_content',''),(57681,39227,'_blocks_1_row_content','field_6487008ba865c'),(57682,39227,'blocks_1_video_src',''),(57683,39227,'_blocks_1_video_src','field_6193c4a98ec07'),(57684,39227,'blocks_1_video_thumbnail',''),(57685,39227,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(57686,39227,'blocks_2_acfe_flexible_toggle',''),(57687,39227,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(57688,39227,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(57689,39227,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(57690,39227,'blocks_2_options_theme','#ffffff'),(57691,39227,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(57692,39227,'blocks_2_options_reverse','0'),(57693,39227,'_blocks_2_options_reverse','field_61768049bb8ac'),(57694,39227,'blocks_2_options',''),(57695,39227,'_blocks_2_options','field_617682517c334'),(57696,39227,'blocks_2_split_5050_image','39220'),(57697,39227,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(57698,39227,'blocks_2_split_5050_video',''),(57699,39227,'_blocks_2_split_5050_video','field_6239f3160848a'),(57700,39227,'blocks_2_split_5050_content_title',''),(57701,39227,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(57702,39227,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a PT'),(57703,39227,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(57704,39227,'blocks_2_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(57705,39227,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(57706,39227,'blocks_2_split_5050_content_actions',''),(57707,39227,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(57708,39227,'blocks_2_split_5050_content',''),(57709,39227,'_blocks_2_split_5050_content','field_61767afceb8ba'),(57710,39227,'blocks_3_acfe_flexible_toggle',''),(57711,39227,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(57712,39227,'blocks_3_acfe_flexible_layout_title','Form'),(57713,39227,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(57714,39227,'blocks_3_row_content_format','standard'),(57715,39227,'_blocks_3_row_content_format','field_6481ead962881'),(57716,39227,'blocks_3_row_content_title',''),(57717,39227,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(57718,39227,'blocks_3_row_content_heading','Enquire Today'),(57719,39227,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(57720,39227,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(57721,39227,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(57722,39227,'blocks_3_row_content_actions',''),(57723,39227,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(57724,39227,'blocks_3_row_content',''),(57725,39227,'_blocks_3_row_content','field_61a0f5f5b3db0'),(57726,39227,'blocks_3_row_form',''),(57727,39227,'_blocks_3_row_form','field_61a4ff2c0b08e'),(57728,39227,'blocks_3_row_form_button_label',''),(57729,39227,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(57730,39227,'blocks_4_acfe_flexible_toggle',''),(57731,39227,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(57732,39227,'blocks_4_acfe_flexible_layout_title','Tabs'),(57733,39227,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(57734,39227,'blocks_4_options_theme','#ffffff'),(57735,39227,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(57736,39227,'blocks_4_options',''),(57737,39227,'_blocks_4_options','field_6177cfcd8140f'),(57738,39227,'blocks_4_tabs_0_tab_label','What will I learn ?'),(57739,39227,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(57740,39227,'blocks_4_tabs_0_tab_content_title',''),(57741,39227,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(57742,39227,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(57743,39227,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(57744,39227,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(57745,39227,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(57746,39227,'blocks_4_tabs_0_tab_content_actions',''),(57747,39227,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(57748,39227,'blocks_4_tabs_0_tab_content',''),(57749,39227,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(57750,39227,'blocks_4_tabs_0_tab_image','39076'),(57751,39227,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(57752,39227,'blocks_4_tabs_1_tab_label','What do I need ?'),(57753,39227,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(57754,39227,'blocks_4_tabs_1_tab_content_title',''),(57755,39227,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(57756,39227,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(57757,39227,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(57758,39227,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(57759,39227,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(57760,39227,'blocks_4_tabs_1_tab_content_actions',''),(57761,39227,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(57762,39227,'blocks_4_tabs_1_tab_content',''),(57763,39227,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(57764,39227,'blocks_4_tabs_1_tab_image','39223'),(57765,39227,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(57766,39227,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(57767,39227,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(57768,39227,'blocks_4_tabs_2_tab_content_title',''),(57769,39227,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(57770,39227,'blocks_4_tabs_2_tab_content_heading','Locations'),(57771,39227,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(57772,39227,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(57773,39227,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(57774,39227,'blocks_4_tabs_2_tab_content_actions',''),(57775,39227,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(57776,39227,'blocks_4_tabs_2_tab_content',''),(57777,39227,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(57778,39227,'blocks_4_tabs_2_tab_image','39224'),(57779,39227,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(57780,39227,'blocks_4_tabs','3'),(57781,39227,'_blocks_4_tabs','field_6177cff281419'),(57782,39227,'blocks_5_acfe_flexible_toggle',''),(57783,39227,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(57784,39227,'blocks_5_acfe_flexible_layout_title','Text Block'),(57785,39227,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(57786,39227,'blocks_5_options_theme','#b61234'),(57787,39227,'_blocks_5_options_theme','field_6176830e2ad17'),(57788,39227,'blocks_5_options',''),(57789,39227,'_blocks_5_options','field_6176830e2ad16'),(57790,39227,'blocks_5_text_block_heading','Fees & Funding Options'),(57791,39227,'_blocks_5_text_block_heading','field_617669d413097'),(57792,39227,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(57793,39227,'_blocks_5_text_block_content','field_617669ec13098'),(57794,39227,'blocks_6_acfe_flexible_toggle',''),(57795,39227,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(57796,39227,'blocks_6_acfe_flexible_layout_title','Icons'),(57797,39227,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(57798,39227,'blocks_6_options_theme','#b61234'),(57799,39227,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(57800,39227,'blocks_6_options_format','row'),(57801,39227,'_blocks_6_options_format','field_64bfde9a90690'),(57802,39227,'blocks_6_options',''),(57803,39227,'_blocks_6_options','field_64bfdd9b90684'),(57804,39227,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(57805,39227,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(57806,39227,'blocks_6_icon_row_items_0_label','Pay in Full'),(57807,39227,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(57808,39227,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(57809,39227,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(57810,39227,'blocks_6_icon_row_items_1_icon','finance.svg'),(57811,39227,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(57812,39227,'blocks_6_icon_row_items_1_label','0% finance'),(57813,39227,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(57814,39227,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(57815,39227,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(57816,39227,'blocks_6_icon_row_items_2_icon','deposit.svg'),(57817,39227,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(57818,39227,'blocks_6_icon_row_items_2_label','Deposit & balance'),(57819,39227,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(57820,39227,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(57821,39227,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(57822,39227,'blocks_6_icon_row_items','3'),(57823,39227,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(57824,39227,'blocks_7_acfe_flexible_toggle',''),(57825,39227,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(57826,39227,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(57827,39227,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(57828,39227,'blocks_7_testimonial_slider_content_title',''),(57829,39227,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(57830,39227,'blocks_7_testimonial_slider_content_heading','Testimonials'),(57831,39227,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(57832,39227,'blocks_7_testimonial_slider_content_text',''),(57833,39227,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(57834,39227,'blocks_7_testimonial_slider_content_actions',''),(57835,39227,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(57836,39227,'blocks_7_testimonial_slider_content',''),(57837,39227,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(57838,39227,'blocks_7_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(57839,39227,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(57840,39227,'blocks_7_testimonial_slider_ambassador_bool','0'),(57841,39227,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(57842,39227,'blocks_8_acfe_flexible_toggle',''),(57843,39227,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(57844,39227,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(57845,39227,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(57846,39227,'blocks_8_options_theme','#ffffff'),(57847,39227,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(57848,39227,'blocks_8_options_state','0'),(57849,39227,'_blocks_8_options_state','field_6239fcb7508c5'),(57850,39227,'blocks_8_options',''),(57851,39227,'_blocks_8_options','field_6177e2991ac44'),(57852,39227,'blocks_8_content_title',''),(57853,39227,'_blocks_8_content_title','field_64d237e8bb1e2'),(57854,39227,'blocks_8_content_heading','Frequently asked questions '),(57855,39227,'_blocks_8_content_heading','field_64d237e8bb1e3'),(57856,39227,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(57857,39227,'_blocks_8_content_text','field_64d237e8bb1e4'),(57858,39227,'blocks_8_content_actions',''),(57859,39227,'_blocks_8_content_actions','field_64d237e8bb1e5'),(57860,39227,'blocks_8_content_align','left'),(57861,39227,'_blocks_8_content_align','field_64d2443e6b6aa'),(57862,39227,'blocks_8_content',''),(57863,39227,'_blocks_8_content','field_64d237e8bb1e1'),(57864,39227,'blocks_8_accordion_content','faqs'),(57865,39227,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(57866,39227,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(57867,39227,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(57868,39227,'blocks_8_actions',''),(57869,39227,'_blocks_8_actions','field_61a746a817f7a'),(57870,39228,'hide_hero','0'),(57871,39228,'_hide_hero','field_66a2380fcda39'),(57872,39228,'hero_title','Biomechanics and Personal Training'),(57873,39228,'_hero_title','field_617571fe285e8'),(57874,39228,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(57875,39228,'_hero_text','field_6175723c285e9'),(57876,39228,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(57877,39228,'_hero_actions_0_button','field_61757281285eb'),(57878,39228,'hero_actions','1'),(57879,39228,'_hero_actions','field_61757270285ea'),(57880,39228,'hero_style','default'),(57881,39228,'_hero_style','field_62051d9dc5324'),(57882,39228,'_thumbnail_id','39215'),(57883,39228,'__thumbnail_id','field_617570855ddaf'),(57884,39228,'hero_image_pos_x','right'),(57885,39228,'_hero_image_pos_x','field_62ec3d05390bb'),(57886,39228,'hero_image_pos_y','top'),(57887,39228,'_hero_image_pos_y','field_62ec3d05390bc'),(57888,39228,'hero_image_pos',''),(57889,39228,'_hero_image_pos','field_62ec3d05390ba'),(57890,39228,'fft_hide_from_listings','0'),(57891,39228,'_fft_hide_from_listings','field_61f1320446ab2'),(57892,39228,'fft_page_format','default'),(57893,39228,'_fft_page_format','field_61ae213f1f218'),(57894,39228,'fft_hide_nav','0'),(57895,39228,'_fft_hide_nav','field_635bd5e43527c'),(57896,39228,'fft_hide_header_call_to_action','0'),(57897,39228,'_fft_hide_header_call_to_action','field_635bd6723527d'),(57898,39228,'fft_page_sitemap','0'),(57899,39228,'_fft_page_sitemap','field_61af9b34e8181'),(57900,39228,'blocks','a:9:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:18:\"testimonial_slider\";i:8;s:10:\"accordions\";}'),(57901,39228,'_blocks','field_6176696113096'),(57902,39228,'blocks_0_acfe_flexible_toggle',''),(57903,39228,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(57904,39228,'blocks_0_acfe_flexible_layout_title','Steps'),(57905,39228,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(57906,39228,'blocks_0_row_content_title',''),(57907,39228,'_blocks_0_row_content_title','field_64888cd1e26e0'),(57908,39228,'blocks_0_row_content_heading','Benefits of training with us'),(57909,39228,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(57910,39228,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(57911,39228,'_blocks_0_row_content_text','field_64888ce2e26e2'),(57912,39228,'blocks_0_row_content_actions',''),(57913,39228,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(57914,39228,'blocks_0_row_content',''),(57915,39228,'_blocks_0_row_content','field_64888cb0e26df'),(57916,39228,'blocks_0_steps_0_icon','progression.svg'),(57917,39228,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(57918,39228,'blocks_0_steps_0_title','Earning potential'),(57919,39228,'_blocks_0_steps_0_title','field_64888d94e26e7'),(57920,39228,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(57921,39228,'_blocks_0_steps_0_text','field_64888d99e26e8'),(57922,39228,'blocks_0_steps_1_icon','support.svg'),(57923,39228,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(57924,39228,'blocks_0_steps_1_title','Lifetime Learning Promise'),(57925,39228,'_blocks_0_steps_1_title','field_64888d94e26e7'),(57926,39228,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(57927,39228,'_blocks_0_steps_1_text','field_64888d99e26e8'),(57928,39228,'blocks_0_steps_2_icon','qualification.svg'),(57929,39228,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(57930,39228,'blocks_0_steps_2_title','Evidence based hands on learning'),(57931,39228,'_blocks_0_steps_2_title','field_64888d94e26e7'),(57932,39228,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(57933,39228,'_blocks_0_steps_2_text','field_64888d99e26e8'),(57934,39228,'blocks_0_steps_3_icon','leaders.svg'),(57935,39228,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(57936,39228,'blocks_0_steps_3_title','Stand out from the crowd'),(57937,39228,'_blocks_0_steps_3_title','field_64888d94e26e7'),(57938,39228,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(57939,39228,'_blocks_0_steps_3_text','field_64888d99e26e8'),(57940,39228,'blocks_0_steps','4'),(57941,39228,'_blocks_0_steps','field_64888d44e26e5'),(57942,39228,'blocks_1_acfe_flexible_toggle',''),(57943,39228,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(57944,39228,'blocks_1_acfe_flexible_layout_title','Video'),(57945,39228,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(57946,39228,'blocks_1_size','large'),(57947,39228,'_blocks_1_size','field_6487038f297c1'),(57948,39228,'blocks_1_row_content_title',''),(57949,39228,'_blocks_1_row_content_title','field_64870132a865d'),(57950,39228,'blocks_1_row_content_heading',''),(57951,39228,'_blocks_1_row_content_heading','field_64870142a865e'),(57952,39228,'blocks_1_row_content_text',''),(57953,39228,'_blocks_1_row_content_text','field_64870148a865f'),(57954,39228,'blocks_1_row_content',''),(57955,39228,'_blocks_1_row_content','field_6487008ba865c'),(57956,39228,'blocks_1_video_src',''),(57957,39228,'_blocks_1_video_src','field_6193c4a98ec07'),(57958,39228,'blocks_1_video_thumbnail',''),(57959,39228,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(57960,39228,'blocks_2_acfe_flexible_toggle',''),(57961,39228,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(57962,39228,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(57963,39228,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(57964,39228,'blocks_2_options_theme','#ffffff'),(57965,39228,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(57966,39228,'blocks_2_options_reverse','0'),(57967,39228,'_blocks_2_options_reverse','field_61768049bb8ac'),(57968,39228,'blocks_2_options',''),(57969,39228,'_blocks_2_options','field_617682517c334'),(57970,39228,'blocks_2_split_5050_image','39220'),(57971,39228,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(57972,39228,'blocks_2_split_5050_video',''),(57973,39228,'_blocks_2_split_5050_video','field_6239f3160848a'),(57974,39228,'blocks_2_split_5050_content_title',''),(57975,39228,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(57976,39228,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a PT'),(57977,39228,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(57978,39228,'blocks_2_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(57979,39228,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(57980,39228,'blocks_2_split_5050_content_actions',''),(57981,39228,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(57982,39228,'blocks_2_split_5050_content',''),(57983,39228,'_blocks_2_split_5050_content','field_61767afceb8ba'),(57984,39228,'blocks_3_acfe_flexible_toggle',''),(57985,39228,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(57986,39228,'blocks_3_acfe_flexible_layout_title','Form'),(57987,39228,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(57988,39228,'blocks_3_row_content_format','standard'),(57989,39228,'_blocks_3_row_content_format','field_6481ead962881'),(57990,39228,'blocks_3_row_content_title',''),(57991,39228,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(57992,39228,'blocks_3_row_content_heading','Enquire Today'),(57993,39228,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(57994,39228,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(57995,39228,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(57996,39228,'blocks_3_row_content_actions',''),(57997,39228,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(57998,39228,'blocks_3_row_content',''),(57999,39228,'_blocks_3_row_content','field_61a0f5f5b3db0'),(58000,39228,'blocks_3_row_form',''),(58001,39228,'_blocks_3_row_form','field_61a4ff2c0b08e'),(58002,39228,'blocks_3_row_form_button_label',''),(58003,39228,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(58004,39228,'blocks_4_acfe_flexible_toggle',''),(58005,39228,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(58006,39228,'blocks_4_acfe_flexible_layout_title','Tabs'),(58007,39228,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(58008,39228,'blocks_4_options_theme','#ffffff'),(58009,39228,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(58010,39228,'blocks_4_options',''),(58011,39228,'_blocks_4_options','field_6177cfcd8140f'),(58012,39228,'blocks_4_tabs_0_tab_label','What will I learn ?'),(58013,39228,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(58014,39228,'blocks_4_tabs_0_tab_content_title',''),(58015,39228,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(58016,39228,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(58017,39228,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(58018,39228,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(58019,39228,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(58020,39228,'blocks_4_tabs_0_tab_content_actions',''),(58021,39228,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(58022,39228,'blocks_4_tabs_0_tab_content',''),(58023,39228,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(58024,39228,'blocks_4_tabs_0_tab_image','39076'),(58025,39228,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(58026,39228,'blocks_4_tabs_1_tab_label','What do I need ?'),(58027,39228,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(58028,39228,'blocks_4_tabs_1_tab_content_title',''),(58029,39228,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(58030,39228,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(58031,39228,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(58032,39228,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(58033,39228,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(58034,39228,'blocks_4_tabs_1_tab_content_actions',''),(58035,39228,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(58036,39228,'blocks_4_tabs_1_tab_content',''),(58037,39228,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(58038,39228,'blocks_4_tabs_1_tab_image','39223'),(58039,39228,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(58040,39228,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(58041,39228,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(58042,39228,'blocks_4_tabs_2_tab_content_title',''),(58043,39228,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(58044,39228,'blocks_4_tabs_2_tab_content_heading','Locations'),(58045,39228,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(58046,39228,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(58047,39228,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(58048,39228,'blocks_4_tabs_2_tab_content_actions',''),(58049,39228,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(58050,39228,'blocks_4_tabs_2_tab_content',''),(58051,39228,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(58052,39228,'blocks_4_tabs_2_tab_image','39224'),(58053,39228,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(58054,39228,'blocks_4_tabs','3'),(58055,39228,'_blocks_4_tabs','field_6177cff281419'),(58056,39228,'blocks_5_acfe_flexible_toggle',''),(58057,39228,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(58058,39228,'blocks_5_acfe_flexible_layout_title','Text Block'),(58059,39228,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(58060,39228,'blocks_5_options_theme','#b61234'),(58061,39228,'_blocks_5_options_theme','field_6176830e2ad17'),(58062,39228,'blocks_5_options',''),(58063,39228,'_blocks_5_options','field_6176830e2ad16'),(58064,39228,'blocks_5_text_block_heading','Fees & Funding Options'),(58065,39228,'_blocks_5_text_block_heading','field_617669d413097'),(58066,39228,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(58067,39228,'_blocks_5_text_block_content','field_617669ec13098'),(58068,39228,'blocks_6_acfe_flexible_toggle',''),(58069,39228,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(58070,39228,'blocks_6_acfe_flexible_layout_title','Icons'),(58071,39228,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(58072,39228,'blocks_6_options_theme','#b61234'),(58073,39228,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(58074,39228,'blocks_6_options_format','row'),(58075,39228,'_blocks_6_options_format','field_64bfde9a90690'),(58076,39228,'blocks_6_options',''),(58077,39228,'_blocks_6_options','field_64bfdd9b90684'),(58078,39228,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(58079,39228,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(58080,39228,'blocks_6_icon_row_items_0_label','Pay in Full'),(58081,39228,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(58082,39228,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(58083,39228,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(58084,39228,'blocks_6_icon_row_items_1_icon','finance.svg'),(58085,39228,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(58086,39228,'blocks_6_icon_row_items_1_label','0% finance'),(58087,39228,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(58088,39228,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(58089,39228,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(58090,39228,'blocks_6_icon_row_items_2_icon','deposit.svg'),(58091,39228,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(58092,39228,'blocks_6_icon_row_items_2_label','Deposit & balance'),(58093,39228,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(58094,39228,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(58095,39228,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(58096,39228,'blocks_6_icon_row_items','3'),(58097,39228,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(58098,39228,'blocks_7_acfe_flexible_toggle',''),(58099,39228,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(58100,39228,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(58101,39228,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(58102,39228,'blocks_7_testimonial_slider_content_title',''),(58103,39228,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(58104,39228,'blocks_7_testimonial_slider_content_heading','Testimonials'),(58105,39228,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(58106,39228,'blocks_7_testimonial_slider_content_text',''),(58107,39228,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(58108,39228,'blocks_7_testimonial_slider_content_actions',''),(58109,39228,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(58110,39228,'blocks_7_testimonial_slider_content',''),(58111,39228,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(58112,39228,'blocks_7_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(58113,39228,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(58114,39228,'blocks_7_testimonial_slider_ambassador_bool','0'),(58115,39228,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(58116,39228,'blocks_8_acfe_flexible_toggle',''),(58117,39228,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(58118,39228,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(58119,39228,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(58120,39228,'blocks_8_options_theme','#f5f5f5'),(58121,39228,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(58122,39228,'blocks_8_options_state','0'),(58123,39228,'_blocks_8_options_state','field_6239fcb7508c5'),(58124,39228,'blocks_8_options',''),(58125,39228,'_blocks_8_options','field_6177e2991ac44'),(58126,39228,'blocks_8_content_title',''),(58127,39228,'_blocks_8_content_title','field_64d237e8bb1e2'),(58128,39228,'blocks_8_content_heading','Frequently asked questions '),(58129,39228,'_blocks_8_content_heading','field_64d237e8bb1e3'),(58130,39228,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(58131,39228,'_blocks_8_content_text','field_64d237e8bb1e4'),(58132,39228,'blocks_8_content_actions',''),(58133,39228,'_blocks_8_content_actions','field_64d237e8bb1e5'),(58134,39228,'blocks_8_content_align','left'),(58135,39228,'_blocks_8_content_align','field_64d2443e6b6aa'),(58136,39228,'blocks_8_content',''),(58137,39228,'_blocks_8_content','field_64d237e8bb1e1'),(58138,39228,'blocks_8_accordion_content','faqs'),(58139,39228,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(58140,39228,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(58141,39228,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(58142,39228,'blocks_8_actions',''),(58143,39228,'_blocks_8_actions','field_61a746a817f7a'),(58144,39229,'hide_hero','0'),(58145,39229,'_hide_hero','field_66a2380fcda39'),(58146,39229,'hero_title','Biomechanics and Personal Training'),(58147,39229,'_hero_title','field_617571fe285e8'),(58148,39229,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(58149,39229,'_hero_text','field_6175723c285e9'),(58150,39229,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(58151,39229,'_hero_actions_0_button','field_61757281285eb'),(58152,39229,'hero_actions','1'),(58153,39229,'_hero_actions','field_61757270285ea'),(58154,39229,'hero_style','default'),(58155,39229,'_hero_style','field_62051d9dc5324'),(58156,39229,'_thumbnail_id','39215'),(58157,39229,'__thumbnail_id','field_617570855ddaf'),(58158,39229,'hero_image_pos_x','right'),(58159,39229,'_hero_image_pos_x','field_62ec3d05390bb'),(58160,39229,'hero_image_pos_y','top'),(58161,39229,'_hero_image_pos_y','field_62ec3d05390bc'),(58162,39229,'hero_image_pos',''),(58163,39229,'_hero_image_pos','field_62ec3d05390ba'),(58164,39229,'fft_hide_from_listings','0'),(58165,39229,'_fft_hide_from_listings','field_61f1320446ab2'),(58166,39229,'fft_page_format','default'),(58167,39229,'_fft_page_format','field_61ae213f1f218'),(58168,39229,'fft_hide_nav','0'),(58169,39229,'_fft_hide_nav','field_635bd5e43527c'),(58170,39229,'fft_hide_header_call_to_action','0'),(58171,39229,'_fft_hide_header_call_to_action','field_635bd6723527d'),(58172,39229,'fft_page_sitemap','0'),(58173,39229,'_fft_page_sitemap','field_61af9b34e8181'),(58174,39229,'blocks','a:9:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:18:\"testimonial_slider\";i:8;s:10:\"accordions\";}'),(58175,39229,'_blocks','field_6176696113096'),(58176,39229,'blocks_0_acfe_flexible_toggle',''),(58177,39229,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(58178,39229,'blocks_0_acfe_flexible_layout_title','Steps'),(58179,39229,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(58180,39229,'blocks_0_row_content_title',''),(58181,39229,'_blocks_0_row_content_title','field_64888cd1e26e0'),(58182,39229,'blocks_0_row_content_heading','Benefits of training with us'),(58183,39229,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(58184,39229,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(58185,39229,'_blocks_0_row_content_text','field_64888ce2e26e2'),(58186,39229,'blocks_0_row_content_actions',''),(58187,39229,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(58188,39229,'blocks_0_row_content',''),(58189,39229,'_blocks_0_row_content','field_64888cb0e26df'),(58190,39229,'blocks_0_steps_0_icon','progression.svg'),(58191,39229,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(58192,39229,'blocks_0_steps_0_title','Earning potential'),(58193,39229,'_blocks_0_steps_0_title','field_64888d94e26e7'),(58194,39229,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(58195,39229,'_blocks_0_steps_0_text','field_64888d99e26e8'),(58196,39229,'blocks_0_steps_1_icon','support.svg'),(58197,39229,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(58198,39229,'blocks_0_steps_1_title','Lifetime Learning Promise'),(58199,39229,'_blocks_0_steps_1_title','field_64888d94e26e7'),(58200,39229,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(58201,39229,'_blocks_0_steps_1_text','field_64888d99e26e8'),(58202,39229,'blocks_0_steps_2_icon','qualification.svg'),(58203,39229,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(58204,39229,'blocks_0_steps_2_title','Evidence based hands on learning'),(58205,39229,'_blocks_0_steps_2_title','field_64888d94e26e7'),(58206,39229,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(58207,39229,'_blocks_0_steps_2_text','field_64888d99e26e8'),(58208,39229,'blocks_0_steps_3_icon','leaders.svg'),(58209,39229,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(58210,39229,'blocks_0_steps_3_title','Stand out from the crowd'),(58211,39229,'_blocks_0_steps_3_title','field_64888d94e26e7'),(58212,39229,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(58213,39229,'_blocks_0_steps_3_text','field_64888d99e26e8'),(58214,39229,'blocks_0_steps','4'),(58215,39229,'_blocks_0_steps','field_64888d44e26e5'),(58216,39229,'blocks_1_acfe_flexible_toggle',''),(58217,39229,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(58218,39229,'blocks_1_acfe_flexible_layout_title','Video'),(58219,39229,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(58220,39229,'blocks_1_size','large'),(58221,39229,'_blocks_1_size','field_6487038f297c1'),(58222,39229,'blocks_1_row_content_title',''),(58223,39229,'_blocks_1_row_content_title','field_64870132a865d'),(58224,39229,'blocks_1_row_content_heading',''),(58225,39229,'_blocks_1_row_content_heading','field_64870142a865e'),(58226,39229,'blocks_1_row_content_text',''),(58227,39229,'_blocks_1_row_content_text','field_64870148a865f'),(58228,39229,'blocks_1_row_content',''),(58229,39229,'_blocks_1_row_content','field_6487008ba865c'),(58230,39229,'blocks_1_video_src',''),(58231,39229,'_blocks_1_video_src','field_6193c4a98ec07'),(58232,39229,'blocks_1_video_thumbnail',''),(58233,39229,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(58234,39229,'blocks_2_acfe_flexible_toggle',''),(58235,39229,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(58236,39229,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(58237,39229,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(58238,39229,'blocks_2_options_theme','#ffffff'),(58239,39229,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(58240,39229,'blocks_2_options_reverse','0'),(58241,39229,'_blocks_2_options_reverse','field_61768049bb8ac'),(58242,39229,'blocks_2_options',''),(58243,39229,'_blocks_2_options','field_617682517c334'),(58244,39229,'blocks_2_split_5050_image','39220'),(58245,39229,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(58246,39229,'blocks_2_split_5050_video',''),(58247,39229,'_blocks_2_split_5050_video','field_6239f3160848a'),(58248,39229,'blocks_2_split_5050_content_title',''),(58249,39229,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(58250,39229,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a PT'),(58251,39229,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(58252,39229,'blocks_2_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(58253,39229,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(58254,39229,'blocks_2_split_5050_content_actions',''),(58255,39229,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(58256,39229,'blocks_2_split_5050_content',''),(58257,39229,'_blocks_2_split_5050_content','field_61767afceb8ba'),(58258,39229,'blocks_3_acfe_flexible_toggle',''),(58259,39229,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(58260,39229,'blocks_3_acfe_flexible_layout_title','Form'),(58261,39229,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(58262,39229,'blocks_3_row_content_format','standard'),(58263,39229,'_blocks_3_row_content_format','field_6481ead962881'),(58264,39229,'blocks_3_row_content_title',''),(58265,39229,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(58266,39229,'blocks_3_row_content_heading','Enquire Today'),(58267,39229,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(58268,39229,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(58269,39229,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(58270,39229,'blocks_3_row_content_actions',''),(58271,39229,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(58272,39229,'blocks_3_row_content',''),(58273,39229,'_blocks_3_row_content','field_61a0f5f5b3db0'),(58274,39229,'blocks_3_row_form',''),(58275,39229,'_blocks_3_row_form','field_61a4ff2c0b08e'),(58276,39229,'blocks_3_row_form_button_label',''),(58277,39229,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(58278,39229,'blocks_4_acfe_flexible_toggle',''),(58279,39229,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(58280,39229,'blocks_4_acfe_flexible_layout_title','Tabs'),(58281,39229,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(58282,39229,'blocks_4_options_theme','#ffffff'),(58283,39229,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(58284,39229,'blocks_4_options',''),(58285,39229,'_blocks_4_options','field_6177cfcd8140f'),(58286,39229,'blocks_4_tabs_0_tab_label','What will I learn ?'),(58287,39229,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(58288,39229,'blocks_4_tabs_0_tab_content_title',''),(58289,39229,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(58290,39229,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(58291,39229,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(58292,39229,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(58293,39229,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(58294,39229,'blocks_4_tabs_0_tab_content_actions',''),(58295,39229,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(58296,39229,'blocks_4_tabs_0_tab_content',''),(58297,39229,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(58298,39229,'blocks_4_tabs_0_tab_image','39076'),(58299,39229,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(58300,39229,'blocks_4_tabs_1_tab_label','What do I need ?'),(58301,39229,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(58302,39229,'blocks_4_tabs_1_tab_content_title',''),(58303,39229,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(58304,39229,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(58305,39229,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(58306,39229,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(58307,39229,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(58308,39229,'blocks_4_tabs_1_tab_content_actions',''),(58309,39229,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(58310,39229,'blocks_4_tabs_1_tab_content',''),(58311,39229,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(58312,39229,'blocks_4_tabs_1_tab_image','39223'),(58313,39229,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(58314,39229,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(58315,39229,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(58316,39229,'blocks_4_tabs_2_tab_content_title',''),(58317,39229,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(58318,39229,'blocks_4_tabs_2_tab_content_heading','Locations'),(58319,39229,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(58320,39229,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(58321,39229,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(58322,39229,'blocks_4_tabs_2_tab_content_actions',''),(58323,39229,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(58324,39229,'blocks_4_tabs_2_tab_content',''),(58325,39229,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(58326,39229,'blocks_4_tabs_2_tab_image','39224'),(58327,39229,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(58328,39229,'blocks_4_tabs','3'),(58329,39229,'_blocks_4_tabs','field_6177cff281419'),(58330,39229,'blocks_5_acfe_flexible_toggle',''),(58331,39229,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(58332,39229,'blocks_5_acfe_flexible_layout_title','Text Block'),(58333,39229,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(58334,39229,'blocks_5_options_theme','#b61234'),(58335,39229,'_blocks_5_options_theme','field_6176830e2ad17'),(58336,39229,'blocks_5_options',''),(58337,39229,'_blocks_5_options','field_6176830e2ad16'),(58338,39229,'blocks_5_text_block_heading','Fees & Funding Options'),(58339,39229,'_blocks_5_text_block_heading','field_617669d413097'),(58340,39229,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(58341,39229,'_blocks_5_text_block_content','field_617669ec13098'),(58342,39229,'blocks_6_acfe_flexible_toggle',''),(58343,39229,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(58344,39229,'blocks_6_acfe_flexible_layout_title','Icons'),(58345,39229,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(58346,39229,'blocks_6_options_theme','#b61234'),(58347,39229,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(58348,39229,'blocks_6_options_format','row'),(58349,39229,'_blocks_6_options_format','field_64bfde9a90690'),(58350,39229,'blocks_6_options',''),(58351,39229,'_blocks_6_options','field_64bfdd9b90684'),(58352,39229,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(58353,39229,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(58354,39229,'blocks_6_icon_row_items_0_label','Pay in Full'),(58355,39229,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(58356,39229,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(58357,39229,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(58358,39229,'blocks_6_icon_row_items_1_icon','finance.svg'),(58359,39229,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(58360,39229,'blocks_6_icon_row_items_1_label','0% finance'),(58361,39229,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(58362,39229,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(58363,39229,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(58364,39229,'blocks_6_icon_row_items_2_icon','deposit.svg'),(58365,39229,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(58366,39229,'blocks_6_icon_row_items_2_label','Deposit & balance'),(58367,39229,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(58368,39229,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(58369,39229,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(58370,39229,'blocks_6_icon_row_items','3'),(58371,39229,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(58372,39229,'blocks_7_acfe_flexible_toggle',''),(58373,39229,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(58374,39229,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(58375,39229,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(58376,39229,'blocks_7_testimonial_slider_content_title',''),(58377,39229,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(58378,39229,'blocks_7_testimonial_slider_content_heading','Testimonials'),(58379,39229,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(58380,39229,'blocks_7_testimonial_slider_content_text',''),(58381,39229,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(58382,39229,'blocks_7_testimonial_slider_content_actions',''),(58383,39229,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(58384,39229,'blocks_7_testimonial_slider_content',''),(58385,39229,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(58386,39229,'blocks_7_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(58387,39229,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(58388,39229,'blocks_7_testimonial_slider_ambassador_bool','0'),(58389,39229,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(58390,39229,'blocks_8_acfe_flexible_toggle',''),(58391,39229,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(58392,39229,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(58393,39229,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(58394,39229,'blocks_8_options_theme','#ffffff'),(58395,39229,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(58396,39229,'blocks_8_options_state','0'),(58397,39229,'_blocks_8_options_state','field_6239fcb7508c5'),(58398,39229,'blocks_8_options',''),(58399,39229,'_blocks_8_options','field_6177e2991ac44'),(58400,39229,'blocks_8_content_title',''),(58401,39229,'_blocks_8_content_title','field_64d237e8bb1e2'),(58402,39229,'blocks_8_content_heading','Frequently asked questions '),(58403,39229,'_blocks_8_content_heading','field_64d237e8bb1e3'),(58404,39229,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(58405,39229,'_blocks_8_content_text','field_64d237e8bb1e4'),(58406,39229,'blocks_8_content_actions',''),(58407,39229,'_blocks_8_content_actions','field_64d237e8bb1e5'),(58408,39229,'blocks_8_content_align','left'),(58409,39229,'_blocks_8_content_align','field_64d2443e6b6aa'),(58410,39229,'blocks_8_content',''),(58411,39229,'_blocks_8_content','field_64d237e8bb1e1'),(58412,39229,'blocks_8_accordion_content','faqs'),(58413,39229,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(58414,39229,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(58415,39229,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(58416,39229,'blocks_8_actions',''),(58417,39229,'_blocks_8_actions','field_61a746a817f7a'),(58534,39231,'_edit_lock','1741944262:18'),(58535,39231,'_edit_last','18'),(58536,39231,'hide_hero','0'),(58537,39231,'_hide_hero','field_66a2380fcda39'),(58538,39231,'hero_title','Biomechanics and Pilates'),(58539,39231,'_hero_title','field_617571fe285e8'),(58540,39231,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(58541,39231,'_hero_text','field_6175723c285e9'),(58542,39231,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39231-3\";s:6:\"target\";s:0:\"\";}'),(58543,39231,'_hero_actions_0_button','field_61757281285eb'),(58544,39231,'hero_actions','1'),(58545,39231,'_hero_actions','field_61757270285ea'),(58546,39231,'hero_style','default'),(58547,39231,'_hero_style','field_62051d9dc5324'),(58548,39231,'_thumbnail_id','39243'),(58549,39231,'__thumbnail_id','field_617570855ddaf'),(58550,39231,'hero_image_pos_x','right'),(58551,39231,'_hero_image_pos_x','field_62ec3d05390bb'),(58552,39231,'hero_image_pos_y','top'),(58553,39231,'_hero_image_pos_y','field_62ec3d05390bc'),(58554,39231,'hero_image_pos',''),(58555,39231,'_hero_image_pos','field_62ec3d05390ba'),(58556,39231,'fft_hide_from_listings','0'),(58557,39231,'_fft_hide_from_listings','field_61f1320446ab2'),(58558,39231,'fft_page_format','default'),(58559,39231,'_fft_page_format','field_61ae213f1f218'),(58560,39231,'fft_hide_nav','0'),(58561,39231,'_fft_hide_nav','field_635bd5e43527c'),(58562,39231,'fft_hide_header_call_to_action','0'),(58563,39231,'_fft_hide_header_call_to_action','field_635bd6723527d'),(58564,39231,'fft_page_sitemap','0'),(58565,39231,'_fft_page_sitemap','field_61af9b34e8181'),(58566,39231,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:18:\"testimonial_slider\";}'),(58567,39231,'_blocks','field_6176696113096'),(58568,39231,'_yoast_wpseo_focuskw','Biomechanics and Pilates'),(58569,39231,'_yoast_wpseo_title','Pilates | Biomechanics Education'),(58570,39231,'_yoast_wpseo_linkdex','44'),(58571,39231,'_yoast_wpseo_estimated-reading-time-minutes','1'),(58866,39233,'hide_hero','0'),(58867,39233,'_hide_hero','field_66a2380fcda39'),(58868,39233,'hero_title','Biomechanics and Personal Training'),(58869,39233,'_hero_title','field_617571fe285e8'),(58870,39233,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(58871,39233,'_hero_text','field_6175723c285e9'),(58872,39233,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(58873,39233,'_hero_actions_0_button','field_61757281285eb'),(58874,39233,'hero_actions','1'),(58875,39233,'_hero_actions','field_61757270285ea'),(58876,39233,'hero_style','default'),(58877,39233,'_hero_style','field_62051d9dc5324'),(58878,39233,'_thumbnail_id','39215'),(58879,39233,'__thumbnail_id','field_617570855ddaf'),(58880,39233,'hero_image_pos_x','right'),(58881,39233,'_hero_image_pos_x','field_62ec3d05390bb'),(58882,39233,'hero_image_pos_y','top'),(58883,39233,'_hero_image_pos_y','field_62ec3d05390bc'),(58884,39233,'hero_image_pos',''),(58885,39233,'_hero_image_pos','field_62ec3d05390ba'),(58886,39233,'fft_hide_from_listings','0'),(58887,39233,'_fft_hide_from_listings','field_61f1320446ab2'),(58888,39233,'fft_page_format','default'),(58889,39233,'_fft_page_format','field_61ae213f1f218'),(58890,39233,'fft_hide_nav','0'),(58891,39233,'_fft_hide_nav','field_635bd5e43527c'),(58892,39233,'fft_hide_header_call_to_action','0'),(58893,39233,'_fft_hide_header_call_to_action','field_635bd6723527d'),(58894,39233,'fft_page_sitemap','0'),(58895,39233,'_fft_page_sitemap','field_61af9b34e8181'),(58896,39233,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(58897,39233,'_blocks','field_6176696113096'),(58898,39233,'blocks_0_acfe_flexible_toggle',''),(58899,39233,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(58900,39233,'blocks_0_acfe_flexible_layout_title','Steps'),(58901,39233,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(58902,39233,'blocks_0_row_content_title',''),(58903,39233,'_blocks_0_row_content_title','field_64888cd1e26e0'),(58904,39233,'blocks_0_row_content_heading','Benefits of training with us'),(58905,39233,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(58906,39233,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(58907,39233,'_blocks_0_row_content_text','field_64888ce2e26e2'),(58908,39233,'blocks_0_row_content_actions',''),(58909,39233,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(58910,39233,'blocks_0_row_content',''),(58911,39233,'_blocks_0_row_content','field_64888cb0e26df'),(58912,39233,'blocks_0_steps_0_icon','progression.svg'),(58913,39233,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(58914,39233,'blocks_0_steps_0_title','Earning potential'),(58915,39233,'_blocks_0_steps_0_title','field_64888d94e26e7'),(58916,39233,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(58917,39233,'_blocks_0_steps_0_text','field_64888d99e26e8'),(58918,39233,'blocks_0_steps_1_icon','support.svg'),(58919,39233,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(58920,39233,'blocks_0_steps_1_title','Lifetime Learning Promise'),(58921,39233,'_blocks_0_steps_1_title','field_64888d94e26e7'),(58922,39233,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(58923,39233,'_blocks_0_steps_1_text','field_64888d99e26e8'),(58924,39233,'blocks_0_steps_2_icon','qualification.svg'),(58925,39233,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(58926,39233,'blocks_0_steps_2_title','Evidence based hands on learning'),(58927,39233,'_blocks_0_steps_2_title','field_64888d94e26e7'),(58928,39233,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(58929,39233,'_blocks_0_steps_2_text','field_64888d99e26e8'),(58930,39233,'blocks_0_steps_3_icon','leaders.svg'),(58931,39233,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(58932,39233,'blocks_0_steps_3_title','Stand out from the crowd'),(58933,39233,'_blocks_0_steps_3_title','field_64888d94e26e7'),(58934,39233,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(58935,39233,'_blocks_0_steps_3_text','field_64888d99e26e8'),(58936,39233,'blocks_0_steps','4'),(58937,39233,'_blocks_0_steps','field_64888d44e26e5'),(58938,39233,'blocks_1_acfe_flexible_toggle',''),(58939,39233,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(58940,39233,'blocks_1_acfe_flexible_layout_title','Video'),(58941,39233,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(58942,39233,'blocks_1_size','large'),(58943,39233,'_blocks_1_size','field_6487038f297c1'),(58944,39233,'blocks_1_row_content_title',''),(58945,39233,'_blocks_1_row_content_title','field_64870132a865d'),(58946,39233,'blocks_1_row_content_heading',''),(58947,39233,'_blocks_1_row_content_heading','field_64870142a865e'),(58948,39233,'blocks_1_row_content_text',''),(58949,39233,'_blocks_1_row_content_text','field_64870148a865f'),(58950,39233,'blocks_1_row_content',''),(58951,39233,'_blocks_1_row_content','field_6487008ba865c'),(58952,39233,'blocks_1_video_src',''),(58953,39233,'_blocks_1_video_src','field_6193c4a98ec07'),(58954,39233,'blocks_1_video_thumbnail',''),(58955,39233,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(58956,39233,'blocks_2_acfe_flexible_toggle',''),(58957,39233,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(58958,39233,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(58959,39233,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(58960,39233,'blocks_2_options_theme','#ffffff'),(58961,39233,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(58962,39233,'blocks_2_options_reverse','0'),(58963,39233,'_blocks_2_options_reverse','field_61768049bb8ac'),(58964,39233,'blocks_2_options',''),(58965,39233,'_blocks_2_options','field_617682517c334'),(58966,39233,'blocks_2_split_5050_image','39220'),(58967,39233,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(58968,39233,'blocks_2_split_5050_video',''),(58969,39233,'_blocks_2_split_5050_video','field_6239f3160848a'),(58970,39233,'blocks_2_split_5050_content_title',''),(58971,39233,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(58972,39233,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(58973,39233,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(58974,39233,'blocks_2_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(58975,39233,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(58976,39233,'blocks_2_split_5050_content_actions',''),(58977,39233,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(58978,39233,'blocks_2_split_5050_content',''),(58979,39233,'_blocks_2_split_5050_content','field_61767afceb8ba'),(58980,39233,'blocks_3_acfe_flexible_toggle',''),(58981,39233,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(58982,39233,'blocks_3_acfe_flexible_layout_title','Form'),(58983,39233,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(58984,39233,'blocks_3_row_content_format','standard'),(58985,39233,'_blocks_3_row_content_format','field_6481ead962881'),(58986,39233,'blocks_3_row_content_title',''),(58987,39233,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(58988,39233,'blocks_3_row_content_heading','Enquire Today'),(58989,39233,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(58990,39233,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(58991,39233,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(58992,39233,'blocks_3_row_content_actions',''),(58993,39233,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(58994,39233,'blocks_3_row_content',''),(58995,39233,'_blocks_3_row_content','field_61a0f5f5b3db0'),(58996,39233,'blocks_3_row_form',''),(58997,39233,'_blocks_3_row_form','field_61a4ff2c0b08e'),(58998,39233,'blocks_3_row_form_button_label',''),(58999,39233,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(59000,39233,'blocks_4_acfe_flexible_toggle',''),(59001,39233,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(59002,39233,'blocks_4_acfe_flexible_layout_title','Tabs'),(59003,39233,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(59004,39233,'blocks_4_options_theme','#ffffff'),(59005,39233,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(59006,39233,'blocks_4_options',''),(59007,39233,'_blocks_4_options','field_6177cfcd8140f'),(59008,39233,'blocks_4_tabs_0_tab_label','What will I learn ?'),(59009,39233,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(59010,39233,'blocks_4_tabs_0_tab_content_title',''),(59011,39233,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(59012,39233,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(59013,39233,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(59014,39233,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(59015,39233,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(59016,39233,'blocks_4_tabs_0_tab_content_actions',''),(59017,39233,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(59018,39233,'blocks_4_tabs_0_tab_content',''),(59019,39233,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(59020,39233,'blocks_4_tabs_0_tab_image','39076'),(59021,39233,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(59022,39233,'blocks_4_tabs_1_tab_label','What do I need ?'),(59023,39233,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(59024,39233,'blocks_4_tabs_1_tab_content_title',''),(59025,39233,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(59026,39233,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(59027,39233,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(59028,39233,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(59029,39233,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(59030,39233,'blocks_4_tabs_1_tab_content_actions',''),(59031,39233,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(59032,39233,'blocks_4_tabs_1_tab_content',''),(59033,39233,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(59034,39233,'blocks_4_tabs_1_tab_image','39223'),(59035,39233,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(59036,39233,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(59037,39233,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(59038,39233,'blocks_4_tabs_2_tab_content_title',''),(59039,39233,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(59040,39233,'blocks_4_tabs_2_tab_content_heading','Locations'),(59041,39233,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(59042,39233,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(59043,39233,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(59044,39233,'blocks_4_tabs_2_tab_content_actions',''),(59045,39233,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(59046,39233,'blocks_4_tabs_2_tab_content',''),(59047,39233,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(59048,39233,'blocks_4_tabs_2_tab_image','39224'),(59049,39233,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(59050,39233,'blocks_4_tabs','3'),(59051,39233,'_blocks_4_tabs','field_6177cff281419'),(59052,39233,'blocks_5_acfe_flexible_toggle',''),(59053,39233,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(59054,39233,'blocks_5_acfe_flexible_layout_title','Text Block'),(59055,39233,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(59056,39233,'blocks_5_options_theme','#b61234'),(59057,39233,'_blocks_5_options_theme','field_6176830e2ad17'),(59058,39233,'blocks_5_options',''),(59059,39233,'_blocks_5_options','field_6176830e2ad16'),(59060,39233,'blocks_5_text_block_heading','Fees & Funding Options'),(59061,39233,'_blocks_5_text_block_heading','field_617669d413097'),(59062,39233,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(59063,39233,'_blocks_5_text_block_content','field_617669ec13098'),(59064,39233,'blocks_6_acfe_flexible_toggle',''),(59065,39233,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(59066,39233,'blocks_6_acfe_flexible_layout_title','Icons'),(59067,39233,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(59068,39233,'blocks_6_options_theme','#b61234'),(59069,39233,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(59070,39233,'blocks_6_options_format','row'),(59071,39233,'_blocks_6_options_format','field_64bfde9a90690'),(59072,39233,'blocks_6_options',''),(59073,39233,'_blocks_6_options','field_64bfdd9b90684'),(59074,39233,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(59075,39233,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(59076,39233,'blocks_6_icon_row_items_0_label','Pay in Full'),(59077,39233,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(59078,39233,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(59079,39233,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(59080,39233,'blocks_6_icon_row_items_1_icon','finance.svg'),(59081,39233,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(59082,39233,'blocks_6_icon_row_items_1_label','0% finance'),(59083,39233,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(59084,39233,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(59085,39233,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(59086,39233,'blocks_6_icon_row_items_2_icon','deposit.svg'),(59087,39233,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(59088,39233,'blocks_6_icon_row_items_2_label','Deposit & balance'),(59089,39233,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(59090,39233,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(59091,39233,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(59092,39233,'blocks_6_icon_row_items','3'),(59093,39233,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(59094,39233,'blocks_7_acfe_flexible_toggle',''),(59095,39233,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(59096,39233,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(59097,39233,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(59098,39233,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(59099,39233,'_blocks_7_content','field_6193c9b5eac84'),(59100,39233,'blocks_8_acfe_flexible_toggle',''),(59101,39233,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(59102,39233,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(59103,39233,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(59104,39233,'blocks_8_testimonial_slider_content_title',''),(59105,39233,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(59106,39233,'blocks_8_testimonial_slider_content_heading','Testimonials'),(59107,39233,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(59108,39233,'blocks_8_testimonial_slider_content_text',''),(59109,39233,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(59110,39233,'blocks_8_testimonial_slider_content_actions',''),(59111,39233,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(59112,39233,'blocks_8_testimonial_slider_content',''),(59113,39233,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(59114,39233,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(59115,39233,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(59116,39233,'blocks_8_testimonial_slider_ambassador_bool','0'),(59117,39233,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(59118,39233,'blocks_9_acfe_flexible_toggle',''),(59119,39233,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(59120,39233,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(59121,39233,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(59122,39233,'blocks_9_options_theme','#ffffff'),(59123,39233,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(59124,39233,'blocks_9_options_state','0'),(59125,39233,'_blocks_9_options_state','field_6239fcb7508c5'),(59126,39233,'blocks_9_options',''),(59127,39233,'_blocks_9_options','field_6177e2991ac44'),(59128,39233,'blocks_9_content_title',''),(59129,39233,'_blocks_9_content_title','field_64d237e8bb1e2'),(59130,39233,'blocks_9_content_heading','Frequently asked questions '),(59131,39233,'_blocks_9_content_heading','field_64d237e8bb1e3'),(59132,39233,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(59133,39233,'_blocks_9_content_text','field_64d237e8bb1e4'),(59134,39233,'blocks_9_content_actions',''),(59135,39233,'_blocks_9_content_actions','field_64d237e8bb1e5'),(59136,39233,'blocks_9_content_align','left'),(59137,39233,'_blocks_9_content_align','field_64d2443e6b6aa'),(59138,39233,'blocks_9_content',''),(59139,39233,'_blocks_9_content','field_64d237e8bb1e1'),(59140,39233,'blocks_9_accordion_content','faqs'),(59141,39233,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(59142,39233,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(59143,39233,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(59144,39233,'blocks_9_actions',''),(59145,39233,'_blocks_9_actions','field_61a746a817f7a'),(59478,39214,'_yoast_wpseo_metadesc','Start your journey in biomechanics with our courses for personal trainers. Discover key concepts and practical applications to enhance your training expertise.'),(59479,39235,'hide_hero','0'),(59480,39235,'_hide_hero','field_66a2380fcda39'),(59481,39235,'hero_title','Biomechanics and Personal Training'),(59482,39235,'_hero_title','field_617571fe285e8'),(59483,39235,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(59484,39235,'_hero_text','field_6175723c285e9'),(59485,39235,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(59486,39235,'_hero_actions_0_button','field_61757281285eb'),(59487,39235,'hero_actions','1'),(59488,39235,'_hero_actions','field_61757270285ea'),(59489,39235,'hero_style','default'),(59490,39235,'_hero_style','field_62051d9dc5324'),(59491,39235,'_thumbnail_id','39215'),(59492,39235,'__thumbnail_id','field_617570855ddaf'),(59493,39235,'hero_image_pos_x','right'),(59494,39235,'_hero_image_pos_x','field_62ec3d05390bb'),(59495,39235,'hero_image_pos_y','top'),(59496,39235,'_hero_image_pos_y','field_62ec3d05390bc'),(59497,39235,'hero_image_pos',''),(59498,39235,'_hero_image_pos','field_62ec3d05390ba'),(59499,39235,'fft_hide_from_listings','0'),(59500,39235,'_fft_hide_from_listings','field_61f1320446ab2'),(59501,39235,'fft_page_format','default'),(59502,39235,'_fft_page_format','field_61ae213f1f218'),(59503,39235,'fft_hide_nav','0'),(59504,39235,'_fft_hide_nav','field_635bd5e43527c'),(59505,39235,'fft_hide_header_call_to_action','0'),(59506,39235,'_fft_hide_header_call_to_action','field_635bd6723527d'),(59507,39235,'fft_page_sitemap','0'),(59508,39235,'_fft_page_sitemap','field_61af9b34e8181'),(59509,39235,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(59510,39235,'_blocks','field_6176696113096'),(59511,39235,'blocks_0_acfe_flexible_toggle',''),(59512,39235,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(59513,39235,'blocks_0_acfe_flexible_layout_title','Steps'),(59514,39235,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(59515,39235,'blocks_0_row_content_title',''),(59516,39235,'_blocks_0_row_content_title','field_64888cd1e26e0'),(59517,39235,'blocks_0_row_content_heading','Benefits of training with us'),(59518,39235,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(59519,39235,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(59520,39235,'_blocks_0_row_content_text','field_64888ce2e26e2'),(59521,39235,'blocks_0_row_content_actions',''),(59522,39235,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(59523,39235,'blocks_0_row_content',''),(59524,39235,'_blocks_0_row_content','field_64888cb0e26df'),(59525,39235,'blocks_0_steps_0_icon','progression.svg'),(59526,39235,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(59527,39235,'blocks_0_steps_0_title','Earning potential'),(59528,39235,'_blocks_0_steps_0_title','field_64888d94e26e7'),(59529,39235,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(59530,39235,'_blocks_0_steps_0_text','field_64888d99e26e8'),(59531,39235,'blocks_0_steps_1_icon','support.svg'),(59532,39235,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(59533,39235,'blocks_0_steps_1_title','Lifetime Learning Promise'),(59534,39235,'_blocks_0_steps_1_title','field_64888d94e26e7'),(59535,39235,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(59536,39235,'_blocks_0_steps_1_text','field_64888d99e26e8'),(59537,39235,'blocks_0_steps_2_icon','qualification.svg'),(59538,39235,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(59539,39235,'blocks_0_steps_2_title','Evidence based hands on learning'),(59540,39235,'_blocks_0_steps_2_title','field_64888d94e26e7'),(59541,39235,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(59542,39235,'_blocks_0_steps_2_text','field_64888d99e26e8'),(59543,39235,'blocks_0_steps_3_icon','leaders.svg'),(59544,39235,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(59545,39235,'blocks_0_steps_3_title','Stand out from the crowd'),(59546,39235,'_blocks_0_steps_3_title','field_64888d94e26e7'),(59547,39235,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(59548,39235,'_blocks_0_steps_3_text','field_64888d99e26e8'),(59549,39235,'blocks_0_steps','4'),(59550,39235,'_blocks_0_steps','field_64888d44e26e5'),(59551,39235,'blocks_1_acfe_flexible_toggle',''),(59552,39235,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(59553,39235,'blocks_1_acfe_flexible_layout_title','Video'),(59554,39235,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(59555,39235,'blocks_1_size','large'),(59556,39235,'_blocks_1_size','field_6487038f297c1'),(59557,39235,'blocks_1_row_content_title',''),(59558,39235,'_blocks_1_row_content_title','field_64870132a865d'),(59559,39235,'blocks_1_row_content_heading',''),(59560,39235,'_blocks_1_row_content_heading','field_64870142a865e'),(59561,39235,'blocks_1_row_content_text',''),(59562,39235,'_blocks_1_row_content_text','field_64870148a865f'),(59563,39235,'blocks_1_row_content',''),(59564,39235,'_blocks_1_row_content','field_6487008ba865c'),(59565,39235,'blocks_1_video_src',''),(59566,39235,'_blocks_1_video_src','field_6193c4a98ec07'),(59567,39235,'blocks_1_video_thumbnail',''),(59568,39235,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(59569,39235,'blocks_2_acfe_flexible_toggle',''),(59570,39235,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(59571,39235,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(59572,39235,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(59573,39235,'blocks_2_options_theme','#ffffff'),(59574,39235,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(59575,39235,'blocks_2_options_reverse','0'),(59576,39235,'_blocks_2_options_reverse','field_61768049bb8ac'),(59577,39235,'blocks_2_options',''),(59578,39235,'_blocks_2_options','field_617682517c334'),(59579,39235,'blocks_2_split_5050_image','39220'),(59580,39235,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(59581,39235,'blocks_2_split_5050_video',''),(59582,39235,'_blocks_2_split_5050_video','field_6239f3160848a'),(59583,39235,'blocks_2_split_5050_content_title',''),(59584,39235,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(59585,39235,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a PT'),(59586,39235,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(59587,39235,'blocks_2_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(59588,39235,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(59589,39235,'blocks_2_split_5050_content_actions',''),(59590,39235,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(59591,39235,'blocks_2_split_5050_content',''),(59592,39235,'_blocks_2_split_5050_content','field_61767afceb8ba'),(59593,39235,'blocks_3_acfe_flexible_toggle',''),(59594,39235,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(59595,39235,'blocks_3_acfe_flexible_layout_title','Form'),(59596,39235,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(59597,39235,'blocks_3_row_content_format','standard'),(59598,39235,'_blocks_3_row_content_format','field_6481ead962881'),(59599,39235,'blocks_3_row_content_title',''),(59600,39235,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(59601,39235,'blocks_3_row_content_heading','Enquire Today'),(59602,39235,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(59603,39235,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(59604,39235,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(59605,39235,'blocks_3_row_content_actions',''),(59606,39235,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(59607,39235,'blocks_3_row_content',''),(59608,39235,'_blocks_3_row_content','field_61a0f5f5b3db0'),(59609,39235,'blocks_3_row_form',''),(59610,39235,'_blocks_3_row_form','field_61a4ff2c0b08e'),(59611,39235,'blocks_3_row_form_button_label',''),(59612,39235,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(59613,39235,'blocks_4_acfe_flexible_toggle',''),(59614,39235,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(59615,39235,'blocks_4_acfe_flexible_layout_title','Tabs'),(59616,39235,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(59617,39235,'blocks_4_options_theme','#ffffff'),(59618,39235,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(59619,39235,'blocks_4_options',''),(59620,39235,'_blocks_4_options','field_6177cfcd8140f'),(59621,39235,'blocks_4_tabs_0_tab_label','What will I learn ?'),(59622,39235,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(59623,39235,'blocks_4_tabs_0_tab_content_title',''),(59624,39235,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(59625,39235,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(59626,39235,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(59627,39235,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(59628,39235,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(59629,39235,'blocks_4_tabs_0_tab_content_actions',''),(59630,39235,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(59631,39235,'blocks_4_tabs_0_tab_content',''),(59632,39235,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(59633,39235,'blocks_4_tabs_0_tab_image','39076'),(59634,39235,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(59635,39235,'blocks_4_tabs_1_tab_label','What do I need ?'),(59636,39235,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(59637,39235,'blocks_4_tabs_1_tab_content_title',''),(59638,39235,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(59639,39235,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(59640,39235,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(59641,39235,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(59642,39235,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(59643,39235,'blocks_4_tabs_1_tab_content_actions',''),(59644,39235,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(59645,39235,'blocks_4_tabs_1_tab_content',''),(59646,39235,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(59647,39235,'blocks_4_tabs_1_tab_image','39223'),(59648,39235,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(59649,39235,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(59650,39235,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(59651,39235,'blocks_4_tabs_2_tab_content_title',''),(59652,39235,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(59653,39235,'blocks_4_tabs_2_tab_content_heading','Locations'),(59654,39235,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(59655,39235,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(59656,39235,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(59657,39235,'blocks_4_tabs_2_tab_content_actions',''),(59658,39235,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(59659,39235,'blocks_4_tabs_2_tab_content',''),(59660,39235,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(59661,39235,'blocks_4_tabs_2_tab_image','39224'),(59662,39235,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(59663,39235,'blocks_4_tabs','3'),(59664,39235,'_blocks_4_tabs','field_6177cff281419'),(59665,39235,'blocks_5_acfe_flexible_toggle',''),(59666,39235,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(59667,39235,'blocks_5_acfe_flexible_layout_title','Text Block'),(59668,39235,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(59669,39235,'blocks_5_options_theme','#b61234'),(59670,39235,'_blocks_5_options_theme','field_6176830e2ad17'),(59671,39235,'blocks_5_options',''),(59672,39235,'_blocks_5_options','field_6176830e2ad16'),(59673,39235,'blocks_5_text_block_heading','Fees & Funding Options'),(59674,39235,'_blocks_5_text_block_heading','field_617669d413097'),(59675,39235,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(59676,39235,'_blocks_5_text_block_content','field_617669ec13098'),(59677,39235,'blocks_6_acfe_flexible_toggle',''),(59678,39235,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(59679,39235,'blocks_6_acfe_flexible_layout_title','Icons'),(59680,39235,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(59681,39235,'blocks_6_options_theme','#b61234'),(59682,39235,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(59683,39235,'blocks_6_options_format','row'),(59684,39235,'_blocks_6_options_format','field_64bfde9a90690'),(59685,39235,'blocks_6_options',''),(59686,39235,'_blocks_6_options','field_64bfdd9b90684'),(59687,39235,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(59688,39235,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(59689,39235,'blocks_6_icon_row_items_0_label','Pay in Full'),(59690,39235,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(59691,39235,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(59692,39235,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(59693,39235,'blocks_6_icon_row_items_1_icon','finance.svg'),(59694,39235,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(59695,39235,'blocks_6_icon_row_items_1_label','0% finance'),(59696,39235,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(59697,39235,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(59698,39235,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(59699,39235,'blocks_6_icon_row_items_2_icon','deposit.svg'),(59700,39235,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(59701,39235,'blocks_6_icon_row_items_2_label','Deposit & balance'),(59702,39235,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(59703,39235,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(59704,39235,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(59705,39235,'blocks_6_icon_row_items','3'),(59706,39235,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(59707,39235,'blocks_7_acfe_flexible_toggle',''),(59708,39235,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(59709,39235,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(59710,39235,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(59711,39235,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(59712,39235,'_blocks_7_content','field_6193c9b5eac84'),(59713,39235,'blocks_8_acfe_flexible_toggle',''),(59714,39235,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(59715,39235,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(59716,39235,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(59717,39235,'blocks_8_testimonial_slider_content_title',''),(59718,39235,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(59719,39235,'blocks_8_testimonial_slider_content_heading','Testimonials'),(59720,39235,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(59721,39235,'blocks_8_testimonial_slider_content_text',''),(59722,39235,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(59723,39235,'blocks_8_testimonial_slider_content_actions',''),(59724,39235,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(59725,39235,'blocks_8_testimonial_slider_content',''),(59726,39235,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(59727,39235,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(59728,39235,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(59729,39235,'blocks_8_testimonial_slider_ambassador_bool','0'),(59730,39235,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(59731,39235,'blocks_9_acfe_flexible_toggle',''),(59732,39235,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(59733,39235,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(59734,39235,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(59735,39235,'blocks_9_options_theme','#ffffff'),(59736,39235,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(59737,39235,'blocks_9_options_state','0'),(59738,39235,'_blocks_9_options_state','field_6239fcb7508c5'),(59739,39235,'blocks_9_options',''),(59740,39235,'_blocks_9_options','field_6177e2991ac44'),(59741,39235,'blocks_9_content_title',''),(59742,39235,'_blocks_9_content_title','field_64d237e8bb1e2'),(59743,39235,'blocks_9_content_heading','Frequently asked questions '),(59744,39235,'_blocks_9_content_heading','field_64d237e8bb1e3'),(59745,39235,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(59746,39235,'_blocks_9_content_text','field_64d237e8bb1e4'),(59747,39235,'blocks_9_content_actions',''),(59748,39235,'_blocks_9_content_actions','field_64d237e8bb1e5'),(59749,39235,'blocks_9_content_align','left'),(59750,39235,'_blocks_9_content_align','field_64d2443e6b6aa'),(59751,39235,'blocks_9_content',''),(59752,39235,'_blocks_9_content','field_64d237e8bb1e1'),(59753,39235,'blocks_9_accordion_content','faqs'),(59754,39235,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(59755,39235,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(59756,39235,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(59757,39235,'blocks_9_actions',''),(59758,39235,'_blocks_9_actions','field_61a746a817f7a'),(59759,39231,'_yoast_wpseo_metadesc','Get started in biomechanics in Pilates. Learn fundamental principles to enhance your teaching and improve client outcomes effectively.'),(60040,39237,'hide_hero','0'),(60041,39237,'_hide_hero','field_66a2380fcda39'),(60042,39237,'hero_title','Biomechanics and Pilates'),(60043,39237,'_hero_title','field_617571fe285e8'),(60044,39237,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(60045,39237,'_hero_text','field_6175723c285e9'),(60046,39237,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(60047,39237,'_hero_actions_0_button','field_61757281285eb'),(60048,39237,'hero_actions','1'),(60049,39237,'_hero_actions','field_61757270285ea'),(60050,39237,'hero_style','default'),(60051,39237,'_hero_style','field_62051d9dc5324'),(60052,39237,'_thumbnail_id','39215'),(60053,39237,'__thumbnail_id','field_617570855ddaf'),(60054,39237,'hero_image_pos_x','right'),(60055,39237,'_hero_image_pos_x','field_62ec3d05390bb'),(60056,39237,'hero_image_pos_y','top'),(60057,39237,'_hero_image_pos_y','field_62ec3d05390bc'),(60058,39237,'hero_image_pos',''),(60059,39237,'_hero_image_pos','field_62ec3d05390ba'),(60060,39237,'fft_hide_from_listings','0'),(60061,39237,'_fft_hide_from_listings','field_61f1320446ab2'),(60062,39237,'fft_page_format','default'),(60063,39237,'_fft_page_format','field_61ae213f1f218'),(60064,39237,'fft_hide_nav','0'),(60065,39237,'_fft_hide_nav','field_635bd5e43527c'),(60066,39237,'fft_hide_header_call_to_action','0'),(60067,39237,'_fft_hide_header_call_to_action','field_635bd6723527d'),(60068,39237,'fft_page_sitemap','0'),(60069,39237,'_fft_page_sitemap','field_61af9b34e8181'),(60070,39237,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(60071,39237,'_blocks','field_6176696113096'),(60072,39237,'blocks_0_acfe_flexible_toggle',''),(60073,39237,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(60074,39237,'blocks_0_acfe_flexible_layout_title','Steps'),(60075,39237,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(60076,39237,'blocks_0_row_content_title',''),(60077,39237,'_blocks_0_row_content_title','field_64888cd1e26e0'),(60078,39237,'blocks_0_row_content_heading','Benefits of training with us'),(60079,39237,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(60080,39237,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(60081,39237,'_blocks_0_row_content_text','field_64888ce2e26e2'),(60082,39237,'blocks_0_row_content_actions',''),(60083,39237,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(60084,39237,'blocks_0_row_content',''),(60085,39237,'_blocks_0_row_content','field_64888cb0e26df'),(60086,39237,'blocks_0_steps_0_icon','progression.svg'),(60087,39237,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(60088,39237,'blocks_0_steps_0_title','Earning potential'),(60089,39237,'_blocks_0_steps_0_title','field_64888d94e26e7'),(60090,39237,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(60091,39237,'_blocks_0_steps_0_text','field_64888d99e26e8'),(60092,39237,'blocks_0_steps_1_icon','support.svg'),(60093,39237,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(60094,39237,'blocks_0_steps_1_title','Lifetime Learning Promise'),(60095,39237,'_blocks_0_steps_1_title','field_64888d94e26e7'),(60096,39237,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(60097,39237,'_blocks_0_steps_1_text','field_64888d99e26e8'),(60098,39237,'blocks_0_steps_2_icon','qualification.svg'),(60099,39237,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(60100,39237,'blocks_0_steps_2_title','Evidence based hands on learning'),(60101,39237,'_blocks_0_steps_2_title','field_64888d94e26e7'),(60102,39237,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(60103,39237,'_blocks_0_steps_2_text','field_64888d99e26e8'),(60104,39237,'blocks_0_steps_3_icon','leaders.svg'),(60105,39237,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(60106,39237,'blocks_0_steps_3_title','Stand out from the crowd'),(60107,39237,'_blocks_0_steps_3_title','field_64888d94e26e7'),(60108,39237,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(60109,39237,'_blocks_0_steps_3_text','field_64888d99e26e8'),(60110,39237,'blocks_0_steps','4'),(60111,39237,'_blocks_0_steps','field_64888d44e26e5'),(60112,39237,'blocks_1_acfe_flexible_toggle',''),(60113,39237,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(60114,39237,'blocks_1_acfe_flexible_layout_title','Video'),(60115,39237,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(60116,39237,'blocks_1_size','large'),(60117,39237,'_blocks_1_size','field_6487038f297c1'),(60118,39237,'blocks_1_row_content_title',''),(60119,39237,'_blocks_1_row_content_title','field_64870132a865d'),(60120,39237,'blocks_1_row_content_heading',''),(60121,39237,'_blocks_1_row_content_heading','field_64870142a865e'),(60122,39237,'blocks_1_row_content_text',''),(60123,39237,'_blocks_1_row_content_text','field_64870148a865f'),(60124,39237,'blocks_1_row_content',''),(60125,39237,'_blocks_1_row_content','field_6487008ba865c'),(60126,39237,'blocks_1_video_src',''),(60127,39237,'_blocks_1_video_src','field_6193c4a98ec07'),(60128,39237,'blocks_1_video_thumbnail',''),(60129,39237,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(60130,39237,'blocks_2_acfe_flexible_toggle',''),(60131,39237,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(60132,39237,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(60133,39237,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(60134,39237,'blocks_2_options_theme','#ffffff'),(60135,39237,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(60136,39237,'blocks_2_options_reverse','0'),(60137,39237,'_blocks_2_options_reverse','field_61768049bb8ac'),(60138,39237,'blocks_2_options',''),(60139,39237,'_blocks_2_options','field_617682517c334'),(60140,39237,'blocks_2_split_5050_image','39220'),(60141,39237,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(60142,39237,'blocks_2_split_5050_video',''),(60143,39237,'_blocks_2_split_5050_video','field_6239f3160848a'),(60144,39237,'blocks_2_split_5050_content_title',''),(60145,39237,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(60146,39237,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(60147,39237,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(60148,39237,'blocks_2_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(60149,39237,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(60150,39237,'blocks_2_split_5050_content_actions',''),(60151,39237,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(60152,39237,'blocks_2_split_5050_content',''),(60153,39237,'_blocks_2_split_5050_content','field_61767afceb8ba'),(60154,39237,'blocks_3_acfe_flexible_toggle',''),(60155,39237,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(60156,39237,'blocks_3_acfe_flexible_layout_title','Form'),(60157,39237,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(60158,39237,'blocks_3_row_content_format','standard'),(60159,39237,'_blocks_3_row_content_format','field_6481ead962881'),(60160,39237,'blocks_3_row_content_title',''),(60161,39237,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(60162,39237,'blocks_3_row_content_heading','Enquire Today'),(60163,39237,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(60164,39237,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(60165,39237,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(60166,39237,'blocks_3_row_content_actions',''),(60167,39237,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(60168,39237,'blocks_3_row_content',''),(60169,39237,'_blocks_3_row_content','field_61a0f5f5b3db0'),(60170,39237,'blocks_3_row_form',''),(60171,39237,'_blocks_3_row_form','field_61a4ff2c0b08e'),(60172,39237,'blocks_3_row_form_button_label',''),(60173,39237,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(60174,39237,'blocks_4_acfe_flexible_toggle',''),(60175,39237,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(60176,39237,'blocks_4_acfe_flexible_layout_title','Tabs'),(60177,39237,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(60178,39237,'blocks_4_options_theme','#ffffff'),(60179,39237,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(60180,39237,'blocks_4_options',''),(60181,39237,'_blocks_4_options','field_6177cfcd8140f'),(60182,39237,'blocks_4_tabs_0_tab_label','What will I learn ?'),(60183,39237,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(60184,39237,'blocks_4_tabs_0_tab_content_title',''),(60185,39237,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(60186,39237,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(60187,39237,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(60188,39237,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(60189,39237,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(60190,39237,'blocks_4_tabs_0_tab_content_actions',''),(60191,39237,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(60192,39237,'blocks_4_tabs_0_tab_content',''),(60193,39237,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(60194,39237,'blocks_4_tabs_0_tab_image','39076'),(60195,39237,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(60196,39237,'blocks_4_tabs_1_tab_label','What do I need ?'),(60197,39237,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(60198,39237,'blocks_4_tabs_1_tab_content_title',''),(60199,39237,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(60200,39237,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(60201,39237,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(60202,39237,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(60203,39237,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(60204,39237,'blocks_4_tabs_1_tab_content_actions',''),(60205,39237,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(60206,39237,'blocks_4_tabs_1_tab_content',''),(60207,39237,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(60208,39237,'blocks_4_tabs_1_tab_image','39223'),(60209,39237,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(60210,39237,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(60211,39237,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(60212,39237,'blocks_4_tabs_2_tab_content_title',''),(60213,39237,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(60214,39237,'blocks_4_tabs_2_tab_content_heading','Locations'),(60215,39237,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(60216,39237,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(60217,39237,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(60218,39237,'blocks_4_tabs_2_tab_content_actions',''),(60219,39237,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(60220,39237,'blocks_4_tabs_2_tab_content',''),(60221,39237,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(60222,39237,'blocks_4_tabs_2_tab_image','39224'),(60223,39237,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(60224,39237,'blocks_4_tabs','3'),(60225,39237,'_blocks_4_tabs','field_6177cff281419'),(60226,39237,'blocks_5_acfe_flexible_toggle',''),(60227,39237,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(60228,39237,'blocks_5_acfe_flexible_layout_title','Text Block'),(60229,39237,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(60230,39237,'blocks_5_options_theme','#b61234'),(60231,39237,'_blocks_5_options_theme','field_6176830e2ad17'),(60232,39237,'blocks_5_options',''),(60233,39237,'_blocks_5_options','field_6176830e2ad16'),(60234,39237,'blocks_5_text_block_heading','Fees & Funding Options'),(60235,39237,'_blocks_5_text_block_heading','field_617669d413097'),(60236,39237,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(60237,39237,'_blocks_5_text_block_content','field_617669ec13098'),(60238,39237,'blocks_6_acfe_flexible_toggle',''),(60239,39237,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(60240,39237,'blocks_6_acfe_flexible_layout_title','Icons'),(60241,39237,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(60242,39237,'blocks_6_options_theme','#b61234'),(60243,39237,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(60244,39237,'blocks_6_options_format','row'),(60245,39237,'_blocks_6_options_format','field_64bfde9a90690'),(60246,39237,'blocks_6_options',''),(60247,39237,'_blocks_6_options','field_64bfdd9b90684'),(60248,39237,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(60249,39237,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(60250,39237,'blocks_6_icon_row_items_0_label','Pay in Full'),(60251,39237,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(60252,39237,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(60253,39237,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(60254,39237,'blocks_6_icon_row_items_1_icon','finance.svg'),(60255,39237,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(60256,39237,'blocks_6_icon_row_items_1_label','0% finance'),(60257,39237,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(60258,39237,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(60259,39237,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(60260,39237,'blocks_6_icon_row_items_2_icon','deposit.svg'),(60261,39237,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(60262,39237,'blocks_6_icon_row_items_2_label','Deposit & balance'),(60263,39237,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(60264,39237,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(60265,39237,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(60266,39237,'blocks_6_icon_row_items','3'),(60267,39237,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(60268,39237,'blocks_7_acfe_flexible_toggle',''),(60269,39237,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(60270,39237,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(60271,39237,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(60272,39237,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(60273,39237,'_blocks_7_content','field_6193c9b5eac84'),(60274,39237,'blocks_8_acfe_flexible_toggle',''),(60275,39237,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(60276,39237,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(60277,39237,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(60278,39237,'blocks_8_testimonial_slider_content_title',''),(60279,39237,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(60280,39237,'blocks_8_testimonial_slider_content_heading','Testimonials'),(60281,39237,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(60282,39237,'blocks_8_testimonial_slider_content_text',''),(60283,39237,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(60284,39237,'blocks_8_testimonial_slider_content_actions',''),(60285,39237,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(60286,39237,'blocks_8_testimonial_slider_content',''),(60287,39237,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(60288,39237,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(60289,39237,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(60290,39237,'blocks_8_testimonial_slider_ambassador_bool','0'),(60291,39237,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(60292,39237,'blocks_9_acfe_flexible_toggle',''),(60293,39237,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(60294,39237,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(60295,39237,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(60296,39237,'blocks_9_options_theme','#ffffff'),(60297,39237,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(60298,39237,'blocks_9_options_state','0'),(60299,39237,'_blocks_9_options_state','field_6239fcb7508c5'),(60300,39237,'blocks_9_options',''),(60301,39237,'_blocks_9_options','field_6177e2991ac44'),(60302,39237,'blocks_9_content_title',''),(60303,39237,'_blocks_9_content_title','field_64d237e8bb1e2'),(60304,39237,'blocks_9_content_heading','Frequently asked questions '),(60305,39237,'_blocks_9_content_heading','field_64d237e8bb1e3'),(60306,39237,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(60307,39237,'_blocks_9_content_text','field_64d237e8bb1e4'),(60308,39237,'blocks_9_content_actions',''),(60309,39237,'_blocks_9_content_actions','field_64d237e8bb1e5'),(60310,39237,'blocks_9_content_align','left'),(60311,39237,'_blocks_9_content_align','field_64d2443e6b6aa'),(60312,39237,'blocks_9_content',''),(60313,39237,'_blocks_9_content','field_64d237e8bb1e1'),(60314,39237,'blocks_9_accordion_content','faqs'),(60315,39237,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(60316,39237,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(60317,39237,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(60318,39237,'blocks_9_actions',''),(60319,39237,'_blocks_9_actions','field_61a746a817f7a'),(60320,39238,'_edit_lock','1741944289:18'),(60321,39238,'_edit_last','18'),(60322,39238,'hide_hero','0'),(60323,39238,'_hide_hero','field_66a2380fcda39'),(60324,39238,'hero_title','Biomechanics and Sports Massage Therapy'),(60325,39238,'_hero_title','field_617571fe285e8'),(60326,39238,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(60327,39238,'_hero_text','field_6175723c285e9'),(60328,39238,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39238-3\";s:6:\"target\";s:0:\"\";}'),(60329,39238,'_hero_actions_0_button','field_61757281285eb'),(60330,39238,'hero_actions','1'),(60331,39238,'_hero_actions','field_61757270285ea'),(60332,39238,'hero_style','default'),(60333,39238,'_hero_style','field_62051d9dc5324'),(60334,39238,'_thumbnail_id','39240'),(60335,39238,'__thumbnail_id','field_617570855ddaf'),(60336,39238,'hero_image_pos_x','right'),(60337,39238,'_hero_image_pos_x','field_62ec3d05390bb'),(60338,39238,'hero_image_pos_y','top'),(60339,39238,'_hero_image_pos_y','field_62ec3d05390bc'),(60340,39238,'hero_image_pos',''),(60341,39238,'_hero_image_pos','field_62ec3d05390ba'),(60342,39238,'fft_hide_from_listings','0'),(60343,39238,'_fft_hide_from_listings','field_61f1320446ab2'),(60344,39238,'fft_page_format','default'),(60345,39238,'_fft_page_format','field_61ae213f1f218'),(60346,39238,'fft_hide_nav','0'),(60347,39238,'_fft_hide_nav','field_635bd5e43527c'),(60348,39238,'fft_hide_header_call_to_action','0'),(60349,39238,'_fft_hide_header_call_to_action','field_635bd6723527d'),(60350,39238,'fft_page_sitemap','0'),(60351,39238,'_fft_page_sitemap','field_61af9b34e8181'),(60352,39238,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:10:\"split_5050\";i:9;s:16:\"standard_content\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(60353,39238,'_blocks','field_6176696113096'),(60354,39238,'_yoast_wpseo_focuskw','Biomechanics and Sports Massage'),(60355,39238,'_yoast_wpseo_title','Sports Massage Therapy | Biomechanics Education'),(60356,39238,'_yoast_wpseo_linkdex','40'),(60357,39238,'_yoast_wpseo_estimated-reading-time-minutes','1'),(60606,39238,'_yoast_wpseo_metadesc','Get started in biomechanics for SMT. Learn essential principles to enhance your practice and improve client results with expert techniques.'),(60607,39240,'_wp_attached_file','2024/08/bIOMECHANICS-AND-smt-HERO-IMAGE.jpg'),(60608,39240,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:43:\"2024/08/bIOMECHANICS-AND-smt-HERO-IMAGE.jpg\";s:8:\"filesize\";i:127715;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-900x599.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:599;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99458;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37400;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80059;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44975;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-900x682.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114772;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37358;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99228;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39171;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-675x682.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90912;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-900x682.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114772;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39942;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108137;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33394;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:43:\"bIOMECHANICS-AND-smt-HERO-IMAGE-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83913;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-HERO-IMAGE-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124924;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109422\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(60609,39241,'_wp_attached_file','2024/08/bIOMECHANICS-AND-smt-50.50-IMAGE.jpg'),(60610,39241,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:682;s:4:\"file\";s:44:\"2024/08/bIOMECHANICS-AND-smt-50.50-IMAGE.jpg\";s:8:\"filesize\";i:56389;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-900x599.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:599;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46357;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21475;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38565;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25654;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-900x682.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52545;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21479;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46336;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23232;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-675x682.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45381;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-900x682.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52545;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22544;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50415;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20671;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:44:\"bIOMECHANICS-AND-smt-50.50-IMAGE-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43356;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:45:\"bIOMECHANICS-AND-smt-50.50-IMAGE-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56730;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109201\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(60611,39242,'hide_hero','0'),(60612,39242,'_hide_hero','field_66a2380fcda39'),(60613,39242,'hero_title','Biomechanics and Sports Massage Therapy'),(60614,39242,'_hero_title','field_617571fe285e8'),(60615,39242,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(60616,39242,'_hero_text','field_6175723c285e9'),(60617,39242,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(60618,39242,'_hero_actions_0_button','field_61757281285eb'),(60619,39242,'hero_actions','1'),(60620,39242,'_hero_actions','field_61757270285ea'),(60621,39242,'hero_style','default'),(60622,39242,'_hero_style','field_62051d9dc5324'),(60623,39242,'_thumbnail_id','39240'),(60624,39242,'__thumbnail_id','field_617570855ddaf'),(60625,39242,'hero_image_pos_x','right'),(60626,39242,'_hero_image_pos_x','field_62ec3d05390bb'),(60627,39242,'hero_image_pos_y','top'),(60628,39242,'_hero_image_pos_y','field_62ec3d05390bc'),(60629,39242,'hero_image_pos',''),(60630,39242,'_hero_image_pos','field_62ec3d05390ba'),(60631,39242,'fft_hide_from_listings','0'),(60632,39242,'_fft_hide_from_listings','field_61f1320446ab2'),(60633,39242,'fft_page_format','default'),(60634,39242,'_fft_page_format','field_61ae213f1f218'),(60635,39242,'fft_hide_nav','0'),(60636,39242,'_fft_hide_nav','field_635bd5e43527c'),(60637,39242,'fft_hide_header_call_to_action','0'),(60638,39242,'_fft_hide_header_call_to_action','field_635bd6723527d'),(60639,39242,'fft_page_sitemap','0'),(60640,39242,'_fft_page_sitemap','field_61af9b34e8181'),(60641,39242,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(60642,39242,'_blocks','field_6176696113096'),(60643,39242,'blocks_0_acfe_flexible_toggle',''),(60644,39242,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(60645,39242,'blocks_0_acfe_flexible_layout_title','Steps'),(60646,39242,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(60647,39242,'blocks_0_row_content_title',''),(60648,39242,'_blocks_0_row_content_title','field_64888cd1e26e0'),(60649,39242,'blocks_0_row_content_heading','Benefits of training with us'),(60650,39242,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(60651,39242,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(60652,39242,'_blocks_0_row_content_text','field_64888ce2e26e2'),(60653,39242,'blocks_0_row_content_actions',''),(60654,39242,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(60655,39242,'blocks_0_row_content',''),(60656,39242,'_blocks_0_row_content','field_64888cb0e26df'),(60657,39242,'blocks_0_steps_0_icon','progression.svg'),(60658,39242,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(60659,39242,'blocks_0_steps_0_title','Earning potential'),(60660,39242,'_blocks_0_steps_0_title','field_64888d94e26e7'),(60661,39242,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(60662,39242,'_blocks_0_steps_0_text','field_64888d99e26e8'),(60663,39242,'blocks_0_steps_1_icon','support.svg'),(60664,39242,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(60665,39242,'blocks_0_steps_1_title','Lifetime Learning Promise'),(60666,39242,'_blocks_0_steps_1_title','field_64888d94e26e7'),(60667,39242,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(60668,39242,'_blocks_0_steps_1_text','field_64888d99e26e8'),(60669,39242,'blocks_0_steps_2_icon','qualification.svg'),(60670,39242,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(60671,39242,'blocks_0_steps_2_title','Evidence based hands on learning'),(60672,39242,'_blocks_0_steps_2_title','field_64888d94e26e7'),(60673,39242,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(60674,39242,'_blocks_0_steps_2_text','field_64888d99e26e8'),(60675,39242,'blocks_0_steps_3_icon','leaders.svg'),(60676,39242,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(60677,39242,'blocks_0_steps_3_title','Stand out from the crowd'),(60678,39242,'_blocks_0_steps_3_title','field_64888d94e26e7'),(60679,39242,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(60680,39242,'_blocks_0_steps_3_text','field_64888d99e26e8'),(60681,39242,'blocks_0_steps','4'),(60682,39242,'_blocks_0_steps','field_64888d44e26e5'),(60683,39242,'blocks_1_acfe_flexible_toggle',''),(60684,39242,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(60685,39242,'blocks_1_acfe_flexible_layout_title','Video'),(60686,39242,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(60687,39242,'blocks_1_size','large'),(60688,39242,'_blocks_1_size','field_6487038f297c1'),(60689,39242,'blocks_1_row_content_title',''),(60690,39242,'_blocks_1_row_content_title','field_64870132a865d'),(60691,39242,'blocks_1_row_content_heading',''),(60692,39242,'_blocks_1_row_content_heading','field_64870142a865e'),(60693,39242,'blocks_1_row_content_text',''),(60694,39242,'_blocks_1_row_content_text','field_64870148a865f'),(60695,39242,'blocks_1_row_content',''),(60696,39242,'_blocks_1_row_content','field_6487008ba865c'),(60697,39242,'blocks_1_video_src',''),(60698,39242,'_blocks_1_video_src','field_6193c4a98ec07'),(60699,39242,'blocks_1_video_thumbnail',''),(60700,39242,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(60701,39242,'blocks_2_acfe_flexible_toggle',''),(60702,39242,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(60703,39242,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(60704,39242,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(60705,39242,'blocks_2_options_theme','#ffffff'),(60706,39242,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(60707,39242,'blocks_2_options_reverse','0'),(60708,39242,'_blocks_2_options_reverse','field_61768049bb8ac'),(60709,39242,'blocks_2_options',''),(60710,39242,'_blocks_2_options','field_617682517c334'),(60711,39242,'blocks_2_split_5050_image','39241'),(60712,39242,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(60713,39242,'blocks_2_split_5050_video',''),(60714,39242,'_blocks_2_split_5050_video','field_6239f3160848a'),(60715,39242,'blocks_2_split_5050_content_title',''),(60716,39242,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(60717,39242,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(60718,39242,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(60719,39242,'blocks_2_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(60720,39242,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(60721,39242,'blocks_2_split_5050_content_actions',''),(60722,39242,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(60723,39242,'blocks_2_split_5050_content',''),(60724,39242,'_blocks_2_split_5050_content','field_61767afceb8ba'),(60725,39242,'blocks_3_acfe_flexible_toggle',''),(60726,39242,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(60727,39242,'blocks_3_acfe_flexible_layout_title','Form'),(60728,39242,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(60729,39242,'blocks_3_row_content_format','standard'),(60730,39242,'_blocks_3_row_content_format','field_6481ead962881'),(60731,39242,'blocks_3_row_content_title',''),(60732,39242,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(60733,39242,'blocks_3_row_content_heading','Enquire Today'),(60734,39242,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(60735,39242,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(60736,39242,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(60737,39242,'blocks_3_row_content_actions',''),(60738,39242,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(60739,39242,'blocks_3_row_content',''),(60740,39242,'_blocks_3_row_content','field_61a0f5f5b3db0'),(60741,39242,'blocks_3_row_form',''),(60742,39242,'_blocks_3_row_form','field_61a4ff2c0b08e'),(60743,39242,'blocks_3_row_form_button_label',''),(60744,39242,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(60745,39242,'blocks_4_acfe_flexible_toggle',''),(60746,39242,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(60747,39242,'blocks_4_acfe_flexible_layout_title','Tabs'),(60748,39242,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(60749,39242,'blocks_4_options_theme','#ffffff'),(60750,39242,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(60751,39242,'blocks_4_options',''),(60752,39242,'_blocks_4_options','field_6177cfcd8140f'),(60753,39242,'blocks_4_tabs_0_tab_label','What will I learn ?'),(60754,39242,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(60755,39242,'blocks_4_tabs_0_tab_content_title',''),(60756,39242,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(60757,39242,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(60758,39242,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(60759,39242,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(60760,39242,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(60761,39242,'blocks_4_tabs_0_tab_content_actions',''),(60762,39242,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(60763,39242,'blocks_4_tabs_0_tab_content',''),(60764,39242,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(60765,39242,'blocks_4_tabs_0_tab_image','39076'),(60766,39242,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(60767,39242,'blocks_4_tabs_1_tab_label','What do I need ?'),(60768,39242,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(60769,39242,'blocks_4_tabs_1_tab_content_title',''),(60770,39242,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(60771,39242,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(60772,39242,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(60773,39242,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(60774,39242,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(60775,39242,'blocks_4_tabs_1_tab_content_actions',''),(60776,39242,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(60777,39242,'blocks_4_tabs_1_tab_content',''),(60778,39242,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(60779,39242,'blocks_4_tabs_1_tab_image','39223'),(60780,39242,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(60781,39242,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(60782,39242,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(60783,39242,'blocks_4_tabs_2_tab_content_title',''),(60784,39242,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(60785,39242,'blocks_4_tabs_2_tab_content_heading','Locations'),(60786,39242,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(60787,39242,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(60788,39242,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(60789,39242,'blocks_4_tabs_2_tab_content_actions',''),(60790,39242,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(60791,39242,'blocks_4_tabs_2_tab_content',''),(60792,39242,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(60793,39242,'blocks_4_tabs_2_tab_image','39224'),(60794,39242,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(60795,39242,'blocks_4_tabs','3'),(60796,39242,'_blocks_4_tabs','field_6177cff281419'),(60797,39242,'blocks_5_acfe_flexible_toggle',''),(60798,39242,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(60799,39242,'blocks_5_acfe_flexible_layout_title','Text Block'),(60800,39242,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(60801,39242,'blocks_5_options_theme','#b61234'),(60802,39242,'_blocks_5_options_theme','field_6176830e2ad17'),(60803,39242,'blocks_5_options',''),(60804,39242,'_blocks_5_options','field_6176830e2ad16'),(60805,39242,'blocks_5_text_block_heading','Fees & Funding Options'),(60806,39242,'_blocks_5_text_block_heading','field_617669d413097'),(60807,39242,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(60808,39242,'_blocks_5_text_block_content','field_617669ec13098'),(60809,39242,'blocks_6_acfe_flexible_toggle',''),(60810,39242,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(60811,39242,'blocks_6_acfe_flexible_layout_title','Icons'),(60812,39242,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(60813,39242,'blocks_6_options_theme','#b61234'),(60814,39242,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(60815,39242,'blocks_6_options_format','row'),(60816,39242,'_blocks_6_options_format','field_64bfde9a90690'),(60817,39242,'blocks_6_options',''),(60818,39242,'_blocks_6_options','field_64bfdd9b90684'),(60819,39242,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(60820,39242,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(60821,39242,'blocks_6_icon_row_items_0_label','Pay in Full'),(60822,39242,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(60823,39242,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(60824,39242,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(60825,39242,'blocks_6_icon_row_items_1_icon','finance.svg'),(60826,39242,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(60827,39242,'blocks_6_icon_row_items_1_label','0% finance'),(60828,39242,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(60829,39242,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(60830,39242,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(60831,39242,'blocks_6_icon_row_items_2_icon','deposit.svg'),(60832,39242,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(60833,39242,'blocks_6_icon_row_items_2_label','Deposit & balance'),(60834,39242,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(60835,39242,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(60836,39242,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(60837,39242,'blocks_6_icon_row_items','3'),(60838,39242,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(60839,39242,'blocks_7_acfe_flexible_toggle',''),(60840,39242,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(60841,39242,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(60842,39242,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(60843,39242,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(60844,39242,'_blocks_7_content','field_6193c9b5eac84'),(60845,39242,'blocks_8_acfe_flexible_toggle',''),(60846,39242,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(60847,39242,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(60848,39242,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(60849,39242,'blocks_8_testimonial_slider_content_title',''),(60850,39242,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(60851,39242,'blocks_8_testimonial_slider_content_heading','Testimonials'),(60852,39242,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(60853,39242,'blocks_8_testimonial_slider_content_text',''),(60854,39242,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(60855,39242,'blocks_8_testimonial_slider_content_actions',''),(60856,39242,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(60857,39242,'blocks_8_testimonial_slider_content',''),(60858,39242,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(60859,39242,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(60860,39242,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(60861,39242,'blocks_8_testimonial_slider_ambassador_bool','0'),(60862,39242,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(60863,39242,'blocks_9_acfe_flexible_toggle',''),(60864,39242,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(60865,39242,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(60866,39242,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(60867,39242,'blocks_9_options_theme','#ffffff'),(60868,39242,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(60869,39242,'blocks_9_options_state','0'),(60870,39242,'_blocks_9_options_state','field_6239fcb7508c5'),(60871,39242,'blocks_9_options',''),(60872,39242,'_blocks_9_options','field_6177e2991ac44'),(60873,39242,'blocks_9_content_title',''),(60874,39242,'_blocks_9_content_title','field_64d237e8bb1e2'),(60875,39242,'blocks_9_content_heading','Frequently asked questions '),(60876,39242,'_blocks_9_content_heading','field_64d237e8bb1e3'),(60877,39242,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(60878,39242,'_blocks_9_content_text','field_64d237e8bb1e4'),(60879,39242,'blocks_9_content_actions',''),(60880,39242,'_blocks_9_content_actions','field_64d237e8bb1e5'),(60881,39242,'blocks_9_content_align','left'),(60882,39242,'_blocks_9_content_align','field_64d2443e6b6aa'),(60883,39242,'blocks_9_content',''),(60884,39242,'_blocks_9_content','field_64d237e8bb1e1'),(60885,39242,'blocks_9_accordion_content','faqs'),(60886,39242,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(60887,39242,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(60888,39242,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(60889,39242,'blocks_9_actions',''),(60890,39242,'_blocks_9_actions','field_61a746a817f7a'),(60891,39243,'_wp_attached_file','2024/08/Biomechanics-and-Pialtes-hero-image.jpg'),(60892,39243,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:47:\"2024/08/Biomechanics-and-Pialtes-hero-image.jpg\";s:8:\"filesize\";i:205048;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"Biomechanics-and-Pialtes-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105991;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"Biomechanics-and-Pialtes-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158236;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"Biomechanics-and-Pialtes-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39467;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"Biomechanics-and-Pialtes-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85412;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"Biomechanics-and-Pialtes-hero-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225643;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:47:\"Biomechanics-and-Pialtes-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46623;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:47:\"Biomechanics-and-Pialtes-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131023;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:49:\"Biomechanics-and-Pialtes-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194790;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:47:\"Biomechanics-and-Pialtes-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39508;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:47:\"Biomechanics-and-Pialtes-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105991;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:48:\"Biomechanics-and-Pialtes-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158236;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:47:\"Biomechanics-and-Pialtes-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38148;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:47:\"Biomechanics-and-Pialtes-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101504;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:48:\"Biomechanics-and-Pialtes-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149289;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:47:\"Biomechanics-and-Pialtes-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41378;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:47:\"Biomechanics-and-Pialtes-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112436;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:48:\"Biomechanics-and-Pialtes-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167804;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:47:\"Biomechanics-and-Pialtes-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36080;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:47:\"Biomechanics-and-Pialtes-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94199;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:48:\"Biomechanics-and-Pialtes-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139690;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(60893,39244,'hide_hero','0'),(60894,39244,'_hide_hero','field_66a2380fcda39'),(60895,39244,'hero_title','Biomechanics and Pilates'),(60896,39244,'_hero_title','field_617571fe285e8'),(60897,39244,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(60898,39244,'_hero_text','field_6175723c285e9'),(60899,39244,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(60900,39244,'_hero_actions_0_button','field_61757281285eb'),(60901,39244,'hero_actions','1'),(60902,39244,'_hero_actions','field_61757270285ea'),(60903,39244,'hero_style','default'),(60904,39244,'_hero_style','field_62051d9dc5324'),(60905,39244,'_thumbnail_id','39243'),(60906,39244,'__thumbnail_id','field_617570855ddaf'),(60907,39244,'hero_image_pos_x','right'),(60908,39244,'_hero_image_pos_x','field_62ec3d05390bb'),(60909,39244,'hero_image_pos_y','top'),(60910,39244,'_hero_image_pos_y','field_62ec3d05390bc'),(60911,39244,'hero_image_pos',''),(60912,39244,'_hero_image_pos','field_62ec3d05390ba'),(60913,39244,'fft_hide_from_listings','0'),(60914,39244,'_fft_hide_from_listings','field_61f1320446ab2'),(60915,39244,'fft_page_format','default'),(60916,39244,'_fft_page_format','field_61ae213f1f218'),(60917,39244,'fft_hide_nav','0'),(60918,39244,'_fft_hide_nav','field_635bd5e43527c'),(60919,39244,'fft_hide_header_call_to_action','0'),(60920,39244,'_fft_hide_header_call_to_action','field_635bd6723527d'),(60921,39244,'fft_page_sitemap','0'),(60922,39244,'_fft_page_sitemap','field_61af9b34e8181'),(60923,39244,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(60924,39244,'_blocks','field_6176696113096'),(60925,39244,'blocks_0_acfe_flexible_toggle',''),(60926,39244,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(60927,39244,'blocks_0_acfe_flexible_layout_title','Steps'),(60928,39244,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(60929,39244,'blocks_0_row_content_title',''),(60930,39244,'_blocks_0_row_content_title','field_64888cd1e26e0'),(60931,39244,'blocks_0_row_content_heading','Benefits of training with us'),(60932,39244,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(60933,39244,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(60934,39244,'_blocks_0_row_content_text','field_64888ce2e26e2'),(60935,39244,'blocks_0_row_content_actions',''),(60936,39244,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(60937,39244,'blocks_0_row_content',''),(60938,39244,'_blocks_0_row_content','field_64888cb0e26df'),(60939,39244,'blocks_0_steps_0_icon','progression.svg'),(60940,39244,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(60941,39244,'blocks_0_steps_0_title','Earning potential'),(60942,39244,'_blocks_0_steps_0_title','field_64888d94e26e7'),(60943,39244,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(60944,39244,'_blocks_0_steps_0_text','field_64888d99e26e8'),(60945,39244,'blocks_0_steps_1_icon','support.svg'),(60946,39244,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(60947,39244,'blocks_0_steps_1_title','Lifetime Learning Promise'),(60948,39244,'_blocks_0_steps_1_title','field_64888d94e26e7'),(60949,39244,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(60950,39244,'_blocks_0_steps_1_text','field_64888d99e26e8'),(60951,39244,'blocks_0_steps_2_icon','qualification.svg'),(60952,39244,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(60953,39244,'blocks_0_steps_2_title','Evidence based hands on learning'),(60954,39244,'_blocks_0_steps_2_title','field_64888d94e26e7'),(60955,39244,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(60956,39244,'_blocks_0_steps_2_text','field_64888d99e26e8'),(60957,39244,'blocks_0_steps_3_icon','leaders.svg'),(60958,39244,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(60959,39244,'blocks_0_steps_3_title','Stand out from the crowd'),(60960,39244,'_blocks_0_steps_3_title','field_64888d94e26e7'),(60961,39244,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(60962,39244,'_blocks_0_steps_3_text','field_64888d99e26e8'),(60963,39244,'blocks_0_steps','4'),(60964,39244,'_blocks_0_steps','field_64888d44e26e5'),(60965,39244,'blocks_1_acfe_flexible_toggle',''),(60966,39244,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(60967,39244,'blocks_1_acfe_flexible_layout_title','Video'),(60968,39244,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(60969,39244,'blocks_1_size','large'),(60970,39244,'_blocks_1_size','field_6487038f297c1'),(60971,39244,'blocks_1_row_content_title',''),(60972,39244,'_blocks_1_row_content_title','field_64870132a865d'),(60973,39244,'blocks_1_row_content_heading',''),(60974,39244,'_blocks_1_row_content_heading','field_64870142a865e'),(60975,39244,'blocks_1_row_content_text',''),(60976,39244,'_blocks_1_row_content_text','field_64870148a865f'),(60977,39244,'blocks_1_row_content',''),(60978,39244,'_blocks_1_row_content','field_6487008ba865c'),(60979,39244,'blocks_1_video_src',''),(60980,39244,'_blocks_1_video_src','field_6193c4a98ec07'),(60981,39244,'blocks_1_video_thumbnail',''),(60982,39244,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(60983,39244,'blocks_2_acfe_flexible_toggle',''),(60984,39244,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(60985,39244,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(60986,39244,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(60987,39244,'blocks_2_options_theme','#ffffff'),(60988,39244,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(60989,39244,'blocks_2_options_reverse','0'),(60990,39244,'_blocks_2_options_reverse','field_61768049bb8ac'),(60991,39244,'blocks_2_options',''),(60992,39244,'_blocks_2_options','field_617682517c334'),(60993,39244,'blocks_2_split_5050_image','38037'),(60994,39244,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(60995,39244,'blocks_2_split_5050_video',''),(60996,39244,'_blocks_2_split_5050_video','field_6239f3160848a'),(60997,39244,'blocks_2_split_5050_content_title',''),(60998,39244,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(60999,39244,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(61000,39244,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(61001,39244,'blocks_2_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(61002,39244,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(61003,39244,'blocks_2_split_5050_content_actions',''),(61004,39244,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(61005,39244,'blocks_2_split_5050_content',''),(61006,39244,'_blocks_2_split_5050_content','field_61767afceb8ba'),(61007,39244,'blocks_3_acfe_flexible_toggle',''),(61008,39244,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(61009,39244,'blocks_3_acfe_flexible_layout_title','Form'),(61010,39244,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(61011,39244,'blocks_3_row_content_format','standard'),(61012,39244,'_blocks_3_row_content_format','field_6481ead962881'),(61013,39244,'blocks_3_row_content_title',''),(61014,39244,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(61015,39244,'blocks_3_row_content_heading','Enquire Today'),(61016,39244,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(61017,39244,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(61018,39244,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(61019,39244,'blocks_3_row_content_actions',''),(61020,39244,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(61021,39244,'blocks_3_row_content',''),(61022,39244,'_blocks_3_row_content','field_61a0f5f5b3db0'),(61023,39244,'blocks_3_row_form',''),(61024,39244,'_blocks_3_row_form','field_61a4ff2c0b08e'),(61025,39244,'blocks_3_row_form_button_label',''),(61026,39244,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(61027,39244,'blocks_4_acfe_flexible_toggle',''),(61028,39244,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(61029,39244,'blocks_4_acfe_flexible_layout_title','Tabs'),(61030,39244,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(61031,39244,'blocks_4_options_theme','#ffffff'),(61032,39244,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(61033,39244,'blocks_4_options',''),(61034,39244,'_blocks_4_options','field_6177cfcd8140f'),(61035,39244,'blocks_4_tabs_0_tab_label','What will I learn ?'),(61036,39244,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(61037,39244,'blocks_4_tabs_0_tab_content_title',''),(61038,39244,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(61039,39244,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(61040,39244,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(61041,39244,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(61042,39244,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(61043,39244,'blocks_4_tabs_0_tab_content_actions',''),(61044,39244,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(61045,39244,'blocks_4_tabs_0_tab_content',''),(61046,39244,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(61047,39244,'blocks_4_tabs_0_tab_image','39076'),(61048,39244,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(61049,39244,'blocks_4_tabs_1_tab_label','What do I need ?'),(61050,39244,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(61051,39244,'blocks_4_tabs_1_tab_content_title',''),(61052,39244,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(61053,39244,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(61054,39244,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(61055,39244,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(61056,39244,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(61057,39244,'blocks_4_tabs_1_tab_content_actions',''),(61058,39244,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(61059,39244,'blocks_4_tabs_1_tab_content',''),(61060,39244,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(61061,39244,'blocks_4_tabs_1_tab_image','39223'),(61062,39244,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(61063,39244,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(61064,39244,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(61065,39244,'blocks_4_tabs_2_tab_content_title',''),(61066,39244,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(61067,39244,'blocks_4_tabs_2_tab_content_heading','Locations'),(61068,39244,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(61069,39244,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(61070,39244,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(61071,39244,'blocks_4_tabs_2_tab_content_actions',''),(61072,39244,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(61073,39244,'blocks_4_tabs_2_tab_content',''),(61074,39244,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(61075,39244,'blocks_4_tabs_2_tab_image','39224'),(61076,39244,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(61077,39244,'blocks_4_tabs','3'),(61078,39244,'_blocks_4_tabs','field_6177cff281419'),(61079,39244,'blocks_5_acfe_flexible_toggle',''),(61080,39244,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(61081,39244,'blocks_5_acfe_flexible_layout_title','Text Block'),(61082,39244,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(61083,39244,'blocks_5_options_theme','#b61234'),(61084,39244,'_blocks_5_options_theme','field_6176830e2ad17'),(61085,39244,'blocks_5_options',''),(61086,39244,'_blocks_5_options','field_6176830e2ad16'),(61087,39244,'blocks_5_text_block_heading','Fees & Funding Options'),(61088,39244,'_blocks_5_text_block_heading','field_617669d413097'),(61089,39244,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(61090,39244,'_blocks_5_text_block_content','field_617669ec13098'),(61091,39244,'blocks_6_acfe_flexible_toggle',''),(61092,39244,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(61093,39244,'blocks_6_acfe_flexible_layout_title','Icons'),(61094,39244,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(61095,39244,'blocks_6_options_theme','#b61234'),(61096,39244,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(61097,39244,'blocks_6_options_format','row'),(61098,39244,'_blocks_6_options_format','field_64bfde9a90690'),(61099,39244,'blocks_6_options',''),(61100,39244,'_blocks_6_options','field_64bfdd9b90684'),(61101,39244,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(61102,39244,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(61103,39244,'blocks_6_icon_row_items_0_label','Pay in Full'),(61104,39244,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(61105,39244,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(61106,39244,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(61107,39244,'blocks_6_icon_row_items_1_icon','finance.svg'),(61108,39244,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(61109,39244,'blocks_6_icon_row_items_1_label','0% finance'),(61110,39244,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(61111,39244,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(61112,39244,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(61113,39244,'blocks_6_icon_row_items_2_icon','deposit.svg'),(61114,39244,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(61115,39244,'blocks_6_icon_row_items_2_label','Deposit & balance'),(61116,39244,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(61117,39244,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(61118,39244,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(61119,39244,'blocks_6_icon_row_items','3'),(61120,39244,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(61121,39244,'blocks_7_acfe_flexible_toggle',''),(61122,39244,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(61123,39244,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(61124,39244,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(61125,39244,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(61126,39244,'_blocks_7_content','field_6193c9b5eac84'),(61127,39244,'blocks_8_acfe_flexible_toggle',''),(61128,39244,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(61129,39244,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(61130,39244,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(61131,39244,'blocks_8_testimonial_slider_content_title',''),(61132,39244,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(61133,39244,'blocks_8_testimonial_slider_content_heading','Testimonials'),(61134,39244,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(61135,39244,'blocks_8_testimonial_slider_content_text',''),(61136,39244,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(61137,39244,'blocks_8_testimonial_slider_content_actions',''),(61138,39244,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(61139,39244,'blocks_8_testimonial_slider_content',''),(61140,39244,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(61141,39244,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(61142,39244,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(61143,39244,'blocks_8_testimonial_slider_ambassador_bool','0'),(61144,39244,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(61145,39244,'blocks_9_acfe_flexible_toggle',''),(61146,39244,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(61147,39244,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(61148,39244,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(61149,39244,'blocks_9_options_theme','#ffffff'),(61150,39244,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(61151,39244,'blocks_9_options_state','0'),(61152,39244,'_blocks_9_options_state','field_6239fcb7508c5'),(61153,39244,'blocks_9_options',''),(61154,39244,'_blocks_9_options','field_6177e2991ac44'),(61155,39244,'blocks_9_content_title',''),(61156,39244,'_blocks_9_content_title','field_64d237e8bb1e2'),(61157,39244,'blocks_9_content_heading','Frequently asked questions '),(61158,39244,'_blocks_9_content_heading','field_64d237e8bb1e3'),(61159,39244,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(61160,39244,'_blocks_9_content_text','field_64d237e8bb1e4'),(61161,39244,'blocks_9_content_actions',''),(61162,39244,'_blocks_9_content_actions','field_64d237e8bb1e5'),(61163,39244,'blocks_9_content_align','left'),(61164,39244,'_blocks_9_content_align','field_64d2443e6b6aa'),(61165,39244,'blocks_9_content',''),(61166,39244,'_blocks_9_content','field_64d237e8bb1e1'),(61167,39244,'blocks_9_accordion_content','faqs'),(61168,39244,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(61169,39244,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(61170,39244,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(61171,39244,'blocks_9_actions',''),(61172,39244,'_blocks_9_actions','field_61a746a817f7a'),(61173,39245,'_edit_lock','1741944316:18'),(61174,39245,'_edit_last','18'),(61175,39245,'hide_hero','0'),(61176,39245,'_hide_hero','field_66a2380fcda39'),(61177,39245,'hero_title','Biomechanics and Podiatrists'),(61178,39245,'_hero_title','field_617571fe285e8'),(61179,39245,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(61180,39245,'_hero_text','field_6175723c285e9'),(61181,39245,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(61182,39245,'_hero_actions_0_button','field_61757281285eb'),(61183,39245,'hero_actions','1'),(61184,39245,'_hero_actions','field_61757270285ea'),(61185,39245,'hero_style','default'),(61186,39245,'_hero_style','field_62051d9dc5324'),(61187,39245,'_thumbnail_id','39247'),(61188,39245,'__thumbnail_id','field_617570855ddaf'),(61189,39245,'hero_image_pos_x','right'),(61190,39245,'_hero_image_pos_x','field_62ec3d05390bb'),(61191,39245,'hero_image_pos_y','top'),(61192,39245,'_hero_image_pos_y','field_62ec3d05390bc'),(61193,39245,'hero_image_pos',''),(61194,39245,'_hero_image_pos','field_62ec3d05390ba'),(61195,39245,'fft_hide_from_listings','0'),(61196,39245,'_fft_hide_from_listings','field_61f1320446ab2'),(61197,39245,'fft_page_format','default'),(61198,39245,'_fft_page_format','field_61ae213f1f218'),(61199,39245,'fft_hide_nav','0'),(61200,39245,'_fft_hide_nav','field_635bd5e43527c'),(61201,39245,'fft_hide_header_call_to_action','0'),(61202,39245,'_fft_hide_header_call_to_action','field_635bd6723527d'),(61203,39245,'fft_page_sitemap','0'),(61204,39245,'_fft_page_sitemap','field_61af9b34e8181'),(61205,39245,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:5:\"video\";i:6;s:4:\"tabs\";i:7;s:10:\"text_block\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(61206,39245,'_blocks','field_6176696113096'),(61207,39245,'_yoast_wpseo_focuskw','Biomechanics and Podiatry'),(61208,39245,'_yoast_wpseo_title','Podiatrists | Biomechanics Education'),(61209,39245,'_yoast_wpseo_linkdex','33'),(61210,39245,'_yoast_wpseo_estimated-reading-time-minutes','1'),(61459,39245,'_yoast_wpseo_metadesc','Get started in biomechanics for podiatrists. Explore key principles to enhance your practice and improve patient outcomes with advanced techniques.'),(61460,39247,'_wp_attached_file','2024/08/Biomechanics-and-podiatrists-hero-image.jpg'),(61461,39247,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1024;s:6:\"height\";i:684;s:4:\"file\";s:51:\"2024/08/Biomechanics-and-podiatrists-hero-image.jpg\";s:8:\"filesize\";i:177863;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128528;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55076;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105952;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62083;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-900x684.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144373;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55097;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127746;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54334;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-675x684.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116116;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-900x684.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144373;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56793;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135005;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51785;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:51:\"Biomechanics-and-podiatrists-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115499;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:52:\"Biomechanics-and-podiatrists-hero-image-1024x675.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158763;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535280538\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:4:\"2200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(61462,39248,'hide_hero','0'),(61463,39248,'_hide_hero','field_66a2380fcda39'),(61464,39248,'hero_title','Biomechanics and Podiatrists'),(61465,39248,'_hero_title','field_617571fe285e8'),(61466,39248,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(61467,39248,'_hero_text','field_6175723c285e9'),(61468,39248,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(61469,39248,'_hero_actions_0_button','field_61757281285eb'),(61470,39248,'hero_actions','1'),(61471,39248,'_hero_actions','field_61757270285ea'),(61472,39248,'hero_style','default'),(61473,39248,'_hero_style','field_62051d9dc5324'),(61474,39248,'_thumbnail_id','39247'),(61475,39248,'__thumbnail_id','field_617570855ddaf'),(61476,39248,'hero_image_pos_x','right'),(61477,39248,'_hero_image_pos_x','field_62ec3d05390bb'),(61478,39248,'hero_image_pos_y','top'),(61479,39248,'_hero_image_pos_y','field_62ec3d05390bc'),(61480,39248,'hero_image_pos',''),(61481,39248,'_hero_image_pos','field_62ec3d05390ba'),(61482,39248,'fft_hide_from_listings','0'),(61483,39248,'_fft_hide_from_listings','field_61f1320446ab2'),(61484,39248,'fft_page_format','default'),(61485,39248,'_fft_page_format','field_61ae213f1f218'),(61486,39248,'fft_hide_nav','0'),(61487,39248,'_fft_hide_nav','field_635bd5e43527c'),(61488,39248,'fft_hide_header_call_to_action','0'),(61489,39248,'_fft_hide_header_call_to_action','field_635bd6723527d'),(61490,39248,'fft_page_sitemap','0'),(61491,39248,'_fft_page_sitemap','field_61af9b34e8181'),(61492,39248,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(61493,39248,'_blocks','field_6176696113096'),(61494,39248,'blocks_0_acfe_flexible_toggle',''),(61495,39248,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(61496,39248,'blocks_0_acfe_flexible_layout_title','Steps'),(61497,39248,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(61498,39248,'blocks_0_row_content_title',''),(61499,39248,'_blocks_0_row_content_title','field_64888cd1e26e0'),(61500,39248,'blocks_0_row_content_heading','Benefits of training with us'),(61501,39248,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(61502,39248,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(61503,39248,'_blocks_0_row_content_text','field_64888ce2e26e2'),(61504,39248,'blocks_0_row_content_actions',''),(61505,39248,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(61506,39248,'blocks_0_row_content',''),(61507,39248,'_blocks_0_row_content','field_64888cb0e26df'),(61508,39248,'blocks_0_steps_0_icon','progression.svg'),(61509,39248,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(61510,39248,'blocks_0_steps_0_title','Earning potential'),(61511,39248,'_blocks_0_steps_0_title','field_64888d94e26e7'),(61512,39248,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(61513,39248,'_blocks_0_steps_0_text','field_64888d99e26e8'),(61514,39248,'blocks_0_steps_1_icon','support.svg'),(61515,39248,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(61516,39248,'blocks_0_steps_1_title','Lifetime Learning Promise'),(61517,39248,'_blocks_0_steps_1_title','field_64888d94e26e7'),(61518,39248,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(61519,39248,'_blocks_0_steps_1_text','field_64888d99e26e8'),(61520,39248,'blocks_0_steps_2_icon','qualification.svg'),(61521,39248,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(61522,39248,'blocks_0_steps_2_title','Evidence based hands on learning'),(61523,39248,'_blocks_0_steps_2_title','field_64888d94e26e7'),(61524,39248,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(61525,39248,'_blocks_0_steps_2_text','field_64888d99e26e8'),(61526,39248,'blocks_0_steps_3_icon','leaders.svg'),(61527,39248,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(61528,39248,'blocks_0_steps_3_title','Stand out from the crowd'),(61529,39248,'_blocks_0_steps_3_title','field_64888d94e26e7'),(61530,39248,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(61531,39248,'_blocks_0_steps_3_text','field_64888d99e26e8'),(61532,39248,'blocks_0_steps','4'),(61533,39248,'_blocks_0_steps','field_64888d44e26e5'),(61534,39248,'blocks_1_acfe_flexible_toggle',''),(61535,39248,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(61536,39248,'blocks_1_acfe_flexible_layout_title','Video'),(61537,39248,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(61538,39248,'blocks_1_size','large'),(61539,39248,'_blocks_1_size','field_6487038f297c1'),(61540,39248,'blocks_1_row_content_title',''),(61541,39248,'_blocks_1_row_content_title','field_64870132a865d'),(61542,39248,'blocks_1_row_content_heading',''),(61543,39248,'_blocks_1_row_content_heading','field_64870142a865e'),(61544,39248,'blocks_1_row_content_text',''),(61545,39248,'_blocks_1_row_content_text','field_64870148a865f'),(61546,39248,'blocks_1_row_content',''),(61547,39248,'_blocks_1_row_content','field_6487008ba865c'),(61548,39248,'blocks_1_video_src',''),(61549,39248,'_blocks_1_video_src','field_6193c4a98ec07'),(61550,39248,'blocks_1_video_thumbnail',''),(61551,39248,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(61552,39248,'blocks_2_acfe_flexible_toggle',''),(61553,39248,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(61554,39248,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(61555,39248,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(61556,39248,'blocks_2_options_theme','#ffffff'),(61557,39248,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(61558,39248,'blocks_2_options_reverse','0'),(61559,39248,'_blocks_2_options_reverse','field_61768049bb8ac'),(61560,39248,'blocks_2_options',''),(61561,39248,'_blocks_2_options','field_617682517c334'),(61562,39248,'blocks_2_split_5050_image','39241'),(61563,39248,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(61564,39248,'blocks_2_split_5050_video',''),(61565,39248,'_blocks_2_split_5050_video','field_6239f3160848a'),(61566,39248,'blocks_2_split_5050_content_title',''),(61567,39248,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(61568,39248,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(61569,39248,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(61570,39248,'blocks_2_split_5050_content_text','This integrated system is enabling podiatrists to find solutions to foot problems through understanding the upper body and shoulders. By assessing the entire body, this unique approach gives podiatrists the ability to retain clients longer and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(61571,39248,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(61572,39248,'blocks_2_split_5050_content_actions',''),(61573,39248,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(61574,39248,'blocks_2_split_5050_content',''),(61575,39248,'_blocks_2_split_5050_content','field_61767afceb8ba'),(61576,39248,'blocks_3_acfe_flexible_toggle',''),(61577,39248,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(61578,39248,'blocks_3_acfe_flexible_layout_title','Form'),(61579,39248,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(61580,39248,'blocks_3_row_content_format','standard'),(61581,39248,'_blocks_3_row_content_format','field_6481ead962881'),(61582,39248,'blocks_3_row_content_title',''),(61583,39248,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(61584,39248,'blocks_3_row_content_heading','Enquire Today'),(61585,39248,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(61586,39248,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(61587,39248,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(61588,39248,'blocks_3_row_content_actions',''),(61589,39248,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(61590,39248,'blocks_3_row_content',''),(61591,39248,'_blocks_3_row_content','field_61a0f5f5b3db0'),(61592,39248,'blocks_3_row_form',''),(61593,39248,'_blocks_3_row_form','field_61a4ff2c0b08e'),(61594,39248,'blocks_3_row_form_button_label',''),(61595,39248,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(61596,39248,'blocks_4_acfe_flexible_toggle',''),(61597,39248,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(61598,39248,'blocks_4_acfe_flexible_layout_title','Tabs'),(61599,39248,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(61600,39248,'blocks_4_options_theme','#ffffff'),(61601,39248,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(61602,39248,'blocks_4_options',''),(61603,39248,'_blocks_4_options','field_6177cfcd8140f'),(61604,39248,'blocks_4_tabs_0_tab_label','What will I learn ?'),(61605,39248,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(61606,39248,'blocks_4_tabs_0_tab_content_title',''),(61607,39248,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(61608,39248,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(61609,39248,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(61610,39248,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(61611,39248,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(61612,39248,'blocks_4_tabs_0_tab_content_actions',''),(61613,39248,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(61614,39248,'blocks_4_tabs_0_tab_content',''),(61615,39248,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(61616,39248,'blocks_4_tabs_0_tab_image','39076'),(61617,39248,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(61618,39248,'blocks_4_tabs_1_tab_label','What do I need ?'),(61619,39248,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(61620,39248,'blocks_4_tabs_1_tab_content_title',''),(61621,39248,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(61622,39248,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(61623,39248,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(61624,39248,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(61625,39248,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(61626,39248,'blocks_4_tabs_1_tab_content_actions',''),(61627,39248,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(61628,39248,'blocks_4_tabs_1_tab_content',''),(61629,39248,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(61630,39248,'blocks_4_tabs_1_tab_image','39223'),(61631,39248,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(61632,39248,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(61633,39248,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(61634,39248,'blocks_4_tabs_2_tab_content_title',''),(61635,39248,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(61636,39248,'blocks_4_tabs_2_tab_content_heading','Locations'),(61637,39248,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(61638,39248,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(61639,39248,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(61640,39248,'blocks_4_tabs_2_tab_content_actions',''),(61641,39248,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(61642,39248,'blocks_4_tabs_2_tab_content',''),(61643,39248,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(61644,39248,'blocks_4_tabs_2_tab_image','39224'),(61645,39248,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(61646,39248,'blocks_4_tabs','3'),(61647,39248,'_blocks_4_tabs','field_6177cff281419'),(61648,39248,'blocks_5_acfe_flexible_toggle',''),(61649,39248,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(61650,39248,'blocks_5_acfe_flexible_layout_title','Text Block'),(61651,39248,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(61652,39248,'blocks_5_options_theme','#b61234'),(61653,39248,'_blocks_5_options_theme','field_6176830e2ad17'),(61654,39248,'blocks_5_options',''),(61655,39248,'_blocks_5_options','field_6176830e2ad16'),(61656,39248,'blocks_5_text_block_heading','Fees & Funding Options'),(61657,39248,'_blocks_5_text_block_heading','field_617669d413097'),(61658,39248,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(61659,39248,'_blocks_5_text_block_content','field_617669ec13098'),(61660,39248,'blocks_6_acfe_flexible_toggle',''),(61661,39248,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(61662,39248,'blocks_6_acfe_flexible_layout_title','Icons'),(61663,39248,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(61664,39248,'blocks_6_options_theme','#b61234'),(61665,39248,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(61666,39248,'blocks_6_options_format','row'),(61667,39248,'_blocks_6_options_format','field_64bfde9a90690'),(61668,39248,'blocks_6_options',''),(61669,39248,'_blocks_6_options','field_64bfdd9b90684'),(61670,39248,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(61671,39248,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(61672,39248,'blocks_6_icon_row_items_0_label','Pay in Full'),(61673,39248,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(61674,39248,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(61675,39248,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(61676,39248,'blocks_6_icon_row_items_1_icon','finance.svg'),(61677,39248,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(61678,39248,'blocks_6_icon_row_items_1_label','0% finance'),(61679,39248,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(61680,39248,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(61681,39248,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(61682,39248,'blocks_6_icon_row_items_2_icon','deposit.svg'),(61683,39248,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(61684,39248,'blocks_6_icon_row_items_2_label','Deposit & balance'),(61685,39248,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(61686,39248,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(61687,39248,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(61688,39248,'blocks_6_icon_row_items','3'),(61689,39248,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(61690,39248,'blocks_7_acfe_flexible_toggle',''),(61691,39248,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(61692,39248,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(61693,39248,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(61694,39248,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(61695,39248,'_blocks_7_content','field_6193c9b5eac84'),(61696,39248,'blocks_8_acfe_flexible_toggle',''),(61697,39248,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(61698,39248,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(61699,39248,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(61700,39248,'blocks_8_testimonial_slider_content_title',''),(61701,39248,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(61702,39248,'blocks_8_testimonial_slider_content_heading','Testimonials'),(61703,39248,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(61704,39248,'blocks_8_testimonial_slider_content_text',''),(61705,39248,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(61706,39248,'blocks_8_testimonial_slider_content_actions',''),(61707,39248,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(61708,39248,'blocks_8_testimonial_slider_content',''),(61709,39248,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(61710,39248,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(61711,39248,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(61712,39248,'blocks_8_testimonial_slider_ambassador_bool','0'),(61713,39248,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(61714,39248,'blocks_9_acfe_flexible_toggle',''),(61715,39248,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(61716,39248,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(61717,39248,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(61718,39248,'blocks_9_options_theme','#ffffff'),(61719,39248,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(61720,39248,'blocks_9_options_state','0'),(61721,39248,'_blocks_9_options_state','field_6239fcb7508c5'),(61722,39248,'blocks_9_options',''),(61723,39248,'_blocks_9_options','field_6177e2991ac44'),(61724,39248,'blocks_9_content_title',''),(61725,39248,'_blocks_9_content_title','field_64d237e8bb1e2'),(61726,39248,'blocks_9_content_heading','Frequently asked questions '),(61727,39248,'_blocks_9_content_heading','field_64d237e8bb1e3'),(61728,39248,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(61729,39248,'_blocks_9_content_text','field_64d237e8bb1e4'),(61730,39248,'blocks_9_content_actions',''),(61731,39248,'_blocks_9_content_actions','field_64d237e8bb1e5'),(61732,39248,'blocks_9_content_align','left'),(61733,39248,'_blocks_9_content_align','field_64d2443e6b6aa'),(61734,39248,'blocks_9_content',''),(61735,39248,'_blocks_9_content','field_64d237e8bb1e1'),(61736,39248,'blocks_9_accordion_content','faqs'),(61737,39248,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(61738,39248,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(61739,39248,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(61740,39248,'blocks_9_actions',''),(61741,39248,'_blocks_9_actions','field_61a746a817f7a'),(61742,39249,'_edit_lock','1741944343:18'),(61743,39249,'_edit_last','18'),(61744,39249,'hide_hero','0'),(61745,39249,'_hide_hero','field_66a2380fcda39'),(61746,39249,'hero_title','Biomechanics and Sports Coaches '),(61747,39249,'_hero_title','field_617571fe285e8'),(61748,39249,'hero_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(61749,39249,'_hero_text','field_6175723c285e9'),(61750,39249,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39249-3\";s:6:\"target\";s:0:\"\";}'),(61751,39249,'_hero_actions_0_button','field_61757281285eb'),(61752,39249,'hero_actions','1'),(61753,39249,'_hero_actions','field_61757270285ea'),(61754,39249,'hero_style','default'),(61755,39249,'_hero_style','field_62051d9dc5324'),(61756,39249,'_thumbnail_id','39251'),(61757,39249,'__thumbnail_id','field_617570855ddaf'),(61758,39249,'hero_image_pos_x','right'),(61759,39249,'_hero_image_pos_x','field_62ec3d05390bb'),(61760,39249,'hero_image_pos_y','top'),(61761,39249,'_hero_image_pos_y','field_62ec3d05390bc'),(61762,39249,'hero_image_pos',''),(61763,39249,'_hero_image_pos','field_62ec3d05390ba'),(61764,39249,'fft_hide_from_listings','0'),(61765,39249,'_fft_hide_from_listings','field_61f1320446ab2'),(61766,39249,'fft_page_format','default'),(61767,39249,'_fft_page_format','field_61ae213f1f218'),(61768,39249,'fft_hide_nav','0'),(61769,39249,'_fft_hide_nav','field_635bd5e43527c'),(61770,39249,'fft_hide_header_call_to_action','0'),(61771,39249,'_fft_hide_header_call_to_action','field_635bd6723527d'),(61772,39249,'fft_page_sitemap','0'),(61773,39249,'_fft_page_sitemap','field_61af9b34e8181'),(61774,39249,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"steps\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:10:\"accordions\";i:9;s:18:\"testimonial_slider\";}'),(61775,39249,'_blocks','field_6176696113096'),(61776,39249,'_yoast_wpseo_focuskw','Biomechanics and Sports coach'),(61777,39249,'_yoast_wpseo_title','Sports Coaches | Biomechanics Education'),(61778,39249,'_yoast_wpseo_linkdex','38'),(61779,39249,'_yoast_wpseo_estimated-reading-time-minutes','1'),(62028,39249,'_yoast_wpseo_metadesc','Biomechanics for sports coaches. Discover essential principles to optimize athletic performance and enhance training programs.'),(62029,39251,'_wp_attached_file','2024/08/Biomechancis-and-sports-coaches-hero-image.jpg'),(62030,39251,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1553;s:4:\"file\";s:54:\"2024/08/Biomechancis-and-sports-coaches-hero-image.jpg\";s:8:\"filesize\";i:220139;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"Biomechancis-and-sports-coaches-hero-image-900x546.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:546;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54920;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-hero-image-1200x728.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:728;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82962;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Biomechancis-and-sports-coaches-hero-image-400x243.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17038;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Biomechancis-and-sports-coaches-hero-image-768x466.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43417;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-hero-image-1536x932.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:932;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120510;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:56:\"Biomechancis-and-sports-coaches-hero-image-2048x1242.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1242;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185155;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:54:\"Biomechancis-and-sports-coaches-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26194;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:54:\"Biomechancis-and-sports-coaches-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86942;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:56:\"Biomechancis-and-sports-coaches-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133323;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:54:\"Biomechancis-and-sports-coaches-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18179;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:54:\"Biomechancis-and-sports-coaches-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58987;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89626;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:54:\"Biomechancis-and-sports-coaches-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20876;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:54:\"Biomechancis-and-sports-coaches-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69905;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107669;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:54:\"Biomechancis-and-sports-coaches-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20459;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:54:\"Biomechancis-and-sports-coaches-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66684;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101596;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:54:\"Biomechancis-and-sports-coaches-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16143;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:54:\"Biomechancis-and-sports-coaches-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51857;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79050;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(62031,39252,'_wp_attached_file','2024/08/Biomechancis-and-sports-coaches-50.50-image.jpg'),(62032,39252,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:55:\"2024/08/Biomechancis-and-sports-coaches-50.50-image.jpg\";s:8:\"filesize\";i:725960;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132873;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"Biomechancis-and-sports-coaches-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:217573;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-50.50-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32814;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-50.50-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100552;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:57:\"Biomechancis-and-sports-coaches-50.50-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:334223;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:57:\"Biomechancis-and-sports-coaches-50.50-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:542479;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-50.50-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44457;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-50.50-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182979;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:57:\"Biomechancis-and-sports-coaches-50.50-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:296203;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-50.50-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32638;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132907;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:56:\"Biomechancis-and-sports-coaches-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:217722;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-50.50-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33057;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-50.50-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134433;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:56:\"Biomechancis-and-sports-coaches-50.50-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218543;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-50.50-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36339;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-50.50-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147796;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:56:\"Biomechancis-and-sports-coaches-50.50-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:241175;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-50.50-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28695;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:55:\"Biomechancis-and-sports-coaches-50.50-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114603;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:56:\"Biomechancis-and-sports-coaches-50.50-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186899;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(62033,39253,'hide_hero','0'),(62034,39253,'_hide_hero','field_66a2380fcda39'),(62035,39253,'hero_title','Biomechanics and Sports Coaches '),(62036,39253,'_hero_title','field_617571fe285e8'),(62037,39253,'hero_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(62038,39253,'_hero_text','field_6175723c285e9'),(62039,39253,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(62040,39253,'_hero_actions_0_button','field_61757281285eb'),(62041,39253,'hero_actions','1'),(62042,39253,'_hero_actions','field_61757270285ea'),(62043,39253,'hero_style','default'),(62044,39253,'_hero_style','field_62051d9dc5324'),(62045,39253,'_thumbnail_id','39251'),(62046,39253,'__thumbnail_id','field_617570855ddaf'),(62047,39253,'hero_image_pos_x','right'),(62048,39253,'_hero_image_pos_x','field_62ec3d05390bb'),(62049,39253,'hero_image_pos_y','top'),(62050,39253,'_hero_image_pos_y','field_62ec3d05390bc'),(62051,39253,'hero_image_pos',''),(62052,39253,'_hero_image_pos','field_62ec3d05390ba'),(62053,39253,'fft_hide_from_listings','0'),(62054,39253,'_fft_hide_from_listings','field_61f1320446ab2'),(62055,39253,'fft_page_format','default'),(62056,39253,'_fft_page_format','field_61ae213f1f218'),(62057,39253,'fft_hide_nav','0'),(62058,39253,'_fft_hide_nav','field_635bd5e43527c'),(62059,39253,'fft_hide_header_call_to_action','0'),(62060,39253,'_fft_hide_header_call_to_action','field_635bd6723527d'),(62061,39253,'fft_page_sitemap','0'),(62062,39253,'_fft_page_sitemap','field_61af9b34e8181'),(62063,39253,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(62064,39253,'_blocks','field_6176696113096'),(62065,39253,'blocks_0_acfe_flexible_toggle',''),(62066,39253,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(62067,39253,'blocks_0_acfe_flexible_layout_title','Steps'),(62068,39253,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(62069,39253,'blocks_0_row_content_title',''),(62070,39253,'_blocks_0_row_content_title','field_64888cd1e26e0'),(62071,39253,'blocks_0_row_content_heading','Benefits of training with us'),(62072,39253,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(62073,39253,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(62074,39253,'_blocks_0_row_content_text','field_64888ce2e26e2'),(62075,39253,'blocks_0_row_content_actions',''),(62076,39253,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(62077,39253,'blocks_0_row_content',''),(62078,39253,'_blocks_0_row_content','field_64888cb0e26df'),(62079,39253,'blocks_0_steps_0_icon','progression.svg'),(62080,39253,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(62081,39253,'blocks_0_steps_0_title','Earning potential'),(62082,39253,'_blocks_0_steps_0_title','field_64888d94e26e7'),(62083,39253,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(62084,39253,'_blocks_0_steps_0_text','field_64888d99e26e8'),(62085,39253,'blocks_0_steps_1_icon','support.svg'),(62086,39253,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(62087,39253,'blocks_0_steps_1_title','Lifetime Learning Promise'),(62088,39253,'_blocks_0_steps_1_title','field_64888d94e26e7'),(62089,39253,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(62090,39253,'_blocks_0_steps_1_text','field_64888d99e26e8'),(62091,39253,'blocks_0_steps_2_icon','qualification.svg'),(62092,39253,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(62093,39253,'blocks_0_steps_2_title','Evidence based hands on learning'),(62094,39253,'_blocks_0_steps_2_title','field_64888d94e26e7'),(62095,39253,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(62096,39253,'_blocks_0_steps_2_text','field_64888d99e26e8'),(62097,39253,'blocks_0_steps_3_icon','leaders.svg'),(62098,39253,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(62099,39253,'blocks_0_steps_3_title','Stand out from the crowd'),(62100,39253,'_blocks_0_steps_3_title','field_64888d94e26e7'),(62101,39253,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(62102,39253,'_blocks_0_steps_3_text','field_64888d99e26e8'),(62103,39253,'blocks_0_steps','4'),(62104,39253,'_blocks_0_steps','field_64888d44e26e5'),(62105,39253,'blocks_1_acfe_flexible_toggle',''),(62106,39253,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(62107,39253,'blocks_1_acfe_flexible_layout_title','Video'),(62108,39253,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(62109,39253,'blocks_1_size','large'),(62110,39253,'_blocks_1_size','field_6487038f297c1'),(62111,39253,'blocks_1_row_content_title',''),(62112,39253,'_blocks_1_row_content_title','field_64870132a865d'),(62113,39253,'blocks_1_row_content_heading',''),(62114,39253,'_blocks_1_row_content_heading','field_64870142a865e'),(62115,39253,'blocks_1_row_content_text',''),(62116,39253,'_blocks_1_row_content_text','field_64870148a865f'),(62117,39253,'blocks_1_row_content',''),(62118,39253,'_blocks_1_row_content','field_6487008ba865c'),(62119,39253,'blocks_1_video_src',''),(62120,39253,'_blocks_1_video_src','field_6193c4a98ec07'),(62121,39253,'blocks_1_video_thumbnail',''),(62122,39253,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(62123,39253,'blocks_2_acfe_flexible_toggle',''),(62124,39253,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(62125,39253,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(62126,39253,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(62127,39253,'blocks_2_options_theme','#ffffff'),(62128,39253,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(62129,39253,'blocks_2_options_reverse','0'),(62130,39253,'_blocks_2_options_reverse','field_61768049bb8ac'),(62131,39253,'blocks_2_options',''),(62132,39253,'_blocks_2_options','field_617682517c334'),(62133,39253,'blocks_2_split_5050_image','39252'),(62134,39253,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(62135,39253,'blocks_2_split_5050_video',''),(62136,39253,'_blocks_2_split_5050_video','field_6239f3160848a'),(62137,39253,'blocks_2_split_5050_content_title',''),(62138,39253,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(62139,39253,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a sports coach'),(62140,39253,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(62141,39253,'blocks_2_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from, injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(62142,39253,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(62143,39253,'blocks_2_split_5050_content_actions',''),(62144,39253,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(62145,39253,'blocks_2_split_5050_content',''),(62146,39253,'_blocks_2_split_5050_content','field_61767afceb8ba'),(62147,39253,'blocks_3_acfe_flexible_toggle',''),(62148,39253,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(62149,39253,'blocks_3_acfe_flexible_layout_title','Form'),(62150,39253,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(62151,39253,'blocks_3_row_content_format','standard'),(62152,39253,'_blocks_3_row_content_format','field_6481ead962881'),(62153,39253,'blocks_3_row_content_title',''),(62154,39253,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(62155,39253,'blocks_3_row_content_heading','Enquire Today'),(62156,39253,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(62157,39253,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(62158,39253,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(62159,39253,'blocks_3_row_content_actions',''),(62160,39253,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(62161,39253,'blocks_3_row_content',''),(62162,39253,'_blocks_3_row_content','field_61a0f5f5b3db0'),(62163,39253,'blocks_3_row_form',''),(62164,39253,'_blocks_3_row_form','field_61a4ff2c0b08e'),(62165,39253,'blocks_3_row_form_button_label',''),(62166,39253,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(62167,39253,'blocks_4_acfe_flexible_toggle',''),(62168,39253,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(62169,39253,'blocks_4_acfe_flexible_layout_title','Tabs'),(62170,39253,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(62171,39253,'blocks_4_options_theme','#ffffff'),(62172,39253,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(62173,39253,'blocks_4_options',''),(62174,39253,'_blocks_4_options','field_6177cfcd8140f'),(62175,39253,'blocks_4_tabs_0_tab_label','What will I learn ?'),(62176,39253,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(62177,39253,'blocks_4_tabs_0_tab_content_title',''),(62178,39253,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(62179,39253,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(62180,39253,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(62181,39253,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(62182,39253,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(62183,39253,'blocks_4_tabs_0_tab_content_actions',''),(62184,39253,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(62185,39253,'blocks_4_tabs_0_tab_content',''),(62186,39253,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(62187,39253,'blocks_4_tabs_0_tab_image','39076'),(62188,39253,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(62189,39253,'blocks_4_tabs_1_tab_label','What do I need ?'),(62190,39253,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(62191,39253,'blocks_4_tabs_1_tab_content_title',''),(62192,39253,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(62193,39253,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(62194,39253,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(62195,39253,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(62196,39253,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(62197,39253,'blocks_4_tabs_1_tab_content_actions',''),(62198,39253,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(62199,39253,'blocks_4_tabs_1_tab_content',''),(62200,39253,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(62201,39253,'blocks_4_tabs_1_tab_image','39223'),(62202,39253,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(62203,39253,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(62204,39253,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(62205,39253,'blocks_4_tabs_2_tab_content_title',''),(62206,39253,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(62207,39253,'blocks_4_tabs_2_tab_content_heading','Locations'),(62208,39253,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(62209,39253,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(62210,39253,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(62211,39253,'blocks_4_tabs_2_tab_content_actions',''),(62212,39253,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(62213,39253,'blocks_4_tabs_2_tab_content',''),(62214,39253,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(62215,39253,'blocks_4_tabs_2_tab_image','39224'),(62216,39253,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(62217,39253,'blocks_4_tabs','3'),(62218,39253,'_blocks_4_tabs','field_6177cff281419'),(62219,39253,'blocks_5_acfe_flexible_toggle',''),(62220,39253,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(62221,39253,'blocks_5_acfe_flexible_layout_title','Text Block'),(62222,39253,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(62223,39253,'blocks_5_options_theme','#b61234'),(62224,39253,'_blocks_5_options_theme','field_6176830e2ad17'),(62225,39253,'blocks_5_options',''),(62226,39253,'_blocks_5_options','field_6176830e2ad16'),(62227,39253,'blocks_5_text_block_heading','Fees & Funding Options'),(62228,39253,'_blocks_5_text_block_heading','field_617669d413097'),(62229,39253,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(62230,39253,'_blocks_5_text_block_content','field_617669ec13098'),(62231,39253,'blocks_6_acfe_flexible_toggle',''),(62232,39253,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(62233,39253,'blocks_6_acfe_flexible_layout_title','Icons'),(62234,39253,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(62235,39253,'blocks_6_options_theme','#b61234'),(62236,39253,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(62237,39253,'blocks_6_options_format','row'),(62238,39253,'_blocks_6_options_format','field_64bfde9a90690'),(62239,39253,'blocks_6_options',''),(62240,39253,'_blocks_6_options','field_64bfdd9b90684'),(62241,39253,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(62242,39253,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(62243,39253,'blocks_6_icon_row_items_0_label','Pay in Full'),(62244,39253,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(62245,39253,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(62246,39253,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(62247,39253,'blocks_6_icon_row_items_1_icon','finance.svg'),(62248,39253,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(62249,39253,'blocks_6_icon_row_items_1_label','0% finance'),(62250,39253,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(62251,39253,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(62252,39253,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(62253,39253,'blocks_6_icon_row_items_2_icon','deposit.svg'),(62254,39253,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(62255,39253,'blocks_6_icon_row_items_2_label','Deposit & balance'),(62256,39253,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(62257,39253,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(62258,39253,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(62259,39253,'blocks_6_icon_row_items','3'),(62260,39253,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(62261,39253,'blocks_7_acfe_flexible_toggle',''),(62262,39253,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(62263,39253,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(62264,39253,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(62265,39253,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(62266,39253,'_blocks_7_content','field_6193c9b5eac84'),(62267,39253,'blocks_8_acfe_flexible_toggle',''),(62268,39253,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(62269,39253,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(62270,39253,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(62271,39253,'blocks_8_testimonial_slider_content_title',''),(62272,39253,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(62273,39253,'blocks_8_testimonial_slider_content_heading','Testimonials'),(62274,39253,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(62275,39253,'blocks_8_testimonial_slider_content_text',''),(62276,39253,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(62277,39253,'blocks_8_testimonial_slider_content_actions',''),(62278,39253,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(62279,39253,'blocks_8_testimonial_slider_content',''),(62280,39253,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(62281,39253,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(62282,39253,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(62283,39253,'blocks_8_testimonial_slider_ambassador_bool','0'),(62284,39253,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(62285,39253,'blocks_9_acfe_flexible_toggle',''),(62286,39253,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(62287,39253,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(62288,39253,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(62289,39253,'blocks_9_options_theme','#ffffff'),(62290,39253,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(62291,39253,'blocks_9_options_state','0'),(62292,39253,'_blocks_9_options_state','field_6239fcb7508c5'),(62293,39253,'blocks_9_options',''),(62294,39253,'_blocks_9_options','field_6177e2991ac44'),(62295,39253,'blocks_9_content_title',''),(62296,39253,'_blocks_9_content_title','field_64d237e8bb1e2'),(62297,39253,'blocks_9_content_heading','Frequently asked questions '),(62298,39253,'_blocks_9_content_heading','field_64d237e8bb1e3'),(62299,39253,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(62300,39253,'_blocks_9_content_text','field_64d237e8bb1e4'),(62301,39253,'blocks_9_content_actions',''),(62302,39253,'_blocks_9_content_actions','field_64d237e8bb1e5'),(62303,39253,'blocks_9_content_align','left'),(62304,39253,'_blocks_9_content_align','field_64d2443e6b6aa'),(62305,39253,'blocks_9_content',''),(62306,39253,'_blocks_9_content','field_64d237e8bb1e1'),(62307,39253,'blocks_9_accordion_content','faqs'),(62308,39253,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(62309,39253,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(62310,39253,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(62311,39253,'blocks_9_actions',''),(62312,39253,'_blocks_9_actions','field_61a746a817f7a'),(62313,39254,'_edit_lock','1741944368:18'),(62314,39254,'_edit_last','18'),(62315,39254,'hide_hero','0'),(62316,39254,'_hide_hero','field_66a2380fcda39'),(62317,39254,'hero_title','Biomechanics and S&C coaches'),(62318,39254,'_hero_title','field_617571fe285e8'),(62319,39254,'hero_text','Gain a deeper understanding of anatomy and client movement and level up your Strength and Conditioning practice through intrinsic biomechanics.'),(62320,39254,'_hero_text','field_6175723c285e9'),(62321,39254,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39254-3\";s:6:\"target\";s:0:\"\";}'),(62322,39254,'_hero_actions_0_button','field_61757281285eb'),(62323,39254,'hero_actions','1'),(62324,39254,'_hero_actions','field_61757270285ea'),(62325,39254,'hero_style','default'),(62326,39254,'_hero_style','field_62051d9dc5324'),(62327,39254,'_thumbnail_id','39256'),(62328,39254,'__thumbnail_id','field_617570855ddaf'),(62329,39254,'hero_image_pos_x','right'),(62330,39254,'_hero_image_pos_x','field_62ec3d05390bb'),(62331,39254,'hero_image_pos_y','top'),(62332,39254,'_hero_image_pos_y','field_62ec3d05390bc'),(62333,39254,'hero_image_pos',''),(62334,39254,'_hero_image_pos','field_62ec3d05390ba'),(62335,39254,'fft_hide_from_listings','0'),(62336,39254,'_fft_hide_from_listings','field_61f1320446ab2'),(62337,39254,'fft_page_format','default'),(62338,39254,'_fft_page_format','field_61ae213f1f218'),(62339,39254,'fft_hide_nav','0'),(62340,39254,'_fft_hide_nav','field_635bd5e43527c'),(62341,39254,'fft_hide_header_call_to_action','0'),(62342,39254,'_fft_hide_header_call_to_action','field_635bd6723527d'),(62343,39254,'fft_page_sitemap','0'),(62344,39254,'_fft_page_sitemap','field_61af9b34e8181'),(62345,39254,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(62346,39254,'_blocks','field_6176696113096'),(62347,39254,'_yoast_wpseo_focuskw','Biomechanics and Strength and conditioning'),(62348,39254,'_yoast_wpseo_title','S&C coaches | Biomechanics Education'),(62349,39254,'_yoast_wpseo_linkdex','35'),(62350,39254,'_yoast_wpseo_estimated-reading-time-minutes','1'),(62599,39254,'_yoast_wpseo_metadesc','Get started in biomechanics for S&C. Learn essential principles to enhance your practice and improve client results with expert techniques.'),(62600,39256,'_wp_attached_file','2024/08/Biomechanics-and-SC-hero-image-scaled.jpg'),(62601,39256,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:49:\"2024/08/Biomechanics-and-SC-hero-image-scaled.jpg\";s:8:\"filesize\";i:324385;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"Biomechanics-and-SC-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75339;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102014;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"Biomechanics-and-SC-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40750;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"Biomechanics-and-SC-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64883;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:44:\"Biomechanics-and-SC-hero-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138815;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:44:\"Biomechanics-and-SC-hero-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214122;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:42:\"Biomechanics-and-SC-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47015;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:42:\"Biomechanics-and-SC-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98997;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:44:\"Biomechanics-and-SC-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142539;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:42:\"Biomechanics-and-SC-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40768;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:42:\"Biomechanics-and-SC-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75339;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102014;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:42:\"Biomechanics-and-SC-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44234;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:42:\"Biomechanics-and-SC-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89102;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126144;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:42:\"Biomechanics-and-SC-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42376;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:42:\"Biomechanics-and-SC-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81600;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112741;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:42:\"Biomechanics-and-SC-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39043;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:42:\"Biomechanics-and-SC-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69896;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93726;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1634977793\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:34:\"Biomechanics-and-SC-hero-image.jpg\";}'),(62602,39257,'_wp_attached_file','2024/08/Biomechanics-and-SC-50.50-image.jpg'),(62603,39257,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:43:\"2024/08/Biomechanics-and-SC-50.50-image.jpg\";s:8:\"filesize\";i:228290;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44867;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"Biomechanics-and-SC-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69538;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-50.50-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13930;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-50.50-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35157;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"Biomechanics-and-SC-50.50-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106388;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:45:\"Biomechanics-and-SC-50.50-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179237;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-50.50-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18410;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-50.50-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63446;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:45:\"Biomechanics-and-SC-50.50-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102615;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-50.50-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13904;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44789;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:44:\"Biomechanics-and-SC-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69625;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-50.50-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14546;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-50.50-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50208;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:44:\"Biomechanics-and-SC-50.50-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81314;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-50.50-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15209;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-50.50-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49913;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:44:\"Biomechanics-and-SC-50.50-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78204;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-50.50-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12427;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:43:\"Biomechanics-and-SC-50.50-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39675;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:44:\"Biomechanics-and-SC-50.50-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61912;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(62604,39258,'hide_hero','0'),(62605,39258,'_hide_hero','field_66a2380fcda39'),(62606,39258,'hero_title','Biomechanics and S&C coaches'),(62607,39258,'_hero_title','field_617571fe285e8'),(62608,39258,'hero_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(62609,39258,'_hero_text','field_6175723c285e9'),(62610,39258,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(62611,39258,'_hero_actions_0_button','field_61757281285eb'),(62612,39258,'hero_actions','1'),(62613,39258,'_hero_actions','field_61757270285ea'),(62614,39258,'hero_style','default'),(62615,39258,'_hero_style','field_62051d9dc5324'),(62616,39258,'_thumbnail_id','39256'),(62617,39258,'__thumbnail_id','field_617570855ddaf'),(62618,39258,'hero_image_pos_x','right'),(62619,39258,'_hero_image_pos_x','field_62ec3d05390bb'),(62620,39258,'hero_image_pos_y','top'),(62621,39258,'_hero_image_pos_y','field_62ec3d05390bc'),(62622,39258,'hero_image_pos',''),(62623,39258,'_hero_image_pos','field_62ec3d05390ba'),(62624,39258,'fft_hide_from_listings','0'),(62625,39258,'_fft_hide_from_listings','field_61f1320446ab2'),(62626,39258,'fft_page_format','default'),(62627,39258,'_fft_page_format','field_61ae213f1f218'),(62628,39258,'fft_hide_nav','0'),(62629,39258,'_fft_hide_nav','field_635bd5e43527c'),(62630,39258,'fft_hide_header_call_to_action','0'),(62631,39258,'_fft_hide_header_call_to_action','field_635bd6723527d'),(62632,39258,'fft_page_sitemap','0'),(62633,39258,'_fft_page_sitemap','field_61af9b34e8181'),(62634,39258,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(62635,39258,'_blocks','field_6176696113096'),(62636,39258,'blocks_0_acfe_flexible_toggle',''),(62637,39258,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(62638,39258,'blocks_0_acfe_flexible_layout_title','Steps'),(62639,39258,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(62640,39258,'blocks_0_row_content_title',''),(62641,39258,'_blocks_0_row_content_title','field_64888cd1e26e0'),(62642,39258,'blocks_0_row_content_heading','Benefits of training with us'),(62643,39258,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(62644,39258,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(62645,39258,'_blocks_0_row_content_text','field_64888ce2e26e2'),(62646,39258,'blocks_0_row_content_actions',''),(62647,39258,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(62648,39258,'blocks_0_row_content',''),(62649,39258,'_blocks_0_row_content','field_64888cb0e26df'),(62650,39258,'blocks_0_steps_0_icon','progression.svg'),(62651,39258,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(62652,39258,'blocks_0_steps_0_title','Earning potential'),(62653,39258,'_blocks_0_steps_0_title','field_64888d94e26e7'),(62654,39258,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(62655,39258,'_blocks_0_steps_0_text','field_64888d99e26e8'),(62656,39258,'blocks_0_steps_1_icon','support.svg'),(62657,39258,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(62658,39258,'blocks_0_steps_1_title','Lifetime Learning Promise'),(62659,39258,'_blocks_0_steps_1_title','field_64888d94e26e7'),(62660,39258,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(62661,39258,'_blocks_0_steps_1_text','field_64888d99e26e8'),(62662,39258,'blocks_0_steps_2_icon','qualification.svg'),(62663,39258,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(62664,39258,'blocks_0_steps_2_title','Evidence based hands on learning'),(62665,39258,'_blocks_0_steps_2_title','field_64888d94e26e7'),(62666,39258,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(62667,39258,'_blocks_0_steps_2_text','field_64888d99e26e8'),(62668,39258,'blocks_0_steps_3_icon','leaders.svg'),(62669,39258,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(62670,39258,'blocks_0_steps_3_title','Stand out from the crowd'),(62671,39258,'_blocks_0_steps_3_title','field_64888d94e26e7'),(62672,39258,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(62673,39258,'_blocks_0_steps_3_text','field_64888d99e26e8'),(62674,39258,'blocks_0_steps','4'),(62675,39258,'_blocks_0_steps','field_64888d44e26e5'),(62676,39258,'blocks_1_acfe_flexible_toggle',''),(62677,39258,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(62678,39258,'blocks_1_acfe_flexible_layout_title','Video'),(62679,39258,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(62680,39258,'blocks_1_size','large'),(62681,39258,'_blocks_1_size','field_6487038f297c1'),(62682,39258,'blocks_1_row_content_title',''),(62683,39258,'_blocks_1_row_content_title','field_64870132a865d'),(62684,39258,'blocks_1_row_content_heading',''),(62685,39258,'_blocks_1_row_content_heading','field_64870142a865e'),(62686,39258,'blocks_1_row_content_text',''),(62687,39258,'_blocks_1_row_content_text','field_64870148a865f'),(62688,39258,'blocks_1_row_content',''),(62689,39258,'_blocks_1_row_content','field_6487008ba865c'),(62690,39258,'blocks_1_video_src',''),(62691,39258,'_blocks_1_video_src','field_6193c4a98ec07'),(62692,39258,'blocks_1_video_thumbnail',''),(62693,39258,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(62694,39258,'blocks_2_acfe_flexible_toggle',''),(62695,39258,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(62696,39258,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(62697,39258,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(62698,39258,'blocks_2_options_theme','#ffffff'),(62699,39258,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(62700,39258,'blocks_2_options_reverse','0'),(62701,39258,'_blocks_2_options_reverse','field_61768049bb8ac'),(62702,39258,'blocks_2_options',''),(62703,39258,'_blocks_2_options','field_617682517c334'),(62704,39258,'blocks_2_split_5050_image','39257'),(62705,39258,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(62706,39258,'blocks_2_split_5050_video',''),(62707,39258,'_blocks_2_split_5050_video','field_6239f3160848a'),(62708,39258,'blocks_2_split_5050_content_title',''),(62709,39258,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(62710,39258,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(62711,39258,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(62712,39258,'blocks_2_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from, injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(62713,39258,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(62714,39258,'blocks_2_split_5050_content_actions',''),(62715,39258,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(62716,39258,'blocks_2_split_5050_content',''),(62717,39258,'_blocks_2_split_5050_content','field_61767afceb8ba'),(62718,39258,'blocks_3_acfe_flexible_toggle',''),(62719,39258,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(62720,39258,'blocks_3_acfe_flexible_layout_title','Form'),(62721,39258,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(62722,39258,'blocks_3_row_content_format','standard'),(62723,39258,'_blocks_3_row_content_format','field_6481ead962881'),(62724,39258,'blocks_3_row_content_title',''),(62725,39258,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(62726,39258,'blocks_3_row_content_heading','Enquire Today'),(62727,39258,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(62728,39258,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(62729,39258,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(62730,39258,'blocks_3_row_content_actions',''),(62731,39258,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(62732,39258,'blocks_3_row_content',''),(62733,39258,'_blocks_3_row_content','field_61a0f5f5b3db0'),(62734,39258,'blocks_3_row_form',''),(62735,39258,'_blocks_3_row_form','field_61a4ff2c0b08e'),(62736,39258,'blocks_3_row_form_button_label',''),(62737,39258,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(62738,39258,'blocks_4_acfe_flexible_toggle',''),(62739,39258,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(62740,39258,'blocks_4_acfe_flexible_layout_title','Tabs'),(62741,39258,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(62742,39258,'blocks_4_options_theme','#ffffff'),(62743,39258,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(62744,39258,'blocks_4_options',''),(62745,39258,'_blocks_4_options','field_6177cfcd8140f'),(62746,39258,'blocks_4_tabs_0_tab_label','What will I learn ?'),(62747,39258,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(62748,39258,'blocks_4_tabs_0_tab_content_title',''),(62749,39258,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(62750,39258,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(62751,39258,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(62752,39258,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(62753,39258,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(62754,39258,'blocks_4_tabs_0_tab_content_actions',''),(62755,39258,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(62756,39258,'blocks_4_tabs_0_tab_content',''),(62757,39258,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(62758,39258,'blocks_4_tabs_0_tab_image','39076'),(62759,39258,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(62760,39258,'blocks_4_tabs_1_tab_label','What do I need ?'),(62761,39258,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(62762,39258,'blocks_4_tabs_1_tab_content_title',''),(62763,39258,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(62764,39258,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(62765,39258,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(62766,39258,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(62767,39258,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(62768,39258,'blocks_4_tabs_1_tab_content_actions',''),(62769,39258,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(62770,39258,'blocks_4_tabs_1_tab_content',''),(62771,39258,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(62772,39258,'blocks_4_tabs_1_tab_image','39223'),(62773,39258,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(62774,39258,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(62775,39258,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(62776,39258,'blocks_4_tabs_2_tab_content_title',''),(62777,39258,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(62778,39258,'blocks_4_tabs_2_tab_content_heading','Locations'),(62779,39258,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(62780,39258,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(62781,39258,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(62782,39258,'blocks_4_tabs_2_tab_content_actions',''),(62783,39258,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(62784,39258,'blocks_4_tabs_2_tab_content',''),(62785,39258,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(62786,39258,'blocks_4_tabs_2_tab_image','39224'),(62787,39258,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(62788,39258,'blocks_4_tabs','3'),(62789,39258,'_blocks_4_tabs','field_6177cff281419'),(62790,39258,'blocks_5_acfe_flexible_toggle',''),(62791,39258,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(62792,39258,'blocks_5_acfe_flexible_layout_title','Text Block'),(62793,39258,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(62794,39258,'blocks_5_options_theme','#b61234'),(62795,39258,'_blocks_5_options_theme','field_6176830e2ad17'),(62796,39258,'blocks_5_options',''),(62797,39258,'_blocks_5_options','field_6176830e2ad16'),(62798,39258,'blocks_5_text_block_heading','Fees & Funding Options'),(62799,39258,'_blocks_5_text_block_heading','field_617669d413097'),(62800,39258,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(62801,39258,'_blocks_5_text_block_content','field_617669ec13098'),(62802,39258,'blocks_6_acfe_flexible_toggle',''),(62803,39258,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(62804,39258,'blocks_6_acfe_flexible_layout_title','Icons'),(62805,39258,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(62806,39258,'blocks_6_options_theme','#b61234'),(62807,39258,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(62808,39258,'blocks_6_options_format','row'),(62809,39258,'_blocks_6_options_format','field_64bfde9a90690'),(62810,39258,'blocks_6_options',''),(62811,39258,'_blocks_6_options','field_64bfdd9b90684'),(62812,39258,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(62813,39258,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(62814,39258,'blocks_6_icon_row_items_0_label','Pay in Full'),(62815,39258,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(62816,39258,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(62817,39258,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(62818,39258,'blocks_6_icon_row_items_1_icon','finance.svg'),(62819,39258,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(62820,39258,'blocks_6_icon_row_items_1_label','0% finance'),(62821,39258,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(62822,39258,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(62823,39258,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(62824,39258,'blocks_6_icon_row_items_2_icon','deposit.svg'),(62825,39258,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(62826,39258,'blocks_6_icon_row_items_2_label','Deposit & balance'),(62827,39258,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(62828,39258,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(62829,39258,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(62830,39258,'blocks_6_icon_row_items','3'),(62831,39258,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(62832,39258,'blocks_7_acfe_flexible_toggle',''),(62833,39258,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(62834,39258,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(62835,39258,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(62836,39258,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(62837,39258,'_blocks_7_content','field_6193c9b5eac84'),(62838,39258,'blocks_8_acfe_flexible_toggle',''),(62839,39258,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(62840,39258,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(62841,39258,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(62842,39258,'blocks_8_testimonial_slider_content_title',''),(62843,39258,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(62844,39258,'blocks_8_testimonial_slider_content_heading','Testimonials'),(62845,39258,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(62846,39258,'blocks_8_testimonial_slider_content_text',''),(62847,39258,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(62848,39258,'blocks_8_testimonial_slider_content_actions',''),(62849,39258,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(62850,39258,'blocks_8_testimonial_slider_content',''),(62851,39258,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(62852,39258,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(62853,39258,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(62854,39258,'blocks_8_testimonial_slider_ambassador_bool','0'),(62855,39258,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(62856,39258,'blocks_9_acfe_flexible_toggle',''),(62857,39258,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(62858,39258,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(62859,39258,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(62860,39258,'blocks_9_options_theme','#ffffff'),(62861,39258,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(62862,39258,'blocks_9_options_state','0'),(62863,39258,'_blocks_9_options_state','field_6239fcb7508c5'),(62864,39258,'blocks_9_options',''),(62865,39258,'_blocks_9_options','field_6177e2991ac44'),(62866,39258,'blocks_9_content_title',''),(62867,39258,'_blocks_9_content_title','field_64d237e8bb1e2'),(62868,39258,'blocks_9_content_heading','Frequently asked questions '),(62869,39258,'_blocks_9_content_heading','field_64d237e8bb1e3'),(62870,39258,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(62871,39258,'_blocks_9_content_text','field_64d237e8bb1e4'),(62872,39258,'blocks_9_content_actions',''),(62873,39258,'_blocks_9_content_actions','field_64d237e8bb1e5'),(62874,39258,'blocks_9_content_align','left'),(62875,39258,'_blocks_9_content_align','field_64d2443e6b6aa'),(62876,39258,'blocks_9_content',''),(62877,39258,'_blocks_9_content','field_64d237e8bb1e1'),(62878,39258,'blocks_9_accordion_content','faqs'),(62879,39258,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(62880,39258,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(62881,39258,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(62882,39258,'blocks_9_actions',''),(62883,39258,'_blocks_9_actions','field_61a746a817f7a'),(62886,39260,'_wp_attached_file','2024/08/How-to-become-a-biomechanics-coach-page-hero-iamge.jpg'),(62887,39260,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:62:\"2024/08/How-to-become-a-biomechanics-coach-page-hero-iamge.jpg\";s:8:\"filesize\";i:639525;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"How-to-become-a-biomechanics-coach-page-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120102;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197516;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"How-to-become-a-biomechanics-coach-page-hero-iamge-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29032;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:62:\"How-to-become-a-biomechanics-coach-page-hero-iamge-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90567;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:302259;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:487859;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:62:\"How-to-become-a-biomechanics-coach-page-hero-iamge-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37968;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:62:\"How-to-become-a-biomechanics-coach-page-hero-iamge-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155519;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249521;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:62:\"How-to-become-a-biomechanics-coach-page-hero-iamge-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29002;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:62:\"How-to-become-a-biomechanics-coach-page-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120037;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:63:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197670;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:62:\"How-to-become-a-biomechanics-coach-page-hero-iamge-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28571;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:62:\"How-to-become-a-biomechanics-coach-page-hero-iamge-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114856;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:63:\"How-to-become-a-biomechanics-coach-page-hero-iamge-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183483;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:62:\"How-to-become-a-biomechanics-coach-page-hero-iamge-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31706;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:62:\"How-to-become-a-biomechanics-coach-page-hero-iamge-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131309;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:63:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214763;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:62:\"How-to-become-a-biomechanics-coach-page-hero-iamge-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25872;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:62:\"How-to-become-a-biomechanics-coach-page-hero-iamge-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105122;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:63:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172041;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(62956,39263,'_edit_lock','1741944398:18'),(62957,39263,'_edit_last','18'),(62958,39263,'hide_hero','0'),(62959,39263,'_hide_hero','field_66a2380fcda39'),(62960,39263,'hero_title','How to Become a Biomechanics Coach'),(62961,39263,'_hero_title','field_617571fe285e8'),(62962,39263,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(62963,39263,'_hero_text','field_6175723c285e9'),(62964,39263,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39263-3\";s:6:\"target\";s:0:\"\";}'),(62965,39263,'_hero_actions_0_button','field_61757281285eb'),(62966,39263,'hero_actions','1'),(62967,39263,'_hero_actions','field_61757270285ea'),(62968,39263,'hero_style','default'),(62969,39263,'_hero_style','field_62051d9dc5324'),(62970,39263,'_thumbnail_id','39454'),(62971,39263,'__thumbnail_id','field_617570855ddaf'),(62972,39263,'hero_image_pos_x','right'),(62973,39263,'_hero_image_pos_x','field_62ec3d05390bb'),(62974,39263,'hero_image_pos_y','top'),(62975,39263,'_hero_image_pos_y','field_62ec3d05390bc'),(62976,39263,'hero_image_pos',''),(62977,39263,'_hero_image_pos','field_62ec3d05390ba'),(62978,39263,'fft_hide_from_listings','0'),(62979,39263,'_fft_hide_from_listings','field_61f1320446ab2'),(62980,39263,'fft_page_format','default'),(62981,39263,'_fft_page_format','field_61ae213f1f218'),(62982,39263,'fft_hide_nav','0'),(62983,39263,'_fft_hide_nav','field_635bd5e43527c'),(62984,39263,'fft_hide_header_call_to_action','0'),(62985,39263,'_fft_hide_header_call_to_action','field_635bd6723527d'),(62986,39263,'fft_page_sitemap','0'),(62987,39263,'_fft_page_sitemap','field_61af9b34e8181'),(62988,39263,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(62989,39263,'_blocks','field_6176696113096'),(62990,39263,'_yoast_wpseo_focuskw','Biomechanics'),(62991,39263,'_yoast_wpseo_title','How to Become a BE Coach | Biomechanics Education'),(62992,39263,'_yoast_wpseo_linkdex','44'),(62993,39263,'_yoast_wpseo_estimated-reading-time-minutes','1'),(63242,39263,'_yoast_wpseo_metadesc','Get started in biomechanics. Discover essential principles to optimize athletic performance and enhance training programs with.'),(63243,39266,'hide_hero','0'),(63244,39266,'_hide_hero','field_66a2380fcda39'),(63245,39266,'hero_title','How to Become a Biomechanics Coach'),(63246,39266,'_hero_title','field_617571fe285e8'),(63247,39266,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(63248,39266,'_hero_text','field_6175723c285e9'),(63249,39266,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(63250,39266,'_hero_actions_0_button','field_61757281285eb'),(63251,39266,'hero_actions','1'),(63252,39266,'_hero_actions','field_61757270285ea'),(63253,39266,'hero_style','default'),(63254,39266,'_hero_style','field_62051d9dc5324'),(63255,39266,'_thumbnail_id','39240'),(63256,39266,'__thumbnail_id','field_617570855ddaf'),(63257,39266,'hero_image_pos_x','right'),(63258,39266,'_hero_image_pos_x','field_62ec3d05390bb'),(63259,39266,'hero_image_pos_y','top'),(63260,39266,'_hero_image_pos_y','field_62ec3d05390bc'),(63261,39266,'hero_image_pos',''),(63262,39266,'_hero_image_pos','field_62ec3d05390ba'),(63263,39266,'fft_hide_from_listings','0'),(63264,39266,'_fft_hide_from_listings','field_61f1320446ab2'),(63265,39266,'fft_page_format','default'),(63266,39266,'_fft_page_format','field_61ae213f1f218'),(63267,39266,'fft_hide_nav','0'),(63268,39266,'_fft_hide_nav','field_635bd5e43527c'),(63269,39266,'fft_hide_header_call_to_action','0'),(63270,39266,'_fft_hide_header_call_to_action','field_635bd6723527d'),(63271,39266,'fft_page_sitemap','0'),(63272,39266,'_fft_page_sitemap','field_61af9b34e8181'),(63273,39266,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(63274,39266,'_blocks','field_6176696113096'),(63275,39266,'blocks_0_acfe_flexible_toggle',''),(63276,39266,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(63277,39266,'blocks_0_acfe_flexible_layout_title','Steps'),(63278,39266,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(63279,39266,'blocks_0_row_content_title',''),(63280,39266,'_blocks_0_row_content_title','field_64888cd1e26e0'),(63281,39266,'blocks_0_row_content_heading','Benefits of training with us'),(63282,39266,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(63283,39266,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(63284,39266,'_blocks_0_row_content_text','field_64888ce2e26e2'),(63285,39266,'blocks_0_row_content_actions',''),(63286,39266,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(63287,39266,'blocks_0_row_content',''),(63288,39266,'_blocks_0_row_content','field_64888cb0e26df'),(63289,39266,'blocks_0_steps_0_icon','progression.svg'),(63290,39266,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(63291,39266,'blocks_0_steps_0_title','Earning potential'),(63292,39266,'_blocks_0_steps_0_title','field_64888d94e26e7'),(63293,39266,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(63294,39266,'_blocks_0_steps_0_text','field_64888d99e26e8'),(63295,39266,'blocks_0_steps_1_icon','support.svg'),(63296,39266,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(63297,39266,'blocks_0_steps_1_title','Lifetime Learning Promise'),(63298,39266,'_blocks_0_steps_1_title','field_64888d94e26e7'),(63299,39266,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(63300,39266,'_blocks_0_steps_1_text','field_64888d99e26e8'),(63301,39266,'blocks_0_steps_2_icon','qualification.svg'),(63302,39266,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(63303,39266,'blocks_0_steps_2_title','Evidence based hands on learning'),(63304,39266,'_blocks_0_steps_2_title','field_64888d94e26e7'),(63305,39266,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(63306,39266,'_blocks_0_steps_2_text','field_64888d99e26e8'),(63307,39266,'blocks_0_steps_3_icon','leaders.svg'),(63308,39266,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(63309,39266,'blocks_0_steps_3_title','Stand out from the crowd'),(63310,39266,'_blocks_0_steps_3_title','field_64888d94e26e7'),(63311,39266,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(63312,39266,'_blocks_0_steps_3_text','field_64888d99e26e8'),(63313,39266,'blocks_0_steps','4'),(63314,39266,'_blocks_0_steps','field_64888d44e26e5'),(63315,39266,'blocks_1_acfe_flexible_toggle',''),(63316,39266,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(63317,39266,'blocks_1_acfe_flexible_layout_title','Video'),(63318,39266,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(63319,39266,'blocks_1_size','large'),(63320,39266,'_blocks_1_size','field_6487038f297c1'),(63321,39266,'blocks_1_row_content_title',''),(63322,39266,'_blocks_1_row_content_title','field_64870132a865d'),(63323,39266,'blocks_1_row_content_heading',''),(63324,39266,'_blocks_1_row_content_heading','field_64870142a865e'),(63325,39266,'blocks_1_row_content_text',''),(63326,39266,'_blocks_1_row_content_text','field_64870148a865f'),(63327,39266,'blocks_1_row_content',''),(63328,39266,'_blocks_1_row_content','field_6487008ba865c'),(63329,39266,'blocks_1_video_src',''),(63330,39266,'_blocks_1_video_src','field_6193c4a98ec07'),(63331,39266,'blocks_1_video_thumbnail',''),(63332,39266,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(63333,39266,'blocks_2_acfe_flexible_toggle',''),(63334,39266,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(63335,39266,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(63336,39266,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(63337,39266,'blocks_2_options_theme','#ffffff'),(63338,39266,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(63339,39266,'blocks_2_options_reverse','0'),(63340,39266,'_blocks_2_options_reverse','field_61768049bb8ac'),(63341,39266,'blocks_2_options',''),(63342,39266,'_blocks_2_options','field_617682517c334'),(63343,39266,'blocks_2_split_5050_image','39241'),(63344,39266,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(63345,39266,'blocks_2_split_5050_video',''),(63346,39266,'_blocks_2_split_5050_video','field_6239f3160848a'),(63347,39266,'blocks_2_split_5050_content_title',''),(63348,39266,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(63349,39266,'blocks_2_split_5050_content_heading','Why it’s Relevant to You !'),(63350,39266,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(63351,39266,'blocks_2_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of numerous injuries within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(63352,39266,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(63353,39266,'blocks_2_split_5050_content_actions',''),(63354,39266,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(63355,39266,'blocks_2_split_5050_content',''),(63356,39266,'_blocks_2_split_5050_content','field_61767afceb8ba'),(63357,39266,'blocks_3_acfe_flexible_toggle',''),(63358,39266,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(63359,39266,'blocks_3_acfe_flexible_layout_title','Form'),(63360,39266,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(63361,39266,'blocks_3_row_content_format','standard'),(63362,39266,'_blocks_3_row_content_format','field_6481ead962881'),(63363,39266,'blocks_3_row_content_title',''),(63364,39266,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(63365,39266,'blocks_3_row_content_heading','Enquire Today'),(63366,39266,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(63367,39266,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(63368,39266,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(63369,39266,'blocks_3_row_content_actions',''),(63370,39266,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(63371,39266,'blocks_3_row_content',''),(63372,39266,'_blocks_3_row_content','field_61a0f5f5b3db0'),(63373,39266,'blocks_3_row_form',''),(63374,39266,'_blocks_3_row_form','field_61a4ff2c0b08e'),(63375,39266,'blocks_3_row_form_button_label',''),(63376,39266,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(63377,39266,'blocks_4_acfe_flexible_toggle',''),(63378,39266,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(63379,39266,'blocks_4_acfe_flexible_layout_title','Tabs'),(63380,39266,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(63381,39266,'blocks_4_options_theme','#ffffff'),(63382,39266,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(63383,39266,'blocks_4_options',''),(63384,39266,'_blocks_4_options','field_6177cfcd8140f'),(63385,39266,'blocks_4_tabs_0_tab_label','What will I learn ?'),(63386,39266,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(63387,39266,'blocks_4_tabs_0_tab_content_title',''),(63388,39266,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(63389,39266,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(63390,39266,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(63391,39266,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(63392,39266,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(63393,39266,'blocks_4_tabs_0_tab_content_actions',''),(63394,39266,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(63395,39266,'blocks_4_tabs_0_tab_content',''),(63396,39266,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(63397,39266,'blocks_4_tabs_0_tab_image','39076'),(63398,39266,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(63399,39266,'blocks_4_tabs_1_tab_label','What do I need ?'),(63400,39266,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(63401,39266,'blocks_4_tabs_1_tab_content_title',''),(63402,39266,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(63403,39266,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(63404,39266,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(63405,39266,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(63406,39266,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(63407,39266,'blocks_4_tabs_1_tab_content_actions',''),(63408,39266,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(63409,39266,'blocks_4_tabs_1_tab_content',''),(63410,39266,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(63411,39266,'blocks_4_tabs_1_tab_image','39223'),(63412,39266,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(63413,39266,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(63414,39266,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(63415,39266,'blocks_4_tabs_2_tab_content_title',''),(63416,39266,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(63417,39266,'blocks_4_tabs_2_tab_content_heading','Locations'),(63418,39266,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(63419,39266,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(63420,39266,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(63421,39266,'blocks_4_tabs_2_tab_content_actions',''),(63422,39266,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(63423,39266,'blocks_4_tabs_2_tab_content',''),(63424,39266,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(63425,39266,'blocks_4_tabs_2_tab_image','39224'),(63426,39266,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(63427,39266,'blocks_4_tabs','3'),(63428,39266,'_blocks_4_tabs','field_6177cff281419'),(63429,39266,'blocks_5_acfe_flexible_toggle',''),(63430,39266,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(63431,39266,'blocks_5_acfe_flexible_layout_title','Text Block'),(63432,39266,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(63433,39266,'blocks_5_options_theme','#b61234'),(63434,39266,'_blocks_5_options_theme','field_6176830e2ad17'),(63435,39266,'blocks_5_options',''),(63436,39266,'_blocks_5_options','field_6176830e2ad16'),(63437,39266,'blocks_5_text_block_heading','Fees & Funding Options'),(63438,39266,'_blocks_5_text_block_heading','field_617669d413097'),(63439,39266,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(63440,39266,'_blocks_5_text_block_content','field_617669ec13098'),(63441,39266,'blocks_6_acfe_flexible_toggle',''),(63442,39266,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(63443,39266,'blocks_6_acfe_flexible_layout_title','Icons'),(63444,39266,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(63445,39266,'blocks_6_options_theme','#b61234'),(63446,39266,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(63447,39266,'blocks_6_options_format','row'),(63448,39266,'_blocks_6_options_format','field_64bfde9a90690'),(63449,39266,'blocks_6_options',''),(63450,39266,'_blocks_6_options','field_64bfdd9b90684'),(63451,39266,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(63452,39266,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(63453,39266,'blocks_6_icon_row_items_0_label','Pay in Full'),(63454,39266,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(63455,39266,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(63456,39266,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(63457,39266,'blocks_6_icon_row_items_1_icon','finance.svg'),(63458,39266,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(63459,39266,'blocks_6_icon_row_items_1_label','0% finance'),(63460,39266,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(63461,39266,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(63462,39266,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(63463,39266,'blocks_6_icon_row_items_2_icon','deposit.svg'),(63464,39266,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(63465,39266,'blocks_6_icon_row_items_2_label','Deposit & balance'),(63466,39266,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(63467,39266,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(63468,39266,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(63469,39266,'blocks_6_icon_row_items','3'),(63470,39266,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(63471,39266,'blocks_7_acfe_flexible_toggle',''),(63472,39266,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(63473,39266,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(63474,39266,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(63475,39266,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(63476,39266,'_blocks_7_content','field_6193c9b5eac84'),(63477,39266,'blocks_8_acfe_flexible_toggle',''),(63478,39266,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(63479,39266,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(63480,39266,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(63481,39266,'blocks_8_testimonial_slider_content_title',''),(63482,39266,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(63483,39266,'blocks_8_testimonial_slider_content_heading','Testimonials'),(63484,39266,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(63485,39266,'blocks_8_testimonial_slider_content_text',''),(63486,39266,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(63487,39266,'blocks_8_testimonial_slider_content_actions',''),(63488,39266,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(63489,39266,'blocks_8_testimonial_slider_content',''),(63490,39266,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(63491,39266,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(63492,39266,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(63493,39266,'blocks_8_testimonial_slider_ambassador_bool','0'),(63494,39266,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(63495,39266,'blocks_9_acfe_flexible_toggle',''),(63496,39266,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(63497,39266,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(63498,39266,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(63499,39266,'blocks_9_options_theme','#ffffff'),(63500,39266,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(63501,39266,'blocks_9_options_state','0'),(63502,39266,'_blocks_9_options_state','field_6239fcb7508c5'),(63503,39266,'blocks_9_options',''),(63504,39266,'_blocks_9_options','field_6177e2991ac44'),(63505,39266,'blocks_9_content_title',''),(63506,39266,'_blocks_9_content_title','field_64d237e8bb1e2'),(63507,39266,'blocks_9_content_heading','Frequently asked questions '),(63508,39266,'_blocks_9_content_heading','field_64d237e8bb1e3'),(63509,39266,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(63510,39266,'_blocks_9_content_text','field_64d237e8bb1e4'),(63511,39266,'blocks_9_content_actions',''),(63512,39266,'_blocks_9_content_actions','field_64d237e8bb1e5'),(63513,39266,'blocks_9_content_align','left'),(63514,39266,'_blocks_9_content_align','field_64d2443e6b6aa'),(63515,39266,'blocks_9_content',''),(63516,39266,'_blocks_9_content','field_64d237e8bb1e1'),(63517,39266,'blocks_9_accordion_content','faqs'),(63518,39266,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(63519,39266,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(63520,39266,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(63521,39266,'blocks_9_actions',''),(63522,39266,'_blocks_9_actions','field_61a746a817f7a'),(63523,39270,'_edit_lock','1745492259:17'),(63524,39270,'_edit_last','5'),(63525,39271,'_wp_attached_file','2024/08/Price-guide-mock-up-BME-price-guide-1.png'),(63526,39271,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:450;s:6:\"height\";i:300;s:4:\"file\";s:49:\"2024/08/Price-guide-mock-up-BME-price-guide-1.png\";s:8:\"filesize\";i:102999;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Price-guide-mock-up-BME-price-guide-1-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87492;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:49:\"Price-guide-mock-up-BME-price-guide-1-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100322;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:49:\"Price-guide-mock-up-BME-price-guide-1-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87409;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:49:\"Price-guide-mock-up-BME-price-guide-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79993;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:49:\"Price-guide-mock-up-BME-price-guide-1-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100322;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:49:\"Price-guide-mock-up-BME-price-guide-1-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86861;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(63527,39270,'hide_hero','0'),(63528,39270,'_hide_hero','field_66a2380fcda39'),(63529,39270,'hero_title','Download your price guide'),(63530,39270,'_hero_title','field_617571fe285e8'),(63531,39270,'hero_text',''),(63532,39270,'_hero_text','field_6175723c285e9'),(63533,39270,'hero_actions',''),(63534,39270,'_hero_actions','field_61757270285ea'),(63535,39270,'hero_style','default'),(63536,39270,'_hero_style','field_62051d9dc5324'),(63538,39270,'__thumbnail_id','field_617570855ddaf'),(63539,39270,'hero_image_pos_x','right'),(63540,39270,'_hero_image_pos_x','field_62ec3d05390bb'),(63541,39270,'hero_image_pos_y','top'),(63542,39270,'_hero_image_pos_y','field_62ec3d05390bc'),(63543,39270,'hero_image_pos',''),(63544,39270,'_hero_image_pos','field_62ec3d05390ba'),(63545,39270,'fft_hide_from_listings','0'),(63546,39270,'_fft_hide_from_listings','field_61f1320446ab2'),(63547,39270,'fft_page_format','default'),(63548,39270,'_fft_page_format','field_61ae213f1f218'),(63549,39270,'fft_hide_nav','0'),(63550,39270,'_fft_hide_nav','field_635bd5e43527c'),(63551,39270,'fft_hide_header_call_to_action','0'),(63552,39270,'_fft_hide_header_call_to_action','field_635bd6723527d'),(63553,39270,'fft_page_sitemap','0'),(63554,39270,'_fft_page_sitemap','field_61af9b34e8181'),(63601,39270,'blocks','a:6:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:5:\"quote\";i:4;s:10:\"link_stack\";i:5;s:18:\"testimonial_slider\";}'),(63602,39270,'_blocks','field_6176696113096'),(63603,39270,'_yoast_wpseo_estimated-reading-time-minutes','1'),(63604,39272,'hide_hero','0'),(63605,39272,'_hide_hero','field_66a2380fcda39'),(63606,39272,'hero_title','Price Guide'),(63607,39272,'_hero_title','field_617571fe285e8'),(63608,39272,'hero_text','Enquire Now !'),(63609,39272,'_hero_text','field_6175723c285e9'),(63610,39272,'hero_actions',''),(63611,39272,'_hero_actions','field_61757270285ea'),(63612,39272,'hero_style','default'),(63613,39272,'_hero_style','field_62051d9dc5324'),(63614,39272,'_thumbnail_id',''),(63615,39272,'__thumbnail_id','field_617570855ddaf'),(63616,39272,'hero_image_pos_x','right'),(63617,39272,'_hero_image_pos_x','field_62ec3d05390bb'),(63618,39272,'hero_image_pos_y','top'),(63619,39272,'_hero_image_pos_y','field_62ec3d05390bc'),(63620,39272,'hero_image_pos',''),(63621,39272,'_hero_image_pos','field_62ec3d05390ba'),(63622,39272,'fft_hide_from_listings','0'),(63623,39272,'_fft_hide_from_listings','field_61f1320446ab2'),(63624,39272,'fft_page_format','default'),(63625,39272,'_fft_page_format','field_61ae213f1f218'),(63626,39272,'fft_hide_nav','0'),(63627,39272,'_fft_hide_nav','field_635bd5e43527c'),(63628,39272,'fft_hide_header_call_to_action','0'),(63629,39272,'_fft_hide_header_call_to_action','field_635bd6723527d'),(63630,39272,'fft_page_sitemap','0'),(63631,39272,'_fft_page_sitemap','field_61af9b34e8181'),(63632,39272,'blocks_0_acfe_flexible_toggle',''),(63633,39272,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(63634,39272,'blocks_0_acfe_flexible_layout_title','Form'),(63635,39272,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(63636,39272,'blocks_0_row_content_format','standard'),(63637,39272,'_blocks_0_row_content_format','field_6481ead962881'),(63638,39272,'blocks_0_row_content_title','Enquire Now'),(63639,39272,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(63640,39272,'blocks_0_row_content_heading','Course Information and Price Guide'),(63641,39272,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(63642,39272,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*</li>\r\n 	<li>Receive exclusive offers</li>\r\n</ul>'),(63643,39272,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(63644,39272,'blocks_0_row_content_actions',''),(63645,39272,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(63646,39272,'blocks_0_row_content',''),(63647,39272,'_blocks_0_row_content','field_61a0f5f5b3db0'),(63648,39272,'blocks_0_row_form',''),(63649,39272,'_blocks_0_row_form','field_61a4ff2c0b08e'),(63650,39272,'blocks_0_row_form_button_label',''),(63651,39272,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(63652,39272,'blocks_1_acfe_flexible_toggle',''),(63653,39272,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(63654,39272,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(63655,39272,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(63656,39272,'blocks_1_options_theme','#ffffff'),(63657,39272,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(63658,39272,'blocks_1_options_reverse','0'),(63659,39272,'_blocks_1_options_reverse','field_61768049bb8ac'),(63660,39272,'blocks_1_options',''),(63661,39272,'_blocks_1_options','field_617682517c334'),(63662,39272,'blocks_1_split_5050_image','39271'),(63663,39272,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(63664,39272,'blocks_1_split_5050_video',''),(63665,39272,'_blocks_1_split_5050_video','field_6239f3160848a'),(63666,39272,'blocks_1_split_5050_content_title',''),(63667,39272,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(63668,39272,'blocks_1_split_5050_content_heading','What\'s included in this guide ?'),(63669,39272,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(63670,39272,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nWe believe that world-class training should be accessible to everyone no matter their financial circumstances. This is why we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(63671,39272,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(63672,39272,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(63673,39272,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(63674,39272,'blocks_1_split_5050_content_actions','1'),(63675,39272,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(63676,39272,'blocks_1_split_5050_content',''),(63677,39272,'_blocks_1_split_5050_content','field_61767afceb8ba'),(63678,39272,'blocks','a:2:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";}'),(63679,39272,'_blocks','field_6176696113096'),(63713,39273,'hide_hero','0'),(63714,39273,'_hide_hero','field_66a2380fcda39'),(63715,39273,'hero_title','Price Guide'),(63716,39273,'_hero_title','field_617571fe285e8'),(63717,39273,'hero_text','Enquire Now !'),(63718,39273,'_hero_text','field_6175723c285e9'),(63719,39273,'hero_actions',''),(63720,39273,'_hero_actions','field_61757270285ea'),(63721,39273,'hero_style','default'),(63722,39273,'_hero_style','field_62051d9dc5324'),(63723,39273,'hero_image_pos_x','right'),(63724,39273,'_hero_image_pos_x','field_62ec3d05390bb'),(63725,39273,'hero_image_pos_y','top'),(63726,39273,'_hero_image_pos_y','field_62ec3d05390bc'),(63727,39273,'hero_image_pos',''),(63728,39273,'_hero_image_pos','field_62ec3d05390ba'),(63729,39273,'fft_hide_from_listings','0'),(63730,39273,'_fft_hide_from_listings','field_61f1320446ab2'),(63731,39273,'fft_page_format','default'),(63732,39273,'_fft_page_format','field_61ae213f1f218'),(63733,39273,'fft_hide_nav','0'),(63734,39273,'_fft_hide_nav','field_635bd5e43527c'),(63735,39273,'fft_hide_header_call_to_action','0'),(63736,39273,'_fft_hide_header_call_to_action','field_635bd6723527d'),(63737,39273,'fft_page_sitemap','0'),(63738,39273,'_fft_page_sitemap','field_61af9b34e8181'),(63739,39273,'blocks_0_acfe_flexible_toggle',''),(63740,39273,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(63741,39273,'blocks_0_acfe_flexible_layout_title','Form'),(63742,39273,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(63743,39273,'blocks_0_row_content_format','standard'),(63744,39273,'_blocks_0_row_content_format','field_6481ead962881'),(63745,39273,'blocks_0_row_content_title','Enquire Now'),(63746,39273,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(63747,39273,'blocks_0_row_content_heading','Course Information and Price Guide'),(63748,39273,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(63749,39273,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*</li>\r\n 	<li>Receive exclusive offers</li>\r\n</ul>'),(63750,39273,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(63751,39273,'blocks_0_row_content_actions',''),(63752,39273,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(63753,39273,'blocks_0_row_content',''),(63754,39273,'_blocks_0_row_content','field_61a0f5f5b3db0'),(63755,39273,'blocks_0_row_form',''),(63756,39273,'_blocks_0_row_form','field_61a4ff2c0b08e'),(63757,39273,'blocks_0_row_form_button_label',''),(63758,39273,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(63759,39273,'blocks_1_acfe_flexible_toggle',''),(63760,39273,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(63761,39273,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(63762,39273,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(63763,39273,'blocks_1_options_theme','#ffffff'),(63764,39273,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(63765,39273,'blocks_1_options_reverse','0'),(63766,39273,'_blocks_1_options_reverse','field_61768049bb8ac'),(63767,39273,'blocks_1_options',''),(63768,39273,'_blocks_1_options','field_617682517c334'),(63769,39273,'blocks_1_split_5050_image','39271'),(63770,39273,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(63771,39273,'blocks_1_split_5050_video',''),(63772,39273,'_blocks_1_split_5050_video','field_6239f3160848a'),(63773,39273,'blocks_1_split_5050_content_title',''),(63774,39273,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(63775,39273,'blocks_1_split_5050_content_heading','What\'s included in this guide ?'),(63776,39273,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(63777,39273,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nWe believe that world-class training should be accessible to everyone no matter their financial circumstances. This is why we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(63778,39273,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(63779,39273,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(63780,39273,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(63781,39273,'blocks_1_split_5050_content_actions','1'),(63782,39273,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(63783,39273,'blocks_1_split_5050_content',''),(63784,39273,'_blocks_1_split_5050_content','field_61767afceb8ba'),(63785,39273,'blocks','a:3:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"link_stack\";}'),(63786,39273,'_blocks','field_6176696113096'),(63787,39273,'_thumbnail_id',''),(63788,39273,'__thumbnail_id','field_617570855ddaf'),(63789,39273,'blocks_2_acfe_flexible_toggle',''),(63790,39273,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(63791,39273,'blocks_2_acfe_flexible_layout_title','Link Stack'),(63792,39273,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(63793,39273,'blocks_2_options_theme','#ffffff'),(63794,39273,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(63795,39273,'blocks_2_options',''),(63796,39273,'_blocks_2_options','field_6177b758246ae'),(63797,39273,'blocks_2_link_stack_content_title',''),(63798,39273,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(63799,39273,'blocks_2_link_stack_content_heading','Discover our expertise'),(63800,39273,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(63801,39273,'blocks_2_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(63802,39273,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(63803,39273,'blocks_2_link_stack_content_actions',''),(63804,39273,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(63805,39273,'blocks_2_link_stack_content',''),(63806,39273,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(63807,39273,'blocks_2_link_stack_0_label','Personal Training'),(63808,39273,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(63809,39273,'blocks_2_link_stack_0_title','Discover Biomechanics in Personal Training'),(63810,39273,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(63811,39273,'blocks_2_link_stack_0_url',''),(63812,39273,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(63813,39273,'blocks_2_link_stack_1_label',''),(63814,39273,'_blocks_2_link_stack_1_label','field_6177b80900d00'),(63815,39273,'blocks_2_link_stack_1_title',''),(63816,39273,'_blocks_2_link_stack_1_title','field_6177b80f00d01'),(63817,39273,'blocks_2_link_stack_1_url',''),(63818,39273,'_blocks_2_link_stack_1_url','field_6177b82200d02'),(63819,39273,'blocks_2_link_stack','2'),(63820,39273,'_blocks_2_link_stack','field_6177b7f600cff'),(63825,39274,'hide_hero','0'),(63826,39274,'_hide_hero','field_66a2380fcda39'),(63827,39274,'hero_title','Price Guide'),(63828,39274,'_hero_title','field_617571fe285e8'),(63829,39274,'hero_text','Enquire Now !'),(63830,39274,'_hero_text','field_6175723c285e9'),(63831,39274,'hero_actions',''),(63832,39274,'_hero_actions','field_61757270285ea'),(63833,39274,'hero_style','default'),(63834,39274,'_hero_style','field_62051d9dc5324'),(63835,39274,'hero_image_pos_x','right'),(63836,39274,'_hero_image_pos_x','field_62ec3d05390bb'),(63837,39274,'hero_image_pos_y','top'),(63838,39274,'_hero_image_pos_y','field_62ec3d05390bc'),(63839,39274,'hero_image_pos',''),(63840,39274,'_hero_image_pos','field_62ec3d05390ba'),(63841,39274,'fft_hide_from_listings','0'),(63842,39274,'_fft_hide_from_listings','field_61f1320446ab2'),(63843,39274,'fft_page_format','default'),(63844,39274,'_fft_page_format','field_61ae213f1f218'),(63845,39274,'fft_hide_nav','0'),(63846,39274,'_fft_hide_nav','field_635bd5e43527c'),(63847,39274,'fft_hide_header_call_to_action','0'),(63848,39274,'_fft_hide_header_call_to_action','field_635bd6723527d'),(63849,39274,'fft_page_sitemap','0'),(63850,39274,'_fft_page_sitemap','field_61af9b34e8181'),(63851,39274,'blocks_0_acfe_flexible_toggle',''),(63852,39274,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(63853,39274,'blocks_0_acfe_flexible_layout_title','Form'),(63854,39274,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(63855,39274,'blocks_0_row_content_format','standard'),(63856,39274,'_blocks_0_row_content_format','field_6481ead962881'),(63857,39274,'blocks_0_row_content_title','Enquire Now'),(63858,39274,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(63859,39274,'blocks_0_row_content_heading','Course Information and Price Guide'),(63860,39274,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(63861,39274,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*</li>\r\n 	<li>Receive exclusive offers</li>\r\n</ul>'),(63862,39274,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(63863,39274,'blocks_0_row_content_actions',''),(63864,39274,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(63865,39274,'blocks_0_row_content',''),(63866,39274,'_blocks_0_row_content','field_61a0f5f5b3db0'),(63867,39274,'blocks_0_row_form',''),(63868,39274,'_blocks_0_row_form','field_61a4ff2c0b08e'),(63869,39274,'blocks_0_row_form_button_label',''),(63870,39274,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(63871,39274,'blocks_1_acfe_flexible_toggle',''),(63872,39274,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(63873,39274,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(63874,39274,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(63875,39274,'blocks_1_options_theme','#ffffff'),(63876,39274,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(63877,39274,'blocks_1_options_reverse','0'),(63878,39274,'_blocks_1_options_reverse','field_61768049bb8ac'),(63879,39274,'blocks_1_options',''),(63880,39274,'_blocks_1_options','field_617682517c334'),(63881,39274,'blocks_1_split_5050_image','39271'),(63882,39274,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(63883,39274,'blocks_1_split_5050_video',''),(63884,39274,'_blocks_1_split_5050_video','field_6239f3160848a'),(63885,39274,'blocks_1_split_5050_content_title',''),(63886,39274,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(63887,39274,'blocks_1_split_5050_content_heading','What\'s included in this guide ?'),(63888,39274,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(63889,39274,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nWe believe that world-class training should be accessible to everyone no matter their financial circumstances. This is why we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(63890,39274,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(63891,39274,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(63892,39274,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(63893,39274,'blocks_1_split_5050_content_actions','1'),(63894,39274,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(63895,39274,'blocks_1_split_5050_content',''),(63896,39274,'_blocks_1_split_5050_content','field_61767afceb8ba'),(63897,39274,'blocks','a:3:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"link_stack\";}'),(63898,39274,'_blocks','field_6176696113096'),(63899,39274,'blocks_2_acfe_flexible_toggle',''),(63900,39274,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(63901,39274,'blocks_2_acfe_flexible_layout_title','Link Stack'),(63902,39274,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(63903,39274,'blocks_2_options_theme','#ffffff'),(63904,39274,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(63905,39274,'blocks_2_options',''),(63906,39274,'_blocks_2_options','field_6177b758246ae'),(63907,39274,'blocks_2_link_stack_content_title',''),(63908,39274,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(63909,39274,'blocks_2_link_stack_content_heading','Discover our expertise'),(63910,39274,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(63911,39274,'blocks_2_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(63912,39274,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(63913,39274,'blocks_2_link_stack_content_actions',''),(63914,39274,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(63915,39274,'blocks_2_link_stack_content',''),(63916,39274,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(63917,39274,'blocks_2_link_stack_0_label','Personal Training'),(63918,39274,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(63919,39274,'blocks_2_link_stack_0_title','Discover Biomechanics in Personal Training'),(63920,39274,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(63921,39274,'blocks_2_link_stack_0_url','https://www.biomechanicseducation.com/Personaltraining'),(63922,39274,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(63923,39274,'blocks_2_link_stack_1_label','Pilates'),(63924,39274,'_blocks_2_link_stack_1_label','field_6177b80900d00'),(63925,39274,'blocks_2_link_stack_1_title','Discover Biomechanics in Pilates'),(63926,39274,'_blocks_2_link_stack_1_title','field_6177b80f00d01'),(63927,39274,'blocks_2_link_stack_1_url','https://www.biomechanicseducation.com/Pilates'),(63928,39274,'_blocks_2_link_stack_1_url','field_6177b82200d02'),(63929,39274,'blocks_2_link_stack','2'),(63930,39274,'_blocks_2_link_stack','field_6177b7f600cff'),(63931,39274,'_thumbnail_id',''),(63932,39274,'__thumbnail_id','field_617570855ddaf'),(64066,39276,'hide_hero','0'),(64067,39276,'_hide_hero','field_66a2380fcda39'),(64068,39276,'hero_title','Price Guide'),(64069,39276,'_hero_title','field_617571fe285e8'),(64070,39276,'hero_text','Enquire Now !'),(64071,39276,'_hero_text','field_6175723c285e9'),(64072,39276,'hero_actions',''),(64073,39276,'_hero_actions','field_61757270285ea'),(64074,39276,'hero_style','default'),(64075,39276,'_hero_style','field_62051d9dc5324'),(64076,39276,'hero_image_pos_x','right'),(64077,39276,'_hero_image_pos_x','field_62ec3d05390bb'),(64078,39276,'hero_image_pos_y','top'),(64079,39276,'_hero_image_pos_y','field_62ec3d05390bc'),(64080,39276,'hero_image_pos',''),(64081,39276,'_hero_image_pos','field_62ec3d05390ba'),(64082,39276,'fft_hide_from_listings','0'),(64083,39276,'_fft_hide_from_listings','field_61f1320446ab2'),(64084,39276,'fft_page_format','default'),(64085,39276,'_fft_page_format','field_61ae213f1f218'),(64086,39276,'fft_hide_nav','0'),(64087,39276,'_fft_hide_nav','field_635bd5e43527c'),(64088,39276,'fft_hide_header_call_to_action','0'),(64089,39276,'_fft_hide_header_call_to_action','field_635bd6723527d'),(64090,39276,'fft_page_sitemap','0'),(64091,39276,'_fft_page_sitemap','field_61af9b34e8181'),(64092,39276,'blocks_0_acfe_flexible_toggle',''),(64093,39276,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(64094,39276,'blocks_0_acfe_flexible_layout_title','Form'),(64095,39276,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(64096,39276,'blocks_0_row_content_format','standard'),(64097,39276,'_blocks_0_row_content_format','field_6481ead962881'),(64098,39276,'blocks_0_row_content_title','Enquire Now'),(64099,39276,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(64100,39276,'blocks_0_row_content_heading','Course Information and Price Guide'),(64101,39276,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(64102,39276,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*</li>\r\n 	<li>Receive exclusive offers</li>\r\n</ul>'),(64103,39276,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(64104,39276,'blocks_0_row_content_actions',''),(64105,39276,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(64106,39276,'blocks_0_row_content',''),(64107,39276,'_blocks_0_row_content','field_61a0f5f5b3db0'),(64108,39276,'blocks_0_row_form',''),(64109,39276,'_blocks_0_row_form','field_61a4ff2c0b08e'),(64110,39276,'blocks_0_row_form_button_label',''),(64111,39276,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(64112,39276,'blocks_1_acfe_flexible_toggle',''),(64113,39276,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(64114,39276,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(64115,39276,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(64116,39276,'blocks_1_options_theme','#ffffff'),(64117,39276,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(64118,39276,'blocks_1_options_reverse','0'),(64119,39276,'_blocks_1_options_reverse','field_61768049bb8ac'),(64120,39276,'blocks_1_options',''),(64121,39276,'_blocks_1_options','field_617682517c334'),(64122,39276,'blocks_1_split_5050_image','39271'),(64123,39276,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(64124,39276,'blocks_1_split_5050_video',''),(64125,39276,'_blocks_1_split_5050_video','field_6239f3160848a'),(64126,39276,'blocks_1_split_5050_content_title',''),(64127,39276,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(64128,39276,'blocks_1_split_5050_content_heading','What\'s included in this guide ?'),(64129,39276,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(64130,39276,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nWe believe that world-class training should be accessible to everyone no matter their financial circumstances. This is why we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(64131,39276,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(64132,39276,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(64133,39276,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(64134,39276,'blocks_1_split_5050_content_actions','1'),(64135,39276,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(64136,39276,'blocks_1_split_5050_content',''),(64137,39276,'_blocks_1_split_5050_content','field_61767afceb8ba'),(64138,39276,'blocks','a:3:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"link_stack\";}'),(64139,39276,'_blocks','field_6176696113096'),(64140,39276,'blocks_2_acfe_flexible_toggle',''),(64141,39276,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(64142,39276,'blocks_2_acfe_flexible_layout_title','Link Stack'),(64143,39276,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(64144,39276,'blocks_2_options_theme','#ffffff'),(64145,39276,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(64146,39276,'blocks_2_options',''),(64147,39276,'_blocks_2_options','field_6177b758246ae'),(64148,39276,'blocks_2_link_stack_content_title',''),(64149,39276,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(64150,39276,'blocks_2_link_stack_content_heading','Discover our expertise'),(64151,39276,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(64152,39276,'blocks_2_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(64153,39276,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(64154,39276,'blocks_2_link_stack_content_actions',''),(64155,39276,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(64156,39276,'blocks_2_link_stack_content',''),(64157,39276,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(64158,39276,'blocks_2_link_stack_0_label','Personal Training'),(64159,39276,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(64160,39276,'blocks_2_link_stack_0_title','Discover Biomechanics in Personal Training'),(64161,39276,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(64162,39276,'blocks_2_link_stack_0_url','https://www.biomechanicseducation.com/Personaltraining'),(64163,39276,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(64164,39276,'blocks_2_link_stack_1_label','Pilates'),(64165,39276,'_blocks_2_link_stack_1_label','field_6177b80900d00'),(64166,39276,'blocks_2_link_stack_1_title','Discover Biomechanics in Pilates'),(64167,39276,'_blocks_2_link_stack_1_title','field_6177b80f00d01'),(64168,39276,'blocks_2_link_stack_1_url','https://www.biomechanicseducation.com/Pilates'),(64169,39276,'_blocks_2_link_stack_1_url','field_6177b82200d02'),(64170,39276,'blocks_2_link_stack','6'),(64171,39276,'_blocks_2_link_stack','field_6177b7f600cff'),(64172,39276,'_thumbnail_id',''),(64173,39276,'__thumbnail_id','field_617570855ddaf'),(64174,39276,'blocks_2_link_stack_2_label','Sports Coaches'),(64175,39276,'_blocks_2_link_stack_2_label','field_6177b80900d00'),(64176,39276,'blocks_2_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(64177,39276,'_blocks_2_link_stack_2_title','field_6177b80f00d01'),(64178,39276,'blocks_2_link_stack_2_url','https://www.biomechanicseducation.com/sports-coaches'),(64179,39276,'_blocks_2_link_stack_2_url','field_6177b82200d02'),(64180,39276,'blocks_2_link_stack_3_label','SMT'),(64181,39276,'_blocks_2_link_stack_3_label','field_6177b80900d00'),(64182,39276,'blocks_2_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(64183,39276,'_blocks_2_link_stack_3_title','field_6177b80f00d01'),(64184,39276,'blocks_2_link_stack_3_url','https://www.biomechanicseducation.com/sports-massage-therapy'),(64185,39276,'_blocks_2_link_stack_3_url','field_6177b82200d02'),(64186,39276,'blocks_2_link_stack_4_label','Podiatrists'),(64187,39276,'_blocks_2_link_stack_4_label','field_6177b80900d00'),(64188,39276,'blocks_2_link_stack_4_title','Discover Biomechanics in Podiatry'),(64189,39276,'_blocks_2_link_stack_4_title','field_6177b80f00d01'),(64190,39276,'blocks_2_link_stack_4_url','https://www.biomechanicseducation.com/podiatrists'),(64191,39276,'_blocks_2_link_stack_4_url','field_6177b82200d02'),(64192,39276,'blocks_2_link_stack_5_label','Biomechanics Coach'),(64193,39276,'_blocks_2_link_stack_5_label','field_6177b80900d00'),(64194,39276,'blocks_2_link_stack_5_title','How to Become a Biomechanics Coach'),(64195,39276,'_blocks_2_link_stack_5_title','field_6177b80f00d01'),(64196,39276,'blocks_2_link_stack_5_url','https://www.biomechanicseducation.com/biomechanics-coach'),(64197,39276,'_blocks_2_link_stack_5_url','field_6177b82200d02'),(64217,39277,'hide_hero','0'),(64218,39277,'_hide_hero','field_66a2380fcda39'),(64219,39277,'hero_title','Price Guide'),(64220,39277,'_hero_title','field_617571fe285e8'),(64221,39277,'hero_text','Enquire Now !'),(64222,39277,'_hero_text','field_6175723c285e9'),(64223,39277,'hero_actions',''),(64224,39277,'_hero_actions','field_61757270285ea'),(64225,39277,'hero_style','default'),(64226,39277,'_hero_style','field_62051d9dc5324'),(64227,39277,'hero_image_pos_x','right'),(64228,39277,'_hero_image_pos_x','field_62ec3d05390bb'),(64229,39277,'hero_image_pos_y','top'),(64230,39277,'_hero_image_pos_y','field_62ec3d05390bc'),(64231,39277,'hero_image_pos',''),(64232,39277,'_hero_image_pos','field_62ec3d05390ba'),(64233,39277,'fft_hide_from_listings','0'),(64234,39277,'_fft_hide_from_listings','field_61f1320446ab2'),(64235,39277,'fft_page_format','default'),(64236,39277,'_fft_page_format','field_61ae213f1f218'),(64237,39277,'fft_hide_nav','0'),(64238,39277,'_fft_hide_nav','field_635bd5e43527c'),(64239,39277,'fft_hide_header_call_to_action','0'),(64240,39277,'_fft_hide_header_call_to_action','field_635bd6723527d'),(64241,39277,'fft_page_sitemap','0'),(64242,39277,'_fft_page_sitemap','field_61af9b34e8181'),(64243,39277,'blocks_0_acfe_flexible_toggle',''),(64244,39277,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(64245,39277,'blocks_0_acfe_flexible_layout_title','Form'),(64246,39277,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(64247,39277,'blocks_0_row_content_format','standard'),(64248,39277,'_blocks_0_row_content_format','field_6481ead962881'),(64249,39277,'blocks_0_row_content_title','Enquire Now'),(64250,39277,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(64251,39277,'blocks_0_row_content_heading','Course Information and Price Guide'),(64252,39277,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(64253,39277,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*</li>\r\n 	<li>Receive exclusive offers</li>\r\n</ul>'),(64254,39277,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(64255,39277,'blocks_0_row_content_actions',''),(64256,39277,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(64257,39277,'blocks_0_row_content',''),(64258,39277,'_blocks_0_row_content','field_61a0f5f5b3db0'),(64259,39277,'blocks_0_row_form',''),(64260,39277,'_blocks_0_row_form','field_61a4ff2c0b08e'),(64261,39277,'blocks_0_row_form_button_label',''),(64262,39277,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(64263,39277,'blocks_1_acfe_flexible_toggle',''),(64264,39277,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(64265,39277,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(64266,39277,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(64267,39277,'blocks_1_options_theme','#ffffff'),(64268,39277,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(64269,39277,'blocks_1_options_reverse','0'),(64270,39277,'_blocks_1_options_reverse','field_61768049bb8ac'),(64271,39277,'blocks_1_options',''),(64272,39277,'_blocks_1_options','field_617682517c334'),(64273,39277,'blocks_1_split_5050_image','39271'),(64274,39277,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(64275,39277,'blocks_1_split_5050_video',''),(64276,39277,'_blocks_1_split_5050_video','field_6239f3160848a'),(64277,39277,'blocks_1_split_5050_content_title',''),(64278,39277,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(64279,39277,'blocks_1_split_5050_content_heading','What\'s included in this guide ?'),(64280,39277,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(64281,39277,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nWe believe that world-class training should be accessible to everyone no matter their financial circumstances. This is why we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(64282,39277,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(64283,39277,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(64284,39277,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(64285,39277,'blocks_1_split_5050_content_actions','1'),(64286,39277,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(64287,39277,'blocks_1_split_5050_content',''),(64288,39277,'_blocks_1_split_5050_content','field_61767afceb8ba'),(64289,39277,'blocks','a:4:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"link_stack\";i:3;s:18:\"testimonial_slider\";}'),(64290,39277,'_blocks','field_6176696113096'),(64291,39277,'blocks_2_acfe_flexible_toggle',''),(64292,39277,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(64293,39277,'blocks_2_acfe_flexible_layout_title','Link Stack'),(64294,39277,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(64295,39277,'blocks_2_options_theme','#ffffff'),(64296,39277,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(64297,39277,'blocks_2_options',''),(64298,39277,'_blocks_2_options','field_6177b758246ae'),(64299,39277,'blocks_2_link_stack_content_title',''),(64300,39277,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(64301,39277,'blocks_2_link_stack_content_heading','Discover our expertise'),(64302,39277,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(64303,39277,'blocks_2_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(64304,39277,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(64305,39277,'blocks_2_link_stack_content_actions',''),(64306,39277,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(64307,39277,'blocks_2_link_stack_content',''),(64308,39277,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(64309,39277,'blocks_2_link_stack_0_label','Personal Training'),(64310,39277,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(64311,39277,'blocks_2_link_stack_0_title','Discover Biomechanics in Personal Training'),(64312,39277,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(64313,39277,'blocks_2_link_stack_0_url','https://www.biomechanicseducation.com/Personaltraining'),(64314,39277,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(64315,39277,'blocks_2_link_stack_1_label','Pilates'),(64316,39277,'_blocks_2_link_stack_1_label','field_6177b80900d00'),(64317,39277,'blocks_2_link_stack_1_title','Discover Biomechanics in Pilates'),(64318,39277,'_blocks_2_link_stack_1_title','field_6177b80f00d01'),(64319,39277,'blocks_2_link_stack_1_url','https://www.biomechanicseducation.com/Pilates'),(64320,39277,'_blocks_2_link_stack_1_url','field_6177b82200d02'),(64321,39277,'blocks_2_link_stack','6'),(64322,39277,'_blocks_2_link_stack','field_6177b7f600cff'),(64323,39277,'blocks_2_link_stack_2_label','Sports Coaches'),(64324,39277,'_blocks_2_link_stack_2_label','field_6177b80900d00'),(64325,39277,'blocks_2_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(64326,39277,'_blocks_2_link_stack_2_title','field_6177b80f00d01'),(64327,39277,'blocks_2_link_stack_2_url','https://www.biomechanicseducation.com/sports-coaches'),(64328,39277,'_blocks_2_link_stack_2_url','field_6177b82200d02'),(64329,39277,'blocks_2_link_stack_3_label','SMT'),(64330,39277,'_blocks_2_link_stack_3_label','field_6177b80900d00'),(64331,39277,'blocks_2_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(64332,39277,'_blocks_2_link_stack_3_title','field_6177b80f00d01'),(64333,39277,'blocks_2_link_stack_3_url','https://www.biomechanicseducation.com/sports-massage-therapy'),(64334,39277,'_blocks_2_link_stack_3_url','field_6177b82200d02'),(64335,39277,'blocks_2_link_stack_4_label','Podiatrists'),(64336,39277,'_blocks_2_link_stack_4_label','field_6177b80900d00'),(64337,39277,'blocks_2_link_stack_4_title','Discover Biomechanics in Podiatry'),(64338,39277,'_blocks_2_link_stack_4_title','field_6177b80f00d01'),(64339,39277,'blocks_2_link_stack_4_url','https://www.biomechanicseducation.com/podiatrists'),(64340,39277,'_blocks_2_link_stack_4_url','field_6177b82200d02'),(64341,39277,'blocks_2_link_stack_5_label','Biomechanics Coach'),(64342,39277,'_blocks_2_link_stack_5_label','field_6177b80900d00'),(64343,39277,'blocks_2_link_stack_5_title','How to Become a Biomechanics Coach'),(64344,39277,'_blocks_2_link_stack_5_title','field_6177b80f00d01'),(64345,39277,'blocks_2_link_stack_5_url','https://www.biomechanicseducation.com/biomechanics-coach'),(64346,39277,'_blocks_2_link_stack_5_url','field_6177b82200d02'),(64347,39277,'_thumbnail_id',''),(64348,39277,'__thumbnail_id','field_617570855ddaf'),(64349,39277,'blocks_3_acfe_flexible_toggle',''),(64350,39277,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(64351,39277,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(64352,39277,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(64353,39277,'blocks_3_testimonial_slider_content_title',''),(64354,39277,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(64355,39277,'blocks_3_testimonial_slider_content_heading','Testimonials'),(64356,39277,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(64357,39277,'blocks_3_testimonial_slider_content_text',''),(64358,39277,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(64359,39277,'blocks_3_testimonial_slider_content_actions',''),(64360,39277,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(64361,39277,'blocks_3_testimonial_slider_content',''),(64362,39277,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(64363,39277,'blocks_3_testimonial_slider_items','a:6:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"38962\";i:5;s:5:\"39169\";}'),(64364,39277,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(64365,39277,'blocks_3_testimonial_slider_ambassador_bool','0'),(64366,39277,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(64368,39278,'_menu_item_type','post_type'),(64369,39278,'_menu_item_menu_item_parent','0'),(64370,39278,'_menu_item_object_id','39066'),(64371,39278,'_menu_item_object','page'),(64372,39278,'_menu_item_target',''),(64373,39278,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(64374,39278,'_menu_item_xfn',''),(64375,39278,'_menu_item_url',''),(64377,39279,'_menu_item_type','post_type'),(64378,39279,'_menu_item_menu_item_parent','0'),(64379,39279,'_menu_item_object_id','39148'),(64380,39279,'_menu_item_object','page'),(64381,39279,'_menu_item_target',''),(64382,39279,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(64383,39279,'_menu_item_xfn',''),(64384,39279,'_menu_item_url',''),(64386,39280,'_menu_item_type','post_type'),(64387,39280,'_menu_item_menu_item_parent','0'),(64388,39280,'_menu_item_object_id','39196'),(64389,39280,'_menu_item_object','page'),(64390,39280,'_menu_item_target',''),(64391,39280,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(64392,39280,'_menu_item_xfn',''),(64393,39280,'_menu_item_url',''),(64395,39281,'_menu_item_type','post_type'),(64396,39281,'_menu_item_menu_item_parent','0'),(64397,39281,'_menu_item_object_id','39172'),(64398,39281,'_menu_item_object','page'),(64399,39281,'_menu_item_target',''),(64400,39281,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(64401,39281,'_menu_item_xfn',''),(64402,39281,'_menu_item_url',''),(64413,39278,'menu_item_card_image','39589'),(64414,39278,'_menu_item_card_image','field_618cf50fb8716'),(64415,39278,'menu_item_card_title','Our Courses'),(64416,39278,'_menu_item_card_title','field_618cf51cb8717'),(64417,39278,'menu_item_card_text','Discover Our Diverse Range of Courses'),(64418,39278,'_menu_item_card_text','field_618cf521b8718'),(64419,39278,'menu_item_card_link','a:3:{s:5:\"title\";s:12:\"View Courses\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(64420,39278,'_menu_item_card_link','field_618cf52eb8719'),(64421,39278,'menu_item_card',''),(64422,39278,'_menu_item_card','field_618cf506b8715'),(64423,39279,'menu_item_card_image','40859'),(64424,39279,'_menu_item_card_image','field_618cf50fb8716'),(64425,39279,'menu_item_card_title','Get Started'),(64426,39279,'_menu_item_card_title','field_618cf51cb8717'),(64427,39279,'menu_item_card_text','Read our guides on how to start a career in Health &amp; Fitness'),(64428,39279,'_menu_item_card_text','field_618cf521b8718'),(64429,39279,'menu_item_card_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:44:\"https://www.futurefit.co.uk/getting-started/\";s:6:\"target\";s:0:\"\";}'),(64430,39279,'_menu_item_card_link','field_618cf52eb8719'),(64431,39279,'menu_item_card',''),(64432,39279,'_menu_item_card','field_618cf506b8715'),(64433,39280,'menu_item_card_image','40860'),(64434,39280,'_menu_item_card_image','field_618cf50fb8716'),(64435,39280,'menu_item_card_title','Contact Us'),(64436,39280,'_menu_item_card_title','field_618cf51cb8717'),(64437,39280,'menu_item_card_text','Get in touch with us today, and we’ll help you navigate your way to a rewarding new career in Biomechanics.'),(64438,39280,'_menu_item_card_text','field_618cf521b8718'),(64439,39280,'menu_item_card_link','a:3:{s:5:\"title\";s:12:\"Get in Touch\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(64440,39280,'_menu_item_card_link','field_618cf52eb8719'),(64441,39280,'menu_item_card',''),(64442,39280,'_menu_item_card','field_618cf506b8715'),(64443,39281,'menu_item_card_image','38950'),(64444,39281,'_menu_item_card_image','field_618cf50fb8716'),(64445,39281,'menu_item_card_title',''),(64446,39281,'_menu_item_card_title','field_618cf51cb8717'),(64447,39281,'menu_item_card_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(64448,39281,'_menu_item_card_text','field_618cf521b8718'),(64449,39281,'menu_item_card_link','a:3:{s:5:\"title\";s:8:\"About Us\";s:3:\"url\";s:43:\"https://biomechanicseducation.com/about-us/\";s:6:\"target\";s:0:\"\";}'),(64450,39281,'_menu_item_card_link','field_618cf52eb8719'),(64451,39281,'menu_item_card',''),(64452,39281,'_menu_item_card','field_618cf506b8715'),(64614,39284,'_edit_lock','1730198883:13'),(64615,39284,'_edit_last','13'),(64616,39284,'hide_hero','0'),(64617,39284,'_hide_hero','field_66a2380fcda39'),(64618,39284,'hero_title','Our Partners'),(64619,39284,'_hero_title','field_617571fe285e8'),(64620,39284,'hero_text',''),(64621,39284,'_hero_text','field_6175723c285e9'),(64622,39284,'hero_actions','1'),(64623,39284,'_hero_actions','field_61757270285ea'),(64624,39284,'hero_style','default'),(64625,39284,'_hero_style','field_62051d9dc5324'),(64627,39284,'__thumbnail_id','field_617570855ddaf'),(64628,39284,'hero_image_pos_x','right'),(64629,39284,'_hero_image_pos_x','field_62ec3d05390bb'),(64630,39284,'hero_image_pos_y','top'),(64631,39284,'_hero_image_pos_y','field_62ec3d05390bc'),(64632,39284,'hero_image_pos',''),(64633,39284,'_hero_image_pos','field_62ec3d05390ba'),(64634,39284,'fft_hide_from_listings','0'),(64635,39284,'_fft_hide_from_listings','field_61f1320446ab2'),(64636,39284,'fft_page_format','default'),(64637,39284,'_fft_page_format','field_61ae213f1f218'),(64638,39284,'fft_hide_nav','0'),(64639,39284,'_fft_hide_nav','field_635bd5e43527c'),(64640,39284,'fft_hide_header_call_to_action','0'),(64641,39284,'_fft_hide_header_call_to_action','field_635bd6723527d'),(64642,39284,'fft_page_sitemap','0'),(64643,39284,'_fft_page_sitemap','field_61af9b34e8181'),(64668,39284,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:16:\"standard_content\";i:2;s:10:\"text_block\";i:3;s:5:\"logos\";i:4;s:10:\"split_5050\";i:5;s:16:\"standard_content\";i:6;s:18:\"testimonial_slider\";i:7;s:11:\"promo_panel\";}'),(64669,39284,'_blocks','field_6176696113096'),(64670,39284,'_yoast_wpseo_estimated-reading-time-minutes','1'),(64671,39285,'hide_hero','0'),(64672,39285,'_hide_hero','field_66a2380fcda39'),(64673,39285,'hero_title','Our Partners'),(64674,39285,'_hero_title','field_617571fe285e8'),(64675,39285,'hero_text',''),(64676,39285,'_hero_text','field_6175723c285e9'),(64677,39285,'hero_actions',''),(64678,39285,'_hero_actions','field_61757270285ea'),(64679,39285,'hero_style','default'),(64680,39285,'_hero_style','field_62051d9dc5324'),(64681,39285,'_thumbnail_id',''),(64682,39285,'__thumbnail_id','field_617570855ddaf'),(64683,39285,'hero_image_pos_x','right'),(64684,39285,'_hero_image_pos_x','field_62ec3d05390bb'),(64685,39285,'hero_image_pos_y','top'),(64686,39285,'_hero_image_pos_y','field_62ec3d05390bc'),(64687,39285,'hero_image_pos',''),(64688,39285,'_hero_image_pos','field_62ec3d05390ba'),(64689,39285,'fft_hide_from_listings','0'),(64690,39285,'_fft_hide_from_listings','field_61f1320446ab2'),(64691,39285,'fft_page_format','default'),(64692,39285,'_fft_page_format','field_61ae213f1f218'),(64693,39285,'fft_hide_nav','0'),(64694,39285,'_fft_hide_nav','field_635bd5e43527c'),(64695,39285,'fft_hide_header_call_to_action','0'),(64696,39285,'_fft_hide_header_call_to_action','field_635bd6723527d'),(64697,39285,'fft_page_sitemap','0'),(64698,39285,'_fft_page_sitemap','field_61af9b34e8181'),(64699,39285,'blocks_0_acfe_flexible_toggle',''),(64700,39285,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(64701,39285,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(64702,39285,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(64703,39285,'blocks_0_options_theme','#ffffff'),(64704,39285,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(64705,39285,'blocks_0_options_reverse','0'),(64706,39285,'_blocks_0_options_reverse','field_61768049bb8ac'),(64707,39285,'blocks_0_options',''),(64708,39285,'_blocks_0_options','field_617682517c334'),(64709,39285,'blocks_0_split_5050_image',''),(64710,39285,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(64711,39285,'blocks_0_split_5050_video',''),(64712,39285,'_blocks_0_split_5050_video','field_6239f3160848a'),(64713,39285,'blocks_0_split_5050_content_title',''),(64714,39285,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(64715,39285,'blocks_0_split_5050_content_heading','Welcome to our Partnerships page!'),(64716,39285,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(64717,39285,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(64718,39285,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(64719,39285,'blocks_0_split_5050_content_actions',''),(64720,39285,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(64721,39285,'blocks_0_split_5050_content',''),(64722,39285,'_blocks_0_split_5050_content','field_61767afceb8ba'),(64723,39285,'blocks','a:1:{i:0;s:10:\"split_5050\";}'),(64724,39285,'_blocks','field_6176696113096'),(64780,39287,'hide_hero','0'),(64781,39287,'_hide_hero','field_66a2380fcda39'),(64782,39287,'hero_title','Our Partners'),(64783,39287,'_hero_title','field_617571fe285e8'),(64784,39287,'hero_text',''),(64785,39287,'_hero_text','field_6175723c285e9'),(64786,39287,'hero_actions',''),(64787,39287,'_hero_actions','field_61757270285ea'),(64788,39287,'hero_style','default'),(64789,39287,'_hero_style','field_62051d9dc5324'),(64790,39287,'hero_image_pos_x','right'),(64791,39287,'_hero_image_pos_x','field_62ec3d05390bb'),(64792,39287,'hero_image_pos_y','top'),(64793,39287,'_hero_image_pos_y','field_62ec3d05390bc'),(64794,39287,'hero_image_pos',''),(64795,39287,'_hero_image_pos','field_62ec3d05390ba'),(64796,39287,'fft_hide_from_listings','0'),(64797,39287,'_fft_hide_from_listings','field_61f1320446ab2'),(64798,39287,'fft_page_format','default'),(64799,39287,'_fft_page_format','field_61ae213f1f218'),(64800,39287,'fft_hide_nav','0'),(64801,39287,'_fft_hide_nav','field_635bd5e43527c'),(64802,39287,'fft_hide_header_call_to_action','0'),(64803,39287,'_fft_hide_header_call_to_action','field_635bd6723527d'),(64804,39287,'fft_page_sitemap','0'),(64805,39287,'_fft_page_sitemap','field_61af9b34e8181'),(64806,39287,'blocks_0_acfe_flexible_toggle',''),(64807,39287,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(64808,39287,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(64809,39287,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(64810,39287,'blocks_0_options_theme','#ffffff'),(64811,39287,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(64812,39287,'blocks_0_options_reverse','0'),(64813,39287,'_blocks_0_options_reverse','field_61768049bb8ac'),(64814,39287,'blocks_0_options',''),(64815,39287,'_blocks_0_options','field_617682517c334'),(64816,39287,'blocks_0_split_5050_image',''),(64817,39287,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(64818,39287,'blocks_0_split_5050_video',''),(64819,39287,'_blocks_0_split_5050_video','field_6239f3160848a'),(64820,39287,'blocks_0_split_5050_content_title','Welcome to our Partnerships page!'),(64821,39287,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(64822,39287,'blocks_0_split_5050_content_heading','Welcome to our Partnerships page!'),(64823,39287,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(64824,39287,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(64825,39287,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(64826,39287,'blocks_0_split_5050_content_actions',''),(64827,39287,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(64828,39287,'blocks_0_split_5050_content',''),(64829,39287,'_blocks_0_split_5050_content','field_61767afceb8ba'),(64830,39287,'blocks','a:1:{i:0;s:10:\"split_5050\";}'),(64831,39287,'_blocks','field_6176696113096'),(64832,39287,'_thumbnail_id',''),(64833,39287,'__thumbnail_id','field_617570855ddaf'),(64835,39288,'hide_hero','0'),(64836,39288,'_hide_hero','field_66a2380fcda39'),(64837,39288,'hero_title','Our Partners'),(64838,39288,'_hero_title','field_617571fe285e8'),(64839,39288,'hero_text',''),(64840,39288,'_hero_text','field_6175723c285e9'),(64841,39288,'hero_actions',''),(64842,39288,'_hero_actions','field_61757270285ea'),(64843,39288,'hero_style','default'),(64844,39288,'_hero_style','field_62051d9dc5324'),(64845,39288,'hero_image_pos_x','right'),(64846,39288,'_hero_image_pos_x','field_62ec3d05390bb'),(64847,39288,'hero_image_pos_y','top'),(64848,39288,'_hero_image_pos_y','field_62ec3d05390bc'),(64849,39288,'hero_image_pos',''),(64850,39288,'_hero_image_pos','field_62ec3d05390ba'),(64851,39288,'fft_hide_from_listings','0'),(64852,39288,'_fft_hide_from_listings','field_61f1320446ab2'),(64853,39288,'fft_page_format','default'),(64854,39288,'_fft_page_format','field_61ae213f1f218'),(64855,39288,'fft_hide_nav','0'),(64856,39288,'_fft_hide_nav','field_635bd5e43527c'),(64857,39288,'fft_hide_header_call_to_action','0'),(64858,39288,'_fft_hide_header_call_to_action','field_635bd6723527d'),(64859,39288,'fft_page_sitemap','0'),(64860,39288,'_fft_page_sitemap','field_61af9b34e8181'),(64861,39288,'blocks_0_acfe_flexible_toggle',''),(64862,39288,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(64863,39288,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(64864,39288,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(64865,39288,'blocks_0_options_theme','#ffffff'),(64866,39288,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(64867,39288,'blocks_0_options_reverse','0'),(64868,39288,'_blocks_0_options_reverse','field_61768049bb8ac'),(64869,39288,'blocks_0_options',''),(64870,39288,'_blocks_0_options','field_617682517c334'),(64871,39288,'blocks_0_split_5050_image',''),(64872,39288,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(64873,39288,'blocks_0_split_5050_video',''),(64874,39288,'_blocks_0_split_5050_video','field_6239f3160848a'),(64875,39288,'blocks_0_split_5050_content_title',''),(64876,39288,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(64877,39288,'blocks_0_split_5050_content_heading','Welcome to our Partnerships page!'),(64878,39288,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(64879,39288,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(64880,39288,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(64881,39288,'blocks_0_split_5050_content_actions',''),(64882,39288,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(64883,39288,'blocks_0_split_5050_content',''),(64884,39288,'_blocks_0_split_5050_content','field_61767afceb8ba'),(64885,39288,'blocks','a:1:{i:0;s:10:\"split_5050\";}'),(64886,39288,'_blocks','field_6176696113096'),(64887,39288,'_thumbnail_id',''),(64888,39288,'__thumbnail_id','field_617570855ddaf'),(64896,39289,'hide_hero','0'),(64897,39289,'_hide_hero','field_66a2380fcda39'),(64898,39289,'hero_title','Our Partners'),(64899,39289,'_hero_title','field_617571fe285e8'),(64900,39289,'hero_text',''),(64901,39289,'_hero_text','field_6175723c285e9'),(64902,39289,'hero_actions',''),(64903,39289,'_hero_actions','field_61757270285ea'),(64904,39289,'hero_style','default'),(64905,39289,'_hero_style','field_62051d9dc5324'),(64906,39289,'hero_image_pos_x','right'),(64907,39289,'_hero_image_pos_x','field_62ec3d05390bb'),(64908,39289,'hero_image_pos_y','top'),(64909,39289,'_hero_image_pos_y','field_62ec3d05390bc'),(64910,39289,'hero_image_pos',''),(64911,39289,'_hero_image_pos','field_62ec3d05390ba'),(64912,39289,'fft_hide_from_listings','0'),(64913,39289,'_fft_hide_from_listings','field_61f1320446ab2'),(64914,39289,'fft_page_format','default'),(64915,39289,'_fft_page_format','field_61ae213f1f218'),(64916,39289,'fft_hide_nav','0'),(64917,39289,'_fft_hide_nav','field_635bd5e43527c'),(64918,39289,'fft_hide_header_call_to_action','0'),(64919,39289,'_fft_hide_header_call_to_action','field_635bd6723527d'),(64920,39289,'fft_page_sitemap','0'),(64921,39289,'_fft_page_sitemap','field_61af9b34e8181'),(64922,39289,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(64923,39289,'_blocks','field_6176696113096'),(64924,39289,'_thumbnail_id',''),(64925,39289,'__thumbnail_id','field_617570855ddaf'),(64926,39289,'blocks_0_acfe_flexible_toggle',''),(64927,39289,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(64928,39289,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(64929,39289,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(64930,39289,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: center;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(64931,39289,'_blocks_0_content','field_6193c9b5eac84'),(64932,39290,'_wp_attached_file','2024/08/Future-Fit-Group-logo.png'),(64933,39290,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2501;s:6:\"height\";i:584;s:4:\"file\";s:33:\"2024/08/Future-Fit-Group-logo.png\";s:8:\"filesize\";i:20498;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Future-Fit-Group-logo-900x210.png\";s:5:\"width\";i:900;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11055;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"Future-Fit-Group-logo-1200x280.png\";s:5:\"width\";i:1200;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15288;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Future-Fit-Group-logo-400x93.png\";s:5:\"width\";i:400;s:6:\"height\";i:93;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5340;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Future-Fit-Group-logo-768x179.png\";s:5:\"width\";i:768;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9660;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"Future-Fit-Group-logo-1536x359.png\";s:5:\"width\";i:1536;s:6:\"height\";i:359;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19839;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"Future-Fit-Group-logo-2048x478.png\";s:5:\"width\";i:2048;s:6:\"height\";i:478;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27174;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"Future-Fit-Group-logo-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6617;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"Future-Fit-Group-logo-900x584.png\";s:5:\"width\";i:900;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8595;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"Future-Fit-Group-logo-1200x584.png\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11101;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"Future-Fit-Group-logo-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5321;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"Future-Fit-Group-logo-900x584.png\";s:5:\"width\";i:900;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8595;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"Future-Fit-Group-logo-1200x584.png\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11101;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"Future-Fit-Group-logo-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5427;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"Future-Fit-Group-logo-675x584.png\";s:5:\"width\";i:675;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7140;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"Future-Fit-Group-logo-900x584.png\";s:5:\"width\";i:900;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8595;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"Future-Fit-Group-logo-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5423;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"Future-Fit-Group-logo-900x584.png\";s:5:\"width\";i:900;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8595;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"Future-Fit-Group-logo-1200x584.png\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11101;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"Future-Fit-Group-logo-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4750;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"Future-Fit-Group-logo-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11177;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"Future-Fit-Group-logo-1200x584.png\";s:5:\"width\";i:1200;s:6:\"height\";i:584;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11101;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(64934,39291,'_wp_attached_file','2024/08/sta_logo_2016.png'),(64935,39291,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:420;s:6:\"height\";i:315;s:4:\"file\";s:25:\"2024/08/sta_logo_2016.png\";s:8:\"filesize\";i:26939;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"sta_logo_2016-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34302;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:25:\"sta_logo_2016-400x315.png\";s:5:\"width\";i:400;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34555;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:25:\"sta_logo_2016-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32241;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:25:\"sta_logo_2016-300x315.png\";s:5:\"width\";i:300;s:6:\"height\";i:315;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29577;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:25:\"sta_logo_2016-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34302;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:25:\"sta_logo_2016-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29029;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(64936,39292,'_wp_attached_file','2024/08/BTN-Academy.svg'),(64937,39292,'_wp_attachment_metadata','a:4:{s:5:\"width\";i:1815;s:6:\"height\";i:365;s:4:\"file\";s:23:\"2024/08/BTN-Academy.svg\";s:5:\"sizes\";a:21:{s:9:\"thumbnail\";a:5:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";s:1:\"0\";s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"medium\";a:5:{s:5:\"width\";s:3:\"900\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";b:0;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:12:\"medium_large\";a:5:{s:5:\"width\";s:3:\"768\";s:6:\"height\";s:1:\"0\";s:4:\"crop\";b:0;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:5:\"large\";a:5:{s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";b:0;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"1536x1536\";a:5:{s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:4:\"crop\";i:0;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:9:\"2048x2048\";a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:4:\"crop\";i:0;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"1x1-sm\";a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"1x1-md\";a:5:{s:5:\"width\";i:900;s:6:\"height\";i:900;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"1x1-lg\";a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"3x2-sm\";a:5:{s:5:\"width\";i:400;s:6:\"height\";i:266;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"3x2-md\";a:5:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"3x2-lg\";a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"3x4-sm\";a:5:{s:5:\"width\";i:300;s:6:\"height\";i:400;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"3x4-md\";a:5:{s:5:\"width\";i:675;s:6:\"height\";i:900;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"3x4-lg\";a:5:{s:5:\"width\";i:900;s:6:\"height\";i:1200;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"4x3-sm\";a:5:{s:5:\"width\";i:400;s:6:\"height\";i:300;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"4x3-md\";a:5:{s:5:\"width\";i:900;s:6:\"height\";i:675;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:6:\"4x3-lg\";a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:900;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:7:\"16x9-sm\";a:5:{s:5:\"width\";i:400;s:6:\"height\";i:225;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:7:\"16x9-md\";a:5:{s:5:\"width\";i:900;s:6:\"height\";i:506;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}s:7:\"16x9-lg\";a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"crop\";i:1;s:4:\"file\";s:15:\"BTN-Academy.svg\";s:9:\"mime-type\";s:13:\"image/svg+xml\";}}}'),(64938,39293,'_wp_attached_file','2024/08/cropped-brytespark-Logo-RGB-16b4cf.png'),(64939,39293,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:79;s:4:\"file\";s:46:\"2024/08/cropped-brytespark-Logo-RGB-16b4cf.png\";s:8:\"filesize\";i:5600;s:5:\"sizes\";a:1:{s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:45:\"cropped-brytespark-Logo-RGB-16b4cf-300x79.png\";s:5:\"width\";i:300;s:6:\"height\";i:79;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4572;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(64940,39294,'_wp_attached_file','2024/08/cimspa-logo-white-box.webp'),(64941,39294,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:34:\"2024/08/cimspa-logo-white-box.webp\";s:8:\"filesize\";i:6676;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-900x506.webp\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12082;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"cimspa-logo-white-box-1200x675.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16274;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5624;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-768x432.webp\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9996;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5682;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-900x720.webp\";s:5:\"width\";i:900;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5636;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"cimspa-logo-white-box-1200x720.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6578;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-400x266.webp\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6520;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-900x600.webp\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14214;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"cimspa-logo-white-box-1200x720.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6578;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4374;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-675x720.webp\";s:5:\"width\";i:675;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3202;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-900x720.webp\";s:5:\"width\";i:900;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5636;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-400x300.webp\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7262;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-900x675.webp\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16144;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"cimspa-logo-white-box-1200x720.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6578;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5624;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"cimspa-logo-white-box-900x506.webp\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12082;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"cimspa-logo-white-box-1200x675.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16274;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(64942,39295,'_wp_attached_file','2024/08/Flowin-logo.png'),(64943,39295,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:593;s:6:\"height\";i:112;s:4:\"file\";s:23:\"2024/08/Flowin-logo.png\";s:8:\"filesize\";i:5562;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Flowin-logo-400x76.png\";s:5:\"width\";i:400;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7322;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:23:\"Flowin-logo-400x112.png\";s:5:\"width\";i:400;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4120;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:23:\"Flowin-logo-400x112.png\";s:5:\"width\";i:400;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4120;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:23:\"Flowin-logo-300x112.png\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3207;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:23:\"Flowin-logo-400x112.png\";s:5:\"width\";i:400;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4120;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:23:\"Flowin-logo-400x112.png\";s:5:\"width\";i:400;s:6:\"height\";i:112;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4120;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(64944,39296,'_wp_attached_file','2024/08/V-gymwear-logo.webp'),(64945,39296,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1713;s:6:\"height\";i:821;s:4:\"file\";s:27:\"2024/08/V-gymwear-logo.webp\";s:8:\"filesize\";i:30032;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-900x431.webp\";s:5:\"width\";i:900;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16476;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"V-gymwear-logo-1200x575.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20442;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-400x192.webp\";s:5:\"width\";i:400;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8040;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-768x368.webp\";s:5:\"width\";i:768;s:6:\"height\";i:368;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13852;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:28:\"V-gymwear-logo-1536x736.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:736;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27722;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7318;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-900x821.webp\";s:5:\"width\";i:900;s:6:\"height\";i:821;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16752;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:28:\"V-gymwear-logo-1200x821.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:821;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20980;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-400x266.webp\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7774;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-900x600.webp\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15304;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:28:\"V-gymwear-logo-1200x800.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20566;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5986;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-675x821.webp\";s:5:\"width\";i:675;s:6:\"height\";i:821;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13446;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-900x821.webp\";s:5:\"width\";i:900;s:6:\"height\";i:821;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16752;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-400x300.webp\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7552;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-900x675.webp\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15782;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:28:\"V-gymwear-logo-1200x821.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:821;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20980;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:7832;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:27:\"V-gymwear-logo-900x506.webp\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15578;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:28:\"V-gymwear-logo-1200x675.webp\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20686;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(64946,39297,'_wp_attached_file','2024/08/The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200.webp'),(64947,39297,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1128;s:6:\"height\";i:871;s:4:\"file\";s:92:\"2024/08/The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200.webp\";s:8:\"filesize\";i:30702;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-900x695.webp\";s:5:\"width\";i:900;s:6:\"height\";i:695;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:33240;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-400x309.webp\";s:5:\"width\";i:400;s:6:\"height\";i:309;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14784;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-768x593.webp\";s:5:\"width\";i:768;s:6:\"height\";i:593;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:28218;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17694;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-900x871.webp\";s:5:\"width\";i:900;s:6:\"height\";i:871;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25424;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-400x266.webp\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13818;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-900x600.webp\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:30732;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:93:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-1128x800.webp\";s:5:\"width\";i:1128;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:26934;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15560;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-675x871.webp\";s:5:\"width\";i:675;s:6:\"height\";i:871;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22250;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-900x871.webp\";s:5:\"width\";i:900;s:6:\"height\";i:871;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25424;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-400x300.webp\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14756;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-900x675.webp\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:32474;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12708;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:92:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-900x506.webp\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27746;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:93:\"The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200-1128x675.webp\";s:5:\"width\";i:1128;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:23664;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(64950,39299,'_wp_attached_file','2024/08/logo-pulseroll-1664208053.webp'),(64951,39299,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:1000;s:4:\"file\";s:38:\"2024/08/logo-pulseroll-1664208053.webp\";s:8:\"filesize\";i:9236;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"logo-pulseroll-1664208053-900x900.webp\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13062;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"logo-pulseroll-1664208053-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6196;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"logo-pulseroll-1664208053-768x768.webp\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12062;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:38:\"logo-pulseroll-1664208053-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6196;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:38:\"logo-pulseroll-1664208053-900x900.webp\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13062;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:38:\"logo-pulseroll-1664208053-400x266.webp\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6024;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:38:\"logo-pulseroll-1664208053-900x600.webp\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14222;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:39:\"logo-pulseroll-1664208053-1000x800.webp\";s:5:\"width\";i:1000;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8650;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:38:\"logo-pulseroll-1664208053-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:5712;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:38:\"logo-pulseroll-1664208053-675x900.webp\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12596;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:39:\"logo-pulseroll-1664208053-900x1000.webp\";s:5:\"width\";i:900;s:6:\"height\";i:1000;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8648;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:38:\"logo-pulseroll-1664208053-400x300.webp\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6178;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:38:\"logo-pulseroll-1664208053-900x675.webp\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14250;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:39:\"logo-pulseroll-1664208053-1000x900.webp\";s:5:\"width\";i:1000;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8730;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:38:\"logo-pulseroll-1664208053-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:6462;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:38:\"logo-pulseroll-1664208053-900x506.webp\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:14262;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:39:\"logo-pulseroll-1664208053-1000x675.webp\";s:5:\"width\";i:1000;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8628;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(64952,39300,'_wp_attached_file','2024/08/BGieulogo-withtagline-3by2-600-2020-02.png'),(64953,39300,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:50:\"2024/08/BGieulogo-withtagline-3by2-600-2020-02.png\";s:8:\"filesize\";i:41544;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"BGieulogo-withtagline-3by2-600-2020-02-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40281;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:50:\"BGieulogo-withtagline-3by2-600-2020-02-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29954;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:50:\"BGieulogo-withtagline-3by2-600-2020-02-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40461;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:50:\"BGieulogo-withtagline-3by2-600-2020-02-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22331;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:50:\"BGieulogo-withtagline-3by2-600-2020-02-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43945;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:50:\"BGieulogo-withtagline-3by2-600-2020-02-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35500;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(64969,39301,'hide_hero','0'),(64970,39301,'_hide_hero','field_66a2380fcda39'),(64971,39301,'hero_title','Our Partners'),(64972,39301,'_hero_title','field_617571fe285e8'),(64973,39301,'hero_text',''),(64974,39301,'_hero_text','field_6175723c285e9'),(64975,39301,'hero_actions',''),(64976,39301,'_hero_actions','field_61757270285ea'),(64977,39301,'hero_style','default'),(64978,39301,'_hero_style','field_62051d9dc5324'),(64979,39301,'hero_image_pos_x','right'),(64980,39301,'_hero_image_pos_x','field_62ec3d05390bb'),(64981,39301,'hero_image_pos_y','top'),(64982,39301,'_hero_image_pos_y','field_62ec3d05390bc'),(64983,39301,'hero_image_pos',''),(64984,39301,'_hero_image_pos','field_62ec3d05390ba'),(64985,39301,'fft_hide_from_listings','0'),(64986,39301,'_fft_hide_from_listings','field_61f1320446ab2'),(64987,39301,'fft_page_format','default'),(64988,39301,'_fft_page_format','field_61ae213f1f218'),(64989,39301,'fft_hide_nav','0'),(64990,39301,'_fft_hide_nav','field_635bd5e43527c'),(64991,39301,'fft_hide_header_call_to_action','0'),(64992,39301,'_fft_hide_header_call_to_action','field_635bd6723527d'),(64993,39301,'fft_page_sitemap','0'),(64994,39301,'_fft_page_sitemap','field_61af9b34e8181'),(64995,39301,'blocks','a:2:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";}'),(64996,39301,'_blocks','field_6176696113096'),(64997,39301,'blocks_0_acfe_flexible_toggle',''),(64998,39301,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(64999,39301,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(65000,39301,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(65001,39301,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: center;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(65002,39301,'_blocks_0_content','field_6193c9b5eac84'),(65003,39301,'_thumbnail_id',''),(65004,39301,'__thumbnail_id','field_617570855ddaf'),(65005,39301,'blocks_1_acfe_flexible_toggle',''),(65006,39301,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(65007,39301,'blocks_1_acfe_flexible_layout_title','Logos'),(65008,39301,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(65009,39301,'blocks_1_options_theme','#ffffff'),(65010,39301,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(65011,39301,'blocks_1_options_format','carousel'),(65012,39301,'_blocks_1_options_format','field_61782964ee971'),(65013,39301,'blocks_1_options',''),(65014,39301,'_blocks_1_options','field_61782954ee965'),(65015,39301,'blocks_1_logos','a:11:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39292\";i:3;s:5:\"39293\";i:4;s:5:\"39294\";i:5;s:5:\"39295\";i:6;s:5:\"39296\";i:7;s:5:\"39297\";i:8;s:5:\"39298\";i:9;s:5:\"39299\";i:10;s:5:\"39300\";}'),(65016,39301,'_blocks_1_logos','field_61782954ee96d'),(65017,39301,'blocks_1_title',''),(65018,39301,'_blocks_1_title','field_668fbfdc2daa1'),(65022,39303,'hide_hero','0'),(65023,39303,'_hide_hero','field_66a2380fcda39'),(65024,39303,'hero_title','Our Partners'),(65025,39303,'_hero_title','field_617571fe285e8'),(65026,39303,'hero_text',''),(65027,39303,'_hero_text','field_6175723c285e9'),(65028,39303,'hero_actions',''),(65029,39303,'_hero_actions','field_61757270285ea'),(65030,39303,'hero_style','default'),(65031,39303,'_hero_style','field_62051d9dc5324'),(65032,39303,'hero_image_pos_x','right'),(65033,39303,'_hero_image_pos_x','field_62ec3d05390bb'),(65034,39303,'hero_image_pos_y','top'),(65035,39303,'_hero_image_pos_y','field_62ec3d05390bc'),(65036,39303,'hero_image_pos',''),(65037,39303,'_hero_image_pos','field_62ec3d05390ba'),(65038,39303,'fft_hide_from_listings','0'),(65039,39303,'_fft_hide_from_listings','field_61f1320446ab2'),(65040,39303,'fft_page_format','default'),(65041,39303,'_fft_page_format','field_61ae213f1f218'),(65042,39303,'fft_hide_nav','0'),(65043,39303,'_fft_hide_nav','field_635bd5e43527c'),(65044,39303,'fft_hide_header_call_to_action','0'),(65045,39303,'_fft_hide_header_call_to_action','field_635bd6723527d'),(65046,39303,'fft_page_sitemap','0'),(65047,39303,'_fft_page_sitemap','field_61af9b34e8181'),(65048,39303,'blocks','a:2:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";}'),(65049,39303,'_blocks','field_6176696113096'),(65050,39303,'blocks_0_acfe_flexible_toggle',''),(65051,39303,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(65052,39303,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(65053,39303,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(65054,39303,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: center;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(65055,39303,'_blocks_0_content','field_6193c9b5eac84'),(65056,39303,'blocks_1_acfe_flexible_toggle',''),(65057,39303,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(65058,39303,'blocks_1_acfe_flexible_layout_title','Logos'),(65059,39303,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(65060,39303,'blocks_1_options_theme','#ffffff'),(65061,39303,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(65062,39303,'blocks_1_options_format','carousel'),(65063,39303,'_blocks_1_options_format','field_61782964ee971'),(65064,39303,'blocks_1_options',''),(65065,39303,'_blocks_1_options','field_61782954ee965'),(65066,39303,'blocks_1_logos','a:11:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39292\";i:3;s:5:\"39293\";i:4;s:5:\"39294\";i:5;s:5:\"39295\";i:6;s:5:\"39296\";i:7;s:5:\"39297\";i:8;s:5:\"39299\";i:9;s:5:\"39300\";i:10;s:5:\"39302\";}'),(65067,39303,'_blocks_1_logos','field_61782954ee96d'),(65068,39303,'blocks_1_title',''),(65069,39303,'_blocks_1_title','field_668fbfdc2daa1'),(65070,39303,'_thumbnail_id',''),(65071,39303,'__thumbnail_id','field_617570855ddaf'),(65072,39304,'_wp_attached_file','2024/08/wolverson-main-logo.png'),(65073,39304,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1023;s:6:\"height\";i:284;s:4:\"file\";s:31:\"2024/08/wolverson-main-logo.png\";s:8:\"filesize\";i:46606;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-900x250.png\";s:5:\"width\";i:900;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44066;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-400x111.png\";s:5:\"width\";i:400;s:6:\"height\";i:111;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17984;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-768x213.png\";s:5:\"width\";i:768;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37048;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16406;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-900x284.png\";s:5:\"width\";i:900;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37995;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20503;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-900x284.png\";s:5:\"width\";i:900;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37995;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12809;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-675x284.png\";s:5:\"width\";i:675;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26861;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-900x284.png\";s:5:\"width\";i:900;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37995;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16406;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-900x284.png\";s:5:\"width\";i:900;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37995;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19757;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:31:\"wolverson-main-logo-900x284.png\";s:5:\"width\";i:900;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37995;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(65075,39305,'hide_hero','0'),(65076,39305,'_hide_hero','field_66a2380fcda39'),(65077,39305,'hero_title','Our Partners'),(65078,39305,'_hero_title','field_617571fe285e8'),(65079,39305,'hero_text',''),(65080,39305,'_hero_text','field_6175723c285e9'),(65081,39305,'hero_actions',''),(65082,39305,'_hero_actions','field_61757270285ea'),(65083,39305,'hero_style','default'),(65084,39305,'_hero_style','field_62051d9dc5324'),(65085,39305,'hero_image_pos_x','right'),(65086,39305,'_hero_image_pos_x','field_62ec3d05390bb'),(65087,39305,'hero_image_pos_y','top'),(65088,39305,'_hero_image_pos_y','field_62ec3d05390bc'),(65089,39305,'hero_image_pos',''),(65090,39305,'_hero_image_pos','field_62ec3d05390ba'),(65091,39305,'fft_hide_from_listings','0'),(65092,39305,'_fft_hide_from_listings','field_61f1320446ab2'),(65093,39305,'fft_page_format','default'),(65094,39305,'_fft_page_format','field_61ae213f1f218'),(65095,39305,'fft_hide_nav','0'),(65096,39305,'_fft_hide_nav','field_635bd5e43527c'),(65097,39305,'fft_hide_header_call_to_action','0'),(65098,39305,'_fft_hide_header_call_to_action','field_635bd6723527d'),(65099,39305,'fft_page_sitemap','0'),(65100,39305,'_fft_page_sitemap','field_61af9b34e8181'),(65101,39305,'blocks','a:2:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";}'),(65102,39305,'_blocks','field_6176696113096'),(65103,39305,'blocks_0_acfe_flexible_toggle',''),(65104,39305,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(65105,39305,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(65106,39305,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(65107,39305,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: center;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(65108,39305,'_blocks_0_content','field_6193c9b5eac84'),(65109,39305,'blocks_1_acfe_flexible_toggle',''),(65110,39305,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(65111,39305,'blocks_1_acfe_flexible_layout_title','Logos'),(65112,39305,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(65113,39305,'blocks_1_options_theme','#ffffff'),(65114,39305,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(65115,39305,'blocks_1_options_format','carousel'),(65116,39305,'_blocks_1_options_format','field_61782964ee971'),(65117,39305,'blocks_1_options',''),(65118,39305,'_blocks_1_options','field_61782954ee965'),(65119,39305,'blocks_1_logos','a:11:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39292\";i:3;s:5:\"39293\";i:4;s:5:\"39294\";i:5;s:5:\"39295\";i:6;s:5:\"39296\";i:7;s:5:\"39297\";i:8;s:5:\"39299\";i:9;s:5:\"39300\";i:10;s:5:\"39304\";}'),(65120,39305,'_blocks_1_logos','field_61782954ee96d'),(65121,39305,'blocks_1_title',''),(65122,39305,'_blocks_1_title','field_668fbfdc2daa1'),(65123,39305,'_thumbnail_id',''),(65124,39305,'__thumbnail_id','field_617570855ddaf'),(65125,39306,'_wp_attached_file','2024/08/pulseroll-logo.png'),(65126,39306,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:120;s:4:\"file\";s:26:\"2024/08/pulseroll-logo.png\";s:8:\"filesize\";i:4387;s:5:\"sizes\";a:1:{s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:26:\"pulseroll-logo-300x120.png\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7455;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(65128,39307,'hide_hero','0'),(65129,39307,'_hide_hero','field_66a2380fcda39'),(65130,39307,'hero_title','Our Partners'),(65131,39307,'_hero_title','field_617571fe285e8'),(65132,39307,'hero_text',''),(65133,39307,'_hero_text','field_6175723c285e9'),(65134,39307,'hero_actions',''),(65135,39307,'_hero_actions','field_61757270285ea'),(65136,39307,'hero_style','default'),(65137,39307,'_hero_style','field_62051d9dc5324'),(65138,39307,'hero_image_pos_x','right'),(65139,39307,'_hero_image_pos_x','field_62ec3d05390bb'),(65140,39307,'hero_image_pos_y','top'),(65141,39307,'_hero_image_pos_y','field_62ec3d05390bc'),(65142,39307,'hero_image_pos',''),(65143,39307,'_hero_image_pos','field_62ec3d05390ba'),(65144,39307,'fft_hide_from_listings','0'),(65145,39307,'_fft_hide_from_listings','field_61f1320446ab2'),(65146,39307,'fft_page_format','default'),(65147,39307,'_fft_page_format','field_61ae213f1f218'),(65148,39307,'fft_hide_nav','0'),(65149,39307,'_fft_hide_nav','field_635bd5e43527c'),(65150,39307,'fft_hide_header_call_to_action','0'),(65151,39307,'_fft_hide_header_call_to_action','field_635bd6723527d'),(65152,39307,'fft_page_sitemap','0'),(65153,39307,'_fft_page_sitemap','field_61af9b34e8181'),(65154,39307,'blocks','a:2:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";}'),(65155,39307,'_blocks','field_6176696113096'),(65156,39307,'blocks_0_acfe_flexible_toggle',''),(65157,39307,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(65158,39307,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(65159,39307,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(65160,39307,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: center;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(65161,39307,'_blocks_0_content','field_6193c9b5eac84'),(65162,39307,'blocks_1_acfe_flexible_toggle',''),(65163,39307,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(65164,39307,'blocks_1_acfe_flexible_layout_title','Logos'),(65165,39307,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(65166,39307,'blocks_1_options_theme','#ffffff'),(65167,39307,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(65168,39307,'blocks_1_options_format','carousel'),(65169,39307,'_blocks_1_options_format','field_61782964ee971'),(65170,39307,'blocks_1_options',''),(65171,39307,'_blocks_1_options','field_61782954ee965'),(65172,39307,'blocks_1_logos','a:11:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39292\";i:3;s:5:\"39293\";i:4;s:5:\"39294\";i:5;s:5:\"39295\";i:6;s:5:\"39296\";i:7;s:5:\"39297\";i:8;s:5:\"39300\";i:9;s:5:\"39304\";i:10;s:5:\"39306\";}'),(65173,39307,'_blocks_1_logos','field_61782954ee96d'),(65174,39307,'blocks_1_title',''),(65175,39307,'_blocks_1_title','field_668fbfdc2daa1'),(65176,39307,'_thumbnail_id',''),(65177,39307,'__thumbnail_id','field_617570855ddaf'),(65227,39308,'hide_hero','0'),(65228,39308,'_hide_hero','field_66a2380fcda39'),(65229,39308,'hero_title','Our Partners'),(65230,39308,'_hero_title','field_617571fe285e8'),(65231,39308,'hero_text',''),(65232,39308,'_hero_text','field_6175723c285e9'),(65233,39308,'hero_actions',''),(65234,39308,'_hero_actions','field_61757270285ea'),(65235,39308,'hero_style','default'),(65236,39308,'_hero_style','field_62051d9dc5324'),(65237,39308,'hero_image_pos_x','right'),(65238,39308,'_hero_image_pos_x','field_62ec3d05390bb'),(65239,39308,'hero_image_pos_y','top'),(65240,39308,'_hero_image_pos_y','field_62ec3d05390bc'),(65241,39308,'hero_image_pos',''),(65242,39308,'_hero_image_pos','field_62ec3d05390ba'),(65243,39308,'fft_hide_from_listings','0'),(65244,39308,'_fft_hide_from_listings','field_61f1320446ab2'),(65245,39308,'fft_page_format','default'),(65246,39308,'_fft_page_format','field_61ae213f1f218'),(65247,39308,'fft_hide_nav','0'),(65248,39308,'_fft_hide_nav','field_635bd5e43527c'),(65249,39308,'fft_hide_header_call_to_action','0'),(65250,39308,'_fft_hide_header_call_to_action','field_635bd6723527d'),(65251,39308,'fft_page_sitemap','0'),(65252,39308,'_fft_page_sitemap','field_61af9b34e8181'),(65253,39308,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";}'),(65254,39308,'_blocks','field_6176696113096'),(65255,39308,'blocks_0_acfe_flexible_toggle',''),(65256,39308,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(65257,39308,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(65258,39308,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(65259,39308,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: center;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(65260,39308,'_blocks_0_content','field_6193c9b5eac84'),(65261,39308,'blocks_1_acfe_flexible_toggle',''),(65262,39308,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(65263,39308,'blocks_1_acfe_flexible_layout_title','Logos'),(65264,39308,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(65265,39308,'blocks_1_options_theme','#ffffff'),(65266,39308,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(65267,39308,'blocks_1_options_format','carousel'),(65268,39308,'_blocks_1_options_format','field_61782964ee971'),(65269,39308,'blocks_1_options',''),(65270,39308,'_blocks_1_options','field_61782954ee965'),(65271,39308,'blocks_1_logos','a:11:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39292\";i:3;s:5:\"39293\";i:4;s:5:\"39294\";i:5;s:5:\"39295\";i:6;s:5:\"39296\";i:7;s:5:\"39297\";i:8;s:5:\"39300\";i:9;s:5:\"39304\";i:10;s:5:\"39306\";}'),(65272,39308,'_blocks_1_logos','field_61782954ee96d'),(65273,39308,'blocks_1_title',''),(65274,39308,'_blocks_1_title','field_668fbfdc2daa1'),(65275,39308,'_thumbnail_id',''),(65276,39308,'__thumbnail_id','field_617570855ddaf'),(65277,39308,'blocks_2_acfe_flexible_toggle',''),(65278,39308,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(65279,39308,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(65280,39308,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(65281,39308,'blocks_2_options_theme','#ffffff'),(65282,39308,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(65283,39308,'blocks_2_options_reverse','0'),(65284,39308,'_blocks_2_options_reverse','field_61768049bb8ac'),(65285,39308,'blocks_2_options',''),(65286,39308,'_blocks_2_options','field_617682517c334'),(65287,39308,'blocks_2_split_5050_image',''),(65288,39308,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(65289,39308,'blocks_2_split_5050_video',''),(65290,39308,'_blocks_2_split_5050_video','field_6239f3160848a'),(65291,39308,'blocks_2_split_5050_content_title',''),(65292,39308,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(65293,39308,'blocks_2_split_5050_content_heading',''),(65294,39308,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(65295,39308,'blocks_2_split_5050_content_text','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.'),(65296,39308,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(65297,39308,'blocks_2_split_5050_content_actions',''),(65298,39308,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(65299,39308,'blocks_2_split_5050_content',''),(65300,39308,'_blocks_2_split_5050_content','field_61767afceb8ba'),(65301,39308,'blocks_3_acfe_flexible_toggle',''),(65302,39308,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(65303,39308,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(65304,39308,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(65305,39308,'blocks_3_options_theme','#ffffff'),(65306,39308,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(65307,39308,'blocks_3_options_reverse','0'),(65308,39308,'_blocks_3_options_reverse','field_61768049bb8ac'),(65309,39308,'blocks_3_options',''),(65310,39308,'_blocks_3_options','field_617682517c334'),(65311,39308,'blocks_3_split_5050_image',''),(65312,39308,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(65313,39308,'blocks_3_split_5050_video',''),(65314,39308,'_blocks_3_split_5050_video','field_6239f3160848a'),(65315,39308,'blocks_3_split_5050_content_title',''),(65316,39308,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(65317,39308,'blocks_3_split_5050_content_heading',''),(65318,39308,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(65319,39308,'blocks_3_split_5050_content_text','Get in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151 </a>'),(65320,39308,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(65321,39308,'blocks_3_split_5050_content_actions',''),(65322,39308,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(65323,39308,'blocks_3_split_5050_content',''),(65324,39308,'_blocks_3_split_5050_content','field_61767afceb8ba'),(65326,39309,'hide_hero','0'),(65327,39309,'_hide_hero','field_66a2380fcda39'),(65328,39309,'hero_title','Our Partners'),(65329,39309,'_hero_title','field_617571fe285e8'),(65330,39309,'hero_text',''),(65331,39309,'_hero_text','field_6175723c285e9'),(65332,39309,'hero_actions',''),(65333,39309,'_hero_actions','field_61757270285ea'),(65334,39309,'hero_style','default'),(65335,39309,'_hero_style','field_62051d9dc5324'),(65336,39309,'hero_image_pos_x','right'),(65337,39309,'_hero_image_pos_x','field_62ec3d05390bb'),(65338,39309,'hero_image_pos_y','top'),(65339,39309,'_hero_image_pos_y','field_62ec3d05390bc'),(65340,39309,'hero_image_pos',''),(65341,39309,'_hero_image_pos','field_62ec3d05390ba'),(65342,39309,'fft_hide_from_listings','0'),(65343,39309,'_fft_hide_from_listings','field_61f1320446ab2'),(65344,39309,'fft_page_format','default'),(65345,39309,'_fft_page_format','field_61ae213f1f218'),(65346,39309,'fft_hide_nav','0'),(65347,39309,'_fft_hide_nav','field_635bd5e43527c'),(65348,39309,'fft_hide_header_call_to_action','0'),(65349,39309,'_fft_hide_header_call_to_action','field_635bd6723527d'),(65350,39309,'fft_page_sitemap','0'),(65351,39309,'_fft_page_sitemap','field_61af9b34e8181'),(65352,39309,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";}'),(65353,39309,'_blocks','field_6176696113096'),(65354,39309,'blocks_0_acfe_flexible_toggle',''),(65355,39309,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(65356,39309,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(65357,39309,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(65358,39309,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: center;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(65359,39309,'_blocks_0_content','field_6193c9b5eac84'),(65360,39309,'blocks_1_acfe_flexible_toggle',''),(65361,39309,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(65362,39309,'blocks_1_acfe_flexible_layout_title','Logos'),(65363,39309,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(65364,39309,'blocks_1_options_theme','#ffffff'),(65365,39309,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(65366,39309,'blocks_1_options_format','carousel'),(65367,39309,'_blocks_1_options_format','field_61782964ee971'),(65368,39309,'blocks_1_options',''),(65369,39309,'_blocks_1_options','field_61782954ee965'),(65370,39309,'blocks_1_logos','a:11:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39292\";i:3;s:5:\"39293\";i:4;s:5:\"39294\";i:5;s:5:\"39295\";i:6;s:5:\"39296\";i:7;s:5:\"39297\";i:8;s:5:\"39300\";i:9;s:5:\"39304\";i:10;s:5:\"39306\";}'),(65371,39309,'_blocks_1_logos','field_61782954ee96d'),(65372,39309,'blocks_1_title',''),(65373,39309,'_blocks_1_title','field_668fbfdc2daa1'),(65374,39309,'blocks_2_acfe_flexible_toggle',''),(65375,39309,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(65376,39309,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(65377,39309,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(65378,39309,'blocks_2_options_theme','#ffffff'),(65379,39309,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(65380,39309,'blocks_2_options_reverse','0'),(65381,39309,'_blocks_2_options_reverse','field_61768049bb8ac'),(65382,39309,'blocks_2_options',''),(65383,39309,'_blocks_2_options','field_617682517c334'),(65384,39309,'blocks_2_split_5050_image',''),(65385,39309,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(65386,39309,'blocks_2_split_5050_video',''),(65387,39309,'_blocks_2_split_5050_video','field_6239f3160848a'),(65388,39309,'blocks_2_split_5050_content_title',''),(65389,39309,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(65390,39309,'blocks_2_split_5050_content_heading',''),(65391,39309,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(65392,39309,'blocks_2_split_5050_content_text','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.'),(65393,39309,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(65394,39309,'blocks_2_split_5050_content_actions',''),(65395,39309,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(65396,39309,'blocks_2_split_5050_content',''),(65397,39309,'_blocks_2_split_5050_content','field_61767afceb8ba'),(65398,39309,'blocks_3_acfe_flexible_toggle',''),(65399,39309,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(65400,39309,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(65401,39309,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(65402,39309,'blocks_3_options_theme','#ffffff'),(65403,39309,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(65404,39309,'blocks_3_options_reverse','0'),(65405,39309,'_blocks_3_options_reverse','field_61768049bb8ac'),(65406,39309,'blocks_3_options',''),(65407,39309,'_blocks_3_options','field_617682517c334'),(65408,39309,'blocks_3_split_5050_image',''),(65409,39309,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(65410,39309,'blocks_3_split_5050_video',''),(65411,39309,'_blocks_3_split_5050_video','field_6239f3160848a'),(65412,39309,'blocks_3_split_5050_content_title',''),(65413,39309,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(65414,39309,'blocks_3_split_5050_content_heading','Get in Touch'),(65415,39309,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(65416,39309,'blocks_3_split_5050_content_text','Get in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151 </a>'),(65417,39309,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(65418,39309,'blocks_3_split_5050_content_actions',''),(65419,39309,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(65420,39309,'blocks_3_split_5050_content',''),(65421,39309,'_blocks_3_split_5050_content','field_61767afceb8ba'),(65422,39309,'_thumbnail_id',''),(65423,39309,'__thumbnail_id','field_617570855ddaf'),(65443,39310,'hide_hero','0'),(65444,39310,'_hide_hero','field_66a2380fcda39'),(65445,39310,'hero_title','Our Partners'),(65446,39310,'_hero_title','field_617571fe285e8'),(65447,39310,'hero_text',''),(65448,39310,'_hero_text','field_6175723c285e9'),(65449,39310,'hero_actions',''),(65450,39310,'_hero_actions','field_61757270285ea'),(65451,39310,'hero_style','default'),(65452,39310,'_hero_style','field_62051d9dc5324'),(65453,39310,'hero_image_pos_x','right'),(65454,39310,'_hero_image_pos_x','field_62ec3d05390bb'),(65455,39310,'hero_image_pos_y','top'),(65456,39310,'_hero_image_pos_y','field_62ec3d05390bc'),(65457,39310,'hero_image_pos',''),(65458,39310,'_hero_image_pos','field_62ec3d05390ba'),(65459,39310,'fft_hide_from_listings','0'),(65460,39310,'_fft_hide_from_listings','field_61f1320446ab2'),(65461,39310,'fft_page_format','default'),(65462,39310,'_fft_page_format','field_61ae213f1f218'),(65463,39310,'fft_hide_nav','0'),(65464,39310,'_fft_hide_nav','field_635bd5e43527c'),(65465,39310,'fft_hide_header_call_to_action','0'),(65466,39310,'_fft_hide_header_call_to_action','field_635bd6723527d'),(65467,39310,'fft_page_sitemap','0'),(65468,39310,'_fft_page_sitemap','field_61af9b34e8181'),(65469,39310,'blocks','a:5:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(65470,39310,'_blocks','field_6176696113096'),(65471,39310,'blocks_0_acfe_flexible_toggle',''),(65472,39310,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(65473,39310,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(65474,39310,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(65475,39310,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: center;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(65476,39310,'_blocks_0_content','field_6193c9b5eac84'),(65477,39310,'blocks_1_acfe_flexible_toggle',''),(65478,39310,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(65479,39310,'blocks_1_acfe_flexible_layout_title','Logos'),(65480,39310,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(65481,39310,'blocks_1_options_theme','#ffffff'),(65482,39310,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(65483,39310,'blocks_1_options_format','carousel'),(65484,39310,'_blocks_1_options_format','field_61782964ee971'),(65485,39310,'blocks_1_options',''),(65486,39310,'_blocks_1_options','field_61782954ee965'),(65487,39310,'blocks_1_logos','a:11:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39292\";i:3;s:5:\"39293\";i:4;s:5:\"39294\";i:5;s:5:\"39295\";i:6;s:5:\"39296\";i:7;s:5:\"39297\";i:8;s:5:\"39300\";i:9;s:5:\"39304\";i:10;s:5:\"39306\";}'),(65488,39310,'_blocks_1_logos','field_61782954ee96d'),(65489,39310,'blocks_1_title',''),(65490,39310,'_blocks_1_title','field_668fbfdc2daa1'),(65491,39310,'blocks_2_acfe_flexible_toggle',''),(65492,39310,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(65493,39310,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(65494,39310,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(65495,39310,'blocks_2_options_theme','#ffffff'),(65496,39310,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(65497,39310,'blocks_2_options_reverse','0'),(65498,39310,'_blocks_2_options_reverse','field_61768049bb8ac'),(65499,39310,'blocks_2_options',''),(65500,39310,'_blocks_2_options','field_617682517c334'),(65501,39310,'blocks_2_split_5050_image',''),(65502,39310,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(65503,39310,'blocks_2_split_5050_video',''),(65504,39310,'_blocks_2_split_5050_video','field_6239f3160848a'),(65505,39310,'blocks_2_split_5050_content_title',''),(65506,39310,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(65507,39310,'blocks_2_split_5050_content_heading',''),(65508,39310,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(65509,39310,'blocks_2_split_5050_content_text','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.'),(65510,39310,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(65511,39310,'blocks_2_split_5050_content_actions',''),(65512,39310,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(65513,39310,'blocks_2_split_5050_content',''),(65514,39310,'_blocks_2_split_5050_content','field_61767afceb8ba'),(65515,39310,'blocks_3_acfe_flexible_toggle',''),(65516,39310,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(65517,39310,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(65518,39310,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(65519,39310,'blocks_3_options_theme','#ffffff'),(65520,39310,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(65521,39310,'blocks_3_options_reverse','0'),(65522,39310,'_blocks_3_options_reverse','field_61768049bb8ac'),(65523,39310,'blocks_3_options',''),(65524,39310,'_blocks_3_options','field_617682517c334'),(65525,39310,'blocks_3_split_5050_image',''),(65526,39310,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(65527,39310,'blocks_3_split_5050_video',''),(65528,39310,'_blocks_3_split_5050_video','field_6239f3160848a'),(65529,39310,'blocks_3_split_5050_content_title',''),(65530,39310,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(65531,39310,'blocks_3_split_5050_content_heading','Get in Touch'),(65532,39310,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(65533,39310,'blocks_3_split_5050_content_text','Get in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151 </a>'),(65534,39310,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(65535,39310,'blocks_3_split_5050_content_actions',''),(65536,39310,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(65537,39310,'blocks_3_split_5050_content',''),(65538,39310,'_blocks_3_split_5050_content','field_61767afceb8ba'),(65539,39310,'_thumbnail_id',''),(65540,39310,'__thumbnail_id','field_617570855ddaf'),(65541,39310,'blocks_4_acfe_flexible_toggle',''),(65542,39310,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(65543,39310,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(65544,39310,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(65545,39310,'blocks_4_testimonial_slider_content_title',''),(65546,39310,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(65547,39310,'blocks_4_testimonial_slider_content_heading','Testimonials'),(65548,39310,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(65549,39310,'blocks_4_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(65550,39310,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(65551,39310,'blocks_4_testimonial_slider_content_actions',''),(65552,39310,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(65553,39310,'blocks_4_testimonial_slider_content',''),(65554,39310,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(65555,39310,'blocks_4_testimonial_slider_items','a:6:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"38962\";i:5;s:5:\"39169\";}'),(65556,39310,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(65557,39310,'blocks_4_testimonial_slider_ambassador_bool','0'),(65558,39310,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(65560,39311,'hide_hero','0'),(65561,39311,'_hide_hero','field_66a2380fcda39'),(65562,39311,'hero_title','Our Partners'),(65563,39311,'_hero_title','field_617571fe285e8'),(65564,39311,'hero_text',''),(65565,39311,'_hero_text','field_6175723c285e9'),(65566,39311,'hero_actions',''),(65567,39311,'_hero_actions','field_61757270285ea'),(65568,39311,'hero_style','default'),(65569,39311,'_hero_style','field_62051d9dc5324'),(65570,39311,'hero_image_pos_x','right'),(65571,39311,'_hero_image_pos_x','field_62ec3d05390bb'),(65572,39311,'hero_image_pos_y','top'),(65573,39311,'_hero_image_pos_y','field_62ec3d05390bc'),(65574,39311,'hero_image_pos',''),(65575,39311,'_hero_image_pos','field_62ec3d05390ba'),(65576,39311,'fft_hide_from_listings','0'),(65577,39311,'_fft_hide_from_listings','field_61f1320446ab2'),(65578,39311,'fft_page_format','default'),(65579,39311,'_fft_page_format','field_61ae213f1f218'),(65580,39311,'fft_hide_nav','0'),(65581,39311,'_fft_hide_nav','field_635bd5e43527c'),(65582,39311,'fft_hide_header_call_to_action','0'),(65583,39311,'_fft_hide_header_call_to_action','field_635bd6723527d'),(65584,39311,'fft_page_sitemap','0'),(65585,39311,'_fft_page_sitemap','field_61af9b34e8181'),(65586,39311,'blocks','a:5:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(65587,39311,'_blocks','field_6176696113096'),(65588,39311,'blocks_0_acfe_flexible_toggle',''),(65589,39311,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(65590,39311,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(65591,39311,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(65592,39311,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: center;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(65593,39311,'_blocks_0_content','field_6193c9b5eac84'),(65594,39311,'blocks_1_acfe_flexible_toggle',''),(65595,39311,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(65596,39311,'blocks_1_acfe_flexible_layout_title','Logos'),(65597,39311,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(65598,39311,'blocks_1_options_theme','#ffffff'),(65599,39311,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(65600,39311,'blocks_1_options_format','carousel'),(65601,39311,'_blocks_1_options_format','field_61782964ee971'),(65602,39311,'blocks_1_options',''),(65603,39311,'_blocks_1_options','field_61782954ee965'),(65604,39311,'blocks_1_logos','a:11:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39292\";i:3;s:5:\"39293\";i:4;s:5:\"39294\";i:5;s:5:\"39295\";i:6;s:5:\"39296\";i:7;s:5:\"39297\";i:8;s:5:\"39300\";i:9;s:5:\"39304\";i:10;s:5:\"39306\";}'),(65605,39311,'_blocks_1_logos','field_61782954ee96d'),(65606,39311,'blocks_1_title',''),(65607,39311,'_blocks_1_title','field_668fbfdc2daa1'),(65608,39311,'blocks_2_acfe_flexible_toggle',''),(65609,39311,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(65610,39311,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(65611,39311,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(65612,39311,'blocks_2_options_theme','#ffffff'),(65613,39311,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(65614,39311,'blocks_2_options_reverse','1'),(65615,39311,'_blocks_2_options_reverse','field_61768049bb8ac'),(65616,39311,'blocks_2_options',''),(65617,39311,'_blocks_2_options','field_617682517c334'),(65618,39311,'blocks_2_split_5050_image',''),(65619,39311,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(65620,39311,'blocks_2_split_5050_video',''),(65621,39311,'_blocks_2_split_5050_video','field_6239f3160848a'),(65622,39311,'blocks_2_split_5050_content_title',''),(65623,39311,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(65624,39311,'blocks_2_split_5050_content_heading',''),(65625,39311,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(65626,39311,'blocks_2_split_5050_content_text','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.'),(65627,39311,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(65628,39311,'blocks_2_split_5050_content_actions',''),(65629,39311,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(65630,39311,'blocks_2_split_5050_content',''),(65631,39311,'_blocks_2_split_5050_content','field_61767afceb8ba'),(65632,39311,'blocks_3_acfe_flexible_toggle',''),(65633,39311,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(65634,39311,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(65635,39311,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(65636,39311,'blocks_3_options_theme','#ffffff'),(65637,39311,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(65638,39311,'blocks_3_options_reverse','1'),(65639,39311,'_blocks_3_options_reverse','field_61768049bb8ac'),(65640,39311,'blocks_3_options',''),(65641,39311,'_blocks_3_options','field_617682517c334'),(65642,39311,'blocks_3_split_5050_image',''),(65643,39311,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(65644,39311,'blocks_3_split_5050_video',''),(65645,39311,'_blocks_3_split_5050_video','field_6239f3160848a'),(65646,39311,'blocks_3_split_5050_content_title',''),(65647,39311,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(65648,39311,'blocks_3_split_5050_content_heading','Get in Touch'),(65649,39311,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(65650,39311,'blocks_3_split_5050_content_text','Get in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151 </a>'),(65651,39311,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(65652,39311,'blocks_3_split_5050_content_actions',''),(65653,39311,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(65654,39311,'blocks_3_split_5050_content',''),(65655,39311,'_blocks_3_split_5050_content','field_61767afceb8ba'),(65656,39311,'blocks_4_acfe_flexible_toggle',''),(65657,39311,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(65658,39311,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(65659,39311,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(65660,39311,'blocks_4_testimonial_slider_content_title',''),(65661,39311,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(65662,39311,'blocks_4_testimonial_slider_content_heading','Testimonials'),(65663,39311,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(65664,39311,'blocks_4_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(65665,39311,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(65666,39311,'blocks_4_testimonial_slider_content_actions',''),(65667,39311,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(65668,39311,'blocks_4_testimonial_slider_content',''),(65669,39311,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(65670,39311,'blocks_4_testimonial_slider_items','a:6:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"38962\";i:5;s:5:\"39169\";}'),(65671,39311,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(65672,39311,'blocks_4_testimonial_slider_ambassador_bool','0'),(65673,39311,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(65674,39311,'_thumbnail_id',''),(65675,39311,'__thumbnail_id','field_617570855ddaf'),(65676,39284,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(65677,39284,'_hero_actions_0_button','field_61757281285eb'),(65679,39312,'hide_hero','0'),(65680,39312,'_hide_hero','field_66a2380fcda39'),(65681,39312,'hero_title','Our Partners'),(65682,39312,'_hero_title','field_617571fe285e8'),(65683,39312,'hero_text','Discover our partners'),(65684,39312,'_hero_text','field_6175723c285e9'),(65685,39312,'hero_actions','1'),(65686,39312,'_hero_actions','field_61757270285ea'),(65687,39312,'hero_style','default'),(65688,39312,'_hero_style','field_62051d9dc5324'),(65689,39312,'hero_image_pos_x','right'),(65690,39312,'_hero_image_pos_x','field_62ec3d05390bb'),(65691,39312,'hero_image_pos_y','top'),(65692,39312,'_hero_image_pos_y','field_62ec3d05390bc'),(65693,39312,'hero_image_pos',''),(65694,39312,'_hero_image_pos','field_62ec3d05390ba'),(65695,39312,'fft_hide_from_listings','0'),(65696,39312,'_fft_hide_from_listings','field_61f1320446ab2'),(65697,39312,'fft_page_format','default'),(65698,39312,'_fft_page_format','field_61ae213f1f218'),(65699,39312,'fft_hide_nav','0'),(65700,39312,'_fft_hide_nav','field_635bd5e43527c'),(65701,39312,'fft_hide_header_call_to_action','0'),(65702,39312,'_fft_hide_header_call_to_action','field_635bd6723527d'),(65703,39312,'fft_page_sitemap','0'),(65704,39312,'_fft_page_sitemap','field_61af9b34e8181'),(65705,39312,'blocks','a:5:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(65706,39312,'_blocks','field_6176696113096'),(65707,39312,'blocks_0_acfe_flexible_toggle',''),(65708,39312,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(65709,39312,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(65710,39312,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(65711,39312,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: center;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(65712,39312,'_blocks_0_content','field_6193c9b5eac84'),(65713,39312,'blocks_1_acfe_flexible_toggle',''),(65714,39312,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(65715,39312,'blocks_1_acfe_flexible_layout_title','Logos'),(65716,39312,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(65717,39312,'blocks_1_options_theme','#ffffff'),(65718,39312,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(65719,39312,'blocks_1_options_format','carousel'),(65720,39312,'_blocks_1_options_format','field_61782964ee971'),(65721,39312,'blocks_1_options',''),(65722,39312,'_blocks_1_options','field_61782954ee965'),(65723,39312,'blocks_1_logos','a:11:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39292\";i:3;s:5:\"39293\";i:4;s:5:\"39294\";i:5;s:5:\"39295\";i:6;s:5:\"39296\";i:7;s:5:\"39297\";i:8;s:5:\"39300\";i:9;s:5:\"39304\";i:10;s:5:\"39306\";}'),(65724,39312,'_blocks_1_logos','field_61782954ee96d'),(65725,39312,'blocks_1_title',''),(65726,39312,'_blocks_1_title','field_668fbfdc2daa1'),(65727,39312,'blocks_2_acfe_flexible_toggle',''),(65728,39312,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(65729,39312,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(65730,39312,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(65731,39312,'blocks_2_options_theme','#ffffff'),(65732,39312,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(65733,39312,'blocks_2_options_reverse','1'),(65734,39312,'_blocks_2_options_reverse','field_61768049bb8ac'),(65735,39312,'blocks_2_options',''),(65736,39312,'_blocks_2_options','field_617682517c334'),(65737,39312,'blocks_2_split_5050_image',''),(65738,39312,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(65739,39312,'blocks_2_split_5050_video',''),(65740,39312,'_blocks_2_split_5050_video','field_6239f3160848a'),(65741,39312,'blocks_2_split_5050_content_title',''),(65742,39312,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(65743,39312,'blocks_2_split_5050_content_heading',''),(65744,39312,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(65745,39312,'blocks_2_split_5050_content_text','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.'),(65746,39312,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(65747,39312,'blocks_2_split_5050_content_actions',''),(65748,39312,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(65749,39312,'blocks_2_split_5050_content',''),(65750,39312,'_blocks_2_split_5050_content','field_61767afceb8ba'),(65751,39312,'blocks_3_acfe_flexible_toggle',''),(65752,39312,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(65753,39312,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(65754,39312,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(65755,39312,'blocks_3_options_theme','#ffffff'),(65756,39312,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(65757,39312,'blocks_3_options_reverse','1'),(65758,39312,'_blocks_3_options_reverse','field_61768049bb8ac'),(65759,39312,'blocks_3_options',''),(65760,39312,'_blocks_3_options','field_617682517c334'),(65761,39312,'blocks_3_split_5050_image',''),(65762,39312,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(65763,39312,'blocks_3_split_5050_video',''),(65764,39312,'_blocks_3_split_5050_video','field_6239f3160848a'),(65765,39312,'blocks_3_split_5050_content_title',''),(65766,39312,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(65767,39312,'blocks_3_split_5050_content_heading','Get in Touch'),(65768,39312,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(65769,39312,'blocks_3_split_5050_content_text','Get in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151 </a>'),(65770,39312,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(65771,39312,'blocks_3_split_5050_content_actions',''),(65772,39312,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(65773,39312,'blocks_3_split_5050_content',''),(65774,39312,'_blocks_3_split_5050_content','field_61767afceb8ba'),(65775,39312,'blocks_4_acfe_flexible_toggle',''),(65776,39312,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(65777,39312,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(65778,39312,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(65779,39312,'blocks_4_testimonial_slider_content_title',''),(65780,39312,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(65781,39312,'blocks_4_testimonial_slider_content_heading','Testimonials'),(65782,39312,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(65783,39312,'blocks_4_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(65784,39312,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(65785,39312,'blocks_4_testimonial_slider_content_actions',''),(65786,39312,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(65787,39312,'blocks_4_testimonial_slider_content',''),(65788,39312,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(65789,39312,'blocks_4_testimonial_slider_items','a:6:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"38962\";i:5;s:5:\"39169\";}'),(65790,39312,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(65791,39312,'blocks_4_testimonial_slider_ambassador_bool','0'),(65792,39312,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(65793,39312,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-4\";s:6:\"target\";s:0:\"\";}'),(65794,39312,'_hero_actions_0_button','field_61757281285eb'),(65795,39312,'_thumbnail_id',''),(65796,39312,'__thumbnail_id','field_617570855ddaf'),(65798,39313,'hide_hero','0'),(65799,39313,'_hide_hero','field_66a2380fcda39'),(65800,39313,'hero_title','Our Partners'),(65801,39313,'_hero_title','field_617571fe285e8'),(65802,39313,'hero_text','Discover our partners'),(65803,39313,'_hero_text','field_6175723c285e9'),(65804,39313,'hero_actions','1'),(65805,39313,'_hero_actions','field_61757270285ea'),(65806,39313,'hero_style','default'),(65807,39313,'_hero_style','field_62051d9dc5324'),(65808,39313,'hero_image_pos_x','right'),(65809,39313,'_hero_image_pos_x','field_62ec3d05390bb'),(65810,39313,'hero_image_pos_y','top'),(65811,39313,'_hero_image_pos_y','field_62ec3d05390bc'),(65812,39313,'hero_image_pos',''),(65813,39313,'_hero_image_pos','field_62ec3d05390ba'),(65814,39313,'fft_hide_from_listings','0'),(65815,39313,'_fft_hide_from_listings','field_61f1320446ab2'),(65816,39313,'fft_page_format','default'),(65817,39313,'_fft_page_format','field_61ae213f1f218'),(65818,39313,'fft_hide_nav','0'),(65819,39313,'_fft_hide_nav','field_635bd5e43527c'),(65820,39313,'fft_hide_header_call_to_action','0'),(65821,39313,'_fft_hide_header_call_to_action','field_635bd6723527d'),(65822,39313,'fft_page_sitemap','0'),(65823,39313,'_fft_page_sitemap','field_61af9b34e8181'),(65824,39313,'blocks','a:5:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(65825,39313,'_blocks','field_6176696113096'),(65826,39313,'blocks_0_acfe_flexible_toggle',''),(65827,39313,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(65828,39313,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(65829,39313,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(65830,39313,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: center;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(65831,39313,'_blocks_0_content','field_6193c9b5eac84'),(65832,39313,'blocks_1_acfe_flexible_toggle',''),(65833,39313,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(65834,39313,'blocks_1_acfe_flexible_layout_title','Logos'),(65835,39313,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(65836,39313,'blocks_1_options_theme','#ffffff'),(65837,39313,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(65838,39313,'blocks_1_options_format','carousel'),(65839,39313,'_blocks_1_options_format','field_61782964ee971'),(65840,39313,'blocks_1_options',''),(65841,39313,'_blocks_1_options','field_61782954ee965'),(65842,39313,'blocks_1_logos','a:11:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39292\";i:3;s:5:\"39293\";i:4;s:5:\"39294\";i:5;s:5:\"39295\";i:6;s:5:\"39296\";i:7;s:5:\"39297\";i:8;s:5:\"39300\";i:9;s:5:\"39304\";i:10;s:5:\"39306\";}'),(65843,39313,'_blocks_1_logos','field_61782954ee96d'),(65844,39313,'blocks_1_title',''),(65845,39313,'_blocks_1_title','field_668fbfdc2daa1'),(65846,39313,'blocks_2_acfe_flexible_toggle',''),(65847,39313,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(65848,39313,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(65849,39313,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(65850,39313,'blocks_2_options_theme','#ffffff'),(65851,39313,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(65852,39313,'blocks_2_options_reverse','1'),(65853,39313,'_blocks_2_options_reverse','field_61768049bb8ac'),(65854,39313,'blocks_2_options',''),(65855,39313,'_blocks_2_options','field_617682517c334'),(65856,39313,'blocks_2_split_5050_image',''),(65857,39313,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(65858,39313,'blocks_2_split_5050_video',''),(65859,39313,'_blocks_2_split_5050_video','field_6239f3160848a'),(65860,39313,'blocks_2_split_5050_content_title',''),(65861,39313,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(65862,39313,'blocks_2_split_5050_content_heading',''),(65863,39313,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(65864,39313,'blocks_2_split_5050_content_text','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(65865,39313,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(65866,39313,'blocks_2_split_5050_content_actions',''),(65867,39313,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(65868,39313,'blocks_2_split_5050_content',''),(65869,39313,'_blocks_2_split_5050_content','field_61767afceb8ba'),(65870,39313,'blocks_3_acfe_flexible_toggle',''),(65871,39313,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(65872,39313,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(65873,39313,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(65874,39313,'blocks_3_options_theme','#ffffff'),(65875,39313,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(65876,39313,'blocks_3_options_reverse','1'),(65877,39313,'_blocks_3_options_reverse','field_61768049bb8ac'),(65878,39313,'blocks_3_options',''),(65879,39313,'_blocks_3_options','field_617682517c334'),(65880,39313,'blocks_3_split_5050_image',''),(65881,39313,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(65882,39313,'blocks_3_split_5050_video',''),(65883,39313,'_blocks_3_split_5050_video','field_6239f3160848a'),(65884,39313,'blocks_3_split_5050_content_title',''),(65885,39313,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(65886,39313,'blocks_3_split_5050_content_heading','Get in Touch'),(65887,39313,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(65888,39313,'blocks_3_split_5050_content_text','Get in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151 </a>'),(65889,39313,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(65890,39313,'blocks_3_split_5050_content_actions',''),(65891,39313,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(65892,39313,'blocks_3_split_5050_content',''),(65893,39313,'_blocks_3_split_5050_content','field_61767afceb8ba'),(65894,39313,'blocks_4_acfe_flexible_toggle',''),(65895,39313,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(65896,39313,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(65897,39313,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(65898,39313,'blocks_4_testimonial_slider_content_title',''),(65899,39313,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(65900,39313,'blocks_4_testimonial_slider_content_heading','Testimonials'),(65901,39313,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(65902,39313,'blocks_4_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(65903,39313,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(65904,39313,'blocks_4_testimonial_slider_content_actions',''),(65905,39313,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(65906,39313,'blocks_4_testimonial_slider_content',''),(65907,39313,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(65908,39313,'blocks_4_testimonial_slider_items','a:6:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"38962\";i:5;s:5:\"39169\";}'),(65909,39313,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(65910,39313,'blocks_4_testimonial_slider_ambassador_bool','0'),(65911,39313,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(65912,39313,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-4\";s:6:\"target\";s:0:\"\";}'),(65913,39313,'_hero_actions_0_button','field_61757281285eb'),(65914,39313,'_thumbnail_id',''),(65915,39313,'__thumbnail_id','field_617570855ddaf'),(65941,39314,'hide_hero','0'),(65942,39314,'_hide_hero','field_66a2380fcda39'),(65943,39314,'hero_title','Our Partners'),(65944,39314,'_hero_title','field_617571fe285e8'),(65945,39314,'hero_text','Discover our partners'),(65946,39314,'_hero_text','field_6175723c285e9'),(65947,39314,'hero_actions','1'),(65948,39314,'_hero_actions','field_61757270285ea'),(65949,39314,'hero_style','default'),(65950,39314,'_hero_style','field_62051d9dc5324'),(65951,39314,'hero_image_pos_x','right'),(65952,39314,'_hero_image_pos_x','field_62ec3d05390bb'),(65953,39314,'hero_image_pos_y','top'),(65954,39314,'_hero_image_pos_y','field_62ec3d05390bc'),(65955,39314,'hero_image_pos',''),(65956,39314,'_hero_image_pos','field_62ec3d05390ba'),(65957,39314,'fft_hide_from_listings','0'),(65958,39314,'_fft_hide_from_listings','field_61f1320446ab2'),(65959,39314,'fft_page_format','default'),(65960,39314,'_fft_page_format','field_61ae213f1f218'),(65961,39314,'fft_hide_nav','0'),(65962,39314,'_fft_hide_nav','field_635bd5e43527c'),(65963,39314,'fft_hide_header_call_to_action','0'),(65964,39314,'_fft_hide_header_call_to_action','field_635bd6723527d'),(65965,39314,'fft_page_sitemap','0'),(65966,39314,'_fft_page_sitemap','field_61af9b34e8181'),(65967,39314,'blocks','a:6:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:18:\"testimonial_slider\";}'),(65968,39314,'_blocks','field_6176696113096'),(65969,39314,'blocks_0_acfe_flexible_toggle',''),(65970,39314,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(65971,39314,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(65972,39314,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(65973,39314,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: center;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(65974,39314,'_blocks_0_content','field_6193c9b5eac84'),(65975,39314,'blocks_1_acfe_flexible_toggle',''),(65976,39314,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(65977,39314,'blocks_1_acfe_flexible_layout_title','Logos'),(65978,39314,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(65979,39314,'blocks_1_options_theme','#ffffff'),(65980,39314,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(65981,39314,'blocks_1_options_format','carousel'),(65982,39314,'_blocks_1_options_format','field_61782964ee971'),(65983,39314,'blocks_1_options',''),(65984,39314,'_blocks_1_options','field_61782954ee965'),(65985,39314,'blocks_1_logos','a:11:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39292\";i:3;s:5:\"39293\";i:4;s:5:\"39294\";i:5;s:5:\"39295\";i:6;s:5:\"39296\";i:7;s:5:\"39297\";i:8;s:5:\"39300\";i:9;s:5:\"39304\";i:10;s:5:\"39306\";}'),(65986,39314,'_blocks_1_logos','field_61782954ee96d'),(65987,39314,'blocks_1_title',''),(65988,39314,'_blocks_1_title','field_668fbfdc2daa1'),(65989,39314,'blocks_2_acfe_flexible_toggle',''),(65990,39314,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(65991,39314,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(65992,39314,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(65993,39314,'blocks_2_options_theme','#ffffff'),(65994,39314,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(65995,39314,'blocks_2_options_reverse','1'),(65996,39314,'_blocks_2_options_reverse','field_61768049bb8ac'),(65997,39314,'blocks_2_options',''),(65998,39314,'_blocks_2_options','field_617682517c334'),(65999,39314,'blocks_2_split_5050_image',''),(66000,39314,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(66001,39314,'blocks_2_split_5050_video',''),(66002,39314,'_blocks_2_split_5050_video','field_6239f3160848a'),(66003,39314,'blocks_2_split_5050_content_title',''),(66004,39314,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(66005,39314,'blocks_2_split_5050_content_heading',''),(66006,39314,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(66007,39314,'blocks_2_split_5050_content_text','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(66008,39314,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(66009,39314,'blocks_2_split_5050_content_actions',''),(66010,39314,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(66011,39314,'blocks_2_split_5050_content',''),(66012,39314,'_blocks_2_split_5050_content','field_61767afceb8ba'),(66013,39314,'blocks_3_acfe_flexible_toggle',''),(66014,39314,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(66015,39314,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(66016,39314,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(66017,39314,'blocks_3_options_theme','#ffffff'),(66018,39314,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(66019,39314,'blocks_3_options_reverse','1'),(66020,39314,'_blocks_3_options_reverse','field_61768049bb8ac'),(66021,39314,'blocks_3_options',''),(66022,39314,'_blocks_3_options','field_617682517c334'),(66023,39314,'blocks_3_split_5050_image',''),(66024,39314,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(66025,39314,'blocks_3_split_5050_video',''),(66026,39314,'_blocks_3_split_5050_video','field_6239f3160848a'),(66027,39314,'blocks_3_split_5050_content_title',''),(66028,39314,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(66029,39314,'blocks_3_split_5050_content_heading','Get in Touch'),(66030,39314,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(66031,39314,'blocks_3_split_5050_content_text','Get in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151 </a>'),(66032,39314,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(66033,39314,'blocks_3_split_5050_content_actions',''),(66034,39314,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(66035,39314,'blocks_3_split_5050_content',''),(66036,39314,'_blocks_3_split_5050_content','field_61767afceb8ba'),(66037,39314,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-4\";s:6:\"target\";s:0:\"\";}'),(66038,39314,'_hero_actions_0_button','field_61757281285eb'),(66039,39314,'_thumbnail_id',''),(66040,39314,'__thumbnail_id','field_617570855ddaf'),(66041,39314,'blocks_4_acfe_flexible_toggle',''),(66042,39314,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(66043,39314,'blocks_4_acfe_flexible_layout_title','Standard/Editorial Content'),(66044,39314,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(66045,39314,'blocks_4_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(66046,39314,'_blocks_4_content','field_6193c9b5eac84'),(66047,39314,'blocks_5_acfe_flexible_toggle',''),(66048,39314,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(66049,39314,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(66050,39314,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(66051,39314,'blocks_5_testimonial_slider_content_title',''),(66052,39314,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(66053,39314,'blocks_5_testimonial_slider_content_heading','Testimonials'),(66054,39314,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(66055,39314,'blocks_5_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(66056,39314,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(66057,39314,'blocks_5_testimonial_slider_content_actions',''),(66058,39314,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(66059,39314,'blocks_5_testimonial_slider_content',''),(66060,39314,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(66061,39314,'blocks_5_testimonial_slider_items','a:6:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"38962\";i:5;s:5:\"39169\";}'),(66062,39314,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(66063,39314,'blocks_5_testimonial_slider_ambassador_bool','0'),(66064,39314,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(66090,39315,'hide_hero','0'),(66091,39315,'_hide_hero','field_66a2380fcda39'),(66092,39315,'hero_title','Our Partners'),(66093,39315,'_hero_title','field_617571fe285e8'),(66094,39315,'hero_text','Discover our partners'),(66095,39315,'_hero_text','field_6175723c285e9'),(66096,39315,'hero_actions','1'),(66097,39315,'_hero_actions','field_61757270285ea'),(66098,39315,'hero_style','default'),(66099,39315,'_hero_style','field_62051d9dc5324'),(66100,39315,'hero_image_pos_x','right'),(66101,39315,'_hero_image_pos_x','field_62ec3d05390bb'),(66102,39315,'hero_image_pos_y','top'),(66103,39315,'_hero_image_pos_y','field_62ec3d05390bc'),(66104,39315,'hero_image_pos',''),(66105,39315,'_hero_image_pos','field_62ec3d05390ba'),(66106,39315,'fft_hide_from_listings','0'),(66107,39315,'_fft_hide_from_listings','field_61f1320446ab2'),(66108,39315,'fft_page_format','default'),(66109,39315,'_fft_page_format','field_61ae213f1f218'),(66110,39315,'fft_hide_nav','0'),(66111,39315,'_fft_hide_nav','field_635bd5e43527c'),(66112,39315,'fft_hide_header_call_to_action','0'),(66113,39315,'_fft_hide_header_call_to_action','field_635bd6723527d'),(66114,39315,'fft_page_sitemap','0'),(66115,39315,'_fft_page_sitemap','field_61af9b34e8181'),(66116,39315,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:16:\"standard_content\";i:3;s:18:\"testimonial_slider\";}'),(66117,39315,'_blocks','field_6176696113096'),(66118,39315,'blocks_0_acfe_flexible_toggle',''),(66119,39315,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(66120,39315,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(66121,39315,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(66122,39315,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: center;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(66123,39315,'_blocks_0_content','field_6193c9b5eac84'),(66124,39315,'blocks_1_acfe_flexible_toggle',''),(66125,39315,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(66126,39315,'blocks_1_acfe_flexible_layout_title','Logos'),(66127,39315,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(66128,39315,'blocks_1_options_theme','#ffffff'),(66129,39315,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(66130,39315,'blocks_1_options_format','carousel'),(66131,39315,'_blocks_1_options_format','field_61782964ee971'),(66132,39315,'blocks_1_options',''),(66133,39315,'_blocks_1_options','field_61782954ee965'),(66134,39315,'blocks_1_logos','a:11:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39292\";i:3;s:5:\"39293\";i:4;s:5:\"39294\";i:5;s:5:\"39295\";i:6;s:5:\"39296\";i:7;s:5:\"39297\";i:8;s:5:\"39300\";i:9;s:5:\"39304\";i:10;s:5:\"39306\";}'),(66135,39315,'_blocks_1_logos','field_61782954ee96d'),(66136,39315,'blocks_1_title',''),(66137,39315,'_blocks_1_title','field_668fbfdc2daa1'),(66138,39315,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-4\";s:6:\"target\";s:0:\"\";}'),(66139,39315,'_hero_actions_0_button','field_61757281285eb'),(66140,39315,'_thumbnail_id',''),(66141,39315,'__thumbnail_id','field_617570855ddaf'),(66142,39315,'blocks_2_acfe_flexible_toggle',''),(66143,39315,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(66144,39315,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(66145,39315,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(66146,39315,'blocks_2_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(66147,39315,'_blocks_2_content','field_6193c9b5eac84'),(66148,39315,'blocks_3_acfe_flexible_toggle',''),(66149,39315,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(66150,39315,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(66151,39315,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(66152,39315,'blocks_3_testimonial_slider_content_title',''),(66153,39315,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(66154,39315,'blocks_3_testimonial_slider_content_heading','Testimonials'),(66155,39315,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(66156,39315,'blocks_3_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(66157,39315,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(66158,39315,'blocks_3_testimonial_slider_content_actions',''),(66159,39315,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(66160,39315,'blocks_3_testimonial_slider_content',''),(66161,39315,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(66162,39315,'blocks_3_testimonial_slider_items','a:6:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"38962\";i:5;s:5:\"39169\";}'),(66163,39315,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(66164,39315,'blocks_3_testimonial_slider_ambassador_bool','0'),(66165,39315,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(66167,39316,'hide_hero','0'),(66168,39316,'_hide_hero','field_66a2380fcda39'),(66169,39316,'hero_title','Our Partners'),(66170,39316,'_hero_title','field_617571fe285e8'),(66171,39316,'hero_text','Discover our partners'),(66172,39316,'_hero_text','field_6175723c285e9'),(66173,39316,'hero_actions','1'),(66174,39316,'_hero_actions','field_61757270285ea'),(66175,39316,'hero_style','default'),(66176,39316,'_hero_style','field_62051d9dc5324'),(66177,39316,'hero_image_pos_x','right'),(66178,39316,'_hero_image_pos_x','field_62ec3d05390bb'),(66179,39316,'hero_image_pos_y','top'),(66180,39316,'_hero_image_pos_y','field_62ec3d05390bc'),(66181,39316,'hero_image_pos',''),(66182,39316,'_hero_image_pos','field_62ec3d05390ba'),(66183,39316,'fft_hide_from_listings','0'),(66184,39316,'_fft_hide_from_listings','field_61f1320446ab2'),(66185,39316,'fft_page_format','default'),(66186,39316,'_fft_page_format','field_61ae213f1f218'),(66187,39316,'fft_hide_nav','0'),(66188,39316,'_fft_hide_nav','field_635bd5e43527c'),(66189,39316,'fft_hide_header_call_to_action','0'),(66190,39316,'_fft_hide_header_call_to_action','field_635bd6723527d'),(66191,39316,'fft_page_sitemap','0'),(66192,39316,'_fft_page_sitemap','field_61af9b34e8181'),(66193,39316,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:16:\"standard_content\";i:3;s:18:\"testimonial_slider\";}'),(66194,39316,'_blocks','field_6176696113096'),(66195,39316,'blocks_0_acfe_flexible_toggle',''),(66196,39316,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(66197,39316,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(66198,39316,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(66199,39316,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(66200,39316,'_blocks_0_content','field_6193c9b5eac84'),(66201,39316,'blocks_1_acfe_flexible_toggle',''),(66202,39316,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(66203,39316,'blocks_1_acfe_flexible_layout_title','Logos'),(66204,39316,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(66205,39316,'blocks_1_options_theme','#ffffff'),(66206,39316,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(66207,39316,'blocks_1_options_format','carousel'),(66208,39316,'_blocks_1_options_format','field_61782964ee971'),(66209,39316,'blocks_1_options',''),(66210,39316,'_blocks_1_options','field_61782954ee965'),(66211,39316,'blocks_1_logos','a:11:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39292\";i:3;s:5:\"39293\";i:4;s:5:\"39294\";i:5;s:5:\"39295\";i:6;s:5:\"39296\";i:7;s:5:\"39297\";i:8;s:5:\"39300\";i:9;s:5:\"39304\";i:10;s:5:\"39306\";}'),(66212,39316,'_blocks_1_logos','field_61782954ee96d'),(66213,39316,'blocks_1_title',''),(66214,39316,'_blocks_1_title','field_668fbfdc2daa1'),(66215,39316,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-4\";s:6:\"target\";s:0:\"\";}'),(66216,39316,'_hero_actions_0_button','field_61757281285eb'),(66217,39316,'blocks_2_acfe_flexible_toggle',''),(66218,39316,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(66219,39316,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(66220,39316,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(66221,39316,'blocks_2_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(66222,39316,'_blocks_2_content','field_6193c9b5eac84'),(66223,39316,'blocks_3_acfe_flexible_toggle',''),(66224,39316,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(66225,39316,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(66226,39316,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(66227,39316,'blocks_3_testimonial_slider_content_title',''),(66228,39316,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(66229,39316,'blocks_3_testimonial_slider_content_heading','Testimonials'),(66230,39316,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(66231,39316,'blocks_3_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(66232,39316,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(66233,39316,'blocks_3_testimonial_slider_content_actions',''),(66234,39316,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(66235,39316,'blocks_3_testimonial_slider_content',''),(66236,39316,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(66237,39316,'blocks_3_testimonial_slider_items','a:6:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"38962\";i:5;s:5:\"39169\";}'),(66238,39316,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(66239,39316,'blocks_3_testimonial_slider_ambassador_bool','0'),(66240,39316,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(66241,39316,'_thumbnail_id',''),(66242,39316,'__thumbnail_id','field_617570855ddaf'),(66243,39278,'_wp_old_date','2024-08-06'),(66244,39279,'_wp_old_date','2024-08-06'),(66245,39280,'_wp_old_date','2024-08-06'),(66246,39281,'_wp_old_date','2024-08-06'),(66257,39318,'_menu_item_type','post_type'),(66258,39318,'_menu_item_menu_item_parent','39281'),(66259,39318,'_menu_item_object_id','39284'),(66260,39318,'_menu_item_object','page'),(66261,39318,'_menu_item_target',''),(66262,39318,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(66263,39318,'_menu_item_xfn',''),(66264,39318,'_menu_item_url',''),(66266,39318,'menu_item_card_image',''),(66267,39318,'_menu_item_card_image','field_618cf50fb8716'),(66268,39318,'menu_item_card_title',''),(66269,39318,'_menu_item_card_title','field_618cf51cb8717'),(66270,39318,'menu_item_card_text',''),(66271,39318,'_menu_item_card_text','field_618cf521b8718'),(66272,39318,'menu_item_card_link',''),(66273,39318,'_menu_item_card_link','field_618cf52eb8719'),(66274,39318,'menu_item_card',''),(66275,39318,'_menu_item_card','field_618cf506b8715'),(66276,39319,'_menu_item_type','post_type'),(66277,39319,'_menu_item_menu_item_parent','39279'),(66278,39319,'_menu_item_object_id','39263'),(66279,39319,'_menu_item_object','page'),(66280,39319,'_menu_item_target',''),(66281,39319,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(66282,39319,'_menu_item_xfn',''),(66283,39319,'_menu_item_url',''),(66285,39320,'_menu_item_type','post_type'),(66286,39320,'_menu_item_menu_item_parent','39279'),(66287,39320,'_menu_item_object_id','39254'),(66288,39320,'_menu_item_object','page'),(66289,39320,'_menu_item_target',''),(66290,39320,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(66291,39320,'_menu_item_xfn',''),(66292,39320,'_menu_item_url',''),(66294,39321,'_menu_item_type','post_type'),(66295,39321,'_menu_item_menu_item_parent','39279'),(66296,39321,'_menu_item_object_id','39249'),(66297,39321,'_menu_item_object','page'),(66298,39321,'_menu_item_target',''),(66299,39321,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(66300,39321,'_menu_item_xfn',''),(66301,39321,'_menu_item_url',''),(66303,39322,'_menu_item_type','post_type'),(66304,39322,'_menu_item_menu_item_parent','39279'),(66305,39322,'_menu_item_object_id','39245'),(66306,39322,'_menu_item_object','page'),(66307,39322,'_menu_item_target',''),(66308,39322,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(66309,39322,'_menu_item_xfn',''),(66310,39322,'_menu_item_url',''),(66312,39323,'_menu_item_type','post_type'),(66313,39323,'_menu_item_menu_item_parent','39279'),(66314,39323,'_menu_item_object_id','39238'),(66315,39323,'_menu_item_object','page'),(66316,39323,'_menu_item_target',''),(66317,39323,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(66318,39323,'_menu_item_xfn',''),(66319,39323,'_menu_item_url',''),(66321,39324,'_menu_item_type','post_type'),(66322,39324,'_menu_item_menu_item_parent','39279'),(66323,39324,'_menu_item_object_id','39231'),(66324,39324,'_menu_item_object','page'),(66325,39324,'_menu_item_target',''),(66326,39324,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(66327,39324,'_menu_item_xfn',''),(66328,39324,'_menu_item_url',''),(66330,39325,'_menu_item_type','post_type'),(66331,39325,'_menu_item_menu_item_parent','39279'),(66332,39325,'_menu_item_object_id','39214'),(66333,39325,'_menu_item_object','page'),(66334,39325,'_menu_item_target',''),(66335,39325,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(66336,39325,'_menu_item_xfn',''),(66337,39325,'_menu_item_url',''),(66339,39325,'menu_item_card_image',''),(66340,39325,'_menu_item_card_image','field_618cf50fb8716'),(66341,39325,'menu_item_card_title',''),(66342,39325,'_menu_item_card_title','field_618cf51cb8717'),(66343,39325,'menu_item_card_text',''),(66344,39325,'_menu_item_card_text','field_618cf521b8718'),(66345,39325,'menu_item_card_link',''),(66346,39325,'_menu_item_card_link','field_618cf52eb8719'),(66347,39325,'menu_item_card',''),(66348,39325,'_menu_item_card','field_618cf506b8715'),(66349,39324,'menu_item_card_image',''),(66350,39324,'_menu_item_card_image','field_618cf50fb8716'),(66351,39324,'menu_item_card_title',''),(66352,39324,'_menu_item_card_title','field_618cf51cb8717'),(66353,39324,'menu_item_card_text',''),(66354,39324,'_menu_item_card_text','field_618cf521b8718'),(66355,39324,'menu_item_card_link',''),(66356,39324,'_menu_item_card_link','field_618cf52eb8719'),(66357,39324,'menu_item_card',''),(66358,39324,'_menu_item_card','field_618cf506b8715'),(66359,39323,'menu_item_card_image',''),(66360,39323,'_menu_item_card_image','field_618cf50fb8716'),(66361,39323,'menu_item_card_title',''),(66362,39323,'_menu_item_card_title','field_618cf51cb8717'),(66363,39323,'menu_item_card_text',''),(66364,39323,'_menu_item_card_text','field_618cf521b8718'),(66365,39323,'menu_item_card_link',''),(66366,39323,'_menu_item_card_link','field_618cf52eb8719'),(66367,39323,'menu_item_card',''),(66368,39323,'_menu_item_card','field_618cf506b8715'),(66369,39322,'menu_item_card_image',''),(66370,39322,'_menu_item_card_image','field_618cf50fb8716'),(66371,39322,'menu_item_card_title',''),(66372,39322,'_menu_item_card_title','field_618cf51cb8717'),(66373,39322,'menu_item_card_text',''),(66374,39322,'_menu_item_card_text','field_618cf521b8718'),(66375,39322,'menu_item_card_link',''),(66376,39322,'_menu_item_card_link','field_618cf52eb8719'),(66377,39322,'menu_item_card',''),(66378,39322,'_menu_item_card','field_618cf506b8715'),(66379,39321,'menu_item_card_image',''),(66380,39321,'_menu_item_card_image','field_618cf50fb8716'),(66381,39321,'menu_item_card_title',''),(66382,39321,'_menu_item_card_title','field_618cf51cb8717'),(66383,39321,'menu_item_card_text',''),(66384,39321,'_menu_item_card_text','field_618cf521b8718'),(66385,39321,'menu_item_card_link',''),(66386,39321,'_menu_item_card_link','field_618cf52eb8719'),(66387,39321,'menu_item_card',''),(66388,39321,'_menu_item_card','field_618cf506b8715'),(66389,39320,'menu_item_card_image',''),(66390,39320,'_menu_item_card_image','field_618cf50fb8716'),(66391,39320,'menu_item_card_title',''),(66392,39320,'_menu_item_card_title','field_618cf51cb8717'),(66393,39320,'menu_item_card_text',''),(66394,39320,'_menu_item_card_text','field_618cf521b8718'),(66395,39320,'menu_item_card_link',''),(66396,39320,'_menu_item_card_link','field_618cf52eb8719'),(66397,39320,'menu_item_card',''),(66398,39320,'_menu_item_card','field_618cf506b8715'),(66399,39319,'menu_item_card_image',''),(66400,39319,'_menu_item_card_image','field_618cf50fb8716'),(66401,39319,'menu_item_card_title',''),(66402,39319,'_menu_item_card_title','field_618cf51cb8717'),(66403,39319,'menu_item_card_text',''),(66404,39319,'_menu_item_card_text','field_618cf521b8718'),(66405,39319,'menu_item_card_link',''),(66406,39319,'_menu_item_card_link','field_618cf52eb8719'),(66407,39319,'menu_item_card',''),(66408,39319,'_menu_item_card','field_618cf506b8715'),(66409,39327,'hide_hero','0'),(66410,39327,'_hide_hero','field_66a2380fcda39'),(66411,39327,'hero_title','Biomechanics and Pilates'),(66412,39327,'_hero_title','field_617571fe285e8'),(66413,39327,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(66414,39327,'_hero_text','field_6175723c285e9'),(66415,39327,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(66416,39327,'_hero_actions_0_button','field_61757281285eb'),(66417,39327,'hero_actions','1'),(66418,39327,'_hero_actions','field_61757270285ea'),(66419,39327,'hero_style','default'),(66420,39327,'_hero_style','field_62051d9dc5324'),(66421,39327,'_thumbnail_id','39243'),(66422,39327,'__thumbnail_id','field_617570855ddaf'),(66423,39327,'hero_image_pos_x','right'),(66424,39327,'_hero_image_pos_x','field_62ec3d05390bb'),(66425,39327,'hero_image_pos_y','top'),(66426,39327,'_hero_image_pos_y','field_62ec3d05390bc'),(66427,39327,'hero_image_pos',''),(66428,39327,'_hero_image_pos','field_62ec3d05390ba'),(66429,39327,'fft_hide_from_listings','0'),(66430,39327,'_fft_hide_from_listings','field_61f1320446ab2'),(66431,39327,'fft_page_format','default'),(66432,39327,'_fft_page_format','field_61ae213f1f218'),(66433,39327,'fft_hide_nav','0'),(66434,39327,'_fft_hide_nav','field_635bd5e43527c'),(66435,39327,'fft_hide_header_call_to_action','0'),(66436,39327,'_fft_hide_header_call_to_action','field_635bd6723527d'),(66437,39327,'fft_page_sitemap','0'),(66438,39327,'_fft_page_sitemap','field_61af9b34e8181'),(66439,39327,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(66440,39327,'_blocks','field_6176696113096'),(66441,39327,'blocks_0_acfe_flexible_toggle',''),(66442,39327,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(66443,39327,'blocks_0_acfe_flexible_layout_title','Steps'),(66444,39327,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(66445,39327,'blocks_0_row_content_title',''),(66446,39327,'_blocks_0_row_content_title','field_64888cd1e26e0'),(66447,39327,'blocks_0_row_content_heading','Benefits of training with us'),(66448,39327,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(66449,39327,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(66450,39327,'_blocks_0_row_content_text','field_64888ce2e26e2'),(66451,39327,'blocks_0_row_content_actions',''),(66452,39327,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(66453,39327,'blocks_0_row_content',''),(66454,39327,'_blocks_0_row_content','field_64888cb0e26df'),(66455,39327,'blocks_0_steps_0_icon','progression.svg'),(66456,39327,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(66457,39327,'blocks_0_steps_0_title','Earning potential'),(66458,39327,'_blocks_0_steps_0_title','field_64888d94e26e7'),(66459,39327,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(66460,39327,'_blocks_0_steps_0_text','field_64888d99e26e8'),(66461,39327,'blocks_0_steps_1_icon','support.svg'),(66462,39327,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(66463,39327,'blocks_0_steps_1_title','Lifetime Learning Promise'),(66464,39327,'_blocks_0_steps_1_title','field_64888d94e26e7'),(66465,39327,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(66466,39327,'_blocks_0_steps_1_text','field_64888d99e26e8'),(66467,39327,'blocks_0_steps_2_icon','qualification.svg'),(66468,39327,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(66469,39327,'blocks_0_steps_2_title','Evidence based hands on learning'),(66470,39327,'_blocks_0_steps_2_title','field_64888d94e26e7'),(66471,39327,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(66472,39327,'_blocks_0_steps_2_text','field_64888d99e26e8'),(66473,39327,'blocks_0_steps_3_icon','leaders.svg'),(66474,39327,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(66475,39327,'blocks_0_steps_3_title','Stand out from the crowd'),(66476,39327,'_blocks_0_steps_3_title','field_64888d94e26e7'),(66477,39327,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(66478,39327,'_blocks_0_steps_3_text','field_64888d99e26e8'),(66479,39327,'blocks_0_steps','4'),(66480,39327,'_blocks_0_steps','field_64888d44e26e5'),(66481,39327,'blocks_1_acfe_flexible_toggle',''),(66482,39327,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(66483,39327,'blocks_1_acfe_flexible_layout_title','Video'),(66484,39327,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(66485,39327,'blocks_1_size','large'),(66486,39327,'_blocks_1_size','field_6487038f297c1'),(66487,39327,'blocks_1_row_content_title',''),(66488,39327,'_blocks_1_row_content_title','field_64870132a865d'),(66489,39327,'blocks_1_row_content_heading',''),(66490,39327,'_blocks_1_row_content_heading','field_64870142a865e'),(66491,39327,'blocks_1_row_content_text',''),(66492,39327,'_blocks_1_row_content_text','field_64870148a865f'),(66493,39327,'blocks_1_row_content',''),(66494,39327,'_blocks_1_row_content','field_6487008ba865c'),(66495,39327,'blocks_1_video_src',''),(66496,39327,'_blocks_1_video_src','field_6193c4a98ec07'),(66497,39327,'blocks_1_video_thumbnail',''),(66498,39327,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(66499,39327,'blocks_2_acfe_flexible_toggle',''),(66500,39327,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(66501,39327,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(66502,39327,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(66503,39327,'blocks_2_options_theme','#ffffff'),(66504,39327,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(66505,39327,'blocks_2_options_reverse','0'),(66506,39327,'_blocks_2_options_reverse','field_61768049bb8ac'),(66507,39327,'blocks_2_options',''),(66508,39327,'_blocks_2_options','field_617682517c334'),(66509,39327,'blocks_2_split_5050_image','38037'),(66510,39327,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(66511,39327,'blocks_2_split_5050_video',''),(66512,39327,'_blocks_2_split_5050_video','field_6239f3160848a'),(66513,39327,'blocks_2_split_5050_content_title',''),(66514,39327,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(66515,39327,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(66516,39327,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(66517,39327,'blocks_2_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(66518,39327,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(66519,39327,'blocks_2_split_5050_content_actions',''),(66520,39327,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(66521,39327,'blocks_2_split_5050_content',''),(66522,39327,'_blocks_2_split_5050_content','field_61767afceb8ba'),(66523,39327,'blocks_3_acfe_flexible_toggle',''),(66524,39327,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(66525,39327,'blocks_3_acfe_flexible_layout_title','Form'),(66526,39327,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(66527,39327,'blocks_3_row_content_format','standard'),(66528,39327,'_blocks_3_row_content_format','field_6481ead962881'),(66529,39327,'blocks_3_row_content_title',''),(66530,39327,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(66531,39327,'blocks_3_row_content_heading','Enquire Today'),(66532,39327,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(66533,39327,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(66534,39327,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(66535,39327,'blocks_3_row_content_actions',''),(66536,39327,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(66537,39327,'blocks_3_row_content',''),(66538,39327,'_blocks_3_row_content','field_61a0f5f5b3db0'),(66539,39327,'blocks_3_row_form',''),(66540,39327,'_blocks_3_row_form','field_61a4ff2c0b08e'),(66541,39327,'blocks_3_row_form_button_label',''),(66542,39327,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(66543,39327,'blocks_4_acfe_flexible_toggle',''),(66544,39327,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(66545,39327,'blocks_4_acfe_flexible_layout_title','Tabs'),(66546,39327,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(66547,39327,'blocks_4_options_theme','#ffffff'),(66548,39327,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(66549,39327,'blocks_4_options',''),(66550,39327,'_blocks_4_options','field_6177cfcd8140f'),(66551,39327,'blocks_4_tabs_0_tab_label','What will I learn ?'),(66552,39327,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(66553,39327,'blocks_4_tabs_0_tab_content_title',''),(66554,39327,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(66555,39327,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(66556,39327,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(66557,39327,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(66558,39327,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(66559,39327,'blocks_4_tabs_0_tab_content_actions',''),(66560,39327,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(66561,39327,'blocks_4_tabs_0_tab_content',''),(66562,39327,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(66563,39327,'blocks_4_tabs_0_tab_image','39076'),(66564,39327,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(66565,39327,'blocks_4_tabs_1_tab_label','What do I need ?'),(66566,39327,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(66567,39327,'blocks_4_tabs_1_tab_content_title',''),(66568,39327,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(66569,39327,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(66570,39327,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(66571,39327,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(66572,39327,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(66573,39327,'blocks_4_tabs_1_tab_content_actions',''),(66574,39327,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(66575,39327,'blocks_4_tabs_1_tab_content',''),(66576,39327,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(66577,39327,'blocks_4_tabs_1_tab_image','39223'),(66578,39327,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(66579,39327,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(66580,39327,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(66581,39327,'blocks_4_tabs_2_tab_content_title',''),(66582,39327,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(66583,39327,'blocks_4_tabs_2_tab_content_heading','Locations'),(66584,39327,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(66585,39327,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(66586,39327,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(66587,39327,'blocks_4_tabs_2_tab_content_actions',''),(66588,39327,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(66589,39327,'blocks_4_tabs_2_tab_content',''),(66590,39327,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(66591,39327,'blocks_4_tabs_2_tab_image','39224'),(66592,39327,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(66593,39327,'blocks_4_tabs','3'),(66594,39327,'_blocks_4_tabs','field_6177cff281419'),(66595,39327,'blocks_5_acfe_flexible_toggle',''),(66596,39327,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(66597,39327,'blocks_5_acfe_flexible_layout_title','Text Block'),(66598,39327,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(66599,39327,'blocks_5_options_theme','#b61234'),(66600,39327,'_blocks_5_options_theme','field_6176830e2ad17'),(66601,39327,'blocks_5_options',''),(66602,39327,'_blocks_5_options','field_6176830e2ad16'),(66603,39327,'blocks_5_text_block_heading','Fees & Funding Options'),(66604,39327,'_blocks_5_text_block_heading','field_617669d413097'),(66605,39327,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(66606,39327,'_blocks_5_text_block_content','field_617669ec13098'),(66607,39327,'blocks_6_acfe_flexible_toggle',''),(66608,39327,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(66609,39327,'blocks_6_acfe_flexible_layout_title','Icons'),(66610,39327,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(66611,39327,'blocks_6_options_theme','#b61234'),(66612,39327,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(66613,39327,'blocks_6_options_format','row'),(66614,39327,'_blocks_6_options_format','field_64bfde9a90690'),(66615,39327,'blocks_6_options',''),(66616,39327,'_blocks_6_options','field_64bfdd9b90684'),(66617,39327,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(66618,39327,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(66619,39327,'blocks_6_icon_row_items_0_label','Pay in Full'),(66620,39327,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(66621,39327,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(66622,39327,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(66623,39327,'blocks_6_icon_row_items_1_icon','finance.svg'),(66624,39327,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(66625,39327,'blocks_6_icon_row_items_1_label','0% finance'),(66626,39327,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(66627,39327,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(66628,39327,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(66629,39327,'blocks_6_icon_row_items_2_icon','deposit.svg'),(66630,39327,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(66631,39327,'blocks_6_icon_row_items_2_label','Deposit & balance'),(66632,39327,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(66633,39327,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(66634,39327,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(66635,39327,'blocks_6_icon_row_items','3'),(66636,39327,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(66637,39327,'blocks_7_acfe_flexible_toggle',''),(66638,39327,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(66639,39327,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(66640,39327,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(66641,39327,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(66642,39327,'_blocks_7_content','field_6193c9b5eac84'),(66643,39327,'blocks_8_acfe_flexible_toggle',''),(66644,39327,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(66645,39327,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(66646,39327,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(66647,39327,'blocks_8_testimonial_slider_content_title',''),(66648,39327,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(66649,39327,'blocks_8_testimonial_slider_content_heading','Testimonials'),(66650,39327,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(66651,39327,'blocks_8_testimonial_slider_content_text',''),(66652,39327,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(66653,39327,'blocks_8_testimonial_slider_content_actions',''),(66654,39327,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(66655,39327,'blocks_8_testimonial_slider_content',''),(66656,39327,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(66657,39327,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(66658,39327,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(66659,39327,'blocks_8_testimonial_slider_ambassador_bool','0'),(66660,39327,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(66661,39327,'blocks_9_acfe_flexible_toggle',''),(66662,39327,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(66663,39327,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(66664,39327,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(66665,39327,'blocks_9_options_theme','#ffffff'),(66666,39327,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(66667,39327,'blocks_9_options_state','0'),(66668,39327,'_blocks_9_options_state','field_6239fcb7508c5'),(66669,39327,'blocks_9_options',''),(66670,39327,'_blocks_9_options','field_6177e2991ac44'),(66671,39327,'blocks_9_content_title',''),(66672,39327,'_blocks_9_content_title','field_64d237e8bb1e2'),(66673,39327,'blocks_9_content_heading','Frequently asked questions '),(66674,39327,'_blocks_9_content_heading','field_64d237e8bb1e3'),(66675,39327,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(66676,39327,'_blocks_9_content_text','field_64d237e8bb1e4'),(66677,39327,'blocks_9_content_actions',''),(66678,39327,'_blocks_9_content_actions','field_64d237e8bb1e5'),(66679,39327,'blocks_9_content_align','left'),(66680,39327,'_blocks_9_content_align','field_64d2443e6b6aa'),(66681,39327,'blocks_9_content',''),(66682,39327,'_blocks_9_content','field_64d237e8bb1e1'),(66683,39327,'blocks_9_accordion_content','faqs'),(66684,39327,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(66685,39327,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(66686,39327,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(66687,39327,'blocks_9_actions',''),(66688,39327,'_blocks_9_actions','field_61a746a817f7a'),(66689,39329,'_edit_lock','1728474827:5'),(66690,39329,'_edit_last','5'),(66691,39329,'hide_hero','0'),(66692,39329,'_hide_hero','field_66a2380fcda39'),(66693,39329,'hero_title','Funding Your Course'),(66694,39329,'_hero_title','field_617571fe285e8'),(66695,39329,'hero_text','Discover the various options available for funding and paying for your course with us.'),(66696,39329,'_hero_text','field_6175723c285e9'),(66697,39329,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:0:\"\";}'),(66698,39329,'_hero_actions_0_button','field_61757281285eb'),(66699,39329,'hero_actions','1'),(66700,39329,'_hero_actions','field_61757270285ea'),(66701,39329,'hero_style','default'),(66702,39329,'_hero_style','field_62051d9dc5324'),(66704,39329,'__thumbnail_id','field_617570855ddaf'),(66705,39329,'hero_image_pos_x','right'),(66706,39329,'_hero_image_pos_x','field_62ec3d05390bb'),(66707,39329,'hero_image_pos_y','top'),(66708,39329,'_hero_image_pos_y','field_62ec3d05390bc'),(66709,39329,'hero_image_pos',''),(66710,39329,'_hero_image_pos','field_62ec3d05390ba'),(66711,39329,'fft_hide_from_listings','0'),(66712,39329,'_fft_hide_from_listings','field_61f1320446ab2'),(66713,39329,'fft_page_format','default'),(66714,39329,'_fft_page_format','field_61ae213f1f218'),(66715,39329,'fft_hide_nav','0'),(66716,39329,'_fft_hide_nav','field_635bd5e43527c'),(66717,39329,'fft_hide_header_call_to_action','0'),(66718,39329,'_fft_hide_header_call_to_action','field_635bd6723527d'),(66719,39329,'fft_page_sitemap','0'),(66720,39329,'_fft_page_sitemap','field_61af9b34e8181'),(66721,39329,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(66722,39329,'_blocks','field_6176696113096'),(66723,39329,'_yoast_wpseo_estimated-reading-time-minutes','1'),(66724,39330,'hide_hero','0'),(66725,39330,'_hide_hero','field_66a2380fcda39'),(66726,39330,'hero_title','Funding Your Course'),(66727,39330,'_hero_title','field_617571fe285e8'),(66728,39330,'hero_text','Discover the multiple options when it comes to funding and paying for your course with us.'),(66729,39330,'_hero_text','field_6175723c285e9'),(66730,39330,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(66731,39330,'_hero_actions_0_button','field_61757281285eb'),(66732,39330,'hero_actions','1'),(66733,39330,'_hero_actions','field_61757270285ea'),(66734,39330,'hero_style','default'),(66735,39330,'_hero_style','field_62051d9dc5324'),(66736,39330,'_thumbnail_id',''),(66737,39330,'__thumbnail_id','field_617570855ddaf'),(66738,39330,'hero_image_pos_x','right'),(66739,39330,'_hero_image_pos_x','field_62ec3d05390bb'),(66740,39330,'hero_image_pos_y','top'),(66741,39330,'_hero_image_pos_y','field_62ec3d05390bc'),(66742,39330,'hero_image_pos',''),(66743,39330,'_hero_image_pos','field_62ec3d05390ba'),(66744,39330,'fft_hide_from_listings','0'),(66745,39330,'_fft_hide_from_listings','field_61f1320446ab2'),(66746,39330,'fft_page_format','default'),(66747,39330,'_fft_page_format','field_61ae213f1f218'),(66748,39330,'fft_hide_nav','0'),(66749,39330,'_fft_hide_nav','field_635bd5e43527c'),(66750,39330,'fft_hide_header_call_to_action','0'),(66751,39330,'_fft_hide_header_call_to_action','field_635bd6723527d'),(66752,39330,'fft_page_sitemap','0'),(66753,39330,'_fft_page_sitemap','field_61af9b34e8181'),(66754,39330,'blocks',''),(66755,39330,'_blocks','field_6176696113096'),(66907,39332,'hide_hero','0'),(66908,39332,'_hide_hero','field_66a2380fcda39'),(66909,39332,'hero_title','Funding Your Course'),(66910,39332,'_hero_title','field_617571fe285e8'),(66911,39332,'hero_text','Discover the multiple options when it comes to funding and paying for your course with us.'),(66912,39332,'_hero_text','field_6175723c285e9'),(66913,39332,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(66914,39332,'_hero_actions_0_button','field_61757281285eb'),(66915,39332,'hero_actions','1'),(66916,39332,'_hero_actions','field_61757270285ea'),(66917,39332,'hero_style','default'),(66918,39332,'_hero_style','field_62051d9dc5324'),(66919,39332,'hero_image_pos_x','right'),(66920,39332,'_hero_image_pos_x','field_62ec3d05390bb'),(66921,39332,'hero_image_pos_y','top'),(66922,39332,'_hero_image_pos_y','field_62ec3d05390bc'),(66923,39332,'hero_image_pos',''),(66924,39332,'_hero_image_pos','field_62ec3d05390ba'),(66925,39332,'fft_hide_from_listings','0'),(66926,39332,'_fft_hide_from_listings','field_61f1320446ab2'),(66927,39332,'fft_page_format','default'),(66928,39332,'_fft_page_format','field_61ae213f1f218'),(66929,39332,'fft_hide_nav','0'),(66930,39332,'_fft_hide_nav','field_635bd5e43527c'),(66931,39332,'fft_hide_header_call_to_action','0'),(66932,39332,'_fft_hide_header_call_to_action','field_635bd6723527d'),(66933,39332,'fft_page_sitemap','0'),(66934,39332,'_fft_page_sitemap','field_61af9b34e8181'),(66935,39332,'blocks',''),(66936,39332,'_blocks','field_6176696113096'),(66937,39332,'_thumbnail_id',''),(66938,39332,'__thumbnail_id','field_617570855ddaf'),(66939,39334,'_wp_attached_file','2024/08/Fees-and-funding-hero-image.webp'),(66940,39334,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:40:\"2024/08/Fees-and-funding-hero-image.webp\";s:8:\"filesize\";i:57630;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-900x506.webp\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:50316;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17578;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-768x432.webp\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:40350;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22936;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-900x675.webp\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:59518;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-400x266.webp\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18128;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-900x600.webp\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:51136;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18302;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-675x675.webp\";s:5:\"width\";i:675;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:49040;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-900x675.webp\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:59518;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-400x300.webp\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18924;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-900x675.webp\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:59518;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17578;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:40:\"Fees-and-funding-hero-image-900x506.webp\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:50316;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(66941,39335,'_wp_attached_file','2024/08/fees-and-funding-50.50-image.webp'),(66942,39335,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:512;s:4:\"file\";s:41:\"2024/08/fees-and-funding-50.50-image.webp\";s:8:\"filesize\";i:17524;s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"fees-and-funding-50.50-image-400x267.webp\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11084;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"fees-and-funding-50.50-image-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12344;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"fees-and-funding-50.50-image-400x266.webp\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11078;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"fees-and-funding-50.50-image-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10192;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"fees-and-funding-50.50-image-675x512.webp\";s:5:\"width\";i:675;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22402;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"fees-and-funding-50.50-image-400x300.webp\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11546;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"fees-and-funding-50.50-image-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:9602;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"fees-and-funding-50.50-image-768x506.webp\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24410;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(66943,39329,'_thumbnail_id','39334'),(66944,39329,'blocks_0_acfe_flexible_toggle',''),(66945,39329,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(66946,39329,'blocks_0_acfe_flexible_layout_title','Icons'),(66947,39329,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(66948,39329,'blocks_0_options_theme','#ffffff'),(66949,39329,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(66950,39329,'blocks_0_options_format','grid'),(66951,39329,'_blocks_0_options_format','field_64bfde9a90690'),(66952,39329,'blocks_0_options',''),(66953,39329,'_blocks_0_options','field_64bfdd9b90684'),(66954,39329,'blocks_0_row_content_title',''),(66955,39329,'_blocks_0_row_content_title','field_64bfdd9b90687'),(66956,39329,'blocks_0_row_content_heading','Fees & Funding Options'),(66957,39329,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(66958,39329,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(66959,39329,'_blocks_0_row_content_text','field_64bfdd9b90689'),(66960,39329,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(66961,39329,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(66962,39329,'blocks_0_row_content_actions','1'),(66963,39329,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(66964,39329,'blocks_0_row_content',''),(66965,39329,'_blocks_0_row_content','field_64bfdd9b90686'),(66966,39329,'blocks_0_icon_row_items_0_icon','pay-as-you-learn.svg'),(66967,39329,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(66968,39329,'blocks_0_icon_row_items_0_label','Pay in full'),(66969,39329,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(66970,39329,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(66971,39329,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(66972,39329,'blocks_0_icon_row_items_1_icon','finance.svg'),(66973,39329,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(66974,39329,'blocks_0_icon_row_items_1_label','0% finance*'),(66975,39329,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(66976,39329,'blocks_0_icon_row_items_1_text','Put down a deposit and spread the cost of your training with 0% finance.'),(66977,39329,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(66978,39329,'blocks_0_icon_row_items_2_icon','deposit.svg'),(66979,39329,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(66980,39329,'blocks_0_icon_row_items_2_label','Deposit & balance'),(66981,39329,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(66982,39329,'blocks_0_icon_row_items_2_text','Put down a deposit and pay the remaining balance in one lump sum later.'),(66983,39329,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(66990,39329,'blocks_0_icon_row_items','3'),(66991,39329,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(66992,39329,'blocks_1_acfe_flexible_toggle',''),(66993,39329,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(66994,39329,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(66995,39329,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(66996,39329,'blocks_1_options_theme','#ffffff'),(66997,39329,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(66998,39329,'blocks_1_options_reverse','0'),(66999,39329,'_blocks_1_options_reverse','field_61768049bb8ac'),(67000,39329,'blocks_1_options',''),(67001,39329,'_blocks_1_options','field_617682517c334'),(67002,39329,'blocks_1_split_5050_image','39335'),(67003,39329,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(67004,39329,'blocks_1_split_5050_video',''),(67005,39329,'_blocks_1_split_5050_video','field_6239f3160848a'),(67006,39329,'blocks_1_split_5050_content_title',''),(67007,39329,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(67008,39329,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(67009,39329,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(67010,39329,'blocks_1_split_5050_content_text','Training for a new career is a big investment, and as with all things in life, you tend to get what you pay for.\r\n\r\nWhen you invest in training from Biomechanics Education, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 20 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(67011,39329,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(67012,39329,'blocks_1_split_5050_content_actions',''),(67013,39329,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(67014,39329,'blocks_1_split_5050_content',''),(67015,39329,'_blocks_1_split_5050_content','field_61767afceb8ba'),(67016,39336,'hide_hero','0'),(67017,39336,'_hide_hero','field_66a2380fcda39'),(67018,39336,'hero_title','Funding Your Course'),(67019,39336,'_hero_title','field_617571fe285e8'),(67020,39336,'hero_text','Discover the multiple options when it comes to funding and paying for your course with us.'),(67021,39336,'_hero_text','field_6175723c285e9'),(67022,39336,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(67023,39336,'_hero_actions_0_button','field_61757281285eb'),(67024,39336,'hero_actions','1'),(67025,39336,'_hero_actions','field_61757270285ea'),(67026,39336,'hero_style','default'),(67027,39336,'_hero_style','field_62051d9dc5324'),(67028,39336,'hero_image_pos_x','right'),(67029,39336,'_hero_image_pos_x','field_62ec3d05390bb'),(67030,39336,'hero_image_pos_y','top'),(67031,39336,'_hero_image_pos_y','field_62ec3d05390bc'),(67032,39336,'hero_image_pos',''),(67033,39336,'_hero_image_pos','field_62ec3d05390ba'),(67034,39336,'fft_hide_from_listings','0'),(67035,39336,'_fft_hide_from_listings','field_61f1320446ab2'),(67036,39336,'fft_page_format','default'),(67037,39336,'_fft_page_format','field_61ae213f1f218'),(67038,39336,'fft_hide_nav','0'),(67039,39336,'_fft_hide_nav','field_635bd5e43527c'),(67040,39336,'fft_hide_header_call_to_action','0'),(67041,39336,'_fft_hide_header_call_to_action','field_635bd6723527d'),(67042,39336,'fft_page_sitemap','0'),(67043,39336,'_fft_page_sitemap','field_61af9b34e8181'),(67044,39336,'blocks','a:2:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";}'),(67045,39336,'_blocks','field_6176696113096'),(67046,39336,'_thumbnail_id','39334'),(67047,39336,'__thumbnail_id','field_617570855ddaf'),(67048,39336,'blocks_0_acfe_flexible_toggle',''),(67049,39336,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(67050,39336,'blocks_0_acfe_flexible_layout_title','Icons'),(67051,39336,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(67052,39336,'blocks_0_options_theme','#ffffff'),(67053,39336,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(67054,39336,'blocks_0_options_format','grid'),(67055,39336,'_blocks_0_options_format','field_64bfde9a90690'),(67056,39336,'blocks_0_options',''),(67057,39336,'_blocks_0_options','field_64bfdd9b90684'),(67058,39336,'blocks_0_row_content_title',''),(67059,39336,'_blocks_0_row_content_title','field_64bfdd9b90687'),(67060,39336,'blocks_0_row_content_heading','Fees & Funding Options'),(67061,39336,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(67062,39336,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(67063,39336,'_blocks_0_row_content_text','field_64bfdd9b90689'),(67064,39336,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(67065,39336,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(67066,39336,'blocks_0_row_content_actions','1'),(67067,39336,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(67068,39336,'blocks_0_row_content',''),(67069,39336,'_blocks_0_row_content','field_64bfdd9b90686'),(67070,39336,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(67071,39336,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(67072,39336,'blocks_0_icon_row_items_0_label','Pay in full'),(67073,39336,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(67074,39336,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(67075,39336,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(67076,39336,'blocks_0_icon_row_items_1_icon','finance.svg'),(67077,39336,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(67078,39336,'blocks_0_icon_row_items_1_label','0% finance*'),(67079,39336,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(67080,39336,'blocks_0_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance'),(67081,39336,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(67082,39336,'blocks_0_icon_row_items_2_icon','deposit.svg'),(67083,39336,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(67084,39336,'blocks_0_icon_row_items_2_label','Deposit & balance'),(67085,39336,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(67086,39336,'blocks_0_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(67087,39336,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(67088,39336,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(67089,39336,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(67090,39336,'blocks_0_icon_row_items_3_label','FlexPay'),(67091,39336,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(67092,39336,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(67093,39336,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(67094,39336,'blocks_0_icon_row_items','4'),(67095,39336,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(67096,39336,'blocks_1_acfe_flexible_toggle',''),(67097,39336,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(67098,39336,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(67099,39336,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(67100,39336,'blocks_1_options_theme','#ffffff'),(67101,39336,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(67102,39336,'blocks_1_options_reverse','0'),(67103,39336,'_blocks_1_options_reverse','field_61768049bb8ac'),(67104,39336,'blocks_1_options',''),(67105,39336,'_blocks_1_options','field_617682517c334'),(67106,39336,'blocks_1_split_5050_image','39335'),(67107,39336,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(67108,39336,'blocks_1_split_5050_video',''),(67109,39336,'_blocks_1_split_5050_video','field_6239f3160848a'),(67110,39336,'blocks_1_split_5050_content_title',''),(67111,39336,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(67112,39336,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(67113,39336,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(67114,39336,'blocks_1_split_5050_content_text','Training for a new career is a big investment and as with all things in life you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(67115,39336,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(67116,39336,'blocks_1_split_5050_content_actions',''),(67117,39336,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(67118,39336,'blocks_1_split_5050_content',''),(67119,39336,'_blocks_1_split_5050_content','field_61767afceb8ba'),(67120,39337,'_wp_attached_file','2024/08/tabs-support-and-crowdfunding-iamge.webp'),(67121,39337,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:48:\"2024/08/tabs-support-and-crowdfunding-iamge.webp\";s:8:\"filesize\";i:25434;s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"tabs-support-and-crowdfunding-iamge-400x267.webp\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11846;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"tabs-support-and-crowdfunding-iamge-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:26894;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:48:\"tabs-support-and-crowdfunding-iamge-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17056;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:48:\"tabs-support-and-crowdfunding-iamge-400x266.webp\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11890;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:48:\"tabs-support-and-crowdfunding-iamge-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13924;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:48:\"tabs-support-and-crowdfunding-iamge-675x600.webp\";s:5:\"width\";i:675;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:28278;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:48:\"tabs-support-and-crowdfunding-iamge-400x300.webp\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13242;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:48:\"tabs-support-and-crowdfunding-iamge-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11026;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:48:\"tabs-support-and-crowdfunding-iamge-900x506.webp\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:32886;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(67180,39338,'hide_hero','0'),(67181,39338,'_hide_hero','field_66a2380fcda39'),(67182,39338,'hero_title','Funding Your Course'),(67183,39338,'_hero_title','field_617571fe285e8'),(67184,39338,'hero_text','Discover the multiple options when it comes to funding and paying for your course with us.'),(67185,39338,'_hero_text','field_6175723c285e9'),(67186,39338,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(67187,39338,'_hero_actions_0_button','field_61757281285eb'),(67188,39338,'hero_actions','1'),(67189,39338,'_hero_actions','field_61757270285ea'),(67190,39338,'hero_style','default'),(67191,39338,'_hero_style','field_62051d9dc5324'),(67192,39338,'hero_image_pos_x','right'),(67193,39338,'_hero_image_pos_x','field_62ec3d05390bb'),(67194,39338,'hero_image_pos_y','top'),(67195,39338,'_hero_image_pos_y','field_62ec3d05390bc'),(67196,39338,'hero_image_pos',''),(67197,39338,'_hero_image_pos','field_62ec3d05390ba'),(67198,39338,'fft_hide_from_listings','0'),(67199,39338,'_fft_hide_from_listings','field_61f1320446ab2'),(67200,39338,'fft_page_format','default'),(67201,39338,'_fft_page_format','field_61ae213f1f218'),(67202,39338,'fft_hide_nav','0'),(67203,39338,'_fft_hide_nav','field_635bd5e43527c'),(67204,39338,'fft_hide_header_call_to_action','0'),(67205,39338,'_fft_hide_header_call_to_action','field_635bd6723527d'),(67206,39338,'fft_page_sitemap','0'),(67207,39338,'_fft_page_sitemap','field_61af9b34e8181'),(67208,39338,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:16:\"standard_content\";i:3;s:4:\"tabs\";}'),(67209,39338,'_blocks','field_6176696113096'),(67210,39338,'_thumbnail_id','39334'),(67211,39338,'__thumbnail_id','field_617570855ddaf'),(67212,39338,'blocks_0_acfe_flexible_toggle',''),(67213,39338,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(67214,39338,'blocks_0_acfe_flexible_layout_title','Icons'),(67215,39338,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(67216,39338,'blocks_0_options_theme','#ffffff'),(67217,39338,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(67218,39338,'blocks_0_options_format','grid'),(67219,39338,'_blocks_0_options_format','field_64bfde9a90690'),(67220,39338,'blocks_0_options',''),(67221,39338,'_blocks_0_options','field_64bfdd9b90684'),(67222,39338,'blocks_0_row_content_title',''),(67223,39338,'_blocks_0_row_content_title','field_64bfdd9b90687'),(67224,39338,'blocks_0_row_content_heading','Fees & Funding Options'),(67225,39338,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(67226,39338,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(67227,39338,'_blocks_0_row_content_text','field_64bfdd9b90689'),(67228,39338,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(67229,39338,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(67230,39338,'blocks_0_row_content_actions','1'),(67231,39338,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(67232,39338,'blocks_0_row_content',''),(67233,39338,'_blocks_0_row_content','field_64bfdd9b90686'),(67234,39338,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(67235,39338,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(67236,39338,'blocks_0_icon_row_items_0_label','Pay in full'),(67237,39338,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(67238,39338,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(67239,39338,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(67240,39338,'blocks_0_icon_row_items_1_icon','finance.svg'),(67241,39338,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(67242,39338,'blocks_0_icon_row_items_1_label','0% finance*'),(67243,39338,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(67244,39338,'blocks_0_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance'),(67245,39338,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(67246,39338,'blocks_0_icon_row_items_2_icon','deposit.svg'),(67247,39338,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(67248,39338,'blocks_0_icon_row_items_2_label','Deposit & balance'),(67249,39338,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(67250,39338,'blocks_0_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(67251,39338,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(67252,39338,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(67253,39338,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(67254,39338,'blocks_0_icon_row_items_3_label','FlexPay'),(67255,39338,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(67256,39338,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(67257,39338,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(67258,39338,'blocks_0_icon_row_items','4'),(67259,39338,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(67260,39338,'blocks_1_acfe_flexible_toggle',''),(67261,39338,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(67262,39338,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(67263,39338,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(67264,39338,'blocks_1_options_theme','#ffffff'),(67265,39338,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(67266,39338,'blocks_1_options_reverse','0'),(67267,39338,'_blocks_1_options_reverse','field_61768049bb8ac'),(67268,39338,'blocks_1_options',''),(67269,39338,'_blocks_1_options','field_617682517c334'),(67270,39338,'blocks_1_split_5050_image','39335'),(67271,39338,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(67272,39338,'blocks_1_split_5050_video',''),(67273,39338,'_blocks_1_split_5050_video','field_6239f3160848a'),(67274,39338,'blocks_1_split_5050_content_title',''),(67275,39338,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(67276,39338,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(67277,39338,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(67278,39338,'blocks_1_split_5050_content_text','Training for a new career is a big investment and as with all things in life you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(67279,39338,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(67280,39338,'blocks_1_split_5050_content_actions',''),(67281,39338,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(67282,39338,'blocks_1_split_5050_content',''),(67283,39338,'_blocks_1_split_5050_content','field_61767afceb8ba'),(67284,39338,'blocks_2_acfe_flexible_toggle',''),(67285,39338,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(67286,39338,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(67287,39338,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(67288,39338,'blocks_2_content','<h2>How else can you fund your course?</h2>'),(67289,39338,'_blocks_2_content','field_6193c9b5eac84'),(67290,39338,'blocks_3_acfe_flexible_toggle',''),(67291,39338,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(67292,39338,'blocks_3_acfe_flexible_layout_title','Tabs'),(67293,39338,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(67294,39338,'blocks_3_options_theme','#b61234'),(67295,39338,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(67296,39338,'blocks_3_options',''),(67297,39338,'_blocks_3_options','field_6177cfcd8140f'),(67298,39338,'blocks_3_tabs_0_tab_label','Earn as you learn'),(67299,39338,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(67300,39338,'blocks_3_tabs_0_tab_content_title',''),(67301,39338,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(67302,39338,'blocks_3_tabs_0_tab_content_heading','Earn as you learn'),(67303,39338,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(67304,39338,'blocks_3_tabs_0_tab_content_text','In some of our courses, you have the ability to start earning as you learn after just 2-3 months of studying.\r\n\r\nOur Personal Training Course structure means that as soon as you qualify at Level 2 you can start earning from your qualification, this usually takes between 2-3 months and could cover the monthly costs of your course.'),(67305,39338,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(67306,39338,'blocks_3_tabs_0_tab_content_actions',''),(67307,39338,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(67308,39338,'blocks_3_tabs_0_tab_content',''),(67309,39338,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(67310,39338,'blocks_3_tabs_0_tab_image','39252'),(67311,39338,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(67312,39338,'blocks_3_tabs_1_tab_label','Support and Crowdfunding'),(67313,39338,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(67314,39338,'blocks_3_tabs_1_tab_content_title',''),(67315,39338,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(67316,39338,'blocks_3_tabs_1_tab_content_heading','Support and Crowdfunding'),(67317,39338,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(67318,39338,'blocks_3_tabs_1_tab_content_text','<h2>Crowdfunding</h2>\r\nA modern way to fund education will require some great marketing skills and a go-getting attitude. No one person could fund training worth £2,000 but 400 people willing to contribute an average of £5 each will soon get you started by using sites such as Crowdfunder, Kickstarter, and Patreon.\r\n<h2>ELCAS for Armed Forces personnel</h2>\r\nWe offer great support for armed forces personnel and are an approved training provider for the Enhanced Learning Credits Administrative Service (ELCAS). If you are currently serving or are ex-services, you are eligible for financial support in training with us, the amount you’re entitled to depends upon your length of service.'),(67319,39338,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(67320,39338,'blocks_3_tabs_1_tab_content_actions',''),(67321,39338,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(67322,39338,'blocks_3_tabs_1_tab_content',''),(67323,39338,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(67324,39338,'blocks_3_tabs_1_tab_image','39337'),(67325,39338,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(67326,39338,'blocks_3_tabs_2_tab_label','Self Funded'),(67327,39338,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(67328,39338,'blocks_3_tabs_2_tab_content_title',''),(67329,39338,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(67330,39338,'blocks_3_tabs_2_tab_content_heading','Work While Studying'),(67331,39338,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(67332,39338,'blocks_3_tabs_2_tab_content_text','A lot of people who decide to study a health or fitness qualification are looking to change careers. People who do this will usually already have a job working in either a completely different industry or within the health &amp; fitness industry as a non-professional. Most people in this position will continue working while they study to fund their course and keep a steady income until they are able to jump into their new career.\r\n\r\nThis will usually happen slowly with people gaining a few clients to start with whilst also keeping their original job. As their client base grows, they will then be able to quit their job and become a full-time health &amp; fitness professional.'),(67333,39338,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(67334,39338,'blocks_3_tabs_2_tab_content_actions',''),(67335,39338,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(67336,39338,'blocks_3_tabs_2_tab_content',''),(67337,39338,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(67338,39338,'blocks_3_tabs_2_tab_image','39251'),(67339,39338,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(67340,39338,'blocks_3_tabs','3'),(67341,39338,'_blocks_3_tabs','field_6177cff281419'),(67342,39339,'hide_hero','0'),(67343,39339,'_hide_hero','field_66a2380fcda39'),(67344,39339,'hero_title','Funding Your Course'),(67345,39339,'_hero_title','field_617571fe285e8'),(67346,39339,'hero_text','Discover the multiple options when it comes to funding and paying for your course with us.'),(67347,39339,'_hero_text','field_6175723c285e9'),(67348,39339,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(67349,39339,'_hero_actions_0_button','field_61757281285eb'),(67350,39339,'hero_actions','1'),(67351,39339,'_hero_actions','field_61757270285ea'),(67352,39339,'hero_style','default'),(67353,39339,'_hero_style','field_62051d9dc5324'),(67354,39339,'hero_image_pos_x','right'),(67355,39339,'_hero_image_pos_x','field_62ec3d05390bb'),(67356,39339,'hero_image_pos_y','top'),(67357,39339,'_hero_image_pos_y','field_62ec3d05390bc'),(67358,39339,'hero_image_pos',''),(67359,39339,'_hero_image_pos','field_62ec3d05390ba'),(67360,39339,'fft_hide_from_listings','0'),(67361,39339,'_fft_hide_from_listings','field_61f1320446ab2'),(67362,39339,'fft_page_format','default'),(67363,39339,'_fft_page_format','field_61ae213f1f218'),(67364,39339,'fft_hide_nav','0'),(67365,39339,'_fft_hide_nav','field_635bd5e43527c'),(67366,39339,'fft_hide_header_call_to_action','0'),(67367,39339,'_fft_hide_header_call_to_action','field_635bd6723527d'),(67368,39339,'fft_page_sitemap','0'),(67369,39339,'_fft_page_sitemap','field_61af9b34e8181'),(67370,39339,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:16:\"standard_content\";i:3;s:4:\"tabs\";}'),(67371,39339,'_blocks','field_6176696113096'),(67372,39339,'_thumbnail_id','39334'),(67373,39339,'__thumbnail_id','field_617570855ddaf'),(67374,39339,'blocks_0_acfe_flexible_toggle',''),(67375,39339,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(67376,39339,'blocks_0_acfe_flexible_layout_title','Icons'),(67377,39339,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(67378,39339,'blocks_0_options_theme','#ffffff'),(67379,39339,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(67380,39339,'blocks_0_options_format','grid'),(67381,39339,'_blocks_0_options_format','field_64bfde9a90690'),(67382,39339,'blocks_0_options',''),(67383,39339,'_blocks_0_options','field_64bfdd9b90684'),(67384,39339,'blocks_0_row_content_title',''),(67385,39339,'_blocks_0_row_content_title','field_64bfdd9b90687'),(67386,39339,'blocks_0_row_content_heading','Fees & Funding Options'),(67387,39339,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(67388,39339,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(67389,39339,'_blocks_0_row_content_text','field_64bfdd9b90689'),(67390,39339,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(67391,39339,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(67392,39339,'blocks_0_row_content_actions','1'),(67393,39339,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(67394,39339,'blocks_0_row_content',''),(67395,39339,'_blocks_0_row_content','field_64bfdd9b90686'),(67396,39339,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(67397,39339,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(67398,39339,'blocks_0_icon_row_items_0_label','Pay in full'),(67399,39339,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(67400,39339,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(67401,39339,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(67402,39339,'blocks_0_icon_row_items_1_icon','finance.svg'),(67403,39339,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(67404,39339,'blocks_0_icon_row_items_1_label','0% finance*'),(67405,39339,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(67406,39339,'blocks_0_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance'),(67407,39339,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(67408,39339,'blocks_0_icon_row_items_2_icon','deposit.svg'),(67409,39339,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(67410,39339,'blocks_0_icon_row_items_2_label','Deposit & balance'),(67411,39339,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(67412,39339,'blocks_0_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(67413,39339,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(67414,39339,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(67415,39339,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(67416,39339,'blocks_0_icon_row_items_3_label','FlexPay'),(67417,39339,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(67418,39339,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(67419,39339,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(67420,39339,'blocks_0_icon_row_items','4'),(67421,39339,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(67422,39339,'blocks_1_acfe_flexible_toggle',''),(67423,39339,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(67424,39339,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(67425,39339,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(67426,39339,'blocks_1_options_theme','#ffffff'),(67427,39339,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(67428,39339,'blocks_1_options_reverse','0'),(67429,39339,'_blocks_1_options_reverse','field_61768049bb8ac'),(67430,39339,'blocks_1_options',''),(67431,39339,'_blocks_1_options','field_617682517c334'),(67432,39339,'blocks_1_split_5050_image','39335'),(67433,39339,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(67434,39339,'blocks_1_split_5050_video',''),(67435,39339,'_blocks_1_split_5050_video','field_6239f3160848a'),(67436,39339,'blocks_1_split_5050_content_title',''),(67437,39339,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(67438,39339,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(67439,39339,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(67440,39339,'blocks_1_split_5050_content_text','Training for a new career is a big investment and as with all things in life you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(67441,39339,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(67442,39339,'blocks_1_split_5050_content_actions',''),(67443,39339,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(67444,39339,'blocks_1_split_5050_content',''),(67445,39339,'_blocks_1_split_5050_content','field_61767afceb8ba'),(67446,39339,'blocks_2_acfe_flexible_toggle',''),(67447,39339,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(67448,39339,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(67449,39339,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(67450,39339,'blocks_2_content','<h2>How else can you fund your course?</h2>'),(67451,39339,'_blocks_2_content','field_6193c9b5eac84'),(67452,39339,'blocks_3_acfe_flexible_toggle',''),(67453,39339,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(67454,39339,'blocks_3_acfe_flexible_layout_title','Tabs'),(67455,39339,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(67456,39339,'blocks_3_options_theme','#f5f5f5'),(67457,39339,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(67458,39339,'blocks_3_options',''),(67459,39339,'_blocks_3_options','field_6177cfcd8140f'),(67460,39339,'blocks_3_tabs_0_tab_label','Earn as you learn'),(67461,39339,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(67462,39339,'blocks_3_tabs_0_tab_content_title',''),(67463,39339,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(67464,39339,'blocks_3_tabs_0_tab_content_heading','Earn as you learn'),(67465,39339,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(67466,39339,'blocks_3_tabs_0_tab_content_text','In some of our courses, you have the ability to start earning as you learn after just 2-3 months of studying.\r\n\r\nOur Personal Training Course structure means that as soon as you qualify at Level 2 you can start earning from your qualification, this usually takes between 2-3 months and could cover the monthly costs of your course.'),(67467,39339,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(67468,39339,'blocks_3_tabs_0_tab_content_actions',''),(67469,39339,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(67470,39339,'blocks_3_tabs_0_tab_content',''),(67471,39339,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(67472,39339,'blocks_3_tabs_0_tab_image','39252'),(67473,39339,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(67474,39339,'blocks_3_tabs_1_tab_label','Support and Crowdfunding'),(67475,39339,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(67476,39339,'blocks_3_tabs_1_tab_content_title',''),(67477,39339,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(67478,39339,'blocks_3_tabs_1_tab_content_heading','Support and Crowdfunding'),(67479,39339,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(67480,39339,'blocks_3_tabs_1_tab_content_text','<h2>Crowdfunding</h2>\r\nA modern way to fund education will require some great marketing skills and a go-getting attitude. No one person could fund training worth £2,000 but 400 people willing to contribute an average of £5 each will soon get you started by using sites such as Crowdfunder, Kickstarter, and Patreon.\r\n<h2>ELCAS for Armed Forces personnel</h2>\r\nWe offer great support for armed forces personnel and are an approved training provider for the Enhanced Learning Credits Administrative Service (ELCAS). If you are currently serving or are ex-services, you are eligible for financial support in training with us, the amount you’re entitled to depends upon your length of service.'),(67481,39339,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(67482,39339,'blocks_3_tabs_1_tab_content_actions',''),(67483,39339,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(67484,39339,'blocks_3_tabs_1_tab_content',''),(67485,39339,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(67486,39339,'blocks_3_tabs_1_tab_image','39337'),(67487,39339,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(67488,39339,'blocks_3_tabs_2_tab_label','Self Funded'),(67489,39339,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(67490,39339,'blocks_3_tabs_2_tab_content_title',''),(67491,39339,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(67492,39339,'blocks_3_tabs_2_tab_content_heading','Work While Studying'),(67493,39339,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(67494,39339,'blocks_3_tabs_2_tab_content_text','A lot of people who decide to study a health or fitness qualification are looking to change careers. People who do this will usually already have a job working in either a completely different industry or within the health &amp; fitness industry as a non-professional. Most people in this position will continue working while they study to fund their course and keep a steady income until they are able to jump into their new career.\r\n\r\nThis will usually happen slowly with people gaining a few clients to start with whilst also keeping their original job. As their client base grows, they will then be able to quit their job and become a full-time health &amp; fitness professional.'),(67495,39339,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(67496,39339,'blocks_3_tabs_2_tab_content_actions',''),(67497,39339,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(67498,39339,'blocks_3_tabs_2_tab_content',''),(67499,39339,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(67500,39339,'blocks_3_tabs_2_tab_image','39251'),(67501,39339,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(67502,39339,'blocks_3_tabs','3'),(67503,39339,'_blocks_3_tabs','field_6177cff281419'),(67504,39340,'hide_hero','0'),(67505,39340,'_hide_hero','field_66a2380fcda39'),(67506,39340,'hero_title','Funding Your Course'),(67507,39340,'_hero_title','field_617571fe285e8'),(67508,39340,'hero_text','Discover the multiple options when it comes to funding and paying for your course with us.'),(67509,39340,'_hero_text','field_6175723c285e9'),(67510,39340,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(67511,39340,'_hero_actions_0_button','field_61757281285eb'),(67512,39340,'hero_actions','1'),(67513,39340,'_hero_actions','field_61757270285ea'),(67514,39340,'hero_style','default'),(67515,39340,'_hero_style','field_62051d9dc5324'),(67516,39340,'hero_image_pos_x','right'),(67517,39340,'_hero_image_pos_x','field_62ec3d05390bb'),(67518,39340,'hero_image_pos_y','top'),(67519,39340,'_hero_image_pos_y','field_62ec3d05390bc'),(67520,39340,'hero_image_pos',''),(67521,39340,'_hero_image_pos','field_62ec3d05390ba'),(67522,39340,'fft_hide_from_listings','0'),(67523,39340,'_fft_hide_from_listings','field_61f1320446ab2'),(67524,39340,'fft_page_format','default'),(67525,39340,'_fft_page_format','field_61ae213f1f218'),(67526,39340,'fft_hide_nav','0'),(67527,39340,'_fft_hide_nav','field_635bd5e43527c'),(67528,39340,'fft_hide_header_call_to_action','0'),(67529,39340,'_fft_hide_header_call_to_action','field_635bd6723527d'),(67530,39340,'fft_page_sitemap','0'),(67531,39340,'_fft_page_sitemap','field_61af9b34e8181'),(67532,39340,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:16:\"standard_content\";i:3;s:4:\"tabs\";}'),(67533,39340,'_blocks','field_6176696113096'),(67534,39340,'_thumbnail_id','39334'),(67535,39340,'__thumbnail_id','field_617570855ddaf'),(67536,39340,'blocks_0_acfe_flexible_toggle',''),(67537,39340,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(67538,39340,'blocks_0_acfe_flexible_layout_title','Icons'),(67539,39340,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(67540,39340,'blocks_0_options_theme','#ffffff'),(67541,39340,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(67542,39340,'blocks_0_options_format','grid'),(67543,39340,'_blocks_0_options_format','field_64bfde9a90690'),(67544,39340,'blocks_0_options',''),(67545,39340,'_blocks_0_options','field_64bfdd9b90684'),(67546,39340,'blocks_0_row_content_title',''),(67547,39340,'_blocks_0_row_content_title','field_64bfdd9b90687'),(67548,39340,'blocks_0_row_content_heading','Fees & Funding Options'),(67549,39340,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(67550,39340,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(67551,39340,'_blocks_0_row_content_text','field_64bfdd9b90689'),(67552,39340,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(67553,39340,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(67554,39340,'blocks_0_row_content_actions','1'),(67555,39340,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(67556,39340,'blocks_0_row_content',''),(67557,39340,'_blocks_0_row_content','field_64bfdd9b90686'),(67558,39340,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(67559,39340,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(67560,39340,'blocks_0_icon_row_items_0_label','Pay in full'),(67561,39340,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(67562,39340,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(67563,39340,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(67564,39340,'blocks_0_icon_row_items_1_icon','finance.svg'),(67565,39340,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(67566,39340,'blocks_0_icon_row_items_1_label','0% finance*'),(67567,39340,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(67568,39340,'blocks_0_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance'),(67569,39340,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(67570,39340,'blocks_0_icon_row_items_2_icon','deposit.svg'),(67571,39340,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(67572,39340,'blocks_0_icon_row_items_2_label','Deposit & balance'),(67573,39340,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(67574,39340,'blocks_0_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(67575,39340,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(67576,39340,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(67577,39340,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(67578,39340,'blocks_0_icon_row_items_3_label','FlexPay'),(67579,39340,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(67580,39340,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(67581,39340,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(67582,39340,'blocks_0_icon_row_items','4'),(67583,39340,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(67584,39340,'blocks_1_acfe_flexible_toggle',''),(67585,39340,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(67586,39340,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(67587,39340,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(67588,39340,'blocks_1_options_theme','#ffffff'),(67589,39340,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(67590,39340,'blocks_1_options_reverse','0'),(67591,39340,'_blocks_1_options_reverse','field_61768049bb8ac'),(67592,39340,'blocks_1_options',''),(67593,39340,'_blocks_1_options','field_617682517c334'),(67594,39340,'blocks_1_split_5050_image','39335'),(67595,39340,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(67596,39340,'blocks_1_split_5050_video',''),(67597,39340,'_blocks_1_split_5050_video','field_6239f3160848a'),(67598,39340,'blocks_1_split_5050_content_title',''),(67599,39340,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(67600,39340,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(67601,39340,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(67602,39340,'blocks_1_split_5050_content_text','Training for a new career is a big investment and as with all things in life you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(67603,39340,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(67604,39340,'blocks_1_split_5050_content_actions',''),(67605,39340,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(67606,39340,'blocks_1_split_5050_content',''),(67607,39340,'_blocks_1_split_5050_content','field_61767afceb8ba'),(67608,39340,'blocks_2_acfe_flexible_toggle',''),(67609,39340,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(67610,39340,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(67611,39340,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(67612,39340,'blocks_2_content','<h2>How else can you fund your course?</h2>'),(67613,39340,'_blocks_2_content','field_6193c9b5eac84'),(67614,39340,'blocks_3_acfe_flexible_toggle',''),(67615,39340,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(67616,39340,'blocks_3_acfe_flexible_layout_title','Tabs'),(67617,39340,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(67618,39340,'blocks_3_options_theme','#ffffff'),(67619,39340,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(67620,39340,'blocks_3_options',''),(67621,39340,'_blocks_3_options','field_6177cfcd8140f'),(67622,39340,'blocks_3_tabs_0_tab_label','Earn as you learn'),(67623,39340,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(67624,39340,'blocks_3_tabs_0_tab_content_title',''),(67625,39340,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(67626,39340,'blocks_3_tabs_0_tab_content_heading','Earn as you learn'),(67627,39340,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(67628,39340,'blocks_3_tabs_0_tab_content_text','In some of our courses, you have the ability to start earning as you learn after just 2-3 months of studying.\r\n\r\nOur Personal Training Course structure means that as soon as you qualify at Level 2 you can start earning from your qualification, this usually takes between 2-3 months and could cover the monthly costs of your course.'),(67629,39340,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(67630,39340,'blocks_3_tabs_0_tab_content_actions',''),(67631,39340,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(67632,39340,'blocks_3_tabs_0_tab_content',''),(67633,39340,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(67634,39340,'blocks_3_tabs_0_tab_image','39252'),(67635,39340,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(67636,39340,'blocks_3_tabs_1_tab_label','Support and Crowdfunding'),(67637,39340,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(67638,39340,'blocks_3_tabs_1_tab_content_title',''),(67639,39340,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(67640,39340,'blocks_3_tabs_1_tab_content_heading','Support and Crowdfunding'),(67641,39340,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(67642,39340,'blocks_3_tabs_1_tab_content_text','<h2>Crowdfunding</h2>\r\nA modern way to fund education will require some great marketing skills and a go-getting attitude. No one person could fund training worth £2,000 but 400 people willing to contribute an average of £5 each will soon get you started by using sites such as Crowdfunder, Kickstarter, and Patreon.\r\n<h2>ELCAS for Armed Forces personnel</h2>\r\nWe offer great support for armed forces personnel and are an approved training provider for the Enhanced Learning Credits Administrative Service (ELCAS). If you are currently serving or are ex-services, you are eligible for financial support in training with us, the amount you’re entitled to depends upon your length of service.'),(67643,39340,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(67644,39340,'blocks_3_tabs_1_tab_content_actions',''),(67645,39340,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(67646,39340,'blocks_3_tabs_1_tab_content',''),(67647,39340,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(67648,39340,'blocks_3_tabs_1_tab_image','39337'),(67649,39340,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(67650,39340,'blocks_3_tabs_2_tab_label','Self Funded'),(67651,39340,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(67652,39340,'blocks_3_tabs_2_tab_content_title',''),(67653,39340,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(67654,39340,'blocks_3_tabs_2_tab_content_heading','Work While Studying'),(67655,39340,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(67656,39340,'blocks_3_tabs_2_tab_content_text','A lot of people who decide to study a health or fitness qualification are looking to change careers. People who do this will usually already have a job working in either a completely different industry or within the health &amp; fitness industry as a non-professional. Most people in this position will continue working while they study to fund their course and keep a steady income until they are able to jump into their new career.\r\n\r\nThis will usually happen slowly with people gaining a few clients to start with whilst also keeping their original job. As their client base grows, they will then be able to quit their job and become a full-time health &amp; fitness professional.'),(67657,39340,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(67658,39340,'blocks_3_tabs_2_tab_content_actions',''),(67659,39340,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(67660,39340,'blocks_3_tabs_2_tab_content',''),(67661,39340,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(67662,39340,'blocks_3_tabs_2_tab_image','39251'),(67663,39340,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(67664,39340,'blocks_3_tabs','3'),(67665,39340,'_blocks_3_tabs','field_6177cff281419'),(67678,39341,'hide_hero','0'),(67679,39341,'_hide_hero','field_66a2380fcda39'),(67680,39341,'hero_title','Funding Your Course'),(67681,39341,'_hero_title','field_617571fe285e8'),(67682,39341,'hero_text','Discover the multiple options when it comes to funding and paying for your course with us.'),(67683,39341,'_hero_text','field_6175723c285e9'),(67684,39341,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(67685,39341,'_hero_actions_0_button','field_61757281285eb'),(67686,39341,'hero_actions','1'),(67687,39341,'_hero_actions','field_61757270285ea'),(67688,39341,'hero_style','default'),(67689,39341,'_hero_style','field_62051d9dc5324'),(67690,39341,'hero_image_pos_x','right'),(67691,39341,'_hero_image_pos_x','field_62ec3d05390bb'),(67692,39341,'hero_image_pos_y','top'),(67693,39341,'_hero_image_pos_y','field_62ec3d05390bc'),(67694,39341,'hero_image_pos',''),(67695,39341,'_hero_image_pos','field_62ec3d05390ba'),(67696,39341,'fft_hide_from_listings','0'),(67697,39341,'_fft_hide_from_listings','field_61f1320446ab2'),(67698,39341,'fft_page_format','default'),(67699,39341,'_fft_page_format','field_61ae213f1f218'),(67700,39341,'fft_hide_nav','0'),(67701,39341,'_fft_hide_nav','field_635bd5e43527c'),(67702,39341,'fft_hide_header_call_to_action','0'),(67703,39341,'_fft_hide_header_call_to_action','field_635bd6723527d'),(67704,39341,'fft_page_sitemap','0'),(67705,39341,'_fft_page_sitemap','field_61af9b34e8181'),(67706,39341,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:4:\"tabs\";}'),(67707,39341,'_blocks','field_6176696113096'),(67708,39341,'_thumbnail_id','39334'),(67709,39341,'__thumbnail_id','field_617570855ddaf'),(67710,39341,'blocks_0_acfe_flexible_toggle',''),(67711,39341,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(67712,39341,'blocks_0_acfe_flexible_layout_title','Icons'),(67713,39341,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(67714,39341,'blocks_0_options_theme','#ffffff'),(67715,39341,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(67716,39341,'blocks_0_options_format','grid'),(67717,39341,'_blocks_0_options_format','field_64bfde9a90690'),(67718,39341,'blocks_0_options',''),(67719,39341,'_blocks_0_options','field_64bfdd9b90684'),(67720,39341,'blocks_0_row_content_title',''),(67721,39341,'_blocks_0_row_content_title','field_64bfdd9b90687'),(67722,39341,'blocks_0_row_content_heading','Fees & Funding Options'),(67723,39341,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(67724,39341,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(67725,39341,'_blocks_0_row_content_text','field_64bfdd9b90689'),(67726,39341,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(67727,39341,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(67728,39341,'blocks_0_row_content_actions','1'),(67729,39341,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(67730,39341,'blocks_0_row_content',''),(67731,39341,'_blocks_0_row_content','field_64bfdd9b90686'),(67732,39341,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(67733,39341,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(67734,39341,'blocks_0_icon_row_items_0_label','Pay in full'),(67735,39341,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(67736,39341,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(67737,39341,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(67738,39341,'blocks_0_icon_row_items_1_icon','finance.svg'),(67739,39341,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(67740,39341,'blocks_0_icon_row_items_1_label','0% finance*'),(67741,39341,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(67742,39341,'blocks_0_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance'),(67743,39341,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(67744,39341,'blocks_0_icon_row_items_2_icon','deposit.svg'),(67745,39341,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(67746,39341,'blocks_0_icon_row_items_2_label','Deposit & balance'),(67747,39341,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(67748,39341,'blocks_0_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(67749,39341,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(67750,39341,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(67751,39341,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(67752,39341,'blocks_0_icon_row_items_3_label','FlexPay'),(67753,39341,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(67754,39341,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(67755,39341,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(67756,39341,'blocks_0_icon_row_items','4'),(67757,39341,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(67758,39341,'blocks_1_acfe_flexible_toggle',''),(67759,39341,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(67760,39341,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(67761,39341,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(67762,39341,'blocks_1_options_theme','#ffffff'),(67763,39341,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(67764,39341,'blocks_1_options_reverse','0'),(67765,39341,'_blocks_1_options_reverse','field_61768049bb8ac'),(67766,39341,'blocks_1_options',''),(67767,39341,'_blocks_1_options','field_617682517c334'),(67768,39341,'blocks_1_split_5050_image','39335'),(67769,39341,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(67770,39341,'blocks_1_split_5050_video',''),(67771,39341,'_blocks_1_split_5050_video','field_6239f3160848a'),(67772,39341,'blocks_1_split_5050_content_title',''),(67773,39341,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(67774,39341,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(67775,39341,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(67776,39341,'blocks_1_split_5050_content_text','Training for a new career is a big investment and as with all things in life you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(67777,39341,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(67778,39341,'blocks_1_split_5050_content_actions',''),(67779,39341,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(67780,39341,'blocks_1_split_5050_content',''),(67781,39341,'_blocks_1_split_5050_content','field_61767afceb8ba'),(67782,39341,'blocks_3_acfe_flexible_toggle',''),(67783,39341,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(67784,39341,'blocks_3_acfe_flexible_layout_title','Tabs'),(67785,39341,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(67786,39341,'blocks_3_options_theme','#ffffff'),(67787,39341,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(67788,39341,'blocks_3_options',''),(67789,39341,'_blocks_3_options','field_6177cfcd8140f'),(67790,39341,'blocks_3_tabs_0_tab_label','Earn as you learn'),(67791,39341,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(67792,39341,'blocks_3_tabs_0_tab_content_title',''),(67793,39341,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(67794,39341,'blocks_3_tabs_0_tab_content_heading','Earn as you learn'),(67795,39341,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(67796,39341,'blocks_3_tabs_0_tab_content_text','In some of our courses, you have the ability to start earning as you learn after just 2-3 months of studying.\r\n\r\nOur Personal Training Course structure means that as soon as you qualify at Level 2 you can start earning from your qualification, this usually takes between 2-3 months and could cover the monthly costs of your course.'),(67797,39341,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(67798,39341,'blocks_3_tabs_0_tab_content_actions',''),(67799,39341,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(67800,39341,'blocks_3_tabs_0_tab_content',''),(67801,39341,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(67802,39341,'blocks_3_tabs_0_tab_image','39252'),(67803,39341,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(67804,39341,'blocks_3_tabs_1_tab_label','Support and Crowdfunding'),(67805,39341,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(67806,39341,'blocks_3_tabs_1_tab_content_title',''),(67807,39341,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(67808,39341,'blocks_3_tabs_1_tab_content_heading','Support and Crowdfunding'),(67809,39341,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(67810,39341,'blocks_3_tabs_1_tab_content_text','<h2>Crowdfunding</h2>\r\nA modern way to fund education will require some great marketing skills and a go-getting attitude. No one person could fund training worth £2,000 but 400 people willing to contribute an average of £5 each will soon get you started by using sites such as Crowdfunder, Kickstarter, and Patreon.\r\n<h2>ELCAS for Armed Forces personnel</h2>\r\nWe offer great support for armed forces personnel and are an approved training provider for the Enhanced Learning Credits Administrative Service (ELCAS). If you are currently serving or are ex-services, you are eligible for financial support in training with us, the amount you’re entitled to depends upon your length of service.'),(67811,39341,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(67812,39341,'blocks_3_tabs_1_tab_content_actions',''),(67813,39341,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(67814,39341,'blocks_3_tabs_1_tab_content',''),(67815,39341,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(67816,39341,'blocks_3_tabs_1_tab_image','39337'),(67817,39341,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(67818,39341,'blocks_3_tabs_2_tab_label','Self Funded'),(67819,39341,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(67820,39341,'blocks_3_tabs_2_tab_content_title',''),(67821,39341,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(67822,39341,'blocks_3_tabs_2_tab_content_heading','Work While Studying'),(67823,39341,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(67824,39341,'blocks_3_tabs_2_tab_content_text','A lot of people who decide to study a health or fitness qualification are looking to change careers. People who do this will usually already have a job working in either a completely different industry or within the health &amp; fitness industry as a non-professional. Most people in this position will continue working while they study to fund their course and keep a steady income until they are able to jump into their new career.\r\n\r\nThis will usually happen slowly with people gaining a few clients to start with whilst also keeping their original job. As their client base grows, they will then be able to quit their job and become a full-time health &amp; fitness professional.'),(67825,39341,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(67826,39341,'blocks_3_tabs_2_tab_content_actions',''),(67827,39341,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(67828,39341,'blocks_3_tabs_2_tab_content',''),(67829,39341,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(67830,39341,'blocks_3_tabs_2_tab_image','39251'),(67831,39341,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(67832,39341,'blocks_3_tabs','3'),(67833,39341,'_blocks_3_tabs','field_6177cff281419'),(67834,39341,'blocks_2_acfe_flexible_toggle',''),(67835,39341,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(67836,39341,'blocks_2_acfe_flexible_layout_title','Text Block'),(67837,39341,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(67838,39341,'blocks_2_options_theme','#ffffff'),(67839,39341,'_blocks_2_options_theme','field_6176830e2ad17'),(67840,39341,'blocks_2_options',''),(67841,39341,'_blocks_2_options','field_6176830e2ad16'),(67842,39341,'blocks_2_text_block_heading','How else can you fund your course ?'),(67843,39341,'_blocks_2_text_block_heading','field_617669d413097'),(67844,39341,'blocks_2_text_block_content',''),(67845,39341,'_blocks_2_text_block_content','field_617669ec13098'),(67846,39329,'blocks_2_acfe_flexible_toggle',''),(67847,39329,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(67848,39329,'blocks_2_acfe_flexible_layout_title','Form'),(67849,39329,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(67850,39329,'blocks_2_row_content_format','standard'),(67851,39329,'_blocks_2_row_content_format','field_6481ead962881'),(67852,39329,'blocks_2_row_content_title',''),(67853,39329,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(67854,39329,'blocks_2_row_content_heading','We\'re here to help you succeed'),(67855,39329,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(67856,39329,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that best suits their needs.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to offer no-obligation advice and help you create a payment plan that suits you.'),(67857,39329,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(67858,39329,'blocks_2_row_content_actions',''),(67859,39329,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(67860,39329,'blocks_2_row_content',''),(67861,39329,'_blocks_2_row_content','field_61a0f5f5b3db0'),(67862,39329,'blocks_2_row_form',''),(67863,39329,'_blocks_2_row_form','field_61a4ff2c0b08e'),(67864,39329,'blocks_2_row_form_button_label',''),(67865,39329,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(67866,39342,'hide_hero','0'),(67867,39342,'_hide_hero','field_66a2380fcda39'),(67868,39342,'hero_title','Funding Your Course'),(67869,39342,'_hero_title','field_617571fe285e8'),(67870,39342,'hero_text','Discover the multiple options when it comes to funding and paying for your course with us.'),(67871,39342,'_hero_text','field_6175723c285e9'),(67872,39342,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(67873,39342,'_hero_actions_0_button','field_61757281285eb'),(67874,39342,'hero_actions','1'),(67875,39342,'_hero_actions','field_61757270285ea'),(67876,39342,'hero_style','default'),(67877,39342,'_hero_style','field_62051d9dc5324'),(67878,39342,'hero_image_pos_x','right'),(67879,39342,'_hero_image_pos_x','field_62ec3d05390bb'),(67880,39342,'hero_image_pos_y','top'),(67881,39342,'_hero_image_pos_y','field_62ec3d05390bc'),(67882,39342,'hero_image_pos',''),(67883,39342,'_hero_image_pos','field_62ec3d05390ba'),(67884,39342,'fft_hide_from_listings','0'),(67885,39342,'_fft_hide_from_listings','field_61f1320446ab2'),(67886,39342,'fft_page_format','default'),(67887,39342,'_fft_page_format','field_61ae213f1f218'),(67888,39342,'fft_hide_nav','0'),(67889,39342,'_fft_hide_nav','field_635bd5e43527c'),(67890,39342,'fft_hide_header_call_to_action','0'),(67891,39342,'_fft_hide_header_call_to_action','field_635bd6723527d'),(67892,39342,'fft_page_sitemap','0'),(67893,39342,'_fft_page_sitemap','field_61af9b34e8181'),(67894,39342,'blocks','a:3:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";}'),(67895,39342,'_blocks','field_6176696113096'),(67896,39342,'_thumbnail_id','39334'),(67897,39342,'__thumbnail_id','field_617570855ddaf'),(67898,39342,'blocks_0_acfe_flexible_toggle',''),(67899,39342,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(67900,39342,'blocks_0_acfe_flexible_layout_title','Icons'),(67901,39342,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(67902,39342,'blocks_0_options_theme','#ffffff'),(67903,39342,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(67904,39342,'blocks_0_options_format','grid'),(67905,39342,'_blocks_0_options_format','field_64bfde9a90690'),(67906,39342,'blocks_0_options',''),(67907,39342,'_blocks_0_options','field_64bfdd9b90684'),(67908,39342,'blocks_0_row_content_title',''),(67909,39342,'_blocks_0_row_content_title','field_64bfdd9b90687'),(67910,39342,'blocks_0_row_content_heading','Fees & Funding Options'),(67911,39342,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(67912,39342,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(67913,39342,'_blocks_0_row_content_text','field_64bfdd9b90689'),(67914,39342,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(67915,39342,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(67916,39342,'blocks_0_row_content_actions','1'),(67917,39342,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(67918,39342,'blocks_0_row_content',''),(67919,39342,'_blocks_0_row_content','field_64bfdd9b90686'),(67920,39342,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(67921,39342,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(67922,39342,'blocks_0_icon_row_items_0_label','Pay in full'),(67923,39342,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(67924,39342,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(67925,39342,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(67926,39342,'blocks_0_icon_row_items_1_icon','finance.svg'),(67927,39342,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(67928,39342,'blocks_0_icon_row_items_1_label','0% finance*'),(67929,39342,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(67930,39342,'blocks_0_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance'),(67931,39342,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(67932,39342,'blocks_0_icon_row_items_2_icon','deposit.svg'),(67933,39342,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(67934,39342,'blocks_0_icon_row_items_2_label','Deposit & balance'),(67935,39342,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(67936,39342,'blocks_0_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(67937,39342,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(67938,39342,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(67939,39342,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(67940,39342,'blocks_0_icon_row_items_3_label','FlexPay'),(67941,39342,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(67942,39342,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(67943,39342,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(67944,39342,'blocks_0_icon_row_items','4'),(67945,39342,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(67946,39342,'blocks_1_acfe_flexible_toggle',''),(67947,39342,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(67948,39342,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(67949,39342,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(67950,39342,'blocks_1_options_theme','#ffffff'),(67951,39342,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(67952,39342,'blocks_1_options_reverse','0'),(67953,39342,'_blocks_1_options_reverse','field_61768049bb8ac'),(67954,39342,'blocks_1_options',''),(67955,39342,'_blocks_1_options','field_617682517c334'),(67956,39342,'blocks_1_split_5050_image','39335'),(67957,39342,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(67958,39342,'blocks_1_split_5050_video',''),(67959,39342,'_blocks_1_split_5050_video','field_6239f3160848a'),(67960,39342,'blocks_1_split_5050_content_title',''),(67961,39342,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(67962,39342,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(67963,39342,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(67964,39342,'blocks_1_split_5050_content_text','Training for a new career is a big investment and as with all things in life you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(67965,39342,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(67966,39342,'blocks_1_split_5050_content_actions',''),(67967,39342,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(67968,39342,'blocks_1_split_5050_content',''),(67969,39342,'_blocks_1_split_5050_content','field_61767afceb8ba'),(67970,39342,'blocks_2_acfe_flexible_toggle',''),(67971,39342,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(67972,39342,'blocks_2_acfe_flexible_layout_title','Form'),(67973,39342,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(67974,39342,'blocks_2_row_content_format','standard'),(67975,39342,'_blocks_2_row_content_format','field_6481ead962881'),(67976,39342,'blocks_2_row_content_title',''),(67977,39342,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(67978,39342,'blocks_2_row_content_heading','We\'re here to help you succeed'),(67979,39342,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(67980,39342,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that works for them.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to give you no-obligation advice and will help you create a payment plan that suits you.'),(67981,39342,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(67982,39342,'blocks_2_row_content_actions',''),(67983,39342,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(67984,39342,'blocks_2_row_content',''),(67985,39342,'_blocks_2_row_content','field_61a0f5f5b3db0'),(67986,39342,'blocks_2_row_form',''),(67987,39342,'_blocks_2_row_form','field_61a4ff2c0b08e'),(67988,39342,'blocks_2_row_form_button_label',''),(67989,39342,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(67990,39329,'blocks_3_acfe_flexible_toggle',''),(67991,39329,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(67992,39329,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(67993,39329,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(67994,39329,'blocks_3_testimonial_slider_content_title',''),(67995,39329,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(67996,39329,'blocks_3_testimonial_slider_content_heading','Testimonials'),(67997,39329,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(67998,39329,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(67999,39329,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(68000,39329,'blocks_3_testimonial_slider_content_actions',''),(68001,39329,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(68002,39329,'blocks_3_testimonial_slider_content',''),(68003,39329,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(68004,39329,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(68005,39329,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(68006,39329,'blocks_3_testimonial_slider_ambassador_bool','0'),(68007,39329,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(68008,39343,'hide_hero','0'),(68009,39343,'_hide_hero','field_66a2380fcda39'),(68010,39343,'hero_title','Funding Your Course'),(68011,39343,'_hero_title','field_617571fe285e8'),(68012,39343,'hero_text','Discover the multiple options when it comes to funding and paying for your course with us.'),(68013,39343,'_hero_text','field_6175723c285e9'),(68014,39343,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(68015,39343,'_hero_actions_0_button','field_61757281285eb'),(68016,39343,'hero_actions','1'),(68017,39343,'_hero_actions','field_61757270285ea'),(68018,39343,'hero_style','default'),(68019,39343,'_hero_style','field_62051d9dc5324'),(68020,39343,'hero_image_pos_x','right'),(68021,39343,'_hero_image_pos_x','field_62ec3d05390bb'),(68022,39343,'hero_image_pos_y','top'),(68023,39343,'_hero_image_pos_y','field_62ec3d05390bc'),(68024,39343,'hero_image_pos',''),(68025,39343,'_hero_image_pos','field_62ec3d05390ba'),(68026,39343,'fft_hide_from_listings','0'),(68027,39343,'_fft_hide_from_listings','field_61f1320446ab2'),(68028,39343,'fft_page_format','default'),(68029,39343,'_fft_page_format','field_61ae213f1f218'),(68030,39343,'fft_hide_nav','0'),(68031,39343,'_fft_hide_nav','field_635bd5e43527c'),(68032,39343,'fft_hide_header_call_to_action','0'),(68033,39343,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68034,39343,'fft_page_sitemap','0'),(68035,39343,'_fft_page_sitemap','field_61af9b34e8181'),(68036,39343,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(68037,39343,'_blocks','field_6176696113096'),(68038,39343,'_thumbnail_id','39334'),(68039,39343,'__thumbnail_id','field_617570855ddaf'),(68040,39343,'blocks_0_acfe_flexible_toggle',''),(68041,39343,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(68042,39343,'blocks_0_acfe_flexible_layout_title','Icons'),(68043,39343,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(68044,39343,'blocks_0_options_theme','#ffffff'),(68045,39343,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(68046,39343,'blocks_0_options_format','grid'),(68047,39343,'_blocks_0_options_format','field_64bfde9a90690'),(68048,39343,'blocks_0_options',''),(68049,39343,'_blocks_0_options','field_64bfdd9b90684'),(68050,39343,'blocks_0_row_content_title',''),(68051,39343,'_blocks_0_row_content_title','field_64bfdd9b90687'),(68052,39343,'blocks_0_row_content_heading','Fees & Funding Options'),(68053,39343,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(68054,39343,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(68055,39343,'_blocks_0_row_content_text','field_64bfdd9b90689'),(68056,39343,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(68057,39343,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(68058,39343,'blocks_0_row_content_actions','1'),(68059,39343,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(68060,39343,'blocks_0_row_content',''),(68061,39343,'_blocks_0_row_content','field_64bfdd9b90686'),(68062,39343,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(68063,39343,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(68064,39343,'blocks_0_icon_row_items_0_label','Pay in full'),(68065,39343,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(68066,39343,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(68067,39343,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f');
INSERT INTO `6m7_postmeta` VALUES (68068,39343,'blocks_0_icon_row_items_1_icon','finance.svg'),(68069,39343,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(68070,39343,'blocks_0_icon_row_items_1_label','0% finance*'),(68071,39343,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(68072,39343,'blocks_0_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance'),(68073,39343,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(68074,39343,'blocks_0_icon_row_items_2_icon','deposit.svg'),(68075,39343,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(68076,39343,'blocks_0_icon_row_items_2_label','Deposit & balance'),(68077,39343,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(68078,39343,'blocks_0_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(68079,39343,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(68080,39343,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(68081,39343,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(68082,39343,'blocks_0_icon_row_items_3_label','FlexPay'),(68083,39343,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(68084,39343,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(68085,39343,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(68086,39343,'blocks_0_icon_row_items','4'),(68087,39343,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(68088,39343,'blocks_1_acfe_flexible_toggle',''),(68089,39343,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(68090,39343,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(68091,39343,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(68092,39343,'blocks_1_options_theme','#ffffff'),(68093,39343,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(68094,39343,'blocks_1_options_reverse','0'),(68095,39343,'_blocks_1_options_reverse','field_61768049bb8ac'),(68096,39343,'blocks_1_options',''),(68097,39343,'_blocks_1_options','field_617682517c334'),(68098,39343,'blocks_1_split_5050_image','39335'),(68099,39343,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(68100,39343,'blocks_1_split_5050_video',''),(68101,39343,'_blocks_1_split_5050_video','field_6239f3160848a'),(68102,39343,'blocks_1_split_5050_content_title',''),(68103,39343,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(68104,39343,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(68105,39343,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(68106,39343,'blocks_1_split_5050_content_text','Training for a new career is a big investment and as with all things in life you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(68107,39343,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(68108,39343,'blocks_1_split_5050_content_actions',''),(68109,39343,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(68110,39343,'blocks_1_split_5050_content',''),(68111,39343,'_blocks_1_split_5050_content','field_61767afceb8ba'),(68112,39343,'blocks_2_acfe_flexible_toggle',''),(68113,39343,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(68114,39343,'blocks_2_acfe_flexible_layout_title','Form'),(68115,39343,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(68116,39343,'blocks_2_row_content_format','standard'),(68117,39343,'_blocks_2_row_content_format','field_6481ead962881'),(68118,39343,'blocks_2_row_content_title',''),(68119,39343,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(68120,39343,'blocks_2_row_content_heading','We\'re here to help you succeed'),(68121,39343,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(68122,39343,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that works for them.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to give you no-obligation advice and will help you create a payment plan that suits you.'),(68123,39343,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(68124,39343,'blocks_2_row_content_actions',''),(68125,39343,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(68126,39343,'blocks_2_row_content',''),(68127,39343,'_blocks_2_row_content','field_61a0f5f5b3db0'),(68128,39343,'blocks_2_row_form',''),(68129,39343,'_blocks_2_row_form','field_61a4ff2c0b08e'),(68130,39343,'blocks_2_row_form_button_label',''),(68131,39343,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(68132,39343,'blocks_3_acfe_flexible_toggle',''),(68133,39343,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(68134,39343,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(68135,39343,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(68136,39343,'blocks_3_testimonial_slider_content_title',''),(68137,39343,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(68138,39343,'blocks_3_testimonial_slider_content_heading','Testimonials'),(68139,39343,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(68140,39343,'blocks_3_testimonial_slider_content_text',''),(68141,39343,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(68142,39343,'blocks_3_testimonial_slider_content_actions',''),(68143,39343,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(68144,39343,'blocks_3_testimonial_slider_content',''),(68145,39343,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(68146,39343,'blocks_3_testimonial_slider_items','a:6:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"38962\";i:5;s:5:\"39169\";}'),(68147,39343,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(68148,39343,'blocks_3_testimonial_slider_ambassador_bool','0'),(68149,39343,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(68150,39329,'_yoast_wpseo_focuskw','Biomechanics Funding'),(68151,39329,'_yoast_wpseo_title','Fees and Funding | Biomechanics Education'),(68152,39329,'_yoast_wpseo_metadesc','Explore our Fees and Funding page for detailed information on course costs and available financial support.'),(68153,39329,'_yoast_wpseo_linkdex','38'),(68154,39344,'_menu_item_type','post_type'),(68155,39344,'_menu_item_menu_item_parent','39281'),(68156,39344,'_menu_item_object_id','39329'),(68157,39344,'_menu_item_object','page'),(68158,39344,'_menu_item_target',''),(68159,39344,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(68160,39344,'_menu_item_xfn',''),(68161,39344,'_menu_item_url',''),(68163,39344,'menu_item_card_image',''),(68164,39344,'_menu_item_card_image','field_618cf50fb8716'),(68165,39344,'menu_item_card_title',''),(68166,39344,'_menu_item_card_title','field_618cf51cb8717'),(68167,39344,'menu_item_card_text',''),(68168,39344,'_menu_item_card_text','field_618cf521b8718'),(68169,39344,'menu_item_card_link',''),(68170,39344,'_menu_item_card_link','field_618cf52eb8719'),(68171,39344,'menu_item_card',''),(68172,39344,'_menu_item_card','field_618cf506b8715'),(68173,39066,'hide_hero','0'),(68174,39066,'_hide_hero','field_66a2380fcda39'),(68177,39345,'hero_style','default'),(68178,39345,'_hero_style','field_62051d9dc5324'),(68179,39345,'_thumbnail_id','39067'),(68180,39345,'__thumbnail_id','field_617570855ddaf'),(68181,39345,'hero_image_pos_x','right'),(68182,39345,'_hero_image_pos_x','field_62ec3d05390bb'),(68183,39345,'hero_image_pos_y','top'),(68184,39345,'_hero_image_pos_y','field_62ec3d05390bc'),(68185,39345,'hero_image_pos',''),(68186,39345,'_hero_image_pos','field_62ec3d05390ba'),(68187,39345,'hero_title','Courses'),(68188,39345,'_hero_title','field_617571fe285e8'),(68189,39345,'hero_text',''),(68190,39345,'_hero_text','field_6175723c285e9'),(68191,39345,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(68192,39345,'_hero_actions_0_button','field_61757281285eb'),(68193,39345,'hero_actions','1'),(68194,39345,'_hero_actions','field_61757270285ea'),(68195,39345,'hero_icon',''),(68196,39345,'_hero_icon','field_61a6182199d03'),(68197,39345,'fft_hide_from_listings','0'),(68198,39345,'_fft_hide_from_listings','field_61f1320446ab2'),(68199,39345,'fft_page_format','default'),(68200,39345,'_fft_page_format','field_61ae213f1f218'),(68201,39345,'fft_hide_nav','0'),(68202,39345,'_fft_hide_nav','field_635bd5e43527c'),(68203,39345,'fft_hide_header_call_to_action','0'),(68204,39345,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68205,39345,'fft_page_sitemap','0'),(68206,39345,'_fft_page_sitemap','field_61af9b34e8181'),(68207,39345,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:16:\"standard_content\";i:2;s:14:\"course_compare\";i:3;s:8:\"template\";}'),(68208,39345,'_blocks','field_6176696113096'),(68209,39345,'blocks_0_acfe_flexible_toggle',''),(68210,39345,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(68211,39345,'blocks_0_acfe_flexible_layout_title','Icons'),(68212,39345,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(68213,39345,'blocks_0_options_theme','#b61234'),(68214,39345,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(68215,39345,'blocks_0_options_format','row'),(68216,39345,'_blocks_0_options_format','field_64bfde9a90690'),(68217,39345,'blocks_0_options',''),(68218,39345,'_blocks_0_options','field_64bfdd9b90684'),(68219,39345,'blocks_0_icon_row_items_0_icon','world.svg'),(68220,39345,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(68221,39345,'blocks_0_icon_row_items_0_label',''),(68222,39345,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(68223,39345,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(68224,39345,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(68225,39345,'blocks_0_icon_row_items_1_icon','home-study.svg'),(68226,39345,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(68227,39345,'blocks_0_icon_row_items_1_label',''),(68228,39345,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(68229,39345,'blocks_0_icon_row_items_1_text','Built and taught in house'),(68230,39345,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(68231,39345,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(68232,39345,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(68233,39345,'blocks_0_icon_row_items_2_label',''),(68234,39345,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(68235,39345,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(68236,39345,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(68237,39345,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(68238,39345,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(68239,39345,'blocks_0_icon_row_items_3_label',''),(68240,39345,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(68241,39345,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(68242,39345,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(68243,39345,'blocks_0_icon_row_items','4'),(68244,39345,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(68245,39345,'blocks_1_acfe_flexible_toggle',''),(68246,39345,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(68247,39345,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(68248,39345,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(68249,39345,'blocks_1_content','<h2 style=\"text-align: center;\"><strong>Overview</strong></h2>\r\n<p style=\"text-align: center;\">Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.</p>'),(68250,39345,'_blocks_1_content','field_6193c9b5eac84'),(68251,39345,'blocks_2_acfe_flexible_toggle',''),(68252,39345,'_blocks_2_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(68253,39345,'blocks_2_acfe_flexible_layout_title','Course Comparison'),(68254,39345,'_blocks_2_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(68255,39345,'blocks_2_options_theme','#ffffff'),(68256,39345,'_blocks_2_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(68257,39345,'blocks_2_options',''),(68258,39345,'_blocks_2_options','field_617ac0b7f6c08'),(68259,39345,'blocks_2_show','category'),(68260,39345,'_blocks_2_show','field_61a49cba9d946'),(68261,39345,'blocks_3_acfe_flexible_toggle',''),(68262,39345,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(68263,39345,'blocks_3_acfe_flexible_layout_title','Template'),(68264,39345,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(68265,39345,'blocks_3_template','39073'),(68266,39345,'_blocks_3_template','field_617bdd570fe01'),(68267,39345,'hide_hero','0'),(68268,39345,'_hide_hero','field_66a2380fcda39'),(68269,39345,'blocks_2_category','406'),(68270,39345,'_blocks_2_category','field_61a49cd79d947'),(68271,39346,'hide_hero','0'),(68272,39346,'_hide_hero','field_66a2380fcda39'),(68273,39346,'hero_title','Courses'),(68274,39346,'_hero_title','field_617571fe285e8'),(68275,39346,'hero_text',''),(68276,39346,'_hero_text','field_6175723c285e9'),(68277,39346,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(68278,39346,'_hero_actions_0_button','field_61757281285eb'),(68279,39346,'hero_actions','1'),(68280,39346,'_hero_actions','field_61757270285ea'),(68281,39346,'hero_style','default'),(68282,39346,'_hero_style','field_62051d9dc5324'),(68283,39346,'_thumbnail_id','39067'),(68284,39346,'__thumbnail_id','field_617570855ddaf'),(68285,39346,'hero_image_pos_x','right'),(68286,39346,'_hero_image_pos_x','field_62ec3d05390bb'),(68287,39346,'hero_image_pos_y','top'),(68288,39346,'_hero_image_pos_y','field_62ec3d05390bc'),(68289,39346,'hero_image_pos',''),(68290,39346,'_hero_image_pos','field_62ec3d05390ba'),(68291,39346,'fft_hide_from_listings','0'),(68292,39346,'_fft_hide_from_listings','field_61f1320446ab2'),(68293,39346,'fft_page_format','default'),(68294,39346,'_fft_page_format','field_61ae213f1f218'),(68295,39346,'fft_hide_nav','0'),(68296,39346,'_fft_hide_nav','field_635bd5e43527c'),(68297,39346,'fft_hide_header_call_to_action','0'),(68298,39346,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68299,39346,'fft_page_sitemap','0'),(68300,39346,'_fft_page_sitemap','field_61af9b34e8181'),(68301,39346,'blocks_0_acfe_flexible_toggle',''),(68302,39346,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(68303,39346,'blocks_0_acfe_flexible_layout_title','Icons'),(68304,39346,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(68305,39346,'blocks_0_options_theme','#b61234'),(68306,39346,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(68307,39346,'blocks_0_options_format','row'),(68308,39346,'_blocks_0_options_format','field_64bfde9a90690'),(68309,39346,'blocks_0_options',''),(68310,39346,'_blocks_0_options','field_64bfdd9b90684'),(68311,39346,'blocks_0_icon_row_items_0_icon','world.svg'),(68312,39346,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(68313,39346,'blocks_0_icon_row_items_0_label',''),(68314,39346,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(68315,39346,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(68316,39346,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(68317,39346,'blocks_0_icon_row_items_1_icon','home-study.svg'),(68318,39346,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(68319,39346,'blocks_0_icon_row_items_1_label',''),(68320,39346,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(68321,39346,'blocks_0_icon_row_items_1_text','Built and taught in house'),(68322,39346,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(68323,39346,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(68324,39346,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(68325,39346,'blocks_0_icon_row_items_2_label',''),(68326,39346,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(68327,39346,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(68328,39346,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(68329,39346,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(68330,39346,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(68331,39346,'blocks_0_icon_row_items_3_label',''),(68332,39346,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(68333,39346,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(68334,39346,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(68335,39346,'blocks_0_icon_row_items','4'),(68336,39346,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(68337,39346,'blocks_1_acfe_flexible_toggle',''),(68338,39346,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(68339,39346,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(68340,39346,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(68341,39346,'blocks_1_content','<h2 style=\"text-align: center;\"><strong>Overview</strong></h2>\r\n<p style=\"text-align: center;\">Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.</p>'),(68342,39346,'_blocks_1_content','field_6193c9b5eac84'),(68343,39346,'blocks_2_acfe_flexible_toggle',''),(68344,39346,'_blocks_2_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(68345,39346,'blocks_2_acfe_flexible_layout_title','Course Comparison'),(68346,39346,'_blocks_2_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(68347,39346,'blocks_2_options_theme','#ffffff'),(68348,39346,'_blocks_2_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(68349,39346,'blocks_2_options',''),(68350,39346,'_blocks_2_options','field_617ac0b7f6c08'),(68351,39346,'blocks_2_show','category'),(68352,39346,'_blocks_2_show','field_61a49cba9d946'),(68353,39346,'blocks_2_category','406'),(68354,39346,'_blocks_2_category','field_61a49cd79d947'),(68355,39346,'blocks_3_acfe_flexible_toggle',''),(68356,39346,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(68357,39346,'blocks_3_acfe_flexible_layout_title','Template'),(68358,39346,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(68359,39346,'blocks_3_template','39073'),(68360,39346,'_blocks_3_template','field_617bdd570fe01'),(68361,39346,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:16:\"standard_content\";i:2;s:14:\"course_compare\";i:3;s:8:\"template\";}'),(68362,39346,'_blocks','field_6176696113096'),(68363,39346,'hero_icon',''),(68364,39346,'_hero_icon','field_61a6182199d03'),(68365,39347,'hero_style','default'),(68366,39347,'_hero_style','field_62051d9dc5324'),(68367,39347,'_thumbnail_id','39067'),(68368,39347,'__thumbnail_id','field_617570855ddaf'),(68369,39347,'hero_image_pos_x','right'),(68370,39347,'_hero_image_pos_x','field_62ec3d05390bb'),(68371,39347,'hero_image_pos_y','top'),(68372,39347,'_hero_image_pos_y','field_62ec3d05390bc'),(68373,39347,'hero_image_pos',''),(68374,39347,'_hero_image_pos','field_62ec3d05390ba'),(68375,39347,'hero_title','Courses'),(68376,39347,'_hero_title','field_617571fe285e8'),(68377,39347,'hero_text',''),(68378,39347,'_hero_text','field_6175723c285e9'),(68379,39347,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(68380,39347,'_hero_actions_0_button','field_61757281285eb'),(68381,39347,'hero_actions','1'),(68382,39347,'_hero_actions','field_61757270285ea'),(68383,39347,'hero_icon',''),(68384,39347,'_hero_icon','field_61a6182199d03'),(68385,39347,'fft_hide_from_listings','0'),(68386,39347,'_fft_hide_from_listings','field_61f1320446ab2'),(68387,39347,'fft_page_format','default'),(68388,39347,'_fft_page_format','field_61ae213f1f218'),(68389,39347,'fft_hide_nav','0'),(68390,39347,'_fft_hide_nav','field_635bd5e43527c'),(68391,39347,'fft_hide_header_call_to_action','0'),(68392,39347,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68393,39347,'fft_page_sitemap','0'),(68394,39347,'_fft_page_sitemap','field_61af9b34e8181'),(68395,39347,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:16:\"standard_content\";i:2;s:14:\"course_compare\";i:3;s:8:\"template\";}'),(68396,39347,'_blocks','field_6176696113096'),(68397,39347,'blocks_0_acfe_flexible_toggle',''),(68398,39347,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(68399,39347,'blocks_0_acfe_flexible_layout_title','Icons'),(68400,39347,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(68401,39347,'blocks_0_options_theme','#b61234'),(68402,39347,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(68403,39347,'blocks_0_options_format','row'),(68404,39347,'_blocks_0_options_format','field_64bfde9a90690'),(68405,39347,'blocks_0_options',''),(68406,39347,'_blocks_0_options','field_64bfdd9b90684'),(68407,39347,'blocks_0_icon_row_items_0_icon','world.svg'),(68408,39347,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(68409,39347,'blocks_0_icon_row_items_0_label',''),(68410,39347,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(68411,39347,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(68412,39347,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(68413,39347,'blocks_0_icon_row_items_1_icon','home-study.svg'),(68414,39347,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(68415,39347,'blocks_0_icon_row_items_1_label',''),(68416,39347,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(68417,39347,'blocks_0_icon_row_items_1_text','Built and taught in house'),(68418,39347,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(68419,39347,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(68420,39347,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(68421,39347,'blocks_0_icon_row_items_2_label',''),(68422,39347,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(68423,39347,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(68424,39347,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(68425,39347,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(68426,39347,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(68427,39347,'blocks_0_icon_row_items_3_label',''),(68428,39347,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(68429,39347,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(68430,39347,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(68431,39347,'blocks_0_icon_row_items','4'),(68432,39347,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(68433,39347,'blocks_1_acfe_flexible_toggle',''),(68434,39347,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(68435,39347,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(68436,39347,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(68437,39347,'blocks_1_content','<h2 style=\"text-align: center;\"><strong>Overview</strong></h2>\r\n<p style=\"text-align: center;\">Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.</p>'),(68438,39347,'_blocks_1_content','field_6193c9b5eac84'),(68439,39347,'blocks_2_acfe_flexible_toggle',''),(68440,39347,'_blocks_2_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(68441,39347,'blocks_2_acfe_flexible_layout_title','Course Comparison'),(68442,39347,'_blocks_2_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(68443,39347,'blocks_2_options_theme','#ffffff'),(68444,39347,'_blocks_2_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(68445,39347,'blocks_2_options',''),(68446,39347,'_blocks_2_options','field_617ac0b7f6c08'),(68447,39347,'blocks_2_show','category'),(68448,39347,'_blocks_2_show','field_61a49cba9d946'),(68449,39347,'blocks_3_acfe_flexible_toggle',''),(68450,39347,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(68451,39347,'blocks_3_acfe_flexible_layout_title','Template'),(68452,39347,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(68453,39347,'blocks_3_template','39073'),(68454,39347,'_blocks_3_template','field_617bdd570fe01'),(68455,39347,'hide_hero','0'),(68456,39347,'_hide_hero','field_66a2380fcda39'),(68457,39347,'blocks_2_category','406'),(68458,39347,'_blocks_2_category','field_61a49cd79d947'),(68459,39348,'_menu_item_type','custom'),(68460,39348,'_menu_item_menu_item_parent','39278'),(68461,39348,'_menu_item_object_id','39348'),(68462,39348,'_menu_item_object','custom'),(68463,39348,'_menu_item_target',''),(68464,39348,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(68465,39348,'_menu_item_xfn',''),(68466,39348,'_menu_item_url','https://biomechanicseducation.com/courses/cpd-courses/'),(68468,39348,'menu_item_card_image',''),(68469,39348,'_menu_item_card_image','field_618cf50fb8716'),(68470,39348,'menu_item_card_title',''),(68471,39348,'_menu_item_card_title','field_618cf51cb8717'),(68472,39348,'menu_item_card_text',''),(68473,39348,'_menu_item_card_text','field_618cf521b8718'),(68474,39348,'menu_item_card_link',''),(68475,39348,'_menu_item_card_link','field_618cf52eb8719'),(68476,39348,'menu_item_card',''),(68477,39348,'_menu_item_card','field_618cf506b8715'),(68478,39349,'_edit_lock','1725632832:5'),(68479,39349,'_edit_last','5'),(68480,39349,'hide_hero','0'),(68481,39349,'_hide_hero','field_66a2380fcda39'),(68482,39349,'hero_title','Rachel Frances Thompson'),(68483,39349,'_hero_title','field_617571fe285e8'),(68484,39349,'hero_text','Meet the Founder Rachel Frances Thompson'),(68485,39349,'_hero_text','field_6175723c285e9'),(68486,39349,'hero_actions','1'),(68487,39349,'_hero_actions','field_61757270285ea'),(68488,39349,'hero_style','default'),(68489,39349,'_hero_style','field_62051d9dc5324'),(68490,39349,'_thumbnail_id','39353'),(68491,39349,'__thumbnail_id','field_617570855ddaf'),(68492,39349,'hero_image_pos_x','right'),(68493,39349,'_hero_image_pos_x','field_62ec3d05390bb'),(68494,39349,'hero_image_pos_y','centre'),(68495,39349,'_hero_image_pos_y','field_62ec3d05390bc'),(68496,39349,'hero_image_pos',''),(68497,39349,'_hero_image_pos','field_62ec3d05390ba'),(68498,39349,'fft_hide_from_listings','0'),(68499,39349,'_fft_hide_from_listings','field_61f1320446ab2'),(68500,39349,'fft_page_format','default'),(68501,39349,'_fft_page_format','field_61ae213f1f218'),(68502,39349,'fft_hide_nav','0'),(68503,39349,'_fft_hide_nav','field_635bd5e43527c'),(68504,39349,'fft_hide_header_call_to_action','0'),(68505,39349,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68506,39349,'fft_page_sitemap','0'),(68507,39349,'_fft_page_sitemap','field_61af9b34e8181'),(68508,39349,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(68509,39349,'_blocks','field_6176696113096'),(68510,39349,'_yoast_wpseo_title','Rachel Thompson | Biomechanics Education'),(68511,39349,'_yoast_wpseo_metadesc','Learn about Rachel Francis, our founder. Discover her vision, expertise, and the journey behind creating a leading resource in biomechanics education.'),(68512,39349,'_yoast_wpseo_estimated-reading-time-minutes','1'),(68513,39350,'hide_hero','0'),(68514,39350,'_hide_hero','field_66a2380fcda39'),(68515,39350,'hero_title','Rachel Frances Thompson'),(68516,39350,'_hero_title','field_617571fe285e8'),(68517,39350,'hero_text','Meet the Founder Rachel Frances Thompson'),(68518,39350,'_hero_text','field_6175723c285e9'),(68519,39350,'hero_actions',''),(68520,39350,'_hero_actions','field_61757270285ea'),(68521,39350,'hero_style','default'),(68522,39350,'_hero_style','field_62051d9dc5324'),(68523,39350,'_thumbnail_id','6682'),(68524,39350,'__thumbnail_id','field_617570855ddaf'),(68525,39350,'hero_image_pos_x','right'),(68526,39350,'_hero_image_pos_x','field_62ec3d05390bb'),(68527,39350,'hero_image_pos_y','top'),(68528,39350,'_hero_image_pos_y','field_62ec3d05390bc'),(68529,39350,'hero_image_pos',''),(68530,39350,'_hero_image_pos','field_62ec3d05390ba'),(68531,39350,'fft_hide_from_listings','0'),(68532,39350,'_fft_hide_from_listings','field_61f1320446ab2'),(68533,39350,'fft_page_format','default'),(68534,39350,'_fft_page_format','field_61ae213f1f218'),(68535,39350,'fft_hide_nav','0'),(68536,39350,'_fft_hide_nav','field_635bd5e43527c'),(68537,39350,'fft_hide_header_call_to_action','0'),(68538,39350,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68539,39350,'fft_page_sitemap','0'),(68540,39350,'_fft_page_sitemap','field_61af9b34e8181'),(68541,39350,'blocks',''),(68542,39350,'_blocks','field_6176696113096'),(68573,39352,'hide_hero','0'),(68574,39352,'_hide_hero','field_66a2380fcda39'),(68575,39352,'hero_title','Rachel Frances Thompson'),(68576,39352,'_hero_title','field_617571fe285e8'),(68577,39352,'hero_text','Meet the Founder Rachel Frances Thompson'),(68578,39352,'_hero_text','field_6175723c285e9'),(68579,39352,'hero_actions',''),(68580,39352,'_hero_actions','field_61757270285ea'),(68581,39352,'hero_style','default'),(68582,39352,'_hero_style','field_62051d9dc5324'),(68583,39352,'_thumbnail_id','19918'),(68584,39352,'__thumbnail_id','field_617570855ddaf'),(68585,39352,'hero_image_pos_x','right'),(68586,39352,'_hero_image_pos_x','field_62ec3d05390bb'),(68587,39352,'hero_image_pos_y','top'),(68588,39352,'_hero_image_pos_y','field_62ec3d05390bc'),(68589,39352,'hero_image_pos',''),(68590,39352,'_hero_image_pos','field_62ec3d05390ba'),(68591,39352,'fft_hide_from_listings','0'),(68592,39352,'_fft_hide_from_listings','field_61f1320446ab2'),(68593,39352,'fft_page_format','default'),(68594,39352,'_fft_page_format','field_61ae213f1f218'),(68595,39352,'fft_hide_nav','0'),(68596,39352,'_fft_hide_nav','field_635bd5e43527c'),(68597,39352,'fft_hide_header_call_to_action','0'),(68598,39352,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68599,39352,'fft_page_sitemap','0'),(68600,39352,'_fft_page_sitemap','field_61af9b34e8181'),(68601,39352,'blocks',''),(68602,39352,'_blocks','field_6176696113096'),(68603,39353,'_wp_attached_file','2024/08/rachel-e1723027806616.png'),(68604,39353,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1456;s:6:\"height\";i:1080;s:4:\"file\";s:33:\"2024/08/rachel-e1723027806616.png\";s:8:\"filesize\";i:1173445;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"rachel-e1723027806616-900x668.png\";s:5:\"width\";i:900;s:6:\"height\";i:668;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:435491;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"rachel-e1723027806616-1200x890.png\";s:5:\"width\";i:1200;s:6:\"height\";i:890;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:693238;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"rachel-e1723027806616-400x297.png\";s:5:\"width\";i:400;s:6:\"height\";i:297;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104360;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"rachel-e1723027806616-768x570.png\";s:5:\"width\";i:768;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:335695;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:19:\"rachel-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:741659;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"rachel-e1723027806616-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151314;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"rachel-e1723027806616-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:588204;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"rachel-e1723027806616-1200x1080.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:862526;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"rachel-e1723027806616-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94467;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"rachel-e1723027806616-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:395699;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"rachel-e1723027806616-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:629444;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"rachel-e1723027806616-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122261;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"rachel-e1723027806616-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:479067;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"rachel-e1723027806616-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:723262;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"rachel-e1723027806616-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105842;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"rachel-e1723027806616-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:439796;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"rachel-e1723027806616-1200x900.png\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:700991;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"rachel-e1723027806616-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81040;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"rachel-e1723027806616-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:337775;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"rachel-e1723027806616-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:537214;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(68605,39354,'hide_hero','0'),(68606,39354,'_hide_hero','field_66a2380fcda39'),(68607,39354,'hero_title','Rachel Frances Thompson'),(68608,39354,'_hero_title','field_617571fe285e8'),(68609,39354,'hero_text','Meet the Founder Rachel Frances Thompson'),(68610,39354,'_hero_text','field_6175723c285e9'),(68611,39354,'hero_actions',''),(68612,39354,'_hero_actions','field_61757270285ea'),(68613,39354,'hero_style','default'),(68614,39354,'_hero_style','field_62051d9dc5324'),(68615,39354,'_thumbnail_id','39353'),(68616,39354,'__thumbnail_id','field_617570855ddaf'),(68617,39354,'hero_image_pos_x','right'),(68618,39354,'_hero_image_pos_x','field_62ec3d05390bb'),(68619,39354,'hero_image_pos_y','top'),(68620,39354,'_hero_image_pos_y','field_62ec3d05390bc'),(68621,39354,'hero_image_pos',''),(68622,39354,'_hero_image_pos','field_62ec3d05390ba'),(68623,39354,'fft_hide_from_listings','0'),(68624,39354,'_fft_hide_from_listings','field_61f1320446ab2'),(68625,39354,'fft_page_format','default'),(68626,39354,'_fft_page_format','field_61ae213f1f218'),(68627,39354,'fft_hide_nav','0'),(68628,39354,'_fft_hide_nav','field_635bd5e43527c'),(68629,39354,'fft_hide_header_call_to_action','0'),(68630,39354,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68631,39354,'fft_page_sitemap','0'),(68632,39354,'_fft_page_sitemap','field_61af9b34e8181'),(68633,39354,'blocks',''),(68634,39354,'_blocks','field_6176696113096'),(68665,39349,'hero_actions_0_button','a:3:{s:5:\"title\";s:30:\"View Rachel\'s LinkedIn Profile\";s:3:\"url\";s:91:\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\";s:6:\"target\";s:0:\"\";}'),(68666,39349,'_hero_actions_0_button','field_61757281285eb'),(68667,39356,'hide_hero','0'),(68668,39356,'_hide_hero','field_66a2380fcda39'),(68669,39356,'hero_title','Rachel Frances Thompson'),(68670,39356,'_hero_title','field_617571fe285e8'),(68671,39356,'hero_text','Meet the Founder Rachel Frances Thompson'),(68672,39356,'_hero_text','field_6175723c285e9'),(68673,39356,'hero_actions','1'),(68674,39356,'_hero_actions','field_61757270285ea'),(68675,39356,'hero_style','default'),(68676,39356,'_hero_style','field_62051d9dc5324'),(68677,39356,'_thumbnail_id','39353'),(68678,39356,'__thumbnail_id','field_617570855ddaf'),(68679,39356,'hero_image_pos_x','right'),(68680,39356,'_hero_image_pos_x','field_62ec3d05390bb'),(68681,39356,'hero_image_pos_y','top'),(68682,39356,'_hero_image_pos_y','field_62ec3d05390bc'),(68683,39356,'hero_image_pos',''),(68684,39356,'_hero_image_pos','field_62ec3d05390ba'),(68685,39356,'fft_hide_from_listings','0'),(68686,39356,'_fft_hide_from_listings','field_61f1320446ab2'),(68687,39356,'fft_page_format','default'),(68688,39356,'_fft_page_format','field_61ae213f1f218'),(68689,39356,'fft_hide_nav','0'),(68690,39356,'_fft_hide_nav','field_635bd5e43527c'),(68691,39356,'fft_hide_header_call_to_action','0'),(68692,39356,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68693,39356,'fft_page_sitemap','0'),(68694,39356,'_fft_page_sitemap','field_61af9b34e8181'),(68695,39356,'blocks',''),(68696,39356,'_blocks','field_6176696113096'),(68697,39356,'hero_actions_0_button','a:3:{s:5:\"title\";s:30:\"View Rachel\'s LinkedIn Profile\";s:3:\"url\";s:91:\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\";s:6:\"target\";s:0:\"\";}'),(68698,39356,'_hero_actions_0_button','field_61757281285eb'),(68699,39349,'blocks_0_acfe_flexible_toggle',''),(68700,39349,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(68701,39349,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(68702,39349,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(68703,39349,'blocks_0_content','<h2>About Rachel</h2>\r\nRachel’s professional career in the health &amp; fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor &amp; IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd &amp; so frequently lectures, presents &amp; teaches at events both UK &amp; Internationally about the benefits of the intrinsic biomechanics\' methods'),(68704,39349,'_blocks_0_content','field_6193c9b5eac84'),(68705,39357,'hide_hero','0'),(68706,39357,'_hide_hero','field_66a2380fcda39'),(68707,39357,'hero_title','Rachel Frances Thompson'),(68708,39357,'_hero_title','field_617571fe285e8'),(68709,39357,'hero_text','Meet the Founder Rachel Frances Thompson'),(68710,39357,'_hero_text','field_6175723c285e9'),(68711,39357,'hero_actions','1'),(68712,39357,'_hero_actions','field_61757270285ea'),(68713,39357,'hero_style','default'),(68714,39357,'_hero_style','field_62051d9dc5324'),(68715,39357,'_thumbnail_id','39353'),(68716,39357,'__thumbnail_id','field_617570855ddaf'),(68717,39357,'hero_image_pos_x','right'),(68718,39357,'_hero_image_pos_x','field_62ec3d05390bb'),(68719,39357,'hero_image_pos_y','top'),(68720,39357,'_hero_image_pos_y','field_62ec3d05390bc'),(68721,39357,'hero_image_pos',''),(68722,39357,'_hero_image_pos','field_62ec3d05390ba'),(68723,39357,'fft_hide_from_listings','0'),(68724,39357,'_fft_hide_from_listings','field_61f1320446ab2'),(68725,39357,'fft_page_format','default'),(68726,39357,'_fft_page_format','field_61ae213f1f218'),(68727,39357,'fft_hide_nav','0'),(68728,39357,'_fft_hide_nav','field_635bd5e43527c'),(68729,39357,'fft_hide_header_call_to_action','0'),(68730,39357,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68731,39357,'fft_page_sitemap','0'),(68732,39357,'_fft_page_sitemap','field_61af9b34e8181'),(68733,39357,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(68734,39357,'_blocks','field_6176696113096'),(68735,39357,'hero_actions_0_button','a:3:{s:5:\"title\";s:30:\"View Rachel\'s LinkedIn Profile\";s:3:\"url\";s:91:\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\";s:6:\"target\";s:0:\"\";}'),(68736,39357,'_hero_actions_0_button','field_61757281285eb'),(68737,39357,'blocks_0_acfe_flexible_toggle',''),(68738,39357,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(68739,39357,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(68740,39357,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(68741,39357,'blocks_0_content','<h2>About Rachel</h2>\r\nRachel’s professional career in the health &amp; fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor &amp; IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd &amp; so frequently lectures, presents &amp; teaches at events both UK &amp; Internationally about the benefits of the intrinsic biomechanics\' methods'),(68742,39357,'_blocks_0_content','field_6193c9b5eac84'),(68743,39358,'hide_hero','0'),(68744,39358,'_hide_hero','field_66a2380fcda39'),(68745,39358,'hero_title','Rachel Frances Thompson'),(68746,39358,'_hero_title','field_617571fe285e8'),(68747,39358,'hero_text','Meet the Founder Rachel Frances Thompson'),(68748,39358,'_hero_text','field_6175723c285e9'),(68749,39358,'hero_actions','1'),(68750,39358,'_hero_actions','field_61757270285ea'),(68751,39358,'hero_style','default'),(68752,39358,'_hero_style','field_62051d9dc5324'),(68753,39358,'_thumbnail_id','39353'),(68754,39358,'__thumbnail_id','field_617570855ddaf'),(68755,39358,'hero_image_pos_x','right'),(68756,39358,'_hero_image_pos_x','field_62ec3d05390bb'),(68757,39358,'hero_image_pos_y','right'),(68758,39358,'_hero_image_pos_y','field_62ec3d05390bc'),(68759,39358,'hero_image_pos',''),(68760,39358,'_hero_image_pos','field_62ec3d05390ba'),(68761,39358,'fft_hide_from_listings','0'),(68762,39358,'_fft_hide_from_listings','field_61f1320446ab2'),(68763,39358,'fft_page_format','default'),(68764,39358,'_fft_page_format','field_61ae213f1f218'),(68765,39358,'fft_hide_nav','0'),(68766,39358,'_fft_hide_nav','field_635bd5e43527c'),(68767,39358,'fft_hide_header_call_to_action','0'),(68768,39358,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68769,39358,'fft_page_sitemap','0'),(68770,39358,'_fft_page_sitemap','field_61af9b34e8181'),(68771,39358,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(68772,39358,'_blocks','field_6176696113096'),(68773,39358,'hero_actions_0_button','a:3:{s:5:\"title\";s:30:\"View Rachel\'s LinkedIn Profile\";s:3:\"url\";s:91:\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\";s:6:\"target\";s:0:\"\";}'),(68774,39358,'_hero_actions_0_button','field_61757281285eb'),(68775,39358,'blocks_0_acfe_flexible_toggle',''),(68776,39358,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(68777,39358,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(68778,39358,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(68779,39358,'blocks_0_content','<h2>About Rachel</h2>\r\nRachel’s professional career in the health &amp; fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor &amp; IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd &amp; so frequently lectures, presents &amp; teaches at events both UK &amp; Internationally about the benefits of the intrinsic biomechanics\' methods'),(68780,39358,'_blocks_0_content','field_6193c9b5eac84'),(68781,39353,'_wp_attachment_backup_sizes','a:21:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:10:\"rachel.png\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:18:\"rachel-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69163;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:18:\"rachel-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:305022;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:18:\"rachel-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:230978;}s:10:\"large-orig\";a:5:{s:4:\"file\";s:19:\"rachel-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:493001;}s:14:\"1536x1536-orig\";a:5:{s:4:\"file\";s:19:\"rachel-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:741659;}s:11:\"1x1-sm-orig\";a:5:{s:4:\"file\";s:18:\"rachel-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:162295;}s:11:\"1x1-md-orig\";a:5:{s:4:\"file\";s:18:\"rachel-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:630930;}s:11:\"1x1-lg-orig\";a:5:{s:4:\"file\";s:20:\"rachel-1200x1080.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:912489;}s:11:\"3x2-sm-orig\";a:5:{s:4:\"file\";s:18:\"rachel-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88997;}s:11:\"3x2-md-orig\";a:5:{s:4:\"file\";s:18:\"rachel-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:384122;}s:11:\"3x2-lg-orig\";a:5:{s:4:\"file\";s:19:\"rachel-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:613953;}s:11:\"3x4-sm-orig\";a:5:{s:4:\"file\";s:18:\"rachel-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143286;}s:11:\"3x4-md-orig\";a:5:{s:4:\"file\";s:18:\"rachel-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:552045;}s:11:\"3x4-lg-orig\";a:5:{s:4:\"file\";s:19:\"rachel-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:794771;}s:11:\"4x3-sm-orig\";a:5:{s:4:\"file\";s:18:\"rachel-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106339;}s:11:\"4x3-md-orig\";a:5:{s:4:\"file\";s:18:\"rachel-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:443828;}s:11:\"4x3-lg-orig\";a:5:{s:4:\"file\";s:19:\"rachel-1200x900.png\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:707534;}s:12:\"16x9-sm-orig\";a:5:{s:4:\"file\";s:18:\"rachel-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69163;}s:12:\"16x9-md-orig\";a:5:{s:4:\"file\";s:18:\"rachel-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:305164;}s:12:\"16x9-lg-orig\";a:5:{s:4:\"file\";s:19:\"rachel-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:493001;}}'),(68782,39359,'hide_hero','0'),(68783,39359,'_hide_hero','field_66a2380fcda39'),(68784,39359,'hero_title','Rachel Frances Thompson'),(68785,39359,'_hero_title','field_617571fe285e8'),(68786,39359,'hero_text','Meet the Founder Rachel Frances Thompson'),(68787,39359,'_hero_text','field_6175723c285e9'),(68788,39359,'hero_actions','1'),(68789,39359,'_hero_actions','field_61757270285ea'),(68790,39359,'hero_style','default'),(68791,39359,'_hero_style','field_62051d9dc5324'),(68792,39359,'_thumbnail_id','39353'),(68793,39359,'__thumbnail_id','field_617570855ddaf'),(68794,39359,'hero_image_pos_x','right'),(68795,39359,'_hero_image_pos_x','field_62ec3d05390bb'),(68796,39359,'hero_image_pos_y','left'),(68797,39359,'_hero_image_pos_y','field_62ec3d05390bc'),(68798,39359,'hero_image_pos',''),(68799,39359,'_hero_image_pos','field_62ec3d05390ba'),(68800,39359,'fft_hide_from_listings','0'),(68801,39359,'_fft_hide_from_listings','field_61f1320446ab2'),(68802,39359,'fft_page_format','default'),(68803,39359,'_fft_page_format','field_61ae213f1f218'),(68804,39359,'fft_hide_nav','0'),(68805,39359,'_fft_hide_nav','field_635bd5e43527c'),(68806,39359,'fft_hide_header_call_to_action','0'),(68807,39359,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68808,39359,'fft_page_sitemap','0'),(68809,39359,'_fft_page_sitemap','field_61af9b34e8181'),(68810,39359,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(68811,39359,'_blocks','field_6176696113096'),(68812,39359,'hero_actions_0_button','a:3:{s:5:\"title\";s:30:\"View Rachel\'s LinkedIn Profile\";s:3:\"url\";s:91:\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\";s:6:\"target\";s:0:\"\";}'),(68813,39359,'_hero_actions_0_button','field_61757281285eb'),(68814,39359,'blocks_0_acfe_flexible_toggle',''),(68815,39359,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(68816,39359,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(68817,39359,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(68818,39359,'blocks_0_content','<h2>About Rachel</h2>\r\nRachel’s professional career in the health &amp; fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor &amp; IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd &amp; so frequently lectures, presents &amp; teaches at events both UK &amp; Internationally about the benefits of the intrinsic biomechanics\' methods'),(68819,39359,'_blocks_0_content','field_6193c9b5eac84'),(68820,39360,'hide_hero','0'),(68821,39360,'_hide_hero','field_66a2380fcda39'),(68822,39360,'hero_title','Rachel Frances Thompson'),(68823,39360,'_hero_title','field_617571fe285e8'),(68824,39360,'hero_text','Meet the Founder Rachel Frances Thompson'),(68825,39360,'_hero_text','field_6175723c285e9'),(68826,39360,'hero_actions','1'),(68827,39360,'_hero_actions','field_61757270285ea'),(68828,39360,'hero_style','default'),(68829,39360,'_hero_style','field_62051d9dc5324'),(68830,39360,'_thumbnail_id','39353'),(68831,39360,'__thumbnail_id','field_617570855ddaf'),(68832,39360,'hero_image_pos_x','right'),(68833,39360,'_hero_image_pos_x','field_62ec3d05390bb'),(68834,39360,'hero_image_pos_y','top'),(68835,39360,'_hero_image_pos_y','field_62ec3d05390bc'),(68836,39360,'hero_image_pos',''),(68837,39360,'_hero_image_pos','field_62ec3d05390ba'),(68838,39360,'fft_hide_from_listings','0'),(68839,39360,'_fft_hide_from_listings','field_61f1320446ab2'),(68840,39360,'fft_page_format','default'),(68841,39360,'_fft_page_format','field_61ae213f1f218'),(68842,39360,'fft_hide_nav','0'),(68843,39360,'_fft_hide_nav','field_635bd5e43527c'),(68844,39360,'fft_hide_header_call_to_action','0'),(68845,39360,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68846,39360,'fft_page_sitemap','0'),(68847,39360,'_fft_page_sitemap','field_61af9b34e8181'),(68848,39360,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(68849,39360,'_blocks','field_6176696113096'),(68850,39360,'hero_actions_0_button','a:3:{s:5:\"title\";s:30:\"View Rachel\'s LinkedIn Profile\";s:3:\"url\";s:91:\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\";s:6:\"target\";s:0:\"\";}'),(68851,39360,'_hero_actions_0_button','field_61757281285eb'),(68852,39360,'blocks_0_acfe_flexible_toggle',''),(68853,39360,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(68854,39360,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(68855,39360,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(68856,39360,'blocks_0_content','<h2>About Rachel</h2>\r\nRachel’s professional career in the health &amp; fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor &amp; IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd &amp; so frequently lectures, presents &amp; teaches at events both UK &amp; Internationally about the benefits of the intrinsic biomechanics\' methods'),(68857,39360,'_blocks_0_content','field_6193c9b5eac84'),(68858,39361,'hide_hero','0'),(68859,39361,'_hide_hero','field_66a2380fcda39'),(68860,39361,'hero_title','Rachel Frances Thompson'),(68861,39361,'_hero_title','field_617571fe285e8'),(68862,39361,'hero_text','Meet the Founder Rachel Frances Thompson'),(68863,39361,'_hero_text','field_6175723c285e9'),(68864,39361,'hero_actions','1'),(68865,39361,'_hero_actions','field_61757270285ea'),(68866,39361,'hero_style','default'),(68867,39361,'_hero_style','field_62051d9dc5324'),(68868,39361,'_thumbnail_id','39353'),(68869,39361,'__thumbnail_id','field_617570855ddaf'),(68870,39361,'hero_image_pos_x','right'),(68871,39361,'_hero_image_pos_x','field_62ec3d05390bb'),(68872,39361,'hero_image_pos_y','bottom 25%'),(68873,39361,'_hero_image_pos_y','field_62ec3d05390bc'),(68874,39361,'hero_image_pos',''),(68875,39361,'_hero_image_pos','field_62ec3d05390ba'),(68876,39361,'fft_hide_from_listings','0'),(68877,39361,'_fft_hide_from_listings','field_61f1320446ab2'),(68878,39361,'fft_page_format','default'),(68879,39361,'_fft_page_format','field_61ae213f1f218'),(68880,39361,'fft_hide_nav','0'),(68881,39361,'_fft_hide_nav','field_635bd5e43527c'),(68882,39361,'fft_hide_header_call_to_action','0'),(68883,39361,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68884,39361,'fft_page_sitemap','0'),(68885,39361,'_fft_page_sitemap','field_61af9b34e8181'),(68886,39361,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(68887,39361,'_blocks','field_6176696113096'),(68888,39361,'hero_actions_0_button','a:3:{s:5:\"title\";s:30:\"View Rachel\'s LinkedIn Profile\";s:3:\"url\";s:91:\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\";s:6:\"target\";s:0:\"\";}'),(68889,39361,'_hero_actions_0_button','field_61757281285eb'),(68890,39361,'blocks_0_acfe_flexible_toggle',''),(68891,39361,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(68892,39361,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(68893,39361,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(68894,39361,'blocks_0_content','<h2>About Rachel</h2>\r\nRachel’s professional career in the health &amp; fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor &amp; IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd &amp; so frequently lectures, presents &amp; teaches at events both UK &amp; Internationally about the benefits of the intrinsic biomechanics\' methods'),(68895,39361,'_blocks_0_content','field_6193c9b5eac84'),(68896,39362,'hide_hero','0'),(68897,39362,'_hide_hero','field_66a2380fcda39'),(68898,39362,'hero_title','Rachel Frances Thompson'),(68899,39362,'_hero_title','field_617571fe285e8'),(68900,39362,'hero_text','Meet the Founder Rachel Frances Thompson'),(68901,39362,'_hero_text','field_6175723c285e9'),(68902,39362,'hero_actions','1'),(68903,39362,'_hero_actions','field_61757270285ea'),(68904,39362,'hero_style','default'),(68905,39362,'_hero_style','field_62051d9dc5324'),(68906,39362,'_thumbnail_id','39353'),(68907,39362,'__thumbnail_id','field_617570855ddaf'),(68908,39362,'hero_image_pos_x','right'),(68909,39362,'_hero_image_pos_x','field_62ec3d05390bb'),(68910,39362,'hero_image_pos_y','bottom'),(68911,39362,'_hero_image_pos_y','field_62ec3d05390bc'),(68912,39362,'hero_image_pos',''),(68913,39362,'_hero_image_pos','field_62ec3d05390ba'),(68914,39362,'fft_hide_from_listings','0'),(68915,39362,'_fft_hide_from_listings','field_61f1320446ab2'),(68916,39362,'fft_page_format','default'),(68917,39362,'_fft_page_format','field_61ae213f1f218'),(68918,39362,'fft_hide_nav','0'),(68919,39362,'_fft_hide_nav','field_635bd5e43527c'),(68920,39362,'fft_hide_header_call_to_action','0'),(68921,39362,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68922,39362,'fft_page_sitemap','0'),(68923,39362,'_fft_page_sitemap','field_61af9b34e8181'),(68924,39362,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(68925,39362,'_blocks','field_6176696113096'),(68926,39362,'hero_actions_0_button','a:3:{s:5:\"title\";s:30:\"View Rachel\'s LinkedIn Profile\";s:3:\"url\";s:91:\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\";s:6:\"target\";s:0:\"\";}'),(68927,39362,'_hero_actions_0_button','field_61757281285eb'),(68928,39362,'blocks_0_acfe_flexible_toggle',''),(68929,39362,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(68930,39362,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(68931,39362,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(68932,39362,'blocks_0_content','<h2>About Rachel</h2>\r\nRachel’s professional career in the health &amp; fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor &amp; IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd &amp; so frequently lectures, presents &amp; teaches at events both UK &amp; Internationally about the benefits of the intrinsic biomechanics\' methods'),(68933,39362,'_blocks_0_content','field_6193c9b5eac84'),(68934,39363,'hide_hero','0'),(68935,39363,'_hide_hero','field_66a2380fcda39'),(68936,39363,'hero_title','Rachel Frances Thompson'),(68937,39363,'_hero_title','field_617571fe285e8'),(68938,39363,'hero_text','Meet the Founder Rachel Frances Thompson'),(68939,39363,'_hero_text','field_6175723c285e9'),(68940,39363,'hero_actions','1'),(68941,39363,'_hero_actions','field_61757270285ea'),(68942,39363,'hero_style','default'),(68943,39363,'_hero_style','field_62051d9dc5324'),(68944,39363,'_thumbnail_id','39353'),(68945,39363,'__thumbnail_id','field_617570855ddaf'),(68946,39363,'hero_image_pos_x','right'),(68947,39363,'_hero_image_pos_x','field_62ec3d05390bb'),(68948,39363,'hero_image_pos_y','centre'),(68949,39363,'_hero_image_pos_y','field_62ec3d05390bc'),(68950,39363,'hero_image_pos',''),(68951,39363,'_hero_image_pos','field_62ec3d05390ba'),(68952,39363,'fft_hide_from_listings','0'),(68953,39363,'_fft_hide_from_listings','field_61f1320446ab2'),(68954,39363,'fft_page_format','default'),(68955,39363,'_fft_page_format','field_61ae213f1f218'),(68956,39363,'fft_hide_nav','0'),(68957,39363,'_fft_hide_nav','field_635bd5e43527c'),(68958,39363,'fft_hide_header_call_to_action','0'),(68959,39363,'_fft_hide_header_call_to_action','field_635bd6723527d'),(68960,39363,'fft_page_sitemap','0'),(68961,39363,'_fft_page_sitemap','field_61af9b34e8181'),(68962,39363,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(68963,39363,'_blocks','field_6176696113096'),(68964,39363,'hero_actions_0_button','a:3:{s:5:\"title\";s:30:\"View Rachel\'s LinkedIn Profile\";s:3:\"url\";s:91:\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\";s:6:\"target\";s:0:\"\";}'),(68965,39363,'_hero_actions_0_button','field_61757281285eb'),(68966,39363,'blocks_0_acfe_flexible_toggle',''),(68967,39363,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(68968,39363,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(68969,39363,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(68970,39363,'blocks_0_content','<h2>About Rachel</h2>\r\nRachel’s professional career in the health &amp; fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor &amp; IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd &amp; so frequently lectures, presents &amp; teaches at events both UK &amp; Internationally about the benefits of the intrinsic biomechanics\' methods'),(68971,39363,'_blocks_0_content','field_6193c9b5eac84'),(68972,39364,'_edit_lock','1725632932:5'),(68973,39364,'_edit_last','5'),(68974,39364,'hide_hero','0'),(68975,39364,'_hide_hero','field_66a2380fcda39'),(68976,39364,'hero_title','Tom Waldron - Master Trainer'),(68977,39364,'_hero_title','field_617571fe285e8'),(68978,39364,'hero_text',''),(68979,39364,'_hero_text','field_6175723c285e9'),(68980,39364,'hero_actions',''),(68981,39364,'_hero_actions','field_61757270285ea'),(68982,39364,'hero_style','default'),(68983,39364,'_hero_style','field_62051d9dc5324'),(68985,39364,'__thumbnail_id','field_617570855ddaf'),(68986,39364,'hero_image_pos_x','top'),(68987,39364,'_hero_image_pos_x','field_62ec3d05390bb'),(68988,39364,'hero_image_pos_y','centre'),(68989,39364,'_hero_image_pos_y','field_62ec3d05390bc'),(68990,39364,'hero_image_pos',''),(68991,39364,'_hero_image_pos','field_62ec3d05390ba'),(68992,39364,'fft_hide_from_listings','0'),(68993,39364,'_fft_hide_from_listings','field_61f1320446ab2'),(68994,39364,'fft_page_format','default'),(68995,39364,'_fft_page_format','field_61ae213f1f218'),(68996,39364,'fft_hide_nav','0'),(68997,39364,'_fft_hide_nav','field_635bd5e43527c'),(68998,39364,'fft_hide_header_call_to_action','0'),(68999,39364,'_fft_hide_header_call_to_action','field_635bd6723527d'),(69000,39364,'fft_page_sitemap','0'),(69001,39364,'_fft_page_sitemap','field_61af9b34e8181'),(69002,39364,'blocks_0_acfe_flexible_toggle',''),(69003,39364,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(69004,39364,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(69005,39364,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(69006,39364,'blocks_0_content','<h2>Tom Waldron</h2>\r\nTom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance &amp; freedom of movement are described by Tom as ‘incredible!’ He has been a Biomechanics Coach™ since Mar 2016 &amp; it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts &amp; it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(69007,39364,'_blocks_0_content','field_6193c9b5eac84'),(69008,39364,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(69009,39364,'_blocks','field_6176696113096'),(69010,39364,'_yoast_wpseo_title','Tom Waldron | Biomechanics Education'),(69011,39364,'_yoast_wpseo_estimated-reading-time-minutes','1'),(69012,39365,'hide_hero','0'),(69013,39365,'_hide_hero','field_66a2380fcda39'),(69014,39365,'hero_title','Tom Waldron - Master Trainer'),(69015,39365,'_hero_title','field_617571fe285e8'),(69016,39365,'hero_text','Meet Tom ! '),(69017,39365,'_hero_text','field_6175723c285e9'),(69018,39365,'hero_actions',''),(69019,39365,'_hero_actions','field_61757270285ea'),(69020,39365,'hero_style','default'),(69021,39365,'_hero_style','field_62051d9dc5324'),(69022,39365,'_thumbnail_id',''),(69023,39365,'__thumbnail_id','field_617570855ddaf'),(69024,39365,'hero_image_pos_x','right'),(69025,39365,'_hero_image_pos_x','field_62ec3d05390bb'),(69026,39365,'hero_image_pos_y','top'),(69027,39365,'_hero_image_pos_y','field_62ec3d05390bc'),(69028,39365,'hero_image_pos',''),(69029,39365,'_hero_image_pos','field_62ec3d05390ba'),(69030,39365,'fft_hide_from_listings','0'),(69031,39365,'_fft_hide_from_listings','field_61f1320446ab2'),(69032,39365,'fft_page_format','default'),(69033,39365,'_fft_page_format','field_61ae213f1f218'),(69034,39365,'fft_hide_nav','0'),(69035,39365,'_fft_hide_nav','field_635bd5e43527c'),(69036,39365,'fft_hide_header_call_to_action','0'),(69037,39365,'_fft_hide_header_call_to_action','field_635bd6723527d'),(69038,39365,'fft_page_sitemap','0'),(69039,39365,'_fft_page_sitemap','field_61af9b34e8181'),(69040,39365,'blocks_0_acfe_flexible_toggle',''),(69041,39365,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(69042,39365,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(69043,39365,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(69044,39365,'blocks_0_content','<h2>Tom Waldron - Master Trainer</h2>\r\nTom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance &amp; freedom of movement are described by Tom as ‘incredible!’ He has been a Biomechanics Coach™ since Mar 2016 &amp; it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts &amp; it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(69045,39365,'_blocks_0_content','field_6193c9b5eac84'),(69046,39365,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(69047,39365,'_blocks','field_6176696113096'),(69048,39366,'_wp_attached_file','2024/08/tom-waldron.png'),(69049,39366,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:23:\"2024/08/tom-waldron.png\";s:8:\"filesize\";i:3102877;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"tom-waldron-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:681805;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"tom-waldron-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1170507;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"tom-waldron-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152101;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"tom-waldron-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:505026;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"tom-waldron-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1849558;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:23:\"tom-waldron-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:279239;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:23:\"tom-waldron-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1313709;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:25:\"tom-waldron-1200x1080.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2186477;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:23:\"tom-waldron-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:180218;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:23:\"tom-waldron-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:828337;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:24:\"tom-waldron-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1417775;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:23:\"tom-waldron-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:214134;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:23:\"tom-waldron-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1014338;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:24:\"tom-waldron-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1717707;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:23:\"tom-waldron-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:204672;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:23:\"tom-waldron-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:948014;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:24:\"tom-waldron-1200x900.png\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1618266;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:23:\"tom-waldron-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152101;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:23:\"tom-waldron-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:681817;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:24:\"tom-waldron-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1170507;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(69050,39364,'_thumbnail_id','39366'),(69051,39367,'hide_hero','0'),(69052,39367,'_hide_hero','field_66a2380fcda39'),(69053,39367,'hero_title','Tom Waldron - Master Trainer'),(69054,39367,'_hero_title','field_617571fe285e8'),(69055,39367,'hero_text','Meet Tom ! '),(69056,39367,'_hero_text','field_6175723c285e9'),(69057,39367,'hero_actions',''),(69058,39367,'_hero_actions','field_61757270285ea'),(69059,39367,'hero_style','default'),(69060,39367,'_hero_style','field_62051d9dc5324'),(69061,39367,'hero_image_pos_x','right'),(69062,39367,'_hero_image_pos_x','field_62ec3d05390bb'),(69063,39367,'hero_image_pos_y','top'),(69064,39367,'_hero_image_pos_y','field_62ec3d05390bc'),(69065,39367,'hero_image_pos',''),(69066,39367,'_hero_image_pos','field_62ec3d05390ba'),(69067,39367,'fft_hide_from_listings','0'),(69068,39367,'_fft_hide_from_listings','field_61f1320446ab2'),(69069,39367,'fft_page_format','default'),(69070,39367,'_fft_page_format','field_61ae213f1f218'),(69071,39367,'fft_hide_nav','0'),(69072,39367,'_fft_hide_nav','field_635bd5e43527c'),(69073,39367,'fft_hide_header_call_to_action','0'),(69074,39367,'_fft_hide_header_call_to_action','field_635bd6723527d'),(69075,39367,'fft_page_sitemap','0'),(69076,39367,'_fft_page_sitemap','field_61af9b34e8181'),(69077,39367,'blocks_0_acfe_flexible_toggle',''),(69078,39367,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(69079,39367,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(69080,39367,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(69081,39367,'blocks_0_content','<h2>Tom Waldron - Master Trainer</h2>\r\nTom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance &amp; freedom of movement are described by Tom as ‘incredible!’ He has been a Biomechanics Coach™ since Mar 2016 &amp; it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts &amp; it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(69082,39367,'_blocks_0_content','field_6193c9b5eac84'),(69083,39367,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(69084,39367,'_blocks','field_6176696113096'),(69085,39367,'_thumbnail_id','39366'),(69086,39367,'__thumbnail_id','field_617570855ddaf'),(69123,39369,'hide_hero','0'),(69124,39369,'_hide_hero','field_66a2380fcda39'),(69125,39369,'hero_title','Tom Waldron - Master Trainer'),(69126,39369,'_hero_title','field_617571fe285e8'),(69127,39369,'hero_text',''),(69128,39369,'_hero_text','field_6175723c285e9'),(69129,39369,'hero_actions',''),(69130,39369,'_hero_actions','field_61757270285ea'),(69131,39369,'hero_style','default'),(69132,39369,'_hero_style','field_62051d9dc5324'),(69133,39369,'hero_image_pos_x','right'),(69134,39369,'_hero_image_pos_x','field_62ec3d05390bb'),(69135,39369,'hero_image_pos_y','top'),(69136,39369,'_hero_image_pos_y','field_62ec3d05390bc'),(69137,39369,'hero_image_pos',''),(69138,39369,'_hero_image_pos','field_62ec3d05390ba'),(69139,39369,'fft_hide_from_listings','0'),(69140,39369,'_fft_hide_from_listings','field_61f1320446ab2'),(69141,39369,'fft_page_format','default'),(69142,39369,'_fft_page_format','field_61ae213f1f218'),(69143,39369,'fft_hide_nav','0'),(69144,39369,'_fft_hide_nav','field_635bd5e43527c'),(69145,39369,'fft_hide_header_call_to_action','0'),(69146,39369,'_fft_hide_header_call_to_action','field_635bd6723527d'),(69147,39369,'fft_page_sitemap','0'),(69148,39369,'_fft_page_sitemap','field_61af9b34e8181'),(69149,39369,'blocks_0_acfe_flexible_toggle',''),(69150,39369,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(69151,39369,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(69152,39369,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(69153,39369,'blocks_0_content','<h2>Tom Waldron - Master Trainer</h2>\r\nTom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance &amp; freedom of movement are described by Tom as ‘incredible!’ He has been a Biomechanics Coach™ since Mar 2016 &amp; it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts &amp; it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(69154,39369,'_blocks_0_content','field_6193c9b5eac84'),(69155,39369,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(69156,39369,'_blocks','field_6176696113096'),(69157,39369,'_thumbnail_id','39366'),(69158,39369,'__thumbnail_id','field_617570855ddaf'),(69159,39370,'hide_hero','0'),(69160,39370,'_hide_hero','field_66a2380fcda39'),(69161,39370,'hero_title','Tom Waldron - Master Trainer'),(69162,39370,'_hero_title','field_617571fe285e8'),(69163,39370,'hero_text',''),(69164,39370,'_hero_text','field_6175723c285e9'),(69165,39370,'hero_actions',''),(69166,39370,'_hero_actions','field_61757270285ea'),(69167,39370,'hero_style','default'),(69168,39370,'_hero_style','field_62051d9dc5324'),(69169,39370,'hero_image_pos_x','right'),(69170,39370,'_hero_image_pos_x','field_62ec3d05390bb'),(69171,39370,'hero_image_pos_y','top'),(69172,39370,'_hero_image_pos_y','field_62ec3d05390bc'),(69173,39370,'hero_image_pos',''),(69174,39370,'_hero_image_pos','field_62ec3d05390ba'),(69175,39370,'fft_hide_from_listings','0'),(69176,39370,'_fft_hide_from_listings','field_61f1320446ab2'),(69177,39370,'fft_page_format','default'),(69178,39370,'_fft_page_format','field_61ae213f1f218'),(69179,39370,'fft_hide_nav','0'),(69180,39370,'_fft_hide_nav','field_635bd5e43527c'),(69181,39370,'fft_hide_header_call_to_action','0'),(69182,39370,'_fft_hide_header_call_to_action','field_635bd6723527d'),(69183,39370,'fft_page_sitemap','0'),(69184,39370,'_fft_page_sitemap','field_61af9b34e8181'),(69185,39370,'blocks_0_acfe_flexible_toggle',''),(69186,39370,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(69187,39370,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(69188,39370,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(69189,39370,'blocks_0_content','<h2>Tom Waldron</h2>\r\nTom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance &amp; freedom of movement are described by Tom as ‘incredible!’ He has been a Biomechanics Coach™ since Mar 2016 &amp; it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts &amp; it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(69190,39370,'_blocks_0_content','field_6193c9b5eac84'),(69191,39370,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(69192,39370,'_blocks','field_6176696113096'),(69193,39370,'_thumbnail_id','39366'),(69194,39370,'__thumbnail_id','field_617570855ddaf'),(69195,39371,'hide_hero','0'),(69196,39371,'_hide_hero','field_66a2380fcda39'),(69197,39371,'hero_title','Tom Waldron - Master Trainer'),(69198,39371,'_hero_title','field_617571fe285e8'),(69199,39371,'hero_text',''),(69200,39371,'_hero_text','field_6175723c285e9'),(69201,39371,'hero_actions',''),(69202,39371,'_hero_actions','field_61757270285ea'),(69203,39371,'hero_style','default'),(69204,39371,'_hero_style','field_62051d9dc5324'),(69205,39371,'hero_image_pos_x','left'),(69206,39371,'_hero_image_pos_x','field_62ec3d05390bb'),(69207,39371,'hero_image_pos_y','bottom'),(69208,39371,'_hero_image_pos_y','field_62ec3d05390bc'),(69209,39371,'hero_image_pos',''),(69210,39371,'_hero_image_pos','field_62ec3d05390ba'),(69211,39371,'fft_hide_from_listings','0'),(69212,39371,'_fft_hide_from_listings','field_61f1320446ab2'),(69213,39371,'fft_page_format','default'),(69214,39371,'_fft_page_format','field_61ae213f1f218'),(69215,39371,'fft_hide_nav','0'),(69216,39371,'_fft_hide_nav','field_635bd5e43527c'),(69217,39371,'fft_hide_header_call_to_action','0'),(69218,39371,'_fft_hide_header_call_to_action','field_635bd6723527d'),(69219,39371,'fft_page_sitemap','0'),(69220,39371,'_fft_page_sitemap','field_61af9b34e8181'),(69221,39371,'blocks_0_acfe_flexible_toggle',''),(69222,39371,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(69223,39371,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(69224,39371,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(69225,39371,'blocks_0_content','<h2>Tom Waldron</h2>\r\nTom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance &amp; freedom of movement are described by Tom as ‘incredible!’ He has been a Biomechanics Coach™ since Mar 2016 &amp; it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts &amp; it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(69226,39371,'_blocks_0_content','field_6193c9b5eac84'),(69227,39371,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(69228,39371,'_blocks','field_6176696113096'),(69229,39371,'_thumbnail_id','39366'),(69230,39371,'__thumbnail_id','field_617570855ddaf'),(69231,39372,'hide_hero','0'),(69232,39372,'_hide_hero','field_66a2380fcda39'),(69233,39372,'hero_title','Tom Waldron - Master Trainer'),(69234,39372,'_hero_title','field_617571fe285e8'),(69235,39372,'hero_text',''),(69236,39372,'_hero_text','field_6175723c285e9'),(69237,39372,'hero_actions',''),(69238,39372,'_hero_actions','field_61757270285ea'),(69239,39372,'hero_style','default'),(69240,39372,'_hero_style','field_62051d9dc5324'),(69241,39372,'hero_image_pos_x','left'),(69242,39372,'_hero_image_pos_x','field_62ec3d05390bb'),(69243,39372,'hero_image_pos_y','top'),(69244,39372,'_hero_image_pos_y','field_62ec3d05390bc'),(69245,39372,'hero_image_pos',''),(69246,39372,'_hero_image_pos','field_62ec3d05390ba'),(69247,39372,'fft_hide_from_listings','0'),(69248,39372,'_fft_hide_from_listings','field_61f1320446ab2'),(69249,39372,'fft_page_format','default'),(69250,39372,'_fft_page_format','field_61ae213f1f218'),(69251,39372,'fft_hide_nav','0'),(69252,39372,'_fft_hide_nav','field_635bd5e43527c'),(69253,39372,'fft_hide_header_call_to_action','0'),(69254,39372,'_fft_hide_header_call_to_action','field_635bd6723527d'),(69255,39372,'fft_page_sitemap','0'),(69256,39372,'_fft_page_sitemap','field_61af9b34e8181'),(69257,39372,'blocks_0_acfe_flexible_toggle',''),(69258,39372,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(69259,39372,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(69260,39372,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(69261,39372,'blocks_0_content','<h2>Tom Waldron</h2>\r\nTom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance &amp; freedom of movement are described by Tom as ‘incredible!’ He has been a Biomechanics Coach™ since Mar 2016 &amp; it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts &amp; it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(69262,39372,'_blocks_0_content','field_6193c9b5eac84'),(69263,39372,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(69264,39372,'_blocks','field_6176696113096'),(69265,39372,'_thumbnail_id','39366'),(69266,39372,'__thumbnail_id','field_617570855ddaf'),(69267,39373,'hide_hero','0'),(69268,39373,'_hide_hero','field_66a2380fcda39'),(69269,39373,'hero_title','Tom Waldron - Master Trainer'),(69270,39373,'_hero_title','field_617571fe285e8'),(69271,39373,'hero_text',''),(69272,39373,'_hero_text','field_6175723c285e9'),(69273,39373,'hero_actions',''),(69274,39373,'_hero_actions','field_61757270285ea'),(69275,39373,'hero_style','default'),(69276,39373,'_hero_style','field_62051d9dc5324'),(69277,39373,'hero_image_pos_x','top'),(69278,39373,'_hero_image_pos_x','field_62ec3d05390bb'),(69279,39373,'hero_image_pos_y','top'),(69280,39373,'_hero_image_pos_y','field_62ec3d05390bc'),(69281,39373,'hero_image_pos',''),(69282,39373,'_hero_image_pos','field_62ec3d05390ba'),(69283,39373,'fft_hide_from_listings','0'),(69284,39373,'_fft_hide_from_listings','field_61f1320446ab2'),(69285,39373,'fft_page_format','default'),(69286,39373,'_fft_page_format','field_61ae213f1f218'),(69287,39373,'fft_hide_nav','0'),(69288,39373,'_fft_hide_nav','field_635bd5e43527c'),(69289,39373,'fft_hide_header_call_to_action','0'),(69290,39373,'_fft_hide_header_call_to_action','field_635bd6723527d'),(69291,39373,'fft_page_sitemap','0'),(69292,39373,'_fft_page_sitemap','field_61af9b34e8181'),(69293,39373,'blocks_0_acfe_flexible_toggle',''),(69294,39373,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(69295,39373,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(69296,39373,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(69297,39373,'blocks_0_content','<h2>Tom Waldron</h2>\r\nTom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance &amp; freedom of movement are described by Tom as ‘incredible!’ He has been a Biomechanics Coach™ since Mar 2016 &amp; it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts &amp; it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(69298,39373,'_blocks_0_content','field_6193c9b5eac84'),(69299,39373,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(69300,39373,'_blocks','field_6176696113096'),(69301,39373,'_thumbnail_id','39366'),(69302,39373,'__thumbnail_id','field_617570855ddaf'),(69303,39374,'hide_hero','0'),(69304,39374,'_hide_hero','field_66a2380fcda39'),(69305,39374,'hero_title','Tom Waldron - Master Trainer'),(69306,39374,'_hero_title','field_617571fe285e8'),(69307,39374,'hero_text',''),(69308,39374,'_hero_text','field_6175723c285e9'),(69309,39374,'hero_actions',''),(69310,39374,'_hero_actions','field_61757270285ea'),(69311,39374,'hero_style','default'),(69312,39374,'_hero_style','field_62051d9dc5324'),(69313,39374,'hero_image_pos_x','top'),(69314,39374,'_hero_image_pos_x','field_62ec3d05390bb'),(69315,39374,'hero_image_pos_y','right'),(69316,39374,'_hero_image_pos_y','field_62ec3d05390bc'),(69317,39374,'hero_image_pos',''),(69318,39374,'_hero_image_pos','field_62ec3d05390ba'),(69319,39374,'fft_hide_from_listings','0'),(69320,39374,'_fft_hide_from_listings','field_61f1320446ab2'),(69321,39374,'fft_page_format','default'),(69322,39374,'_fft_page_format','field_61ae213f1f218'),(69323,39374,'fft_hide_nav','0'),(69324,39374,'_fft_hide_nav','field_635bd5e43527c'),(69325,39374,'fft_hide_header_call_to_action','0'),(69326,39374,'_fft_hide_header_call_to_action','field_635bd6723527d'),(69327,39374,'fft_page_sitemap','0'),(69328,39374,'_fft_page_sitemap','field_61af9b34e8181'),(69329,39374,'blocks_0_acfe_flexible_toggle',''),(69330,39374,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(69331,39374,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(69332,39374,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(69333,39374,'blocks_0_content','<h2>Tom Waldron</h2>\r\nTom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance &amp; freedom of movement are described by Tom as ‘incredible!’ He has been a Biomechanics Coach™ since Mar 2016 &amp; it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts &amp; it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(69334,39374,'_blocks_0_content','field_6193c9b5eac84'),(69335,39374,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(69336,39374,'_blocks','field_6176696113096'),(69337,39374,'_thumbnail_id','39366'),(69338,39374,'__thumbnail_id','field_617570855ddaf'),(69339,39375,'hide_hero','0'),(69340,39375,'_hide_hero','field_66a2380fcda39'),(69341,39375,'hero_title','Tom Waldron - Master Trainer'),(69342,39375,'_hero_title','field_617571fe285e8'),(69343,39375,'hero_text',''),(69344,39375,'_hero_text','field_6175723c285e9'),(69345,39375,'hero_actions',''),(69346,39375,'_hero_actions','field_61757270285ea'),(69347,39375,'hero_style','default'),(69348,39375,'_hero_style','field_62051d9dc5324'),(69349,39375,'hero_image_pos_x','top'),(69350,39375,'_hero_image_pos_x','field_62ec3d05390bb'),(69351,39375,'hero_image_pos_y','centre'),(69352,39375,'_hero_image_pos_y','field_62ec3d05390bc'),(69353,39375,'hero_image_pos',''),(69354,39375,'_hero_image_pos','field_62ec3d05390ba'),(69355,39375,'fft_hide_from_listings','0'),(69356,39375,'_fft_hide_from_listings','field_61f1320446ab2'),(69357,39375,'fft_page_format','default'),(69358,39375,'_fft_page_format','field_61ae213f1f218'),(69359,39375,'fft_hide_nav','0'),(69360,39375,'_fft_hide_nav','field_635bd5e43527c'),(69361,39375,'fft_hide_header_call_to_action','0'),(69362,39375,'_fft_hide_header_call_to_action','field_635bd6723527d'),(69363,39375,'fft_page_sitemap','0'),(69364,39375,'_fft_page_sitemap','field_61af9b34e8181'),(69365,39375,'blocks_0_acfe_flexible_toggle',''),(69366,39375,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(69367,39375,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(69368,39375,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(69369,39375,'blocks_0_content','<h2>Tom Waldron</h2>\r\nTom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance &amp; freedom of movement are described by Tom as ‘incredible!’ He has been a Biomechanics Coach™ since Mar 2016 &amp; it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts &amp; it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(69370,39375,'_blocks_0_content','field_6193c9b5eac84'),(69371,39375,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(69372,39375,'_blocks','field_6176696113096'),(69373,39375,'_thumbnail_id','39366'),(69374,39375,'__thumbnail_id','field_617570855ddaf'),(70207,39379,'_wp_attached_file','2024/07/Building-your-fitness-business-hero-image-scaled.jpg'),(70208,39379,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:60:\"2024/07/Building-your-fitness-business-hero-image-scaled.jpg\";s:8:\"filesize\";i:663487;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129984;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Building-your-fitness-business-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192800;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50251;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105668;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"Building-your-fitness-business-hero-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:279105;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:55:\"Building-your-fitness-business-hero-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:446516;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56259;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155323;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:55:\"Building-your-fitness-business-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:236888;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50181;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129984;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:54:\"Building-your-fitness-business-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192800;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46635;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121952;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:54:\"Building-your-fitness-business-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184895;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52030;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138057;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:54:\"Building-your-fitness-business-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206814;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45844;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114925;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:54:\"Building-your-fitness-business-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167636;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1631952435\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"47\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:45:\"Building-your-fitness-business-hero-image.jpg\";}'),(70381,39383,'_wp_attached_file','2024/08/Building-your-fitness-business-hero-image-scaled.jpg'),(70382,39383,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:60:\"2024/08/Building-your-fitness-business-hero-image-scaled.jpg\";s:8:\"filesize\";i:663487;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129984;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Building-your-fitness-business-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192800;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50251;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105668;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"Building-your-fitness-business-hero-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:279105;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:55:\"Building-your-fitness-business-hero-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:446516;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56259;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155323;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:55:\"Building-your-fitness-business-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:236888;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50181;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129984;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:54:\"Building-your-fitness-business-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192800;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46635;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121952;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:54:\"Building-your-fitness-business-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184895;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52030;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138057;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:54:\"Building-your-fitness-business-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206814;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45844;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:53:\"Building-your-fitness-business-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114925;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:54:\"Building-your-fitness-business-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167636;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1631952435\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"47\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:45:\"Building-your-fitness-business-hero-image.jpg\";}'),(74061,39401,'_edit_lock','1723032390:5'),(74062,39401,'_edit_last','5'),(74063,39401,'blocks_0_acfe_flexible_toggle',''),(74064,39401,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(74065,39401,'blocks_0_acfe_flexible_layout_title','Icons'),(74066,39401,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(74067,39401,'blocks_0_options_theme','#ffffff'),(74068,39401,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(74069,39401,'blocks_0_options_format','grid'),(74070,39401,'_blocks_0_options_format','field_64bfde9a90690'),(74071,39401,'blocks_0_options',''),(74072,39401,'_blocks_0_options','field_64bfdd9b90684'),(74073,39401,'blocks_0_row_content_title',''),(74074,39401,'_blocks_0_row_content_title','field_64bfdd9b90687'),(74075,39401,'blocks_0_row_content_heading','Payment Options'),(74076,39401,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(74077,39401,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(74078,39401,'_blocks_0_row_content_text','field_64bfdd9b90689'),(74079,39401,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(74080,39401,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(74081,39401,'blocks_0_row_content_actions','1'),(74082,39401,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(74083,39401,'blocks_0_row_content',''),(74084,39401,'_blocks_0_row_content','field_64bfdd9b90686'),(74085,39401,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(74086,39401,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(74087,39401,'blocks_0_icon_row_items_0_label','Pay your course in full '),(74088,39401,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(74089,39401,'blocks_0_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full '),(74090,39401,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(74091,39401,'blocks_0_icon_row_items_1_icon','pass-rate.svg'),(74092,39401,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(74093,39401,'blocks_0_icon_row_items_1_label','Flexible payment schemes'),(74094,39401,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(74095,39401,'blocks_0_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(74096,39401,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(74097,39401,'blocks_0_icon_row_items_2_icon','finance.svg'),(74098,39401,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(74099,39401,'blocks_0_icon_row_items_2_label','0% finance*'),(74100,39401,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(74101,39401,'blocks_0_icon_row_items_2_text','Put down a deposit and then spread the cost of your training with 0% finance'),(74102,39401,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(74103,39401,'blocks_0_icon_row_items','3'),(74104,39401,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(74105,39401,'blocks','a:1:{i:0;s:5:\"icons\";}'),(74106,39401,'_blocks','field_6176696113096'),(74377,39403,'_edit_lock','1727266418:5'),(74378,39403,'_edit_last','5'),(79428,39420,'_wp_attached_file','2024/08/Core-training-hero-image-scaled.jpg'),(79429,39420,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:43:\"2024/08/Core-training-hero-image-scaled.jpg\";s:8:\"filesize\";i:495001;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111357;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"Core-training-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155283;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54935;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94610;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"Core-training-hero-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214314;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:38:\"Core-training-hero-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:332415;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64869;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147373;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:38:\"Core-training-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216397;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54823;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111357;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:37:\"Core-training-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155283;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55937;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116788;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:37:\"Core-training-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167760;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57700;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121435;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:37:\"Core-training-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171892;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52507;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103717;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:37:\"Core-training-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143855;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1634994966\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"45\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:28:\"Core-training-hero-image.jpg\";}'),(79430,39421,'_wp_attached_file','2024/08/Core-training-50.50-image-scaled.jpg'),(79431,39421,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:44:\"2024/08/Core-training-50.50-image-scaled.jpg\";s:8:\"filesize\";i:513595;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107942;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Core-training-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150115;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54688;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91616;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"Core-training-50.50-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210823;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:39:\"Core-training-50.50-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:336929;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59984;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132976;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:39:\"Core-training-50.50-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198395;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54673;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107942;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:38:\"Core-training-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150115;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53635;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111023;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:38:\"Core-training-50.50-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162586;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55765;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113177;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:38:\"Core-training-50.50-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160549;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52106;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100083;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:38:\"Core-training-50.50-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137969;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1634995585\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:29:\"Core-training-50.50-image.jpg\";}'),(79432,39422,'_edit_lock','1727266410:5'),(79433,39422,'_edit_last','5'),(83858,39435,'_wp_attached_file','2024/07/level-4-pt-hero-image-scaled.jpg'),(83859,39435,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:40:\"2024/07/level-4-pt-hero-image-scaled.jpg\";s:8:\"filesize\";i:531056;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"level-4-pt-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74438;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"level-4-pt-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111068;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"level-4-pt-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33896;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"level-4-pt-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61480;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"level-4-pt-hero-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171021;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"level-4-pt-hero-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:312687;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"level-4-pt-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37918;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"level-4-pt-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98773;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"level-4-pt-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164077;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"level-4-pt-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33894;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"level-4-pt-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74438;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"level-4-pt-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111068;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"level-4-pt-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34313;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"level-4-pt-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82606;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"level-4-pt-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132981;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"level-4-pt-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35218;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"level-4-pt-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80469;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"level-4-pt-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124562;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"level-4-pt-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32311;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"level-4-pt-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69412;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"level-4-pt-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102005;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1631952695\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"57\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"level-4-pt-hero-image.jpg\";}'),(83948,39437,'_wp_attached_file','2024/08/level-4-pt-50.50-image-scaled.jpg'),(83949,39437,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:41:\"2024/08/level-4-pt-50.50-image-scaled.jpg\";s:8:\"filesize\";i:565221;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"level-4-pt-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95157;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"level-4-pt-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139561;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"level-4-pt-50.50-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40690;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"level-4-pt-50.50-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78045;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"level-4-pt-50.50-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206723;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"level-4-pt-50.50-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:352056;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"level-4-pt-50.50-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44837;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"level-4-pt-50.50-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117588;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:36:\"level-4-pt-50.50-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188648;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"level-4-pt-50.50-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40645;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"level-4-pt-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95157;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"level-4-pt-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139561;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"level-4-pt-50.50-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37679;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"level-4-pt-50.50-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90771;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"level-4-pt-50.50-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142689;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"level-4-pt-50.50-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41899;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"level-4-pt-50.50-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100405;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"level-4-pt-50.50-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151269;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"level-4-pt-50.50-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37923;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"level-4-pt-50.50-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86800;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"level-4-pt-50.50-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126602;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1631952510\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:26:\"level-4-pt-50.50-image.jpg\";}'),(85060,39445,'_edit_lock','1730995218:13'),(85061,39445,'_edit_last','14'),(85062,39446,'_edit_lock','1727266399:5'),(85063,39446,'_edit_last','14'),(85625,7,'hide_hero','0'),(85626,7,'_hide_hero','field_66a2380fcda39'),(85627,39451,'hero_style','default'),(85628,39451,'_hero_style','field_62051d9dc5324'),(85629,39451,'hero_image_pos_x','right'),(85630,39451,'_hero_image_pos_x','field_62ec3d05390bb'),(85631,39451,'hero_image_pos_y','top'),(85632,39451,'_hero_image_pos_y','field_62ec3d05390bc'),(85633,39451,'hero_image_pos',''),(85634,39451,'_hero_image_pos','field_62ec3d05390ba'),(85635,39451,'hero_title','Biomechanics Education'),(85636,39451,'_hero_title','field_617571fe285e8'),(85637,39451,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(85638,39451,'_hero_text','field_6175723c285e9'),(85639,39451,'hero_actions','1'),(85640,39451,'_hero_actions','field_61757270285ea'),(85641,39451,'hero_icon',''),(85642,39451,'_hero_icon','field_61a6182199d03'),(85643,39451,'fft_hide_from_listings','0'),(85644,39451,'_fft_hide_from_listings','field_61f1320446ab2'),(85645,39451,'fft_page_format','default'),(85646,39451,'_fft_page_format','field_61ae213f1f218'),(85647,39451,'fft_hide_nav','0'),(85648,39451,'_fft_hide_nav','field_635bd5e43527c'),(85649,39451,'fft_hide_header_call_to_action','0'),(85650,39451,'_fft_hide_header_call_to_action','field_635bd6723527d'),(85651,39451,'fft_page_sitemap','0'),(85652,39451,'_fft_page_sitemap','field_61af9b34e8181'),(85653,39451,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:18:\"testimonial_slider\";}'),(85654,39451,'_blocks','field_6176696113096'),(85655,39451,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(85656,39451,'_hero_actions_0_button','field_61757281285eb'),(85657,39451,'_thumbnail_id','38951'),(85658,39451,'__thumbnail_id','field_617570855ddaf'),(85659,39451,'blocks_1_acfe_flexible_toggle','1'),(85660,39451,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(85661,39451,'blocks_1_acfe_flexible_layout_title','Video'),(85662,39451,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(85663,39451,'blocks_1_size','large'),(85664,39451,'_blocks_1_size','field_6487038f297c1'),(85665,39451,'blocks_1_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(85666,39451,'_blocks_1_video_src','field_6193c4a98ec07'),(85667,39451,'blocks_1_video_thumbnail',''),(85668,39451,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(85669,39451,'blocks_1_row_content_title',''),(85670,39451,'_blocks_1_row_content_title','field_64870132a865d'),(85671,39451,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(85672,39451,'_blocks_1_row_content_heading','field_64870142a865e'),(85673,39451,'blocks_1_row_content_text',''),(85674,39451,'_blocks_1_row_content_text','field_64870148a865f'),(85675,39451,'blocks_1_row_content',''),(85676,39451,'_blocks_1_row_content','field_6487008ba865c'),(85677,39451,'blocks_0_acfe_flexible_toggle',''),(85678,39451,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(85679,39451,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(85680,39451,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(85681,39451,'blocks_0_options_theme','#ffffff'),(85682,39451,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(85683,39451,'blocks_0_options_reverse','0'),(85684,39451,'_blocks_0_options_reverse','field_61768049bb8ac'),(85685,39451,'blocks_0_options',''),(85686,39451,'_blocks_0_options','field_617682517c334'),(85687,39451,'blocks_0_split_5050_image','38950'),(85688,39451,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(85689,39451,'blocks_0_split_5050_video',''),(85690,39451,'_blocks_0_split_5050_video','field_6239f3160848a'),(85691,39451,'blocks_0_split_5050_content_title',''),(85692,39451,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(85693,39451,'blocks_0_split_5050_content_heading','What is Biomechanics Education ?'),(85694,39451,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(85695,39451,'blocks_0_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(85696,39451,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(85697,39451,'blocks_0_split_5050_content_actions',''),(85698,39451,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(85699,39451,'blocks_0_split_5050_content',''),(85700,39451,'_blocks_0_split_5050_content','field_61767afceb8ba'),(85701,39451,'blocks_2_acfe_flexible_toggle',''),(85702,39451,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(85703,39451,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(85704,39451,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(85705,39451,'blocks_2_options_theme','#ffffff'),(85706,39451,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(85707,39451,'blocks_2_options_reverse','0'),(85708,39451,'_blocks_2_options_reverse','field_61768049bb8ac'),(85709,39451,'blocks_2_options',''),(85710,39451,'_blocks_2_options','field_617682517c334'),(85711,39451,'blocks_2_split_5050_image','38960'),(85712,39451,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(85713,39451,'blocks_2_split_5050_video',''),(85714,39451,'_blocks_2_split_5050_video','field_6239f3160848a'),(85715,39451,'blocks_2_split_5050_content_title','Working In Partnership'),(85716,39451,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(85717,39451,'blocks_2_split_5050_content_heading','Biomechanics Education and Future Fit'),(85718,39451,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(85719,39451,'blocks_2_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(85720,39451,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(85721,39451,'blocks_2_split_5050_content_actions',''),(85722,39451,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(85723,39451,'blocks_2_split_5050_content',''),(85724,39451,'_blocks_2_split_5050_content','field_61767afceb8ba'),(85725,39451,'blocks_3_acfe_flexible_toggle',''),(85726,39451,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(85727,39451,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(85728,39451,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(85729,39451,'blocks_3_testimonial_slider_content_title',''),(85730,39451,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(85731,39451,'blocks_3_testimonial_slider_content_heading','Testimonials'),(85732,39451,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(85733,39451,'blocks_3_testimonial_slider_content_text',''),(85734,39451,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(85735,39451,'blocks_3_testimonial_slider_content_actions',''),(85736,39451,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(85737,39451,'blocks_3_testimonial_slider_content',''),(85738,39451,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(85739,39451,'blocks_3_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(85740,39451,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(85741,39451,'blocks_3_testimonial_slider_ambassador_bool','0'),(85742,39451,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(85743,39451,'hide_hero','0'),(85744,39451,'_hide_hero','field_66a2380fcda39'),(85745,39452,'hide_hero','0'),(85746,39452,'_hide_hero','field_66a2380fcda39'),(85747,39452,'hero_title','Biomechanics and Personal Training'),(85748,39452,'_hero_title','field_617571fe285e8'),(85749,39452,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(85750,39452,'_hero_text','field_6175723c285e9'),(85751,39452,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(85752,39452,'_hero_actions_0_button','field_61757281285eb'),(85753,39452,'hero_actions','1'),(85754,39452,'_hero_actions','field_61757270285ea'),(85755,39452,'hero_style','default'),(85756,39452,'_hero_style','field_62051d9dc5324'),(85757,39452,'_thumbnail_id','39215'),(85758,39452,'__thumbnail_id','field_617570855ddaf'),(85759,39452,'hero_image_pos_x','right'),(85760,39452,'_hero_image_pos_x','field_62ec3d05390bb'),(85761,39452,'hero_image_pos_y','top'),(85762,39452,'_hero_image_pos_y','field_62ec3d05390bc'),(85763,39452,'hero_image_pos',''),(85764,39452,'_hero_image_pos','field_62ec3d05390ba'),(85765,39452,'fft_hide_from_listings','0'),(85766,39452,'_fft_hide_from_listings','field_61f1320446ab2'),(85767,39452,'fft_page_format','default'),(85768,39452,'_fft_page_format','field_61ae213f1f218'),(85769,39452,'fft_hide_nav','0'),(85770,39452,'_fft_hide_nav','field_635bd5e43527c'),(85771,39452,'fft_hide_header_call_to_action','0'),(85772,39452,'_fft_hide_header_call_to_action','field_635bd6723527d'),(85773,39452,'fft_page_sitemap','0'),(85774,39452,'_fft_page_sitemap','field_61af9b34e8181'),(85775,39452,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(85776,39452,'_blocks','field_6176696113096'),(85777,39452,'blocks_0_acfe_flexible_toggle',''),(85778,39452,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(85779,39452,'blocks_0_acfe_flexible_layout_title','Steps'),(85780,39452,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(85781,39452,'blocks_0_row_content_title',''),(85782,39452,'_blocks_0_row_content_title','field_64888cd1e26e0'),(85783,39452,'blocks_0_row_content_heading','Benefits of training with us'),(85784,39452,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(85785,39452,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(85786,39452,'_blocks_0_row_content_text','field_64888ce2e26e2'),(85787,39452,'blocks_0_row_content_actions',''),(85788,39452,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(85789,39452,'blocks_0_row_content',''),(85790,39452,'_blocks_0_row_content','field_64888cb0e26df'),(85791,39452,'blocks_0_steps_0_icon','progression.svg'),(85792,39452,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(85793,39452,'blocks_0_steps_0_title','Earning potential'),(85794,39452,'_blocks_0_steps_0_title','field_64888d94e26e7'),(85795,39452,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(85796,39452,'_blocks_0_steps_0_text','field_64888d99e26e8'),(85797,39452,'blocks_0_steps_1_icon','support.svg'),(85798,39452,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(85799,39452,'blocks_0_steps_1_title','Lifetime Learning Promise'),(85800,39452,'_blocks_0_steps_1_title','field_64888d94e26e7'),(85801,39452,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(85802,39452,'_blocks_0_steps_1_text','field_64888d99e26e8'),(85803,39452,'blocks_0_steps_2_icon','qualification.svg'),(85804,39452,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(85805,39452,'blocks_0_steps_2_title','Evidence based hands on learning'),(85806,39452,'_blocks_0_steps_2_title','field_64888d94e26e7'),(85807,39452,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(85808,39452,'_blocks_0_steps_2_text','field_64888d99e26e8'),(85809,39452,'blocks_0_steps_3_icon','leaders.svg'),(85810,39452,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(85811,39452,'blocks_0_steps_3_title','Stand out from the crowd'),(85812,39452,'_blocks_0_steps_3_title','field_64888d94e26e7'),(85813,39452,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(85814,39452,'_blocks_0_steps_3_text','field_64888d99e26e8'),(85815,39452,'blocks_0_steps','4'),(85816,39452,'_blocks_0_steps','field_64888d44e26e5'),(85817,39452,'blocks_1_acfe_flexible_toggle',''),(85818,39452,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(85819,39452,'blocks_1_acfe_flexible_layout_title','Video'),(85820,39452,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(85821,39452,'blocks_1_size','large'),(85822,39452,'_blocks_1_size','field_6487038f297c1'),(85823,39452,'blocks_1_row_content_title',''),(85824,39452,'_blocks_1_row_content_title','field_64870132a865d'),(85825,39452,'blocks_1_row_content_heading',''),(85826,39452,'_blocks_1_row_content_heading','field_64870142a865e'),(85827,39452,'blocks_1_row_content_text',''),(85828,39452,'_blocks_1_row_content_text','field_64870148a865f'),(85829,39452,'blocks_1_row_content',''),(85830,39452,'_blocks_1_row_content','field_6487008ba865c'),(85831,39452,'blocks_1_video_src',''),(85832,39452,'_blocks_1_video_src','field_6193c4a98ec07'),(85833,39452,'blocks_1_video_thumbnail',''),(85834,39452,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(85835,39452,'blocks_2_acfe_flexible_toggle',''),(85836,39452,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(85837,39452,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(85838,39452,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(85839,39452,'blocks_2_options_theme','#ffffff'),(85840,39452,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(85841,39452,'blocks_2_options_reverse','0'),(85842,39452,'_blocks_2_options_reverse','field_61768049bb8ac'),(85843,39452,'blocks_2_options',''),(85844,39452,'_blocks_2_options','field_617682517c334'),(85845,39452,'blocks_2_split_5050_image','39220'),(85846,39452,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(85847,39452,'blocks_2_split_5050_video',''),(85848,39452,'_blocks_2_split_5050_video','field_6239f3160848a'),(85849,39452,'blocks_2_split_5050_content_title',''),(85850,39452,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(85851,39452,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a PT'),(85852,39452,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(85853,39452,'blocks_2_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(85854,39452,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(85855,39452,'blocks_2_split_5050_content_actions',''),(85856,39452,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(85857,39452,'blocks_2_split_5050_content',''),(85858,39452,'_blocks_2_split_5050_content','field_61767afceb8ba'),(85859,39452,'blocks_3_acfe_flexible_toggle',''),(85860,39452,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(85861,39452,'blocks_3_acfe_flexible_layout_title','Form'),(85862,39452,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(85863,39452,'blocks_3_row_content_format','standard'),(85864,39452,'_blocks_3_row_content_format','field_6481ead962881'),(85865,39452,'blocks_3_row_content_title',''),(85866,39452,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(85867,39452,'blocks_3_row_content_heading','Enquire Today'),(85868,39452,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(85869,39452,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(85870,39452,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(85871,39452,'blocks_3_row_content_actions',''),(85872,39452,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(85873,39452,'blocks_3_row_content',''),(85874,39452,'_blocks_3_row_content','field_61a0f5f5b3db0'),(85875,39452,'blocks_3_row_form',''),(85876,39452,'_blocks_3_row_form','field_61a4ff2c0b08e'),(85877,39452,'blocks_3_row_form_button_label',''),(85878,39452,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(85879,39452,'blocks_4_acfe_flexible_toggle',''),(85880,39452,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(85881,39452,'blocks_4_acfe_flexible_layout_title','Tabs'),(85882,39452,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(85883,39452,'blocks_4_options_theme','#ffffff'),(85884,39452,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(85885,39452,'blocks_4_options',''),(85886,39452,'_blocks_4_options','field_6177cfcd8140f'),(85887,39452,'blocks_4_tabs_0_tab_label','What will I learn ?'),(85888,39452,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(85889,39452,'blocks_4_tabs_0_tab_content_title',''),(85890,39452,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(85891,39452,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(85892,39452,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(85893,39452,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(85894,39452,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(85895,39452,'blocks_4_tabs_0_tab_content_actions',''),(85896,39452,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(85897,39452,'blocks_4_tabs_0_tab_content',''),(85898,39452,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(85899,39452,'blocks_4_tabs_0_tab_image','39076'),(85900,39452,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(85901,39452,'blocks_4_tabs_1_tab_label','What do I need ?'),(85902,39452,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(85903,39452,'blocks_4_tabs_1_tab_content_title',''),(85904,39452,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(85905,39452,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(85906,39452,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(85907,39452,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(85908,39452,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(85909,39452,'blocks_4_tabs_1_tab_content_actions',''),(85910,39452,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(85911,39452,'blocks_4_tabs_1_tab_content',''),(85912,39452,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(85913,39452,'blocks_4_tabs_1_tab_image','39223'),(85914,39452,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(85915,39452,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(85916,39452,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(85917,39452,'blocks_4_tabs_2_tab_content_title',''),(85918,39452,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(85919,39452,'blocks_4_tabs_2_tab_content_heading','Locations'),(85920,39452,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(85921,39452,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(85922,39452,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(85923,39452,'blocks_4_tabs_2_tab_content_actions',''),(85924,39452,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(85925,39452,'blocks_4_tabs_2_tab_content',''),(85926,39452,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(85927,39452,'blocks_4_tabs_2_tab_image','39224'),(85928,39452,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(85929,39452,'blocks_4_tabs','3'),(85930,39452,'_blocks_4_tabs','field_6177cff281419'),(85931,39452,'blocks_5_acfe_flexible_toggle',''),(85932,39452,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(85933,39452,'blocks_5_acfe_flexible_layout_title','Text Block'),(85934,39452,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(85935,39452,'blocks_5_options_theme','#b61234'),(85936,39452,'_blocks_5_options_theme','field_6176830e2ad17'),(85937,39452,'blocks_5_options',''),(85938,39452,'_blocks_5_options','field_6176830e2ad16'),(85939,39452,'blocks_5_text_block_heading','Fees & Funding Options'),(85940,39452,'_blocks_5_text_block_heading','field_617669d413097'),(85941,39452,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(85942,39452,'_blocks_5_text_block_content','field_617669ec13098'),(85943,39452,'blocks_6_acfe_flexible_toggle',''),(85944,39452,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(85945,39452,'blocks_6_acfe_flexible_layout_title','Icons'),(85946,39452,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(85947,39452,'blocks_6_options_theme','#b61234'),(85948,39452,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(85949,39452,'blocks_6_options_format','row'),(85950,39452,'_blocks_6_options_format','field_64bfde9a90690'),(85951,39452,'blocks_6_options',''),(85952,39452,'_blocks_6_options','field_64bfdd9b90684'),(85953,39452,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(85954,39452,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(85955,39452,'blocks_6_icon_row_items_0_label','Pay in Full'),(85956,39452,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(85957,39452,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(85958,39452,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(85959,39452,'blocks_6_icon_row_items_1_icon','finance.svg'),(85960,39452,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(85961,39452,'blocks_6_icon_row_items_1_label','0% finance'),(85962,39452,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(85963,39452,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(85964,39452,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(85965,39452,'blocks_6_icon_row_items_2_icon','deposit.svg'),(85966,39452,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(85967,39452,'blocks_6_icon_row_items_2_label','Deposit & balance'),(85968,39452,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(85969,39452,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(85970,39452,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(85971,39452,'blocks_6_icon_row_items','3'),(85972,39452,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(85973,39452,'blocks_7_acfe_flexible_toggle',''),(85974,39452,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(85975,39452,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(85976,39452,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(85977,39452,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(85978,39452,'_blocks_7_content','field_6193c9b5eac84'),(85979,39452,'blocks_8_acfe_flexible_toggle',''),(85980,39452,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(85981,39452,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(85982,39452,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(85983,39452,'blocks_8_testimonial_slider_content_title',''),(85984,39452,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(85985,39452,'blocks_8_testimonial_slider_content_heading','Testimonials'),(85986,39452,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(85987,39452,'blocks_8_testimonial_slider_content_text',''),(85988,39452,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(85989,39452,'blocks_8_testimonial_slider_content_actions',''),(85990,39452,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(85991,39452,'blocks_8_testimonial_slider_content',''),(85992,39452,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(85993,39452,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(85994,39452,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(85995,39452,'blocks_8_testimonial_slider_ambassador_bool','0'),(85996,39452,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(85997,39452,'blocks_9_acfe_flexible_toggle',''),(85998,39452,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(85999,39452,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(86000,39452,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(86001,39452,'blocks_9_options_theme','#ffffff'),(86002,39452,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(86003,39452,'blocks_9_options_state','0'),(86004,39452,'_blocks_9_options_state','field_6239fcb7508c5'),(86005,39452,'blocks_9_options',''),(86006,39452,'_blocks_9_options','field_6177e2991ac44'),(86007,39452,'blocks_9_content_title',''),(86008,39452,'_blocks_9_content_title','field_64d237e8bb1e2'),(86009,39452,'blocks_9_content_heading','Frequently asked questions '),(86010,39452,'_blocks_9_content_heading','field_64d237e8bb1e3'),(86011,39452,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(86012,39452,'_blocks_9_content_text','field_64d237e8bb1e4'),(86013,39452,'blocks_9_content_actions',''),(86014,39452,'_blocks_9_content_actions','field_64d237e8bb1e5'),(86015,39452,'blocks_9_content_align','left'),(86016,39452,'_blocks_9_content_align','field_64d2443e6b6aa'),(86017,39452,'blocks_9_content',''),(86018,39452,'_blocks_9_content','field_64d237e8bb1e1'),(86019,39452,'blocks_9_accordion_content','faqs'),(86020,39452,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(86021,39452,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(86022,39452,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(86023,39452,'blocks_9_actions',''),(86024,39452,'_blocks_9_actions','field_61a746a817f7a'),(86025,39453,'hide_hero','0'),(86026,39453,'_hide_hero','field_66a2380fcda39'),(86027,39453,'hero_title','Biomechanics and Pilates'),(86028,39453,'_hero_title','field_617571fe285e8'),(86029,39453,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(86030,39453,'_hero_text','field_6175723c285e9'),(86031,39453,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(86032,39453,'_hero_actions_0_button','field_61757281285eb'),(86033,39453,'hero_actions','1'),(86034,39453,'_hero_actions','field_61757270285ea'),(86035,39453,'hero_style','default'),(86036,39453,'_hero_style','field_62051d9dc5324'),(86037,39453,'_thumbnail_id','39243'),(86038,39453,'__thumbnail_id','field_617570855ddaf'),(86039,39453,'hero_image_pos_x','right'),(86040,39453,'_hero_image_pos_x','field_62ec3d05390bb'),(86041,39453,'hero_image_pos_y','top'),(86042,39453,'_hero_image_pos_y','field_62ec3d05390bc'),(86043,39453,'hero_image_pos',''),(86044,39453,'_hero_image_pos','field_62ec3d05390ba'),(86045,39453,'fft_hide_from_listings','0'),(86046,39453,'_fft_hide_from_listings','field_61f1320446ab2'),(86047,39453,'fft_page_format','default'),(86048,39453,'_fft_page_format','field_61ae213f1f218'),(86049,39453,'fft_hide_nav','0'),(86050,39453,'_fft_hide_nav','field_635bd5e43527c'),(86051,39453,'fft_hide_header_call_to_action','0'),(86052,39453,'_fft_hide_header_call_to_action','field_635bd6723527d'),(86053,39453,'fft_page_sitemap','0'),(86054,39453,'_fft_page_sitemap','field_61af9b34e8181'),(86055,39453,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(86056,39453,'_blocks','field_6176696113096'),(86057,39453,'blocks_0_acfe_flexible_toggle',''),(86058,39453,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(86059,39453,'blocks_0_acfe_flexible_layout_title','Steps'),(86060,39453,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(86061,39453,'blocks_0_row_content_title',''),(86062,39453,'_blocks_0_row_content_title','field_64888cd1e26e0'),(86063,39453,'blocks_0_row_content_heading','Benefits of training with us'),(86064,39453,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(86065,39453,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(86066,39453,'_blocks_0_row_content_text','field_64888ce2e26e2'),(86067,39453,'blocks_0_row_content_actions',''),(86068,39453,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(86069,39453,'blocks_0_row_content',''),(86070,39453,'_blocks_0_row_content','field_64888cb0e26df'),(86071,39453,'blocks_0_steps_0_icon','progression.svg'),(86072,39453,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(86073,39453,'blocks_0_steps_0_title','Earning potential'),(86074,39453,'_blocks_0_steps_0_title','field_64888d94e26e7'),(86075,39453,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(86076,39453,'_blocks_0_steps_0_text','field_64888d99e26e8'),(86077,39453,'blocks_0_steps_1_icon','support.svg'),(86078,39453,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(86079,39453,'blocks_0_steps_1_title','Lifetime Learning Promise'),(86080,39453,'_blocks_0_steps_1_title','field_64888d94e26e7'),(86081,39453,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(86082,39453,'_blocks_0_steps_1_text','field_64888d99e26e8'),(86083,39453,'blocks_0_steps_2_icon','qualification.svg'),(86084,39453,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(86085,39453,'blocks_0_steps_2_title','Evidence based hands on learning'),(86086,39453,'_blocks_0_steps_2_title','field_64888d94e26e7'),(86087,39453,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(86088,39453,'_blocks_0_steps_2_text','field_64888d99e26e8'),(86089,39453,'blocks_0_steps_3_icon','leaders.svg'),(86090,39453,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(86091,39453,'blocks_0_steps_3_title','Stand out from the crowd'),(86092,39453,'_blocks_0_steps_3_title','field_64888d94e26e7'),(86093,39453,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(86094,39453,'_blocks_0_steps_3_text','field_64888d99e26e8'),(86095,39453,'blocks_0_steps','4'),(86096,39453,'_blocks_0_steps','field_64888d44e26e5'),(86097,39453,'blocks_1_acfe_flexible_toggle',''),(86098,39453,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(86099,39453,'blocks_1_acfe_flexible_layout_title','Video'),(86100,39453,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(86101,39453,'blocks_1_size','large'),(86102,39453,'_blocks_1_size','field_6487038f297c1'),(86103,39453,'blocks_1_row_content_title',''),(86104,39453,'_blocks_1_row_content_title','field_64870132a865d'),(86105,39453,'blocks_1_row_content_heading',''),(86106,39453,'_blocks_1_row_content_heading','field_64870142a865e'),(86107,39453,'blocks_1_row_content_text',''),(86108,39453,'_blocks_1_row_content_text','field_64870148a865f'),(86109,39453,'blocks_1_row_content',''),(86110,39453,'_blocks_1_row_content','field_6487008ba865c'),(86111,39453,'blocks_1_video_src',''),(86112,39453,'_blocks_1_video_src','field_6193c4a98ec07'),(86113,39453,'blocks_1_video_thumbnail',''),(86114,39453,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(86115,39453,'blocks_2_acfe_flexible_toggle',''),(86116,39453,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(86117,39453,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(86118,39453,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(86119,39453,'blocks_2_options_theme','#ffffff'),(86120,39453,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(86121,39453,'blocks_2_options_reverse','0'),(86122,39453,'_blocks_2_options_reverse','field_61768049bb8ac'),(86123,39453,'blocks_2_options',''),(86124,39453,'_blocks_2_options','field_617682517c334'),(86125,39453,'blocks_2_split_5050_image','38037'),(86126,39453,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(86127,39453,'blocks_2_split_5050_video',''),(86128,39453,'_blocks_2_split_5050_video','field_6239f3160848a'),(86129,39453,'blocks_2_split_5050_content_title',''),(86130,39453,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(86131,39453,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(86132,39453,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(86133,39453,'blocks_2_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(86134,39453,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(86135,39453,'blocks_2_split_5050_content_actions',''),(86136,39453,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(86137,39453,'blocks_2_split_5050_content',''),(86138,39453,'_blocks_2_split_5050_content','field_61767afceb8ba'),(86139,39453,'blocks_3_acfe_flexible_toggle',''),(86140,39453,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(86141,39453,'blocks_3_acfe_flexible_layout_title','Form'),(86142,39453,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(86143,39453,'blocks_3_row_content_format','standard'),(86144,39453,'_blocks_3_row_content_format','field_6481ead962881'),(86145,39453,'blocks_3_row_content_title',''),(86146,39453,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(86147,39453,'blocks_3_row_content_heading','Enquire Today'),(86148,39453,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(86149,39453,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(86150,39453,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(86151,39453,'blocks_3_row_content_actions',''),(86152,39453,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(86153,39453,'blocks_3_row_content',''),(86154,39453,'_blocks_3_row_content','field_61a0f5f5b3db0'),(86155,39453,'blocks_3_row_form',''),(86156,39453,'_blocks_3_row_form','field_61a4ff2c0b08e'),(86157,39453,'blocks_3_row_form_button_label',''),(86158,39453,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(86159,39453,'blocks_4_acfe_flexible_toggle',''),(86160,39453,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(86161,39453,'blocks_4_acfe_flexible_layout_title','Tabs'),(86162,39453,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(86163,39453,'blocks_4_options_theme','#ffffff'),(86164,39453,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(86165,39453,'blocks_4_options',''),(86166,39453,'_blocks_4_options','field_6177cfcd8140f'),(86167,39453,'blocks_4_tabs_0_tab_label','What will I learn ?'),(86168,39453,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(86169,39453,'blocks_4_tabs_0_tab_content_title',''),(86170,39453,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(86171,39453,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(86172,39453,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(86173,39453,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(86174,39453,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(86175,39453,'blocks_4_tabs_0_tab_content_actions',''),(86176,39453,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(86177,39453,'blocks_4_tabs_0_tab_content',''),(86178,39453,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(86179,39453,'blocks_4_tabs_0_tab_image','39076'),(86180,39453,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(86181,39453,'blocks_4_tabs_1_tab_label','What do I need ?'),(86182,39453,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(86183,39453,'blocks_4_tabs_1_tab_content_title',''),(86184,39453,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(86185,39453,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(86186,39453,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(86187,39453,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(86188,39453,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(86189,39453,'blocks_4_tabs_1_tab_content_actions',''),(86190,39453,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(86191,39453,'blocks_4_tabs_1_tab_content',''),(86192,39453,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(86193,39453,'blocks_4_tabs_1_tab_image','39223'),(86194,39453,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(86195,39453,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(86196,39453,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(86197,39453,'blocks_4_tabs_2_tab_content_title',''),(86198,39453,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(86199,39453,'blocks_4_tabs_2_tab_content_heading','Locations'),(86200,39453,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(86201,39453,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(86202,39453,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(86203,39453,'blocks_4_tabs_2_tab_content_actions',''),(86204,39453,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(86205,39453,'blocks_4_tabs_2_tab_content',''),(86206,39453,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(86207,39453,'blocks_4_tabs_2_tab_image','39224'),(86208,39453,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(86209,39453,'blocks_4_tabs','3'),(86210,39453,'_blocks_4_tabs','field_6177cff281419'),(86211,39453,'blocks_5_acfe_flexible_toggle',''),(86212,39453,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(86213,39453,'blocks_5_acfe_flexible_layout_title','Text Block'),(86214,39453,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(86215,39453,'blocks_5_options_theme','#b61234'),(86216,39453,'_blocks_5_options_theme','field_6176830e2ad17'),(86217,39453,'blocks_5_options',''),(86218,39453,'_blocks_5_options','field_6176830e2ad16'),(86219,39453,'blocks_5_text_block_heading','Fees & Funding Options'),(86220,39453,'_blocks_5_text_block_heading','field_617669d413097'),(86221,39453,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(86222,39453,'_blocks_5_text_block_content','field_617669ec13098'),(86223,39453,'blocks_6_acfe_flexible_toggle',''),(86224,39453,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(86225,39453,'blocks_6_acfe_flexible_layout_title','Icons'),(86226,39453,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(86227,39453,'blocks_6_options_theme','#b61234'),(86228,39453,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(86229,39453,'blocks_6_options_format','row'),(86230,39453,'_blocks_6_options_format','field_64bfde9a90690'),(86231,39453,'blocks_6_options',''),(86232,39453,'_blocks_6_options','field_64bfdd9b90684'),(86233,39453,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(86234,39453,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(86235,39453,'blocks_6_icon_row_items_0_label','Pay in Full'),(86236,39453,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(86237,39453,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(86238,39453,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(86239,39453,'blocks_6_icon_row_items_1_icon','finance.svg'),(86240,39453,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(86241,39453,'blocks_6_icon_row_items_1_label','0% finance'),(86242,39453,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(86243,39453,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(86244,39453,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(86245,39453,'blocks_6_icon_row_items_2_icon','deposit.svg'),(86246,39453,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(86247,39453,'blocks_6_icon_row_items_2_label','Deposit & balance'),(86248,39453,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(86249,39453,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(86250,39453,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(86251,39453,'blocks_6_icon_row_items','3'),(86252,39453,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(86253,39453,'blocks_7_acfe_flexible_toggle',''),(86254,39453,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(86255,39453,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(86256,39453,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(86257,39453,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(86258,39453,'_blocks_7_content','field_6193c9b5eac84'),(86259,39453,'blocks_8_acfe_flexible_toggle',''),(86260,39453,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(86261,39453,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(86262,39453,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(86263,39453,'blocks_8_testimonial_slider_content_title',''),(86264,39453,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(86265,39453,'blocks_8_testimonial_slider_content_heading','Testimonials'),(86266,39453,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(86267,39453,'blocks_8_testimonial_slider_content_text',''),(86268,39453,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(86269,39453,'blocks_8_testimonial_slider_content_actions',''),(86270,39453,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(86271,39453,'blocks_8_testimonial_slider_content',''),(86272,39453,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(86273,39453,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(86274,39453,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(86275,39453,'blocks_8_testimonial_slider_ambassador_bool','0'),(86276,39453,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(86277,39453,'blocks_9_acfe_flexible_toggle',''),(86278,39453,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(86279,39453,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(86280,39453,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(86281,39453,'blocks_9_options_theme','#ffffff'),(86282,39453,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(86283,39453,'blocks_9_options_state','0'),(86284,39453,'_blocks_9_options_state','field_6239fcb7508c5'),(86285,39453,'blocks_9_options',''),(86286,39453,'_blocks_9_options','field_6177e2991ac44'),(86287,39453,'blocks_9_content_title',''),(86288,39453,'_blocks_9_content_title','field_64d237e8bb1e2'),(86289,39453,'blocks_9_content_heading','Frequently asked questions '),(86290,39453,'_blocks_9_content_heading','field_64d237e8bb1e3'),(86291,39453,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(86292,39453,'_blocks_9_content_text','field_64d237e8bb1e4'),(86293,39453,'blocks_9_content_actions',''),(86294,39453,'_blocks_9_content_actions','field_64d237e8bb1e5'),(86295,39453,'blocks_9_content_align','left'),(86296,39453,'_blocks_9_content_align','field_64d2443e6b6aa'),(86297,39453,'blocks_9_content',''),(86298,39453,'_blocks_9_content','field_64d237e8bb1e1'),(86299,39453,'blocks_9_accordion_content','faqs'),(86300,39453,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(86301,39453,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(86302,39453,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(86303,39453,'blocks_9_actions',''),(86304,39453,'_blocks_9_actions','field_61a746a817f7a'),(86305,39454,'_wp_attached_file','2024/08/How-to-become-a-biomechanics-coach-page-hero-iamge-1.jpg'),(86306,39454,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:64:\"2024/08/How-to-become-a-biomechanics-coach-page-hero-iamge-1.jpg\";s:8:\"filesize\";i:639525;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120102;}s:5:\"large\";a:5:{s:4:\"file\";s:65:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197516;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29032;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90567;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:66:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:302259;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:66:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:487859;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37968;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155519;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:66:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249521;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29002;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120037;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:65:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197670;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28571;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114856;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:65:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183483;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31706;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131309;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:65:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214763;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25872;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:64:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105122;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:65:\"How-to-become-a-biomechanics-coach-page-hero-iamge-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172041;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(86307,39455,'hide_hero','0'),(86308,39455,'_hide_hero','field_66a2380fcda39'),(86309,39455,'hero_title','How to Become a Biomechanics Coach'),(86310,39455,'_hero_title','field_617571fe285e8'),(86311,39455,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(86312,39455,'_hero_text','field_6175723c285e9'),(86313,39455,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(86314,39455,'_hero_actions_0_button','field_61757281285eb'),(86315,39455,'hero_actions','1'),(86316,39455,'_hero_actions','field_61757270285ea'),(86317,39455,'hero_style','default'),(86318,39455,'_hero_style','field_62051d9dc5324'),(86319,39455,'_thumbnail_id','39454'),(86320,39455,'__thumbnail_id','field_617570855ddaf'),(86321,39455,'hero_image_pos_x','right'),(86322,39455,'_hero_image_pos_x','field_62ec3d05390bb'),(86323,39455,'hero_image_pos_y','top'),(86324,39455,'_hero_image_pos_y','field_62ec3d05390bc'),(86325,39455,'hero_image_pos',''),(86326,39455,'_hero_image_pos','field_62ec3d05390ba'),(86327,39455,'fft_hide_from_listings','0'),(86328,39455,'_fft_hide_from_listings','field_61f1320446ab2'),(86329,39455,'fft_page_format','default'),(86330,39455,'_fft_page_format','field_61ae213f1f218'),(86331,39455,'fft_hide_nav','0'),(86332,39455,'_fft_hide_nav','field_635bd5e43527c'),(86333,39455,'fft_hide_header_call_to_action','0'),(86334,39455,'_fft_hide_header_call_to_action','field_635bd6723527d'),(86335,39455,'fft_page_sitemap','0'),(86336,39455,'_fft_page_sitemap','field_61af9b34e8181'),(86337,39455,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(86338,39455,'_blocks','field_6176696113096'),(86339,39455,'blocks_0_acfe_flexible_toggle',''),(86340,39455,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(86341,39455,'blocks_0_acfe_flexible_layout_title','Steps'),(86342,39455,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(86343,39455,'blocks_0_row_content_title',''),(86344,39455,'_blocks_0_row_content_title','field_64888cd1e26e0'),(86345,39455,'blocks_0_row_content_heading','Benefits of training with us'),(86346,39455,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(86347,39455,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(86348,39455,'_blocks_0_row_content_text','field_64888ce2e26e2'),(86349,39455,'blocks_0_row_content_actions',''),(86350,39455,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(86351,39455,'blocks_0_row_content',''),(86352,39455,'_blocks_0_row_content','field_64888cb0e26df'),(86353,39455,'blocks_0_steps_0_icon','progression.svg'),(86354,39455,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(86355,39455,'blocks_0_steps_0_title','Earning potential'),(86356,39455,'_blocks_0_steps_0_title','field_64888d94e26e7'),(86357,39455,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(86358,39455,'_blocks_0_steps_0_text','field_64888d99e26e8'),(86359,39455,'blocks_0_steps_1_icon','support.svg'),(86360,39455,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(86361,39455,'blocks_0_steps_1_title','Lifetime Learning Promise'),(86362,39455,'_blocks_0_steps_1_title','field_64888d94e26e7'),(86363,39455,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(86364,39455,'_blocks_0_steps_1_text','field_64888d99e26e8'),(86365,39455,'blocks_0_steps_2_icon','qualification.svg'),(86366,39455,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(86367,39455,'blocks_0_steps_2_title','Evidence based hands on learning'),(86368,39455,'_blocks_0_steps_2_title','field_64888d94e26e7'),(86369,39455,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(86370,39455,'_blocks_0_steps_2_text','field_64888d99e26e8'),(86371,39455,'blocks_0_steps_3_icon','leaders.svg'),(86372,39455,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(86373,39455,'blocks_0_steps_3_title','Stand out from the crowd'),(86374,39455,'_blocks_0_steps_3_title','field_64888d94e26e7'),(86375,39455,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(86376,39455,'_blocks_0_steps_3_text','field_64888d99e26e8'),(86377,39455,'blocks_0_steps','4'),(86378,39455,'_blocks_0_steps','field_64888d44e26e5'),(86379,39455,'blocks_1_acfe_flexible_toggle',''),(86380,39455,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(86381,39455,'blocks_1_acfe_flexible_layout_title','Video'),(86382,39455,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(86383,39455,'blocks_1_size','large'),(86384,39455,'_blocks_1_size','field_6487038f297c1'),(86385,39455,'blocks_1_row_content_title',''),(86386,39455,'_blocks_1_row_content_title','field_64870132a865d'),(86387,39455,'blocks_1_row_content_heading',''),(86388,39455,'_blocks_1_row_content_heading','field_64870142a865e'),(86389,39455,'blocks_1_row_content_text',''),(86390,39455,'_blocks_1_row_content_text','field_64870148a865f'),(86391,39455,'blocks_1_row_content',''),(86392,39455,'_blocks_1_row_content','field_6487008ba865c'),(86393,39455,'blocks_1_video_src',''),(86394,39455,'_blocks_1_video_src','field_6193c4a98ec07'),(86395,39455,'blocks_1_video_thumbnail',''),(86396,39455,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(86397,39455,'blocks_2_acfe_flexible_toggle',''),(86398,39455,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(86399,39455,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(86400,39455,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(86401,39455,'blocks_2_options_theme','#ffffff'),(86402,39455,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(86403,39455,'blocks_2_options_reverse','0'),(86404,39455,'_blocks_2_options_reverse','field_61768049bb8ac'),(86405,39455,'blocks_2_options',''),(86406,39455,'_blocks_2_options','field_617682517c334'),(86407,39455,'blocks_2_split_5050_image','39241'),(86408,39455,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(86409,39455,'blocks_2_split_5050_video',''),(86410,39455,'_blocks_2_split_5050_video','field_6239f3160848a'),(86411,39455,'blocks_2_split_5050_content_title',''),(86412,39455,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(86413,39455,'blocks_2_split_5050_content_heading','Why it’s Relevant to You !'),(86414,39455,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(86415,39455,'blocks_2_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of numerous injuries within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(86416,39455,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(86417,39455,'blocks_2_split_5050_content_actions',''),(86418,39455,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(86419,39455,'blocks_2_split_5050_content',''),(86420,39455,'_blocks_2_split_5050_content','field_61767afceb8ba'),(86421,39455,'blocks_3_acfe_flexible_toggle',''),(86422,39455,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(86423,39455,'blocks_3_acfe_flexible_layout_title','Form'),(86424,39455,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(86425,39455,'blocks_3_row_content_format','standard'),(86426,39455,'_blocks_3_row_content_format','field_6481ead962881'),(86427,39455,'blocks_3_row_content_title',''),(86428,39455,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(86429,39455,'blocks_3_row_content_heading','Enquire Today'),(86430,39455,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(86431,39455,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(86432,39455,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(86433,39455,'blocks_3_row_content_actions',''),(86434,39455,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(86435,39455,'blocks_3_row_content',''),(86436,39455,'_blocks_3_row_content','field_61a0f5f5b3db0'),(86437,39455,'blocks_3_row_form',''),(86438,39455,'_blocks_3_row_form','field_61a4ff2c0b08e'),(86439,39455,'blocks_3_row_form_button_label',''),(86440,39455,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(86441,39455,'blocks_4_acfe_flexible_toggle',''),(86442,39455,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(86443,39455,'blocks_4_acfe_flexible_layout_title','Tabs'),(86444,39455,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(86445,39455,'blocks_4_options_theme','#ffffff'),(86446,39455,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(86447,39455,'blocks_4_options',''),(86448,39455,'_blocks_4_options','field_6177cfcd8140f'),(86449,39455,'blocks_4_tabs_0_tab_label','What will I learn ?'),(86450,39455,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(86451,39455,'blocks_4_tabs_0_tab_content_title',''),(86452,39455,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(86453,39455,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(86454,39455,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(86455,39455,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(86456,39455,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(86457,39455,'blocks_4_tabs_0_tab_content_actions',''),(86458,39455,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(86459,39455,'blocks_4_tabs_0_tab_content',''),(86460,39455,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(86461,39455,'blocks_4_tabs_0_tab_image','39076'),(86462,39455,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(86463,39455,'blocks_4_tabs_1_tab_label','What do I need ?'),(86464,39455,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(86465,39455,'blocks_4_tabs_1_tab_content_title',''),(86466,39455,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(86467,39455,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(86468,39455,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(86469,39455,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(86470,39455,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(86471,39455,'blocks_4_tabs_1_tab_content_actions',''),(86472,39455,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(86473,39455,'blocks_4_tabs_1_tab_content',''),(86474,39455,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(86475,39455,'blocks_4_tabs_1_tab_image','39223'),(86476,39455,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(86477,39455,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(86478,39455,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(86479,39455,'blocks_4_tabs_2_tab_content_title',''),(86480,39455,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(86481,39455,'blocks_4_tabs_2_tab_content_heading','Locations'),(86482,39455,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(86483,39455,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(86484,39455,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(86485,39455,'blocks_4_tabs_2_tab_content_actions',''),(86486,39455,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(86487,39455,'blocks_4_tabs_2_tab_content',''),(86488,39455,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(86489,39455,'blocks_4_tabs_2_tab_image','39224'),(86490,39455,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(86491,39455,'blocks_4_tabs','3'),(86492,39455,'_blocks_4_tabs','field_6177cff281419'),(86493,39455,'blocks_5_acfe_flexible_toggle',''),(86494,39455,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(86495,39455,'blocks_5_acfe_flexible_layout_title','Text Block'),(86496,39455,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(86497,39455,'blocks_5_options_theme','#b61234'),(86498,39455,'_blocks_5_options_theme','field_6176830e2ad17'),(86499,39455,'blocks_5_options',''),(86500,39455,'_blocks_5_options','field_6176830e2ad16'),(86501,39455,'blocks_5_text_block_heading','Fees & Funding Options'),(86502,39455,'_blocks_5_text_block_heading','field_617669d413097'),(86503,39455,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(86504,39455,'_blocks_5_text_block_content','field_617669ec13098'),(86505,39455,'blocks_6_acfe_flexible_toggle',''),(86506,39455,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(86507,39455,'blocks_6_acfe_flexible_layout_title','Icons'),(86508,39455,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(86509,39455,'blocks_6_options_theme','#b61234'),(86510,39455,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(86511,39455,'blocks_6_options_format','row'),(86512,39455,'_blocks_6_options_format','field_64bfde9a90690'),(86513,39455,'blocks_6_options',''),(86514,39455,'_blocks_6_options','field_64bfdd9b90684'),(86515,39455,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(86516,39455,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(86517,39455,'blocks_6_icon_row_items_0_label','Pay in Full'),(86518,39455,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(86519,39455,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(86520,39455,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(86521,39455,'blocks_6_icon_row_items_1_icon','finance.svg'),(86522,39455,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(86523,39455,'blocks_6_icon_row_items_1_label','0% finance'),(86524,39455,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(86525,39455,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(86526,39455,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(86527,39455,'blocks_6_icon_row_items_2_icon','deposit.svg'),(86528,39455,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(86529,39455,'blocks_6_icon_row_items_2_label','Deposit & balance'),(86530,39455,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(86531,39455,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(86532,39455,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(86533,39455,'blocks_6_icon_row_items','3'),(86534,39455,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(86535,39455,'blocks_7_acfe_flexible_toggle',''),(86536,39455,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(86537,39455,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(86538,39455,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(86539,39455,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(86540,39455,'_blocks_7_content','field_6193c9b5eac84'),(86541,39455,'blocks_8_acfe_flexible_toggle',''),(86542,39455,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(86543,39455,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(86544,39455,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(86545,39455,'blocks_8_testimonial_slider_content_title',''),(86546,39455,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(86547,39455,'blocks_8_testimonial_slider_content_heading','Testimonials'),(86548,39455,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(86549,39455,'blocks_8_testimonial_slider_content_text',''),(86550,39455,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(86551,39455,'blocks_8_testimonial_slider_content_actions',''),(86552,39455,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(86553,39455,'blocks_8_testimonial_slider_content',''),(86554,39455,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(86555,39455,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(86556,39455,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(86557,39455,'blocks_8_testimonial_slider_ambassador_bool','0'),(86558,39455,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(86559,39455,'blocks_9_acfe_flexible_toggle',''),(86560,39455,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(86561,39455,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(86562,39455,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(86563,39455,'blocks_9_options_theme','#ffffff'),(86564,39455,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(86565,39455,'blocks_9_options_state','0'),(86566,39455,'_blocks_9_options_state','field_6239fcb7508c5'),(86567,39455,'blocks_9_options',''),(86568,39455,'_blocks_9_options','field_6177e2991ac44'),(86569,39455,'blocks_9_content_title',''),(86570,39455,'_blocks_9_content_title','field_64d237e8bb1e2'),(86571,39455,'blocks_9_content_heading','Frequently asked questions '),(86572,39455,'_blocks_9_content_heading','field_64d237e8bb1e3'),(86573,39455,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(86574,39455,'_blocks_9_content_text','field_64d237e8bb1e4'),(86575,39455,'blocks_9_content_actions',''),(86576,39455,'_blocks_9_content_actions','field_64d237e8bb1e5'),(86577,39455,'blocks_9_content_align','left'),(86578,39455,'_blocks_9_content_align','field_64d2443e6b6aa'),(86579,39455,'blocks_9_content',''),(86580,39455,'_blocks_9_content','field_64d237e8bb1e1'),(86581,39455,'blocks_9_accordion_content','faqs'),(86582,39455,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(86583,39455,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(86584,39455,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(86585,39455,'blocks_9_actions',''),(86586,39455,'_blocks_9_actions','field_61a746a817f7a'),(86661,39456,'hero_style','default'),(86662,39456,'_hero_style','field_62051d9dc5324'),(86663,39456,'hero_image_pos_x','right'),(86664,39456,'_hero_image_pos_x','field_62ec3d05390bb'),(86665,39456,'hero_image_pos_y','top'),(86666,39456,'_hero_image_pos_y','field_62ec3d05390bc'),(86667,39456,'hero_image_pos',''),(86668,39456,'_hero_image_pos','field_62ec3d05390ba'),(86669,39456,'hero_title','Biomechanics Education'),(86670,39456,'_hero_title','field_617571fe285e8'),(86671,39456,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(86672,39456,'_hero_text','field_6175723c285e9'),(86673,39456,'hero_actions','1'),(86674,39456,'_hero_actions','field_61757270285ea'),(86675,39456,'hero_icon',''),(86676,39456,'_hero_icon','field_61a6182199d03'),(86677,39456,'fft_hide_from_listings','0'),(86678,39456,'_fft_hide_from_listings','field_61f1320446ab2'),(86679,39456,'fft_page_format','default'),(86680,39456,'_fft_page_format','field_61ae213f1f218'),(86681,39456,'fft_hide_nav','0'),(86682,39456,'_fft_hide_nav','field_635bd5e43527c'),(86683,39456,'fft_hide_header_call_to_action','0'),(86684,39456,'_fft_hide_header_call_to_action','field_635bd6723527d'),(86685,39456,'fft_page_sitemap','0'),(86686,39456,'_fft_page_sitemap','field_61af9b34e8181'),(86687,39456,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:18:\"testimonial_slider\";i:4;s:5:\"cards\";}'),(86688,39456,'_blocks','field_6176696113096'),(86689,39456,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(86690,39456,'_hero_actions_0_button','field_61757281285eb'),(86691,39456,'_thumbnail_id','38951'),(86692,39456,'__thumbnail_id','field_617570855ddaf'),(86693,39456,'blocks_1_acfe_flexible_toggle','1'),(86694,39456,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(86695,39456,'blocks_1_acfe_flexible_layout_title','Video'),(86696,39456,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(86697,39456,'blocks_1_size','large'),(86698,39456,'_blocks_1_size','field_6487038f297c1'),(86699,39456,'blocks_1_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(86700,39456,'_blocks_1_video_src','field_6193c4a98ec07'),(86701,39456,'blocks_1_video_thumbnail',''),(86702,39456,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(86703,39456,'blocks_1_row_content_title',''),(86704,39456,'_blocks_1_row_content_title','field_64870132a865d'),(86705,39456,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(86706,39456,'_blocks_1_row_content_heading','field_64870142a865e'),(86707,39456,'blocks_1_row_content_text',''),(86708,39456,'_blocks_1_row_content_text','field_64870148a865f'),(86709,39456,'blocks_1_row_content',''),(86710,39456,'_blocks_1_row_content','field_6487008ba865c'),(86711,39456,'blocks_0_acfe_flexible_toggle',''),(86712,39456,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(86713,39456,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(86714,39456,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(86715,39456,'blocks_0_options_theme','#ffffff'),(86716,39456,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(86717,39456,'blocks_0_options_reverse','0'),(86718,39456,'_blocks_0_options_reverse','field_61768049bb8ac'),(86719,39456,'blocks_0_options',''),(86720,39456,'_blocks_0_options','field_617682517c334'),(86721,39456,'blocks_0_split_5050_image','38950'),(86722,39456,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(86723,39456,'blocks_0_split_5050_video',''),(86724,39456,'_blocks_0_split_5050_video','field_6239f3160848a'),(86725,39456,'blocks_0_split_5050_content_title',''),(86726,39456,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(86727,39456,'blocks_0_split_5050_content_heading','What is Biomechanics Education ?'),(86728,39456,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(86729,39456,'blocks_0_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(86730,39456,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(86731,39456,'blocks_0_split_5050_content_actions',''),(86732,39456,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(86733,39456,'blocks_0_split_5050_content',''),(86734,39456,'_blocks_0_split_5050_content','field_61767afceb8ba'),(86735,39456,'blocks_2_acfe_flexible_toggle',''),(86736,39456,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(86737,39456,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(86738,39456,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(86739,39456,'blocks_2_options_theme','#ffffff'),(86740,39456,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(86741,39456,'blocks_2_options_reverse','0'),(86742,39456,'_blocks_2_options_reverse','field_61768049bb8ac'),(86743,39456,'blocks_2_options',''),(86744,39456,'_blocks_2_options','field_617682517c334'),(86745,39456,'blocks_2_split_5050_image','38960'),(86746,39456,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(86747,39456,'blocks_2_split_5050_video',''),(86748,39456,'_blocks_2_split_5050_video','field_6239f3160848a'),(86749,39456,'blocks_2_split_5050_content_title','Working In Partnership'),(86750,39456,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(86751,39456,'blocks_2_split_5050_content_heading','Biomechanics Education and Future Fit'),(86752,39456,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(86753,39456,'blocks_2_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(86754,39456,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(86755,39456,'blocks_2_split_5050_content_actions',''),(86756,39456,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(86757,39456,'blocks_2_split_5050_content',''),(86758,39456,'_blocks_2_split_5050_content','field_61767afceb8ba'),(86759,39456,'blocks_3_acfe_flexible_toggle',''),(86760,39456,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(86761,39456,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(86762,39456,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(86763,39456,'blocks_3_testimonial_slider_content_title',''),(86764,39456,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(86765,39456,'blocks_3_testimonial_slider_content_heading','Testimonials'),(86766,39456,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(86767,39456,'blocks_3_testimonial_slider_content_text',''),(86768,39456,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(86769,39456,'blocks_3_testimonial_slider_content_actions',''),(86770,39456,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(86771,39456,'blocks_3_testimonial_slider_content',''),(86772,39456,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(86773,39456,'blocks_3_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(86774,39456,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(86775,39456,'blocks_3_testimonial_slider_ambassador_bool','0'),(86776,39456,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(86777,39456,'hide_hero','0'),(86778,39456,'_hide_hero','field_66a2380fcda39'),(86779,39456,'blocks_4_acfe_flexible_toggle',''),(86780,39456,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(86781,39456,'blocks_4_acfe_flexible_layout_title','Cards'),(86782,39456,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(86783,39456,'blocks_4_options_theme','#ffffff'),(86784,39456,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(86785,39456,'blocks_4_options_format','carousel'),(86786,39456,'_blocks_4_options_format','field_617a7b15245b5'),(86787,39456,'blocks_4_options_style','default'),(86788,39456,'_blocks_4_options_style','field_6278ffb63484a'),(86789,39456,'blocks_4_options_cards_current_listing','0'),(86790,39456,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(86791,39456,'blocks_4_options_cards_content','custom'),(86792,39456,'_blocks_4_options_cards_content','field_617aba6122688'),(86793,39456,'blocks_4_options',''),(86794,39456,'_blocks_4_options','field_617a7b15245b3'),(86795,39456,'blocks_4_cards_custom_0_image','39215'),(86796,39456,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(86797,39456,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(86798,39456,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(86799,39456,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(86800,39456,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(86801,39456,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(86802,39456,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(86803,39456,'blocks_4_cards_custom_1_image','39243'),(86804,39456,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(86805,39456,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(86806,39456,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(86807,39456,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(86808,39456,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(86809,39456,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(86810,39456,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(86811,39456,'blocks_4_cards_custom_2_image','39247'),(86812,39456,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(86813,39456,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(86814,39456,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(86815,39456,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(86816,39456,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(86817,39456,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(86818,39456,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(86819,39456,'blocks_4_cards_custom_3_image','39256'),(86820,39456,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(86821,39456,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(86822,39456,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(86823,39456,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(86824,39456,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(86825,39456,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(86826,39456,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(86827,39456,'blocks_4_cards_custom_4_image','39251'),(86828,39456,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(86829,39456,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(86830,39456,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(86831,39456,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(86832,39456,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(86833,39456,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(86834,39456,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(86835,39456,'blocks_4_cards_custom_5_image','39240'),(86836,39456,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(86837,39456,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(86838,39456,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(86839,39456,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(86840,39456,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(86841,39456,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(86842,39456,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(86843,39456,'blocks_4_cards_custom_6_image','39454'),(86844,39456,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(86845,39456,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(86846,39456,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(86847,39456,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(86848,39456,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(86849,39456,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(86850,39456,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(86851,39456,'blocks_4_cards_custom','7'),(86852,39456,'_blocks_4_cards_custom','field_6194cbf84d386'),(87161,39458,'hero_style','default'),(87162,39458,'_hero_style','field_62051d9dc5324'),(87163,39458,'hero_image_pos_x','right'),(87164,39458,'_hero_image_pos_x','field_62ec3d05390bb'),(87165,39458,'hero_image_pos_y','top'),(87166,39458,'_hero_image_pos_y','field_62ec3d05390bc'),(87167,39458,'hero_image_pos',''),(87168,39458,'_hero_image_pos','field_62ec3d05390ba'),(87169,39458,'hero_title','Biomechanics Education'),(87170,39458,'_hero_title','field_617571fe285e8'),(87171,39458,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(87172,39458,'_hero_text','field_6175723c285e9'),(87173,39458,'hero_actions','1'),(87174,39458,'_hero_actions','field_61757270285ea'),(87175,39458,'hero_icon',''),(87176,39458,'_hero_icon','field_61a6182199d03'),(87177,39458,'fft_hide_from_listings','0'),(87178,39458,'_fft_hide_from_listings','field_61f1320446ab2'),(87179,39458,'fft_page_format','default'),(87180,39458,'_fft_page_format','field_61ae213f1f218'),(87181,39458,'fft_hide_nav','0'),(87182,39458,'_fft_hide_nav','field_635bd5e43527c'),(87183,39458,'fft_hide_header_call_to_action','0'),(87184,39458,'_fft_hide_header_call_to_action','field_635bd6723527d'),(87185,39458,'fft_page_sitemap','0'),(87186,39458,'_fft_page_sitemap','field_61af9b34e8181'),(87187,39458,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:5:\"cards\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(87188,39458,'_blocks','field_6176696113096'),(87189,39458,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(87190,39458,'_hero_actions_0_button','field_61757281285eb'),(87191,39458,'_thumbnail_id','38951'),(87192,39458,'__thumbnail_id','field_617570855ddaf'),(87193,39458,'blocks_1_acfe_flexible_toggle',''),(87194,39458,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(87195,39458,'blocks_1_acfe_flexible_layout_title','Video'),(87196,39458,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(87197,39458,'blocks_1_size','large'),(87198,39458,'_blocks_1_size','field_6487038f297c1'),(87199,39458,'blocks_1_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(87200,39458,'_blocks_1_video_src','field_6193c4a98ec07'),(87201,39458,'blocks_1_video_thumbnail',''),(87202,39458,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(87203,39458,'blocks_1_row_content_title',''),(87204,39458,'_blocks_1_row_content_title','field_64870132a865d'),(87205,39458,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(87206,39458,'_blocks_1_row_content_heading','field_64870142a865e'),(87207,39458,'blocks_1_row_content_text',''),(87208,39458,'_blocks_1_row_content_text','field_64870148a865f'),(87209,39458,'blocks_1_row_content',''),(87210,39458,'_blocks_1_row_content','field_6487008ba865c'),(87211,39458,'blocks_0_acfe_flexible_toggle',''),(87212,39458,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(87213,39458,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(87214,39458,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(87215,39458,'blocks_0_options_theme','#ffffff'),(87216,39458,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(87217,39458,'blocks_0_options_reverse','0'),(87218,39458,'_blocks_0_options_reverse','field_61768049bb8ac'),(87219,39458,'blocks_0_options',''),(87220,39458,'_blocks_0_options','field_617682517c334'),(87221,39458,'blocks_0_split_5050_image','38950'),(87222,39458,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(87223,39458,'blocks_0_split_5050_video',''),(87224,39458,'_blocks_0_split_5050_video','field_6239f3160848a'),(87225,39458,'blocks_0_split_5050_content_title',''),(87226,39458,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(87227,39458,'blocks_0_split_5050_content_heading','What is Biomechanics Education ?'),(87228,39458,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(87229,39458,'blocks_0_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(87230,39458,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(87231,39458,'blocks_0_split_5050_content_actions',''),(87232,39458,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(87233,39458,'blocks_0_split_5050_content',''),(87234,39458,'_blocks_0_split_5050_content','field_61767afceb8ba'),(87235,39458,'hide_hero','0'),(87236,39458,'_hide_hero','field_66a2380fcda39'),(87237,39458,'blocks_2_acfe_flexible_toggle',''),(87238,39458,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(87239,39458,'blocks_2_acfe_flexible_layout_title','Cards'),(87240,39458,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(87241,39458,'blocks_2_options_theme','#ffffff'),(87242,39458,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(87243,39458,'blocks_2_options_format','carousel'),(87244,39458,'_blocks_2_options_format','field_617a7b15245b5'),(87245,39458,'blocks_2_options_style','default'),(87246,39458,'_blocks_2_options_style','field_6278ffb63484a'),(87247,39458,'blocks_2_options_cards_current_listing','0'),(87248,39458,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(87249,39458,'blocks_2_options_cards_content','custom'),(87250,39458,'_blocks_2_options_cards_content','field_617aba6122688'),(87251,39458,'blocks_2_options',''),(87252,39458,'_blocks_2_options','field_617a7b15245b3'),(87253,39458,'blocks_2_cards_custom_0_image','39215'),(87254,39458,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(87255,39458,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(87256,39458,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(87257,39458,'blocks_2_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(87258,39458,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(87259,39458,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(87260,39458,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(87261,39458,'blocks_2_cards_custom_1_image','39243'),(87262,39458,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(87263,39458,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(87264,39458,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(87265,39458,'blocks_2_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(87266,39458,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(87267,39458,'blocks_2_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(87268,39458,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(87269,39458,'blocks_2_cards_custom_2_image','39247'),(87270,39458,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(87271,39458,'blocks_2_cards_custom_2_title','Biomechanics and Podiatrists'),(87272,39458,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(87273,39458,'blocks_2_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(87274,39458,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(87275,39458,'blocks_2_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(87276,39458,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(87277,39458,'blocks_2_cards_custom_3_image','39256'),(87278,39458,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(87279,39458,'blocks_2_cards_custom_3_title','Biomechanics and S&C coaches'),(87280,39458,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(87281,39458,'blocks_2_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(87282,39458,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(87283,39458,'blocks_2_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(87284,39458,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(87285,39458,'blocks_2_cards_custom_4_image','39251'),(87286,39458,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(87287,39458,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches '),(87288,39458,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(87289,39458,'blocks_2_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(87290,39458,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(87291,39458,'blocks_2_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(87292,39458,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(87293,39458,'blocks_2_cards_custom_5_image','39240'),(87294,39458,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(87295,39458,'blocks_2_cards_custom_5_title','Biomechanics and Sports Massage'),(87296,39458,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(87297,39458,'blocks_2_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(87298,39458,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(87299,39458,'blocks_2_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(87300,39458,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(87301,39458,'blocks_2_cards_custom_6_image','39454'),(87302,39458,'_blocks_2_cards_custom_6_image','field_6194cc284d387'),(87303,39458,'blocks_2_cards_custom_6_title','How to Become a Biomechanics Coach'),(87304,39458,'_blocks_2_cards_custom_6_title','field_6194cc454d388'),(87305,39458,'blocks_2_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(87306,39458,'_blocks_2_cards_custom_6_text','field_6194cc4a4d389'),(87307,39458,'blocks_2_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(87308,39458,'_blocks_2_cards_custom_6_link','field_6194cc534d38a'),(87309,39458,'blocks_2_cards_custom','7'),(87310,39458,'_blocks_2_cards_custom','field_6194cbf84d386'),(87311,39458,'blocks_3_acfe_flexible_toggle',''),(87312,39458,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(87313,39458,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(87314,39458,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(87315,39458,'blocks_3_options_theme','#ffffff'),(87316,39458,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(87317,39458,'blocks_3_options_reverse','0'),(87318,39458,'_blocks_3_options_reverse','field_61768049bb8ac'),(87319,39458,'blocks_3_options',''),(87320,39458,'_blocks_3_options','field_617682517c334'),(87321,39458,'blocks_3_split_5050_image','38960'),(87322,39458,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(87323,39458,'blocks_3_split_5050_video',''),(87324,39458,'_blocks_3_split_5050_video','field_6239f3160848a'),(87325,39458,'blocks_3_split_5050_content_title','Working In Partnership'),(87326,39458,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(87327,39458,'blocks_3_split_5050_content_heading','Biomechanics Education and Future Fit'),(87328,39458,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(87329,39458,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(87330,39458,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(87331,39458,'blocks_3_split_5050_content_actions',''),(87332,39458,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(87333,39458,'blocks_3_split_5050_content',''),(87334,39458,'_blocks_3_split_5050_content','field_61767afceb8ba'),(87335,39458,'blocks_4_acfe_flexible_toggle',''),(87336,39458,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(87337,39458,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(87338,39458,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(87339,39458,'blocks_4_testimonial_slider_content_title',''),(87340,39458,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(87341,39458,'blocks_4_testimonial_slider_content_heading','Testimonials'),(87342,39458,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(87343,39458,'blocks_4_testimonial_slider_content_text',''),(87344,39458,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(87345,39458,'blocks_4_testimonial_slider_content_actions',''),(87346,39458,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(87347,39458,'blocks_4_testimonial_slider_content',''),(87348,39458,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(87349,39458,'blocks_4_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(87350,39458,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(87351,39458,'blocks_4_testimonial_slider_ambassador_bool','0'),(87352,39458,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(87395,39459,'hero_style','default'),(87396,39459,'_hero_style','field_62051d9dc5324'),(87397,39459,'hero_image_pos_x','right'),(87398,39459,'_hero_image_pos_x','field_62ec3d05390bb'),(87399,39459,'hero_image_pos_y','top'),(87400,39459,'_hero_image_pos_y','field_62ec3d05390bc'),(87401,39459,'hero_image_pos',''),(87402,39459,'_hero_image_pos','field_62ec3d05390ba'),(87403,39459,'hero_title','Biomechanics Education'),(87404,39459,'_hero_title','field_617571fe285e8'),(87405,39459,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(87406,39459,'_hero_text','field_6175723c285e9'),(87407,39459,'hero_actions','1'),(87408,39459,'_hero_actions','field_61757270285ea'),(87409,39459,'hero_icon',''),(87410,39459,'_hero_icon','field_61a6182199d03'),(87411,39459,'fft_hide_from_listings','0'),(87412,39459,'_fft_hide_from_listings','field_61f1320446ab2'),(87413,39459,'fft_page_format','default'),(87414,39459,'_fft_page_format','field_61ae213f1f218'),(87415,39459,'fft_hide_nav','0'),(87416,39459,'_fft_hide_nav','field_635bd5e43527c'),(87417,39459,'fft_hide_header_call_to_action','0'),(87418,39459,'_fft_hide_header_call_to_action','field_635bd6723527d'),(87419,39459,'fft_page_sitemap','0'),(87420,39459,'_fft_page_sitemap','field_61af9b34e8181'),(87421,39459,'blocks','a:5:{i:0;s:5:\"video\";i:1;s:10:\"split_5050\";i:2;s:5:\"cards\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(87422,39459,'_blocks','field_6176696113096'),(87423,39459,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(87424,39459,'_hero_actions_0_button','field_61757281285eb'),(87425,39459,'_thumbnail_id','38951'),(87426,39459,'__thumbnail_id','field_617570855ddaf'),(87427,39459,'hide_hero','0'),(87428,39459,'_hide_hero','field_66a2380fcda39'),(87429,39459,'blocks_2_acfe_flexible_toggle',''),(87430,39459,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(87431,39459,'blocks_2_acfe_flexible_layout_title','Cards'),(87432,39459,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(87433,39459,'blocks_2_options_theme','#ffffff'),(87434,39459,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(87435,39459,'blocks_2_options_format','carousel'),(87436,39459,'_blocks_2_options_format','field_617a7b15245b5'),(87437,39459,'blocks_2_options_style','default'),(87438,39459,'_blocks_2_options_style','field_6278ffb63484a'),(87439,39459,'blocks_2_options_cards_current_listing','0'),(87440,39459,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(87441,39459,'blocks_2_options_cards_content','custom'),(87442,39459,'_blocks_2_options_cards_content','field_617aba6122688'),(87443,39459,'blocks_2_options',''),(87444,39459,'_blocks_2_options','field_617a7b15245b3'),(87445,39459,'blocks_2_cards_custom_0_image','39215'),(87446,39459,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(87447,39459,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(87448,39459,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(87449,39459,'blocks_2_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(87450,39459,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(87451,39459,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(87452,39459,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(87453,39459,'blocks_2_cards_custom_1_image','39243'),(87454,39459,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(87455,39459,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(87456,39459,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(87457,39459,'blocks_2_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(87458,39459,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(87459,39459,'blocks_2_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(87460,39459,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(87461,39459,'blocks_2_cards_custom_2_image','39247'),(87462,39459,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(87463,39459,'blocks_2_cards_custom_2_title','Biomechanics and Podiatrists'),(87464,39459,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(87465,39459,'blocks_2_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(87466,39459,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(87467,39459,'blocks_2_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(87468,39459,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(87469,39459,'blocks_2_cards_custom_3_image','39256'),(87470,39459,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(87471,39459,'blocks_2_cards_custom_3_title','Biomechanics and S&C coaches'),(87472,39459,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(87473,39459,'blocks_2_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(87474,39459,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(87475,39459,'blocks_2_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(87476,39459,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(87477,39459,'blocks_2_cards_custom_4_image','39251'),(87478,39459,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(87479,39459,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches '),(87480,39459,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(87481,39459,'blocks_2_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(87482,39459,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(87483,39459,'blocks_2_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(87484,39459,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(87485,39459,'blocks_2_cards_custom_5_image','39240'),(87486,39459,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(87487,39459,'blocks_2_cards_custom_5_title','Biomechanics and Sports Massage'),(87488,39459,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(87489,39459,'blocks_2_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(87490,39459,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(87491,39459,'blocks_2_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(87492,39459,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(87493,39459,'blocks_2_cards_custom_6_image','39454'),(87494,39459,'_blocks_2_cards_custom_6_image','field_6194cc284d387'),(87495,39459,'blocks_2_cards_custom_6_title','How to Become a Biomechanics Coach'),(87496,39459,'_blocks_2_cards_custom_6_title','field_6194cc454d388'),(87497,39459,'blocks_2_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(87498,39459,'_blocks_2_cards_custom_6_text','field_6194cc4a4d389'),(87499,39459,'blocks_2_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(87500,39459,'_blocks_2_cards_custom_6_link','field_6194cc534d38a'),(87501,39459,'blocks_2_cards_custom','7'),(87502,39459,'_blocks_2_cards_custom','field_6194cbf84d386'),(87503,39459,'blocks_3_acfe_flexible_toggle',''),(87504,39459,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(87505,39459,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(87506,39459,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(87507,39459,'blocks_3_options_theme','#ffffff'),(87508,39459,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(87509,39459,'blocks_3_options_reverse','0'),(87510,39459,'_blocks_3_options_reverse','field_61768049bb8ac'),(87511,39459,'blocks_3_options',''),(87512,39459,'_blocks_3_options','field_617682517c334'),(87513,39459,'blocks_3_split_5050_image','38960'),(87514,39459,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(87515,39459,'blocks_3_split_5050_video',''),(87516,39459,'_blocks_3_split_5050_video','field_6239f3160848a'),(87517,39459,'blocks_3_split_5050_content_title','Working In Partnership'),(87518,39459,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(87519,39459,'blocks_3_split_5050_content_heading','Biomechanics Education and Future Fit'),(87520,39459,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(87521,39459,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(87522,39459,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(87523,39459,'blocks_3_split_5050_content_actions',''),(87524,39459,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(87525,39459,'blocks_3_split_5050_content',''),(87526,39459,'_blocks_3_split_5050_content','field_61767afceb8ba'),(87527,39459,'blocks_4_acfe_flexible_toggle',''),(87528,39459,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(87529,39459,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(87530,39459,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(87531,39459,'blocks_4_testimonial_slider_content_title',''),(87532,39459,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(87533,39459,'blocks_4_testimonial_slider_content_heading','Testimonials'),(87534,39459,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(87535,39459,'blocks_4_testimonial_slider_content_text',''),(87536,39459,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(87537,39459,'blocks_4_testimonial_slider_content_actions',''),(87538,39459,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(87539,39459,'blocks_4_testimonial_slider_content',''),(87540,39459,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(87541,39459,'blocks_4_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(87542,39459,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(87543,39459,'blocks_4_testimonial_slider_ambassador_bool','0'),(87544,39459,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(87545,39459,'blocks_0_acfe_flexible_toggle',''),(87546,39459,'_blocks_0_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(87547,39459,'blocks_0_acfe_flexible_layout_title','Video'),(87548,39459,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(87549,39459,'blocks_0_size','large'),(87550,39459,'_blocks_0_size','field_6487038f297c1'),(87551,39459,'blocks_0_row_content_title',''),(87552,39459,'_blocks_0_row_content_title','field_64870132a865d'),(87553,39459,'blocks_0_row_content_heading','Welcome to Biomechanics Education'),(87554,39459,'_blocks_0_row_content_heading','field_64870142a865e'),(87555,39459,'blocks_0_row_content_text',''),(87556,39459,'_blocks_0_row_content_text','field_64870148a865f'),(87557,39459,'blocks_0_row_content',''),(87558,39459,'_blocks_0_row_content','field_6487008ba865c'),(87559,39459,'blocks_0_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(87560,39459,'_blocks_0_video_src','field_6193c4a98ec07'),(87561,39459,'blocks_0_video_thumbnail',''),(87562,39459,'_blocks_0_video_thumbnail','field_6193c4a08ec06'),(87563,39459,'blocks_1_acfe_flexible_toggle',''),(87564,39459,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(87565,39459,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(87566,39459,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(87567,39459,'blocks_1_options_theme','#ffffff'),(87568,39459,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(87569,39459,'blocks_1_options_reverse','0'),(87570,39459,'_blocks_1_options_reverse','field_61768049bb8ac'),(87571,39459,'blocks_1_options',''),(87572,39459,'_blocks_1_options','field_617682517c334'),(87573,39459,'blocks_1_split_5050_image','38950'),(87574,39459,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(87575,39459,'blocks_1_split_5050_video',''),(87576,39459,'_blocks_1_split_5050_video','field_6239f3160848a'),(87577,39459,'blocks_1_split_5050_content_title',''),(87578,39459,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(87579,39459,'blocks_1_split_5050_content_heading','What is Biomechanics Education ?'),(87580,39459,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(87581,39459,'blocks_1_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(87582,39459,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(87583,39459,'blocks_1_split_5050_content_actions',''),(87584,39459,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(87585,39459,'blocks_1_split_5050_content',''),(87586,39459,'_blocks_1_split_5050_content','field_61767afceb8ba'),(87587,39460,'hero_style','default'),(87588,39460,'_hero_style','field_62051d9dc5324'),(87589,39460,'hero_image_pos_x','right'),(87590,39460,'_hero_image_pos_x','field_62ec3d05390bb'),(87591,39460,'hero_image_pos_y','top'),(87592,39460,'_hero_image_pos_y','field_62ec3d05390bc'),(87593,39460,'hero_image_pos',''),(87594,39460,'_hero_image_pos','field_62ec3d05390ba'),(87595,39460,'hero_title','Biomechanics Education'),(87596,39460,'_hero_title','field_617571fe285e8'),(87597,39460,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(87598,39460,'_hero_text','field_6175723c285e9'),(87599,39460,'hero_actions','1'),(87600,39460,'_hero_actions','field_61757270285ea'),(87601,39460,'hero_icon',''),(87602,39460,'_hero_icon','field_61a6182199d03'),(87603,39460,'fft_hide_from_listings','0'),(87604,39460,'_fft_hide_from_listings','field_61f1320446ab2'),(87605,39460,'fft_page_format','default'),(87606,39460,'_fft_page_format','field_61ae213f1f218'),(87607,39460,'fft_hide_nav','0'),(87608,39460,'_fft_hide_nav','field_635bd5e43527c'),(87609,39460,'fft_hide_header_call_to_action','0'),(87610,39460,'_fft_hide_header_call_to_action','field_635bd6723527d'),(87611,39460,'fft_page_sitemap','0'),(87612,39460,'_fft_page_sitemap','field_61af9b34e8181'),(87613,39460,'blocks','a:5:{i:0;s:5:\"video\";i:1;s:10:\"split_5050\";i:2;s:5:\"cards\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(87614,39460,'_blocks','field_6176696113096'),(87615,39460,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(87616,39460,'_hero_actions_0_button','field_61757281285eb'),(87617,39460,'_thumbnail_id','38951'),(87618,39460,'__thumbnail_id','field_617570855ddaf'),(87619,39460,'hide_hero','0'),(87620,39460,'_hide_hero','field_66a2380fcda39'),(87621,39460,'blocks_2_acfe_flexible_toggle',''),(87622,39460,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(87623,39460,'blocks_2_acfe_flexible_layout_title','Cards'),(87624,39460,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(87625,39460,'blocks_2_options_theme','#ffffff'),(87626,39460,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(87627,39460,'blocks_2_options_format','carousel'),(87628,39460,'_blocks_2_options_format','field_617a7b15245b5'),(87629,39460,'blocks_2_options_style','default'),(87630,39460,'_blocks_2_options_style','field_6278ffb63484a'),(87631,39460,'blocks_2_options_cards_current_listing','0'),(87632,39460,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(87633,39460,'blocks_2_options_cards_content','custom'),(87634,39460,'_blocks_2_options_cards_content','field_617aba6122688'),(87635,39460,'blocks_2_options',''),(87636,39460,'_blocks_2_options','field_617a7b15245b3'),(87637,39460,'blocks_2_cards_custom_0_image','39215'),(87638,39460,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(87639,39460,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(87640,39460,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(87641,39460,'blocks_2_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(87642,39460,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(87643,39460,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(87644,39460,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(87645,39460,'blocks_2_cards_custom_1_image','39243'),(87646,39460,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(87647,39460,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(87648,39460,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(87649,39460,'blocks_2_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(87650,39460,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(87651,39460,'blocks_2_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(87652,39460,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(87653,39460,'blocks_2_cards_custom_2_image','39247'),(87654,39460,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(87655,39460,'blocks_2_cards_custom_2_title','Biomechanics and Podiatrists'),(87656,39460,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(87657,39460,'blocks_2_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(87658,39460,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(87659,39460,'blocks_2_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(87660,39460,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(87661,39460,'blocks_2_cards_custom_3_image','39256'),(87662,39460,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(87663,39460,'blocks_2_cards_custom_3_title','Biomechanics and S&C coaches'),(87664,39460,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(87665,39460,'blocks_2_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(87666,39460,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(87667,39460,'blocks_2_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(87668,39460,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(87669,39460,'blocks_2_cards_custom_4_image','39251'),(87670,39460,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(87671,39460,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches '),(87672,39460,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(87673,39460,'blocks_2_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(87674,39460,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(87675,39460,'blocks_2_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(87676,39460,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(87677,39460,'blocks_2_cards_custom_5_image','39240'),(87678,39460,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(87679,39460,'blocks_2_cards_custom_5_title','Biomechanics and Sports Massage'),(87680,39460,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(87681,39460,'blocks_2_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(87682,39460,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(87683,39460,'blocks_2_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(87684,39460,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(87685,39460,'blocks_2_cards_custom_6_image','39454'),(87686,39460,'_blocks_2_cards_custom_6_image','field_6194cc284d387'),(87687,39460,'blocks_2_cards_custom_6_title','How to Become a Biomechanics Coach'),(87688,39460,'_blocks_2_cards_custom_6_title','field_6194cc454d388'),(87689,39460,'blocks_2_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(87690,39460,'_blocks_2_cards_custom_6_text','field_6194cc4a4d389'),(87691,39460,'blocks_2_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(87692,39460,'_blocks_2_cards_custom_6_link','field_6194cc534d38a'),(87693,39460,'blocks_2_cards_custom','7'),(87694,39460,'_blocks_2_cards_custom','field_6194cbf84d386'),(87695,39460,'blocks_3_acfe_flexible_toggle',''),(87696,39460,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(87697,39460,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(87698,39460,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(87699,39460,'blocks_3_options_theme','#f5f5f5'),(87700,39460,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(87701,39460,'blocks_3_options_reverse','1'),(87702,39460,'_blocks_3_options_reverse','field_61768049bb8ac'),(87703,39460,'blocks_3_options',''),(87704,39460,'_blocks_3_options','field_617682517c334'),(87705,39460,'blocks_3_split_5050_image','38960'),(87706,39460,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(87707,39460,'blocks_3_split_5050_video',''),(87708,39460,'_blocks_3_split_5050_video','field_6239f3160848a'),(87709,39460,'blocks_3_split_5050_content_title','Working In Partnership'),(87710,39460,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(87711,39460,'blocks_3_split_5050_content_heading','Biomechanics Education and Future Fit'),(87712,39460,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(87713,39460,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(87714,39460,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(87715,39460,'blocks_3_split_5050_content_actions',''),(87716,39460,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(87717,39460,'blocks_3_split_5050_content',''),(87718,39460,'_blocks_3_split_5050_content','field_61767afceb8ba'),(87719,39460,'blocks_4_acfe_flexible_toggle',''),(87720,39460,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(87721,39460,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(87722,39460,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(87723,39460,'blocks_4_testimonial_slider_content_title',''),(87724,39460,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(87725,39460,'blocks_4_testimonial_slider_content_heading','Testimonials'),(87726,39460,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(87727,39460,'blocks_4_testimonial_slider_content_text',''),(87728,39460,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(87729,39460,'blocks_4_testimonial_slider_content_actions',''),(87730,39460,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(87731,39460,'blocks_4_testimonial_slider_content',''),(87732,39460,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(87733,39460,'blocks_4_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(87734,39460,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(87735,39460,'blocks_4_testimonial_slider_ambassador_bool','0'),(87736,39460,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(87737,39460,'blocks_0_acfe_flexible_toggle',''),(87738,39460,'_blocks_0_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(87739,39460,'blocks_0_acfe_flexible_layout_title','Video'),(87740,39460,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(87741,39460,'blocks_0_size','large'),(87742,39460,'_blocks_0_size','field_6487038f297c1'),(87743,39460,'blocks_0_row_content_title',''),(87744,39460,'_blocks_0_row_content_title','field_64870132a865d'),(87745,39460,'blocks_0_row_content_heading','Welcome to Biomechanics Education'),(87746,39460,'_blocks_0_row_content_heading','field_64870142a865e'),(87747,39460,'blocks_0_row_content_text',''),(87748,39460,'_blocks_0_row_content_text','field_64870148a865f'),(87749,39460,'blocks_0_row_content',''),(87750,39460,'_blocks_0_row_content','field_6487008ba865c'),(87751,39460,'blocks_0_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(87752,39460,'_blocks_0_video_src','field_6193c4a98ec07'),(87753,39460,'blocks_0_video_thumbnail',''),(87754,39460,'_blocks_0_video_thumbnail','field_6193c4a08ec06'),(87755,39460,'blocks_1_acfe_flexible_toggle',''),(87756,39460,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(87757,39460,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(87758,39460,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(87759,39460,'blocks_1_options_theme','#ffffff'),(87760,39460,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(87761,39460,'blocks_1_options_reverse','0'),(87762,39460,'_blocks_1_options_reverse','field_61768049bb8ac'),(87763,39460,'blocks_1_options',''),(87764,39460,'_blocks_1_options','field_617682517c334'),(87765,39460,'blocks_1_split_5050_image','38950'),(87766,39460,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(87767,39460,'blocks_1_split_5050_video',''),(87768,39460,'_blocks_1_split_5050_video','field_6239f3160848a'),(87769,39460,'blocks_1_split_5050_content_title',''),(87770,39460,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(87771,39460,'blocks_1_split_5050_content_heading','What is Biomechanics Education ?'),(87772,39460,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(87773,39460,'blocks_1_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(87774,39460,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(87775,39460,'blocks_1_split_5050_content_actions',''),(87776,39460,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(87777,39460,'blocks_1_split_5050_content',''),(87778,39460,'_blocks_1_split_5050_content','field_61767afceb8ba'),(87779,39461,'hero_style','default'),(87780,39461,'_hero_style','field_62051d9dc5324'),(87781,39461,'hero_image_pos_x','right'),(87782,39461,'_hero_image_pos_x','field_62ec3d05390bb'),(87783,39461,'hero_image_pos_y','top'),(87784,39461,'_hero_image_pos_y','field_62ec3d05390bc'),(87785,39461,'hero_image_pos',''),(87786,39461,'_hero_image_pos','field_62ec3d05390ba'),(87787,39461,'hero_title','Biomechanics Education'),(87788,39461,'_hero_title','field_617571fe285e8'),(87789,39461,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(87790,39461,'_hero_text','field_6175723c285e9'),(87791,39461,'hero_actions','1'),(87792,39461,'_hero_actions','field_61757270285ea'),(87793,39461,'hero_icon',''),(87794,39461,'_hero_icon','field_61a6182199d03'),(87795,39461,'fft_hide_from_listings','0'),(87796,39461,'_fft_hide_from_listings','field_61f1320446ab2'),(87797,39461,'fft_page_format','default'),(87798,39461,'_fft_page_format','field_61ae213f1f218'),(87799,39461,'fft_hide_nav','0'),(87800,39461,'_fft_hide_nav','field_635bd5e43527c'),(87801,39461,'fft_hide_header_call_to_action','0'),(87802,39461,'_fft_hide_header_call_to_action','field_635bd6723527d'),(87803,39461,'fft_page_sitemap','0'),(87804,39461,'_fft_page_sitemap','field_61af9b34e8181'),(87805,39461,'blocks','a:5:{i:0;s:5:\"video\";i:1;s:10:\"split_5050\";i:2;s:5:\"cards\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(87806,39461,'_blocks','field_6176696113096'),(87807,39461,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(87808,39461,'_hero_actions_0_button','field_61757281285eb'),(87809,39461,'_thumbnail_id','38951'),(87810,39461,'__thumbnail_id','field_617570855ddaf'),(87811,39461,'hide_hero','0'),(87812,39461,'_hide_hero','field_66a2380fcda39'),(87813,39461,'blocks_2_acfe_flexible_toggle',''),(87814,39461,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(87815,39461,'blocks_2_acfe_flexible_layout_title','Cards'),(87816,39461,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(87817,39461,'blocks_2_options_theme','#ffffff'),(87818,39461,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(87819,39461,'blocks_2_options_format','carousel'),(87820,39461,'_blocks_2_options_format','field_617a7b15245b5'),(87821,39461,'blocks_2_options_style','default'),(87822,39461,'_blocks_2_options_style','field_6278ffb63484a'),(87823,39461,'blocks_2_options_cards_current_listing','0'),(87824,39461,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(87825,39461,'blocks_2_options_cards_content','custom'),(87826,39461,'_blocks_2_options_cards_content','field_617aba6122688'),(87827,39461,'blocks_2_options',''),(87828,39461,'_blocks_2_options','field_617a7b15245b3'),(87829,39461,'blocks_2_cards_custom_0_image','39215'),(87830,39461,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(87831,39461,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(87832,39461,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(87833,39461,'blocks_2_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(87834,39461,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(87835,39461,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(87836,39461,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(87837,39461,'blocks_2_cards_custom_1_image','39243'),(87838,39461,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(87839,39461,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(87840,39461,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(87841,39461,'blocks_2_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(87842,39461,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(87843,39461,'blocks_2_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(87844,39461,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(87845,39461,'blocks_2_cards_custom_2_image','39247'),(87846,39461,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(87847,39461,'blocks_2_cards_custom_2_title','Biomechanics and Podiatrists'),(87848,39461,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(87849,39461,'blocks_2_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(87850,39461,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(87851,39461,'blocks_2_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(87852,39461,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(87853,39461,'blocks_2_cards_custom_3_image','39256'),(87854,39461,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(87855,39461,'blocks_2_cards_custom_3_title','Biomechanics and S&C coaches'),(87856,39461,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(87857,39461,'blocks_2_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(87858,39461,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(87859,39461,'blocks_2_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(87860,39461,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(87861,39461,'blocks_2_cards_custom_4_image','39251'),(87862,39461,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(87863,39461,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches '),(87864,39461,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(87865,39461,'blocks_2_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(87866,39461,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(87867,39461,'blocks_2_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(87868,39461,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(87869,39461,'blocks_2_cards_custom_5_image','39240'),(87870,39461,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(87871,39461,'blocks_2_cards_custom_5_title','Biomechanics and Sports Massage'),(87872,39461,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(87873,39461,'blocks_2_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(87874,39461,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(87875,39461,'blocks_2_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(87876,39461,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(87877,39461,'blocks_2_cards_custom_6_image','39454'),(87878,39461,'_blocks_2_cards_custom_6_image','field_6194cc284d387'),(87879,39461,'blocks_2_cards_custom_6_title','How to Become a Biomechanics Coach'),(87880,39461,'_blocks_2_cards_custom_6_title','field_6194cc454d388'),(87881,39461,'blocks_2_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(87882,39461,'_blocks_2_cards_custom_6_text','field_6194cc4a4d389'),(87883,39461,'blocks_2_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(87884,39461,'_blocks_2_cards_custom_6_link','field_6194cc534d38a'),(87885,39461,'blocks_2_cards_custom','7'),(87886,39461,'_blocks_2_cards_custom','field_6194cbf84d386'),(87887,39461,'blocks_3_acfe_flexible_toggle',''),(87888,39461,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(87889,39461,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(87890,39461,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(87891,39461,'blocks_3_options_theme','#f5f5f5'),(87892,39461,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(87893,39461,'blocks_3_options_reverse','1'),(87894,39461,'_blocks_3_options_reverse','field_61768049bb8ac'),(87895,39461,'blocks_3_options',''),(87896,39461,'_blocks_3_options','field_617682517c334'),(87897,39461,'blocks_3_split_5050_image','38960'),(87898,39461,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(87899,39461,'blocks_3_split_5050_video',''),(87900,39461,'_blocks_3_split_5050_video','field_6239f3160848a'),(87901,39461,'blocks_3_split_5050_content_title','Working In Partnership'),(87902,39461,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(87903,39461,'blocks_3_split_5050_content_heading','Biomechanics Education and Future Fit'),(87904,39461,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(87905,39461,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(87906,39461,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(87907,39461,'blocks_3_split_5050_content_actions',''),(87908,39461,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(87909,39461,'blocks_3_split_5050_content',''),(87910,39461,'_blocks_3_split_5050_content','field_61767afceb8ba'),(87911,39461,'blocks_4_acfe_flexible_toggle',''),(87912,39461,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(87913,39461,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(87914,39461,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(87915,39461,'blocks_4_testimonial_slider_content_title',''),(87916,39461,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(87917,39461,'blocks_4_testimonial_slider_content_heading','Testimonials'),(87918,39461,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(87919,39461,'blocks_4_testimonial_slider_content_text',''),(87920,39461,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(87921,39461,'blocks_4_testimonial_slider_content_actions',''),(87922,39461,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(87923,39461,'blocks_4_testimonial_slider_content',''),(87924,39461,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(87925,39461,'blocks_4_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(87926,39461,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(87927,39461,'blocks_4_testimonial_slider_ambassador_bool','0'),(87928,39461,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(87929,39461,'blocks_0_acfe_flexible_toggle',''),(87930,39461,'_blocks_0_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(87931,39461,'blocks_0_acfe_flexible_layout_title','Video'),(87932,39461,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(87933,39461,'blocks_0_size','large'),(87934,39461,'_blocks_0_size','field_6487038f297c1'),(87935,39461,'blocks_0_row_content_title',''),(87936,39461,'_blocks_0_row_content_title','field_64870132a865d'),(87937,39461,'blocks_0_row_content_heading','Welcome to Biomechanics Education'),(87938,39461,'_blocks_0_row_content_heading','field_64870142a865e'),(87939,39461,'blocks_0_row_content_text',''),(87940,39461,'_blocks_0_row_content_text','field_64870148a865f'),(87941,39461,'blocks_0_row_content',''),(87942,39461,'_blocks_0_row_content','field_6487008ba865c'),(87943,39461,'blocks_0_video_src','https://youtu.be/xgvideoRiAj1qEog?si=j7jVPWH99bUI3k0A '),(87944,39461,'_blocks_0_video_src','field_6193c4a98ec07'),(87945,39461,'blocks_0_video_thumbnail',''),(87946,39461,'_blocks_0_video_thumbnail','field_6193c4a08ec06'),(87947,39461,'blocks_1_acfe_flexible_toggle',''),(87948,39461,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(87949,39461,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(87950,39461,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(87951,39461,'blocks_1_options_theme','#f5f5f5'),(87952,39461,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(87953,39461,'blocks_1_options_reverse','0'),(87954,39461,'_blocks_1_options_reverse','field_61768049bb8ac'),(87955,39461,'blocks_1_options',''),(87956,39461,'_blocks_1_options','field_617682517c334'),(87957,39461,'blocks_1_split_5050_image','38950'),(87958,39461,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(87959,39461,'blocks_1_split_5050_video',''),(87960,39461,'_blocks_1_split_5050_video','field_6239f3160848a'),(87961,39461,'blocks_1_split_5050_content_title',''),(87962,39461,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(87963,39461,'blocks_1_split_5050_content_heading','What is Biomechanics Education ?'),(87964,39461,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(87965,39461,'blocks_1_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(87966,39461,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(87967,39461,'blocks_1_split_5050_content_actions',''),(87968,39461,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(87969,39461,'blocks_1_split_5050_content',''),(87970,39461,'_blocks_1_split_5050_content','field_61767afceb8ba'),(87971,39462,'hero_style','default'),(87972,39462,'_hero_style','field_62051d9dc5324'),(87973,39462,'hero_image_pos_x','right'),(87974,39462,'_hero_image_pos_x','field_62ec3d05390bb'),(87975,39462,'hero_image_pos_y','top'),(87976,39462,'_hero_image_pos_y','field_62ec3d05390bc'),(87977,39462,'hero_image_pos',''),(87978,39462,'_hero_image_pos','field_62ec3d05390ba'),(87979,39462,'hero_title','Biomechanics Education'),(87980,39462,'_hero_title','field_617571fe285e8'),(87981,39462,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(87982,39462,'_hero_text','field_6175723c285e9'),(87983,39462,'hero_actions','1'),(87984,39462,'_hero_actions','field_61757270285ea'),(87985,39462,'hero_icon',''),(87986,39462,'_hero_icon','field_61a6182199d03'),(87987,39462,'fft_hide_from_listings','0'),(87988,39462,'_fft_hide_from_listings','field_61f1320446ab2'),(87989,39462,'fft_page_format','default'),(87990,39462,'_fft_page_format','field_61ae213f1f218'),(87991,39462,'fft_hide_nav','0'),(87992,39462,'_fft_hide_nav','field_635bd5e43527c'),(87993,39462,'fft_hide_header_call_to_action','0'),(87994,39462,'_fft_hide_header_call_to_action','field_635bd6723527d'),(87995,39462,'fft_page_sitemap','0'),(87996,39462,'_fft_page_sitemap','field_61af9b34e8181'),(87997,39462,'blocks','a:5:{i:0;s:5:\"video\";i:1;s:10:\"split_5050\";i:2;s:5:\"cards\";i:3;s:10:\"split_5050\";i:4;s:18:\"testimonial_slider\";}'),(87998,39462,'_blocks','field_6176696113096'),(87999,39462,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(88000,39462,'_hero_actions_0_button','field_61757281285eb'),(88001,39462,'_thumbnail_id','38951'),(88002,39462,'__thumbnail_id','field_617570855ddaf'),(88003,39462,'hide_hero','0'),(88004,39462,'_hide_hero','field_66a2380fcda39'),(88005,39462,'blocks_2_acfe_flexible_toggle',''),(88006,39462,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(88007,39462,'blocks_2_acfe_flexible_layout_title','Cards'),(88008,39462,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(88009,39462,'blocks_2_options_theme','#ffffff'),(88010,39462,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(88011,39462,'blocks_2_options_format','carousel'),(88012,39462,'_blocks_2_options_format','field_617a7b15245b5'),(88013,39462,'blocks_2_options_style','default'),(88014,39462,'_blocks_2_options_style','field_6278ffb63484a'),(88015,39462,'blocks_2_options_cards_current_listing','0'),(88016,39462,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(88017,39462,'blocks_2_options_cards_content','custom'),(88018,39462,'_blocks_2_options_cards_content','field_617aba6122688'),(88019,39462,'blocks_2_options',''),(88020,39462,'_blocks_2_options','field_617a7b15245b3'),(88021,39462,'blocks_2_cards_custom_0_image','39215'),(88022,39462,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(88023,39462,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(88024,39462,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(88025,39462,'blocks_2_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(88026,39462,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(88027,39462,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(88028,39462,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(88029,39462,'blocks_2_cards_custom_1_image','39243'),(88030,39462,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(88031,39462,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(88032,39462,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(88033,39462,'blocks_2_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(88034,39462,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(88035,39462,'blocks_2_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(88036,39462,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(88037,39462,'blocks_2_cards_custom_2_image','39247'),(88038,39462,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(88039,39462,'blocks_2_cards_custom_2_title','Biomechanics and Podiatrists'),(88040,39462,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(88041,39462,'blocks_2_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(88042,39462,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(88043,39462,'blocks_2_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(88044,39462,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(88045,39462,'blocks_2_cards_custom_3_image','39256'),(88046,39462,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(88047,39462,'blocks_2_cards_custom_3_title','Biomechanics and S&C coaches'),(88048,39462,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(88049,39462,'blocks_2_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(88050,39462,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(88051,39462,'blocks_2_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(88052,39462,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(88053,39462,'blocks_2_cards_custom_4_image','39251'),(88054,39462,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(88055,39462,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches '),(88056,39462,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(88057,39462,'blocks_2_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(88058,39462,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(88059,39462,'blocks_2_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(88060,39462,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(88061,39462,'blocks_2_cards_custom_5_image','39240'),(88062,39462,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(88063,39462,'blocks_2_cards_custom_5_title','Biomechanics and Sports Massage'),(88064,39462,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(88065,39462,'blocks_2_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(88066,39462,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(88067,39462,'blocks_2_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(88068,39462,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(88069,39462,'blocks_2_cards_custom_6_image','39454'),(88070,39462,'_blocks_2_cards_custom_6_image','field_6194cc284d387'),(88071,39462,'blocks_2_cards_custom_6_title','How to Become a Biomechanics Coach'),(88072,39462,'_blocks_2_cards_custom_6_title','field_6194cc454d388'),(88073,39462,'blocks_2_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(88074,39462,'_blocks_2_cards_custom_6_text','field_6194cc4a4d389'),(88075,39462,'blocks_2_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(88076,39462,'_blocks_2_cards_custom_6_link','field_6194cc534d38a'),(88077,39462,'blocks_2_cards_custom','7'),(88078,39462,'_blocks_2_cards_custom','field_6194cbf84d386'),(88079,39462,'blocks_3_acfe_flexible_toggle',''),(88080,39462,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(88081,39462,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(88082,39462,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(88083,39462,'blocks_3_options_theme','#f5f5f5'),(88084,39462,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(88085,39462,'blocks_3_options_reverse','1'),(88086,39462,'_blocks_3_options_reverse','field_61768049bb8ac'),(88087,39462,'blocks_3_options',''),(88088,39462,'_blocks_3_options','field_617682517c334'),(88089,39462,'blocks_3_split_5050_image','38960'),(88090,39462,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(88091,39462,'blocks_3_split_5050_video',''),(88092,39462,'_blocks_3_split_5050_video','field_6239f3160848a'),(88093,39462,'blocks_3_split_5050_content_title','Working In Partnership'),(88094,39462,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(88095,39462,'blocks_3_split_5050_content_heading','Biomechanics Education and Future Fit'),(88096,39462,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(88097,39462,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(88098,39462,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(88099,39462,'blocks_3_split_5050_content_actions',''),(88100,39462,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(88101,39462,'blocks_3_split_5050_content',''),(88102,39462,'_blocks_3_split_5050_content','field_61767afceb8ba'),(88103,39462,'blocks_4_acfe_flexible_toggle',''),(88104,39462,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(88105,39462,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(88106,39462,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(88107,39462,'blocks_4_testimonial_slider_content_title',''),(88108,39462,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(88109,39462,'blocks_4_testimonial_slider_content_heading','Testimonials'),(88110,39462,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(88111,39462,'blocks_4_testimonial_slider_content_text',''),(88112,39462,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(88113,39462,'blocks_4_testimonial_slider_content_actions',''),(88114,39462,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(88115,39462,'blocks_4_testimonial_slider_content',''),(88116,39462,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(88117,39462,'blocks_4_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(88118,39462,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(88119,39462,'blocks_4_testimonial_slider_ambassador_bool','0'),(88120,39462,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(88121,39462,'blocks_0_acfe_flexible_toggle',''),(88122,39462,'_blocks_0_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(88123,39462,'blocks_0_acfe_flexible_layout_title','Video'),(88124,39462,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(88125,39462,'blocks_0_size','large'),(88126,39462,'_blocks_0_size','field_6487038f297c1'),(88127,39462,'blocks_0_row_content_title',''),(88128,39462,'_blocks_0_row_content_title','field_64870132a865d'),(88129,39462,'blocks_0_row_content_heading','Welcome to Biomechanics Education'),(88130,39462,'_blocks_0_row_content_heading','field_64870142a865e'),(88131,39462,'blocks_0_row_content_text',''),(88132,39462,'_blocks_0_row_content_text','field_64870148a865f'),(88133,39462,'blocks_0_row_content',''),(88134,39462,'_blocks_0_row_content','field_6487008ba865c'),(88135,39462,'blocks_0_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(88136,39462,'_blocks_0_video_src','field_6193c4a98ec07'),(88137,39462,'blocks_0_video_thumbnail','39175'),(88138,39462,'_blocks_0_video_thumbnail','field_6193c4a08ec06'),(88139,39462,'blocks_1_acfe_flexible_toggle',''),(88140,39462,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(88141,39462,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(88142,39462,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(88143,39462,'blocks_1_options_theme','#f5f5f5'),(88144,39462,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(88145,39462,'blocks_1_options_reverse','0'),(88146,39462,'_blocks_1_options_reverse','field_61768049bb8ac'),(88147,39462,'blocks_1_options',''),(88148,39462,'_blocks_1_options','field_617682517c334'),(88149,39462,'blocks_1_split_5050_image','38950'),(88150,39462,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(88151,39462,'blocks_1_split_5050_video',''),(88152,39462,'_blocks_1_split_5050_video','field_6239f3160848a'),(88153,39462,'blocks_1_split_5050_content_title',''),(88154,39462,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(88155,39462,'blocks_1_split_5050_content_heading','What is Biomechanics Education ?'),(88156,39462,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(88157,39462,'blocks_1_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(88158,39462,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(88159,39462,'blocks_1_split_5050_content_actions',''),(88160,39462,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(88161,39462,'blocks_1_split_5050_content',''),(88162,39462,'_blocks_1_split_5050_content','field_61767afceb8ba'),(88285,39463,'hero_style','default'),(88286,39463,'_hero_style','field_62051d9dc5324'),(88287,39463,'hero_image_pos_x','right'),(88288,39463,'_hero_image_pos_x','field_62ec3d05390bb'),(88289,39463,'hero_image_pos_y','top'),(88290,39463,'_hero_image_pos_y','field_62ec3d05390bc'),(88291,39463,'hero_image_pos',''),(88292,39463,'_hero_image_pos','field_62ec3d05390ba'),(88293,39463,'hero_title','Biomechanics Education'),(88294,39463,'_hero_title','field_617571fe285e8'),(88295,39463,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(88296,39463,'_hero_text','field_6175723c285e9'),(88297,39463,'hero_actions','1'),(88298,39463,'_hero_actions','field_61757270285ea'),(88299,39463,'hero_icon',''),(88300,39463,'_hero_icon','field_61a6182199d03'),(88301,39463,'fft_hide_from_listings','0'),(88302,39463,'_fft_hide_from_listings','field_61f1320446ab2'),(88303,39463,'fft_page_format','default'),(88304,39463,'_fft_page_format','field_61ae213f1f218'),(88305,39463,'fft_hide_nav','0'),(88306,39463,'_fft_hide_nav','field_635bd5e43527c'),(88307,39463,'fft_hide_header_call_to_action','0'),(88308,39463,'_fft_hide_header_call_to_action','field_635bd6723527d'),(88309,39463,'fft_page_sitemap','0'),(88310,39463,'_fft_page_sitemap','field_61af9b34e8181'),(88311,39463,'blocks','a:6:{i:0;s:5:\"video\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:18:\"testimonial_slider\";}'),(88312,39463,'_blocks','field_6176696113096'),(88313,39463,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(88314,39463,'_hero_actions_0_button','field_61757281285eb'),(88315,39463,'_thumbnail_id','38951'),(88316,39463,'__thumbnail_id','field_617570855ddaf'),(88317,39463,'hide_hero','0'),(88318,39463,'_hide_hero','field_66a2380fcda39'),(88319,39463,'blocks_0_acfe_flexible_toggle',''),(88320,39463,'_blocks_0_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(88321,39463,'blocks_0_acfe_flexible_layout_title','Video'),(88322,39463,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(88323,39463,'blocks_0_size','large'),(88324,39463,'_blocks_0_size','field_6487038f297c1'),(88325,39463,'blocks_0_row_content_title',''),(88326,39463,'_blocks_0_row_content_title','field_64870132a865d'),(88327,39463,'blocks_0_row_content_heading','Welcome to Biomechanics Education'),(88328,39463,'_blocks_0_row_content_heading','field_64870142a865e'),(88329,39463,'blocks_0_row_content_text',''),(88330,39463,'_blocks_0_row_content_text','field_64870148a865f'),(88331,39463,'blocks_0_row_content',''),(88332,39463,'_blocks_0_row_content','field_6487008ba865c'),(88333,39463,'blocks_0_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(88334,39463,'_blocks_0_video_src','field_6193c4a98ec07'),(88335,39463,'blocks_0_video_thumbnail','39175'),(88336,39463,'_blocks_0_video_thumbnail','field_6193c4a08ec06'),(88337,39463,'blocks_1_acfe_flexible_toggle',''),(88338,39463,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(88339,39463,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(88340,39463,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(88341,39463,'blocks_1_options_theme','#f5f5f5'),(88342,39463,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(88343,39463,'blocks_1_options_reverse','0'),(88344,39463,'_blocks_1_options_reverse','field_61768049bb8ac'),(88345,39463,'blocks_1_options',''),(88346,39463,'_blocks_1_options','field_617682517c334'),(88347,39463,'blocks_1_split_5050_image','38950'),(88348,39463,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(88349,39463,'blocks_1_split_5050_video',''),(88350,39463,'_blocks_1_split_5050_video','field_6239f3160848a'),(88351,39463,'blocks_1_split_5050_content_title',''),(88352,39463,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(88353,39463,'blocks_1_split_5050_content_heading','What is Biomechanics Education ?'),(88354,39463,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(88355,39463,'blocks_1_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(88356,39463,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(88357,39463,'blocks_1_split_5050_content_actions',''),(88358,39463,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(88359,39463,'blocks_1_split_5050_content',''),(88360,39463,'_blocks_1_split_5050_content','field_61767afceb8ba'),(88361,39463,'blocks_2_acfe_flexible_toggle',''),(88362,39463,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(88363,39463,'blocks_2_acfe_flexible_layout_title','Template'),(88364,39463,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(88365,39463,'blocks_2_template','39087'),(88366,39463,'_blocks_2_template','field_617bdd570fe01'),(88367,39463,'blocks_3_acfe_flexible_toggle',''),(88368,39463,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(88369,39463,'blocks_3_acfe_flexible_layout_title','Cards'),(88370,39463,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(88371,39463,'blocks_3_options_theme','#ffffff'),(88372,39463,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(88373,39463,'blocks_3_options_format','carousel'),(88374,39463,'_blocks_3_options_format','field_617a7b15245b5'),(88375,39463,'blocks_3_options_style','default'),(88376,39463,'_blocks_3_options_style','field_6278ffb63484a'),(88377,39463,'blocks_3_options_cards_current_listing','0'),(88378,39463,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(88379,39463,'blocks_3_options_cards_content','custom'),(88380,39463,'_blocks_3_options_cards_content','field_617aba6122688'),(88381,39463,'blocks_3_options',''),(88382,39463,'_blocks_3_options','field_617a7b15245b3'),(88383,39463,'blocks_3_cards_custom_0_image','39215'),(88384,39463,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(88385,39463,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(88386,39463,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(88387,39463,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(88388,39463,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(88389,39463,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(88390,39463,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(88391,39463,'blocks_3_cards_custom_1_image','39243'),(88392,39463,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(88393,39463,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(88394,39463,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(88395,39463,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(88396,39463,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(88397,39463,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(88398,39463,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(88399,39463,'blocks_3_cards_custom_2_image','39247'),(88400,39463,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(88401,39463,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(88402,39463,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(88403,39463,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(88404,39463,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(88405,39463,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(88406,39463,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(88407,39463,'blocks_3_cards_custom_3_image','39256'),(88408,39463,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(88409,39463,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(88410,39463,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(88411,39463,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(88412,39463,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(88413,39463,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(88414,39463,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(88415,39463,'blocks_3_cards_custom_4_image','39251'),(88416,39463,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(88417,39463,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches '),(88418,39463,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(88419,39463,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(88420,39463,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(88421,39463,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(88422,39463,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(88423,39463,'blocks_3_cards_custom_5_image','39240'),(88424,39463,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(88425,39463,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(88426,39463,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(88427,39463,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(88428,39463,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(88429,39463,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(88430,39463,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(88431,39463,'blocks_3_cards_custom_6_image','39454'),(88432,39463,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(88433,39463,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(88434,39463,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(88435,39463,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(88436,39463,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(88437,39463,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(88438,39463,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(88439,39463,'blocks_3_cards_custom','7'),(88440,39463,'_blocks_3_cards_custom','field_6194cbf84d386'),(88441,39463,'blocks_4_acfe_flexible_toggle',''),(88442,39463,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(88443,39463,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(88444,39463,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(88445,39463,'blocks_4_options_theme','#f5f5f5'),(88446,39463,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(88447,39463,'blocks_4_options_reverse','1'),(88448,39463,'_blocks_4_options_reverse','field_61768049bb8ac'),(88449,39463,'blocks_4_options',''),(88450,39463,'_blocks_4_options','field_617682517c334'),(88451,39463,'blocks_4_split_5050_image','38960'),(88452,39463,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(88453,39463,'blocks_4_split_5050_video',''),(88454,39463,'_blocks_4_split_5050_video','field_6239f3160848a'),(88455,39463,'blocks_4_split_5050_content_title','Working In Partnership'),(88456,39463,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(88457,39463,'blocks_4_split_5050_content_heading','Biomechanics Education and Future Fit'),(88458,39463,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(88459,39463,'blocks_4_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(88460,39463,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(88461,39463,'blocks_4_split_5050_content_actions',''),(88462,39463,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(88463,39463,'blocks_4_split_5050_content',''),(88464,39463,'_blocks_4_split_5050_content','field_61767afceb8ba'),(88465,39463,'blocks_5_acfe_flexible_toggle',''),(88466,39463,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(88467,39463,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(88468,39463,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(88469,39463,'blocks_5_testimonial_slider_content_title',''),(88470,39463,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(88471,39463,'blocks_5_testimonial_slider_content_heading','Testimonials'),(88472,39463,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(88473,39463,'blocks_5_testimonial_slider_content_text',''),(88474,39463,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(88475,39463,'blocks_5_testimonial_slider_content_actions',''),(88476,39463,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(88477,39463,'blocks_5_testimonial_slider_content',''),(88478,39463,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(88479,39463,'blocks_5_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(88480,39463,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(88481,39463,'blocks_5_testimonial_slider_ambassador_bool','0'),(88482,39463,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(88483,7,'blocks_3_acfe_flexible_toggle',''),(88484,7,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(88485,7,'blocks_3_acfe_flexible_layout_title','Text Block'),(88486,7,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(88487,7,'blocks_3_options_theme','#ffffff'),(88488,7,'_blocks_3_options_theme','field_6176830e2ad17'),(88489,7,'blocks_3_options',''),(88490,7,'_blocks_3_options','field_6176830e2ad16'),(88491,7,'blocks_3_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines '),(88492,7,'_blocks_3_text_block_heading','field_617669d413097'),(88493,7,'blocks_3_text_block_content',''),(88494,7,'_blocks_3_text_block_content','field_617669ec13098'),(88495,7,'blocks_4_acfe_flexible_toggle',''),(88496,7,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(88497,7,'blocks_4_acfe_flexible_layout_title','Cards'),(88498,7,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(88499,7,'blocks_4_options_theme','#ffffff'),(88500,7,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(88501,7,'blocks_4_options_format','carousel'),(88502,7,'_blocks_4_options_format','field_617a7b15245b5'),(88503,7,'blocks_4_options_style','default'),(88504,7,'_blocks_4_options_style','field_6278ffb63484a'),(88505,7,'blocks_4_options_cards_current_listing','0'),(88506,7,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(88507,7,'blocks_4_options_cards_content','custom'),(88508,7,'_blocks_4_options_cards_content','field_617aba6122688'),(88509,7,'blocks_4_options',''),(88510,7,'_blocks_4_options','field_617a7b15245b3'),(88511,7,'blocks_4_cards_custom_0_image','39215'),(88512,7,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(88513,7,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(88514,7,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(88515,7,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(88516,7,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(88517,7,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(88518,7,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(88519,7,'blocks_4_cards_custom_1_image','39243'),(88520,7,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(88521,7,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(88522,7,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(88523,7,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(88524,7,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(88525,7,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(88526,7,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(88527,7,'blocks_4_cards_custom_2_image','39247'),(88528,7,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(88529,7,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(88530,7,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(88531,7,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(88532,7,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(88533,7,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(88534,7,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(88535,7,'blocks_4_cards_custom_3_image','39256'),(88536,7,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(88537,7,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(88538,7,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(88539,7,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(88540,7,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(88541,7,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(88542,7,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(88543,7,'blocks_4_cards_custom_4_image','39251'),(88544,7,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(88545,7,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(88546,7,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(88547,7,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(88548,7,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(88549,7,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(88550,7,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(88551,7,'blocks_4_cards_custom_5_image','39240'),(88552,7,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(88553,7,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(88554,7,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(88555,7,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(88556,7,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(88557,7,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(88558,7,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(88559,7,'blocks_4_cards_custom_6_image','39454'),(88560,7,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(88561,7,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(88562,7,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(88563,7,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(88564,7,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(88565,7,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(88566,7,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(88567,7,'blocks_4_cards_custom','7'),(88568,7,'_blocks_4_cards_custom','field_6194cbf84d386'),(88569,7,'blocks_5_acfe_flexible_toggle',''),(88570,7,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(88571,7,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(88572,7,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(88573,7,'blocks_5_options_theme','#f5f5f5'),(88574,7,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(88575,7,'blocks_5_options_reverse','1'),(88576,7,'_blocks_5_options_reverse','field_61768049bb8ac'),(88577,7,'blocks_5_options',''),(88578,7,'_blocks_5_options','field_617682517c334'),(88579,7,'blocks_5_split_5050_image','38960'),(88580,7,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(88581,7,'blocks_5_split_5050_video',''),(88582,7,'_blocks_5_split_5050_video','field_6239f3160848a'),(88583,7,'blocks_5_split_5050_content_title',''),(88584,7,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(88585,7,'blocks_5_split_5050_content_heading','Biomechanics Education & Future Fit'),(88586,7,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(88587,7,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(88588,7,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(88589,7,'blocks_5_split_5050_content_actions','1'),(88590,7,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(88591,7,'blocks_5_split_5050_content',''),(88592,7,'_blocks_5_split_5050_content','field_61767afceb8ba'),(88611,39464,'hero_style','default'),(88612,39464,'_hero_style','field_62051d9dc5324'),(88613,39464,'hero_image_pos_x','right'),(88614,39464,'_hero_image_pos_x','field_62ec3d05390bb'),(88615,39464,'hero_image_pos_y','top'),(88616,39464,'_hero_image_pos_y','field_62ec3d05390bc'),(88617,39464,'hero_image_pos',''),(88618,39464,'_hero_image_pos','field_62ec3d05390ba'),(88619,39464,'hero_title','Biomechanics Education'),(88620,39464,'_hero_title','field_617571fe285e8'),(88621,39464,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(88622,39464,'_hero_text','field_6175723c285e9'),(88623,39464,'hero_actions','1'),(88624,39464,'_hero_actions','field_61757270285ea'),(88625,39464,'hero_icon',''),(88626,39464,'_hero_icon','field_61a6182199d03'),(88627,39464,'fft_hide_from_listings','0'),(88628,39464,'_fft_hide_from_listings','field_61f1320446ab2'),(88629,39464,'fft_page_format','default'),(88630,39464,'_fft_page_format','field_61ae213f1f218'),(88631,39464,'fft_hide_nav','0'),(88632,39464,'_fft_hide_nav','field_635bd5e43527c'),(88633,39464,'fft_hide_header_call_to_action','0'),(88634,39464,'_fft_hide_header_call_to_action','field_635bd6723527d'),(88635,39464,'fft_page_sitemap','0'),(88636,39464,'_fft_page_sitemap','field_61af9b34e8181'),(88637,39464,'blocks','a:7:{i:0;s:5:\"video\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:18:\"testimonial_slider\";}'),(88638,39464,'_blocks','field_6176696113096'),(88639,39464,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(88640,39464,'_hero_actions_0_button','field_61757281285eb'),(88641,39464,'_thumbnail_id','38951'),(88642,39464,'__thumbnail_id','field_617570855ddaf'),(88643,39464,'hide_hero','0'),(88644,39464,'_hide_hero','field_66a2380fcda39'),(88645,39464,'blocks_0_acfe_flexible_toggle',''),(88646,39464,'_blocks_0_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(88647,39464,'blocks_0_acfe_flexible_layout_title','Video'),(88648,39464,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(88649,39464,'blocks_0_size','large'),(88650,39464,'_blocks_0_size','field_6487038f297c1'),(88651,39464,'blocks_0_row_content_title',''),(88652,39464,'_blocks_0_row_content_title','field_64870132a865d'),(88653,39464,'blocks_0_row_content_heading','Welcome to Biomechanics Education'),(88654,39464,'_blocks_0_row_content_heading','field_64870142a865e'),(88655,39464,'blocks_0_row_content_text',''),(88656,39464,'_blocks_0_row_content_text','field_64870148a865f'),(88657,39464,'blocks_0_row_content',''),(88658,39464,'_blocks_0_row_content','field_6487008ba865c'),(88659,39464,'blocks_0_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(88660,39464,'_blocks_0_video_src','field_6193c4a98ec07'),(88661,39464,'blocks_0_video_thumbnail','39175'),(88662,39464,'_blocks_0_video_thumbnail','field_6193c4a08ec06'),(88663,39464,'blocks_1_acfe_flexible_toggle',''),(88664,39464,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(88665,39464,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(88666,39464,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(88667,39464,'blocks_1_options_theme','#f5f5f5'),(88668,39464,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(88669,39464,'blocks_1_options_reverse','0'),(88670,39464,'_blocks_1_options_reverse','field_61768049bb8ac'),(88671,39464,'blocks_1_options',''),(88672,39464,'_blocks_1_options','field_617682517c334'),(88673,39464,'blocks_1_split_5050_image','38950'),(88674,39464,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(88675,39464,'blocks_1_split_5050_video',''),(88676,39464,'_blocks_1_split_5050_video','field_6239f3160848a'),(88677,39464,'blocks_1_split_5050_content_title',''),(88678,39464,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(88679,39464,'blocks_1_split_5050_content_heading','What is Biomechanics Education ?'),(88680,39464,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(88681,39464,'blocks_1_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(88682,39464,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(88683,39464,'blocks_1_split_5050_content_actions',''),(88684,39464,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(88685,39464,'blocks_1_split_5050_content',''),(88686,39464,'_blocks_1_split_5050_content','field_61767afceb8ba'),(88687,39464,'blocks_2_acfe_flexible_toggle',''),(88688,39464,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(88689,39464,'blocks_2_acfe_flexible_layout_title','Template'),(88690,39464,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(88691,39464,'blocks_2_template','39087'),(88692,39464,'_blocks_2_template','field_617bdd570fe01'),(88693,39464,'blocks_3_acfe_flexible_toggle',''),(88694,39464,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(88695,39464,'blocks_3_acfe_flexible_layout_title','Text Block'),(88696,39464,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(88697,39464,'blocks_3_options_theme','#ffffff'),(88698,39464,'_blocks_3_options_theme','field_6176830e2ad17'),(88699,39464,'blocks_3_options',''),(88700,39464,'_blocks_3_options','field_6176830e2ad16'),(88701,39464,'blocks_3_text_block_heading','Learn About Biomechanics in Different Sectors'),(88702,39464,'_blocks_3_text_block_heading','field_617669d413097'),(88703,39464,'blocks_3_text_block_content',''),(88704,39464,'_blocks_3_text_block_content','field_617669ec13098'),(88705,39464,'blocks_4_acfe_flexible_toggle',''),(88706,39464,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(88707,39464,'blocks_4_acfe_flexible_layout_title','Cards'),(88708,39464,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(88709,39464,'blocks_4_options_theme','#ffffff'),(88710,39464,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(88711,39464,'blocks_4_options_format','carousel'),(88712,39464,'_blocks_4_options_format','field_617a7b15245b5'),(88713,39464,'blocks_4_options_style','default'),(88714,39464,'_blocks_4_options_style','field_6278ffb63484a'),(88715,39464,'blocks_4_options_cards_current_listing','0'),(88716,39464,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(88717,39464,'blocks_4_options_cards_content','custom'),(88718,39464,'_blocks_4_options_cards_content','field_617aba6122688'),(88719,39464,'blocks_4_options',''),(88720,39464,'_blocks_4_options','field_617a7b15245b3'),(88721,39464,'blocks_4_cards_custom_0_image','39215'),(88722,39464,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(88723,39464,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(88724,39464,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(88725,39464,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(88726,39464,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(88727,39464,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(88728,39464,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(88729,39464,'blocks_4_cards_custom_1_image','39243'),(88730,39464,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(88731,39464,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(88732,39464,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(88733,39464,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(88734,39464,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(88735,39464,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(88736,39464,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(88737,39464,'blocks_4_cards_custom_2_image','39247'),(88738,39464,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(88739,39464,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(88740,39464,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(88741,39464,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(88742,39464,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(88743,39464,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(88744,39464,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(88745,39464,'blocks_4_cards_custom_3_image','39256'),(88746,39464,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(88747,39464,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(88748,39464,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(88749,39464,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(88750,39464,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(88751,39464,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(88752,39464,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(88753,39464,'blocks_4_cards_custom_4_image','39251'),(88754,39464,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(88755,39464,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(88756,39464,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(88757,39464,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(88758,39464,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(88759,39464,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(88760,39464,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(88761,39464,'blocks_4_cards_custom_5_image','39240'),(88762,39464,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(88763,39464,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(88764,39464,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(88765,39464,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(88766,39464,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(88767,39464,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(88768,39464,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(88769,39464,'blocks_4_cards_custom_6_image','39454'),(88770,39464,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(88771,39464,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(88772,39464,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(88773,39464,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(88774,39464,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(88775,39464,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(88776,39464,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(88777,39464,'blocks_4_cards_custom','7'),(88778,39464,'_blocks_4_cards_custom','field_6194cbf84d386'),(88779,39464,'blocks_5_acfe_flexible_toggle',''),(88780,39464,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(88781,39464,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(88782,39464,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(88783,39464,'blocks_5_options_theme','#f5f5f5'),(88784,39464,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(88785,39464,'blocks_5_options_reverse','1'),(88786,39464,'_blocks_5_options_reverse','field_61768049bb8ac'),(88787,39464,'blocks_5_options',''),(88788,39464,'_blocks_5_options','field_617682517c334'),(88789,39464,'blocks_5_split_5050_image','38960'),(88790,39464,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(88791,39464,'blocks_5_split_5050_video',''),(88792,39464,'_blocks_5_split_5050_video','field_6239f3160848a'),(88793,39464,'blocks_5_split_5050_content_title','Working In Partnership'),(88794,39464,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(88795,39464,'blocks_5_split_5050_content_heading','Biomechanics Education and Future Fit'),(88796,39464,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(88797,39464,'blocks_5_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(88798,39464,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(88799,39464,'blocks_5_split_5050_content_actions',''),(88800,39464,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(88801,39464,'blocks_5_split_5050_content',''),(88802,39464,'_blocks_5_split_5050_content','field_61767afceb8ba'),(88803,39464,'blocks_6_acfe_flexible_toggle',''),(88804,39464,'_blocks_6_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(88805,39464,'blocks_6_acfe_flexible_layout_title','Testimonial Slider'),(88806,39464,'_blocks_6_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(88807,39464,'blocks_6_testimonial_slider_content_title',''),(88808,39464,'_blocks_6_testimonial_slider_content_title','field_617c033b39a60'),(88809,39464,'blocks_6_testimonial_slider_content_heading','Testimonials'),(88810,39464,'_blocks_6_testimonial_slider_content_heading','field_617c033b39a61'),(88811,39464,'blocks_6_testimonial_slider_content_text',''),(88812,39464,'_blocks_6_testimonial_slider_content_text','field_617c033b39a62'),(88813,39464,'blocks_6_testimonial_slider_content_actions',''),(88814,39464,'_blocks_6_testimonial_slider_content_actions','field_617c033b39a63'),(88815,39464,'blocks_6_testimonial_slider_content',''),(88816,39464,'_blocks_6_testimonial_slider_content','field_617c033b39a5f'),(88817,39464,'blocks_6_testimonial_slider_items','a:3:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(88818,39464,'_blocks_6_testimonial_slider_items','field_61812eaeb20eb'),(88819,39464,'blocks_6_testimonial_slider_ambassador_bool','0'),(88820,39464,'_blocks_6_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(88821,39465,'hero_style','default'),(88822,39465,'_hero_style','field_62051d9dc5324'),(88823,39465,'hero_image_pos_x','right'),(88824,39465,'_hero_image_pos_x','field_62ec3d05390bb'),(88825,39465,'hero_image_pos_y','top'),(88826,39465,'_hero_image_pos_y','field_62ec3d05390bc'),(88827,39465,'hero_image_pos',''),(88828,39465,'_hero_image_pos','field_62ec3d05390ba'),(88829,39465,'hero_title','Biomechanics Education'),(88830,39465,'_hero_title','field_617571fe285e8'),(88831,39465,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(88832,39465,'_hero_text','field_6175723c285e9'),(88833,39465,'hero_actions','1'),(88834,39465,'_hero_actions','field_61757270285ea'),(88835,39465,'hero_icon',''),(88836,39465,'_hero_icon','field_61a6182199d03'),(88837,39465,'fft_hide_from_listings','0'),(88838,39465,'_fft_hide_from_listings','field_61f1320446ab2'),(88839,39465,'fft_page_format','default'),(88840,39465,'_fft_page_format','field_61ae213f1f218'),(88841,39465,'fft_hide_nav','0'),(88842,39465,'_fft_hide_nav','field_635bd5e43527c'),(88843,39465,'fft_hide_header_call_to_action','0'),(88844,39465,'_fft_hide_header_call_to_action','field_635bd6723527d'),(88845,39465,'fft_page_sitemap','0'),(88846,39465,'_fft_page_sitemap','field_61af9b34e8181'),(88847,39465,'blocks','a:7:{i:0;s:5:\"video\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:18:\"testimonial_slider\";}'),(88848,39465,'_blocks','field_6176696113096'),(88849,39465,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(88850,39465,'_hero_actions_0_button','field_61757281285eb'),(88851,39465,'_thumbnail_id','38951'),(88852,39465,'__thumbnail_id','field_617570855ddaf'),(88853,39465,'hide_hero','0'),(88854,39465,'_hide_hero','field_66a2380fcda39'),(88855,39465,'blocks_0_acfe_flexible_toggle',''),(88856,39465,'_blocks_0_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(88857,39465,'blocks_0_acfe_flexible_layout_title','Video'),(88858,39465,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(88859,39465,'blocks_0_size','large'),(88860,39465,'_blocks_0_size','field_6487038f297c1'),(88861,39465,'blocks_0_row_content_title',''),(88862,39465,'_blocks_0_row_content_title','field_64870132a865d'),(88863,39465,'blocks_0_row_content_heading','Welcome to Biomechanics Education'),(88864,39465,'_blocks_0_row_content_heading','field_64870142a865e'),(88865,39465,'blocks_0_row_content_text',''),(88866,39465,'_blocks_0_row_content_text','field_64870148a865f'),(88867,39465,'blocks_0_row_content',''),(88868,39465,'_blocks_0_row_content','field_6487008ba865c'),(88869,39465,'blocks_0_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(88870,39465,'_blocks_0_video_src','field_6193c4a98ec07'),(88871,39465,'blocks_0_video_thumbnail','39175'),(88872,39465,'_blocks_0_video_thumbnail','field_6193c4a08ec06'),(88873,39465,'blocks_1_acfe_flexible_toggle',''),(88874,39465,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(88875,39465,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(88876,39465,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(88877,39465,'blocks_1_options_theme','#f5f5f5'),(88878,39465,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(88879,39465,'blocks_1_options_reverse','0'),(88880,39465,'_blocks_1_options_reverse','field_61768049bb8ac'),(88881,39465,'blocks_1_options',''),(88882,39465,'_blocks_1_options','field_617682517c334'),(88883,39465,'blocks_1_split_5050_image','38950'),(88884,39465,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(88885,39465,'blocks_1_split_5050_video',''),(88886,39465,'_blocks_1_split_5050_video','field_6239f3160848a'),(88887,39465,'blocks_1_split_5050_content_title',''),(88888,39465,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(88889,39465,'blocks_1_split_5050_content_heading','What is Biomechanics Education ?'),(88890,39465,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(88891,39465,'blocks_1_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(88892,39465,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(88893,39465,'blocks_1_split_5050_content_actions',''),(88894,39465,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(88895,39465,'blocks_1_split_5050_content',''),(88896,39465,'_blocks_1_split_5050_content','field_61767afceb8ba'),(88897,39465,'blocks_2_acfe_flexible_toggle',''),(88898,39465,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(88899,39465,'blocks_2_acfe_flexible_layout_title','Template'),(88900,39465,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(88901,39465,'blocks_2_template','39087'),(88902,39465,'_blocks_2_template','field_617bdd570fe01'),(88903,39465,'blocks_3_acfe_flexible_toggle',''),(88904,39465,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(88905,39465,'blocks_3_acfe_flexible_layout_title','Text Block'),(88906,39465,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(88907,39465,'blocks_3_options_theme','#ffffff'),(88908,39465,'_blocks_3_options_theme','field_6176830e2ad17'),(88909,39465,'blocks_3_options',''),(88910,39465,'_blocks_3_options','field_6176830e2ad16'),(88911,39465,'blocks_3_text_block_heading','Learn About Biomechanics in Different Sectors'),(88912,39465,'_blocks_3_text_block_heading','field_617669d413097'),(88913,39465,'blocks_3_text_block_content',''),(88914,39465,'_blocks_3_text_block_content','field_617669ec13098'),(88915,39465,'blocks_4_acfe_flexible_toggle',''),(88916,39465,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(88917,39465,'blocks_4_acfe_flexible_layout_title','Cards'),(88918,39465,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(88919,39465,'blocks_4_options_theme','#ffffff'),(88920,39465,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(88921,39465,'blocks_4_options_format','carousel'),(88922,39465,'_blocks_4_options_format','field_617a7b15245b5'),(88923,39465,'blocks_4_options_style','default'),(88924,39465,'_blocks_4_options_style','field_6278ffb63484a'),(88925,39465,'blocks_4_options_cards_current_listing','0'),(88926,39465,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(88927,39465,'blocks_4_options_cards_content','custom'),(88928,39465,'_blocks_4_options_cards_content','field_617aba6122688'),(88929,39465,'blocks_4_options',''),(88930,39465,'_blocks_4_options','field_617a7b15245b3'),(88931,39465,'blocks_4_cards_custom_0_image','39215'),(88932,39465,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(88933,39465,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(88934,39465,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(88935,39465,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(88936,39465,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(88937,39465,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(88938,39465,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(88939,39465,'blocks_4_cards_custom_1_image','39243'),(88940,39465,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(88941,39465,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(88942,39465,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(88943,39465,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(88944,39465,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(88945,39465,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(88946,39465,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(88947,39465,'blocks_4_cards_custom_2_image','39247'),(88948,39465,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(88949,39465,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(88950,39465,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(88951,39465,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(88952,39465,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(88953,39465,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(88954,39465,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(88955,39465,'blocks_4_cards_custom_3_image','39256'),(88956,39465,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(88957,39465,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(88958,39465,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(88959,39465,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(88960,39465,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(88961,39465,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(88962,39465,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(88963,39465,'blocks_4_cards_custom_4_image','39251'),(88964,39465,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(88965,39465,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(88966,39465,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(88967,39465,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(88968,39465,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(88969,39465,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(88970,39465,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(88971,39465,'blocks_4_cards_custom_5_image','39240'),(88972,39465,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(88973,39465,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(88974,39465,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(88975,39465,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(88976,39465,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(88977,39465,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(88978,39465,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(88979,39465,'blocks_4_cards_custom_6_image','39454'),(88980,39465,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(88981,39465,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(88982,39465,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(88983,39465,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(88984,39465,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(88985,39465,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(88986,39465,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(88987,39465,'blocks_4_cards_custom','7'),(88988,39465,'_blocks_4_cards_custom','field_6194cbf84d386'),(88989,39465,'blocks_5_acfe_flexible_toggle',''),(88990,39465,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(88991,39465,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(88992,39465,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(88993,39465,'blocks_5_options_theme','#f5f5f5'),(88994,39465,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(88995,39465,'blocks_5_options_reverse','1'),(88996,39465,'_blocks_5_options_reverse','field_61768049bb8ac'),(88997,39465,'blocks_5_options',''),(88998,39465,'_blocks_5_options','field_617682517c334'),(88999,39465,'blocks_5_split_5050_image','38960'),(89000,39465,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(89001,39465,'blocks_5_split_5050_video',''),(89002,39465,'_blocks_5_split_5050_video','field_6239f3160848a'),(89003,39465,'blocks_5_split_5050_content_title','Working In Partnership'),(89004,39465,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(89005,39465,'blocks_5_split_5050_content_heading','Biomechanics Education and Future Fit'),(89006,39465,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(89007,39465,'blocks_5_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(89008,39465,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(89009,39465,'blocks_5_split_5050_content_actions',''),(89010,39465,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(89011,39465,'blocks_5_split_5050_content',''),(89012,39465,'_blocks_5_split_5050_content','field_61767afceb8ba'),(89013,39465,'blocks_6_acfe_flexible_toggle',''),(89014,39465,'_blocks_6_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(89015,39465,'blocks_6_acfe_flexible_layout_title','Testimonial Slider'),(89016,39465,'_blocks_6_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(89017,39465,'blocks_6_testimonial_slider_content_title',''),(89018,39465,'_blocks_6_testimonial_slider_content_title','field_617c033b39a60'),(89019,39465,'blocks_6_testimonial_slider_content_heading','Testimonials'),(89020,39465,'_blocks_6_testimonial_slider_content_heading','field_617c033b39a61'),(89021,39465,'blocks_6_testimonial_slider_content_text',''),(89022,39465,'_blocks_6_testimonial_slider_content_text','field_617c033b39a62'),(89023,39465,'blocks_6_testimonial_slider_content_actions',''),(89024,39465,'_blocks_6_testimonial_slider_content_actions','field_617c033b39a63'),(89025,39465,'blocks_6_testimonial_slider_content',''),(89026,39465,'_blocks_6_testimonial_slider_content','field_617c033b39a5f'),(89027,39465,'blocks_6_testimonial_slider_items','a:6:{i:0;s:5:\"38962\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";i:3;s:5:\"39168\";i:4;s:5:\"39170\";i:5;s:5:\"39169\";}'),(89028,39465,'_blocks_6_testimonial_slider_items','field_61812eaeb20eb'),(89029,39465,'blocks_6_testimonial_slider_ambassador_bool','0'),(89030,39465,'_blocks_6_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(89031,7,'_yoast_wpseo_focuskw','Biomechanics Education'),(89032,7,'_yoast_wpseo_linkdex','39'),(89037,39466,'hide_hero','0'),(89038,39466,'_hide_hero','field_66a2380fcda39'),(89039,39466,'hero_title','Our Partners'),(89040,39466,'_hero_title','field_617571fe285e8'),(89041,39466,'hero_text','Discover our partners'),(89042,39466,'_hero_text','field_6175723c285e9'),(89043,39466,'hero_actions','1'),(89044,39466,'_hero_actions','field_61757270285ea'),(89045,39466,'hero_style','default'),(89046,39466,'_hero_style','field_62051d9dc5324'),(89047,39466,'hero_image_pos_x','right'),(89048,39466,'_hero_image_pos_x','field_62ec3d05390bb'),(89049,39466,'hero_image_pos_y','top'),(89050,39466,'_hero_image_pos_y','field_62ec3d05390bc'),(89051,39466,'hero_image_pos',''),(89052,39466,'_hero_image_pos','field_62ec3d05390ba'),(89053,39466,'fft_hide_from_listings','0'),(89054,39466,'_fft_hide_from_listings','field_61f1320446ab2'),(89055,39466,'fft_page_format','default'),(89056,39466,'_fft_page_format','field_61ae213f1f218'),(89057,39466,'fft_hide_nav','0'),(89058,39466,'_fft_hide_nav','field_635bd5e43527c'),(89059,39466,'fft_hide_header_call_to_action','0'),(89060,39466,'_fft_hide_header_call_to_action','field_635bd6723527d'),(89061,39466,'fft_page_sitemap','0'),(89062,39466,'_fft_page_sitemap','field_61af9b34e8181'),(89063,39466,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:16:\"standard_content\";i:3;s:18:\"testimonial_slider\";}'),(89064,39466,'_blocks','field_6176696113096'),(89065,39466,'blocks_0_acfe_flexible_toggle',''),(89066,39466,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(89067,39466,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(89068,39466,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(89069,39466,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>'),(89070,39466,'_blocks_0_content','field_6193c9b5eac84'),(89071,39466,'blocks_1_acfe_flexible_toggle',''),(89072,39466,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(89073,39466,'blocks_1_acfe_flexible_layout_title','Logos'),(89074,39466,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(89075,39466,'blocks_1_options_theme','#ffffff'),(89076,39466,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(89077,39466,'blocks_1_options_format','carousel'),(89078,39466,'_blocks_1_options_format','field_61782964ee971'),(89079,39466,'blocks_1_options',''),(89080,39466,'_blocks_1_options','field_61782954ee965'),(89081,39466,'blocks_1_logos','a:10:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39296\";i:6;s:5:\"39297\";i:7;s:5:\"39300\";i:8;s:5:\"39304\";i:9;s:5:\"39306\";}'),(89082,39466,'_blocks_1_logos','field_61782954ee96d'),(89083,39466,'blocks_1_title',''),(89084,39466,'_blocks_1_title','field_668fbfdc2daa1'),(89085,39466,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-4\";s:6:\"target\";s:0:\"\";}'),(89086,39466,'_hero_actions_0_button','field_61757281285eb'),(89087,39466,'blocks_2_acfe_flexible_toggle',''),(89088,39466,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(89089,39466,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(89090,39466,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(89091,39466,'blocks_2_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(89092,39466,'_blocks_2_content','field_6193c9b5eac84'),(89093,39466,'blocks_3_acfe_flexible_toggle',''),(89094,39466,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(89095,39466,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(89096,39466,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(89097,39466,'blocks_3_testimonial_slider_content_title',''),(89098,39466,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(89099,39466,'blocks_3_testimonial_slider_content_heading','Testimonials'),(89100,39466,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(89101,39466,'blocks_3_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(89102,39466,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(89103,39466,'blocks_3_testimonial_slider_content_actions',''),(89104,39466,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(89105,39466,'blocks_3_testimonial_slider_content',''),(89106,39466,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(89107,39466,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(89108,39466,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(89109,39466,'blocks_3_testimonial_slider_ambassador_bool','0'),(89110,39466,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(89111,39466,'_thumbnail_id',''),(89112,39466,'__thumbnail_id','field_617570855ddaf'),(89113,38964,'hide_hero','0'),(89114,38964,'_hide_hero','field_66a2380fcda39'),(89116,39148,'hide_hero','0'),(89117,39148,'_hide_hero','field_66a2380fcda39'),(89217,39467,'hero_style','default'),(89218,39467,'_hero_style','field_62051d9dc5324'),(89219,39467,'hero_image_pos_x','right'),(89220,39467,'_hero_image_pos_x','field_62ec3d05390bb'),(89221,39467,'hero_image_pos_y','top'),(89222,39467,'_hero_image_pos_y','field_62ec3d05390bc'),(89223,39467,'hero_image_pos',''),(89224,39467,'_hero_image_pos','field_62ec3d05390ba'),(89225,39467,'hero_title','Getting Started'),(89226,39467,'_hero_title','field_617571fe285e8'),(89227,39467,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and more for informed movement choices.'),(89228,39467,'_hero_text','field_6175723c285e9'),(89229,39467,'hero_actions',''),(89230,39467,'_hero_actions','field_61757270285ea'),(89231,39467,'hero_icon','bars'),(89232,39467,'_hero_icon','field_61a6182199d03'),(89233,39467,'fft_hide_from_listings','0'),(89234,39467,'_fft_hide_from_listings','field_61f1320446ab2'),(89235,39467,'fft_page_format','default'),(89236,39467,'_fft_page_format','field_61ae213f1f218'),(89237,39467,'fft_hide_nav','0'),(89238,39467,'_fft_hide_nav','field_635bd5e43527c'),(89239,39467,'fft_hide_header_call_to_action','0'),(89240,39467,'_fft_hide_header_call_to_action','field_635bd6723527d'),(89241,39467,'fft_page_sitemap','0'),(89242,39467,'_fft_page_sitemap','field_61af9b34e8181'),(89243,39467,'blocks','a:3:{i:0;s:10:\"split_5050\";i:1;s:5:\"cards\";i:2;s:4:\"form\";}'),(89244,39467,'_blocks','field_6176696113096'),(89245,39467,'blocks_2_acfe_flexible_toggle',''),(89246,39467,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(89247,39467,'blocks_2_acfe_flexible_layout_title','Form'),(89248,39467,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(89249,39467,'blocks_2_row_content_format','standard'),(89250,39467,'_blocks_2_row_content_format','field_6481ead962881'),(89251,39467,'blocks_2_row_content_title','Ready to get started ?'),(89252,39467,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(89253,39467,'blocks_2_row_content_heading','Ready to get started ?'),(89254,39467,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(89255,39467,'blocks_2_row_content_text','Complete The Form to Get Your Free Price Guide'),(89256,39467,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(89257,39467,'blocks_2_row_content_actions',''),(89258,39467,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(89259,39467,'blocks_2_row_content',''),(89260,39467,'_blocks_2_row_content','field_61a0f5f5b3db0'),(89261,39467,'blocks_2_row_form',''),(89262,39467,'_blocks_2_row_form','field_61a4ff2c0b08e'),(89263,39467,'blocks_2_row_form_button_label',''),(89264,39467,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(89265,39467,'hide_hero','0'),(89266,39467,'_hide_hero','field_66a2380fcda39'),(89267,39467,'_thumbnail_id',''),(89268,39467,'__thumbnail_id','field_617570855ddaf'),(89269,39467,'blocks_0_acfe_flexible_toggle',''),(89270,39467,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(89271,39467,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(89272,39467,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(89273,39467,'blocks_0_options_theme','#ffffff'),(89274,39467,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(89275,39467,'blocks_0_options_reverse','0'),(89276,39467,'_blocks_0_options_reverse','field_61768049bb8ac'),(89277,39467,'blocks_0_options',''),(89278,39467,'_blocks_0_options','field_617682517c334'),(89279,39467,'blocks_0_split_5050_image','39152'),(89280,39467,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(89281,39467,'blocks_0_split_5050_video',''),(89282,39467,'_blocks_0_split_5050_video','field_6239f3160848a'),(89283,39467,'blocks_0_split_5050_content_title',''),(89284,39467,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(89285,39467,'blocks_0_split_5050_content_heading','About our career guides'),(89286,39467,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(89287,39467,'blocks_0_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and multiple UK workshop locations. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(89288,39467,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(89289,39467,'blocks_0_split_5050_content_actions',''),(89290,39467,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(89291,39467,'blocks_0_split_5050_content',''),(89292,39467,'_blocks_0_split_5050_content','field_61767afceb8ba'),(89293,39467,'blocks_1_acfe_flexible_toggle',''),(89294,39467,'_blocks_1_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(89295,39467,'blocks_1_acfe_flexible_layout_title','Cards'),(89296,39467,'_blocks_1_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(89297,39467,'blocks_1_options_theme','#ffffff'),(89298,39467,'_blocks_1_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(89299,39467,'blocks_1_options_format','carousel'),(89300,39467,'_blocks_1_options_format','field_617a7b15245b5'),(89301,39467,'blocks_1_options_style','default'),(89302,39467,'_blocks_1_options_style','field_6278ffb63484a'),(89303,39467,'blocks_1_options_cards_current_listing','0'),(89304,39467,'_blocks_1_options_cards_current_listing','field_6193d7effb7a4'),(89305,39467,'blocks_1_options_cards_content','custom'),(89306,39467,'_blocks_1_options_cards_content','field_617aba6122688'),(89307,39467,'blocks_1_options',''),(89308,39467,'_blocks_1_options','field_617a7b15245b3'),(89309,39467,'blocks_1_cards_custom_0_image','39215'),(89310,39467,'_blocks_1_cards_custom_0_image','field_6194cc284d387'),(89311,39467,'blocks_1_cards_custom_0_title','Biomechanics and Personal Training'),(89312,39467,'_blocks_1_cards_custom_0_title','field_6194cc454d388'),(89313,39467,'blocks_1_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(89314,39467,'_blocks_1_cards_custom_0_text','field_6194cc4a4d389'),(89315,39467,'blocks_1_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(89316,39467,'_blocks_1_cards_custom_0_link','field_6194cc534d38a'),(89317,39467,'blocks_1_cards_custom_1_image','39243'),(89318,39467,'_blocks_1_cards_custom_1_image','field_6194cc284d387'),(89319,39467,'blocks_1_cards_custom_1_title','Biomechanics and Pilates'),(89320,39467,'_blocks_1_cards_custom_1_title','field_6194cc454d388'),(89321,39467,'blocks_1_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(89322,39467,'_blocks_1_cards_custom_1_text','field_6194cc4a4d389'),(89323,39467,'blocks_1_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(89324,39467,'_blocks_1_cards_custom_1_link','field_6194cc534d38a'),(89325,39467,'blocks_1_cards_custom_2_image','39247'),(89326,39467,'_blocks_1_cards_custom_2_image','field_6194cc284d387'),(89327,39467,'blocks_1_cards_custom_2_title','Biomechanics and Podiatrists'),(89328,39467,'_blocks_1_cards_custom_2_title','field_6194cc454d388'),(89329,39467,'blocks_1_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(89330,39467,'_blocks_1_cards_custom_2_text','field_6194cc4a4d389'),(89331,39467,'blocks_1_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(89332,39467,'_blocks_1_cards_custom_2_link','field_6194cc534d38a'),(89333,39467,'blocks_1_cards_custom_3_image','39256'),(89334,39467,'_blocks_1_cards_custom_3_image','field_6194cc284d387'),(89335,39467,'blocks_1_cards_custom_3_title','Biomechanics and S&C coaches'),(89336,39467,'_blocks_1_cards_custom_3_title','field_6194cc454d388'),(89337,39467,'blocks_1_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(89338,39467,'_blocks_1_cards_custom_3_text','field_6194cc4a4d389'),(89339,39467,'blocks_1_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(89340,39467,'_blocks_1_cards_custom_3_link','field_6194cc534d38a'),(89341,39467,'blocks_1_cards_custom_4_image','39251'),(89342,39467,'_blocks_1_cards_custom_4_image','field_6194cc284d387'),(89343,39467,'blocks_1_cards_custom_4_title','Biomechanics and Sports Coaches'),(89344,39467,'_blocks_1_cards_custom_4_title','field_6194cc454d388'),(89345,39467,'blocks_1_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(89346,39467,'_blocks_1_cards_custom_4_text','field_6194cc4a4d389'),(89347,39467,'blocks_1_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(89348,39467,'_blocks_1_cards_custom_4_link','field_6194cc534d38a'),(89349,39467,'blocks_1_cards_custom_5_image','39240'),(89350,39467,'_blocks_1_cards_custom_5_image','field_6194cc284d387'),(89351,39467,'blocks_1_cards_custom_5_title','Biomechanics and Sports Massage'),(89352,39467,'_blocks_1_cards_custom_5_title','field_6194cc454d388'),(89353,39467,'blocks_1_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(89354,39467,'_blocks_1_cards_custom_5_text','field_6194cc4a4d389'),(89355,39467,'blocks_1_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(89356,39467,'_blocks_1_cards_custom_5_link','field_6194cc534d38a'),(89357,39467,'blocks_1_cards_custom_6_image','39260'),(89358,39467,'_blocks_1_cards_custom_6_image','field_6194cc284d387'),(89359,39467,'blocks_1_cards_custom_6_title','How to Become a Biomechanics Coach'),(89360,39467,'_blocks_1_cards_custom_6_title','field_6194cc454d388'),(89361,39467,'blocks_1_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(89362,39467,'_blocks_1_cards_custom_6_text','field_6194cc4a4d389'),(89363,39467,'blocks_1_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(89364,39467,'_blocks_1_cards_custom_6_link','field_6194cc534d38a'),(89365,39467,'blocks_1_cards_custom','7'),(89366,39467,'_blocks_1_cards_custom','field_6194cbf84d386'),(89474,39468,'hero_style','default'),(89475,39468,'_hero_style','field_62051d9dc5324'),(89476,39468,'hero_image_pos_x','right'),(89477,39468,'_hero_image_pos_x','field_62ec3d05390bb'),(89478,39468,'hero_image_pos_y','top'),(89479,39468,'_hero_image_pos_y','field_62ec3d05390bc'),(89480,39468,'hero_image_pos',''),(89481,39468,'_hero_image_pos','field_62ec3d05390ba'),(89482,39468,'hero_title','Getting Started'),(89483,39468,'_hero_title','field_617571fe285e8'),(89484,39468,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and more for informed movement choices.'),(89485,39468,'_hero_text','field_6175723c285e9'),(89486,39468,'hero_actions',''),(89487,39468,'_hero_actions','field_61757270285ea'),(89488,39468,'hero_icon','bars'),(89489,39468,'_hero_icon','field_61a6182199d03'),(89490,39468,'fft_hide_from_listings','0'),(89491,39468,'_fft_hide_from_listings','field_61f1320446ab2'),(89492,39468,'fft_page_format','default'),(89493,39468,'_fft_page_format','field_61ae213f1f218'),(89494,39468,'fft_hide_nav','0'),(89495,39468,'_fft_hide_nav','field_635bd5e43527c'),(89496,39468,'fft_hide_header_call_to_action','0'),(89497,39468,'_fft_hide_header_call_to_action','field_635bd6723527d'),(89498,39468,'fft_page_sitemap','0'),(89499,39468,'_fft_page_sitemap','field_61af9b34e8181'),(89500,39468,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:10:\"text_block\";i:2;s:5:\"cards\";i:3;s:4:\"form\";}'),(89501,39468,'_blocks','field_6176696113096'),(89502,39468,'hide_hero','0'),(89503,39468,'_hide_hero','field_66a2380fcda39'),(89504,39468,'blocks_0_acfe_flexible_toggle',''),(89505,39468,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(89506,39468,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(89507,39468,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(89508,39468,'blocks_0_options_theme','#ffffff'),(89509,39468,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(89510,39468,'blocks_0_options_reverse','0'),(89511,39468,'_blocks_0_options_reverse','field_61768049bb8ac'),(89512,39468,'blocks_0_options',''),(89513,39468,'_blocks_0_options','field_617682517c334'),(89514,39468,'blocks_0_split_5050_image','39152'),(89515,39468,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(89516,39468,'blocks_0_split_5050_video',''),(89517,39468,'_blocks_0_split_5050_video','field_6239f3160848a'),(89518,39468,'blocks_0_split_5050_content_title',''),(89519,39468,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(89520,39468,'blocks_0_split_5050_content_heading','About our career guides'),(89521,39468,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(89522,39468,'blocks_0_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and multiple UK workshop locations. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(89523,39468,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(89524,39468,'blocks_0_split_5050_content_actions',''),(89525,39468,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(89526,39468,'blocks_0_split_5050_content',''),(89527,39468,'_blocks_0_split_5050_content','field_61767afceb8ba'),(89528,39468,'_thumbnail_id',''),(89529,39468,'__thumbnail_id','field_617570855ddaf'),(89530,39468,'blocks_1_acfe_flexible_toggle',''),(89531,39468,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(89532,39468,'blocks_1_acfe_flexible_layout_title','Text Block'),(89533,39468,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(89534,39468,'blocks_1_options_theme','#ffffff'),(89535,39468,'_blocks_1_options_theme','field_6176830e2ad17'),(89536,39468,'blocks_1_options',''),(89537,39468,'_blocks_1_options','field_6176830e2ad16'),(89538,39468,'blocks_1_text_block_heading','Learn More About Biomechanics in Different Sectors'),(89539,39468,'_blocks_1_text_block_heading','field_617669d413097'),(89540,39468,'blocks_1_text_block_content',''),(89541,39468,'_blocks_1_text_block_content','field_617669ec13098'),(89542,39468,'blocks_2_acfe_flexible_toggle',''),(89543,39468,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(89544,39468,'blocks_2_acfe_flexible_layout_title','Cards'),(89545,39468,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(89546,39468,'blocks_2_options_theme','#ffffff'),(89547,39468,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(89548,39468,'blocks_2_options_format','carousel'),(89549,39468,'_blocks_2_options_format','field_617a7b15245b5'),(89550,39468,'blocks_2_options_style','default'),(89551,39468,'_blocks_2_options_style','field_6278ffb63484a'),(89552,39468,'blocks_2_options_cards_current_listing','0'),(89553,39468,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(89554,39468,'blocks_2_options_cards_content','custom'),(89555,39468,'_blocks_2_options_cards_content','field_617aba6122688'),(89556,39468,'blocks_2_options',''),(89557,39468,'_blocks_2_options','field_617a7b15245b3'),(89558,39468,'blocks_2_cards_custom_0_image','39215'),(89559,39468,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(89560,39468,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(89561,39468,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(89562,39468,'blocks_2_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(89563,39468,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(89564,39468,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(89565,39468,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(89566,39468,'blocks_2_cards_custom_1_image','39243'),(89567,39468,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(89568,39468,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(89569,39468,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(89570,39468,'blocks_2_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(89571,39468,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(89572,39468,'blocks_2_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(89573,39468,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(89574,39468,'blocks_2_cards_custom_2_image','39247'),(89575,39468,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(89576,39468,'blocks_2_cards_custom_2_title','Biomechanics and Podiatrists'),(89577,39468,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(89578,39468,'blocks_2_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(89579,39468,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(89580,39468,'blocks_2_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(89581,39468,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(89582,39468,'blocks_2_cards_custom_3_image','39256'),(89583,39468,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(89584,39468,'blocks_2_cards_custom_3_title','Biomechanics and S&C coaches'),(89585,39468,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(89586,39468,'blocks_2_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(89587,39468,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(89588,39468,'blocks_2_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(89589,39468,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(89590,39468,'blocks_2_cards_custom_4_image','39251'),(89591,39468,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(89592,39468,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches'),(89593,39468,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(89594,39468,'blocks_2_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(89595,39468,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(89596,39468,'blocks_2_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(89597,39468,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(89598,39468,'blocks_2_cards_custom_5_image','39240'),(89599,39468,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(89600,39468,'blocks_2_cards_custom_5_title','Biomechanics and Sports Massage'),(89601,39468,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(89602,39468,'blocks_2_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(89603,39468,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(89604,39468,'blocks_2_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(89605,39468,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(89606,39468,'blocks_2_cards_custom_6_image','39260'),(89607,39468,'_blocks_2_cards_custom_6_image','field_6194cc284d387'),(89608,39468,'blocks_2_cards_custom_6_title','How to Become a Biomechanics Coach'),(89609,39468,'_blocks_2_cards_custom_6_title','field_6194cc454d388'),(89610,39468,'blocks_2_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(89611,39468,'_blocks_2_cards_custom_6_text','field_6194cc4a4d389'),(89612,39468,'blocks_2_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(89613,39468,'_blocks_2_cards_custom_6_link','field_6194cc534d38a'),(89614,39468,'blocks_2_cards_custom','7'),(89615,39468,'_blocks_2_cards_custom','field_6194cbf84d386'),(89616,39468,'blocks_3_acfe_flexible_toggle',''),(89617,39468,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(89618,39468,'blocks_3_acfe_flexible_layout_title','Form'),(89619,39468,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(89620,39468,'blocks_3_row_content_format','standard'),(89621,39468,'_blocks_3_row_content_format','field_6481ead962881'),(89622,39468,'blocks_3_row_content_title','Ready to get started ?'),(89623,39468,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(89624,39468,'blocks_3_row_content_heading','Ready to get started ?'),(89625,39468,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(89626,39468,'blocks_3_row_content_text','Complete The Form to Get Your Free Price Guide'),(89627,39468,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(89628,39468,'blocks_3_row_content_actions',''),(89629,39468,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(89630,39468,'blocks_3_row_content',''),(89631,39468,'_blocks_3_row_content','field_61a0f5f5b3db0'),(89632,39468,'blocks_3_row_form',''),(89633,39468,'_blocks_3_row_form','field_61a4ff2c0b08e'),(89634,39468,'blocks_3_row_form_button_label',''),(89635,39468,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(89636,39469,'hide_hero','0'),(89637,39469,'_hide_hero','field_66a2380fcda39'),(89638,39469,'hero_title','Getting Started'),(89639,39469,'_hero_title','field_617571fe285e8'),(89640,39469,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and more for informed movement choices.'),(89641,39469,'_hero_text','field_6175723c285e9'),(89642,39469,'hero_actions',''),(89643,39469,'_hero_actions','field_61757270285ea'),(89644,39469,'hero_style','default'),(89645,39469,'_hero_style','field_62051d9dc5324'),(89646,39469,'_thumbnail_id',''),(89647,39469,'__thumbnail_id','field_617570855ddaf'),(89648,39469,'hero_image_pos_x','right'),(89649,39469,'_hero_image_pos_x','field_62ec3d05390bb'),(89650,39469,'hero_image_pos_y','top'),(89651,39469,'_hero_image_pos_y','field_62ec3d05390bc'),(89652,39469,'hero_image_pos',''),(89653,39469,'_hero_image_pos','field_62ec3d05390ba'),(89654,39469,'fft_hide_from_listings','0'),(89655,39469,'_fft_hide_from_listings','field_61f1320446ab2'),(89656,39469,'fft_page_format','default'),(89657,39469,'_fft_page_format','field_61ae213f1f218'),(89658,39469,'fft_hide_nav','0'),(89659,39469,'_fft_hide_nav','field_635bd5e43527c'),(89660,39469,'fft_hide_header_call_to_action','0'),(89661,39469,'_fft_hide_header_call_to_action','field_635bd6723527d'),(89662,39469,'fft_page_sitemap','0'),(89663,39469,'_fft_page_sitemap','field_61af9b34e8181'),(89664,39469,'blocks_0_acfe_flexible_toggle',''),(89665,39469,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(89666,39469,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(89667,39469,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(89668,39469,'blocks_0_options_theme','#ffffff'),(89669,39469,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(89670,39469,'blocks_0_options_reverse','0'),(89671,39469,'_blocks_0_options_reverse','field_61768049bb8ac'),(89672,39469,'blocks_0_options',''),(89673,39469,'_blocks_0_options','field_617682517c334'),(89674,39469,'blocks_0_split_5050_image','39152'),(89675,39469,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(89676,39469,'blocks_0_split_5050_video',''),(89677,39469,'_blocks_0_split_5050_video','field_6239f3160848a'),(89678,39469,'blocks_0_split_5050_content_title',''),(89679,39469,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(89680,39469,'blocks_0_split_5050_content_heading','About our career guides'),(89681,39469,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(89682,39469,'blocks_0_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and multiple UK workshop locations. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(89683,39469,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(89684,39469,'blocks_0_split_5050_content_actions',''),(89685,39469,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(89686,39469,'blocks_0_split_5050_content',''),(89687,39469,'_blocks_0_split_5050_content','field_61767afceb8ba'),(89688,39469,'blocks_1_acfe_flexible_toggle',''),(89689,39469,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(89690,39469,'blocks_1_acfe_flexible_layout_title','Text Block'),(89691,39469,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(89692,39469,'blocks_1_options_theme','#ffffff'),(89693,39469,'_blocks_1_options_theme','field_6176830e2ad17'),(89694,39469,'blocks_1_options',''),(89695,39469,'_blocks_1_options','field_6176830e2ad16'),(89696,39469,'blocks_1_text_block_heading','Learn More About Biomechanics in Different Sectors'),(89697,39469,'_blocks_1_text_block_heading','field_617669d413097'),(89698,39469,'blocks_1_text_block_content',''),(89699,39469,'_blocks_1_text_block_content','field_617669ec13098'),(89700,39469,'blocks_2_acfe_flexible_toggle',''),(89701,39469,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(89702,39469,'blocks_2_acfe_flexible_layout_title','Cards'),(89703,39469,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(89704,39469,'blocks_2_options_theme','#ffffff'),(89705,39469,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(89706,39469,'blocks_2_options_format','carousel'),(89707,39469,'_blocks_2_options_format','field_617a7b15245b5'),(89708,39469,'blocks_2_options_style','default'),(89709,39469,'_blocks_2_options_style','field_6278ffb63484a'),(89710,39469,'blocks_2_options_cards_current_listing','0'),(89711,39469,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(89712,39469,'blocks_2_options_cards_content','custom'),(89713,39469,'_blocks_2_options_cards_content','field_617aba6122688'),(89714,39469,'blocks_2_options',''),(89715,39469,'_blocks_2_options','field_617a7b15245b3'),(89716,39469,'blocks_2_cards_custom_0_image','39215'),(89717,39469,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(89718,39469,'blocks_2_cards_custom_0_title','Biomechanics and Personal Training'),(89719,39469,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(89720,39469,'blocks_2_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(89721,39469,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(89722,39469,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(89723,39469,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(89724,39469,'blocks_2_cards_custom_1_image','39243'),(89725,39469,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(89726,39469,'blocks_2_cards_custom_1_title','Biomechanics and Pilates'),(89727,39469,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(89728,39469,'blocks_2_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(89729,39469,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(89730,39469,'blocks_2_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(89731,39469,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(89732,39469,'blocks_2_cards_custom_2_image','39247'),(89733,39469,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(89734,39469,'blocks_2_cards_custom_2_title','Biomechanics and Podiatrists'),(89735,39469,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(89736,39469,'blocks_2_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(89737,39469,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(89738,39469,'blocks_2_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(89739,39469,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(89740,39469,'blocks_2_cards_custom_3_image','39256'),(89741,39469,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(89742,39469,'blocks_2_cards_custom_3_title','Biomechanics and S&C coaches'),(89743,39469,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(89744,39469,'blocks_2_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(89745,39469,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(89746,39469,'blocks_2_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(89747,39469,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(89748,39469,'blocks_2_cards_custom_4_image','39251'),(89749,39469,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(89750,39469,'blocks_2_cards_custom_4_title','Biomechanics and Sports Coaches'),(89751,39469,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(89752,39469,'blocks_2_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(89753,39469,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(89754,39469,'blocks_2_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(89755,39469,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(89756,39469,'blocks_2_cards_custom_5_image','39240'),(89757,39469,'_blocks_2_cards_custom_5_image','field_6194cc284d387'),(89758,39469,'blocks_2_cards_custom_5_title','Biomechanics and Sports Massage'),(89759,39469,'_blocks_2_cards_custom_5_title','field_6194cc454d388'),(89760,39469,'blocks_2_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(89761,39469,'_blocks_2_cards_custom_5_text','field_6194cc4a4d389'),(89762,39469,'blocks_2_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(89763,39469,'_blocks_2_cards_custom_5_link','field_6194cc534d38a'),(89764,39469,'blocks_2_cards_custom_6_image','39260'),(89765,39469,'_blocks_2_cards_custom_6_image','field_6194cc284d387'),(89766,39469,'blocks_2_cards_custom_6_title','How to Become a Biomechanics Coach'),(89767,39469,'_blocks_2_cards_custom_6_title','field_6194cc454d388'),(89768,39469,'blocks_2_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(89769,39469,'_blocks_2_cards_custom_6_text','field_6194cc4a4d389'),(89770,39469,'blocks_2_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(89771,39469,'_blocks_2_cards_custom_6_link','field_6194cc534d38a'),(89772,39469,'blocks_2_cards_custom','7'),(89773,39469,'_blocks_2_cards_custom','field_6194cbf84d386'),(89774,39469,'blocks_3_acfe_flexible_toggle',''),(89775,39469,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(89776,39469,'blocks_3_acfe_flexible_layout_title','Form'),(89777,39469,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(89778,39469,'blocks_3_row_content_format','standard'),(89779,39469,'_blocks_3_row_content_format','field_6481ead962881'),(89780,39469,'blocks_3_row_content_title','Ready to get started ?'),(89781,39469,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(89782,39469,'blocks_3_row_content_heading','Ready to get started ?'),(89783,39469,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(89784,39469,'blocks_3_row_content_text','Complete The Form to Get Your Free Price Guide'),(89785,39469,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(89786,39469,'blocks_3_row_content_actions',''),(89787,39469,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(89788,39469,'blocks_3_row_content',''),(89789,39469,'_blocks_3_row_content','field_61a0f5f5b3db0'),(89790,39469,'blocks_3_row_form',''),(89791,39469,'_blocks_3_row_form','field_61a4ff2c0b08e'),(89792,39469,'blocks_3_row_form_button_label',''),(89793,39469,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(89794,39469,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:10:\"text_block\";i:2;s:5:\"cards\";i:3;s:4:\"form\";}'),(89795,39469,'_blocks','field_6176696113096'),(89796,39469,'hero_icon','bars'),(89797,39469,'_hero_icon','field_61a6182199d03'),(89911,39470,'hero_style','default'),(89912,39470,'_hero_style','field_62051d9dc5324'),(89913,39470,'hero_image_pos_x','right'),(89914,39470,'_hero_image_pos_x','field_62ec3d05390bb'),(89915,39470,'hero_image_pos_y','top'),(89916,39470,'_hero_image_pos_y','field_62ec3d05390bc'),(89917,39470,'hero_image_pos',''),(89918,39470,'_hero_image_pos','field_62ec3d05390ba'),(89919,39470,'hero_title','Getting Started'),(89920,39470,'_hero_title','field_617571fe285e8'),(89921,39470,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and more for informed movement choices.'),(89922,39470,'_hero_text','field_6175723c285e9'),(89923,39470,'hero_actions',''),(89924,39470,'_hero_actions','field_61757270285ea'),(89925,39470,'hero_icon','bars'),(89926,39470,'_hero_icon','field_61a6182199d03'),(89927,39470,'fft_hide_from_listings','0'),(89928,39470,'_fft_hide_from_listings','field_61f1320446ab2'),(89929,39470,'fft_page_format','default'),(89930,39470,'_fft_page_format','field_61ae213f1f218'),(89931,39470,'fft_hide_nav','0'),(89932,39470,'_fft_hide_nav','field_635bd5e43527c'),(89933,39470,'fft_hide_header_call_to_action','0'),(89934,39470,'_fft_hide_header_call_to_action','field_635bd6723527d'),(89935,39470,'fft_page_sitemap','0'),(89936,39470,'_fft_page_sitemap','field_61af9b34e8181'),(89937,39470,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:4:\"form\";}'),(89938,39470,'_blocks','field_6176696113096'),(89939,39470,'hide_hero','0'),(89940,39470,'_hide_hero','field_66a2380fcda39'),(89941,39470,'blocks_0_acfe_flexible_toggle',''),(89942,39470,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(89943,39470,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(89944,39470,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(89945,39470,'blocks_0_options_theme','#ffffff'),(89946,39470,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(89947,39470,'blocks_0_options_reverse','0'),(89948,39470,'_blocks_0_options_reverse','field_61768049bb8ac'),(89949,39470,'blocks_0_options',''),(89950,39470,'_blocks_0_options','field_617682517c334'),(89951,39470,'blocks_0_split_5050_image','39152'),(89952,39470,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(89953,39470,'blocks_0_split_5050_video',''),(89954,39470,'_blocks_0_split_5050_video','field_6239f3160848a'),(89955,39470,'blocks_0_split_5050_content_title',''),(89956,39470,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(89957,39470,'blocks_0_split_5050_content_heading','About our career guides'),(89958,39470,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(89959,39470,'blocks_0_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and multiple UK workshop locations. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(89960,39470,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(89961,39470,'blocks_0_split_5050_content_actions',''),(89962,39470,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(89963,39470,'blocks_0_split_5050_content',''),(89964,39470,'_blocks_0_split_5050_content','field_61767afceb8ba'),(89965,39470,'_thumbnail_id',''),(89966,39470,'__thumbnail_id','field_617570855ddaf'),(89967,39470,'blocks_1_acfe_flexible_toggle',''),(89968,39470,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(89969,39470,'blocks_1_acfe_flexible_layout_title','Template'),(89970,39470,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(89971,39470,'blocks_1_template','39087'),(89972,39470,'_blocks_1_template','field_617bdd570fe01'),(89973,39470,'blocks_2_acfe_flexible_toggle',''),(89974,39470,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(89975,39470,'blocks_2_acfe_flexible_layout_title','Text Block'),(89976,39470,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(89977,39470,'blocks_2_options_theme','#ffffff'),(89978,39470,'_blocks_2_options_theme','field_6176830e2ad17'),(89979,39470,'blocks_2_options',''),(89980,39470,'_blocks_2_options','field_6176830e2ad16'),(89981,39470,'blocks_2_text_block_heading','Learn More About Biomechanics in Different Sectors'),(89982,39470,'_blocks_2_text_block_heading','field_617669d413097'),(89983,39470,'blocks_2_text_block_content',''),(89984,39470,'_blocks_2_text_block_content','field_617669ec13098'),(89985,39470,'blocks_3_acfe_flexible_toggle',''),(89986,39470,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(89987,39470,'blocks_3_acfe_flexible_layout_title','Cards'),(89988,39470,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(89989,39470,'blocks_3_options_theme','#ffffff'),(89990,39470,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(89991,39470,'blocks_3_options_format','carousel'),(89992,39470,'_blocks_3_options_format','field_617a7b15245b5'),(89993,39470,'blocks_3_options_style','default'),(89994,39470,'_blocks_3_options_style','field_6278ffb63484a'),(89995,39470,'blocks_3_options_cards_current_listing','0'),(89996,39470,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(89997,39470,'blocks_3_options_cards_content','custom'),(89998,39470,'_blocks_3_options_cards_content','field_617aba6122688'),(89999,39470,'blocks_3_options',''),(90000,39470,'_blocks_3_options','field_617a7b15245b3'),(90001,39470,'blocks_3_cards_custom_0_image','39215'),(90002,39470,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(90003,39470,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(90004,39470,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(90005,39470,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(90006,39470,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(90007,39470,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(90008,39470,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(90009,39470,'blocks_3_cards_custom_1_image','39243'),(90010,39470,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(90011,39470,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(90012,39470,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(90013,39470,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(90014,39470,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(90015,39470,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(90016,39470,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(90017,39470,'blocks_3_cards_custom_2_image','39247'),(90018,39470,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(90019,39470,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(90020,39470,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(90021,39470,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(90022,39470,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(90023,39470,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(90024,39470,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(90025,39470,'blocks_3_cards_custom_3_image','39256'),(90026,39470,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(90027,39470,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(90028,39470,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(90029,39470,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(90030,39470,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(90031,39470,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(90032,39470,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(90033,39470,'blocks_3_cards_custom_4_image','39251'),(90034,39470,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(90035,39470,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches'),(90036,39470,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(90037,39470,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(90038,39470,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(90039,39470,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(90040,39470,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(90041,39470,'blocks_3_cards_custom_5_image','39240'),(90042,39470,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(90043,39470,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(90044,39470,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(90045,39470,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(90046,39470,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(90047,39470,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(90048,39470,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(90049,39470,'blocks_3_cards_custom_6_image','39260'),(90050,39470,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(90051,39470,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(90052,39470,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(90053,39470,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(90054,39470,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(90055,39470,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(90056,39470,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(90057,39470,'blocks_3_cards_custom','7'),(90058,39470,'_blocks_3_cards_custom','field_6194cbf84d386'),(90059,39470,'blocks_4_acfe_flexible_toggle',''),(90060,39470,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(90061,39470,'blocks_4_acfe_flexible_layout_title','Form'),(90062,39470,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(90063,39470,'blocks_4_row_content_format','standard'),(90064,39470,'_blocks_4_row_content_format','field_6481ead962881'),(90065,39470,'blocks_4_row_content_title','Ready to get started ?'),(90066,39470,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(90067,39470,'blocks_4_row_content_heading','Ready to get started ?'),(90068,39470,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(90069,39470,'blocks_4_row_content_text','Complete The Form to Get Your Free Price Guide'),(90070,39470,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(90071,39470,'blocks_4_row_content_actions',''),(90072,39470,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(90073,39470,'blocks_4_row_content',''),(90074,39470,'_blocks_4_row_content','field_61a0f5f5b3db0'),(90075,39470,'blocks_4_row_form',''),(90076,39470,'_blocks_4_row_form','field_61a4ff2c0b08e'),(90077,39470,'blocks_4_row_form_button_label',''),(90078,39470,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(90080,39278,'_wp_old_date','2024-08-07'),(90081,39348,'_wp_old_date','2024-08-07'),(90082,39279,'_wp_old_date','2024-08-07'),(90083,39325,'_wp_old_date','2024-08-07'),(90084,39324,'_wp_old_date','2024-08-07'),(90085,39323,'_wp_old_date','2024-08-07'),(90086,39322,'_wp_old_date','2024-08-07'),(90087,39321,'_wp_old_date','2024-08-07'),(90088,39320,'_wp_old_date','2024-08-07'),(90089,39319,'_wp_old_date','2024-08-07'),(90090,39280,'_wp_old_date','2024-08-07'),(90091,39281,'_wp_old_date','2024-08-07'),(90092,39344,'_wp_old_date','2024-08-07'),(90093,39318,'_wp_old_date','2024-08-07'),(90137,39471,'hero_style','default'),(90138,39471,'_hero_style','field_62051d9dc5324'),(90139,39471,'_thumbnail_id','39067'),(90140,39471,'__thumbnail_id','field_617570855ddaf'),(90141,39471,'hero_image_pos_x','right'),(90142,39471,'_hero_image_pos_x','field_62ec3d05390bb'),(90143,39471,'hero_image_pos_y','top'),(90144,39471,'_hero_image_pos_y','field_62ec3d05390bc'),(90145,39471,'hero_image_pos',''),(90146,39471,'_hero_image_pos','field_62ec3d05390ba'),(90147,39471,'hero_title','Courses'),(90148,39471,'_hero_title','field_617571fe285e8'),(90149,39471,'hero_text',''),(90150,39471,'_hero_text','field_6175723c285e9'),(90151,39471,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(90152,39471,'_hero_actions_0_button','field_61757281285eb'),(90153,39471,'hero_actions','1'),(90154,39471,'_hero_actions','field_61757270285ea'),(90155,39471,'hero_icon',''),(90156,39471,'_hero_icon','field_61a6182199d03'),(90157,39471,'fft_hide_from_listings','0'),(90158,39471,'_fft_hide_from_listings','field_61f1320446ab2'),(90159,39471,'fft_page_format','default'),(90160,39471,'_fft_page_format','field_61ae213f1f218'),(90161,39471,'fft_hide_nav','0'),(90162,39471,'_fft_hide_nav','field_635bd5e43527c'),(90163,39471,'fft_hide_header_call_to_action','0'),(90164,39471,'_fft_hide_header_call_to_action','field_635bd6723527d'),(90165,39471,'fft_page_sitemap','0'),(90166,39471,'_fft_page_sitemap','field_61af9b34e8181'),(90167,39471,'blocks','a:5:{i:0;s:5:\"icons\";i:1;s:16:\"standard_content\";i:2;s:14:\"course_compare\";i:3;s:8:\"template\";i:4;s:5:\"cards\";}'),(90168,39471,'_blocks','field_6176696113096'),(90169,39471,'blocks_0_acfe_flexible_toggle',''),(90170,39471,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(90171,39471,'blocks_0_acfe_flexible_layout_title','Icons'),(90172,39471,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(90173,39471,'blocks_0_options_theme','#b61234'),(90174,39471,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(90175,39471,'blocks_0_options_format','row'),(90176,39471,'_blocks_0_options_format','field_64bfde9a90690'),(90177,39471,'blocks_0_options',''),(90178,39471,'_blocks_0_options','field_64bfdd9b90684'),(90179,39471,'blocks_0_icon_row_items_0_icon','world.svg'),(90180,39471,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(90181,39471,'blocks_0_icon_row_items_0_label',''),(90182,39471,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(90183,39471,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(90184,39471,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(90185,39471,'blocks_0_icon_row_items_1_icon','home-study.svg'),(90186,39471,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(90187,39471,'blocks_0_icon_row_items_1_label',''),(90188,39471,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(90189,39471,'blocks_0_icon_row_items_1_text','Built and taught in house'),(90190,39471,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(90191,39471,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(90192,39471,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(90193,39471,'blocks_0_icon_row_items_2_label',''),(90194,39471,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(90195,39471,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(90196,39471,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(90197,39471,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(90198,39471,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(90199,39471,'blocks_0_icon_row_items_3_label',''),(90200,39471,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(90201,39471,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(90202,39471,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(90203,39471,'blocks_0_icon_row_items','4'),(90204,39471,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(90205,39471,'blocks_1_acfe_flexible_toggle',''),(90206,39471,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(90207,39471,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(90208,39471,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(90209,39471,'blocks_1_content','<h2 style=\"text-align: center;\"><strong>Overview</strong></h2>\r\n<p style=\"text-align: center;\">Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.</p>'),(90210,39471,'_blocks_1_content','field_6193c9b5eac84'),(90211,39471,'blocks_2_acfe_flexible_toggle',''),(90212,39471,'_blocks_2_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(90213,39471,'blocks_2_acfe_flexible_layout_title','Course Comparison'),(90214,39471,'_blocks_2_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(90215,39471,'blocks_2_options_theme','#ffffff'),(90216,39471,'_blocks_2_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(90217,39471,'blocks_2_options',''),(90218,39471,'_blocks_2_options','field_617ac0b7f6c08'),(90219,39471,'blocks_2_show','category'),(90220,39471,'_blocks_2_show','field_61a49cba9d946'),(90221,39471,'blocks_3_acfe_flexible_toggle',''),(90222,39471,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(90223,39471,'blocks_3_acfe_flexible_layout_title','Template'),(90224,39471,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(90225,39471,'blocks_3_template','39073'),(90226,39471,'_blocks_3_template','field_617bdd570fe01'),(90227,39471,'hide_hero','0'),(90228,39471,'_hide_hero','field_66a2380fcda39'),(90229,39471,'blocks_2_category','406'),(90230,39471,'_blocks_2_category','field_61a49cd79d947'),(90231,39471,'blocks_4_acfe_flexible_toggle',''),(90232,39471,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(90233,39471,'blocks_4_acfe_flexible_layout_title','Cards'),(90234,39471,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(90235,39471,'blocks_4_options_theme','#ffffff'),(90236,39471,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(90237,39471,'blocks_4_options_format','carousel'),(90238,39471,'_blocks_4_options_format','field_617a7b15245b5'),(90239,39471,'blocks_4_options_style','default'),(90240,39471,'_blocks_4_options_style','field_6278ffb63484a'),(90241,39471,'blocks_4_options_cards_current_listing','0'),(90242,39471,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(90243,39471,'blocks_4_options_cards_content','custom'),(90244,39471,'_blocks_4_options_cards_content','field_617aba6122688'),(90245,39471,'blocks_4_options',''),(90246,39471,'_blocks_4_options','field_617a7b15245b3'),(90247,39471,'blocks_4_cards_custom_0_image','38321'),(90248,39471,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(90249,39471,'blocks_4_cards_custom_0_title','CPD Courses'),(90250,39471,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(90251,39471,'blocks_4_cards_custom_0_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(90252,39471,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(90253,39471,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:17:\"Find a CPD Course\";s:3:\"url\";s:54:\"https://biomechanicseducation.com/courses/cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(90254,39471,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(90255,39471,'blocks_4_cards_custom_1_image','39047'),(90256,39471,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(90257,39471,'blocks_4_cards_custom_1_title','Diploma in Biomechanics Coaching'),(90258,39471,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(90259,39471,'blocks_4_cards_custom_1_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(90260,39471,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(90261,39471,'blocks_4_cards_custom_1_link',''),(90262,39471,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(90263,39471,'blocks_4_cards_custom_2_image','39437'),(90264,39471,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(90265,39471,'blocks_4_cards_custom_2_title','Lvl 4 Personal Trainer with Biomechanics'),(90266,39471,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(90267,39471,'blocks_4_cards_custom_2_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(90268,39471,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(90269,39471,'blocks_4_cards_custom_2_link',''),(90270,39471,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(90271,39471,'blocks_4_cards_custom','3'),(90272,39471,'_blocks_4_cards_custom','field_6194cbf84d386'),(90315,39472,'hero_style','default'),(90316,39472,'_hero_style','field_62051d9dc5324'),(90317,39472,'_thumbnail_id','39067'),(90318,39472,'__thumbnail_id','field_617570855ddaf'),(90319,39472,'hero_image_pos_x','right'),(90320,39472,'_hero_image_pos_x','field_62ec3d05390bb'),(90321,39472,'hero_image_pos_y','top'),(90322,39472,'_hero_image_pos_y','field_62ec3d05390bc'),(90323,39472,'hero_image_pos',''),(90324,39472,'_hero_image_pos','field_62ec3d05390ba'),(90325,39472,'hero_title','Courses'),(90326,39472,'_hero_title','field_617571fe285e8'),(90327,39472,'hero_text',''),(90328,39472,'_hero_text','field_6175723c285e9'),(90329,39472,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(90330,39472,'_hero_actions_0_button','field_61757281285eb'),(90331,39472,'hero_actions','1'),(90332,39472,'_hero_actions','field_61757270285ea'),(90333,39472,'hero_icon',''),(90334,39472,'_hero_icon','field_61a6182199d03'),(90335,39472,'fft_hide_from_listings','0'),(90336,39472,'_fft_hide_from_listings','field_61f1320446ab2'),(90337,39472,'fft_page_format','default'),(90338,39472,'_fft_page_format','field_61ae213f1f218'),(90339,39472,'fft_hide_nav','0'),(90340,39472,'_fft_hide_nav','field_635bd5e43527c'),(90341,39472,'fft_hide_header_call_to_action','0'),(90342,39472,'_fft_hide_header_call_to_action','field_635bd6723527d'),(90343,39472,'fft_page_sitemap','0'),(90344,39472,'_fft_page_sitemap','field_61af9b34e8181'),(90345,39472,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:16:\"standard_content\";i:2;s:14:\"course_compare\";i:3;s:5:\"cards\";}'),(90346,39472,'_blocks','field_6176696113096'),(90347,39472,'blocks_0_acfe_flexible_toggle',''),(90348,39472,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(90349,39472,'blocks_0_acfe_flexible_layout_title','Icons'),(90350,39472,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(90351,39472,'blocks_0_options_theme','#b61234'),(90352,39472,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(90353,39472,'blocks_0_options_format','row'),(90354,39472,'_blocks_0_options_format','field_64bfde9a90690'),(90355,39472,'blocks_0_options',''),(90356,39472,'_blocks_0_options','field_64bfdd9b90684'),(90357,39472,'blocks_0_icon_row_items_0_icon','world.svg'),(90358,39472,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(90359,39472,'blocks_0_icon_row_items_0_label',''),(90360,39472,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(90361,39472,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(90362,39472,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(90363,39472,'blocks_0_icon_row_items_1_icon','home-study.svg'),(90364,39472,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(90365,39472,'blocks_0_icon_row_items_1_label',''),(90366,39472,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(90367,39472,'blocks_0_icon_row_items_1_text','Built and taught in house'),(90368,39472,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(90369,39472,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(90370,39472,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(90371,39472,'blocks_0_icon_row_items_2_label',''),(90372,39472,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(90373,39472,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(90374,39472,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(90375,39472,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(90376,39472,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(90377,39472,'blocks_0_icon_row_items_3_label',''),(90378,39472,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(90379,39472,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(90380,39472,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(90381,39472,'blocks_0_icon_row_items','4'),(90382,39472,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(90383,39472,'blocks_1_acfe_flexible_toggle',''),(90384,39472,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(90385,39472,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(90386,39472,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(90387,39472,'blocks_1_content','<h2 style=\"text-align: center;\"><strong>Overview</strong></h2>\r\n<p style=\"text-align: center;\">Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.</p>'),(90388,39472,'_blocks_1_content','field_6193c9b5eac84'),(90389,39472,'blocks_2_acfe_flexible_toggle',''),(90390,39472,'_blocks_2_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(90391,39472,'blocks_2_acfe_flexible_layout_title','Course Comparison'),(90392,39472,'_blocks_2_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(90393,39472,'blocks_2_options_theme','#ffffff'),(90394,39472,'_blocks_2_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(90395,39472,'blocks_2_options',''),(90396,39472,'_blocks_2_options','field_617ac0b7f6c08'),(90397,39472,'blocks_2_show','category'),(90398,39472,'_blocks_2_show','field_61a49cba9d946'),(90399,39472,'hide_hero','0'),(90400,39472,'_hide_hero','field_66a2380fcda39'),(90401,39472,'blocks_2_category','406'),(90402,39472,'_blocks_2_category','field_61a49cd79d947'),(90403,39472,'blocks_3_acfe_flexible_toggle',''),(90404,39472,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(90405,39472,'blocks_3_acfe_flexible_layout_title','Cards'),(90406,39472,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(90407,39472,'blocks_3_options_theme','#ffffff'),(90408,39472,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(90409,39472,'blocks_3_options_format','carousel'),(90410,39472,'_blocks_3_options_format','field_617a7b15245b5'),(90411,39472,'blocks_3_options_style','default'),(90412,39472,'_blocks_3_options_style','field_6278ffb63484a'),(90413,39472,'blocks_3_options_cards_current_listing','0'),(90414,39472,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(90415,39472,'blocks_3_options_cards_content','custom'),(90416,39472,'_blocks_3_options_cards_content','field_617aba6122688'),(90417,39472,'blocks_3_options',''),(90418,39472,'_blocks_3_options','field_617a7b15245b3'),(90419,39472,'blocks_3_cards_custom_0_image','38321'),(90420,39472,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(90421,39472,'blocks_3_cards_custom_0_title','CPD Courses'),(90422,39472,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(90423,39472,'blocks_3_cards_custom_0_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(90424,39472,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(90425,39472,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:17:\"Find a CPD Course\";s:3:\"url\";s:54:\"https://biomechanicseducation.com/courses/cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(90426,39472,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(90427,39472,'blocks_3_cards_custom_1_image','39047'),(90428,39472,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(90429,39472,'blocks_3_cards_custom_1_title','Diploma in Biomechanics Coaching'),(90430,39472,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(90431,39472,'blocks_3_cards_custom_1_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(90432,39472,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(90433,39472,'blocks_3_cards_custom_1_link',''),(90434,39472,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(90435,39472,'blocks_3_cards_custom_2_image','39437'),(90436,39472,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(90437,39472,'blocks_3_cards_custom_2_title','Lvl 4 Personal Trainer with Biomechanics'),(90438,39472,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(90439,39472,'blocks_3_cards_custom_2_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(90440,39472,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(90441,39472,'blocks_3_cards_custom_2_link',''),(90442,39472,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(90443,39472,'blocks_3_cards_custom','3'),(90444,39472,'_blocks_3_cards_custom','field_6194cbf84d386'),(90445,39066,'blocks_1_acfe_flexible_toggle',''),(90446,39066,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(90447,39066,'blocks_1_acfe_flexible_layout_title','Text Block'),(90448,39066,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(90449,39066,'blocks_1_options_theme','#ffffff'),(90450,39066,'_blocks_1_options_theme','field_6176830e2ad17'),(90451,39066,'blocks_1_options',''),(90452,39066,'_blocks_1_options','field_6176830e2ad16'),(90453,39066,'blocks_1_text_block_heading','Overview'),(90454,39066,'_blocks_1_text_block_heading','field_617669d413097'),(90455,39066,'blocks_1_text_block_content','Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.'),(90456,39066,'_blocks_1_text_block_content','field_617669ec13098'),(90457,39473,'hero_style','default'),(90458,39473,'_hero_style','field_62051d9dc5324'),(90459,39473,'_thumbnail_id','39067'),(90460,39473,'__thumbnail_id','field_617570855ddaf'),(90461,39473,'hero_image_pos_x','right'),(90462,39473,'_hero_image_pos_x','field_62ec3d05390bb'),(90463,39473,'hero_image_pos_y','top'),(90464,39473,'_hero_image_pos_y','field_62ec3d05390bc'),(90465,39473,'hero_image_pos',''),(90466,39473,'_hero_image_pos','field_62ec3d05390ba'),(90467,39473,'hero_title','Courses'),(90468,39473,'_hero_title','field_617571fe285e8'),(90469,39473,'hero_text',''),(90470,39473,'_hero_text','field_6175723c285e9'),(90471,39473,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(90472,39473,'_hero_actions_0_button','field_61757281285eb'),(90473,39473,'hero_actions','1'),(90474,39473,'_hero_actions','field_61757270285ea'),(90475,39473,'hero_icon',''),(90476,39473,'_hero_icon','field_61a6182199d03'),(90477,39473,'fft_hide_from_listings','0'),(90478,39473,'_fft_hide_from_listings','field_61f1320446ab2'),(90479,39473,'fft_page_format','default'),(90480,39473,'_fft_page_format','field_61ae213f1f218'),(90481,39473,'fft_hide_nav','0'),(90482,39473,'_fft_hide_nav','field_635bd5e43527c'),(90483,39473,'fft_hide_header_call_to_action','0'),(90484,39473,'_fft_hide_header_call_to_action','field_635bd6723527d'),(90485,39473,'fft_page_sitemap','0'),(90486,39473,'_fft_page_sitemap','field_61af9b34e8181'),(90487,39473,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:14:\"course_compare\";i:3;s:5:\"cards\";}'),(90488,39473,'_blocks','field_6176696113096'),(90489,39473,'blocks_0_acfe_flexible_toggle',''),(90490,39473,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(90491,39473,'blocks_0_acfe_flexible_layout_title','Icons'),(90492,39473,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(90493,39473,'blocks_0_options_theme','#b61234'),(90494,39473,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(90495,39473,'blocks_0_options_format','row'),(90496,39473,'_blocks_0_options_format','field_64bfde9a90690'),(90497,39473,'blocks_0_options',''),(90498,39473,'_blocks_0_options','field_64bfdd9b90684'),(90499,39473,'blocks_0_icon_row_items_0_icon','world.svg'),(90500,39473,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(90501,39473,'blocks_0_icon_row_items_0_label',''),(90502,39473,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(90503,39473,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(90504,39473,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(90505,39473,'blocks_0_icon_row_items_1_icon','home-study.svg'),(90506,39473,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(90507,39473,'blocks_0_icon_row_items_1_label',''),(90508,39473,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(90509,39473,'blocks_0_icon_row_items_1_text','Built and taught in house'),(90510,39473,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(90511,39473,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(90512,39473,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(90513,39473,'blocks_0_icon_row_items_2_label',''),(90514,39473,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(90515,39473,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(90516,39473,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(90517,39473,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(90518,39473,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(90519,39473,'blocks_0_icon_row_items_3_label',''),(90520,39473,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(90521,39473,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(90522,39473,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(90523,39473,'blocks_0_icon_row_items','4'),(90524,39473,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(90525,39473,'blocks_2_acfe_flexible_toggle',''),(90526,39473,'_blocks_2_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(90527,39473,'blocks_2_acfe_flexible_layout_title','Course Comparison'),(90528,39473,'_blocks_2_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(90529,39473,'blocks_2_options_theme','#ffffff'),(90530,39473,'_blocks_2_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(90531,39473,'blocks_2_options',''),(90532,39473,'_blocks_2_options','field_617ac0b7f6c08'),(90533,39473,'blocks_2_show','category'),(90534,39473,'_blocks_2_show','field_61a49cba9d946'),(90535,39473,'hide_hero','0'),(90536,39473,'_hide_hero','field_66a2380fcda39'),(90537,39473,'blocks_2_category','406'),(90538,39473,'_blocks_2_category','field_61a49cd79d947'),(90539,39473,'blocks_3_acfe_flexible_toggle',''),(90540,39473,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(90541,39473,'blocks_3_acfe_flexible_layout_title','Cards'),(90542,39473,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(90543,39473,'blocks_3_options_theme','#ffffff'),(90544,39473,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(90545,39473,'blocks_3_options_format','carousel'),(90546,39473,'_blocks_3_options_format','field_617a7b15245b5'),(90547,39473,'blocks_3_options_style','default'),(90548,39473,'_blocks_3_options_style','field_6278ffb63484a'),(90549,39473,'blocks_3_options_cards_current_listing','0'),(90550,39473,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(90551,39473,'blocks_3_options_cards_content','custom'),(90552,39473,'_blocks_3_options_cards_content','field_617aba6122688'),(90553,39473,'blocks_3_options',''),(90554,39473,'_blocks_3_options','field_617a7b15245b3'),(90555,39473,'blocks_3_cards_custom_0_image','38321'),(90556,39473,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(90557,39473,'blocks_3_cards_custom_0_title','CPD Courses'),(90558,39473,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(90559,39473,'blocks_3_cards_custom_0_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(90560,39473,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(90561,39473,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:17:\"Find a CPD Course\";s:3:\"url\";s:54:\"https://biomechanicseducation.com/courses/cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(90562,39473,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(90563,39473,'blocks_3_cards_custom_1_image','39047'),(90564,39473,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(90565,39473,'blocks_3_cards_custom_1_title','Diploma in Biomechanics Coaching'),(90566,39473,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(90567,39473,'blocks_3_cards_custom_1_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(90568,39473,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(90569,39473,'blocks_3_cards_custom_1_link',''),(90570,39473,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(90571,39473,'blocks_3_cards_custom_2_image','39437'),(90572,39473,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(90573,39473,'blocks_3_cards_custom_2_title','Lvl 4 Personal Trainer with Biomechanics'),(90574,39473,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(90575,39473,'blocks_3_cards_custom_2_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(90576,39473,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(90577,39473,'blocks_3_cards_custom_2_link',''),(90578,39473,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(90579,39473,'blocks_3_cards_custom','3'),(90580,39473,'_blocks_3_cards_custom','field_6194cbf84d386'),(90581,39473,'blocks_1_acfe_flexible_toggle',''),(90582,39473,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(90583,39473,'blocks_1_acfe_flexible_layout_title','Text Block'),(90584,39473,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(90585,39473,'blocks_1_options_theme','#ffffff'),(90586,39473,'_blocks_1_options_theme','field_6176830e2ad17'),(90587,39473,'blocks_1_options',''),(90588,39473,'_blocks_1_options','field_6176830e2ad16'),(90589,39473,'blocks_1_text_block_heading','Overview'),(90590,39473,'_blocks_1_text_block_heading','field_617669d413097'),(90591,39473,'blocks_1_text_block_content','Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.'),(90592,39473,'_blocks_1_text_block_content','field_617669ec13098'),(90599,39474,'hero_style','default'),(90600,39474,'_hero_style','field_62051d9dc5324'),(90601,39474,'_thumbnail_id','39067'),(90602,39474,'__thumbnail_id','field_617570855ddaf'),(90603,39474,'hero_image_pos_x','right'),(90604,39474,'_hero_image_pos_x','field_62ec3d05390bb'),(90605,39474,'hero_image_pos_y','top'),(90606,39474,'_hero_image_pos_y','field_62ec3d05390bc'),(90607,39474,'hero_image_pos',''),(90608,39474,'_hero_image_pos','field_62ec3d05390ba'),(90609,39474,'hero_title','Courses'),(90610,39474,'_hero_title','field_617571fe285e8'),(90611,39474,'hero_text',''),(90612,39474,'_hero_text','field_6175723c285e9'),(90613,39474,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(90614,39474,'_hero_actions_0_button','field_61757281285eb'),(90615,39474,'hero_actions','1'),(90616,39474,'_hero_actions','field_61757270285ea'),(90617,39474,'hero_icon',''),(90618,39474,'_hero_icon','field_61a6182199d03'),(90619,39474,'fft_hide_from_listings','0'),(90620,39474,'_fft_hide_from_listings','field_61f1320446ab2'),(90621,39474,'fft_page_format','default'),(90622,39474,'_fft_page_format','field_61ae213f1f218'),(90623,39474,'fft_hide_nav','0'),(90624,39474,'_fft_hide_nav','field_635bd5e43527c'),(90625,39474,'fft_hide_header_call_to_action','0'),(90626,39474,'_fft_hide_header_call_to_action','field_635bd6723527d'),(90627,39474,'fft_page_sitemap','0'),(90628,39474,'_fft_page_sitemap','field_61af9b34e8181'),(90629,39474,'blocks','a:5:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:14:\"course_compare\";i:3;s:5:\"cards\";i:4;s:8:\"template\";}'),(90630,39474,'_blocks','field_6176696113096'),(90631,39474,'blocks_0_acfe_flexible_toggle',''),(90632,39474,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(90633,39474,'blocks_0_acfe_flexible_layout_title','Icons'),(90634,39474,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(90635,39474,'blocks_0_options_theme','#b61234'),(90636,39474,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(90637,39474,'blocks_0_options_format','row'),(90638,39474,'_blocks_0_options_format','field_64bfde9a90690'),(90639,39474,'blocks_0_options',''),(90640,39474,'_blocks_0_options','field_64bfdd9b90684'),(90641,39474,'blocks_0_icon_row_items_0_icon','world.svg'),(90642,39474,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(90643,39474,'blocks_0_icon_row_items_0_label',''),(90644,39474,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(90645,39474,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(90646,39474,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(90647,39474,'blocks_0_icon_row_items_1_icon','home-study.svg'),(90648,39474,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(90649,39474,'blocks_0_icon_row_items_1_label',''),(90650,39474,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(90651,39474,'blocks_0_icon_row_items_1_text','Built and taught in house'),(90652,39474,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(90653,39474,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(90654,39474,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(90655,39474,'blocks_0_icon_row_items_2_label',''),(90656,39474,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(90657,39474,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(90658,39474,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(90659,39474,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(90660,39474,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(90661,39474,'blocks_0_icon_row_items_3_label',''),(90662,39474,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(90663,39474,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(90664,39474,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(90665,39474,'blocks_0_icon_row_items','4'),(90666,39474,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(90667,39474,'blocks_2_acfe_flexible_toggle',''),(90668,39474,'_blocks_2_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(90669,39474,'blocks_2_acfe_flexible_layout_title','Course Comparison'),(90670,39474,'_blocks_2_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(90671,39474,'blocks_2_options_theme','#ffffff'),(90672,39474,'_blocks_2_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(90673,39474,'blocks_2_options',''),(90674,39474,'_blocks_2_options','field_617ac0b7f6c08'),(90675,39474,'blocks_2_show','category'),(90676,39474,'_blocks_2_show','field_61a49cba9d946'),(90677,39474,'hide_hero','0'),(90678,39474,'_hide_hero','field_66a2380fcda39'),(90679,39474,'blocks_2_category','406'),(90680,39474,'_blocks_2_category','field_61a49cd79d947'),(90681,39474,'blocks_3_acfe_flexible_toggle',''),(90682,39474,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(90683,39474,'blocks_3_acfe_flexible_layout_title','Cards'),(90684,39474,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(90685,39474,'blocks_3_options_theme','#ffffff'),(90686,39474,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(90687,39474,'blocks_3_options_format','carousel'),(90688,39474,'_blocks_3_options_format','field_617a7b15245b5'),(90689,39474,'blocks_3_options_style','default'),(90690,39474,'_blocks_3_options_style','field_6278ffb63484a'),(90691,39474,'blocks_3_options_cards_current_listing','0'),(90692,39474,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(90693,39474,'blocks_3_options_cards_content','custom'),(90694,39474,'_blocks_3_options_cards_content','field_617aba6122688'),(90695,39474,'blocks_3_options',''),(90696,39474,'_blocks_3_options','field_617a7b15245b3'),(90697,39474,'blocks_3_cards_custom_0_image','38321'),(90698,39474,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(90699,39474,'blocks_3_cards_custom_0_title','CPD Courses'),(90700,39474,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(90701,39474,'blocks_3_cards_custom_0_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(90702,39474,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(90703,39474,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:17:\"Find a CPD Course\";s:3:\"url\";s:54:\"https://biomechanicseducation.com/courses/cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(90704,39474,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(90705,39474,'blocks_3_cards_custom_1_image','39047'),(90706,39474,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(90707,39474,'blocks_3_cards_custom_1_title','Diploma in Biomechanics Coaching'),(90708,39474,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(90709,39474,'blocks_3_cards_custom_1_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(90710,39474,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(90711,39474,'blocks_3_cards_custom_1_link',''),(90712,39474,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(90713,39474,'blocks_3_cards_custom_2_image','39437'),(90714,39474,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(90715,39474,'blocks_3_cards_custom_2_title','Lvl 4 Personal Trainer with Biomechanics'),(90716,39474,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(90717,39474,'blocks_3_cards_custom_2_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(90718,39474,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(90719,39474,'blocks_3_cards_custom_2_link',''),(90720,39474,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(90721,39474,'blocks_3_cards_custom','3'),(90722,39474,'_blocks_3_cards_custom','field_6194cbf84d386'),(90723,39474,'blocks_1_acfe_flexible_toggle',''),(90724,39474,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(90725,39474,'blocks_1_acfe_flexible_layout_title','Text Block'),(90726,39474,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(90727,39474,'blocks_1_options_theme','#ffffff'),(90728,39474,'_blocks_1_options_theme','field_6176830e2ad17'),(90729,39474,'blocks_1_options',''),(90730,39474,'_blocks_1_options','field_6176830e2ad16'),(90731,39474,'blocks_1_text_block_heading','Overview'),(90732,39474,'_blocks_1_text_block_heading','field_617669d413097'),(90733,39474,'blocks_1_text_block_content','Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.'),(90734,39474,'_blocks_1_text_block_content','field_617669ec13098'),(90735,39474,'blocks_4_acfe_flexible_toggle',''),(90736,39474,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(90737,39474,'blocks_4_acfe_flexible_layout_title','Template'),(90738,39474,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(90739,39474,'blocks_4_template','39207'),(90740,39474,'_blocks_4_template','field_617bdd570fe01'),(90741,39207,'_wp_old_date','2024-07-30'),(90742,39207,'blocks_0_acfe_flexible_toggle',''),(90743,39207,'_blocks_0_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(90744,39207,'blocks_0_acfe_flexible_layout_title','Logos'),(90745,39207,'_blocks_0_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(90746,39207,'blocks_0_options_theme','#ffffff'),(90747,39207,'_blocks_0_options_theme','field_61782954ee966_field_6176830e2ad17'),(90748,39207,'blocks_0_options_format','carousel'),(90749,39207,'_blocks_0_options_format','field_61782964ee971'),(90750,39207,'blocks_0_options',''),(90751,39207,'_blocks_0_options','field_61782954ee965'),(90752,39207,'blocks_0_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"41984\";i:2;s:5:\"39293\";i:3;s:5:\"39304\";i:4;s:5:\"39300\";i:5;s:5:\"39297\";i:6;s:5:\"39295\";i:7;s:5:\"39291\";i:8;s:5:\"39306\";}'),(90753,39207,'_blocks_0_logos','field_61782954ee96d'),(90754,39207,'blocks_0_title',''),(90755,39207,'_blocks_0_title','field_668fbfdc2daa1'),(90756,39207,'blocks','a:1:{i:0;s:5:\"logos\";}'),(90757,39207,'_blocks','field_6176696113096'),(90758,39306,'media_link','https://pulseroll.com/'),(90759,39306,'_media_link','field_63cfa3e0f3212'),(90760,39304,'media_link','https://wolverson-fitness.co.uk/'),(90761,39304,'_media_link','field_63cfa3e0f3212'),(90762,39300,'media_link','https://bgi.eu.com/'),(90763,39300,'_media_link','field_63cfa3e0f3212'),(90764,39294,'media_link','https://www.cimspa.co.uk/'),(90765,39294,'_media_link','field_63cfa3e0f3212'),(90766,39297,'media_link','https://therapy-empire.co.uk/'),(90767,39297,'_media_link','field_63cfa3e0f3212'),(90768,39296,'media_link','https://www.vxsgymwear.com/'),(90769,39296,'_media_link','field_63cfa3e0f3212'),(90770,39295,'media_link','https://flowin.com/'),(90771,39295,'_media_link','field_63cfa3e0f3212'),(90772,39293,'media_link','https://www.brytespark.com/'),(90773,39293,'_media_link','field_63cfa3e0f3212'),(90774,39291,'media_link','https://www.thesta.co.uk/site/index.php'),(90775,39291,'_media_link','field_63cfa3e0f3212'),(90776,39290,'media_link','https://www.futurefit.co.uk/'),(90777,39290,'_media_link','field_63cfa3e0f3212'),(90802,39475,'hero_style','default'),(90803,39475,'_hero_style','field_62051d9dc5324'),(90804,39475,'hero_image_pos_x','right'),(90805,39475,'_hero_image_pos_x','field_62ec3d05390bb'),(90806,39475,'hero_image_pos_y','top'),(90807,39475,'_hero_image_pos_y','field_62ec3d05390bc'),(90808,39475,'hero_image_pos',''),(90809,39475,'_hero_image_pos','field_62ec3d05390ba'),(90810,39475,'hero_title','Biomechanics Education'),(90811,39475,'_hero_title','field_617571fe285e8'),(90812,39475,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(90813,39475,'_hero_text','field_6175723c285e9'),(90814,39475,'hero_actions','1'),(90815,39475,'_hero_actions','field_61757270285ea'),(90816,39475,'hero_icon',''),(90817,39475,'_hero_icon','field_61a6182199d03'),(90818,39475,'fft_hide_from_listings','0'),(90819,39475,'_fft_hide_from_listings','field_61f1320446ab2'),(90820,39475,'fft_page_format','default'),(90821,39475,'_fft_page_format','field_61ae213f1f218'),(90822,39475,'fft_hide_nav','0'),(90823,39475,'_fft_hide_nav','field_635bd5e43527c'),(90824,39475,'fft_hide_header_call_to_action','0'),(90825,39475,'_fft_hide_header_call_to_action','field_635bd6723527d'),(90826,39475,'fft_page_sitemap','0'),(90827,39475,'_fft_page_sitemap','field_61af9b34e8181'),(90828,39475,'blocks','a:8:{i:0;s:5:\"video\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:8:\"template\";i:7;s:18:\"testimonial_slider\";}'),(90829,39475,'_blocks','field_6176696113096'),(90830,39475,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(90831,39475,'_hero_actions_0_button','field_61757281285eb'),(90832,39475,'_thumbnail_id','38951'),(90833,39475,'__thumbnail_id','field_617570855ddaf'),(90834,39475,'hide_hero','0'),(90835,39475,'_hide_hero','field_66a2380fcda39'),(90836,39475,'blocks_0_acfe_flexible_toggle',''),(90837,39475,'_blocks_0_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(90838,39475,'blocks_0_acfe_flexible_layout_title','Video'),(90839,39475,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(90840,39475,'blocks_0_size','large'),(90841,39475,'_blocks_0_size','field_6487038f297c1'),(90842,39475,'blocks_0_row_content_title',''),(90843,39475,'_blocks_0_row_content_title','field_64870132a865d'),(90844,39475,'blocks_0_row_content_heading','Welcome to Biomechanics Education'),(90845,39475,'_blocks_0_row_content_heading','field_64870142a865e'),(90846,39475,'blocks_0_row_content_text',''),(90847,39475,'_blocks_0_row_content_text','field_64870148a865f'),(90848,39475,'blocks_0_row_content',''),(90849,39475,'_blocks_0_row_content','field_6487008ba865c'),(90850,39475,'blocks_0_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(90851,39475,'_blocks_0_video_src','field_6193c4a98ec07'),(90852,39475,'blocks_0_video_thumbnail','39175'),(90853,39475,'_blocks_0_video_thumbnail','field_6193c4a08ec06'),(90854,39475,'blocks_1_acfe_flexible_toggle',''),(90855,39475,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(90856,39475,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(90857,39475,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(90858,39475,'blocks_1_options_theme','#f5f5f5'),(90859,39475,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(90860,39475,'blocks_1_options_reverse','0'),(90861,39475,'_blocks_1_options_reverse','field_61768049bb8ac'),(90862,39475,'blocks_1_options',''),(90863,39475,'_blocks_1_options','field_617682517c334'),(90864,39475,'blocks_1_split_5050_image','38950'),(90865,39475,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(90866,39475,'blocks_1_split_5050_video',''),(90867,39475,'_blocks_1_split_5050_video','field_6239f3160848a'),(90868,39475,'blocks_1_split_5050_content_title',''),(90869,39475,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(90870,39475,'blocks_1_split_5050_content_heading','What is Biomechanics Education ?'),(90871,39475,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(90872,39475,'blocks_1_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your clients\' limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(90873,39475,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(90874,39475,'blocks_1_split_5050_content_actions',''),(90875,39475,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(90876,39475,'blocks_1_split_5050_content',''),(90877,39475,'_blocks_1_split_5050_content','field_61767afceb8ba'),(90878,39475,'blocks_2_acfe_flexible_toggle',''),(90879,39475,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(90880,39475,'blocks_2_acfe_flexible_layout_title','Template'),(90881,39475,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(90882,39475,'blocks_2_template','39087'),(90883,39475,'_blocks_2_template','field_617bdd570fe01'),(90884,39475,'blocks_3_acfe_flexible_toggle',''),(90885,39475,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(90886,39475,'blocks_3_acfe_flexible_layout_title','Text Block'),(90887,39475,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(90888,39475,'blocks_3_options_theme','#ffffff'),(90889,39475,'_blocks_3_options_theme','field_6176830e2ad17'),(90890,39475,'blocks_3_options',''),(90891,39475,'_blocks_3_options','field_6176830e2ad16'),(90892,39475,'blocks_3_text_block_heading','Learn About Biomechanics in Different Sectors'),(90893,39475,'_blocks_3_text_block_heading','field_617669d413097'),(90894,39475,'blocks_3_text_block_content',''),(90895,39475,'_blocks_3_text_block_content','field_617669ec13098'),(90896,39475,'blocks_4_acfe_flexible_toggle',''),(90897,39475,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(90898,39475,'blocks_4_acfe_flexible_layout_title','Cards'),(90899,39475,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(90900,39475,'blocks_4_options_theme','#ffffff'),(90901,39475,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(90902,39475,'blocks_4_options_format','carousel'),(90903,39475,'_blocks_4_options_format','field_617a7b15245b5'),(90904,39475,'blocks_4_options_style','default'),(90905,39475,'_blocks_4_options_style','field_6278ffb63484a'),(90906,39475,'blocks_4_options_cards_current_listing','0'),(90907,39475,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(90908,39475,'blocks_4_options_cards_content','custom'),(90909,39475,'_blocks_4_options_cards_content','field_617aba6122688'),(90910,39475,'blocks_4_options',''),(90911,39475,'_blocks_4_options','field_617a7b15245b3'),(90912,39475,'blocks_4_cards_custom_0_image','39215'),(90913,39475,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(90914,39475,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(90915,39475,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(90916,39475,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(90917,39475,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(90918,39475,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(90919,39475,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(90920,39475,'blocks_4_cards_custom_1_image','39243'),(90921,39475,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(90922,39475,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(90923,39475,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(90924,39475,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(90925,39475,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(90926,39475,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(90927,39475,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(90928,39475,'blocks_4_cards_custom_2_image','39247'),(90929,39475,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(90930,39475,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(90931,39475,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(90932,39475,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(90933,39475,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(90934,39475,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(90935,39475,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(90936,39475,'blocks_4_cards_custom_3_image','39256'),(90937,39475,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(90938,39475,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(90939,39475,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(90940,39475,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(90941,39475,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(90942,39475,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(90943,39475,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(90944,39475,'blocks_4_cards_custom_4_image','39251'),(90945,39475,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(90946,39475,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(90947,39475,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(90948,39475,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(90949,39475,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(90950,39475,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(90951,39475,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(90952,39475,'blocks_4_cards_custom_5_image','39240'),(90953,39475,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(90954,39475,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(90955,39475,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(90956,39475,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(90957,39475,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(90958,39475,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(90959,39475,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(90960,39475,'blocks_4_cards_custom_6_image','39454'),(90961,39475,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(90962,39475,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(90963,39475,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(90964,39475,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(90965,39475,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(90966,39475,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(90967,39475,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(90968,39475,'blocks_4_cards_custom','7'),(90969,39475,'_blocks_4_cards_custom','field_6194cbf84d386'),(90970,39475,'blocks_5_acfe_flexible_toggle',''),(90971,39475,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(90972,39475,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(90973,39475,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(90974,39475,'blocks_5_options_theme','#f5f5f5'),(90975,39475,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(90976,39475,'blocks_5_options_reverse','1'),(90977,39475,'_blocks_5_options_reverse','field_61768049bb8ac'),(90978,39475,'blocks_5_options',''),(90979,39475,'_blocks_5_options','field_617682517c334'),(90980,39475,'blocks_5_split_5050_image','38960'),(90981,39475,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(90982,39475,'blocks_5_split_5050_video',''),(90983,39475,'_blocks_5_split_5050_video','field_6239f3160848a'),(90984,39475,'blocks_5_split_5050_content_title','Working In Partnership'),(90985,39475,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(90986,39475,'blocks_5_split_5050_content_heading','Biomechanics Education and Future Fit'),(90987,39475,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(90988,39475,'blocks_5_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(90989,39475,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(90990,39475,'blocks_5_split_5050_content_actions',''),(90991,39475,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(90992,39475,'blocks_5_split_5050_content',''),(90993,39475,'_blocks_5_split_5050_content','field_61767afceb8ba'),(90994,39475,'blocks_6_acfe_flexible_toggle',''),(90995,39475,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(90996,39475,'blocks_6_acfe_flexible_layout_title','Template'),(90997,39475,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(90998,39475,'blocks_6_template','39207'),(90999,39475,'_blocks_6_template','field_617bdd570fe01'),(91000,39475,'blocks_7_acfe_flexible_toggle',''),(91001,39475,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(91002,39475,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(91003,39475,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(91004,39475,'blocks_7_testimonial_slider_content_title',''),(91005,39475,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(91006,39475,'blocks_7_testimonial_slider_content_heading','Testimonials'),(91007,39475,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(91008,39475,'blocks_7_testimonial_slider_content_text',''),(91009,39475,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(91010,39475,'blocks_7_testimonial_slider_content_actions',''),(91011,39475,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(91012,39475,'blocks_7_testimonial_slider_content',''),(91013,39475,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(91014,39475,'blocks_7_testimonial_slider_items','a:5:{i:0;s:5:\"38964\";i:1;s:5:\"38965\";i:2;s:5:\"39168\";i:3;s:5:\"39170\";i:4;s:5:\"39169\";}'),(91015,39475,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(91016,39475,'blocks_7_testimonial_slider_ambassador_bool','0'),(91017,39475,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(92708,39483,'_wp_attached_file','2024/08/webinars-page-hero-image.jpg'),(92709,39483,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:36:\"2024/08/webinars-page-hero-image.jpg\";s:8:\"filesize\";i:226819;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"webinars-page-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53541;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"webinars-page-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83016;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"webinars-page-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15673;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"webinars-page-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41609;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"webinars-page-hero-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122548;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:38:\"webinars-page-hero-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191593;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:36:\"webinars-page-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22671;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:36:\"webinars-page-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80811;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:38:\"webinars-page-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125942;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:36:\"webinars-page-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15626;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:36:\"webinars-page-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53559;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:37:\"webinars-page-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83049;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:36:\"webinars-page-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18616;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:36:\"webinars-page-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66734;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:37:\"webinars-page-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104233;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:36:\"webinars-page-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17333;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:36:\"webinars-page-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60280;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:37:\"webinars-page-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93916;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:36:\"webinars-page-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13740;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:36:\"webinars-page-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47145;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:37:\"webinars-page-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73466;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(92710,39485,'_menu_item_type','custom'),(92711,39485,'_menu_item_menu_item_parent','39348'),(92712,39485,'_menu_item_object_id','39485'),(92713,39485,'_menu_item_object','custom'),(92714,39485,'_menu_item_target',''),(92715,39485,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(92716,39485,'_menu_item_xfn',''),(92717,39485,'_menu_item_url','https://biomechanicseducation.com/courses/in-person-cpd-courses/'),(92719,39486,'_menu_item_type','custom'),(92720,39486,'_menu_item_menu_item_parent','39348'),(92721,39486,'_menu_item_object_id','39486'),(92722,39486,'_menu_item_object','custom'),(92723,39486,'_menu_item_target',''),(92724,39486,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(92725,39486,'_menu_item_xfn',''),(92726,39486,'_menu_item_url','https://biomechanicseducation.com/courses/online-cpd-courses/'),(92728,39487,'_menu_item_type','custom'),(92729,39487,'_menu_item_menu_item_parent','39348'),(92730,39487,'_menu_item_object_id','39487'),(92731,39487,'_menu_item_object','custom'),(92732,39487,'_menu_item_target',''),(92733,39487,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(92734,39487,'_menu_item_xfn',''),(92735,39487,'_menu_item_url','https://biomechanicseducation.com/courses/webinars/'),(92737,39486,'menu_item_card_image',''),(92738,39486,'_menu_item_card_image','field_618cf50fb8716'),(92739,39486,'menu_item_card_title',''),(92740,39486,'_menu_item_card_title','field_618cf51cb8717'),(92741,39486,'menu_item_card_text',''),(92742,39486,'_menu_item_card_text','field_618cf521b8718'),(92743,39486,'menu_item_card_link',''),(92744,39486,'_menu_item_card_link','field_618cf52eb8719'),(92745,39486,'menu_item_card',''),(92746,39486,'_menu_item_card','field_618cf506b8715'),(92747,39485,'menu_item_card_image',''),(92748,39485,'_menu_item_card_image','field_618cf50fb8716'),(92749,39485,'menu_item_card_title',''),(92750,39485,'_menu_item_card_title','field_618cf51cb8717'),(92751,39485,'menu_item_card_text',''),(92752,39485,'_menu_item_card_text','field_618cf521b8718'),(92753,39485,'menu_item_card_link',''),(92754,39485,'_menu_item_card_link','field_618cf52eb8719'),(92755,39485,'menu_item_card',''),(92756,39485,'_menu_item_card','field_618cf506b8715'),(92757,39487,'menu_item_card_image',''),(92758,39487,'_menu_item_card_image','field_618cf50fb8716'),(92759,39487,'menu_item_card_title',''),(92760,39487,'_menu_item_card_title','field_618cf51cb8717'),(92761,39487,'menu_item_card_text',''),(92762,39487,'_menu_item_card_text','field_618cf521b8718'),(92763,39487,'menu_item_card_link',''),(92764,39487,'_menu_item_card_link','field_618cf52eb8719'),(92765,39487,'menu_item_card',''),(92766,39487,'_menu_item_card','field_618cf506b8715'),(92767,39278,'_wp_old_date','2024-08-08'),(92768,39348,'_wp_old_date','2024-08-08'),(92769,39279,'_wp_old_date','2024-08-08'),(92770,39325,'_wp_old_date','2024-08-08'),(92771,39324,'_wp_old_date','2024-08-08'),(92772,39323,'_wp_old_date','2024-08-08'),(92773,39322,'_wp_old_date','2024-08-08'),(92774,39321,'_wp_old_date','2024-08-08'),(92775,39320,'_wp_old_date','2024-08-08'),(92776,39319,'_wp_old_date','2024-08-08'),(92777,39280,'_wp_old_date','2024-08-08'),(92778,39281,'_wp_old_date','2024-08-08'),(92779,39344,'_wp_old_date','2024-08-08'),(92780,39318,'_wp_old_date','2024-08-08'),(92782,39488,'_edit_lock','1725633288:5'),(92783,39488,'_edit_last','5'),(92784,39488,'hide_hero','0'),(92785,39488,'_hide_hero','field_66a2380fcda39'),(92786,39488,'hero_title','Our Team'),(92787,39488,'_hero_title','field_617571fe285e8'),(92788,39488,'hero_text','Meet the team'),(92789,39488,'_hero_text','field_6175723c285e9'),(92790,39488,'hero_actions',''),(92791,39488,'_hero_actions','field_61757270285ea'),(92792,39488,'hero_style','default'),(92793,39488,'_hero_style','field_62051d9dc5324'),(92795,39488,'__thumbnail_id','field_617570855ddaf'),(92796,39488,'hero_image_pos_x','right'),(92797,39488,'_hero_image_pos_x','field_62ec3d05390bb'),(92798,39488,'hero_image_pos_y','top'),(92799,39488,'_hero_image_pos_y','field_62ec3d05390bc'),(92800,39488,'hero_image_pos',''),(92801,39488,'_hero_image_pos','field_62ec3d05390ba'),(92802,39488,'fft_hide_from_listings','0'),(92803,39488,'_fft_hide_from_listings','field_61f1320446ab2'),(92804,39488,'fft_page_format','default'),(92805,39488,'_fft_page_format','field_61ae213f1f218'),(92806,39488,'fft_hide_nav','0'),(92807,39488,'_fft_hide_nav','field_635bd5e43527c'),(92808,39488,'fft_hide_header_call_to_action','0'),(92809,39488,'_fft_hide_header_call_to_action','field_635bd6723527d'),(92810,39488,'fft_page_sitemap','0'),(92811,39488,'_fft_page_sitemap','field_61af9b34e8181'),(92812,39488,'blocks',''),(92813,39488,'_blocks','field_6176696113096'),(92814,39488,'_yoast_wpseo_estimated-reading-time-minutes','0'),(92815,39489,'hide_hero','0'),(92816,39489,'_hide_hero','field_66a2380fcda39'),(92817,39489,'hero_title','Our Team'),(92818,39489,'_hero_title','field_617571fe285e8'),(92819,39489,'hero_text','Meet the team'),(92820,39489,'_hero_text','field_6175723c285e9'),(92821,39489,'hero_actions',''),(92822,39489,'_hero_actions','field_61757270285ea'),(92823,39489,'hero_style','default'),(92824,39489,'_hero_style','field_62051d9dc5324'),(92825,39489,'_thumbnail_id',''),(92826,39489,'__thumbnail_id','field_617570855ddaf'),(92827,39489,'hero_image_pos_x','right'),(92828,39489,'_hero_image_pos_x','field_62ec3d05390bb'),(92829,39489,'hero_image_pos_y','top'),(92830,39489,'_hero_image_pos_y','field_62ec3d05390bc'),(92831,39489,'hero_image_pos',''),(92832,39489,'_hero_image_pos','field_62ec3d05390ba'),(92833,39489,'fft_hide_from_listings','0'),(92834,39489,'_fft_hide_from_listings','field_61f1320446ab2'),(92835,39489,'fft_page_format','default'),(92836,39489,'_fft_page_format','field_61ae213f1f218'),(92837,39489,'fft_hide_nav','0'),(92838,39489,'_fft_hide_nav','field_635bd5e43527c'),(92839,39489,'fft_hide_header_call_to_action','0'),(92840,39489,'_fft_hide_header_call_to_action','field_635bd6723527d'),(92841,39489,'fft_page_sitemap','0'),(92842,39489,'_fft_page_sitemap','field_61af9b34e8181'),(92843,39489,'blocks',''),(92844,39489,'_blocks','field_6176696113096'),(92845,39488,'_thumbnail_id',''),(92846,39488,'_yoast_wpseo_focuskw','Biomechanics team'),(92847,39488,'_yoast_wpseo_title','Our Team | Biomechanics Education'),(92848,39488,'_yoast_wpseo_metadesc','Meet our team. Discover the experts behind biomechanics education, their credentials, and their commitment to advancing your professional development.'),(92849,39488,'_yoast_wpseo_linkdex','35'),(92907,39493,'_edit_lock','1741944449:18'),(92908,39493,'_edit_last','13'),(92909,39493,'hide_hero','0'),(92910,39493,'_hide_hero','field_66a2380fcda39'),(92911,39493,'hero_title','Find a Biomechanics Coach in Your Area'),(92912,39493,'_hero_title','field_617571fe285e8'),(92913,39493,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(92914,39493,'_hero_text','field_6175723c285e9'),(92915,39493,'hero_actions','1'),(92916,39493,'_hero_actions','field_61757270285ea'),(92917,39493,'hero_style','default'),(92918,39493,'_hero_style','field_62051d9dc5324'),(92920,39493,'__thumbnail_id','field_617570855ddaf'),(92921,39493,'hero_image_pos_x','right'),(92922,39493,'_hero_image_pos_x','field_62ec3d05390bb'),(92923,39493,'hero_image_pos_y','top'),(92924,39493,'_hero_image_pos_y','field_62ec3d05390bc'),(92925,39493,'hero_image_pos',''),(92926,39493,'_hero_image_pos','field_62ec3d05390ba'),(92927,39493,'fft_hide_from_listings','0'),(92928,39493,'_fft_hide_from_listings','field_61f1320446ab2'),(92929,39493,'fft_page_format','default'),(92930,39493,'_fft_page_format','field_61ae213f1f218'),(92931,39493,'fft_hide_nav','0'),(92932,39493,'_fft_hide_nav','field_635bd5e43527c'),(92933,39493,'fft_hide_header_call_to_action','0'),(92934,39493,'_fft_hide_header_call_to_action','field_635bd6723527d'),(92935,39493,'fft_page_sitemap','0'),(92936,39493,'_fft_page_sitemap','field_61af9b34e8181'),(92965,39493,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(92966,39493,'_blocks','field_6176696113096'),(92967,39493,'_yoast_wpseo_estimated-reading-time-minutes','1'),(92968,39494,'hide_hero','0'),(92969,39494,'_hide_hero','field_66a2380fcda39'),(92970,39494,'hero_title','Find a Biomechanics Coach in your area'),(92971,39494,'_hero_title','field_617571fe285e8'),(92972,39494,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(92973,39494,'_hero_text','field_6175723c285e9'),(92974,39494,'hero_actions',''),(92975,39494,'_hero_actions','field_61757270285ea'),(92976,39494,'hero_style','default'),(92977,39494,'_hero_style','field_62051d9dc5324'),(92978,39494,'_thumbnail_id',''),(92979,39494,'__thumbnail_id','field_617570855ddaf'),(92980,39494,'hero_image_pos_x','right'),(92981,39494,'_hero_image_pos_x','field_62ec3d05390bb'),(92982,39494,'hero_image_pos_y','top'),(92983,39494,'_hero_image_pos_y','field_62ec3d05390bc'),(92984,39494,'hero_image_pos',''),(92985,39494,'_hero_image_pos','field_62ec3d05390ba'),(92986,39494,'fft_hide_from_listings','0'),(92987,39494,'_fft_hide_from_listings','field_61f1320446ab2'),(92988,39494,'fft_page_format','default'),(92989,39494,'_fft_page_format','field_61ae213f1f218'),(92990,39494,'fft_hide_nav','0'),(92991,39494,'_fft_hide_nav','field_635bd5e43527c'),(92992,39494,'fft_hide_header_call_to_action','0'),(92993,39494,'_fft_hide_header_call_to_action','field_635bd6723527d'),(92994,39494,'fft_page_sitemap','0'),(92995,39494,'_fft_page_sitemap','field_61af9b34e8181'),(92996,39494,'blocks_0_acfe_flexible_toggle',''),(92997,39494,'_blocks_0_acfe_flexible_toggle','field_layout_619e68cae6262_toggle'),(92998,39494,'blocks_0_acfe_flexible_layout_title','Map'),(92999,39494,'_blocks_0_acfe_flexible_layout_title','field_layout_619e68cae6262_title'),(93000,39494,'blocks_0_row_content_title',''),(93001,39494,'_blocks_0_row_content_title','field_619f5bb09cb8e'),(93002,39494,'blocks_0_row_content_heading','Find a Biomechanics Coach'),(93003,39494,'_blocks_0_row_content_heading','field_619f5bb09cb8f'),(93004,39494,'blocks_0_row_content_text',''),(93005,39494,'_blocks_0_row_content_text','field_619f5bb09cb90'),(93006,39494,'blocks_0_row_content_actions',''),(93007,39494,'_blocks_0_row_content_actions','field_619f5bb09cb91'),(93008,39494,'blocks_0_row_content',''),(93009,39494,'_blocks_0_row_content','field_619f5baf9cb8d'),(93010,39494,'blocks_0_map_location',''),(93011,39494,'_blocks_0_map_location','field_619f5bca9cb93'),(93012,39494,'blocks_1_acfe_flexible_toggle',''),(93013,39494,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(93014,39494,'blocks_1_acfe_flexible_layout_title','Text Block'),(93015,39494,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(93016,39494,'blocks_1_options_theme','#ffffff'),(93017,39494,'_blocks_1_options_theme','field_6176830e2ad17'),(93018,39494,'blocks_1_options',''),(93019,39494,'_blocks_1_options','field_6176830e2ad16'),(93020,39494,'blocks_1_text_block_heading','Can’t find what you’re looking for?'),(93021,39494,'_blocks_1_text_block_heading','field_617669d413097'),(93022,39494,'blocks_1_text_block_content','Get in touch with us at:\r\n\r\nrachel@biomechanicseducation.com\r\n\r\nor call on 020 3841 6151.'),(93023,39494,'_blocks_1_text_block_content','field_617669ec13098'),(93024,39494,'blocks','a:2:{i:0;s:3:\"map\";i:1;s:10:\"text_block\";}'),(93025,39494,'_blocks','field_6176696113096'),(93084,39496,'_wp_attached_file','2024/08/In-person-CPD-Courses-Hero-Image.jpg'),(93085,39496,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:4:\"file\";s:44:\"2024/08/In-person-CPD-Courses-Hero-Image.jpg\";s:8:\"filesize\";i:362386;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"In-person-CPD-Courses-Hero-Image-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91058;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"In-person-CPD-Courses-Hero-Image-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150174;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"In-person-CPD-Courses-Hero-Image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23514;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"In-person-CPD-Courses-Hero-Image-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69457;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"In-person-CPD-Courses-Hero-Image-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230875;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:44:\"In-person-CPD-Courses-Hero-Image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35699;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:44:\"In-person-CPD-Courses-Hero-Image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142380;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:46:\"In-person-CPD-Courses-Hero-Image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229150;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:44:\"In-person-CPD-Courses-Hero-Image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23444;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:44:\"In-person-CPD-Courses-Hero-Image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90398;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:45:\"In-person-CPD-Courses-Hero-Image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148629;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:44:\"In-person-CPD-Courses-Hero-Image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28776;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:44:\"In-person-CPD-Courses-Hero-Image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113608;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:45:\"In-person-CPD-Courses-Hero-Image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182700;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:44:\"In-person-CPD-Courses-Hero-Image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27083;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:44:\"In-person-CPD-Courses-Hero-Image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105741;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:45:\"In-person-CPD-Courses-Hero-Image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172978;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:44:\"In-person-CPD-Courses-Hero-Image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21135;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:44:\"In-person-CPD-Courses-Hero-Image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79452;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:45:\"In-person-CPD-Courses-Hero-Image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129400;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(93086,39497,'_edit_lock','1737389238:17'),(93087,39497,'_edit_last','17'),(93088,39497,'hide_hero','0'),(93089,39497,'_hide_hero','field_66a2380fcda39'),(93090,39497,'hero_title','Blogs'),(93091,39497,'_hero_title','field_617571fe285e8'),(93092,39497,'hero_text','Explore Insights and Expert Tips on Everything Intrinsic Biomechanics, Including Movement, Performance and Risk Reduction.'),(93093,39497,'_hero_text','field_6175723c285e9'),(93094,39497,'hero_actions',''),(93095,39497,'_hero_actions','field_61757270285ea'),(93096,39497,'hero_style','default'),(93097,39497,'_hero_style','field_62051d9dc5324'),(93099,39497,'__thumbnail_id','field_617570855ddaf'),(93100,39497,'hero_image_pos_x','right'),(93101,39497,'_hero_image_pos_x','field_62ec3d05390bb'),(93102,39497,'hero_image_pos_y','top'),(93103,39497,'_hero_image_pos_y','field_62ec3d05390bc'),(93104,39497,'hero_image_pos',''),(93105,39497,'_hero_image_pos','field_62ec3d05390ba'),(93106,39497,'fft_hide_from_listings','0'),(93107,39497,'_fft_hide_from_listings','field_61f1320446ab2'),(93108,39497,'fft_page_format','default'),(93109,39497,'_fft_page_format','field_61ae213f1f218'),(93110,39497,'fft_hide_nav','0'),(93111,39497,'_fft_hide_nav','field_635bd5e43527c'),(93112,39497,'fft_hide_header_call_to_action','0'),(93113,39497,'_fft_hide_header_call_to_action','field_635bd6723527d'),(93114,39497,'fft_page_sitemap','0'),(93115,39497,'_fft_page_sitemap','field_61af9b34e8181'),(93116,39497,'blocks','a:1:{i:0;s:5:\"cards\";}'),(93117,39497,'_blocks','field_6176696113096'),(93118,39497,'_yoast_wpseo_estimated-reading-time-minutes','1'),(93119,39498,'hide_hero','0'),(93120,39498,'_hide_hero','field_66a2380fcda39'),(93121,39498,'hero_title','Blogs'),(93122,39498,'_hero_title','field_617571fe285e8'),(93123,39498,'hero_text',''),(93124,39498,'_hero_text','field_6175723c285e9'),(93125,39498,'hero_actions',''),(93126,39498,'_hero_actions','field_61757270285ea'),(93127,39498,'hero_style','default'),(93128,39498,'_hero_style','field_62051d9dc5324'),(93129,39498,'_thumbnail_id',''),(93130,39498,'__thumbnail_id','field_617570855ddaf'),(93131,39498,'hero_image_pos_x','right'),(93132,39498,'_hero_image_pos_x','field_62ec3d05390bb'),(93133,39498,'hero_image_pos_y','top'),(93134,39498,'_hero_image_pos_y','field_62ec3d05390bc'),(93135,39498,'hero_image_pos',''),(93136,39498,'_hero_image_pos','field_62ec3d05390ba'),(93137,39498,'fft_hide_from_listings','0'),(93138,39498,'_fft_hide_from_listings','field_61f1320446ab2'),(93139,39498,'fft_page_format','default'),(93140,39498,'_fft_page_format','field_61ae213f1f218'),(93141,39498,'fft_hide_nav','0'),(93142,39498,'_fft_hide_nav','field_635bd5e43527c'),(93143,39498,'fft_hide_header_call_to_action','0'),(93144,39498,'_fft_hide_header_call_to_action','field_635bd6723527d'),(93145,39498,'fft_page_sitemap','0'),(93146,39498,'_fft_page_sitemap','field_61af9b34e8181'),(93147,39498,'blocks',''),(93148,39498,'_blocks','field_6176696113096'),(93149,39172,'hide_hero','0'),(93150,39172,'_hide_hero','field_66a2380fcda39'),(93151,39499,'hero_style','default'),(93152,39499,'_hero_style','field_62051d9dc5324'),(93153,39499,'hero_image_pos_x','right'),(93154,39499,'_hero_image_pos_x','field_62ec3d05390bb'),(93155,39499,'hero_image_pos_y','top'),(93156,39499,'_hero_image_pos_y','field_62ec3d05390bc'),(93157,39499,'hero_image_pos',''),(93158,39499,'_hero_image_pos','field_62ec3d05390ba'),(93159,39499,'hero_title','About Us'),(93160,39499,'_hero_title','field_617571fe285e8'),(93161,39499,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(93162,39499,'_hero_text','field_6175723c285e9'),(93163,39499,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(93164,39499,'_hero_actions_0_button','field_61757281285eb'),(93165,39499,'hero_actions','1'),(93166,39499,'_hero_actions','field_61757270285ea'),(93167,39499,'hero_icon',''),(93168,39499,'_hero_icon','field_61a6182199d03'),(93169,39499,'fft_hide_from_listings','0'),(93170,39499,'_fft_hide_from_listings','field_61f1320446ab2'),(93171,39499,'fft_page_format','default'),(93172,39499,'_fft_page_format','field_61ae213f1f218'),(93173,39499,'fft_hide_nav','0'),(93174,39499,'_fft_hide_nav','field_635bd5e43527c'),(93175,39499,'fft_hide_header_call_to_action','0'),(93176,39499,'_fft_hide_header_call_to_action','field_635bd6723527d'),(93177,39499,'fft_page_sitemap','0'),(93178,39499,'_fft_page_sitemap','field_61af9b34e8181'),(93179,39499,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(93180,39499,'_blocks','field_6176696113096'),(93181,39499,'blocks_1_acfe_flexible_toggle',''),(93182,39499,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(93183,39499,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(93184,39499,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(93185,39499,'blocks_1_options_theme','#b61234'),(93186,39499,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(93187,39499,'blocks_1_options_reverse','0'),(93188,39499,'_blocks_1_options_reverse','field_61768049bb8ac'),(93189,39499,'blocks_1_options',''),(93190,39499,'_blocks_1_options','field_617682517c334'),(93191,39499,'blocks_1_split_5050_image','35276'),(93192,39499,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(93193,39499,'blocks_1_split_5050_video',''),(93194,39499,'_blocks_1_split_5050_video','field_6239f3160848a'),(93195,39499,'blocks_1_split_5050_content_title',''),(93196,39499,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(93197,39499,'blocks_1_split_5050_content_heading','What we do'),(93198,39499,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(93199,39499,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(93200,39499,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(93201,39499,'blocks_1_split_5050_content_actions',''),(93202,39499,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(93203,39499,'blocks_1_split_5050_content',''),(93204,39499,'_blocks_1_split_5050_content','field_61767afceb8ba'),(93205,39499,'blocks_2_acfe_flexible_toggle',''),(93206,39499,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(93207,39499,'blocks_2_acfe_flexible_layout_title','Video'),(93208,39499,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(93209,39499,'blocks_2_size','large'),(93210,39499,'_blocks_2_size','field_6487038f297c1'),(93211,39499,'blocks_2_row_content_title',''),(93212,39499,'_blocks_2_row_content_title','field_64870132a865d'),(93213,39499,'blocks_2_row_content_heading',''),(93214,39499,'_blocks_2_row_content_heading','field_64870142a865e'),(93215,39499,'blocks_2_row_content_text',''),(93216,39499,'_blocks_2_row_content_text','field_64870148a865f'),(93217,39499,'blocks_2_row_content',''),(93218,39499,'_blocks_2_row_content','field_6487008ba865c'),(93219,39499,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(93220,39499,'_blocks_2_video_src','field_6193c4a98ec07'),(93221,39499,'blocks_2_video_thumbnail','39175'),(93222,39499,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(93223,39499,'blocks_3_acfe_flexible_toggle',''),(93224,39499,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(93225,39499,'blocks_3_acfe_flexible_layout_title','Cards'),(93226,39499,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(93227,39499,'blocks_3_options_theme','#ffffff'),(93228,39499,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(93229,39499,'blocks_3_options_format','grid'),(93230,39499,'_blocks_3_options_format','field_617a7b15245b5'),(93231,39499,'blocks_3_options_style','default'),(93232,39499,'_blocks_3_options_style','field_6278ffb63484a'),(93233,39499,'blocks_3_options_cards_current_listing','0'),(93234,39499,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(93235,39499,'blocks_3_options_cards_content','custom'),(93236,39499,'_blocks_3_options_cards_content','field_617aba6122688'),(93237,39499,'blocks_3_options',''),(93238,39499,'_blocks_3_options','field_617a7b15245b3'),(93239,39499,'blocks_3_cards_custom_0_image','39353'),(93240,39499,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(93241,39499,'blocks_3_cards_custom_0_title','Our Team'),(93242,39499,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(93243,39499,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(93244,39499,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(93245,39499,'blocks_3_cards_custom_0_link',''),(93246,39499,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(93247,39499,'blocks_3_cards_custom_1_image',''),(93248,39499,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(93249,39499,'blocks_3_cards_custom_1_title','Our Partners'),(93250,39499,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(93251,39499,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(93252,39499,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(93253,39499,'blocks_3_cards_custom_1_link',''),(93254,39499,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(93255,39499,'blocks_3_cards_custom','2'),(93256,39499,'_blocks_3_cards_custom','field_6194cbf84d386'),(93257,39499,'_thumbnail_id','39186'),(93258,39499,'__thumbnail_id','field_617570855ddaf'),(93259,39499,'blocks_0_acfe_flexible_toggle',''),(93260,39499,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(93261,39499,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(93262,39499,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(93263,39499,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(93264,39499,'_blocks_0_content','field_6193c9b5eac84'),(93265,39499,'hide_hero','0'),(93266,39499,'_hide_hero','field_66a2380fcda39'),(93267,39500,'hero_style','default'),(93268,39500,'_hero_style','field_62051d9dc5324'),(93269,39500,'hero_image_pos_x','right'),(93270,39500,'_hero_image_pos_x','field_62ec3d05390bb'),(93271,39500,'hero_image_pos_y','top'),(93272,39500,'_hero_image_pos_y','field_62ec3d05390bc'),(93273,39500,'hero_image_pos',''),(93274,39500,'_hero_image_pos','field_62ec3d05390ba'),(93275,39500,'hero_title','About Us'),(93276,39500,'_hero_title','field_617571fe285e8'),(93277,39500,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(93278,39500,'_hero_text','field_6175723c285e9'),(93279,39500,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(93280,39500,'_hero_actions_0_button','field_61757281285eb'),(93281,39500,'hero_actions','1'),(93282,39500,'_hero_actions','field_61757270285ea'),(93283,39500,'hero_icon',''),(93284,39500,'_hero_icon','field_61a6182199d03'),(93285,39500,'fft_hide_from_listings','0'),(93286,39500,'_fft_hide_from_listings','field_61f1320446ab2'),(93287,39500,'fft_page_format','default'),(93288,39500,'_fft_page_format','field_61ae213f1f218'),(93289,39500,'fft_hide_nav','0'),(93290,39500,'_fft_hide_nav','field_635bd5e43527c'),(93291,39500,'fft_hide_header_call_to_action','0'),(93292,39500,'_fft_hide_header_call_to_action','field_635bd6723527d'),(93293,39500,'fft_page_sitemap','0'),(93294,39500,'_fft_page_sitemap','field_61af9b34e8181'),(93295,39500,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(93296,39500,'_blocks','field_6176696113096'),(93297,39500,'blocks_1_acfe_flexible_toggle',''),(93298,39500,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(93299,39500,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(93300,39500,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(93301,39500,'blocks_1_options_theme','#b61234'),(93302,39500,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(93303,39500,'blocks_1_options_reverse','0'),(93304,39500,'_blocks_1_options_reverse','field_61768049bb8ac'),(93305,39500,'blocks_1_options',''),(93306,39500,'_blocks_1_options','field_617682517c334'),(93307,39500,'blocks_1_split_5050_image','35276'),(93308,39500,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(93309,39500,'blocks_1_split_5050_video',''),(93310,39500,'_blocks_1_split_5050_video','field_6239f3160848a'),(93311,39500,'blocks_1_split_5050_content_title',''),(93312,39500,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(93313,39500,'blocks_1_split_5050_content_heading','What we do'),(93314,39500,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(93315,39500,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(93316,39500,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(93317,39500,'blocks_1_split_5050_content_actions',''),(93318,39500,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(93319,39500,'blocks_1_split_5050_content',''),(93320,39500,'_blocks_1_split_5050_content','field_61767afceb8ba'),(93321,39500,'blocks_2_acfe_flexible_toggle',''),(93322,39500,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(93323,39500,'blocks_2_acfe_flexible_layout_title','Video'),(93324,39500,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(93325,39500,'blocks_2_size','large'),(93326,39500,'_blocks_2_size','field_6487038f297c1'),(93327,39500,'blocks_2_row_content_title',''),(93328,39500,'_blocks_2_row_content_title','field_64870132a865d'),(93329,39500,'blocks_2_row_content_heading',''),(93330,39500,'_blocks_2_row_content_heading','field_64870142a865e'),(93331,39500,'blocks_2_row_content_text',''),(93332,39500,'_blocks_2_row_content_text','field_64870148a865f'),(93333,39500,'blocks_2_row_content',''),(93334,39500,'_blocks_2_row_content','field_6487008ba865c'),(93335,39500,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(93336,39500,'_blocks_2_video_src','field_6193c4a98ec07'),(93337,39500,'blocks_2_video_thumbnail','39175'),(93338,39500,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(93339,39500,'blocks_3_acfe_flexible_toggle',''),(93340,39500,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(93341,39500,'blocks_3_acfe_flexible_layout_title','Cards'),(93342,39500,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(93343,39500,'blocks_3_options_theme','#ffffff'),(93344,39500,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(93345,39500,'blocks_3_options_format','grid'),(93346,39500,'_blocks_3_options_format','field_617a7b15245b5'),(93347,39500,'blocks_3_options_style','default'),(93348,39500,'_blocks_3_options_style','field_6278ffb63484a'),(93349,39500,'blocks_3_options_cards_current_listing','0'),(93350,39500,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(93351,39500,'blocks_3_options_cards_content','custom'),(93352,39500,'_blocks_3_options_cards_content','field_617aba6122688'),(93353,39500,'blocks_3_options',''),(93354,39500,'_blocks_3_options','field_617a7b15245b3'),(93355,39500,'blocks_3_cards_custom_0_image','39353'),(93356,39500,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(93357,39500,'blocks_3_cards_custom_0_title','Our Team'),(93358,39500,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(93359,39500,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(93360,39500,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(93361,39500,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:15:\"Meet the Team !\";s:3:\"url\";s:43:\"https://biomechanicseducation.com/our-team/\";s:6:\"target\";s:0:\"\";}'),(93362,39500,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(93363,39500,'blocks_3_cards_custom_1_image',''),(93364,39500,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(93365,39500,'blocks_3_cards_custom_1_title','Our Partners'),(93366,39500,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(93367,39500,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(93368,39500,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(93369,39500,'blocks_3_cards_custom_1_link',''),(93370,39500,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(93371,39500,'blocks_3_cards_custom','2'),(93372,39500,'_blocks_3_cards_custom','field_6194cbf84d386'),(93373,39500,'_thumbnail_id','39186'),(93374,39500,'__thumbnail_id','field_617570855ddaf'),(93375,39500,'blocks_0_acfe_flexible_toggle',''),(93376,39500,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(93377,39500,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(93378,39500,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(93379,39500,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(93380,39500,'_blocks_0_content','field_6193c9b5eac84'),(93381,39500,'hide_hero','0'),(93382,39500,'_hide_hero','field_66a2380fcda39'),(93383,39501,'_wp_attached_file','2024/08/Untitled-design-3.png'),(93384,39501,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:400;s:4:\"file\";s:29:\"2024/08/Untitled-design-3.png\";s:8:\"filesize\";i:96769;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-3-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62031;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-3-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69612;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-3-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61920;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-3-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48114;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-3-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72252;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-3-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61774;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(93385,39502,'hero_style','default'),(93386,39502,'_hero_style','field_62051d9dc5324'),(93387,39502,'hero_image_pos_x','right'),(93388,39502,'_hero_image_pos_x','field_62ec3d05390bb'),(93389,39502,'hero_image_pos_y','top'),(93390,39502,'_hero_image_pos_y','field_62ec3d05390bc'),(93391,39502,'hero_image_pos',''),(93392,39502,'_hero_image_pos','field_62ec3d05390ba'),(93393,39502,'hero_title','About Us'),(93394,39502,'_hero_title','field_617571fe285e8'),(93395,39502,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(93396,39502,'_hero_text','field_6175723c285e9'),(93397,39502,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(93398,39502,'_hero_actions_0_button','field_61757281285eb'),(93399,39502,'hero_actions','1'),(93400,39502,'_hero_actions','field_61757270285ea'),(93401,39502,'hero_icon',''),(93402,39502,'_hero_icon','field_61a6182199d03'),(93403,39502,'fft_hide_from_listings','0'),(93404,39502,'_fft_hide_from_listings','field_61f1320446ab2'),(93405,39502,'fft_page_format','default'),(93406,39502,'_fft_page_format','field_61ae213f1f218'),(93407,39502,'fft_hide_nav','0'),(93408,39502,'_fft_hide_nav','field_635bd5e43527c'),(93409,39502,'fft_hide_header_call_to_action','0'),(93410,39502,'_fft_hide_header_call_to_action','field_635bd6723527d'),(93411,39502,'fft_page_sitemap','0'),(93412,39502,'_fft_page_sitemap','field_61af9b34e8181'),(93413,39502,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(93414,39502,'_blocks','field_6176696113096'),(93415,39502,'blocks_1_acfe_flexible_toggle',''),(93416,39502,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(93417,39502,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(93418,39502,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(93419,39502,'blocks_1_options_theme','#b61234'),(93420,39502,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(93421,39502,'blocks_1_options_reverse','0'),(93422,39502,'_blocks_1_options_reverse','field_61768049bb8ac'),(93423,39502,'blocks_1_options',''),(93424,39502,'_blocks_1_options','field_617682517c334'),(93425,39502,'blocks_1_split_5050_image','35276'),(93426,39502,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(93427,39502,'blocks_1_split_5050_video',''),(93428,39502,'_blocks_1_split_5050_video','field_6239f3160848a'),(93429,39502,'blocks_1_split_5050_content_title',''),(93430,39502,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(93431,39502,'blocks_1_split_5050_content_heading','What we do'),(93432,39502,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(93433,39502,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(93434,39502,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(93435,39502,'blocks_1_split_5050_content_actions',''),(93436,39502,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(93437,39502,'blocks_1_split_5050_content',''),(93438,39502,'_blocks_1_split_5050_content','field_61767afceb8ba'),(93439,39502,'blocks_2_acfe_flexible_toggle',''),(93440,39502,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(93441,39502,'blocks_2_acfe_flexible_layout_title','Video'),(93442,39502,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(93443,39502,'blocks_2_size','large'),(93444,39502,'_blocks_2_size','field_6487038f297c1'),(93445,39502,'blocks_2_row_content_title',''),(93446,39502,'_blocks_2_row_content_title','field_64870132a865d'),(93447,39502,'blocks_2_row_content_heading',''),(93448,39502,'_blocks_2_row_content_heading','field_64870142a865e'),(93449,39502,'blocks_2_row_content_text',''),(93450,39502,'_blocks_2_row_content_text','field_64870148a865f'),(93451,39502,'blocks_2_row_content',''),(93452,39502,'_blocks_2_row_content','field_6487008ba865c'),(93453,39502,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(93454,39502,'_blocks_2_video_src','field_6193c4a98ec07'),(93455,39502,'blocks_2_video_thumbnail','39175'),(93456,39502,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(93457,39502,'blocks_3_acfe_flexible_toggle',''),(93458,39502,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(93459,39502,'blocks_3_acfe_flexible_layout_title','Cards'),(93460,39502,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(93461,39502,'blocks_3_options_theme','#ffffff'),(93462,39502,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(93463,39502,'blocks_3_options_format','grid'),(93464,39502,'_blocks_3_options_format','field_617a7b15245b5'),(93465,39502,'blocks_3_options_style','default'),(93466,39502,'_blocks_3_options_style','field_6278ffb63484a'),(93467,39502,'blocks_3_options_cards_current_listing','0'),(93468,39502,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(93469,39502,'blocks_3_options_cards_content','custom'),(93470,39502,'_blocks_3_options_cards_content','field_617aba6122688'),(93471,39502,'blocks_3_options',''),(93472,39502,'_blocks_3_options','field_617a7b15245b3'),(93473,39502,'blocks_3_cards_custom_0_image','39353'),(93474,39502,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(93475,39502,'blocks_3_cards_custom_0_title','Our Team'),(93476,39502,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(93477,39502,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(93478,39502,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(93479,39502,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:15:\"Meet the Team !\";s:3:\"url\";s:43:\"https://biomechanicseducation.com/our-team/\";s:6:\"target\";s:0:\"\";}'),(93480,39502,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(93481,39502,'blocks_3_cards_custom_1_image','39501'),(93482,39502,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(93483,39502,'blocks_3_cards_custom_1_title','Our Partners'),(93484,39502,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(93485,39502,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(93486,39502,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(93487,39502,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(93488,39502,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(93489,39502,'blocks_3_cards_custom','2'),(93490,39502,'_blocks_3_cards_custom','field_6194cbf84d386'),(93491,39502,'_thumbnail_id','39186'),(93492,39502,'__thumbnail_id','field_617570855ddaf'),(93493,39502,'blocks_0_acfe_flexible_toggle',''),(93494,39502,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(93495,39502,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(93496,39502,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(93497,39502,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(93498,39502,'_blocks_0_content','field_6193c9b5eac84'),(93499,39502,'hide_hero','0'),(93500,39502,'_hide_hero','field_66a2380fcda39'),(93617,39504,'_wp_attached_file','2024/08/Untitled-design-5.png'),(93618,39504,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:29:\"2024/08/Untitled-design-5.png\";s:8:\"filesize\";i:95500;s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62897;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62897;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44876;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58928;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55995;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37083;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:29:\"Untitled-design-5-600x506.png\";s:5:\"width\";i:600;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91556;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(93619,39505,'hero_style','default'),(93620,39505,'_hero_style','field_62051d9dc5324'),(93621,39505,'hero_image_pos_x','right'),(93622,39505,'_hero_image_pos_x','field_62ec3d05390bb'),(93623,39505,'hero_image_pos_y','top'),(93624,39505,'_hero_image_pos_y','field_62ec3d05390bc'),(93625,39505,'hero_image_pos',''),(93626,39505,'_hero_image_pos','field_62ec3d05390ba'),(93627,39505,'hero_title','About Us'),(93628,39505,'_hero_title','field_617571fe285e8'),(93629,39505,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(93630,39505,'_hero_text','field_6175723c285e9'),(93631,39505,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(93632,39505,'_hero_actions_0_button','field_61757281285eb'),(93633,39505,'hero_actions','1'),(93634,39505,'_hero_actions','field_61757270285ea'),(93635,39505,'hero_icon',''),(93636,39505,'_hero_icon','field_61a6182199d03'),(93637,39505,'fft_hide_from_listings','0'),(93638,39505,'_fft_hide_from_listings','field_61f1320446ab2'),(93639,39505,'fft_page_format','default'),(93640,39505,'_fft_page_format','field_61ae213f1f218'),(93641,39505,'fft_hide_nav','0'),(93642,39505,'_fft_hide_nav','field_635bd5e43527c'),(93643,39505,'fft_hide_header_call_to_action','0'),(93644,39505,'_fft_hide_header_call_to_action','field_635bd6723527d'),(93645,39505,'fft_page_sitemap','0'),(93646,39505,'_fft_page_sitemap','field_61af9b34e8181'),(93647,39505,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(93648,39505,'_blocks','field_6176696113096'),(93649,39505,'blocks_1_acfe_flexible_toggle',''),(93650,39505,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(93651,39505,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(93652,39505,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(93653,39505,'blocks_1_options_theme','#b61234'),(93654,39505,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(93655,39505,'blocks_1_options_reverse','0'),(93656,39505,'_blocks_1_options_reverse','field_61768049bb8ac'),(93657,39505,'blocks_1_options',''),(93658,39505,'_blocks_1_options','field_617682517c334'),(93659,39505,'blocks_1_split_5050_image','35276'),(93660,39505,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(93661,39505,'blocks_1_split_5050_video',''),(93662,39505,'_blocks_1_split_5050_video','field_6239f3160848a'),(93663,39505,'blocks_1_split_5050_content_title',''),(93664,39505,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(93665,39505,'blocks_1_split_5050_content_heading','What we do'),(93666,39505,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(93667,39505,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(93668,39505,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(93669,39505,'blocks_1_split_5050_content_actions',''),(93670,39505,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(93671,39505,'blocks_1_split_5050_content',''),(93672,39505,'_blocks_1_split_5050_content','field_61767afceb8ba'),(93673,39505,'blocks_2_acfe_flexible_toggle',''),(93674,39505,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(93675,39505,'blocks_2_acfe_flexible_layout_title','Video'),(93676,39505,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(93677,39505,'blocks_2_size','large'),(93678,39505,'_blocks_2_size','field_6487038f297c1'),(93679,39505,'blocks_2_row_content_title',''),(93680,39505,'_blocks_2_row_content_title','field_64870132a865d'),(93681,39505,'blocks_2_row_content_heading',''),(93682,39505,'_blocks_2_row_content_heading','field_64870142a865e'),(93683,39505,'blocks_2_row_content_text',''),(93684,39505,'_blocks_2_row_content_text','field_64870148a865f'),(93685,39505,'blocks_2_row_content',''),(93686,39505,'_blocks_2_row_content','field_6487008ba865c'),(93687,39505,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(93688,39505,'_blocks_2_video_src','field_6193c4a98ec07'),(93689,39505,'blocks_2_video_thumbnail','39175'),(93690,39505,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(93691,39505,'blocks_3_acfe_flexible_toggle',''),(93692,39505,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(93693,39505,'blocks_3_acfe_flexible_layout_title','Cards'),(93694,39505,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(93695,39505,'blocks_3_options_theme','#ffffff'),(93696,39505,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(93697,39505,'blocks_3_options_format','grid'),(93698,39505,'_blocks_3_options_format','field_617a7b15245b5'),(93699,39505,'blocks_3_options_style','default'),(93700,39505,'_blocks_3_options_style','field_6278ffb63484a'),(93701,39505,'blocks_3_options_cards_current_listing','0'),(93702,39505,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(93703,39505,'blocks_3_options_cards_content','custom'),(93704,39505,'_blocks_3_options_cards_content','field_617aba6122688'),(93705,39505,'blocks_3_options',''),(93706,39505,'_blocks_3_options','field_617a7b15245b3'),(93707,39505,'blocks_3_cards_custom_0_image','39353'),(93708,39505,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(93709,39505,'blocks_3_cards_custom_0_title','Our Team'),(93710,39505,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(93711,39505,'blocks_3_cards_custom_0_text','We’re dedicated to providing an educational and supportive environment throughout all we do here at Biomechanics Education. Meet the team. '),(93712,39505,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(93713,39505,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:15:\"Meet the Team !\";s:3:\"url\";s:43:\"https://biomechanicseducation.com/our-team/\";s:6:\"target\";s:0:\"\";}'),(93714,39505,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(93715,39505,'blocks_3_cards_custom_1_image','39504'),(93716,39505,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(93717,39505,'blocks_3_cards_custom_1_title','Our Partners'),(93718,39505,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(93719,39505,'blocks_3_cards_custom_1_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(93720,39505,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(93721,39505,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(93722,39505,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(93723,39505,'blocks_3_cards_custom','2'),(93724,39505,'_blocks_3_cards_custom','field_6194cbf84d386'),(93725,39505,'_thumbnail_id','39186'),(93726,39505,'__thumbnail_id','field_617570855ddaf'),(93727,39505,'blocks_0_acfe_flexible_toggle',''),(93728,39505,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(93729,39505,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(93730,39505,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(93731,39505,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(93732,39505,'_blocks_0_content','field_6193c9b5eac84'),(93733,39505,'hide_hero','0'),(93734,39505,'_hide_hero','field_66a2380fcda39'),(93735,39506,'hero_style','default'),(93736,39506,'_hero_style','field_62051d9dc5324'),(93737,39506,'hero_image_pos_x','right'),(93738,39506,'_hero_image_pos_x','field_62ec3d05390bb'),(93739,39506,'hero_image_pos_y','top'),(93740,39506,'_hero_image_pos_y','field_62ec3d05390bc'),(93741,39506,'hero_image_pos',''),(93742,39506,'_hero_image_pos','field_62ec3d05390ba'),(93743,39506,'hero_title','About Us'),(93744,39506,'_hero_title','field_617571fe285e8'),(93745,39506,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(93746,39506,'_hero_text','field_6175723c285e9'),(93747,39506,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(93748,39506,'_hero_actions_0_button','field_61757281285eb'),(93749,39506,'hero_actions','1'),(93750,39506,'_hero_actions','field_61757270285ea'),(93751,39506,'hero_icon',''),(93752,39506,'_hero_icon','field_61a6182199d03'),(93753,39506,'fft_hide_from_listings','0'),(93754,39506,'_fft_hide_from_listings','field_61f1320446ab2'),(93755,39506,'fft_page_format','default'),(93756,39506,'_fft_page_format','field_61ae213f1f218'),(93757,39506,'fft_hide_nav','0'),(93758,39506,'_fft_hide_nav','field_635bd5e43527c'),(93759,39506,'fft_hide_header_call_to_action','0'),(93760,39506,'_fft_hide_header_call_to_action','field_635bd6723527d'),(93761,39506,'fft_page_sitemap','0'),(93762,39506,'_fft_page_sitemap','field_61af9b34e8181'),(93763,39506,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(93764,39506,'_blocks','field_6176696113096'),(93765,39506,'blocks_1_acfe_flexible_toggle',''),(93766,39506,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(93767,39506,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(93768,39506,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(93769,39506,'blocks_1_options_theme','#b61234'),(93770,39506,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(93771,39506,'blocks_1_options_reverse','0'),(93772,39506,'_blocks_1_options_reverse','field_61768049bb8ac'),(93773,39506,'blocks_1_options',''),(93774,39506,'_blocks_1_options','field_617682517c334'),(93775,39506,'blocks_1_split_5050_image','35276'),(93776,39506,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(93777,39506,'blocks_1_split_5050_video',''),(93778,39506,'_blocks_1_split_5050_video','field_6239f3160848a'),(93779,39506,'blocks_1_split_5050_content_title',''),(93780,39506,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(93781,39506,'blocks_1_split_5050_content_heading','What we do'),(93782,39506,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(93783,39506,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(93784,39506,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(93785,39506,'blocks_1_split_5050_content_actions',''),(93786,39506,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(93787,39506,'blocks_1_split_5050_content',''),(93788,39506,'_blocks_1_split_5050_content','field_61767afceb8ba'),(93789,39506,'blocks_2_acfe_flexible_toggle',''),(93790,39506,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(93791,39506,'blocks_2_acfe_flexible_layout_title','Video'),(93792,39506,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(93793,39506,'blocks_2_size','large'),(93794,39506,'_blocks_2_size','field_6487038f297c1'),(93795,39506,'blocks_2_row_content_title',''),(93796,39506,'_blocks_2_row_content_title','field_64870132a865d'),(93797,39506,'blocks_2_row_content_heading',''),(93798,39506,'_blocks_2_row_content_heading','field_64870142a865e'),(93799,39506,'blocks_2_row_content_text',''),(93800,39506,'_blocks_2_row_content_text','field_64870148a865f'),(93801,39506,'blocks_2_row_content',''),(93802,39506,'_blocks_2_row_content','field_6487008ba865c'),(93803,39506,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(93804,39506,'_blocks_2_video_src','field_6193c4a98ec07'),(93805,39506,'blocks_2_video_thumbnail','39175'),(93806,39506,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(93807,39506,'blocks_3_acfe_flexible_toggle',''),(93808,39506,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(93809,39506,'blocks_3_acfe_flexible_layout_title','Cards'),(93810,39506,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(93811,39506,'blocks_3_options_theme','#ffffff'),(93812,39506,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(93813,39506,'blocks_3_options_format','grid'),(93814,39506,'_blocks_3_options_format','field_617a7b15245b5'),(93815,39506,'blocks_3_options_style','default'),(93816,39506,'_blocks_3_options_style','field_6278ffb63484a'),(93817,39506,'blocks_3_options_cards_current_listing','0'),(93818,39506,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(93819,39506,'blocks_3_options_cards_content','custom'),(93820,39506,'_blocks_3_options_cards_content','field_617aba6122688'),(93821,39506,'blocks_3_options',''),(93822,39506,'_blocks_3_options','field_617a7b15245b3'),(93823,39506,'blocks_3_cards_custom_0_image','39504'),(93824,39506,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(93825,39506,'blocks_3_cards_custom_0_title','Our Partners'),(93826,39506,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(93827,39506,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(93828,39506,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(93829,39506,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(93830,39506,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(93831,39506,'blocks_3_cards_custom','1'),(93832,39506,'_blocks_3_cards_custom','field_6194cbf84d386'),(93833,39506,'_thumbnail_id','39186'),(93834,39506,'__thumbnail_id','field_617570855ddaf'),(93835,39506,'blocks_0_acfe_flexible_toggle',''),(93836,39506,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(93837,39506,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(93838,39506,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(93839,39506,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(93840,39506,'_blocks_0_content','field_6193c9b5eac84'),(93841,39506,'hide_hero','0'),(93842,39506,'_hide_hero','field_66a2380fcda39'),(93843,39507,'hero_style','default'),(93844,39507,'_hero_style','field_62051d9dc5324'),(93845,39507,'hero_image_pos_x','right'),(93846,39507,'_hero_image_pos_x','field_62ec3d05390bb'),(93847,39507,'hero_image_pos_y','top'),(93848,39507,'_hero_image_pos_y','field_62ec3d05390bc'),(93849,39507,'hero_image_pos',''),(93850,39507,'_hero_image_pos','field_62ec3d05390ba'),(93851,39507,'hero_title','About Us'),(93852,39507,'_hero_title','field_617571fe285e8'),(93853,39507,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(93854,39507,'_hero_text','field_6175723c285e9'),(93855,39507,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(93856,39507,'_hero_actions_0_button','field_61757281285eb'),(93857,39507,'hero_actions','1'),(93858,39507,'_hero_actions','field_61757270285ea'),(93859,39507,'hero_icon',''),(93860,39507,'_hero_icon','field_61a6182199d03'),(93861,39507,'fft_hide_from_listings','0'),(93862,39507,'_fft_hide_from_listings','field_61f1320446ab2'),(93863,39507,'fft_page_format','default'),(93864,39507,'_fft_page_format','field_61ae213f1f218'),(93865,39507,'fft_hide_nav','0'),(93866,39507,'_fft_hide_nav','field_635bd5e43527c'),(93867,39507,'fft_hide_header_call_to_action','0'),(93868,39507,'_fft_hide_header_call_to_action','field_635bd6723527d'),(93869,39507,'fft_page_sitemap','0'),(93870,39507,'_fft_page_sitemap','field_61af9b34e8181'),(93871,39507,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(93872,39507,'_blocks','field_6176696113096'),(93873,39507,'blocks_1_acfe_flexible_toggle',''),(93874,39507,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(93875,39507,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(93876,39507,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(93877,39507,'blocks_1_options_theme','#b61234'),(93878,39507,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(93879,39507,'blocks_1_options_reverse','0'),(93880,39507,'_blocks_1_options_reverse','field_61768049bb8ac'),(93881,39507,'blocks_1_options',''),(93882,39507,'_blocks_1_options','field_617682517c334'),(93883,39507,'blocks_1_split_5050_image','35276'),(93884,39507,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(93885,39507,'blocks_1_split_5050_video',''),(93886,39507,'_blocks_1_split_5050_video','field_6239f3160848a'),(93887,39507,'blocks_1_split_5050_content_title',''),(93888,39507,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(93889,39507,'blocks_1_split_5050_content_heading','What we do'),(93890,39507,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(93891,39507,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(93892,39507,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(93893,39507,'blocks_1_split_5050_content_actions',''),(93894,39507,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(93895,39507,'blocks_1_split_5050_content',''),(93896,39507,'_blocks_1_split_5050_content','field_61767afceb8ba'),(93897,39507,'blocks_2_acfe_flexible_toggle',''),(93898,39507,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(93899,39507,'blocks_2_acfe_flexible_layout_title','Video'),(93900,39507,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(93901,39507,'blocks_2_size','large'),(93902,39507,'_blocks_2_size','field_6487038f297c1'),(93903,39507,'blocks_2_row_content_title',''),(93904,39507,'_blocks_2_row_content_title','field_64870132a865d'),(93905,39507,'blocks_2_row_content_heading',''),(93906,39507,'_blocks_2_row_content_heading','field_64870142a865e'),(93907,39507,'blocks_2_row_content_text',''),(93908,39507,'_blocks_2_row_content_text','field_64870148a865f'),(93909,39507,'blocks_2_row_content',''),(93910,39507,'_blocks_2_row_content','field_6487008ba865c'),(93911,39507,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(93912,39507,'_blocks_2_video_src','field_6193c4a98ec07'),(93913,39507,'blocks_2_video_thumbnail','39175'),(93914,39507,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(93915,39507,'blocks_3_acfe_flexible_toggle',''),(93916,39507,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(93917,39507,'blocks_3_acfe_flexible_layout_title','Cards'),(93918,39507,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(93919,39507,'blocks_3_options_theme','#ffffff'),(93920,39507,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(93921,39507,'blocks_3_options_format','carousel'),(93922,39507,'_blocks_3_options_format','field_617a7b15245b5'),(93923,39507,'blocks_3_options_style','default'),(93924,39507,'_blocks_3_options_style','field_6278ffb63484a'),(93925,39507,'blocks_3_options_cards_current_listing','0'),(93926,39507,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(93927,39507,'blocks_3_options_cards_content','custom'),(93928,39507,'_blocks_3_options_cards_content','field_617aba6122688'),(93929,39507,'blocks_3_options',''),(93930,39507,'_blocks_3_options','field_617a7b15245b3'),(93931,39507,'blocks_3_cards_custom_0_image','39504'),(93932,39507,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(93933,39507,'blocks_3_cards_custom_0_title','Our Partners'),(93934,39507,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(93935,39507,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(93936,39507,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(93937,39507,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(93938,39507,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(93939,39507,'blocks_3_cards_custom','1'),(93940,39507,'_blocks_3_cards_custom','field_6194cbf84d386'),(93941,39507,'_thumbnail_id','39186'),(93942,39507,'__thumbnail_id','field_617570855ddaf'),(93943,39507,'blocks_0_acfe_flexible_toggle',''),(93944,39507,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(93945,39507,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(93946,39507,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(93947,39507,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(93948,39507,'_blocks_0_content','field_6193c9b5eac84'),(93949,39507,'hide_hero','0'),(93950,39507,'_hide_hero','field_66a2380fcda39'),(93951,39508,'hero_style','default'),(93952,39508,'_hero_style','field_62051d9dc5324'),(93953,39508,'hero_image_pos_x','right'),(93954,39508,'_hero_image_pos_x','field_62ec3d05390bb'),(93955,39508,'hero_image_pos_y','top'),(93956,39508,'_hero_image_pos_y','field_62ec3d05390bc'),(93957,39508,'hero_image_pos',''),(93958,39508,'_hero_image_pos','field_62ec3d05390ba'),(93959,39508,'hero_title','About Us'),(93960,39508,'_hero_title','field_617571fe285e8'),(93961,39508,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(93962,39508,'_hero_text','field_6175723c285e9'),(93963,39508,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(93964,39508,'_hero_actions_0_button','field_61757281285eb'),(93965,39508,'hero_actions','1'),(93966,39508,'_hero_actions','field_61757270285ea'),(93967,39508,'hero_icon',''),(93968,39508,'_hero_icon','field_61a6182199d03'),(93969,39508,'fft_hide_from_listings','0'),(93970,39508,'_fft_hide_from_listings','field_61f1320446ab2'),(93971,39508,'fft_page_format','default'),(93972,39508,'_fft_page_format','field_61ae213f1f218'),(93973,39508,'fft_hide_nav','0'),(93974,39508,'_fft_hide_nav','field_635bd5e43527c'),(93975,39508,'fft_hide_header_call_to_action','0'),(93976,39508,'_fft_hide_header_call_to_action','field_635bd6723527d'),(93977,39508,'fft_page_sitemap','0'),(93978,39508,'_fft_page_sitemap','field_61af9b34e8181'),(93979,39508,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(93980,39508,'_blocks','field_6176696113096'),(93981,39508,'blocks_1_acfe_flexible_toggle',''),(93982,39508,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(93983,39508,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(93984,39508,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(93985,39508,'blocks_1_options_theme','#b61234'),(93986,39508,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(93987,39508,'blocks_1_options_reverse','0'),(93988,39508,'_blocks_1_options_reverse','field_61768049bb8ac'),(93989,39508,'blocks_1_options',''),(93990,39508,'_blocks_1_options','field_617682517c334'),(93991,39508,'blocks_1_split_5050_image','35276'),(93992,39508,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(93993,39508,'blocks_1_split_5050_video',''),(93994,39508,'_blocks_1_split_5050_video','field_6239f3160848a'),(93995,39508,'blocks_1_split_5050_content_title',''),(93996,39508,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(93997,39508,'blocks_1_split_5050_content_heading','What we do'),(93998,39508,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(93999,39508,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(94000,39508,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(94001,39508,'blocks_1_split_5050_content_actions',''),(94002,39508,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(94003,39508,'blocks_1_split_5050_content',''),(94004,39508,'_blocks_1_split_5050_content','field_61767afceb8ba'),(94005,39508,'blocks_2_acfe_flexible_toggle',''),(94006,39508,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(94007,39508,'blocks_2_acfe_flexible_layout_title','Video'),(94008,39508,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(94009,39508,'blocks_2_size','large'),(94010,39508,'_blocks_2_size','field_6487038f297c1'),(94011,39508,'blocks_2_row_content_title',''),(94012,39508,'_blocks_2_row_content_title','field_64870132a865d'),(94013,39508,'blocks_2_row_content_heading',''),(94014,39508,'_blocks_2_row_content_heading','field_64870142a865e'),(94015,39508,'blocks_2_row_content_text',''),(94016,39508,'_blocks_2_row_content_text','field_64870148a865f'),(94017,39508,'blocks_2_row_content',''),(94018,39508,'_blocks_2_row_content','field_6487008ba865c'),(94019,39508,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(94020,39508,'_blocks_2_video_src','field_6193c4a98ec07'),(94021,39508,'blocks_2_video_thumbnail','39175'),(94022,39508,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(94023,39508,'blocks_3_acfe_flexible_toggle',''),(94024,39508,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(94025,39508,'blocks_3_acfe_flexible_layout_title','Cards'),(94026,39508,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(94027,39508,'blocks_3_options_theme','#ffffff'),(94028,39508,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(94029,39508,'blocks_3_options_format','row'),(94030,39508,'_blocks_3_options_format','field_617a7b15245b5'),(94031,39508,'blocks_3_options_style','default'),(94032,39508,'_blocks_3_options_style','field_6278ffb63484a'),(94033,39508,'blocks_3_options_cards_current_listing','0'),(94034,39508,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(94035,39508,'blocks_3_options_cards_content','custom'),(94036,39508,'_blocks_3_options_cards_content','field_617aba6122688'),(94037,39508,'blocks_3_options',''),(94038,39508,'_blocks_3_options','field_617a7b15245b3'),(94039,39508,'blocks_3_cards_custom_0_image','39504'),(94040,39508,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(94041,39508,'blocks_3_cards_custom_0_title','Our Partners'),(94042,39508,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(94043,39508,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(94044,39508,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(94045,39508,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(94046,39508,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(94047,39508,'blocks_3_cards_custom','1'),(94048,39508,'_blocks_3_cards_custom','field_6194cbf84d386'),(94049,39508,'_thumbnail_id','39186'),(94050,39508,'__thumbnail_id','field_617570855ddaf'),(94051,39508,'blocks_0_acfe_flexible_toggle',''),(94052,39508,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(94053,39508,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(94054,39508,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(94055,39508,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(94056,39508,'_blocks_0_content','field_6193c9b5eac84'),(94057,39508,'hide_hero','0'),(94058,39508,'_hide_hero','field_66a2380fcda39'),(94069,39509,'hero_style','default'),(94070,39509,'_hero_style','field_62051d9dc5324'),(94071,39509,'hero_image_pos_x','right'),(94072,39509,'_hero_image_pos_x','field_62ec3d05390bb'),(94073,39509,'hero_image_pos_y','top'),(94074,39509,'_hero_image_pos_y','field_62ec3d05390bc'),(94075,39509,'hero_image_pos',''),(94076,39509,'_hero_image_pos','field_62ec3d05390ba'),(94077,39509,'hero_title','About Us'),(94078,39509,'_hero_title','field_617571fe285e8'),(94079,39509,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(94080,39509,'_hero_text','field_6175723c285e9'),(94081,39509,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(94082,39509,'_hero_actions_0_button','field_61757281285eb'),(94083,39509,'hero_actions','1'),(94084,39509,'_hero_actions','field_61757270285ea'),(94085,39509,'hero_icon',''),(94086,39509,'_hero_icon','field_61a6182199d03'),(94087,39509,'fft_hide_from_listings','0'),(94088,39509,'_fft_hide_from_listings','field_61f1320446ab2'),(94089,39509,'fft_page_format','default'),(94090,39509,'_fft_page_format','field_61ae213f1f218'),(94091,39509,'fft_hide_nav','0'),(94092,39509,'_fft_hide_nav','field_635bd5e43527c'),(94093,39509,'fft_hide_header_call_to_action','0'),(94094,39509,'_fft_hide_header_call_to_action','field_635bd6723527d'),(94095,39509,'fft_page_sitemap','0'),(94096,39509,'_fft_page_sitemap','field_61af9b34e8181'),(94097,39509,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";}'),(94098,39509,'_blocks','field_6176696113096'),(94099,39509,'blocks_1_acfe_flexible_toggle',''),(94100,39509,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(94101,39509,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(94102,39509,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(94103,39509,'blocks_1_options_theme','#b61234'),(94104,39509,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(94105,39509,'blocks_1_options_reverse','0'),(94106,39509,'_blocks_1_options_reverse','field_61768049bb8ac'),(94107,39509,'blocks_1_options',''),(94108,39509,'_blocks_1_options','field_617682517c334'),(94109,39509,'blocks_1_split_5050_image','35276'),(94110,39509,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(94111,39509,'blocks_1_split_5050_video',''),(94112,39509,'_blocks_1_split_5050_video','field_6239f3160848a'),(94113,39509,'blocks_1_split_5050_content_title',''),(94114,39509,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(94115,39509,'blocks_1_split_5050_content_heading','What we do'),(94116,39509,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(94117,39509,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(94118,39509,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(94119,39509,'blocks_1_split_5050_content_actions',''),(94120,39509,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(94121,39509,'blocks_1_split_5050_content',''),(94122,39509,'_blocks_1_split_5050_content','field_61767afceb8ba'),(94123,39509,'blocks_2_acfe_flexible_toggle',''),(94124,39509,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(94125,39509,'blocks_2_acfe_flexible_layout_title','Video'),(94126,39509,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(94127,39509,'blocks_2_size','large'),(94128,39509,'_blocks_2_size','field_6487038f297c1'),(94129,39509,'blocks_2_row_content_title',''),(94130,39509,'_blocks_2_row_content_title','field_64870132a865d'),(94131,39509,'blocks_2_row_content_heading',''),(94132,39509,'_blocks_2_row_content_heading','field_64870142a865e'),(94133,39509,'blocks_2_row_content_text',''),(94134,39509,'_blocks_2_row_content_text','field_64870148a865f'),(94135,39509,'blocks_2_row_content',''),(94136,39509,'_blocks_2_row_content','field_6487008ba865c'),(94137,39509,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(94138,39509,'_blocks_2_video_src','field_6193c4a98ec07'),(94139,39509,'blocks_2_video_thumbnail','39175'),(94140,39509,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(94141,39509,'blocks_3_acfe_flexible_toggle',''),(94142,39509,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(94143,39509,'blocks_3_acfe_flexible_layout_title','Cards'),(94144,39509,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(94145,39509,'blocks_3_options_theme','#ffffff'),(94146,39509,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(94147,39509,'blocks_3_options_format','stack'),(94148,39509,'_blocks_3_options_format','field_617a7b15245b5'),(94149,39509,'blocks_3_options_style','default'),(94150,39509,'_blocks_3_options_style','field_6278ffb63484a'),(94151,39509,'blocks_3_options_cards_current_listing','0'),(94152,39509,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(94153,39509,'blocks_3_options_cards_content','custom'),(94154,39509,'_blocks_3_options_cards_content','field_617aba6122688'),(94155,39509,'blocks_3_options',''),(94156,39509,'_blocks_3_options','field_617a7b15245b3'),(94157,39509,'blocks_3_cards_custom_0_image','39504'),(94158,39509,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(94159,39509,'blocks_3_cards_custom_0_title','Our Partners'),(94160,39509,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(94161,39509,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(94162,39509,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(94163,39509,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(94164,39509,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(94165,39509,'blocks_3_cards_custom','1'),(94166,39509,'_blocks_3_cards_custom','field_6194cbf84d386'),(94167,39509,'_thumbnail_id','39186'),(94168,39509,'__thumbnail_id','field_617570855ddaf'),(94169,39509,'blocks_0_acfe_flexible_toggle',''),(94170,39509,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(94171,39509,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(94172,39509,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(94173,39509,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(94174,39509,'_blocks_0_content','field_6193c9b5eac84'),(94175,39509,'hide_hero','0'),(94176,39509,'_hide_hero','field_66a2380fcda39'),(94177,39509,'blocks_3_cards_row_content_title',''),(94178,39509,'_blocks_3_cards_row_content_title','field_6194fc1bc99fd'),(94179,39509,'blocks_3_cards_row_content_heading',''),(94180,39509,'_blocks_3_cards_row_content_heading','field_6194fc1bc99fe'),(94181,39509,'blocks_3_cards_row_content_text',''),(94182,39509,'_blocks_3_cards_row_content_text','field_6194fc1bc99ff'),(94183,39509,'blocks_3_cards_row_content_actions',''),(94184,39509,'_blocks_3_cards_row_content_actions','field_6194fc1bc9a00'),(94185,39509,'blocks_3_cards_row_content',''),(94186,39509,'_blocks_3_cards_row_content','field_6194fc1bc99fc'),(94213,39510,'hero_style','default'),(94214,39510,'_hero_style','field_62051d9dc5324'),(94215,39510,'hero_image_pos_x','right'),(94216,39510,'_hero_image_pos_x','field_62ec3d05390bb'),(94217,39510,'hero_image_pos_y','top'),(94218,39510,'_hero_image_pos_y','field_62ec3d05390bc'),(94219,39510,'hero_image_pos',''),(94220,39510,'_hero_image_pos','field_62ec3d05390ba'),(94221,39510,'hero_title','About Us'),(94222,39510,'_hero_title','field_617571fe285e8'),(94223,39510,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(94224,39510,'_hero_text','field_6175723c285e9'),(94225,39510,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(94226,39510,'_hero_actions_0_button','field_61757281285eb'),(94227,39510,'hero_actions','1'),(94228,39510,'_hero_actions','field_61757270285ea'),(94229,39510,'hero_icon',''),(94230,39510,'_hero_icon','field_61a6182199d03'),(94231,39510,'fft_hide_from_listings','0'),(94232,39510,'_fft_hide_from_listings','field_61f1320446ab2'),(94233,39510,'fft_page_format','default'),(94234,39510,'_fft_page_format','field_61ae213f1f218'),(94235,39510,'fft_hide_nav','0'),(94236,39510,'_fft_hide_nav','field_635bd5e43527c'),(94237,39510,'fft_hide_header_call_to_action','0'),(94238,39510,'_fft_hide_header_call_to_action','field_635bd6723527d'),(94239,39510,'fft_page_sitemap','0'),(94240,39510,'_fft_page_sitemap','field_61af9b34e8181'),(94241,39510,'blocks','a:5:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";}'),(94242,39510,'_blocks','field_6176696113096'),(94243,39510,'blocks_1_acfe_flexible_toggle',''),(94244,39510,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(94245,39510,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(94246,39510,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(94247,39510,'blocks_1_options_theme','#b61234'),(94248,39510,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(94249,39510,'blocks_1_options_reverse','0'),(94250,39510,'_blocks_1_options_reverse','field_61768049bb8ac'),(94251,39510,'blocks_1_options',''),(94252,39510,'_blocks_1_options','field_617682517c334'),(94253,39510,'blocks_1_split_5050_image','35276'),(94254,39510,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(94255,39510,'blocks_1_split_5050_video',''),(94256,39510,'_blocks_1_split_5050_video','field_6239f3160848a'),(94257,39510,'blocks_1_split_5050_content_title',''),(94258,39510,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(94259,39510,'blocks_1_split_5050_content_heading','What we do'),(94260,39510,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(94261,39510,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(94262,39510,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(94263,39510,'blocks_1_split_5050_content_actions',''),(94264,39510,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(94265,39510,'blocks_1_split_5050_content',''),(94266,39510,'_blocks_1_split_5050_content','field_61767afceb8ba'),(94267,39510,'blocks_2_acfe_flexible_toggle',''),(94268,39510,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(94269,39510,'blocks_2_acfe_flexible_layout_title','Video'),(94270,39510,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(94271,39510,'blocks_2_size','large'),(94272,39510,'_blocks_2_size','field_6487038f297c1'),(94273,39510,'blocks_2_row_content_title',''),(94274,39510,'_blocks_2_row_content_title','field_64870132a865d'),(94275,39510,'blocks_2_row_content_heading',''),(94276,39510,'_blocks_2_row_content_heading','field_64870142a865e'),(94277,39510,'blocks_2_row_content_text',''),(94278,39510,'_blocks_2_row_content_text','field_64870148a865f'),(94279,39510,'blocks_2_row_content',''),(94280,39510,'_blocks_2_row_content','field_6487008ba865c'),(94281,39510,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(94282,39510,'_blocks_2_video_src','field_6193c4a98ec07'),(94283,39510,'blocks_2_video_thumbnail','39175'),(94284,39510,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(94285,39510,'blocks_3_acfe_flexible_toggle','1'),(94286,39510,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(94287,39510,'blocks_3_acfe_flexible_layout_title','Cards'),(94288,39510,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(94289,39510,'blocks_3_options_theme','#ffffff'),(94290,39510,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(94291,39510,'blocks_3_options_format','carousel'),(94292,39510,'_blocks_3_options_format','field_617a7b15245b5'),(94293,39510,'blocks_3_options_style','default'),(94294,39510,'_blocks_3_options_style','field_6278ffb63484a'),(94295,39510,'blocks_3_options_cards_current_listing','0'),(94296,39510,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(94297,39510,'blocks_3_options_cards_content','custom'),(94298,39510,'_blocks_3_options_cards_content','field_617aba6122688'),(94299,39510,'blocks_3_options',''),(94300,39510,'_blocks_3_options','field_617a7b15245b3'),(94301,39510,'blocks_3_cards_custom_0_image','39504'),(94302,39510,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(94303,39510,'blocks_3_cards_custom_0_title','Our Partners'),(94304,39510,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(94305,39510,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(94306,39510,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(94307,39510,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(94308,39510,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(94309,39510,'blocks_3_cards_custom','1'),(94310,39510,'_blocks_3_cards_custom','field_6194cbf84d386'),(94311,39510,'_thumbnail_id','39186'),(94312,39510,'__thumbnail_id','field_617570855ddaf'),(94313,39510,'blocks_0_acfe_flexible_toggle',''),(94314,39510,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(94315,39510,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(94316,39510,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(94317,39510,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(94318,39510,'_blocks_0_content','field_6193c9b5eac84'),(94319,39510,'hide_hero','0'),(94320,39510,'_hide_hero','field_66a2380fcda39'),(94321,39510,'blocks_3_cards_row_content_title',''),(94322,39510,'_blocks_3_cards_row_content_title','field_6194fc1bc99fd'),(94323,39510,'blocks_3_cards_row_content_heading',''),(94324,39510,'_blocks_3_cards_row_content_heading','field_6194fc1bc99fe'),(94325,39510,'blocks_3_cards_row_content_text',''),(94326,39510,'_blocks_3_cards_row_content_text','field_6194fc1bc99ff'),(94327,39510,'blocks_3_cards_row_content_actions',''),(94328,39510,'_blocks_3_cards_row_content_actions','field_6194fc1bc9a00'),(94329,39510,'blocks_3_cards_row_content',''),(94330,39510,'_blocks_3_cards_row_content','field_6194fc1bc99fc'),(94331,39510,'blocks_4_acfe_flexible_toggle',''),(94332,39510,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(94333,39510,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(94334,39510,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(94335,39510,'blocks_4_options_theme','#ffffff'),(94336,39510,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(94337,39510,'blocks_4_options_reverse','0'),(94338,39510,'_blocks_4_options_reverse','field_61768049bb8ac'),(94339,39510,'blocks_4_options',''),(94340,39510,'_blocks_4_options','field_617682517c334'),(94341,39510,'blocks_4_split_5050_image','39501'),(94342,39510,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(94343,39510,'blocks_4_split_5050_video',''),(94344,39510,'_blocks_4_split_5050_video','field_6239f3160848a'),(94345,39510,'blocks_4_split_5050_content_title',''),(94346,39510,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(94347,39510,'blocks_4_split_5050_content_heading','Our Partners'),(94348,39510,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(94349,39510,'blocks_4_split_5050_content_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(94350,39510,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(94351,39510,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"View our Partner Page\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(94352,39510,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(94353,39510,'blocks_4_split_5050_content_actions','1'),(94354,39510,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(94355,39510,'blocks_4_split_5050_content',''),(94356,39510,'_blocks_4_split_5050_content','field_61767afceb8ba'),(94358,39511,'hide_hero','0'),(94359,39511,'_hide_hero','field_66a2380fcda39'),(94360,39511,'hero_title','Our Partners'),(94361,39511,'_hero_title','field_617571fe285e8'),(94362,39511,'hero_text','Discover our partners'),(94363,39511,'_hero_text','field_6175723c285e9'),(94364,39511,'hero_actions','1'),(94365,39511,'_hero_actions','field_61757270285ea'),(94366,39511,'hero_style','default'),(94367,39511,'_hero_style','field_62051d9dc5324'),(94368,39511,'hero_image_pos_x','right'),(94369,39511,'_hero_image_pos_x','field_62ec3d05390bb'),(94370,39511,'hero_image_pos_y','top'),(94371,39511,'_hero_image_pos_y','field_62ec3d05390bc'),(94372,39511,'hero_image_pos',''),(94373,39511,'_hero_image_pos','field_62ec3d05390ba'),(94374,39511,'fft_hide_from_listings','0'),(94375,39511,'_fft_hide_from_listings','field_61f1320446ab2'),(94376,39511,'fft_page_format','default'),(94377,39511,'_fft_page_format','field_61ae213f1f218'),(94378,39511,'fft_hide_nav','0'),(94379,39511,'_fft_hide_nav','field_635bd5e43527c'),(94380,39511,'fft_hide_header_call_to_action','0'),(94381,39511,'_fft_hide_header_call_to_action','field_635bd6723527d'),(94382,39511,'fft_page_sitemap','0'),(94383,39511,'_fft_page_sitemap','field_61af9b34e8181'),(94384,39511,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:16:\"standard_content\";i:3;s:18:\"testimonial_slider\";}'),(94385,39511,'_blocks','field_6176696113096'),(94386,39511,'blocks_0_acfe_flexible_toggle',''),(94387,39511,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(94388,39511,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(94389,39511,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(94390,39511,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.\r\n\r\n<strong>Click on any of the logos below to visit their site\'s !</strong></p>'),(94391,39511,'_blocks_0_content','field_6193c9b5eac84'),(94392,39511,'blocks_1_acfe_flexible_toggle',''),(94393,39511,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(94394,39511,'blocks_1_acfe_flexible_layout_title','Logos'),(94395,39511,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(94396,39511,'blocks_1_options_theme','#ffffff'),(94397,39511,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(94398,39511,'blocks_1_options_format','carousel'),(94399,39511,'_blocks_1_options_format','field_61782964ee971'),(94400,39511,'blocks_1_options',''),(94401,39511,'_blocks_1_options','field_61782954ee965'),(94402,39511,'blocks_1_logos','a:10:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39296\";i:6;s:5:\"39297\";i:7;s:5:\"39300\";i:8;s:5:\"39304\";i:9;s:5:\"39306\";}'),(94403,39511,'_blocks_1_logos','field_61782954ee96d'),(94404,39511,'blocks_1_title',''),(94405,39511,'_blocks_1_title','field_668fbfdc2daa1'),(94406,39511,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-4\";s:6:\"target\";s:0:\"\";}'),(94407,39511,'_hero_actions_0_button','field_61757281285eb'),(94408,39511,'blocks_2_acfe_flexible_toggle',''),(94409,39511,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(94410,39511,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(94411,39511,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(94412,39511,'blocks_2_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(94413,39511,'_blocks_2_content','field_6193c9b5eac84'),(94414,39511,'blocks_3_acfe_flexible_toggle',''),(94415,39511,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(94416,39511,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(94417,39511,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(94418,39511,'blocks_3_testimonial_slider_content_title',''),(94419,39511,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(94420,39511,'blocks_3_testimonial_slider_content_heading','Testimonials'),(94421,39511,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(94422,39511,'blocks_3_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(94423,39511,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(94424,39511,'blocks_3_testimonial_slider_content_actions',''),(94425,39511,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(94426,39511,'blocks_3_testimonial_slider_content',''),(94427,39511,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(94428,39511,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(94429,39511,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(94430,39511,'blocks_3_testimonial_slider_ambassador_bool','0'),(94431,39511,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(94432,39511,'_thumbnail_id',''),(94433,39511,'__thumbnail_id','field_617570855ddaf'),(94435,39512,'hide_hero','0'),(94436,39512,'_hide_hero','field_66a2380fcda39'),(94437,39512,'hero_title','Our Partners'),(94438,39512,'_hero_title','field_617571fe285e8'),(94439,39512,'hero_text','Discover our partners'),(94440,39512,'_hero_text','field_6175723c285e9'),(94441,39512,'hero_actions','1'),(94442,39512,'_hero_actions','field_61757270285ea'),(94443,39512,'hero_style','default'),(94444,39512,'_hero_style','field_62051d9dc5324'),(94445,39512,'hero_image_pos_x','right'),(94446,39512,'_hero_image_pos_x','field_62ec3d05390bb'),(94447,39512,'hero_image_pos_y','top'),(94448,39512,'_hero_image_pos_y','field_62ec3d05390bc'),(94449,39512,'hero_image_pos',''),(94450,39512,'_hero_image_pos','field_62ec3d05390ba'),(94451,39512,'fft_hide_from_listings','0'),(94452,39512,'_fft_hide_from_listings','field_61f1320446ab2'),(94453,39512,'fft_page_format','default'),(94454,39512,'_fft_page_format','field_61ae213f1f218'),(94455,39512,'fft_hide_nav','0'),(94456,39512,'_fft_hide_nav','field_635bd5e43527c'),(94457,39512,'fft_hide_header_call_to_action','0'),(94458,39512,'_fft_hide_header_call_to_action','field_635bd6723527d'),(94459,39512,'fft_page_sitemap','0'),(94460,39512,'_fft_page_sitemap','field_61af9b34e8181'),(94461,39512,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:16:\"standard_content\";i:3;s:18:\"testimonial_slider\";}'),(94462,39512,'_blocks','field_6176696113096'),(94463,39512,'blocks_0_acfe_flexible_toggle',''),(94464,39512,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(94465,39512,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(94466,39512,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(94467,39512,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\"><strong>Click on any of the logos below to visit their site\'s !</strong></p>'),(94468,39512,'_blocks_0_content','field_6193c9b5eac84'),(94469,39512,'blocks_1_acfe_flexible_toggle',''),(94470,39512,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(94471,39512,'blocks_1_acfe_flexible_layout_title','Logos'),(94472,39512,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(94473,39512,'blocks_1_options_theme','#ffffff'),(94474,39512,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(94475,39512,'blocks_1_options_format','carousel'),(94476,39512,'_blocks_1_options_format','field_61782964ee971'),(94477,39512,'blocks_1_options',''),(94478,39512,'_blocks_1_options','field_61782954ee965'),(94479,39512,'blocks_1_logos','a:10:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39296\";i:6;s:5:\"39297\";i:7;s:5:\"39300\";i:8;s:5:\"39304\";i:9;s:5:\"39306\";}'),(94480,39512,'_blocks_1_logos','field_61782954ee96d'),(94481,39512,'blocks_1_title',''),(94482,39512,'_blocks_1_title','field_668fbfdc2daa1'),(94483,39512,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-4\";s:6:\"target\";s:0:\"\";}'),(94484,39512,'_hero_actions_0_button','field_61757281285eb'),(94485,39512,'blocks_2_acfe_flexible_toggle',''),(94486,39512,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(94487,39512,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(94488,39512,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(94489,39512,'blocks_2_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(94490,39512,'_blocks_2_content','field_6193c9b5eac84'),(94491,39512,'blocks_3_acfe_flexible_toggle',''),(94492,39512,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(94493,39512,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(94494,39512,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(94495,39512,'blocks_3_testimonial_slider_content_title',''),(94496,39512,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(94497,39512,'blocks_3_testimonial_slider_content_heading','Testimonials'),(94498,39512,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(94499,39512,'blocks_3_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(94500,39512,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(94501,39512,'blocks_3_testimonial_slider_content_actions',''),(94502,39512,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(94503,39512,'blocks_3_testimonial_slider_content',''),(94504,39512,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(94505,39512,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(94506,39512,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(94507,39512,'blocks_3_testimonial_slider_ambassador_bool','0'),(94508,39512,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(94509,39512,'_thumbnail_id',''),(94510,39512,'__thumbnail_id','field_617570855ddaf'),(94581,39513,'hero_style','default'),(94582,39513,'_hero_style','field_62051d9dc5324'),(94583,39513,'hero_image_pos_x','right'),(94584,39513,'_hero_image_pos_x','field_62ec3d05390bb'),(94585,39513,'hero_image_pos_y','top'),(94586,39513,'_hero_image_pos_y','field_62ec3d05390bc'),(94587,39513,'hero_image_pos',''),(94588,39513,'_hero_image_pos','field_62ec3d05390ba'),(94589,39513,'hero_title','About Us'),(94590,39513,'_hero_title','field_617571fe285e8'),(94591,39513,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(94592,39513,'_hero_text','field_6175723c285e9'),(94593,39513,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(94594,39513,'_hero_actions_0_button','field_61757281285eb'),(94595,39513,'hero_actions','1'),(94596,39513,'_hero_actions','field_61757270285ea'),(94597,39513,'hero_icon',''),(94598,39513,'_hero_icon','field_61a6182199d03'),(94599,39513,'fft_hide_from_listings','0'),(94600,39513,'_fft_hide_from_listings','field_61f1320446ab2'),(94601,39513,'fft_page_format','default'),(94602,39513,'_fft_page_format','field_61ae213f1f218'),(94603,39513,'fft_hide_nav','0'),(94604,39513,'_fft_hide_nav','field_635bd5e43527c'),(94605,39513,'fft_hide_header_call_to_action','0'),(94606,39513,'_fft_hide_header_call_to_action','field_635bd6723527d'),(94607,39513,'fft_page_sitemap','0'),(94608,39513,'_fft_page_sitemap','field_61af9b34e8181'),(94609,39513,'blocks','a:7:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(94610,39513,'_blocks','field_6176696113096'),(94611,39513,'blocks_1_acfe_flexible_toggle',''),(94612,39513,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(94613,39513,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(94614,39513,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(94615,39513,'blocks_1_options_theme','#b61234'),(94616,39513,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(94617,39513,'blocks_1_options_reverse','0'),(94618,39513,'_blocks_1_options_reverse','field_61768049bb8ac'),(94619,39513,'blocks_1_options',''),(94620,39513,'_blocks_1_options','field_617682517c334'),(94621,39513,'blocks_1_split_5050_image','35276'),(94622,39513,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(94623,39513,'blocks_1_split_5050_video',''),(94624,39513,'_blocks_1_split_5050_video','field_6239f3160848a'),(94625,39513,'blocks_1_split_5050_content_title',''),(94626,39513,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(94627,39513,'blocks_1_split_5050_content_heading','What we do'),(94628,39513,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(94629,39513,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(94630,39513,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(94631,39513,'blocks_1_split_5050_content_actions',''),(94632,39513,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(94633,39513,'blocks_1_split_5050_content',''),(94634,39513,'_blocks_1_split_5050_content','field_61767afceb8ba'),(94635,39513,'blocks_2_acfe_flexible_toggle',''),(94636,39513,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(94637,39513,'blocks_2_acfe_flexible_layout_title','Video'),(94638,39513,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(94639,39513,'blocks_2_size','large'),(94640,39513,'_blocks_2_size','field_6487038f297c1'),(94641,39513,'blocks_2_row_content_title',''),(94642,39513,'_blocks_2_row_content_title','field_64870132a865d'),(94643,39513,'blocks_2_row_content_heading',''),(94644,39513,'_blocks_2_row_content_heading','field_64870142a865e'),(94645,39513,'blocks_2_row_content_text',''),(94646,39513,'_blocks_2_row_content_text','field_64870148a865f'),(94647,39513,'blocks_2_row_content',''),(94648,39513,'_blocks_2_row_content','field_6487008ba865c'),(94649,39513,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(94650,39513,'_blocks_2_video_src','field_6193c4a98ec07'),(94651,39513,'blocks_2_video_thumbnail','39175'),(94652,39513,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(94653,39513,'blocks_3_acfe_flexible_toggle','1'),(94654,39513,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(94655,39513,'blocks_3_acfe_flexible_layout_title','Cards'),(94656,39513,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(94657,39513,'blocks_3_options_theme','#ffffff'),(94658,39513,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(94659,39513,'blocks_3_options_format','carousel'),(94660,39513,'_blocks_3_options_format','field_617a7b15245b5'),(94661,39513,'blocks_3_options_style','default'),(94662,39513,'_blocks_3_options_style','field_6278ffb63484a'),(94663,39513,'blocks_3_options_cards_current_listing','0'),(94664,39513,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(94665,39513,'blocks_3_options_cards_content','custom'),(94666,39513,'_blocks_3_options_cards_content','field_617aba6122688'),(94667,39513,'blocks_3_options',''),(94668,39513,'_blocks_3_options','field_617a7b15245b3'),(94669,39513,'blocks_3_cards_custom_0_image','39504'),(94670,39513,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(94671,39513,'blocks_3_cards_custom_0_title','Our Partners'),(94672,39513,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(94673,39513,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(94674,39513,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(94675,39513,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(94676,39513,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(94677,39513,'blocks_3_cards_custom','1'),(94678,39513,'_blocks_3_cards_custom','field_6194cbf84d386'),(94679,39513,'_thumbnail_id','39186'),(94680,39513,'__thumbnail_id','field_617570855ddaf'),(94681,39513,'blocks_0_acfe_flexible_toggle',''),(94682,39513,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(94683,39513,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(94684,39513,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(94685,39513,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(94686,39513,'_blocks_0_content','field_6193c9b5eac84'),(94687,39513,'hide_hero','0'),(94688,39513,'_hide_hero','field_66a2380fcda39'),(94689,39513,'blocks_3_cards_row_content_title',''),(94690,39513,'_blocks_3_cards_row_content_title','field_6194fc1bc99fd'),(94691,39513,'blocks_3_cards_row_content_heading',''),(94692,39513,'_blocks_3_cards_row_content_heading','field_6194fc1bc99fe'),(94693,39513,'blocks_3_cards_row_content_text',''),(94694,39513,'_blocks_3_cards_row_content_text','field_6194fc1bc99ff'),(94695,39513,'blocks_3_cards_row_content_actions',''),(94696,39513,'_blocks_3_cards_row_content_actions','field_6194fc1bc9a00'),(94697,39513,'blocks_3_cards_row_content',''),(94698,39513,'_blocks_3_cards_row_content','field_6194fc1bc99fc'),(94699,39513,'blocks_4_acfe_flexible_toggle',''),(94700,39513,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(94701,39513,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(94702,39513,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(94703,39513,'blocks_4_options_theme','#ffffff'),(94704,39513,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(94705,39513,'blocks_4_options_reverse','0'),(94706,39513,'_blocks_4_options_reverse','field_61768049bb8ac'),(94707,39513,'blocks_4_options',''),(94708,39513,'_blocks_4_options','field_617682517c334'),(94709,39513,'blocks_4_split_5050_image','39501'),(94710,39513,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(94711,39513,'blocks_4_split_5050_video',''),(94712,39513,'_blocks_4_split_5050_video','field_6239f3160848a'),(94713,39513,'blocks_4_split_5050_content_title',''),(94714,39513,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(94715,39513,'blocks_4_split_5050_content_heading','Our Partners'),(94716,39513,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(94717,39513,'blocks_4_split_5050_content_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(94718,39513,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(94719,39513,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"View our Partner Page\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(94720,39513,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(94721,39513,'blocks_4_split_5050_content_actions','1'),(94722,39513,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(94723,39513,'blocks_4_split_5050_content',''),(94724,39513,'_blocks_4_split_5050_content','field_61767afceb8ba'),(94725,39513,'blocks_5_acfe_flexible_toggle',''),(94726,39513,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(94727,39513,'blocks_5_acfe_flexible_layout_title','Text Block'),(94728,39513,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(94729,39513,'blocks_5_options_theme','#ffffff'),(94730,39513,'_blocks_5_options_theme','field_6176830e2ad17'),(94731,39513,'blocks_5_options',''),(94732,39513,'_blocks_5_options','field_6176830e2ad16'),(94733,39513,'blocks_5_text_block_heading','Our Team'),(94734,39513,'_blocks_5_text_block_heading','field_617669d413097'),(94735,39513,'blocks_5_text_block_content',''),(94736,39513,'_blocks_5_text_block_content','field_617669ec13098'),(94737,39513,'blocks_6_acfe_flexible_toggle',''),(94738,39513,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(94739,39513,'blocks_6_acfe_flexible_layout_title','Cards'),(94740,39513,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(94741,39513,'blocks_6_options_theme','#ffffff'),(94742,39513,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(94743,39513,'blocks_6_options_format','carousel'),(94744,39513,'_blocks_6_options_format','field_617a7b15245b5'),(94745,39513,'blocks_6_options_style','default'),(94746,39513,'_blocks_6_options_style','field_6278ffb63484a'),(94747,39513,'blocks_6_options_cards_current_listing','0'),(94748,39513,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(94749,39513,'blocks_6_options_cards_content','custom'),(94750,39513,'_blocks_6_options_cards_content','field_617aba6122688'),(94751,39513,'blocks_6_options',''),(94752,39513,'_blocks_6_options','field_617a7b15245b3'),(94753,39513,'blocks_6_cards_custom_0_image','39353'),(94754,39513,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(94755,39513,'blocks_6_cards_custom_0_title','Rachel Frances Thomson'),(94756,39513,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(94757,39513,'blocks_6_cards_custom_0_text','Rachel’s professional career in the health & fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe & Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor & IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd & so frequently lectures, presents & teaches at events both UK & Internationally about the benefits of the intrinsic biomechanics\' methods.'),(94758,39513,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(94759,39513,'blocks_6_cards_custom_0_link',''),(94760,39513,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(94761,39513,'blocks_6_cards_custom_1_image','39366'),(94762,39513,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(94763,39513,'blocks_6_cards_custom_1_title','Tom Waldron - Master Trainer'),(94764,39513,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(94765,39513,'blocks_6_cards_custom_1_text','Tom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance & freedom of movement are described by Tom as ‘incredible!’  He has been a Biomechanics Coach™ since Mar 2016 & it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts & it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(94766,39513,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(94767,39513,'blocks_6_cards_custom_1_link',''),(94768,39513,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(94769,39513,'blocks_6_cards_custom_2_image',''),(94770,39513,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(94771,39513,'blocks_6_cards_custom_2_title','Kim Tomlin'),(94772,39513,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(94773,39513,'blocks_6_cards_custom_2_text','Kim is the owner of Primal Flow, a Personal Trainer, Biomechanics Coach and Master Trainer. Kim has been passionate about exploring movement ever since becoming a Primal Flow Instructor in 2012, now combining her skills to help people to improve their movement quality and capacity, whilst enjoying the freedom of their own individual movement capabilities. As well as teaching the Biomechanics Coaching Diploma (for Biomechanics Education), Kim is a Training Provider Partner with CIMSPA and delivers her own Train the Trainer courses, including the Primal Flow Instructor Course. '),(94774,39513,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(94775,39513,'blocks_6_cards_custom_2_link',''),(94776,39513,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(94777,39513,'blocks_6_cards_custom_3_image',''),(94778,39513,'_blocks_6_cards_custom_3_image','field_6194cc284d387'),(94779,39513,'blocks_6_cards_custom_3_title','Fiona Jones'),(94780,39513,'_blocks_6_cards_custom_3_title','field_6194cc454d388'),(94781,39513,'blocks_6_cards_custom_3_text','Fiona began her career in the fitness industry in 2006 as a Gym and Group Exercise Instructor and Personal Trainer. In 2010, she transitioned to assessing Fitness Apprenticeships, expanding her expertise in the field. After experiencing the transformative effects of a coaching programme firsthand, Fiona pursued a Low Back Specialist Biomechanics Diploma and a qualification in Remedial Massage. Since then, she has successfully combined her role as an assessor with maintaining her own client base in the UK and overseas, including on Ascension Island and in the United States. \r\n\r\nWhile abroad, Fiona joined the team as a course advisor and became an integral part of the support team. Upon returning to the UK during the 2020 lockdown, she continued her work, assessing for Biomechanics Education both inside and outside the classroom. Fiona is passionate about guiding people through their journeys of discovery, helping them achieve their fitness and health goals with confidence and understanding. '),(94782,39513,'_blocks_6_cards_custom_3_text','field_6194cc4a4d389'),(94783,39513,'blocks_6_cards_custom_3_link',''),(94784,39513,'_blocks_6_cards_custom_3_link','field_6194cc534d38a'),(94785,39513,'blocks_6_cards_custom_4_image',''),(94786,39513,'_blocks_6_cards_custom_4_image','field_6194cc284d387'),(94787,39513,'blocks_6_cards_custom_4_title','Morgan Hanness'),(94788,39513,'_blocks_6_cards_custom_4_title','field_6194cc454d388'),(94789,39513,'blocks_6_cards_custom_4_text','Morgan Hanness has a background in personal training, nutrition coaching, and integrative nutrition health coaching, and has always been passionate about helping people achieve their goals. At Biomechanics Education, Morgan also helps others develop their careers in the health and fitness industry, enabling them to assist even more people. Living with Hypermobility Syndrome, Morgan deeply understands the value of proper movement, which aligns perfectly with Biomechanics Education’s core values. Morgan is passionate about sports, especially snowboarding, surfing, rock climbing, and other outdoor activities, and is grateful for pain-free movement. '),(94790,39513,'_blocks_6_cards_custom_4_text','field_6194cc4a4d389'),(94791,39513,'blocks_6_cards_custom_4_link',''),(94792,39513,'_blocks_6_cards_custom_4_link','field_6194cc534d38a'),(94793,39513,'blocks_6_cards_custom','5'),(94794,39513,'_blocks_6_cards_custom','field_6194cbf84d386'),(94795,39514,'hero_style','default'),(94796,39514,'_hero_style','field_62051d9dc5324'),(94797,39514,'hero_image_pos_x','right'),(94798,39514,'_hero_image_pos_x','field_62ec3d05390bb'),(94799,39514,'hero_image_pos_y','top'),(94800,39514,'_hero_image_pos_y','field_62ec3d05390bc'),(94801,39514,'hero_image_pos',''),(94802,39514,'_hero_image_pos','field_62ec3d05390ba'),(94803,39514,'hero_title','About Us'),(94804,39514,'_hero_title','field_617571fe285e8'),(94805,39514,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(94806,39514,'_hero_text','field_6175723c285e9'),(94807,39514,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(94808,39514,'_hero_actions_0_button','field_61757281285eb'),(94809,39514,'hero_actions','1'),(94810,39514,'_hero_actions','field_61757270285ea'),(94811,39514,'hero_icon',''),(94812,39514,'_hero_icon','field_61a6182199d03'),(94813,39514,'fft_hide_from_listings','0'),(94814,39514,'_fft_hide_from_listings','field_61f1320446ab2'),(94815,39514,'fft_page_format','default'),(94816,39514,'_fft_page_format','field_61ae213f1f218'),(94817,39514,'fft_hide_nav','0'),(94818,39514,'_fft_hide_nav','field_635bd5e43527c'),(94819,39514,'fft_hide_header_call_to_action','0'),(94820,39514,'_fft_hide_header_call_to_action','field_635bd6723527d'),(94821,39514,'fft_page_sitemap','0'),(94822,39514,'_fft_page_sitemap','field_61af9b34e8181'),(94823,39514,'blocks','a:7:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(94824,39514,'_blocks','field_6176696113096'),(94825,39514,'blocks_1_acfe_flexible_toggle',''),(94826,39514,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(94827,39514,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(94828,39514,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(94829,39514,'blocks_1_options_theme','#b61234'),(94830,39514,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(94831,39514,'blocks_1_options_reverse','0'),(94832,39514,'_blocks_1_options_reverse','field_61768049bb8ac'),(94833,39514,'blocks_1_options',''),(94834,39514,'_blocks_1_options','field_617682517c334'),(94835,39514,'blocks_1_split_5050_image','35276'),(94836,39514,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(94837,39514,'blocks_1_split_5050_video',''),(94838,39514,'_blocks_1_split_5050_video','field_6239f3160848a'),(94839,39514,'blocks_1_split_5050_content_title',''),(94840,39514,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(94841,39514,'blocks_1_split_5050_content_heading','What we do'),(94842,39514,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(94843,39514,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(94844,39514,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(94845,39514,'blocks_1_split_5050_content_actions',''),(94846,39514,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(94847,39514,'blocks_1_split_5050_content',''),(94848,39514,'_blocks_1_split_5050_content','field_61767afceb8ba'),(94849,39514,'blocks_2_acfe_flexible_toggle',''),(94850,39514,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(94851,39514,'blocks_2_acfe_flexible_layout_title','Video'),(94852,39514,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(94853,39514,'blocks_2_size','large'),(94854,39514,'_blocks_2_size','field_6487038f297c1'),(94855,39514,'blocks_2_row_content_title',''),(94856,39514,'_blocks_2_row_content_title','field_64870132a865d'),(94857,39514,'blocks_2_row_content_heading',''),(94858,39514,'_blocks_2_row_content_heading','field_64870142a865e'),(94859,39514,'blocks_2_row_content_text',''),(94860,39514,'_blocks_2_row_content_text','field_64870148a865f'),(94861,39514,'blocks_2_row_content',''),(94862,39514,'_blocks_2_row_content','field_6487008ba865c'),(94863,39514,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(94864,39514,'_blocks_2_video_src','field_6193c4a98ec07'),(94865,39514,'blocks_2_video_thumbnail','39175'),(94866,39514,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(94867,39514,'blocks_3_acfe_flexible_toggle','1'),(94868,39514,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(94869,39514,'blocks_3_acfe_flexible_layout_title','Cards'),(94870,39514,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(94871,39514,'blocks_3_options_theme','#ffffff'),(94872,39514,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(94873,39514,'blocks_3_options_format','carousel'),(94874,39514,'_blocks_3_options_format','field_617a7b15245b5'),(94875,39514,'blocks_3_options_style','default'),(94876,39514,'_blocks_3_options_style','field_6278ffb63484a'),(94877,39514,'blocks_3_options_cards_current_listing','0'),(94878,39514,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(94879,39514,'blocks_3_options_cards_content','custom'),(94880,39514,'_blocks_3_options_cards_content','field_617aba6122688'),(94881,39514,'blocks_3_options',''),(94882,39514,'_blocks_3_options','field_617a7b15245b3'),(94883,39514,'blocks_3_cards_custom_0_image','39504'),(94884,39514,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(94885,39514,'blocks_3_cards_custom_0_title','Our Partners'),(94886,39514,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(94887,39514,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(94888,39514,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(94889,39514,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(94890,39514,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(94891,39514,'blocks_3_cards_custom','1'),(94892,39514,'_blocks_3_cards_custom','field_6194cbf84d386'),(94893,39514,'_thumbnail_id','39186'),(94894,39514,'__thumbnail_id','field_617570855ddaf'),(94895,39514,'blocks_0_acfe_flexible_toggle',''),(94896,39514,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(94897,39514,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(94898,39514,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(94899,39514,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(94900,39514,'_blocks_0_content','field_6193c9b5eac84'),(94901,39514,'hide_hero','0'),(94902,39514,'_hide_hero','field_66a2380fcda39'),(94903,39514,'blocks_3_cards_row_content_title',''),(94904,39514,'_blocks_3_cards_row_content_title','field_6194fc1bc99fd'),(94905,39514,'blocks_3_cards_row_content_heading',''),(94906,39514,'_blocks_3_cards_row_content_heading','field_6194fc1bc99fe'),(94907,39514,'blocks_3_cards_row_content_text',''),(94908,39514,'_blocks_3_cards_row_content_text','field_6194fc1bc99ff'),(94909,39514,'blocks_3_cards_row_content_actions',''),(94910,39514,'_blocks_3_cards_row_content_actions','field_6194fc1bc9a00'),(94911,39514,'blocks_3_cards_row_content',''),(94912,39514,'_blocks_3_cards_row_content','field_6194fc1bc99fc'),(94913,39514,'blocks_4_acfe_flexible_toggle',''),(94914,39514,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(94915,39514,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(94916,39514,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(94917,39514,'blocks_4_options_theme','#ffffff'),(94918,39514,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(94919,39514,'blocks_4_options_reverse','0'),(94920,39514,'_blocks_4_options_reverse','field_61768049bb8ac'),(94921,39514,'blocks_4_options',''),(94922,39514,'_blocks_4_options','field_617682517c334'),(94923,39514,'blocks_4_split_5050_image','39501'),(94924,39514,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(94925,39514,'blocks_4_split_5050_video',''),(94926,39514,'_blocks_4_split_5050_video','field_6239f3160848a'),(94927,39514,'blocks_4_split_5050_content_title',''),(94928,39514,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(94929,39514,'blocks_4_split_5050_content_heading','Our Partners'),(94930,39514,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(94931,39514,'blocks_4_split_5050_content_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(94932,39514,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(94933,39514,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"View our Partner Page\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(94934,39514,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(94935,39514,'blocks_4_split_5050_content_actions','1'),(94936,39514,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(94937,39514,'blocks_4_split_5050_content',''),(94938,39514,'_blocks_4_split_5050_content','field_61767afceb8ba'),(94939,39514,'blocks_5_acfe_flexible_toggle',''),(94940,39514,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(94941,39514,'blocks_5_acfe_flexible_layout_title','Text Block'),(94942,39514,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(94943,39514,'blocks_5_options_theme','#ffffff'),(94944,39514,'_blocks_5_options_theme','field_6176830e2ad17'),(94945,39514,'blocks_5_options',''),(94946,39514,'_blocks_5_options','field_6176830e2ad16'),(94947,39514,'blocks_5_text_block_heading','Our Team'),(94948,39514,'_blocks_5_text_block_heading','field_617669d413097'),(94949,39514,'blocks_5_text_block_content',''),(94950,39514,'_blocks_5_text_block_content','field_617669ec13098'),(94951,39514,'blocks_6_acfe_flexible_toggle',''),(94952,39514,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(94953,39514,'blocks_6_acfe_flexible_layout_title','Cards'),(94954,39514,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(94955,39514,'blocks_6_options_theme','#ffffff'),(94956,39514,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(94957,39514,'blocks_6_options_format','carousel'),(94958,39514,'_blocks_6_options_format','field_617a7b15245b5'),(94959,39514,'blocks_6_options_style','default'),(94960,39514,'_blocks_6_options_style','field_6278ffb63484a'),(94961,39514,'blocks_6_options_cards_current_listing','0'),(94962,39514,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(94963,39514,'blocks_6_options_cards_content','custom'),(94964,39514,'_blocks_6_options_cards_content','field_617aba6122688'),(94965,39514,'blocks_6_options',''),(94966,39514,'_blocks_6_options','field_617a7b15245b3'),(94967,39514,'blocks_6_cards_custom_0_image','39353'),(94968,39514,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(94969,39514,'blocks_6_cards_custom_0_title','Rachel Frances Thomson - Founder'),(94970,39514,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(94971,39514,'blocks_6_cards_custom_0_text','Rachel’s professional career in the health & fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe & Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor & IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd & so frequently lectures, presents & teaches at events both UK & Internationally about the benefits of the intrinsic biomechanics\' methods.'),(94972,39514,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(94973,39514,'blocks_6_cards_custom_0_link',''),(94974,39514,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(94975,39514,'blocks_6_cards_custom_1_image','39366'),(94976,39514,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(94977,39514,'blocks_6_cards_custom_1_title','Tom Waldron - Master Trainer'),(94978,39514,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(94979,39514,'blocks_6_cards_custom_1_text','Tom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance & freedom of movement are described by Tom as ‘incredible!’  He has been a Biomechanics Coach™ since Mar 2016 & it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts & it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(94980,39514,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(94981,39514,'blocks_6_cards_custom_1_link',''),(94982,39514,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(94983,39514,'blocks_6_cards_custom_2_image',''),(94984,39514,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(94985,39514,'blocks_6_cards_custom_2_title','Kim Tomlin'),(94986,39514,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(94987,39514,'blocks_6_cards_custom_2_text','Kim is the owner of Primal Flow, a Personal Trainer, Biomechanics Coach and Master Trainer. Kim has been passionate about exploring movement ever since becoming a Primal Flow Instructor in 2012, now combining her skills to help people to improve their movement quality and capacity, whilst enjoying the freedom of their own individual movement capabilities. As well as teaching the Biomechanics Coaching Diploma (for Biomechanics Education), Kim is a Training Provider Partner with CIMSPA and delivers her own Train the Trainer courses, including the Primal Flow Instructor Course. '),(94988,39514,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(94989,39514,'blocks_6_cards_custom_2_link',''),(94990,39514,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(94991,39514,'blocks_6_cards_custom_3_image',''),(94992,39514,'_blocks_6_cards_custom_3_image','field_6194cc284d387'),(94993,39514,'blocks_6_cards_custom_3_title','Fiona Jones'),(94994,39514,'_blocks_6_cards_custom_3_title','field_6194cc454d388'),(94995,39514,'blocks_6_cards_custom_3_text','Fiona began her career in the fitness industry in 2006 as a Gym and Group Exercise Instructor and Personal Trainer. In 2010, she transitioned to assessing Fitness Apprenticeships, expanding her expertise in the field. After experiencing the transformative effects of a coaching programme firsthand, Fiona pursued a Low Back Specialist Biomechanics Diploma and a qualification in Remedial Massage. Since then, she has successfully combined her role as an assessor with maintaining her own client base in the UK and overseas, including on Ascension Island and in the United States. \r\n\r\nWhile abroad, Fiona joined the team as a course advisor and became an integral part of the support team. Upon returning to the UK during the 2020 lockdown, she continued her work, assessing for Biomechanics Education both inside and outside the classroom. Fiona is passionate about guiding people through their journeys of discovery, helping them achieve their fitness and health goals with confidence and understanding. '),(94996,39514,'_blocks_6_cards_custom_3_text','field_6194cc4a4d389'),(94997,39514,'blocks_6_cards_custom_3_link',''),(94998,39514,'_blocks_6_cards_custom_3_link','field_6194cc534d38a'),(94999,39514,'blocks_6_cards_custom_4_image',''),(95000,39514,'_blocks_6_cards_custom_4_image','field_6194cc284d387'),(95001,39514,'blocks_6_cards_custom_4_title','Morgan Hanness'),(95002,39514,'_blocks_6_cards_custom_4_title','field_6194cc454d388'),(95003,39514,'blocks_6_cards_custom_4_text','Morgan Hanness has a background in personal training, nutrition coaching, and integrative nutrition health coaching, and has always been passionate about helping people achieve their goals. At Biomechanics Education, Morgan also helps others develop their careers in the health and fitness industry, enabling them to assist even more people. Living with Hypermobility Syndrome, Morgan deeply understands the value of proper movement, which aligns perfectly with Biomechanics Education’s core values. Morgan is passionate about sports, especially snowboarding, surfing, rock climbing, and other outdoor activities, and is grateful for pain-free movement. '),(95004,39514,'_blocks_6_cards_custom_4_text','field_6194cc4a4d389'),(95005,39514,'blocks_6_cards_custom_4_link',''),(95006,39514,'_blocks_6_cards_custom_4_link','field_6194cc534d38a'),(95007,39514,'blocks_6_cards_custom','5'),(95008,39514,'_blocks_6_cards_custom','field_6194cbf84d386'),(95009,39172,'_yoast_wpseo_focuskw','About us'),(95010,39172,'_yoast_wpseo_title','About Us | Biomechanics Education'),(95011,39172,'_yoast_wpseo_metadesc','Learn more about us. Discover our mission, values, and team dedicated to advancing biomechanics education and supporting your professional growth.'),(95012,39172,'_yoast_wpseo_linkdex','49'),(95129,39522,'_menu_item_type','post_type'),(95130,39522,'_menu_item_menu_item_parent','39281'),(95131,39522,'_menu_item_object_id','39493'),(95132,39522,'_menu_item_object','page'),(95133,39522,'_menu_item_target',''),(95134,39522,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(95135,39522,'_menu_item_xfn',''),(95136,39522,'_menu_item_url',''),(95138,39522,'menu_item_card_image',''),(95139,39522,'_menu_item_card_image','field_618cf50fb8716'),(95140,39522,'menu_item_card_title',''),(95141,39522,'_menu_item_card_title','field_618cf51cb8717'),(95142,39522,'menu_item_card_text',''),(95143,39522,'_menu_item_card_text','field_618cf521b8718'),(95144,39522,'menu_item_card_link',''),(95145,39522,'_menu_item_card_link','field_618cf52eb8719'),(95146,39522,'menu_item_card',''),(95147,39522,'_menu_item_card','field_618cf506b8715'),(95148,39278,'_wp_old_date','2024-08-15'),(95149,39348,'_wp_old_date','2024-08-15'),(95150,39486,'_wp_old_date','2024-08-15'),(95151,39485,'_wp_old_date','2024-08-15'),(95152,39487,'_wp_old_date','2024-08-15'),(95153,39279,'_wp_old_date','2024-08-15'),(95154,39325,'_wp_old_date','2024-08-15'),(95155,39324,'_wp_old_date','2024-08-15'),(95156,39323,'_wp_old_date','2024-08-15'),(95157,39322,'_wp_old_date','2024-08-15'),(95158,39321,'_wp_old_date','2024-08-15'),(95159,39320,'_wp_old_date','2024-08-15'),(95160,39319,'_wp_old_date','2024-08-15'),(95161,39280,'_wp_old_date','2024-08-15'),(95162,39281,'_wp_old_date','2024-08-15'),(95163,39344,'_wp_old_date','2024-08-15'),(95164,39318,'_wp_old_date','2024-08-15'),(95168,39524,'hide_hero','0'),(95169,39524,'_hide_hero','field_66a2380fcda39'),(95170,39524,'hero_title','Biomechanics and Pilates'),(95171,39524,'_hero_title','field_617571fe285e8'),(95172,39524,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(95173,39524,'_hero_text','field_6175723c285e9'),(95174,39524,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(95175,39524,'_hero_actions_0_button','field_61757281285eb'),(95176,39524,'hero_actions','1'),(95177,39524,'_hero_actions','field_61757270285ea'),(95178,39524,'hero_style','default'),(95179,39524,'_hero_style','field_62051d9dc5324'),(95180,39524,'_thumbnail_id','39243'),(95181,39524,'__thumbnail_id','field_617570855ddaf'),(95182,39524,'hero_image_pos_x','right'),(95183,39524,'_hero_image_pos_x','field_62ec3d05390bb'),(95184,39524,'hero_image_pos_y','top'),(95185,39524,'_hero_image_pos_y','field_62ec3d05390bc'),(95186,39524,'hero_image_pos',''),(95187,39524,'_hero_image_pos','field_62ec3d05390ba'),(95188,39524,'fft_hide_from_listings','0'),(95189,39524,'_fft_hide_from_listings','field_61f1320446ab2'),(95190,39524,'fft_page_format','default'),(95191,39524,'_fft_page_format','field_61ae213f1f218'),(95192,39524,'fft_hide_nav','0'),(95193,39524,'_fft_hide_nav','field_635bd5e43527c'),(95194,39524,'fft_hide_header_call_to_action','0'),(95195,39524,'_fft_hide_header_call_to_action','field_635bd6723527d'),(95196,39524,'fft_page_sitemap','0'),(95197,39524,'_fft_page_sitemap','field_61af9b34e8181'),(95198,39524,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(95199,39524,'_blocks','field_6176696113096'),(95200,39524,'blocks_0_acfe_flexible_toggle',''),(95201,39524,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(95202,39524,'blocks_0_acfe_flexible_layout_title','Steps'),(95203,39524,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(95204,39524,'blocks_0_row_content_title',''),(95205,39524,'_blocks_0_row_content_title','field_64888cd1e26e0'),(95206,39524,'blocks_0_row_content_heading','Benefits of training with us'),(95207,39524,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(95208,39524,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(95209,39524,'_blocks_0_row_content_text','field_64888ce2e26e2'),(95210,39524,'blocks_0_row_content_actions',''),(95211,39524,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(95212,39524,'blocks_0_row_content',''),(95213,39524,'_blocks_0_row_content','field_64888cb0e26df'),(95214,39524,'blocks_0_steps_0_icon','progression.svg'),(95215,39524,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(95216,39524,'blocks_0_steps_0_title','Earning potential'),(95217,39524,'_blocks_0_steps_0_title','field_64888d94e26e7'),(95218,39524,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(95219,39524,'_blocks_0_steps_0_text','field_64888d99e26e8'),(95220,39524,'blocks_0_steps_1_icon','support.svg'),(95221,39524,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(95222,39524,'blocks_0_steps_1_title','Lifetime Learning Promise'),(95223,39524,'_blocks_0_steps_1_title','field_64888d94e26e7'),(95224,39524,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(95225,39524,'_blocks_0_steps_1_text','field_64888d99e26e8'),(95226,39524,'blocks_0_steps_2_icon','qualification.svg'),(95227,39524,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(95228,39524,'blocks_0_steps_2_title','Evidence based hands on learning'),(95229,39524,'_blocks_0_steps_2_title','field_64888d94e26e7'),(95230,39524,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(95231,39524,'_blocks_0_steps_2_text','field_64888d99e26e8'),(95232,39524,'blocks_0_steps_3_icon','leaders.svg'),(95233,39524,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(95234,39524,'blocks_0_steps_3_title','Stand out from the crowd'),(95235,39524,'_blocks_0_steps_3_title','field_64888d94e26e7'),(95236,39524,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(95237,39524,'_blocks_0_steps_3_text','field_64888d99e26e8'),(95238,39524,'blocks_0_steps','4'),(95239,39524,'_blocks_0_steps','field_64888d44e26e5'),(95240,39524,'blocks_1_acfe_flexible_toggle',''),(95241,39524,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(95242,39524,'blocks_1_acfe_flexible_layout_title','Video'),(95243,39524,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(95244,39524,'blocks_1_size','large'),(95245,39524,'_blocks_1_size','field_6487038f297c1'),(95246,39524,'blocks_1_row_content_title',''),(95247,39524,'_blocks_1_row_content_title','field_64870132a865d'),(95248,39524,'blocks_1_row_content_heading',''),(95249,39524,'_blocks_1_row_content_heading','field_64870142a865e'),(95250,39524,'blocks_1_row_content_text',''),(95251,39524,'_blocks_1_row_content_text','field_64870148a865f'),(95252,39524,'blocks_1_row_content',''),(95253,39524,'_blocks_1_row_content','field_6487008ba865c'),(95254,39524,'blocks_1_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(95255,39524,'_blocks_1_video_src','field_6193c4a98ec07'),(95256,39524,'blocks_1_video_thumbnail',''),(95257,39524,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(95258,39524,'blocks_2_acfe_flexible_toggle',''),(95259,39524,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(95260,39524,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(95261,39524,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(95262,39524,'blocks_2_options_theme','#ffffff'),(95263,39524,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(95264,39524,'blocks_2_options_reverse','0'),(95265,39524,'_blocks_2_options_reverse','field_61768049bb8ac'),(95266,39524,'blocks_2_options',''),(95267,39524,'_blocks_2_options','field_617682517c334'),(95268,39524,'blocks_2_split_5050_image','38037'),(95269,39524,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(95270,39524,'blocks_2_split_5050_video',''),(95271,39524,'_blocks_2_split_5050_video','field_6239f3160848a'),(95272,39524,'blocks_2_split_5050_content_title',''),(95273,39524,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(95274,39524,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(95275,39524,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(95276,39524,'blocks_2_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(95277,39524,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(95278,39524,'blocks_2_split_5050_content_actions',''),(95279,39524,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(95280,39524,'blocks_2_split_5050_content',''),(95281,39524,'_blocks_2_split_5050_content','field_61767afceb8ba'),(95282,39524,'blocks_3_acfe_flexible_toggle',''),(95283,39524,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(95284,39524,'blocks_3_acfe_flexible_layout_title','Form'),(95285,39524,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(95286,39524,'blocks_3_row_content_format','standard'),(95287,39524,'_blocks_3_row_content_format','field_6481ead962881'),(95288,39524,'blocks_3_row_content_title',''),(95289,39524,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(95290,39524,'blocks_3_row_content_heading','Enquire Today'),(95291,39524,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(95292,39524,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(95293,39524,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(95294,39524,'blocks_3_row_content_actions',''),(95295,39524,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(95296,39524,'blocks_3_row_content',''),(95297,39524,'_blocks_3_row_content','field_61a0f5f5b3db0'),(95298,39524,'blocks_3_row_form',''),(95299,39524,'_blocks_3_row_form','field_61a4ff2c0b08e'),(95300,39524,'blocks_3_row_form_button_label',''),(95301,39524,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(95302,39524,'blocks_4_acfe_flexible_toggle',''),(95303,39524,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(95304,39524,'blocks_4_acfe_flexible_layout_title','Tabs'),(95305,39524,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(95306,39524,'blocks_4_options_theme','#ffffff'),(95307,39524,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(95308,39524,'blocks_4_options',''),(95309,39524,'_blocks_4_options','field_6177cfcd8140f'),(95310,39524,'blocks_4_tabs_0_tab_label','What will I learn ?'),(95311,39524,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(95312,39524,'blocks_4_tabs_0_tab_content_title',''),(95313,39524,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(95314,39524,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(95315,39524,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(95316,39524,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(95317,39524,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(95318,39524,'blocks_4_tabs_0_tab_content_actions',''),(95319,39524,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(95320,39524,'blocks_4_tabs_0_tab_content',''),(95321,39524,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(95322,39524,'blocks_4_tabs_0_tab_image','39076'),(95323,39524,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(95324,39524,'blocks_4_tabs_1_tab_label','What do I need ?'),(95325,39524,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(95326,39524,'blocks_4_tabs_1_tab_content_title',''),(95327,39524,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(95328,39524,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(95329,39524,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(95330,39524,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(95331,39524,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(95332,39524,'blocks_4_tabs_1_tab_content_actions',''),(95333,39524,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(95334,39524,'blocks_4_tabs_1_tab_content',''),(95335,39524,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(95336,39524,'blocks_4_tabs_1_tab_image','39223'),(95337,39524,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(95338,39524,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(95339,39524,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(95340,39524,'blocks_4_tabs_2_tab_content_title',''),(95341,39524,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(95342,39524,'blocks_4_tabs_2_tab_content_heading','Locations'),(95343,39524,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(95344,39524,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(95345,39524,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(95346,39524,'blocks_4_tabs_2_tab_content_actions',''),(95347,39524,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(95348,39524,'blocks_4_tabs_2_tab_content',''),(95349,39524,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(95350,39524,'blocks_4_tabs_2_tab_image','39224'),(95351,39524,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(95352,39524,'blocks_4_tabs','3'),(95353,39524,'_blocks_4_tabs','field_6177cff281419'),(95354,39524,'blocks_5_acfe_flexible_toggle',''),(95355,39524,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(95356,39524,'blocks_5_acfe_flexible_layout_title','Text Block'),(95357,39524,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(95358,39524,'blocks_5_options_theme','#b61234'),(95359,39524,'_blocks_5_options_theme','field_6176830e2ad17'),(95360,39524,'blocks_5_options',''),(95361,39524,'_blocks_5_options','field_6176830e2ad16'),(95362,39524,'blocks_5_text_block_heading','Fees & Funding Options'),(95363,39524,'_blocks_5_text_block_heading','field_617669d413097'),(95364,39524,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(95365,39524,'_blocks_5_text_block_content','field_617669ec13098'),(95366,39524,'blocks_6_acfe_flexible_toggle',''),(95367,39524,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(95368,39524,'blocks_6_acfe_flexible_layout_title','Icons'),(95369,39524,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(95370,39524,'blocks_6_options_theme','#b61234'),(95371,39524,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(95372,39524,'blocks_6_options_format','row'),(95373,39524,'_blocks_6_options_format','field_64bfde9a90690'),(95374,39524,'blocks_6_options',''),(95375,39524,'_blocks_6_options','field_64bfdd9b90684'),(95376,39524,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(95377,39524,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(95378,39524,'blocks_6_icon_row_items_0_label','Pay in Full'),(95379,39524,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(95380,39524,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(95381,39524,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(95382,39524,'blocks_6_icon_row_items_1_icon','finance.svg'),(95383,39524,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(95384,39524,'blocks_6_icon_row_items_1_label','0% finance'),(95385,39524,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(95386,39524,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(95387,39524,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(95388,39524,'blocks_6_icon_row_items_2_icon','deposit.svg'),(95389,39524,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(95390,39524,'blocks_6_icon_row_items_2_label','Deposit & balance'),(95391,39524,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(95392,39524,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(95393,39524,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(95394,39524,'blocks_6_icon_row_items','3'),(95395,39524,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(95396,39524,'blocks_7_acfe_flexible_toggle',''),(95397,39524,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(95398,39524,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(95399,39524,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(95400,39524,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(95401,39524,'_blocks_7_content','field_6193c9b5eac84'),(95402,39524,'blocks_8_acfe_flexible_toggle',''),(95403,39524,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(95404,39524,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(95405,39524,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(95406,39524,'blocks_8_testimonial_slider_content_title',''),(95407,39524,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(95408,39524,'blocks_8_testimonial_slider_content_heading','Testimonials'),(95409,39524,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(95410,39524,'blocks_8_testimonial_slider_content_text',''),(95411,39524,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(95412,39524,'blocks_8_testimonial_slider_content_actions',''),(95413,39524,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(95414,39524,'blocks_8_testimonial_slider_content',''),(95415,39524,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(95416,39524,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(95417,39524,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(95418,39524,'blocks_8_testimonial_slider_ambassador_bool','0'),(95419,39524,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(95420,39524,'blocks_9_acfe_flexible_toggle',''),(95421,39524,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(95422,39524,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(95423,39524,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(95424,39524,'blocks_9_options_theme','#ffffff'),(95425,39524,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(95426,39524,'blocks_9_options_state','0'),(95427,39524,'_blocks_9_options_state','field_6239fcb7508c5'),(95428,39524,'blocks_9_options',''),(95429,39524,'_blocks_9_options','field_6177e2991ac44'),(95430,39524,'blocks_9_content_title',''),(95431,39524,'_blocks_9_content_title','field_64d237e8bb1e2'),(95432,39524,'blocks_9_content_heading','Frequently asked questions '),(95433,39524,'_blocks_9_content_heading','field_64d237e8bb1e3'),(95434,39524,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(95435,39524,'_blocks_9_content_text','field_64d237e8bb1e4'),(95436,39524,'blocks_9_content_actions',''),(95437,39524,'_blocks_9_content_actions','field_64d237e8bb1e5'),(95438,39524,'blocks_9_content_align','left'),(95439,39524,'_blocks_9_content_align','field_64d2443e6b6aa'),(95440,39524,'blocks_9_content',''),(95441,39524,'_blocks_9_content','field_64d237e8bb1e1'),(95442,39524,'blocks_9_accordion_content','faqs'),(95443,39524,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(95444,39524,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(95445,39524,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(95446,39524,'blocks_9_actions',''),(95447,39524,'_blocks_9_actions','field_61a746a817f7a'),(95448,39525,'hide_hero','0'),(95449,39525,'_hide_hero','field_66a2380fcda39'),(95450,39525,'hero_title','Biomechanics and Pilates'),(95451,39525,'_hero_title','field_617571fe285e8'),(95452,39525,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(95453,39525,'_hero_text','field_6175723c285e9'),(95454,39525,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(95455,39525,'_hero_actions_0_button','field_61757281285eb'),(95456,39525,'hero_actions','1'),(95457,39525,'_hero_actions','field_61757270285ea'),(95458,39525,'hero_style','default'),(95459,39525,'_hero_style','field_62051d9dc5324'),(95460,39525,'_thumbnail_id','39243'),(95461,39525,'__thumbnail_id','field_617570855ddaf'),(95462,39525,'hero_image_pos_x','right'),(95463,39525,'_hero_image_pos_x','field_62ec3d05390bb'),(95464,39525,'hero_image_pos_y','top'),(95465,39525,'_hero_image_pos_y','field_62ec3d05390bc'),(95466,39525,'hero_image_pos',''),(95467,39525,'_hero_image_pos','field_62ec3d05390ba'),(95468,39525,'fft_hide_from_listings','0'),(95469,39525,'_fft_hide_from_listings','field_61f1320446ab2'),(95470,39525,'fft_page_format','default'),(95471,39525,'_fft_page_format','field_61ae213f1f218'),(95472,39525,'fft_hide_nav','0'),(95473,39525,'_fft_hide_nav','field_635bd5e43527c'),(95474,39525,'fft_hide_header_call_to_action','0'),(95475,39525,'_fft_hide_header_call_to_action','field_635bd6723527d'),(95476,39525,'fft_page_sitemap','0'),(95477,39525,'_fft_page_sitemap','field_61af9b34e8181'),(95478,39525,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(95479,39525,'_blocks','field_6176696113096'),(95480,39525,'blocks_0_acfe_flexible_toggle',''),(95481,39525,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(95482,39525,'blocks_0_acfe_flexible_layout_title','Steps'),(95483,39525,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(95484,39525,'blocks_0_row_content_title',''),(95485,39525,'_blocks_0_row_content_title','field_64888cd1e26e0'),(95486,39525,'blocks_0_row_content_heading','Benefits of training with us'),(95487,39525,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(95488,39525,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(95489,39525,'_blocks_0_row_content_text','field_64888ce2e26e2'),(95490,39525,'blocks_0_row_content_actions',''),(95491,39525,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(95492,39525,'blocks_0_row_content',''),(95493,39525,'_blocks_0_row_content','field_64888cb0e26df'),(95494,39525,'blocks_0_steps_0_icon','progression.svg'),(95495,39525,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(95496,39525,'blocks_0_steps_0_title','Earning potential'),(95497,39525,'_blocks_0_steps_0_title','field_64888d94e26e7'),(95498,39525,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(95499,39525,'_blocks_0_steps_0_text','field_64888d99e26e8'),(95500,39525,'blocks_0_steps_1_icon','support.svg'),(95501,39525,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(95502,39525,'blocks_0_steps_1_title','Lifetime Learning Promise'),(95503,39525,'_blocks_0_steps_1_title','field_64888d94e26e7'),(95504,39525,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(95505,39525,'_blocks_0_steps_1_text','field_64888d99e26e8'),(95506,39525,'blocks_0_steps_2_icon','qualification.svg'),(95507,39525,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(95508,39525,'blocks_0_steps_2_title','Evidence based hands on learning'),(95509,39525,'_blocks_0_steps_2_title','field_64888d94e26e7'),(95510,39525,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(95511,39525,'_blocks_0_steps_2_text','field_64888d99e26e8'),(95512,39525,'blocks_0_steps_3_icon','leaders.svg'),(95513,39525,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(95514,39525,'blocks_0_steps_3_title','Stand out from the crowd'),(95515,39525,'_blocks_0_steps_3_title','field_64888d94e26e7'),(95516,39525,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(95517,39525,'_blocks_0_steps_3_text','field_64888d99e26e8'),(95518,39525,'blocks_0_steps','4'),(95519,39525,'_blocks_0_steps','field_64888d44e26e5'),(95520,39525,'blocks_1_acfe_flexible_toggle',''),(95521,39525,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(95522,39525,'blocks_1_acfe_flexible_layout_title','Video'),(95523,39525,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(95524,39525,'blocks_1_size','large'),(95525,39525,'_blocks_1_size','field_6487038f297c1'),(95526,39525,'blocks_1_row_content_title','Tom Waldron - Master Trainer'),(95527,39525,'_blocks_1_row_content_title','field_64870132a865d'),(95528,39525,'blocks_1_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(95529,39525,'_blocks_1_row_content_heading','field_64870142a865e'),(95530,39525,'blocks_1_row_content_text',''),(95531,39525,'_blocks_1_row_content_text','field_64870148a865f'),(95532,39525,'blocks_1_row_content',''),(95533,39525,'_blocks_1_row_content','field_6487008ba865c'),(95534,39525,'blocks_1_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(95535,39525,'_blocks_1_video_src','field_6193c4a98ec07'),(95536,39525,'blocks_1_video_thumbnail',''),(95537,39525,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(95538,39525,'blocks_2_acfe_flexible_toggle',''),(95539,39525,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(95540,39525,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(95541,39525,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(95542,39525,'blocks_2_options_theme','#ffffff'),(95543,39525,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(95544,39525,'blocks_2_options_reverse','0'),(95545,39525,'_blocks_2_options_reverse','field_61768049bb8ac'),(95546,39525,'blocks_2_options',''),(95547,39525,'_blocks_2_options','field_617682517c334'),(95548,39525,'blocks_2_split_5050_image','38037'),(95549,39525,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(95550,39525,'blocks_2_split_5050_video',''),(95551,39525,'_blocks_2_split_5050_video','field_6239f3160848a'),(95552,39525,'blocks_2_split_5050_content_title',''),(95553,39525,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(95554,39525,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(95555,39525,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(95556,39525,'blocks_2_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(95557,39525,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(95558,39525,'blocks_2_split_5050_content_actions',''),(95559,39525,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(95560,39525,'blocks_2_split_5050_content',''),(95561,39525,'_blocks_2_split_5050_content','field_61767afceb8ba'),(95562,39525,'blocks_3_acfe_flexible_toggle',''),(95563,39525,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(95564,39525,'blocks_3_acfe_flexible_layout_title','Form'),(95565,39525,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(95566,39525,'blocks_3_row_content_format','standard'),(95567,39525,'_blocks_3_row_content_format','field_6481ead962881'),(95568,39525,'blocks_3_row_content_title',''),(95569,39525,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(95570,39525,'blocks_3_row_content_heading','Enquire Today'),(95571,39525,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(95572,39525,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(95573,39525,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(95574,39525,'blocks_3_row_content_actions',''),(95575,39525,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(95576,39525,'blocks_3_row_content',''),(95577,39525,'_blocks_3_row_content','field_61a0f5f5b3db0'),(95578,39525,'blocks_3_row_form',''),(95579,39525,'_blocks_3_row_form','field_61a4ff2c0b08e'),(95580,39525,'blocks_3_row_form_button_label',''),(95581,39525,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(95582,39525,'blocks_4_acfe_flexible_toggle',''),(95583,39525,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(95584,39525,'blocks_4_acfe_flexible_layout_title','Tabs'),(95585,39525,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(95586,39525,'blocks_4_options_theme','#ffffff'),(95587,39525,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(95588,39525,'blocks_4_options',''),(95589,39525,'_blocks_4_options','field_6177cfcd8140f'),(95590,39525,'blocks_4_tabs_0_tab_label','What will I learn ?'),(95591,39525,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(95592,39525,'blocks_4_tabs_0_tab_content_title',''),(95593,39525,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(95594,39525,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(95595,39525,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(95596,39525,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(95597,39525,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(95598,39525,'blocks_4_tabs_0_tab_content_actions',''),(95599,39525,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(95600,39525,'blocks_4_tabs_0_tab_content',''),(95601,39525,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(95602,39525,'blocks_4_tabs_0_tab_image','39076'),(95603,39525,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(95604,39525,'blocks_4_tabs_1_tab_label','What do I need ?'),(95605,39525,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(95606,39525,'blocks_4_tabs_1_tab_content_title',''),(95607,39525,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(95608,39525,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(95609,39525,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(95610,39525,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(95611,39525,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(95612,39525,'blocks_4_tabs_1_tab_content_actions',''),(95613,39525,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(95614,39525,'blocks_4_tabs_1_tab_content',''),(95615,39525,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(95616,39525,'blocks_4_tabs_1_tab_image','39223'),(95617,39525,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(95618,39525,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(95619,39525,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(95620,39525,'blocks_4_tabs_2_tab_content_title',''),(95621,39525,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(95622,39525,'blocks_4_tabs_2_tab_content_heading','Locations'),(95623,39525,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(95624,39525,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(95625,39525,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(95626,39525,'blocks_4_tabs_2_tab_content_actions',''),(95627,39525,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(95628,39525,'blocks_4_tabs_2_tab_content',''),(95629,39525,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(95630,39525,'blocks_4_tabs_2_tab_image','39224'),(95631,39525,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(95632,39525,'blocks_4_tabs','3'),(95633,39525,'_blocks_4_tabs','field_6177cff281419'),(95634,39525,'blocks_5_acfe_flexible_toggle',''),(95635,39525,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(95636,39525,'blocks_5_acfe_flexible_layout_title','Text Block'),(95637,39525,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(95638,39525,'blocks_5_options_theme','#b61234'),(95639,39525,'_blocks_5_options_theme','field_6176830e2ad17'),(95640,39525,'blocks_5_options',''),(95641,39525,'_blocks_5_options','field_6176830e2ad16'),(95642,39525,'blocks_5_text_block_heading','Fees & Funding Options'),(95643,39525,'_blocks_5_text_block_heading','field_617669d413097'),(95644,39525,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(95645,39525,'_blocks_5_text_block_content','field_617669ec13098'),(95646,39525,'blocks_6_acfe_flexible_toggle',''),(95647,39525,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(95648,39525,'blocks_6_acfe_flexible_layout_title','Icons'),(95649,39525,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(95650,39525,'blocks_6_options_theme','#b61234'),(95651,39525,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(95652,39525,'blocks_6_options_format','row'),(95653,39525,'_blocks_6_options_format','field_64bfde9a90690'),(95654,39525,'blocks_6_options',''),(95655,39525,'_blocks_6_options','field_64bfdd9b90684'),(95656,39525,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(95657,39525,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(95658,39525,'blocks_6_icon_row_items_0_label','Pay in Full'),(95659,39525,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(95660,39525,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(95661,39525,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(95662,39525,'blocks_6_icon_row_items_1_icon','finance.svg'),(95663,39525,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(95664,39525,'blocks_6_icon_row_items_1_label','0% finance'),(95665,39525,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(95666,39525,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(95667,39525,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(95668,39525,'blocks_6_icon_row_items_2_icon','deposit.svg'),(95669,39525,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(95670,39525,'blocks_6_icon_row_items_2_label','Deposit & balance'),(95671,39525,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(95672,39525,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(95673,39525,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(95674,39525,'blocks_6_icon_row_items','3'),(95675,39525,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(95676,39525,'blocks_7_acfe_flexible_toggle',''),(95677,39525,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(95678,39525,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(95679,39525,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(95680,39525,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(95681,39525,'_blocks_7_content','field_6193c9b5eac84'),(95682,39525,'blocks_8_acfe_flexible_toggle',''),(95683,39525,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(95684,39525,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(95685,39525,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(95686,39525,'blocks_8_testimonial_slider_content_title',''),(95687,39525,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(95688,39525,'blocks_8_testimonial_slider_content_heading','Testimonials'),(95689,39525,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(95690,39525,'blocks_8_testimonial_slider_content_text',''),(95691,39525,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(95692,39525,'blocks_8_testimonial_slider_content_actions',''),(95693,39525,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(95694,39525,'blocks_8_testimonial_slider_content',''),(95695,39525,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(95696,39525,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(95697,39525,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(95698,39525,'blocks_8_testimonial_slider_ambassador_bool','0'),(95699,39525,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(95700,39525,'blocks_9_acfe_flexible_toggle',''),(95701,39525,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(95702,39525,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(95703,39525,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(95704,39525,'blocks_9_options_theme','#ffffff'),(95705,39525,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(95706,39525,'blocks_9_options_state','0'),(95707,39525,'_blocks_9_options_state','field_6239fcb7508c5'),(95708,39525,'blocks_9_options',''),(95709,39525,'_blocks_9_options','field_6177e2991ac44'),(95710,39525,'blocks_9_content_title',''),(95711,39525,'_blocks_9_content_title','field_64d237e8bb1e2'),(95712,39525,'blocks_9_content_heading','Frequently asked questions '),(95713,39525,'_blocks_9_content_heading','field_64d237e8bb1e3'),(95714,39525,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(95715,39525,'_blocks_9_content_text','field_64d237e8bb1e4'),(95716,39525,'blocks_9_content_actions',''),(95717,39525,'_blocks_9_content_actions','field_64d237e8bb1e5'),(95718,39525,'blocks_9_content_align','left'),(95719,39525,'_blocks_9_content_align','field_64d2443e6b6aa'),(95720,39525,'blocks_9_content',''),(95721,39525,'_blocks_9_content','field_64d237e8bb1e1'),(95722,39525,'blocks_9_accordion_content','faqs'),(95723,39525,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(95724,39525,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(95725,39525,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(95726,39525,'blocks_9_actions',''),(95727,39525,'_blocks_9_actions','field_61a746a817f7a'),(95728,39526,'hide_hero','0'),(95729,39526,'_hide_hero','field_66a2380fcda39'),(95730,39526,'hero_title','Biomechanics and Personal Training'),(95731,39526,'_hero_title','field_617571fe285e8'),(95732,39526,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(95733,39526,'_hero_text','field_6175723c285e9'),(95734,39526,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(95735,39526,'_hero_actions_0_button','field_61757281285eb'),(95736,39526,'hero_actions','1'),(95737,39526,'_hero_actions','field_61757270285ea'),(95738,39526,'hero_style','default'),(95739,39526,'_hero_style','field_62051d9dc5324'),(95740,39526,'_thumbnail_id','39215'),(95741,39526,'__thumbnail_id','field_617570855ddaf'),(95742,39526,'hero_image_pos_x','right'),(95743,39526,'_hero_image_pos_x','field_62ec3d05390bb'),(95744,39526,'hero_image_pos_y','top'),(95745,39526,'_hero_image_pos_y','field_62ec3d05390bc'),(95746,39526,'hero_image_pos',''),(95747,39526,'_hero_image_pos','field_62ec3d05390ba'),(95748,39526,'fft_hide_from_listings','0'),(95749,39526,'_fft_hide_from_listings','field_61f1320446ab2'),(95750,39526,'fft_page_format','default'),(95751,39526,'_fft_page_format','field_61ae213f1f218'),(95752,39526,'fft_hide_nav','0'),(95753,39526,'_fft_hide_nav','field_635bd5e43527c'),(95754,39526,'fft_hide_header_call_to_action','0'),(95755,39526,'_fft_hide_header_call_to_action','field_635bd6723527d'),(95756,39526,'fft_page_sitemap','0'),(95757,39526,'_fft_page_sitemap','field_61af9b34e8181'),(95758,39526,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(95759,39526,'_blocks','field_6176696113096'),(95760,39526,'blocks_0_acfe_flexible_toggle',''),(95761,39526,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(95762,39526,'blocks_0_acfe_flexible_layout_title','Steps'),(95763,39526,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(95764,39526,'blocks_0_row_content_title',''),(95765,39526,'_blocks_0_row_content_title','field_64888cd1e26e0'),(95766,39526,'blocks_0_row_content_heading','Benefits of training with us'),(95767,39526,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(95768,39526,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(95769,39526,'_blocks_0_row_content_text','field_64888ce2e26e2'),(95770,39526,'blocks_0_row_content_actions',''),(95771,39526,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(95772,39526,'blocks_0_row_content',''),(95773,39526,'_blocks_0_row_content','field_64888cb0e26df'),(95774,39526,'blocks_0_steps_0_icon','progression.svg'),(95775,39526,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(95776,39526,'blocks_0_steps_0_title','Earning potential'),(95777,39526,'_blocks_0_steps_0_title','field_64888d94e26e7'),(95778,39526,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(95779,39526,'_blocks_0_steps_0_text','field_64888d99e26e8'),(95780,39526,'blocks_0_steps_1_icon','support.svg'),(95781,39526,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(95782,39526,'blocks_0_steps_1_title','Lifetime Learning Promise'),(95783,39526,'_blocks_0_steps_1_title','field_64888d94e26e7'),(95784,39526,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(95785,39526,'_blocks_0_steps_1_text','field_64888d99e26e8'),(95786,39526,'blocks_0_steps_2_icon','qualification.svg'),(95787,39526,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(95788,39526,'blocks_0_steps_2_title','Evidence based hands on learning'),(95789,39526,'_blocks_0_steps_2_title','field_64888d94e26e7'),(95790,39526,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(95791,39526,'_blocks_0_steps_2_text','field_64888d99e26e8'),(95792,39526,'blocks_0_steps_3_icon','leaders.svg'),(95793,39526,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(95794,39526,'blocks_0_steps_3_title','Stand out from the crowd'),(95795,39526,'_blocks_0_steps_3_title','field_64888d94e26e7'),(95796,39526,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(95797,39526,'_blocks_0_steps_3_text','field_64888d99e26e8'),(95798,39526,'blocks_0_steps','4'),(95799,39526,'_blocks_0_steps','field_64888d44e26e5'),(95800,39526,'blocks_1_acfe_flexible_toggle',''),(95801,39526,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(95802,39526,'blocks_1_acfe_flexible_layout_title','Video'),(95803,39526,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(95804,39526,'blocks_1_size','large'),(95805,39526,'_blocks_1_size','field_6487038f297c1'),(95806,39526,'blocks_1_row_content_title',''),(95807,39526,'_blocks_1_row_content_title','field_64870132a865d'),(95808,39526,'blocks_1_row_content_heading',''),(95809,39526,'_blocks_1_row_content_heading','field_64870142a865e'),(95810,39526,'blocks_1_row_content_text',''),(95811,39526,'_blocks_1_row_content_text','field_64870148a865f'),(95812,39526,'blocks_1_row_content',''),(95813,39526,'_blocks_1_row_content','field_6487008ba865c'),(95814,39526,'blocks_1_video_src','https://youtu.be/kLVekt6aqrI'),(95815,39526,'_blocks_1_video_src','field_6193c4a98ec07'),(95816,39526,'blocks_1_video_thumbnail',''),(95817,39526,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(95818,39526,'blocks_2_acfe_flexible_toggle',''),(95819,39526,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(95820,39526,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(95821,39526,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(95822,39526,'blocks_2_options_theme','#ffffff'),(95823,39526,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(95824,39526,'blocks_2_options_reverse','0'),(95825,39526,'_blocks_2_options_reverse','field_61768049bb8ac'),(95826,39526,'blocks_2_options',''),(95827,39526,'_blocks_2_options','field_617682517c334'),(95828,39526,'blocks_2_split_5050_image','39220'),(95829,39526,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(95830,39526,'blocks_2_split_5050_video',''),(95831,39526,'_blocks_2_split_5050_video','field_6239f3160848a'),(95832,39526,'blocks_2_split_5050_content_title',''),(95833,39526,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(95834,39526,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a PT'),(95835,39526,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(95836,39526,'blocks_2_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(95837,39526,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(95838,39526,'blocks_2_split_5050_content_actions',''),(95839,39526,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(95840,39526,'blocks_2_split_5050_content',''),(95841,39526,'_blocks_2_split_5050_content','field_61767afceb8ba'),(95842,39526,'blocks_3_acfe_flexible_toggle',''),(95843,39526,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(95844,39526,'blocks_3_acfe_flexible_layout_title','Form'),(95845,39526,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(95846,39526,'blocks_3_row_content_format','standard'),(95847,39526,'_blocks_3_row_content_format','field_6481ead962881'),(95848,39526,'blocks_3_row_content_title',''),(95849,39526,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(95850,39526,'blocks_3_row_content_heading','Enquire Today'),(95851,39526,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(95852,39526,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(95853,39526,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(95854,39526,'blocks_3_row_content_actions',''),(95855,39526,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(95856,39526,'blocks_3_row_content',''),(95857,39526,'_blocks_3_row_content','field_61a0f5f5b3db0'),(95858,39526,'blocks_3_row_form',''),(95859,39526,'_blocks_3_row_form','field_61a4ff2c0b08e'),(95860,39526,'blocks_3_row_form_button_label',''),(95861,39526,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(95862,39526,'blocks_4_acfe_flexible_toggle',''),(95863,39526,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(95864,39526,'blocks_4_acfe_flexible_layout_title','Tabs'),(95865,39526,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(95866,39526,'blocks_4_options_theme','#ffffff'),(95867,39526,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(95868,39526,'blocks_4_options',''),(95869,39526,'_blocks_4_options','field_6177cfcd8140f'),(95870,39526,'blocks_4_tabs_0_tab_label','What will I learn ?'),(95871,39526,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(95872,39526,'blocks_4_tabs_0_tab_content_title',''),(95873,39526,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(95874,39526,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(95875,39526,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(95876,39526,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(95877,39526,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(95878,39526,'blocks_4_tabs_0_tab_content_actions',''),(95879,39526,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(95880,39526,'blocks_4_tabs_0_tab_content',''),(95881,39526,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(95882,39526,'blocks_4_tabs_0_tab_image','39076'),(95883,39526,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(95884,39526,'blocks_4_tabs_1_tab_label','What do I need ?'),(95885,39526,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(95886,39526,'blocks_4_tabs_1_tab_content_title',''),(95887,39526,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(95888,39526,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(95889,39526,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(95890,39526,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(95891,39526,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(95892,39526,'blocks_4_tabs_1_tab_content_actions',''),(95893,39526,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(95894,39526,'blocks_4_tabs_1_tab_content',''),(95895,39526,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(95896,39526,'blocks_4_tabs_1_tab_image','39223'),(95897,39526,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(95898,39526,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(95899,39526,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(95900,39526,'blocks_4_tabs_2_tab_content_title',''),(95901,39526,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(95902,39526,'blocks_4_tabs_2_tab_content_heading','Locations'),(95903,39526,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(95904,39526,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(95905,39526,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(95906,39526,'blocks_4_tabs_2_tab_content_actions',''),(95907,39526,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(95908,39526,'blocks_4_tabs_2_tab_content',''),(95909,39526,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(95910,39526,'blocks_4_tabs_2_tab_image','39224'),(95911,39526,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(95912,39526,'blocks_4_tabs','3'),(95913,39526,'_blocks_4_tabs','field_6177cff281419'),(95914,39526,'blocks_5_acfe_flexible_toggle',''),(95915,39526,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(95916,39526,'blocks_5_acfe_flexible_layout_title','Text Block'),(95917,39526,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(95918,39526,'blocks_5_options_theme','#b61234'),(95919,39526,'_blocks_5_options_theme','field_6176830e2ad17'),(95920,39526,'blocks_5_options',''),(95921,39526,'_blocks_5_options','field_6176830e2ad16'),(95922,39526,'blocks_5_text_block_heading','Fees & Funding Options'),(95923,39526,'_blocks_5_text_block_heading','field_617669d413097'),(95924,39526,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(95925,39526,'_blocks_5_text_block_content','field_617669ec13098'),(95926,39526,'blocks_6_acfe_flexible_toggle',''),(95927,39526,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(95928,39526,'blocks_6_acfe_flexible_layout_title','Icons'),(95929,39526,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(95930,39526,'blocks_6_options_theme','#b61234'),(95931,39526,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(95932,39526,'blocks_6_options_format','row'),(95933,39526,'_blocks_6_options_format','field_64bfde9a90690'),(95934,39526,'blocks_6_options',''),(95935,39526,'_blocks_6_options','field_64bfdd9b90684'),(95936,39526,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(95937,39526,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(95938,39526,'blocks_6_icon_row_items_0_label','Pay in Full'),(95939,39526,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(95940,39526,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(95941,39526,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(95942,39526,'blocks_6_icon_row_items_1_icon','finance.svg'),(95943,39526,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(95944,39526,'blocks_6_icon_row_items_1_label','0% finance'),(95945,39526,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(95946,39526,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(95947,39526,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(95948,39526,'blocks_6_icon_row_items_2_icon','deposit.svg'),(95949,39526,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(95950,39526,'blocks_6_icon_row_items_2_label','Deposit & balance'),(95951,39526,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(95952,39526,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(95953,39526,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(95954,39526,'blocks_6_icon_row_items','3'),(95955,39526,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(95956,39526,'blocks_7_acfe_flexible_toggle',''),(95957,39526,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(95958,39526,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(95959,39526,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(95960,39526,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(95961,39526,'_blocks_7_content','field_6193c9b5eac84'),(95962,39526,'blocks_8_acfe_flexible_toggle',''),(95963,39526,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(95964,39526,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(95965,39526,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(95966,39526,'blocks_8_testimonial_slider_content_title',''),(95967,39526,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(95968,39526,'blocks_8_testimonial_slider_content_heading','Testimonials'),(95969,39526,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(95970,39526,'blocks_8_testimonial_slider_content_text',''),(95971,39526,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(95972,39526,'blocks_8_testimonial_slider_content_actions',''),(95973,39526,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(95974,39526,'blocks_8_testimonial_slider_content',''),(95975,39526,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(95976,39526,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(95977,39526,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(95978,39526,'blocks_8_testimonial_slider_ambassador_bool','0'),(95979,39526,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(95980,39526,'blocks_9_acfe_flexible_toggle',''),(95981,39526,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(95982,39526,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(95983,39526,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(95984,39526,'blocks_9_options_theme','#ffffff'),(95985,39526,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(95986,39526,'blocks_9_options_state','0'),(95987,39526,'_blocks_9_options_state','field_6239fcb7508c5'),(95988,39526,'blocks_9_options',''),(95989,39526,'_blocks_9_options','field_6177e2991ac44'),(95990,39526,'blocks_9_content_title',''),(95991,39526,'_blocks_9_content_title','field_64d237e8bb1e2'),(95992,39526,'blocks_9_content_heading','Frequently asked questions '),(95993,39526,'_blocks_9_content_heading','field_64d237e8bb1e3'),(95994,39526,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(95995,39526,'_blocks_9_content_text','field_64d237e8bb1e4'),(95996,39526,'blocks_9_content_actions',''),(95997,39526,'_blocks_9_content_actions','field_64d237e8bb1e5'),(95998,39526,'blocks_9_content_align','left'),(95999,39526,'_blocks_9_content_align','field_64d2443e6b6aa'),(96000,39526,'blocks_9_content',''),(96001,39526,'_blocks_9_content','field_64d237e8bb1e1'),(96002,39526,'blocks_9_accordion_content','faqs'),(96003,39526,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(96004,39526,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(96005,39526,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(96006,39526,'blocks_9_actions',''),(96007,39526,'_blocks_9_actions','field_61a746a817f7a'),(96246,39038,'hide_hero','0'),(96247,39038,'_hide_hero','field_66a2380fcda39'),(96248,39531,'hero_style','default'),(96249,39531,'_hero_style','field_62051d9dc5324'),(96250,39531,'hero_image_pos_x','right'),(96251,39531,'_hero_image_pos_x','field_62ec3d05390bb'),(96252,39531,'hero_image_pos_y','top'),(96253,39531,'_hero_image_pos_y','field_62ec3d05390bc'),(96254,39531,'hero_image_pos',''),(96255,39531,'_hero_image_pos','field_62ec3d05390ba'),(96256,39531,'hero_title','Biomechanics Coach Course - EMD UK'),(96257,39531,'_hero_title','field_617571fe285e8'),(96258,39531,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a EMD UK member. '),(96259,39531,'_hero_text','field_6175723c285e9'),(96260,39531,'hero_actions','1'),(96261,39531,'_hero_actions','field_61757270285ea'),(96262,39531,'hero_icon',''),(96263,39531,'_hero_icon','field_61a6182199d03'),(96264,39531,'fft_hide_from_listings','0'),(96265,39531,'_fft_hide_from_listings','field_61f1320446ab2'),(96266,39531,'fft_page_format','default'),(96267,39531,'_fft_page_format','field_61ae213f1f218'),(96268,39531,'fft_hide_nav','1'),(96269,39531,'_fft_hide_nav','field_635bd5e43527c'),(96270,39531,'fft_hide_header_call_to_action','0'),(96271,39531,'_fft_hide_header_call_to_action','field_635bd6723527d'),(96272,39531,'fft_page_sitemap','1'),(96273,39531,'_fft_page_sitemap','field_61af9b34e8181'),(96274,39531,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(96275,39531,'_blocks','field_6176696113096'),(96276,39531,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(96277,39531,'_hero_actions_0_button','field_61757281285eb'),(96278,39531,'_thumbnail_id','38977'),(96279,39531,'__thumbnail_id','field_617570855ddaf'),(96280,39531,'blocks_0_acfe_flexible_toggle',''),(96281,39531,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(96282,39531,'blocks_0_acfe_flexible_layout_title','Icons'),(96283,39531,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(96284,39531,'blocks_0_options_theme','#ffffff'),(96285,39531,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(96286,39531,'blocks_0_options_format','row'),(96287,39531,'_blocks_0_options_format','field_64bfde9a90690'),(96288,39531,'blocks_0_options',''),(96289,39531,'_blocks_0_options','field_64bfdd9b90684'),(96290,39531,'blocks_0_icon_row_items_0_icon','qualification.svg'),(96291,39531,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(96292,39531,'blocks_0_icon_row_items_0_label','Course Type'),(96293,39531,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(96294,39531,'blocks_0_icon_row_items_0_text','Blended Learning'),(96295,39531,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(96296,39531,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(96297,39531,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(96298,39531,'blocks_0_icon_row_items_1_label','Qualification'),(96299,39531,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(96300,39531,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(96301,39531,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(96302,39531,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(96303,39531,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(96304,39531,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(96305,39531,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(96306,39531,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(96307,39531,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(96308,39531,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(96309,39531,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(96310,39531,'blocks_0_icon_row_items_3_label','IBA Registered'),(96311,39531,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(96312,39531,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(96313,39531,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(96314,39531,'blocks_0_icon_row_items','4'),(96315,39531,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(96316,39531,'blocks_1_acfe_flexible_toggle',''),(96317,39531,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(96318,39531,'blocks_1_acfe_flexible_layout_title','Form'),(96319,39531,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(96320,39531,'blocks_1_row_content_format','promotion'),(96321,39531,'_blocks_1_row_content_format','field_6481ead962881'),(96322,39531,'blocks_1_row_content_title',''),(96323,39531,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(96324,39531,'blocks_1_row_content_heading',''),(96325,39531,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(96326,39531,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(96327,39531,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(96328,39531,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(96329,39531,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(96330,39531,'blocks_1_row_content_actions','1'),(96331,39531,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(96332,39531,'blocks_1_row_content',''),(96333,39531,'_blocks_1_row_content','field_61a0f5f5b3db0'),(96334,39531,'blocks_1_row_form',''),(96335,39531,'_blocks_1_row_form','field_61a4ff2c0b08e'),(96336,39531,'blocks_1_row_form_button_label',''),(96337,39531,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(96338,39531,'blocks_1_row_content_promotion_label','Up to 10% Off'),(96339,39531,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(96340,39531,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(96341,39531,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(96342,39531,'blocks_1_row_content_promotion_value','Up to 10% Off'),(96343,39531,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(96344,39531,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an EMD UK member'),(96345,39531,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(96346,39531,'blocks_1_row_content_promotion',''),(96347,39531,'_blocks_1_row_content_promotion','field_6481eb3962882'),(96348,39531,'blocks_1_row_form_title','EMD UK Referral'),(96349,39531,'_blocks_1_row_form_title','field_64872db5127af'),(96350,39531,'blocks_2_acfe_flexible_toggle',''),(96351,39531,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(96352,39531,'blocks_2_acfe_flexible_layout_title','Logos'),(96353,39531,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(96354,39531,'blocks_2_options_theme','#ffffff'),(96355,39531,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(96356,39531,'blocks_2_options_format','grid'),(96357,39531,'_blocks_2_options_format','field_61782964ee971'),(96358,39531,'blocks_2_options',''),(96359,39531,'_blocks_2_options','field_61782954ee965'),(96360,39531,'blocks_2_logos','a:2:{i:0;s:5:\"38587\";i:1;s:5:\"39040\";}'),(96361,39531,'_blocks_2_logos','field_61782954ee96d'),(96362,39531,'blocks_2_title',''),(96363,39531,'_blocks_2_title','field_668fbfdc2daa1'),(96364,39531,'blocks_3_acfe_flexible_toggle',''),(96365,39531,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(96366,39531,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(96367,39531,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(96368,39531,'blocks_3_size','large'),(96369,39531,'_blocks_3_size','field_6487038f297c1'),(96370,39531,'blocks_3_row_content_title',''),(96371,39531,'_blocks_3_row_content_title','field_64870132a865d'),(96372,39531,'blocks_3_row_content_heading','Course Overview'),(96373,39531,'_blocks_3_row_content_heading','field_64870142a865e'),(96374,39531,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(96375,39531,'_blocks_3_row_content_text','field_64870148a865f'),(96376,39531,'blocks_3_row_content',''),(96377,39531,'_blocks_3_row_content','field_6487008ba865c'),(96378,39531,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(96379,39531,'_blocks_3_video_src','field_6193c4a98ec07'),(96380,39531,'blocks_3_video_thumbnail','38998'),(96381,39531,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(96382,39531,'blocks_4_acfe_flexible_toggle',''),(96383,39531,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(96384,39531,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(96385,39531,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(96386,39531,'blocks_4_options_theme','#ffffff'),(96387,39531,'_blocks_4_options_theme','field_6176830e2ad17'),(96388,39531,'blocks_4_options',''),(96389,39531,'_blocks_4_options','field_6176830e2ad16'),(96390,39531,'blocks_4_text_block_heading','Learn more about the course'),(96391,39531,'_blocks_4_text_block_heading','field_617669d413097'),(96392,39531,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(96393,39531,'_blocks_4_text_block_content','field_617669ec13098'),(96394,39531,'blocks_5_acfe_flexible_toggle',''),(96395,39531,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(96396,39531,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(96397,39531,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(96398,39531,'blocks_5_options_theme','#ffffff'),(96399,39531,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(96400,39531,'blocks_5_options',''),(96401,39531,'_blocks_5_options','field_6177cfcd8140f'),(96402,39531,'blocks_5_tabs_0_tab_label','What\'s Included'),(96403,39531,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(96404,39531,'blocks_5_tabs_0_tab_content_title',''),(96405,39531,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(96406,39531,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(96407,39531,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(96408,39531,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(96409,39531,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(96410,39531,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(96411,39531,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(96412,39531,'blocks_5_tabs_0_tab_content_actions','1'),(96413,39531,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(96414,39531,'blocks_5_tabs_0_tab_content',''),(96415,39531,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(96416,39531,'blocks_5_tabs_0_tab_image','39009'),(96417,39531,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(96418,39531,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(96419,39531,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(96420,39531,'blocks_5_tabs_1_tab_content_title',''),(96421,39531,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(96422,39531,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(96423,39531,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(96424,39531,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(96425,39531,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(96426,39531,'blocks_5_tabs_1_tab_content_actions','1'),(96427,39531,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(96428,39531,'blocks_5_tabs_1_tab_content',''),(96429,39531,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(96430,39531,'blocks_5_tabs_1_tab_image','39010'),(96431,39531,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(96432,39531,'blocks_5_tabs','2'),(96433,39531,'_blocks_5_tabs','field_6177cff281419'),(96434,39531,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(96435,39531,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(96436,39531,'blocks_6_acfe_flexible_toggle',''),(96437,39531,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(96438,39531,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(96439,39531,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(96440,39531,'blocks_6_options_theme','#ffffff'),(96441,39531,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(96442,39531,'blocks_6_options_state','0'),(96443,39531,'_blocks_6_options_state','field_6239fcb7508c5'),(96444,39531,'blocks_6_options',''),(96445,39531,'_blocks_6_options','field_6177e2991ac44'),(96446,39531,'blocks_6_accordion_content','faqs'),(96447,39531,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(96448,39531,'blocks_6_actions',''),(96449,39531,'_blocks_6_actions','field_61a746a817f7a'),(96450,39531,'blocks_6_content_title',''),(96451,39531,'_blocks_6_content_title','field_64d237e8bb1e2'),(96452,39531,'blocks_6_content_heading','Frequently asked questions'),(96453,39531,'_blocks_6_content_heading','field_64d237e8bb1e3'),(96454,39531,'blocks_6_content_text',''),(96455,39531,'_blocks_6_content_text','field_64d237e8bb1e4'),(96456,39531,'blocks_6_content_actions',''),(96457,39531,'_blocks_6_content_actions','field_64d237e8bb1e5'),(96458,39531,'blocks_6_content_align','left'),(96459,39531,'_blocks_6_content_align','field_64d2443e6b6aa'),(96460,39531,'blocks_6_content',''),(96461,39531,'_blocks_6_content','field_64d237e8bb1e1'),(96462,39531,'blocks_6_accordion_faqs_select','a:13:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";i:12;s:5:\"39023\";}'),(96463,39531,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(96464,39531,'blocks_7_acfe_flexible_toggle',''),(96465,39531,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(96466,39531,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(96467,39531,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(96468,39531,'blocks_7_options_alignment','center'),(96469,39531,'_blocks_7_options_alignment','field_61769449f5490'),(96470,39531,'blocks_7_options',''),(96471,39531,'_blocks_7_options','field_617693e1428f0'),(96472,39531,'blocks_7_promo_panel_image','39035'),(96473,39531,'_blocks_7_promo_panel_image','field_617693e1428f3'),(96474,39531,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(96475,39531,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(96476,39531,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(96477,39531,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(96478,39531,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(96479,39531,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(96480,39531,'blocks_7_promo_panel_content_actions','1'),(96481,39531,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(96482,39531,'blocks_7_promo_panel_content',''),(96483,39531,'_blocks_7_promo_panel_content','field_617693e1428f4'),(96484,39531,'hide_hero','0'),(96485,39531,'_hide_hero','field_66a2380fcda39'),(96486,39532,'hide_hero','0'),(96487,39532,'_hide_hero','field_66a2380fcda39'),(96488,39532,'hero_title','Biomechanics Coach Course - EMD UK'),(96489,39532,'_hero_title','field_617571fe285e8'),(96490,39532,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a EMD UK member. '),(96491,39532,'_hero_text','field_6175723c285e9'),(96492,39532,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(96493,39532,'_hero_actions_0_button','field_61757281285eb'),(96494,39532,'hero_actions','1'),(96495,39532,'_hero_actions','field_61757270285ea'),(96496,39532,'hero_style','default'),(96497,39532,'_hero_style','field_62051d9dc5324'),(96498,39532,'_thumbnail_id','38977'),(96499,39532,'__thumbnail_id','field_617570855ddaf'),(96500,39532,'hero_image_pos_x','right'),(96501,39532,'_hero_image_pos_x','field_62ec3d05390bb'),(96502,39532,'hero_image_pos_y','top'),(96503,39532,'_hero_image_pos_y','field_62ec3d05390bc'),(96504,39532,'hero_image_pos',''),(96505,39532,'_hero_image_pos','field_62ec3d05390ba'),(96506,39532,'fft_hide_from_listings','0'),(96507,39532,'_fft_hide_from_listings','field_61f1320446ab2'),(96508,39532,'fft_page_format','default'),(96509,39532,'_fft_page_format','field_61ae213f1f218'),(96510,39532,'fft_hide_nav','1'),(96511,39532,'_fft_hide_nav','field_635bd5e43527c'),(96512,39532,'fft_hide_header_call_to_action','0'),(96513,39532,'_fft_hide_header_call_to_action','field_635bd6723527d'),(96514,39532,'fft_page_sitemap','1'),(96515,39532,'_fft_page_sitemap','field_61af9b34e8181'),(96516,39532,'blocks_0_acfe_flexible_toggle',''),(96517,39532,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(96518,39532,'blocks_0_acfe_flexible_layout_title','Icons'),(96519,39532,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(96520,39532,'blocks_0_options_theme','#ffffff'),(96521,39532,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(96522,39532,'blocks_0_options_format','row'),(96523,39532,'_blocks_0_options_format','field_64bfde9a90690'),(96524,39532,'blocks_0_options',''),(96525,39532,'_blocks_0_options','field_64bfdd9b90684'),(96526,39532,'blocks_0_icon_row_items_0_icon','qualification.svg'),(96527,39532,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(96528,39532,'blocks_0_icon_row_items_0_label','Course Type'),(96529,39532,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(96530,39532,'blocks_0_icon_row_items_0_text','Blended Learning'),(96531,39532,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(96532,39532,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(96533,39532,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(96534,39532,'blocks_0_icon_row_items_1_label','Qualification'),(96535,39532,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(96536,39532,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(96537,39532,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(96538,39532,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(96539,39532,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(96540,39532,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(96541,39532,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(96542,39532,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(96543,39532,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(96544,39532,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(96545,39532,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(96546,39532,'blocks_0_icon_row_items_3_label','IBA Registered'),(96547,39532,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(96548,39532,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(96549,39532,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(96550,39532,'blocks_0_icon_row_items','4'),(96551,39532,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(96552,39532,'blocks_1_acfe_flexible_toggle',''),(96553,39532,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(96554,39532,'blocks_1_acfe_flexible_layout_title','Form'),(96555,39532,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(96556,39532,'blocks_1_row_content_format','promotion'),(96557,39532,'_blocks_1_row_content_format','field_6481ead962881'),(96558,39532,'blocks_1_row_content_promotion_label','Up to 10% Off'),(96559,39532,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(96560,39532,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(96561,39532,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(96562,39532,'blocks_1_row_content_promotion_value','Up to 10% Off'),(96563,39532,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(96564,39532,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an EMD UK member'),(96565,39532,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(96566,39532,'blocks_1_row_content_promotion',''),(96567,39532,'_blocks_1_row_content_promotion','field_6481eb3962882'),(96568,39532,'blocks_1_row_form_title','EMD UK Referral'),(96569,39532,'_blocks_1_row_form_title','field_64872db5127af'),(96570,39532,'blocks_1_row_form',''),(96571,39532,'_blocks_1_row_form','field_61a4ff2c0b08e'),(96572,39532,'blocks_1_row_form_button_label',''),(96573,39532,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(96574,39532,'blocks_2_acfe_flexible_toggle',''),(96575,39532,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(96576,39532,'blocks_2_acfe_flexible_layout_title','Logos'),(96577,39532,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(96578,39532,'blocks_2_options_theme','#ffffff'),(96579,39532,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(96580,39532,'blocks_2_options_format','grid'),(96581,39532,'_blocks_2_options_format','field_61782964ee971'),(96582,39532,'blocks_2_options',''),(96583,39532,'_blocks_2_options','field_61782954ee965'),(96584,39532,'blocks_2_logos','a:2:{i:0;s:5:\"38587\";i:1;s:5:\"39040\";}'),(96585,39532,'_blocks_2_logos','field_61782954ee96d'),(96586,39532,'blocks_2_title',''),(96587,39532,'_blocks_2_title','field_668fbfdc2daa1'),(96588,39532,'blocks_3_acfe_flexible_toggle',''),(96589,39532,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(96590,39532,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(96591,39532,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(96592,39532,'blocks_3_size','large'),(96593,39532,'_blocks_3_size','field_6487038f297c1'),(96594,39532,'blocks_3_row_content_title',''),(96595,39532,'_blocks_3_row_content_title','field_64870132a865d'),(96596,39532,'blocks_3_row_content_heading','Course Overview'),(96597,39532,'_blocks_3_row_content_heading','field_64870142a865e'),(96598,39532,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(96599,39532,'_blocks_3_row_content_text','field_64870148a865f'),(96600,39532,'blocks_3_row_content',''),(96601,39532,'_blocks_3_row_content','field_6487008ba865c'),(96602,39532,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(96603,39532,'_blocks_3_video_src','field_6193c4a98ec07'),(96604,39532,'blocks_3_video_thumbnail','38998'),(96605,39532,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(96606,39532,'blocks_4_acfe_flexible_toggle',''),(96607,39532,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(96608,39532,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(96609,39532,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(96610,39532,'blocks_4_options_theme','#ffffff'),(96611,39532,'_blocks_4_options_theme','field_6176830e2ad17'),(96612,39532,'blocks_4_options',''),(96613,39532,'_blocks_4_options','field_6176830e2ad16'),(96614,39532,'blocks_4_text_block_heading','Learn more about the course'),(96615,39532,'_blocks_4_text_block_heading','field_617669d413097'),(96616,39532,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(96617,39532,'_blocks_4_text_block_content','field_617669ec13098'),(96618,39532,'blocks_5_acfe_flexible_toggle',''),(96619,39532,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(96620,39532,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(96621,39532,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(96622,39532,'blocks_5_options_theme','#ffffff'),(96623,39532,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(96624,39532,'blocks_5_options',''),(96625,39532,'_blocks_5_options','field_6177cfcd8140f'),(96626,39532,'blocks_5_tabs_0_tab_label','What\'s Included'),(96627,39532,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(96628,39532,'blocks_5_tabs_0_tab_content_title',''),(96629,39532,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(96630,39532,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(96631,39532,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(96632,39532,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(96633,39532,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(96634,39532,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(96635,39532,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(96636,39532,'blocks_5_tabs_0_tab_content_actions','1'),(96637,39532,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(96638,39532,'blocks_5_tabs_0_tab_content',''),(96639,39532,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(96640,39532,'blocks_5_tabs_0_tab_image','39009'),(96641,39532,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(96642,39532,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(96643,39532,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(96644,39532,'blocks_5_tabs_1_tab_content_title',''),(96645,39532,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(96646,39532,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(96647,39532,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(96648,39532,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(96649,39532,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(96650,39532,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(96651,39532,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(96652,39532,'blocks_5_tabs_1_tab_content_actions','1'),(96653,39532,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(96654,39532,'blocks_5_tabs_1_tab_content',''),(96655,39532,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(96656,39532,'blocks_5_tabs_1_tab_image','39010'),(96657,39532,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(96658,39532,'blocks_5_tabs','2'),(96659,39532,'_blocks_5_tabs','field_6177cff281419'),(96660,39532,'blocks_6_acfe_flexible_toggle',''),(96661,39532,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(96662,39532,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(96663,39532,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(96664,39532,'blocks_6_options_theme','#ffffff'),(96665,39532,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(96666,39532,'blocks_6_options_state','0'),(96667,39532,'_blocks_6_options_state','field_6239fcb7508c5'),(96668,39532,'blocks_6_options',''),(96669,39532,'_blocks_6_options','field_6177e2991ac44'),(96670,39532,'blocks_6_content_title',''),(96671,39532,'_blocks_6_content_title','field_64d237e8bb1e2'),(96672,39532,'blocks_6_content_heading','Frequently asked questions'),(96673,39532,'_blocks_6_content_heading','field_64d237e8bb1e3'),(96674,39532,'blocks_6_content_text',''),(96675,39532,'_blocks_6_content_text','field_64d237e8bb1e4'),(96676,39532,'blocks_6_content_actions',''),(96677,39532,'_blocks_6_content_actions','field_64d237e8bb1e5'),(96678,39532,'blocks_6_content_align','left'),(96679,39532,'_blocks_6_content_align','field_64d2443e6b6aa'),(96680,39532,'blocks_6_content',''),(96681,39532,'_blocks_6_content','field_64d237e8bb1e1'),(96682,39532,'blocks_6_accordion_content','faqs'),(96683,39532,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(96684,39532,'blocks_6_accordion_faqs_select','a:13:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";i:12;s:5:\"39023\";}'),(96685,39532,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(96686,39532,'blocks_6_actions',''),(96687,39532,'_blocks_6_actions','field_61a746a817f7a'),(96688,39532,'blocks_7_acfe_flexible_toggle',''),(96689,39532,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(96690,39532,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(96691,39532,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(96692,39532,'blocks_7_options_alignment','center'),(96693,39532,'_blocks_7_options_alignment','field_61769449f5490'),(96694,39532,'blocks_7_options',''),(96695,39532,'_blocks_7_options','field_617693e1428f0'),(96696,39532,'blocks_7_promo_panel_image','39035'),(96697,39532,'_blocks_7_promo_panel_image','field_617693e1428f3'),(96698,39532,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(96699,39532,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(96700,39532,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(96701,39532,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(96702,39532,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(96703,39532,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(96704,39532,'blocks_7_promo_panel_content_actions','1'),(96705,39532,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(96706,39532,'blocks_7_promo_panel_content',''),(96707,39532,'_blocks_7_promo_panel_content','field_617693e1428f4'),(96708,39532,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(96709,39532,'_blocks','field_6176696113096'),(96710,39532,'hero_icon',''),(96711,39532,'_hero_icon','field_61a6182199d03'),(96712,39532,'blocks_1_row_content_title',''),(96713,39532,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(96714,39532,'blocks_1_row_content_heading',''),(96715,39532,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(96716,39532,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(96717,39532,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(96718,39532,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(96719,39532,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(96720,39532,'blocks_1_row_content_actions','1'),(96721,39532,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(96722,39532,'blocks_1_row_content',''),(96723,39532,'_blocks_1_row_content','field_61a0f5f5b3db0'),(96724,39533,'hero_style','default'),(96725,39533,'_hero_style','field_62051d9dc5324'),(96726,39533,'hero_image_pos_x','right'),(96727,39533,'_hero_image_pos_x','field_62ec3d05390bb'),(96728,39533,'hero_image_pos_y','top'),(96729,39533,'_hero_image_pos_y','field_62ec3d05390bc'),(96730,39533,'hero_image_pos',''),(96731,39533,'_hero_image_pos','field_62ec3d05390ba'),(96732,39533,'hero_title','Biomechanics Coach Course - EMD UK'),(96733,39533,'_hero_title','field_617571fe285e8'),(96734,39533,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a EMD UK member. '),(96735,39533,'_hero_text','field_6175723c285e9'),(96736,39533,'hero_actions','1'),(96737,39533,'_hero_actions','field_61757270285ea'),(96738,39533,'hero_icon',''),(96739,39533,'_hero_icon','field_61a6182199d03'),(96740,39533,'fft_hide_from_listings','0'),(96741,39533,'_fft_hide_from_listings','field_61f1320446ab2'),(96742,39533,'fft_page_format','default'),(96743,39533,'_fft_page_format','field_61ae213f1f218'),(96744,39533,'fft_hide_nav','1'),(96745,39533,'_fft_hide_nav','field_635bd5e43527c'),(96746,39533,'fft_hide_header_call_to_action','0'),(96747,39533,'_fft_hide_header_call_to_action','field_635bd6723527d'),(96748,39533,'fft_page_sitemap','1'),(96749,39533,'_fft_page_sitemap','field_61af9b34e8181'),(96750,39533,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(96751,39533,'_blocks','field_6176696113096'),(96752,39533,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(96753,39533,'_hero_actions_0_button','field_61757281285eb'),(96754,39533,'_thumbnail_id','38977'),(96755,39533,'__thumbnail_id','field_617570855ddaf'),(96756,39533,'blocks_0_acfe_flexible_toggle',''),(96757,39533,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(96758,39533,'blocks_0_acfe_flexible_layout_title','Icons'),(96759,39533,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(96760,39533,'blocks_0_options_theme','#ffffff'),(96761,39533,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(96762,39533,'blocks_0_options_format','row'),(96763,39533,'_blocks_0_options_format','field_64bfde9a90690'),(96764,39533,'blocks_0_options',''),(96765,39533,'_blocks_0_options','field_64bfdd9b90684'),(96766,39533,'blocks_0_icon_row_items_0_icon','qualification.svg'),(96767,39533,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(96768,39533,'blocks_0_icon_row_items_0_label','Course Type'),(96769,39533,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(96770,39533,'blocks_0_icon_row_items_0_text','Blended Learning'),(96771,39533,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(96772,39533,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(96773,39533,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(96774,39533,'blocks_0_icon_row_items_1_label','Qualification'),(96775,39533,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(96776,39533,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(96777,39533,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(96778,39533,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(96779,39533,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(96780,39533,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(96781,39533,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(96782,39533,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(96783,39533,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(96784,39533,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(96785,39533,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(96786,39533,'blocks_0_icon_row_items_3_label','IBA Registered'),(96787,39533,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(96788,39533,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(96789,39533,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(96790,39533,'blocks_0_icon_row_items','4'),(96791,39533,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(96792,39533,'blocks_1_acfe_flexible_toggle',''),(96793,39533,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(96794,39533,'blocks_1_acfe_flexible_layout_title','Form'),(96795,39533,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(96796,39533,'blocks_1_row_content_format','promotion'),(96797,39533,'_blocks_1_row_content_format','field_6481ead962881'),(96798,39533,'blocks_1_row_content_title',''),(96799,39533,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(96800,39533,'blocks_1_row_content_heading',''),(96801,39533,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(96802,39533,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(96803,39533,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(96804,39533,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(96805,39533,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(96806,39533,'blocks_1_row_content_actions','1'),(96807,39533,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(96808,39533,'blocks_1_row_content',''),(96809,39533,'_blocks_1_row_content','field_61a0f5f5b3db0'),(96810,39533,'blocks_1_row_form',''),(96811,39533,'_blocks_1_row_form','field_61a4ff2c0b08e'),(96812,39533,'blocks_1_row_form_button_label',''),(96813,39533,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(96814,39533,'blocks_1_row_content_promotion_label','Biomechanics Coach Course'),(96815,39533,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(96816,39533,'blocks_1_row_content_promotion_heading','Up to 10% Off'),(96817,39533,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(96818,39533,'blocks_1_row_content_promotion_value','Up to 10% Off'),(96819,39533,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(96820,39533,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an EMD UK member'),(96821,39533,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(96822,39533,'blocks_1_row_content_promotion',''),(96823,39533,'_blocks_1_row_content_promotion','field_6481eb3962882'),(96824,39533,'blocks_1_row_form_title','EMD UK Referral'),(96825,39533,'_blocks_1_row_form_title','field_64872db5127af'),(96826,39533,'blocks_2_acfe_flexible_toggle',''),(96827,39533,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(96828,39533,'blocks_2_acfe_flexible_layout_title','Logos'),(96829,39533,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(96830,39533,'blocks_2_options_theme','#ffffff'),(96831,39533,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(96832,39533,'blocks_2_options_format','grid'),(96833,39533,'_blocks_2_options_format','field_61782964ee971'),(96834,39533,'blocks_2_options',''),(96835,39533,'_blocks_2_options','field_61782954ee965'),(96836,39533,'blocks_2_logos','a:2:{i:0;s:5:\"38587\";i:1;s:5:\"39040\";}'),(96837,39533,'_blocks_2_logos','field_61782954ee96d'),(96838,39533,'blocks_2_title',''),(96839,39533,'_blocks_2_title','field_668fbfdc2daa1'),(96840,39533,'blocks_3_acfe_flexible_toggle',''),(96841,39533,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(96842,39533,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(96843,39533,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(96844,39533,'blocks_3_size','large'),(96845,39533,'_blocks_3_size','field_6487038f297c1'),(96846,39533,'blocks_3_row_content_title',''),(96847,39533,'_blocks_3_row_content_title','field_64870132a865d'),(96848,39533,'blocks_3_row_content_heading','Course Overview'),(96849,39533,'_blocks_3_row_content_heading','field_64870142a865e'),(96850,39533,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(96851,39533,'_blocks_3_row_content_text','field_64870148a865f'),(96852,39533,'blocks_3_row_content',''),(96853,39533,'_blocks_3_row_content','field_6487008ba865c'),(96854,39533,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(96855,39533,'_blocks_3_video_src','field_6193c4a98ec07'),(96856,39533,'blocks_3_video_thumbnail','38998'),(96857,39533,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(96858,39533,'blocks_4_acfe_flexible_toggle',''),(96859,39533,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(96860,39533,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(96861,39533,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(96862,39533,'blocks_4_options_theme','#ffffff'),(96863,39533,'_blocks_4_options_theme','field_6176830e2ad17'),(96864,39533,'blocks_4_options',''),(96865,39533,'_blocks_4_options','field_6176830e2ad16'),(96866,39533,'blocks_4_text_block_heading','Learn more about the course'),(96867,39533,'_blocks_4_text_block_heading','field_617669d413097'),(96868,39533,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(96869,39533,'_blocks_4_text_block_content','field_617669ec13098'),(96870,39533,'blocks_5_acfe_flexible_toggle',''),(96871,39533,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(96872,39533,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(96873,39533,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(96874,39533,'blocks_5_options_theme','#ffffff'),(96875,39533,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(96876,39533,'blocks_5_options',''),(96877,39533,'_blocks_5_options','field_6177cfcd8140f'),(96878,39533,'blocks_5_tabs_0_tab_label','What\'s Included'),(96879,39533,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(96880,39533,'blocks_5_tabs_0_tab_content_title',''),(96881,39533,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(96882,39533,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(96883,39533,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(96884,39533,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(96885,39533,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(96886,39533,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(96887,39533,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(96888,39533,'blocks_5_tabs_0_tab_content_actions','1'),(96889,39533,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(96890,39533,'blocks_5_tabs_0_tab_content',''),(96891,39533,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(96892,39533,'blocks_5_tabs_0_tab_image','39009'),(96893,39533,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(96894,39533,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(96895,39533,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(96896,39533,'blocks_5_tabs_1_tab_content_title',''),(96897,39533,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(96898,39533,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(96899,39533,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(96900,39533,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(96901,39533,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(96902,39533,'blocks_5_tabs_1_tab_content_actions','1'),(96903,39533,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(96904,39533,'blocks_5_tabs_1_tab_content',''),(96905,39533,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(96906,39533,'blocks_5_tabs_1_tab_image','39010'),(96907,39533,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(96908,39533,'blocks_5_tabs','2'),(96909,39533,'_blocks_5_tabs','field_6177cff281419'),(96910,39533,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(96911,39533,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(96912,39533,'blocks_6_acfe_flexible_toggle',''),(96913,39533,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(96914,39533,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(96915,39533,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(96916,39533,'blocks_6_options_theme','#ffffff'),(96917,39533,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(96918,39533,'blocks_6_options_state','0'),(96919,39533,'_blocks_6_options_state','field_6239fcb7508c5'),(96920,39533,'blocks_6_options',''),(96921,39533,'_blocks_6_options','field_6177e2991ac44'),(96922,39533,'blocks_6_accordion_content','faqs'),(96923,39533,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(96924,39533,'blocks_6_actions',''),(96925,39533,'_blocks_6_actions','field_61a746a817f7a'),(96926,39533,'blocks_6_content_title',''),(96927,39533,'_blocks_6_content_title','field_64d237e8bb1e2'),(96928,39533,'blocks_6_content_heading','Frequently asked questions'),(96929,39533,'_blocks_6_content_heading','field_64d237e8bb1e3'),(96930,39533,'blocks_6_content_text',''),(96931,39533,'_blocks_6_content_text','field_64d237e8bb1e4'),(96932,39533,'blocks_6_content_actions',''),(96933,39533,'_blocks_6_content_actions','field_64d237e8bb1e5'),(96934,39533,'blocks_6_content_align','left'),(96935,39533,'_blocks_6_content_align','field_64d2443e6b6aa'),(96936,39533,'blocks_6_content',''),(96937,39533,'_blocks_6_content','field_64d237e8bb1e1'),(96938,39533,'blocks_6_accordion_faqs_select','a:13:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";i:12;s:5:\"39023\";}'),(96939,39533,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(96940,39533,'blocks_7_acfe_flexible_toggle',''),(96941,39533,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(96942,39533,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(96943,39533,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(96944,39533,'blocks_7_options_alignment','center'),(96945,39533,'_blocks_7_options_alignment','field_61769449f5490'),(96946,39533,'blocks_7_options',''),(96947,39533,'_blocks_7_options','field_617693e1428f0'),(96948,39533,'blocks_7_promo_panel_image','39035'),(96949,39533,'_blocks_7_promo_panel_image','field_617693e1428f3'),(96950,39533,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(96951,39533,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(96952,39533,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(96953,39533,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(96954,39533,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(96955,39533,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(96956,39533,'blocks_7_promo_panel_content_actions','1'),(96957,39533,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(96958,39533,'blocks_7_promo_panel_content',''),(96959,39533,'_blocks_7_promo_panel_content','field_617693e1428f4'),(96960,39533,'hide_hero','0'),(96961,39533,'_hide_hero','field_66a2380fcda39'),(96962,39534,'hero_style','default'),(96963,39534,'_hero_style','field_62051d9dc5324'),(96964,39534,'hero_image_pos_x','right'),(96965,39534,'_hero_image_pos_x','field_62ec3d05390bb'),(96966,39534,'hero_image_pos_y','top'),(96967,39534,'_hero_image_pos_y','field_62ec3d05390bc'),(96968,39534,'hero_image_pos',''),(96969,39534,'_hero_image_pos','field_62ec3d05390ba'),(96970,39534,'hero_title','Biomechanics Coach Course - EMD UK'),(96971,39534,'_hero_title','field_617571fe285e8'),(96972,39534,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a EMD UK member. '),(96973,39534,'_hero_text','field_6175723c285e9'),(96974,39534,'hero_actions','1'),(96975,39534,'_hero_actions','field_61757270285ea'),(96976,39534,'hero_icon',''),(96977,39534,'_hero_icon','field_61a6182199d03'),(96978,39534,'fft_hide_from_listings','0'),(96979,39534,'_fft_hide_from_listings','field_61f1320446ab2'),(96980,39534,'fft_page_format','default'),(96981,39534,'_fft_page_format','field_61ae213f1f218'),(96982,39534,'fft_hide_nav','1'),(96983,39534,'_fft_hide_nav','field_635bd5e43527c'),(96984,39534,'fft_hide_header_call_to_action','0'),(96985,39534,'_fft_hide_header_call_to_action','field_635bd6723527d'),(96986,39534,'fft_page_sitemap','1'),(96987,39534,'_fft_page_sitemap','field_61af9b34e8181'),(96988,39534,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(96989,39534,'_blocks','field_6176696113096'),(96990,39534,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(96991,39534,'_hero_actions_0_button','field_61757281285eb'),(96992,39534,'_thumbnail_id','38977'),(96993,39534,'__thumbnail_id','field_617570855ddaf'),(96994,39534,'blocks_0_acfe_flexible_toggle',''),(96995,39534,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(96996,39534,'blocks_0_acfe_flexible_layout_title','Icons'),(96997,39534,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(96998,39534,'blocks_0_options_theme','#ffffff'),(96999,39534,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(97000,39534,'blocks_0_options_format','row'),(97001,39534,'_blocks_0_options_format','field_64bfde9a90690'),(97002,39534,'blocks_0_options',''),(97003,39534,'_blocks_0_options','field_64bfdd9b90684'),(97004,39534,'blocks_0_icon_row_items_0_icon','qualification.svg'),(97005,39534,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(97006,39534,'blocks_0_icon_row_items_0_label','Course Type'),(97007,39534,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(97008,39534,'blocks_0_icon_row_items_0_text','Blended Learning'),(97009,39534,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(97010,39534,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(97011,39534,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(97012,39534,'blocks_0_icon_row_items_1_label','Qualification'),(97013,39534,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(97014,39534,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(97015,39534,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(97016,39534,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(97017,39534,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(97018,39534,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(97019,39534,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(97020,39534,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(97021,39534,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(97022,39534,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(97023,39534,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(97024,39534,'blocks_0_icon_row_items_3_label','IBA Registered'),(97025,39534,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(97026,39534,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(97027,39534,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(97028,39534,'blocks_0_icon_row_items','4'),(97029,39534,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(97030,39534,'blocks_1_acfe_flexible_toggle',''),(97031,39534,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(97032,39534,'blocks_1_acfe_flexible_layout_title','Form'),(97033,39534,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(97034,39534,'blocks_1_row_content_format','promotion'),(97035,39534,'_blocks_1_row_content_format','field_6481ead962881'),(97036,39534,'blocks_1_row_content_title',''),(97037,39534,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(97038,39534,'blocks_1_row_content_heading',''),(97039,39534,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(97040,39534,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(97041,39534,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(97042,39534,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(97043,39534,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(97044,39534,'blocks_1_row_content_actions','1'),(97045,39534,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(97046,39534,'blocks_1_row_content',''),(97047,39534,'_blocks_1_row_content','field_61a0f5f5b3db0'),(97048,39534,'blocks_1_row_form',''),(97049,39534,'_blocks_1_row_form','field_61a4ff2c0b08e'),(97050,39534,'blocks_1_row_form_button_label',''),(97051,39534,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(97052,39534,'blocks_1_row_content_promotion_label','Biomechanics Coach Course'),(97053,39534,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(97054,39534,'blocks_1_row_content_promotion_heading','Up to 10% Off'),(97055,39534,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(97056,39534,'blocks_1_row_content_promotion_value','Up to 10% Off'),(97057,39534,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(97058,39534,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an EMD UK member'),(97059,39534,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(97060,39534,'blocks_1_row_content_promotion',''),(97061,39534,'_blocks_1_row_content_promotion','field_6481eb3962882'),(97062,39534,'blocks_1_row_form_title','EMD UK Referral'),(97063,39534,'_blocks_1_row_form_title','field_64872db5127af'),(97064,39534,'blocks_2_acfe_flexible_toggle',''),(97065,39534,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(97066,39534,'blocks_2_acfe_flexible_layout_title','Logos'),(97067,39534,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(97068,39534,'blocks_2_options_theme','#ffffff'),(97069,39534,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(97070,39534,'blocks_2_options_format','grid'),(97071,39534,'_blocks_2_options_format','field_61782964ee971'),(97072,39534,'blocks_2_options',''),(97073,39534,'_blocks_2_options','field_61782954ee965'),(97074,39534,'blocks_2_logos','a:2:{i:0;s:5:\"38587\";i:1;s:5:\"39040\";}'),(97075,39534,'_blocks_2_logos','field_61782954ee96d'),(97076,39534,'blocks_2_title',''),(97077,39534,'_blocks_2_title','field_668fbfdc2daa1'),(97078,39534,'blocks_3_acfe_flexible_toggle',''),(97079,39534,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(97080,39534,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(97081,39534,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(97082,39534,'blocks_3_size','large'),(97083,39534,'_blocks_3_size','field_6487038f297c1'),(97084,39534,'blocks_3_row_content_title',''),(97085,39534,'_blocks_3_row_content_title','field_64870132a865d'),(97086,39534,'blocks_3_row_content_heading','Course Overview'),(97087,39534,'_blocks_3_row_content_heading','field_64870142a865e'),(97088,39534,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(97089,39534,'_blocks_3_row_content_text','field_64870148a865f'),(97090,39534,'blocks_3_row_content',''),(97091,39534,'_blocks_3_row_content','field_6487008ba865c'),(97092,39534,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(97093,39534,'_blocks_3_video_src','field_6193c4a98ec07'),(97094,39534,'blocks_3_video_thumbnail','38998'),(97095,39534,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(97096,39534,'blocks_4_acfe_flexible_toggle',''),(97097,39534,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(97098,39534,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(97099,39534,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(97100,39534,'blocks_4_options_theme','#ffffff'),(97101,39534,'_blocks_4_options_theme','field_6176830e2ad17'),(97102,39534,'blocks_4_options',''),(97103,39534,'_blocks_4_options','field_6176830e2ad16'),(97104,39534,'blocks_4_text_block_heading','Learn more about the course'),(97105,39534,'_blocks_4_text_block_heading','field_617669d413097'),(97106,39534,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(97107,39534,'_blocks_4_text_block_content','field_617669ec13098'),(97108,39534,'blocks_5_acfe_flexible_toggle',''),(97109,39534,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(97110,39534,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(97111,39534,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(97112,39534,'blocks_5_options_theme','#ffffff'),(97113,39534,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(97114,39534,'blocks_5_options',''),(97115,39534,'_blocks_5_options','field_6177cfcd8140f'),(97116,39534,'blocks_5_tabs_0_tab_label','What\'s Included'),(97117,39534,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(97118,39534,'blocks_5_tabs_0_tab_content_title',''),(97119,39534,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(97120,39534,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(97121,39534,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(97122,39534,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(97123,39534,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(97124,39534,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(97125,39534,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(97126,39534,'blocks_5_tabs_0_tab_content_actions','1'),(97127,39534,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(97128,39534,'blocks_5_tabs_0_tab_content',''),(97129,39534,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(97130,39534,'blocks_5_tabs_0_tab_image','39009'),(97131,39534,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(97132,39534,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(97133,39534,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(97134,39534,'blocks_5_tabs_1_tab_content_title',''),(97135,39534,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(97136,39534,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(97137,39534,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(97138,39534,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(97139,39534,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(97140,39534,'blocks_5_tabs_1_tab_content_actions','1'),(97141,39534,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(97142,39534,'blocks_5_tabs_1_tab_content',''),(97143,39534,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(97144,39534,'blocks_5_tabs_1_tab_image','39010'),(97145,39534,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(97146,39534,'blocks_5_tabs','2'),(97147,39534,'_blocks_5_tabs','field_6177cff281419'),(97148,39534,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(97149,39534,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(97150,39534,'blocks_6_acfe_flexible_toggle',''),(97151,39534,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(97152,39534,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(97153,39534,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(97154,39534,'blocks_6_options_theme','#ffffff'),(97155,39534,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(97156,39534,'blocks_6_options_state','0'),(97157,39534,'_blocks_6_options_state','field_6239fcb7508c5'),(97158,39534,'blocks_6_options',''),(97159,39534,'_blocks_6_options','field_6177e2991ac44'),(97160,39534,'blocks_6_accordion_content','faqs'),(97161,39534,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(97162,39534,'blocks_6_actions',''),(97163,39534,'_blocks_6_actions','field_61a746a817f7a'),(97164,39534,'blocks_6_content_title',''),(97165,39534,'_blocks_6_content_title','field_64d237e8bb1e2'),(97166,39534,'blocks_6_content_heading','Frequently asked questions'),(97167,39534,'_blocks_6_content_heading','field_64d237e8bb1e3'),(97168,39534,'blocks_6_content_text',''),(97169,39534,'_blocks_6_content_text','field_64d237e8bb1e4'),(97170,39534,'blocks_6_content_actions',''),(97171,39534,'_blocks_6_content_actions','field_64d237e8bb1e5'),(97172,39534,'blocks_6_content_align','left'),(97173,39534,'_blocks_6_content_align','field_64d2443e6b6aa'),(97174,39534,'blocks_6_content',''),(97175,39534,'_blocks_6_content','field_64d237e8bb1e1'),(97176,39534,'blocks_6_accordion_faqs_select','a:13:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";i:12;s:5:\"39023\";}'),(97177,39534,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(97178,39534,'blocks_7_acfe_flexible_toggle',''),(97179,39534,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(97180,39534,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(97181,39534,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(97182,39534,'blocks_7_options_alignment','center'),(97183,39534,'_blocks_7_options_alignment','field_61769449f5490'),(97184,39534,'blocks_7_options',''),(97185,39534,'_blocks_7_options','field_617693e1428f0'),(97186,39534,'blocks_7_promo_panel_image','39035'),(97187,39534,'_blocks_7_promo_panel_image','field_617693e1428f3'),(97188,39534,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(97189,39534,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(97190,39534,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(97191,39534,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(97192,39534,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(97193,39534,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(97194,39534,'blocks_7_promo_panel_content_actions','1'),(97195,39534,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(97196,39534,'blocks_7_promo_panel_content',''),(97197,39534,'_blocks_7_promo_panel_content','field_617693e1428f4'),(97198,39534,'hide_hero','0'),(97199,39534,'_hide_hero','field_66a2380fcda39'),(97228,37375,'_yoast_wpseo_content_score','60'),(97229,37375,'_yoast_wpseo_estimated-reading-time-minutes','4'),(97232,19515,'_edit_lock','1725462022:5'),(97233,19515,'_oembed_5fac63e4c36f744bbb819c4aa66b3e72','<iframe title=\"Slump Sciatic Nerve Mobilisation Technique\" width=\"954\" height=\"716\" src=\"https://www.youtube.com/embed/Vr4ItLOv0zk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(97234,19515,'_oembed_time_5fac63e4c36f744bbb819c4aa66b3e72','1725461438'),(97235,39536,'hide_hero','0'),(97236,39536,'_hide_hero','field_66a2380fcda39'),(97237,39536,'hero_title',''),(97238,39536,'_hero_title','field_617571fe285e8'),(97239,39536,'hero_text',''),(97240,39536,'_hero_text','field_6175723c285e9'),(97241,39536,'hero_actions',''),(97242,39536,'_hero_actions','field_61757270285ea'),(97243,39536,'hero_style','default'),(97244,39536,'_hero_style','field_62051d9dc5324'),(97245,39536,'_thumbnail_id','19518'),(97246,39536,'__thumbnail_id','field_617570855ddaf'),(97247,39536,'hero_image_pos_x','right'),(97248,39536,'_hero_image_pos_x','field_62ec3d05390bb'),(97249,39536,'hero_image_pos_y','top'),(97250,39536,'_hero_image_pos_y','field_62ec3d05390bc'),(97251,39536,'hero_image_pos',''),(97252,39536,'_hero_image_pos','field_62ec3d05390ba'),(97253,39536,'fft_hide_from_listings','0'),(97254,39536,'_fft_hide_from_listings','field_61f1320446ab2'),(97255,39536,'post_format',''),(97256,39536,'_post_format','field_61756bfb51898'),(97257,39536,'post_author',''),(97258,39536,'_post_author','field_62ec389d22113'),(97259,39536,'post_reviewer',''),(97260,39536,'_post_reviewer','field_627140a2a9800'),(97261,39536,'post_table_of_contents','0'),(97262,39536,'_post_table_of_contents','field_65c503bc846a6'),(97263,19515,'_yoast_wpseo_content_score','90'),(97264,19515,'_yoast_wpseo_estimated-reading-time-minutes','3'),(97265,19515,'_oembed_06f4fdab6d8071abf52076f9a9dc2cfb','<iframe title=\"Slump Sciatic Nerve Mobilisation Technique\" width=\"500\" height=\"375\" src=\"https://www.youtube.com/embed/Vr4ItLOv0zk?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(97266,19515,'_oembed_time_06f4fdab6d8071abf52076f9a9dc2cfb','1725461973'),(97268,19515,'hide_hero','0'),(97269,19515,'_hide_hero','field_66a2380fcda39'),(97270,19515,'hero_title',''),(97271,19515,'_hero_title','field_617571fe285e8'),(97272,19515,'hero_text',''),(97273,19515,'_hero_text','field_6175723c285e9'),(97274,19515,'hero_actions',''),(97275,19515,'_hero_actions','field_61757270285ea'),(97276,19515,'hero_style','default'),(97277,19515,'_hero_style','field_62051d9dc5324'),(97278,19515,'__thumbnail_id','field_617570855ddaf'),(97279,19515,'hero_image_pos_x','right'),(97280,19515,'_hero_image_pos_x','field_62ec3d05390bb'),(97281,19515,'hero_image_pos_y','top'),(97282,19515,'_hero_image_pos_y','field_62ec3d05390bc'),(97283,19515,'hero_image_pos',''),(97284,19515,'_hero_image_pos','field_62ec3d05390ba'),(97285,19515,'fft_hide_from_listings','0'),(97286,19515,'_fft_hide_from_listings','field_61f1320446ab2'),(97287,19515,'post_format',''),(97288,19515,'_post_format','field_61756bfb51898'),(97289,19515,'post_author',''),(97290,19515,'_post_author','field_62ec389d22113'),(97291,19515,'post_reviewer',''),(97292,19515,'_post_reviewer','field_627140a2a9800'),(97293,19515,'post_table_of_contents','0'),(97294,19515,'_post_table_of_contents','field_65c503bc846a6'),(97295,19515,'_yoast_wpseo_primary_category',''),(97296,19515,'_yoast_wpseo_primary_blog-format',''),(97297,19515,'_yoast_wpseo_focuskw','Stretching a tight muscle'),(97298,19515,'_yoast_wpseo_title','When Stretching a Tight Muscle Doesn’t Work %%sep%% Biomechanics Blogs'),(97299,19515,'_yoast_wpseo_metadesc','Stretching tight muscles not working? Explore why tight calves persist and discover alternative solutions like nerve mobilization.'),(97300,19515,'_yoast_wpseo_linkdex','65'),(97301,39537,'_thumbnail_id','19518'),(97302,39537,'__thumbnail_id','field_617570855ddaf'),(97303,39537,'hide_hero','0'),(97304,39537,'_hide_hero','field_66a2380fcda39'),(97305,39537,'hero_title',''),(97306,39537,'_hero_title','field_617571fe285e8'),(97307,39537,'hero_text',''),(97308,39537,'_hero_text','field_6175723c285e9'),(97309,39537,'hero_actions',''),(97310,39537,'_hero_actions','field_61757270285ea'),(97311,39537,'hero_style','default'),(97312,39537,'_hero_style','field_62051d9dc5324'),(97313,39537,'hero_image_pos_x','right'),(97314,39537,'_hero_image_pos_x','field_62ec3d05390bb'),(97315,39537,'hero_image_pos_y','top'),(97316,39537,'_hero_image_pos_y','field_62ec3d05390bc'),(97317,39537,'hero_image_pos',''),(97318,39537,'_hero_image_pos','field_62ec3d05390ba'),(97319,39537,'fft_hide_from_listings','0'),(97320,39537,'_fft_hide_from_listings','field_61f1320446ab2'),(97321,39537,'post_format',''),(97322,39537,'_post_format','field_61756bfb51898'),(97323,39537,'post_author',''),(97324,39537,'_post_author','field_62ec389d22113'),(97325,39537,'post_reviewer',''),(97326,39537,'_post_reviewer','field_627140a2a9800'),(97327,39537,'post_table_of_contents','0'),(97328,39537,'_post_table_of_contents','field_65c503bc846a6'),(97329,34054,'_edit_lock','1726231994:14'),(97331,34054,'hide_hero','0'),(97332,34054,'_hide_hero','field_66a2380fcda39'),(97333,34054,'hero_title',''),(97334,34054,'_hero_title','field_617571fe285e8'),(97335,34054,'hero_text',''),(97336,34054,'_hero_text','field_6175723c285e9'),(97337,34054,'hero_actions',''),(97338,34054,'_hero_actions','field_61757270285ea'),(97339,34054,'hero_style','default'),(97340,34054,'_hero_style','field_62051d9dc5324'),(97341,34054,'__thumbnail_id','field_617570855ddaf'),(97342,34054,'hero_image_pos_x','right'),(97343,34054,'_hero_image_pos_x','field_62ec3d05390bb'),(97344,34054,'hero_image_pos_y','top'),(97345,34054,'_hero_image_pos_y','field_62ec3d05390bc'),(97346,34054,'hero_image_pos',''),(97347,34054,'_hero_image_pos','field_62ec3d05390ba'),(97348,34054,'fft_hide_from_listings','0'),(97349,34054,'_fft_hide_from_listings','field_61f1320446ab2'),(97350,34054,'post_format',''),(97351,34054,'_post_format','field_61756bfb51898'),(97352,34054,'post_author',''),(97353,34054,'_post_author','field_62ec389d22113'),(97354,34054,'post_reviewer',''),(97355,34054,'_post_reviewer','field_627140a2a9800'),(97356,34054,'post_table_of_contents','0'),(97357,34054,'_post_table_of_contents','field_65c503bc846a6'),(97358,34054,'_yoast_wpseo_primary_category',''),(97359,34054,'_yoast_wpseo_primary_blog-format',''),(97360,34054,'_yoast_wpseo_content_score','60'),(97361,34054,'_yoast_wpseo_estimated-reading-time-minutes','3'),(97362,39539,'_thumbnail_id',''),(97363,39539,'__thumbnail_id','field_617570855ddaf'),(97364,39539,'hide_hero','0'),(97365,39539,'_hide_hero','field_66a2380fcda39'),(97366,39539,'hero_title',''),(97367,39539,'_hero_title','field_617571fe285e8'),(97368,39539,'hero_text',''),(97369,39539,'_hero_text','field_6175723c285e9'),(97370,39539,'hero_actions',''),(97371,39539,'_hero_actions','field_61757270285ea'),(97372,39539,'hero_style','default'),(97373,39539,'_hero_style','field_62051d9dc5324'),(97374,39539,'hero_image_pos_x','right'),(97375,39539,'_hero_image_pos_x','field_62ec3d05390bb'),(97376,39539,'hero_image_pos_y','top'),(97377,39539,'_hero_image_pos_y','field_62ec3d05390bc'),(97378,39539,'hero_image_pos',''),(97379,39539,'_hero_image_pos','field_62ec3d05390ba'),(97380,39539,'fft_hide_from_listings','0'),(97381,39539,'_fft_hide_from_listings','field_61f1320446ab2'),(97382,39539,'post_format',''),(97383,39539,'_post_format','field_61756bfb51898'),(97384,39539,'post_author',''),(97385,39539,'_post_author','field_62ec389d22113'),(97386,39539,'post_reviewer',''),(97387,39539,'_post_reviewer','field_627140a2a9800'),(97388,39539,'post_table_of_contents','0'),(97389,39539,'_post_table_of_contents','field_65c503bc846a6'),(97390,39538,'hide_hero','0'),(97391,39538,'_hide_hero','field_66a2380fcda39'),(97392,39538,'hero_title',''),(97393,39538,'_hero_title','field_617571fe285e8'),(97394,39538,'hero_text',''),(97395,39538,'_hero_text','field_6175723c285e9'),(97396,39538,'hero_actions',''),(97397,39538,'_hero_actions','field_61757270285ea'),(97398,39538,'hero_style','default'),(97399,39538,'_hero_style','field_62051d9dc5324'),(97400,39538,'_thumbnail_id',''),(97401,39538,'__thumbnail_id','field_617570855ddaf'),(97402,39538,'hero_image_pos_x','right'),(97403,39538,'_hero_image_pos_x','field_62ec3d05390bb'),(97404,39538,'hero_image_pos_y','top'),(97405,39538,'_hero_image_pos_y','field_62ec3d05390bc'),(97406,39538,'hero_image_pos',''),(97407,39538,'_hero_image_pos','field_62ec3d05390ba'),(97408,39538,'fft_hide_from_listings','0'),(97409,39538,'_fft_hide_from_listings','field_61f1320446ab2'),(97410,39538,'post_format',''),(97411,39538,'_post_format','field_61756bfb51898'),(97412,39538,'post_author',''),(97413,39538,'_post_author','field_62ec389d22113'),(97414,39538,'post_reviewer',''),(97415,39538,'_post_reviewer','field_627140a2a9800'),(97416,39538,'post_table_of_contents','0'),(97417,39538,'_post_table_of_contents','field_65c503bc846a6'),(97419,39540,'hide_hero','0'),(97420,39540,'_hide_hero','field_66a2380fcda39'),(97421,39540,'hero_title',''),(97422,39540,'_hero_title','field_617571fe285e8'),(97423,39540,'hero_text',''),(97424,39540,'_hero_text','field_6175723c285e9'),(97425,39540,'hero_actions',''),(97426,39540,'_hero_actions','field_61757270285ea'),(97427,39540,'hero_style','default'),(97428,39540,'_hero_style','field_62051d9dc5324'),(97429,39540,'hero_image_pos_x','right'),(97430,39540,'_hero_image_pos_x','field_62ec3d05390bb'),(97431,39540,'hero_image_pos_y','top'),(97432,39540,'_hero_image_pos_y','field_62ec3d05390bc'),(97433,39540,'hero_image_pos',''),(97434,39540,'_hero_image_pos','field_62ec3d05390ba'),(97435,39540,'fft_hide_from_listings','0'),(97436,39540,'_fft_hide_from_listings','field_61f1320446ab2'),(97437,39540,'post_format',''),(97438,39540,'_post_format','field_61756bfb51898'),(97439,39540,'post_author',''),(97440,39540,'_post_author','field_62ec389d22113'),(97441,39540,'post_reviewer',''),(97442,39540,'_post_reviewer','field_627140a2a9800'),(97443,39540,'post_table_of_contents','0'),(97444,39540,'_post_table_of_contents','field_65c503bc846a6'),(97445,39540,'_thumbnail_id',''),(97446,39540,'__thumbnail_id','field_617570855ddaf'),(97447,11407,'_edit_lock','1738070368:3'),(97450,34054,'_yoast_wpseo_focuskw','Understanding the Difference Between Extrinsic and Intrinsic Biomechanics'),(97451,34054,'_yoast_wpseo_title','difference between extrinsic biomechanics & intrinsic biomechanics'),(97452,34054,'_yoast_wpseo_metadesc','Discover the differences between extrinsic and intrinsic biomechanics to enhance movement analysis and improve client outcomes.'),(97453,34054,'_yoast_wpseo_linkdex','64'),(97454,11407,'hide_hero','0'),(97455,11407,'_hide_hero','field_66a2380fcda39'),(97456,11407,'hero_title',''),(97457,11407,'_hero_title','field_617571fe285e8'),(97458,11407,'hero_text',''),(97459,11407,'_hero_text','field_6175723c285e9'),(97460,11407,'hero_actions',''),(97461,11407,'_hero_actions','field_61757270285ea'),(97462,11407,'hero_style','default'),(97463,11407,'_hero_style','field_62051d9dc5324'),(97464,11407,'__thumbnail_id','field_617570855ddaf'),(97465,11407,'hero_image_pos_x','right'),(97466,11407,'_hero_image_pos_x','field_62ec3d05390bb'),(97467,11407,'hero_image_pos_y','top'),(97468,11407,'_hero_image_pos_y','field_62ec3d05390bc'),(97469,11407,'hero_image_pos',''),(97470,11407,'_hero_image_pos','field_62ec3d05390ba'),(97471,11407,'fft_hide_from_listings','0'),(97472,11407,'_fft_hide_from_listings','field_61f1320446ab2'),(97473,11407,'post_format',''),(97474,11407,'_post_format','field_61756bfb51898'),(97475,11407,'post_author',''),(97476,11407,'_post_author','field_62ec389d22113'),(97477,11407,'post_reviewer',''),(97478,11407,'_post_reviewer','field_627140a2a9800'),(97479,11407,'post_table_of_contents','0'),(97480,11407,'_post_table_of_contents','field_65c503bc846a6'),(97481,11407,'_yoast_wpseo_primary_category',''),(97482,11407,'_yoast_wpseo_primary_blog-format',''),(97483,11407,'_yoast_wpseo_content_score','90'),(97484,11407,'_yoast_wpseo_estimated-reading-time-minutes','4'),(97485,39542,'_thumbnail_id','11408'),(97486,39542,'__thumbnail_id','field_617570855ddaf'),(97487,39542,'hide_hero','0'),(97488,39542,'_hide_hero','field_66a2380fcda39'),(97489,39542,'hero_title',''),(97490,39542,'_hero_title','field_617571fe285e8'),(97491,39542,'hero_text',''),(97492,39542,'_hero_text','field_6175723c285e9'),(97493,39542,'hero_actions',''),(97494,39542,'_hero_actions','field_61757270285ea'),(97495,39542,'hero_style','default'),(97496,39542,'_hero_style','field_62051d9dc5324'),(97497,39542,'hero_image_pos_x','right'),(97498,39542,'_hero_image_pos_x','field_62ec3d05390bb'),(97499,39542,'hero_image_pos_y','top'),(97500,39542,'_hero_image_pos_y','field_62ec3d05390bc'),(97501,39542,'hero_image_pos',''),(97502,39542,'_hero_image_pos','field_62ec3d05390ba'),(97503,39542,'fft_hide_from_listings','0'),(97504,39542,'_fft_hide_from_listings','field_61f1320446ab2'),(97505,39542,'post_format',''),(97506,39542,'_post_format','field_61756bfb51898'),(97507,39542,'post_author',''),(97508,39542,'_post_author','field_62ec389d22113'),(97509,39542,'post_reviewer',''),(97510,39542,'_post_reviewer','field_627140a2a9800'),(97511,39542,'post_table_of_contents','0'),(97512,39542,'_post_table_of_contents','field_65c503bc846a6'),(97515,12493,'_edit_lock','1725463335:5'),(97516,761,'_edit_lock','1737389065:17'),(97517,39544,'_edit_lock','1737388930:17'),(97518,39544,'_edit_last','17'),(97519,39544,'_oembed_be6645f35e854cc9c7caaef52320f080','{{unknown}}'),(97521,39544,'hide_hero','0'),(97522,39544,'_hide_hero','field_66a2380fcda39'),(97523,39544,'hero_title',''),(97524,39544,'_hero_title','field_617571fe285e8'),(97525,39544,'hero_text',''),(97526,39544,'_hero_text','field_6175723c285e9'),(97527,39544,'hero_actions',''),(97528,39544,'_hero_actions','field_61757270285ea'),(97529,39544,'hero_style','default'),(97530,39544,'_hero_style','field_62051d9dc5324'),(97532,39544,'__thumbnail_id','field_617570855ddaf'),(97533,39544,'hero_image_pos_x','right'),(97534,39544,'_hero_image_pos_x','field_62ec3d05390bb'),(97535,39544,'hero_image_pos_y','top'),(97536,39544,'_hero_image_pos_y','field_62ec3d05390bc'),(97537,39544,'hero_image_pos',''),(97538,39544,'_hero_image_pos','field_62ec3d05390ba'),(97539,39544,'fft_hide_from_listings','0'),(97540,39544,'_fft_hide_from_listings','field_61f1320446ab2'),(97541,39544,'post_format',''),(97542,39544,'_post_format','field_61756bfb51898'),(97543,39544,'post_author',''),(97544,39544,'_post_author','field_62ec389d22113'),(97545,39544,'post_reviewer',''),(97546,39544,'_post_reviewer','field_627140a2a9800'),(97547,39544,'post_table_of_contents','0'),(97548,39544,'_post_table_of_contents','field_65c503bc846a6'),(97549,39544,'_yoast_wpseo_primary_category',''),(97550,39544,'_yoast_wpseo_primary_blog-format',''),(97551,39544,'_yoast_wpseo_focuskw','Hip Adduction / Abduction'),(97552,39544,'_yoast_wpseo_title','Hip Adduction / Abduction - A Guide for Personal Trainers'),(97553,39544,'_yoast_wpseo_metadesc','Frontal plane training improves pelvic stability, reduces injury risk, and enhances strength. Learn key exercises and techniques.'),(97554,39544,'_yoast_wpseo_linkdex','65'),(97555,39544,'_yoast_wpseo_content_score','60'),(97556,39544,'_yoast_wpseo_estimated-reading-time-minutes','3'),(97557,39544,'_oembed_b222914e421472edb8a4f0c351ee1699','{{unknown}}'),(97558,39546,'hide_hero','0'),(97559,39546,'_hide_hero','field_66a2380fcda39'),(97560,39546,'hero_title',''),(97561,39546,'_hero_title','field_617571fe285e8'),(97562,39546,'hero_text',''),(97563,39546,'_hero_text','field_6175723c285e9'),(97564,39546,'hero_actions',''),(97565,39546,'_hero_actions','field_61757270285ea'),(97566,39546,'hero_style','default'),(97567,39546,'_hero_style','field_62051d9dc5324'),(97568,39546,'_thumbnail_id',''),(97569,39546,'__thumbnail_id','field_617570855ddaf'),(97570,39546,'hero_image_pos_x','right'),(97571,39546,'_hero_image_pos_x','field_62ec3d05390bb'),(97572,39546,'hero_image_pos_y','top'),(97573,39546,'_hero_image_pos_y','field_62ec3d05390bc'),(97574,39546,'hero_image_pos',''),(97575,39546,'_hero_image_pos','field_62ec3d05390ba'),(97576,39546,'fft_hide_from_listings','0'),(97577,39546,'_fft_hide_from_listings','field_61f1320446ab2'),(97578,39546,'post_format',''),(97579,39546,'_post_format','field_61756bfb51898'),(97580,39546,'post_author',''),(97581,39546,'_post_author','field_62ec389d22113'),(97582,39546,'post_reviewer',''),(97583,39546,'_post_reviewer','field_627140a2a9800'),(97584,39546,'post_table_of_contents','0'),(97585,39546,'_post_table_of_contents','field_65c503bc846a6'),(97586,39544,'_oembed_50b3ff8ff76344a5ed346f4704adfa9a','{{unknown}}'),(97589,37121,'hide_hero','0'),(97590,37121,'_hide_hero','field_66a2380fcda39'),(97591,37121,'hero_title',''),(97592,37121,'_hero_title','field_617571fe285e8'),(97593,37121,'hero_text',''),(97594,37121,'_hero_text','field_6175723c285e9'),(97595,37121,'hero_actions',''),(97596,37121,'_hero_actions','field_61757270285ea'),(97597,37121,'hero_style','default'),(97598,37121,'_hero_style','field_62051d9dc5324'),(97599,37121,'__thumbnail_id','field_617570855ddaf'),(97600,37121,'hero_image_pos_x','right'),(97601,37121,'_hero_image_pos_x','field_62ec3d05390bb'),(97602,37121,'hero_image_pos_y','top'),(97603,37121,'_hero_image_pos_y','field_62ec3d05390bc'),(97604,37121,'hero_image_pos',''),(97605,37121,'_hero_image_pos','field_62ec3d05390ba'),(97606,37121,'fft_hide_from_listings','0'),(97607,37121,'_fft_hide_from_listings','field_61f1320446ab2'),(97608,37121,'post_format',''),(97609,37121,'_post_format','field_61756bfb51898'),(97610,37121,'post_author',''),(97611,37121,'_post_author','field_62ec389d22113'),(97612,37121,'post_reviewer',''),(97613,37121,'_post_reviewer','field_627140a2a9800'),(97614,37121,'post_table_of_contents','0'),(97615,37121,'_post_table_of_contents','field_65c503bc846a6'),(97616,37121,'_yoast_wpseo_primary_category',''),(97617,37121,'_yoast_wpseo_primary_blog-format',''),(97618,37121,'_yoast_wpseo_content_score','60'),(97619,37121,'_yoast_wpseo_estimated-reading-time-minutes','4'),(97620,39548,'_thumbnail_id',''),(97621,39548,'__thumbnail_id','field_617570855ddaf'),(97622,39548,'hide_hero','0'),(97623,39548,'_hide_hero','field_66a2380fcda39'),(97624,39548,'hero_title',''),(97625,39548,'_hero_title','field_617571fe285e8'),(97626,39548,'hero_text',''),(97627,39548,'_hero_text','field_6175723c285e9'),(97628,39548,'hero_actions',''),(97629,39548,'_hero_actions','field_61757270285ea'),(97630,39548,'hero_style','default'),(97631,39548,'_hero_style','field_62051d9dc5324'),(97632,39548,'hero_image_pos_x','right'),(97633,39548,'_hero_image_pos_x','field_62ec3d05390bb'),(97634,39548,'hero_image_pos_y','top'),(97635,39548,'_hero_image_pos_y','field_62ec3d05390bc'),(97636,39548,'hero_image_pos',''),(97637,39548,'_hero_image_pos','field_62ec3d05390ba'),(97638,39548,'fft_hide_from_listings','0'),(97639,39548,'_fft_hide_from_listings','field_61f1320446ab2'),(97640,39548,'post_format',''),(97641,39548,'_post_format','field_61756bfb51898'),(97642,39548,'post_author',''),(97643,39548,'_post_author','field_62ec389d22113'),(97644,39548,'post_reviewer',''),(97645,39548,'_post_reviewer','field_627140a2a9800'),(97646,39548,'post_table_of_contents','0'),(97647,39548,'_post_table_of_contents','field_65c503bc846a6'),(97648,39547,'hide_hero','0'),(97649,39547,'_hide_hero','field_66a2380fcda39'),(97650,39547,'hero_title',''),(97651,39547,'_hero_title','field_617571fe285e8'),(97652,39547,'hero_text',''),(97653,39547,'_hero_text','field_6175723c285e9'),(97654,39547,'hero_actions',''),(97655,39547,'_hero_actions','field_61757270285ea'),(97656,39547,'hero_style','default'),(97657,39547,'_hero_style','field_62051d9dc5324'),(97658,39547,'_thumbnail_id',''),(97659,39547,'__thumbnail_id','field_617570855ddaf'),(97660,39547,'hero_image_pos_x','right'),(97661,39547,'_hero_image_pos_x','field_62ec3d05390bb'),(97662,39547,'hero_image_pos_y','top'),(97663,39547,'_hero_image_pos_y','field_62ec3d05390bc'),(97664,39547,'hero_image_pos',''),(97665,39547,'_hero_image_pos','field_62ec3d05390ba'),(97666,39547,'fft_hide_from_listings','0'),(97667,39547,'_fft_hide_from_listings','field_61f1320446ab2'),(97668,39547,'post_format',''),(97669,39547,'_post_format','field_61756bfb51898'),(97670,39547,'post_author',''),(97671,39547,'_post_author','field_62ec389d22113'),(97672,39547,'post_reviewer',''),(97673,39547,'_post_reviewer','field_627140a2a9800'),(97674,39547,'post_table_of_contents','0'),(97675,39547,'_post_table_of_contents','field_65c503bc846a6'),(97678,37121,'_yoast_wpseo_focuskw','Why Movement Matters'),(97679,37121,'_yoast_wpseo_metadesc','Discover how biomechanics impacts mobility, enhances movement, and improves overall health through targeted assessments and exercises.'),(97680,37121,'_yoast_wpseo_linkdex','54'),(97681,2785,'_edit_lock','1725526774:5'),(97683,2785,'_wp_old_slug','how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability'),(97684,2785,'hide_hero','0'),(97685,2785,'_hide_hero','field_66a2380fcda39'),(97686,2785,'hero_title',''),(97687,2785,'_hero_title','field_617571fe285e8'),(97688,2785,'hero_text',''),(97689,2785,'_hero_text','field_6175723c285e9'),(97690,2785,'hero_actions',''),(97691,2785,'_hero_actions','field_61757270285ea'),(97692,2785,'hero_style','default'),(97693,2785,'_hero_style','field_62051d9dc5324'),(97694,2785,'__thumbnail_id','field_617570855ddaf'),(97695,2785,'hero_image_pos_x','right'),(97696,2785,'_hero_image_pos_x','field_62ec3d05390bb'),(97697,2785,'hero_image_pos_y','top'),(97698,2785,'_hero_image_pos_y','field_62ec3d05390bc'),(97699,2785,'hero_image_pos',''),(97700,2785,'_hero_image_pos','field_62ec3d05390ba'),(97701,2785,'fft_hide_from_listings','0'),(97702,2785,'_fft_hide_from_listings','field_61f1320446ab2'),(97703,2785,'post_format',''),(97704,2785,'_post_format','field_61756bfb51898'),(97705,2785,'post_author',''),(97706,2785,'_post_author','field_62ec389d22113'),(97707,2785,'post_reviewer',''),(97708,2785,'_post_reviewer','field_627140a2a9800'),(97709,2785,'post_table_of_contents','0'),(97710,2785,'_post_table_of_contents','field_65c503bc846a6'),(97711,2785,'_yoast_wpseo_primary_category',''),(97712,2785,'_yoast_wpseo_primary_blog-format',''),(97713,2785,'_yoast_wpseo_focuskw','Quadratus Lumborum Muscle spasm'),(97714,2785,'_yoast_wpseo_title','How To Identify If Your Quadratus Lumborum Muscle Is In Spasm'),(97715,2785,'_yoast_wpseo_metadesc','Learn how to identify and manage quadratus lumborum spasms to alleviate lower back pain and improve mobility with targeted techniques.'),(97716,2785,'_yoast_wpseo_linkdex','60'),(97717,2785,'_yoast_wpseo_content_score','90'),(97718,2785,'_yoast_wpseo_estimated-reading-time-minutes','3'),(97719,39550,'_thumbnail_id','18476'),(97720,39550,'__thumbnail_id','field_617570855ddaf'),(97721,39550,'hide_hero','0'),(97722,39550,'_hide_hero','field_66a2380fcda39'),(97723,39550,'hero_title',''),(97724,39550,'_hero_title','field_617571fe285e8'),(97725,39550,'hero_text',''),(97726,39550,'_hero_text','field_6175723c285e9'),(97727,39550,'hero_actions',''),(97728,39550,'_hero_actions','field_61757270285ea'),(97729,39550,'hero_style','default'),(97730,39550,'_hero_style','field_62051d9dc5324'),(97731,39550,'hero_image_pos_x','right'),(97732,39550,'_hero_image_pos_x','field_62ec3d05390bb'),(97733,39550,'hero_image_pos_y','top'),(97734,39550,'_hero_image_pos_y','field_62ec3d05390bc'),(97735,39550,'hero_image_pos',''),(97736,39550,'_hero_image_pos','field_62ec3d05390ba'),(97737,39550,'fft_hide_from_listings','0'),(97738,39550,'_fft_hide_from_listings','field_61f1320446ab2'),(97739,39550,'post_format',''),(97740,39550,'_post_format','field_61756bfb51898'),(97741,39550,'post_author',''),(97742,39550,'_post_author','field_62ec389d22113'),(97743,39550,'post_reviewer',''),(97744,39550,'_post_reviewer','field_627140a2a9800'),(97745,39550,'post_table_of_contents','0'),(97746,39550,'_post_table_of_contents','field_65c503bc846a6'),(97747,39549,'hide_hero','0'),(97748,39549,'_hide_hero','field_66a2380fcda39'),(97749,39549,'hero_title',''),(97750,39549,'_hero_title','field_617571fe285e8'),(97751,39549,'hero_text',''),(97752,39549,'_hero_text','field_6175723c285e9'),(97753,39549,'hero_actions',''),(97754,39549,'_hero_actions','field_61757270285ea'),(97755,39549,'hero_style','default'),(97756,39549,'_hero_style','field_62051d9dc5324'),(97757,39549,'_thumbnail_id','18476'),(97758,39549,'__thumbnail_id','field_617570855ddaf'),(97759,39549,'hero_image_pos_x','right'),(97760,39549,'_hero_image_pos_x','field_62ec3d05390bb'),(97761,39549,'hero_image_pos_y','top'),(97762,39549,'_hero_image_pos_y','field_62ec3d05390bc'),(97763,39549,'hero_image_pos',''),(97764,39549,'_hero_image_pos','field_62ec3d05390ba'),(97765,39549,'fft_hide_from_listings','0'),(97766,39549,'_fft_hide_from_listings','field_61f1320446ab2'),(97767,39549,'post_format',''),(97768,39549,'_post_format','field_61756bfb51898'),(97769,39549,'post_author',''),(97770,39549,'_post_author','field_62ec389d22113'),(97771,39549,'post_reviewer',''),(97772,39549,'_post_reviewer','field_627140a2a9800'),(97773,39549,'post_table_of_contents','0'),(97774,39549,'_post_table_of_contents','field_65c503bc846a6'),(97775,24262,'_edit_lock','1725527601:5'),(97777,24262,'hide_hero','0'),(97778,24262,'_hide_hero','field_66a2380fcda39'),(97779,24262,'hero_title',''),(97780,24262,'_hero_title','field_617571fe285e8'),(97781,24262,'hero_text',''),(97782,24262,'_hero_text','field_6175723c285e9'),(97783,24262,'hero_actions',''),(97784,24262,'_hero_actions','field_61757270285ea'),(97785,24262,'hero_style','default'),(97786,24262,'_hero_style','field_62051d9dc5324'),(97787,24262,'__thumbnail_id','field_617570855ddaf'),(97788,24262,'hero_image_pos_x','right'),(97789,24262,'_hero_image_pos_x','field_62ec3d05390bb'),(97790,24262,'hero_image_pos_y','top'),(97791,24262,'_hero_image_pos_y','field_62ec3d05390bc'),(97792,24262,'hero_image_pos',''),(97793,24262,'_hero_image_pos','field_62ec3d05390ba'),(97794,24262,'fft_hide_from_listings','0'),(97795,24262,'_fft_hide_from_listings','field_61f1320446ab2'),(97796,24262,'post_format',''),(97797,24262,'_post_format','field_61756bfb51898'),(97798,24262,'post_author',''),(97799,24262,'_post_author','field_62ec389d22113'),(97800,24262,'post_reviewer',''),(97801,24262,'_post_reviewer','field_627140a2a9800'),(97802,24262,'post_table_of_contents','0'),(97803,24262,'_post_table_of_contents','field_65c503bc846a6'),(97804,24262,'_yoast_wpseo_primary_category',''),(97805,24262,'_yoast_wpseo_primary_blog-format',''),(97806,24262,'_yoast_wpseo_content_score','90'),(97807,24262,'_yoast_wpseo_estimated-reading-time-minutes','3'),(97808,39552,'_thumbnail_id','24268'),(97809,39552,'__thumbnail_id','field_617570855ddaf'),(97810,39552,'hide_hero','0'),(97811,39552,'_hide_hero','field_66a2380fcda39'),(97812,39552,'hero_title',''),(97813,39552,'_hero_title','field_617571fe285e8'),(97814,39552,'hero_text',''),(97815,39552,'_hero_text','field_6175723c285e9'),(97816,39552,'hero_actions',''),(97817,39552,'_hero_actions','field_61757270285ea'),(97818,39552,'hero_style','default'),(97819,39552,'_hero_style','field_62051d9dc5324'),(97820,39552,'hero_image_pos_x','right'),(97821,39552,'_hero_image_pos_x','field_62ec3d05390bb'),(97822,39552,'hero_image_pos_y','top'),(97823,39552,'_hero_image_pos_y','field_62ec3d05390bc'),(97824,39552,'hero_image_pos',''),(97825,39552,'_hero_image_pos','field_62ec3d05390ba'),(97826,39552,'fft_hide_from_listings','0'),(97827,39552,'_fft_hide_from_listings','field_61f1320446ab2'),(97828,39552,'post_format',''),(97829,39552,'_post_format','field_61756bfb51898'),(97830,39552,'post_author',''),(97831,39552,'_post_author','field_62ec389d22113'),(97832,39552,'post_reviewer',''),(97833,39552,'_post_reviewer','field_627140a2a9800'),(97834,39552,'post_table_of_contents','0'),(97835,39552,'_post_table_of_contents','field_65c503bc846a6'),(97837,24262,'_yoast_wpseo_focuskw','Quadricep Muscles'),(97838,24262,'_yoast_wpseo_title','Some People Have 6 Quadricep Muscles - Biomechanics Education'),(97839,24262,'_yoast_wpseo_metadesc','Discover the surprising existence of five or even six quadriceps muscles in some people, revealing new insights into human anatomy and movement.'),(97840,24262,'_yoast_wpseo_linkdex','52'),(97841,39551,'hide_hero','0'),(97842,39551,'_hide_hero','field_66a2380fcda39'),(97843,39551,'hero_title',''),(97844,39551,'_hero_title','field_617571fe285e8'),(97845,39551,'hero_text',''),(97846,39551,'_hero_text','field_6175723c285e9'),(97847,39551,'hero_actions',''),(97848,39551,'_hero_actions','field_61757270285ea'),(97849,39551,'hero_style','default'),(97850,39551,'_hero_style','field_62051d9dc5324'),(97851,39551,'_thumbnail_id','24268'),(97852,39551,'__thumbnail_id','field_617570855ddaf'),(97853,39551,'hero_image_pos_x','right'),(97854,39551,'_hero_image_pos_x','field_62ec3d05390bb'),(97855,39551,'hero_image_pos_y','top'),(97856,39551,'_hero_image_pos_y','field_62ec3d05390bc'),(97857,39551,'hero_image_pos',''),(97858,39551,'_hero_image_pos','field_62ec3d05390ba'),(97859,39551,'fft_hide_from_listings','0'),(97860,39551,'_fft_hide_from_listings','field_61f1320446ab2'),(97861,39551,'post_format',''),(97862,39551,'_post_format','field_61756bfb51898'),(97863,39551,'post_author',''),(97864,39551,'_post_author','field_62ec389d22113'),(97865,39551,'post_reviewer',''),(97866,39551,'_post_reviewer','field_627140a2a9800'),(97867,39551,'post_table_of_contents','0'),(97868,39551,'_post_table_of_contents','field_65c503bc846a6'),(97870,34519,'_edit_lock','1726232096:14'),(97871,39553,'hide_hero','0'),(97872,39553,'_hide_hero','field_66a2380fcda39'),(97873,39553,'hero_title',''),(97874,39553,'_hero_title','field_617571fe285e8'),(97875,39553,'hero_text',''),(97876,39553,'_hero_text','field_6175723c285e9'),(97877,39553,'hero_actions',''),(97878,39553,'_hero_actions','field_61757270285ea'),(97879,39553,'hero_style','default'),(97880,39553,'_hero_style','field_62051d9dc5324'),(97881,39553,'_thumbnail_id','4725'),(97882,39553,'__thumbnail_id','field_617570855ddaf'),(97883,39553,'hero_image_pos_x','right'),(97884,39553,'_hero_image_pos_x','field_62ec3d05390bb'),(97885,39553,'hero_image_pos_y','top'),(97886,39553,'_hero_image_pos_y','field_62ec3d05390bc'),(97887,39553,'hero_image_pos',''),(97888,39553,'_hero_image_pos','field_62ec3d05390ba'),(97889,39553,'fft_hide_from_listings','0'),(97890,39553,'_fft_hide_from_listings','field_61f1320446ab2'),(97891,39553,'post_format',''),(97892,39553,'_post_format','field_61756bfb51898'),(97893,39553,'post_author',''),(97894,39553,'_post_author','field_62ec389d22113'),(97895,39553,'post_reviewer',''),(97896,39553,'_post_reviewer','field_627140a2a9800'),(97897,39553,'post_table_of_contents','0'),(97898,39553,'_post_table_of_contents','field_65c503bc846a6'),(97899,34519,'_yoast_wpseo_content_score','90'),(97900,34519,'_yoast_wpseo_estimated-reading-time-minutes','3'),(97902,34519,'hide_hero','0'),(97903,34519,'_hide_hero','field_66a2380fcda39'),(97904,34519,'hero_title',''),(97905,34519,'_hero_title','field_617571fe285e8'),(97906,34519,'hero_text',''),(97907,34519,'_hero_text','field_6175723c285e9'),(97908,34519,'hero_actions',''),(97909,34519,'_hero_actions','field_61757270285ea'),(97910,34519,'hero_style','default'),(97911,34519,'_hero_style','field_62051d9dc5324'),(97912,34519,'__thumbnail_id','field_617570855ddaf'),(97913,34519,'hero_image_pos_x','right'),(97914,34519,'_hero_image_pos_x','field_62ec3d05390bb'),(97915,34519,'hero_image_pos_y','top'),(97916,34519,'_hero_image_pos_y','field_62ec3d05390bc'),(97917,34519,'hero_image_pos',''),(97918,34519,'_hero_image_pos','field_62ec3d05390ba'),(97919,34519,'fft_hide_from_listings','0'),(97920,34519,'_fft_hide_from_listings','field_61f1320446ab2'),(97921,34519,'post_format',''),(97922,34519,'_post_format','field_61756bfb51898'),(97923,34519,'post_author',''),(97924,34519,'_post_author','field_62ec389d22113'),(97925,34519,'post_reviewer',''),(97926,34519,'_post_reviewer','field_627140a2a9800'),(97927,34519,'post_table_of_contents','0'),(97928,34519,'_post_table_of_contents','field_65c503bc846a6'),(97929,34519,'_yoast_wpseo_primary_category',''),(97930,34519,'_yoast_wpseo_primary_blog-format',''),(97931,39554,'_thumbnail_id','4725'),(97932,39554,'__thumbnail_id','field_617570855ddaf'),(97933,39554,'hide_hero','0'),(97934,39554,'_hide_hero','field_66a2380fcda39'),(97935,39554,'hero_title',''),(97936,39554,'_hero_title','field_617571fe285e8'),(97937,39554,'hero_text',''),(97938,39554,'_hero_text','field_6175723c285e9'),(97939,39554,'hero_actions',''),(97940,39554,'_hero_actions','field_61757270285ea'),(97941,39554,'hero_style','default'),(97942,39554,'_hero_style','field_62051d9dc5324'),(97943,39554,'hero_image_pos_x','right'),(97944,39554,'_hero_image_pos_x','field_62ec3d05390bb'),(97945,39554,'hero_image_pos_y','top'),(97946,39554,'_hero_image_pos_y','field_62ec3d05390bc'),(97947,39554,'hero_image_pos',''),(97948,39554,'_hero_image_pos','field_62ec3d05390ba'),(97949,39554,'fft_hide_from_listings','0'),(97950,39554,'_fft_hide_from_listings','field_61f1320446ab2'),(97951,39554,'post_format',''),(97952,39554,'_post_format','field_61756bfb51898'),(97953,39554,'post_author',''),(97954,39554,'_post_author','field_62ec389d22113'),(97955,39554,'post_reviewer',''),(97956,39554,'_post_reviewer','field_627140a2a9800'),(97957,39554,'post_table_of_contents','0'),(97958,39554,'_post_table_of_contents','field_65c503bc846a6'),(97960,39555,'_thumbnail_id','4725'),(97961,39555,'__thumbnail_id','field_617570855ddaf'),(97962,39555,'hide_hero','0'),(97963,39555,'_hide_hero','field_66a2380fcda39'),(97964,39555,'hero_title',''),(97965,39555,'_hero_title','field_617571fe285e8'),(97966,39555,'hero_text',''),(97967,39555,'_hero_text','field_6175723c285e9'),(97968,39555,'hero_actions',''),(97969,39555,'_hero_actions','field_61757270285ea'),(97970,39555,'hero_style','default'),(97971,39555,'_hero_style','field_62051d9dc5324'),(97972,39555,'hero_image_pos_x','right'),(97973,39555,'_hero_image_pos_x','field_62ec3d05390bb'),(97974,39555,'hero_image_pos_y','top'),(97975,39555,'_hero_image_pos_y','field_62ec3d05390bc'),(97976,39555,'hero_image_pos',''),(97977,39555,'_hero_image_pos','field_62ec3d05390ba'),(97978,39555,'fft_hide_from_listings','0'),(97979,39555,'_fft_hide_from_listings','field_61f1320446ab2'),(97980,39555,'post_format',''),(97981,39555,'_post_format','field_61756bfb51898'),(97982,39555,'post_author',''),(97983,39555,'_post_author','field_62ec389d22113'),(97984,39555,'post_reviewer',''),(97985,39555,'_post_reviewer','field_627140a2a9800'),(97986,39555,'post_table_of_contents','0'),(97987,39555,'_post_table_of_contents','field_65c503bc846a6'),(97989,34519,'_yoast_wpseo_focuskw','How Understanding Intrinsic Biomechanics Improves'),(97990,34519,'_yoast_wpseo_title','Understanding Intrinsic Biomechanics'),(97991,34519,'_yoast_wpseo_metadesc','Learn how understanding intrinsic biomechanics enhances overall health, wellbeing, and movement for clients across all demographics.'),(97992,34519,'_yoast_wpseo_linkdex','56'),(97994,16411,'_edit_lock','1737389023:17'),(97996,16411,'hide_hero','0'),(97997,16411,'_hide_hero','field_66a2380fcda39'),(97998,16411,'hero_title',''),(97999,16411,'_hero_title','field_617571fe285e8'),(98000,16411,'hero_text',''),(98001,16411,'_hero_text','field_6175723c285e9'),(98002,16411,'hero_actions',''),(98003,16411,'_hero_actions','field_61757270285ea'),(98004,16411,'hero_style','default'),(98005,16411,'_hero_style','field_62051d9dc5324'),(98006,16411,'__thumbnail_id','field_617570855ddaf'),(98007,16411,'hero_image_pos_x','right'),(98008,16411,'_hero_image_pos_x','field_62ec3d05390bb'),(98009,16411,'hero_image_pos_y','top'),(98010,16411,'_hero_image_pos_y','field_62ec3d05390bc'),(98011,16411,'hero_image_pos',''),(98012,16411,'_hero_image_pos','field_62ec3d05390ba'),(98013,16411,'fft_hide_from_listings','0'),(98014,16411,'_fft_hide_from_listings','field_61f1320446ab2'),(98015,16411,'post_format',''),(98016,16411,'_post_format','field_61756bfb51898'),(98017,16411,'post_author',''),(98018,16411,'_post_author','field_62ec389d22113'),(98019,16411,'post_reviewer',''),(98020,16411,'_post_reviewer','field_627140a2a9800'),(98021,16411,'post_table_of_contents','0'),(98022,16411,'_post_table_of_contents','field_65c503bc846a6'),(98023,16411,'_yoast_wpseo_primary_category',''),(98024,16411,'_yoast_wpseo_primary_blog-format',''),(98025,16411,'_yoast_wpseo_content_score','90'),(98026,16411,'_yoast_wpseo_estimated-reading-time-minutes','2'),(98028,39557,'_thumbnail_id','16415'),(98029,39557,'__thumbnail_id','field_617570855ddaf'),(98030,39557,'hide_hero','0'),(98031,39557,'_hide_hero','field_66a2380fcda39'),(98032,39557,'hero_title',''),(98033,39557,'_hero_title','field_617571fe285e8'),(98034,39557,'hero_text',''),(98035,39557,'_hero_text','field_6175723c285e9'),(98036,39557,'hero_actions',''),(98037,39557,'_hero_actions','field_61757270285ea'),(98038,39557,'hero_style','default'),(98039,39557,'_hero_style','field_62051d9dc5324'),(98040,39557,'hero_image_pos_x','right'),(98041,39557,'_hero_image_pos_x','field_62ec3d05390bb'),(98042,39557,'hero_image_pos_y','top'),(98043,39557,'_hero_image_pos_y','field_62ec3d05390bc'),(98044,39557,'hero_image_pos',''),(98045,39557,'_hero_image_pos','field_62ec3d05390ba'),(98046,39557,'fft_hide_from_listings','0'),(98047,39557,'_fft_hide_from_listings','field_61f1320446ab2'),(98048,39557,'post_format',''),(98049,39557,'_post_format','field_61756bfb51898'),(98050,39557,'post_author',''),(98051,39557,'_post_author','field_62ec389d22113'),(98052,39557,'post_reviewer',''),(98053,39557,'_post_reviewer','field_627140a2a9800'),(98054,39557,'post_table_of_contents','0'),(98055,39557,'_post_table_of_contents','field_65c503bc846a6'),(98057,16411,'_yoast_wpseo_focuskw','The Core Ratios'),(98058,16411,'_yoast_wpseo_title','The Core Ratios - Biomechanics education'),(98059,16411,'_yoast_wpseo_metadesc','Master core strength ratios to enhance stability, reduce injury risk, and create balanced training programs for your clients.'),(98060,16411,'_yoast_wpseo_linkdex','67'),(98061,39558,'_thumbnail_id','16415'),(98062,39558,'__thumbnail_id','field_617570855ddaf'),(98063,39558,'hide_hero','0'),(98064,39558,'_hide_hero','field_66a2380fcda39'),(98065,39558,'hero_title',''),(98066,39558,'_hero_title','field_617571fe285e8'),(98067,39558,'hero_text',''),(98068,39558,'_hero_text','field_6175723c285e9'),(98069,39558,'hero_actions',''),(98070,39558,'_hero_actions','field_61757270285ea'),(98071,39558,'hero_style','default'),(98072,39558,'_hero_style','field_62051d9dc5324'),(98073,39558,'hero_image_pos_x','right'),(98074,39558,'_hero_image_pos_x','field_62ec3d05390bb'),(98075,39558,'hero_image_pos_y','top'),(98076,39558,'_hero_image_pos_y','field_62ec3d05390bc'),(98077,39558,'hero_image_pos',''),(98078,39558,'_hero_image_pos','field_62ec3d05390ba'),(98079,39558,'fft_hide_from_listings','0'),(98080,39558,'_fft_hide_from_listings','field_61f1320446ab2'),(98081,39558,'post_format',''),(98082,39558,'_post_format','field_61756bfb51898'),(98083,39558,'post_author',''),(98084,39558,'_post_author','field_62ec389d22113'),(98085,39558,'post_reviewer',''),(98086,39558,'_post_reviewer','field_627140a2a9800'),(98087,39558,'post_table_of_contents','0'),(98088,39558,'_post_table_of_contents','field_65c503bc846a6'),(98089,39556,'hide_hero','0'),(98090,39556,'_hide_hero','field_66a2380fcda39'),(98091,39556,'hero_title',''),(98092,39556,'_hero_title','field_617571fe285e8'),(98093,39556,'hero_text',''),(98094,39556,'_hero_text','field_6175723c285e9'),(98095,39556,'hero_actions',''),(98096,39556,'_hero_actions','field_61757270285ea'),(98097,39556,'hero_style','default'),(98098,39556,'_hero_style','field_62051d9dc5324'),(98099,39556,'_thumbnail_id','16415'),(98100,39556,'__thumbnail_id','field_617570855ddaf'),(98101,39556,'hero_image_pos_x','right'),(98102,39556,'_hero_image_pos_x','field_62ec3d05390bb'),(98103,39556,'hero_image_pos_y','top'),(98104,39556,'_hero_image_pos_y','field_62ec3d05390bc'),(98105,39556,'hero_image_pos',''),(98106,39556,'_hero_image_pos','field_62ec3d05390ba'),(98107,39556,'fft_hide_from_listings','0'),(98108,39556,'_fft_hide_from_listings','field_61f1320446ab2'),(98109,39556,'post_format',''),(98110,39556,'_post_format','field_61756bfb51898'),(98111,39556,'post_author',''),(98112,39556,'_post_author','field_62ec389d22113'),(98113,39556,'post_reviewer',''),(98114,39556,'_post_reviewer','field_627140a2a9800'),(98115,39556,'post_table_of_contents','0'),(98116,39556,'_post_table_of_contents','field_65c503bc846a6'),(98117,24764,'_edit_lock','1725530606:5'),(98119,24764,'hide_hero','0'),(98120,24764,'_hide_hero','field_66a2380fcda39'),(98121,24764,'hero_title',''),(98122,24764,'_hero_title','field_617571fe285e8'),(98123,24764,'hero_text',''),(98124,24764,'_hero_text','field_6175723c285e9'),(98125,24764,'hero_actions',''),(98126,24764,'_hero_actions','field_61757270285ea'),(98127,24764,'hero_style','default'),(98128,24764,'_hero_style','field_62051d9dc5324'),(98129,24764,'__thumbnail_id','field_617570855ddaf'),(98130,24764,'hero_image_pos_x','right'),(98131,24764,'_hero_image_pos_x','field_62ec3d05390bb'),(98132,24764,'hero_image_pos_y','top'),(98133,24764,'_hero_image_pos_y','field_62ec3d05390bc'),(98134,24764,'hero_image_pos',''),(98135,24764,'_hero_image_pos','field_62ec3d05390ba'),(98136,24764,'fft_hide_from_listings','0'),(98137,24764,'_fft_hide_from_listings','field_61f1320446ab2'),(98138,24764,'post_format',''),(98139,24764,'_post_format','field_61756bfb51898'),(98140,24764,'post_author',''),(98141,24764,'_post_author','field_62ec389d22113'),(98142,24764,'post_reviewer',''),(98143,24764,'_post_reviewer','field_627140a2a9800'),(98144,24764,'post_table_of_contents','0'),(98145,24764,'_post_table_of_contents','field_65c503bc846a6'),(98146,24764,'_yoast_wpseo_primary_category',''),(98147,24764,'_yoast_wpseo_primary_blog-format',''),(98148,24764,'_yoast_wpseo_focuskw','Pelvic Biomechanics'),(98149,24764,'_yoast_wpseo_metadesc','In Part 2 of our series on pelvic biomechanics, we focus on the muscles controlling hip movement, vital for enhancing mobility and reducing pain.'),(98150,24764,'_yoast_wpseo_linkdex','64'),(98151,24764,'_yoast_wpseo_content_score','60'),(98152,24764,'_yoast_wpseo_estimated-reading-time-minutes','7'),(98153,39560,'_thumbnail_id','24781'),(98154,39560,'__thumbnail_id','field_617570855ddaf'),(98155,39560,'hide_hero','0'),(98156,39560,'_hide_hero','field_66a2380fcda39'),(98157,39560,'hero_title',''),(98158,39560,'_hero_title','field_617571fe285e8'),(98159,39560,'hero_text',''),(98160,39560,'_hero_text','field_6175723c285e9'),(98161,39560,'hero_actions',''),(98162,39560,'_hero_actions','field_61757270285ea'),(98163,39560,'hero_style','default'),(98164,39560,'_hero_style','field_62051d9dc5324'),(98165,39560,'hero_image_pos_x','right'),(98166,39560,'_hero_image_pos_x','field_62ec3d05390bb'),(98167,39560,'hero_image_pos_y','top'),(98168,39560,'_hero_image_pos_y','field_62ec3d05390bc'),(98169,39560,'hero_image_pos',''),(98170,39560,'_hero_image_pos','field_62ec3d05390ba'),(98171,39560,'fft_hide_from_listings','0'),(98172,39560,'_fft_hide_from_listings','field_61f1320446ab2'),(98173,39560,'post_format',''),(98174,39560,'_post_format','field_61756bfb51898'),(98175,39560,'post_author',''),(98176,39560,'_post_author','field_62ec389d22113'),(98177,39560,'post_reviewer',''),(98178,39560,'_post_reviewer','field_627140a2a9800'),(98179,39560,'post_table_of_contents','0'),(98180,39560,'_post_table_of_contents','field_65c503bc846a6'),(98181,39559,'hide_hero','0'),(98182,39559,'_hide_hero','field_66a2380fcda39'),(98183,39559,'hero_title',''),(98184,39559,'_hero_title','field_617571fe285e8'),(98185,39559,'hero_text',''),(98186,39559,'_hero_text','field_6175723c285e9'),(98187,39559,'hero_actions',''),(98188,39559,'_hero_actions','field_61757270285ea'),(98189,39559,'hero_style','default'),(98190,39559,'_hero_style','field_62051d9dc5324'),(98191,39559,'_thumbnail_id','24781'),(98192,39559,'__thumbnail_id','field_617570855ddaf'),(98193,39559,'hero_image_pos_x','right'),(98194,39559,'_hero_image_pos_x','field_62ec3d05390bb'),(98195,39559,'hero_image_pos_y','top'),(98196,39559,'_hero_image_pos_y','field_62ec3d05390bc'),(98197,39559,'hero_image_pos',''),(98198,39559,'_hero_image_pos','field_62ec3d05390ba'),(98199,39559,'fft_hide_from_listings','0'),(98200,39559,'_fft_hide_from_listings','field_61f1320446ab2'),(98201,39559,'post_format',''),(98202,39559,'_post_format','field_61756bfb51898'),(98203,39559,'post_author',''),(98204,39559,'_post_author','field_62ec389d22113'),(98205,39559,'post_reviewer',''),(98206,39559,'_post_reviewer','field_627140a2a9800'),(98207,39559,'post_table_of_contents','0'),(98208,39559,'_post_table_of_contents','field_65c503bc846a6'),(98209,4779,'_edit_lock','1725531135:5'),(98210,4779,'_oembed_e7a28749645aeaa42116c945f8e9aa4c','<iframe title=\"4 Sign Screen &amp; Exercise\" width=\"1241\" height=\"698\" src=\"https://www.youtube.com/embed/_Lkur9ZcNXw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(98211,4779,'_oembed_time_e7a28749645aeaa42116c945f8e9aa4c','1725531069'),(98212,4779,'_oembed_f2e0ed766e7b788c91a321793e823ae2','<iframe title=\"Improve Your Squat with Chest Release\" width=\"1241\" height=\"698\" src=\"https://www.youtube.com/embed/544p5UVtFXY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(98213,4779,'_oembed_time_f2e0ed766e7b788c91a321793e823ae2','1725531093'),(98215,4779,'hide_hero','0'),(98216,4779,'_hide_hero','field_66a2380fcda39'),(98217,4779,'hero_title',''),(98218,4779,'_hero_title','field_617571fe285e8'),(98219,4779,'hero_text',''),(98220,4779,'_hero_text','field_6175723c285e9'),(98221,4779,'hero_actions',''),(98222,4779,'_hero_actions','field_61757270285ea'),(98223,4779,'hero_style','default'),(98224,4779,'_hero_style','field_62051d9dc5324'),(98225,4779,'__thumbnail_id','field_617570855ddaf'),(98226,4779,'hero_image_pos_x','right'),(98227,4779,'_hero_image_pos_x','field_62ec3d05390bb'),(98228,4779,'hero_image_pos_y','top'),(98229,4779,'_hero_image_pos_y','field_62ec3d05390bc'),(98230,4779,'hero_image_pos',''),(98231,4779,'_hero_image_pos','field_62ec3d05390ba'),(98232,4779,'fft_hide_from_listings','0'),(98233,4779,'_fft_hide_from_listings','field_61f1320446ab2'),(98234,4779,'post_format',''),(98235,4779,'_post_format','field_61756bfb51898'),(98236,4779,'post_author',''),(98237,4779,'_post_author','field_62ec389d22113'),(98238,4779,'post_reviewer',''),(98239,4779,'_post_reviewer','field_627140a2a9800'),(98240,4779,'post_table_of_contents','0'),(98241,4779,'_post_table_of_contents','field_65c503bc846a6'),(98242,4779,'_yoast_wpseo_primary_category',''),(98243,4779,'_yoast_wpseo_primary_blog-format',''),(98244,4779,'_yoast_wpseo_focuskw','Risk Reduction & Intrinsic Biomechanics'),(98245,4779,'_yoast_wpseo_metadesc','Reduce injury risk with intrinsic biomechanics. Learn screening techniques to optimize client performance and safety.'),(98246,4779,'_yoast_wpseo_linkdex','58'),(98247,4779,'_yoast_wpseo_content_score','90'),(98248,4779,'_yoast_wpseo_estimated-reading-time-minutes','2'),(98249,4779,'_oembed_5440ce1b114a9d457588613b4dfb9cab','<iframe title=\"4 Sign Screen &amp; Exercise\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/_Lkur9ZcNXw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(98250,4779,'_oembed_time_5440ce1b114a9d457588613b4dfb9cab','1725531263'),(98251,4779,'_oembed_6e5e25524c6c99a6f093cc4d4a7b762b','<iframe title=\"Improve Your Squat with Chest Release\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/544p5UVtFXY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(98252,4779,'_oembed_time_6e5e25524c6c99a6f093cc4d4a7b762b','1725531263'),(98253,39562,'_thumbnail_id','4785'),(98254,39562,'__thumbnail_id','field_617570855ddaf'),(98255,39562,'hide_hero','0'),(98256,39562,'_hide_hero','field_66a2380fcda39'),(98257,39562,'hero_title',''),(98258,39562,'_hero_title','field_617571fe285e8'),(98259,39562,'hero_text',''),(98260,39562,'_hero_text','field_6175723c285e9'),(98261,39562,'hero_actions',''),(98262,39562,'_hero_actions','field_61757270285ea'),(98263,39562,'hero_style','default'),(98264,39562,'_hero_style','field_62051d9dc5324'),(98265,39562,'hero_image_pos_x','right'),(98266,39562,'_hero_image_pos_x','field_62ec3d05390bb'),(98267,39562,'hero_image_pos_y','top'),(98268,39562,'_hero_image_pos_y','field_62ec3d05390bc'),(98269,39562,'hero_image_pos',''),(98270,39562,'_hero_image_pos','field_62ec3d05390ba'),(98271,39562,'fft_hide_from_listings','0'),(98272,39562,'_fft_hide_from_listings','field_61f1320446ab2'),(98273,39562,'post_format',''),(98274,39562,'_post_format','field_61756bfb51898'),(98275,39562,'post_author',''),(98276,39562,'_post_author','field_62ec389d22113'),(98277,39562,'post_reviewer',''),(98278,39562,'_post_reviewer','field_627140a2a9800'),(98279,39562,'post_table_of_contents','0'),(98280,39562,'_post_table_of_contents','field_65c503bc846a6'),(98281,4779,'_oembed_95f039785660f57efafb2ca0d50bee7e','<iframe title=\"Improve Your Squat with Chest Release\" width=\"1321\" height=\"743\" src=\"https://www.youtube.com/embed/544p5UVtFXY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(98282,4779,'_oembed_time_95f039785660f57efafb2ca0d50bee7e','1725531269'),(98283,4779,'_oembed_a3c8d11bd728aaa889ffdfa91f10756b','<iframe title=\"4 Sign Screen &amp; Exercise\" width=\"1321\" height=\"743\" src=\"https://www.youtube.com/embed/_Lkur9ZcNXw?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(98284,4779,'_oembed_time_a3c8d11bd728aaa889ffdfa91f10756b','1725531269'),(98285,33064,'_edit_lock','1726232523:14'),(98287,33064,'_wp_old_slug','what-is-biomechanics'),(98288,33064,'hide_hero','0'),(98289,33064,'_hide_hero','field_66a2380fcda39'),(98290,33064,'hero_title',''),(98291,33064,'_hero_title','field_617571fe285e8'),(98292,33064,'hero_text',''),(98293,33064,'_hero_text','field_6175723c285e9'),(98294,33064,'hero_actions',''),(98295,33064,'_hero_actions','field_61757270285ea'),(98296,33064,'hero_style','default'),(98297,33064,'_hero_style','field_62051d9dc5324'),(98298,33064,'__thumbnail_id','field_617570855ddaf'),(98299,33064,'hero_image_pos_x','right'),(98300,33064,'_hero_image_pos_x','field_62ec3d05390bb'),(98301,33064,'hero_image_pos_y','top'),(98302,33064,'_hero_image_pos_y','field_62ec3d05390bc'),(98303,33064,'hero_image_pos',''),(98304,33064,'_hero_image_pos','field_62ec3d05390ba'),(98305,33064,'fft_hide_from_listings','0'),(98306,33064,'_fft_hide_from_listings','field_61f1320446ab2'),(98307,33064,'post_format',''),(98308,33064,'_post_format','field_61756bfb51898'),(98309,33064,'post_author',''),(98310,33064,'_post_author','field_62ec389d22113'),(98311,33064,'post_reviewer',''),(98312,33064,'_post_reviewer','field_627140a2a9800'),(98313,33064,'post_table_of_contents','0'),(98314,33064,'_post_table_of_contents','field_65c503bc846a6'),(98315,33064,'_yoast_wpseo_primary_category',''),(98316,33064,'_yoast_wpseo_primary_blog-format',''),(98317,33064,'_yoast_wpseo_focuskw','What is biomechanics'),(98318,33064,'_yoast_wpseo_metadesc','Discover biomechanics: the science of movement. Learn its impact on performance, injury prevention, and careers.'),(98319,33064,'_yoast_wpseo_linkdex','40'),(98320,33064,'_yoast_wpseo_content_score','30'),(98321,33064,'_yoast_wpseo_estimated-reading-time-minutes','3'),(98322,39564,'_thumbnail_id','16057'),(98323,39564,'__thumbnail_id','field_617570855ddaf'),(98324,39564,'hide_hero','0'),(98325,39564,'_hide_hero','field_66a2380fcda39'),(98326,39564,'hero_title',''),(98327,39564,'_hero_title','field_617571fe285e8'),(98328,39564,'hero_text',''),(98329,39564,'_hero_text','field_6175723c285e9'),(98330,39564,'hero_actions',''),(98331,39564,'_hero_actions','field_61757270285ea'),(98332,39564,'hero_style','default'),(98333,39564,'_hero_style','field_62051d9dc5324'),(98334,39564,'hero_image_pos_x','right'),(98335,39564,'_hero_image_pos_x','field_62ec3d05390bb'),(98336,39564,'hero_image_pos_y','top'),(98337,39564,'_hero_image_pos_y','field_62ec3d05390bc'),(98338,39564,'hero_image_pos',''),(98339,39564,'_hero_image_pos','field_62ec3d05390ba'),(98340,39564,'fft_hide_from_listings','0'),(98341,39564,'_fft_hide_from_listings','field_61f1320446ab2'),(98342,39564,'post_format',''),(98343,39564,'_post_format','field_61756bfb51898'),(98344,39564,'post_author',''),(98345,39564,'_post_author','field_62ec389d22113'),(98346,39564,'post_reviewer',''),(98347,39564,'_post_reviewer','field_627140a2a9800'),(98348,39564,'post_table_of_contents','0'),(98349,39564,'_post_table_of_contents','field_65c503bc846a6'),(98378,25466,'_edit_lock','1725533809:5'),(98380,25466,'hide_hero','0'),(98381,25466,'_hide_hero','field_66a2380fcda39'),(98382,25466,'hero_title',''),(98383,25466,'_hero_title','field_617571fe285e8'),(98384,25466,'hero_text',''),(98385,25466,'_hero_text','field_6175723c285e9'),(98386,25466,'hero_actions',''),(98387,25466,'_hero_actions','field_61757270285ea'),(98388,25466,'hero_style','default'),(98389,25466,'_hero_style','field_62051d9dc5324'),(98390,25466,'__thumbnail_id','field_617570855ddaf'),(98391,25466,'hero_image_pos_x','right'),(98392,25466,'_hero_image_pos_x','field_62ec3d05390bb'),(98393,25466,'hero_image_pos_y','top'),(98394,25466,'_hero_image_pos_y','field_62ec3d05390bc'),(98395,25466,'hero_image_pos',''),(98396,25466,'_hero_image_pos','field_62ec3d05390ba'),(98397,25466,'fft_hide_from_listings','0'),(98398,25466,'_fft_hide_from_listings','field_61f1320446ab2'),(98399,25466,'post_format',''),(98400,25466,'_post_format','field_61756bfb51898'),(98401,25466,'post_author',''),(98402,25466,'_post_author','field_62ec389d22113'),(98403,25466,'post_reviewer',''),(98404,25466,'_post_reviewer','field_627140a2a9800'),(98405,25466,'post_table_of_contents','0'),(98406,25466,'_post_table_of_contents','field_65c503bc846a6'),(98407,25466,'_yoast_wpseo_primary_category',''),(98408,25466,'_yoast_wpseo_primary_blog-format',''),(98409,25466,'_yoast_wpseo_focuskw','Muscles of the shoulder'),(98410,25466,'_yoast_wpseo_title','%%title%% %%page%%'),(98411,25466,'_yoast_wpseo_metadesc','Explore shoulder biomechanics: understand the roles of key muscles for movement and stability in this detailed guide.'),(98412,25466,'_yoast_wpseo_linkdex','69'),(98413,25466,'_yoast_wpseo_content_score','60'),(98414,25466,'_yoast_wpseo_estimated-reading-time-minutes','5'),(98415,39566,'_thumbnail_id','24188'),(98416,39566,'__thumbnail_id','field_617570855ddaf'),(98417,39566,'hide_hero','0'),(98418,39566,'_hide_hero','field_66a2380fcda39'),(98419,39566,'hero_title',''),(98420,39566,'_hero_title','field_617571fe285e8'),(98421,39566,'hero_text',''),(98422,39566,'_hero_text','field_6175723c285e9'),(98423,39566,'hero_actions',''),(98424,39566,'_hero_actions','field_61757270285ea'),(98425,39566,'hero_style','default'),(98426,39566,'_hero_style','field_62051d9dc5324'),(98427,39566,'hero_image_pos_x','right'),(98428,39566,'_hero_image_pos_x','field_62ec3d05390bb'),(98429,39566,'hero_image_pos_y','top'),(98430,39566,'_hero_image_pos_y','field_62ec3d05390bc'),(98431,39566,'hero_image_pos',''),(98432,39566,'_hero_image_pos','field_62ec3d05390ba'),(98433,39566,'fft_hide_from_listings','0'),(98434,39566,'_fft_hide_from_listings','field_61f1320446ab2'),(98435,39566,'post_format',''),(98436,39566,'_post_format','field_61756bfb51898'),(98437,39566,'post_author',''),(98438,39566,'_post_author','field_62ec389d22113'),(98439,39566,'post_reviewer',''),(98440,39566,'_post_reviewer','field_627140a2a9800'),(98441,39566,'post_table_of_contents','0'),(98442,39566,'_post_table_of_contents','field_65c503bc846a6'),(98443,39565,'hide_hero','0'),(98444,39565,'_hide_hero','field_66a2380fcda39'),(98445,39565,'hero_title',''),(98446,39565,'_hero_title','field_617571fe285e8'),(98447,39565,'hero_text',''),(98448,39565,'_hero_text','field_6175723c285e9'),(98449,39565,'hero_actions',''),(98450,39565,'_hero_actions','field_61757270285ea'),(98451,39565,'hero_style','default'),(98452,39565,'_hero_style','field_62051d9dc5324'),(98453,39565,'_thumbnail_id','24188'),(98454,39565,'__thumbnail_id','field_617570855ddaf'),(98455,39565,'hero_image_pos_x','right'),(98456,39565,'_hero_image_pos_x','field_62ec3d05390bb'),(98457,39565,'hero_image_pos_y','top'),(98458,39565,'_hero_image_pos_y','field_62ec3d05390bc'),(98459,39565,'hero_image_pos',''),(98460,39565,'_hero_image_pos','field_62ec3d05390ba'),(98461,39565,'fft_hide_from_listings','0'),(98462,39565,'_fft_hide_from_listings','field_61f1320446ab2'),(98463,39565,'post_format',''),(98464,39565,'_post_format','field_61756bfb51898'),(98465,39565,'post_author',''),(98466,39565,'_post_author','field_62ec389d22113'),(98467,39565,'post_reviewer',''),(98468,39565,'_post_reviewer','field_627140a2a9800'),(98469,39565,'post_table_of_contents','0'),(98470,39565,'_post_table_of_contents','field_65c503bc846a6'),(98471,35126,'_edit_lock','1726231992:14'),(98473,35126,'hide_hero','0'),(98474,35126,'_hide_hero','field_66a2380fcda39'),(98475,35126,'hero_title',''),(98476,35126,'_hero_title','field_617571fe285e8'),(98477,35126,'hero_text',''),(98478,35126,'_hero_text','field_6175723c285e9'),(98479,35126,'hero_actions',''),(98480,35126,'_hero_actions','field_61757270285ea'),(98481,35126,'hero_style','default'),(98482,35126,'_hero_style','field_62051d9dc5324'),(98483,35126,'__thumbnail_id','field_617570855ddaf'),(98484,35126,'hero_image_pos_x','right'),(98485,35126,'_hero_image_pos_x','field_62ec3d05390bb'),(98486,35126,'hero_image_pos_y','top'),(98487,35126,'_hero_image_pos_y','field_62ec3d05390bc'),(98488,35126,'hero_image_pos',''),(98489,35126,'_hero_image_pos','field_62ec3d05390ba'),(98490,35126,'fft_hide_from_listings','0'),(98491,35126,'_fft_hide_from_listings','field_61f1320446ab2'),(98492,35126,'post_format',''),(98493,35126,'_post_format','field_61756bfb51898'),(98494,35126,'post_author',''),(98495,35126,'_post_author','field_62ec389d22113'),(98496,35126,'post_reviewer',''),(98497,35126,'_post_reviewer','field_627140a2a9800'),(98498,35126,'post_table_of_contents','0'),(98499,35126,'_post_table_of_contents','field_65c503bc846a6'),(98500,35126,'_yoast_wpseo_primary_category',''),(98501,35126,'_yoast_wpseo_primary_blog-format',''),(98502,35126,'_yoast_wpseo_focuskw','Biomechanical assessment'),(98503,35126,'_yoast_wpseo_title','%%title%% %%page%%'),(98504,35126,'_yoast_wpseo_metadesc','Discover the essentials of biomechanical assessment: equipment-based vs. equipment-free, and who can help optimize your movement'),(98505,35126,'_yoast_wpseo_linkdex','70'),(98506,35126,'_yoast_wpseo_content_score','90'),(98507,35126,'_yoast_wpseo_estimated-reading-time-minutes','4'),(98508,39568,'_thumbnail_id',''),(98509,39568,'__thumbnail_id','field_617570855ddaf'),(98510,39568,'hide_hero','0'),(98511,39568,'_hide_hero','field_66a2380fcda39'),(98512,39568,'hero_title',''),(98513,39568,'_hero_title','field_617571fe285e8'),(98514,39568,'hero_text',''),(98515,39568,'_hero_text','field_6175723c285e9'),(98516,39568,'hero_actions',''),(98517,39568,'_hero_actions','field_61757270285ea'),(98518,39568,'hero_style','default'),(98519,39568,'_hero_style','field_62051d9dc5324'),(98520,39568,'hero_image_pos_x','right'),(98521,39568,'_hero_image_pos_x','field_62ec3d05390bb'),(98522,39568,'hero_image_pos_y','top'),(98523,39568,'_hero_image_pos_y','field_62ec3d05390bc'),(98524,39568,'hero_image_pos',''),(98525,39568,'_hero_image_pos','field_62ec3d05390ba'),(98526,39568,'fft_hide_from_listings','0'),(98527,39568,'_fft_hide_from_listings','field_61f1320446ab2'),(98528,39568,'post_format',''),(98529,39568,'_post_format','field_61756bfb51898'),(98530,39568,'post_author',''),(98531,39568,'_post_author','field_62ec389d22113'),(98532,39568,'post_reviewer',''),(98533,39568,'_post_reviewer','field_627140a2a9800'),(98534,39568,'post_table_of_contents','0'),(98535,39568,'_post_table_of_contents','field_65c503bc846a6'),(98564,31421,'_edit_lock','1725535067:5'),(98566,31421,'hide_hero','0'),(98567,31421,'_hide_hero','field_66a2380fcda39'),(98568,31421,'hero_title',''),(98569,31421,'_hero_title','field_617571fe285e8'),(98570,31421,'hero_text',''),(98571,31421,'_hero_text','field_6175723c285e9'),(98572,31421,'hero_actions',''),(98573,31421,'_hero_actions','field_61757270285ea'),(98574,31421,'hero_style','default'),(98575,31421,'_hero_style','field_62051d9dc5324'),(98576,31421,'__thumbnail_id','field_617570855ddaf'),(98577,31421,'hero_image_pos_x','right'),(98578,31421,'_hero_image_pos_x','field_62ec3d05390bb'),(98579,31421,'hero_image_pos_y','top'),(98580,31421,'_hero_image_pos_y','field_62ec3d05390bc'),(98581,31421,'hero_image_pos',''),(98582,31421,'_hero_image_pos','field_62ec3d05390ba'),(98583,31421,'fft_hide_from_listings','0'),(98584,31421,'_fft_hide_from_listings','field_61f1320446ab2'),(98585,31421,'post_format',''),(98586,31421,'_post_format','field_61756bfb51898'),(98587,31421,'post_author',''),(98588,31421,'_post_author','field_62ec389d22113'),(98589,31421,'post_reviewer',''),(98590,31421,'_post_reviewer','field_627140a2a9800'),(98591,31421,'post_table_of_contents','0'),(98592,31421,'_post_table_of_contents','field_65c503bc846a6'),(98593,31421,'_yoast_wpseo_primary_category',''),(98594,31421,'_yoast_wpseo_primary_blog-format',''),(98595,31421,'_yoast_wpseo_focuskw','Understanding Neuromuscular Exercise'),(98596,31421,'_yoast_wpseo_title','Understanding Neuromuscular Exercise - Biomechanics education'),(98597,31421,'_yoast_wpseo_metadesc','Unlock the benefits of neuromuscular exercise with our guide: improve stability, coordination, and functional strength.'),(98598,31421,'_yoast_wpseo_linkdex','60'),(98599,31421,'_yoast_wpseo_content_score','60'),(98600,31421,'_yoast_wpseo_estimated-reading-time-minutes','5'),(98601,39570,'_thumbnail_id','31422'),(98602,39570,'__thumbnail_id','field_617570855ddaf'),(98603,39570,'hide_hero','0'),(98604,39570,'_hide_hero','field_66a2380fcda39'),(98605,39570,'hero_title',''),(98606,39570,'_hero_title','field_617571fe285e8'),(98607,39570,'hero_text',''),(98608,39570,'_hero_text','field_6175723c285e9'),(98609,39570,'hero_actions',''),(98610,39570,'_hero_actions','field_61757270285ea'),(98611,39570,'hero_style','default'),(98612,39570,'_hero_style','field_62051d9dc5324'),(98613,39570,'hero_image_pos_x','right'),(98614,39570,'_hero_image_pos_x','field_62ec3d05390bb'),(98615,39570,'hero_image_pos_y','top'),(98616,39570,'_hero_image_pos_y','field_62ec3d05390bc'),(98617,39570,'hero_image_pos',''),(98618,39570,'_hero_image_pos','field_62ec3d05390ba'),(98619,39570,'fft_hide_from_listings','0'),(98620,39570,'_fft_hide_from_listings','field_61f1320446ab2'),(98621,39570,'post_format',''),(98622,39570,'_post_format','field_61756bfb51898'),(98623,39570,'post_author',''),(98624,39570,'_post_author','field_62ec389d22113'),(98625,39570,'post_reviewer',''),(98626,39570,'_post_reviewer','field_627140a2a9800'),(98627,39570,'post_table_of_contents','0'),(98628,39570,'_post_table_of_contents','field_65c503bc846a6'),(98629,39569,'hide_hero','0'),(98630,39569,'_hide_hero','field_66a2380fcda39'),(98631,39569,'hero_title',''),(98632,39569,'_hero_title','field_617571fe285e8'),(98633,39569,'hero_text',''),(98634,39569,'_hero_text','field_6175723c285e9'),(98635,39569,'hero_actions',''),(98636,39569,'_hero_actions','field_61757270285ea'),(98637,39569,'hero_style','default'),(98638,39569,'_hero_style','field_62051d9dc5324'),(98639,39569,'_thumbnail_id','31422'),(98640,39569,'__thumbnail_id','field_617570855ddaf'),(98641,39569,'hero_image_pos_x','right'),(98642,39569,'_hero_image_pos_x','field_62ec3d05390bb'),(98643,39569,'hero_image_pos_y','top'),(98644,39569,'_hero_image_pos_y','field_62ec3d05390bc'),(98645,39569,'hero_image_pos',''),(98646,39569,'_hero_image_pos','field_62ec3d05390ba'),(98647,39569,'fft_hide_from_listings','0'),(98648,39569,'_fft_hide_from_listings','field_61f1320446ab2'),(98649,39569,'post_format',''),(98650,39569,'_post_format','field_61756bfb51898'),(98651,39569,'post_author',''),(98652,39569,'_post_author','field_62ec389d22113'),(98653,39569,'post_reviewer',''),(98654,39569,'_post_reviewer','field_627140a2a9800'),(98655,39569,'post_table_of_contents','0'),(98656,39569,'_post_table_of_contents','field_65c503bc846a6'),(98659,39497,'blocks_0_acfe_flexible_toggle',''),(98660,39497,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(98661,39497,'blocks_0_acfe_flexible_layout_title','Cards'),(98662,39497,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(98663,39497,'blocks_0_options_theme','#ffffff'),(98664,39497,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(98665,39497,'blocks_0_options_format','grid'),(98666,39497,'_blocks_0_options_format','field_617a7b15245b5'),(98667,39497,'blocks_0_options_style','default'),(98668,39497,'_blocks_0_options_style','field_6278ffb63484a'),(98669,39497,'blocks_0_options_cards_current_listing','0'),(98670,39497,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(98671,39497,'blocks_0_options_cards_content','term'),(98672,39497,'_blocks_0_options_cards_content','field_617aba6122688'),(98673,39497,'blocks_0_options_cards_post_type','post'),(98674,39497,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(98675,39497,'blocks_0_options_cards_posts_per_page','5'),(98676,39497,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(98677,39497,'blocks_0_options',''),(98678,39497,'_blocks_0_options','field_617a7b15245b3'),(98679,39497,'_yoast_wpseo_focuskw','biomechanics blogs'),(98680,39497,'_yoast_wpseo_metadesc','Explore our blogs to master biomechanics, enhance performance, and reduce injury risk with expert insights and practical tips.'),(98681,39497,'_yoast_wpseo_linkdex','46'),(98682,39571,'hide_hero','0'),(98683,39571,'_hide_hero','field_66a2380fcda39'),(98684,39571,'hero_title','Blogs'),(98685,39571,'_hero_title','field_617571fe285e8'),(98686,39571,'hero_text',''),(98687,39571,'_hero_text','field_6175723c285e9'),(98688,39571,'hero_actions',''),(98689,39571,'_hero_actions','field_61757270285ea'),(98690,39571,'hero_style','default'),(98691,39571,'_hero_style','field_62051d9dc5324'),(98692,39571,'hero_image_pos_x','right'),(98693,39571,'_hero_image_pos_x','field_62ec3d05390bb'),(98694,39571,'hero_image_pos_y','top'),(98695,39571,'_hero_image_pos_y','field_62ec3d05390bc'),(98696,39571,'hero_image_pos',''),(98697,39571,'_hero_image_pos','field_62ec3d05390ba'),(98698,39571,'fft_hide_from_listings','0'),(98699,39571,'_fft_hide_from_listings','field_61f1320446ab2'),(98700,39571,'fft_page_format','default'),(98701,39571,'_fft_page_format','field_61ae213f1f218'),(98702,39571,'fft_hide_nav','0'),(98703,39571,'_fft_hide_nav','field_635bd5e43527c'),(98704,39571,'fft_hide_header_call_to_action','0'),(98705,39571,'_fft_hide_header_call_to_action','field_635bd6723527d'),(98706,39571,'fft_page_sitemap','0'),(98707,39571,'_fft_page_sitemap','field_61af9b34e8181'),(98708,39571,'blocks','a:1:{i:0;s:5:\"cards\";}'),(98709,39571,'_blocks','field_6176696113096'),(98710,39571,'_thumbnail_id',''),(98711,39571,'__thumbnail_id','field_617570855ddaf'),(98712,39571,'blocks_0_acfe_flexible_toggle',''),(98713,39571,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(98714,39571,'blocks_0_acfe_flexible_layout_title','Cards'),(98715,39571,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(98716,39571,'blocks_0_options_theme','#ffffff'),(98717,39571,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(98718,39571,'blocks_0_options_format','carousel'),(98719,39571,'_blocks_0_options_format','field_617a7b15245b5'),(98720,39571,'blocks_0_options_style','default'),(98721,39571,'_blocks_0_options_style','field_6278ffb63484a'),(98722,39571,'blocks_0_options_cards_current_listing','0'),(98723,39571,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(98724,39571,'blocks_0_options_cards_content','post_type'),(98725,39571,'_blocks_0_options_cards_content','field_617aba6122688'),(98726,39571,'blocks_0_options_cards_post_type','post'),(98727,39571,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(98728,39571,'blocks_0_options_cards_posts_per_page','6'),(98729,39571,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(98730,39571,'blocks_0_options',''),(98731,39571,'_blocks_0_options','field_617a7b15245b3'),(98783,39497,'blocks_0_options_cards_term','5'),(98784,39497,'_blocks_0_options_cards_term','field_6193f7c180895'),(98785,39573,'hide_hero','0'),(98786,39573,'_hide_hero','field_66a2380fcda39'),(98787,39573,'hero_title','Blogs'),(98788,39573,'_hero_title','field_617571fe285e8'),(98789,39573,'hero_text',''),(98790,39573,'_hero_text','field_6175723c285e9'),(98791,39573,'hero_actions',''),(98792,39573,'_hero_actions','field_61757270285ea'),(98793,39573,'hero_style','default'),(98794,39573,'_hero_style','field_62051d9dc5324'),(98795,39573,'hero_image_pos_x','right'),(98796,39573,'_hero_image_pos_x','field_62ec3d05390bb'),(98797,39573,'hero_image_pos_y','top'),(98798,39573,'_hero_image_pos_y','field_62ec3d05390bc'),(98799,39573,'hero_image_pos',''),(98800,39573,'_hero_image_pos','field_62ec3d05390ba'),(98801,39573,'fft_hide_from_listings','0'),(98802,39573,'_fft_hide_from_listings','field_61f1320446ab2'),(98803,39573,'fft_page_format','default'),(98804,39573,'_fft_page_format','field_61ae213f1f218'),(98805,39573,'fft_hide_nav','0'),(98806,39573,'_fft_hide_nav','field_635bd5e43527c'),(98807,39573,'fft_hide_header_call_to_action','0'),(98808,39573,'_fft_hide_header_call_to_action','field_635bd6723527d'),(98809,39573,'fft_page_sitemap','0'),(98810,39573,'_fft_page_sitemap','field_61af9b34e8181'),(98811,39573,'blocks','a:1:{i:0;s:5:\"cards\";}'),(98812,39573,'_blocks','field_6176696113096'),(98813,39573,'blocks_0_acfe_flexible_toggle',''),(98814,39573,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(98815,39573,'blocks_0_acfe_flexible_layout_title','Cards'),(98816,39573,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(98817,39573,'blocks_0_options_theme','#ffffff'),(98818,39573,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(98819,39573,'blocks_0_options_format','carousel'),(98820,39573,'_blocks_0_options_format','field_617a7b15245b5'),(98821,39573,'blocks_0_options_style','default'),(98822,39573,'_blocks_0_options_style','field_6278ffb63484a'),(98823,39573,'blocks_0_options_cards_current_listing','0'),(98824,39573,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(98825,39573,'blocks_0_options_cards_content','term'),(98826,39573,'_blocks_0_options_cards_content','field_617aba6122688'),(98827,39573,'blocks_0_options_cards_post_type','post'),(98828,39573,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(98829,39573,'blocks_0_options_cards_posts_per_page','6'),(98830,39573,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(98831,39573,'blocks_0_options',''),(98832,39573,'_blocks_0_options','field_617a7b15245b3'),(98833,39573,'_thumbnail_id',''),(98834,39573,'__thumbnail_id','field_617570855ddaf'),(98835,39573,'blocks_0_options_cards_term','5'),(98836,39573,'_blocks_0_options_cards_term','field_6193f7c180895'),(98838,39574,'hide_hero','0'),(98839,39574,'_hide_hero','field_66a2380fcda39'),(98840,39574,'hero_title','Blogs'),(98841,39574,'_hero_title','field_617571fe285e8'),(98842,39574,'hero_text',''),(98843,39574,'_hero_text','field_6175723c285e9'),(98844,39574,'hero_actions',''),(98845,39574,'_hero_actions','field_61757270285ea'),(98846,39574,'hero_style','default'),(98847,39574,'_hero_style','field_62051d9dc5324'),(98848,39574,'hero_image_pos_x','right'),(98849,39574,'_hero_image_pos_x','field_62ec3d05390bb'),(98850,39574,'hero_image_pos_y','top'),(98851,39574,'_hero_image_pos_y','field_62ec3d05390bc'),(98852,39574,'hero_image_pos',''),(98853,39574,'_hero_image_pos','field_62ec3d05390ba'),(98854,39574,'fft_hide_from_listings','0'),(98855,39574,'_fft_hide_from_listings','field_61f1320446ab2'),(98856,39574,'fft_page_format','default'),(98857,39574,'_fft_page_format','field_61ae213f1f218'),(98858,39574,'fft_hide_nav','0'),(98859,39574,'_fft_hide_nav','field_635bd5e43527c'),(98860,39574,'fft_hide_header_call_to_action','0'),(98861,39574,'_fft_hide_header_call_to_action','field_635bd6723527d'),(98862,39574,'fft_page_sitemap','0'),(98863,39574,'_fft_page_sitemap','field_61af9b34e8181'),(98864,39574,'blocks','a:1:{i:0;s:5:\"cards\";}'),(98865,39574,'_blocks','field_6176696113096'),(98866,39574,'blocks_0_acfe_flexible_toggle',''),(98867,39574,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(98868,39574,'blocks_0_acfe_flexible_layout_title','Cards'),(98869,39574,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(98870,39574,'blocks_0_options_theme','#ffffff'),(98871,39574,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(98872,39574,'blocks_0_options_format','carousel'),(98873,39574,'_blocks_0_options_format','field_617a7b15245b5'),(98874,39574,'blocks_0_options_style','featured'),(98875,39574,'_blocks_0_options_style','field_6278ffb63484a'),(98876,39574,'blocks_0_options_cards_current_listing','0'),(98877,39574,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(98878,39574,'blocks_0_options_cards_content','term'),(98879,39574,'_blocks_0_options_cards_content','field_617aba6122688'),(98880,39574,'blocks_0_options_cards_post_type','post'),(98881,39574,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(98882,39574,'blocks_0_options_cards_posts_per_page','6'),(98883,39574,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(98884,39574,'blocks_0_options',''),(98885,39574,'_blocks_0_options','field_617a7b15245b3'),(98886,39574,'blocks_0_options_cards_term','5'),(98887,39574,'_blocks_0_options_cards_term','field_6193f7c180895'),(98888,39574,'_thumbnail_id',''),(98889,39574,'__thumbnail_id','field_617570855ddaf'),(98943,39576,'hide_hero','0'),(98944,39576,'_hide_hero','field_66a2380fcda39'),(98945,39576,'hero_title','Blogs'),(98946,39576,'_hero_title','field_617571fe285e8'),(98947,39576,'hero_text',''),(98948,39576,'_hero_text','field_6175723c285e9'),(98949,39576,'hero_actions',''),(98950,39576,'_hero_actions','field_61757270285ea'),(98951,39576,'hero_style','default'),(98952,39576,'_hero_style','field_62051d9dc5324'),(98953,39576,'hero_image_pos_x','right'),(98954,39576,'_hero_image_pos_x','field_62ec3d05390bb'),(98955,39576,'hero_image_pos_y','top'),(98956,39576,'_hero_image_pos_y','field_62ec3d05390bc'),(98957,39576,'hero_image_pos',''),(98958,39576,'_hero_image_pos','field_62ec3d05390ba'),(98959,39576,'fft_hide_from_listings','0'),(98960,39576,'_fft_hide_from_listings','field_61f1320446ab2'),(98961,39576,'fft_page_format','default'),(98962,39576,'_fft_page_format','field_61ae213f1f218'),(98963,39576,'fft_hide_nav','0'),(98964,39576,'_fft_hide_nav','field_635bd5e43527c'),(98965,39576,'fft_hide_header_call_to_action','0'),(98966,39576,'_fft_hide_header_call_to_action','field_635bd6723527d'),(98967,39576,'fft_page_sitemap','0'),(98968,39576,'_fft_page_sitemap','field_61af9b34e8181'),(98969,39576,'blocks','a:1:{i:0;s:5:\"cards\";}'),(98970,39576,'_blocks','field_6176696113096'),(98971,39576,'blocks_0_acfe_flexible_toggle',''),(98972,39576,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(98973,39576,'blocks_0_acfe_flexible_layout_title','Cards'),(98974,39576,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(98975,39576,'blocks_0_options_theme','#ffffff'),(98976,39576,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(98977,39576,'blocks_0_options_format','carousel'),(98978,39576,'_blocks_0_options_format','field_617a7b15245b5'),(98979,39576,'blocks_0_options_style','cover-image'),(98980,39576,'_blocks_0_options_style','field_6278ffb63484a'),(98981,39576,'blocks_0_options_cards_current_listing','0'),(98982,39576,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(98983,39576,'blocks_0_options_cards_content','term'),(98984,39576,'_blocks_0_options_cards_content','field_617aba6122688'),(98985,39576,'blocks_0_options_cards_post_type','post'),(98986,39576,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(98987,39576,'blocks_0_options_cards_posts_per_page','6'),(98988,39576,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(98989,39576,'blocks_0_options',''),(98990,39576,'_blocks_0_options','field_617a7b15245b3'),(98991,39576,'blocks_0_options_cards_term','5'),(98992,39576,'_blocks_0_options_cards_term','field_6193f7c180895'),(98993,39576,'_thumbnail_id',''),(98994,39576,'__thumbnail_id','field_617570855ddaf'),(98995,39544,'_oembed_1dcae9003cd771a2a9dc905f00ee191e','{{unknown}}'),(99025,39497,'blocks_0_options_cards_pagination','1'),(99026,39497,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(99027,39497,'blocks_0_options_cards_filter_taxonomy',''),(99028,39497,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(99029,39578,'hide_hero','0'),(99030,39578,'_hide_hero','field_66a2380fcda39'),(99031,39578,'hero_title','Blogs'),(99032,39578,'_hero_title','field_617571fe285e8'),(99033,39578,'hero_text',''),(99034,39578,'_hero_text','field_6175723c285e9'),(99035,39578,'hero_actions',''),(99036,39578,'_hero_actions','field_61757270285ea'),(99037,39578,'hero_style','default'),(99038,39578,'_hero_style','field_62051d9dc5324'),(99039,39578,'hero_image_pos_x','right'),(99040,39578,'_hero_image_pos_x','field_62ec3d05390bb'),(99041,39578,'hero_image_pos_y','top'),(99042,39578,'_hero_image_pos_y','field_62ec3d05390bc'),(99043,39578,'hero_image_pos',''),(99044,39578,'_hero_image_pos','field_62ec3d05390ba'),(99045,39578,'fft_hide_from_listings','0'),(99046,39578,'_fft_hide_from_listings','field_61f1320446ab2'),(99047,39578,'fft_page_format','default'),(99048,39578,'_fft_page_format','field_61ae213f1f218'),(99049,39578,'fft_hide_nav','0'),(99050,39578,'_fft_hide_nav','field_635bd5e43527c'),(99051,39578,'fft_hide_header_call_to_action','0'),(99052,39578,'_fft_hide_header_call_to_action','field_635bd6723527d'),(99053,39578,'fft_page_sitemap','0'),(99054,39578,'_fft_page_sitemap','field_61af9b34e8181'),(99055,39578,'blocks','a:1:{i:0;s:5:\"cards\";}'),(99056,39578,'_blocks','field_6176696113096'),(99057,39578,'blocks_0_acfe_flexible_toggle',''),(99058,39578,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(99059,39578,'blocks_0_acfe_flexible_layout_title','Cards'),(99060,39578,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(99061,39578,'blocks_0_options_theme','#ffffff'),(99062,39578,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(99063,39578,'blocks_0_options_format','grid'),(99064,39578,'_blocks_0_options_format','field_617a7b15245b5'),(99065,39578,'blocks_0_options_style','cover-image'),(99066,39578,'_blocks_0_options_style','field_6278ffb63484a'),(99067,39578,'blocks_0_options_cards_current_listing','0'),(99068,39578,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(99069,39578,'blocks_0_options_cards_content','post_type'),(99070,39578,'_blocks_0_options_cards_content','field_617aba6122688'),(99071,39578,'blocks_0_options_cards_post_type','post'),(99072,39578,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(99073,39578,'blocks_0_options_cards_posts_per_page','6'),(99074,39578,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(99075,39578,'blocks_0_options',''),(99076,39578,'_blocks_0_options','field_617a7b15245b3'),(99077,39578,'blocks_0_options_cards_term','5'),(99078,39578,'_blocks_0_options_cards_term','field_6193f7c180895'),(99079,39578,'_thumbnail_id',''),(99080,39578,'__thumbnail_id','field_617570855ddaf'),(99081,39578,'blocks_0_options_cards_pagination','0'),(99082,39578,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(99083,39578,'blocks_0_options_cards_filter_taxonomy',''),(99084,39578,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(99086,39579,'hide_hero','0'),(99087,39579,'_hide_hero','field_66a2380fcda39'),(99088,39579,'hero_title','Blogs'),(99089,39579,'_hero_title','field_617571fe285e8'),(99090,39579,'hero_text',''),(99091,39579,'_hero_text','field_6175723c285e9'),(99092,39579,'hero_actions',''),(99093,39579,'_hero_actions','field_61757270285ea'),(99094,39579,'hero_style','default'),(99095,39579,'_hero_style','field_62051d9dc5324'),(99096,39579,'hero_image_pos_x','right'),(99097,39579,'_hero_image_pos_x','field_62ec3d05390bb'),(99098,39579,'hero_image_pos_y','top'),(99099,39579,'_hero_image_pos_y','field_62ec3d05390bc'),(99100,39579,'hero_image_pos',''),(99101,39579,'_hero_image_pos','field_62ec3d05390ba'),(99102,39579,'fft_hide_from_listings','0'),(99103,39579,'_fft_hide_from_listings','field_61f1320446ab2'),(99104,39579,'fft_page_format','default'),(99105,39579,'_fft_page_format','field_61ae213f1f218'),(99106,39579,'fft_hide_nav','0'),(99107,39579,'_fft_hide_nav','field_635bd5e43527c'),(99108,39579,'fft_hide_header_call_to_action','0'),(99109,39579,'_fft_hide_header_call_to_action','field_635bd6723527d'),(99110,39579,'fft_page_sitemap','0'),(99111,39579,'_fft_page_sitemap','field_61af9b34e8181'),(99112,39579,'blocks','a:1:{i:0;s:5:\"cards\";}'),(99113,39579,'_blocks','field_6176696113096'),(99114,39579,'blocks_0_acfe_flexible_toggle',''),(99115,39579,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(99116,39579,'blocks_0_acfe_flexible_layout_title','Cards'),(99117,39579,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(99118,39579,'blocks_0_options_theme','#ffffff'),(99119,39579,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(99120,39579,'blocks_0_options_format','grid'),(99121,39579,'_blocks_0_options_format','field_617a7b15245b5'),(99122,39579,'blocks_0_options_style','default'),(99123,39579,'_blocks_0_options_style','field_6278ffb63484a'),(99124,39579,'blocks_0_options_cards_current_listing','0'),(99125,39579,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(99126,39579,'blocks_0_options_cards_content','post_type'),(99127,39579,'_blocks_0_options_cards_content','field_617aba6122688'),(99128,39579,'blocks_0_options_cards_post_type','post'),(99129,39579,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(99130,39579,'blocks_0_options_cards_posts_per_page','6'),(99131,39579,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(99132,39579,'blocks_0_options',''),(99133,39579,'_blocks_0_options','field_617a7b15245b3'),(99134,39579,'blocks_0_options_cards_term','5'),(99135,39579,'_blocks_0_options_cards_term','field_6193f7c180895'),(99136,39579,'blocks_0_options_cards_pagination','0'),(99137,39579,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(99138,39579,'blocks_0_options_cards_filter_taxonomy',''),(99139,39579,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(99140,39579,'_thumbnail_id',''),(99141,39579,'__thumbnail_id','field_617570855ddaf'),(99161,39278,'_wp_old_date','2024-09-02'),(99162,39348,'_wp_old_date','2024-09-02'),(99163,39486,'_wp_old_date','2024-09-02'),(99164,39485,'_wp_old_date','2024-09-02'),(99165,39487,'_wp_old_date','2024-09-02'),(99166,39279,'_wp_old_date','2024-09-02'),(99167,39325,'_wp_old_date','2024-09-02'),(99168,39324,'_wp_old_date','2024-09-02'),(99169,39323,'_wp_old_date','2024-09-02'),(99170,39322,'_wp_old_date','2024-09-02'),(99171,39321,'_wp_old_date','2024-09-02'),(99172,39320,'_wp_old_date','2024-09-02'),(99173,39319,'_wp_old_date','2024-09-02'),(99174,39280,'_wp_old_date','2024-09-02'),(99175,39522,'_wp_old_date','2024-09-02'),(99176,39281,'_wp_old_date','2024-09-02'),(99177,39344,'_wp_old_date','2024-09-02'),(99178,39318,'_wp_old_date','2024-09-02'),(99229,39583,'hide_hero','0'),(99230,39583,'_hide_hero','field_66a2380fcda39'),(99231,39583,'hero_title','Price Guide'),(99232,39583,'_hero_title','field_617571fe285e8'),(99233,39583,'hero_text','Enquire Now !'),(99234,39583,'_hero_text','field_6175723c285e9'),(99235,39583,'hero_actions',''),(99236,39583,'_hero_actions','field_61757270285ea'),(99237,39583,'hero_style','default'),(99238,39583,'_hero_style','field_62051d9dc5324'),(99239,39583,'hero_image_pos_x','right'),(99240,39583,'_hero_image_pos_x','field_62ec3d05390bb'),(99241,39583,'hero_image_pos_y','top'),(99242,39583,'_hero_image_pos_y','field_62ec3d05390bc'),(99243,39583,'hero_image_pos',''),(99244,39583,'_hero_image_pos','field_62ec3d05390ba'),(99245,39583,'fft_hide_from_listings','0'),(99246,39583,'_fft_hide_from_listings','field_61f1320446ab2'),(99247,39583,'fft_page_format','default'),(99248,39583,'_fft_page_format','field_61ae213f1f218'),(99249,39583,'fft_hide_nav','0'),(99250,39583,'_fft_hide_nav','field_635bd5e43527c'),(99251,39583,'fft_hide_header_call_to_action','0'),(99252,39583,'_fft_hide_header_call_to_action','field_635bd6723527d'),(99253,39583,'fft_page_sitemap','0'),(99254,39583,'_fft_page_sitemap','field_61af9b34e8181'),(99255,39583,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:10:\"link_stack\";i:3;s:18:\"testimonial_slider\";}'),(99256,39583,'_blocks','field_6176696113096'),(99257,39583,'blocks_2_acfe_flexible_toggle',''),(99258,39583,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(99259,39583,'blocks_2_acfe_flexible_layout_title','Link Stack'),(99260,39583,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(99261,39583,'blocks_2_options_theme','#ffffff'),(99262,39583,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(99263,39583,'blocks_2_options',''),(99264,39583,'_blocks_2_options','field_6177b758246ae'),(99265,39583,'blocks_2_link_stack_content_title',''),(99266,39583,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(99267,39583,'blocks_2_link_stack_content_heading','Discover our expertise'),(99268,39583,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(99269,39583,'blocks_2_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(99270,39583,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(99271,39583,'blocks_2_link_stack_content_actions',''),(99272,39583,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(99273,39583,'blocks_2_link_stack_content',''),(99274,39583,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(99275,39583,'blocks_2_link_stack_0_label','Personal Training'),(99276,39583,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(99277,39583,'blocks_2_link_stack_0_title','Discover Biomechanics in Personal Training'),(99278,39583,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(99279,39583,'blocks_2_link_stack_0_url','https://www.biomechanicseducation.com/Personaltraining'),(99280,39583,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(99281,39583,'blocks_2_link_stack_1_label','Pilates'),(99282,39583,'_blocks_2_link_stack_1_label','field_6177b80900d00'),(99283,39583,'blocks_2_link_stack_1_title','Discover Biomechanics in Pilates'),(99284,39583,'_blocks_2_link_stack_1_title','field_6177b80f00d01'),(99285,39583,'blocks_2_link_stack_1_url','https://www.biomechanicseducation.com/Pilates'),(99286,39583,'_blocks_2_link_stack_1_url','field_6177b82200d02'),(99287,39583,'blocks_2_link_stack','6'),(99288,39583,'_blocks_2_link_stack','field_6177b7f600cff'),(99289,39583,'blocks_2_link_stack_2_label','Sports Coaches'),(99290,39583,'_blocks_2_link_stack_2_label','field_6177b80900d00'),(99291,39583,'blocks_2_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(99292,39583,'_blocks_2_link_stack_2_title','field_6177b80f00d01'),(99293,39583,'blocks_2_link_stack_2_url','https://www.biomechanicseducation.com/sports-coaches'),(99294,39583,'_blocks_2_link_stack_2_url','field_6177b82200d02'),(99295,39583,'blocks_2_link_stack_3_label','SMT'),(99296,39583,'_blocks_2_link_stack_3_label','field_6177b80900d00'),(99297,39583,'blocks_2_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(99298,39583,'_blocks_2_link_stack_3_title','field_6177b80f00d01'),(99299,39583,'blocks_2_link_stack_3_url','https://www.biomechanicseducation.com/sports-massage-therapy'),(99300,39583,'_blocks_2_link_stack_3_url','field_6177b82200d02'),(99301,39583,'blocks_2_link_stack_4_label','Podiatrists'),(99302,39583,'_blocks_2_link_stack_4_label','field_6177b80900d00'),(99303,39583,'blocks_2_link_stack_4_title','Discover Biomechanics in Podiatry'),(99304,39583,'_blocks_2_link_stack_4_title','field_6177b80f00d01'),(99305,39583,'blocks_2_link_stack_4_url','https://www.biomechanicseducation.com/podiatrists'),(99306,39583,'_blocks_2_link_stack_4_url','field_6177b82200d02'),(99307,39583,'blocks_2_link_stack_5_label','Biomechanics Coach'),(99308,39583,'_blocks_2_link_stack_5_label','field_6177b80900d00'),(99309,39583,'blocks_2_link_stack_5_title','How to Become a Biomechanics Coach'),(99310,39583,'_blocks_2_link_stack_5_title','field_6177b80f00d01'),(99311,39583,'blocks_2_link_stack_5_url','https://www.biomechanicseducation.com/biomechanics-coach'),(99312,39583,'_blocks_2_link_stack_5_url','field_6177b82200d02'),(99313,39583,'blocks_3_acfe_flexible_toggle',''),(99314,39583,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(99315,39583,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(99316,39583,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(99317,39583,'blocks_3_testimonial_slider_content_title',''),(99318,39583,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(99319,39583,'blocks_3_testimonial_slider_content_heading','Testimonials'),(99320,39583,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(99321,39583,'blocks_3_testimonial_slider_content_text',''),(99322,39583,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(99323,39583,'blocks_3_testimonial_slider_content_actions',''),(99324,39583,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(99325,39583,'blocks_3_testimonial_slider_content',''),(99326,39583,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(99327,39583,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(99328,39583,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(99329,39583,'blocks_3_testimonial_slider_ambassador_bool','0'),(99330,39583,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(99331,39583,'_thumbnail_id',''),(99332,39583,'__thumbnail_id','field_617570855ddaf'),(99333,39583,'blocks_0_acfe_flexible_toggle',''),(99334,39583,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(99335,39583,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(99336,39583,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(99337,39583,'blocks_0_options_theme','#ffffff'),(99338,39583,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(99339,39583,'blocks_0_options_reverse','0'),(99340,39583,'_blocks_0_options_reverse','field_61768049bb8ac'),(99341,39583,'blocks_0_options',''),(99342,39583,'_blocks_0_options','field_617682517c334'),(99343,39583,'blocks_0_split_5050_image','39271'),(99344,39583,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(99345,39583,'blocks_0_split_5050_video',''),(99346,39583,'_blocks_0_split_5050_video','field_6239f3160848a'),(99347,39583,'blocks_0_split_5050_content_title',''),(99348,39583,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(99349,39583,'blocks_0_split_5050_content_heading','What\'s included in this guide ?'),(99350,39583,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(99351,39583,'blocks_0_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nWe believe that world-class training should be accessible to everyone no matter their financial circumstances. This is why we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(99352,39583,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(99353,39583,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(99354,39583,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(99355,39583,'blocks_0_split_5050_content_actions','1'),(99356,39583,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(99357,39583,'blocks_0_split_5050_content',''),(99358,39583,'_blocks_0_split_5050_content','field_61767afceb8ba'),(99359,39583,'blocks_1_acfe_flexible_toggle',''),(99360,39583,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(99361,39583,'blocks_1_acfe_flexible_layout_title','Form'),(99362,39583,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(99363,39583,'blocks_1_row_content_format','standard'),(99364,39583,'_blocks_1_row_content_format','field_6481ead962881'),(99365,39583,'blocks_1_row_content_title','Enquire Now'),(99366,39583,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(99367,39583,'blocks_1_row_content_heading','Course Information and Price Guide'),(99368,39583,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(99369,39583,'blocks_1_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*</li>\r\n 	<li>Receive exclusive offers</li>\r\n</ul>'),(99370,39583,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(99371,39583,'blocks_1_row_content_actions',''),(99372,39583,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(99373,39583,'blocks_1_row_content',''),(99374,39583,'_blocks_1_row_content','field_61a0f5f5b3db0'),(99375,39583,'blocks_1_row_form',''),(99376,39583,'_blocks_1_row_form','field_61a4ff2c0b08e'),(99377,39583,'blocks_1_row_form_button_label',''),(99378,39583,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(99529,39585,'_edit_lock','1739188229:17'),(99530,39585,'_edit_last','17'),(99531,38965,'hide_hero','0'),(99532,38965,'_hide_hero','field_66a2380fcda39'),(99535,761,'hide_hero','0'),(99536,761,'_hide_hero','field_66a2380fcda39'),(99537,761,'hero_title',''),(99538,761,'_hero_title','field_617571fe285e8'),(99539,761,'hero_text',''),(99540,761,'_hero_text','field_6175723c285e9'),(99541,761,'hero_actions',''),(99542,761,'_hero_actions','field_61757270285ea'),(99543,761,'hero_style','default'),(99544,761,'_hero_style','field_62051d9dc5324'),(99545,38316,'_wp_old_slug','core-training'),(99546,761,'__thumbnail_id','field_617570855ddaf'),(99547,761,'hero_image_pos_x','right'),(99548,761,'_hero_image_pos_x','field_62ec3d05390bb'),(99549,761,'hero_image_pos_y','top'),(99550,761,'_hero_image_pos_y','field_62ec3d05390bc'),(99551,761,'hero_image_pos',''),(99552,761,'_hero_image_pos','field_62ec3d05390ba'),(99553,761,'fft_hide_from_listings','0'),(99554,761,'_fft_hide_from_listings','field_61f1320446ab2'),(99555,761,'post_format',''),(99556,761,'_post_format','field_61756bfb51898'),(99557,761,'post_author',''),(99558,761,'_post_author','field_62ec389d22113'),(99559,761,'post_reviewer',''),(99560,761,'_post_reviewer','field_627140a2a9800'),(99561,761,'post_table_of_contents','0'),(99562,761,'_post_table_of_contents','field_65c503bc846a6'),(99563,761,'_yoast_wpseo_primary_category',''),(99564,761,'_yoast_wpseo_primary_blog-format',''),(99565,761,'_yoast_wpseo_content_score','30'),(99566,761,'_yoast_wpseo_estimated-reading-time-minutes','10'),(99567,39586,'contact_text',''),(99568,39586,'_contact_text','field_56ab78a159605'),(99569,39586,'contact_number',''),(99570,39586,'_contact_number','field_56ab78cc59606'),(99571,39586,'_thumbnail_id','38316'),(99572,39586,'__thumbnail_id','field_617570855ddaf'),(99573,39586,'hide_hero','0'),(99574,39586,'_hide_hero','field_66a2380fcda39'),(99575,39586,'hero_title',''),(99576,39586,'_hero_title','field_617571fe285e8'),(99577,39586,'hero_text',''),(99578,39586,'_hero_text','field_6175723c285e9'),(99579,39586,'hero_actions',''),(99580,39586,'_hero_actions','field_61757270285ea'),(99581,39586,'hero_style','default'),(99582,39586,'_hero_style','field_62051d9dc5324'),(99583,39586,'hero_image_pos_x','right'),(99584,39586,'_hero_image_pos_x','field_62ec3d05390bb'),(99585,39586,'hero_image_pos_y','top'),(99586,39586,'_hero_image_pos_y','field_62ec3d05390bc'),(99587,39586,'hero_image_pos',''),(99588,39586,'_hero_image_pos','field_62ec3d05390ba'),(99589,39586,'fft_hide_from_listings','0'),(99590,39586,'_fft_hide_from_listings','field_61f1320446ab2'),(99591,39586,'post_format',''),(99592,39586,'_post_format','field_61756bfb51898'),(99593,39586,'post_author',''),(99594,39586,'_post_author','field_62ec389d22113'),(99595,39586,'post_reviewer',''),(99596,39586,'_post_reviewer','field_627140a2a9800'),(99597,39586,'post_table_of_contents','0'),(99598,39586,'_post_table_of_contents','field_65c503bc846a6'),(99599,24544,'_edit_lock','1728474918:5'),(99600,39587,'hide_hero','0'),(99601,39587,'_hide_hero','field_66a2380fcda39'),(99602,39587,'hero_title',''),(99603,39587,'_hero_title','field_617571fe285e8'),(99604,39587,'hero_text',''),(99605,39587,'_hero_text','field_6175723c285e9'),(99606,39587,'hero_actions',''),(99607,39587,'_hero_actions','field_61757270285ea'),(99608,39587,'hero_style','default'),(99609,39587,'_hero_style','field_62051d9dc5324'),(99610,39587,'_thumbnail_id','24642'),(99611,39587,'__thumbnail_id','field_617570855ddaf'),(99612,39587,'hero_image_pos_x','right'),(99613,39587,'_hero_image_pos_x','field_62ec3d05390bb'),(99614,39587,'hero_image_pos_y','top'),(99615,39587,'_hero_image_pos_y','field_62ec3d05390bc'),(99616,39587,'hero_image_pos',''),(99617,39587,'_hero_image_pos','field_62ec3d05390ba'),(99618,39587,'fft_hide_from_listings','0'),(99619,39587,'_fft_hide_from_listings','field_61f1320446ab2'),(99620,39587,'post_format',''),(99621,39587,'_post_format','field_61756bfb51898'),(99622,39587,'post_author',''),(99623,39587,'_post_author','field_62ec389d22113'),(99624,39587,'post_reviewer',''),(99625,39587,'_post_reviewer','field_627140a2a9800'),(99626,39587,'post_table_of_contents','0'),(99627,39587,'_post_table_of_contents','field_65c503bc846a6'),(99628,24544,'_yoast_wpseo_content_score','30'),(99629,24544,'_yoast_wpseo_estimated-reading-time-minutes','7'),(99631,24544,'hide_hero','0'),(99632,24544,'_hide_hero','field_66a2380fcda39'),(99633,24544,'hero_title',''),(99634,24544,'_hero_title','field_617571fe285e8'),(99635,24544,'hero_text',''),(99636,24544,'_hero_text','field_6175723c285e9'),(99637,24544,'hero_actions',''),(99638,24544,'_hero_actions','field_61757270285ea'),(99639,24544,'hero_style','default'),(99640,24544,'_hero_style','field_62051d9dc5324'),(99641,24544,'__thumbnail_id','field_617570855ddaf'),(99642,24544,'hero_image_pos_x','right'),(99643,24544,'_hero_image_pos_x','field_62ec3d05390bb'),(99644,24544,'hero_image_pos_y','top'),(99645,24544,'_hero_image_pos_y','field_62ec3d05390bc'),(99646,24544,'hero_image_pos',''),(99647,24544,'_hero_image_pos','field_62ec3d05390ba'),(99648,24544,'fft_hide_from_listings','0'),(99649,24544,'_fft_hide_from_listings','field_61f1320446ab2'),(99650,24544,'post_format',''),(99651,24544,'_post_format','field_61756bfb51898'),(99652,24544,'post_author',''),(99653,24544,'_post_author','field_62ec389d22113'),(99654,24544,'post_reviewer',''),(99655,24544,'_post_reviewer','field_627140a2a9800'),(99656,24544,'post_table_of_contents','0'),(99657,24544,'_post_table_of_contents','field_65c503bc846a6'),(99658,24544,'_yoast_wpseo_primary_category',''),(99659,24544,'_yoast_wpseo_primary_blog-format',''),(99660,39588,'_thumbnail_id','24642'),(99661,39588,'__thumbnail_id','field_617570855ddaf'),(99662,39588,'hide_hero','0'),(99663,39588,'_hide_hero','field_66a2380fcda39'),(99664,39588,'hero_title',''),(99665,39588,'_hero_title','field_617571fe285e8'),(99666,39588,'hero_text',''),(99667,39588,'_hero_text','field_6175723c285e9'),(99668,39588,'hero_actions',''),(99669,39588,'_hero_actions','field_61757270285ea'),(99670,39588,'hero_style','default'),(99671,39588,'_hero_style','field_62051d9dc5324'),(99672,39588,'hero_image_pos_x','right'),(99673,39588,'_hero_image_pos_x','field_62ec3d05390bb'),(99674,39588,'hero_image_pos_y','top'),(99675,39588,'_hero_image_pos_y','field_62ec3d05390bc'),(99676,39588,'hero_image_pos',''),(99677,39588,'_hero_image_pos','field_62ec3d05390ba'),(99678,39588,'fft_hide_from_listings','0'),(99679,39588,'_fft_hide_from_listings','field_61f1320446ab2'),(99680,39588,'post_format',''),(99681,39588,'_post_format','field_61756bfb51898'),(99682,39588,'post_author',''),(99683,39588,'_post_author','field_62ec389d22113'),(99684,39588,'post_reviewer',''),(99685,39588,'_post_reviewer','field_627140a2a9800'),(99686,39588,'post_table_of_contents','0'),(99687,39588,'_post_table_of_contents','field_65c503bc846a6'),(99688,14386,'_edit_lock','1737389029:17'),(99689,14386,'_oembed_9b5c624ea405e00ff5a1946bafea0f9a','<iframe title=\"Hip Hitching\" width=\"1337\" height=\"752\" src=\"https://www.youtube.com/embed/UhuuS6h3R6Q?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(99690,14386,'_oembed_time_9b5c624ea405e00ff5a1946bafea0f9a','1725623435'),(99691,39589,'_wp_attached_file','2024/09/shutterstock_1207740871.jpg'),(99692,39589,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:343;s:4:\"file\";s:35:\"2024/09/shutterstock_1207740871.jpg\";s:8:\"filesize\";i:140149;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_1207740871-400x274.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:274;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22096;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_1207740871-400x343.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25438;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_1207740871-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22207;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_1207740871-300x343.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22008;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_1207740871-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23131;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_1207740871-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20194;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:71:\"Copyright (c) 2018 13_Phunkod/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:70:\"Young,Woman,With,Learning,Language,During,Online,Courses,Using,Netbook\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:417:\"college,education,project,office,laptop,research,professional,freelance,pen,connection,female,write,browsing,courses,using,read,studying,campus,satisfied,work,classroom,analysis,intelligence,planning,person,analyze,internet,doing,woman,student,financial,concept,paperwork,learning,content,computer,library,academy,hand,website,homework,web page,designer,technology,report,online,information,wireless,workplace,finance\";}}}'),(99693,39278,'_wp_old_date','2024-09-05'),(99694,39348,'_wp_old_date','2024-09-05'),(99695,39486,'_wp_old_date','2024-09-05'),(99696,39485,'_wp_old_date','2024-09-05'),(99697,39487,'_wp_old_date','2024-09-05'),(99698,39279,'_wp_old_date','2024-09-05'),(99699,39325,'_wp_old_date','2024-09-05'),(99700,39324,'_wp_old_date','2024-09-05'),(99701,39323,'_wp_old_date','2024-09-05'),(99702,39322,'_wp_old_date','2024-09-05'),(99703,39321,'_wp_old_date','2024-09-05'),(99704,39320,'_wp_old_date','2024-09-05'),(99705,39319,'_wp_old_date','2024-09-05'),(99706,39280,'_wp_old_date','2024-09-05'),(99707,39522,'_wp_old_date','2024-09-05'),(99708,39281,'_wp_old_date','2024-09-05'),(99709,39344,'_wp_old_date','2024-09-05'),(99710,39318,'_wp_old_date','2024-09-05'),(99713,14386,'_oembed_b3cf68f38fdd985418021e80c79fbe72','<iframe title=\"Hip Hitching\" width=\"954\" height=\"537\" src=\"https://www.youtube.com/embed/UhuuS6h3R6Q?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(99714,14386,'_oembed_time_b3cf68f38fdd985418021e80c79fbe72','1725625129'),(99715,39590,'_wp_attached_file','2024/09/headshot-1-1.jpg'),(99716,39590,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:446;s:6:\"height\";i:621;s:4:\"file\";s:24:\"2024/09/headshot-1-1.jpg\";s:8:\"filesize\";i:53909;s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"headshot-1-1-400x557.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:557;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27118;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:24:\"headshot-1-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21494;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:24:\"headshot-1-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15650;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:24:\"headshot-1-1-446x600.jpg\";s:5:\"width\";i:446;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36988;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:24:\"headshot-1-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16362;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:24:\"headshot-1-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17296;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:24:\"headshot-1-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13737;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:24:\"headshot-1-1-446x506.jpg\";s:5:\"width\";i:446;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33890;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(99717,39590,'_wp_attachment_image_alt','Morgan Hanness - Biomechanics Education'),(99905,39593,'_wp_attached_file','2024/09/1.png'),(99906,39593,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:13:\"2024/09/1.png\";s:8:\"filesize\";i:1110026;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"1-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:344194;}s:5:\"large\";a:5:{s:4:\"file\";s:14:\"1-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:522827;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"1-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100145;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"1-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:273835;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:14:\"1-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:749480;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:13:\"1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:184891;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:13:\"1-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:617252;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:15:\"1-1200x1080.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:858539;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:13:\"1-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122674;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:13:\"1-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:417415;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:14:\"1-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:637393;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:13:\"1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147762;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:13:\"1-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:497299;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:14:\"1-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:705052;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:13:\"1-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141105;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:13:\"1-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:474808;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:14:\"1-1200x900.png\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:727772;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:13:\"1-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100145;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:13:\"1-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:344496;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:14:\"1-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:522827;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(99907,39594,'_wp_attached_file','2024/09/2.png'),(99908,39594,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:13:\"2024/09/2.png\";s:8:\"filesize\";i:3092908;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"2-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:670981;}s:5:\"large\";a:5:{s:4:\"file\";s:14:\"2-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1164034;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"2-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139590;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"2-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:490438;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:14:\"2-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1830978;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:13:\"2-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:280733;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:13:\"2-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1286302;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:15:\"2-1200x1080.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2089424;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:13:\"2-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:170240;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:13:\"2-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:823290;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:14:\"2-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1405323;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:13:\"2-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:228010;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:13:\"2-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1039241;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:14:\"2-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1682473;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:13:\"2-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:197517;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:13:\"2-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:941200;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:14:\"2-1200x900.png\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1592150;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:13:\"2-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139590;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:13:\"2-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:671040;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:14:\"2-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1164034;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(99909,39595,'_wp_attached_file','2024/09/shutterstock_2492276115.jpg'),(99910,39595,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:334;s:4:\"file\";s:35:\"2024/09/shutterstock_2492276115.jpg\";s:8:\"filesize\";i:130704;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_2492276115-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26934;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2492276115-400x334.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32496;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2492276115-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26905;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2492276115-300x334.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:334;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29303;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2492276115-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28657;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2492276115-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25634;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:73:\"Copyright (c) 2024 Emre Akkoyun/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:68:\"Member,Benefits,Message,Written,On,Paper,Pieces,With,Red,Background.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:379:\"benefits,participation,symbol,belong,engagement,concept,sign,association,advertising,membership,subscription,network,offer,red,holding,society,involvement,paper,affiliation,copy space,advertisement,club,member,connection,join,text,up,group,hand,subscriber,business,top view,apply,subscribe,opportunity,team,community,conceptual,piece,organization,registration,enroll,renew,become\";}}}'),(99974,39597,'_wp_attached_file','2024/09/3.png'),(99975,39597,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:13:\"2024/09/3.png\";s:8:\"filesize\";i:2940868;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"3-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:639335;}s:5:\"large\";a:5:{s:4:\"file\";s:14:\"3-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1107474;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"3-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133529;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"3-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:468524;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:14:\"3-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1745115;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:13:\"3-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:271765;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:13:\"3-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1248105;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:15:\"3-1200x1080.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2009115;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:13:\"3-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161690;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:13:\"3-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:782530;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:14:\"3-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1338900;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:13:\"3-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:226981;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:13:\"3-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1031745;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:14:\"3-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1654812;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:13:\"3-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:186196;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:13:\"3-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:891414;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(99976,39593,'_wp_attachment_image_alt','Morgan Hanness - Biomechanics Education'),(99977,39598,'_wp_attached_file','2024/09/4.png'),(99978,39598,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:13:\"2024/09/4.png\";s:8:\"filesize\";i:1526496;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"4-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:435104;}s:5:\"large\";a:5:{s:4:\"file\";s:14:\"4-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:694451;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"4-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103579;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"4-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:331949;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:14:\"4-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1015838;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:13:\"4-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:229309;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:13:\"4-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:888839;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:15:\"4-1200x1080.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1259206;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:13:\"4-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:129965;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:13:\"4-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:539714;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:14:\"4-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:853219;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:13:\"4-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:195835;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:13:\"4-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:767882;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:14:\"4-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1107927;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:13:\"4-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153913;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:13:\"4-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:627029;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:14:\"4-1200x900.png\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:985493;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:13:\"4-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103579;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:13:\"4-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:434692;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:14:\"4-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:694451;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(99979,39594,'_wp_attachment_image_alt','Rachel Frances Thomson - Biomechanics Education'),(99980,39598,'_wp_attachment_image_alt','Kim Tomlin -Biomechanics Education'),(100048,39600,'hero_style','default'),(100049,39600,'_hero_style','field_62051d9dc5324'),(100050,39600,'hero_image_pos_x','right'),(100051,39600,'_hero_image_pos_x','field_62ec3d05390bb'),(100052,39600,'hero_image_pos_y','top'),(100053,39600,'_hero_image_pos_y','field_62ec3d05390bc'),(100054,39600,'hero_image_pos',''),(100055,39600,'_hero_image_pos','field_62ec3d05390ba'),(100056,39600,'hero_title','About Us'),(100057,39600,'_hero_title','field_617571fe285e8'),(100058,39600,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(100059,39600,'_hero_text','field_6175723c285e9'),(100060,39600,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(100061,39600,'_hero_actions_0_button','field_61757281285eb'),(100062,39600,'hero_actions','1'),(100063,39600,'_hero_actions','field_61757270285ea'),(100064,39600,'hero_icon',''),(100065,39600,'_hero_icon','field_61a6182199d03'),(100066,39600,'fft_hide_from_listings','0'),(100067,39600,'_fft_hide_from_listings','field_61f1320446ab2'),(100068,39600,'fft_page_format','default'),(100069,39600,'_fft_page_format','field_61ae213f1f218'),(100070,39600,'fft_hide_nav','0'),(100071,39600,'_fft_hide_nav','field_635bd5e43527c'),(100072,39600,'fft_hide_header_call_to_action','0'),(100073,39600,'_fft_hide_header_call_to_action','field_635bd6723527d'),(100074,39600,'fft_page_sitemap','0'),(100075,39600,'_fft_page_sitemap','field_61af9b34e8181'),(100076,39600,'blocks','a:7:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(100077,39600,'_blocks','field_6176696113096'),(100078,39600,'blocks_1_acfe_flexible_toggle',''),(100079,39600,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(100080,39600,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(100081,39600,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(100082,39600,'blocks_1_options_theme','#b61234'),(100083,39600,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(100084,39600,'blocks_1_options_reverse','0'),(100085,39600,'_blocks_1_options_reverse','field_61768049bb8ac'),(100086,39600,'blocks_1_options',''),(100087,39600,'_blocks_1_options','field_617682517c334'),(100088,39600,'blocks_1_split_5050_image','35276'),(100089,39600,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(100090,39600,'blocks_1_split_5050_video',''),(100091,39600,'_blocks_1_split_5050_video','field_6239f3160848a'),(100092,39600,'blocks_1_split_5050_content_title',''),(100093,39600,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(100094,39600,'blocks_1_split_5050_content_heading','What we do'),(100095,39600,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(100096,39600,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(100097,39600,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(100098,39600,'blocks_1_split_5050_content_actions',''),(100099,39600,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(100100,39600,'blocks_1_split_5050_content',''),(100101,39600,'_blocks_1_split_5050_content','field_61767afceb8ba'),(100102,39600,'blocks_2_acfe_flexible_toggle',''),(100103,39600,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(100104,39600,'blocks_2_acfe_flexible_layout_title','Video'),(100105,39600,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(100106,39600,'blocks_2_size','large'),(100107,39600,'_blocks_2_size','field_6487038f297c1'),(100108,39600,'blocks_2_row_content_title',''),(100109,39600,'_blocks_2_row_content_title','field_64870132a865d'),(100110,39600,'blocks_2_row_content_heading',''),(100111,39600,'_blocks_2_row_content_heading','field_64870142a865e'),(100112,39600,'blocks_2_row_content_text',''),(100113,39600,'_blocks_2_row_content_text','field_64870148a865f'),(100114,39600,'blocks_2_row_content',''),(100115,39600,'_blocks_2_row_content','field_6487008ba865c'),(100116,39600,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(100117,39600,'_blocks_2_video_src','field_6193c4a98ec07'),(100118,39600,'blocks_2_video_thumbnail','39175'),(100119,39600,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(100120,39600,'blocks_3_acfe_flexible_toggle','1'),(100121,39600,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(100122,39600,'blocks_3_acfe_flexible_layout_title','Cards'),(100123,39600,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(100124,39600,'blocks_3_options_theme','#ffffff'),(100125,39600,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(100126,39600,'blocks_3_options_format','carousel'),(100127,39600,'_blocks_3_options_format','field_617a7b15245b5'),(100128,39600,'blocks_3_options_style','default'),(100129,39600,'_blocks_3_options_style','field_6278ffb63484a'),(100130,39600,'blocks_3_options_cards_current_listing','0'),(100131,39600,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(100132,39600,'blocks_3_options_cards_content','custom'),(100133,39600,'_blocks_3_options_cards_content','field_617aba6122688'),(100134,39600,'blocks_3_options',''),(100135,39600,'_blocks_3_options','field_617a7b15245b3'),(100136,39600,'blocks_3_cards_custom_0_image','39504'),(100137,39600,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(100138,39600,'blocks_3_cards_custom_0_title','Our Partners'),(100139,39600,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(100140,39600,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(100141,39600,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(100142,39600,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(100143,39600,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(100144,39600,'blocks_3_cards_custom','1'),(100145,39600,'_blocks_3_cards_custom','field_6194cbf84d386'),(100146,39600,'_thumbnail_id','39186'),(100147,39600,'__thumbnail_id','field_617570855ddaf'),(100148,39600,'blocks_0_acfe_flexible_toggle',''),(100149,39600,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(100150,39600,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(100151,39600,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(100152,39600,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(100153,39600,'_blocks_0_content','field_6193c9b5eac84'),(100154,39600,'hide_hero','0'),(100155,39600,'_hide_hero','field_66a2380fcda39'),(100156,39600,'blocks_3_cards_row_content_title',''),(100157,39600,'_blocks_3_cards_row_content_title','field_6194fc1bc99fd'),(100158,39600,'blocks_3_cards_row_content_heading',''),(100159,39600,'_blocks_3_cards_row_content_heading','field_6194fc1bc99fe'),(100160,39600,'blocks_3_cards_row_content_text',''),(100161,39600,'_blocks_3_cards_row_content_text','field_6194fc1bc99ff'),(100162,39600,'blocks_3_cards_row_content_actions',''),(100163,39600,'_blocks_3_cards_row_content_actions','field_6194fc1bc9a00'),(100164,39600,'blocks_3_cards_row_content',''),(100165,39600,'_blocks_3_cards_row_content','field_6194fc1bc99fc'),(100166,39600,'blocks_4_acfe_flexible_toggle',''),(100167,39600,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(100168,39600,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(100169,39600,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(100170,39600,'blocks_4_options_theme','#ffffff'),(100171,39600,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(100172,39600,'blocks_4_options_reverse','0'),(100173,39600,'_blocks_4_options_reverse','field_61768049bb8ac'),(100174,39600,'blocks_4_options',''),(100175,39600,'_blocks_4_options','field_617682517c334'),(100176,39600,'blocks_4_split_5050_image','39501'),(100177,39600,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(100178,39600,'blocks_4_split_5050_video',''),(100179,39600,'_blocks_4_split_5050_video','field_6239f3160848a'),(100180,39600,'blocks_4_split_5050_content_title',''),(100181,39600,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(100182,39600,'blocks_4_split_5050_content_heading','Our Partners'),(100183,39600,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(100184,39600,'blocks_4_split_5050_content_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(100185,39600,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(100186,39600,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"View our Partner Page\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(100187,39600,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(100188,39600,'blocks_4_split_5050_content_actions','1'),(100189,39600,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(100190,39600,'blocks_4_split_5050_content',''),(100191,39600,'_blocks_4_split_5050_content','field_61767afceb8ba'),(100192,39600,'blocks_5_acfe_flexible_toggle',''),(100193,39600,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(100194,39600,'blocks_5_acfe_flexible_layout_title','Text Block'),(100195,39600,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(100196,39600,'blocks_5_options_theme','#ffffff'),(100197,39600,'_blocks_5_options_theme','field_6176830e2ad17'),(100198,39600,'blocks_5_options',''),(100199,39600,'_blocks_5_options','field_6176830e2ad16'),(100200,39600,'blocks_5_text_block_heading','Our Team'),(100201,39600,'_blocks_5_text_block_heading','field_617669d413097'),(100202,39600,'blocks_5_text_block_content',''),(100203,39600,'_blocks_5_text_block_content','field_617669ec13098'),(100204,39600,'blocks_6_acfe_flexible_toggle',''),(100205,39600,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(100206,39600,'blocks_6_acfe_flexible_layout_title','Cards'),(100207,39600,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(100208,39600,'blocks_6_options_theme','#ffffff'),(100209,39600,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(100210,39600,'blocks_6_options_format','carousel'),(100211,39600,'_blocks_6_options_format','field_617a7b15245b5'),(100212,39600,'blocks_6_options_style','default'),(100213,39600,'_blocks_6_options_style','field_6278ffb63484a'),(100214,39600,'blocks_6_options_cards_current_listing','0'),(100215,39600,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(100216,39600,'blocks_6_options_cards_content','custom'),(100217,39600,'_blocks_6_options_cards_content','field_617aba6122688'),(100218,39600,'blocks_6_options',''),(100219,39600,'_blocks_6_options','field_617a7b15245b3'),(100220,39600,'blocks_6_cards_custom_0_image','39353'),(100221,39600,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(100222,39600,'blocks_6_cards_custom_0_title','Rachel Frances Thomson - Founder'),(100223,39600,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(100224,39600,'blocks_6_cards_custom_0_text','Rachel’s professional career in the health & fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe & Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor & IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd & so frequently lectures, presents & teaches at events both UK & Internationally about the benefits of the intrinsic biomechanics\' methods.'),(100225,39600,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(100226,39600,'blocks_6_cards_custom_0_link',''),(100227,39600,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(100228,39600,'blocks_6_cards_custom_1_image','39366'),(100229,39600,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(100230,39600,'blocks_6_cards_custom_1_title','Tom Waldron - Master Trainer'),(100231,39600,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(100232,39600,'blocks_6_cards_custom_1_text','Tom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance & freedom of movement are described by Tom as ‘incredible!’  He has been a Biomechanics Coach™ since Mar 2016 & it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts & it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(100233,39600,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(100234,39600,'blocks_6_cards_custom_1_link',''),(100235,39600,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(100236,39600,'blocks_6_cards_custom_2_image','39598'),(100237,39600,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(100238,39600,'blocks_6_cards_custom_2_title','Kim Tomlin'),(100239,39600,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(100240,39600,'blocks_6_cards_custom_2_text','Kim is the owner of Primal Flow, a Personal Trainer, Biomechanics Coach and Master Trainer. Kim has been passionate about exploring movement ever since becoming a Primal Flow Instructor in 2012, now combining her skills to help people to improve their movement quality and capacity, whilst enjoying the freedom of their own individual movement capabilities. As well as teaching the Biomechanics Coaching Diploma (for Biomechanics Education), Kim is a Training Provider Partner with CIMSPA and delivers her own Train the Trainer courses, including the Primal Flow Instructor Course. '),(100241,39600,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(100242,39600,'blocks_6_cards_custom_2_link',''),(100243,39600,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(100244,39600,'blocks_6_cards_custom_3_image',''),(100245,39600,'_blocks_6_cards_custom_3_image','field_6194cc284d387'),(100246,39600,'blocks_6_cards_custom_3_title','Fiona Jones'),(100247,39600,'_blocks_6_cards_custom_3_title','field_6194cc454d388'),(100248,39600,'blocks_6_cards_custom_3_text','Fiona began her career in the fitness industry in 2006 as a Gym and Group Exercise Instructor and Personal Trainer. In 2010, she transitioned to assessing Fitness Apprenticeships, expanding her expertise in the field. After experiencing the transformative effects of a coaching programme firsthand, Fiona pursued a Low Back Specialist Biomechanics Diploma and a qualification in Remedial Massage. Since then, she has successfully combined her role as an assessor with maintaining her own client base in the UK and overseas, including on Ascension Island and in the United States. \r\n\r\nWhile abroad, Fiona joined the team as a course advisor and became an integral part of the support team. Upon returning to the UK during the 2020 lockdown, she continued her work, assessing for Biomechanics Education both inside and outside the classroom. Fiona is passionate about guiding people through their journeys of discovery, helping them achieve their fitness and health goals with confidence and understanding. '),(100249,39600,'_blocks_6_cards_custom_3_text','field_6194cc4a4d389'),(100250,39600,'blocks_6_cards_custom_3_link',''),(100251,39600,'_blocks_6_cards_custom_3_link','field_6194cc534d38a'),(100252,39600,'blocks_6_cards_custom_4_image','39593'),(100253,39600,'_blocks_6_cards_custom_4_image','field_6194cc284d387'),(100254,39600,'blocks_6_cards_custom_4_title','Morgan Hanness'),(100255,39600,'_blocks_6_cards_custom_4_title','field_6194cc454d388'),(100256,39600,'blocks_6_cards_custom_4_text','Morgan Hanness has a background in personal training, nutrition coaching, and integrative nutrition health coaching, and has always been passionate about helping people achieve their goals. At Biomechanics Education, Morgan also helps others develop their careers in the health and fitness industry, enabling them to assist even more people. Living with Hypermobility Syndrome, Morgan deeply understands the value of proper movement, which aligns perfectly with Biomechanics Education’s core values. Morgan is passionate about sports, especially snowboarding, surfing, rock climbing, and other outdoor activities, and is grateful for pain-free movement. '),(100257,39600,'_blocks_6_cards_custom_4_text','field_6194cc4a4d389'),(100258,39600,'blocks_6_cards_custom_4_link',''),(100259,39600,'_blocks_6_cards_custom_4_link','field_6194cc534d38a'),(100260,39600,'blocks_6_cards_custom','5'),(100261,39600,'_blocks_6_cards_custom','field_6194cbf84d386'),(101030,39606,'hero_style','default'),(101031,39606,'_hero_style','field_62051d9dc5324'),(101032,39606,'hero_image_pos_x','right'),(101033,39606,'_hero_image_pos_x','field_62ec3d05390bb'),(101034,39606,'hero_image_pos_y','top'),(101035,39606,'_hero_image_pos_y','field_62ec3d05390bc'),(101036,39606,'hero_image_pos',''),(101037,39606,'_hero_image_pos','field_62ec3d05390ba'),(101038,39606,'hero_title','About Us'),(101039,39606,'_hero_title','field_617571fe285e8'),(101040,39606,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(101041,39606,'_hero_text','field_6175723c285e9'),(101042,39606,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(101043,39606,'_hero_actions_0_button','field_61757281285eb'),(101044,39606,'hero_actions','1'),(101045,39606,'_hero_actions','field_61757270285ea'),(101046,39606,'hero_icon',''),(101047,39606,'_hero_icon','field_61a6182199d03'),(101048,39606,'fft_hide_from_listings','0'),(101049,39606,'_fft_hide_from_listings','field_61f1320446ab2'),(101050,39606,'fft_page_format','default'),(101051,39606,'_fft_page_format','field_61ae213f1f218'),(101052,39606,'fft_hide_nav','0'),(101053,39606,'_fft_hide_nav','field_635bd5e43527c'),(101054,39606,'fft_hide_header_call_to_action','0'),(101055,39606,'_fft_hide_header_call_to_action','field_635bd6723527d'),(101056,39606,'fft_page_sitemap','0'),(101057,39606,'_fft_page_sitemap','field_61af9b34e8181'),(101058,39606,'blocks','a:7:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(101059,39606,'_blocks','field_6176696113096'),(101060,39606,'blocks_1_acfe_flexible_toggle',''),(101061,39606,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(101062,39606,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(101063,39606,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(101064,39606,'blocks_1_options_theme','#b61234'),(101065,39606,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(101066,39606,'blocks_1_options_reverse','0'),(101067,39606,'_blocks_1_options_reverse','field_61768049bb8ac'),(101068,39606,'blocks_1_options',''),(101069,39606,'_blocks_1_options','field_617682517c334'),(101070,39606,'blocks_1_split_5050_image','35276'),(101071,39606,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(101072,39606,'blocks_1_split_5050_video',''),(101073,39606,'_blocks_1_split_5050_video','field_6239f3160848a'),(101074,39606,'blocks_1_split_5050_content_title',''),(101075,39606,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(101076,39606,'blocks_1_split_5050_content_heading','What we do'),(101077,39606,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(101078,39606,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(101079,39606,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(101080,39606,'blocks_1_split_5050_content_actions',''),(101081,39606,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(101082,39606,'blocks_1_split_5050_content',''),(101083,39606,'_blocks_1_split_5050_content','field_61767afceb8ba'),(101084,39606,'blocks_2_acfe_flexible_toggle',''),(101085,39606,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(101086,39606,'blocks_2_acfe_flexible_layout_title','Video'),(101087,39606,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(101088,39606,'blocks_2_size','large'),(101089,39606,'_blocks_2_size','field_6487038f297c1'),(101090,39606,'blocks_2_row_content_title',''),(101091,39606,'_blocks_2_row_content_title','field_64870132a865d'),(101092,39606,'blocks_2_row_content_heading',''),(101093,39606,'_blocks_2_row_content_heading','field_64870142a865e'),(101094,39606,'blocks_2_row_content_text',''),(101095,39606,'_blocks_2_row_content_text','field_64870148a865f'),(101096,39606,'blocks_2_row_content',''),(101097,39606,'_blocks_2_row_content','field_6487008ba865c'),(101098,39606,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(101099,39606,'_blocks_2_video_src','field_6193c4a98ec07'),(101100,39606,'blocks_2_video_thumbnail','39175'),(101101,39606,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(101102,39606,'blocks_3_acfe_flexible_toggle','1'),(101103,39606,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(101104,39606,'blocks_3_acfe_flexible_layout_title','Cards'),(101105,39606,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(101106,39606,'blocks_3_options_theme','#ffffff'),(101107,39606,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(101108,39606,'blocks_3_options_format','carousel'),(101109,39606,'_blocks_3_options_format','field_617a7b15245b5'),(101110,39606,'blocks_3_options_style','default'),(101111,39606,'_blocks_3_options_style','field_6278ffb63484a'),(101112,39606,'blocks_3_options_cards_current_listing','0'),(101113,39606,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(101114,39606,'blocks_3_options_cards_content','custom'),(101115,39606,'_blocks_3_options_cards_content','field_617aba6122688'),(101116,39606,'blocks_3_options',''),(101117,39606,'_blocks_3_options','field_617a7b15245b3'),(101118,39606,'blocks_3_cards_custom_0_image','39504'),(101119,39606,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(101120,39606,'blocks_3_cards_custom_0_title','Our Partners'),(101121,39606,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(101122,39606,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(101123,39606,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(101124,39606,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(101125,39606,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(101126,39606,'blocks_3_cards_custom','1'),(101127,39606,'_blocks_3_cards_custom','field_6194cbf84d386'),(101128,39606,'_thumbnail_id','39186'),(101129,39606,'__thumbnail_id','field_617570855ddaf'),(101130,39606,'blocks_0_acfe_flexible_toggle',''),(101131,39606,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(101132,39606,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(101133,39606,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(101134,39606,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in biomechanics education.</p>'),(101135,39606,'_blocks_0_content','field_6193c9b5eac84'),(101136,39606,'hide_hero','0'),(101137,39606,'_hide_hero','field_66a2380fcda39'),(101138,39606,'blocks_3_cards_row_content_title',''),(101139,39606,'_blocks_3_cards_row_content_title','field_6194fc1bc99fd'),(101140,39606,'blocks_3_cards_row_content_heading',''),(101141,39606,'_blocks_3_cards_row_content_heading','field_6194fc1bc99fe'),(101142,39606,'blocks_3_cards_row_content_text',''),(101143,39606,'_blocks_3_cards_row_content_text','field_6194fc1bc99ff'),(101144,39606,'blocks_3_cards_row_content_actions',''),(101145,39606,'_blocks_3_cards_row_content_actions','field_6194fc1bc9a00'),(101146,39606,'blocks_3_cards_row_content',''),(101147,39606,'_blocks_3_cards_row_content','field_6194fc1bc99fc'),(101148,39606,'blocks_4_acfe_flexible_toggle',''),(101149,39606,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(101150,39606,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(101151,39606,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(101152,39606,'blocks_4_options_theme','#ffffff'),(101153,39606,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(101154,39606,'blocks_4_options_reverse','0'),(101155,39606,'_blocks_4_options_reverse','field_61768049bb8ac'),(101156,39606,'blocks_4_options',''),(101157,39606,'_blocks_4_options','field_617682517c334'),(101158,39606,'blocks_4_split_5050_image','39501'),(101159,39606,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(101160,39606,'blocks_4_split_5050_video',''),(101161,39606,'_blocks_4_split_5050_video','field_6239f3160848a'),(101162,39606,'blocks_4_split_5050_content_title',''),(101163,39606,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(101164,39606,'blocks_4_split_5050_content_heading','Our Partners'),(101165,39606,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(101166,39606,'blocks_4_split_5050_content_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(101167,39606,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(101168,39606,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"View our Partner Page\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(101169,39606,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(101170,39606,'blocks_4_split_5050_content_actions','1'),(101171,39606,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(101172,39606,'blocks_4_split_5050_content',''),(101173,39606,'_blocks_4_split_5050_content','field_61767afceb8ba'),(101174,39606,'blocks_5_acfe_flexible_toggle',''),(101175,39606,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(101176,39606,'blocks_5_acfe_flexible_layout_title','Text Block'),(101177,39606,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(101178,39606,'blocks_5_options_theme','#ffffff'),(101179,39606,'_blocks_5_options_theme','field_6176830e2ad17'),(101180,39606,'blocks_5_options',''),(101181,39606,'_blocks_5_options','field_6176830e2ad16'),(101182,39606,'blocks_5_text_block_heading','Our Team'),(101183,39606,'_blocks_5_text_block_heading','field_617669d413097'),(101184,39606,'blocks_5_text_block_content',''),(101185,39606,'_blocks_5_text_block_content','field_617669ec13098'),(101186,39606,'blocks_6_acfe_flexible_toggle',''),(101187,39606,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(101188,39606,'blocks_6_acfe_flexible_layout_title','Cards'),(101189,39606,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(101190,39606,'blocks_6_options_theme','#ffffff'),(101191,39606,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(101192,39606,'blocks_6_options_format','carousel'),(101193,39606,'_blocks_6_options_format','field_617a7b15245b5'),(101194,39606,'blocks_6_options_style','default'),(101195,39606,'_blocks_6_options_style','field_6278ffb63484a'),(101196,39606,'blocks_6_options_cards_current_listing','0'),(101197,39606,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(101198,39606,'blocks_6_options_cards_content','custom'),(101199,39606,'_blocks_6_options_cards_content','field_617aba6122688'),(101200,39606,'blocks_6_options',''),(101201,39606,'_blocks_6_options','field_617a7b15245b3'),(101202,39606,'blocks_6_cards_custom_0_image','39353'),(101203,39606,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(101204,39606,'blocks_6_cards_custom_0_title','Rachel Frances Thomson - Founder'),(101205,39606,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(101206,39606,'blocks_6_cards_custom_0_text','Rachel’s professional career in the health & fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe & Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor & IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd & so frequently lectures, presents & teaches at events both UK & Internationally about the benefits of the intrinsic biomechanics\' methods.'),(101207,39606,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(101208,39606,'blocks_6_cards_custom_0_link',''),(101209,39606,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(101210,39606,'blocks_6_cards_custom_1_image','39366'),(101211,39606,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(101212,39606,'blocks_6_cards_custom_1_title','Tom Waldron - Master Trainer'),(101213,39606,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(101214,39606,'blocks_6_cards_custom_1_text','Tom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance & freedom of movement are described by Tom as ‘incredible!’  He has been a Biomechanics Coach™ since Mar 2016 & it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts & it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(101215,39606,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(101216,39606,'blocks_6_cards_custom_1_link',''),(101217,39606,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(101218,39606,'blocks_6_cards_custom_2_image','39598'),(101219,39606,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(101220,39606,'blocks_6_cards_custom_2_title','Kim Tomlin - Master Trainer'),(101221,39606,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(101222,39606,'blocks_6_cards_custom_2_text','Kim is the owner of Primal Flow, a Personal Trainer, Biomechanics Coach and Master Trainer. Kim has been passionate about exploring movement ever since becoming a Primal Flow Instructor in 2012, now combining her skills to help people to improve their movement quality and capacity, whilst enjoying the freedom of their own individual movement capabilities. As well as teaching the Biomechanics Coaching Diploma (for Biomechanics Education), Kim is a Training Provider Partner with CIMSPA and delivers her own Train the Trainer courses, including the Primal Flow Instructor Course. '),(101223,39606,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(101224,39606,'blocks_6_cards_custom_2_link',''),(101225,39606,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(101226,39606,'blocks_6_cards_custom_3_image','39593'),(101227,39606,'_blocks_6_cards_custom_3_image','field_6194cc284d387'),(101228,39606,'blocks_6_cards_custom_3_title','Morgan Hanness - Sales Lead'),(101229,39606,'_blocks_6_cards_custom_3_title','field_6194cc454d388'),(101230,39606,'blocks_6_cards_custom_3_text','Morgan Hanness has a background in personal training, nutrition coaching, and integrative nutrition health coaching, and has always been passionate about helping people achieve their goals. At Biomechanics Education, Morgan also helps others develop their careers in the health and fitness industry, enabling them to assist even more people. Living with Hypermobility Syndrome, Morgan deeply understands the value of proper movement, which aligns perfectly with Biomechanics Education’s core values. Morgan is passionate about sports, especially snowboarding, surfing, rock climbing, and other outdoor activities, and is grateful for pain-free movement. '),(101231,39606,'_blocks_6_cards_custom_3_text','field_6194cc4a4d389'),(101232,39606,'blocks_6_cards_custom_3_link',''),(101233,39606,'_blocks_6_cards_custom_3_link','field_6194cc534d38a'),(101234,39606,'blocks_6_cards_custom_4_image',''),(101235,39606,'_blocks_6_cards_custom_4_image','field_6194cc284d387'),(101236,39606,'blocks_6_cards_custom_4_title','Fiona Jones - Assessor '),(101237,39606,'_blocks_6_cards_custom_4_title','field_6194cc454d388'),(101238,39606,'blocks_6_cards_custom_4_text','Fiona began her career in the fitness industry in 2006 as a Gym and Group Exercise Instructor and Personal Trainer. In 2010, she transitioned to assessing Fitness Apprenticeships, expanding her expertise in the field. After experiencing the transformative effects of a coaching programme firsthand, Fiona pursued a Low Back Specialist Biomechanics Diploma and a qualification in Remedial Massage. Since then, she has successfully combined her role as an assessor with maintaining her own client base in the UK and overseas, including on Ascension Island and in the United States. \r\n\r\nWhile abroad, Fiona joined the team as a course advisor and became an integral part of the support team. Upon returning to the UK during the 2020 lockdown, she continued her work, assessing for Biomechanics Education both inside and outside the classroom. Fiona is passionate about guiding people through their journeys of discovery, helping them achieve their fitness and health goals with confidence and understanding. '),(101239,39606,'_blocks_6_cards_custom_4_text','field_6194cc4a4d389'),(101240,39606,'blocks_6_cards_custom_4_link',''),(101241,39606,'_blocks_6_cards_custom_4_link','field_6194cc534d38a'),(101242,39606,'blocks_6_cards_custom','5'),(101243,39606,'_blocks_6_cards_custom','field_6194cbf84d386'),(101263,39608,'hero_style','default'),(101264,39608,'_hero_style','field_62051d9dc5324'),(101265,39608,'hero_image_pos_x','right'),(101266,39608,'_hero_image_pos_x','field_62ec3d05390bb'),(101267,39608,'hero_image_pos_y','top'),(101268,39608,'_hero_image_pos_y','field_62ec3d05390bc'),(101269,39608,'hero_image_pos',''),(101270,39608,'_hero_image_pos','field_62ec3d05390ba'),(101271,39608,'hero_title','Biomechanics Education'),(101272,39608,'_hero_title','field_617571fe285e8'),(101273,39608,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, Master Time, and expand opportunities.'),(101274,39608,'_hero_text','field_6175723c285e9'),(101275,39608,'hero_actions','1'),(101276,39608,'_hero_actions','field_61757270285ea'),(101277,39608,'hero_icon',''),(101278,39608,'_hero_icon','field_61a6182199d03'),(101279,39608,'fft_hide_from_listings','0'),(101280,39608,'_fft_hide_from_listings','field_61f1320446ab2'),(101281,39608,'fft_page_format','default'),(101282,39608,'_fft_page_format','field_61ae213f1f218'),(101283,39608,'fft_hide_nav','0'),(101284,39608,'_fft_hide_nav','field_635bd5e43527c'),(101285,39608,'fft_hide_header_call_to_action','0'),(101286,39608,'_fft_hide_header_call_to_action','field_635bd6723527d'),(101287,39608,'fft_page_sitemap','0'),(101288,39608,'_fft_page_sitemap','field_61af9b34e8181'),(101289,39608,'blocks','a:8:{i:0;s:5:\"video\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:8:\"template\";i:7;s:18:\"testimonial_slider\";}'),(101290,39608,'_blocks','field_6176696113096'),(101291,39608,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(101292,39608,'_hero_actions_0_button','field_61757281285eb'),(101293,39608,'_thumbnail_id','38951'),(101294,39608,'__thumbnail_id','field_617570855ddaf'),(101295,39608,'hide_hero','0'),(101296,39608,'_hide_hero','field_66a2380fcda39'),(101297,39608,'blocks_0_acfe_flexible_toggle',''),(101298,39608,'_blocks_0_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(101299,39608,'blocks_0_acfe_flexible_layout_title','Video'),(101300,39608,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(101301,39608,'blocks_0_size','large'),(101302,39608,'_blocks_0_size','field_6487038f297c1'),(101303,39608,'blocks_0_row_content_title',''),(101304,39608,'_blocks_0_row_content_title','field_64870132a865d'),(101305,39608,'blocks_0_row_content_heading','Welcome to Biomechanics Education'),(101306,39608,'_blocks_0_row_content_heading','field_64870142a865e'),(101307,39608,'blocks_0_row_content_text',''),(101308,39608,'_blocks_0_row_content_text','field_64870148a865f'),(101309,39608,'blocks_0_row_content',''),(101310,39608,'_blocks_0_row_content','field_6487008ba865c'),(101311,39608,'blocks_0_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(101312,39608,'_blocks_0_video_src','field_6193c4a98ec07'),(101313,39608,'blocks_0_video_thumbnail','39175'),(101314,39608,'_blocks_0_video_thumbnail','field_6193c4a08ec06'),(101315,39608,'blocks_1_acfe_flexible_toggle',''),(101316,39608,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(101317,39608,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(101318,39608,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(101319,39608,'blocks_1_options_theme','#f5f5f5'),(101320,39608,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(101321,39608,'blocks_1_options_reverse','0'),(101322,39608,'_blocks_1_options_reverse','field_61768049bb8ac'),(101323,39608,'blocks_1_options',''),(101324,39608,'_blocks_1_options','field_617682517c334'),(101325,39608,'blocks_1_split_5050_image','38950'),(101326,39608,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(101327,39608,'blocks_1_split_5050_video',''),(101328,39608,'_blocks_1_split_5050_video','field_6239f3160848a'),(101329,39608,'blocks_1_split_5050_content_title',''),(101330,39608,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(101331,39608,'blocks_1_split_5050_content_heading','What is Biomechanics Education?'),(101332,39608,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(101333,39608,'blocks_1_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(101334,39608,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(101335,39608,'blocks_1_split_5050_content_actions',''),(101336,39608,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(101337,39608,'blocks_1_split_5050_content',''),(101338,39608,'_blocks_1_split_5050_content','field_61767afceb8ba'),(101339,39608,'blocks_2_acfe_flexible_toggle',''),(101340,39608,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(101341,39608,'blocks_2_acfe_flexible_layout_title','Template'),(101342,39608,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(101343,39608,'blocks_2_template','39087'),(101344,39608,'_blocks_2_template','field_617bdd570fe01'),(101345,39608,'blocks_3_acfe_flexible_toggle',''),(101346,39608,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(101347,39608,'blocks_3_acfe_flexible_layout_title','Text Block'),(101348,39608,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(101349,39608,'blocks_3_options_theme','#ffffff'),(101350,39608,'_blocks_3_options_theme','field_6176830e2ad17'),(101351,39608,'blocks_3_options',''),(101352,39608,'_blocks_3_options','field_6176830e2ad16'),(101353,39608,'blocks_3_text_block_heading','Learn About Biomechanics in Different Sectors'),(101354,39608,'_blocks_3_text_block_heading','field_617669d413097'),(101355,39608,'blocks_3_text_block_content',''),(101356,39608,'_blocks_3_text_block_content','field_617669ec13098'),(101357,39608,'blocks_4_acfe_flexible_toggle',''),(101358,39608,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(101359,39608,'blocks_4_acfe_flexible_layout_title','Cards'),(101360,39608,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(101361,39608,'blocks_4_options_theme','#ffffff'),(101362,39608,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(101363,39608,'blocks_4_options_format','carousel'),(101364,39608,'_blocks_4_options_format','field_617a7b15245b5'),(101365,39608,'blocks_4_options_style','default'),(101366,39608,'_blocks_4_options_style','field_6278ffb63484a'),(101367,39608,'blocks_4_options_cards_current_listing','0'),(101368,39608,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(101369,39608,'blocks_4_options_cards_content','custom'),(101370,39608,'_blocks_4_options_cards_content','field_617aba6122688'),(101371,39608,'blocks_4_options',''),(101372,39608,'_blocks_4_options','field_617a7b15245b3'),(101373,39608,'blocks_4_cards_custom_0_image','39215'),(101374,39608,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(101375,39608,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(101376,39608,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(101377,39608,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(101378,39608,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(101379,39608,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(101380,39608,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(101381,39608,'blocks_4_cards_custom_1_image','39243'),(101382,39608,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(101383,39608,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(101384,39608,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(101385,39608,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(101386,39608,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(101387,39608,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(101388,39608,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(101389,39608,'blocks_4_cards_custom_2_image','39247'),(101390,39608,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(101391,39608,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(101392,39608,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(101393,39608,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(101394,39608,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(101395,39608,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(101396,39608,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(101397,39608,'blocks_4_cards_custom_3_image','39256'),(101398,39608,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(101399,39608,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(101400,39608,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(101401,39608,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(101402,39608,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(101403,39608,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(101404,39608,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(101405,39608,'blocks_4_cards_custom_4_image','39251'),(101406,39608,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(101407,39608,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(101408,39608,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(101409,39608,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(101410,39608,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(101411,39608,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(101412,39608,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(101413,39608,'blocks_4_cards_custom_5_image','39240'),(101414,39608,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(101415,39608,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(101416,39608,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(101417,39608,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(101418,39608,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(101419,39608,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(101420,39608,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(101421,39608,'blocks_4_cards_custom_6_image','39454'),(101422,39608,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(101423,39608,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(101424,39608,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(101425,39608,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(101426,39608,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(101427,39608,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(101428,39608,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(101429,39608,'blocks_4_cards_custom','7'),(101430,39608,'_blocks_4_cards_custom','field_6194cbf84d386'),(101431,39608,'blocks_5_acfe_flexible_toggle',''),(101432,39608,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(101433,39608,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(101434,39608,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(101435,39608,'blocks_5_options_theme','#f5f5f5'),(101436,39608,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(101437,39608,'blocks_5_options_reverse','1'),(101438,39608,'_blocks_5_options_reverse','field_61768049bb8ac'),(101439,39608,'blocks_5_options',''),(101440,39608,'_blocks_5_options','field_617682517c334'),(101441,39608,'blocks_5_split_5050_image','38960'),(101442,39608,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(101443,39608,'blocks_5_split_5050_video',''),(101444,39608,'_blocks_5_split_5050_video','field_6239f3160848a'),(101445,39608,'blocks_5_split_5050_content_title','Working In Partnership'),(101446,39608,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(101447,39608,'blocks_5_split_5050_content_heading','Biomechanics Education and Future Fit'),(101448,39608,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(101449,39608,'blocks_5_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(101450,39608,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(101451,39608,'blocks_5_split_5050_content_actions',''),(101452,39608,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(101453,39608,'blocks_5_split_5050_content',''),(101454,39608,'_blocks_5_split_5050_content','field_61767afceb8ba'),(101455,39608,'blocks_6_acfe_flexible_toggle',''),(101456,39608,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(101457,39608,'blocks_6_acfe_flexible_layout_title','Template'),(101458,39608,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(101459,39608,'blocks_6_template','39207'),(101460,39608,'_blocks_6_template','field_617bdd570fe01'),(101461,39608,'blocks_7_acfe_flexible_toggle',''),(101462,39608,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(101463,39608,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(101464,39608,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(101465,39608,'blocks_7_testimonial_slider_content_title',''),(101466,39608,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(101467,39608,'blocks_7_testimonial_slider_content_heading','Testimonials'),(101468,39608,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(101469,39608,'blocks_7_testimonial_slider_content_text',''),(101470,39608,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(101471,39608,'blocks_7_testimonial_slider_content_actions',''),(101472,39608,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(101473,39608,'blocks_7_testimonial_slider_content',''),(101474,39608,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(101475,39608,'blocks_7_testimonial_slider_items','a:5:{i:0;s:5:\"38964\";i:1;s:5:\"38965\";i:2;s:5:\"39168\";i:3;s:5:\"39170\";i:4;s:5:\"39169\";}'),(101476,39608,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(101477,39608,'blocks_7_testimonial_slider_ambassador_bool','0'),(101478,39608,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(101479,39609,'hero_style','default'),(101480,39609,'_hero_style','field_62051d9dc5324'),(101481,39609,'hero_image_pos_x','right'),(101482,39609,'_hero_image_pos_x','field_62ec3d05390bb'),(101483,39609,'hero_image_pos_y','top'),(101484,39609,'_hero_image_pos_y','field_62ec3d05390bc'),(101485,39609,'hero_image_pos',''),(101486,39609,'_hero_image_pos','field_62ec3d05390ba'),(101487,39609,'hero_title','Biomechanics Education'),(101488,39609,'_hero_title','field_617571fe285e8'),(101489,39609,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(101490,39609,'_hero_text','field_6175723c285e9'),(101491,39609,'hero_actions','1'),(101492,39609,'_hero_actions','field_61757270285ea'),(101493,39609,'hero_icon',''),(101494,39609,'_hero_icon','field_61a6182199d03'),(101495,39609,'fft_hide_from_listings','0'),(101496,39609,'_fft_hide_from_listings','field_61f1320446ab2'),(101497,39609,'fft_page_format','default'),(101498,39609,'_fft_page_format','field_61ae213f1f218'),(101499,39609,'fft_hide_nav','0'),(101500,39609,'_fft_hide_nav','field_635bd5e43527c'),(101501,39609,'fft_hide_header_call_to_action','0'),(101502,39609,'_fft_hide_header_call_to_action','field_635bd6723527d'),(101503,39609,'fft_page_sitemap','0'),(101504,39609,'_fft_page_sitemap','field_61af9b34e8181'),(101505,39609,'blocks','a:8:{i:0;s:5:\"video\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:8:\"template\";i:7;s:18:\"testimonial_slider\";}'),(101506,39609,'_blocks','field_6176696113096'),(101507,39609,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(101508,39609,'_hero_actions_0_button','field_61757281285eb'),(101509,39609,'_thumbnail_id','38951'),(101510,39609,'__thumbnail_id','field_617570855ddaf'),(101511,39609,'hide_hero','0'),(101512,39609,'_hide_hero','field_66a2380fcda39'),(101513,39609,'blocks_0_acfe_flexible_toggle',''),(101514,39609,'_blocks_0_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(101515,39609,'blocks_0_acfe_flexible_layout_title','Video'),(101516,39609,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(101517,39609,'blocks_0_size','large'),(101518,39609,'_blocks_0_size','field_6487038f297c1'),(101519,39609,'blocks_0_row_content_title',''),(101520,39609,'_blocks_0_row_content_title','field_64870132a865d'),(101521,39609,'blocks_0_row_content_heading','Welcome to Biomechanics Education'),(101522,39609,'_blocks_0_row_content_heading','field_64870142a865e'),(101523,39609,'blocks_0_row_content_text',''),(101524,39609,'_blocks_0_row_content_text','field_64870148a865f'),(101525,39609,'blocks_0_row_content',''),(101526,39609,'_blocks_0_row_content','field_6487008ba865c'),(101527,39609,'blocks_0_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(101528,39609,'_blocks_0_video_src','field_6193c4a98ec07'),(101529,39609,'blocks_0_video_thumbnail','39175'),(101530,39609,'_blocks_0_video_thumbnail','field_6193c4a08ec06'),(101531,39609,'blocks_1_acfe_flexible_toggle',''),(101532,39609,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(101533,39609,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(101534,39609,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(101535,39609,'blocks_1_options_theme','#f5f5f5'),(101536,39609,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(101537,39609,'blocks_1_options_reverse','0'),(101538,39609,'_blocks_1_options_reverse','field_61768049bb8ac'),(101539,39609,'blocks_1_options',''),(101540,39609,'_blocks_1_options','field_617682517c334'),(101541,39609,'blocks_1_split_5050_image','38950'),(101542,39609,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(101543,39609,'blocks_1_split_5050_video',''),(101544,39609,'_blocks_1_split_5050_video','field_6239f3160848a'),(101545,39609,'blocks_1_split_5050_content_title',''),(101546,39609,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(101547,39609,'blocks_1_split_5050_content_heading','What is Biomechanics Education?'),(101548,39609,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(101549,39609,'blocks_1_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(101550,39609,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(101551,39609,'blocks_1_split_5050_content_actions',''),(101552,39609,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(101553,39609,'blocks_1_split_5050_content',''),(101554,39609,'_blocks_1_split_5050_content','field_61767afceb8ba'),(101555,39609,'blocks_2_acfe_flexible_toggle',''),(101556,39609,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(101557,39609,'blocks_2_acfe_flexible_layout_title','Template'),(101558,39609,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(101559,39609,'blocks_2_template','39087'),(101560,39609,'_blocks_2_template','field_617bdd570fe01'),(101561,39609,'blocks_3_acfe_flexible_toggle',''),(101562,39609,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(101563,39609,'blocks_3_acfe_flexible_layout_title','Text Block'),(101564,39609,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(101565,39609,'blocks_3_options_theme','#ffffff'),(101566,39609,'_blocks_3_options_theme','field_6176830e2ad17'),(101567,39609,'blocks_3_options',''),(101568,39609,'_blocks_3_options','field_6176830e2ad16'),(101569,39609,'blocks_3_text_block_heading','Learn About Biomechanics in Different Sectors'),(101570,39609,'_blocks_3_text_block_heading','field_617669d413097'),(101571,39609,'blocks_3_text_block_content',''),(101572,39609,'_blocks_3_text_block_content','field_617669ec13098'),(101573,39609,'blocks_4_acfe_flexible_toggle',''),(101574,39609,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(101575,39609,'blocks_4_acfe_flexible_layout_title','Cards'),(101576,39609,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(101577,39609,'blocks_4_options_theme','#ffffff'),(101578,39609,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(101579,39609,'blocks_4_options_format','carousel'),(101580,39609,'_blocks_4_options_format','field_617a7b15245b5'),(101581,39609,'blocks_4_options_style','default'),(101582,39609,'_blocks_4_options_style','field_6278ffb63484a'),(101583,39609,'blocks_4_options_cards_current_listing','0'),(101584,39609,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(101585,39609,'blocks_4_options_cards_content','custom'),(101586,39609,'_blocks_4_options_cards_content','field_617aba6122688'),(101587,39609,'blocks_4_options',''),(101588,39609,'_blocks_4_options','field_617a7b15245b3'),(101589,39609,'blocks_4_cards_custom_0_image','39215'),(101590,39609,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(101591,39609,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(101592,39609,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(101593,39609,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(101594,39609,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(101595,39609,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(101596,39609,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(101597,39609,'blocks_4_cards_custom_1_image','39243'),(101598,39609,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(101599,39609,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(101600,39609,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(101601,39609,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(101602,39609,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(101603,39609,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(101604,39609,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(101605,39609,'blocks_4_cards_custom_2_image','39247'),(101606,39609,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(101607,39609,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(101608,39609,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(101609,39609,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(101610,39609,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(101611,39609,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(101612,39609,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(101613,39609,'blocks_4_cards_custom_3_image','39256'),(101614,39609,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(101615,39609,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(101616,39609,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(101617,39609,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(101618,39609,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(101619,39609,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(101620,39609,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(101621,39609,'blocks_4_cards_custom_4_image','39251'),(101622,39609,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(101623,39609,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(101624,39609,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(101625,39609,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(101626,39609,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(101627,39609,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(101628,39609,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(101629,39609,'blocks_4_cards_custom_5_image','39240'),(101630,39609,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(101631,39609,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(101632,39609,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(101633,39609,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(101634,39609,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(101635,39609,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(101636,39609,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(101637,39609,'blocks_4_cards_custom_6_image','39454'),(101638,39609,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(101639,39609,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(101640,39609,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(101641,39609,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(101642,39609,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(101643,39609,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(101644,39609,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(101645,39609,'blocks_4_cards_custom','7'),(101646,39609,'_blocks_4_cards_custom','field_6194cbf84d386'),(101647,39609,'blocks_5_acfe_flexible_toggle',''),(101648,39609,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(101649,39609,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(101650,39609,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(101651,39609,'blocks_5_options_theme','#f5f5f5'),(101652,39609,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(101653,39609,'blocks_5_options_reverse','1'),(101654,39609,'_blocks_5_options_reverse','field_61768049bb8ac'),(101655,39609,'blocks_5_options',''),(101656,39609,'_blocks_5_options','field_617682517c334'),(101657,39609,'blocks_5_split_5050_image','38960'),(101658,39609,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(101659,39609,'blocks_5_split_5050_video',''),(101660,39609,'_blocks_5_split_5050_video','field_6239f3160848a'),(101661,39609,'blocks_5_split_5050_content_title','Working In Partnership'),(101662,39609,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(101663,39609,'blocks_5_split_5050_content_heading','Biomechanics Education and Future Fit'),(101664,39609,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(101665,39609,'blocks_5_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(101666,39609,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(101667,39609,'blocks_5_split_5050_content_actions',''),(101668,39609,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(101669,39609,'blocks_5_split_5050_content',''),(101670,39609,'_blocks_5_split_5050_content','field_61767afceb8ba'),(101671,39609,'blocks_6_acfe_flexible_toggle',''),(101672,39609,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(101673,39609,'blocks_6_acfe_flexible_layout_title','Template'),(101674,39609,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(101675,39609,'blocks_6_template','39207'),(101676,39609,'_blocks_6_template','field_617bdd570fe01'),(101677,39609,'blocks_7_acfe_flexible_toggle',''),(101678,39609,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(101679,39609,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(101680,39609,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(101681,39609,'blocks_7_testimonial_slider_content_title',''),(101682,39609,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(101683,39609,'blocks_7_testimonial_slider_content_heading','Testimonials'),(101684,39609,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(101685,39609,'blocks_7_testimonial_slider_content_text',''),(101686,39609,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(101687,39609,'blocks_7_testimonial_slider_content_actions',''),(101688,39609,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(101689,39609,'blocks_7_testimonial_slider_content',''),(101690,39609,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(101691,39609,'blocks_7_testimonial_slider_items','a:5:{i:0;s:5:\"38964\";i:1;s:5:\"38965\";i:2;s:5:\"39168\";i:3;s:5:\"39170\";i:4;s:5:\"39169\";}'),(101692,39609,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(101693,39609,'blocks_7_testimonial_slider_ambassador_bool','0'),(101694,39609,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(101696,39610,'hide_hero','0'),(101697,39610,'_hide_hero','field_66a2380fcda39'),(101698,39610,'hero_title','Price Guide'),(101699,39610,'_hero_title','field_617571fe285e8'),(101700,39610,'hero_text','Enquire Now !'),(101701,39610,'_hero_text','field_6175723c285e9'),(101702,39610,'hero_actions',''),(101703,39610,'_hero_actions','field_61757270285ea'),(101704,39610,'hero_style','default'),(101705,39610,'_hero_style','field_62051d9dc5324'),(101706,39610,'hero_image_pos_x','right'),(101707,39610,'_hero_image_pos_x','field_62ec3d05390bb'),(101708,39610,'hero_image_pos_y','top'),(101709,39610,'_hero_image_pos_y','field_62ec3d05390bc'),(101710,39610,'hero_image_pos',''),(101711,39610,'_hero_image_pos','field_62ec3d05390ba'),(101712,39610,'fft_hide_from_listings','0'),(101713,39610,'_fft_hide_from_listings','field_61f1320446ab2'),(101714,39610,'fft_page_format','default'),(101715,39610,'_fft_page_format','field_61ae213f1f218'),(101716,39610,'fft_hide_nav','0'),(101717,39610,'_fft_hide_nav','field_635bd5e43527c'),(101718,39610,'fft_hide_header_call_to_action','0'),(101719,39610,'_fft_hide_header_call_to_action','field_635bd6723527d'),(101720,39610,'fft_page_sitemap','0'),(101721,39610,'_fft_page_sitemap','field_61af9b34e8181'),(101722,39610,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:10:\"link_stack\";i:3;s:18:\"testimonial_slider\";}'),(101723,39610,'_blocks','field_6176696113096'),(101724,39610,'blocks_2_acfe_flexible_toggle',''),(101725,39610,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(101726,39610,'blocks_2_acfe_flexible_layout_title','Link Stack'),(101727,39610,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(101728,39610,'blocks_2_options_theme','#ffffff'),(101729,39610,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(101730,39610,'blocks_2_options',''),(101731,39610,'_blocks_2_options','field_6177b758246ae'),(101732,39610,'blocks_2_link_stack_content_title',''),(101733,39610,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(101734,39610,'blocks_2_link_stack_content_heading','Discover our expertise'),(101735,39610,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(101736,39610,'blocks_2_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(101737,39610,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(101738,39610,'blocks_2_link_stack_content_actions',''),(101739,39610,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(101740,39610,'blocks_2_link_stack_content',''),(101741,39610,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(101742,39610,'blocks_2_link_stack_0_label','Personal Training'),(101743,39610,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(101744,39610,'blocks_2_link_stack_0_title','Discover Biomechanics in Personal Training'),(101745,39610,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(101746,39610,'blocks_2_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(101747,39610,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(101748,39610,'blocks_2_link_stack_1_label','Pilates'),(101749,39610,'_blocks_2_link_stack_1_label','field_6177b80900d00'),(101750,39610,'blocks_2_link_stack_1_title','Discover Biomechanics in Pilates'),(101751,39610,'_blocks_2_link_stack_1_title','field_6177b80f00d01'),(101752,39610,'blocks_2_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(101753,39610,'_blocks_2_link_stack_1_url','field_6177b82200d02'),(101754,39610,'blocks_2_link_stack','6'),(101755,39610,'_blocks_2_link_stack','field_6177b7f600cff'),(101756,39610,'blocks_2_link_stack_2_label','Sports Coaches'),(101757,39610,'_blocks_2_link_stack_2_label','field_6177b80900d00'),(101758,39610,'blocks_2_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(101759,39610,'_blocks_2_link_stack_2_title','field_6177b80f00d01'),(101760,39610,'blocks_2_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(101761,39610,'_blocks_2_link_stack_2_url','field_6177b82200d02'),(101762,39610,'blocks_2_link_stack_3_label','SMT'),(101763,39610,'_blocks_2_link_stack_3_label','field_6177b80900d00'),(101764,39610,'blocks_2_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(101765,39610,'_blocks_2_link_stack_3_title','field_6177b80f00d01'),(101766,39610,'blocks_2_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(101767,39610,'_blocks_2_link_stack_3_url','field_6177b82200d02'),(101768,39610,'blocks_2_link_stack_4_label','Podiatrists'),(101769,39610,'_blocks_2_link_stack_4_label','field_6177b80900d00'),(101770,39610,'blocks_2_link_stack_4_title','Discover Biomechanics in Podiatry'),(101771,39610,'_blocks_2_link_stack_4_title','field_6177b80f00d01'),(101772,39610,'blocks_2_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(101773,39610,'_blocks_2_link_stack_4_url','field_6177b82200d02'),(101774,39610,'blocks_2_link_stack_5_label','Biomechanics Coach'),(101775,39610,'_blocks_2_link_stack_5_label','field_6177b80900d00'),(101776,39610,'blocks_2_link_stack_5_title','How to Become a Biomechanics Coach'),(101777,39610,'_blocks_2_link_stack_5_title','field_6177b80f00d01'),(101778,39610,'blocks_2_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(101779,39610,'_blocks_2_link_stack_5_url','field_6177b82200d02'),(101780,39610,'blocks_3_acfe_flexible_toggle',''),(101781,39610,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(101782,39610,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(101783,39610,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(101784,39610,'blocks_3_testimonial_slider_content_title',''),(101785,39610,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(101786,39610,'blocks_3_testimonial_slider_content_heading','Testimonials'),(101787,39610,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(101788,39610,'blocks_3_testimonial_slider_content_text',''),(101789,39610,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(101790,39610,'blocks_3_testimonial_slider_content_actions',''),(101791,39610,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(101792,39610,'blocks_3_testimonial_slider_content',''),(101793,39610,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(101794,39610,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(101795,39610,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(101796,39610,'blocks_3_testimonial_slider_ambassador_bool','0'),(101797,39610,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(101798,39610,'blocks_0_acfe_flexible_toggle',''),(101799,39610,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(101800,39610,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(101801,39610,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(101802,39610,'blocks_0_options_theme','#ffffff'),(101803,39610,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(101804,39610,'blocks_0_options_reverse','0'),(101805,39610,'_blocks_0_options_reverse','field_61768049bb8ac'),(101806,39610,'blocks_0_options',''),(101807,39610,'_blocks_0_options','field_617682517c334'),(101808,39610,'blocks_0_split_5050_image','39271'),(101809,39610,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(101810,39610,'blocks_0_split_5050_video',''),(101811,39610,'_blocks_0_split_5050_video','field_6239f3160848a'),(101812,39610,'blocks_0_split_5050_content_title',''),(101813,39610,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(101814,39610,'blocks_0_split_5050_content_heading','What\'s included in this guide ?'),(101815,39610,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(101816,39610,'blocks_0_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nWe believe that world-class training should be accessible to everyone no matter their financial circumstances. This is why we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(101817,39610,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(101818,39610,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(101819,39610,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(101820,39610,'blocks_0_split_5050_content_actions','1'),(101821,39610,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(101822,39610,'blocks_0_split_5050_content',''),(101823,39610,'_blocks_0_split_5050_content','field_61767afceb8ba'),(101824,39610,'blocks_1_acfe_flexible_toggle',''),(101825,39610,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(101826,39610,'blocks_1_acfe_flexible_layout_title','Form'),(101827,39610,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(101828,39610,'blocks_1_row_content_format','standard'),(101829,39610,'_blocks_1_row_content_format','field_6481ead962881'),(101830,39610,'blocks_1_row_content_title','Enquire Now'),(101831,39610,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(101832,39610,'blocks_1_row_content_heading','Course Information and Price Guide'),(101833,39610,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(101834,39610,'blocks_1_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*</li>\r\n 	<li>Receive exclusive offers</li>\r\n</ul>'),(101835,39610,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(101836,39610,'blocks_1_row_content_actions',''),(101837,39610,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(101838,39610,'blocks_1_row_content',''),(101839,39610,'_blocks_1_row_content','field_61a0f5f5b3db0'),(101840,39610,'blocks_1_row_form',''),(101841,39610,'_blocks_1_row_form','field_61a4ff2c0b08e'),(101842,39610,'blocks_1_row_form_button_label',''),(101843,39610,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(101844,39610,'_thumbnail_id',''),(101845,39610,'__thumbnail_id','field_617570855ddaf'),(101846,39611,'hero_style','default'),(101847,39611,'_hero_style','field_62051d9dc5324'),(101848,39611,'hero_image_pos_x','right'),(101849,39611,'_hero_image_pos_x','field_62ec3d05390bb'),(101850,39611,'hero_image_pos_y','top'),(101851,39611,'_hero_image_pos_y','field_62ec3d05390bc'),(101852,39611,'hero_image_pos',''),(101853,39611,'_hero_image_pos','field_62ec3d05390ba'),(101854,39611,'hero_title','About Us'),(101855,39611,'_hero_title','field_617571fe285e8'),(101856,39611,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(101857,39611,'_hero_text','field_6175723c285e9'),(101858,39611,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(101859,39611,'_hero_actions_0_button','field_61757281285eb'),(101860,39611,'hero_actions','1'),(101861,39611,'_hero_actions','field_61757270285ea'),(101862,39611,'hero_icon',''),(101863,39611,'_hero_icon','field_61a6182199d03'),(101864,39611,'fft_hide_from_listings','0'),(101865,39611,'_fft_hide_from_listings','field_61f1320446ab2'),(101866,39611,'fft_page_format','default'),(101867,39611,'_fft_page_format','field_61ae213f1f218'),(101868,39611,'fft_hide_nav','0'),(101869,39611,'_fft_hide_nav','field_635bd5e43527c'),(101870,39611,'fft_hide_header_call_to_action','0'),(101871,39611,'_fft_hide_header_call_to_action','field_635bd6723527d'),(101872,39611,'fft_page_sitemap','0'),(101873,39611,'_fft_page_sitemap','field_61af9b34e8181'),(101874,39611,'blocks','a:7:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(101875,39611,'_blocks','field_6176696113096'),(101876,39611,'blocks_1_acfe_flexible_toggle',''),(101877,39611,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(101878,39611,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(101879,39611,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(101880,39611,'blocks_1_options_theme','#b61234'),(101881,39611,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(101882,39611,'blocks_1_options_reverse','0'),(101883,39611,'_blocks_1_options_reverse','field_61768049bb8ac'),(101884,39611,'blocks_1_options',''),(101885,39611,'_blocks_1_options','field_617682517c334'),(101886,39611,'blocks_1_split_5050_image','35276'),(101887,39611,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(101888,39611,'blocks_1_split_5050_video',''),(101889,39611,'_blocks_1_split_5050_video','field_6239f3160848a'),(101890,39611,'blocks_1_split_5050_content_title',''),(101891,39611,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(101892,39611,'blocks_1_split_5050_content_heading','What we do'),(101893,39611,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(101894,39611,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(101895,39611,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(101896,39611,'blocks_1_split_5050_content_actions',''),(101897,39611,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(101898,39611,'blocks_1_split_5050_content',''),(101899,39611,'_blocks_1_split_5050_content','field_61767afceb8ba'),(101900,39611,'blocks_2_acfe_flexible_toggle',''),(101901,39611,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(101902,39611,'blocks_2_acfe_flexible_layout_title','Video'),(101903,39611,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(101904,39611,'blocks_2_size','large'),(101905,39611,'_blocks_2_size','field_6487038f297c1'),(101906,39611,'blocks_2_row_content_title',''),(101907,39611,'_blocks_2_row_content_title','field_64870132a865d'),(101908,39611,'blocks_2_row_content_heading',''),(101909,39611,'_blocks_2_row_content_heading','field_64870142a865e'),(101910,39611,'blocks_2_row_content_text',''),(101911,39611,'_blocks_2_row_content_text','field_64870148a865f'),(101912,39611,'blocks_2_row_content',''),(101913,39611,'_blocks_2_row_content','field_6487008ba865c'),(101914,39611,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(101915,39611,'_blocks_2_video_src','field_6193c4a98ec07'),(101916,39611,'blocks_2_video_thumbnail','39175'),(101917,39611,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(101918,39611,'blocks_3_acfe_flexible_toggle','1'),(101919,39611,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(101920,39611,'blocks_3_acfe_flexible_layout_title','Cards'),(101921,39611,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(101922,39611,'blocks_3_options_theme','#ffffff'),(101923,39611,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(101924,39611,'blocks_3_options_format','carousel'),(101925,39611,'_blocks_3_options_format','field_617a7b15245b5'),(101926,39611,'blocks_3_options_style','default'),(101927,39611,'_blocks_3_options_style','field_6278ffb63484a'),(101928,39611,'blocks_3_options_cards_current_listing','0'),(101929,39611,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(101930,39611,'blocks_3_options_cards_content','custom'),(101931,39611,'_blocks_3_options_cards_content','field_617aba6122688'),(101932,39611,'blocks_3_options',''),(101933,39611,'_blocks_3_options','field_617a7b15245b3'),(101934,39611,'blocks_3_cards_custom_0_image','39504'),(101935,39611,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(101936,39611,'blocks_3_cards_custom_0_title','Our Partners'),(101937,39611,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(101938,39611,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(101939,39611,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(101940,39611,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(101941,39611,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(101942,39611,'blocks_3_cards_custom','1'),(101943,39611,'_blocks_3_cards_custom','field_6194cbf84d386'),(101944,39611,'_thumbnail_id','39186'),(101945,39611,'__thumbnail_id','field_617570855ddaf'),(101946,39611,'blocks_0_acfe_flexible_toggle',''),(101947,39611,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(101948,39611,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(101949,39611,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(101950,39611,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in the education of intrinsic biomechanics.</p>'),(101951,39611,'_blocks_0_content','field_6193c9b5eac84'),(101952,39611,'hide_hero','0'),(101953,39611,'_hide_hero','field_66a2380fcda39'),(101954,39611,'blocks_3_cards_row_content_title',''),(101955,39611,'_blocks_3_cards_row_content_title','field_6194fc1bc99fd'),(101956,39611,'blocks_3_cards_row_content_heading',''),(101957,39611,'_blocks_3_cards_row_content_heading','field_6194fc1bc99fe'),(101958,39611,'blocks_3_cards_row_content_text',''),(101959,39611,'_blocks_3_cards_row_content_text','field_6194fc1bc99ff'),(101960,39611,'blocks_3_cards_row_content_actions',''),(101961,39611,'_blocks_3_cards_row_content_actions','field_6194fc1bc9a00'),(101962,39611,'blocks_3_cards_row_content',''),(101963,39611,'_blocks_3_cards_row_content','field_6194fc1bc99fc'),(101964,39611,'blocks_4_acfe_flexible_toggle',''),(101965,39611,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(101966,39611,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(101967,39611,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(101968,39611,'blocks_4_options_theme','#ffffff'),(101969,39611,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(101970,39611,'blocks_4_options_reverse','0'),(101971,39611,'_blocks_4_options_reverse','field_61768049bb8ac'),(101972,39611,'blocks_4_options',''),(101973,39611,'_blocks_4_options','field_617682517c334'),(101974,39611,'blocks_4_split_5050_image','39501'),(101975,39611,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(101976,39611,'blocks_4_split_5050_video',''),(101977,39611,'_blocks_4_split_5050_video','field_6239f3160848a'),(101978,39611,'blocks_4_split_5050_content_title',''),(101979,39611,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(101980,39611,'blocks_4_split_5050_content_heading','Our Partners'),(101981,39611,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(101982,39611,'blocks_4_split_5050_content_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(101983,39611,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(101984,39611,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"View our Partner Page\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(101985,39611,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(101986,39611,'blocks_4_split_5050_content_actions','1'),(101987,39611,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(101988,39611,'blocks_4_split_5050_content',''),(101989,39611,'_blocks_4_split_5050_content','field_61767afceb8ba'),(101990,39611,'blocks_5_acfe_flexible_toggle',''),(101991,39611,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(101992,39611,'blocks_5_acfe_flexible_layout_title','Text Block'),(101993,39611,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(101994,39611,'blocks_5_options_theme','#ffffff'),(101995,39611,'_blocks_5_options_theme','field_6176830e2ad17'),(101996,39611,'blocks_5_options',''),(101997,39611,'_blocks_5_options','field_6176830e2ad16'),(101998,39611,'blocks_5_text_block_heading','Our Team'),(101999,39611,'_blocks_5_text_block_heading','field_617669d413097'),(102000,39611,'blocks_5_text_block_content',''),(102001,39611,'_blocks_5_text_block_content','field_617669ec13098'),(102002,39611,'blocks_6_acfe_flexible_toggle',''),(102003,39611,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(102004,39611,'blocks_6_acfe_flexible_layout_title','Cards'),(102005,39611,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(102006,39611,'blocks_6_options_theme','#ffffff'),(102007,39611,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(102008,39611,'blocks_6_options_format','carousel'),(102009,39611,'_blocks_6_options_format','field_617a7b15245b5'),(102010,39611,'blocks_6_options_style','default'),(102011,39611,'_blocks_6_options_style','field_6278ffb63484a'),(102012,39611,'blocks_6_options_cards_current_listing','0'),(102013,39611,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(102014,39611,'blocks_6_options_cards_content','custom'),(102015,39611,'_blocks_6_options_cards_content','field_617aba6122688'),(102016,39611,'blocks_6_options',''),(102017,39611,'_blocks_6_options','field_617a7b15245b3'),(102018,39611,'blocks_6_cards_custom_0_image','39353'),(102019,39611,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(102020,39611,'blocks_6_cards_custom_0_title','Rachel Frances Thomson - Founder'),(102021,39611,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(102022,39611,'blocks_6_cards_custom_0_text','Rachel’s professional career in the health & fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe & Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor & IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd & so frequently lectures, presents & teaches at events both UK & Internationally about the benefits of the intrinsic biomechanics\' methods.'),(102023,39611,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(102024,39611,'blocks_6_cards_custom_0_link',''),(102025,39611,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(102026,39611,'blocks_6_cards_custom_1_image','39366'),(102027,39611,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(102028,39611,'blocks_6_cards_custom_1_title','Tom Waldron - Master Trainer'),(102029,39611,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(102030,39611,'blocks_6_cards_custom_1_text','Tom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance & freedom of movement are described by Tom as ‘incredible!’  He has been a Biomechanics Coach™ since Mar 2016 & it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts & it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(102031,39611,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(102032,39611,'blocks_6_cards_custom_1_link',''),(102033,39611,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(102034,39611,'blocks_6_cards_custom_2_image','39598'),(102035,39611,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(102036,39611,'blocks_6_cards_custom_2_title','Kim Tomlin - Master Trainer'),(102037,39611,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(102038,39611,'blocks_6_cards_custom_2_text','Kim is the owner of Primal Flow, a Personal Trainer, Biomechanics Coach and Master Trainer. Kim has been passionate about exploring movement ever since becoming a Primal Flow Instructor in 2012, now combining her skills to help people to improve their movement quality and capacity, whilst enjoying the freedom of their own individual movement capabilities. As well as teaching the Biomechanics Coaching Diploma (for Biomechanics Education), Kim is a Training Provider Partner with CIMSPA and delivers her own Train the Trainer courses, including the Primal Flow Instructor Course. '),(102039,39611,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(102040,39611,'blocks_6_cards_custom_2_link',''),(102041,39611,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(102042,39611,'blocks_6_cards_custom_3_image','39593'),(102043,39611,'_blocks_6_cards_custom_3_image','field_6194cc284d387'),(102044,39611,'blocks_6_cards_custom_3_title','Morgan Hanness - Sales Lead'),(102045,39611,'_blocks_6_cards_custom_3_title','field_6194cc454d388'),(102046,39611,'blocks_6_cards_custom_3_text','Morgan Hanness has a background in personal training, nutrition coaching, and integrative nutrition health coaching, and has always been passionate about helping people achieve their goals. At Biomechanics Education, Morgan also helps others develop their careers in the health and fitness industry, enabling them to assist even more people. Living with Hypermobility Syndrome, Morgan deeply understands the value of proper movement, which aligns perfectly with Biomechanics Education’s core values. Morgan is passionate about sports, especially snowboarding, surfing, rock climbing, and other outdoor activities, and is grateful for pain-free movement. '),(102047,39611,'_blocks_6_cards_custom_3_text','field_6194cc4a4d389'),(102048,39611,'blocks_6_cards_custom_3_link',''),(102049,39611,'_blocks_6_cards_custom_3_link','field_6194cc534d38a'),(102050,39611,'blocks_6_cards_custom_4_image',''),(102051,39611,'_blocks_6_cards_custom_4_image','field_6194cc284d387'),(102052,39611,'blocks_6_cards_custom_4_title','Fiona Jones - Assessor '),(102053,39611,'_blocks_6_cards_custom_4_title','field_6194cc454d388'),(102054,39611,'blocks_6_cards_custom_4_text','Fiona began her career in the fitness industry in 2006 as a Gym and Group Exercise Instructor and Personal Trainer. In 2010, she transitioned to assessing Fitness Apprenticeships, expanding her expertise in the field. After experiencing the transformative effects of a coaching programme firsthand, Fiona pursued a Low Back Specialist Biomechanics Diploma and a qualification in Remedial Massage. Since then, she has successfully combined her role as an assessor with maintaining her own client base in the UK and overseas, including on Ascension Island and in the United States. \r\n\r\nWhile abroad, Fiona joined the team as a course advisor and became an integral part of the support team. Upon returning to the UK during the 2020 lockdown, she continued her work, assessing for Biomechanics Education both inside and outside the classroom. Fiona is passionate about guiding people through their journeys of discovery, helping them achieve their fitness and health goals with confidence and understanding. '),(102055,39611,'_blocks_6_cards_custom_4_text','field_6194cc4a4d389'),(102056,39611,'blocks_6_cards_custom_4_link',''),(102057,39611,'_blocks_6_cards_custom_4_link','field_6194cc534d38a'),(102058,39611,'blocks_6_cards_custom','5'),(102059,39611,'_blocks_6_cards_custom','field_6194cbf84d386'),(102060,3,'_oembed_77d0ef488c36d40cc37a04d11a712a03','{{unknown}}'),(102064,39612,'hero_style','default'),(102065,39612,'_hero_style','field_62051d9dc5324'),(102066,39612,'hero_image_pos_x','right'),(102067,39612,'_hero_image_pos_x','field_62ec3d05390bb'),(102068,39612,'hero_image_pos_y','top'),(102069,39612,'_hero_image_pos_y','field_62ec3d05390bc'),(102070,39612,'hero_image_pos',''),(102071,39612,'_hero_image_pos','field_62ec3d05390ba'),(102072,39612,'hero_title','About Us'),(102073,39612,'_hero_title','field_617571fe285e8'),(102074,39612,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(102075,39612,'_hero_text','field_6175723c285e9'),(102076,39612,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(102077,39612,'_hero_actions_0_button','field_61757281285eb'),(102078,39612,'hero_actions','1'),(102079,39612,'_hero_actions','field_61757270285ea'),(102080,39612,'hero_icon',''),(102081,39612,'_hero_icon','field_61a6182199d03'),(102082,39612,'fft_hide_from_listings','0'),(102083,39612,'_fft_hide_from_listings','field_61f1320446ab2'),(102084,39612,'fft_page_format','default'),(102085,39612,'_fft_page_format','field_61ae213f1f218'),(102086,39612,'fft_hide_nav','0'),(102087,39612,'_fft_hide_nav','field_635bd5e43527c'),(102088,39612,'fft_hide_header_call_to_action','0'),(102089,39612,'_fft_hide_header_call_to_action','field_635bd6723527d'),(102090,39612,'fft_page_sitemap','0'),(102091,39612,'_fft_page_sitemap','field_61af9b34e8181'),(102092,39612,'blocks','a:7:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(102093,39612,'_blocks','field_6176696113096'),(102094,39612,'blocks_1_acfe_flexible_toggle',''),(102095,39612,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(102096,39612,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(102097,39612,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(102098,39612,'blocks_1_options_theme','#b61234'),(102099,39612,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(102100,39612,'blocks_1_options_reverse','0'),(102101,39612,'_blocks_1_options_reverse','field_61768049bb8ac'),(102102,39612,'blocks_1_options',''),(102103,39612,'_blocks_1_options','field_617682517c334'),(102104,39612,'blocks_1_split_5050_image','35276'),(102105,39612,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(102106,39612,'blocks_1_split_5050_video',''),(102107,39612,'_blocks_1_split_5050_video','field_6239f3160848a'),(102108,39612,'blocks_1_split_5050_content_title',''),(102109,39612,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(102110,39612,'blocks_1_split_5050_content_heading','What we do'),(102111,39612,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(102112,39612,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(102113,39612,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(102114,39612,'blocks_1_split_5050_content_actions',''),(102115,39612,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(102116,39612,'blocks_1_split_5050_content',''),(102117,39612,'_blocks_1_split_5050_content','field_61767afceb8ba'),(102118,39612,'blocks_2_acfe_flexible_toggle',''),(102119,39612,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(102120,39612,'blocks_2_acfe_flexible_layout_title','Video'),(102121,39612,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(102122,39612,'blocks_2_size','large'),(102123,39612,'_blocks_2_size','field_6487038f297c1'),(102124,39612,'blocks_2_row_content_title',''),(102125,39612,'_blocks_2_row_content_title','field_64870132a865d'),(102126,39612,'blocks_2_row_content_heading',''),(102127,39612,'_blocks_2_row_content_heading','field_64870142a865e'),(102128,39612,'blocks_2_row_content_text',''),(102129,39612,'_blocks_2_row_content_text','field_64870148a865f'),(102130,39612,'blocks_2_row_content',''),(102131,39612,'_blocks_2_row_content','field_6487008ba865c'),(102132,39612,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(102133,39612,'_blocks_2_video_src','field_6193c4a98ec07'),(102134,39612,'blocks_2_video_thumbnail','39175'),(102135,39612,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(102136,39612,'blocks_3_acfe_flexible_toggle','1'),(102137,39612,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(102138,39612,'blocks_3_acfe_flexible_layout_title','Cards'),(102139,39612,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(102140,39612,'blocks_3_options_theme','#ffffff'),(102141,39612,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(102142,39612,'blocks_3_options_format','carousel'),(102143,39612,'_blocks_3_options_format','field_617a7b15245b5'),(102144,39612,'blocks_3_options_style','default'),(102145,39612,'_blocks_3_options_style','field_6278ffb63484a'),(102146,39612,'blocks_3_options_cards_current_listing','0'),(102147,39612,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(102148,39612,'blocks_3_options_cards_content','custom'),(102149,39612,'_blocks_3_options_cards_content','field_617aba6122688'),(102150,39612,'blocks_3_options',''),(102151,39612,'_blocks_3_options','field_617a7b15245b3'),(102152,39612,'blocks_3_cards_custom_0_image','39504'),(102153,39612,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(102154,39612,'blocks_3_cards_custom_0_title','Our Partners'),(102155,39612,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(102156,39612,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(102157,39612,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(102158,39612,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(102159,39612,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(102160,39612,'blocks_3_cards_custom','1'),(102161,39612,'_blocks_3_cards_custom','field_6194cbf84d386'),(102162,39612,'_thumbnail_id','39186'),(102163,39612,'__thumbnail_id','field_617570855ddaf'),(102164,39612,'blocks_0_acfe_flexible_toggle',''),(102165,39612,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(102166,39612,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(102167,39612,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(102168,39612,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in the education of intrinsic biomechanics.</p>'),(102169,39612,'_blocks_0_content','field_6193c9b5eac84'),(102170,39612,'hide_hero','0'),(102171,39612,'_hide_hero','field_66a2380fcda39'),(102172,39612,'blocks_3_cards_row_content_title',''),(102173,39612,'_blocks_3_cards_row_content_title','field_6194fc1bc99fd'),(102174,39612,'blocks_3_cards_row_content_heading',''),(102175,39612,'_blocks_3_cards_row_content_heading','field_6194fc1bc99fe'),(102176,39612,'blocks_3_cards_row_content_text',''),(102177,39612,'_blocks_3_cards_row_content_text','field_6194fc1bc99ff'),(102178,39612,'blocks_3_cards_row_content_actions',''),(102179,39612,'_blocks_3_cards_row_content_actions','field_6194fc1bc9a00'),(102180,39612,'blocks_3_cards_row_content',''),(102181,39612,'_blocks_3_cards_row_content','field_6194fc1bc99fc'),(102182,39612,'blocks_4_acfe_flexible_toggle',''),(102183,39612,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(102184,39612,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(102185,39612,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(102186,39612,'blocks_4_options_theme','#ffffff'),(102187,39612,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(102188,39612,'blocks_4_options_reverse','0'),(102189,39612,'_blocks_4_options_reverse','field_61768049bb8ac'),(102190,39612,'blocks_4_options',''),(102191,39612,'_blocks_4_options','field_617682517c334'),(102192,39612,'blocks_4_split_5050_image','39501'),(102193,39612,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(102194,39612,'blocks_4_split_5050_video',''),(102195,39612,'_blocks_4_split_5050_video','field_6239f3160848a'),(102196,39612,'blocks_4_split_5050_content_title',''),(102197,39612,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(102198,39612,'blocks_4_split_5050_content_heading','Our Partners'),(102199,39612,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(102200,39612,'blocks_4_split_5050_content_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(102201,39612,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(102202,39612,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"View our Partner Page\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(102203,39612,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(102204,39612,'blocks_4_split_5050_content_actions','1'),(102205,39612,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(102206,39612,'blocks_4_split_5050_content',''),(102207,39612,'_blocks_4_split_5050_content','field_61767afceb8ba'),(102208,39612,'blocks_5_acfe_flexible_toggle',''),(102209,39612,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(102210,39612,'blocks_5_acfe_flexible_layout_title','Text Block'),(102211,39612,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(102212,39612,'blocks_5_options_theme','#ffffff'),(102213,39612,'_blocks_5_options_theme','field_6176830e2ad17'),(102214,39612,'blocks_5_options',''),(102215,39612,'_blocks_5_options','field_6176830e2ad16'),(102216,39612,'blocks_5_text_block_heading','Our Team'),(102217,39612,'_blocks_5_text_block_heading','field_617669d413097'),(102218,39612,'blocks_5_text_block_content',''),(102219,39612,'_blocks_5_text_block_content','field_617669ec13098'),(102220,39612,'blocks_6_acfe_flexible_toggle',''),(102221,39612,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(102222,39612,'blocks_6_acfe_flexible_layout_title','Cards'),(102223,39612,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(102224,39612,'blocks_6_options_theme','#ffffff'),(102225,39612,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(102226,39612,'blocks_6_options_format','carousel'),(102227,39612,'_blocks_6_options_format','field_617a7b15245b5'),(102228,39612,'blocks_6_options_style','default'),(102229,39612,'_blocks_6_options_style','field_6278ffb63484a'),(102230,39612,'blocks_6_options_cards_current_listing','0'),(102231,39612,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(102232,39612,'blocks_6_options_cards_content','custom'),(102233,39612,'_blocks_6_options_cards_content','field_617aba6122688'),(102234,39612,'blocks_6_options',''),(102235,39612,'_blocks_6_options','field_617a7b15245b3'),(102236,39612,'blocks_6_cards_custom_0_image','39353'),(102237,39612,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(102238,39612,'blocks_6_cards_custom_0_title','Rachel Frances Thomson - Founder'),(102239,39612,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(102240,39612,'blocks_6_cards_custom_0_text','Rachel’s professional career in the health & fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe & Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor & IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd & so frequently lectures, presents & teaches at events both UK & Internationally about the benefits of the intrinsic biomechanics\' methods.'),(102241,39612,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(102242,39612,'blocks_6_cards_custom_0_link',''),(102243,39612,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(102244,39612,'blocks_6_cards_custom_1_image','39366'),(102245,39612,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(102246,39612,'blocks_6_cards_custom_1_title','Tom Waldron - Master Trainer'),(102247,39612,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(102248,39612,'blocks_6_cards_custom_1_text','Tom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance & freedom of movement are described by Tom as ‘incredible!’  He has been a Biomechanics Coach™ since Mar 2016 & it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts & it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(102249,39612,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(102250,39612,'blocks_6_cards_custom_1_link',''),(102251,39612,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(102252,39612,'blocks_6_cards_custom_2_image','39598'),(102253,39612,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(102254,39612,'blocks_6_cards_custom_2_title','Kim Tomlin - Master Trainer'),(102255,39612,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(102256,39612,'blocks_6_cards_custom_2_text','Kim is the owner of Primal Flow, a Personal Trainer, Biomechanics Coach and Master Trainer. Kim has been passionate about exploring movement ever since becoming a Primal Flow Instructor in 2012, now combining her skills to help people to improve their movement quality and capacity, whilst enjoying the freedom of their own individual movement capabilities. As well as teaching the Biomechanics Coaching Diploma (for Biomechanics Education), Kim is a Training Provider Partner with CIMSPA and delivers her own Train the Trainer courses, including the Primal Flow Instructor Course. '),(102257,39612,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(102258,39612,'blocks_6_cards_custom_2_link',''),(102259,39612,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(102260,39612,'blocks_6_cards_custom_3_image','39593'),(102261,39612,'_blocks_6_cards_custom_3_image','field_6194cc284d387'),(102262,39612,'blocks_6_cards_custom_3_title','Morgan Hanness - Sales Lead'),(102263,39612,'_blocks_6_cards_custom_3_title','field_6194cc454d388'),(102264,39612,'blocks_6_cards_custom_3_text','Morgan Hanness has a background in personal training, nutrition coaching, and integrative nutrition health coaching, and has always been passionate about helping people achieve their goals. At Biomechanics Education, Morgan also helps others develop their careers in the health and fitness industry, enabling them to assist even more people. Living with Hypermobility Syndrome, Morgan deeply understands the value of proper movement, which aligns perfectly with Biomechanics Education’s core values. Morgan is passionate about sports, especially snowboarding, surfing, rock climbing, and other outdoor activities, and is grateful for pain-free movement. '),(102265,39612,'_blocks_6_cards_custom_3_text','field_6194cc4a4d389'),(102266,39612,'blocks_6_cards_custom_3_link',''),(102267,39612,'_blocks_6_cards_custom_3_link','field_6194cc534d38a'),(102268,39612,'blocks_6_cards_custom_4_image',''),(102269,39612,'_blocks_6_cards_custom_4_image','field_6194cc284d387'),(102270,39612,'blocks_6_cards_custom_4_title','Fiona Jones - Assessor '),(102271,39612,'_blocks_6_cards_custom_4_title','field_6194cc454d388'),(102272,39612,'blocks_6_cards_custom_4_text','Fiona began her career in the fitness industry in 2006 as a Gym and Group Exercise Instructor and Personal Trainer. In 2010, she transitioned to assessing Fitness Apprenticeships, expanding her expertise in the field. After experiencing the transformative effects of a coaching programme firsthand, Fiona pursued a Low Back Specialist Biomechanics Diploma and a qualification in Remedial Massage. Since then, she has successfully combined her role as an assessor with maintaining her own client base in the UK and overseas, including on Ascension Island and in the United States. \r\n\r\nWhile abroad, Fiona joined the team as a course advisor and became an integral part of the support team. Upon returning to the UK during the 2020 lockdown, she continued her work, assessing for Biomechanics Education both inside and outside the classroom. Fiona is passionate about guiding people through their journeys of discovery, helping them achieve their fitness and health goals with confidence and understanding. '),(102273,39612,'_blocks_6_cards_custom_4_text','field_6194cc4a4d389'),(102274,39612,'blocks_6_cards_custom_4_link',''),(102275,39612,'_blocks_6_cards_custom_4_link','field_6194cc534d38a'),(102276,39612,'blocks_6_cards_custom','5'),(102277,39612,'_blocks_6_cards_custom','field_6194cbf84d386'),(102561,39615,'hide_hero','0'),(102562,39615,'_hide_hero','field_66a2380fcda39'),(102563,39615,'hero_title','Biomechanics and Podiatrists'),(102564,39615,'_hero_title','field_617571fe285e8'),(102565,39615,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(102566,39615,'_hero_text','field_6175723c285e9'),(102567,39615,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(102568,39615,'_hero_actions_0_button','field_61757281285eb'),(102569,39615,'hero_actions','1'),(102570,39615,'_hero_actions','field_61757270285ea'),(102571,39615,'hero_style','default'),(102572,39615,'_hero_style','field_62051d9dc5324'),(102573,39615,'_thumbnail_id','39247'),(102574,39615,'__thumbnail_id','field_617570855ddaf'),(102575,39615,'hero_image_pos_x','right'),(102576,39615,'_hero_image_pos_x','field_62ec3d05390bb'),(102577,39615,'hero_image_pos_y','top'),(102578,39615,'_hero_image_pos_y','field_62ec3d05390bc'),(102579,39615,'hero_image_pos',''),(102580,39615,'_hero_image_pos','field_62ec3d05390ba'),(102581,39615,'fft_hide_from_listings','0'),(102582,39615,'_fft_hide_from_listings','field_61f1320446ab2'),(102583,39615,'fft_page_format','default'),(102584,39615,'_fft_page_format','field_61ae213f1f218'),(102585,39615,'fft_hide_nav','0'),(102586,39615,'_fft_hide_nav','field_635bd5e43527c'),(102587,39615,'fft_hide_header_call_to_action','0'),(102588,39615,'_fft_hide_header_call_to_action','field_635bd6723527d'),(102589,39615,'fft_page_sitemap','0'),(102590,39615,'_fft_page_sitemap','field_61af9b34e8181'),(102591,39615,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(102592,39615,'_blocks','field_6176696113096'),(102593,39615,'blocks_0_acfe_flexible_toggle',''),(102594,39615,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(102595,39615,'blocks_0_acfe_flexible_layout_title','Steps'),(102596,39615,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(102597,39615,'blocks_0_row_content_title',''),(102598,39615,'_blocks_0_row_content_title','field_64888cd1e26e0'),(102599,39615,'blocks_0_row_content_heading','Benefits of training with us'),(102600,39615,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(102601,39615,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(102602,39615,'_blocks_0_row_content_text','field_64888ce2e26e2'),(102603,39615,'blocks_0_row_content_actions',''),(102604,39615,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(102605,39615,'blocks_0_row_content',''),(102606,39615,'_blocks_0_row_content','field_64888cb0e26df'),(102607,39615,'blocks_0_steps_0_icon','progression.svg'),(102608,39615,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(102609,39615,'blocks_0_steps_0_title','Earning potential'),(102610,39615,'_blocks_0_steps_0_title','field_64888d94e26e7'),(102611,39615,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(102612,39615,'_blocks_0_steps_0_text','field_64888d99e26e8'),(102613,39615,'blocks_0_steps_1_icon','support.svg'),(102614,39615,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(102615,39615,'blocks_0_steps_1_title','Lifetime Learning Promise'),(102616,39615,'_blocks_0_steps_1_title','field_64888d94e26e7'),(102617,39615,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(102618,39615,'_blocks_0_steps_1_text','field_64888d99e26e8'),(102619,39615,'blocks_0_steps_2_icon','qualification.svg'),(102620,39615,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(102621,39615,'blocks_0_steps_2_title','Evidence based hands on learning'),(102622,39615,'_blocks_0_steps_2_title','field_64888d94e26e7'),(102623,39615,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(102624,39615,'_blocks_0_steps_2_text','field_64888d99e26e8'),(102625,39615,'blocks_0_steps_3_icon','leaders.svg'),(102626,39615,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(102627,39615,'blocks_0_steps_3_title','Stand out from the crowd'),(102628,39615,'_blocks_0_steps_3_title','field_64888d94e26e7'),(102629,39615,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(102630,39615,'_blocks_0_steps_3_text','field_64888d99e26e8'),(102631,39615,'blocks_0_steps','4'),(102632,39615,'_blocks_0_steps','field_64888d44e26e5'),(102633,39615,'blocks_1_acfe_flexible_toggle',''),(102634,39615,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(102635,39615,'blocks_1_acfe_flexible_layout_title','Video'),(102636,39615,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(102637,39615,'blocks_1_size','large'),(102638,39615,'_blocks_1_size','field_6487038f297c1'),(102639,39615,'blocks_1_row_content_title',''),(102640,39615,'_blocks_1_row_content_title','field_64870132a865d'),(102641,39615,'blocks_1_row_content_heading',''),(102642,39615,'_blocks_1_row_content_heading','field_64870142a865e'),(102643,39615,'blocks_1_row_content_text',''),(102644,39615,'_blocks_1_row_content_text','field_64870148a865f'),(102645,39615,'blocks_1_row_content',''),(102646,39615,'_blocks_1_row_content','field_6487008ba865c'),(102647,39615,'blocks_1_video_src','https://youtu.be/kLVekt6aqrI'),(102648,39615,'_blocks_1_video_src','field_6193c4a98ec07'),(102649,39615,'blocks_1_video_thumbnail',''),(102650,39615,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(102651,39615,'blocks_2_acfe_flexible_toggle',''),(102652,39615,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(102653,39615,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(102654,39615,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(102655,39615,'blocks_2_options_theme','#ffffff'),(102656,39615,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(102657,39615,'blocks_2_options_reverse','0'),(102658,39615,'_blocks_2_options_reverse','field_61768049bb8ac'),(102659,39615,'blocks_2_options',''),(102660,39615,'_blocks_2_options','field_617682517c334'),(102661,39615,'blocks_2_split_5050_image','39241'),(102662,39615,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(102663,39615,'blocks_2_split_5050_video',''),(102664,39615,'_blocks_2_split_5050_video','field_6239f3160848a'),(102665,39615,'blocks_2_split_5050_content_title',''),(102666,39615,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(102667,39615,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(102668,39615,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(102669,39615,'blocks_2_split_5050_content_text','This integrated system is enabling podiatrists to find solutions to foot problems through understanding the upper body and shoulders. By assessing the entire body, this unique approach gives podiatrists the ability to retain clients longer and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(102670,39615,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(102671,39615,'blocks_2_split_5050_content_actions',''),(102672,39615,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(102673,39615,'blocks_2_split_5050_content',''),(102674,39615,'_blocks_2_split_5050_content','field_61767afceb8ba'),(102675,39615,'blocks_3_acfe_flexible_toggle',''),(102676,39615,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(102677,39615,'blocks_3_acfe_flexible_layout_title','Form'),(102678,39615,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(102679,39615,'blocks_3_row_content_format','standard'),(102680,39615,'_blocks_3_row_content_format','field_6481ead962881'),(102681,39615,'blocks_3_row_content_title',''),(102682,39615,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(102683,39615,'blocks_3_row_content_heading','Enquire Today'),(102684,39615,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(102685,39615,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(102686,39615,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(102687,39615,'blocks_3_row_content_actions',''),(102688,39615,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(102689,39615,'blocks_3_row_content',''),(102690,39615,'_blocks_3_row_content','field_61a0f5f5b3db0'),(102691,39615,'blocks_3_row_form',''),(102692,39615,'_blocks_3_row_form','field_61a4ff2c0b08e'),(102693,39615,'blocks_3_row_form_button_label',''),(102694,39615,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(102695,39615,'blocks_4_acfe_flexible_toggle',''),(102696,39615,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(102697,39615,'blocks_4_acfe_flexible_layout_title','Tabs'),(102698,39615,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(102699,39615,'blocks_4_options_theme','#ffffff'),(102700,39615,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(102701,39615,'blocks_4_options',''),(102702,39615,'_blocks_4_options','field_6177cfcd8140f'),(102703,39615,'blocks_4_tabs_0_tab_label','What will I learn ?'),(102704,39615,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(102705,39615,'blocks_4_tabs_0_tab_content_title',''),(102706,39615,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(102707,39615,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(102708,39615,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(102709,39615,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(102710,39615,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(102711,39615,'blocks_4_tabs_0_tab_content_actions',''),(102712,39615,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(102713,39615,'blocks_4_tabs_0_tab_content',''),(102714,39615,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(102715,39615,'blocks_4_tabs_0_tab_image','39076'),(102716,39615,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(102717,39615,'blocks_4_tabs_1_tab_label','What do I need ?'),(102718,39615,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(102719,39615,'blocks_4_tabs_1_tab_content_title',''),(102720,39615,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(102721,39615,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(102722,39615,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(102723,39615,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(102724,39615,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(102725,39615,'blocks_4_tabs_1_tab_content_actions',''),(102726,39615,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(102727,39615,'blocks_4_tabs_1_tab_content',''),(102728,39615,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(102729,39615,'blocks_4_tabs_1_tab_image','39223'),(102730,39615,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(102731,39615,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(102732,39615,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(102733,39615,'blocks_4_tabs_2_tab_content_title',''),(102734,39615,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(102735,39615,'blocks_4_tabs_2_tab_content_heading','Locations'),(102736,39615,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(102737,39615,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(102738,39615,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(102739,39615,'blocks_4_tabs_2_tab_content_actions',''),(102740,39615,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(102741,39615,'blocks_4_tabs_2_tab_content',''),(102742,39615,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(102743,39615,'blocks_4_tabs_2_tab_image','39224'),(102744,39615,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(102745,39615,'blocks_4_tabs','3'),(102746,39615,'_blocks_4_tabs','field_6177cff281419'),(102747,39615,'blocks_5_acfe_flexible_toggle',''),(102748,39615,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(102749,39615,'blocks_5_acfe_flexible_layout_title','Text Block'),(102750,39615,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(102751,39615,'blocks_5_options_theme','#b61234'),(102752,39615,'_blocks_5_options_theme','field_6176830e2ad17'),(102753,39615,'blocks_5_options',''),(102754,39615,'_blocks_5_options','field_6176830e2ad16'),(102755,39615,'blocks_5_text_block_heading','Fees & Funding Options'),(102756,39615,'_blocks_5_text_block_heading','field_617669d413097'),(102757,39615,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(102758,39615,'_blocks_5_text_block_content','field_617669ec13098'),(102759,39615,'blocks_6_acfe_flexible_toggle',''),(102760,39615,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(102761,39615,'blocks_6_acfe_flexible_layout_title','Icons'),(102762,39615,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(102763,39615,'blocks_6_options_theme','#b61234'),(102764,39615,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(102765,39615,'blocks_6_options_format','row'),(102766,39615,'_blocks_6_options_format','field_64bfde9a90690'),(102767,39615,'blocks_6_options',''),(102768,39615,'_blocks_6_options','field_64bfdd9b90684'),(102769,39615,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(102770,39615,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(102771,39615,'blocks_6_icon_row_items_0_label','Pay in Full'),(102772,39615,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(102773,39615,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(102774,39615,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(102775,39615,'blocks_6_icon_row_items_1_icon','finance.svg'),(102776,39615,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(102777,39615,'blocks_6_icon_row_items_1_label','0% finance'),(102778,39615,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(102779,39615,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(102780,39615,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(102781,39615,'blocks_6_icon_row_items_2_icon','deposit.svg'),(102782,39615,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(102783,39615,'blocks_6_icon_row_items_2_label','Deposit & balance'),(102784,39615,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(102785,39615,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(102786,39615,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(102787,39615,'blocks_6_icon_row_items','3'),(102788,39615,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(102789,39615,'blocks_7_acfe_flexible_toggle',''),(102790,39615,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(102791,39615,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(102792,39615,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(102793,39615,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(102794,39615,'_blocks_7_content','field_6193c9b5eac84'),(102795,39615,'blocks_8_acfe_flexible_toggle',''),(102796,39615,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(102797,39615,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(102798,39615,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(102799,39615,'blocks_8_testimonial_slider_content_title',''),(102800,39615,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(102801,39615,'blocks_8_testimonial_slider_content_heading','Testimonials'),(102802,39615,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(102803,39615,'blocks_8_testimonial_slider_content_text',''),(102804,39615,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(102805,39615,'blocks_8_testimonial_slider_content_actions',''),(102806,39615,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(102807,39615,'blocks_8_testimonial_slider_content',''),(102808,39615,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(102809,39615,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(102810,39615,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(102811,39615,'blocks_8_testimonial_slider_ambassador_bool','0'),(102812,39615,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(102813,39615,'blocks_9_acfe_flexible_toggle',''),(102814,39615,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(102815,39615,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(102816,39615,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(102817,39615,'blocks_9_options_theme','#ffffff'),(102818,39615,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(102819,39615,'blocks_9_options_state','0'),(102820,39615,'_blocks_9_options_state','field_6239fcb7508c5'),(102821,39615,'blocks_9_options',''),(102822,39615,'_blocks_9_options','field_6177e2991ac44'),(102823,39615,'blocks_9_content_title',''),(102824,39615,'_blocks_9_content_title','field_64d237e8bb1e2'),(102825,39615,'blocks_9_content_heading','Frequently asked questions '),(102826,39615,'_blocks_9_content_heading','field_64d237e8bb1e3'),(102827,39615,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(102828,39615,'_blocks_9_content_text','field_64d237e8bb1e4'),(102829,39615,'blocks_9_content_actions',''),(102830,39615,'_blocks_9_content_actions','field_64d237e8bb1e5'),(102831,39615,'blocks_9_content_align','left'),(102832,39615,'_blocks_9_content_align','field_64d2443e6b6aa'),(102833,39615,'blocks_9_content',''),(102834,39615,'_blocks_9_content','field_64d237e8bb1e1'),(102835,39615,'blocks_9_accordion_content','faqs'),(102836,39615,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(102837,39615,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(102838,39615,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(102839,39615,'blocks_9_actions',''),(102840,39615,'_blocks_9_actions','field_61a746a817f7a'),(102865,39245,'blocks_2_acfe_flexible_toggle',''),(102866,39245,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(102867,39245,'blocks_2_acfe_flexible_layout_title','Form'),(102868,39245,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(102869,39245,'blocks_2_row_content_format','standard'),(102870,39245,'_blocks_2_row_content_format','field_6481ead962881'),(102871,39245,'blocks_2_row_content_title',''),(102872,39245,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(102873,39245,'blocks_2_row_content_heading','Enquire Today'),(102874,39245,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(102875,39245,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(102876,39245,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(102877,39245,'blocks_2_row_content_actions',''),(102878,39245,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(102879,39245,'blocks_2_row_content',''),(102880,39245,'_blocks_2_row_content','field_61a0f5f5b3db0'),(102881,39245,'blocks_2_row_form','40394'),(102882,39245,'_blocks_2_row_form','field_61a4ff2c0b08e'),(102883,39245,'blocks_2_row_form_button_label',''),(102884,39245,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(103031,39616,'hide_hero','0'),(103032,39616,'_hide_hero','field_66a2380fcda39'),(103033,39616,'hero_title','Biomechanics and Podiatrists'),(103034,39616,'_hero_title','field_617571fe285e8'),(103035,39616,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(103036,39616,'_hero_text','field_6175723c285e9'),(103037,39616,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(103038,39616,'_hero_actions_0_button','field_61757281285eb'),(103039,39616,'hero_actions','1'),(103040,39616,'_hero_actions','field_61757270285ea'),(103041,39616,'hero_style','default'),(103042,39616,'_hero_style','field_62051d9dc5324'),(103043,39616,'_thumbnail_id','39247'),(103044,39616,'__thumbnail_id','field_617570855ddaf'),(103045,39616,'hero_image_pos_x','right'),(103046,39616,'_hero_image_pos_x','field_62ec3d05390bb'),(103047,39616,'hero_image_pos_y','top'),(103048,39616,'_hero_image_pos_y','field_62ec3d05390bc'),(103049,39616,'hero_image_pos',''),(103050,39616,'_hero_image_pos','field_62ec3d05390ba'),(103051,39616,'fft_hide_from_listings','0'),(103052,39616,'_fft_hide_from_listings','field_61f1320446ab2'),(103053,39616,'fft_page_format','default'),(103054,39616,'_fft_page_format','field_61ae213f1f218'),(103055,39616,'fft_hide_nav','0'),(103056,39616,'_fft_hide_nav','field_635bd5e43527c'),(103057,39616,'fft_hide_header_call_to_action','0'),(103058,39616,'_fft_hide_header_call_to_action','field_635bd6723527d'),(103059,39616,'fft_page_sitemap','0'),(103060,39616,'_fft_page_sitemap','field_61af9b34e8181'),(103061,39616,'blocks','a:9:{i:0;s:5:\"steps\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:4:\"tabs\";i:4;s:10:\"text_block\";i:5;s:5:\"icons\";i:6;s:16:\"standard_content\";i:7;s:18:\"testimonial_slider\";i:8;s:10:\"accordions\";}'),(103062,39616,'_blocks','field_6176696113096'),(103063,39616,'blocks_0_acfe_flexible_toggle',''),(103064,39616,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(103065,39616,'blocks_0_acfe_flexible_layout_title','Steps'),(103066,39616,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(103067,39616,'blocks_0_row_content_title',''),(103068,39616,'_blocks_0_row_content_title','field_64888cd1e26e0'),(103069,39616,'blocks_0_row_content_heading','Benefits of training with us'),(103070,39616,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(103071,39616,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(103072,39616,'_blocks_0_row_content_text','field_64888ce2e26e2'),(103073,39616,'blocks_0_row_content_actions',''),(103074,39616,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(103075,39616,'blocks_0_row_content',''),(103076,39616,'_blocks_0_row_content','field_64888cb0e26df'),(103077,39616,'blocks_0_steps_0_icon','progression.svg'),(103078,39616,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(103079,39616,'blocks_0_steps_0_title','Earning potential'),(103080,39616,'_blocks_0_steps_0_title','field_64888d94e26e7'),(103081,39616,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(103082,39616,'_blocks_0_steps_0_text','field_64888d99e26e8'),(103083,39616,'blocks_0_steps_1_icon','support.svg'),(103084,39616,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(103085,39616,'blocks_0_steps_1_title','Lifetime Learning Promise'),(103086,39616,'_blocks_0_steps_1_title','field_64888d94e26e7'),(103087,39616,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(103088,39616,'_blocks_0_steps_1_text','field_64888d99e26e8'),(103089,39616,'blocks_0_steps_2_icon','qualification.svg'),(103090,39616,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(103091,39616,'blocks_0_steps_2_title','Evidence based hands on learning'),(103092,39616,'_blocks_0_steps_2_title','field_64888d94e26e7'),(103093,39616,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(103094,39616,'_blocks_0_steps_2_text','field_64888d99e26e8'),(103095,39616,'blocks_0_steps_3_icon','leaders.svg'),(103096,39616,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(103097,39616,'blocks_0_steps_3_title','Stand out from the crowd'),(103098,39616,'_blocks_0_steps_3_title','field_64888d94e26e7'),(103099,39616,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(103100,39616,'_blocks_0_steps_3_text','field_64888d99e26e8'),(103101,39616,'blocks_0_steps','4'),(103102,39616,'_blocks_0_steps','field_64888d44e26e5'),(103103,39616,'blocks_1_acfe_flexible_toggle',''),(103104,39616,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(103105,39616,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(103106,39616,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(103107,39616,'blocks_1_options_theme','#ffffff'),(103108,39616,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(103109,39616,'blocks_1_options_reverse','0'),(103110,39616,'_blocks_1_options_reverse','field_61768049bb8ac'),(103111,39616,'blocks_1_options',''),(103112,39616,'_blocks_1_options','field_617682517c334'),(103113,39616,'blocks_1_split_5050_image','39241'),(103114,39616,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(103115,39616,'blocks_1_split_5050_video',''),(103116,39616,'_blocks_1_split_5050_video','field_6239f3160848a'),(103117,39616,'blocks_1_split_5050_content_title',''),(103118,39616,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(103119,39616,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(103120,39616,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(103121,39616,'blocks_1_split_5050_content_text','This integrated system is enabling podiatrists to find solutions to foot problems through understanding the upper body and shoulders. By assessing the entire body, this unique approach gives podiatrists the ability to retain clients longer and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(103122,39616,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(103123,39616,'blocks_1_split_5050_content_actions',''),(103124,39616,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(103125,39616,'blocks_1_split_5050_content',''),(103126,39616,'_blocks_1_split_5050_content','field_61767afceb8ba'),(103127,39616,'blocks_2_acfe_flexible_toggle',''),(103128,39616,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(103129,39616,'blocks_2_acfe_flexible_layout_title','Form'),(103130,39616,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(103131,39616,'blocks_2_row_content_format','standard'),(103132,39616,'_blocks_2_row_content_format','field_6481ead962881'),(103133,39616,'blocks_2_row_content_title',''),(103134,39616,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(103135,39616,'blocks_2_row_content_heading','Enquire Today'),(103136,39616,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(103137,39616,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(103138,39616,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(103139,39616,'blocks_2_row_content_actions',''),(103140,39616,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(103141,39616,'blocks_2_row_content',''),(103142,39616,'_blocks_2_row_content','field_61a0f5f5b3db0'),(103143,39616,'blocks_2_row_form',''),(103144,39616,'_blocks_2_row_form','field_61a4ff2c0b08e'),(103145,39616,'blocks_2_row_form_button_label',''),(103146,39616,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(103147,39616,'blocks_3_acfe_flexible_toggle',''),(103148,39616,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(103149,39616,'blocks_3_acfe_flexible_layout_title','Tabs'),(103150,39616,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(103151,39616,'blocks_3_options_theme','#ffffff'),(103152,39616,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(103153,39616,'blocks_3_options',''),(103154,39616,'_blocks_3_options','field_6177cfcd8140f'),(103155,39616,'blocks_3_tabs_0_tab_label','What will I learn ?'),(103156,39616,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(103157,39616,'blocks_3_tabs_0_tab_content_title',''),(103158,39616,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(103159,39616,'blocks_3_tabs_0_tab_content_heading','What you’ll learn'),(103160,39616,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(103161,39616,'blocks_3_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(103162,39616,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(103163,39616,'blocks_3_tabs_0_tab_content_actions',''),(103164,39616,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(103165,39616,'blocks_3_tabs_0_tab_content',''),(103166,39616,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(103167,39616,'blocks_3_tabs_0_tab_image','39076');
INSERT INTO `6m7_postmeta` VALUES (103168,39616,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(103169,39616,'blocks_3_tabs_1_tab_label','What do I need ?'),(103170,39616,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(103171,39616,'blocks_3_tabs_1_tab_content_title',''),(103172,39616,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(103173,39616,'blocks_3_tabs_1_tab_content_heading','Entry requirements'),(103174,39616,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(103175,39616,'blocks_3_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(103176,39616,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(103177,39616,'blocks_3_tabs_1_tab_content_actions',''),(103178,39616,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(103179,39616,'blocks_3_tabs_1_tab_content',''),(103180,39616,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(103181,39616,'blocks_3_tabs_1_tab_image','39223'),(103182,39616,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(103183,39616,'blocks_3_tabs_2_tab_label','Where can I learn ?'),(103184,39616,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(103185,39616,'blocks_3_tabs_2_tab_content_title',''),(103186,39616,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(103187,39616,'blocks_3_tabs_2_tab_content_heading','Locations'),(103188,39616,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(103189,39616,'blocks_3_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(103190,39616,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(103191,39616,'blocks_3_tabs_2_tab_content_actions',''),(103192,39616,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(103193,39616,'blocks_3_tabs_2_tab_content',''),(103194,39616,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(103195,39616,'blocks_3_tabs_2_tab_image','39224'),(103196,39616,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(103197,39616,'blocks_3_tabs','3'),(103198,39616,'_blocks_3_tabs','field_6177cff281419'),(103199,39616,'blocks_4_acfe_flexible_toggle',''),(103200,39616,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(103201,39616,'blocks_4_acfe_flexible_layout_title','Text Block'),(103202,39616,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(103203,39616,'blocks_4_options_theme','#b61234'),(103204,39616,'_blocks_4_options_theme','field_6176830e2ad17'),(103205,39616,'blocks_4_options',''),(103206,39616,'_blocks_4_options','field_6176830e2ad16'),(103207,39616,'blocks_4_text_block_heading','Fees & Funding Options'),(103208,39616,'_blocks_4_text_block_heading','field_617669d413097'),(103209,39616,'blocks_4_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(103210,39616,'_blocks_4_text_block_content','field_617669ec13098'),(103211,39616,'blocks_5_acfe_flexible_toggle',''),(103212,39616,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(103213,39616,'blocks_5_acfe_flexible_layout_title','Icons'),(103214,39616,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(103215,39616,'blocks_5_options_theme','#b61234'),(103216,39616,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(103217,39616,'blocks_5_options_format','row'),(103218,39616,'_blocks_5_options_format','field_64bfde9a90690'),(103219,39616,'blocks_5_options',''),(103220,39616,'_blocks_5_options','field_64bfdd9b90684'),(103221,39616,'blocks_5_icon_row_items_0_icon','payment-plans.svg'),(103222,39616,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(103223,39616,'blocks_5_icon_row_items_0_label','Pay in Full'),(103224,39616,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(103225,39616,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(103226,39616,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(103227,39616,'blocks_5_icon_row_items_1_icon','finance.svg'),(103228,39616,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(103229,39616,'blocks_5_icon_row_items_1_label','0% finance'),(103230,39616,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(103231,39616,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(103232,39616,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(103233,39616,'blocks_5_icon_row_items_2_icon','deposit.svg'),(103234,39616,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(103235,39616,'blocks_5_icon_row_items_2_label','Deposit & balance'),(103236,39616,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(103237,39616,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(103238,39616,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(103239,39616,'blocks_5_icon_row_items','3'),(103240,39616,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(103241,39616,'blocks_6_acfe_flexible_toggle',''),(103242,39616,'_blocks_6_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(103243,39616,'blocks_6_acfe_flexible_layout_title','Standard/Editorial Content'),(103244,39616,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(103245,39616,'blocks_6_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(103246,39616,'_blocks_6_content','field_6193c9b5eac84'),(103247,39616,'blocks_7_acfe_flexible_toggle',''),(103248,39616,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(103249,39616,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(103250,39616,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(103251,39616,'blocks_7_testimonial_slider_content_title',''),(103252,39616,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(103253,39616,'blocks_7_testimonial_slider_content_heading','Testimonials'),(103254,39616,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(103255,39616,'blocks_7_testimonial_slider_content_text',''),(103256,39616,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(103257,39616,'blocks_7_testimonial_slider_content_actions',''),(103258,39616,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(103259,39616,'blocks_7_testimonial_slider_content',''),(103260,39616,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(103261,39616,'blocks_7_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(103262,39616,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(103263,39616,'blocks_7_testimonial_slider_ambassador_bool','0'),(103264,39616,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(103265,39616,'blocks_8_acfe_flexible_toggle',''),(103266,39616,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(103267,39616,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(103268,39616,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(103269,39616,'blocks_8_options_theme','#ffffff'),(103270,39616,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(103271,39616,'blocks_8_options_state','0'),(103272,39616,'_blocks_8_options_state','field_6239fcb7508c5'),(103273,39616,'blocks_8_options',''),(103274,39616,'_blocks_8_options','field_6177e2991ac44'),(103275,39616,'blocks_8_content_title',''),(103276,39616,'_blocks_8_content_title','field_64d237e8bb1e2'),(103277,39616,'blocks_8_content_heading','Frequently asked questions '),(103278,39616,'_blocks_8_content_heading','field_64d237e8bb1e3'),(103279,39616,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(103280,39616,'_blocks_8_content_text','field_64d237e8bb1e4'),(103281,39616,'blocks_8_content_actions',''),(103282,39616,'_blocks_8_content_actions','field_64d237e8bb1e5'),(103283,39616,'blocks_8_content_align','left'),(103284,39616,'_blocks_8_content_align','field_64d2443e6b6aa'),(103285,39616,'blocks_8_content',''),(103286,39616,'_blocks_8_content','field_64d237e8bb1e1'),(103287,39616,'blocks_8_accordion_content','faqs'),(103288,39616,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(103289,39616,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(103290,39616,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(103291,39616,'blocks_8_actions',''),(103292,39616,'_blocks_8_actions','field_61a746a817f7a'),(103293,39617,'_wp_attached_file','2024/09/foot-posture-index-scaled.jpg'),(103294,39617,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:37:\"2024/09/foot-posture-index-scaled.jpg\";s:8:\"filesize\";i:541300;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"foot-posture-index-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127232;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"foot-posture-index-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182106;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"foot-posture-index-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57616;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"foot-posture-index-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105568;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:32:\"foot-posture-index-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253704;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:32:\"foot-posture-index-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:383589;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:30:\"foot-posture-index-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69473;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:30:\"foot-posture-index-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171402;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:32:\"foot-posture-index-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:252416;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:30:\"foot-posture-index-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57490;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:30:\"foot-posture-index-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127232;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:31:\"foot-posture-index-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182106;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:30:\"foot-posture-index-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60153;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:30:\"foot-posture-index-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138730;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:31:\"foot-posture-index-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201729;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:30:\"foot-posture-index-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60913;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:30:\"foot-posture-index-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139170;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:31:\"foot-posture-index-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200243;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:30:\"foot-posture-index-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53044;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:30:\"foot-posture-index-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112581;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:31:\"foot-posture-index-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159342;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583598467\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:22:\"foot-posture-index.jpg\";}'),(103295,39617,'_wp_attachment_image_alt','Woman with red curly hair, wearing a long sleeve grey top, and black leggings, treating a persons post posture as they are laying on a massage bench.'),(103296,39618,'hide_hero','0'),(103297,39618,'_hide_hero','field_66a2380fcda39'),(103298,39618,'hero_title','Biomechanics and Podiatrists'),(103299,39618,'_hero_title','field_617571fe285e8'),(103300,39618,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(103301,39618,'_hero_text','field_6175723c285e9'),(103302,39618,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(103303,39618,'_hero_actions_0_button','field_61757281285eb'),(103304,39618,'hero_actions','1'),(103305,39618,'_hero_actions','field_61757270285ea'),(103306,39618,'hero_style','default'),(103307,39618,'_hero_style','field_62051d9dc5324'),(103308,39618,'_thumbnail_id','39247'),(103309,39618,'__thumbnail_id','field_617570855ddaf'),(103310,39618,'hero_image_pos_x','right'),(103311,39618,'_hero_image_pos_x','field_62ec3d05390bb'),(103312,39618,'hero_image_pos_y','top'),(103313,39618,'_hero_image_pos_y','field_62ec3d05390bc'),(103314,39618,'hero_image_pos',''),(103315,39618,'_hero_image_pos','field_62ec3d05390ba'),(103316,39618,'fft_hide_from_listings','0'),(103317,39618,'_fft_hide_from_listings','field_61f1320446ab2'),(103318,39618,'fft_page_format','default'),(103319,39618,'_fft_page_format','field_61ae213f1f218'),(103320,39618,'fft_hide_nav','0'),(103321,39618,'_fft_hide_nav','field_635bd5e43527c'),(103322,39618,'fft_hide_header_call_to_action','0'),(103323,39618,'_fft_hide_header_call_to_action','field_635bd6723527d'),(103324,39618,'fft_page_sitemap','0'),(103325,39618,'_fft_page_sitemap','field_61af9b34e8181'),(103326,39618,'blocks','a:9:{i:0;s:5:\"steps\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:4:\"tabs\";i:4;s:10:\"text_block\";i:5;s:5:\"icons\";i:6;s:16:\"standard_content\";i:7;s:18:\"testimonial_slider\";i:8;s:10:\"accordions\";}'),(103327,39618,'_blocks','field_6176696113096'),(103328,39618,'blocks_0_acfe_flexible_toggle',''),(103329,39618,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(103330,39618,'blocks_0_acfe_flexible_layout_title','Steps'),(103331,39618,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(103332,39618,'blocks_0_row_content_title',''),(103333,39618,'_blocks_0_row_content_title','field_64888cd1e26e0'),(103334,39618,'blocks_0_row_content_heading','Benefits of training with us'),(103335,39618,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(103336,39618,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(103337,39618,'_blocks_0_row_content_text','field_64888ce2e26e2'),(103338,39618,'blocks_0_row_content_actions',''),(103339,39618,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(103340,39618,'blocks_0_row_content',''),(103341,39618,'_blocks_0_row_content','field_64888cb0e26df'),(103342,39618,'blocks_0_steps_0_icon','progression.svg'),(103343,39618,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(103344,39618,'blocks_0_steps_0_title','Earning potential'),(103345,39618,'_blocks_0_steps_0_title','field_64888d94e26e7'),(103346,39618,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(103347,39618,'_blocks_0_steps_0_text','field_64888d99e26e8'),(103348,39618,'blocks_0_steps_1_icon','support.svg'),(103349,39618,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(103350,39618,'blocks_0_steps_1_title','Lifetime Learning Promise'),(103351,39618,'_blocks_0_steps_1_title','field_64888d94e26e7'),(103352,39618,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(103353,39618,'_blocks_0_steps_1_text','field_64888d99e26e8'),(103354,39618,'blocks_0_steps_2_icon','qualification.svg'),(103355,39618,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(103356,39618,'blocks_0_steps_2_title','Evidence based hands on learning'),(103357,39618,'_blocks_0_steps_2_title','field_64888d94e26e7'),(103358,39618,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(103359,39618,'_blocks_0_steps_2_text','field_64888d99e26e8'),(103360,39618,'blocks_0_steps_3_icon','leaders.svg'),(103361,39618,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(103362,39618,'blocks_0_steps_3_title','Stand out from the crowd'),(103363,39618,'_blocks_0_steps_3_title','field_64888d94e26e7'),(103364,39618,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(103365,39618,'_blocks_0_steps_3_text','field_64888d99e26e8'),(103366,39618,'blocks_0_steps','4'),(103367,39618,'_blocks_0_steps','field_64888d44e26e5'),(103368,39618,'blocks_1_acfe_flexible_toggle',''),(103369,39618,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(103370,39618,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(103371,39618,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(103372,39618,'blocks_1_options_theme','#ffffff'),(103373,39618,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(103374,39618,'blocks_1_options_reverse','0'),(103375,39618,'_blocks_1_options_reverse','field_61768049bb8ac'),(103376,39618,'blocks_1_options',''),(103377,39618,'_blocks_1_options','field_617682517c334'),(103378,39618,'blocks_1_split_5050_image','39617'),(103379,39618,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(103380,39618,'blocks_1_split_5050_video',''),(103381,39618,'_blocks_1_split_5050_video','field_6239f3160848a'),(103382,39618,'blocks_1_split_5050_content_title',''),(103383,39618,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(103384,39618,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(103385,39618,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(103386,39618,'blocks_1_split_5050_content_text','This integrated system is enabling podiatrists to find solutions to foot problems through understanding the upper body and shoulders. By assessing the entire body, this unique approach gives podiatrists the ability to retain clients longer and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(103387,39618,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(103388,39618,'blocks_1_split_5050_content_actions',''),(103389,39618,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(103390,39618,'blocks_1_split_5050_content',''),(103391,39618,'_blocks_1_split_5050_content','field_61767afceb8ba'),(103392,39618,'blocks_2_acfe_flexible_toggle',''),(103393,39618,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(103394,39618,'blocks_2_acfe_flexible_layout_title','Form'),(103395,39618,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(103396,39618,'blocks_2_row_content_format','standard'),(103397,39618,'_blocks_2_row_content_format','field_6481ead962881'),(103398,39618,'blocks_2_row_content_title',''),(103399,39618,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(103400,39618,'blocks_2_row_content_heading','Enquire Today'),(103401,39618,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(103402,39618,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(103403,39618,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(103404,39618,'blocks_2_row_content_actions',''),(103405,39618,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(103406,39618,'blocks_2_row_content',''),(103407,39618,'_blocks_2_row_content','field_61a0f5f5b3db0'),(103408,39618,'blocks_2_row_form',''),(103409,39618,'_blocks_2_row_form','field_61a4ff2c0b08e'),(103410,39618,'blocks_2_row_form_button_label',''),(103411,39618,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(103412,39618,'blocks_3_acfe_flexible_toggle',''),(103413,39618,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(103414,39618,'blocks_3_acfe_flexible_layout_title','Tabs'),(103415,39618,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(103416,39618,'blocks_3_options_theme','#ffffff'),(103417,39618,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(103418,39618,'blocks_3_options',''),(103419,39618,'_blocks_3_options','field_6177cfcd8140f'),(103420,39618,'blocks_3_tabs_0_tab_label','What will I learn ?'),(103421,39618,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(103422,39618,'blocks_3_tabs_0_tab_content_title',''),(103423,39618,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(103424,39618,'blocks_3_tabs_0_tab_content_heading','What you’ll learn'),(103425,39618,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(103426,39618,'blocks_3_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(103427,39618,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(103428,39618,'blocks_3_tabs_0_tab_content_actions',''),(103429,39618,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(103430,39618,'blocks_3_tabs_0_tab_content',''),(103431,39618,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(103432,39618,'blocks_3_tabs_0_tab_image','39076'),(103433,39618,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(103434,39618,'blocks_3_tabs_1_tab_label','What do I need ?'),(103435,39618,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(103436,39618,'blocks_3_tabs_1_tab_content_title',''),(103437,39618,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(103438,39618,'blocks_3_tabs_1_tab_content_heading','Entry requirements'),(103439,39618,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(103440,39618,'blocks_3_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(103441,39618,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(103442,39618,'blocks_3_tabs_1_tab_content_actions',''),(103443,39618,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(103444,39618,'blocks_3_tabs_1_tab_content',''),(103445,39618,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(103446,39618,'blocks_3_tabs_1_tab_image','39223'),(103447,39618,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(103448,39618,'blocks_3_tabs_2_tab_label','Where can I learn ?'),(103449,39618,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(103450,39618,'blocks_3_tabs_2_tab_content_title',''),(103451,39618,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(103452,39618,'blocks_3_tabs_2_tab_content_heading','Locations'),(103453,39618,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(103454,39618,'blocks_3_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(103455,39618,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(103456,39618,'blocks_3_tabs_2_tab_content_actions',''),(103457,39618,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(103458,39618,'blocks_3_tabs_2_tab_content',''),(103459,39618,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(103460,39618,'blocks_3_tabs_2_tab_image','39224'),(103461,39618,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(103462,39618,'blocks_3_tabs','3'),(103463,39618,'_blocks_3_tabs','field_6177cff281419'),(103464,39618,'blocks_4_acfe_flexible_toggle',''),(103465,39618,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(103466,39618,'blocks_4_acfe_flexible_layout_title','Text Block'),(103467,39618,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(103468,39618,'blocks_4_options_theme','#b61234'),(103469,39618,'_blocks_4_options_theme','field_6176830e2ad17'),(103470,39618,'blocks_4_options',''),(103471,39618,'_blocks_4_options','field_6176830e2ad16'),(103472,39618,'blocks_4_text_block_heading','Fees & Funding Options'),(103473,39618,'_blocks_4_text_block_heading','field_617669d413097'),(103474,39618,'blocks_4_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(103475,39618,'_blocks_4_text_block_content','field_617669ec13098'),(103476,39618,'blocks_5_acfe_flexible_toggle',''),(103477,39618,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(103478,39618,'blocks_5_acfe_flexible_layout_title','Icons'),(103479,39618,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(103480,39618,'blocks_5_options_theme','#b61234'),(103481,39618,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(103482,39618,'blocks_5_options_format','row'),(103483,39618,'_blocks_5_options_format','field_64bfde9a90690'),(103484,39618,'blocks_5_options',''),(103485,39618,'_blocks_5_options','field_64bfdd9b90684'),(103486,39618,'blocks_5_icon_row_items_0_icon','payment-plans.svg'),(103487,39618,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(103488,39618,'blocks_5_icon_row_items_0_label','Pay in Full'),(103489,39618,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(103490,39618,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(103491,39618,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(103492,39618,'blocks_5_icon_row_items_1_icon','finance.svg'),(103493,39618,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(103494,39618,'blocks_5_icon_row_items_1_label','0% finance'),(103495,39618,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(103496,39618,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(103497,39618,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(103498,39618,'blocks_5_icon_row_items_2_icon','deposit.svg'),(103499,39618,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(103500,39618,'blocks_5_icon_row_items_2_label','Deposit & balance'),(103501,39618,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(103502,39618,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(103503,39618,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(103504,39618,'blocks_5_icon_row_items','3'),(103505,39618,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(103506,39618,'blocks_6_acfe_flexible_toggle',''),(103507,39618,'_blocks_6_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(103508,39618,'blocks_6_acfe_flexible_layout_title','Standard/Editorial Content'),(103509,39618,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(103510,39618,'blocks_6_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(103511,39618,'_blocks_6_content','field_6193c9b5eac84'),(103512,39618,'blocks_7_acfe_flexible_toggle',''),(103513,39618,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(103514,39618,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(103515,39618,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(103516,39618,'blocks_7_testimonial_slider_content_title',''),(103517,39618,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(103518,39618,'blocks_7_testimonial_slider_content_heading','Testimonials'),(103519,39618,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(103520,39618,'blocks_7_testimonial_slider_content_text',''),(103521,39618,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(103522,39618,'blocks_7_testimonial_slider_content_actions',''),(103523,39618,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(103524,39618,'blocks_7_testimonial_slider_content',''),(103525,39618,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(103526,39618,'blocks_7_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(103527,39618,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(103528,39618,'blocks_7_testimonial_slider_ambassador_bool','0'),(103529,39618,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(103530,39618,'blocks_8_acfe_flexible_toggle',''),(103531,39618,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(103532,39618,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(103533,39618,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(103534,39618,'blocks_8_options_theme','#ffffff'),(103535,39618,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(103536,39618,'blocks_8_options_state','0'),(103537,39618,'_blocks_8_options_state','field_6239fcb7508c5'),(103538,39618,'blocks_8_options',''),(103539,39618,'_blocks_8_options','field_6177e2991ac44'),(103540,39618,'blocks_8_content_title',''),(103541,39618,'_blocks_8_content_title','field_64d237e8bb1e2'),(103542,39618,'blocks_8_content_heading','Frequently asked questions '),(103543,39618,'_blocks_8_content_heading','field_64d237e8bb1e3'),(103544,39618,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(103545,39618,'_blocks_8_content_text','field_64d237e8bb1e4'),(103546,39618,'blocks_8_content_actions',''),(103547,39618,'_blocks_8_content_actions','field_64d237e8bb1e5'),(103548,39618,'blocks_8_content_align','left'),(103549,39618,'_blocks_8_content_align','field_64d2443e6b6aa'),(103550,39618,'blocks_8_content',''),(103551,39618,'_blocks_8_content','field_64d237e8bb1e1'),(103552,39618,'blocks_8_accordion_content','faqs'),(103553,39618,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(103554,39618,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(103555,39618,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(103556,39618,'blocks_8_actions',''),(103557,39618,'_blocks_8_actions','field_61a746a817f7a'),(104118,39066,'_yoast_wpseo_focuskw','Biomechanics Courses'),(104119,39066,'_yoast_wpseo_title','Courses | Biomechanics Education'),(104120,39066,'_yoast_wpseo_metadesc','Accessible biomechanics courses for fitness professionals, offering clear insights into body function and promoting professional growth.'),(104121,39066,'_yoast_wpseo_linkdex','46'),(104402,39622,'_wp_attached_file','2024/09/DSC_6135-scaled.jpg'),(104403,39622,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:27:\"2024/09/DSC_6135-scaled.jpg\";s:8:\"filesize\";i:715459;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC_6135-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151751;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC_6135-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221567;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_6135-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63240;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC_6135-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124209;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:316681;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC_6135-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:490478;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6135-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73370;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC_6135-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190844;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:285372;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6135-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63189;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC_6135-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150538;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC_6135-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220316;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6135-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62497;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC_6135-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149889;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535278872\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC_6135.jpg\";}'),(104405,39148,'_yoast_wpseo_focuskw','Get started in Biomechanics Coaching'),(104406,39148,'_yoast_wpseo_title','Getting Started | Biomechanics Education'),(104407,39148,'_yoast_wpseo_metadesc','Get started with our courses. Discover essential resources to begin your journey in biomechanics and fitness education with expert training.'),(104408,39148,'_yoast_wpseo_linkdex','35'),(104409,39623,'_wp_attached_file','2024/09/DSC_6135-1-scaled.jpg'),(104410,39623,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:29:\"2024/09/DSC_6135-1-scaled.jpg\";s:8:\"filesize\";i:715459;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151751;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"DSC_6135-1-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221567;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63240;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124209;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"DSC_6135-1-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:316681;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"DSC_6135-1-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:490478;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73370;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190844;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:24:\"DSC_6135-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:285372;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63189;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150538;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:23:\"DSC_6135-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:220316;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62497;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149889;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:23:\"DSC_6135-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221414;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65444;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160811;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:23:\"DSC_6135-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:236654;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59272;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:22:\"DSC_6135-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137163;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:23:\"DSC_6135-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198554;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535278872\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"DSC_6135-1.jpg\";}'),(104411,39623,'_wp_attachment_image_alt','Biomechanics Education Diploma teaching workshop'),(104412,39624,'hide_hero','0'),(104413,39624,'_hide_hero','field_66a2380fcda39'),(104414,39624,'hero_title','How to Become a Biomechanics Coach'),(104415,39624,'_hero_title','field_617571fe285e8'),(104416,39624,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(104417,39624,'_hero_text','field_6175723c285e9'),(104418,39624,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(104419,39624,'_hero_actions_0_button','field_61757281285eb'),(104420,39624,'hero_actions','1'),(104421,39624,'_hero_actions','field_61757270285ea'),(104422,39624,'hero_style','default'),(104423,39624,'_hero_style','field_62051d9dc5324'),(104424,39624,'_thumbnail_id','39454'),(104425,39624,'__thumbnail_id','field_617570855ddaf'),(104426,39624,'hero_image_pos_x','right'),(104427,39624,'_hero_image_pos_x','field_62ec3d05390bb'),(104428,39624,'hero_image_pos_y','top'),(104429,39624,'_hero_image_pos_y','field_62ec3d05390bc'),(104430,39624,'hero_image_pos',''),(104431,39624,'_hero_image_pos','field_62ec3d05390ba'),(104432,39624,'fft_hide_from_listings','0'),(104433,39624,'_fft_hide_from_listings','field_61f1320446ab2'),(104434,39624,'fft_page_format','default'),(104435,39624,'_fft_page_format','field_61ae213f1f218'),(104436,39624,'fft_hide_nav','0'),(104437,39624,'_fft_hide_nav','field_635bd5e43527c'),(104438,39624,'fft_hide_header_call_to_action','0'),(104439,39624,'_fft_hide_header_call_to_action','field_635bd6723527d'),(104440,39624,'fft_page_sitemap','0'),(104441,39624,'_fft_page_sitemap','field_61af9b34e8181'),(104442,39624,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(104443,39624,'_blocks','field_6176696113096'),(104444,39624,'blocks_0_acfe_flexible_toggle',''),(104445,39624,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(104446,39624,'blocks_0_acfe_flexible_layout_title','Steps'),(104447,39624,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(104448,39624,'blocks_0_row_content_title',''),(104449,39624,'_blocks_0_row_content_title','field_64888cd1e26e0'),(104450,39624,'blocks_0_row_content_heading','Benefits of training with us'),(104451,39624,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(104452,39624,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(104453,39624,'_blocks_0_row_content_text','field_64888ce2e26e2'),(104454,39624,'blocks_0_row_content_actions',''),(104455,39624,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(104456,39624,'blocks_0_row_content',''),(104457,39624,'_blocks_0_row_content','field_64888cb0e26df'),(104458,39624,'blocks_0_steps_0_icon','progression.svg'),(104459,39624,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(104460,39624,'blocks_0_steps_0_title','Earning potential'),(104461,39624,'_blocks_0_steps_0_title','field_64888d94e26e7'),(104462,39624,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(104463,39624,'_blocks_0_steps_0_text','field_64888d99e26e8'),(104464,39624,'blocks_0_steps_1_icon','support.svg'),(104465,39624,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(104466,39624,'blocks_0_steps_1_title','Lifetime Learning Promise'),(104467,39624,'_blocks_0_steps_1_title','field_64888d94e26e7'),(104468,39624,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(104469,39624,'_blocks_0_steps_1_text','field_64888d99e26e8'),(104470,39624,'blocks_0_steps_2_icon','qualification.svg'),(104471,39624,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(104472,39624,'blocks_0_steps_2_title','Evidence based hands on learning'),(104473,39624,'_blocks_0_steps_2_title','field_64888d94e26e7'),(104474,39624,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(104475,39624,'_blocks_0_steps_2_text','field_64888d99e26e8'),(104476,39624,'blocks_0_steps_3_icon','leaders.svg'),(104477,39624,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(104478,39624,'blocks_0_steps_3_title','Stand out from the crowd'),(104479,39624,'_blocks_0_steps_3_title','field_64888d94e26e7'),(104480,39624,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(104481,39624,'_blocks_0_steps_3_text','field_64888d99e26e8'),(104482,39624,'blocks_0_steps','4'),(104483,39624,'_blocks_0_steps','field_64888d44e26e5'),(104484,39624,'blocks_1_acfe_flexible_toggle',''),(104485,39624,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(104486,39624,'blocks_1_acfe_flexible_layout_title','Video'),(104487,39624,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(104488,39624,'blocks_1_size','large'),(104489,39624,'_blocks_1_size','field_6487038f297c1'),(104490,39624,'blocks_1_row_content_title',''),(104491,39624,'_blocks_1_row_content_title','field_64870132a865d'),(104492,39624,'blocks_1_row_content_heading',''),(104493,39624,'_blocks_1_row_content_heading','field_64870142a865e'),(104494,39624,'blocks_1_row_content_text',''),(104495,39624,'_blocks_1_row_content_text','field_64870148a865f'),(104496,39624,'blocks_1_row_content',''),(104497,39624,'_blocks_1_row_content','field_6487008ba865c'),(104498,39624,'blocks_1_video_src',''),(104499,39624,'_blocks_1_video_src','field_6193c4a98ec07'),(104500,39624,'blocks_1_video_thumbnail',''),(104501,39624,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(104502,39624,'blocks_2_acfe_flexible_toggle',''),(104503,39624,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(104504,39624,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(104505,39624,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(104506,39624,'blocks_2_options_theme','#ffffff'),(104507,39624,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(104508,39624,'blocks_2_options_reverse','0'),(104509,39624,'_blocks_2_options_reverse','field_61768049bb8ac'),(104510,39624,'blocks_2_options',''),(104511,39624,'_blocks_2_options','field_617682517c334'),(104512,39624,'blocks_2_split_5050_image','39623'),(104513,39624,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(104514,39624,'blocks_2_split_5050_video',''),(104515,39624,'_blocks_2_split_5050_video','field_6239f3160848a'),(104516,39624,'blocks_2_split_5050_content_title',''),(104517,39624,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(104518,39624,'blocks_2_split_5050_content_heading','Why it’s Relevant to You !'),(104519,39624,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(104520,39624,'blocks_2_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of numerous injuries within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(104521,39624,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(104522,39624,'blocks_2_split_5050_content_actions',''),(104523,39624,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(104524,39624,'blocks_2_split_5050_content',''),(104525,39624,'_blocks_2_split_5050_content','field_61767afceb8ba'),(104526,39624,'blocks_3_acfe_flexible_toggle',''),(104527,39624,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(104528,39624,'blocks_3_acfe_flexible_layout_title','Form'),(104529,39624,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(104530,39624,'blocks_3_row_content_format','standard'),(104531,39624,'_blocks_3_row_content_format','field_6481ead962881'),(104532,39624,'blocks_3_row_content_title',''),(104533,39624,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(104534,39624,'blocks_3_row_content_heading','Enquire Today'),(104535,39624,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(104536,39624,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(104537,39624,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(104538,39624,'blocks_3_row_content_actions',''),(104539,39624,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(104540,39624,'blocks_3_row_content',''),(104541,39624,'_blocks_3_row_content','field_61a0f5f5b3db0'),(104542,39624,'blocks_3_row_form',''),(104543,39624,'_blocks_3_row_form','field_61a4ff2c0b08e'),(104544,39624,'blocks_3_row_form_button_label',''),(104545,39624,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(104546,39624,'blocks_4_acfe_flexible_toggle',''),(104547,39624,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(104548,39624,'blocks_4_acfe_flexible_layout_title','Tabs'),(104549,39624,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(104550,39624,'blocks_4_options_theme','#ffffff'),(104551,39624,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(104552,39624,'blocks_4_options',''),(104553,39624,'_blocks_4_options','field_6177cfcd8140f'),(104554,39624,'blocks_4_tabs_0_tab_label','What will I learn ?'),(104555,39624,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(104556,39624,'blocks_4_tabs_0_tab_content_title',''),(104557,39624,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(104558,39624,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(104559,39624,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(104560,39624,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(104561,39624,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(104562,39624,'blocks_4_tabs_0_tab_content_actions',''),(104563,39624,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(104564,39624,'blocks_4_tabs_0_tab_content',''),(104565,39624,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(104566,39624,'blocks_4_tabs_0_tab_image','39076'),(104567,39624,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(104568,39624,'blocks_4_tabs_1_tab_label','What do I need ?'),(104569,39624,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(104570,39624,'blocks_4_tabs_1_tab_content_title',''),(104571,39624,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(104572,39624,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(104573,39624,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(104574,39624,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(104575,39624,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(104576,39624,'blocks_4_tabs_1_tab_content_actions',''),(104577,39624,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(104578,39624,'blocks_4_tabs_1_tab_content',''),(104579,39624,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(104580,39624,'blocks_4_tabs_1_tab_image','39223'),(104581,39624,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(104582,39624,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(104583,39624,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(104584,39624,'blocks_4_tabs_2_tab_content_title',''),(104585,39624,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(104586,39624,'blocks_4_tabs_2_tab_content_heading','Locations'),(104587,39624,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(104588,39624,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(104589,39624,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(104590,39624,'blocks_4_tabs_2_tab_content_actions',''),(104591,39624,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(104592,39624,'blocks_4_tabs_2_tab_content',''),(104593,39624,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(104594,39624,'blocks_4_tabs_2_tab_image','39224'),(104595,39624,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(104596,39624,'blocks_4_tabs','3'),(104597,39624,'_blocks_4_tabs','field_6177cff281419'),(104598,39624,'blocks_5_acfe_flexible_toggle',''),(104599,39624,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(104600,39624,'blocks_5_acfe_flexible_layout_title','Text Block'),(104601,39624,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(104602,39624,'blocks_5_options_theme','#b61234'),(104603,39624,'_blocks_5_options_theme','field_6176830e2ad17'),(104604,39624,'blocks_5_options',''),(104605,39624,'_blocks_5_options','field_6176830e2ad16'),(104606,39624,'blocks_5_text_block_heading','Fees & Funding Options'),(104607,39624,'_blocks_5_text_block_heading','field_617669d413097'),(104608,39624,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(104609,39624,'_blocks_5_text_block_content','field_617669ec13098'),(104610,39624,'blocks_6_acfe_flexible_toggle',''),(104611,39624,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(104612,39624,'blocks_6_acfe_flexible_layout_title','Icons'),(104613,39624,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(104614,39624,'blocks_6_options_theme','#b61234'),(104615,39624,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(104616,39624,'blocks_6_options_format','row'),(104617,39624,'_blocks_6_options_format','field_64bfde9a90690'),(104618,39624,'blocks_6_options',''),(104619,39624,'_blocks_6_options','field_64bfdd9b90684'),(104620,39624,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(104621,39624,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(104622,39624,'blocks_6_icon_row_items_0_label','Pay in Full'),(104623,39624,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(104624,39624,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(104625,39624,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(104626,39624,'blocks_6_icon_row_items_1_icon','finance.svg'),(104627,39624,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(104628,39624,'blocks_6_icon_row_items_1_label','0% finance'),(104629,39624,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(104630,39624,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(104631,39624,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(104632,39624,'blocks_6_icon_row_items_2_icon','deposit.svg'),(104633,39624,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(104634,39624,'blocks_6_icon_row_items_2_label','Deposit & balance'),(104635,39624,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(104636,39624,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(104637,39624,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(104638,39624,'blocks_6_icon_row_items','3'),(104639,39624,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(104640,39624,'blocks_7_acfe_flexible_toggle',''),(104641,39624,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(104642,39624,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(104643,39624,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(104644,39624,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(104645,39624,'_blocks_7_content','field_6193c9b5eac84'),(104646,39624,'blocks_8_acfe_flexible_toggle',''),(104647,39624,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(104648,39624,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(104649,39624,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(104650,39624,'blocks_8_testimonial_slider_content_title',''),(104651,39624,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(104652,39624,'blocks_8_testimonial_slider_content_heading','Testimonials'),(104653,39624,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(104654,39624,'blocks_8_testimonial_slider_content_text',''),(104655,39624,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(104656,39624,'blocks_8_testimonial_slider_content_actions',''),(104657,39624,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(104658,39624,'blocks_8_testimonial_slider_content',''),(104659,39624,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(104660,39624,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(104661,39624,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(104662,39624,'blocks_8_testimonial_slider_ambassador_bool','0'),(104663,39624,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(104664,39624,'blocks_9_acfe_flexible_toggle',''),(104665,39624,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(104666,39624,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(104667,39624,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(104668,39624,'blocks_9_options_theme','#ffffff'),(104669,39624,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(104670,39624,'blocks_9_options_state','0'),(104671,39624,'_blocks_9_options_state','field_6239fcb7508c5'),(104672,39624,'blocks_9_options',''),(104673,39624,'_blocks_9_options','field_6177e2991ac44'),(104674,39624,'blocks_9_content_title',''),(104675,39624,'_blocks_9_content_title','field_64d237e8bb1e2'),(104676,39624,'blocks_9_content_heading','Frequently asked questions '),(104677,39624,'_blocks_9_content_heading','field_64d237e8bb1e3'),(104678,39624,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(104679,39624,'_blocks_9_content_text','field_64d237e8bb1e4'),(104680,39624,'blocks_9_content_actions',''),(104681,39624,'_blocks_9_content_actions','field_64d237e8bb1e5'),(104682,39624,'blocks_9_content_align','left'),(104683,39624,'_blocks_9_content_align','field_64d2443e6b6aa'),(104684,39624,'blocks_9_content',''),(104685,39624,'_blocks_9_content','field_64d237e8bb1e1'),(104686,39624,'blocks_9_accordion_content','faqs'),(104687,39624,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(104688,39624,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(104689,39624,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(104690,39624,'blocks_9_actions',''),(104691,39624,'_blocks_9_actions','field_61a746a817f7a'),(104692,39625,'hide_hero','0'),(104693,39625,'_hide_hero','field_66a2380fcda39'),(104694,39625,'hero_title','How to Become a Biomechanics Coach'),(104695,39625,'_hero_title','field_617571fe285e8'),(104696,39625,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(104697,39625,'_hero_text','field_6175723c285e9'),(104698,39625,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(104699,39625,'_hero_actions_0_button','field_61757281285eb'),(104700,39625,'hero_actions','1'),(104701,39625,'_hero_actions','field_61757270285ea'),(104702,39625,'hero_style','default'),(104703,39625,'_hero_style','field_62051d9dc5324'),(104704,39625,'_thumbnail_id','39454'),(104705,39625,'__thumbnail_id','field_617570855ddaf'),(104706,39625,'hero_image_pos_x','right'),(104707,39625,'_hero_image_pos_x','field_62ec3d05390bb'),(104708,39625,'hero_image_pos_y','top'),(104709,39625,'_hero_image_pos_y','field_62ec3d05390bc'),(104710,39625,'hero_image_pos',''),(104711,39625,'_hero_image_pos','field_62ec3d05390ba'),(104712,39625,'fft_hide_from_listings','0'),(104713,39625,'_fft_hide_from_listings','field_61f1320446ab2'),(104714,39625,'fft_page_format','default'),(104715,39625,'_fft_page_format','field_61ae213f1f218'),(104716,39625,'fft_hide_nav','0'),(104717,39625,'_fft_hide_nav','field_635bd5e43527c'),(104718,39625,'fft_hide_header_call_to_action','0'),(104719,39625,'_fft_hide_header_call_to_action','field_635bd6723527d'),(104720,39625,'fft_page_sitemap','0'),(104721,39625,'_fft_page_sitemap','field_61af9b34e8181'),(104722,39625,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(104723,39625,'_blocks','field_6176696113096'),(104724,39625,'blocks_0_acfe_flexible_toggle',''),(104725,39625,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(104726,39625,'blocks_0_acfe_flexible_layout_title','Steps'),(104727,39625,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(104728,39625,'blocks_0_row_content_title',''),(104729,39625,'_blocks_0_row_content_title','field_64888cd1e26e0'),(104730,39625,'blocks_0_row_content_heading','Benefits of training with us'),(104731,39625,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(104732,39625,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(104733,39625,'_blocks_0_row_content_text','field_64888ce2e26e2'),(104734,39625,'blocks_0_row_content_actions',''),(104735,39625,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(104736,39625,'blocks_0_row_content',''),(104737,39625,'_blocks_0_row_content','field_64888cb0e26df'),(104738,39625,'blocks_0_steps_0_icon','progression.svg'),(104739,39625,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(104740,39625,'blocks_0_steps_0_title','Earning potential'),(104741,39625,'_blocks_0_steps_0_title','field_64888d94e26e7'),(104742,39625,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(104743,39625,'_blocks_0_steps_0_text','field_64888d99e26e8'),(104744,39625,'blocks_0_steps_1_icon','support.svg'),(104745,39625,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(104746,39625,'blocks_0_steps_1_title','Lifetime Learning Promise'),(104747,39625,'_blocks_0_steps_1_title','field_64888d94e26e7'),(104748,39625,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(104749,39625,'_blocks_0_steps_1_text','field_64888d99e26e8'),(104750,39625,'blocks_0_steps_2_icon','qualification.svg'),(104751,39625,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(104752,39625,'blocks_0_steps_2_title','Evidence based hands on learning'),(104753,39625,'_blocks_0_steps_2_title','field_64888d94e26e7'),(104754,39625,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(104755,39625,'_blocks_0_steps_2_text','field_64888d99e26e8'),(104756,39625,'blocks_0_steps_3_icon','leaders.svg'),(104757,39625,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(104758,39625,'blocks_0_steps_3_title','Stand out from the crowd'),(104759,39625,'_blocks_0_steps_3_title','field_64888d94e26e7'),(104760,39625,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(104761,39625,'_blocks_0_steps_3_text','field_64888d99e26e8'),(104762,39625,'blocks_0_steps','4'),(104763,39625,'_blocks_0_steps','field_64888d44e26e5'),(104764,39625,'blocks_1_acfe_flexible_toggle',''),(104765,39625,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(104766,39625,'blocks_1_acfe_flexible_layout_title','Video'),(104767,39625,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(104768,39625,'blocks_1_size','large'),(104769,39625,'_blocks_1_size','field_6487038f297c1'),(104770,39625,'blocks_1_row_content_title',''),(104771,39625,'_blocks_1_row_content_title','field_64870132a865d'),(104772,39625,'blocks_1_row_content_heading',''),(104773,39625,'_blocks_1_row_content_heading','field_64870142a865e'),(104774,39625,'blocks_1_row_content_text',''),(104775,39625,'_blocks_1_row_content_text','field_64870148a865f'),(104776,39625,'blocks_1_row_content',''),(104777,39625,'_blocks_1_row_content','field_6487008ba865c'),(104778,39625,'blocks_1_video_src',''),(104779,39625,'_blocks_1_video_src','field_6193c4a98ec07'),(104780,39625,'blocks_1_video_thumbnail',''),(104781,39625,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(104782,39625,'blocks_2_acfe_flexible_toggle',''),(104783,39625,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(104784,39625,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(104785,39625,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(104786,39625,'blocks_2_options_theme','#ffffff'),(104787,39625,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(104788,39625,'blocks_2_options_reverse','0'),(104789,39625,'_blocks_2_options_reverse','field_61768049bb8ac'),(104790,39625,'blocks_2_options',''),(104791,39625,'_blocks_2_options','field_617682517c334'),(104792,39625,'blocks_2_split_5050_image','39623'),(104793,39625,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(104794,39625,'blocks_2_split_5050_video',''),(104795,39625,'_blocks_2_split_5050_video','field_6239f3160848a'),(104796,39625,'blocks_2_split_5050_content_title',''),(104797,39625,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(104798,39625,'blocks_2_split_5050_content_heading','Why it’s Relevant to You.'),(104799,39625,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(104800,39625,'blocks_2_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of numerous injuries within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(104801,39625,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(104802,39625,'blocks_2_split_5050_content_actions',''),(104803,39625,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(104804,39625,'blocks_2_split_5050_content',''),(104805,39625,'_blocks_2_split_5050_content','field_61767afceb8ba'),(104806,39625,'blocks_3_acfe_flexible_toggle',''),(104807,39625,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(104808,39625,'blocks_3_acfe_flexible_layout_title','Form'),(104809,39625,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(104810,39625,'blocks_3_row_content_format','standard'),(104811,39625,'_blocks_3_row_content_format','field_6481ead962881'),(104812,39625,'blocks_3_row_content_title',''),(104813,39625,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(104814,39625,'blocks_3_row_content_heading','Enquire Today'),(104815,39625,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(104816,39625,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(104817,39625,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(104818,39625,'blocks_3_row_content_actions',''),(104819,39625,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(104820,39625,'blocks_3_row_content',''),(104821,39625,'_blocks_3_row_content','field_61a0f5f5b3db0'),(104822,39625,'blocks_3_row_form',''),(104823,39625,'_blocks_3_row_form','field_61a4ff2c0b08e'),(104824,39625,'blocks_3_row_form_button_label',''),(104825,39625,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(104826,39625,'blocks_4_acfe_flexible_toggle',''),(104827,39625,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(104828,39625,'blocks_4_acfe_flexible_layout_title','Tabs'),(104829,39625,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(104830,39625,'blocks_4_options_theme','#ffffff'),(104831,39625,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(104832,39625,'blocks_4_options',''),(104833,39625,'_blocks_4_options','field_6177cfcd8140f'),(104834,39625,'blocks_4_tabs_0_tab_label','What will I learn ?'),(104835,39625,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(104836,39625,'blocks_4_tabs_0_tab_content_title',''),(104837,39625,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(104838,39625,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(104839,39625,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(104840,39625,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(104841,39625,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(104842,39625,'blocks_4_tabs_0_tab_content_actions',''),(104843,39625,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(104844,39625,'blocks_4_tabs_0_tab_content',''),(104845,39625,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(104846,39625,'blocks_4_tabs_0_tab_image','39076'),(104847,39625,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(104848,39625,'blocks_4_tabs_1_tab_label','What do I need ?'),(104849,39625,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(104850,39625,'blocks_4_tabs_1_tab_content_title',''),(104851,39625,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(104852,39625,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(104853,39625,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(104854,39625,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(104855,39625,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(104856,39625,'blocks_4_tabs_1_tab_content_actions',''),(104857,39625,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(104858,39625,'blocks_4_tabs_1_tab_content',''),(104859,39625,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(104860,39625,'blocks_4_tabs_1_tab_image','39223'),(104861,39625,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(104862,39625,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(104863,39625,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(104864,39625,'blocks_4_tabs_2_tab_content_title',''),(104865,39625,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(104866,39625,'blocks_4_tabs_2_tab_content_heading','Locations'),(104867,39625,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(104868,39625,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(104869,39625,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(104870,39625,'blocks_4_tabs_2_tab_content_actions',''),(104871,39625,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(104872,39625,'blocks_4_tabs_2_tab_content',''),(104873,39625,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(104874,39625,'blocks_4_tabs_2_tab_image','39224'),(104875,39625,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(104876,39625,'blocks_4_tabs','3'),(104877,39625,'_blocks_4_tabs','field_6177cff281419'),(104878,39625,'blocks_5_acfe_flexible_toggle',''),(104879,39625,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(104880,39625,'blocks_5_acfe_flexible_layout_title','Text Block'),(104881,39625,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(104882,39625,'blocks_5_options_theme','#b61234'),(104883,39625,'_blocks_5_options_theme','field_6176830e2ad17'),(104884,39625,'blocks_5_options',''),(104885,39625,'_blocks_5_options','field_6176830e2ad16'),(104886,39625,'blocks_5_text_block_heading','Fees & Funding Options'),(104887,39625,'_blocks_5_text_block_heading','field_617669d413097'),(104888,39625,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(104889,39625,'_blocks_5_text_block_content','field_617669ec13098'),(104890,39625,'blocks_6_acfe_flexible_toggle',''),(104891,39625,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(104892,39625,'blocks_6_acfe_flexible_layout_title','Icons'),(104893,39625,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(104894,39625,'blocks_6_options_theme','#b61234'),(104895,39625,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(104896,39625,'blocks_6_options_format','row'),(104897,39625,'_blocks_6_options_format','field_64bfde9a90690'),(104898,39625,'blocks_6_options',''),(104899,39625,'_blocks_6_options','field_64bfdd9b90684'),(104900,39625,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(104901,39625,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(104902,39625,'blocks_6_icon_row_items_0_label','Pay in Full'),(104903,39625,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(104904,39625,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(104905,39625,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(104906,39625,'blocks_6_icon_row_items_1_icon','finance.svg'),(104907,39625,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(104908,39625,'blocks_6_icon_row_items_1_label','0% finance'),(104909,39625,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(104910,39625,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(104911,39625,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(104912,39625,'blocks_6_icon_row_items_2_icon','deposit.svg'),(104913,39625,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(104914,39625,'blocks_6_icon_row_items_2_label','Deposit & balance'),(104915,39625,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(104916,39625,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(104917,39625,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(104918,39625,'blocks_6_icon_row_items','3'),(104919,39625,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(104920,39625,'blocks_7_acfe_flexible_toggle',''),(104921,39625,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(104922,39625,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(104923,39625,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(104924,39625,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(104925,39625,'_blocks_7_content','field_6193c9b5eac84'),(104926,39625,'blocks_8_acfe_flexible_toggle',''),(104927,39625,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(104928,39625,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(104929,39625,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(104930,39625,'blocks_8_testimonial_slider_content_title',''),(104931,39625,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(104932,39625,'blocks_8_testimonial_slider_content_heading','Testimonials'),(104933,39625,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(104934,39625,'blocks_8_testimonial_slider_content_text',''),(104935,39625,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(104936,39625,'blocks_8_testimonial_slider_content_actions',''),(104937,39625,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(104938,39625,'blocks_8_testimonial_slider_content',''),(104939,39625,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(104940,39625,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(104941,39625,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(104942,39625,'blocks_8_testimonial_slider_ambassador_bool','0'),(104943,39625,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(104944,39625,'blocks_9_acfe_flexible_toggle',''),(104945,39625,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(104946,39625,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(104947,39625,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(104948,39625,'blocks_9_options_theme','#ffffff'),(104949,39625,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(104950,39625,'blocks_9_options_state','0'),(104951,39625,'_blocks_9_options_state','field_6239fcb7508c5'),(104952,39625,'blocks_9_options',''),(104953,39625,'_blocks_9_options','field_6177e2991ac44'),(104954,39625,'blocks_9_content_title',''),(104955,39625,'_blocks_9_content_title','field_64d237e8bb1e2'),(104956,39625,'blocks_9_content_heading','Frequently asked questions '),(104957,39625,'_blocks_9_content_heading','field_64d237e8bb1e3'),(104958,39625,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(104959,39625,'_blocks_9_content_text','field_64d237e8bb1e4'),(104960,39625,'blocks_9_content_actions',''),(104961,39625,'_blocks_9_content_actions','field_64d237e8bb1e5'),(104962,39625,'blocks_9_content_align','left'),(104963,39625,'_blocks_9_content_align','field_64d2443e6b6aa'),(104964,39625,'blocks_9_content',''),(104965,39625,'_blocks_9_content','field_64d237e8bb1e1'),(104966,39625,'blocks_9_accordion_content','faqs'),(104967,39625,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(104968,39625,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(104969,39625,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(104970,39625,'blocks_9_actions',''),(104971,39625,'_blocks_9_actions','field_61a746a817f7a'),(104972,39154,'hide_hero','0'),(104973,39154,'_hide_hero','field_66a2380fcda39'),(104974,39154,'_yoast_wpseo_focuskw','Biomechanics resources'),(104975,39154,'_yoast_wpseo_title','Resources | Biomechanics Education'),(104976,39154,'_yoast_wpseo_metadesc','Access our resources page for valuable tools, and materials. Enhance your knowledge and your professional development with our comprehensive resource library.'),(104977,39154,'_yoast_wpseo_linkdex','36'),(104983,39349,'_yoast_wpseo_focuskw','Rachel Thompson'),(104984,39349,'_yoast_wpseo_linkdex','40'),(104985,39626,'hide_hero','0'),(104986,39626,'_hide_hero','field_66a2380fcda39'),(104987,39626,'hero_title','How to Become a Biomechanics Coach'),(104988,39626,'_hero_title','field_617571fe285e8'),(104989,39626,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(104990,39626,'_hero_text','field_6175723c285e9'),(104991,39626,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(104992,39626,'_hero_actions_0_button','field_61757281285eb'),(104993,39626,'hero_actions','1'),(104994,39626,'_hero_actions','field_61757270285ea'),(104995,39626,'hero_style','default'),(104996,39626,'_hero_style','field_62051d9dc5324'),(104997,39626,'_thumbnail_id','39454'),(104998,39626,'__thumbnail_id','field_617570855ddaf'),(104999,39626,'hero_image_pos_x','right'),(105000,39626,'_hero_image_pos_x','field_62ec3d05390bb'),(105001,39626,'hero_image_pos_y','top'),(105002,39626,'_hero_image_pos_y','field_62ec3d05390bc'),(105003,39626,'hero_image_pos',''),(105004,39626,'_hero_image_pos','field_62ec3d05390ba'),(105005,39626,'fft_hide_from_listings','0'),(105006,39626,'_fft_hide_from_listings','field_61f1320446ab2'),(105007,39626,'fft_page_format','default'),(105008,39626,'_fft_page_format','field_61ae213f1f218'),(105009,39626,'fft_hide_nav','0'),(105010,39626,'_fft_hide_nav','field_635bd5e43527c'),(105011,39626,'fft_hide_header_call_to_action','0'),(105012,39626,'_fft_hide_header_call_to_action','field_635bd6723527d'),(105013,39626,'fft_page_sitemap','0'),(105014,39626,'_fft_page_sitemap','field_61af9b34e8181'),(105015,39626,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(105016,39626,'_blocks','field_6176696113096'),(105017,39626,'blocks_0_acfe_flexible_toggle',''),(105018,39626,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(105019,39626,'blocks_0_acfe_flexible_layout_title','Steps'),(105020,39626,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(105021,39626,'blocks_0_row_content_title',''),(105022,39626,'_blocks_0_row_content_title','field_64888cd1e26e0'),(105023,39626,'blocks_0_row_content_heading','Benefits of training with us'),(105024,39626,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(105025,39626,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(105026,39626,'_blocks_0_row_content_text','field_64888ce2e26e2'),(105027,39626,'blocks_0_row_content_actions',''),(105028,39626,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(105029,39626,'blocks_0_row_content',''),(105030,39626,'_blocks_0_row_content','field_64888cb0e26df'),(105031,39626,'blocks_0_steps_0_icon','progression.svg'),(105032,39626,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(105033,39626,'blocks_0_steps_0_title','Earning potential'),(105034,39626,'_blocks_0_steps_0_title','field_64888d94e26e7'),(105035,39626,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(105036,39626,'_blocks_0_steps_0_text','field_64888d99e26e8'),(105037,39626,'blocks_0_steps_1_icon','support.svg'),(105038,39626,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(105039,39626,'blocks_0_steps_1_title','Lifetime Learning Promise'),(105040,39626,'_blocks_0_steps_1_title','field_64888d94e26e7'),(105041,39626,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(105042,39626,'_blocks_0_steps_1_text','field_64888d99e26e8'),(105043,39626,'blocks_0_steps_2_icon','qualification.svg'),(105044,39626,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(105045,39626,'blocks_0_steps_2_title','Evidence based hands on learning'),(105046,39626,'_blocks_0_steps_2_title','field_64888d94e26e7'),(105047,39626,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(105048,39626,'_blocks_0_steps_2_text','field_64888d99e26e8'),(105049,39626,'blocks_0_steps_3_icon','leaders.svg'),(105050,39626,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(105051,39626,'blocks_0_steps_3_title','Stand out from the crowd'),(105052,39626,'_blocks_0_steps_3_title','field_64888d94e26e7'),(105053,39626,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(105054,39626,'_blocks_0_steps_3_text','field_64888d99e26e8'),(105055,39626,'blocks_0_steps','4'),(105056,39626,'_blocks_0_steps','field_64888d44e26e5'),(105057,39626,'blocks_1_acfe_flexible_toggle',''),(105058,39626,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(105059,39626,'blocks_1_acfe_flexible_layout_title','Video'),(105060,39626,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(105061,39626,'blocks_1_size','large'),(105062,39626,'_blocks_1_size','field_6487038f297c1'),(105063,39626,'blocks_1_row_content_title',''),(105064,39626,'_blocks_1_row_content_title','field_64870132a865d'),(105065,39626,'blocks_1_row_content_heading',''),(105066,39626,'_blocks_1_row_content_heading','field_64870142a865e'),(105067,39626,'blocks_1_row_content_text',''),(105068,39626,'_blocks_1_row_content_text','field_64870148a865f'),(105069,39626,'blocks_1_row_content',''),(105070,39626,'_blocks_1_row_content','field_6487008ba865c'),(105071,39626,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(105072,39626,'_blocks_1_video_src','field_6193c4a98ec07'),(105073,39626,'blocks_1_video_thumbnail',''),(105074,39626,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(105075,39626,'blocks_2_acfe_flexible_toggle',''),(105076,39626,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(105077,39626,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(105078,39626,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(105079,39626,'blocks_2_options_theme','#ffffff'),(105080,39626,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(105081,39626,'blocks_2_options_reverse','0'),(105082,39626,'_blocks_2_options_reverse','field_61768049bb8ac'),(105083,39626,'blocks_2_options',''),(105084,39626,'_blocks_2_options','field_617682517c334'),(105085,39626,'blocks_2_split_5050_image','39623'),(105086,39626,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(105087,39626,'blocks_2_split_5050_video',''),(105088,39626,'_blocks_2_split_5050_video','field_6239f3160848a'),(105089,39626,'blocks_2_split_5050_content_title',''),(105090,39626,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(105091,39626,'blocks_2_split_5050_content_heading','Why it’s Relevant to You.'),(105092,39626,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(105093,39626,'blocks_2_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of numerous injuries within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(105094,39626,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(105095,39626,'blocks_2_split_5050_content_actions',''),(105096,39626,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(105097,39626,'blocks_2_split_5050_content',''),(105098,39626,'_blocks_2_split_5050_content','field_61767afceb8ba'),(105099,39626,'blocks_3_acfe_flexible_toggle',''),(105100,39626,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(105101,39626,'blocks_3_acfe_flexible_layout_title','Form'),(105102,39626,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(105103,39626,'blocks_3_row_content_format','standard'),(105104,39626,'_blocks_3_row_content_format','field_6481ead962881'),(105105,39626,'blocks_3_row_content_title',''),(105106,39626,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(105107,39626,'blocks_3_row_content_heading','Enquire Today'),(105108,39626,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(105109,39626,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(105110,39626,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(105111,39626,'blocks_3_row_content_actions',''),(105112,39626,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(105113,39626,'blocks_3_row_content',''),(105114,39626,'_blocks_3_row_content','field_61a0f5f5b3db0'),(105115,39626,'blocks_3_row_form',''),(105116,39626,'_blocks_3_row_form','field_61a4ff2c0b08e'),(105117,39626,'blocks_3_row_form_button_label',''),(105118,39626,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(105119,39626,'blocks_4_acfe_flexible_toggle',''),(105120,39626,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(105121,39626,'blocks_4_acfe_flexible_layout_title','Tabs'),(105122,39626,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(105123,39626,'blocks_4_options_theme','#ffffff'),(105124,39626,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(105125,39626,'blocks_4_options',''),(105126,39626,'_blocks_4_options','field_6177cfcd8140f'),(105127,39626,'blocks_4_tabs_0_tab_label','What will I learn ?'),(105128,39626,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(105129,39626,'blocks_4_tabs_0_tab_content_title',''),(105130,39626,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(105131,39626,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(105132,39626,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(105133,39626,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(105134,39626,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(105135,39626,'blocks_4_tabs_0_tab_content_actions',''),(105136,39626,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(105137,39626,'blocks_4_tabs_0_tab_content',''),(105138,39626,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(105139,39626,'blocks_4_tabs_0_tab_image','39076'),(105140,39626,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(105141,39626,'blocks_4_tabs_1_tab_label','What do I need ?'),(105142,39626,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(105143,39626,'blocks_4_tabs_1_tab_content_title',''),(105144,39626,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(105145,39626,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(105146,39626,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(105147,39626,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(105148,39626,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(105149,39626,'blocks_4_tabs_1_tab_content_actions',''),(105150,39626,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(105151,39626,'blocks_4_tabs_1_tab_content',''),(105152,39626,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(105153,39626,'blocks_4_tabs_1_tab_image','39223'),(105154,39626,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(105155,39626,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(105156,39626,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(105157,39626,'blocks_4_tabs_2_tab_content_title',''),(105158,39626,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(105159,39626,'blocks_4_tabs_2_tab_content_heading','Locations'),(105160,39626,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(105161,39626,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(105162,39626,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(105163,39626,'blocks_4_tabs_2_tab_content_actions',''),(105164,39626,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(105165,39626,'blocks_4_tabs_2_tab_content',''),(105166,39626,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(105167,39626,'blocks_4_tabs_2_tab_image','39224'),(105168,39626,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(105169,39626,'blocks_4_tabs','3'),(105170,39626,'_blocks_4_tabs','field_6177cff281419'),(105171,39626,'blocks_5_acfe_flexible_toggle',''),(105172,39626,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(105173,39626,'blocks_5_acfe_flexible_layout_title','Text Block'),(105174,39626,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(105175,39626,'blocks_5_options_theme','#b61234'),(105176,39626,'_blocks_5_options_theme','field_6176830e2ad17'),(105177,39626,'blocks_5_options',''),(105178,39626,'_blocks_5_options','field_6176830e2ad16'),(105179,39626,'blocks_5_text_block_heading','Fees & Funding Options'),(105180,39626,'_blocks_5_text_block_heading','field_617669d413097'),(105181,39626,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(105182,39626,'_blocks_5_text_block_content','field_617669ec13098'),(105183,39626,'blocks_6_acfe_flexible_toggle',''),(105184,39626,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(105185,39626,'blocks_6_acfe_flexible_layout_title','Icons'),(105186,39626,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(105187,39626,'blocks_6_options_theme','#b61234'),(105188,39626,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(105189,39626,'blocks_6_options_format','row'),(105190,39626,'_blocks_6_options_format','field_64bfde9a90690'),(105191,39626,'blocks_6_options',''),(105192,39626,'_blocks_6_options','field_64bfdd9b90684'),(105193,39626,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(105194,39626,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(105195,39626,'blocks_6_icon_row_items_0_label','Pay in Full'),(105196,39626,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(105197,39626,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(105198,39626,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(105199,39626,'blocks_6_icon_row_items_1_icon','finance.svg'),(105200,39626,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(105201,39626,'blocks_6_icon_row_items_1_label','0% finance'),(105202,39626,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(105203,39626,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(105204,39626,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(105205,39626,'blocks_6_icon_row_items_2_icon','deposit.svg'),(105206,39626,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(105207,39626,'blocks_6_icon_row_items_2_label','Deposit & balance'),(105208,39626,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(105209,39626,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(105210,39626,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(105211,39626,'blocks_6_icon_row_items','3'),(105212,39626,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(105213,39626,'blocks_7_acfe_flexible_toggle',''),(105214,39626,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(105215,39626,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(105216,39626,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(105217,39626,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(105218,39626,'_blocks_7_content','field_6193c9b5eac84'),(105219,39626,'blocks_8_acfe_flexible_toggle',''),(105220,39626,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(105221,39626,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(105222,39626,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(105223,39626,'blocks_8_testimonial_slider_content_title',''),(105224,39626,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(105225,39626,'blocks_8_testimonial_slider_content_heading','Testimonials'),(105226,39626,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(105227,39626,'blocks_8_testimonial_slider_content_text',''),(105228,39626,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(105229,39626,'blocks_8_testimonial_slider_content_actions',''),(105230,39626,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(105231,39626,'blocks_8_testimonial_slider_content',''),(105232,39626,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(105233,39626,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(105234,39626,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(105235,39626,'blocks_8_testimonial_slider_ambassador_bool','0'),(105236,39626,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(105237,39626,'blocks_9_acfe_flexible_toggle',''),(105238,39626,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(105239,39626,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(105240,39626,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(105241,39626,'blocks_9_options_theme','#ffffff'),(105242,39626,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(105243,39626,'blocks_9_options_state','0'),(105244,39626,'_blocks_9_options_state','field_6239fcb7508c5'),(105245,39626,'blocks_9_options',''),(105246,39626,'_blocks_9_options','field_6177e2991ac44'),(105247,39626,'blocks_9_content_title',''),(105248,39626,'_blocks_9_content_title','field_64d237e8bb1e2'),(105249,39626,'blocks_9_content_heading','Frequently asked questions '),(105250,39626,'_blocks_9_content_heading','field_64d237e8bb1e3'),(105251,39626,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(105252,39626,'_blocks_9_content_text','field_64d237e8bb1e4'),(105253,39626,'blocks_9_content_actions',''),(105254,39626,'_blocks_9_content_actions','field_64d237e8bb1e5'),(105255,39626,'blocks_9_content_align','left'),(105256,39626,'_blocks_9_content_align','field_64d2443e6b6aa'),(105257,39626,'blocks_9_content',''),(105258,39626,'_blocks_9_content','field_64d237e8bb1e1'),(105259,39626,'blocks_9_accordion_content','faqs'),(105260,39626,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(105261,39626,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(105262,39626,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(105263,39626,'blocks_9_actions',''),(105264,39626,'_blocks_9_actions','field_61a746a817f7a'),(105265,39364,'_yoast_wpseo_focuskw','Tom Waldron'),(105266,39364,'_yoast_wpseo_metadesc','Learn about Tom Waldron, a master trainer at biomechanics education and his Pilates journey with us.'),(105267,39364,'_yoast_wpseo_linkdex','44'),(105269,39284,'_yoast_wpseo_focuskw','biomechanics education partners'),(105270,39284,'_yoast_wpseo_title','Our Partners | Biomechanics Education'),(105271,39284,'_yoast_wpseo_metadesc','Explore our Partners page to see our valued collaborators. Discover how our partnerships enhance biomechanics education'),(105272,39284,'_yoast_wpseo_linkdex','38'),(105273,39196,'_yoast_wpseo_focuskw','Contact us'),(105274,39196,'_yoast_wpseo_linkdex','44'),(105276,39493,'_yoast_wpseo_focuskw','Biomechanics coaches'),(105277,39493,'_yoast_wpseo_title','Find a BioMechanics Coach | Biomechanics Education'),(105278,39493,'_yoast_wpseo_metadesc','Find certified biomechanics coaches on our interactive map. Connect with experts to enhance your training.'),(105279,39493,'_yoast_wpseo_linkdex','40'),(105281,39270,'_yoast_wpseo_focuskw','Download price guide'),(105282,39270,'_yoast_wpseo_title','Price Guide | Biomechanics Education'),(105283,39270,'_yoast_wpseo_metadesc','Explore our price guide to find detailed information on course fees and packages. Plan your professional development with comprehensive pricing options.'),(105284,39270,'_yoast_wpseo_linkdex','35'),(105286,39497,'_yoast_wpseo_title','Blogs | Biomechanics Education'),(105288,24544,'_yoast_wpseo_focuskw','Bones of the hip'),(105289,24544,'_yoast_wpseo_metadesc','Deepen your anatomy knowledge with practical insights and techniques to enhance client training and performance.'),(105290,24544,'_yoast_wpseo_linkdex','62'),(105292,14386,'_wp_old_slug','hip-hitch-technique-biomechanics'),(105293,14386,'hide_hero','0'),(105294,14386,'_hide_hero','field_66a2380fcda39'),(105295,14386,'hero_title',''),(105296,14386,'_hero_title','field_617571fe285e8'),(105297,14386,'hero_text',''),(105298,14386,'_hero_text','field_6175723c285e9'),(105299,14386,'hero_actions',''),(105300,14386,'_hero_actions','field_61757270285ea'),(105301,14386,'hero_style','default'),(105302,14386,'_hero_style','field_62051d9dc5324'),(105303,14386,'__thumbnail_id','field_617570855ddaf'),(105304,14386,'hero_image_pos_x','right'),(105305,14386,'_hero_image_pos_x','field_62ec3d05390bb'),(105306,14386,'hero_image_pos_y','top'),(105307,14386,'_hero_image_pos_y','field_62ec3d05390bc'),(105308,14386,'hero_image_pos',''),(105309,14386,'_hero_image_pos','field_62ec3d05390ba'),(105310,14386,'fft_hide_from_listings','0'),(105311,14386,'_fft_hide_from_listings','field_61f1320446ab2'),(105312,14386,'post_format',''),(105313,14386,'_post_format','field_61756bfb51898'),(105314,14386,'post_author',''),(105315,14386,'_post_author','field_62ec389d22113'),(105316,14386,'post_reviewer',''),(105317,14386,'_post_reviewer','field_627140a2a9800'),(105318,14386,'post_table_of_contents','0'),(105319,14386,'_post_table_of_contents','field_65c503bc846a6'),(105320,14386,'_yoast_wpseo_primary_category',''),(105321,14386,'_yoast_wpseo_primary_blog-format',''),(105322,14386,'_yoast_wpseo_focuskw','Hip hitching'),(105323,14386,'_yoast_wpseo_metadesc','Read our blog: Why You Should Add Hip Hitching to Your Clients’ Programmes. Read more...'),(105324,14386,'_yoast_wpseo_linkdex','62'),(105325,14386,'_yoast_wpseo_content_score','90'),(105326,14386,'_yoast_wpseo_estimated-reading-time-minutes','3'),(105327,14386,'_oembed_01dfb4f8fb6d488c7d8d633ac151a8b9','<iframe title=\"Hip Hitching\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/UhuuS6h3R6Q?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(105328,14386,'_oembed_time_01dfb4f8fb6d488c7d8d633ac151a8b9','1728474892'),(105329,39629,'_thumbnail_id','14387'),(105330,39629,'__thumbnail_id','field_617570855ddaf'),(105331,39629,'hide_hero','0'),(105332,39629,'_hide_hero','field_66a2380fcda39'),(105333,39629,'hero_title',''),(105334,39629,'_hero_title','field_617571fe285e8'),(105335,39629,'hero_text',''),(105336,39629,'_hero_text','field_6175723c285e9'),(105337,39629,'hero_actions',''),(105338,39629,'_hero_actions','field_61757270285ea'),(105339,39629,'hero_style','default'),(105340,39629,'_hero_style','field_62051d9dc5324'),(105341,39629,'hero_image_pos_x','right'),(105342,39629,'_hero_image_pos_x','field_62ec3d05390bb'),(105343,39629,'hero_image_pos_y','top'),(105344,39629,'_hero_image_pos_y','field_62ec3d05390bc'),(105345,39629,'hero_image_pos',''),(105346,39629,'_hero_image_pos','field_62ec3d05390ba'),(105347,39629,'fft_hide_from_listings','0'),(105348,39629,'_fft_hide_from_listings','field_61f1320446ab2'),(105349,39629,'post_format',''),(105350,39629,'_post_format','field_61756bfb51898'),(105351,39629,'post_author',''),(105352,39629,'_post_author','field_62ec389d22113'),(105353,39629,'post_reviewer',''),(105354,39629,'_post_reviewer','field_627140a2a9800'),(105355,39629,'post_table_of_contents','0'),(105356,39629,'_post_table_of_contents','field_65c503bc846a6'),(105358,761,'_yoast_wpseo_focuskw','Functional training'),(105359,761,'_yoast_wpseo_metadesc','Explore the evolution of personal training, functional training flaws, and biomechanics for safer, effective workouts.'),(105360,761,'_yoast_wpseo_linkdex','71'),(105362,11407,'_yoast_wpseo_focuskw','Periodisation'),(105363,11407,'_yoast_wpseo_title','Personal Trainers & Periodisation %%sep%% Biomechanics Education'),(105364,11407,'_yoast_wpseo_metadesc','Discover periodisation training, its models, and how it optimizes performance while reducing injury risk in athletes.'),(105365,11407,'_yoast_wpseo_linkdex','80'),(105366,4106,'_edit_lock','1728477145:5'),(105368,4106,'hide_hero','0'),(105369,4106,'_hide_hero','field_66a2380fcda39'),(105370,4106,'hero_title',''),(105371,4106,'_hero_title','field_617571fe285e8'),(105372,4106,'hero_text',''),(105373,4106,'_hero_text','field_6175723c285e9'),(105374,4106,'hero_actions',''),(105375,4106,'_hero_actions','field_61757270285ea'),(105376,4106,'hero_style','default'),(105377,4106,'_hero_style','field_62051d9dc5324'),(105378,4106,'__thumbnail_id','field_617570855ddaf'),(105379,4106,'hero_image_pos_x','right'),(105380,4106,'_hero_image_pos_x','field_62ec3d05390bb'),(105381,4106,'hero_image_pos_y','top'),(105382,4106,'_hero_image_pos_y','field_62ec3d05390bc'),(105383,4106,'hero_image_pos',''),(105384,4106,'_hero_image_pos','field_62ec3d05390ba'),(105385,4106,'fft_hide_from_listings','0'),(105386,4106,'_fft_hide_from_listings','field_61f1320446ab2'),(105387,4106,'post_format',''),(105388,4106,'_post_format','field_61756bfb51898'),(105389,4106,'post_author',''),(105390,4106,'_post_author','field_62ec389d22113'),(105391,4106,'post_reviewer',''),(105392,4106,'_post_reviewer','field_627140a2a9800'),(105393,4106,'post_table_of_contents','0'),(105394,4106,'_post_table_of_contents','field_65c503bc846a6'),(105395,4106,'_yoast_wpseo_primary_category',''),(105396,4106,'_yoast_wpseo_primary_blog-format',''),(105397,4106,'_yoast_wpseo_content_score','90'),(105398,4106,'_yoast_wpseo_estimated-reading-time-minutes','5'),(105399,39631,'_thumbnail_id','4108'),(105400,39631,'__thumbnail_id','field_617570855ddaf'),(105401,39631,'hide_hero','0'),(105402,39631,'_hide_hero','field_66a2380fcda39'),(105403,39631,'hero_title',''),(105404,39631,'_hero_title','field_617571fe285e8'),(105405,39631,'hero_text',''),(105406,39631,'_hero_text','field_6175723c285e9'),(105407,39631,'hero_actions',''),(105408,39631,'_hero_actions','field_61757270285ea'),(105409,39631,'hero_style','default'),(105410,39631,'_hero_style','field_62051d9dc5324'),(105411,39631,'hero_image_pos_x','right'),(105412,39631,'_hero_image_pos_x','field_62ec3d05390bb'),(105413,39631,'hero_image_pos_y','top'),(105414,39631,'_hero_image_pos_y','field_62ec3d05390bc'),(105415,39631,'hero_image_pos',''),(105416,39631,'_hero_image_pos','field_62ec3d05390ba'),(105417,39631,'fft_hide_from_listings','0'),(105418,39631,'_fft_hide_from_listings','field_61f1320446ab2'),(105419,39631,'post_format',''),(105420,39631,'_post_format','field_61756bfb51898'),(105421,39631,'post_author',''),(105422,39631,'_post_author','field_62ec389d22113'),(105423,39631,'post_reviewer',''),(105424,39631,'_post_reviewer','field_627140a2a9800'),(105425,39631,'post_table_of_contents','0'),(105426,39631,'_post_table_of_contents','field_65c503bc846a6'),(105427,39630,'hide_hero','0'),(105428,39630,'_hide_hero','field_66a2380fcda39'),(105429,39630,'hero_title',''),(105430,39630,'_hero_title','field_617571fe285e8'),(105431,39630,'hero_text',''),(105432,39630,'_hero_text','field_6175723c285e9'),(105433,39630,'hero_actions',''),(105434,39630,'_hero_actions','field_61757270285ea'),(105435,39630,'hero_style','default'),(105436,39630,'_hero_style','field_62051d9dc5324'),(105437,39630,'_thumbnail_id','4108'),(105438,39630,'__thumbnail_id','field_617570855ddaf'),(105439,39630,'hero_image_pos_x','right'),(105440,39630,'_hero_image_pos_x','field_62ec3d05390bb'),(105441,39630,'hero_image_pos_y','top'),(105442,39630,'_hero_image_pos_y','field_62ec3d05390bc'),(105443,39630,'hero_image_pos',''),(105444,39630,'_hero_image_pos','field_62ec3d05390ba'),(105445,39630,'fft_hide_from_listings','0'),(105446,39630,'_fft_hide_from_listings','field_61f1320446ab2'),(105447,39630,'post_format',''),(105448,39630,'_post_format','field_61756bfb51898'),(105449,39630,'post_author',''),(105450,39630,'_post_author','field_62ec389d22113'),(105451,39630,'post_reviewer',''),(105452,39630,'_post_reviewer','field_627140a2a9800'),(105453,39630,'post_table_of_contents','0'),(105454,39630,'_post_table_of_contents','field_65c503bc846a6'),(105456,39632,'_thumbnail_id','4108'),(105457,39632,'__thumbnail_id','field_617570855ddaf'),(105458,39632,'hide_hero','0'),(105459,39632,'_hide_hero','field_66a2380fcda39'),(105460,39632,'hero_title',''),(105461,39632,'_hero_title','field_617571fe285e8'),(105462,39632,'hero_text',''),(105463,39632,'_hero_text','field_6175723c285e9'),(105464,39632,'hero_actions',''),(105465,39632,'_hero_actions','field_61757270285ea'),(105466,39632,'hero_style','default'),(105467,39632,'_hero_style','field_62051d9dc5324'),(105468,39632,'hero_image_pos_x','right'),(105469,39632,'_hero_image_pos_x','field_62ec3d05390bb'),(105470,39632,'hero_image_pos_y','top'),(105471,39632,'_hero_image_pos_y','field_62ec3d05390bc'),(105472,39632,'hero_image_pos',''),(105473,39632,'_hero_image_pos','field_62ec3d05390ba'),(105474,39632,'fft_hide_from_listings','0'),(105475,39632,'_fft_hide_from_listings','field_61f1320446ab2'),(105476,39632,'post_format',''),(105477,39632,'_post_format','field_61756bfb51898'),(105478,39632,'post_author',''),(105479,39632,'_post_author','field_62ec389d22113'),(105480,39632,'post_reviewer',''),(105481,39632,'_post_reviewer','field_627140a2a9800'),(105482,39632,'post_table_of_contents','0'),(105483,39632,'_post_table_of_contents','field_65c503bc846a6'),(105485,39633,'_thumbnail_id','4108'),(105486,39633,'__thumbnail_id','field_617570855ddaf'),(105487,39633,'hide_hero','0'),(105488,39633,'_hide_hero','field_66a2380fcda39'),(105489,39633,'hero_title',''),(105490,39633,'_hero_title','field_617571fe285e8'),(105491,39633,'hero_text',''),(105492,39633,'_hero_text','field_6175723c285e9'),(105493,39633,'hero_actions',''),(105494,39633,'_hero_actions','field_61757270285ea'),(105495,39633,'hero_style','default'),(105496,39633,'_hero_style','field_62051d9dc5324'),(105497,39633,'hero_image_pos_x','right'),(105498,39633,'_hero_image_pos_x','field_62ec3d05390bb'),(105499,39633,'hero_image_pos_y','top'),(105500,39633,'_hero_image_pos_y','field_62ec3d05390bc'),(105501,39633,'hero_image_pos',''),(105502,39633,'_hero_image_pos','field_62ec3d05390ba'),(105503,39633,'fft_hide_from_listings','0'),(105504,39633,'_fft_hide_from_listings','field_61f1320446ab2'),(105505,39633,'post_format',''),(105506,39633,'_post_format','field_61756bfb51898'),(105507,39633,'post_author',''),(105508,39633,'_post_author','field_62ec389d22113'),(105509,39633,'post_reviewer',''),(105510,39633,'_post_reviewer','field_627140a2a9800'),(105511,39633,'post_table_of_contents','0'),(105512,39633,'_post_table_of_contents','field_65c503bc846a6'),(105514,39634,'_thumbnail_id','4108'),(105515,39634,'__thumbnail_id','field_617570855ddaf'),(105516,39634,'hide_hero','0'),(105517,39634,'_hide_hero','field_66a2380fcda39'),(105518,39634,'hero_title',''),(105519,39634,'_hero_title','field_617571fe285e8'),(105520,39634,'hero_text',''),(105521,39634,'_hero_text','field_6175723c285e9'),(105522,39634,'hero_actions',''),(105523,39634,'_hero_actions','field_61757270285ea'),(105524,39634,'hero_style','default'),(105525,39634,'_hero_style','field_62051d9dc5324'),(105526,39634,'hero_image_pos_x','right'),(105527,39634,'_hero_image_pos_x','field_62ec3d05390bb'),(105528,39634,'hero_image_pos_y','top'),(105529,39634,'_hero_image_pos_y','field_62ec3d05390bc'),(105530,39634,'hero_image_pos',''),(105531,39634,'_hero_image_pos','field_62ec3d05390ba'),(105532,39634,'fft_hide_from_listings','0'),(105533,39634,'_fft_hide_from_listings','field_61f1320446ab2'),(105534,39634,'post_format',''),(105535,39634,'_post_format','field_61756bfb51898'),(105536,39634,'post_author',''),(105537,39634,'_post_author','field_62ec389d22113'),(105538,39634,'post_reviewer',''),(105539,39634,'_post_reviewer','field_627140a2a9800'),(105540,39634,'post_table_of_contents','0'),(105541,39634,'_post_table_of_contents','field_65c503bc846a6'),(105542,39635,'_thumbnail_id','4108'),(105543,39635,'__thumbnail_id','field_617570855ddaf'),(105544,39635,'hide_hero','0'),(105545,39635,'_hide_hero','field_66a2380fcda39'),(105546,39635,'hero_title',''),(105547,39635,'_hero_title','field_617571fe285e8'),(105548,39635,'hero_text',''),(105549,39635,'_hero_text','field_6175723c285e9'),(105550,39635,'hero_actions',''),(105551,39635,'_hero_actions','field_61757270285ea'),(105552,39635,'hero_style','default'),(105553,39635,'_hero_style','field_62051d9dc5324'),(105554,39635,'hero_image_pos_x','right'),(105555,39635,'_hero_image_pos_x','field_62ec3d05390bb'),(105556,39635,'hero_image_pos_y','top'),(105557,39635,'_hero_image_pos_y','field_62ec3d05390bc'),(105558,39635,'hero_image_pos',''),(105559,39635,'_hero_image_pos','field_62ec3d05390ba'),(105560,39635,'fft_hide_from_listings','0'),(105561,39635,'_fft_hide_from_listings','field_61f1320446ab2'),(105562,39635,'post_format',''),(105563,39635,'_post_format','field_61756bfb51898'),(105564,39635,'post_author',''),(105565,39635,'_post_author','field_62ec389d22113'),(105566,39635,'post_reviewer',''),(105567,39635,'_post_reviewer','field_627140a2a9800'),(105568,39635,'post_table_of_contents','0'),(105569,39635,'_post_table_of_contents','field_65c503bc846a6'),(105572,39636,'_thumbnail_id','4108'),(105573,39636,'__thumbnail_id','field_617570855ddaf'),(105574,39636,'hide_hero','0'),(105575,39636,'_hide_hero','field_66a2380fcda39'),(105576,39636,'hero_title',''),(105577,39636,'_hero_title','field_617571fe285e8'),(105578,39636,'hero_text',''),(105579,39636,'_hero_text','field_6175723c285e9'),(105580,39636,'hero_actions',''),(105581,39636,'_hero_actions','field_61757270285ea'),(105582,39636,'hero_style','default'),(105583,39636,'_hero_style','field_62051d9dc5324'),(105584,39636,'hero_image_pos_x','right'),(105585,39636,'_hero_image_pos_x','field_62ec3d05390bb'),(105586,39636,'hero_image_pos_y','top'),(105587,39636,'_hero_image_pos_y','field_62ec3d05390bc'),(105588,39636,'hero_image_pos',''),(105589,39636,'_hero_image_pos','field_62ec3d05390ba'),(105590,39636,'fft_hide_from_listings','0'),(105591,39636,'_fft_hide_from_listings','field_61f1320446ab2'),(105592,39636,'post_format',''),(105593,39636,'_post_format','field_61756bfb51898'),(105594,39636,'post_author',''),(105595,39636,'_post_author','field_62ec389d22113'),(105596,39636,'post_reviewer',''),(105597,39636,'_post_reviewer','field_627140a2a9800'),(105598,39636,'post_table_of_contents','0'),(105599,39636,'_post_table_of_contents','field_65c503bc846a6'),(105601,39637,'_wp_attached_file','2018/01/DSC_6677-scaled.jpg'),(105602,39637,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:27:\"2018/01/DSC_6677-scaled.jpg\";s:8:\"filesize\";i:691569;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC_6677-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150525;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC_6677-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219026;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_6677-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62826;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC_6677-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123569;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC_6677-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:310149;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC_6677-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:478458;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6677-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74722;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC_6677-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192901;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC_6677-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:286868;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6677-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62798;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC_6677-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149560;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC_6677-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218204;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6677-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64191;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC_6677-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153897;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"DSC_6677-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226443;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6677-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66420;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"DSC_6677-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163558;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"DSC_6677-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:239449;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6677-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59864;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"DSC_6677-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137970;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"DSC_6677-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199032;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535287425\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC_6677.jpg\";}'),(105603,39637,'_wp_attachment_image_alt','Join Us Would you like to be part of this fast-growing, highly reputed group of practitioners contributing to improving movement, reducing discomfort, and lowering injury risk? YES? CLICK HERE By joining, you\'ll gain access to a network of professionals and the latest biomechanics education to enhance your practice and client outcomes.'),(105606,4106,'_thumbnail_id','4108'),(105608,39639,'hide_hero','0'),(105609,39639,'_hide_hero','field_66a2380fcda39'),(105610,39639,'hero_title','Find a Biomechanics Coach in your area'),(105611,39639,'_hero_title','field_617571fe285e8'),(105612,39639,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(105613,39639,'_hero_text','field_6175723c285e9'),(105614,39639,'hero_actions',''),(105615,39639,'_hero_actions','field_61757270285ea'),(105616,39639,'hero_style','default'),(105617,39639,'_hero_style','field_62051d9dc5324'),(105618,39639,'hero_image_pos_x','right'),(105619,39639,'_hero_image_pos_x','field_62ec3d05390bb'),(105620,39639,'hero_image_pos_y','top'),(105621,39639,'_hero_image_pos_y','field_62ec3d05390bc'),(105622,39639,'hero_image_pos',''),(105623,39639,'_hero_image_pos','field_62ec3d05390ba'),(105624,39639,'fft_hide_from_listings','0'),(105625,39639,'_fft_hide_from_listings','field_61f1320446ab2'),(105626,39639,'fft_page_format','default'),(105627,39639,'_fft_page_format','field_61ae213f1f218'),(105628,39639,'fft_hide_nav','0'),(105629,39639,'_fft_hide_nav','field_635bd5e43527c'),(105630,39639,'fft_hide_header_call_to_action','0'),(105631,39639,'_fft_hide_header_call_to_action','field_635bd6723527d'),(105632,39639,'fft_page_sitemap','0'),(105633,39639,'_fft_page_sitemap','field_61af9b34e8181'),(105634,39639,'blocks_0_acfe_flexible_toggle',''),(105635,39639,'_blocks_0_acfe_flexible_toggle','field_layout_619e68cae6262_toggle'),(105636,39639,'blocks_0_acfe_flexible_layout_title','Map'),(105637,39639,'_blocks_0_acfe_flexible_layout_title','field_layout_619e68cae6262_title'),(105638,39639,'blocks_0_row_content_title',''),(105639,39639,'_blocks_0_row_content_title','field_619f5bb09cb8e'),(105640,39639,'blocks_0_row_content_heading','Find a Biomechanics Coach'),(105641,39639,'_blocks_0_row_content_heading','field_619f5bb09cb8f'),(105642,39639,'blocks_0_row_content_text',''),(105643,39639,'_blocks_0_row_content_text','field_619f5bb09cb90'),(105644,39639,'blocks_0_row_content_actions',''),(105645,39639,'_blocks_0_row_content_actions','field_619f5bb09cb91'),(105646,39639,'blocks_0_row_content',''),(105647,39639,'_blocks_0_row_content','field_619f5baf9cb8d'),(105648,39639,'blocks_0_map_location','a:12:{s:7:\"address\";s:108:\"Carnac Cottage, Cams Hall Estate, Cams Hall, Carnac Court, Cams Hall Estate, Fareham, Hampshire PO16 8UB, UK\";s:3:\"lat\";d:50.84829879999999;s:3:\"lng\";d:-1.1679301;s:4:\"zoom\";i:2;s:8:\"place_id\";s:27:\"ChIJsxIEsIVodEgRnRE6garbJXQ\";s:4:\"name\";s:14:\"Carnac Cottage\";s:11:\"street_name\";s:9:\"Cams Hall\";s:4:\"city\";s:7:\"Fareham\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"PO16 8UB\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(105649,39639,'_blocks_0_map_location','field_619f5bca9cb93'),(105650,39639,'blocks_1_acfe_flexible_toggle',''),(105651,39639,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(105652,39639,'blocks_1_acfe_flexible_layout_title','Text Block'),(105653,39639,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(105654,39639,'blocks_1_options_theme','#ffffff'),(105655,39639,'_blocks_1_options_theme','field_6176830e2ad17'),(105656,39639,'blocks_1_options',''),(105657,39639,'_blocks_1_options','field_6176830e2ad16'),(105658,39639,'blocks_1_text_block_heading','Can’t find what you’re looking for?'),(105659,39639,'_blocks_1_text_block_heading','field_617669d413097'),(105660,39639,'blocks_1_text_block_content','Get in touch with us at:\r\n\r\nrachel@biomechanicseducation.com\r\n\r\nor call on 020 3841 6151.'),(105661,39639,'_blocks_1_text_block_content','field_617669ec13098'),(105662,39639,'blocks','a:2:{i:0;s:3:\"map\";i:1;s:10:\"text_block\";}'),(105663,39639,'_blocks','field_6176696113096'),(105664,39639,'_thumbnail_id',''),(105665,39639,'__thumbnail_id','field_617570855ddaf'),(113708,40263,'_fft_id','193'),(113709,40263,'_fft_catalogue_id','985388d6-e8e2-e811-a8cb-00224801a6a4'),(113710,40263,'_fft_code','PX'),(113711,40263,'_fft_name','Behaviour Change Coaching'),(113712,40263,'_fft_description',''),(113713,40263,'_fft_metadata_school','biomechanics'),(113714,40263,'_fft_metadata_flex_id','426'),(113715,40263,'_fft_metadata_type_id','100000000'),(113716,40263,'_fft_metadata_flex_type','collection'),(113717,40263,'_fft_metadata_type_label','Course'),(113718,40263,'_fft_metadata_course_type_id','100000002'),(113719,40263,'_fft_metadata_course_type_label','Online Learning'),(113720,40263,'_fft_metadata_productstructure_id','1'),(113721,40263,'_fft_metadata_productstructure_label','Product'),(113722,40263,'_fft_taxable','1'),(113723,40263,'_fft_created_at','1633080497'),(113724,40263,'_fft_updated_at','1743078580'),(113725,40263,'_fft_price_id','196'),(113726,40263,'_fft_price_value','215.83'),(113727,40263,'_fft_price_begins_at',NULL),(113728,40263,'_fft_price_expires_at',NULL),(113729,40263,'_fft_price_value_inc_tax','259'),(113730,40263,'_fft_error',''),(113731,40263,'_fft_saved_at','1751618582'),(113732,40264,'_fft_id','187'),(113733,40264,'_fft_catalogue_id','41bcc7f9-180d-ef11-9f89-7c1e521e19b8'),(113734,40264,'_fft_code','BMFPT'),(113735,40264,'_fft_name','Biomechanics for Personal Trainers'),(113736,40264,'_fft_description',NULL),(113737,40264,'_fft_metadata_school','biomechanics'),(113738,40264,'_fft_metadata_flex_id','1233'),(113739,40264,'_fft_metadata_type_id','100000000'),(113740,40264,'_fft_metadata_flex_type','collection'),(113741,40264,'_fft_metadata_type_label','Course'),(113742,40264,'_fft_metadata_course_type_id','100000002'),(113743,40264,'_fft_metadata_course_type_label','Online Learning'),(113744,40264,'_fft_metadata_productstructure_id','1'),(113745,40264,'_fft_metadata_productstructure_label','Product'),(113746,40264,'_fft_taxable','1'),(113747,40264,'_fft_created_at','1723102502'),(113748,40264,'_fft_updated_at','1743078580'),(113749,40264,'_fft_price_id','190'),(113750,40264,'_fft_price_value','115.83'),(113751,40264,'_fft_price_begins_at',NULL),(113752,40264,'_fft_price_expires_at',NULL),(113753,40264,'_fft_price_value_inc_tax','139'),(113754,40264,'_fft_error',''),(113755,40264,'_fft_saved_at','1751618582'),(113756,40265,'_fft_id','188'),(113757,40265,'_fft_catalogue_id','2a558b6e-190d-ef11-9f89-7c1e521d5cd3'),(113758,40265,'_fft_code','BMFP'),(113759,40265,'_fft_name','Biomechanics for Pilates Teachers'),(113760,40265,'_fft_description',NULL),(113761,40265,'_fft_metadata_school','biomechanics'),(113762,40265,'_fft_metadata_flex_id','1231'),(113763,40265,'_fft_metadata_type_id','100000000'),(113764,40265,'_fft_metadata_flex_type','collection'),(113765,40265,'_fft_metadata_type_label','Course'),(113766,40265,'_fft_metadata_course_type_id','100000002'),(113767,40265,'_fft_metadata_course_type_label','Online Learning'),(113768,40265,'_fft_metadata_productstructure_id','1'),(113769,40265,'_fft_metadata_productstructure_label','Product'),(113770,40265,'_fft_taxable','1'),(113771,40265,'_fft_created_at','1724086111'),(113772,40265,'_fft_updated_at','1743078580'),(113773,40265,'_fft_price_id','191'),(113774,40265,'_fft_price_value','115.83'),(113775,40265,'_fft_price_begins_at',NULL),(113776,40265,'_fft_price_expires_at',NULL),(113777,40265,'_fft_price_value_inc_tax','139'),(113778,40265,'_fft_error',''),(113779,40265,'_fft_saved_at','1751618582'),(113780,40266,'_fft_id','189'),(113781,40266,'_fft_catalogue_id','a940ff1e-190d-ef11-9f89-7c1e521e19b8'),(113782,40266,'_fft_code','BMFPD'),(113783,40266,'_fft_name','Biomechanics for Podiatrists'),(113784,40266,'_fft_description',NULL),(113785,40266,'_fft_metadata_school','biomechanics'),(113786,40266,'_fft_metadata_flex_id','1232'),(113787,40266,'_fft_metadata_type_id','100000000'),(113788,40266,'_fft_metadata_flex_type','collection'),(113789,40266,'_fft_metadata_type_label','Course'),(113790,40266,'_fft_metadata_course_type_id','100000002'),(113791,40266,'_fft_metadata_course_type_label','Online Learning'),(113792,40266,'_fft_metadata_productstructure_id','1'),(113793,40266,'_fft_metadata_productstructure_label','Product'),(113794,40266,'_fft_taxable','1'),(113795,40266,'_fft_created_at','1724086111'),(113796,40266,'_fft_updated_at','1724086111'),(113797,40266,'_fft_price_id','192'),(113798,40266,'_fft_price_value','115.83'),(113799,40266,'_fft_price_begins_at',NULL),(113800,40266,'_fft_price_expires_at',NULL),(113801,40266,'_fft_price_value_inc_tax','139'),(113802,40266,'_fft_error',''),(113803,40266,'_fft_saved_at','1725977876'),(113804,40267,'_fft_id','190'),(113805,40267,'_fft_catalogue_id','42804323-c93a-ef11-a316-6045bd0f452f'),(113806,40267,'_fft_code','BMFSC'),(113807,40267,'_fft_name','Biomechanics for Sports Coaches'),(113808,40267,'_fft_description',NULL),(113809,40267,'_fft_metadata_school','biomechanics'),(113810,40267,'_fft_metadata_flex_id','1326'),(113811,40267,'_fft_metadata_type_id','100000000'),(113812,40267,'_fft_metadata_flex_type','collection'),(113813,40267,'_fft_metadata_type_label','Course'),(113814,40267,'_fft_metadata_course_type_id','100000002'),(113815,40267,'_fft_metadata_course_type_label','Online Learning'),(113816,40267,'_fft_metadata_productstructure_id','1'),(113817,40267,'_fft_metadata_productstructure_label','Product'),(113818,40267,'_fft_taxable','1'),(113819,40267,'_fft_created_at','1724086111'),(113820,40267,'_fft_updated_at','1724086111'),(113821,40267,'_fft_price_id','193'),(113822,40267,'_fft_price_value','115.83'),(113823,40267,'_fft_price_begins_at',NULL),(113824,40267,'_fft_price_expires_at',NULL),(113825,40267,'_fft_price_value_inc_tax','139'),(113826,40267,'_fft_error',''),(113827,40267,'_fft_saved_at','1725977876'),(113828,40268,'_fft_id','191'),(113829,40268,'_fft_catalogue_id','f719efce-190d-ef11-9f89-7c1e521d5cd3'),(113830,40268,'_fft_code','BMFSMT'),(113831,40268,'_fft_name','Biomechanics for Sports Massage Therapists'),(113832,40268,'_fft_description',NULL),(113833,40268,'_fft_metadata_school','biomechanics'),(113834,40268,'_fft_metadata_flex_id','1230'),(113835,40268,'_fft_metadata_type_id','100000000'),(113836,40268,'_fft_metadata_flex_type','collection'),(113837,40268,'_fft_metadata_type_label','Course'),(113838,40268,'_fft_metadata_course_type_id','100000002'),(113839,40268,'_fft_metadata_course_type_label','Online Learning'),(113840,40268,'_fft_metadata_productstructure_id','1'),(113841,40268,'_fft_metadata_productstructure_label','Product'),(113842,40268,'_fft_taxable','1'),(113843,40268,'_fft_created_at','1724086111'),(113844,40268,'_fft_updated_at','1724086111'),(113845,40268,'_fft_price_id','194'),(113846,40268,'_fft_price_value','115.83'),(113847,40268,'_fft_price_begins_at',NULL),(113848,40268,'_fft_price_expires_at',NULL),(113849,40268,'_fft_price_value_inc_tax','139'),(113850,40268,'_fft_error',''),(113851,40268,'_fft_saved_at','1725977876'),(113852,40269,'_fft_id','192'),(113853,40269,'_fft_catalogue_id','43dddea2-c93a-ef11-a316-6045bd0f452f'),(113854,40269,'_fft_code','BMFSCC'),(113855,40269,'_fft_name','Biomechanics for Strength and Conditioning Coaches'),(113856,40269,'_fft_description',NULL),(113857,40269,'_fft_metadata_school','biomechanics'),(113858,40269,'_fft_metadata_flex_id','1325'),(113859,40269,'_fft_metadata_type_id','100000000'),(113860,40269,'_fft_metadata_flex_type','collection'),(113861,40269,'_fft_metadata_type_label','Course'),(113862,40269,'_fft_metadata_course_type_id','100000002'),(113863,40269,'_fft_metadata_course_type_label','Online Learning'),(113864,40269,'_fft_metadata_productstructure_id','1'),(113865,40269,'_fft_metadata_productstructure_label','Product'),(113866,40269,'_fft_taxable','1'),(113867,40269,'_fft_created_at','1724086111'),(113868,40269,'_fft_updated_at','1724086111'),(113869,40269,'_fft_price_id','195'),(113870,40269,'_fft_price_value','115.83'),(113871,40269,'_fft_price_begins_at',NULL),(113872,40269,'_fft_price_expires_at',NULL),(113873,40269,'_fft_price_value_inc_tax','139'),(113874,40269,'_fft_error',''),(113875,40269,'_fft_saved_at','1725977876'),(113876,40270,'_fft_id','194'),(113877,40270,'_fft_catalogue_id','805388d6-e8e2-e811-a8cb-00224801a6a4'),(113878,40270,'_fft_code','MKBE'),(113879,40270,'_fft_name','Building Your Fitness Business'),(113880,40270,'_fft_description',NULL),(113881,40270,'_fft_metadata_school','biomechanics'),(113882,40270,'_fft_metadata_flex_id','431'),(113883,40270,'_fft_metadata_type_id','100000000'),(113884,40270,'_fft_metadata_flex_type','collection'),(113885,40270,'_fft_metadata_type_label','Course'),(113886,40270,'_fft_metadata_course_type_id','100000002'),(113887,40270,'_fft_metadata_course_type_label','Online Learning'),(113888,40270,'_fft_metadata_productstructure_id','1'),(113889,40270,'_fft_metadata_productstructure_label','Product'),(113890,40270,'_fft_taxable','1'),(113891,40270,'_fft_created_at','1633080489'),(113892,40270,'_fft_updated_at','1743078580'),(113893,40270,'_fft_price_id','197'),(113894,40270,'_fft_price_value','215.83'),(113895,40270,'_fft_price_begins_at',NULL),(113896,40270,'_fft_price_expires_at',NULL),(113897,40270,'_fft_price_value_inc_tax','259'),(113898,40270,'_fft_error',''),(113899,40270,'_fft_saved_at','1751618582'),(113900,40271,'_fft_id','195'),(113901,40271,'_fft_catalogue_id','41595b56-8190-eb11-b1ac-000d3a7fb115'),(113902,40271,'_fft_code','CFO'),(113903,40271,'_fft_name','Coaching Fitness Online'),(113904,40271,'_fft_description',NULL),(113905,40271,'_fft_metadata_school','biomechanics'),(113906,40271,'_fft_metadata_flex_id','421'),(113907,40271,'_fft_metadata_type_id','100000000'),(113908,40271,'_fft_metadata_flex_type','collection'),(113909,40271,'_fft_metadata_type_label','Course'),(113910,40271,'_fft_metadata_course_type_id','100000002'),(113911,40271,'_fft_metadata_course_type_label','Online Learning'),(113912,40271,'_fft_metadata_productstructure_id','1'),(113913,40271,'_fft_metadata_productstructure_label','Product'),(113914,40271,'_fft_taxable','1'),(113915,40271,'_fft_created_at','1633080465'),(113916,40271,'_fft_updated_at','1743078582'),(113917,40271,'_fft_price_id','198'),(113918,40271,'_fft_price_value','249.17'),(113919,40271,'_fft_price_begins_at',NULL),(113920,40271,'_fft_price_expires_at',NULL),(113921,40271,'_fft_price_value_inc_tax','299'),(113922,40271,'_fft_error',''),(113923,40271,'_fft_saved_at','1751618582'),(113924,40272,'_fft_id','196'),(113925,40272,'_fft_catalogue_id','a25388d6-e8e2-e811-a8cb-00224801a6a4'),(113926,40272,'_fft_code','TT'),(113927,40272,'_fft_name','Core Training'),(113928,40272,'_fft_description',NULL),(113929,40272,'_fft_metadata_school','biomechanics'),(113930,40272,'_fft_metadata_flex_id','424'),(113931,40272,'_fft_metadata_type_id','100000000'),(113932,40272,'_fft_metadata_flex_type','collection'),(113933,40272,'_fft_metadata_type_label','Course'),(113934,40272,'_fft_metadata_course_type_id','100000002'),(113935,40272,'_fft_metadata_course_type_label','Practical Workshop'),(113936,40272,'_fft_metadata_productstructure_id','1'),(113937,40272,'_fft_metadata_productstructure_label','Product'),(113938,40272,'_fft_taxable','1'),(113939,40272,'_fft_created_at','1633080501'),(113940,40272,'_fft_updated_at','1743078582'),(113941,40272,'_fft_price_id','199'),(113942,40272,'_fft_price_value','115.83'),(113943,40272,'_fft_price_begins_at',NULL),(113944,40272,'_fft_price_expires_at',NULL),(113945,40272,'_fft_price_value_inc_tax','139'),(113946,40272,'_fft_error',''),(113947,40272,'_fft_saved_at','1751618582'),(113948,40273,'_fft_id','197'),(113949,40273,'_fft_catalogue_id','0985f382-54f5-ed11-8848-6045bdd0ef47'),(113950,40273,'_fft_code','DAMSROL'),(113951,40273,'_fft_name','Deadlift Analysis Made Simple'),(113952,40273,'_fft_description',NULL),(113953,40273,'_fft_metadata_school','biomechanics'),(113954,40273,'_fft_metadata_flex_id','750'),(113955,40273,'_fft_metadata_type_id','100000000'),(113956,40273,'_fft_metadata_flex_type','collection'),(113957,40273,'_fft_metadata_type_label','Course'),(113958,40273,'_fft_metadata_course_type_id','100000002'),(113959,40273,'_fft_metadata_course_type_label','Online Learning'),(113960,40273,'_fft_metadata_productstructure_id','1'),(113961,40273,'_fft_metadata_productstructure_label','Product'),(113962,40273,'_fft_taxable','1'),(113963,40273,'_fft_created_at','1725012116'),(113964,40273,'_fft_updated_at','1743078582'),(113965,40273,'_fft_price_id','200'),(113966,40273,'_fft_price_value','18'),(113967,40273,'_fft_price_begins_at',NULL),(113968,40273,'_fft_price_expires_at',NULL),(113969,40273,'_fft_price_value_inc_tax','21.6'),(113970,40273,'_fft_error',''),(113971,40273,'_fft_saved_at','1751618582'),(113972,40274,'_fft_id','198'),(113973,40274,'_fft_catalogue_id','b90fb1bd-54f5-ed11-8848-6045bdd0ef47'),(113974,40274,'_fft_code','FBMSROL'),(113975,40274,'_fft_name','Foot Biomechanics Made Simple'),(113976,40274,'_fft_description',NULL),(113977,40274,'_fft_metadata_school','biomechanics'),(113978,40274,'_fft_metadata_flex_id','748'),(113979,40274,'_fft_metadata_type_id','100000000'),(113980,40274,'_fft_metadata_flex_type','collection'),(113981,40274,'_fft_metadata_type_label','Course'),(113982,40274,'_fft_metadata_course_type_id','100000002'),(113983,40274,'_fft_metadata_course_type_label','Online Learning'),(113984,40274,'_fft_metadata_productstructure_id','1'),(113985,40274,'_fft_metadata_productstructure_label','Product'),(113986,40274,'_fft_taxable','1'),(113987,40274,'_fft_created_at','1725980678'),(113988,40274,'_fft_updated_at','1743078583'),(113989,40274,'_fft_price_id','201'),(113990,40274,'_fft_price_value','18'),(113991,40274,'_fft_price_begins_at',NULL),(113992,40274,'_fft_price_expires_at',NULL),(113993,40274,'_fft_price_value_inc_tax','21.6'),(113994,40274,'_fft_error',''),(113995,40274,'_fft_saved_at','1751618582'),(113996,40275,'_fft_id','199'),(113997,40275,'_fft_catalogue_id','36b61ef4-54f5-ed11-8848-6045bdd0ef47'),(113998,40275,'_fft_code','FPOMOL'),(113999,40275,'_fft_name','Fundamental Principles of Movement'),(114000,40275,'_fft_description',NULL),(114001,40275,'_fft_metadata_school','biomechanics'),(114002,40275,'_fft_metadata_flex_id','747'),(114003,40275,'_fft_metadata_type_id','100000000'),(114004,40275,'_fft_metadata_flex_type','collection'),(114005,40275,'_fft_metadata_type_label','Course'),(114006,40275,'_fft_metadata_course_type_id','100000002'),(114007,40275,'_fft_metadata_course_type_label','Online Learning'),(114008,40275,'_fft_metadata_productstructure_id','1'),(114009,40275,'_fft_metadata_productstructure_label','Product'),(114010,40275,'_fft_taxable','1'),(114011,40275,'_fft_created_at','1725980678'),(114012,40275,'_fft_updated_at','1743078583'),(114013,40275,'_fft_price_id','202'),(114014,40275,'_fft_price_value','27'),(114015,40275,'_fft_price_begins_at',NULL),(114016,40275,'_fft_price_expires_at',NULL),(114017,40275,'_fft_price_value_inc_tax','32.4'),(114018,40275,'_fft_error',''),(114019,40275,'_fft_saved_at','1751618582'),(114020,40276,'_fft_id','210'),(114021,40276,'_fft_catalogue_id','83d6796e-416c-ef11-a670-6045bd10fb7a'),(114022,40276,'_fft_code','IBAM v2.0'),(114023,40276,'_fft_name','IBA Membership'),(114024,40276,'_fft_description',NULL),(114025,40276,'_fft_metadata_school','biomechanics'),(114026,40276,'_fft_metadata_flex_id','1244'),(114027,40276,'_fft_metadata_type_id','100000000'),(114028,40276,'_fft_metadata_flex_type','group'),(114029,40276,'_fft_metadata_type_label','Course'),(114030,40276,'_fft_metadata_course_type_id','100000002'),(114031,40276,'_fft_metadata_course_type_label','Online Learning'),(114032,40276,'_fft_metadata_productstructure_id','1'),(114033,40276,'_fft_metadata_productstructure_label','Product'),(114034,40276,'_fft_taxable','1'),(114035,40276,'_fft_created_at','1725980678'),(114036,40276,'_fft_updated_at','1743078584'),(114037,40276,'_fft_price_id',NULL),(114038,40276,'_fft_price_value','36'),(114039,40276,'_fft_price_begins_at',NULL),(114040,40276,'_fft_price_expires_at',NULL),(114041,40276,'_fft_price_value_inc_tax','43.2'),(114042,40276,'_fft_error',''),(114043,40276,'_fft_saved_at','1751618583'),(114044,40277,'_fft_id','200'),(114045,40277,'_fft_catalogue_id','e8258b49-55f5-ed11-8848-6045bdd0ef47'),(114046,40277,'_fft_code','iMFOL'),(114047,40277,'_fft_name','iMoveFreely Online Learning'),(114048,40277,'_fft_description',NULL),(114049,40277,'_fft_metadata_school','biomechanics'),(114050,40277,'_fft_metadata_flex_id','743'),(114051,40277,'_fft_metadata_type_id','100000000'),(114052,40277,'_fft_metadata_flex_type','collection'),(114053,40277,'_fft_metadata_type_label','Course'),(114054,40277,'_fft_metadata_course_type_id','100000002'),(114055,40277,'_fft_metadata_course_type_label','Online Learning'),(114056,40277,'_fft_metadata_productstructure_id','1'),(114057,40277,'_fft_metadata_productstructure_label','Product'),(114058,40277,'_fft_taxable','1'),(114059,40277,'_fft_created_at','1725980678'),(114060,40277,'_fft_updated_at','1743078584'),(114061,40277,'_fft_price_id','203'),(114062,40277,'_fft_price_value','94'),(114063,40277,'_fft_price_begins_at',NULL),(114064,40277,'_fft_price_expires_at',NULL),(114065,40277,'_fft_price_value_inc_tax','112.8'),(114066,40277,'_fft_error',''),(114067,40277,'_fft_saved_at','1751618583'),(114068,40278,'_fft_id','201'),(114069,40278,'_fft_catalogue_id','a5ae6810-01f3-ec11-bb3d-002248428ff5'),(114070,40278,'_fft_code','IntroBio'),(114071,40278,'_fft_name','Introduction to Intrinsic Biomechanics'),(114072,40278,'_fft_description',NULL),(114073,40278,'_fft_metadata_school','biomechanics'),(114074,40278,'_fft_metadata_flex_id','313'),(114075,40278,'_fft_metadata_type_id','100000000'),(114076,40278,'_fft_metadata_flex_type','collection'),(114077,40278,'_fft_metadata_type_label','Course'),(114078,40278,'_fft_metadata_course_type_id','100000002'),(114079,40278,'_fft_metadata_course_type_label','Online Learning'),(114080,40278,'_fft_metadata_productstructure_id','1'),(114081,40278,'_fft_metadata_productstructure_label','Product'),(114082,40278,'_fft_taxable','1'),(114083,40278,'_fft_created_at','1725980678'),(114084,40278,'_fft_updated_at','1725980678'),(114085,40278,'_fft_price_id','204'),(114086,40278,'_fft_price_value','0'),(114087,40278,'_fft_price_begins_at',NULL),(114088,40278,'_fft_price_expires_at',NULL),(114089,40278,'_fft_price_value_inc_tax','0'),(114090,40278,'_fft_error',''),(114091,40278,'_fft_saved_at','1728293947'),(114092,40279,'_fft_id','202'),(114093,40279,'_fft_catalogue_id','181a4834-56f5-ed11-8848-6045bdd0ef47'),(114094,40279,'_fft_code','PSMSOL'),(114095,40279,'_fft_name','Pain Science Made Simple'),(114096,40279,'_fft_description',NULL),(114097,40279,'_fft_metadata_school','biomechanics'),(114098,40279,'_fft_metadata_flex_id','752'),(114099,40279,'_fft_metadata_type_id','100000000'),(114100,40279,'_fft_metadata_flex_type','collection'),(114101,40279,'_fft_metadata_type_label','Course'),(114102,40279,'_fft_metadata_course_type_id','100000002'),(114103,40279,'_fft_metadata_course_type_label','Online Learning'),(114104,40279,'_fft_metadata_productstructure_id','1'),(114105,40279,'_fft_metadata_productstructure_label','Product'),(114106,40279,'_fft_taxable','1'),(114107,40279,'_fft_created_at','1725980678'),(114108,40279,'_fft_updated_at','1743078590'),(114109,40279,'_fft_price_id','205'),(114110,40279,'_fft_price_value','18'),(114111,40279,'_fft_price_begins_at',NULL),(114112,40279,'_fft_price_expires_at',NULL),(114113,40279,'_fft_price_value_inc_tax','21.6'),(114114,40279,'_fft_error',''),(114115,40279,'_fft_saved_at','1751618583'),(114116,40280,'_fft_id','203'),(114117,40280,'_fft_catalogue_id','c068f25e-56f5-ed11-8848-6045bdd0ef47'),(114118,40280,'_fft_code','PASOL'),(114119,40280,'_fft_name','Practical Anatomy Series'),(114120,40280,'_fft_description',NULL),(114121,40280,'_fft_metadata_school','biomechanics'),(114122,40280,'_fft_metadata_flex_id','755'),(114123,40280,'_fft_metadata_type_id','100000000'),(114124,40280,'_fft_metadata_flex_type','collection'),(114125,40280,'_fft_metadata_type_label','Course'),(114126,40280,'_fft_metadata_course_type_id','100000002'),(114127,40280,'_fft_metadata_course_type_label','Online Learning'),(114128,40280,'_fft_metadata_productstructure_id','1'),(114129,40280,'_fft_metadata_productstructure_label','Product'),(114130,40280,'_fft_taxable','1'),(114131,40280,'_fft_created_at','1725980678'),(114132,40280,'_fft_updated_at','1743078591'),(114133,40280,'_fft_price_id','206'),(114134,40280,'_fft_price_value','112.5'),(114135,40280,'_fft_price_begins_at',NULL),(114136,40280,'_fft_price_expires_at',NULL),(114137,40280,'_fft_price_value_inc_tax','135'),(114138,40280,'_fft_error',''),(114139,40280,'_fft_saved_at','1751618584'),(114140,40281,'_fft_id','204'),(114141,40281,'_fft_catalogue_id','854e6092-56f5-ed11-8848-6045bdd0ef47'),(114142,40281,'_fft_code','RBOL'),(114143,40281,'_fft_name','Running Biomechanics Online Learning'),(114144,40281,'_fft_description',NULL),(114145,40281,'_fft_metadata_school','biomechanics'),(114146,40281,'_fft_metadata_flex_id','745'),(114147,40281,'_fft_metadata_type_id','100000000'),(114148,40281,'_fft_metadata_flex_type','collection'),(114149,40281,'_fft_metadata_type_label','Course'),(114150,40281,'_fft_metadata_course_type_id','100000002'),(114151,40281,'_fft_metadata_course_type_label','Online Learning'),(114152,40281,'_fft_metadata_productstructure_id','1'),(114153,40281,'_fft_metadata_productstructure_label','Product'),(114154,40281,'_fft_taxable','1'),(114155,40281,'_fft_created_at','1725980678'),(114156,40281,'_fft_updated_at','1743078593'),(114157,40281,'_fft_price_id','207'),(114158,40281,'_fft_price_value','87'),(114159,40281,'_fft_price_begins_at',NULL),(114160,40281,'_fft_price_expires_at',NULL),(114161,40281,'_fft_price_value_inc_tax','104.4'),(114162,40281,'_fft_error',''),(114163,40281,'_fft_saved_at','1751618584'),(114164,40282,'_fft_id','205'),(114165,40282,'_fft_catalogue_id','05d514c4-56f5-ed11-8848-6045bdd2c805'),(114166,40282,'_fft_code','TFPIOL'),(114167,40282,'_fft_name','The Foot Posture Index'),(114168,40282,'_fft_description',NULL),(114169,40282,'_fft_metadata_school','biomechanics'),(114170,40282,'_fft_metadata_flex_id','749'),(114171,40282,'_fft_metadata_type_id','100000000'),(114172,40282,'_fft_metadata_flex_type','collection'),(114173,40282,'_fft_metadata_type_label','Course'),(114174,40282,'_fft_metadata_course_type_id','100000002'),(114175,40282,'_fft_metadata_course_type_label','Online Learning'),(114176,40282,'_fft_metadata_productstructure_id','1'),(114177,40282,'_fft_metadata_productstructure_label','Product'),(114178,40282,'_fft_taxable','1'),(114179,40282,'_fft_created_at','1725980678'),(114180,40282,'_fft_updated_at','1743078594'),(114181,40282,'_fft_price_id','208'),(114182,40282,'_fft_price_value','25'),(114183,40282,'_fft_price_begins_at',NULL),(114184,40282,'_fft_price_expires_at',NULL),(114185,40282,'_fft_price_value_inc_tax','30'),(114186,40282,'_fft_error',''),(114187,40282,'_fft_saved_at','1751618583'),(114188,40283,'_fft_id','206'),(114189,40283,'_fft_catalogue_id','b4859168-57f5-ed11-8848-6045bdd2c805'),(114190,40283,'_fft_code','UNOL'),(114191,40283,'_fft_name','Understanding Nerves'),(114192,40283,'_fft_description',NULL),(114193,40283,'_fft_metadata_school','biomechanics'),(114194,40283,'_fft_metadata_flex_id','754'),(114195,40283,'_fft_metadata_type_id','100000000'),(114196,40283,'_fft_metadata_flex_type','collection'),(114197,40283,'_fft_metadata_type_label','Course'),(114198,40283,'_fft_metadata_course_type_id','100000002'),(114199,40283,'_fft_metadata_course_type_label','Online Learning'),(114200,40283,'_fft_metadata_productstructure_id','1'),(114201,40283,'_fft_metadata_productstructure_label','Product'),(114202,40283,'_fft_taxable','1'),(114203,40283,'_fft_created_at','1725980678'),(114204,40283,'_fft_updated_at','1743078594'),(114205,40283,'_fft_price_id','209'),(114206,40283,'_fft_price_value','18'),(114207,40283,'_fft_price_begins_at',NULL),(114208,40283,'_fft_price_expires_at',NULL),(114209,40283,'_fft_price_value_inc_tax','21.6'),(114210,40283,'_fft_error',''),(114211,40283,'_fft_saved_at','1751618583'),(114212,40284,'_fft_id','207'),(114213,40284,'_fft_catalogue_id','dd08a8a0-57f5-ed11-8848-6045bdd2c805'),(114214,40284,'_fft_code','WGOL'),(114215,40284,'_fft_name','Weak Glutes'),(114216,40284,'_fft_description',NULL),(114217,40284,'_fft_metadata_school','biomechanics'),(114218,40284,'_fft_metadata_flex_id','751'),(114219,40284,'_fft_metadata_type_id','100000000'),(114220,40284,'_fft_metadata_flex_type','collection'),(114221,40284,'_fft_metadata_type_label','Course'),(114222,40284,'_fft_metadata_course_type_id','100000002'),(114223,40284,'_fft_metadata_course_type_label','Online Learning'),(114224,40284,'_fft_metadata_productstructure_id','1'),(114225,40284,'_fft_metadata_productstructure_label','Product'),(114226,40284,'_fft_taxable','1'),(114227,40284,'_fft_created_at','1725980678'),(114228,40284,'_fft_updated_at','1743078595'),(114229,40284,'_fft_price_id','210'),(114230,40284,'_fft_price_value','27'),(114231,40284,'_fft_price_begins_at',NULL),(114232,40284,'_fft_price_expires_at',NULL),(114233,40284,'_fft_price_value_inc_tax','32.4'),(114234,40284,'_fft_error',''),(114235,40284,'_fft_saved_at','1751618584'),(114236,40285,'_fft_id','208'),(114237,40285,'_fft_catalogue_id','5a057acc-57f5-ed11-8848-6045bdd2c805'),(114238,40285,'_fft_code','WTHIFTAOL'),(114239,40285,'_fft_name','What the hell is Functional Training anyway?'),(114240,40285,'_fft_description',NULL),(114241,40285,'_fft_metadata_school','biomechanics'),(114242,40285,'_fft_metadata_flex_id','753'),(114243,40285,'_fft_metadata_type_id','100000000'),(114244,40285,'_fft_metadata_flex_type','collection'),(114245,40285,'_fft_metadata_type_label','Course'),(114246,40285,'_fft_metadata_course_type_id','100000002'),(114247,40285,'_fft_metadata_course_type_label','Online Learning'),(114248,40285,'_fft_metadata_productstructure_id','1'),(114249,40285,'_fft_metadata_productstructure_label','Product'),(114250,40285,'_fft_taxable','1'),(114251,40285,'_fft_created_at','1725980678'),(114252,40285,'_fft_updated_at','1743078595'),(114253,40285,'_fft_price_id','211'),(114254,40285,'_fft_price_value','25'),(114255,40285,'_fft_price_begins_at',NULL),(114256,40285,'_fft_price_expires_at',NULL),(114257,40285,'_fft_price_value_inc_tax','30'),(114258,40285,'_fft_error',''),(114259,40285,'_fft_saved_at','1751618584'),(114260,40286,'_fft_id','209'),(114261,40286,'_fft_catalogue_id','4086a357-0d4b-ee11-be6f-6045bdd0ef47'),(114262,40286,'_fft_code','WHMP'),(114263,40286,'_fft_name','Womens Health - Menopause and Programming'),(114264,40286,'_fft_description',NULL),(114265,40286,'_fft_metadata_school','biomechanics'),(114266,40286,'_fft_metadata_flex_id','859'),(114267,40286,'_fft_metadata_type_id','100000000'),(114268,40286,'_fft_metadata_flex_type','collection'),(114269,40286,'_fft_metadata_type_label','Course'),(114270,40286,'_fft_metadata_course_type_id','100000002'),(114271,40286,'_fft_metadata_course_type_label','Online Learning'),(114272,40286,'_fft_metadata_productstructure_id','1'),(114273,40286,'_fft_metadata_productstructure_label','Product'),(114274,40286,'_fft_taxable','1'),(114275,40286,'_fft_created_at','1725980678'),(114276,40286,'_fft_updated_at','1743078595'),(114277,40286,'_fft_price_id','212'),(114278,40286,'_fft_price_value','82.5'),(114279,40286,'_fft_price_begins_at',NULL),(114280,40286,'_fft_price_expires_at',NULL),(114281,40286,'_fft_price_value_inc_tax','99'),(114282,40286,'_fft_error',''),(114283,40286,'_fft_saved_at','1751618584'),(114284,40286,'_edit_lock','1728032465:5'),(114325,40286,'_yoast_wpseo_estimated-reading-time-minutes','1'),(114326,40288,'_wp_attached_file','2024/09/Womens-health-menopause-and-programming-hero-image-scaled.jpg'),(114327,40288,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:69:\"2024/09/Womens-health-menopause-and-programming-hero-image-scaled.jpg\";s:8:\"filesize\";i:466655;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Womens-health-menopause-and-programming-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102543;}s:5:\"large\";a:5:{s:4:\"file\";s:63:\"Womens-health-menopause-and-programming-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142603;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Womens-health-menopause-and-programming-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51008;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:62:\"Womens-health-menopause-and-programming-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86816;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:64:\"Womens-health-menopause-and-programming-hero-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200078;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:64:\"Womens-health-menopause-and-programming-hero-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:313975;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:62:\"Womens-health-menopause-and-programming-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58434;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:62:\"Womens-health-menopause-and-programming-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128769;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:64:\"Womens-health-menopause-and-programming-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187744;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:62:\"Womens-health-menopause-and-programming-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50983;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:62:\"Womens-health-menopause-and-programming-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102543;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:63:\"Womens-health-menopause-and-programming-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142603;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:62:\"Womens-health-menopause-and-programming-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52422;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:62:\"Womens-health-menopause-and-programming-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107042;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:63:\"Womens-health-menopause-and-programming-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151985;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:62:\"Womens-health-menopause-and-programming-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53393;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:62:\"Womens-health-menopause-and-programming-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109909;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:63:\"Womens-health-menopause-and-programming-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156002;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:62:\"Womens-health-menopause-and-programming-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48942;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:62:\"Womens-health-menopause-and-programming-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96285;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:63:\"Womens-health-menopause-and-programming-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132637;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1634037535\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"38\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:54:\"Womens-health-menopause-and-programming-hero-image.jpg\";}'),(114328,40286,'_edit_last','5'),(114329,40286,'hide_hero','0'),(114330,40286,'_hide_hero','field_66a2380fcda39'),(114331,40286,'hero_title',''),(114332,40286,'_hero_title','field_617571fe285e8'),(114333,40286,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(114334,40286,'_hero_text','field_6175723c285e9'),(114335,40286,'hero_actions','1'),(114336,40286,'_hero_actions','field_61757270285ea'),(114337,40286,'hero_style','default'),(114338,40286,'_hero_style','field_62051d9dc5324'),(114339,40286,'_thumbnail_id','40288'),(114340,40286,'__thumbnail_id','field_617570855ddaf'),(114341,40286,'hero_image_pos_x','right'),(114342,40286,'_hero_image_pos_x','field_62ec3d05390bb'),(114343,40286,'hero_image_pos_y','top'),(114344,40286,'_hero_image_pos_y','field_62ec3d05390bc'),(114345,40286,'hero_image_pos',''),(114346,40286,'_hero_image_pos','field_62ec3d05390ba'),(114347,40286,'fft_hide_from_listings','0'),(114348,40286,'_fft_hide_from_listings','field_61f1320446ab2'),(114349,40286,'fft_page_format','default'),(114350,40286,'_fft_page_format','field_61ae213f1f218'),(114351,40286,'fft_hide_nav','0'),(114352,40286,'_fft_hide_nav','field_635bd5e43527c'),(114353,40286,'fft_hide_header_call_to_action','0'),(114354,40286,'_fft_hide_header_call_to_action','field_635bd6723527d'),(114355,40286,'fft_page_sitemap','0'),(114356,40286,'_fft_page_sitemap','field_61af9b34e8181'),(114357,40286,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(114358,40286,'_blocks','field_6176696113096'),(114359,40286,'course_label_text','Womens Health - Menopause and Programming'),(114360,40286,'_course_label_text','field_61e17babf71fa'),(114361,40286,'course_label',''),(114362,40286,'_course_label','field_61e12f92749a7'),(114363,40286,'course_description','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(114364,40286,'_course_description','field_617ac5788e5e1'),(114365,40286,'course_key_info','3'),(114366,40286,'_course_key_info','field_617ac6ad8e5e2'),(114367,40286,'course_included','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(114368,40286,'_course_included','field_617ac6f08e5e4'),(114369,40286,'_yoast_wpseo_primary_course-cat','404'),(114370,40289,'hide_hero','0'),(114371,40289,'_hide_hero','field_66a2380fcda39'),(114372,40289,'hero_title',''),(114373,40289,'_hero_title','field_617571fe285e8'),(114374,40289,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(114375,40289,'_hero_text','field_6175723c285e9'),(114376,40289,'hero_actions',''),(114377,40289,'_hero_actions','field_61757270285ea'),(114378,40289,'hero_style','default'),(114379,40289,'_hero_style','field_62051d9dc5324'),(114380,40289,'_thumbnail_id','40288'),(114381,40289,'__thumbnail_id','field_617570855ddaf'),(114382,40289,'hero_image_pos_x','right'),(114383,40289,'_hero_image_pos_x','field_62ec3d05390bb'),(114384,40289,'hero_image_pos_y','top'),(114385,40289,'_hero_image_pos_y','field_62ec3d05390bc'),(114386,40289,'hero_image_pos',''),(114387,40289,'_hero_image_pos','field_62ec3d05390ba'),(114388,40289,'fft_hide_from_listings','0'),(114389,40289,'_fft_hide_from_listings','field_61f1320446ab2'),(114390,40289,'fft_page_format','default'),(114391,40289,'_fft_page_format','field_61ae213f1f218'),(114392,40289,'fft_hide_nav','0'),(114393,40289,'_fft_hide_nav','field_635bd5e43527c'),(114394,40289,'fft_hide_header_call_to_action','0'),(114395,40289,'_fft_hide_header_call_to_action','field_635bd6723527d'),(114396,40289,'fft_page_sitemap','0'),(114397,40289,'_fft_page_sitemap','field_61af9b34e8181'),(114398,40289,'blocks',''),(114399,40289,'_blocks','field_6176696113096'),(114400,40289,'course_label_text',''),(114401,40289,'_course_label_text','field_61e17babf71fa'),(114402,40289,'course_label',''),(114403,40289,'_course_label','field_61e12f92749a7'),(114404,40289,'course_description',''),(114405,40289,'_course_description','field_617ac5788e5e1'),(114406,40289,'course_key_info',''),(114407,40289,'_course_key_info','field_617ac6ad8e5e2'),(114408,40289,'course_included',''),(114409,40289,'_course_included','field_617ac6f08e5e4'),(114410,40290,'_wp_attached_file','2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-scaled.jpg'),(114411,40290,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:70:\"2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-scaled.jpg\";s:8:\"filesize\";i:358840;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90593;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124379;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46985;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77407;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169007;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:252045;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:63:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56269;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:63:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124187;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178250;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:63:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47038;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:63:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90593;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:64:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124379;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:63:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49519;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:63:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101395;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:64:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142788;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:63:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49233;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:63:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98796;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:64:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137178;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:63:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45099;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:63:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84153;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:64:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114416;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1634037569\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:55:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE.jpg\";}'),(114412,40286,'blocks_0_acfe_flexible_toggle',''),(114413,40286,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(114414,40286,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(114415,40286,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(114416,40286,'blocks_0_options_theme','#ffffff'),(114417,40286,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(114418,40286,'blocks_0_options_reverse','0'),(114419,40286,'_blocks_0_options_reverse','field_61768049bb8ac'),(114420,40286,'blocks_0_options',''),(114421,40286,'_blocks_0_options','field_617682517c334'),(114422,40286,'blocks_0_split_5050_image','40290'),(114423,40286,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(114424,40286,'blocks_0_split_5050_video',''),(114425,40286,'_blocks_0_split_5050_video','field_6239f3160848a'),(114426,40286,'blocks_0_split_5050_content_title',''),(114427,40286,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(114428,40286,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(114429,40286,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(114430,40286,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(114431,40286,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(114432,40286,'blocks_0_split_5050_content_actions',''),(114433,40286,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(114434,40286,'blocks_0_split_5050_content',''),(114435,40286,'_blocks_0_split_5050_content','field_61767afceb8ba'),(114436,40291,'hide_hero','0'),(114437,40291,'_hide_hero','field_66a2380fcda39'),(114438,40291,'hero_title',''),(114439,40291,'_hero_title','field_617571fe285e8'),(114440,40291,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(114441,40291,'_hero_text','field_6175723c285e9'),(114442,40291,'hero_actions',''),(114443,40291,'_hero_actions','field_61757270285ea'),(114444,40291,'hero_style','default'),(114445,40291,'_hero_style','field_62051d9dc5324'),(114446,40291,'_thumbnail_id','40288'),(114447,40291,'__thumbnail_id','field_617570855ddaf'),(114448,40291,'hero_image_pos_x','right'),(114449,40291,'_hero_image_pos_x','field_62ec3d05390bb'),(114450,40291,'hero_image_pos_y','top'),(114451,40291,'_hero_image_pos_y','field_62ec3d05390bc'),(114452,40291,'hero_image_pos',''),(114453,40291,'_hero_image_pos','field_62ec3d05390ba'),(114454,40291,'fft_hide_from_listings','0'),(114455,40291,'_fft_hide_from_listings','field_61f1320446ab2'),(114456,40291,'fft_page_format','default'),(114457,40291,'_fft_page_format','field_61ae213f1f218'),(114458,40291,'fft_hide_nav','0'),(114459,40291,'_fft_hide_nav','field_635bd5e43527c'),(114460,40291,'fft_hide_header_call_to_action','0'),(114461,40291,'_fft_hide_header_call_to_action','field_635bd6723527d'),(114462,40291,'fft_page_sitemap','0'),(114463,40291,'_fft_page_sitemap','field_61af9b34e8181'),(114464,40291,'blocks','a:1:{i:0;s:10:\"split_5050\";}'),(114465,40291,'_blocks','field_6176696113096'),(114466,40291,'course_label_text',''),(114467,40291,'_course_label_text','field_61e17babf71fa'),(114468,40291,'course_label',''),(114469,40291,'_course_label','field_61e12f92749a7'),(114470,40291,'course_description',''),(114471,40291,'_course_description','field_617ac5788e5e1'),(114472,40291,'course_key_info',''),(114473,40291,'_course_key_info','field_617ac6ad8e5e2'),(114474,40291,'course_included',''),(114475,40291,'_course_included','field_617ac6f08e5e4'),(114476,40291,'blocks_0_acfe_flexible_toggle',''),(114477,40291,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(114478,40291,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(114479,40291,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(114480,40291,'blocks_0_options_theme','#ffffff'),(114481,40291,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(114482,40291,'blocks_0_options_reverse','0'),(114483,40291,'_blocks_0_options_reverse','field_61768049bb8ac'),(114484,40291,'blocks_0_options',''),(114485,40291,'_blocks_0_options','field_617682517c334'),(114486,40291,'blocks_0_split_5050_image','40290'),(114487,40291,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(114488,40291,'blocks_0_split_5050_video',''),(114489,40291,'_blocks_0_split_5050_video','field_6239f3160848a'),(114490,40291,'blocks_0_split_5050_content_title',''),(114491,40291,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(114492,40291,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(114493,40291,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(114494,40291,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(114495,40291,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(114496,40291,'blocks_0_split_5050_content_actions',''),(114497,40291,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(114498,40291,'blocks_0_split_5050_content',''),(114499,40291,'_blocks_0_split_5050_content','field_61767afceb8ba'),(114500,40286,'blocks_1_acfe_flexible_toggle',''),(114501,40286,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(114502,40286,'blocks_1_acfe_flexible_layout_title','Icons'),(114503,40286,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(114504,40286,'blocks_1_options_theme','#b61234'),(114505,40286,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(114506,40286,'blocks_1_options_format','grid'),(114507,40286,'_blocks_1_options_format','field_64bfde9a90690'),(114508,40286,'blocks_1_options',''),(114509,40286,'_blocks_1_options','field_64bfdd9b90684'),(114510,40286,'blocks_1_row_content_title',''),(114511,40286,'_blocks_1_row_content_title','field_64bfdd9b90687'),(114512,40286,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(114513,40286,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(114514,40286,'blocks_1_row_content_text',''),(114515,40286,'_blocks_1_row_content_text','field_64bfdd9b90689'),(114516,40286,'blocks_1_row_content_actions',''),(114517,40286,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(114518,40286,'blocks_1_row_content',''),(114519,40286,'_blocks_1_row_content','field_64bfdd9b90686'),(114520,40286,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(114521,40286,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(114522,40286,'blocks_1_icon_row_items_0_label',''),(114523,40286,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(114524,40286,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(114525,40286,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(114526,40286,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(114527,40286,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(114528,40286,'blocks_1_icon_row_items_1_label',''),(114529,40286,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(114530,40286,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(114531,40286,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(114532,40286,'blocks_1_icon_row_items_2_icon','referrals.svg'),(114533,40286,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(114534,40286,'blocks_1_icon_row_items_2_label',''),(114535,40286,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(114536,40286,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(114537,40286,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(114538,40286,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(114539,40286,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(114540,40286,'blocks_1_icon_row_items_3_label',''),(114541,40286,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(114542,40286,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(114543,40286,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(114544,40286,'blocks_1_icon_row_items','4'),(114545,40286,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(114546,40292,'hide_hero','0'),(114547,40292,'_hide_hero','field_66a2380fcda39'),(114548,40292,'hero_title',''),(114549,40292,'_hero_title','field_617571fe285e8'),(114550,40292,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(114551,40292,'_hero_text','field_6175723c285e9'),(114552,40292,'hero_actions',''),(114553,40292,'_hero_actions','field_61757270285ea'),(114554,40292,'hero_style','default'),(114555,40292,'_hero_style','field_62051d9dc5324'),(114556,40292,'_thumbnail_id','40288'),(114557,40292,'__thumbnail_id','field_617570855ddaf'),(114558,40292,'hero_image_pos_x','right'),(114559,40292,'_hero_image_pos_x','field_62ec3d05390bb'),(114560,40292,'hero_image_pos_y','top'),(114561,40292,'_hero_image_pos_y','field_62ec3d05390bc'),(114562,40292,'hero_image_pos',''),(114563,40292,'_hero_image_pos','field_62ec3d05390ba'),(114564,40292,'fft_hide_from_listings','0'),(114565,40292,'_fft_hide_from_listings','field_61f1320446ab2'),(114566,40292,'fft_page_format','default'),(114567,40292,'_fft_page_format','field_61ae213f1f218'),(114568,40292,'fft_hide_nav','0'),(114569,40292,'_fft_hide_nav','field_635bd5e43527c'),(114570,40292,'fft_hide_header_call_to_action','0'),(114571,40292,'_fft_hide_header_call_to_action','field_635bd6723527d'),(114572,40292,'fft_page_sitemap','0'),(114573,40292,'_fft_page_sitemap','field_61af9b34e8181'),(114574,40292,'blocks','a:2:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";}'),(114575,40292,'_blocks','field_6176696113096'),(114576,40292,'course_label_text',''),(114577,40292,'_course_label_text','field_61e17babf71fa'),(114578,40292,'course_label',''),(114579,40292,'_course_label','field_61e12f92749a7'),(114580,40292,'course_description',''),(114581,40292,'_course_description','field_617ac5788e5e1'),(114582,40292,'course_key_info',''),(114583,40292,'_course_key_info','field_617ac6ad8e5e2'),(114584,40292,'course_included',''),(114585,40292,'_course_included','field_617ac6f08e5e4'),(114586,40292,'blocks_0_acfe_flexible_toggle',''),(114587,40292,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(114588,40292,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(114589,40292,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(114590,40292,'blocks_0_options_theme','#ffffff'),(114591,40292,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(114592,40292,'blocks_0_options_reverse','0'),(114593,40292,'_blocks_0_options_reverse','field_61768049bb8ac'),(114594,40292,'blocks_0_options',''),(114595,40292,'_blocks_0_options','field_617682517c334'),(114596,40292,'blocks_0_split_5050_image','40290'),(114597,40292,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(114598,40292,'blocks_0_split_5050_video',''),(114599,40292,'_blocks_0_split_5050_video','field_6239f3160848a'),(114600,40292,'blocks_0_split_5050_content_title',''),(114601,40292,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(114602,40292,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(114603,40292,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(114604,40292,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(114605,40292,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(114606,40292,'blocks_0_split_5050_content_actions',''),(114607,40292,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(114608,40292,'blocks_0_split_5050_content',''),(114609,40292,'_blocks_0_split_5050_content','field_61767afceb8ba'),(114610,40292,'blocks_1_acfe_flexible_toggle',''),(114611,40292,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(114612,40292,'blocks_1_acfe_flexible_layout_title','Icons'),(114613,40292,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(114614,40292,'blocks_1_options_theme','#ffffff'),(114615,40292,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(114616,40292,'blocks_1_options_format','grid'),(114617,40292,'_blocks_1_options_format','field_64bfde9a90690'),(114618,40292,'blocks_1_options',''),(114619,40292,'_blocks_1_options','field_64bfdd9b90684'),(114620,40292,'blocks_1_row_content_title',''),(114621,40292,'_blocks_1_row_content_title','field_64bfdd9b90687'),(114622,40292,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(114623,40292,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(114624,40292,'blocks_1_row_content_text',''),(114625,40292,'_blocks_1_row_content_text','field_64bfdd9b90689'),(114626,40292,'blocks_1_row_content_actions',''),(114627,40292,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(114628,40292,'blocks_1_row_content',''),(114629,40292,'_blocks_1_row_content','field_64bfdd9b90686'),(114630,40292,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(114631,40292,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(114632,40292,'blocks_1_icon_row_items_0_label',''),(114633,40292,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(114634,40292,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(114635,40292,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(114636,40292,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(114637,40292,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(114638,40292,'blocks_1_icon_row_items_1_label',''),(114639,40292,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(114640,40292,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(114641,40292,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(114642,40292,'blocks_1_icon_row_items_2_icon','referrals.svg'),(114643,40292,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(114644,40292,'blocks_1_icon_row_items_2_label',''),(114645,40292,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(114646,40292,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(114647,40292,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(114648,40292,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(114649,40292,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(114650,40292,'blocks_1_icon_row_items_3_label',''),(114651,40292,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(114652,40292,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(114653,40292,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(114654,40292,'blocks_1_icon_row_items','4'),(114655,40292,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(114658,40293,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:5784;s:6:\"height\";i:3856;s:4:\"file\";s:65:\"2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE.png\";s:8:\"filesize\";i:37654445;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:510822;}s:5:\"large\";a:5:{s:4:\"file\";s:66:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:879688;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:113182;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:379416;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:67:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-1536x1024.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1465825;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:67:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-2048x1365.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2633683;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167934;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:787373;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:67:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-1200x1200.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1413338;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112945;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:510822;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:66:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:879688;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127939;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:591078;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:66:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-900x1200.png\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1057815;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125553;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:569560;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:66:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-1200x900.png\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1007437;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93935;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:65:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:426526;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:66:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:738546;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(114659,40294,'_wp_attached_file','2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-scaled.jpg'),(114660,40294,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:76:\"2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-scaled.jpg\";s:8:\"filesize\";i:291083;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49239;}s:5:\"large\";a:5:{s:4:\"file\";s:70:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79268;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13342;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:69:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37562;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:71:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120676;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:71:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198722;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:69:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19099;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:69:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74728;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:71:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122272;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:69:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13350;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:69:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49239;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:70:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79268;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:69:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15249;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:69:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57659;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:70:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93790;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:69:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14648;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:69:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55283;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:70:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89269;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:69:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11401;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:69:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41207;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:70:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66520;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:61:\"WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min.jpg\";}'),(114661,40286,'blocks_2_acfe_flexible_toggle',''),(114662,40286,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(114663,40286,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(114664,40286,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(114665,40286,'blocks_2_options_theme','#ffffff'),(114666,40286,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(114667,40286,'blocks_2_options_reverse','1'),(114668,40286,'_blocks_2_options_reverse','field_61768049bb8ac'),(114669,40286,'blocks_2_options',''),(114670,40286,'_blocks_2_options','field_617682517c334'),(114671,40286,'blocks_2_split_5050_image','40294'),(114672,40286,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(114673,40286,'blocks_2_split_5050_video',''),(114674,40286,'_blocks_2_split_5050_video','field_6239f3160848a'),(114675,40286,'blocks_2_split_5050_content_title',''),(114676,40286,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(114677,40286,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(114678,40286,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(114679,40286,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(114680,40286,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(114681,40286,'blocks_2_split_5050_content_actions',''),(114682,40286,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(114683,40286,'blocks_2_split_5050_content',''),(114684,40286,'_blocks_2_split_5050_content','field_61767afceb8ba'),(114685,40295,'hide_hero','0'),(114686,40295,'_hide_hero','field_66a2380fcda39'),(114687,40295,'hero_title',''),(114688,40295,'_hero_title','field_617571fe285e8'),(114689,40295,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(114690,40295,'_hero_text','field_6175723c285e9'),(114691,40295,'hero_actions',''),(114692,40295,'_hero_actions','field_61757270285ea'),(114693,40295,'hero_style','default'),(114694,40295,'_hero_style','field_62051d9dc5324'),(114695,40295,'_thumbnail_id','40288'),(114696,40295,'__thumbnail_id','field_617570855ddaf'),(114697,40295,'hero_image_pos_x','right'),(114698,40295,'_hero_image_pos_x','field_62ec3d05390bb'),(114699,40295,'hero_image_pos_y','top'),(114700,40295,'_hero_image_pos_y','field_62ec3d05390bc'),(114701,40295,'hero_image_pos',''),(114702,40295,'_hero_image_pos','field_62ec3d05390ba'),(114703,40295,'fft_hide_from_listings','0'),(114704,40295,'_fft_hide_from_listings','field_61f1320446ab2'),(114705,40295,'fft_page_format','default'),(114706,40295,'_fft_page_format','field_61ae213f1f218'),(114707,40295,'fft_hide_nav','0'),(114708,40295,'_fft_hide_nav','field_635bd5e43527c'),(114709,40295,'fft_hide_header_call_to_action','0'),(114710,40295,'_fft_hide_header_call_to_action','field_635bd6723527d'),(114711,40295,'fft_page_sitemap','0'),(114712,40295,'_fft_page_sitemap','field_61af9b34e8181'),(114713,40295,'blocks','a:3:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";}'),(114714,40295,'_blocks','field_6176696113096'),(114715,40295,'course_label_text',''),(114716,40295,'_course_label_text','field_61e17babf71fa'),(114717,40295,'course_label',''),(114718,40295,'_course_label','field_61e12f92749a7'),(114719,40295,'course_description',''),(114720,40295,'_course_description','field_617ac5788e5e1'),(114721,40295,'course_key_info',''),(114722,40295,'_course_key_info','field_617ac6ad8e5e2'),(114723,40295,'course_included',''),(114724,40295,'_course_included','field_617ac6f08e5e4'),(114725,40295,'blocks_0_acfe_flexible_toggle',''),(114726,40295,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(114727,40295,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(114728,40295,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(114729,40295,'blocks_0_options_theme','#ffffff'),(114730,40295,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(114731,40295,'blocks_0_options_reverse','0'),(114732,40295,'_blocks_0_options_reverse','field_61768049bb8ac'),(114733,40295,'blocks_0_options',''),(114734,40295,'_blocks_0_options','field_617682517c334'),(114735,40295,'blocks_0_split_5050_image','40290'),(114736,40295,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(114737,40295,'blocks_0_split_5050_video',''),(114738,40295,'_blocks_0_split_5050_video','field_6239f3160848a'),(114739,40295,'blocks_0_split_5050_content_title',''),(114740,40295,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(114741,40295,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(114742,40295,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(114743,40295,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(114744,40295,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(114745,40295,'blocks_0_split_5050_content_actions',''),(114746,40295,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(114747,40295,'blocks_0_split_5050_content',''),(114748,40295,'_blocks_0_split_5050_content','field_61767afceb8ba'),(114749,40295,'blocks_1_acfe_flexible_toggle',''),(114750,40295,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(114751,40295,'blocks_1_acfe_flexible_layout_title','Icons'),(114752,40295,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(114753,40295,'blocks_1_options_theme','#f5f5f5'),(114754,40295,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(114755,40295,'blocks_1_options_format','grid'),(114756,40295,'_blocks_1_options_format','field_64bfde9a90690'),(114757,40295,'blocks_1_options',''),(114758,40295,'_blocks_1_options','field_64bfdd9b90684'),(114759,40295,'blocks_1_row_content_title',''),(114760,40295,'_blocks_1_row_content_title','field_64bfdd9b90687'),(114761,40295,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(114762,40295,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(114763,40295,'blocks_1_row_content_text',''),(114764,40295,'_blocks_1_row_content_text','field_64bfdd9b90689'),(114765,40295,'blocks_1_row_content_actions',''),(114766,40295,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(114767,40295,'blocks_1_row_content',''),(114768,40295,'_blocks_1_row_content','field_64bfdd9b90686'),(114769,40295,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(114770,40295,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(114771,40295,'blocks_1_icon_row_items_0_label',''),(114772,40295,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(114773,40295,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(114774,40295,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(114775,40295,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(114776,40295,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(114777,40295,'blocks_1_icon_row_items_1_label',''),(114778,40295,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(114779,40295,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(114780,40295,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(114781,40295,'blocks_1_icon_row_items_2_icon','referrals.svg'),(114782,40295,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(114783,40295,'blocks_1_icon_row_items_2_label',''),(114784,40295,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(114785,40295,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(114786,40295,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(114787,40295,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(114788,40295,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(114789,40295,'blocks_1_icon_row_items_3_label',''),(114790,40295,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(114791,40295,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(114792,40295,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(114793,40295,'blocks_1_icon_row_items','4'),(114794,40295,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(114795,40295,'blocks_2_acfe_flexible_toggle',''),(114796,40295,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(114797,40295,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(114798,40295,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(114799,40295,'blocks_2_options_theme','#ffffff'),(114800,40295,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(114801,40295,'blocks_2_options_reverse','1'),(114802,40295,'_blocks_2_options_reverse','field_61768049bb8ac'),(114803,40295,'blocks_2_options',''),(114804,40295,'_blocks_2_options','field_617682517c334'),(114805,40295,'blocks_2_split_5050_image','40294'),(114806,40295,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(114807,40295,'blocks_2_split_5050_video',''),(114808,40295,'_blocks_2_split_5050_video','field_6239f3160848a'),(114809,40295,'blocks_2_split_5050_content_title',''),(114810,40295,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(114811,40295,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(114812,40295,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(114813,40295,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(114814,40295,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(114815,40295,'blocks_2_split_5050_content_actions',''),(114816,40295,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(114817,40295,'blocks_2_split_5050_content',''),(114818,40295,'_blocks_2_split_5050_content','field_61767afceb8ba'),(114819,40286,'blocks_3_acfe_flexible_toggle',''),(114820,40286,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(114821,40286,'blocks_3_acfe_flexible_layout_title','Tabs'),(114822,40286,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(114823,40286,'blocks_3_options_theme','#ffffff'),(114824,40286,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(114825,40286,'blocks_3_options',''),(114826,40286,'_blocks_3_options','field_6177cfcd8140f'),(114827,40286,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(114828,40286,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(114829,40286,'blocks_3_tabs_0_tab_content_title',''),(114830,40286,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(114831,40286,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(114832,40286,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(114833,40286,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(114834,40286,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(114835,40286,'blocks_3_tabs_0_tab_content_actions','1'),(114836,40286,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(114837,40286,'blocks_3_tabs_0_tab_content',''),(114838,40286,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(114839,40286,'blocks_3_tabs_0_tab_image',''),(114840,40286,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(114841,40286,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(114842,40286,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(114843,40286,'blocks_3_tabs_1_tab_content_title',''),(114844,40286,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(114845,40286,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(114846,40286,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(114847,40286,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(114848,40286,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(114849,40286,'blocks_3_tabs_1_tab_content_actions','1'),(114850,40286,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(114851,40286,'blocks_3_tabs_1_tab_content',''),(114852,40286,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(114853,40286,'blocks_3_tabs_1_tab_image',''),(114854,40286,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(114855,40286,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(114856,40286,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(114857,40286,'blocks_3_tabs_2_tab_content_title',''),(114858,40286,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(114859,40286,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(114860,40286,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(114861,40286,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(114862,40286,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(114863,40286,'blocks_3_tabs_2_tab_content_actions','1'),(114864,40286,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(114865,40286,'blocks_3_tabs_2_tab_content',''),(114866,40286,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(114867,40286,'blocks_3_tabs_2_tab_image',''),(114868,40286,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(114869,40286,'blocks_3_tabs','3'),(114870,40286,'_blocks_3_tabs','field_6177cff281419'),(114871,40296,'hide_hero','0'),(114872,40296,'_hide_hero','field_66a2380fcda39'),(114873,40296,'hero_title',''),(114874,40296,'_hero_title','field_617571fe285e8'),(114875,40296,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(114876,40296,'_hero_text','field_6175723c285e9'),(114877,40296,'hero_actions',''),(114878,40296,'_hero_actions','field_61757270285ea'),(114879,40296,'hero_style','default'),(114880,40296,'_hero_style','field_62051d9dc5324'),(114881,40296,'_thumbnail_id','40288'),(114882,40296,'__thumbnail_id','field_617570855ddaf'),(114883,40296,'hero_image_pos_x','right'),(114884,40296,'_hero_image_pos_x','field_62ec3d05390bb'),(114885,40296,'hero_image_pos_y','top'),(114886,40296,'_hero_image_pos_y','field_62ec3d05390bc'),(114887,40296,'hero_image_pos',''),(114888,40296,'_hero_image_pos','field_62ec3d05390ba'),(114889,40296,'fft_hide_from_listings','0'),(114890,40296,'_fft_hide_from_listings','field_61f1320446ab2'),(114891,40296,'fft_page_format','default'),(114892,40296,'_fft_page_format','field_61ae213f1f218'),(114893,40296,'fft_hide_nav','0'),(114894,40296,'_fft_hide_nav','field_635bd5e43527c'),(114895,40296,'fft_hide_header_call_to_action','0'),(114896,40296,'_fft_hide_header_call_to_action','field_635bd6723527d'),(114897,40296,'fft_page_sitemap','0'),(114898,40296,'_fft_page_sitemap','field_61af9b34e8181'),(114899,40296,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(114900,40296,'_blocks','field_6176696113096'),(114901,40296,'course_label_text',''),(114902,40296,'_course_label_text','field_61e17babf71fa'),(114903,40296,'course_label',''),(114904,40296,'_course_label','field_61e12f92749a7'),(114905,40296,'course_description',''),(114906,40296,'_course_description','field_617ac5788e5e1'),(114907,40296,'course_key_info',''),(114908,40296,'_course_key_info','field_617ac6ad8e5e2'),(114909,40296,'course_included',''),(114910,40296,'_course_included','field_617ac6f08e5e4'),(114911,40296,'blocks_0_acfe_flexible_toggle',''),(114912,40296,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(114913,40296,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(114914,40296,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(114915,40296,'blocks_0_options_theme','#ffffff'),(114916,40296,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(114917,40296,'blocks_0_options_reverse','0'),(114918,40296,'_blocks_0_options_reverse','field_61768049bb8ac'),(114919,40296,'blocks_0_options',''),(114920,40296,'_blocks_0_options','field_617682517c334'),(114921,40296,'blocks_0_split_5050_image','40290'),(114922,40296,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(114923,40296,'blocks_0_split_5050_video',''),(114924,40296,'_blocks_0_split_5050_video','field_6239f3160848a'),(114925,40296,'blocks_0_split_5050_content_title',''),(114926,40296,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(114927,40296,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(114928,40296,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(114929,40296,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(114930,40296,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(114931,40296,'blocks_0_split_5050_content_actions',''),(114932,40296,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(114933,40296,'blocks_0_split_5050_content',''),(114934,40296,'_blocks_0_split_5050_content','field_61767afceb8ba'),(114935,40296,'blocks_1_acfe_flexible_toggle',''),(114936,40296,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(114937,40296,'blocks_1_acfe_flexible_layout_title','Icons'),(114938,40296,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(114939,40296,'blocks_1_options_theme','#f5f5f5'),(114940,40296,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(114941,40296,'blocks_1_options_format','grid'),(114942,40296,'_blocks_1_options_format','field_64bfde9a90690'),(114943,40296,'blocks_1_options',''),(114944,40296,'_blocks_1_options','field_64bfdd9b90684'),(114945,40296,'blocks_1_row_content_title',''),(114946,40296,'_blocks_1_row_content_title','field_64bfdd9b90687'),(114947,40296,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(114948,40296,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(114949,40296,'blocks_1_row_content_text',''),(114950,40296,'_blocks_1_row_content_text','field_64bfdd9b90689'),(114951,40296,'blocks_1_row_content_actions',''),(114952,40296,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(114953,40296,'blocks_1_row_content',''),(114954,40296,'_blocks_1_row_content','field_64bfdd9b90686'),(114955,40296,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(114956,40296,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(114957,40296,'blocks_1_icon_row_items_0_label',''),(114958,40296,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(114959,40296,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(114960,40296,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(114961,40296,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(114962,40296,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(114963,40296,'blocks_1_icon_row_items_1_label',''),(114964,40296,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(114965,40296,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(114966,40296,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(114967,40296,'blocks_1_icon_row_items_2_icon','referrals.svg'),(114968,40296,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(114969,40296,'blocks_1_icon_row_items_2_label',''),(114970,40296,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(114971,40296,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(114972,40296,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(114973,40296,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(114974,40296,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(114975,40296,'blocks_1_icon_row_items_3_label',''),(114976,40296,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(114977,40296,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(114978,40296,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(114979,40296,'blocks_1_icon_row_items','4'),(114980,40296,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(114981,40296,'blocks_2_acfe_flexible_toggle',''),(114982,40296,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(114983,40296,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(114984,40296,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(114985,40296,'blocks_2_options_theme','#ffffff'),(114986,40296,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(114987,40296,'blocks_2_options_reverse','1'),(114988,40296,'_blocks_2_options_reverse','field_61768049bb8ac'),(114989,40296,'blocks_2_options',''),(114990,40296,'_blocks_2_options','field_617682517c334'),(114991,40296,'blocks_2_split_5050_image','40294'),(114992,40296,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(114993,40296,'blocks_2_split_5050_video',''),(114994,40296,'_blocks_2_split_5050_video','field_6239f3160848a'),(114995,40296,'blocks_2_split_5050_content_title',''),(114996,40296,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(114997,40296,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(114998,40296,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(114999,40296,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(115000,40296,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(115001,40296,'blocks_2_split_5050_content_actions',''),(115002,40296,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(115003,40296,'blocks_2_split_5050_content',''),(115004,40296,'_blocks_2_split_5050_content','field_61767afceb8ba'),(115005,40296,'blocks_3_acfe_flexible_toggle',''),(115006,40296,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(115007,40296,'blocks_3_acfe_flexible_layout_title','Tabs'),(115008,40296,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(115009,40296,'blocks_3_options_theme','#b61234'),(115010,40296,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(115011,40296,'blocks_3_options',''),(115012,40296,'_blocks_3_options','field_6177cfcd8140f'),(115013,40296,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(115014,40296,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(115015,40296,'blocks_3_tabs_0_tab_content_title',''),(115016,40296,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(115017,40296,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(115018,40296,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(115019,40296,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(115020,40296,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(115021,40296,'blocks_3_tabs_0_tab_content_actions',''),(115022,40296,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(115023,40296,'blocks_3_tabs_0_tab_content',''),(115024,40296,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(115025,40296,'blocks_3_tabs_0_tab_image',''),(115026,40296,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(115027,40296,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(115028,40296,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(115029,40296,'blocks_3_tabs_1_tab_content_title',''),(115030,40296,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(115031,40296,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(115032,40296,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(115033,40296,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(115034,40296,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(115035,40296,'blocks_3_tabs_1_tab_content_actions',''),(115036,40296,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(115037,40296,'blocks_3_tabs_1_tab_content',''),(115038,40296,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(115039,40296,'blocks_3_tabs_1_tab_image',''),(115040,40296,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(115041,40296,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(115042,40296,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(115043,40296,'blocks_3_tabs_2_tab_content_title',''),(115044,40296,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(115045,40296,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(115046,40296,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(115047,40296,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(115048,40296,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(115049,40296,'blocks_3_tabs_2_tab_content_actions',''),(115050,40296,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(115051,40296,'blocks_3_tabs_2_tab_content',''),(115052,40296,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(115053,40296,'blocks_3_tabs_2_tab_image',''),(115054,40296,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(115055,40296,'blocks_3_tabs','3'),(115056,40296,'_blocks_3_tabs','field_6177cff281419'),(115057,40297,'hide_hero','0'),(115058,40297,'_hide_hero','field_66a2380fcda39'),(115059,40297,'hero_title',''),(115060,40297,'_hero_title','field_617571fe285e8'),(115061,40297,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(115062,40297,'_hero_text','field_6175723c285e9'),(115063,40297,'hero_actions',''),(115064,40297,'_hero_actions','field_61757270285ea'),(115065,40297,'hero_style','default'),(115066,40297,'_hero_style','field_62051d9dc5324'),(115067,40297,'_thumbnail_id','40288'),(115068,40297,'__thumbnail_id','field_617570855ddaf'),(115069,40297,'hero_image_pos_x','right'),(115070,40297,'_hero_image_pos_x','field_62ec3d05390bb'),(115071,40297,'hero_image_pos_y','top'),(115072,40297,'_hero_image_pos_y','field_62ec3d05390bc'),(115073,40297,'hero_image_pos',''),(115074,40297,'_hero_image_pos','field_62ec3d05390ba'),(115075,40297,'fft_hide_from_listings','0'),(115076,40297,'_fft_hide_from_listings','field_61f1320446ab2'),(115077,40297,'fft_page_format','default'),(115078,40297,'_fft_page_format','field_61ae213f1f218'),(115079,40297,'fft_hide_nav','0'),(115080,40297,'_fft_hide_nav','field_635bd5e43527c'),(115081,40297,'fft_hide_header_call_to_action','0'),(115082,40297,'_fft_hide_header_call_to_action','field_635bd6723527d'),(115083,40297,'fft_page_sitemap','0'),(115084,40297,'_fft_page_sitemap','field_61af9b34e8181'),(115085,40297,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(115086,40297,'_blocks','field_6176696113096'),(115087,40297,'course_label_text',''),(115088,40297,'_course_label_text','field_61e17babf71fa'),(115089,40297,'course_label',''),(115090,40297,'_course_label','field_61e12f92749a7'),(115091,40297,'course_description',''),(115092,40297,'_course_description','field_617ac5788e5e1'),(115093,40297,'course_key_info',''),(115094,40297,'_course_key_info','field_617ac6ad8e5e2'),(115095,40297,'course_included',''),(115096,40297,'_course_included','field_617ac6f08e5e4'),(115097,40297,'blocks_0_acfe_flexible_toggle',''),(115098,40297,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(115099,40297,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(115100,40297,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(115101,40297,'blocks_0_options_theme','#ffffff'),(115102,40297,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(115103,40297,'blocks_0_options_reverse','0'),(115104,40297,'_blocks_0_options_reverse','field_61768049bb8ac'),(115105,40297,'blocks_0_options',''),(115106,40297,'_blocks_0_options','field_617682517c334'),(115107,40297,'blocks_0_split_5050_image','40290'),(115108,40297,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(115109,40297,'blocks_0_split_5050_video',''),(115110,40297,'_blocks_0_split_5050_video','field_6239f3160848a'),(115111,40297,'blocks_0_split_5050_content_title',''),(115112,40297,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(115113,40297,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(115114,40297,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(115115,40297,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(115116,40297,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(115117,40297,'blocks_0_split_5050_content_actions',''),(115118,40297,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(115119,40297,'blocks_0_split_5050_content',''),(115120,40297,'_blocks_0_split_5050_content','field_61767afceb8ba'),(115121,40297,'blocks_1_acfe_flexible_toggle',''),(115122,40297,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(115123,40297,'blocks_1_acfe_flexible_layout_title','Icons'),(115124,40297,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(115125,40297,'blocks_1_options_theme','#f5f5f5'),(115126,40297,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(115127,40297,'blocks_1_options_format','grid'),(115128,40297,'_blocks_1_options_format','field_64bfde9a90690'),(115129,40297,'blocks_1_options',''),(115130,40297,'_blocks_1_options','field_64bfdd9b90684'),(115131,40297,'blocks_1_row_content_title',''),(115132,40297,'_blocks_1_row_content_title','field_64bfdd9b90687'),(115133,40297,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(115134,40297,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(115135,40297,'blocks_1_row_content_text',''),(115136,40297,'_blocks_1_row_content_text','field_64bfdd9b90689'),(115137,40297,'blocks_1_row_content_actions',''),(115138,40297,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(115139,40297,'blocks_1_row_content',''),(115140,40297,'_blocks_1_row_content','field_64bfdd9b90686'),(115141,40297,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(115142,40297,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(115143,40297,'blocks_1_icon_row_items_0_label',''),(115144,40297,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(115145,40297,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(115146,40297,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(115147,40297,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(115148,40297,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(115149,40297,'blocks_1_icon_row_items_1_label',''),(115150,40297,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(115151,40297,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(115152,40297,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(115153,40297,'blocks_1_icon_row_items_2_icon','referrals.svg'),(115154,40297,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(115155,40297,'blocks_1_icon_row_items_2_label',''),(115156,40297,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(115157,40297,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(115158,40297,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(115159,40297,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(115160,40297,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(115161,40297,'blocks_1_icon_row_items_3_label',''),(115162,40297,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(115163,40297,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(115164,40297,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(115165,40297,'blocks_1_icon_row_items','4'),(115166,40297,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(115167,40297,'blocks_2_acfe_flexible_toggle',''),(115168,40297,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(115169,40297,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(115170,40297,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(115171,40297,'blocks_2_options_theme','#ffffff'),(115172,40297,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(115173,40297,'blocks_2_options_reverse','1'),(115174,40297,'_blocks_2_options_reverse','field_61768049bb8ac'),(115175,40297,'blocks_2_options',''),(115176,40297,'_blocks_2_options','field_617682517c334'),(115177,40297,'blocks_2_split_5050_image','40294'),(115178,40297,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(115179,40297,'blocks_2_split_5050_video',''),(115180,40297,'_blocks_2_split_5050_video','field_6239f3160848a'),(115181,40297,'blocks_2_split_5050_content_title',''),(115182,40297,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(115183,40297,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(115184,40297,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(115185,40297,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(115186,40297,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(115187,40297,'blocks_2_split_5050_content_actions',''),(115188,40297,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(115189,40297,'blocks_2_split_5050_content',''),(115190,40297,'_blocks_2_split_5050_content','field_61767afceb8ba'),(115191,40297,'blocks_3_acfe_flexible_toggle',''),(115192,40297,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(115193,40297,'blocks_3_acfe_flexible_layout_title','Tabs'),(115194,40297,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(115195,40297,'blocks_3_options_theme','#f5f5f5'),(115196,40297,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(115197,40297,'blocks_3_options',''),(115198,40297,'_blocks_3_options','field_6177cfcd8140f'),(115199,40297,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(115200,40297,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(115201,40297,'blocks_3_tabs_0_tab_content_title',''),(115202,40297,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(115203,40297,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(115204,40297,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(115205,40297,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(115206,40297,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(115207,40297,'blocks_3_tabs_0_tab_content_actions',''),(115208,40297,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(115209,40297,'blocks_3_tabs_0_tab_content',''),(115210,40297,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(115211,40297,'blocks_3_tabs_0_tab_image',''),(115212,40297,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(115213,40297,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(115214,40297,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(115215,40297,'blocks_3_tabs_1_tab_content_title',''),(115216,40297,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(115217,40297,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(115218,40297,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(115219,40297,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(115220,40297,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(115221,40297,'blocks_3_tabs_1_tab_content_actions',''),(115222,40297,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(115223,40297,'blocks_3_tabs_1_tab_content',''),(115224,40297,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(115225,40297,'blocks_3_tabs_1_tab_image',''),(115226,40297,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(115227,40297,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(115228,40297,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(115229,40297,'blocks_3_tabs_2_tab_content_title',''),(115230,40297,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(115231,40297,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(115232,40297,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(115233,40297,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(115234,40297,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(115235,40297,'blocks_3_tabs_2_tab_content_actions',''),(115236,40297,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(115237,40297,'blocks_3_tabs_2_tab_content',''),(115238,40297,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(115239,40297,'blocks_3_tabs_2_tab_image',''),(115240,40297,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(115241,40297,'blocks_3_tabs','3'),(115242,40297,'_blocks_3_tabs','field_6177cff281419'),(115243,40298,'hide_hero','0'),(115244,40298,'_hide_hero','field_66a2380fcda39'),(115245,40298,'hero_title',''),(115246,40298,'_hero_title','field_617571fe285e8'),(115247,40298,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(115248,40298,'_hero_text','field_6175723c285e9'),(115249,40298,'hero_actions',''),(115250,40298,'_hero_actions','field_61757270285ea'),(115251,40298,'hero_style','default'),(115252,40298,'_hero_style','field_62051d9dc5324'),(115253,40298,'_thumbnail_id','40288'),(115254,40298,'__thumbnail_id','field_617570855ddaf'),(115255,40298,'hero_image_pos_x','right'),(115256,40298,'_hero_image_pos_x','field_62ec3d05390bb'),(115257,40298,'hero_image_pos_y','top'),(115258,40298,'_hero_image_pos_y','field_62ec3d05390bc'),(115259,40298,'hero_image_pos',''),(115260,40298,'_hero_image_pos','field_62ec3d05390ba'),(115261,40298,'fft_hide_from_listings','0'),(115262,40298,'_fft_hide_from_listings','field_61f1320446ab2'),(115263,40298,'fft_page_format','default'),(115264,40298,'_fft_page_format','field_61ae213f1f218'),(115265,40298,'fft_hide_nav','0'),(115266,40298,'_fft_hide_nav','field_635bd5e43527c'),(115267,40298,'fft_hide_header_call_to_action','0'),(115268,40298,'_fft_hide_header_call_to_action','field_635bd6723527d'),(115269,40298,'fft_page_sitemap','0'),(115270,40298,'_fft_page_sitemap','field_61af9b34e8181'),(115271,40298,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(115272,40298,'_blocks','field_6176696113096'),(115273,40298,'course_label_text',''),(115274,40298,'_course_label_text','field_61e17babf71fa'),(115275,40298,'course_label',''),(115276,40298,'_course_label','field_61e12f92749a7'),(115277,40298,'course_description',''),(115278,40298,'_course_description','field_617ac5788e5e1'),(115279,40298,'course_key_info',''),(115280,40298,'_course_key_info','field_617ac6ad8e5e2'),(115281,40298,'course_included',''),(115282,40298,'_course_included','field_617ac6f08e5e4'),(115283,40298,'blocks_0_acfe_flexible_toggle',''),(115284,40298,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(115285,40298,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(115286,40298,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(115287,40298,'blocks_0_options_theme','#ffffff'),(115288,40298,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(115289,40298,'blocks_0_options_reverse','0'),(115290,40298,'_blocks_0_options_reverse','field_61768049bb8ac'),(115291,40298,'blocks_0_options',''),(115292,40298,'_blocks_0_options','field_617682517c334'),(115293,40298,'blocks_0_split_5050_image','40290'),(115294,40298,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(115295,40298,'blocks_0_split_5050_video',''),(115296,40298,'_blocks_0_split_5050_video','field_6239f3160848a'),(115297,40298,'blocks_0_split_5050_content_title',''),(115298,40298,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(115299,40298,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(115300,40298,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(115301,40298,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(115302,40298,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(115303,40298,'blocks_0_split_5050_content_actions',''),(115304,40298,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(115305,40298,'blocks_0_split_5050_content',''),(115306,40298,'_blocks_0_split_5050_content','field_61767afceb8ba'),(115307,40298,'blocks_1_acfe_flexible_toggle',''),(115308,40298,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(115309,40298,'blocks_1_acfe_flexible_layout_title','Icons'),(115310,40298,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(115311,40298,'blocks_1_options_theme','#f5f5f5'),(115312,40298,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(115313,40298,'blocks_1_options_format','grid'),(115314,40298,'_blocks_1_options_format','field_64bfde9a90690'),(115315,40298,'blocks_1_options',''),(115316,40298,'_blocks_1_options','field_64bfdd9b90684'),(115317,40298,'blocks_1_row_content_title',''),(115318,40298,'_blocks_1_row_content_title','field_64bfdd9b90687'),(115319,40298,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(115320,40298,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(115321,40298,'blocks_1_row_content_text',''),(115322,40298,'_blocks_1_row_content_text','field_64bfdd9b90689'),(115323,40298,'blocks_1_row_content_actions',''),(115324,40298,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(115325,40298,'blocks_1_row_content',''),(115326,40298,'_blocks_1_row_content','field_64bfdd9b90686'),(115327,40298,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(115328,40298,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(115329,40298,'blocks_1_icon_row_items_0_label',''),(115330,40298,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(115331,40298,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(115332,40298,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(115333,40298,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(115334,40298,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(115335,40298,'blocks_1_icon_row_items_1_label',''),(115336,40298,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(115337,40298,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(115338,40298,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(115339,40298,'blocks_1_icon_row_items_2_icon','referrals.svg'),(115340,40298,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(115341,40298,'blocks_1_icon_row_items_2_label',''),(115342,40298,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(115343,40298,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(115344,40298,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(115345,40298,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(115346,40298,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(115347,40298,'blocks_1_icon_row_items_3_label',''),(115348,40298,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(115349,40298,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(115350,40298,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(115351,40298,'blocks_1_icon_row_items','4'),(115352,40298,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(115353,40298,'blocks_2_acfe_flexible_toggle',''),(115354,40298,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(115355,40298,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(115356,40298,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(115357,40298,'blocks_2_options_theme','#ffffff'),(115358,40298,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(115359,40298,'blocks_2_options_reverse','1'),(115360,40298,'_blocks_2_options_reverse','field_61768049bb8ac'),(115361,40298,'blocks_2_options',''),(115362,40298,'_blocks_2_options','field_617682517c334'),(115363,40298,'blocks_2_split_5050_image','40294'),(115364,40298,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(115365,40298,'blocks_2_split_5050_video',''),(115366,40298,'_blocks_2_split_5050_video','field_6239f3160848a'),(115367,40298,'blocks_2_split_5050_content_title',''),(115368,40298,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(115369,40298,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(115370,40298,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(115371,40298,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(115372,40298,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(115373,40298,'blocks_2_split_5050_content_actions',''),(115374,40298,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(115375,40298,'blocks_2_split_5050_content',''),(115376,40298,'_blocks_2_split_5050_content','field_61767afceb8ba'),(115377,40298,'blocks_3_acfe_flexible_toggle',''),(115378,40298,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(115379,40298,'blocks_3_acfe_flexible_layout_title','Tabs'),(115380,40298,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(115381,40298,'blocks_3_options_theme','#ffffff'),(115382,40298,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(115383,40298,'blocks_3_options',''),(115384,40298,'_blocks_3_options','field_6177cfcd8140f'),(115385,40298,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(115386,40298,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(115387,40298,'blocks_3_tabs_0_tab_content_title',''),(115388,40298,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(115389,40298,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(115390,40298,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(115391,40298,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(115392,40298,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(115393,40298,'blocks_3_tabs_0_tab_content_actions',''),(115394,40298,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(115395,40298,'blocks_3_tabs_0_tab_content',''),(115396,40298,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(115397,40298,'blocks_3_tabs_0_tab_image',''),(115398,40298,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(115399,40298,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(115400,40298,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(115401,40298,'blocks_3_tabs_1_tab_content_title',''),(115402,40298,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(115403,40298,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(115404,40298,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(115405,40298,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(115406,40298,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(115407,40298,'blocks_3_tabs_1_tab_content_actions',''),(115408,40298,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(115409,40298,'blocks_3_tabs_1_tab_content',''),(115410,40298,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(115411,40298,'blocks_3_tabs_1_tab_image',''),(115412,40298,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(115413,40298,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(115414,40298,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(115415,40298,'blocks_3_tabs_2_tab_content_title',''),(115416,40298,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(115417,40298,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(115418,40298,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(115419,40298,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(115420,40298,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(115421,40298,'blocks_3_tabs_2_tab_content_actions',''),(115422,40298,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(115423,40298,'blocks_3_tabs_2_tab_content',''),(115424,40298,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(115425,40298,'blocks_3_tabs_2_tab_image',''),(115426,40298,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(115427,40298,'blocks_3_tabs','3'),(115428,40298,'_blocks_3_tabs','field_6177cff281419'),(115429,40299,'hide_hero','0'),(115430,40299,'_hide_hero','field_66a2380fcda39'),(115431,40299,'hero_title',''),(115432,40299,'_hero_title','field_617571fe285e8'),(115433,40299,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(115434,40299,'_hero_text','field_6175723c285e9'),(115435,40299,'hero_actions',''),(115436,40299,'_hero_actions','field_61757270285ea'),(115437,40299,'hero_style','default'),(115438,40299,'_hero_style','field_62051d9dc5324'),(115439,40299,'_thumbnail_id','40288'),(115440,40299,'__thumbnail_id','field_617570855ddaf'),(115441,40299,'hero_image_pos_x','right'),(115442,40299,'_hero_image_pos_x','field_62ec3d05390bb'),(115443,40299,'hero_image_pos_y','top'),(115444,40299,'_hero_image_pos_y','field_62ec3d05390bc'),(115445,40299,'hero_image_pos',''),(115446,40299,'_hero_image_pos','field_62ec3d05390ba'),(115447,40299,'fft_hide_from_listings','0'),(115448,40299,'_fft_hide_from_listings','field_61f1320446ab2'),(115449,40299,'fft_page_format','default'),(115450,40299,'_fft_page_format','field_61ae213f1f218'),(115451,40299,'fft_hide_nav','0'),(115452,40299,'_fft_hide_nav','field_635bd5e43527c'),(115453,40299,'fft_hide_header_call_to_action','0'),(115454,40299,'_fft_hide_header_call_to_action','field_635bd6723527d'),(115455,40299,'fft_page_sitemap','0'),(115456,40299,'_fft_page_sitemap','field_61af9b34e8181'),(115457,40299,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(115458,40299,'_blocks','field_6176696113096'),(115459,40299,'course_label_text',''),(115460,40299,'_course_label_text','field_61e17babf71fa'),(115461,40299,'course_label',''),(115462,40299,'_course_label','field_61e12f92749a7'),(115463,40299,'course_description',''),(115464,40299,'_course_description','field_617ac5788e5e1'),(115465,40299,'course_key_info',''),(115466,40299,'_course_key_info','field_617ac6ad8e5e2'),(115467,40299,'course_included',''),(115468,40299,'_course_included','field_617ac6f08e5e4'),(115469,40299,'blocks_0_acfe_flexible_toggle',''),(115470,40299,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(115471,40299,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(115472,40299,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(115473,40299,'blocks_0_options_theme','#ffffff'),(115474,40299,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(115475,40299,'blocks_0_options_reverse','0'),(115476,40299,'_blocks_0_options_reverse','field_61768049bb8ac'),(115477,40299,'blocks_0_options',''),(115478,40299,'_blocks_0_options','field_617682517c334'),(115479,40299,'blocks_0_split_5050_image','40290'),(115480,40299,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(115481,40299,'blocks_0_split_5050_video',''),(115482,40299,'_blocks_0_split_5050_video','field_6239f3160848a'),(115483,40299,'blocks_0_split_5050_content_title',''),(115484,40299,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(115485,40299,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(115486,40299,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(115487,40299,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(115488,40299,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(115489,40299,'blocks_0_split_5050_content_actions',''),(115490,40299,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(115491,40299,'blocks_0_split_5050_content',''),(115492,40299,'_blocks_0_split_5050_content','field_61767afceb8ba'),(115493,40299,'blocks_1_acfe_flexible_toggle',''),(115494,40299,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(115495,40299,'blocks_1_acfe_flexible_layout_title','Icons'),(115496,40299,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(115497,40299,'blocks_1_options_theme','#b61234'),(115498,40299,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(115499,40299,'blocks_1_options_format','grid'),(115500,40299,'_blocks_1_options_format','field_64bfde9a90690'),(115501,40299,'blocks_1_options',''),(115502,40299,'_blocks_1_options','field_64bfdd9b90684'),(115503,40299,'blocks_1_row_content_title',''),(115504,40299,'_blocks_1_row_content_title','field_64bfdd9b90687'),(115505,40299,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(115506,40299,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(115507,40299,'blocks_1_row_content_text',''),(115508,40299,'_blocks_1_row_content_text','field_64bfdd9b90689'),(115509,40299,'blocks_1_row_content_actions',''),(115510,40299,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(115511,40299,'blocks_1_row_content',''),(115512,40299,'_blocks_1_row_content','field_64bfdd9b90686'),(115513,40299,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(115514,40299,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(115515,40299,'blocks_1_icon_row_items_0_label',''),(115516,40299,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(115517,40299,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(115518,40299,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(115519,40299,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(115520,40299,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(115521,40299,'blocks_1_icon_row_items_1_label',''),(115522,40299,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(115523,40299,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(115524,40299,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(115525,40299,'blocks_1_icon_row_items_2_icon','referrals.svg'),(115526,40299,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(115527,40299,'blocks_1_icon_row_items_2_label',''),(115528,40299,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(115529,40299,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(115530,40299,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(115531,40299,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(115532,40299,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(115533,40299,'blocks_1_icon_row_items_3_label',''),(115534,40299,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(115535,40299,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(115536,40299,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(115537,40299,'blocks_1_icon_row_items','4'),(115538,40299,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(115539,40299,'blocks_2_acfe_flexible_toggle',''),(115540,40299,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(115541,40299,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(115542,40299,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(115543,40299,'blocks_2_options_theme','#ffffff'),(115544,40299,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(115545,40299,'blocks_2_options_reverse','1'),(115546,40299,'_blocks_2_options_reverse','field_61768049bb8ac'),(115547,40299,'blocks_2_options',''),(115548,40299,'_blocks_2_options','field_617682517c334'),(115549,40299,'blocks_2_split_5050_image','40294'),(115550,40299,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(115551,40299,'blocks_2_split_5050_video',''),(115552,40299,'_blocks_2_split_5050_video','field_6239f3160848a'),(115553,40299,'blocks_2_split_5050_content_title',''),(115554,40299,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(115555,40299,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(115556,40299,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(115557,40299,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(115558,40299,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(115559,40299,'blocks_2_split_5050_content_actions',''),(115560,40299,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(115561,40299,'blocks_2_split_5050_content',''),(115562,40299,'_blocks_2_split_5050_content','field_61767afceb8ba'),(115563,40299,'blocks_3_acfe_flexible_toggle',''),(115564,40299,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(115565,40299,'blocks_3_acfe_flexible_layout_title','Tabs'),(115566,40299,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(115567,40299,'blocks_3_options_theme','#f5f5f5'),(115568,40299,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(115569,40299,'blocks_3_options',''),(115570,40299,'_blocks_3_options','field_6177cfcd8140f'),(115571,40299,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(115572,40299,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(115573,40299,'blocks_3_tabs_0_tab_content_title',''),(115574,40299,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(115575,40299,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(115576,40299,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(115577,40299,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(115578,40299,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(115579,40299,'blocks_3_tabs_0_tab_content_actions',''),(115580,40299,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(115581,40299,'blocks_3_tabs_0_tab_content',''),(115582,40299,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(115583,40299,'blocks_3_tabs_0_tab_image',''),(115584,40299,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(115585,40299,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(115586,40299,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(115587,40299,'blocks_3_tabs_1_tab_content_title',''),(115588,40299,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(115589,40299,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(115590,40299,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(115591,40299,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(115592,40299,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(115593,40299,'blocks_3_tabs_1_tab_content_actions',''),(115594,40299,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(115595,40299,'blocks_3_tabs_1_tab_content',''),(115596,40299,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(115597,40299,'blocks_3_tabs_1_tab_image',''),(115598,40299,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(115599,40299,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(115600,40299,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(115601,40299,'blocks_3_tabs_2_tab_content_title',''),(115602,40299,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(115603,40299,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(115604,40299,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(115605,40299,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(115606,40299,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(115607,40299,'blocks_3_tabs_2_tab_content_actions',''),(115608,40299,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(115609,40299,'blocks_3_tabs_2_tab_content',''),(115610,40299,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(115611,40299,'blocks_3_tabs_2_tab_image',''),(115612,40299,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(115613,40299,'blocks_3_tabs','3'),(115614,40299,'_blocks_3_tabs','field_6177cff281419'),(115615,40286,'blocks_3_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(115616,40286,'_blocks_3_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(115617,40300,'hide_hero','0'),(115618,40300,'_hide_hero','field_66a2380fcda39'),(115619,40300,'hero_title',''),(115620,40300,'_hero_title','field_617571fe285e8'),(115621,40300,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(115622,40300,'_hero_text','field_6175723c285e9'),(115623,40300,'hero_actions',''),(115624,40300,'_hero_actions','field_61757270285ea'),(115625,40300,'hero_style','default'),(115626,40300,'_hero_style','field_62051d9dc5324'),(115627,40300,'_thumbnail_id','40288'),(115628,40300,'__thumbnail_id','field_617570855ddaf'),(115629,40300,'hero_image_pos_x','right'),(115630,40300,'_hero_image_pos_x','field_62ec3d05390bb'),(115631,40300,'hero_image_pos_y','top'),(115632,40300,'_hero_image_pos_y','field_62ec3d05390bc'),(115633,40300,'hero_image_pos',''),(115634,40300,'_hero_image_pos','field_62ec3d05390ba'),(115635,40300,'fft_hide_from_listings','0'),(115636,40300,'_fft_hide_from_listings','field_61f1320446ab2'),(115637,40300,'fft_page_format','default'),(115638,40300,'_fft_page_format','field_61ae213f1f218'),(115639,40300,'fft_hide_nav','0'),(115640,40300,'_fft_hide_nav','field_635bd5e43527c'),(115641,40300,'fft_hide_header_call_to_action','0'),(115642,40300,'_fft_hide_header_call_to_action','field_635bd6723527d'),(115643,40300,'fft_page_sitemap','0'),(115644,40300,'_fft_page_sitemap','field_61af9b34e8181'),(115645,40300,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(115646,40300,'_blocks','field_6176696113096'),(115647,40300,'course_label_text',''),(115648,40300,'_course_label_text','field_61e17babf71fa'),(115649,40300,'course_label',''),(115650,40300,'_course_label','field_61e12f92749a7'),(115651,40300,'course_description',''),(115652,40300,'_course_description','field_617ac5788e5e1'),(115653,40300,'course_key_info',''),(115654,40300,'_course_key_info','field_617ac6ad8e5e2'),(115655,40300,'course_included',''),(115656,40300,'_course_included','field_617ac6f08e5e4'),(115657,40300,'blocks_0_acfe_flexible_toggle',''),(115658,40300,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(115659,40300,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(115660,40300,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(115661,40300,'blocks_0_options_theme','#ffffff'),(115662,40300,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(115663,40300,'blocks_0_options_reverse','0'),(115664,40300,'_blocks_0_options_reverse','field_61768049bb8ac'),(115665,40300,'blocks_0_options',''),(115666,40300,'_blocks_0_options','field_617682517c334'),(115667,40300,'blocks_0_split_5050_image','40290'),(115668,40300,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(115669,40300,'blocks_0_split_5050_video',''),(115670,40300,'_blocks_0_split_5050_video','field_6239f3160848a'),(115671,40300,'blocks_0_split_5050_content_title',''),(115672,40300,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(115673,40300,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(115674,40300,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(115675,40300,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(115676,40300,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(115677,40300,'blocks_0_split_5050_content_actions',''),(115678,40300,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(115679,40300,'blocks_0_split_5050_content',''),(115680,40300,'_blocks_0_split_5050_content','field_61767afceb8ba'),(115681,40300,'blocks_1_acfe_flexible_toggle',''),(115682,40300,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(115683,40300,'blocks_1_acfe_flexible_layout_title','Icons'),(115684,40300,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(115685,40300,'blocks_1_options_theme','#b61234'),(115686,40300,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(115687,40300,'blocks_1_options_format','grid'),(115688,40300,'_blocks_1_options_format','field_64bfde9a90690'),(115689,40300,'blocks_1_options',''),(115690,40300,'_blocks_1_options','field_64bfdd9b90684'),(115691,40300,'blocks_1_row_content_title',''),(115692,40300,'_blocks_1_row_content_title','field_64bfdd9b90687'),(115693,40300,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(115694,40300,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(115695,40300,'blocks_1_row_content_text',''),(115696,40300,'_blocks_1_row_content_text','field_64bfdd9b90689'),(115697,40300,'blocks_1_row_content_actions',''),(115698,40300,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(115699,40300,'blocks_1_row_content',''),(115700,40300,'_blocks_1_row_content','field_64bfdd9b90686'),(115701,40300,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(115702,40300,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(115703,40300,'blocks_1_icon_row_items_0_label',''),(115704,40300,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(115705,40300,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(115706,40300,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(115707,40300,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(115708,40300,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(115709,40300,'blocks_1_icon_row_items_1_label',''),(115710,40300,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(115711,40300,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(115712,40300,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(115713,40300,'blocks_1_icon_row_items_2_icon','referrals.svg'),(115714,40300,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(115715,40300,'blocks_1_icon_row_items_2_label',''),(115716,40300,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(115717,40300,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(115718,40300,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(115719,40300,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(115720,40300,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(115721,40300,'blocks_1_icon_row_items_3_label',''),(115722,40300,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(115723,40300,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(115724,40300,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(115725,40300,'blocks_1_icon_row_items','4'),(115726,40300,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(115727,40300,'blocks_2_acfe_flexible_toggle',''),(115728,40300,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(115729,40300,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(115730,40300,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(115731,40300,'blocks_2_options_theme','#ffffff'),(115732,40300,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(115733,40300,'blocks_2_options_reverse','1'),(115734,40300,'_blocks_2_options_reverse','field_61768049bb8ac'),(115735,40300,'blocks_2_options',''),(115736,40300,'_blocks_2_options','field_617682517c334'),(115737,40300,'blocks_2_split_5050_image','40294'),(115738,40300,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(115739,40300,'blocks_2_split_5050_video',''),(115740,40300,'_blocks_2_split_5050_video','field_6239f3160848a'),(115741,40300,'blocks_2_split_5050_content_title',''),(115742,40300,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(115743,40300,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(115744,40300,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(115745,40300,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(115746,40300,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(115747,40300,'blocks_2_split_5050_content_actions',''),(115748,40300,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(115749,40300,'blocks_2_split_5050_content',''),(115750,40300,'_blocks_2_split_5050_content','field_61767afceb8ba'),(115751,40300,'blocks_3_acfe_flexible_toggle',''),(115752,40300,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(115753,40300,'blocks_3_acfe_flexible_layout_title','Tabs'),(115754,40300,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(115755,40300,'blocks_3_options_theme','#f5f5f5'),(115756,40300,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(115757,40300,'blocks_3_options',''),(115758,40300,'_blocks_3_options','field_6177cfcd8140f'),(115759,40300,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(115760,40300,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(115761,40300,'blocks_3_tabs_0_tab_content_title',''),(115762,40300,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(115763,40300,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(115764,40300,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(115765,40300,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(115766,40300,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(115767,40300,'blocks_3_tabs_0_tab_content_actions','1'),(115768,40300,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(115769,40300,'blocks_3_tabs_0_tab_content',''),(115770,40300,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(115771,40300,'blocks_3_tabs_0_tab_image',''),(115772,40300,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(115773,40300,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(115774,40300,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(115775,40300,'blocks_3_tabs_1_tab_content_title',''),(115776,40300,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(115777,40300,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(115778,40300,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(115779,40300,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(115780,40300,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(115781,40300,'blocks_3_tabs_1_tab_content_actions',''),(115782,40300,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(115783,40300,'blocks_3_tabs_1_tab_content',''),(115784,40300,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(115785,40300,'blocks_3_tabs_1_tab_image',''),(115786,40300,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(115787,40300,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(115788,40300,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(115789,40300,'blocks_3_tabs_2_tab_content_title',''),(115790,40300,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(115791,40300,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(115792,40300,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(115793,40300,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(115794,40300,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(115795,40300,'blocks_3_tabs_2_tab_content_actions',''),(115796,40300,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(115797,40300,'blocks_3_tabs_2_tab_content',''),(115798,40300,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(115799,40300,'blocks_3_tabs_2_tab_image',''),(115800,40300,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(115801,40300,'blocks_3_tabs','3'),(115802,40300,'_blocks_3_tabs','field_6177cff281419'),(115803,40300,'blocks_3_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(115804,40300,'_blocks_3_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(115805,40301,'hide_hero','0'),(115806,40301,'_hide_hero','field_66a2380fcda39'),(115807,40301,'hero_title',''),(115808,40301,'_hero_title','field_617571fe285e8'),(115809,40301,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(115810,40301,'_hero_text','field_6175723c285e9'),(115811,40301,'hero_actions',''),(115812,40301,'_hero_actions','field_61757270285ea'),(115813,40301,'hero_style','default'),(115814,40301,'_hero_style','field_62051d9dc5324'),(115815,40301,'_thumbnail_id','40288'),(115816,40301,'__thumbnail_id','field_617570855ddaf'),(115817,40301,'hero_image_pos_x','right'),(115818,40301,'_hero_image_pos_x','field_62ec3d05390bb'),(115819,40301,'hero_image_pos_y','top'),(115820,40301,'_hero_image_pos_y','field_62ec3d05390bc'),(115821,40301,'hero_image_pos',''),(115822,40301,'_hero_image_pos','field_62ec3d05390ba'),(115823,40301,'fft_hide_from_listings','0'),(115824,40301,'_fft_hide_from_listings','field_61f1320446ab2'),(115825,40301,'fft_page_format','default'),(115826,40301,'_fft_page_format','field_61ae213f1f218'),(115827,40301,'fft_hide_nav','0'),(115828,40301,'_fft_hide_nav','field_635bd5e43527c'),(115829,40301,'fft_hide_header_call_to_action','0'),(115830,40301,'_fft_hide_header_call_to_action','field_635bd6723527d'),(115831,40301,'fft_page_sitemap','0'),(115832,40301,'_fft_page_sitemap','field_61af9b34e8181'),(115833,40301,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(115834,40301,'_blocks','field_6176696113096'),(115835,40301,'course_label_text',''),(115836,40301,'_course_label_text','field_61e17babf71fa'),(115837,40301,'course_label',''),(115838,40301,'_course_label','field_61e12f92749a7'),(115839,40301,'course_description',''),(115840,40301,'_course_description','field_617ac5788e5e1'),(115841,40301,'course_key_info',''),(115842,40301,'_course_key_info','field_617ac6ad8e5e2'),(115843,40301,'course_included',''),(115844,40301,'_course_included','field_617ac6f08e5e4'),(115845,40301,'blocks_0_acfe_flexible_toggle',''),(115846,40301,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(115847,40301,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(115848,40301,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(115849,40301,'blocks_0_options_theme','#ffffff'),(115850,40301,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(115851,40301,'blocks_0_options_reverse','0'),(115852,40301,'_blocks_0_options_reverse','field_61768049bb8ac'),(115853,40301,'blocks_0_options',''),(115854,40301,'_blocks_0_options','field_617682517c334'),(115855,40301,'blocks_0_split_5050_image','40290'),(115856,40301,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(115857,40301,'blocks_0_split_5050_video',''),(115858,40301,'_blocks_0_split_5050_video','field_6239f3160848a'),(115859,40301,'blocks_0_split_5050_content_title',''),(115860,40301,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(115861,40301,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(115862,40301,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(115863,40301,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(115864,40301,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(115865,40301,'blocks_0_split_5050_content_actions',''),(115866,40301,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(115867,40301,'blocks_0_split_5050_content',''),(115868,40301,'_blocks_0_split_5050_content','field_61767afceb8ba'),(115869,40301,'blocks_1_acfe_flexible_toggle',''),(115870,40301,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(115871,40301,'blocks_1_acfe_flexible_layout_title','Icons'),(115872,40301,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(115873,40301,'blocks_1_options_theme','#b61234'),(115874,40301,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(115875,40301,'blocks_1_options_format','grid'),(115876,40301,'_blocks_1_options_format','field_64bfde9a90690'),(115877,40301,'blocks_1_options',''),(115878,40301,'_blocks_1_options','field_64bfdd9b90684'),(115879,40301,'blocks_1_row_content_title',''),(115880,40301,'_blocks_1_row_content_title','field_64bfdd9b90687'),(115881,40301,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(115882,40301,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(115883,40301,'blocks_1_row_content_text',''),(115884,40301,'_blocks_1_row_content_text','field_64bfdd9b90689'),(115885,40301,'blocks_1_row_content_actions',''),(115886,40301,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(115887,40301,'blocks_1_row_content',''),(115888,40301,'_blocks_1_row_content','field_64bfdd9b90686'),(115889,40301,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(115890,40301,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(115891,40301,'blocks_1_icon_row_items_0_label',''),(115892,40301,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(115893,40301,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(115894,40301,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(115895,40301,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(115896,40301,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(115897,40301,'blocks_1_icon_row_items_1_label',''),(115898,40301,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(115899,40301,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(115900,40301,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(115901,40301,'blocks_1_icon_row_items_2_icon','referrals.svg'),(115902,40301,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(115903,40301,'blocks_1_icon_row_items_2_label',''),(115904,40301,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(115905,40301,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(115906,40301,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(115907,40301,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(115908,40301,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(115909,40301,'blocks_1_icon_row_items_3_label',''),(115910,40301,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(115911,40301,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(115912,40301,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(115913,40301,'blocks_1_icon_row_items','4'),(115914,40301,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(115915,40301,'blocks_2_acfe_flexible_toggle',''),(115916,40301,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(115917,40301,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(115918,40301,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(115919,40301,'blocks_2_options_theme','#ffffff'),(115920,40301,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(115921,40301,'blocks_2_options_reverse','1'),(115922,40301,'_blocks_2_options_reverse','field_61768049bb8ac'),(115923,40301,'blocks_2_options',''),(115924,40301,'_blocks_2_options','field_617682517c334'),(115925,40301,'blocks_2_split_5050_image','40294'),(115926,40301,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(115927,40301,'blocks_2_split_5050_video',''),(115928,40301,'_blocks_2_split_5050_video','field_6239f3160848a'),(115929,40301,'blocks_2_split_5050_content_title',''),(115930,40301,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(115931,40301,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(115932,40301,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(115933,40301,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(115934,40301,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(115935,40301,'blocks_2_split_5050_content_actions',''),(115936,40301,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(115937,40301,'blocks_2_split_5050_content',''),(115938,40301,'_blocks_2_split_5050_content','field_61767afceb8ba'),(115939,40301,'blocks_3_acfe_flexible_toggle',''),(115940,40301,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(115941,40301,'blocks_3_acfe_flexible_layout_title','Tabs'),(115942,40301,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(115943,40301,'blocks_3_options_theme','#f5f5f5'),(115944,40301,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(115945,40301,'blocks_3_options',''),(115946,40301,'_blocks_3_options','field_6177cfcd8140f'),(115947,40301,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(115948,40301,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(115949,40301,'blocks_3_tabs_0_tab_content_title',''),(115950,40301,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(115951,40301,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(115952,40301,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(115953,40301,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(115954,40301,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(115955,40301,'blocks_3_tabs_0_tab_content_actions','1'),(115956,40301,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(115957,40301,'blocks_3_tabs_0_tab_content',''),(115958,40301,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(115959,40301,'blocks_3_tabs_0_tab_image',''),(115960,40301,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(115961,40301,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(115962,40301,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(115963,40301,'blocks_3_tabs_1_tab_content_title',''),(115964,40301,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(115965,40301,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(115966,40301,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(115967,40301,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(115968,40301,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(115969,40301,'blocks_3_tabs_1_tab_content_actions',''),(115970,40301,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(115971,40301,'blocks_3_tabs_1_tab_content',''),(115972,40301,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(115973,40301,'blocks_3_tabs_1_tab_image',''),(115974,40301,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(115975,40301,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(115976,40301,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(115977,40301,'blocks_3_tabs_2_tab_content_title',''),(115978,40301,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(115979,40301,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(115980,40301,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(115981,40301,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(115982,40301,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(115983,40301,'blocks_3_tabs_2_tab_content_actions',''),(115984,40301,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(115985,40301,'blocks_3_tabs_2_tab_content',''),(115986,40301,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(115987,40301,'blocks_3_tabs_2_tab_image',''),(115988,40301,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(115989,40301,'blocks_3_tabs','3'),(115990,40301,'_blocks_3_tabs','field_6177cff281419'),(115991,40301,'blocks_3_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(115992,40301,'_blocks_3_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(116231,40286,'_wp_old_date','2024-09-10'),(116232,40286,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(116233,40286,'_hero_actions_0_button','field_61757281285eb'),(116234,40303,'hide_hero','0'),(116235,40303,'_hide_hero','field_66a2380fcda39'),(116236,40303,'hero_title',''),(116237,40303,'_hero_title','field_617571fe285e8'),(116238,40303,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(116239,40303,'_hero_text','field_6175723c285e9'),(116240,40303,'hero_actions','1'),(116241,40303,'_hero_actions','field_61757270285ea'),(116242,40303,'hero_style','default'),(116243,40303,'_hero_style','field_62051d9dc5324'),(116244,40303,'_thumbnail_id','40288'),(116245,40303,'__thumbnail_id','field_617570855ddaf'),(116246,40303,'hero_image_pos_x','right'),(116247,40303,'_hero_image_pos_x','field_62ec3d05390bb'),(116248,40303,'hero_image_pos_y','top'),(116249,40303,'_hero_image_pos_y','field_62ec3d05390bc'),(116250,40303,'hero_image_pos',''),(116251,40303,'_hero_image_pos','field_62ec3d05390ba'),(116252,40303,'fft_hide_from_listings','0'),(116253,40303,'_fft_hide_from_listings','field_61f1320446ab2'),(116254,40303,'fft_page_format','default'),(116255,40303,'_fft_page_format','field_61ae213f1f218'),(116256,40303,'fft_hide_nav','0'),(116257,40303,'_fft_hide_nav','field_635bd5e43527c'),(116258,40303,'fft_hide_header_call_to_action','0'),(116259,40303,'_fft_hide_header_call_to_action','field_635bd6723527d'),(116260,40303,'fft_page_sitemap','0'),(116261,40303,'_fft_page_sitemap','field_61af9b34e8181'),(116262,40303,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(116263,40303,'_blocks','field_6176696113096'),(116264,40303,'course_label_text',''),(116265,40303,'_course_label_text','field_61e17babf71fa'),(116266,40303,'course_label',''),(116267,40303,'_course_label','field_61e12f92749a7'),(116268,40303,'course_description',''),(116269,40303,'_course_description','field_617ac5788e5e1'),(116270,40303,'course_key_info',''),(116271,40303,'_course_key_info','field_617ac6ad8e5e2'),(116272,40303,'course_included',''),(116273,40303,'_course_included','field_617ac6f08e5e4'),(116274,40303,'blocks_0_acfe_flexible_toggle',''),(116275,40303,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(116276,40303,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(116277,40303,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(116278,40303,'blocks_0_options_theme','#ffffff'),(116279,40303,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(116280,40303,'blocks_0_options_reverse','0'),(116281,40303,'_blocks_0_options_reverse','field_61768049bb8ac'),(116282,40303,'blocks_0_options',''),(116283,40303,'_blocks_0_options','field_617682517c334'),(116284,40303,'blocks_0_split_5050_image','40290'),(116285,40303,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(116286,40303,'blocks_0_split_5050_video',''),(116287,40303,'_blocks_0_split_5050_video','field_6239f3160848a'),(116288,40303,'blocks_0_split_5050_content_title',''),(116289,40303,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(116290,40303,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(116291,40303,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(116292,40303,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(116293,40303,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(116294,40303,'blocks_0_split_5050_content_actions',''),(116295,40303,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(116296,40303,'blocks_0_split_5050_content',''),(116297,40303,'_blocks_0_split_5050_content','field_61767afceb8ba'),(116298,40303,'blocks_1_acfe_flexible_toggle',''),(116299,40303,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(116300,40303,'blocks_1_acfe_flexible_layout_title','Icons'),(116301,40303,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(116302,40303,'blocks_1_options_theme','#b61234'),(116303,40303,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(116304,40303,'blocks_1_options_format','grid'),(116305,40303,'_blocks_1_options_format','field_64bfde9a90690'),(116306,40303,'blocks_1_options',''),(116307,40303,'_blocks_1_options','field_64bfdd9b90684'),(116308,40303,'blocks_1_row_content_title',''),(116309,40303,'_blocks_1_row_content_title','field_64bfdd9b90687'),(116310,40303,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(116311,40303,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(116312,40303,'blocks_1_row_content_text',''),(116313,40303,'_blocks_1_row_content_text','field_64bfdd9b90689'),(116314,40303,'blocks_1_row_content_actions',''),(116315,40303,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(116316,40303,'blocks_1_row_content',''),(116317,40303,'_blocks_1_row_content','field_64bfdd9b90686'),(116318,40303,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(116319,40303,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(116320,40303,'blocks_1_icon_row_items_0_label',''),(116321,40303,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(116322,40303,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(116323,40303,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(116324,40303,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(116325,40303,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(116326,40303,'blocks_1_icon_row_items_1_label',''),(116327,40303,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(116328,40303,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(116329,40303,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(116330,40303,'blocks_1_icon_row_items_2_icon','referrals.svg'),(116331,40303,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(116332,40303,'blocks_1_icon_row_items_2_label',''),(116333,40303,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(116334,40303,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(116335,40303,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(116336,40303,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(116337,40303,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(116338,40303,'blocks_1_icon_row_items_3_label',''),(116339,40303,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(116340,40303,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(116341,40303,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(116342,40303,'blocks_1_icon_row_items','4'),(116343,40303,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(116344,40303,'blocks_2_acfe_flexible_toggle',''),(116345,40303,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(116346,40303,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(116347,40303,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(116348,40303,'blocks_2_options_theme','#ffffff'),(116349,40303,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(116350,40303,'blocks_2_options_reverse','1'),(116351,40303,'_blocks_2_options_reverse','field_61768049bb8ac'),(116352,40303,'blocks_2_options',''),(116353,40303,'_blocks_2_options','field_617682517c334'),(116354,40303,'blocks_2_split_5050_image','40294'),(116355,40303,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(116356,40303,'blocks_2_split_5050_video',''),(116357,40303,'_blocks_2_split_5050_video','field_6239f3160848a'),(116358,40303,'blocks_2_split_5050_content_title',''),(116359,40303,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(116360,40303,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(116361,40303,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(116362,40303,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(116363,40303,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(116364,40303,'blocks_2_split_5050_content_actions',''),(116365,40303,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(116366,40303,'blocks_2_split_5050_content',''),(116367,40303,'_blocks_2_split_5050_content','field_61767afceb8ba'),(116368,40303,'blocks_3_acfe_flexible_toggle',''),(116369,40303,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(116370,40303,'blocks_3_acfe_flexible_layout_title','Tabs'),(116371,40303,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(116372,40303,'blocks_3_options_theme','#f5f5f5'),(116373,40303,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(116374,40303,'blocks_3_options',''),(116375,40303,'_blocks_3_options','field_6177cfcd8140f'),(116376,40303,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(116377,40303,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(116378,40303,'blocks_3_tabs_0_tab_content_title',''),(116379,40303,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(116380,40303,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(116381,40303,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(116382,40303,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(116383,40303,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(116384,40303,'blocks_3_tabs_0_tab_content_actions','1'),(116385,40303,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(116386,40303,'blocks_3_tabs_0_tab_content',''),(116387,40303,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(116388,40303,'blocks_3_tabs_0_tab_image',''),(116389,40303,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(116390,40303,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(116391,40303,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(116392,40303,'blocks_3_tabs_1_tab_content_title',''),(116393,40303,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(116394,40303,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(116395,40303,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(116396,40303,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(116397,40303,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(116398,40303,'blocks_3_tabs_1_tab_content_actions',''),(116399,40303,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(116400,40303,'blocks_3_tabs_1_tab_content',''),(116401,40303,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(116402,40303,'blocks_3_tabs_1_tab_image',''),(116403,40303,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(116404,40303,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(116405,40303,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(116406,40303,'blocks_3_tabs_2_tab_content_title',''),(116407,40303,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(116408,40303,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(116409,40303,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(116410,40303,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(116411,40303,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(116412,40303,'blocks_3_tabs_2_tab_content_actions',''),(116413,40303,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(116414,40303,'blocks_3_tabs_2_tab_content',''),(116415,40303,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(116416,40303,'blocks_3_tabs_2_tab_image',''),(116417,40303,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(116418,40303,'blocks_3_tabs','3'),(116419,40303,'_blocks_3_tabs','field_6177cff281419'),(116420,40303,'blocks_3_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(116421,40303,'_blocks_3_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(116422,40303,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(116423,40303,'_hero_actions_0_button','field_61757281285eb'),(116614,40305,'hide_hero','0'),(116615,40305,'_hide_hero','field_66a2380fcda39'),(116616,40305,'hero_title',''),(116617,40305,'_hero_title','field_617571fe285e8'),(116618,40305,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(116619,40305,'_hero_text','field_6175723c285e9'),(116620,40305,'hero_actions','1'),(116621,40305,'_hero_actions','field_61757270285ea'),(116622,40305,'hero_style','default'),(116623,40305,'_hero_style','field_62051d9dc5324'),(116624,40305,'_thumbnail_id','40288'),(116625,40305,'__thumbnail_id','field_617570855ddaf'),(116626,40305,'hero_image_pos_x','right'),(116627,40305,'_hero_image_pos_x','field_62ec3d05390bb'),(116628,40305,'hero_image_pos_y','top'),(116629,40305,'_hero_image_pos_y','field_62ec3d05390bc'),(116630,40305,'hero_image_pos',''),(116631,40305,'_hero_image_pos','field_62ec3d05390ba'),(116632,40305,'fft_hide_from_listings','0'),(116633,40305,'_fft_hide_from_listings','field_61f1320446ab2'),(116634,40305,'fft_page_format','default'),(116635,40305,'_fft_page_format','field_61ae213f1f218'),(116636,40305,'fft_hide_nav','0'),(116637,40305,'_fft_hide_nav','field_635bd5e43527c'),(116638,40305,'fft_hide_header_call_to_action','0'),(116639,40305,'_fft_hide_header_call_to_action','field_635bd6723527d'),(116640,40305,'fft_page_sitemap','0'),(116641,40305,'_fft_page_sitemap','field_61af9b34e8181'),(116642,40305,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(116643,40305,'_blocks','field_6176696113096'),(116644,40305,'course_label_text',''),(116645,40305,'_course_label_text','field_61e17babf71fa'),(116646,40305,'course_label',''),(116647,40305,'_course_label','field_61e12f92749a7'),(116648,40305,'course_description',''),(116649,40305,'_course_description','field_617ac5788e5e1'),(116650,40305,'course_key_info',''),(116651,40305,'_course_key_info','field_617ac6ad8e5e2'),(116652,40305,'course_included',''),(116653,40305,'_course_included','field_617ac6f08e5e4'),(116654,40305,'blocks_0_acfe_flexible_toggle',''),(116655,40305,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(116656,40305,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(116657,40305,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(116658,40305,'blocks_0_options_theme','#ffffff'),(116659,40305,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(116660,40305,'blocks_0_options_reverse','0'),(116661,40305,'_blocks_0_options_reverse','field_61768049bb8ac'),(116662,40305,'blocks_0_options',''),(116663,40305,'_blocks_0_options','field_617682517c334'),(116664,40305,'blocks_0_split_5050_image','40290'),(116665,40305,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(116666,40305,'blocks_0_split_5050_video',''),(116667,40305,'_blocks_0_split_5050_video','field_6239f3160848a'),(116668,40305,'blocks_0_split_5050_content_title',''),(116669,40305,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(116670,40305,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(116671,40305,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(116672,40305,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(116673,40305,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(116674,40305,'blocks_0_split_5050_content_actions',''),(116675,40305,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(116676,40305,'blocks_0_split_5050_content',''),(116677,40305,'_blocks_0_split_5050_content','field_61767afceb8ba'),(116678,40305,'blocks_1_acfe_flexible_toggle',''),(116679,40305,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(116680,40305,'blocks_1_acfe_flexible_layout_title','Icons'),(116681,40305,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(116682,40305,'blocks_1_options_theme','#b61234'),(116683,40305,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(116684,40305,'blocks_1_options_format','grid'),(116685,40305,'_blocks_1_options_format','field_64bfde9a90690'),(116686,40305,'blocks_1_options',''),(116687,40305,'_blocks_1_options','field_64bfdd9b90684'),(116688,40305,'blocks_1_row_content_title',''),(116689,40305,'_blocks_1_row_content_title','field_64bfdd9b90687'),(116690,40305,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(116691,40305,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(116692,40305,'blocks_1_row_content_text',''),(116693,40305,'_blocks_1_row_content_text','field_64bfdd9b90689'),(116694,40305,'blocks_1_row_content_actions',''),(116695,40305,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(116696,40305,'blocks_1_row_content',''),(116697,40305,'_blocks_1_row_content','field_64bfdd9b90686'),(116698,40305,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(116699,40305,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(116700,40305,'blocks_1_icon_row_items_0_label',''),(116701,40305,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(116702,40305,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(116703,40305,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(116704,40305,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(116705,40305,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(116706,40305,'blocks_1_icon_row_items_1_label',''),(116707,40305,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(116708,40305,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(116709,40305,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(116710,40305,'blocks_1_icon_row_items_2_icon','referrals.svg'),(116711,40305,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(116712,40305,'blocks_1_icon_row_items_2_label',''),(116713,40305,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(116714,40305,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(116715,40305,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(116716,40305,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(116717,40305,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(116718,40305,'blocks_1_icon_row_items_3_label',''),(116719,40305,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(116720,40305,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(116721,40305,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(116722,40305,'blocks_1_icon_row_items','4'),(116723,40305,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(116724,40305,'blocks_2_acfe_flexible_toggle',''),(116725,40305,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(116726,40305,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(116727,40305,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(116728,40305,'blocks_2_options_theme','#ffffff'),(116729,40305,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(116730,40305,'blocks_2_options_reverse','1'),(116731,40305,'_blocks_2_options_reverse','field_61768049bb8ac'),(116732,40305,'blocks_2_options',''),(116733,40305,'_blocks_2_options','field_617682517c334'),(116734,40305,'blocks_2_split_5050_image','40294'),(116735,40305,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(116736,40305,'blocks_2_split_5050_video',''),(116737,40305,'_blocks_2_split_5050_video','field_6239f3160848a'),(116738,40305,'blocks_2_split_5050_content_title',''),(116739,40305,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(116740,40305,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(116741,40305,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(116742,40305,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(116743,40305,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(116744,40305,'blocks_2_split_5050_content_actions',''),(116745,40305,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(116746,40305,'blocks_2_split_5050_content',''),(116747,40305,'_blocks_2_split_5050_content','field_61767afceb8ba'),(116748,40305,'blocks_3_acfe_flexible_toggle',''),(116749,40305,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(116750,40305,'blocks_3_acfe_flexible_layout_title','Tabs'),(116751,40305,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(116752,40305,'blocks_3_options_theme','#f5f5f5'),(116753,40305,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(116754,40305,'blocks_3_options',''),(116755,40305,'_blocks_3_options','field_6177cfcd8140f'),(116756,40305,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(116757,40305,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(116758,40305,'blocks_3_tabs_0_tab_content_title',''),(116759,40305,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(116760,40305,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(116761,40305,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(116762,40305,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(116763,40305,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(116764,40305,'blocks_3_tabs_0_tab_content_actions','1'),(116765,40305,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(116766,40305,'blocks_3_tabs_0_tab_content',''),(116767,40305,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(116768,40305,'blocks_3_tabs_0_tab_image',''),(116769,40305,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(116770,40305,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(116771,40305,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(116772,40305,'blocks_3_tabs_1_tab_content_title',''),(116773,40305,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(116774,40305,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(116775,40305,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(116776,40305,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(116777,40305,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(116778,40305,'blocks_3_tabs_1_tab_content_actions',''),(116779,40305,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(116780,40305,'blocks_3_tabs_1_tab_content',''),(116781,40305,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(116782,40305,'blocks_3_tabs_1_tab_image',''),(116783,40305,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(116784,40305,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(116785,40305,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(116786,40305,'blocks_3_tabs_2_tab_content_title',''),(116787,40305,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(116788,40305,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(116789,40305,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(116790,40305,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(116791,40305,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(116792,40305,'blocks_3_tabs_2_tab_content_actions',''),(116793,40305,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(116794,40305,'blocks_3_tabs_2_tab_content',''),(116795,40305,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(116796,40305,'blocks_3_tabs_2_tab_image',''),(116797,40305,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(116798,40305,'blocks_3_tabs','3'),(116799,40305,'_blocks_3_tabs','field_6177cff281419'),(116800,40305,'blocks_3_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(116801,40305,'_blocks_3_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(116802,40305,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(116803,40305,'_hero_actions_0_button','field_61757281285eb'),(117018,7,'blocks_1_acfe_flexible_toggle',''),(117019,7,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(117020,7,'blocks_1_acfe_flexible_layout_title','Video'),(117021,7,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(117022,7,'blocks_1_size','large'),(117023,7,'_blocks_1_size','field_6487038f297c1'),(117024,7,'blocks_1_row_content_title',''),(117025,7,'_blocks_1_row_content_title','field_64870132a865d'),(117026,7,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(117027,7,'_blocks_1_row_content_heading','field_64870142a865e'),(117028,7,'blocks_1_row_content_text',''),(117029,7,'_blocks_1_row_content_text','field_64870148a865f'),(117030,7,'blocks_1_row_content',''),(117031,7,'_blocks_1_row_content','field_6487008ba865c'),(117032,7,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(117033,7,'_blocks_1_video_src','field_6193c4a98ec07'),(117034,7,'blocks_1_video_thumbnail','39175'),(117035,7,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(117036,40307,'hero_style','default'),(117037,40307,'_hero_style','field_62051d9dc5324'),(117038,40307,'hero_image_pos_x','right'),(117039,40307,'_hero_image_pos_x','field_62ec3d05390bb'),(117040,40307,'hero_image_pos_y','top'),(117041,40307,'_hero_image_pos_y','field_62ec3d05390bc'),(117042,40307,'hero_image_pos',''),(117043,40307,'_hero_image_pos','field_62ec3d05390ba'),(117044,40307,'hero_title','Biomechanics Education'),(117045,40307,'_hero_title','field_617571fe285e8'),(117046,40307,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(117047,40307,'_hero_text','field_6175723c285e9'),(117048,40307,'hero_actions','1'),(117049,40307,'_hero_actions','field_61757270285ea'),(117050,40307,'hero_icon',''),(117051,40307,'_hero_icon','field_61a6182199d03'),(117052,40307,'fft_hide_from_listings','0'),(117053,40307,'_fft_hide_from_listings','field_61f1320446ab2'),(117054,40307,'fft_page_format','default'),(117055,40307,'_fft_page_format','field_61ae213f1f218'),(117056,40307,'fft_hide_nav','0'),(117057,40307,'_fft_hide_nav','field_635bd5e43527c'),(117058,40307,'fft_hide_header_call_to_action','0'),(117059,40307,'_fft_hide_header_call_to_action','field_635bd6723527d'),(117060,40307,'fft_page_sitemap','0'),(117061,40307,'_fft_page_sitemap','field_61af9b34e8181'),(117062,40307,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:8:\"template\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:8:\"template\";i:7;s:18:\"testimonial_slider\";}'),(117063,40307,'_blocks','field_6176696113096'),(117064,40307,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(117065,40307,'_hero_actions_0_button','field_61757281285eb'),(117066,40307,'_thumbnail_id','38951'),(117067,40307,'__thumbnail_id','field_617570855ddaf'),(117068,40307,'hide_hero','0'),(117069,40307,'_hide_hero','field_66a2380fcda39'),(117070,40307,'blocks_2_acfe_flexible_toggle',''),(117071,40307,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(117072,40307,'blocks_2_acfe_flexible_layout_title','Template'),(117073,40307,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(117074,40307,'blocks_2_template','39087'),(117075,40307,'_blocks_2_template','field_617bdd570fe01'),(117076,40307,'blocks_3_acfe_flexible_toggle',''),(117077,40307,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(117078,40307,'blocks_3_acfe_flexible_layout_title','Text Block'),(117079,40307,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(117080,40307,'blocks_3_options_theme','#ffffff'),(117081,40307,'_blocks_3_options_theme','field_6176830e2ad17'),(117082,40307,'blocks_3_options',''),(117083,40307,'_blocks_3_options','field_6176830e2ad16'),(117084,40307,'blocks_3_text_block_heading','Learn About Biomechanics in Different Sectors'),(117085,40307,'_blocks_3_text_block_heading','field_617669d413097'),(117086,40307,'blocks_3_text_block_content',''),(117087,40307,'_blocks_3_text_block_content','field_617669ec13098'),(117088,40307,'blocks_4_acfe_flexible_toggle',''),(117089,40307,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(117090,40307,'blocks_4_acfe_flexible_layout_title','Cards'),(117091,40307,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(117092,40307,'blocks_4_options_theme','#ffffff'),(117093,40307,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(117094,40307,'blocks_4_options_format','carousel'),(117095,40307,'_blocks_4_options_format','field_617a7b15245b5'),(117096,40307,'blocks_4_options_style','default'),(117097,40307,'_blocks_4_options_style','field_6278ffb63484a'),(117098,40307,'blocks_4_options_cards_current_listing','0'),(117099,40307,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(117100,40307,'blocks_4_options_cards_content','custom'),(117101,40307,'_blocks_4_options_cards_content','field_617aba6122688'),(117102,40307,'blocks_4_options',''),(117103,40307,'_blocks_4_options','field_617a7b15245b3'),(117104,40307,'blocks_4_cards_custom_0_image','39215'),(117105,40307,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(117106,40307,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(117107,40307,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(117108,40307,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(117109,40307,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(117110,40307,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(117111,40307,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(117112,40307,'blocks_4_cards_custom_1_image','39243'),(117113,40307,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(117114,40307,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(117115,40307,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(117116,40307,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(117117,40307,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(117118,40307,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(117119,40307,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(117120,40307,'blocks_4_cards_custom_2_image','39247'),(117121,40307,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(117122,40307,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(117123,40307,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(117124,40307,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(117125,40307,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(117126,40307,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(117127,40307,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(117128,40307,'blocks_4_cards_custom_3_image','39256'),(117129,40307,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(117130,40307,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(117131,40307,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(117132,40307,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(117133,40307,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(117134,40307,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(117135,40307,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(117136,40307,'blocks_4_cards_custom_4_image','39251'),(117137,40307,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(117138,40307,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(117139,40307,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(117140,40307,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(117141,40307,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(117142,40307,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(117143,40307,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(117144,40307,'blocks_4_cards_custom_5_image','39240'),(117145,40307,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(117146,40307,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(117147,40307,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(117148,40307,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(117149,40307,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(117150,40307,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(117151,40307,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(117152,40307,'blocks_4_cards_custom_6_image','39454'),(117153,40307,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(117154,40307,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(117155,40307,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(117156,40307,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(117157,40307,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(117158,40307,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(117159,40307,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(117160,40307,'blocks_4_cards_custom','7'),(117161,40307,'_blocks_4_cards_custom','field_6194cbf84d386'),(117162,40307,'blocks_5_acfe_flexible_toggle',''),(117163,40307,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(117164,40307,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(117165,40307,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(117166,40307,'blocks_5_options_theme','#f5f5f5'),(117167,40307,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(117168,40307,'blocks_5_options_reverse','1'),(117169,40307,'_blocks_5_options_reverse','field_61768049bb8ac'),(117170,40307,'blocks_5_options',''),(117171,40307,'_blocks_5_options','field_617682517c334'),(117172,40307,'blocks_5_split_5050_image','38960'),(117173,40307,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(117174,40307,'blocks_5_split_5050_video',''),(117175,40307,'_blocks_5_split_5050_video','field_6239f3160848a'),(117176,40307,'blocks_5_split_5050_content_title','Working In Partnership'),(117177,40307,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(117178,40307,'blocks_5_split_5050_content_heading','Biomechanics Education and Future Fit'),(117179,40307,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(117180,40307,'blocks_5_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(117181,40307,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(117182,40307,'blocks_5_split_5050_content_actions',''),(117183,40307,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(117184,40307,'blocks_5_split_5050_content',''),(117185,40307,'_blocks_5_split_5050_content','field_61767afceb8ba'),(117186,40307,'blocks_6_acfe_flexible_toggle',''),(117187,40307,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(117188,40307,'blocks_6_acfe_flexible_layout_title','Template'),(117189,40307,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(117190,40307,'blocks_6_template','39207'),(117191,40307,'_blocks_6_template','field_617bdd570fe01'),(117192,40307,'blocks_7_acfe_flexible_toggle',''),(117193,40307,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(117194,40307,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(117195,40307,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(117196,40307,'blocks_7_testimonial_slider_content_title',''),(117197,40307,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(117198,40307,'blocks_7_testimonial_slider_content_heading','Testimonials'),(117199,40307,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(117200,40307,'blocks_7_testimonial_slider_content_text',''),(117201,40307,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(117202,40307,'blocks_7_testimonial_slider_content_actions',''),(117203,40307,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(117204,40307,'blocks_7_testimonial_slider_content',''),(117205,40307,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(117206,40307,'blocks_7_testimonial_slider_items','a:5:{i:0;s:5:\"38964\";i:1;s:5:\"38965\";i:2;s:5:\"39168\";i:3;s:5:\"39170\";i:4;s:5:\"39169\";}'),(117207,40307,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(117208,40307,'blocks_7_testimonial_slider_ambassador_bool','0'),(117209,40307,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(117210,40307,'blocks_0_acfe_flexible_toggle',''),(117211,40307,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(117212,40307,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(117213,40307,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(117214,40307,'blocks_0_options_theme','#b61234'),(117215,40307,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(117216,40307,'blocks_0_options_reverse','0'),(117217,40307,'_blocks_0_options_reverse','field_61768049bb8ac'),(117218,40307,'blocks_0_options',''),(117219,40307,'_blocks_0_options','field_617682517c334'),(117220,40307,'blocks_0_split_5050_image','38950'),(117221,40307,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(117222,40307,'blocks_0_split_5050_video',''),(117223,40307,'_blocks_0_split_5050_video','field_6239f3160848a'),(117224,40307,'blocks_0_split_5050_content_title',''),(117225,40307,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(117226,40307,'blocks_0_split_5050_content_heading','What is Biomechanics Education?'),(117227,40307,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(117228,40307,'blocks_0_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(117229,40307,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(117230,40307,'blocks_0_split_5050_content_actions',''),(117231,40307,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(117232,40307,'blocks_0_split_5050_content',''),(117233,40307,'_blocks_0_split_5050_content','field_61767afceb8ba'),(117234,40307,'blocks_1_acfe_flexible_toggle',''),(117235,40307,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(117236,40307,'blocks_1_acfe_flexible_layout_title','Video'),(117237,40307,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(117238,40307,'blocks_1_size','large'),(117239,40307,'_blocks_1_size','field_6487038f297c1'),(117240,40307,'blocks_1_row_content_title',''),(117241,40307,'_blocks_1_row_content_title','field_64870132a865d'),(117242,40307,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(117243,40307,'_blocks_1_row_content_heading','field_64870142a865e'),(117244,40307,'blocks_1_row_content_text',''),(117245,40307,'_blocks_1_row_content_text','field_64870148a865f'),(117246,40307,'blocks_1_row_content',''),(117247,40307,'_blocks_1_row_content','field_6487008ba865c'),(117248,40307,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(117249,40307,'_blocks_1_video_src','field_6193c4a98ec07'),(117250,40307,'blocks_1_video_thumbnail','39175'),(117251,40307,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(117252,7,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(117253,7,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(117254,40308,'hero_style','default'),(117255,40308,'_hero_style','field_62051d9dc5324'),(117256,40308,'hero_image_pos_x','right'),(117257,40308,'_hero_image_pos_x','field_62ec3d05390bb'),(117258,40308,'hero_image_pos_y','top'),(117259,40308,'_hero_image_pos_y','field_62ec3d05390bc'),(117260,40308,'hero_image_pos',''),(117261,40308,'_hero_image_pos','field_62ec3d05390ba'),(117262,40308,'hero_title','Biomechanics Education'),(117263,40308,'_hero_title','field_617571fe285e8'),(117264,40308,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(117265,40308,'_hero_text','field_6175723c285e9'),(117266,40308,'hero_actions','1'),(117267,40308,'_hero_actions','field_61757270285ea'),(117268,40308,'hero_icon',''),(117269,40308,'_hero_icon','field_61a6182199d03'),(117270,40308,'fft_hide_from_listings','0'),(117271,40308,'_fft_hide_from_listings','field_61f1320446ab2'),(117272,40308,'fft_page_format','default'),(117273,40308,'_fft_page_format','field_61ae213f1f218'),(117274,40308,'fft_hide_nav','0'),(117275,40308,'_fft_hide_nav','field_635bd5e43527c'),(117276,40308,'fft_hide_header_call_to_action','0'),(117277,40308,'_fft_hide_header_call_to_action','field_635bd6723527d'),(117278,40308,'fft_page_sitemap','0'),(117279,40308,'_fft_page_sitemap','field_61af9b34e8181'),(117280,40308,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:8:\"template\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:8:\"template\";i:7;s:18:\"testimonial_slider\";}'),(117281,40308,'_blocks','field_6176696113096'),(117282,40308,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(117283,40308,'_hero_actions_0_button','field_61757281285eb'),(117284,40308,'_thumbnail_id','38951'),(117285,40308,'__thumbnail_id','field_617570855ddaf'),(117286,40308,'hide_hero','0'),(117287,40308,'_hide_hero','field_66a2380fcda39'),(117288,40308,'blocks_2_acfe_flexible_toggle',''),(117289,40308,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(117290,40308,'blocks_2_acfe_flexible_layout_title','Template'),(117291,40308,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(117292,40308,'blocks_2_template','39087'),(117293,40308,'_blocks_2_template','field_617bdd570fe01'),(117294,40308,'blocks_3_acfe_flexible_toggle',''),(117295,40308,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(117296,40308,'blocks_3_acfe_flexible_layout_title','Text Block'),(117297,40308,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(117298,40308,'blocks_3_options_theme','#ffffff'),(117299,40308,'_blocks_3_options_theme','field_6176830e2ad17'),(117300,40308,'blocks_3_options',''),(117301,40308,'_blocks_3_options','field_6176830e2ad16'),(117302,40308,'blocks_3_text_block_heading','Learn About Biomechanics in Different Sectors'),(117303,40308,'_blocks_3_text_block_heading','field_617669d413097'),(117304,40308,'blocks_3_text_block_content',''),(117305,40308,'_blocks_3_text_block_content','field_617669ec13098'),(117306,40308,'blocks_4_acfe_flexible_toggle',''),(117307,40308,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(117308,40308,'blocks_4_acfe_flexible_layout_title','Cards'),(117309,40308,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(117310,40308,'blocks_4_options_theme','#ffffff'),(117311,40308,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(117312,40308,'blocks_4_options_format','carousel'),(117313,40308,'_blocks_4_options_format','field_617a7b15245b5'),(117314,40308,'blocks_4_options_style','default'),(117315,40308,'_blocks_4_options_style','field_6278ffb63484a'),(117316,40308,'blocks_4_options_cards_current_listing','0'),(117317,40308,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(117318,40308,'blocks_4_options_cards_content','custom'),(117319,40308,'_blocks_4_options_cards_content','field_617aba6122688'),(117320,40308,'blocks_4_options',''),(117321,40308,'_blocks_4_options','field_617a7b15245b3'),(117322,40308,'blocks_4_cards_custom_0_image','39215'),(117323,40308,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(117324,40308,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(117325,40308,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(117326,40308,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(117327,40308,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(117328,40308,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(117329,40308,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(117330,40308,'blocks_4_cards_custom_1_image','39243'),(117331,40308,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(117332,40308,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(117333,40308,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(117334,40308,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(117335,40308,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(117336,40308,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(117337,40308,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(117338,40308,'blocks_4_cards_custom_2_image','39247'),(117339,40308,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(117340,40308,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(117341,40308,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(117342,40308,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(117343,40308,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(117344,40308,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(117345,40308,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(117346,40308,'blocks_4_cards_custom_3_image','39256'),(117347,40308,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(117348,40308,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(117349,40308,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(117350,40308,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(117351,40308,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(117352,40308,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(117353,40308,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(117354,40308,'blocks_4_cards_custom_4_image','39251'),(117355,40308,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(117356,40308,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(117357,40308,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(117358,40308,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(117359,40308,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(117360,40308,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(117361,40308,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(117362,40308,'blocks_4_cards_custom_5_image','39240'),(117363,40308,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(117364,40308,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(117365,40308,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(117366,40308,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(117367,40308,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(117368,40308,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(117369,40308,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(117370,40308,'blocks_4_cards_custom_6_image','39454'),(117371,40308,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(117372,40308,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(117373,40308,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(117374,40308,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(117375,40308,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(117376,40308,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(117377,40308,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(117378,40308,'blocks_4_cards_custom','7'),(117379,40308,'_blocks_4_cards_custom','field_6194cbf84d386'),(117380,40308,'blocks_5_acfe_flexible_toggle',''),(117381,40308,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(117382,40308,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(117383,40308,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(117384,40308,'blocks_5_options_theme','#f5f5f5'),(117385,40308,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(117386,40308,'blocks_5_options_reverse','1'),(117387,40308,'_blocks_5_options_reverse','field_61768049bb8ac'),(117388,40308,'blocks_5_options',''),(117389,40308,'_blocks_5_options','field_617682517c334'),(117390,40308,'blocks_5_split_5050_image','38960'),(117391,40308,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(117392,40308,'blocks_5_split_5050_video',''),(117393,40308,'_blocks_5_split_5050_video','field_6239f3160848a'),(117394,40308,'blocks_5_split_5050_content_title','Biomechanics Education & Future Fit'),(117395,40308,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(117396,40308,'blocks_5_split_5050_content_heading','Working In Partnership'),(117397,40308,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(117398,40308,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the Future Fit Student Zone for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Our advanced learning management system</li>\r\n 	<li>Industry-recognized training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(117399,40308,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(117400,40308,'blocks_5_split_5050_content_actions','1'),(117401,40308,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(117402,40308,'blocks_5_split_5050_content',''),(117403,40308,'_blocks_5_split_5050_content','field_61767afceb8ba'),(117404,40308,'blocks_6_acfe_flexible_toggle',''),(117405,40308,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(117406,40308,'blocks_6_acfe_flexible_layout_title','Template'),(117407,40308,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(117408,40308,'blocks_6_template','39207'),(117409,40308,'_blocks_6_template','field_617bdd570fe01'),(117410,40308,'blocks_7_acfe_flexible_toggle',''),(117411,40308,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(117412,40308,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(117413,40308,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(117414,40308,'blocks_7_testimonial_slider_content_title',''),(117415,40308,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(117416,40308,'blocks_7_testimonial_slider_content_heading','Testimonials'),(117417,40308,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(117418,40308,'blocks_7_testimonial_slider_content_text',''),(117419,40308,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(117420,40308,'blocks_7_testimonial_slider_content_actions',''),(117421,40308,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(117422,40308,'blocks_7_testimonial_slider_content',''),(117423,40308,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(117424,40308,'blocks_7_testimonial_slider_items','a:5:{i:0;s:5:\"38964\";i:1;s:5:\"38965\";i:2;s:5:\"39168\";i:3;s:5:\"39170\";i:4;s:5:\"39169\";}'),(117425,40308,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(117426,40308,'blocks_7_testimonial_slider_ambassador_bool','0'),(117427,40308,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(117428,40308,'blocks_0_acfe_flexible_toggle',''),(117429,40308,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(117430,40308,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(117431,40308,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(117432,40308,'blocks_0_options_theme','#b61234'),(117433,40308,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(117434,40308,'blocks_0_options_reverse','0'),(117435,40308,'_blocks_0_options_reverse','field_61768049bb8ac'),(117436,40308,'blocks_0_options',''),(117437,40308,'_blocks_0_options','field_617682517c334'),(117438,40308,'blocks_0_split_5050_image','38950'),(117439,40308,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(117440,40308,'blocks_0_split_5050_video',''),(117441,40308,'_blocks_0_split_5050_video','field_6239f3160848a'),(117442,40308,'blocks_0_split_5050_content_title',''),(117443,40308,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(117444,40308,'blocks_0_split_5050_content_heading','What is Biomechanics Education?'),(117445,40308,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(117446,40308,'blocks_0_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(117447,40308,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(117448,40308,'blocks_0_split_5050_content_actions',''),(117449,40308,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(117450,40308,'blocks_0_split_5050_content',''),(117451,40308,'_blocks_0_split_5050_content','field_61767afceb8ba'),(117452,40308,'blocks_1_acfe_flexible_toggle',''),(117453,40308,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(117454,40308,'blocks_1_acfe_flexible_layout_title','Video'),(117455,40308,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(117456,40308,'blocks_1_size','large'),(117457,40308,'_blocks_1_size','field_6487038f297c1'),(117458,40308,'blocks_1_row_content_title',''),(117459,40308,'_blocks_1_row_content_title','field_64870132a865d'),(117460,40308,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(117461,40308,'_blocks_1_row_content_heading','field_64870142a865e'),(117462,40308,'blocks_1_row_content_text',''),(117463,40308,'_blocks_1_row_content_text','field_64870148a865f'),(117464,40308,'blocks_1_row_content',''),(117465,40308,'_blocks_1_row_content','field_6487008ba865c'),(117466,40308,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(117467,40308,'_blocks_1_video_src','field_6193c4a98ec07'),(117468,40308,'blocks_1_video_thumbnail','39175'),(117469,40308,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(117470,40308,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(117471,40308,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(117472,38973,'hide_hero','0'),(117473,38973,'_hide_hero','field_66a2380fcda39'),(117474,40309,'hero_style','default'),(117475,40309,'_hero_style','field_62051d9dc5324'),(117476,40309,'hero_image_pos_x','right'),(117477,40309,'_hero_image_pos_x','field_62ec3d05390bb'),(117478,40309,'hero_image_pos_y','top'),(117479,40309,'_hero_image_pos_y','field_62ec3d05390bc'),(117480,40309,'hero_image_pos',''),(117481,40309,'_hero_image_pos','field_62ec3d05390ba'),(117482,40309,'hero_title','Biomechanics Coach Course - David Lloyd'),(117483,40309,'_hero_title','field_617571fe285e8'),(117484,40309,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(117485,40309,'_hero_text','field_6175723c285e9'),(117486,40309,'hero_actions','1'),(117487,40309,'_hero_actions','field_61757270285ea'),(117488,40309,'hero_icon',''),(117489,40309,'_hero_icon','field_61a6182199d03'),(117490,40309,'fft_hide_from_listings','0'),(117491,40309,'_fft_hide_from_listings','field_61f1320446ab2'),(117492,40309,'fft_page_format','default'),(117493,40309,'_fft_page_format','field_61ae213f1f218'),(117494,40309,'fft_hide_nav','1'),(117495,40309,'_fft_hide_nav','field_635bd5e43527c'),(117496,40309,'fft_hide_header_call_to_action','0'),(117497,40309,'_fft_hide_header_call_to_action','field_635bd6723527d'),(117498,40309,'fft_page_sitemap','1'),(117499,40309,'_fft_page_sitemap','field_61af9b34e8181'),(117500,40309,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(117501,40309,'_blocks','field_6176696113096'),(117502,40309,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-38973-6\";s:6:\"target\";s:6:\"_blank\";}'),(117503,40309,'_hero_actions_0_button','field_61757281285eb'),(117504,40309,'_thumbnail_id','38977'),(117505,40309,'__thumbnail_id','field_617570855ddaf'),(117506,40309,'blocks_0_acfe_flexible_toggle',''),(117507,40309,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(117508,40309,'blocks_0_acfe_flexible_layout_title','Icons'),(117509,40309,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(117510,40309,'blocks_0_options_theme','#ffffff'),(117511,40309,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(117512,40309,'blocks_0_options_format','row'),(117513,40309,'_blocks_0_options_format','field_64bfde9a90690'),(117514,40309,'blocks_0_options',''),(117515,40309,'_blocks_0_options','field_64bfdd9b90684'),(117516,40309,'blocks_0_icon_row_items_0_icon','qualification.svg'),(117517,40309,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(117518,40309,'blocks_0_icon_row_items_0_label','Course Type'),(117519,40309,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(117520,40309,'blocks_0_icon_row_items_0_text','Blended Learning'),(117521,40309,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(117522,40309,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(117523,40309,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(117524,40309,'blocks_0_icon_row_items_1_label','Qualification'),(117525,40309,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(117526,40309,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(117527,40309,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(117528,40309,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(117529,40309,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(117530,40309,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(117531,40309,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(117532,40309,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(117533,40309,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(117534,40309,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(117535,40309,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(117536,40309,'blocks_0_icon_row_items_3_label','IBA Registered'),(117537,40309,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(117538,40309,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(117539,40309,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(117540,40309,'blocks_0_icon_row_items','4'),(117541,40309,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(117542,40309,'blocks_1_acfe_flexible_toggle',''),(117543,40309,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(117544,40309,'blocks_1_acfe_flexible_layout_title','Form'),(117545,40309,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(117546,40309,'blocks_1_row_content_format','promotion'),(117547,40309,'_blocks_1_row_content_format','field_6481ead962881'),(117548,40309,'blocks_1_row_content_title',''),(117549,40309,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(117550,40309,'blocks_1_row_content_heading',''),(117551,40309,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(117552,40309,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(117553,40309,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(117554,40309,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(117555,40309,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(117556,40309,'blocks_1_row_content_actions','1'),(117557,40309,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(117558,40309,'blocks_1_row_content',''),(117559,40309,'_blocks_1_row_content','field_61a0f5f5b3db0'),(117560,40309,'blocks_1_row_form',''),(117561,40309,'_blocks_1_row_form','field_61a4ff2c0b08e'),(117562,40309,'blocks_1_row_form_button_label',''),(117563,40309,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(117564,40309,'blocks_1_row_content_promotion_label','Up to 10% Off'),(117565,40309,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(117566,40309,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(117567,40309,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(117568,40309,'blocks_1_row_content_promotion_value','Up to 10% Off'),(117569,40309,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(117570,40309,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(117571,40309,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(117572,40309,'blocks_1_row_content_promotion',''),(117573,40309,'_blocks_1_row_content_promotion','field_6481eb3962882'),(117574,40309,'blocks_1_row_form_title','David Lloyd Referral'),(117575,40309,'_blocks_1_row_form_title','field_64872db5127af'),(117576,40309,'blocks_2_acfe_flexible_toggle',''),(117577,40309,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(117578,40309,'blocks_2_acfe_flexible_layout_title','Logos'),(117579,40309,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(117580,40309,'blocks_2_options_theme','#ffffff'),(117581,40309,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(117582,40309,'blocks_2_options_format','grid'),(117583,40309,'_blocks_2_options_format','field_61782964ee971'),(117584,40309,'blocks_2_options',''),(117585,40309,'_blocks_2_options','field_61782954ee965'),(117586,40309,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(117587,40309,'_blocks_2_logos','field_61782954ee96d'),(117588,40309,'blocks_2_title',''),(117589,40309,'_blocks_2_title','field_668fbfdc2daa1'),(117590,40309,'blocks_3_acfe_flexible_toggle',''),(117591,40309,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(117592,40309,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(117593,40309,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(117594,40309,'blocks_3_size','large'),(117595,40309,'_blocks_3_size','field_6487038f297c1'),(117596,40309,'blocks_3_row_content_title',''),(117597,40309,'_blocks_3_row_content_title','field_64870132a865d'),(117598,40309,'blocks_3_row_content_heading','Course Overview'),(117599,40309,'_blocks_3_row_content_heading','field_64870142a865e'),(117600,40309,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment program that is simplified and comes from an evidence-based perspective to bring learners a system that pulls their skills together.'),(117601,40309,'_blocks_3_row_content_text','field_64870148a865f'),(117602,40309,'blocks_3_row_content',''),(117603,40309,'_blocks_3_row_content','field_6487008ba865c'),(117604,40309,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(117605,40309,'_blocks_3_video_src','field_6193c4a98ec07'),(117606,40309,'blocks_3_video_thumbnail','38998'),(117607,40309,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(117608,40309,'blocks_4_acfe_flexible_toggle',''),(117609,40309,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(117610,40309,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(117611,40309,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(117612,40309,'blocks_4_options_theme','#ffffff'),(117613,40309,'_blocks_4_options_theme','field_6176830e2ad17'),(117614,40309,'blocks_4_options',''),(117615,40309,'_blocks_4_options','field_6176830e2ad16'),(117616,40309,'blocks_4_text_block_heading','Learn more about the course'),(117617,40309,'_blocks_4_text_block_heading','field_617669d413097'),(117618,40309,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching learners will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(117619,40309,'_blocks_4_text_block_content','field_617669ec13098'),(117620,40309,'blocks_5_acfe_flexible_toggle',''),(117621,40309,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(117622,40309,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(117623,40309,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(117624,40309,'blocks_5_options_theme','#ffffff'),(117625,40309,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(117626,40309,'blocks_5_options',''),(117627,40309,'_blocks_5_options','field_6177cfcd8140f'),(117628,40309,'blocks_5_tabs_0_tab_label','What\'s Included'),(117629,40309,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(117630,40309,'blocks_5_tabs_0_tab_content_title',''),(117631,40309,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(117632,40309,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(117633,40309,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(117634,40309,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(117635,40309,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(117636,40309,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(117637,40309,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(117638,40309,'blocks_5_tabs_0_tab_content_actions','1'),(117639,40309,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(117640,40309,'blocks_5_tabs_0_tab_content',''),(117641,40309,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(117642,40309,'blocks_5_tabs_0_tab_image','39009'),(117643,40309,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(117644,40309,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(117645,40309,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(117646,40309,'blocks_5_tabs_1_tab_content_title',''),(117647,40309,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(117648,40309,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(117649,40309,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(117650,40309,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(117651,40309,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(117652,40309,'blocks_5_tabs_1_tab_content_actions','1'),(117653,40309,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(117654,40309,'blocks_5_tabs_1_tab_content',''),(117655,40309,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(117656,40309,'blocks_5_tabs_1_tab_image','39010'),(117657,40309,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(117658,40309,'blocks_5_tabs','2'),(117659,40309,'_blocks_5_tabs','field_6177cff281419'),(117660,40309,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(117661,40309,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(117662,40309,'blocks_6_acfe_flexible_toggle',''),(117663,40309,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(117664,40309,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(117665,40309,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(117666,40309,'blocks_6_options_theme','#ffffff'),(117667,40309,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(117668,40309,'blocks_6_options_state','0'),(117669,40309,'_blocks_6_options_state','field_6239fcb7508c5'),(117670,40309,'blocks_6_options',''),(117671,40309,'_blocks_6_options','field_6177e2991ac44'),(117672,40309,'blocks_6_accordion_content','faqs'),(117673,40309,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(117674,40309,'blocks_6_actions',''),(117675,40309,'_blocks_6_actions','field_61a746a817f7a'),(117676,40309,'blocks_6_content_title',''),(117677,40309,'_blocks_6_content_title','field_64d237e8bb1e2'),(117678,40309,'blocks_6_content_heading','Frequently asked questions'),(117679,40309,'_blocks_6_content_heading','field_64d237e8bb1e3'),(117680,40309,'blocks_6_content_text',''),(117681,40309,'_blocks_6_content_text','field_64d237e8bb1e4'),(117682,40309,'blocks_6_content_actions',''),(117683,40309,'_blocks_6_content_actions','field_64d237e8bb1e5'),(117684,40309,'blocks_6_content_align','left'),(117685,40309,'_blocks_6_content_align','field_64d2443e6b6aa'),(117686,40309,'blocks_6_content',''),(117687,40309,'_blocks_6_content','field_64d237e8bb1e1'),(117688,40309,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(117689,40309,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(117690,40309,'blocks_7_acfe_flexible_toggle',''),(117691,40309,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(117692,40309,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(117693,40309,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(117694,40309,'blocks_7_options_alignment','center'),(117695,40309,'_blocks_7_options_alignment','field_61769449f5490'),(117696,40309,'blocks_7_options',''),(117697,40309,'_blocks_7_options','field_617693e1428f0'),(117698,40309,'blocks_7_promo_panel_image','39035'),(117699,40309,'_blocks_7_promo_panel_image','field_617693e1428f3'),(117700,40309,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(117701,40309,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(117702,40309,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(117703,40309,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(117704,40309,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(117705,40309,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(117706,40309,'blocks_7_promo_panel_content_actions','1'),(117707,40309,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(117708,40309,'blocks_7_promo_panel_content',''),(117709,40309,'_blocks_7_promo_panel_content','field_617693e1428f4'),(117710,40309,'hide_hero','0'),(117711,40309,'_hide_hero','field_66a2380fcda39'),(117712,40310,'_wp_attached_file','2024/09/shutterstock_2485558527.jpg'),(117713,40310,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:35:\"2024/09/shutterstock_2485558527.jpg\";s:8:\"filesize\";i:442997;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96286;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36565;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78297;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42805;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105477;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36509;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96286;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35218;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-675x667.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83997;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105477;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38408;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105477;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34530;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2485558527-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89075;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:86:\"Copyright (c) 2024 PeopleImages.com - Yuri A/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:74:\"Corporate,,Development,And,Seminar,With,Business,People,In,Conference,Room\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:438:\"flare,career,education,crowd,seminar,office,employee,business people,professional,presentation,businessmen,workforce,businesswoman,female,worker,businessman,meeting,group,audience,development,work,workshop,businesspeople,formal,person,colleagues,adult,job,male,conference,woman,learning,training,diversity,working,company,lecture,man,event,listening,business,staff,team,gathering,corporate,businessperson,conference room,workplace,sitting\";}}}'),(117714,39043,'hide_hero','0'),(117715,39043,'_hide_hero','field_66a2380fcda39'),(117716,40311,'hero_style','default'),(117717,40311,'_hero_style','field_62051d9dc5324'),(117718,40311,'hero_image_pos_x','right'),(117719,40311,'_hero_image_pos_x','field_62ec3d05390bb'),(117720,40311,'hero_image_pos_y','top'),(117721,40311,'_hero_image_pos_y','field_62ec3d05390bc'),(117722,40311,'hero_image_pos',''),(117723,40311,'_hero_image_pos','field_62ec3d05390ba'),(117724,40311,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(117725,40311,'_hero_title','field_617571fe285e8'),(117726,40311,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(117727,40311,'_hero_text','field_6175723c285e9'),(117728,40311,'hero_actions','1'),(117729,40311,'_hero_actions','field_61757270285ea'),(117730,40311,'hero_icon',''),(117731,40311,'_hero_icon','field_61a6182199d03'),(117732,40311,'fft_hide_from_listings','0'),(117733,40311,'_fft_hide_from_listings','field_61f1320446ab2'),(117734,40311,'fft_page_format','default'),(117735,40311,'_fft_page_format','field_61ae213f1f218'),(117736,40311,'fft_hide_nav','1'),(117737,40311,'_fft_hide_nav','field_635bd5e43527c'),(117738,40311,'fft_hide_header_call_to_action','0'),(117739,40311,'_fft_hide_header_call_to_action','field_635bd6723527d'),(117740,40311,'fft_page_sitemap','1'),(117741,40311,'_fft_page_sitemap','field_61af9b34e8181'),(117742,40311,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(117743,40311,'_blocks','field_6176696113096'),(117744,40311,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39043-3\";s:6:\"target\";s:6:\"_blank\";}'),(117745,40311,'_hero_actions_0_button','field_61757281285eb'),(117746,40311,'_thumbnail_id','40310'),(117747,40311,'__thumbnail_id','field_617570855ddaf'),(117748,40311,'blocks_0_acfe_flexible_toggle',''),(117749,40311,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(117750,40311,'blocks_0_acfe_flexible_layout_title','Icons'),(117751,40311,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(117752,40311,'blocks_0_options_theme','#ffffff'),(117753,40311,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(117754,40311,'blocks_0_options_format','row'),(117755,40311,'_blocks_0_options_format','field_64bfde9a90690'),(117756,40311,'blocks_0_options',''),(117757,40311,'_blocks_0_options','field_64bfdd9b90684'),(117758,40311,'blocks_0_icon_row_items_0_icon','qualification.svg'),(117759,40311,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(117760,40311,'blocks_0_icon_row_items_0_label','Course Type'),(117761,40311,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(117762,40311,'blocks_0_icon_row_items_0_text','Blended Learning'),(117763,40311,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(117764,40311,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(117765,40311,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(117766,40311,'blocks_0_icon_row_items_1_label','Qualification'),(117767,40311,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(117768,40311,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(117769,40311,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(117770,40311,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(117771,40311,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(117772,40311,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(117773,40311,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(117774,40311,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(117775,40311,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(117776,40311,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(117777,40311,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(117778,40311,'blocks_0_icon_row_items_3_label','IBA Registered'),(117779,40311,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(117780,40311,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(117781,40311,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(117782,40311,'blocks_0_icon_row_items','4'),(117783,40311,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(117784,40311,'blocks_1_acfe_flexible_toggle',''),(117785,40311,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(117786,40311,'blocks_1_acfe_flexible_layout_title','Form'),(117787,40311,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(117788,40311,'blocks_1_row_content_format','promotion'),(117789,40311,'_blocks_1_row_content_format','field_6481ead962881'),(117790,40311,'blocks_1_row_content_title',''),(117791,40311,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(117792,40311,'blocks_1_row_content_heading',''),(117793,40311,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(117794,40311,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(117795,40311,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(117796,40311,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(117797,40311,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(117798,40311,'blocks_1_row_content_actions','1'),(117799,40311,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(117800,40311,'blocks_1_row_content',''),(117801,40311,'_blocks_1_row_content','field_61a0f5f5b3db0'),(117802,40311,'blocks_1_row_form',''),(117803,40311,'_blocks_1_row_form','field_61a4ff2c0b08e'),(117804,40311,'blocks_1_row_form_button_label',''),(117805,40311,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(117806,40311,'blocks_1_row_content_promotion_label','Up to 10% Off'),(117807,40311,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(117808,40311,'blocks_1_row_content_promotion_heading','For Event Attendees '),(117809,40311,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(117810,40311,'blocks_1_row_content_promotion_value','10%'),(117811,40311,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(117812,40311,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(117813,40311,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(117814,40311,'blocks_1_row_content_promotion',''),(117815,40311,'_blocks_1_row_content_promotion','field_6481eb3962882'),(117816,40311,'blocks_1_row_form_title','EMD UK Referral'),(117817,40311,'_blocks_1_row_form_title','field_64872db5127af'),(117818,40311,'blocks_2_acfe_flexible_toggle',''),(117819,40311,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(117820,40311,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(117821,40311,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(117822,40311,'blocks_2_size','large'),(117823,40311,'_blocks_2_size','field_6487038f297c1'),(117824,40311,'blocks_2_row_content_title',''),(117825,40311,'_blocks_2_row_content_title','field_64870132a865d'),(117826,40311,'blocks_2_row_content_heading','Course Overview'),(117827,40311,'_blocks_2_row_content_heading','field_64870142a865e'),(117828,40311,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(117829,40311,'_blocks_2_row_content_text','field_64870148a865f'),(117830,40311,'blocks_2_row_content',''),(117831,40311,'_blocks_2_row_content','field_6487008ba865c'),(117832,40311,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(117833,40311,'_blocks_2_video_src','field_6193c4a98ec07'),(117834,40311,'blocks_2_video_thumbnail','38998'),(117835,40311,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(117836,40311,'blocks_3_acfe_flexible_toggle',''),(117837,40311,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(117838,40311,'blocks_3_acfe_flexible_layout_title','Partnership section'),(117839,40311,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(117840,40311,'blocks_3_options_theme','#ffffff'),(117841,40311,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(117842,40311,'blocks_3_options_reverse','0'),(117843,40311,'_blocks_3_options_reverse','field_61768049bb8ac'),(117844,40311,'blocks_3_options',''),(117845,40311,'_blocks_3_options','field_617682517c334'),(117846,40311,'blocks_3_split_5050_image','39051'),(117847,40311,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(117848,40311,'blocks_3_split_5050_video',''),(117849,40311,'_blocks_3_split_5050_video','field_6239f3160848a'),(117850,40311,'blocks_3_split_5050_content_title',''),(117851,40311,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(117852,40311,'blocks_3_split_5050_content_heading','Working in Partnership'),(117853,40311,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(117854,40311,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(117855,40311,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(117856,40311,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(117857,40311,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(117858,40311,'blocks_3_split_5050_content_actions','1'),(117859,40311,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(117860,40311,'blocks_3_split_5050_content',''),(117861,40311,'_blocks_3_split_5050_content','field_61767afceb8ba'),(117862,40311,'blocks_4_acfe_flexible_toggle',''),(117863,40311,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(117864,40311,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(117865,40311,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(117866,40311,'blocks_4_content','<h2 style=\"text-align: center;\">Learn more about the course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(117867,40311,'_blocks_4_content','field_6193c9b5eac84'),(117868,40311,'blocks_5_acfe_flexible_toggle',''),(117869,40311,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(117870,40311,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(117871,40311,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(117872,40311,'blocks_5_options_theme','#ffffff'),(117873,40311,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(117874,40311,'blocks_5_options',''),(117875,40311,'_blocks_5_options','field_6177cfcd8140f'),(117876,40311,'blocks_5_tabs_0_tab_label','What\'s Included'),(117877,40311,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(117878,40311,'blocks_5_tabs_0_tab_content_title',''),(117879,40311,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(117880,40311,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(117881,40311,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(117882,40311,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(117883,40311,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(117884,40311,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(117885,40311,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(117886,40311,'blocks_5_tabs_0_tab_content_actions','1'),(117887,40311,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(117888,40311,'blocks_5_tabs_0_tab_content',''),(117889,40311,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(117890,40311,'blocks_5_tabs_0_tab_image','39009'),(117891,40311,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(117892,40311,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(117893,40311,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(117894,40311,'blocks_5_tabs_1_tab_content_title',''),(117895,40311,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(117896,40311,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(117897,40311,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(117898,40311,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(117899,40311,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(117900,40311,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(117901,40311,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(117902,40311,'blocks_5_tabs_1_tab_content_actions','1'),(117903,40311,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(117904,40311,'blocks_5_tabs_1_tab_content',''),(117905,40311,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(117906,40311,'blocks_5_tabs_1_tab_image','39010'),(117907,40311,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(117908,40311,'blocks_5_tabs','2'),(117909,40311,'_blocks_5_tabs','field_6177cff281419'),(117910,40311,'blocks_6_acfe_flexible_toggle',''),(117911,40311,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(117912,40311,'blocks_6_acfe_flexible_layout_title','About Rachel'),(117913,40311,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(117914,40311,'blocks_6_options_theme','#ffffff'),(117915,40311,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(117916,40311,'blocks_6_options_reverse','0'),(117917,40311,'_blocks_6_options_reverse','field_61768049bb8ac'),(117918,40311,'blocks_6_options',''),(117919,40311,'_blocks_6_options','field_617682517c334'),(117920,40311,'blocks_6_split_5050_image','39052'),(117921,40311,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(117922,40311,'blocks_6_split_5050_video',''),(117923,40311,'_blocks_6_split_5050_video','field_6239f3160848a'),(117924,40311,'blocks_6_split_5050_content_title',''),(117925,40311,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(117926,40311,'blocks_6_split_5050_content_heading','Rachel France'),(117927,40311,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(117928,40311,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(117929,40311,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(117930,40311,'blocks_6_split_5050_content_actions',''),(117931,40311,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(117932,40311,'blocks_6_split_5050_content',''),(117933,40311,'_blocks_6_split_5050_content','field_61767afceb8ba'),(117934,40311,'blocks_7_acfe_flexible_toggle',''),(117935,40311,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(117936,40311,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(117937,40311,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(117938,40311,'blocks_7_options_theme','#ffffff'),(117939,40311,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(117940,40311,'blocks_7_options_state','0'),(117941,40311,'_blocks_7_options_state','field_6239fcb7508c5'),(117942,40311,'blocks_7_options',''),(117943,40311,'_blocks_7_options','field_6177e2991ac44'),(117944,40311,'blocks_7_content_title',''),(117945,40311,'_blocks_7_content_title','field_64d237e8bb1e2'),(117946,40311,'blocks_7_content_heading','Frequently asked questions'),(117947,40311,'_blocks_7_content_heading','field_64d237e8bb1e3'),(117948,40311,'blocks_7_content_text',''),(117949,40311,'_blocks_7_content_text','field_64d237e8bb1e4'),(117950,40311,'blocks_7_content_actions',''),(117951,40311,'_blocks_7_content_actions','field_64d237e8bb1e5'),(117952,40311,'blocks_7_content_align','left'),(117953,40311,'_blocks_7_content_align','field_64d2443e6b6aa'),(117954,40311,'blocks_7_content',''),(117955,40311,'_blocks_7_content','field_64d237e8bb1e1'),(117956,40311,'blocks_7_accordion_content','faqs'),(117957,40311,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(117958,40311,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(117959,40311,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(117960,40311,'blocks_7_actions',''),(117961,40311,'_blocks_7_actions','field_61a746a817f7a'),(117962,40311,'blocks_8_acfe_flexible_toggle',''),(117963,40311,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(117964,40311,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(117965,40311,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(117966,40311,'blocks_8_options_alignment','center'),(117967,40311,'_blocks_8_options_alignment','field_61769449f5490'),(117968,40311,'blocks_8_options',''),(117969,40311,'_blocks_8_options','field_617693e1428f0'),(117970,40311,'blocks_8_promo_panel_image','39035'),(117971,40311,'_blocks_8_promo_panel_image','field_617693e1428f3'),(117972,40311,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(117973,40311,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(117974,40311,'blocks_8_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(117975,40311,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(117976,40311,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(117977,40311,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(117978,40311,'blocks_8_promo_panel_content_actions','1'),(117979,40311,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(117980,40311,'blocks_8_promo_panel_content',''),(117981,40311,'_blocks_8_promo_panel_content','field_617693e1428f4'),(117982,40311,'hide_hero','0'),(117983,40311,'_hide_hero','field_66a2380fcda39'),(117984,40312,'hero_style','default'),(117985,40312,'_hero_style','field_62051d9dc5324'),(117986,40312,'hero_image_pos_x','right'),(117987,40312,'_hero_image_pos_x','field_62ec3d05390bb'),(117988,40312,'hero_image_pos_y','top'),(117989,40312,'_hero_image_pos_y','field_62ec3d05390bc'),(117990,40312,'hero_image_pos',''),(117991,40312,'_hero_image_pos','field_62ec3d05390ba'),(117992,40312,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(117993,40312,'_hero_title','field_617571fe285e8'),(117994,40312,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(117995,40312,'_hero_text','field_6175723c285e9'),(117996,40312,'hero_actions','1'),(117997,40312,'_hero_actions','field_61757270285ea'),(117998,40312,'hero_icon',''),(117999,40312,'_hero_icon','field_61a6182199d03'),(118000,40312,'fft_hide_from_listings','0'),(118001,40312,'_fft_hide_from_listings','field_61f1320446ab2'),(118002,40312,'fft_page_format','default'),(118003,40312,'_fft_page_format','field_61ae213f1f218'),(118004,40312,'fft_hide_nav','1'),(118005,40312,'_fft_hide_nav','field_635bd5e43527c'),(118006,40312,'fft_hide_header_call_to_action','0'),(118007,40312,'_fft_hide_header_call_to_action','field_635bd6723527d'),(118008,40312,'fft_page_sitemap','1'),(118009,40312,'_fft_page_sitemap','field_61af9b34e8181'),(118010,40312,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(118011,40312,'_blocks','field_6176696113096'),(118012,40312,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39043-3\";s:6:\"target\";s:6:\"_blank\";}'),(118013,40312,'_hero_actions_0_button','field_61757281285eb'),(118014,40312,'_thumbnail_id','40310'),(118015,40312,'__thumbnail_id','field_617570855ddaf'),(118016,40312,'blocks_0_acfe_flexible_toggle',''),(118017,40312,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(118018,40312,'blocks_0_acfe_flexible_layout_title','Icons'),(118019,40312,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(118020,40312,'blocks_0_options_theme','#ffffff'),(118021,40312,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(118022,40312,'blocks_0_options_format','row'),(118023,40312,'_blocks_0_options_format','field_64bfde9a90690'),(118024,40312,'blocks_0_options',''),(118025,40312,'_blocks_0_options','field_64bfdd9b90684'),(118026,40312,'blocks_0_icon_row_items_0_icon','qualification.svg'),(118027,40312,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(118028,40312,'blocks_0_icon_row_items_0_label','Course Type'),(118029,40312,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(118030,40312,'blocks_0_icon_row_items_0_text','Blended Learning'),(118031,40312,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(118032,40312,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(118033,40312,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(118034,40312,'blocks_0_icon_row_items_1_label','Qualification'),(118035,40312,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(118036,40312,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(118037,40312,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(118038,40312,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(118039,40312,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(118040,40312,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(118041,40312,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(118042,40312,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(118043,40312,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(118044,40312,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(118045,40312,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(118046,40312,'blocks_0_icon_row_items_3_label','IBA Registered'),(118047,40312,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(118048,40312,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(118049,40312,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(118050,40312,'blocks_0_icon_row_items','4'),(118051,40312,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(118052,40312,'blocks_1_acfe_flexible_toggle',''),(118053,40312,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(118054,40312,'blocks_1_acfe_flexible_layout_title','Form'),(118055,40312,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(118056,40312,'blocks_1_row_content_format','promotion'),(118057,40312,'_blocks_1_row_content_format','field_6481ead962881'),(118058,40312,'blocks_1_row_content_title',''),(118059,40312,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(118060,40312,'blocks_1_row_content_heading',''),(118061,40312,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(118062,40312,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(118063,40312,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(118064,40312,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(118065,40312,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(118066,40312,'blocks_1_row_content_actions','1'),(118067,40312,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(118068,40312,'blocks_1_row_content',''),(118069,40312,'_blocks_1_row_content','field_61a0f5f5b3db0'),(118070,40312,'blocks_1_row_form',''),(118071,40312,'_blocks_1_row_form','field_61a4ff2c0b08e'),(118072,40312,'blocks_1_row_form_button_label',''),(118073,40312,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(118074,40312,'blocks_1_row_content_promotion_label','Up to 10% Off'),(118075,40312,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(118076,40312,'blocks_1_row_content_promotion_heading','For Event Attendees '),(118077,40312,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(118078,40312,'blocks_1_row_content_promotion_value','10%'),(118079,40312,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(118080,40312,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(118081,40312,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(118082,40312,'blocks_1_row_content_promotion',''),(118083,40312,'_blocks_1_row_content_promotion','field_6481eb3962882'),(118084,40312,'blocks_1_row_form_title','EMD UK Referral'),(118085,40312,'_blocks_1_row_form_title','field_64872db5127af'),(118086,40312,'blocks_2_acfe_flexible_toggle',''),(118087,40312,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(118088,40312,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(118089,40312,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(118090,40312,'blocks_2_size','large'),(118091,40312,'_blocks_2_size','field_6487038f297c1'),(118092,40312,'blocks_2_row_content_title',''),(118093,40312,'_blocks_2_row_content_title','field_64870132a865d'),(118094,40312,'blocks_2_row_content_heading','Course Overview'),(118095,40312,'_blocks_2_row_content_heading','field_64870142a865e'),(118096,40312,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(118097,40312,'_blocks_2_row_content_text','field_64870148a865f'),(118098,40312,'blocks_2_row_content',''),(118099,40312,'_blocks_2_row_content','field_6487008ba865c'),(118100,40312,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(118101,40312,'_blocks_2_video_src','field_6193c4a98ec07'),(118102,40312,'blocks_2_video_thumbnail','38998'),(118103,40312,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(118104,40312,'blocks_3_acfe_flexible_toggle',''),(118105,40312,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(118106,40312,'blocks_3_acfe_flexible_layout_title','Partnership section'),(118107,40312,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(118108,40312,'blocks_3_options_theme','#ffffff'),(118109,40312,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(118110,40312,'blocks_3_options_reverse','0'),(118111,40312,'_blocks_3_options_reverse','field_61768049bb8ac'),(118112,40312,'blocks_3_options',''),(118113,40312,'_blocks_3_options','field_617682517c334'),(118114,40312,'blocks_3_split_5050_image','39051'),(118115,40312,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(118116,40312,'blocks_3_split_5050_video',''),(118117,40312,'_blocks_3_split_5050_video','field_6239f3160848a'),(118118,40312,'blocks_3_split_5050_content_title',''),(118119,40312,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(118120,40312,'blocks_3_split_5050_content_heading','Working in Partnership'),(118121,40312,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(118122,40312,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(118123,40312,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(118124,40312,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118125,40312,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(118126,40312,'blocks_3_split_5050_content_actions','1'),(118127,40312,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(118128,40312,'blocks_3_split_5050_content',''),(118129,40312,'_blocks_3_split_5050_content','field_61767afceb8ba'),(118130,40312,'blocks_4_acfe_flexible_toggle',''),(118131,40312,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(118132,40312,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(118133,40312,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(118134,40312,'blocks_4_content','<h2 style=\"text-align: center;\">Learn More About the Course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics Coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(118135,40312,'_blocks_4_content','field_6193c9b5eac84'),(118136,40312,'blocks_5_acfe_flexible_toggle',''),(118137,40312,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(118138,40312,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(118139,40312,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(118140,40312,'blocks_5_options_theme','#ffffff'),(118141,40312,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(118142,40312,'blocks_5_options',''),(118143,40312,'_blocks_5_options','field_6177cfcd8140f'),(118144,40312,'blocks_5_tabs_0_tab_label','What\'s Included'),(118145,40312,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(118146,40312,'blocks_5_tabs_0_tab_content_title',''),(118147,40312,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(118148,40312,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(118149,40312,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(118150,40312,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(118151,40312,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(118152,40312,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118153,40312,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(118154,40312,'blocks_5_tabs_0_tab_content_actions','1'),(118155,40312,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(118156,40312,'blocks_5_tabs_0_tab_content',''),(118157,40312,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(118158,40312,'blocks_5_tabs_0_tab_image','39009'),(118159,40312,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(118160,40312,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(118161,40312,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(118162,40312,'blocks_5_tabs_1_tab_content_title',''),(118163,40312,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(118164,40312,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(118165,40312,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(118166,40312,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(118167,40312,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(118168,40312,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118169,40312,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(118170,40312,'blocks_5_tabs_1_tab_content_actions','1'),(118171,40312,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(118172,40312,'blocks_5_tabs_1_tab_content',''),(118173,40312,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(118174,40312,'blocks_5_tabs_1_tab_image','31067'),(118175,40312,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(118176,40312,'blocks_5_tabs','2'),(118177,40312,'_blocks_5_tabs','field_6177cff281419'),(118178,40312,'blocks_6_acfe_flexible_toggle',''),(118179,40312,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(118180,40312,'blocks_6_acfe_flexible_layout_title','About Rachel'),(118181,40312,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(118182,40312,'blocks_6_options_theme','#ffffff'),(118183,40312,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(118184,40312,'blocks_6_options_reverse','0'),(118185,40312,'_blocks_6_options_reverse','field_61768049bb8ac'),(118186,40312,'blocks_6_options',''),(118187,40312,'_blocks_6_options','field_617682517c334'),(118188,40312,'blocks_6_split_5050_image','39052'),(118189,40312,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(118190,40312,'blocks_6_split_5050_video',''),(118191,40312,'_blocks_6_split_5050_video','field_6239f3160848a'),(118192,40312,'blocks_6_split_5050_content_title',''),(118193,40312,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(118194,40312,'blocks_6_split_5050_content_heading','Rachel France'),(118195,40312,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(118196,40312,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(118197,40312,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(118198,40312,'blocks_6_split_5050_content_actions',''),(118199,40312,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(118200,40312,'blocks_6_split_5050_content',''),(118201,40312,'_blocks_6_split_5050_content','field_61767afceb8ba'),(118202,40312,'blocks_7_acfe_flexible_toggle',''),(118203,40312,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(118204,40312,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(118205,40312,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(118206,40312,'blocks_7_options_theme','#ffffff'),(118207,40312,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(118208,40312,'blocks_7_options_state','0'),(118209,40312,'_blocks_7_options_state','field_6239fcb7508c5'),(118210,40312,'blocks_7_options',''),(118211,40312,'_blocks_7_options','field_6177e2991ac44'),(118212,40312,'blocks_7_content_title',''),(118213,40312,'_blocks_7_content_title','field_64d237e8bb1e2'),(118214,40312,'blocks_7_content_heading','Frequently asked questions'),(118215,40312,'_blocks_7_content_heading','field_64d237e8bb1e3'),(118216,40312,'blocks_7_content_text',''),(118217,40312,'_blocks_7_content_text','field_64d237e8bb1e4'),(118218,40312,'blocks_7_content_actions',''),(118219,40312,'_blocks_7_content_actions','field_64d237e8bb1e5'),(118220,40312,'blocks_7_content_align','left'),(118221,40312,'_blocks_7_content_align','field_64d2443e6b6aa'),(118222,40312,'blocks_7_content',''),(118223,40312,'_blocks_7_content','field_64d237e8bb1e1'),(118224,40312,'blocks_7_accordion_content','faqs'),(118225,40312,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(118226,40312,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(118227,40312,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(118228,40312,'blocks_7_actions',''),(118229,40312,'_blocks_7_actions','field_61a746a817f7a'),(118230,40312,'blocks_8_acfe_flexible_toggle',''),(118231,40312,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(118232,40312,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(118233,40312,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(118234,40312,'blocks_8_options_alignment','center'),(118235,40312,'_blocks_8_options_alignment','field_61769449f5490'),(118236,40312,'blocks_8_options',''),(118237,40312,'_blocks_8_options','field_617693e1428f0'),(118238,40312,'blocks_8_promo_panel_image','39035'),(118239,40312,'_blocks_8_promo_panel_image','field_617693e1428f3'),(118240,40312,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(118241,40312,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(118242,40312,'blocks_8_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(118243,40312,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(118244,40312,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118245,40312,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(118246,40312,'blocks_8_promo_panel_content_actions','1'),(118247,40312,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(118248,40312,'blocks_8_promo_panel_content',''),(118249,40312,'_blocks_8_promo_panel_content','field_617693e1428f4'),(118250,40312,'hide_hero','0'),(118251,40312,'_hide_hero','field_66a2380fcda39'),(118252,40313,'hero_style','default'),(118253,40313,'_hero_style','field_62051d9dc5324'),(118254,40313,'hero_image_pos_x','right'),(118255,40313,'_hero_image_pos_x','field_62ec3d05390bb'),(118256,40313,'hero_image_pos_y','top'),(118257,40313,'_hero_image_pos_y','field_62ec3d05390bc'),(118258,40313,'hero_image_pos',''),(118259,40313,'_hero_image_pos','field_62ec3d05390ba'),(118260,40313,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(118261,40313,'_hero_title','field_617571fe285e8'),(118262,40313,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(118263,40313,'_hero_text','field_6175723c285e9'),(118264,40313,'hero_actions','1'),(118265,40313,'_hero_actions','field_61757270285ea'),(118266,40313,'hero_icon',''),(118267,40313,'_hero_icon','field_61a6182199d03'),(118268,40313,'fft_hide_from_listings','0'),(118269,40313,'_fft_hide_from_listings','field_61f1320446ab2'),(118270,40313,'fft_page_format','default'),(118271,40313,'_fft_page_format','field_61ae213f1f218'),(118272,40313,'fft_hide_nav','1'),(118273,40313,'_fft_hide_nav','field_635bd5e43527c'),(118274,40313,'fft_hide_header_call_to_action','0'),(118275,40313,'_fft_hide_header_call_to_action','field_635bd6723527d'),(118276,40313,'fft_page_sitemap','1'),(118277,40313,'_fft_page_sitemap','field_61af9b34e8181'),(118278,40313,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(118279,40313,'_blocks','field_6176696113096'),(118280,40313,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39043-3\";s:6:\"target\";s:6:\"_blank\";}'),(118281,40313,'_hero_actions_0_button','field_61757281285eb'),(118282,40313,'_thumbnail_id','40310'),(118283,40313,'__thumbnail_id','field_617570855ddaf'),(118284,40313,'blocks_0_acfe_flexible_toggle',''),(118285,40313,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(118286,40313,'blocks_0_acfe_flexible_layout_title','Icons'),(118287,40313,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(118288,40313,'blocks_0_options_theme','#ffffff'),(118289,40313,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(118290,40313,'blocks_0_options_format','row'),(118291,40313,'_blocks_0_options_format','field_64bfde9a90690'),(118292,40313,'blocks_0_options',''),(118293,40313,'_blocks_0_options','field_64bfdd9b90684'),(118294,40313,'blocks_0_icon_row_items_0_icon','qualification.svg'),(118295,40313,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(118296,40313,'blocks_0_icon_row_items_0_label','Course Type'),(118297,40313,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(118298,40313,'blocks_0_icon_row_items_0_text','Blended Learning'),(118299,40313,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(118300,40313,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(118301,40313,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(118302,40313,'blocks_0_icon_row_items_1_label','Qualification'),(118303,40313,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(118304,40313,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(118305,40313,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(118306,40313,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(118307,40313,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(118308,40313,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(118309,40313,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(118310,40313,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(118311,40313,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(118312,40313,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(118313,40313,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(118314,40313,'blocks_0_icon_row_items_3_label','IBA Registered'),(118315,40313,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(118316,40313,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(118317,40313,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(118318,40313,'blocks_0_icon_row_items','4'),(118319,40313,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(118320,40313,'blocks_1_acfe_flexible_toggle',''),(118321,40313,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(118322,40313,'blocks_1_acfe_flexible_layout_title','Form'),(118323,40313,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(118324,40313,'blocks_1_row_content_format','promotion'),(118325,40313,'_blocks_1_row_content_format','field_6481ead962881'),(118326,40313,'blocks_1_row_content_title',''),(118327,40313,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(118328,40313,'blocks_1_row_content_heading',''),(118329,40313,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(118330,40313,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(118331,40313,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(118332,40313,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(118333,40313,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(118334,40313,'blocks_1_row_content_actions','1'),(118335,40313,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(118336,40313,'blocks_1_row_content',''),(118337,40313,'_blocks_1_row_content','field_61a0f5f5b3db0'),(118338,40313,'blocks_1_row_form',''),(118339,40313,'_blocks_1_row_form','field_61a4ff2c0b08e'),(118340,40313,'blocks_1_row_form_button_label',''),(118341,40313,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(118342,40313,'blocks_1_row_content_promotion_label','Up to 10% Off'),(118343,40313,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(118344,40313,'blocks_1_row_content_promotion_heading','Up to 10% Off For Event Attendees '),(118345,40313,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(118346,40313,'blocks_1_row_content_promotion_value','10%'),(118347,40313,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(118348,40313,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(118349,40313,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(118350,40313,'blocks_1_row_content_promotion',''),(118351,40313,'_blocks_1_row_content_promotion','field_6481eb3962882'),(118352,40313,'blocks_1_row_form_title','EMD UK Referral'),(118353,40313,'_blocks_1_row_form_title','field_64872db5127af'),(118354,40313,'blocks_2_acfe_flexible_toggle',''),(118355,40313,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(118356,40313,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(118357,40313,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(118358,40313,'blocks_2_size','large'),(118359,40313,'_blocks_2_size','field_6487038f297c1'),(118360,40313,'blocks_2_row_content_title',''),(118361,40313,'_blocks_2_row_content_title','field_64870132a865d'),(118362,40313,'blocks_2_row_content_heading','Course Overview'),(118363,40313,'_blocks_2_row_content_heading','field_64870142a865e'),(118364,40313,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(118365,40313,'_blocks_2_row_content_text','field_64870148a865f'),(118366,40313,'blocks_2_row_content',''),(118367,40313,'_blocks_2_row_content','field_6487008ba865c'),(118368,40313,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(118369,40313,'_blocks_2_video_src','field_6193c4a98ec07'),(118370,40313,'blocks_2_video_thumbnail','38998'),(118371,40313,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(118372,40313,'blocks_3_acfe_flexible_toggle',''),(118373,40313,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(118374,40313,'blocks_3_acfe_flexible_layout_title','Partnership section'),(118375,40313,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(118376,40313,'blocks_3_options_theme','#ffffff'),(118377,40313,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(118378,40313,'blocks_3_options_reverse','0'),(118379,40313,'_blocks_3_options_reverse','field_61768049bb8ac'),(118380,40313,'blocks_3_options',''),(118381,40313,'_blocks_3_options','field_617682517c334'),(118382,40313,'blocks_3_split_5050_image','39051'),(118383,40313,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(118384,40313,'blocks_3_split_5050_video',''),(118385,40313,'_blocks_3_split_5050_video','field_6239f3160848a'),(118386,40313,'blocks_3_split_5050_content_title',''),(118387,40313,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(118388,40313,'blocks_3_split_5050_content_heading','Working in Partnership'),(118389,40313,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(118390,40313,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(118391,40313,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(118392,40313,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118393,40313,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(118394,40313,'blocks_3_split_5050_content_actions','1'),(118395,40313,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(118396,40313,'blocks_3_split_5050_content',''),(118397,40313,'_blocks_3_split_5050_content','field_61767afceb8ba'),(118398,40313,'blocks_4_acfe_flexible_toggle',''),(118399,40313,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(118400,40313,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(118401,40313,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(118402,40313,'blocks_4_content','<h2 style=\"text-align: center;\">Learn More About the Course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics Coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(118403,40313,'_blocks_4_content','field_6193c9b5eac84'),(118404,40313,'blocks_5_acfe_flexible_toggle',''),(118405,40313,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(118406,40313,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(118407,40313,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(118408,40313,'blocks_5_options_theme','#ffffff'),(118409,40313,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(118410,40313,'blocks_5_options',''),(118411,40313,'_blocks_5_options','field_6177cfcd8140f'),(118412,40313,'blocks_5_tabs_0_tab_label','What\'s Included'),(118413,40313,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(118414,40313,'blocks_5_tabs_0_tab_content_title',''),(118415,40313,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(118416,40313,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(118417,40313,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(118418,40313,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(118419,40313,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(118420,40313,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118421,40313,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(118422,40313,'blocks_5_tabs_0_tab_content_actions','1'),(118423,40313,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(118424,40313,'blocks_5_tabs_0_tab_content',''),(118425,40313,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(118426,40313,'blocks_5_tabs_0_tab_image','39009'),(118427,40313,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(118428,40313,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(118429,40313,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(118430,40313,'blocks_5_tabs_1_tab_content_title',''),(118431,40313,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(118432,40313,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(118433,40313,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(118434,40313,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(118435,40313,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(118436,40313,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118437,40313,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(118438,40313,'blocks_5_tabs_1_tab_content_actions','1'),(118439,40313,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(118440,40313,'blocks_5_tabs_1_tab_content',''),(118441,40313,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(118442,40313,'blocks_5_tabs_1_tab_image','31067'),(118443,40313,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(118444,40313,'blocks_5_tabs','2'),(118445,40313,'_blocks_5_tabs','field_6177cff281419'),(118446,40313,'blocks_6_acfe_flexible_toggle',''),(118447,40313,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(118448,40313,'blocks_6_acfe_flexible_layout_title','About Rachel'),(118449,40313,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(118450,40313,'blocks_6_options_theme','#ffffff'),(118451,40313,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(118452,40313,'blocks_6_options_reverse','0'),(118453,40313,'_blocks_6_options_reverse','field_61768049bb8ac'),(118454,40313,'blocks_6_options',''),(118455,40313,'_blocks_6_options','field_617682517c334'),(118456,40313,'blocks_6_split_5050_image','39052'),(118457,40313,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(118458,40313,'blocks_6_split_5050_video',''),(118459,40313,'_blocks_6_split_5050_video','field_6239f3160848a'),(118460,40313,'blocks_6_split_5050_content_title',''),(118461,40313,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(118462,40313,'blocks_6_split_5050_content_heading','Rachel France'),(118463,40313,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(118464,40313,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(118465,40313,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(118466,40313,'blocks_6_split_5050_content_actions',''),(118467,40313,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(118468,40313,'blocks_6_split_5050_content',''),(118469,40313,'_blocks_6_split_5050_content','field_61767afceb8ba'),(118470,40313,'blocks_7_acfe_flexible_toggle',''),(118471,40313,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(118472,40313,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(118473,40313,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(118474,40313,'blocks_7_options_theme','#ffffff'),(118475,40313,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(118476,40313,'blocks_7_options_state','0'),(118477,40313,'_blocks_7_options_state','field_6239fcb7508c5'),(118478,40313,'blocks_7_options',''),(118479,40313,'_blocks_7_options','field_6177e2991ac44'),(118480,40313,'blocks_7_content_title',''),(118481,40313,'_blocks_7_content_title','field_64d237e8bb1e2'),(118482,40313,'blocks_7_content_heading','Frequently asked questions'),(118483,40313,'_blocks_7_content_heading','field_64d237e8bb1e3'),(118484,40313,'blocks_7_content_text',''),(118485,40313,'_blocks_7_content_text','field_64d237e8bb1e4'),(118486,40313,'blocks_7_content_actions',''),(118487,40313,'_blocks_7_content_actions','field_64d237e8bb1e5'),(118488,40313,'blocks_7_content_align','left'),(118489,40313,'_blocks_7_content_align','field_64d2443e6b6aa'),(118490,40313,'blocks_7_content',''),(118491,40313,'_blocks_7_content','field_64d237e8bb1e1'),(118492,40313,'blocks_7_accordion_content','faqs'),(118493,40313,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(118494,40313,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(118495,40313,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(118496,40313,'blocks_7_actions',''),(118497,40313,'_blocks_7_actions','field_61a746a817f7a'),(118498,40313,'blocks_8_acfe_flexible_toggle',''),(118499,40313,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(118500,40313,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(118501,40313,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(118502,40313,'blocks_8_options_alignment','center'),(118503,40313,'_blocks_8_options_alignment','field_61769449f5490'),(118504,40313,'blocks_8_options',''),(118505,40313,'_blocks_8_options','field_617693e1428f0'),(118506,40313,'blocks_8_promo_panel_image','39035'),(118507,40313,'_blocks_8_promo_panel_image','field_617693e1428f3'),(118508,40313,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(118509,40313,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(118510,40313,'blocks_8_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(118511,40313,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(118512,40313,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118513,40313,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(118514,40313,'blocks_8_promo_panel_content_actions','1'),(118515,40313,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(118516,40313,'blocks_8_promo_panel_content',''),(118517,40313,'_blocks_8_promo_panel_content','field_617693e1428f4'),(118518,40313,'hide_hero','0'),(118519,40313,'_hide_hero','field_66a2380fcda39'),(118520,40314,'hero_style','default'),(118521,40314,'_hero_style','field_62051d9dc5324'),(118522,40314,'hero_image_pos_x','right'),(118523,40314,'_hero_image_pos_x','field_62ec3d05390bb'),(118524,40314,'hero_image_pos_y','top'),(118525,40314,'_hero_image_pos_y','field_62ec3d05390bc'),(118526,40314,'hero_image_pos',''),(118527,40314,'_hero_image_pos','field_62ec3d05390ba'),(118528,40314,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(118529,40314,'_hero_title','field_617571fe285e8'),(118530,40314,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(118531,40314,'_hero_text','field_6175723c285e9'),(118532,40314,'hero_actions','1'),(118533,40314,'_hero_actions','field_61757270285ea'),(118534,40314,'hero_icon',''),(118535,40314,'_hero_icon','field_61a6182199d03'),(118536,40314,'fft_hide_from_listings','0'),(118537,40314,'_fft_hide_from_listings','field_61f1320446ab2'),(118538,40314,'fft_page_format','default'),(118539,40314,'_fft_page_format','field_61ae213f1f218'),(118540,40314,'fft_hide_nav','1'),(118541,40314,'_fft_hide_nav','field_635bd5e43527c'),(118542,40314,'fft_hide_header_call_to_action','0'),(118543,40314,'_fft_hide_header_call_to_action','field_635bd6723527d'),(118544,40314,'fft_page_sitemap','1'),(118545,40314,'_fft_page_sitemap','field_61af9b34e8181'),(118546,40314,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(118547,40314,'_blocks','field_6176696113096'),(118548,40314,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39043-3\";s:6:\"target\";s:6:\"_blank\";}'),(118549,40314,'_hero_actions_0_button','field_61757281285eb'),(118550,40314,'_thumbnail_id','40310'),(118551,40314,'__thumbnail_id','field_617570855ddaf'),(118552,40314,'blocks_0_acfe_flexible_toggle',''),(118553,40314,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(118554,40314,'blocks_0_acfe_flexible_layout_title','Icons'),(118555,40314,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(118556,40314,'blocks_0_options_theme','#ffffff'),(118557,40314,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(118558,40314,'blocks_0_options_format','row'),(118559,40314,'_blocks_0_options_format','field_64bfde9a90690'),(118560,40314,'blocks_0_options',''),(118561,40314,'_blocks_0_options','field_64bfdd9b90684'),(118562,40314,'blocks_0_icon_row_items_0_icon','qualification.svg'),(118563,40314,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(118564,40314,'blocks_0_icon_row_items_0_label','Course Type'),(118565,40314,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(118566,40314,'blocks_0_icon_row_items_0_text','Blended Learning'),(118567,40314,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(118568,40314,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(118569,40314,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(118570,40314,'blocks_0_icon_row_items_1_label','Qualification'),(118571,40314,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(118572,40314,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(118573,40314,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(118574,40314,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(118575,40314,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(118576,40314,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(118577,40314,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(118578,40314,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(118579,40314,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(118580,40314,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(118581,40314,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(118582,40314,'blocks_0_icon_row_items_3_label','IBA Registered'),(118583,40314,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(118584,40314,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(118585,40314,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(118586,40314,'blocks_0_icon_row_items','4'),(118587,40314,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(118588,40314,'blocks_1_acfe_flexible_toggle',''),(118589,40314,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(118590,40314,'blocks_1_acfe_flexible_layout_title','Form'),(118591,40314,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(118592,40314,'blocks_1_row_content_format','promotion'),(118593,40314,'_blocks_1_row_content_format','field_6481ead962881'),(118594,40314,'blocks_1_row_content_title',''),(118595,40314,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(118596,40314,'blocks_1_row_content_heading',''),(118597,40314,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(118598,40314,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(118599,40314,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(118600,40314,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(118601,40314,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(118602,40314,'blocks_1_row_content_actions','1'),(118603,40314,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(118604,40314,'blocks_1_row_content',''),(118605,40314,'_blocks_1_row_content','field_61a0f5f5b3db0'),(118606,40314,'blocks_1_row_form',''),(118607,40314,'_blocks_1_row_form','field_61a4ff2c0b08e'),(118608,40314,'blocks_1_row_form_button_label',''),(118609,40314,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(118610,40314,'blocks_1_row_content_promotion_label','10%'),(118611,40314,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(118612,40314,'blocks_1_row_content_promotion_heading','Up to 10% Off For Event Attendees '),(118613,40314,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(118614,40314,'blocks_1_row_content_promotion_value','10%'),(118615,40314,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(118616,40314,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(118617,40314,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(118618,40314,'blocks_1_row_content_promotion',''),(118619,40314,'_blocks_1_row_content_promotion','field_6481eb3962882'),(118620,40314,'blocks_1_row_form_title','EMD UK Referral'),(118621,40314,'_blocks_1_row_form_title','field_64872db5127af'),(118622,40314,'blocks_2_acfe_flexible_toggle',''),(118623,40314,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(118624,40314,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(118625,40314,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(118626,40314,'blocks_2_size','large'),(118627,40314,'_blocks_2_size','field_6487038f297c1'),(118628,40314,'blocks_2_row_content_title',''),(118629,40314,'_blocks_2_row_content_title','field_64870132a865d'),(118630,40314,'blocks_2_row_content_heading','Course Overview'),(118631,40314,'_blocks_2_row_content_heading','field_64870142a865e'),(118632,40314,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(118633,40314,'_blocks_2_row_content_text','field_64870148a865f'),(118634,40314,'blocks_2_row_content',''),(118635,40314,'_blocks_2_row_content','field_6487008ba865c'),(118636,40314,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(118637,40314,'_blocks_2_video_src','field_6193c4a98ec07'),(118638,40314,'blocks_2_video_thumbnail','38998'),(118639,40314,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(118640,40314,'blocks_3_acfe_flexible_toggle',''),(118641,40314,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(118642,40314,'blocks_3_acfe_flexible_layout_title','Partnership section'),(118643,40314,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(118644,40314,'blocks_3_options_theme','#ffffff'),(118645,40314,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(118646,40314,'blocks_3_options_reverse','0'),(118647,40314,'_blocks_3_options_reverse','field_61768049bb8ac'),(118648,40314,'blocks_3_options',''),(118649,40314,'_blocks_3_options','field_617682517c334'),(118650,40314,'blocks_3_split_5050_image','39051'),(118651,40314,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(118652,40314,'blocks_3_split_5050_video',''),(118653,40314,'_blocks_3_split_5050_video','field_6239f3160848a'),(118654,40314,'blocks_3_split_5050_content_title',''),(118655,40314,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(118656,40314,'blocks_3_split_5050_content_heading','Working in Partnership'),(118657,40314,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(118658,40314,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(118659,40314,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(118660,40314,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118661,40314,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(118662,40314,'blocks_3_split_5050_content_actions','1'),(118663,40314,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(118664,40314,'blocks_3_split_5050_content',''),(118665,40314,'_blocks_3_split_5050_content','field_61767afceb8ba'),(118666,40314,'blocks_4_acfe_flexible_toggle',''),(118667,40314,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(118668,40314,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(118669,40314,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(118670,40314,'blocks_4_content','<h2 style=\"text-align: center;\">Learn More About the Course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics Coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(118671,40314,'_blocks_4_content','field_6193c9b5eac84'),(118672,40314,'blocks_5_acfe_flexible_toggle',''),(118673,40314,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(118674,40314,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(118675,40314,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(118676,40314,'blocks_5_options_theme','#ffffff'),(118677,40314,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(118678,40314,'blocks_5_options',''),(118679,40314,'_blocks_5_options','field_6177cfcd8140f'),(118680,40314,'blocks_5_tabs_0_tab_label','What\'s Included'),(118681,40314,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(118682,40314,'blocks_5_tabs_0_tab_content_title',''),(118683,40314,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(118684,40314,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(118685,40314,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(118686,40314,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(118687,40314,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(118688,40314,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118689,40314,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(118690,40314,'blocks_5_tabs_0_tab_content_actions','1'),(118691,40314,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(118692,40314,'blocks_5_tabs_0_tab_content',''),(118693,40314,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(118694,40314,'blocks_5_tabs_0_tab_image','39009'),(118695,40314,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(118696,40314,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(118697,40314,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(118698,40314,'blocks_5_tabs_1_tab_content_title',''),(118699,40314,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(118700,40314,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(118701,40314,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(118702,40314,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(118703,40314,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(118704,40314,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118705,40314,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(118706,40314,'blocks_5_tabs_1_tab_content_actions','1'),(118707,40314,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(118708,40314,'blocks_5_tabs_1_tab_content',''),(118709,40314,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(118710,40314,'blocks_5_tabs_1_tab_image','31067'),(118711,40314,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(118712,40314,'blocks_5_tabs','2'),(118713,40314,'_blocks_5_tabs','field_6177cff281419'),(118714,40314,'blocks_6_acfe_flexible_toggle',''),(118715,40314,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(118716,40314,'blocks_6_acfe_flexible_layout_title','About Rachel'),(118717,40314,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(118718,40314,'blocks_6_options_theme','#ffffff'),(118719,40314,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(118720,40314,'blocks_6_options_reverse','0'),(118721,40314,'_blocks_6_options_reverse','field_61768049bb8ac'),(118722,40314,'blocks_6_options',''),(118723,40314,'_blocks_6_options','field_617682517c334'),(118724,40314,'blocks_6_split_5050_image','39052'),(118725,40314,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(118726,40314,'blocks_6_split_5050_video',''),(118727,40314,'_blocks_6_split_5050_video','field_6239f3160848a'),(118728,40314,'blocks_6_split_5050_content_title',''),(118729,40314,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(118730,40314,'blocks_6_split_5050_content_heading','Rachel France'),(118731,40314,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(118732,40314,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(118733,40314,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(118734,40314,'blocks_6_split_5050_content_actions',''),(118735,40314,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(118736,40314,'blocks_6_split_5050_content',''),(118737,40314,'_blocks_6_split_5050_content','field_61767afceb8ba'),(118738,40314,'blocks_7_acfe_flexible_toggle',''),(118739,40314,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(118740,40314,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(118741,40314,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(118742,40314,'blocks_7_options_theme','#ffffff'),(118743,40314,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(118744,40314,'blocks_7_options_state','0'),(118745,40314,'_blocks_7_options_state','field_6239fcb7508c5'),(118746,40314,'blocks_7_options',''),(118747,40314,'_blocks_7_options','field_6177e2991ac44'),(118748,40314,'blocks_7_content_title',''),(118749,40314,'_blocks_7_content_title','field_64d237e8bb1e2'),(118750,40314,'blocks_7_content_heading','Frequently asked questions'),(118751,40314,'_blocks_7_content_heading','field_64d237e8bb1e3'),(118752,40314,'blocks_7_content_text',''),(118753,40314,'_blocks_7_content_text','field_64d237e8bb1e4'),(118754,40314,'blocks_7_content_actions',''),(118755,40314,'_blocks_7_content_actions','field_64d237e8bb1e5'),(118756,40314,'blocks_7_content_align','left'),(118757,40314,'_blocks_7_content_align','field_64d2443e6b6aa'),(118758,40314,'blocks_7_content',''),(118759,40314,'_blocks_7_content','field_64d237e8bb1e1'),(118760,40314,'blocks_7_accordion_content','faqs'),(118761,40314,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(118762,40314,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(118763,40314,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(118764,40314,'blocks_7_actions',''),(118765,40314,'_blocks_7_actions','field_61a746a817f7a'),(118766,40314,'blocks_8_acfe_flexible_toggle',''),(118767,40314,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(118768,40314,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(118769,40314,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(118770,40314,'blocks_8_options_alignment','center'),(118771,40314,'_blocks_8_options_alignment','field_61769449f5490'),(118772,40314,'blocks_8_options',''),(118773,40314,'_blocks_8_options','field_617693e1428f0'),(118774,40314,'blocks_8_promo_panel_image','39035'),(118775,40314,'_blocks_8_promo_panel_image','field_617693e1428f3'),(118776,40314,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(118777,40314,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(118778,40314,'blocks_8_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(118779,40314,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(118780,40314,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118781,40314,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(118782,40314,'blocks_8_promo_panel_content_actions','1'),(118783,40314,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(118784,40314,'blocks_8_promo_panel_content',''),(118785,40314,'_blocks_8_promo_panel_content','field_617693e1428f4'),(118786,40314,'hide_hero','0'),(118787,40314,'_hide_hero','field_66a2380fcda39'),(118788,40315,'hero_style','default'),(118789,40315,'_hero_style','field_62051d9dc5324'),(118790,40315,'hero_image_pos_x','right'),(118791,40315,'_hero_image_pos_x','field_62ec3d05390bb'),(118792,40315,'hero_image_pos_y','top'),(118793,40315,'_hero_image_pos_y','field_62ec3d05390bc'),(118794,40315,'hero_image_pos',''),(118795,40315,'_hero_image_pos','field_62ec3d05390ba'),(118796,40315,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(118797,40315,'_hero_title','field_617571fe285e8'),(118798,40315,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(118799,40315,'_hero_text','field_6175723c285e9'),(118800,40315,'hero_actions','1'),(118801,40315,'_hero_actions','field_61757270285ea'),(118802,40315,'hero_icon',''),(118803,40315,'_hero_icon','field_61a6182199d03'),(118804,40315,'fft_hide_from_listings','0'),(118805,40315,'_fft_hide_from_listings','field_61f1320446ab2'),(118806,40315,'fft_page_format','default'),(118807,40315,'_fft_page_format','field_61ae213f1f218'),(118808,40315,'fft_hide_nav','1'),(118809,40315,'_fft_hide_nav','field_635bd5e43527c'),(118810,40315,'fft_hide_header_call_to_action','0'),(118811,40315,'_fft_hide_header_call_to_action','field_635bd6723527d'),(118812,40315,'fft_page_sitemap','1'),(118813,40315,'_fft_page_sitemap','field_61af9b34e8181'),(118814,40315,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(118815,40315,'_blocks','field_6176696113096'),(118816,40315,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39043-3\";s:6:\"target\";s:6:\"_blank\";}'),(118817,40315,'_hero_actions_0_button','field_61757281285eb'),(118818,40315,'_thumbnail_id','40310'),(118819,40315,'__thumbnail_id','field_617570855ddaf'),(118820,40315,'blocks_0_acfe_flexible_toggle',''),(118821,40315,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(118822,40315,'blocks_0_acfe_flexible_layout_title','Icons'),(118823,40315,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(118824,40315,'blocks_0_options_theme','#ffffff'),(118825,40315,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(118826,40315,'blocks_0_options_format','row'),(118827,40315,'_blocks_0_options_format','field_64bfde9a90690'),(118828,40315,'blocks_0_options',''),(118829,40315,'_blocks_0_options','field_64bfdd9b90684'),(118830,40315,'blocks_0_icon_row_items_0_icon','qualification.svg'),(118831,40315,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(118832,40315,'blocks_0_icon_row_items_0_label','Course Type'),(118833,40315,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(118834,40315,'blocks_0_icon_row_items_0_text','Blended Learning'),(118835,40315,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(118836,40315,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(118837,40315,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(118838,40315,'blocks_0_icon_row_items_1_label','Qualification'),(118839,40315,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(118840,40315,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(118841,40315,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(118842,40315,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(118843,40315,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(118844,40315,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(118845,40315,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(118846,40315,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(118847,40315,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(118848,40315,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(118849,40315,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(118850,40315,'blocks_0_icon_row_items_3_label','IBA Registered'),(118851,40315,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(118852,40315,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(118853,40315,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(118854,40315,'blocks_0_icon_row_items','4'),(118855,40315,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(118856,40315,'blocks_1_acfe_flexible_toggle',''),(118857,40315,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(118858,40315,'blocks_1_acfe_flexible_layout_title','Form'),(118859,40315,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(118860,40315,'blocks_1_row_content_format','promotion'),(118861,40315,'_blocks_1_row_content_format','field_6481ead962881'),(118862,40315,'blocks_1_row_content_title',''),(118863,40315,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(118864,40315,'blocks_1_row_content_heading',''),(118865,40315,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(118866,40315,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(118867,40315,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(118868,40315,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(118869,40315,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(118870,40315,'blocks_1_row_content_actions','1'),(118871,40315,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(118872,40315,'blocks_1_row_content',''),(118873,40315,'_blocks_1_row_content','field_61a0f5f5b3db0'),(118874,40315,'blocks_1_row_form',''),(118875,40315,'_blocks_1_row_form','field_61a4ff2c0b08e'),(118876,40315,'blocks_1_row_form_button_label',''),(118877,40315,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(118878,40315,'blocks_1_row_content_promotion_label',''),(118879,40315,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(118880,40315,'blocks_1_row_content_promotion_heading','Up to 10% Off For Event Attendees '),(118881,40315,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(118882,40315,'blocks_1_row_content_promotion_value','10%'),(118883,40315,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(118884,40315,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(118885,40315,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(118886,40315,'blocks_1_row_content_promotion',''),(118887,40315,'_blocks_1_row_content_promotion','field_6481eb3962882'),(118888,40315,'blocks_1_row_form_title','EMD UK Referral'),(118889,40315,'_blocks_1_row_form_title','field_64872db5127af'),(118890,40315,'blocks_2_acfe_flexible_toggle',''),(118891,40315,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(118892,40315,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(118893,40315,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(118894,40315,'blocks_2_size','large'),(118895,40315,'_blocks_2_size','field_6487038f297c1'),(118896,40315,'blocks_2_row_content_title',''),(118897,40315,'_blocks_2_row_content_title','field_64870132a865d'),(118898,40315,'blocks_2_row_content_heading','Course Overview'),(118899,40315,'_blocks_2_row_content_heading','field_64870142a865e'),(118900,40315,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(118901,40315,'_blocks_2_row_content_text','field_64870148a865f'),(118902,40315,'blocks_2_row_content',''),(118903,40315,'_blocks_2_row_content','field_6487008ba865c'),(118904,40315,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(118905,40315,'_blocks_2_video_src','field_6193c4a98ec07'),(118906,40315,'blocks_2_video_thumbnail','38998'),(118907,40315,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(118908,40315,'blocks_3_acfe_flexible_toggle',''),(118909,40315,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(118910,40315,'blocks_3_acfe_flexible_layout_title','Partnership section'),(118911,40315,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(118912,40315,'blocks_3_options_theme','#ffffff'),(118913,40315,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(118914,40315,'blocks_3_options_reverse','0'),(118915,40315,'_blocks_3_options_reverse','field_61768049bb8ac'),(118916,40315,'blocks_3_options',''),(118917,40315,'_blocks_3_options','field_617682517c334'),(118918,40315,'blocks_3_split_5050_image','39051'),(118919,40315,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(118920,40315,'blocks_3_split_5050_video',''),(118921,40315,'_blocks_3_split_5050_video','field_6239f3160848a'),(118922,40315,'blocks_3_split_5050_content_title',''),(118923,40315,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(118924,40315,'blocks_3_split_5050_content_heading','Working in Partnership'),(118925,40315,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(118926,40315,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(118927,40315,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(118928,40315,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118929,40315,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(118930,40315,'blocks_3_split_5050_content_actions','1'),(118931,40315,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(118932,40315,'blocks_3_split_5050_content',''),(118933,40315,'_blocks_3_split_5050_content','field_61767afceb8ba'),(118934,40315,'blocks_4_acfe_flexible_toggle',''),(118935,40315,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(118936,40315,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(118937,40315,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(118938,40315,'blocks_4_content','<h2 style=\"text-align: center;\">Learn More About the Course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics Coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(118939,40315,'_blocks_4_content','field_6193c9b5eac84'),(118940,40315,'blocks_5_acfe_flexible_toggle',''),(118941,40315,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(118942,40315,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(118943,40315,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(118944,40315,'blocks_5_options_theme','#ffffff'),(118945,40315,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(118946,40315,'blocks_5_options',''),(118947,40315,'_blocks_5_options','field_6177cfcd8140f'),(118948,40315,'blocks_5_tabs_0_tab_label','What\'s Included'),(118949,40315,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(118950,40315,'blocks_5_tabs_0_tab_content_title',''),(118951,40315,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(118952,40315,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(118953,40315,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(118954,40315,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(118955,40315,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(118956,40315,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118957,40315,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(118958,40315,'blocks_5_tabs_0_tab_content_actions','1'),(118959,40315,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(118960,40315,'blocks_5_tabs_0_tab_content',''),(118961,40315,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(118962,40315,'blocks_5_tabs_0_tab_image','39009'),(118963,40315,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(118964,40315,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(118965,40315,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(118966,40315,'blocks_5_tabs_1_tab_content_title',''),(118967,40315,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(118968,40315,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(118969,40315,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(118970,40315,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(118971,40315,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(118972,40315,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(118973,40315,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(118974,40315,'blocks_5_tabs_1_tab_content_actions','1'),(118975,40315,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(118976,40315,'blocks_5_tabs_1_tab_content',''),(118977,40315,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(118978,40315,'blocks_5_tabs_1_tab_image','31067'),(118979,40315,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(118980,40315,'blocks_5_tabs','2'),(118981,40315,'_blocks_5_tabs','field_6177cff281419'),(118982,40315,'blocks_6_acfe_flexible_toggle',''),(118983,40315,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(118984,40315,'blocks_6_acfe_flexible_layout_title','About Rachel'),(118985,40315,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(118986,40315,'blocks_6_options_theme','#ffffff'),(118987,40315,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(118988,40315,'blocks_6_options_reverse','0'),(118989,40315,'_blocks_6_options_reverse','field_61768049bb8ac'),(118990,40315,'blocks_6_options',''),(118991,40315,'_blocks_6_options','field_617682517c334'),(118992,40315,'blocks_6_split_5050_image','39052'),(118993,40315,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(118994,40315,'blocks_6_split_5050_video',''),(118995,40315,'_blocks_6_split_5050_video','field_6239f3160848a'),(118996,40315,'blocks_6_split_5050_content_title',''),(118997,40315,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(118998,40315,'blocks_6_split_5050_content_heading','Rachel France'),(118999,40315,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(119000,40315,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(119001,40315,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(119002,40315,'blocks_6_split_5050_content_actions',''),(119003,40315,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(119004,40315,'blocks_6_split_5050_content',''),(119005,40315,'_blocks_6_split_5050_content','field_61767afceb8ba'),(119006,40315,'blocks_7_acfe_flexible_toggle',''),(119007,40315,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(119008,40315,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(119009,40315,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(119010,40315,'blocks_7_options_theme','#ffffff'),(119011,40315,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(119012,40315,'blocks_7_options_state','0'),(119013,40315,'_blocks_7_options_state','field_6239fcb7508c5'),(119014,40315,'blocks_7_options',''),(119015,40315,'_blocks_7_options','field_6177e2991ac44'),(119016,40315,'blocks_7_content_title',''),(119017,40315,'_blocks_7_content_title','field_64d237e8bb1e2'),(119018,40315,'blocks_7_content_heading','Frequently asked questions'),(119019,40315,'_blocks_7_content_heading','field_64d237e8bb1e3'),(119020,40315,'blocks_7_content_text',''),(119021,40315,'_blocks_7_content_text','field_64d237e8bb1e4'),(119022,40315,'blocks_7_content_actions',''),(119023,40315,'_blocks_7_content_actions','field_64d237e8bb1e5'),(119024,40315,'blocks_7_content_align','left'),(119025,40315,'_blocks_7_content_align','field_64d2443e6b6aa'),(119026,40315,'blocks_7_content',''),(119027,40315,'_blocks_7_content','field_64d237e8bb1e1'),(119028,40315,'blocks_7_accordion_content','faqs'),(119029,40315,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(119030,40315,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(119031,40315,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(119032,40315,'blocks_7_actions',''),(119033,40315,'_blocks_7_actions','field_61a746a817f7a'),(119034,40315,'blocks_8_acfe_flexible_toggle',''),(119035,40315,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(119036,40315,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(119037,40315,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(119038,40315,'blocks_8_options_alignment','center'),(119039,40315,'_blocks_8_options_alignment','field_61769449f5490'),(119040,40315,'blocks_8_options',''),(119041,40315,'_blocks_8_options','field_617693e1428f0'),(119042,40315,'blocks_8_promo_panel_image','39035'),(119043,40315,'_blocks_8_promo_panel_image','field_617693e1428f3'),(119044,40315,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(119045,40315,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(119046,40315,'blocks_8_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(119047,40315,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(119048,40315,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(119049,40315,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(119050,40315,'blocks_8_promo_panel_content_actions','1'),(119051,40315,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(119052,40315,'blocks_8_promo_panel_content',''),(119053,40315,'_blocks_8_promo_panel_content','field_617693e1428f4'),(119054,40315,'hide_hero','0'),(119055,40315,'_hide_hero','field_66a2380fcda39'),(119056,40316,'hero_style','default'),(119057,40316,'_hero_style','field_62051d9dc5324'),(119058,40316,'hero_image_pos_x','right'),(119059,40316,'_hero_image_pos_x','field_62ec3d05390bb'),(119060,40316,'hero_image_pos_y','top'),(119061,40316,'_hero_image_pos_y','field_62ec3d05390bc'),(119062,40316,'hero_image_pos',''),(119063,40316,'_hero_image_pos','field_62ec3d05390ba'),(119064,40316,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(119065,40316,'_hero_title','field_617571fe285e8'),(119066,40316,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(119067,40316,'_hero_text','field_6175723c285e9'),(119068,40316,'hero_actions','1'),(119069,40316,'_hero_actions','field_61757270285ea'),(119070,40316,'hero_icon',''),(119071,40316,'_hero_icon','field_61a6182199d03'),(119072,40316,'fft_hide_from_listings','0'),(119073,40316,'_fft_hide_from_listings','field_61f1320446ab2'),(119074,40316,'fft_page_format','default'),(119075,40316,'_fft_page_format','field_61ae213f1f218'),(119076,40316,'fft_hide_nav','1'),(119077,40316,'_fft_hide_nav','field_635bd5e43527c'),(119078,40316,'fft_hide_header_call_to_action','0'),(119079,40316,'_fft_hide_header_call_to_action','field_635bd6723527d'),(119080,40316,'fft_page_sitemap','1'),(119081,40316,'_fft_page_sitemap','field_61af9b34e8181'),(119082,40316,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(119083,40316,'_blocks','field_6176696113096'),(119084,40316,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39043-3\";s:6:\"target\";s:6:\"_blank\";}'),(119085,40316,'_hero_actions_0_button','field_61757281285eb'),(119086,40316,'_thumbnail_id','40310'),(119087,40316,'__thumbnail_id','field_617570855ddaf'),(119088,40316,'blocks_0_acfe_flexible_toggle',''),(119089,40316,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(119090,40316,'blocks_0_acfe_flexible_layout_title','Icons'),(119091,40316,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(119092,40316,'blocks_0_options_theme','#ffffff'),(119093,40316,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(119094,40316,'blocks_0_options_format','row'),(119095,40316,'_blocks_0_options_format','field_64bfde9a90690'),(119096,40316,'blocks_0_options',''),(119097,40316,'_blocks_0_options','field_64bfdd9b90684'),(119098,40316,'blocks_0_icon_row_items_0_icon','qualification.svg'),(119099,40316,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(119100,40316,'blocks_0_icon_row_items_0_label','Course Type'),(119101,40316,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(119102,40316,'blocks_0_icon_row_items_0_text','Blended Learning'),(119103,40316,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(119104,40316,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(119105,40316,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(119106,40316,'blocks_0_icon_row_items_1_label','Qualification'),(119107,40316,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(119108,40316,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(119109,40316,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(119110,40316,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(119111,40316,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(119112,40316,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(119113,40316,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(119114,40316,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(119115,40316,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(119116,40316,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(119117,40316,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(119118,40316,'blocks_0_icon_row_items_3_label','IBA Registered'),(119119,40316,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(119120,40316,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(119121,40316,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(119122,40316,'blocks_0_icon_row_items','4'),(119123,40316,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(119124,40316,'blocks_1_acfe_flexible_toggle',''),(119125,40316,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(119126,40316,'blocks_1_acfe_flexible_layout_title','Form'),(119127,40316,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(119128,40316,'blocks_1_row_content_format','promotion'),(119129,40316,'_blocks_1_row_content_format','field_6481ead962881'),(119130,40316,'blocks_1_row_content_title',''),(119131,40316,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(119132,40316,'blocks_1_row_content_heading',''),(119133,40316,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(119134,40316,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(119135,40316,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(119136,40316,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(119137,40316,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(119138,40316,'blocks_1_row_content_actions','1'),(119139,40316,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(119140,40316,'blocks_1_row_content',''),(119141,40316,'_blocks_1_row_content','field_61a0f5f5b3db0'),(119142,40316,'blocks_1_row_form',''),(119143,40316,'_blocks_1_row_form','field_61a4ff2c0b08e'),(119144,40316,'blocks_1_row_form_button_label',''),(119145,40316,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(119146,40316,'blocks_1_row_content_promotion_label',''),(119147,40316,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(119148,40316,'blocks_1_row_content_promotion_heading','Up to 10% Off For Event Attendees '),(119149,40316,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(119150,40316,'blocks_1_row_content_promotion_value','10%'),(119151,40316,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(119152,40316,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(119153,40316,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(119154,40316,'blocks_1_row_content_promotion',''),(119155,40316,'_blocks_1_row_content_promotion','field_6481eb3962882'),(119156,40316,'blocks_1_row_form_title','EMD UK Referral'),(119157,40316,'_blocks_1_row_form_title','field_64872db5127af'),(119158,40316,'blocks_2_acfe_flexible_toggle',''),(119159,40316,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(119160,40316,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(119161,40316,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(119162,40316,'blocks_2_size','large'),(119163,40316,'_blocks_2_size','field_6487038f297c1'),(119164,40316,'blocks_2_row_content_title',''),(119165,40316,'_blocks_2_row_content_title','field_64870132a865d'),(119166,40316,'blocks_2_row_content_heading','Course Overview'),(119167,40316,'_blocks_2_row_content_heading','field_64870142a865e'),(119168,40316,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(119169,40316,'_blocks_2_row_content_text','field_64870148a865f'),(119170,40316,'blocks_2_row_content',''),(119171,40316,'_blocks_2_row_content','field_6487008ba865c'),(119172,40316,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(119173,40316,'_blocks_2_video_src','field_6193c4a98ec07'),(119174,40316,'blocks_2_video_thumbnail','38998'),(119175,40316,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(119176,40316,'blocks_3_acfe_flexible_toggle',''),(119177,40316,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(119178,40316,'blocks_3_acfe_flexible_layout_title','Partnership section'),(119179,40316,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(119180,40316,'blocks_3_options_theme','#ffffff'),(119181,40316,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(119182,40316,'blocks_3_options_reverse','0'),(119183,40316,'_blocks_3_options_reverse','field_61768049bb8ac'),(119184,40316,'blocks_3_options',''),(119185,40316,'_blocks_3_options','field_617682517c334'),(119186,40316,'blocks_3_split_5050_image','39051'),(119187,40316,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(119188,40316,'blocks_3_split_5050_video',''),(119189,40316,'_blocks_3_split_5050_video','field_6239f3160848a'),(119190,40316,'blocks_3_split_5050_content_title',''),(119191,40316,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(119192,40316,'blocks_3_split_5050_content_heading','Working in Partnership'),(119193,40316,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(119194,40316,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(119195,40316,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(119196,40316,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(119197,40316,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(119198,40316,'blocks_3_split_5050_content_actions','1'),(119199,40316,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(119200,40316,'blocks_3_split_5050_content',''),(119201,40316,'_blocks_3_split_5050_content','field_61767afceb8ba'),(119202,40316,'blocks_4_acfe_flexible_toggle',''),(119203,40316,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(119204,40316,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(119205,40316,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(119206,40316,'blocks_4_content','<h2 style=\"text-align: center;\">Learn More About the Course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics Coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(119207,40316,'_blocks_4_content','field_6193c9b5eac84'),(119208,40316,'blocks_5_acfe_flexible_toggle',''),(119209,40316,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(119210,40316,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(119211,40316,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(119212,40316,'blocks_5_options_theme','#ffffff'),(119213,40316,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(119214,40316,'blocks_5_options',''),(119215,40316,'_blocks_5_options','field_6177cfcd8140f'),(119216,40316,'blocks_5_tabs_0_tab_label','What\'s Included'),(119217,40316,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(119218,40316,'blocks_5_tabs_0_tab_content_title',''),(119219,40316,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(119220,40316,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(119221,40316,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(119222,40316,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(119223,40316,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(119224,40316,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(119225,40316,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(119226,40316,'blocks_5_tabs_0_tab_content_actions','1'),(119227,40316,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(119228,40316,'blocks_5_tabs_0_tab_content',''),(119229,40316,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(119230,40316,'blocks_5_tabs_0_tab_image','39009'),(119231,40316,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(119232,40316,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(119233,40316,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(119234,40316,'blocks_5_tabs_1_tab_content_title',''),(119235,40316,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(119236,40316,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(119237,40316,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(119238,40316,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(119239,40316,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(119240,40316,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(119241,40316,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(119242,40316,'blocks_5_tabs_1_tab_content_actions','1'),(119243,40316,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(119244,40316,'blocks_5_tabs_1_tab_content',''),(119245,40316,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(119246,40316,'blocks_5_tabs_1_tab_image','31067'),(119247,40316,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(119248,40316,'blocks_5_tabs','2'),(119249,40316,'_blocks_5_tabs','field_6177cff281419'),(119250,40316,'blocks_6_acfe_flexible_toggle',''),(119251,40316,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(119252,40316,'blocks_6_acfe_flexible_layout_title','About Rachel'),(119253,40316,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(119254,40316,'blocks_6_options_theme','#ffffff'),(119255,40316,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(119256,40316,'blocks_6_options_reverse','0'),(119257,40316,'_blocks_6_options_reverse','field_61768049bb8ac'),(119258,40316,'blocks_6_options',''),(119259,40316,'_blocks_6_options','field_617682517c334'),(119260,40316,'blocks_6_split_5050_image','39052'),(119261,40316,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(119262,40316,'blocks_6_split_5050_video',''),(119263,40316,'_blocks_6_split_5050_video','field_6239f3160848a'),(119264,40316,'blocks_6_split_5050_content_title',''),(119265,40316,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(119266,40316,'blocks_6_split_5050_content_heading','Rachel France'),(119267,40316,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(119268,40316,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(119269,40316,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(119270,40316,'blocks_6_split_5050_content_actions',''),(119271,40316,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(119272,40316,'blocks_6_split_5050_content',''),(119273,40316,'_blocks_6_split_5050_content','field_61767afceb8ba'),(119274,40316,'blocks_7_acfe_flexible_toggle',''),(119275,40316,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(119276,40316,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(119277,40316,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(119278,40316,'blocks_7_options_theme','#ffffff'),(119279,40316,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(119280,40316,'blocks_7_options_state','0'),(119281,40316,'_blocks_7_options_state','field_6239fcb7508c5'),(119282,40316,'blocks_7_options',''),(119283,40316,'_blocks_7_options','field_6177e2991ac44'),(119284,40316,'blocks_7_content_title',''),(119285,40316,'_blocks_7_content_title','field_64d237e8bb1e2'),(119286,40316,'blocks_7_content_heading','Frequently asked questions'),(119287,40316,'_blocks_7_content_heading','field_64d237e8bb1e3'),(119288,40316,'blocks_7_content_text',''),(119289,40316,'_blocks_7_content_text','field_64d237e8bb1e4'),(119290,40316,'blocks_7_content_actions',''),(119291,40316,'_blocks_7_content_actions','field_64d237e8bb1e5'),(119292,40316,'blocks_7_content_align','left'),(119293,40316,'_blocks_7_content_align','field_64d2443e6b6aa'),(119294,40316,'blocks_7_content',''),(119295,40316,'_blocks_7_content','field_64d237e8bb1e1'),(119296,40316,'blocks_7_accordion_content','faqs'),(119297,40316,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(119298,40316,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(119299,40316,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(119300,40316,'blocks_7_actions',''),(119301,40316,'_blocks_7_actions','field_61a746a817f7a'),(119302,40316,'blocks_8_acfe_flexible_toggle',''),(119303,40316,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(119304,40316,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(119305,40316,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(119306,40316,'blocks_8_options_alignment','center'),(119307,40316,'_blocks_8_options_alignment','field_61769449f5490'),(119308,40316,'blocks_8_options',''),(119309,40316,'_blocks_8_options','field_617693e1428f0'),(119310,40316,'blocks_8_promo_panel_image','39035'),(119311,40316,'_blocks_8_promo_panel_image','field_617693e1428f3'),(119312,40316,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(119313,40316,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(119314,40316,'blocks_8_promo_panel_content_text','Download a price guide today to receive an exclusive 10% off for all David Lloyd Personal Trainers.'),(119315,40316,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(119316,40316,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(119317,40316,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(119318,40316,'blocks_8_promo_panel_content_actions','1'),(119319,40316,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(119320,40316,'blocks_8_promo_panel_content',''),(119321,40316,'_blocks_8_promo_panel_content','field_617693e1428f4'),(119322,40316,'hide_hero','0'),(119323,40316,'_hide_hero','field_66a2380fcda39'),(119324,40317,'hero_style','default'),(119325,40317,'_hero_style','field_62051d9dc5324'),(119326,40317,'hero_image_pos_x','right'),(119327,40317,'_hero_image_pos_x','field_62ec3d05390bb'),(119328,40317,'hero_image_pos_y','top'),(119329,40317,'_hero_image_pos_y','field_62ec3d05390bc'),(119330,40317,'hero_image_pos',''),(119331,40317,'_hero_image_pos','field_62ec3d05390ba'),(119332,40317,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(119333,40317,'_hero_title','field_617571fe285e8'),(119334,40317,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(119335,40317,'_hero_text','field_6175723c285e9'),(119336,40317,'hero_actions','1'),(119337,40317,'_hero_actions','field_61757270285ea'),(119338,40317,'hero_icon',''),(119339,40317,'_hero_icon','field_61a6182199d03'),(119340,40317,'fft_hide_from_listings','0'),(119341,40317,'_fft_hide_from_listings','field_61f1320446ab2'),(119342,40317,'fft_page_format','default'),(119343,40317,'_fft_page_format','field_61ae213f1f218'),(119344,40317,'fft_hide_nav','1'),(119345,40317,'_fft_hide_nav','field_635bd5e43527c'),(119346,40317,'fft_hide_header_call_to_action','0'),(119347,40317,'_fft_hide_header_call_to_action','field_635bd6723527d'),(119348,40317,'fft_page_sitemap','1'),(119349,40317,'_fft_page_sitemap','field_61af9b34e8181'),(119350,40317,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(119351,40317,'_blocks','field_6176696113096'),(119352,40317,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39043-3\";s:6:\"target\";s:6:\"_blank\";}'),(119353,40317,'_hero_actions_0_button','field_61757281285eb'),(119354,40317,'_thumbnail_id','40310'),(119355,40317,'__thumbnail_id','field_617570855ddaf'),(119356,40317,'blocks_0_acfe_flexible_toggle',''),(119357,40317,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(119358,40317,'blocks_0_acfe_flexible_layout_title','Icons'),(119359,40317,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(119360,40317,'blocks_0_options_theme','#ffffff'),(119361,40317,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(119362,40317,'blocks_0_options_format','row'),(119363,40317,'_blocks_0_options_format','field_64bfde9a90690'),(119364,40317,'blocks_0_options',''),(119365,40317,'_blocks_0_options','field_64bfdd9b90684'),(119366,40317,'blocks_0_icon_row_items_0_icon','qualification.svg'),(119367,40317,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(119368,40317,'blocks_0_icon_row_items_0_label','Course Type'),(119369,40317,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(119370,40317,'blocks_0_icon_row_items_0_text','Blended Learning'),(119371,40317,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(119372,40317,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(119373,40317,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(119374,40317,'blocks_0_icon_row_items_1_label','Qualification'),(119375,40317,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(119376,40317,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(119377,40317,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(119378,40317,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(119379,40317,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(119380,40317,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(119381,40317,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(119382,40317,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(119383,40317,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(119384,40317,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(119385,40317,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(119386,40317,'blocks_0_icon_row_items_3_label','IBA Registered'),(119387,40317,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(119388,40317,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(119389,40317,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(119390,40317,'blocks_0_icon_row_items','4'),(119391,40317,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(119392,40317,'blocks_1_acfe_flexible_toggle',''),(119393,40317,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(119394,40317,'blocks_1_acfe_flexible_layout_title','Form'),(119395,40317,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(119396,40317,'blocks_1_row_content_format','promotion'),(119397,40317,'_blocks_1_row_content_format','field_6481ead962881'),(119398,40317,'blocks_1_row_content_title',''),(119399,40317,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(119400,40317,'blocks_1_row_content_heading',''),(119401,40317,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(119402,40317,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(119403,40317,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(119404,40317,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(119405,40317,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(119406,40317,'blocks_1_row_content_actions','1'),(119407,40317,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(119408,40317,'blocks_1_row_content',''),(119409,40317,'_blocks_1_row_content','field_61a0f5f5b3db0'),(119410,40317,'blocks_1_row_form',''),(119411,40317,'_blocks_1_row_form','field_61a4ff2c0b08e'),(119412,40317,'blocks_1_row_form_button_label',''),(119413,40317,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(119414,40317,'blocks_1_row_content_promotion_label',''),(119415,40317,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(119416,40317,'blocks_1_row_content_promotion_heading','Up to 10% Off For Event Attendees '),(119417,40317,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(119418,40317,'blocks_1_row_content_promotion_value','10%'),(119419,40317,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(119420,40317,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(119421,40317,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(119422,40317,'blocks_1_row_content_promotion',''),(119423,40317,'_blocks_1_row_content_promotion','field_6481eb3962882'),(119424,40317,'blocks_1_row_form_title','EMD UK Referral'),(119425,40317,'_blocks_1_row_form_title','field_64872db5127af'),(119426,40317,'blocks_2_acfe_flexible_toggle',''),(119427,40317,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(119428,40317,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(119429,40317,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(119430,40317,'blocks_2_size','large'),(119431,40317,'_blocks_2_size','field_6487038f297c1'),(119432,40317,'blocks_2_row_content_title',''),(119433,40317,'_blocks_2_row_content_title','field_64870132a865d'),(119434,40317,'blocks_2_row_content_heading','Course Overview'),(119435,40317,'_blocks_2_row_content_heading','field_64870142a865e'),(119436,40317,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment programme that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(119437,40317,'_blocks_2_row_content_text','field_64870148a865f'),(119438,40317,'blocks_2_row_content',''),(119439,40317,'_blocks_2_row_content','field_6487008ba865c'),(119440,40317,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(119441,40317,'_blocks_2_video_src','field_6193c4a98ec07'),(119442,40317,'blocks_2_video_thumbnail','38998'),(119443,40317,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(119444,40317,'blocks_3_acfe_flexible_toggle',''),(119445,40317,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(119446,40317,'blocks_3_acfe_flexible_layout_title','Partnership section'),(119447,40317,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(119448,40317,'blocks_3_options_theme','#ffffff'),(119449,40317,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(119450,40317,'blocks_3_options_reverse','0'),(119451,40317,'_blocks_3_options_reverse','field_61768049bb8ac'),(119452,40317,'blocks_3_options',''),(119453,40317,'_blocks_3_options','field_617682517c334'),(119454,40317,'blocks_3_split_5050_image','39051'),(119455,40317,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(119456,40317,'blocks_3_split_5050_video',''),(119457,40317,'_blocks_3_split_5050_video','field_6239f3160848a'),(119458,40317,'blocks_3_split_5050_content_title',''),(119459,40317,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(119460,40317,'blocks_3_split_5050_content_heading','Working in Partnership'),(119461,40317,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(119462,40317,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(119463,40317,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(119464,40317,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(119465,40317,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(119466,40317,'blocks_3_split_5050_content_actions','1'),(119467,40317,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(119468,40317,'blocks_3_split_5050_content',''),(119469,40317,'_blocks_3_split_5050_content','field_61767afceb8ba'),(119470,40317,'blocks_4_acfe_flexible_toggle',''),(119471,40317,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(119472,40317,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(119473,40317,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(119474,40317,'blocks_4_content','<h2 style=\"text-align: center;\">Learn More About the Course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics Coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(119475,40317,'_blocks_4_content','field_6193c9b5eac84'),(119476,40317,'blocks_5_acfe_flexible_toggle',''),(119477,40317,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(119478,40317,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(119479,40317,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(119480,40317,'blocks_5_options_theme','#ffffff'),(119481,40317,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(119482,40317,'blocks_5_options',''),(119483,40317,'_blocks_5_options','field_6177cfcd8140f'),(119484,40317,'blocks_5_tabs_0_tab_label','What\'s Included'),(119485,40317,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(119486,40317,'blocks_5_tabs_0_tab_content_title',''),(119487,40317,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(119488,40317,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(119489,40317,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(119490,40317,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(119491,40317,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(119492,40317,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(119493,40317,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(119494,40317,'blocks_5_tabs_0_tab_content_actions','1'),(119495,40317,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(119496,40317,'blocks_5_tabs_0_tab_content',''),(119497,40317,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(119498,40317,'blocks_5_tabs_0_tab_image','39009'),(119499,40317,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(119500,40317,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(119501,40317,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(119502,40317,'blocks_5_tabs_1_tab_content_title',''),(119503,40317,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(119504,40317,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(119505,40317,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(119506,40317,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(119507,40317,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(119508,40317,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(119509,40317,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(119510,40317,'blocks_5_tabs_1_tab_content_actions','1'),(119511,40317,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(119512,40317,'blocks_5_tabs_1_tab_content',''),(119513,40317,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(119514,40317,'blocks_5_tabs_1_tab_image','31067'),(119515,40317,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(119516,40317,'blocks_5_tabs','2'),(119517,40317,'_blocks_5_tabs','field_6177cff281419'),(119518,40317,'blocks_6_acfe_flexible_toggle',''),(119519,40317,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(119520,40317,'blocks_6_acfe_flexible_layout_title','About Rachel'),(119521,40317,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(119522,40317,'blocks_6_options_theme','#ffffff'),(119523,40317,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(119524,40317,'blocks_6_options_reverse','0'),(119525,40317,'_blocks_6_options_reverse','field_61768049bb8ac'),(119526,40317,'blocks_6_options',''),(119527,40317,'_blocks_6_options','field_617682517c334'),(119528,40317,'blocks_6_split_5050_image','39052'),(119529,40317,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(119530,40317,'blocks_6_split_5050_video',''),(119531,40317,'_blocks_6_split_5050_video','field_6239f3160848a'),(119532,40317,'blocks_6_split_5050_content_title',''),(119533,40317,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(119534,40317,'blocks_6_split_5050_content_heading','Rachel France'),(119535,40317,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(119536,40317,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(119537,40317,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(119538,40317,'blocks_6_split_5050_content_actions',''),(119539,40317,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(119540,40317,'blocks_6_split_5050_content',''),(119541,40317,'_blocks_6_split_5050_content','field_61767afceb8ba'),(119542,40317,'blocks_7_acfe_flexible_toggle',''),(119543,40317,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(119544,40317,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(119545,40317,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(119546,40317,'blocks_7_options_theme','#ffffff'),(119547,40317,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(119548,40317,'blocks_7_options_state','0'),(119549,40317,'_blocks_7_options_state','field_6239fcb7508c5'),(119550,40317,'blocks_7_options',''),(119551,40317,'_blocks_7_options','field_6177e2991ac44'),(119552,40317,'blocks_7_content_title',''),(119553,40317,'_blocks_7_content_title','field_64d237e8bb1e2'),(119554,40317,'blocks_7_content_heading','Frequently asked questions'),(119555,40317,'_blocks_7_content_heading','field_64d237e8bb1e3'),(119556,40317,'blocks_7_content_text',''),(119557,40317,'_blocks_7_content_text','field_64d237e8bb1e4'),(119558,40317,'blocks_7_content_actions',''),(119559,40317,'_blocks_7_content_actions','field_64d237e8bb1e5'),(119560,40317,'blocks_7_content_align','left'),(119561,40317,'_blocks_7_content_align','field_64d2443e6b6aa'),(119562,40317,'blocks_7_content',''),(119563,40317,'_blocks_7_content','field_64d237e8bb1e1'),(119564,40317,'blocks_7_accordion_content','faqs'),(119565,40317,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(119566,40317,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(119567,40317,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(119568,40317,'blocks_7_actions',''),(119569,40317,'_blocks_7_actions','field_61a746a817f7a'),(119570,40317,'blocks_8_acfe_flexible_toggle',''),(119571,40317,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(119572,40317,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(119573,40317,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(119574,40317,'blocks_8_options_alignment','center'),(119575,40317,'_blocks_8_options_alignment','field_61769449f5490'),(119576,40317,'blocks_8_options',''),(119577,40317,'_blocks_8_options','field_617693e1428f0'),(119578,40317,'blocks_8_promo_panel_image','39035'),(119579,40317,'_blocks_8_promo_panel_image','field_617693e1428f3'),(119580,40317,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(119581,40317,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(119582,40317,'blocks_8_promo_panel_content_text','Download a price guide today to receive an exclusive 10% off for all David Lloyd Personal Trainers.'),(119583,40317,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(119584,40317,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(119585,40317,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(119586,40317,'blocks_8_promo_panel_content_actions','1'),(119587,40317,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(119588,40317,'blocks_8_promo_panel_content',''),(119589,40317,'_blocks_8_promo_panel_content','field_617693e1428f4'),(119590,40317,'hide_hero','0'),(119591,40317,'_hide_hero','field_66a2380fcda39'),(119592,40318,'hero_style','default'),(119593,40318,'_hero_style','field_62051d9dc5324'),(119594,40318,'hero_image_pos_x','right'),(119595,40318,'_hero_image_pos_x','field_62ec3d05390bb'),(119596,40318,'hero_image_pos_y','top'),(119597,40318,'_hero_image_pos_y','field_62ec3d05390bc'),(119598,40318,'hero_image_pos',''),(119599,40318,'_hero_image_pos','field_62ec3d05390ba'),(119600,40318,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(119601,40318,'_hero_title','field_617571fe285e8'),(119602,40318,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(119603,40318,'_hero_text','field_6175723c285e9'),(119604,40318,'hero_actions','1'),(119605,40318,'_hero_actions','field_61757270285ea'),(119606,40318,'hero_icon',''),(119607,40318,'_hero_icon','field_61a6182199d03'),(119608,40318,'fft_hide_from_listings','0'),(119609,40318,'_fft_hide_from_listings','field_61f1320446ab2'),(119610,40318,'fft_page_format','default'),(119611,40318,'_fft_page_format','field_61ae213f1f218'),(119612,40318,'fft_hide_nav','1'),(119613,40318,'_fft_hide_nav','field_635bd5e43527c'),(119614,40318,'fft_hide_header_call_to_action','0'),(119615,40318,'_fft_hide_header_call_to_action','field_635bd6723527d'),(119616,40318,'fft_page_sitemap','1'),(119617,40318,'_fft_page_sitemap','field_61af9b34e8181'),(119618,40318,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(119619,40318,'_blocks','field_6176696113096'),(119620,40318,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39043-3\";s:6:\"target\";s:6:\"_blank\";}'),(119621,40318,'_hero_actions_0_button','field_61757281285eb'),(119622,40318,'_thumbnail_id','40310'),(119623,40318,'__thumbnail_id','field_617570855ddaf'),(119624,40318,'blocks_0_acfe_flexible_toggle',''),(119625,40318,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(119626,40318,'blocks_0_acfe_flexible_layout_title','Icons'),(119627,40318,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(119628,40318,'blocks_0_options_theme','#ffffff'),(119629,40318,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(119630,40318,'blocks_0_options_format','row'),(119631,40318,'_blocks_0_options_format','field_64bfde9a90690'),(119632,40318,'blocks_0_options',''),(119633,40318,'_blocks_0_options','field_64bfdd9b90684'),(119634,40318,'blocks_0_icon_row_items_0_icon','qualification.svg'),(119635,40318,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(119636,40318,'blocks_0_icon_row_items_0_label','Course Type'),(119637,40318,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(119638,40318,'blocks_0_icon_row_items_0_text','Blended Learning'),(119639,40318,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(119640,40318,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(119641,40318,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(119642,40318,'blocks_0_icon_row_items_1_label','Qualification'),(119643,40318,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(119644,40318,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(119645,40318,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(119646,40318,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(119647,40318,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(119648,40318,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(119649,40318,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(119650,40318,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(119651,40318,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(119652,40318,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(119653,40318,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(119654,40318,'blocks_0_icon_row_items_3_label','IBA Registered'),(119655,40318,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(119656,40318,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(119657,40318,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(119658,40318,'blocks_0_icon_row_items','4'),(119659,40318,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(119660,40318,'blocks_1_acfe_flexible_toggle',''),(119661,40318,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(119662,40318,'blocks_1_acfe_flexible_layout_title','Form'),(119663,40318,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(119664,40318,'blocks_1_row_content_format','promotion'),(119665,40318,'_blocks_1_row_content_format','field_6481ead962881'),(119666,40318,'blocks_1_row_content_title',''),(119667,40318,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(119668,40318,'blocks_1_row_content_heading',''),(119669,40318,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(119670,40318,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(119671,40318,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(119672,40318,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(119673,40318,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(119674,40318,'blocks_1_row_content_actions','1'),(119675,40318,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(119676,40318,'blocks_1_row_content',''),(119677,40318,'_blocks_1_row_content','field_61a0f5f5b3db0'),(119678,40318,'blocks_1_row_form',''),(119679,40318,'_blocks_1_row_form','field_61a4ff2c0b08e'),(119680,40318,'blocks_1_row_form_button_label',''),(119681,40318,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(119682,40318,'blocks_1_row_content_promotion_label',''),(119683,40318,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(119684,40318,'blocks_1_row_content_promotion_heading','Up to 10% Off For Event Attendees '),(119685,40318,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(119686,40318,'blocks_1_row_content_promotion_value','10%'),(119687,40318,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(119688,40318,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(119689,40318,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(119690,40318,'blocks_1_row_content_promotion',''),(119691,40318,'_blocks_1_row_content_promotion','field_6481eb3962882'),(119692,40318,'blocks_1_row_form_title','EMD UK Referral'),(119693,40318,'_blocks_1_row_form_title','field_64872db5127af'),(119694,40318,'blocks_2_acfe_flexible_toggle',''),(119695,40318,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(119696,40318,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(119697,40318,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(119698,40318,'blocks_2_size','large'),(119699,40318,'_blocks_2_size','field_6487038f297c1'),(119700,40318,'blocks_2_row_content_title',''),(119701,40318,'_blocks_2_row_content_title','field_64870132a865d'),(119702,40318,'blocks_2_row_content_heading','Course Overview'),(119703,40318,'_blocks_2_row_content_heading','field_64870142a865e'),(119704,40318,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(119705,40318,'_blocks_2_row_content_text','field_64870148a865f'),(119706,40318,'blocks_2_row_content',''),(119707,40318,'_blocks_2_row_content','field_6487008ba865c'),(119708,40318,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(119709,40318,'_blocks_2_video_src','field_6193c4a98ec07'),(119710,40318,'blocks_2_video_thumbnail','38998'),(119711,40318,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(119712,40318,'blocks_3_acfe_flexible_toggle',''),(119713,40318,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(119714,40318,'blocks_3_acfe_flexible_layout_title','Partnership section'),(119715,40318,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(119716,40318,'blocks_3_options_theme','#ffffff'),(119717,40318,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(119718,40318,'blocks_3_options_reverse','0'),(119719,40318,'_blocks_3_options_reverse','field_61768049bb8ac'),(119720,40318,'blocks_3_options',''),(119721,40318,'_blocks_3_options','field_617682517c334'),(119722,40318,'blocks_3_split_5050_image','39051'),(119723,40318,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(119724,40318,'blocks_3_split_5050_video',''),(119725,40318,'_blocks_3_split_5050_video','field_6239f3160848a'),(119726,40318,'blocks_3_split_5050_content_title',''),(119727,40318,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(119728,40318,'blocks_3_split_5050_content_heading','Working in Partnership'),(119729,40318,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(119730,40318,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(119731,40318,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(119732,40318,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(119733,40318,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(119734,40318,'blocks_3_split_5050_content_actions','1'),(119735,40318,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(119736,40318,'blocks_3_split_5050_content',''),(119737,40318,'_blocks_3_split_5050_content','field_61767afceb8ba'),(119738,40318,'blocks_4_acfe_flexible_toggle',''),(119739,40318,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(119740,40318,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(119741,40318,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(119742,40318,'blocks_4_content','<h2 style=\"text-align: center;\">Learn More About the Course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics Coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(119743,40318,'_blocks_4_content','field_6193c9b5eac84'),(119744,40318,'blocks_5_acfe_flexible_toggle',''),(119745,40318,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(119746,40318,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(119747,40318,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(119748,40318,'blocks_5_options_theme','#ffffff'),(119749,40318,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(119750,40318,'blocks_5_options',''),(119751,40318,'_blocks_5_options','field_6177cfcd8140f'),(119752,40318,'blocks_5_tabs_0_tab_label','What\'s Included'),(119753,40318,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(119754,40318,'blocks_5_tabs_0_tab_content_title',''),(119755,40318,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(119756,40318,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(119757,40318,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(119758,40318,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(119759,40318,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(119760,40318,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(119761,40318,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(119762,40318,'blocks_5_tabs_0_tab_content_actions','1'),(119763,40318,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(119764,40318,'blocks_5_tabs_0_tab_content',''),(119765,40318,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(119766,40318,'blocks_5_tabs_0_tab_image','39009'),(119767,40318,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(119768,40318,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(119769,40318,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(119770,40318,'blocks_5_tabs_1_tab_content_title',''),(119771,40318,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(119772,40318,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(119773,40318,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(119774,40318,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(119775,40318,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(119776,40318,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(119777,40318,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(119778,40318,'blocks_5_tabs_1_tab_content_actions','1'),(119779,40318,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(119780,40318,'blocks_5_tabs_1_tab_content',''),(119781,40318,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(119782,40318,'blocks_5_tabs_1_tab_image','31067'),(119783,40318,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(119784,40318,'blocks_5_tabs','2'),(119785,40318,'_blocks_5_tabs','field_6177cff281419'),(119786,40318,'blocks_6_acfe_flexible_toggle',''),(119787,40318,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(119788,40318,'blocks_6_acfe_flexible_layout_title','About Rachel'),(119789,40318,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(119790,40318,'blocks_6_options_theme','#ffffff'),(119791,40318,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(119792,40318,'blocks_6_options_reverse','0'),(119793,40318,'_blocks_6_options_reverse','field_61768049bb8ac'),(119794,40318,'blocks_6_options',''),(119795,40318,'_blocks_6_options','field_617682517c334'),(119796,40318,'blocks_6_split_5050_image','39052'),(119797,40318,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(119798,40318,'blocks_6_split_5050_video',''),(119799,40318,'_blocks_6_split_5050_video','field_6239f3160848a'),(119800,40318,'blocks_6_split_5050_content_title',''),(119801,40318,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(119802,40318,'blocks_6_split_5050_content_heading','Rachel France'),(119803,40318,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(119804,40318,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(119805,40318,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(119806,40318,'blocks_6_split_5050_content_actions',''),(119807,40318,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(119808,40318,'blocks_6_split_5050_content',''),(119809,40318,'_blocks_6_split_5050_content','field_61767afceb8ba'),(119810,40318,'blocks_7_acfe_flexible_toggle',''),(119811,40318,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(119812,40318,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(119813,40318,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(119814,40318,'blocks_7_options_theme','#ffffff'),(119815,40318,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(119816,40318,'blocks_7_options_state','0'),(119817,40318,'_blocks_7_options_state','field_6239fcb7508c5'),(119818,40318,'blocks_7_options',''),(119819,40318,'_blocks_7_options','field_6177e2991ac44'),(119820,40318,'blocks_7_content_title',''),(119821,40318,'_blocks_7_content_title','field_64d237e8bb1e2'),(119822,40318,'blocks_7_content_heading','Frequently asked questions'),(119823,40318,'_blocks_7_content_heading','field_64d237e8bb1e3'),(119824,40318,'blocks_7_content_text',''),(119825,40318,'_blocks_7_content_text','field_64d237e8bb1e4'),(119826,40318,'blocks_7_content_actions',''),(119827,40318,'_blocks_7_content_actions','field_64d237e8bb1e5'),(119828,40318,'blocks_7_content_align','left'),(119829,40318,'_blocks_7_content_align','field_64d2443e6b6aa'),(119830,40318,'blocks_7_content',''),(119831,40318,'_blocks_7_content','field_64d237e8bb1e1'),(119832,40318,'blocks_7_accordion_content','faqs'),(119833,40318,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(119834,40318,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(119835,40318,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(119836,40318,'blocks_7_actions',''),(119837,40318,'_blocks_7_actions','field_61a746a817f7a'),(119838,40318,'blocks_8_acfe_flexible_toggle',''),(119839,40318,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(119840,40318,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(119841,40318,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(119842,40318,'blocks_8_options_alignment','center'),(119843,40318,'_blocks_8_options_alignment','field_61769449f5490'),(119844,40318,'blocks_8_options',''),(119845,40318,'_blocks_8_options','field_617693e1428f0'),(119846,40318,'blocks_8_promo_panel_image','39035'),(119847,40318,'_blocks_8_promo_panel_image','field_617693e1428f3'),(119848,40318,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(119849,40318,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(119850,40318,'blocks_8_promo_panel_content_text','Download a price guide today to receive an exclusive 10% off for all David Lloyd Personal Trainers.'),(119851,40318,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(119852,40318,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(119853,40318,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(119854,40318,'blocks_8_promo_panel_content_actions','1'),(119855,40318,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(119856,40318,'blocks_8_promo_panel_content',''),(119857,40318,'_blocks_8_promo_panel_content','field_617693e1428f4'),(119858,40318,'hide_hero','0'),(119859,40318,'_hide_hero','field_66a2380fcda39'),(119860,40319,'hero_style','default'),(119861,40319,'_hero_style','field_62051d9dc5324'),(119862,40319,'hero_image_pos_x','right'),(119863,40319,'_hero_image_pos_x','field_62ec3d05390bb'),(119864,40319,'hero_image_pos_y','top'),(119865,40319,'_hero_image_pos_y','field_62ec3d05390bc'),(119866,40319,'hero_image_pos',''),(119867,40319,'_hero_image_pos','field_62ec3d05390ba'),(119868,40319,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(119869,40319,'_hero_title','field_617571fe285e8'),(119870,40319,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(119871,40319,'_hero_text','field_6175723c285e9'),(119872,40319,'hero_actions','1'),(119873,40319,'_hero_actions','field_61757270285ea'),(119874,40319,'hero_icon',''),(119875,40319,'_hero_icon','field_61a6182199d03'),(119876,40319,'fft_hide_from_listings','0'),(119877,40319,'_fft_hide_from_listings','field_61f1320446ab2'),(119878,40319,'fft_page_format','default'),(119879,40319,'_fft_page_format','field_61ae213f1f218'),(119880,40319,'fft_hide_nav','1'),(119881,40319,'_fft_hide_nav','field_635bd5e43527c'),(119882,40319,'fft_hide_header_call_to_action','0'),(119883,40319,'_fft_hide_header_call_to_action','field_635bd6723527d'),(119884,40319,'fft_page_sitemap','1'),(119885,40319,'_fft_page_sitemap','field_61af9b34e8181'),(119886,40319,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(119887,40319,'_blocks','field_6176696113096'),(119888,40319,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39043-3\";s:6:\"target\";s:6:\"_blank\";}'),(119889,40319,'_hero_actions_0_button','field_61757281285eb'),(119890,40319,'_thumbnail_id','40310'),(119891,40319,'__thumbnail_id','field_617570855ddaf'),(119892,40319,'blocks_0_acfe_flexible_toggle',''),(119893,40319,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(119894,40319,'blocks_0_acfe_flexible_layout_title','Icons'),(119895,40319,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(119896,40319,'blocks_0_options_theme','#ffffff'),(119897,40319,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(119898,40319,'blocks_0_options_format','row'),(119899,40319,'_blocks_0_options_format','field_64bfde9a90690'),(119900,40319,'blocks_0_options',''),(119901,40319,'_blocks_0_options','field_64bfdd9b90684'),(119902,40319,'blocks_0_icon_row_items_0_icon','qualification.svg'),(119903,40319,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(119904,40319,'blocks_0_icon_row_items_0_label','Course Type'),(119905,40319,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(119906,40319,'blocks_0_icon_row_items_0_text','Blended Learning'),(119907,40319,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(119908,40319,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(119909,40319,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(119910,40319,'blocks_0_icon_row_items_1_label','Qualification'),(119911,40319,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(119912,40319,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(119913,40319,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(119914,40319,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(119915,40319,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(119916,40319,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(119917,40319,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(119918,40319,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(119919,40319,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(119920,40319,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(119921,40319,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(119922,40319,'blocks_0_icon_row_items_3_label','IBA Registered'),(119923,40319,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(119924,40319,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(119925,40319,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(119926,40319,'blocks_0_icon_row_items','4'),(119927,40319,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(119928,40319,'blocks_1_acfe_flexible_toggle',''),(119929,40319,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(119930,40319,'blocks_1_acfe_flexible_layout_title','Form'),(119931,40319,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(119932,40319,'blocks_1_row_content_format','promotion'),(119933,40319,'_blocks_1_row_content_format','field_6481ead962881'),(119934,40319,'blocks_1_row_content_title',''),(119935,40319,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(119936,40319,'blocks_1_row_content_heading',''),(119937,40319,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(119938,40319,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(119939,40319,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(119940,40319,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(119941,40319,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(119942,40319,'blocks_1_row_content_actions','1'),(119943,40319,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(119944,40319,'blocks_1_row_content',''),(119945,40319,'_blocks_1_row_content','field_61a0f5f5b3db0'),(119946,40319,'blocks_1_row_form',''),(119947,40319,'_blocks_1_row_form','field_61a4ff2c0b08e'),(119948,40319,'blocks_1_row_form_button_label',''),(119949,40319,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(119950,40319,'blocks_1_row_content_promotion_label',''),(119951,40319,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(119952,40319,'blocks_1_row_content_promotion_heading','Up to 10% Off For Event Attendees '),(119953,40319,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(119954,40319,'blocks_1_row_content_promotion_value','10%'),(119955,40319,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(119956,40319,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(119957,40319,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(119958,40319,'blocks_1_row_content_promotion',''),(119959,40319,'_blocks_1_row_content_promotion','field_6481eb3962882'),(119960,40319,'blocks_1_row_form_title','EMD UK Referral'),(119961,40319,'_blocks_1_row_form_title','field_64872db5127af'),(119962,40319,'blocks_2_acfe_flexible_toggle',''),(119963,40319,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(119964,40319,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(119965,40319,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(119966,40319,'blocks_2_size','large'),(119967,40319,'_blocks_2_size','field_6487038f297c1'),(119968,40319,'blocks_2_row_content_title',''),(119969,40319,'_blocks_2_row_content_title','field_64870132a865d'),(119970,40319,'blocks_2_row_content_heading','Course Overview'),(119971,40319,'_blocks_2_row_content_heading','field_64870142a865e'),(119972,40319,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(119973,40319,'_blocks_2_row_content_text','field_64870148a865f'),(119974,40319,'blocks_2_row_content',''),(119975,40319,'_blocks_2_row_content','field_6487008ba865c'),(119976,40319,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(119977,40319,'_blocks_2_video_src','field_6193c4a98ec07'),(119978,40319,'blocks_2_video_thumbnail','38998'),(119979,40319,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(119980,40319,'blocks_3_acfe_flexible_toggle',''),(119981,40319,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(119982,40319,'blocks_3_acfe_flexible_layout_title','Partnership section'),(119983,40319,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(119984,40319,'blocks_3_options_theme','#ffffff'),(119985,40319,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(119986,40319,'blocks_3_options_reverse','0'),(119987,40319,'_blocks_3_options_reverse','field_61768049bb8ac'),(119988,40319,'blocks_3_options',''),(119989,40319,'_blocks_3_options','field_617682517c334'),(119990,40319,'blocks_3_split_5050_image','39051'),(119991,40319,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(119992,40319,'blocks_3_split_5050_video',''),(119993,40319,'_blocks_3_split_5050_video','field_6239f3160848a'),(119994,40319,'blocks_3_split_5050_content_title',''),(119995,40319,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(119996,40319,'blocks_3_split_5050_content_heading','Working in Partnership'),(119997,40319,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(119998,40319,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(119999,40319,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(120000,40319,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(120001,40319,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(120002,40319,'blocks_3_split_5050_content_actions','1'),(120003,40319,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(120004,40319,'blocks_3_split_5050_content',''),(120005,40319,'_blocks_3_split_5050_content','field_61767afceb8ba'),(120006,40319,'blocks_4_acfe_flexible_toggle',''),(120007,40319,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(120008,40319,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(120009,40319,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(120010,40319,'blocks_4_content','<h2 style=\"text-align: center;\">Learn More About the Course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics Coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(120011,40319,'_blocks_4_content','field_6193c9b5eac84'),(120012,40319,'blocks_5_acfe_flexible_toggle',''),(120013,40319,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(120014,40319,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(120015,40319,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(120016,40319,'blocks_5_options_theme','#ffffff'),(120017,40319,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(120018,40319,'blocks_5_options',''),(120019,40319,'_blocks_5_options','field_6177cfcd8140f'),(120020,40319,'blocks_5_tabs_0_tab_label','What\'s Included'),(120021,40319,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(120022,40319,'blocks_5_tabs_0_tab_content_title',''),(120023,40319,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(120024,40319,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(120025,40319,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(120026,40319,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(120027,40319,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(120028,40319,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(120029,40319,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(120030,40319,'blocks_5_tabs_0_tab_content_actions','1'),(120031,40319,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(120032,40319,'blocks_5_tabs_0_tab_content',''),(120033,40319,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(120034,40319,'blocks_5_tabs_0_tab_image','39009'),(120035,40319,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(120036,40319,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(120037,40319,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(120038,40319,'blocks_5_tabs_1_tab_content_title',''),(120039,40319,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(120040,40319,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(120041,40319,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(120042,40319,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(120043,40319,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(120044,40319,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(120045,40319,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(120046,40319,'blocks_5_tabs_1_tab_content_actions','1'),(120047,40319,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(120048,40319,'blocks_5_tabs_1_tab_content',''),(120049,40319,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(120050,40319,'blocks_5_tabs_1_tab_image','31067'),(120051,40319,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(120052,40319,'blocks_5_tabs','2'),(120053,40319,'_blocks_5_tabs','field_6177cff281419'),(120054,40319,'blocks_6_acfe_flexible_toggle',''),(120055,40319,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(120056,40319,'blocks_6_acfe_flexible_layout_title','About Rachel'),(120057,40319,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(120058,40319,'blocks_6_options_theme','#ffffff'),(120059,40319,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(120060,40319,'blocks_6_options_reverse','0'),(120061,40319,'_blocks_6_options_reverse','field_61768049bb8ac'),(120062,40319,'blocks_6_options',''),(120063,40319,'_blocks_6_options','field_617682517c334'),(120064,40319,'blocks_6_split_5050_image','39052'),(120065,40319,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(120066,40319,'blocks_6_split_5050_video',''),(120067,40319,'_blocks_6_split_5050_video','field_6239f3160848a'),(120068,40319,'blocks_6_split_5050_content_title',''),(120069,40319,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(120070,40319,'blocks_6_split_5050_content_heading','Rachel Frances Thomson'),(120071,40319,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(120072,40319,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(120073,40319,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(120074,40319,'blocks_6_split_5050_content_actions',''),(120075,40319,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(120076,40319,'blocks_6_split_5050_content',''),(120077,40319,'_blocks_6_split_5050_content','field_61767afceb8ba'),(120078,40319,'blocks_7_acfe_flexible_toggle',''),(120079,40319,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(120080,40319,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(120081,40319,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(120082,40319,'blocks_7_options_theme','#ffffff'),(120083,40319,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(120084,40319,'blocks_7_options_state','0'),(120085,40319,'_blocks_7_options_state','field_6239fcb7508c5'),(120086,40319,'blocks_7_options',''),(120087,40319,'_blocks_7_options','field_6177e2991ac44'),(120088,40319,'blocks_7_content_title',''),(120089,40319,'_blocks_7_content_title','field_64d237e8bb1e2'),(120090,40319,'blocks_7_content_heading','Frequently asked questions'),(120091,40319,'_blocks_7_content_heading','field_64d237e8bb1e3'),(120092,40319,'blocks_7_content_text',''),(120093,40319,'_blocks_7_content_text','field_64d237e8bb1e4'),(120094,40319,'blocks_7_content_actions',''),(120095,40319,'_blocks_7_content_actions','field_64d237e8bb1e5'),(120096,40319,'blocks_7_content_align','left'),(120097,40319,'_blocks_7_content_align','field_64d2443e6b6aa'),(120098,40319,'blocks_7_content',''),(120099,40319,'_blocks_7_content','field_64d237e8bb1e1'),(120100,40319,'blocks_7_accordion_content','faqs'),(120101,40319,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(120102,40319,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(120103,40319,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(120104,40319,'blocks_7_actions',''),(120105,40319,'_blocks_7_actions','field_61a746a817f7a'),(120106,40319,'blocks_8_acfe_flexible_toggle',''),(120107,40319,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(120108,40319,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(120109,40319,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(120110,40319,'blocks_8_options_alignment','center'),(120111,40319,'_blocks_8_options_alignment','field_61769449f5490'),(120112,40319,'blocks_8_options',''),(120113,40319,'_blocks_8_options','field_617693e1428f0'),(120114,40319,'blocks_8_promo_panel_image','39035'),(120115,40319,'_blocks_8_promo_panel_image','field_617693e1428f3'),(120116,40319,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(120117,40319,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(120118,40319,'blocks_8_promo_panel_content_text','Download a price guide today to receive an exclusive 10% off for all David Lloyd Personal Trainers.'),(120119,40319,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(120120,40319,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(120121,40319,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(120122,40319,'blocks_8_promo_panel_content_actions','1'),(120123,40319,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(120124,40319,'blocks_8_promo_panel_content',''),(120125,40319,'_blocks_8_promo_panel_content','field_617693e1428f4'),(120126,40319,'hide_hero','0'),(120127,40319,'_hide_hero','field_66a2380fcda39'),(120128,40320,'hero_style','default'),(120129,40320,'_hero_style','field_62051d9dc5324'),(120130,40320,'_thumbnail_id','39067'),(120131,40320,'__thumbnail_id','field_617570855ddaf'),(120132,40320,'hero_image_pos_x','right'),(120133,40320,'_hero_image_pos_x','field_62ec3d05390bb'),(120134,40320,'hero_image_pos_y','top'),(120135,40320,'_hero_image_pos_y','field_62ec3d05390bc'),(120136,40320,'hero_image_pos',''),(120137,40320,'_hero_image_pos','field_62ec3d05390ba'),(120138,40320,'hero_title','Courses'),(120139,40320,'_hero_title','field_617571fe285e8'),(120140,40320,'hero_text','Explore Industry-Leading Biomechanics Courses for Fitness Professionals'),(120141,40320,'_hero_text','field_6175723c285e9'),(120142,40320,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(120143,40320,'_hero_actions_0_button','field_61757281285eb'),(120144,40320,'hero_actions','1'),(120145,40320,'_hero_actions','field_61757270285ea'),(120146,40320,'hero_icon',''),(120147,40320,'_hero_icon','field_61a6182199d03'),(120148,40320,'fft_hide_from_listings','0'),(120149,40320,'_fft_hide_from_listings','field_61f1320446ab2'),(120150,40320,'fft_page_format','default'),(120151,40320,'_fft_page_format','field_61ae213f1f218'),(120152,40320,'fft_hide_nav','0'),(120153,40320,'_fft_hide_nav','field_635bd5e43527c'),(120154,40320,'fft_hide_header_call_to_action','0'),(120155,40320,'_fft_hide_header_call_to_action','field_635bd6723527d'),(120156,40320,'fft_page_sitemap','0'),(120157,40320,'_fft_page_sitemap','field_61af9b34e8181'),(120158,40320,'blocks','a:5:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:14:\"course_compare\";i:3;s:5:\"cards\";i:4;s:8:\"template\";}'),(120159,40320,'_blocks','field_6176696113096'),(120160,40320,'blocks_0_acfe_flexible_toggle',''),(120161,40320,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(120162,40320,'blocks_0_acfe_flexible_layout_title','Icons'),(120163,40320,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(120164,40320,'blocks_0_options_theme','#b61234'),(120165,40320,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(120166,40320,'blocks_0_options_format','row'),(120167,40320,'_blocks_0_options_format','field_64bfde9a90690'),(120168,40320,'blocks_0_options',''),(120169,40320,'_blocks_0_options','field_64bfdd9b90684'),(120170,40320,'blocks_0_icon_row_items_0_icon','world.svg'),(120171,40320,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(120172,40320,'blocks_0_icon_row_items_0_label',''),(120173,40320,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(120174,40320,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(120175,40320,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(120176,40320,'blocks_0_icon_row_items_1_icon','home-study.svg'),(120177,40320,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(120178,40320,'blocks_0_icon_row_items_1_label',''),(120179,40320,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(120180,40320,'blocks_0_icon_row_items_1_text','Built and taught in house'),(120181,40320,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(120182,40320,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(120183,40320,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(120184,40320,'blocks_0_icon_row_items_2_label',''),(120185,40320,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(120186,40320,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(120187,40320,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(120188,40320,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(120189,40320,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(120190,40320,'blocks_0_icon_row_items_3_label',''),(120191,40320,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(120192,40320,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(120193,40320,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(120194,40320,'blocks_0_icon_row_items','4'),(120195,40320,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(120196,40320,'blocks_2_acfe_flexible_toggle',''),(120197,40320,'_blocks_2_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(120198,40320,'blocks_2_acfe_flexible_layout_title','Course Comparison'),(120199,40320,'_blocks_2_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(120200,40320,'blocks_2_options_theme','#ffffff'),(120201,40320,'_blocks_2_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(120202,40320,'blocks_2_options',''),(120203,40320,'_blocks_2_options','field_617ac0b7f6c08'),(120204,40320,'blocks_2_show','category'),(120205,40320,'_blocks_2_show','field_61a49cba9d946'),(120206,40320,'hide_hero','0'),(120207,40320,'_hide_hero','field_66a2380fcda39'),(120208,40320,'blocks_2_category','406'),(120209,40320,'_blocks_2_category','field_61a49cd79d947'),(120210,40320,'blocks_3_acfe_flexible_toggle',''),(120211,40320,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(120212,40320,'blocks_3_acfe_flexible_layout_title','Cards'),(120213,40320,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(120214,40320,'blocks_3_options_theme','#ffffff'),(120215,40320,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(120216,40320,'blocks_3_options_format','carousel'),(120217,40320,'_blocks_3_options_format','field_617a7b15245b5'),(120218,40320,'blocks_3_options_style','default'),(120219,40320,'_blocks_3_options_style','field_6278ffb63484a'),(120220,40320,'blocks_3_options_cards_current_listing','0'),(120221,40320,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(120222,40320,'blocks_3_options_cards_content','custom'),(120223,40320,'_blocks_3_options_cards_content','field_617aba6122688'),(120224,40320,'blocks_3_options',''),(120225,40320,'_blocks_3_options','field_617a7b15245b3'),(120226,40320,'blocks_3_cards_custom_0_image','38321'),(120227,40320,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(120228,40320,'blocks_3_cards_custom_0_title','CPD Courses'),(120229,40320,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(120230,40320,'blocks_3_cards_custom_0_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(120231,40320,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(120232,40320,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:17:\"Find a CPD Course\";s:3:\"url\";s:54:\"https://biomechanicseducation.com/courses/cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(120233,40320,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(120234,40320,'blocks_3_cards_custom_1_image','39047'),(120235,40320,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(120236,40320,'blocks_3_cards_custom_1_title','Diploma in Biomechanics Coaching'),(120237,40320,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(120238,40320,'blocks_3_cards_custom_1_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(120239,40320,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(120240,40320,'blocks_3_cards_custom_1_link',''),(120241,40320,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(120242,40320,'blocks_3_cards_custom_2_image','39437'),(120243,40320,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(120244,40320,'blocks_3_cards_custom_2_title','Lvl 4 Personal Trainer with Biomechanics'),(120245,40320,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(120246,40320,'blocks_3_cards_custom_2_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(120247,40320,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(120248,40320,'blocks_3_cards_custom_2_link',''),(120249,40320,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(120250,40320,'blocks_3_cards_custom','3'),(120251,40320,'_blocks_3_cards_custom','field_6194cbf84d386'),(120252,40320,'blocks_1_acfe_flexible_toggle',''),(120253,40320,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(120254,40320,'blocks_1_acfe_flexible_layout_title','Text Block'),(120255,40320,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(120256,40320,'blocks_1_options_theme','#ffffff'),(120257,40320,'_blocks_1_options_theme','field_6176830e2ad17'),(120258,40320,'blocks_1_options',''),(120259,40320,'_blocks_1_options','field_6176830e2ad16'),(120260,40320,'blocks_1_text_block_heading','Overview'),(120261,40320,'_blocks_1_text_block_heading','field_617669d413097'),(120262,40320,'blocks_1_text_block_content','Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.'),(120263,40320,'_blocks_1_text_block_content','field_617669ec13098'),(120264,40320,'blocks_4_acfe_flexible_toggle',''),(120265,40320,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(120266,40320,'blocks_4_acfe_flexible_layout_title','Template'),(120267,40320,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(120268,40320,'blocks_4_template','39207'),(120269,40320,'_blocks_4_template','field_617bdd570fe01'),(120270,39278,'_wp_old_date','2024-09-06'),(120271,39348,'_wp_old_date','2024-09-06'),(120272,39486,'_wp_old_date','2024-09-06'),(120273,39485,'_wp_old_date','2024-09-06'),(120274,39487,'_wp_old_date','2024-09-06'),(120275,39279,'_wp_old_date','2024-09-06'),(120276,39325,'_wp_old_date','2024-09-06'),(120277,39324,'_wp_old_date','2024-09-06'),(120278,39323,'_wp_old_date','2024-09-06'),(120279,39322,'_wp_old_date','2024-09-06'),(120280,39321,'_wp_old_date','2024-09-06'),(120281,39320,'_wp_old_date','2024-09-06'),(120282,39319,'_wp_old_date','2024-09-06'),(120283,39280,'_wp_old_date','2024-09-06'),(120284,39522,'_wp_old_date','2024-09-06'),(120285,39281,'_wp_old_date','2024-09-06'),(120286,39344,'_wp_old_date','2024-09-06'),(120287,39318,'_wp_old_date','2024-09-06'),(120291,40321,'_edit_lock','1749572553:15'),(120292,40321,'_edit_last','15'),(120293,40321,'hide_hero','0'),(120294,40321,'_hide_hero','field_66a2380fcda39'),(120295,40321,'hero_title','Thank you!'),(120296,40321,'_hero_title','field_617571fe285e8'),(120297,40321,'hero_text','Your digital price guide has been sent directly to your email inbox, but if you can\'t wait to get your hands on it you can access your guide straight away below!'),(120298,40321,'_hero_text','field_6175723c285e9'),(120299,40321,'hero_actions','1'),(120300,40321,'_hero_actions','field_61757270285ea'),(120301,40321,'hero_style','default'),(120302,40321,'_hero_style','field_62051d9dc5324'),(120304,40321,'__thumbnail_id','field_617570855ddaf'),(120305,40321,'hero_image_pos_x','right'),(120306,40321,'_hero_image_pos_x','field_62ec3d05390bb'),(120307,40321,'hero_image_pos_y','top'),(120308,40321,'_hero_image_pos_y','field_62ec3d05390bc'),(120309,40321,'hero_image_pos',''),(120310,40321,'_hero_image_pos','field_62ec3d05390ba'),(120311,40321,'fft_hide_from_listings','0'),(120312,40321,'_fft_hide_from_listings','field_61f1320446ab2'),(120313,40321,'fft_page_format','default'),(120314,40321,'_fft_page_format','field_61ae213f1f218'),(120315,40321,'fft_hide_nav','0'),(120316,40321,'_fft_hide_nav','field_635bd5e43527c'),(120317,40321,'fft_hide_header_call_to_action','0'),(120318,40321,'_fft_hide_header_call_to_action','field_635bd6723527d'),(120319,40321,'fft_page_sitemap','0'),(120320,40321,'_fft_page_sitemap','field_61af9b34e8181'),(120321,40321,'blocks','a:2:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";}'),(120322,40321,'_blocks','field_6176696113096'),(120323,40321,'_yoast_wpseo_estimated-reading-time-minutes','1'),(120324,40322,'hide_hero','0'),(120325,40322,'_hide_hero','field_66a2380fcda39'),(120326,40322,'hero_title','Thank you!'),(120327,40322,'_hero_title','field_617571fe285e8'),(120328,40322,'hero_text','Your digital price guide has been sent directly to your email inbox, but if you can\'t wait to get your hands on it you can access your guide straight away below!'),(120329,40322,'_hero_text','field_6175723c285e9'),(120330,40322,'hero_actions',''),(120331,40322,'_hero_actions','field_61757270285ea'),(120332,40322,'hero_style','default'),(120333,40322,'_hero_style','field_62051d9dc5324'),(120334,40322,'_thumbnail_id',''),(120335,40322,'__thumbnail_id','field_617570855ddaf'),(120336,40322,'hero_image_pos_x','right'),(120337,40322,'_hero_image_pos_x','field_62ec3d05390bb'),(120338,40322,'hero_image_pos_y','top'),(120339,40322,'_hero_image_pos_y','field_62ec3d05390bc'),(120340,40322,'hero_image_pos',''),(120341,40322,'_hero_image_pos','field_62ec3d05390ba'),(120342,40322,'fft_hide_from_listings','0'),(120343,40322,'_fft_hide_from_listings','field_61f1320446ab2'),(120344,40322,'fft_page_format','default'),(120345,40322,'_fft_page_format','field_61ae213f1f218'),(120346,40322,'fft_hide_nav','0'),(120347,40322,'_fft_hide_nav','field_635bd5e43527c'),(120348,40322,'fft_hide_header_call_to_action','0'),(120349,40322,'_fft_hide_header_call_to_action','field_635bd6723527d'),(120350,40322,'fft_page_sitemap','0'),(120351,40322,'_fft_page_sitemap','field_61af9b34e8181'),(120352,40322,'blocks',''),(120353,40322,'_blocks','field_6176696113096'),(120354,40321,'hero_actions_0_button','a:3:{s:5:\"title\";s:14:\"Get Your Guide\";s:3:\"url\";s:12:\"#row-40321-2\";s:6:\"target\";s:0:\"\";}'),(120355,40321,'_hero_actions_0_button','field_61757281285eb'),(120403,40323,'hide_hero','0'),(120404,40323,'_hide_hero','field_66a2380fcda39'),(120405,40323,'hero_title','Thank you!'),(120406,40323,'_hero_title','field_617571fe285e8'),(120407,40323,'hero_text','Your digital price guide has been sent directly to your email inbox, but if you can\'t wait to get your hands on it you can access your guide straight away below!'),(120408,40323,'_hero_text','field_6175723c285e9'),(120409,40323,'hero_actions','1'),(120410,40323,'_hero_actions','field_61757270285ea'),(120411,40323,'hero_style','default'),(120412,40323,'_hero_style','field_62051d9dc5324'),(120413,40323,'hero_image_pos_x','right'),(120414,40323,'_hero_image_pos_x','field_62ec3d05390bb'),(120415,40323,'hero_image_pos_y','top'),(120416,40323,'_hero_image_pos_y','field_62ec3d05390bc'),(120417,40323,'hero_image_pos',''),(120418,40323,'_hero_image_pos','field_62ec3d05390ba'),(120419,40323,'fft_hide_from_listings','0'),(120420,40323,'_fft_hide_from_listings','field_61f1320446ab2'),(120421,40323,'fft_page_format','default'),(120422,40323,'_fft_page_format','field_61ae213f1f218'),(120423,40323,'fft_hide_nav','0'),(120424,40323,'_fft_hide_nav','field_635bd5e43527c'),(120425,40323,'fft_hide_header_call_to_action','0'),(120426,40323,'_fft_hide_header_call_to_action','field_635bd6723527d'),(120427,40323,'fft_page_sitemap','0'),(120428,40323,'_fft_page_sitemap','field_61af9b34e8181'),(120429,40323,'blocks','a:2:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";}'),(120430,40323,'_blocks','field_6176696113096'),(120431,40323,'hero_actions_0_button','a:3:{s:5:\"title\";s:14:\"Get Your Guide\";s:3:\"url\";s:12:\"#row-40321-2\";s:6:\"target\";s:0:\"\";}'),(120432,40323,'_hero_actions_0_button','field_61757281285eb'),(120433,40323,'_thumbnail_id',''),(120434,40323,'__thumbnail_id','field_617570855ddaf'),(120435,40323,'blocks_0_acfe_flexible_toggle',''),(120436,40323,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(120437,40323,'blocks_0_acfe_flexible_layout_title','Form'),(120438,40323,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(120439,40323,'blocks_0_row_content_format','standard'),(120440,40323,'_blocks_0_row_content_format','field_6481ead962881'),(120441,40323,'blocks_0_row_content_title','psst'),(120442,40323,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(120443,40323,'blocks_0_row_content_heading','Can we trouble you for a few more details? '),(120444,40323,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(120445,40323,'blocks_0_row_content_text','We want to make sure your experience with us is as relevant and supportive as it can possibly be, so we would love to learn a bit more about you.\r\n\r\nWe promise it won\'t take more than 1.5 minutes and we won\'t share this information with anyone else.'),(120446,40323,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(120447,40323,'blocks_0_row_content_actions',''),(120448,40323,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(120449,40323,'blocks_0_row_content',''),(120450,40323,'_blocks_0_row_content','field_61a0f5f5b3db0'),(120451,40323,'blocks_0_row_form',''),(120452,40323,'_blocks_0_row_form','field_61a4ff2c0b08e'),(120453,40323,'blocks_0_row_form_button_label','Next'),(120454,40323,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(120455,40323,'blocks_1_acfe_flexible_toggle',''),(120456,40323,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(120457,40323,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(120458,40323,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(120459,40323,'blocks_1_options_theme','#b61234'),(120460,40323,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(120461,40323,'blocks_1_options_reverse','0'),(120462,40323,'_blocks_1_options_reverse','field_61768049bb8ac'),(120463,40323,'blocks_1_options',''),(120464,40323,'_blocks_1_options','field_617682517c334'),(120465,40323,'blocks_1_split_5050_image',''),(120466,40323,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(120467,40323,'blocks_1_split_5050_video','https://www.youtube.com/watch?v=xgRiAj1qEog&t=1s'),(120468,40323,'_blocks_1_split_5050_video','field_6239f3160848a'),(120469,40323,'blocks_1_split_5050_content_title',''),(120470,40323,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(120471,40323,'blocks_1_split_5050_content_heading','Congratulations!'),(120472,40323,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(120473,40323,'blocks_1_split_5050_content_text','We will be in touch to discuss your enquiry shortly.\r\n\r\nBut first, the founder, Rachel Frances Thomson would like to welcome you to Biomechanics Education in this short video.'),(120474,40323,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(120475,40323,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:16:\"OPEN PRICE GUIDE\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(120476,40323,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(120477,40323,'blocks_1_split_5050_content_actions','1'),(120478,40323,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(120479,40323,'blocks_1_split_5050_content',''),(120480,40323,'_blocks_1_split_5050_content','field_61767afceb8ba'),(120560,40321,'_thumbnail_id','39186'),(120561,40325,'hide_hero','0'),(120562,40325,'_hide_hero','field_66a2380fcda39'),(120563,40325,'hero_title','Thank you!'),(120564,40325,'_hero_title','field_617571fe285e8'),(120565,40325,'hero_text','Your digital price guide has been sent directly to your email inbox, but if you can\'t wait to get your hands on it you can access your guide straight away below!'),(120566,40325,'_hero_text','field_6175723c285e9'),(120567,40325,'hero_actions','1'),(120568,40325,'_hero_actions','field_61757270285ea'),(120569,40325,'hero_style','default'),(120570,40325,'_hero_style','field_62051d9dc5324'),(120571,40325,'hero_image_pos_x','right'),(120572,40325,'_hero_image_pos_x','field_62ec3d05390bb'),(120573,40325,'hero_image_pos_y','top'),(120574,40325,'_hero_image_pos_y','field_62ec3d05390bc'),(120575,40325,'hero_image_pos',''),(120576,40325,'_hero_image_pos','field_62ec3d05390ba'),(120577,40325,'fft_hide_from_listings','0'),(120578,40325,'_fft_hide_from_listings','field_61f1320446ab2'),(120579,40325,'fft_page_format','default'),(120580,40325,'_fft_page_format','field_61ae213f1f218'),(120581,40325,'fft_hide_nav','0'),(120582,40325,'_fft_hide_nav','field_635bd5e43527c'),(120583,40325,'fft_hide_header_call_to_action','0'),(120584,40325,'_fft_hide_header_call_to_action','field_635bd6723527d'),(120585,40325,'fft_page_sitemap','0'),(120586,40325,'_fft_page_sitemap','field_61af9b34e8181'),(120587,40325,'blocks','a:2:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";}'),(120588,40325,'_blocks','field_6176696113096'),(120589,40325,'hero_actions_0_button','a:3:{s:5:\"title\";s:14:\"Get Your Guide\";s:3:\"url\";s:12:\"#row-40321-2\";s:6:\"target\";s:0:\"\";}'),(120590,40325,'_hero_actions_0_button','field_61757281285eb'),(120591,40325,'blocks_0_acfe_flexible_toggle',''),(120592,40325,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(120593,40325,'blocks_0_acfe_flexible_layout_title','Form'),(120594,40325,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(120595,40325,'blocks_0_row_content_format','standard'),(120596,40325,'_blocks_0_row_content_format','field_6481ead962881'),(120597,40325,'blocks_0_row_content_title','psst'),(120598,40325,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(120599,40325,'blocks_0_row_content_heading','Can we trouble you for a few more details? '),(120600,40325,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(120601,40325,'blocks_0_row_content_text','We want to make sure your experience with us is as relevant and supportive as it can possibly be, so we would love to learn a bit more about you.\r\n\r\nWe promise it won\'t take more than 1.5 minutes and we won\'t share this information with anyone else.'),(120602,40325,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(120603,40325,'blocks_0_row_content_actions',''),(120604,40325,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(120605,40325,'blocks_0_row_content',''),(120606,40325,'_blocks_0_row_content','field_61a0f5f5b3db0'),(120607,40325,'blocks_0_row_form',''),(120608,40325,'_blocks_0_row_form','field_61a4ff2c0b08e'),(120609,40325,'blocks_0_row_form_button_label','Next'),(120610,40325,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(120611,40325,'blocks_1_acfe_flexible_toggle',''),(120612,40325,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(120613,40325,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(120614,40325,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(120615,40325,'blocks_1_options_theme','#b61234'),(120616,40325,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(120617,40325,'blocks_1_options_reverse','0'),(120618,40325,'_blocks_1_options_reverse','field_61768049bb8ac'),(120619,40325,'blocks_1_options',''),(120620,40325,'_blocks_1_options','field_617682517c334'),(120621,40325,'blocks_1_split_5050_image',''),(120622,40325,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(120623,40325,'blocks_1_split_5050_video','https://www.youtube.com/watch?v=xgRiAj1qEog&t=1s'),(120624,40325,'_blocks_1_split_5050_video','field_6239f3160848a'),(120625,40325,'blocks_1_split_5050_content_title',''),(120626,40325,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(120627,40325,'blocks_1_split_5050_content_heading','Congratulations!'),(120628,40325,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(120629,40325,'blocks_1_split_5050_content_text','We will be in touch to discuss your enquiry shortly.\r\n\r\nBut first, the founder, Rachel Frances Thomson would like to welcome you to Biomechanics Education in this short video.'),(120630,40325,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(120631,40325,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:16:\"OPEN PRICE GUIDE\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(120632,40325,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(120633,40325,'blocks_1_split_5050_content_actions','1'),(120634,40325,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(120635,40325,'blocks_1_split_5050_content',''),(120636,40325,'_blocks_1_split_5050_content','field_61767afceb8ba'),(120637,40325,'_thumbnail_id','39186'),(120638,40325,'__thumbnail_id','field_617570855ddaf'),(120639,40326,'hide_hero','0'),(120640,40326,'_hide_hero','field_66a2380fcda39'),(120641,40326,'hero_title','Thank you!'),(120642,40326,'_hero_title','field_617571fe285e8'),(120643,40326,'hero_text','Your digital price guide has been sent directly to your email inbox, but if you can\'t wait to get your hands on it you can access your guide straight away below!'),(120644,40326,'_hero_text','field_6175723c285e9'),(120645,40326,'hero_actions','1'),(120646,40326,'_hero_actions','field_61757270285ea'),(120647,40326,'hero_style','default'),(120648,40326,'_hero_style','field_62051d9dc5324'),(120649,40326,'hero_image_pos_x','right'),(120650,40326,'_hero_image_pos_x','field_62ec3d05390bb'),(120651,40326,'hero_image_pos_y','top'),(120652,40326,'_hero_image_pos_y','field_62ec3d05390bc'),(120653,40326,'hero_image_pos',''),(120654,40326,'_hero_image_pos','field_62ec3d05390ba'),(120655,40326,'fft_hide_from_listings','0'),(120656,40326,'_fft_hide_from_listings','field_61f1320446ab2'),(120657,40326,'fft_page_format','default'),(120658,40326,'_fft_page_format','field_61ae213f1f218'),(120659,40326,'fft_hide_nav','0'),(120660,40326,'_fft_hide_nav','field_635bd5e43527c'),(120661,40326,'fft_hide_header_call_to_action','0'),(120662,40326,'_fft_hide_header_call_to_action','field_635bd6723527d'),(120663,40326,'fft_page_sitemap','0'),(120664,40326,'_fft_page_sitemap','field_61af9b34e8181'),(120665,40326,'blocks','a:2:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";}'),(120666,40326,'_blocks','field_6176696113096'),(120667,40326,'hero_actions_0_button','a:3:{s:5:\"title\";s:14:\"Get Your Guide\";s:3:\"url\";s:12:\"#row-40321-2\";s:6:\"target\";s:0:\"\";}'),(120668,40326,'_hero_actions_0_button','field_61757281285eb'),(120669,40326,'blocks_0_acfe_flexible_toggle',''),(120670,40326,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(120671,40326,'blocks_0_acfe_flexible_layout_title','Form'),(120672,40326,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(120673,40326,'blocks_0_row_content_format','standard'),(120674,40326,'_blocks_0_row_content_format','field_6481ead962881'),(120675,40326,'blocks_0_row_content_title','psst'),(120676,40326,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(120677,40326,'blocks_0_row_content_heading','Can we trouble you for a few more details? '),(120678,40326,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(120679,40326,'blocks_0_row_content_text','We want to make sure your experience with us is as relevant and supportive as it can possibly be, so we would love to learn a bit more about you.\r\n\r\nWe promise it won\'t take more than 1.5 minutes and we won\'t share this information with anyone else.'),(120680,40326,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(120681,40326,'blocks_0_row_content_actions',''),(120682,40326,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(120683,40326,'blocks_0_row_content',''),(120684,40326,'_blocks_0_row_content','field_61a0f5f5b3db0'),(120685,40326,'blocks_0_row_form',''),(120686,40326,'_blocks_0_row_form','field_61a4ff2c0b08e'),(120687,40326,'blocks_0_row_form_button_label','Next'),(120688,40326,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(120689,40326,'blocks_1_acfe_flexible_toggle',''),(120690,40326,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(120691,40326,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(120692,40326,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(120693,40326,'blocks_1_options_theme','#ffffff'),(120694,40326,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(120695,40326,'blocks_1_options_reverse','0'),(120696,40326,'_blocks_1_options_reverse','field_61768049bb8ac'),(120697,40326,'blocks_1_options',''),(120698,40326,'_blocks_1_options','field_617682517c334'),(120699,40326,'blocks_1_split_5050_image',''),(120700,40326,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(120701,40326,'blocks_1_split_5050_video','https://www.youtube.com/watch?v=xgRiAj1qEog&t=1s'),(120702,40326,'_blocks_1_split_5050_video','field_6239f3160848a'),(120703,40326,'blocks_1_split_5050_content_title',''),(120704,40326,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(120705,40326,'blocks_1_split_5050_content_heading','Congratulations!'),(120706,40326,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(120707,40326,'blocks_1_split_5050_content_text','We will be in touch to discuss your enquiry shortly.\r\n\r\nBut first, the founder, Rachel Frances Thomson would like to welcome you to Biomechanics Education in this short video.'),(120708,40326,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(120709,40326,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:16:\"OPEN PRICE GUIDE\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(120710,40326,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(120711,40326,'blocks_1_split_5050_content_actions','1'),(120712,40326,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(120713,40326,'blocks_1_split_5050_content',''),(120714,40326,'_blocks_1_split_5050_content','field_61767afceb8ba'),(120715,40326,'_thumbnail_id','39186'),(120716,40326,'__thumbnail_id','field_617570855ddaf'),(120717,40327,'_edit_lock','1726150812:5'),(120718,40327,'_edit_last','5'),(120719,40327,'hide_hero','0'),(120720,40327,'_hide_hero','field_66a2380fcda39'),(120721,40327,'hero_title','Oops...'),(120722,40327,'_hero_title','field_617571fe285e8'),(120723,40327,'hero_text','It seems like something went wrong when submitting your form, please try your submission again below. '),(120724,40327,'_hero_text','field_6175723c285e9'),(120725,40327,'hero_actions',''),(120726,40327,'_hero_actions','field_61757270285ea'),(120727,40327,'hero_style','default'),(120728,40327,'_hero_style','field_62051d9dc5324'),(120730,40327,'__thumbnail_id','field_617570855ddaf'),(120731,40327,'hero_image_pos_x','right'),(120732,40327,'_hero_image_pos_x','field_62ec3d05390bb'),(120733,40327,'hero_image_pos_y','top'),(120734,40327,'_hero_image_pos_y','field_62ec3d05390bc'),(120735,40327,'hero_image_pos',''),(120736,40327,'_hero_image_pos','field_62ec3d05390ba'),(120737,40327,'fft_hide_from_listings','0'),(120738,40327,'_fft_hide_from_listings','field_61f1320446ab2'),(120739,40327,'fft_page_format','default'),(120740,40327,'_fft_page_format','field_61ae213f1f218'),(120741,40327,'fft_hide_nav','0'),(120742,40327,'_fft_hide_nav','field_635bd5e43527c'),(120743,40327,'fft_hide_header_call_to_action','0'),(120744,40327,'_fft_hide_header_call_to_action','field_635bd6723527d'),(120745,40327,'fft_page_sitemap','0'),(120746,40327,'_fft_page_sitemap','field_61af9b34e8181'),(120747,40327,'blocks','a:2:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";}'),(120748,40327,'_blocks','field_6176696113096'),(120749,40327,'_yoast_wpseo_estimated-reading-time-minutes','0'),(120750,40328,'hide_hero','0'),(120751,40328,'_hide_hero','field_66a2380fcda39'),(120752,40328,'hero_title','Oops...'),(120753,40328,'_hero_title','field_617571fe285e8'),(120754,40328,'hero_text','It seems like something went wrong when submitting your form, please try your submission again below. '),(120755,40328,'_hero_text','field_6175723c285e9'),(120756,40328,'hero_actions',''),(120757,40328,'_hero_actions','field_61757270285ea'),(120758,40328,'hero_style','default'),(120759,40328,'_hero_style','field_62051d9dc5324'),(120760,40328,'_thumbnail_id',''),(120761,40328,'__thumbnail_id','field_617570855ddaf'),(120762,40328,'hero_image_pos_x','right'),(120763,40328,'_hero_image_pos_x','field_62ec3d05390bb'),(120764,40328,'hero_image_pos_y','top'),(120765,40328,'_hero_image_pos_y','field_62ec3d05390bc'),(120766,40328,'hero_image_pos',''),(120767,40328,'_hero_image_pos','field_62ec3d05390ba'),(120768,40328,'fft_hide_from_listings','0'),(120769,40328,'_fft_hide_from_listings','field_61f1320446ab2'),(120770,40328,'fft_page_format','default'),(120771,40328,'_fft_page_format','field_61ae213f1f218'),(120772,40328,'fft_hide_nav','0'),(120773,40328,'_fft_hide_nav','field_635bd5e43527c'),(120774,40328,'fft_hide_header_call_to_action','0'),(120775,40328,'_fft_hide_header_call_to_action','field_635bd6723527d'),(120776,40328,'fft_page_sitemap','0'),(120777,40328,'_fft_page_sitemap','field_61af9b34e8181'),(120778,40328,'blocks',''),(120779,40328,'_blocks','field_6176696113096'),(120780,40327,'_thumbnail_id',''),(120781,40327,'blocks_0_acfe_flexible_toggle',''),(120782,40327,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(120783,40327,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(120784,40327,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(120785,40327,'blocks_0_options_theme','#ffffff'),(120786,40327,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(120787,40327,'blocks_0_options_reverse','0'),(120788,40327,'_blocks_0_options_reverse','field_61768049bb8ac'),(120789,40327,'blocks_0_options',''),(120790,40327,'_blocks_0_options','field_617682517c334'),(120791,40327,'blocks_0_split_5050_image',''),(120792,40327,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(120793,40327,'blocks_0_split_5050_video',''),(120794,40327,'_blocks_0_split_5050_video','field_6239f3160848a'),(120795,40327,'blocks_0_split_5050_content_title',''),(120796,40327,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(120797,40327,'blocks_0_split_5050_content_heading','Sorry about that! '),(120798,40327,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(120799,40327,'blocks_0_split_5050_content_text','It seems like something went wrong when submitting your form, please try again below we would love to hear from you!\r\n\r\nAlternatively please do give us a call on <a href=\"tel:02038416151\">02038416151</a>, where one of our friendly Career Advisors will be happy to help.'),(120800,40327,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(120801,40327,'blocks_0_split_5050_content_actions',''),(120802,40327,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(120803,40327,'blocks_0_split_5050_content',''),(120804,40327,'_blocks_0_split_5050_content','field_61767afceb8ba'),(120805,40327,'blocks_1_acfe_flexible_toggle',''),(120806,40327,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(120807,40327,'blocks_1_acfe_flexible_layout_title','Form'),(120808,40327,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(120809,40327,'blocks_1_row_content_format','standard'),(120810,40327,'_blocks_1_row_content_format','field_6481ead962881'),(120811,40327,'blocks_1_row_content_title',''),(120812,40327,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(120813,40327,'blocks_1_row_content_heading','Please try again...'),(120814,40327,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(120815,40327,'blocks_1_row_content_text','It seems something may have gone wrong when previously submitting your form, please try again using this form. If you are still having problem please do give us a call, we would love to speak to you!'),(120816,40327,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(120817,40327,'blocks_1_row_content_actions',''),(120818,40327,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(120819,40327,'blocks_1_row_content',''),(120820,40327,'_blocks_1_row_content','field_61a0f5f5b3db0'),(120821,40327,'blocks_1_row_form',''),(120822,40327,'_blocks_1_row_form','field_61a4ff2c0b08e'),(120823,40327,'blocks_1_row_form_button_label','Download'),(120824,40327,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(120825,40329,'hide_hero','0'),(120826,40329,'_hide_hero','field_66a2380fcda39'),(120827,40329,'hero_title','Oops...'),(120828,40329,'_hero_title','field_617571fe285e8'),(120829,40329,'hero_text','It seems like something went wrong when submitting your form, please try your submission again below. '),(120830,40329,'_hero_text','field_6175723c285e9'),(120831,40329,'hero_actions',''),(120832,40329,'_hero_actions','field_61757270285ea'),(120833,40329,'hero_style','default'),(120834,40329,'_hero_style','field_62051d9dc5324'),(120835,40329,'hero_image_pos_x','right'),(120836,40329,'_hero_image_pos_x','field_62ec3d05390bb'),(120837,40329,'hero_image_pos_y','top'),(120838,40329,'_hero_image_pos_y','field_62ec3d05390bc'),(120839,40329,'hero_image_pos',''),(120840,40329,'_hero_image_pos','field_62ec3d05390ba'),(120841,40329,'fft_hide_from_listings','0'),(120842,40329,'_fft_hide_from_listings','field_61f1320446ab2'),(120843,40329,'fft_page_format','default'),(120844,40329,'_fft_page_format','field_61ae213f1f218'),(120845,40329,'fft_hide_nav','0'),(120846,40329,'_fft_hide_nav','field_635bd5e43527c'),(120847,40329,'fft_hide_header_call_to_action','0'),(120848,40329,'_fft_hide_header_call_to_action','field_635bd6723527d'),(120849,40329,'fft_page_sitemap','0'),(120850,40329,'_fft_page_sitemap','field_61af9b34e8181'),(120851,40329,'blocks','a:2:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";}'),(120852,40329,'_blocks','field_6176696113096'),(120853,40329,'_thumbnail_id',''),(120854,40329,'__thumbnail_id','field_617570855ddaf'),(120855,40329,'blocks_0_acfe_flexible_toggle',''),(120856,40329,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(120857,40329,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(120858,40329,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(120859,40329,'blocks_0_options_theme','#ffffff'),(120860,40329,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(120861,40329,'blocks_0_options_reverse','0'),(120862,40329,'_blocks_0_options_reverse','field_61768049bb8ac'),(120863,40329,'blocks_0_options',''),(120864,40329,'_blocks_0_options','field_617682517c334'),(120865,40329,'blocks_0_split_5050_image',''),(120866,40329,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(120867,40329,'blocks_0_split_5050_video',''),(120868,40329,'_blocks_0_split_5050_video','field_6239f3160848a'),(120869,40329,'blocks_0_split_5050_content_title',''),(120870,40329,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(120871,40329,'blocks_0_split_5050_content_heading','Sorry about that! '),(120872,40329,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(120873,40329,'blocks_0_split_5050_content_text','It seems like something went wrong when submitting your form, please try again below we would love to hear from you!\r\n\r\nAlternatively please do give us a call on <a href=\"tel:02038416151\">02038416151</a>, where one of our friendly Career Advisors will be happy to help.'),(120874,40329,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(120875,40329,'blocks_0_split_5050_content_actions',''),(120876,40329,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(120877,40329,'blocks_0_split_5050_content',''),(120878,40329,'_blocks_0_split_5050_content','field_61767afceb8ba'),(120879,40329,'blocks_1_acfe_flexible_toggle',''),(120880,40329,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(120881,40329,'blocks_1_acfe_flexible_layout_title','Form'),(120882,40329,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(120883,40329,'blocks_1_row_content_format','standard'),(120884,40329,'_blocks_1_row_content_format','field_6481ead962881'),(120885,40329,'blocks_1_row_content_title',''),(120886,40329,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(120887,40329,'blocks_1_row_content_heading','Please try again...'),(120888,40329,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(120889,40329,'blocks_1_row_content_text','It seems something may have gone wrong when previously submitting your form, please try again using this form. If you are still having problem please do give us a call, we would love to speak to you!'),(120890,40329,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(120891,40329,'blocks_1_row_content_actions',''),(120892,40329,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(120893,40329,'blocks_1_row_content',''),(120894,40329,'_blocks_1_row_content','field_61a0f5f5b3db0'),(120895,40329,'blocks_1_row_form',''),(120896,40329,'_blocks_1_row_form','field_61a4ff2c0b08e'),(120897,40329,'blocks_1_row_form_button_label','Download'),(120898,40329,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(120899,40280,'_edit_lock','1727342651:5'),(120901,40330,'hero_style','default'),(120902,40330,'_hero_style','field_62051d9dc5324'),(120903,40330,'hero_image_pos_x','right'),(120904,40330,'_hero_image_pos_x','field_62ec3d05390bb'),(120905,40330,'hero_image_pos_y','top'),(120906,40330,'_hero_image_pos_y','field_62ec3d05390bc'),(120907,40330,'hero_image_pos',''),(120908,40330,'_hero_image_pos','field_62ec3d05390ba'),(120909,40330,'hero_title','Getting Started'),(120910,40330,'_hero_title','field_617571fe285e8'),(120911,40330,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(120912,40330,'_hero_text','field_6175723c285e9'),(120913,40330,'hero_actions',''),(120914,40330,'_hero_actions','field_61757270285ea'),(120915,40330,'hero_icon','bars'),(120916,40330,'_hero_icon','field_61a6182199d03'),(120917,40330,'fft_hide_from_listings','0'),(120918,40330,'_fft_hide_from_listings','field_61f1320446ab2'),(120919,40330,'fft_page_format','default'),(120920,40330,'_fft_page_format','field_61ae213f1f218'),(120921,40330,'fft_hide_nav','0'),(120922,40330,'_fft_hide_nav','field_635bd5e43527c'),(120923,40330,'fft_hide_header_call_to_action','0'),(120924,40330,'_fft_hide_header_call_to_action','field_635bd6723527d'),(120925,40330,'fft_page_sitemap','0'),(120926,40330,'_fft_page_sitemap','field_61af9b34e8181'),(120927,40330,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:4:\"form\";}'),(120928,40330,'_blocks','field_6176696113096'),(120929,40330,'hide_hero','0'),(120930,40330,'_hide_hero','field_66a2380fcda39'),(120931,40330,'blocks_0_acfe_flexible_toggle',''),(120932,40330,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(120933,40330,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(120934,40330,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(120935,40330,'blocks_0_options_theme','#ffffff'),(120936,40330,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(120937,40330,'blocks_0_options_reverse','0'),(120938,40330,'_blocks_0_options_reverse','field_61768049bb8ac'),(120939,40330,'blocks_0_options',''),(120940,40330,'_blocks_0_options','field_617682517c334'),(120941,40330,'blocks_0_split_5050_image','39152'),(120942,40330,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(120943,40330,'blocks_0_split_5050_video',''),(120944,40330,'_blocks_0_split_5050_video','field_6239f3160848a'),(120945,40330,'blocks_0_split_5050_content_title',''),(120946,40330,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(120947,40330,'blocks_0_split_5050_content_heading','About our career guides'),(120948,40330,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(120949,40330,'blocks_0_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and multiple UK workshop locations. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(120950,40330,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(120951,40330,'blocks_0_split_5050_content_actions',''),(120952,40330,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(120953,40330,'blocks_0_split_5050_content',''),(120954,40330,'_blocks_0_split_5050_content','field_61767afceb8ba'),(120955,40330,'blocks_1_acfe_flexible_toggle',''),(120956,40330,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(120957,40330,'blocks_1_acfe_flexible_layout_title','Template'),(120958,40330,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(120959,40330,'blocks_1_template','39087'),(120960,40330,'_blocks_1_template','field_617bdd570fe01'),(120961,40330,'blocks_2_acfe_flexible_toggle',''),(120962,40330,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(120963,40330,'blocks_2_acfe_flexible_layout_title','Text Block'),(120964,40330,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(120965,40330,'blocks_2_options_theme','#ffffff'),(120966,40330,'_blocks_2_options_theme','field_6176830e2ad17'),(120967,40330,'blocks_2_options',''),(120968,40330,'_blocks_2_options','field_6176830e2ad16'),(120969,40330,'blocks_2_text_block_heading','Learn More About Biomechanics in Different Sectors'),(120970,40330,'_blocks_2_text_block_heading','field_617669d413097'),(120971,40330,'blocks_2_text_block_content',''),(120972,40330,'_blocks_2_text_block_content','field_617669ec13098'),(120973,40330,'blocks_3_acfe_flexible_toggle',''),(120974,40330,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(120975,40330,'blocks_3_acfe_flexible_layout_title','Cards'),(120976,40330,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(120977,40330,'blocks_3_options_theme','#ffffff'),(120978,40330,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(120979,40330,'blocks_3_options_format','carousel'),(120980,40330,'_blocks_3_options_format','field_617a7b15245b5'),(120981,40330,'blocks_3_options_style','default'),(120982,40330,'_blocks_3_options_style','field_6278ffb63484a'),(120983,40330,'blocks_3_options_cards_current_listing','0'),(120984,40330,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(120985,40330,'blocks_3_options_cards_content','custom'),(120986,40330,'_blocks_3_options_cards_content','field_617aba6122688'),(120987,40330,'blocks_3_options',''),(120988,40330,'_blocks_3_options','field_617a7b15245b3'),(120989,40330,'blocks_3_cards_custom_0_image','39215'),(120990,40330,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(120991,40330,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(120992,40330,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(120993,40330,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(120994,40330,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(120995,40330,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(120996,40330,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(120997,40330,'blocks_3_cards_custom_1_image','39243'),(120998,40330,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(120999,40330,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(121000,40330,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(121001,40330,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(121002,40330,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(121003,40330,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(121004,40330,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(121005,40330,'blocks_3_cards_custom_2_image','39247'),(121006,40330,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(121007,40330,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(121008,40330,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(121009,40330,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(121010,40330,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(121011,40330,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(121012,40330,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(121013,40330,'blocks_3_cards_custom_3_image','39256'),(121014,40330,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(121015,40330,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(121016,40330,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(121017,40330,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(121018,40330,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(121019,40330,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(121020,40330,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(121021,40330,'blocks_3_cards_custom_4_image','39251'),(121022,40330,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(121023,40330,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches'),(121024,40330,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(121025,40330,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(121026,40330,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(121027,40330,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(121028,40330,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(121029,40330,'blocks_3_cards_custom_5_image','39240'),(121030,40330,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(121031,40330,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(121032,40330,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(121033,40330,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(121034,40330,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(121035,40330,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(121036,40330,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(121037,40330,'blocks_3_cards_custom_6_image','39260'),(121038,40330,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(121039,40330,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(121040,40330,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(121041,40330,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(121042,40330,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(121043,40330,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(121044,40330,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(121045,40330,'blocks_3_cards_custom','7'),(121046,40330,'_blocks_3_cards_custom','field_6194cbf84d386'),(121047,40330,'blocks_4_acfe_flexible_toggle',''),(121048,40330,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(121049,40330,'blocks_4_acfe_flexible_layout_title','Form'),(121050,40330,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(121051,40330,'blocks_4_row_content_format','standard'),(121052,40330,'_blocks_4_row_content_format','field_6481ead962881'),(121053,40330,'blocks_4_row_content_title','Ready to get started ?'),(121054,40330,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(121055,40330,'blocks_4_row_content_heading','Ready to get started ?'),(121056,40330,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(121057,40330,'blocks_4_row_content_text','Complete The Form to Get Your Free Price Guide'),(121058,40330,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(121059,40330,'blocks_4_row_content_actions',''),(121060,40330,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(121061,40330,'blocks_4_row_content',''),(121062,40330,'_blocks_4_row_content','field_61a0f5f5b3db0'),(121063,40330,'blocks_4_row_form',''),(121064,40330,'_blocks_4_row_form','field_61a4ff2c0b08e'),(121065,40330,'blocks_4_row_form_button_label',''),(121066,40330,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(121067,40330,'_thumbnail_id',''),(121068,40330,'__thumbnail_id','field_617570855ddaf'),(121070,40331,'hero_style','default'),(121071,40331,'_hero_style','field_62051d9dc5324'),(121072,40331,'hero_image_pos_x','right'),(121073,40331,'_hero_image_pos_x','field_62ec3d05390bb'),(121074,40331,'hero_image_pos_y','top'),(121075,40331,'_hero_image_pos_y','field_62ec3d05390bc'),(121076,40331,'hero_image_pos',''),(121077,40331,'_hero_image_pos','field_62ec3d05390ba'),(121078,40331,'hero_title','Getting Started'),(121079,40331,'_hero_title','field_617571fe285e8'),(121080,40331,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(121081,40331,'_hero_text','field_6175723c285e9'),(121082,40331,'hero_actions',''),(121083,40331,'_hero_actions','field_61757270285ea'),(121084,40331,'hero_icon','bars'),(121085,40331,'_hero_icon','field_61a6182199d03'),(121086,40331,'fft_hide_from_listings','0'),(121087,40331,'_fft_hide_from_listings','field_61f1320446ab2'),(121088,40331,'fft_page_format','default'),(121089,40331,'_fft_page_format','field_61ae213f1f218'),(121090,40331,'fft_hide_nav','0'),(121091,40331,'_fft_hide_nav','field_635bd5e43527c'),(121092,40331,'fft_hide_header_call_to_action','0'),(121093,40331,'_fft_hide_header_call_to_action','field_635bd6723527d'),(121094,40331,'fft_page_sitemap','0'),(121095,40331,'_fft_page_sitemap','field_61af9b34e8181'),(121096,40331,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:4:\"form\";}'),(121097,40331,'_blocks','field_6176696113096'),(121098,40331,'hide_hero','0'),(121099,40331,'_hide_hero','field_66a2380fcda39'),(121100,40331,'blocks_0_acfe_flexible_toggle',''),(121101,40331,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(121102,40331,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(121103,40331,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(121104,40331,'blocks_0_options_theme','#ffffff'),(121105,40331,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(121106,40331,'blocks_0_options_reverse','0'),(121107,40331,'_blocks_0_options_reverse','field_61768049bb8ac'),(121108,40331,'blocks_0_options',''),(121109,40331,'_blocks_0_options','field_617682517c334'),(121110,40331,'blocks_0_split_5050_image','39152'),(121111,40331,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(121112,40331,'blocks_0_split_5050_video',''),(121113,40331,'_blocks_0_split_5050_video','field_6239f3160848a'),(121114,40331,'blocks_0_split_5050_content_title',''),(121115,40331,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(121116,40331,'blocks_0_split_5050_content_heading','About our career guides'),(121117,40331,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(121118,40331,'blocks_0_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(121119,40331,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(121120,40331,'blocks_0_split_5050_content_actions',''),(121121,40331,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(121122,40331,'blocks_0_split_5050_content',''),(121123,40331,'_blocks_0_split_5050_content','field_61767afceb8ba'),(121124,40331,'blocks_1_acfe_flexible_toggle',''),(121125,40331,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(121126,40331,'blocks_1_acfe_flexible_layout_title','Template'),(121127,40331,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(121128,40331,'blocks_1_template','39087'),(121129,40331,'_blocks_1_template','field_617bdd570fe01'),(121130,40331,'blocks_2_acfe_flexible_toggle',''),(121131,40331,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(121132,40331,'blocks_2_acfe_flexible_layout_title','Text Block'),(121133,40331,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(121134,40331,'blocks_2_options_theme','#ffffff'),(121135,40331,'_blocks_2_options_theme','field_6176830e2ad17'),(121136,40331,'blocks_2_options',''),(121137,40331,'_blocks_2_options','field_6176830e2ad16'),(121138,40331,'blocks_2_text_block_heading','Learn More About Biomechanics in Different Sectors'),(121139,40331,'_blocks_2_text_block_heading','field_617669d413097'),(121140,40331,'blocks_2_text_block_content',''),(121141,40331,'_blocks_2_text_block_content','field_617669ec13098'),(121142,40331,'blocks_3_acfe_flexible_toggle',''),(121143,40331,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(121144,40331,'blocks_3_acfe_flexible_layout_title','Cards'),(121145,40331,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(121146,40331,'blocks_3_options_theme','#ffffff'),(121147,40331,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(121148,40331,'blocks_3_options_format','carousel'),(121149,40331,'_blocks_3_options_format','field_617a7b15245b5'),(121150,40331,'blocks_3_options_style','default'),(121151,40331,'_blocks_3_options_style','field_6278ffb63484a'),(121152,40331,'blocks_3_options_cards_current_listing','0'),(121153,40331,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(121154,40331,'blocks_3_options_cards_content','custom'),(121155,40331,'_blocks_3_options_cards_content','field_617aba6122688'),(121156,40331,'blocks_3_options',''),(121157,40331,'_blocks_3_options','field_617a7b15245b3'),(121158,40331,'blocks_3_cards_custom_0_image','39215'),(121159,40331,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(121160,40331,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(121161,40331,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(121162,40331,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(121163,40331,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(121164,40331,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(121165,40331,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(121166,40331,'blocks_3_cards_custom_1_image','39243'),(121167,40331,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(121168,40331,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(121169,40331,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(121170,40331,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(121171,40331,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(121172,40331,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(121173,40331,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(121174,40331,'blocks_3_cards_custom_2_image','39247'),(121175,40331,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(121176,40331,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(121177,40331,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(121178,40331,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(121179,40331,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(121180,40331,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(121181,40331,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(121182,40331,'blocks_3_cards_custom_3_image','39256'),(121183,40331,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(121184,40331,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(121185,40331,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(121186,40331,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(121187,40331,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(121188,40331,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(121189,40331,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(121190,40331,'blocks_3_cards_custom_4_image','39251'),(121191,40331,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(121192,40331,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches'),(121193,40331,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(121194,40331,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(121195,40331,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(121196,40331,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(121197,40331,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(121198,40331,'blocks_3_cards_custom_5_image','39240'),(121199,40331,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(121200,40331,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(121201,40331,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(121202,40331,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(121203,40331,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(121204,40331,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(121205,40331,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(121206,40331,'blocks_3_cards_custom_6_image','39260'),(121207,40331,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(121208,40331,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(121209,40331,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(121210,40331,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(121211,40331,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(121212,40331,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(121213,40331,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(121214,40331,'blocks_3_cards_custom','7'),(121215,40331,'_blocks_3_cards_custom','field_6194cbf84d386'),(121216,40331,'blocks_4_acfe_flexible_toggle',''),(121217,40331,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(121218,40331,'blocks_4_acfe_flexible_layout_title','Form'),(121219,40331,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(121220,40331,'blocks_4_row_content_format','standard'),(121221,40331,'_blocks_4_row_content_format','field_6481ead962881'),(121222,40331,'blocks_4_row_content_title','Ready to get started ?'),(121223,40331,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(121224,40331,'blocks_4_row_content_heading','Ready to get started ?'),(121225,40331,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(121226,40331,'blocks_4_row_content_text','Complete The Form to Get Your Free Price Guide'),(121227,40331,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(121228,40331,'blocks_4_row_content_actions',''),(121229,40331,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(121230,40331,'blocks_4_row_content',''),(121231,40331,'_blocks_4_row_content','field_61a0f5f5b3db0'),(121232,40331,'blocks_4_row_form',''),(121233,40331,'_blocks_4_row_form','field_61a4ff2c0b08e'),(121234,40331,'blocks_4_row_form_button_label',''),(121235,40331,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(121236,40331,'_thumbnail_id',''),(121237,40331,'__thumbnail_id','field_617570855ddaf'),(121239,40332,'hero_style','default'),(121240,40332,'_hero_style','field_62051d9dc5324'),(121241,40332,'hero_image_pos_x','right'),(121242,40332,'_hero_image_pos_x','field_62ec3d05390bb'),(121243,40332,'hero_image_pos_y','top'),(121244,40332,'_hero_image_pos_y','field_62ec3d05390bc'),(121245,40332,'hero_image_pos',''),(121246,40332,'_hero_image_pos','field_62ec3d05390ba'),(121247,40332,'hero_title','Getting Started'),(121248,40332,'_hero_title','field_617571fe285e8'),(121249,40332,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(121250,40332,'_hero_text','field_6175723c285e9'),(121251,40332,'hero_actions',''),(121252,40332,'_hero_actions','field_61757270285ea'),(121253,40332,'hero_icon','bars'),(121254,40332,'_hero_icon','field_61a6182199d03'),(121255,40332,'fft_hide_from_listings','0'),(121256,40332,'_fft_hide_from_listings','field_61f1320446ab2'),(121257,40332,'fft_page_format','default'),(121258,40332,'_fft_page_format','field_61ae213f1f218'),(121259,40332,'fft_hide_nav','0'),(121260,40332,'_fft_hide_nav','field_635bd5e43527c'),(121261,40332,'fft_hide_header_call_to_action','0'),(121262,40332,'_fft_hide_header_call_to_action','field_635bd6723527d'),(121263,40332,'fft_page_sitemap','0'),(121264,40332,'_fft_page_sitemap','field_61af9b34e8181'),(121265,40332,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:4:\"form\";}'),(121266,40332,'_blocks','field_6176696113096'),(121267,40332,'hide_hero','0'),(121268,40332,'_hide_hero','field_66a2380fcda39'),(121269,40332,'blocks_0_acfe_flexible_toggle',''),(121270,40332,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(121271,40332,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(121272,40332,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(121273,40332,'blocks_0_options_theme','#ffffff'),(121274,40332,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(121275,40332,'blocks_0_options_reverse','0'),(121276,40332,'_blocks_0_options_reverse','field_61768049bb8ac'),(121277,40332,'blocks_0_options',''),(121278,40332,'_blocks_0_options','field_617682517c334'),(121279,40332,'blocks_0_split_5050_image','39152'),(121280,40332,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(121281,40332,'blocks_0_split_5050_video',''),(121282,40332,'_blocks_0_split_5050_video','field_6239f3160848a'),(121283,40332,'blocks_0_split_5050_content_title',''),(121284,40332,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(121285,40332,'blocks_0_split_5050_content_heading','About Our Career Guides'),(121286,40332,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(121287,40332,'blocks_0_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(121288,40332,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(121289,40332,'blocks_0_split_5050_content_actions',''),(121290,40332,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(121291,40332,'blocks_0_split_5050_content',''),(121292,40332,'_blocks_0_split_5050_content','field_61767afceb8ba'),(121293,40332,'blocks_1_acfe_flexible_toggle',''),(121294,40332,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(121295,40332,'blocks_1_acfe_flexible_layout_title','Template'),(121296,40332,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(121297,40332,'blocks_1_template','39087'),(121298,40332,'_blocks_1_template','field_617bdd570fe01'),(121299,40332,'blocks_2_acfe_flexible_toggle',''),(121300,40332,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(121301,40332,'blocks_2_acfe_flexible_layout_title','Text Block'),(121302,40332,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(121303,40332,'blocks_2_options_theme','#ffffff'),(121304,40332,'_blocks_2_options_theme','field_6176830e2ad17'),(121305,40332,'blocks_2_options',''),(121306,40332,'_blocks_2_options','field_6176830e2ad16'),(121307,40332,'blocks_2_text_block_heading','Learn More About Biomechanics in Different Sectors'),(121308,40332,'_blocks_2_text_block_heading','field_617669d413097'),(121309,40332,'blocks_2_text_block_content',''),(121310,40332,'_blocks_2_text_block_content','field_617669ec13098'),(121311,40332,'blocks_3_acfe_flexible_toggle',''),(121312,40332,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(121313,40332,'blocks_3_acfe_flexible_layout_title','Cards'),(121314,40332,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(121315,40332,'blocks_3_options_theme','#ffffff'),(121316,40332,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(121317,40332,'blocks_3_options_format','carousel'),(121318,40332,'_blocks_3_options_format','field_617a7b15245b5'),(121319,40332,'blocks_3_options_style','default'),(121320,40332,'_blocks_3_options_style','field_6278ffb63484a'),(121321,40332,'blocks_3_options_cards_current_listing','0'),(121322,40332,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(121323,40332,'blocks_3_options_cards_content','custom'),(121324,40332,'_blocks_3_options_cards_content','field_617aba6122688'),(121325,40332,'blocks_3_options',''),(121326,40332,'_blocks_3_options','field_617a7b15245b3'),(121327,40332,'blocks_3_cards_custom_0_image','39215'),(121328,40332,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(121329,40332,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(121330,40332,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(121331,40332,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(121332,40332,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(121333,40332,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(121334,40332,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(121335,40332,'blocks_3_cards_custom_1_image','39243'),(121336,40332,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(121337,40332,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(121338,40332,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(121339,40332,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(121340,40332,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(121341,40332,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(121342,40332,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(121343,40332,'blocks_3_cards_custom_2_image','39247'),(121344,40332,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(121345,40332,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(121346,40332,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(121347,40332,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(121348,40332,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(121349,40332,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(121350,40332,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(121351,40332,'blocks_3_cards_custom_3_image','39256'),(121352,40332,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(121353,40332,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(121354,40332,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(121355,40332,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(121356,40332,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(121357,40332,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(121358,40332,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(121359,40332,'blocks_3_cards_custom_4_image','39251'),(121360,40332,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(121361,40332,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches'),(121362,40332,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(121363,40332,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(121364,40332,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(121365,40332,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(121366,40332,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(121367,40332,'blocks_3_cards_custom_5_image','39240'),(121368,40332,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(121369,40332,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(121370,40332,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(121371,40332,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(121372,40332,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(121373,40332,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(121374,40332,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(121375,40332,'blocks_3_cards_custom_6_image','39260'),(121376,40332,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(121377,40332,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(121378,40332,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(121379,40332,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(121380,40332,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(121381,40332,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(121382,40332,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(121383,40332,'blocks_3_cards_custom','7'),(121384,40332,'_blocks_3_cards_custom','field_6194cbf84d386'),(121385,40332,'blocks_4_acfe_flexible_toggle',''),(121386,40332,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(121387,40332,'blocks_4_acfe_flexible_layout_title','Form'),(121388,40332,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(121389,40332,'blocks_4_row_content_format','standard'),(121390,40332,'_blocks_4_row_content_format','field_6481ead962881'),(121391,40332,'blocks_4_row_content_title','Ready to get started ?'),(121392,40332,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(121393,40332,'blocks_4_row_content_heading','Ready to get started ?'),(121394,40332,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(121395,40332,'blocks_4_row_content_text','Complete The Form to Get Your Free Price Guide'),(121396,40332,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(121397,40332,'blocks_4_row_content_actions',''),(121398,40332,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(121399,40332,'blocks_4_row_content',''),(121400,40332,'_blocks_4_row_content','field_61a0f5f5b3db0'),(121401,40332,'blocks_4_row_form',''),(121402,40332,'_blocks_4_row_form','field_61a4ff2c0b08e'),(121403,40332,'blocks_4_row_form_button_label',''),(121404,40332,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(121405,40332,'_thumbnail_id',''),(121406,40332,'__thumbnail_id','field_617570855ddaf'),(121408,40333,'hero_style','default'),(121409,40333,'_hero_style','field_62051d9dc5324'),(121410,40333,'hero_image_pos_x','right'),(121411,40333,'_hero_image_pos_x','field_62ec3d05390bb'),(121412,40333,'hero_image_pos_y','top'),(121413,40333,'_hero_image_pos_y','field_62ec3d05390bc'),(121414,40333,'hero_image_pos',''),(121415,40333,'_hero_image_pos','field_62ec3d05390ba'),(121416,40333,'hero_title','Getting Started'),(121417,40333,'_hero_title','field_617571fe285e8'),(121418,40333,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(121419,40333,'_hero_text','field_6175723c285e9'),(121420,40333,'hero_actions',''),(121421,40333,'_hero_actions','field_61757270285ea'),(121422,40333,'hero_icon','bars'),(121423,40333,'_hero_icon','field_61a6182199d03'),(121424,40333,'fft_hide_from_listings','0'),(121425,40333,'_fft_hide_from_listings','field_61f1320446ab2'),(121426,40333,'fft_page_format','default'),(121427,40333,'_fft_page_format','field_61ae213f1f218'),(121428,40333,'fft_hide_nav','0'),(121429,40333,'_fft_hide_nav','field_635bd5e43527c'),(121430,40333,'fft_hide_header_call_to_action','0'),(121431,40333,'_fft_hide_header_call_to_action','field_635bd6723527d'),(121432,40333,'fft_page_sitemap','0'),(121433,40333,'_fft_page_sitemap','field_61af9b34e8181'),(121434,40333,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:4:\"form\";}'),(121435,40333,'_blocks','field_6176696113096'),(121436,40333,'hide_hero','0'),(121437,40333,'_hide_hero','field_66a2380fcda39'),(121438,40333,'blocks_0_acfe_flexible_toggle',''),(121439,40333,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(121440,40333,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(121441,40333,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(121442,40333,'blocks_0_options_theme','#ffffff'),(121443,40333,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(121444,40333,'blocks_0_options_reverse','0'),(121445,40333,'_blocks_0_options_reverse','field_61768049bb8ac'),(121446,40333,'blocks_0_options',''),(121447,40333,'_blocks_0_options','field_617682517c334'),(121448,40333,'blocks_0_split_5050_image','39152'),(121449,40333,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(121450,40333,'blocks_0_split_5050_video',''),(121451,40333,'_blocks_0_split_5050_video','field_6239f3160848a'),(121452,40333,'blocks_0_split_5050_content_title',''),(121453,40333,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(121454,40333,'blocks_0_split_5050_content_heading','About Our Career Guides'),(121455,40333,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(121456,40333,'blocks_0_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(121457,40333,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(121458,40333,'blocks_0_split_5050_content_actions',''),(121459,40333,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(121460,40333,'blocks_0_split_5050_content',''),(121461,40333,'_blocks_0_split_5050_content','field_61767afceb8ba'),(121462,40333,'blocks_1_acfe_flexible_toggle',''),(121463,40333,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(121464,40333,'blocks_1_acfe_flexible_layout_title','Template'),(121465,40333,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(121466,40333,'blocks_1_template','39087'),(121467,40333,'_blocks_1_template','field_617bdd570fe01'),(121468,40333,'blocks_2_acfe_flexible_toggle',''),(121469,40333,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(121470,40333,'blocks_2_acfe_flexible_layout_title','Text Block'),(121471,40333,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(121472,40333,'blocks_2_options_theme','#ffffff'),(121473,40333,'_blocks_2_options_theme','field_6176830e2ad17'),(121474,40333,'blocks_2_options',''),(121475,40333,'_blocks_2_options','field_6176830e2ad16'),(121476,40333,'blocks_2_text_block_heading','Learn More About Biomechanics in Different Sectors'),(121477,40333,'_blocks_2_text_block_heading','field_617669d413097'),(121478,40333,'blocks_2_text_block_content',''),(121479,40333,'_blocks_2_text_block_content','field_617669ec13098'),(121480,40333,'blocks_3_acfe_flexible_toggle',''),(121481,40333,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(121482,40333,'blocks_3_acfe_flexible_layout_title','Cards'),(121483,40333,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(121484,40333,'blocks_3_options_theme','#ffffff'),(121485,40333,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(121486,40333,'blocks_3_options_format','carousel'),(121487,40333,'_blocks_3_options_format','field_617a7b15245b5'),(121488,40333,'blocks_3_options_style','default'),(121489,40333,'_blocks_3_options_style','field_6278ffb63484a'),(121490,40333,'blocks_3_options_cards_current_listing','0'),(121491,40333,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(121492,40333,'blocks_3_options_cards_content','custom'),(121493,40333,'_blocks_3_options_cards_content','field_617aba6122688'),(121494,40333,'blocks_3_options',''),(121495,40333,'_blocks_3_options','field_617a7b15245b3'),(121496,40333,'blocks_3_cards_custom_0_image','39215'),(121497,40333,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(121498,40333,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(121499,40333,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(121500,40333,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(121501,40333,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(121502,40333,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(121503,40333,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(121504,40333,'blocks_3_cards_custom_1_image','39243'),(121505,40333,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(121506,40333,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(121507,40333,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(121508,40333,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(121509,40333,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(121510,40333,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(121511,40333,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(121512,40333,'blocks_3_cards_custom_2_image','39247'),(121513,40333,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(121514,40333,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(121515,40333,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(121516,40333,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(121517,40333,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(121518,40333,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(121519,40333,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(121520,40333,'blocks_3_cards_custom_3_image','39256'),(121521,40333,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(121522,40333,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(121523,40333,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(121524,40333,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(121525,40333,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(121526,40333,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(121527,40333,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(121528,40333,'blocks_3_cards_custom_4_image','39251'),(121529,40333,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(121530,40333,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches'),(121531,40333,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(121532,40333,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(121533,40333,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(121534,40333,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(121535,40333,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(121536,40333,'blocks_3_cards_custom_5_image','39240'),(121537,40333,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(121538,40333,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(121539,40333,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(121540,40333,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(121541,40333,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(121542,40333,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(121543,40333,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(121544,40333,'blocks_3_cards_custom_6_image','39260'),(121545,40333,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(121546,40333,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(121547,40333,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(121548,40333,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(121549,40333,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(121550,40333,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(121551,40333,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(121552,40333,'blocks_3_cards_custom','7'),(121553,40333,'_blocks_3_cards_custom','field_6194cbf84d386'),(121554,40333,'blocks_4_acfe_flexible_toggle',''),(121555,40333,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(121556,40333,'blocks_4_acfe_flexible_layout_title','Form'),(121557,40333,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(121558,40333,'blocks_4_row_content_format','standard'),(121559,40333,'_blocks_4_row_content_format','field_6481ead962881'),(121560,40333,'blocks_4_row_content_title','Ready to get started ?'),(121561,40333,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(121562,40333,'blocks_4_row_content_heading','Ready to get started ?'),(121563,40333,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(121564,40333,'blocks_4_row_content_text','Complete The Form to Get Your Free Price Guide'),(121565,40333,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(121566,40333,'blocks_4_row_content_actions',''),(121567,40333,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(121568,40333,'blocks_4_row_content',''),(121569,40333,'_blocks_4_row_content','field_61a0f5f5b3db0'),(121570,40333,'blocks_4_row_form',''),(121571,40333,'_blocks_4_row_form','field_61a4ff2c0b08e'),(121572,40333,'blocks_4_row_form_button_label',''),(121573,40333,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(121574,40333,'_thumbnail_id',''),(121575,40333,'__thumbnail_id','field_617570855ddaf'),(121576,40334,'_edit_lock','1726665573:15'),(121577,40334,'_edit_last','15'),(121578,40334,'hide_hero','0'),(121579,40334,'_hide_hero','field_66a2380fcda39'),(121580,40334,'hero_title','Help Us Get to Know You'),(121581,40334,'_hero_title','field_617571fe285e8'),(121582,40334,'hero_text',''),(121583,40334,'_hero_text','field_6175723c285e9'),(121584,40334,'hero_actions',''),(121585,40334,'_hero_actions','field_61757270285ea'),(121586,40334,'hero_style','default'),(121587,40334,'_hero_style','field_62051d9dc5324'),(121589,40334,'__thumbnail_id','field_617570855ddaf'),(121590,40334,'hero_image_pos_x','right'),(121591,40334,'_hero_image_pos_x','field_62ec3d05390bb'),(121592,40334,'hero_image_pos_y','top'),(121593,40334,'_hero_image_pos_y','field_62ec3d05390bc'),(121594,40334,'hero_image_pos',''),(121595,40334,'_hero_image_pos','field_62ec3d05390ba'),(121596,40334,'fft_hide_from_listings','1'),(121597,40334,'_fft_hide_from_listings','field_61f1320446ab2'),(121598,40334,'fft_page_format','default'),(121599,40334,'_fft_page_format','field_61ae213f1f218'),(121600,40334,'fft_hide_nav','0'),(121601,40334,'_fft_hide_nav','field_635bd5e43527c'),(121602,40334,'fft_hide_header_call_to_action','0'),(121603,40334,'_fft_hide_header_call_to_action','field_635bd6723527d'),(121604,40334,'fft_page_sitemap','0'),(121605,40334,'_fft_page_sitemap','field_61af9b34e8181'),(121606,40334,'blocks_0_acfe_flexible_toggle',''),(121607,40334,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(121608,40334,'blocks_0_acfe_flexible_layout_title','Form'),(121609,40334,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(121610,40334,'blocks_0_row_content_format','standard'),(121611,40334,'_blocks_0_row_content_format','field_6481ead962881'),(121612,40334,'blocks_0_row_content_title',''),(121613,40334,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(121614,40334,'blocks_0_row_content_heading','Can we trouble you for a few more details?'),(121615,40334,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(121616,40334,'blocks_0_row_content_text','We want to make sure your experience with us is as relevant and supportive as it can possibly be, so we would love to learn a bit more about you.\r\n\r\nWe promise it won’t take more than 1.5 minutes and we won’t share this information with anyone else.'),(121617,40334,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(121618,40334,'blocks_0_row_content_actions',''),(121619,40334,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(121620,40334,'blocks_0_row_content',''),(121621,40334,'_blocks_0_row_content','field_61a0f5f5b3db0'),(121622,40334,'blocks_0_row_form','40410'),(121623,40334,'_blocks_0_row_form','field_61a4ff2c0b08e'),(121624,40334,'blocks_0_row_form_button_label','Next'),(121625,40334,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(121626,40334,'blocks','a:1:{i:0;s:4:\"form\";}'),(121627,40334,'_blocks','field_6176696113096'),(121628,40334,'_yoast_wpseo_estimated-reading-time-minutes','0'),(121629,40335,'hide_hero','0'),(121630,40335,'_hide_hero','field_66a2380fcda39'),(121631,40335,'hero_title',''),(121632,40335,'_hero_title','field_617571fe285e8'),(121633,40335,'hero_text',''),(121634,40335,'_hero_text','field_6175723c285e9'),(121635,40335,'hero_actions',''),(121636,40335,'_hero_actions','field_61757270285ea'),(121637,40335,'hero_style','default'),(121638,40335,'_hero_style','field_62051d9dc5324'),(121639,40335,'_thumbnail_id',''),(121640,40335,'__thumbnail_id','field_617570855ddaf'),(121641,40335,'hero_image_pos_x','right'),(121642,40335,'_hero_image_pos_x','field_62ec3d05390bb'),(121643,40335,'hero_image_pos_y','top'),(121644,40335,'_hero_image_pos_y','field_62ec3d05390bc'),(121645,40335,'hero_image_pos',''),(121646,40335,'_hero_image_pos','field_62ec3d05390ba'),(121647,40335,'fft_hide_from_listings','1'),(121648,40335,'_fft_hide_from_listings','field_61f1320446ab2'),(121649,40335,'fft_page_format','default'),(121650,40335,'_fft_page_format','field_61ae213f1f218'),(121651,40335,'fft_hide_nav','0'),(121652,40335,'_fft_hide_nav','field_635bd5e43527c'),(121653,40335,'fft_hide_header_call_to_action','0'),(121654,40335,'_fft_hide_header_call_to_action','field_635bd6723527d'),(121655,40335,'fft_page_sitemap','0'),(121656,40335,'_fft_page_sitemap','field_61af9b34e8181'),(121657,40335,'blocks_0_acfe_flexible_toggle',''),(121658,40335,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(121659,40335,'blocks_0_acfe_flexible_layout_title','Form'),(121660,40335,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(121661,40335,'blocks_0_row_content_format','standard'),(121662,40335,'_blocks_0_row_content_format','field_6481ead962881'),(121663,40335,'blocks_0_row_content_title',''),(121664,40335,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(121665,40335,'blocks_0_row_content_heading','Can we trouble you for a few more details?'),(121666,40335,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(121667,40335,'blocks_0_row_content_text','We want to make sure your experience with us is as relevant and supportive as it can possibly be, so we would love to learn a bit more about you.\r\n\r\nWe promise it won’t take more than 1.5 minutes and we won’t share this information with anyone else.'),(121668,40335,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(121669,40335,'blocks_0_row_content_actions',''),(121670,40335,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(121671,40335,'blocks_0_row_content',''),(121672,40335,'_blocks_0_row_content','field_61a0f5f5b3db0'),(121673,40335,'blocks_0_row_form',''),(121674,40335,'_blocks_0_row_form','field_61a4ff2c0b08e'),(121675,40335,'blocks_0_row_form_button_label','Next'),(121676,40335,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(121677,40335,'blocks','a:1:{i:0;s:4:\"form\";}'),(121678,40335,'_blocks','field_6176696113096'),(121716,40339,'_wp_attached_file','2024/09/DSC07708-scaled.jpg'),(121717,40339,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1759;s:4:\"file\";s:27:\"2024/09/DSC07708-scaled.jpg\";s:8:\"filesize\";i:582795;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC07708-900x618.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:618;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131668;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC07708-1200x824.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:824;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188671;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC07708-400x275.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59147;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC07708-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109062;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC07708-1536x1055.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1055;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264658;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC07708-2048x1407.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1407;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:406457;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC07708-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69417;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC07708-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170506;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC07708-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:250062;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC07708-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58375;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC07708-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128858;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC07708-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184647;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC07708-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61112;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC07708-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137502;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"DSC07708-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197963;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"DSC07708-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61546;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"DSC07708-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140244;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"DSC07708-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202477;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"DSC07708-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55108;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"DSC07708-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116270;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"DSC07708-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164803;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1530977734\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC07708.jpg\";}'),(121718,40339,'_wp_attachment_image_alt','Rachel and wo men discuss a biomechanics workshop - in a learning setting.'),(121727,39196,'_thumbnail_id','40339'),(121728,39196,'__thumbnail_id','field_617570855ddaf'),(121729,39196,'hero_image_pos_x','right'),(121730,39196,'_hero_image_pos_x','field_62ec3d05390bb'),(121731,39196,'hero_image_pos_y','top'),(121732,39196,'_hero_image_pos_y','field_62ec3d05390bc'),(121733,39196,'hero_image_pos',''),(121734,39196,'_hero_image_pos','field_62ec3d05390ba'),(121735,40340,'hide_hero','0'),(121736,40340,'_hide_hero','field_66a2380fcda39'),(121737,40340,'fft_hide_from_listings','0'),(121738,40340,'_fft_hide_from_listings','field_61f1320446ab2'),(121739,40340,'fft_page_format','default'),(121740,40340,'_fft_page_format','field_61ae213f1f218'),(121741,40340,'fft_hide_nav','0'),(121742,40340,'_fft_hide_nav','field_635bd5e43527c'),(121743,40340,'fft_hide_header_call_to_action','0'),(121744,40340,'_fft_hide_header_call_to_action','field_635bd6723527d'),(121745,40340,'fft_page_sitemap','0'),(121746,40340,'_fft_page_sitemap','field_61af9b34e8181'),(121747,40340,'blocks_0_acfe_flexible_toggle',''),(121748,40340,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(121749,40340,'blocks_0_acfe_flexible_layout_title','Text Block'),(121750,40340,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(121751,40340,'blocks_0_options_theme','#ffffff'),(121752,40340,'_blocks_0_options_theme','field_6176830e2ad17'),(121753,40340,'blocks_0_options',''),(121754,40340,'_blocks_0_options','field_6176830e2ad16'),(121755,40340,'blocks_0_text_block_heading','Get in Touch'),(121756,40340,'_blocks_0_text_block_heading','field_617669d413097'),(121757,40340,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(121758,40340,'_blocks_0_text_block_content','field_617669ec13098'),(121759,40340,'blocks','a:1:{i:0;s:10:\"text_block\";}'),(121760,40340,'_blocks','field_6176696113096'),(121761,40340,'hero_title','Contact us'),(121762,40340,'_hero_title','field_617571fe285e8'),(121763,40340,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(121764,40340,'_hero_text','field_6175723c285e9'),(121765,40340,'hero_actions',''),(121766,40340,'_hero_actions','field_61757270285ea'),(121767,40340,'hero_style','default'),(121768,40340,'_hero_style','field_62051d9dc5324'),(121769,40340,'hero_icon','lines'),(121770,40340,'_hero_icon','field_61a6182199d03'),(121771,40340,'_thumbnail_id','40339'),(121772,40340,'__thumbnail_id','field_617570855ddaf'),(121773,40340,'hero_image_pos_x','right'),(121774,40340,'_hero_image_pos_x','field_62ec3d05390bb'),(121775,40340,'hero_image_pos_y','top'),(121776,40340,'_hero_image_pos_y','field_62ec3d05390bc'),(121777,40340,'hero_image_pos',''),(121778,40340,'_hero_image_pos','field_62ec3d05390ba'),(121779,40341,'_wp_attached_file','2024/09/DSC01742-scaled.jpg'),(121780,40341,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:27:\"2024/09/DSC01742-scaled.jpg\";s:8:\"filesize\";i:89108;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC01742-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39919;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC01742-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45456;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC01742-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33869;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC01742-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37886;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC01742-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53184;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC01742-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69581;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC01742-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34606;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC01742-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43409;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC01742-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51854;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC01742-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33804;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC01742-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39919;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC01742-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45456;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC01742-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33962;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC01742-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40630;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"DSC01742-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47073;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"DSC01742-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34028;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"DSC01742-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40914;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"DSC01742-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46985;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"DSC01742-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31995;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"DSC01742-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33440;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"DSC01742-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34820;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583583363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"39\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC01742.jpg\";}'),(121781,40342,'_wp_attached_file','2024/09/DSC01742-1-scaled.jpg'),(121782,40342,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:29:\"2024/09/DSC01742-1-scaled.jpg\";s:8:\"filesize\";i:470623;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"DSC01742-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125600;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"DSC01742-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175279;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"DSC01742-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59151;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"DSC01742-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105640;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:24:\"DSC01742-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237369;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:24:\"DSC01742-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:345959;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:22:\"DSC01742-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68023;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:22:\"DSC01742-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155685;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:24:\"DSC01742-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221291;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:22:\"DSC01742-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59076;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:22:\"DSC01742-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125600;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:23:\"DSC01742-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175279;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:22:\"DSC01742-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59965;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:22:\"DSC01742-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127520;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:23:\"DSC01742-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178134;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:22:\"DSC01742-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61595;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:22:\"DSC01742-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134941;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:23:\"DSC01742-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188688;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:22:\"DSC01742-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54678;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:22:\"DSC01742-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110408;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:23:\"DSC01742-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152051;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583583363\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"39\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:14:\"DSC01742-1.jpg\";}'),(121783,40342,'_wp_attachment_image_alt','Rachel teaching a Biomechanics workshop'),(121832,40343,'hide_hero','0'),(121833,40343,'_hide_hero','field_66a2380fcda39'),(121834,40343,'fft_hide_from_listings','0'),(121835,40343,'_fft_hide_from_listings','field_61f1320446ab2'),(121836,40343,'fft_page_format','default'),(121837,40343,'_fft_page_format','field_61ae213f1f218'),(121838,40343,'fft_hide_nav','0'),(121839,40343,'_fft_hide_nav','field_635bd5e43527c'),(121840,40343,'fft_hide_header_call_to_action','0'),(121841,40343,'_fft_hide_header_call_to_action','field_635bd6723527d'),(121842,40343,'fft_page_sitemap','0'),(121843,40343,'_fft_page_sitemap','field_61af9b34e8181'),(121844,40343,'blocks_0_acfe_flexible_toggle',''),(121845,40343,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(121846,40343,'blocks_0_acfe_flexible_layout_title','Text Block'),(121847,40343,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(121848,40343,'blocks_0_options_theme','#ffffff'),(121849,40343,'_blocks_0_options_theme','field_6176830e2ad17'),(121850,40343,'blocks_0_options',''),(121851,40343,'_blocks_0_options','field_6176830e2ad16'),(121852,40343,'blocks_0_text_block_heading','Get in Touch'),(121853,40343,'_blocks_0_text_block_heading','field_617669d413097'),(121854,40343,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(121855,40343,'_blocks_0_text_block_content','field_617669ec13098'),(121856,40343,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";}'),(121857,40343,'_blocks','field_6176696113096'),(121858,40343,'hero_title','Contact us'),(121859,40343,'_hero_title','field_617571fe285e8'),(121860,40343,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(121861,40343,'_hero_text','field_6175723c285e9'),(121862,40343,'hero_actions',''),(121863,40343,'_hero_actions','field_61757270285ea'),(121864,40343,'hero_style','default'),(121865,40343,'_hero_style','field_62051d9dc5324'),(121866,40343,'hero_icon','lines'),(121867,40343,'_hero_icon','field_61a6182199d03'),(121868,40343,'_thumbnail_id','40339'),(121869,40343,'__thumbnail_id','field_617570855ddaf'),(121870,40343,'hero_image_pos_x','right'),(121871,40343,'_hero_image_pos_x','field_62ec3d05390bb'),(121872,40343,'hero_image_pos_y','top'),(121873,40343,'_hero_image_pos_y','field_62ec3d05390bc'),(121874,40343,'hero_image_pos',''),(121875,40343,'_hero_image_pos','field_62ec3d05390ba'),(121876,40343,'blocks_1_acfe_flexible_toggle',''),(121877,40343,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(121878,40343,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(121879,40343,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(121880,40343,'blocks_1_options_theme','#ffffff'),(121881,40343,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(121882,40343,'blocks_1_options_reverse','0'),(121883,40343,'_blocks_1_options_reverse','field_61768049bb8ac'),(121884,40343,'blocks_1_options',''),(121885,40343,'_blocks_1_options','field_617682517c334'),(121886,40343,'blocks_1_split_5050_image','40342'),(121887,40343,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(121888,40343,'blocks_1_split_5050_video',''),(121889,40343,'_blocks_1_split_5050_video','field_6239f3160848a'),(121890,40343,'blocks_1_split_5050_content_title',''),(121891,40343,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(121892,40343,'blocks_1_split_5050_content_heading',''),(121893,40343,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(121894,40343,'blocks_1_split_5050_content_text','<strong>Give us a Call</strong>\r\n📞 <a href=\"tel:%EF%BB%BF02038416151\">020 3841 6151</a>\r\nWe\'re available Monday to Friday from 9:00 AM to 5:00 PM. Speak to our experts and find out how we can help enhance your career or business with our evidence-based biomechanics coaching methods.\r\n\r\n<strong>Drop us an Email</strong>\r\n✉️ <a href=\"mailto:info@biomechanicseducation.com\"><em>info@biomechanicseducation.com</em></a>\r\nPrefer writing? Send us an email and we’ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on Social Media</strong>\r\nFollow us on our channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics:\r\n🌐 <a href=\"https://www.instagram.com/biomechanics_education/\"><em>Instagram</em></a>\r\n\r\n🌐 <a href=\"https://www.facebook.com/biomechanicseducation\"><em>Facebook</em></a>\r\n\r\n🌐 <a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\"><em>LinkedIn</em></a>\r\n\r\n&nbsp;'),(121895,40343,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(121896,40343,'blocks_1_split_5050_content_actions',''),(121897,40343,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(121898,40343,'blocks_1_split_5050_content',''),(121899,40343,'_blocks_1_split_5050_content','field_61767afceb8ba'),(121900,40344,'hide_hero','0'),(121901,40344,'_hide_hero','field_66a2380fcda39'),(121902,40344,'fft_hide_from_listings','0'),(121903,40344,'_fft_hide_from_listings','field_61f1320446ab2'),(121904,40344,'fft_page_format','default'),(121905,40344,'_fft_page_format','field_61ae213f1f218'),(121906,40344,'fft_hide_nav','0'),(121907,40344,'_fft_hide_nav','field_635bd5e43527c'),(121908,40344,'fft_hide_header_call_to_action','0'),(121909,40344,'_fft_hide_header_call_to_action','field_635bd6723527d'),(121910,40344,'fft_page_sitemap','0'),(121911,40344,'_fft_page_sitemap','field_61af9b34e8181'),(121912,40344,'blocks_0_acfe_flexible_toggle',''),(121913,40344,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(121914,40344,'blocks_0_acfe_flexible_layout_title','Text Block'),(121915,40344,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(121916,40344,'blocks_0_options_theme','#ffffff'),(121917,40344,'_blocks_0_options_theme','field_6176830e2ad17'),(121918,40344,'blocks_0_options',''),(121919,40344,'_blocks_0_options','field_6176830e2ad16'),(121920,40344,'blocks_0_text_block_heading','Get in Touch'),(121921,40344,'_blocks_0_text_block_heading','field_617669d413097'),(121922,40344,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(121923,40344,'_blocks_0_text_block_content','field_617669ec13098'),(121924,40344,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";}'),(121925,40344,'_blocks','field_6176696113096'),(121926,40344,'hero_title','Contact us'),(121927,40344,'_hero_title','field_617571fe285e8'),(121928,40344,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(121929,40344,'_hero_text','field_6175723c285e9'),(121930,40344,'hero_actions',''),(121931,40344,'_hero_actions','field_61757270285ea'),(121932,40344,'hero_style','default'),(121933,40344,'_hero_style','field_62051d9dc5324'),(121934,40344,'hero_icon','lines'),(121935,40344,'_hero_icon','field_61a6182199d03'),(121936,40344,'_thumbnail_id','40339'),(121937,40344,'__thumbnail_id','field_617570855ddaf'),(121938,40344,'hero_image_pos_x','right'),(121939,40344,'_hero_image_pos_x','field_62ec3d05390bb'),(121940,40344,'hero_image_pos_y','top'),(121941,40344,'_hero_image_pos_y','field_62ec3d05390bc'),(121942,40344,'hero_image_pos',''),(121943,40344,'_hero_image_pos','field_62ec3d05390ba'),(121944,40344,'blocks_1_acfe_flexible_toggle',''),(121945,40344,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(121946,40344,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(121947,40344,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(121948,40344,'blocks_1_options_theme','#ffffff'),(121949,40344,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(121950,40344,'blocks_1_options_reverse','0'),(121951,40344,'_blocks_1_options_reverse','field_61768049bb8ac'),(121952,40344,'blocks_1_options',''),(121953,40344,'_blocks_1_options','field_617682517c334'),(121954,40344,'blocks_1_split_5050_image','40342'),(121955,40344,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(121956,40344,'blocks_1_split_5050_video',''),(121957,40344,'_blocks_1_split_5050_video','field_6239f3160848a'),(121958,40344,'blocks_1_split_5050_content_title',''),(121959,40344,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(121960,40344,'blocks_1_split_5050_content_heading',''),(121961,40344,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(121962,40344,'blocks_1_split_5050_content_text','<strong>Give us a Call</strong>\r\n📞 <a href=\"tel:%EF%BB%BF02038416151\">020 3841 6151</a>\r\nWe\'re available Monday to Friday from 9:00am to 5:00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence-based biomechanics coaching methods.\r\n\r\n<strong>Drop us an Email</strong>\r\n✉️ <a href=\"mailto:info@biomechanicseducation.com\"><em>info@biomechanicseducation.com</em></a>\r\nPrefer writing? Send us an email and we’ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on Social Media</strong>\r\nFollow us on our channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics:\r\n🌐 <a href=\"https://www.instagram.com/biomechanics_education/\"><em>Instagram</em></a>\r\n\r\n🌐 <a href=\"https://www.facebook.com/biomechanicseducation\"><em>Facebook</em></a>\r\n\r\n🌐 <a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\"><em>LinkedIn</em></a>\r\n\r\n&nbsp;'),(121963,40344,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(121964,40344,'blocks_1_split_5050_content_actions',''),(121965,40344,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(121966,40344,'blocks_1_split_5050_content',''),(121967,40344,'_blocks_1_split_5050_content','field_61767afceb8ba'),(121968,40345,'hide_hero','0'),(121969,40345,'_hide_hero','field_66a2380fcda39'),(121970,40345,'fft_hide_from_listings','0'),(121971,40345,'_fft_hide_from_listings','field_61f1320446ab2'),(121972,40345,'fft_page_format','default'),(121973,40345,'_fft_page_format','field_61ae213f1f218'),(121974,40345,'fft_hide_nav','0'),(121975,40345,'_fft_hide_nav','field_635bd5e43527c'),(121976,40345,'fft_hide_header_call_to_action','0'),(121977,40345,'_fft_hide_header_call_to_action','field_635bd6723527d'),(121978,40345,'fft_page_sitemap','0'),(121979,40345,'_fft_page_sitemap','field_61af9b34e8181'),(121980,40345,'blocks_0_acfe_flexible_toggle',''),(121981,40345,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(121982,40345,'blocks_0_acfe_flexible_layout_title','Text Block'),(121983,40345,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(121984,40345,'blocks_0_options_theme','#ffffff'),(121985,40345,'_blocks_0_options_theme','field_6176830e2ad17'),(121986,40345,'blocks_0_options',''),(121987,40345,'_blocks_0_options','field_6176830e2ad16'),(121988,40345,'blocks_0_text_block_heading','Get in Touch'),(121989,40345,'_blocks_0_text_block_heading','field_617669d413097'),(121990,40345,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(121991,40345,'_blocks_0_text_block_content','field_617669ec13098'),(121992,40345,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";}'),(121993,40345,'_blocks','field_6176696113096'),(121994,40345,'hero_title','Contact us'),(121995,40345,'_hero_title','field_617571fe285e8'),(121996,40345,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(121997,40345,'_hero_text','field_6175723c285e9'),(121998,40345,'hero_actions',''),(121999,40345,'_hero_actions','field_61757270285ea'),(122000,40345,'hero_style','default'),(122001,40345,'_hero_style','field_62051d9dc5324'),(122002,40345,'hero_icon','lines'),(122003,40345,'_hero_icon','field_61a6182199d03'),(122004,40345,'_thumbnail_id','40339'),(122005,40345,'__thumbnail_id','field_617570855ddaf'),(122006,40345,'hero_image_pos_x','right'),(122007,40345,'_hero_image_pos_x','field_62ec3d05390bb'),(122008,40345,'hero_image_pos_y','top'),(122009,40345,'_hero_image_pos_y','field_62ec3d05390bc'),(122010,40345,'hero_image_pos',''),(122011,40345,'_hero_image_pos','field_62ec3d05390ba'),(122012,40345,'blocks_1_acfe_flexible_toggle',''),(122013,40345,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122014,40345,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(122015,40345,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122016,40345,'blocks_1_options_theme','#ffffff'),(122017,40345,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(122018,40345,'blocks_1_options_reverse','0'),(122019,40345,'_blocks_1_options_reverse','field_61768049bb8ac'),(122020,40345,'blocks_1_options',''),(122021,40345,'_blocks_1_options','field_617682517c334'),(122022,40345,'blocks_1_split_5050_image','40342'),(122023,40345,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(122024,40345,'blocks_1_split_5050_video',''),(122025,40345,'_blocks_1_split_5050_video','field_6239f3160848a'),(122026,40345,'blocks_1_split_5050_content_title','Let\'s talk!'),(122027,40345,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(122028,40345,'blocks_1_split_5050_content_heading',''),(122029,40345,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(122030,40345,'blocks_1_split_5050_content_text','<strong>Give us a Call</strong>\r\n📞 <a href=\"tel:%EF%BB%BF02038416151\">020 3841 6151</a>\r\nWe\'re available Monday to Friday from 9:00am to 5:00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence-based biomechanics coaching methods.\r\n\r\n<strong>Drop us an Email</strong>\r\n✉️ <a href=\"mailto:info@biomechanicseducation.com\"><em>info@biomechanicseducation.com</em></a>\r\nPrefer writing? Send us an email and we’ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on Social Media</strong>\r\nFollow us on our channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics:\r\n🌐 <a href=\"https://www.instagram.com/biomechanics_education/\"><em>Instagram</em></a>\r\n\r\n🌐 <a href=\"https://www.facebook.com/biomechanicseducation\"><em>Facebook</em></a>\r\n\r\n🌐 <a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\"><em>LinkedIn</em></a>\r\n\r\n&nbsp;'),(122031,40345,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(122032,40345,'blocks_1_split_5050_content_actions',''),(122033,40345,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(122034,40345,'blocks_1_split_5050_content',''),(122035,40345,'_blocks_1_split_5050_content','field_61767afceb8ba'),(122036,40346,'hide_hero','0'),(122037,40346,'_hide_hero','field_66a2380fcda39'),(122038,40346,'fft_hide_from_listings','0'),(122039,40346,'_fft_hide_from_listings','field_61f1320446ab2'),(122040,40346,'fft_page_format','default'),(122041,40346,'_fft_page_format','field_61ae213f1f218'),(122042,40346,'fft_hide_nav','0'),(122043,40346,'_fft_hide_nav','field_635bd5e43527c'),(122044,40346,'fft_hide_header_call_to_action','0'),(122045,40346,'_fft_hide_header_call_to_action','field_635bd6723527d'),(122046,40346,'fft_page_sitemap','0'),(122047,40346,'_fft_page_sitemap','field_61af9b34e8181'),(122048,40346,'blocks_0_acfe_flexible_toggle',''),(122049,40346,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(122050,40346,'blocks_0_acfe_flexible_layout_title','Text Block'),(122051,40346,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(122052,40346,'blocks_0_options_theme','#ffffff'),(122053,40346,'_blocks_0_options_theme','field_6176830e2ad17'),(122054,40346,'blocks_0_options',''),(122055,40346,'_blocks_0_options','field_6176830e2ad16'),(122056,40346,'blocks_0_text_block_heading','Get in Touch'),(122057,40346,'_blocks_0_text_block_heading','field_617669d413097'),(122058,40346,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(122059,40346,'_blocks_0_text_block_content','field_617669ec13098'),(122060,40346,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";}'),(122061,40346,'_blocks','field_6176696113096'),(122062,40346,'hero_title','Contact us'),(122063,40346,'_hero_title','field_617571fe285e8'),(122064,40346,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(122065,40346,'_hero_text','field_6175723c285e9'),(122066,40346,'hero_actions',''),(122067,40346,'_hero_actions','field_61757270285ea'),(122068,40346,'hero_style','default'),(122069,40346,'_hero_style','field_62051d9dc5324'),(122070,40346,'hero_icon','lines'),(122071,40346,'_hero_icon','field_61a6182199d03'),(122072,40346,'_thumbnail_id','40339'),(122073,40346,'__thumbnail_id','field_617570855ddaf'),(122074,40346,'hero_image_pos_x','right'),(122075,40346,'_hero_image_pos_x','field_62ec3d05390bb'),(122076,40346,'hero_image_pos_y','top'),(122077,40346,'_hero_image_pos_y','field_62ec3d05390bc'),(122078,40346,'hero_image_pos',''),(122079,40346,'_hero_image_pos','field_62ec3d05390ba'),(122080,40346,'blocks_1_acfe_flexible_toggle',''),(122081,40346,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122082,40346,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(122083,40346,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122084,40346,'blocks_1_options_theme','#ffffff'),(122085,40346,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(122086,40346,'blocks_1_options_reverse','0'),(122087,40346,'_blocks_1_options_reverse','field_61768049bb8ac'),(122088,40346,'blocks_1_options',''),(122089,40346,'_blocks_1_options','field_617682517c334'),(122090,40346,'blocks_1_split_5050_image','40342'),(122091,40346,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(122092,40346,'blocks_1_split_5050_video',''),(122093,40346,'_blocks_1_split_5050_video','field_6239f3160848a'),(122094,40346,'blocks_1_split_5050_content_title',''),(122095,40346,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(122096,40346,'blocks_1_split_5050_content_heading','Let\'s talk!'),(122097,40346,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(122098,40346,'blocks_1_split_5050_content_text','<strong>Give us a Call</strong>\r\n📞 <a href=\"tel:%EF%BB%BF02038416151\">020 3841 6151</a>\r\nWe\'re available Monday to Friday from 9:00am to 5:00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence-based biomechanics coaching methods.\r\n\r\n<strong>Drop us an Email</strong>\r\n✉️ <a href=\"mailto:info@biomechanicseducation.com\"><em>info@biomechanicseducation.com</em></a>\r\nPrefer writing? Send us an email and we’ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on Social Media</strong>\r\nFollow us on our channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics:\r\n🌐 <a href=\"https://www.instagram.com/biomechanics_education/\"><em>Instagram</em></a>\r\n\r\n🌐 <a href=\"https://www.facebook.com/biomechanicseducation\"><em>Facebook</em></a>\r\n\r\n🌐 <a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\"><em>LinkedIn</em></a>\r\n\r\n&nbsp;'),(122099,40346,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(122100,40346,'blocks_1_split_5050_content_actions',''),(122101,40346,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(122102,40346,'blocks_1_split_5050_content',''),(122103,40346,'_blocks_1_split_5050_content','field_61767afceb8ba'),(122104,40347,'hide_hero','0'),(122105,40347,'_hide_hero','field_66a2380fcda39'),(122106,40347,'fft_hide_from_listings','0'),(122107,40347,'_fft_hide_from_listings','field_61f1320446ab2'),(122108,40347,'fft_page_format','default'),(122109,40347,'_fft_page_format','field_61ae213f1f218'),(122110,40347,'fft_hide_nav','0'),(122111,40347,'_fft_hide_nav','field_635bd5e43527c'),(122112,40347,'fft_hide_header_call_to_action','0'),(122113,40347,'_fft_hide_header_call_to_action','field_635bd6723527d'),(122114,40347,'fft_page_sitemap','0'),(122115,40347,'_fft_page_sitemap','field_61af9b34e8181'),(122116,40347,'blocks_0_acfe_flexible_toggle',''),(122117,40347,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(122118,40347,'blocks_0_acfe_flexible_layout_title','Text Block'),(122119,40347,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(122120,40347,'blocks_0_options_theme','#ffffff'),(122121,40347,'_blocks_0_options_theme','field_6176830e2ad17'),(122122,40347,'blocks_0_options',''),(122123,40347,'_blocks_0_options','field_6176830e2ad16'),(122124,40347,'blocks_0_text_block_heading','Get in Touch'),(122125,40347,'_blocks_0_text_block_heading','field_617669d413097'),(122126,40347,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(122127,40347,'_blocks_0_text_block_content','field_617669ec13098'),(122128,40347,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";}'),(122129,40347,'_blocks','field_6176696113096'),(122130,40347,'hero_title','Contact us'),(122131,40347,'_hero_title','field_617571fe285e8'),(122132,40347,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(122133,40347,'_hero_text','field_6175723c285e9'),(122134,40347,'hero_actions',''),(122135,40347,'_hero_actions','field_61757270285ea'),(122136,40347,'hero_style','default'),(122137,40347,'_hero_style','field_62051d9dc5324'),(122138,40347,'hero_icon','lines'),(122139,40347,'_hero_icon','field_61a6182199d03'),(122140,40347,'_thumbnail_id','40339'),(122141,40347,'__thumbnail_id','field_617570855ddaf'),(122142,40347,'hero_image_pos_x','right'),(122143,40347,'_hero_image_pos_x','field_62ec3d05390bb'),(122144,40347,'hero_image_pos_y','top'),(122145,40347,'_hero_image_pos_y','field_62ec3d05390bc'),(122146,40347,'hero_image_pos',''),(122147,40347,'_hero_image_pos','field_62ec3d05390ba'),(122148,40347,'blocks_1_acfe_flexible_toggle',''),(122149,40347,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122150,40347,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(122151,40347,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122152,40347,'blocks_1_options_theme','#ffffff'),(122153,40347,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(122154,40347,'blocks_1_options_reverse','0'),(122155,40347,'_blocks_1_options_reverse','field_61768049bb8ac'),(122156,40347,'blocks_1_options',''),(122157,40347,'_blocks_1_options','field_617682517c334'),(122158,40347,'blocks_1_split_5050_image',''),(122159,40347,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(122160,40347,'blocks_1_split_5050_video',''),(122161,40347,'_blocks_1_split_5050_video','field_6239f3160848a'),(122162,40347,'blocks_1_split_5050_content_title',''),(122163,40347,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(122164,40347,'blocks_1_split_5050_content_heading',''),(122165,40347,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(122166,40347,'blocks_1_split_5050_content_text','<h5>Give us a call: 020 3841 6151</h5>\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n<h5>Send us an email: info@biomechanicseducation.com</h5>\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n<h5>Connect on social media</h5>\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(122167,40347,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(122168,40347,'blocks_1_split_5050_content_actions',''),(122169,40347,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(122170,40347,'blocks_1_split_5050_content',''),(122171,40347,'_blocks_1_split_5050_content','field_61767afceb8ba'),(122172,40348,'hide_hero','0'),(122173,40348,'_hide_hero','field_66a2380fcda39'),(122174,40348,'fft_hide_from_listings','0'),(122175,40348,'_fft_hide_from_listings','field_61f1320446ab2'),(122176,40348,'fft_page_format','default'),(122177,40348,'_fft_page_format','field_61ae213f1f218'),(122178,40348,'fft_hide_nav','0'),(122179,40348,'_fft_hide_nav','field_635bd5e43527c'),(122180,40348,'fft_hide_header_call_to_action','0'),(122181,40348,'_fft_hide_header_call_to_action','field_635bd6723527d'),(122182,40348,'fft_page_sitemap','0'),(122183,40348,'_fft_page_sitemap','field_61af9b34e8181'),(122184,40348,'blocks_0_acfe_flexible_toggle',''),(122185,40348,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(122186,40348,'blocks_0_acfe_flexible_layout_title','Text Block'),(122187,40348,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(122188,40348,'blocks_0_options_theme','#ffffff'),(122189,40348,'_blocks_0_options_theme','field_6176830e2ad17'),(122190,40348,'blocks_0_options',''),(122191,40348,'_blocks_0_options','field_6176830e2ad16'),(122192,40348,'blocks_0_text_block_heading','Get in Touch'),(122193,40348,'_blocks_0_text_block_heading','field_617669d413097'),(122194,40348,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(122195,40348,'_blocks_0_text_block_content','field_617669ec13098'),(122196,40348,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";}'),(122197,40348,'_blocks','field_6176696113096'),(122198,40348,'hero_title','Contact us'),(122199,40348,'_hero_title','field_617571fe285e8'),(122200,40348,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(122201,40348,'_hero_text','field_6175723c285e9'),(122202,40348,'hero_actions',''),(122203,40348,'_hero_actions','field_61757270285ea'),(122204,40348,'hero_style','default'),(122205,40348,'_hero_style','field_62051d9dc5324'),(122206,40348,'hero_icon','lines'),(122207,40348,'_hero_icon','field_61a6182199d03'),(122208,40348,'_thumbnail_id','40339'),(122209,40348,'__thumbnail_id','field_617570855ddaf'),(122210,40348,'hero_image_pos_x','right'),(122211,40348,'_hero_image_pos_x','field_62ec3d05390bb'),(122212,40348,'hero_image_pos_y','top'),(122213,40348,'_hero_image_pos_y','field_62ec3d05390bc'),(122214,40348,'hero_image_pos',''),(122215,40348,'_hero_image_pos','field_62ec3d05390ba'),(122216,40348,'blocks_1_acfe_flexible_toggle',''),(122217,40348,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122218,40348,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(122219,40348,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122220,40348,'blocks_1_options_theme','#ffffff'),(122221,40348,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(122222,40348,'blocks_1_options_reverse','0'),(122223,40348,'_blocks_1_options_reverse','field_61768049bb8ac'),(122224,40348,'blocks_1_options',''),(122225,40348,'_blocks_1_options','field_617682517c334'),(122226,40348,'blocks_1_split_5050_image','40342'),(122227,40348,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(122228,40348,'blocks_1_split_5050_video',''),(122229,40348,'_blocks_1_split_5050_video','field_6239f3160848a'),(122230,40348,'blocks_1_split_5050_content_title',''),(122231,40348,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(122232,40348,'blocks_1_split_5050_content_heading','Let\'s connect!'),(122233,40348,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(122234,40348,'blocks_1_split_5050_content_text','<h5>Give us a call: 020 3841 6151</h5>\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n<h5>Send us an email: info@biomechanicseducation.com</h5>\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n<h5>Connect on social media</h5>\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(122235,40348,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(122236,40348,'blocks_1_split_5050_content_actions',''),(122237,40348,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(122238,40348,'blocks_1_split_5050_content',''),(122239,40348,'_blocks_1_split_5050_content','field_61767afceb8ba'),(122240,40349,'_wp_attached_file','2024/09/DSC02019-scaled.jpg'),(122241,40349,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:27:\"2024/09/DSC02019-scaled.jpg\";s:8:\"filesize\";i:608604;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC02019-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151265;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC02019-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212898;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC02019-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69222;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC02019-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126068;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC02019-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:293077;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC02019-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:437272;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC02019-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78406;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC02019-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185210;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC02019-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265098;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC02019-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69197;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC02019-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151265;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC02019-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212898;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC02019-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69523;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC02019-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152595;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"DSC02019-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214972;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"DSC02019-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71661;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"DSC02019-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160052;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"DSC02019-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227268;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"DSC02019-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64085;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"DSC02019-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134280;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"DSC02019-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186324;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583596159\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC02019.jpg\";}'),(122242,40349,'_wp_attachment_image_alt','woman working on notes whislt assessing a client who is a man, laying on a massage table.'),(122243,39196,'blocks_2_acfe_flexible_toggle',''),(122244,39196,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122245,39196,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(122246,39196,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122247,39196,'blocks_2_options_theme','#ffffff'),(122248,39196,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(122249,39196,'blocks_2_options_reverse','1'),(122250,39196,'_blocks_2_options_reverse','field_61768049bb8ac'),(122251,39196,'blocks_2_options',''),(122252,39196,'_blocks_2_options','field_617682517c334'),(122253,39196,'blocks_2_split_5050_image','40349'),(122254,39196,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(122255,39196,'blocks_2_split_5050_video',''),(122256,39196,'_blocks_2_split_5050_video','field_6239f3160848a'),(122257,39196,'blocks_2_split_5050_content_title',''),(122258,39196,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(122259,39196,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(122260,39196,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(122261,39196,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(122262,39196,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(122263,39196,'blocks_2_split_5050_content_actions',''),(122264,39196,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(122265,39196,'blocks_2_split_5050_content',''),(122266,39196,'_blocks_2_split_5050_content','field_61767afceb8ba'),(122267,40350,'hide_hero','0'),(122268,40350,'_hide_hero','field_66a2380fcda39'),(122269,40350,'fft_hide_from_listings','0'),(122270,40350,'_fft_hide_from_listings','field_61f1320446ab2'),(122271,40350,'fft_page_format','default'),(122272,40350,'_fft_page_format','field_61ae213f1f218'),(122273,40350,'fft_hide_nav','0'),(122274,40350,'_fft_hide_nav','field_635bd5e43527c'),(122275,40350,'fft_hide_header_call_to_action','0'),(122276,40350,'_fft_hide_header_call_to_action','field_635bd6723527d'),(122277,40350,'fft_page_sitemap','0'),(122278,40350,'_fft_page_sitemap','field_61af9b34e8181'),(122279,40350,'blocks_0_acfe_flexible_toggle',''),(122280,40350,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(122281,40350,'blocks_0_acfe_flexible_layout_title','Text Block'),(122282,40350,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(122283,40350,'blocks_0_options_theme','#ffffff'),(122284,40350,'_blocks_0_options_theme','field_6176830e2ad17'),(122285,40350,'blocks_0_options',''),(122286,40350,'_blocks_0_options','field_6176830e2ad16'),(122287,40350,'blocks_0_text_block_heading','Get in Touch'),(122288,40350,'_blocks_0_text_block_heading','field_617669d413097'),(122289,40350,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(122290,40350,'_blocks_0_text_block_content','field_617669ec13098'),(122291,40350,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";}'),(122292,40350,'_blocks','field_6176696113096'),(122293,40350,'hero_title','Contact us'),(122294,40350,'_hero_title','field_617571fe285e8'),(122295,40350,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(122296,40350,'_hero_text','field_6175723c285e9'),(122297,40350,'hero_actions',''),(122298,40350,'_hero_actions','field_61757270285ea'),(122299,40350,'hero_style','default'),(122300,40350,'_hero_style','field_62051d9dc5324'),(122301,40350,'hero_icon','lines'),(122302,40350,'_hero_icon','field_61a6182199d03'),(122303,40350,'_thumbnail_id','40339'),(122304,40350,'__thumbnail_id','field_617570855ddaf'),(122305,40350,'hero_image_pos_x','right'),(122306,40350,'_hero_image_pos_x','field_62ec3d05390bb'),(122307,40350,'hero_image_pos_y','top'),(122308,40350,'_hero_image_pos_y','field_62ec3d05390bc'),(122309,40350,'hero_image_pos',''),(122310,40350,'_hero_image_pos','field_62ec3d05390ba'),(122311,40350,'blocks_1_acfe_flexible_toggle',''),(122312,40350,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122313,40350,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(122314,40350,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122315,40350,'blocks_1_options_theme','#ffffff'),(122316,40350,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(122317,40350,'blocks_1_options_reverse','0'),(122318,40350,'_blocks_1_options_reverse','field_61768049bb8ac'),(122319,40350,'blocks_1_options',''),(122320,40350,'_blocks_1_options','field_617682517c334'),(122321,40350,'blocks_1_split_5050_image','40342'),(122322,40350,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(122323,40350,'blocks_1_split_5050_video',''),(122324,40350,'_blocks_1_split_5050_video','field_6239f3160848a'),(122325,40350,'blocks_1_split_5050_content_title',''),(122326,40350,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(122327,40350,'blocks_1_split_5050_content_heading','Let\'s connect!'),(122328,40350,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(122329,40350,'blocks_1_split_5050_content_text','<h5>Give us a call: 020 3841 6151</h5>\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n<h5>Send us an email: info@biomechanicseducation.com</h5>\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n<h5>Connect on social media</h5>\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(122330,40350,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(122331,40350,'blocks_1_split_5050_content_actions',''),(122332,40350,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(122333,40350,'blocks_1_split_5050_content',''),(122334,40350,'_blocks_1_split_5050_content','field_61767afceb8ba'),(122335,40350,'blocks_2_acfe_flexible_toggle',''),(122336,40350,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122337,40350,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(122338,40350,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122339,40350,'blocks_2_options_theme','#ffffff'),(122340,40350,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(122341,40350,'blocks_2_options_reverse','1'),(122342,40350,'_blocks_2_options_reverse','field_61768049bb8ac'),(122343,40350,'blocks_2_options',''),(122344,40350,'_blocks_2_options','field_617682517c334'),(122345,40350,'blocks_2_split_5050_image','40349'),(122346,40350,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(122347,40350,'blocks_2_split_5050_video',''),(122348,40350,'_blocks_2_split_5050_video','field_6239f3160848a'),(122349,40350,'blocks_2_split_5050_content_title',''),(122350,40350,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(122351,40350,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(122352,40350,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(122353,40350,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n&nbsp;\r\n\r\nCan\'t find what you\'re looking for?\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(122354,40350,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(122355,40350,'blocks_2_split_5050_content_actions',''),(122356,40350,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(122357,40350,'blocks_2_split_5050_content',''),(122358,40350,'_blocks_2_split_5050_content','field_61767afceb8ba'),(122359,40351,'hide_hero','0'),(122360,40351,'_hide_hero','field_66a2380fcda39'),(122361,40351,'fft_hide_from_listings','0'),(122362,40351,'_fft_hide_from_listings','field_61f1320446ab2'),(122363,40351,'fft_page_format','default'),(122364,40351,'_fft_page_format','field_61ae213f1f218'),(122365,40351,'fft_hide_nav','0'),(122366,40351,'_fft_hide_nav','field_635bd5e43527c'),(122367,40351,'fft_hide_header_call_to_action','0'),(122368,40351,'_fft_hide_header_call_to_action','field_635bd6723527d'),(122369,40351,'fft_page_sitemap','0'),(122370,40351,'_fft_page_sitemap','field_61af9b34e8181'),(122371,40351,'blocks_0_acfe_flexible_toggle',''),(122372,40351,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(122373,40351,'blocks_0_acfe_flexible_layout_title','Text Block'),(122374,40351,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(122375,40351,'blocks_0_options_theme','#ffffff'),(122376,40351,'_blocks_0_options_theme','field_6176830e2ad17'),(122377,40351,'blocks_0_options',''),(122378,40351,'_blocks_0_options','field_6176830e2ad16'),(122379,40351,'blocks_0_text_block_heading','Get in Touch'),(122380,40351,'_blocks_0_text_block_heading','field_617669d413097'),(122381,40351,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(122382,40351,'_blocks_0_text_block_content','field_617669ec13098'),(122383,40351,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";}'),(122384,40351,'_blocks','field_6176696113096'),(122385,40351,'hero_title','Contact us'),(122386,40351,'_hero_title','field_617571fe285e8'),(122387,40351,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(122388,40351,'_hero_text','field_6175723c285e9'),(122389,40351,'hero_actions',''),(122390,40351,'_hero_actions','field_61757270285ea'),(122391,40351,'hero_style','default'),(122392,40351,'_hero_style','field_62051d9dc5324'),(122393,40351,'hero_icon','lines'),(122394,40351,'_hero_icon','field_61a6182199d03'),(122395,40351,'_thumbnail_id','40339'),(122396,40351,'__thumbnail_id','field_617570855ddaf'),(122397,40351,'hero_image_pos_x','right'),(122398,40351,'_hero_image_pos_x','field_62ec3d05390bb'),(122399,40351,'hero_image_pos_y','top'),(122400,40351,'_hero_image_pos_y','field_62ec3d05390bc'),(122401,40351,'hero_image_pos',''),(122402,40351,'_hero_image_pos','field_62ec3d05390ba'),(122403,40351,'blocks_1_acfe_flexible_toggle',''),(122404,40351,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122405,40351,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(122406,40351,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122407,40351,'blocks_1_options_theme','#ffffff'),(122408,40351,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(122409,40351,'blocks_1_options_reverse','0'),(122410,40351,'_blocks_1_options_reverse','field_61768049bb8ac'),(122411,40351,'blocks_1_options',''),(122412,40351,'_blocks_1_options','field_617682517c334'),(122413,40351,'blocks_1_split_5050_image','40342'),(122414,40351,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(122415,40351,'blocks_1_split_5050_video',''),(122416,40351,'_blocks_1_split_5050_video','field_6239f3160848a'),(122417,40351,'blocks_1_split_5050_content_title',''),(122418,40351,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(122419,40351,'blocks_1_split_5050_content_heading','Let\'s connect!'),(122420,40351,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(122421,40351,'blocks_1_split_5050_content_text','<h5>Give us a call: 020 3841 6151</h5>\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n<h5>Send us an email: info@biomechanicseducation.com</h5>\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n<h5>Connect on social media</h5>\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(122422,40351,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(122423,40351,'blocks_1_split_5050_content_actions',''),(122424,40351,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(122425,40351,'blocks_1_split_5050_content',''),(122426,40351,'_blocks_1_split_5050_content','field_61767afceb8ba'),(122427,40351,'blocks_2_acfe_flexible_toggle',''),(122428,40351,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122429,40351,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(122430,40351,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122431,40351,'blocks_2_options_theme','#ffffff'),(122432,40351,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(122433,40351,'blocks_2_options_reverse','1'),(122434,40351,'_blocks_2_options_reverse','field_61768049bb8ac'),(122435,40351,'blocks_2_options',''),(122436,40351,'_blocks_2_options','field_617682517c334'),(122437,40351,'blocks_2_split_5050_image','40349'),(122438,40351,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(122439,40351,'blocks_2_split_5050_video',''),(122440,40351,'_blocks_2_split_5050_video','field_6239f3160848a'),(122441,40351,'blocks_2_split_5050_content_title',''),(122442,40351,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(122443,40351,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(122444,40351,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(122445,40351,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\nCan\'t find what you\'re looking for?\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(122446,40351,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(122447,40351,'blocks_2_split_5050_content_actions',''),(122448,40351,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(122449,40351,'blocks_2_split_5050_content',''),(122450,40351,'_blocks_2_split_5050_content','field_61767afceb8ba'),(122451,40352,'hide_hero','0'),(122452,40352,'_hide_hero','field_66a2380fcda39'),(122453,40352,'fft_hide_from_listings','0'),(122454,40352,'_fft_hide_from_listings','field_61f1320446ab2'),(122455,40352,'fft_page_format','default'),(122456,40352,'_fft_page_format','field_61ae213f1f218'),(122457,40352,'fft_hide_nav','0'),(122458,40352,'_fft_hide_nav','field_635bd5e43527c'),(122459,40352,'fft_hide_header_call_to_action','0'),(122460,40352,'_fft_hide_header_call_to_action','field_635bd6723527d'),(122461,40352,'fft_page_sitemap','0'),(122462,40352,'_fft_page_sitemap','field_61af9b34e8181'),(122463,40352,'blocks_0_acfe_flexible_toggle',''),(122464,40352,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(122465,40352,'blocks_0_acfe_flexible_layout_title','Text Block'),(122466,40352,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(122467,40352,'blocks_0_options_theme','#ffffff'),(122468,40352,'_blocks_0_options_theme','field_6176830e2ad17'),(122469,40352,'blocks_0_options',''),(122470,40352,'_blocks_0_options','field_6176830e2ad16'),(122471,40352,'blocks_0_text_block_heading','Get in Touch'),(122472,40352,'_blocks_0_text_block_heading','field_617669d413097'),(122473,40352,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(122474,40352,'_blocks_0_text_block_content','field_617669ec13098'),(122475,40352,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";}'),(122476,40352,'_blocks','field_6176696113096'),(122477,40352,'hero_title','Contact us'),(122478,40352,'_hero_title','field_617571fe285e8'),(122479,40352,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(122480,40352,'_hero_text','field_6175723c285e9'),(122481,40352,'hero_actions',''),(122482,40352,'_hero_actions','field_61757270285ea'),(122483,40352,'hero_style','default'),(122484,40352,'_hero_style','field_62051d9dc5324'),(122485,40352,'hero_icon','lines'),(122486,40352,'_hero_icon','field_61a6182199d03'),(122487,40352,'_thumbnail_id','40339'),(122488,40352,'__thumbnail_id','field_617570855ddaf'),(122489,40352,'hero_image_pos_x','right'),(122490,40352,'_hero_image_pos_x','field_62ec3d05390bb'),(122491,40352,'hero_image_pos_y','top'),(122492,40352,'_hero_image_pos_y','field_62ec3d05390bc'),(122493,40352,'hero_image_pos',''),(122494,40352,'_hero_image_pos','field_62ec3d05390ba'),(122495,40352,'blocks_1_acfe_flexible_toggle',''),(122496,40352,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122497,40352,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(122498,40352,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122499,40352,'blocks_1_options_theme','#ffffff'),(122500,40352,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(122501,40352,'blocks_1_options_reverse','0'),(122502,40352,'_blocks_1_options_reverse','field_61768049bb8ac'),(122503,40352,'blocks_1_options',''),(122504,40352,'_blocks_1_options','field_617682517c334'),(122505,40352,'blocks_1_split_5050_image','40342'),(122506,40352,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(122507,40352,'blocks_1_split_5050_video',''),(122508,40352,'_blocks_1_split_5050_video','field_6239f3160848a'),(122509,40352,'blocks_1_split_5050_content_title',''),(122510,40352,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(122511,40352,'blocks_1_split_5050_content_heading','Let\'s connect!'),(122512,40352,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(122513,40352,'blocks_1_split_5050_content_text','<h3>Give us a call: 020 3841 6151</h3>\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n<h3>Send us an email: info@biomechanicseducation.com</h3>\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n<h3>Connect on social media</h3>\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(122514,40352,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(122515,40352,'blocks_1_split_5050_content_actions',''),(122516,40352,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(122517,40352,'blocks_1_split_5050_content',''),(122518,40352,'_blocks_1_split_5050_content','field_61767afceb8ba'),(122519,40352,'blocks_2_acfe_flexible_toggle',''),(122520,40352,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122521,40352,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(122522,40352,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122523,40352,'blocks_2_options_theme','#ffffff'),(122524,40352,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(122525,40352,'blocks_2_options_reverse','1'),(122526,40352,'_blocks_2_options_reverse','field_61768049bb8ac'),(122527,40352,'blocks_2_options',''),(122528,40352,'_blocks_2_options','field_617682517c334'),(122529,40352,'blocks_2_split_5050_image','40349'),(122530,40352,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(122531,40352,'blocks_2_split_5050_video',''),(122532,40352,'_blocks_2_split_5050_video','field_6239f3160848a'),(122533,40352,'blocks_2_split_5050_content_title',''),(122534,40352,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(122535,40352,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(122536,40352,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(122537,40352,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\nCan\'t find what you\'re looking for?\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(122538,40352,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(122539,40352,'blocks_2_split_5050_content_actions',''),(122540,40352,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(122541,40352,'blocks_2_split_5050_content',''),(122542,40352,'_blocks_2_split_5050_content','field_61767afceb8ba'),(122543,40353,'hide_hero','0'),(122544,40353,'_hide_hero','field_66a2380fcda39'),(122545,40353,'fft_hide_from_listings','0'),(122546,40353,'_fft_hide_from_listings','field_61f1320446ab2'),(122547,40353,'fft_page_format','default'),(122548,40353,'_fft_page_format','field_61ae213f1f218'),(122549,40353,'fft_hide_nav','0'),(122550,40353,'_fft_hide_nav','field_635bd5e43527c'),(122551,40353,'fft_hide_header_call_to_action','0'),(122552,40353,'_fft_hide_header_call_to_action','field_635bd6723527d'),(122553,40353,'fft_page_sitemap','0'),(122554,40353,'_fft_page_sitemap','field_61af9b34e8181'),(122555,40353,'blocks_0_acfe_flexible_toggle',''),(122556,40353,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(122557,40353,'blocks_0_acfe_flexible_layout_title','Text Block'),(122558,40353,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(122559,40353,'blocks_0_options_theme','#ffffff'),(122560,40353,'_blocks_0_options_theme','field_6176830e2ad17'),(122561,40353,'blocks_0_options',''),(122562,40353,'_blocks_0_options','field_6176830e2ad16'),(122563,40353,'blocks_0_text_block_heading','Get in Touch'),(122564,40353,'_blocks_0_text_block_heading','field_617669d413097'),(122565,40353,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(122566,40353,'_blocks_0_text_block_content','field_617669ec13098'),(122567,40353,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";}'),(122568,40353,'_blocks','field_6176696113096'),(122569,40353,'hero_title','Contact us'),(122570,40353,'_hero_title','field_617571fe285e8'),(122571,40353,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(122572,40353,'_hero_text','field_6175723c285e9'),(122573,40353,'hero_actions',''),(122574,40353,'_hero_actions','field_61757270285ea'),(122575,40353,'hero_style','default'),(122576,40353,'_hero_style','field_62051d9dc5324'),(122577,40353,'hero_icon','lines'),(122578,40353,'_hero_icon','field_61a6182199d03'),(122579,40353,'_thumbnail_id','40339'),(122580,40353,'__thumbnail_id','field_617570855ddaf'),(122581,40353,'hero_image_pos_x','right'),(122582,40353,'_hero_image_pos_x','field_62ec3d05390bb'),(122583,40353,'hero_image_pos_y','top'),(122584,40353,'_hero_image_pos_y','field_62ec3d05390bc'),(122585,40353,'hero_image_pos',''),(122586,40353,'_hero_image_pos','field_62ec3d05390ba'),(122587,40353,'blocks_1_acfe_flexible_toggle',''),(122588,40353,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122589,40353,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(122590,40353,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122591,40353,'blocks_1_options_theme','#ffffff'),(122592,40353,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(122593,40353,'blocks_1_options_reverse','0'),(122594,40353,'_blocks_1_options_reverse','field_61768049bb8ac'),(122595,40353,'blocks_1_options',''),(122596,40353,'_blocks_1_options','field_617682517c334'),(122597,40353,'blocks_1_split_5050_image','40342'),(122598,40353,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(122599,40353,'blocks_1_split_5050_video',''),(122600,40353,'_blocks_1_split_5050_video','field_6239f3160848a'),(122601,40353,'blocks_1_split_5050_content_title',''),(122602,40353,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(122603,40353,'blocks_1_split_5050_content_heading','Let\'s connect!'),(122604,40353,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(122605,40353,'blocks_1_split_5050_content_text','<h3>Give us a call:</h3>\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Telephone</strong>\r\n\r\n<a href=\"tel:02038416151\">020 3841 6151</a>\r\n<h3>Send us an email:</h3>\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\nEmail\r\n\r\n<a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n<h3>Connect on social media</h3>\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(122606,40353,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(122607,40353,'blocks_1_split_5050_content_actions',''),(122608,40353,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(122609,40353,'blocks_1_split_5050_content',''),(122610,40353,'_blocks_1_split_5050_content','field_61767afceb8ba'),(122611,40353,'blocks_2_acfe_flexible_toggle',''),(122612,40353,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122613,40353,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(122614,40353,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122615,40353,'blocks_2_options_theme','#ffffff'),(122616,40353,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(122617,40353,'blocks_2_options_reverse','1'),(122618,40353,'_blocks_2_options_reverse','field_61768049bb8ac'),(122619,40353,'blocks_2_options',''),(122620,40353,'_blocks_2_options','field_617682517c334'),(122621,40353,'blocks_2_split_5050_image','40349'),(122622,40353,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(122623,40353,'blocks_2_split_5050_video',''),(122624,40353,'_blocks_2_split_5050_video','field_6239f3160848a'),(122625,40353,'blocks_2_split_5050_content_title',''),(122626,40353,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(122627,40353,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(122628,40353,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(122629,40353,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\nCan\'t find what you\'re looking for?\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(122630,40353,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(122631,40353,'blocks_2_split_5050_content_actions',''),(122632,40353,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(122633,40353,'blocks_2_split_5050_content',''),(122634,40353,'_blocks_2_split_5050_content','field_61767afceb8ba'),(122635,40354,'hide_hero','0'),(122636,40354,'_hide_hero','field_66a2380fcda39'),(122637,40354,'fft_hide_from_listings','0'),(122638,40354,'_fft_hide_from_listings','field_61f1320446ab2'),(122639,40354,'fft_page_format','default'),(122640,40354,'_fft_page_format','field_61ae213f1f218'),(122641,40354,'fft_hide_nav','0'),(122642,40354,'_fft_hide_nav','field_635bd5e43527c'),(122643,40354,'fft_hide_header_call_to_action','0'),(122644,40354,'_fft_hide_header_call_to_action','field_635bd6723527d'),(122645,40354,'fft_page_sitemap','0'),(122646,40354,'_fft_page_sitemap','field_61af9b34e8181'),(122647,40354,'blocks_0_acfe_flexible_toggle',''),(122648,40354,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(122649,40354,'blocks_0_acfe_flexible_layout_title','Text Block'),(122650,40354,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(122651,40354,'blocks_0_options_theme','#ffffff'),(122652,40354,'_blocks_0_options_theme','field_6176830e2ad17'),(122653,40354,'blocks_0_options',''),(122654,40354,'_blocks_0_options','field_6176830e2ad16'),(122655,40354,'blocks_0_text_block_heading','Get in Touch'),(122656,40354,'_blocks_0_text_block_heading','field_617669d413097'),(122657,40354,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(122658,40354,'_blocks_0_text_block_content','field_617669ec13098'),(122659,40354,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";}'),(122660,40354,'_blocks','field_6176696113096'),(122661,40354,'hero_title','Contact us'),(122662,40354,'_hero_title','field_617571fe285e8'),(122663,40354,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(122664,40354,'_hero_text','field_6175723c285e9'),(122665,40354,'hero_actions',''),(122666,40354,'_hero_actions','field_61757270285ea'),(122667,40354,'hero_style','default'),(122668,40354,'_hero_style','field_62051d9dc5324'),(122669,40354,'hero_icon','lines'),(122670,40354,'_hero_icon','field_61a6182199d03'),(122671,40354,'_thumbnail_id','40339'),(122672,40354,'__thumbnail_id','field_617570855ddaf'),(122673,40354,'hero_image_pos_x','right'),(122674,40354,'_hero_image_pos_x','field_62ec3d05390bb'),(122675,40354,'hero_image_pos_y','top'),(122676,40354,'_hero_image_pos_y','field_62ec3d05390bc'),(122677,40354,'hero_image_pos',''),(122678,40354,'_hero_image_pos','field_62ec3d05390ba'),(122679,40354,'blocks_1_acfe_flexible_toggle',''),(122680,40354,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122681,40354,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(122682,40354,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122683,40354,'blocks_1_options_theme','#ffffff'),(122684,40354,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(122685,40354,'blocks_1_options_reverse','0'),(122686,40354,'_blocks_1_options_reverse','field_61768049bb8ac'),(122687,40354,'blocks_1_options',''),(122688,40354,'_blocks_1_options','field_617682517c334'),(122689,40354,'blocks_1_split_5050_image','40342'),(122690,40354,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(122691,40354,'blocks_1_split_5050_video',''),(122692,40354,'_blocks_1_split_5050_video','field_6239f3160848a'),(122693,40354,'blocks_1_split_5050_content_title',''),(122694,40354,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(122695,40354,'blocks_1_split_5050_content_heading','Let\'s connect!'),(122696,40354,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(122697,40354,'blocks_1_split_5050_content_text','<h3>Give us a call:</h3>\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Telephone </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n<h3>Send us an email:</h3>\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\nEmail <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n<h3>Connect on social media</h3>\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(122698,40354,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(122699,40354,'blocks_1_split_5050_content_actions',''),(122700,40354,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(122701,40354,'blocks_1_split_5050_content',''),(122702,40354,'_blocks_1_split_5050_content','field_61767afceb8ba'),(122703,40354,'blocks_2_acfe_flexible_toggle',''),(122704,40354,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122705,40354,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(122706,40354,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122707,40354,'blocks_2_options_theme','#ffffff'),(122708,40354,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(122709,40354,'blocks_2_options_reverse','1'),(122710,40354,'_blocks_2_options_reverse','field_61768049bb8ac'),(122711,40354,'blocks_2_options',''),(122712,40354,'_blocks_2_options','field_617682517c334'),(122713,40354,'blocks_2_split_5050_image','40349'),(122714,40354,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(122715,40354,'blocks_2_split_5050_video',''),(122716,40354,'_blocks_2_split_5050_video','field_6239f3160848a'),(122717,40354,'blocks_2_split_5050_content_title',''),(122718,40354,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(122719,40354,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(122720,40354,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(122721,40354,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\nCan\'t find what you\'re looking for?\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(122722,40354,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(122723,40354,'blocks_2_split_5050_content_actions',''),(122724,40354,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(122725,40354,'blocks_2_split_5050_content',''),(122726,40354,'_blocks_2_split_5050_content','field_61767afceb8ba'),(122727,40355,'hide_hero','0'),(122728,40355,'_hide_hero','field_66a2380fcda39'),(122729,40355,'fft_hide_from_listings','0'),(122730,40355,'_fft_hide_from_listings','field_61f1320446ab2'),(122731,40355,'fft_page_format','default'),(122732,40355,'_fft_page_format','field_61ae213f1f218'),(122733,40355,'fft_hide_nav','0'),(122734,40355,'_fft_hide_nav','field_635bd5e43527c'),(122735,40355,'fft_hide_header_call_to_action','0'),(122736,40355,'_fft_hide_header_call_to_action','field_635bd6723527d'),(122737,40355,'fft_page_sitemap','0'),(122738,40355,'_fft_page_sitemap','field_61af9b34e8181'),(122739,40355,'blocks_0_acfe_flexible_toggle',''),(122740,40355,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(122741,40355,'blocks_0_acfe_flexible_layout_title','Text Block'),(122742,40355,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(122743,40355,'blocks_0_options_theme','#ffffff'),(122744,40355,'_blocks_0_options_theme','field_6176830e2ad17'),(122745,40355,'blocks_0_options',''),(122746,40355,'_blocks_0_options','field_6176830e2ad16'),(122747,40355,'blocks_0_text_block_heading','Get in Touch'),(122748,40355,'_blocks_0_text_block_heading','field_617669d413097'),(122749,40355,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(122750,40355,'_blocks_0_text_block_content','field_617669ec13098'),(122751,40355,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";}'),(122752,40355,'_blocks','field_6176696113096'),(122753,40355,'hero_title','Contact us'),(122754,40355,'_hero_title','field_617571fe285e8'),(122755,40355,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(122756,40355,'_hero_text','field_6175723c285e9'),(122757,40355,'hero_actions',''),(122758,40355,'_hero_actions','field_61757270285ea'),(122759,40355,'hero_style','default'),(122760,40355,'_hero_style','field_62051d9dc5324'),(122761,40355,'hero_icon','lines'),(122762,40355,'_hero_icon','field_61a6182199d03'),(122763,40355,'_thumbnail_id','40339'),(122764,40355,'__thumbnail_id','field_617570855ddaf'),(122765,40355,'hero_image_pos_x','right'),(122766,40355,'_hero_image_pos_x','field_62ec3d05390bb'),(122767,40355,'hero_image_pos_y','top'),(122768,40355,'_hero_image_pos_y','field_62ec3d05390bc'),(122769,40355,'hero_image_pos',''),(122770,40355,'_hero_image_pos','field_62ec3d05390ba'),(122771,40355,'blocks_1_acfe_flexible_toggle',''),(122772,40355,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122773,40355,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(122774,40355,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122775,40355,'blocks_1_options_theme','#ffffff'),(122776,40355,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(122777,40355,'blocks_1_options_reverse','0'),(122778,40355,'_blocks_1_options_reverse','field_61768049bb8ac'),(122779,40355,'blocks_1_options',''),(122780,40355,'_blocks_1_options','field_617682517c334'),(122781,40355,'blocks_1_split_5050_image','40342'),(122782,40355,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(122783,40355,'blocks_1_split_5050_video',''),(122784,40355,'_blocks_1_split_5050_video','field_6239f3160848a'),(122785,40355,'blocks_1_split_5050_content_title',''),(122786,40355,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(122787,40355,'blocks_1_split_5050_content_heading','Let\'s connect!'),(122788,40355,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(122789,40355,'blocks_1_split_5050_content_text','<strong>Give us a call:</strong>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Telephone </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\n<strong>Send us an email:</strong>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Email</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(122790,40355,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(122791,40355,'blocks_1_split_5050_content_actions',''),(122792,40355,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(122793,40355,'blocks_1_split_5050_content',''),(122794,40355,'_blocks_1_split_5050_content','field_61767afceb8ba'),(122795,40355,'blocks_2_acfe_flexible_toggle',''),(122796,40355,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122797,40355,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(122798,40355,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122799,40355,'blocks_2_options_theme','#ffffff'),(122800,40355,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(122801,40355,'blocks_2_options_reverse','1'),(122802,40355,'_blocks_2_options_reverse','field_61768049bb8ac'),(122803,40355,'blocks_2_options',''),(122804,40355,'_blocks_2_options','field_617682517c334'),(122805,40355,'blocks_2_split_5050_image','40349'),(122806,40355,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(122807,40355,'blocks_2_split_5050_video',''),(122808,40355,'_blocks_2_split_5050_video','field_6239f3160848a'),(122809,40355,'blocks_2_split_5050_content_title',''),(122810,40355,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(122811,40355,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(122812,40355,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(122813,40355,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\nCan\'t find what you\'re looking for?\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(122814,40355,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(122815,40355,'blocks_2_split_5050_content_actions',''),(122816,40355,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(122817,40355,'blocks_2_split_5050_content',''),(122818,40355,'_blocks_2_split_5050_content','field_61767afceb8ba'),(122819,40356,'hide_hero','0'),(122820,40356,'_hide_hero','field_66a2380fcda39'),(122821,40356,'fft_hide_from_listings','0'),(122822,40356,'_fft_hide_from_listings','field_61f1320446ab2'),(122823,40356,'fft_page_format','default'),(122824,40356,'_fft_page_format','field_61ae213f1f218'),(122825,40356,'fft_hide_nav','0'),(122826,40356,'_fft_hide_nav','field_635bd5e43527c'),(122827,40356,'fft_hide_header_call_to_action','0'),(122828,40356,'_fft_hide_header_call_to_action','field_635bd6723527d'),(122829,40356,'fft_page_sitemap','0'),(122830,40356,'_fft_page_sitemap','field_61af9b34e8181'),(122831,40356,'blocks_0_acfe_flexible_toggle',''),(122832,40356,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(122833,40356,'blocks_0_acfe_flexible_layout_title','Text Block'),(122834,40356,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(122835,40356,'blocks_0_options_theme','#ffffff'),(122836,40356,'_blocks_0_options_theme','field_6176830e2ad17'),(122837,40356,'blocks_0_options',''),(122838,40356,'_blocks_0_options','field_6176830e2ad16'),(122839,40356,'blocks_0_text_block_heading','Get in Touch'),(122840,40356,'_blocks_0_text_block_heading','field_617669d413097'),(122841,40356,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(122842,40356,'_blocks_0_text_block_content','field_617669ec13098'),(122843,40356,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";}'),(122844,40356,'_blocks','field_6176696113096'),(122845,40356,'hero_title','Contact us'),(122846,40356,'_hero_title','field_617571fe285e8'),(122847,40356,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(122848,40356,'_hero_text','field_6175723c285e9'),(122849,40356,'hero_actions',''),(122850,40356,'_hero_actions','field_61757270285ea'),(122851,40356,'hero_style','default'),(122852,40356,'_hero_style','field_62051d9dc5324'),(122853,40356,'hero_icon','lines'),(122854,40356,'_hero_icon','field_61a6182199d03'),(122855,40356,'_thumbnail_id','40339'),(122856,40356,'__thumbnail_id','field_617570855ddaf'),(122857,40356,'hero_image_pos_x','right'),(122858,40356,'_hero_image_pos_x','field_62ec3d05390bb'),(122859,40356,'hero_image_pos_y','top'),(122860,40356,'_hero_image_pos_y','field_62ec3d05390bc'),(122861,40356,'hero_image_pos',''),(122862,40356,'_hero_image_pos','field_62ec3d05390ba'),(122863,40356,'blocks_1_acfe_flexible_toggle',''),(122864,40356,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122865,40356,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(122866,40356,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122867,40356,'blocks_1_options_theme','#ffffff'),(122868,40356,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(122869,40356,'blocks_1_options_reverse','0'),(122870,40356,'_blocks_1_options_reverse','field_61768049bb8ac'),(122871,40356,'blocks_1_options',''),(122872,40356,'_blocks_1_options','field_617682517c334'),(122873,40356,'blocks_1_split_5050_image','40342'),(122874,40356,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(122875,40356,'blocks_1_split_5050_video',''),(122876,40356,'_blocks_1_split_5050_video','field_6239f3160848a'),(122877,40356,'blocks_1_split_5050_content_title',''),(122878,40356,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(122879,40356,'blocks_1_split_5050_content_heading','Let\'s connect!'),(122880,40356,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(122881,40356,'blocks_1_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(122882,40356,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(122883,40356,'blocks_1_split_5050_content_actions',''),(122884,40356,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(122885,40356,'blocks_1_split_5050_content',''),(122886,40356,'_blocks_1_split_5050_content','field_61767afceb8ba'),(122887,40356,'blocks_2_acfe_flexible_toggle',''),(122888,40356,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122889,40356,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(122890,40356,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122891,40356,'blocks_2_options_theme','#ffffff'),(122892,40356,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(122893,40356,'blocks_2_options_reverse','1'),(122894,40356,'_blocks_2_options_reverse','field_61768049bb8ac'),(122895,40356,'blocks_2_options',''),(122896,40356,'_blocks_2_options','field_617682517c334'),(122897,40356,'blocks_2_split_5050_image','40349'),(122898,40356,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(122899,40356,'blocks_2_split_5050_video',''),(122900,40356,'_blocks_2_split_5050_video','field_6239f3160848a'),(122901,40356,'blocks_2_split_5050_content_title',''),(122902,40356,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(122903,40356,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(122904,40356,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(122905,40356,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\nCan\'t find what you\'re looking for?\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(122906,40356,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(122907,40356,'blocks_2_split_5050_content_actions',''),(122908,40356,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(122909,40356,'blocks_2_split_5050_content',''),(122910,40356,'_blocks_2_split_5050_content','field_61767afceb8ba'),(122911,40358,'hide_hero','0'),(122912,40358,'_hide_hero','field_66a2380fcda39'),(122913,40358,'fft_hide_from_listings','0'),(122914,40358,'_fft_hide_from_listings','field_61f1320446ab2'),(122915,40358,'fft_page_format','default'),(122916,40358,'_fft_page_format','field_61ae213f1f218'),(122917,40358,'fft_hide_nav','0'),(122918,40358,'_fft_hide_nav','field_635bd5e43527c'),(122919,40358,'fft_hide_header_call_to_action','0'),(122920,40358,'_fft_hide_header_call_to_action','field_635bd6723527d'),(122921,40358,'fft_page_sitemap','0'),(122922,40358,'_fft_page_sitemap','field_61af9b34e8181'),(122923,40358,'blocks_0_acfe_flexible_toggle',''),(122924,40358,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(122925,40358,'blocks_0_acfe_flexible_layout_title','Text Block'),(122926,40358,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(122927,40358,'blocks_0_options_theme','#ffffff'),(122928,40358,'_blocks_0_options_theme','field_6176830e2ad17'),(122929,40358,'blocks_0_options',''),(122930,40358,'_blocks_0_options','field_6176830e2ad16'),(122931,40358,'blocks_0_text_block_heading','Get in Touch'),(122932,40358,'_blocks_0_text_block_heading','field_617669d413097'),(122933,40358,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(122934,40358,'_blocks_0_text_block_content','field_617669ec13098'),(122935,40358,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";}'),(122936,40358,'_blocks','field_6176696113096'),(122937,40358,'hero_title','Contact us'),(122938,40358,'_hero_title','field_617571fe285e8'),(122939,40358,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(122940,40358,'_hero_text','field_6175723c285e9'),(122941,40358,'hero_actions',''),(122942,40358,'_hero_actions','field_61757270285ea'),(122943,40358,'hero_style','default'),(122944,40358,'_hero_style','field_62051d9dc5324'),(122945,40358,'hero_icon','lines'),(122946,40358,'_hero_icon','field_61a6182199d03'),(122947,40358,'_thumbnail_id','40339'),(122948,40358,'__thumbnail_id','field_617570855ddaf'),(122949,40358,'hero_image_pos_x','right'),(122950,40358,'_hero_image_pos_x','field_62ec3d05390bb'),(122951,40358,'hero_image_pos_y','top'),(122952,40358,'_hero_image_pos_y','field_62ec3d05390bc'),(122953,40358,'hero_image_pos',''),(122954,40358,'_hero_image_pos','field_62ec3d05390ba'),(122955,40358,'blocks_1_acfe_flexible_toggle',''),(122956,40358,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122957,40358,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(122958,40358,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122959,40358,'blocks_1_options_theme','#ffffff'),(122960,40358,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(122961,40358,'blocks_1_options_reverse','0'),(122962,40358,'_blocks_1_options_reverse','field_61768049bb8ac'),(122963,40358,'blocks_1_options',''),(122964,40358,'_blocks_1_options','field_617682517c334'),(122965,40358,'blocks_1_split_5050_image','40342'),(122966,40358,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(122967,40358,'blocks_1_split_5050_video',''),(122968,40358,'_blocks_1_split_5050_video','field_6239f3160848a'),(122969,40358,'blocks_1_split_5050_content_title',''),(122970,40358,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(122971,40358,'blocks_1_split_5050_content_heading','Let\'s connect!'),(122972,40358,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(122973,40358,'blocks_1_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(122974,40358,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(122975,40358,'blocks_1_split_5050_content_actions',''),(122976,40358,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(122977,40358,'blocks_1_split_5050_content',''),(122978,40358,'_blocks_1_split_5050_content','field_61767afceb8ba'),(122979,40358,'blocks_2_acfe_flexible_toggle',''),(122980,40358,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(122981,40358,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(122982,40358,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(122983,40358,'blocks_2_options_theme','#ffffff'),(122984,40358,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(122985,40358,'blocks_2_options_reverse','1'),(122986,40358,'_blocks_2_options_reverse','field_61768049bb8ac'),(122987,40358,'blocks_2_options',''),(122988,40358,'_blocks_2_options','field_617682517c334'),(122989,40358,'blocks_2_split_5050_image','40349'),(122990,40358,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(122991,40358,'blocks_2_split_5050_video',''),(122992,40358,'_blocks_2_split_5050_video','field_6239f3160848a'),(122993,40358,'blocks_2_split_5050_content_title',''),(122994,40358,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(122995,40358,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(122996,40358,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(122997,40358,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(122998,40358,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(122999,40358,'blocks_2_split_5050_content_actions',''),(123000,40358,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(123001,40358,'blocks_2_split_5050_content',''),(123002,40358,'_blocks_2_split_5050_content','field_61767afceb8ba'),(123003,40359,'hero_style','default'),(123004,40359,'_hero_style','field_62051d9dc5324'),(123005,40359,'hero_image_pos_x','right'),(123006,40359,'_hero_image_pos_x','field_62ec3d05390bb'),(123007,40359,'hero_image_pos_y','top'),(123008,40359,'_hero_image_pos_y','field_62ec3d05390bc'),(123009,40359,'hero_image_pos',''),(123010,40359,'_hero_image_pos','field_62ec3d05390ba'),(123011,40359,'hero_title','Biomechanics Coach Course - David Lloyd'),(123012,40359,'_hero_title','field_617571fe285e8'),(123013,40359,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(123014,40359,'_hero_text','field_6175723c285e9'),(123015,40359,'hero_actions','1'),(123016,40359,'_hero_actions','field_61757270285ea'),(123017,40359,'hero_icon',''),(123018,40359,'_hero_icon','field_61a6182199d03'),(123019,40359,'fft_hide_from_listings','0'),(123020,40359,'_fft_hide_from_listings','field_61f1320446ab2'),(123021,40359,'fft_page_format','default'),(123022,40359,'_fft_page_format','field_61ae213f1f218'),(123023,40359,'fft_hide_nav','1'),(123024,40359,'_fft_hide_nav','field_635bd5e43527c'),(123025,40359,'fft_hide_header_call_to_action','0'),(123026,40359,'_fft_hide_header_call_to_action','field_635bd6723527d'),(123027,40359,'fft_page_sitemap','1'),(123028,40359,'_fft_page_sitemap','field_61af9b34e8181'),(123029,40359,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(123030,40359,'_blocks','field_6176696113096'),(123031,40359,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-38973-6\";s:6:\"target\";s:6:\"_blank\";}'),(123032,40359,'_hero_actions_0_button','field_61757281285eb'),(123033,40359,'_thumbnail_id','38977'),(123034,40359,'__thumbnail_id','field_617570855ddaf'),(123035,40359,'blocks_0_acfe_flexible_toggle',''),(123036,40359,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(123037,40359,'blocks_0_acfe_flexible_layout_title','Icons'),(123038,40359,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(123039,40359,'blocks_0_options_theme','#ffffff'),(123040,40359,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(123041,40359,'blocks_0_options_format','row'),(123042,40359,'_blocks_0_options_format','field_64bfde9a90690'),(123043,40359,'blocks_0_options',''),(123044,40359,'_blocks_0_options','field_64bfdd9b90684'),(123045,40359,'blocks_0_icon_row_items_0_icon','qualification.svg'),(123046,40359,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(123047,40359,'blocks_0_icon_row_items_0_label','Course Type'),(123048,40359,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(123049,40359,'blocks_0_icon_row_items_0_text','Blended Learning'),(123050,40359,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(123051,40359,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(123052,40359,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(123053,40359,'blocks_0_icon_row_items_1_label','Qualification'),(123054,40359,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(123055,40359,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(123056,40359,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(123057,40359,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(123058,40359,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(123059,40359,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(123060,40359,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(123061,40359,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(123062,40359,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(123063,40359,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(123064,40359,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(123065,40359,'blocks_0_icon_row_items_3_label','IBA Registered'),(123066,40359,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(123067,40359,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(123068,40359,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(123069,40359,'blocks_0_icon_row_items','4'),(123070,40359,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(123071,40359,'blocks_1_acfe_flexible_toggle',''),(123072,40359,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(123073,40359,'blocks_1_acfe_flexible_layout_title','Form'),(123074,40359,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(123075,40359,'blocks_1_row_content_format','promotion'),(123076,40359,'_blocks_1_row_content_format','field_6481ead962881'),(123077,40359,'blocks_1_row_content_title',''),(123078,40359,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(123079,40359,'blocks_1_row_content_heading',''),(123080,40359,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(123081,40359,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(123082,40359,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(123083,40359,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(123084,40359,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(123085,40359,'blocks_1_row_content_actions','1'),(123086,40359,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(123087,40359,'blocks_1_row_content',''),(123088,40359,'_blocks_1_row_content','field_61a0f5f5b3db0'),(123089,40359,'blocks_1_row_form',''),(123090,40359,'_blocks_1_row_form','field_61a4ff2c0b08e'),(123091,40359,'blocks_1_row_form_button_label',''),(123092,40359,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(123093,40359,'blocks_1_row_content_promotion_label','Up to 10% Off'),(123094,40359,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(123095,40359,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(123096,40359,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(123097,40359,'blocks_1_row_content_promotion_value','Up to 10% Off'),(123098,40359,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(123099,40359,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(123100,40359,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(123101,40359,'blocks_1_row_content_promotion',''),(123102,40359,'_blocks_1_row_content_promotion','field_6481eb3962882'),(123103,40359,'blocks_1_row_form_title','David Lloyd Referral'),(123104,40359,'_blocks_1_row_form_title','field_64872db5127af'),(123105,40359,'blocks_2_acfe_flexible_toggle',''),(123106,40359,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(123107,40359,'blocks_2_acfe_flexible_layout_title','Logos'),(123108,40359,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(123109,40359,'blocks_2_options_theme','#ffffff'),(123110,40359,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(123111,40359,'blocks_2_options_format','grid'),(123112,40359,'_blocks_2_options_format','field_61782964ee971'),(123113,40359,'blocks_2_options',''),(123114,40359,'_blocks_2_options','field_61782954ee965'),(123115,40359,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(123116,40359,'_blocks_2_logos','field_61782954ee96d'),(123117,40359,'blocks_2_title',''),(123118,40359,'_blocks_2_title','field_668fbfdc2daa1'),(123119,40359,'blocks_3_acfe_flexible_toggle',''),(123120,40359,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(123121,40359,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(123122,40359,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(123123,40359,'blocks_3_size','large'),(123124,40359,'_blocks_3_size','field_6487038f297c1'),(123125,40359,'blocks_3_row_content_title',''),(123126,40359,'_blocks_3_row_content_title','field_64870132a865d'),(123127,40359,'blocks_3_row_content_heading','Course Overview'),(123128,40359,'_blocks_3_row_content_heading','field_64870142a865e'),(123129,40359,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring learners a system that pulls their skills together.'),(123130,40359,'_blocks_3_row_content_text','field_64870148a865f'),(123131,40359,'blocks_3_row_content',''),(123132,40359,'_blocks_3_row_content','field_6487008ba865c'),(123133,40359,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(123134,40359,'_blocks_3_video_src','field_6193c4a98ec07'),(123135,40359,'blocks_3_video_thumbnail','38998'),(123136,40359,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(123137,40359,'blocks_4_acfe_flexible_toggle',''),(123138,40359,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(123139,40359,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(123140,40359,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(123141,40359,'blocks_4_options_theme','#ffffff'),(123142,40359,'_blocks_4_options_theme','field_6176830e2ad17'),(123143,40359,'blocks_4_options',''),(123144,40359,'_blocks_4_options','field_6176830e2ad16'),(123145,40359,'blocks_4_text_block_heading','Learn more about the course'),(123146,40359,'_blocks_4_text_block_heading','field_617669d413097'),(123147,40359,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching learners will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(123148,40359,'_blocks_4_text_block_content','field_617669ec13098'),(123149,40359,'blocks_5_acfe_flexible_toggle',''),(123150,40359,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(123151,40359,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(123152,40359,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(123153,40359,'blocks_5_options_theme','#ffffff'),(123154,40359,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(123155,40359,'blocks_5_options',''),(123156,40359,'_blocks_5_options','field_6177cfcd8140f'),(123157,40359,'blocks_5_tabs_0_tab_label','What\'s Included'),(123158,40359,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(123159,40359,'blocks_5_tabs_0_tab_content_title',''),(123160,40359,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(123161,40359,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(123162,40359,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(123163,40359,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(123164,40359,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(123165,40359,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(123166,40359,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(123167,40359,'blocks_5_tabs_0_tab_content_actions','1'),(123168,40359,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(123169,40359,'blocks_5_tabs_0_tab_content',''),(123170,40359,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(123171,40359,'blocks_5_tabs_0_tab_image','39009'),(123172,40359,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(123173,40359,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(123174,40359,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(123175,40359,'blocks_5_tabs_1_tab_content_title',''),(123176,40359,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(123177,40359,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(123178,40359,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(123179,40359,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(123180,40359,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(123181,40359,'blocks_5_tabs_1_tab_content_actions','1'),(123182,40359,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(123183,40359,'blocks_5_tabs_1_tab_content',''),(123184,40359,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(123185,40359,'blocks_5_tabs_1_tab_image','39010'),(123186,40359,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(123187,40359,'blocks_5_tabs','2'),(123188,40359,'_blocks_5_tabs','field_6177cff281419'),(123189,40359,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(123190,40359,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(123191,40359,'blocks_6_acfe_flexible_toggle',''),(123192,40359,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(123193,40359,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(123194,40359,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(123195,40359,'blocks_6_options_theme','#ffffff'),(123196,40359,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(123197,40359,'blocks_6_options_state','0'),(123198,40359,'_blocks_6_options_state','field_6239fcb7508c5'),(123199,40359,'blocks_6_options',''),(123200,40359,'_blocks_6_options','field_6177e2991ac44'),(123201,40359,'blocks_6_accordion_content','faqs'),(123202,40359,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(123203,40359,'blocks_6_actions',''),(123204,40359,'_blocks_6_actions','field_61a746a817f7a'),(123205,40359,'blocks_6_content_title',''),(123206,40359,'_blocks_6_content_title','field_64d237e8bb1e2'),(123207,40359,'blocks_6_content_heading','Frequently asked questions'),(123208,40359,'_blocks_6_content_heading','field_64d237e8bb1e3'),(123209,40359,'blocks_6_content_text',''),(123210,40359,'_blocks_6_content_text','field_64d237e8bb1e4'),(123211,40359,'blocks_6_content_actions',''),(123212,40359,'_blocks_6_content_actions','field_64d237e8bb1e5'),(123213,40359,'blocks_6_content_align','left'),(123214,40359,'_blocks_6_content_align','field_64d2443e6b6aa'),(123215,40359,'blocks_6_content',''),(123216,40359,'_blocks_6_content','field_64d237e8bb1e1'),(123217,40359,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(123218,40359,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(123219,40359,'blocks_7_acfe_flexible_toggle',''),(123220,40359,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(123221,40359,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(123222,40359,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(123223,40359,'blocks_7_options_alignment','center'),(123224,40359,'_blocks_7_options_alignment','field_61769449f5490'),(123225,40359,'blocks_7_options',''),(123226,40359,'_blocks_7_options','field_617693e1428f0'),(123227,40359,'blocks_7_promo_panel_image','39035'),(123228,40359,'_blocks_7_promo_panel_image','field_617693e1428f3'),(123229,40359,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(123230,40359,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(123231,40359,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(123232,40359,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(123233,40359,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(123234,40359,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(123235,40359,'blocks_7_promo_panel_content_actions','1'),(123236,40359,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(123237,40359,'blocks_7_promo_panel_content',''),(123238,40359,'_blocks_7_promo_panel_content','field_617693e1428f4'),(123239,40359,'hide_hero','0'),(123240,40359,'_hide_hero','field_66a2380fcda39'),(123241,40360,'hero_style','default'),(123242,40360,'_hero_style','field_62051d9dc5324'),(123243,40360,'hero_image_pos_x','right'),(123244,40360,'_hero_image_pos_x','field_62ec3d05390bb'),(123245,40360,'hero_image_pos_y','top'),(123246,40360,'_hero_image_pos_y','field_62ec3d05390bc'),(123247,40360,'hero_image_pos',''),(123248,40360,'_hero_image_pos','field_62ec3d05390ba'),(123249,40360,'hero_title','Biomechanics Coach Course - David Lloyd'),(123250,40360,'_hero_title','field_617571fe285e8'),(123251,40360,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(123252,40360,'_hero_text','field_6175723c285e9'),(123253,40360,'hero_actions','1'),(123254,40360,'_hero_actions','field_61757270285ea'),(123255,40360,'hero_icon',''),(123256,40360,'_hero_icon','field_61a6182199d03'),(123257,40360,'fft_hide_from_listings','0'),(123258,40360,'_fft_hide_from_listings','field_61f1320446ab2'),(123259,40360,'fft_page_format','default'),(123260,40360,'_fft_page_format','field_61ae213f1f218'),(123261,40360,'fft_hide_nav','1'),(123262,40360,'_fft_hide_nav','field_635bd5e43527c'),(123263,40360,'fft_hide_header_call_to_action','0'),(123264,40360,'_fft_hide_header_call_to_action','field_635bd6723527d'),(123265,40360,'fft_page_sitemap','1'),(123266,40360,'_fft_page_sitemap','field_61af9b34e8181'),(123267,40360,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(123268,40360,'_blocks','field_6176696113096'),(123269,40360,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-38973-6\";s:6:\"target\";s:6:\"_blank\";}'),(123270,40360,'_hero_actions_0_button','field_61757281285eb'),(123271,40360,'_thumbnail_id','38977'),(123272,40360,'__thumbnail_id','field_617570855ddaf'),(123273,40360,'blocks_0_acfe_flexible_toggle',''),(123274,40360,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(123275,40360,'blocks_0_acfe_flexible_layout_title','Icons'),(123276,40360,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(123277,40360,'blocks_0_options_theme','#ffffff'),(123278,40360,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(123279,40360,'blocks_0_options_format','row'),(123280,40360,'_blocks_0_options_format','field_64bfde9a90690'),(123281,40360,'blocks_0_options',''),(123282,40360,'_blocks_0_options','field_64bfdd9b90684'),(123283,40360,'blocks_0_icon_row_items_0_icon','qualification.svg'),(123284,40360,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(123285,40360,'blocks_0_icon_row_items_0_label','Course Type'),(123286,40360,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(123287,40360,'blocks_0_icon_row_items_0_text','Blended Learning'),(123288,40360,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(123289,40360,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(123290,40360,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(123291,40360,'blocks_0_icon_row_items_1_label','Qualification'),(123292,40360,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(123293,40360,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(123294,40360,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(123295,40360,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(123296,40360,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(123297,40360,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(123298,40360,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(123299,40360,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(123300,40360,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(123301,40360,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(123302,40360,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(123303,40360,'blocks_0_icon_row_items_3_label','IBA Registered'),(123304,40360,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(123305,40360,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(123306,40360,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(123307,40360,'blocks_0_icon_row_items','4'),(123308,40360,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(123309,40360,'blocks_1_acfe_flexible_toggle',''),(123310,40360,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(123311,40360,'blocks_1_acfe_flexible_layout_title','Form'),(123312,40360,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(123313,40360,'blocks_1_row_content_format','promotion'),(123314,40360,'_blocks_1_row_content_format','field_6481ead962881'),(123315,40360,'blocks_1_row_content_title',''),(123316,40360,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(123317,40360,'blocks_1_row_content_heading',''),(123318,40360,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(123319,40360,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(123320,40360,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(123321,40360,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(123322,40360,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(123323,40360,'blocks_1_row_content_actions','1'),(123324,40360,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(123325,40360,'blocks_1_row_content',''),(123326,40360,'_blocks_1_row_content','field_61a0f5f5b3db0'),(123327,40360,'blocks_1_row_form',''),(123328,40360,'_blocks_1_row_form','field_61a4ff2c0b08e'),(123329,40360,'blocks_1_row_form_button_label',''),(123330,40360,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(123331,40360,'blocks_1_row_content_promotion_label','Up to 10% Off'),(123332,40360,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(123333,40360,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(123334,40360,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(123335,40360,'blocks_1_row_content_promotion_value','Up to 10% Off'),(123336,40360,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(123337,40360,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(123338,40360,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(123339,40360,'blocks_1_row_content_promotion',''),(123340,40360,'_blocks_1_row_content_promotion','field_6481eb3962882'),(123341,40360,'blocks_1_row_form_title','David Lloyd Referral'),(123342,40360,'_blocks_1_row_form_title','field_64872db5127af'),(123343,40360,'blocks_2_acfe_flexible_toggle',''),(123344,40360,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(123345,40360,'blocks_2_acfe_flexible_layout_title','Logos'),(123346,40360,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(123347,40360,'blocks_2_options_theme','#ffffff'),(123348,40360,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(123349,40360,'blocks_2_options_format','grid'),(123350,40360,'_blocks_2_options_format','field_61782964ee971'),(123351,40360,'blocks_2_options',''),(123352,40360,'_blocks_2_options','field_61782954ee965'),(123353,40360,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(123354,40360,'_blocks_2_logos','field_61782954ee96d'),(123355,40360,'blocks_2_title',''),(123356,40360,'_blocks_2_title','field_668fbfdc2daa1'),(123357,40360,'blocks_3_acfe_flexible_toggle',''),(123358,40360,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(123359,40360,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(123360,40360,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(123361,40360,'blocks_3_size','large'),(123362,40360,'_blocks_3_size','field_6487038f297c1'),(123363,40360,'blocks_3_row_content_title',''),(123364,40360,'_blocks_3_row_content_title','field_64870132a865d'),(123365,40360,'blocks_3_row_content_heading','Course Overview'),(123366,40360,'_blocks_3_row_content_heading','field_64870142a865e'),(123367,40360,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring learners a system that pulls their skills together.'),(123368,40360,'_blocks_3_row_content_text','field_64870148a865f'),(123369,40360,'blocks_3_row_content',''),(123370,40360,'_blocks_3_row_content','field_6487008ba865c'),(123371,40360,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(123372,40360,'_blocks_3_video_src','field_6193c4a98ec07'),(123373,40360,'blocks_3_video_thumbnail','38998'),(123374,40360,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(123375,40360,'blocks_4_acfe_flexible_toggle',''),(123376,40360,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(123377,40360,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(123378,40360,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(123379,40360,'blocks_4_options_theme','#ffffff'),(123380,40360,'_blocks_4_options_theme','field_6176830e2ad17'),(123381,40360,'blocks_4_options',''),(123382,40360,'_blocks_4_options','field_6176830e2ad16'),(123383,40360,'blocks_4_text_block_heading','Learn more about the course'),(123384,40360,'_blocks_4_text_block_heading','field_617669d413097'),(123385,40360,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching learners will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(123386,40360,'_blocks_4_text_block_content','field_617669ec13098'),(123387,40360,'blocks_5_acfe_flexible_toggle',''),(123388,40360,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(123389,40360,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(123390,40360,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(123391,40360,'blocks_5_options_theme','#ffffff'),(123392,40360,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(123393,40360,'blocks_5_options',''),(123394,40360,'_blocks_5_options','field_6177cfcd8140f'),(123395,40360,'blocks_5_tabs_0_tab_label','What\'s Included'),(123396,40360,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(123397,40360,'blocks_5_tabs_0_tab_content_title',''),(123398,40360,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(123399,40360,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(123400,40360,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(123401,40360,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(123402,40360,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(123403,40360,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(123404,40360,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(123405,40360,'blocks_5_tabs_0_tab_content_actions','1'),(123406,40360,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(123407,40360,'blocks_5_tabs_0_tab_content',''),(123408,40360,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(123409,40360,'blocks_5_tabs_0_tab_image','39009'),(123410,40360,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(123411,40360,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(123412,40360,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(123413,40360,'blocks_5_tabs_1_tab_content_title',''),(123414,40360,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(123415,40360,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(123416,40360,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(123417,40360,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(123418,40360,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(123419,40360,'blocks_5_tabs_1_tab_content_actions','1'),(123420,40360,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(123421,40360,'blocks_5_tabs_1_tab_content',''),(123422,40360,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(123423,40360,'blocks_5_tabs_1_tab_image','39010'),(123424,40360,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(123425,40360,'blocks_5_tabs','2'),(123426,40360,'_blocks_5_tabs','field_6177cff281419'),(123427,40360,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(123428,40360,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(123429,40360,'blocks_6_acfe_flexible_toggle',''),(123430,40360,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(123431,40360,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(123432,40360,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(123433,40360,'blocks_6_options_theme','#ffffff'),(123434,40360,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(123435,40360,'blocks_6_options_state','0'),(123436,40360,'_blocks_6_options_state','field_6239fcb7508c5'),(123437,40360,'blocks_6_options',''),(123438,40360,'_blocks_6_options','field_6177e2991ac44'),(123439,40360,'blocks_6_accordion_content','faqs'),(123440,40360,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(123441,40360,'blocks_6_actions',''),(123442,40360,'_blocks_6_actions','field_61a746a817f7a'),(123443,40360,'blocks_6_content_title',''),(123444,40360,'_blocks_6_content_title','field_64d237e8bb1e2'),(123445,40360,'blocks_6_content_heading','Frequently asked questions'),(123446,40360,'_blocks_6_content_heading','field_64d237e8bb1e3'),(123447,40360,'blocks_6_content_text',''),(123448,40360,'_blocks_6_content_text','field_64d237e8bb1e4'),(123449,40360,'blocks_6_content_actions',''),(123450,40360,'_blocks_6_content_actions','field_64d237e8bb1e5'),(123451,40360,'blocks_6_content_align','left'),(123452,40360,'_blocks_6_content_align','field_64d2443e6b6aa'),(123453,40360,'blocks_6_content',''),(123454,40360,'_blocks_6_content','field_64d237e8bb1e1'),(123455,40360,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(123456,40360,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(123457,40360,'blocks_7_acfe_flexible_toggle',''),(123458,40360,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(123459,40360,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(123460,40360,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(123461,40360,'blocks_7_options_alignment','center'),(123462,40360,'_blocks_7_options_alignment','field_61769449f5490'),(123463,40360,'blocks_7_options',''),(123464,40360,'_blocks_7_options','field_617693e1428f0'),(123465,40360,'blocks_7_promo_panel_image','39035'),(123466,40360,'_blocks_7_promo_panel_image','field_617693e1428f3'),(123467,40360,'blocks_7_promo_panel_content_heading','Ready to level up your exercise career?'),(123468,40360,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(123469,40360,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(123470,40360,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(123471,40360,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(123472,40360,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(123473,40360,'blocks_7_promo_panel_content_actions','1'),(123474,40360,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(123475,40360,'blocks_7_promo_panel_content',''),(123476,40360,'_blocks_7_promo_panel_content','field_617693e1428f4'),(123477,40360,'hide_hero','0'),(123478,40360,'_hide_hero','field_66a2380fcda39'),(123479,40361,'hero_style','default'),(123480,40361,'_hero_style','field_62051d9dc5324'),(123481,40361,'hero_image_pos_x','right'),(123482,40361,'_hero_image_pos_x','field_62ec3d05390bb'),(123483,40361,'hero_image_pos_y','top'),(123484,40361,'_hero_image_pos_y','field_62ec3d05390bc'),(123485,40361,'hero_image_pos',''),(123486,40361,'_hero_image_pos','field_62ec3d05390ba'),(123487,40361,'hero_title','Biomechanics Coach Course - David Lloyd'),(123488,40361,'_hero_title','field_617571fe285e8'),(123489,40361,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(123490,40361,'_hero_text','field_6175723c285e9'),(123491,40361,'hero_actions','1'),(123492,40361,'_hero_actions','field_61757270285ea'),(123493,40361,'hero_icon',''),(123494,40361,'_hero_icon','field_61a6182199d03'),(123495,40361,'fft_hide_from_listings','0'),(123496,40361,'_fft_hide_from_listings','field_61f1320446ab2'),(123497,40361,'fft_page_format','default'),(123498,40361,'_fft_page_format','field_61ae213f1f218'),(123499,40361,'fft_hide_nav','1'),(123500,40361,'_fft_hide_nav','field_635bd5e43527c'),(123501,40361,'fft_hide_header_call_to_action','0'),(123502,40361,'_fft_hide_header_call_to_action','field_635bd6723527d'),(123503,40361,'fft_page_sitemap','1'),(123504,40361,'_fft_page_sitemap','field_61af9b34e8181'),(123505,40361,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(123506,40361,'_blocks','field_6176696113096'),(123507,40361,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-38973-6\";s:6:\"target\";s:6:\"_blank\";}'),(123508,40361,'_hero_actions_0_button','field_61757281285eb'),(123509,40361,'_thumbnail_id','38977'),(123510,40361,'__thumbnail_id','field_617570855ddaf'),(123511,40361,'blocks_0_acfe_flexible_toggle',''),(123512,40361,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(123513,40361,'blocks_0_acfe_flexible_layout_title','Icons'),(123514,40361,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(123515,40361,'blocks_0_options_theme','#ffffff'),(123516,40361,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(123517,40361,'blocks_0_options_format','row'),(123518,40361,'_blocks_0_options_format','field_64bfde9a90690'),(123519,40361,'blocks_0_options',''),(123520,40361,'_blocks_0_options','field_64bfdd9b90684'),(123521,40361,'blocks_0_icon_row_items_0_icon','qualification.svg'),(123522,40361,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(123523,40361,'blocks_0_icon_row_items_0_label','Course Type'),(123524,40361,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(123525,40361,'blocks_0_icon_row_items_0_text','Blended Learning'),(123526,40361,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(123527,40361,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(123528,40361,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(123529,40361,'blocks_0_icon_row_items_1_label','Qualification'),(123530,40361,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(123531,40361,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(123532,40361,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(123533,40361,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(123534,40361,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(123535,40361,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(123536,40361,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(123537,40361,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(123538,40361,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(123539,40361,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(123540,40361,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(123541,40361,'blocks_0_icon_row_items_3_label','IBA Registered'),(123542,40361,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(123543,40361,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(123544,40361,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(123545,40361,'blocks_0_icon_row_items','4'),(123546,40361,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(123547,40361,'blocks_1_acfe_flexible_toggle',''),(123548,40361,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(123549,40361,'blocks_1_acfe_flexible_layout_title','Form'),(123550,40361,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(123551,40361,'blocks_1_row_content_format','promotion'),(123552,40361,'_blocks_1_row_content_format','field_6481ead962881'),(123553,40361,'blocks_1_row_content_title',''),(123554,40361,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(123555,40361,'blocks_1_row_content_heading',''),(123556,40361,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(123557,40361,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(123558,40361,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(123559,40361,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(123560,40361,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(123561,40361,'blocks_1_row_content_actions','1'),(123562,40361,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(123563,40361,'blocks_1_row_content',''),(123564,40361,'_blocks_1_row_content','field_61a0f5f5b3db0'),(123565,40361,'blocks_1_row_form',''),(123566,40361,'_blocks_1_row_form','field_61a4ff2c0b08e'),(123567,40361,'blocks_1_row_form_button_label',''),(123568,40361,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(123569,40361,'blocks_1_row_content_promotion_label','Up to 10% Off'),(123570,40361,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(123571,40361,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(123572,40361,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(123573,40361,'blocks_1_row_content_promotion_value','Up to 10% Off'),(123574,40361,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(123575,40361,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(123576,40361,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(123577,40361,'blocks_1_row_content_promotion',''),(123578,40361,'_blocks_1_row_content_promotion','field_6481eb3962882'),(123579,40361,'blocks_1_row_form_title','David Lloyd Referral'),(123580,40361,'_blocks_1_row_form_title','field_64872db5127af'),(123581,40361,'blocks_2_acfe_flexible_toggle',''),(123582,40361,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(123583,40361,'blocks_2_acfe_flexible_layout_title','Logos'),(123584,40361,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(123585,40361,'blocks_2_options_theme','#ffffff'),(123586,40361,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(123587,40361,'blocks_2_options_format','grid'),(123588,40361,'_blocks_2_options_format','field_61782964ee971'),(123589,40361,'blocks_2_options',''),(123590,40361,'_blocks_2_options','field_61782954ee965'),(123591,40361,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(123592,40361,'_blocks_2_logos','field_61782954ee96d'),(123593,40361,'blocks_2_title',''),(123594,40361,'_blocks_2_title','field_668fbfdc2daa1'),(123595,40361,'blocks_3_acfe_flexible_toggle',''),(123596,40361,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(123597,40361,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(123598,40361,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(123599,40361,'blocks_3_size','large'),(123600,40361,'_blocks_3_size','field_6487038f297c1'),(123601,40361,'blocks_3_row_content_title',''),(123602,40361,'_blocks_3_row_content_title','field_64870132a865d'),(123603,40361,'blocks_3_row_content_heading','Course Overview'),(123604,40361,'_blocks_3_row_content_heading','field_64870142a865e'),(123605,40361,'blocks_3_row_content_text','This Diploma in Biomechanics Coaching will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring learners a system that pulls their skills together.'),(123606,40361,'_blocks_3_row_content_text','field_64870148a865f'),(123607,40361,'blocks_3_row_content',''),(123608,40361,'_blocks_3_row_content','field_6487008ba865c'),(123609,40361,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(123610,40361,'_blocks_3_video_src','field_6193c4a98ec07'),(123611,40361,'blocks_3_video_thumbnail','38998'),(123612,40361,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(123613,40361,'blocks_4_acfe_flexible_toggle',''),(123614,40361,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(123615,40361,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(123616,40361,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(123617,40361,'blocks_4_options_theme','#ffffff'),(123618,40361,'_blocks_4_options_theme','field_6176830e2ad17'),(123619,40361,'blocks_4_options',''),(123620,40361,'_blocks_4_options','field_6176830e2ad16'),(123621,40361,'blocks_4_text_block_heading','Learn more about the course'),(123622,40361,'_blocks_4_text_block_heading','field_617669d413097'),(123623,40361,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching learners will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(123624,40361,'_blocks_4_text_block_content','field_617669ec13098'),(123625,40361,'blocks_5_acfe_flexible_toggle',''),(123626,40361,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(123627,40361,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(123628,40361,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(123629,40361,'blocks_5_options_theme','#ffffff'),(123630,40361,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(123631,40361,'blocks_5_options',''),(123632,40361,'_blocks_5_options','field_6177cfcd8140f'),(123633,40361,'blocks_5_tabs_0_tab_label','What\'s Included'),(123634,40361,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(123635,40361,'blocks_5_tabs_0_tab_content_title',''),(123636,40361,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(123637,40361,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(123638,40361,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(123639,40361,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(123640,40361,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(123641,40361,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(123642,40361,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(123643,40361,'blocks_5_tabs_0_tab_content_actions','1'),(123644,40361,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(123645,40361,'blocks_5_tabs_0_tab_content',''),(123646,40361,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(123647,40361,'blocks_5_tabs_0_tab_image','39009'),(123648,40361,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(123649,40361,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(123650,40361,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(123651,40361,'blocks_5_tabs_1_tab_content_title',''),(123652,40361,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(123653,40361,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(123654,40361,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(123655,40361,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(123656,40361,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(123657,40361,'blocks_5_tabs_1_tab_content_actions','1'),(123658,40361,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(123659,40361,'blocks_5_tabs_1_tab_content',''),(123660,40361,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(123661,40361,'blocks_5_tabs_1_tab_image','39010'),(123662,40361,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(123663,40361,'blocks_5_tabs','2'),(123664,40361,'_blocks_5_tabs','field_6177cff281419'),(123665,40361,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(123666,40361,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(123667,40361,'blocks_6_acfe_flexible_toggle',''),(123668,40361,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(123669,40361,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(123670,40361,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(123671,40361,'blocks_6_options_theme','#ffffff'),(123672,40361,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(123673,40361,'blocks_6_options_state','0'),(123674,40361,'_blocks_6_options_state','field_6239fcb7508c5'),(123675,40361,'blocks_6_options',''),(123676,40361,'_blocks_6_options','field_6177e2991ac44'),(123677,40361,'blocks_6_accordion_content','faqs'),(123678,40361,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(123679,40361,'blocks_6_actions',''),(123680,40361,'_blocks_6_actions','field_61a746a817f7a'),(123681,40361,'blocks_6_content_title',''),(123682,40361,'_blocks_6_content_title','field_64d237e8bb1e2'),(123683,40361,'blocks_6_content_heading','Frequently asked questions'),(123684,40361,'_blocks_6_content_heading','field_64d237e8bb1e3'),(123685,40361,'blocks_6_content_text',''),(123686,40361,'_blocks_6_content_text','field_64d237e8bb1e4'),(123687,40361,'blocks_6_content_actions',''),(123688,40361,'_blocks_6_content_actions','field_64d237e8bb1e5'),(123689,40361,'blocks_6_content_align','left'),(123690,40361,'_blocks_6_content_align','field_64d2443e6b6aa'),(123691,40361,'blocks_6_content',''),(123692,40361,'_blocks_6_content','field_64d237e8bb1e1'),(123693,40361,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(123694,40361,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(123695,40361,'blocks_7_acfe_flexible_toggle',''),(123696,40361,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(123697,40361,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(123698,40361,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(123699,40361,'blocks_7_options_alignment','center'),(123700,40361,'_blocks_7_options_alignment','field_61769449f5490'),(123701,40361,'blocks_7_options',''),(123702,40361,'_blocks_7_options','field_617693e1428f0'),(123703,40361,'blocks_7_promo_panel_image','39035'),(123704,40361,'_blocks_7_promo_panel_image','field_617693e1428f3'),(123705,40361,'blocks_7_promo_panel_content_heading','Ready to level up your exercise career?'),(123706,40361,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(123707,40361,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(123708,40361,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(123709,40361,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(123710,40361,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(123711,40361,'blocks_7_promo_panel_content_actions','1'),(123712,40361,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(123713,40361,'blocks_7_promo_panel_content',''),(123714,40361,'_blocks_7_promo_panel_content','field_617693e1428f4'),(123715,40361,'hide_hero','0'),(123716,40361,'_hide_hero','field_66a2380fcda39'),(123717,40362,'hero_style','default'),(123718,40362,'_hero_style','field_62051d9dc5324'),(123719,40362,'hero_image_pos_x','right'),(123720,40362,'_hero_image_pos_x','field_62ec3d05390bb'),(123721,40362,'hero_image_pos_y','top'),(123722,40362,'_hero_image_pos_y','field_62ec3d05390bc'),(123723,40362,'hero_image_pos',''),(123724,40362,'_hero_image_pos','field_62ec3d05390ba'),(123725,40362,'hero_title','Biomechanics Coach Course - David Lloyd'),(123726,40362,'_hero_title','field_617571fe285e8'),(123727,40362,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(123728,40362,'_hero_text','field_6175723c285e9'),(123729,40362,'hero_actions','1'),(123730,40362,'_hero_actions','field_61757270285ea'),(123731,40362,'hero_icon',''),(123732,40362,'_hero_icon','field_61a6182199d03'),(123733,40362,'fft_hide_from_listings','0'),(123734,40362,'_fft_hide_from_listings','field_61f1320446ab2'),(123735,40362,'fft_page_format','default'),(123736,40362,'_fft_page_format','field_61ae213f1f218'),(123737,40362,'fft_hide_nav','1'),(123738,40362,'_fft_hide_nav','field_635bd5e43527c'),(123739,40362,'fft_hide_header_call_to_action','0'),(123740,40362,'_fft_hide_header_call_to_action','field_635bd6723527d'),(123741,40362,'fft_page_sitemap','1'),(123742,40362,'_fft_page_sitemap','field_61af9b34e8181'),(123743,40362,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(123744,40362,'_blocks','field_6176696113096'),(123745,40362,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-38973-6\";s:6:\"target\";s:6:\"_blank\";}'),(123746,40362,'_hero_actions_0_button','field_61757281285eb'),(123747,40362,'_thumbnail_id','38977'),(123748,40362,'__thumbnail_id','field_617570855ddaf'),(123749,40362,'blocks_0_acfe_flexible_toggle',''),(123750,40362,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(123751,40362,'blocks_0_acfe_flexible_layout_title','Icons'),(123752,40362,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(123753,40362,'blocks_0_options_theme','#ffffff'),(123754,40362,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(123755,40362,'blocks_0_options_format','row'),(123756,40362,'_blocks_0_options_format','field_64bfde9a90690'),(123757,40362,'blocks_0_options',''),(123758,40362,'_blocks_0_options','field_64bfdd9b90684'),(123759,40362,'blocks_0_icon_row_items_0_icon','qualification.svg'),(123760,40362,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(123761,40362,'blocks_0_icon_row_items_0_label','Course Type'),(123762,40362,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(123763,40362,'blocks_0_icon_row_items_0_text','Blended Learning'),(123764,40362,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(123765,40362,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(123766,40362,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(123767,40362,'blocks_0_icon_row_items_1_label','Qualification'),(123768,40362,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(123769,40362,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(123770,40362,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(123771,40362,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(123772,40362,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(123773,40362,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(123774,40362,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(123775,40362,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(123776,40362,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(123777,40362,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(123778,40362,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(123779,40362,'blocks_0_icon_row_items_3_label','IBA Registered'),(123780,40362,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(123781,40362,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(123782,40362,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(123783,40362,'blocks_0_icon_row_items','4'),(123784,40362,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(123785,40362,'blocks_1_acfe_flexible_toggle',''),(123786,40362,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(123787,40362,'blocks_1_acfe_flexible_layout_title','Form'),(123788,40362,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(123789,40362,'blocks_1_row_content_format','promotion'),(123790,40362,'_blocks_1_row_content_format','field_6481ead962881'),(123791,40362,'blocks_1_row_content_title',''),(123792,40362,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(123793,40362,'blocks_1_row_content_heading',''),(123794,40362,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(123795,40362,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(123796,40362,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(123797,40362,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(123798,40362,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(123799,40362,'blocks_1_row_content_actions','1'),(123800,40362,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(123801,40362,'blocks_1_row_content',''),(123802,40362,'_blocks_1_row_content','field_61a0f5f5b3db0'),(123803,40362,'blocks_1_row_form',''),(123804,40362,'_blocks_1_row_form','field_61a4ff2c0b08e'),(123805,40362,'blocks_1_row_form_button_label',''),(123806,40362,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(123807,40362,'blocks_1_row_content_promotion_label','Up to 10% Off'),(123808,40362,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(123809,40362,'blocks_1_row_content_promotion_heading','Biomechanics Coach Course'),(123810,40362,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(123811,40362,'blocks_1_row_content_promotion_value','Up to 10% Off'),(123812,40362,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(123813,40362,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer'),(123814,40362,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(123815,40362,'blocks_1_row_content_promotion',''),(123816,40362,'_blocks_1_row_content_promotion','field_6481eb3962882'),(123817,40362,'blocks_1_row_form_title','David Lloyd Referral'),(123818,40362,'_blocks_1_row_form_title','field_64872db5127af'),(123819,40362,'blocks_2_acfe_flexible_toggle',''),(123820,40362,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(123821,40362,'blocks_2_acfe_flexible_layout_title','Logos'),(123822,40362,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(123823,40362,'blocks_2_options_theme','#ffffff'),(123824,40362,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(123825,40362,'blocks_2_options_format','grid'),(123826,40362,'_blocks_2_options_format','field_61782964ee971'),(123827,40362,'blocks_2_options',''),(123828,40362,'_blocks_2_options','field_61782954ee965'),(123829,40362,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(123830,40362,'_blocks_2_logos','field_61782954ee96d'),(123831,40362,'blocks_2_title',''),(123832,40362,'_blocks_2_title','field_668fbfdc2daa1'),(123833,40362,'blocks_3_acfe_flexible_toggle',''),(123834,40362,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(123835,40362,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(123836,40362,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(123837,40362,'blocks_3_size','large'),(123838,40362,'_blocks_3_size','field_6487038f297c1'),(123839,40362,'blocks_3_row_content_title',''),(123840,40362,'_blocks_3_row_content_title','field_64870132a865d'),(123841,40362,'blocks_3_row_content_heading','Course Overview'),(123842,40362,'_blocks_3_row_content_heading','field_64870142a865e'),(123843,40362,'blocks_3_row_content_text','This Diploma in Biomechanics Coaching will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring learners a system that pulls their skills together.'),(123844,40362,'_blocks_3_row_content_text','field_64870148a865f'),(123845,40362,'blocks_3_row_content',''),(123846,40362,'_blocks_3_row_content','field_6487008ba865c'),(123847,40362,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(123848,40362,'_blocks_3_video_src','field_6193c4a98ec07'),(123849,40362,'blocks_3_video_thumbnail','38998'),(123850,40362,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(123851,40362,'blocks_4_acfe_flexible_toggle',''),(123852,40362,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(123853,40362,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(123854,40362,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(123855,40362,'blocks_4_options_theme','#ffffff'),(123856,40362,'_blocks_4_options_theme','field_6176830e2ad17'),(123857,40362,'blocks_4_options',''),(123858,40362,'_blocks_4_options','field_6176830e2ad16'),(123859,40362,'blocks_4_text_block_heading','Learn more about the course'),(123860,40362,'_blocks_4_text_block_heading','field_617669d413097'),(123861,40362,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching learners will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(123862,40362,'_blocks_4_text_block_content','field_617669ec13098'),(123863,40362,'blocks_5_acfe_flexible_toggle',''),(123864,40362,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(123865,40362,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(123866,40362,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(123867,40362,'blocks_5_options_theme','#ffffff'),(123868,40362,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(123869,40362,'blocks_5_options',''),(123870,40362,'_blocks_5_options','field_6177cfcd8140f'),(123871,40362,'blocks_5_tabs_0_tab_label','What\'s Included'),(123872,40362,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(123873,40362,'blocks_5_tabs_0_tab_content_title',''),(123874,40362,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(123875,40362,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(123876,40362,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(123877,40362,'blocks_5_tabs_0_tab_content_text','This Diploma in Biomechanics Coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(123878,40362,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(123879,40362,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(123880,40362,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(123881,40362,'blocks_5_tabs_0_tab_content_actions','1'),(123882,40362,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(123883,40362,'blocks_5_tabs_0_tab_content',''),(123884,40362,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(123885,40362,'blocks_5_tabs_0_tab_image','39009'),(123886,40362,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(123887,40362,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(123888,40362,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(123889,40362,'blocks_5_tabs_1_tab_content_title',''),(123890,40362,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(123891,40362,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(123892,40362,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(123893,40362,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(123894,40362,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(123895,40362,'blocks_5_tabs_1_tab_content_actions','1'),(123896,40362,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(123897,40362,'blocks_5_tabs_1_tab_content',''),(123898,40362,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(123899,40362,'blocks_5_tabs_1_tab_image','39010'),(123900,40362,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(123901,40362,'blocks_5_tabs','2'),(123902,40362,'_blocks_5_tabs','field_6177cff281419'),(123903,40362,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(123904,40362,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(123905,40362,'blocks_6_acfe_flexible_toggle',''),(123906,40362,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(123907,40362,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(123908,40362,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(123909,40362,'blocks_6_options_theme','#ffffff'),(123910,40362,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(123911,40362,'blocks_6_options_state','0'),(123912,40362,'_blocks_6_options_state','field_6239fcb7508c5'),(123913,40362,'blocks_6_options',''),(123914,40362,'_blocks_6_options','field_6177e2991ac44'),(123915,40362,'blocks_6_accordion_content','faqs'),(123916,40362,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(123917,40362,'blocks_6_actions',''),(123918,40362,'_blocks_6_actions','field_61a746a817f7a'),(123919,40362,'blocks_6_content_title',''),(123920,40362,'_blocks_6_content_title','field_64d237e8bb1e2'),(123921,40362,'blocks_6_content_heading','Frequently asked questions'),(123922,40362,'_blocks_6_content_heading','field_64d237e8bb1e3'),(123923,40362,'blocks_6_content_text',''),(123924,40362,'_blocks_6_content_text','field_64d237e8bb1e4'),(123925,40362,'blocks_6_content_actions',''),(123926,40362,'_blocks_6_content_actions','field_64d237e8bb1e5'),(123927,40362,'blocks_6_content_align','left'),(123928,40362,'_blocks_6_content_align','field_64d2443e6b6aa'),(123929,40362,'blocks_6_content',''),(123930,40362,'_blocks_6_content','field_64d237e8bb1e1'),(123931,40362,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(123932,40362,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(123933,40362,'blocks_7_acfe_flexible_toggle',''),(123934,40362,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(123935,40362,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(123936,40362,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(123937,40362,'blocks_7_options_alignment','center'),(123938,40362,'_blocks_7_options_alignment','field_61769449f5490'),(123939,40362,'blocks_7_options',''),(123940,40362,'_blocks_7_options','field_617693e1428f0'),(123941,40362,'blocks_7_promo_panel_image','39035'),(123942,40362,'_blocks_7_promo_panel_image','field_617693e1428f3'),(123943,40362,'blocks_7_promo_panel_content_heading','Ready to level up your exercise career?'),(123944,40362,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(123945,40362,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(123946,40362,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(123947,40362,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(123948,40362,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(123949,40362,'blocks_7_promo_panel_content_actions','1'),(123950,40362,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(123951,40362,'blocks_7_promo_panel_content',''),(123952,40362,'_blocks_7_promo_panel_content','field_617693e1428f4'),(123953,40362,'hide_hero','0'),(123954,40362,'_hide_hero','field_66a2380fcda39'),(123955,38973,'_oembed_56664761d0c4047d4bb74fb0ed41331a','<iframe title=\"Biomechanics Education   Introduction\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/9V5OgVeLLKA?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(123956,38973,'_oembed_time_56664761d0c4047d4bb74fb0ed41331a','1726228898'),(123957,40363,'hero_style','default'),(123958,40363,'_hero_style','field_62051d9dc5324'),(123959,40363,'hero_image_pos_x','right'),(123960,40363,'_hero_image_pos_x','field_62ec3d05390bb'),(123961,40363,'hero_image_pos_y','top'),(123962,40363,'_hero_image_pos_y','field_62ec3d05390bc'),(123963,40363,'hero_image_pos',''),(123964,40363,'_hero_image_pos','field_62ec3d05390ba'),(123965,40363,'hero_title','Biomechanics Coach Course - David Lloyd'),(123966,40363,'_hero_title','field_617571fe285e8'),(123967,40363,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(123968,40363,'_hero_text','field_6175723c285e9'),(123969,40363,'hero_actions','1'),(123970,40363,'_hero_actions','field_61757270285ea'),(123971,40363,'hero_icon',''),(123972,40363,'_hero_icon','field_61a6182199d03'),(123973,40363,'fft_hide_from_listings','0'),(123974,40363,'_fft_hide_from_listings','field_61f1320446ab2'),(123975,40363,'fft_page_format','default'),(123976,40363,'_fft_page_format','field_61ae213f1f218'),(123977,40363,'fft_hide_nav','1'),(123978,40363,'_fft_hide_nav','field_635bd5e43527c'),(123979,40363,'fft_hide_header_call_to_action','0'),(123980,40363,'_fft_hide_header_call_to_action','field_635bd6723527d'),(123981,40363,'fft_page_sitemap','1'),(123982,40363,'_fft_page_sitemap','field_61af9b34e8181'),(123983,40363,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(123984,40363,'_blocks','field_6176696113096'),(123985,40363,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-38973-6\";s:6:\"target\";s:6:\"_blank\";}'),(123986,40363,'_hero_actions_0_button','field_61757281285eb'),(123987,40363,'_thumbnail_id','38977'),(123988,40363,'__thumbnail_id','field_617570855ddaf'),(123989,40363,'blocks_0_acfe_flexible_toggle',''),(123990,40363,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(123991,40363,'blocks_0_acfe_flexible_layout_title','Icons'),(123992,40363,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(123993,40363,'blocks_0_options_theme','#ffffff'),(123994,40363,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(123995,40363,'blocks_0_options_format','row'),(123996,40363,'_blocks_0_options_format','field_64bfde9a90690'),(123997,40363,'blocks_0_options',''),(123998,40363,'_blocks_0_options','field_64bfdd9b90684'),(123999,40363,'blocks_0_icon_row_items_0_icon','qualification.svg'),(124000,40363,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(124001,40363,'blocks_0_icon_row_items_0_label','Course Type'),(124002,40363,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(124003,40363,'blocks_0_icon_row_items_0_text','Blended Learning'),(124004,40363,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(124005,40363,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(124006,40363,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(124007,40363,'blocks_0_icon_row_items_1_label','Qualification'),(124008,40363,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(124009,40363,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(124010,40363,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(124011,40363,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(124012,40363,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(124013,40363,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(124014,40363,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(124015,40363,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(124016,40363,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(124017,40363,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(124018,40363,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(124019,40363,'blocks_0_icon_row_items_3_label','IBA Registered'),(124020,40363,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(124021,40363,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(124022,40363,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(124023,40363,'blocks_0_icon_row_items','4'),(124024,40363,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(124025,40363,'blocks_1_acfe_flexible_toggle',''),(124026,40363,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(124027,40363,'blocks_1_acfe_flexible_layout_title','Form'),(124028,40363,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(124029,40363,'blocks_1_row_content_format','promotion'),(124030,40363,'_blocks_1_row_content_format','field_6481ead962881'),(124031,40363,'blocks_1_row_content_title',''),(124032,40363,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(124033,40363,'blocks_1_row_content_heading',''),(124034,40363,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(124035,40363,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(124036,40363,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(124037,40363,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(124038,40363,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(124039,40363,'blocks_1_row_content_actions','1'),(124040,40363,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(124041,40363,'blocks_1_row_content',''),(124042,40363,'_blocks_1_row_content','field_61a0f5f5b3db0'),(124043,40363,'blocks_1_row_form',''),(124044,40363,'_blocks_1_row_form','field_61a4ff2c0b08e'),(124045,40363,'blocks_1_row_form_button_label',''),(124046,40363,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(124047,40363,'blocks_1_row_content_promotion_label','Up to 10% Off'),(124048,40363,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(124049,40363,'blocks_1_row_content_promotion_heading','Diploma in Biomechanics Coaching'),(124050,40363,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(124051,40363,'blocks_1_row_content_promotion_value','Up to 10% Off'),(124052,40363,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(124053,40363,'blocks_1_row_content_promotion_terms','Receive 10% off the Diploma in Biomechanics Coaching as a David Lloyd Personal Trainer'),(124054,40363,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(124055,40363,'blocks_1_row_content_promotion',''),(124056,40363,'_blocks_1_row_content_promotion','field_6481eb3962882'),(124057,40363,'blocks_1_row_form_title','David Lloyd Referral'),(124058,40363,'_blocks_1_row_form_title','field_64872db5127af'),(124059,40363,'blocks_2_acfe_flexible_toggle',''),(124060,40363,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(124061,40363,'blocks_2_acfe_flexible_layout_title','Logos'),(124062,40363,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(124063,40363,'blocks_2_options_theme','#ffffff'),(124064,40363,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(124065,40363,'blocks_2_options_format','grid'),(124066,40363,'_blocks_2_options_format','field_61782964ee971'),(124067,40363,'blocks_2_options',''),(124068,40363,'_blocks_2_options','field_61782954ee965'),(124069,40363,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(124070,40363,'_blocks_2_logos','field_61782954ee96d'),(124071,40363,'blocks_2_title',''),(124072,40363,'_blocks_2_title','field_668fbfdc2daa1'),(124073,40363,'blocks_3_acfe_flexible_toggle',''),(124074,40363,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(124075,40363,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(124076,40363,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(124077,40363,'blocks_3_size','large'),(124078,40363,'_blocks_3_size','field_6487038f297c1'),(124079,40363,'blocks_3_row_content_title',''),(124080,40363,'_blocks_3_row_content_title','field_64870132a865d'),(124081,40363,'blocks_3_row_content_heading','Course Overview'),(124082,40363,'_blocks_3_row_content_heading','field_64870142a865e'),(124083,40363,'blocks_3_row_content_text','This Diploma in Biomechanics Coaching will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring learners a system that pulls their skills together.'),(124084,40363,'_blocks_3_row_content_text','field_64870148a865f'),(124085,40363,'blocks_3_row_content',''),(124086,40363,'_blocks_3_row_content','field_6487008ba865c'),(124087,40363,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(124088,40363,'_blocks_3_video_src','field_6193c4a98ec07'),(124089,40363,'blocks_3_video_thumbnail','38998'),(124090,40363,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(124091,40363,'blocks_4_acfe_flexible_toggle',''),(124092,40363,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(124093,40363,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(124094,40363,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(124095,40363,'blocks_4_options_theme','#ffffff'),(124096,40363,'_blocks_4_options_theme','field_6176830e2ad17'),(124097,40363,'blocks_4_options',''),(124098,40363,'_blocks_4_options','field_6176830e2ad16'),(124099,40363,'blocks_4_text_block_heading','Learn more about the course'),(124100,40363,'_blocks_4_text_block_heading','field_617669d413097'),(124101,40363,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching learners will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(124102,40363,'_blocks_4_text_block_content','field_617669ec13098'),(124103,40363,'blocks_5_acfe_flexible_toggle',''),(124104,40363,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(124105,40363,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(124106,40363,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(124107,40363,'blocks_5_options_theme','#ffffff'),(124108,40363,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(124109,40363,'blocks_5_options',''),(124110,40363,'_blocks_5_options','field_6177cfcd8140f'),(124111,40363,'blocks_5_tabs_0_tab_label','What\'s Included'),(124112,40363,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(124113,40363,'blocks_5_tabs_0_tab_content_title',''),(124114,40363,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(124115,40363,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(124116,40363,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(124117,40363,'blocks_5_tabs_0_tab_content_text','This Diploma in Biomechanics Coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(124118,40363,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(124119,40363,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(124120,40363,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(124121,40363,'blocks_5_tabs_0_tab_content_actions','1'),(124122,40363,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(124123,40363,'blocks_5_tabs_0_tab_content',''),(124124,40363,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(124125,40363,'blocks_5_tabs_0_tab_image','39009'),(124126,40363,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(124127,40363,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(124128,40363,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(124129,40363,'blocks_5_tabs_1_tab_content_title',''),(124130,40363,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(124131,40363,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(124132,40363,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(124133,40363,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(124134,40363,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(124135,40363,'blocks_5_tabs_1_tab_content_actions','1'),(124136,40363,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(124137,40363,'blocks_5_tabs_1_tab_content',''),(124138,40363,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(124139,40363,'blocks_5_tabs_1_tab_image','39010'),(124140,40363,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(124141,40363,'blocks_5_tabs','2'),(124142,40363,'_blocks_5_tabs','field_6177cff281419'),(124143,40363,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(124144,40363,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(124145,40363,'blocks_6_acfe_flexible_toggle',''),(124146,40363,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(124147,40363,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(124148,40363,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(124149,40363,'blocks_6_options_theme','#ffffff'),(124150,40363,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(124151,40363,'blocks_6_options_state','0'),(124152,40363,'_blocks_6_options_state','field_6239fcb7508c5'),(124153,40363,'blocks_6_options',''),(124154,40363,'_blocks_6_options','field_6177e2991ac44'),(124155,40363,'blocks_6_accordion_content','faqs'),(124156,40363,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(124157,40363,'blocks_6_actions',''),(124158,40363,'_blocks_6_actions','field_61a746a817f7a'),(124159,40363,'blocks_6_content_title',''),(124160,40363,'_blocks_6_content_title','field_64d237e8bb1e2'),(124161,40363,'blocks_6_content_heading','Frequently asked questions'),(124162,40363,'_blocks_6_content_heading','field_64d237e8bb1e3'),(124163,40363,'blocks_6_content_text',''),(124164,40363,'_blocks_6_content_text','field_64d237e8bb1e4'),(124165,40363,'blocks_6_content_actions',''),(124166,40363,'_blocks_6_content_actions','field_64d237e8bb1e5'),(124167,40363,'blocks_6_content_align','left'),(124168,40363,'_blocks_6_content_align','field_64d2443e6b6aa'),(124169,40363,'blocks_6_content',''),(124170,40363,'_blocks_6_content','field_64d237e8bb1e1'),(124171,40363,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(124172,40363,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(124173,40363,'blocks_7_acfe_flexible_toggle',''),(124174,40363,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(124175,40363,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(124176,40363,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(124177,40363,'blocks_7_options_alignment','center'),(124178,40363,'_blocks_7_options_alignment','field_61769449f5490'),(124179,40363,'blocks_7_options',''),(124180,40363,'_blocks_7_options','field_617693e1428f0'),(124181,40363,'blocks_7_promo_panel_image','39035'),(124182,40363,'_blocks_7_promo_panel_image','field_617693e1428f3'),(124183,40363,'blocks_7_promo_panel_content_heading','Ready to level up your exercise career?'),(124184,40363,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(124185,40363,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(124186,40363,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(124187,40363,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(124188,40363,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(124189,40363,'blocks_7_promo_panel_content_actions','1'),(124190,40363,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(124191,40363,'blocks_7_promo_panel_content',''),(124192,40363,'_blocks_7_promo_panel_content','field_617693e1428f4'),(124193,40363,'hide_hero','0'),(124194,40363,'_hide_hero','field_66a2380fcda39'),(124195,40364,'hero_style','default'),(124196,40364,'_hero_style','field_62051d9dc5324'),(124197,40364,'hero_image_pos_x','right'),(124198,40364,'_hero_image_pos_x','field_62ec3d05390bb'),(124199,40364,'hero_image_pos_y','top'),(124200,40364,'_hero_image_pos_y','field_62ec3d05390bc'),(124201,40364,'hero_image_pos',''),(124202,40364,'_hero_image_pos','field_62ec3d05390ba'),(124203,40364,'hero_title','Biomechanics Coach Course - David Lloyd'),(124204,40364,'_hero_title','field_617571fe285e8'),(124205,40364,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(124206,40364,'_hero_text','field_6175723c285e9'),(124207,40364,'hero_actions','1'),(124208,40364,'_hero_actions','field_61757270285ea'),(124209,40364,'hero_icon',''),(124210,40364,'_hero_icon','field_61a6182199d03'),(124211,40364,'fft_hide_from_listings','0'),(124212,40364,'_fft_hide_from_listings','field_61f1320446ab2'),(124213,40364,'fft_page_format','default'),(124214,40364,'_fft_page_format','field_61ae213f1f218'),(124215,40364,'fft_hide_nav','1'),(124216,40364,'_fft_hide_nav','field_635bd5e43527c'),(124217,40364,'fft_hide_header_call_to_action','0'),(124218,40364,'_fft_hide_header_call_to_action','field_635bd6723527d'),(124219,40364,'fft_page_sitemap','1'),(124220,40364,'_fft_page_sitemap','field_61af9b34e8181'),(124221,40364,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(124222,40364,'_blocks','field_6176696113096'),(124223,40364,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-38973-6\";s:6:\"target\";s:6:\"_blank\";}'),(124224,40364,'_hero_actions_0_button','field_61757281285eb'),(124225,40364,'_thumbnail_id','38977'),(124226,40364,'__thumbnail_id','field_617570855ddaf'),(124227,40364,'blocks_0_acfe_flexible_toggle',''),(124228,40364,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(124229,40364,'blocks_0_acfe_flexible_layout_title','Icons'),(124230,40364,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(124231,40364,'blocks_0_options_theme','#ffffff'),(124232,40364,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(124233,40364,'blocks_0_options_format','row'),(124234,40364,'_blocks_0_options_format','field_64bfde9a90690'),(124235,40364,'blocks_0_options',''),(124236,40364,'_blocks_0_options','field_64bfdd9b90684'),(124237,40364,'blocks_0_icon_row_items_0_icon','qualification.svg'),(124238,40364,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(124239,40364,'blocks_0_icon_row_items_0_label','Course Type'),(124240,40364,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(124241,40364,'blocks_0_icon_row_items_0_text','Blended Learning'),(124242,40364,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(124243,40364,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(124244,40364,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(124245,40364,'blocks_0_icon_row_items_1_label','Qualification'),(124246,40364,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(124247,40364,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(124248,40364,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(124249,40364,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(124250,40364,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(124251,40364,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(124252,40364,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(124253,40364,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(124254,40364,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(124255,40364,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(124256,40364,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(124257,40364,'blocks_0_icon_row_items_3_label','IBA Registered'),(124258,40364,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(124259,40364,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(124260,40364,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(124261,40364,'blocks_0_icon_row_items','4'),(124262,40364,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(124263,40364,'blocks_1_acfe_flexible_toggle',''),(124264,40364,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(124265,40364,'blocks_1_acfe_flexible_layout_title','Form'),(124266,40364,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(124267,40364,'blocks_1_row_content_format','promotion'),(124268,40364,'_blocks_1_row_content_format','field_6481ead962881'),(124269,40364,'blocks_1_row_content_title',''),(124270,40364,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(124271,40364,'blocks_1_row_content_heading',''),(124272,40364,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(124273,40364,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(124274,40364,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(124275,40364,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(124276,40364,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(124277,40364,'blocks_1_row_content_actions','1'),(124278,40364,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(124279,40364,'blocks_1_row_content',''),(124280,40364,'_blocks_1_row_content','field_61a0f5f5b3db0'),(124281,40364,'blocks_1_row_form',''),(124282,40364,'_blocks_1_row_form','field_61a4ff2c0b08e'),(124283,40364,'blocks_1_row_form_button_label',''),(124284,40364,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(124285,40364,'blocks_1_row_content_promotion_label','Up to 10% Off'),(124286,40364,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(124287,40364,'blocks_1_row_content_promotion_heading','Diploma in Biomechanics Coaching'),(124288,40364,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(124289,40364,'blocks_1_row_content_promotion_value','Up to 10% Off'),(124290,40364,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(124291,40364,'blocks_1_row_content_promotion_terms','Receive 10% off the Diploma in Biomechanics Coaching as a David Lloyd Personal Trainer'),(124292,40364,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(124293,40364,'blocks_1_row_content_promotion',''),(124294,40364,'_blocks_1_row_content_promotion','field_6481eb3962882'),(124295,40364,'blocks_1_row_form_title','David Lloyd Referral'),(124296,40364,'_blocks_1_row_form_title','field_64872db5127af'),(124297,40364,'blocks_2_acfe_flexible_toggle',''),(124298,40364,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(124299,40364,'blocks_2_acfe_flexible_layout_title','Logos'),(124300,40364,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(124301,40364,'blocks_2_options_theme','#ffffff'),(124302,40364,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(124303,40364,'blocks_2_options_format','grid'),(124304,40364,'_blocks_2_options_format','field_61782964ee971'),(124305,40364,'blocks_2_options',''),(124306,40364,'_blocks_2_options','field_61782954ee965'),(124307,40364,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(124308,40364,'_blocks_2_logos','field_61782954ee96d'),(124309,40364,'blocks_2_title',''),(124310,40364,'_blocks_2_title','field_668fbfdc2daa1'),(124311,40364,'blocks_3_acfe_flexible_toggle',''),(124312,40364,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(124313,40364,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(124314,40364,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(124315,40364,'blocks_3_size','large'),(124316,40364,'_blocks_3_size','field_6487038f297c1'),(124317,40364,'blocks_3_row_content_title',''),(124318,40364,'_blocks_3_row_content_title','field_64870132a865d'),(124319,40364,'blocks_3_row_content_heading','Course Overview'),(124320,40364,'_blocks_3_row_content_heading','field_64870142a865e'),(124321,40364,'blocks_3_row_content_text','This Diploma in Biomechanics Coaching will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring learners a system that pulls their skills together.'),(124322,40364,'_blocks_3_row_content_text','field_64870148a865f'),(124323,40364,'blocks_3_row_content',''),(124324,40364,'_blocks_3_row_content','field_6487008ba865c'),(124325,40364,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(124326,40364,'_blocks_3_video_src','field_6193c4a98ec07'),(124327,40364,'blocks_3_video_thumbnail','38998'),(124328,40364,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(124329,40364,'blocks_4_acfe_flexible_toggle',''),(124330,40364,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(124331,40364,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(124332,40364,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(124333,40364,'blocks_4_options_theme','#ffffff'),(124334,40364,'_blocks_4_options_theme','field_6176830e2ad17'),(124335,40364,'blocks_4_options',''),(124336,40364,'_blocks_4_options','field_6176830e2ad16'),(124337,40364,'blocks_4_text_block_heading','Learn more about the course'),(124338,40364,'_blocks_4_text_block_heading','field_617669d413097'),(124339,40364,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching learners will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(124340,40364,'_blocks_4_text_block_content','field_617669ec13098'),(124341,40364,'blocks_5_acfe_flexible_toggle',''),(124342,40364,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(124343,40364,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(124344,40364,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(124345,40364,'blocks_5_options_theme','#ffffff'),(124346,40364,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(124347,40364,'blocks_5_options',''),(124348,40364,'_blocks_5_options','field_6177cfcd8140f'),(124349,40364,'blocks_5_tabs_0_tab_label','What\'s Included'),(124350,40364,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(124351,40364,'blocks_5_tabs_0_tab_content_title',''),(124352,40364,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(124353,40364,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(124354,40364,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(124355,40364,'blocks_5_tabs_0_tab_content_text','This Diploma in Biomechanics Coaching will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(124356,40364,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(124357,40364,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(124358,40364,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(124359,40364,'blocks_5_tabs_0_tab_content_actions','1'),(124360,40364,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(124361,40364,'blocks_5_tabs_0_tab_content',''),(124362,40364,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(124363,40364,'blocks_5_tabs_0_tab_image','39009'),(124364,40364,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(124365,40364,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(124366,40364,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(124367,40364,'blocks_5_tabs_1_tab_content_title',''),(124368,40364,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(124369,40364,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(124370,40364,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(124371,40364,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(124372,40364,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(124373,40364,'blocks_5_tabs_1_tab_content_actions','1'),(124374,40364,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(124375,40364,'blocks_5_tabs_1_tab_content',''),(124376,40364,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(124377,40364,'blocks_5_tabs_1_tab_image','39010'),(124378,40364,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(124379,40364,'blocks_5_tabs','2'),(124380,40364,'_blocks_5_tabs','field_6177cff281419'),(124381,40364,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(124382,40364,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(124383,40364,'blocks_6_acfe_flexible_toggle',''),(124384,40364,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(124385,40364,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(124386,40364,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(124387,40364,'blocks_6_options_theme','#ffffff'),(124388,40364,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(124389,40364,'blocks_6_options_state','0'),(124390,40364,'_blocks_6_options_state','field_6239fcb7508c5'),(124391,40364,'blocks_6_options',''),(124392,40364,'_blocks_6_options','field_6177e2991ac44'),(124393,40364,'blocks_6_accordion_content','faqs'),(124394,40364,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(124395,40364,'blocks_6_actions',''),(124396,40364,'_blocks_6_actions','field_61a746a817f7a'),(124397,40364,'blocks_6_content_title',''),(124398,40364,'_blocks_6_content_title','field_64d237e8bb1e2'),(124399,40364,'blocks_6_content_heading','Frequently asked questions'),(124400,40364,'_blocks_6_content_heading','field_64d237e8bb1e3'),(124401,40364,'blocks_6_content_text',''),(124402,40364,'_blocks_6_content_text','field_64d237e8bb1e4'),(124403,40364,'blocks_6_content_actions',''),(124404,40364,'_blocks_6_content_actions','field_64d237e8bb1e5'),(124405,40364,'blocks_6_content_align','left'),(124406,40364,'_blocks_6_content_align','field_64d2443e6b6aa'),(124407,40364,'blocks_6_content',''),(124408,40364,'_blocks_6_content','field_64d237e8bb1e1'),(124409,40364,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(124410,40364,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(124411,40364,'blocks_7_acfe_flexible_toggle',''),(124412,40364,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(124413,40364,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(124414,40364,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(124415,40364,'blocks_7_options_alignment','center'),(124416,40364,'_blocks_7_options_alignment','field_61769449f5490'),(124417,40364,'blocks_7_options',''),(124418,40364,'_blocks_7_options','field_617693e1428f0'),(124419,40364,'blocks_7_promo_panel_image','39035'),(124420,40364,'_blocks_7_promo_panel_image','field_617693e1428f3'),(124421,40364,'blocks_7_promo_panel_content_heading','Ready to level up your exercise career?'),(124422,40364,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(124423,40364,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(124424,40364,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(124425,40364,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(124426,40364,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(124427,40364,'blocks_7_promo_panel_content_actions','1'),(124428,40364,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(124429,40364,'blocks_7_promo_panel_content',''),(124430,40364,'_blocks_7_promo_panel_content','field_617693e1428f4'),(124431,40364,'hide_hero','0'),(124432,40364,'_hide_hero','field_66a2380fcda39'),(124433,39214,'blocks_0_acfe_flexible_toggle',''),(124434,39214,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(124435,39214,'blocks_0_acfe_flexible_layout_title','Template'),(124436,39214,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(124437,39214,'blocks_0_template','39087'),(124438,39214,'_blocks_0_template','field_617bdd570fe01'),(124541,39214,'blocks_5_acfe_flexible_toggle',''),(124542,39214,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(124543,39214,'blocks_5_acfe_flexible_layout_title','Tabs'),(124544,39214,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(124545,39214,'blocks_5_options_theme','#ffffff'),(124546,39214,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(124547,39214,'blocks_5_options',''),(124548,39214,'_blocks_5_options','field_6177cfcd8140f'),(124549,39214,'blocks_5_tabs_0_tab_label','What will I learn?'),(124550,39214,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(124551,39214,'blocks_5_tabs_0_tab_content_title',''),(124552,39214,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(124553,39214,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(124554,39214,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(124555,39214,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(124556,39214,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(124557,39214,'blocks_5_tabs_0_tab_content_actions',''),(124558,39214,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(124559,39214,'blocks_5_tabs_0_tab_content',''),(124560,39214,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(124561,39214,'blocks_5_tabs_0_tab_image','39076'),(124562,39214,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(124563,39214,'blocks_5_tabs_1_tab_label','What do I need?'),(124564,39214,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(124565,39214,'blocks_5_tabs_1_tab_content_title',''),(124566,39214,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(124567,39214,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(124568,39214,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(124569,39214,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(124570,39214,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(124571,39214,'blocks_5_tabs_1_tab_content_actions',''),(124572,39214,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(124573,39214,'blocks_5_tabs_1_tab_content',''),(124574,39214,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(124575,39214,'blocks_5_tabs_1_tab_image','39223'),(124576,39214,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(124577,39214,'blocks_5_tabs_2_tab_label','Where can I learn?'),(124578,39214,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(124579,39214,'blocks_5_tabs_2_tab_content_title',''),(124580,39214,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(124581,39214,'blocks_5_tabs_2_tab_content_heading','Locations'),(124582,39214,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(124583,39214,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(124584,39214,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(124585,39214,'blocks_5_tabs_2_tab_content_actions',''),(124586,39214,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(124587,39214,'blocks_5_tabs_2_tab_content',''),(124588,39214,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(124589,39214,'blocks_5_tabs_2_tab_image','39224'),(124590,39214,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(124591,39214,'blocks_5_tabs','3'),(124592,39214,'_blocks_5_tabs','field_6177cff281419'),(124593,39214,'blocks_6_acfe_flexible_toggle',''),(124594,39214,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(124595,39214,'blocks_6_acfe_flexible_layout_title','Text Block'),(124596,39214,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(124597,39214,'blocks_6_options_theme','#b61234'),(124598,39214,'_blocks_6_options_theme','field_6176830e2ad17'),(124599,39214,'blocks_6_options',''),(124600,39214,'_blocks_6_options','field_6176830e2ad16'),(124601,39214,'blocks_6_text_block_heading','Fees & Funding Options'),(124602,39214,'_blocks_6_text_block_heading','field_617669d413097'),(124603,39214,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(124604,39214,'_blocks_6_text_block_content','field_617669ec13098'),(124605,39214,'blocks_7_acfe_flexible_toggle',''),(124606,39214,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(124607,39214,'blocks_7_acfe_flexible_layout_title','Icons'),(124608,39214,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(124609,39214,'blocks_7_options_theme','#b61234'),(124610,39214,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(124611,39214,'blocks_7_options_format','row'),(124612,39214,'_blocks_7_options_format','field_64bfde9a90690'),(124613,39214,'blocks_7_options',''),(124614,39214,'_blocks_7_options','field_64bfdd9b90684'),(124615,39214,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(124616,39214,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(124617,39214,'blocks_7_icon_row_items_0_label','Pay in Full'),(124618,39214,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(124619,39214,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(124620,39214,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(124621,39214,'blocks_7_icon_row_items_1_icon','finance.svg'),(124622,39214,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(124623,39214,'blocks_7_icon_row_items_1_label','0% finance'),(124624,39214,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(124625,39214,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(124626,39214,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(124627,39214,'blocks_7_icon_row_items_2_icon','deposit.svg'),(124628,39214,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(124629,39214,'blocks_7_icon_row_items_2_label','Deposit & balance'),(124630,39214,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(124631,39214,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(124632,39214,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(124633,39214,'blocks_7_icon_row_items','3'),(124634,39214,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(124641,39214,'blocks_9_acfe_flexible_toggle',''),(124642,39214,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(124643,39214,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(124644,39214,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(124645,39214,'blocks_9_testimonial_slider_content_title',''),(124646,39214,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(124647,39214,'blocks_9_testimonial_slider_content_heading','Testimonials'),(124648,39214,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(124649,39214,'blocks_9_testimonial_slider_content_text',''),(124650,39214,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(124651,39214,'blocks_9_testimonial_slider_content_actions',''),(124652,39214,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(124653,39214,'blocks_9_testimonial_slider_content',''),(124654,39214,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(124655,39214,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(124656,39214,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(124657,39214,'blocks_9_testimonial_slider_ambassador_bool','0'),(124658,39214,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(124659,39214,'blocks_10_acfe_flexible_toggle',''),(124660,39214,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(124661,39214,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(124662,39214,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(124663,39214,'blocks_10_options_theme','#ffffff'),(124664,39214,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(124665,39214,'blocks_10_options_state','0'),(124666,39214,'_blocks_10_options_state','field_6239fcb7508c5'),(124667,39214,'blocks_10_options',''),(124668,39214,'_blocks_10_options','field_6177e2991ac44'),(124669,39214,'blocks_10_content_title',''),(124670,39214,'_blocks_10_content_title','field_64d237e8bb1e2'),(124671,39214,'blocks_10_content_heading','Frequently asked questions '),(124672,39214,'_blocks_10_content_heading','field_64d237e8bb1e3'),(124673,39214,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(124674,39214,'_blocks_10_content_text','field_64d237e8bb1e4'),(124675,39214,'blocks_10_content_actions',''),(124676,39214,'_blocks_10_content_actions','field_64d237e8bb1e5'),(124677,39214,'blocks_10_content_align','left'),(124678,39214,'_blocks_10_content_align','field_64d2443e6b6aa'),(124679,39214,'blocks_10_content',''),(124680,39214,'_blocks_10_content','field_64d237e8bb1e1'),(124681,39214,'blocks_10_accordion_content','faqs'),(124682,39214,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(124683,39214,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(124684,39214,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(124685,39214,'blocks_10_actions',''),(124686,39214,'_blocks_10_actions','field_61a746a817f7a'),(124687,40366,'hide_hero','0'),(124688,40366,'_hide_hero','field_66a2380fcda39'),(124689,40366,'hero_title','Biomechanics and Personal Training'),(124690,40366,'_hero_title','field_617571fe285e8'),(124691,40366,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(124692,40366,'_hero_text','field_6175723c285e9'),(124693,40366,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(124694,40366,'_hero_actions_0_button','field_61757281285eb'),(124695,40366,'hero_actions','1'),(124696,40366,'_hero_actions','field_61757270285ea'),(124697,40366,'hero_style','default'),(124698,40366,'_hero_style','field_62051d9dc5324'),(124699,40366,'_thumbnail_id','39215'),(124700,40366,'__thumbnail_id','field_617570855ddaf'),(124701,40366,'hero_image_pos_x','right'),(124702,40366,'_hero_image_pos_x','field_62ec3d05390bb'),(124703,40366,'hero_image_pos_y','top'),(124704,40366,'_hero_image_pos_y','field_62ec3d05390bc'),(124705,40366,'hero_image_pos',''),(124706,40366,'_hero_image_pos','field_62ec3d05390ba'),(124707,40366,'fft_hide_from_listings','0'),(124708,40366,'_fft_hide_from_listings','field_61f1320446ab2'),(124709,40366,'fft_page_format','default'),(124710,40366,'_fft_page_format','field_61ae213f1f218'),(124711,40366,'fft_hide_nav','0'),(124712,40366,'_fft_hide_nav','field_635bd5e43527c'),(124713,40366,'fft_hide_header_call_to_action','0'),(124714,40366,'_fft_hide_header_call_to_action','field_635bd6723527d'),(124715,40366,'fft_page_sitemap','0'),(124716,40366,'_fft_page_sitemap','field_61af9b34e8181'),(124717,40366,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(124718,40366,'_blocks','field_6176696113096'),(124719,40366,'blocks_0_acfe_flexible_toggle',''),(124720,40366,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(124721,40366,'blocks_0_acfe_flexible_layout_title','Template'),(124722,40366,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(124723,40366,'blocks_0_template','39087'),(124724,40366,'_blocks_0_template','field_617bdd570fe01'),(124725,40366,'blocks_1_acfe_flexible_toggle',''),(124726,40366,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(124727,40366,'blocks_1_acfe_flexible_layout_title','Steps'),(124728,40366,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(124729,40366,'blocks_1_row_content_title',''),(124730,40366,'_blocks_1_row_content_title','field_64888cd1e26e0'),(124731,40366,'blocks_1_row_content_heading','Benefits of training with us'),(124732,40366,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(124733,40366,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(124734,40366,'_blocks_1_row_content_text','field_64888ce2e26e2'),(124735,40366,'blocks_1_row_content_actions',''),(124736,40366,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(124737,40366,'blocks_1_row_content',''),(124738,40366,'_blocks_1_row_content','field_64888cb0e26df'),(124739,40366,'blocks_1_steps_0_icon','progression.svg'),(124740,40366,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(124741,40366,'blocks_1_steps_0_title','Earning potential'),(124742,40366,'_blocks_1_steps_0_title','field_64888d94e26e7'),(124743,40366,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(124744,40366,'_blocks_1_steps_0_text','field_64888d99e26e8'),(124745,40366,'blocks_1_steps_1_icon','support.svg'),(124746,40366,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(124747,40366,'blocks_1_steps_1_title','Lifetime Learning Promise'),(124748,40366,'_blocks_1_steps_1_title','field_64888d94e26e7'),(124749,40366,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(124750,40366,'_blocks_1_steps_1_text','field_64888d99e26e8'),(124751,40366,'blocks_1_steps_2_icon','qualification.svg'),(124752,40366,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(124753,40366,'blocks_1_steps_2_title','Evidence based hands on learning'),(124754,40366,'_blocks_1_steps_2_title','field_64888d94e26e7'),(124755,40366,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(124756,40366,'_blocks_1_steps_2_text','field_64888d99e26e8'),(124757,40366,'blocks_1_steps_3_icon','leaders.svg'),(124758,40366,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(124759,40366,'blocks_1_steps_3_title','Stand out from the crowd'),(124760,40366,'_blocks_1_steps_3_title','field_64888d94e26e7'),(124761,40366,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(124762,40366,'_blocks_1_steps_3_text','field_64888d99e26e8'),(124763,40366,'blocks_1_steps','4'),(124764,40366,'_blocks_1_steps','field_64888d44e26e5'),(124765,40366,'blocks_2_acfe_flexible_toggle',''),(124766,40366,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(124767,40366,'blocks_2_acfe_flexible_layout_title','Video'),(124768,40366,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(124769,40366,'blocks_2_size','large'),(124770,40366,'_blocks_2_size','field_6487038f297c1'),(124771,40366,'blocks_2_row_content_title',''),(124772,40366,'_blocks_2_row_content_title','field_64870132a865d'),(124773,40366,'blocks_2_row_content_heading',''),(124774,40366,'_blocks_2_row_content_heading','field_64870142a865e'),(124775,40366,'blocks_2_row_content_text',''),(124776,40366,'_blocks_2_row_content_text','field_64870148a865f'),(124777,40366,'blocks_2_row_content',''),(124778,40366,'_blocks_2_row_content','field_6487008ba865c'),(124779,40366,'blocks_2_video_src','https://youtu.be/kLVekt6aqrI'),(124780,40366,'_blocks_2_video_src','field_6193c4a98ec07'),(124781,40366,'blocks_2_video_thumbnail','39186'),(124782,40366,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(124783,40366,'blocks_3_acfe_flexible_toggle',''),(124784,40366,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(124785,40366,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(124786,40366,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(124787,40366,'blocks_3_options_theme','#ffffff'),(124788,40366,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(124789,40366,'blocks_3_options_reverse','0'),(124790,40366,'_blocks_3_options_reverse','field_61768049bb8ac'),(124791,40366,'blocks_3_options',''),(124792,40366,'_blocks_3_options','field_617682517c334'),(124793,40366,'blocks_3_split_5050_image','39220'),(124794,40366,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(124795,40366,'blocks_3_split_5050_video',''),(124796,40366,'_blocks_3_split_5050_video','field_6239f3160848a'),(124797,40366,'blocks_3_split_5050_content_title',''),(124798,40366,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(124799,40366,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a PT'),(124800,40366,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(124801,40366,'blocks_3_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(124802,40366,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(124803,40366,'blocks_3_split_5050_content_actions',''),(124804,40366,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(124805,40366,'blocks_3_split_5050_content',''),(124806,40366,'_blocks_3_split_5050_content','field_61767afceb8ba'),(124807,40366,'blocks_4_acfe_flexible_toggle',''),(124808,40366,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(124809,40366,'blocks_4_acfe_flexible_layout_title','Form'),(124810,40366,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(124811,40366,'blocks_4_row_content_format','standard'),(124812,40366,'_blocks_4_row_content_format','field_6481ead962881'),(124813,40366,'blocks_4_row_content_title',''),(124814,40366,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(124815,40366,'blocks_4_row_content_heading','Enquire Today'),(124816,40366,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(124817,40366,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(124818,40366,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(124819,40366,'blocks_4_row_content_actions',''),(124820,40366,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(124821,40366,'blocks_4_row_content',''),(124822,40366,'_blocks_4_row_content','field_61a0f5f5b3db0'),(124823,40366,'blocks_4_row_form',''),(124824,40366,'_blocks_4_row_form','field_61a4ff2c0b08e'),(124825,40366,'blocks_4_row_form_button_label',''),(124826,40366,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(124827,40366,'blocks_5_acfe_flexible_toggle',''),(124828,40366,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(124829,40366,'blocks_5_acfe_flexible_layout_title','Tabs'),(124830,40366,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(124831,40366,'blocks_5_options_theme','#ffffff'),(124832,40366,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(124833,40366,'blocks_5_options',''),(124834,40366,'_blocks_5_options','field_6177cfcd8140f'),(124835,40366,'blocks_5_tabs_0_tab_label','What will I learn ?'),(124836,40366,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(124837,40366,'blocks_5_tabs_0_tab_content_title',''),(124838,40366,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(124839,40366,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(124840,40366,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(124841,40366,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(124842,40366,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(124843,40366,'blocks_5_tabs_0_tab_content_actions',''),(124844,40366,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(124845,40366,'blocks_5_tabs_0_tab_content',''),(124846,40366,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(124847,40366,'blocks_5_tabs_0_tab_image','39076'),(124848,40366,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(124849,40366,'blocks_5_tabs_1_tab_label','What do I need ?'),(124850,40366,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(124851,40366,'blocks_5_tabs_1_tab_content_title',''),(124852,40366,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(124853,40366,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(124854,40366,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(124855,40366,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(124856,40366,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(124857,40366,'blocks_5_tabs_1_tab_content_actions',''),(124858,40366,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(124859,40366,'blocks_5_tabs_1_tab_content',''),(124860,40366,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(124861,40366,'blocks_5_tabs_1_tab_image','39223'),(124862,40366,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(124863,40366,'blocks_5_tabs_2_tab_label','Where can I learn ?'),(124864,40366,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(124865,40366,'blocks_5_tabs_2_tab_content_title',''),(124866,40366,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(124867,40366,'blocks_5_tabs_2_tab_content_heading','Locations'),(124868,40366,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(124869,40366,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(124870,40366,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(124871,40366,'blocks_5_tabs_2_tab_content_actions',''),(124872,40366,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(124873,40366,'blocks_5_tabs_2_tab_content',''),(124874,40366,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(124875,40366,'blocks_5_tabs_2_tab_image','39224'),(124876,40366,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(124877,40366,'blocks_5_tabs','3'),(124878,40366,'_blocks_5_tabs','field_6177cff281419'),(124879,40366,'blocks_6_acfe_flexible_toggle',''),(124880,40366,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(124881,40366,'blocks_6_acfe_flexible_layout_title','Text Block'),(124882,40366,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(124883,40366,'blocks_6_options_theme','#b61234'),(124884,40366,'_blocks_6_options_theme','field_6176830e2ad17'),(124885,40366,'blocks_6_options',''),(124886,40366,'_blocks_6_options','field_6176830e2ad16'),(124887,40366,'blocks_6_text_block_heading','Fees & Funding Options'),(124888,40366,'_blocks_6_text_block_heading','field_617669d413097'),(124889,40366,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(124890,40366,'_blocks_6_text_block_content','field_617669ec13098'),(124891,40366,'blocks_7_acfe_flexible_toggle',''),(124892,40366,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(124893,40366,'blocks_7_acfe_flexible_layout_title','Icons'),(124894,40366,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(124895,40366,'blocks_7_options_theme','#b61234'),(124896,40366,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(124897,40366,'blocks_7_options_format','row'),(124898,40366,'_blocks_7_options_format','field_64bfde9a90690'),(124899,40366,'blocks_7_options',''),(124900,40366,'_blocks_7_options','field_64bfdd9b90684'),(124901,40366,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(124902,40366,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(124903,40366,'blocks_7_icon_row_items_0_label','Pay in Full'),(124904,40366,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(124905,40366,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(124906,40366,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(124907,40366,'blocks_7_icon_row_items_1_icon','finance.svg'),(124908,40366,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(124909,40366,'blocks_7_icon_row_items_1_label','0% finance'),(124910,40366,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(124911,40366,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(124912,40366,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(124913,40366,'blocks_7_icon_row_items_2_icon','deposit.svg'),(124914,40366,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(124915,40366,'blocks_7_icon_row_items_2_label','Deposit & balance'),(124916,40366,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(124917,40366,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(124918,40366,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(124919,40366,'blocks_7_icon_row_items','3'),(124920,40366,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(124921,40366,'blocks_8_acfe_flexible_toggle',''),(124922,40366,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(124923,40366,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(124924,40366,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(124925,40366,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(124926,40366,'_blocks_8_content','field_6193c9b5eac84'),(124927,40366,'blocks_9_acfe_flexible_toggle',''),(124928,40366,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(124929,40366,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(124930,40366,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(124931,40366,'blocks_9_testimonial_slider_content_title',''),(124932,40366,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(124933,40366,'blocks_9_testimonial_slider_content_heading','Testimonials'),(124934,40366,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(124935,40366,'blocks_9_testimonial_slider_content_text',''),(124936,40366,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(124937,40366,'blocks_9_testimonial_slider_content_actions',''),(124938,40366,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(124939,40366,'blocks_9_testimonial_slider_content',''),(124940,40366,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(124941,40366,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(124942,40366,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(124943,40366,'blocks_9_testimonial_slider_ambassador_bool','0'),(124944,40366,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(124945,40366,'blocks_10_acfe_flexible_toggle',''),(124946,40366,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(124947,40366,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(124948,40366,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(124949,40366,'blocks_10_options_theme','#ffffff'),(124950,40366,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(124951,40366,'blocks_10_options_state','0'),(124952,40366,'_blocks_10_options_state','field_6239fcb7508c5'),(124953,40366,'blocks_10_options',''),(124954,40366,'_blocks_10_options','field_6177e2991ac44'),(124955,40366,'blocks_10_content_title',''),(124956,40366,'_blocks_10_content_title','field_64d237e8bb1e2'),(124957,40366,'blocks_10_content_heading','Frequently asked questions '),(124958,40366,'_blocks_10_content_heading','field_64d237e8bb1e3'),(124959,40366,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(124960,40366,'_blocks_10_content_text','field_64d237e8bb1e4'),(124961,40366,'blocks_10_content_actions',''),(124962,40366,'_blocks_10_content_actions','field_64d237e8bb1e5'),(124963,40366,'blocks_10_content_align','left'),(124964,40366,'_blocks_10_content_align','field_64d2443e6b6aa'),(124965,40366,'blocks_10_content',''),(124966,40366,'_blocks_10_content','field_64d237e8bb1e1'),(124967,40366,'blocks_10_accordion_content','faqs'),(124968,40366,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(124969,40366,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(124970,40366,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(124971,40366,'blocks_10_actions',''),(124972,40366,'_blocks_10_actions','field_61a746a817f7a'),(124973,40367,'hide_hero','0'),(124974,40367,'_hide_hero','field_66a2380fcda39'),(124975,40367,'hero_title','Biomechanics and Personal Training'),(124976,40367,'_hero_title','field_617571fe285e8'),(124977,40367,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(124978,40367,'_hero_text','field_6175723c285e9'),(124979,40367,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(124980,40367,'_hero_actions_0_button','field_61757281285eb'),(124981,40367,'hero_actions','1'),(124982,40367,'_hero_actions','field_61757270285ea'),(124983,40367,'hero_style','default'),(124984,40367,'_hero_style','field_62051d9dc5324'),(124985,40367,'_thumbnail_id','39215'),(124986,40367,'__thumbnail_id','field_617570855ddaf'),(124987,40367,'hero_image_pos_x','right'),(124988,40367,'_hero_image_pos_x','field_62ec3d05390bb'),(124989,40367,'hero_image_pos_y','top'),(124990,40367,'_hero_image_pos_y','field_62ec3d05390bc'),(124991,40367,'hero_image_pos',''),(124992,40367,'_hero_image_pos','field_62ec3d05390ba'),(124993,40367,'fft_hide_from_listings','0'),(124994,40367,'_fft_hide_from_listings','field_61f1320446ab2'),(124995,40367,'fft_page_format','default'),(124996,40367,'_fft_page_format','field_61ae213f1f218'),(124997,40367,'fft_hide_nav','0'),(124998,40367,'_fft_hide_nav','field_635bd5e43527c'),(124999,40367,'fft_hide_header_call_to_action','0'),(125000,40367,'_fft_hide_header_call_to_action','field_635bd6723527d'),(125001,40367,'fft_page_sitemap','0'),(125002,40367,'_fft_page_sitemap','field_61af9b34e8181'),(125003,40367,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(125004,40367,'_blocks','field_6176696113096'),(125005,40367,'blocks_0_acfe_flexible_toggle',''),(125006,40367,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(125007,40367,'blocks_0_acfe_flexible_layout_title','Template'),(125008,40367,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(125009,40367,'blocks_0_template','39087'),(125010,40367,'_blocks_0_template','field_617bdd570fe01'),(125011,40367,'blocks_1_acfe_flexible_toggle',''),(125012,40367,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(125013,40367,'blocks_1_acfe_flexible_layout_title','Steps'),(125014,40367,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(125015,40367,'blocks_1_row_content_title',''),(125016,40367,'_blocks_1_row_content_title','field_64888cd1e26e0'),(125017,40367,'blocks_1_row_content_heading','Benefits of training with us'),(125018,40367,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(125019,40367,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(125020,40367,'_blocks_1_row_content_text','field_64888ce2e26e2'),(125021,40367,'blocks_1_row_content_actions',''),(125022,40367,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(125023,40367,'blocks_1_row_content',''),(125024,40367,'_blocks_1_row_content','field_64888cb0e26df'),(125025,40367,'blocks_1_steps_0_icon','progression.svg'),(125026,40367,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(125027,40367,'blocks_1_steps_0_title','Earning potential'),(125028,40367,'_blocks_1_steps_0_title','field_64888d94e26e7'),(125029,40367,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(125030,40367,'_blocks_1_steps_0_text','field_64888d99e26e8'),(125031,40367,'blocks_1_steps_1_icon','support.svg'),(125032,40367,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(125033,40367,'blocks_1_steps_1_title','Lifetime Learning Promise'),(125034,40367,'_blocks_1_steps_1_title','field_64888d94e26e7'),(125035,40367,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(125036,40367,'_blocks_1_steps_1_text','field_64888d99e26e8'),(125037,40367,'blocks_1_steps_2_icon','qualification.svg'),(125038,40367,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(125039,40367,'blocks_1_steps_2_title','Evidence based hands on learning'),(125040,40367,'_blocks_1_steps_2_title','field_64888d94e26e7'),(125041,40367,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(125042,40367,'_blocks_1_steps_2_text','field_64888d99e26e8'),(125043,40367,'blocks_1_steps_3_icon','leaders.svg'),(125044,40367,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(125045,40367,'blocks_1_steps_3_title','Stand out from the crowd'),(125046,40367,'_blocks_1_steps_3_title','field_64888d94e26e7'),(125047,40367,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(125048,40367,'_blocks_1_steps_3_text','field_64888d99e26e8'),(125049,40367,'blocks_1_steps','4'),(125050,40367,'_blocks_1_steps','field_64888d44e26e5'),(125051,40367,'blocks_2_acfe_flexible_toggle',''),(125052,40367,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(125053,40367,'blocks_2_acfe_flexible_layout_title','Video'),(125054,40367,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(125055,40367,'blocks_2_size','large'),(125056,40367,'_blocks_2_size','field_6487038f297c1'),(125057,40367,'blocks_2_row_content_title','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer ?'),(125058,40367,'_blocks_2_row_content_title','field_64870132a865d'),(125059,40367,'blocks_2_row_content_heading',''),(125060,40367,'_blocks_2_row_content_heading','field_64870142a865e'),(125061,40367,'blocks_2_row_content_text',''),(125062,40367,'_blocks_2_row_content_text','field_64870148a865f'),(125063,40367,'blocks_2_row_content',''),(125064,40367,'_blocks_2_row_content','field_6487008ba865c'),(125065,40367,'blocks_2_video_src','https://youtu.be/kLVekt6aqrI'),(125066,40367,'_blocks_2_video_src','field_6193c4a98ec07'),(125067,40367,'blocks_2_video_thumbnail','39186'),(125068,40367,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(125069,40367,'blocks_3_acfe_flexible_toggle',''),(125070,40367,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(125071,40367,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(125072,40367,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(125073,40367,'blocks_3_options_theme','#ffffff'),(125074,40367,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(125075,40367,'blocks_3_options_reverse','0'),(125076,40367,'_blocks_3_options_reverse','field_61768049bb8ac'),(125077,40367,'blocks_3_options',''),(125078,40367,'_blocks_3_options','field_617682517c334'),(125079,40367,'blocks_3_split_5050_image','39220'),(125080,40367,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(125081,40367,'blocks_3_split_5050_video',''),(125082,40367,'_blocks_3_split_5050_video','field_6239f3160848a'),(125083,40367,'blocks_3_split_5050_content_title',''),(125084,40367,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(125085,40367,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a PT'),(125086,40367,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(125087,40367,'blocks_3_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(125088,40367,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(125089,40367,'blocks_3_split_5050_content_actions',''),(125090,40367,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(125091,40367,'blocks_3_split_5050_content',''),(125092,40367,'_blocks_3_split_5050_content','field_61767afceb8ba'),(125093,40367,'blocks_4_acfe_flexible_toggle',''),(125094,40367,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(125095,40367,'blocks_4_acfe_flexible_layout_title','Form'),(125096,40367,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(125097,40367,'blocks_4_row_content_format','standard'),(125098,40367,'_blocks_4_row_content_format','field_6481ead962881'),(125099,40367,'blocks_4_row_content_title',''),(125100,40367,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(125101,40367,'blocks_4_row_content_heading','Enquire Today'),(125102,40367,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(125103,40367,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(125104,40367,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(125105,40367,'blocks_4_row_content_actions',''),(125106,40367,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(125107,40367,'blocks_4_row_content',''),(125108,40367,'_blocks_4_row_content','field_61a0f5f5b3db0'),(125109,40367,'blocks_4_row_form',''),(125110,40367,'_blocks_4_row_form','field_61a4ff2c0b08e'),(125111,40367,'blocks_4_row_form_button_label',''),(125112,40367,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(125113,40367,'blocks_5_acfe_flexible_toggle',''),(125114,40367,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(125115,40367,'blocks_5_acfe_flexible_layout_title','Tabs'),(125116,40367,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(125117,40367,'blocks_5_options_theme','#ffffff'),(125118,40367,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(125119,40367,'blocks_5_options',''),(125120,40367,'_blocks_5_options','field_6177cfcd8140f'),(125121,40367,'blocks_5_tabs_0_tab_label','What will I learn ?'),(125122,40367,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(125123,40367,'blocks_5_tabs_0_tab_content_title',''),(125124,40367,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(125125,40367,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(125126,40367,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(125127,40367,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(125128,40367,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(125129,40367,'blocks_5_tabs_0_tab_content_actions',''),(125130,40367,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(125131,40367,'blocks_5_tabs_0_tab_content',''),(125132,40367,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(125133,40367,'blocks_5_tabs_0_tab_image','39076'),(125134,40367,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(125135,40367,'blocks_5_tabs_1_tab_label','What do I need ?'),(125136,40367,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(125137,40367,'blocks_5_tabs_1_tab_content_title',''),(125138,40367,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(125139,40367,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(125140,40367,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(125141,40367,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(125142,40367,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(125143,40367,'blocks_5_tabs_1_tab_content_actions',''),(125144,40367,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(125145,40367,'blocks_5_tabs_1_tab_content',''),(125146,40367,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(125147,40367,'blocks_5_tabs_1_tab_image','39223'),(125148,40367,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(125149,40367,'blocks_5_tabs_2_tab_label','Where can I learn ?'),(125150,40367,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(125151,40367,'blocks_5_tabs_2_tab_content_title',''),(125152,40367,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(125153,40367,'blocks_5_tabs_2_tab_content_heading','Locations'),(125154,40367,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(125155,40367,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(125156,40367,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(125157,40367,'blocks_5_tabs_2_tab_content_actions',''),(125158,40367,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(125159,40367,'blocks_5_tabs_2_tab_content',''),(125160,40367,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(125161,40367,'blocks_5_tabs_2_tab_image','39224'),(125162,40367,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(125163,40367,'blocks_5_tabs','3'),(125164,40367,'_blocks_5_tabs','field_6177cff281419'),(125165,40367,'blocks_6_acfe_flexible_toggle',''),(125166,40367,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(125167,40367,'blocks_6_acfe_flexible_layout_title','Text Block'),(125168,40367,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(125169,40367,'blocks_6_options_theme','#b61234'),(125170,40367,'_blocks_6_options_theme','field_6176830e2ad17'),(125171,40367,'blocks_6_options',''),(125172,40367,'_blocks_6_options','field_6176830e2ad16'),(125173,40367,'blocks_6_text_block_heading','Fees & Funding Options'),(125174,40367,'_blocks_6_text_block_heading','field_617669d413097'),(125175,40367,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(125176,40367,'_blocks_6_text_block_content','field_617669ec13098'),(125177,40367,'blocks_7_acfe_flexible_toggle',''),(125178,40367,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(125179,40367,'blocks_7_acfe_flexible_layout_title','Icons'),(125180,40367,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(125181,40367,'blocks_7_options_theme','#b61234'),(125182,40367,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(125183,40367,'blocks_7_options_format','row'),(125184,40367,'_blocks_7_options_format','field_64bfde9a90690'),(125185,40367,'blocks_7_options',''),(125186,40367,'_blocks_7_options','field_64bfdd9b90684'),(125187,40367,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(125188,40367,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(125189,40367,'blocks_7_icon_row_items_0_label','Pay in Full'),(125190,40367,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(125191,40367,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(125192,40367,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(125193,40367,'blocks_7_icon_row_items_1_icon','finance.svg'),(125194,40367,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(125195,40367,'blocks_7_icon_row_items_1_label','0% finance'),(125196,40367,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(125197,40367,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(125198,40367,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(125199,40367,'blocks_7_icon_row_items_2_icon','deposit.svg'),(125200,40367,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(125201,40367,'blocks_7_icon_row_items_2_label','Deposit & balance'),(125202,40367,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(125203,40367,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(125204,40367,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(125205,40367,'blocks_7_icon_row_items','3'),(125206,40367,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(125207,40367,'blocks_8_acfe_flexible_toggle',''),(125208,40367,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(125209,40367,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(125210,40367,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(125211,40367,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(125212,40367,'_blocks_8_content','field_6193c9b5eac84'),(125213,40367,'blocks_9_acfe_flexible_toggle',''),(125214,40367,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(125215,40367,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(125216,40367,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(125217,40367,'blocks_9_testimonial_slider_content_title',''),(125218,40367,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(125219,40367,'blocks_9_testimonial_slider_content_heading','Testimonials'),(125220,40367,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(125221,40367,'blocks_9_testimonial_slider_content_text',''),(125222,40367,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(125223,40367,'blocks_9_testimonial_slider_content_actions',''),(125224,40367,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(125225,40367,'blocks_9_testimonial_slider_content',''),(125226,40367,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(125227,40367,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(125228,40367,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(125229,40367,'blocks_9_testimonial_slider_ambassador_bool','0'),(125230,40367,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(125231,40367,'blocks_10_acfe_flexible_toggle',''),(125232,40367,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(125233,40367,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(125234,40367,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(125235,40367,'blocks_10_options_theme','#ffffff'),(125236,40367,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(125237,40367,'blocks_10_options_state','0'),(125238,40367,'_blocks_10_options_state','field_6239fcb7508c5'),(125239,40367,'blocks_10_options',''),(125240,40367,'_blocks_10_options','field_6177e2991ac44'),(125241,40367,'blocks_10_content_title',''),(125242,40367,'_blocks_10_content_title','field_64d237e8bb1e2'),(125243,40367,'blocks_10_content_heading','Frequently asked questions '),(125244,40367,'_blocks_10_content_heading','field_64d237e8bb1e3'),(125245,40367,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(125246,40367,'_blocks_10_content_text','field_64d237e8bb1e4'),(125247,40367,'blocks_10_content_actions',''),(125248,40367,'_blocks_10_content_actions','field_64d237e8bb1e5'),(125249,40367,'blocks_10_content_align','left'),(125250,40367,'_blocks_10_content_align','field_64d2443e6b6aa'),(125251,40367,'blocks_10_content',''),(125252,40367,'_blocks_10_content','field_64d237e8bb1e1'),(125253,40367,'blocks_10_accordion_content','faqs'),(125254,40367,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(125255,40367,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(125256,40367,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(125257,40367,'blocks_10_actions',''),(125258,40367,'_blocks_10_actions','field_61a746a817f7a'),(125259,40368,'hide_hero','0'),(125260,40368,'_hide_hero','field_66a2380fcda39'),(125261,40368,'hero_title','Biomechanics and Personal Training'),(125262,40368,'_hero_title','field_617571fe285e8'),(125263,40368,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(125264,40368,'_hero_text','field_6175723c285e9'),(125265,40368,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(125266,40368,'_hero_actions_0_button','field_61757281285eb'),(125267,40368,'hero_actions','1'),(125268,40368,'_hero_actions','field_61757270285ea'),(125269,40368,'hero_style','default'),(125270,40368,'_hero_style','field_62051d9dc5324'),(125271,40368,'_thumbnail_id','39215'),(125272,40368,'__thumbnail_id','field_617570855ddaf'),(125273,40368,'hero_image_pos_x','right'),(125274,40368,'_hero_image_pos_x','field_62ec3d05390bb'),(125275,40368,'hero_image_pos_y','top'),(125276,40368,'_hero_image_pos_y','field_62ec3d05390bc'),(125277,40368,'hero_image_pos',''),(125278,40368,'_hero_image_pos','field_62ec3d05390ba'),(125279,40368,'fft_hide_from_listings','0'),(125280,40368,'_fft_hide_from_listings','field_61f1320446ab2'),(125281,40368,'fft_page_format','default'),(125282,40368,'_fft_page_format','field_61ae213f1f218'),(125283,40368,'fft_hide_nav','0'),(125284,40368,'_fft_hide_nav','field_635bd5e43527c'),(125285,40368,'fft_hide_header_call_to_action','0'),(125286,40368,'_fft_hide_header_call_to_action','field_635bd6723527d'),(125287,40368,'fft_page_sitemap','0'),(125288,40368,'_fft_page_sitemap','field_61af9b34e8181'),(125289,40368,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(125290,40368,'_blocks','field_6176696113096'),(125291,40368,'blocks_0_acfe_flexible_toggle',''),(125292,40368,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(125293,40368,'blocks_0_acfe_flexible_layout_title','Template'),(125294,40368,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(125295,40368,'blocks_0_template','39087'),(125296,40368,'_blocks_0_template','field_617bdd570fe01'),(125297,40368,'blocks_1_acfe_flexible_toggle',''),(125298,40368,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(125299,40368,'blocks_1_acfe_flexible_layout_title','Steps'),(125300,40368,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(125301,40368,'blocks_1_row_content_title',''),(125302,40368,'_blocks_1_row_content_title','field_64888cd1e26e0'),(125303,40368,'blocks_1_row_content_heading','Benefits of training with us'),(125304,40368,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(125305,40368,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(125306,40368,'_blocks_1_row_content_text','field_64888ce2e26e2'),(125307,40368,'blocks_1_row_content_actions',''),(125308,40368,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(125309,40368,'blocks_1_row_content',''),(125310,40368,'_blocks_1_row_content','field_64888cb0e26df'),(125311,40368,'blocks_1_steps_0_icon','progression.svg'),(125312,40368,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(125313,40368,'blocks_1_steps_0_title','Earning potential'),(125314,40368,'_blocks_1_steps_0_title','field_64888d94e26e7'),(125315,40368,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(125316,40368,'_blocks_1_steps_0_text','field_64888d99e26e8'),(125317,40368,'blocks_1_steps_1_icon','support.svg'),(125318,40368,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(125319,40368,'blocks_1_steps_1_title','Lifetime Learning Promise'),(125320,40368,'_blocks_1_steps_1_title','field_64888d94e26e7'),(125321,40368,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(125322,40368,'_blocks_1_steps_1_text','field_64888d99e26e8'),(125323,40368,'blocks_1_steps_2_icon','qualification.svg'),(125324,40368,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(125325,40368,'blocks_1_steps_2_title','Evidence based hands on learning'),(125326,40368,'_blocks_1_steps_2_title','field_64888d94e26e7'),(125327,40368,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(125328,40368,'_blocks_1_steps_2_text','field_64888d99e26e8'),(125329,40368,'blocks_1_steps_3_icon','leaders.svg'),(125330,40368,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(125331,40368,'blocks_1_steps_3_title','Stand out from the crowd'),(125332,40368,'_blocks_1_steps_3_title','field_64888d94e26e7'),(125333,40368,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(125334,40368,'_blocks_1_steps_3_text','field_64888d99e26e8'),(125335,40368,'blocks_1_steps','4'),(125336,40368,'_blocks_1_steps','field_64888d44e26e5'),(125337,40368,'blocks_2_acfe_flexible_toggle',''),(125338,40368,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(125339,40368,'blocks_2_acfe_flexible_layout_title','Video'),(125340,40368,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(125341,40368,'blocks_2_size','large'),(125342,40368,'_blocks_2_size','field_6487038f297c1'),(125343,40368,'blocks_2_row_content_title',''),(125344,40368,'_blocks_2_row_content_title','field_64870132a865d'),(125345,40368,'blocks_2_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer ?'),(125346,40368,'_blocks_2_row_content_heading','field_64870142a865e'),(125347,40368,'blocks_2_row_content_text',''),(125348,40368,'_blocks_2_row_content_text','field_64870148a865f'),(125349,40368,'blocks_2_row_content',''),(125350,40368,'_blocks_2_row_content','field_6487008ba865c'),(125351,40368,'blocks_2_video_src','https://youtu.be/kLVekt6aqrI'),(125352,40368,'_blocks_2_video_src','field_6193c4a98ec07'),(125353,40368,'blocks_2_video_thumbnail','39186'),(125354,40368,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(125355,40368,'blocks_3_acfe_flexible_toggle',''),(125356,40368,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(125357,40368,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(125358,40368,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(125359,40368,'blocks_3_options_theme','#ffffff'),(125360,40368,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(125361,40368,'blocks_3_options_reverse','0'),(125362,40368,'_blocks_3_options_reverse','field_61768049bb8ac'),(125363,40368,'blocks_3_options',''),(125364,40368,'_blocks_3_options','field_617682517c334'),(125365,40368,'blocks_3_split_5050_image','39220'),(125366,40368,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(125367,40368,'blocks_3_split_5050_video',''),(125368,40368,'_blocks_3_split_5050_video','field_6239f3160848a'),(125369,40368,'blocks_3_split_5050_content_title',''),(125370,40368,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(125371,40368,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a PT'),(125372,40368,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(125373,40368,'blocks_3_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(125374,40368,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(125375,40368,'blocks_3_split_5050_content_actions',''),(125376,40368,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(125377,40368,'blocks_3_split_5050_content',''),(125378,40368,'_blocks_3_split_5050_content','field_61767afceb8ba'),(125379,40368,'blocks_4_acfe_flexible_toggle',''),(125380,40368,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(125381,40368,'blocks_4_acfe_flexible_layout_title','Form'),(125382,40368,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(125383,40368,'blocks_4_row_content_format','standard'),(125384,40368,'_blocks_4_row_content_format','field_6481ead962881'),(125385,40368,'blocks_4_row_content_title',''),(125386,40368,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(125387,40368,'blocks_4_row_content_heading','Enquire Today'),(125388,40368,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(125389,40368,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(125390,40368,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(125391,40368,'blocks_4_row_content_actions',''),(125392,40368,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(125393,40368,'blocks_4_row_content',''),(125394,40368,'_blocks_4_row_content','field_61a0f5f5b3db0'),(125395,40368,'blocks_4_row_form',''),(125396,40368,'_blocks_4_row_form','field_61a4ff2c0b08e'),(125397,40368,'blocks_4_row_form_button_label',''),(125398,40368,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(125399,40368,'blocks_5_acfe_flexible_toggle',''),(125400,40368,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(125401,40368,'blocks_5_acfe_flexible_layout_title','Tabs'),(125402,40368,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(125403,40368,'blocks_5_options_theme','#ffffff'),(125404,40368,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(125405,40368,'blocks_5_options',''),(125406,40368,'_blocks_5_options','field_6177cfcd8140f'),(125407,40368,'blocks_5_tabs_0_tab_label','What will I learn ?'),(125408,40368,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(125409,40368,'blocks_5_tabs_0_tab_content_title',''),(125410,40368,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(125411,40368,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(125412,40368,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(125413,40368,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(125414,40368,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(125415,40368,'blocks_5_tabs_0_tab_content_actions',''),(125416,40368,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(125417,40368,'blocks_5_tabs_0_tab_content',''),(125418,40368,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(125419,40368,'blocks_5_tabs_0_tab_image','39076'),(125420,40368,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(125421,40368,'blocks_5_tabs_1_tab_label','What do I need ?'),(125422,40368,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(125423,40368,'blocks_5_tabs_1_tab_content_title',''),(125424,40368,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(125425,40368,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(125426,40368,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(125427,40368,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(125428,40368,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(125429,40368,'blocks_5_tabs_1_tab_content_actions',''),(125430,40368,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(125431,40368,'blocks_5_tabs_1_tab_content',''),(125432,40368,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(125433,40368,'blocks_5_tabs_1_tab_image','39223'),(125434,40368,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(125435,40368,'blocks_5_tabs_2_tab_label','Where can I learn ?'),(125436,40368,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(125437,40368,'blocks_5_tabs_2_tab_content_title',''),(125438,40368,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(125439,40368,'blocks_5_tabs_2_tab_content_heading','Locations'),(125440,40368,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(125441,40368,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(125442,40368,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(125443,40368,'blocks_5_tabs_2_tab_content_actions',''),(125444,40368,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(125445,40368,'blocks_5_tabs_2_tab_content',''),(125446,40368,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(125447,40368,'blocks_5_tabs_2_tab_image','39224'),(125448,40368,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(125449,40368,'blocks_5_tabs','3'),(125450,40368,'_blocks_5_tabs','field_6177cff281419'),(125451,40368,'blocks_6_acfe_flexible_toggle',''),(125452,40368,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(125453,40368,'blocks_6_acfe_flexible_layout_title','Text Block'),(125454,40368,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(125455,40368,'blocks_6_options_theme','#b61234'),(125456,40368,'_blocks_6_options_theme','field_6176830e2ad17'),(125457,40368,'blocks_6_options',''),(125458,40368,'_blocks_6_options','field_6176830e2ad16'),(125459,40368,'blocks_6_text_block_heading','Fees & Funding Options'),(125460,40368,'_blocks_6_text_block_heading','field_617669d413097'),(125461,40368,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(125462,40368,'_blocks_6_text_block_content','field_617669ec13098'),(125463,40368,'blocks_7_acfe_flexible_toggle',''),(125464,40368,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(125465,40368,'blocks_7_acfe_flexible_layout_title','Icons'),(125466,40368,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(125467,40368,'blocks_7_options_theme','#b61234'),(125468,40368,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(125469,40368,'blocks_7_options_format','row'),(125470,40368,'_blocks_7_options_format','field_64bfde9a90690'),(125471,40368,'blocks_7_options',''),(125472,40368,'_blocks_7_options','field_64bfdd9b90684'),(125473,40368,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(125474,40368,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(125475,40368,'blocks_7_icon_row_items_0_label','Pay in Full'),(125476,40368,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(125477,40368,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(125478,40368,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(125479,40368,'blocks_7_icon_row_items_1_icon','finance.svg'),(125480,40368,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(125481,40368,'blocks_7_icon_row_items_1_label','0% finance'),(125482,40368,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(125483,40368,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(125484,40368,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(125485,40368,'blocks_7_icon_row_items_2_icon','deposit.svg'),(125486,40368,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(125487,40368,'blocks_7_icon_row_items_2_label','Deposit & balance'),(125488,40368,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(125489,40368,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(125490,40368,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(125491,40368,'blocks_7_icon_row_items','3'),(125492,40368,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(125493,40368,'blocks_8_acfe_flexible_toggle',''),(125494,40368,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(125495,40368,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(125496,40368,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(125497,40368,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(125498,40368,'_blocks_8_content','field_6193c9b5eac84'),(125499,40368,'blocks_9_acfe_flexible_toggle',''),(125500,40368,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(125501,40368,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(125502,40368,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(125503,40368,'blocks_9_testimonial_slider_content_title',''),(125504,40368,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(125505,40368,'blocks_9_testimonial_slider_content_heading','Testimonials'),(125506,40368,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(125507,40368,'blocks_9_testimonial_slider_content_text',''),(125508,40368,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(125509,40368,'blocks_9_testimonial_slider_content_actions',''),(125510,40368,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(125511,40368,'blocks_9_testimonial_slider_content',''),(125512,40368,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(125513,40368,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(125514,40368,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(125515,40368,'blocks_9_testimonial_slider_ambassador_bool','0'),(125516,40368,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(125517,40368,'blocks_10_acfe_flexible_toggle',''),(125518,40368,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(125519,40368,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(125520,40368,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(125521,40368,'blocks_10_options_theme','#ffffff'),(125522,40368,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(125523,40368,'blocks_10_options_state','0'),(125524,40368,'_blocks_10_options_state','field_6239fcb7508c5'),(125525,40368,'blocks_10_options',''),(125526,40368,'_blocks_10_options','field_6177e2991ac44'),(125527,40368,'blocks_10_content_title',''),(125528,40368,'_blocks_10_content_title','field_64d237e8bb1e2'),(125529,40368,'blocks_10_content_heading','Frequently asked questions '),(125530,40368,'_blocks_10_content_heading','field_64d237e8bb1e3'),(125531,40368,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(125532,40368,'_blocks_10_content_text','field_64d237e8bb1e4'),(125533,40368,'blocks_10_content_actions',''),(125534,40368,'_blocks_10_content_actions','field_64d237e8bb1e5'),(125535,40368,'blocks_10_content_align','left'),(125536,40368,'_blocks_10_content_align','field_64d2443e6b6aa'),(125537,40368,'blocks_10_content',''),(125538,40368,'_blocks_10_content','field_64d237e8bb1e1'),(125539,40368,'blocks_10_accordion_content','faqs'),(125540,40368,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(125541,40368,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(125542,40368,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(125543,40368,'blocks_10_actions',''),(125544,40368,'_blocks_10_actions','field_61a746a817f7a'),(125545,40369,'hide_hero','0'),(125546,40369,'_hide_hero','field_66a2380fcda39'),(125547,40369,'hero_title','Biomechanics and Sports Massage Therapy'),(125548,40369,'_hero_title','field_617571fe285e8'),(125549,40369,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(125550,40369,'_hero_text','field_6175723c285e9'),(125551,40369,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(125552,40369,'_hero_actions_0_button','field_61757281285eb'),(125553,40369,'hero_actions','1'),(125554,40369,'_hero_actions','field_61757270285ea'),(125555,40369,'hero_style','default'),(125556,40369,'_hero_style','field_62051d9dc5324'),(125557,40369,'_thumbnail_id','39240'),(125558,40369,'__thumbnail_id','field_617570855ddaf'),(125559,40369,'hero_image_pos_x','right'),(125560,40369,'_hero_image_pos_x','field_62ec3d05390bb'),(125561,40369,'hero_image_pos_y','top'),(125562,40369,'_hero_image_pos_y','field_62ec3d05390bc'),(125563,40369,'hero_image_pos',''),(125564,40369,'_hero_image_pos','field_62ec3d05390ba'),(125565,40369,'fft_hide_from_listings','0'),(125566,40369,'_fft_hide_from_listings','field_61f1320446ab2'),(125567,40369,'fft_page_format','default'),(125568,40369,'_fft_page_format','field_61ae213f1f218'),(125569,40369,'fft_hide_nav','0'),(125570,40369,'_fft_hide_nav','field_635bd5e43527c'),(125571,40369,'fft_hide_header_call_to_action','0'),(125572,40369,'_fft_hide_header_call_to_action','field_635bd6723527d'),(125573,40369,'fft_page_sitemap','0'),(125574,40369,'_fft_page_sitemap','field_61af9b34e8181'),(125575,40369,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(125576,40369,'_blocks','field_6176696113096'),(125577,40369,'blocks_0_acfe_flexible_toggle',''),(125578,40369,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(125579,40369,'blocks_0_acfe_flexible_layout_title','Steps'),(125580,40369,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(125581,40369,'blocks_0_row_content_title',''),(125582,40369,'_blocks_0_row_content_title','field_64888cd1e26e0'),(125583,40369,'blocks_0_row_content_heading','Benefits of Training with Us'),(125584,40369,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(125585,40369,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(125586,40369,'_blocks_0_row_content_text','field_64888ce2e26e2'),(125587,40369,'blocks_0_row_content_actions',''),(125588,40369,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(125589,40369,'blocks_0_row_content',''),(125590,40369,'_blocks_0_row_content','field_64888cb0e26df'),(125591,40369,'blocks_0_steps_0_icon','progression.svg'),(125592,40369,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(125593,40369,'blocks_0_steps_0_title','Earning potential'),(125594,40369,'_blocks_0_steps_0_title','field_64888d94e26e7'),(125595,40369,'blocks_0_steps_0_text','Find new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(125596,40369,'_blocks_0_steps_0_text','field_64888d99e26e8'),(125597,40369,'blocks_0_steps_1_icon','support.svg'),(125598,40369,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(125599,40369,'blocks_0_steps_1_title','Lifetime learning promise'),(125600,40369,'_blocks_0_steps_1_title','field_64888d94e26e7'),(125601,40369,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(125602,40369,'_blocks_0_steps_1_text','field_64888d99e26e8'),(125603,40369,'blocks_0_steps_2_icon','qualification.svg'),(125604,40369,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(125605,40369,'blocks_0_steps_2_title','Evidence based hands on learning'),(125606,40369,'_blocks_0_steps_2_title','field_64888d94e26e7'),(125607,40369,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(125608,40369,'_blocks_0_steps_2_text','field_64888d99e26e8'),(125609,40369,'blocks_0_steps_3_icon','leaders.svg'),(125610,40369,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(125611,40369,'blocks_0_steps_3_title','Stand out from the crowd'),(125612,40369,'_blocks_0_steps_3_title','field_64888d94e26e7'),(125613,40369,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(125614,40369,'_blocks_0_steps_3_text','field_64888d99e26e8'),(125615,40369,'blocks_0_steps','4'),(125616,40369,'_blocks_0_steps','field_64888d44e26e5'),(125617,40369,'blocks_1_acfe_flexible_toggle',''),(125618,40369,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(125619,40369,'blocks_1_acfe_flexible_layout_title','Video'),(125620,40369,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(125621,40369,'blocks_1_size','large'),(125622,40369,'_blocks_1_size','field_6487038f297c1'),(125623,40369,'blocks_1_row_content_title',''),(125624,40369,'_blocks_1_row_content_title','field_64870132a865d'),(125625,40369,'blocks_1_row_content_heading',''),(125626,40369,'_blocks_1_row_content_heading','field_64870142a865e'),(125627,40369,'blocks_1_row_content_text',''),(125628,40369,'_blocks_1_row_content_text','field_64870148a865f'),(125629,40369,'blocks_1_row_content',''),(125630,40369,'_blocks_1_row_content','field_6487008ba865c'),(125631,40369,'blocks_1_video_src',''),(125632,40369,'_blocks_1_video_src','field_6193c4a98ec07'),(125633,40369,'blocks_1_video_thumbnail',''),(125634,40369,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(125635,40369,'blocks_2_acfe_flexible_toggle',''),(125636,40369,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(125637,40369,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(125638,40369,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(125639,40369,'blocks_2_options_theme','#ffffff'),(125640,40369,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(125641,40369,'blocks_2_options_reverse','0'),(125642,40369,'_blocks_2_options_reverse','field_61768049bb8ac'),(125643,40369,'blocks_2_options',''),(125644,40369,'_blocks_2_options','field_617682517c334'),(125645,40369,'blocks_2_split_5050_image','39241'),(125646,40369,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(125647,40369,'blocks_2_split_5050_video',''),(125648,40369,'_blocks_2_split_5050_video','field_6239f3160848a'),(125649,40369,'blocks_2_split_5050_content_title',''),(125650,40369,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(125651,40369,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(125652,40369,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(125653,40369,'blocks_2_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(125654,40369,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(125655,40369,'blocks_2_split_5050_content_actions',''),(125656,40369,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(125657,40369,'blocks_2_split_5050_content',''),(125658,40369,'_blocks_2_split_5050_content','field_61767afceb8ba'),(125659,40369,'blocks_3_acfe_flexible_toggle',''),(125660,40369,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(125661,40369,'blocks_3_acfe_flexible_layout_title','Form'),(125662,40369,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(125663,40369,'blocks_3_row_content_format','standard'),(125664,40369,'_blocks_3_row_content_format','field_6481ead962881'),(125665,40369,'blocks_3_row_content_title',''),(125666,40369,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(125667,40369,'blocks_3_row_content_heading','Enquire Today'),(125668,40369,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(125669,40369,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(125670,40369,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(125671,40369,'blocks_3_row_content_actions',''),(125672,40369,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(125673,40369,'blocks_3_row_content',''),(125674,40369,'_blocks_3_row_content','field_61a0f5f5b3db0'),(125675,40369,'blocks_3_row_form',''),(125676,40369,'_blocks_3_row_form','field_61a4ff2c0b08e'),(125677,40369,'blocks_3_row_form_button_label',''),(125678,40369,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(125679,40369,'blocks_4_acfe_flexible_toggle',''),(125680,40369,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(125681,40369,'blocks_4_acfe_flexible_layout_title','Tabs'),(125682,40369,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(125683,40369,'blocks_4_options_theme','#ffffff'),(125684,40369,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(125685,40369,'blocks_4_options',''),(125686,40369,'_blocks_4_options','field_6177cfcd8140f'),(125687,40369,'blocks_4_tabs_0_tab_label','What will I learn ?'),(125688,40369,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(125689,40369,'blocks_4_tabs_0_tab_content_title',''),(125690,40369,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(125691,40369,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(125692,40369,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(125693,40369,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(125694,40369,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(125695,40369,'blocks_4_tabs_0_tab_content_actions',''),(125696,40369,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(125697,40369,'blocks_4_tabs_0_tab_content',''),(125698,40369,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(125699,40369,'blocks_4_tabs_0_tab_image','39076'),(125700,40369,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(125701,40369,'blocks_4_tabs_1_tab_label','What do I need ?'),(125702,40369,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(125703,40369,'blocks_4_tabs_1_tab_content_title',''),(125704,40369,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(125705,40369,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(125706,40369,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(125707,40369,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(125708,40369,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(125709,40369,'blocks_4_tabs_1_tab_content_actions',''),(125710,40369,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(125711,40369,'blocks_4_tabs_1_tab_content',''),(125712,40369,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(125713,40369,'blocks_4_tabs_1_tab_image','39223'),(125714,40369,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(125715,40369,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(125716,40369,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(125717,40369,'blocks_4_tabs_2_tab_content_title',''),(125718,40369,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(125719,40369,'blocks_4_tabs_2_tab_content_heading','Locations'),(125720,40369,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(125721,40369,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(125722,40369,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(125723,40369,'blocks_4_tabs_2_tab_content_actions',''),(125724,40369,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(125725,40369,'blocks_4_tabs_2_tab_content',''),(125726,40369,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(125727,40369,'blocks_4_tabs_2_tab_image','39224'),(125728,40369,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(125729,40369,'blocks_4_tabs','3'),(125730,40369,'_blocks_4_tabs','field_6177cff281419'),(125731,40369,'blocks_5_acfe_flexible_toggle',''),(125732,40369,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(125733,40369,'blocks_5_acfe_flexible_layout_title','Text Block'),(125734,40369,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(125735,40369,'blocks_5_options_theme','#b61234'),(125736,40369,'_blocks_5_options_theme','field_6176830e2ad17'),(125737,40369,'blocks_5_options',''),(125738,40369,'_blocks_5_options','field_6176830e2ad16'),(125739,40369,'blocks_5_text_block_heading','Fees & Funding Options'),(125740,40369,'_blocks_5_text_block_heading','field_617669d413097'),(125741,40369,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(125742,40369,'_blocks_5_text_block_content','field_617669ec13098'),(125743,40369,'blocks_6_acfe_flexible_toggle',''),(125744,40369,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(125745,40369,'blocks_6_acfe_flexible_layout_title','Icons'),(125746,40369,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(125747,40369,'blocks_6_options_theme','#b61234'),(125748,40369,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(125749,40369,'blocks_6_options_format','row'),(125750,40369,'_blocks_6_options_format','field_64bfde9a90690'),(125751,40369,'blocks_6_options',''),(125752,40369,'_blocks_6_options','field_64bfdd9b90684'),(125753,40369,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(125754,40369,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(125755,40369,'blocks_6_icon_row_items_0_label','Pay in Full'),(125756,40369,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(125757,40369,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(125758,40369,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(125759,40369,'blocks_6_icon_row_items_1_icon','finance.svg'),(125760,40369,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(125761,40369,'blocks_6_icon_row_items_1_label','0% Finance'),(125762,40369,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(125763,40369,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(125764,40369,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(125765,40369,'blocks_6_icon_row_items_2_icon','deposit.svg'),(125766,40369,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(125767,40369,'blocks_6_icon_row_items_2_label','Deposit & balance'),(125768,40369,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(125769,40369,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(125770,40369,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(125771,40369,'blocks_6_icon_row_items','3'),(125772,40369,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(125773,40369,'blocks_7_acfe_flexible_toggle',''),(125774,40369,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(125775,40369,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(125776,40369,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(125777,40369,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(125778,40369,'_blocks_7_content','field_6193c9b5eac84'),(125779,40369,'blocks_8_acfe_flexible_toggle',''),(125780,40369,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(125781,40369,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(125782,40369,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(125783,40369,'blocks_8_testimonial_slider_content_title',''),(125784,40369,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(125785,40369,'blocks_8_testimonial_slider_content_heading','Testimonials'),(125786,40369,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(125787,40369,'blocks_8_testimonial_slider_content_text',''),(125788,40369,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(125789,40369,'blocks_8_testimonial_slider_content_actions',''),(125790,40369,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(125791,40369,'blocks_8_testimonial_slider_content',''),(125792,40369,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(125793,40369,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(125794,40369,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(125795,40369,'blocks_8_testimonial_slider_ambassador_bool','0'),(125796,40369,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(125797,40369,'blocks_9_acfe_flexible_toggle',''),(125798,40369,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(125799,40369,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(125800,40369,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(125801,40369,'blocks_9_options_theme','#ffffff'),(125802,40369,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(125803,40369,'blocks_9_options_state','0'),(125804,40369,'_blocks_9_options_state','field_6239fcb7508c5'),(125805,40369,'blocks_9_options',''),(125806,40369,'_blocks_9_options','field_6177e2991ac44'),(125807,40369,'blocks_9_content_title',''),(125808,40369,'_blocks_9_content_title','field_64d237e8bb1e2'),(125809,40369,'blocks_9_content_heading','Frequently asked questions '),(125810,40369,'_blocks_9_content_heading','field_64d237e8bb1e3'),(125811,40369,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(125812,40369,'_blocks_9_content_text','field_64d237e8bb1e4'),(125813,40369,'blocks_9_content_actions',''),(125814,40369,'_blocks_9_content_actions','field_64d237e8bb1e5'),(125815,40369,'blocks_9_content_align','left'),(125816,40369,'_blocks_9_content_align','field_64d2443e6b6aa'),(125817,40369,'blocks_9_content',''),(125818,40369,'_blocks_9_content','field_64d237e8bb1e1'),(125819,40369,'blocks_9_accordion_content','faqs'),(125820,40369,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(125821,40369,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(125822,40369,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(125823,40369,'blocks_9_actions',''),(125824,40369,'_blocks_9_actions','field_61a746a817f7a'),(125825,40370,'hide_hero','0'),(125826,40370,'_hide_hero','field_66a2380fcda39'),(125827,40370,'hero_title','Biomechanics and Pilates'),(125828,40370,'_hero_title','field_617571fe285e8'),(125829,40370,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(125830,40370,'_hero_text','field_6175723c285e9'),(125831,40370,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(125832,40370,'_hero_actions_0_button','field_61757281285eb'),(125833,40370,'hero_actions','1'),(125834,40370,'_hero_actions','field_61757270285ea'),(125835,40370,'hero_style','default'),(125836,40370,'_hero_style','field_62051d9dc5324'),(125837,40370,'_thumbnail_id','39243'),(125838,40370,'__thumbnail_id','field_617570855ddaf'),(125839,40370,'hero_image_pos_x','right'),(125840,40370,'_hero_image_pos_x','field_62ec3d05390bb'),(125841,40370,'hero_image_pos_y','top'),(125842,40370,'_hero_image_pos_y','field_62ec3d05390bc'),(125843,40370,'hero_image_pos',''),(125844,40370,'_hero_image_pos','field_62ec3d05390ba'),(125845,40370,'fft_hide_from_listings','0'),(125846,40370,'_fft_hide_from_listings','field_61f1320446ab2'),(125847,40370,'fft_page_format','default'),(125848,40370,'_fft_page_format','field_61ae213f1f218'),(125849,40370,'fft_hide_nav','0'),(125850,40370,'_fft_hide_nav','field_635bd5e43527c'),(125851,40370,'fft_hide_header_call_to_action','0'),(125852,40370,'_fft_hide_header_call_to_action','field_635bd6723527d'),(125853,40370,'fft_page_sitemap','0'),(125854,40370,'_fft_page_sitemap','field_61af9b34e8181'),(125855,40370,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(125856,40370,'_blocks','field_6176696113096'),(125857,40370,'blocks_0_acfe_flexible_toggle',''),(125858,40370,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(125859,40370,'blocks_0_acfe_flexible_layout_title','Steps'),(125860,40370,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(125861,40370,'blocks_0_row_content_title',''),(125862,40370,'_blocks_0_row_content_title','field_64888cd1e26e0'),(125863,40370,'blocks_0_row_content_heading','Benefits of training with us'),(125864,40370,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(125865,40370,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(125866,40370,'_blocks_0_row_content_text','field_64888ce2e26e2'),(125867,40370,'blocks_0_row_content_actions',''),(125868,40370,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(125869,40370,'blocks_0_row_content',''),(125870,40370,'_blocks_0_row_content','field_64888cb0e26df'),(125871,40370,'blocks_0_steps_0_icon','progression.svg'),(125872,40370,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(125873,40370,'blocks_0_steps_0_title','Earning potential'),(125874,40370,'_blocks_0_steps_0_title','field_64888d94e26e7'),(125875,40370,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(125876,40370,'_blocks_0_steps_0_text','field_64888d99e26e8'),(125877,40370,'blocks_0_steps_1_icon','support.svg'),(125878,40370,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(125879,40370,'blocks_0_steps_1_title','Lifetime Learning Promise'),(125880,40370,'_blocks_0_steps_1_title','field_64888d94e26e7'),(125881,40370,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(125882,40370,'_blocks_0_steps_1_text','field_64888d99e26e8'),(125883,40370,'blocks_0_steps_2_icon','qualification.svg'),(125884,40370,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(125885,40370,'blocks_0_steps_2_title','Evidence based hands on learning'),(125886,40370,'_blocks_0_steps_2_title','field_64888d94e26e7'),(125887,40370,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(125888,40370,'_blocks_0_steps_2_text','field_64888d99e26e8'),(125889,40370,'blocks_0_steps_3_icon','leaders.svg'),(125890,40370,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(125891,40370,'blocks_0_steps_3_title','Stand out from the crowd'),(125892,40370,'_blocks_0_steps_3_title','field_64888d94e26e7'),(125893,40370,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(125894,40370,'_blocks_0_steps_3_text','field_64888d99e26e8'),(125895,40370,'blocks_0_steps','4'),(125896,40370,'_blocks_0_steps','field_64888d44e26e5'),(125897,40370,'blocks_1_acfe_flexible_toggle',''),(125898,40370,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(125899,40370,'blocks_1_acfe_flexible_layout_title','Video'),(125900,40370,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(125901,40370,'blocks_1_size','large'),(125902,40370,'_blocks_1_size','field_6487038f297c1'),(125903,40370,'blocks_1_row_content_title','Tom Waldron - Master Trainer'),(125904,40370,'_blocks_1_row_content_title','field_64870132a865d'),(125905,40370,'blocks_1_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(125906,40370,'_blocks_1_row_content_heading','field_64870142a865e'),(125907,40370,'blocks_1_row_content_text',''),(125908,40370,'_blocks_1_row_content_text','field_64870148a865f'),(125909,40370,'blocks_1_row_content',''),(125910,40370,'_blocks_1_row_content','field_6487008ba865c'),(125911,40370,'blocks_1_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(125912,40370,'_blocks_1_video_src','field_6193c4a98ec07'),(125913,40370,'blocks_1_video_thumbnail',''),(125914,40370,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(125915,40370,'blocks_2_acfe_flexible_toggle',''),(125916,40370,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(125917,40370,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(125918,40370,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(125919,40370,'blocks_2_options_theme','#ffffff'),(125920,40370,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(125921,40370,'blocks_2_options_reverse','0'),(125922,40370,'_blocks_2_options_reverse','field_61768049bb8ac'),(125923,40370,'blocks_2_options',''),(125924,40370,'_blocks_2_options','field_617682517c334'),(125925,40370,'blocks_2_split_5050_image','38037'),(125926,40370,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(125927,40370,'blocks_2_split_5050_video',''),(125928,40370,'_blocks_2_split_5050_video','field_6239f3160848a'),(125929,40370,'blocks_2_split_5050_content_title',''),(125930,40370,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(125931,40370,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(125932,40370,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(125933,40370,'blocks_2_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(125934,40370,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(125935,40370,'blocks_2_split_5050_content_actions',''),(125936,40370,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(125937,40370,'blocks_2_split_5050_content',''),(125938,40370,'_blocks_2_split_5050_content','field_61767afceb8ba'),(125939,40370,'blocks_3_acfe_flexible_toggle',''),(125940,40370,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(125941,40370,'blocks_3_acfe_flexible_layout_title','Form'),(125942,40370,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(125943,40370,'blocks_3_row_content_format','standard'),(125944,40370,'_blocks_3_row_content_format','field_6481ead962881'),(125945,40370,'blocks_3_row_content_title',''),(125946,40370,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(125947,40370,'blocks_3_row_content_heading','Enquire Today'),(125948,40370,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(125949,40370,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(125950,40370,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(125951,40370,'blocks_3_row_content_actions',''),(125952,40370,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(125953,40370,'blocks_3_row_content',''),(125954,40370,'_blocks_3_row_content','field_61a0f5f5b3db0'),(125955,40370,'blocks_3_row_form',''),(125956,40370,'_blocks_3_row_form','field_61a4ff2c0b08e'),(125957,40370,'blocks_3_row_form_button_label',''),(125958,40370,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(125959,40370,'blocks_4_acfe_flexible_toggle',''),(125960,40370,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(125961,40370,'blocks_4_acfe_flexible_layout_title','Tabs'),(125962,40370,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(125963,40370,'blocks_4_options_theme','#ffffff'),(125964,40370,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(125965,40370,'blocks_4_options',''),(125966,40370,'_blocks_4_options','field_6177cfcd8140f'),(125967,40370,'blocks_4_tabs_0_tab_label','What will I learn ?'),(125968,40370,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(125969,40370,'blocks_4_tabs_0_tab_content_title',''),(125970,40370,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(125971,40370,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(125972,40370,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(125973,40370,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(125974,40370,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(125975,40370,'blocks_4_tabs_0_tab_content_actions',''),(125976,40370,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(125977,40370,'blocks_4_tabs_0_tab_content',''),(125978,40370,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(125979,40370,'blocks_4_tabs_0_tab_image','39076'),(125980,40370,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(125981,40370,'blocks_4_tabs_1_tab_label','What do I need ?'),(125982,40370,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(125983,40370,'blocks_4_tabs_1_tab_content_title',''),(125984,40370,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(125985,40370,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(125986,40370,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(125987,40370,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(125988,40370,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(125989,40370,'blocks_4_tabs_1_tab_content_actions',''),(125990,40370,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(125991,40370,'blocks_4_tabs_1_tab_content',''),(125992,40370,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(125993,40370,'blocks_4_tabs_1_tab_image','39223'),(125994,40370,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(125995,40370,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(125996,40370,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(125997,40370,'blocks_4_tabs_2_tab_content_title',''),(125998,40370,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(125999,40370,'blocks_4_tabs_2_tab_content_heading','Locations'),(126000,40370,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(126001,40370,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(126002,40370,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(126003,40370,'blocks_4_tabs_2_tab_content_actions',''),(126004,40370,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(126005,40370,'blocks_4_tabs_2_tab_content',''),(126006,40370,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(126007,40370,'blocks_4_tabs_2_tab_image','39224'),(126008,40370,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(126009,40370,'blocks_4_tabs','3'),(126010,40370,'_blocks_4_tabs','field_6177cff281419'),(126011,40370,'blocks_5_acfe_flexible_toggle',''),(126012,40370,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(126013,40370,'blocks_5_acfe_flexible_layout_title','Text Block'),(126014,40370,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(126015,40370,'blocks_5_options_theme','#b61234'),(126016,40370,'_blocks_5_options_theme','field_6176830e2ad17'),(126017,40370,'blocks_5_options',''),(126018,40370,'_blocks_5_options','field_6176830e2ad16'),(126019,40370,'blocks_5_text_block_heading','Fees & Funding Options'),(126020,40370,'_blocks_5_text_block_heading','field_617669d413097'),(126021,40370,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(126022,40370,'_blocks_5_text_block_content','field_617669ec13098'),(126023,40370,'blocks_6_acfe_flexible_toggle',''),(126024,40370,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(126025,40370,'blocks_6_acfe_flexible_layout_title','Icons'),(126026,40370,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(126027,40370,'blocks_6_options_theme','#b61234'),(126028,40370,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(126029,40370,'blocks_6_options_format','row'),(126030,40370,'_blocks_6_options_format','field_64bfde9a90690'),(126031,40370,'blocks_6_options',''),(126032,40370,'_blocks_6_options','field_64bfdd9b90684'),(126033,40370,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(126034,40370,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(126035,40370,'blocks_6_icon_row_items_0_label','Pay in Full'),(126036,40370,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(126037,40370,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(126038,40370,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(126039,40370,'blocks_6_icon_row_items_1_icon','finance.svg'),(126040,40370,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(126041,40370,'blocks_6_icon_row_items_1_label','0% finance'),(126042,40370,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(126043,40370,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(126044,40370,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(126045,40370,'blocks_6_icon_row_items_2_icon','deposit.svg'),(126046,40370,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(126047,40370,'blocks_6_icon_row_items_2_label','Deposit & balance'),(126048,40370,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(126049,40370,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(126050,40370,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(126051,40370,'blocks_6_icon_row_items','3'),(126052,40370,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(126053,40370,'blocks_7_acfe_flexible_toggle',''),(126054,40370,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(126055,40370,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(126056,40370,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(126057,40370,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(126058,40370,'_blocks_7_content','field_6193c9b5eac84'),(126059,40370,'blocks_8_acfe_flexible_toggle',''),(126060,40370,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(126061,40370,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(126062,40370,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(126063,40370,'blocks_8_testimonial_slider_content_title',''),(126064,40370,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(126065,40370,'blocks_8_testimonial_slider_content_heading','Testimonials'),(126066,40370,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(126067,40370,'blocks_8_testimonial_slider_content_text',''),(126068,40370,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(126069,40370,'blocks_8_testimonial_slider_content_actions',''),(126070,40370,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(126071,40370,'blocks_8_testimonial_slider_content',''),(126072,40370,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(126073,40370,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(126074,40370,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(126075,40370,'blocks_8_testimonial_slider_ambassador_bool','0'),(126076,40370,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(126077,40370,'blocks_9_acfe_flexible_toggle',''),(126078,40370,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(126079,40370,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(126080,40370,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(126081,40370,'blocks_9_options_theme','#ffffff'),(126082,40370,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(126083,40370,'blocks_9_options_state','0'),(126084,40370,'_blocks_9_options_state','field_6239fcb7508c5'),(126085,40370,'blocks_9_options',''),(126086,40370,'_blocks_9_options','field_6177e2991ac44'),(126087,40370,'blocks_9_content_title',''),(126088,40370,'_blocks_9_content_title','field_64d237e8bb1e2'),(126089,40370,'blocks_9_content_heading','Frequently asked questions '),(126090,40370,'_blocks_9_content_heading','field_64d237e8bb1e3'),(126091,40370,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(126092,40370,'_blocks_9_content_text','field_64d237e8bb1e4'),(126093,40370,'blocks_9_content_actions',''),(126094,40370,'_blocks_9_content_actions','field_64d237e8bb1e5'),(126095,40370,'blocks_9_content_align','left'),(126096,40370,'_blocks_9_content_align','field_64d2443e6b6aa'),(126097,40370,'blocks_9_content',''),(126098,40370,'_blocks_9_content','field_64d237e8bb1e1'),(126099,40370,'blocks_9_accordion_content','faqs'),(126100,40370,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(126101,40370,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(126102,40370,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(126103,40370,'blocks_9_actions',''),(126104,40370,'_blocks_9_actions','field_61a746a817f7a'),(126105,40371,'hide_hero','0'),(126106,40371,'_hide_hero','field_66a2380fcda39'),(126107,40371,'hero_title','Biomechanics and Sports Massage Therapy'),(126108,40371,'_hero_title','field_617571fe285e8'),(126109,40371,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(126110,40371,'_hero_text','field_6175723c285e9'),(126111,40371,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(126112,40371,'_hero_actions_0_button','field_61757281285eb'),(126113,40371,'hero_actions','1'),(126114,40371,'_hero_actions','field_61757270285ea'),(126115,40371,'hero_style','default'),(126116,40371,'_hero_style','field_62051d9dc5324'),(126117,40371,'_thumbnail_id','39240'),(126118,40371,'__thumbnail_id','field_617570855ddaf'),(126119,40371,'hero_image_pos_x','right'),(126120,40371,'_hero_image_pos_x','field_62ec3d05390bb'),(126121,40371,'hero_image_pos_y','top'),(126122,40371,'_hero_image_pos_y','field_62ec3d05390bc'),(126123,40371,'hero_image_pos',''),(126124,40371,'_hero_image_pos','field_62ec3d05390ba'),(126125,40371,'fft_hide_from_listings','0'),(126126,40371,'_fft_hide_from_listings','field_61f1320446ab2'),(126127,40371,'fft_page_format','default'),(126128,40371,'_fft_page_format','field_61ae213f1f218'),(126129,40371,'fft_hide_nav','0'),(126130,40371,'_fft_hide_nav','field_635bd5e43527c'),(126131,40371,'fft_hide_header_call_to_action','0'),(126132,40371,'_fft_hide_header_call_to_action','field_635bd6723527d'),(126133,40371,'fft_page_sitemap','0'),(126134,40371,'_fft_page_sitemap','field_61af9b34e8181'),(126135,40371,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(126136,40371,'_blocks','field_6176696113096'),(126137,40371,'blocks_0_acfe_flexible_toggle',''),(126138,40371,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(126139,40371,'blocks_0_acfe_flexible_layout_title','Steps'),(126140,40371,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(126141,40371,'blocks_0_row_content_title',''),(126142,40371,'_blocks_0_row_content_title','field_64888cd1e26e0'),(126143,40371,'blocks_0_row_content_heading','Benefits of Training with Us'),(126144,40371,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(126145,40371,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(126146,40371,'_blocks_0_row_content_text','field_64888ce2e26e2'),(126147,40371,'blocks_0_row_content_actions',''),(126148,40371,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(126149,40371,'blocks_0_row_content',''),(126150,40371,'_blocks_0_row_content','field_64888cb0e26df'),(126151,40371,'blocks_0_steps_0_icon','progression.svg'),(126152,40371,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(126153,40371,'blocks_0_steps_0_title','Earning potential'),(126154,40371,'_blocks_0_steps_0_title','field_64888d94e26e7'),(126155,40371,'blocks_0_steps_0_text','Find new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(126156,40371,'_blocks_0_steps_0_text','field_64888d99e26e8'),(126157,40371,'blocks_0_steps_1_icon','support.svg'),(126158,40371,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(126159,40371,'blocks_0_steps_1_title','Lifetime learning promise'),(126160,40371,'_blocks_0_steps_1_title','field_64888d94e26e7'),(126161,40371,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(126162,40371,'_blocks_0_steps_1_text','field_64888d99e26e8'),(126163,40371,'blocks_0_steps_2_icon','qualification.svg'),(126164,40371,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(126165,40371,'blocks_0_steps_2_title','Evidence based hands on learning'),(126166,40371,'_blocks_0_steps_2_title','field_64888d94e26e7'),(126167,40371,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(126168,40371,'_blocks_0_steps_2_text','field_64888d99e26e8'),(126169,40371,'blocks_0_steps_3_icon','leaders.svg'),(126170,40371,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(126171,40371,'blocks_0_steps_3_title','Stand out from the crowd'),(126172,40371,'_blocks_0_steps_3_title','field_64888d94e26e7'),(126173,40371,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(126174,40371,'_blocks_0_steps_3_text','field_64888d99e26e8'),(126175,40371,'blocks_0_steps','4'),(126176,40371,'_blocks_0_steps','field_64888d44e26e5'),(126177,40371,'blocks_1_acfe_flexible_toggle',''),(126178,40371,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(126179,40371,'blocks_1_acfe_flexible_layout_title','Video'),(126180,40371,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(126181,40371,'blocks_1_size','large'),(126182,40371,'_blocks_1_size','field_6487038f297c1'),(126183,40371,'blocks_1_row_content_title',''),(126184,40371,'_blocks_1_row_content_title','field_64870132a865d'),(126185,40371,'blocks_1_row_content_heading',''),(126186,40371,'_blocks_1_row_content_heading','field_64870142a865e'),(126187,40371,'blocks_1_row_content_text',''),(126188,40371,'_blocks_1_row_content_text','field_64870148a865f'),(126189,40371,'blocks_1_row_content',''),(126190,40371,'_blocks_1_row_content','field_6487008ba865c'),(126191,40371,'blocks_1_video_src',''),(126192,40371,'_blocks_1_video_src','field_6193c4a98ec07'),(126193,40371,'blocks_1_video_thumbnail',''),(126194,40371,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(126195,40371,'blocks_2_acfe_flexible_toggle',''),(126196,40371,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(126197,40371,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(126198,40371,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(126199,40371,'blocks_2_options_theme','#ffffff'),(126200,40371,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(126201,40371,'blocks_2_options_reverse','0'),(126202,40371,'_blocks_2_options_reverse','field_61768049bb8ac'),(126203,40371,'blocks_2_options',''),(126204,40371,'_blocks_2_options','field_617682517c334'),(126205,40371,'blocks_2_split_5050_image','39241'),(126206,40371,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(126207,40371,'blocks_2_split_5050_video',''),(126208,40371,'_blocks_2_split_5050_video','field_6239f3160848a'),(126209,40371,'blocks_2_split_5050_content_title',''),(126210,40371,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(126211,40371,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(126212,40371,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(126213,40371,'blocks_2_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(126214,40371,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(126215,40371,'blocks_2_split_5050_content_actions',''),(126216,40371,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(126217,40371,'blocks_2_split_5050_content',''),(126218,40371,'_blocks_2_split_5050_content','field_61767afceb8ba'),(126219,40371,'blocks_3_acfe_flexible_toggle',''),(126220,40371,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(126221,40371,'blocks_3_acfe_flexible_layout_title','Form'),(126222,40371,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(126223,40371,'blocks_3_row_content_format','standard'),(126224,40371,'_blocks_3_row_content_format','field_6481ead962881'),(126225,40371,'blocks_3_row_content_title',''),(126226,40371,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(126227,40371,'blocks_3_row_content_heading','Enquire Today'),(126228,40371,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(126229,40371,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(126230,40371,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(126231,40371,'blocks_3_row_content_actions',''),(126232,40371,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(126233,40371,'blocks_3_row_content',''),(126234,40371,'_blocks_3_row_content','field_61a0f5f5b3db0'),(126235,40371,'blocks_3_row_form',''),(126236,40371,'_blocks_3_row_form','field_61a4ff2c0b08e'),(126237,40371,'blocks_3_row_form_button_label',''),(126238,40371,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(126239,40371,'blocks_4_acfe_flexible_toggle',''),(126240,40371,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(126241,40371,'blocks_4_acfe_flexible_layout_title','Tabs'),(126242,40371,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(126243,40371,'blocks_4_options_theme','#ffffff'),(126244,40371,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(126245,40371,'blocks_4_options',''),(126246,40371,'_blocks_4_options','field_6177cfcd8140f'),(126247,40371,'blocks_4_tabs_0_tab_label','What will I learn ?'),(126248,40371,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(126249,40371,'blocks_4_tabs_0_tab_content_title',''),(126250,40371,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(126251,40371,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(126252,40371,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(126253,40371,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(126254,40371,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(126255,40371,'blocks_4_tabs_0_tab_content_actions',''),(126256,40371,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(126257,40371,'blocks_4_tabs_0_tab_content',''),(126258,40371,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(126259,40371,'blocks_4_tabs_0_tab_image','39076'),(126260,40371,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(126261,40371,'blocks_4_tabs_1_tab_label','What do I need ?'),(126262,40371,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(126263,40371,'blocks_4_tabs_1_tab_content_title',''),(126264,40371,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(126265,40371,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(126266,40371,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(126267,40371,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(126268,40371,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(126269,40371,'blocks_4_tabs_1_tab_content_actions',''),(126270,40371,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(126271,40371,'blocks_4_tabs_1_tab_content',''),(126272,40371,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(126273,40371,'blocks_4_tabs_1_tab_image','39223'),(126274,40371,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(126275,40371,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(126276,40371,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(126277,40371,'blocks_4_tabs_2_tab_content_title',''),(126278,40371,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(126279,40371,'blocks_4_tabs_2_tab_content_heading','Locations'),(126280,40371,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(126281,40371,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(126282,40371,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(126283,40371,'blocks_4_tabs_2_tab_content_actions',''),(126284,40371,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(126285,40371,'blocks_4_tabs_2_tab_content',''),(126286,40371,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(126287,40371,'blocks_4_tabs_2_tab_image','39224'),(126288,40371,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(126289,40371,'blocks_4_tabs','3'),(126290,40371,'_blocks_4_tabs','field_6177cff281419'),(126291,40371,'blocks_5_acfe_flexible_toggle',''),(126292,40371,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(126293,40371,'blocks_5_acfe_flexible_layout_title','Text Block'),(126294,40371,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(126295,40371,'blocks_5_options_theme','#b61234'),(126296,40371,'_blocks_5_options_theme','field_6176830e2ad17'),(126297,40371,'blocks_5_options',''),(126298,40371,'_blocks_5_options','field_6176830e2ad16'),(126299,40371,'blocks_5_text_block_heading','Fees & Funding Options'),(126300,40371,'_blocks_5_text_block_heading','field_617669d413097'),(126301,40371,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(126302,40371,'_blocks_5_text_block_content','field_617669ec13098'),(126303,40371,'blocks_6_acfe_flexible_toggle',''),(126304,40371,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(126305,40371,'blocks_6_acfe_flexible_layout_title','Icons'),(126306,40371,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(126307,40371,'blocks_6_options_theme','#b61234'),(126308,40371,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(126309,40371,'blocks_6_options_format','row'),(126310,40371,'_blocks_6_options_format','field_64bfde9a90690'),(126311,40371,'blocks_6_options',''),(126312,40371,'_blocks_6_options','field_64bfdd9b90684'),(126313,40371,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(126314,40371,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(126315,40371,'blocks_6_icon_row_items_0_label','Pay in Full'),(126316,40371,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(126317,40371,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(126318,40371,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(126319,40371,'blocks_6_icon_row_items_1_icon','finance.svg'),(126320,40371,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(126321,40371,'blocks_6_icon_row_items_1_label','0% Finance'),(126322,40371,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(126323,40371,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(126324,40371,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(126325,40371,'blocks_6_icon_row_items_2_icon','deposit.svg'),(126326,40371,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(126327,40371,'blocks_6_icon_row_items_2_label','Deposit & balance'),(126328,40371,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(126329,40371,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(126330,40371,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(126331,40371,'blocks_6_icon_row_items','3'),(126332,40371,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(126333,40371,'blocks_7_acfe_flexible_toggle',''),(126334,40371,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(126335,40371,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(126336,40371,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(126337,40371,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(126338,40371,'_blocks_7_content','field_6193c9b5eac84'),(126339,40371,'blocks_8_acfe_flexible_toggle',''),(126340,40371,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(126341,40371,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(126342,40371,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(126343,40371,'blocks_8_testimonial_slider_content_title',''),(126344,40371,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(126345,40371,'blocks_8_testimonial_slider_content_heading','Testimonials'),(126346,40371,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(126347,40371,'blocks_8_testimonial_slider_content_text',''),(126348,40371,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(126349,40371,'blocks_8_testimonial_slider_content_actions',''),(126350,40371,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(126351,40371,'blocks_8_testimonial_slider_content',''),(126352,40371,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(126353,40371,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(126354,40371,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(126355,40371,'blocks_8_testimonial_slider_ambassador_bool','0'),(126356,40371,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(126357,40371,'blocks_9_acfe_flexible_toggle',''),(126358,40371,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(126359,40371,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(126360,40371,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(126361,40371,'blocks_9_options_theme','#ffffff'),(126362,40371,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(126363,40371,'blocks_9_options_state','0'),(126364,40371,'_blocks_9_options_state','field_6239fcb7508c5'),(126365,40371,'blocks_9_options',''),(126366,40371,'_blocks_9_options','field_6177e2991ac44'),(126367,40371,'blocks_9_content_title',''),(126368,40371,'_blocks_9_content_title','field_64d237e8bb1e2'),(126369,40371,'blocks_9_content_heading','Frequently Asked Questions '),(126370,40371,'_blocks_9_content_heading','field_64d237e8bb1e3'),(126371,40371,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329829444'),(126372,40371,'_blocks_9_content_text','field_64d237e8bb1e4'),(126373,40371,'blocks_9_content_actions',''),(126374,40371,'_blocks_9_content_actions','field_64d237e8bb1e5');
INSERT INTO `6m7_postmeta` VALUES (126375,40371,'blocks_9_content_align','left'),(126376,40371,'_blocks_9_content_align','field_64d2443e6b6aa'),(126377,40371,'blocks_9_content',''),(126378,40371,'_blocks_9_content','field_64d237e8bb1e1'),(126379,40371,'blocks_9_accordion_content','faqs'),(126380,40371,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(126381,40371,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(126382,40371,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(126383,40371,'blocks_9_actions',''),(126384,40371,'_blocks_9_actions','field_61a746a817f7a'),(126387,40372,'hide_hero','0'),(126388,40372,'_hide_hero','field_66a2380fcda39'),(126389,40372,'hero_title',''),(126390,40372,'_hero_title','field_617571fe285e8'),(126391,40372,'hero_text',''),(126392,40372,'_hero_text','field_6175723c285e9'),(126393,40372,'hero_actions',''),(126394,40372,'_hero_actions','field_61757270285ea'),(126395,40372,'hero_style','default'),(126396,40372,'_hero_style','field_62051d9dc5324'),(126397,40372,'hero_image_pos_x','right'),(126398,40372,'_hero_image_pos_x','field_62ec3d05390bb'),(126399,40372,'hero_image_pos_y','top'),(126400,40372,'_hero_image_pos_y','field_62ec3d05390bc'),(126401,40372,'hero_image_pos',''),(126402,40372,'_hero_image_pos','field_62ec3d05390ba'),(126403,40372,'fft_hide_from_listings','0'),(126404,40372,'_fft_hide_from_listings','field_61f1320446ab2'),(126405,40372,'post_format',''),(126406,40372,'_post_format','field_61756bfb51898'),(126407,40372,'post_author',''),(126408,40372,'_post_author','field_62ec389d22113'),(126409,40372,'post_reviewer',''),(126410,40372,'_post_reviewer','field_627140a2a9800'),(126411,40372,'post_table_of_contents','0'),(126412,40372,'_post_table_of_contents','field_65c503bc846a6'),(126413,40372,'_thumbnail_id',''),(126414,40372,'__thumbnail_id','field_617570855ddaf'),(126415,39544,'_oembed_a9e767746273836c56f9212e98c7b0ad','{{unknown}}'),(126416,39238,'blocks_0_acfe_flexible_toggle',''),(126417,39238,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(126418,39238,'blocks_0_acfe_flexible_layout_title','Template'),(126419,39238,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(126420,39238,'blocks_0_template','39087'),(126421,39238,'_blocks_0_template','field_617bdd570fe01'),(126670,40373,'hide_hero','0'),(126671,40373,'_hide_hero','field_66a2380fcda39'),(126672,40373,'hero_title','Biomechanics and Sports Massage Therapy'),(126673,40373,'_hero_title','field_617571fe285e8'),(126674,40373,'hero_text','Stand out from the crowd with Biomechanics Coaching'),(126675,40373,'_hero_text','field_6175723c285e9'),(126676,40373,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(126677,40373,'_hero_actions_0_button','field_61757281285eb'),(126678,40373,'hero_actions','1'),(126679,40373,'_hero_actions','field_61757270285ea'),(126680,40373,'hero_style','default'),(126681,40373,'_hero_style','field_62051d9dc5324'),(126682,40373,'_thumbnail_id','39240'),(126683,40373,'__thumbnail_id','field_617570855ddaf'),(126684,40373,'hero_image_pos_x','right'),(126685,40373,'_hero_image_pos_x','field_62ec3d05390bb'),(126686,40373,'hero_image_pos_y','top'),(126687,40373,'_hero_image_pos_y','field_62ec3d05390bc'),(126688,40373,'hero_image_pos',''),(126689,40373,'_hero_image_pos','field_62ec3d05390ba'),(126690,40373,'fft_hide_from_listings','0'),(126691,40373,'_fft_hide_from_listings','field_61f1320446ab2'),(126692,40373,'fft_page_format','default'),(126693,40373,'_fft_page_format','field_61ae213f1f218'),(126694,40373,'fft_hide_nav','0'),(126695,40373,'_fft_hide_nav','field_635bd5e43527c'),(126696,40373,'fft_hide_header_call_to_action','0'),(126697,40373,'_fft_hide_header_call_to_action','field_635bd6723527d'),(126698,40373,'fft_page_sitemap','0'),(126699,40373,'_fft_page_sitemap','field_61af9b34e8181'),(126700,40373,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(126701,40373,'_blocks','field_6176696113096'),(126702,40373,'blocks_0_acfe_flexible_toggle',''),(126703,40373,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(126704,40373,'blocks_0_acfe_flexible_layout_title','Template'),(126705,40373,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(126706,40373,'blocks_0_template','39087'),(126707,40373,'_blocks_0_template','field_617bdd570fe01'),(126708,40373,'blocks_1_acfe_flexible_toggle',''),(126709,40373,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(126710,40373,'blocks_1_acfe_flexible_layout_title','Steps'),(126711,40373,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(126712,40373,'blocks_1_row_content_title',''),(126713,40373,'_blocks_1_row_content_title','field_64888cd1e26e0'),(126714,40373,'blocks_1_row_content_heading','Benefits of Training with Us'),(126715,40373,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(126716,40373,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(126717,40373,'_blocks_1_row_content_text','field_64888ce2e26e2'),(126718,40373,'blocks_1_row_content_actions',''),(126719,40373,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(126720,40373,'blocks_1_row_content',''),(126721,40373,'_blocks_1_row_content','field_64888cb0e26df'),(126722,40373,'blocks_1_steps_0_icon','progression.svg'),(126723,40373,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(126724,40373,'blocks_1_steps_0_title','Earning potential'),(126725,40373,'_blocks_1_steps_0_title','field_64888d94e26e7'),(126726,40373,'blocks_1_steps_0_text','Find new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(126727,40373,'_blocks_1_steps_0_text','field_64888d99e26e8'),(126728,40373,'blocks_1_steps_1_icon','support.svg'),(126729,40373,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(126730,40373,'blocks_1_steps_1_title','Lifetime learning promise'),(126731,40373,'_blocks_1_steps_1_title','field_64888d94e26e7'),(126732,40373,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(126733,40373,'_blocks_1_steps_1_text','field_64888d99e26e8'),(126734,40373,'blocks_1_steps_2_icon','qualification.svg'),(126735,40373,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(126736,40373,'blocks_1_steps_2_title','Evidence based hands on learning'),(126737,40373,'_blocks_1_steps_2_title','field_64888d94e26e7'),(126738,40373,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(126739,40373,'_blocks_1_steps_2_text','field_64888d99e26e8'),(126740,40373,'blocks_1_steps_3_icon','leaders.svg'),(126741,40373,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(126742,40373,'blocks_1_steps_3_title','Stand out from the crowd'),(126743,40373,'_blocks_1_steps_3_title','field_64888d94e26e7'),(126744,40373,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(126745,40373,'_blocks_1_steps_3_text','field_64888d99e26e8'),(126746,40373,'blocks_1_steps','4'),(126747,40373,'_blocks_1_steps','field_64888d44e26e5'),(126748,40373,'blocks_2_acfe_flexible_toggle',''),(126749,40373,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(126750,40373,'blocks_2_acfe_flexible_layout_title','Video'),(126751,40373,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(126752,40373,'blocks_2_size','large'),(126753,40373,'_blocks_2_size','field_6487038f297c1'),(126754,40373,'blocks_2_row_content_title',''),(126755,40373,'_blocks_2_row_content_title','field_64870132a865d'),(126756,40373,'blocks_2_row_content_heading',''),(126757,40373,'_blocks_2_row_content_heading','field_64870142a865e'),(126758,40373,'blocks_2_row_content_text',''),(126759,40373,'_blocks_2_row_content_text','field_64870148a865f'),(126760,40373,'blocks_2_row_content',''),(126761,40373,'_blocks_2_row_content','field_6487008ba865c'),(126762,40373,'blocks_2_video_src',''),(126763,40373,'_blocks_2_video_src','field_6193c4a98ec07'),(126764,40373,'blocks_2_video_thumbnail',''),(126765,40373,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(126766,40373,'blocks_3_acfe_flexible_toggle',''),(126767,40373,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(126768,40373,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(126769,40373,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(126770,40373,'blocks_3_options_theme','#ffffff'),(126771,40373,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(126772,40373,'blocks_3_options_reverse','0'),(126773,40373,'_blocks_3_options_reverse','field_61768049bb8ac'),(126774,40373,'blocks_3_options',''),(126775,40373,'_blocks_3_options','field_617682517c334'),(126776,40373,'blocks_3_split_5050_image','39241'),(126777,40373,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(126778,40373,'blocks_3_split_5050_video',''),(126779,40373,'_blocks_3_split_5050_video','field_6239f3160848a'),(126780,40373,'blocks_3_split_5050_content_title',''),(126781,40373,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(126782,40373,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(126783,40373,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(126784,40373,'blocks_3_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(126785,40373,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(126786,40373,'blocks_3_split_5050_content_actions',''),(126787,40373,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(126788,40373,'blocks_3_split_5050_content',''),(126789,40373,'_blocks_3_split_5050_content','field_61767afceb8ba'),(126790,40373,'blocks_4_acfe_flexible_toggle',''),(126791,40373,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(126792,40373,'blocks_4_acfe_flexible_layout_title','Form'),(126793,40373,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(126794,40373,'blocks_4_row_content_format','standard'),(126795,40373,'_blocks_4_row_content_format','field_6481ead962881'),(126796,40373,'blocks_4_row_content_title',''),(126797,40373,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(126798,40373,'blocks_4_row_content_heading','Enquire Today'),(126799,40373,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(126800,40373,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(126801,40373,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(126802,40373,'blocks_4_row_content_actions',''),(126803,40373,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(126804,40373,'blocks_4_row_content',''),(126805,40373,'_blocks_4_row_content','field_61a0f5f5b3db0'),(126806,40373,'blocks_4_row_form',''),(126807,40373,'_blocks_4_row_form','field_61a4ff2c0b08e'),(126808,40373,'blocks_4_row_form_button_label',''),(126809,40373,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(126810,40373,'blocks_5_acfe_flexible_toggle',''),(126811,40373,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(126812,40373,'blocks_5_acfe_flexible_layout_title','Tabs'),(126813,40373,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(126814,40373,'blocks_5_options_theme','#ffffff'),(126815,40373,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(126816,40373,'blocks_5_options',''),(126817,40373,'_blocks_5_options','field_6177cfcd8140f'),(126818,40373,'blocks_5_tabs_0_tab_label','What will I learn ?'),(126819,40373,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(126820,40373,'blocks_5_tabs_0_tab_content_title',''),(126821,40373,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(126822,40373,'blocks_5_tabs_0_tab_content_heading','What You’ll Learn'),(126823,40373,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(126824,40373,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(126825,40373,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(126826,40373,'blocks_5_tabs_0_tab_content_actions',''),(126827,40373,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(126828,40373,'blocks_5_tabs_0_tab_content',''),(126829,40373,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(126830,40373,'blocks_5_tabs_0_tab_image','39076'),(126831,40373,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(126832,40373,'blocks_5_tabs_1_tab_label','What do I need ?'),(126833,40373,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(126834,40373,'blocks_5_tabs_1_tab_content_title',''),(126835,40373,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(126836,40373,'blocks_5_tabs_1_tab_content_heading','Entry Requirements'),(126837,40373,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(126838,40373,'blocks_5_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(126839,40373,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(126840,40373,'blocks_5_tabs_1_tab_content_actions',''),(126841,40373,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(126842,40373,'blocks_5_tabs_1_tab_content',''),(126843,40373,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(126844,40373,'blocks_5_tabs_1_tab_image','39223'),(126845,40373,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(126846,40373,'blocks_5_tabs_2_tab_label','Where can I learn ?'),(126847,40373,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(126848,40373,'blocks_5_tabs_2_tab_content_title',''),(126849,40373,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(126850,40373,'blocks_5_tabs_2_tab_content_heading','Locations'),(126851,40373,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(126852,40373,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(126853,40373,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(126854,40373,'blocks_5_tabs_2_tab_content_actions',''),(126855,40373,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(126856,40373,'blocks_5_tabs_2_tab_content',''),(126857,40373,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(126858,40373,'blocks_5_tabs_2_tab_image','39224'),(126859,40373,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(126860,40373,'blocks_5_tabs','3'),(126861,40373,'_blocks_5_tabs','field_6177cff281419'),(126862,40373,'blocks_6_acfe_flexible_toggle',''),(126863,40373,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(126864,40373,'blocks_6_acfe_flexible_layout_title','Text Block'),(126865,40373,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(126866,40373,'blocks_6_options_theme','#b61234'),(126867,40373,'_blocks_6_options_theme','field_6176830e2ad17'),(126868,40373,'blocks_6_options',''),(126869,40373,'_blocks_6_options','field_6176830e2ad16'),(126870,40373,'blocks_6_text_block_heading','Fees & Funding Options'),(126871,40373,'_blocks_6_text_block_heading','field_617669d413097'),(126872,40373,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(126873,40373,'_blocks_6_text_block_content','field_617669ec13098'),(126874,40373,'blocks_7_acfe_flexible_toggle',''),(126875,40373,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(126876,40373,'blocks_7_acfe_flexible_layout_title','Icons'),(126877,40373,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(126878,40373,'blocks_7_options_theme','#b61234'),(126879,40373,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(126880,40373,'blocks_7_options_format','row'),(126881,40373,'_blocks_7_options_format','field_64bfde9a90690'),(126882,40373,'blocks_7_options',''),(126883,40373,'_blocks_7_options','field_64bfdd9b90684'),(126884,40373,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(126885,40373,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(126886,40373,'blocks_7_icon_row_items_0_label','Pay in Full'),(126887,40373,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(126888,40373,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(126889,40373,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(126890,40373,'blocks_7_icon_row_items_1_icon','finance.svg'),(126891,40373,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(126892,40373,'blocks_7_icon_row_items_1_label','0% Finance'),(126893,40373,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(126894,40373,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(126895,40373,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(126896,40373,'blocks_7_icon_row_items_2_icon','deposit.svg'),(126897,40373,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(126898,40373,'blocks_7_icon_row_items_2_label','Deposit & balance'),(126899,40373,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(126900,40373,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(126901,40373,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(126902,40373,'blocks_7_icon_row_items','3'),(126903,40373,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(126904,40373,'blocks_8_acfe_flexible_toggle',''),(126905,40373,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(126906,40373,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(126907,40373,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(126908,40373,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(126909,40373,'_blocks_8_content','field_6193c9b5eac84'),(126910,40373,'blocks_9_acfe_flexible_toggle',''),(126911,40373,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(126912,40373,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(126913,40373,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(126914,40373,'blocks_9_testimonial_slider_content_title',''),(126915,40373,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(126916,40373,'blocks_9_testimonial_slider_content_heading','Testimonials'),(126917,40373,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(126918,40373,'blocks_9_testimonial_slider_content_text',''),(126919,40373,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(126920,40373,'blocks_9_testimonial_slider_content_actions',''),(126921,40373,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(126922,40373,'blocks_9_testimonial_slider_content',''),(126923,40373,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(126924,40373,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(126925,40373,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(126926,40373,'blocks_9_testimonial_slider_ambassador_bool','0'),(126927,40373,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(126928,40373,'blocks_10_acfe_flexible_toggle',''),(126929,40373,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(126930,40373,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(126931,40373,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(126932,40373,'blocks_10_options_theme','#ffffff'),(126933,40373,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(126934,40373,'blocks_10_options_state','0'),(126935,40373,'_blocks_10_options_state','field_6239fcb7508c5'),(126936,40373,'blocks_10_options',''),(126937,40373,'_blocks_10_options','field_6177e2991ac44'),(126938,40373,'blocks_10_content_title',''),(126939,40373,'_blocks_10_content_title','field_64d237e8bb1e2'),(126940,40373,'blocks_10_content_heading','Frequently Asked Questions '),(126941,40373,'_blocks_10_content_heading','field_64d237e8bb1e3'),(126942,40373,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329829444'),(126943,40373,'_blocks_10_content_text','field_64d237e8bb1e4'),(126944,40373,'blocks_10_content_actions',''),(126945,40373,'_blocks_10_content_actions','field_64d237e8bb1e5'),(126946,40373,'blocks_10_content_align','left'),(126947,40373,'_blocks_10_content_align','field_64d2443e6b6aa'),(126948,40373,'blocks_10_content',''),(126949,40373,'_blocks_10_content','field_64d237e8bb1e1'),(126950,40373,'blocks_10_accordion_content','faqs'),(126951,40373,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(126952,40373,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(126953,40373,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(126954,40373,'blocks_10_actions',''),(126955,40373,'_blocks_10_actions','field_61a746a817f7a'),(126956,39249,'blocks_0_acfe_flexible_toggle',''),(126957,39249,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(126958,39249,'blocks_0_acfe_flexible_layout_title','Template'),(126959,39249,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(126960,39249,'blocks_0_template','39087'),(126961,39249,'_blocks_0_template','field_617bdd570fe01'),(127210,40374,'hide_hero','0'),(127211,40374,'_hide_hero','field_66a2380fcda39'),(127212,40374,'hero_title','Biomechanics and Sports Coaches '),(127213,40374,'_hero_title','field_617571fe285e8'),(127214,40374,'hero_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(127215,40374,'_hero_text','field_6175723c285e9'),(127216,40374,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(127217,40374,'_hero_actions_0_button','field_61757281285eb'),(127218,40374,'hero_actions','1'),(127219,40374,'_hero_actions','field_61757270285ea'),(127220,40374,'hero_style','default'),(127221,40374,'_hero_style','field_62051d9dc5324'),(127222,40374,'_thumbnail_id','39251'),(127223,40374,'__thumbnail_id','field_617570855ddaf'),(127224,40374,'hero_image_pos_x','right'),(127225,40374,'_hero_image_pos_x','field_62ec3d05390bb'),(127226,40374,'hero_image_pos_y','top'),(127227,40374,'_hero_image_pos_y','field_62ec3d05390bc'),(127228,40374,'hero_image_pos',''),(127229,40374,'_hero_image_pos','field_62ec3d05390ba'),(127230,40374,'fft_hide_from_listings','0'),(127231,40374,'_fft_hide_from_listings','field_61f1320446ab2'),(127232,40374,'fft_page_format','default'),(127233,40374,'_fft_page_format','field_61ae213f1f218'),(127234,40374,'fft_hide_nav','0'),(127235,40374,'_fft_hide_nav','field_635bd5e43527c'),(127236,40374,'fft_hide_header_call_to_action','0'),(127237,40374,'_fft_hide_header_call_to_action','field_635bd6723527d'),(127238,40374,'fft_page_sitemap','0'),(127239,40374,'_fft_page_sitemap','field_61af9b34e8181'),(127240,40374,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(127241,40374,'_blocks','field_6176696113096'),(127242,40374,'blocks_0_acfe_flexible_toggle',''),(127243,40374,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(127244,40374,'blocks_0_acfe_flexible_layout_title','Template'),(127245,40374,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(127246,40374,'blocks_0_template','39087'),(127247,40374,'_blocks_0_template','field_617bdd570fe01'),(127248,40374,'blocks_1_acfe_flexible_toggle',''),(127249,40374,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(127250,40374,'blocks_1_acfe_flexible_layout_title','Steps'),(127251,40374,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(127252,40374,'blocks_1_row_content_title',''),(127253,40374,'_blocks_1_row_content_title','field_64888cd1e26e0'),(127254,40374,'blocks_1_row_content_heading','Benefits of training with us'),(127255,40374,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(127256,40374,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(127257,40374,'_blocks_1_row_content_text','field_64888ce2e26e2'),(127258,40374,'blocks_1_row_content_actions',''),(127259,40374,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(127260,40374,'blocks_1_row_content',''),(127261,40374,'_blocks_1_row_content','field_64888cb0e26df'),(127262,40374,'blocks_1_steps_0_icon','progression.svg'),(127263,40374,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(127264,40374,'blocks_1_steps_0_title','Earning potential'),(127265,40374,'_blocks_1_steps_0_title','field_64888d94e26e7'),(127266,40374,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(127267,40374,'_blocks_1_steps_0_text','field_64888d99e26e8'),(127268,40374,'blocks_1_steps_1_icon','support.svg'),(127269,40374,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(127270,40374,'blocks_1_steps_1_title','Lifetime Learning Promise'),(127271,40374,'_blocks_1_steps_1_title','field_64888d94e26e7'),(127272,40374,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(127273,40374,'_blocks_1_steps_1_text','field_64888d99e26e8'),(127274,40374,'blocks_1_steps_2_icon','qualification.svg'),(127275,40374,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(127276,40374,'blocks_1_steps_2_title','Evidence based hands on learning'),(127277,40374,'_blocks_1_steps_2_title','field_64888d94e26e7'),(127278,40374,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(127279,40374,'_blocks_1_steps_2_text','field_64888d99e26e8'),(127280,40374,'blocks_1_steps_3_icon','leaders.svg'),(127281,40374,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(127282,40374,'blocks_1_steps_3_title','Stand out from the crowd'),(127283,40374,'_blocks_1_steps_3_title','field_64888d94e26e7'),(127284,40374,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(127285,40374,'_blocks_1_steps_3_text','field_64888d99e26e8'),(127286,40374,'blocks_1_steps','4'),(127287,40374,'_blocks_1_steps','field_64888d44e26e5'),(127288,40374,'blocks_2_acfe_flexible_toggle',''),(127289,40374,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(127290,40374,'blocks_2_acfe_flexible_layout_title','Video'),(127291,40374,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(127292,40374,'blocks_2_size','large'),(127293,40374,'_blocks_2_size','field_6487038f297c1'),(127294,40374,'blocks_2_row_content_title',''),(127295,40374,'_blocks_2_row_content_title','field_64870132a865d'),(127296,40374,'blocks_2_row_content_heading',''),(127297,40374,'_blocks_2_row_content_heading','field_64870142a865e'),(127298,40374,'blocks_2_row_content_text',''),(127299,40374,'_blocks_2_row_content_text','field_64870148a865f'),(127300,40374,'blocks_2_row_content',''),(127301,40374,'_blocks_2_row_content','field_6487008ba865c'),(127302,40374,'blocks_2_video_src',''),(127303,40374,'_blocks_2_video_src','field_6193c4a98ec07'),(127304,40374,'blocks_2_video_thumbnail',''),(127305,40374,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(127306,40374,'blocks_3_acfe_flexible_toggle',''),(127307,40374,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(127308,40374,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(127309,40374,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(127310,40374,'blocks_3_options_theme','#ffffff'),(127311,40374,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(127312,40374,'blocks_3_options_reverse','0'),(127313,40374,'_blocks_3_options_reverse','field_61768049bb8ac'),(127314,40374,'blocks_3_options',''),(127315,40374,'_blocks_3_options','field_617682517c334'),(127316,40374,'blocks_3_split_5050_image','39252'),(127317,40374,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(127318,40374,'blocks_3_split_5050_video',''),(127319,40374,'_blocks_3_split_5050_video','field_6239f3160848a'),(127320,40374,'blocks_3_split_5050_content_title',''),(127321,40374,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(127322,40374,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a sports coach'),(127323,40374,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(127324,40374,'blocks_3_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from, injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(127325,40374,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(127326,40374,'blocks_3_split_5050_content_actions',''),(127327,40374,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(127328,40374,'blocks_3_split_5050_content',''),(127329,40374,'_blocks_3_split_5050_content','field_61767afceb8ba'),(127330,40374,'blocks_4_acfe_flexible_toggle',''),(127331,40374,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(127332,40374,'blocks_4_acfe_flexible_layout_title','Form'),(127333,40374,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(127334,40374,'blocks_4_row_content_format','standard'),(127335,40374,'_blocks_4_row_content_format','field_6481ead962881'),(127336,40374,'blocks_4_row_content_title',''),(127337,40374,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(127338,40374,'blocks_4_row_content_heading','Enquire Today'),(127339,40374,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(127340,40374,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(127341,40374,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(127342,40374,'blocks_4_row_content_actions',''),(127343,40374,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(127344,40374,'blocks_4_row_content',''),(127345,40374,'_blocks_4_row_content','field_61a0f5f5b3db0'),(127346,40374,'blocks_4_row_form',''),(127347,40374,'_blocks_4_row_form','field_61a4ff2c0b08e'),(127348,40374,'blocks_4_row_form_button_label',''),(127349,40374,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(127350,40374,'blocks_5_acfe_flexible_toggle',''),(127351,40374,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(127352,40374,'blocks_5_acfe_flexible_layout_title','Tabs'),(127353,40374,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(127354,40374,'blocks_5_options_theme','#ffffff'),(127355,40374,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(127356,40374,'blocks_5_options',''),(127357,40374,'_blocks_5_options','field_6177cfcd8140f'),(127358,40374,'blocks_5_tabs_0_tab_label','What will I learn ?'),(127359,40374,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(127360,40374,'blocks_5_tabs_0_tab_content_title',''),(127361,40374,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(127362,40374,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(127363,40374,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(127364,40374,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(127365,40374,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(127366,40374,'blocks_5_tabs_0_tab_content_actions',''),(127367,40374,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(127368,40374,'blocks_5_tabs_0_tab_content',''),(127369,40374,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(127370,40374,'blocks_5_tabs_0_tab_image','39076'),(127371,40374,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(127372,40374,'blocks_5_tabs_1_tab_label','What do I need ?'),(127373,40374,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(127374,40374,'blocks_5_tabs_1_tab_content_title',''),(127375,40374,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(127376,40374,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(127377,40374,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(127378,40374,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(127379,40374,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(127380,40374,'blocks_5_tabs_1_tab_content_actions',''),(127381,40374,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(127382,40374,'blocks_5_tabs_1_tab_content',''),(127383,40374,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(127384,40374,'blocks_5_tabs_1_tab_image','39223'),(127385,40374,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(127386,40374,'blocks_5_tabs_2_tab_label','Where can I learn ?'),(127387,40374,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(127388,40374,'blocks_5_tabs_2_tab_content_title',''),(127389,40374,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(127390,40374,'blocks_5_tabs_2_tab_content_heading','Locations'),(127391,40374,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(127392,40374,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(127393,40374,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(127394,40374,'blocks_5_tabs_2_tab_content_actions',''),(127395,40374,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(127396,40374,'blocks_5_tabs_2_tab_content',''),(127397,40374,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(127398,40374,'blocks_5_tabs_2_tab_image','39224'),(127399,40374,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(127400,40374,'blocks_5_tabs','3'),(127401,40374,'_blocks_5_tabs','field_6177cff281419'),(127402,40374,'blocks_6_acfe_flexible_toggle',''),(127403,40374,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(127404,40374,'blocks_6_acfe_flexible_layout_title','Text Block'),(127405,40374,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(127406,40374,'blocks_6_options_theme','#b61234'),(127407,40374,'_blocks_6_options_theme','field_6176830e2ad17'),(127408,40374,'blocks_6_options',''),(127409,40374,'_blocks_6_options','field_6176830e2ad16'),(127410,40374,'blocks_6_text_block_heading','Fees & Funding Options'),(127411,40374,'_blocks_6_text_block_heading','field_617669d413097'),(127412,40374,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(127413,40374,'_blocks_6_text_block_content','field_617669ec13098'),(127414,40374,'blocks_7_acfe_flexible_toggle',''),(127415,40374,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(127416,40374,'blocks_7_acfe_flexible_layout_title','Icons'),(127417,40374,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(127418,40374,'blocks_7_options_theme','#b61234'),(127419,40374,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(127420,40374,'blocks_7_options_format','row'),(127421,40374,'_blocks_7_options_format','field_64bfde9a90690'),(127422,40374,'blocks_7_options',''),(127423,40374,'_blocks_7_options','field_64bfdd9b90684'),(127424,40374,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(127425,40374,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(127426,40374,'blocks_7_icon_row_items_0_label','Pay in Full'),(127427,40374,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(127428,40374,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(127429,40374,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(127430,40374,'blocks_7_icon_row_items_1_icon','finance.svg'),(127431,40374,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(127432,40374,'blocks_7_icon_row_items_1_label','0% finance'),(127433,40374,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(127434,40374,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(127435,40374,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(127436,40374,'blocks_7_icon_row_items_2_icon','deposit.svg'),(127437,40374,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(127438,40374,'blocks_7_icon_row_items_2_label','Deposit & balance'),(127439,40374,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(127440,40374,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(127441,40374,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(127442,40374,'blocks_7_icon_row_items','3'),(127443,40374,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(127444,40374,'blocks_8_acfe_flexible_toggle',''),(127445,40374,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(127446,40374,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(127447,40374,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(127448,40374,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(127449,40374,'_blocks_8_content','field_6193c9b5eac84'),(127450,40374,'blocks_9_acfe_flexible_toggle',''),(127451,40374,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(127452,40374,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(127453,40374,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(127454,40374,'blocks_9_testimonial_slider_content_title',''),(127455,40374,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(127456,40374,'blocks_9_testimonial_slider_content_heading','Testimonials'),(127457,40374,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(127458,40374,'blocks_9_testimonial_slider_content_text',''),(127459,40374,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(127460,40374,'blocks_9_testimonial_slider_content_actions',''),(127461,40374,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(127462,40374,'blocks_9_testimonial_slider_content',''),(127463,40374,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(127464,40374,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(127465,40374,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(127466,40374,'blocks_9_testimonial_slider_ambassador_bool','0'),(127467,40374,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(127468,40374,'blocks_10_acfe_flexible_toggle',''),(127469,40374,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(127470,40374,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(127471,40374,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(127472,40374,'blocks_10_options_theme','#ffffff'),(127473,40374,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(127474,40374,'blocks_10_options_state','0'),(127475,40374,'_blocks_10_options_state','field_6239fcb7508c5'),(127476,40374,'blocks_10_options',''),(127477,40374,'_blocks_10_options','field_6177e2991ac44'),(127478,40374,'blocks_10_content_title',''),(127479,40374,'_blocks_10_content_title','field_64d237e8bb1e2'),(127480,40374,'blocks_10_content_heading','Frequently asked questions '),(127481,40374,'_blocks_10_content_heading','field_64d237e8bb1e3'),(127482,40374,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(127483,40374,'_blocks_10_content_text','field_64d237e8bb1e4'),(127484,40374,'blocks_10_content_actions',''),(127485,40374,'_blocks_10_content_actions','field_64d237e8bb1e5'),(127486,40374,'blocks_10_content_align','left'),(127487,40374,'_blocks_10_content_align','field_64d2443e6b6aa'),(127488,40374,'blocks_10_content',''),(127489,40374,'_blocks_10_content','field_64d237e8bb1e1'),(127490,40374,'blocks_10_accordion_content','faqs'),(127491,40374,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(127492,40374,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(127493,40374,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(127494,40374,'blocks_10_actions',''),(127495,40374,'_blocks_10_actions','field_61a746a817f7a'),(127498,40375,'hide_hero','0'),(127499,40375,'_hide_hero','field_66a2380fcda39'),(127500,40375,'hero_title',''),(127501,40375,'_hero_title','field_617571fe285e8'),(127502,40375,'hero_text',''),(127503,40375,'_hero_text','field_6175723c285e9'),(127504,40375,'hero_actions',''),(127505,40375,'_hero_actions','field_61757270285ea'),(127506,40375,'hero_style','default'),(127507,40375,'_hero_style','field_62051d9dc5324'),(127508,40375,'hero_image_pos_x','right'),(127509,40375,'_hero_image_pos_x','field_62ec3d05390bb'),(127510,40375,'hero_image_pos_y','top'),(127511,40375,'_hero_image_pos_y','field_62ec3d05390bc'),(127512,40375,'hero_image_pos',''),(127513,40375,'_hero_image_pos','field_62ec3d05390ba'),(127514,40375,'fft_hide_from_listings','0'),(127515,40375,'_fft_hide_from_listings','field_61f1320446ab2'),(127516,40375,'post_format',''),(127517,40375,'_post_format','field_61756bfb51898'),(127518,40375,'post_author',''),(127519,40375,'_post_author','field_62ec389d22113'),(127520,40375,'post_reviewer',''),(127521,40375,'_post_reviewer','field_627140a2a9800'),(127522,40375,'post_table_of_contents','0'),(127523,40375,'_post_table_of_contents','field_65c503bc846a6'),(127524,40375,'_thumbnail_id',''),(127525,40375,'__thumbnail_id','field_617570855ddaf'),(127526,40376,'hide_hero','0'),(127527,40376,'_hide_hero','field_66a2380fcda39'),(127528,40376,'hero_title','Biomechanics and S&C coaches'),(127529,40376,'_hero_title','field_617571fe285e8'),(127530,40376,'hero_text','Gain a deeper understanding of anatomy and client movement through intrinsic biomechanics.'),(127531,40376,'_hero_text','field_6175723c285e9'),(127532,40376,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(127533,40376,'_hero_actions_0_button','field_61757281285eb'),(127534,40376,'hero_actions','1'),(127535,40376,'_hero_actions','field_61757270285ea'),(127536,40376,'hero_style','default'),(127537,40376,'_hero_style','field_62051d9dc5324'),(127538,40376,'_thumbnail_id','39256'),(127539,40376,'__thumbnail_id','field_617570855ddaf'),(127540,40376,'hero_image_pos_x','right'),(127541,40376,'_hero_image_pos_x','field_62ec3d05390bb'),(127542,40376,'hero_image_pos_y','top'),(127543,40376,'_hero_image_pos_y','field_62ec3d05390bc'),(127544,40376,'hero_image_pos',''),(127545,40376,'_hero_image_pos','field_62ec3d05390ba'),(127546,40376,'fft_hide_from_listings','0'),(127547,40376,'_fft_hide_from_listings','field_61f1320446ab2'),(127548,40376,'fft_page_format','default'),(127549,40376,'_fft_page_format','field_61ae213f1f218'),(127550,40376,'fft_hide_nav','0'),(127551,40376,'_fft_hide_nav','field_635bd5e43527c'),(127552,40376,'fft_hide_header_call_to_action','0'),(127553,40376,'_fft_hide_header_call_to_action','field_635bd6723527d'),(127554,40376,'fft_page_sitemap','0'),(127555,40376,'_fft_page_sitemap','field_61af9b34e8181'),(127556,40376,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(127557,40376,'_blocks','field_6176696113096'),(127558,40376,'blocks_0_acfe_flexible_toggle',''),(127559,40376,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(127560,40376,'blocks_0_acfe_flexible_layout_title','Steps'),(127561,40376,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(127562,40376,'blocks_0_row_content_title',''),(127563,40376,'_blocks_0_row_content_title','field_64888cd1e26e0'),(127564,40376,'blocks_0_row_content_heading','Benefits of training with us'),(127565,40376,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(127566,40376,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(127567,40376,'_blocks_0_row_content_text','field_64888ce2e26e2'),(127568,40376,'blocks_0_row_content_actions',''),(127569,40376,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(127570,40376,'blocks_0_row_content',''),(127571,40376,'_blocks_0_row_content','field_64888cb0e26df'),(127572,40376,'blocks_0_steps_0_icon','progression.svg'),(127573,40376,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(127574,40376,'blocks_0_steps_0_title','Earning potential'),(127575,40376,'_blocks_0_steps_0_title','field_64888d94e26e7'),(127576,40376,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(127577,40376,'_blocks_0_steps_0_text','field_64888d99e26e8'),(127578,40376,'blocks_0_steps_1_icon','support.svg'),(127579,40376,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(127580,40376,'blocks_0_steps_1_title','Lifetime Learning Promise'),(127581,40376,'_blocks_0_steps_1_title','field_64888d94e26e7'),(127582,40376,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(127583,40376,'_blocks_0_steps_1_text','field_64888d99e26e8'),(127584,40376,'blocks_0_steps_2_icon','qualification.svg'),(127585,40376,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(127586,40376,'blocks_0_steps_2_title','Evidence based hands on learning'),(127587,40376,'_blocks_0_steps_2_title','field_64888d94e26e7'),(127588,40376,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(127589,40376,'_blocks_0_steps_2_text','field_64888d99e26e8'),(127590,40376,'blocks_0_steps_3_icon','leaders.svg'),(127591,40376,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(127592,40376,'blocks_0_steps_3_title','Stand out from the crowd'),(127593,40376,'_blocks_0_steps_3_title','field_64888d94e26e7'),(127594,40376,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(127595,40376,'_blocks_0_steps_3_text','field_64888d99e26e8'),(127596,40376,'blocks_0_steps','4'),(127597,40376,'_blocks_0_steps','field_64888d44e26e5'),(127598,40376,'blocks_1_acfe_flexible_toggle',''),(127599,40376,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(127600,40376,'blocks_1_acfe_flexible_layout_title','Video'),(127601,40376,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(127602,40376,'blocks_1_size','large'),(127603,40376,'_blocks_1_size','field_6487038f297c1'),(127604,40376,'blocks_1_row_content_title',''),(127605,40376,'_blocks_1_row_content_title','field_64870132a865d'),(127606,40376,'blocks_1_row_content_heading',''),(127607,40376,'_blocks_1_row_content_heading','field_64870142a865e'),(127608,40376,'blocks_1_row_content_text',''),(127609,40376,'_blocks_1_row_content_text','field_64870148a865f'),(127610,40376,'blocks_1_row_content',''),(127611,40376,'_blocks_1_row_content','field_6487008ba865c'),(127612,40376,'blocks_1_video_src',''),(127613,40376,'_blocks_1_video_src','field_6193c4a98ec07'),(127614,40376,'blocks_1_video_thumbnail',''),(127615,40376,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(127616,40376,'blocks_2_acfe_flexible_toggle',''),(127617,40376,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(127618,40376,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(127619,40376,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(127620,40376,'blocks_2_options_theme','#ffffff'),(127621,40376,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(127622,40376,'blocks_2_options_reverse','0'),(127623,40376,'_blocks_2_options_reverse','field_61768049bb8ac'),(127624,40376,'blocks_2_options',''),(127625,40376,'_blocks_2_options','field_617682517c334'),(127626,40376,'blocks_2_split_5050_image','39257'),(127627,40376,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(127628,40376,'blocks_2_split_5050_video',''),(127629,40376,'_blocks_2_split_5050_video','field_6239f3160848a'),(127630,40376,'blocks_2_split_5050_content_title',''),(127631,40376,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(127632,40376,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(127633,40376,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(127634,40376,'blocks_2_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(127635,40376,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(127636,40376,'blocks_2_split_5050_content_actions',''),(127637,40376,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(127638,40376,'blocks_2_split_5050_content',''),(127639,40376,'_blocks_2_split_5050_content','field_61767afceb8ba'),(127640,40376,'blocks_3_acfe_flexible_toggle',''),(127641,40376,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(127642,40376,'blocks_3_acfe_flexible_layout_title','Form'),(127643,40376,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(127644,40376,'blocks_3_row_content_format','standard'),(127645,40376,'_blocks_3_row_content_format','field_6481ead962881'),(127646,40376,'blocks_3_row_content_title',''),(127647,40376,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(127648,40376,'blocks_3_row_content_heading','Enquire Today'),(127649,40376,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(127650,40376,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(127651,40376,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(127652,40376,'blocks_3_row_content_actions',''),(127653,40376,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(127654,40376,'blocks_3_row_content',''),(127655,40376,'_blocks_3_row_content','field_61a0f5f5b3db0'),(127656,40376,'blocks_3_row_form',''),(127657,40376,'_blocks_3_row_form','field_61a4ff2c0b08e'),(127658,40376,'blocks_3_row_form_button_label',''),(127659,40376,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(127660,40376,'blocks_4_acfe_flexible_toggle',''),(127661,40376,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(127662,40376,'blocks_4_acfe_flexible_layout_title','Tabs'),(127663,40376,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(127664,40376,'blocks_4_options_theme','#ffffff'),(127665,40376,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(127666,40376,'blocks_4_options',''),(127667,40376,'_blocks_4_options','field_6177cfcd8140f'),(127668,40376,'blocks_4_tabs_0_tab_label','What will I learn ?'),(127669,40376,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(127670,40376,'blocks_4_tabs_0_tab_content_title',''),(127671,40376,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(127672,40376,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(127673,40376,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(127674,40376,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(127675,40376,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(127676,40376,'blocks_4_tabs_0_tab_content_actions',''),(127677,40376,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(127678,40376,'blocks_4_tabs_0_tab_content',''),(127679,40376,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(127680,40376,'blocks_4_tabs_0_tab_image','39076'),(127681,40376,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(127682,40376,'blocks_4_tabs_1_tab_label','What do I need ?'),(127683,40376,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(127684,40376,'blocks_4_tabs_1_tab_content_title',''),(127685,40376,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(127686,40376,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(127687,40376,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(127688,40376,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(127689,40376,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(127690,40376,'blocks_4_tabs_1_tab_content_actions',''),(127691,40376,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(127692,40376,'blocks_4_tabs_1_tab_content',''),(127693,40376,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(127694,40376,'blocks_4_tabs_1_tab_image','39223'),(127695,40376,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(127696,40376,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(127697,40376,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(127698,40376,'blocks_4_tabs_2_tab_content_title',''),(127699,40376,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(127700,40376,'blocks_4_tabs_2_tab_content_heading','Locations'),(127701,40376,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(127702,40376,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(127703,40376,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(127704,40376,'blocks_4_tabs_2_tab_content_actions',''),(127705,40376,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(127706,40376,'blocks_4_tabs_2_tab_content',''),(127707,40376,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(127708,40376,'blocks_4_tabs_2_tab_image','39224'),(127709,40376,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(127710,40376,'blocks_4_tabs','3'),(127711,40376,'_blocks_4_tabs','field_6177cff281419'),(127712,40376,'blocks_5_acfe_flexible_toggle',''),(127713,40376,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(127714,40376,'blocks_5_acfe_flexible_layout_title','Text Block'),(127715,40376,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(127716,40376,'blocks_5_options_theme','#b61234'),(127717,40376,'_blocks_5_options_theme','field_6176830e2ad17'),(127718,40376,'blocks_5_options',''),(127719,40376,'_blocks_5_options','field_6176830e2ad16'),(127720,40376,'blocks_5_text_block_heading','Fees & Funding Options'),(127721,40376,'_blocks_5_text_block_heading','field_617669d413097'),(127722,40376,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(127723,40376,'_blocks_5_text_block_content','field_617669ec13098'),(127724,40376,'blocks_6_acfe_flexible_toggle',''),(127725,40376,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(127726,40376,'blocks_6_acfe_flexible_layout_title','Icons'),(127727,40376,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(127728,40376,'blocks_6_options_theme','#b61234'),(127729,40376,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(127730,40376,'blocks_6_options_format','row'),(127731,40376,'_blocks_6_options_format','field_64bfde9a90690'),(127732,40376,'blocks_6_options',''),(127733,40376,'_blocks_6_options','field_64bfdd9b90684'),(127734,40376,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(127735,40376,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(127736,40376,'blocks_6_icon_row_items_0_label','Pay in Full'),(127737,40376,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(127738,40376,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(127739,40376,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(127740,40376,'blocks_6_icon_row_items_1_icon','finance.svg'),(127741,40376,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(127742,40376,'blocks_6_icon_row_items_1_label','0% finance'),(127743,40376,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(127744,40376,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(127745,40376,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(127746,40376,'blocks_6_icon_row_items_2_icon','deposit.svg'),(127747,40376,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(127748,40376,'blocks_6_icon_row_items_2_label','Deposit & balance'),(127749,40376,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(127750,40376,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(127751,40376,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(127752,40376,'blocks_6_icon_row_items','3'),(127753,40376,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(127754,40376,'blocks_7_acfe_flexible_toggle',''),(127755,40376,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(127756,40376,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(127757,40376,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(127758,40376,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(127759,40376,'_blocks_7_content','field_6193c9b5eac84'),(127760,40376,'blocks_8_acfe_flexible_toggle',''),(127761,40376,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(127762,40376,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(127763,40376,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(127764,40376,'blocks_8_testimonial_slider_content_title',''),(127765,40376,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(127766,40376,'blocks_8_testimonial_slider_content_heading','Testimonials'),(127767,40376,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(127768,40376,'blocks_8_testimonial_slider_content_text',''),(127769,40376,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(127770,40376,'blocks_8_testimonial_slider_content_actions',''),(127771,40376,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(127772,40376,'blocks_8_testimonial_slider_content',''),(127773,40376,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(127774,40376,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(127775,40376,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(127776,40376,'blocks_8_testimonial_slider_ambassador_bool','0'),(127777,40376,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(127778,40376,'blocks_9_acfe_flexible_toggle',''),(127779,40376,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(127780,40376,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(127781,40376,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(127782,40376,'blocks_9_options_theme','#ffffff'),(127783,40376,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(127784,40376,'blocks_9_options_state','0'),(127785,40376,'_blocks_9_options_state','field_6239fcb7508c5'),(127786,40376,'blocks_9_options',''),(127787,40376,'_blocks_9_options','field_6177e2991ac44'),(127788,40376,'blocks_9_content_title',''),(127789,40376,'_blocks_9_content_title','field_64d237e8bb1e2'),(127790,40376,'blocks_9_content_heading','Frequently asked questions '),(127791,40376,'_blocks_9_content_heading','field_64d237e8bb1e3'),(127792,40376,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(127793,40376,'_blocks_9_content_text','field_64d237e8bb1e4'),(127794,40376,'blocks_9_content_actions',''),(127795,40376,'_blocks_9_content_actions','field_64d237e8bb1e5'),(127796,40376,'blocks_9_content_align','left'),(127797,40376,'_blocks_9_content_align','field_64d2443e6b6aa'),(127798,40376,'blocks_9_content',''),(127799,40376,'_blocks_9_content','field_64d237e8bb1e1'),(127800,40376,'blocks_9_accordion_content','faqs'),(127801,40376,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(127802,40376,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(127803,40376,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(127804,40376,'blocks_9_actions',''),(127805,40376,'_blocks_9_actions','field_61a746a817f7a'),(127806,39254,'blocks_0_acfe_flexible_toggle',''),(127807,39254,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(127808,39254,'blocks_0_acfe_flexible_layout_title','Template'),(127809,39254,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(127810,39254,'blocks_0_template','39087'),(127811,39254,'_blocks_0_template','field_617bdd570fe01'),(128014,39254,'blocks_9_acfe_flexible_toggle',''),(128015,39254,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(128016,39254,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(128017,39254,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(128018,39254,'blocks_9_testimonial_slider_content_title',''),(128019,39254,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(128020,39254,'blocks_9_testimonial_slider_content_heading','Testimonials'),(128021,39254,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(128022,39254,'blocks_9_testimonial_slider_content_text',''),(128023,39254,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(128024,39254,'blocks_9_testimonial_slider_content_actions',''),(128025,39254,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(128026,39254,'blocks_9_testimonial_slider_content',''),(128027,39254,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(128028,39254,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(128029,39254,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(128030,39254,'blocks_9_testimonial_slider_ambassador_bool','0'),(128031,39254,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(128032,39254,'blocks_10_acfe_flexible_toggle',''),(128033,39254,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(128034,39254,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(128035,39254,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(128036,39254,'blocks_10_options_theme','#ffffff'),(128037,39254,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(128038,39254,'blocks_10_options_state','0'),(128039,39254,'_blocks_10_options_state','field_6239fcb7508c5'),(128040,39254,'blocks_10_options',''),(128041,39254,'_blocks_10_options','field_6177e2991ac44'),(128042,39254,'blocks_10_content_title',''),(128043,39254,'_blocks_10_content_title','field_64d237e8bb1e2'),(128044,39254,'blocks_10_content_heading','Frequently asked questions '),(128045,39254,'_blocks_10_content_heading','field_64d237e8bb1e3'),(128046,39254,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(128047,39254,'_blocks_10_content_text','field_64d237e8bb1e4'),(128048,39254,'blocks_10_content_actions',''),(128049,39254,'_blocks_10_content_actions','field_64d237e8bb1e5'),(128050,39254,'blocks_10_content_align','left'),(128051,39254,'_blocks_10_content_align','field_64d2443e6b6aa'),(128052,39254,'blocks_10_content',''),(128053,39254,'_blocks_10_content','field_64d237e8bb1e1'),(128054,39254,'blocks_10_accordion_content','faqs'),(128055,39254,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(128056,39254,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(128057,39254,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(128058,39254,'blocks_10_actions',''),(128059,39254,'_blocks_10_actions','field_61a746a817f7a'),(128060,40377,'hide_hero','0'),(128061,40377,'_hide_hero','field_66a2380fcda39'),(128062,40377,'hero_title','Biomechanics and S&C coaches'),(128063,40377,'_hero_title','field_617571fe285e8'),(128064,40377,'hero_text','Gain a deeper understanding of anatomy and client movement through intrinsic biomechanics.'),(128065,40377,'_hero_text','field_6175723c285e9'),(128066,40377,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(128067,40377,'_hero_actions_0_button','field_61757281285eb'),(128068,40377,'hero_actions','1'),(128069,40377,'_hero_actions','field_61757270285ea'),(128070,40377,'hero_style','default'),(128071,40377,'_hero_style','field_62051d9dc5324'),(128072,40377,'_thumbnail_id','39256'),(128073,40377,'__thumbnail_id','field_617570855ddaf'),(128074,40377,'hero_image_pos_x','right'),(128075,40377,'_hero_image_pos_x','field_62ec3d05390bb'),(128076,40377,'hero_image_pos_y','top'),(128077,40377,'_hero_image_pos_y','field_62ec3d05390bc'),(128078,40377,'hero_image_pos',''),(128079,40377,'_hero_image_pos','field_62ec3d05390ba'),(128080,40377,'fft_hide_from_listings','0'),(128081,40377,'_fft_hide_from_listings','field_61f1320446ab2'),(128082,40377,'fft_page_format','default'),(128083,40377,'_fft_page_format','field_61ae213f1f218'),(128084,40377,'fft_hide_nav','0'),(128085,40377,'_fft_hide_nav','field_635bd5e43527c'),(128086,40377,'fft_hide_header_call_to_action','0'),(128087,40377,'_fft_hide_header_call_to_action','field_635bd6723527d'),(128088,40377,'fft_page_sitemap','0'),(128089,40377,'_fft_page_sitemap','field_61af9b34e8181'),(128090,40377,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(128091,40377,'_blocks','field_6176696113096'),(128092,40377,'blocks_0_acfe_flexible_toggle',''),(128093,40377,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(128094,40377,'blocks_0_acfe_flexible_layout_title','Template'),(128095,40377,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(128096,40377,'blocks_0_template','39087'),(128097,40377,'_blocks_0_template','field_617bdd570fe01'),(128098,40377,'blocks_1_acfe_flexible_toggle',''),(128099,40377,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(128100,40377,'blocks_1_acfe_flexible_layout_title','Steps'),(128101,40377,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(128102,40377,'blocks_1_row_content_title',''),(128103,40377,'_blocks_1_row_content_title','field_64888cd1e26e0'),(128104,40377,'blocks_1_row_content_heading','Benefits of training with us'),(128105,40377,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(128106,40377,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(128107,40377,'_blocks_1_row_content_text','field_64888ce2e26e2'),(128108,40377,'blocks_1_row_content_actions',''),(128109,40377,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(128110,40377,'blocks_1_row_content',''),(128111,40377,'_blocks_1_row_content','field_64888cb0e26df'),(128112,40377,'blocks_1_steps_0_icon','progression.svg'),(128113,40377,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(128114,40377,'blocks_1_steps_0_title','Earning potential'),(128115,40377,'_blocks_1_steps_0_title','field_64888d94e26e7'),(128116,40377,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(128117,40377,'_blocks_1_steps_0_text','field_64888d99e26e8'),(128118,40377,'blocks_1_steps_1_icon','support.svg'),(128119,40377,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(128120,40377,'blocks_1_steps_1_title','Lifetime Learning Promise'),(128121,40377,'_blocks_1_steps_1_title','field_64888d94e26e7'),(128122,40377,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(128123,40377,'_blocks_1_steps_1_text','field_64888d99e26e8'),(128124,40377,'blocks_1_steps_2_icon','qualification.svg'),(128125,40377,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(128126,40377,'blocks_1_steps_2_title','Evidence based hands on learning'),(128127,40377,'_blocks_1_steps_2_title','field_64888d94e26e7'),(128128,40377,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(128129,40377,'_blocks_1_steps_2_text','field_64888d99e26e8'),(128130,40377,'blocks_1_steps_3_icon','leaders.svg'),(128131,40377,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(128132,40377,'blocks_1_steps_3_title','Stand out from the crowd'),(128133,40377,'_blocks_1_steps_3_title','field_64888d94e26e7'),(128134,40377,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(128135,40377,'_blocks_1_steps_3_text','field_64888d99e26e8'),(128136,40377,'blocks_1_steps','4'),(128137,40377,'_blocks_1_steps','field_64888d44e26e5'),(128138,40377,'blocks_2_acfe_flexible_toggle',''),(128139,40377,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(128140,40377,'blocks_2_acfe_flexible_layout_title','Video'),(128141,40377,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(128142,40377,'blocks_2_size','large'),(128143,40377,'_blocks_2_size','field_6487038f297c1'),(128144,40377,'blocks_2_row_content_title',''),(128145,40377,'_blocks_2_row_content_title','field_64870132a865d'),(128146,40377,'blocks_2_row_content_heading',''),(128147,40377,'_blocks_2_row_content_heading','field_64870142a865e'),(128148,40377,'blocks_2_row_content_text',''),(128149,40377,'_blocks_2_row_content_text','field_64870148a865f'),(128150,40377,'blocks_2_row_content',''),(128151,40377,'_blocks_2_row_content','field_6487008ba865c'),(128152,40377,'blocks_2_video_src',''),(128153,40377,'_blocks_2_video_src','field_6193c4a98ec07'),(128154,40377,'blocks_2_video_thumbnail',''),(128155,40377,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(128156,40377,'blocks_3_acfe_flexible_toggle',''),(128157,40377,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(128158,40377,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(128159,40377,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(128160,40377,'blocks_3_options_theme','#ffffff'),(128161,40377,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(128162,40377,'blocks_3_options_reverse','0'),(128163,40377,'_blocks_3_options_reverse','field_61768049bb8ac'),(128164,40377,'blocks_3_options',''),(128165,40377,'_blocks_3_options','field_617682517c334'),(128166,40377,'blocks_3_split_5050_image','39257'),(128167,40377,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(128168,40377,'blocks_3_split_5050_video',''),(128169,40377,'_blocks_3_split_5050_video','field_6239f3160848a'),(128170,40377,'blocks_3_split_5050_content_title',''),(128171,40377,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(128172,40377,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(128173,40377,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(128174,40377,'blocks_3_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(128175,40377,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(128176,40377,'blocks_3_split_5050_content_actions',''),(128177,40377,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(128178,40377,'blocks_3_split_5050_content',''),(128179,40377,'_blocks_3_split_5050_content','field_61767afceb8ba'),(128180,40377,'blocks_4_acfe_flexible_toggle',''),(128181,40377,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(128182,40377,'blocks_4_acfe_flexible_layout_title','Form'),(128183,40377,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(128184,40377,'blocks_4_row_content_format','standard'),(128185,40377,'_blocks_4_row_content_format','field_6481ead962881'),(128186,40377,'blocks_4_row_content_title',''),(128187,40377,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(128188,40377,'blocks_4_row_content_heading','Enquire Today'),(128189,40377,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(128190,40377,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(128191,40377,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(128192,40377,'blocks_4_row_content_actions',''),(128193,40377,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(128194,40377,'blocks_4_row_content',''),(128195,40377,'_blocks_4_row_content','field_61a0f5f5b3db0'),(128196,40377,'blocks_4_row_form',''),(128197,40377,'_blocks_4_row_form','field_61a4ff2c0b08e'),(128198,40377,'blocks_4_row_form_button_label',''),(128199,40377,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(128200,40377,'blocks_5_acfe_flexible_toggle',''),(128201,40377,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(128202,40377,'blocks_5_acfe_flexible_layout_title','Tabs'),(128203,40377,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(128204,40377,'blocks_5_options_theme','#ffffff'),(128205,40377,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(128206,40377,'blocks_5_options',''),(128207,40377,'_blocks_5_options','field_6177cfcd8140f'),(128208,40377,'blocks_5_tabs_0_tab_label','What will I learn ?'),(128209,40377,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(128210,40377,'blocks_5_tabs_0_tab_content_title',''),(128211,40377,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(128212,40377,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(128213,40377,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(128214,40377,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(128215,40377,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(128216,40377,'blocks_5_tabs_0_tab_content_actions',''),(128217,40377,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(128218,40377,'blocks_5_tabs_0_tab_content',''),(128219,40377,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(128220,40377,'blocks_5_tabs_0_tab_image','39076'),(128221,40377,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(128222,40377,'blocks_5_tabs_1_tab_label','What do I need ?'),(128223,40377,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(128224,40377,'blocks_5_tabs_1_tab_content_title',''),(128225,40377,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(128226,40377,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(128227,40377,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(128228,40377,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(128229,40377,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(128230,40377,'blocks_5_tabs_1_tab_content_actions',''),(128231,40377,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(128232,40377,'blocks_5_tabs_1_tab_content',''),(128233,40377,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(128234,40377,'blocks_5_tabs_1_tab_image','39223'),(128235,40377,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(128236,40377,'blocks_5_tabs_2_tab_label','Where can I learn ?'),(128237,40377,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(128238,40377,'blocks_5_tabs_2_tab_content_title',''),(128239,40377,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(128240,40377,'blocks_5_tabs_2_tab_content_heading','Locations'),(128241,40377,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(128242,40377,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(128243,40377,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(128244,40377,'blocks_5_tabs_2_tab_content_actions',''),(128245,40377,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(128246,40377,'blocks_5_tabs_2_tab_content',''),(128247,40377,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(128248,40377,'blocks_5_tabs_2_tab_image','39224'),(128249,40377,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(128250,40377,'blocks_5_tabs','3'),(128251,40377,'_blocks_5_tabs','field_6177cff281419'),(128252,40377,'blocks_6_acfe_flexible_toggle',''),(128253,40377,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(128254,40377,'blocks_6_acfe_flexible_layout_title','Text Block'),(128255,40377,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(128256,40377,'blocks_6_options_theme','#b61234'),(128257,40377,'_blocks_6_options_theme','field_6176830e2ad17'),(128258,40377,'blocks_6_options',''),(128259,40377,'_blocks_6_options','field_6176830e2ad16'),(128260,40377,'blocks_6_text_block_heading','Fees & Funding Options'),(128261,40377,'_blocks_6_text_block_heading','field_617669d413097'),(128262,40377,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(128263,40377,'_blocks_6_text_block_content','field_617669ec13098'),(128264,40377,'blocks_7_acfe_flexible_toggle',''),(128265,40377,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(128266,40377,'blocks_7_acfe_flexible_layout_title','Icons'),(128267,40377,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(128268,40377,'blocks_7_options_theme','#b61234'),(128269,40377,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(128270,40377,'blocks_7_options_format','row'),(128271,40377,'_blocks_7_options_format','field_64bfde9a90690'),(128272,40377,'blocks_7_options',''),(128273,40377,'_blocks_7_options','field_64bfdd9b90684'),(128274,40377,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(128275,40377,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(128276,40377,'blocks_7_icon_row_items_0_label','Pay in Full'),(128277,40377,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(128278,40377,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(128279,40377,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(128280,40377,'blocks_7_icon_row_items_1_icon','finance.svg'),(128281,40377,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(128282,40377,'blocks_7_icon_row_items_1_label','0% finance'),(128283,40377,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(128284,40377,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(128285,40377,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(128286,40377,'blocks_7_icon_row_items_2_icon','deposit.svg'),(128287,40377,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(128288,40377,'blocks_7_icon_row_items_2_label','Deposit & balance'),(128289,40377,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(128290,40377,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(128291,40377,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(128292,40377,'blocks_7_icon_row_items','3'),(128293,40377,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(128294,40377,'blocks_8_acfe_flexible_toggle',''),(128295,40377,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(128296,40377,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(128297,40377,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(128298,40377,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(128299,40377,'_blocks_8_content','field_6193c9b5eac84'),(128300,40377,'blocks_9_acfe_flexible_toggle',''),(128301,40377,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(128302,40377,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(128303,40377,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(128304,40377,'blocks_9_testimonial_slider_content_title',''),(128305,40377,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(128306,40377,'blocks_9_testimonial_slider_content_heading','Testimonials'),(128307,40377,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(128308,40377,'blocks_9_testimonial_slider_content_text',''),(128309,40377,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(128310,40377,'blocks_9_testimonial_slider_content_actions',''),(128311,40377,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(128312,40377,'blocks_9_testimonial_slider_content',''),(128313,40377,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(128314,40377,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(128315,40377,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(128316,40377,'blocks_9_testimonial_slider_ambassador_bool','0'),(128317,40377,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(128318,40377,'blocks_10_acfe_flexible_toggle',''),(128319,40377,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(128320,40377,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(128321,40377,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(128322,40377,'blocks_10_options_theme','#ffffff'),(128323,40377,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(128324,40377,'blocks_10_options_state','0'),(128325,40377,'_blocks_10_options_state','field_6239fcb7508c5'),(128326,40377,'blocks_10_options',''),(128327,40377,'_blocks_10_options','field_6177e2991ac44'),(128328,40377,'blocks_10_content_title',''),(128329,40377,'_blocks_10_content_title','field_64d237e8bb1e2'),(128330,40377,'blocks_10_content_heading','Frequently asked questions '),(128331,40377,'_blocks_10_content_heading','field_64d237e8bb1e3'),(128332,40377,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(128333,40377,'_blocks_10_content_text','field_64d237e8bb1e4'),(128334,40377,'blocks_10_content_actions',''),(128335,40377,'_blocks_10_content_actions','field_64d237e8bb1e5'),(128336,40377,'blocks_10_content_align','left'),(128337,40377,'_blocks_10_content_align','field_64d2443e6b6aa'),(128338,40377,'blocks_10_content',''),(128339,40377,'_blocks_10_content','field_64d237e8bb1e1'),(128340,40377,'blocks_10_accordion_content','faqs'),(128341,40377,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(128342,40377,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(128343,40377,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(128344,40377,'blocks_10_actions',''),(128345,40377,'_blocks_10_actions','field_61a746a817f7a'),(128346,40378,'hide_hero','0'),(128347,40378,'_hide_hero','field_66a2380fcda39'),(128348,40378,'hero_title','Biomechanics and S&C coaches'),(128349,40378,'_hero_title','field_617571fe285e8'),(128350,40378,'hero_text','Gain a deeper understanding of anatomy and client movement through intrinsic biomechanics.'),(128351,40378,'_hero_text','field_6175723c285e9'),(128352,40378,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(128353,40378,'_hero_actions_0_button','field_61757281285eb'),(128354,40378,'hero_actions','1'),(128355,40378,'_hero_actions','field_61757270285ea'),(128356,40378,'hero_style','default'),(128357,40378,'_hero_style','field_62051d9dc5324'),(128358,40378,'_thumbnail_id','39256'),(128359,40378,'__thumbnail_id','field_617570855ddaf'),(128360,40378,'hero_image_pos_x','right'),(128361,40378,'_hero_image_pos_x','field_62ec3d05390bb'),(128362,40378,'hero_image_pos_y','top'),(128363,40378,'_hero_image_pos_y','field_62ec3d05390bc'),(128364,40378,'hero_image_pos',''),(128365,40378,'_hero_image_pos','field_62ec3d05390ba'),(128366,40378,'fft_hide_from_listings','0'),(128367,40378,'_fft_hide_from_listings','field_61f1320446ab2'),(128368,40378,'fft_page_format','default'),(128369,40378,'_fft_page_format','field_61ae213f1f218'),(128370,40378,'fft_hide_nav','0'),(128371,40378,'_fft_hide_nav','field_635bd5e43527c'),(128372,40378,'fft_hide_header_call_to_action','0'),(128373,40378,'_fft_hide_header_call_to_action','field_635bd6723527d'),(128374,40378,'fft_page_sitemap','0'),(128375,40378,'_fft_page_sitemap','field_61af9b34e8181'),(128376,40378,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(128377,40378,'_blocks','field_6176696113096'),(128378,40378,'blocks_0_acfe_flexible_toggle',''),(128379,40378,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(128380,40378,'blocks_0_acfe_flexible_layout_title','Template'),(128381,40378,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(128382,40378,'blocks_0_template','39087'),(128383,40378,'_blocks_0_template','field_617bdd570fe01'),(128384,40378,'blocks_1_acfe_flexible_toggle',''),(128385,40378,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(128386,40378,'blocks_1_acfe_flexible_layout_title','Steps'),(128387,40378,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(128388,40378,'blocks_1_row_content_title',''),(128389,40378,'_blocks_1_row_content_title','field_64888cd1e26e0'),(128390,40378,'blocks_1_row_content_heading','Benefits of training with us'),(128391,40378,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(128392,40378,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(128393,40378,'_blocks_1_row_content_text','field_64888ce2e26e2'),(128394,40378,'blocks_1_row_content_actions',''),(128395,40378,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(128396,40378,'blocks_1_row_content',''),(128397,40378,'_blocks_1_row_content','field_64888cb0e26df'),(128398,40378,'blocks_1_steps_0_icon','progression.svg'),(128399,40378,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(128400,40378,'blocks_1_steps_0_title','Earning potential'),(128401,40378,'_blocks_1_steps_0_title','field_64888d94e26e7'),(128402,40378,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(128403,40378,'_blocks_1_steps_0_text','field_64888d99e26e8'),(128404,40378,'blocks_1_steps_1_icon','support.svg'),(128405,40378,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(128406,40378,'blocks_1_steps_1_title','Lifetime Learning Promise'),(128407,40378,'_blocks_1_steps_1_title','field_64888d94e26e7'),(128408,40378,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(128409,40378,'_blocks_1_steps_1_text','field_64888d99e26e8'),(128410,40378,'blocks_1_steps_2_icon','qualification.svg'),(128411,40378,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(128412,40378,'blocks_1_steps_2_title','Evidence based hands on learning'),(128413,40378,'_blocks_1_steps_2_title','field_64888d94e26e7'),(128414,40378,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(128415,40378,'_blocks_1_steps_2_text','field_64888d99e26e8'),(128416,40378,'blocks_1_steps_3_icon','leaders.svg'),(128417,40378,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(128418,40378,'blocks_1_steps_3_title','Stand out from the crowd'),(128419,40378,'_blocks_1_steps_3_title','field_64888d94e26e7'),(128420,40378,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(128421,40378,'_blocks_1_steps_3_text','field_64888d99e26e8'),(128422,40378,'blocks_1_steps','4'),(128423,40378,'_blocks_1_steps','field_64888d44e26e5'),(128424,40378,'blocks_2_acfe_flexible_toggle',''),(128425,40378,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(128426,40378,'blocks_2_acfe_flexible_layout_title','Video'),(128427,40378,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(128428,40378,'blocks_2_size','large'),(128429,40378,'_blocks_2_size','field_6487038f297c1'),(128430,40378,'blocks_2_row_content_title',''),(128431,40378,'_blocks_2_row_content_title','field_64870132a865d'),(128432,40378,'blocks_2_row_content_heading',''),(128433,40378,'_blocks_2_row_content_heading','field_64870142a865e'),(128434,40378,'blocks_2_row_content_text',''),(128435,40378,'_blocks_2_row_content_text','field_64870148a865f'),(128436,40378,'blocks_2_row_content',''),(128437,40378,'_blocks_2_row_content','field_6487008ba865c'),(128438,40378,'blocks_2_video_src',''),(128439,40378,'_blocks_2_video_src','field_6193c4a98ec07'),(128440,40378,'blocks_2_video_thumbnail',''),(128441,40378,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(128442,40378,'blocks_3_acfe_flexible_toggle',''),(128443,40378,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(128444,40378,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(128445,40378,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(128446,40378,'blocks_3_options_theme','#ffffff'),(128447,40378,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(128448,40378,'blocks_3_options_reverse','0'),(128449,40378,'_blocks_3_options_reverse','field_61768049bb8ac'),(128450,40378,'blocks_3_options',''),(128451,40378,'_blocks_3_options','field_617682517c334'),(128452,40378,'blocks_3_split_5050_image','39257'),(128453,40378,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(128454,40378,'blocks_3_split_5050_video',''),(128455,40378,'_blocks_3_split_5050_video','field_6239f3160848a'),(128456,40378,'blocks_3_split_5050_content_title',''),(128457,40378,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(128458,40378,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(128459,40378,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(128460,40378,'blocks_3_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(128461,40378,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(128462,40378,'blocks_3_split_5050_content_actions',''),(128463,40378,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(128464,40378,'blocks_3_split_5050_content',''),(128465,40378,'_blocks_3_split_5050_content','field_61767afceb8ba'),(128466,40378,'blocks_4_acfe_flexible_toggle',''),(128467,40378,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(128468,40378,'blocks_4_acfe_flexible_layout_title','Form'),(128469,40378,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(128470,40378,'blocks_4_row_content_format','standard'),(128471,40378,'_blocks_4_row_content_format','field_6481ead962881'),(128472,40378,'blocks_4_row_content_title',''),(128473,40378,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(128474,40378,'blocks_4_row_content_heading','Enquire Today'),(128475,40378,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(128476,40378,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(128477,40378,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(128478,40378,'blocks_4_row_content_actions',''),(128479,40378,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(128480,40378,'blocks_4_row_content',''),(128481,40378,'_blocks_4_row_content','field_61a0f5f5b3db0'),(128482,40378,'blocks_4_row_form',''),(128483,40378,'_blocks_4_row_form','field_61a4ff2c0b08e'),(128484,40378,'blocks_4_row_form_button_label',''),(128485,40378,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(128486,40378,'blocks_5_acfe_flexible_toggle',''),(128487,40378,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(128488,40378,'blocks_5_acfe_flexible_layout_title','Tabs'),(128489,40378,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(128490,40378,'blocks_5_options_theme','#ffffff'),(128491,40378,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(128492,40378,'blocks_5_options',''),(128493,40378,'_blocks_5_options','field_6177cfcd8140f'),(128494,40378,'blocks_5_tabs_0_tab_label','What will I learn ?'),(128495,40378,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(128496,40378,'blocks_5_tabs_0_tab_content_title',''),(128497,40378,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(128498,40378,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(128499,40378,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(128500,40378,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(128501,40378,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(128502,40378,'blocks_5_tabs_0_tab_content_actions',''),(128503,40378,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(128504,40378,'blocks_5_tabs_0_tab_content',''),(128505,40378,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(128506,40378,'blocks_5_tabs_0_tab_image','39076'),(128507,40378,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(128508,40378,'blocks_5_tabs_1_tab_label','What do I need ?'),(128509,40378,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(128510,40378,'blocks_5_tabs_1_tab_content_title',''),(128511,40378,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(128512,40378,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(128513,40378,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(128514,40378,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(128515,40378,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(128516,40378,'blocks_5_tabs_1_tab_content_actions',''),(128517,40378,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(128518,40378,'blocks_5_tabs_1_tab_content',''),(128519,40378,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(128520,40378,'blocks_5_tabs_1_tab_image','39223'),(128521,40378,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(128522,40378,'blocks_5_tabs_2_tab_label','Where can I learn ?'),(128523,40378,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(128524,40378,'blocks_5_tabs_2_tab_content_title',''),(128525,40378,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(128526,40378,'blocks_5_tabs_2_tab_content_heading','Locations'),(128527,40378,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(128528,40378,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(128529,40378,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(128530,40378,'blocks_5_tabs_2_tab_content_actions',''),(128531,40378,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(128532,40378,'blocks_5_tabs_2_tab_content',''),(128533,40378,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(128534,40378,'blocks_5_tabs_2_tab_image','39224'),(128535,40378,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(128536,40378,'blocks_5_tabs','3'),(128537,40378,'_blocks_5_tabs','field_6177cff281419'),(128538,40378,'blocks_6_acfe_flexible_toggle',''),(128539,40378,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(128540,40378,'blocks_6_acfe_flexible_layout_title','Text Block'),(128541,40378,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(128542,40378,'blocks_6_options_theme','#b61234'),(128543,40378,'_blocks_6_options_theme','field_6176830e2ad17'),(128544,40378,'blocks_6_options',''),(128545,40378,'_blocks_6_options','field_6176830e2ad16'),(128546,40378,'blocks_6_text_block_heading','Fees & Funding Options'),(128547,40378,'_blocks_6_text_block_heading','field_617669d413097'),(128548,40378,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(128549,40378,'_blocks_6_text_block_content','field_617669ec13098'),(128550,40378,'blocks_7_acfe_flexible_toggle',''),(128551,40378,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(128552,40378,'blocks_7_acfe_flexible_layout_title','Icons'),(128553,40378,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(128554,40378,'blocks_7_options_theme','#b61234'),(128555,40378,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(128556,40378,'blocks_7_options_format','row'),(128557,40378,'_blocks_7_options_format','field_64bfde9a90690'),(128558,40378,'blocks_7_options',''),(128559,40378,'_blocks_7_options','field_64bfdd9b90684'),(128560,40378,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(128561,40378,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(128562,40378,'blocks_7_icon_row_items_0_label','Pay in Full'),(128563,40378,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(128564,40378,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(128565,40378,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(128566,40378,'blocks_7_icon_row_items_1_icon','finance.svg'),(128567,40378,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(128568,40378,'blocks_7_icon_row_items_1_label','0% finance'),(128569,40378,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(128570,40378,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(128571,40378,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(128572,40378,'blocks_7_icon_row_items_2_icon','deposit.svg'),(128573,40378,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(128574,40378,'blocks_7_icon_row_items_2_label','Deposit & balance'),(128575,40378,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(128576,40378,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(128577,40378,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(128578,40378,'blocks_7_icon_row_items','3'),(128579,40378,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(128580,40378,'blocks_8_acfe_flexible_toggle',''),(128581,40378,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(128582,40378,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(128583,40378,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(128584,40378,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(128585,40378,'_blocks_8_content','field_6193c9b5eac84'),(128586,40378,'blocks_9_acfe_flexible_toggle',''),(128587,40378,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(128588,40378,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(128589,40378,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(128590,40378,'blocks_9_testimonial_slider_content_title',''),(128591,40378,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(128592,40378,'blocks_9_testimonial_slider_content_heading','Testimonials'),(128593,40378,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(128594,40378,'blocks_9_testimonial_slider_content_text',''),(128595,40378,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(128596,40378,'blocks_9_testimonial_slider_content_actions',''),(128597,40378,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(128598,40378,'blocks_9_testimonial_slider_content',''),(128599,40378,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(128600,40378,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(128601,40378,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(128602,40378,'blocks_9_testimonial_slider_ambassador_bool','0'),(128603,40378,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(128604,40378,'blocks_10_acfe_flexible_toggle',''),(128605,40378,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(128606,40378,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(128607,40378,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(128608,40378,'blocks_10_options_theme','#ffffff'),(128609,40378,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(128610,40378,'blocks_10_options_state','0'),(128611,40378,'_blocks_10_options_state','field_6239fcb7508c5'),(128612,40378,'blocks_10_options',''),(128613,40378,'_blocks_10_options','field_6177e2991ac44'),(128614,40378,'blocks_10_content_title',''),(128615,40378,'_blocks_10_content_title','field_64d237e8bb1e2'),(128616,40378,'blocks_10_content_heading','Frequently asked questions '),(128617,40378,'_blocks_10_content_heading','field_64d237e8bb1e3'),(128618,40378,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(128619,40378,'_blocks_10_content_text','field_64d237e8bb1e4'),(128620,40378,'blocks_10_content_actions',''),(128621,40378,'_blocks_10_content_actions','field_64d237e8bb1e5'),(128622,40378,'blocks_10_content_align','left'),(128623,40378,'_blocks_10_content_align','field_64d2443e6b6aa'),(128624,40378,'blocks_10_content',''),(128625,40378,'_blocks_10_content','field_64d237e8bb1e1'),(128626,40378,'blocks_10_accordion_content','faqs'),(128627,40378,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(128628,40378,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(128629,40378,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(128630,40378,'blocks_10_actions',''),(128631,40378,'_blocks_10_actions','field_61a746a817f7a'),(128632,40379,'hide_hero','0'),(128633,40379,'_hide_hero','field_66a2380fcda39'),(128634,40379,'hero_title','Biomechanics and S&C coaches'),(128635,40379,'_hero_title','field_617571fe285e8'),(128636,40379,'hero_text','Gain a deeper understanding of anatomy and client movement through intrinsic biomechanics.'),(128637,40379,'_hero_text','field_6175723c285e9'),(128638,40379,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(128639,40379,'_hero_actions_0_button','field_61757281285eb'),(128640,40379,'hero_actions','1'),(128641,40379,'_hero_actions','field_61757270285ea'),(128642,40379,'hero_style','default'),(128643,40379,'_hero_style','field_62051d9dc5324'),(128644,40379,'_thumbnail_id','39256'),(128645,40379,'__thumbnail_id','field_617570855ddaf'),(128646,40379,'hero_image_pos_x','right'),(128647,40379,'_hero_image_pos_x','field_62ec3d05390bb'),(128648,40379,'hero_image_pos_y','top'),(128649,40379,'_hero_image_pos_y','field_62ec3d05390bc'),(128650,40379,'hero_image_pos',''),(128651,40379,'_hero_image_pos','field_62ec3d05390ba'),(128652,40379,'fft_hide_from_listings','0'),(128653,40379,'_fft_hide_from_listings','field_61f1320446ab2'),(128654,40379,'fft_page_format','default'),(128655,40379,'_fft_page_format','field_61ae213f1f218'),(128656,40379,'fft_hide_nav','0'),(128657,40379,'_fft_hide_nav','field_635bd5e43527c'),(128658,40379,'fft_hide_header_call_to_action','0'),(128659,40379,'_fft_hide_header_call_to_action','field_635bd6723527d'),(128660,40379,'fft_page_sitemap','0'),(128661,40379,'_fft_page_sitemap','field_61af9b34e8181'),(128662,40379,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(128663,40379,'_blocks','field_6176696113096'),(128664,40379,'blocks_0_acfe_flexible_toggle',''),(128665,40379,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(128666,40379,'blocks_0_acfe_flexible_layout_title','Template'),(128667,40379,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(128668,40379,'blocks_0_template','39087'),(128669,40379,'_blocks_0_template','field_617bdd570fe01'),(128670,40379,'blocks_1_acfe_flexible_toggle',''),(128671,40379,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(128672,40379,'blocks_1_acfe_flexible_layout_title','Steps'),(128673,40379,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(128674,40379,'blocks_1_row_content_title',''),(128675,40379,'_blocks_1_row_content_title','field_64888cd1e26e0'),(128676,40379,'blocks_1_row_content_heading','Benefits of training with us'),(128677,40379,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(128678,40379,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(128679,40379,'_blocks_1_row_content_text','field_64888ce2e26e2'),(128680,40379,'blocks_1_row_content_actions',''),(128681,40379,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(128682,40379,'blocks_1_row_content',''),(128683,40379,'_blocks_1_row_content','field_64888cb0e26df'),(128684,40379,'blocks_1_steps_0_icon','progression.svg'),(128685,40379,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(128686,40379,'blocks_1_steps_0_title','Attract new clients'),(128687,40379,'_blocks_1_steps_0_title','field_64888d94e26e7'),(128688,40379,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(128689,40379,'_blocks_1_steps_0_text','field_64888d99e26e8'),(128690,40379,'blocks_1_steps_1_icon','support.svg'),(128691,40379,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(128692,40379,'blocks_1_steps_1_title','Lifetime Learning Promise'),(128693,40379,'_blocks_1_steps_1_title','field_64888d94e26e7'),(128694,40379,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(128695,40379,'_blocks_1_steps_1_text','field_64888d99e26e8'),(128696,40379,'blocks_1_steps_2_icon','qualification.svg'),(128697,40379,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(128698,40379,'blocks_1_steps_2_title','Evidence based hands on learning'),(128699,40379,'_blocks_1_steps_2_title','field_64888d94e26e7'),(128700,40379,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(128701,40379,'_blocks_1_steps_2_text','field_64888d99e26e8'),(128702,40379,'blocks_1_steps_3_icon','leaders.svg'),(128703,40379,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(128704,40379,'blocks_1_steps_3_title','Stand out from the crowd'),(128705,40379,'_blocks_1_steps_3_title','field_64888d94e26e7'),(128706,40379,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(128707,40379,'_blocks_1_steps_3_text','field_64888d99e26e8'),(128708,40379,'blocks_1_steps','4'),(128709,40379,'_blocks_1_steps','field_64888d44e26e5'),(128710,40379,'blocks_2_acfe_flexible_toggle',''),(128711,40379,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(128712,40379,'blocks_2_acfe_flexible_layout_title','Video'),(128713,40379,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(128714,40379,'blocks_2_size','large'),(128715,40379,'_blocks_2_size','field_6487038f297c1'),(128716,40379,'blocks_2_row_content_title',''),(128717,40379,'_blocks_2_row_content_title','field_64870132a865d'),(128718,40379,'blocks_2_row_content_heading',''),(128719,40379,'_blocks_2_row_content_heading','field_64870142a865e'),(128720,40379,'blocks_2_row_content_text',''),(128721,40379,'_blocks_2_row_content_text','field_64870148a865f'),(128722,40379,'blocks_2_row_content',''),(128723,40379,'_blocks_2_row_content','field_6487008ba865c'),(128724,40379,'blocks_2_video_src',''),(128725,40379,'_blocks_2_video_src','field_6193c4a98ec07'),(128726,40379,'blocks_2_video_thumbnail',''),(128727,40379,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(128728,40379,'blocks_3_acfe_flexible_toggle',''),(128729,40379,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(128730,40379,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(128731,40379,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(128732,40379,'blocks_3_options_theme','#ffffff'),(128733,40379,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(128734,40379,'blocks_3_options_reverse','0'),(128735,40379,'_blocks_3_options_reverse','field_61768049bb8ac'),(128736,40379,'blocks_3_options',''),(128737,40379,'_blocks_3_options','field_617682517c334'),(128738,40379,'blocks_3_split_5050_image','39257'),(128739,40379,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(128740,40379,'blocks_3_split_5050_video',''),(128741,40379,'_blocks_3_split_5050_video','field_6239f3160848a'),(128742,40379,'blocks_3_split_5050_content_title',''),(128743,40379,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(128744,40379,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(128745,40379,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(128746,40379,'blocks_3_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(128747,40379,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(128748,40379,'blocks_3_split_5050_content_actions',''),(128749,40379,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(128750,40379,'blocks_3_split_5050_content',''),(128751,40379,'_blocks_3_split_5050_content','field_61767afceb8ba'),(128752,40379,'blocks_4_acfe_flexible_toggle',''),(128753,40379,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(128754,40379,'blocks_4_acfe_flexible_layout_title','Form'),(128755,40379,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(128756,40379,'blocks_4_row_content_format','standard'),(128757,40379,'_blocks_4_row_content_format','field_6481ead962881'),(128758,40379,'blocks_4_row_content_title',''),(128759,40379,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(128760,40379,'blocks_4_row_content_heading','Enquire Today'),(128761,40379,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(128762,40379,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(128763,40379,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(128764,40379,'blocks_4_row_content_actions',''),(128765,40379,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(128766,40379,'blocks_4_row_content',''),(128767,40379,'_blocks_4_row_content','field_61a0f5f5b3db0'),(128768,40379,'blocks_4_row_form',''),(128769,40379,'_blocks_4_row_form','field_61a4ff2c0b08e'),(128770,40379,'blocks_4_row_form_button_label',''),(128771,40379,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(128772,40379,'blocks_5_acfe_flexible_toggle',''),(128773,40379,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(128774,40379,'blocks_5_acfe_flexible_layout_title','Tabs'),(128775,40379,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(128776,40379,'blocks_5_options_theme','#ffffff'),(128777,40379,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(128778,40379,'blocks_5_options',''),(128779,40379,'_blocks_5_options','field_6177cfcd8140f'),(128780,40379,'blocks_5_tabs_0_tab_label','What will I learn ?'),(128781,40379,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(128782,40379,'blocks_5_tabs_0_tab_content_title',''),(128783,40379,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(128784,40379,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(128785,40379,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(128786,40379,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(128787,40379,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(128788,40379,'blocks_5_tabs_0_tab_content_actions',''),(128789,40379,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(128790,40379,'blocks_5_tabs_0_tab_content',''),(128791,40379,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(128792,40379,'blocks_5_tabs_0_tab_image','39076'),(128793,40379,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(128794,40379,'blocks_5_tabs_1_tab_label','What do I need ?'),(128795,40379,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(128796,40379,'blocks_5_tabs_1_tab_content_title',''),(128797,40379,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(128798,40379,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(128799,40379,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(128800,40379,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(128801,40379,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(128802,40379,'blocks_5_tabs_1_tab_content_actions',''),(128803,40379,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(128804,40379,'blocks_5_tabs_1_tab_content',''),(128805,40379,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(128806,40379,'blocks_5_tabs_1_tab_image','39223'),(128807,40379,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(128808,40379,'blocks_5_tabs_2_tab_label','Where can I learn ?'),(128809,40379,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(128810,40379,'blocks_5_tabs_2_tab_content_title',''),(128811,40379,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(128812,40379,'blocks_5_tabs_2_tab_content_heading','Locations'),(128813,40379,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(128814,40379,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(128815,40379,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(128816,40379,'blocks_5_tabs_2_tab_content_actions',''),(128817,40379,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(128818,40379,'blocks_5_tabs_2_tab_content',''),(128819,40379,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(128820,40379,'blocks_5_tabs_2_tab_image','39224'),(128821,40379,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(128822,40379,'blocks_5_tabs','3'),(128823,40379,'_blocks_5_tabs','field_6177cff281419'),(128824,40379,'blocks_6_acfe_flexible_toggle',''),(128825,40379,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(128826,40379,'blocks_6_acfe_flexible_layout_title','Text Block'),(128827,40379,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(128828,40379,'blocks_6_options_theme','#b61234'),(128829,40379,'_blocks_6_options_theme','field_6176830e2ad17'),(128830,40379,'blocks_6_options',''),(128831,40379,'_blocks_6_options','field_6176830e2ad16'),(128832,40379,'blocks_6_text_block_heading','Fees & Funding Options'),(128833,40379,'_blocks_6_text_block_heading','field_617669d413097'),(128834,40379,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(128835,40379,'_blocks_6_text_block_content','field_617669ec13098'),(128836,40379,'blocks_7_acfe_flexible_toggle',''),(128837,40379,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(128838,40379,'blocks_7_acfe_flexible_layout_title','Icons'),(128839,40379,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(128840,40379,'blocks_7_options_theme','#b61234'),(128841,40379,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(128842,40379,'blocks_7_options_format','row'),(128843,40379,'_blocks_7_options_format','field_64bfde9a90690'),(128844,40379,'blocks_7_options',''),(128845,40379,'_blocks_7_options','field_64bfdd9b90684'),(128846,40379,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(128847,40379,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(128848,40379,'blocks_7_icon_row_items_0_label','Pay in Full'),(128849,40379,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(128850,40379,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(128851,40379,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(128852,40379,'blocks_7_icon_row_items_1_icon','finance.svg'),(128853,40379,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(128854,40379,'blocks_7_icon_row_items_1_label','0% finance'),(128855,40379,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(128856,40379,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(128857,40379,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(128858,40379,'blocks_7_icon_row_items_2_icon','deposit.svg'),(128859,40379,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(128860,40379,'blocks_7_icon_row_items_2_label','Deposit & balance'),(128861,40379,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(128862,40379,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(128863,40379,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(128864,40379,'blocks_7_icon_row_items','3'),(128865,40379,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(128866,40379,'blocks_8_acfe_flexible_toggle',''),(128867,40379,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(128868,40379,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(128869,40379,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(128870,40379,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(128871,40379,'_blocks_8_content','field_6193c9b5eac84'),(128872,40379,'blocks_9_acfe_flexible_toggle',''),(128873,40379,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(128874,40379,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(128875,40379,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(128876,40379,'blocks_9_testimonial_slider_content_title',''),(128877,40379,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(128878,40379,'blocks_9_testimonial_slider_content_heading','Testimonials'),(128879,40379,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(128880,40379,'blocks_9_testimonial_slider_content_text',''),(128881,40379,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(128882,40379,'blocks_9_testimonial_slider_content_actions',''),(128883,40379,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(128884,40379,'blocks_9_testimonial_slider_content',''),(128885,40379,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(128886,40379,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(128887,40379,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(128888,40379,'blocks_9_testimonial_slider_ambassador_bool','0'),(128889,40379,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(128890,40379,'blocks_10_acfe_flexible_toggle',''),(128891,40379,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(128892,40379,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(128893,40379,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(128894,40379,'blocks_10_options_theme','#ffffff'),(128895,40379,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(128896,40379,'blocks_10_options_state','0'),(128897,40379,'_blocks_10_options_state','field_6239fcb7508c5'),(128898,40379,'blocks_10_options',''),(128899,40379,'_blocks_10_options','field_6177e2991ac44'),(128900,40379,'blocks_10_content_title',''),(128901,40379,'_blocks_10_content_title','field_64d237e8bb1e2'),(128902,40379,'blocks_10_content_heading','Frequently asked questions '),(128903,40379,'_blocks_10_content_heading','field_64d237e8bb1e3'),(128904,40379,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(128905,40379,'_blocks_10_content_text','field_64d237e8bb1e4'),(128906,40379,'blocks_10_content_actions',''),(128907,40379,'_blocks_10_content_actions','field_64d237e8bb1e5'),(128908,40379,'blocks_10_content_align','left'),(128909,40379,'_blocks_10_content_align','field_64d2443e6b6aa'),(128910,40379,'blocks_10_content',''),(128911,40379,'_blocks_10_content','field_64d237e8bb1e1'),(128912,40379,'blocks_10_accordion_content','faqs'),(128913,40379,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(128914,40379,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(128915,40379,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(128916,40379,'blocks_10_actions',''),(128917,40379,'_blocks_10_actions','field_61a746a817f7a'),(128918,40381,'hide_hero','0'),(128919,40381,'_hide_hero','field_66a2380fcda39'),(128920,40381,'hero_title','Biomechanics and S&C coaches'),(128921,40381,'_hero_title','field_617571fe285e8'),(128922,40381,'hero_text','Gain a deeper understanding of anatomy and client movement through intrinsic biomechanics.'),(128923,40381,'_hero_text','field_6175723c285e9'),(128924,40381,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(128925,40381,'_hero_actions_0_button','field_61757281285eb'),(128926,40381,'hero_actions','1'),(128927,40381,'_hero_actions','field_61757270285ea'),(128928,40381,'hero_style','default'),(128929,40381,'_hero_style','field_62051d9dc5324'),(128930,40381,'_thumbnail_id','39256'),(128931,40381,'__thumbnail_id','field_617570855ddaf'),(128932,40381,'hero_image_pos_x','right'),(128933,40381,'_hero_image_pos_x','field_62ec3d05390bb'),(128934,40381,'hero_image_pos_y','top'),(128935,40381,'_hero_image_pos_y','field_62ec3d05390bc'),(128936,40381,'hero_image_pos',''),(128937,40381,'_hero_image_pos','field_62ec3d05390ba'),(128938,40381,'fft_hide_from_listings','0'),(128939,40381,'_fft_hide_from_listings','field_61f1320446ab2'),(128940,40381,'fft_page_format','default'),(128941,40381,'_fft_page_format','field_61ae213f1f218'),(128942,40381,'fft_hide_nav','0'),(128943,40381,'_fft_hide_nav','field_635bd5e43527c'),(128944,40381,'fft_hide_header_call_to_action','0'),(128945,40381,'_fft_hide_header_call_to_action','field_635bd6723527d'),(128946,40381,'fft_page_sitemap','0'),(128947,40381,'_fft_page_sitemap','field_61af9b34e8181'),(128948,40381,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(128949,40381,'_blocks','field_6176696113096'),(128950,40381,'blocks_0_acfe_flexible_toggle',''),(128951,40381,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(128952,40381,'blocks_0_acfe_flexible_layout_title','Template'),(128953,40381,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(128954,40381,'blocks_0_template','39087'),(128955,40381,'_blocks_0_template','field_617bdd570fe01'),(128956,40381,'blocks_1_acfe_flexible_toggle',''),(128957,40381,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(128958,40381,'blocks_1_acfe_flexible_layout_title','Steps'),(128959,40381,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(128960,40381,'blocks_1_row_content_title',''),(128961,40381,'_blocks_1_row_content_title','field_64888cd1e26e0'),(128962,40381,'blocks_1_row_content_heading','Benefits of training with us'),(128963,40381,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(128964,40381,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(128965,40381,'_blocks_1_row_content_text','field_64888ce2e26e2'),(128966,40381,'blocks_1_row_content_actions',''),(128967,40381,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(128968,40381,'blocks_1_row_content',''),(128969,40381,'_blocks_1_row_content','field_64888cb0e26df'),(128970,40381,'blocks_1_steps_0_icon','progression.svg'),(128971,40381,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(128972,40381,'blocks_1_steps_0_title','Attract new clients'),(128973,40381,'_blocks_1_steps_0_title','field_64888d94e26e7'),(128974,40381,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(128975,40381,'_blocks_1_steps_0_text','field_64888d99e26e8'),(128976,40381,'blocks_1_steps_1_icon','support.svg'),(128977,40381,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(128978,40381,'blocks_1_steps_1_title','Lifetime Learning Promise'),(128979,40381,'_blocks_1_steps_1_title','field_64888d94e26e7'),(128980,40381,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(128981,40381,'_blocks_1_steps_1_text','field_64888d99e26e8'),(128982,40381,'blocks_1_steps_2_icon','qualification.svg'),(128983,40381,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(128984,40381,'blocks_1_steps_2_title','Evidence based hands on learning'),(128985,40381,'_blocks_1_steps_2_title','field_64888d94e26e7'),(128986,40381,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You will learn how to test and screen, and learn methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(128987,40381,'_blocks_1_steps_2_text','field_64888d99e26e8'),(128988,40381,'blocks_1_steps_3_icon','leaders.svg'),(128989,40381,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(128990,40381,'blocks_1_steps_3_title','Stand out from the crowd'),(128991,40381,'_blocks_1_steps_3_title','field_64888d94e26e7'),(128992,40381,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(128993,40381,'_blocks_1_steps_3_text','field_64888d99e26e8'),(128994,40381,'blocks_1_steps','4'),(128995,40381,'_blocks_1_steps','field_64888d44e26e5'),(128996,40381,'blocks_2_acfe_flexible_toggle',''),(128997,40381,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(128998,40381,'blocks_2_acfe_flexible_layout_title','Video'),(128999,40381,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(129000,40381,'blocks_2_size','large'),(129001,40381,'_blocks_2_size','field_6487038f297c1'),(129002,40381,'blocks_2_row_content_title',''),(129003,40381,'_blocks_2_row_content_title','field_64870132a865d'),(129004,40381,'blocks_2_row_content_heading',''),(129005,40381,'_blocks_2_row_content_heading','field_64870142a865e'),(129006,40381,'blocks_2_row_content_text',''),(129007,40381,'_blocks_2_row_content_text','field_64870148a865f'),(129008,40381,'blocks_2_row_content',''),(129009,40381,'_blocks_2_row_content','field_6487008ba865c'),(129010,40381,'blocks_2_video_src',''),(129011,40381,'_blocks_2_video_src','field_6193c4a98ec07'),(129012,40381,'blocks_2_video_thumbnail',''),(129013,40381,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(129014,40381,'blocks_3_acfe_flexible_toggle',''),(129015,40381,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(129016,40381,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(129017,40381,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(129018,40381,'blocks_3_options_theme','#ffffff'),(129019,40381,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(129020,40381,'blocks_3_options_reverse','0'),(129021,40381,'_blocks_3_options_reverse','field_61768049bb8ac'),(129022,40381,'blocks_3_options',''),(129023,40381,'_blocks_3_options','field_617682517c334'),(129024,40381,'blocks_3_split_5050_image','39257'),(129025,40381,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(129026,40381,'blocks_3_split_5050_video',''),(129027,40381,'_blocks_3_split_5050_video','field_6239f3160848a'),(129028,40381,'blocks_3_split_5050_content_title',''),(129029,40381,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(129030,40381,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(129031,40381,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(129032,40381,'blocks_3_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(129033,40381,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(129034,40381,'blocks_3_split_5050_content_actions',''),(129035,40381,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(129036,40381,'blocks_3_split_5050_content',''),(129037,40381,'_blocks_3_split_5050_content','field_61767afceb8ba'),(129038,40381,'blocks_4_acfe_flexible_toggle',''),(129039,40381,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(129040,40381,'blocks_4_acfe_flexible_layout_title','Form'),(129041,40381,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(129042,40381,'blocks_4_row_content_format','standard'),(129043,40381,'_blocks_4_row_content_format','field_6481ead962881'),(129044,40381,'blocks_4_row_content_title',''),(129045,40381,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(129046,40381,'blocks_4_row_content_heading','Enquire Today'),(129047,40381,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(129048,40381,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(129049,40381,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(129050,40381,'blocks_4_row_content_actions',''),(129051,40381,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(129052,40381,'blocks_4_row_content',''),(129053,40381,'_blocks_4_row_content','field_61a0f5f5b3db0'),(129054,40381,'blocks_4_row_form',''),(129055,40381,'_blocks_4_row_form','field_61a4ff2c0b08e'),(129056,40381,'blocks_4_row_form_button_label',''),(129057,40381,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(129058,40381,'blocks_5_acfe_flexible_toggle',''),(129059,40381,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(129060,40381,'blocks_5_acfe_flexible_layout_title','Tabs'),(129061,40381,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(129062,40381,'blocks_5_options_theme','#ffffff'),(129063,40381,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(129064,40381,'blocks_5_options',''),(129065,40381,'_blocks_5_options','field_6177cfcd8140f'),(129066,40381,'blocks_5_tabs_0_tab_label','What will I learn ?'),(129067,40381,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(129068,40381,'blocks_5_tabs_0_tab_content_title',''),(129069,40381,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(129070,40381,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(129071,40381,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(129072,40381,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(129073,40381,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(129074,40381,'blocks_5_tabs_0_tab_content_actions',''),(129075,40381,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(129076,40381,'blocks_5_tabs_0_tab_content',''),(129077,40381,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(129078,40381,'blocks_5_tabs_0_tab_image','39076'),(129079,40381,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(129080,40381,'blocks_5_tabs_1_tab_label','What do I need ?'),(129081,40381,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(129082,40381,'blocks_5_tabs_1_tab_content_title',''),(129083,40381,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(129084,40381,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(129085,40381,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(129086,40381,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(129087,40381,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(129088,40381,'blocks_5_tabs_1_tab_content_actions',''),(129089,40381,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(129090,40381,'blocks_5_tabs_1_tab_content',''),(129091,40381,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(129092,40381,'blocks_5_tabs_1_tab_image','39223'),(129093,40381,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(129094,40381,'blocks_5_tabs_2_tab_label','Where can I learn ?'),(129095,40381,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(129096,40381,'blocks_5_tabs_2_tab_content_title',''),(129097,40381,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(129098,40381,'blocks_5_tabs_2_tab_content_heading','Locations'),(129099,40381,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(129100,40381,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(129101,40381,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(129102,40381,'blocks_5_tabs_2_tab_content_actions',''),(129103,40381,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(129104,40381,'blocks_5_tabs_2_tab_content',''),(129105,40381,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(129106,40381,'blocks_5_tabs_2_tab_image','39224'),(129107,40381,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(129108,40381,'blocks_5_tabs','3'),(129109,40381,'_blocks_5_tabs','field_6177cff281419'),(129110,40381,'blocks_6_acfe_flexible_toggle',''),(129111,40381,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(129112,40381,'blocks_6_acfe_flexible_layout_title','Text Block'),(129113,40381,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(129114,40381,'blocks_6_options_theme','#b61234'),(129115,40381,'_blocks_6_options_theme','field_6176830e2ad17'),(129116,40381,'blocks_6_options',''),(129117,40381,'_blocks_6_options','field_6176830e2ad16'),(129118,40381,'blocks_6_text_block_heading','Fees & Funding Options'),(129119,40381,'_blocks_6_text_block_heading','field_617669d413097'),(129120,40381,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(129121,40381,'_blocks_6_text_block_content','field_617669ec13098'),(129122,40381,'blocks_7_acfe_flexible_toggle',''),(129123,40381,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(129124,40381,'blocks_7_acfe_flexible_layout_title','Icons'),(129125,40381,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(129126,40381,'blocks_7_options_theme','#b61234'),(129127,40381,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(129128,40381,'blocks_7_options_format','row'),(129129,40381,'_blocks_7_options_format','field_64bfde9a90690'),(129130,40381,'blocks_7_options',''),(129131,40381,'_blocks_7_options','field_64bfdd9b90684'),(129132,40381,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(129133,40381,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(129134,40381,'blocks_7_icon_row_items_0_label','Pay in Full'),(129135,40381,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(129136,40381,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(129137,40381,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(129138,40381,'blocks_7_icon_row_items_1_icon','finance.svg'),(129139,40381,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(129140,40381,'blocks_7_icon_row_items_1_label','0% finance'),(129141,40381,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(129142,40381,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(129143,40381,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(129144,40381,'blocks_7_icon_row_items_2_icon','deposit.svg'),(129145,40381,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(129146,40381,'blocks_7_icon_row_items_2_label','Deposit & balance'),(129147,40381,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(129148,40381,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(129149,40381,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(129150,40381,'blocks_7_icon_row_items','3'),(129151,40381,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(129152,40381,'blocks_8_acfe_flexible_toggle',''),(129153,40381,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(129154,40381,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(129155,40381,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(129156,40381,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(129157,40381,'_blocks_8_content','field_6193c9b5eac84'),(129158,40381,'blocks_9_acfe_flexible_toggle',''),(129159,40381,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(129160,40381,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(129161,40381,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(129162,40381,'blocks_9_testimonial_slider_content_title',''),(129163,40381,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(129164,40381,'blocks_9_testimonial_slider_content_heading','Testimonials'),(129165,40381,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(129166,40381,'blocks_9_testimonial_slider_content_text',''),(129167,40381,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(129168,40381,'blocks_9_testimonial_slider_content_actions',''),(129169,40381,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(129170,40381,'blocks_9_testimonial_slider_content',''),(129171,40381,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(129172,40381,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(129173,40381,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(129174,40381,'blocks_9_testimonial_slider_ambassador_bool','0'),(129175,40381,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(129176,40381,'blocks_10_acfe_flexible_toggle',''),(129177,40381,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(129178,40381,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(129179,40381,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(129180,40381,'blocks_10_options_theme','#ffffff'),(129181,40381,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(129182,40381,'blocks_10_options_state','0'),(129183,40381,'_blocks_10_options_state','field_6239fcb7508c5'),(129184,40381,'blocks_10_options',''),(129185,40381,'_blocks_10_options','field_6177e2991ac44'),(129186,40381,'blocks_10_content_title',''),(129187,40381,'_blocks_10_content_title','field_64d237e8bb1e2'),(129188,40381,'blocks_10_content_heading','Frequently asked questions '),(129189,40381,'_blocks_10_content_heading','field_64d237e8bb1e3'),(129190,40381,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(129191,40381,'_blocks_10_content_text','field_64d237e8bb1e4'),(129192,40381,'blocks_10_content_actions',''),(129193,40381,'_blocks_10_content_actions','field_64d237e8bb1e5'),(129194,40381,'blocks_10_content_align','left'),(129195,40381,'_blocks_10_content_align','field_64d2443e6b6aa'),(129196,40381,'blocks_10_content',''),(129197,40381,'_blocks_10_content','field_64d237e8bb1e1'),(129198,40381,'blocks_10_accordion_content','faqs'),(129199,40381,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(129200,40381,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(129201,40381,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(129202,40381,'blocks_10_actions',''),(129203,40381,'_blocks_10_actions','field_61a746a817f7a'),(129204,39263,'blocks_0_acfe_flexible_toggle',''),(129205,39263,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(129206,39263,'blocks_0_acfe_flexible_layout_title','Template'),(129207,39263,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(129208,39263,'blocks_0_template','39087'),(129209,39263,'_blocks_0_template','field_617bdd570fe01'),(129406,39263,'blocks_8_acfe_flexible_toggle','1'),(129407,39263,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(129408,39263,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(129409,39263,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(129410,39263,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(129411,39263,'_blocks_8_content','field_6193c9b5eac84'),(129458,40382,'hide_hero','0'),(129459,40382,'_hide_hero','field_66a2380fcda39'),(129460,40382,'hero_title','How to Become a Biomechanics Coach'),(129461,40382,'_hero_title','field_617571fe285e8'),(129462,40382,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(129463,40382,'_hero_text','field_6175723c285e9'),(129464,40382,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(129465,40382,'_hero_actions_0_button','field_61757281285eb'),(129466,40382,'hero_actions','1'),(129467,40382,'_hero_actions','field_61757270285ea'),(129468,40382,'hero_style','default'),(129469,40382,'_hero_style','field_62051d9dc5324'),(129470,40382,'_thumbnail_id','39454'),(129471,40382,'__thumbnail_id','field_617570855ddaf'),(129472,40382,'hero_image_pos_x','right'),(129473,40382,'_hero_image_pos_x','field_62ec3d05390bb'),(129474,40382,'hero_image_pos_y','top'),(129475,40382,'_hero_image_pos_y','field_62ec3d05390bc'),(129476,40382,'hero_image_pos',''),(129477,40382,'_hero_image_pos','field_62ec3d05390ba'),(129478,40382,'fft_hide_from_listings','0'),(129479,40382,'_fft_hide_from_listings','field_61f1320446ab2'),(129480,40382,'fft_page_format','default'),(129481,40382,'_fft_page_format','field_61ae213f1f218'),(129482,40382,'fft_hide_nav','0'),(129483,40382,'_fft_hide_nav','field_635bd5e43527c'),(129484,40382,'fft_hide_header_call_to_action','0'),(129485,40382,'_fft_hide_header_call_to_action','field_635bd6723527d'),(129486,40382,'fft_page_sitemap','0'),(129487,40382,'_fft_page_sitemap','field_61af9b34e8181'),(129488,40382,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(129489,40382,'_blocks','field_6176696113096'),(129490,40382,'blocks_0_acfe_flexible_toggle',''),(129491,40382,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(129492,40382,'blocks_0_acfe_flexible_layout_title','Template'),(129493,40382,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(129494,40382,'blocks_0_template','39087'),(129495,40382,'_blocks_0_template','field_617bdd570fe01'),(129496,40382,'blocks_1_acfe_flexible_toggle',''),(129497,40382,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(129498,40382,'blocks_1_acfe_flexible_layout_title','Steps'),(129499,40382,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(129500,40382,'blocks_1_row_content_title',''),(129501,40382,'_blocks_1_row_content_title','field_64888cd1e26e0'),(129502,40382,'blocks_1_row_content_heading','Benefits of training with us'),(129503,40382,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(129504,40382,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(129505,40382,'_blocks_1_row_content_text','field_64888ce2e26e2'),(129506,40382,'blocks_1_row_content_actions',''),(129507,40382,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(129508,40382,'blocks_1_row_content',''),(129509,40382,'_blocks_1_row_content','field_64888cb0e26df'),(129510,40382,'blocks_1_steps_0_icon','progression.svg'),(129511,40382,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(129512,40382,'blocks_1_steps_0_title','Earning potential'),(129513,40382,'_blocks_1_steps_0_title','field_64888d94e26e7'),(129514,40382,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(129515,40382,'_blocks_1_steps_0_text','field_64888d99e26e8'),(129516,40382,'blocks_1_steps_1_icon','support.svg'),(129517,40382,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(129518,40382,'blocks_1_steps_1_title','Lifetime Learning Promise'),(129519,40382,'_blocks_1_steps_1_title','field_64888d94e26e7'),(129520,40382,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(129521,40382,'_blocks_1_steps_1_text','field_64888d99e26e8'),(129522,40382,'blocks_1_steps_2_icon','qualification.svg'),(129523,40382,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(129524,40382,'blocks_1_steps_2_title','Evidence based hands on learning'),(129525,40382,'_blocks_1_steps_2_title','field_64888d94e26e7'),(129526,40382,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(129527,40382,'_blocks_1_steps_2_text','field_64888d99e26e8'),(129528,40382,'blocks_1_steps_3_icon','leaders.svg'),(129529,40382,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(129530,40382,'blocks_1_steps_3_title','Stand out from the crowd'),(129531,40382,'_blocks_1_steps_3_title','field_64888d94e26e7'),(129532,40382,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(129533,40382,'_blocks_1_steps_3_text','field_64888d99e26e8'),(129534,40382,'blocks_1_steps','4'),(129535,40382,'_blocks_1_steps','field_64888d44e26e5'),(129536,40382,'blocks_2_acfe_flexible_toggle',''),(129537,40382,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(129538,40382,'blocks_2_acfe_flexible_layout_title','Video'),(129539,40382,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(129540,40382,'blocks_2_size','large'),(129541,40382,'_blocks_2_size','field_6487038f297c1'),(129542,40382,'blocks_2_row_content_title',''),(129543,40382,'_blocks_2_row_content_title','field_64870132a865d'),(129544,40382,'blocks_2_row_content_heading',''),(129545,40382,'_blocks_2_row_content_heading','field_64870142a865e'),(129546,40382,'blocks_2_row_content_text',''),(129547,40382,'_blocks_2_row_content_text','field_64870148a865f'),(129548,40382,'blocks_2_row_content',''),(129549,40382,'_blocks_2_row_content','field_6487008ba865c'),(129550,40382,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(129551,40382,'_blocks_2_video_src','field_6193c4a98ec07'),(129552,40382,'blocks_2_video_thumbnail',''),(129553,40382,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(129554,40382,'blocks_3_acfe_flexible_toggle',''),(129555,40382,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(129556,40382,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(129557,40382,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(129558,40382,'blocks_3_options_theme','#ffffff'),(129559,40382,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(129560,40382,'blocks_3_options_reverse','0'),(129561,40382,'_blocks_3_options_reverse','field_61768049bb8ac'),(129562,40382,'blocks_3_options',''),(129563,40382,'_blocks_3_options','field_617682517c334'),(129564,40382,'blocks_3_split_5050_image','39623'),(129565,40382,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(129566,40382,'blocks_3_split_5050_video',''),(129567,40382,'_blocks_3_split_5050_video','field_6239f3160848a'),(129568,40382,'blocks_3_split_5050_content_title',''),(129569,40382,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(129570,40382,'blocks_3_split_5050_content_heading','Why it’s Relevant to You.'),(129571,40382,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(129572,40382,'blocks_3_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of numerous injuries within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(129573,40382,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(129574,40382,'blocks_3_split_5050_content_actions',''),(129575,40382,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(129576,40382,'blocks_3_split_5050_content',''),(129577,40382,'_blocks_3_split_5050_content','field_61767afceb8ba'),(129578,40382,'blocks_4_acfe_flexible_toggle',''),(129579,40382,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(129580,40382,'blocks_4_acfe_flexible_layout_title','Form'),(129581,40382,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(129582,40382,'blocks_4_row_content_format','standard'),(129583,40382,'_blocks_4_row_content_format','field_6481ead962881'),(129584,40382,'blocks_4_row_content_title',''),(129585,40382,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(129586,40382,'blocks_4_row_content_heading','Enquire Today'),(129587,40382,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(129588,40382,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(129589,40382,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(129590,40382,'blocks_4_row_content_actions',''),(129591,40382,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(129592,40382,'blocks_4_row_content',''),(129593,40382,'_blocks_4_row_content','field_61a0f5f5b3db0'),(129594,40382,'blocks_4_row_form',''),(129595,40382,'_blocks_4_row_form','field_61a4ff2c0b08e'),(129596,40382,'blocks_4_row_form_button_label',''),(129597,40382,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(129598,40382,'blocks_5_acfe_flexible_toggle',''),(129599,40382,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(129600,40382,'blocks_5_acfe_flexible_layout_title','Tabs'),(129601,40382,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(129602,40382,'blocks_5_options_theme','#ffffff'),(129603,40382,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(129604,40382,'blocks_5_options',''),(129605,40382,'_blocks_5_options','field_6177cfcd8140f'),(129606,40382,'blocks_5_tabs_0_tab_label','What will I learn ?'),(129607,40382,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(129608,40382,'blocks_5_tabs_0_tab_content_title',''),(129609,40382,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(129610,40382,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(129611,40382,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(129612,40382,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(129613,40382,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(129614,40382,'blocks_5_tabs_0_tab_content_actions',''),(129615,40382,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(129616,40382,'blocks_5_tabs_0_tab_content',''),(129617,40382,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(129618,40382,'blocks_5_tabs_0_tab_image','39076'),(129619,40382,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(129620,40382,'blocks_5_tabs_1_tab_label','What do I need ?'),(129621,40382,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(129622,40382,'blocks_5_tabs_1_tab_content_title',''),(129623,40382,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(129624,40382,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(129625,40382,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(129626,40382,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(129627,40382,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(129628,40382,'blocks_5_tabs_1_tab_content_actions',''),(129629,40382,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(129630,40382,'blocks_5_tabs_1_tab_content',''),(129631,40382,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(129632,40382,'blocks_5_tabs_1_tab_image','39223'),(129633,40382,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(129634,40382,'blocks_5_tabs_2_tab_label','Where can I learn ?'),(129635,40382,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(129636,40382,'blocks_5_tabs_2_tab_content_title',''),(129637,40382,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(129638,40382,'blocks_5_tabs_2_tab_content_heading','Locations'),(129639,40382,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(129640,40382,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(129641,40382,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(129642,40382,'blocks_5_tabs_2_tab_content_actions',''),(129643,40382,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(129644,40382,'blocks_5_tabs_2_tab_content',''),(129645,40382,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(129646,40382,'blocks_5_tabs_2_tab_image','39224'),(129647,40382,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(129648,40382,'blocks_5_tabs','3'),(129649,40382,'_blocks_5_tabs','field_6177cff281419'),(129650,40382,'blocks_6_acfe_flexible_toggle',''),(129651,40382,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(129652,40382,'blocks_6_acfe_flexible_layout_title','Text Block'),(129653,40382,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(129654,40382,'blocks_6_options_theme','#b61234'),(129655,40382,'_blocks_6_options_theme','field_6176830e2ad17'),(129656,40382,'blocks_6_options',''),(129657,40382,'_blocks_6_options','field_6176830e2ad16'),(129658,40382,'blocks_6_text_block_heading','Fees & Funding Options'),(129659,40382,'_blocks_6_text_block_heading','field_617669d413097'),(129660,40382,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(129661,40382,'_blocks_6_text_block_content','field_617669ec13098'),(129662,40382,'blocks_7_acfe_flexible_toggle',''),(129663,40382,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(129664,40382,'blocks_7_acfe_flexible_layout_title','Icons'),(129665,40382,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(129666,40382,'blocks_7_options_theme','#b61234'),(129667,40382,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(129668,40382,'blocks_7_options_format','row'),(129669,40382,'_blocks_7_options_format','field_64bfde9a90690'),(129670,40382,'blocks_7_options',''),(129671,40382,'_blocks_7_options','field_64bfdd9b90684'),(129672,40382,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(129673,40382,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(129674,40382,'blocks_7_icon_row_items_0_label','Pay in Full'),(129675,40382,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(129676,40382,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(129677,40382,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(129678,40382,'blocks_7_icon_row_items_1_icon','finance.svg'),(129679,40382,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(129680,40382,'blocks_7_icon_row_items_1_label','0% finance'),(129681,40382,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(129682,40382,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(129683,40382,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(129684,40382,'blocks_7_icon_row_items_2_icon','deposit.svg'),(129685,40382,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(129686,40382,'blocks_7_icon_row_items_2_label','Deposit & balance'),(129687,40382,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(129688,40382,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(129689,40382,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(129690,40382,'blocks_7_icon_row_items','3'),(129691,40382,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(129692,40382,'blocks_8_acfe_flexible_toggle',''),(129693,40382,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(129694,40382,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(129695,40382,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(129696,40382,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(129697,40382,'_blocks_8_content','field_6193c9b5eac84'),(129698,40382,'blocks_9_acfe_flexible_toggle',''),(129699,40382,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(129700,40382,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(129701,40382,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(129702,40382,'blocks_9_testimonial_slider_content_title',''),(129703,40382,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(129704,40382,'blocks_9_testimonial_slider_content_heading','Testimonials'),(129705,40382,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(129706,40382,'blocks_9_testimonial_slider_content_text',''),(129707,40382,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(129708,40382,'blocks_9_testimonial_slider_content_actions',''),(129709,40382,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(129710,40382,'blocks_9_testimonial_slider_content',''),(129711,40382,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(129712,40382,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(129713,40382,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(129714,40382,'blocks_9_testimonial_slider_ambassador_bool','0'),(129715,40382,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(129716,40382,'blocks_10_acfe_flexible_toggle',''),(129717,40382,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(129718,40382,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(129719,40382,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(129720,40382,'blocks_10_options_theme','#ffffff'),(129721,40382,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(129722,40382,'blocks_10_options_state','0'),(129723,40382,'_blocks_10_options_state','field_6239fcb7508c5'),(129724,40382,'blocks_10_options',''),(129725,40382,'_blocks_10_options','field_6177e2991ac44'),(129726,40382,'blocks_10_content_title',''),(129727,40382,'_blocks_10_content_title','field_64d237e8bb1e2'),(129728,40382,'blocks_10_content_heading','Frequently asked questions '),(129729,40382,'_blocks_10_content_heading','field_64d237e8bb1e3'),(129730,40382,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(129731,40382,'_blocks_10_content_text','field_64d237e8bb1e4'),(129732,40382,'blocks_10_content_actions',''),(129733,40382,'_blocks_10_content_actions','field_64d237e8bb1e5'),(129734,40382,'blocks_10_content_align','left'),(129735,40382,'_blocks_10_content_align','field_64d2443e6b6aa'),(129736,40382,'blocks_10_content',''),(129737,40382,'_blocks_10_content','field_64d237e8bb1e1'),(129738,40382,'blocks_10_accordion_content','faqs'),(129739,40382,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(129740,40382,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(129741,40382,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(129742,40382,'blocks_10_actions',''),(129743,40382,'_blocks_10_actions','field_61a746a817f7a'),(129744,40383,'_wp_attached_file','2024/09/BE_Worshop_24thAug-4-scaled.jpg'),(129745,40383,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:39:\"2024/09/BE_Worshop_24thAug-4-scaled.jpg\";s:8:\"filesize\";i:531073;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-4-900x1125.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160087;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-4-1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:239950;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-4-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54482;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-4-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128622;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-4-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247788;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-4-1638x2048.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:378687;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-4-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47182;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-4-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134528;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-4-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198802;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-4-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36229;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-4-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95804;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-4-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141306;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-4-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40503;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-4-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114038;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-4-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168875;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-4-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39350;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-4-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106173;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-4-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156706;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-4-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32039;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-4-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82073;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-4-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119921;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1724496550\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"68\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_24thAug-4.jpg\";}'),(129747,39544,'_thumbnail_id','40383'),(129748,40384,'hide_hero','0'),(129749,40384,'_hide_hero','field_66a2380fcda39'),(129750,40384,'hero_title',''),(129751,40384,'_hero_title','field_617571fe285e8'),(129752,40384,'hero_text',''),(129753,40384,'_hero_text','field_6175723c285e9'),(129754,40384,'hero_actions',''),(129755,40384,'_hero_actions','field_61757270285ea'),(129756,40384,'hero_style','default'),(129757,40384,'_hero_style','field_62051d9dc5324'),(129758,40384,'hero_image_pos_x','right'),(129759,40384,'_hero_image_pos_x','field_62ec3d05390bb'),(129760,40384,'hero_image_pos_y','top'),(129761,40384,'_hero_image_pos_y','field_62ec3d05390bc'),(129762,40384,'hero_image_pos',''),(129763,40384,'_hero_image_pos','field_62ec3d05390ba'),(129764,40384,'fft_hide_from_listings','0'),(129765,40384,'_fft_hide_from_listings','field_61f1320446ab2'),(129766,40384,'post_format',''),(129767,40384,'_post_format','field_61756bfb51898'),(129768,40384,'post_author',''),(129769,40384,'_post_author','field_62ec389d22113'),(129770,40384,'post_reviewer',''),(129771,40384,'_post_reviewer','field_627140a2a9800'),(129772,40384,'post_table_of_contents','0'),(129773,40384,'_post_table_of_contents','field_65c503bc846a6'),(129774,40384,'_thumbnail_id','40383'),(129775,40384,'__thumbnail_id','field_617570855ddaf'),(129850,40385,'hero_style','default'),(129851,40385,'_hero_style','field_62051d9dc5324'),(129852,40385,'_thumbnail_id','38321'),(129853,40385,'__thumbnail_id','field_617570855ddaf'),(129854,40385,'hero_image_pos_x','right'),(129855,40385,'_hero_image_pos_x','field_62ec3d05390bb'),(129856,40385,'hero_image_pos_y','top'),(129857,40385,'_hero_image_pos_y','field_62ec3d05390bc'),(129858,40385,'hero_image_pos',''),(129859,40385,'_hero_image_pos','field_62ec3d05390ba'),(129860,40385,'hero_title','Resources'),(129861,40385,'_hero_title','field_617571fe285e8'),(129862,40385,'hero_text','Innovative content to support the growth of your organisation.'),(129863,40385,'_hero_text','field_6175723c285e9'),(129864,40385,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(129865,40385,'_hero_actions_0_button','field_61757281285eb'),(129866,40385,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-1\";s:6:\"target\";s:0:\"\";}'),(129867,40385,'_hero_actions_1_button','field_61757281285eb'),(129868,40385,'hero_actions','2'),(129869,40385,'_hero_actions','field_61757270285ea'),(129870,40385,'hero_icon',''),(129871,40385,'_hero_icon','field_61a6182199d03'),(129872,40385,'fft_hide_from_listings','0'),(129873,40385,'_fft_hide_from_listings','field_61f1320446ab2'),(129874,40385,'fft_page_format','default'),(129875,40385,'_fft_page_format','field_61ae213f1f218'),(129876,40385,'fft_hide_nav','0'),(129877,40385,'_fft_hide_nav','field_635bd5e43527c'),(129878,40385,'fft_hide_header_call_to_action','0'),(129879,40385,'_fft_hide_header_call_to_action','field_635bd6723527d'),(129880,40385,'fft_page_sitemap','0'),(129881,40385,'_fft_page_sitemap','field_61af9b34e8181'),(129882,40385,'blocks','a:6:{i:0;s:10:\"text_block\";i:1;s:10:\"link_stack\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:18:\"testimonial_slider\";}'),(129883,40385,'_blocks','field_6176696113096'),(129884,40385,'blocks_0_acfe_flexible_toggle',''),(129885,40385,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(129886,40385,'blocks_0_acfe_flexible_layout_title','Text Block'),(129887,40385,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(129888,40385,'blocks_0_options_theme','#f5f5f5'),(129889,40385,'_blocks_0_options_theme','field_6176830e2ad17'),(129890,40385,'blocks_0_options',''),(129891,40385,'_blocks_0_options','field_6176830e2ad16'),(129892,40385,'blocks_0_text_block_heading','Resources Available'),(129893,40385,'_blocks_0_text_block_heading','field_617669d413097'),(129894,40385,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(129895,40385,'_blocks_0_text_block_content','field_617669ec13098'),(129896,40385,'blocks_1_acfe_flexible_toggle',''),(129897,40385,'_blocks_1_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(129898,40385,'blocks_1_acfe_flexible_layout_title','Link Stack'),(129899,40385,'_blocks_1_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(129900,40385,'blocks_1_options_theme','#ffffff'),(129901,40385,'_blocks_1_options_theme','field_6177b758246af_field_6176830e2ad17'),(129902,40385,'blocks_1_options',''),(129903,40385,'_blocks_1_options','field_6177b758246ae'),(129904,40385,'blocks_1_link_stack_content_title',''),(129905,40385,'_blocks_1_link_stack_content_title','field_6177b7b600cf9'),(129906,40385,'blocks_1_link_stack_content_heading','About Our YouTube Channel '),(129907,40385,'_blocks_1_link_stack_content_heading','field_6177b7b600cfa'),(129908,40385,'blocks_1_link_stack_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(129909,40385,'_blocks_1_link_stack_content_text','field_6177b7b600cfb'),(129910,40385,'blocks_1_link_stack_content_actions',''),(129911,40385,'_blocks_1_link_stack_content_actions','field_6177b7b600cfc'),(129912,40385,'blocks_1_link_stack_content',''),(129913,40385,'_blocks_1_link_stack_content','field_6177b7b600cf8'),(129914,40385,'blocks_1_link_stack_0_label','Hosted by Rachel Frances Thompson'),(129915,40385,'_blocks_1_link_stack_0_label','field_6177b80900d00'),(129916,40385,'blocks_1_link_stack_0_title','Our YouTube Channel'),(129917,40385,'_blocks_1_link_stack_0_title','field_6177b80f00d01'),(129918,40385,'blocks_1_link_stack_0_url','https://www.youtube.com/@biomedu'),(129919,40385,'_blocks_1_link_stack_0_url','field_6177b82200d02'),(129920,40385,'blocks_1_link_stack','1'),(129921,40385,'_blocks_1_link_stack','field_6177b7f600cff'),(129922,40385,'hide_hero','0'),(129923,40385,'_hide_hero','field_66a2380fcda39'),(129924,40385,'blocks_2_acfe_flexible_toggle',''),(129925,40385,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(129926,40385,'blocks_2_acfe_flexible_layout_title','Text Block'),(129927,40385,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(129928,40385,'blocks_2_options_theme','#ffffff'),(129929,40385,'_blocks_2_options_theme','field_6176830e2ad17'),(129930,40385,'blocks_2_options',''),(129931,40385,'_blocks_2_options','field_6176830e2ad16'),(129932,40385,'blocks_2_text_block_heading','Discover Our Blogs'),(129933,40385,'_blocks_2_text_block_heading','field_617669d413097'),(129934,40385,'blocks_2_text_block_content',''),(129935,40385,'_blocks_2_text_block_content','field_617669ec13098'),(129936,40385,'blocks_3_acfe_flexible_toggle',''),(129937,40385,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(129938,40385,'blocks_3_acfe_flexible_layout_title','Cards'),(129939,40385,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(129940,40385,'blocks_3_options_theme','#ffffff'),(129941,40385,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(129942,40385,'blocks_3_options_format','carousel'),(129943,40385,'_blocks_3_options_format','field_617a7b15245b5'),(129944,40385,'blocks_3_options_style','featured'),(129945,40385,'_blocks_3_options_style','field_6278ffb63484a'),(129946,40385,'blocks_3_options_cards_current_listing','0'),(129947,40385,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(129948,40385,'blocks_3_options_cards_content','post_type'),(129949,40385,'_blocks_3_options_cards_content','field_617aba6122688'),(129950,40385,'blocks_3_options_cards_post_type','post'),(129951,40385,'_blocks_3_options_cards_post_type','field_6194cc744d38b'),(129952,40385,'blocks_3_options_cards_posts_per_page','6'),(129953,40385,'_blocks_3_options_cards_posts_per_page','field_61a7565b1a0f2'),(129954,40385,'blocks_3_options',''),(129955,40385,'_blocks_3_options','field_617a7b15245b3'),(129956,40385,'blocks_4_acfe_flexible_toggle',''),(129957,40385,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(129958,40385,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(129959,40385,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(129960,40385,'blocks_4_options_theme','#ffffff'),(129961,40385,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(129962,40385,'blocks_4_options_reverse','0'),(129963,40385,'_blocks_4_options_reverse','field_61768049bb8ac'),(129964,40385,'blocks_4_options',''),(129965,40385,'_blocks_4_options','field_617682517c334'),(129966,40385,'blocks_4_split_5050_image','39165'),(129967,40385,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(129968,40385,'blocks_4_split_5050_video',''),(129969,40385,'_blocks_4_split_5050_video','field_6239f3160848a'),(129970,40385,'blocks_4_split_5050_content_title',''),(129971,40385,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(129972,40385,'blocks_4_split_5050_content_heading','IBA Membership'),(129973,40385,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(129974,40385,'blocks_4_split_5050_content_text','Explore the Intrinsic Biomechanics Association (IBA), your portal to a vibrant community and essential resources for Biomechanics Trainers™ &amp; Coaches™. Operated by Biomechanics Education Limited, IBA provides networking opportunities, standardized practices, and continuous education in biomechanics. As a member, you\'ll gain access to exclusive workshops, discounts on courses and products, mentorship, and a dynamic professional network. Join today to elevate your practice and remain at the cutting edge of biomechanical innovation.'),(129975,40385,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(129976,40385,'blocks_4_split_5050_content_actions',''),(129977,40385,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(129978,40385,'blocks_4_split_5050_content',''),(129979,40385,'_blocks_4_split_5050_content','field_61767afceb8ba'),(129980,40385,'blocks_5_acfe_flexible_toggle',''),(129981,40385,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(129982,40385,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(129983,40385,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(129984,40385,'blocks_5_testimonial_slider_content_title',''),(129985,40385,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(129986,40385,'blocks_5_testimonial_slider_content_heading','Testimonials'),(129987,40385,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(129988,40385,'blocks_5_testimonial_slider_content_text','Discover what people say about us'),(129989,40385,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(129990,40385,'blocks_5_testimonial_slider_content_actions',''),(129991,40385,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(129992,40385,'blocks_5_testimonial_slider_content',''),(129993,40385,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(129994,40385,'blocks_5_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"39169\";i:2;s:5:\"39170\";}'),(129995,40385,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(129996,40385,'blocks_5_testimonial_slider_ambassador_bool','0'),(129997,40385,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(130000,40386,'hero_style','default'),(130001,40386,'_hero_style','field_62051d9dc5324'),(130002,40386,'_thumbnail_id','38321'),(130003,40386,'__thumbnail_id','field_617570855ddaf'),(130004,40386,'hero_image_pos_x','right'),(130005,40386,'_hero_image_pos_x','field_62ec3d05390bb'),(130006,40386,'hero_image_pos_y','top'),(130007,40386,'_hero_image_pos_y','field_62ec3d05390bc'),(130008,40386,'hero_image_pos',''),(130009,40386,'_hero_image_pos','field_62ec3d05390ba'),(130010,40386,'hero_title','Resources'),(130011,40386,'_hero_title','field_617571fe285e8'),(130012,40386,'hero_text','Innovative content to support the growth of your organisation.'),(130013,40386,'_hero_text','field_6175723c285e9'),(130014,40386,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(130015,40386,'_hero_actions_0_button','field_61757281285eb'),(130016,40386,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-1\";s:6:\"target\";s:0:\"\";}'),(130017,40386,'_hero_actions_1_button','field_61757281285eb'),(130018,40386,'hero_actions','2'),(130019,40386,'_hero_actions','field_61757270285ea'),(130020,40386,'hero_icon',''),(130021,40386,'_hero_icon','field_61a6182199d03'),(130022,40386,'fft_hide_from_listings','0'),(130023,40386,'_fft_hide_from_listings','field_61f1320446ab2'),(130024,40386,'fft_page_format','default'),(130025,40386,'_fft_page_format','field_61ae213f1f218'),(130026,40386,'fft_hide_nav','0'),(130027,40386,'_fft_hide_nav','field_635bd5e43527c'),(130028,40386,'fft_hide_header_call_to_action','0'),(130029,40386,'_fft_hide_header_call_to_action','field_635bd6723527d'),(130030,40386,'fft_page_sitemap','0'),(130031,40386,'_fft_page_sitemap','field_61af9b34e8181'),(130032,40386,'blocks','a:6:{i:0;s:10:\"text_block\";i:1;s:10:\"link_stack\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:18:\"testimonial_slider\";}'),(130033,40386,'_blocks','field_6176696113096'),(130034,40386,'blocks_0_acfe_flexible_toggle',''),(130035,40386,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(130036,40386,'blocks_0_acfe_flexible_layout_title','Text Block'),(130037,40386,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(130038,40386,'blocks_0_options_theme','#f5f5f5'),(130039,40386,'_blocks_0_options_theme','field_6176830e2ad17'),(130040,40386,'blocks_0_options',''),(130041,40386,'_blocks_0_options','field_6176830e2ad16'),(130042,40386,'blocks_0_text_block_heading','Resources Available'),(130043,40386,'_blocks_0_text_block_heading','field_617669d413097'),(130044,40386,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(130045,40386,'_blocks_0_text_block_content','field_617669ec13098'),(130046,40386,'blocks_1_acfe_flexible_toggle',''),(130047,40386,'_blocks_1_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(130048,40386,'blocks_1_acfe_flexible_layout_title','Link Stack'),(130049,40386,'_blocks_1_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(130050,40386,'blocks_1_options_theme','#ffffff'),(130051,40386,'_blocks_1_options_theme','field_6177b758246af_field_6176830e2ad17'),(130052,40386,'blocks_1_options',''),(130053,40386,'_blocks_1_options','field_6177b758246ae'),(130054,40386,'blocks_1_link_stack_content_title',''),(130055,40386,'_blocks_1_link_stack_content_title','field_6177b7b600cf9'),(130056,40386,'blocks_1_link_stack_content_heading','About Our YouTube Channel '),(130057,40386,'_blocks_1_link_stack_content_heading','field_6177b7b600cfa'),(130058,40386,'blocks_1_link_stack_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(130059,40386,'_blocks_1_link_stack_content_text','field_6177b7b600cfb'),(130060,40386,'blocks_1_link_stack_content_actions',''),(130061,40386,'_blocks_1_link_stack_content_actions','field_6177b7b600cfc'),(130062,40386,'blocks_1_link_stack_content',''),(130063,40386,'_blocks_1_link_stack_content','field_6177b7b600cf8'),(130064,40386,'blocks_1_link_stack_0_label','Hosted by Rachel Frances Thompson'),(130065,40386,'_blocks_1_link_stack_0_label','field_6177b80900d00'),(130066,40386,'blocks_1_link_stack_0_title','Our YouTube Channel'),(130067,40386,'_blocks_1_link_stack_0_title','field_6177b80f00d01'),(130068,40386,'blocks_1_link_stack_0_url','https://www.youtube.com/@biomedu'),(130069,40386,'_blocks_1_link_stack_0_url','field_6177b82200d02'),(130070,40386,'blocks_1_link_stack','1'),(130071,40386,'_blocks_1_link_stack','field_6177b7f600cff'),(130072,40386,'hide_hero','0'),(130073,40386,'_hide_hero','field_66a2380fcda39'),(130074,40386,'blocks_2_acfe_flexible_toggle',''),(130075,40386,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(130076,40386,'blocks_2_acfe_flexible_layout_title','Text Block'),(130077,40386,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(130078,40386,'blocks_2_options_theme','#ffffff'),(130079,40386,'_blocks_2_options_theme','field_6176830e2ad17'),(130080,40386,'blocks_2_options',''),(130081,40386,'_blocks_2_options','field_6176830e2ad16'),(130082,40386,'blocks_2_text_block_heading','Discover Our Blogs'),(130083,40386,'_blocks_2_text_block_heading','field_617669d413097'),(130084,40386,'blocks_2_text_block_content',''),(130085,40386,'_blocks_2_text_block_content','field_617669ec13098'),(130086,40386,'blocks_3_acfe_flexible_toggle',''),(130087,40386,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(130088,40386,'blocks_3_acfe_flexible_layout_title','Cards'),(130089,40386,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(130090,40386,'blocks_3_options_theme','#ffffff'),(130091,40386,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(130092,40386,'blocks_3_options_format','carousel'),(130093,40386,'_blocks_3_options_format','field_617a7b15245b5'),(130094,40386,'blocks_3_options_style','featured'),(130095,40386,'_blocks_3_options_style','field_6278ffb63484a'),(130096,40386,'blocks_3_options_cards_current_listing','0'),(130097,40386,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(130098,40386,'blocks_3_options_cards_content','post_type'),(130099,40386,'_blocks_3_options_cards_content','field_617aba6122688'),(130100,40386,'blocks_3_options_cards_post_type','post'),(130101,40386,'_blocks_3_options_cards_post_type','field_6194cc744d38b'),(130102,40386,'blocks_3_options_cards_posts_per_page','6'),(130103,40386,'_blocks_3_options_cards_posts_per_page','field_61a7565b1a0f2'),(130104,40386,'blocks_3_options',''),(130105,40386,'_blocks_3_options','field_617a7b15245b3'),(130106,40386,'blocks_4_acfe_flexible_toggle',''),(130107,40386,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(130108,40386,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(130109,40386,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(130110,40386,'blocks_4_options_theme','#ffffff'),(130111,40386,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(130112,40386,'blocks_4_options_reverse','0'),(130113,40386,'_blocks_4_options_reverse','field_61768049bb8ac'),(130114,40386,'blocks_4_options',''),(130115,40386,'_blocks_4_options','field_617682517c334'),(130116,40386,'blocks_4_split_5050_image','39165'),(130117,40386,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(130118,40386,'blocks_4_split_5050_video',''),(130119,40386,'_blocks_4_split_5050_video','field_6239f3160848a'),(130120,40386,'blocks_4_split_5050_content_title',''),(130121,40386,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(130122,40386,'blocks_4_split_5050_content_heading','IBA Membership'),(130123,40386,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(130124,40386,'blocks_4_split_5050_content_text','Explore the Intrinsic Biomechanics Association (IBA), your portal to a vibrant community and essential resources for Biomechanics Trainers™ &amp; Coaches™. Operated by Biomechanics Education Limited, IBA provides networking opportunities, standardized practices, and continuous education in biomechanics. As a member, you\'ll gain access to exclusive workshops, discounts on courses and products, mentorship, and a dynamic professional network. Join today to elevate your practice and remain at the cutting edge of biomechanical innovation.'),(130125,40386,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(130126,40386,'blocks_4_split_5050_content_actions','1'),(130127,40386,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(130128,40386,'blocks_4_split_5050_content',''),(130129,40386,'_blocks_4_split_5050_content','field_61767afceb8ba'),(130130,40386,'blocks_5_acfe_flexible_toggle',''),(130131,40386,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(130132,40386,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(130133,40386,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(130134,40386,'blocks_5_testimonial_slider_content_title',''),(130135,40386,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(130136,40386,'blocks_5_testimonial_slider_content_heading','Testimonials'),(130137,40386,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(130138,40386,'blocks_5_testimonial_slider_content_text','Discover what people say about us'),(130139,40386,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(130140,40386,'blocks_5_testimonial_slider_content_actions',''),(130141,40386,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(130142,40386,'blocks_5_testimonial_slider_content',''),(130143,40386,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(130144,40386,'blocks_5_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"39169\";i:2;s:5:\"39170\";}'),(130145,40386,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(130146,40386,'blocks_5_testimonial_slider_ambassador_bool','0'),(130147,40386,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(130148,40386,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Become an IBA Member\";s:3:\"url\";s:49:\"https://biomechanicseducation.com/iba-membership/\";s:6:\"target\";s:0:\"\";}'),(130149,40386,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(130150,40387,'_wp_attached_file','2023/11/IMG_1565-scaled.jpg'),(130151,40387,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:27:\"2023/11/IMG_1565-scaled.jpg\";s:8:\"filesize\";i:370026;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"IMG_1565-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74843;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"IMG_1565-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112078;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1565-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27887;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"IMG_1565-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60075;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"IMG_1565-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162501;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"IMG_1565-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:255811;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"IMG_1565-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34191;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"IMG_1565-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101651;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"IMG_1565-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155258;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"IMG_1565-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27903;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"IMG_1565-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74843;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"IMG_1565-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112078;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"IMG_1565-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28081;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"IMG_1565-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76466;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"IMG_1565-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114653;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"IMG_1565-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29739;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"IMG_1565-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83403;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"IMG_1565-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126048;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"IMG_1565-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25784;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"IMG_1565-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68014;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"IMG_1565-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102307;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"IMG_1565.jpg\";}'),(130153,37121,'_thumbnail_id','40387'),(130154,40388,'hide_hero','0'),(130155,40388,'_hide_hero','field_66a2380fcda39'),(130156,40388,'hero_title',''),(130157,40388,'_hero_title','field_617571fe285e8'),(130158,40388,'hero_text',''),(130159,40388,'_hero_text','field_6175723c285e9'),(130160,40388,'hero_actions',''),(130161,40388,'_hero_actions','field_61757270285ea'),(130162,40388,'hero_style','default'),(130163,40388,'_hero_style','field_62051d9dc5324'),(130164,40388,'hero_image_pos_x','right'),(130165,40388,'_hero_image_pos_x','field_62ec3d05390bb'),(130166,40388,'hero_image_pos_y','top'),(130167,40388,'_hero_image_pos_y','field_62ec3d05390bc'),(130168,40388,'hero_image_pos',''),(130169,40388,'_hero_image_pos','field_62ec3d05390ba'),(130170,40388,'fft_hide_from_listings','0'),(130171,40388,'_fft_hide_from_listings','field_61f1320446ab2'),(130172,40388,'post_format',''),(130173,40388,'_post_format','field_61756bfb51898'),(130174,40388,'post_author',''),(130175,40388,'_post_author','field_62ec389d22113'),(130176,40388,'post_reviewer',''),(130177,40388,'_post_reviewer','field_627140a2a9800'),(130178,40388,'post_table_of_contents','0'),(130179,40388,'_post_table_of_contents','field_65c503bc846a6'),(130180,40388,'_thumbnail_id','40387'),(130181,40388,'__thumbnail_id','field_617570855ddaf'),(130303,40391,'_wp_attached_file','2023/02/Photo-2021-11-20-09.56.15-am-scaled.jpg'),(130304,40391,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:47:\"2023/02/Photo-2021-11-20-09.56.15-am-scaled.jpg\";s:8:\"filesize\";i:544599;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Photo-2021-11-20-09.56.15-am-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90557;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Photo-2021-11-20-09.56.15-am-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134777;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Photo-2021-11-20-09.56.15-am-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34189;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Photo-2021-11-20-09.56.15-am-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72720;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"Photo-2021-11-20-09.56.15-am-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196584;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:42:\"Photo-2021-11-20-09.56.15-am-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:336507;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:40:\"Photo-2021-11-20-09.56.15-am-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41795;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:40:\"Photo-2021-11-20-09.56.15-am-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118846;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:42:\"Photo-2021-11-20-09.56.15-am-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186882;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:40:\"Photo-2021-11-20-09.56.15-am-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34146;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:40:\"Photo-2021-11-20-09.56.15-am-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90557;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:41:\"Photo-2021-11-20-09.56.15-am-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134777;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:40:\"Photo-2021-11-20-09.56.15-am-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35451;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:40:\"Photo-2021-11-20-09.56.15-am-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96115;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:41:\"Photo-2021-11-20-09.56.15-am-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150407;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:40:\"Photo-2021-11-20-09.56.15-am-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36213;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:40:\"Photo-2021-11-20-09.56.15-am-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97949;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:41:\"Photo-2021-11-20-09.56.15-am-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147699;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:40:\"Photo-2021-11-20-09.56.15-am-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31081;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:40:\"Photo-2021-11-20-09.56.15-am-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79455;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:41:\"Photo-2021-11-20-09.56.15-am-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117716;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:32:\"Photo-2021-11-20-09.56.15-am.jpg\";}'),(130306,35126,'_thumbnail_id','40391'),(130307,40392,'hide_hero','0'),(130308,40392,'_hide_hero','field_66a2380fcda39'),(130309,40392,'hero_title',''),(130310,40392,'_hero_title','field_617571fe285e8'),(130311,40392,'hero_text',''),(130312,40392,'_hero_text','field_6175723c285e9'),(130313,40392,'hero_actions',''),(130314,40392,'_hero_actions','field_61757270285ea'),(130315,40392,'hero_style','default'),(130316,40392,'_hero_style','field_62051d9dc5324'),(130317,40392,'hero_image_pos_x','right'),(130318,40392,'_hero_image_pos_x','field_62ec3d05390bb'),(130319,40392,'hero_image_pos_y','top'),(130320,40392,'_hero_image_pos_y','field_62ec3d05390bc'),(130321,40392,'hero_image_pos',''),(130322,40392,'_hero_image_pos','field_62ec3d05390ba'),(130323,40392,'fft_hide_from_listings','0'),(130324,40392,'_fft_hide_from_listings','field_61f1320446ab2'),(130325,40392,'post_format',''),(130326,40392,'_post_format','field_61756bfb51898'),(130327,40392,'post_author',''),(130328,40392,'_post_author','field_62ec389d22113'),(130329,40392,'post_reviewer',''),(130330,40392,'_post_reviewer','field_627140a2a9800'),(130331,40392,'post_table_of_contents','0'),(130332,40392,'_post_table_of_contents','field_65c503bc846a6'),(130333,40392,'_thumbnail_id','40391'),(130334,40392,'__thumbnail_id','field_617570855ddaf'),(130336,40393,'_wp_attached_file','2022/10/BE_Worshop_30thAug-7-scaled.jpg'),(130337,40393,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2022/10/BE_Worshop_30thAug-7-scaled.jpg\";s:8:\"filesize\";i:584722;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127499;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-7-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191793;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44561;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102401;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-7-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274341;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-7-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:417996;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52722;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156449;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-7-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:236917;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44503;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126709;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-7-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190319;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43343;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121433;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-7-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182807;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47501;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136751;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-7-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204798;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40413;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111933;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-7-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167233;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725012668\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"31\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_30thAug-7.jpg\";}'),(130338,40394,'_edit_lock','1745590270:22'),(130340,34054,'_thumbnail_id','40393'),(130341,40395,'hide_hero','0'),(130342,40395,'_hide_hero','field_66a2380fcda39'),(130343,40395,'hero_title',''),(130344,40395,'_hero_title','field_617571fe285e8'),(130345,40395,'hero_text',''),(130346,40395,'_hero_text','field_6175723c285e9'),(130347,40395,'hero_actions',''),(130348,40395,'_hero_actions','field_61757270285ea'),(130349,40395,'hero_style','default'),(130350,40395,'_hero_style','field_62051d9dc5324'),(130351,40395,'hero_image_pos_x','right'),(130352,40395,'_hero_image_pos_x','field_62ec3d05390bb'),(130353,40395,'hero_image_pos_y','top'),(130354,40395,'_hero_image_pos_y','field_62ec3d05390bc'),(130355,40395,'hero_image_pos',''),(130356,40395,'_hero_image_pos','field_62ec3d05390ba'),(130357,40395,'fft_hide_from_listings','0'),(130358,40395,'_fft_hide_from_listings','field_61f1320446ab2'),(130359,40395,'post_format',''),(130360,40395,'_post_format','field_61756bfb51898'),(130361,40395,'post_author',''),(130362,40395,'_post_author','field_62ec389d22113'),(130363,40395,'post_reviewer',''),(130364,40395,'_post_reviewer','field_627140a2a9800'),(130365,40395,'post_table_of_contents','0'),(130366,40395,'_post_table_of_contents','field_65c503bc846a6'),(130367,40395,'_thumbnail_id','40393'),(130368,40395,'__thumbnail_id','field_617570855ddaf'),(130369,40394,'_edit_last','15'),(130370,40396,'_wp_attached_file','2022/12/BiomechanicsEducation_Workshop_Fareham_web-12.jpg'),(130371,40396,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:4:\"file\";s:57:\"2022/12/BiomechanicsEducation_Workshop_Fareham_web-12.jpg\";s:8:\"filesize\";i:2084745;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-12-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93008;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"BiomechanicsEducation_Workshop_Fareham_web-12-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137287;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-12-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35317;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-12-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75197;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"BiomechanicsEducation_Workshop_Fareham_web-12-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197261;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-12-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43518;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-12-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124249;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:59:\"BiomechanicsEducation_Workshop_Fareham_web-12-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190055;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-12-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35292;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-12-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92431;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:58:\"BiomechanicsEducation_Workshop_Fareham_web-12-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136662;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-12-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38120;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-12-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105687;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:58:\"BiomechanicsEducation_Workshop_Fareham_web-12-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159707;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-12-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37350;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-12-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100485;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:58:\"BiomechanicsEducation_Workshop_Fareham_web-12-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149909;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-12-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32824;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-12-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84277;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:58:\"BiomechanicsEducation_Workshop_Fareham_web-12-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124304;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1686307905\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(130373,40397,'_thumbnail_id','40396'),(130374,40397,'__thumbnail_id','field_617570855ddaf'),(130375,40397,'hide_hero','0'),(130376,40397,'_hide_hero','field_66a2380fcda39'),(130377,40397,'hero_title',''),(130378,40397,'_hero_title','field_617571fe285e8'),(130379,40397,'hero_text',''),(130380,40397,'_hero_text','field_6175723c285e9'),(130381,40397,'hero_actions',''),(130382,40397,'_hero_actions','field_61757270285ea'),(130383,40397,'hero_style','default'),(130384,40397,'_hero_style','field_62051d9dc5324'),(130385,40397,'hero_image_pos_x','right'),(130386,40397,'_hero_image_pos_x','field_62ec3d05390bb'),(130387,40397,'hero_image_pos_y','top'),(130388,40397,'_hero_image_pos_y','field_62ec3d05390bc'),(130389,40397,'hero_image_pos',''),(130390,40397,'_hero_image_pos','field_62ec3d05390ba'),(130391,40397,'fft_hide_from_listings','0'),(130392,40397,'_fft_hide_from_listings','field_61f1320446ab2'),(130393,40397,'post_format',''),(130394,40397,'_post_format','field_61756bfb51898'),(130395,40397,'post_author',''),(130396,40397,'_post_author','field_62ec389d22113'),(130397,40397,'post_reviewer',''),(130398,40397,'_post_reviewer','field_627140a2a9800'),(130399,40397,'post_table_of_contents','0'),(130400,40397,'_post_table_of_contents','field_65c503bc846a6'),(130401,40398,'_wp_attached_file','2022/07/BE_Worshop_30thAug-14-scaled.jpg'),(130402,40398,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2022/07/BE_Worshop_30thAug-14-scaled.jpg\";s:8:\"filesize\";i:390280;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-14-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88847;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-14-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131211;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-14-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33645;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-14-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72078;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-14-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185667;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-14-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:280302;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-14-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39472;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-14-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109727;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-14-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161854;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-14-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33599;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-14-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88322;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-14-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130502;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-14-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33068;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-14-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86332;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-14-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126031;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-14-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35166;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-14-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94116;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-14-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138949;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-14-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31267;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-14-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81185;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-14-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119337;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725014230\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"68\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-14.jpg\";}'),(130404,40399,'_thumbnail_id','40398'),(130405,40399,'__thumbnail_id','field_617570855ddaf'),(130406,40399,'hide_hero','0'),(130407,40399,'_hide_hero','field_66a2380fcda39'),(130408,40399,'hero_title',''),(130409,40399,'_hero_title','field_617571fe285e8'),(130410,40399,'hero_text',''),(130411,40399,'_hero_text','field_6175723c285e9'),(130412,40399,'hero_actions',''),(130413,40399,'_hero_actions','field_61757270285ea'),(130414,40399,'hero_style','default'),(130415,40399,'_hero_style','field_62051d9dc5324'),(130416,40399,'hero_image_pos_x','right'),(130417,40399,'_hero_image_pos_x','field_62ec3d05390bb'),(130418,40399,'hero_image_pos_y','top'),(130419,40399,'_hero_image_pos_y','field_62ec3d05390bc'),(130420,40399,'hero_image_pos',''),(130421,40399,'_hero_image_pos','field_62ec3d05390ba'),(130422,40399,'fft_hide_from_listings','0'),(130423,40399,'_fft_hide_from_listings','field_61f1320446ab2'),(130424,40399,'post_format',''),(130425,40399,'_post_format','field_61756bfb51898'),(130426,40399,'post_author',''),(130427,40399,'_post_author','field_62ec389d22113'),(130428,40399,'post_reviewer',''),(130429,40399,'_post_reviewer','field_627140a2a9800'),(130430,40399,'post_table_of_contents','0'),(130431,40399,'_post_table_of_contents','field_65c503bc846a6'),(130432,40394,'form_action','https://analytics-eu.clickdimensions.com/forms/h/aZXTzqdXOkSsA0GdWlyuA'),(130433,40394,'_form_action','field_61a50501a49c0'),(130434,40394,'form_fields_0_acfe_layout_col','6'),(130435,40394,'_form_fields_0_acfe_layout_col','field_layout_634557f2ac428_col'),(130436,40394,'form_fields_0_layout_settings_required','1'),(130437,40394,'_form_fields_0_layout_settings_required','field_63457a5c4b908'),(130438,40394,'form_fields_0_layout_settings_hidden','0'),(130439,40394,'_form_fields_0_layout_settings_hidden','field_63457a704b909'),(130440,40394,'form_fields_0_layout_settings',''),(130441,40394,'_form_fields_0_layout_settings','field_layout_634557f2ac428_settings'),(130442,40394,'form_fields_0_acfe_flexible_layout_title','First Name'),(130443,40394,'_form_fields_0_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(130444,40394,'form_fields_0_name','firstname'),(130445,40394,'_form_fields_0_name','field_634558471d0f0'),(130446,40394,'form_fields_0_label','First Name'),(130447,40394,'_form_fields_0_label','field_634558271d0ef'),(130448,40394,'form_fields_0_description',''),(130449,40394,'_form_fields_0_description','field_6389047cb4655'),(130450,40394,'form_fields_1_acfe_layout_col','6'),(130451,40394,'_form_fields_1_acfe_layout_col','field_layout_634557f2ac428_col'),(130452,40394,'form_fields_1_layout_settings_required','1'),(130453,40394,'_form_fields_1_layout_settings_required','field_63457a5c4b908'),(130454,40394,'form_fields_1_layout_settings_hidden','0'),(130455,40394,'_form_fields_1_layout_settings_hidden','field_63457a704b909'),(130456,40394,'form_fields_1_layout_settings',''),(130457,40394,'_form_fields_1_layout_settings','field_layout_634557f2ac428_settings'),(130458,40394,'form_fields_1_acfe_flexible_layout_title','Last Name'),(130459,40394,'_form_fields_1_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(130460,40394,'form_fields_1_name','lastname'),(130461,40394,'_form_fields_1_name','field_634558471d0f0'),(130462,40394,'form_fields_1_label','Last Name'),(130463,40394,'_form_fields_1_label','field_634558271d0ef'),(130464,40394,'form_fields_1_description',''),(130465,40394,'_form_fields_1_description','field_6389047cb4655'),(130466,40394,'form_fields_2_acfe_layout_col','12'),(130467,40394,'_form_fields_2_acfe_layout_col','field_layout_634558b01d0f2_col'),(130468,40394,'form_fields_2_layout_settings_required','1'),(130469,40394,'_form_fields_2_layout_settings_required','field_63457a5c4b908'),(130470,40394,'form_fields_2_layout_settings_hidden','0'),(130471,40394,'_form_fields_2_layout_settings_hidden','field_63457a704b909'),(130472,40394,'form_fields_2_layout_settings',''),(130473,40394,'_form_fields_2_layout_settings','field_layout_634558b01d0f2_settings'),(130474,40394,'form_fields_2_acfe_flexible_layout_title','Email'),(130475,40394,'_form_fields_2_acfe_flexible_layout_title','field_layout_634558b01d0f2_title'),(130476,40394,'form_fields_2_name','email'),(130477,40394,'_form_fields_2_name','field_634558b01d0f4'),(130478,40394,'form_fields_2_label','Email'),(130479,40394,'_form_fields_2_label','field_634558b01d0f3'),(130480,40394,'form_fields_2_description','This is how we\'ll send you a copy of your guide.'),(130481,40394,'_form_fields_2_description','field_6389049db4656'),(130482,40394,'form_fields_3_acfe_layout_col','12'),(130483,40394,'_form_fields_3_acfe_layout_col','field_layout_634557f2ac428_col'),(130484,40394,'form_fields_3_layout_settings_required','1'),(130485,40394,'_form_fields_3_layout_settings_required','field_63457a5c4b908'),(130486,40394,'form_fields_3_layout_settings_hidden','1'),(130487,40394,'_form_fields_3_layout_settings_hidden','field_63457a704b909'),(130488,40394,'form_fields_3_layout_settings',''),(130489,40394,'_form_fields_3_layout_settings','field_layout_634557f2ac428_settings'),(130490,40394,'form_fields_3_acfe_flexible_layout_title','Phone Number'),(130491,40394,'_form_fields_3_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(130492,40394,'form_fields_3_name','contactnumber'),(130493,40394,'_form_fields_3_name','field_634558471d0f0'),(130494,40394,'form_fields_3_label','Phone Number'),(130495,40394,'_form_fields_3_label','field_634558271d0ef'),(130496,40394,'form_fields_3_description','So that we can provide you with quick, easy information about your enquiry.'),(130497,40394,'_form_fields_3_description','field_6389047cb4655'),(130500,40394,'form_fields_4_layout_settings_required','1'),(130501,40394,'_form_fields_4_layout_settings_required','field_63457a5c4b908'),(130502,40394,'form_fields_4_layout_settings_hidden','1'),(130503,40394,'_form_fields_4_layout_settings_hidden','field_63457a704b909'),(130516,40394,'form_fields_5_layout_settings_required','1'),(130517,40394,'_form_fields_5_layout_settings_required','field_63457a5c4b908'),(130518,40394,'form_fields_5_layout_settings_hidden','1'),(130519,40394,'_form_fields_5_layout_settings_hidden','field_63457a704b909'),(130540,40394,'form_fields','a:6:{i:0;s:4:\"text\";i:1;s:4:\"text\";i:2;s:5:\"email\";i:3;s:4:\"text\";i:4;s:6:\"select\";i:5;s:6:\"select\";}'),(130541,40394,'_form_fields','field_634557ea1d0ee'),(130542,40394,'form_fields_code',''),(130543,40394,'_form_fields_code','field_61a4f967fdc46'),(130544,40394,'form_hidden_fields_code',''),(130545,40394,'_form_hidden_fields_code','field_61a50668a49c3'),(130546,40394,'form_small_print','By submitting this form, you agree to Biomechanics Education processing your data in accordance with our <a href=\"https://biomechanicseducation.com/privacy-policy/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a> and <a href=\"https://biomechanicseducation.com/terms-conditions/\" target=\"_blank\" rel=\"noopener\">Terms &amp; Conditions.</a>'),(130547,40394,'_form_small_print','field_61a50510a49c1'),(130548,40394,'form_button_label',''),(130549,40394,'_form_button_label','field_61a50530a49c2'),(130550,40394,'form_gtm_id',''),(130551,40394,'_form_gtm_id','field_63dbc2797b66f'),(130553,40400,'hide_hero','0'),(130554,40400,'_hide_hero','field_66a2380fcda39'),(130555,40400,'hero_title','Blogs'),(130556,40400,'_hero_title','field_617571fe285e8'),(130557,40400,'hero_text','Explore Insights and Expert Tips on Everything Biomechanics, Including Movement, Performance and Injury Prevention'),(130558,40400,'_hero_text','field_6175723c285e9'),(130559,40400,'hero_actions',''),(130560,40400,'_hero_actions','field_61757270285ea'),(130561,40400,'hero_style','default'),(130562,40400,'_hero_style','field_62051d9dc5324'),(130563,40400,'hero_image_pos_x','right'),(130564,40400,'_hero_image_pos_x','field_62ec3d05390bb'),(130565,40400,'hero_image_pos_y','top'),(130566,40400,'_hero_image_pos_y','field_62ec3d05390bc'),(130567,40400,'hero_image_pos',''),(130568,40400,'_hero_image_pos','field_62ec3d05390ba'),(130569,40400,'fft_hide_from_listings','0'),(130570,40400,'_fft_hide_from_listings','field_61f1320446ab2'),(130571,40400,'fft_page_format','default'),(130572,40400,'_fft_page_format','field_61ae213f1f218'),(130573,40400,'fft_hide_nav','0'),(130574,40400,'_fft_hide_nav','field_635bd5e43527c'),(130575,40400,'fft_hide_header_call_to_action','0'),(130576,40400,'_fft_hide_header_call_to_action','field_635bd6723527d'),(130577,40400,'fft_page_sitemap','0'),(130578,40400,'_fft_page_sitemap','field_61af9b34e8181'),(130579,40400,'blocks','a:1:{i:0;s:5:\"cards\";}'),(130580,40400,'_blocks','field_6176696113096'),(130581,40400,'blocks_0_acfe_flexible_toggle',''),(130582,40400,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(130583,40400,'blocks_0_acfe_flexible_layout_title','Cards'),(130584,40400,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(130585,40400,'blocks_0_options_theme','#ffffff'),(130586,40400,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(130587,40400,'blocks_0_options_format','grid'),(130588,40400,'_blocks_0_options_format','field_617a7b15245b5'),(130589,40400,'blocks_0_options_style','default'),(130590,40400,'_blocks_0_options_style','field_6278ffb63484a'),(130591,40400,'blocks_0_options_cards_current_listing','0'),(130592,40400,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(130593,40400,'blocks_0_options_cards_content','post_type'),(130594,40400,'_blocks_0_options_cards_content','field_617aba6122688'),(130595,40400,'blocks_0_options_cards_post_type','post'),(130596,40400,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(130597,40400,'blocks_0_options_cards_posts_per_page','6'),(130598,40400,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(130599,40400,'blocks_0_options',''),(130600,40400,'_blocks_0_options','field_617a7b15245b3'),(130601,40400,'blocks_0_options_cards_term','5'),(130602,40400,'_blocks_0_options_cards_term','field_6193f7c180895'),(130603,40400,'blocks_0_options_cards_pagination','0'),(130604,40400,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(130605,40400,'blocks_0_options_cards_filter_taxonomy',''),(130606,40400,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(130607,40400,'_thumbnail_id',''),(130608,40400,'__thumbnail_id','field_617570855ddaf'),(130610,40401,'hero_style','default'),(130611,40401,'_hero_style','field_62051d9dc5324'),(130612,40401,'hero_image_pos_x','right'),(130613,40401,'_hero_image_pos_x','field_62ec3d05390bb'),(130614,40401,'hero_image_pos_y','top'),(130615,40401,'_hero_image_pos_y','field_62ec3d05390bc'),(130616,40401,'hero_image_pos',''),(130617,40401,'_hero_image_pos','field_62ec3d05390ba'),(130618,40401,'hero_title','Getting Started'),(130619,40401,'_hero_title','field_617571fe285e8'),(130620,40401,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(130621,40401,'_hero_text','field_6175723c285e9'),(130622,40401,'hero_actions',''),(130623,40401,'_hero_actions','field_61757270285ea'),(130624,40401,'hero_icon','bars'),(130625,40401,'_hero_icon','field_61a6182199d03'),(130626,40401,'fft_hide_from_listings','0'),(130627,40401,'_fft_hide_from_listings','field_61f1320446ab2'),(130628,40401,'fft_page_format','default'),(130629,40401,'_fft_page_format','field_61ae213f1f218'),(130630,40401,'fft_hide_nav','0'),(130631,40401,'_fft_hide_nav','field_635bd5e43527c'),(130632,40401,'fft_hide_header_call_to_action','0'),(130633,40401,'_fft_hide_header_call_to_action','field_635bd6723527d'),(130634,40401,'fft_page_sitemap','0'),(130635,40401,'_fft_page_sitemap','field_61af9b34e8181'),(130636,40401,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:4:\"form\";}'),(130637,40401,'_blocks','field_6176696113096'),(130638,40401,'hide_hero','0'),(130639,40401,'_hide_hero','field_66a2380fcda39'),(130640,40401,'blocks_0_acfe_flexible_toggle',''),(130641,40401,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(130642,40401,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(130643,40401,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(130644,40401,'blocks_0_options_theme','#ffffff'),(130645,40401,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(130646,40401,'blocks_0_options_reverse','0'),(130647,40401,'_blocks_0_options_reverse','field_61768049bb8ac'),(130648,40401,'blocks_0_options',''),(130649,40401,'_blocks_0_options','field_617682517c334'),(130650,40401,'blocks_0_split_5050_image','39152'),(130651,40401,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(130652,40401,'blocks_0_split_5050_video',''),(130653,40401,'_blocks_0_split_5050_video','field_6239f3160848a'),(130654,40401,'blocks_0_split_5050_content_title',''),(130655,40401,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(130656,40401,'blocks_0_split_5050_content_heading','About Our Career Guides'),(130657,40401,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(130658,40401,'blocks_0_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(130659,40401,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(130660,40401,'blocks_0_split_5050_content_actions',''),(130661,40401,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(130662,40401,'blocks_0_split_5050_content',''),(130663,40401,'_blocks_0_split_5050_content','field_61767afceb8ba'),(130664,40401,'blocks_1_acfe_flexible_toggle',''),(130665,40401,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(130666,40401,'blocks_1_acfe_flexible_layout_title','Template'),(130667,40401,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(130668,40401,'blocks_1_template','39087'),(130669,40401,'_blocks_1_template','field_617bdd570fe01'),(130670,40401,'blocks_2_acfe_flexible_toggle',''),(130671,40401,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(130672,40401,'blocks_2_acfe_flexible_layout_title','Text Block'),(130673,40401,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(130674,40401,'blocks_2_options_theme','#ffffff'),(130675,40401,'_blocks_2_options_theme','field_6176830e2ad17'),(130676,40401,'blocks_2_options',''),(130677,40401,'_blocks_2_options','field_6176830e2ad16'),(130678,40401,'blocks_2_text_block_heading','Learn More About Biomechanics in Different Sectors'),(130679,40401,'_blocks_2_text_block_heading','field_617669d413097'),(130680,40401,'blocks_2_text_block_content',''),(130681,40401,'_blocks_2_text_block_content','field_617669ec13098'),(130682,40401,'blocks_3_acfe_flexible_toggle',''),(130683,40401,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(130684,40401,'blocks_3_acfe_flexible_layout_title','Cards'),(130685,40401,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(130686,40401,'blocks_3_options_theme','#ffffff'),(130687,40401,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(130688,40401,'blocks_3_options_format','carousel'),(130689,40401,'_blocks_3_options_format','field_617a7b15245b5'),(130690,40401,'blocks_3_options_style','default'),(130691,40401,'_blocks_3_options_style','field_6278ffb63484a'),(130692,40401,'blocks_3_options_cards_current_listing','0'),(130693,40401,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(130694,40401,'blocks_3_options_cards_content','custom'),(130695,40401,'_blocks_3_options_cards_content','field_617aba6122688'),(130696,40401,'blocks_3_options',''),(130697,40401,'_blocks_3_options','field_617a7b15245b3'),(130698,40401,'blocks_3_cards_custom_0_image','39215'),(130699,40401,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(130700,40401,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(130701,40401,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(130702,40401,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(130703,40401,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(130704,40401,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(130705,40401,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(130706,40401,'blocks_3_cards_custom_1_image','39243'),(130707,40401,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(130708,40401,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(130709,40401,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(130710,40401,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(130711,40401,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(130712,40401,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(130713,40401,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(130714,40401,'blocks_3_cards_custom_2_image','39247'),(130715,40401,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(130716,40401,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(130717,40401,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(130718,40401,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(130719,40401,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(130720,40401,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(130721,40401,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(130722,40401,'blocks_3_cards_custom_3_image','39256'),(130723,40401,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(130724,40401,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(130725,40401,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(130726,40401,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(130727,40401,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(130728,40401,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(130729,40401,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(130730,40401,'blocks_3_cards_custom_4_image','39251'),(130731,40401,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(130732,40401,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches'),(130733,40401,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(130734,40401,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(130735,40401,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(130736,40401,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(130737,40401,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(130738,40401,'blocks_3_cards_custom_5_image','39240'),(130739,40401,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(130740,40401,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(130741,40401,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(130742,40401,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(130743,40401,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(130744,40401,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(130745,40401,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(130746,40401,'blocks_3_cards_custom_6_image','39260'),(130747,40401,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(130748,40401,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(130749,40401,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(130750,40401,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(130751,40401,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(130752,40401,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(130753,40401,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(130754,40401,'blocks_3_cards_custom','7'),(130755,40401,'_blocks_3_cards_custom','field_6194cbf84d386'),(130756,40401,'blocks_4_acfe_flexible_toggle',''),(130757,40401,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(130758,40401,'blocks_4_acfe_flexible_layout_title','Form'),(130759,40401,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(130760,40401,'blocks_4_row_content_format','standard'),(130761,40401,'_blocks_4_row_content_format','field_6481ead962881'),(130762,40401,'blocks_4_row_content_title','Ready to get started?'),(130763,40401,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(130764,40401,'blocks_4_row_content_heading','Ready to get started?'),(130765,40401,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(130766,40401,'blocks_4_row_content_text','Complete The Form to Get Your Free Price Guide'),(130767,40401,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(130768,40401,'blocks_4_row_content_actions',''),(130769,40401,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(130770,40401,'blocks_4_row_content',''),(130771,40401,'_blocks_4_row_content','field_61a0f5f5b3db0'),(130772,40401,'blocks_4_row_form',''),(130773,40401,'_blocks_4_row_form','field_61a4ff2c0b08e'),(130774,40401,'blocks_4_row_form_button_label',''),(130775,40401,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(130776,40401,'_thumbnail_id',''),(130777,40401,'__thumbnail_id','field_617570855ddaf'),(130778,40402,'hide_hero','0'),(130779,40402,'_hide_hero','field_66a2380fcda39'),(130780,40402,'hero_title','Biomechanics and Personal Training'),(130781,40402,'_hero_title','field_617571fe285e8'),(130782,40402,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(130783,40402,'_hero_text','field_6175723c285e9'),(130784,40402,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(130785,40402,'_hero_actions_0_button','field_61757281285eb'),(130786,40402,'hero_actions','1'),(130787,40402,'_hero_actions','field_61757270285ea'),(130788,40402,'hero_style','default'),(130789,40402,'_hero_style','field_62051d9dc5324'),(130790,40402,'_thumbnail_id','39215'),(130791,40402,'__thumbnail_id','field_617570855ddaf'),(130792,40402,'hero_image_pos_x','right'),(130793,40402,'_hero_image_pos_x','field_62ec3d05390bb'),(130794,40402,'hero_image_pos_y','top'),(130795,40402,'_hero_image_pos_y','field_62ec3d05390bc'),(130796,40402,'hero_image_pos',''),(130797,40402,'_hero_image_pos','field_62ec3d05390ba'),(130798,40402,'fft_hide_from_listings','0'),(130799,40402,'_fft_hide_from_listings','field_61f1320446ab2'),(130800,40402,'fft_page_format','default'),(130801,40402,'_fft_page_format','field_61ae213f1f218'),(130802,40402,'fft_hide_nav','0'),(130803,40402,'_fft_hide_nav','field_635bd5e43527c'),(130804,40402,'fft_hide_header_call_to_action','0'),(130805,40402,'_fft_hide_header_call_to_action','field_635bd6723527d'),(130806,40402,'fft_page_sitemap','0'),(130807,40402,'_fft_page_sitemap','field_61af9b34e8181'),(130808,40402,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(130809,40402,'_blocks','field_6176696113096'),(130810,40402,'blocks_0_acfe_flexible_toggle',''),(130811,40402,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(130812,40402,'blocks_0_acfe_flexible_layout_title','Template'),(130813,40402,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(130814,40402,'blocks_0_template','39087'),(130815,40402,'_blocks_0_template','field_617bdd570fe01'),(130816,40402,'blocks_1_acfe_flexible_toggle',''),(130817,40402,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(130818,40402,'blocks_1_acfe_flexible_layout_title','Steps'),(130819,40402,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(130820,40402,'blocks_1_row_content_title',''),(130821,40402,'_blocks_1_row_content_title','field_64888cd1e26e0'),(130822,40402,'blocks_1_row_content_heading','Benefits of training with us'),(130823,40402,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(130824,40402,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(130825,40402,'_blocks_1_row_content_text','field_64888ce2e26e2'),(130826,40402,'blocks_1_row_content_actions',''),(130827,40402,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(130828,40402,'blocks_1_row_content',''),(130829,40402,'_blocks_1_row_content','field_64888cb0e26df'),(130830,40402,'blocks_1_steps_0_icon','progression.svg'),(130831,40402,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(130832,40402,'blocks_1_steps_0_title','Earning potential'),(130833,40402,'_blocks_1_steps_0_title','field_64888d94e26e7'),(130834,40402,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(130835,40402,'_blocks_1_steps_0_text','field_64888d99e26e8'),(130836,40402,'blocks_1_steps_1_icon','support.svg'),(130837,40402,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(130838,40402,'blocks_1_steps_1_title','Lifetime Learning Promise'),(130839,40402,'_blocks_1_steps_1_title','field_64888d94e26e7'),(130840,40402,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(130841,40402,'_blocks_1_steps_1_text','field_64888d99e26e8'),(130842,40402,'blocks_1_steps_2_icon','qualification.svg'),(130843,40402,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(130844,40402,'blocks_1_steps_2_title','Evidence based hands on learning'),(130845,40402,'_blocks_1_steps_2_title','field_64888d94e26e7'),(130846,40402,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(130847,40402,'_blocks_1_steps_2_text','field_64888d99e26e8'),(130848,40402,'blocks_1_steps_3_icon','leaders.svg'),(130849,40402,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(130850,40402,'blocks_1_steps_3_title','Stand out from the crowd'),(130851,40402,'_blocks_1_steps_3_title','field_64888d94e26e7'),(130852,40402,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(130853,40402,'_blocks_1_steps_3_text','field_64888d99e26e8'),(130854,40402,'blocks_1_steps','4'),(130855,40402,'_blocks_1_steps','field_64888d44e26e5'),(130856,40402,'blocks_2_acfe_flexible_toggle',''),(130857,40402,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(130858,40402,'blocks_2_acfe_flexible_layout_title','Video'),(130859,40402,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(130860,40402,'blocks_2_size','large'),(130861,40402,'_blocks_2_size','field_6487038f297c1'),(130862,40402,'blocks_2_row_content_title',''),(130863,40402,'_blocks_2_row_content_title','field_64870132a865d'),(130864,40402,'blocks_2_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer ?'),(130865,40402,'_blocks_2_row_content_heading','field_64870142a865e'),(130866,40402,'blocks_2_row_content_text',''),(130867,40402,'_blocks_2_row_content_text','field_64870148a865f'),(130868,40402,'blocks_2_row_content',''),(130869,40402,'_blocks_2_row_content','field_6487008ba865c'),(130870,40402,'blocks_2_video_src','https://youtu.be/kLVekt6aqrI'),(130871,40402,'_blocks_2_video_src','field_6193c4a98ec07'),(130872,40402,'blocks_2_video_thumbnail','39186'),(130873,40402,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(130874,40402,'blocks_3_acfe_flexible_toggle',''),(130875,40402,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(130876,40402,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(130877,40402,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(130878,40402,'blocks_3_options_theme','#ffffff'),(130879,40402,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(130880,40402,'blocks_3_options_reverse','0'),(130881,40402,'_blocks_3_options_reverse','field_61768049bb8ac'),(130882,40402,'blocks_3_options',''),(130883,40402,'_blocks_3_options','field_617682517c334'),(130884,40402,'blocks_3_split_5050_image','39220'),(130885,40402,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(130886,40402,'blocks_3_split_5050_video',''),(130887,40402,'_blocks_3_split_5050_video','field_6239f3160848a'),(130888,40402,'blocks_3_split_5050_content_title',''),(130889,40402,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(130890,40402,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a PT'),(130891,40402,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(130892,40402,'blocks_3_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(130893,40402,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(130894,40402,'blocks_3_split_5050_content_actions',''),(130895,40402,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(130896,40402,'blocks_3_split_5050_content',''),(130897,40402,'_blocks_3_split_5050_content','field_61767afceb8ba'),(130898,40402,'blocks_4_acfe_flexible_toggle',''),(130899,40402,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(130900,40402,'blocks_4_acfe_flexible_layout_title','Form'),(130901,40402,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(130902,40402,'blocks_4_row_content_format','standard'),(130903,40402,'_blocks_4_row_content_format','field_6481ead962881'),(130904,40402,'blocks_4_row_content_title',''),(130905,40402,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(130906,40402,'blocks_4_row_content_heading','Enquire Today'),(130907,40402,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(130908,40402,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(130909,40402,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(130910,40402,'blocks_4_row_content_actions',''),(130911,40402,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(130912,40402,'blocks_4_row_content',''),(130913,40402,'_blocks_4_row_content','field_61a0f5f5b3db0'),(130914,40402,'blocks_4_row_form',''),(130915,40402,'_blocks_4_row_form','field_61a4ff2c0b08e'),(130916,40402,'blocks_4_row_form_button_label',''),(130917,40402,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(130918,40402,'blocks_5_acfe_flexible_toggle',''),(130919,40402,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(130920,40402,'blocks_5_acfe_flexible_layout_title','Tabs'),(130921,40402,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(130922,40402,'blocks_5_options_theme','#ffffff'),(130923,40402,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(130924,40402,'blocks_5_options',''),(130925,40402,'_blocks_5_options','field_6177cfcd8140f'),(130926,40402,'blocks_5_tabs_0_tab_label','What will I learn ?'),(130927,40402,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(130928,40402,'blocks_5_tabs_0_tab_content_title',''),(130929,40402,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(130930,40402,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(130931,40402,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(130932,40402,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(130933,40402,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(130934,40402,'blocks_5_tabs_0_tab_content_actions',''),(130935,40402,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(130936,40402,'blocks_5_tabs_0_tab_content',''),(130937,40402,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(130938,40402,'blocks_5_tabs_0_tab_image','39076'),(130939,40402,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(130940,40402,'blocks_5_tabs_1_tab_label','What do I need ?'),(130941,40402,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(130942,40402,'blocks_5_tabs_1_tab_content_title',''),(130943,40402,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(130944,40402,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(130945,40402,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(130946,40402,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(130947,40402,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(130948,40402,'blocks_5_tabs_1_tab_content_actions',''),(130949,40402,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(130950,40402,'blocks_5_tabs_1_tab_content',''),(130951,40402,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(130952,40402,'blocks_5_tabs_1_tab_image','39223'),(130953,40402,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(130954,40402,'blocks_5_tabs_2_tab_label','Where can I learn ?'),(130955,40402,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(130956,40402,'blocks_5_tabs_2_tab_content_title',''),(130957,40402,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(130958,40402,'blocks_5_tabs_2_tab_content_heading','Locations'),(130959,40402,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(130960,40402,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(130961,40402,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(130962,40402,'blocks_5_tabs_2_tab_content_actions',''),(130963,40402,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(130964,40402,'blocks_5_tabs_2_tab_content',''),(130965,40402,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(130966,40402,'blocks_5_tabs_2_tab_image','39224'),(130967,40402,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(130968,40402,'blocks_5_tabs','3'),(130969,40402,'_blocks_5_tabs','field_6177cff281419'),(130970,40402,'blocks_6_acfe_flexible_toggle',''),(130971,40402,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(130972,40402,'blocks_6_acfe_flexible_layout_title','Text Block'),(130973,40402,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(130974,40402,'blocks_6_options_theme','#b61234'),(130975,40402,'_blocks_6_options_theme','field_6176830e2ad17'),(130976,40402,'blocks_6_options',''),(130977,40402,'_blocks_6_options','field_6176830e2ad16'),(130978,40402,'blocks_6_text_block_heading','Fees & Funding Options'),(130979,40402,'_blocks_6_text_block_heading','field_617669d413097'),(130980,40402,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(130981,40402,'_blocks_6_text_block_content','field_617669ec13098'),(130982,40402,'blocks_7_acfe_flexible_toggle',''),(130983,40402,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(130984,40402,'blocks_7_acfe_flexible_layout_title','Icons'),(130985,40402,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(130986,40402,'blocks_7_options_theme','#b61234'),(130987,40402,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(130988,40402,'blocks_7_options_format','row'),(130989,40402,'_blocks_7_options_format','field_64bfde9a90690'),(130990,40402,'blocks_7_options',''),(130991,40402,'_blocks_7_options','field_64bfdd9b90684'),(130992,40402,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(130993,40402,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(130994,40402,'blocks_7_icon_row_items_0_label','Pay in Full'),(130995,40402,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(130996,40402,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(130997,40402,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(130998,40402,'blocks_7_icon_row_items_1_icon','finance.svg'),(130999,40402,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(131000,40402,'blocks_7_icon_row_items_1_label','0% finance'),(131001,40402,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(131002,40402,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(131003,40402,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(131004,40402,'blocks_7_icon_row_items_2_icon','deposit.svg'),(131005,40402,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(131006,40402,'blocks_7_icon_row_items_2_label','Deposit & balance'),(131007,40402,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(131008,40402,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(131009,40402,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(131010,40402,'blocks_7_icon_row_items','3'),(131011,40402,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(131012,40402,'blocks_8_acfe_flexible_toggle',''),(131013,40402,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(131014,40402,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(131015,40402,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(131016,40402,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(131017,40402,'_blocks_8_content','field_6193c9b5eac84'),(131018,40402,'blocks_9_acfe_flexible_toggle',''),(131019,40402,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(131020,40402,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(131021,40402,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(131022,40402,'blocks_9_testimonial_slider_content_title',''),(131023,40402,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(131024,40402,'blocks_9_testimonial_slider_content_heading','Testimonials'),(131025,40402,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(131026,40402,'blocks_9_testimonial_slider_content_text',''),(131027,40402,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(131028,40402,'blocks_9_testimonial_slider_content_actions',''),(131029,40402,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(131030,40402,'blocks_9_testimonial_slider_content',''),(131031,40402,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(131032,40402,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(131033,40402,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(131034,40402,'blocks_9_testimonial_slider_ambassador_bool','0'),(131035,40402,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(131036,40402,'blocks_10_acfe_flexible_toggle',''),(131037,40402,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(131038,40402,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(131039,40402,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(131040,40402,'blocks_10_options_theme','#ffffff'),(131041,40402,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(131042,40402,'blocks_10_options_state','0'),(131043,40402,'_blocks_10_options_state','field_6239fcb7508c5'),(131044,40402,'blocks_10_options',''),(131045,40402,'_blocks_10_options','field_6177e2991ac44'),(131046,40402,'blocks_10_content_title',''),(131047,40402,'_blocks_10_content_title','field_64d237e8bb1e2'),(131048,40402,'blocks_10_content_heading','Frequently asked questions '),(131049,40402,'_blocks_10_content_heading','field_64d237e8bb1e3'),(131050,40402,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(131051,40402,'_blocks_10_content_text','field_64d237e8bb1e4'),(131052,40402,'blocks_10_content_actions',''),(131053,40402,'_blocks_10_content_actions','field_64d237e8bb1e5'),(131054,40402,'blocks_10_content_align','left'),(131055,40402,'_blocks_10_content_align','field_64d2443e6b6aa'),(131056,40402,'blocks_10_content',''),(131057,40402,'_blocks_10_content','field_64d237e8bb1e1'),(131058,40402,'blocks_10_accordion_content','faqs'),(131059,40402,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(131060,40402,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(131061,40402,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(131062,40402,'blocks_10_actions',''),(131063,40402,'_blocks_10_actions','field_61a746a817f7a'),(131064,40403,'hide_hero','0'),(131065,40403,'_hide_hero','field_66a2380fcda39'),(131066,40403,'hero_title','Biomechanics and Personal Training'),(131067,40403,'_hero_title','field_617571fe285e8'),(131068,40403,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(131069,40403,'_hero_text','field_6175723c285e9'),(131070,40403,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(131071,40403,'_hero_actions_0_button','field_61757281285eb'),(131072,40403,'hero_actions','1'),(131073,40403,'_hero_actions','field_61757270285ea'),(131074,40403,'hero_style','default'),(131075,40403,'_hero_style','field_62051d9dc5324'),(131076,40403,'_thumbnail_id','39215'),(131077,40403,'__thumbnail_id','field_617570855ddaf'),(131078,40403,'hero_image_pos_x','right'),(131079,40403,'_hero_image_pos_x','field_62ec3d05390bb'),(131080,40403,'hero_image_pos_y','top'),(131081,40403,'_hero_image_pos_y','field_62ec3d05390bc'),(131082,40403,'hero_image_pos',''),(131083,40403,'_hero_image_pos','field_62ec3d05390ba'),(131084,40403,'fft_hide_from_listings','0'),(131085,40403,'_fft_hide_from_listings','field_61f1320446ab2'),(131086,40403,'fft_page_format','default'),(131087,40403,'_fft_page_format','field_61ae213f1f218'),(131088,40403,'fft_hide_nav','0'),(131089,40403,'_fft_hide_nav','field_635bd5e43527c'),(131090,40403,'fft_hide_header_call_to_action','0'),(131091,40403,'_fft_hide_header_call_to_action','field_635bd6723527d'),(131092,40403,'fft_page_sitemap','0'),(131093,40403,'_fft_page_sitemap','field_61af9b34e8181'),(131094,40403,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(131095,40403,'_blocks','field_6176696113096'),(131096,40403,'blocks_0_acfe_flexible_toggle',''),(131097,40403,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(131098,40403,'blocks_0_acfe_flexible_layout_title','Template'),(131099,40403,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(131100,40403,'blocks_0_template','39087'),(131101,40403,'_blocks_0_template','field_617bdd570fe01'),(131102,40403,'blocks_1_acfe_flexible_toggle',''),(131103,40403,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(131104,40403,'blocks_1_acfe_flexible_layout_title','Steps'),(131105,40403,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(131106,40403,'blocks_1_row_content_title',''),(131107,40403,'_blocks_1_row_content_title','field_64888cd1e26e0'),(131108,40403,'blocks_1_row_content_heading','Benefits of training with us'),(131109,40403,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(131110,40403,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(131111,40403,'_blocks_1_row_content_text','field_64888ce2e26e2'),(131112,40403,'blocks_1_row_content_actions',''),(131113,40403,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(131114,40403,'blocks_1_row_content',''),(131115,40403,'_blocks_1_row_content','field_64888cb0e26df'),(131116,40403,'blocks_1_steps_0_icon','progression.svg'),(131117,40403,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(131118,40403,'blocks_1_steps_0_title','Earning potential'),(131119,40403,'_blocks_1_steps_0_title','field_64888d94e26e7'),(131120,40403,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(131121,40403,'_blocks_1_steps_0_text','field_64888d99e26e8'),(131122,40403,'blocks_1_steps_1_icon','support.svg'),(131123,40403,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(131124,40403,'blocks_1_steps_1_title','Lifetime Learning Promise'),(131125,40403,'_blocks_1_steps_1_title','field_64888d94e26e7'),(131126,40403,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(131127,40403,'_blocks_1_steps_1_text','field_64888d99e26e8'),(131128,40403,'blocks_1_steps_2_icon','qualification.svg'),(131129,40403,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(131130,40403,'blocks_1_steps_2_title','Evidence based hands on learning'),(131131,40403,'_blocks_1_steps_2_title','field_64888d94e26e7'),(131132,40403,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(131133,40403,'_blocks_1_steps_2_text','field_64888d99e26e8'),(131134,40403,'blocks_1_steps_3_icon','leaders.svg'),(131135,40403,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(131136,40403,'blocks_1_steps_3_title','Stand out from the crowd'),(131137,40403,'_blocks_1_steps_3_title','field_64888d94e26e7'),(131138,40403,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(131139,40403,'_blocks_1_steps_3_text','field_64888d99e26e8'),(131140,40403,'blocks_1_steps','4'),(131141,40403,'_blocks_1_steps','field_64888d44e26e5'),(131142,40403,'blocks_2_acfe_flexible_toggle',''),(131143,40403,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(131144,40403,'blocks_2_acfe_flexible_layout_title','Video'),(131145,40403,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(131146,40403,'blocks_2_size','large'),(131147,40403,'_blocks_2_size','field_6487038f297c1'),(131148,40403,'blocks_2_row_content_title',''),(131149,40403,'_blocks_2_row_content_title','field_64870132a865d'),(131150,40403,'blocks_2_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer ?'),(131151,40403,'_blocks_2_row_content_heading','field_64870142a865e'),(131152,40403,'blocks_2_row_content_text',''),(131153,40403,'_blocks_2_row_content_text','field_64870148a865f'),(131154,40403,'blocks_2_row_content',''),(131155,40403,'_blocks_2_row_content','field_6487008ba865c'),(131156,40403,'blocks_2_video_src','https://youtu.be/kLVekt6aqrI'),(131157,40403,'_blocks_2_video_src','field_6193c4a98ec07'),(131158,40403,'blocks_2_video_thumbnail','39186'),(131159,40403,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(131160,40403,'blocks_3_acfe_flexible_toggle',''),(131161,40403,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(131162,40403,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(131163,40403,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(131164,40403,'blocks_3_options_theme','#ffffff'),(131165,40403,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(131166,40403,'blocks_3_options_reverse','0'),(131167,40403,'_blocks_3_options_reverse','field_61768049bb8ac'),(131168,40403,'blocks_3_options',''),(131169,40403,'_blocks_3_options','field_617682517c334'),(131170,40403,'blocks_3_split_5050_image','39220'),(131171,40403,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(131172,40403,'blocks_3_split_5050_video',''),(131173,40403,'_blocks_3_split_5050_video','field_6239f3160848a'),(131174,40403,'blocks_3_split_5050_content_title',''),(131175,40403,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(131176,40403,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a PT'),(131177,40403,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(131178,40403,'blocks_3_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(131179,40403,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(131180,40403,'blocks_3_split_5050_content_actions',''),(131181,40403,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(131182,40403,'blocks_3_split_5050_content',''),(131183,40403,'_blocks_3_split_5050_content','field_61767afceb8ba'),(131184,40403,'blocks_4_acfe_flexible_toggle',''),(131185,40403,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(131186,40403,'blocks_4_acfe_flexible_layout_title','Form'),(131187,40403,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(131188,40403,'blocks_4_row_content_format','standard'),(131189,40403,'_blocks_4_row_content_format','field_6481ead962881'),(131190,40403,'blocks_4_row_content_title',''),(131191,40403,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(131192,40403,'blocks_4_row_content_heading','Enquire Today'),(131193,40403,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(131194,40403,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(131195,40403,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(131196,40403,'blocks_4_row_content_actions',''),(131197,40403,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(131198,40403,'blocks_4_row_content',''),(131199,40403,'_blocks_4_row_content','field_61a0f5f5b3db0'),(131200,40403,'blocks_4_row_form',''),(131201,40403,'_blocks_4_row_form','field_61a4ff2c0b08e'),(131202,40403,'blocks_4_row_form_button_label',''),(131203,40403,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(131204,40403,'blocks_5_acfe_flexible_toggle',''),(131205,40403,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(131206,40403,'blocks_5_acfe_flexible_layout_title','Tabs'),(131207,40403,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(131208,40403,'blocks_5_options_theme','#ffffff'),(131209,40403,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(131210,40403,'blocks_5_options',''),(131211,40403,'_blocks_5_options','field_6177cfcd8140f'),(131212,40403,'blocks_5_tabs_0_tab_label','What will I learn?'),(131213,40403,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(131214,40403,'blocks_5_tabs_0_tab_content_title',''),(131215,40403,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(131216,40403,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(131217,40403,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(131218,40403,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(131219,40403,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(131220,40403,'blocks_5_tabs_0_tab_content_actions',''),(131221,40403,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(131222,40403,'blocks_5_tabs_0_tab_content',''),(131223,40403,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(131224,40403,'blocks_5_tabs_0_tab_image','39076'),(131225,40403,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(131226,40403,'blocks_5_tabs_1_tab_label','What do I need?'),(131227,40403,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(131228,40403,'blocks_5_tabs_1_tab_content_title',''),(131229,40403,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(131230,40403,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(131231,40403,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(131232,40403,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(131233,40403,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(131234,40403,'blocks_5_tabs_1_tab_content_actions',''),(131235,40403,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(131236,40403,'blocks_5_tabs_1_tab_content',''),(131237,40403,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(131238,40403,'blocks_5_tabs_1_tab_image','39223'),(131239,40403,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(131240,40403,'blocks_5_tabs_2_tab_label','Where can I learn?'),(131241,40403,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(131242,40403,'blocks_5_tabs_2_tab_content_title',''),(131243,40403,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(131244,40403,'blocks_5_tabs_2_tab_content_heading','Locations'),(131245,40403,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(131246,40403,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(131247,40403,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(131248,40403,'blocks_5_tabs_2_tab_content_actions',''),(131249,40403,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(131250,40403,'blocks_5_tabs_2_tab_content',''),(131251,40403,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(131252,40403,'blocks_5_tabs_2_tab_image','39224'),(131253,40403,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(131254,40403,'blocks_5_tabs','3'),(131255,40403,'_blocks_5_tabs','field_6177cff281419'),(131256,40403,'blocks_6_acfe_flexible_toggle',''),(131257,40403,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(131258,40403,'blocks_6_acfe_flexible_layout_title','Text Block'),(131259,40403,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(131260,40403,'blocks_6_options_theme','#b61234'),(131261,40403,'_blocks_6_options_theme','field_6176830e2ad17'),(131262,40403,'blocks_6_options',''),(131263,40403,'_blocks_6_options','field_6176830e2ad16'),(131264,40403,'blocks_6_text_block_heading','Fees & Funding Options'),(131265,40403,'_blocks_6_text_block_heading','field_617669d413097'),(131266,40403,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(131267,40403,'_blocks_6_text_block_content','field_617669ec13098'),(131268,40403,'blocks_7_acfe_flexible_toggle',''),(131269,40403,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(131270,40403,'blocks_7_acfe_flexible_layout_title','Icons'),(131271,40403,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(131272,40403,'blocks_7_options_theme','#b61234'),(131273,40403,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(131274,40403,'blocks_7_options_format','row'),(131275,40403,'_blocks_7_options_format','field_64bfde9a90690'),(131276,40403,'blocks_7_options',''),(131277,40403,'_blocks_7_options','field_64bfdd9b90684'),(131278,40403,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(131279,40403,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(131280,40403,'blocks_7_icon_row_items_0_label','Pay in Full'),(131281,40403,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(131282,40403,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(131283,40403,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(131284,40403,'blocks_7_icon_row_items_1_icon','finance.svg'),(131285,40403,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(131286,40403,'blocks_7_icon_row_items_1_label','0% finance'),(131287,40403,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(131288,40403,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(131289,40403,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(131290,40403,'blocks_7_icon_row_items_2_icon','deposit.svg'),(131291,40403,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(131292,40403,'blocks_7_icon_row_items_2_label','Deposit & balance'),(131293,40403,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(131294,40403,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(131295,40403,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(131296,40403,'blocks_7_icon_row_items','3'),(131297,40403,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(131298,40403,'blocks_8_acfe_flexible_toggle',''),(131299,40403,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(131300,40403,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(131301,40403,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(131302,40403,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(131303,40403,'_blocks_8_content','field_6193c9b5eac84'),(131304,40403,'blocks_9_acfe_flexible_toggle',''),(131305,40403,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(131306,40403,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(131307,40403,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(131308,40403,'blocks_9_testimonial_slider_content_title',''),(131309,40403,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(131310,40403,'blocks_9_testimonial_slider_content_heading','Testimonials'),(131311,40403,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(131312,40403,'blocks_9_testimonial_slider_content_text',''),(131313,40403,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(131314,40403,'blocks_9_testimonial_slider_content_actions',''),(131315,40403,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(131316,40403,'blocks_9_testimonial_slider_content',''),(131317,40403,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(131318,40403,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(131319,40403,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(131320,40403,'blocks_9_testimonial_slider_ambassador_bool','0'),(131321,40403,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(131322,40403,'blocks_10_acfe_flexible_toggle',''),(131323,40403,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(131324,40403,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(131325,40403,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(131326,40403,'blocks_10_options_theme','#ffffff'),(131327,40403,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(131328,40403,'blocks_10_options_state','0'),(131329,40403,'_blocks_10_options_state','field_6239fcb7508c5'),(131330,40403,'blocks_10_options',''),(131331,40403,'_blocks_10_options','field_6177e2991ac44'),(131332,40403,'blocks_10_content_title',''),(131333,40403,'_blocks_10_content_title','field_64d237e8bb1e2'),(131334,40403,'blocks_10_content_heading','Frequently asked questions '),(131335,40403,'_blocks_10_content_heading','field_64d237e8bb1e3'),(131336,40403,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(131337,40403,'_blocks_10_content_text','field_64d237e8bb1e4'),(131338,40403,'blocks_10_content_actions',''),(131339,40403,'_blocks_10_content_actions','field_64d237e8bb1e5'),(131340,40403,'blocks_10_content_align','left'),(131341,40403,'_blocks_10_content_align','field_64d2443e6b6aa'),(131342,40403,'blocks_10_content',''),(131343,40403,'_blocks_10_content','field_64d237e8bb1e1'),(131344,40403,'blocks_10_accordion_content','faqs'),(131345,40403,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(131346,40403,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(131347,40403,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(131348,40403,'blocks_10_actions',''),(131349,40403,'_blocks_10_actions','field_61a746a817f7a'),(131350,40404,'hide_hero','0'),(131351,40404,'_hide_hero','field_66a2380fcda39'),(131352,40404,'hero_title','Biomechanics and Pilates'),(131353,40404,'_hero_title','field_617571fe285e8'),(131354,40404,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(131355,40404,'_hero_text','field_6175723c285e9'),(131356,40404,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(131357,40404,'_hero_actions_0_button','field_61757281285eb'),(131358,40404,'hero_actions','1'),(131359,40404,'_hero_actions','field_61757270285ea'),(131360,40404,'hero_style','default'),(131361,40404,'_hero_style','field_62051d9dc5324'),(131362,40404,'_thumbnail_id','39243'),(131363,40404,'__thumbnail_id','field_617570855ddaf'),(131364,40404,'hero_image_pos_x','right'),(131365,40404,'_hero_image_pos_x','field_62ec3d05390bb'),(131366,40404,'hero_image_pos_y','top'),(131367,40404,'_hero_image_pos_y','field_62ec3d05390bc'),(131368,40404,'hero_image_pos',''),(131369,40404,'_hero_image_pos','field_62ec3d05390ba'),(131370,40404,'fft_hide_from_listings','0'),(131371,40404,'_fft_hide_from_listings','field_61f1320446ab2'),(131372,40404,'fft_page_format','default'),(131373,40404,'_fft_page_format','field_61ae213f1f218'),(131374,40404,'fft_hide_nav','0'),(131375,40404,'_fft_hide_nav','field_635bd5e43527c'),(131376,40404,'fft_hide_header_call_to_action','0'),(131377,40404,'_fft_hide_header_call_to_action','field_635bd6723527d'),(131378,40404,'fft_page_sitemap','0'),(131379,40404,'_fft_page_sitemap','field_61af9b34e8181'),(131380,40404,'blocks','a:10:{i:0;s:5:\"steps\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(131381,40404,'_blocks','field_6176696113096'),(131382,40404,'blocks_0_acfe_flexible_toggle',''),(131383,40404,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(131384,40404,'blocks_0_acfe_flexible_layout_title','Steps'),(131385,40404,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(131386,40404,'blocks_0_row_content_title',''),(131387,40404,'_blocks_0_row_content_title','field_64888cd1e26e0'),(131388,40404,'blocks_0_row_content_heading','Benefits of training with us'),(131389,40404,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(131390,40404,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(131391,40404,'_blocks_0_row_content_text','field_64888ce2e26e2'),(131392,40404,'blocks_0_row_content_actions',''),(131393,40404,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(131394,40404,'blocks_0_row_content',''),(131395,40404,'_blocks_0_row_content','field_64888cb0e26df'),(131396,40404,'blocks_0_steps_0_icon','progression.svg'),(131397,40404,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(131398,40404,'blocks_0_steps_0_title','Earning potential'),(131399,40404,'_blocks_0_steps_0_title','field_64888d94e26e7'),(131400,40404,'blocks_0_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(131401,40404,'_blocks_0_steps_0_text','field_64888d99e26e8'),(131402,40404,'blocks_0_steps_1_icon','support.svg'),(131403,40404,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(131404,40404,'blocks_0_steps_1_title','Lifetime Learning Promise'),(131405,40404,'_blocks_0_steps_1_title','field_64888d94e26e7'),(131406,40404,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(131407,40404,'_blocks_0_steps_1_text','field_64888d99e26e8'),(131408,40404,'blocks_0_steps_2_icon','qualification.svg'),(131409,40404,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(131410,40404,'blocks_0_steps_2_title','Evidence based hands on learning'),(131411,40404,'_blocks_0_steps_2_title','field_64888d94e26e7'),(131412,40404,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(131413,40404,'_blocks_0_steps_2_text','field_64888d99e26e8'),(131414,40404,'blocks_0_steps_3_icon','leaders.svg'),(131415,40404,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(131416,40404,'blocks_0_steps_3_title','Stand out from the crowd'),(131417,40404,'_blocks_0_steps_3_title','field_64888d94e26e7'),(131418,40404,'blocks_0_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(131419,40404,'_blocks_0_steps_3_text','field_64888d99e26e8'),(131420,40404,'blocks_0_steps','4'),(131421,40404,'_blocks_0_steps','field_64888d44e26e5'),(131422,40404,'blocks_1_acfe_flexible_toggle',''),(131423,40404,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(131424,40404,'blocks_1_acfe_flexible_layout_title','Video'),(131425,40404,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(131426,40404,'blocks_1_size','large'),(131427,40404,'_blocks_1_size','field_6487038f297c1'),(131428,40404,'blocks_1_row_content_title','Tom Waldron - Master Trainer'),(131429,40404,'_blocks_1_row_content_title','field_64870132a865d'),(131430,40404,'blocks_1_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(131431,40404,'_blocks_1_row_content_heading','field_64870142a865e'),(131432,40404,'blocks_1_row_content_text',''),(131433,40404,'_blocks_1_row_content_text','field_64870148a865f'),(131434,40404,'blocks_1_row_content',''),(131435,40404,'_blocks_1_row_content','field_6487008ba865c'),(131436,40404,'blocks_1_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(131437,40404,'_blocks_1_video_src','field_6193c4a98ec07'),(131438,40404,'blocks_1_video_thumbnail',''),(131439,40404,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(131440,40404,'blocks_2_acfe_flexible_toggle',''),(131441,40404,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(131442,40404,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(131443,40404,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(131444,40404,'blocks_2_options_theme','#ffffff'),(131445,40404,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(131446,40404,'blocks_2_options_reverse','0'),(131447,40404,'_blocks_2_options_reverse','field_61768049bb8ac'),(131448,40404,'blocks_2_options',''),(131449,40404,'_blocks_2_options','field_617682517c334'),(131450,40404,'blocks_2_split_5050_image','38037'),(131451,40404,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(131452,40404,'blocks_2_split_5050_video',''),(131453,40404,'_blocks_2_split_5050_video','field_6239f3160848a'),(131454,40404,'blocks_2_split_5050_content_title',''),(131455,40404,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(131456,40404,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(131457,40404,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(131458,40404,'blocks_2_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(131459,40404,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(131460,40404,'blocks_2_split_5050_content_actions',''),(131461,40404,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(131462,40404,'blocks_2_split_5050_content',''),(131463,40404,'_blocks_2_split_5050_content','field_61767afceb8ba'),(131464,40404,'blocks_3_acfe_flexible_toggle',''),(131465,40404,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(131466,40404,'blocks_3_acfe_flexible_layout_title','Form'),(131467,40404,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(131468,40404,'blocks_3_row_content_format','standard'),(131469,40404,'_blocks_3_row_content_format','field_6481ead962881'),(131470,40404,'blocks_3_row_content_title',''),(131471,40404,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(131472,40404,'blocks_3_row_content_heading','Enquire Today'),(131473,40404,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(131474,40404,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(131475,40404,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(131476,40404,'blocks_3_row_content_actions',''),(131477,40404,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(131478,40404,'blocks_3_row_content',''),(131479,40404,'_blocks_3_row_content','field_61a0f5f5b3db0'),(131480,40404,'blocks_3_row_form',''),(131481,40404,'_blocks_3_row_form','field_61a4ff2c0b08e'),(131482,40404,'blocks_3_row_form_button_label',''),(131483,40404,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(131484,40404,'blocks_4_acfe_flexible_toggle',''),(131485,40404,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(131486,40404,'blocks_4_acfe_flexible_layout_title','Tabs'),(131487,40404,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(131488,40404,'blocks_4_options_theme','#ffffff'),(131489,40404,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(131490,40404,'blocks_4_options',''),(131491,40404,'_blocks_4_options','field_6177cfcd8140f'),(131492,40404,'blocks_4_tabs_0_tab_label','What will I learn?'),(131493,40404,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(131494,40404,'blocks_4_tabs_0_tab_content_title',''),(131495,40404,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(131496,40404,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(131497,40404,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(131498,40404,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(131499,40404,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(131500,40404,'blocks_4_tabs_0_tab_content_actions',''),(131501,40404,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(131502,40404,'blocks_4_tabs_0_tab_content',''),(131503,40404,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(131504,40404,'blocks_4_tabs_0_tab_image','39076'),(131505,40404,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(131506,40404,'blocks_4_tabs_1_tab_label','What do I need?'),(131507,40404,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(131508,40404,'blocks_4_tabs_1_tab_content_title',''),(131509,40404,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(131510,40404,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(131511,40404,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(131512,40404,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(131513,40404,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(131514,40404,'blocks_4_tabs_1_tab_content_actions',''),(131515,40404,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(131516,40404,'blocks_4_tabs_1_tab_content',''),(131517,40404,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(131518,40404,'blocks_4_tabs_1_tab_image','39223'),(131519,40404,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(131520,40404,'blocks_4_tabs_2_tab_label','Where can I learn?'),(131521,40404,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(131522,40404,'blocks_4_tabs_2_tab_content_title',''),(131523,40404,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(131524,40404,'blocks_4_tabs_2_tab_content_heading','Locations'),(131525,40404,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(131526,40404,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(131527,40404,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(131528,40404,'blocks_4_tabs_2_tab_content_actions',''),(131529,40404,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(131530,40404,'blocks_4_tabs_2_tab_content',''),(131531,40404,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(131532,40404,'blocks_4_tabs_2_tab_image','39224'),(131533,40404,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(131534,40404,'blocks_4_tabs','3'),(131535,40404,'_blocks_4_tabs','field_6177cff281419'),(131536,40404,'blocks_5_acfe_flexible_toggle',''),(131537,40404,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(131538,40404,'blocks_5_acfe_flexible_layout_title','Text Block'),(131539,40404,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(131540,40404,'blocks_5_options_theme','#b61234'),(131541,40404,'_blocks_5_options_theme','field_6176830e2ad17'),(131542,40404,'blocks_5_options',''),(131543,40404,'_blocks_5_options','field_6176830e2ad16'),(131544,40404,'blocks_5_text_block_heading','Fees & Funding Options'),(131545,40404,'_blocks_5_text_block_heading','field_617669d413097'),(131546,40404,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(131547,40404,'_blocks_5_text_block_content','field_617669ec13098'),(131548,40404,'blocks_6_acfe_flexible_toggle',''),(131549,40404,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(131550,40404,'blocks_6_acfe_flexible_layout_title','Icons'),(131551,40404,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(131552,40404,'blocks_6_options_theme','#b61234'),(131553,40404,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(131554,40404,'blocks_6_options_format','row'),(131555,40404,'_blocks_6_options_format','field_64bfde9a90690'),(131556,40404,'blocks_6_options',''),(131557,40404,'_blocks_6_options','field_64bfdd9b90684'),(131558,40404,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(131559,40404,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(131560,40404,'blocks_6_icon_row_items_0_label','Pay in Full'),(131561,40404,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(131562,40404,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(131563,40404,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(131564,40404,'blocks_6_icon_row_items_1_icon','finance.svg'),(131565,40404,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(131566,40404,'blocks_6_icon_row_items_1_label','0% finance'),(131567,40404,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(131568,40404,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(131569,40404,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(131570,40404,'blocks_6_icon_row_items_2_icon','deposit.svg'),(131571,40404,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(131572,40404,'blocks_6_icon_row_items_2_label','Deposit & balance'),(131573,40404,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(131574,40404,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(131575,40404,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(131576,40404,'blocks_6_icon_row_items','3'),(131577,40404,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(131578,40404,'blocks_7_acfe_flexible_toggle',''),(131579,40404,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(131580,40404,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(131581,40404,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(131582,40404,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(131583,40404,'_blocks_7_content','field_6193c9b5eac84'),(131584,40404,'blocks_8_acfe_flexible_toggle',''),(131585,40404,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(131586,40404,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(131587,40404,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(131588,40404,'blocks_8_testimonial_slider_content_title',''),(131589,40404,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(131590,40404,'blocks_8_testimonial_slider_content_heading','Testimonials'),(131591,40404,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(131592,40404,'blocks_8_testimonial_slider_content_text',''),(131593,40404,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(131594,40404,'blocks_8_testimonial_slider_content_actions',''),(131595,40404,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(131596,40404,'blocks_8_testimonial_slider_content',''),(131597,40404,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(131598,40404,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(131599,40404,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(131600,40404,'blocks_8_testimonial_slider_ambassador_bool','0'),(131601,40404,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(131602,40404,'blocks_9_acfe_flexible_toggle',''),(131603,40404,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(131604,40404,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(131605,40404,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(131606,40404,'blocks_9_options_theme','#ffffff'),(131607,40404,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(131608,40404,'blocks_9_options_state','0'),(131609,40404,'_blocks_9_options_state','field_6239fcb7508c5'),(131610,40404,'blocks_9_options',''),(131611,40404,'_blocks_9_options','field_6177e2991ac44'),(131612,40404,'blocks_9_content_title',''),(131613,40404,'_blocks_9_content_title','field_64d237e8bb1e2'),(131614,40404,'blocks_9_content_heading','Frequently asked questions '),(131615,40404,'_blocks_9_content_heading','field_64d237e8bb1e3'),(131616,40404,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(131617,40404,'_blocks_9_content_text','field_64d237e8bb1e4'),(131618,40404,'blocks_9_content_actions',''),(131619,40404,'_blocks_9_content_actions','field_64d237e8bb1e5'),(131620,40404,'blocks_9_content_align','left'),(131621,40404,'_blocks_9_content_align','field_64d2443e6b6aa'),(131622,40404,'blocks_9_content',''),(131623,40404,'_blocks_9_content','field_64d237e8bb1e1'),(131624,40404,'blocks_9_accordion_content','faqs'),(131625,40404,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(131626,40404,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(131627,40404,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(131628,40404,'blocks_9_actions',''),(131629,40404,'_blocks_9_actions','field_61a746a817f7a'),(131630,40405,'hide_hero','0'),(131631,40405,'_hide_hero','field_66a2380fcda39'),(131632,40405,'hero_title','Biomechanics and Personal Training'),(131633,40405,'_hero_title','field_617571fe285e8'),(131634,40405,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(131635,40405,'_hero_text','field_6175723c285e9'),(131636,40405,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(131637,40405,'_hero_actions_0_button','field_61757281285eb'),(131638,40405,'hero_actions','1'),(131639,40405,'_hero_actions','field_61757270285ea'),(131640,40405,'hero_style','default'),(131641,40405,'_hero_style','field_62051d9dc5324'),(131642,40405,'_thumbnail_id','39215'),(131643,40405,'__thumbnail_id','field_617570855ddaf'),(131644,40405,'hero_image_pos_x','right'),(131645,40405,'_hero_image_pos_x','field_62ec3d05390bb'),(131646,40405,'hero_image_pos_y','top'),(131647,40405,'_hero_image_pos_y','field_62ec3d05390bc'),(131648,40405,'hero_image_pos',''),(131649,40405,'_hero_image_pos','field_62ec3d05390ba'),(131650,40405,'fft_hide_from_listings','0'),(131651,40405,'_fft_hide_from_listings','field_61f1320446ab2'),(131652,40405,'fft_page_format','default'),(131653,40405,'_fft_page_format','field_61ae213f1f218'),(131654,40405,'fft_hide_nav','0'),(131655,40405,'_fft_hide_nav','field_635bd5e43527c'),(131656,40405,'fft_hide_header_call_to_action','0'),(131657,40405,'_fft_hide_header_call_to_action','field_635bd6723527d'),(131658,40405,'fft_page_sitemap','0'),(131659,40405,'_fft_page_sitemap','field_61af9b34e8181'),(131660,40405,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(131661,40405,'_blocks','field_6176696113096'),(131662,40405,'blocks_0_acfe_flexible_toggle',''),(131663,40405,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(131664,40405,'blocks_0_acfe_flexible_layout_title','Template'),(131665,40405,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(131666,40405,'blocks_0_template','39087'),(131667,40405,'_blocks_0_template','field_617bdd570fe01'),(131668,40405,'blocks_1_acfe_flexible_toggle',''),(131669,40405,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(131670,40405,'blocks_1_acfe_flexible_layout_title','Steps'),(131671,40405,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(131672,40405,'blocks_1_row_content_title',''),(131673,40405,'_blocks_1_row_content_title','field_64888cd1e26e0'),(131674,40405,'blocks_1_row_content_heading','Benefits of training with us'),(131675,40405,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(131676,40405,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(131677,40405,'_blocks_1_row_content_text','field_64888ce2e26e2'),(131678,40405,'blocks_1_row_content_actions',''),(131679,40405,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(131680,40405,'blocks_1_row_content',''),(131681,40405,'_blocks_1_row_content','field_64888cb0e26df'),(131682,40405,'blocks_1_steps_0_icon','progression.svg'),(131683,40405,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(131684,40405,'blocks_1_steps_0_title','Earning potential'),(131685,40405,'_blocks_1_steps_0_title','field_64888d94e26e7'),(131686,40405,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(131687,40405,'_blocks_1_steps_0_text','field_64888d99e26e8'),(131688,40405,'blocks_1_steps_1_icon','support.svg'),(131689,40405,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(131690,40405,'blocks_1_steps_1_title','Lifetime Learning Promise'),(131691,40405,'_blocks_1_steps_1_title','field_64888d94e26e7'),(131692,40405,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(131693,40405,'_blocks_1_steps_1_text','field_64888d99e26e8'),(131694,40405,'blocks_1_steps_2_icon','qualification.svg'),(131695,40405,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(131696,40405,'blocks_1_steps_2_title','Evidence based hands on learning'),(131697,40405,'_blocks_1_steps_2_title','field_64888d94e26e7'),(131698,40405,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(131699,40405,'_blocks_1_steps_2_text','field_64888d99e26e8'),(131700,40405,'blocks_1_steps_3_icon','leaders.svg'),(131701,40405,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(131702,40405,'blocks_1_steps_3_title','Stand out from the crowd'),(131703,40405,'_blocks_1_steps_3_title','field_64888d94e26e7'),(131704,40405,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(131705,40405,'_blocks_1_steps_3_text','field_64888d99e26e8'),(131706,40405,'blocks_1_steps','4'),(131707,40405,'_blocks_1_steps','field_64888d44e26e5'),(131708,40405,'blocks_2_acfe_flexible_toggle',''),(131709,40405,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(131710,40405,'blocks_2_acfe_flexible_layout_title','Video'),(131711,40405,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(131712,40405,'blocks_2_size','large'),(131713,40405,'_blocks_2_size','field_6487038f297c1'),(131714,40405,'blocks_2_row_content_title',''),(131715,40405,'_blocks_2_row_content_title','field_64870132a865d'),(131716,40405,'blocks_2_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer ?'),(131717,40405,'_blocks_2_row_content_heading','field_64870142a865e'),(131718,40405,'blocks_2_row_content_text',''),(131719,40405,'_blocks_2_row_content_text','field_64870148a865f'),(131720,40405,'blocks_2_row_content',''),(131721,40405,'_blocks_2_row_content','field_6487008ba865c'),(131722,40405,'blocks_2_video_src','https://youtu.be/kLVekt6aqrI'),(131723,40405,'_blocks_2_video_src','field_6193c4a98ec07'),(131724,40405,'blocks_2_video_thumbnail','39186'),(131725,40405,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(131726,40405,'blocks_3_acfe_flexible_toggle',''),(131727,40405,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(131728,40405,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(131729,40405,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(131730,40405,'blocks_3_options_theme','#ffffff'),(131731,40405,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(131732,40405,'blocks_3_options_reverse','0'),(131733,40405,'_blocks_3_options_reverse','field_61768049bb8ac'),(131734,40405,'blocks_3_options',''),(131735,40405,'_blocks_3_options','field_617682517c334'),(131736,40405,'blocks_3_split_5050_image','39220'),(131737,40405,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(131738,40405,'blocks_3_split_5050_video',''),(131739,40405,'_blocks_3_split_5050_video','field_6239f3160848a'),(131740,40405,'blocks_3_split_5050_content_title',''),(131741,40405,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(131742,40405,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a PT'),(131743,40405,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(131744,40405,'blocks_3_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(131745,40405,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(131746,40405,'blocks_3_split_5050_content_actions',''),(131747,40405,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(131748,40405,'blocks_3_split_5050_content',''),(131749,40405,'_blocks_3_split_5050_content','field_61767afceb8ba'),(131750,40405,'blocks_4_acfe_flexible_toggle',''),(131751,40405,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(131752,40405,'blocks_4_acfe_flexible_layout_title','Form'),(131753,40405,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(131754,40405,'blocks_4_row_content_format','standard'),(131755,40405,'_blocks_4_row_content_format','field_6481ead962881'),(131756,40405,'blocks_4_row_content_title',''),(131757,40405,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(131758,40405,'blocks_4_row_content_heading','Enquire Today'),(131759,40405,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(131760,40405,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(131761,40405,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(131762,40405,'blocks_4_row_content_actions',''),(131763,40405,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(131764,40405,'blocks_4_row_content',''),(131765,40405,'_blocks_4_row_content','field_61a0f5f5b3db0'),(131766,40405,'blocks_4_row_form',''),(131767,40405,'_blocks_4_row_form','field_61a4ff2c0b08e'),(131768,40405,'blocks_4_row_form_button_label',''),(131769,40405,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(131770,40405,'blocks_5_acfe_flexible_toggle',''),(131771,40405,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(131772,40405,'blocks_5_acfe_flexible_layout_title','Tabs'),(131773,40405,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(131774,40405,'blocks_5_options_theme','#ffffff'),(131775,40405,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(131776,40405,'blocks_5_options',''),(131777,40405,'_blocks_5_options','field_6177cfcd8140f'),(131778,40405,'blocks_5_tabs_0_tab_label','What will I learn?'),(131779,40405,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(131780,40405,'blocks_5_tabs_0_tab_content_title',''),(131781,40405,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(131782,40405,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(131783,40405,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(131784,40405,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(131785,40405,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(131786,40405,'blocks_5_tabs_0_tab_content_actions',''),(131787,40405,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(131788,40405,'blocks_5_tabs_0_tab_content',''),(131789,40405,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(131790,40405,'blocks_5_tabs_0_tab_image','39076'),(131791,40405,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(131792,40405,'blocks_5_tabs_1_tab_label','What do I need?'),(131793,40405,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(131794,40405,'blocks_5_tabs_1_tab_content_title',''),(131795,40405,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(131796,40405,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(131797,40405,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(131798,40405,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(131799,40405,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(131800,40405,'blocks_5_tabs_1_tab_content_actions',''),(131801,40405,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(131802,40405,'blocks_5_tabs_1_tab_content',''),(131803,40405,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(131804,40405,'blocks_5_tabs_1_tab_image','39223'),(131805,40405,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(131806,40405,'blocks_5_tabs_2_tab_label','Where can I learn?'),(131807,40405,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(131808,40405,'blocks_5_tabs_2_tab_content_title',''),(131809,40405,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(131810,40405,'blocks_5_tabs_2_tab_content_heading','Locations'),(131811,40405,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(131812,40405,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(131813,40405,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(131814,40405,'blocks_5_tabs_2_tab_content_actions',''),(131815,40405,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(131816,40405,'blocks_5_tabs_2_tab_content',''),(131817,40405,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(131818,40405,'blocks_5_tabs_2_tab_image','39224'),(131819,40405,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(131820,40405,'blocks_5_tabs','3'),(131821,40405,'_blocks_5_tabs','field_6177cff281419'),(131822,40405,'blocks_6_acfe_flexible_toggle',''),(131823,40405,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(131824,40405,'blocks_6_acfe_flexible_layout_title','Text Block'),(131825,40405,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(131826,40405,'blocks_6_options_theme','#b61234'),(131827,40405,'_blocks_6_options_theme','field_6176830e2ad17'),(131828,40405,'blocks_6_options',''),(131829,40405,'_blocks_6_options','field_6176830e2ad16'),(131830,40405,'blocks_6_text_block_heading','Fees & Funding Options'),(131831,40405,'_blocks_6_text_block_heading','field_617669d413097'),(131832,40405,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(131833,40405,'_blocks_6_text_block_content','field_617669ec13098'),(131834,40405,'blocks_7_acfe_flexible_toggle',''),(131835,40405,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(131836,40405,'blocks_7_acfe_flexible_layout_title','Icons'),(131837,40405,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(131838,40405,'blocks_7_options_theme','#b61234'),(131839,40405,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(131840,40405,'blocks_7_options_format','row'),(131841,40405,'_blocks_7_options_format','field_64bfde9a90690'),(131842,40405,'blocks_7_options',''),(131843,40405,'_blocks_7_options','field_64bfdd9b90684'),(131844,40405,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(131845,40405,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(131846,40405,'blocks_7_icon_row_items_0_label','Pay in Full'),(131847,40405,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(131848,40405,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(131849,40405,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(131850,40405,'blocks_7_icon_row_items_1_icon','finance.svg'),(131851,40405,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(131852,40405,'blocks_7_icon_row_items_1_label','0% finance'),(131853,40405,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(131854,40405,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(131855,40405,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(131856,40405,'blocks_7_icon_row_items_2_icon','deposit.svg'),(131857,40405,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(131858,40405,'blocks_7_icon_row_items_2_label','Deposit & balance'),(131859,40405,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(131860,40405,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(131861,40405,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(131862,40405,'blocks_7_icon_row_items','3'),(131863,40405,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(131864,40405,'blocks_8_acfe_flexible_toggle',''),(131865,40405,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(131866,40405,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(131867,40405,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(131868,40405,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(131869,40405,'_blocks_8_content','field_6193c9b5eac84'),(131870,40405,'blocks_9_acfe_flexible_toggle',''),(131871,40405,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(131872,40405,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(131873,40405,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(131874,40405,'blocks_9_testimonial_slider_content_title',''),(131875,40405,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(131876,40405,'blocks_9_testimonial_slider_content_heading','Testimonials'),(131877,40405,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(131878,40405,'blocks_9_testimonial_slider_content_text',''),(131879,40405,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(131880,40405,'blocks_9_testimonial_slider_content_actions',''),(131881,40405,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(131882,40405,'blocks_9_testimonial_slider_content',''),(131883,40405,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(131884,40405,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(131885,40405,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(131886,40405,'blocks_9_testimonial_slider_ambassador_bool','0'),(131887,40405,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(131888,40405,'blocks_10_acfe_flexible_toggle',''),(131889,40405,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(131890,40405,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(131891,40405,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(131892,40405,'blocks_10_options_theme','#ffffff'),(131893,40405,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(131894,40405,'blocks_10_options_state','0'),(131895,40405,'_blocks_10_options_state','field_6239fcb7508c5'),(131896,40405,'blocks_10_options',''),(131897,40405,'_blocks_10_options','field_6177e2991ac44'),(131898,40405,'blocks_10_content_title',''),(131899,40405,'_blocks_10_content_title','field_64d237e8bb1e2'),(131900,40405,'blocks_10_content_heading','Frequently asked questions '),(131901,40405,'_blocks_10_content_heading','field_64d237e8bb1e3'),(131902,40405,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(131903,40405,'_blocks_10_content_text','field_64d237e8bb1e4'),(131904,40405,'blocks_10_content_actions',''),(131905,40405,'_blocks_10_content_actions','field_64d237e8bb1e5'),(131906,40405,'blocks_10_content_align','left'),(131907,40405,'_blocks_10_content_align','field_64d2443e6b6aa'),(131908,40405,'blocks_10_content',''),(131909,40405,'_blocks_10_content','field_64d237e8bb1e1'),(131910,40405,'blocks_10_accordion_content','faqs'),(131911,40405,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(131912,40405,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(131913,40405,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(131914,40405,'blocks_10_actions',''),(131915,40405,'_blocks_10_actions','field_61a746a817f7a'),(131916,40406,'_wp_attached_file','2024/09/BE-Team.png'),(131917,40406,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:19:\"2024/09/BE-Team.png\";s:8:\"filesize\";i:1234658;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"BE-Team-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:391283;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"BE-Team-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:604811;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"BE-Team-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107533;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"BE-Team-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:307416;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"BE-Team-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:870887;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:19:\"BE-Team-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:234919;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:19:\"BE-Team-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:788931;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:21:\"BE-Team-1200x1080.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1074539;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:19:\"BE-Team-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140571;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:19:\"BE-Team-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:497568;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:20:\"BE-Team-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:764538;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:19:\"BE-Team-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175601;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:19:\"BE-Team-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:585884;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:20:\"BE-Team-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:839854;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:19:\"BE-Team-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167676;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:19:\"BE-Team-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:581090;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:20:\"BE-Team-1200x900.png\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:887705;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:19:\"BE-Team-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107533;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:19:\"BE-Team-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:391424;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:20:\"BE-Team-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:604811;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(131918,40406,'_wp_attachment_image_alt','BE Team - Fiona Jones'),(131919,40407,'hero_style','default'),(131920,40407,'_hero_style','field_62051d9dc5324'),(131921,40407,'hero_image_pos_x','right'),(131922,40407,'_hero_image_pos_x','field_62ec3d05390bb'),(131923,40407,'hero_image_pos_y','top'),(131924,40407,'_hero_image_pos_y','field_62ec3d05390bc'),(131925,40407,'hero_image_pos',''),(131926,40407,'_hero_image_pos','field_62ec3d05390ba'),(131927,40407,'hero_title','About Us'),(131928,40407,'_hero_title','field_617571fe285e8'),(131929,40407,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(131930,40407,'_hero_text','field_6175723c285e9'),(131931,40407,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(131932,40407,'_hero_actions_0_button','field_61757281285eb'),(131933,40407,'hero_actions','1'),(131934,40407,'_hero_actions','field_61757270285ea'),(131935,40407,'hero_icon',''),(131936,40407,'_hero_icon','field_61a6182199d03'),(131937,40407,'fft_hide_from_listings','0'),(131938,40407,'_fft_hide_from_listings','field_61f1320446ab2'),(131939,40407,'fft_page_format','default'),(131940,40407,'_fft_page_format','field_61ae213f1f218'),(131941,40407,'fft_hide_nav','0'),(131942,40407,'_fft_hide_nav','field_635bd5e43527c'),(131943,40407,'fft_hide_header_call_to_action','0'),(131944,40407,'_fft_hide_header_call_to_action','field_635bd6723527d'),(131945,40407,'fft_page_sitemap','0'),(131946,40407,'_fft_page_sitemap','field_61af9b34e8181'),(131947,40407,'blocks','a:7:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(131948,40407,'_blocks','field_6176696113096'),(131949,40407,'blocks_1_acfe_flexible_toggle',''),(131950,40407,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(131951,40407,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(131952,40407,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(131953,40407,'blocks_1_options_theme','#b61234'),(131954,40407,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(131955,40407,'blocks_1_options_reverse','0'),(131956,40407,'_blocks_1_options_reverse','field_61768049bb8ac'),(131957,40407,'blocks_1_options',''),(131958,40407,'_blocks_1_options','field_617682517c334'),(131959,40407,'blocks_1_split_5050_image','35276'),(131960,40407,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(131961,40407,'blocks_1_split_5050_video',''),(131962,40407,'_blocks_1_split_5050_video','field_6239f3160848a'),(131963,40407,'blocks_1_split_5050_content_title',''),(131964,40407,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(131965,40407,'blocks_1_split_5050_content_heading','What we do'),(131966,40407,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(131967,40407,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(131968,40407,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(131969,40407,'blocks_1_split_5050_content_actions',''),(131970,40407,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(131971,40407,'blocks_1_split_5050_content',''),(131972,40407,'_blocks_1_split_5050_content','field_61767afceb8ba'),(131973,40407,'blocks_2_acfe_flexible_toggle',''),(131974,40407,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(131975,40407,'blocks_2_acfe_flexible_layout_title','Video'),(131976,40407,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(131977,40407,'blocks_2_size','large'),(131978,40407,'_blocks_2_size','field_6487038f297c1'),(131979,40407,'blocks_2_row_content_title',''),(131980,40407,'_blocks_2_row_content_title','field_64870132a865d'),(131981,40407,'blocks_2_row_content_heading',''),(131982,40407,'_blocks_2_row_content_heading','field_64870142a865e'),(131983,40407,'blocks_2_row_content_text',''),(131984,40407,'_blocks_2_row_content_text','field_64870148a865f'),(131985,40407,'blocks_2_row_content',''),(131986,40407,'_blocks_2_row_content','field_6487008ba865c'),(131987,40407,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(131988,40407,'_blocks_2_video_src','field_6193c4a98ec07'),(131989,40407,'blocks_2_video_thumbnail','39175'),(131990,40407,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(131991,40407,'blocks_3_acfe_flexible_toggle','1'),(131992,40407,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(131993,40407,'blocks_3_acfe_flexible_layout_title','Cards'),(131994,40407,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(131995,40407,'blocks_3_options_theme','#ffffff'),(131996,40407,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(131997,40407,'blocks_3_options_format','carousel'),(131998,40407,'_blocks_3_options_format','field_617a7b15245b5'),(131999,40407,'blocks_3_options_style','default'),(132000,40407,'_blocks_3_options_style','field_6278ffb63484a'),(132001,40407,'blocks_3_options_cards_current_listing','0'),(132002,40407,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(132003,40407,'blocks_3_options_cards_content','custom'),(132004,40407,'_blocks_3_options_cards_content','field_617aba6122688'),(132005,40407,'blocks_3_options',''),(132006,40407,'_blocks_3_options','field_617a7b15245b3'),(132007,40407,'blocks_3_cards_custom_0_image','39504'),(132008,40407,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(132009,40407,'blocks_3_cards_custom_0_title','Our Partners'),(132010,40407,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(132011,40407,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(132012,40407,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(132013,40407,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(132014,40407,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(132015,40407,'blocks_3_cards_custom','1'),(132016,40407,'_blocks_3_cards_custom','field_6194cbf84d386'),(132017,40407,'_thumbnail_id','39186'),(132018,40407,'__thumbnail_id','field_617570855ddaf'),(132019,40407,'blocks_0_acfe_flexible_toggle',''),(132020,40407,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(132021,40407,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(132022,40407,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(132023,40407,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in the education of intrinsic biomechanics.</p>'),(132024,40407,'_blocks_0_content','field_6193c9b5eac84'),(132025,40407,'hide_hero','0'),(132026,40407,'_hide_hero','field_66a2380fcda39'),(132027,40407,'blocks_3_cards_row_content_title',''),(132028,40407,'_blocks_3_cards_row_content_title','field_6194fc1bc99fd'),(132029,40407,'blocks_3_cards_row_content_heading',''),(132030,40407,'_blocks_3_cards_row_content_heading','field_6194fc1bc99fe'),(132031,40407,'blocks_3_cards_row_content_text',''),(132032,40407,'_blocks_3_cards_row_content_text','field_6194fc1bc99ff'),(132033,40407,'blocks_3_cards_row_content_actions',''),(132034,40407,'_blocks_3_cards_row_content_actions','field_6194fc1bc9a00'),(132035,40407,'blocks_3_cards_row_content',''),(132036,40407,'_blocks_3_cards_row_content','field_6194fc1bc99fc'),(132037,40407,'blocks_4_acfe_flexible_toggle',''),(132038,40407,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(132039,40407,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(132040,40407,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(132041,40407,'blocks_4_options_theme','#ffffff'),(132042,40407,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(132043,40407,'blocks_4_options_reverse','0'),(132044,40407,'_blocks_4_options_reverse','field_61768049bb8ac'),(132045,40407,'blocks_4_options',''),(132046,40407,'_blocks_4_options','field_617682517c334'),(132047,40407,'blocks_4_split_5050_image','39501'),(132048,40407,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(132049,40407,'blocks_4_split_5050_video',''),(132050,40407,'_blocks_4_split_5050_video','field_6239f3160848a'),(132051,40407,'blocks_4_split_5050_content_title',''),(132052,40407,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(132053,40407,'blocks_4_split_5050_content_heading','Our Partners'),(132054,40407,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(132055,40407,'blocks_4_split_5050_content_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(132056,40407,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(132057,40407,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"View our Partner Page\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(132058,40407,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(132059,40407,'blocks_4_split_5050_content_actions','1'),(132060,40407,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(132061,40407,'blocks_4_split_5050_content',''),(132062,40407,'_blocks_4_split_5050_content','field_61767afceb8ba'),(132063,40407,'blocks_5_acfe_flexible_toggle',''),(132064,40407,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(132065,40407,'blocks_5_acfe_flexible_layout_title','Text Block'),(132066,40407,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(132067,40407,'blocks_5_options_theme','#ffffff'),(132068,40407,'_blocks_5_options_theme','field_6176830e2ad17'),(132069,40407,'blocks_5_options',''),(132070,40407,'_blocks_5_options','field_6176830e2ad16'),(132071,40407,'blocks_5_text_block_heading','Our Team'),(132072,40407,'_blocks_5_text_block_heading','field_617669d413097'),(132073,40407,'blocks_5_text_block_content',''),(132074,40407,'_blocks_5_text_block_content','field_617669ec13098'),(132075,40407,'blocks_6_acfe_flexible_toggle',''),(132076,40407,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(132077,40407,'blocks_6_acfe_flexible_layout_title','Cards'),(132078,40407,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(132079,40407,'blocks_6_options_theme','#ffffff'),(132080,40407,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(132081,40407,'blocks_6_options_format','carousel'),(132082,40407,'_blocks_6_options_format','field_617a7b15245b5'),(132083,40407,'blocks_6_options_style','default'),(132084,40407,'_blocks_6_options_style','field_6278ffb63484a'),(132085,40407,'blocks_6_options_cards_current_listing','0'),(132086,40407,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(132087,40407,'blocks_6_options_cards_content','custom'),(132088,40407,'_blocks_6_options_cards_content','field_617aba6122688'),(132089,40407,'blocks_6_options',''),(132090,40407,'_blocks_6_options','field_617a7b15245b3'),(132091,40407,'blocks_6_cards_custom_0_image','39353'),(132092,40407,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(132093,40407,'blocks_6_cards_custom_0_title','Rachel Frances Thomson - Founder'),(132094,40407,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(132095,40407,'blocks_6_cards_custom_0_text','Rachel’s professional career in the health & fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe & Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor & IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd & so frequently lectures, presents & teaches at events both UK & Internationally about the benefits of the intrinsic biomechanics\' methods.'),(132096,40407,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(132097,40407,'blocks_6_cards_custom_0_link',''),(132098,40407,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(132099,40407,'blocks_6_cards_custom_1_image','39366'),(132100,40407,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(132101,40407,'blocks_6_cards_custom_1_title','Tom Waldron - Master Trainer'),(132102,40407,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(132103,40407,'blocks_6_cards_custom_1_text','Tom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance & freedom of movement are described by Tom as ‘incredible!’  He has been a Biomechanics Coach™ since Mar 2016 & it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts & it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(132104,40407,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(132105,40407,'blocks_6_cards_custom_1_link',''),(132106,40407,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(132107,40407,'blocks_6_cards_custom_2_image','39598'),(132108,40407,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(132109,40407,'blocks_6_cards_custom_2_title','Kim Tomlin - Master Trainer'),(132110,40407,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(132111,40407,'blocks_6_cards_custom_2_text','Kim is the owner of Primal Flow, a Personal Trainer, Biomechanics Coach and Master Trainer. Kim has been passionate about exploring movement ever since becoming a Primal Flow Instructor in 2012, now combining her skills to help people to improve their movement quality and capacity, whilst enjoying the freedom of their own individual movement capabilities. As well as teaching the Biomechanics Coaching Diploma (for Biomechanics Education), Kim is a Training Provider Partner with CIMSPA and delivers her own Train the Trainer courses, including the Primal Flow Instructor Course. '),(132112,40407,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(132113,40407,'blocks_6_cards_custom_2_link',''),(132114,40407,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(132115,40407,'blocks_6_cards_custom_3_image','39593'),(132116,40407,'_blocks_6_cards_custom_3_image','field_6194cc284d387'),(132117,40407,'blocks_6_cards_custom_3_title','Morgan Hanness - Sales Lead'),(132118,40407,'_blocks_6_cards_custom_3_title','field_6194cc454d388'),(132119,40407,'blocks_6_cards_custom_3_text','Morgan Hanness has a background in personal training, nutrition coaching, and integrative nutrition health coaching, and has always been passionate about helping people achieve their goals. At Biomechanics Education, Morgan also helps others develop their careers in the health and fitness industry, enabling them to assist even more people. Living with Hypermobility Syndrome, Morgan deeply understands the value of proper movement, which aligns perfectly with Biomechanics Education’s core values. Morgan is passionate about sports, especially snowboarding, surfing, rock climbing, and other outdoor activities, and is grateful for pain-free movement. '),(132120,40407,'_blocks_6_cards_custom_3_text','field_6194cc4a4d389'),(132121,40407,'blocks_6_cards_custom_3_link',''),(132122,40407,'_blocks_6_cards_custom_3_link','field_6194cc534d38a'),(132123,40407,'blocks_6_cards_custom_4_image','40406'),(132124,40407,'_blocks_6_cards_custom_4_image','field_6194cc284d387'),(132125,40407,'blocks_6_cards_custom_4_title','Fiona Jones - Assessor '),(132126,40407,'_blocks_6_cards_custom_4_title','field_6194cc454d388'),(132127,40407,'blocks_6_cards_custom_4_text','Fiona began her career in the fitness industry in 2006 as a Gym and Group Exercise Instructor and Personal Trainer. In 2010, she transitioned to assessing Fitness Apprenticeships, expanding her expertise in the field. After experiencing the transformative effects of a coaching programme firsthand, Fiona pursued a Low Back Specialist Biomechanics Diploma and a qualification in Remedial Massage. Since then, she has successfully combined her role as an assessor with maintaining her own client base in the UK and overseas, including on Ascension Island and in the United States. \r\n\r\nWhile abroad, Fiona joined the team as a course advisor and became an integral part of the support team. Upon returning to the UK during the 2020 lockdown, she continued her work, assessing for Biomechanics Education both inside and outside the classroom. Fiona is passionate about guiding people through their journeys of discovery, helping them achieve their fitness and health goals with confidence and understanding. '),(132128,40407,'_blocks_6_cards_custom_4_text','field_6194cc4a4d389'),(132129,40407,'blocks_6_cards_custom_4_link',''),(132130,40407,'_blocks_6_cards_custom_4_link','field_6194cc534d38a'),(132131,40407,'blocks_6_cards_custom','5'),(132132,40407,'_blocks_6_cards_custom','field_6194cbf84d386'),(132133,40408,'_wp_attached_file','2024/09/Untitled-design-1.png'),(132134,40408,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1280;s:6:\"height\";i:720;s:4:\"file\";s:29:\"2024/09/Untitled-design-1.png\";s:8:\"filesize\";i:564359;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:269248;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"Untitled-design-1-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:438794;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69564;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:207067;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:134054;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-900x720.png\";s:5:\"width\";i:900;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:463907;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:30:\"Untitled-design-1-1200x720.png\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:533980;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86877;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:339934;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:30:\"Untitled-design-1-1200x720.png\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:533980;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110343;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-675x720.png\";s:5:\"width\";i:675;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:387211;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-900x720.png\";s:5:\"width\";i:900;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:463907;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98697;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:390106;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:30:\"Untitled-design-1-1200x720.png\";s:5:\"width\";i:1200;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:533980;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69564;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:29:\"Untitled-design-1-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:269248;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:30:\"Untitled-design-1-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:438794;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(132135,40408,'_wp_attachment_image_alt','Rcahel, a woman, and a man, discussing biomechanics in a workshop setting.'),(132136,40409,'hero_style','default'),(132137,40409,'_hero_style','field_62051d9dc5324'),(132138,40409,'hero_image_pos_x','right'),(132139,40409,'_hero_image_pos_x','field_62ec3d05390bb'),(132140,40409,'hero_image_pos_y','top'),(132141,40409,'_hero_image_pos_y','field_62ec3d05390bc'),(132142,40409,'hero_image_pos',''),(132143,40409,'_hero_image_pos','field_62ec3d05390ba'),(132144,40409,'hero_title','About Us'),(132145,40409,'_hero_title','field_617571fe285e8'),(132146,40409,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(132147,40409,'_hero_text','field_6175723c285e9'),(132148,40409,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(132149,40409,'_hero_actions_0_button','field_61757281285eb'),(132150,40409,'hero_actions','1'),(132151,40409,'_hero_actions','field_61757270285ea'),(132152,40409,'hero_icon',''),(132153,40409,'_hero_icon','field_61a6182199d03'),(132154,40409,'fft_hide_from_listings','0'),(132155,40409,'_fft_hide_from_listings','field_61f1320446ab2'),(132156,40409,'fft_page_format','default'),(132157,40409,'_fft_page_format','field_61ae213f1f218'),(132158,40409,'fft_hide_nav','0'),(132159,40409,'_fft_hide_nav','field_635bd5e43527c'),(132160,40409,'fft_hide_header_call_to_action','0'),(132161,40409,'_fft_hide_header_call_to_action','field_635bd6723527d'),(132162,40409,'fft_page_sitemap','0'),(132163,40409,'_fft_page_sitemap','field_61af9b34e8181'),(132164,40409,'blocks','a:7:{i:0;s:16:\"standard_content\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(132165,40409,'_blocks','field_6176696113096'),(132166,40409,'blocks_1_acfe_flexible_toggle',''),(132167,40409,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(132168,40409,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(132169,40409,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(132170,40409,'blocks_1_options_theme','#b61234'),(132171,40409,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(132172,40409,'blocks_1_options_reverse','0'),(132173,40409,'_blocks_1_options_reverse','field_61768049bb8ac'),(132174,40409,'blocks_1_options',''),(132175,40409,'_blocks_1_options','field_617682517c334'),(132176,40409,'blocks_1_split_5050_image','35276'),(132177,40409,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(132178,40409,'blocks_1_split_5050_video',''),(132179,40409,'_blocks_1_split_5050_video','field_6239f3160848a'),(132180,40409,'blocks_1_split_5050_content_title',''),(132181,40409,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(132182,40409,'blocks_1_split_5050_content_heading','What we do'),(132183,40409,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(132184,40409,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(132185,40409,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(132186,40409,'blocks_1_split_5050_content_actions',''),(132187,40409,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(132188,40409,'blocks_1_split_5050_content',''),(132189,40409,'_blocks_1_split_5050_content','field_61767afceb8ba'),(132190,40409,'blocks_2_acfe_flexible_toggle',''),(132191,40409,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(132192,40409,'blocks_2_acfe_flexible_layout_title','Video'),(132193,40409,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(132194,40409,'blocks_2_size','large'),(132195,40409,'_blocks_2_size','field_6487038f297c1'),(132196,40409,'blocks_2_row_content_title',''),(132197,40409,'_blocks_2_row_content_title','field_64870132a865d'),(132198,40409,'blocks_2_row_content_heading',''),(132199,40409,'_blocks_2_row_content_heading','field_64870142a865e'),(132200,40409,'blocks_2_row_content_text',''),(132201,40409,'_blocks_2_row_content_text','field_64870148a865f'),(132202,40409,'blocks_2_row_content',''),(132203,40409,'_blocks_2_row_content','field_6487008ba865c'),(132204,40409,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(132205,40409,'_blocks_2_video_src','field_6193c4a98ec07'),(132206,40409,'blocks_2_video_thumbnail','39175'),(132207,40409,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(132208,40409,'blocks_3_acfe_flexible_toggle','1'),(132209,40409,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(132210,40409,'blocks_3_acfe_flexible_layout_title','Cards'),(132211,40409,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(132212,40409,'blocks_3_options_theme','#ffffff'),(132213,40409,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(132214,40409,'blocks_3_options_format','carousel'),(132215,40409,'_blocks_3_options_format','field_617a7b15245b5'),(132216,40409,'blocks_3_options_style','default'),(132217,40409,'_blocks_3_options_style','field_6278ffb63484a'),(132218,40409,'blocks_3_options_cards_current_listing','0'),(132219,40409,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(132220,40409,'blocks_3_options_cards_content','custom'),(132221,40409,'_blocks_3_options_cards_content','field_617aba6122688'),(132222,40409,'blocks_3_options',''),(132223,40409,'_blocks_3_options','field_617a7b15245b3'),(132224,40409,'blocks_3_cards_custom_0_image','39504'),(132225,40409,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(132226,40409,'blocks_3_cards_custom_0_title','Our Partners'),(132227,40409,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(132228,40409,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(132229,40409,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(132230,40409,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(132231,40409,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(132232,40409,'blocks_3_cards_custom','1'),(132233,40409,'_blocks_3_cards_custom','field_6194cbf84d386'),(132234,40409,'_thumbnail_id','40408'),(132235,40409,'__thumbnail_id','field_617570855ddaf'),(132236,40409,'blocks_0_acfe_flexible_toggle',''),(132237,40409,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(132238,40409,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(132239,40409,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(132240,40409,'blocks_0_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in the education of intrinsic biomechanics.</p>'),(132241,40409,'_blocks_0_content','field_6193c9b5eac84'),(132242,40409,'hide_hero','0'),(132243,40409,'_hide_hero','field_66a2380fcda39'),(132244,40409,'blocks_3_cards_row_content_title',''),(132245,40409,'_blocks_3_cards_row_content_title','field_6194fc1bc99fd'),(132246,40409,'blocks_3_cards_row_content_heading',''),(132247,40409,'_blocks_3_cards_row_content_heading','field_6194fc1bc99fe'),(132248,40409,'blocks_3_cards_row_content_text',''),(132249,40409,'_blocks_3_cards_row_content_text','field_6194fc1bc99ff'),(132250,40409,'blocks_3_cards_row_content_actions',''),(132251,40409,'_blocks_3_cards_row_content_actions','field_6194fc1bc9a00'),(132252,40409,'blocks_3_cards_row_content',''),(132253,40409,'_blocks_3_cards_row_content','field_6194fc1bc99fc'),(132254,40409,'blocks_4_acfe_flexible_toggle',''),(132255,40409,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(132256,40409,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(132257,40409,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(132258,40409,'blocks_4_options_theme','#ffffff'),(132259,40409,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(132260,40409,'blocks_4_options_reverse','0'),(132261,40409,'_blocks_4_options_reverse','field_61768049bb8ac'),(132262,40409,'blocks_4_options',''),(132263,40409,'_blocks_4_options','field_617682517c334'),(132264,40409,'blocks_4_split_5050_image','39501'),(132265,40409,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(132266,40409,'blocks_4_split_5050_video',''),(132267,40409,'_blocks_4_split_5050_video','field_6239f3160848a'),(132268,40409,'blocks_4_split_5050_content_title',''),(132269,40409,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(132270,40409,'blocks_4_split_5050_content_heading','Our Partners'),(132271,40409,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(132272,40409,'blocks_4_split_5050_content_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(132273,40409,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(132274,40409,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"View our Partner Page\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(132275,40409,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(132276,40409,'blocks_4_split_5050_content_actions','1'),(132277,40409,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(132278,40409,'blocks_4_split_5050_content',''),(132279,40409,'_blocks_4_split_5050_content','field_61767afceb8ba'),(132280,40409,'blocks_5_acfe_flexible_toggle',''),(132281,40409,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(132282,40409,'blocks_5_acfe_flexible_layout_title','Text Block'),(132283,40409,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(132284,40409,'blocks_5_options_theme','#ffffff'),(132285,40409,'_blocks_5_options_theme','field_6176830e2ad17'),(132286,40409,'blocks_5_options',''),(132287,40409,'_blocks_5_options','field_6176830e2ad16'),(132288,40409,'blocks_5_text_block_heading','Our Team'),(132289,40409,'_blocks_5_text_block_heading','field_617669d413097'),(132290,40409,'blocks_5_text_block_content',''),(132291,40409,'_blocks_5_text_block_content','field_617669ec13098'),(132292,40409,'blocks_6_acfe_flexible_toggle',''),(132293,40409,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(132294,40409,'blocks_6_acfe_flexible_layout_title','Cards'),(132295,40409,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(132296,40409,'blocks_6_options_theme','#ffffff'),(132297,40409,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(132298,40409,'blocks_6_options_format','carousel'),(132299,40409,'_blocks_6_options_format','field_617a7b15245b5'),(132300,40409,'blocks_6_options_style','default'),(132301,40409,'_blocks_6_options_style','field_6278ffb63484a'),(132302,40409,'blocks_6_options_cards_current_listing','0'),(132303,40409,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(132304,40409,'blocks_6_options_cards_content','custom'),(132305,40409,'_blocks_6_options_cards_content','field_617aba6122688'),(132306,40409,'blocks_6_options',''),(132307,40409,'_blocks_6_options','field_617a7b15245b3'),(132308,40409,'blocks_6_cards_custom_0_image','39353'),(132309,40409,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(132310,40409,'blocks_6_cards_custom_0_title','Rachel Frances Thomson - Founder'),(132311,40409,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(132312,40409,'blocks_6_cards_custom_0_text','Rachel’s professional career in the health & fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe & Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor & IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd & so frequently lectures, presents & teaches at events both UK & Internationally about the benefits of the intrinsic biomechanics\' methods.'),(132313,40409,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(132314,40409,'blocks_6_cards_custom_0_link',''),(132315,40409,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(132316,40409,'blocks_6_cards_custom_1_image','39366'),(132317,40409,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(132318,40409,'blocks_6_cards_custom_1_title','Tom Waldron - Master Trainer'),(132319,40409,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(132320,40409,'blocks_6_cards_custom_1_text','Tom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance & freedom of movement are described by Tom as ‘incredible!’  He has been a Biomechanics Coach™ since Mar 2016 & it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts & it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(132321,40409,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(132322,40409,'blocks_6_cards_custom_1_link',''),(132323,40409,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(132324,40409,'blocks_6_cards_custom_2_image','39598'),(132325,40409,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(132326,40409,'blocks_6_cards_custom_2_title','Kim Tomlin - Master Trainer'),(132327,40409,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(132328,40409,'blocks_6_cards_custom_2_text','Kim is the owner of Primal Flow, a Personal Trainer, Biomechanics Coach and Master Trainer. Kim has been passionate about exploring movement ever since becoming a Primal Flow Instructor in 2012, now combining her skills to help people to improve their movement quality and capacity, whilst enjoying the freedom of their own individual movement capabilities. As well as teaching the Biomechanics Coaching Diploma (for Biomechanics Education), Kim is a Training Provider Partner with CIMSPA and delivers her own Train the Trainer courses, including the Primal Flow Instructor Course. '),(132329,40409,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(132330,40409,'blocks_6_cards_custom_2_link',''),(132331,40409,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(132332,40409,'blocks_6_cards_custom_3_image','39593'),(132333,40409,'_blocks_6_cards_custom_3_image','field_6194cc284d387'),(132334,40409,'blocks_6_cards_custom_3_title','Morgan Hanness - Sales Lead'),(132335,40409,'_blocks_6_cards_custom_3_title','field_6194cc454d388'),(132336,40409,'blocks_6_cards_custom_3_text','Morgan Hanness has a background in personal training, nutrition coaching, and integrative nutrition health coaching, and has always been passionate about helping people achieve their goals. At Biomechanics Education, Morgan also helps others develop their careers in the health and fitness industry, enabling them to assist even more people. Living with Hypermobility Syndrome, Morgan deeply understands the value of proper movement, which aligns perfectly with Biomechanics Education’s core values. Morgan is passionate about sports, especially snowboarding, surfing, rock climbing, and other outdoor activities, and is grateful for pain-free movement. '),(132337,40409,'_blocks_6_cards_custom_3_text','field_6194cc4a4d389'),(132338,40409,'blocks_6_cards_custom_3_link',''),(132339,40409,'_blocks_6_cards_custom_3_link','field_6194cc534d38a'),(132340,40409,'blocks_6_cards_custom_4_image','40406'),(132341,40409,'_blocks_6_cards_custom_4_image','field_6194cc284d387'),(132342,40409,'blocks_6_cards_custom_4_title','Fiona Jones - Assessor '),(132343,40409,'_blocks_6_cards_custom_4_title','field_6194cc454d388'),(132344,40409,'blocks_6_cards_custom_4_text','Fiona began her career in the fitness industry in 2006 as a Gym and Group Exercise Instructor and Personal Trainer. In 2010, she transitioned to assessing Fitness Apprenticeships, expanding her expertise in the field. After experiencing the transformative effects of a coaching programme firsthand, Fiona pursued a Low Back Specialist Biomechanics Diploma and a qualification in Remedial Massage. Since then, she has successfully combined her role as an assessor with maintaining her own client base in the UK and overseas, including on Ascension Island and in the United States. \r\n\r\nWhile abroad, Fiona joined the team as a course advisor and became an integral part of the support team. Upon returning to the UK during the 2020 lockdown, she continued her work, assessing for Biomechanics Education both inside and outside the classroom. Fiona is passionate about guiding people through their journeys of discovery, helping them achieve their fitness and health goals with confidence and understanding. '),(132345,40409,'_blocks_6_cards_custom_4_text','field_6194cc4a4d389'),(132346,40409,'blocks_6_cards_custom_4_link',''),(132347,40409,'_blocks_6_cards_custom_4_link','field_6194cc534d38a'),(132348,40409,'blocks_6_cards_custom','5'),(132349,40409,'_blocks_6_cards_custom','field_6194cbf84d386'),(132350,40410,'_edit_lock','1745570974:17'),(132351,40410,'_edit_last','15'),(132352,40411,'_wp_attached_file','2024/09/DSC01488-scaled.jpg'),(132353,40411,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:27:\"2024/09/DSC01488-scaled.jpg\";s:8:\"filesize\";i:1064721;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC01488-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198173;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC01488-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:305184;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC01488-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76818;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC01488-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158596;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC01488-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:452137;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC01488-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:729134;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC01488-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88090;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC01488-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256159;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC01488-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:401536;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC01488-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76604;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC01488-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198173;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC01488-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:305184;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC01488-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76173;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC01488-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204256;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"DSC01488-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:316306;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"DSC01488-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79714;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"DSC01488-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:213917;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"DSC01488-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:331563;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"DSC01488-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72013;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"DSC01488-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175838;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"DSC01488-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265574;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583576238\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC01488.jpg\";}'),(132354,40411,'_wp_attachment_image_alt','In-person workshop, for iMoveFreely'),(132569,40410,'form_action','https://analytics-eu.clickdimensions.com/forms/h/azL0NuGdli0eOH5nHe93Yn'),(132570,40410,'_form_action','field_61a50501a49c0'),(132571,40410,'form_fields_0_acfe_layout_col','12'),(132572,40410,'_form_fields_0_acfe_layout_col','field_layout_634558b01d0f2_col'),(132573,40410,'form_fields_0_layout_settings_required','1'),(132574,40410,'_form_fields_0_layout_settings_required','field_63457a5c4b908'),(132575,40410,'form_fields_0_layout_settings_hidden','0'),(132576,40410,'_form_fields_0_layout_settings_hidden','field_63457a704b909'),(132577,40410,'form_fields_0_layout_settings',''),(132578,40410,'_form_fields_0_layout_settings','field_layout_634558b01d0f2_settings'),(132579,40410,'form_fields_0_acfe_flexible_layout_title','Email'),(132580,40410,'_form_fields_0_acfe_flexible_layout_title','field_layout_634558b01d0f2_title'),(132581,40410,'form_fields_0_name','email'),(132582,40410,'_form_fields_0_name','field_634558b01d0f4'),(132583,40410,'form_fields_0_label','Please confirm email address'),(132584,40410,'_form_fields_0_label','field_634558b01d0f3'),(132585,40410,'form_fields_0_description',''),(132586,40410,'_form_fields_0_description','field_6389049db4656'),(132587,40410,'form_fields_1_acfe_layout_col','12'),(132588,40410,'_form_fields_1_acfe_layout_col','field_layout_634558b91d0f6_col'),(132589,40410,'form_fields_1_layout_settings_required','1'),(132590,40410,'_form_fields_1_layout_settings_required','field_63457a5c4b908'),(132591,40410,'form_fields_1_layout_settings_hidden','0'),(132592,40410,'_form_fields_1_layout_settings_hidden','field_63457a704b909'),(132593,40410,'form_fields_1_layout_settings',''),(132594,40410,'_form_fields_1_layout_settings','field_layout_634558b91d0f6_settings'),(132595,40410,'form_fields_1_acfe_flexible_layout_title','I\'m Interested Because'),(132596,40410,'_form_fields_1_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(132597,40410,'form_fields_1_name','interestedbecause'),(132598,40410,'_form_fields_1_name','field_634558b91d0f8'),(132599,40410,'form_fields_1_label','I\'m Interested Because...'),(132600,40410,'_form_fields_1_label','field_634558b91d0f7'),(132601,40410,'form_fields_1_description',''),(132602,40410,'_form_fields_1_description','field_638904adb4657'),(132603,40410,'form_fields_1_options','I want to start a new career\r\nI want to build on existing skills or qualifications \r\nI want to generate a second income\r\nJust for personal interest\r\nI\'m not sure yet, I\'m just researching'),(132604,40410,'_form_fields_1_options','field_634558c91d0fa'),(132605,40410,'form_fields_2_acfe_layout_col','6'),(132606,40410,'_form_fields_2_acfe_layout_col','field_layout_634558b91d0f6_col'),(132607,40410,'form_fields_2_layout_settings_required','1'),(132608,40410,'_form_fields_2_layout_settings_required','field_63457a5c4b908'),(132609,40410,'form_fields_2_layout_settings_hidden','0'),(132610,40410,'_form_fields_2_layout_settings_hidden','field_63457a704b909'),(132611,40410,'form_fields_2_layout_settings',''),(132612,40410,'_form_fields_2_layout_settings','field_layout_634558b91d0f6_settings'),(132613,40410,'form_fields_2_acfe_flexible_layout_title','Age Group'),(132614,40410,'_form_fields_2_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(132615,40410,'form_fields_2_name','agegroup'),(132616,40410,'_form_fields_2_name','field_634558b91d0f8'),(132617,40410,'form_fields_2_label','What Age Group Do You Belong To?'),(132618,40410,'_form_fields_2_label','field_634558b91d0f7'),(132619,40410,'form_fields_2_description',''),(132620,40410,'_form_fields_2_description','field_638904adb4657'),(132621,40410,'form_fields_2_options','Under 18 \r\n18-24\r\n25-34\r\n35-44\r\n45-54\r\n55-64\r\n65+'),(132622,40410,'_form_fields_2_options','field_634558c91d0fa'),(132623,40410,'form_fields_3_acfe_layout_col','6'),(132624,40410,'_form_fields_3_acfe_layout_col','field_layout_634558b91d0f6_col'),(132625,40410,'form_fields_3_layout_settings_required','1'),(132626,40410,'_form_fields_3_layout_settings_required','field_63457a5c4b908'),(132627,40410,'form_fields_3_layout_settings_hidden','0'),(132628,40410,'_form_fields_3_layout_settings_hidden','field_63457a704b909'),(132629,40410,'form_fields_3_layout_settings',''),(132630,40410,'_form_fields_3_layout_settings','field_layout_634558b91d0f6_settings'),(132631,40410,'form_fields_3_acfe_flexible_layout_title','I Identify As...'),(132632,40410,'_form_fields_3_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(132633,40410,'form_fields_3_name','genderidentify'),(132634,40410,'_form_fields_3_name','field_634558b91d0f8'),(132635,40410,'form_fields_3_label','I Identify As...'),(132636,40410,'_form_fields_3_label','field_634558b91d0f7'),(132637,40410,'form_fields_3_description',''),(132638,40410,'_form_fields_3_description','field_638904adb4657'),(132639,40410,'form_fields_3_options','Male\r\nFemale\r\nNon-binary \r\nTransgender \r\nOther\r\nWould rather not say'),(132640,40410,'_form_fields_3_options','field_634558c91d0fa'),(132641,40410,'form_fields_4_acfe_layout_col','6'),(132642,40410,'_form_fields_4_acfe_layout_col','field_layout_634558b91d0f6_col'),(132643,40410,'form_fields_4_layout_settings_required','1'),(132644,40410,'_form_fields_4_layout_settings_required','field_63457a5c4b908'),(132645,40410,'form_fields_4_layout_settings_hidden','0'),(132646,40410,'_form_fields_4_layout_settings_hidden','field_63457a704b909'),(132647,40410,'form_fields_4_layout_settings',''),(132648,40410,'_form_fields_4_layout_settings','field_layout_634558b91d0f6_settings'),(132649,40410,'form_fields_4_acfe_flexible_layout_title','In Which Region of the UK do you Live?'),(132650,40410,'_form_fields_4_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(132651,40410,'form_fields_4_name','regionlive'),(132652,40410,'_form_fields_4_name','field_634558b91d0f8'),(132653,40410,'form_fields_4_label','In Which Region of the UK do you Live?'),(132654,40410,'_form_fields_4_label','field_634558b91d0f7'),(132655,40410,'form_fields_4_description',''),(132656,40410,'_form_fields_4_description','field_638904adb4657'),(132657,40410,'form_fields_4_options','North East\r\nNorth West\r\nYorkshire & The Humber \r\nEast Midlands \r\nWest Midlands \r\nEast of England \r\nLondon\r\nSouth East\r\nSouth West\r\nScotland\r\nWales\r\nNorthern Ireland \r\nI don\'t live in the UK'),(132658,40410,'_form_fields_4_options','field_634558c91d0fa'),(132659,40410,'form_fields_5_acfe_layout_col','6'),(132660,40410,'_form_fields_5_acfe_layout_col','field_layout_634557f2ac428_col'),(132661,40410,'form_fields_5_layout_settings_required','1'),(132662,40410,'_form_fields_5_layout_settings_required','field_63457a5c4b908'),(132663,40410,'form_fields_5_layout_settings_hidden','0'),(132664,40410,'_form_fields_5_layout_settings_hidden','field_63457a704b909'),(132665,40410,'form_fields_5_layout_settings',''),(132666,40410,'_form_fields_5_layout_settings','field_layout_634557f2ac428_settings'),(132667,40410,'form_fields_5_acfe_flexible_layout_title','What is your Current Postcode?'),(132668,40410,'_form_fields_5_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(132669,40410,'form_fields_5_name','currentpostcode'),(132670,40410,'_form_fields_5_name','field_634558471d0f0'),(132671,40410,'form_fields_5_label','What is your Current Postcode?'),(132672,40410,'_form_fields_5_label','field_634558271d0ef'),(132673,40410,'form_fields_5_description',''),(132674,40410,'_form_fields_5_description','field_6389047cb4655'),(132675,40410,'form_fields_6_acfe_layout_col','6'),(132676,40410,'_form_fields_6_acfe_layout_col','field_layout_634558b91d0f6_col'),(132677,40410,'form_fields_6_layout_settings_required','1'),(132678,40410,'_form_fields_6_layout_settings_required','field_63457a5c4b908'),(132679,40410,'form_fields_6_layout_settings_hidden','1'),(132680,40410,'_form_fields_6_layout_settings_hidden','field_63457a704b909'),(132681,40410,'form_fields_6_layout_settings',''),(132682,40410,'_form_fields_6_layout_settings','field_layout_634558b91d0f6_settings'),(132683,40410,'form_fields_6_acfe_flexible_layout_title','What are your Current Living Circumstances?'),(132684,40410,'_form_fields_6_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(132685,40410,'form_fields_6_name','livingcircumstances'),(132686,40410,'_form_fields_6_name','field_634558b91d0f8'),(132687,40410,'form_fields_6_label','What are your Current Living Circumstances?'),(132688,40410,'_form_fields_6_label','field_634558b91d0f7'),(132689,40410,'form_fields_6_description',''),(132690,40410,'_form_fields_6_description','field_638904adb4657'),(132691,40410,'form_fields_6_options','Living with others (family or friends)\r\nHomeowner\r\nRenting'),(132692,40410,'_form_fields_6_options','field_634558c91d0fa'),(132693,40410,'form_fields_7_acfe_layout_col','6'),(132694,40410,'_form_fields_7_acfe_layout_col','field_layout_634558b91d0f6_col'),(132695,40410,'form_fields_7_layout_settings_required','1'),(132696,40410,'_form_fields_7_layout_settings_required','field_63457a5c4b908'),(132697,40410,'form_fields_7_layout_settings_hidden','1'),(132698,40410,'_form_fields_7_layout_settings_hidden','field_63457a704b909'),(132699,40410,'form_fields_7_layout_settings',''),(132700,40410,'_form_fields_7_layout_settings','field_layout_634558b91d0f6_settings'),(132701,40410,'form_fields_7_acfe_flexible_layout_title','Do You Have Any Children or Dependants?'),(132702,40410,'_form_fields_7_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(132703,40410,'form_fields_7_name','childrenordependants'),(132704,40410,'_form_fields_7_name','field_634558b91d0f8'),(132705,40410,'form_fields_7_label','Do You Have Any Children or Dependants?'),(132706,40410,'_form_fields_7_label','field_634558b91d0f7'),(132707,40410,'form_fields_7_description',''),(132708,40410,'_form_fields_7_description','field_638904adb4657'),(132709,40410,'form_fields_7_options','Yes\r\nNo'),(132710,40410,'_form_fields_7_options','field_634558c91d0fa'),(132711,40410,'form_fields_8_acfe_layout_col','6'),(132712,40410,'_form_fields_8_acfe_layout_col','field_layout_634558b91d0f6_col'),(132713,40410,'form_fields_8_layout_settings_required','1'),(132714,40410,'_form_fields_8_layout_settings_required','field_63457a5c4b908'),(132715,40410,'form_fields_8_layout_settings_hidden','1'),(132716,40410,'_form_fields_8_layout_settings_hidden','field_63457a704b909'),(132717,40410,'form_fields_8_layout_settings',''),(132718,40410,'_form_fields_8_layout_settings','field_layout_634558b91d0f6_settings'),(132719,40410,'form_fields_8_acfe_flexible_layout_title','What Level of Education do you Have at Present?'),(132720,40410,'_form_fields_8_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(132721,40410,'form_fields_8_name','levelofeducation'),(132722,40410,'_form_fields_8_name','field_634558b91d0f8'),(132723,40410,'form_fields_8_label','What Level of Education do you Have at Present?'),(132724,40410,'_form_fields_8_label','field_634558b91d0f7'),(132725,40410,'form_fields_8_description',''),(132726,40410,'_form_fields_8_description','field_638904adb4657'),(132727,40410,'form_fields_8_options','University degree\r\nA-Levels \r\nBTEC or equivalent \r\nGCSE\r\nOther'),(132728,40410,'_form_fields_8_options','field_634558c91d0fa'),(132729,40410,'form_fields_9_acfe_layout_col','6'),(132730,40410,'_form_fields_9_acfe_layout_col','field_layout_634558b91d0f6_col'),(132731,40410,'form_fields_9_layout_settings_required','1'),(132732,40410,'_form_fields_9_layout_settings_required','field_63457a5c4b908'),(132733,40410,'form_fields_9_layout_settings_hidden','1'),(132734,40410,'_form_fields_9_layout_settings_hidden','field_63457a704b909'),(132735,40410,'form_fields_9_layout_settings',''),(132736,40410,'_form_fields_9_layout_settings','field_layout_634558b91d0f6_settings'),(132737,40410,'form_fields_9_acfe_flexible_layout_title','I already have a health or fitness qualification'),(132738,40410,'_form_fields_9_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(132739,40410,'form_fields_9_name','qualification'),(132740,40410,'_form_fields_9_name','field_634558b91d0f8'),(132741,40410,'form_fields_9_label','I already have a health or fitness qualification'),(132742,40410,'_form_fields_9_label','field_634558b91d0f7'),(132743,40410,'form_fields_9_description',''),(132744,40410,'_form_fields_9_description','field_638904adb4657'),(132745,40410,'form_fields_9_options','No\r\nYes'),(132746,40410,'_form_fields_9_options','field_634558c91d0fa'),(132747,40410,'form_fields_10_acfe_layout_col','6'),(132748,40410,'_form_fields_10_acfe_layout_col','field_layout_634558b91d0f6_col'),(132749,40410,'form_fields_10_layout_settings_required','1'),(132750,40410,'_form_fields_10_layout_settings_required','field_63457a5c4b908'),(132751,40410,'form_fields_10_layout_settings_hidden','1'),(132752,40410,'_form_fields_10_layout_settings_hidden','field_63457a704b909'),(132753,40410,'form_fields_10_layout_settings',''),(132754,40410,'_form_fields_10_layout_settings','field_layout_634558b91d0f6_settings'),(132755,40410,'form_fields_10_acfe_flexible_layout_title','What is your Current Employment Status?'),(132756,40410,'_form_fields_10_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(132757,40410,'form_fields_10_name','employmentstatus'),(132758,40410,'_form_fields_10_name','field_634558b91d0f8'),(132759,40410,'form_fields_10_label','What is your Current Employment Status?'),(132760,40410,'_form_fields_10_label','field_634558b91d0f7'),(132761,40410,'form_fields_10_description',''),(132762,40410,'_form_fields_10_description','field_638904adb4657'),(132763,40410,'form_fields_10_options','Full time employed\r\nPart time employed\r\nFull time self employed\r\nPart time self employed \r\nUnemployed\r\nVolunteer worker'),(132764,40410,'_form_fields_10_options','field_634558c91d0fa'),(132765,40410,'form_fields_11_acfe_layout_col','6'),(132766,40410,'_form_fields_11_acfe_layout_col','field_layout_634558b91d0f6_col'),(132767,40410,'form_fields_11_layout_settings_required','1'),(132768,40410,'_form_fields_11_layout_settings_required','field_63457a5c4b908'),(132769,40410,'form_fields_11_layout_settings_hidden','1'),(132770,40410,'_form_fields_11_layout_settings_hidden','field_63457a704b909'),(132771,40410,'form_fields_11_layout_settings',''),(132772,40410,'_form_fields_11_layout_settings','field_layout_634558b91d0f6_settings'),(132773,40410,'form_fields_11_acfe_flexible_layout_title','What Industry Best Describes your Current Work?'),(132774,40410,'_form_fields_11_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(132775,40410,'form_fields_11_name','workindustry'),(132776,40410,'_form_fields_11_name','field_634558b91d0f8'),(132777,40410,'form_fields_11_label','What Industry Best Describes your Current Work?'),(132778,40410,'_form_fields_11_label','field_634558b91d0f7'),(132779,40410,'form_fields_11_description',''),(132780,40410,'_form_fields_11_description','field_638904adb4657'),(132781,40410,'form_fields_11_options','Accountancy, banking, and finance\r\nBusiness, consultancy, and administration\r\nConstruction and trade\r\nCouncil and public service\r\nEducation\r\nFitness, gym, and coaching\r\nLaw\r\nLaw enforcement and armed services\r\nLeisure, hospitality, retail, and tourism\r\nMedia, creative arts and design\r\nMedical, healthcare, and social care\r\nNutrition\r\nOther\r\nPilates or Yoga\r\nSales, marketing, and communications\r\nTechnology and IT'),(132782,40410,'_form_fields_11_options','field_634558c91d0fa'),(132783,40410,'form_fields','a:12:{i:0;s:5:\"email\";i:1;s:6:\"select\";i:2;s:6:\"select\";i:3;s:6:\"select\";i:4;s:6:\"select\";i:5;s:4:\"text\";i:6;s:6:\"select\";i:7;s:6:\"select\";i:8;s:6:\"select\";i:9;s:6:\"select\";i:10;s:6:\"select\";i:11;s:6:\"select\";}'),(132784,40410,'_form_fields','field_634557ea1d0ee'),(132785,40410,'form_fields_code',''),(132786,40410,'_form_fields_code','field_61a4f967fdc46'),(132787,40410,'form_hidden_fields_code',''),(132788,40410,'_form_hidden_fields_code','field_61a50668a49c3'),(132789,40410,'form_small_print',''),(132790,40410,'_form_small_print','field_61a50510a49c1'),(132791,40410,'form_button_label',''),(132792,40410,'_form_button_label','field_61a50530a49c2'),(132793,40410,'form_gtm_id',''),(132794,40410,'_form_gtm_id','field_63dbc2797b66f'),(132795,40413,'_edit_lock','1745570669:17'),(132796,40413,'_edit_last','15'),(132797,40413,'form_action','https://analytics-eu.clickdimensions.com/forms/h/aYR79hfixpk6Mi4xi2aOJX'),(132798,40413,'_form_action','field_61a50501a49c0'),(132799,40413,'form_fields_0_acfe_layout_col','6'),(132800,40413,'_form_fields_0_acfe_layout_col','field_layout_634557f2ac428_col'),(132801,40413,'form_fields_0_layout_settings_required','1'),(132802,40413,'_form_fields_0_layout_settings_required','field_63457a5c4b908'),(132803,40413,'form_fields_0_layout_settings_hidden','0'),(132804,40413,'_form_fields_0_layout_settings_hidden','field_63457a704b909'),(132805,40413,'form_fields_0_layout_settings',''),(132806,40413,'_form_fields_0_layout_settings','field_layout_634557f2ac428_settings'),(132807,40413,'form_fields_0_acfe_flexible_layout_title','First Name'),(132808,40413,'_form_fields_0_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(132809,40413,'form_fields_0_name','firstname'),(132810,40413,'_form_fields_0_name','field_634558471d0f0'),(132811,40413,'form_fields_0_label','First Name'),(132812,40413,'_form_fields_0_label','field_634558271d0ef'),(132813,40413,'form_fields_0_description',''),(132814,40413,'_form_fields_0_description','field_6389047cb4655'),(132815,40413,'form_fields_1_acfe_layout_col','6'),(132816,40413,'_form_fields_1_acfe_layout_col','field_layout_634557f2ac428_col'),(132817,40413,'form_fields_1_layout_settings_required','1'),(132818,40413,'_form_fields_1_layout_settings_required','field_63457a5c4b908'),(132819,40413,'form_fields_1_layout_settings_hidden','0'),(132820,40413,'_form_fields_1_layout_settings_hidden','field_63457a704b909'),(132821,40413,'form_fields_1_layout_settings',''),(132822,40413,'_form_fields_1_layout_settings','field_layout_634557f2ac428_settings'),(132823,40413,'form_fields_1_acfe_flexible_layout_title','Last Name'),(132824,40413,'_form_fields_1_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(132825,40413,'form_fields_1_name','lastname'),(132826,40413,'_form_fields_1_name','field_634558471d0f0'),(132827,40413,'form_fields_1_label','Last Name'),(132828,40413,'_form_fields_1_label','field_634558271d0ef'),(132829,40413,'form_fields_1_description',''),(132830,40413,'_form_fields_1_description','field_6389047cb4655'),(132831,40413,'form_fields_2_acfe_layout_col','12'),(132832,40413,'_form_fields_2_acfe_layout_col','field_layout_634558b01d0f2_col'),(132833,40413,'form_fields_2_layout_settings_required','1'),(132834,40413,'_form_fields_2_layout_settings_required','field_63457a5c4b908'),(132835,40413,'form_fields_2_layout_settings_hidden','0'),(132836,40413,'_form_fields_2_layout_settings_hidden','field_63457a704b909'),(132837,40413,'form_fields_2_layout_settings',''),(132838,40413,'_form_fields_2_layout_settings','field_layout_634558b01d0f2_settings'),(132839,40413,'form_fields_2_acfe_flexible_layout_title','Email'),(132840,40413,'_form_fields_2_acfe_flexible_layout_title','field_layout_634558b01d0f2_title'),(132841,40413,'form_fields_2_name','email'),(132842,40413,'_form_fields_2_name','field_634558b01d0f4'),(132843,40413,'form_fields_2_label','Email'),(132844,40413,'_form_fields_2_label','field_634558b01d0f3'),(132845,40413,'form_fields_2_description','This is how we\'ll send you a copy of your guide.'),(132846,40413,'_form_fields_2_description','field_6389049db4656'),(132847,40413,'form_fields_3_acfe_layout_col','12'),(132848,40413,'_form_fields_3_acfe_layout_col','field_layout_634557f2ac428_col'),(132849,40413,'form_fields_3_layout_settings_required','1'),(132850,40413,'_form_fields_3_layout_settings_required','field_63457a5c4b908'),(132851,40413,'form_fields_3_layout_settings_hidden','1'),(132852,40413,'_form_fields_3_layout_settings_hidden','field_63457a704b909'),(132853,40413,'form_fields_3_layout_settings',''),(132854,40413,'_form_fields_3_layout_settings','field_layout_634557f2ac428_settings'),(132855,40413,'form_fields_3_acfe_flexible_layout_title','Phone Number'),(132856,40413,'_form_fields_3_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(132857,40413,'form_fields_3_name','contactnumber'),(132858,40413,'_form_fields_3_name','field_634558471d0f0'),(132859,40413,'form_fields_3_label','Phone Number'),(132860,40413,'_form_fields_3_label','field_634558271d0ef'),(132861,40413,'form_fields_3_description','So that we can provide you with quick, easy information about your enquiry.'),(132862,40413,'_form_fields_3_description','field_6389047cb4655'),(132865,40413,'form_fields_4_layout_settings_required','1'),(132866,40413,'_form_fields_4_layout_settings_required','field_63457a5c4b908'),(132867,40413,'form_fields_4_layout_settings_hidden','1'),(132868,40413,'_form_fields_4_layout_settings_hidden','field_63457a704b909'),(132881,40413,'form_fields_5_layout_settings_required','1'),(132882,40413,'_form_fields_5_layout_settings_required','field_63457a5c4b908'),(132883,40413,'form_fields_5_layout_settings_hidden','1'),(132884,40413,'_form_fields_5_layout_settings_hidden','field_63457a704b909'),(132897,40413,'form_fields','a:6:{i:0;s:4:\"text\";i:1;s:4:\"text\";i:2;s:5:\"email\";i:3;s:4:\"text\";i:4;s:6:\"select\";i:5;s:6:\"select\";}'),(132898,40413,'_form_fields','field_634557ea1d0ee'),(132899,40413,'form_fields_code',''),(132900,40413,'_form_fields_code','field_61a4f967fdc46'),(132901,40413,'form_hidden_fields_code',''),(132902,40413,'_form_hidden_fields_code','field_61a50668a49c3'),(132903,40413,'form_small_print','By submitting this form, you agree to Biomechanics Education processing your data in accordance with our <a href=\"https://biomechanicseducation.com/privacy-policy/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a> and <a href=\"https://biomechanicseducation.com/terms-conditions/\" target=\"_blank\" rel=\"noopener\">Terms &amp; Conditions.</a>'),(132904,40413,'_form_small_print','field_61a50510a49c1'),(132905,40413,'form_button_label',''),(132906,40413,'_form_button_label','field_61a50530a49c2'),(132907,40413,'form_gtm_id',''),(132908,40413,'_form_gtm_id','field_63dbc2797b66f'),(132909,40414,'_edit_lock','1745571119:17'),(132910,40414,'_edit_last','15'),(132911,40414,'form_action','https://analytics-eu.clickdimensions.com/forms/h/akqLfc4BffkqCmGNQAKNIg'),(132912,40414,'_form_action','field_61a50501a49c0'),(132913,40414,'form_fields_0_acfe_layout_col','6'),(132914,40414,'_form_fields_0_acfe_layout_col','field_layout_634557f2ac428_col'),(132915,40414,'form_fields_0_layout_settings_required','1'),(132916,40414,'_form_fields_0_layout_settings_required','field_63457a5c4b908'),(132917,40414,'form_fields_0_layout_settings_hidden','0'),(132918,40414,'_form_fields_0_layout_settings_hidden','field_63457a704b909'),(132919,40414,'form_fields_0_layout_settings',''),(132920,40414,'_form_fields_0_layout_settings','field_layout_634557f2ac428_settings'),(132921,40414,'form_fields_0_acfe_flexible_layout_title','First Name'),(132922,40414,'_form_fields_0_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(132923,40414,'form_fields_0_name','firstname'),(132924,40414,'_form_fields_0_name','field_634558471d0f0'),(132925,40414,'form_fields_0_label','First Name'),(132926,40414,'_form_fields_0_label','field_634558271d0ef'),(132927,40414,'form_fields_0_description',''),(132928,40414,'_form_fields_0_description','field_6389047cb4655'),(132929,40414,'form_fields_1_acfe_layout_col','6'),(132930,40414,'_form_fields_1_acfe_layout_col','field_layout_634557f2ac428_col'),(132931,40414,'form_fields_1_layout_settings_required','1'),(132932,40414,'_form_fields_1_layout_settings_required','field_63457a5c4b908'),(132933,40414,'form_fields_1_layout_settings_hidden','0'),(132934,40414,'_form_fields_1_layout_settings_hidden','field_63457a704b909'),(132935,40414,'form_fields_1_layout_settings',''),(132936,40414,'_form_fields_1_layout_settings','field_layout_634557f2ac428_settings'),(132937,40414,'form_fields_1_acfe_flexible_layout_title','Last Name'),(132938,40414,'_form_fields_1_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(132939,40414,'form_fields_1_name','lastname'),(132940,40414,'_form_fields_1_name','field_634558471d0f0'),(132941,40414,'form_fields_1_label','Last Name'),(132942,40414,'_form_fields_1_label','field_634558271d0ef'),(132943,40414,'form_fields_1_description',''),(132944,40414,'_form_fields_1_description','field_6389047cb4655'),(132945,40414,'form_fields_2_acfe_layout_col','12'),(132946,40414,'_form_fields_2_acfe_layout_col','field_layout_634558b01d0f2_col'),(132947,40414,'form_fields_2_layout_settings_required','1'),(132948,40414,'_form_fields_2_layout_settings_required','field_63457a5c4b908'),(132949,40414,'form_fields_2_layout_settings_hidden','0'),(132950,40414,'_form_fields_2_layout_settings_hidden','field_63457a704b909'),(132951,40414,'form_fields_2_layout_settings',''),(132952,40414,'_form_fields_2_layout_settings','field_layout_634558b01d0f2_settings'),(132953,40414,'form_fields_2_acfe_flexible_layout_title','Email'),(132954,40414,'_form_fields_2_acfe_flexible_layout_title','field_layout_634558b01d0f2_title'),(132955,40414,'form_fields_2_name','email'),(132956,40414,'_form_fields_2_name','field_634558b01d0f4'),(132957,40414,'form_fields_2_label','Email'),(132958,40414,'_form_fields_2_label','field_634558b01d0f3'),(132959,40414,'form_fields_2_description','This is how we\'ll send you a copy of your guide.'),(132960,40414,'_form_fields_2_description','field_6389049db4656'),(132961,40414,'form_fields_3_acfe_layout_col','12'),(132962,40414,'_form_fields_3_acfe_layout_col','field_layout_634557f2ac428_col'),(132963,40414,'form_fields_3_layout_settings_required','1'),(132964,40414,'_form_fields_3_layout_settings_required','field_63457a5c4b908'),(132965,40414,'form_fields_3_layout_settings_hidden','1'),(132966,40414,'_form_fields_3_layout_settings_hidden','field_63457a704b909'),(132967,40414,'form_fields_3_layout_settings',''),(132968,40414,'_form_fields_3_layout_settings','field_layout_634557f2ac428_settings'),(132969,40414,'form_fields_3_acfe_flexible_layout_title','Phone Number'),(132970,40414,'_form_fields_3_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(132971,40414,'form_fields_3_name','contactnumber'),(132972,40414,'_form_fields_3_name','field_634558471d0f0'),(132973,40414,'form_fields_3_label','Phone Number'),(132974,40414,'_form_fields_3_label','field_634558271d0ef'),(132975,40414,'form_fields_3_description','So that we can provide you with quick, easy information about your enquiry.'),(132976,40414,'_form_fields_3_description','field_6389047cb4655'),(132979,40414,'form_fields_4_layout_settings_required','1'),(132980,40414,'_form_fields_4_layout_settings_required','field_63457a5c4b908'),(132981,40414,'form_fields_4_layout_settings_hidden','1'),(132982,40414,'_form_fields_4_layout_settings_hidden','field_63457a704b909'),(132995,40414,'form_fields_5_layout_settings_required','1'),(132996,40414,'_form_fields_5_layout_settings_required','field_63457a5c4b908'),(132997,40414,'form_fields_5_layout_settings_hidden','1'),(132998,40414,'_form_fields_5_layout_settings_hidden','field_63457a704b909'),(133011,40414,'form_fields','a:6:{i:0;s:4:\"text\";i:1;s:4:\"text\";i:2;s:5:\"email\";i:3;s:4:\"text\";i:4;s:6:\"select\";i:5;s:6:\"select\";}'),(133012,40414,'_form_fields','field_634557ea1d0ee'),(133013,40414,'form_fields_code',''),(133014,40414,'_form_fields_code','field_61a4f967fdc46'),(133015,40414,'form_hidden_fields_code',''),(133016,40414,'_form_hidden_fields_code','field_61a50668a49c3'),(133017,40414,'form_small_print','By submitting this form, you agree to Biomechanics Education processing your data in accordance with our <a href=\"https://biomechanicseducation.com/privacy-policy/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a> and <a href=\"https://biomechanicseducation.com/terms-conditions/\" target=\"_blank\" rel=\"noopener\">Terms &amp; Conditions.</a>'),(133018,40414,'_form_small_print','field_61a50510a49c1'),(133019,40414,'form_button_label',''),(133020,40414,'_form_button_label','field_61a50530a49c2'),(133021,40414,'form_gtm_id',''),(133022,40414,'_form_gtm_id','field_63dbc2797b66f'),(133023,40415,'_wp_attached_file','2024/09/DSC02018-scaled.jpg'),(133024,40415,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:27:\"2024/09/DSC02018-scaled.jpg\";s:8:\"filesize\";i:688297;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC02018-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153834;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC02018-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224641;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC02018-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65629;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC02018-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126219;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC02018-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:317516;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC02018-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:486604;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC02018-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74786;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC02018-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187007;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC02018-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274714;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC02018-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65555;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC02018-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153834;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC02018-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224641;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC02018-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65684;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC02018-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151195;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"DSC02018-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218141;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"DSC02018-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68398;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"DSC02018-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164498;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"DSC02018-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:239807;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"DSC02018-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60810;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"DSC02018-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135586;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"DSC02018-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194446;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583596155\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC02018.jpg\";}'),(133025,40415,'_wp_attachment_image_alt','man counting on this fingers, wearing a black t-short, standing over a woman on a massage table who has her eyes closed and arms folded.'),(133026,40416,'_edit_lock','1745571118:17'),(133027,40416,'_edit_last','15'),(133028,40416,'form_action','https://analytics-eu.clickdimensions.com/forms/h/aY3xbxedDEOQEdvQlInj1g'),(133029,40416,'_form_action','field_61a50501a49c0'),(133030,40416,'form_fields_0_acfe_layout_col','6'),(133031,40416,'_form_fields_0_acfe_layout_col','field_layout_634557f2ac428_col'),(133032,40416,'form_fields_0_layout_settings_required','1'),(133033,40416,'_form_fields_0_layout_settings_required','field_63457a5c4b908'),(133034,40416,'form_fields_0_layout_settings_hidden','0'),(133035,40416,'_form_fields_0_layout_settings_hidden','field_63457a704b909'),(133036,40416,'form_fields_0_layout_settings',''),(133037,40416,'_form_fields_0_layout_settings','field_layout_634557f2ac428_settings'),(133038,40416,'form_fields_0_acfe_flexible_layout_title','First Name'),(133039,40416,'_form_fields_0_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(133040,40416,'form_fields_0_name','firstname'),(133041,40416,'_form_fields_0_name','field_634558471d0f0'),(133042,40416,'form_fields_0_label','First Name'),(133043,40416,'_form_fields_0_label','field_634558271d0ef'),(133044,40416,'form_fields_0_description',''),(133045,40416,'_form_fields_0_description','field_6389047cb4655'),(133046,40416,'form_fields_1_acfe_layout_col','6'),(133047,40416,'_form_fields_1_acfe_layout_col','field_layout_634557f2ac428_col'),(133048,40416,'form_fields_1_layout_settings_required','1'),(133049,40416,'_form_fields_1_layout_settings_required','field_63457a5c4b908'),(133050,40416,'form_fields_1_layout_settings_hidden','0'),(133051,40416,'_form_fields_1_layout_settings_hidden','field_63457a704b909'),(133052,40416,'form_fields_1_layout_settings',''),(133053,40416,'_form_fields_1_layout_settings','field_layout_634557f2ac428_settings'),(133054,40416,'form_fields_1_acfe_flexible_layout_title','Last Name'),(133055,40416,'_form_fields_1_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(133056,40416,'form_fields_1_name','lastname'),(133057,40416,'_form_fields_1_name','field_634558471d0f0'),(133058,40416,'form_fields_1_label','Last Name'),(133059,40416,'_form_fields_1_label','field_634558271d0ef'),(133060,40416,'form_fields_1_description',''),(133061,40416,'_form_fields_1_description','field_6389047cb4655'),(133062,40416,'form_fields_2_acfe_layout_col','12'),(133063,40416,'_form_fields_2_acfe_layout_col','field_layout_634558b01d0f2_col'),(133064,40416,'form_fields_2_layout_settings_required','1'),(133065,40416,'_form_fields_2_layout_settings_required','field_63457a5c4b908'),(133066,40416,'form_fields_2_layout_settings_hidden','0'),(133067,40416,'_form_fields_2_layout_settings_hidden','field_63457a704b909'),(133068,40416,'form_fields_2_layout_settings',''),(133069,40416,'_form_fields_2_layout_settings','field_layout_634558b01d0f2_settings'),(133070,40416,'form_fields_2_acfe_flexible_layout_title','Email'),(133071,40416,'_form_fields_2_acfe_flexible_layout_title','field_layout_634558b01d0f2_title'),(133072,40416,'form_fields_2_name','email'),(133073,40416,'_form_fields_2_name','field_634558b01d0f4'),(133074,40416,'form_fields_2_label','Email'),(133075,40416,'_form_fields_2_label','field_634558b01d0f3'),(133076,40416,'form_fields_2_description','This is how we\'ll send you a copy of your guide.'),(133077,40416,'_form_fields_2_description','field_6389049db4656'),(133078,40416,'form_fields_3_acfe_layout_col','12'),(133079,40416,'_form_fields_3_acfe_layout_col','field_layout_634557f2ac428_col'),(133080,40416,'form_fields_3_layout_settings_required','1'),(133081,40416,'_form_fields_3_layout_settings_required','field_63457a5c4b908'),(133082,40416,'form_fields_3_layout_settings_hidden','1'),(133083,40416,'_form_fields_3_layout_settings_hidden','field_63457a704b909'),(133084,40416,'form_fields_3_layout_settings',''),(133085,40416,'_form_fields_3_layout_settings','field_layout_634557f2ac428_settings'),(133086,40416,'form_fields_3_acfe_flexible_layout_title','Phone Number'),(133087,40416,'_form_fields_3_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(133088,40416,'form_fields_3_name','contactnumber'),(133089,40416,'_form_fields_3_name','field_634558471d0f0'),(133090,40416,'form_fields_3_label','Phone Number'),(133091,40416,'_form_fields_3_label','field_634558271d0ef'),(133092,40416,'form_fields_3_description','So that we can provide you with quick, easy information about your enquiry.'),(133093,40416,'_form_fields_3_description','field_6389047cb4655'),(133096,40416,'form_fields_4_layout_settings_required','1'),(133097,40416,'_form_fields_4_layout_settings_required','field_63457a5c4b908'),(133098,40416,'form_fields_4_layout_settings_hidden','1'),(133099,40416,'_form_fields_4_layout_settings_hidden','field_63457a704b909'),(133112,40416,'form_fields_5_layout_settings_required','1'),(133113,40416,'_form_fields_5_layout_settings_required','field_63457a5c4b908'),(133114,40416,'form_fields_5_layout_settings_hidden','1'),(133115,40416,'_form_fields_5_layout_settings_hidden','field_63457a704b909'),(133128,40416,'form_fields','a:6:{i:0;s:4:\"text\";i:1;s:4:\"text\";i:2;s:5:\"email\";i:3;s:4:\"text\";i:4;s:6:\"select\";i:5;s:6:\"select\";}'),(133129,40416,'_form_fields','field_634557ea1d0ee'),(133130,40416,'form_fields_code',''),(133131,40416,'_form_fields_code','field_61a4f967fdc46'),(133132,40416,'form_hidden_fields_code',''),(133133,40416,'_form_hidden_fields_code','field_61a50668a49c3'),(133134,40416,'form_small_print','By submitting this form, you agree to Biomechanics Education processing your data in accordance with our <a href=\"https://biomechanicseducation.com/privacy-policy/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a> and <a href=\"https://biomechanicseducation.com/terms-conditions/\" target=\"_blank\" rel=\"noopener\">Terms &amp; Conditions.</a>'),(133135,40416,'_form_small_print','field_61a50510a49c1'),(133136,40416,'form_button_label',''),(133137,40416,'_form_button_label','field_61a50530a49c2'),(133138,40416,'form_gtm_id',''),(133139,40416,'_form_gtm_id','field_63dbc2797b66f'),(133140,40417,'_edit_lock','1745570974:17'),(133141,40417,'_edit_last','15'),(133142,40417,'form_action','https://analytics-eu.clickdimensions.com/forms/h/a4bTO90M4ika4EJYjC6m8w'),(133143,40417,'_form_action','field_61a50501a49c0'),(133144,40417,'form_fields_0_acfe_layout_col','6'),(133145,40417,'_form_fields_0_acfe_layout_col','field_layout_634557f2ac428_col'),(133146,40417,'form_fields_0_layout_settings_required','1'),(133147,40417,'_form_fields_0_layout_settings_required','field_63457a5c4b908'),(133148,40417,'form_fields_0_layout_settings_hidden','0'),(133149,40417,'_form_fields_0_layout_settings_hidden','field_63457a704b909'),(133150,40417,'form_fields_0_layout_settings',''),(133151,40417,'_form_fields_0_layout_settings','field_layout_634557f2ac428_settings'),(133152,40417,'form_fields_0_acfe_flexible_layout_title','First Name'),(133153,40417,'_form_fields_0_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(133154,40417,'form_fields_0_name','firstname'),(133155,40417,'_form_fields_0_name','field_634558471d0f0'),(133156,40417,'form_fields_0_label','First Name'),(133157,40417,'_form_fields_0_label','field_634558271d0ef'),(133158,40417,'form_fields_0_description',''),(133159,40417,'_form_fields_0_description','field_6389047cb4655'),(133160,40417,'form_fields_1_acfe_layout_col','6'),(133161,40417,'_form_fields_1_acfe_layout_col','field_layout_634557f2ac428_col'),(133162,40417,'form_fields_1_layout_settings_required','1'),(133163,40417,'_form_fields_1_layout_settings_required','field_63457a5c4b908'),(133164,40417,'form_fields_1_layout_settings_hidden','0'),(133165,40417,'_form_fields_1_layout_settings_hidden','field_63457a704b909'),(133166,40417,'form_fields_1_layout_settings',''),(133167,40417,'_form_fields_1_layout_settings','field_layout_634557f2ac428_settings'),(133168,40417,'form_fields_1_acfe_flexible_layout_title','Last Name'),(133169,40417,'_form_fields_1_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(133170,40417,'form_fields_1_name','lastname'),(133171,40417,'_form_fields_1_name','field_634558471d0f0'),(133172,40417,'form_fields_1_label','Last Name'),(133173,40417,'_form_fields_1_label','field_634558271d0ef'),(133174,40417,'form_fields_1_description',''),(133175,40417,'_form_fields_1_description','field_6389047cb4655'),(133176,40417,'form_fields_2_acfe_layout_col','12'),(133177,40417,'_form_fields_2_acfe_layout_col','field_layout_634558b01d0f2_col'),(133178,40417,'form_fields_2_layout_settings_required','1'),(133179,40417,'_form_fields_2_layout_settings_required','field_63457a5c4b908'),(133180,40417,'form_fields_2_layout_settings_hidden','0'),(133181,40417,'_form_fields_2_layout_settings_hidden','field_63457a704b909'),(133182,40417,'form_fields_2_layout_settings',''),(133183,40417,'_form_fields_2_layout_settings','field_layout_634558b01d0f2_settings'),(133184,40417,'form_fields_2_acfe_flexible_layout_title','Email'),(133185,40417,'_form_fields_2_acfe_flexible_layout_title','field_layout_634558b01d0f2_title'),(133186,40417,'form_fields_2_name','email'),(133187,40417,'_form_fields_2_name','field_634558b01d0f4'),(133188,40417,'form_fields_2_label','Email'),(133189,40417,'_form_fields_2_label','field_634558b01d0f3'),(133190,40417,'form_fields_2_description','This is how we\'ll send you a copy of your guide.'),(133191,40417,'_form_fields_2_description','field_6389049db4656'),(133192,40417,'form_fields_3_acfe_layout_col','12'),(133193,40417,'_form_fields_3_acfe_layout_col','field_layout_634557f2ac428_col'),(133194,40417,'form_fields_3_layout_settings_required','1'),(133195,40417,'_form_fields_3_layout_settings_required','field_63457a5c4b908'),(133196,40417,'form_fields_3_layout_settings_hidden','1'),(133197,40417,'_form_fields_3_layout_settings_hidden','field_63457a704b909'),(133198,40417,'form_fields_3_layout_settings',''),(133199,40417,'_form_fields_3_layout_settings','field_layout_634557f2ac428_settings'),(133200,40417,'form_fields_3_acfe_flexible_layout_title','Phone Number'),(133201,40417,'_form_fields_3_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(133202,40417,'form_fields_3_name','contactnumber'),(133203,40417,'_form_fields_3_name','field_634558471d0f0'),(133204,40417,'form_fields_3_label','Phone Number'),(133205,40417,'_form_fields_3_label','field_634558271d0ef'),(133206,40417,'form_fields_3_description','So that we can provide you with quick, easy information about your enquiry.'),(133207,40417,'_form_fields_3_description','field_6389047cb4655'),(133210,40417,'form_fields_4_layout_settings_required','1'),(133211,40417,'_form_fields_4_layout_settings_required','field_63457a5c4b908'),(133212,40417,'form_fields_4_layout_settings_hidden','1'),(133213,40417,'_form_fields_4_layout_settings_hidden','field_63457a704b909'),(133226,40417,'form_fields_5_layout_settings_required','1'),(133227,40417,'_form_fields_5_layout_settings_required','field_63457a5c4b908'),(133228,40417,'form_fields_5_layout_settings_hidden','1'),(133229,40417,'_form_fields_5_layout_settings_hidden','field_63457a704b909'),(133242,40417,'form_fields','a:6:{i:0;s:4:\"text\";i:1;s:4:\"text\";i:2;s:5:\"email\";i:3;s:4:\"text\";i:4;s:6:\"select\";i:5;s:6:\"select\";}'),(133243,40417,'_form_fields','field_634557ea1d0ee'),(133244,40417,'form_fields_code',''),(133245,40417,'_form_fields_code','field_61a4f967fdc46'),(133246,40417,'form_hidden_fields_code',''),(133247,40417,'_form_hidden_fields_code','field_61a50668a49c3'),(133248,40417,'form_small_print','By submitting this form, you agree to Biomechanics Education processing your data in accordance with our <a href=\"https://biomechanicseducation.com/privacy-policy/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a> and <a href=\"https://biomechanicseducation.com/terms-conditions/\" target=\"_blank\" rel=\"noopener\">Terms &amp; Conditions.</a>'),(133249,40417,'_form_small_print','field_61a50510a49c1'),(133250,40417,'form_button_label',''),(133251,40417,'_form_button_label','field_61a50530a49c2'),(133252,40417,'form_gtm_id',''),(133253,40417,'_form_gtm_id','field_63dbc2797b66f'),(133255,40418,'hide_hero','0'),(133256,40418,'_hide_hero','field_66a2380fcda39'),(133257,40418,'hero_title',''),(133258,40418,'_hero_title','field_617571fe285e8'),(133259,40418,'hero_text',''),(133260,40418,'_hero_text','field_6175723c285e9'),(133261,40418,'hero_actions',''),(133262,40418,'_hero_actions','field_61757270285ea'),(133263,40418,'hero_style','default'),(133264,40418,'_hero_style','field_62051d9dc5324'),(133265,40418,'hero_image_pos_x','right'),(133266,40418,'_hero_image_pos_x','field_62ec3d05390bb'),(133267,40418,'hero_image_pos_y','top'),(133268,40418,'_hero_image_pos_y','field_62ec3d05390bc'),(133269,40418,'hero_image_pos',''),(133270,40418,'_hero_image_pos','field_62ec3d05390ba'),(133271,40418,'fft_hide_from_listings','1'),(133272,40418,'_fft_hide_from_listings','field_61f1320446ab2'),(133273,40418,'fft_page_format','default'),(133274,40418,'_fft_page_format','field_61ae213f1f218'),(133275,40418,'fft_hide_nav','0'),(133276,40418,'_fft_hide_nav','field_635bd5e43527c'),(133277,40418,'fft_hide_header_call_to_action','0'),(133278,40418,'_fft_hide_header_call_to_action','field_635bd6723527d'),(133279,40418,'fft_page_sitemap','0'),(133280,40418,'_fft_page_sitemap','field_61af9b34e8181'),(133281,40418,'blocks_0_acfe_flexible_toggle',''),(133282,40418,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(133283,40418,'blocks_0_acfe_flexible_layout_title','Form'),(133284,40418,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(133285,40418,'blocks_0_row_content_format','standard'),(133286,40418,'_blocks_0_row_content_format','field_6481ead962881'),(133287,40418,'blocks_0_row_content_title',''),(133288,40418,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(133289,40418,'blocks_0_row_content_heading','Can we trouble you for a few more details?'),(133290,40418,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(133291,40418,'blocks_0_row_content_text','We want to make sure your experience with us is as relevant and supportive as it can possibly be, so we would love to learn a bit more about you.\r\n\r\nWe promise it won’t take more than 1.5 minutes and we won’t share this information with anyone else.'),(133292,40418,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(133293,40418,'blocks_0_row_content_actions',''),(133294,40418,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(133295,40418,'blocks_0_row_content',''),(133296,40418,'_blocks_0_row_content','field_61a0f5f5b3db0'),(133297,40418,'blocks_0_row_form','40410'),(133298,40418,'_blocks_0_row_form','field_61a4ff2c0b08e'),(133299,40418,'blocks_0_row_form_button_label','Next'),(133300,40418,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(133301,40418,'blocks','a:1:{i:0;s:4:\"form\";}'),(133302,40418,'_blocks','field_6176696113096'),(133303,40418,'_thumbnail_id',''),(133304,40418,'__thumbnail_id','field_617570855ddaf'),(133356,40420,'hide_hero','0'),(133357,40420,'_hide_hero','field_66a2380fcda39'),(133358,40420,'hero_title',''),(133359,40420,'_hero_title','field_617571fe285e8'),(133360,40420,'hero_text',''),(133361,40420,'_hero_text','field_6175723c285e9'),(133362,40420,'hero_actions',''),(133363,40420,'_hero_actions','field_61757270285ea'),(133364,40420,'hero_style','default'),(133365,40420,'_hero_style','field_62051d9dc5324'),(133366,40420,'hero_image_pos_x','right'),(133367,40420,'_hero_image_pos_x','field_62ec3d05390bb'),(133368,40420,'hero_image_pos_y','top'),(133369,40420,'_hero_image_pos_y','field_62ec3d05390bc'),(133370,40420,'hero_image_pos',''),(133371,40420,'_hero_image_pos','field_62ec3d05390ba'),(133372,40420,'fft_hide_from_listings','1'),(133373,40420,'_fft_hide_from_listings','field_61f1320446ab2'),(133374,40420,'fft_page_format','default'),(133375,40420,'_fft_page_format','field_61ae213f1f218'),(133376,40420,'fft_hide_nav','0'),(133377,40420,'_fft_hide_nav','field_635bd5e43527c'),(133378,40420,'fft_hide_header_call_to_action','0'),(133379,40420,'_fft_hide_header_call_to_action','field_635bd6723527d'),(133380,40420,'fft_page_sitemap','0'),(133381,40420,'_fft_page_sitemap','field_61af9b34e8181'),(133382,40420,'blocks_0_acfe_flexible_toggle',''),(133383,40420,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(133384,40420,'blocks_0_acfe_flexible_layout_title','Form'),(133385,40420,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(133386,40420,'blocks_0_row_content_format','standard'),(133387,40420,'_blocks_0_row_content_format','field_6481ead962881'),(133388,40420,'blocks_0_row_content_title',''),(133389,40420,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(133390,40420,'blocks_0_row_content_heading','Can we trouble you for a few more details?'),(133391,40420,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(133392,40420,'blocks_0_row_content_text','We want to make sure your experience with us is as relevant and supportive as it can possibly be, so we would love to learn a bit more about you.\r\n\r\nWe promise it won’t take more than 1.5 minutes and we won’t share this information with anyone else.'),(133393,40420,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(133394,40420,'blocks_0_row_content_actions',''),(133395,40420,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(133396,40420,'blocks_0_row_content',''),(133397,40420,'_blocks_0_row_content','field_61a0f5f5b3db0'),(133398,40420,'blocks_0_row_form','40410'),(133399,40420,'_blocks_0_row_form','field_61a4ff2c0b08e'),(133400,40420,'blocks_0_row_form_button_label','Next'),(133401,40420,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(133402,40420,'blocks','a:1:{i:0;s:4:\"form\";}'),(133403,40420,'_blocks','field_6176696113096'),(133404,40420,'_thumbnail_id',''),(133405,40420,'__thumbnail_id','field_617570855ddaf'),(133406,40334,'_thumbnail_id',''),(133407,40421,'hide_hero','0'),(133408,40421,'_hide_hero','field_66a2380fcda39'),(133409,40421,'hero_title','Help Us Get to Know You'),(133410,40421,'_hero_title','field_617571fe285e8'),(133411,40421,'hero_text',''),(133412,40421,'_hero_text','field_6175723c285e9'),(133413,40421,'hero_actions',''),(133414,40421,'_hero_actions','field_61757270285ea'),(133415,40421,'hero_style','default'),(133416,40421,'_hero_style','field_62051d9dc5324'),(133417,40421,'hero_image_pos_x','right'),(133418,40421,'_hero_image_pos_x','field_62ec3d05390bb'),(133419,40421,'hero_image_pos_y','top'),(133420,40421,'_hero_image_pos_y','field_62ec3d05390bc'),(133421,40421,'hero_image_pos',''),(133422,40421,'_hero_image_pos','field_62ec3d05390ba'),(133423,40421,'fft_hide_from_listings','1'),(133424,40421,'_fft_hide_from_listings','field_61f1320446ab2'),(133425,40421,'fft_page_format','default'),(133426,40421,'_fft_page_format','field_61ae213f1f218'),(133427,40421,'fft_hide_nav','0'),(133428,40421,'_fft_hide_nav','field_635bd5e43527c'),(133429,40421,'fft_hide_header_call_to_action','0'),(133430,40421,'_fft_hide_header_call_to_action','field_635bd6723527d'),(133431,40421,'fft_page_sitemap','0'),(133432,40421,'_fft_page_sitemap','field_61af9b34e8181'),(133433,40421,'blocks_0_acfe_flexible_toggle',''),(133434,40421,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(133435,40421,'blocks_0_acfe_flexible_layout_title','Form'),(133436,40421,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(133437,40421,'blocks_0_row_content_format','standard'),(133438,40421,'_blocks_0_row_content_format','field_6481ead962881'),(133439,40421,'blocks_0_row_content_title',''),(133440,40421,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(133441,40421,'blocks_0_row_content_heading','Can we trouble you for a few more details?'),(133442,40421,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(133443,40421,'blocks_0_row_content_text','We want to make sure your experience with us is as relevant and supportive as it can possibly be, so we would love to learn a bit more about you.\r\n\r\nWe promise it won’t take more than 1.5 minutes and we won’t share this information with anyone else.'),(133444,40421,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(133445,40421,'blocks_0_row_content_actions',''),(133446,40421,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(133447,40421,'blocks_0_row_content',''),(133448,40421,'_blocks_0_row_content','field_61a0f5f5b3db0'),(133449,40421,'blocks_0_row_form','40410'),(133450,40421,'_blocks_0_row_form','field_61a4ff2c0b08e'),(133451,40421,'blocks_0_row_form_button_label','Next'),(133452,40421,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(133453,40421,'blocks','a:1:{i:0;s:4:\"form\";}'),(133454,40421,'_blocks','field_6176696113096'),(133455,40421,'_thumbnail_id',''),(133456,40421,'__thumbnail_id','field_617570855ddaf'),(133527,40423,'hide_hero','0'),(133528,40423,'_hide_hero','field_66a2380fcda39'),(133529,40423,'fft_hide_from_listings','0'),(133530,40423,'_fft_hide_from_listings','field_61f1320446ab2'),(133531,40423,'fft_page_format','default'),(133532,40423,'_fft_page_format','field_61ae213f1f218'),(133533,40423,'fft_hide_nav','0'),(133534,40423,'_fft_hide_nav','field_635bd5e43527c'),(133535,40423,'fft_hide_header_call_to_action','0'),(133536,40423,'_fft_hide_header_call_to_action','field_635bd6723527d'),(133537,40423,'fft_page_sitemap','0'),(133538,40423,'_fft_page_sitemap','field_61af9b34e8181'),(133539,40423,'blocks_0_acfe_flexible_toggle',''),(133540,40423,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(133541,40423,'blocks_0_acfe_flexible_layout_title','Text Block'),(133542,40423,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(133543,40423,'blocks_0_options_theme','#ffffff'),(133544,40423,'_blocks_0_options_theme','field_6176830e2ad17'),(133545,40423,'blocks_0_options',''),(133546,40423,'_blocks_0_options','field_6176830e2ad16'),(133547,40423,'blocks_0_text_block_heading','Get in Touch'),(133548,40423,'_blocks_0_text_block_heading','field_617669d413097'),(133549,40423,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(133550,40423,'_blocks_0_text_block_content','field_617669ec13098'),(133551,40423,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";}'),(133552,40423,'_blocks','field_6176696113096'),(133553,40423,'hero_title','Contact us'),(133554,40423,'_hero_title','field_617571fe285e8'),(133555,40423,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(133556,40423,'_hero_text','field_6175723c285e9'),(133557,40423,'hero_actions',''),(133558,40423,'_hero_actions','field_61757270285ea'),(133559,40423,'hero_style','default'),(133560,40423,'_hero_style','field_62051d9dc5324'),(133561,40423,'hero_icon','lines'),(133562,40423,'_hero_icon','field_61a6182199d03'),(133563,40423,'_thumbnail_id','40339'),(133564,40423,'__thumbnail_id','field_617570855ddaf'),(133565,40423,'hero_image_pos_x','right'),(133566,40423,'_hero_image_pos_x','field_62ec3d05390bb'),(133567,40423,'hero_image_pos_y','top'),(133568,40423,'_hero_image_pos_y','field_62ec3d05390bc'),(133569,40423,'hero_image_pos',''),(133570,40423,'_hero_image_pos','field_62ec3d05390ba'),(133571,40423,'blocks_1_acfe_flexible_toggle',''),(133572,40423,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(133573,40423,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(133574,40423,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(133575,40423,'blocks_1_options_theme','#ffffff'),(133576,40423,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(133577,40423,'blocks_1_options_reverse','0'),(133578,40423,'_blocks_1_options_reverse','field_61768049bb8ac'),(133579,40423,'blocks_1_options',''),(133580,40423,'_blocks_1_options','field_617682517c334'),(133581,40423,'blocks_1_split_5050_image','40342'),(133582,40423,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(133583,40423,'blocks_1_split_5050_video',''),(133584,40423,'_blocks_1_split_5050_video','field_6239f3160848a'),(133585,40423,'blocks_1_split_5050_content_title',''),(133586,40423,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(133587,40423,'blocks_1_split_5050_content_heading','Let\'s connect!'),(133588,40423,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(133589,40423,'blocks_1_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(133590,40423,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(133591,40423,'blocks_1_split_5050_content_actions',''),(133592,40423,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(133593,40423,'blocks_1_split_5050_content',''),(133594,40423,'_blocks_1_split_5050_content','field_61767afceb8ba'),(133595,40423,'blocks_2_acfe_flexible_toggle',''),(133596,40423,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(133597,40423,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(133598,40423,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(133599,40423,'blocks_2_options_theme','#ffffff'),(133600,40423,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(133601,40423,'blocks_2_options_reverse','1'),(133602,40423,'_blocks_2_options_reverse','field_61768049bb8ac'),(133603,40423,'blocks_2_options',''),(133604,40423,'_blocks_2_options','field_617682517c334'),(133605,40423,'blocks_2_split_5050_image','40349'),(133606,40423,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(133607,40423,'blocks_2_split_5050_video',''),(133608,40423,'_blocks_2_split_5050_video','field_6239f3160848a'),(133609,40423,'blocks_2_split_5050_content_title',''),(133610,40423,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(133611,40423,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(133612,40423,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(133613,40423,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(133614,40423,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(133615,40423,'blocks_2_split_5050_content_actions',''),(133616,40423,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(133617,40423,'blocks_2_split_5050_content',''),(133618,40423,'_blocks_2_split_5050_content','field_61767afceb8ba'),(133619,40423,'blocks_3_acfe_flexible_toggle',''),(133620,40423,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(133621,40423,'blocks_3_acfe_flexible_layout_title','Form'),(133622,40423,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(133623,40423,'blocks_3_row_content_format','standard'),(133624,40423,'_blocks_3_row_content_format','field_6481ead962881'),(133625,40423,'blocks_3_row_content_title',''),(133626,40423,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(133627,40423,'blocks_3_row_content_heading','Let\'s get started'),(133628,40423,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(133629,40423,'blocks_3_row_content_text','<span data-contrast=\"none\">Please fill in your details for no obligation support and advice. One of our in-house Career Advisors will give you a call to discuss your enquiry – don\'t worry if you are not available, we can call back at a convenient time for you.  </span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\"> </span>\r\n\r\n<strong>By completing the form you will also gain access to our Course Information and Price Guide.</strong>'),(133630,40423,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(133631,40423,'blocks_3_row_content_actions',''),(133632,40423,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(133633,40423,'blocks_3_row_content',''),(133634,40423,'_blocks_3_row_content','field_61a0f5f5b3db0'),(133635,40423,'blocks_3_row_form','40394'),(133636,40423,'_blocks_3_row_form','field_61a4ff2c0b08e'),(133637,40423,'blocks_3_row_form_button_label',''),(133638,40423,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(133751,40426,'hide_hero','0'),(133752,40426,'_hide_hero','field_66a2380fcda39'),(133753,40426,'fft_hide_from_listings','0'),(133754,40426,'_fft_hide_from_listings','field_61f1320446ab2'),(133755,40426,'fft_page_format','default'),(133756,40426,'_fft_page_format','field_61ae213f1f218'),(133757,40426,'fft_hide_nav','0'),(133758,40426,'_fft_hide_nav','field_635bd5e43527c'),(133759,40426,'fft_hide_header_call_to_action','0'),(133760,40426,'_fft_hide_header_call_to_action','field_635bd6723527d'),(133761,40426,'fft_page_sitemap','0'),(133762,40426,'_fft_page_sitemap','field_61af9b34e8181'),(133763,40426,'blocks_0_acfe_flexible_toggle',''),(133764,40426,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(133765,40426,'blocks_0_acfe_flexible_layout_title','Text Block'),(133766,40426,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(133767,40426,'blocks_0_options_theme','#ffffff'),(133768,40426,'_blocks_0_options_theme','field_6176830e2ad17'),(133769,40426,'blocks_0_options',''),(133770,40426,'_blocks_0_options','field_6176830e2ad16'),(133771,40426,'blocks_0_text_block_heading','Get in Touch'),(133772,40426,'_blocks_0_text_block_heading','field_617669d413097'),(133773,40426,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(133774,40426,'_blocks_0_text_block_content','field_617669ec13098'),(133775,40426,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";}'),(133776,40426,'_blocks','field_6176696113096'),(133777,40426,'hero_title','Contact us'),(133778,40426,'_hero_title','field_617571fe285e8'),(133779,40426,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(133780,40426,'_hero_text','field_6175723c285e9'),(133781,40426,'hero_actions',''),(133782,40426,'_hero_actions','field_61757270285ea'),(133783,40426,'hero_style','default'),(133784,40426,'_hero_style','field_62051d9dc5324'),(133785,40426,'hero_icon','lines'),(133786,40426,'_hero_icon','field_61a6182199d03'),(133787,40426,'_thumbnail_id','40339'),(133788,40426,'__thumbnail_id','field_617570855ddaf'),(133789,40426,'hero_image_pos_x','right'),(133790,40426,'_hero_image_pos_x','field_62ec3d05390bb'),(133791,40426,'hero_image_pos_y','top'),(133792,40426,'_hero_image_pos_y','field_62ec3d05390bc'),(133793,40426,'hero_image_pos',''),(133794,40426,'_hero_image_pos','field_62ec3d05390ba'),(133795,40426,'blocks_1_acfe_flexible_toggle',''),(133796,40426,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(133797,40426,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(133798,40426,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(133799,40426,'blocks_1_options_theme','#ffffff'),(133800,40426,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(133801,40426,'blocks_1_options_reverse','0'),(133802,40426,'_blocks_1_options_reverse','field_61768049bb8ac'),(133803,40426,'blocks_1_options',''),(133804,40426,'_blocks_1_options','field_617682517c334'),(133805,40426,'blocks_1_split_5050_image','40342'),(133806,40426,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(133807,40426,'blocks_1_split_5050_video',''),(133808,40426,'_blocks_1_split_5050_video','field_6239f3160848a'),(133809,40426,'blocks_1_split_5050_content_title',''),(133810,40426,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(133811,40426,'blocks_1_split_5050_content_heading','Let\'s connect!'),(133812,40426,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(133813,40426,'blocks_1_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(133814,40426,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(133815,40426,'blocks_1_split_5050_content_actions',''),(133816,40426,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(133817,40426,'blocks_1_split_5050_content',''),(133818,40426,'_blocks_1_split_5050_content','field_61767afceb8ba'),(133819,40426,'blocks_2_acfe_flexible_toggle',''),(133820,40426,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(133821,40426,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(133822,40426,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(133823,40426,'blocks_2_options_theme','#ffffff'),(133824,40426,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(133825,40426,'blocks_2_options_reverse','1'),(133826,40426,'_blocks_2_options_reverse','field_61768049bb8ac'),(133827,40426,'blocks_2_options',''),(133828,40426,'_blocks_2_options','field_617682517c334'),(133829,40426,'blocks_2_split_5050_image','40349'),(133830,40426,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(133831,40426,'blocks_2_split_5050_video',''),(133832,40426,'_blocks_2_split_5050_video','field_6239f3160848a'),(133833,40426,'blocks_2_split_5050_content_title',''),(133834,40426,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(133835,40426,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(133836,40426,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(133837,40426,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(133838,40426,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(133839,40426,'blocks_2_split_5050_content_actions',''),(133840,40426,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(133841,40426,'blocks_2_split_5050_content',''),(133842,40426,'_blocks_2_split_5050_content','field_61767afceb8ba'),(133844,40428,'_wp_attached_file','2024/09/BE-map.png'),(133845,40428,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:512;s:4:\"file\";s:18:\"2024/09/BE-map.png\";s:8:\"filesize\";i:102143;s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"BE-map-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67406;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:18:\"BE-map-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96960;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:18:\"BE-map-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67146;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:18:\"BE-map-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72774;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:18:\"BE-map-675x512.png\";s:5:\"width\";i:675;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30754;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:18:\"BE-map-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:76435;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:18:\"BE-map-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58170;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:18:\"BE-map-768x506.png\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33476;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(133846,40428,'_wp_attachment_image_alt','Map of imovefreely and running biomechanics workshops'),(133847,40429,'_wp_attached_file','2024/09/BE-map-for-workshops.png'),(133848,40429,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:512;s:4:\"file\";s:32:\"2024/09/BE-map-for-workshops.png\";s:8:\"filesize\";i:88468;s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE-map-for-workshops-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66679;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE-map-for-workshops-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95822;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE-map-for-workshops-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66419;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE-map-for-workshops-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71663;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE-map-for-workshops-675x512.png\";s:5:\"width\";i:675;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30515;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE-map-for-workshops-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:75672;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE-map-for-workshops-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57420;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE-map-for-workshops-768x506.png\";s:5:\"width\";i:768;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:33229;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(133849,40429,'_wp_attachment_image_alt','BE map for workshops'),(133850,40430,'_wp_attached_file','2024/09/DSC07136-scaled.jpg'),(133851,40430,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2097;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2024/09/DSC07136-scaled.jpg\";s:8:\"filesize\";i:657184;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"DSC07136-900x1099.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1099;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197436;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"DSC07136-1200x1465.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1465;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288774;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC07136-400x488.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:488;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79613;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC07136-768x937.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:937;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161199;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC07136-1258x1536.jpg\";s:5:\"width\";i:1258;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:308019;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC07136-1678x2048.jpg\";s:5:\"width\";i:1678;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:465211;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC07136-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74035;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC07136-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177082;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC07136-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256922;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC07136-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63424;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC07136-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138047;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC07136-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196424;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC07136-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65081;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC07136-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145105;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"DSC07136-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206581;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"DSC07136-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66917;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"DSC07136-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150864;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"DSC07136-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215786;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"DSC07136-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59202;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"DSC07136-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122983;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"DSC07136-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172774;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1530967372\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC07136.jpg\";}'),(133852,40431,'_wp_attached_file','2024/09/DSC07447-scaled.jpg'),(133853,40431,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1440;s:4:\"file\";s:27:\"2024/09/DSC07447-scaled.jpg\";s:8:\"filesize\";i:478117;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC07447-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123861;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC07447-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173871;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC07447-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57822;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC07447-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103807;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"DSC07447-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237369;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC07447-2048x1152.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:348739;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC07447-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65494;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC07447-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146242;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC07447-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206907;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC07447-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60661;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC07447-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131751;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC07447-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184897;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC07447-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57699;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC07447-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119532;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"DSC07447-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166302;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"DSC07447-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62301;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"DSC07447-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137569;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"DSC07447-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194233;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"DSC07447-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57849;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"DSC07447-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123859;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"DSC07447-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173847;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1530973077\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC07447.jpg\";}'),(133854,40432,'_wp_attached_file','2024/09/DSC07374-scaled.jpg'),(133855,40432,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1980;s:6:\"height\";i:2560;s:4:\"file\";s:27:\"2024/09/DSC07374-scaled.jpg\";s:8:\"filesize\";i:670020;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:21:\"DSC07374-900x1164.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215274;}s:5:\"large\";a:5:{s:4:\"file\";s:22:\"DSC07374-1200x1552.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1552;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:317851;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC07374-400x517.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:517;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85100;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC07374-768x993.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:993;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175151;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC07374-1188x1536.jpg\";s:5:\"width\";i:1188;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:313540;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC07374-1584x2048.jpg\";s:5:\"width\";i:1584;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:474562;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC07374-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75410;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC07374-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178005;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC07374-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:257459;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC07374-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63575;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC07374-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134844;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC07374-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190864;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC07374-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67321;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC07374-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152764;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"DSC07374-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219469;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"DSC07374-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66798;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"DSC07374-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146651;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"DSC07374-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208776;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"DSC07374-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59838;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"DSC07374-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121772;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"DSC07374-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170244;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6300\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1530972211\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC07374.jpg\";}'),(133856,40431,'_wp_attachment_image_alt','person performing a movement in an imovefreely workshop'),(133857,40430,'_wp_attachment_image_alt','Rach teaching an imovefreely workshop'),(133858,40265,'_edit_lock','1744297655:11'),(133860,40433,'hide_hero','0'),(133861,40433,'_hide_hero','field_66a2380fcda39'),(133862,40433,'hero_title','Our Partners'),(133863,40433,'_hero_title','field_617571fe285e8'),(133864,40433,'hero_text','Discover our partners'),(133865,40433,'_hero_text','field_6175723c285e9'),(133866,40433,'hero_actions','1'),(133867,40433,'_hero_actions','field_61757270285ea'),(133868,40433,'hero_style','default'),(133869,40433,'_hero_style','field_62051d9dc5324'),(133870,40433,'hero_image_pos_x','right'),(133871,40433,'_hero_image_pos_x','field_62ec3d05390bb'),(133872,40433,'hero_image_pos_y','top'),(133873,40433,'_hero_image_pos_y','field_62ec3d05390bc'),(133874,40433,'hero_image_pos',''),(133875,40433,'_hero_image_pos','field_62ec3d05390ba'),(133876,40433,'fft_hide_from_listings','0'),(133877,40433,'_fft_hide_from_listings','field_61f1320446ab2'),(133878,40433,'fft_page_format','default'),(133879,40433,'_fft_page_format','field_61ae213f1f218'),(133880,40433,'fft_hide_nav','0'),(133881,40433,'_fft_hide_nav','field_635bd5e43527c'),(133882,40433,'fft_hide_header_call_to_action','0'),(133883,40433,'_fft_hide_header_call_to_action','field_635bd6723527d'),(133884,40433,'fft_page_sitemap','0'),(133885,40433,'_fft_page_sitemap','field_61af9b34e8181'),(133886,40433,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:16:\"standard_content\";i:3;s:18:\"testimonial_slider\";}'),(133887,40433,'_blocks','field_6176696113096'),(133888,40433,'blocks_0_acfe_flexible_toggle',''),(133889,40433,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(133890,40433,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(133891,40433,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(133892,40433,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we are proud to collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\"><strong>Click on any of the logos below to visit their site\'s !</strong></p>'),(133893,40433,'_blocks_0_content','field_6193c9b5eac84'),(133894,40433,'blocks_1_acfe_flexible_toggle',''),(133895,40433,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(133896,40433,'blocks_1_acfe_flexible_layout_title','Logos'),(133897,40433,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(133898,40433,'blocks_1_options_theme','#ffffff'),(133899,40433,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(133900,40433,'blocks_1_options_format','carousel'),(133901,40433,'_blocks_1_options_format','field_61782964ee971'),(133902,40433,'blocks_1_options',''),(133903,40433,'_blocks_1_options','field_61782954ee965'),(133904,40433,'blocks_1_logos','a:10:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39296\";i:6;s:5:\"39297\";i:7;s:5:\"39300\";i:8;s:5:\"39304\";i:9;s:5:\"39306\";}'),(133905,40433,'_blocks_1_logos','field_61782954ee96d'),(133906,40433,'blocks_1_title',''),(133907,40433,'_blocks_1_title','field_668fbfdc2daa1'),(133908,40433,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(133909,40433,'_hero_actions_0_button','field_61757281285eb'),(133910,40433,'blocks_2_acfe_flexible_toggle',''),(133911,40433,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(133912,40433,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(133913,40433,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(133914,40433,'blocks_2_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(133915,40433,'_blocks_2_content','field_6193c9b5eac84'),(133916,40433,'blocks_3_acfe_flexible_toggle',''),(133917,40433,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(133918,40433,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(133919,40433,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(133920,40433,'blocks_3_testimonial_slider_content_title',''),(133921,40433,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(133922,40433,'blocks_3_testimonial_slider_content_heading','Testimonials'),(133923,40433,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(133924,40433,'blocks_3_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(133925,40433,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(133926,40433,'blocks_3_testimonial_slider_content_actions',''),(133927,40433,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(133928,40433,'blocks_3_testimonial_slider_content',''),(133929,40433,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(133930,40433,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(133931,40433,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(133932,40433,'blocks_3_testimonial_slider_ambassador_bool','0'),(133933,40433,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(133934,40433,'_thumbnail_id',''),(133935,40433,'__thumbnail_id','field_617570855ddaf'),(133937,40434,'hide_hero','0'),(133938,40434,'_hide_hero','field_66a2380fcda39'),(133939,40434,'hero_title','Our Partners'),(133940,40434,'_hero_title','field_617571fe285e8'),(133941,40434,'hero_text','Discover our partners'),(133942,40434,'_hero_text','field_6175723c285e9'),(133943,40434,'hero_actions','1'),(133944,40434,'_hero_actions','field_61757270285ea'),(133945,40434,'hero_style','default'),(133946,40434,'_hero_style','field_62051d9dc5324'),(133947,40434,'hero_image_pos_x','right'),(133948,40434,'_hero_image_pos_x','field_62ec3d05390bb'),(133949,40434,'hero_image_pos_y','top'),(133950,40434,'_hero_image_pos_y','field_62ec3d05390bc'),(133951,40434,'hero_image_pos',''),(133952,40434,'_hero_image_pos','field_62ec3d05390ba'),(133953,40434,'fft_hide_from_listings','0'),(133954,40434,'_fft_hide_from_listings','field_61f1320446ab2'),(133955,40434,'fft_page_format','default'),(133956,40434,'_fft_page_format','field_61ae213f1f218'),(133957,40434,'fft_hide_nav','0'),(133958,40434,'_fft_hide_nav','field_635bd5e43527c'),(133959,40434,'fft_hide_header_call_to_action','0'),(133960,40434,'_fft_hide_header_call_to_action','field_635bd6723527d'),(133961,40434,'fft_page_sitemap','0'),(133962,40434,'_fft_page_sitemap','field_61af9b34e8181'),(133963,40434,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:16:\"standard_content\";i:3;s:18:\"testimonial_slider\";}'),(133964,40434,'_blocks','field_6176696113096'),(133965,40434,'blocks_0_acfe_flexible_toggle',''),(133966,40434,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(133967,40434,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(133968,40434,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(133969,40434,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\"><strong>Click on any of the logos below to visit their site\'s !</strong></p>'),(133970,40434,'_blocks_0_content','field_6193c9b5eac84'),(133971,40434,'blocks_1_acfe_flexible_toggle',''),(133972,40434,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(133973,40434,'blocks_1_acfe_flexible_layout_title','Logos'),(133974,40434,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(133975,40434,'blocks_1_options_theme','#ffffff'),(133976,40434,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(133977,40434,'blocks_1_options_format','carousel'),(133978,40434,'_blocks_1_options_format','field_61782964ee971'),(133979,40434,'blocks_1_options',''),(133980,40434,'_blocks_1_options','field_61782954ee965'),(133981,40434,'blocks_1_logos','a:10:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39296\";i:6;s:5:\"39297\";i:7;s:5:\"39300\";i:8;s:5:\"39304\";i:9;s:5:\"39306\";}'),(133982,40434,'_blocks_1_logos','field_61782954ee96d'),(133983,40434,'blocks_1_title',''),(133984,40434,'_blocks_1_title','field_668fbfdc2daa1'),(133985,40434,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(133986,40434,'_hero_actions_0_button','field_61757281285eb'),(133987,40434,'blocks_2_acfe_flexible_toggle',''),(133988,40434,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(133989,40434,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(133990,40434,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(133991,40434,'blocks_2_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(133992,40434,'_blocks_2_content','field_6193c9b5eac84'),(133993,40434,'blocks_3_acfe_flexible_toggle',''),(133994,40434,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(133995,40434,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(133996,40434,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(133997,40434,'blocks_3_testimonial_slider_content_title',''),(133998,40434,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(133999,40434,'blocks_3_testimonial_slider_content_heading','Testimonials'),(134000,40434,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(134001,40434,'blocks_3_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(134002,40434,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(134003,40434,'blocks_3_testimonial_slider_content_actions',''),(134004,40434,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(134005,40434,'blocks_3_testimonial_slider_content',''),(134006,40434,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(134007,40434,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(134008,40434,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(134009,40434,'blocks_3_testimonial_slider_ambassador_bool','0'),(134010,40434,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(134011,40434,'_thumbnail_id',''),(134012,40434,'__thumbnail_id','field_617570855ddaf'),(134014,40435,'hide_hero','0'),(134015,40435,'_hide_hero','field_66a2380fcda39'),(134016,40435,'hero_title','Our Partners'),(134017,40435,'_hero_title','field_617571fe285e8'),(134018,40435,'hero_text','Discover our partners'),(134019,40435,'_hero_text','field_6175723c285e9'),(134020,40435,'hero_actions','1'),(134021,40435,'_hero_actions','field_61757270285ea'),(134022,40435,'hero_style','default'),(134023,40435,'_hero_style','field_62051d9dc5324'),(134024,40435,'hero_image_pos_x','right'),(134025,40435,'_hero_image_pos_x','field_62ec3d05390bb'),(134026,40435,'hero_image_pos_y','top'),(134027,40435,'_hero_image_pos_y','field_62ec3d05390bc'),(134028,40435,'hero_image_pos',''),(134029,40435,'_hero_image_pos','field_62ec3d05390ba'),(134030,40435,'fft_hide_from_listings','0'),(134031,40435,'_fft_hide_from_listings','field_61f1320446ab2'),(134032,40435,'fft_page_format','default'),(134033,40435,'_fft_page_format','field_61ae213f1f218'),(134034,40435,'fft_hide_nav','0'),(134035,40435,'_fft_hide_nav','field_635bd5e43527c'),(134036,40435,'fft_hide_header_call_to_action','0'),(134037,40435,'_fft_hide_header_call_to_action','field_635bd6723527d'),(134038,40435,'fft_page_sitemap','0'),(134039,40435,'_fft_page_sitemap','field_61af9b34e8181'),(134040,40435,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:16:\"standard_content\";i:3;s:18:\"testimonial_slider\";}'),(134041,40435,'_blocks','field_6176696113096'),(134042,40435,'blocks_0_acfe_flexible_toggle',''),(134043,40435,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(134044,40435,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(134045,40435,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(134046,40435,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(134047,40435,'_blocks_0_content','field_6193c9b5eac84'),(134048,40435,'blocks_1_acfe_flexible_toggle',''),(134049,40435,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(134050,40435,'blocks_1_acfe_flexible_layout_title','Logos'),(134051,40435,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(134052,40435,'blocks_1_options_theme','#ffffff'),(134053,40435,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(134054,40435,'blocks_1_options_format','carousel'),(134055,40435,'_blocks_1_options_format','field_61782964ee971'),(134056,40435,'blocks_1_options',''),(134057,40435,'_blocks_1_options','field_61782954ee965'),(134058,40435,'blocks_1_logos','a:10:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39296\";i:6;s:5:\"39297\";i:7;s:5:\"39300\";i:8;s:5:\"39304\";i:9;s:5:\"39306\";}'),(134059,40435,'_blocks_1_logos','field_61782954ee96d'),(134060,40435,'blocks_1_title',''),(134061,40435,'_blocks_1_title','field_668fbfdc2daa1'),(134062,40435,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(134063,40435,'_hero_actions_0_button','field_61757281285eb'),(134064,40435,'blocks_2_acfe_flexible_toggle',''),(134065,40435,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(134066,40435,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(134067,40435,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(134068,40435,'blocks_2_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducaiotn.com\">rachel@biomechanicseducaiotn.com </a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(134069,40435,'_blocks_2_content','field_6193c9b5eac84'),(134070,40435,'blocks_3_acfe_flexible_toggle',''),(134071,40435,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(134072,40435,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(134073,40435,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(134074,40435,'blocks_3_testimonial_slider_content_title',''),(134075,40435,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(134076,40435,'blocks_3_testimonial_slider_content_heading','Testimonials'),(134077,40435,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(134078,40435,'blocks_3_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(134079,40435,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(134080,40435,'blocks_3_testimonial_slider_content_actions',''),(134081,40435,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(134082,40435,'blocks_3_testimonial_slider_content',''),(134083,40435,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(134084,40435,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(134085,40435,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(134086,40435,'blocks_3_testimonial_slider_ambassador_bool','0'),(134087,40435,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(134088,40435,'_thumbnail_id',''),(134089,40435,'__thumbnail_id','field_617570855ddaf'),(134091,40436,'hide_hero','0'),(134092,40436,'_hide_hero','field_66a2380fcda39'),(134093,40436,'hero_title','Our Partners'),(134094,40436,'_hero_title','field_617571fe285e8'),(134095,40436,'hero_text','Discover our partners'),(134096,40436,'_hero_text','field_6175723c285e9'),(134097,40436,'hero_actions','1'),(134098,40436,'_hero_actions','field_61757270285ea'),(134099,40436,'hero_style','default'),(134100,40436,'_hero_style','field_62051d9dc5324'),(134101,40436,'hero_image_pos_x','right'),(134102,40436,'_hero_image_pos_x','field_62ec3d05390bb'),(134103,40436,'hero_image_pos_y','top'),(134104,40436,'_hero_image_pos_y','field_62ec3d05390bc'),(134105,40436,'hero_image_pos',''),(134106,40436,'_hero_image_pos','field_62ec3d05390ba'),(134107,40436,'fft_hide_from_listings','0'),(134108,40436,'_fft_hide_from_listings','field_61f1320446ab2'),(134109,40436,'fft_page_format','default'),(134110,40436,'_fft_page_format','field_61ae213f1f218'),(134111,40436,'fft_hide_nav','0'),(134112,40436,'_fft_hide_nav','field_635bd5e43527c'),(134113,40436,'fft_hide_header_call_to_action','0'),(134114,40436,'_fft_hide_header_call_to_action','field_635bd6723527d'),(134115,40436,'fft_page_sitemap','0'),(134116,40436,'_fft_page_sitemap','field_61af9b34e8181'),(134117,40436,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:16:\"standard_content\";i:3;s:18:\"testimonial_slider\";}'),(134118,40436,'_blocks','field_6176696113096'),(134119,40436,'blocks_0_acfe_flexible_toggle',''),(134120,40436,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(134121,40436,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(134122,40436,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(134123,40436,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(134124,40436,'_blocks_0_content','field_6193c9b5eac84'),(134125,40436,'blocks_1_acfe_flexible_toggle',''),(134126,40436,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(134127,40436,'blocks_1_acfe_flexible_layout_title','Logos'),(134128,40436,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(134129,40436,'blocks_1_options_theme','#ffffff'),(134130,40436,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(134131,40436,'blocks_1_options_format','carousel'),(134132,40436,'_blocks_1_options_format','field_61782964ee971'),(134133,40436,'blocks_1_options',''),(134134,40436,'_blocks_1_options','field_61782954ee965'),(134135,40436,'blocks_1_logos','a:10:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39296\";i:6;s:5:\"39297\";i:7;s:5:\"39300\";i:8;s:5:\"39304\";i:9;s:5:\"39306\";}'),(134136,40436,'_blocks_1_logos','field_61782954ee96d'),(134137,40436,'blocks_1_title',''),(134138,40436,'_blocks_1_title','field_668fbfdc2daa1'),(134139,40436,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(134140,40436,'_hero_actions_0_button','field_61757281285eb'),(134141,40436,'blocks_2_acfe_flexible_toggle',''),(134142,40436,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(134143,40436,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(134144,40436,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(134145,40436,'blocks_2_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(134146,40436,'_blocks_2_content','field_6193c9b5eac84'),(134147,40436,'blocks_3_acfe_flexible_toggle',''),(134148,40436,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(134149,40436,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(134150,40436,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(134151,40436,'blocks_3_testimonial_slider_content_title',''),(134152,40436,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(134153,40436,'blocks_3_testimonial_slider_content_heading','Testimonials'),(134154,40436,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(134155,40436,'blocks_3_testimonial_slider_content_text','Read some of the testimonials from real customers who shared their experience'),(134156,40436,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(134157,40436,'blocks_3_testimonial_slider_content_actions',''),(134158,40436,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(134159,40436,'blocks_3_testimonial_slider_content',''),(134160,40436,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(134161,40436,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(134162,40436,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(134163,40436,'blocks_3_testimonial_slider_ambassador_bool','0'),(134164,40436,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(134165,40436,'_thumbnail_id',''),(134166,40436,'__thumbnail_id','field_617570855ddaf'),(134168,40437,'hide_hero','0'),(134169,40437,'_hide_hero','field_66a2380fcda39'),(134170,40437,'hero_title','Our Partners'),(134171,40437,'_hero_title','field_617571fe285e8'),(134172,40437,'hero_text','Discover our partners'),(134173,40437,'_hero_text','field_6175723c285e9'),(134174,40437,'hero_actions','1'),(134175,40437,'_hero_actions','field_61757270285ea'),(134176,40437,'hero_style','default'),(134177,40437,'_hero_style','field_62051d9dc5324'),(134178,40437,'hero_image_pos_x','right'),(134179,40437,'_hero_image_pos_x','field_62ec3d05390bb'),(134180,40437,'hero_image_pos_y','top'),(134181,40437,'_hero_image_pos_y','field_62ec3d05390bc'),(134182,40437,'hero_image_pos',''),(134183,40437,'_hero_image_pos','field_62ec3d05390ba'),(134184,40437,'fft_hide_from_listings','0'),(134185,40437,'_fft_hide_from_listings','field_61f1320446ab2'),(134186,40437,'fft_page_format','default'),(134187,40437,'_fft_page_format','field_61ae213f1f218'),(134188,40437,'fft_hide_nav','0'),(134189,40437,'_fft_hide_nav','field_635bd5e43527c'),(134190,40437,'fft_hide_header_call_to_action','0'),(134191,40437,'_fft_hide_header_call_to_action','field_635bd6723527d'),(134192,40437,'fft_page_sitemap','0'),(134193,40437,'_fft_page_sitemap','field_61af9b34e8181'),(134194,40437,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:16:\"standard_content\";i:3;s:18:\"testimonial_slider\";}'),(134195,40437,'_blocks','field_6176696113096'),(134196,40437,'blocks_0_acfe_flexible_toggle',''),(134197,40437,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(134198,40437,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(134199,40437,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(134200,40437,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(134201,40437,'_blocks_0_content','field_6193c9b5eac84'),(134202,40437,'blocks_1_acfe_flexible_toggle',''),(134203,40437,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(134204,40437,'blocks_1_acfe_flexible_layout_title','Logos'),(134205,40437,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(134206,40437,'blocks_1_options_theme','#ffffff'),(134207,40437,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(134208,40437,'blocks_1_options_format','carousel'),(134209,40437,'_blocks_1_options_format','field_61782964ee971'),(134210,40437,'blocks_1_options',''),(134211,40437,'_blocks_1_options','field_61782954ee965'),(134212,40437,'blocks_1_logos','a:10:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39296\";i:6;s:5:\"39297\";i:7;s:5:\"39300\";i:8;s:5:\"39304\";i:9;s:5:\"39306\";}'),(134213,40437,'_blocks_1_logos','field_61782954ee96d'),(134214,40437,'blocks_1_title',''),(134215,40437,'_blocks_1_title','field_668fbfdc2daa1'),(134216,40437,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(134217,40437,'_hero_actions_0_button','field_61757281285eb'),(134218,40437,'blocks_2_acfe_flexible_toggle',''),(134219,40437,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(134220,40437,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(134221,40437,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(134222,40437,'blocks_2_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(134223,40437,'_blocks_2_content','field_6193c9b5eac84'),(134224,40437,'blocks_3_acfe_flexible_toggle',''),(134225,40437,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(134226,40437,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(134227,40437,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(134228,40437,'blocks_3_testimonial_slider_content_title',''),(134229,40437,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(134230,40437,'blocks_3_testimonial_slider_content_heading','Testimonials'),(134231,40437,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(134232,40437,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(134233,40437,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(134234,40437,'blocks_3_testimonial_slider_content_actions',''),(134235,40437,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(134236,40437,'blocks_3_testimonial_slider_content',''),(134237,40437,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(134238,40437,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(134239,40437,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(134240,40437,'blocks_3_testimonial_slider_ambassador_bool','0'),(134241,40437,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(134242,40437,'_thumbnail_id',''),(134243,40437,'__thumbnail_id','field_617570855ddaf'),(134245,40438,'hide_hero','0'),(134246,40438,'_hide_hero','field_66a2380fcda39'),(134247,40438,'hero_title','Our Partners'),(134248,40438,'_hero_title','field_617571fe285e8'),(134249,40438,'hero_text','Discover our partners'),(134250,40438,'_hero_text','field_6175723c285e9'),(134251,40438,'hero_actions','1'),(134252,40438,'_hero_actions','field_61757270285ea'),(134253,40438,'hero_style','default'),(134254,40438,'_hero_style','field_62051d9dc5324'),(134255,40438,'hero_image_pos_x','right'),(134256,40438,'_hero_image_pos_x','field_62ec3d05390bb'),(134257,40438,'hero_image_pos_y','top'),(134258,40438,'_hero_image_pos_y','field_62ec3d05390bc'),(134259,40438,'hero_image_pos',''),(134260,40438,'_hero_image_pos','field_62ec3d05390ba'),(134261,40438,'fft_hide_from_listings','0'),(134262,40438,'_fft_hide_from_listings','field_61f1320446ab2'),(134263,40438,'fft_page_format','default'),(134264,40438,'_fft_page_format','field_61ae213f1f218'),(134265,40438,'fft_hide_nav','0'),(134266,40438,'_fft_hide_nav','field_635bd5e43527c'),(134267,40438,'fft_hide_header_call_to_action','0'),(134268,40438,'_fft_hide_header_call_to_action','field_635bd6723527d'),(134269,40438,'fft_page_sitemap','0'),(134270,40438,'_fft_page_sitemap','field_61af9b34e8181'),(134271,40438,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:16:\"standard_content\";i:3;s:18:\"testimonial_slider\";}'),(134272,40438,'_blocks','field_6176696113096'),(134273,40438,'blocks_0_acfe_flexible_toggle',''),(134274,40438,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(134275,40438,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(134276,40438,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(134277,40438,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(134278,40438,'_blocks_0_content','field_6193c9b5eac84'),(134279,40438,'blocks_1_acfe_flexible_toggle',''),(134280,40438,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(134281,40438,'blocks_1_acfe_flexible_layout_title','Logos'),(134282,40438,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(134283,40438,'blocks_1_options_theme','#ffffff'),(134284,40438,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(134285,40438,'blocks_1_options_format','carousel'),(134286,40438,'_blocks_1_options_format','field_61782964ee971'),(134287,40438,'blocks_1_options',''),(134288,40438,'_blocks_1_options','field_61782954ee965'),(134289,40438,'blocks_1_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(134290,40438,'_blocks_1_logos','field_61782954ee96d'),(134291,40438,'blocks_1_title',''),(134292,40438,'_blocks_1_title','field_668fbfdc2daa1'),(134293,40438,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(134294,40438,'_hero_actions_0_button','field_61757281285eb'),(134295,40438,'blocks_2_acfe_flexible_toggle',''),(134296,40438,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(134297,40438,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(134298,40438,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(134299,40438,'blocks_2_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(134300,40438,'_blocks_2_content','field_6193c9b5eac84'),(134301,40438,'blocks_3_acfe_flexible_toggle',''),(134302,40438,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(134303,40438,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(134304,40438,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(134305,40438,'blocks_3_testimonial_slider_content_title',''),(134306,40438,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(134307,40438,'blocks_3_testimonial_slider_content_heading','Testimonials'),(134308,40438,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(134309,40438,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(134310,40438,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(134311,40438,'blocks_3_testimonial_slider_content_actions',''),(134312,40438,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(134313,40438,'blocks_3_testimonial_slider_content',''),(134314,40438,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(134315,40438,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(134316,40438,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(134317,40438,'blocks_3_testimonial_slider_ambassador_bool','0'),(134318,40438,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(134319,40438,'_thumbnail_id',''),(134320,40438,'__thumbnail_id','field_617570855ddaf'),(134322,40439,'hide_hero','0'),(134323,40439,'_hide_hero','field_66a2380fcda39'),(134324,40439,'hero_title','Funding Your Course'),(134325,40439,'_hero_title','field_617571fe285e8'),(134326,40439,'hero_text','Discover the various options available for funding and paying for your course with us.'),(134327,40439,'_hero_text','field_6175723c285e9'),(134328,40439,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(134329,40439,'_hero_actions_0_button','field_61757281285eb'),(134330,40439,'hero_actions','1'),(134331,40439,'_hero_actions','field_61757270285ea'),(134332,40439,'hero_style','default'),(134333,40439,'_hero_style','field_62051d9dc5324'),(134334,40439,'hero_image_pos_x','right'),(134335,40439,'_hero_image_pos_x','field_62ec3d05390bb'),(134336,40439,'hero_image_pos_y','top'),(134337,40439,'_hero_image_pos_y','field_62ec3d05390bc'),(134338,40439,'hero_image_pos',''),(134339,40439,'_hero_image_pos','field_62ec3d05390ba'),(134340,40439,'fft_hide_from_listings','0'),(134341,40439,'_fft_hide_from_listings','field_61f1320446ab2'),(134342,40439,'fft_page_format','default'),(134343,40439,'_fft_page_format','field_61ae213f1f218'),(134344,40439,'fft_hide_nav','0'),(134345,40439,'_fft_hide_nav','field_635bd5e43527c'),(134346,40439,'fft_hide_header_call_to_action','0'),(134347,40439,'_fft_hide_header_call_to_action','field_635bd6723527d'),(134348,40439,'fft_page_sitemap','0'),(134349,40439,'_fft_page_sitemap','field_61af9b34e8181'),(134350,40439,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(134351,40439,'_blocks','field_6176696113096'),(134352,40439,'_thumbnail_id','39334'),(134353,40439,'__thumbnail_id','field_617570855ddaf'),(134354,40439,'blocks_0_acfe_flexible_toggle',''),(134355,40439,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(134356,40439,'blocks_0_acfe_flexible_layout_title','Icons'),(134357,40439,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(134358,40439,'blocks_0_options_theme','#ffffff'),(134359,40439,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(134360,40439,'blocks_0_options_format','grid'),(134361,40439,'_blocks_0_options_format','field_64bfde9a90690'),(134362,40439,'blocks_0_options',''),(134363,40439,'_blocks_0_options','field_64bfdd9b90684'),(134364,40439,'blocks_0_row_content_title',''),(134365,40439,'_blocks_0_row_content_title','field_64bfdd9b90687'),(134366,40439,'blocks_0_row_content_heading','Fees & Funding Options'),(134367,40439,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(134368,40439,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(134369,40439,'_blocks_0_row_content_text','field_64bfdd9b90689'),(134370,40439,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(134371,40439,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(134372,40439,'blocks_0_row_content_actions','1'),(134373,40439,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(134374,40439,'blocks_0_row_content',''),(134375,40439,'_blocks_0_row_content','field_64bfdd9b90686'),(134376,40439,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(134377,40439,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(134378,40439,'blocks_0_icon_row_items_0_label','Pay in full'),(134379,40439,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(134380,40439,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(134381,40439,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(134382,40439,'blocks_0_icon_row_items_1_icon','finance.svg'),(134383,40439,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(134384,40439,'blocks_0_icon_row_items_1_label','0% finance*'),(134385,40439,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(134386,40439,'blocks_0_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance'),(134387,40439,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(134388,40439,'blocks_0_icon_row_items_2_icon','deposit.svg'),(134389,40439,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(134390,40439,'blocks_0_icon_row_items_2_label','Deposit & balance'),(134391,40439,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(134392,40439,'blocks_0_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(134393,40439,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(134394,40439,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(134395,40439,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(134396,40439,'blocks_0_icon_row_items_3_label','FlexPay'),(134397,40439,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(134398,40439,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(134399,40439,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(134400,40439,'blocks_0_icon_row_items','4'),(134401,40439,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(134402,40439,'blocks_1_acfe_flexible_toggle',''),(134403,40439,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(134404,40439,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(134405,40439,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(134406,40439,'blocks_1_options_theme','#ffffff'),(134407,40439,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(134408,40439,'blocks_1_options_reverse','0'),(134409,40439,'_blocks_1_options_reverse','field_61768049bb8ac'),(134410,40439,'blocks_1_options',''),(134411,40439,'_blocks_1_options','field_617682517c334'),(134412,40439,'blocks_1_split_5050_image','39335'),(134413,40439,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(134414,40439,'blocks_1_split_5050_video',''),(134415,40439,'_blocks_1_split_5050_video','field_6239f3160848a'),(134416,40439,'blocks_1_split_5050_content_title',''),(134417,40439,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(134418,40439,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(134419,40439,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(134420,40439,'blocks_1_split_5050_content_text','Training for a new career is a big investment and as with all things in life you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(134421,40439,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(134422,40439,'blocks_1_split_5050_content_actions',''),(134423,40439,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(134424,40439,'blocks_1_split_5050_content',''),(134425,40439,'_blocks_1_split_5050_content','field_61767afceb8ba'),(134426,40439,'blocks_2_acfe_flexible_toggle',''),(134427,40439,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(134428,40439,'blocks_2_acfe_flexible_layout_title','Form'),(134429,40439,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(134430,40439,'blocks_2_row_content_format','standard'),(134431,40439,'_blocks_2_row_content_format','field_6481ead962881'),(134432,40439,'blocks_2_row_content_title',''),(134433,40439,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(134434,40439,'blocks_2_row_content_heading','We\'re here to help you succeed'),(134435,40439,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(134436,40439,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that works for them.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to give you no-obligation advice and will help you create a payment plan that suits you.'),(134437,40439,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(134438,40439,'blocks_2_row_content_actions',''),(134439,40439,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(134440,40439,'blocks_2_row_content',''),(134441,40439,'_blocks_2_row_content','field_61a0f5f5b3db0'),(134442,40439,'blocks_2_row_form',''),(134443,40439,'_blocks_2_row_form','field_61a4ff2c0b08e'),(134444,40439,'blocks_2_row_form_button_label',''),(134445,40439,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(134446,40439,'blocks_3_acfe_flexible_toggle',''),(134447,40439,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(134448,40439,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(134449,40439,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(134450,40439,'blocks_3_testimonial_slider_content_title',''),(134451,40439,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(134452,40439,'blocks_3_testimonial_slider_content_heading','Testimonials'),(134453,40439,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(134454,40439,'blocks_3_testimonial_slider_content_text',''),(134455,40439,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(134456,40439,'blocks_3_testimonial_slider_content_actions',''),(134457,40439,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(134458,40439,'blocks_3_testimonial_slider_content',''),(134459,40439,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(134460,40439,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(134461,40439,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(134462,40439,'blocks_3_testimonial_slider_ambassador_bool','0'),(134463,40439,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(134464,40440,'hide_hero','0'),(134465,40440,'_hide_hero','field_66a2380fcda39'),(134466,40440,'hero_title','Funding Your Course'),(134467,40440,'_hero_title','field_617571fe285e8'),(134468,40440,'hero_text','Discover the various options available for funding and paying for your course with us.'),(134469,40440,'_hero_text','field_6175723c285e9'),(134470,40440,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(134471,40440,'_hero_actions_0_button','field_61757281285eb'),(134472,40440,'hero_actions','1'),(134473,40440,'_hero_actions','field_61757270285ea'),(134474,40440,'hero_style','default'),(134475,40440,'_hero_style','field_62051d9dc5324'),(134476,40440,'hero_image_pos_x','right'),(134477,40440,'_hero_image_pos_x','field_62ec3d05390bb'),(134478,40440,'hero_image_pos_y','top'),(134479,40440,'_hero_image_pos_y','field_62ec3d05390bc'),(134480,40440,'hero_image_pos',''),(134481,40440,'_hero_image_pos','field_62ec3d05390ba'),(134482,40440,'fft_hide_from_listings','0'),(134483,40440,'_fft_hide_from_listings','field_61f1320446ab2'),(134484,40440,'fft_page_format','default'),(134485,40440,'_fft_page_format','field_61ae213f1f218'),(134486,40440,'fft_hide_nav','0'),(134487,40440,'_fft_hide_nav','field_635bd5e43527c'),(134488,40440,'fft_hide_header_call_to_action','0'),(134489,40440,'_fft_hide_header_call_to_action','field_635bd6723527d'),(134490,40440,'fft_page_sitemap','0'),(134491,40440,'_fft_page_sitemap','field_61af9b34e8181'),(134492,40440,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(134493,40440,'_blocks','field_6176696113096'),(134494,40440,'_thumbnail_id','39334'),(134495,40440,'__thumbnail_id','field_617570855ddaf'),(134496,40440,'blocks_0_acfe_flexible_toggle',''),(134497,40440,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(134498,40440,'blocks_0_acfe_flexible_layout_title','Icons'),(134499,40440,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(134500,40440,'blocks_0_options_theme','#ffffff'),(134501,40440,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(134502,40440,'blocks_0_options_format','grid'),(134503,40440,'_blocks_0_options_format','field_64bfde9a90690'),(134504,40440,'blocks_0_options',''),(134505,40440,'_blocks_0_options','field_64bfdd9b90684'),(134506,40440,'blocks_0_row_content_title',''),(134507,40440,'_blocks_0_row_content_title','field_64bfdd9b90687'),(134508,40440,'blocks_0_row_content_heading','Fees & Funding Options'),(134509,40440,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(134510,40440,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(134511,40440,'_blocks_0_row_content_text','field_64bfdd9b90689'),(134512,40440,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(134513,40440,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(134514,40440,'blocks_0_row_content_actions','1'),(134515,40440,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(134516,40440,'blocks_0_row_content',''),(134517,40440,'_blocks_0_row_content','field_64bfdd9b90686'),(134518,40440,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(134519,40440,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(134520,40440,'blocks_0_icon_row_items_0_label','Pay in full'),(134521,40440,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(134522,40440,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(134523,40440,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(134524,40440,'blocks_0_icon_row_items_1_icon','finance.svg'),(134525,40440,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(134526,40440,'blocks_0_icon_row_items_1_label','0% finance*'),(134527,40440,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(134528,40440,'blocks_0_icon_row_items_1_text','Put down a deposit and spread the cost of your training with 0% finance.'),(134529,40440,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(134530,40440,'blocks_0_icon_row_items_2_icon','deposit.svg'),(134531,40440,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(134532,40440,'blocks_0_icon_row_items_2_label','Deposit & balance'),(134533,40440,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(134534,40440,'blocks_0_icon_row_items_2_text','Put down a deposit and pay the remaining balance in one lump sum later.'),(134535,40440,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(134536,40440,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(134537,40440,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(134538,40440,'blocks_0_icon_row_items_3_label','FlexPay'),(134539,40440,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(134540,40440,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(134541,40440,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(134542,40440,'blocks_0_icon_row_items','4'),(134543,40440,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(134544,40440,'blocks_1_acfe_flexible_toggle',''),(134545,40440,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(134546,40440,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(134547,40440,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(134548,40440,'blocks_1_options_theme','#ffffff'),(134549,40440,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(134550,40440,'blocks_1_options_reverse','0'),(134551,40440,'_blocks_1_options_reverse','field_61768049bb8ac'),(134552,40440,'blocks_1_options',''),(134553,40440,'_blocks_1_options','field_617682517c334'),(134554,40440,'blocks_1_split_5050_image','39335'),(134555,40440,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(134556,40440,'blocks_1_split_5050_video',''),(134557,40440,'_blocks_1_split_5050_video','field_6239f3160848a'),(134558,40440,'blocks_1_split_5050_content_title',''),(134559,40440,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(134560,40440,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(134561,40440,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(134562,40440,'blocks_1_split_5050_content_text','Training for a new career is a big investment and as with all things in life you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(134563,40440,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(134564,40440,'blocks_1_split_5050_content_actions',''),(134565,40440,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(134566,40440,'blocks_1_split_5050_content',''),(134567,40440,'_blocks_1_split_5050_content','field_61767afceb8ba'),(134568,40440,'blocks_2_acfe_flexible_toggle',''),(134569,40440,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(134570,40440,'blocks_2_acfe_flexible_layout_title','Form'),(134571,40440,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(134572,40440,'blocks_2_row_content_format','standard'),(134573,40440,'_blocks_2_row_content_format','field_6481ead962881'),(134574,40440,'blocks_2_row_content_title',''),(134575,40440,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(134576,40440,'blocks_2_row_content_heading','We\'re here to help you succeed'),(134577,40440,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(134578,40440,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that works for them.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to give you no-obligation advice and will help you create a payment plan that suits you.'),(134579,40440,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(134580,40440,'blocks_2_row_content_actions',''),(134581,40440,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(134582,40440,'blocks_2_row_content',''),(134583,40440,'_blocks_2_row_content','field_61a0f5f5b3db0'),(134584,40440,'blocks_2_row_form',''),(134585,40440,'_blocks_2_row_form','field_61a4ff2c0b08e'),(134586,40440,'blocks_2_row_form_button_label',''),(134587,40440,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(134588,40440,'blocks_3_acfe_flexible_toggle',''),(134589,40440,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(134590,40440,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(134591,40440,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(134592,40440,'blocks_3_testimonial_slider_content_title',''),(134593,40440,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(134594,40440,'blocks_3_testimonial_slider_content_heading','Testimonials'),(134595,40440,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(134596,40440,'blocks_3_testimonial_slider_content_text',''),(134597,40440,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(134598,40440,'blocks_3_testimonial_slider_content_actions',''),(134599,40440,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(134600,40440,'blocks_3_testimonial_slider_content',''),(134601,40440,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(134602,40440,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(134603,40440,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(134604,40440,'blocks_3_testimonial_slider_ambassador_bool','0'),(134605,40440,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(134606,40441,'hide_hero','0'),(134607,40441,'_hide_hero','field_66a2380fcda39'),(134608,40441,'hero_title','Funding Your Course'),(134609,40441,'_hero_title','field_617571fe285e8'),(134610,40441,'hero_text','Discover the various options available for funding and paying for your course with us.'),(134611,40441,'_hero_text','field_6175723c285e9'),(134612,40441,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(134613,40441,'_hero_actions_0_button','field_61757281285eb'),(134614,40441,'hero_actions','1'),(134615,40441,'_hero_actions','field_61757270285ea'),(134616,40441,'hero_style','default'),(134617,40441,'_hero_style','field_62051d9dc5324'),(134618,40441,'hero_image_pos_x','right'),(134619,40441,'_hero_image_pos_x','field_62ec3d05390bb'),(134620,40441,'hero_image_pos_y','top'),(134621,40441,'_hero_image_pos_y','field_62ec3d05390bc'),(134622,40441,'hero_image_pos',''),(134623,40441,'_hero_image_pos','field_62ec3d05390ba'),(134624,40441,'fft_hide_from_listings','0'),(134625,40441,'_fft_hide_from_listings','field_61f1320446ab2'),(134626,40441,'fft_page_format','default'),(134627,40441,'_fft_page_format','field_61ae213f1f218'),(134628,40441,'fft_hide_nav','0'),(134629,40441,'_fft_hide_nav','field_635bd5e43527c'),(134630,40441,'fft_hide_header_call_to_action','0'),(134631,40441,'_fft_hide_header_call_to_action','field_635bd6723527d'),(134632,40441,'fft_page_sitemap','0'),(134633,40441,'_fft_page_sitemap','field_61af9b34e8181'),(134634,40441,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(134635,40441,'_blocks','field_6176696113096'),(134636,40441,'_thumbnail_id','39334'),(134637,40441,'__thumbnail_id','field_617570855ddaf'),(134638,40441,'blocks_0_acfe_flexible_toggle',''),(134639,40441,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(134640,40441,'blocks_0_acfe_flexible_layout_title','Icons'),(134641,40441,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(134642,40441,'blocks_0_options_theme','#ffffff'),(134643,40441,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(134644,40441,'blocks_0_options_format','grid'),(134645,40441,'_blocks_0_options_format','field_64bfde9a90690'),(134646,40441,'blocks_0_options',''),(134647,40441,'_blocks_0_options','field_64bfdd9b90684'),(134648,40441,'blocks_0_row_content_title',''),(134649,40441,'_blocks_0_row_content_title','field_64bfdd9b90687'),(134650,40441,'blocks_0_row_content_heading','Fees & Funding Options'),(134651,40441,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(134652,40441,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(134653,40441,'_blocks_0_row_content_text','field_64bfdd9b90689'),(134654,40441,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(134655,40441,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(134656,40441,'blocks_0_row_content_actions','1'),(134657,40441,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(134658,40441,'blocks_0_row_content',''),(134659,40441,'_blocks_0_row_content','field_64bfdd9b90686'),(134660,40441,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(134661,40441,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(134662,40441,'blocks_0_icon_row_items_0_label','Pay in full'),(134663,40441,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(134664,40441,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(134665,40441,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(134666,40441,'blocks_0_icon_row_items_1_icon','finance.svg'),(134667,40441,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(134668,40441,'blocks_0_icon_row_items_1_label','0% finance*'),(134669,40441,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(134670,40441,'blocks_0_icon_row_items_1_text','Put down a deposit and spread the cost of your training with 0% finance.'),(134671,40441,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(134672,40441,'blocks_0_icon_row_items_2_icon','deposit.svg'),(134673,40441,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(134674,40441,'blocks_0_icon_row_items_2_label','Deposit & balance'),(134675,40441,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(134676,40441,'blocks_0_icon_row_items_2_text','Put down a deposit and pay the remaining balance in one lump sum later.'),(134677,40441,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(134678,40441,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(134679,40441,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(134680,40441,'blocks_0_icon_row_items_3_label','FlexPay'),(134681,40441,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(134682,40441,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(134683,40441,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(134684,40441,'blocks_0_icon_row_items','4'),(134685,40441,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(134686,40441,'blocks_1_acfe_flexible_toggle',''),(134687,40441,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(134688,40441,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(134689,40441,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(134690,40441,'blocks_1_options_theme','#ffffff'),(134691,40441,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(134692,40441,'blocks_1_options_reverse','0'),(134693,40441,'_blocks_1_options_reverse','field_61768049bb8ac'),(134694,40441,'blocks_1_options',''),(134695,40441,'_blocks_1_options','field_617682517c334'),(134696,40441,'blocks_1_split_5050_image','39335'),(134697,40441,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(134698,40441,'blocks_1_split_5050_video',''),(134699,40441,'_blocks_1_split_5050_video','field_6239f3160848a'),(134700,40441,'blocks_1_split_5050_content_title',''),(134701,40441,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(134702,40441,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(134703,40441,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(134704,40441,'blocks_1_split_5050_content_text','Training for a new career is a big investment, and as with all things in life, you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(134705,40441,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(134706,40441,'blocks_1_split_5050_content_actions',''),(134707,40441,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(134708,40441,'blocks_1_split_5050_content',''),(134709,40441,'_blocks_1_split_5050_content','field_61767afceb8ba'),(134710,40441,'blocks_2_acfe_flexible_toggle',''),(134711,40441,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(134712,40441,'blocks_2_acfe_flexible_layout_title','Form'),(134713,40441,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(134714,40441,'blocks_2_row_content_format','standard'),(134715,40441,'_blocks_2_row_content_format','field_6481ead962881'),(134716,40441,'blocks_2_row_content_title',''),(134717,40441,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(134718,40441,'blocks_2_row_content_heading','We\'re here to help you succeed'),(134719,40441,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(134720,40441,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that works for them.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to give you no-obligation advice and will help you create a payment plan that suits you.'),(134721,40441,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(134722,40441,'blocks_2_row_content_actions',''),(134723,40441,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(134724,40441,'blocks_2_row_content',''),(134725,40441,'_blocks_2_row_content','field_61a0f5f5b3db0'),(134726,40441,'blocks_2_row_form',''),(134727,40441,'_blocks_2_row_form','field_61a4ff2c0b08e'),(134728,40441,'blocks_2_row_form_button_label',''),(134729,40441,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(134730,40441,'blocks_3_acfe_flexible_toggle',''),(134731,40441,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(134732,40441,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(134733,40441,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(134734,40441,'blocks_3_testimonial_slider_content_title',''),(134735,40441,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(134736,40441,'blocks_3_testimonial_slider_content_heading','Testimonials'),(134737,40441,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(134738,40441,'blocks_3_testimonial_slider_content_text',''),(134739,40441,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(134740,40441,'blocks_3_testimonial_slider_content_actions',''),(134741,40441,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(134742,40441,'blocks_3_testimonial_slider_content',''),(134743,40441,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(134744,40441,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(134745,40441,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(134746,40441,'blocks_3_testimonial_slider_ambassador_bool','0'),(134747,40441,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(134748,40442,'hide_hero','0'),(134749,40442,'_hide_hero','field_66a2380fcda39'),(134750,40442,'hero_title','Funding Your Course'),(134751,40442,'_hero_title','field_617571fe285e8'),(134752,40442,'hero_text','Discover the various options available for funding and paying for your course with us.'),(134753,40442,'_hero_text','field_6175723c285e9'),(134754,40442,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(134755,40442,'_hero_actions_0_button','field_61757281285eb'),(134756,40442,'hero_actions','1'),(134757,40442,'_hero_actions','field_61757270285ea'),(134758,40442,'hero_style','default'),(134759,40442,'_hero_style','field_62051d9dc5324'),(134760,40442,'hero_image_pos_x','right'),(134761,40442,'_hero_image_pos_x','field_62ec3d05390bb'),(134762,40442,'hero_image_pos_y','top'),(134763,40442,'_hero_image_pos_y','field_62ec3d05390bc'),(134764,40442,'hero_image_pos',''),(134765,40442,'_hero_image_pos','field_62ec3d05390ba'),(134766,40442,'fft_hide_from_listings','0'),(134767,40442,'_fft_hide_from_listings','field_61f1320446ab2'),(134768,40442,'fft_page_format','default'),(134769,40442,'_fft_page_format','field_61ae213f1f218'),(134770,40442,'fft_hide_nav','0'),(134771,40442,'_fft_hide_nav','field_635bd5e43527c'),(134772,40442,'fft_hide_header_call_to_action','0'),(134773,40442,'_fft_hide_header_call_to_action','field_635bd6723527d'),(134774,40442,'fft_page_sitemap','0'),(134775,40442,'_fft_page_sitemap','field_61af9b34e8181'),(134776,40442,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(134777,40442,'_blocks','field_6176696113096'),(134778,40442,'_thumbnail_id','39334'),(134779,40442,'__thumbnail_id','field_617570855ddaf'),(134780,40442,'blocks_0_acfe_flexible_toggle',''),(134781,40442,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(134782,40442,'blocks_0_acfe_flexible_layout_title','Icons'),(134783,40442,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(134784,40442,'blocks_0_options_theme','#ffffff'),(134785,40442,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(134786,40442,'blocks_0_options_format','grid'),(134787,40442,'_blocks_0_options_format','field_64bfde9a90690'),(134788,40442,'blocks_0_options',''),(134789,40442,'_blocks_0_options','field_64bfdd9b90684'),(134790,40442,'blocks_0_row_content_title',''),(134791,40442,'_blocks_0_row_content_title','field_64bfdd9b90687'),(134792,40442,'blocks_0_row_content_heading','Fees & Funding Options'),(134793,40442,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(134794,40442,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(134795,40442,'_blocks_0_row_content_text','field_64bfdd9b90689'),(134796,40442,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(134797,40442,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(134798,40442,'blocks_0_row_content_actions','1'),(134799,40442,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(134800,40442,'blocks_0_row_content',''),(134801,40442,'_blocks_0_row_content','field_64bfdd9b90686'),(134802,40442,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(134803,40442,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(134804,40442,'blocks_0_icon_row_items_0_label','Pay in full'),(134805,40442,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(134806,40442,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(134807,40442,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(134808,40442,'blocks_0_icon_row_items_1_icon','finance.svg'),(134809,40442,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(134810,40442,'blocks_0_icon_row_items_1_label','0% finance*'),(134811,40442,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(134812,40442,'blocks_0_icon_row_items_1_text','Put down a deposit and spread the cost of your training with 0% finance.'),(134813,40442,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(134814,40442,'blocks_0_icon_row_items_2_icon','deposit.svg'),(134815,40442,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(134816,40442,'blocks_0_icon_row_items_2_label','Deposit & balance'),(134817,40442,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(134818,40442,'blocks_0_icon_row_items_2_text','Put down a deposit and pay the remaining balance in one lump sum later.'),(134819,40442,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(134820,40442,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(134821,40442,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(134822,40442,'blocks_0_icon_row_items_3_label','FlexPay'),(134823,40442,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(134824,40442,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(134825,40442,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(134826,40442,'blocks_0_icon_row_items','4'),(134827,40442,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(134828,40442,'blocks_1_acfe_flexible_toggle',''),(134829,40442,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(134830,40442,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(134831,40442,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(134832,40442,'blocks_1_options_theme','#ffffff'),(134833,40442,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(134834,40442,'blocks_1_options_reverse','0'),(134835,40442,'_blocks_1_options_reverse','field_61768049bb8ac'),(134836,40442,'blocks_1_options',''),(134837,40442,'_blocks_1_options','field_617682517c334'),(134838,40442,'blocks_1_split_5050_image','39335'),(134839,40442,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(134840,40442,'blocks_1_split_5050_video',''),(134841,40442,'_blocks_1_split_5050_video','field_6239f3160848a'),(134842,40442,'blocks_1_split_5050_content_title',''),(134843,40442,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(134844,40442,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(134845,40442,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(134846,40442,'blocks_1_split_5050_content_text','Training for a new career is a big investment, and as with all things in life, you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(134847,40442,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(134848,40442,'blocks_1_split_5050_content_actions',''),(134849,40442,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(134850,40442,'blocks_1_split_5050_content',''),(134851,40442,'_blocks_1_split_5050_content','field_61767afceb8ba'),(134852,40442,'blocks_2_acfe_flexible_toggle',''),(134853,40442,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(134854,40442,'blocks_2_acfe_flexible_layout_title','Form'),(134855,40442,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(134856,40442,'blocks_2_row_content_format','standard'),(134857,40442,'_blocks_2_row_content_format','field_6481ead962881'),(134858,40442,'blocks_2_row_content_title',''),(134859,40442,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(134860,40442,'blocks_2_row_content_heading','We\'re here to help you succeed'),(134861,40442,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(134862,40442,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that best suits their needs.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to give you no-obligation advice and will help you create a payment plan that suits you.'),(134863,40442,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(134864,40442,'blocks_2_row_content_actions',''),(134865,40442,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(134866,40442,'blocks_2_row_content',''),(134867,40442,'_blocks_2_row_content','field_61a0f5f5b3db0'),(134868,40442,'blocks_2_row_form',''),(134869,40442,'_blocks_2_row_form','field_61a4ff2c0b08e'),(134870,40442,'blocks_2_row_form_button_label',''),(134871,40442,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(134872,40442,'blocks_3_acfe_flexible_toggle',''),(134873,40442,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(134874,40442,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(134875,40442,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(134876,40442,'blocks_3_testimonial_slider_content_title',''),(134877,40442,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(134878,40442,'blocks_3_testimonial_slider_content_heading','Testimonials'),(134879,40442,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(134880,40442,'blocks_3_testimonial_slider_content_text',''),(134881,40442,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(134882,40442,'blocks_3_testimonial_slider_content_actions',''),(134883,40442,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(134884,40442,'blocks_3_testimonial_slider_content',''),(134885,40442,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(134886,40442,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(134887,40442,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(134888,40442,'blocks_3_testimonial_slider_ambassador_bool','0'),(134889,40442,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(134890,40443,'hide_hero','0'),(134891,40443,'_hide_hero','field_66a2380fcda39'),(134892,40443,'hero_title','Funding Your Course'),(134893,40443,'_hero_title','field_617571fe285e8'),(134894,40443,'hero_text','Discover the various options available for funding and paying for your course with us.'),(134895,40443,'_hero_text','field_6175723c285e9'),(134896,40443,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(134897,40443,'_hero_actions_0_button','field_61757281285eb'),(134898,40443,'hero_actions','1'),(134899,40443,'_hero_actions','field_61757270285ea'),(134900,40443,'hero_style','default'),(134901,40443,'_hero_style','field_62051d9dc5324'),(134902,40443,'hero_image_pos_x','right'),(134903,40443,'_hero_image_pos_x','field_62ec3d05390bb'),(134904,40443,'hero_image_pos_y','top'),(134905,40443,'_hero_image_pos_y','field_62ec3d05390bc'),(134906,40443,'hero_image_pos',''),(134907,40443,'_hero_image_pos','field_62ec3d05390ba'),(134908,40443,'fft_hide_from_listings','0'),(134909,40443,'_fft_hide_from_listings','field_61f1320446ab2'),(134910,40443,'fft_page_format','default'),(134911,40443,'_fft_page_format','field_61ae213f1f218'),(134912,40443,'fft_hide_nav','0'),(134913,40443,'_fft_hide_nav','field_635bd5e43527c'),(134914,40443,'fft_hide_header_call_to_action','0'),(134915,40443,'_fft_hide_header_call_to_action','field_635bd6723527d'),(134916,40443,'fft_page_sitemap','0'),(134917,40443,'_fft_page_sitemap','field_61af9b34e8181'),(134918,40443,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(134919,40443,'_blocks','field_6176696113096'),(134920,40443,'_thumbnail_id','39334'),(134921,40443,'__thumbnail_id','field_617570855ddaf'),(134922,40443,'blocks_0_acfe_flexible_toggle',''),(134923,40443,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(134924,40443,'blocks_0_acfe_flexible_layout_title','Icons'),(134925,40443,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(134926,40443,'blocks_0_options_theme','#ffffff'),(134927,40443,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(134928,40443,'blocks_0_options_format','grid'),(134929,40443,'_blocks_0_options_format','field_64bfde9a90690'),(134930,40443,'blocks_0_options',''),(134931,40443,'_blocks_0_options','field_64bfdd9b90684'),(134932,40443,'blocks_0_row_content_title',''),(134933,40443,'_blocks_0_row_content_title','field_64bfdd9b90687'),(134934,40443,'blocks_0_row_content_heading','Fees & Funding Options'),(134935,40443,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(134936,40443,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(134937,40443,'_blocks_0_row_content_text','field_64bfdd9b90689'),(134938,40443,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(134939,40443,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(134940,40443,'blocks_0_row_content_actions','1'),(134941,40443,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(134942,40443,'blocks_0_row_content',''),(134943,40443,'_blocks_0_row_content','field_64bfdd9b90686'),(134944,40443,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(134945,40443,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(134946,40443,'blocks_0_icon_row_items_0_label','Pay in full'),(134947,40443,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(134948,40443,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(134949,40443,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(134950,40443,'blocks_0_icon_row_items_1_icon','finance.svg'),(134951,40443,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(134952,40443,'blocks_0_icon_row_items_1_label','0% finance*'),(134953,40443,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(134954,40443,'blocks_0_icon_row_items_1_text','Put down a deposit and spread the cost of your training with 0% finance.'),(134955,40443,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(134956,40443,'blocks_0_icon_row_items_2_icon','deposit.svg'),(134957,40443,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(134958,40443,'blocks_0_icon_row_items_2_label','Deposit & balance'),(134959,40443,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(134960,40443,'blocks_0_icon_row_items_2_text','Put down a deposit and pay the remaining balance in one lump sum later.'),(134961,40443,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(134962,40443,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(134963,40443,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(134964,40443,'blocks_0_icon_row_items_3_label','FlexPay'),(134965,40443,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(134966,40443,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(134967,40443,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(134968,40443,'blocks_0_icon_row_items','4'),(134969,40443,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(134970,40443,'blocks_1_acfe_flexible_toggle',''),(134971,40443,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(134972,40443,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(134973,40443,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(134974,40443,'blocks_1_options_theme','#ffffff'),(134975,40443,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(134976,40443,'blocks_1_options_reverse','0'),(134977,40443,'_blocks_1_options_reverse','field_61768049bb8ac'),(134978,40443,'blocks_1_options',''),(134979,40443,'_blocks_1_options','field_617682517c334'),(134980,40443,'blocks_1_split_5050_image','39335'),(134981,40443,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(134982,40443,'blocks_1_split_5050_video',''),(134983,40443,'_blocks_1_split_5050_video','field_6239f3160848a'),(134984,40443,'blocks_1_split_5050_content_title',''),(134985,40443,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(134986,40443,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(134987,40443,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(134988,40443,'blocks_1_split_5050_content_text','Training for a new career is a big investment, and as with all things in life, you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(134989,40443,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(134990,40443,'blocks_1_split_5050_content_actions',''),(134991,40443,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(134992,40443,'blocks_1_split_5050_content',''),(134993,40443,'_blocks_1_split_5050_content','field_61767afceb8ba'),(134994,40443,'blocks_2_acfe_flexible_toggle',''),(134995,40443,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(134996,40443,'blocks_2_acfe_flexible_layout_title','Form'),(134997,40443,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(134998,40443,'blocks_2_row_content_format','standard'),(134999,40443,'_blocks_2_row_content_format','field_6481ead962881'),(135000,40443,'blocks_2_row_content_title',''),(135001,40443,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(135002,40443,'blocks_2_row_content_heading','We\'re here to help you succeed'),(135003,40443,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(135004,40443,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that best suits their needs.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to offer no-obligation advice and help you create a payment plan that suits you.'),(135005,40443,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(135006,40443,'blocks_2_row_content_actions',''),(135007,40443,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(135008,40443,'blocks_2_row_content',''),(135009,40443,'_blocks_2_row_content','field_61a0f5f5b3db0'),(135010,40443,'blocks_2_row_form',''),(135011,40443,'_blocks_2_row_form','field_61a4ff2c0b08e'),(135012,40443,'blocks_2_row_form_button_label',''),(135013,40443,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(135014,40443,'blocks_3_acfe_flexible_toggle',''),(135015,40443,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(135016,40443,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(135017,40443,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(135018,40443,'blocks_3_testimonial_slider_content_title',''),(135019,40443,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(135020,40443,'blocks_3_testimonial_slider_content_heading','Testimonials'),(135021,40443,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(135022,40443,'blocks_3_testimonial_slider_content_text',''),(135023,40443,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(135024,40443,'blocks_3_testimonial_slider_content_actions',''),(135025,40443,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(135026,40443,'blocks_3_testimonial_slider_content',''),(135027,40443,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(135028,40443,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(135029,40443,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(135030,40443,'blocks_3_testimonial_slider_ambassador_bool','0'),(135031,40443,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(135032,40444,'hide_hero','0'),(135033,40444,'_hide_hero','field_66a2380fcda39'),(135034,40444,'hero_title','Funding Your Course'),(135035,40444,'_hero_title','field_617571fe285e8'),(135036,40444,'hero_text','Discover the various options available for funding and paying for your course with us.'),(135037,40444,'_hero_text','field_6175723c285e9'),(135038,40444,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(135039,40444,'_hero_actions_0_button','field_61757281285eb'),(135040,40444,'hero_actions','1'),(135041,40444,'_hero_actions','field_61757270285ea'),(135042,40444,'hero_style','default'),(135043,40444,'_hero_style','field_62051d9dc5324'),(135044,40444,'hero_image_pos_x','right'),(135045,40444,'_hero_image_pos_x','field_62ec3d05390bb'),(135046,40444,'hero_image_pos_y','top'),(135047,40444,'_hero_image_pos_y','field_62ec3d05390bc'),(135048,40444,'hero_image_pos',''),(135049,40444,'_hero_image_pos','field_62ec3d05390ba'),(135050,40444,'fft_hide_from_listings','0'),(135051,40444,'_fft_hide_from_listings','field_61f1320446ab2'),(135052,40444,'fft_page_format','default'),(135053,40444,'_fft_page_format','field_61ae213f1f218'),(135054,40444,'fft_hide_nav','0'),(135055,40444,'_fft_hide_nav','field_635bd5e43527c'),(135056,40444,'fft_hide_header_call_to_action','0'),(135057,40444,'_fft_hide_header_call_to_action','field_635bd6723527d'),(135058,40444,'fft_page_sitemap','0'),(135059,40444,'_fft_page_sitemap','field_61af9b34e8181'),(135060,40444,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(135061,40444,'_blocks','field_6176696113096'),(135062,40444,'_thumbnail_id','39334'),(135063,40444,'__thumbnail_id','field_617570855ddaf'),(135064,40444,'blocks_0_acfe_flexible_toggle',''),(135065,40444,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(135066,40444,'blocks_0_acfe_flexible_layout_title','Icons'),(135067,40444,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(135068,40444,'blocks_0_options_theme','#ffffff'),(135069,40444,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(135070,40444,'blocks_0_options_format','grid'),(135071,40444,'_blocks_0_options_format','field_64bfde9a90690'),(135072,40444,'blocks_0_options',''),(135073,40444,'_blocks_0_options','field_64bfdd9b90684'),(135074,40444,'blocks_0_row_content_title',''),(135075,40444,'_blocks_0_row_content_title','field_64bfdd9b90687'),(135076,40444,'blocks_0_row_content_heading','Fees & Funding Options'),(135077,40444,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(135078,40444,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(135079,40444,'_blocks_0_row_content_text','field_64bfdd9b90689'),(135080,40444,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(135081,40444,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(135082,40444,'blocks_0_row_content_actions','1'),(135083,40444,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(135084,40444,'blocks_0_row_content',''),(135085,40444,'_blocks_0_row_content','field_64bfdd9b90686'),(135086,40444,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(135087,40444,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(135088,40444,'blocks_0_icon_row_items_0_label','Pay in full'),(135089,40444,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(135090,40444,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(135091,40444,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(135092,40444,'blocks_0_icon_row_items_1_icon','finance.svg'),(135093,40444,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(135094,40444,'blocks_0_icon_row_items_1_label','0% finance*'),(135095,40444,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(135096,40444,'blocks_0_icon_row_items_1_text','Put down a deposit and spread the cost of your training with 0% finance.'),(135097,40444,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(135098,40444,'blocks_0_icon_row_items_2_icon','deposit.svg'),(135099,40444,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(135100,40444,'blocks_0_icon_row_items_2_label','Deposit & balance'),(135101,40444,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(135102,40444,'blocks_0_icon_row_items_2_text','Put down a deposit and pay the remaining balance in one lump sum later.'),(135103,40444,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(135104,40444,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(135105,40444,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(135106,40444,'blocks_0_icon_row_items_3_label','FlexPay'),(135107,40444,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(135108,40444,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(135109,40444,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(135110,40444,'blocks_0_icon_row_items','4'),(135111,40444,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(135112,40444,'blocks_1_acfe_flexible_toggle',''),(135113,40444,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(135114,40444,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(135115,40444,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(135116,40444,'blocks_1_options_theme','#ffffff'),(135117,40444,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(135118,40444,'blocks_1_options_reverse','0'),(135119,40444,'_blocks_1_options_reverse','field_61768049bb8ac'),(135120,40444,'blocks_1_options',''),(135121,40444,'_blocks_1_options','field_617682517c334'),(135122,40444,'blocks_1_split_5050_image','39335'),(135123,40444,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(135124,40444,'blocks_1_split_5050_video',''),(135125,40444,'_blocks_1_split_5050_video','field_6239f3160848a'),(135126,40444,'blocks_1_split_5050_content_title',''),(135127,40444,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(135128,40444,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(135129,40444,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(135130,40444,'blocks_1_split_5050_content_text','Training for a new career is a big investment, and as with all things in life, you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(135131,40444,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(135132,40444,'blocks_1_split_5050_content_actions',''),(135133,40444,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(135134,40444,'blocks_1_split_5050_content',''),(135135,40444,'_blocks_1_split_5050_content','field_61767afceb8ba'),(135136,40444,'blocks_2_acfe_flexible_toggle',''),(135137,40444,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(135138,40444,'blocks_2_acfe_flexible_layout_title','Form'),(135139,40444,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(135140,40444,'blocks_2_row_content_format','standard'),(135141,40444,'_blocks_2_row_content_format','field_6481ead962881'),(135142,40444,'blocks_2_row_content_title',''),(135143,40444,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(135144,40444,'blocks_2_row_content_heading','We\'re here to help you succeed'),(135145,40444,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(135146,40444,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that best suits their needs.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to offer no-obligation advice and help you create a payment plan that suits you.'),(135147,40444,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(135148,40444,'blocks_2_row_content_actions',''),(135149,40444,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(135150,40444,'blocks_2_row_content',''),(135151,40444,'_blocks_2_row_content','field_61a0f5f5b3db0'),(135152,40444,'blocks_2_row_form',''),(135153,40444,'_blocks_2_row_form','field_61a4ff2c0b08e'),(135154,40444,'blocks_2_row_form_button_label',''),(135155,40444,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(135156,40444,'blocks_3_acfe_flexible_toggle',''),(135157,40444,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(135158,40444,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(135159,40444,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(135160,40444,'blocks_3_testimonial_slider_content_title',''),(135161,40444,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(135162,40444,'blocks_3_testimonial_slider_content_heading','Testimonials'),(135163,40444,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(135164,40444,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(135165,40444,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(135166,40444,'blocks_3_testimonial_slider_content_actions',''),(135167,40444,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(135168,40444,'blocks_3_testimonial_slider_content',''),(135169,40444,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(135170,40444,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(135171,40444,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(135172,40444,'blocks_3_testimonial_slider_ambassador_bool','0'),(135173,40444,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(135175,40445,'hide_hero','0'),(135176,40445,'_hide_hero','field_66a2380fcda39'),(135177,40445,'hero_title','Find a Biomechanics Coach in your area'),(135178,40445,'_hero_title','field_617571fe285e8'),(135179,40445,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(135180,40445,'_hero_text','field_6175723c285e9'),(135181,40445,'hero_actions',''),(135182,40445,'_hero_actions','field_61757270285ea'),(135183,40445,'hero_style','default'),(135184,40445,'_hero_style','field_62051d9dc5324'),(135185,40445,'hero_image_pos_x','right'),(135186,40445,'_hero_image_pos_x','field_62ec3d05390bb'),(135187,40445,'hero_image_pos_y','top'),(135188,40445,'_hero_image_pos_y','field_62ec3d05390bc'),(135189,40445,'hero_image_pos',''),(135190,40445,'_hero_image_pos','field_62ec3d05390ba'),(135191,40445,'fft_hide_from_listings','0'),(135192,40445,'_fft_hide_from_listings','field_61f1320446ab2'),(135193,40445,'fft_page_format','default'),(135194,40445,'_fft_page_format','field_61ae213f1f218'),(135195,40445,'fft_hide_nav','0'),(135196,40445,'_fft_hide_nav','field_635bd5e43527c'),(135197,40445,'fft_hide_header_call_to_action','0'),(135198,40445,'_fft_hide_header_call_to_action','field_635bd6723527d'),(135199,40445,'fft_page_sitemap','0'),(135200,40445,'_fft_page_sitemap','field_61af9b34e8181'),(135201,40445,'blocks_0_acfe_flexible_toggle',''),(135202,40445,'_blocks_0_acfe_flexible_toggle','field_layout_619e68cae6262_toggle'),(135203,40445,'blocks_0_acfe_flexible_layout_title','Map'),(135204,40445,'_blocks_0_acfe_flexible_layout_title','field_layout_619e68cae6262_title'),(135205,40445,'blocks_0_row_content_title',''),(135206,40445,'_blocks_0_row_content_title','field_619f5bb09cb8e'),(135207,40445,'blocks_0_row_content_heading','Find a Biomechanics Coach'),(135208,40445,'_blocks_0_row_content_heading','field_619f5bb09cb8f'),(135209,40445,'blocks_0_row_content_text',''),(135210,40445,'_blocks_0_row_content_text','field_619f5bb09cb90'),(135211,40445,'blocks_0_row_content_actions',''),(135212,40445,'_blocks_0_row_content_actions','field_619f5bb09cb91'),(135213,40445,'blocks_0_row_content',''),(135214,40445,'_blocks_0_row_content','field_619f5baf9cb8d'),(135215,40445,'blocks_0_map_location','a:12:{s:7:\"address\";s:108:\"Carnac Cottage, Cams Hall Estate, Cams Hall, Carnac Court, Cams Hall Estate, Fareham, Hampshire PO16 8UB, UK\";s:3:\"lat\";d:50.84829879999999;s:3:\"lng\";d:-1.1679301;s:4:\"zoom\";i:2;s:8:\"place_id\";s:27:\"ChIJsxIEsIVodEgRnRE6garbJXQ\";s:4:\"name\";s:14:\"Carnac Cottage\";s:11:\"street_name\";s:9:\"Cams Hall\";s:4:\"city\";s:7:\"Fareham\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"PO16 8UB\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(135216,40445,'_blocks_0_map_location','field_619f5bca9cb93'),(135217,40445,'blocks_1_acfe_flexible_toggle',''),(135218,40445,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(135219,40445,'blocks_1_acfe_flexible_layout_title','Text Block'),(135220,40445,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(135221,40445,'blocks_1_options_theme','#ffffff'),(135222,40445,'_blocks_1_options_theme','field_6176830e2ad17'),(135223,40445,'blocks_1_options',''),(135224,40445,'_blocks_1_options','field_6176830e2ad16'),(135225,40445,'blocks_1_text_block_heading','Can’t find what you’re looking for?'),(135226,40445,'_blocks_1_text_block_heading','field_617669d413097'),(135227,40445,'blocks_1_text_block_content','Get in touch with us at:\r\n\r\nrachel@biomechanicseducation.com\r\n\r\nor call on 020 3841 6151.'),(135228,40445,'_blocks_1_text_block_content','field_617669ec13098'),(135229,40445,'blocks','a:2:{i:0;s:3:\"map\";i:1;s:10:\"text_block\";}'),(135230,40445,'_blocks','field_6176696113096'),(135231,40445,'_thumbnail_id',''),(135232,40445,'__thumbnail_id','field_617570855ddaf'),(135234,40446,'hide_hero','0'),(135235,40446,'_hide_hero','field_66a2380fcda39'),(135236,40446,'hero_title','Find a Biomechanics Coach in Your Area'),(135237,40446,'_hero_title','field_617571fe285e8'),(135238,40446,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(135239,40446,'_hero_text','field_6175723c285e9'),(135240,40446,'hero_actions',''),(135241,40446,'_hero_actions','field_61757270285ea'),(135242,40446,'hero_style','default'),(135243,40446,'_hero_style','field_62051d9dc5324'),(135244,40446,'hero_image_pos_x','right'),(135245,40446,'_hero_image_pos_x','field_62ec3d05390bb'),(135246,40446,'hero_image_pos_y','top'),(135247,40446,'_hero_image_pos_y','field_62ec3d05390bc'),(135248,40446,'hero_image_pos',''),(135249,40446,'_hero_image_pos','field_62ec3d05390ba'),(135250,40446,'fft_hide_from_listings','0'),(135251,40446,'_fft_hide_from_listings','field_61f1320446ab2'),(135252,40446,'fft_page_format','default'),(135253,40446,'_fft_page_format','field_61ae213f1f218'),(135254,40446,'fft_hide_nav','0'),(135255,40446,'_fft_hide_nav','field_635bd5e43527c'),(135256,40446,'fft_hide_header_call_to_action','0'),(135257,40446,'_fft_hide_header_call_to_action','field_635bd6723527d'),(135258,40446,'fft_page_sitemap','0'),(135259,40446,'_fft_page_sitemap','field_61af9b34e8181'),(135260,40446,'blocks_0_acfe_flexible_toggle',''),(135261,40446,'_blocks_0_acfe_flexible_toggle','field_layout_619e68cae6262_toggle'),(135262,40446,'blocks_0_acfe_flexible_layout_title','Map'),(135263,40446,'_blocks_0_acfe_flexible_layout_title','field_layout_619e68cae6262_title'),(135264,40446,'blocks_0_row_content_title',''),(135265,40446,'_blocks_0_row_content_title','field_619f5bb09cb8e'),(135266,40446,'blocks_0_row_content_heading','Find a Biomechanics Coach'),(135267,40446,'_blocks_0_row_content_heading','field_619f5bb09cb8f'),(135268,40446,'blocks_0_row_content_text',''),(135269,40446,'_blocks_0_row_content_text','field_619f5bb09cb90'),(135270,40446,'blocks_0_row_content_actions',''),(135271,40446,'_blocks_0_row_content_actions','field_619f5bb09cb91'),(135272,40446,'blocks_0_row_content',''),(135273,40446,'_blocks_0_row_content','field_619f5baf9cb8d'),(135274,40446,'blocks_0_map_location','a:12:{s:7:\"address\";s:108:\"Carnac Cottage, Cams Hall Estate, Cams Hall, Carnac Court, Cams Hall Estate, Fareham, Hampshire PO16 8UB, UK\";s:3:\"lat\";d:50.84829879999999;s:3:\"lng\";d:-1.1679301;s:4:\"zoom\";i:2;s:8:\"place_id\";s:27:\"ChIJsxIEsIVodEgRnRE6garbJXQ\";s:4:\"name\";s:14:\"Carnac Cottage\";s:11:\"street_name\";s:9:\"Cams Hall\";s:4:\"city\";s:7:\"Fareham\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"PO16 8UB\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(135275,40446,'_blocks_0_map_location','field_619f5bca9cb93'),(135276,40446,'blocks_1_acfe_flexible_toggle',''),(135277,40446,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(135278,40446,'blocks_1_acfe_flexible_layout_title','Text Block'),(135279,40446,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(135280,40446,'blocks_1_options_theme','#ffffff'),(135281,40446,'_blocks_1_options_theme','field_6176830e2ad17'),(135282,40446,'blocks_1_options',''),(135283,40446,'_blocks_1_options','field_6176830e2ad16'),(135284,40446,'blocks_1_text_block_heading','Can’t find what you’re looking for?'),(135285,40446,'_blocks_1_text_block_heading','field_617669d413097'),(135286,40446,'blocks_1_text_block_content','Get in touch with us at:\r\n\r\nrachel@biomechanicseducation.com\r\n\r\nor call on 020 3841 6151.'),(135287,40446,'_blocks_1_text_block_content','field_617669ec13098'),(135288,40446,'blocks','a:2:{i:0;s:3:\"map\";i:1;s:10:\"text_block\";}'),(135289,40446,'_blocks','field_6176696113096'),(135290,40446,'_thumbnail_id',''),(135291,40446,'__thumbnail_id','field_617570855ddaf'),(135292,40447,'_wp_attached_file','2024/09/Find-a-BM-Coach-hero-iamge.jpg'),(135293,40447,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:419;s:4:\"file\";s:38:\"2024/09/Find-a-BM-Coach-hero-iamge.jpg\";s:8:\"filesize\";i:151482;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-900x377.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:377;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37646;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-400x168.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20971;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-768x322.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:322;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32901;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27635;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-900x419.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39007;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24134;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-900x419.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39007;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24482;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-675x419.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34630;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-900x419.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39007;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25427;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-900x419.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39007;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22865;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:38:\"Find-a-BM-Coach-hero-iamge-900x419.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:419;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39007;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:81:\"Copyright (c) 2024 Eakrin Rasadonyindee/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:61:\"Wooden,Doll,Stand,Group,With,Magnifying,Glass,Find,Search,For\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:421:\"leader,career,standing out,hr,office,employee,professional,recruitment,recruiting,businessman,group,partnership,resource,work,planning,background,person,recruit,success,job,coach,boss,training,headhunter,leadership,man,relationship,human,crm,hand,business,manager,change,recruiter,resources,staff,employment,team,people,performance,corporate,management,teamwork,supervise,challenge,growth,personnel,risk,strategy,customer\";}}}'),(135295,40448,'hide_hero','0'),(135296,40448,'_hide_hero','field_66a2380fcda39'),(135297,40448,'hero_title','Find a Biomechanics Coach in Your Area'),(135298,40448,'_hero_title','field_617571fe285e8'),(135299,40448,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(135300,40448,'_hero_text','field_6175723c285e9'),(135301,40448,'hero_actions',''),(135302,40448,'_hero_actions','field_61757270285ea'),(135303,40448,'hero_style','default'),(135304,40448,'_hero_style','field_62051d9dc5324'),(135305,40448,'hero_image_pos_x','right'),(135306,40448,'_hero_image_pos_x','field_62ec3d05390bb'),(135307,40448,'hero_image_pos_y','top'),(135308,40448,'_hero_image_pos_y','field_62ec3d05390bc'),(135309,40448,'hero_image_pos',''),(135310,40448,'_hero_image_pos','field_62ec3d05390ba'),(135311,40448,'fft_hide_from_listings','0'),(135312,40448,'_fft_hide_from_listings','field_61f1320446ab2'),(135313,40448,'fft_page_format','default'),(135314,40448,'_fft_page_format','field_61ae213f1f218'),(135315,40448,'fft_hide_nav','0'),(135316,40448,'_fft_hide_nav','field_635bd5e43527c'),(135317,40448,'fft_hide_header_call_to_action','0'),(135318,40448,'_fft_hide_header_call_to_action','field_635bd6723527d'),(135319,40448,'fft_page_sitemap','0'),(135320,40448,'_fft_page_sitemap','field_61af9b34e8181'),(135321,40448,'blocks_0_acfe_flexible_toggle',''),(135322,40448,'_blocks_0_acfe_flexible_toggle','field_layout_619e68cae6262_toggle'),(135323,40448,'blocks_0_acfe_flexible_layout_title','Map'),(135324,40448,'_blocks_0_acfe_flexible_layout_title','field_layout_619e68cae6262_title'),(135325,40448,'blocks_0_row_content_title',''),(135326,40448,'_blocks_0_row_content_title','field_619f5bb09cb8e'),(135327,40448,'blocks_0_row_content_heading','Find a Biomechanics Coach'),(135328,40448,'_blocks_0_row_content_heading','field_619f5bb09cb8f'),(135329,40448,'blocks_0_row_content_text',''),(135330,40448,'_blocks_0_row_content_text','field_619f5bb09cb90'),(135331,40448,'blocks_0_row_content_actions',''),(135332,40448,'_blocks_0_row_content_actions','field_619f5bb09cb91'),(135333,40448,'blocks_0_row_content',''),(135334,40448,'_blocks_0_row_content','field_619f5baf9cb8d'),(135335,40448,'blocks_0_map_location','a:12:{s:7:\"address\";s:108:\"Carnac Cottage, Cams Hall Estate, Cams Hall, Carnac Court, Cams Hall Estate, Fareham, Hampshire PO16 8UB, UK\";s:3:\"lat\";d:50.84829879999999;s:3:\"lng\";d:-1.1679301;s:4:\"zoom\";i:2;s:8:\"place_id\";s:27:\"ChIJsxIEsIVodEgRnRE6garbJXQ\";s:4:\"name\";s:14:\"Carnac Cottage\";s:11:\"street_name\";s:9:\"Cams Hall\";s:4:\"city\";s:7:\"Fareham\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"PO16 8UB\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(135336,40448,'_blocks_0_map_location','field_619f5bca9cb93'),(135337,40448,'blocks_1_acfe_flexible_toggle',''),(135338,40448,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(135339,40448,'blocks_1_acfe_flexible_layout_title','Text Block'),(135340,40448,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(135341,40448,'blocks_1_options_theme','#ffffff'),(135342,40448,'_blocks_1_options_theme','field_6176830e2ad17'),(135343,40448,'blocks_1_options',''),(135344,40448,'_blocks_1_options','field_6176830e2ad16'),(135345,40448,'blocks_1_text_block_heading','Can’t find what you’re looking for?'),(135346,40448,'_blocks_1_text_block_heading','field_617669d413097'),(135347,40448,'blocks_1_text_block_content','Get in touch with us at:\r\n\r\nrachel@biomechanicseducation.com\r\n\r\nor call on 020 3841 6151.'),(135348,40448,'_blocks_1_text_block_content','field_617669ec13098'),(135349,40448,'blocks','a:2:{i:0;s:3:\"map\";i:1;s:10:\"text_block\";}'),(135350,40448,'_blocks','field_6176696113096'),(135351,40448,'_thumbnail_id','40447'),(135352,40448,'__thumbnail_id','field_617570855ddaf'),(135353,40449,'hide_hero','0'),(135354,40449,'_hide_hero','field_66a2380fcda39'),(135355,40449,'hero_title','Find a Biomechanics Coach in Your Area'),(135356,40449,'_hero_title','field_617571fe285e8'),(135357,40449,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(135358,40449,'_hero_text','field_6175723c285e9'),(135359,40449,'hero_actions',''),(135360,40449,'_hero_actions','field_61757270285ea'),(135361,40449,'hero_style','default'),(135362,40449,'_hero_style','field_62051d9dc5324'),(135363,40449,'hero_image_pos_x','right'),(135364,40449,'_hero_image_pos_x','field_62ec3d05390bb'),(135365,40449,'hero_image_pos_y','top'),(135366,40449,'_hero_image_pos_y','field_62ec3d05390bc'),(135367,40449,'hero_image_pos',''),(135368,40449,'_hero_image_pos','field_62ec3d05390ba'),(135369,40449,'fft_hide_from_listings','0'),(135370,40449,'_fft_hide_from_listings','field_61f1320446ab2'),(135371,40449,'fft_page_format','default'),(135372,40449,'_fft_page_format','field_61ae213f1f218'),(135373,40449,'fft_hide_nav','0'),(135374,40449,'_fft_hide_nav','field_635bd5e43527c'),(135375,40449,'fft_hide_header_call_to_action','0'),(135376,40449,'_fft_hide_header_call_to_action','field_635bd6723527d'),(135377,40449,'fft_page_sitemap','0'),(135378,40449,'_fft_page_sitemap','field_61af9b34e8181'),(135379,40449,'blocks_0_acfe_flexible_toggle',''),(135380,40449,'_blocks_0_acfe_flexible_toggle','field_layout_619e68cae6262_toggle'),(135381,40449,'blocks_0_acfe_flexible_layout_title','Map'),(135382,40449,'_blocks_0_acfe_flexible_layout_title','field_layout_619e68cae6262_title'),(135383,40449,'blocks_0_row_content_title',''),(135384,40449,'_blocks_0_row_content_title','field_619f5bb09cb8e'),(135385,40449,'blocks_0_row_content_heading','Find a Biomechanics Coach'),(135386,40449,'_blocks_0_row_content_heading','field_619f5bb09cb8f'),(135387,40449,'blocks_0_row_content_text',''),(135388,40449,'_blocks_0_row_content_text','field_619f5bb09cb90'),(135389,40449,'blocks_0_row_content_actions',''),(135390,40449,'_blocks_0_row_content_actions','field_619f5bb09cb91'),(135391,40449,'blocks_0_row_content',''),(135392,40449,'_blocks_0_row_content','field_619f5baf9cb8d'),(135393,40449,'blocks_0_map_location','a:12:{s:7:\"address\";s:108:\"Carnac Cottage, Cams Hall Estate, Cams Hall, Carnac Court, Cams Hall Estate, Fareham, Hampshire PO16 8UB, UK\";s:3:\"lat\";d:50.84829879999999;s:3:\"lng\";d:-1.1679301;s:4:\"zoom\";i:2;s:8:\"place_id\";s:27:\"ChIJsxIEsIVodEgRnRE6garbJXQ\";s:4:\"name\";s:14:\"Carnac Cottage\";s:11:\"street_name\";s:9:\"Cams Hall\";s:4:\"city\";s:7:\"Fareham\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"PO16 8UB\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(135394,40449,'_blocks_0_map_location','field_619f5bca9cb93'),(135395,40449,'blocks_1_acfe_flexible_toggle',''),(135396,40449,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(135397,40449,'blocks_1_acfe_flexible_layout_title','Text Block'),(135398,40449,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(135399,40449,'blocks_1_options_theme','#ffffff'),(135400,40449,'_blocks_1_options_theme','field_6176830e2ad17'),(135401,40449,'blocks_1_options',''),(135402,40449,'_blocks_1_options','field_6176830e2ad16'),(135403,40449,'blocks_1_text_block_heading','Can’t Find What You’re looking for?'),(135404,40449,'_blocks_1_text_block_heading','field_617669d413097'),(135405,40449,'blocks_1_text_block_content','Get in touch with us at:\r\n\r\nrachel@biomechanicseducation.com\r\n\r\nor call on 020 3841 6151.'),(135406,40449,'_blocks_1_text_block_content','field_617669ec13098'),(135407,40449,'blocks','a:2:{i:0;s:3:\"map\";i:1;s:10:\"text_block\";}'),(135408,40449,'_blocks','field_6176696113096'),(135409,40449,'_thumbnail_id','40447'),(135410,40449,'__thumbnail_id','field_617570855ddaf'),(135411,40450,'hide_hero','0'),(135412,40450,'_hide_hero','field_66a2380fcda39'),(135413,40450,'hero_title','Find a Biomechanics Coach in Your Area'),(135414,40450,'_hero_title','field_617571fe285e8'),(135415,40450,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(135416,40450,'_hero_text','field_6175723c285e9'),(135417,40450,'hero_actions',''),(135418,40450,'_hero_actions','field_61757270285ea'),(135419,40450,'hero_style','default'),(135420,40450,'_hero_style','field_62051d9dc5324'),(135421,40450,'hero_image_pos_x','right'),(135422,40450,'_hero_image_pos_x','field_62ec3d05390bb'),(135423,40450,'hero_image_pos_y','top'),(135424,40450,'_hero_image_pos_y','field_62ec3d05390bc'),(135425,40450,'hero_image_pos',''),(135426,40450,'_hero_image_pos','field_62ec3d05390ba'),(135427,40450,'fft_hide_from_listings','0'),(135428,40450,'_fft_hide_from_listings','field_61f1320446ab2'),(135429,40450,'fft_page_format','default'),(135430,40450,'_fft_page_format','field_61ae213f1f218'),(135431,40450,'fft_hide_nav','0'),(135432,40450,'_fft_hide_nav','field_635bd5e43527c'),(135433,40450,'fft_hide_header_call_to_action','0'),(135434,40450,'_fft_hide_header_call_to_action','field_635bd6723527d'),(135435,40450,'fft_page_sitemap','0'),(135436,40450,'_fft_page_sitemap','field_61af9b34e8181'),(135437,40450,'blocks_0_acfe_flexible_toggle',''),(135438,40450,'_blocks_0_acfe_flexible_toggle','field_layout_619e68cae6262_toggle'),(135439,40450,'blocks_0_acfe_flexible_layout_title','Map'),(135440,40450,'_blocks_0_acfe_flexible_layout_title','field_layout_619e68cae6262_title'),(135441,40450,'blocks_0_row_content_title',''),(135442,40450,'_blocks_0_row_content_title','field_619f5bb09cb8e'),(135443,40450,'blocks_0_row_content_heading','Find a Biomechanics Coach'),(135444,40450,'_blocks_0_row_content_heading','field_619f5bb09cb8f'),(135445,40450,'blocks_0_row_content_text',''),(135446,40450,'_blocks_0_row_content_text','field_619f5bb09cb90'),(135447,40450,'blocks_0_row_content_actions',''),(135448,40450,'_blocks_0_row_content_actions','field_619f5bb09cb91'),(135449,40450,'blocks_0_row_content',''),(135450,40450,'_blocks_0_row_content','field_619f5baf9cb8d'),(135451,40450,'blocks_0_map_location','a:12:{s:7:\"address\";s:108:\"Carnac Cottage, Cams Hall Estate, Cams Hall, Carnac Court, Cams Hall Estate, Fareham, Hampshire PO16 8UB, UK\";s:3:\"lat\";d:50.84829879999999;s:3:\"lng\";d:-1.1679301;s:4:\"zoom\";i:2;s:8:\"place_id\";s:27:\"ChIJsxIEsIVodEgRnRE6garbJXQ\";s:4:\"name\";s:14:\"Carnac Cottage\";s:11:\"street_name\";s:9:\"Cams Hall\";s:4:\"city\";s:7:\"Fareham\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"PO16 8UB\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(135452,40450,'_blocks_0_map_location','field_619f5bca9cb93'),(135453,40450,'blocks_1_acfe_flexible_toggle',''),(135454,40450,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(135455,40450,'blocks_1_acfe_flexible_layout_title','Text Block'),(135456,40450,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(135457,40450,'blocks_1_options_theme','#ffffff'),(135458,40450,'_blocks_1_options_theme','field_6176830e2ad17'),(135459,40450,'blocks_1_options',''),(135460,40450,'_blocks_1_options','field_6176830e2ad16'),(135461,40450,'blocks_1_text_block_heading','Can’t Find What You’re looking for?'),(135462,40450,'_blocks_1_text_block_heading','field_617669d413097'),(135463,40450,'blocks_1_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(135464,40450,'_blocks_1_text_block_content','field_617669ec13098'),(135465,40450,'blocks','a:2:{i:0;s:3:\"map\";i:1;s:10:\"text_block\";}'),(135466,40450,'_blocks','field_6176696113096'),(135467,40450,'_thumbnail_id','40447'),(135468,40450,'__thumbnail_id','field_617570855ddaf'),(135471,40452,'hide_hero','0'),(135472,40452,'_hide_hero','field_66a2380fcda39'),(135473,40452,'hero_title','Price Guide'),(135474,40452,'_hero_title','field_617571fe285e8'),(135475,40452,'hero_text','Enquire Now !'),(135476,40452,'_hero_text','field_6175723c285e9'),(135477,40452,'hero_actions',''),(135478,40452,'_hero_actions','field_61757270285ea'),(135479,40452,'hero_style','default'),(135480,40452,'_hero_style','field_62051d9dc5324'),(135481,40452,'hero_image_pos_x','right'),(135482,40452,'_hero_image_pos_x','field_62ec3d05390bb'),(135483,40452,'hero_image_pos_y','top'),(135484,40452,'_hero_image_pos_y','field_62ec3d05390bc'),(135485,40452,'hero_image_pos',''),(135486,40452,'_hero_image_pos','field_62ec3d05390ba'),(135487,40452,'fft_hide_from_listings','0'),(135488,40452,'_fft_hide_from_listings','field_61f1320446ab2'),(135489,40452,'fft_page_format','default'),(135490,40452,'_fft_page_format','field_61ae213f1f218'),(135491,40452,'fft_hide_nav','0'),(135492,40452,'_fft_hide_nav','field_635bd5e43527c'),(135493,40452,'fft_hide_header_call_to_action','0'),(135494,40452,'_fft_hide_header_call_to_action','field_635bd6723527d'),(135495,40452,'fft_page_sitemap','0'),(135496,40452,'_fft_page_sitemap','field_61af9b34e8181'),(135497,40452,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:10:\"link_stack\";i:3;s:18:\"testimonial_slider\";}'),(135498,40452,'_blocks','field_6176696113096'),(135499,40452,'blocks_2_acfe_flexible_toggle',''),(135500,40452,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(135501,40452,'blocks_2_acfe_flexible_layout_title','Link Stack'),(135502,40452,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(135503,40452,'blocks_2_options_theme','#ffffff'),(135504,40452,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(135505,40452,'blocks_2_options',''),(135506,40452,'_blocks_2_options','field_6177b758246ae'),(135507,40452,'blocks_2_link_stack_content_title',''),(135508,40452,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(135509,40452,'blocks_2_link_stack_content_heading','Discover our expertise'),(135510,40452,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(135511,40452,'blocks_2_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(135512,40452,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(135513,40452,'blocks_2_link_stack_content_actions',''),(135514,40452,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(135515,40452,'blocks_2_link_stack_content',''),(135516,40452,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(135517,40452,'blocks_2_link_stack_0_label','Personal Training'),(135518,40452,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(135519,40452,'blocks_2_link_stack_0_title','Discover Biomechanics in Personal Training'),(135520,40452,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(135521,40452,'blocks_2_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(135522,40452,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(135523,40452,'blocks_2_link_stack_1_label','Pilates'),(135524,40452,'_blocks_2_link_stack_1_label','field_6177b80900d00'),(135525,40452,'blocks_2_link_stack_1_title','Discover Biomechanics in Pilates'),(135526,40452,'_blocks_2_link_stack_1_title','field_6177b80f00d01'),(135527,40452,'blocks_2_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(135528,40452,'_blocks_2_link_stack_1_url','field_6177b82200d02'),(135529,40452,'blocks_2_link_stack','6'),(135530,40452,'_blocks_2_link_stack','field_6177b7f600cff'),(135531,40452,'blocks_2_link_stack_2_label','Sports Coaches'),(135532,40452,'_blocks_2_link_stack_2_label','field_6177b80900d00'),(135533,40452,'blocks_2_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(135534,40452,'_blocks_2_link_stack_2_title','field_6177b80f00d01'),(135535,40452,'blocks_2_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(135536,40452,'_blocks_2_link_stack_2_url','field_6177b82200d02'),(135537,40452,'blocks_2_link_stack_3_label','SMT'),(135538,40452,'_blocks_2_link_stack_3_label','field_6177b80900d00'),(135539,40452,'blocks_2_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(135540,40452,'_blocks_2_link_stack_3_title','field_6177b80f00d01'),(135541,40452,'blocks_2_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(135542,40452,'_blocks_2_link_stack_3_url','field_6177b82200d02'),(135543,40452,'blocks_2_link_stack_4_label','Podiatrists'),(135544,40452,'_blocks_2_link_stack_4_label','field_6177b80900d00'),(135545,40452,'blocks_2_link_stack_4_title','Discover Biomechanics in Podiatry'),(135546,40452,'_blocks_2_link_stack_4_title','field_6177b80f00d01'),(135547,40452,'blocks_2_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(135548,40452,'_blocks_2_link_stack_4_url','field_6177b82200d02'),(135549,40452,'blocks_2_link_stack_5_label','Biomechanics Coach'),(135550,40452,'_blocks_2_link_stack_5_label','field_6177b80900d00'),(135551,40452,'blocks_2_link_stack_5_title','How to Become a Biomechanics Coach'),(135552,40452,'_blocks_2_link_stack_5_title','field_6177b80f00d01'),(135553,40452,'blocks_2_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(135554,40452,'_blocks_2_link_stack_5_url','field_6177b82200d02'),(135555,40452,'blocks_3_acfe_flexible_toggle',''),(135556,40452,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(135557,40452,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(135558,40452,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(135559,40452,'blocks_3_testimonial_slider_content_title',''),(135560,40452,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(135561,40452,'blocks_3_testimonial_slider_content_heading','Testimonials'),(135562,40452,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(135563,40452,'blocks_3_testimonial_slider_content_text',''),(135564,40452,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(135565,40452,'blocks_3_testimonial_slider_content_actions',''),(135566,40452,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(135567,40452,'blocks_3_testimonial_slider_content',''),(135568,40452,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(135569,40452,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(135570,40452,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(135571,40452,'blocks_3_testimonial_slider_ambassador_bool','0'),(135572,40452,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(135573,40452,'blocks_0_acfe_flexible_toggle',''),(135574,40452,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(135575,40452,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(135576,40452,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(135577,40452,'blocks_0_options_theme','#ffffff'),(135578,40452,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(135579,40452,'blocks_0_options_reverse','0'),(135580,40452,'_blocks_0_options_reverse','field_61768049bb8ac'),(135581,40452,'blocks_0_options',''),(135582,40452,'_blocks_0_options','field_617682517c334'),(135583,40452,'blocks_0_split_5050_image','39271'),(135584,40452,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(135585,40452,'blocks_0_split_5050_video',''),(135586,40452,'_blocks_0_split_5050_video','field_6239f3160848a'),(135587,40452,'blocks_0_split_5050_content_title',''),(135588,40452,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(135589,40452,'blocks_0_split_5050_content_heading','What\'s included in this guide? '),(135590,40452,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(135591,40452,'blocks_0_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(135592,40452,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(135593,40452,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(135594,40452,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(135595,40452,'blocks_0_split_5050_content_actions','1'),(135596,40452,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(135597,40452,'blocks_0_split_5050_content',''),(135598,40452,'_blocks_0_split_5050_content','field_61767afceb8ba'),(135599,40452,'blocks_1_acfe_flexible_toggle',''),(135600,40452,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(135601,40452,'blocks_1_acfe_flexible_layout_title','Form'),(135602,40452,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(135603,40452,'blocks_1_row_content_format','standard'),(135604,40452,'_blocks_1_row_content_format','field_6481ead962881'),(135605,40452,'blocks_1_row_content_title','Enquire Now'),(135606,40452,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(135607,40452,'blocks_1_row_content_heading','Course Information and Price Guide'),(135608,40452,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(135609,40452,'blocks_1_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*</li>\r\n 	<li>Receive exclusive offers</li>\r\n</ul>'),(135610,40452,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(135611,40452,'blocks_1_row_content_actions',''),(135612,40452,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(135613,40452,'blocks_1_row_content',''),(135614,40452,'_blocks_1_row_content','field_61a0f5f5b3db0'),(135615,40452,'blocks_1_row_form',''),(135616,40452,'_blocks_1_row_form','field_61a4ff2c0b08e'),(135617,40452,'blocks_1_row_form_button_label',''),(135618,40452,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(135619,40452,'_thumbnail_id',''),(135620,40452,'__thumbnail_id','field_617570855ddaf'),(135622,40453,'hide_hero','0'),(135623,40453,'_hide_hero','field_66a2380fcda39'),(135624,40453,'hero_title','Price Guide'),(135625,40453,'_hero_title','field_617571fe285e8'),(135626,40453,'hero_text','Enquire Now !'),(135627,40453,'_hero_text','field_6175723c285e9'),(135628,40453,'hero_actions',''),(135629,40453,'_hero_actions','field_61757270285ea'),(135630,40453,'hero_style','default'),(135631,40453,'_hero_style','field_62051d9dc5324'),(135632,40453,'hero_image_pos_x','right'),(135633,40453,'_hero_image_pos_x','field_62ec3d05390bb'),(135634,40453,'hero_image_pos_y','top'),(135635,40453,'_hero_image_pos_y','field_62ec3d05390bc'),(135636,40453,'hero_image_pos',''),(135637,40453,'_hero_image_pos','field_62ec3d05390ba'),(135638,40453,'fft_hide_from_listings','0'),(135639,40453,'_fft_hide_from_listings','field_61f1320446ab2'),(135640,40453,'fft_page_format','default'),(135641,40453,'_fft_page_format','field_61ae213f1f218'),(135642,40453,'fft_hide_nav','0'),(135643,40453,'_fft_hide_nav','field_635bd5e43527c'),(135644,40453,'fft_hide_header_call_to_action','0'),(135645,40453,'_fft_hide_header_call_to_action','field_635bd6723527d'),(135646,40453,'fft_page_sitemap','0'),(135647,40453,'_fft_page_sitemap','field_61af9b34e8181'),(135648,40453,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:10:\"link_stack\";i:3;s:18:\"testimonial_slider\";}'),(135649,40453,'_blocks','field_6176696113096'),(135650,40453,'blocks_2_acfe_flexible_toggle',''),(135651,40453,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(135652,40453,'blocks_2_acfe_flexible_layout_title','Link Stack'),(135653,40453,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(135654,40453,'blocks_2_options_theme','#ffffff'),(135655,40453,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(135656,40453,'blocks_2_options',''),(135657,40453,'_blocks_2_options','field_6177b758246ae'),(135658,40453,'blocks_2_link_stack_content_title',''),(135659,40453,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(135660,40453,'blocks_2_link_stack_content_heading','Discover our expertise'),(135661,40453,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(135662,40453,'blocks_2_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(135663,40453,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(135664,40453,'blocks_2_link_stack_content_actions',''),(135665,40453,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(135666,40453,'blocks_2_link_stack_content',''),(135667,40453,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(135668,40453,'blocks_2_link_stack_0_label','Personal Training'),(135669,40453,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(135670,40453,'blocks_2_link_stack_0_title','Discover Biomechanics in Personal Training'),(135671,40453,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(135672,40453,'blocks_2_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(135673,40453,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(135674,40453,'blocks_2_link_stack_1_label','Pilates'),(135675,40453,'_blocks_2_link_stack_1_label','field_6177b80900d00'),(135676,40453,'blocks_2_link_stack_1_title','Discover Biomechanics in Pilates'),(135677,40453,'_blocks_2_link_stack_1_title','field_6177b80f00d01'),(135678,40453,'blocks_2_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(135679,40453,'_blocks_2_link_stack_1_url','field_6177b82200d02'),(135680,40453,'blocks_2_link_stack','6'),(135681,40453,'_blocks_2_link_stack','field_6177b7f600cff'),(135682,40453,'blocks_2_link_stack_2_label','Sports Coaches'),(135683,40453,'_blocks_2_link_stack_2_label','field_6177b80900d00'),(135684,40453,'blocks_2_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(135685,40453,'_blocks_2_link_stack_2_title','field_6177b80f00d01'),(135686,40453,'blocks_2_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(135687,40453,'_blocks_2_link_stack_2_url','field_6177b82200d02'),(135688,40453,'blocks_2_link_stack_3_label','SMT'),(135689,40453,'_blocks_2_link_stack_3_label','field_6177b80900d00'),(135690,40453,'blocks_2_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(135691,40453,'_blocks_2_link_stack_3_title','field_6177b80f00d01'),(135692,40453,'blocks_2_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(135693,40453,'_blocks_2_link_stack_3_url','field_6177b82200d02'),(135694,40453,'blocks_2_link_stack_4_label','Podiatrists'),(135695,40453,'_blocks_2_link_stack_4_label','field_6177b80900d00'),(135696,40453,'blocks_2_link_stack_4_title','Discover Biomechanics in Podiatry'),(135697,40453,'_blocks_2_link_stack_4_title','field_6177b80f00d01'),(135698,40453,'blocks_2_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(135699,40453,'_blocks_2_link_stack_4_url','field_6177b82200d02'),(135700,40453,'blocks_2_link_stack_5_label','Biomechanics Coach'),(135701,40453,'_blocks_2_link_stack_5_label','field_6177b80900d00'),(135702,40453,'blocks_2_link_stack_5_title','How to Become a Biomechanics Coach'),(135703,40453,'_blocks_2_link_stack_5_title','field_6177b80f00d01'),(135704,40453,'blocks_2_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(135705,40453,'_blocks_2_link_stack_5_url','field_6177b82200d02'),(135706,40453,'blocks_3_acfe_flexible_toggle',''),(135707,40453,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(135708,40453,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(135709,40453,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(135710,40453,'blocks_3_testimonial_slider_content_title',''),(135711,40453,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(135712,40453,'blocks_3_testimonial_slider_content_heading','Testimonials'),(135713,40453,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(135714,40453,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(135715,40453,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(135716,40453,'blocks_3_testimonial_slider_content_actions',''),(135717,40453,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(135718,40453,'blocks_3_testimonial_slider_content',''),(135719,40453,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(135720,40453,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(135721,40453,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(135722,40453,'blocks_3_testimonial_slider_ambassador_bool','0'),(135723,40453,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(135724,40453,'blocks_0_acfe_flexible_toggle',''),(135725,40453,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(135726,40453,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(135727,40453,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(135728,40453,'blocks_0_options_theme','#ffffff'),(135729,40453,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(135730,40453,'blocks_0_options_reverse','0'),(135731,40453,'_blocks_0_options_reverse','field_61768049bb8ac'),(135732,40453,'blocks_0_options',''),(135733,40453,'_blocks_0_options','field_617682517c334'),(135734,40453,'blocks_0_split_5050_image','39271'),(135735,40453,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(135736,40453,'blocks_0_split_5050_video',''),(135737,40453,'_blocks_0_split_5050_video','field_6239f3160848a'),(135738,40453,'blocks_0_split_5050_content_title',''),(135739,40453,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(135740,40453,'blocks_0_split_5050_content_heading','What\'s included in this guide? '),(135741,40453,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(135742,40453,'blocks_0_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(135743,40453,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(135744,40453,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(135745,40453,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(135746,40453,'blocks_0_split_5050_content_actions','1'),(135747,40453,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(135748,40453,'blocks_0_split_5050_content',''),(135749,40453,'_blocks_0_split_5050_content','field_61767afceb8ba'),(135750,40453,'blocks_1_acfe_flexible_toggle',''),(135751,40453,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(135752,40453,'blocks_1_acfe_flexible_layout_title','Form'),(135753,40453,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(135754,40453,'blocks_1_row_content_format','standard'),(135755,40453,'_blocks_1_row_content_format','field_6481ead962881'),(135756,40453,'blocks_1_row_content_title','Enquire Now'),(135757,40453,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(135758,40453,'blocks_1_row_content_heading','Course Information and Price Guide'),(135759,40453,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(135760,40453,'blocks_1_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(135761,40453,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(135762,40453,'blocks_1_row_content_actions',''),(135763,40453,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(135764,40453,'blocks_1_row_content',''),(135765,40453,'_blocks_1_row_content','field_61a0f5f5b3db0'),(135766,40453,'blocks_1_row_form',''),(135767,40453,'_blocks_1_row_form','field_61a4ff2c0b08e'),(135768,40453,'blocks_1_row_form_button_label',''),(135769,40453,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(135770,40453,'_thumbnail_id',''),(135771,40453,'__thumbnail_id','field_617570855ddaf'),(135773,39172,'blocks_0_acfe_flexible_toggle',''),(135774,39172,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(135775,39172,'blocks_0_acfe_flexible_layout_title','Text Block'),(135776,39172,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(135777,39172,'blocks_0_options_theme','#f5f5f5'),(135778,39172,'_blocks_0_options_theme','field_6176830e2ad17'),(135779,39172,'blocks_0_options',''),(135780,39172,'_blocks_0_options','field_6176830e2ad16'),(135781,39172,'blocks_0_text_block_heading','Who is Biomechanics Education?'),(135782,39172,'_blocks_0_text_block_heading','field_617669d413097'),(135783,39172,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in the education of intrinsic biomechanics.'),(135784,39172,'_blocks_0_text_block_content','field_617669ec13098'),(135955,40454,'hero_style','default'),(135956,40454,'_hero_style','field_62051d9dc5324'),(135957,40454,'hero_image_pos_x','right'),(135958,40454,'_hero_image_pos_x','field_62ec3d05390bb'),(135959,40454,'hero_image_pos_y','top'),(135960,40454,'_hero_image_pos_y','field_62ec3d05390bc'),(135961,40454,'hero_image_pos',''),(135962,40454,'_hero_image_pos','field_62ec3d05390ba'),(135963,40454,'hero_title','About Us'),(135964,40454,'_hero_title','field_617571fe285e8'),(135965,40454,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(135966,40454,'_hero_text','field_6175723c285e9'),(135967,40454,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(135968,40454,'_hero_actions_0_button','field_61757281285eb'),(135969,40454,'hero_actions','1'),(135970,40454,'_hero_actions','field_61757270285ea'),(135971,40454,'hero_icon',''),(135972,40454,'_hero_icon','field_61a6182199d03'),(135973,40454,'fft_hide_from_listings','0'),(135974,40454,'_fft_hide_from_listings','field_61f1320446ab2'),(135975,40454,'fft_page_format','default'),(135976,40454,'_fft_page_format','field_61ae213f1f218'),(135977,40454,'fft_hide_nav','0'),(135978,40454,'_fft_hide_nav','field_635bd5e43527c'),(135979,40454,'fft_hide_header_call_to_action','0'),(135980,40454,'_fft_hide_header_call_to_action','field_635bd6723527d'),(135981,40454,'fft_page_sitemap','0'),(135982,40454,'_fft_page_sitemap','field_61af9b34e8181'),(135983,40454,'blocks','a:8:{i:0;s:10:\"text_block\";i:1;s:16:\"standard_content\";i:2;s:10:\"split_5050\";i:3;s:5:\"video\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";}'),(135984,40454,'_blocks','field_6176696113096'),(135985,40454,'_thumbnail_id','40408'),(135986,40454,'__thumbnail_id','field_617570855ddaf'),(135987,40454,'hide_hero','0'),(135988,40454,'_hide_hero','field_66a2380fcda39'),(135989,40454,'blocks_0_acfe_flexible_toggle',''),(135990,40454,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(135991,40454,'blocks_0_acfe_flexible_layout_title','Text Block'),(135992,40454,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(135993,40454,'blocks_0_options_theme','#f5f5f5'),(135994,40454,'_blocks_0_options_theme','field_6176830e2ad17'),(135995,40454,'blocks_0_options',''),(135996,40454,'_blocks_0_options','field_6176830e2ad16'),(135997,40454,'blocks_0_text_block_heading','Who is Biomechanics Education?'),(135998,40454,'_blocks_0_text_block_heading','field_617669d413097'),(135999,40454,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in the education of intrinsic biomechanics.'),(136000,40454,'_blocks_0_text_block_content','field_617669ec13098'),(136001,40454,'blocks_1_acfe_flexible_toggle','1'),(136002,40454,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(136003,40454,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(136004,40454,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(136005,40454,'blocks_1_content','<h2 style=\"text-align: center;\">Who is Biomechanics Education?</h2>\r\n<p style=\"text-align: center;\">In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in the education of intrinsic biomechanics.</p>'),(136006,40454,'_blocks_1_content','field_6193c9b5eac84'),(136007,40454,'blocks_2_acfe_flexible_toggle',''),(136008,40454,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(136009,40454,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(136010,40454,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(136011,40454,'blocks_2_options_theme','#b61234'),(136012,40454,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(136013,40454,'blocks_2_options_reverse','0'),(136014,40454,'_blocks_2_options_reverse','field_61768049bb8ac'),(136015,40454,'blocks_2_options',''),(136016,40454,'_blocks_2_options','field_617682517c334'),(136017,40454,'blocks_2_split_5050_image','35276'),(136018,40454,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(136019,40454,'blocks_2_split_5050_video',''),(136020,40454,'_blocks_2_split_5050_video','field_6239f3160848a'),(136021,40454,'blocks_2_split_5050_content_title',''),(136022,40454,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(136023,40454,'blocks_2_split_5050_content_heading','What we do'),(136024,40454,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(136025,40454,'blocks_2_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(136026,40454,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(136027,40454,'blocks_2_split_5050_content_actions',''),(136028,40454,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(136029,40454,'blocks_2_split_5050_content',''),(136030,40454,'_blocks_2_split_5050_content','field_61767afceb8ba'),(136031,40454,'blocks_3_acfe_flexible_toggle',''),(136032,40454,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(136033,40454,'blocks_3_acfe_flexible_layout_title','Video'),(136034,40454,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(136035,40454,'blocks_3_size','large'),(136036,40454,'_blocks_3_size','field_6487038f297c1'),(136037,40454,'blocks_3_row_content_title',''),(136038,40454,'_blocks_3_row_content_title','field_64870132a865d'),(136039,40454,'blocks_3_row_content_heading',''),(136040,40454,'_blocks_3_row_content_heading','field_64870142a865e'),(136041,40454,'blocks_3_row_content_text',''),(136042,40454,'_blocks_3_row_content_text','field_64870148a865f'),(136043,40454,'blocks_3_row_content',''),(136044,40454,'_blocks_3_row_content','field_6487008ba865c'),(136045,40454,'blocks_3_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(136046,40454,'_blocks_3_video_src','field_6193c4a98ec07'),(136047,40454,'blocks_3_video_thumbnail','39175'),(136048,40454,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(136049,40454,'blocks_4_acfe_flexible_toggle','1'),(136050,40454,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(136051,40454,'blocks_4_acfe_flexible_layout_title','Cards'),(136052,40454,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(136053,40454,'blocks_4_options_theme','#ffffff'),(136054,40454,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(136055,40454,'blocks_4_options_format','carousel'),(136056,40454,'_blocks_4_options_format','field_617a7b15245b5'),(136057,40454,'blocks_4_options_style','default'),(136058,40454,'_blocks_4_options_style','field_6278ffb63484a'),(136059,40454,'blocks_4_options_cards_current_listing','0'),(136060,40454,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(136061,40454,'blocks_4_options_cards_content','custom'),(136062,40454,'_blocks_4_options_cards_content','field_617aba6122688'),(136063,40454,'blocks_4_options',''),(136064,40454,'_blocks_4_options','field_617a7b15245b3'),(136065,40454,'blocks_4_cards_custom_0_image','39504'),(136066,40454,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(136067,40454,'blocks_4_cards_custom_0_title','Our Partners'),(136068,40454,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(136069,40454,'blocks_4_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(136070,40454,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(136071,40454,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(136072,40454,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(136073,40454,'blocks_4_cards_custom','1'),(136074,40454,'_blocks_4_cards_custom','field_6194cbf84d386'),(136075,40454,'blocks_5_acfe_flexible_toggle',''),(136076,40454,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(136077,40454,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(136078,40454,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(136079,40454,'blocks_5_options_theme','#ffffff'),(136080,40454,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(136081,40454,'blocks_5_options_reverse','0'),(136082,40454,'_blocks_5_options_reverse','field_61768049bb8ac'),(136083,40454,'blocks_5_options',''),(136084,40454,'_blocks_5_options','field_617682517c334'),(136085,40454,'blocks_5_split_5050_image','39501'),(136086,40454,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(136087,40454,'blocks_5_split_5050_video',''),(136088,40454,'_blocks_5_split_5050_video','field_6239f3160848a'),(136089,40454,'blocks_5_split_5050_content_title',''),(136090,40454,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(136091,40454,'blocks_5_split_5050_content_heading','Our Partners'),(136092,40454,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(136093,40454,'blocks_5_split_5050_content_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(136094,40454,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(136095,40454,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"View our Partner Page\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(136096,40454,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(136097,40454,'blocks_5_split_5050_content_actions','1'),(136098,40454,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(136099,40454,'blocks_5_split_5050_content',''),(136100,40454,'_blocks_5_split_5050_content','field_61767afceb8ba'),(136101,40454,'blocks_6_acfe_flexible_toggle',''),(136102,40454,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(136103,40454,'blocks_6_acfe_flexible_layout_title','Text Block'),(136104,40454,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(136105,40454,'blocks_6_options_theme','#ffffff'),(136106,40454,'_blocks_6_options_theme','field_6176830e2ad17'),(136107,40454,'blocks_6_options',''),(136108,40454,'_blocks_6_options','field_6176830e2ad16'),(136109,40454,'blocks_6_text_block_heading','Our Team'),(136110,40454,'_blocks_6_text_block_heading','field_617669d413097'),(136111,40454,'blocks_6_text_block_content',''),(136112,40454,'_blocks_6_text_block_content','field_617669ec13098'),(136113,40454,'blocks_7_acfe_flexible_toggle',''),(136114,40454,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(136115,40454,'blocks_7_acfe_flexible_layout_title','Cards'),(136116,40454,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(136117,40454,'blocks_7_options_theme','#ffffff'),(136118,40454,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(136119,40454,'blocks_7_options_format','carousel'),(136120,40454,'_blocks_7_options_format','field_617a7b15245b5'),(136121,40454,'blocks_7_options_style','default'),(136122,40454,'_blocks_7_options_style','field_6278ffb63484a'),(136123,40454,'blocks_7_options_cards_current_listing','0'),(136124,40454,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(136125,40454,'blocks_7_options_cards_content','custom'),(136126,40454,'_blocks_7_options_cards_content','field_617aba6122688'),(136127,40454,'blocks_7_options',''),(136128,40454,'_blocks_7_options','field_617a7b15245b3'),(136129,40454,'blocks_7_cards_custom_0_image','39353'),(136130,40454,'_blocks_7_cards_custom_0_image','field_6194cc284d387'),(136131,40454,'blocks_7_cards_custom_0_title','Rachel Frances Thomson - Founder'),(136132,40454,'_blocks_7_cards_custom_0_title','field_6194cc454d388'),(136133,40454,'blocks_7_cards_custom_0_text','Rachel’s professional career in the health & fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe & Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor & IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd & so frequently lectures, presents & teaches at events both UK & Internationally about the benefits of the intrinsic biomechanics\' methods.'),(136134,40454,'_blocks_7_cards_custom_0_text','field_6194cc4a4d389'),(136135,40454,'blocks_7_cards_custom_0_link',''),(136136,40454,'_blocks_7_cards_custom_0_link','field_6194cc534d38a'),(136137,40454,'blocks_7_cards_custom_1_image','39366'),(136138,40454,'_blocks_7_cards_custom_1_image','field_6194cc284d387'),(136139,40454,'blocks_7_cards_custom_1_title','Tom Waldron - Master Trainer'),(136140,40454,'_blocks_7_cards_custom_1_title','field_6194cc454d388'),(136141,40454,'blocks_7_cards_custom_1_text','Tom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance & freedom of movement are described by Tom as ‘incredible!’  He has been a Biomechanics Coach™ since Mar 2016 & it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts & it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(136142,40454,'_blocks_7_cards_custom_1_text','field_6194cc4a4d389'),(136143,40454,'blocks_7_cards_custom_1_link',''),(136144,40454,'_blocks_7_cards_custom_1_link','field_6194cc534d38a'),(136145,40454,'blocks_7_cards_custom_2_image','39598'),(136146,40454,'_blocks_7_cards_custom_2_image','field_6194cc284d387'),(136147,40454,'blocks_7_cards_custom_2_title','Kim Tomlin - Master Trainer'),(136148,40454,'_blocks_7_cards_custom_2_title','field_6194cc454d388'),(136149,40454,'blocks_7_cards_custom_2_text','Kim is the owner of Primal Flow, a Personal Trainer, Biomechanics Coach and Master Trainer. Kim has been passionate about exploring movement ever since becoming a Primal Flow Instructor in 2012, now combining her skills to help people to improve their movement quality and capacity, whilst enjoying the freedom of their own individual movement capabilities. As well as teaching the Biomechanics Coaching Diploma (for Biomechanics Education), Kim is a Training Provider Partner with CIMSPA and delivers her own Train the Trainer courses, including the Primal Flow Instructor Course. '),(136150,40454,'_blocks_7_cards_custom_2_text','field_6194cc4a4d389'),(136151,40454,'blocks_7_cards_custom_2_link',''),(136152,40454,'_blocks_7_cards_custom_2_link','field_6194cc534d38a'),(136153,40454,'blocks_7_cards_custom_3_image','39593'),(136154,40454,'_blocks_7_cards_custom_3_image','field_6194cc284d387'),(136155,40454,'blocks_7_cards_custom_3_title','Morgan Hanness - Sales Lead'),(136156,40454,'_blocks_7_cards_custom_3_title','field_6194cc454d388'),(136157,40454,'blocks_7_cards_custom_3_text','Morgan Hanness has a background in personal training, nutrition coaching, and integrative nutrition health coaching, and has always been passionate about helping people achieve their goals. At Biomechanics Education, Morgan also helps others develop their careers in the health and fitness industry, enabling them to assist even more people. Living with Hypermobility Syndrome, Morgan deeply understands the value of proper movement, which aligns perfectly with Biomechanics Education’s core values. Morgan is passionate about sports, especially snowboarding, surfing, rock climbing, and other outdoor activities, and is grateful for pain-free movement. '),(136158,40454,'_blocks_7_cards_custom_3_text','field_6194cc4a4d389'),(136159,40454,'blocks_7_cards_custom_3_link',''),(136160,40454,'_blocks_7_cards_custom_3_link','field_6194cc534d38a'),(136161,40454,'blocks_7_cards_custom_4_image','40406'),(136162,40454,'_blocks_7_cards_custom_4_image','field_6194cc284d387'),(136163,40454,'blocks_7_cards_custom_4_title','Fiona Jones - Assessor '),(136164,40454,'_blocks_7_cards_custom_4_title','field_6194cc454d388'),(136165,40454,'blocks_7_cards_custom_4_text','Fiona began her career in the fitness industry in 2006 as a Gym and Group Exercise Instructor and Personal Trainer. In 2010, she transitioned to assessing Fitness Apprenticeships, expanding her expertise in the field. After experiencing the transformative effects of a coaching programme firsthand, Fiona pursued a Low Back Specialist Biomechanics Diploma and a qualification in Remedial Massage. Since then, she has successfully combined her role as an assessor with maintaining her own client base in the UK and overseas, including on Ascension Island and in the United States. \r\n\r\nWhile abroad, Fiona joined the team as a course advisor and became an integral part of the support team. Upon returning to the UK during the 2020 lockdown, she continued her work, assessing for Biomechanics Education both inside and outside the classroom. Fiona is passionate about guiding people through their journeys of discovery, helping them achieve their fitness and health goals with confidence and understanding. '),(136166,40454,'_blocks_7_cards_custom_4_text','field_6194cc4a4d389'),(136167,40454,'blocks_7_cards_custom_4_link',''),(136168,40454,'_blocks_7_cards_custom_4_link','field_6194cc534d38a'),(136169,40454,'blocks_7_cards_custom','5'),(136170,40454,'_blocks_7_cards_custom','field_6194cbf84d386'),(136171,39172,'blocks_1_acfe_flexible_toggle',''),(136172,39172,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(136173,39172,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(136174,39172,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(136175,39172,'blocks_1_options_theme','#b61234'),(136176,39172,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(136177,39172,'blocks_1_options_reverse','0'),(136178,39172,'_blocks_1_options_reverse','field_61768049bb8ac'),(136179,39172,'blocks_1_options',''),(136180,39172,'_blocks_1_options','field_617682517c334'),(136181,39172,'blocks_1_split_5050_image','35276'),(136182,39172,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(136183,39172,'blocks_1_split_5050_video',''),(136184,39172,'_blocks_1_split_5050_video','field_6239f3160848a'),(136185,39172,'blocks_1_split_5050_content_title',''),(136186,39172,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(136187,39172,'blocks_1_split_5050_content_heading','What we do'),(136188,39172,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(136189,39172,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(136190,39172,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(136191,39172,'blocks_1_split_5050_content_actions',''),(136192,39172,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(136193,39172,'blocks_1_split_5050_content',''),(136194,39172,'_blocks_1_split_5050_content','field_61767afceb8ba'),(136195,39172,'blocks_2_acfe_flexible_toggle',''),(136196,39172,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(136197,39172,'blocks_2_acfe_flexible_layout_title','Video'),(136198,39172,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(136199,39172,'blocks_2_size','large'),(136200,39172,'_blocks_2_size','field_6487038f297c1'),(136201,39172,'blocks_2_row_content_title',''),(136202,39172,'_blocks_2_row_content_title','field_64870132a865d'),(136203,39172,'blocks_2_row_content_heading',''),(136204,39172,'_blocks_2_row_content_heading','field_64870142a865e'),(136205,39172,'blocks_2_row_content_text',''),(136206,39172,'_blocks_2_row_content_text','field_64870148a865f'),(136207,39172,'blocks_2_row_content',''),(136208,39172,'_blocks_2_row_content','field_6487008ba865c'),(136209,39172,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(136210,39172,'_blocks_2_video_src','field_6193c4a98ec07'),(136211,39172,'blocks_2_video_thumbnail','39175'),(136212,39172,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(136213,39172,'blocks_3_acfe_flexible_toggle','1'),(136214,39172,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(136215,39172,'blocks_3_acfe_flexible_layout_title','Cards'),(136216,39172,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(136217,39172,'blocks_3_options_theme','#ffffff'),(136218,39172,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(136219,39172,'blocks_3_options_format','carousel'),(136220,39172,'_blocks_3_options_format','field_617a7b15245b5'),(136221,39172,'blocks_3_options_style','default'),(136222,39172,'_blocks_3_options_style','field_6278ffb63484a'),(136223,39172,'blocks_3_options_cards_current_listing','0'),(136224,39172,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(136225,39172,'blocks_3_options_cards_content','custom'),(136226,39172,'_blocks_3_options_cards_content','field_617aba6122688'),(136227,39172,'blocks_3_options',''),(136228,39172,'_blocks_3_options','field_617a7b15245b3'),(136229,39172,'blocks_3_cards_custom_0_image','39504'),(136230,39172,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(136231,39172,'blocks_3_cards_custom_0_title','Our Partners'),(136232,39172,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(136233,39172,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(136234,39172,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(136235,39172,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(136236,39172,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(136237,39172,'blocks_3_cards_custom','1'),(136238,39172,'_blocks_3_cards_custom','field_6194cbf84d386'),(136239,39172,'blocks_4_acfe_flexible_toggle',''),(136240,39172,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(136241,39172,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(136242,39172,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(136243,39172,'blocks_4_options_theme','#ffffff'),(136244,39172,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(136245,39172,'blocks_4_options_reverse','0'),(136246,39172,'_blocks_4_options_reverse','field_61768049bb8ac'),(136247,39172,'blocks_4_options',''),(136248,39172,'_blocks_4_options','field_617682517c334'),(136249,39172,'blocks_4_split_5050_image','39501'),(136250,39172,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(136251,39172,'blocks_4_split_5050_video',''),(136252,39172,'_blocks_4_split_5050_video','field_6239f3160848a'),(136253,39172,'blocks_4_split_5050_content_title',''),(136254,39172,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(136255,39172,'blocks_4_split_5050_content_heading','Our Partners'),(136256,39172,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(136257,39172,'blocks_4_split_5050_content_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(136258,39172,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(136259,39172,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"View our Partner Page\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(136260,39172,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(136261,39172,'blocks_4_split_5050_content_actions','1'),(136262,39172,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(136263,39172,'blocks_4_split_5050_content',''),(136264,39172,'_blocks_4_split_5050_content','field_61767afceb8ba'),(136265,39172,'blocks_5_acfe_flexible_toggle',''),(136266,39172,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(136267,39172,'blocks_5_acfe_flexible_layout_title','Text Block'),(136268,39172,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(136269,39172,'blocks_5_options_theme','#ffffff'),(136270,39172,'_blocks_5_options_theme','field_6176830e2ad17'),(136271,39172,'blocks_5_options',''),(136272,39172,'_blocks_5_options','field_6176830e2ad16'),(136273,39172,'blocks_5_text_block_heading','Our Team'),(136274,39172,'_blocks_5_text_block_heading','field_617669d413097'),(136275,39172,'blocks_5_text_block_content',''),(136276,39172,'_blocks_5_text_block_content','field_617669ec13098'),(136277,39172,'blocks_6_acfe_flexible_toggle',''),(136278,39172,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(136279,39172,'blocks_6_acfe_flexible_layout_title','Cards'),(136280,39172,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(136281,39172,'blocks_6_options_theme','#ffffff'),(136282,39172,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(136283,39172,'blocks_6_options_format','carousel'),(136284,39172,'_blocks_6_options_format','field_617a7b15245b5'),(136285,39172,'blocks_6_options_style','default'),(136286,39172,'_blocks_6_options_style','field_6278ffb63484a'),(136287,39172,'blocks_6_options_cards_current_listing','0'),(136288,39172,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(136289,39172,'blocks_6_options_cards_content','custom'),(136290,39172,'_blocks_6_options_cards_content','field_617aba6122688'),(136291,39172,'blocks_6_options',''),(136292,39172,'_blocks_6_options','field_617a7b15245b3'),(136293,39172,'blocks_6_cards_custom_0_image','39353'),(136294,39172,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(136295,39172,'blocks_6_cards_custom_0_title','Rachel Frances Thomson - Founder'),(136296,39172,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(136297,39172,'blocks_6_cards_custom_0_text','Rachel’s professional career in the health & fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe & Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor & IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd & so frequently lectures, presents & teaches at events both UK & Internationally about the benefits of the intrinsic biomechanics\' methods.'),(136298,39172,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(136299,39172,'blocks_6_cards_custom_0_link',''),(136300,39172,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(136301,39172,'blocks_6_cards_custom_1_image','39366'),(136302,39172,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(136303,39172,'blocks_6_cards_custom_1_title','Tom Waldron - Master Trainer'),(136304,39172,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(136305,39172,'blocks_6_cards_custom_1_text','Tom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance & freedom of movement are described by Tom as ‘incredible!’  He has been a Biomechanics Coach™ since Mar 2016 & it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts & it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(136306,39172,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(136307,39172,'blocks_6_cards_custom_1_link',''),(136308,39172,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(136309,39172,'blocks_6_cards_custom_2_image','39598'),(136310,39172,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(136311,39172,'blocks_6_cards_custom_2_title','Kim Tomlin - Master Trainer'),(136312,39172,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(136313,39172,'blocks_6_cards_custom_2_text','Kim is the owner of Primal Flow, a Personal Trainer, Biomechanics Coach and Master Trainer. Kim has been passionate about exploring movement ever since becoming a Primal Flow Instructor in 2012, now combining her skills to help people to improve their movement quality and capacity, whilst enjoying the freedom of their own individual movement capabilities. As well as teaching the Biomechanics Coaching Diploma (for Biomechanics Education), Kim is a Training Provider Partner with CIMSPA and delivers her own Train the Trainer courses, including the Primal Flow Instructor Course. '),(136314,39172,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(136315,39172,'blocks_6_cards_custom_2_link',''),(136316,39172,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(136317,39172,'blocks_6_cards_custom_3_image','39593'),(136318,39172,'_blocks_6_cards_custom_3_image','field_6194cc284d387'),(136319,39172,'blocks_6_cards_custom_3_title','Morgan Hanness - Sales Lead'),(136320,39172,'_blocks_6_cards_custom_3_title','field_6194cc454d388'),(136321,39172,'blocks_6_cards_custom_3_text','Morgan Hanness has a background in personal training, nutrition coaching, and integrative nutrition health coaching, and has always been passionate about helping people achieve their goals. At Biomechanics Education, Morgan also helps others develop their careers in the health and fitness industry, enabling them to assist even more people. Living with Hypermobility Syndrome, Morgan deeply understands the value of proper movement, which aligns perfectly with Biomechanics Education’s core values. Morgan is passionate about sports, especially snowboarding, surfing, rock climbing, and other outdoor activities, and is grateful for pain-free movement. '),(136322,39172,'_blocks_6_cards_custom_3_text','field_6194cc4a4d389'),(136323,39172,'blocks_6_cards_custom_3_link',''),(136324,39172,'_blocks_6_cards_custom_3_link','field_6194cc534d38a'),(136325,39172,'blocks_6_cards_custom_4_image','40406'),(136326,39172,'_blocks_6_cards_custom_4_image','field_6194cc284d387'),(136327,39172,'blocks_6_cards_custom_4_title','Fiona Jones - Assessor '),(136328,39172,'_blocks_6_cards_custom_4_title','field_6194cc454d388'),(136329,39172,'blocks_6_cards_custom_4_text','Fiona began her career in the fitness industry in 2006 as a Gym and Group Exercise Instructor and Personal Trainer. In 2010, she transitioned to assessing Fitness Apprenticeships, expanding her expertise in the field. After experiencing the transformative effects of a coaching programme firsthand, Fiona pursued a Low Back Specialist Biomechanics Diploma and a qualification in Remedial Massage. Since then, she has successfully combined her role as an assessor with maintaining her own client base in the UK and overseas, including on Ascension Island and in the United States. \r\n\r\nWhile abroad, Fiona joined the team as a course advisor and became an integral part of the support team. Upon returning to the UK during the 2020 lockdown, she continued her work, assessing for Biomechanics Education both inside and outside the classroom. Fiona is passionate about guiding people through their journeys of discovery, helping them achieve their fitness and health goals with confidence and understanding. '),(136330,39172,'_blocks_6_cards_custom_4_text','field_6194cc4a4d389'),(136331,39172,'blocks_6_cards_custom_4_link',''),(136332,39172,'_blocks_6_cards_custom_4_link','field_6194cc534d38a'),(136333,39172,'blocks_6_cards_custom','6'),(136334,39172,'_blocks_6_cards_custom','field_6194cbf84d386'),(136335,40455,'hero_style','default'),(136336,40455,'_hero_style','field_62051d9dc5324'),(136337,40455,'hero_image_pos_x','right'),(136338,40455,'_hero_image_pos_x','field_62ec3d05390bb'),(136339,40455,'hero_image_pos_y','top'),(136340,40455,'_hero_image_pos_y','field_62ec3d05390bc'),(136341,40455,'hero_image_pos',''),(136342,40455,'_hero_image_pos','field_62ec3d05390ba'),(136343,40455,'hero_title','About Us'),(136344,40455,'_hero_title','field_617571fe285e8'),(136345,40455,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(136346,40455,'_hero_text','field_6175723c285e9'),(136347,40455,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(136348,40455,'_hero_actions_0_button','field_61757281285eb'),(136349,40455,'hero_actions','1'),(136350,40455,'_hero_actions','field_61757270285ea'),(136351,40455,'hero_icon',''),(136352,40455,'_hero_icon','field_61a6182199d03'),(136353,40455,'fft_hide_from_listings','0'),(136354,40455,'_fft_hide_from_listings','field_61f1320446ab2'),(136355,40455,'fft_page_format','default'),(136356,40455,'_fft_page_format','field_61ae213f1f218'),(136357,40455,'fft_hide_nav','0'),(136358,40455,'_fft_hide_nav','field_635bd5e43527c'),(136359,40455,'fft_hide_header_call_to_action','0'),(136360,40455,'_fft_hide_header_call_to_action','field_635bd6723527d'),(136361,40455,'fft_page_sitemap','0'),(136362,40455,'_fft_page_sitemap','field_61af9b34e8181'),(136363,40455,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(136364,40455,'_blocks','field_6176696113096'),(136365,40455,'_thumbnail_id','40408'),(136366,40455,'__thumbnail_id','field_617570855ddaf'),(136367,40455,'hide_hero','0'),(136368,40455,'_hide_hero','field_66a2380fcda39'),(136369,40455,'blocks_0_acfe_flexible_toggle',''),(136370,40455,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(136371,40455,'blocks_0_acfe_flexible_layout_title','Text Block'),(136372,40455,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(136373,40455,'blocks_0_options_theme','#f5f5f5'),(136374,40455,'_blocks_0_options_theme','field_6176830e2ad17'),(136375,40455,'blocks_0_options',''),(136376,40455,'_blocks_0_options','field_6176830e2ad16'),(136377,40455,'blocks_0_text_block_heading','Who is Biomechanics Education?'),(136378,40455,'_blocks_0_text_block_heading','field_617669d413097'),(136379,40455,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in the education of intrinsic biomechanics.'),(136380,40455,'_blocks_0_text_block_content','field_617669ec13098'),(136381,40455,'blocks_1_acfe_flexible_toggle',''),(136382,40455,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(136383,40455,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(136384,40455,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(136385,40455,'blocks_1_options_theme','#b61234'),(136386,40455,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(136387,40455,'blocks_1_options_reverse','0'),(136388,40455,'_blocks_1_options_reverse','field_61768049bb8ac'),(136389,40455,'blocks_1_options',''),(136390,40455,'_blocks_1_options','field_617682517c334'),(136391,40455,'blocks_1_split_5050_image','35276'),(136392,40455,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(136393,40455,'blocks_1_split_5050_video',''),(136394,40455,'_blocks_1_split_5050_video','field_6239f3160848a'),(136395,40455,'blocks_1_split_5050_content_title',''),(136396,40455,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(136397,40455,'blocks_1_split_5050_content_heading','What we do'),(136398,40455,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(136399,40455,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(136400,40455,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(136401,40455,'blocks_1_split_5050_content_actions',''),(136402,40455,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(136403,40455,'blocks_1_split_5050_content',''),(136404,40455,'_blocks_1_split_5050_content','field_61767afceb8ba'),(136405,40455,'blocks_2_acfe_flexible_toggle',''),(136406,40455,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(136407,40455,'blocks_2_acfe_flexible_layout_title','Video'),(136408,40455,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(136409,40455,'blocks_2_size','large'),(136410,40455,'_blocks_2_size','field_6487038f297c1'),(136411,40455,'blocks_2_row_content_title',''),(136412,40455,'_blocks_2_row_content_title','field_64870132a865d'),(136413,40455,'blocks_2_row_content_heading',''),(136414,40455,'_blocks_2_row_content_heading','field_64870142a865e'),(136415,40455,'blocks_2_row_content_text',''),(136416,40455,'_blocks_2_row_content_text','field_64870148a865f'),(136417,40455,'blocks_2_row_content',''),(136418,40455,'_blocks_2_row_content','field_6487008ba865c'),(136419,40455,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(136420,40455,'_blocks_2_video_src','field_6193c4a98ec07'),(136421,40455,'blocks_2_video_thumbnail','39175'),(136422,40455,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(136423,40455,'blocks_3_acfe_flexible_toggle','1'),(136424,40455,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(136425,40455,'blocks_3_acfe_flexible_layout_title','Cards'),(136426,40455,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(136427,40455,'blocks_3_options_theme','#ffffff'),(136428,40455,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(136429,40455,'blocks_3_options_format','carousel'),(136430,40455,'_blocks_3_options_format','field_617a7b15245b5'),(136431,40455,'blocks_3_options_style','default'),(136432,40455,'_blocks_3_options_style','field_6278ffb63484a'),(136433,40455,'blocks_3_options_cards_current_listing','0'),(136434,40455,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(136435,40455,'blocks_3_options_cards_content','custom'),(136436,40455,'_blocks_3_options_cards_content','field_617aba6122688'),(136437,40455,'blocks_3_options',''),(136438,40455,'_blocks_3_options','field_617a7b15245b3'),(136439,40455,'blocks_3_cards_custom_0_image','39504'),(136440,40455,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(136441,40455,'blocks_3_cards_custom_0_title','Our Partners'),(136442,40455,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(136443,40455,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(136444,40455,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(136445,40455,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(136446,40455,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(136447,40455,'blocks_3_cards_custom','1'),(136448,40455,'_blocks_3_cards_custom','field_6194cbf84d386'),(136449,40455,'blocks_4_acfe_flexible_toggle',''),(136450,40455,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(136451,40455,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(136452,40455,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(136453,40455,'blocks_4_options_theme','#ffffff'),(136454,40455,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(136455,40455,'blocks_4_options_reverse','0'),(136456,40455,'_blocks_4_options_reverse','field_61768049bb8ac'),(136457,40455,'blocks_4_options',''),(136458,40455,'_blocks_4_options','field_617682517c334'),(136459,40455,'blocks_4_split_5050_image','39501'),(136460,40455,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(136461,40455,'blocks_4_split_5050_video',''),(136462,40455,'_blocks_4_split_5050_video','field_6239f3160848a'),(136463,40455,'blocks_4_split_5050_content_title',''),(136464,40455,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(136465,40455,'blocks_4_split_5050_content_heading','Our Partners'),(136466,40455,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(136467,40455,'blocks_4_split_5050_content_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(136468,40455,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(136469,40455,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"View our Partner Page\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(136470,40455,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(136471,40455,'blocks_4_split_5050_content_actions','1'),(136472,40455,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(136473,40455,'blocks_4_split_5050_content',''),(136474,40455,'_blocks_4_split_5050_content','field_61767afceb8ba'),(136475,40455,'blocks_5_acfe_flexible_toggle',''),(136476,40455,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(136477,40455,'blocks_5_acfe_flexible_layout_title','Text Block'),(136478,40455,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(136479,40455,'blocks_5_options_theme','#ffffff'),(136480,40455,'_blocks_5_options_theme','field_6176830e2ad17'),(136481,40455,'blocks_5_options',''),(136482,40455,'_blocks_5_options','field_6176830e2ad16'),(136483,40455,'blocks_5_text_block_heading','Our Team'),(136484,40455,'_blocks_5_text_block_heading','field_617669d413097'),(136485,40455,'blocks_5_text_block_content',''),(136486,40455,'_blocks_5_text_block_content','field_617669ec13098'),(136487,40455,'blocks_6_acfe_flexible_toggle',''),(136488,40455,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(136489,40455,'blocks_6_acfe_flexible_layout_title','Cards'),(136490,40455,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(136491,40455,'blocks_6_options_theme','#ffffff'),(136492,40455,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(136493,40455,'blocks_6_options_format','carousel'),(136494,40455,'_blocks_6_options_format','field_617a7b15245b5'),(136495,40455,'blocks_6_options_style','default'),(136496,40455,'_blocks_6_options_style','field_6278ffb63484a'),(136497,40455,'blocks_6_options_cards_current_listing','0'),(136498,40455,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(136499,40455,'blocks_6_options_cards_content','custom'),(136500,40455,'_blocks_6_options_cards_content','field_617aba6122688'),(136501,40455,'blocks_6_options',''),(136502,40455,'_blocks_6_options','field_617a7b15245b3'),(136503,40455,'blocks_6_cards_custom_0_image','39353'),(136504,40455,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(136505,40455,'blocks_6_cards_custom_0_title','Rachel Frances Thomson - Founder'),(136506,40455,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(136507,40455,'blocks_6_cards_custom_0_text','Rachel’s professional career in the health & fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe & Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor & IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd & so frequently lectures, presents & teaches at events both UK & Internationally about the benefits of the intrinsic biomechanics\' methods.'),(136508,40455,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(136509,40455,'blocks_6_cards_custom_0_link',''),(136510,40455,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(136511,40455,'blocks_6_cards_custom_1_image','39366'),(136512,40455,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(136513,40455,'blocks_6_cards_custom_1_title','Tom Waldron - Master Trainer'),(136514,40455,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(136515,40455,'blocks_6_cards_custom_1_text','Tom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance & freedom of movement are described by Tom as ‘incredible!’  He has been a Biomechanics Coach™ since Mar 2016 & it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts & it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(136516,40455,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(136517,40455,'blocks_6_cards_custom_1_link',''),(136518,40455,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(136519,40455,'blocks_6_cards_custom_2_image','39598'),(136520,40455,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(136521,40455,'blocks_6_cards_custom_2_title','Kim Tomlin - Master Trainer'),(136522,40455,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(136523,40455,'blocks_6_cards_custom_2_text','Kim is the owner of Primal Flow, a Personal Trainer, Biomechanics Coach and Master Trainer. Kim has been passionate about exploring movement ever since becoming a Primal Flow Instructor in 2012, now combining her skills to help people to improve their movement quality and capacity, whilst enjoying the freedom of their own individual movement capabilities. As well as teaching the Biomechanics Coaching Diploma (for Biomechanics Education), Kim is a Training Provider Partner with CIMSPA and delivers her own Train the Trainer courses, including the Primal Flow Instructor Course. '),(136524,40455,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(136525,40455,'blocks_6_cards_custom_2_link',''),(136526,40455,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(136527,40455,'blocks_6_cards_custom_3_image','39593'),(136528,40455,'_blocks_6_cards_custom_3_image','field_6194cc284d387'),(136529,40455,'blocks_6_cards_custom_3_title','Morgan Hanness - Sales Lead'),(136530,40455,'_blocks_6_cards_custom_3_title','field_6194cc454d388'),(136531,40455,'blocks_6_cards_custom_3_text','Morgan Hanness has a background in personal training, nutrition coaching, and integrative nutrition health coaching, and has always been passionate about helping people achieve their goals. At Biomechanics Education, Morgan also helps others develop their careers in the health and fitness industry, enabling them to assist even more people. Living with Hypermobility Syndrome, Morgan deeply understands the value of proper movement, which aligns perfectly with Biomechanics Education’s core values. Morgan is passionate about sports, especially snowboarding, surfing, rock climbing, and other outdoor activities, and is grateful for pain-free movement. '),(136532,40455,'_blocks_6_cards_custom_3_text','field_6194cc4a4d389'),(136533,40455,'blocks_6_cards_custom_3_link',''),(136534,40455,'_blocks_6_cards_custom_3_link','field_6194cc534d38a'),(136535,40455,'blocks_6_cards_custom_4_image','40406'),(136536,40455,'_blocks_6_cards_custom_4_image','field_6194cc284d387'),(136537,40455,'blocks_6_cards_custom_4_title','Fiona Jones - Assessor '),(136538,40455,'_blocks_6_cards_custom_4_title','field_6194cc454d388'),(136539,40455,'blocks_6_cards_custom_4_text','Fiona began her career in the fitness industry in 2006 as a Gym and Group Exercise Instructor and Personal Trainer. In 2010, she transitioned to assessing Fitness Apprenticeships, expanding her expertise in the field. After experiencing the transformative effects of a coaching programme firsthand, Fiona pursued a Low Back Specialist Biomechanics Diploma and a qualification in Remedial Massage. Since then, she has successfully combined her role as an assessor with maintaining her own client base in the UK and overseas, including on Ascension Island and in the United States. \r\n\r\nWhile abroad, Fiona joined the team as a course advisor and became an integral part of the support team. Upon returning to the UK during the 2020 lockdown, she continued her work, assessing for Biomechanics Education both inside and outside the classroom. Fiona is passionate about guiding people through their journeys of discovery, helping them achieve their fitness and health goals with confidence and understanding. '),(136540,40455,'_blocks_6_cards_custom_4_text','field_6194cc4a4d389'),(136541,40455,'blocks_6_cards_custom_4_link',''),(136542,40455,'_blocks_6_cards_custom_4_link','field_6194cc534d38a'),(136543,40455,'blocks_6_cards_custom','5'),(136544,40455,'_blocks_6_cards_custom','field_6194cbf84d386'),(136565,40457,'hide_hero','0'),(136566,40457,'_hide_hero','field_66a2380fcda39'),(136567,40457,'fft_hide_from_listings','0'),(136568,40457,'_fft_hide_from_listings','field_61f1320446ab2'),(136569,40457,'fft_page_format','default'),(136570,40457,'_fft_page_format','field_61ae213f1f218'),(136571,40457,'fft_hide_nav','0'),(136572,40457,'_fft_hide_nav','field_635bd5e43527c'),(136573,40457,'fft_hide_header_call_to_action','0'),(136574,40457,'_fft_hide_header_call_to_action','field_635bd6723527d'),(136575,40457,'fft_page_sitemap','0'),(136576,40457,'_fft_page_sitemap','field_61af9b34e8181'),(136577,40457,'blocks_0_acfe_flexible_toggle',''),(136578,40457,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(136579,40457,'blocks_0_acfe_flexible_layout_title','Text Block'),(136580,40457,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(136581,40457,'blocks_0_options_theme','#ffffff'),(136582,40457,'_blocks_0_options_theme','field_6176830e2ad17'),(136583,40457,'blocks_0_options',''),(136584,40457,'_blocks_0_options','field_6176830e2ad16'),(136585,40457,'blocks_0_text_block_heading','Get in Touch'),(136586,40457,'_blocks_0_text_block_heading','field_617669d413097'),(136587,40457,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(136588,40457,'_blocks_0_text_block_content','field_617669ec13098'),(136589,40457,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";}'),(136590,40457,'_blocks','field_6176696113096'),(136591,40457,'hero_title','Contact us'),(136592,40457,'_hero_title','field_617571fe285e8'),(136593,40457,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(136594,40457,'_hero_text','field_6175723c285e9'),(136595,40457,'hero_actions',''),(136596,40457,'_hero_actions','field_61757270285ea'),(136597,40457,'hero_style','default'),(136598,40457,'_hero_style','field_62051d9dc5324'),(136599,40457,'hero_icon','lines'),(136600,40457,'_hero_icon','field_61a6182199d03'),(136601,40457,'_thumbnail_id','40339'),(136602,40457,'__thumbnail_id','field_617570855ddaf'),(136603,40457,'hero_image_pos_x','right'),(136604,40457,'_hero_image_pos_x','field_62ec3d05390bb'),(136605,40457,'hero_image_pos_y','top'),(136606,40457,'_hero_image_pos_y','field_62ec3d05390bc'),(136607,40457,'hero_image_pos',''),(136608,40457,'_hero_image_pos','field_62ec3d05390ba'),(136609,40457,'blocks_1_acfe_flexible_toggle',''),(136610,40457,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(136611,40457,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(136612,40457,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(136613,40457,'blocks_1_options_theme','#ffffff'),(136614,40457,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(136615,40457,'blocks_1_options_reverse','0'),(136616,40457,'_blocks_1_options_reverse','field_61768049bb8ac'),(136617,40457,'blocks_1_options',''),(136618,40457,'_blocks_1_options','field_617682517c334'),(136619,40457,'blocks_1_split_5050_image','40342'),(136620,40457,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(136621,40457,'blocks_1_split_5050_video',''),(136622,40457,'_blocks_1_split_5050_video','field_6239f3160848a'),(136623,40457,'blocks_1_split_5050_content_title',''),(136624,40457,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(136625,40457,'blocks_1_split_5050_content_heading','Let\'s connect!'),(136626,40457,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(136627,40457,'blocks_1_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(136628,40457,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(136629,40457,'blocks_1_split_5050_content_actions',''),(136630,40457,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(136631,40457,'blocks_1_split_5050_content',''),(136632,40457,'_blocks_1_split_5050_content','field_61767afceb8ba'),(136633,40457,'blocks_2_acfe_flexible_toggle',''),(136634,40457,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(136635,40457,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(136636,40457,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(136637,40457,'blocks_2_options_theme','#ffffff'),(136638,40457,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(136639,40457,'blocks_2_options_reverse','1'),(136640,40457,'_blocks_2_options_reverse','field_61768049bb8ac'),(136641,40457,'blocks_2_options',''),(136642,40457,'_blocks_2_options','field_617682517c334'),(136643,40457,'blocks_2_split_5050_image','40349'),(136644,40457,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(136645,40457,'blocks_2_split_5050_video',''),(136646,40457,'_blocks_2_split_5050_video','field_6239f3160848a'),(136647,40457,'blocks_2_split_5050_content_title',''),(136648,40457,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(136649,40457,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(136650,40457,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(136651,40457,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(136652,40457,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(136653,40457,'blocks_2_split_5050_content_actions',''),(136654,40457,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(136655,40457,'blocks_2_split_5050_content',''),(136656,40457,'_blocks_2_split_5050_content','field_61767afceb8ba'),(136657,40457,'blocks_3_acfe_flexible_toggle',''),(136658,40457,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(136659,40457,'blocks_3_acfe_flexible_layout_title','Form'),(136660,40457,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(136661,40457,'blocks_3_row_content_format','standard'),(136662,40457,'_blocks_3_row_content_format','field_6481ead962881'),(136663,40457,'blocks_3_row_content_title',''),(136664,40457,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(136665,40457,'blocks_3_row_content_heading',''),(136666,40457,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(136667,40457,'blocks_3_row_content_text',''),(136668,40457,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(136669,40457,'blocks_3_row_content_actions',''),(136670,40457,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(136671,40457,'blocks_3_row_content',''),(136672,40457,'_blocks_3_row_content','field_61a0f5f5b3db0'),(136673,40457,'blocks_3_row_form','40417'),(136674,40457,'_blocks_3_row_form','field_61a4ff2c0b08e'),(136675,40457,'blocks_3_row_form_button_label',''),(136676,40457,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(136789,40460,'hide_hero','0'),(136790,40460,'_hide_hero','field_66a2380fcda39'),(136791,40460,'fft_hide_from_listings','0'),(136792,40460,'_fft_hide_from_listings','field_61f1320446ab2'),(136793,40460,'fft_page_format','default'),(136794,40460,'_fft_page_format','field_61ae213f1f218'),(136795,40460,'fft_hide_nav','0'),(136796,40460,'_fft_hide_nav','field_635bd5e43527c'),(136797,40460,'fft_hide_header_call_to_action','0'),(136798,40460,'_fft_hide_header_call_to_action','field_635bd6723527d'),(136799,40460,'fft_page_sitemap','0'),(136800,40460,'_fft_page_sitemap','field_61af9b34e8181'),(136801,40460,'blocks_0_acfe_flexible_toggle',''),(136802,40460,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(136803,40460,'blocks_0_acfe_flexible_layout_title','Text Block'),(136804,40460,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(136805,40460,'blocks_0_options_theme','#ffffff'),(136806,40460,'_blocks_0_options_theme','field_6176830e2ad17'),(136807,40460,'blocks_0_options',''),(136808,40460,'_blocks_0_options','field_6176830e2ad16'),(136809,40460,'blocks_0_text_block_heading','Get in Touch'),(136810,40460,'_blocks_0_text_block_heading','field_617669d413097'),(136811,40460,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(136812,40460,'_blocks_0_text_block_content','field_617669ec13098'),(136813,40460,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";}'),(136814,40460,'_blocks','field_6176696113096'),(136815,40460,'hero_title','Contact us'),(136816,40460,'_hero_title','field_617571fe285e8'),(136817,40460,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(136818,40460,'_hero_text','field_6175723c285e9'),(136819,40460,'hero_actions',''),(136820,40460,'_hero_actions','field_61757270285ea'),(136821,40460,'hero_style','default'),(136822,40460,'_hero_style','field_62051d9dc5324'),(136823,40460,'hero_icon','lines'),(136824,40460,'_hero_icon','field_61a6182199d03'),(136825,40460,'_thumbnail_id','40339'),(136826,40460,'__thumbnail_id','field_617570855ddaf'),(136827,40460,'hero_image_pos_x','right'),(136828,40460,'_hero_image_pos_x','field_62ec3d05390bb'),(136829,40460,'hero_image_pos_y','top'),(136830,40460,'_hero_image_pos_y','field_62ec3d05390bc'),(136831,40460,'hero_image_pos',''),(136832,40460,'_hero_image_pos','field_62ec3d05390ba'),(136833,40460,'blocks_1_acfe_flexible_toggle',''),(136834,40460,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(136835,40460,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(136836,40460,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(136837,40460,'blocks_1_options_theme','#ffffff'),(136838,40460,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(136839,40460,'blocks_1_options_reverse','0'),(136840,40460,'_blocks_1_options_reverse','field_61768049bb8ac'),(136841,40460,'blocks_1_options',''),(136842,40460,'_blocks_1_options','field_617682517c334'),(136843,40460,'blocks_1_split_5050_image','40342'),(136844,40460,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(136845,40460,'blocks_1_split_5050_video',''),(136846,40460,'_blocks_1_split_5050_video','field_6239f3160848a'),(136847,40460,'blocks_1_split_5050_content_title',''),(136848,40460,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(136849,40460,'blocks_1_split_5050_content_heading','Let\'s connect!'),(136850,40460,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(136851,40460,'blocks_1_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(136852,40460,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(136853,40460,'blocks_1_split_5050_content_actions',''),(136854,40460,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(136855,40460,'blocks_1_split_5050_content',''),(136856,40460,'_blocks_1_split_5050_content','field_61767afceb8ba'),(136857,40460,'blocks_2_acfe_flexible_toggle',''),(136858,40460,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(136859,40460,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(136860,40460,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(136861,40460,'blocks_2_options_theme','#ffffff'),(136862,40460,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(136863,40460,'blocks_2_options_reverse','1'),(136864,40460,'_blocks_2_options_reverse','field_61768049bb8ac'),(136865,40460,'blocks_2_options',''),(136866,40460,'_blocks_2_options','field_617682517c334'),(136867,40460,'blocks_2_split_5050_image','40349'),(136868,40460,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(136869,40460,'blocks_2_split_5050_video',''),(136870,40460,'_blocks_2_split_5050_video','field_6239f3160848a'),(136871,40460,'blocks_2_split_5050_content_title',''),(136872,40460,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(136873,40460,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(136874,40460,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(136875,40460,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(136876,40460,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(136877,40460,'blocks_2_split_5050_content_actions',''),(136878,40460,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(136879,40460,'blocks_2_split_5050_content',''),(136880,40460,'_blocks_2_split_5050_content','field_61767afceb8ba'),(136881,40460,'blocks_3_acfe_flexible_toggle',''),(136882,40460,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(136883,40460,'blocks_3_acfe_flexible_layout_title','Form'),(136884,40460,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(136885,40460,'blocks_3_row_content_format','standard'),(136886,40460,'_blocks_3_row_content_format','field_6481ead962881'),(136887,40460,'blocks_3_row_content_title',''),(136888,40460,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(136889,40460,'blocks_3_row_content_heading',''),(136890,40460,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(136891,40460,'blocks_3_row_content_text',''),(136892,40460,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(136893,40460,'blocks_3_row_content_actions',''),(136894,40460,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(136895,40460,'blocks_3_row_content',''),(136896,40460,'_blocks_3_row_content','field_61a0f5f5b3db0'),(136897,40460,'blocks_3_row_form','40414'),(136898,40460,'_blocks_3_row_form','field_61a4ff2c0b08e'),(136899,40460,'blocks_3_row_form_button_label',''),(136900,40460,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(137013,40463,'hide_hero','0'),(137014,40463,'_hide_hero','field_66a2380fcda39'),(137015,40463,'fft_hide_from_listings','0'),(137016,40463,'_fft_hide_from_listings','field_61f1320446ab2'),(137017,40463,'fft_page_format','default'),(137018,40463,'_fft_page_format','field_61ae213f1f218'),(137019,40463,'fft_hide_nav','0'),(137020,40463,'_fft_hide_nav','field_635bd5e43527c'),(137021,40463,'fft_hide_header_call_to_action','0'),(137022,40463,'_fft_hide_header_call_to_action','field_635bd6723527d'),(137023,40463,'fft_page_sitemap','0'),(137024,40463,'_fft_page_sitemap','field_61af9b34e8181'),(137025,40463,'blocks_0_acfe_flexible_toggle',''),(137026,40463,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(137027,40463,'blocks_0_acfe_flexible_layout_title','Text Block'),(137028,40463,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(137029,40463,'blocks_0_options_theme','#ffffff'),(137030,40463,'_blocks_0_options_theme','field_6176830e2ad17'),(137031,40463,'blocks_0_options',''),(137032,40463,'_blocks_0_options','field_6176830e2ad16'),(137033,40463,'blocks_0_text_block_heading','Get in Touch'),(137034,40463,'_blocks_0_text_block_heading','field_617669d413097'),(137035,40463,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(137036,40463,'_blocks_0_text_block_content','field_617669ec13098'),(137037,40463,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";}'),(137038,40463,'_blocks','field_6176696113096'),(137039,40463,'hero_title','Contact us'),(137040,40463,'_hero_title','field_617571fe285e8'),(137041,40463,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(137042,40463,'_hero_text','field_6175723c285e9'),(137043,40463,'hero_actions',''),(137044,40463,'_hero_actions','field_61757270285ea'),(137045,40463,'hero_style','default'),(137046,40463,'_hero_style','field_62051d9dc5324'),(137047,40463,'hero_icon','lines'),(137048,40463,'_hero_icon','field_61a6182199d03'),(137049,40463,'_thumbnail_id','40339'),(137050,40463,'__thumbnail_id','field_617570855ddaf'),(137051,40463,'hero_image_pos_x','right'),(137052,40463,'_hero_image_pos_x','field_62ec3d05390bb'),(137053,40463,'hero_image_pos_y','top'),(137054,40463,'_hero_image_pos_y','field_62ec3d05390bc'),(137055,40463,'hero_image_pos',''),(137056,40463,'_hero_image_pos','field_62ec3d05390ba'),(137057,40463,'blocks_1_acfe_flexible_toggle',''),(137058,40463,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(137059,40463,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(137060,40463,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(137061,40463,'blocks_1_options_theme','#ffffff'),(137062,40463,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(137063,40463,'blocks_1_options_reverse','0'),(137064,40463,'_blocks_1_options_reverse','field_61768049bb8ac'),(137065,40463,'blocks_1_options',''),(137066,40463,'_blocks_1_options','field_617682517c334'),(137067,40463,'blocks_1_split_5050_image','40342'),(137068,40463,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(137069,40463,'blocks_1_split_5050_video',''),(137070,40463,'_blocks_1_split_5050_video','field_6239f3160848a'),(137071,40463,'blocks_1_split_5050_content_title',''),(137072,40463,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(137073,40463,'blocks_1_split_5050_content_heading','Let\'s connect!'),(137074,40463,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(137075,40463,'blocks_1_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(137076,40463,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(137077,40463,'blocks_1_split_5050_content_actions',''),(137078,40463,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(137079,40463,'blocks_1_split_5050_content',''),(137080,40463,'_blocks_1_split_5050_content','field_61767afceb8ba'),(137081,40463,'blocks_2_acfe_flexible_toggle',''),(137082,40463,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(137083,40463,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(137084,40463,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(137085,40463,'blocks_2_options_theme','#ffffff'),(137086,40463,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(137087,40463,'blocks_2_options_reverse','1'),(137088,40463,'_blocks_2_options_reverse','field_61768049bb8ac'),(137089,40463,'blocks_2_options',''),(137090,40463,'_blocks_2_options','field_617682517c334'),(137091,40463,'blocks_2_split_5050_image','40349'),(137092,40463,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(137093,40463,'blocks_2_split_5050_video',''),(137094,40463,'_blocks_2_split_5050_video','field_6239f3160848a'),(137095,40463,'blocks_2_split_5050_content_title',''),(137096,40463,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(137097,40463,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(137098,40463,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(137099,40463,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(137100,40463,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(137101,40463,'blocks_2_split_5050_content_actions',''),(137102,40463,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(137103,40463,'blocks_2_split_5050_content',''),(137104,40463,'_blocks_2_split_5050_content','field_61767afceb8ba'),(137105,40463,'blocks_3_acfe_flexible_toggle',''),(137106,40463,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(137107,40463,'blocks_3_acfe_flexible_layout_title','Form'),(137108,40463,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(137109,40463,'blocks_3_row_content_format','standard'),(137110,40463,'_blocks_3_row_content_format','field_6481ead962881'),(137111,40463,'blocks_3_row_content_title',''),(137112,40463,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(137113,40463,'blocks_3_row_content_heading',''),(137114,40463,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(137115,40463,'blocks_3_row_content_text',''),(137116,40463,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(137117,40463,'blocks_3_row_content_actions',''),(137118,40463,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(137119,40463,'blocks_3_row_content',''),(137120,40463,'_blocks_3_row_content','field_61a0f5f5b3db0'),(137121,40463,'blocks_3_row_form','40394'),(137122,40463,'_blocks_3_row_form','field_61a4ff2c0b08e'),(137123,40463,'blocks_3_row_form_button_label',''),(137124,40463,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(137349,40468,'hide_hero','0'),(137350,40468,'_hide_hero','field_66a2380fcda39'),(137351,40468,'hero_title','Biomechanics and Personal Training'),(137352,40468,'_hero_title','field_617571fe285e8'),(137353,40468,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(137354,40468,'_hero_text','field_6175723c285e9'),(137355,40468,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(137356,40468,'_hero_actions_0_button','field_61757281285eb'),(137357,40468,'hero_actions','1'),(137358,40468,'_hero_actions','field_61757270285ea'),(137359,40468,'hero_style','default'),(137360,40468,'_hero_style','field_62051d9dc5324'),(137361,40468,'_thumbnail_id','39215'),(137362,40468,'__thumbnail_id','field_617570855ddaf'),(137363,40468,'hero_image_pos_x','right'),(137364,40468,'_hero_image_pos_x','field_62ec3d05390bb'),(137365,40468,'hero_image_pos_y','top'),(137366,40468,'_hero_image_pos_y','field_62ec3d05390bc'),(137367,40468,'hero_image_pos',''),(137368,40468,'_hero_image_pos','field_62ec3d05390ba'),(137369,40468,'fft_hide_from_listings','0'),(137370,40468,'_fft_hide_from_listings','field_61f1320446ab2'),(137371,40468,'fft_page_format','default'),(137372,40468,'_fft_page_format','field_61ae213f1f218'),(137373,40468,'fft_hide_nav','0'),(137374,40468,'_fft_hide_nav','field_635bd5e43527c'),(137375,40468,'fft_hide_header_call_to_action','0'),(137376,40468,'_fft_hide_header_call_to_action','field_635bd6723527d'),(137377,40468,'fft_page_sitemap','0'),(137378,40468,'_fft_page_sitemap','field_61af9b34e8181'),(137379,40468,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(137380,40468,'_blocks','field_6176696113096'),(137381,40468,'blocks_0_acfe_flexible_toggle',''),(137382,40468,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(137383,40468,'blocks_0_acfe_flexible_layout_title','Template'),(137384,40468,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(137385,40468,'blocks_0_template','39087'),(137386,40468,'_blocks_0_template','field_617bdd570fe01'),(137387,40468,'blocks_1_acfe_flexible_toggle',''),(137388,40468,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(137389,40468,'blocks_1_acfe_flexible_layout_title','Steps'),(137390,40468,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(137391,40468,'blocks_1_row_content_title',''),(137392,40468,'_blocks_1_row_content_title','field_64888cd1e26e0'),(137393,40468,'blocks_1_row_content_heading','Benefits of training with us'),(137394,40468,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(137395,40468,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(137396,40468,'_blocks_1_row_content_text','field_64888ce2e26e2'),(137397,40468,'blocks_1_row_content_actions',''),(137398,40468,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(137399,40468,'blocks_1_row_content',''),(137400,40468,'_blocks_1_row_content','field_64888cb0e26df'),(137401,40468,'blocks_1_steps_0_icon','progression.svg'),(137402,40468,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(137403,40468,'blocks_1_steps_0_title','Earning Potential'),(137404,40468,'_blocks_1_steps_0_title','field_64888d94e26e7'),(137405,40468,'blocks_1_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(137406,40468,'_blocks_1_steps_0_text','field_64888d99e26e8'),(137407,40468,'blocks_1_steps_1_icon','support.svg'),(137408,40468,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(137409,40468,'blocks_1_steps_1_title','Lifetime Learning Promise'),(137410,40468,'_blocks_1_steps_1_title','field_64888d94e26e7'),(137411,40468,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(137412,40468,'_blocks_1_steps_1_text','field_64888d99e26e8'),(137413,40468,'blocks_1_steps_2_icon','qualification.svg'),(137414,40468,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(137415,40468,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(137416,40468,'_blocks_1_steps_2_title','field_64888d94e26e7'),(137417,40468,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(137418,40468,'_blocks_1_steps_2_text','field_64888d99e26e8'),(137419,40468,'blocks_1_steps_3_icon','leaders.svg'),(137420,40468,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(137421,40468,'blocks_1_steps_3_title','Stand Out From the Crowd'),(137422,40468,'_blocks_1_steps_3_title','field_64888d94e26e7'),(137423,40468,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(137424,40468,'_blocks_1_steps_3_text','field_64888d99e26e8'),(137425,40468,'blocks_1_steps','4'),(137426,40468,'_blocks_1_steps','field_64888d44e26e5'),(137427,40468,'blocks_2_acfe_flexible_toggle',''),(137428,40468,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(137429,40468,'blocks_2_acfe_flexible_layout_title','Video'),(137430,40468,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(137431,40468,'blocks_2_size','large'),(137432,40468,'_blocks_2_size','field_6487038f297c1'),(137433,40468,'blocks_2_row_content_title',''),(137434,40468,'_blocks_2_row_content_title','field_64870132a865d'),(137435,40468,'blocks_2_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer ?'),(137436,40468,'_blocks_2_row_content_heading','field_64870142a865e'),(137437,40468,'blocks_2_row_content_text',''),(137438,40468,'_blocks_2_row_content_text','field_64870148a865f'),(137439,40468,'blocks_2_row_content',''),(137440,40468,'_blocks_2_row_content','field_6487008ba865c'),(137441,40468,'blocks_2_video_src','https://youtu.be/kLVekt6aqrI'),(137442,40468,'_blocks_2_video_src','field_6193c4a98ec07'),(137443,40468,'blocks_2_video_thumbnail','39186'),(137444,40468,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(137445,40468,'blocks_3_acfe_flexible_toggle',''),(137446,40468,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(137447,40468,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(137448,40468,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(137449,40468,'blocks_3_options_theme','#ffffff'),(137450,40468,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(137451,40468,'blocks_3_options_reverse','0'),(137452,40468,'_blocks_3_options_reverse','field_61768049bb8ac'),(137453,40468,'blocks_3_options',''),(137454,40468,'_blocks_3_options','field_617682517c334'),(137455,40468,'blocks_3_split_5050_image','39220'),(137456,40468,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(137457,40468,'blocks_3_split_5050_video',''),(137458,40468,'_blocks_3_split_5050_video','field_6239f3160848a'),(137459,40468,'blocks_3_split_5050_content_title',''),(137460,40468,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(137461,40468,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a PT'),(137462,40468,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(137463,40468,'blocks_3_split_5050_content_text','Enhancing Your Impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor, and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, elevate your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(137464,40468,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(137465,40468,'blocks_3_split_5050_content_actions',''),(137466,40468,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(137467,40468,'blocks_3_split_5050_content',''),(137468,40468,'_blocks_3_split_5050_content','field_61767afceb8ba'),(137469,40468,'blocks_4_acfe_flexible_toggle',''),(137470,40468,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(137471,40468,'blocks_4_acfe_flexible_layout_title','Form'),(137472,40468,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(137473,40468,'blocks_4_row_content_format','standard'),(137474,40468,'_blocks_4_row_content_format','field_6481ead962881'),(137475,40468,'blocks_4_row_content_title',''),(137476,40468,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(137477,40468,'blocks_4_row_content_heading','Enquire Today'),(137478,40468,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(137479,40468,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(137480,40468,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(137481,40468,'blocks_4_row_content_actions',''),(137482,40468,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(137483,40468,'blocks_4_row_content',''),(137484,40468,'_blocks_4_row_content','field_61a0f5f5b3db0'),(137485,40468,'blocks_4_row_form',''),(137486,40468,'_blocks_4_row_form','field_61a4ff2c0b08e'),(137487,40468,'blocks_4_row_form_button_label',''),(137488,40468,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(137489,40468,'blocks_5_acfe_flexible_toggle',''),(137490,40468,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(137491,40468,'blocks_5_acfe_flexible_layout_title','Tabs'),(137492,40468,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(137493,40468,'blocks_5_options_theme','#ffffff'),(137494,40468,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(137495,40468,'blocks_5_options',''),(137496,40468,'_blocks_5_options','field_6177cfcd8140f'),(137497,40468,'blocks_5_tabs_0_tab_label','What will I learn?'),(137498,40468,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(137499,40468,'blocks_5_tabs_0_tab_content_title',''),(137500,40468,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(137501,40468,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(137502,40468,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(137503,40468,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(137504,40468,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(137505,40468,'blocks_5_tabs_0_tab_content_actions',''),(137506,40468,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(137507,40468,'blocks_5_tabs_0_tab_content',''),(137508,40468,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(137509,40468,'blocks_5_tabs_0_tab_image','39076'),(137510,40468,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(137511,40468,'blocks_5_tabs_1_tab_label','What do I need?'),(137512,40468,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(137513,40468,'blocks_5_tabs_1_tab_content_title',''),(137514,40468,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(137515,40468,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(137516,40468,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(137517,40468,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(137518,40468,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(137519,40468,'blocks_5_tabs_1_tab_content_actions',''),(137520,40468,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(137521,40468,'blocks_5_tabs_1_tab_content',''),(137522,40468,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(137523,40468,'blocks_5_tabs_1_tab_image','39223'),(137524,40468,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(137525,40468,'blocks_5_tabs_2_tab_label','Where can I learn?'),(137526,40468,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(137527,40468,'blocks_5_tabs_2_tab_content_title',''),(137528,40468,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(137529,40468,'blocks_5_tabs_2_tab_content_heading','Locations'),(137530,40468,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(137531,40468,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(137532,40468,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(137533,40468,'blocks_5_tabs_2_tab_content_actions',''),(137534,40468,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(137535,40468,'blocks_5_tabs_2_tab_content',''),(137536,40468,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(137537,40468,'blocks_5_tabs_2_tab_image','39224'),(137538,40468,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(137539,40468,'blocks_5_tabs','3'),(137540,40468,'_blocks_5_tabs','field_6177cff281419'),(137541,40468,'blocks_6_acfe_flexible_toggle',''),(137542,40468,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(137543,40468,'blocks_6_acfe_flexible_layout_title','Text Block'),(137544,40468,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(137545,40468,'blocks_6_options_theme','#b61234'),(137546,40468,'_blocks_6_options_theme','field_6176830e2ad17'),(137547,40468,'blocks_6_options',''),(137548,40468,'_blocks_6_options','field_6176830e2ad16'),(137549,40468,'blocks_6_text_block_heading','Fees & Funding Options'),(137550,40468,'_blocks_6_text_block_heading','field_617669d413097'),(137551,40468,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(137552,40468,'_blocks_6_text_block_content','field_617669ec13098'),(137553,40468,'blocks_7_acfe_flexible_toggle',''),(137554,40468,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(137555,40468,'blocks_7_acfe_flexible_layout_title','Icons'),(137556,40468,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(137557,40468,'blocks_7_options_theme','#b61234'),(137558,40468,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(137559,40468,'blocks_7_options_format','row'),(137560,40468,'_blocks_7_options_format','field_64bfde9a90690'),(137561,40468,'blocks_7_options',''),(137562,40468,'_blocks_7_options','field_64bfdd9b90684'),(137563,40468,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(137564,40468,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(137565,40468,'blocks_7_icon_row_items_0_label','Pay in Full'),(137566,40468,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(137567,40468,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(137568,40468,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(137569,40468,'blocks_7_icon_row_items_1_icon','finance.svg'),(137570,40468,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(137571,40468,'blocks_7_icon_row_items_1_label','0% finance'),(137572,40468,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(137573,40468,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(137574,40468,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(137575,40468,'blocks_7_icon_row_items_2_icon','deposit.svg'),(137576,40468,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(137577,40468,'blocks_7_icon_row_items_2_label','Deposit & balance'),(137578,40468,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(137579,40468,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(137580,40468,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(137581,40468,'blocks_7_icon_row_items','3'),(137582,40468,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(137583,40468,'blocks_8_acfe_flexible_toggle',''),(137584,40468,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(137585,40468,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(137586,40468,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(137587,40468,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(137588,40468,'_blocks_8_content','field_6193c9b5eac84'),(137589,40468,'blocks_9_acfe_flexible_toggle',''),(137590,40468,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(137591,40468,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(137592,40468,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(137593,40468,'blocks_9_testimonial_slider_content_title',''),(137594,40468,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(137595,40468,'blocks_9_testimonial_slider_content_heading','Testimonials'),(137596,40468,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(137597,40468,'blocks_9_testimonial_slider_content_text',''),(137598,40468,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(137599,40468,'blocks_9_testimonial_slider_content_actions',''),(137600,40468,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(137601,40468,'blocks_9_testimonial_slider_content',''),(137602,40468,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(137603,40468,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(137604,40468,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(137605,40468,'blocks_9_testimonial_slider_ambassador_bool','0'),(137606,40468,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(137607,40468,'blocks_10_acfe_flexible_toggle',''),(137608,40468,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(137609,40468,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(137610,40468,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(137611,40468,'blocks_10_options_theme','#ffffff'),(137612,40468,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(137613,40468,'blocks_10_options_state','0'),(137614,40468,'_blocks_10_options_state','field_6239fcb7508c5'),(137615,40468,'blocks_10_options',''),(137616,40468,'_blocks_10_options','field_6177e2991ac44'),(137617,40468,'blocks_10_content_title',''),(137618,40468,'_blocks_10_content_title','field_64d237e8bb1e2'),(137619,40468,'blocks_10_content_heading','Frequently asked questions '),(137620,40468,'_blocks_10_content_heading','field_64d237e8bb1e3'),(137621,40468,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(137622,40468,'_blocks_10_content_text','field_64d237e8bb1e4'),(137623,40468,'blocks_10_content_actions',''),(137624,40468,'_blocks_10_content_actions','field_64d237e8bb1e5'),(137625,40468,'blocks_10_content_align','left'),(137626,40468,'_blocks_10_content_align','field_64d2443e6b6aa'),(137627,40468,'blocks_10_content',''),(137628,40468,'_blocks_10_content','field_64d237e8bb1e1'),(137629,40468,'blocks_10_accordion_content','faqs'),(137630,40468,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(137631,40468,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(137632,40468,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(137633,40468,'blocks_10_actions',''),(137634,40468,'_blocks_10_actions','field_61a746a817f7a'),(137635,40469,'hide_hero','0'),(137636,40469,'_hide_hero','field_66a2380fcda39'),(137637,40469,'hero_title','Biomechanics and Personal Training'),(137638,40469,'_hero_title','field_617571fe285e8'),(137639,40469,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(137640,40469,'_hero_text','field_6175723c285e9'),(137641,40469,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(137642,40469,'_hero_actions_0_button','field_61757281285eb'),(137643,40469,'hero_actions','1'),(137644,40469,'_hero_actions','field_61757270285ea'),(137645,40469,'hero_style','default'),(137646,40469,'_hero_style','field_62051d9dc5324'),(137647,40469,'_thumbnail_id','39215'),(137648,40469,'__thumbnail_id','field_617570855ddaf'),(137649,40469,'hero_image_pos_x','right'),(137650,40469,'_hero_image_pos_x','field_62ec3d05390bb'),(137651,40469,'hero_image_pos_y','top'),(137652,40469,'_hero_image_pos_y','field_62ec3d05390bc'),(137653,40469,'hero_image_pos',''),(137654,40469,'_hero_image_pos','field_62ec3d05390ba'),(137655,40469,'fft_hide_from_listings','0'),(137656,40469,'_fft_hide_from_listings','field_61f1320446ab2'),(137657,40469,'fft_page_format','default'),(137658,40469,'_fft_page_format','field_61ae213f1f218'),(137659,40469,'fft_hide_nav','0'),(137660,40469,'_fft_hide_nav','field_635bd5e43527c'),(137661,40469,'fft_hide_header_call_to_action','0'),(137662,40469,'_fft_hide_header_call_to_action','field_635bd6723527d'),(137663,40469,'fft_page_sitemap','0'),(137664,40469,'_fft_page_sitemap','field_61af9b34e8181'),(137665,40469,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(137666,40469,'_blocks','field_6176696113096'),(137667,40469,'blocks_0_acfe_flexible_toggle',''),(137668,40469,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(137669,40469,'blocks_0_acfe_flexible_layout_title','Template'),(137670,40469,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(137671,40469,'blocks_0_template','39087'),(137672,40469,'_blocks_0_template','field_617bdd570fe01'),(137673,40469,'blocks_1_acfe_flexible_toggle',''),(137674,40469,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(137675,40469,'blocks_1_acfe_flexible_layout_title','Steps'),(137676,40469,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(137677,40469,'blocks_1_row_content_title',''),(137678,40469,'_blocks_1_row_content_title','field_64888cd1e26e0'),(137679,40469,'blocks_1_row_content_heading','Benefits of training with us'),(137680,40469,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(137681,40469,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(137682,40469,'_blocks_1_row_content_text','field_64888ce2e26e2'),(137683,40469,'blocks_1_row_content_actions',''),(137684,40469,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(137685,40469,'blocks_1_row_content',''),(137686,40469,'_blocks_1_row_content','field_64888cb0e26df'),(137687,40469,'blocks_1_steps_0_icon','progression.svg'),(137688,40469,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(137689,40469,'blocks_1_steps_0_title','Earning Potential'),(137690,40469,'_blocks_1_steps_0_title','field_64888d94e26e7'),(137691,40469,'blocks_1_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(137692,40469,'_blocks_1_steps_0_text','field_64888d99e26e8'),(137693,40469,'blocks_1_steps_1_icon','support.svg'),(137694,40469,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(137695,40469,'blocks_1_steps_1_title','Lifetime Learning Promise'),(137696,40469,'_blocks_1_steps_1_title','field_64888d94e26e7'),(137697,40469,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(137698,40469,'_blocks_1_steps_1_text','field_64888d99e26e8'),(137699,40469,'blocks_1_steps_2_icon','qualification.svg'),(137700,40469,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(137701,40469,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(137702,40469,'_blocks_1_steps_2_title','field_64888d94e26e7'),(137703,40469,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(137704,40469,'_blocks_1_steps_2_text','field_64888d99e26e8'),(137705,40469,'blocks_1_steps_3_icon','leaders.svg'),(137706,40469,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(137707,40469,'blocks_1_steps_3_title','Stand Out From the Crowd'),(137708,40469,'_blocks_1_steps_3_title','field_64888d94e26e7'),(137709,40469,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(137710,40469,'_blocks_1_steps_3_text','field_64888d99e26e8'),(137711,40469,'blocks_1_steps','4'),(137712,40469,'_blocks_1_steps','field_64888d44e26e5'),(137713,40469,'blocks_2_acfe_flexible_toggle',''),(137714,40469,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(137715,40469,'blocks_2_acfe_flexible_layout_title','Video'),(137716,40469,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(137717,40469,'blocks_2_size','large'),(137718,40469,'_blocks_2_size','field_6487038f297c1'),(137719,40469,'blocks_2_row_content_title',''),(137720,40469,'_blocks_2_row_content_title','field_64870132a865d'),(137721,40469,'blocks_2_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(137722,40469,'_blocks_2_row_content_heading','field_64870142a865e'),(137723,40469,'blocks_2_row_content_text',''),(137724,40469,'_blocks_2_row_content_text','field_64870148a865f'),(137725,40469,'blocks_2_row_content',''),(137726,40469,'_blocks_2_row_content','field_6487008ba865c'),(137727,40469,'blocks_2_video_src','https://youtu.be/kLVekt6aqrI'),(137728,40469,'_blocks_2_video_src','field_6193c4a98ec07'),(137729,40469,'blocks_2_video_thumbnail','39186'),(137730,40469,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(137731,40469,'blocks_3_acfe_flexible_toggle',''),(137732,40469,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(137733,40469,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(137734,40469,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(137735,40469,'blocks_3_options_theme','#ffffff'),(137736,40469,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(137737,40469,'blocks_3_options_reverse','0'),(137738,40469,'_blocks_3_options_reverse','field_61768049bb8ac'),(137739,40469,'blocks_3_options',''),(137740,40469,'_blocks_3_options','field_617682517c334'),(137741,40469,'blocks_3_split_5050_image','39220'),(137742,40469,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(137743,40469,'blocks_3_split_5050_video',''),(137744,40469,'_blocks_3_split_5050_video','field_6239f3160848a'),(137745,40469,'blocks_3_split_5050_content_title',''),(137746,40469,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(137747,40469,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a PT'),(137748,40469,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(137749,40469,'blocks_3_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(137750,40469,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(137751,40469,'blocks_3_split_5050_content_actions',''),(137752,40469,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(137753,40469,'blocks_3_split_5050_content',''),(137754,40469,'_blocks_3_split_5050_content','field_61767afceb8ba'),(137755,40469,'blocks_4_acfe_flexible_toggle',''),(137756,40469,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(137757,40469,'blocks_4_acfe_flexible_layout_title','Form'),(137758,40469,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(137759,40469,'blocks_4_row_content_format','standard'),(137760,40469,'_blocks_4_row_content_format','field_6481ead962881'),(137761,40469,'blocks_4_row_content_title',''),(137762,40469,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(137763,40469,'blocks_4_row_content_heading','Enquire Today'),(137764,40469,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(137765,40469,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(137766,40469,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(137767,40469,'blocks_4_row_content_actions',''),(137768,40469,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(137769,40469,'blocks_4_row_content',''),(137770,40469,'_blocks_4_row_content','field_61a0f5f5b3db0'),(137771,40469,'blocks_4_row_form',''),(137772,40469,'_blocks_4_row_form','field_61a4ff2c0b08e'),(137773,40469,'blocks_4_row_form_button_label',''),(137774,40469,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(137775,40469,'blocks_5_acfe_flexible_toggle',''),(137776,40469,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(137777,40469,'blocks_5_acfe_flexible_layout_title','Tabs'),(137778,40469,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(137779,40469,'blocks_5_options_theme','#ffffff'),(137780,40469,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(137781,40469,'blocks_5_options',''),(137782,40469,'_blocks_5_options','field_6177cfcd8140f'),(137783,40469,'blocks_5_tabs_0_tab_label','What will I learn?'),(137784,40469,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(137785,40469,'blocks_5_tabs_0_tab_content_title',''),(137786,40469,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(137787,40469,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(137788,40469,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(137789,40469,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(137790,40469,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(137791,40469,'blocks_5_tabs_0_tab_content_actions',''),(137792,40469,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(137793,40469,'blocks_5_tabs_0_tab_content',''),(137794,40469,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(137795,40469,'blocks_5_tabs_0_tab_image','39076'),(137796,40469,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(137797,40469,'blocks_5_tabs_1_tab_label','What do I need?'),(137798,40469,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(137799,40469,'blocks_5_tabs_1_tab_content_title',''),(137800,40469,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(137801,40469,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(137802,40469,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(137803,40469,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(137804,40469,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(137805,40469,'blocks_5_tabs_1_tab_content_actions',''),(137806,40469,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(137807,40469,'blocks_5_tabs_1_tab_content',''),(137808,40469,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(137809,40469,'blocks_5_tabs_1_tab_image','39223'),(137810,40469,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(137811,40469,'blocks_5_tabs_2_tab_label','Where can I learn?'),(137812,40469,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(137813,40469,'blocks_5_tabs_2_tab_content_title',''),(137814,40469,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(137815,40469,'blocks_5_tabs_2_tab_content_heading','Locations'),(137816,40469,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(137817,40469,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(137818,40469,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(137819,40469,'blocks_5_tabs_2_tab_content_actions',''),(137820,40469,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(137821,40469,'blocks_5_tabs_2_tab_content',''),(137822,40469,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(137823,40469,'blocks_5_tabs_2_tab_image','39224'),(137824,40469,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(137825,40469,'blocks_5_tabs','3'),(137826,40469,'_blocks_5_tabs','field_6177cff281419'),(137827,40469,'blocks_6_acfe_flexible_toggle',''),(137828,40469,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(137829,40469,'blocks_6_acfe_flexible_layout_title','Text Block'),(137830,40469,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(137831,40469,'blocks_6_options_theme','#b61234'),(137832,40469,'_blocks_6_options_theme','field_6176830e2ad17'),(137833,40469,'blocks_6_options',''),(137834,40469,'_blocks_6_options','field_6176830e2ad16'),(137835,40469,'blocks_6_text_block_heading','Fees & Funding Options'),(137836,40469,'_blocks_6_text_block_heading','field_617669d413097'),(137837,40469,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(137838,40469,'_blocks_6_text_block_content','field_617669ec13098'),(137839,40469,'blocks_7_acfe_flexible_toggle',''),(137840,40469,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(137841,40469,'blocks_7_acfe_flexible_layout_title','Icons'),(137842,40469,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(137843,40469,'blocks_7_options_theme','#b61234'),(137844,40469,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(137845,40469,'blocks_7_options_format','row'),(137846,40469,'_blocks_7_options_format','field_64bfde9a90690'),(137847,40469,'blocks_7_options',''),(137848,40469,'_blocks_7_options','field_64bfdd9b90684'),(137849,40469,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(137850,40469,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(137851,40469,'blocks_7_icon_row_items_0_label','Pay in Full'),(137852,40469,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(137853,40469,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(137854,40469,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(137855,40469,'blocks_7_icon_row_items_1_icon','finance.svg'),(137856,40469,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(137857,40469,'blocks_7_icon_row_items_1_label','0% finance'),(137858,40469,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(137859,40469,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(137860,40469,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(137861,40469,'blocks_7_icon_row_items_2_icon','deposit.svg'),(137862,40469,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(137863,40469,'blocks_7_icon_row_items_2_label','Deposit & balance'),(137864,40469,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(137865,40469,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(137866,40469,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(137867,40469,'blocks_7_icon_row_items','3'),(137868,40469,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(137869,40469,'blocks_8_acfe_flexible_toggle',''),(137870,40469,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(137871,40469,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(137872,40469,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(137873,40469,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(137874,40469,'_blocks_8_content','field_6193c9b5eac84'),(137875,40469,'blocks_9_acfe_flexible_toggle',''),(137876,40469,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(137877,40469,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(137878,40469,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(137879,40469,'blocks_9_testimonial_slider_content_title',''),(137880,40469,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(137881,40469,'blocks_9_testimonial_slider_content_heading','Testimonials'),(137882,40469,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(137883,40469,'blocks_9_testimonial_slider_content_text',''),(137884,40469,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(137885,40469,'blocks_9_testimonial_slider_content_actions',''),(137886,40469,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(137887,40469,'blocks_9_testimonial_slider_content',''),(137888,40469,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(137889,40469,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(137890,40469,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(137891,40469,'blocks_9_testimonial_slider_ambassador_bool','0'),(137892,40469,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(137893,40469,'blocks_10_acfe_flexible_toggle',''),(137894,40469,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(137895,40469,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(137896,40469,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(137897,40469,'blocks_10_options_theme','#ffffff'),(137898,40469,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(137899,40469,'blocks_10_options_state','0'),(137900,40469,'_blocks_10_options_state','field_6239fcb7508c5'),(137901,40469,'blocks_10_options',''),(137902,40469,'_blocks_10_options','field_6177e2991ac44'),(137903,40469,'blocks_10_content_title',''),(137904,40469,'_blocks_10_content_title','field_64d237e8bb1e2'),(137905,40469,'blocks_10_content_heading','Frequently asked questions '),(137906,40469,'_blocks_10_content_heading','field_64d237e8bb1e3'),(137907,40469,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(137908,40469,'_blocks_10_content_text','field_64d237e8bb1e4'),(137909,40469,'blocks_10_content_actions',''),(137910,40469,'_blocks_10_content_actions','field_64d237e8bb1e5'),(137911,40469,'blocks_10_content_align','left'),(137912,40469,'_blocks_10_content_align','field_64d2443e6b6aa'),(137913,40469,'blocks_10_content',''),(137914,40469,'_blocks_10_content','field_64d237e8bb1e1'),(137915,40469,'blocks_10_accordion_content','faqs'),(137916,40469,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(137917,40469,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(137918,40469,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(137919,40469,'blocks_10_actions',''),(137920,40469,'_blocks_10_actions','field_61a746a817f7a'),(137921,40470,'hide_hero','0'),(137922,40470,'_hide_hero','field_66a2380fcda39'),(137923,40470,'hero_title','Biomechanics and Personal Training'),(137924,40470,'_hero_title','field_617571fe285e8'),(137925,40470,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(137926,40470,'_hero_text','field_6175723c285e9'),(137927,40470,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(137928,40470,'_hero_actions_0_button','field_61757281285eb'),(137929,40470,'hero_actions','1'),(137930,40470,'_hero_actions','field_61757270285ea'),(137931,40470,'hero_style','default'),(137932,40470,'_hero_style','field_62051d9dc5324'),(137933,40470,'_thumbnail_id','39215'),(137934,40470,'__thumbnail_id','field_617570855ddaf'),(137935,40470,'hero_image_pos_x','right'),(137936,40470,'_hero_image_pos_x','field_62ec3d05390bb'),(137937,40470,'hero_image_pos_y','top'),(137938,40470,'_hero_image_pos_y','field_62ec3d05390bc'),(137939,40470,'hero_image_pos',''),(137940,40470,'_hero_image_pos','field_62ec3d05390ba'),(137941,40470,'fft_hide_from_listings','0'),(137942,40470,'_fft_hide_from_listings','field_61f1320446ab2'),(137943,40470,'fft_page_format','default'),(137944,40470,'_fft_page_format','field_61ae213f1f218'),(137945,40470,'fft_hide_nav','0'),(137946,40470,'_fft_hide_nav','field_635bd5e43527c'),(137947,40470,'fft_hide_header_call_to_action','0'),(137948,40470,'_fft_hide_header_call_to_action','field_635bd6723527d'),(137949,40470,'fft_page_sitemap','0'),(137950,40470,'_fft_page_sitemap','field_61af9b34e8181'),(137951,40470,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(137952,40470,'_blocks','field_6176696113096'),(137953,40470,'blocks_0_acfe_flexible_toggle',''),(137954,40470,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(137955,40470,'blocks_0_acfe_flexible_layout_title','Template'),(137956,40470,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(137957,40470,'blocks_0_template','39087'),(137958,40470,'_blocks_0_template','field_617bdd570fe01'),(137959,40470,'blocks_1_acfe_flexible_toggle',''),(137960,40470,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(137961,40470,'blocks_1_acfe_flexible_layout_title','Steps'),(137962,40470,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(137963,40470,'blocks_1_row_content_title',''),(137964,40470,'_blocks_1_row_content_title','field_64888cd1e26e0'),(137965,40470,'blocks_1_row_content_heading','Benefits of training with us'),(137966,40470,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(137967,40470,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(137968,40470,'_blocks_1_row_content_text','field_64888ce2e26e2'),(137969,40470,'blocks_1_row_content_actions',''),(137970,40470,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(137971,40470,'blocks_1_row_content',''),(137972,40470,'_blocks_1_row_content','field_64888cb0e26df'),(137973,40470,'blocks_1_steps_0_icon','progression.svg'),(137974,40470,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(137975,40470,'blocks_1_steps_0_title','Earning Potential'),(137976,40470,'_blocks_1_steps_0_title','field_64888d94e26e7'),(137977,40470,'blocks_1_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(137978,40470,'_blocks_1_steps_0_text','field_64888d99e26e8'),(137979,40470,'blocks_1_steps_1_icon','support.svg'),(137980,40470,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(137981,40470,'blocks_1_steps_1_title','Lifetime Learning Promise'),(137982,40470,'_blocks_1_steps_1_title','field_64888d94e26e7'),(137983,40470,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(137984,40470,'_blocks_1_steps_1_text','field_64888d99e26e8'),(137985,40470,'blocks_1_steps_2_icon','qualification.svg'),(137986,40470,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(137987,40470,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(137988,40470,'_blocks_1_steps_2_title','field_64888d94e26e7'),(137989,40470,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(137990,40470,'_blocks_1_steps_2_text','field_64888d99e26e8'),(137991,40470,'blocks_1_steps_3_icon','leaders.svg'),(137992,40470,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(137993,40470,'blocks_1_steps_3_title','Stand Out From the Crowd'),(137994,40470,'_blocks_1_steps_3_title','field_64888d94e26e7'),(137995,40470,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(137996,40470,'_blocks_1_steps_3_text','field_64888d99e26e8'),(137997,40470,'blocks_1_steps','4'),(137998,40470,'_blocks_1_steps','field_64888d44e26e5'),(137999,40470,'blocks_2_acfe_flexible_toggle',''),(138000,40470,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(138001,40470,'blocks_2_acfe_flexible_layout_title','Video'),(138002,40470,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(138003,40470,'blocks_2_size','large'),(138004,40470,'_blocks_2_size','field_6487038f297c1'),(138005,40470,'blocks_2_row_content_title',''),(138006,40470,'_blocks_2_row_content_title','field_64870132a865d'),(138007,40470,'blocks_2_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(138008,40470,'_blocks_2_row_content_heading','field_64870142a865e'),(138009,40470,'blocks_2_row_content_text',''),(138010,40470,'_blocks_2_row_content_text','field_64870148a865f'),(138011,40470,'blocks_2_row_content',''),(138012,40470,'_blocks_2_row_content','field_6487008ba865c'),(138013,40470,'blocks_2_video_src','https://youtu.be/kLVekt6aqrI'),(138014,40470,'_blocks_2_video_src','field_6193c4a98ec07'),(138015,40470,'blocks_2_video_thumbnail','39186'),(138016,40470,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(138017,40470,'blocks_3_acfe_flexible_toggle',''),(138018,40470,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(138019,40470,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(138020,40470,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(138021,40470,'blocks_3_options_theme','#ffffff'),(138022,40470,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(138023,40470,'blocks_3_options_reverse','0'),(138024,40470,'_blocks_3_options_reverse','field_61768049bb8ac'),(138025,40470,'blocks_3_options',''),(138026,40470,'_blocks_3_options','field_617682517c334'),(138027,40470,'blocks_3_split_5050_image','39220'),(138028,40470,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(138029,40470,'blocks_3_split_5050_video',''),(138030,40470,'_blocks_3_split_5050_video','field_6239f3160848a'),(138031,40470,'blocks_3_split_5050_content_title',''),(138032,40470,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(138033,40470,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a PT'),(138034,40470,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(138035,40470,'blocks_3_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(138036,40470,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(138037,40470,'blocks_3_split_5050_content_actions',''),(138038,40470,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(138039,40470,'blocks_3_split_5050_content',''),(138040,40470,'_blocks_3_split_5050_content','field_61767afceb8ba'),(138041,40470,'blocks_4_acfe_flexible_toggle',''),(138042,40470,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(138043,40470,'blocks_4_acfe_flexible_layout_title','Form'),(138044,40470,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(138045,40470,'blocks_4_row_content_format','standard'),(138046,40470,'_blocks_4_row_content_format','field_6481ead962881'),(138047,40470,'blocks_4_row_content_title',''),(138048,40470,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(138049,40470,'blocks_4_row_content_heading','Enquire Today'),(138050,40470,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(138051,40470,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(138052,40470,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(138053,40470,'blocks_4_row_content_actions',''),(138054,40470,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(138055,40470,'blocks_4_row_content',''),(138056,40470,'_blocks_4_row_content','field_61a0f5f5b3db0'),(138057,40470,'blocks_4_row_form',''),(138058,40470,'_blocks_4_row_form','field_61a4ff2c0b08e'),(138059,40470,'blocks_4_row_form_button_label',''),(138060,40470,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(138061,40470,'blocks_5_acfe_flexible_toggle',''),(138062,40470,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(138063,40470,'blocks_5_acfe_flexible_layout_title','Tabs'),(138064,40470,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(138065,40470,'blocks_5_options_theme','#ffffff'),(138066,40470,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(138067,40470,'blocks_5_options',''),(138068,40470,'_blocks_5_options','field_6177cfcd8140f'),(138069,40470,'blocks_5_tabs_0_tab_label','What will I learn?'),(138070,40470,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(138071,40470,'blocks_5_tabs_0_tab_content_title',''),(138072,40470,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(138073,40470,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(138074,40470,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(138075,40470,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(138076,40470,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(138077,40470,'blocks_5_tabs_0_tab_content_actions',''),(138078,40470,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(138079,40470,'blocks_5_tabs_0_tab_content',''),(138080,40470,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(138081,40470,'blocks_5_tabs_0_tab_image','39076'),(138082,40470,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(138083,40470,'blocks_5_tabs_1_tab_label','What do I need?'),(138084,40470,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(138085,40470,'blocks_5_tabs_1_tab_content_title',''),(138086,40470,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(138087,40470,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(138088,40470,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(138089,40470,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(138090,40470,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(138091,40470,'blocks_5_tabs_1_tab_content_actions',''),(138092,40470,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(138093,40470,'blocks_5_tabs_1_tab_content',''),(138094,40470,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(138095,40470,'blocks_5_tabs_1_tab_image','39223'),(138096,40470,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(138097,40470,'blocks_5_tabs_2_tab_label','Where can I learn?'),(138098,40470,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(138099,40470,'blocks_5_tabs_2_tab_content_title',''),(138100,40470,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(138101,40470,'blocks_5_tabs_2_tab_content_heading','Locations'),(138102,40470,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(138103,40470,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(138104,40470,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(138105,40470,'blocks_5_tabs_2_tab_content_actions',''),(138106,40470,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(138107,40470,'blocks_5_tabs_2_tab_content',''),(138108,40470,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(138109,40470,'blocks_5_tabs_2_tab_image','39224'),(138110,40470,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(138111,40470,'blocks_5_tabs','3'),(138112,40470,'_blocks_5_tabs','field_6177cff281419'),(138113,40470,'blocks_6_acfe_flexible_toggle',''),(138114,40470,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(138115,40470,'blocks_6_acfe_flexible_layout_title','Text Block'),(138116,40470,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(138117,40470,'blocks_6_options_theme','#b61234'),(138118,40470,'_blocks_6_options_theme','field_6176830e2ad17'),(138119,40470,'blocks_6_options',''),(138120,40470,'_blocks_6_options','field_6176830e2ad16'),(138121,40470,'blocks_6_text_block_heading','Fees & Funding Options'),(138122,40470,'_blocks_6_text_block_heading','field_617669d413097'),(138123,40470,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(138124,40470,'_blocks_6_text_block_content','field_617669ec13098'),(138125,40470,'blocks_7_acfe_flexible_toggle',''),(138126,40470,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(138127,40470,'blocks_7_acfe_flexible_layout_title','Icons'),(138128,40470,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(138129,40470,'blocks_7_options_theme','#b61234'),(138130,40470,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(138131,40470,'blocks_7_options_format','row'),(138132,40470,'_blocks_7_options_format','field_64bfde9a90690'),(138133,40470,'blocks_7_options',''),(138134,40470,'_blocks_7_options','field_64bfdd9b90684'),(138135,40470,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(138136,40470,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(138137,40470,'blocks_7_icon_row_items_0_label','Pay in Full'),(138138,40470,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(138139,40470,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(138140,40470,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(138141,40470,'blocks_7_icon_row_items_1_icon','finance.svg'),(138142,40470,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(138143,40470,'blocks_7_icon_row_items_1_label','0% finance'),(138144,40470,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(138145,40470,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(138146,40470,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(138147,40470,'blocks_7_icon_row_items_2_icon','deposit.svg'),(138148,40470,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(138149,40470,'blocks_7_icon_row_items_2_label','Deposit & balance'),(138150,40470,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(138151,40470,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(138152,40470,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(138153,40470,'blocks_7_icon_row_items','3'),(138154,40470,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(138155,40470,'blocks_8_acfe_flexible_toggle',''),(138156,40470,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(138157,40470,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(138158,40470,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(138159,40470,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(138160,40470,'_blocks_8_content','field_6193c9b5eac84'),(138161,40470,'blocks_9_acfe_flexible_toggle',''),(138162,40470,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(138163,40470,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(138164,40470,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(138165,40470,'blocks_9_testimonial_slider_content_title',''),(138166,40470,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(138167,40470,'blocks_9_testimonial_slider_content_heading','Testimonials'),(138168,40470,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(138169,40470,'blocks_9_testimonial_slider_content_text',''),(138170,40470,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(138171,40470,'blocks_9_testimonial_slider_content_actions',''),(138172,40470,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(138173,40470,'blocks_9_testimonial_slider_content',''),(138174,40470,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(138175,40470,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(138176,40470,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(138177,40470,'blocks_9_testimonial_slider_ambassador_bool','0'),(138178,40470,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(138179,40470,'blocks_10_acfe_flexible_toggle',''),(138180,40470,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(138181,40470,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(138182,40470,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(138183,40470,'blocks_10_options_theme','#ffffff'),(138184,40470,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(138185,40470,'blocks_10_options_state','0'),(138186,40470,'_blocks_10_options_state','field_6239fcb7508c5'),(138187,40470,'blocks_10_options',''),(138188,40470,'_blocks_10_options','field_6177e2991ac44'),(138189,40470,'blocks_10_content_title',''),(138190,40470,'_blocks_10_content_title','field_64d237e8bb1e2'),(138191,40470,'blocks_10_content_heading','Frequently asked questions '),(138192,40470,'_blocks_10_content_heading','field_64d237e8bb1e3'),(138193,40470,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(138194,40470,'_blocks_10_content_text','field_64d237e8bb1e4'),(138195,40470,'blocks_10_content_actions',''),(138196,40470,'_blocks_10_content_actions','field_64d237e8bb1e5'),(138197,40470,'blocks_10_content_align','left'),(138198,40470,'_blocks_10_content_align','field_64d2443e6b6aa'),(138199,40470,'blocks_10_content',''),(138200,40470,'_blocks_10_content','field_64d237e8bb1e1'),(138201,40470,'blocks_10_accordion_content','faqs'),(138202,40470,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(138203,40470,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(138204,40470,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(138205,40470,'blocks_10_actions',''),(138206,40470,'_blocks_10_actions','field_61a746a817f7a'),(138207,40471,'hide_hero','0'),(138208,40471,'_hide_hero','field_66a2380fcda39'),(138209,40471,'hero_title','Biomechanics and Podiatrists'),(138210,40471,'_hero_title','field_617571fe285e8'),(138211,40471,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(138212,40471,'_hero_text','field_6175723c285e9'),(138213,40471,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(138214,40471,'_hero_actions_0_button','field_61757281285eb'),(138215,40471,'hero_actions','1'),(138216,40471,'_hero_actions','field_61757270285ea'),(138217,40471,'hero_style','default'),(138218,40471,'_hero_style','field_62051d9dc5324'),(138219,40471,'_thumbnail_id','39247'),(138220,40471,'__thumbnail_id','field_617570855ddaf'),(138221,40471,'hero_image_pos_x','right'),(138222,40471,'_hero_image_pos_x','field_62ec3d05390bb'),(138223,40471,'hero_image_pos_y','top'),(138224,40471,'_hero_image_pos_y','field_62ec3d05390bc'),(138225,40471,'hero_image_pos',''),(138226,40471,'_hero_image_pos','field_62ec3d05390ba'),(138227,40471,'fft_hide_from_listings','0'),(138228,40471,'_fft_hide_from_listings','field_61f1320446ab2'),(138229,40471,'fft_page_format','default'),(138230,40471,'_fft_page_format','field_61ae213f1f218'),(138231,40471,'fft_hide_nav','0'),(138232,40471,'_fft_hide_nav','field_635bd5e43527c'),(138233,40471,'fft_hide_header_call_to_action','0'),(138234,40471,'_fft_hide_header_call_to_action','field_635bd6723527d'),(138235,40471,'fft_page_sitemap','0'),(138236,40471,'_fft_page_sitemap','field_61af9b34e8181'),(138237,40471,'blocks','a:9:{i:0;s:5:\"steps\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:4:\"tabs\";i:4;s:10:\"text_block\";i:5;s:5:\"icons\";i:6;s:16:\"standard_content\";i:7;s:18:\"testimonial_slider\";i:8;s:10:\"accordions\";}'),(138238,40471,'_blocks','field_6176696113096'),(138239,40471,'blocks_0_acfe_flexible_toggle',''),(138240,40471,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(138241,40471,'blocks_0_acfe_flexible_layout_title','Steps'),(138242,40471,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(138243,40471,'blocks_0_row_content_title',''),(138244,40471,'_blocks_0_row_content_title','field_64888cd1e26e0'),(138245,40471,'blocks_0_row_content_heading','Benefits of training with us'),(138246,40471,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(138247,40471,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(138248,40471,'_blocks_0_row_content_text','field_64888ce2e26e2'),(138249,40471,'blocks_0_row_content_actions',''),(138250,40471,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(138251,40471,'blocks_0_row_content',''),(138252,40471,'_blocks_0_row_content','field_64888cb0e26df'),(138253,40471,'blocks_0_steps_0_icon','progression.svg'),(138254,40471,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(138255,40471,'blocks_0_steps_0_title','Earning Potential'),(138256,40471,'_blocks_0_steps_0_title','field_64888d94e26e7'),(138257,40471,'blocks_0_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(138258,40471,'_blocks_0_steps_0_text','field_64888d99e26e8'),(138259,40471,'blocks_0_steps_1_icon','support.svg'),(138260,40471,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(138261,40471,'blocks_0_steps_1_title','Lifetime Learning Promise'),(138262,40471,'_blocks_0_steps_1_title','field_64888d94e26e7'),(138263,40471,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(138264,40471,'_blocks_0_steps_1_text','field_64888d99e26e8'),(138265,40471,'blocks_0_steps_2_icon','qualification.svg'),(138266,40471,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(138267,40471,'blocks_0_steps_2_title','Evidence Based Hands on Learning'),(138268,40471,'_blocks_0_steps_2_title','field_64888d94e26e7'),(138269,40471,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(138270,40471,'_blocks_0_steps_2_text','field_64888d99e26e8'),(138271,40471,'blocks_0_steps_3_icon','leaders.svg'),(138272,40471,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(138273,40471,'blocks_0_steps_3_title','Stand Out From the Crowd'),(138274,40471,'_blocks_0_steps_3_title','field_64888d94e26e7'),(138275,40471,'blocks_0_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(138276,40471,'_blocks_0_steps_3_text','field_64888d99e26e8'),(138277,40471,'blocks_0_steps','4'),(138278,40471,'_blocks_0_steps','field_64888d44e26e5'),(138279,40471,'blocks_1_acfe_flexible_toggle',''),(138280,40471,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(138281,40471,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(138282,40471,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(138283,40471,'blocks_1_options_theme','#ffffff'),(138284,40471,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(138285,40471,'blocks_1_options_reverse','0'),(138286,40471,'_blocks_1_options_reverse','field_61768049bb8ac'),(138287,40471,'blocks_1_options',''),(138288,40471,'_blocks_1_options','field_617682517c334'),(138289,40471,'blocks_1_split_5050_image','39617'),(138290,40471,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(138291,40471,'blocks_1_split_5050_video',''),(138292,40471,'_blocks_1_split_5050_video','field_6239f3160848a'),(138293,40471,'blocks_1_split_5050_content_title',''),(138294,40471,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(138295,40471,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(138296,40471,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(138297,40471,'blocks_1_split_5050_content_text','This integrated system is enabling podiatrists to find solutions to foot problems through understanding the upper body and shoulders. By assessing the entire body, this unique approach gives podiatrists the ability to retain clients longer and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(138298,40471,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(138299,40471,'blocks_1_split_5050_content_actions',''),(138300,40471,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(138301,40471,'blocks_1_split_5050_content',''),(138302,40471,'_blocks_1_split_5050_content','field_61767afceb8ba'),(138303,40471,'blocks_2_acfe_flexible_toggle',''),(138304,40471,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(138305,40471,'blocks_2_acfe_flexible_layout_title','Form'),(138306,40471,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(138307,40471,'blocks_2_row_content_format','standard'),(138308,40471,'_blocks_2_row_content_format','field_6481ead962881'),(138309,40471,'blocks_2_row_content_title',''),(138310,40471,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(138311,40471,'blocks_2_row_content_heading','Enquire Today'),(138312,40471,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(138313,40471,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(138314,40471,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(138315,40471,'blocks_2_row_content_actions',''),(138316,40471,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(138317,40471,'blocks_2_row_content',''),(138318,40471,'_blocks_2_row_content','field_61a0f5f5b3db0'),(138319,40471,'blocks_2_row_form',''),(138320,40471,'_blocks_2_row_form','field_61a4ff2c0b08e'),(138321,40471,'blocks_2_row_form_button_label',''),(138322,40471,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(138323,40471,'blocks_3_acfe_flexible_toggle',''),(138324,40471,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(138325,40471,'blocks_3_acfe_flexible_layout_title','Tabs'),(138326,40471,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(138327,40471,'blocks_3_options_theme','#ffffff'),(138328,40471,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(138329,40471,'blocks_3_options',''),(138330,40471,'_blocks_3_options','field_6177cfcd8140f'),(138331,40471,'blocks_3_tabs_0_tab_label','What will I learn ?'),(138332,40471,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(138333,40471,'blocks_3_tabs_0_tab_content_title',''),(138334,40471,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(138335,40471,'blocks_3_tabs_0_tab_content_heading','What you’ll learn'),(138336,40471,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(138337,40471,'blocks_3_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(138338,40471,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(138339,40471,'blocks_3_tabs_0_tab_content_actions',''),(138340,40471,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(138341,40471,'blocks_3_tabs_0_tab_content',''),(138342,40471,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(138343,40471,'blocks_3_tabs_0_tab_image','39076'),(138344,40471,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(138345,40471,'blocks_3_tabs_1_tab_label','What do I need ?'),(138346,40471,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(138347,40471,'blocks_3_tabs_1_tab_content_title',''),(138348,40471,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(138349,40471,'blocks_3_tabs_1_tab_content_heading','Entry requirements'),(138350,40471,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(138351,40471,'blocks_3_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(138352,40471,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(138353,40471,'blocks_3_tabs_1_tab_content_actions',''),(138354,40471,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(138355,40471,'blocks_3_tabs_1_tab_content',''),(138356,40471,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(138357,40471,'blocks_3_tabs_1_tab_image','39223'),(138358,40471,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(138359,40471,'blocks_3_tabs_2_tab_label','Where can I learn ?'),(138360,40471,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(138361,40471,'blocks_3_tabs_2_tab_content_title',''),(138362,40471,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(138363,40471,'blocks_3_tabs_2_tab_content_heading','Locations'),(138364,40471,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(138365,40471,'blocks_3_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(138366,40471,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(138367,40471,'blocks_3_tabs_2_tab_content_actions',''),(138368,40471,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(138369,40471,'blocks_3_tabs_2_tab_content',''),(138370,40471,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(138371,40471,'blocks_3_tabs_2_tab_image','39224'),(138372,40471,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(138373,40471,'blocks_3_tabs','3'),(138374,40471,'_blocks_3_tabs','field_6177cff281419'),(138375,40471,'blocks_4_acfe_flexible_toggle',''),(138376,40471,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(138377,40471,'blocks_4_acfe_flexible_layout_title','Text Block'),(138378,40471,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(138379,40471,'blocks_4_options_theme','#b61234'),(138380,40471,'_blocks_4_options_theme','field_6176830e2ad17'),(138381,40471,'blocks_4_options',''),(138382,40471,'_blocks_4_options','field_6176830e2ad16'),(138383,40471,'blocks_4_text_block_heading','Fees & Funding Options'),(138384,40471,'_blocks_4_text_block_heading','field_617669d413097'),(138385,40471,'blocks_4_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(138386,40471,'_blocks_4_text_block_content','field_617669ec13098'),(138387,40471,'blocks_5_acfe_flexible_toggle',''),(138388,40471,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(138389,40471,'blocks_5_acfe_flexible_layout_title','Icons'),(138390,40471,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(138391,40471,'blocks_5_options_theme','#b61234'),(138392,40471,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(138393,40471,'blocks_5_options_format','row'),(138394,40471,'_blocks_5_options_format','field_64bfde9a90690'),(138395,40471,'blocks_5_options',''),(138396,40471,'_blocks_5_options','field_64bfdd9b90684'),(138397,40471,'blocks_5_icon_row_items_0_icon','payment-plans.svg'),(138398,40471,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(138399,40471,'blocks_5_icon_row_items_0_label','Pay in Full'),(138400,40471,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(138401,40471,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(138402,40471,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(138403,40471,'blocks_5_icon_row_items_1_icon','finance.svg'),(138404,40471,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(138405,40471,'blocks_5_icon_row_items_1_label','0% finance'),(138406,40471,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(138407,40471,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(138408,40471,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(138409,40471,'blocks_5_icon_row_items_2_icon','deposit.svg'),(138410,40471,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(138411,40471,'blocks_5_icon_row_items_2_label','Deposit & balance'),(138412,40471,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(138413,40471,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(138414,40471,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(138415,40471,'blocks_5_icon_row_items','3'),(138416,40471,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(138417,40471,'blocks_6_acfe_flexible_toggle',''),(138418,40471,'_blocks_6_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(138419,40471,'blocks_6_acfe_flexible_layout_title','Standard/Editorial Content'),(138420,40471,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(138421,40471,'blocks_6_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(138422,40471,'_blocks_6_content','field_6193c9b5eac84'),(138423,40471,'blocks_7_acfe_flexible_toggle',''),(138424,40471,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(138425,40471,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(138426,40471,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(138427,40471,'blocks_7_testimonial_slider_content_title',''),(138428,40471,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(138429,40471,'blocks_7_testimonial_slider_content_heading','Testimonials'),(138430,40471,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(138431,40471,'blocks_7_testimonial_slider_content_text',''),(138432,40471,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(138433,40471,'blocks_7_testimonial_slider_content_actions',''),(138434,40471,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(138435,40471,'blocks_7_testimonial_slider_content',''),(138436,40471,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(138437,40471,'blocks_7_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(138438,40471,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(138439,40471,'blocks_7_testimonial_slider_ambassador_bool','0'),(138440,40471,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(138441,40471,'blocks_8_acfe_flexible_toggle',''),(138442,40471,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(138443,40471,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(138444,40471,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(138445,40471,'blocks_8_options_theme','#ffffff'),(138446,40471,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(138447,40471,'blocks_8_options_state','0'),(138448,40471,'_blocks_8_options_state','field_6239fcb7508c5'),(138449,40471,'blocks_8_options',''),(138450,40471,'_blocks_8_options','field_6177e2991ac44'),(138451,40471,'blocks_8_content_title',''),(138452,40471,'_blocks_8_content_title','field_64d237e8bb1e2'),(138453,40471,'blocks_8_content_heading','Frequently asked questions '),(138454,40471,'_blocks_8_content_heading','field_64d237e8bb1e3'),(138455,40471,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(138456,40471,'_blocks_8_content_text','field_64d237e8bb1e4'),(138457,40471,'blocks_8_content_actions',''),(138458,40471,'_blocks_8_content_actions','field_64d237e8bb1e5'),(138459,40471,'blocks_8_content_align','left'),(138460,40471,'_blocks_8_content_align','field_64d2443e6b6aa'),(138461,40471,'blocks_8_content',''),(138462,40471,'_blocks_8_content','field_64d237e8bb1e1'),(138463,40471,'blocks_8_accordion_content','faqs'),(138464,40471,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(138465,40471,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(138466,40471,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(138467,40471,'blocks_8_actions',''),(138468,40471,'_blocks_8_actions','field_61a746a817f7a'),(138469,40472,'hide_hero','0'),(138470,40472,'_hide_hero','field_66a2380fcda39'),(138471,40472,'hero_title','Biomechanics and Podiatrists'),(138472,40472,'_hero_title','field_617571fe285e8'),(138473,40472,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(138474,40472,'_hero_text','field_6175723c285e9'),(138475,40472,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(138476,40472,'_hero_actions_0_button','field_61757281285eb'),(138477,40472,'hero_actions','1'),(138478,40472,'_hero_actions','field_61757270285ea'),(138479,40472,'hero_style','default'),(138480,40472,'_hero_style','field_62051d9dc5324'),(138481,40472,'_thumbnail_id','39247'),(138482,40472,'__thumbnail_id','field_617570855ddaf'),(138483,40472,'hero_image_pos_x','right'),(138484,40472,'_hero_image_pos_x','field_62ec3d05390bb'),(138485,40472,'hero_image_pos_y','top'),(138486,40472,'_hero_image_pos_y','field_62ec3d05390bc'),(138487,40472,'hero_image_pos',''),(138488,40472,'_hero_image_pos','field_62ec3d05390ba'),(138489,40472,'fft_hide_from_listings','0'),(138490,40472,'_fft_hide_from_listings','field_61f1320446ab2'),(138491,40472,'fft_page_format','default'),(138492,40472,'_fft_page_format','field_61ae213f1f218'),(138493,40472,'fft_hide_nav','0'),(138494,40472,'_fft_hide_nav','field_635bd5e43527c'),(138495,40472,'fft_hide_header_call_to_action','0'),(138496,40472,'_fft_hide_header_call_to_action','field_635bd6723527d'),(138497,40472,'fft_page_sitemap','0'),(138498,40472,'_fft_page_sitemap','field_61af9b34e8181'),(138499,40472,'blocks','a:9:{i:0;s:5:\"steps\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:4:\"tabs\";i:4;s:10:\"text_block\";i:5;s:5:\"icons\";i:6;s:16:\"standard_content\";i:7;s:18:\"testimonial_slider\";i:8;s:10:\"accordions\";}'),(138500,40472,'_blocks','field_6176696113096'),(138501,40472,'blocks_0_acfe_flexible_toggle',''),(138502,40472,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(138503,40472,'blocks_0_acfe_flexible_layout_title','Steps'),(138504,40472,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(138505,40472,'blocks_0_row_content_title',''),(138506,40472,'_blocks_0_row_content_title','field_64888cd1e26e0'),(138507,40472,'blocks_0_row_content_heading','Benefits of training with us'),(138508,40472,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(138509,40472,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(138510,40472,'_blocks_0_row_content_text','field_64888ce2e26e2'),(138511,40472,'blocks_0_row_content_actions',''),(138512,40472,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(138513,40472,'blocks_0_row_content',''),(138514,40472,'_blocks_0_row_content','field_64888cb0e26df'),(138515,40472,'blocks_0_steps_0_icon','progression.svg'),(138516,40472,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(138517,40472,'blocks_0_steps_0_title','Earning Potential'),(138518,40472,'_blocks_0_steps_0_title','field_64888d94e26e7'),(138519,40472,'blocks_0_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(138520,40472,'_blocks_0_steps_0_text','field_64888d99e26e8'),(138521,40472,'blocks_0_steps_1_icon','support.svg'),(138522,40472,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(138523,40472,'blocks_0_steps_1_title','Lifetime Learning Promise'),(138524,40472,'_blocks_0_steps_1_title','field_64888d94e26e7'),(138525,40472,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(138526,40472,'_blocks_0_steps_1_text','field_64888d99e26e8'),(138527,40472,'blocks_0_steps_2_icon','qualification.svg'),(138528,40472,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(138529,40472,'blocks_0_steps_2_title','Evidence Based Hands on Learning'),(138530,40472,'_blocks_0_steps_2_title','field_64888d94e26e7'),(138531,40472,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(138532,40472,'_blocks_0_steps_2_text','field_64888d99e26e8'),(138533,40472,'blocks_0_steps_3_icon','leaders.svg'),(138534,40472,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(138535,40472,'blocks_0_steps_3_title','Stand Out From the Crowd'),(138536,40472,'_blocks_0_steps_3_title','field_64888d94e26e7'),(138537,40472,'blocks_0_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(138538,40472,'_blocks_0_steps_3_text','field_64888d99e26e8'),(138539,40472,'blocks_0_steps','4'),(138540,40472,'_blocks_0_steps','field_64888d44e26e5'),(138541,40472,'blocks_1_acfe_flexible_toggle',''),(138542,40472,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(138543,40472,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(138544,40472,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(138545,40472,'blocks_1_options_theme','#ffffff'),(138546,40472,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(138547,40472,'blocks_1_options_reverse','0'),(138548,40472,'_blocks_1_options_reverse','field_61768049bb8ac'),(138549,40472,'blocks_1_options',''),(138550,40472,'_blocks_1_options','field_617682517c334'),(138551,40472,'blocks_1_split_5050_image','39617'),(138552,40472,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(138553,40472,'blocks_1_split_5050_video',''),(138554,40472,'_blocks_1_split_5050_video','field_6239f3160848a'),(138555,40472,'blocks_1_split_5050_content_title',''),(138556,40472,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(138557,40472,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(138558,40472,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(138559,40472,'blocks_1_split_5050_content_text','This integrated system is enabling podiatrists to find solutions to foot problems through understanding the upper body and shoulders. By assessing the entire body, this unique approach gives podiatrists the ability to retain clients longer and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(138560,40472,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(138561,40472,'blocks_1_split_5050_content_actions',''),(138562,40472,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(138563,40472,'blocks_1_split_5050_content',''),(138564,40472,'_blocks_1_split_5050_content','field_61767afceb8ba'),(138565,40472,'blocks_2_acfe_flexible_toggle',''),(138566,40472,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(138567,40472,'blocks_2_acfe_flexible_layout_title','Form'),(138568,40472,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(138569,40472,'blocks_2_row_content_format','standard'),(138570,40472,'_blocks_2_row_content_format','field_6481ead962881'),(138571,40472,'blocks_2_row_content_title',''),(138572,40472,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(138573,40472,'blocks_2_row_content_heading','Enquire Today'),(138574,40472,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(138575,40472,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(138576,40472,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(138577,40472,'blocks_2_row_content_actions',''),(138578,40472,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(138579,40472,'blocks_2_row_content',''),(138580,40472,'_blocks_2_row_content','field_61a0f5f5b3db0'),(138581,40472,'blocks_2_row_form',''),(138582,40472,'_blocks_2_row_form','field_61a4ff2c0b08e'),(138583,40472,'blocks_2_row_form_button_label',''),(138584,40472,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(138585,40472,'blocks_3_acfe_flexible_toggle',''),(138586,40472,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(138587,40472,'blocks_3_acfe_flexible_layout_title','Tabs'),(138588,40472,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(138589,40472,'blocks_3_options_theme','#ffffff'),(138590,40472,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(138591,40472,'blocks_3_options',''),(138592,40472,'_blocks_3_options','field_6177cfcd8140f'),(138593,40472,'blocks_3_tabs_0_tab_label','What will I learn?'),(138594,40472,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(138595,40472,'blocks_3_tabs_0_tab_content_title',''),(138596,40472,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(138597,40472,'blocks_3_tabs_0_tab_content_heading','What you’ll learn'),(138598,40472,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(138599,40472,'blocks_3_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(138600,40472,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(138601,40472,'blocks_3_tabs_0_tab_content_actions',''),(138602,40472,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(138603,40472,'blocks_3_tabs_0_tab_content',''),(138604,40472,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(138605,40472,'blocks_3_tabs_0_tab_image','39076'),(138606,40472,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(138607,40472,'blocks_3_tabs_1_tab_label','What do I need?'),(138608,40472,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(138609,40472,'blocks_3_tabs_1_tab_content_title',''),(138610,40472,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(138611,40472,'blocks_3_tabs_1_tab_content_heading','Entry requirements'),(138612,40472,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(138613,40472,'blocks_3_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(138614,40472,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(138615,40472,'blocks_3_tabs_1_tab_content_actions',''),(138616,40472,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(138617,40472,'blocks_3_tabs_1_tab_content',''),(138618,40472,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(138619,40472,'blocks_3_tabs_1_tab_image','39223'),(138620,40472,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(138621,40472,'blocks_3_tabs_2_tab_label','Where can I learn?'),(138622,40472,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(138623,40472,'blocks_3_tabs_2_tab_content_title',''),(138624,40472,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(138625,40472,'blocks_3_tabs_2_tab_content_heading','Locations'),(138626,40472,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(138627,40472,'blocks_3_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(138628,40472,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(138629,40472,'blocks_3_tabs_2_tab_content_actions',''),(138630,40472,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(138631,40472,'blocks_3_tabs_2_tab_content',''),(138632,40472,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(138633,40472,'blocks_3_tabs_2_tab_image','39224'),(138634,40472,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(138635,40472,'blocks_3_tabs','3'),(138636,40472,'_blocks_3_tabs','field_6177cff281419'),(138637,40472,'blocks_4_acfe_flexible_toggle',''),(138638,40472,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(138639,40472,'blocks_4_acfe_flexible_layout_title','Text Block'),(138640,40472,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(138641,40472,'blocks_4_options_theme','#b61234'),(138642,40472,'_blocks_4_options_theme','field_6176830e2ad17'),(138643,40472,'blocks_4_options',''),(138644,40472,'_blocks_4_options','field_6176830e2ad16'),(138645,40472,'blocks_4_text_block_heading','Fees & Funding Options'),(138646,40472,'_blocks_4_text_block_heading','field_617669d413097'),(138647,40472,'blocks_4_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(138648,40472,'_blocks_4_text_block_content','field_617669ec13098'),(138649,40472,'blocks_5_acfe_flexible_toggle',''),(138650,40472,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(138651,40472,'blocks_5_acfe_flexible_layout_title','Icons'),(138652,40472,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(138653,40472,'blocks_5_options_theme','#b61234'),(138654,40472,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(138655,40472,'blocks_5_options_format','row'),(138656,40472,'_blocks_5_options_format','field_64bfde9a90690'),(138657,40472,'blocks_5_options',''),(138658,40472,'_blocks_5_options','field_64bfdd9b90684'),(138659,40472,'blocks_5_icon_row_items_0_icon','payment-plans.svg'),(138660,40472,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(138661,40472,'blocks_5_icon_row_items_0_label','Pay in Full'),(138662,40472,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(138663,40472,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(138664,40472,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(138665,40472,'blocks_5_icon_row_items_1_icon','finance.svg'),(138666,40472,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(138667,40472,'blocks_5_icon_row_items_1_label','0% finance'),(138668,40472,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(138669,40472,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(138670,40472,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(138671,40472,'blocks_5_icon_row_items_2_icon','deposit.svg'),(138672,40472,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(138673,40472,'blocks_5_icon_row_items_2_label','Deposit & balance'),(138674,40472,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(138675,40472,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(138676,40472,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(138677,40472,'blocks_5_icon_row_items','3'),(138678,40472,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(138679,40472,'blocks_6_acfe_flexible_toggle',''),(138680,40472,'_blocks_6_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(138681,40472,'blocks_6_acfe_flexible_layout_title','Standard/Editorial Content'),(138682,40472,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(138683,40472,'blocks_6_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(138684,40472,'_blocks_6_content','field_6193c9b5eac84'),(138685,40472,'blocks_7_acfe_flexible_toggle',''),(138686,40472,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(138687,40472,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(138688,40472,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(138689,40472,'blocks_7_testimonial_slider_content_title',''),(138690,40472,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(138691,40472,'blocks_7_testimonial_slider_content_heading','Testimonials'),(138692,40472,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(138693,40472,'blocks_7_testimonial_slider_content_text',''),(138694,40472,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(138695,40472,'blocks_7_testimonial_slider_content_actions',''),(138696,40472,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(138697,40472,'blocks_7_testimonial_slider_content',''),(138698,40472,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(138699,40472,'blocks_7_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(138700,40472,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(138701,40472,'blocks_7_testimonial_slider_ambassador_bool','0'),(138702,40472,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(138703,40472,'blocks_8_acfe_flexible_toggle',''),(138704,40472,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(138705,40472,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(138706,40472,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(138707,40472,'blocks_8_options_theme','#ffffff'),(138708,40472,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(138709,40472,'blocks_8_options_state','0'),(138710,40472,'_blocks_8_options_state','field_6239fcb7508c5'),(138711,40472,'blocks_8_options',''),(138712,40472,'_blocks_8_options','field_6177e2991ac44'),(138713,40472,'blocks_8_content_title',''),(138714,40472,'_blocks_8_content_title','field_64d237e8bb1e2'),(138715,40472,'blocks_8_content_heading','Frequently asked questions '),(138716,40472,'_blocks_8_content_heading','field_64d237e8bb1e3'),(138717,40472,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(138718,40472,'_blocks_8_content_text','field_64d237e8bb1e4'),(138719,40472,'blocks_8_content_actions',''),(138720,40472,'_blocks_8_content_actions','field_64d237e8bb1e5'),(138721,40472,'blocks_8_content_align','left'),(138722,40472,'_blocks_8_content_align','field_64d2443e6b6aa'),(138723,40472,'blocks_8_content',''),(138724,40472,'_blocks_8_content','field_64d237e8bb1e1'),(138725,40472,'blocks_8_accordion_content','faqs'),(138726,40472,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(138727,40472,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(138728,40472,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(138729,40472,'blocks_8_actions',''),(138730,40472,'_blocks_8_actions','field_61a746a817f7a'),(138731,40473,'hide_hero','0'),(138732,40473,'_hide_hero','field_66a2380fcda39'),(138733,40473,'hero_title','Biomechanics and Podiatrists'),(138734,40473,'_hero_title','field_617571fe285e8'),(138735,40473,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(138736,40473,'_hero_text','field_6175723c285e9'),(138737,40473,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(138738,40473,'_hero_actions_0_button','field_61757281285eb'),(138739,40473,'hero_actions','1'),(138740,40473,'_hero_actions','field_61757270285ea'),(138741,40473,'hero_style','default'),(138742,40473,'_hero_style','field_62051d9dc5324'),(138743,40473,'_thumbnail_id','39247'),(138744,40473,'__thumbnail_id','field_617570855ddaf'),(138745,40473,'hero_image_pos_x','right'),(138746,40473,'_hero_image_pos_x','field_62ec3d05390bb'),(138747,40473,'hero_image_pos_y','top'),(138748,40473,'_hero_image_pos_y','field_62ec3d05390bc'),(138749,40473,'hero_image_pos',''),(138750,40473,'_hero_image_pos','field_62ec3d05390ba'),(138751,40473,'fft_hide_from_listings','0'),(138752,40473,'_fft_hide_from_listings','field_61f1320446ab2'),(138753,40473,'fft_page_format','default'),(138754,40473,'_fft_page_format','field_61ae213f1f218'),(138755,40473,'fft_hide_nav','0'),(138756,40473,'_fft_hide_nav','field_635bd5e43527c'),(138757,40473,'fft_hide_header_call_to_action','0'),(138758,40473,'_fft_hide_header_call_to_action','field_635bd6723527d'),(138759,40473,'fft_page_sitemap','0'),(138760,40473,'_fft_page_sitemap','field_61af9b34e8181'),(138761,40473,'blocks','a:9:{i:0;s:5:\"steps\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:4:\"tabs\";i:4;s:10:\"text_block\";i:5;s:5:\"icons\";i:6;s:16:\"standard_content\";i:7;s:18:\"testimonial_slider\";i:8;s:10:\"accordions\";}'),(138762,40473,'_blocks','field_6176696113096'),(138763,40473,'blocks_0_acfe_flexible_toggle',''),(138764,40473,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(138765,40473,'blocks_0_acfe_flexible_layout_title','Steps'),(138766,40473,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(138767,40473,'blocks_0_row_content_title',''),(138768,40473,'_blocks_0_row_content_title','field_64888cd1e26e0'),(138769,40473,'blocks_0_row_content_heading','Benefits of training with us'),(138770,40473,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(138771,40473,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(138772,40473,'_blocks_0_row_content_text','field_64888ce2e26e2'),(138773,40473,'blocks_0_row_content_actions',''),(138774,40473,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(138775,40473,'blocks_0_row_content',''),(138776,40473,'_blocks_0_row_content','field_64888cb0e26df'),(138777,40473,'blocks_0_steps_0_icon','progression.svg'),(138778,40473,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(138779,40473,'blocks_0_steps_0_title','Earning Potential'),(138780,40473,'_blocks_0_steps_0_title','field_64888d94e26e7'),(138781,40473,'blocks_0_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(138782,40473,'_blocks_0_steps_0_text','field_64888d99e26e8'),(138783,40473,'blocks_0_steps_1_icon','support.svg'),(138784,40473,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(138785,40473,'blocks_0_steps_1_title','Lifetime Learning Promise'),(138786,40473,'_blocks_0_steps_1_title','field_64888d94e26e7'),(138787,40473,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(138788,40473,'_blocks_0_steps_1_text','field_64888d99e26e8'),(138789,40473,'blocks_0_steps_2_icon','qualification.svg'),(138790,40473,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(138791,40473,'blocks_0_steps_2_title','Evidence Based Hands on Learning'),(138792,40473,'_blocks_0_steps_2_title','field_64888d94e26e7'),(138793,40473,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(138794,40473,'_blocks_0_steps_2_text','field_64888d99e26e8'),(138795,40473,'blocks_0_steps_3_icon','leaders.svg'),(138796,40473,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(138797,40473,'blocks_0_steps_3_title','Stand Out From the Crowd'),(138798,40473,'_blocks_0_steps_3_title','field_64888d94e26e7'),(138799,40473,'blocks_0_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(138800,40473,'_blocks_0_steps_3_text','field_64888d99e26e8'),(138801,40473,'blocks_0_steps','4'),(138802,40473,'_blocks_0_steps','field_64888d44e26e5'),(138803,40473,'blocks_1_acfe_flexible_toggle',''),(138804,40473,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(138805,40473,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(138806,40473,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(138807,40473,'blocks_1_options_theme','#ffffff'),(138808,40473,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(138809,40473,'blocks_1_options_reverse','0'),(138810,40473,'_blocks_1_options_reverse','field_61768049bb8ac'),(138811,40473,'blocks_1_options',''),(138812,40473,'_blocks_1_options','field_617682517c334'),(138813,40473,'blocks_1_split_5050_image','39617'),(138814,40473,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(138815,40473,'blocks_1_split_5050_video',''),(138816,40473,'_blocks_1_split_5050_video','field_6239f3160848a'),(138817,40473,'blocks_1_split_5050_content_title',''),(138818,40473,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(138819,40473,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(138820,40473,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(138821,40473,'blocks_1_split_5050_content_text','This integrated system is enabling podiatrists to find solutions to foot problems through understanding the upper body and shoulders. By assessing the entire body, this unique approach gives podiatrists the ability to retain clients longer and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(138822,40473,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(138823,40473,'blocks_1_split_5050_content_actions',''),(138824,40473,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(138825,40473,'blocks_1_split_5050_content',''),(138826,40473,'_blocks_1_split_5050_content','field_61767afceb8ba'),(138827,40473,'blocks_2_acfe_flexible_toggle',''),(138828,40473,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(138829,40473,'blocks_2_acfe_flexible_layout_title','Form'),(138830,40473,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(138831,40473,'blocks_2_row_content_format','standard'),(138832,40473,'_blocks_2_row_content_format','field_6481ead962881'),(138833,40473,'blocks_2_row_content_title',''),(138834,40473,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(138835,40473,'blocks_2_row_content_heading','Enquire Today'),(138836,40473,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(138837,40473,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(138838,40473,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(138839,40473,'blocks_2_row_content_actions',''),(138840,40473,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(138841,40473,'blocks_2_row_content',''),(138842,40473,'_blocks_2_row_content','field_61a0f5f5b3db0'),(138843,40473,'blocks_2_row_form',''),(138844,40473,'_blocks_2_row_form','field_61a4ff2c0b08e'),(138845,40473,'blocks_2_row_form_button_label',''),(138846,40473,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(138847,40473,'blocks_3_acfe_flexible_toggle',''),(138848,40473,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(138849,40473,'blocks_3_acfe_flexible_layout_title','Tabs'),(138850,40473,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(138851,40473,'blocks_3_options_theme','#ffffff'),(138852,40473,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(138853,40473,'blocks_3_options',''),(138854,40473,'_blocks_3_options','field_6177cfcd8140f'),(138855,40473,'blocks_3_tabs_0_tab_label','What will I learn?'),(138856,40473,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(138857,40473,'blocks_3_tabs_0_tab_content_title',''),(138858,40473,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(138859,40473,'blocks_3_tabs_0_tab_content_heading','What you’ll learn'),(138860,40473,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(138861,40473,'blocks_3_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(138862,40473,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(138863,40473,'blocks_3_tabs_0_tab_content_actions',''),(138864,40473,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(138865,40473,'blocks_3_tabs_0_tab_content',''),(138866,40473,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(138867,40473,'blocks_3_tabs_0_tab_image','39076'),(138868,40473,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(138869,40473,'blocks_3_tabs_1_tab_label','What do I need?'),(138870,40473,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(138871,40473,'blocks_3_tabs_1_tab_content_title',''),(138872,40473,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(138873,40473,'blocks_3_tabs_1_tab_content_heading','Entry requirements'),(138874,40473,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(138875,40473,'blocks_3_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(138876,40473,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(138877,40473,'blocks_3_tabs_1_tab_content_actions',''),(138878,40473,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(138879,40473,'blocks_3_tabs_1_tab_content',''),(138880,40473,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(138881,40473,'blocks_3_tabs_1_tab_image','39223'),(138882,40473,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(138883,40473,'blocks_3_tabs_2_tab_label','Where can I learn?'),(138884,40473,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(138885,40473,'blocks_3_tabs_2_tab_content_title',''),(138886,40473,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(138887,40473,'blocks_3_tabs_2_tab_content_heading','Locations'),(138888,40473,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(138889,40473,'blocks_3_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(138890,40473,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(138891,40473,'blocks_3_tabs_2_tab_content_actions',''),(138892,40473,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(138893,40473,'blocks_3_tabs_2_tab_content',''),(138894,40473,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(138895,40473,'blocks_3_tabs_2_tab_image','39224'),(138896,40473,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(138897,40473,'blocks_3_tabs','3'),(138898,40473,'_blocks_3_tabs','field_6177cff281419'),(138899,40473,'blocks_4_acfe_flexible_toggle',''),(138900,40473,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(138901,40473,'blocks_4_acfe_flexible_layout_title','Text Block'),(138902,40473,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(138903,40473,'blocks_4_options_theme','#b61234'),(138904,40473,'_blocks_4_options_theme','field_6176830e2ad17'),(138905,40473,'blocks_4_options',''),(138906,40473,'_blocks_4_options','field_6176830e2ad16'),(138907,40473,'blocks_4_text_block_heading','Fees & Funding Options'),(138908,40473,'_blocks_4_text_block_heading','field_617669d413097'),(138909,40473,'blocks_4_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(138910,40473,'_blocks_4_text_block_content','field_617669ec13098'),(138911,40473,'blocks_5_acfe_flexible_toggle',''),(138912,40473,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(138913,40473,'blocks_5_acfe_flexible_layout_title','Icons'),(138914,40473,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(138915,40473,'blocks_5_options_theme','#b61234'),(138916,40473,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(138917,40473,'blocks_5_options_format','row'),(138918,40473,'_blocks_5_options_format','field_64bfde9a90690'),(138919,40473,'blocks_5_options',''),(138920,40473,'_blocks_5_options','field_64bfdd9b90684'),(138921,40473,'blocks_5_icon_row_items_0_icon','payment-plans.svg'),(138922,40473,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(138923,40473,'blocks_5_icon_row_items_0_label','Pay in Full'),(138924,40473,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(138925,40473,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(138926,40473,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(138927,40473,'blocks_5_icon_row_items_1_icon','finance.svg'),(138928,40473,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(138929,40473,'blocks_5_icon_row_items_1_label','0% finance'),(138930,40473,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(138931,40473,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(138932,40473,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(138933,40473,'blocks_5_icon_row_items_2_icon','deposit.svg'),(138934,40473,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(138935,40473,'blocks_5_icon_row_items_2_label','Deposit & balance'),(138936,40473,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(138937,40473,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(138938,40473,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(138939,40473,'blocks_5_icon_row_items','3'),(138940,40473,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(138941,40473,'blocks_6_acfe_flexible_toggle',''),(138942,40473,'_blocks_6_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(138943,40473,'blocks_6_acfe_flexible_layout_title','Standard/Editorial Content'),(138944,40473,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(138945,40473,'blocks_6_content','<h2 style=\"text-align: center;\"><strong>Why Study This Course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(138946,40473,'_blocks_6_content','field_6193c9b5eac84'),(138947,40473,'blocks_7_acfe_flexible_toggle',''),(138948,40473,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(138949,40473,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(138950,40473,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(138951,40473,'blocks_7_testimonial_slider_content_title',''),(138952,40473,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(138953,40473,'blocks_7_testimonial_slider_content_heading','Testimonials'),(138954,40473,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(138955,40473,'blocks_7_testimonial_slider_content_text',''),(138956,40473,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(138957,40473,'blocks_7_testimonial_slider_content_actions',''),(138958,40473,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(138959,40473,'blocks_7_testimonial_slider_content',''),(138960,40473,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(138961,40473,'blocks_7_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(138962,40473,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(138963,40473,'blocks_7_testimonial_slider_ambassador_bool','0'),(138964,40473,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(138965,40473,'blocks_8_acfe_flexible_toggle',''),(138966,40473,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(138967,40473,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(138968,40473,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(138969,40473,'blocks_8_options_theme','#ffffff'),(138970,40473,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(138971,40473,'blocks_8_options_state','0'),(138972,40473,'_blocks_8_options_state','field_6239fcb7508c5'),(138973,40473,'blocks_8_options',''),(138974,40473,'_blocks_8_options','field_6177e2991ac44'),(138975,40473,'blocks_8_content_title',''),(138976,40473,'_blocks_8_content_title','field_64d237e8bb1e2'),(138977,40473,'blocks_8_content_heading','Frequently asked questions '),(138978,40473,'_blocks_8_content_heading','field_64d237e8bb1e3'),(138979,40473,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(138980,40473,'_blocks_8_content_text','field_64d237e8bb1e4'),(138981,40473,'blocks_8_content_actions',''),(138982,40473,'_blocks_8_content_actions','field_64d237e8bb1e5'),(138983,40473,'blocks_8_content_align','left'),(138984,40473,'_blocks_8_content_align','field_64d2443e6b6aa'),(138985,40473,'blocks_8_content',''),(138986,40473,'_blocks_8_content','field_64d237e8bb1e1'),(138987,40473,'blocks_8_accordion_content','faqs'),(138988,40473,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(138989,40473,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(138990,40473,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(138991,40473,'blocks_8_actions',''),(138992,40473,'_blocks_8_actions','field_61a746a817f7a'),(138993,40474,'hide_hero','0'),(138994,40474,'_hide_hero','field_66a2380fcda39'),(138995,40474,'hero_title','Biomechanics and Personal Training'),(138996,40474,'_hero_title','field_617571fe285e8'),(138997,40474,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(138998,40474,'_hero_text','field_6175723c285e9'),(138999,40474,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(139000,40474,'_hero_actions_0_button','field_61757281285eb'),(139001,40474,'hero_actions','1'),(139002,40474,'_hero_actions','field_61757270285ea'),(139003,40474,'hero_style','default'),(139004,40474,'_hero_style','field_62051d9dc5324'),(139005,40474,'_thumbnail_id','39215'),(139006,40474,'__thumbnail_id','field_617570855ddaf'),(139007,40474,'hero_image_pos_x','right'),(139008,40474,'_hero_image_pos_x','field_62ec3d05390bb'),(139009,40474,'hero_image_pos_y','top'),(139010,40474,'_hero_image_pos_y','field_62ec3d05390bc'),(139011,40474,'hero_image_pos',''),(139012,40474,'_hero_image_pos','field_62ec3d05390ba'),(139013,40474,'fft_hide_from_listings','0'),(139014,40474,'_fft_hide_from_listings','field_61f1320446ab2'),(139015,40474,'fft_page_format','default'),(139016,40474,'_fft_page_format','field_61ae213f1f218'),(139017,40474,'fft_hide_nav','0'),(139018,40474,'_fft_hide_nav','field_635bd5e43527c'),(139019,40474,'fft_hide_header_call_to_action','0'),(139020,40474,'_fft_hide_header_call_to_action','field_635bd6723527d'),(139021,40474,'fft_page_sitemap','0'),(139022,40474,'_fft_page_sitemap','field_61af9b34e8181'),(139023,40474,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(139024,40474,'_blocks','field_6176696113096'),(139025,40474,'blocks_0_acfe_flexible_toggle',''),(139026,40474,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(139027,40474,'blocks_0_acfe_flexible_layout_title','Template'),(139028,40474,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(139029,40474,'blocks_0_template','39087'),(139030,40474,'_blocks_0_template','field_617bdd570fe01'),(139031,40474,'blocks_1_acfe_flexible_toggle',''),(139032,40474,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(139033,40474,'blocks_1_acfe_flexible_layout_title','Steps'),(139034,40474,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(139035,40474,'blocks_1_row_content_title',''),(139036,40474,'_blocks_1_row_content_title','field_64888cd1e26e0'),(139037,40474,'blocks_1_row_content_heading','Benefits of training with us'),(139038,40474,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(139039,40474,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(139040,40474,'_blocks_1_row_content_text','field_64888ce2e26e2'),(139041,40474,'blocks_1_row_content_actions',''),(139042,40474,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(139043,40474,'blocks_1_row_content',''),(139044,40474,'_blocks_1_row_content','field_64888cb0e26df'),(139045,40474,'blocks_1_steps_0_icon','progression.svg'),(139046,40474,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(139047,40474,'blocks_1_steps_0_title','Earning Potential'),(139048,40474,'_blocks_1_steps_0_title','field_64888d94e26e7'),(139049,40474,'blocks_1_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(139050,40474,'_blocks_1_steps_0_text','field_64888d99e26e8'),(139051,40474,'blocks_1_steps_1_icon','support.svg'),(139052,40474,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(139053,40474,'blocks_1_steps_1_title','Lifetime Learning Promise'),(139054,40474,'_blocks_1_steps_1_title','field_64888d94e26e7'),(139055,40474,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(139056,40474,'_blocks_1_steps_1_text','field_64888d99e26e8'),(139057,40474,'blocks_1_steps_2_icon','qualification.svg'),(139058,40474,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(139059,40474,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(139060,40474,'_blocks_1_steps_2_title','field_64888d94e26e7'),(139061,40474,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(139062,40474,'_blocks_1_steps_2_text','field_64888d99e26e8'),(139063,40474,'blocks_1_steps_3_icon','leaders.svg'),(139064,40474,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(139065,40474,'blocks_1_steps_3_title','Stand Out From the Crowd'),(139066,40474,'_blocks_1_steps_3_title','field_64888d94e26e7'),(139067,40474,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(139068,40474,'_blocks_1_steps_3_text','field_64888d99e26e8'),(139069,40474,'blocks_1_steps','4'),(139070,40474,'_blocks_1_steps','field_64888d44e26e5'),(139071,40474,'blocks_2_acfe_flexible_toggle',''),(139072,40474,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(139073,40474,'blocks_2_acfe_flexible_layout_title','Video'),(139074,40474,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(139075,40474,'blocks_2_size','large'),(139076,40474,'_blocks_2_size','field_6487038f297c1'),(139077,40474,'blocks_2_row_content_title',''),(139078,40474,'_blocks_2_row_content_title','field_64870132a865d'),(139079,40474,'blocks_2_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(139080,40474,'_blocks_2_row_content_heading','field_64870142a865e'),(139081,40474,'blocks_2_row_content_text',''),(139082,40474,'_blocks_2_row_content_text','field_64870148a865f'),(139083,40474,'blocks_2_row_content',''),(139084,40474,'_blocks_2_row_content','field_6487008ba865c'),(139085,40474,'blocks_2_video_src','https://youtu.be/kLVekt6aqrI'),(139086,40474,'_blocks_2_video_src','field_6193c4a98ec07'),(139087,40474,'blocks_2_video_thumbnail','39186'),(139088,40474,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(139089,40474,'blocks_3_acfe_flexible_toggle',''),(139090,40474,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(139091,40474,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(139092,40474,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(139093,40474,'blocks_3_options_theme','#ffffff'),(139094,40474,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(139095,40474,'blocks_3_options_reverse','0'),(139096,40474,'_blocks_3_options_reverse','field_61768049bb8ac'),(139097,40474,'blocks_3_options',''),(139098,40474,'_blocks_3_options','field_617682517c334'),(139099,40474,'blocks_3_split_5050_image','39220'),(139100,40474,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(139101,40474,'blocks_3_split_5050_video',''),(139102,40474,'_blocks_3_split_5050_video','field_6239f3160848a'),(139103,40474,'blocks_3_split_5050_content_title',''),(139104,40474,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(139105,40474,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a PT'),(139106,40474,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(139107,40474,'blocks_3_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(139108,40474,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(139109,40474,'blocks_3_split_5050_content_actions',''),(139110,40474,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(139111,40474,'blocks_3_split_5050_content',''),(139112,40474,'_blocks_3_split_5050_content','field_61767afceb8ba'),(139113,40474,'blocks_4_acfe_flexible_toggle',''),(139114,40474,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(139115,40474,'blocks_4_acfe_flexible_layout_title','Form'),(139116,40474,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(139117,40474,'blocks_4_row_content_format','standard'),(139118,40474,'_blocks_4_row_content_format','field_6481ead962881'),(139119,40474,'blocks_4_row_content_title',''),(139120,40474,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(139121,40474,'blocks_4_row_content_heading','Enquire Today'),(139122,40474,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(139123,40474,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(139124,40474,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(139125,40474,'blocks_4_row_content_actions',''),(139126,40474,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(139127,40474,'blocks_4_row_content',''),(139128,40474,'_blocks_4_row_content','field_61a0f5f5b3db0'),(139129,40474,'blocks_4_row_form',''),(139130,40474,'_blocks_4_row_form','field_61a4ff2c0b08e'),(139131,40474,'blocks_4_row_form_button_label',''),(139132,40474,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(139133,40474,'blocks_5_acfe_flexible_toggle',''),(139134,40474,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(139135,40474,'blocks_5_acfe_flexible_layout_title','Tabs'),(139136,40474,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(139137,40474,'blocks_5_options_theme','#ffffff'),(139138,40474,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(139139,40474,'blocks_5_options',''),(139140,40474,'_blocks_5_options','field_6177cfcd8140f'),(139141,40474,'blocks_5_tabs_0_tab_label','What will I learn?'),(139142,40474,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(139143,40474,'blocks_5_tabs_0_tab_content_title',''),(139144,40474,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(139145,40474,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(139146,40474,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(139147,40474,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(139148,40474,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(139149,40474,'blocks_5_tabs_0_tab_content_actions',''),(139150,40474,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(139151,40474,'blocks_5_tabs_0_tab_content',''),(139152,40474,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(139153,40474,'blocks_5_tabs_0_tab_image','39076'),(139154,40474,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(139155,40474,'blocks_5_tabs_1_tab_label','What do I need?'),(139156,40474,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(139157,40474,'blocks_5_tabs_1_tab_content_title',''),(139158,40474,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(139159,40474,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(139160,40474,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(139161,40474,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(139162,40474,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(139163,40474,'blocks_5_tabs_1_tab_content_actions',''),(139164,40474,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(139165,40474,'blocks_5_tabs_1_tab_content',''),(139166,40474,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(139167,40474,'blocks_5_tabs_1_tab_image','39223'),(139168,40474,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(139169,40474,'blocks_5_tabs_2_tab_label','Where can I learn?'),(139170,40474,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(139171,40474,'blocks_5_tabs_2_tab_content_title',''),(139172,40474,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(139173,40474,'blocks_5_tabs_2_tab_content_heading','Locations'),(139174,40474,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(139175,40474,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(139176,40474,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(139177,40474,'blocks_5_tabs_2_tab_content_actions',''),(139178,40474,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(139179,40474,'blocks_5_tabs_2_tab_content',''),(139180,40474,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(139181,40474,'blocks_5_tabs_2_tab_image','39224'),(139182,40474,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(139183,40474,'blocks_5_tabs','3'),(139184,40474,'_blocks_5_tabs','field_6177cff281419'),(139185,40474,'blocks_6_acfe_flexible_toggle',''),(139186,40474,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(139187,40474,'blocks_6_acfe_flexible_layout_title','Text Block'),(139188,40474,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(139189,40474,'blocks_6_options_theme','#b61234'),(139190,40474,'_blocks_6_options_theme','field_6176830e2ad17'),(139191,40474,'blocks_6_options',''),(139192,40474,'_blocks_6_options','field_6176830e2ad16'),(139193,40474,'blocks_6_text_block_heading','Fees & Funding Options'),(139194,40474,'_blocks_6_text_block_heading','field_617669d413097'),(139195,40474,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(139196,40474,'_blocks_6_text_block_content','field_617669ec13098'),(139197,40474,'blocks_7_acfe_flexible_toggle',''),(139198,40474,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(139199,40474,'blocks_7_acfe_flexible_layout_title','Icons'),(139200,40474,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(139201,40474,'blocks_7_options_theme','#b61234'),(139202,40474,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(139203,40474,'blocks_7_options_format','row'),(139204,40474,'_blocks_7_options_format','field_64bfde9a90690'),(139205,40474,'blocks_7_options',''),(139206,40474,'_blocks_7_options','field_64bfdd9b90684'),(139207,40474,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(139208,40474,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(139209,40474,'blocks_7_icon_row_items_0_label','Pay in Full'),(139210,40474,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(139211,40474,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(139212,40474,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(139213,40474,'blocks_7_icon_row_items_1_icon','finance.svg'),(139214,40474,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(139215,40474,'blocks_7_icon_row_items_1_label','0% finance'),(139216,40474,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(139217,40474,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(139218,40474,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(139219,40474,'blocks_7_icon_row_items_2_icon','deposit.svg'),(139220,40474,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(139221,40474,'blocks_7_icon_row_items_2_label','Deposit & balance'),(139222,40474,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(139223,40474,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(139224,40474,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(139225,40474,'blocks_7_icon_row_items','3'),(139226,40474,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(139227,40474,'blocks_8_acfe_flexible_toggle',''),(139228,40474,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(139229,40474,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(139230,40474,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(139231,40474,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why Study This Course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(139232,40474,'_blocks_8_content','field_6193c9b5eac84'),(139233,40474,'blocks_9_acfe_flexible_toggle',''),(139234,40474,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(139235,40474,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(139236,40474,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(139237,40474,'blocks_9_testimonial_slider_content_title',''),(139238,40474,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(139239,40474,'blocks_9_testimonial_slider_content_heading','Testimonials'),(139240,40474,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(139241,40474,'blocks_9_testimonial_slider_content_text',''),(139242,40474,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(139243,40474,'blocks_9_testimonial_slider_content_actions',''),(139244,40474,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(139245,40474,'blocks_9_testimonial_slider_content',''),(139246,40474,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(139247,40474,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(139248,40474,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(139249,40474,'blocks_9_testimonial_slider_ambassador_bool','0'),(139250,40474,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(139251,40474,'blocks_10_acfe_flexible_toggle',''),(139252,40474,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(139253,40474,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(139254,40474,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(139255,40474,'blocks_10_options_theme','#ffffff'),(139256,40474,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(139257,40474,'blocks_10_options_state','0'),(139258,40474,'_blocks_10_options_state','field_6239fcb7508c5'),(139259,40474,'blocks_10_options',''),(139260,40474,'_blocks_10_options','field_6177e2991ac44'),(139261,40474,'blocks_10_content_title',''),(139262,40474,'_blocks_10_content_title','field_64d237e8bb1e2'),(139263,40474,'blocks_10_content_heading','Frequently asked questions '),(139264,40474,'_blocks_10_content_heading','field_64d237e8bb1e3'),(139265,40474,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(139266,40474,'_blocks_10_content_text','field_64d237e8bb1e4'),(139267,40474,'blocks_10_content_actions',''),(139268,40474,'_blocks_10_content_actions','field_64d237e8bb1e5'),(139269,40474,'blocks_10_content_align','left'),(139270,40474,'_blocks_10_content_align','field_64d2443e6b6aa'),(139271,40474,'blocks_10_content',''),(139272,40474,'_blocks_10_content','field_64d237e8bb1e1'),(139273,40474,'blocks_10_accordion_content','faqs'),(139274,40474,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(139275,40474,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(139276,40474,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(139277,40474,'blocks_10_actions',''),(139278,40474,'_blocks_10_actions','field_61a746a817f7a'),(139279,40475,'_wp_attached_file','2024/09/DSC01621-scaled.jpg'),(139280,40475,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:27:\"2024/09/DSC01621-scaled.jpg\";s:8:\"filesize\";i:652348;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC01621-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165535;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC01621-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:233871;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC01621-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75459;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC01621-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138390;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC01621-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:319938;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC01621-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:473285;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC01621-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84564;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC01621-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195544;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC01621-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:277464;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC01621-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75306;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC01621-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165535;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC01621-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:233871;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC01621-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73513;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC01621-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156855;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"DSC01621-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218553;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"DSC01621-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78271;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"DSC01621-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177158;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"DSC01621-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:250672;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"DSC01621-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70273;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"DSC01621-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148858;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"DSC01621-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207633;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1583579960\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"52\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC01621.jpg\";}'),(139281,40475,'_wp_attachment_image_alt','Men nd women in a classroom setting, all wearing gym gear, and listening intently with pens and paper in front of them.'),(139627,40477,'hide_hero','0'),(139628,40477,'_hide_hero','field_66a2380fcda39'),(139629,40477,'hero_title','Biomechanics and Pilates'),(139630,40477,'_hero_title','field_617571fe285e8'),(139631,40477,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(139632,40477,'_hero_text','field_6175723c285e9'),(139633,40477,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(139634,40477,'_hero_actions_0_button','field_61757281285eb'),(139635,40477,'hero_actions','1'),(139636,40477,'_hero_actions','field_61757270285ea'),(139637,40477,'hero_style','default'),(139638,40477,'_hero_style','field_62051d9dc5324'),(139639,40477,'_thumbnail_id','39243'),(139640,40477,'__thumbnail_id','field_617570855ddaf'),(139641,40477,'hero_image_pos_x','right'),(139642,40477,'_hero_image_pos_x','field_62ec3d05390bb'),(139643,40477,'hero_image_pos_y','top'),(139644,40477,'_hero_image_pos_y','field_62ec3d05390bc'),(139645,40477,'hero_image_pos',''),(139646,40477,'_hero_image_pos','field_62ec3d05390ba'),(139647,40477,'fft_hide_from_listings','0'),(139648,40477,'_fft_hide_from_listings','field_61f1320446ab2'),(139649,40477,'fft_page_format','default'),(139650,40477,'_fft_page_format','field_61ae213f1f218'),(139651,40477,'fft_hide_nav','0'),(139652,40477,'_fft_hide_nav','field_635bd5e43527c'),(139653,40477,'fft_hide_header_call_to_action','0'),(139654,40477,'_fft_hide_header_call_to_action','field_635bd6723527d'),(139655,40477,'fft_page_sitemap','0'),(139656,40477,'_fft_page_sitemap','field_61af9b34e8181'),(139657,40477,'blocks','a:10:{i:0;s:10:\"split_5050\";i:1;s:5:\"video\";i:2;s:5:\"steps\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(139658,40477,'_blocks','field_6176696113096'),(139659,40477,'blocks_1_acfe_flexible_toggle',''),(139660,40477,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(139661,40477,'blocks_1_acfe_flexible_layout_title','Video'),(139662,40477,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(139663,40477,'blocks_1_size','large'),(139664,40477,'_blocks_1_size','field_6487038f297c1'),(139665,40477,'blocks_1_row_content_title','Tom Waldron - Master Trainer'),(139666,40477,'_blocks_1_row_content_title','field_64870132a865d'),(139667,40477,'blocks_1_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(139668,40477,'_blocks_1_row_content_heading','field_64870142a865e'),(139669,40477,'blocks_1_row_content_text',''),(139670,40477,'_blocks_1_row_content_text','field_64870148a865f'),(139671,40477,'blocks_1_row_content',''),(139672,40477,'_blocks_1_row_content','field_6487008ba865c'),(139673,40477,'blocks_1_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(139674,40477,'_blocks_1_video_src','field_6193c4a98ec07'),(139675,40477,'blocks_1_video_thumbnail',''),(139676,40477,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(139677,40477,'blocks_3_acfe_flexible_toggle',''),(139678,40477,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(139679,40477,'blocks_3_acfe_flexible_layout_title','Form'),(139680,40477,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(139681,40477,'blocks_3_row_content_format','standard'),(139682,40477,'_blocks_3_row_content_format','field_6481ead962881'),(139683,40477,'blocks_3_row_content_title',''),(139684,40477,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(139685,40477,'blocks_3_row_content_heading','Enquire Today'),(139686,40477,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(139687,40477,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(139688,40477,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(139689,40477,'blocks_3_row_content_actions',''),(139690,40477,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(139691,40477,'blocks_3_row_content',''),(139692,40477,'_blocks_3_row_content','field_61a0f5f5b3db0'),(139693,40477,'blocks_3_row_form',''),(139694,40477,'_blocks_3_row_form','field_61a4ff2c0b08e'),(139695,40477,'blocks_3_row_form_button_label',''),(139696,40477,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(139697,40477,'blocks_4_acfe_flexible_toggle',''),(139698,40477,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(139699,40477,'blocks_4_acfe_flexible_layout_title','Tabs'),(139700,40477,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(139701,40477,'blocks_4_options_theme','#ffffff'),(139702,40477,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(139703,40477,'blocks_4_options',''),(139704,40477,'_blocks_4_options','field_6177cfcd8140f'),(139705,40477,'blocks_4_tabs_0_tab_label','What will I learn?'),(139706,40477,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(139707,40477,'blocks_4_tabs_0_tab_content_title',''),(139708,40477,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(139709,40477,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(139710,40477,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(139711,40477,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(139712,40477,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(139713,40477,'blocks_4_tabs_0_tab_content_actions',''),(139714,40477,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(139715,40477,'blocks_4_tabs_0_tab_content',''),(139716,40477,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(139717,40477,'blocks_4_tabs_0_tab_image','39076'),(139718,40477,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(139719,40477,'blocks_4_tabs_1_tab_label','What do I need?'),(139720,40477,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(139721,40477,'blocks_4_tabs_1_tab_content_title',''),(139722,40477,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(139723,40477,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(139724,40477,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(139725,40477,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(139726,40477,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(139727,40477,'blocks_4_tabs_1_tab_content_actions',''),(139728,40477,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(139729,40477,'blocks_4_tabs_1_tab_content',''),(139730,40477,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(139731,40477,'blocks_4_tabs_1_tab_image','39223'),(139732,40477,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(139733,40477,'blocks_4_tabs_2_tab_label','Where can I learn?'),(139734,40477,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(139735,40477,'blocks_4_tabs_2_tab_content_title',''),(139736,40477,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(139737,40477,'blocks_4_tabs_2_tab_content_heading','Locations'),(139738,40477,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(139739,40477,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(139740,40477,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(139741,40477,'blocks_4_tabs_2_tab_content_actions',''),(139742,40477,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(139743,40477,'blocks_4_tabs_2_tab_content',''),(139744,40477,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(139745,40477,'blocks_4_tabs_2_tab_image','39224'),(139746,40477,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(139747,40477,'blocks_4_tabs','3'),(139748,40477,'_blocks_4_tabs','field_6177cff281419'),(139749,40477,'blocks_5_acfe_flexible_toggle',''),(139750,40477,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(139751,40477,'blocks_5_acfe_flexible_layout_title','Text Block'),(139752,40477,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(139753,40477,'blocks_5_options_theme','#b61234'),(139754,40477,'_blocks_5_options_theme','field_6176830e2ad17'),(139755,40477,'blocks_5_options',''),(139756,40477,'_blocks_5_options','field_6176830e2ad16'),(139757,40477,'blocks_5_text_block_heading','Fees & Funding Options'),(139758,40477,'_blocks_5_text_block_heading','field_617669d413097'),(139759,40477,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(139760,40477,'_blocks_5_text_block_content','field_617669ec13098'),(139761,40477,'blocks_6_acfe_flexible_toggle',''),(139762,40477,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(139763,40477,'blocks_6_acfe_flexible_layout_title','Icons'),(139764,40477,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(139765,40477,'blocks_6_options_theme','#b61234'),(139766,40477,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(139767,40477,'blocks_6_options_format','row'),(139768,40477,'_blocks_6_options_format','field_64bfde9a90690'),(139769,40477,'blocks_6_options',''),(139770,40477,'_blocks_6_options','field_64bfdd9b90684'),(139771,40477,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(139772,40477,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(139773,40477,'blocks_6_icon_row_items_0_label','Pay in Full'),(139774,40477,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(139775,40477,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(139776,40477,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(139777,40477,'blocks_6_icon_row_items_1_icon','finance.svg'),(139778,40477,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(139779,40477,'blocks_6_icon_row_items_1_label','0% finance'),(139780,40477,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(139781,40477,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(139782,40477,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(139783,40477,'blocks_6_icon_row_items_2_icon','deposit.svg'),(139784,40477,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(139785,40477,'blocks_6_icon_row_items_2_label','Deposit & balance'),(139786,40477,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(139787,40477,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(139788,40477,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(139789,40477,'blocks_6_icon_row_items','3'),(139790,40477,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(139791,40477,'blocks_7_acfe_flexible_toggle',''),(139792,40477,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(139793,40477,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(139794,40477,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(139795,40477,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(139796,40477,'_blocks_7_content','field_6193c9b5eac84'),(139797,40477,'blocks_8_acfe_flexible_toggle',''),(139798,40477,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(139799,40477,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(139800,40477,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(139801,40477,'blocks_8_testimonial_slider_content_title',''),(139802,40477,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(139803,40477,'blocks_8_testimonial_slider_content_heading','Testimonials'),(139804,40477,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(139805,40477,'blocks_8_testimonial_slider_content_text',''),(139806,40477,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(139807,40477,'blocks_8_testimonial_slider_content_actions',''),(139808,40477,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(139809,40477,'blocks_8_testimonial_slider_content',''),(139810,40477,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(139811,40477,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(139812,40477,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(139813,40477,'blocks_8_testimonial_slider_ambassador_bool','0'),(139814,40477,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(139815,40477,'blocks_9_acfe_flexible_toggle',''),(139816,40477,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(139817,40477,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(139818,40477,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(139819,40477,'blocks_9_options_theme','#ffffff'),(139820,40477,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(139821,40477,'blocks_9_options_state','0'),(139822,40477,'_blocks_9_options_state','field_6239fcb7508c5'),(139823,40477,'blocks_9_options',''),(139824,40477,'_blocks_9_options','field_6177e2991ac44'),(139825,40477,'blocks_9_content_title',''),(139826,40477,'_blocks_9_content_title','field_64d237e8bb1e2'),(139827,40477,'blocks_9_content_heading','Frequently asked questions '),(139828,40477,'_blocks_9_content_heading','field_64d237e8bb1e3'),(139829,40477,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(139830,40477,'_blocks_9_content_text','field_64d237e8bb1e4'),(139831,40477,'blocks_9_content_actions',''),(139832,40477,'_blocks_9_content_actions','field_64d237e8bb1e5'),(139833,40477,'blocks_9_content_align','left'),(139834,40477,'_blocks_9_content_align','field_64d2443e6b6aa'),(139835,40477,'blocks_9_content',''),(139836,40477,'_blocks_9_content','field_64d237e8bb1e1'),(139837,40477,'blocks_9_accordion_content','faqs'),(139838,40477,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(139839,40477,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(139840,40477,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(139841,40477,'blocks_9_actions',''),(139842,40477,'_blocks_9_actions','field_61a746a817f7a'),(139843,40477,'blocks_0_acfe_flexible_toggle',''),(139844,40477,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(139845,40477,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(139846,40477,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(139847,40477,'blocks_0_options_theme','#ffffff'),(139848,40477,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(139849,40477,'blocks_0_options_reverse','0'),(139850,40477,'_blocks_0_options_reverse','field_61768049bb8ac'),(139851,40477,'blocks_0_options',''),(139852,40477,'_blocks_0_options','field_617682517c334'),(139853,40477,'blocks_0_split_5050_image','38037'),(139854,40477,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(139855,40477,'blocks_0_split_5050_video',''),(139856,40477,'_blocks_0_split_5050_video','field_6239f3160848a'),(139857,40477,'blocks_0_split_5050_content_title',''),(139858,40477,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(139859,40477,'blocks_0_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(139860,40477,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(139861,40477,'blocks_0_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(139862,40477,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(139863,40477,'blocks_0_split_5050_content_actions',''),(139864,40477,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(139865,40477,'blocks_0_split_5050_content',''),(139866,40477,'_blocks_0_split_5050_content','field_61767afceb8ba'),(139867,40477,'blocks_2_acfe_flexible_toggle',''),(139868,40477,'_blocks_2_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(139869,40477,'blocks_2_acfe_flexible_layout_title','Steps'),(139870,40477,'_blocks_2_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(139871,40477,'blocks_2_row_content_title',''),(139872,40477,'_blocks_2_row_content_title','field_64888cd1e26e0'),(139873,40477,'blocks_2_row_content_heading','Benefits of training with us'),(139874,40477,'_blocks_2_row_content_heading','field_64888cd9e26e1'),(139875,40477,'blocks_2_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(139876,40477,'_blocks_2_row_content_text','field_64888ce2e26e2'),(139877,40477,'blocks_2_row_content_actions',''),(139878,40477,'_blocks_2_row_content_actions','field_64888cf5e26e3'),(139879,40477,'blocks_2_row_content',''),(139880,40477,'_blocks_2_row_content','field_64888cb0e26df'),(139881,40477,'blocks_2_steps_0_icon','progression.svg'),(139882,40477,'_blocks_2_steps_0_icon','field_64888d53e26e6'),(139883,40477,'blocks_2_steps_0_title','Earning potential'),(139884,40477,'_blocks_2_steps_0_title','field_64888d94e26e7'),(139885,40477,'blocks_2_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(139886,40477,'_blocks_2_steps_0_text','field_64888d99e26e8'),(139887,40477,'blocks_2_steps_1_icon','support.svg'),(139888,40477,'_blocks_2_steps_1_icon','field_64888d53e26e6'),(139889,40477,'blocks_2_steps_1_title','Lifetime Learning Promise'),(139890,40477,'_blocks_2_steps_1_title','field_64888d94e26e7'),(139891,40477,'blocks_2_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(139892,40477,'_blocks_2_steps_1_text','field_64888d99e26e8'),(139893,40477,'blocks_2_steps_2_icon','qualification.svg'),(139894,40477,'_blocks_2_steps_2_icon','field_64888d53e26e6'),(139895,40477,'blocks_2_steps_2_title','Evidence based hands on learning'),(139896,40477,'_blocks_2_steps_2_title','field_64888d94e26e7'),(139897,40477,'blocks_2_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(139898,40477,'_blocks_2_steps_2_text','field_64888d99e26e8'),(139899,40477,'blocks_2_steps_3_icon','leaders.svg'),(139900,40477,'_blocks_2_steps_3_icon','field_64888d53e26e6'),(139901,40477,'blocks_2_steps_3_title','Stand out from the crowd'),(139902,40477,'_blocks_2_steps_3_title','field_64888d94e26e7'),(139903,40477,'blocks_2_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(139904,40477,'_blocks_2_steps_3_text','field_64888d99e26e8'),(139905,40477,'blocks_2_steps','4'),(139906,40477,'_blocks_2_steps','field_64888d44e26e5'),(139985,40478,'hide_hero','0'),(139986,40478,'_hide_hero','field_66a2380fcda39'),(139987,40478,'hero_title','Biomechanics and Pilates'),(139988,40478,'_hero_title','field_617571fe285e8'),(139989,40478,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(139990,40478,'_hero_text','field_6175723c285e9'),(139991,40478,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(139992,40478,'_hero_actions_0_button','field_61757281285eb'),(139993,40478,'hero_actions','1'),(139994,40478,'_hero_actions','field_61757270285ea'),(139995,40478,'hero_style','default'),(139996,40478,'_hero_style','field_62051d9dc5324'),(139997,40478,'_thumbnail_id','39243'),(139998,40478,'__thumbnail_id','field_617570855ddaf'),(139999,40478,'hero_image_pos_x','right'),(140000,40478,'_hero_image_pos_x','field_62ec3d05390bb'),(140001,40478,'hero_image_pos_y','top'),(140002,40478,'_hero_image_pos_y','field_62ec3d05390bc'),(140003,40478,'hero_image_pos',''),(140004,40478,'_hero_image_pos','field_62ec3d05390ba'),(140005,40478,'fft_hide_from_listings','0'),(140006,40478,'_fft_hide_from_listings','field_61f1320446ab2'),(140007,40478,'fft_page_format','default'),(140008,40478,'_fft_page_format','field_61ae213f1f218'),(140009,40478,'fft_hide_nav','0'),(140010,40478,'_fft_hide_nav','field_635bd5e43527c'),(140011,40478,'fft_hide_header_call_to_action','0'),(140012,40478,'_fft_hide_header_call_to_action','field_635bd6723527d'),(140013,40478,'fft_page_sitemap','0'),(140014,40478,'_fft_page_sitemap','field_61af9b34e8181'),(140015,40478,'blocks','a:10:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:5:\"steps\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(140016,40478,'_blocks','field_6176696113096'),(140017,40478,'blocks_4_acfe_flexible_toggle',''),(140018,40478,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(140019,40478,'blocks_4_acfe_flexible_layout_title','Tabs'),(140020,40478,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(140021,40478,'blocks_4_options_theme','#ffffff'),(140022,40478,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(140023,40478,'blocks_4_options',''),(140024,40478,'_blocks_4_options','field_6177cfcd8140f'),(140025,40478,'blocks_4_tabs_0_tab_label','What will I learn?'),(140026,40478,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(140027,40478,'blocks_4_tabs_0_tab_content_title',''),(140028,40478,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(140029,40478,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(140030,40478,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(140031,40478,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(140032,40478,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(140033,40478,'blocks_4_tabs_0_tab_content_actions',''),(140034,40478,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(140035,40478,'blocks_4_tabs_0_tab_content',''),(140036,40478,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(140037,40478,'blocks_4_tabs_0_tab_image','39076'),(140038,40478,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(140039,40478,'blocks_4_tabs_1_tab_label','What do I need?'),(140040,40478,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(140041,40478,'blocks_4_tabs_1_tab_content_title',''),(140042,40478,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(140043,40478,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(140044,40478,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(140045,40478,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(140046,40478,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(140047,40478,'blocks_4_tabs_1_tab_content_actions',''),(140048,40478,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(140049,40478,'blocks_4_tabs_1_tab_content',''),(140050,40478,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(140051,40478,'blocks_4_tabs_1_tab_image','39223'),(140052,40478,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(140053,40478,'blocks_4_tabs_2_tab_label','Where can I learn?'),(140054,40478,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(140055,40478,'blocks_4_tabs_2_tab_content_title',''),(140056,40478,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(140057,40478,'blocks_4_tabs_2_tab_content_heading','Locations'),(140058,40478,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(140059,40478,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(140060,40478,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(140061,40478,'blocks_4_tabs_2_tab_content_actions',''),(140062,40478,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(140063,40478,'blocks_4_tabs_2_tab_content',''),(140064,40478,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(140065,40478,'blocks_4_tabs_2_tab_image','39224'),(140066,40478,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(140067,40478,'blocks_4_tabs','3'),(140068,40478,'_blocks_4_tabs','field_6177cff281419'),(140069,40478,'blocks_5_acfe_flexible_toggle',''),(140070,40478,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(140071,40478,'blocks_5_acfe_flexible_layout_title','Text Block'),(140072,40478,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(140073,40478,'blocks_5_options_theme','#b61234'),(140074,40478,'_blocks_5_options_theme','field_6176830e2ad17'),(140075,40478,'blocks_5_options',''),(140076,40478,'_blocks_5_options','field_6176830e2ad16'),(140077,40478,'blocks_5_text_block_heading','Fees & Funding Options'),(140078,40478,'_blocks_5_text_block_heading','field_617669d413097'),(140079,40478,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(140080,40478,'_blocks_5_text_block_content','field_617669ec13098'),(140081,40478,'blocks_6_acfe_flexible_toggle',''),(140082,40478,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(140083,40478,'blocks_6_acfe_flexible_layout_title','Icons'),(140084,40478,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(140085,40478,'blocks_6_options_theme','#b61234'),(140086,40478,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(140087,40478,'blocks_6_options_format','row'),(140088,40478,'_blocks_6_options_format','field_64bfde9a90690'),(140089,40478,'blocks_6_options',''),(140090,40478,'_blocks_6_options','field_64bfdd9b90684'),(140091,40478,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(140092,40478,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(140093,40478,'blocks_6_icon_row_items_0_label','Pay in Full'),(140094,40478,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(140095,40478,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(140096,40478,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(140097,40478,'blocks_6_icon_row_items_1_icon','finance.svg'),(140098,40478,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(140099,40478,'blocks_6_icon_row_items_1_label','0% finance'),(140100,40478,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(140101,40478,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(140102,40478,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(140103,40478,'blocks_6_icon_row_items_2_icon','deposit.svg'),(140104,40478,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(140105,40478,'blocks_6_icon_row_items_2_label','Deposit & balance'),(140106,40478,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(140107,40478,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(140108,40478,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(140109,40478,'blocks_6_icon_row_items','3'),(140110,40478,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(140111,40478,'blocks_7_acfe_flexible_toggle',''),(140112,40478,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(140113,40478,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(140114,40478,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(140115,40478,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(140116,40478,'_blocks_7_content','field_6193c9b5eac84'),(140117,40478,'blocks_8_acfe_flexible_toggle',''),(140118,40478,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(140119,40478,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(140120,40478,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(140121,40478,'blocks_8_testimonial_slider_content_title',''),(140122,40478,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(140123,40478,'blocks_8_testimonial_slider_content_heading','Testimonials'),(140124,40478,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(140125,40478,'blocks_8_testimonial_slider_content_text',''),(140126,40478,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(140127,40478,'blocks_8_testimonial_slider_content_actions',''),(140128,40478,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(140129,40478,'blocks_8_testimonial_slider_content',''),(140130,40478,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(140131,40478,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(140132,40478,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(140133,40478,'blocks_8_testimonial_slider_ambassador_bool','0'),(140134,40478,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(140135,40478,'blocks_9_acfe_flexible_toggle',''),(140136,40478,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(140137,40478,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(140138,40478,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(140139,40478,'blocks_9_options_theme','#ffffff'),(140140,40478,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(140141,40478,'blocks_9_options_state','0'),(140142,40478,'_blocks_9_options_state','field_6239fcb7508c5'),(140143,40478,'blocks_9_options',''),(140144,40478,'_blocks_9_options','field_6177e2991ac44'),(140145,40478,'blocks_9_content_title',''),(140146,40478,'_blocks_9_content_title','field_64d237e8bb1e2'),(140147,40478,'blocks_9_content_heading','Frequently asked questions '),(140148,40478,'_blocks_9_content_heading','field_64d237e8bb1e3'),(140149,40478,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(140150,40478,'_blocks_9_content_text','field_64d237e8bb1e4'),(140151,40478,'blocks_9_content_actions',''),(140152,40478,'_blocks_9_content_actions','field_64d237e8bb1e5'),(140153,40478,'blocks_9_content_align','left'),(140154,40478,'_blocks_9_content_align','field_64d2443e6b6aa'),(140155,40478,'blocks_9_content',''),(140156,40478,'_blocks_9_content','field_64d237e8bb1e1'),(140157,40478,'blocks_9_accordion_content','faqs'),(140158,40478,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(140159,40478,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(140160,40478,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(140161,40478,'blocks_9_actions',''),(140162,40478,'_blocks_9_actions','field_61a746a817f7a'),(140163,40478,'blocks_0_acfe_flexible_toggle',''),(140164,40478,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(140165,40478,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(140166,40478,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(140167,40478,'blocks_0_options_theme','#ffffff'),(140168,40478,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(140169,40478,'blocks_0_options_reverse','0'),(140170,40478,'_blocks_0_options_reverse','field_61768049bb8ac'),(140171,40478,'blocks_0_options',''),(140172,40478,'_blocks_0_options','field_617682517c334'),(140173,40478,'blocks_0_split_5050_image','38037'),(140174,40478,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(140175,40478,'blocks_0_split_5050_video',''),(140176,40478,'_blocks_0_split_5050_video','field_6239f3160848a'),(140177,40478,'blocks_0_split_5050_content_title',''),(140178,40478,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(140179,40478,'blocks_0_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(140180,40478,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(140181,40478,'blocks_0_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(140182,40478,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(140183,40478,'blocks_0_split_5050_content_actions',''),(140184,40478,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(140185,40478,'blocks_0_split_5050_content',''),(140186,40478,'_blocks_0_split_5050_content','field_61767afceb8ba'),(140187,40478,'blocks_1_acfe_flexible_toggle',''),(140188,40478,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(140189,40478,'blocks_1_acfe_flexible_layout_title','Form'),(140190,40478,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(140191,40478,'blocks_1_row_content_format','standard'),(140192,40478,'_blocks_1_row_content_format','field_6481ead962881'),(140193,40478,'blocks_1_row_content_title',''),(140194,40478,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(140195,40478,'blocks_1_row_content_heading','Enquire Today'),(140196,40478,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(140197,40478,'blocks_1_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(140198,40478,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(140199,40478,'blocks_1_row_content_actions',''),(140200,40478,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(140201,40478,'blocks_1_row_content',''),(140202,40478,'_blocks_1_row_content','field_61a0f5f5b3db0'),(140203,40478,'blocks_1_row_form',''),(140204,40478,'_blocks_1_row_form','field_61a4ff2c0b08e'),(140205,40478,'blocks_1_row_form_button_label',''),(140206,40478,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(140207,40478,'blocks_2_acfe_flexible_toggle',''),(140208,40478,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(140209,40478,'blocks_2_acfe_flexible_layout_title','Video'),(140210,40478,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(140211,40478,'blocks_2_size','large'),(140212,40478,'_blocks_2_size','field_6487038f297c1'),(140213,40478,'blocks_2_row_content_title','Tom Waldron - Master Trainer'),(140214,40478,'_blocks_2_row_content_title','field_64870132a865d'),(140215,40478,'blocks_2_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(140216,40478,'_blocks_2_row_content_heading','field_64870142a865e'),(140217,40478,'blocks_2_row_content_text',''),(140218,40478,'_blocks_2_row_content_text','field_64870148a865f'),(140219,40478,'blocks_2_row_content',''),(140220,40478,'_blocks_2_row_content','field_6487008ba865c'),(140221,40478,'blocks_2_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(140222,40478,'_blocks_2_video_src','field_6193c4a98ec07'),(140223,40478,'blocks_2_video_thumbnail',''),(140224,40478,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(140225,40478,'blocks_3_acfe_flexible_toggle',''),(140226,40478,'_blocks_3_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(140227,40478,'blocks_3_acfe_flexible_layout_title','Steps'),(140228,40478,'_blocks_3_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(140229,40478,'blocks_3_row_content_title',''),(140230,40478,'_blocks_3_row_content_title','field_64888cd1e26e0'),(140231,40478,'blocks_3_row_content_heading','Benefits of training with us'),(140232,40478,'_blocks_3_row_content_heading','field_64888cd9e26e1'),(140233,40478,'blocks_3_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(140234,40478,'_blocks_3_row_content_text','field_64888ce2e26e2'),(140235,40478,'blocks_3_row_content_actions',''),(140236,40478,'_blocks_3_row_content_actions','field_64888cf5e26e3'),(140237,40478,'blocks_3_row_content',''),(140238,40478,'_blocks_3_row_content','field_64888cb0e26df'),(140239,40478,'blocks_3_steps_0_icon','progression.svg'),(140240,40478,'_blocks_3_steps_0_icon','field_64888d53e26e6'),(140241,40478,'blocks_3_steps_0_title','Earning potential'),(140242,40478,'_blocks_3_steps_0_title','field_64888d94e26e7'),(140243,40478,'blocks_3_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(140244,40478,'_blocks_3_steps_0_text','field_64888d99e26e8'),(140245,40478,'blocks_3_steps_1_icon','support.svg'),(140246,40478,'_blocks_3_steps_1_icon','field_64888d53e26e6'),(140247,40478,'blocks_3_steps_1_title','Lifetime Learning Promise'),(140248,40478,'_blocks_3_steps_1_title','field_64888d94e26e7'),(140249,40478,'blocks_3_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(140250,40478,'_blocks_3_steps_1_text','field_64888d99e26e8'),(140251,40478,'blocks_3_steps_2_icon','qualification.svg'),(140252,40478,'_blocks_3_steps_2_icon','field_64888d53e26e6'),(140253,40478,'blocks_3_steps_2_title','Evidence based hands on learning'),(140254,40478,'_blocks_3_steps_2_title','field_64888d94e26e7'),(140255,40478,'blocks_3_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(140256,40478,'_blocks_3_steps_2_text','field_64888d99e26e8'),(140257,40478,'blocks_3_steps_3_icon','leaders.svg'),(140258,40478,'_blocks_3_steps_3_icon','field_64888d53e26e6'),(140259,40478,'blocks_3_steps_3_title','Stand out from the crowd'),(140260,40478,'_blocks_3_steps_3_title','field_64888d94e26e7'),(140261,40478,'blocks_3_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(140262,40478,'_blocks_3_steps_3_text','field_64888d99e26e8'),(140263,40478,'blocks_3_steps','4'),(140264,40478,'_blocks_3_steps','field_64888d44e26e5'),(140271,40479,'hide_hero','0'),(140272,40479,'_hide_hero','field_66a2380fcda39'),(140273,40479,'hero_title','Biomechanics and Pilates'),(140274,40479,'_hero_title','field_617571fe285e8'),(140275,40479,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(140276,40479,'_hero_text','field_6175723c285e9'),(140277,40479,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(140278,40479,'_hero_actions_0_button','field_61757281285eb'),(140279,40479,'hero_actions','1'),(140280,40479,'_hero_actions','field_61757270285ea'),(140281,40479,'hero_style','default'),(140282,40479,'_hero_style','field_62051d9dc5324'),(140283,40479,'_thumbnail_id','39243'),(140284,40479,'__thumbnail_id','field_617570855ddaf'),(140285,40479,'hero_image_pos_x','right'),(140286,40479,'_hero_image_pos_x','field_62ec3d05390bb'),(140287,40479,'hero_image_pos_y','top'),(140288,40479,'_hero_image_pos_y','field_62ec3d05390bc'),(140289,40479,'hero_image_pos',''),(140290,40479,'_hero_image_pos','field_62ec3d05390ba'),(140291,40479,'fft_hide_from_listings','0'),(140292,40479,'_fft_hide_from_listings','field_61f1320446ab2'),(140293,40479,'fft_page_format','default'),(140294,40479,'_fft_page_format','field_61ae213f1f218'),(140295,40479,'fft_hide_nav','0'),(140296,40479,'_fft_hide_nav','field_635bd5e43527c'),(140297,40479,'fft_hide_header_call_to_action','0'),(140298,40479,'_fft_hide_header_call_to_action','field_635bd6723527d'),(140299,40479,'fft_page_sitemap','0'),(140300,40479,'_fft_page_sitemap','field_61af9b34e8181'),(140301,40479,'blocks','a:11:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:5:\"steps\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";i:10;s:8:\"template\";}'),(140302,40479,'_blocks','field_6176696113096'),(140303,40479,'blocks_4_acfe_flexible_toggle',''),(140304,40479,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(140305,40479,'blocks_4_acfe_flexible_layout_title','Tabs'),(140306,40479,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(140307,40479,'blocks_4_options_theme','#ffffff'),(140308,40479,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(140309,40479,'blocks_4_options',''),(140310,40479,'_blocks_4_options','field_6177cfcd8140f'),(140311,40479,'blocks_4_tabs_0_tab_label','What will I learn?'),(140312,40479,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(140313,40479,'blocks_4_tabs_0_tab_content_title',''),(140314,40479,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(140315,40479,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(140316,40479,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(140317,40479,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(140318,40479,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(140319,40479,'blocks_4_tabs_0_tab_content_actions',''),(140320,40479,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(140321,40479,'blocks_4_tabs_0_tab_content',''),(140322,40479,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(140323,40479,'blocks_4_tabs_0_tab_image','39076'),(140324,40479,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(140325,40479,'blocks_4_tabs_1_tab_label','What do I need?'),(140326,40479,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(140327,40479,'blocks_4_tabs_1_tab_content_title',''),(140328,40479,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(140329,40479,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(140330,40479,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(140331,40479,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(140332,40479,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(140333,40479,'blocks_4_tabs_1_tab_content_actions',''),(140334,40479,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(140335,40479,'blocks_4_tabs_1_tab_content',''),(140336,40479,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(140337,40479,'blocks_4_tabs_1_tab_image','39223'),(140338,40479,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(140339,40479,'blocks_4_tabs_2_tab_label','Where can I learn?'),(140340,40479,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(140341,40479,'blocks_4_tabs_2_tab_content_title',''),(140342,40479,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(140343,40479,'blocks_4_tabs_2_tab_content_heading','Locations'),(140344,40479,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(140345,40479,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(140346,40479,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(140347,40479,'blocks_4_tabs_2_tab_content_actions',''),(140348,40479,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(140349,40479,'blocks_4_tabs_2_tab_content',''),(140350,40479,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(140351,40479,'blocks_4_tabs_2_tab_image','39224'),(140352,40479,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(140353,40479,'blocks_4_tabs','3'),(140354,40479,'_blocks_4_tabs','field_6177cff281419'),(140355,40479,'blocks_5_acfe_flexible_toggle',''),(140356,40479,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(140357,40479,'blocks_5_acfe_flexible_layout_title','Text Block'),(140358,40479,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(140359,40479,'blocks_5_options_theme','#b61234'),(140360,40479,'_blocks_5_options_theme','field_6176830e2ad17'),(140361,40479,'blocks_5_options',''),(140362,40479,'_blocks_5_options','field_6176830e2ad16'),(140363,40479,'blocks_5_text_block_heading','Fees & Funding Options'),(140364,40479,'_blocks_5_text_block_heading','field_617669d413097'),(140365,40479,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(140366,40479,'_blocks_5_text_block_content','field_617669ec13098'),(140367,40479,'blocks_6_acfe_flexible_toggle',''),(140368,40479,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(140369,40479,'blocks_6_acfe_flexible_layout_title','Icons'),(140370,40479,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(140371,40479,'blocks_6_options_theme','#b61234'),(140372,40479,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(140373,40479,'blocks_6_options_format','row'),(140374,40479,'_blocks_6_options_format','field_64bfde9a90690'),(140375,40479,'blocks_6_options',''),(140376,40479,'_blocks_6_options','field_64bfdd9b90684'),(140377,40479,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(140378,40479,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(140379,40479,'blocks_6_icon_row_items_0_label','Pay in Full'),(140380,40479,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(140381,40479,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(140382,40479,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(140383,40479,'blocks_6_icon_row_items_1_icon','finance.svg'),(140384,40479,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(140385,40479,'blocks_6_icon_row_items_1_label','0% finance'),(140386,40479,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(140387,40479,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(140388,40479,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(140389,40479,'blocks_6_icon_row_items_2_icon','deposit.svg'),(140390,40479,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(140391,40479,'blocks_6_icon_row_items_2_label','Deposit & balance'),(140392,40479,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(140393,40479,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(140394,40479,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(140395,40479,'blocks_6_icon_row_items','3'),(140396,40479,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(140397,40479,'blocks_7_acfe_flexible_toggle',''),(140398,40479,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(140399,40479,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(140400,40479,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(140401,40479,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(140402,40479,'_blocks_7_content','field_6193c9b5eac84'),(140403,40479,'blocks_8_acfe_flexible_toggle',''),(140404,40479,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(140405,40479,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(140406,40479,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(140407,40479,'blocks_8_testimonial_slider_content_title',''),(140408,40479,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(140409,40479,'blocks_8_testimonial_slider_content_heading','Testimonials'),(140410,40479,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(140411,40479,'blocks_8_testimonial_slider_content_text',''),(140412,40479,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(140413,40479,'blocks_8_testimonial_slider_content_actions',''),(140414,40479,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(140415,40479,'blocks_8_testimonial_slider_content',''),(140416,40479,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(140417,40479,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(140418,40479,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(140419,40479,'blocks_8_testimonial_slider_ambassador_bool','0'),(140420,40479,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(140421,40479,'blocks_9_acfe_flexible_toggle',''),(140422,40479,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(140423,40479,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(140424,40479,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(140425,40479,'blocks_9_options_theme','#ffffff'),(140426,40479,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(140427,40479,'blocks_9_options_state','0'),(140428,40479,'_blocks_9_options_state','field_6239fcb7508c5'),(140429,40479,'blocks_9_options',''),(140430,40479,'_blocks_9_options','field_6177e2991ac44'),(140431,40479,'blocks_9_content_title',''),(140432,40479,'_blocks_9_content_title','field_64d237e8bb1e2'),(140433,40479,'blocks_9_content_heading','Frequently asked questions '),(140434,40479,'_blocks_9_content_heading','field_64d237e8bb1e3'),(140435,40479,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(140436,40479,'_blocks_9_content_text','field_64d237e8bb1e4'),(140437,40479,'blocks_9_content_actions',''),(140438,40479,'_blocks_9_content_actions','field_64d237e8bb1e5'),(140439,40479,'blocks_9_content_align','left'),(140440,40479,'_blocks_9_content_align','field_64d2443e6b6aa'),(140441,40479,'blocks_9_content',''),(140442,40479,'_blocks_9_content','field_64d237e8bb1e1'),(140443,40479,'blocks_9_accordion_content','faqs'),(140444,40479,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(140445,40479,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(140446,40479,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(140447,40479,'blocks_9_actions',''),(140448,40479,'_blocks_9_actions','field_61a746a817f7a'),(140449,40479,'blocks_0_acfe_flexible_toggle',''),(140450,40479,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(140451,40479,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(140452,40479,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(140453,40479,'blocks_0_options_theme','#ffffff'),(140454,40479,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(140455,40479,'blocks_0_options_reverse','0'),(140456,40479,'_blocks_0_options_reverse','field_61768049bb8ac'),(140457,40479,'blocks_0_options',''),(140458,40479,'_blocks_0_options','field_617682517c334'),(140459,40479,'blocks_0_split_5050_image','38037'),(140460,40479,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(140461,40479,'blocks_0_split_5050_video',''),(140462,40479,'_blocks_0_split_5050_video','field_6239f3160848a'),(140463,40479,'blocks_0_split_5050_content_title',''),(140464,40479,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(140465,40479,'blocks_0_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(140466,40479,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(140467,40479,'blocks_0_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(140468,40479,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(140469,40479,'blocks_0_split_5050_content_actions',''),(140470,40479,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(140471,40479,'blocks_0_split_5050_content',''),(140472,40479,'_blocks_0_split_5050_content','field_61767afceb8ba'),(140473,40479,'blocks_1_acfe_flexible_toggle',''),(140474,40479,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(140475,40479,'blocks_1_acfe_flexible_layout_title','Form'),(140476,40479,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(140477,40479,'blocks_1_row_content_format','standard'),(140478,40479,'_blocks_1_row_content_format','field_6481ead962881'),(140479,40479,'blocks_1_row_content_title',''),(140480,40479,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(140481,40479,'blocks_1_row_content_heading','Enquire Today'),(140482,40479,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(140483,40479,'blocks_1_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(140484,40479,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(140485,40479,'blocks_1_row_content_actions',''),(140486,40479,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(140487,40479,'blocks_1_row_content',''),(140488,40479,'_blocks_1_row_content','field_61a0f5f5b3db0'),(140489,40479,'blocks_1_row_form',''),(140490,40479,'_blocks_1_row_form','field_61a4ff2c0b08e'),(140491,40479,'blocks_1_row_form_button_label',''),(140492,40479,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(140493,40479,'blocks_2_acfe_flexible_toggle',''),(140494,40479,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(140495,40479,'blocks_2_acfe_flexible_layout_title','Video'),(140496,40479,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(140497,40479,'blocks_2_size','large'),(140498,40479,'_blocks_2_size','field_6487038f297c1'),(140499,40479,'blocks_2_row_content_title','Tom Waldron - Master Trainer'),(140500,40479,'_blocks_2_row_content_title','field_64870132a865d'),(140501,40479,'blocks_2_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(140502,40479,'_blocks_2_row_content_heading','field_64870142a865e'),(140503,40479,'blocks_2_row_content_text',''),(140504,40479,'_blocks_2_row_content_text','field_64870148a865f'),(140505,40479,'blocks_2_row_content',''),(140506,40479,'_blocks_2_row_content','field_6487008ba865c'),(140507,40479,'blocks_2_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(140508,40479,'_blocks_2_video_src','field_6193c4a98ec07'),(140509,40479,'blocks_2_video_thumbnail',''),(140510,40479,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(140511,40479,'blocks_3_acfe_flexible_toggle',''),(140512,40479,'_blocks_3_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(140513,40479,'blocks_3_acfe_flexible_layout_title','Steps'),(140514,40479,'_blocks_3_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(140515,40479,'blocks_3_row_content_title',''),(140516,40479,'_blocks_3_row_content_title','field_64888cd1e26e0'),(140517,40479,'blocks_3_row_content_heading','Benefits of training with us'),(140518,40479,'_blocks_3_row_content_heading','field_64888cd9e26e1'),(140519,40479,'blocks_3_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(140520,40479,'_blocks_3_row_content_text','field_64888ce2e26e2'),(140521,40479,'blocks_3_row_content_actions',''),(140522,40479,'_blocks_3_row_content_actions','field_64888cf5e26e3'),(140523,40479,'blocks_3_row_content',''),(140524,40479,'_blocks_3_row_content','field_64888cb0e26df'),(140525,40479,'blocks_3_steps_0_icon','progression.svg'),(140526,40479,'_blocks_3_steps_0_icon','field_64888d53e26e6'),(140527,40479,'blocks_3_steps_0_title','Earning potential'),(140528,40479,'_blocks_3_steps_0_title','field_64888d94e26e7'),(140529,40479,'blocks_3_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(140530,40479,'_blocks_3_steps_0_text','field_64888d99e26e8'),(140531,40479,'blocks_3_steps_1_icon','support.svg'),(140532,40479,'_blocks_3_steps_1_icon','field_64888d53e26e6'),(140533,40479,'blocks_3_steps_1_title','Lifetime Learning Promise'),(140534,40479,'_blocks_3_steps_1_title','field_64888d94e26e7'),(140535,40479,'blocks_3_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(140536,40479,'_blocks_3_steps_1_text','field_64888d99e26e8'),(140537,40479,'blocks_3_steps_2_icon','qualification.svg'),(140538,40479,'_blocks_3_steps_2_icon','field_64888d53e26e6'),(140539,40479,'blocks_3_steps_2_title','Evidence based hands on learning'),(140540,40479,'_blocks_3_steps_2_title','field_64888d94e26e7'),(140541,40479,'blocks_3_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(140542,40479,'_blocks_3_steps_2_text','field_64888d99e26e8'),(140543,40479,'blocks_3_steps_3_icon','leaders.svg'),(140544,40479,'_blocks_3_steps_3_icon','field_64888d53e26e6'),(140545,40479,'blocks_3_steps_3_title','Stand out from the crowd'),(140546,40479,'_blocks_3_steps_3_title','field_64888d94e26e7'),(140547,40479,'blocks_3_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(140548,40479,'_blocks_3_steps_3_text','field_64888d99e26e8'),(140549,40479,'blocks_3_steps','4'),(140550,40479,'_blocks_3_steps','field_64888d44e26e5'),(140551,40479,'blocks_10_acfe_flexible_toggle',''),(140552,40479,'_blocks_10_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(140553,40479,'blocks_10_acfe_flexible_layout_title','Template'),(140554,40479,'_blocks_10_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(140555,40479,'blocks_10_template','39087'),(140556,40479,'_blocks_10_template','field_617bdd570fe01'),(140753,40480,'hide_hero','0'),(140754,40480,'_hide_hero','field_66a2380fcda39'),(140755,40480,'hero_title','Biomechanics and Pilates'),(140756,40480,'_hero_title','field_617571fe285e8'),(140757,40480,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(140758,40480,'_hero_text','field_6175723c285e9'),(140759,40480,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(140760,40480,'_hero_actions_0_button','field_61757281285eb'),(140761,40480,'hero_actions','1'),(140762,40480,'_hero_actions','field_61757270285ea'),(140763,40480,'hero_style','default'),(140764,40480,'_hero_style','field_62051d9dc5324'),(140765,40480,'_thumbnail_id','39243'),(140766,40480,'__thumbnail_id','field_617570855ddaf'),(140767,40480,'hero_image_pos_x','right'),(140768,40480,'_hero_image_pos_x','field_62ec3d05390bb'),(140769,40480,'hero_image_pos_y','top'),(140770,40480,'_hero_image_pos_y','field_62ec3d05390bc'),(140771,40480,'hero_image_pos',''),(140772,40480,'_hero_image_pos','field_62ec3d05390ba'),(140773,40480,'fft_hide_from_listings','0'),(140774,40480,'_fft_hide_from_listings','field_61f1320446ab2'),(140775,40480,'fft_page_format','default'),(140776,40480,'_fft_page_format','field_61ae213f1f218'),(140777,40480,'fft_hide_nav','0'),(140778,40480,'_fft_hide_nav','field_635bd5e43527c'),(140779,40480,'fft_hide_header_call_to_action','0'),(140780,40480,'_fft_hide_header_call_to_action','field_635bd6723527d'),(140781,40480,'fft_page_sitemap','0'),(140782,40480,'_fft_page_sitemap','field_61af9b34e8181'),(140783,40480,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";i:10;s:8:\"template\";}'),(140784,40480,'_blocks','field_6176696113096'),(140785,40480,'blocks_7_acfe_flexible_toggle',''),(140786,40480,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(140787,40480,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(140788,40480,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(140789,40480,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(140790,40480,'_blocks_7_content','field_6193c9b5eac84'),(140791,40480,'blocks_8_acfe_flexible_toggle',''),(140792,40480,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(140793,40480,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(140794,40480,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(140795,40480,'blocks_8_testimonial_slider_content_title',''),(140796,40480,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(140797,40480,'blocks_8_testimonial_slider_content_heading','Testimonials'),(140798,40480,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(140799,40480,'blocks_8_testimonial_slider_content_text',''),(140800,40480,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(140801,40480,'blocks_8_testimonial_slider_content_actions',''),(140802,40480,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(140803,40480,'blocks_8_testimonial_slider_content',''),(140804,40480,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(140805,40480,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(140806,40480,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(140807,40480,'blocks_8_testimonial_slider_ambassador_bool','0'),(140808,40480,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(140809,40480,'blocks_9_acfe_flexible_toggle',''),(140810,40480,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(140811,40480,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(140812,40480,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(140813,40480,'blocks_9_options_theme','#ffffff'),(140814,40480,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(140815,40480,'blocks_9_options_state','0'),(140816,40480,'_blocks_9_options_state','field_6239fcb7508c5'),(140817,40480,'blocks_9_options',''),(140818,40480,'_blocks_9_options','field_6177e2991ac44'),(140819,40480,'blocks_9_content_title',''),(140820,40480,'_blocks_9_content_title','field_64d237e8bb1e2'),(140821,40480,'blocks_9_content_heading','Frequently asked questions '),(140822,40480,'_blocks_9_content_heading','field_64d237e8bb1e3'),(140823,40480,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(140824,40480,'_blocks_9_content_text','field_64d237e8bb1e4'),(140825,40480,'blocks_9_content_actions',''),(140826,40480,'_blocks_9_content_actions','field_64d237e8bb1e5'),(140827,40480,'blocks_9_content_align','left'),(140828,40480,'_blocks_9_content_align','field_64d2443e6b6aa'),(140829,40480,'blocks_9_content',''),(140830,40480,'_blocks_9_content','field_64d237e8bb1e1'),(140831,40480,'blocks_9_accordion_content','faqs'),(140832,40480,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(140833,40480,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(140834,40480,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(140835,40480,'blocks_9_actions',''),(140836,40480,'_blocks_9_actions','field_61a746a817f7a'),(140837,40480,'blocks_10_acfe_flexible_toggle',''),(140838,40480,'_blocks_10_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(140839,40480,'blocks_10_acfe_flexible_layout_title','Template'),(140840,40480,'_blocks_10_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(140841,40480,'blocks_10_template','39087'),(140842,40480,'_blocks_10_template','field_617bdd570fe01'),(140843,40480,'blocks_0_acfe_flexible_toggle',''),(140844,40480,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(140845,40480,'blocks_0_acfe_flexible_layout_title','Icons'),(140846,40480,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(140847,40480,'blocks_0_options_theme','#b61234'),(140848,40480,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(140849,40480,'blocks_0_options_format','row'),(140850,40480,'_blocks_0_options_format','field_64bfde9a90690'),(140851,40480,'blocks_0_options',''),(140852,40480,'_blocks_0_options','field_64bfdd9b90684'),(140853,40480,'blocks_0_icon_row_items_0_icon','payment-plans.svg'),(140854,40480,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(140855,40480,'blocks_0_icon_row_items_0_label','Pay in Full'),(140856,40480,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(140857,40480,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(140858,40480,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(140859,40480,'blocks_0_icon_row_items_1_icon','finance.svg'),(140860,40480,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(140861,40480,'blocks_0_icon_row_items_1_label','0% finance'),(140862,40480,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(140863,40480,'blocks_0_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(140864,40480,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(140865,40480,'blocks_0_icon_row_items_2_icon','deposit.svg'),(140866,40480,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(140867,40480,'blocks_0_icon_row_items_2_label','Deposit & balance'),(140868,40480,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(140869,40480,'blocks_0_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(140870,40480,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(140871,40480,'blocks_0_icon_row_items','3'),(140872,40480,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(140873,40480,'blocks_1_acfe_flexible_toggle',''),(140874,40480,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(140875,40480,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(140876,40480,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(140877,40480,'blocks_1_options_theme','#ffffff'),(140878,40480,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(140879,40480,'blocks_1_options_reverse','0'),(140880,40480,'_blocks_1_options_reverse','field_61768049bb8ac'),(140881,40480,'blocks_1_options',''),(140882,40480,'_blocks_1_options','field_617682517c334'),(140883,40480,'blocks_1_split_5050_image','38037'),(140884,40480,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(140885,40480,'blocks_1_split_5050_video',''),(140886,40480,'_blocks_1_split_5050_video','field_6239f3160848a'),(140887,40480,'blocks_1_split_5050_content_title',''),(140888,40480,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(140889,40480,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(140890,40480,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(140891,40480,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(140892,40480,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(140893,40480,'blocks_1_split_5050_content_actions',''),(140894,40480,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(140895,40480,'blocks_1_split_5050_content',''),(140896,40480,'_blocks_1_split_5050_content','field_61767afceb8ba'),(140897,40480,'blocks_2_acfe_flexible_toggle',''),(140898,40480,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(140899,40480,'blocks_2_acfe_flexible_layout_title','Form'),(140900,40480,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(140901,40480,'blocks_2_row_content_format','standard'),(140902,40480,'_blocks_2_row_content_format','field_6481ead962881'),(140903,40480,'blocks_2_row_content_title',''),(140904,40480,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(140905,40480,'blocks_2_row_content_heading','Enquire Today'),(140906,40480,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(140907,40480,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(140908,40480,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(140909,40480,'blocks_2_row_content_actions',''),(140910,40480,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(140911,40480,'blocks_2_row_content',''),(140912,40480,'_blocks_2_row_content','field_61a0f5f5b3db0'),(140913,40480,'blocks_2_row_form',''),(140914,40480,'_blocks_2_row_form','field_61a4ff2c0b08e'),(140915,40480,'blocks_2_row_form_button_label',''),(140916,40480,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(140917,40480,'blocks_3_acfe_flexible_toggle',''),(140918,40480,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(140919,40480,'blocks_3_acfe_flexible_layout_title','Video'),(140920,40480,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(140921,40480,'blocks_3_size','large'),(140922,40480,'_blocks_3_size','field_6487038f297c1'),(140923,40480,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(140924,40480,'_blocks_3_row_content_title','field_64870132a865d'),(140925,40480,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(140926,40480,'_blocks_3_row_content_heading','field_64870142a865e'),(140927,40480,'blocks_3_row_content_text',''),(140928,40480,'_blocks_3_row_content_text','field_64870148a865f'),(140929,40480,'blocks_3_row_content',''),(140930,40480,'_blocks_3_row_content','field_6487008ba865c'),(140931,40480,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(140932,40480,'_blocks_3_video_src','field_6193c4a98ec07'),(140933,40480,'blocks_3_video_thumbnail',''),(140934,40480,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(140935,40480,'blocks_4_acfe_flexible_toggle',''),(140936,40480,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(140937,40480,'blocks_4_acfe_flexible_layout_title','Steps'),(140938,40480,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(140939,40480,'blocks_4_row_content_title',''),(140940,40480,'_blocks_4_row_content_title','field_64888cd1e26e0'),(140941,40480,'blocks_4_row_content_heading','Benefits of training with us'),(140942,40480,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(140943,40480,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(140944,40480,'_blocks_4_row_content_text','field_64888ce2e26e2'),(140945,40480,'blocks_4_row_content_actions',''),(140946,40480,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(140947,40480,'blocks_4_row_content',''),(140948,40480,'_blocks_4_row_content','field_64888cb0e26df'),(140949,40480,'blocks_4_steps_0_icon','progression.svg'),(140950,40480,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(140951,40480,'blocks_4_steps_0_title','Earning potential'),(140952,40480,'_blocks_4_steps_0_title','field_64888d94e26e7'),(140953,40480,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(140954,40480,'_blocks_4_steps_0_text','field_64888d99e26e8'),(140955,40480,'blocks_4_steps_1_icon','support.svg'),(140956,40480,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(140957,40480,'blocks_4_steps_1_title','Lifetime Learning Promise'),(140958,40480,'_blocks_4_steps_1_title','field_64888d94e26e7'),(140959,40480,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(140960,40480,'_blocks_4_steps_1_text','field_64888d99e26e8'),(140961,40480,'blocks_4_steps_2_icon','qualification.svg'),(140962,40480,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(140963,40480,'blocks_4_steps_2_title','Evidence based hands on learning'),(140964,40480,'_blocks_4_steps_2_title','field_64888d94e26e7'),(140965,40480,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(140966,40480,'_blocks_4_steps_2_text','field_64888d99e26e8'),(140967,40480,'blocks_4_steps_3_icon','leaders.svg'),(140968,40480,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(140969,40480,'blocks_4_steps_3_title','Stand out from the crowd'),(140970,40480,'_blocks_4_steps_3_title','field_64888d94e26e7'),(140971,40480,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(140972,40480,'_blocks_4_steps_3_text','field_64888d99e26e8'),(140973,40480,'blocks_4_steps','4'),(140974,40480,'_blocks_4_steps','field_64888d44e26e5'),(140975,40480,'blocks_5_acfe_flexible_toggle',''),(140976,40480,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(140977,40480,'blocks_5_acfe_flexible_layout_title','Tabs'),(140978,40480,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(140979,40480,'blocks_5_options_theme','#ffffff'),(140980,40480,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(140981,40480,'blocks_5_options',''),(140982,40480,'_blocks_5_options','field_6177cfcd8140f'),(140983,40480,'blocks_5_tabs_0_tab_label','What will I learn?'),(140984,40480,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(140985,40480,'blocks_5_tabs_0_tab_content_title',''),(140986,40480,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(140987,40480,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(140988,40480,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(140989,40480,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(140990,40480,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(140991,40480,'blocks_5_tabs_0_tab_content_actions',''),(140992,40480,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(140993,40480,'blocks_5_tabs_0_tab_content',''),(140994,40480,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(140995,40480,'blocks_5_tabs_0_tab_image','39076'),(140996,40480,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(140997,40480,'blocks_5_tabs_1_tab_label','What do I need?'),(140998,40480,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(140999,40480,'blocks_5_tabs_1_tab_content_title',''),(141000,40480,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(141001,40480,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(141002,40480,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(141003,40480,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(141004,40480,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(141005,40480,'blocks_5_tabs_1_tab_content_actions',''),(141006,40480,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(141007,40480,'blocks_5_tabs_1_tab_content',''),(141008,40480,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(141009,40480,'blocks_5_tabs_1_tab_image','39223'),(141010,40480,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(141011,40480,'blocks_5_tabs_2_tab_label','Where can I learn?'),(141012,40480,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(141013,40480,'blocks_5_tabs_2_tab_content_title',''),(141014,40480,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(141015,40480,'blocks_5_tabs_2_tab_content_heading','Locations'),(141016,40480,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(141017,40480,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(141018,40480,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(141019,40480,'blocks_5_tabs_2_tab_content_actions',''),(141020,40480,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(141021,40480,'blocks_5_tabs_2_tab_content',''),(141022,40480,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(141023,40480,'blocks_5_tabs_2_tab_image','39224'),(141024,40480,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(141025,40480,'blocks_5_tabs','3'),(141026,40480,'_blocks_5_tabs','field_6177cff281419'),(141027,40480,'blocks_6_acfe_flexible_toggle',''),(141028,40480,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(141029,40480,'blocks_6_acfe_flexible_layout_title','Text Block'),(141030,40480,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(141031,40480,'blocks_6_options_theme','#b61234'),(141032,40480,'_blocks_6_options_theme','field_6176830e2ad17'),(141033,40480,'blocks_6_options',''),(141034,40480,'_blocks_6_options','field_6176830e2ad16'),(141035,40480,'blocks_6_text_block_heading','Fees & Funding Options'),(141036,40480,'_blocks_6_text_block_heading','field_617669d413097'),(141037,40480,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(141038,40480,'_blocks_6_text_block_content','field_617669ec13098'),(141287,40481,'hide_hero','0'),(141288,40481,'_hide_hero','field_66a2380fcda39'),(141289,40481,'hero_title','Biomechanics and Pilates'),(141290,40481,'_hero_title','field_617571fe285e8'),(141291,40481,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(141292,40481,'_hero_text','field_6175723c285e9'),(141293,40481,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(141294,40481,'_hero_actions_0_button','field_61757281285eb'),(141295,40481,'hero_actions','1'),(141296,40481,'_hero_actions','field_61757270285ea'),(141297,40481,'hero_style','default'),(141298,40481,'_hero_style','field_62051d9dc5324'),(141299,40481,'_thumbnail_id','39243'),(141300,40481,'__thumbnail_id','field_617570855ddaf'),(141301,40481,'hero_image_pos_x','right'),(141302,40481,'_hero_image_pos_x','field_62ec3d05390bb'),(141303,40481,'hero_image_pos_y','top'),(141304,40481,'_hero_image_pos_y','field_62ec3d05390bc'),(141305,40481,'hero_image_pos',''),(141306,40481,'_hero_image_pos','field_62ec3d05390ba'),(141307,40481,'fft_hide_from_listings','0'),(141308,40481,'_fft_hide_from_listings','field_61f1320446ab2'),(141309,40481,'fft_page_format','default'),(141310,40481,'_fft_page_format','field_61ae213f1f218'),(141311,40481,'fft_hide_nav','0'),(141312,40481,'_fft_hide_nav','field_635bd5e43527c'),(141313,40481,'fft_hide_header_call_to_action','0'),(141314,40481,'_fft_hide_header_call_to_action','field_635bd6723527d'),(141315,40481,'fft_page_sitemap','0'),(141316,40481,'_fft_page_sitemap','field_61af9b34e8181'),(141317,40481,'blocks','a:10:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:5:\"steps\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:16:\"standard_content\";i:7;s:18:\"testimonial_slider\";i:8;s:10:\"accordions\";i:9;s:5:\"icons\";}'),(141318,40481,'_blocks','field_6176696113096'),(141319,40481,'blocks_0_acfe_flexible_toggle',''),(141320,40481,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(141321,40481,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(141322,40481,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(141323,40481,'blocks_0_options_theme','#ffffff'),(141324,40481,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(141325,40481,'blocks_0_options_reverse','0'),(141326,40481,'_blocks_0_options_reverse','field_61768049bb8ac'),(141327,40481,'blocks_0_options',''),(141328,40481,'_blocks_0_options','field_617682517c334'),(141329,40481,'blocks_0_split_5050_image','38037'),(141330,40481,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(141331,40481,'blocks_0_split_5050_video',''),(141332,40481,'_blocks_0_split_5050_video','field_6239f3160848a'),(141333,40481,'blocks_0_split_5050_content_title',''),(141334,40481,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(141335,40481,'blocks_0_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(141336,40481,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(141337,40481,'blocks_0_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(141338,40481,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(141339,40481,'blocks_0_split_5050_content_actions',''),(141340,40481,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(141341,40481,'blocks_0_split_5050_content',''),(141342,40481,'_blocks_0_split_5050_content','field_61767afceb8ba'),(141343,40481,'blocks_1_acfe_flexible_toggle',''),(141344,40481,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(141345,40481,'blocks_1_acfe_flexible_layout_title','Form'),(141346,40481,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(141347,40481,'blocks_1_row_content_format','standard'),(141348,40481,'_blocks_1_row_content_format','field_6481ead962881'),(141349,40481,'blocks_1_row_content_title',''),(141350,40481,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(141351,40481,'blocks_1_row_content_heading','Enquire Today'),(141352,40481,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(141353,40481,'blocks_1_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(141354,40481,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(141355,40481,'blocks_1_row_content_actions',''),(141356,40481,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(141357,40481,'blocks_1_row_content',''),(141358,40481,'_blocks_1_row_content','field_61a0f5f5b3db0'),(141359,40481,'blocks_1_row_form',''),(141360,40481,'_blocks_1_row_form','field_61a4ff2c0b08e'),(141361,40481,'blocks_1_row_form_button_label',''),(141362,40481,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(141363,40481,'blocks_2_acfe_flexible_toggle',''),(141364,40481,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(141365,40481,'blocks_2_acfe_flexible_layout_title','Video'),(141366,40481,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(141367,40481,'blocks_2_size','large'),(141368,40481,'_blocks_2_size','field_6487038f297c1'),(141369,40481,'blocks_2_row_content_title','Tom Waldron - Master Trainer'),(141370,40481,'_blocks_2_row_content_title','field_64870132a865d'),(141371,40481,'blocks_2_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(141372,40481,'_blocks_2_row_content_heading','field_64870142a865e'),(141373,40481,'blocks_2_row_content_text',''),(141374,40481,'_blocks_2_row_content_text','field_64870148a865f'),(141375,40481,'blocks_2_row_content',''),(141376,40481,'_blocks_2_row_content','field_6487008ba865c'),(141377,40481,'blocks_2_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(141378,40481,'_blocks_2_video_src','field_6193c4a98ec07'),(141379,40481,'blocks_2_video_thumbnail',''),(141380,40481,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(141381,40481,'blocks_3_acfe_flexible_toggle',''),(141382,40481,'_blocks_3_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(141383,40481,'blocks_3_acfe_flexible_layout_title','Steps'),(141384,40481,'_blocks_3_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(141385,40481,'blocks_3_row_content_title',''),(141386,40481,'_blocks_3_row_content_title','field_64888cd1e26e0'),(141387,40481,'blocks_3_row_content_heading','Benefits of training with us'),(141388,40481,'_blocks_3_row_content_heading','field_64888cd9e26e1'),(141389,40481,'blocks_3_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(141390,40481,'_blocks_3_row_content_text','field_64888ce2e26e2'),(141391,40481,'blocks_3_row_content_actions',''),(141392,40481,'_blocks_3_row_content_actions','field_64888cf5e26e3'),(141393,40481,'blocks_3_row_content',''),(141394,40481,'_blocks_3_row_content','field_64888cb0e26df'),(141395,40481,'blocks_3_steps_0_icon','progression.svg'),(141396,40481,'_blocks_3_steps_0_icon','field_64888d53e26e6'),(141397,40481,'blocks_3_steps_0_title','Earning potential'),(141398,40481,'_blocks_3_steps_0_title','field_64888d94e26e7'),(141399,40481,'blocks_3_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(141400,40481,'_blocks_3_steps_0_text','field_64888d99e26e8'),(141401,40481,'blocks_3_steps_1_icon','support.svg'),(141402,40481,'_blocks_3_steps_1_icon','field_64888d53e26e6'),(141403,40481,'blocks_3_steps_1_title','Lifetime Learning Promise'),(141404,40481,'_blocks_3_steps_1_title','field_64888d94e26e7'),(141405,40481,'blocks_3_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(141406,40481,'_blocks_3_steps_1_text','field_64888d99e26e8'),(141407,40481,'blocks_3_steps_2_icon','qualification.svg'),(141408,40481,'_blocks_3_steps_2_icon','field_64888d53e26e6'),(141409,40481,'blocks_3_steps_2_title','Evidence based hands on learning'),(141410,40481,'_blocks_3_steps_2_title','field_64888d94e26e7'),(141411,40481,'blocks_3_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(141412,40481,'_blocks_3_steps_2_text','field_64888d99e26e8'),(141413,40481,'blocks_3_steps_3_icon','leaders.svg'),(141414,40481,'_blocks_3_steps_3_icon','field_64888d53e26e6'),(141415,40481,'blocks_3_steps_3_title','Stand out from the crowd'),(141416,40481,'_blocks_3_steps_3_title','field_64888d94e26e7'),(141417,40481,'blocks_3_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(141418,40481,'_blocks_3_steps_3_text','field_64888d99e26e8'),(141419,40481,'blocks_3_steps','4'),(141420,40481,'_blocks_3_steps','field_64888d44e26e5'),(141421,40481,'blocks_4_acfe_flexible_toggle',''),(141422,40481,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(141423,40481,'blocks_4_acfe_flexible_layout_title','Tabs'),(141424,40481,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(141425,40481,'blocks_4_options_theme','#ffffff'),(141426,40481,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(141427,40481,'blocks_4_options',''),(141428,40481,'_blocks_4_options','field_6177cfcd8140f'),(141429,40481,'blocks_4_tabs_0_tab_label','What will I learn?'),(141430,40481,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(141431,40481,'blocks_4_tabs_0_tab_content_title',''),(141432,40481,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(141433,40481,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(141434,40481,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(141435,40481,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(141436,40481,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(141437,40481,'blocks_4_tabs_0_tab_content_actions',''),(141438,40481,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(141439,40481,'blocks_4_tabs_0_tab_content',''),(141440,40481,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(141441,40481,'blocks_4_tabs_0_tab_image','39076'),(141442,40481,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(141443,40481,'blocks_4_tabs_1_tab_label','What do I need?'),(141444,40481,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(141445,40481,'blocks_4_tabs_1_tab_content_title',''),(141446,40481,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(141447,40481,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(141448,40481,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(141449,40481,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(141450,40481,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(141451,40481,'blocks_4_tabs_1_tab_content_actions',''),(141452,40481,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(141453,40481,'blocks_4_tabs_1_tab_content',''),(141454,40481,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(141455,40481,'blocks_4_tabs_1_tab_image','39223'),(141456,40481,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(141457,40481,'blocks_4_tabs_2_tab_label','Where can I learn?'),(141458,40481,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(141459,40481,'blocks_4_tabs_2_tab_content_title',''),(141460,40481,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(141461,40481,'blocks_4_tabs_2_tab_content_heading','Locations'),(141462,40481,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(141463,40481,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(141464,40481,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(141465,40481,'blocks_4_tabs_2_tab_content_actions',''),(141466,40481,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(141467,40481,'blocks_4_tabs_2_tab_content',''),(141468,40481,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(141469,40481,'blocks_4_tabs_2_tab_image','39224'),(141470,40481,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(141471,40481,'blocks_4_tabs','3'),(141472,40481,'_blocks_4_tabs','field_6177cff281419'),(141473,40481,'blocks_5_acfe_flexible_toggle',''),(141474,40481,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(141475,40481,'blocks_5_acfe_flexible_layout_title','Text Block'),(141476,40481,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(141477,40481,'blocks_5_options_theme','#b61234'),(141478,40481,'_blocks_5_options_theme','field_6176830e2ad17'),(141479,40481,'blocks_5_options',''),(141480,40481,'_blocks_5_options','field_6176830e2ad16'),(141481,40481,'blocks_5_text_block_heading','Fees & Funding Options'),(141482,40481,'_blocks_5_text_block_heading','field_617669d413097'),(141483,40481,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(141484,40481,'_blocks_5_text_block_content','field_617669ec13098'),(141485,40481,'blocks_6_acfe_flexible_toggle',''),(141486,40481,'_blocks_6_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(141487,40481,'blocks_6_acfe_flexible_layout_title','Standard/Editorial Content'),(141488,40481,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(141489,40481,'blocks_6_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(141490,40481,'_blocks_6_content','field_6193c9b5eac84'),(141491,40481,'blocks_7_acfe_flexible_toggle',''),(141492,40481,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(141493,40481,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(141494,40481,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(141495,40481,'blocks_7_testimonial_slider_content_title',''),(141496,40481,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(141497,40481,'blocks_7_testimonial_slider_content_heading','Testimonials'),(141498,40481,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(141499,40481,'blocks_7_testimonial_slider_content_text',''),(141500,40481,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(141501,40481,'blocks_7_testimonial_slider_content_actions',''),(141502,40481,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(141503,40481,'blocks_7_testimonial_slider_content',''),(141504,40481,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(141505,40481,'blocks_7_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(141506,40481,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(141507,40481,'blocks_7_testimonial_slider_ambassador_bool','0'),(141508,40481,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(141509,40481,'blocks_8_acfe_flexible_toggle',''),(141510,40481,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(141511,40481,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(141512,40481,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(141513,40481,'blocks_8_options_theme','#ffffff'),(141514,40481,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(141515,40481,'blocks_8_options_state','0'),(141516,40481,'_blocks_8_options_state','field_6239fcb7508c5'),(141517,40481,'blocks_8_options',''),(141518,40481,'_blocks_8_options','field_6177e2991ac44'),(141519,40481,'blocks_8_content_title',''),(141520,40481,'_blocks_8_content_title','field_64d237e8bb1e2'),(141521,40481,'blocks_8_content_heading','Frequently asked questions '),(141522,40481,'_blocks_8_content_heading','field_64d237e8bb1e3'),(141523,40481,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(141524,40481,'_blocks_8_content_text','field_64d237e8bb1e4'),(141525,40481,'blocks_8_content_actions',''),(141526,40481,'_blocks_8_content_actions','field_64d237e8bb1e5'),(141527,40481,'blocks_8_content_align','left'),(141528,40481,'_blocks_8_content_align','field_64d2443e6b6aa'),(141529,40481,'blocks_8_content',''),(141530,40481,'_blocks_8_content','field_64d237e8bb1e1'),(141531,40481,'blocks_8_accordion_content','faqs'),(141532,40481,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(141533,40481,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(141534,40481,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(141535,40481,'blocks_8_actions',''),(141536,40481,'_blocks_8_actions','field_61a746a817f7a'),(141537,40481,'blocks_9_acfe_flexible_toggle',''),(141538,40481,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(141539,40481,'blocks_9_acfe_flexible_layout_title','Icons'),(141540,40481,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(141541,40481,'blocks_9_options_theme','#ffffff'),(141542,40481,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(141543,40481,'blocks_9_options_format','row'),(141544,40481,'_blocks_9_options_format','field_64bfde9a90690'),(141545,40481,'blocks_9_options',''),(141546,40481,'_blocks_9_options','field_64bfdd9b90684'),(141547,40481,'blocks_9_icon_row_items_0_icon','recognised-accreditation.svg'),(141548,40481,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(141549,40481,'blocks_9_icon_row_items_0_label','Accreditation'),(141550,40481,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(141551,40481,'blocks_9_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(141552,40481,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(141553,40481,'blocks_9_icon_row_items_1_icon','finance.svg'),(141554,40481,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(141555,40481,'blocks_9_icon_row_items_1_label','Flexible payment options'),(141556,40481,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(141557,40481,'blocks_9_icon_row_items_1_text','Including 0% finance'),(141558,40481,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(141559,40481,'blocks_9_icon_row_items_2_icon','return-on-investment-2.svg'),(141560,40481,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(141561,40481,'blocks_9_icon_row_items_2_label','Earning potential'),(141562,40481,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(141563,40481,'blocks_9_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(141564,40481,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(141565,40481,'blocks_9_icon_row_items','3'),(141566,40481,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(141567,39231,'blocks_0_acfe_flexible_toggle',''),(141568,39231,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(141569,39231,'blocks_0_acfe_flexible_layout_title','Icons'),(141570,39231,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(141571,39231,'blocks_0_options_theme','#b61234'),(141572,39231,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(141573,39231,'blocks_0_options_format','row'),(141574,39231,'_blocks_0_options_format','field_64bfde9a90690'),(141575,39231,'blocks_0_options',''),(141576,39231,'_blocks_0_options','field_64bfdd9b90684'),(141577,39231,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(141578,39231,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(141579,39231,'blocks_0_icon_row_items_0_label','Accreditation'),(141580,39231,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(141581,39231,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(141582,39231,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(141583,39231,'blocks_0_icon_row_items_1_icon','finance.svg'),(141584,39231,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(141585,39231,'blocks_0_icon_row_items_1_label','Flexible payment options'),(141586,39231,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(141587,39231,'blocks_0_icon_row_items_1_text','Including 0% finance'),(141588,39231,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(141589,39231,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(141590,39231,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(141591,39231,'blocks_0_icon_row_items_2_label','Earning potential'),(141592,39231,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(141593,39231,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(141594,39231,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(141595,39231,'blocks_0_icon_row_items','3'),(141596,39231,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(141597,39231,'blocks_1_acfe_flexible_toggle',''),(141598,39231,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(141599,39231,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(141600,39231,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(141601,39231,'blocks_1_options_theme','#ffffff'),(141602,39231,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(141603,39231,'blocks_1_options_reverse','0'),(141604,39231,'_blocks_1_options_reverse','field_61768049bb8ac'),(141605,39231,'blocks_1_options',''),(141606,39231,'_blocks_1_options','field_617682517c334'),(141607,39231,'blocks_1_split_5050_image','41318'),(141608,39231,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(141609,39231,'blocks_1_split_5050_video',''),(141610,39231,'_blocks_1_split_5050_video','field_6239f3160848a'),(141611,39231,'blocks_1_split_5050_content_title',''),(141612,39231,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(141613,39231,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(141614,39231,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(141615,39231,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(141616,39231,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(141617,39231,'blocks_1_split_5050_content_actions',''),(141618,39231,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(141619,39231,'blocks_1_split_5050_content',''),(141620,39231,'_blocks_1_split_5050_content','field_61767afceb8ba'),(141621,39231,'blocks_2_acfe_flexible_toggle',''),(141622,39231,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(141623,39231,'blocks_2_acfe_flexible_layout_title','Form'),(141624,39231,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(141625,39231,'blocks_2_row_content_format','standard'),(141626,39231,'_blocks_2_row_content_format','field_6481ead962881'),(141627,39231,'blocks_2_row_content_title',''),(141628,39231,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(141629,39231,'blocks_2_row_content_heading','Enquire Today'),(141630,39231,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(141631,39231,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(141632,39231,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(141633,39231,'blocks_2_row_content_actions',''),(141634,39231,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(141635,39231,'blocks_2_row_content',''),(141636,39231,'_blocks_2_row_content','field_61a0f5f5b3db0'),(141637,39231,'blocks_2_row_form','40394'),(141638,39231,'_blocks_2_row_form','field_61a4ff2c0b08e'),(141639,39231,'blocks_2_row_form_button_label',''),(141640,39231,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(141641,39231,'blocks_3_acfe_flexible_toggle',''),(141642,39231,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(141643,39231,'blocks_3_acfe_flexible_layout_title','Video'),(141644,39231,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(141645,39231,'blocks_3_size','large'),(141646,39231,'_blocks_3_size','field_6487038f297c1'),(141647,39231,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(141648,39231,'_blocks_3_row_content_title','field_64870132a865d'),(141649,39231,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(141650,39231,'_blocks_3_row_content_heading','field_64870142a865e'),(141651,39231,'blocks_3_row_content_text',''),(141652,39231,'_blocks_3_row_content_text','field_64870148a865f'),(141653,39231,'blocks_3_row_content',''),(141654,39231,'_blocks_3_row_content','field_6487008ba865c'),(141655,39231,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(141656,39231,'_blocks_3_video_src','field_6193c4a98ec07'),(141657,39231,'blocks_3_video_thumbnail',''),(141658,39231,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(141659,39231,'blocks_4_acfe_flexible_toggle',''),(141660,39231,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(141661,39231,'blocks_4_acfe_flexible_layout_title','Steps'),(141662,39231,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(141663,39231,'blocks_4_row_content_title',''),(141664,39231,'_blocks_4_row_content_title','field_64888cd1e26e0'),(141665,39231,'blocks_4_row_content_heading','Benefits of training with us'),(141666,39231,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(141667,39231,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(141668,39231,'_blocks_4_row_content_text','field_64888ce2e26e2'),(141669,39231,'blocks_4_row_content_actions',''),(141670,39231,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(141671,39231,'blocks_4_row_content',''),(141672,39231,'_blocks_4_row_content','field_64888cb0e26df'),(141673,39231,'blocks_4_steps_0_icon','progression.svg'),(141674,39231,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(141675,39231,'blocks_4_steps_0_title','Earning potential'),(141676,39231,'_blocks_4_steps_0_title','field_64888d94e26e7'),(141677,39231,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(141678,39231,'_blocks_4_steps_0_text','field_64888d99e26e8'),(141679,39231,'blocks_4_steps_1_icon','support.svg'),(141680,39231,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(141681,39231,'blocks_4_steps_1_title','Lifetime Learning Promise'),(141682,39231,'_blocks_4_steps_1_title','field_64888d94e26e7'),(141683,39231,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(141684,39231,'_blocks_4_steps_1_text','field_64888d99e26e8'),(141685,39231,'blocks_4_steps_2_icon','qualification.svg'),(141686,39231,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(141687,39231,'blocks_4_steps_2_title','Evidence based hands on learning'),(141688,39231,'_blocks_4_steps_2_title','field_64888d94e26e7'),(141689,39231,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(141690,39231,'_blocks_4_steps_2_text','field_64888d99e26e8'),(141691,39231,'blocks_4_steps_3_icon','leaders.svg'),(141692,39231,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(141693,39231,'blocks_4_steps_3_title','Stand out from the crowd'),(141694,39231,'_blocks_4_steps_3_title','field_64888d94e26e7'),(141695,39231,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(141696,39231,'_blocks_4_steps_3_text','field_64888d99e26e8'),(141697,39231,'blocks_4_steps','4'),(141698,39231,'_blocks_4_steps','field_64888d44e26e5'),(141699,39231,'blocks_5_acfe_flexible_toggle',''),(141700,39231,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(141701,39231,'blocks_5_acfe_flexible_layout_title','Tabs'),(141702,39231,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(141703,39231,'blocks_5_options_theme','#ffffff'),(141704,39231,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(141705,39231,'blocks_5_options',''),(141706,39231,'_blocks_5_options','field_6177cfcd8140f'),(141707,39231,'blocks_5_tabs_0_tab_label','What will I learn?'),(141708,39231,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(141709,39231,'blocks_5_tabs_0_tab_content_title',''),(141710,39231,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(141711,39231,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(141712,39231,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(141713,39231,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients:\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(141714,39231,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(141715,39231,'blocks_5_tabs_0_tab_content_actions',''),(141716,39231,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(141717,39231,'blocks_5_tabs_0_tab_content',''),(141718,39231,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(141719,39231,'blocks_5_tabs_0_tab_image','39076'),(141720,39231,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(141721,39231,'blocks_5_tabs_1_tab_label','What do I need?'),(141722,39231,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(141723,39231,'blocks_5_tabs_1_tab_content_title',''),(141724,39231,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(141725,39231,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(141726,39231,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(141727,39231,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(141728,39231,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(141729,39231,'blocks_5_tabs_1_tab_content_actions',''),(141730,39231,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(141731,39231,'blocks_5_tabs_1_tab_content',''),(141732,39231,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(141733,39231,'blocks_5_tabs_1_tab_image','40487'),(141734,39231,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(141735,39231,'blocks_5_tabs_2_tab_label','Where can I learn?'),(141736,39231,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(141737,39231,'blocks_5_tabs_2_tab_content_title',''),(141738,39231,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(141739,39231,'blocks_5_tabs_2_tab_content_heading','Locations'),(141740,39231,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(141741,39231,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(141742,39231,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(141743,39231,'blocks_5_tabs_2_tab_content_actions',''),(141744,39231,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(141745,39231,'blocks_5_tabs_2_tab_content',''),(141746,39231,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(141747,39231,'blocks_5_tabs_2_tab_image','39224'),(141748,39231,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(141749,39231,'blocks_5_tabs','3'),(141750,39231,'_blocks_5_tabs','field_6177cff281419'),(141751,39231,'blocks_6_acfe_flexible_toggle',''),(141752,39231,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(141753,39231,'blocks_6_acfe_flexible_layout_title','Text Block'),(141754,39231,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(141755,39231,'blocks_6_options_theme','#b61234'),(141756,39231,'_blocks_6_options_theme','field_6176830e2ad17'),(141757,39231,'blocks_6_options',''),(141758,39231,'_blocks_6_options','field_6176830e2ad16'),(141759,39231,'blocks_6_text_block_heading','Fees & Funding Options'),(141760,39231,'_blocks_6_text_block_heading','field_617669d413097'),(141761,39231,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(141762,39231,'_blocks_6_text_block_content','field_617669ec13098'),(141815,40482,'hide_hero','0'),(141816,40482,'_hide_hero','field_66a2380fcda39'),(141817,40482,'hero_title','Biomechanics and Pilates'),(141818,40482,'_hero_title','field_617571fe285e8'),(141819,40482,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(141820,40482,'_hero_text','field_6175723c285e9'),(141821,40482,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(141822,40482,'_hero_actions_0_button','field_61757281285eb'),(141823,40482,'hero_actions','1'),(141824,40482,'_hero_actions','field_61757270285ea'),(141825,40482,'hero_style','default'),(141826,40482,'_hero_style','field_62051d9dc5324'),(141827,40482,'_thumbnail_id','39243'),(141828,40482,'__thumbnail_id','field_617570855ddaf'),(141829,40482,'hero_image_pos_x','right'),(141830,40482,'_hero_image_pos_x','field_62ec3d05390bb'),(141831,40482,'hero_image_pos_y','top'),(141832,40482,'_hero_image_pos_y','field_62ec3d05390bc'),(141833,40482,'hero_image_pos',''),(141834,40482,'_hero_image_pos','field_62ec3d05390ba'),(141835,40482,'fft_hide_from_listings','0'),(141836,40482,'_fft_hide_from_listings','field_61f1320446ab2'),(141837,40482,'fft_page_format','default'),(141838,40482,'_fft_page_format','field_61ae213f1f218'),(141839,40482,'fft_hide_nav','0'),(141840,40482,'_fft_hide_nav','field_635bd5e43527c'),(141841,40482,'fft_hide_header_call_to_action','0'),(141842,40482,'_fft_hide_header_call_to_action','field_635bd6723527d'),(141843,40482,'fft_page_sitemap','0'),(141844,40482,'_fft_page_sitemap','field_61af9b34e8181'),(141845,40482,'blocks','a:10:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(141846,40482,'_blocks','field_6176696113096'),(141847,40482,'blocks_0_acfe_flexible_toggle',''),(141848,40482,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(141849,40482,'blocks_0_acfe_flexible_layout_title','Icons'),(141850,40482,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(141851,40482,'blocks_0_options_theme','#ffffff'),(141852,40482,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(141853,40482,'blocks_0_options_format','row'),(141854,40482,'_blocks_0_options_format','field_64bfde9a90690'),(141855,40482,'blocks_0_options',''),(141856,40482,'_blocks_0_options','field_64bfdd9b90684'),(141857,40482,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(141858,40482,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(141859,40482,'blocks_0_icon_row_items_0_label','Accreditation'),(141860,40482,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(141861,40482,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(141862,40482,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(141863,40482,'blocks_0_icon_row_items_1_icon','finance.svg'),(141864,40482,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(141865,40482,'blocks_0_icon_row_items_1_label','Flexible payment options'),(141866,40482,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(141867,40482,'blocks_0_icon_row_items_1_text','Including 0% finance'),(141868,40482,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(141869,40482,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(141870,40482,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(141871,40482,'blocks_0_icon_row_items_2_label','Earning potential'),(141872,40482,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(141873,40482,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(141874,40482,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(141875,40482,'blocks_0_icon_row_items','3'),(141876,40482,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(141877,40482,'blocks_1_acfe_flexible_toggle',''),(141878,40482,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(141879,40482,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(141880,40482,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(141881,40482,'blocks_1_options_theme','#ffffff'),(141882,40482,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(141883,40482,'blocks_1_options_reverse','0'),(141884,40482,'_blocks_1_options_reverse','field_61768049bb8ac'),(141885,40482,'blocks_1_options',''),(141886,40482,'_blocks_1_options','field_617682517c334'),(141887,40482,'blocks_1_split_5050_image','38037'),(141888,40482,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(141889,40482,'blocks_1_split_5050_video',''),(141890,40482,'_blocks_1_split_5050_video','field_6239f3160848a'),(141891,40482,'blocks_1_split_5050_content_title',''),(141892,40482,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(141893,40482,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(141894,40482,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(141895,40482,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(141896,40482,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(141897,40482,'blocks_1_split_5050_content_actions',''),(141898,40482,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(141899,40482,'blocks_1_split_5050_content',''),(141900,40482,'_blocks_1_split_5050_content','field_61767afceb8ba'),(141901,40482,'blocks_2_acfe_flexible_toggle',''),(141902,40482,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(141903,40482,'blocks_2_acfe_flexible_layout_title','Form'),(141904,40482,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(141905,40482,'blocks_2_row_content_format','standard'),(141906,40482,'_blocks_2_row_content_format','field_6481ead962881'),(141907,40482,'blocks_2_row_content_title',''),(141908,40482,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(141909,40482,'blocks_2_row_content_heading','Enquire Today'),(141910,40482,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(141911,40482,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(141912,40482,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(141913,40482,'blocks_2_row_content_actions',''),(141914,40482,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(141915,40482,'blocks_2_row_content',''),(141916,40482,'_blocks_2_row_content','field_61a0f5f5b3db0'),(141917,40482,'blocks_2_row_form',''),(141918,40482,'_blocks_2_row_form','field_61a4ff2c0b08e'),(141919,40482,'blocks_2_row_form_button_label',''),(141920,40482,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(141921,40482,'blocks_3_acfe_flexible_toggle',''),(141922,40482,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(141923,40482,'blocks_3_acfe_flexible_layout_title','Video'),(141924,40482,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(141925,40482,'blocks_3_size','large'),(141926,40482,'_blocks_3_size','field_6487038f297c1'),(141927,40482,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(141928,40482,'_blocks_3_row_content_title','field_64870132a865d'),(141929,40482,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(141930,40482,'_blocks_3_row_content_heading','field_64870142a865e'),(141931,40482,'blocks_3_row_content_text',''),(141932,40482,'_blocks_3_row_content_text','field_64870148a865f'),(141933,40482,'blocks_3_row_content',''),(141934,40482,'_blocks_3_row_content','field_6487008ba865c'),(141935,40482,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(141936,40482,'_blocks_3_video_src','field_6193c4a98ec07'),(141937,40482,'blocks_3_video_thumbnail',''),(141938,40482,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(141939,40482,'blocks_4_acfe_flexible_toggle',''),(141940,40482,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(141941,40482,'blocks_4_acfe_flexible_layout_title','Steps'),(141942,40482,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(141943,40482,'blocks_4_row_content_title',''),(141944,40482,'_blocks_4_row_content_title','field_64888cd1e26e0'),(141945,40482,'blocks_4_row_content_heading','Benefits of training with us'),(141946,40482,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(141947,40482,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(141948,40482,'_blocks_4_row_content_text','field_64888ce2e26e2'),(141949,40482,'blocks_4_row_content_actions',''),(141950,40482,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(141951,40482,'blocks_4_row_content',''),(141952,40482,'_blocks_4_row_content','field_64888cb0e26df'),(141953,40482,'blocks_4_steps_0_icon','progression.svg'),(141954,40482,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(141955,40482,'blocks_4_steps_0_title','Earning potential'),(141956,40482,'_blocks_4_steps_0_title','field_64888d94e26e7'),(141957,40482,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(141958,40482,'_blocks_4_steps_0_text','field_64888d99e26e8'),(141959,40482,'blocks_4_steps_1_icon','support.svg'),(141960,40482,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(141961,40482,'blocks_4_steps_1_title','Lifetime Learning Promise'),(141962,40482,'_blocks_4_steps_1_title','field_64888d94e26e7'),(141963,40482,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(141964,40482,'_blocks_4_steps_1_text','field_64888d99e26e8'),(141965,40482,'blocks_4_steps_2_icon','qualification.svg'),(141966,40482,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(141967,40482,'blocks_4_steps_2_title','Evidence based hands on learning'),(141968,40482,'_blocks_4_steps_2_title','field_64888d94e26e7'),(141969,40482,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(141970,40482,'_blocks_4_steps_2_text','field_64888d99e26e8'),(141971,40482,'blocks_4_steps_3_icon','leaders.svg'),(141972,40482,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(141973,40482,'blocks_4_steps_3_title','Stand out from the crowd'),(141974,40482,'_blocks_4_steps_3_title','field_64888d94e26e7'),(141975,40482,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(141976,40482,'_blocks_4_steps_3_text','field_64888d99e26e8'),(141977,40482,'blocks_4_steps','4'),(141978,40482,'_blocks_4_steps','field_64888d44e26e5'),(141979,40482,'blocks_5_acfe_flexible_toggle',''),(141980,40482,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(141981,40482,'blocks_5_acfe_flexible_layout_title','Tabs'),(141982,40482,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(141983,40482,'blocks_5_options_theme','#ffffff'),(141984,40482,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(141985,40482,'blocks_5_options',''),(141986,40482,'_blocks_5_options','field_6177cfcd8140f'),(141987,40482,'blocks_5_tabs_0_tab_label','What will I learn?'),(141988,40482,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(141989,40482,'blocks_5_tabs_0_tab_content_title',''),(141990,40482,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(141991,40482,'blocks_5_tabs_0_tab_content_heading','What you’ll learn');
INSERT INTO `6m7_postmeta` VALUES (141992,40482,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(141993,40482,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(141994,40482,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(141995,40482,'blocks_5_tabs_0_tab_content_actions',''),(141996,40482,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(141997,40482,'blocks_5_tabs_0_tab_content',''),(141998,40482,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(141999,40482,'blocks_5_tabs_0_tab_image','39076'),(142000,40482,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(142001,40482,'blocks_5_tabs_1_tab_label','What do I need?'),(142002,40482,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(142003,40482,'blocks_5_tabs_1_tab_content_title',''),(142004,40482,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(142005,40482,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(142006,40482,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(142007,40482,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(142008,40482,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(142009,40482,'blocks_5_tabs_1_tab_content_actions',''),(142010,40482,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(142011,40482,'blocks_5_tabs_1_tab_content',''),(142012,40482,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(142013,40482,'blocks_5_tabs_1_tab_image','39223'),(142014,40482,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(142015,40482,'blocks_5_tabs_2_tab_label','Where can I learn?'),(142016,40482,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(142017,40482,'blocks_5_tabs_2_tab_content_title',''),(142018,40482,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(142019,40482,'blocks_5_tabs_2_tab_content_heading','Locations'),(142020,40482,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(142021,40482,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(142022,40482,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(142023,40482,'blocks_5_tabs_2_tab_content_actions',''),(142024,40482,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(142025,40482,'blocks_5_tabs_2_tab_content',''),(142026,40482,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(142027,40482,'blocks_5_tabs_2_tab_image','39224'),(142028,40482,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(142029,40482,'blocks_5_tabs','3'),(142030,40482,'_blocks_5_tabs','field_6177cff281419'),(142031,40482,'blocks_6_acfe_flexible_toggle',''),(142032,40482,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(142033,40482,'blocks_6_acfe_flexible_layout_title','Text Block'),(142034,40482,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(142035,40482,'blocks_6_options_theme','#b61234'),(142036,40482,'_blocks_6_options_theme','field_6176830e2ad17'),(142037,40482,'blocks_6_options',''),(142038,40482,'_blocks_6_options','field_6176830e2ad16'),(142039,40482,'blocks_6_text_block_heading','Fees & Funding Options'),(142040,40482,'_blocks_6_text_block_heading','field_617669d413097'),(142041,40482,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(142042,40482,'_blocks_6_text_block_content','field_617669ec13098'),(142043,40482,'blocks_7_acfe_flexible_toggle',''),(142044,40482,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(142045,40482,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(142046,40482,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(142047,40482,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(142048,40482,'_blocks_7_content','field_6193c9b5eac84'),(142049,40482,'blocks_8_acfe_flexible_toggle',''),(142050,40482,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(142051,40482,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(142052,40482,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(142053,40482,'blocks_8_testimonial_slider_content_title',''),(142054,40482,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(142055,40482,'blocks_8_testimonial_slider_content_heading','Testimonials'),(142056,40482,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(142057,40482,'blocks_8_testimonial_slider_content_text',''),(142058,40482,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(142059,40482,'blocks_8_testimonial_slider_content_actions',''),(142060,40482,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(142061,40482,'blocks_8_testimonial_slider_content',''),(142062,40482,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(142063,40482,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(142064,40482,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(142065,40482,'blocks_8_testimonial_slider_ambassador_bool','0'),(142066,40482,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(142067,40482,'blocks_9_acfe_flexible_toggle',''),(142068,40482,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(142069,40482,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(142070,40482,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(142071,40482,'blocks_9_options_theme','#ffffff'),(142072,40482,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(142073,40482,'blocks_9_options_state','0'),(142074,40482,'_blocks_9_options_state','field_6239fcb7508c5'),(142075,40482,'blocks_9_options',''),(142076,40482,'_blocks_9_options','field_6177e2991ac44'),(142077,40482,'blocks_9_content_title',''),(142078,40482,'_blocks_9_content_title','field_64d237e8bb1e2'),(142079,40482,'blocks_9_content_heading','Frequently asked questions '),(142080,40482,'_blocks_9_content_heading','field_64d237e8bb1e3'),(142081,40482,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(142082,40482,'_blocks_9_content_text','field_64d237e8bb1e4'),(142083,40482,'blocks_9_content_actions',''),(142084,40482,'_blocks_9_content_actions','field_64d237e8bb1e5'),(142085,40482,'blocks_9_content_align','left'),(142086,40482,'_blocks_9_content_align','field_64d2443e6b6aa'),(142087,40482,'blocks_9_content',''),(142088,40482,'_blocks_9_content','field_64d237e8bb1e1'),(142089,40482,'blocks_9_accordion_content','faqs'),(142090,40482,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(142091,40482,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(142092,40482,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(142093,40482,'blocks_9_actions',''),(142094,40482,'_blocks_9_actions','field_61a746a817f7a'),(142095,40483,'hide_hero','0'),(142096,40483,'_hide_hero','field_66a2380fcda39'),(142097,40483,'hero_title','Biomechanics and Pilates'),(142098,40483,'_hero_title','field_617571fe285e8'),(142099,40483,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(142100,40483,'_hero_text','field_6175723c285e9'),(142101,40483,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(142102,40483,'_hero_actions_0_button','field_61757281285eb'),(142103,40483,'hero_actions','1'),(142104,40483,'_hero_actions','field_61757270285ea'),(142105,40483,'hero_style','default'),(142106,40483,'_hero_style','field_62051d9dc5324'),(142107,40483,'_thumbnail_id','39243'),(142108,40483,'__thumbnail_id','field_617570855ddaf'),(142109,40483,'hero_image_pos_x','right'),(142110,40483,'_hero_image_pos_x','field_62ec3d05390bb'),(142111,40483,'hero_image_pos_y','top'),(142112,40483,'_hero_image_pos_y','field_62ec3d05390bc'),(142113,40483,'hero_image_pos',''),(142114,40483,'_hero_image_pos','field_62ec3d05390ba'),(142115,40483,'fft_hide_from_listings','0'),(142116,40483,'_fft_hide_from_listings','field_61f1320446ab2'),(142117,40483,'fft_page_format','default'),(142118,40483,'_fft_page_format','field_61ae213f1f218'),(142119,40483,'fft_hide_nav','0'),(142120,40483,'_fft_hide_nav','field_635bd5e43527c'),(142121,40483,'fft_hide_header_call_to_action','0'),(142122,40483,'_fft_hide_header_call_to_action','field_635bd6723527d'),(142123,40483,'fft_page_sitemap','0'),(142124,40483,'_fft_page_sitemap','field_61af9b34e8181'),(142125,40483,'blocks','a:10:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(142126,40483,'_blocks','field_6176696113096'),(142127,40483,'blocks_0_acfe_flexible_toggle',''),(142128,40483,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(142129,40483,'blocks_0_acfe_flexible_layout_title','Icons'),(142130,40483,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(142131,40483,'blocks_0_options_theme','#b61234'),(142132,40483,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(142133,40483,'blocks_0_options_format','row'),(142134,40483,'_blocks_0_options_format','field_64bfde9a90690'),(142135,40483,'blocks_0_options',''),(142136,40483,'_blocks_0_options','field_64bfdd9b90684'),(142137,40483,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(142138,40483,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(142139,40483,'blocks_0_icon_row_items_0_label','Accreditation'),(142140,40483,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(142141,40483,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(142142,40483,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(142143,40483,'blocks_0_icon_row_items_1_icon','finance.svg'),(142144,40483,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(142145,40483,'blocks_0_icon_row_items_1_label','Flexible payment options'),(142146,40483,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(142147,40483,'blocks_0_icon_row_items_1_text','Including 0% finance'),(142148,40483,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(142149,40483,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(142150,40483,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(142151,40483,'blocks_0_icon_row_items_2_label','Earning potential'),(142152,40483,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(142153,40483,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(142154,40483,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(142155,40483,'blocks_0_icon_row_items','3'),(142156,40483,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(142157,40483,'blocks_1_acfe_flexible_toggle',''),(142158,40483,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(142159,40483,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(142160,40483,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(142161,40483,'blocks_1_options_theme','#ffffff'),(142162,40483,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(142163,40483,'blocks_1_options_reverse','0'),(142164,40483,'_blocks_1_options_reverse','field_61768049bb8ac'),(142165,40483,'blocks_1_options',''),(142166,40483,'_blocks_1_options','field_617682517c334'),(142167,40483,'blocks_1_split_5050_image','38037'),(142168,40483,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(142169,40483,'blocks_1_split_5050_video',''),(142170,40483,'_blocks_1_split_5050_video','field_6239f3160848a'),(142171,40483,'blocks_1_split_5050_content_title',''),(142172,40483,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(142173,40483,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(142174,40483,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(142175,40483,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(142176,40483,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(142177,40483,'blocks_1_split_5050_content_actions',''),(142178,40483,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(142179,40483,'blocks_1_split_5050_content',''),(142180,40483,'_blocks_1_split_5050_content','field_61767afceb8ba'),(142181,40483,'blocks_2_acfe_flexible_toggle',''),(142182,40483,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(142183,40483,'blocks_2_acfe_flexible_layout_title','Form'),(142184,40483,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(142185,40483,'blocks_2_row_content_format','standard'),(142186,40483,'_blocks_2_row_content_format','field_6481ead962881'),(142187,40483,'blocks_2_row_content_title',''),(142188,40483,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(142189,40483,'blocks_2_row_content_heading','Enquire Today'),(142190,40483,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(142191,40483,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(142192,40483,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(142193,40483,'blocks_2_row_content_actions',''),(142194,40483,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(142195,40483,'blocks_2_row_content',''),(142196,40483,'_blocks_2_row_content','field_61a0f5f5b3db0'),(142197,40483,'blocks_2_row_form',''),(142198,40483,'_blocks_2_row_form','field_61a4ff2c0b08e'),(142199,40483,'blocks_2_row_form_button_label',''),(142200,40483,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(142201,40483,'blocks_3_acfe_flexible_toggle',''),(142202,40483,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(142203,40483,'blocks_3_acfe_flexible_layout_title','Video'),(142204,40483,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(142205,40483,'blocks_3_size','large'),(142206,40483,'_blocks_3_size','field_6487038f297c1'),(142207,40483,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(142208,40483,'_blocks_3_row_content_title','field_64870132a865d'),(142209,40483,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(142210,40483,'_blocks_3_row_content_heading','field_64870142a865e'),(142211,40483,'blocks_3_row_content_text',''),(142212,40483,'_blocks_3_row_content_text','field_64870148a865f'),(142213,40483,'blocks_3_row_content',''),(142214,40483,'_blocks_3_row_content','field_6487008ba865c'),(142215,40483,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(142216,40483,'_blocks_3_video_src','field_6193c4a98ec07'),(142217,40483,'blocks_3_video_thumbnail',''),(142218,40483,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(142219,40483,'blocks_4_acfe_flexible_toggle',''),(142220,40483,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(142221,40483,'blocks_4_acfe_flexible_layout_title','Steps'),(142222,40483,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(142223,40483,'blocks_4_row_content_title',''),(142224,40483,'_blocks_4_row_content_title','field_64888cd1e26e0'),(142225,40483,'blocks_4_row_content_heading','Benefits of training with us'),(142226,40483,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(142227,40483,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(142228,40483,'_blocks_4_row_content_text','field_64888ce2e26e2'),(142229,40483,'blocks_4_row_content_actions',''),(142230,40483,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(142231,40483,'blocks_4_row_content',''),(142232,40483,'_blocks_4_row_content','field_64888cb0e26df'),(142233,40483,'blocks_4_steps_0_icon','progression.svg'),(142234,40483,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(142235,40483,'blocks_4_steps_0_title','Earning potential'),(142236,40483,'_blocks_4_steps_0_title','field_64888d94e26e7'),(142237,40483,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(142238,40483,'_blocks_4_steps_0_text','field_64888d99e26e8'),(142239,40483,'blocks_4_steps_1_icon','support.svg'),(142240,40483,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(142241,40483,'blocks_4_steps_1_title','Lifetime Learning Promise'),(142242,40483,'_blocks_4_steps_1_title','field_64888d94e26e7'),(142243,40483,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(142244,40483,'_blocks_4_steps_1_text','field_64888d99e26e8'),(142245,40483,'blocks_4_steps_2_icon','qualification.svg'),(142246,40483,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(142247,40483,'blocks_4_steps_2_title','Evidence based hands on learning'),(142248,40483,'_blocks_4_steps_2_title','field_64888d94e26e7'),(142249,40483,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(142250,40483,'_blocks_4_steps_2_text','field_64888d99e26e8'),(142251,40483,'blocks_4_steps_3_icon','leaders.svg'),(142252,40483,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(142253,40483,'blocks_4_steps_3_title','Stand out from the crowd'),(142254,40483,'_blocks_4_steps_3_title','field_64888d94e26e7'),(142255,40483,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(142256,40483,'_blocks_4_steps_3_text','field_64888d99e26e8'),(142257,40483,'blocks_4_steps','4'),(142258,40483,'_blocks_4_steps','field_64888d44e26e5'),(142259,40483,'blocks_5_acfe_flexible_toggle',''),(142260,40483,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(142261,40483,'blocks_5_acfe_flexible_layout_title','Tabs'),(142262,40483,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(142263,40483,'blocks_5_options_theme','#ffffff'),(142264,40483,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(142265,40483,'blocks_5_options',''),(142266,40483,'_blocks_5_options','field_6177cfcd8140f'),(142267,40483,'blocks_5_tabs_0_tab_label','What will I learn?'),(142268,40483,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(142269,40483,'blocks_5_tabs_0_tab_content_title',''),(142270,40483,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(142271,40483,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(142272,40483,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(142273,40483,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(142274,40483,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(142275,40483,'blocks_5_tabs_0_tab_content_actions',''),(142276,40483,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(142277,40483,'blocks_5_tabs_0_tab_content',''),(142278,40483,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(142279,40483,'blocks_5_tabs_0_tab_image','39076'),(142280,40483,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(142281,40483,'blocks_5_tabs_1_tab_label','What do I need?'),(142282,40483,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(142283,40483,'blocks_5_tabs_1_tab_content_title',''),(142284,40483,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(142285,40483,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(142286,40483,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(142287,40483,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(142288,40483,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(142289,40483,'blocks_5_tabs_1_tab_content_actions',''),(142290,40483,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(142291,40483,'blocks_5_tabs_1_tab_content',''),(142292,40483,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(142293,40483,'blocks_5_tabs_1_tab_image','39223'),(142294,40483,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(142295,40483,'blocks_5_tabs_2_tab_label','Where can I learn?'),(142296,40483,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(142297,40483,'blocks_5_tabs_2_tab_content_title',''),(142298,40483,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(142299,40483,'blocks_5_tabs_2_tab_content_heading','Locations'),(142300,40483,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(142301,40483,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(142302,40483,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(142303,40483,'blocks_5_tabs_2_tab_content_actions',''),(142304,40483,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(142305,40483,'blocks_5_tabs_2_tab_content',''),(142306,40483,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(142307,40483,'blocks_5_tabs_2_tab_image','39224'),(142308,40483,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(142309,40483,'blocks_5_tabs','3'),(142310,40483,'_blocks_5_tabs','field_6177cff281419'),(142311,40483,'blocks_6_acfe_flexible_toggle',''),(142312,40483,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(142313,40483,'blocks_6_acfe_flexible_layout_title','Text Block'),(142314,40483,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(142315,40483,'blocks_6_options_theme','#b61234'),(142316,40483,'_blocks_6_options_theme','field_6176830e2ad17'),(142317,40483,'blocks_6_options',''),(142318,40483,'_blocks_6_options','field_6176830e2ad16'),(142319,40483,'blocks_6_text_block_heading','Fees & Funding Options'),(142320,40483,'_blocks_6_text_block_heading','field_617669d413097'),(142321,40483,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(142322,40483,'_blocks_6_text_block_content','field_617669ec13098'),(142323,40483,'blocks_7_acfe_flexible_toggle',''),(142324,40483,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(142325,40483,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(142326,40483,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(142327,40483,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(142328,40483,'_blocks_7_content','field_6193c9b5eac84'),(142329,40483,'blocks_8_acfe_flexible_toggle',''),(142330,40483,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(142331,40483,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(142332,40483,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(142333,40483,'blocks_8_testimonial_slider_content_title',''),(142334,40483,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(142335,40483,'blocks_8_testimonial_slider_content_heading','Testimonials'),(142336,40483,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(142337,40483,'blocks_8_testimonial_slider_content_text',''),(142338,40483,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(142339,40483,'blocks_8_testimonial_slider_content_actions',''),(142340,40483,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(142341,40483,'blocks_8_testimonial_slider_content',''),(142342,40483,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(142343,40483,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(142344,40483,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(142345,40483,'blocks_8_testimonial_slider_ambassador_bool','0'),(142346,40483,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(142347,40483,'blocks_9_acfe_flexible_toggle',''),(142348,40483,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(142349,40483,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(142350,40483,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(142351,40483,'blocks_9_options_theme','#ffffff'),(142352,40483,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(142353,40483,'blocks_9_options_state','0'),(142354,40483,'_blocks_9_options_state','field_6239fcb7508c5'),(142355,40483,'blocks_9_options',''),(142356,40483,'_blocks_9_options','field_6177e2991ac44'),(142357,40483,'blocks_9_content_title',''),(142358,40483,'_blocks_9_content_title','field_64d237e8bb1e2'),(142359,40483,'blocks_9_content_heading','Frequently asked questions '),(142360,40483,'_blocks_9_content_heading','field_64d237e8bb1e3'),(142361,40483,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(142362,40483,'_blocks_9_content_text','field_64d237e8bb1e4'),(142363,40483,'blocks_9_content_actions',''),(142364,40483,'_blocks_9_content_actions','field_64d237e8bb1e5'),(142365,40483,'blocks_9_content_align','left'),(142366,40483,'_blocks_9_content_align','field_64d2443e6b6aa'),(142367,40483,'blocks_9_content',''),(142368,40483,'_blocks_9_content','field_64d237e8bb1e1'),(142369,40483,'blocks_9_accordion_content','faqs'),(142370,40483,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(142371,40483,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(142372,40483,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(142373,40483,'blocks_9_actions',''),(142374,40483,'_blocks_9_actions','field_61a746a817f7a'),(142375,40484,'_wp_attached_file','2024/09/dsc_6163-scaled.jpg'),(142376,40484,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:27:\"2024/09/dsc_6163-scaled.jpg\";s:8:\"filesize\";i:661945;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"dsc_6163-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121194;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"dsc_6163-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179084;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"dsc_6163-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53135;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"dsc_6163-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99307;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"dsc_6163-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:265472;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"dsc_6163-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:429811;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"dsc_6163-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63186;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"dsc_6163-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172896;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"dsc_6163-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:271880;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"dsc_6163-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53127;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"dsc_6163-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120376;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"dsc_6163-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178017;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"dsc_6163-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56335;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"dsc_6163-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144559;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"dsc_6163-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223218;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"dsc_6163-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55284;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"dsc_6163-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131050;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"dsc_6163-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198680;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"dsc_6163-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50341;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"dsc_6163-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111333;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"dsc_6163-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163085;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535279179\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"dsc_6163.jpg\";}'),(142377,40484,'_wp_attachment_image_alt','four people, one man, three woman, working together and taking notes.'),(142402,40485,'hide_hero','0'),(142403,40485,'_hide_hero','field_66a2380fcda39'),(142404,40485,'hero_title','Biomechanics and Pilates'),(142405,40485,'_hero_title','field_617571fe285e8'),(142406,40485,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(142407,40485,'_hero_text','field_6175723c285e9'),(142408,40485,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(142409,40485,'_hero_actions_0_button','field_61757281285eb'),(142410,40485,'hero_actions','1'),(142411,40485,'_hero_actions','field_61757270285ea'),(142412,40485,'hero_style','default'),(142413,40485,'_hero_style','field_62051d9dc5324'),(142414,40485,'_thumbnail_id','39243'),(142415,40485,'__thumbnail_id','field_617570855ddaf'),(142416,40485,'hero_image_pos_x','right'),(142417,40485,'_hero_image_pos_x','field_62ec3d05390bb'),(142418,40485,'hero_image_pos_y','top'),(142419,40485,'_hero_image_pos_y','field_62ec3d05390bc'),(142420,40485,'hero_image_pos',''),(142421,40485,'_hero_image_pos','field_62ec3d05390ba'),(142422,40485,'fft_hide_from_listings','0'),(142423,40485,'_fft_hide_from_listings','field_61f1320446ab2'),(142424,40485,'fft_page_format','default'),(142425,40485,'_fft_page_format','field_61ae213f1f218'),(142426,40485,'fft_hide_nav','0'),(142427,40485,'_fft_hide_nav','field_635bd5e43527c'),(142428,40485,'fft_hide_header_call_to_action','0'),(142429,40485,'_fft_hide_header_call_to_action','field_635bd6723527d'),(142430,40485,'fft_page_sitemap','0'),(142431,40485,'_fft_page_sitemap','field_61af9b34e8181'),(142432,40485,'blocks','a:10:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:10:\"split_5050\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(142433,40485,'_blocks','field_6176696113096'),(142434,40485,'blocks_0_acfe_flexible_toggle',''),(142435,40485,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(142436,40485,'blocks_0_acfe_flexible_layout_title','Icons'),(142437,40485,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(142438,40485,'blocks_0_options_theme','#b61234'),(142439,40485,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(142440,40485,'blocks_0_options_format','row'),(142441,40485,'_blocks_0_options_format','field_64bfde9a90690'),(142442,40485,'blocks_0_options',''),(142443,40485,'_blocks_0_options','field_64bfdd9b90684'),(142444,40485,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(142445,40485,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(142446,40485,'blocks_0_icon_row_items_0_label','Accreditation'),(142447,40485,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(142448,40485,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(142449,40485,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(142450,40485,'blocks_0_icon_row_items_1_icon','finance.svg'),(142451,40485,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(142452,40485,'blocks_0_icon_row_items_1_label','Flexible payment options'),(142453,40485,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(142454,40485,'blocks_0_icon_row_items_1_text','Including 0% finance'),(142455,40485,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(142456,40485,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(142457,40485,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(142458,40485,'blocks_0_icon_row_items_2_label','Earning potential'),(142459,40485,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(142460,40485,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(142461,40485,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(142462,40485,'blocks_0_icon_row_items','3'),(142463,40485,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(142464,40485,'blocks_1_acfe_flexible_toggle',''),(142465,40485,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(142466,40485,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(142467,40485,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(142468,40485,'blocks_1_options_theme','#ffffff'),(142469,40485,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(142470,40485,'blocks_1_options_reverse','0'),(142471,40485,'_blocks_1_options_reverse','field_61768049bb8ac'),(142472,40485,'blocks_1_options',''),(142473,40485,'_blocks_1_options','field_617682517c334'),(142474,40485,'blocks_1_split_5050_image','38037'),(142475,40485,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(142476,40485,'blocks_1_split_5050_video',''),(142477,40485,'_blocks_1_split_5050_video','field_6239f3160848a'),(142478,40485,'blocks_1_split_5050_content_title',''),(142479,40485,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(142480,40485,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(142481,40485,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(142482,40485,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(142483,40485,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(142484,40485,'blocks_1_split_5050_content_actions',''),(142485,40485,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(142486,40485,'blocks_1_split_5050_content',''),(142487,40485,'_blocks_1_split_5050_content','field_61767afceb8ba'),(142488,40485,'blocks_2_acfe_flexible_toggle',''),(142489,40485,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(142490,40485,'blocks_2_acfe_flexible_layout_title','Form'),(142491,40485,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(142492,40485,'blocks_2_row_content_format','standard'),(142493,40485,'_blocks_2_row_content_format','field_6481ead962881'),(142494,40485,'blocks_2_row_content_title',''),(142495,40485,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(142496,40485,'blocks_2_row_content_heading','Enquire Today'),(142497,40485,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(142498,40485,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(142499,40485,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(142500,40485,'blocks_2_row_content_actions',''),(142501,40485,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(142502,40485,'blocks_2_row_content',''),(142503,40485,'_blocks_2_row_content','field_61a0f5f5b3db0'),(142504,40485,'blocks_2_row_form',''),(142505,40485,'_blocks_2_row_form','field_61a4ff2c0b08e'),(142506,40485,'blocks_2_row_form_button_label',''),(142507,40485,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(142508,40485,'blocks_3_acfe_flexible_toggle',''),(142509,40485,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(142510,40485,'blocks_3_acfe_flexible_layout_title','Video'),(142511,40485,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(142512,40485,'blocks_3_size','large'),(142513,40485,'_blocks_3_size','field_6487038f297c1'),(142514,40485,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(142515,40485,'_blocks_3_row_content_title','field_64870132a865d'),(142516,40485,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(142517,40485,'_blocks_3_row_content_heading','field_64870142a865e'),(142518,40485,'blocks_3_row_content_text',''),(142519,40485,'_blocks_3_row_content_text','field_64870148a865f'),(142520,40485,'blocks_3_row_content',''),(142521,40485,'_blocks_3_row_content','field_6487008ba865c'),(142522,40485,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(142523,40485,'_blocks_3_video_src','field_6193c4a98ec07'),(142524,40485,'blocks_3_video_thumbnail',''),(142525,40485,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(142526,40485,'blocks_4_acfe_flexible_toggle',''),(142527,40485,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(142528,40485,'blocks_4_acfe_flexible_layout_title','Steps'),(142529,40485,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(142530,40485,'blocks_4_row_content_title',''),(142531,40485,'_blocks_4_row_content_title','field_64888cd1e26e0'),(142532,40485,'blocks_4_row_content_heading','Benefits of training with us'),(142533,40485,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(142534,40485,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(142535,40485,'_blocks_4_row_content_text','field_64888ce2e26e2'),(142536,40485,'blocks_4_row_content_actions',''),(142537,40485,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(142538,40485,'blocks_4_row_content',''),(142539,40485,'_blocks_4_row_content','field_64888cb0e26df'),(142540,40485,'blocks_4_steps_0_icon','progression.svg'),(142541,40485,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(142542,40485,'blocks_4_steps_0_title','Earning potential'),(142543,40485,'_blocks_4_steps_0_title','field_64888d94e26e7'),(142544,40485,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(142545,40485,'_blocks_4_steps_0_text','field_64888d99e26e8'),(142546,40485,'blocks_4_steps_1_icon','support.svg'),(142547,40485,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(142548,40485,'blocks_4_steps_1_title','Lifetime Learning Promise'),(142549,40485,'_blocks_4_steps_1_title','field_64888d94e26e7'),(142550,40485,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(142551,40485,'_blocks_4_steps_1_text','field_64888d99e26e8'),(142552,40485,'blocks_4_steps_2_icon','qualification.svg'),(142553,40485,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(142554,40485,'blocks_4_steps_2_title','Evidence based hands on learning'),(142555,40485,'_blocks_4_steps_2_title','field_64888d94e26e7'),(142556,40485,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(142557,40485,'_blocks_4_steps_2_text','field_64888d99e26e8'),(142558,40485,'blocks_4_steps_3_icon','leaders.svg'),(142559,40485,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(142560,40485,'blocks_4_steps_3_title','Stand out from the crowd'),(142561,40485,'_blocks_4_steps_3_title','field_64888d94e26e7'),(142562,40485,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(142563,40485,'_blocks_4_steps_3_text','field_64888d99e26e8'),(142564,40485,'blocks_4_steps','4'),(142565,40485,'_blocks_4_steps','field_64888d44e26e5'),(142566,40485,'blocks_5_acfe_flexible_toggle',''),(142567,40485,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(142568,40485,'blocks_5_acfe_flexible_layout_title','Tabs'),(142569,40485,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(142570,40485,'blocks_5_options_theme','#ffffff'),(142571,40485,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(142572,40485,'blocks_5_options',''),(142573,40485,'_blocks_5_options','field_6177cfcd8140f'),(142574,40485,'blocks_5_tabs_0_tab_label','What will I learn?'),(142575,40485,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(142576,40485,'blocks_5_tabs_0_tab_content_title',''),(142577,40485,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(142578,40485,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(142579,40485,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(142580,40485,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(142581,40485,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(142582,40485,'blocks_5_tabs_0_tab_content_actions',''),(142583,40485,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(142584,40485,'blocks_5_tabs_0_tab_content',''),(142585,40485,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(142586,40485,'blocks_5_tabs_0_tab_image','39076'),(142587,40485,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(142588,40485,'blocks_5_tabs_1_tab_label','What do I need?'),(142589,40485,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(142590,40485,'blocks_5_tabs_1_tab_content_title',''),(142591,40485,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(142592,40485,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(142593,40485,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(142594,40485,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(142595,40485,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(142596,40485,'blocks_5_tabs_1_tab_content_actions',''),(142597,40485,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(142598,40485,'blocks_5_tabs_1_tab_content',''),(142599,40485,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(142600,40485,'blocks_5_tabs_1_tab_image','39223'),(142601,40485,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(142602,40485,'blocks_5_tabs_2_tab_label','Where can I learn?'),(142603,40485,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(142604,40485,'blocks_5_tabs_2_tab_content_title',''),(142605,40485,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(142606,40485,'blocks_5_tabs_2_tab_content_heading','Locations'),(142607,40485,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(142608,40485,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(142609,40485,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(142610,40485,'blocks_5_tabs_2_tab_content_actions',''),(142611,40485,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(142612,40485,'blocks_5_tabs_2_tab_content',''),(142613,40485,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(142614,40485,'blocks_5_tabs_2_tab_image','39224'),(142615,40485,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(142616,40485,'blocks_5_tabs','3'),(142617,40485,'_blocks_5_tabs','field_6177cff281419'),(142618,40485,'blocks_6_acfe_flexible_toggle',''),(142619,40485,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(142620,40485,'blocks_6_acfe_flexible_layout_title','Text Block'),(142621,40485,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(142622,40485,'blocks_6_options_theme','#b61234'),(142623,40485,'_blocks_6_options_theme','field_6176830e2ad17'),(142624,40485,'blocks_6_options',''),(142625,40485,'_blocks_6_options','field_6176830e2ad16'),(142626,40485,'blocks_6_text_block_heading','Fees & Funding Options'),(142627,40485,'_blocks_6_text_block_heading','field_617669d413097'),(142628,40485,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(142629,40485,'_blocks_6_text_block_content','field_617669ec13098'),(142630,40485,'blocks_8_acfe_flexible_toggle',''),(142631,40485,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(142632,40485,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(142633,40485,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(142634,40485,'blocks_8_testimonial_slider_content_title',''),(142635,40485,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(142636,40485,'blocks_8_testimonial_slider_content_heading','Testimonials'),(142637,40485,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(142638,40485,'blocks_8_testimonial_slider_content_text',''),(142639,40485,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(142640,40485,'blocks_8_testimonial_slider_content_actions',''),(142641,40485,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(142642,40485,'blocks_8_testimonial_slider_content',''),(142643,40485,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(142644,40485,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(142645,40485,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(142646,40485,'blocks_8_testimonial_slider_ambassador_bool','0'),(142647,40485,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(142648,40485,'blocks_9_acfe_flexible_toggle',''),(142649,40485,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(142650,40485,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(142651,40485,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(142652,40485,'blocks_9_options_theme','#ffffff'),(142653,40485,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(142654,40485,'blocks_9_options_state','0'),(142655,40485,'_blocks_9_options_state','field_6239fcb7508c5'),(142656,40485,'blocks_9_options',''),(142657,40485,'_blocks_9_options','field_6177e2991ac44'),(142658,40485,'blocks_9_content_title',''),(142659,40485,'_blocks_9_content_title','field_64d237e8bb1e2'),(142660,40485,'blocks_9_content_heading','Frequently asked questions '),(142661,40485,'_blocks_9_content_heading','field_64d237e8bb1e3'),(142662,40485,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(142663,40485,'_blocks_9_content_text','field_64d237e8bb1e4'),(142664,40485,'blocks_9_content_actions',''),(142665,40485,'_blocks_9_content_actions','field_64d237e8bb1e5'),(142666,40485,'blocks_9_content_align','left'),(142667,40485,'_blocks_9_content_align','field_64d2443e6b6aa'),(142668,40485,'blocks_9_content',''),(142669,40485,'_blocks_9_content','field_64d237e8bb1e1'),(142670,40485,'blocks_9_accordion_content','faqs'),(142671,40485,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(142672,40485,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(142673,40485,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(142674,40485,'blocks_9_actions',''),(142675,40485,'_blocks_9_actions','field_61a746a817f7a'),(142676,40485,'blocks_7_acfe_flexible_toggle',''),(142677,40485,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(142678,40485,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(142679,40485,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(142680,40485,'blocks_7_options_theme','#ffffff'),(142681,40485,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(142682,40485,'blocks_7_options_reverse','0'),(142683,40485,'_blocks_7_options_reverse','field_61768049bb8ac'),(142684,40485,'blocks_7_options',''),(142685,40485,'_blocks_7_options','field_617682517c334'),(142686,40485,'blocks_7_split_5050_image','40484'),(142687,40485,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(142688,40485,'blocks_7_split_5050_video',''),(142689,40485,'_blocks_7_split_5050_video','field_6239f3160848a'),(142690,40485,'blocks_7_split_5050_content_title',''),(142691,40485,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(142692,40485,'blocks_7_split_5050_content_heading','Why study this course?'),(142693,40485,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(142694,40485,'blocks_7_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(142695,40485,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(142696,40485,'blocks_7_split_5050_content_actions',''),(142697,40485,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(142698,40485,'blocks_7_split_5050_content',''),(142699,40485,'_blocks_7_split_5050_content','field_61767afceb8ba'),(142700,40486,'hide_hero','0'),(142701,40486,'_hide_hero','field_66a2380fcda39'),(142702,40486,'hero_title','Biomechanics and Pilates'),(142703,40486,'_hero_title','field_617571fe285e8'),(142704,40486,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(142705,40486,'_hero_text','field_6175723c285e9'),(142706,40486,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(142707,40486,'_hero_actions_0_button','field_61757281285eb'),(142708,40486,'hero_actions','1'),(142709,40486,'_hero_actions','field_61757270285ea'),(142710,40486,'hero_style','default'),(142711,40486,'_hero_style','field_62051d9dc5324'),(142712,40486,'_thumbnail_id','39243'),(142713,40486,'__thumbnail_id','field_617570855ddaf'),(142714,40486,'hero_image_pos_x','right'),(142715,40486,'_hero_image_pos_x','field_62ec3d05390bb'),(142716,40486,'hero_image_pos_y','top'),(142717,40486,'_hero_image_pos_y','field_62ec3d05390bc'),(142718,40486,'hero_image_pos',''),(142719,40486,'_hero_image_pos','field_62ec3d05390ba'),(142720,40486,'fft_hide_from_listings','0'),(142721,40486,'_fft_hide_from_listings','field_61f1320446ab2'),(142722,40486,'fft_page_format','default'),(142723,40486,'_fft_page_format','field_61ae213f1f218'),(142724,40486,'fft_hide_nav','0'),(142725,40486,'_fft_hide_nav','field_635bd5e43527c'),(142726,40486,'fft_hide_header_call_to_action','0'),(142727,40486,'_fft_hide_header_call_to_action','field_635bd6723527d'),(142728,40486,'fft_page_sitemap','0'),(142729,40486,'_fft_page_sitemap','field_61af9b34e8181'),(142730,40486,'blocks','a:10:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:10:\"split_5050\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(142731,40486,'_blocks','field_6176696113096'),(142732,40486,'blocks_0_acfe_flexible_toggle',''),(142733,40486,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(142734,40486,'blocks_0_acfe_flexible_layout_title','Icons'),(142735,40486,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(142736,40486,'blocks_0_options_theme','#b61234'),(142737,40486,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(142738,40486,'blocks_0_options_format','row'),(142739,40486,'_blocks_0_options_format','field_64bfde9a90690'),(142740,40486,'blocks_0_options',''),(142741,40486,'_blocks_0_options','field_64bfdd9b90684'),(142742,40486,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(142743,40486,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(142744,40486,'blocks_0_icon_row_items_0_label','Accreditation'),(142745,40486,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(142746,40486,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(142747,40486,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(142748,40486,'blocks_0_icon_row_items_1_icon','finance.svg'),(142749,40486,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(142750,40486,'blocks_0_icon_row_items_1_label','Flexible payment options'),(142751,40486,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(142752,40486,'blocks_0_icon_row_items_1_text','Including 0% finance'),(142753,40486,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(142754,40486,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(142755,40486,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(142756,40486,'blocks_0_icon_row_items_2_label','Earning potential'),(142757,40486,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(142758,40486,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(142759,40486,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(142760,40486,'blocks_0_icon_row_items','3'),(142761,40486,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(142762,40486,'blocks_1_acfe_flexible_toggle',''),(142763,40486,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(142764,40486,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(142765,40486,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(142766,40486,'blocks_1_options_theme','#ffffff'),(142767,40486,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(142768,40486,'blocks_1_options_reverse','0'),(142769,40486,'_blocks_1_options_reverse','field_61768049bb8ac'),(142770,40486,'blocks_1_options',''),(142771,40486,'_blocks_1_options','field_617682517c334'),(142772,40486,'blocks_1_split_5050_image','38037'),(142773,40486,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(142774,40486,'blocks_1_split_5050_video',''),(142775,40486,'_blocks_1_split_5050_video','field_6239f3160848a'),(142776,40486,'blocks_1_split_5050_content_title',''),(142777,40486,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(142778,40486,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(142779,40486,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(142780,40486,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(142781,40486,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(142782,40486,'blocks_1_split_5050_content_actions',''),(142783,40486,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(142784,40486,'blocks_1_split_5050_content',''),(142785,40486,'_blocks_1_split_5050_content','field_61767afceb8ba'),(142786,40486,'blocks_2_acfe_flexible_toggle',''),(142787,40486,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(142788,40486,'blocks_2_acfe_flexible_layout_title','Form'),(142789,40486,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(142790,40486,'blocks_2_row_content_format','standard'),(142791,40486,'_blocks_2_row_content_format','field_6481ead962881'),(142792,40486,'blocks_2_row_content_title',''),(142793,40486,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(142794,40486,'blocks_2_row_content_heading','Enquire Today'),(142795,40486,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(142796,40486,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(142797,40486,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(142798,40486,'blocks_2_row_content_actions',''),(142799,40486,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(142800,40486,'blocks_2_row_content',''),(142801,40486,'_blocks_2_row_content','field_61a0f5f5b3db0'),(142802,40486,'blocks_2_row_form',''),(142803,40486,'_blocks_2_row_form','field_61a4ff2c0b08e'),(142804,40486,'blocks_2_row_form_button_label',''),(142805,40486,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(142806,40486,'blocks_3_acfe_flexible_toggle',''),(142807,40486,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(142808,40486,'blocks_3_acfe_flexible_layout_title','Video'),(142809,40486,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(142810,40486,'blocks_3_size','large'),(142811,40486,'_blocks_3_size','field_6487038f297c1'),(142812,40486,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(142813,40486,'_blocks_3_row_content_title','field_64870132a865d'),(142814,40486,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(142815,40486,'_blocks_3_row_content_heading','field_64870142a865e'),(142816,40486,'blocks_3_row_content_text',''),(142817,40486,'_blocks_3_row_content_text','field_64870148a865f'),(142818,40486,'blocks_3_row_content',''),(142819,40486,'_blocks_3_row_content','field_6487008ba865c'),(142820,40486,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(142821,40486,'_blocks_3_video_src','field_6193c4a98ec07'),(142822,40486,'blocks_3_video_thumbnail',''),(142823,40486,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(142824,40486,'blocks_4_acfe_flexible_toggle',''),(142825,40486,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(142826,40486,'blocks_4_acfe_flexible_layout_title','Steps'),(142827,40486,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(142828,40486,'blocks_4_row_content_title',''),(142829,40486,'_blocks_4_row_content_title','field_64888cd1e26e0'),(142830,40486,'blocks_4_row_content_heading','Benefits of training with us'),(142831,40486,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(142832,40486,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(142833,40486,'_blocks_4_row_content_text','field_64888ce2e26e2'),(142834,40486,'blocks_4_row_content_actions',''),(142835,40486,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(142836,40486,'blocks_4_row_content',''),(142837,40486,'_blocks_4_row_content','field_64888cb0e26df'),(142838,40486,'blocks_4_steps_0_icon','progression.svg'),(142839,40486,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(142840,40486,'blocks_4_steps_0_title','Earning potential'),(142841,40486,'_blocks_4_steps_0_title','field_64888d94e26e7'),(142842,40486,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(142843,40486,'_blocks_4_steps_0_text','field_64888d99e26e8'),(142844,40486,'blocks_4_steps_1_icon','support.svg'),(142845,40486,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(142846,40486,'blocks_4_steps_1_title','Lifetime Learning Promise'),(142847,40486,'_blocks_4_steps_1_title','field_64888d94e26e7'),(142848,40486,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(142849,40486,'_blocks_4_steps_1_text','field_64888d99e26e8'),(142850,40486,'blocks_4_steps_2_icon','qualification.svg'),(142851,40486,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(142852,40486,'blocks_4_steps_2_title','Evidence based hands on learning'),(142853,40486,'_blocks_4_steps_2_title','field_64888d94e26e7'),(142854,40486,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(142855,40486,'_blocks_4_steps_2_text','field_64888d99e26e8'),(142856,40486,'blocks_4_steps_3_icon','leaders.svg'),(142857,40486,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(142858,40486,'blocks_4_steps_3_title','Stand out from the crowd'),(142859,40486,'_blocks_4_steps_3_title','field_64888d94e26e7'),(142860,40486,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(142861,40486,'_blocks_4_steps_3_text','field_64888d99e26e8'),(142862,40486,'blocks_4_steps','4'),(142863,40486,'_blocks_4_steps','field_64888d44e26e5'),(142864,40486,'blocks_5_acfe_flexible_toggle',''),(142865,40486,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(142866,40486,'blocks_5_acfe_flexible_layout_title','Tabs'),(142867,40486,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(142868,40486,'blocks_5_options_theme','#ffffff'),(142869,40486,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(142870,40486,'blocks_5_options',''),(142871,40486,'_blocks_5_options','field_6177cfcd8140f'),(142872,40486,'blocks_5_tabs_0_tab_label','What will I learn?'),(142873,40486,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(142874,40486,'blocks_5_tabs_0_tab_content_title',''),(142875,40486,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(142876,40486,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(142877,40486,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(142878,40486,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(142879,40486,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(142880,40486,'blocks_5_tabs_0_tab_content_actions',''),(142881,40486,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(142882,40486,'blocks_5_tabs_0_tab_content',''),(142883,40486,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(142884,40486,'blocks_5_tabs_0_tab_image','39076'),(142885,40486,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(142886,40486,'blocks_5_tabs_1_tab_label','What do I need?'),(142887,40486,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(142888,40486,'blocks_5_tabs_1_tab_content_title',''),(142889,40486,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(142890,40486,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(142891,40486,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(142892,40486,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(142893,40486,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(142894,40486,'blocks_5_tabs_1_tab_content_actions',''),(142895,40486,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(142896,40486,'blocks_5_tabs_1_tab_content',''),(142897,40486,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(142898,40486,'blocks_5_tabs_1_tab_image','39223'),(142899,40486,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(142900,40486,'blocks_5_tabs_2_tab_label','Where can I learn?'),(142901,40486,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(142902,40486,'blocks_5_tabs_2_tab_content_title',''),(142903,40486,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(142904,40486,'blocks_5_tabs_2_tab_content_heading','Locations'),(142905,40486,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(142906,40486,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(142907,40486,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(142908,40486,'blocks_5_tabs_2_tab_content_actions',''),(142909,40486,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(142910,40486,'blocks_5_tabs_2_tab_content',''),(142911,40486,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(142912,40486,'blocks_5_tabs_2_tab_image','39224'),(142913,40486,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(142914,40486,'blocks_5_tabs','3'),(142915,40486,'_blocks_5_tabs','field_6177cff281419'),(142916,40486,'blocks_6_acfe_flexible_toggle',''),(142917,40486,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(142918,40486,'blocks_6_acfe_flexible_layout_title','Text Block'),(142919,40486,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(142920,40486,'blocks_6_options_theme','#b61234'),(142921,40486,'_blocks_6_options_theme','field_6176830e2ad17'),(142922,40486,'blocks_6_options',''),(142923,40486,'_blocks_6_options','field_6176830e2ad16'),(142924,40486,'blocks_6_text_block_heading','Fees & Funding Options'),(142925,40486,'_blocks_6_text_block_heading','field_617669d413097'),(142926,40486,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(142927,40486,'_blocks_6_text_block_content','field_617669ec13098'),(142928,40486,'blocks_8_acfe_flexible_toggle',''),(142929,40486,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(142930,40486,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(142931,40486,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(142932,40486,'blocks_8_testimonial_slider_content_title',''),(142933,40486,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(142934,40486,'blocks_8_testimonial_slider_content_heading','Testimonials'),(142935,40486,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(142936,40486,'blocks_8_testimonial_slider_content_text',''),(142937,40486,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(142938,40486,'blocks_8_testimonial_slider_content_actions',''),(142939,40486,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(142940,40486,'blocks_8_testimonial_slider_content',''),(142941,40486,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(142942,40486,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(142943,40486,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(142944,40486,'blocks_8_testimonial_slider_ambassador_bool','0'),(142945,40486,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(142946,40486,'blocks_9_acfe_flexible_toggle',''),(142947,40486,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(142948,40486,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(142949,40486,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(142950,40486,'blocks_9_options_theme','#ffffff'),(142951,40486,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(142952,40486,'blocks_9_options_state','0'),(142953,40486,'_blocks_9_options_state','field_6239fcb7508c5'),(142954,40486,'blocks_9_options',''),(142955,40486,'_blocks_9_options','field_6177e2991ac44'),(142956,40486,'blocks_9_content_title',''),(142957,40486,'_blocks_9_content_title','field_64d237e8bb1e2'),(142958,40486,'blocks_9_content_heading','Frequently asked questions '),(142959,40486,'_blocks_9_content_heading','field_64d237e8bb1e3'),(142960,40486,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(142961,40486,'_blocks_9_content_text','field_64d237e8bb1e4'),(142962,40486,'blocks_9_content_actions',''),(142963,40486,'_blocks_9_content_actions','field_64d237e8bb1e5'),(142964,40486,'blocks_9_content_align','left'),(142965,40486,'_blocks_9_content_align','field_64d2443e6b6aa'),(142966,40486,'blocks_9_content',''),(142967,40486,'_blocks_9_content','field_64d237e8bb1e1'),(142968,40486,'blocks_9_accordion_content','faqs'),(142969,40486,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(142970,40486,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(142971,40486,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(142972,40486,'blocks_9_actions',''),(142973,40486,'_blocks_9_actions','field_61a746a817f7a'),(142974,40486,'blocks_7_acfe_flexible_toggle',''),(142975,40486,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(142976,40486,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(142977,40486,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(142978,40486,'blocks_7_options_theme','#ffffff'),(142979,40486,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(142980,40486,'blocks_7_options_reverse','0'),(142981,40486,'_blocks_7_options_reverse','field_61768049bb8ac'),(142982,40486,'blocks_7_options',''),(142983,40486,'_blocks_7_options','field_617682517c334'),(142984,40486,'blocks_7_split_5050_image','40484'),(142985,40486,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(142986,40486,'blocks_7_split_5050_video',''),(142987,40486,'_blocks_7_split_5050_video','field_6239f3160848a'),(142988,40486,'blocks_7_split_5050_content_title',''),(142989,40486,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(142990,40486,'blocks_7_split_5050_content_heading','Why study this course?'),(142991,40486,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(142992,40486,'blocks_7_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(142993,40486,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(142994,40486,'blocks_7_split_5050_content_actions',''),(142995,40486,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(142996,40486,'blocks_7_split_5050_content',''),(142997,40486,'_blocks_7_split_5050_content','field_61767afceb8ba'),(142998,40487,'_wp_attached_file','2024/09/learners-scaled.jpg'),(142999,40487,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:27:\"2024/09/learners-scaled.jpg\";s:8:\"filesize\";i:777362;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"learners-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143475;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"learners-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:213506;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"learners-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59164;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"learners-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116752;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"learners-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:314842;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"learners-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:511462;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"learners-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68292;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"learners-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184478;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"learners-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:287242;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"learners-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59313;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"learners-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142510;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"learners-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212414;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"learners-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58640;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"learners-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144477;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"learners-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221143;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"learners-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62359;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"learners-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156583;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"learners-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:238143;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"learners-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55681;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"learners-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129661;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"learners-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191324;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535279222\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"learners.jpg\";}'),(143000,40487,'_wp_attachment_image_alt','Lenrs of intrinisc biomechanics. one sat on a massage table, two dat in chairs leaning on the table with their arms and taking notes. There is an animated woman explainging something to them, she is standing up in front of them and they are smiling at her.'),(143001,40488,'hide_hero','0'),(143002,40488,'_hide_hero','field_66a2380fcda39'),(143003,40488,'hero_title','Biomechanics and Pilates'),(143004,40488,'_hero_title','field_617571fe285e8'),(143005,40488,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(143006,40488,'_hero_text','field_6175723c285e9'),(143007,40488,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(143008,40488,'_hero_actions_0_button','field_61757281285eb'),(143009,40488,'hero_actions','1'),(143010,40488,'_hero_actions','field_61757270285ea'),(143011,40488,'hero_style','default'),(143012,40488,'_hero_style','field_62051d9dc5324'),(143013,40488,'_thumbnail_id','39243'),(143014,40488,'__thumbnail_id','field_617570855ddaf'),(143015,40488,'hero_image_pos_x','right'),(143016,40488,'_hero_image_pos_x','field_62ec3d05390bb'),(143017,40488,'hero_image_pos_y','top'),(143018,40488,'_hero_image_pos_y','field_62ec3d05390bc'),(143019,40488,'hero_image_pos',''),(143020,40488,'_hero_image_pos','field_62ec3d05390ba'),(143021,40488,'fft_hide_from_listings','0'),(143022,40488,'_fft_hide_from_listings','field_61f1320446ab2'),(143023,40488,'fft_page_format','default'),(143024,40488,'_fft_page_format','field_61ae213f1f218'),(143025,40488,'fft_hide_nav','0'),(143026,40488,'_fft_hide_nav','field_635bd5e43527c'),(143027,40488,'fft_hide_header_call_to_action','0'),(143028,40488,'_fft_hide_header_call_to_action','field_635bd6723527d'),(143029,40488,'fft_page_sitemap','0'),(143030,40488,'_fft_page_sitemap','field_61af9b34e8181'),(143031,40488,'blocks','a:10:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:10:\"split_5050\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(143032,40488,'_blocks','field_6176696113096'),(143033,40488,'blocks_0_acfe_flexible_toggle',''),(143034,40488,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(143035,40488,'blocks_0_acfe_flexible_layout_title','Icons'),(143036,40488,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(143037,40488,'blocks_0_options_theme','#b61234'),(143038,40488,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(143039,40488,'blocks_0_options_format','row'),(143040,40488,'_blocks_0_options_format','field_64bfde9a90690'),(143041,40488,'blocks_0_options',''),(143042,40488,'_blocks_0_options','field_64bfdd9b90684'),(143043,40488,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(143044,40488,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(143045,40488,'blocks_0_icon_row_items_0_label','Accreditation'),(143046,40488,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(143047,40488,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(143048,40488,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(143049,40488,'blocks_0_icon_row_items_1_icon','finance.svg'),(143050,40488,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(143051,40488,'blocks_0_icon_row_items_1_label','Flexible payment options'),(143052,40488,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(143053,40488,'blocks_0_icon_row_items_1_text','Including 0% finance'),(143054,40488,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(143055,40488,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(143056,40488,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(143057,40488,'blocks_0_icon_row_items_2_label','Earning potential'),(143058,40488,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(143059,40488,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(143060,40488,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(143061,40488,'blocks_0_icon_row_items','3'),(143062,40488,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(143063,40488,'blocks_1_acfe_flexible_toggle',''),(143064,40488,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(143065,40488,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(143066,40488,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(143067,40488,'blocks_1_options_theme','#ffffff'),(143068,40488,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(143069,40488,'blocks_1_options_reverse','0'),(143070,40488,'_blocks_1_options_reverse','field_61768049bb8ac'),(143071,40488,'blocks_1_options',''),(143072,40488,'_blocks_1_options','field_617682517c334'),(143073,40488,'blocks_1_split_5050_image','38037'),(143074,40488,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(143075,40488,'blocks_1_split_5050_video',''),(143076,40488,'_blocks_1_split_5050_video','field_6239f3160848a'),(143077,40488,'blocks_1_split_5050_content_title',''),(143078,40488,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(143079,40488,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(143080,40488,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(143081,40488,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(143082,40488,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(143083,40488,'blocks_1_split_5050_content_actions',''),(143084,40488,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(143085,40488,'blocks_1_split_5050_content',''),(143086,40488,'_blocks_1_split_5050_content','field_61767afceb8ba'),(143087,40488,'blocks_2_acfe_flexible_toggle',''),(143088,40488,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(143089,40488,'blocks_2_acfe_flexible_layout_title','Form'),(143090,40488,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(143091,40488,'blocks_2_row_content_format','standard'),(143092,40488,'_blocks_2_row_content_format','field_6481ead962881'),(143093,40488,'blocks_2_row_content_title',''),(143094,40488,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(143095,40488,'blocks_2_row_content_heading','Enquire Today'),(143096,40488,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(143097,40488,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(143098,40488,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(143099,40488,'blocks_2_row_content_actions',''),(143100,40488,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(143101,40488,'blocks_2_row_content',''),(143102,40488,'_blocks_2_row_content','field_61a0f5f5b3db0'),(143103,40488,'blocks_2_row_form',''),(143104,40488,'_blocks_2_row_form','field_61a4ff2c0b08e'),(143105,40488,'blocks_2_row_form_button_label',''),(143106,40488,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(143107,40488,'blocks_3_acfe_flexible_toggle',''),(143108,40488,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(143109,40488,'blocks_3_acfe_flexible_layout_title','Video'),(143110,40488,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(143111,40488,'blocks_3_size','large'),(143112,40488,'_blocks_3_size','field_6487038f297c1'),(143113,40488,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(143114,40488,'_blocks_3_row_content_title','field_64870132a865d'),(143115,40488,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(143116,40488,'_blocks_3_row_content_heading','field_64870142a865e'),(143117,40488,'blocks_3_row_content_text',''),(143118,40488,'_blocks_3_row_content_text','field_64870148a865f'),(143119,40488,'blocks_3_row_content',''),(143120,40488,'_blocks_3_row_content','field_6487008ba865c'),(143121,40488,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(143122,40488,'_blocks_3_video_src','field_6193c4a98ec07'),(143123,40488,'blocks_3_video_thumbnail',''),(143124,40488,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(143125,40488,'blocks_4_acfe_flexible_toggle',''),(143126,40488,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(143127,40488,'blocks_4_acfe_flexible_layout_title','Steps'),(143128,40488,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(143129,40488,'blocks_4_row_content_title',''),(143130,40488,'_blocks_4_row_content_title','field_64888cd1e26e0'),(143131,40488,'blocks_4_row_content_heading','Benefits of training with us'),(143132,40488,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(143133,40488,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(143134,40488,'_blocks_4_row_content_text','field_64888ce2e26e2'),(143135,40488,'blocks_4_row_content_actions',''),(143136,40488,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(143137,40488,'blocks_4_row_content',''),(143138,40488,'_blocks_4_row_content','field_64888cb0e26df'),(143139,40488,'blocks_4_steps_0_icon','progression.svg'),(143140,40488,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(143141,40488,'blocks_4_steps_0_title','Earning potential'),(143142,40488,'_blocks_4_steps_0_title','field_64888d94e26e7'),(143143,40488,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(143144,40488,'_blocks_4_steps_0_text','field_64888d99e26e8'),(143145,40488,'blocks_4_steps_1_icon','support.svg'),(143146,40488,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(143147,40488,'blocks_4_steps_1_title','Lifetime Learning Promise'),(143148,40488,'_blocks_4_steps_1_title','field_64888d94e26e7'),(143149,40488,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(143150,40488,'_blocks_4_steps_1_text','field_64888d99e26e8'),(143151,40488,'blocks_4_steps_2_icon','qualification.svg'),(143152,40488,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(143153,40488,'blocks_4_steps_2_title','Evidence based hands on learning'),(143154,40488,'_blocks_4_steps_2_title','field_64888d94e26e7'),(143155,40488,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(143156,40488,'_blocks_4_steps_2_text','field_64888d99e26e8'),(143157,40488,'blocks_4_steps_3_icon','leaders.svg'),(143158,40488,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(143159,40488,'blocks_4_steps_3_title','Stand out from the crowd'),(143160,40488,'_blocks_4_steps_3_title','field_64888d94e26e7'),(143161,40488,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(143162,40488,'_blocks_4_steps_3_text','field_64888d99e26e8'),(143163,40488,'blocks_4_steps','4'),(143164,40488,'_blocks_4_steps','field_64888d44e26e5'),(143165,40488,'blocks_5_acfe_flexible_toggle',''),(143166,40488,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(143167,40488,'blocks_5_acfe_flexible_layout_title','Tabs'),(143168,40488,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(143169,40488,'blocks_5_options_theme','#ffffff'),(143170,40488,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(143171,40488,'blocks_5_options',''),(143172,40488,'_blocks_5_options','field_6177cfcd8140f'),(143173,40488,'blocks_5_tabs_0_tab_label','What will I learn?'),(143174,40488,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(143175,40488,'blocks_5_tabs_0_tab_content_title',''),(143176,40488,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(143177,40488,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(143178,40488,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(143179,40488,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients:\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(143180,40488,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(143181,40488,'blocks_5_tabs_0_tab_content_actions',''),(143182,40488,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(143183,40488,'blocks_5_tabs_0_tab_content',''),(143184,40488,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(143185,40488,'blocks_5_tabs_0_tab_image','39076'),(143186,40488,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(143187,40488,'blocks_5_tabs_1_tab_label','What do I need?'),(143188,40488,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(143189,40488,'blocks_5_tabs_1_tab_content_title',''),(143190,40488,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(143191,40488,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(143192,40488,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(143193,40488,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(143194,40488,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(143195,40488,'blocks_5_tabs_1_tab_content_actions',''),(143196,40488,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(143197,40488,'blocks_5_tabs_1_tab_content',''),(143198,40488,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(143199,40488,'blocks_5_tabs_1_tab_image','40487'),(143200,40488,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(143201,40488,'blocks_5_tabs_2_tab_label','Where can I learn?'),(143202,40488,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(143203,40488,'blocks_5_tabs_2_tab_content_title',''),(143204,40488,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(143205,40488,'blocks_5_tabs_2_tab_content_heading','Locations'),(143206,40488,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(143207,40488,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(143208,40488,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(143209,40488,'blocks_5_tabs_2_tab_content_actions',''),(143210,40488,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(143211,40488,'blocks_5_tabs_2_tab_content',''),(143212,40488,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(143213,40488,'blocks_5_tabs_2_tab_image','39224'),(143214,40488,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(143215,40488,'blocks_5_tabs','3'),(143216,40488,'_blocks_5_tabs','field_6177cff281419'),(143217,40488,'blocks_6_acfe_flexible_toggle',''),(143218,40488,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(143219,40488,'blocks_6_acfe_flexible_layout_title','Text Block'),(143220,40488,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(143221,40488,'blocks_6_options_theme','#b61234'),(143222,40488,'_blocks_6_options_theme','field_6176830e2ad17'),(143223,40488,'blocks_6_options',''),(143224,40488,'_blocks_6_options','field_6176830e2ad16'),(143225,40488,'blocks_6_text_block_heading','Fees & Funding Options'),(143226,40488,'_blocks_6_text_block_heading','field_617669d413097'),(143227,40488,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(143228,40488,'_blocks_6_text_block_content','field_617669ec13098'),(143229,40488,'blocks_8_acfe_flexible_toggle',''),(143230,40488,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(143231,40488,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(143232,40488,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(143233,40488,'blocks_8_testimonial_slider_content_title',''),(143234,40488,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(143235,40488,'blocks_8_testimonial_slider_content_heading','Testimonials'),(143236,40488,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(143237,40488,'blocks_8_testimonial_slider_content_text',''),(143238,40488,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(143239,40488,'blocks_8_testimonial_slider_content_actions',''),(143240,40488,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(143241,40488,'blocks_8_testimonial_slider_content',''),(143242,40488,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(143243,40488,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(143244,40488,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(143245,40488,'blocks_8_testimonial_slider_ambassador_bool','0'),(143246,40488,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(143247,40488,'blocks_9_acfe_flexible_toggle',''),(143248,40488,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(143249,40488,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(143250,40488,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(143251,40488,'blocks_9_options_theme','#ffffff'),(143252,40488,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(143253,40488,'blocks_9_options_state','0'),(143254,40488,'_blocks_9_options_state','field_6239fcb7508c5'),(143255,40488,'blocks_9_options',''),(143256,40488,'_blocks_9_options','field_6177e2991ac44'),(143257,40488,'blocks_9_content_title',''),(143258,40488,'_blocks_9_content_title','field_64d237e8bb1e2'),(143259,40488,'blocks_9_content_heading','Frequently asked questions '),(143260,40488,'_blocks_9_content_heading','field_64d237e8bb1e3'),(143261,40488,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(143262,40488,'_blocks_9_content_text','field_64d237e8bb1e4'),(143263,40488,'blocks_9_content_actions',''),(143264,40488,'_blocks_9_content_actions','field_64d237e8bb1e5'),(143265,40488,'blocks_9_content_align','left'),(143266,40488,'_blocks_9_content_align','field_64d2443e6b6aa'),(143267,40488,'blocks_9_content',''),(143268,40488,'_blocks_9_content','field_64d237e8bb1e1'),(143269,40488,'blocks_9_accordion_content','faqs'),(143270,40488,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(143271,40488,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(143272,40488,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(143273,40488,'blocks_9_actions',''),(143274,40488,'_blocks_9_actions','field_61a746a817f7a'),(143275,40488,'blocks_7_acfe_flexible_toggle',''),(143276,40488,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(143277,40488,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(143278,40488,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(143279,40488,'blocks_7_options_theme','#ffffff'),(143280,40488,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(143281,40488,'blocks_7_options_reverse','0'),(143282,40488,'_blocks_7_options_reverse','field_61768049bb8ac'),(143283,40488,'blocks_7_options',''),(143284,40488,'_blocks_7_options','field_617682517c334'),(143285,40488,'blocks_7_split_5050_image','40484'),(143286,40488,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(143287,40488,'blocks_7_split_5050_video',''),(143288,40488,'_blocks_7_split_5050_video','field_6239f3160848a'),(143289,40488,'blocks_7_split_5050_content_title',''),(143290,40488,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(143291,40488,'blocks_7_split_5050_content_heading','Why study this course?'),(143292,40488,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(143293,40488,'blocks_7_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(143294,40488,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(143295,40488,'blocks_7_split_5050_content_actions',''),(143296,40488,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(143297,40488,'blocks_7_split_5050_content',''),(143298,40488,'_blocks_7_split_5050_content','field_61767afceb8ba'),(143343,39249,'blocks_4_acfe_flexible_toggle',''),(143344,39249,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(143345,39249,'blocks_4_acfe_flexible_layout_title','Tabs'),(143346,39249,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(143347,39249,'blocks_4_options_theme','#ffffff'),(143348,39249,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(143349,39249,'blocks_4_options',''),(143350,39249,'_blocks_4_options','field_6177cfcd8140f'),(143351,39249,'blocks_4_tabs_0_tab_label','What will I learn ?'),(143352,39249,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(143353,39249,'blocks_4_tabs_0_tab_content_title',''),(143354,39249,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(143355,39249,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(143356,39249,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(143357,39249,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(143358,39249,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(143359,39249,'blocks_4_tabs_0_tab_content_actions',''),(143360,39249,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(143361,39249,'blocks_4_tabs_0_tab_content',''),(143362,39249,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(143363,39249,'blocks_4_tabs_0_tab_image','39076'),(143364,39249,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(143365,39249,'blocks_4_tabs_1_tab_label','What do I need ?'),(143366,39249,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(143367,39249,'blocks_4_tabs_1_tab_content_title',''),(143368,39249,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(143369,39249,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(143370,39249,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(143371,39249,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(143372,39249,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(143373,39249,'blocks_4_tabs_1_tab_content_actions',''),(143374,39249,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(143375,39249,'blocks_4_tabs_1_tab_content',''),(143376,39249,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(143377,39249,'blocks_4_tabs_1_tab_image','39223'),(143378,39249,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(143379,39249,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(143380,39249,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(143381,39249,'blocks_4_tabs_2_tab_content_title',''),(143382,39249,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(143383,39249,'blocks_4_tabs_2_tab_content_heading','Locations'),(143384,39249,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(143385,39249,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(143386,39249,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(143387,39249,'blocks_4_tabs_2_tab_content_actions',''),(143388,39249,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(143389,39249,'blocks_4_tabs_2_tab_content',''),(143390,39249,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(143391,39249,'blocks_4_tabs_2_tab_image','39224'),(143392,39249,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(143393,39249,'blocks_4_tabs','3'),(143394,39249,'_blocks_4_tabs','field_6177cff281419'),(143395,39249,'blocks_5_acfe_flexible_toggle',''),(143396,39249,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(143397,39249,'blocks_5_acfe_flexible_layout_title','Text Block'),(143398,39249,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(143399,39249,'blocks_5_options_theme','#b61234'),(143400,39249,'_blocks_5_options_theme','field_6176830e2ad17'),(143401,39249,'blocks_5_options',''),(143402,39249,'_blocks_5_options','field_6176830e2ad16'),(143403,39249,'blocks_5_text_block_heading','Fees & Funding Options'),(143404,39249,'_blocks_5_text_block_heading','field_617669d413097'),(143405,39249,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(143406,39249,'_blocks_5_text_block_content','field_617669ec13098'),(143407,39249,'blocks_6_acfe_flexible_toggle',''),(143408,39249,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(143409,39249,'blocks_6_acfe_flexible_layout_title','Icons'),(143410,39249,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(143411,39249,'blocks_6_options_theme','#b61234'),(143412,39249,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(143413,39249,'blocks_6_options_format','row'),(143414,39249,'_blocks_6_options_format','field_64bfde9a90690'),(143415,39249,'blocks_6_options',''),(143416,39249,'_blocks_6_options','field_64bfdd9b90684'),(143417,39249,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(143418,39249,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(143419,39249,'blocks_6_icon_row_items_0_label','Pay in Full'),(143420,39249,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(143421,39249,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(143422,39249,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(143423,39249,'blocks_6_icon_row_items_1_icon','finance.svg'),(143424,39249,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(143425,39249,'blocks_6_icon_row_items_1_label','0% finance'),(143426,39249,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(143427,39249,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(143428,39249,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(143429,39249,'blocks_6_icon_row_items_2_icon','deposit.svg'),(143430,39249,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(143431,39249,'blocks_6_icon_row_items_2_label','Deposit & balance'),(143432,39249,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(143433,39249,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(143434,39249,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(143435,39249,'blocks_6_icon_row_items','3'),(143436,39249,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(143489,40489,'hide_hero','0'),(143490,40489,'_hide_hero','field_66a2380fcda39'),(143491,40489,'hero_title','Biomechanics and Sports Coaches '),(143492,40489,'_hero_title','field_617571fe285e8'),(143493,40489,'hero_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(143494,40489,'_hero_text','field_6175723c285e9'),(143495,40489,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(143496,40489,'_hero_actions_0_button','field_61757281285eb'),(143497,40489,'hero_actions','1'),(143498,40489,'_hero_actions','field_61757270285ea'),(143499,40489,'hero_style','default'),(143500,40489,'_hero_style','field_62051d9dc5324'),(143501,40489,'_thumbnail_id','39251'),(143502,40489,'__thumbnail_id','field_617570855ddaf'),(143503,40489,'hero_image_pos_x','right'),(143504,40489,'_hero_image_pos_x','field_62ec3d05390bb'),(143505,40489,'hero_image_pos_y','top'),(143506,40489,'_hero_image_pos_y','field_62ec3d05390bc'),(143507,40489,'hero_image_pos',''),(143508,40489,'_hero_image_pos','field_62ec3d05390ba'),(143509,40489,'fft_hide_from_listings','0'),(143510,40489,'_fft_hide_from_listings','field_61f1320446ab2'),(143511,40489,'fft_page_format','default'),(143512,40489,'_fft_page_format','field_61ae213f1f218'),(143513,40489,'fft_hide_nav','0'),(143514,40489,'_fft_hide_nav','field_635bd5e43527c'),(143515,40489,'fft_hide_header_call_to_action','0'),(143516,40489,'_fft_hide_header_call_to_action','field_635bd6723527d'),(143517,40489,'fft_page_sitemap','0'),(143518,40489,'_fft_page_sitemap','field_61af9b34e8181'),(143519,40489,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(143520,40489,'_blocks','field_6176696113096'),(143521,40489,'blocks_0_acfe_flexible_toggle',''),(143522,40489,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(143523,40489,'blocks_0_acfe_flexible_layout_title','Template'),(143524,40489,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(143525,40489,'blocks_0_template','39087'),(143526,40489,'_blocks_0_template','field_617bdd570fe01'),(143527,40489,'blocks_1_acfe_flexible_toggle',''),(143528,40489,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(143529,40489,'blocks_1_acfe_flexible_layout_title','Steps'),(143530,40489,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(143531,40489,'blocks_1_row_content_title',''),(143532,40489,'_blocks_1_row_content_title','field_64888cd1e26e0'),(143533,40489,'blocks_1_row_content_heading','Benefits of training with us'),(143534,40489,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(143535,40489,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(143536,40489,'_blocks_1_row_content_text','field_64888ce2e26e2'),(143537,40489,'blocks_1_row_content_actions',''),(143538,40489,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(143539,40489,'blocks_1_row_content',''),(143540,40489,'_blocks_1_row_content','field_64888cb0e26df'),(143541,40489,'blocks_1_steps_0_icon','progression.svg'),(143542,40489,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(143543,40489,'blocks_1_steps_0_title','Earning potential'),(143544,40489,'_blocks_1_steps_0_title','field_64888d94e26e7'),(143545,40489,'blocks_1_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(143546,40489,'_blocks_1_steps_0_text','field_64888d99e26e8'),(143547,40489,'blocks_1_steps_1_icon','support.svg'),(143548,40489,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(143549,40489,'blocks_1_steps_1_title','Lifetime Learning Promise'),(143550,40489,'_blocks_1_steps_1_title','field_64888d94e26e7'),(143551,40489,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(143552,40489,'_blocks_1_steps_1_text','field_64888d99e26e8'),(143553,40489,'blocks_1_steps_2_icon','qualification.svg'),(143554,40489,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(143555,40489,'blocks_1_steps_2_title','Evidence based hands on learning'),(143556,40489,'_blocks_1_steps_2_title','field_64888d94e26e7'),(143557,40489,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(143558,40489,'_blocks_1_steps_2_text','field_64888d99e26e8'),(143559,40489,'blocks_1_steps_3_icon','leaders.svg'),(143560,40489,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(143561,40489,'blocks_1_steps_3_title','Stand out from the crowd'),(143562,40489,'_blocks_1_steps_3_title','field_64888d94e26e7'),(143563,40489,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(143564,40489,'_blocks_1_steps_3_text','field_64888d99e26e8'),(143565,40489,'blocks_1_steps','4'),(143566,40489,'_blocks_1_steps','field_64888d44e26e5'),(143567,40489,'blocks_2_acfe_flexible_toggle',''),(143568,40489,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(143569,40489,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(143570,40489,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(143571,40489,'blocks_2_options_theme','#ffffff'),(143572,40489,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(143573,40489,'blocks_2_options_reverse','0'),(143574,40489,'_blocks_2_options_reverse','field_61768049bb8ac'),(143575,40489,'blocks_2_options',''),(143576,40489,'_blocks_2_options','field_617682517c334'),(143577,40489,'blocks_2_split_5050_image','39252'),(143578,40489,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(143579,40489,'blocks_2_split_5050_video',''),(143580,40489,'_blocks_2_split_5050_video','field_6239f3160848a'),(143581,40489,'blocks_2_split_5050_content_title',''),(143582,40489,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(143583,40489,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a sports coach'),(143584,40489,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(143585,40489,'blocks_2_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from, injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(143586,40489,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(143587,40489,'blocks_2_split_5050_content_actions',''),(143588,40489,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(143589,40489,'blocks_2_split_5050_content',''),(143590,40489,'_blocks_2_split_5050_content','field_61767afceb8ba'),(143591,40489,'blocks_3_acfe_flexible_toggle',''),(143592,40489,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(143593,40489,'blocks_3_acfe_flexible_layout_title','Form'),(143594,40489,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(143595,40489,'blocks_3_row_content_format','standard'),(143596,40489,'_blocks_3_row_content_format','field_6481ead962881'),(143597,40489,'blocks_3_row_content_title',''),(143598,40489,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(143599,40489,'blocks_3_row_content_heading','Enquire Today'),(143600,40489,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(143601,40489,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(143602,40489,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(143603,40489,'blocks_3_row_content_actions',''),(143604,40489,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(143605,40489,'blocks_3_row_content',''),(143606,40489,'_blocks_3_row_content','field_61a0f5f5b3db0'),(143607,40489,'blocks_3_row_form',''),(143608,40489,'_blocks_3_row_form','field_61a4ff2c0b08e'),(143609,40489,'blocks_3_row_form_button_label',''),(143610,40489,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(143611,40489,'blocks_4_acfe_flexible_toggle',''),(143612,40489,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(143613,40489,'blocks_4_acfe_flexible_layout_title','Tabs'),(143614,40489,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(143615,40489,'blocks_4_options_theme','#ffffff'),(143616,40489,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(143617,40489,'blocks_4_options',''),(143618,40489,'_blocks_4_options','field_6177cfcd8140f'),(143619,40489,'blocks_4_tabs_0_tab_label','What will I learn ?'),(143620,40489,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(143621,40489,'blocks_4_tabs_0_tab_content_title',''),(143622,40489,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(143623,40489,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(143624,40489,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(143625,40489,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(143626,40489,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(143627,40489,'blocks_4_tabs_0_tab_content_actions',''),(143628,40489,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(143629,40489,'blocks_4_tabs_0_tab_content',''),(143630,40489,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(143631,40489,'blocks_4_tabs_0_tab_image','39076'),(143632,40489,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(143633,40489,'blocks_4_tabs_1_tab_label','What do I need ?'),(143634,40489,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(143635,40489,'blocks_4_tabs_1_tab_content_title',''),(143636,40489,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(143637,40489,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(143638,40489,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(143639,40489,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(143640,40489,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(143641,40489,'blocks_4_tabs_1_tab_content_actions',''),(143642,40489,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(143643,40489,'blocks_4_tabs_1_tab_content',''),(143644,40489,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(143645,40489,'blocks_4_tabs_1_tab_image','39223'),(143646,40489,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(143647,40489,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(143648,40489,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(143649,40489,'blocks_4_tabs_2_tab_content_title',''),(143650,40489,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(143651,40489,'blocks_4_tabs_2_tab_content_heading','Locations'),(143652,40489,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(143653,40489,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(143654,40489,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(143655,40489,'blocks_4_tabs_2_tab_content_actions',''),(143656,40489,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(143657,40489,'blocks_4_tabs_2_tab_content',''),(143658,40489,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(143659,40489,'blocks_4_tabs_2_tab_image','39224'),(143660,40489,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(143661,40489,'blocks_4_tabs','3'),(143662,40489,'_blocks_4_tabs','field_6177cff281419'),(143663,40489,'blocks_5_acfe_flexible_toggle',''),(143664,40489,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(143665,40489,'blocks_5_acfe_flexible_layout_title','Text Block'),(143666,40489,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(143667,40489,'blocks_5_options_theme','#b61234'),(143668,40489,'_blocks_5_options_theme','field_6176830e2ad17'),(143669,40489,'blocks_5_options',''),(143670,40489,'_blocks_5_options','field_6176830e2ad16'),(143671,40489,'blocks_5_text_block_heading','Fees & Funding Options'),(143672,40489,'_blocks_5_text_block_heading','field_617669d413097'),(143673,40489,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(143674,40489,'_blocks_5_text_block_content','field_617669ec13098'),(143675,40489,'blocks_6_acfe_flexible_toggle',''),(143676,40489,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(143677,40489,'blocks_6_acfe_flexible_layout_title','Icons'),(143678,40489,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(143679,40489,'blocks_6_options_theme','#b61234'),(143680,40489,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(143681,40489,'blocks_6_options_format','row'),(143682,40489,'_blocks_6_options_format','field_64bfde9a90690'),(143683,40489,'blocks_6_options',''),(143684,40489,'_blocks_6_options','field_64bfdd9b90684'),(143685,40489,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(143686,40489,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(143687,40489,'blocks_6_icon_row_items_0_label','Pay in Full'),(143688,40489,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(143689,40489,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(143690,40489,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(143691,40489,'blocks_6_icon_row_items_1_icon','finance.svg'),(143692,40489,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(143693,40489,'blocks_6_icon_row_items_1_label','0% finance'),(143694,40489,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(143695,40489,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(143696,40489,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(143697,40489,'blocks_6_icon_row_items_2_icon','deposit.svg'),(143698,40489,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(143699,40489,'blocks_6_icon_row_items_2_label','Deposit & balance'),(143700,40489,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(143701,40489,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(143702,40489,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(143703,40489,'blocks_6_icon_row_items','3'),(143704,40489,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(143705,40489,'blocks_7_acfe_flexible_toggle',''),(143706,40489,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(143707,40489,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(143708,40489,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(143709,40489,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(143710,40489,'_blocks_7_content','field_6193c9b5eac84'),(143711,40489,'blocks_8_acfe_flexible_toggle',''),(143712,40489,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(143713,40489,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(143714,40489,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(143715,40489,'blocks_8_testimonial_slider_content_title',''),(143716,40489,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(143717,40489,'blocks_8_testimonial_slider_content_heading','Testimonials'),(143718,40489,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(143719,40489,'blocks_8_testimonial_slider_content_text',''),(143720,40489,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(143721,40489,'blocks_8_testimonial_slider_content_actions',''),(143722,40489,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(143723,40489,'blocks_8_testimonial_slider_content',''),(143724,40489,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(143725,40489,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(143726,40489,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(143727,40489,'blocks_8_testimonial_slider_ambassador_bool','0'),(143728,40489,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(143729,40489,'blocks_9_acfe_flexible_toggle',''),(143730,40489,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(143731,40489,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(143732,40489,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(143733,40489,'blocks_9_options_theme','#ffffff'),(143734,40489,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(143735,40489,'blocks_9_options_state','0'),(143736,40489,'_blocks_9_options_state','field_6239fcb7508c5'),(143737,40489,'blocks_9_options',''),(143738,40489,'_blocks_9_options','field_6177e2991ac44'),(143739,40489,'blocks_9_content_title',''),(143740,40489,'_blocks_9_content_title','field_64d237e8bb1e2'),(143741,40489,'blocks_9_content_heading','Frequently asked questions '),(143742,40489,'_blocks_9_content_heading','field_64d237e8bb1e3'),(143743,40489,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(143744,40489,'_blocks_9_content_text','field_64d237e8bb1e4'),(143745,40489,'blocks_9_content_actions',''),(143746,40489,'_blocks_9_content_actions','field_64d237e8bb1e5'),(143747,40489,'blocks_9_content_align','left'),(143748,40489,'_blocks_9_content_align','field_64d2443e6b6aa'),(143749,40489,'blocks_9_content',''),(143750,40489,'_blocks_9_content','field_64d237e8bb1e1'),(143751,40489,'blocks_9_accordion_content','faqs'),(143752,40489,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(143753,40489,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(143754,40489,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(143755,40489,'blocks_9_actions',''),(143756,40489,'_blocks_9_actions','field_61a746a817f7a'),(143757,39249,'blocks_1_acfe_flexible_toggle',''),(143758,39249,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(143759,39249,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(143760,39249,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(143761,39249,'blocks_1_options_theme','#ffffff'),(143762,39249,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(143763,39249,'blocks_1_options_reverse','0'),(143764,39249,'_blocks_1_options_reverse','field_61768049bb8ac'),(143765,39249,'blocks_1_options',''),(143766,39249,'_blocks_1_options','field_617682517c334'),(143767,39249,'blocks_1_split_5050_image','39252'),(143768,39249,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(143769,39249,'blocks_1_split_5050_video',''),(143770,39249,'_blocks_1_split_5050_video','field_6239f3160848a'),(143771,39249,'blocks_1_split_5050_content_title',''),(143772,39249,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(143773,39249,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports coach'),(143774,39249,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(143775,39249,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from, injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(143776,39249,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(143777,39249,'blocks_1_split_5050_content_actions',''),(143778,39249,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(143779,39249,'blocks_1_split_5050_content',''),(143780,39249,'_blocks_1_split_5050_content','field_61767afceb8ba'),(143781,39249,'blocks_2_acfe_flexible_toggle',''),(143782,39249,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(143783,39249,'blocks_2_acfe_flexible_layout_title','Form'),(143784,39249,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(143785,39249,'blocks_2_row_content_format','standard'),(143786,39249,'_blocks_2_row_content_format','field_6481ead962881'),(143787,39249,'blocks_2_row_content_title',''),(143788,39249,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(143789,39249,'blocks_2_row_content_heading','Enquire Today'),(143790,39249,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(143791,39249,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(143792,39249,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(143793,39249,'blocks_2_row_content_actions',''),(143794,39249,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(143795,39249,'blocks_2_row_content',''),(143796,39249,'_blocks_2_row_content','field_61a0f5f5b3db0'),(143797,39249,'blocks_2_row_form','40394'),(143798,39249,'_blocks_2_row_form','field_61a4ff2c0b08e'),(143799,39249,'blocks_2_row_form_button_label',''),(143800,39249,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(143801,39249,'blocks_3_acfe_flexible_toggle',''),(143802,39249,'_blocks_3_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(143803,39249,'blocks_3_acfe_flexible_layout_title','Steps'),(143804,39249,'_blocks_3_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(143805,39249,'blocks_3_row_content_title',''),(143806,39249,'_blocks_3_row_content_title','field_64888cd1e26e0'),(143807,39249,'blocks_3_row_content_heading','Benefits of training with us'),(143808,39249,'_blocks_3_row_content_heading','field_64888cd9e26e1'),(143809,39249,'blocks_3_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(143810,39249,'_blocks_3_row_content_text','field_64888ce2e26e2'),(143811,39249,'blocks_3_row_content_actions',''),(143812,39249,'_blocks_3_row_content_actions','field_64888cf5e26e3'),(143813,39249,'blocks_3_row_content',''),(143814,39249,'_blocks_3_row_content','field_64888cb0e26df'),(143815,39249,'blocks_3_steps_0_icon','progression.svg'),(143816,39249,'_blocks_3_steps_0_icon','field_64888d53e26e6'),(143817,39249,'blocks_3_steps_0_title','Earning potential'),(143818,39249,'_blocks_3_steps_0_title','field_64888d94e26e7'),(143819,39249,'blocks_3_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(143820,39249,'_blocks_3_steps_0_text','field_64888d99e26e8'),(143821,39249,'blocks_3_steps_1_icon','support.svg'),(143822,39249,'_blocks_3_steps_1_icon','field_64888d53e26e6'),(143823,39249,'blocks_3_steps_1_title','Lifetime Learning Promise'),(143824,39249,'_blocks_3_steps_1_title','field_64888d94e26e7'),(143825,39249,'blocks_3_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(143826,39249,'_blocks_3_steps_1_text','field_64888d99e26e8'),(143827,39249,'blocks_3_steps_2_icon','qualification.svg'),(143828,39249,'_blocks_3_steps_2_icon','field_64888d53e26e6'),(143829,39249,'blocks_3_steps_2_title','Evidence based hands on learning'),(143830,39249,'_blocks_3_steps_2_title','field_64888d94e26e7'),(143831,39249,'blocks_3_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(143832,39249,'_blocks_3_steps_2_text','field_64888d99e26e8'),(143833,39249,'blocks_3_steps_3_icon','leaders.svg'),(143834,39249,'_blocks_3_steps_3_icon','field_64888d53e26e6'),(143835,39249,'blocks_3_steps_3_title','Stand out from the crowd'),(143836,39249,'_blocks_3_steps_3_title','field_64888d94e26e7'),(143837,39249,'blocks_3_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(143838,39249,'_blocks_3_steps_3_text','field_64888d99e26e8'),(143839,39249,'blocks_3_steps','4'),(143840,39249,'_blocks_3_steps','field_64888d44e26e5'),(143841,40490,'hide_hero','0'),(143842,40490,'_hide_hero','field_66a2380fcda39'),(143843,40490,'hero_title','Biomechanics and Sports Coaches '),(143844,40490,'_hero_title','field_617571fe285e8'),(143845,40490,'hero_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(143846,40490,'_hero_text','field_6175723c285e9'),(143847,40490,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(143848,40490,'_hero_actions_0_button','field_61757281285eb'),(143849,40490,'hero_actions','1'),(143850,40490,'_hero_actions','field_61757270285ea'),(143851,40490,'hero_style','default'),(143852,40490,'_hero_style','field_62051d9dc5324'),(143853,40490,'_thumbnail_id','39251'),(143854,40490,'__thumbnail_id','field_617570855ddaf'),(143855,40490,'hero_image_pos_x','right'),(143856,40490,'_hero_image_pos_x','field_62ec3d05390bb'),(143857,40490,'hero_image_pos_y','top'),(143858,40490,'_hero_image_pos_y','field_62ec3d05390bc'),(143859,40490,'hero_image_pos',''),(143860,40490,'_hero_image_pos','field_62ec3d05390ba'),(143861,40490,'fft_hide_from_listings','0'),(143862,40490,'_fft_hide_from_listings','field_61f1320446ab2'),(143863,40490,'fft_page_format','default'),(143864,40490,'_fft_page_format','field_61ae213f1f218'),(143865,40490,'fft_hide_nav','0'),(143866,40490,'_fft_hide_nav','field_635bd5e43527c'),(143867,40490,'fft_hide_header_call_to_action','0'),(143868,40490,'_fft_hide_header_call_to_action','field_635bd6723527d'),(143869,40490,'fft_page_sitemap','0'),(143870,40490,'_fft_page_sitemap','field_61af9b34e8181'),(143871,40490,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"steps\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(143872,40490,'_blocks','field_6176696113096'),(143873,40490,'blocks_0_acfe_flexible_toggle',''),(143874,40490,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(143875,40490,'blocks_0_acfe_flexible_layout_title','Template'),(143876,40490,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(143877,40490,'blocks_0_template','39087'),(143878,40490,'_blocks_0_template','field_617bdd570fe01'),(143879,40490,'blocks_4_acfe_flexible_toggle',''),(143880,40490,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(143881,40490,'blocks_4_acfe_flexible_layout_title','Tabs'),(143882,40490,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(143883,40490,'blocks_4_options_theme','#ffffff'),(143884,40490,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(143885,40490,'blocks_4_options',''),(143886,40490,'_blocks_4_options','field_6177cfcd8140f'),(143887,40490,'blocks_4_tabs_0_tab_label','What will I learn ?'),(143888,40490,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(143889,40490,'blocks_4_tabs_0_tab_content_title',''),(143890,40490,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(143891,40490,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(143892,40490,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(143893,40490,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(143894,40490,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(143895,40490,'blocks_4_tabs_0_tab_content_actions',''),(143896,40490,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(143897,40490,'blocks_4_tabs_0_tab_content',''),(143898,40490,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(143899,40490,'blocks_4_tabs_0_tab_image','39076'),(143900,40490,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(143901,40490,'blocks_4_tabs_1_tab_label','What do I need ?'),(143902,40490,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(143903,40490,'blocks_4_tabs_1_tab_content_title',''),(143904,40490,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(143905,40490,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(143906,40490,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(143907,40490,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(143908,40490,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(143909,40490,'blocks_4_tabs_1_tab_content_actions',''),(143910,40490,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(143911,40490,'blocks_4_tabs_1_tab_content',''),(143912,40490,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(143913,40490,'blocks_4_tabs_1_tab_image','39223'),(143914,40490,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(143915,40490,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(143916,40490,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(143917,40490,'blocks_4_tabs_2_tab_content_title',''),(143918,40490,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(143919,40490,'blocks_4_tabs_2_tab_content_heading','Locations'),(143920,40490,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(143921,40490,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(143922,40490,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(143923,40490,'blocks_4_tabs_2_tab_content_actions',''),(143924,40490,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(143925,40490,'blocks_4_tabs_2_tab_content',''),(143926,40490,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(143927,40490,'blocks_4_tabs_2_tab_image','39224'),(143928,40490,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(143929,40490,'blocks_4_tabs','3'),(143930,40490,'_blocks_4_tabs','field_6177cff281419'),(143931,40490,'blocks_5_acfe_flexible_toggle',''),(143932,40490,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(143933,40490,'blocks_5_acfe_flexible_layout_title','Text Block'),(143934,40490,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(143935,40490,'blocks_5_options_theme','#b61234'),(143936,40490,'_blocks_5_options_theme','field_6176830e2ad17'),(143937,40490,'blocks_5_options',''),(143938,40490,'_blocks_5_options','field_6176830e2ad16'),(143939,40490,'blocks_5_text_block_heading','Fees & Funding Options'),(143940,40490,'_blocks_5_text_block_heading','field_617669d413097'),(143941,40490,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(143942,40490,'_blocks_5_text_block_content','field_617669ec13098'),(143943,40490,'blocks_6_acfe_flexible_toggle',''),(143944,40490,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(143945,40490,'blocks_6_acfe_flexible_layout_title','Icons'),(143946,40490,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(143947,40490,'blocks_6_options_theme','#b61234'),(143948,40490,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(143949,40490,'blocks_6_options_format','row'),(143950,40490,'_blocks_6_options_format','field_64bfde9a90690'),(143951,40490,'blocks_6_options',''),(143952,40490,'_blocks_6_options','field_64bfdd9b90684'),(143953,40490,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(143954,40490,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(143955,40490,'blocks_6_icon_row_items_0_label','Pay in Full'),(143956,40490,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(143957,40490,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(143958,40490,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(143959,40490,'blocks_6_icon_row_items_1_icon','finance.svg'),(143960,40490,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(143961,40490,'blocks_6_icon_row_items_1_label','0% finance'),(143962,40490,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(143963,40490,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(143964,40490,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(143965,40490,'blocks_6_icon_row_items_2_icon','deposit.svg'),(143966,40490,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(143967,40490,'blocks_6_icon_row_items_2_label','Deposit & balance'),(143968,40490,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(143969,40490,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(143970,40490,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(143971,40490,'blocks_6_icon_row_items','3'),(143972,40490,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(143973,40490,'blocks_7_acfe_flexible_toggle',''),(143974,40490,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(143975,40490,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(143976,40490,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(143977,40490,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(143978,40490,'_blocks_7_content','field_6193c9b5eac84'),(143979,40490,'blocks_8_acfe_flexible_toggle',''),(143980,40490,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(143981,40490,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(143982,40490,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(143983,40490,'blocks_8_testimonial_slider_content_title',''),(143984,40490,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(143985,40490,'blocks_8_testimonial_slider_content_heading','Testimonials'),(143986,40490,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(143987,40490,'blocks_8_testimonial_slider_content_text',''),(143988,40490,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(143989,40490,'blocks_8_testimonial_slider_content_actions',''),(143990,40490,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(143991,40490,'blocks_8_testimonial_slider_content',''),(143992,40490,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(143993,40490,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(143994,40490,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(143995,40490,'blocks_8_testimonial_slider_ambassador_bool','0'),(143996,40490,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(143997,40490,'blocks_9_acfe_flexible_toggle',''),(143998,40490,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(143999,40490,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(144000,40490,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(144001,40490,'blocks_9_options_theme','#ffffff'),(144002,40490,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(144003,40490,'blocks_9_options_state','0'),(144004,40490,'_blocks_9_options_state','field_6239fcb7508c5'),(144005,40490,'blocks_9_options',''),(144006,40490,'_blocks_9_options','field_6177e2991ac44'),(144007,40490,'blocks_9_content_title',''),(144008,40490,'_blocks_9_content_title','field_64d237e8bb1e2'),(144009,40490,'blocks_9_content_heading','Frequently asked questions '),(144010,40490,'_blocks_9_content_heading','field_64d237e8bb1e3'),(144011,40490,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(144012,40490,'_blocks_9_content_text','field_64d237e8bb1e4'),(144013,40490,'blocks_9_content_actions',''),(144014,40490,'_blocks_9_content_actions','field_64d237e8bb1e5'),(144015,40490,'blocks_9_content_align','left'),(144016,40490,'_blocks_9_content_align','field_64d2443e6b6aa'),(144017,40490,'blocks_9_content',''),(144018,40490,'_blocks_9_content','field_64d237e8bb1e1'),(144019,40490,'blocks_9_accordion_content','faqs'),(144020,40490,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(144021,40490,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(144022,40490,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(144023,40490,'blocks_9_actions',''),(144024,40490,'_blocks_9_actions','field_61a746a817f7a'),(144025,40490,'blocks_1_acfe_flexible_toggle',''),(144026,40490,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(144027,40490,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(144028,40490,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(144029,40490,'blocks_1_options_theme','#ffffff'),(144030,40490,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(144031,40490,'blocks_1_options_reverse','0'),(144032,40490,'_blocks_1_options_reverse','field_61768049bb8ac'),(144033,40490,'blocks_1_options',''),(144034,40490,'_blocks_1_options','field_617682517c334'),(144035,40490,'blocks_1_split_5050_image','39252'),(144036,40490,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(144037,40490,'blocks_1_split_5050_video',''),(144038,40490,'_blocks_1_split_5050_video','field_6239f3160848a'),(144039,40490,'blocks_1_split_5050_content_title',''),(144040,40490,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(144041,40490,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports coach'),(144042,40490,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(144043,40490,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from, injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(144044,40490,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(144045,40490,'blocks_1_split_5050_content_actions',''),(144046,40490,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(144047,40490,'blocks_1_split_5050_content',''),(144048,40490,'_blocks_1_split_5050_content','field_61767afceb8ba'),(144049,40490,'blocks_2_acfe_flexible_toggle',''),(144050,40490,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(144051,40490,'blocks_2_acfe_flexible_layout_title','Form'),(144052,40490,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(144053,40490,'blocks_2_row_content_format','standard'),(144054,40490,'_blocks_2_row_content_format','field_6481ead962881'),(144055,40490,'blocks_2_row_content_title',''),(144056,40490,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(144057,40490,'blocks_2_row_content_heading','Enquire Today'),(144058,40490,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(144059,40490,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(144060,40490,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(144061,40490,'blocks_2_row_content_actions',''),(144062,40490,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(144063,40490,'blocks_2_row_content',''),(144064,40490,'_blocks_2_row_content','field_61a0f5f5b3db0'),(144065,40490,'blocks_2_row_form',''),(144066,40490,'_blocks_2_row_form','field_61a4ff2c0b08e'),(144067,40490,'blocks_2_row_form_button_label',''),(144068,40490,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(144069,40490,'blocks_3_acfe_flexible_toggle',''),(144070,40490,'_blocks_3_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(144071,40490,'blocks_3_acfe_flexible_layout_title','Steps'),(144072,40490,'_blocks_3_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(144073,40490,'blocks_3_row_content_title',''),(144074,40490,'_blocks_3_row_content_title','field_64888cd1e26e0'),(144075,40490,'blocks_3_row_content_heading','Benefits of training with us'),(144076,40490,'_blocks_3_row_content_heading','field_64888cd9e26e1'),(144077,40490,'blocks_3_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(144078,40490,'_blocks_3_row_content_text','field_64888ce2e26e2'),(144079,40490,'blocks_3_row_content_actions',''),(144080,40490,'_blocks_3_row_content_actions','field_64888cf5e26e3'),(144081,40490,'blocks_3_row_content',''),(144082,40490,'_blocks_3_row_content','field_64888cb0e26df'),(144083,40490,'blocks_3_steps_0_icon','progression.svg'),(144084,40490,'_blocks_3_steps_0_icon','field_64888d53e26e6'),(144085,40490,'blocks_3_steps_0_title','Earning potential'),(144086,40490,'_blocks_3_steps_0_title','field_64888d94e26e7'),(144087,40490,'blocks_3_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(144088,40490,'_blocks_3_steps_0_text','field_64888d99e26e8'),(144089,40490,'blocks_3_steps_1_icon','support.svg'),(144090,40490,'_blocks_3_steps_1_icon','field_64888d53e26e6'),(144091,40490,'blocks_3_steps_1_title','Lifetime Learning Promise'),(144092,40490,'_blocks_3_steps_1_title','field_64888d94e26e7'),(144093,40490,'blocks_3_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(144094,40490,'_blocks_3_steps_1_text','field_64888d99e26e8'),(144095,40490,'blocks_3_steps_2_icon','qualification.svg'),(144096,40490,'_blocks_3_steps_2_icon','field_64888d53e26e6'),(144097,40490,'blocks_3_steps_2_title','Evidence based hands on learning'),(144098,40490,'_blocks_3_steps_2_title','field_64888d94e26e7'),(144099,40490,'blocks_3_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(144100,40490,'_blocks_3_steps_2_text','field_64888d99e26e8'),(144101,40490,'blocks_3_steps_3_icon','leaders.svg'),(144102,40490,'_blocks_3_steps_3_icon','field_64888d53e26e6'),(144103,40490,'blocks_3_steps_3_title','Stand out from the crowd'),(144104,40490,'_blocks_3_steps_3_title','field_64888d94e26e7'),(144105,40490,'blocks_3_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(144106,40490,'_blocks_3_steps_3_text','field_64888d99e26e8'),(144107,40490,'blocks_3_steps','4'),(144108,40490,'_blocks_3_steps','field_64888d44e26e5'),(144109,40491,'_wp_attached_file','2024/09/DSC_6484-scaled.jpg'),(144110,40491,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:27:\"2024/09/DSC_6484-scaled.jpg\";s:8:\"filesize\";i:390643;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC_6484-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87399;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC_6484-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122189;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_6484-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42065;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC_6484-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73400;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC_6484-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171810;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC_6484-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264230;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6484-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47353;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC_6484-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106734;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC_6484-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156165;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6484-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42071;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC_6484-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86890;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC_6484-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121627;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6484-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42697;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC_6484-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90657;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"DSC_6484-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130988;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6484-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43145;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"DSC_6484-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91107;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"DSC_6484-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129455;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6484-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40011;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"DSC_6484-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79869;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"DSC_6484-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110410;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535282452\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC_6484.jpg\";}'),(144111,40491,'_wp_attachment_image_alt','Photo of a skeleton and diagram with circles around certain points. Rcahel is pointing to the paper, and the paper is sat on a massage table.'),(144112,39249,'blocks_7_acfe_flexible_toggle',''),(144113,39249,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(144114,39249,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(144115,39249,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(144116,39249,'blocks_7_options_theme','#ffffff'),(144117,39249,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(144118,39249,'blocks_7_options_reverse','0'),(144119,39249,'_blocks_7_options_reverse','field_61768049bb8ac'),(144120,39249,'blocks_7_options',''),(144121,39249,'_blocks_7_options','field_617682517c334'),(144122,39249,'blocks_7_split_5050_image','40491'),(144123,39249,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(144124,39249,'blocks_7_split_5050_video',''),(144125,39249,'_blocks_7_split_5050_video','field_6239f3160848a'),(144126,39249,'blocks_7_split_5050_content_title',''),(144127,39249,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(144128,39249,'blocks_7_split_5050_content_heading','Why study this course ?'),(144129,39249,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(144130,39249,'blocks_7_split_5050_content_text','<ul>\r\n 	<li style=\"text-align: left;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: left;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: left;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: left;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: left;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(144131,39249,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(144132,39249,'blocks_7_split_5050_content_actions',''),(144133,39249,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(144134,39249,'blocks_7_split_5050_content',''),(144135,39249,'_blocks_7_split_5050_content','field_61767afceb8ba'),(144136,40492,'hide_hero','0'),(144137,40492,'_hide_hero','field_66a2380fcda39'),(144138,40492,'hero_title','Biomechanics and Sports Coaches '),(144139,40492,'_hero_title','field_617571fe285e8'),(144140,40492,'hero_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(144141,40492,'_hero_text','field_6175723c285e9'),(144142,40492,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(144143,40492,'_hero_actions_0_button','field_61757281285eb'),(144144,40492,'hero_actions','1'),(144145,40492,'_hero_actions','field_61757270285ea'),(144146,40492,'hero_style','default'),(144147,40492,'_hero_style','field_62051d9dc5324'),(144148,40492,'_thumbnail_id','39251'),(144149,40492,'__thumbnail_id','field_617570855ddaf'),(144150,40492,'hero_image_pos_x','right'),(144151,40492,'_hero_image_pos_x','field_62ec3d05390bb'),(144152,40492,'hero_image_pos_y','top'),(144153,40492,'_hero_image_pos_y','field_62ec3d05390bc'),(144154,40492,'hero_image_pos',''),(144155,40492,'_hero_image_pos','field_62ec3d05390ba'),(144156,40492,'fft_hide_from_listings','0'),(144157,40492,'_fft_hide_from_listings','field_61f1320446ab2'),(144158,40492,'fft_page_format','default'),(144159,40492,'_fft_page_format','field_61ae213f1f218'),(144160,40492,'fft_hide_nav','0'),(144161,40492,'_fft_hide_nav','field_635bd5e43527c'),(144162,40492,'fft_hide_header_call_to_action','0'),(144163,40492,'_fft_hide_header_call_to_action','field_635bd6723527d'),(144164,40492,'fft_page_sitemap','0'),(144165,40492,'_fft_page_sitemap','field_61af9b34e8181'),(144166,40492,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"steps\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(144167,40492,'_blocks','field_6176696113096'),(144168,40492,'blocks_0_acfe_flexible_toggle',''),(144169,40492,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(144170,40492,'blocks_0_acfe_flexible_layout_title','Template'),(144171,40492,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(144172,40492,'blocks_0_template','39087'),(144173,40492,'_blocks_0_template','field_617bdd570fe01'),(144174,40492,'blocks_4_acfe_flexible_toggle',''),(144175,40492,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(144176,40492,'blocks_4_acfe_flexible_layout_title','Tabs'),(144177,40492,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(144178,40492,'blocks_4_options_theme','#ffffff'),(144179,40492,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(144180,40492,'blocks_4_options',''),(144181,40492,'_blocks_4_options','field_6177cfcd8140f'),(144182,40492,'blocks_4_tabs_0_tab_label','What will I learn ?'),(144183,40492,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(144184,40492,'blocks_4_tabs_0_tab_content_title',''),(144185,40492,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(144186,40492,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(144187,40492,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(144188,40492,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(144189,40492,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(144190,40492,'blocks_4_tabs_0_tab_content_actions',''),(144191,40492,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(144192,40492,'blocks_4_tabs_0_tab_content',''),(144193,40492,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(144194,40492,'blocks_4_tabs_0_tab_image','39076'),(144195,40492,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(144196,40492,'blocks_4_tabs_1_tab_label','What do I need ?'),(144197,40492,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(144198,40492,'blocks_4_tabs_1_tab_content_title',''),(144199,40492,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(144200,40492,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(144201,40492,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(144202,40492,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(144203,40492,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(144204,40492,'blocks_4_tabs_1_tab_content_actions',''),(144205,40492,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(144206,40492,'blocks_4_tabs_1_tab_content',''),(144207,40492,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(144208,40492,'blocks_4_tabs_1_tab_image','39223'),(144209,40492,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(144210,40492,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(144211,40492,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(144212,40492,'blocks_4_tabs_2_tab_content_title',''),(144213,40492,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(144214,40492,'blocks_4_tabs_2_tab_content_heading','Locations'),(144215,40492,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(144216,40492,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(144217,40492,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(144218,40492,'blocks_4_tabs_2_tab_content_actions',''),(144219,40492,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(144220,40492,'blocks_4_tabs_2_tab_content',''),(144221,40492,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(144222,40492,'blocks_4_tabs_2_tab_image','39224'),(144223,40492,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(144224,40492,'blocks_4_tabs','3'),(144225,40492,'_blocks_4_tabs','field_6177cff281419'),(144226,40492,'blocks_5_acfe_flexible_toggle',''),(144227,40492,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(144228,40492,'blocks_5_acfe_flexible_layout_title','Text Block'),(144229,40492,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(144230,40492,'blocks_5_options_theme','#b61234'),(144231,40492,'_blocks_5_options_theme','field_6176830e2ad17'),(144232,40492,'blocks_5_options',''),(144233,40492,'_blocks_5_options','field_6176830e2ad16'),(144234,40492,'blocks_5_text_block_heading','Fees & Funding Options'),(144235,40492,'_blocks_5_text_block_heading','field_617669d413097'),(144236,40492,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(144237,40492,'_blocks_5_text_block_content','field_617669ec13098'),(144238,40492,'blocks_6_acfe_flexible_toggle',''),(144239,40492,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(144240,40492,'blocks_6_acfe_flexible_layout_title','Icons'),(144241,40492,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(144242,40492,'blocks_6_options_theme','#b61234'),(144243,40492,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(144244,40492,'blocks_6_options_format','row'),(144245,40492,'_blocks_6_options_format','field_64bfde9a90690'),(144246,40492,'blocks_6_options',''),(144247,40492,'_blocks_6_options','field_64bfdd9b90684'),(144248,40492,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(144249,40492,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(144250,40492,'blocks_6_icon_row_items_0_label','Pay in Full'),(144251,40492,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(144252,40492,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(144253,40492,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(144254,40492,'blocks_6_icon_row_items_1_icon','finance.svg'),(144255,40492,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(144256,40492,'blocks_6_icon_row_items_1_label','0% finance'),(144257,40492,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(144258,40492,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(144259,40492,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(144260,40492,'blocks_6_icon_row_items_2_icon','deposit.svg'),(144261,40492,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(144262,40492,'blocks_6_icon_row_items_2_label','Deposit & balance'),(144263,40492,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(144264,40492,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(144265,40492,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(144266,40492,'blocks_6_icon_row_items','3'),(144267,40492,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(144268,40492,'blocks_8_acfe_flexible_toggle',''),(144269,40492,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(144270,40492,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(144271,40492,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(144272,40492,'blocks_8_testimonial_slider_content_title',''),(144273,40492,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(144274,40492,'blocks_8_testimonial_slider_content_heading','Testimonials'),(144275,40492,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(144276,40492,'blocks_8_testimonial_slider_content_text',''),(144277,40492,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(144278,40492,'blocks_8_testimonial_slider_content_actions',''),(144279,40492,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(144280,40492,'blocks_8_testimonial_slider_content',''),(144281,40492,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(144282,40492,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(144283,40492,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(144284,40492,'blocks_8_testimonial_slider_ambassador_bool','0'),(144285,40492,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(144286,40492,'blocks_9_acfe_flexible_toggle',''),(144287,40492,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(144288,40492,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(144289,40492,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(144290,40492,'blocks_9_options_theme','#ffffff'),(144291,40492,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(144292,40492,'blocks_9_options_state','0'),(144293,40492,'_blocks_9_options_state','field_6239fcb7508c5'),(144294,40492,'blocks_9_options',''),(144295,40492,'_blocks_9_options','field_6177e2991ac44'),(144296,40492,'blocks_9_content_title',''),(144297,40492,'_blocks_9_content_title','field_64d237e8bb1e2'),(144298,40492,'blocks_9_content_heading','Frequently asked questions '),(144299,40492,'_blocks_9_content_heading','field_64d237e8bb1e3'),(144300,40492,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(144301,40492,'_blocks_9_content_text','field_64d237e8bb1e4'),(144302,40492,'blocks_9_content_actions',''),(144303,40492,'_blocks_9_content_actions','field_64d237e8bb1e5'),(144304,40492,'blocks_9_content_align','left'),(144305,40492,'_blocks_9_content_align','field_64d2443e6b6aa'),(144306,40492,'blocks_9_content',''),(144307,40492,'_blocks_9_content','field_64d237e8bb1e1'),(144308,40492,'blocks_9_accordion_content','faqs'),(144309,40492,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(144310,40492,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(144311,40492,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(144312,40492,'blocks_9_actions',''),(144313,40492,'_blocks_9_actions','field_61a746a817f7a'),(144314,40492,'blocks_1_acfe_flexible_toggle',''),(144315,40492,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(144316,40492,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(144317,40492,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(144318,40492,'blocks_1_options_theme','#ffffff'),(144319,40492,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(144320,40492,'blocks_1_options_reverse','0'),(144321,40492,'_blocks_1_options_reverse','field_61768049bb8ac'),(144322,40492,'blocks_1_options',''),(144323,40492,'_blocks_1_options','field_617682517c334'),(144324,40492,'blocks_1_split_5050_image','39252'),(144325,40492,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(144326,40492,'blocks_1_split_5050_video',''),(144327,40492,'_blocks_1_split_5050_video','field_6239f3160848a'),(144328,40492,'blocks_1_split_5050_content_title',''),(144329,40492,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(144330,40492,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports coach'),(144331,40492,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(144332,40492,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from, injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(144333,40492,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(144334,40492,'blocks_1_split_5050_content_actions',''),(144335,40492,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(144336,40492,'blocks_1_split_5050_content',''),(144337,40492,'_blocks_1_split_5050_content','field_61767afceb8ba'),(144338,40492,'blocks_2_acfe_flexible_toggle',''),(144339,40492,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(144340,40492,'blocks_2_acfe_flexible_layout_title','Form'),(144341,40492,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(144342,40492,'blocks_2_row_content_format','standard'),(144343,40492,'_blocks_2_row_content_format','field_6481ead962881'),(144344,40492,'blocks_2_row_content_title',''),(144345,40492,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(144346,40492,'blocks_2_row_content_heading','Enquire Today'),(144347,40492,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(144348,40492,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(144349,40492,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(144350,40492,'blocks_2_row_content_actions',''),(144351,40492,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(144352,40492,'blocks_2_row_content',''),(144353,40492,'_blocks_2_row_content','field_61a0f5f5b3db0'),(144354,40492,'blocks_2_row_form',''),(144355,40492,'_blocks_2_row_form','field_61a4ff2c0b08e'),(144356,40492,'blocks_2_row_form_button_label',''),(144357,40492,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(144358,40492,'blocks_3_acfe_flexible_toggle',''),(144359,40492,'_blocks_3_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(144360,40492,'blocks_3_acfe_flexible_layout_title','Steps'),(144361,40492,'_blocks_3_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(144362,40492,'blocks_3_row_content_title',''),(144363,40492,'_blocks_3_row_content_title','field_64888cd1e26e0'),(144364,40492,'blocks_3_row_content_heading','Benefits of training with us'),(144365,40492,'_blocks_3_row_content_heading','field_64888cd9e26e1'),(144366,40492,'blocks_3_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(144367,40492,'_blocks_3_row_content_text','field_64888ce2e26e2'),(144368,40492,'blocks_3_row_content_actions',''),(144369,40492,'_blocks_3_row_content_actions','field_64888cf5e26e3'),(144370,40492,'blocks_3_row_content',''),(144371,40492,'_blocks_3_row_content','field_64888cb0e26df'),(144372,40492,'blocks_3_steps_0_icon','progression.svg'),(144373,40492,'_blocks_3_steps_0_icon','field_64888d53e26e6'),(144374,40492,'blocks_3_steps_0_title','Earning potential'),(144375,40492,'_blocks_3_steps_0_title','field_64888d94e26e7'),(144376,40492,'blocks_3_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(144377,40492,'_blocks_3_steps_0_text','field_64888d99e26e8'),(144378,40492,'blocks_3_steps_1_icon','support.svg'),(144379,40492,'_blocks_3_steps_1_icon','field_64888d53e26e6'),(144380,40492,'blocks_3_steps_1_title','Lifetime Learning Promise'),(144381,40492,'_blocks_3_steps_1_title','field_64888d94e26e7'),(144382,40492,'blocks_3_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(144383,40492,'_blocks_3_steps_1_text','field_64888d99e26e8'),(144384,40492,'blocks_3_steps_2_icon','qualification.svg'),(144385,40492,'_blocks_3_steps_2_icon','field_64888d53e26e6'),(144386,40492,'blocks_3_steps_2_title','Evidence based hands on learning'),(144387,40492,'_blocks_3_steps_2_title','field_64888d94e26e7'),(144388,40492,'blocks_3_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(144389,40492,'_blocks_3_steps_2_text','field_64888d99e26e8'),(144390,40492,'blocks_3_steps_3_icon','leaders.svg'),(144391,40492,'_blocks_3_steps_3_icon','field_64888d53e26e6'),(144392,40492,'blocks_3_steps_3_title','Stand out from the crowd'),(144393,40492,'_blocks_3_steps_3_title','field_64888d94e26e7'),(144394,40492,'blocks_3_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(144395,40492,'_blocks_3_steps_3_text','field_64888d99e26e8'),(144396,40492,'blocks_3_steps','4'),(144397,40492,'_blocks_3_steps','field_64888d44e26e5'),(144398,40492,'blocks_7_acfe_flexible_toggle',''),(144399,40492,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(144400,40492,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(144401,40492,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(144402,40492,'blocks_7_options_theme','#ffffff'),(144403,40492,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(144404,40492,'blocks_7_options_reverse','0'),(144405,40492,'_blocks_7_options_reverse','field_61768049bb8ac'),(144406,40492,'blocks_7_options',''),(144407,40492,'_blocks_7_options','field_617682517c334'),(144408,40492,'blocks_7_split_5050_image','40491'),(144409,40492,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(144410,40492,'blocks_7_split_5050_video',''),(144411,40492,'_blocks_7_split_5050_video','field_6239f3160848a'),(144412,40492,'blocks_7_split_5050_content_title',''),(144413,40492,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(144414,40492,'blocks_7_split_5050_content_heading','Why study this course ?'),(144415,40492,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(144416,40492,'blocks_7_split_5050_content_text','<ul>\r\n 	<li style=\"text-align: left;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: left;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: left;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: left;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: left;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(144417,40492,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(144418,40492,'blocks_7_split_5050_content_actions',''),(144419,40492,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(144420,40492,'blocks_7_split_5050_content',''),(144421,40492,'_blocks_7_split_5050_content','field_61767afceb8ba'),(144428,39231,'blocks_8_acfe_flexible_toggle',''),(144429,39231,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(144430,39231,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(144431,39231,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(144432,39231,'blocks_8_options_theme','#ffffff'),(144433,39231,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(144434,39231,'blocks_8_options_reverse','0'),(144435,39231,'_blocks_8_options_reverse','field_61768049bb8ac'),(144436,39231,'blocks_8_options',''),(144437,39231,'_blocks_8_options','field_617682517c334'),(144438,39231,'blocks_8_split_5050_image','40484'),(144439,39231,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(144440,39231,'blocks_8_split_5050_video',''),(144441,39231,'_blocks_8_split_5050_video','field_6239f3160848a'),(144442,39231,'blocks_8_split_5050_content_title',''),(144443,39231,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(144444,39231,'blocks_8_split_5050_content_heading','Why study this course?'),(144445,39231,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(144446,39231,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(144447,39231,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(144448,39231,'blocks_8_split_5050_content_actions',''),(144449,39231,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(144450,39231,'blocks_8_split_5050_content',''),(144451,39231,'_blocks_8_split_5050_content','field_61767afceb8ba'),(144498,40493,'hide_hero','0'),(144499,40493,'_hide_hero','field_66a2380fcda39'),(144500,40493,'hero_title','Biomechanics and Pilates'),(144501,40493,'_hero_title','field_617571fe285e8'),(144502,40493,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(144503,40493,'_hero_text','field_6175723c285e9'),(144504,40493,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(144505,40493,'_hero_actions_0_button','field_61757281285eb'),(144506,40493,'hero_actions','1'),(144507,40493,'_hero_actions','field_61757270285ea'),(144508,40493,'hero_style','default'),(144509,40493,'_hero_style','field_62051d9dc5324'),(144510,40493,'_thumbnail_id','39243'),(144511,40493,'__thumbnail_id','field_617570855ddaf'),(144512,40493,'hero_image_pos_x','right'),(144513,40493,'_hero_image_pos_x','field_62ec3d05390bb'),(144514,40493,'hero_image_pos_y','top'),(144515,40493,'_hero_image_pos_y','field_62ec3d05390bc'),(144516,40493,'hero_image_pos',''),(144517,40493,'_hero_image_pos','field_62ec3d05390ba'),(144518,40493,'fft_hide_from_listings','0'),(144519,40493,'_fft_hide_from_listings','field_61f1320446ab2'),(144520,40493,'fft_page_format','default'),(144521,40493,'_fft_page_format','field_61ae213f1f218'),(144522,40493,'fft_hide_nav','0'),(144523,40493,'_fft_hide_nav','field_635bd5e43527c'),(144524,40493,'fft_hide_header_call_to_action','0'),(144525,40493,'_fft_hide_header_call_to_action','field_635bd6723527d'),(144526,40493,'fft_page_sitemap','0'),(144527,40493,'_fft_page_sitemap','field_61af9b34e8181'),(144528,40493,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:8:\"template\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(144529,40493,'_blocks','field_6176696113096'),(144530,40493,'blocks_0_acfe_flexible_toggle',''),(144531,40493,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(144532,40493,'blocks_0_acfe_flexible_layout_title','Icons'),(144533,40493,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(144534,40493,'blocks_0_options_theme','#b61234'),(144535,40493,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(144536,40493,'blocks_0_options_format','row'),(144537,40493,'_blocks_0_options_format','field_64bfde9a90690'),(144538,40493,'blocks_0_options',''),(144539,40493,'_blocks_0_options','field_64bfdd9b90684'),(144540,40493,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(144541,40493,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(144542,40493,'blocks_0_icon_row_items_0_label','Accreditation'),(144543,40493,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(144544,40493,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(144545,40493,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(144546,40493,'blocks_0_icon_row_items_1_icon','finance.svg'),(144547,40493,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(144548,40493,'blocks_0_icon_row_items_1_label','Flexible payment options'),(144549,40493,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(144550,40493,'blocks_0_icon_row_items_1_text','Including 0% finance'),(144551,40493,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(144552,40493,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(144553,40493,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(144554,40493,'blocks_0_icon_row_items_2_label','Earning potential'),(144555,40493,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(144556,40493,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(144557,40493,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(144558,40493,'blocks_0_icon_row_items','3'),(144559,40493,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(144560,40493,'blocks_1_acfe_flexible_toggle',''),(144561,40493,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(144562,40493,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(144563,40493,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(144564,40493,'blocks_1_options_theme','#ffffff'),(144565,40493,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(144566,40493,'blocks_1_options_reverse','0'),(144567,40493,'_blocks_1_options_reverse','field_61768049bb8ac'),(144568,40493,'blocks_1_options',''),(144569,40493,'_blocks_1_options','field_617682517c334'),(144570,40493,'blocks_1_split_5050_image','38037'),(144571,40493,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(144572,40493,'blocks_1_split_5050_video',''),(144573,40493,'_blocks_1_split_5050_video','field_6239f3160848a'),(144574,40493,'blocks_1_split_5050_content_title',''),(144575,40493,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(144576,40493,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(144577,40493,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(144578,40493,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(144579,40493,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(144580,40493,'blocks_1_split_5050_content_actions',''),(144581,40493,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(144582,40493,'blocks_1_split_5050_content',''),(144583,40493,'_blocks_1_split_5050_content','field_61767afceb8ba'),(144584,40493,'blocks_2_acfe_flexible_toggle',''),(144585,40493,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(144586,40493,'blocks_2_acfe_flexible_layout_title','Form'),(144587,40493,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(144588,40493,'blocks_2_row_content_format','standard'),(144589,40493,'_blocks_2_row_content_format','field_6481ead962881'),(144590,40493,'blocks_2_row_content_title',''),(144591,40493,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(144592,40493,'blocks_2_row_content_heading','Enquire Today'),(144593,40493,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(144594,40493,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(144595,40493,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(144596,40493,'blocks_2_row_content_actions',''),(144597,40493,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(144598,40493,'blocks_2_row_content',''),(144599,40493,'_blocks_2_row_content','field_61a0f5f5b3db0'),(144600,40493,'blocks_2_row_form',''),(144601,40493,'_blocks_2_row_form','field_61a4ff2c0b08e'),(144602,40493,'blocks_2_row_form_button_label',''),(144603,40493,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(144604,40493,'blocks_3_acfe_flexible_toggle',''),(144605,40493,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(144606,40493,'blocks_3_acfe_flexible_layout_title','Video'),(144607,40493,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(144608,40493,'blocks_3_size','large'),(144609,40493,'_blocks_3_size','field_6487038f297c1'),(144610,40493,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(144611,40493,'_blocks_3_row_content_title','field_64870132a865d'),(144612,40493,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(144613,40493,'_blocks_3_row_content_heading','field_64870142a865e'),(144614,40493,'blocks_3_row_content_text',''),(144615,40493,'_blocks_3_row_content_text','field_64870148a865f'),(144616,40493,'blocks_3_row_content',''),(144617,40493,'_blocks_3_row_content','field_6487008ba865c'),(144618,40493,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(144619,40493,'_blocks_3_video_src','field_6193c4a98ec07'),(144620,40493,'blocks_3_video_thumbnail',''),(144621,40493,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(144622,40493,'blocks_4_acfe_flexible_toggle',''),(144623,40493,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(144624,40493,'blocks_4_acfe_flexible_layout_title','Steps'),(144625,40493,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(144626,40493,'blocks_4_row_content_title',''),(144627,40493,'_blocks_4_row_content_title','field_64888cd1e26e0'),(144628,40493,'blocks_4_row_content_heading','Benefits of training with us'),(144629,40493,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(144630,40493,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(144631,40493,'_blocks_4_row_content_text','field_64888ce2e26e2'),(144632,40493,'blocks_4_row_content_actions',''),(144633,40493,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(144634,40493,'blocks_4_row_content',''),(144635,40493,'_blocks_4_row_content','field_64888cb0e26df'),(144636,40493,'blocks_4_steps_0_icon','progression.svg'),(144637,40493,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(144638,40493,'blocks_4_steps_0_title','Earning potential'),(144639,40493,'_blocks_4_steps_0_title','field_64888d94e26e7'),(144640,40493,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(144641,40493,'_blocks_4_steps_0_text','field_64888d99e26e8'),(144642,40493,'blocks_4_steps_1_icon','support.svg'),(144643,40493,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(144644,40493,'blocks_4_steps_1_title','Lifetime Learning Promise'),(144645,40493,'_blocks_4_steps_1_title','field_64888d94e26e7'),(144646,40493,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(144647,40493,'_blocks_4_steps_1_text','field_64888d99e26e8'),(144648,40493,'blocks_4_steps_2_icon','qualification.svg'),(144649,40493,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(144650,40493,'blocks_4_steps_2_title','Evidence based hands on learning'),(144651,40493,'_blocks_4_steps_2_title','field_64888d94e26e7'),(144652,40493,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(144653,40493,'_blocks_4_steps_2_text','field_64888d99e26e8'),(144654,40493,'blocks_4_steps_3_icon','leaders.svg'),(144655,40493,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(144656,40493,'blocks_4_steps_3_title','Stand out from the crowd'),(144657,40493,'_blocks_4_steps_3_title','field_64888d94e26e7'),(144658,40493,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(144659,40493,'_blocks_4_steps_3_text','field_64888d99e26e8'),(144660,40493,'blocks_4_steps','4'),(144661,40493,'_blocks_4_steps','field_64888d44e26e5'),(144662,40493,'blocks_5_acfe_flexible_toggle',''),(144663,40493,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(144664,40493,'blocks_5_acfe_flexible_layout_title','Tabs'),(144665,40493,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(144666,40493,'blocks_5_options_theme','#ffffff'),(144667,40493,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(144668,40493,'blocks_5_options',''),(144669,40493,'_blocks_5_options','field_6177cfcd8140f'),(144670,40493,'blocks_5_tabs_0_tab_label','What will I learn?'),(144671,40493,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(144672,40493,'blocks_5_tabs_0_tab_content_title',''),(144673,40493,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(144674,40493,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(144675,40493,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(144676,40493,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients:\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(144677,40493,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(144678,40493,'blocks_5_tabs_0_tab_content_actions',''),(144679,40493,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(144680,40493,'blocks_5_tabs_0_tab_content',''),(144681,40493,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(144682,40493,'blocks_5_tabs_0_tab_image','39076'),(144683,40493,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(144684,40493,'blocks_5_tabs_1_tab_label','What do I need?'),(144685,40493,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(144686,40493,'blocks_5_tabs_1_tab_content_title',''),(144687,40493,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(144688,40493,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(144689,40493,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(144690,40493,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(144691,40493,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(144692,40493,'blocks_5_tabs_1_tab_content_actions',''),(144693,40493,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(144694,40493,'blocks_5_tabs_1_tab_content',''),(144695,40493,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(144696,40493,'blocks_5_tabs_1_tab_image','40487'),(144697,40493,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(144698,40493,'blocks_5_tabs_2_tab_label','Where can I learn?'),(144699,40493,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(144700,40493,'blocks_5_tabs_2_tab_content_title',''),(144701,40493,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(144702,40493,'blocks_5_tabs_2_tab_content_heading','Locations'),(144703,40493,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(144704,40493,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(144705,40493,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(144706,40493,'blocks_5_tabs_2_tab_content_actions',''),(144707,40493,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(144708,40493,'blocks_5_tabs_2_tab_content',''),(144709,40493,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(144710,40493,'blocks_5_tabs_2_tab_image','39224'),(144711,40493,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(144712,40493,'blocks_5_tabs','3'),(144713,40493,'_blocks_5_tabs','field_6177cff281419'),(144714,40493,'blocks_6_acfe_flexible_toggle',''),(144715,40493,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(144716,40493,'blocks_6_acfe_flexible_layout_title','Text Block'),(144717,40493,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(144718,40493,'blocks_6_options_theme','#b61234'),(144719,40493,'_blocks_6_options_theme','field_6176830e2ad17'),(144720,40493,'blocks_6_options',''),(144721,40493,'_blocks_6_options','field_6176830e2ad16'),(144722,40493,'blocks_6_text_block_heading','Fees & Funding Options'),(144723,40493,'_blocks_6_text_block_heading','field_617669d413097'),(144724,40493,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(144725,40493,'_blocks_6_text_block_content','field_617669ec13098'),(144726,40493,'blocks_7_acfe_flexible_toggle',''),(144727,40493,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(144728,40493,'blocks_7_acfe_flexible_layout_title','Template'),(144729,40493,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(144730,40493,'blocks_7_template','39401'),(144731,40493,'_blocks_7_template','field_617bdd570fe01'),(144732,40493,'blocks_8_acfe_flexible_toggle',''),(144733,40493,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(144734,40493,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(144735,40493,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(144736,40493,'blocks_8_options_theme','#ffffff'),(144737,40493,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(144738,40493,'blocks_8_options_reverse','0'),(144739,40493,'_blocks_8_options_reverse','field_61768049bb8ac'),(144740,40493,'blocks_8_options',''),(144741,40493,'_blocks_8_options','field_617682517c334'),(144742,40493,'blocks_8_split_5050_image','40484'),(144743,40493,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(144744,40493,'blocks_8_split_5050_video',''),(144745,40493,'_blocks_8_split_5050_video','field_6239f3160848a'),(144746,40493,'blocks_8_split_5050_content_title',''),(144747,40493,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(144748,40493,'blocks_8_split_5050_content_heading','Why study this course?'),(144749,40493,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(144750,40493,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(144751,40493,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(144752,40493,'blocks_8_split_5050_content_actions',''),(144753,40493,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(144754,40493,'blocks_8_split_5050_content',''),(144755,40493,'_blocks_8_split_5050_content','field_61767afceb8ba'),(144756,40493,'blocks_9_acfe_flexible_toggle',''),(144757,40493,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(144758,40493,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(144759,40493,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(144760,40493,'blocks_9_testimonial_slider_content_title',''),(144761,40493,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(144762,40493,'blocks_9_testimonial_slider_content_heading','Testimonials'),(144763,40493,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(144764,40493,'blocks_9_testimonial_slider_content_text',''),(144765,40493,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(144766,40493,'blocks_9_testimonial_slider_content_actions',''),(144767,40493,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(144768,40493,'blocks_9_testimonial_slider_content',''),(144769,40493,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(144770,40493,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(144771,40493,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(144772,40493,'blocks_9_testimonial_slider_ambassador_bool','0'),(144773,40493,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(144774,40493,'blocks_10_acfe_flexible_toggle',''),(144775,40493,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(144776,40493,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(144777,40493,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(144778,40493,'blocks_10_options_theme','#ffffff'),(144779,40493,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(144780,40493,'blocks_10_options_state','0'),(144781,40493,'_blocks_10_options_state','field_6239fcb7508c5'),(144782,40493,'blocks_10_options',''),(144783,40493,'_blocks_10_options','field_6177e2991ac44'),(144784,40493,'blocks_10_content_title',''),(144785,40493,'_blocks_10_content_title','field_64d237e8bb1e2'),(144786,40493,'blocks_10_content_heading','Frequently asked questions '),(144787,40493,'_blocks_10_content_heading','field_64d237e8bb1e3'),(144788,40493,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(144789,40493,'_blocks_10_content_text','field_64d237e8bb1e4'),(144790,40493,'blocks_10_content_actions',''),(144791,40493,'_blocks_10_content_actions','field_64d237e8bb1e5'),(144792,40493,'blocks_10_content_align','left'),(144793,40493,'_blocks_10_content_align','field_64d2443e6b6aa'),(144794,40493,'blocks_10_content',''),(144795,40493,'_blocks_10_content','field_64d237e8bb1e1'),(144796,40493,'blocks_10_accordion_content','faqs'),(144797,40493,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(144798,40493,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(144799,40493,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(144800,40493,'blocks_10_actions',''),(144801,40493,'_blocks_10_actions','field_61a746a817f7a'),(144802,39231,'blocks_7_acfe_flexible_toggle',''),(144803,39231,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(144804,39231,'blocks_7_acfe_flexible_layout_title','Icons'),(144805,39231,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(144806,39231,'blocks_7_options_theme','#b61234'),(144807,39231,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(144808,39231,'blocks_7_options_format','row'),(144809,39231,'_blocks_7_options_format','field_64bfde9a90690'),(144810,39231,'blocks_7_options',''),(144811,39231,'_blocks_7_options','field_64bfdd9b90684'),(144812,39231,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(144813,39231,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(144814,39231,'blocks_7_icon_row_items_0_label','Pay in full '),(144815,39231,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(144816,39231,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(144817,39231,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(144818,39231,'blocks_7_icon_row_items_1_icon','finance.svg'),(144819,39231,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(144820,39231,'blocks_7_icon_row_items_1_label','0% finance'),(144821,39231,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(144822,39231,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(144823,39231,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(144824,39231,'blocks_7_icon_row_items_2_icon','deposit.svg'),(144825,39231,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(144826,39231,'blocks_7_icon_row_items_2_label','Deposit & balance'),(144827,39231,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(144828,39231,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(144829,39231,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(144830,39231,'blocks_7_icon_row_items','3'),(144831,39231,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(144832,40494,'hide_hero','0'),(144833,40494,'_hide_hero','field_66a2380fcda39'),(144834,40494,'hero_title','Biomechanics and Pilates'),(144835,40494,'_hero_title','field_617571fe285e8'),(144836,40494,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(144837,40494,'_hero_text','field_6175723c285e9'),(144838,40494,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(144839,40494,'_hero_actions_0_button','field_61757281285eb'),(144840,40494,'hero_actions','1'),(144841,40494,'_hero_actions','field_61757270285ea'),(144842,40494,'hero_style','default'),(144843,40494,'_hero_style','field_62051d9dc5324'),(144844,40494,'_thumbnail_id','39243'),(144845,40494,'__thumbnail_id','field_617570855ddaf'),(144846,40494,'hero_image_pos_x','right'),(144847,40494,'_hero_image_pos_x','field_62ec3d05390bb'),(144848,40494,'hero_image_pos_y','top'),(144849,40494,'_hero_image_pos_y','field_62ec3d05390bc'),(144850,40494,'hero_image_pos',''),(144851,40494,'_hero_image_pos','field_62ec3d05390ba'),(144852,40494,'fft_hide_from_listings','0'),(144853,40494,'_fft_hide_from_listings','field_61f1320446ab2'),(144854,40494,'fft_page_format','default'),(144855,40494,'_fft_page_format','field_61ae213f1f218'),(144856,40494,'fft_hide_nav','0'),(144857,40494,'_fft_hide_nav','field_635bd5e43527c'),(144858,40494,'fft_hide_header_call_to_action','0'),(144859,40494,'_fft_hide_header_call_to_action','field_635bd6723527d'),(144860,40494,'fft_page_sitemap','0'),(144861,40494,'_fft_page_sitemap','field_61af9b34e8181'),(144862,40494,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(144863,40494,'_blocks','field_6176696113096'),(144864,40494,'blocks_0_acfe_flexible_toggle',''),(144865,40494,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(144866,40494,'blocks_0_acfe_flexible_layout_title','Icons'),(144867,40494,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(144868,40494,'blocks_0_options_theme','#b61234'),(144869,40494,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(144870,40494,'blocks_0_options_format','row'),(144871,40494,'_blocks_0_options_format','field_64bfde9a90690'),(144872,40494,'blocks_0_options',''),(144873,40494,'_blocks_0_options','field_64bfdd9b90684'),(144874,40494,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(144875,40494,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(144876,40494,'blocks_0_icon_row_items_0_label','Accreditation'),(144877,40494,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(144878,40494,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(144879,40494,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(144880,40494,'blocks_0_icon_row_items_1_icon','finance.svg'),(144881,40494,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(144882,40494,'blocks_0_icon_row_items_1_label','Flexible payment options'),(144883,40494,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(144884,40494,'blocks_0_icon_row_items_1_text','Including 0% finance'),(144885,40494,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(144886,40494,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(144887,40494,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(144888,40494,'blocks_0_icon_row_items_2_label','Earning potential'),(144889,40494,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(144890,40494,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(144891,40494,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(144892,40494,'blocks_0_icon_row_items','3'),(144893,40494,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(144894,40494,'blocks_1_acfe_flexible_toggle',''),(144895,40494,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(144896,40494,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(144897,40494,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(144898,40494,'blocks_1_options_theme','#ffffff'),(144899,40494,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(144900,40494,'blocks_1_options_reverse','0'),(144901,40494,'_blocks_1_options_reverse','field_61768049bb8ac'),(144902,40494,'blocks_1_options',''),(144903,40494,'_blocks_1_options','field_617682517c334'),(144904,40494,'blocks_1_split_5050_image','38037'),(144905,40494,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(144906,40494,'blocks_1_split_5050_video',''),(144907,40494,'_blocks_1_split_5050_video','field_6239f3160848a'),(144908,40494,'blocks_1_split_5050_content_title',''),(144909,40494,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(144910,40494,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(144911,40494,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(144912,40494,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(144913,40494,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(144914,40494,'blocks_1_split_5050_content_actions',''),(144915,40494,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(144916,40494,'blocks_1_split_5050_content',''),(144917,40494,'_blocks_1_split_5050_content','field_61767afceb8ba'),(144918,40494,'blocks_2_acfe_flexible_toggle',''),(144919,40494,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(144920,40494,'blocks_2_acfe_flexible_layout_title','Form'),(144921,40494,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(144922,40494,'blocks_2_row_content_format','standard'),(144923,40494,'_blocks_2_row_content_format','field_6481ead962881'),(144924,40494,'blocks_2_row_content_title',''),(144925,40494,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(144926,40494,'blocks_2_row_content_heading','Enquire Today'),(144927,40494,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(144928,40494,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(144929,40494,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(144930,40494,'blocks_2_row_content_actions',''),(144931,40494,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(144932,40494,'blocks_2_row_content',''),(144933,40494,'_blocks_2_row_content','field_61a0f5f5b3db0'),(144934,40494,'blocks_2_row_form',''),(144935,40494,'_blocks_2_row_form','field_61a4ff2c0b08e'),(144936,40494,'blocks_2_row_form_button_label',''),(144937,40494,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(144938,40494,'blocks_3_acfe_flexible_toggle',''),(144939,40494,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(144940,40494,'blocks_3_acfe_flexible_layout_title','Video'),(144941,40494,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(144942,40494,'blocks_3_size','large'),(144943,40494,'_blocks_3_size','field_6487038f297c1'),(144944,40494,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(144945,40494,'_blocks_3_row_content_title','field_64870132a865d'),(144946,40494,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(144947,40494,'_blocks_3_row_content_heading','field_64870142a865e'),(144948,40494,'blocks_3_row_content_text',''),(144949,40494,'_blocks_3_row_content_text','field_64870148a865f'),(144950,40494,'blocks_3_row_content',''),(144951,40494,'_blocks_3_row_content','field_6487008ba865c'),(144952,40494,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(144953,40494,'_blocks_3_video_src','field_6193c4a98ec07'),(144954,40494,'blocks_3_video_thumbnail',''),(144955,40494,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(144956,40494,'blocks_4_acfe_flexible_toggle',''),(144957,40494,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(144958,40494,'blocks_4_acfe_flexible_layout_title','Steps'),(144959,40494,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(144960,40494,'blocks_4_row_content_title',''),(144961,40494,'_blocks_4_row_content_title','field_64888cd1e26e0'),(144962,40494,'blocks_4_row_content_heading','Benefits of training with us'),(144963,40494,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(144964,40494,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(144965,40494,'_blocks_4_row_content_text','field_64888ce2e26e2'),(144966,40494,'blocks_4_row_content_actions',''),(144967,40494,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(144968,40494,'blocks_4_row_content',''),(144969,40494,'_blocks_4_row_content','field_64888cb0e26df'),(144970,40494,'blocks_4_steps_0_icon','progression.svg'),(144971,40494,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(144972,40494,'blocks_4_steps_0_title','Earning potential'),(144973,40494,'_blocks_4_steps_0_title','field_64888d94e26e7'),(144974,40494,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(144975,40494,'_blocks_4_steps_0_text','field_64888d99e26e8'),(144976,40494,'blocks_4_steps_1_icon','support.svg'),(144977,40494,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(144978,40494,'blocks_4_steps_1_title','Lifetime Learning Promise'),(144979,40494,'_blocks_4_steps_1_title','field_64888d94e26e7'),(144980,40494,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(144981,40494,'_blocks_4_steps_1_text','field_64888d99e26e8'),(144982,40494,'blocks_4_steps_2_icon','qualification.svg'),(144983,40494,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(144984,40494,'blocks_4_steps_2_title','Evidence based hands on learning'),(144985,40494,'_blocks_4_steps_2_title','field_64888d94e26e7'),(144986,40494,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(144987,40494,'_blocks_4_steps_2_text','field_64888d99e26e8'),(144988,40494,'blocks_4_steps_3_icon','leaders.svg'),(144989,40494,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(144990,40494,'blocks_4_steps_3_title','Stand out from the crowd'),(144991,40494,'_blocks_4_steps_3_title','field_64888d94e26e7'),(144992,40494,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(144993,40494,'_blocks_4_steps_3_text','field_64888d99e26e8'),(144994,40494,'blocks_4_steps','4'),(144995,40494,'_blocks_4_steps','field_64888d44e26e5'),(144996,40494,'blocks_5_acfe_flexible_toggle',''),(144997,40494,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(144998,40494,'blocks_5_acfe_flexible_layout_title','Tabs'),(144999,40494,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(145000,40494,'blocks_5_options_theme','#ffffff'),(145001,40494,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(145002,40494,'blocks_5_options',''),(145003,40494,'_blocks_5_options','field_6177cfcd8140f'),(145004,40494,'blocks_5_tabs_0_tab_label','What will I learn?'),(145005,40494,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(145006,40494,'blocks_5_tabs_0_tab_content_title',''),(145007,40494,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(145008,40494,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(145009,40494,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(145010,40494,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients:\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(145011,40494,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(145012,40494,'blocks_5_tabs_0_tab_content_actions',''),(145013,40494,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(145014,40494,'blocks_5_tabs_0_tab_content',''),(145015,40494,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(145016,40494,'blocks_5_tabs_0_tab_image','39076'),(145017,40494,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(145018,40494,'blocks_5_tabs_1_tab_label','What do I need?'),(145019,40494,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(145020,40494,'blocks_5_tabs_1_tab_content_title',''),(145021,40494,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(145022,40494,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(145023,40494,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(145024,40494,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(145025,40494,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(145026,40494,'blocks_5_tabs_1_tab_content_actions',''),(145027,40494,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(145028,40494,'blocks_5_tabs_1_tab_content',''),(145029,40494,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(145030,40494,'blocks_5_tabs_1_tab_image','40487'),(145031,40494,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(145032,40494,'blocks_5_tabs_2_tab_label','Where can I learn?'),(145033,40494,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(145034,40494,'blocks_5_tabs_2_tab_content_title',''),(145035,40494,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(145036,40494,'blocks_5_tabs_2_tab_content_heading','Locations'),(145037,40494,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(145038,40494,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(145039,40494,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(145040,40494,'blocks_5_tabs_2_tab_content_actions',''),(145041,40494,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(145042,40494,'blocks_5_tabs_2_tab_content',''),(145043,40494,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(145044,40494,'blocks_5_tabs_2_tab_image','39224'),(145045,40494,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(145046,40494,'blocks_5_tabs','3'),(145047,40494,'_blocks_5_tabs','field_6177cff281419'),(145048,40494,'blocks_6_acfe_flexible_toggle',''),(145049,40494,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(145050,40494,'blocks_6_acfe_flexible_layout_title','Text Block'),(145051,40494,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(145052,40494,'blocks_6_options_theme','#b61234'),(145053,40494,'_blocks_6_options_theme','field_6176830e2ad17'),(145054,40494,'blocks_6_options',''),(145055,40494,'_blocks_6_options','field_6176830e2ad16'),(145056,40494,'blocks_6_text_block_heading','Fees & Funding Options'),(145057,40494,'_blocks_6_text_block_heading','field_617669d413097'),(145058,40494,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(145059,40494,'_blocks_6_text_block_content','field_617669ec13098'),(145060,40494,'blocks_8_acfe_flexible_toggle',''),(145061,40494,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(145062,40494,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(145063,40494,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(145064,40494,'blocks_8_options_theme','#ffffff'),(145065,40494,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(145066,40494,'blocks_8_options_reverse','0'),(145067,40494,'_blocks_8_options_reverse','field_61768049bb8ac'),(145068,40494,'blocks_8_options',''),(145069,40494,'_blocks_8_options','field_617682517c334'),(145070,40494,'blocks_8_split_5050_image','40484'),(145071,40494,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(145072,40494,'blocks_8_split_5050_video',''),(145073,40494,'_blocks_8_split_5050_video','field_6239f3160848a'),(145074,40494,'blocks_8_split_5050_content_title',''),(145075,40494,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(145076,40494,'blocks_8_split_5050_content_heading','Why study this course?'),(145077,40494,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(145078,40494,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(145079,40494,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(145080,40494,'blocks_8_split_5050_content_actions',''),(145081,40494,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(145082,40494,'blocks_8_split_5050_content',''),(145083,40494,'_blocks_8_split_5050_content','field_61767afceb8ba'),(145084,40494,'blocks_9_acfe_flexible_toggle',''),(145085,40494,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(145086,40494,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(145087,40494,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(145088,40494,'blocks_9_testimonial_slider_content_title',''),(145089,40494,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(145090,40494,'blocks_9_testimonial_slider_content_heading','Testimonials'),(145091,40494,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(145092,40494,'blocks_9_testimonial_slider_content_text',''),(145093,40494,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(145094,40494,'blocks_9_testimonial_slider_content_actions',''),(145095,40494,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(145096,40494,'blocks_9_testimonial_slider_content',''),(145097,40494,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(145098,40494,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(145099,40494,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(145100,40494,'blocks_9_testimonial_slider_ambassador_bool','0'),(145101,40494,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(145102,40494,'blocks_10_acfe_flexible_toggle',''),(145103,40494,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(145104,40494,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(145105,40494,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(145106,40494,'blocks_10_options_theme','#ffffff'),(145107,40494,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(145108,40494,'blocks_10_options_state','0'),(145109,40494,'_blocks_10_options_state','field_6239fcb7508c5'),(145110,40494,'blocks_10_options',''),(145111,40494,'_blocks_10_options','field_6177e2991ac44'),(145112,40494,'blocks_10_content_title',''),(145113,40494,'_blocks_10_content_title','field_64d237e8bb1e2'),(145114,40494,'blocks_10_content_heading','Frequently asked questions '),(145115,40494,'_blocks_10_content_heading','field_64d237e8bb1e3'),(145116,40494,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(145117,40494,'_blocks_10_content_text','field_64d237e8bb1e4'),(145118,40494,'blocks_10_content_actions',''),(145119,40494,'_blocks_10_content_actions','field_64d237e8bb1e5'),(145120,40494,'blocks_10_content_align','left'),(145121,40494,'_blocks_10_content_align','field_64d2443e6b6aa'),(145122,40494,'blocks_10_content',''),(145123,40494,'_blocks_10_content','field_64d237e8bb1e1'),(145124,40494,'blocks_10_accordion_content','faqs'),(145125,40494,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(145126,40494,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(145127,40494,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(145128,40494,'blocks_10_actions',''),(145129,40494,'_blocks_10_actions','field_61a746a817f7a'),(145130,40494,'blocks_7_acfe_flexible_toggle',''),(145131,40494,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(145132,40494,'blocks_7_acfe_flexible_layout_title','Icons'),(145133,40494,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(145134,40494,'blocks_7_options_theme','#ffffff'),(145135,40494,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(145136,40494,'blocks_7_options_format','row'),(145137,40494,'_blocks_7_options_format','field_64bfde9a90690'),(145138,40494,'blocks_7_options',''),(145139,40494,'_blocks_7_options','field_64bfdd9b90684'),(145140,40494,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(145141,40494,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(145142,40494,'blocks_7_icon_row_items_0_label','Pay in full '),(145143,40494,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(145144,40494,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(145145,40494,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(145146,40494,'blocks_7_icon_row_items_1_icon','finance.svg'),(145147,40494,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(145148,40494,'blocks_7_icon_row_items_1_label','0% finance'),(145149,40494,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(145150,40494,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(145151,40494,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(145152,40494,'blocks_7_icon_row_items_2_icon','deposit.svg'),(145153,40494,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(145154,40494,'blocks_7_icon_row_items_2_label','Deposit & balance'),(145155,40494,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(145156,40494,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(145157,40494,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(145158,40494,'blocks_7_icon_row_items','3'),(145159,40494,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(145160,39249,'blocks_8_acfe_flexible_toggle',''),(145161,39249,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(145162,39249,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(145163,39249,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(145164,39249,'blocks_8_options_theme','#ffffff'),(145165,39249,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(145166,39249,'blocks_8_options_state','0'),(145167,39249,'_blocks_8_options_state','field_6239fcb7508c5'),(145168,39249,'blocks_8_options',''),(145169,39249,'_blocks_8_options','field_6177e2991ac44'),(145170,39249,'blocks_8_content_title',''),(145171,39249,'_blocks_8_content_title','field_64d237e8bb1e2'),(145172,39249,'blocks_8_content_heading','Frequently asked questions '),(145173,39249,'_blocks_8_content_heading','field_64d237e8bb1e3'),(145174,39249,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(145175,39249,'_blocks_8_content_text','field_64d237e8bb1e4'),(145176,39249,'blocks_8_content_actions',''),(145177,39249,'_blocks_8_content_actions','field_64d237e8bb1e5'),(145178,39249,'blocks_8_content_align','left'),(145179,39249,'_blocks_8_content_align','field_64d2443e6b6aa'),(145180,39249,'blocks_8_content',''),(145181,39249,'_blocks_8_content','field_64d237e8bb1e1'),(145182,39249,'blocks_8_accordion_content','faqs'),(145183,39249,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(145184,39249,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(145185,39249,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(145186,39249,'blocks_8_actions',''),(145187,39249,'_blocks_8_actions','field_61a746a817f7a'),(145188,39249,'blocks_9_acfe_flexible_toggle',''),(145189,39249,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(145190,39249,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(145191,39249,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(145192,39249,'blocks_9_testimonial_slider_content_title',''),(145193,39249,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(145194,39249,'blocks_9_testimonial_slider_content_heading','Testimonials'),(145195,39249,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(145196,39249,'blocks_9_testimonial_slider_content_text',''),(145197,39249,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(145198,39249,'blocks_9_testimonial_slider_content_actions',''),(145199,39249,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(145200,39249,'blocks_9_testimonial_slider_content',''),(145201,39249,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(145202,39249,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(145203,39249,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(145204,39249,'blocks_9_testimonial_slider_ambassador_bool','0'),(145205,39249,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(145206,40495,'hide_hero','0'),(145207,40495,'_hide_hero','field_66a2380fcda39'),(145208,40495,'hero_title','Biomechanics and Sports Coaches '),(145209,40495,'_hero_title','field_617571fe285e8'),(145210,40495,'hero_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(145211,40495,'_hero_text','field_6175723c285e9'),(145212,40495,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(145213,40495,'_hero_actions_0_button','field_61757281285eb'),(145214,40495,'hero_actions','1'),(145215,40495,'_hero_actions','field_61757270285ea'),(145216,40495,'hero_style','default'),(145217,40495,'_hero_style','field_62051d9dc5324'),(145218,40495,'_thumbnail_id','39251'),(145219,40495,'__thumbnail_id','field_617570855ddaf'),(145220,40495,'hero_image_pos_x','right'),(145221,40495,'_hero_image_pos_x','field_62ec3d05390bb'),(145222,40495,'hero_image_pos_y','top'),(145223,40495,'_hero_image_pos_y','field_62ec3d05390bc'),(145224,40495,'hero_image_pos',''),(145225,40495,'_hero_image_pos','field_62ec3d05390ba'),(145226,40495,'fft_hide_from_listings','0'),(145227,40495,'_fft_hide_from_listings','field_61f1320446ab2'),(145228,40495,'fft_page_format','default'),(145229,40495,'_fft_page_format','field_61ae213f1f218'),(145230,40495,'fft_hide_nav','0'),(145231,40495,'_fft_hide_nav','field_635bd5e43527c'),(145232,40495,'fft_hide_header_call_to_action','0'),(145233,40495,'_fft_hide_header_call_to_action','field_635bd6723527d'),(145234,40495,'fft_page_sitemap','0'),(145235,40495,'_fft_page_sitemap','field_61af9b34e8181'),(145236,40495,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"steps\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:10:\"accordions\";i:9;s:18:\"testimonial_slider\";}'),(145237,40495,'_blocks','field_6176696113096'),(145238,40495,'blocks_0_acfe_flexible_toggle',''),(145239,40495,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(145240,40495,'blocks_0_acfe_flexible_layout_title','Template'),(145241,40495,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(145242,40495,'blocks_0_template','39087'),(145243,40495,'_blocks_0_template','field_617bdd570fe01'),(145244,40495,'blocks_4_acfe_flexible_toggle',''),(145245,40495,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(145246,40495,'blocks_4_acfe_flexible_layout_title','Tabs'),(145247,40495,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(145248,40495,'blocks_4_options_theme','#ffffff'),(145249,40495,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(145250,40495,'blocks_4_options',''),(145251,40495,'_blocks_4_options','field_6177cfcd8140f'),(145252,40495,'blocks_4_tabs_0_tab_label','What will I learn ?'),(145253,40495,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(145254,40495,'blocks_4_tabs_0_tab_content_title',''),(145255,40495,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(145256,40495,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(145257,40495,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(145258,40495,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(145259,40495,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(145260,40495,'blocks_4_tabs_0_tab_content_actions',''),(145261,40495,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(145262,40495,'blocks_4_tabs_0_tab_content',''),(145263,40495,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(145264,40495,'blocks_4_tabs_0_tab_image','39076'),(145265,40495,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(145266,40495,'blocks_4_tabs_1_tab_label','What do I need ?'),(145267,40495,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(145268,40495,'blocks_4_tabs_1_tab_content_title',''),(145269,40495,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(145270,40495,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(145271,40495,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(145272,40495,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(145273,40495,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(145274,40495,'blocks_4_tabs_1_tab_content_actions',''),(145275,40495,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(145276,40495,'blocks_4_tabs_1_tab_content',''),(145277,40495,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(145278,40495,'blocks_4_tabs_1_tab_image','39223'),(145279,40495,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(145280,40495,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(145281,40495,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(145282,40495,'blocks_4_tabs_2_tab_content_title',''),(145283,40495,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(145284,40495,'blocks_4_tabs_2_tab_content_heading','Locations'),(145285,40495,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(145286,40495,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(145287,40495,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(145288,40495,'blocks_4_tabs_2_tab_content_actions',''),(145289,40495,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(145290,40495,'blocks_4_tabs_2_tab_content',''),(145291,40495,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(145292,40495,'blocks_4_tabs_2_tab_image','39224'),(145293,40495,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(145294,40495,'blocks_4_tabs','3'),(145295,40495,'_blocks_4_tabs','field_6177cff281419'),(145296,40495,'blocks_5_acfe_flexible_toggle',''),(145297,40495,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(145298,40495,'blocks_5_acfe_flexible_layout_title','Text Block'),(145299,40495,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(145300,40495,'blocks_5_options_theme','#b61234'),(145301,40495,'_blocks_5_options_theme','field_6176830e2ad17'),(145302,40495,'blocks_5_options',''),(145303,40495,'_blocks_5_options','field_6176830e2ad16'),(145304,40495,'blocks_5_text_block_heading','Fees & Funding Options'),(145305,40495,'_blocks_5_text_block_heading','field_617669d413097'),(145306,40495,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(145307,40495,'_blocks_5_text_block_content','field_617669ec13098'),(145308,40495,'blocks_6_acfe_flexible_toggle',''),(145309,40495,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(145310,40495,'blocks_6_acfe_flexible_layout_title','Icons'),(145311,40495,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(145312,40495,'blocks_6_options_theme','#b61234'),(145313,40495,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(145314,40495,'blocks_6_options_format','row'),(145315,40495,'_blocks_6_options_format','field_64bfde9a90690'),(145316,40495,'blocks_6_options',''),(145317,40495,'_blocks_6_options','field_64bfdd9b90684'),(145318,40495,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(145319,40495,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(145320,40495,'blocks_6_icon_row_items_0_label','Pay in Full'),(145321,40495,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(145322,40495,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(145323,40495,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(145324,40495,'blocks_6_icon_row_items_1_icon','finance.svg'),(145325,40495,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(145326,40495,'blocks_6_icon_row_items_1_label','0% finance'),(145327,40495,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(145328,40495,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(145329,40495,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(145330,40495,'blocks_6_icon_row_items_2_icon','deposit.svg'),(145331,40495,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(145332,40495,'blocks_6_icon_row_items_2_label','Deposit & balance'),(145333,40495,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(145334,40495,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(145335,40495,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(145336,40495,'blocks_6_icon_row_items','3'),(145337,40495,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(145338,40495,'blocks_1_acfe_flexible_toggle',''),(145339,40495,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(145340,40495,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(145341,40495,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(145342,40495,'blocks_1_options_theme','#ffffff'),(145343,40495,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(145344,40495,'blocks_1_options_reverse','0'),(145345,40495,'_blocks_1_options_reverse','field_61768049bb8ac'),(145346,40495,'blocks_1_options',''),(145347,40495,'_blocks_1_options','field_617682517c334'),(145348,40495,'blocks_1_split_5050_image','39252'),(145349,40495,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(145350,40495,'blocks_1_split_5050_video',''),(145351,40495,'_blocks_1_split_5050_video','field_6239f3160848a'),(145352,40495,'blocks_1_split_5050_content_title',''),(145353,40495,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(145354,40495,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports coach'),(145355,40495,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(145356,40495,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from, injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(145357,40495,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(145358,40495,'blocks_1_split_5050_content_actions',''),(145359,40495,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(145360,40495,'blocks_1_split_5050_content',''),(145361,40495,'_blocks_1_split_5050_content','field_61767afceb8ba'),(145362,40495,'blocks_2_acfe_flexible_toggle',''),(145363,40495,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(145364,40495,'blocks_2_acfe_flexible_layout_title','Form'),(145365,40495,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(145366,40495,'blocks_2_row_content_format','standard'),(145367,40495,'_blocks_2_row_content_format','field_6481ead962881'),(145368,40495,'blocks_2_row_content_title',''),(145369,40495,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(145370,40495,'blocks_2_row_content_heading','Enquire Today'),(145371,40495,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(145372,40495,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(145373,40495,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(145374,40495,'blocks_2_row_content_actions',''),(145375,40495,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(145376,40495,'blocks_2_row_content',''),(145377,40495,'_blocks_2_row_content','field_61a0f5f5b3db0'),(145378,40495,'blocks_2_row_form',''),(145379,40495,'_blocks_2_row_form','field_61a4ff2c0b08e'),(145380,40495,'blocks_2_row_form_button_label',''),(145381,40495,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(145382,40495,'blocks_3_acfe_flexible_toggle',''),(145383,40495,'_blocks_3_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(145384,40495,'blocks_3_acfe_flexible_layout_title','Steps'),(145385,40495,'_blocks_3_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(145386,40495,'blocks_3_row_content_title',''),(145387,40495,'_blocks_3_row_content_title','field_64888cd1e26e0'),(145388,40495,'blocks_3_row_content_heading','Benefits of training with us'),(145389,40495,'_blocks_3_row_content_heading','field_64888cd9e26e1'),(145390,40495,'blocks_3_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(145391,40495,'_blocks_3_row_content_text','field_64888ce2e26e2'),(145392,40495,'blocks_3_row_content_actions',''),(145393,40495,'_blocks_3_row_content_actions','field_64888cf5e26e3'),(145394,40495,'blocks_3_row_content',''),(145395,40495,'_blocks_3_row_content','field_64888cb0e26df'),(145396,40495,'blocks_3_steps_0_icon','progression.svg'),(145397,40495,'_blocks_3_steps_0_icon','field_64888d53e26e6'),(145398,40495,'blocks_3_steps_0_title','Earning potential'),(145399,40495,'_blocks_3_steps_0_title','field_64888d94e26e7'),(145400,40495,'blocks_3_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(145401,40495,'_blocks_3_steps_0_text','field_64888d99e26e8'),(145402,40495,'blocks_3_steps_1_icon','support.svg'),(145403,40495,'_blocks_3_steps_1_icon','field_64888d53e26e6'),(145404,40495,'blocks_3_steps_1_title','Lifetime Learning Promise'),(145405,40495,'_blocks_3_steps_1_title','field_64888d94e26e7'),(145406,40495,'blocks_3_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(145407,40495,'_blocks_3_steps_1_text','field_64888d99e26e8'),(145408,40495,'blocks_3_steps_2_icon','qualification.svg'),(145409,40495,'_blocks_3_steps_2_icon','field_64888d53e26e6'),(145410,40495,'blocks_3_steps_2_title','Evidence based hands on learning'),(145411,40495,'_blocks_3_steps_2_title','field_64888d94e26e7'),(145412,40495,'blocks_3_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(145413,40495,'_blocks_3_steps_2_text','field_64888d99e26e8'),(145414,40495,'blocks_3_steps_3_icon','leaders.svg'),(145415,40495,'_blocks_3_steps_3_icon','field_64888d53e26e6'),(145416,40495,'blocks_3_steps_3_title','Stand out from the crowd'),(145417,40495,'_blocks_3_steps_3_title','field_64888d94e26e7'),(145418,40495,'blocks_3_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(145419,40495,'_blocks_3_steps_3_text','field_64888d99e26e8'),(145420,40495,'blocks_3_steps','4'),(145421,40495,'_blocks_3_steps','field_64888d44e26e5'),(145422,40495,'blocks_7_acfe_flexible_toggle',''),(145423,40495,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(145424,40495,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(145425,40495,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(145426,40495,'blocks_7_options_theme','#ffffff'),(145427,40495,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(145428,40495,'blocks_7_options_reverse','0'),(145429,40495,'_blocks_7_options_reverse','field_61768049bb8ac'),(145430,40495,'blocks_7_options',''),(145431,40495,'_blocks_7_options','field_617682517c334'),(145432,40495,'blocks_7_split_5050_image','40491'),(145433,40495,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(145434,40495,'blocks_7_split_5050_video',''),(145435,40495,'_blocks_7_split_5050_video','field_6239f3160848a'),(145436,40495,'blocks_7_split_5050_content_title',''),(145437,40495,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(145438,40495,'blocks_7_split_5050_content_heading','Why study this course ?'),(145439,40495,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(145440,40495,'blocks_7_split_5050_content_text','<ul>\r\n 	<li style=\"text-align: left;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: left;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: left;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: left;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: left;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(145441,40495,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(145442,40495,'blocks_7_split_5050_content_actions',''),(145443,40495,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(145444,40495,'blocks_7_split_5050_content',''),(145445,40495,'_blocks_7_split_5050_content','field_61767afceb8ba'),(145446,40495,'blocks_8_acfe_flexible_toggle',''),(145447,40495,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(145448,40495,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(145449,40495,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(145450,40495,'blocks_8_options_theme','#ffffff'),(145451,40495,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(145452,40495,'blocks_8_options_state','0'),(145453,40495,'_blocks_8_options_state','field_6239fcb7508c5'),(145454,40495,'blocks_8_options',''),(145455,40495,'_blocks_8_options','field_6177e2991ac44'),(145456,40495,'blocks_8_content_title',''),(145457,40495,'_blocks_8_content_title','field_64d237e8bb1e2'),(145458,40495,'blocks_8_content_heading','Frequently asked questions '),(145459,40495,'_blocks_8_content_heading','field_64d237e8bb1e3'),(145460,40495,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(145461,40495,'_blocks_8_content_text','field_64d237e8bb1e4'),(145462,40495,'blocks_8_content_actions',''),(145463,40495,'_blocks_8_content_actions','field_64d237e8bb1e5'),(145464,40495,'blocks_8_content_align','left'),(145465,40495,'_blocks_8_content_align','field_64d2443e6b6aa'),(145466,40495,'blocks_8_content',''),(145467,40495,'_blocks_8_content','field_64d237e8bb1e1'),(145468,40495,'blocks_8_accordion_content','faqs'),(145469,40495,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(145470,40495,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(145471,40495,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(145472,40495,'blocks_8_actions',''),(145473,40495,'_blocks_8_actions','field_61a746a817f7a'),(145474,40495,'blocks_9_acfe_flexible_toggle',''),(145475,40495,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(145476,40495,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(145477,40495,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(145478,40495,'blocks_9_testimonial_slider_content_title',''),(145479,40495,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(145480,40495,'blocks_9_testimonial_slider_content_heading','Testimonials'),(145481,40495,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(145482,40495,'blocks_9_testimonial_slider_content_text',''),(145483,40495,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(145484,40495,'blocks_9_testimonial_slider_content_actions',''),(145485,40495,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(145486,40495,'blocks_9_testimonial_slider_content',''),(145487,40495,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(145488,40495,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(145489,40495,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(145490,40495,'blocks_9_testimonial_slider_ambassador_bool','0'),(145491,40495,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(145492,39231,'blocks_9_acfe_flexible_toggle',''),(145493,39231,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(145494,39231,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(145495,39231,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(145496,39231,'blocks_9_options_theme','#ffffff'),(145497,39231,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(145498,39231,'blocks_9_options_state','0'),(145499,39231,'_blocks_9_options_state','field_6239fcb7508c5'),(145500,39231,'blocks_9_options',''),(145501,39231,'_blocks_9_options','field_6177e2991ac44'),(145502,39231,'blocks_9_content_title',''),(145503,39231,'_blocks_9_content_title','field_64d237e8bb1e2'),(145504,39231,'blocks_9_content_heading','Frequently asked questions '),(145505,39231,'_blocks_9_content_heading','field_64d237e8bb1e3'),(145506,39231,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(145507,39231,'_blocks_9_content_text','field_64d237e8bb1e4'),(145508,39231,'blocks_9_content_actions',''),(145509,39231,'_blocks_9_content_actions','field_64d237e8bb1e5'),(145510,39231,'blocks_9_content_align','left'),(145511,39231,'_blocks_9_content_align','field_64d2443e6b6aa'),(145512,39231,'blocks_9_content',''),(145513,39231,'_blocks_9_content','field_64d237e8bb1e1'),(145514,39231,'blocks_9_accordion_content','faqs'),(145515,39231,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(145516,39231,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(145517,39231,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(145518,39231,'blocks_9_actions',''),(145519,39231,'_blocks_9_actions','field_61a746a817f7a'),(145520,39231,'blocks_10_acfe_flexible_toggle',''),(145521,39231,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(145522,39231,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(145523,39231,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(145524,39231,'blocks_10_testimonial_slider_content_title',''),(145525,39231,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(145526,39231,'blocks_10_testimonial_slider_content_heading','Testimonials'),(145527,39231,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(145528,39231,'blocks_10_testimonial_slider_content_text',''),(145529,39231,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(145530,39231,'blocks_10_testimonial_slider_content_actions',''),(145531,39231,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(145532,39231,'blocks_10_testimonial_slider_content',''),(145533,39231,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(145534,39231,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(145535,39231,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(145536,39231,'blocks_10_testimonial_slider_ambassador_bool','0'),(145537,39231,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(145538,40496,'hide_hero','0'),(145539,40496,'_hide_hero','field_66a2380fcda39'),(145540,40496,'hero_title','Biomechanics and Pilates'),(145541,40496,'_hero_title','field_617571fe285e8'),(145542,40496,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(145543,40496,'_hero_text','field_6175723c285e9'),(145544,40496,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(145545,40496,'_hero_actions_0_button','field_61757281285eb'),(145546,40496,'hero_actions','1'),(145547,40496,'_hero_actions','field_61757270285ea'),(145548,40496,'hero_style','default'),(145549,40496,'_hero_style','field_62051d9dc5324'),(145550,40496,'_thumbnail_id','39243'),(145551,40496,'__thumbnail_id','field_617570855ddaf'),(145552,40496,'hero_image_pos_x','right'),(145553,40496,'_hero_image_pos_x','field_62ec3d05390bb'),(145554,40496,'hero_image_pos_y','top'),(145555,40496,'_hero_image_pos_y','field_62ec3d05390bc'),(145556,40496,'hero_image_pos',''),(145557,40496,'_hero_image_pos','field_62ec3d05390ba'),(145558,40496,'fft_hide_from_listings','0'),(145559,40496,'_fft_hide_from_listings','field_61f1320446ab2'),(145560,40496,'fft_page_format','default'),(145561,40496,'_fft_page_format','field_61ae213f1f218'),(145562,40496,'fft_hide_nav','0'),(145563,40496,'_fft_hide_nav','field_635bd5e43527c'),(145564,40496,'fft_hide_header_call_to_action','0'),(145565,40496,'_fft_hide_header_call_to_action','field_635bd6723527d'),(145566,40496,'fft_page_sitemap','0'),(145567,40496,'_fft_page_sitemap','field_61af9b34e8181'),(145568,40496,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:18:\"testimonial_slider\";}'),(145569,40496,'_blocks','field_6176696113096'),(145570,40496,'blocks_0_acfe_flexible_toggle',''),(145571,40496,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(145572,40496,'blocks_0_acfe_flexible_layout_title','Icons'),(145573,40496,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(145574,40496,'blocks_0_options_theme','#b61234'),(145575,40496,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(145576,40496,'blocks_0_options_format','row'),(145577,40496,'_blocks_0_options_format','field_64bfde9a90690'),(145578,40496,'blocks_0_options',''),(145579,40496,'_blocks_0_options','field_64bfdd9b90684'),(145580,40496,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(145581,40496,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(145582,40496,'blocks_0_icon_row_items_0_label','Accreditation'),(145583,40496,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(145584,40496,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(145585,40496,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(145586,40496,'blocks_0_icon_row_items_1_icon','finance.svg'),(145587,40496,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(145588,40496,'blocks_0_icon_row_items_1_label','Flexible payment options'),(145589,40496,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(145590,40496,'blocks_0_icon_row_items_1_text','Including 0% finance'),(145591,40496,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(145592,40496,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(145593,40496,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(145594,40496,'blocks_0_icon_row_items_2_label','Earning potential'),(145595,40496,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(145596,40496,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(145597,40496,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(145598,40496,'blocks_0_icon_row_items','3'),(145599,40496,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(145600,40496,'blocks_1_acfe_flexible_toggle',''),(145601,40496,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(145602,40496,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(145603,40496,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(145604,40496,'blocks_1_options_theme','#ffffff'),(145605,40496,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(145606,40496,'blocks_1_options_reverse','0'),(145607,40496,'_blocks_1_options_reverse','field_61768049bb8ac'),(145608,40496,'blocks_1_options',''),(145609,40496,'_blocks_1_options','field_617682517c334'),(145610,40496,'blocks_1_split_5050_image','38037'),(145611,40496,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(145612,40496,'blocks_1_split_5050_video',''),(145613,40496,'_blocks_1_split_5050_video','field_6239f3160848a'),(145614,40496,'blocks_1_split_5050_content_title',''),(145615,40496,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(145616,40496,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(145617,40496,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(145618,40496,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(145619,40496,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(145620,40496,'blocks_1_split_5050_content_actions',''),(145621,40496,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(145622,40496,'blocks_1_split_5050_content',''),(145623,40496,'_blocks_1_split_5050_content','field_61767afceb8ba'),(145624,40496,'blocks_2_acfe_flexible_toggle',''),(145625,40496,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(145626,40496,'blocks_2_acfe_flexible_layout_title','Form'),(145627,40496,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(145628,40496,'blocks_2_row_content_format','standard'),(145629,40496,'_blocks_2_row_content_format','field_6481ead962881'),(145630,40496,'blocks_2_row_content_title',''),(145631,40496,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(145632,40496,'blocks_2_row_content_heading','Enquire Today'),(145633,40496,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(145634,40496,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(145635,40496,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(145636,40496,'blocks_2_row_content_actions',''),(145637,40496,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(145638,40496,'blocks_2_row_content',''),(145639,40496,'_blocks_2_row_content','field_61a0f5f5b3db0'),(145640,40496,'blocks_2_row_form',''),(145641,40496,'_blocks_2_row_form','field_61a4ff2c0b08e'),(145642,40496,'blocks_2_row_form_button_label',''),(145643,40496,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(145644,40496,'blocks_3_acfe_flexible_toggle',''),(145645,40496,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(145646,40496,'blocks_3_acfe_flexible_layout_title','Video'),(145647,40496,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(145648,40496,'blocks_3_size','large'),(145649,40496,'_blocks_3_size','field_6487038f297c1'),(145650,40496,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(145651,40496,'_blocks_3_row_content_title','field_64870132a865d'),(145652,40496,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(145653,40496,'_blocks_3_row_content_heading','field_64870142a865e'),(145654,40496,'blocks_3_row_content_text',''),(145655,40496,'_blocks_3_row_content_text','field_64870148a865f'),(145656,40496,'blocks_3_row_content',''),(145657,40496,'_blocks_3_row_content','field_6487008ba865c'),(145658,40496,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(145659,40496,'_blocks_3_video_src','field_6193c4a98ec07'),(145660,40496,'blocks_3_video_thumbnail',''),(145661,40496,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(145662,40496,'blocks_4_acfe_flexible_toggle',''),(145663,40496,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(145664,40496,'blocks_4_acfe_flexible_layout_title','Steps'),(145665,40496,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(145666,40496,'blocks_4_row_content_title',''),(145667,40496,'_blocks_4_row_content_title','field_64888cd1e26e0'),(145668,40496,'blocks_4_row_content_heading','Benefits of training with us'),(145669,40496,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(145670,40496,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(145671,40496,'_blocks_4_row_content_text','field_64888ce2e26e2'),(145672,40496,'blocks_4_row_content_actions',''),(145673,40496,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(145674,40496,'blocks_4_row_content',''),(145675,40496,'_blocks_4_row_content','field_64888cb0e26df'),(145676,40496,'blocks_4_steps_0_icon','progression.svg'),(145677,40496,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(145678,40496,'blocks_4_steps_0_title','Earning potential'),(145679,40496,'_blocks_4_steps_0_title','field_64888d94e26e7'),(145680,40496,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(145681,40496,'_blocks_4_steps_0_text','field_64888d99e26e8'),(145682,40496,'blocks_4_steps_1_icon','support.svg'),(145683,40496,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(145684,40496,'blocks_4_steps_1_title','Lifetime Learning Promise'),(145685,40496,'_blocks_4_steps_1_title','field_64888d94e26e7'),(145686,40496,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(145687,40496,'_blocks_4_steps_1_text','field_64888d99e26e8'),(145688,40496,'blocks_4_steps_2_icon','qualification.svg'),(145689,40496,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(145690,40496,'blocks_4_steps_2_title','Evidence based hands on learning'),(145691,40496,'_blocks_4_steps_2_title','field_64888d94e26e7'),(145692,40496,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(145693,40496,'_blocks_4_steps_2_text','field_64888d99e26e8'),(145694,40496,'blocks_4_steps_3_icon','leaders.svg'),(145695,40496,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(145696,40496,'blocks_4_steps_3_title','Stand out from the crowd'),(145697,40496,'_blocks_4_steps_3_title','field_64888d94e26e7'),(145698,40496,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(145699,40496,'_blocks_4_steps_3_text','field_64888d99e26e8'),(145700,40496,'blocks_4_steps','4'),(145701,40496,'_blocks_4_steps','field_64888d44e26e5'),(145702,40496,'blocks_5_acfe_flexible_toggle',''),(145703,40496,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(145704,40496,'blocks_5_acfe_flexible_layout_title','Tabs'),(145705,40496,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(145706,40496,'blocks_5_options_theme','#ffffff'),(145707,40496,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(145708,40496,'blocks_5_options',''),(145709,40496,'_blocks_5_options','field_6177cfcd8140f'),(145710,40496,'blocks_5_tabs_0_tab_label','What will I learn?'),(145711,40496,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(145712,40496,'blocks_5_tabs_0_tab_content_title',''),(145713,40496,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(145714,40496,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(145715,40496,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(145716,40496,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients:\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(145717,40496,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(145718,40496,'blocks_5_tabs_0_tab_content_actions',''),(145719,40496,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(145720,40496,'blocks_5_tabs_0_tab_content',''),(145721,40496,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(145722,40496,'blocks_5_tabs_0_tab_image','39076'),(145723,40496,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(145724,40496,'blocks_5_tabs_1_tab_label','What do I need?'),(145725,40496,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(145726,40496,'blocks_5_tabs_1_tab_content_title',''),(145727,40496,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(145728,40496,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(145729,40496,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(145730,40496,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(145731,40496,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(145732,40496,'blocks_5_tabs_1_tab_content_actions',''),(145733,40496,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(145734,40496,'blocks_5_tabs_1_tab_content',''),(145735,40496,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(145736,40496,'blocks_5_tabs_1_tab_image','40487'),(145737,40496,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(145738,40496,'blocks_5_tabs_2_tab_label','Where can I learn?'),(145739,40496,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(145740,40496,'blocks_5_tabs_2_tab_content_title',''),(145741,40496,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(145742,40496,'blocks_5_tabs_2_tab_content_heading','Locations'),(145743,40496,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(145744,40496,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(145745,40496,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(145746,40496,'blocks_5_tabs_2_tab_content_actions',''),(145747,40496,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(145748,40496,'blocks_5_tabs_2_tab_content',''),(145749,40496,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(145750,40496,'blocks_5_tabs_2_tab_image','39224'),(145751,40496,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(145752,40496,'blocks_5_tabs','3'),(145753,40496,'_blocks_5_tabs','field_6177cff281419'),(145754,40496,'blocks_6_acfe_flexible_toggle',''),(145755,40496,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(145756,40496,'blocks_6_acfe_flexible_layout_title','Text Block'),(145757,40496,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(145758,40496,'blocks_6_options_theme','#b61234'),(145759,40496,'_blocks_6_options_theme','field_6176830e2ad17'),(145760,40496,'blocks_6_options',''),(145761,40496,'_blocks_6_options','field_6176830e2ad16'),(145762,40496,'blocks_6_text_block_heading','Fees & Funding Options'),(145763,40496,'_blocks_6_text_block_heading','field_617669d413097'),(145764,40496,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(145765,40496,'_blocks_6_text_block_content','field_617669ec13098'),(145766,40496,'blocks_8_acfe_flexible_toggle',''),(145767,40496,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(145768,40496,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(145769,40496,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(145770,40496,'blocks_8_options_theme','#ffffff'),(145771,40496,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(145772,40496,'blocks_8_options_reverse','0'),(145773,40496,'_blocks_8_options_reverse','field_61768049bb8ac'),(145774,40496,'blocks_8_options',''),(145775,40496,'_blocks_8_options','field_617682517c334'),(145776,40496,'blocks_8_split_5050_image','40484'),(145777,40496,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(145778,40496,'blocks_8_split_5050_video',''),(145779,40496,'_blocks_8_split_5050_video','field_6239f3160848a'),(145780,40496,'blocks_8_split_5050_content_title',''),(145781,40496,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(145782,40496,'blocks_8_split_5050_content_heading','Why study this course?'),(145783,40496,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(145784,40496,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(145785,40496,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(145786,40496,'blocks_8_split_5050_content_actions',''),(145787,40496,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(145788,40496,'blocks_8_split_5050_content',''),(145789,40496,'_blocks_8_split_5050_content','field_61767afceb8ba'),(145790,40496,'blocks_7_acfe_flexible_toggle',''),(145791,40496,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(145792,40496,'blocks_7_acfe_flexible_layout_title','Icons'),(145793,40496,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(145794,40496,'blocks_7_options_theme','#ffffff'),(145795,40496,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(145796,40496,'blocks_7_options_format','row'),(145797,40496,'_blocks_7_options_format','field_64bfde9a90690'),(145798,40496,'blocks_7_options',''),(145799,40496,'_blocks_7_options','field_64bfdd9b90684'),(145800,40496,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(145801,40496,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(145802,40496,'blocks_7_icon_row_items_0_label','Pay in full '),(145803,40496,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(145804,40496,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(145805,40496,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(145806,40496,'blocks_7_icon_row_items_1_icon','finance.svg'),(145807,40496,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(145808,40496,'blocks_7_icon_row_items_1_label','0% finance'),(145809,40496,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(145810,40496,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(145811,40496,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(145812,40496,'blocks_7_icon_row_items_2_icon','deposit.svg'),(145813,40496,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(145814,40496,'blocks_7_icon_row_items_2_label','Deposit & balance'),(145815,40496,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(145816,40496,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(145817,40496,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(145818,40496,'blocks_7_icon_row_items','3'),(145819,40496,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(145820,40496,'blocks_9_acfe_flexible_toggle',''),(145821,40496,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(145822,40496,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(145823,40496,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(145824,40496,'blocks_9_options_theme','#ffffff'),(145825,40496,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(145826,40496,'blocks_9_options_state','0'),(145827,40496,'_blocks_9_options_state','field_6239fcb7508c5'),(145828,40496,'blocks_9_options',''),(145829,40496,'_blocks_9_options','field_6177e2991ac44'),(145830,40496,'blocks_9_content_title',''),(145831,40496,'_blocks_9_content_title','field_64d237e8bb1e2'),(145832,40496,'blocks_9_content_heading','Frequently asked questions '),(145833,40496,'_blocks_9_content_heading','field_64d237e8bb1e3'),(145834,40496,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(145835,40496,'_blocks_9_content_text','field_64d237e8bb1e4'),(145836,40496,'blocks_9_content_actions',''),(145837,40496,'_blocks_9_content_actions','field_64d237e8bb1e5'),(145838,40496,'blocks_9_content_align','left'),(145839,40496,'_blocks_9_content_align','field_64d2443e6b6aa'),(145840,40496,'blocks_9_content',''),(145841,40496,'_blocks_9_content','field_64d237e8bb1e1'),(145842,40496,'blocks_9_accordion_content','faqs'),(145843,40496,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(145844,40496,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(145845,40496,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(145846,40496,'blocks_9_actions',''),(145847,40496,'_blocks_9_actions','field_61a746a817f7a'),(145848,40496,'blocks_10_acfe_flexible_toggle',''),(145849,40496,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(145850,40496,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(145851,40496,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(145852,40496,'blocks_10_testimonial_slider_content_title',''),(145853,40496,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(145854,40496,'blocks_10_testimonial_slider_content_heading','Testimonials'),(145855,40496,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(145856,40496,'blocks_10_testimonial_slider_content_text',''),(145857,40496,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(145858,40496,'blocks_10_testimonial_slider_content_actions',''),(145859,40496,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(145860,40496,'blocks_10_testimonial_slider_content',''),(145861,40496,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(145862,40496,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(145863,40496,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(145864,40496,'blocks_10_testimonial_slider_ambassador_bool','0'),(145865,40496,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(146194,40498,'hide_hero','0'),(146195,40498,'_hide_hero','field_66a2380fcda39'),(146196,40498,'hero_title','Biomechanics and Pilates'),(146197,40498,'_hero_title','field_617571fe285e8'),(146198,40498,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(146199,40498,'_hero_text','field_6175723c285e9'),(146200,40498,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(146201,40498,'_hero_actions_0_button','field_61757281285eb'),(146202,40498,'hero_actions','1'),(146203,40498,'_hero_actions','field_61757270285ea'),(146204,40498,'hero_style','default'),(146205,40498,'_hero_style','field_62051d9dc5324'),(146206,40498,'_thumbnail_id','39243'),(146207,40498,'__thumbnail_id','field_617570855ddaf'),(146208,40498,'hero_image_pos_x','right'),(146209,40498,'_hero_image_pos_x','field_62ec3d05390bb'),(146210,40498,'hero_image_pos_y','top'),(146211,40498,'_hero_image_pos_y','field_62ec3d05390bc'),(146212,40498,'hero_image_pos',''),(146213,40498,'_hero_image_pos','field_62ec3d05390ba'),(146214,40498,'fft_hide_from_listings','0'),(146215,40498,'_fft_hide_from_listings','field_61f1320446ab2'),(146216,40498,'fft_page_format','default'),(146217,40498,'_fft_page_format','field_61ae213f1f218'),(146218,40498,'fft_hide_nav','0'),(146219,40498,'_fft_hide_nav','field_635bd5e43527c'),(146220,40498,'fft_hide_header_call_to_action','0'),(146221,40498,'_fft_hide_header_call_to_action','field_635bd6723527d'),(146222,40498,'fft_page_sitemap','0'),(146223,40498,'_fft_page_sitemap','field_61af9b34e8181'),(146224,40498,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:18:\"testimonial_slider\";}'),(146225,40498,'_blocks','field_6176696113096'),(146226,40498,'blocks_0_acfe_flexible_toggle',''),(146227,40498,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(146228,40498,'blocks_0_acfe_flexible_layout_title','Icons'),(146229,40498,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(146230,40498,'blocks_0_options_theme','#b61234'),(146231,40498,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(146232,40498,'blocks_0_options_format','row'),(146233,40498,'_blocks_0_options_format','field_64bfde9a90690'),(146234,40498,'blocks_0_options',''),(146235,40498,'_blocks_0_options','field_64bfdd9b90684'),(146236,40498,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(146237,40498,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(146238,40498,'blocks_0_icon_row_items_0_label','Accreditation'),(146239,40498,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(146240,40498,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(146241,40498,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(146242,40498,'blocks_0_icon_row_items_1_icon','finance.svg'),(146243,40498,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(146244,40498,'blocks_0_icon_row_items_1_label','Flexible payment options'),(146245,40498,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(146246,40498,'blocks_0_icon_row_items_1_text','Including 0% finance'),(146247,40498,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(146248,40498,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(146249,40498,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(146250,40498,'blocks_0_icon_row_items_2_label','Earning potential'),(146251,40498,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(146252,40498,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(146253,40498,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(146254,40498,'blocks_0_icon_row_items','3'),(146255,40498,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(146256,40498,'blocks_1_acfe_flexible_toggle',''),(146257,40498,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(146258,40498,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(146259,40498,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(146260,40498,'blocks_1_options_theme','#ffffff'),(146261,40498,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(146262,40498,'blocks_1_options_reverse','0'),(146263,40498,'_blocks_1_options_reverse','field_61768049bb8ac'),(146264,40498,'blocks_1_options',''),(146265,40498,'_blocks_1_options','field_617682517c334'),(146266,40498,'blocks_1_split_5050_image','38037'),(146267,40498,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(146268,40498,'blocks_1_split_5050_video',''),(146269,40498,'_blocks_1_split_5050_video','field_6239f3160848a'),(146270,40498,'blocks_1_split_5050_content_title',''),(146271,40498,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(146272,40498,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(146273,40498,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(146274,40498,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(146275,40498,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(146276,40498,'blocks_1_split_5050_content_actions',''),(146277,40498,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(146278,40498,'blocks_1_split_5050_content',''),(146279,40498,'_blocks_1_split_5050_content','field_61767afceb8ba'),(146280,40498,'blocks_2_acfe_flexible_toggle',''),(146281,40498,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(146282,40498,'blocks_2_acfe_flexible_layout_title','Form'),(146283,40498,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(146284,40498,'blocks_2_row_content_format','standard'),(146285,40498,'_blocks_2_row_content_format','field_6481ead962881'),(146286,40498,'blocks_2_row_content_title',''),(146287,40498,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(146288,40498,'blocks_2_row_content_heading','Enquire Today'),(146289,40498,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(146290,40498,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(146291,40498,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(146292,40498,'blocks_2_row_content_actions',''),(146293,40498,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(146294,40498,'blocks_2_row_content',''),(146295,40498,'_blocks_2_row_content','field_61a0f5f5b3db0'),(146296,40498,'blocks_2_row_form',''),(146297,40498,'_blocks_2_row_form','field_61a4ff2c0b08e'),(146298,40498,'blocks_2_row_form_button_label',''),(146299,40498,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(146300,40498,'blocks_3_acfe_flexible_toggle',''),(146301,40498,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(146302,40498,'blocks_3_acfe_flexible_layout_title','Video'),(146303,40498,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(146304,40498,'blocks_3_size','large'),(146305,40498,'_blocks_3_size','field_6487038f297c1'),(146306,40498,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(146307,40498,'_blocks_3_row_content_title','field_64870132a865d'),(146308,40498,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(146309,40498,'_blocks_3_row_content_heading','field_64870142a865e'),(146310,40498,'blocks_3_row_content_text',''),(146311,40498,'_blocks_3_row_content_text','field_64870148a865f'),(146312,40498,'blocks_3_row_content',''),(146313,40498,'_blocks_3_row_content','field_6487008ba865c'),(146314,40498,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(146315,40498,'_blocks_3_video_src','field_6193c4a98ec07'),(146316,40498,'blocks_3_video_thumbnail',''),(146317,40498,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(146318,40498,'blocks_4_acfe_flexible_toggle',''),(146319,40498,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(146320,40498,'blocks_4_acfe_flexible_layout_title','Steps'),(146321,40498,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(146322,40498,'blocks_4_row_content_title',''),(146323,40498,'_blocks_4_row_content_title','field_64888cd1e26e0'),(146324,40498,'blocks_4_row_content_heading','Benefits of training with us'),(146325,40498,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(146326,40498,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(146327,40498,'_blocks_4_row_content_text','field_64888ce2e26e2'),(146328,40498,'blocks_4_row_content_actions',''),(146329,40498,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(146330,40498,'blocks_4_row_content',''),(146331,40498,'_blocks_4_row_content','field_64888cb0e26df'),(146332,40498,'blocks_4_steps_0_icon','progression.svg'),(146333,40498,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(146334,40498,'blocks_4_steps_0_title','Earning potential'),(146335,40498,'_blocks_4_steps_0_title','field_64888d94e26e7'),(146336,40498,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(146337,40498,'_blocks_4_steps_0_text','field_64888d99e26e8'),(146338,40498,'blocks_4_steps_1_icon','support.svg'),(146339,40498,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(146340,40498,'blocks_4_steps_1_title','Lifetime Learning Promise'),(146341,40498,'_blocks_4_steps_1_title','field_64888d94e26e7'),(146342,40498,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(146343,40498,'_blocks_4_steps_1_text','field_64888d99e26e8'),(146344,40498,'blocks_4_steps_2_icon','qualification.svg'),(146345,40498,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(146346,40498,'blocks_4_steps_2_title','Evidence based hands on learning'),(146347,40498,'_blocks_4_steps_2_title','field_64888d94e26e7'),(146348,40498,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(146349,40498,'_blocks_4_steps_2_text','field_64888d99e26e8'),(146350,40498,'blocks_4_steps_3_icon','leaders.svg'),(146351,40498,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(146352,40498,'blocks_4_steps_3_title','Stand out from the crowd'),(146353,40498,'_blocks_4_steps_3_title','field_64888d94e26e7'),(146354,40498,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(146355,40498,'_blocks_4_steps_3_text','field_64888d99e26e8'),(146356,40498,'blocks_4_steps','4'),(146357,40498,'_blocks_4_steps','field_64888d44e26e5'),(146358,40498,'blocks_5_acfe_flexible_toggle',''),(146359,40498,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(146360,40498,'blocks_5_acfe_flexible_layout_title','Tabs'),(146361,40498,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(146362,40498,'blocks_5_options_theme','#ffffff'),(146363,40498,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(146364,40498,'blocks_5_options',''),(146365,40498,'_blocks_5_options','field_6177cfcd8140f'),(146366,40498,'blocks_5_tabs_0_tab_label','What will I learn?'),(146367,40498,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(146368,40498,'blocks_5_tabs_0_tab_content_title',''),(146369,40498,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(146370,40498,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(146371,40498,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(146372,40498,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients:\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(146373,40498,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(146374,40498,'blocks_5_tabs_0_tab_content_actions',''),(146375,40498,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(146376,40498,'blocks_5_tabs_0_tab_content',''),(146377,40498,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(146378,40498,'blocks_5_tabs_0_tab_image','39076'),(146379,40498,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(146380,40498,'blocks_5_tabs_1_tab_label','What do I need?'),(146381,40498,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(146382,40498,'blocks_5_tabs_1_tab_content_title',''),(146383,40498,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(146384,40498,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(146385,40498,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(146386,40498,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(146387,40498,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(146388,40498,'blocks_5_tabs_1_tab_content_actions',''),(146389,40498,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(146390,40498,'blocks_5_tabs_1_tab_content',''),(146391,40498,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(146392,40498,'blocks_5_tabs_1_tab_image','40487'),(146393,40498,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(146394,40498,'blocks_5_tabs_2_tab_label','Where can I learn?'),(146395,40498,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(146396,40498,'blocks_5_tabs_2_tab_content_title',''),(146397,40498,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(146398,40498,'blocks_5_tabs_2_tab_content_heading','Locations'),(146399,40498,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(146400,40498,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(146401,40498,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(146402,40498,'blocks_5_tabs_2_tab_content_actions',''),(146403,40498,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(146404,40498,'blocks_5_tabs_2_tab_content',''),(146405,40498,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(146406,40498,'blocks_5_tabs_2_tab_image','39224'),(146407,40498,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(146408,40498,'blocks_5_tabs','3'),(146409,40498,'_blocks_5_tabs','field_6177cff281419'),(146410,40498,'blocks_6_acfe_flexible_toggle',''),(146411,40498,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(146412,40498,'blocks_6_acfe_flexible_layout_title','Text Block'),(146413,40498,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(146414,40498,'blocks_6_options_theme','#b61234'),(146415,40498,'_blocks_6_options_theme','field_6176830e2ad17'),(146416,40498,'blocks_6_options',''),(146417,40498,'_blocks_6_options','field_6176830e2ad16'),(146418,40498,'blocks_6_text_block_heading','Fees & Funding Options'),(146419,40498,'_blocks_6_text_block_heading','field_617669d413097'),(146420,40498,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(146421,40498,'_blocks_6_text_block_content','field_617669ec13098'),(146422,40498,'blocks_8_acfe_flexible_toggle',''),(146423,40498,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(146424,40498,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(146425,40498,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(146426,40498,'blocks_8_options_theme','#ffffff'),(146427,40498,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(146428,40498,'blocks_8_options_reverse','0'),(146429,40498,'_blocks_8_options_reverse','field_61768049bb8ac'),(146430,40498,'blocks_8_options',''),(146431,40498,'_blocks_8_options','field_617682517c334'),(146432,40498,'blocks_8_split_5050_image','40484'),(146433,40498,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(146434,40498,'blocks_8_split_5050_video',''),(146435,40498,'_blocks_8_split_5050_video','field_6239f3160848a'),(146436,40498,'blocks_8_split_5050_content_title',''),(146437,40498,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(146438,40498,'blocks_8_split_5050_content_heading','Why study this course?'),(146439,40498,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(146440,40498,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(146441,40498,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(146442,40498,'blocks_8_split_5050_content_actions',''),(146443,40498,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(146444,40498,'blocks_8_split_5050_content',''),(146445,40498,'_blocks_8_split_5050_content','field_61767afceb8ba'),(146446,40498,'blocks_7_acfe_flexible_toggle',''),(146447,40498,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(146448,40498,'blocks_7_acfe_flexible_layout_title','Icons'),(146449,40498,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(146450,40498,'blocks_7_options_theme','#b61234'),(146451,40498,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(146452,40498,'blocks_7_options_format','row'),(146453,40498,'_blocks_7_options_format','field_64bfde9a90690'),(146454,40498,'blocks_7_options',''),(146455,40498,'_blocks_7_options','field_64bfdd9b90684'),(146456,40498,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(146457,40498,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(146458,40498,'blocks_7_icon_row_items_0_label','Pay in full '),(146459,40498,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(146460,40498,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(146461,40498,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(146462,40498,'blocks_7_icon_row_items_1_icon','finance.svg'),(146463,40498,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(146464,40498,'blocks_7_icon_row_items_1_label','0% finance'),(146465,40498,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(146466,40498,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(146467,40498,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(146468,40498,'blocks_7_icon_row_items_2_icon','deposit.svg'),(146469,40498,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(146470,40498,'blocks_7_icon_row_items_2_label','Deposit & balance'),(146471,40498,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(146472,40498,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(146473,40498,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(146474,40498,'blocks_7_icon_row_items','3'),(146475,40498,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(146476,40498,'blocks_9_acfe_flexible_toggle',''),(146477,40498,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(146478,40498,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(146479,40498,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(146480,40498,'blocks_9_options_theme','#ffffff'),(146481,40498,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(146482,40498,'blocks_9_options_state','0'),(146483,40498,'_blocks_9_options_state','field_6239fcb7508c5'),(146484,40498,'blocks_9_options',''),(146485,40498,'_blocks_9_options','field_6177e2991ac44'),(146486,40498,'blocks_9_content_title',''),(146487,40498,'_blocks_9_content_title','field_64d237e8bb1e2'),(146488,40498,'blocks_9_content_heading','Frequently asked questions '),(146489,40498,'_blocks_9_content_heading','field_64d237e8bb1e3'),(146490,40498,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(146491,40498,'_blocks_9_content_text','field_64d237e8bb1e4'),(146492,40498,'blocks_9_content_actions',''),(146493,40498,'_blocks_9_content_actions','field_64d237e8bb1e5'),(146494,40498,'blocks_9_content_align','left'),(146495,40498,'_blocks_9_content_align','field_64d2443e6b6aa'),(146496,40498,'blocks_9_content',''),(146497,40498,'_blocks_9_content','field_64d237e8bb1e1'),(146498,40498,'blocks_9_accordion_content','faqs'),(146499,40498,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(146500,40498,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(146501,40498,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(146502,40498,'blocks_9_actions',''),(146503,40498,'_blocks_9_actions','field_61a746a817f7a'),(146504,40498,'blocks_10_acfe_flexible_toggle',''),(146505,40498,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(146506,40498,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(146507,40498,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(146508,40498,'blocks_10_testimonial_slider_content_title',''),(146509,40498,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(146510,40498,'blocks_10_testimonial_slider_content_heading','Testimonials'),(146511,40498,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(146512,40498,'blocks_10_testimonial_slider_content_text',''),(146513,40498,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(146514,40498,'blocks_10_testimonial_slider_content_actions',''),(146515,40498,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(146516,40498,'blocks_10_testimonial_slider_content',''),(146517,40498,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(146518,40498,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(146519,40498,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(146520,40498,'blocks_10_testimonial_slider_ambassador_bool','0'),(146521,40498,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(146642,40500,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-17-scaled.jpg'),(146643,40500,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-17-scaled.jpg\";s:8:\"filesize\";i:745859;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-17-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150000;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-17-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229422;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-17-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49768;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-17-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119059;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:334731;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:522820;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-17-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60508;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-17-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194289;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:303285;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-17-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49770;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-17-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148865;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-17-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227685;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-17-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47830;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-17-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146615;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-17-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227817;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-17-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52887;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-17-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160965;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-17-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247143;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-17-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44789;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-17-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130607;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-17-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198982;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706201\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"67\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-17.jpg\";}'),(146644,40500,'_wp_attachment_image_alt','Rcah, Tom and Joseph are looking at the camera and smiling. They are stood in a field, Rach is in the middle, and the boys either side. All smiling at the camera.'),(146886,40503,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg'),(146887,40503,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg\";s:8:\"filesize\";i:586812;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-15-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123813;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-15-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185866;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-15-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43573;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-15-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99275;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-15-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267409;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-15-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:412534;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-15-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53162;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-15-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160329;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-15-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:244157;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-15-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43417;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-15-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122685;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-15-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184355;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-15-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42362;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-15-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118806;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-15-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178638;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-15-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46028;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-15-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133143;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-15-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201344;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-15-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38767;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-15-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106293;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-15-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159004;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706090\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"62\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-15.jpg\";}'),(146888,40503,'_wp_attachment_image_alt','Joseph and Rach walking up a green, grassy hill. Talking to each other and smiling.'),(147010,40505,'_wp_attached_file','2024/09/IBA-Discovery-Day-Workshop-600x450-1.jpg'),(147011,40505,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:450;s:4:\"file\";s:48:\"2024/09/IBA-Discovery-Day-Workshop-600x450-1.jpg\";s:8:\"filesize\";i:53746;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"IBA-Discovery-Day-Workshop-600x450-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22944;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:48:\"IBA-Discovery-Day-Workshop-600x450-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27934;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:48:\"IBA-Discovery-Day-Workshop-600x450-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20844;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:48:\"IBA-Discovery-Day-Workshop-600x450-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21254;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:48:\"IBA-Discovery-Day-Workshop-600x450-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22944;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:48:\"IBA-Discovery-Day-Workshop-600x450-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19048;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(147012,40505,'_wp_attachment_image_alt','IBA discovery day attendees - Group photo with everyone smiling and doing a thumbs up at the camera (about 30 people in the group shot).'),(147373,40509,'hide_hero','0'),(147374,40509,'_hide_hero','field_66a2380fcda39'),(147375,40509,'hero_title','Funding Your Course'),(147376,40509,'_hero_title','field_617571fe285e8'),(147377,40509,'hero_text','Discover the various options available for funding and paying for your course with us.'),(147378,40509,'_hero_text','field_6175723c285e9'),(147379,40509,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(147380,40509,'_hero_actions_0_button','field_61757281285eb'),(147381,40509,'hero_actions','1'),(147382,40509,'_hero_actions','field_61757270285ea'),(147383,40509,'hero_style','default'),(147384,40509,'_hero_style','field_62051d9dc5324'),(147385,40509,'_thumbnail_id','39334'),(147386,40509,'__thumbnail_id','field_617570855ddaf'),(147387,40509,'hero_image_pos_x','right'),(147388,40509,'_hero_image_pos_x','field_62ec3d05390bb'),(147389,40509,'hero_image_pos_y','top'),(147390,40509,'_hero_image_pos_y','field_62ec3d05390bc'),(147391,40509,'hero_image_pos',''),(147392,40509,'_hero_image_pos','field_62ec3d05390ba'),(147393,40509,'fft_hide_from_listings','0'),(147394,40509,'_fft_hide_from_listings','field_61f1320446ab2'),(147395,40509,'fft_page_format','default'),(147396,40509,'_fft_page_format','field_61ae213f1f218'),(147397,40509,'fft_hide_nav','0'),(147398,40509,'_fft_hide_nav','field_635bd5e43527c'),(147399,40509,'fft_hide_header_call_to_action','0'),(147400,40509,'_fft_hide_header_call_to_action','field_635bd6723527d'),(147401,40509,'fft_page_sitemap','0'),(147402,40509,'_fft_page_sitemap','field_61af9b34e8181'),(147403,40509,'blocks_0_acfe_flexible_toggle',''),(147404,40509,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(147405,40509,'blocks_0_acfe_flexible_layout_title','Icons'),(147406,40509,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(147407,40509,'blocks_0_options_theme','#ffffff'),(147408,40509,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(147409,40509,'blocks_0_options_format','grid'),(147410,40509,'_blocks_0_options_format','field_64bfde9a90690'),(147411,40509,'blocks_0_options',''),(147412,40509,'_blocks_0_options','field_64bfdd9b90684'),(147413,40509,'blocks_0_row_content_title',''),(147414,40509,'_blocks_0_row_content_title','field_64bfdd9b90687'),(147415,40509,'blocks_0_row_content_heading','Fees & Funding Options'),(147416,40509,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(147417,40509,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(147418,40509,'_blocks_0_row_content_text','field_64bfdd9b90689'),(147419,40509,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(147420,40509,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(147421,40509,'blocks_0_row_content_actions','1'),(147422,40509,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(147423,40509,'blocks_0_row_content',''),(147424,40509,'_blocks_0_row_content','field_64bfdd9b90686'),(147425,40509,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(147426,40509,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(147427,40509,'blocks_0_icon_row_items_0_label','Pay in full'),(147428,40509,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(147429,40509,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(147430,40509,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(147431,40509,'blocks_0_icon_row_items_1_icon','finance.svg'),(147432,40509,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(147433,40509,'blocks_0_icon_row_items_1_label','0% finance*'),(147434,40509,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(147435,40509,'blocks_0_icon_row_items_1_text','Put down a deposit and spread the cost of your training with 0% finance.'),(147436,40509,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(147437,40509,'blocks_0_icon_row_items_2_icon','deposit.svg'),(147438,40509,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(147439,40509,'blocks_0_icon_row_items_2_label','Deposit & balance'),(147440,40509,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(147441,40509,'blocks_0_icon_row_items_2_text','Put down a deposit and pay the remaining balance in one lump sum later.'),(147442,40509,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(147443,40509,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(147444,40509,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(147445,40509,'blocks_0_icon_row_items_3_label','FlexPay'),(147446,40509,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(147447,40509,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(147448,40509,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(147449,40509,'blocks_0_icon_row_items','4'),(147450,40509,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(147451,40509,'blocks_1_acfe_flexible_toggle',''),(147452,40509,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(147453,40509,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(147454,40509,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(147455,40509,'blocks_1_options_theme','#ffffff'),(147456,40509,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(147457,40509,'blocks_1_options_reverse','0'),(147458,40509,'_blocks_1_options_reverse','field_61768049bb8ac'),(147459,40509,'blocks_1_options',''),(147460,40509,'_blocks_1_options','field_617682517c334'),(147461,40509,'blocks_1_split_5050_image','39335'),(147462,40509,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(147463,40509,'blocks_1_split_5050_video',''),(147464,40509,'_blocks_1_split_5050_video','field_6239f3160848a'),(147465,40509,'blocks_1_split_5050_content_title',''),(147466,40509,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(147467,40509,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(147468,40509,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(147469,40509,'blocks_1_split_5050_content_text','Training for a new career is a big investment, and as with all things in life, you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(147470,40509,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(147471,40509,'blocks_1_split_5050_content_actions',''),(147472,40509,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(147473,40509,'blocks_1_split_5050_content',''),(147474,40509,'_blocks_1_split_5050_content','field_61767afceb8ba'),(147475,40509,'blocks_2_acfe_flexible_toggle',''),(147476,40509,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(147477,40509,'blocks_2_acfe_flexible_layout_title','Form'),(147478,40509,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(147479,40509,'blocks_2_row_content_format','standard'),(147480,40509,'_blocks_2_row_content_format','field_6481ead962881'),(147481,40509,'blocks_2_row_content_title',''),(147482,40509,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(147483,40509,'blocks_2_row_content_heading','We\'re here to help you succeed'),(147484,40509,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(147485,40509,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that best suits their needs.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to offer no-obligation advice and help you create a payment plan that suits you.'),(147486,40509,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(147487,40509,'blocks_2_row_content_actions',''),(147488,40509,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(147489,40509,'blocks_2_row_content',''),(147490,40509,'_blocks_2_row_content','field_61a0f5f5b3db0'),(147491,40509,'blocks_2_row_form',''),(147492,40509,'_blocks_2_row_form','field_61a4ff2c0b08e'),(147493,40509,'blocks_2_row_form_button_label',''),(147494,40509,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(147495,40509,'blocks_3_acfe_flexible_toggle',''),(147496,40509,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(147497,40509,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(147498,40509,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(147499,40509,'blocks_3_testimonial_slider_content_title',''),(147500,40509,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(147501,40509,'blocks_3_testimonial_slider_content_heading','Testimonials'),(147502,40509,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(147503,40509,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(147504,40509,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(147505,40509,'blocks_3_testimonial_slider_content_actions',''),(147506,40509,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(147507,40509,'blocks_3_testimonial_slider_content',''),(147508,40509,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(147509,40509,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(147510,40509,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(147511,40509,'blocks_3_testimonial_slider_ambassador_bool','0'),(147512,40509,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(147513,40509,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(147514,40509,'_blocks','field_6176696113096'),(147515,40510,'hide_hero','0'),(147516,40510,'_hide_hero','field_66a2380fcda39'),(147517,40510,'hero_title','Funding Your Course'),(147518,40510,'_hero_title','field_617571fe285e8'),(147519,40510,'hero_text','Discover the various options available for funding and paying for your course with us.'),(147520,40510,'_hero_text','field_6175723c285e9'),(147521,40510,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(147522,40510,'_hero_actions_0_button','field_61757281285eb'),(147523,40510,'hero_actions','1'),(147524,40510,'_hero_actions','field_61757270285ea'),(147525,40510,'hero_style','default'),(147526,40510,'_hero_style','field_62051d9dc5324'),(147527,40510,'hero_image_pos_x','right'),(147528,40510,'_hero_image_pos_x','field_62ec3d05390bb'),(147529,40510,'hero_image_pos_y','top'),(147530,40510,'_hero_image_pos_y','field_62ec3d05390bc'),(147531,40510,'hero_image_pos',''),(147532,40510,'_hero_image_pos','field_62ec3d05390ba'),(147533,40510,'fft_hide_from_listings','0'),(147534,40510,'_fft_hide_from_listings','field_61f1320446ab2'),(147535,40510,'fft_page_format','default'),(147536,40510,'_fft_page_format','field_61ae213f1f218'),(147537,40510,'fft_hide_nav','0'),(147538,40510,'_fft_hide_nav','field_635bd5e43527c'),(147539,40510,'fft_hide_header_call_to_action','0'),(147540,40510,'_fft_hide_header_call_to_action','field_635bd6723527d'),(147541,40510,'fft_page_sitemap','0'),(147542,40510,'_fft_page_sitemap','field_61af9b34e8181'),(147543,40510,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(147544,40510,'_blocks','field_6176696113096'),(147545,40510,'_thumbnail_id','39334'),(147546,40510,'__thumbnail_id','field_617570855ddaf'),(147547,40510,'blocks_0_acfe_flexible_toggle',''),(147548,40510,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(147549,40510,'blocks_0_acfe_flexible_layout_title','Icons'),(147550,40510,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(147551,40510,'blocks_0_options_theme','#ffffff'),(147552,40510,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(147553,40510,'blocks_0_options_format','grid'),(147554,40510,'_blocks_0_options_format','field_64bfde9a90690'),(147555,40510,'blocks_0_options',''),(147556,40510,'_blocks_0_options','field_64bfdd9b90684'),(147557,40510,'blocks_0_row_content_title',''),(147558,40510,'_blocks_0_row_content_title','field_64bfdd9b90687'),(147559,40510,'blocks_0_row_content_heading','Fees & Funding Options'),(147560,40510,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(147561,40510,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(147562,40510,'_blocks_0_row_content_text','field_64bfdd9b90689'),(147563,40510,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(147564,40510,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(147565,40510,'blocks_0_row_content_actions','1'),(147566,40510,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(147567,40510,'blocks_0_row_content',''),(147568,40510,'_blocks_0_row_content','field_64bfdd9b90686'),(147569,40510,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(147570,40510,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(147571,40510,'blocks_0_icon_row_items_0_label','Pay in full'),(147572,40510,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(147573,40510,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(147574,40510,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(147575,40510,'blocks_0_icon_row_items_1_icon','finance.svg'),(147576,40510,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(147577,40510,'blocks_0_icon_row_items_1_label','0% finance*'),(147578,40510,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(147579,40510,'blocks_0_icon_row_items_1_text','Put down a deposit and spread the cost of your training with 0% finance.'),(147580,40510,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(147581,40510,'blocks_0_icon_row_items_2_icon','deposit.svg'),(147582,40510,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(147583,40510,'blocks_0_icon_row_items_2_label','Deposit & balance'),(147584,40510,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(147585,40510,'blocks_0_icon_row_items_2_text','Put down a deposit and pay the remaining balance in one lump sum later.'),(147586,40510,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(147587,40510,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(147588,40510,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(147589,40510,'blocks_0_icon_row_items_3_label','FlexPay'),(147590,40510,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(147591,40510,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(147592,40510,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(147593,40510,'blocks_0_icon_row_items','4'),(147594,40510,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(147595,40510,'blocks_1_acfe_flexible_toggle',''),(147596,40510,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(147597,40510,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(147598,40510,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(147599,40510,'blocks_1_options_theme','#ffffff'),(147600,40510,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(147601,40510,'blocks_1_options_reverse','0'),(147602,40510,'_blocks_1_options_reverse','field_61768049bb8ac'),(147603,40510,'blocks_1_options',''),(147604,40510,'_blocks_1_options','field_617682517c334'),(147605,40510,'blocks_1_split_5050_image','39335'),(147606,40510,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(147607,40510,'blocks_1_split_5050_video',''),(147608,40510,'_blocks_1_split_5050_video','field_6239f3160848a'),(147609,40510,'blocks_1_split_5050_content_title',''),(147610,40510,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(147611,40510,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(147612,40510,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(147613,40510,'blocks_1_split_5050_content_text','Training for a new career is a big investment, and as with all things in life, you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 28 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(147614,40510,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(147615,40510,'blocks_1_split_5050_content_actions',''),(147616,40510,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(147617,40510,'blocks_1_split_5050_content',''),(147618,40510,'_blocks_1_split_5050_content','field_61767afceb8ba'),(147619,40510,'blocks_2_acfe_flexible_toggle',''),(147620,40510,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(147621,40510,'blocks_2_acfe_flexible_layout_title','Form'),(147622,40510,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(147623,40510,'blocks_2_row_content_format','standard'),(147624,40510,'_blocks_2_row_content_format','field_6481ead962881'),(147625,40510,'blocks_2_row_content_title',''),(147626,40510,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(147627,40510,'blocks_2_row_content_heading','We\'re here to help you succeed'),(147628,40510,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(147629,40510,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that best suits their needs.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to offer no-obligation advice and help you create a payment plan that suits you.'),(147630,40510,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(147631,40510,'blocks_2_row_content_actions',''),(147632,40510,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(147633,40510,'blocks_2_row_content',''),(147634,40510,'_blocks_2_row_content','field_61a0f5f5b3db0'),(147635,40510,'blocks_2_row_form',''),(147636,40510,'_blocks_2_row_form','field_61a4ff2c0b08e'),(147637,40510,'blocks_2_row_form_button_label',''),(147638,40510,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(147639,40510,'blocks_3_acfe_flexible_toggle',''),(147640,40510,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(147641,40510,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(147642,40510,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(147643,40510,'blocks_3_testimonial_slider_content_title',''),(147644,40510,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(147645,40510,'blocks_3_testimonial_slider_content_heading','Testimonials'),(147646,40510,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(147647,40510,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(147648,40510,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(147649,40510,'blocks_3_testimonial_slider_content_actions',''),(147650,40510,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(147651,40510,'blocks_3_testimonial_slider_content',''),(147652,40510,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(147653,40510,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(147654,40510,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(147655,40510,'blocks_3_testimonial_slider_ambassador_bool','0'),(147656,40510,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(147657,40511,'hide_hero','0'),(147658,40511,'_hide_hero','field_66a2380fcda39'),(147659,40511,'hero_title','Funding Your Course'),(147660,40511,'_hero_title','field_617571fe285e8'),(147661,40511,'hero_text','Discover the various options available for funding and paying for your course with us.'),(147662,40511,'_hero_text','field_6175723c285e9'),(147663,40511,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(147664,40511,'_hero_actions_0_button','field_61757281285eb'),(147665,40511,'hero_actions','1'),(147666,40511,'_hero_actions','field_61757270285ea'),(147667,40511,'hero_style','default'),(147668,40511,'_hero_style','field_62051d9dc5324'),(147669,40511,'hero_image_pos_x','right'),(147670,40511,'_hero_image_pos_x','field_62ec3d05390bb'),(147671,40511,'hero_image_pos_y','top'),(147672,40511,'_hero_image_pos_y','field_62ec3d05390bc'),(147673,40511,'hero_image_pos',''),(147674,40511,'_hero_image_pos','field_62ec3d05390ba'),(147675,40511,'fft_hide_from_listings','0'),(147676,40511,'_fft_hide_from_listings','field_61f1320446ab2'),(147677,40511,'fft_page_format','default'),(147678,40511,'_fft_page_format','field_61ae213f1f218'),(147679,40511,'fft_hide_nav','0'),(147680,40511,'_fft_hide_nav','field_635bd5e43527c'),(147681,40511,'fft_hide_header_call_to_action','0'),(147682,40511,'_fft_hide_header_call_to_action','field_635bd6723527d'),(147683,40511,'fft_page_sitemap','0'),(147684,40511,'_fft_page_sitemap','field_61af9b34e8181'),(147685,40511,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(147686,40511,'_blocks','field_6176696113096'),(147687,40511,'_thumbnail_id','39334'),(147688,40511,'__thumbnail_id','field_617570855ddaf'),(147689,40511,'blocks_0_acfe_flexible_toggle',''),(147690,40511,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(147691,40511,'blocks_0_acfe_flexible_layout_title','Icons'),(147692,40511,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(147693,40511,'blocks_0_options_theme','#ffffff'),(147694,40511,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(147695,40511,'blocks_0_options_format','grid'),(147696,40511,'_blocks_0_options_format','field_64bfde9a90690'),(147697,40511,'blocks_0_options',''),(147698,40511,'_blocks_0_options','field_64bfdd9b90684'),(147699,40511,'blocks_0_row_content_title',''),(147700,40511,'_blocks_0_row_content_title','field_64bfdd9b90687'),(147701,40511,'blocks_0_row_content_heading','Fees & Funding Options'),(147702,40511,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(147703,40511,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(147704,40511,'_blocks_0_row_content_text','field_64bfdd9b90689'),(147705,40511,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(147706,40511,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(147707,40511,'blocks_0_row_content_actions','1'),(147708,40511,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(147709,40511,'blocks_0_row_content',''),(147710,40511,'_blocks_0_row_content','field_64bfdd9b90686'),(147711,40511,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(147712,40511,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(147713,40511,'blocks_0_icon_row_items_0_label','Pay in full'),(147714,40511,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(147715,40511,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(147716,40511,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(147717,40511,'blocks_0_icon_row_items_1_icon','finance.svg'),(147718,40511,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(147719,40511,'blocks_0_icon_row_items_1_label','0% finance*'),(147720,40511,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(147721,40511,'blocks_0_icon_row_items_1_text','Put down a deposit and spread the cost of your training with 0% finance.'),(147722,40511,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(147723,40511,'blocks_0_icon_row_items_2_icon','deposit.svg'),(147724,40511,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(147725,40511,'blocks_0_icon_row_items_2_label','Deposit & balance'),(147726,40511,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(147727,40511,'blocks_0_icon_row_items_2_text','Put down a deposit and pay the remaining balance in one lump sum later.'),(147728,40511,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(147729,40511,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(147730,40511,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(147731,40511,'blocks_0_icon_row_items_3_label','FlexPay'),(147732,40511,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(147733,40511,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(147734,40511,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(147735,40511,'blocks_0_icon_row_items','4'),(147736,40511,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(147737,40511,'blocks_1_acfe_flexible_toggle',''),(147738,40511,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(147739,40511,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(147740,40511,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(147741,40511,'blocks_1_options_theme','#ffffff'),(147742,40511,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(147743,40511,'blocks_1_options_reverse','0'),(147744,40511,'_blocks_1_options_reverse','field_61768049bb8ac'),(147745,40511,'blocks_1_options',''),(147746,40511,'_blocks_1_options','field_617682517c334'),(147747,40511,'blocks_1_split_5050_image','39335'),(147748,40511,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(147749,40511,'blocks_1_split_5050_video',''),(147750,40511,'_blocks_1_split_5050_video','field_6239f3160848a'),(147751,40511,'blocks_1_split_5050_content_title',''),(147752,40511,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(147753,40511,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(147754,40511,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(147755,40511,'blocks_1_split_5050_content_text','Training for a new career is a big investment, and as with all things in life, you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 20 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(147756,40511,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(147757,40511,'blocks_1_split_5050_content_actions',''),(147758,40511,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(147759,40511,'blocks_1_split_5050_content',''),(147760,40511,'_blocks_1_split_5050_content','field_61767afceb8ba'),(147761,40511,'blocks_2_acfe_flexible_toggle',''),(147762,40511,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(147763,40511,'blocks_2_acfe_flexible_layout_title','Form'),(147764,40511,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(147765,40511,'blocks_2_row_content_format','standard'),(147766,40511,'_blocks_2_row_content_format','field_6481ead962881'),(147767,40511,'blocks_2_row_content_title',''),(147768,40511,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(147769,40511,'blocks_2_row_content_heading','We\'re here to help you succeed'),(147770,40511,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(147771,40511,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that best suits their needs.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to offer no-obligation advice and help you create a payment plan that suits you.'),(147772,40511,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(147773,40511,'blocks_2_row_content_actions',''),(147774,40511,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(147775,40511,'blocks_2_row_content',''),(147776,40511,'_blocks_2_row_content','field_61a0f5f5b3db0'),(147777,40511,'blocks_2_row_form',''),(147778,40511,'_blocks_2_row_form','field_61a4ff2c0b08e'),(147779,40511,'blocks_2_row_form_button_label',''),(147780,40511,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(147781,40511,'blocks_3_acfe_flexible_toggle',''),(147782,40511,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(147783,40511,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(147784,40511,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(147785,40511,'blocks_3_testimonial_slider_content_title',''),(147786,40511,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(147787,40511,'blocks_3_testimonial_slider_content_heading','Testimonials'),(147788,40511,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(147789,40511,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(147790,40511,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(147791,40511,'blocks_3_testimonial_slider_content_actions',''),(147792,40511,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(147793,40511,'blocks_3_testimonial_slider_content',''),(147794,40511,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(147795,40511,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(147796,40511,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(147797,40511,'blocks_3_testimonial_slider_ambassador_bool','0'),(147798,40511,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(147799,39278,'_wp_old_date','2024-09-12'),(147800,39348,'_wp_old_date','2024-09-12'),(147801,39486,'_wp_old_date','2024-09-12'),(147802,39485,'_wp_old_date','2024-09-12'),(147803,39487,'_wp_old_date','2024-09-12'),(147804,39279,'_wp_old_date','2024-09-12'),(147805,39325,'_wp_old_date','2024-09-12'),(147806,39324,'_wp_old_date','2024-09-12'),(147807,39323,'_wp_old_date','2024-09-12'),(147808,39322,'_wp_old_date','2024-09-12'),(147809,39321,'_wp_old_date','2024-09-12'),(147810,39320,'_wp_old_date','2024-09-12'),(147811,39319,'_wp_old_date','2024-09-12'),(147812,39280,'_wp_old_date','2024-09-12'),(147813,39522,'_wp_old_date','2024-09-12'),(147814,39281,'_wp_old_date','2024-09-12'),(147815,39344,'_wp_old_date','2024-09-12'),(147816,39318,'_wp_old_date','2024-09-12'),(147820,7,'blocks_0_acfe_flexible_toggle',''),(147821,7,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(147822,7,'blocks_0_acfe_flexible_layout_title','Template'),(147823,7,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(147824,7,'blocks_0_template','39087'),(147825,7,'_blocks_0_template','field_617bdd570fe01'),(147826,7,'blocks_2_acfe_flexible_toggle',''),(147827,7,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(147828,7,'blocks_2_acfe_flexible_layout_title','Introduction[anchor]'),(147829,7,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(147830,7,'blocks_2_options_theme','#b61234'),(147831,7,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(147832,7,'blocks_2_options_reverse','0'),(147833,7,'_blocks_2_options_reverse','field_61768049bb8ac'),(147834,7,'blocks_2_options',''),(147835,7,'_blocks_2_options','field_617682517c334'),(147836,7,'blocks_2_split_5050_image',''),(147837,7,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(147838,7,'blocks_2_split_5050_video','https://www.youtube.com/watch?v=x_yYzgAqcbY'),(147839,7,'_blocks_2_split_5050_video','field_6239f3160848a'),(147840,7,'blocks_2_split_5050_content_title',''),(147841,7,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(147842,7,'blocks_2_split_5050_content_heading','What is Biomechanics Education?'),(147843,7,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(147844,7,'blocks_2_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(147845,7,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(147846,7,'blocks_2_split_5050_content_actions',''),(147847,7,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(147848,7,'blocks_2_split_5050_content',''),(147849,7,'_blocks_2_split_5050_content','field_61767afceb8ba'),(147850,40512,'hero_style','default'),(147851,40512,'_hero_style','field_62051d9dc5324'),(147852,40512,'hero_image_pos_x','right'),(147853,40512,'_hero_image_pos_x','field_62ec3d05390bb'),(147854,40512,'hero_image_pos_y','top'),(147855,40512,'_hero_image_pos_y','field_62ec3d05390bc'),(147856,40512,'hero_image_pos',''),(147857,40512,'_hero_image_pos','field_62ec3d05390ba'),(147858,40512,'hero_title','Biomechanics Education'),(147859,40512,'_hero_title','field_617571fe285e8'),(147860,40512,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(147861,40512,'_hero_text','field_6175723c285e9'),(147862,40512,'hero_actions','1'),(147863,40512,'_hero_actions','field_61757270285ea'),(147864,40512,'hero_icon',''),(147865,40512,'_hero_icon','field_61a6182199d03'),(147866,40512,'fft_hide_from_listings','0'),(147867,40512,'_fft_hide_from_listings','field_61f1320446ab2'),(147868,40512,'fft_page_format','default'),(147869,40512,'_fft_page_format','field_61ae213f1f218'),(147870,40512,'fft_hide_nav','0'),(147871,40512,'_fft_hide_nav','field_635bd5e43527c'),(147872,40512,'fft_hide_header_call_to_action','0'),(147873,40512,'_fft_hide_header_call_to_action','field_635bd6723527d'),(147874,40512,'fft_page_sitemap','0'),(147875,40512,'_fft_page_sitemap','field_61af9b34e8181'),(147876,40512,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:8:\"template\";i:7;s:18:\"testimonial_slider\";}'),(147877,40512,'_blocks','field_6176696113096'),(147878,40512,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(147879,40512,'_hero_actions_0_button','field_61757281285eb'),(147880,40512,'_thumbnail_id','38951'),(147881,40512,'__thumbnail_id','field_617570855ddaf'),(147882,40512,'hide_hero','0'),(147883,40512,'_hide_hero','field_66a2380fcda39'),(147884,40512,'blocks_3_acfe_flexible_toggle',''),(147885,40512,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(147886,40512,'blocks_3_acfe_flexible_layout_title','Text Block'),(147887,40512,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(147888,40512,'blocks_3_options_theme','#ffffff'),(147889,40512,'_blocks_3_options_theme','field_6176830e2ad17'),(147890,40512,'blocks_3_options',''),(147891,40512,'_blocks_3_options','field_6176830e2ad16'),(147892,40512,'blocks_3_text_block_heading','Learn About Biomechanics in Different Sectors'),(147893,40512,'_blocks_3_text_block_heading','field_617669d413097'),(147894,40512,'blocks_3_text_block_content',''),(147895,40512,'_blocks_3_text_block_content','field_617669ec13098'),(147896,40512,'blocks_4_acfe_flexible_toggle',''),(147897,40512,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(147898,40512,'blocks_4_acfe_flexible_layout_title','Cards'),(147899,40512,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(147900,40512,'blocks_4_options_theme','#ffffff'),(147901,40512,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(147902,40512,'blocks_4_options_format','carousel'),(147903,40512,'_blocks_4_options_format','field_617a7b15245b5'),(147904,40512,'blocks_4_options_style','default'),(147905,40512,'_blocks_4_options_style','field_6278ffb63484a'),(147906,40512,'blocks_4_options_cards_current_listing','0'),(147907,40512,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(147908,40512,'blocks_4_options_cards_content','custom'),(147909,40512,'_blocks_4_options_cards_content','field_617aba6122688'),(147910,40512,'blocks_4_options',''),(147911,40512,'_blocks_4_options','field_617a7b15245b3'),(147912,40512,'blocks_4_cards_custom_0_image','39215'),(147913,40512,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(147914,40512,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(147915,40512,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(147916,40512,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(147917,40512,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(147918,40512,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(147919,40512,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(147920,40512,'blocks_4_cards_custom_1_image','39243'),(147921,40512,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(147922,40512,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(147923,40512,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(147924,40512,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(147925,40512,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(147926,40512,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(147927,40512,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(147928,40512,'blocks_4_cards_custom_2_image','39247'),(147929,40512,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(147930,40512,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(147931,40512,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(147932,40512,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(147933,40512,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(147934,40512,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(147935,40512,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(147936,40512,'blocks_4_cards_custom_3_image','39256'),(147937,40512,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(147938,40512,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(147939,40512,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(147940,40512,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(147941,40512,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(147942,40512,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(147943,40512,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(147944,40512,'blocks_4_cards_custom_4_image','39251'),(147945,40512,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(147946,40512,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(147947,40512,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(147948,40512,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(147949,40512,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(147950,40512,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(147951,40512,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(147952,40512,'blocks_4_cards_custom_5_image','39240'),(147953,40512,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(147954,40512,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(147955,40512,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(147956,40512,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(147957,40512,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(147958,40512,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(147959,40512,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(147960,40512,'blocks_4_cards_custom_6_image','39454'),(147961,40512,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(147962,40512,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(147963,40512,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(147964,40512,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(147965,40512,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(147966,40512,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(147967,40512,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(147968,40512,'blocks_4_cards_custom','7'),(147969,40512,'_blocks_4_cards_custom','field_6194cbf84d386'),(147970,40512,'blocks_5_acfe_flexible_toggle',''),(147971,40512,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(147972,40512,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(147973,40512,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(147974,40512,'blocks_5_options_theme','#f5f5f5'),(147975,40512,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(147976,40512,'blocks_5_options_reverse','1'),(147977,40512,'_blocks_5_options_reverse','field_61768049bb8ac'),(147978,40512,'blocks_5_options',''),(147979,40512,'_blocks_5_options','field_617682517c334'),(147980,40512,'blocks_5_split_5050_image','38960'),(147981,40512,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(147982,40512,'blocks_5_split_5050_video',''),(147983,40512,'_blocks_5_split_5050_video','field_6239f3160848a'),(147984,40512,'blocks_5_split_5050_content_title','Biomechanics Education & Future Fit'),(147985,40512,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(147986,40512,'blocks_5_split_5050_content_heading','Working In Partnership'),(147987,40512,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(147988,40512,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the Future Fit Student Zone for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Our advanced learning management system</li>\r\n 	<li>Industry-recognized training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(147989,40512,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(147990,40512,'blocks_5_split_5050_content_actions','1'),(147991,40512,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(147992,40512,'blocks_5_split_5050_content',''),(147993,40512,'_blocks_5_split_5050_content','field_61767afceb8ba'),(147994,40512,'blocks_6_acfe_flexible_toggle',''),(147995,40512,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(147996,40512,'blocks_6_acfe_flexible_layout_title','Template'),(147997,40512,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(147998,40512,'blocks_6_template','39207'),(147999,40512,'_blocks_6_template','field_617bdd570fe01'),(148000,40512,'blocks_7_acfe_flexible_toggle',''),(148001,40512,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(148002,40512,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(148003,40512,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(148004,40512,'blocks_7_testimonial_slider_content_title',''),(148005,40512,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(148006,40512,'blocks_7_testimonial_slider_content_heading','Testimonials'),(148007,40512,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(148008,40512,'blocks_7_testimonial_slider_content_text',''),(148009,40512,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(148010,40512,'blocks_7_testimonial_slider_content_actions',''),(148011,40512,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(148012,40512,'blocks_7_testimonial_slider_content',''),(148013,40512,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(148014,40512,'blocks_7_testimonial_slider_items','a:5:{i:0;s:5:\"38964\";i:1;s:5:\"38965\";i:2;s:5:\"39168\";i:3;s:5:\"39170\";i:4;s:5:\"39169\";}'),(148015,40512,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(148016,40512,'blocks_7_testimonial_slider_ambassador_bool','0'),(148017,40512,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(148018,40512,'blocks_1_acfe_flexible_toggle',''),(148019,40512,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(148020,40512,'blocks_1_acfe_flexible_layout_title','Video'),(148021,40512,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(148022,40512,'blocks_1_size','large'),(148023,40512,'_blocks_1_size','field_6487038f297c1'),(148024,40512,'blocks_1_row_content_title',''),(148025,40512,'_blocks_1_row_content_title','field_64870132a865d'),(148026,40512,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(148027,40512,'_blocks_1_row_content_heading','field_64870142a865e'),(148028,40512,'blocks_1_row_content_text',''),(148029,40512,'_blocks_1_row_content_text','field_64870148a865f'),(148030,40512,'blocks_1_row_content',''),(148031,40512,'_blocks_1_row_content','field_6487008ba865c'),(148032,40512,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(148033,40512,'_blocks_1_video_src','field_6193c4a98ec07'),(148034,40512,'blocks_1_video_thumbnail','39175'),(148035,40512,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(148036,40512,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(148037,40512,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(148038,40512,'blocks_0_acfe_flexible_toggle',''),(148039,40512,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(148040,40512,'blocks_0_acfe_flexible_layout_title','Template'),(148041,40512,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(148042,40512,'blocks_0_template','39087'),(148043,40512,'_blocks_0_template','field_617bdd570fe01'),(148044,40512,'blocks_2_acfe_flexible_toggle',''),(148045,40512,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(148046,40512,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(148047,40512,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(148048,40512,'blocks_2_options_theme','#b61234'),(148049,40512,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(148050,40512,'blocks_2_options_reverse','0'),(148051,40512,'_blocks_2_options_reverse','field_61768049bb8ac'),(148052,40512,'blocks_2_options',''),(148053,40512,'_blocks_2_options','field_617682517c334'),(148054,40512,'blocks_2_split_5050_image','38950'),(148055,40512,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(148056,40512,'blocks_2_split_5050_video',''),(148057,40512,'_blocks_2_split_5050_video','field_6239f3160848a'),(148058,40512,'blocks_2_split_5050_content_title',''),(148059,40512,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(148060,40512,'blocks_2_split_5050_content_heading','What is Biomechanics Education?'),(148061,40512,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(148062,40512,'blocks_2_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(148063,40512,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(148064,40512,'blocks_2_split_5050_content_actions',''),(148065,40512,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(148066,40512,'blocks_2_split_5050_content',''),(148067,40512,'_blocks_2_split_5050_content','field_61767afceb8ba'),(148068,40513,'hero_style','default'),(148069,40513,'_hero_style','field_62051d9dc5324'),(148070,40513,'hero_image_pos_x','right'),(148071,40513,'_hero_image_pos_x','field_62ec3d05390bb'),(148072,40513,'hero_image_pos_y','top'),(148073,40513,'_hero_image_pos_y','field_62ec3d05390bc'),(148074,40513,'hero_image_pos',''),(148075,40513,'_hero_image_pos','field_62ec3d05390ba'),(148076,40513,'hero_title','Biomechanics Education'),(148077,40513,'_hero_title','field_617571fe285e8'),(148078,40513,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(148079,40513,'_hero_text','field_6175723c285e9'),(148080,40513,'hero_actions','1'),(148081,40513,'_hero_actions','field_61757270285ea'),(148082,40513,'hero_icon',''),(148083,40513,'_hero_icon','field_61a6182199d03'),(148084,40513,'fft_hide_from_listings','0'),(148085,40513,'_fft_hide_from_listings','field_61f1320446ab2'),(148086,40513,'fft_page_format','default'),(148087,40513,'_fft_page_format','field_61ae213f1f218'),(148088,40513,'fft_hide_nav','0'),(148089,40513,'_fft_hide_nav','field_635bd5e43527c'),(148090,40513,'fft_hide_header_call_to_action','0'),(148091,40513,'_fft_hide_header_call_to_action','field_635bd6723527d'),(148092,40513,'fft_page_sitemap','0'),(148093,40513,'_fft_page_sitemap','field_61af9b34e8181'),(148094,40513,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:8:\"template\";i:7;s:18:\"testimonial_slider\";}'),(148095,40513,'_blocks','field_6176696113096'),(148096,40513,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(148097,40513,'_hero_actions_0_button','field_61757281285eb'),(148098,40513,'_thumbnail_id','38951'),(148099,40513,'__thumbnail_id','field_617570855ddaf'),(148100,40513,'hide_hero','0'),(148101,40513,'_hide_hero','field_66a2380fcda39'),(148102,40513,'blocks_3_acfe_flexible_toggle',''),(148103,40513,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(148104,40513,'blocks_3_acfe_flexible_layout_title','Text Block'),(148105,40513,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(148106,40513,'blocks_3_options_theme','#ffffff'),(148107,40513,'_blocks_3_options_theme','field_6176830e2ad17'),(148108,40513,'blocks_3_options',''),(148109,40513,'_blocks_3_options','field_6176830e2ad16'),(148110,40513,'blocks_3_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines '),(148111,40513,'_blocks_3_text_block_heading','field_617669d413097'),(148112,40513,'blocks_3_text_block_content',''),(148113,40513,'_blocks_3_text_block_content','field_617669ec13098'),(148114,40513,'blocks_4_acfe_flexible_toggle',''),(148115,40513,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(148116,40513,'blocks_4_acfe_flexible_layout_title','Cards'),(148117,40513,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(148118,40513,'blocks_4_options_theme','#ffffff'),(148119,40513,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(148120,40513,'blocks_4_options_format','carousel'),(148121,40513,'_blocks_4_options_format','field_617a7b15245b5'),(148122,40513,'blocks_4_options_style','default'),(148123,40513,'_blocks_4_options_style','field_6278ffb63484a'),(148124,40513,'blocks_4_options_cards_current_listing','0'),(148125,40513,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(148126,40513,'blocks_4_options_cards_content','custom'),(148127,40513,'_blocks_4_options_cards_content','field_617aba6122688'),(148128,40513,'blocks_4_options',''),(148129,40513,'_blocks_4_options','field_617a7b15245b3'),(148130,40513,'blocks_4_cards_custom_0_image','39215'),(148131,40513,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(148132,40513,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(148133,40513,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(148134,40513,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(148135,40513,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(148136,40513,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(148137,40513,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(148138,40513,'blocks_4_cards_custom_1_image','39243'),(148139,40513,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(148140,40513,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(148141,40513,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(148142,40513,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(148143,40513,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(148144,40513,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(148145,40513,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(148146,40513,'blocks_4_cards_custom_2_image','39247'),(148147,40513,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(148148,40513,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(148149,40513,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(148150,40513,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(148151,40513,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(148152,40513,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(148153,40513,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(148154,40513,'blocks_4_cards_custom_3_image','39256'),(148155,40513,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(148156,40513,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(148157,40513,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(148158,40513,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(148159,40513,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(148160,40513,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(148161,40513,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(148162,40513,'blocks_4_cards_custom_4_image','39251'),(148163,40513,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(148164,40513,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(148165,40513,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(148166,40513,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(148167,40513,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(148168,40513,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(148169,40513,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(148170,40513,'blocks_4_cards_custom_5_image','39240'),(148171,40513,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(148172,40513,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(148173,40513,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(148174,40513,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(148175,40513,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(148176,40513,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(148177,40513,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(148178,40513,'blocks_4_cards_custom_6_image','39454'),(148179,40513,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(148180,40513,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(148181,40513,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(148182,40513,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(148183,40513,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(148184,40513,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(148185,40513,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(148186,40513,'blocks_4_cards_custom','7'),(148187,40513,'_blocks_4_cards_custom','field_6194cbf84d386'),(148188,40513,'blocks_5_acfe_flexible_toggle',''),(148189,40513,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(148190,40513,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(148191,40513,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(148192,40513,'blocks_5_options_theme','#f5f5f5'),(148193,40513,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(148194,40513,'blocks_5_options_reverse','1'),(148195,40513,'_blocks_5_options_reverse','field_61768049bb8ac'),(148196,40513,'blocks_5_options',''),(148197,40513,'_blocks_5_options','field_617682517c334'),(148198,40513,'blocks_5_split_5050_image','38960'),(148199,40513,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(148200,40513,'blocks_5_split_5050_video',''),(148201,40513,'_blocks_5_split_5050_video','field_6239f3160848a'),(148202,40513,'blocks_5_split_5050_content_title','Biomechanics Education & Future Fit'),(148203,40513,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(148204,40513,'blocks_5_split_5050_content_heading','Working In Partnership'),(148205,40513,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(148206,40513,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the Future Fit Student Zone for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Our advanced learning management system</li>\r\n 	<li>Industry-recognized training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(148207,40513,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(148208,40513,'blocks_5_split_5050_content_actions','1'),(148209,40513,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(148210,40513,'blocks_5_split_5050_content',''),(148211,40513,'_blocks_5_split_5050_content','field_61767afceb8ba'),(148212,40513,'blocks_6_acfe_flexible_toggle',''),(148213,40513,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(148214,40513,'blocks_6_acfe_flexible_layout_title','Template'),(148215,40513,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(148216,40513,'blocks_6_template','39207'),(148217,40513,'_blocks_6_template','field_617bdd570fe01'),(148218,40513,'blocks_7_acfe_flexible_toggle',''),(148219,40513,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(148220,40513,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(148221,40513,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(148222,40513,'blocks_7_testimonial_slider_content_title',''),(148223,40513,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(148224,40513,'blocks_7_testimonial_slider_content_heading','Testimonials'),(148225,40513,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(148226,40513,'blocks_7_testimonial_slider_content_text',''),(148227,40513,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(148228,40513,'blocks_7_testimonial_slider_content_actions',''),(148229,40513,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(148230,40513,'blocks_7_testimonial_slider_content',''),(148231,40513,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(148232,40513,'blocks_7_testimonial_slider_items','a:5:{i:0;s:5:\"38964\";i:1;s:5:\"38965\";i:2;s:5:\"39168\";i:3;s:5:\"39170\";i:4;s:5:\"39169\";}'),(148233,40513,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(148234,40513,'blocks_7_testimonial_slider_ambassador_bool','0'),(148235,40513,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(148236,40513,'blocks_1_acfe_flexible_toggle',''),(148237,40513,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(148238,40513,'blocks_1_acfe_flexible_layout_title','Video'),(148239,40513,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(148240,40513,'blocks_1_size','large'),(148241,40513,'_blocks_1_size','field_6487038f297c1'),(148242,40513,'blocks_1_row_content_title',''),(148243,40513,'_blocks_1_row_content_title','field_64870132a865d'),(148244,40513,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(148245,40513,'_blocks_1_row_content_heading','field_64870142a865e'),(148246,40513,'blocks_1_row_content_text',''),(148247,40513,'_blocks_1_row_content_text','field_64870148a865f'),(148248,40513,'blocks_1_row_content',''),(148249,40513,'_blocks_1_row_content','field_6487008ba865c'),(148250,40513,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(148251,40513,'_blocks_1_video_src','field_6193c4a98ec07'),(148252,40513,'blocks_1_video_thumbnail','39175'),(148253,40513,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(148254,40513,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(148255,40513,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(148256,40513,'blocks_0_acfe_flexible_toggle',''),(148257,40513,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(148258,40513,'blocks_0_acfe_flexible_layout_title','Template'),(148259,40513,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(148260,40513,'blocks_0_template','39087'),(148261,40513,'_blocks_0_template','field_617bdd570fe01'),(148262,40513,'blocks_2_acfe_flexible_toggle',''),(148263,40513,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(148264,40513,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(148265,40513,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(148266,40513,'blocks_2_options_theme','#b61234'),(148267,40513,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(148268,40513,'blocks_2_options_reverse','0'),(148269,40513,'_blocks_2_options_reverse','field_61768049bb8ac'),(148270,40513,'blocks_2_options',''),(148271,40513,'_blocks_2_options','field_617682517c334'),(148272,40513,'blocks_2_split_5050_image','38950'),(148273,40513,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(148274,40513,'blocks_2_split_5050_video',''),(148275,40513,'_blocks_2_split_5050_video','field_6239f3160848a'),(148276,40513,'blocks_2_split_5050_content_title',''),(148277,40513,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(148278,40513,'blocks_2_split_5050_content_heading','What is Biomechanics Education?'),(148279,40513,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(148280,40513,'blocks_2_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(148281,40513,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(148282,40513,'blocks_2_split_5050_content_actions',''),(148283,40513,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(148284,40513,'blocks_2_split_5050_content',''),(148285,40513,'_blocks_2_split_5050_content','field_61767afceb8ba'),(148286,40514,'hero_style','default'),(148287,40514,'_hero_style','field_62051d9dc5324'),(148288,40514,'hero_image_pos_x','right'),(148289,40514,'_hero_image_pos_x','field_62ec3d05390bb'),(148290,40514,'hero_image_pos_y','top'),(148291,40514,'_hero_image_pos_y','field_62ec3d05390bc'),(148292,40514,'hero_image_pos',''),(148293,40514,'_hero_image_pos','field_62ec3d05390ba'),(148294,40514,'hero_title','Biomechanics Education'),(148295,40514,'_hero_title','field_617571fe285e8'),(148296,40514,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(148297,40514,'_hero_text','field_6175723c285e9'),(148298,40514,'hero_actions','1'),(148299,40514,'_hero_actions','field_61757270285ea'),(148300,40514,'hero_icon',''),(148301,40514,'_hero_icon','field_61a6182199d03'),(148302,40514,'fft_hide_from_listings','0'),(148303,40514,'_fft_hide_from_listings','field_61f1320446ab2'),(148304,40514,'fft_page_format','default'),(148305,40514,'_fft_page_format','field_61ae213f1f218'),(148306,40514,'fft_hide_nav','0'),(148307,40514,'_fft_hide_nav','field_635bd5e43527c'),(148308,40514,'fft_hide_header_call_to_action','0'),(148309,40514,'_fft_hide_header_call_to_action','field_635bd6723527d'),(148310,40514,'fft_page_sitemap','0'),(148311,40514,'_fft_page_sitemap','field_61af9b34e8181'),(148312,40514,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:8:\"template\";i:7;s:18:\"testimonial_slider\";}'),(148313,40514,'_blocks','field_6176696113096'),(148314,40514,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(148315,40514,'_hero_actions_0_button','field_61757281285eb'),(148316,40514,'_thumbnail_id','38951'),(148317,40514,'__thumbnail_id','field_617570855ddaf'),(148318,40514,'hide_hero','0'),(148319,40514,'_hide_hero','field_66a2380fcda39'),(148320,40514,'blocks_3_acfe_flexible_toggle',''),(148321,40514,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(148322,40514,'blocks_3_acfe_flexible_layout_title','Text Block'),(148323,40514,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(148324,40514,'blocks_3_options_theme','#ffffff'),(148325,40514,'_blocks_3_options_theme','field_6176830e2ad17'),(148326,40514,'blocks_3_options',''),(148327,40514,'_blocks_3_options','field_6176830e2ad16'),(148328,40514,'blocks_3_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines '),(148329,40514,'_blocks_3_text_block_heading','field_617669d413097'),(148330,40514,'blocks_3_text_block_content',''),(148331,40514,'_blocks_3_text_block_content','field_617669ec13098'),(148332,40514,'blocks_4_acfe_flexible_toggle',''),(148333,40514,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(148334,40514,'blocks_4_acfe_flexible_layout_title','Cards'),(148335,40514,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(148336,40514,'blocks_4_options_theme','#ffffff'),(148337,40514,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(148338,40514,'blocks_4_options_format','carousel'),(148339,40514,'_blocks_4_options_format','field_617a7b15245b5'),(148340,40514,'blocks_4_options_style','default'),(148341,40514,'_blocks_4_options_style','field_6278ffb63484a'),(148342,40514,'blocks_4_options_cards_current_listing','0'),(148343,40514,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(148344,40514,'blocks_4_options_cards_content','custom'),(148345,40514,'_blocks_4_options_cards_content','field_617aba6122688'),(148346,40514,'blocks_4_options',''),(148347,40514,'_blocks_4_options','field_617a7b15245b3'),(148348,40514,'blocks_4_cards_custom_0_image','39215'),(148349,40514,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(148350,40514,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(148351,40514,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(148352,40514,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(148353,40514,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(148354,40514,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(148355,40514,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(148356,40514,'blocks_4_cards_custom_1_image','39243'),(148357,40514,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(148358,40514,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(148359,40514,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(148360,40514,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(148361,40514,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(148362,40514,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(148363,40514,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(148364,40514,'blocks_4_cards_custom_2_image','39247'),(148365,40514,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(148366,40514,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(148367,40514,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(148368,40514,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(148369,40514,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(148370,40514,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(148371,40514,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(148372,40514,'blocks_4_cards_custom_3_image','39256'),(148373,40514,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(148374,40514,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(148375,40514,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(148376,40514,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(148377,40514,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(148378,40514,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(148379,40514,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(148380,40514,'blocks_4_cards_custom_4_image','39251'),(148381,40514,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(148382,40514,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(148383,40514,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(148384,40514,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(148385,40514,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(148386,40514,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(148387,40514,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(148388,40514,'blocks_4_cards_custom_5_image','39240'),(148389,40514,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(148390,40514,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(148391,40514,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(148392,40514,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(148393,40514,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(148394,40514,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(148395,40514,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(148396,40514,'blocks_4_cards_custom_6_image','39454'),(148397,40514,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(148398,40514,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(148399,40514,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(148400,40514,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(148401,40514,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(148402,40514,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(148403,40514,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(148404,40514,'blocks_4_cards_custom','7'),(148405,40514,'_blocks_4_cards_custom','field_6194cbf84d386'),(148406,40514,'blocks_5_acfe_flexible_toggle',''),(148407,40514,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(148408,40514,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(148409,40514,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(148410,40514,'blocks_5_options_theme','#f5f5f5'),(148411,40514,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(148412,40514,'blocks_5_options_reverse','1'),(148413,40514,'_blocks_5_options_reverse','field_61768049bb8ac'),(148414,40514,'blocks_5_options',''),(148415,40514,'_blocks_5_options','field_617682517c334'),(148416,40514,'blocks_5_split_5050_image','38960'),(148417,40514,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(148418,40514,'blocks_5_split_5050_video',''),(148419,40514,'_blocks_5_split_5050_video','field_6239f3160848a'),(148420,40514,'blocks_5_split_5050_content_title',''),(148421,40514,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(148422,40514,'blocks_5_split_5050_content_heading','Biomechanics Education & Future Fit'),(148423,40514,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(148424,40514,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex LMS platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Our advanced learning management system</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(148425,40514,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(148426,40514,'blocks_5_split_5050_content_actions','1'),(148427,40514,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(148428,40514,'blocks_5_split_5050_content',''),(148429,40514,'_blocks_5_split_5050_content','field_61767afceb8ba'),(148430,40514,'blocks_6_acfe_flexible_toggle',''),(148431,40514,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(148432,40514,'blocks_6_acfe_flexible_layout_title','Template'),(148433,40514,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(148434,40514,'blocks_6_template','39207'),(148435,40514,'_blocks_6_template','field_617bdd570fe01'),(148436,40514,'blocks_7_acfe_flexible_toggle',''),(148437,40514,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(148438,40514,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(148439,40514,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(148440,40514,'blocks_7_testimonial_slider_content_title',''),(148441,40514,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(148442,40514,'blocks_7_testimonial_slider_content_heading','Testimonials'),(148443,40514,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(148444,40514,'blocks_7_testimonial_slider_content_text',''),(148445,40514,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(148446,40514,'blocks_7_testimonial_slider_content_actions',''),(148447,40514,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(148448,40514,'blocks_7_testimonial_slider_content',''),(148449,40514,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(148450,40514,'blocks_7_testimonial_slider_items','a:5:{i:0;s:5:\"38964\";i:1;s:5:\"38965\";i:2;s:5:\"39168\";i:3;s:5:\"39170\";i:4;s:5:\"39169\";}'),(148451,40514,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(148452,40514,'blocks_7_testimonial_slider_ambassador_bool','0'),(148453,40514,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(148454,40514,'blocks_1_acfe_flexible_toggle',''),(148455,40514,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(148456,40514,'blocks_1_acfe_flexible_layout_title','Video'),(148457,40514,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(148458,40514,'blocks_1_size','large'),(148459,40514,'_blocks_1_size','field_6487038f297c1'),(148460,40514,'blocks_1_row_content_title',''),(148461,40514,'_blocks_1_row_content_title','field_64870132a865d'),(148462,40514,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(148463,40514,'_blocks_1_row_content_heading','field_64870142a865e'),(148464,40514,'blocks_1_row_content_text',''),(148465,40514,'_blocks_1_row_content_text','field_64870148a865f'),(148466,40514,'blocks_1_row_content',''),(148467,40514,'_blocks_1_row_content','field_6487008ba865c'),(148468,40514,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(148469,40514,'_blocks_1_video_src','field_6193c4a98ec07'),(148470,40514,'blocks_1_video_thumbnail','39175'),(148471,40514,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(148472,40514,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(148473,40514,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(148474,40514,'blocks_0_acfe_flexible_toggle',''),(148475,40514,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(148476,40514,'blocks_0_acfe_flexible_layout_title','Template'),(148477,40514,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(148478,40514,'blocks_0_template','39087'),(148479,40514,'_blocks_0_template','field_617bdd570fe01'),(148480,40514,'blocks_2_acfe_flexible_toggle',''),(148481,40514,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(148482,40514,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(148483,40514,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(148484,40514,'blocks_2_options_theme','#b61234'),(148485,40514,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(148486,40514,'blocks_2_options_reverse','0'),(148487,40514,'_blocks_2_options_reverse','field_61768049bb8ac'),(148488,40514,'blocks_2_options',''),(148489,40514,'_blocks_2_options','field_617682517c334'),(148490,40514,'blocks_2_split_5050_image','38950'),(148491,40514,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(148492,40514,'blocks_2_split_5050_video',''),(148493,40514,'_blocks_2_split_5050_video','field_6239f3160848a'),(148494,40514,'blocks_2_split_5050_content_title',''),(148495,40514,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(148496,40514,'blocks_2_split_5050_content_heading','What is Biomechanics Education?'),(148497,40514,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(148498,40514,'blocks_2_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(148499,40514,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(148500,40514,'blocks_2_split_5050_content_actions',''),(148501,40514,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(148502,40514,'blocks_2_split_5050_content',''),(148503,40514,'_blocks_2_split_5050_content','field_61767afceb8ba'),(148504,40515,'hero_style','default'),(148505,40515,'_hero_style','field_62051d9dc5324'),(148506,40515,'hero_image_pos_x','right'),(148507,40515,'_hero_image_pos_x','field_62ec3d05390bb'),(148508,40515,'hero_image_pos_y','top'),(148509,40515,'_hero_image_pos_y','field_62ec3d05390bc'),(148510,40515,'hero_image_pos',''),(148511,40515,'_hero_image_pos','field_62ec3d05390ba'),(148512,40515,'hero_title','Biomechanics Education'),(148513,40515,'_hero_title','field_617571fe285e8'),(148514,40515,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(148515,40515,'_hero_text','field_6175723c285e9'),(148516,40515,'hero_actions','1'),(148517,40515,'_hero_actions','field_61757270285ea'),(148518,40515,'hero_icon',''),(148519,40515,'_hero_icon','field_61a6182199d03'),(148520,40515,'fft_hide_from_listings','0'),(148521,40515,'_fft_hide_from_listings','field_61f1320446ab2'),(148522,40515,'fft_page_format','default'),(148523,40515,'_fft_page_format','field_61ae213f1f218'),(148524,40515,'fft_hide_nav','0'),(148525,40515,'_fft_hide_nav','field_635bd5e43527c'),(148526,40515,'fft_hide_header_call_to_action','0'),(148527,40515,'_fft_hide_header_call_to_action','field_635bd6723527d'),(148528,40515,'fft_page_sitemap','0'),(148529,40515,'_fft_page_sitemap','field_61af9b34e8181'),(148530,40515,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:8:\"template\";i:7;s:18:\"testimonial_slider\";}'),(148531,40515,'_blocks','field_6176696113096'),(148532,40515,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(148533,40515,'_hero_actions_0_button','field_61757281285eb'),(148534,40515,'_thumbnail_id','38951'),(148535,40515,'__thumbnail_id','field_617570855ddaf'),(148536,40515,'hide_hero','0'),(148537,40515,'_hide_hero','field_66a2380fcda39'),(148538,40515,'blocks_3_acfe_flexible_toggle',''),(148539,40515,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(148540,40515,'blocks_3_acfe_flexible_layout_title','Text Block'),(148541,40515,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(148542,40515,'blocks_3_options_theme','#ffffff'),(148543,40515,'_blocks_3_options_theme','field_6176830e2ad17'),(148544,40515,'blocks_3_options',''),(148545,40515,'_blocks_3_options','field_6176830e2ad16'),(148546,40515,'blocks_3_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines '),(148547,40515,'_blocks_3_text_block_heading','field_617669d413097'),(148548,40515,'blocks_3_text_block_content',''),(148549,40515,'_blocks_3_text_block_content','field_617669ec13098'),(148550,40515,'blocks_4_acfe_flexible_toggle',''),(148551,40515,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(148552,40515,'blocks_4_acfe_flexible_layout_title','Cards'),(148553,40515,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(148554,40515,'blocks_4_options_theme','#ffffff'),(148555,40515,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(148556,40515,'blocks_4_options_format','carousel'),(148557,40515,'_blocks_4_options_format','field_617a7b15245b5'),(148558,40515,'blocks_4_options_style','default'),(148559,40515,'_blocks_4_options_style','field_6278ffb63484a'),(148560,40515,'blocks_4_options_cards_current_listing','0'),(148561,40515,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(148562,40515,'blocks_4_options_cards_content','custom'),(148563,40515,'_blocks_4_options_cards_content','field_617aba6122688'),(148564,40515,'blocks_4_options',''),(148565,40515,'_blocks_4_options','field_617a7b15245b3'),(148566,40515,'blocks_4_cards_custom_0_image','39215'),(148567,40515,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(148568,40515,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(148569,40515,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(148570,40515,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(148571,40515,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(148572,40515,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(148573,40515,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(148574,40515,'blocks_4_cards_custom_1_image','39243'),(148575,40515,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(148576,40515,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(148577,40515,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(148578,40515,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(148579,40515,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(148580,40515,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(148581,40515,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(148582,40515,'blocks_4_cards_custom_2_image','39247'),(148583,40515,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(148584,40515,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(148585,40515,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(148586,40515,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(148587,40515,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(148588,40515,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(148589,40515,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(148590,40515,'blocks_4_cards_custom_3_image','39256'),(148591,40515,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(148592,40515,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(148593,40515,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(148594,40515,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(148595,40515,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(148596,40515,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(148597,40515,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(148598,40515,'blocks_4_cards_custom_4_image','39251'),(148599,40515,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(148600,40515,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(148601,40515,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(148602,40515,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(148603,40515,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(148604,40515,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(148605,40515,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(148606,40515,'blocks_4_cards_custom_5_image','39240'),(148607,40515,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(148608,40515,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(148609,40515,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(148610,40515,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(148611,40515,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(148612,40515,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(148613,40515,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(148614,40515,'blocks_4_cards_custom_6_image','39454'),(148615,40515,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(148616,40515,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(148617,40515,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(148618,40515,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(148619,40515,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(148620,40515,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(148621,40515,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(148622,40515,'blocks_4_cards_custom','7'),(148623,40515,'_blocks_4_cards_custom','field_6194cbf84d386'),(148624,40515,'blocks_5_acfe_flexible_toggle',''),(148625,40515,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(148626,40515,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(148627,40515,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(148628,40515,'blocks_5_options_theme','#ffffff'),(148629,40515,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(148630,40515,'blocks_5_options_reverse','1'),(148631,40515,'_blocks_5_options_reverse','field_61768049bb8ac'),(148632,40515,'blocks_5_options',''),(148633,40515,'_blocks_5_options','field_617682517c334'),(148634,40515,'blocks_5_split_5050_image','38960'),(148635,40515,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(148636,40515,'blocks_5_split_5050_video',''),(148637,40515,'_blocks_5_split_5050_video','field_6239f3160848a'),(148638,40515,'blocks_5_split_5050_content_title',''),(148639,40515,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(148640,40515,'blocks_5_split_5050_content_heading','Biomechanics Education & Future Fit'),(148641,40515,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(148642,40515,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex LMS platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Our advanced learning management system</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(148643,40515,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(148644,40515,'blocks_5_split_5050_content_actions','1'),(148645,40515,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(148646,40515,'blocks_5_split_5050_content',''),(148647,40515,'_blocks_5_split_5050_content','field_61767afceb8ba'),(148648,40515,'blocks_6_acfe_flexible_toggle',''),(148649,40515,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(148650,40515,'blocks_6_acfe_flexible_layout_title','Template'),(148651,40515,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(148652,40515,'blocks_6_template','39207'),(148653,40515,'_blocks_6_template','field_617bdd570fe01'),(148654,40515,'blocks_7_acfe_flexible_toggle',''),(148655,40515,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(148656,40515,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(148657,40515,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(148658,40515,'blocks_7_testimonial_slider_content_title',''),(148659,40515,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(148660,40515,'blocks_7_testimonial_slider_content_heading','Testimonials'),(148661,40515,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(148662,40515,'blocks_7_testimonial_slider_content_text',''),(148663,40515,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(148664,40515,'blocks_7_testimonial_slider_content_actions',''),(148665,40515,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(148666,40515,'blocks_7_testimonial_slider_content',''),(148667,40515,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(148668,40515,'blocks_7_testimonial_slider_items','a:5:{i:0;s:5:\"38964\";i:1;s:5:\"38965\";i:2;s:5:\"39168\";i:3;s:5:\"39170\";i:4;s:5:\"39169\";}'),(148669,40515,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(148670,40515,'blocks_7_testimonial_slider_ambassador_bool','0'),(148671,40515,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(148672,40515,'blocks_1_acfe_flexible_toggle',''),(148673,40515,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(148674,40515,'blocks_1_acfe_flexible_layout_title','Video'),(148675,40515,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(148676,40515,'blocks_1_size','large'),(148677,40515,'_blocks_1_size','field_6487038f297c1'),(148678,40515,'blocks_1_row_content_title',''),(148679,40515,'_blocks_1_row_content_title','field_64870132a865d'),(148680,40515,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(148681,40515,'_blocks_1_row_content_heading','field_64870142a865e'),(148682,40515,'blocks_1_row_content_text',''),(148683,40515,'_blocks_1_row_content_text','field_64870148a865f'),(148684,40515,'blocks_1_row_content',''),(148685,40515,'_blocks_1_row_content','field_6487008ba865c'),(148686,40515,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(148687,40515,'_blocks_1_video_src','field_6193c4a98ec07'),(148688,40515,'blocks_1_video_thumbnail','39175'),(148689,40515,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(148690,40515,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(148691,40515,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(148692,40515,'blocks_0_acfe_flexible_toggle',''),(148693,40515,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(148694,40515,'blocks_0_acfe_flexible_layout_title','Template'),(148695,40515,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(148696,40515,'blocks_0_template','39087'),(148697,40515,'_blocks_0_template','field_617bdd570fe01'),(148698,40515,'blocks_2_acfe_flexible_toggle',''),(148699,40515,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(148700,40515,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(148701,40515,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(148702,40515,'blocks_2_options_theme','#b61234'),(148703,40515,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(148704,40515,'blocks_2_options_reverse','0'),(148705,40515,'_blocks_2_options_reverse','field_61768049bb8ac'),(148706,40515,'blocks_2_options',''),(148707,40515,'_blocks_2_options','field_617682517c334'),(148708,40515,'blocks_2_split_5050_image','38950'),(148709,40515,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(148710,40515,'blocks_2_split_5050_video',''),(148711,40515,'_blocks_2_split_5050_video','field_6239f3160848a'),(148712,40515,'blocks_2_split_5050_content_title',''),(148713,40515,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(148714,40515,'blocks_2_split_5050_content_heading','What is Biomechanics Education?'),(148715,40515,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(148716,40515,'blocks_2_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(148717,40515,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(148718,40515,'blocks_2_split_5050_content_actions',''),(148719,40515,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(148720,40515,'blocks_2_split_5050_content',''),(148721,40515,'_blocks_2_split_5050_content','field_61767afceb8ba'),(148722,40516,'hero_style','default'),(148723,40516,'_hero_style','field_62051d9dc5324'),(148724,40516,'hero_image_pos_x','right'),(148725,40516,'_hero_image_pos_x','field_62ec3d05390bb'),(148726,40516,'hero_image_pos_y','top'),(148727,40516,'_hero_image_pos_y','field_62ec3d05390bc'),(148728,40516,'hero_image_pos',''),(148729,40516,'_hero_image_pos','field_62ec3d05390ba'),(148730,40516,'hero_title','Biomechanics Education'),(148731,40516,'_hero_title','field_617571fe285e8'),(148732,40516,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(148733,40516,'_hero_text','field_6175723c285e9'),(148734,40516,'hero_actions','1'),(148735,40516,'_hero_actions','field_61757270285ea'),(148736,40516,'hero_icon',''),(148737,40516,'_hero_icon','field_61a6182199d03'),(148738,40516,'fft_hide_from_listings','0'),(148739,40516,'_fft_hide_from_listings','field_61f1320446ab2'),(148740,40516,'fft_page_format','default'),(148741,40516,'_fft_page_format','field_61ae213f1f218'),(148742,40516,'fft_hide_nav','0'),(148743,40516,'_fft_hide_nav','field_635bd5e43527c'),(148744,40516,'fft_hide_header_call_to_action','0'),(148745,40516,'_fft_hide_header_call_to_action','field_635bd6723527d'),(148746,40516,'fft_page_sitemap','0'),(148747,40516,'_fft_page_sitemap','field_61af9b34e8181'),(148748,40516,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:8:\"template\";i:7;s:18:\"testimonial_slider\";}'),(148749,40516,'_blocks','field_6176696113096'),(148750,40516,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(148751,40516,'_hero_actions_0_button','field_61757281285eb'),(148752,40516,'_thumbnail_id','38951'),(148753,40516,'__thumbnail_id','field_617570855ddaf'),(148754,40516,'hide_hero','0'),(148755,40516,'_hide_hero','field_66a2380fcda39'),(148756,40516,'blocks_3_acfe_flexible_toggle',''),(148757,40516,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(148758,40516,'blocks_3_acfe_flexible_layout_title','Text Block'),(148759,40516,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(148760,40516,'blocks_3_options_theme','#ffffff'),(148761,40516,'_blocks_3_options_theme','field_6176830e2ad17'),(148762,40516,'blocks_3_options',''),(148763,40516,'_blocks_3_options','field_6176830e2ad16'),(148764,40516,'blocks_3_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines '),(148765,40516,'_blocks_3_text_block_heading','field_617669d413097'),(148766,40516,'blocks_3_text_block_content',''),(148767,40516,'_blocks_3_text_block_content','field_617669ec13098'),(148768,40516,'blocks_4_acfe_flexible_toggle',''),(148769,40516,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(148770,40516,'blocks_4_acfe_flexible_layout_title','Cards'),(148771,40516,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(148772,40516,'blocks_4_options_theme','#ffffff'),(148773,40516,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(148774,40516,'blocks_4_options_format','carousel'),(148775,40516,'_blocks_4_options_format','field_617a7b15245b5'),(148776,40516,'blocks_4_options_style','default'),(148777,40516,'_blocks_4_options_style','field_6278ffb63484a'),(148778,40516,'blocks_4_options_cards_current_listing','0'),(148779,40516,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(148780,40516,'blocks_4_options_cards_content','custom'),(148781,40516,'_blocks_4_options_cards_content','field_617aba6122688'),(148782,40516,'blocks_4_options',''),(148783,40516,'_blocks_4_options','field_617a7b15245b3'),(148784,40516,'blocks_4_cards_custom_0_image','39215'),(148785,40516,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(148786,40516,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(148787,40516,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(148788,40516,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(148789,40516,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(148790,40516,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(148791,40516,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(148792,40516,'blocks_4_cards_custom_1_image','39243'),(148793,40516,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(148794,40516,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(148795,40516,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(148796,40516,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(148797,40516,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(148798,40516,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(148799,40516,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(148800,40516,'blocks_4_cards_custom_2_image','39247'),(148801,40516,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(148802,40516,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(148803,40516,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(148804,40516,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(148805,40516,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(148806,40516,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(148807,40516,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(148808,40516,'blocks_4_cards_custom_3_image','39256'),(148809,40516,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(148810,40516,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(148811,40516,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(148812,40516,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(148813,40516,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(148814,40516,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(148815,40516,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(148816,40516,'blocks_4_cards_custom_4_image','39251'),(148817,40516,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(148818,40516,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(148819,40516,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(148820,40516,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(148821,40516,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(148822,40516,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(148823,40516,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(148824,40516,'blocks_4_cards_custom_5_image','39240'),(148825,40516,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(148826,40516,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(148827,40516,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(148828,40516,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(148829,40516,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(148830,40516,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(148831,40516,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(148832,40516,'blocks_4_cards_custom_6_image','39454'),(148833,40516,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(148834,40516,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(148835,40516,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(148836,40516,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(148837,40516,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(148838,40516,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(148839,40516,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(148840,40516,'blocks_4_cards_custom','7'),(148841,40516,'_blocks_4_cards_custom','field_6194cbf84d386'),(148842,40516,'blocks_5_acfe_flexible_toggle',''),(148843,40516,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(148844,40516,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(148845,40516,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(148846,40516,'blocks_5_options_theme','#f5f5f5'),(148847,40516,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(148848,40516,'blocks_5_options_reverse','1'),(148849,40516,'_blocks_5_options_reverse','field_61768049bb8ac'),(148850,40516,'blocks_5_options',''),(148851,40516,'_blocks_5_options','field_617682517c334'),(148852,40516,'blocks_5_split_5050_image','38960'),(148853,40516,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(148854,40516,'blocks_5_split_5050_video',''),(148855,40516,'_blocks_5_split_5050_video','field_6239f3160848a'),(148856,40516,'blocks_5_split_5050_content_title',''),(148857,40516,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(148858,40516,'blocks_5_split_5050_content_heading','Biomechanics Education & Future Fit'),(148859,40516,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(148860,40516,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex LMS platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Our advanced learning management system</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(148861,40516,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(148862,40516,'blocks_5_split_5050_content_actions','1'),(148863,40516,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(148864,40516,'blocks_5_split_5050_content',''),(148865,40516,'_blocks_5_split_5050_content','field_61767afceb8ba'),(148866,40516,'blocks_6_acfe_flexible_toggle',''),(148867,40516,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(148868,40516,'blocks_6_acfe_flexible_layout_title','Template'),(148869,40516,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(148870,40516,'blocks_6_template','39207'),(148871,40516,'_blocks_6_template','field_617bdd570fe01'),(148872,40516,'blocks_7_acfe_flexible_toggle',''),(148873,40516,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(148874,40516,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(148875,40516,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(148876,40516,'blocks_7_testimonial_slider_content_title',''),(148877,40516,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(148878,40516,'blocks_7_testimonial_slider_content_heading','Testimonials'),(148879,40516,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(148880,40516,'blocks_7_testimonial_slider_content_text',''),(148881,40516,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(148882,40516,'blocks_7_testimonial_slider_content_actions',''),(148883,40516,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(148884,40516,'blocks_7_testimonial_slider_content',''),(148885,40516,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(148886,40516,'blocks_7_testimonial_slider_items','a:5:{i:0;s:5:\"38964\";i:1;s:5:\"38965\";i:2;s:5:\"39168\";i:3;s:5:\"39170\";i:4;s:5:\"39169\";}'),(148887,40516,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(148888,40516,'blocks_7_testimonial_slider_ambassador_bool','0'),(148889,40516,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(148890,40516,'blocks_1_acfe_flexible_toggle',''),(148891,40516,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(148892,40516,'blocks_1_acfe_flexible_layout_title','Video'),(148893,40516,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(148894,40516,'blocks_1_size','large'),(148895,40516,'_blocks_1_size','field_6487038f297c1'),(148896,40516,'blocks_1_row_content_title',''),(148897,40516,'_blocks_1_row_content_title','field_64870132a865d'),(148898,40516,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(148899,40516,'_blocks_1_row_content_heading','field_64870142a865e'),(148900,40516,'blocks_1_row_content_text',''),(148901,40516,'_blocks_1_row_content_text','field_64870148a865f'),(148902,40516,'blocks_1_row_content',''),(148903,40516,'_blocks_1_row_content','field_6487008ba865c'),(148904,40516,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(148905,40516,'_blocks_1_video_src','field_6193c4a98ec07'),(148906,40516,'blocks_1_video_thumbnail','39175'),(148907,40516,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(148908,40516,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(148909,40516,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(148910,40516,'blocks_0_acfe_flexible_toggle',''),(148911,40516,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(148912,40516,'blocks_0_acfe_flexible_layout_title','Template'),(148913,40516,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(148914,40516,'blocks_0_template','39087'),(148915,40516,'_blocks_0_template','field_617bdd570fe01'),(148916,40516,'blocks_2_acfe_flexible_toggle',''),(148917,40516,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(148918,40516,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(148919,40516,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(148920,40516,'blocks_2_options_theme','#b61234'),(148921,40516,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(148922,40516,'blocks_2_options_reverse','0'),(148923,40516,'_blocks_2_options_reverse','field_61768049bb8ac'),(148924,40516,'blocks_2_options',''),(148925,40516,'_blocks_2_options','field_617682517c334'),(148926,40516,'blocks_2_split_5050_image','38950'),(148927,40516,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(148928,40516,'blocks_2_split_5050_video',''),(148929,40516,'_blocks_2_split_5050_video','field_6239f3160848a'),(148930,40516,'blocks_2_split_5050_content_title',''),(148931,40516,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(148932,40516,'blocks_2_split_5050_content_heading','What is Biomechanics Education?'),(148933,40516,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(148934,40516,'blocks_2_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(148935,40516,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(148936,40516,'blocks_2_split_5050_content_actions',''),(148937,40516,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(148938,40516,'blocks_2_split_5050_content',''),(148939,40516,'_blocks_2_split_5050_content','field_61767afceb8ba'),(148940,39148,'_thumbnail_id','39252'),(148941,40517,'hero_style','default'),(148942,40517,'_hero_style','field_62051d9dc5324'),(148943,40517,'hero_image_pos_x','right'),(148944,40517,'_hero_image_pos_x','field_62ec3d05390bb'),(148945,40517,'hero_image_pos_y','top'),(148946,40517,'_hero_image_pos_y','field_62ec3d05390bc'),(148947,40517,'hero_image_pos',''),(148948,40517,'_hero_image_pos','field_62ec3d05390ba'),(148949,40517,'hero_title','Getting Started'),(148950,40517,'_hero_title','field_617571fe285e8'),(148951,40517,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(148952,40517,'_hero_text','field_6175723c285e9'),(148953,40517,'hero_actions',''),(148954,40517,'_hero_actions','field_61757270285ea'),(148955,40517,'hero_icon','bars'),(148956,40517,'_hero_icon','field_61a6182199d03'),(148957,40517,'fft_hide_from_listings','0'),(148958,40517,'_fft_hide_from_listings','field_61f1320446ab2'),(148959,40517,'fft_page_format','default'),(148960,40517,'_fft_page_format','field_61ae213f1f218'),(148961,40517,'fft_hide_nav','0'),(148962,40517,'_fft_hide_nav','field_635bd5e43527c'),(148963,40517,'fft_hide_header_call_to_action','0'),(148964,40517,'_fft_hide_header_call_to_action','field_635bd6723527d'),(148965,40517,'fft_page_sitemap','0'),(148966,40517,'_fft_page_sitemap','field_61af9b34e8181'),(148967,40517,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:4:\"form\";}'),(148968,40517,'_blocks','field_6176696113096'),(148969,40517,'hide_hero','0'),(148970,40517,'_hide_hero','field_66a2380fcda39'),(148971,40517,'blocks_0_acfe_flexible_toggle',''),(148972,40517,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(148973,40517,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(148974,40517,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(148975,40517,'blocks_0_options_theme','#ffffff'),(148976,40517,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(148977,40517,'blocks_0_options_reverse','0'),(148978,40517,'_blocks_0_options_reverse','field_61768049bb8ac'),(148979,40517,'blocks_0_options',''),(148980,40517,'_blocks_0_options','field_617682517c334'),(148981,40517,'blocks_0_split_5050_image','39152'),(148982,40517,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(148983,40517,'blocks_0_split_5050_video',''),(148984,40517,'_blocks_0_split_5050_video','field_6239f3160848a'),(148985,40517,'blocks_0_split_5050_content_title',''),(148986,40517,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(148987,40517,'blocks_0_split_5050_content_heading','About Our Career Guides'),(148988,40517,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(148989,40517,'blocks_0_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(148990,40517,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(148991,40517,'blocks_0_split_5050_content_actions',''),(148992,40517,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(148993,40517,'blocks_0_split_5050_content',''),(148994,40517,'_blocks_0_split_5050_content','field_61767afceb8ba'),(148995,40517,'blocks_1_acfe_flexible_toggle',''),(148996,40517,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(148997,40517,'blocks_1_acfe_flexible_layout_title','Template'),(148998,40517,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(148999,40517,'blocks_1_template','39087'),(149000,40517,'_blocks_1_template','field_617bdd570fe01'),(149001,40517,'blocks_2_acfe_flexible_toggle',''),(149002,40517,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(149003,40517,'blocks_2_acfe_flexible_layout_title','Text Block'),(149004,40517,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(149005,40517,'blocks_2_options_theme','#ffffff'),(149006,40517,'_blocks_2_options_theme','field_6176830e2ad17'),(149007,40517,'blocks_2_options',''),(149008,40517,'_blocks_2_options','field_6176830e2ad16'),(149009,40517,'blocks_2_text_block_heading','Learn More About Biomechanics in Different Sectors'),(149010,40517,'_blocks_2_text_block_heading','field_617669d413097'),(149011,40517,'blocks_2_text_block_content',''),(149012,40517,'_blocks_2_text_block_content','field_617669ec13098'),(149013,40517,'blocks_3_acfe_flexible_toggle',''),(149014,40517,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(149015,40517,'blocks_3_acfe_flexible_layout_title','Cards'),(149016,40517,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(149017,40517,'blocks_3_options_theme','#ffffff'),(149018,40517,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(149019,40517,'blocks_3_options_format','carousel'),(149020,40517,'_blocks_3_options_format','field_617a7b15245b5'),(149021,40517,'blocks_3_options_style','default'),(149022,40517,'_blocks_3_options_style','field_6278ffb63484a'),(149023,40517,'blocks_3_options_cards_current_listing','0'),(149024,40517,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(149025,40517,'blocks_3_options_cards_content','custom'),(149026,40517,'_blocks_3_options_cards_content','field_617aba6122688'),(149027,40517,'blocks_3_options',''),(149028,40517,'_blocks_3_options','field_617a7b15245b3'),(149029,40517,'blocks_3_cards_custom_0_image','39215'),(149030,40517,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(149031,40517,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(149032,40517,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(149033,40517,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(149034,40517,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(149035,40517,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(149036,40517,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(149037,40517,'blocks_3_cards_custom_1_image','39243'),(149038,40517,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(149039,40517,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(149040,40517,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(149041,40517,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(149042,40517,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(149043,40517,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(149044,40517,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(149045,40517,'blocks_3_cards_custom_2_image','39247'),(149046,40517,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(149047,40517,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(149048,40517,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(149049,40517,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(149050,40517,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(149051,40517,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(149052,40517,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(149053,40517,'blocks_3_cards_custom_3_image','39256'),(149054,40517,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(149055,40517,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(149056,40517,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(149057,40517,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(149058,40517,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(149059,40517,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(149060,40517,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(149061,40517,'blocks_3_cards_custom_4_image','39251'),(149062,40517,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(149063,40517,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches'),(149064,40517,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(149065,40517,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(149066,40517,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(149067,40517,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(149068,40517,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(149069,40517,'blocks_3_cards_custom_5_image','39240'),(149070,40517,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(149071,40517,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(149072,40517,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(149073,40517,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(149074,40517,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(149075,40517,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(149076,40517,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(149077,40517,'blocks_3_cards_custom_6_image','39260'),(149078,40517,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(149079,40517,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(149080,40517,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(149081,40517,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(149082,40517,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(149083,40517,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(149084,40517,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(149085,40517,'blocks_3_cards_custom','7'),(149086,40517,'_blocks_3_cards_custom','field_6194cbf84d386'),(149087,40517,'blocks_4_acfe_flexible_toggle',''),(149088,40517,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(149089,40517,'blocks_4_acfe_flexible_layout_title','Form'),(149090,40517,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(149091,40517,'blocks_4_row_content_format','standard'),(149092,40517,'_blocks_4_row_content_format','field_6481ead962881'),(149093,40517,'blocks_4_row_content_title','Ready to get started?'),(149094,40517,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(149095,40517,'blocks_4_row_content_heading','Ready to get started?'),(149096,40517,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(149097,40517,'blocks_4_row_content_text','Complete The Form to Get Your Free Price Guide'),(149098,40517,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(149099,40517,'blocks_4_row_content_actions',''),(149100,40517,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(149101,40517,'blocks_4_row_content',''),(149102,40517,'_blocks_4_row_content','field_61a0f5f5b3db0'),(149103,40517,'blocks_4_row_form',''),(149104,40517,'_blocks_4_row_form','field_61a4ff2c0b08e'),(149105,40517,'blocks_4_row_form_button_label',''),(149106,40517,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(149107,40517,'_thumbnail_id','39454'),(149108,40517,'__thumbnail_id','field_617570855ddaf'),(149109,39148,'blocks_0_acfe_flexible_toggle',''),(149110,39148,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(149111,39148,'blocks_0_acfe_flexible_layout_title','Template'),(149112,39148,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(149113,39148,'blocks_0_template','39087'),(149114,39148,'_blocks_0_template','field_617bdd570fe01'),(149115,39148,'blocks_1_acfe_flexible_toggle',''),(149116,39148,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(149117,39148,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(149118,39148,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(149119,39148,'blocks_1_options_theme','#ffffff'),(149120,39148,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(149121,39148,'blocks_1_options_reverse','0'),(149122,39148,'_blocks_1_options_reverse','field_61768049bb8ac'),(149123,39148,'blocks_1_options',''),(149124,39148,'_blocks_1_options','field_617682517c334'),(149125,39148,'blocks_1_split_5050_image','39152'),(149126,39148,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(149127,39148,'blocks_1_split_5050_video',''),(149128,39148,'_blocks_1_split_5050_video','field_6239f3160848a'),(149129,39148,'blocks_1_split_5050_content_title',''),(149130,39148,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(149131,39148,'blocks_1_split_5050_content_heading','About Our Career Guides'),(149132,39148,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(149133,39148,'blocks_1_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(149134,39148,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(149135,39148,'blocks_1_split_5050_content_actions',''),(149136,39148,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(149137,39148,'blocks_1_split_5050_content',''),(149138,39148,'_blocks_1_split_5050_content','field_61767afceb8ba'),(149139,40518,'hero_style','default'),(149140,40518,'_hero_style','field_62051d9dc5324'),(149141,40518,'hero_image_pos_x','right'),(149142,40518,'_hero_image_pos_x','field_62ec3d05390bb'),(149143,40518,'hero_image_pos_y','top'),(149144,40518,'_hero_image_pos_y','field_62ec3d05390bc'),(149145,40518,'hero_image_pos',''),(149146,40518,'_hero_image_pos','field_62ec3d05390ba'),(149147,40518,'hero_title','Getting Started'),(149148,40518,'_hero_title','field_617571fe285e8'),(149149,40518,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(149150,40518,'_hero_text','field_6175723c285e9'),(149151,40518,'hero_actions',''),(149152,40518,'_hero_actions','field_61757270285ea'),(149153,40518,'hero_icon','bars'),(149154,40518,'_hero_icon','field_61a6182199d03'),(149155,40518,'fft_hide_from_listings','0'),(149156,40518,'_fft_hide_from_listings','field_61f1320446ab2'),(149157,40518,'fft_page_format','default'),(149158,40518,'_fft_page_format','field_61ae213f1f218'),(149159,40518,'fft_hide_nav','0'),(149160,40518,'_fft_hide_nav','field_635bd5e43527c'),(149161,40518,'fft_hide_header_call_to_action','0'),(149162,40518,'_fft_hide_header_call_to_action','field_635bd6723527d'),(149163,40518,'fft_page_sitemap','0'),(149164,40518,'_fft_page_sitemap','field_61af9b34e8181'),(149165,40518,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:4:\"form\";}'),(149166,40518,'_blocks','field_6176696113096'),(149167,40518,'hide_hero','0'),(149168,40518,'_hide_hero','field_66a2380fcda39'),(149169,40518,'blocks_2_acfe_flexible_toggle',''),(149170,40518,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(149171,40518,'blocks_2_acfe_flexible_layout_title','Text Block'),(149172,40518,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(149173,40518,'blocks_2_options_theme','#ffffff'),(149174,40518,'_blocks_2_options_theme','field_6176830e2ad17'),(149175,40518,'blocks_2_options',''),(149176,40518,'_blocks_2_options','field_6176830e2ad16'),(149177,40518,'blocks_2_text_block_heading','Learn More About Biomechanics in Different Sectors'),(149178,40518,'_blocks_2_text_block_heading','field_617669d413097'),(149179,40518,'blocks_2_text_block_content',''),(149180,40518,'_blocks_2_text_block_content','field_617669ec13098'),(149181,40518,'blocks_3_acfe_flexible_toggle',''),(149182,40518,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(149183,40518,'blocks_3_acfe_flexible_layout_title','Cards'),(149184,40518,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(149185,40518,'blocks_3_options_theme','#ffffff'),(149186,40518,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(149187,40518,'blocks_3_options_format','carousel'),(149188,40518,'_blocks_3_options_format','field_617a7b15245b5'),(149189,40518,'blocks_3_options_style','default'),(149190,40518,'_blocks_3_options_style','field_6278ffb63484a'),(149191,40518,'blocks_3_options_cards_current_listing','0'),(149192,40518,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(149193,40518,'blocks_3_options_cards_content','custom'),(149194,40518,'_blocks_3_options_cards_content','field_617aba6122688'),(149195,40518,'blocks_3_options',''),(149196,40518,'_blocks_3_options','field_617a7b15245b3'),(149197,40518,'blocks_3_cards_custom_0_image','39215'),(149198,40518,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(149199,40518,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(149200,40518,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(149201,40518,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(149202,40518,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(149203,40518,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(149204,40518,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(149205,40518,'blocks_3_cards_custom_1_image','39243'),(149206,40518,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(149207,40518,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(149208,40518,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(149209,40518,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(149210,40518,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(149211,40518,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(149212,40518,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(149213,40518,'blocks_3_cards_custom_2_image','39247'),(149214,40518,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(149215,40518,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(149216,40518,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(149217,40518,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(149218,40518,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(149219,40518,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(149220,40518,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(149221,40518,'blocks_3_cards_custom_3_image','39256'),(149222,40518,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(149223,40518,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(149224,40518,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(149225,40518,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(149226,40518,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(149227,40518,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(149228,40518,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(149229,40518,'blocks_3_cards_custom_4_image','39251'),(149230,40518,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(149231,40518,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches'),(149232,40518,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(149233,40518,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(149234,40518,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(149235,40518,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(149236,40518,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(149237,40518,'blocks_3_cards_custom_5_image','39240'),(149238,40518,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(149239,40518,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(149240,40518,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(149241,40518,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(149242,40518,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(149243,40518,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(149244,40518,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(149245,40518,'blocks_3_cards_custom_6_image','39260'),(149246,40518,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(149247,40518,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(149248,40518,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(149249,40518,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(149250,40518,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(149251,40518,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(149252,40518,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(149253,40518,'blocks_3_cards_custom','7'),(149254,40518,'_blocks_3_cards_custom','field_6194cbf84d386'),(149255,40518,'blocks_4_acfe_flexible_toggle',''),(149256,40518,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(149257,40518,'blocks_4_acfe_flexible_layout_title','Form'),(149258,40518,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(149259,40518,'blocks_4_row_content_format','standard'),(149260,40518,'_blocks_4_row_content_format','field_6481ead962881'),(149261,40518,'blocks_4_row_content_title','Ready to get started?'),(149262,40518,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(149263,40518,'blocks_4_row_content_heading','Ready to get started?'),(149264,40518,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(149265,40518,'blocks_4_row_content_text','Complete The Form to Get Your Free Price Guide'),(149266,40518,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(149267,40518,'blocks_4_row_content_actions',''),(149268,40518,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(149269,40518,'blocks_4_row_content',''),(149270,40518,'_blocks_4_row_content','field_61a0f5f5b3db0'),(149271,40518,'blocks_4_row_form',''),(149272,40518,'_blocks_4_row_form','field_61a4ff2c0b08e'),(149273,40518,'blocks_4_row_form_button_label',''),(149274,40518,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(149275,40518,'_thumbnail_id','39454'),(149276,40518,'__thumbnail_id','field_617570855ddaf'),(149277,40518,'blocks_0_acfe_flexible_toggle',''),(149278,40518,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(149279,40518,'blocks_0_acfe_flexible_layout_title','Template'),(149280,40518,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(149281,40518,'blocks_0_template','39087'),(149282,40518,'_blocks_0_template','field_617bdd570fe01'),(149283,40518,'blocks_1_acfe_flexible_toggle',''),(149284,40518,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(149285,40518,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(149286,40518,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(149287,40518,'blocks_1_options_theme','#ffffff'),(149288,40518,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(149289,40518,'blocks_1_options_reverse','0'),(149290,40518,'_blocks_1_options_reverse','field_61768049bb8ac'),(149291,40518,'blocks_1_options',''),(149292,40518,'_blocks_1_options','field_617682517c334'),(149293,40518,'blocks_1_split_5050_image','39152'),(149294,40518,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(149295,40518,'blocks_1_split_5050_video',''),(149296,40518,'_blocks_1_split_5050_video','field_6239f3160848a'),(149297,40518,'blocks_1_split_5050_content_title',''),(149298,40518,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(149299,40518,'blocks_1_split_5050_content_heading','About Our Career Guides'),(149300,40518,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(149301,40518,'blocks_1_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(149302,40518,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(149303,40518,'blocks_1_split_5050_content_actions',''),(149304,40518,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(149305,40518,'blocks_1_split_5050_content',''),(149306,40518,'_blocks_1_split_5050_content','field_61767afceb8ba'),(149307,40519,'hero_style','default'),(149308,40519,'_hero_style','field_62051d9dc5324'),(149309,40519,'hero_image_pos_x','right'),(149310,40519,'_hero_image_pos_x','field_62ec3d05390bb'),(149311,40519,'hero_image_pos_y','top'),(149312,40519,'_hero_image_pos_y','field_62ec3d05390bc'),(149313,40519,'hero_image_pos',''),(149314,40519,'_hero_image_pos','field_62ec3d05390ba'),(149315,40519,'hero_title','Getting Started'),(149316,40519,'_hero_title','field_617571fe285e8'),(149317,40519,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(149318,40519,'_hero_text','field_6175723c285e9'),(149319,40519,'hero_actions',''),(149320,40519,'_hero_actions','field_61757270285ea'),(149321,40519,'hero_icon','bars'),(149322,40519,'_hero_icon','field_61a6182199d03'),(149323,40519,'fft_hide_from_listings','0'),(149324,40519,'_fft_hide_from_listings','field_61f1320446ab2'),(149325,40519,'fft_page_format','default'),(149326,40519,'_fft_page_format','field_61ae213f1f218'),(149327,40519,'fft_hide_nav','0'),(149328,40519,'_fft_hide_nav','field_635bd5e43527c'),(149329,40519,'fft_hide_header_call_to_action','0'),(149330,40519,'_fft_hide_header_call_to_action','field_635bd6723527d'),(149331,40519,'fft_page_sitemap','0'),(149332,40519,'_fft_page_sitemap','field_61af9b34e8181'),(149333,40519,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:4:\"form\";}'),(149334,40519,'_blocks','field_6176696113096'),(149335,40519,'hide_hero','0'),(149336,40519,'_hide_hero','field_66a2380fcda39'),(149337,40519,'blocks_2_acfe_flexible_toggle',''),(149338,40519,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(149339,40519,'blocks_2_acfe_flexible_layout_title','Text Block'),(149340,40519,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(149341,40519,'blocks_2_options_theme','#ffffff'),(149342,40519,'_blocks_2_options_theme','field_6176830e2ad17'),(149343,40519,'blocks_2_options',''),(149344,40519,'_blocks_2_options','field_6176830e2ad16'),(149345,40519,'blocks_2_text_block_heading','Learn More About Biomechanics in Different Sectors'),(149346,40519,'_blocks_2_text_block_heading','field_617669d413097'),(149347,40519,'blocks_2_text_block_content',''),(149348,40519,'_blocks_2_text_block_content','field_617669ec13098'),(149349,40519,'blocks_3_acfe_flexible_toggle',''),(149350,40519,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(149351,40519,'blocks_3_acfe_flexible_layout_title','Cards'),(149352,40519,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(149353,40519,'blocks_3_options_theme','#ffffff'),(149354,40519,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(149355,40519,'blocks_3_options_format','carousel'),(149356,40519,'_blocks_3_options_format','field_617a7b15245b5'),(149357,40519,'blocks_3_options_style','default'),(149358,40519,'_blocks_3_options_style','field_6278ffb63484a'),(149359,40519,'blocks_3_options_cards_current_listing','0'),(149360,40519,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(149361,40519,'blocks_3_options_cards_content','custom'),(149362,40519,'_blocks_3_options_cards_content','field_617aba6122688'),(149363,40519,'blocks_3_options',''),(149364,40519,'_blocks_3_options','field_617a7b15245b3'),(149365,40519,'blocks_3_cards_custom_0_image','39215'),(149366,40519,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(149367,40519,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(149368,40519,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(149369,40519,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(149370,40519,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(149371,40519,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(149372,40519,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(149373,40519,'blocks_3_cards_custom_1_image','39243'),(149374,40519,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(149375,40519,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(149376,40519,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(149377,40519,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(149378,40519,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(149379,40519,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(149380,40519,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(149381,40519,'blocks_3_cards_custom_2_image','39247'),(149382,40519,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(149383,40519,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(149384,40519,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(149385,40519,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(149386,40519,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(149387,40519,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(149388,40519,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(149389,40519,'blocks_3_cards_custom_3_image','39256'),(149390,40519,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(149391,40519,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(149392,40519,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(149393,40519,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(149394,40519,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(149395,40519,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(149396,40519,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(149397,40519,'blocks_3_cards_custom_4_image','39251'),(149398,40519,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(149399,40519,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches'),(149400,40519,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(149401,40519,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(149402,40519,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(149403,40519,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(149404,40519,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(149405,40519,'blocks_3_cards_custom_5_image','39240'),(149406,40519,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(149407,40519,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(149408,40519,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(149409,40519,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(149410,40519,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(149411,40519,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(149412,40519,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(149413,40519,'blocks_3_cards_custom_6_image','39260'),(149414,40519,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(149415,40519,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(149416,40519,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(149417,40519,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(149418,40519,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(149419,40519,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(149420,40519,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(149421,40519,'blocks_3_cards_custom','7'),(149422,40519,'_blocks_3_cards_custom','field_6194cbf84d386'),(149423,40519,'blocks_4_acfe_flexible_toggle',''),(149424,40519,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(149425,40519,'blocks_4_acfe_flexible_layout_title','Form'),(149426,40519,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(149427,40519,'blocks_4_row_content_format','standard'),(149428,40519,'_blocks_4_row_content_format','field_6481ead962881'),(149429,40519,'blocks_4_row_content_title','Ready to get started?'),(149430,40519,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(149431,40519,'blocks_4_row_content_heading','Ready to get started?'),(149432,40519,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(149433,40519,'blocks_4_row_content_text','Complete The Form to Get Your Free Price Guide'),(149434,40519,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(149435,40519,'blocks_4_row_content_actions',''),(149436,40519,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(149437,40519,'blocks_4_row_content',''),(149438,40519,'_blocks_4_row_content','field_61a0f5f5b3db0'),(149439,40519,'blocks_4_row_form',''),(149440,40519,'_blocks_4_row_form','field_61a4ff2c0b08e'),(149441,40519,'blocks_4_row_form_button_label',''),(149442,40519,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(149443,40519,'_thumbnail_id','39252'),(149444,40519,'__thumbnail_id','field_617570855ddaf'),(149445,40519,'blocks_0_acfe_flexible_toggle',''),(149446,40519,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(149447,40519,'blocks_0_acfe_flexible_layout_title','Template'),(149448,40519,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(149449,40519,'blocks_0_template','39087'),(149450,40519,'_blocks_0_template','field_617bdd570fe01'),(149451,40519,'blocks_1_acfe_flexible_toggle',''),(149452,40519,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(149453,40519,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(149454,40519,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(149455,40519,'blocks_1_options_theme','#ffffff'),(149456,40519,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(149457,40519,'blocks_1_options_reverse','0'),(149458,40519,'_blocks_1_options_reverse','field_61768049bb8ac'),(149459,40519,'blocks_1_options',''),(149460,40519,'_blocks_1_options','field_617682517c334'),(149461,40519,'blocks_1_split_5050_image','39152'),(149462,40519,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(149463,40519,'blocks_1_split_5050_video',''),(149464,40519,'_blocks_1_split_5050_video','field_6239f3160848a'),(149465,40519,'blocks_1_split_5050_content_title',''),(149466,40519,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(149467,40519,'blocks_1_split_5050_content_heading','About Our Career Guides'),(149468,40519,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(149469,40519,'blocks_1_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(149470,40519,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(149471,40519,'blocks_1_split_5050_content_actions',''),(149472,40519,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(149473,40519,'blocks_1_split_5050_content',''),(149474,40519,'_blocks_1_split_5050_content','field_61767afceb8ba'),(149475,40520,'hero_style','default'),(149476,40520,'_hero_style','field_62051d9dc5324'),(149477,40520,'hero_image_pos_x','right'),(149478,40520,'_hero_image_pos_x','field_62ec3d05390bb'),(149479,40520,'hero_image_pos_y','top'),(149480,40520,'_hero_image_pos_y','field_62ec3d05390bc'),(149481,40520,'hero_image_pos',''),(149482,40520,'_hero_image_pos','field_62ec3d05390ba'),(149483,40520,'hero_title','Getting Started'),(149484,40520,'_hero_title','field_617571fe285e8'),(149485,40520,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(149486,40520,'_hero_text','field_6175723c285e9'),(149487,40520,'hero_actions',''),(149488,40520,'_hero_actions','field_61757270285ea'),(149489,40520,'hero_icon','bars'),(149490,40520,'_hero_icon','field_61a6182199d03'),(149491,40520,'fft_hide_from_listings','0'),(149492,40520,'_fft_hide_from_listings','field_61f1320446ab2'),(149493,40520,'fft_page_format','default'),(149494,40520,'_fft_page_format','field_61ae213f1f218'),(149495,40520,'fft_hide_nav','0'),(149496,40520,'_fft_hide_nav','field_635bd5e43527c'),(149497,40520,'fft_hide_header_call_to_action','0'),(149498,40520,'_fft_hide_header_call_to_action','field_635bd6723527d'),(149499,40520,'fft_page_sitemap','0'),(149500,40520,'_fft_page_sitemap','field_61af9b34e8181'),(149501,40520,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:4:\"form\";}'),(149502,40520,'_blocks','field_6176696113096'),(149503,40520,'hide_hero','0'),(149504,40520,'_hide_hero','field_66a2380fcda39'),(149505,40520,'blocks_2_acfe_flexible_toggle',''),(149506,40520,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(149507,40520,'blocks_2_acfe_flexible_layout_title','Text Block'),(149508,40520,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(149509,40520,'blocks_2_options_theme','#ffffff'),(149510,40520,'_blocks_2_options_theme','field_6176830e2ad17'),(149511,40520,'blocks_2_options',''),(149512,40520,'_blocks_2_options','field_6176830e2ad16'),(149513,40520,'blocks_2_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines'),(149514,40520,'_blocks_2_text_block_heading','field_617669d413097'),(149515,40520,'blocks_2_text_block_content',''),(149516,40520,'_blocks_2_text_block_content','field_617669ec13098'),(149517,40520,'blocks_3_acfe_flexible_toggle',''),(149518,40520,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(149519,40520,'blocks_3_acfe_flexible_layout_title','Cards'),(149520,40520,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(149521,40520,'blocks_3_options_theme','#ffffff'),(149522,40520,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(149523,40520,'blocks_3_options_format','carousel'),(149524,40520,'_blocks_3_options_format','field_617a7b15245b5'),(149525,40520,'blocks_3_options_style','default'),(149526,40520,'_blocks_3_options_style','field_6278ffb63484a'),(149527,40520,'blocks_3_options_cards_current_listing','0'),(149528,40520,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(149529,40520,'blocks_3_options_cards_content','custom'),(149530,40520,'_blocks_3_options_cards_content','field_617aba6122688'),(149531,40520,'blocks_3_options',''),(149532,40520,'_blocks_3_options','field_617a7b15245b3'),(149533,40520,'blocks_3_cards_custom_0_image','39215'),(149534,40520,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(149535,40520,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(149536,40520,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(149537,40520,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(149538,40520,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(149539,40520,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(149540,40520,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(149541,40520,'blocks_3_cards_custom_1_image','39243'),(149542,40520,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(149543,40520,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(149544,40520,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(149545,40520,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(149546,40520,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(149547,40520,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(149548,40520,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(149549,40520,'blocks_3_cards_custom_2_image','39247'),(149550,40520,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(149551,40520,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(149552,40520,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(149553,40520,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(149554,40520,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(149555,40520,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(149556,40520,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(149557,40520,'blocks_3_cards_custom_3_image','39256'),(149558,40520,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(149559,40520,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(149560,40520,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(149561,40520,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(149562,40520,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(149563,40520,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(149564,40520,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(149565,40520,'blocks_3_cards_custom_4_image','39251'),(149566,40520,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(149567,40520,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches'),(149568,40520,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(149569,40520,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(149570,40520,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(149571,40520,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(149572,40520,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(149573,40520,'blocks_3_cards_custom_5_image','39240'),(149574,40520,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(149575,40520,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(149576,40520,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(149577,40520,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(149578,40520,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(149579,40520,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(149580,40520,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(149581,40520,'blocks_3_cards_custom_6_image','39260'),(149582,40520,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(149583,40520,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(149584,40520,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(149585,40520,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(149586,40520,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(149587,40520,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(149588,40520,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(149589,40520,'blocks_3_cards_custom','7'),(149590,40520,'_blocks_3_cards_custom','field_6194cbf84d386'),(149591,40520,'blocks_4_acfe_flexible_toggle',''),(149592,40520,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(149593,40520,'blocks_4_acfe_flexible_layout_title','Form'),(149594,40520,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(149595,40520,'blocks_4_row_content_format','standard'),(149596,40520,'_blocks_4_row_content_format','field_6481ead962881'),(149597,40520,'blocks_4_row_content_title','Ready to get started?'),(149598,40520,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(149599,40520,'blocks_4_row_content_heading','Ready to get started?'),(149600,40520,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(149601,40520,'blocks_4_row_content_text','Complete The Form to Get Your Free Price Guide'),(149602,40520,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(149603,40520,'blocks_4_row_content_actions',''),(149604,40520,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(149605,40520,'blocks_4_row_content',''),(149606,40520,'_blocks_4_row_content','field_61a0f5f5b3db0'),(149607,40520,'blocks_4_row_form',''),(149608,40520,'_blocks_4_row_form','field_61a4ff2c0b08e'),(149609,40520,'blocks_4_row_form_button_label',''),(149610,40520,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(149611,40520,'_thumbnail_id','39252'),(149612,40520,'__thumbnail_id','field_617570855ddaf'),(149613,40520,'blocks_0_acfe_flexible_toggle',''),(149614,40520,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(149615,40520,'blocks_0_acfe_flexible_layout_title','Template'),(149616,40520,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(149617,40520,'blocks_0_template','39087'),(149618,40520,'_blocks_0_template','field_617bdd570fe01'),(149619,40520,'blocks_1_acfe_flexible_toggle',''),(149620,40520,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(149621,40520,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(149622,40520,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(149623,40520,'blocks_1_options_theme','#ffffff'),(149624,40520,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(149625,40520,'blocks_1_options_reverse','0'),(149626,40520,'_blocks_1_options_reverse','field_61768049bb8ac'),(149627,40520,'blocks_1_options',''),(149628,40520,'_blocks_1_options','field_617682517c334'),(149629,40520,'blocks_1_split_5050_image','39152'),(149630,40520,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(149631,40520,'blocks_1_split_5050_video',''),(149632,40520,'_blocks_1_split_5050_video','field_6239f3160848a'),(149633,40520,'blocks_1_split_5050_content_title',''),(149634,40520,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(149635,40520,'blocks_1_split_5050_content_heading','About Our Career Guides'),(149636,40520,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(149637,40520,'blocks_1_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(149638,40520,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(149639,40520,'blocks_1_split_5050_content_actions',''),(149640,40520,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(149641,40520,'blocks_1_split_5050_content',''),(149642,40520,'_blocks_1_split_5050_content','field_61767afceb8ba'),(149643,40521,'hero_style','default'),(149644,40521,'_hero_style','field_62051d9dc5324'),(149645,40521,'hero_image_pos_x','right'),(149646,40521,'_hero_image_pos_x','field_62ec3d05390bb'),(149647,40521,'hero_image_pos_y','top'),(149648,40521,'_hero_image_pos_y','field_62ec3d05390bc'),(149649,40521,'hero_image_pos',''),(149650,40521,'_hero_image_pos','field_62ec3d05390ba'),(149651,40521,'hero_title','Getting Started'),(149652,40521,'_hero_title','field_617571fe285e8'),(149653,40521,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(149654,40521,'_hero_text','field_6175723c285e9'),(149655,40521,'hero_actions',''),(149656,40521,'_hero_actions','field_61757270285ea'),(149657,40521,'hero_icon','bars'),(149658,40521,'_hero_icon','field_61a6182199d03'),(149659,40521,'fft_hide_from_listings','0'),(149660,40521,'_fft_hide_from_listings','field_61f1320446ab2'),(149661,40521,'fft_page_format','default'),(149662,40521,'_fft_page_format','field_61ae213f1f218'),(149663,40521,'fft_hide_nav','0'),(149664,40521,'_fft_hide_nav','field_635bd5e43527c'),(149665,40521,'fft_hide_header_call_to_action','0'),(149666,40521,'_fft_hide_header_call_to_action','field_635bd6723527d'),(149667,40521,'fft_page_sitemap','0'),(149668,40521,'_fft_page_sitemap','field_61af9b34e8181'),(149669,40521,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:4:\"form\";}'),(149670,40521,'_blocks','field_6176696113096'),(149671,40521,'hide_hero','0'),(149672,40521,'_hide_hero','field_66a2380fcda39'),(149673,40521,'blocks_2_acfe_flexible_toggle',''),(149674,40521,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(149675,40521,'blocks_2_acfe_flexible_layout_title','Text Block'),(149676,40521,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(149677,40521,'blocks_2_options_theme','#ffffff'),(149678,40521,'_blocks_2_options_theme','field_6176830e2ad17'),(149679,40521,'blocks_2_options',''),(149680,40521,'_blocks_2_options','field_6176830e2ad16'),(149681,40521,'blocks_2_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines'),(149682,40521,'_blocks_2_text_block_heading','field_617669d413097'),(149683,40521,'blocks_2_text_block_content',''),(149684,40521,'_blocks_2_text_block_content','field_617669ec13098'),(149685,40521,'blocks_3_acfe_flexible_toggle',''),(149686,40521,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(149687,40521,'blocks_3_acfe_flexible_layout_title','Cards'),(149688,40521,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(149689,40521,'blocks_3_options_theme','#ffffff'),(149690,40521,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(149691,40521,'blocks_3_options_format','carousel'),(149692,40521,'_blocks_3_options_format','field_617a7b15245b5'),(149693,40521,'blocks_3_options_style','default'),(149694,40521,'_blocks_3_options_style','field_6278ffb63484a'),(149695,40521,'blocks_3_options_cards_current_listing','0'),(149696,40521,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(149697,40521,'blocks_3_options_cards_content','custom'),(149698,40521,'_blocks_3_options_cards_content','field_617aba6122688'),(149699,40521,'blocks_3_options',''),(149700,40521,'_blocks_3_options','field_617a7b15245b3'),(149701,40521,'blocks_3_cards_custom_0_image','39215'),(149702,40521,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(149703,40521,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(149704,40521,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(149705,40521,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(149706,40521,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(149707,40521,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(149708,40521,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(149709,40521,'blocks_3_cards_custom_1_image','39243'),(149710,40521,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(149711,40521,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(149712,40521,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(149713,40521,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(149714,40521,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(149715,40521,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(149716,40521,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(149717,40521,'blocks_3_cards_custom_2_image','39247'),(149718,40521,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(149719,40521,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(149720,40521,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(149721,40521,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(149722,40521,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(149723,40521,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(149724,40521,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(149725,40521,'blocks_3_cards_custom_3_image','39256'),(149726,40521,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(149727,40521,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(149728,40521,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(149729,40521,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(149730,40521,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(149731,40521,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(149732,40521,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(149733,40521,'blocks_3_cards_custom_4_image','39251'),(149734,40521,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(149735,40521,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches'),(149736,40521,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(149737,40521,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(149738,40521,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(149739,40521,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(149740,40521,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(149741,40521,'blocks_3_cards_custom_5_image','39240'),(149742,40521,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(149743,40521,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(149744,40521,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(149745,40521,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(149746,40521,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(149747,40521,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(149748,40521,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(149749,40521,'blocks_3_cards_custom_6_image','39260'),(149750,40521,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(149751,40521,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(149752,40521,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(149753,40521,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(149754,40521,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(149755,40521,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(149756,40521,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(149757,40521,'blocks_3_cards_custom','7'),(149758,40521,'_blocks_3_cards_custom','field_6194cbf84d386'),(149759,40521,'blocks_4_acfe_flexible_toggle',''),(149760,40521,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(149761,40521,'blocks_4_acfe_flexible_layout_title','Form'),(149762,40521,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(149763,40521,'blocks_4_row_content_format','standard'),(149764,40521,'_blocks_4_row_content_format','field_6481ead962881'),(149765,40521,'blocks_4_row_content_title','Ready to get started?'),(149766,40521,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(149767,40521,'blocks_4_row_content_heading','Ready to get started?'),(149768,40521,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(149769,40521,'blocks_4_row_content_text','Complete The Form to Get Your Free Price Guide'),(149770,40521,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(149771,40521,'blocks_4_row_content_actions',''),(149772,40521,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(149773,40521,'blocks_4_row_content',''),(149774,40521,'_blocks_4_row_content','field_61a0f5f5b3db0'),(149775,40521,'blocks_4_row_form',''),(149776,40521,'_blocks_4_row_form','field_61a4ff2c0b08e'),(149777,40521,'blocks_4_row_form_button_label',''),(149778,40521,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(149779,40521,'_thumbnail_id','39252'),(149780,40521,'__thumbnail_id','field_617570855ddaf'),(149781,40521,'blocks_0_acfe_flexible_toggle',''),(149782,40521,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(149783,40521,'blocks_0_acfe_flexible_layout_title','Template'),(149784,40521,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(149785,40521,'blocks_0_template','39087'),(149786,40521,'_blocks_0_template','field_617bdd570fe01'),(149787,40521,'blocks_1_acfe_flexible_toggle',''),(149788,40521,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(149789,40521,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(149790,40521,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(149791,40521,'blocks_1_options_theme','#ffffff'),(149792,40521,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(149793,40521,'blocks_1_options_reverse','0'),(149794,40521,'_blocks_1_options_reverse','field_61768049bb8ac'),(149795,40521,'blocks_1_options',''),(149796,40521,'_blocks_1_options','field_617682517c334'),(149797,40521,'blocks_1_split_5050_image','39152'),(149798,40521,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(149799,40521,'blocks_1_split_5050_video',''),(149800,40521,'_blocks_1_split_5050_video','field_6239f3160848a'),(149801,40521,'blocks_1_split_5050_content_title',''),(149802,40521,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(149803,40521,'blocks_1_split_5050_content_heading','About Our Career Guides'),(149804,40521,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(149805,40521,'blocks_1_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(149806,40521,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(149807,40521,'blocks_1_split_5050_content_actions',''),(149808,40521,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(149809,40521,'blocks_1_split_5050_content',''),(149810,40521,'_blocks_1_split_5050_content','field_61767afceb8ba'),(149811,40522,'hero_style','default'),(149812,40522,'_hero_style','field_62051d9dc5324'),(149813,40522,'hero_image_pos_x','right'),(149814,40522,'_hero_image_pos_x','field_62ec3d05390bb'),(149815,40522,'hero_image_pos_y','top'),(149816,40522,'_hero_image_pos_y','field_62ec3d05390bc'),(149817,40522,'hero_image_pos',''),(149818,40522,'_hero_image_pos','field_62ec3d05390ba'),(149819,40522,'hero_title','Getting Started'),(149820,40522,'_hero_title','field_617571fe285e8'),(149821,40522,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(149822,40522,'_hero_text','field_6175723c285e9'),(149823,40522,'hero_actions',''),(149824,40522,'_hero_actions','field_61757270285ea'),(149825,40522,'hero_icon','bars'),(149826,40522,'_hero_icon','field_61a6182199d03'),(149827,40522,'fft_hide_from_listings','0'),(149828,40522,'_fft_hide_from_listings','field_61f1320446ab2'),(149829,40522,'fft_page_format','default'),(149830,40522,'_fft_page_format','field_61ae213f1f218'),(149831,40522,'fft_hide_nav','0'),(149832,40522,'_fft_hide_nav','field_635bd5e43527c'),(149833,40522,'fft_hide_header_call_to_action','0'),(149834,40522,'_fft_hide_header_call_to_action','field_635bd6723527d'),(149835,40522,'fft_page_sitemap','0'),(149836,40522,'_fft_page_sitemap','field_61af9b34e8181'),(149837,40522,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:4:\"form\";}'),(149838,40522,'_blocks','field_6176696113096'),(149839,40522,'hide_hero','0'),(149840,40522,'_hide_hero','field_66a2380fcda39'),(149841,40522,'blocks_2_acfe_flexible_toggle',''),(149842,40522,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(149843,40522,'blocks_2_acfe_flexible_layout_title','Text Block'),(149844,40522,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(149845,40522,'blocks_2_options_theme','#ffffff'),(149846,40522,'_blocks_2_options_theme','field_6176830e2ad17'),(149847,40522,'blocks_2_options',''),(149848,40522,'_blocks_2_options','field_6176830e2ad16'),(149849,40522,'blocks_2_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines'),(149850,40522,'_blocks_2_text_block_heading','field_617669d413097'),(149851,40522,'blocks_2_text_block_content',''),(149852,40522,'_blocks_2_text_block_content','field_617669ec13098'),(149853,40522,'blocks_3_acfe_flexible_toggle',''),(149854,40522,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(149855,40522,'blocks_3_acfe_flexible_layout_title','Cards'),(149856,40522,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(149857,40522,'blocks_3_options_theme','#ffffff'),(149858,40522,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(149859,40522,'blocks_3_options_format','carousel'),(149860,40522,'_blocks_3_options_format','field_617a7b15245b5'),(149861,40522,'blocks_3_options_style','default'),(149862,40522,'_blocks_3_options_style','field_6278ffb63484a'),(149863,40522,'blocks_3_options_cards_current_listing','0'),(149864,40522,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(149865,40522,'blocks_3_options_cards_content','custom'),(149866,40522,'_blocks_3_options_cards_content','field_617aba6122688'),(149867,40522,'blocks_3_options',''),(149868,40522,'_blocks_3_options','field_617a7b15245b3'),(149869,40522,'blocks_3_cards_custom_0_image','39215'),(149870,40522,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(149871,40522,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(149872,40522,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(149873,40522,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(149874,40522,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(149875,40522,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(149876,40522,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(149877,40522,'blocks_3_cards_custom_1_image','39243'),(149878,40522,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(149879,40522,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(149880,40522,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(149881,40522,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(149882,40522,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(149883,40522,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(149884,40522,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(149885,40522,'blocks_3_cards_custom_2_image','39247'),(149886,40522,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(149887,40522,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(149888,40522,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(149889,40522,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(149890,40522,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(149891,40522,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(149892,40522,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(149893,40522,'blocks_3_cards_custom_3_image','39256'),(149894,40522,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(149895,40522,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(149896,40522,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(149897,40522,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(149898,40522,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(149899,40522,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(149900,40522,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(149901,40522,'blocks_3_cards_custom_4_image','39251'),(149902,40522,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(149903,40522,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches'),(149904,40522,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(149905,40522,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(149906,40522,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(149907,40522,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(149908,40522,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(149909,40522,'blocks_3_cards_custom_5_image','39240'),(149910,40522,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(149911,40522,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(149912,40522,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(149913,40522,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(149914,40522,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(149915,40522,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(149916,40522,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(149917,40522,'blocks_3_cards_custom_6_image','39260'),(149918,40522,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(149919,40522,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(149920,40522,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(149921,40522,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(149922,40522,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(149923,40522,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(149924,40522,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(149925,40522,'blocks_3_cards_custom','7'),(149926,40522,'_blocks_3_cards_custom','field_6194cbf84d386'),(149927,40522,'blocks_4_acfe_flexible_toggle',''),(149928,40522,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(149929,40522,'blocks_4_acfe_flexible_layout_title','Form'),(149930,40522,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(149931,40522,'blocks_4_row_content_format','standard'),(149932,40522,'_blocks_4_row_content_format','field_6481ead962881'),(149933,40522,'blocks_4_row_content_title','Ready to get started?'),(149934,40522,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(149935,40522,'blocks_4_row_content_heading','Ready to get started?'),(149936,40522,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(149937,40522,'blocks_4_row_content_text','Complete The Form to Get Your Free Price Guide'),(149938,40522,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(149939,40522,'blocks_4_row_content_actions',''),(149940,40522,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(149941,40522,'blocks_4_row_content',''),(149942,40522,'_blocks_4_row_content','field_61a0f5f5b3db0'),(149943,40522,'blocks_4_row_form','40417'),(149944,40522,'_blocks_4_row_form','field_61a4ff2c0b08e'),(149945,40522,'blocks_4_row_form_button_label',''),(149946,40522,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(149947,40522,'_thumbnail_id','39252'),(149948,40522,'__thumbnail_id','field_617570855ddaf'),(149949,40522,'blocks_0_acfe_flexible_toggle',''),(149950,40522,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(149951,40522,'blocks_0_acfe_flexible_layout_title','Template'),(149952,40522,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(149953,40522,'blocks_0_template','39087'),(149954,40522,'_blocks_0_template','field_617bdd570fe01'),(149955,40522,'blocks_1_acfe_flexible_toggle',''),(149956,40522,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(149957,40522,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(149958,40522,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(149959,40522,'blocks_1_options_theme','#ffffff'),(149960,40522,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(149961,40522,'blocks_1_options_reverse','0'),(149962,40522,'_blocks_1_options_reverse','field_61768049bb8ac'),(149963,40522,'blocks_1_options',''),(149964,40522,'_blocks_1_options','field_617682517c334'),(149965,40522,'blocks_1_split_5050_image','39152'),(149966,40522,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(149967,40522,'blocks_1_split_5050_video',''),(149968,40522,'_blocks_1_split_5050_video','field_6239f3160848a'),(149969,40522,'blocks_1_split_5050_content_title',''),(149970,40522,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(149971,40522,'blocks_1_split_5050_content_heading','About Our Career Guides'),(149972,40522,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(149973,40522,'blocks_1_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(149974,40522,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(149975,40522,'blocks_1_split_5050_content_actions',''),(149976,40522,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(149977,40522,'blocks_1_split_5050_content',''),(149978,40522,'_blocks_1_split_5050_content','field_61767afceb8ba'),(149979,40523,'hero_style','default'),(149980,40523,'_hero_style','field_62051d9dc5324'),(149981,40523,'hero_image_pos_x','right'),(149982,40523,'_hero_image_pos_x','field_62ec3d05390bb'),(149983,40523,'hero_image_pos_y','top'),(149984,40523,'_hero_image_pos_y','field_62ec3d05390bc'),(149985,40523,'hero_image_pos',''),(149986,40523,'_hero_image_pos','field_62ec3d05390ba'),(149987,40523,'hero_title','Getting Started'),(149988,40523,'_hero_title','field_617571fe285e8'),(149989,40523,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(149990,40523,'_hero_text','field_6175723c285e9'),(149991,40523,'hero_actions',''),(149992,40523,'_hero_actions','field_61757270285ea'),(149993,40523,'hero_icon','bars'),(149994,40523,'_hero_icon','field_61a6182199d03'),(149995,40523,'fft_hide_from_listings','0'),(149996,40523,'_fft_hide_from_listings','field_61f1320446ab2'),(149997,40523,'fft_page_format','default'),(149998,40523,'_fft_page_format','field_61ae213f1f218'),(149999,40523,'fft_hide_nav','0'),(150000,40523,'_fft_hide_nav','field_635bd5e43527c'),(150001,40523,'fft_hide_header_call_to_action','0'),(150002,40523,'_fft_hide_header_call_to_action','field_635bd6723527d'),(150003,40523,'fft_page_sitemap','0'),(150004,40523,'_fft_page_sitemap','field_61af9b34e8181'),(150005,40523,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:4:\"form\";}'),(150006,40523,'_blocks','field_6176696113096'),(150007,40523,'hide_hero','0'),(150008,40523,'_hide_hero','field_66a2380fcda39'),(150009,40523,'blocks_2_acfe_flexible_toggle',''),(150010,40523,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(150011,40523,'blocks_2_acfe_flexible_layout_title','Text Block'),(150012,40523,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(150013,40523,'blocks_2_options_theme','#ffffff'),(150014,40523,'_blocks_2_options_theme','field_6176830e2ad17'),(150015,40523,'blocks_2_options',''),(150016,40523,'_blocks_2_options','field_6176830e2ad16'),(150017,40523,'blocks_2_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines'),(150018,40523,'_blocks_2_text_block_heading','field_617669d413097'),(150019,40523,'blocks_2_text_block_content',''),(150020,40523,'_blocks_2_text_block_content','field_617669ec13098'),(150021,40523,'blocks_3_acfe_flexible_toggle',''),(150022,40523,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(150023,40523,'blocks_3_acfe_flexible_layout_title','Cards'),(150024,40523,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(150025,40523,'blocks_3_options_theme','#ffffff'),(150026,40523,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(150027,40523,'blocks_3_options_format','carousel'),(150028,40523,'_blocks_3_options_format','field_617a7b15245b5'),(150029,40523,'blocks_3_options_style','default'),(150030,40523,'_blocks_3_options_style','field_6278ffb63484a'),(150031,40523,'blocks_3_options_cards_current_listing','0'),(150032,40523,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(150033,40523,'blocks_3_options_cards_content','custom'),(150034,40523,'_blocks_3_options_cards_content','field_617aba6122688'),(150035,40523,'blocks_3_options',''),(150036,40523,'_blocks_3_options','field_617a7b15245b3'),(150037,40523,'blocks_3_cards_custom_0_image','39215'),(150038,40523,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(150039,40523,'blocks_3_cards_custom_0_title','Biomechanics and Personal Training'),(150040,40523,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(150041,40523,'blocks_3_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(150042,40523,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(150043,40523,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(150044,40523,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(150045,40523,'blocks_3_cards_custom_1_image','39243'),(150046,40523,'_blocks_3_cards_custom_1_image','field_6194cc284d387'),(150047,40523,'blocks_3_cards_custom_1_title','Biomechanics and Pilates'),(150048,40523,'_blocks_3_cards_custom_1_title','field_6194cc454d388'),(150049,40523,'blocks_3_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(150050,40523,'_blocks_3_cards_custom_1_text','field_6194cc4a4d389'),(150051,40523,'blocks_3_cards_custom_1_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(150052,40523,'_blocks_3_cards_custom_1_link','field_6194cc534d38a'),(150053,40523,'blocks_3_cards_custom_2_image','39247'),(150054,40523,'_blocks_3_cards_custom_2_image','field_6194cc284d387'),(150055,40523,'blocks_3_cards_custom_2_title','Biomechanics and Podiatrists'),(150056,40523,'_blocks_3_cards_custom_2_title','field_6194cc454d388'),(150057,40523,'blocks_3_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(150058,40523,'_blocks_3_cards_custom_2_text','field_6194cc4a4d389'),(150059,40523,'blocks_3_cards_custom_2_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(150060,40523,'_blocks_3_cards_custom_2_link','field_6194cc534d38a'),(150061,40523,'blocks_3_cards_custom_3_image','39256'),(150062,40523,'_blocks_3_cards_custom_3_image','field_6194cc284d387'),(150063,40523,'blocks_3_cards_custom_3_title','Biomechanics and S&C coaches'),(150064,40523,'_blocks_3_cards_custom_3_title','field_6194cc454d388'),(150065,40523,'blocks_3_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(150066,40523,'_blocks_3_cards_custom_3_text','field_6194cc4a4d389'),(150067,40523,'blocks_3_cards_custom_3_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(150068,40523,'_blocks_3_cards_custom_3_link','field_6194cc534d38a'),(150069,40523,'blocks_3_cards_custom_4_image','39251'),(150070,40523,'_blocks_3_cards_custom_4_image','field_6194cc284d387'),(150071,40523,'blocks_3_cards_custom_4_title','Biomechanics and Sports Coaches'),(150072,40523,'_blocks_3_cards_custom_4_title','field_6194cc454d388'),(150073,40523,'blocks_3_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(150074,40523,'_blocks_3_cards_custom_4_text','field_6194cc4a4d389'),(150075,40523,'blocks_3_cards_custom_4_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(150076,40523,'_blocks_3_cards_custom_4_link','field_6194cc534d38a'),(150077,40523,'blocks_3_cards_custom_5_image','39240'),(150078,40523,'_blocks_3_cards_custom_5_image','field_6194cc284d387'),(150079,40523,'blocks_3_cards_custom_5_title','Biomechanics and Sports Massage'),(150080,40523,'_blocks_3_cards_custom_5_title','field_6194cc454d388'),(150081,40523,'blocks_3_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(150082,40523,'_blocks_3_cards_custom_5_text','field_6194cc4a4d389'),(150083,40523,'blocks_3_cards_custom_5_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(150084,40523,'_blocks_3_cards_custom_5_link','field_6194cc534d38a'),(150085,40523,'blocks_3_cards_custom_6_image','39260'),(150086,40523,'_blocks_3_cards_custom_6_image','field_6194cc284d387'),(150087,40523,'blocks_3_cards_custom_6_title','How to Become a Biomechanics Coach'),(150088,40523,'_blocks_3_cards_custom_6_title','field_6194cc454d388'),(150089,40523,'blocks_3_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(150090,40523,'_blocks_3_cards_custom_6_text','field_6194cc4a4d389'),(150091,40523,'blocks_3_cards_custom_6_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(150092,40523,'_blocks_3_cards_custom_6_link','field_6194cc534d38a'),(150093,40523,'blocks_3_cards_custom','7'),(150094,40523,'_blocks_3_cards_custom','field_6194cbf84d386'),(150095,40523,'blocks_4_acfe_flexible_toggle',''),(150096,40523,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(150097,40523,'blocks_4_acfe_flexible_layout_title','Form'),(150098,40523,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(150099,40523,'blocks_4_row_content_format','standard'),(150100,40523,'_blocks_4_row_content_format','field_6481ead962881'),(150101,40523,'blocks_4_row_content_title','Ready to get started?'),(150102,40523,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(150103,40523,'blocks_4_row_content_heading','Download your free guide!'),(150104,40523,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(150105,40523,'blocks_4_row_content_text','Complete the form to receive your free digital guide, so we can support you on this exciting next step of bringing Intrinsic Biomechanics into your practice.'),(150106,40523,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(150107,40523,'blocks_4_row_content_actions',''),(150108,40523,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(150109,40523,'blocks_4_row_content',''),(150110,40523,'_blocks_4_row_content','field_61a0f5f5b3db0'),(150111,40523,'blocks_4_row_form','40417'),(150112,40523,'_blocks_4_row_form','field_61a4ff2c0b08e'),(150113,40523,'blocks_4_row_form_button_label',''),(150114,40523,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(150115,40523,'_thumbnail_id','39252'),(150116,40523,'__thumbnail_id','field_617570855ddaf'),(150117,40523,'blocks_0_acfe_flexible_toggle',''),(150118,40523,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(150119,40523,'blocks_0_acfe_flexible_layout_title','Template'),(150120,40523,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(150121,40523,'blocks_0_template','39087'),(150122,40523,'_blocks_0_template','field_617bdd570fe01'),(150123,40523,'blocks_1_acfe_flexible_toggle',''),(150124,40523,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(150125,40523,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(150126,40523,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(150127,40523,'blocks_1_options_theme','#ffffff'),(150128,40523,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(150129,40523,'blocks_1_options_reverse','0'),(150130,40523,'_blocks_1_options_reverse','field_61768049bb8ac'),(150131,40523,'blocks_1_options',''),(150132,40523,'_blocks_1_options','field_617682517c334'),(150133,40523,'blocks_1_split_5050_image','39152'),(150134,40523,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(150135,40523,'blocks_1_split_5050_video',''),(150136,40523,'_blocks_1_split_5050_video','field_6239f3160848a'),(150137,40523,'blocks_1_split_5050_content_title',''),(150138,40523,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(150139,40523,'blocks_1_split_5050_content_heading','About Our Career Guides'),(150140,40523,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(150141,40523,'blocks_1_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(150142,40523,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(150143,40523,'blocks_1_split_5050_content_actions',''),(150144,40523,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(150145,40523,'blocks_1_split_5050_content',''),(150146,40523,'_blocks_1_split_5050_content','field_61767afceb8ba'),(150147,40524,'hide_hero','0'),(150148,40524,'_hide_hero','field_66a2380fcda39'),(150149,40524,'hero_title','Biomechanics and Sports Massage Therapy'),(150150,40524,'_hero_title','field_617571fe285e8'),(150151,40524,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(150152,40524,'_hero_text','field_6175723c285e9'),(150153,40524,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(150154,40524,'_hero_actions_0_button','field_61757281285eb'),(150155,40524,'hero_actions','1'),(150156,40524,'_hero_actions','field_61757270285ea'),(150157,40524,'hero_style','default'),(150158,40524,'_hero_style','field_62051d9dc5324'),(150159,40524,'_thumbnail_id','39240'),(150160,40524,'__thumbnail_id','field_617570855ddaf'),(150161,40524,'hero_image_pos_x','right'),(150162,40524,'_hero_image_pos_x','field_62ec3d05390bb'),(150163,40524,'hero_image_pos_y','top'),(150164,40524,'_hero_image_pos_y','field_62ec3d05390bc'),(150165,40524,'hero_image_pos',''),(150166,40524,'_hero_image_pos','field_62ec3d05390ba'),(150167,40524,'fft_hide_from_listings','0'),(150168,40524,'_fft_hide_from_listings','field_61f1320446ab2'),(150169,40524,'fft_page_format','default'),(150170,40524,'_fft_page_format','field_61ae213f1f218'),(150171,40524,'fft_hide_nav','0'),(150172,40524,'_fft_hide_nav','field_635bd5e43527c'),(150173,40524,'fft_hide_header_call_to_action','0'),(150174,40524,'_fft_hide_header_call_to_action','field_635bd6723527d'),(150175,40524,'fft_page_sitemap','0'),(150176,40524,'_fft_page_sitemap','field_61af9b34e8181'),(150177,40524,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(150178,40524,'_blocks','field_6176696113096'),(150179,40524,'blocks_0_acfe_flexible_toggle',''),(150180,40524,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(150181,40524,'blocks_0_acfe_flexible_layout_title','Template'),(150182,40524,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(150183,40524,'blocks_0_template','39087'),(150184,40524,'_blocks_0_template','field_617bdd570fe01'),(150185,40524,'blocks_1_acfe_flexible_toggle',''),(150186,40524,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(150187,40524,'blocks_1_acfe_flexible_layout_title','Steps'),(150188,40524,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(150189,40524,'blocks_1_row_content_title',''),(150190,40524,'_blocks_1_row_content_title','field_64888cd1e26e0'),(150191,40524,'blocks_1_row_content_heading','Benefits of Training with Us'),(150192,40524,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(150193,40524,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(150194,40524,'_blocks_1_row_content_text','field_64888ce2e26e2'),(150195,40524,'blocks_1_row_content_actions',''),(150196,40524,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(150197,40524,'blocks_1_row_content',''),(150198,40524,'_blocks_1_row_content','field_64888cb0e26df'),(150199,40524,'blocks_1_steps_0_icon','progression.svg'),(150200,40524,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(150201,40524,'blocks_1_steps_0_title','Earning potential'),(150202,40524,'_blocks_1_steps_0_title','field_64888d94e26e7'),(150203,40524,'blocks_1_steps_0_text','Find new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(150204,40524,'_blocks_1_steps_0_text','field_64888d99e26e8'),(150205,40524,'blocks_1_steps_1_icon','support.svg'),(150206,40524,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(150207,40524,'blocks_1_steps_1_title','Lifetime learning promise'),(150208,40524,'_blocks_1_steps_1_title','field_64888d94e26e7'),(150209,40524,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(150210,40524,'_blocks_1_steps_1_text','field_64888d99e26e8'),(150211,40524,'blocks_1_steps_2_icon','qualification.svg'),(150212,40524,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(150213,40524,'blocks_1_steps_2_title','Evidence based hands on learning'),(150214,40524,'_blocks_1_steps_2_title','field_64888d94e26e7'),(150215,40524,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(150216,40524,'_blocks_1_steps_2_text','field_64888d99e26e8'),(150217,40524,'blocks_1_steps_3_icon','leaders.svg'),(150218,40524,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(150219,40524,'blocks_1_steps_3_title','Stand out from the crowd'),(150220,40524,'_blocks_1_steps_3_title','field_64888d94e26e7'),(150221,40524,'blocks_1_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(150222,40524,'_blocks_1_steps_3_text','field_64888d99e26e8'),(150223,40524,'blocks_1_steps','4'),(150224,40524,'_blocks_1_steps','field_64888d44e26e5'),(150225,40524,'blocks_2_acfe_flexible_toggle',''),(150226,40524,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(150227,40524,'blocks_2_acfe_flexible_layout_title','Video'),(150228,40524,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(150229,40524,'blocks_2_size','large'),(150230,40524,'_blocks_2_size','field_6487038f297c1'),(150231,40524,'blocks_2_row_content_title',''),(150232,40524,'_blocks_2_row_content_title','field_64870132a865d'),(150233,40524,'blocks_2_row_content_heading',''),(150234,40524,'_blocks_2_row_content_heading','field_64870142a865e'),(150235,40524,'blocks_2_row_content_text',''),(150236,40524,'_blocks_2_row_content_text','field_64870148a865f'),(150237,40524,'blocks_2_row_content',''),(150238,40524,'_blocks_2_row_content','field_6487008ba865c'),(150239,40524,'blocks_2_video_src',''),(150240,40524,'_blocks_2_video_src','field_6193c4a98ec07'),(150241,40524,'blocks_2_video_thumbnail',''),(150242,40524,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(150243,40524,'blocks_3_acfe_flexible_toggle',''),(150244,40524,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(150245,40524,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(150246,40524,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(150247,40524,'blocks_3_options_theme','#ffffff'),(150248,40524,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(150249,40524,'blocks_3_options_reverse','0'),(150250,40524,'_blocks_3_options_reverse','field_61768049bb8ac'),(150251,40524,'blocks_3_options',''),(150252,40524,'_blocks_3_options','field_617682517c334'),(150253,40524,'blocks_3_split_5050_image','39241'),(150254,40524,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(150255,40524,'blocks_3_split_5050_video',''),(150256,40524,'_blocks_3_split_5050_video','field_6239f3160848a'),(150257,40524,'blocks_3_split_5050_content_title',''),(150258,40524,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(150259,40524,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(150260,40524,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(150261,40524,'blocks_3_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(150262,40524,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(150263,40524,'blocks_3_split_5050_content_actions',''),(150264,40524,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(150265,40524,'blocks_3_split_5050_content',''),(150266,40524,'_blocks_3_split_5050_content','field_61767afceb8ba'),(150267,40524,'blocks_4_acfe_flexible_toggle',''),(150268,40524,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(150269,40524,'blocks_4_acfe_flexible_layout_title','Form'),(150270,40524,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(150271,40524,'blocks_4_row_content_format','standard'),(150272,40524,'_blocks_4_row_content_format','field_6481ead962881'),(150273,40524,'blocks_4_row_content_title',''),(150274,40524,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(150275,40524,'blocks_4_row_content_heading','Enquire Today'),(150276,40524,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(150277,40524,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(150278,40524,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(150279,40524,'blocks_4_row_content_actions',''),(150280,40524,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(150281,40524,'blocks_4_row_content',''),(150282,40524,'_blocks_4_row_content','field_61a0f5f5b3db0'),(150283,40524,'blocks_4_row_form',''),(150284,40524,'_blocks_4_row_form','field_61a4ff2c0b08e'),(150285,40524,'blocks_4_row_form_button_label',''),(150286,40524,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(150287,40524,'blocks_5_acfe_flexible_toggle',''),(150288,40524,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(150289,40524,'blocks_5_acfe_flexible_layout_title','Tabs'),(150290,40524,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(150291,40524,'blocks_5_options_theme','#ffffff'),(150292,40524,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(150293,40524,'blocks_5_options',''),(150294,40524,'_blocks_5_options','field_6177cfcd8140f'),(150295,40524,'blocks_5_tabs_0_tab_label','What will I learn ?'),(150296,40524,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(150297,40524,'blocks_5_tabs_0_tab_content_title',''),(150298,40524,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(150299,40524,'blocks_5_tabs_0_tab_content_heading','What You’ll Learn'),(150300,40524,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(150301,40524,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(150302,40524,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(150303,40524,'blocks_5_tabs_0_tab_content_actions',''),(150304,40524,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(150305,40524,'blocks_5_tabs_0_tab_content',''),(150306,40524,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(150307,40524,'blocks_5_tabs_0_tab_image','39076'),(150308,40524,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(150309,40524,'blocks_5_tabs_1_tab_label','What do I need ?'),(150310,40524,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(150311,40524,'blocks_5_tabs_1_tab_content_title',''),(150312,40524,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(150313,40524,'blocks_5_tabs_1_tab_content_heading','Entry Requirements'),(150314,40524,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(150315,40524,'blocks_5_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(150316,40524,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(150317,40524,'blocks_5_tabs_1_tab_content_actions',''),(150318,40524,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(150319,40524,'blocks_5_tabs_1_tab_content',''),(150320,40524,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(150321,40524,'blocks_5_tabs_1_tab_image','39223'),(150322,40524,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(150323,40524,'blocks_5_tabs_2_tab_label','Where can I learn ?'),(150324,40524,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(150325,40524,'blocks_5_tabs_2_tab_content_title',''),(150326,40524,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(150327,40524,'blocks_5_tabs_2_tab_content_heading','Locations'),(150328,40524,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(150329,40524,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(150330,40524,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(150331,40524,'blocks_5_tabs_2_tab_content_actions',''),(150332,40524,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(150333,40524,'blocks_5_tabs_2_tab_content',''),(150334,40524,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(150335,40524,'blocks_5_tabs_2_tab_image','39224'),(150336,40524,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(150337,40524,'blocks_5_tabs','3'),(150338,40524,'_blocks_5_tabs','field_6177cff281419'),(150339,40524,'blocks_6_acfe_flexible_toggle',''),(150340,40524,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(150341,40524,'blocks_6_acfe_flexible_layout_title','Text Block'),(150342,40524,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(150343,40524,'blocks_6_options_theme','#b61234'),(150344,40524,'_blocks_6_options_theme','field_6176830e2ad17'),(150345,40524,'blocks_6_options',''),(150346,40524,'_blocks_6_options','field_6176830e2ad16'),(150347,40524,'blocks_6_text_block_heading','Fees & Funding Options'),(150348,40524,'_blocks_6_text_block_heading','field_617669d413097'),(150349,40524,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(150350,40524,'_blocks_6_text_block_content','field_617669ec13098'),(150351,40524,'blocks_7_acfe_flexible_toggle',''),(150352,40524,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(150353,40524,'blocks_7_acfe_flexible_layout_title','Icons'),(150354,40524,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(150355,40524,'blocks_7_options_theme','#b61234'),(150356,40524,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(150357,40524,'blocks_7_options_format','row'),(150358,40524,'_blocks_7_options_format','field_64bfde9a90690'),(150359,40524,'blocks_7_options',''),(150360,40524,'_blocks_7_options','field_64bfdd9b90684'),(150361,40524,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(150362,40524,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(150363,40524,'blocks_7_icon_row_items_0_label','Pay in Full'),(150364,40524,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(150365,40524,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(150366,40524,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(150367,40524,'blocks_7_icon_row_items_1_icon','finance.svg'),(150368,40524,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(150369,40524,'blocks_7_icon_row_items_1_label','0% Finance'),(150370,40524,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(150371,40524,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(150372,40524,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(150373,40524,'blocks_7_icon_row_items_2_icon','deposit.svg'),(150374,40524,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(150375,40524,'blocks_7_icon_row_items_2_label','Deposit & balance'),(150376,40524,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(150377,40524,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(150378,40524,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(150379,40524,'blocks_7_icon_row_items','3'),(150380,40524,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(150381,40524,'blocks_8_acfe_flexible_toggle',''),(150382,40524,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(150383,40524,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(150384,40524,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(150385,40524,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(150386,40524,'_blocks_8_content','field_6193c9b5eac84'),(150387,40524,'blocks_9_acfe_flexible_toggle',''),(150388,40524,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(150389,40524,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(150390,40524,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(150391,40524,'blocks_9_testimonial_slider_content_title',''),(150392,40524,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(150393,40524,'blocks_9_testimonial_slider_content_heading','Testimonials'),(150394,40524,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(150395,40524,'blocks_9_testimonial_slider_content_text',''),(150396,40524,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(150397,40524,'blocks_9_testimonial_slider_content_actions',''),(150398,40524,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(150399,40524,'blocks_9_testimonial_slider_content',''),(150400,40524,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(150401,40524,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(150402,40524,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(150403,40524,'blocks_9_testimonial_slider_ambassador_bool','0'),(150404,40524,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(150405,40524,'blocks_10_acfe_flexible_toggle',''),(150406,40524,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(150407,40524,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(150408,40524,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(150409,40524,'blocks_10_options_theme','#ffffff'),(150410,40524,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(150411,40524,'blocks_10_options_state','0'),(150412,40524,'_blocks_10_options_state','field_6239fcb7508c5'),(150413,40524,'blocks_10_options',''),(150414,40524,'_blocks_10_options','field_6177e2991ac44'),(150415,40524,'blocks_10_content_title',''),(150416,40524,'_blocks_10_content_title','field_64d237e8bb1e2'),(150417,40524,'blocks_10_content_heading','Frequently Asked Questions '),(150418,40524,'_blocks_10_content_heading','field_64d237e8bb1e3'),(150419,40524,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329829444'),(150420,40524,'_blocks_10_content_text','field_64d237e8bb1e4'),(150421,40524,'blocks_10_content_actions',''),(150422,40524,'_blocks_10_content_actions','field_64d237e8bb1e5'),(150423,40524,'blocks_10_content_align','left'),(150424,40524,'_blocks_10_content_align','field_64d2443e6b6aa'),(150425,40524,'blocks_10_content',''),(150426,40524,'_blocks_10_content','field_64d237e8bb1e1'),(150427,40524,'blocks_10_accordion_content','faqs'),(150428,40524,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(150429,40524,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(150430,40524,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(150431,40524,'blocks_10_actions',''),(150432,40524,'_blocks_10_actions','field_61a746a817f7a'),(150495,39238,'blocks_4_acfe_flexible_toggle',''),(150496,39238,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(150497,39238,'blocks_4_acfe_flexible_layout_title','Tabs'),(150498,39238,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(150499,39238,'blocks_4_options_theme','#ffffff'),(150500,39238,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(150501,39238,'blocks_4_options',''),(150502,39238,'_blocks_4_options','field_6177cfcd8140f'),(150503,39238,'blocks_4_tabs_0_tab_label','What will I learn ?'),(150504,39238,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(150505,39238,'blocks_4_tabs_0_tab_content_title',''),(150506,39238,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(150507,39238,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(150508,39238,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(150509,39238,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(150510,39238,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(150511,39238,'blocks_4_tabs_0_tab_content_actions',''),(150512,39238,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(150513,39238,'blocks_4_tabs_0_tab_content',''),(150514,39238,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(150515,39238,'blocks_4_tabs_0_tab_image','39076'),(150516,39238,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(150517,39238,'blocks_4_tabs_1_tab_label','What do I need ?'),(150518,39238,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(150519,39238,'blocks_4_tabs_1_tab_content_title',''),(150520,39238,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(150521,39238,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(150522,39238,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(150523,39238,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(150524,39238,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(150525,39238,'blocks_4_tabs_1_tab_content_actions',''),(150526,39238,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(150527,39238,'blocks_4_tabs_1_tab_content',''),(150528,39238,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(150529,39238,'blocks_4_tabs_1_tab_image','39223'),(150530,39238,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(150531,39238,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(150532,39238,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(150533,39238,'blocks_4_tabs_2_tab_content_title',''),(150534,39238,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(150535,39238,'blocks_4_tabs_2_tab_content_heading','Locations'),(150536,39238,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(150537,39238,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(150538,39238,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(150539,39238,'blocks_4_tabs_2_tab_content_actions',''),(150540,39238,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(150541,39238,'blocks_4_tabs_2_tab_content',''),(150542,39238,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(150543,39238,'blocks_4_tabs_2_tab_image','39224'),(150544,39238,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(150545,39238,'blocks_4_tabs','3'),(150546,39238,'_blocks_4_tabs','field_6177cff281419'),(150547,39238,'blocks_5_acfe_flexible_toggle',''),(150548,39238,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(150549,39238,'blocks_5_acfe_flexible_layout_title','Text Block'),(150550,39238,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(150551,39238,'blocks_5_options_theme','#b61234'),(150552,39238,'_blocks_5_options_theme','field_6176830e2ad17'),(150553,39238,'blocks_5_options',''),(150554,39238,'_blocks_5_options','field_6176830e2ad16'),(150555,39238,'blocks_5_text_block_heading','Fees & Funding Options'),(150556,39238,'_blocks_5_text_block_heading','field_617669d413097'),(150557,39238,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(150558,39238,'_blocks_5_text_block_content','field_617669ec13098'),(150599,40525,'hide_hero','0'),(150600,40525,'_hide_hero','field_66a2380fcda39'),(150601,40525,'hero_title','Biomechanics and Sports Massage Therapy'),(150602,40525,'_hero_title','field_617571fe285e8'),(150603,40525,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(150604,40525,'_hero_text','field_6175723c285e9'),(150605,40525,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(150606,40525,'_hero_actions_0_button','field_61757281285eb'),(150607,40525,'hero_actions','1'),(150608,40525,'_hero_actions','field_61757270285ea'),(150609,40525,'hero_style','default'),(150610,40525,'_hero_style','field_62051d9dc5324'),(150611,40525,'_thumbnail_id','39240'),(150612,40525,'__thumbnail_id','field_617570855ddaf'),(150613,40525,'hero_image_pos_x','right'),(150614,40525,'_hero_image_pos_x','field_62ec3d05390bb'),(150615,40525,'hero_image_pos_y','top'),(150616,40525,'_hero_image_pos_y','field_62ec3d05390bc'),(150617,40525,'hero_image_pos',''),(150618,40525,'_hero_image_pos','field_62ec3d05390ba'),(150619,40525,'fft_hide_from_listings','0'),(150620,40525,'_fft_hide_from_listings','field_61f1320446ab2'),(150621,40525,'fft_page_format','default'),(150622,40525,'_fft_page_format','field_61ae213f1f218'),(150623,40525,'fft_hide_nav','0'),(150624,40525,'_fft_hide_nav','field_635bd5e43527c'),(150625,40525,'fft_hide_header_call_to_action','0'),(150626,40525,'_fft_hide_header_call_to_action','field_635bd6723527d'),(150627,40525,'fft_page_sitemap','0'),(150628,40525,'_fft_page_sitemap','field_61af9b34e8181'),(150629,40525,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"steps\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(150630,40525,'_blocks','field_6176696113096'),(150631,40525,'blocks_0_acfe_flexible_toggle',''),(150632,40525,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(150633,40525,'blocks_0_acfe_flexible_layout_title','Template'),(150634,40525,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(150635,40525,'blocks_0_template','39087'),(150636,40525,'_blocks_0_template','field_617bdd570fe01'),(150637,40525,'blocks_7_acfe_flexible_toggle',''),(150638,40525,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(150639,40525,'blocks_7_acfe_flexible_layout_title','Icons'),(150640,40525,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(150641,40525,'blocks_7_options_theme','#b61234'),(150642,40525,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(150643,40525,'blocks_7_options_format','row'),(150644,40525,'_blocks_7_options_format','field_64bfde9a90690'),(150645,40525,'blocks_7_options',''),(150646,40525,'_blocks_7_options','field_64bfdd9b90684'),(150647,40525,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(150648,40525,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(150649,40525,'blocks_7_icon_row_items_0_label','Pay in Full'),(150650,40525,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(150651,40525,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(150652,40525,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(150653,40525,'blocks_7_icon_row_items_1_icon','finance.svg'),(150654,40525,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(150655,40525,'blocks_7_icon_row_items_1_label','0% Finance'),(150656,40525,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(150657,40525,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(150658,40525,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(150659,40525,'blocks_7_icon_row_items_2_icon','deposit.svg'),(150660,40525,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(150661,40525,'blocks_7_icon_row_items_2_label','Deposit & balance'),(150662,40525,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(150663,40525,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(150664,40525,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(150665,40525,'blocks_7_icon_row_items','3'),(150666,40525,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(150667,40525,'blocks_8_acfe_flexible_toggle',''),(150668,40525,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(150669,40525,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(150670,40525,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(150671,40525,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(150672,40525,'_blocks_8_content','field_6193c9b5eac84'),(150673,40525,'blocks_9_acfe_flexible_toggle',''),(150674,40525,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(150675,40525,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(150676,40525,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(150677,40525,'blocks_9_testimonial_slider_content_title',''),(150678,40525,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(150679,40525,'blocks_9_testimonial_slider_content_heading','Testimonials'),(150680,40525,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(150681,40525,'blocks_9_testimonial_slider_content_text',''),(150682,40525,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(150683,40525,'blocks_9_testimonial_slider_content_actions',''),(150684,40525,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(150685,40525,'blocks_9_testimonial_slider_content',''),(150686,40525,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(150687,40525,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(150688,40525,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(150689,40525,'blocks_9_testimonial_slider_ambassador_bool','0'),(150690,40525,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(150691,40525,'blocks_10_acfe_flexible_toggle',''),(150692,40525,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(150693,40525,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(150694,40525,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(150695,40525,'blocks_10_options_theme','#ffffff'),(150696,40525,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(150697,40525,'blocks_10_options_state','0'),(150698,40525,'_blocks_10_options_state','field_6239fcb7508c5'),(150699,40525,'blocks_10_options',''),(150700,40525,'_blocks_10_options','field_6177e2991ac44'),(150701,40525,'blocks_10_content_title',''),(150702,40525,'_blocks_10_content_title','field_64d237e8bb1e2'),(150703,40525,'blocks_10_content_heading','Frequently Asked Questions '),(150704,40525,'_blocks_10_content_heading','field_64d237e8bb1e3'),(150705,40525,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329829444'),(150706,40525,'_blocks_10_content_text','field_64d237e8bb1e4'),(150707,40525,'blocks_10_content_actions',''),(150708,40525,'_blocks_10_content_actions','field_64d237e8bb1e5'),(150709,40525,'blocks_10_content_align','left'),(150710,40525,'_blocks_10_content_align','field_64d2443e6b6aa'),(150711,40525,'blocks_10_content',''),(150712,40525,'_blocks_10_content','field_64d237e8bb1e1'),(150713,40525,'blocks_10_accordion_content','faqs'),(150714,40525,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(150715,40525,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(150716,40525,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(150717,40525,'blocks_10_actions',''),(150718,40525,'_blocks_10_actions','field_61a746a817f7a'),(150719,40525,'blocks_1_acfe_flexible_toggle',''),(150720,40525,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(150721,40525,'blocks_1_acfe_flexible_layout_title','Video'),(150722,40525,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(150723,40525,'blocks_1_size','large'),(150724,40525,'_blocks_1_size','field_6487038f297c1'),(150725,40525,'blocks_1_row_content_title',''),(150726,40525,'_blocks_1_row_content_title','field_64870132a865d'),(150727,40525,'blocks_1_row_content_heading',''),(150728,40525,'_blocks_1_row_content_heading','field_64870142a865e'),(150729,40525,'blocks_1_row_content_text',''),(150730,40525,'_blocks_1_row_content_text','field_64870148a865f'),(150731,40525,'blocks_1_row_content',''),(150732,40525,'_blocks_1_row_content','field_6487008ba865c'),(150733,40525,'blocks_1_video_src',''),(150734,40525,'_blocks_1_video_src','field_6193c4a98ec07'),(150735,40525,'blocks_1_video_thumbnail',''),(150736,40525,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(150737,40525,'blocks_2_acfe_flexible_toggle',''),(150738,40525,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(150739,40525,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(150740,40525,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(150741,40525,'blocks_2_options_theme','#ffffff'),(150742,40525,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(150743,40525,'blocks_2_options_reverse','0'),(150744,40525,'_blocks_2_options_reverse','field_61768049bb8ac'),(150745,40525,'blocks_2_options',''),(150746,40525,'_blocks_2_options','field_617682517c334'),(150747,40525,'blocks_2_split_5050_image','39241'),(150748,40525,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(150749,40525,'blocks_2_split_5050_video',''),(150750,40525,'_blocks_2_split_5050_video','field_6239f3160848a'),(150751,40525,'blocks_2_split_5050_content_title',''),(150752,40525,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(150753,40525,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(150754,40525,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(150755,40525,'blocks_2_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(150756,40525,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(150757,40525,'blocks_2_split_5050_content_actions',''),(150758,40525,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(150759,40525,'blocks_2_split_5050_content',''),(150760,40525,'_blocks_2_split_5050_content','field_61767afceb8ba'),(150761,40525,'blocks_3_acfe_flexible_toggle',''),(150762,40525,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(150763,40525,'blocks_3_acfe_flexible_layout_title','Form'),(150764,40525,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(150765,40525,'blocks_3_row_content_format','standard'),(150766,40525,'_blocks_3_row_content_format','field_6481ead962881'),(150767,40525,'blocks_3_row_content_title',''),(150768,40525,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(150769,40525,'blocks_3_row_content_heading','Enquire Today'),(150770,40525,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(150771,40525,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(150772,40525,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(150773,40525,'blocks_3_row_content_actions',''),(150774,40525,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(150775,40525,'blocks_3_row_content',''),(150776,40525,'_blocks_3_row_content','field_61a0f5f5b3db0'),(150777,40525,'blocks_3_row_form',''),(150778,40525,'_blocks_3_row_form','field_61a4ff2c0b08e'),(150779,40525,'blocks_3_row_form_button_label',''),(150780,40525,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(150781,40525,'blocks_4_acfe_flexible_toggle',''),(150782,40525,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(150783,40525,'blocks_4_acfe_flexible_layout_title','Tabs'),(150784,40525,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(150785,40525,'blocks_4_options_theme','#ffffff'),(150786,40525,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(150787,40525,'blocks_4_options',''),(150788,40525,'_blocks_4_options','field_6177cfcd8140f'),(150789,40525,'blocks_4_tabs_0_tab_label','What will I learn ?'),(150790,40525,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(150791,40525,'blocks_4_tabs_0_tab_content_title',''),(150792,40525,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(150793,40525,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(150794,40525,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(150795,40525,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(150796,40525,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(150797,40525,'blocks_4_tabs_0_tab_content_actions',''),(150798,40525,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(150799,40525,'blocks_4_tabs_0_tab_content',''),(150800,40525,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(150801,40525,'blocks_4_tabs_0_tab_image','39076'),(150802,40525,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(150803,40525,'blocks_4_tabs_1_tab_label','What do I need ?'),(150804,40525,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(150805,40525,'blocks_4_tabs_1_tab_content_title',''),(150806,40525,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(150807,40525,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(150808,40525,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(150809,40525,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(150810,40525,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(150811,40525,'blocks_4_tabs_1_tab_content_actions',''),(150812,40525,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(150813,40525,'blocks_4_tabs_1_tab_content',''),(150814,40525,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(150815,40525,'blocks_4_tabs_1_tab_image','39223'),(150816,40525,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(150817,40525,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(150818,40525,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(150819,40525,'blocks_4_tabs_2_tab_content_title',''),(150820,40525,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(150821,40525,'blocks_4_tabs_2_tab_content_heading','Locations'),(150822,40525,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(150823,40525,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(150824,40525,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(150825,40525,'blocks_4_tabs_2_tab_content_actions',''),(150826,40525,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(150827,40525,'blocks_4_tabs_2_tab_content',''),(150828,40525,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(150829,40525,'blocks_4_tabs_2_tab_image','39224'),(150830,40525,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(150831,40525,'blocks_4_tabs','3'),(150832,40525,'_blocks_4_tabs','field_6177cff281419'),(150833,40525,'blocks_5_acfe_flexible_toggle',''),(150834,40525,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(150835,40525,'blocks_5_acfe_flexible_layout_title','Text Block'),(150836,40525,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(150837,40525,'blocks_5_options_theme','#b61234'),(150838,40525,'_blocks_5_options_theme','field_6176830e2ad17'),(150839,40525,'blocks_5_options',''),(150840,40525,'_blocks_5_options','field_6176830e2ad16'),(150841,40525,'blocks_5_text_block_heading','Fees & Funding Options'),(150842,40525,'_blocks_5_text_block_heading','field_617669d413097'),(150843,40525,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(150844,40525,'_blocks_5_text_block_content','field_617669ec13098'),(150845,40525,'blocks_6_acfe_flexible_toggle',''),(150846,40525,'_blocks_6_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(150847,40525,'blocks_6_acfe_flexible_layout_title','Steps'),(150848,40525,'_blocks_6_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(150849,40525,'blocks_6_row_content_title',''),(150850,40525,'_blocks_6_row_content_title','field_64888cd1e26e0'),(150851,40525,'blocks_6_row_content_heading','Benefits of Training with Us'),(150852,40525,'_blocks_6_row_content_heading','field_64888cd9e26e1'),(150853,40525,'blocks_6_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(150854,40525,'_blocks_6_row_content_text','field_64888ce2e26e2'),(150855,40525,'blocks_6_row_content_actions',''),(150856,40525,'_blocks_6_row_content_actions','field_64888cf5e26e3'),(150857,40525,'blocks_6_row_content',''),(150858,40525,'_blocks_6_row_content','field_64888cb0e26df'),(150859,40525,'blocks_6_steps_0_icon','progression.svg'),(150860,40525,'_blocks_6_steps_0_icon','field_64888d53e26e6'),(150861,40525,'blocks_6_steps_0_title','Earning potential'),(150862,40525,'_blocks_6_steps_0_title','field_64888d94e26e7'),(150863,40525,'blocks_6_steps_0_text','Find new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(150864,40525,'_blocks_6_steps_0_text','field_64888d99e26e8'),(150865,40525,'blocks_6_steps_1_icon','support.svg'),(150866,40525,'_blocks_6_steps_1_icon','field_64888d53e26e6'),(150867,40525,'blocks_6_steps_1_title','Lifetime learning promise'),(150868,40525,'_blocks_6_steps_1_title','field_64888d94e26e7'),(150869,40525,'blocks_6_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(150870,40525,'_blocks_6_steps_1_text','field_64888d99e26e8'),(150871,40525,'blocks_6_steps_2_icon','qualification.svg'),(150872,40525,'_blocks_6_steps_2_icon','field_64888d53e26e6'),(150873,40525,'blocks_6_steps_2_title','Evidence based hands on learning'),(150874,40525,'_blocks_6_steps_2_title','field_64888d94e26e7'),(150875,40525,'blocks_6_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(150876,40525,'_blocks_6_steps_2_text','field_64888d99e26e8'),(150877,40525,'blocks_6_steps_3_icon','leaders.svg'),(150878,40525,'_blocks_6_steps_3_icon','field_64888d53e26e6'),(150879,40525,'blocks_6_steps_3_title','Stand out from the crowd'),(150880,40525,'_blocks_6_steps_3_title','field_64888d94e26e7'),(150881,40525,'blocks_6_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(150882,40525,'_blocks_6_steps_3_text','field_64888d99e26e8'),(150883,40525,'blocks_6_steps','4'),(150884,40525,'_blocks_6_steps','field_64888d44e26e5'),(150885,40526,'hide_hero','0'),(150886,40526,'_hide_hero','field_66a2380fcda39'),(150887,40526,'hero_title','Biomechanics and Sports Massage Therapy'),(150888,40526,'_hero_title','field_617571fe285e8'),(150889,40526,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(150890,40526,'_hero_text','field_6175723c285e9'),(150891,40526,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(150892,40526,'_hero_actions_0_button','field_61757281285eb'),(150893,40526,'hero_actions','1'),(150894,40526,'_hero_actions','field_61757270285ea'),(150895,40526,'hero_style','default'),(150896,40526,'_hero_style','field_62051d9dc5324'),(150897,40526,'_thumbnail_id','39240'),(150898,40526,'__thumbnail_id','field_617570855ddaf'),(150899,40526,'hero_image_pos_x','right'),(150900,40526,'_hero_image_pos_x','field_62ec3d05390bb'),(150901,40526,'hero_image_pos_y','top'),(150902,40526,'_hero_image_pos_y','field_62ec3d05390bc'),(150903,40526,'hero_image_pos',''),(150904,40526,'_hero_image_pos','field_62ec3d05390ba'),(150905,40526,'fft_hide_from_listings','0'),(150906,40526,'_fft_hide_from_listings','field_61f1320446ab2'),(150907,40526,'fft_page_format','default'),(150908,40526,'_fft_page_format','field_61ae213f1f218'),(150909,40526,'fft_hide_nav','0'),(150910,40526,'_fft_hide_nav','field_635bd5e43527c'),(150911,40526,'fft_hide_header_call_to_action','0'),(150912,40526,'_fft_hide_header_call_to_action','field_635bd6723527d'),(150913,40526,'fft_page_sitemap','0'),(150914,40526,'_fft_page_sitemap','field_61af9b34e8181'),(150915,40526,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"steps\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(150916,40526,'_blocks','field_6176696113096'),(150917,40526,'blocks_0_acfe_flexible_toggle',''),(150918,40526,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(150919,40526,'blocks_0_acfe_flexible_layout_title','Template'),(150920,40526,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(150921,40526,'blocks_0_template','39087'),(150922,40526,'_blocks_0_template','field_617bdd570fe01'),(150923,40526,'blocks_7_acfe_flexible_toggle',''),(150924,40526,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(150925,40526,'blocks_7_acfe_flexible_layout_title','Icons'),(150926,40526,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(150927,40526,'blocks_7_options_theme','#b61234'),(150928,40526,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(150929,40526,'blocks_7_options_format','row'),(150930,40526,'_blocks_7_options_format','field_64bfde9a90690'),(150931,40526,'blocks_7_options',''),(150932,40526,'_blocks_7_options','field_64bfdd9b90684'),(150933,40526,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(150934,40526,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(150935,40526,'blocks_7_icon_row_items_0_label','Pay in Full'),(150936,40526,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(150937,40526,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(150938,40526,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(150939,40526,'blocks_7_icon_row_items_1_icon','finance.svg'),(150940,40526,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(150941,40526,'blocks_7_icon_row_items_1_label','0% Finance'),(150942,40526,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(150943,40526,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(150944,40526,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(150945,40526,'blocks_7_icon_row_items_2_icon','deposit.svg'),(150946,40526,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(150947,40526,'blocks_7_icon_row_items_2_label','Deposit & balance'),(150948,40526,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(150949,40526,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(150950,40526,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(150951,40526,'blocks_7_icon_row_items','3'),(150952,40526,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(150953,40526,'blocks_8_acfe_flexible_toggle',''),(150954,40526,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(150955,40526,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(150956,40526,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(150957,40526,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(150958,40526,'_blocks_8_content','field_6193c9b5eac84'),(150959,40526,'blocks_9_acfe_flexible_toggle',''),(150960,40526,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(150961,40526,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(150962,40526,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(150963,40526,'blocks_9_testimonial_slider_content_title',''),(150964,40526,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(150965,40526,'blocks_9_testimonial_slider_content_heading','Testimonials'),(150966,40526,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(150967,40526,'blocks_9_testimonial_slider_content_text',''),(150968,40526,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(150969,40526,'blocks_9_testimonial_slider_content_actions',''),(150970,40526,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(150971,40526,'blocks_9_testimonial_slider_content',''),(150972,40526,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(150973,40526,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(150974,40526,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(150975,40526,'blocks_9_testimonial_slider_ambassador_bool','0'),(150976,40526,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(150977,40526,'blocks_10_acfe_flexible_toggle',''),(150978,40526,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(150979,40526,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(150980,40526,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(150981,40526,'blocks_10_options_theme','#ffffff'),(150982,40526,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(150983,40526,'blocks_10_options_state','0'),(150984,40526,'_blocks_10_options_state','field_6239fcb7508c5'),(150985,40526,'blocks_10_options',''),(150986,40526,'_blocks_10_options','field_6177e2991ac44'),(150987,40526,'blocks_10_content_title',''),(150988,40526,'_blocks_10_content_title','field_64d237e8bb1e2'),(150989,40526,'blocks_10_content_heading','Frequently Asked Questions '),(150990,40526,'_blocks_10_content_heading','field_64d237e8bb1e3'),(150991,40526,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329829444'),(150992,40526,'_blocks_10_content_text','field_64d237e8bb1e4'),(150993,40526,'blocks_10_content_actions',''),(150994,40526,'_blocks_10_content_actions','field_64d237e8bb1e5'),(150995,40526,'blocks_10_content_align','left'),(150996,40526,'_blocks_10_content_align','field_64d2443e6b6aa'),(150997,40526,'blocks_10_content',''),(150998,40526,'_blocks_10_content','field_64d237e8bb1e1'),(150999,40526,'blocks_10_accordion_content','faqs'),(151000,40526,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(151001,40526,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(151002,40526,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(151003,40526,'blocks_10_actions',''),(151004,40526,'_blocks_10_actions','field_61a746a817f7a'),(151005,40526,'blocks_1_acfe_flexible_toggle',''),(151006,40526,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(151007,40526,'blocks_1_acfe_flexible_layout_title','Video'),(151008,40526,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(151009,40526,'blocks_1_size','large'),(151010,40526,'_blocks_1_size','field_6487038f297c1'),(151011,40526,'blocks_1_row_content_title',''),(151012,40526,'_blocks_1_row_content_title','field_64870132a865d'),(151013,40526,'blocks_1_row_content_heading',''),(151014,40526,'_blocks_1_row_content_heading','field_64870142a865e'),(151015,40526,'blocks_1_row_content_text',''),(151016,40526,'_blocks_1_row_content_text','field_64870148a865f'),(151017,40526,'blocks_1_row_content',''),(151018,40526,'_blocks_1_row_content','field_6487008ba865c'),(151019,40526,'blocks_1_video_src',''),(151020,40526,'_blocks_1_video_src','field_6193c4a98ec07'),(151021,40526,'blocks_1_video_thumbnail',''),(151022,40526,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(151023,40526,'blocks_2_acfe_flexible_toggle',''),(151024,40526,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(151025,40526,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(151026,40526,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(151027,40526,'blocks_2_options_theme','#ffffff'),(151028,40526,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(151029,40526,'blocks_2_options_reverse','0'),(151030,40526,'_blocks_2_options_reverse','field_61768049bb8ac'),(151031,40526,'blocks_2_options',''),(151032,40526,'_blocks_2_options','field_617682517c334'),(151033,40526,'blocks_2_split_5050_image','39241'),(151034,40526,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(151035,40526,'blocks_2_split_5050_video',''),(151036,40526,'_blocks_2_split_5050_video','field_6239f3160848a'),(151037,40526,'blocks_2_split_5050_content_title',''),(151038,40526,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(151039,40526,'blocks_2_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(151040,40526,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(151041,40526,'blocks_2_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(151042,40526,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(151043,40526,'blocks_2_split_5050_content_actions',''),(151044,40526,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(151045,40526,'blocks_2_split_5050_content',''),(151046,40526,'_blocks_2_split_5050_content','field_61767afceb8ba'),(151047,40526,'blocks_3_acfe_flexible_toggle',''),(151048,40526,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(151049,40526,'blocks_3_acfe_flexible_layout_title','Form'),(151050,40526,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(151051,40526,'blocks_3_row_content_format','standard'),(151052,40526,'_blocks_3_row_content_format','field_6481ead962881'),(151053,40526,'blocks_3_row_content_title',''),(151054,40526,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(151055,40526,'blocks_3_row_content_heading','Enquire Today'),(151056,40526,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(151057,40526,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(151058,40526,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(151059,40526,'blocks_3_row_content_actions',''),(151060,40526,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(151061,40526,'blocks_3_row_content',''),(151062,40526,'_blocks_3_row_content','field_61a0f5f5b3db0'),(151063,40526,'blocks_3_row_form','40394'),(151064,40526,'_blocks_3_row_form','field_61a4ff2c0b08e'),(151065,40526,'blocks_3_row_form_button_label',''),(151066,40526,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(151067,40526,'blocks_4_acfe_flexible_toggle',''),(151068,40526,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(151069,40526,'blocks_4_acfe_flexible_layout_title','Tabs'),(151070,40526,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(151071,40526,'blocks_4_options_theme','#ffffff'),(151072,40526,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(151073,40526,'blocks_4_options',''),(151074,40526,'_blocks_4_options','field_6177cfcd8140f'),(151075,40526,'blocks_4_tabs_0_tab_label','What will I learn ?'),(151076,40526,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(151077,40526,'blocks_4_tabs_0_tab_content_title',''),(151078,40526,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(151079,40526,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(151080,40526,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(151081,40526,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(151082,40526,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(151083,40526,'blocks_4_tabs_0_tab_content_actions',''),(151084,40526,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(151085,40526,'blocks_4_tabs_0_tab_content',''),(151086,40526,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(151087,40526,'blocks_4_tabs_0_tab_image','39076'),(151088,40526,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(151089,40526,'blocks_4_tabs_1_tab_label','What do I need ?'),(151090,40526,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(151091,40526,'blocks_4_tabs_1_tab_content_title',''),(151092,40526,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(151093,40526,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(151094,40526,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(151095,40526,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(151096,40526,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(151097,40526,'blocks_4_tabs_1_tab_content_actions',''),(151098,40526,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(151099,40526,'blocks_4_tabs_1_tab_content',''),(151100,40526,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(151101,40526,'blocks_4_tabs_1_tab_image','39223'),(151102,40526,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(151103,40526,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(151104,40526,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(151105,40526,'blocks_4_tabs_2_tab_content_title',''),(151106,40526,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(151107,40526,'blocks_4_tabs_2_tab_content_heading','Locations'),(151108,40526,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(151109,40526,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(151110,40526,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(151111,40526,'blocks_4_tabs_2_tab_content_actions',''),(151112,40526,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(151113,40526,'blocks_4_tabs_2_tab_content',''),(151114,40526,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(151115,40526,'blocks_4_tabs_2_tab_image','39224'),(151116,40526,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(151117,40526,'blocks_4_tabs','3'),(151118,40526,'_blocks_4_tabs','field_6177cff281419'),(151119,40526,'blocks_5_acfe_flexible_toggle',''),(151120,40526,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(151121,40526,'blocks_5_acfe_flexible_layout_title','Text Block'),(151122,40526,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(151123,40526,'blocks_5_options_theme','#b61234'),(151124,40526,'_blocks_5_options_theme','field_6176830e2ad17'),(151125,40526,'blocks_5_options',''),(151126,40526,'_blocks_5_options','field_6176830e2ad16'),(151127,40526,'blocks_5_text_block_heading','Fees & Funding Options'),(151128,40526,'_blocks_5_text_block_heading','field_617669d413097'),(151129,40526,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(151130,40526,'_blocks_5_text_block_content','field_617669ec13098'),(151131,40526,'blocks_6_acfe_flexible_toggle',''),(151132,40526,'_blocks_6_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(151133,40526,'blocks_6_acfe_flexible_layout_title','Steps'),(151134,40526,'_blocks_6_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(151135,40526,'blocks_6_row_content_title',''),(151136,40526,'_blocks_6_row_content_title','field_64888cd1e26e0'),(151137,40526,'blocks_6_row_content_heading','Benefits of Training with Us'),(151138,40526,'_blocks_6_row_content_heading','field_64888cd9e26e1'),(151139,40526,'blocks_6_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(151140,40526,'_blocks_6_row_content_text','field_64888ce2e26e2'),(151141,40526,'blocks_6_row_content_actions',''),(151142,40526,'_blocks_6_row_content_actions','field_64888cf5e26e3'),(151143,40526,'blocks_6_row_content',''),(151144,40526,'_blocks_6_row_content','field_64888cb0e26df'),(151145,40526,'blocks_6_steps_0_icon','progression.svg'),(151146,40526,'_blocks_6_steps_0_icon','field_64888d53e26e6'),(151147,40526,'blocks_6_steps_0_title','Earning potential'),(151148,40526,'_blocks_6_steps_0_title','field_64888d94e26e7'),(151149,40526,'blocks_6_steps_0_text','Find new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(151150,40526,'_blocks_6_steps_0_text','field_64888d99e26e8'),(151151,40526,'blocks_6_steps_1_icon','support.svg'),(151152,40526,'_blocks_6_steps_1_icon','field_64888d53e26e6'),(151153,40526,'blocks_6_steps_1_title','Lifetime learning promise'),(151154,40526,'_blocks_6_steps_1_title','field_64888d94e26e7'),(151155,40526,'blocks_6_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(151156,40526,'_blocks_6_steps_1_text','field_64888d99e26e8'),(151157,40526,'blocks_6_steps_2_icon','qualification.svg'),(151158,40526,'_blocks_6_steps_2_icon','field_64888d53e26e6'),(151159,40526,'blocks_6_steps_2_title','Evidence based hands on learning'),(151160,40526,'_blocks_6_steps_2_title','field_64888d94e26e7'),(151161,40526,'blocks_6_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(151162,40526,'_blocks_6_steps_2_text','field_64888d99e26e8'),(151163,40526,'blocks_6_steps_3_icon','leaders.svg'),(151164,40526,'_blocks_6_steps_3_icon','field_64888d53e26e6'),(151165,40526,'blocks_6_steps_3_title','Stand out from the crowd'),(151166,40526,'_blocks_6_steps_3_title','field_64888d94e26e7'),(151167,40526,'blocks_6_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(151168,40526,'_blocks_6_steps_3_text','field_64888d99e26e8'),(151169,40526,'blocks_6_steps','4'),(151170,40526,'_blocks_6_steps','field_64888d44e26e5'),(151171,39238,'blocks_1_acfe_flexible_toggle',''),(151172,39238,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(151173,39238,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(151174,39238,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(151175,39238,'blocks_1_options_theme','#ffffff'),(151176,39238,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(151177,39238,'blocks_1_options_reverse','0'),(151178,39238,'_blocks_1_options_reverse','field_61768049bb8ac'),(151179,39238,'blocks_1_options',''),(151180,39238,'_blocks_1_options','field_617682517c334'),(151181,39238,'blocks_1_split_5050_image','39241'),(151182,39238,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(151183,39238,'blocks_1_split_5050_video',''),(151184,39238,'_blocks_1_split_5050_video','field_6239f3160848a'),(151185,39238,'blocks_1_split_5050_content_title',''),(151186,39238,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(151187,39238,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(151188,39238,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(151189,39238,'blocks_1_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(151190,39238,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(151191,39238,'blocks_1_split_5050_content_actions',''),(151192,39238,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(151193,39238,'blocks_1_split_5050_content',''),(151194,39238,'_blocks_1_split_5050_content','field_61767afceb8ba'),(151213,40527,'hide_hero','0'),(151214,40527,'_hide_hero','field_66a2380fcda39'),(151215,40527,'hero_title','Biomechanics and Sports Massage Therapy'),(151216,40527,'_hero_title','field_617571fe285e8'),(151217,40527,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(151218,40527,'_hero_text','field_6175723c285e9'),(151219,40527,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(151220,40527,'_hero_actions_0_button','field_61757281285eb'),(151221,40527,'hero_actions','1'),(151222,40527,'_hero_actions','field_61757270285ea'),(151223,40527,'hero_style','default'),(151224,40527,'_hero_style','field_62051d9dc5324'),(151225,40527,'_thumbnail_id','39240'),(151226,40527,'__thumbnail_id','field_617570855ddaf'),(151227,40527,'hero_image_pos_x','right'),(151228,40527,'_hero_image_pos_x','field_62ec3d05390bb'),(151229,40527,'hero_image_pos_y','top'),(151230,40527,'_hero_image_pos_y','field_62ec3d05390bc'),(151231,40527,'hero_image_pos',''),(151232,40527,'_hero_image_pos','field_62ec3d05390ba'),(151233,40527,'fft_hide_from_listings','0'),(151234,40527,'_fft_hide_from_listings','field_61f1320446ab2'),(151235,40527,'fft_page_format','default'),(151236,40527,'_fft_page_format','field_61ae213f1f218'),(151237,40527,'fft_hide_nav','0'),(151238,40527,'_fft_hide_nav','field_635bd5e43527c'),(151239,40527,'fft_hide_header_call_to_action','0'),(151240,40527,'_fft_hide_header_call_to_action','field_635bd6723527d'),(151241,40527,'fft_page_sitemap','0'),(151242,40527,'_fft_page_sitemap','field_61af9b34e8181'),(151243,40527,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"steps\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(151244,40527,'_blocks','field_6176696113096'),(151245,40527,'blocks_0_acfe_flexible_toggle',''),(151246,40527,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(151247,40527,'blocks_0_acfe_flexible_layout_title','Template'),(151248,40527,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(151249,40527,'blocks_0_template','39087'),(151250,40527,'_blocks_0_template','field_617bdd570fe01'),(151251,40527,'blocks_7_acfe_flexible_toggle',''),(151252,40527,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(151253,40527,'blocks_7_acfe_flexible_layout_title','Icons'),(151254,40527,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(151255,40527,'blocks_7_options_theme','#b61234'),(151256,40527,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(151257,40527,'blocks_7_options_format','row'),(151258,40527,'_blocks_7_options_format','field_64bfde9a90690'),(151259,40527,'blocks_7_options',''),(151260,40527,'_blocks_7_options','field_64bfdd9b90684'),(151261,40527,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(151262,40527,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(151263,40527,'blocks_7_icon_row_items_0_label','Pay in Full'),(151264,40527,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(151265,40527,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(151266,40527,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(151267,40527,'blocks_7_icon_row_items_1_icon','finance.svg'),(151268,40527,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(151269,40527,'blocks_7_icon_row_items_1_label','0% Finance'),(151270,40527,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(151271,40527,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(151272,40527,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(151273,40527,'blocks_7_icon_row_items_2_icon','deposit.svg'),(151274,40527,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(151275,40527,'blocks_7_icon_row_items_2_label','Deposit & balance'),(151276,40527,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(151277,40527,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(151278,40527,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(151279,40527,'blocks_7_icon_row_items','3'),(151280,40527,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(151281,40527,'blocks_8_acfe_flexible_toggle',''),(151282,40527,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(151283,40527,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(151284,40527,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(151285,40527,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(151286,40527,'_blocks_8_content','field_6193c9b5eac84'),(151287,40527,'blocks_9_acfe_flexible_toggle',''),(151288,40527,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(151289,40527,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(151290,40527,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(151291,40527,'blocks_9_testimonial_slider_content_title',''),(151292,40527,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(151293,40527,'blocks_9_testimonial_slider_content_heading','Testimonials'),(151294,40527,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(151295,40527,'blocks_9_testimonial_slider_content_text',''),(151296,40527,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(151297,40527,'blocks_9_testimonial_slider_content_actions',''),(151298,40527,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(151299,40527,'blocks_9_testimonial_slider_content',''),(151300,40527,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(151301,40527,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(151302,40527,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(151303,40527,'blocks_9_testimonial_slider_ambassador_bool','0'),(151304,40527,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(151305,40527,'blocks_10_acfe_flexible_toggle',''),(151306,40527,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(151307,40527,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(151308,40527,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(151309,40527,'blocks_10_options_theme','#ffffff'),(151310,40527,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(151311,40527,'blocks_10_options_state','0'),(151312,40527,'_blocks_10_options_state','field_6239fcb7508c5'),(151313,40527,'blocks_10_options',''),(151314,40527,'_blocks_10_options','field_6177e2991ac44'),(151315,40527,'blocks_10_content_title',''),(151316,40527,'_blocks_10_content_title','field_64d237e8bb1e2'),(151317,40527,'blocks_10_content_heading','Frequently Asked Questions '),(151318,40527,'_blocks_10_content_heading','field_64d237e8bb1e3'),(151319,40527,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329829444'),(151320,40527,'_blocks_10_content_text','field_64d237e8bb1e4'),(151321,40527,'blocks_10_content_actions',''),(151322,40527,'_blocks_10_content_actions','field_64d237e8bb1e5'),(151323,40527,'blocks_10_content_align','left'),(151324,40527,'_blocks_10_content_align','field_64d2443e6b6aa'),(151325,40527,'blocks_10_content',''),(151326,40527,'_blocks_10_content','field_64d237e8bb1e1'),(151327,40527,'blocks_10_accordion_content','faqs'),(151328,40527,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(151329,40527,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(151330,40527,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(151331,40527,'blocks_10_actions',''),(151332,40527,'_blocks_10_actions','field_61a746a817f7a'),(151333,40527,'blocks_3_acfe_flexible_toggle',''),(151334,40527,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(151335,40527,'blocks_3_acfe_flexible_layout_title','Form'),(151336,40527,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(151337,40527,'blocks_3_row_content_format','standard'),(151338,40527,'_blocks_3_row_content_format','field_6481ead962881'),(151339,40527,'blocks_3_row_content_title',''),(151340,40527,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(151341,40527,'blocks_3_row_content_heading','Enquire Today'),(151342,40527,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(151343,40527,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(151344,40527,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(151345,40527,'blocks_3_row_content_actions',''),(151346,40527,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(151347,40527,'blocks_3_row_content',''),(151348,40527,'_blocks_3_row_content','field_61a0f5f5b3db0'),(151349,40527,'blocks_3_row_form','40394'),(151350,40527,'_blocks_3_row_form','field_61a4ff2c0b08e'),(151351,40527,'blocks_3_row_form_button_label',''),(151352,40527,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(151353,40527,'blocks_4_acfe_flexible_toggle',''),(151354,40527,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(151355,40527,'blocks_4_acfe_flexible_layout_title','Tabs'),(151356,40527,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(151357,40527,'blocks_4_options_theme','#ffffff'),(151358,40527,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(151359,40527,'blocks_4_options',''),(151360,40527,'_blocks_4_options','field_6177cfcd8140f'),(151361,40527,'blocks_4_tabs_0_tab_label','What will I learn ?'),(151362,40527,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(151363,40527,'blocks_4_tabs_0_tab_content_title',''),(151364,40527,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(151365,40527,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(151366,40527,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(151367,40527,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(151368,40527,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(151369,40527,'blocks_4_tabs_0_tab_content_actions',''),(151370,40527,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(151371,40527,'blocks_4_tabs_0_tab_content',''),(151372,40527,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(151373,40527,'blocks_4_tabs_0_tab_image','39076'),(151374,40527,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(151375,40527,'blocks_4_tabs_1_tab_label','What do I need ?'),(151376,40527,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(151377,40527,'blocks_4_tabs_1_tab_content_title',''),(151378,40527,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(151379,40527,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(151380,40527,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(151381,40527,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(151382,40527,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(151383,40527,'blocks_4_tabs_1_tab_content_actions',''),(151384,40527,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(151385,40527,'blocks_4_tabs_1_tab_content',''),(151386,40527,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(151387,40527,'blocks_4_tabs_1_tab_image','39223'),(151388,40527,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(151389,40527,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(151390,40527,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(151391,40527,'blocks_4_tabs_2_tab_content_title',''),(151392,40527,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(151393,40527,'blocks_4_tabs_2_tab_content_heading','Locations'),(151394,40527,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(151395,40527,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(151396,40527,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(151397,40527,'blocks_4_tabs_2_tab_content_actions',''),(151398,40527,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(151399,40527,'blocks_4_tabs_2_tab_content',''),(151400,40527,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(151401,40527,'blocks_4_tabs_2_tab_image','39224'),(151402,40527,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(151403,40527,'blocks_4_tabs','3'),(151404,40527,'_blocks_4_tabs','field_6177cff281419'),(151405,40527,'blocks_5_acfe_flexible_toggle',''),(151406,40527,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(151407,40527,'blocks_5_acfe_flexible_layout_title','Text Block'),(151408,40527,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(151409,40527,'blocks_5_options_theme','#b61234'),(151410,40527,'_blocks_5_options_theme','field_6176830e2ad17'),(151411,40527,'blocks_5_options',''),(151412,40527,'_blocks_5_options','field_6176830e2ad16'),(151413,40527,'blocks_5_text_block_heading','Fees & Funding Options'),(151414,40527,'_blocks_5_text_block_heading','field_617669d413097'),(151415,40527,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(151416,40527,'_blocks_5_text_block_content','field_617669ec13098'),(151417,40527,'blocks_6_acfe_flexible_toggle',''),(151418,40527,'_blocks_6_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(151419,40527,'blocks_6_acfe_flexible_layout_title','Steps'),(151420,40527,'_blocks_6_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(151421,40527,'blocks_6_row_content_title',''),(151422,40527,'_blocks_6_row_content_title','field_64888cd1e26e0'),(151423,40527,'blocks_6_row_content_heading','Benefits of Training with Us'),(151424,40527,'_blocks_6_row_content_heading','field_64888cd9e26e1'),(151425,40527,'blocks_6_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(151426,40527,'_blocks_6_row_content_text','field_64888ce2e26e2'),(151427,40527,'blocks_6_row_content_actions',''),(151428,40527,'_blocks_6_row_content_actions','field_64888cf5e26e3'),(151429,40527,'blocks_6_row_content',''),(151430,40527,'_blocks_6_row_content','field_64888cb0e26df'),(151431,40527,'blocks_6_steps_0_icon','progression.svg'),(151432,40527,'_blocks_6_steps_0_icon','field_64888d53e26e6'),(151433,40527,'blocks_6_steps_0_title','Earning potential'),(151434,40527,'_blocks_6_steps_0_title','field_64888d94e26e7'),(151435,40527,'blocks_6_steps_0_text','Find new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(151436,40527,'_blocks_6_steps_0_text','field_64888d99e26e8'),(151437,40527,'blocks_6_steps_1_icon','support.svg'),(151438,40527,'_blocks_6_steps_1_icon','field_64888d53e26e6'),(151439,40527,'blocks_6_steps_1_title','Lifetime learning promise'),(151440,40527,'_blocks_6_steps_1_title','field_64888d94e26e7'),(151441,40527,'blocks_6_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(151442,40527,'_blocks_6_steps_1_text','field_64888d99e26e8'),(151443,40527,'blocks_6_steps_2_icon','qualification.svg'),(151444,40527,'_blocks_6_steps_2_icon','field_64888d53e26e6'),(151445,40527,'blocks_6_steps_2_title','Evidence based hands on learning'),(151446,40527,'_blocks_6_steps_2_title','field_64888d94e26e7'),(151447,40527,'blocks_6_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(151448,40527,'_blocks_6_steps_2_text','field_64888d99e26e8'),(151449,40527,'blocks_6_steps_3_icon','leaders.svg'),(151450,40527,'_blocks_6_steps_3_icon','field_64888d53e26e6'),(151451,40527,'blocks_6_steps_3_title','Stand out from the crowd'),(151452,40527,'_blocks_6_steps_3_title','field_64888d94e26e7'),(151453,40527,'blocks_6_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(151454,40527,'_blocks_6_steps_3_text','field_64888d99e26e8'),(151455,40527,'blocks_6_steps','4'),(151456,40527,'_blocks_6_steps','field_64888d44e26e5'),(151457,40527,'blocks_1_acfe_flexible_toggle',''),(151458,40527,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(151459,40527,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(151460,40527,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(151461,40527,'blocks_1_options_theme','#ffffff'),(151462,40527,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(151463,40527,'blocks_1_options_reverse','0'),(151464,40527,'_blocks_1_options_reverse','field_61768049bb8ac'),(151465,40527,'blocks_1_options',''),(151466,40527,'_blocks_1_options','field_617682517c334'),(151467,40527,'blocks_1_split_5050_image','39241'),(151468,40527,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(151469,40527,'blocks_1_split_5050_video',''),(151470,40527,'_blocks_1_split_5050_video','field_6239f3160848a'),(151471,40527,'blocks_1_split_5050_content_title',''),(151472,40527,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(151473,40527,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(151474,40527,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(151475,40527,'blocks_1_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(151476,40527,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(151477,40527,'blocks_1_split_5050_content_actions',''),(151478,40527,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(151479,40527,'blocks_1_split_5050_content',''),(151480,40527,'_blocks_1_split_5050_content','field_61767afceb8ba'),(151481,40527,'blocks_2_acfe_flexible_toggle',''),(151482,40527,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(151483,40527,'blocks_2_acfe_flexible_layout_title','Video'),(151484,40527,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(151485,40527,'blocks_2_size','large'),(151486,40527,'_blocks_2_size','field_6487038f297c1'),(151487,40527,'blocks_2_row_content_title',''),(151488,40527,'_blocks_2_row_content_title','field_64870132a865d'),(151489,40527,'blocks_2_row_content_heading',''),(151490,40527,'_blocks_2_row_content_heading','field_64870142a865e'),(151491,40527,'blocks_2_row_content_text',''),(151492,40527,'_blocks_2_row_content_text','field_64870148a865f'),(151493,40527,'blocks_2_row_content',''),(151494,40527,'_blocks_2_row_content','field_6487008ba865c'),(151495,40527,'blocks_2_video_src',''),(151496,40527,'_blocks_2_video_src','field_6193c4a98ec07'),(151497,40527,'blocks_2_video_thumbnail',''),(151498,40527,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(151499,39238,'blocks_6_acfe_flexible_toggle',''),(151500,39238,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(151501,39238,'blocks_6_acfe_flexible_layout_title','Icons'),(151502,39238,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(151503,39238,'blocks_6_options_theme','#b61234'),(151504,39238,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(151505,39238,'blocks_6_options_format','row'),(151506,39238,'_blocks_6_options_format','field_64bfde9a90690'),(151507,39238,'blocks_6_options',''),(151508,39238,'_blocks_6_options','field_64bfdd9b90684'),(151509,39238,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(151510,39238,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(151511,39238,'blocks_6_icon_row_items_0_label','Pay in Full'),(151512,39238,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(151513,39238,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(151514,39238,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(151515,39238,'blocks_6_icon_row_items_1_icon','finance.svg'),(151516,39238,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(151517,39238,'blocks_6_icon_row_items_1_label','0% Finance'),(151518,39238,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(151519,39238,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(151520,39238,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(151521,39238,'blocks_6_icon_row_items_2_icon','deposit.svg'),(151522,39238,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(151523,39238,'blocks_6_icon_row_items_2_label','Deposit & balance'),(151524,39238,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(151525,39238,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(151526,39238,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(151527,39238,'blocks_6_icon_row_items','3'),(151528,39238,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(151529,39238,'blocks_7_acfe_flexible_toggle',''),(151530,39238,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(151531,39238,'blocks_7_acfe_flexible_layout_title','Steps'),(151532,39238,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(151533,39238,'blocks_7_row_content_title',''),(151534,39238,'_blocks_7_row_content_title','field_64888cd1e26e0'),(151535,39238,'blocks_7_row_content_heading','Benefits of Training with Us'),(151536,39238,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(151537,39238,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(151538,39238,'_blocks_7_row_content_text','field_64888ce2e26e2'),(151539,39238,'blocks_7_row_content_actions',''),(151540,39238,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(151541,39238,'blocks_7_row_content',''),(151542,39238,'_blocks_7_row_content','field_64888cb0e26df'),(151543,39238,'blocks_7_steps_0_icon','progression.svg'),(151544,39238,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(151545,39238,'blocks_7_steps_0_title','Earning potential'),(151546,39238,'_blocks_7_steps_0_title','field_64888d94e26e7'),(151547,39238,'blocks_7_steps_0_text','Attract new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(151548,39238,'_blocks_7_steps_0_text','field_64888d99e26e8'),(151549,39238,'blocks_7_steps_1_icon','support.svg'),(151550,39238,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(151551,39238,'blocks_7_steps_1_title','Lifetime learning promise'),(151552,39238,'_blocks_7_steps_1_title','field_64888d94e26e7'),(151553,39238,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(151554,39238,'_blocks_7_steps_1_text','field_64888d99e26e8'),(151555,39238,'blocks_7_steps_2_icon','qualification.svg'),(151556,39238,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(151557,39238,'blocks_7_steps_2_title','Evidence based hands on learning'),(151558,39238,'_blocks_7_steps_2_title','field_64888d94e26e7'),(151559,39238,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn how to screen and test to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(151560,39238,'_blocks_7_steps_2_text','field_64888d99e26e8'),(151561,39238,'blocks_7_steps_3_icon','leaders.svg'),(151562,39238,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(151563,39238,'blocks_7_steps_3_title','Stand out from the crowd'),(151564,39238,'_blocks_7_steps_3_title','field_64888d94e26e7'),(151565,39238,'blocks_7_steps_3_text','As a Sports Massage Therapist through the Biomechanics Coaching Diploma we will give you the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course can also enhance your relationship with other healthcare providers because you will have confidence in a common language'),(151566,39238,'_blocks_7_steps_3_text','field_64888d99e26e8'),(151567,39238,'blocks_7_steps','4'),(151568,39238,'_blocks_7_steps','field_64888d44e26e5'),(151569,40528,'hide_hero','0'),(151570,40528,'_hide_hero','field_66a2380fcda39'),(151571,40528,'hero_title','Biomechanics and Sports Massage Therapy'),(151572,40528,'_hero_title','field_617571fe285e8'),(151573,40528,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(151574,40528,'_hero_text','field_6175723c285e9'),(151575,40528,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(151576,40528,'_hero_actions_0_button','field_61757281285eb'),(151577,40528,'hero_actions','1'),(151578,40528,'_hero_actions','field_61757270285ea'),(151579,40528,'hero_style','default'),(151580,40528,'_hero_style','field_62051d9dc5324'),(151581,40528,'_thumbnail_id','39240'),(151582,40528,'__thumbnail_id','field_617570855ddaf'),(151583,40528,'hero_image_pos_x','right'),(151584,40528,'_hero_image_pos_x','field_62ec3d05390bb'),(151585,40528,'hero_image_pos_y','top'),(151586,40528,'_hero_image_pos_y','field_62ec3d05390bc'),(151587,40528,'hero_image_pos',''),(151588,40528,'_hero_image_pos','field_62ec3d05390ba'),(151589,40528,'fft_hide_from_listings','0'),(151590,40528,'_fft_hide_from_listings','field_61f1320446ab2'),(151591,40528,'fft_page_format','default'),(151592,40528,'_fft_page_format','field_61ae213f1f218'),(151593,40528,'fft_hide_nav','0'),(151594,40528,'_fft_hide_nav','field_635bd5e43527c'),(151595,40528,'fft_hide_header_call_to_action','0'),(151596,40528,'_fft_hide_header_call_to_action','field_635bd6723527d'),(151597,40528,'fft_page_sitemap','0'),(151598,40528,'_fft_page_sitemap','field_61af9b34e8181'),(151599,40528,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(151600,40528,'_blocks','field_6176696113096'),(151601,40528,'blocks_0_acfe_flexible_toggle',''),(151602,40528,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(151603,40528,'blocks_0_acfe_flexible_layout_title','Template'),(151604,40528,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(151605,40528,'blocks_0_template','39087'),(151606,40528,'_blocks_0_template','field_617bdd570fe01'),(151607,40528,'blocks_8_acfe_flexible_toggle',''),(151608,40528,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(151609,40528,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(151610,40528,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(151611,40528,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(151612,40528,'_blocks_8_content','field_6193c9b5eac84'),(151613,40528,'blocks_9_acfe_flexible_toggle',''),(151614,40528,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(151615,40528,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(151616,40528,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(151617,40528,'blocks_9_testimonial_slider_content_title',''),(151618,40528,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(151619,40528,'blocks_9_testimonial_slider_content_heading','Testimonials'),(151620,40528,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(151621,40528,'blocks_9_testimonial_slider_content_text',''),(151622,40528,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(151623,40528,'blocks_9_testimonial_slider_content_actions',''),(151624,40528,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(151625,40528,'blocks_9_testimonial_slider_content',''),(151626,40528,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(151627,40528,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(151628,40528,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(151629,40528,'blocks_9_testimonial_slider_ambassador_bool','0'),(151630,40528,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(151631,40528,'blocks_10_acfe_flexible_toggle',''),(151632,40528,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(151633,40528,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(151634,40528,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(151635,40528,'blocks_10_options_theme','#ffffff'),(151636,40528,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(151637,40528,'blocks_10_options_state','0'),(151638,40528,'_blocks_10_options_state','field_6239fcb7508c5'),(151639,40528,'blocks_10_options',''),(151640,40528,'_blocks_10_options','field_6177e2991ac44'),(151641,40528,'blocks_10_content_title',''),(151642,40528,'_blocks_10_content_title','field_64d237e8bb1e2'),(151643,40528,'blocks_10_content_heading','Frequently Asked Questions '),(151644,40528,'_blocks_10_content_heading','field_64d237e8bb1e3'),(151645,40528,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329829444'),(151646,40528,'_blocks_10_content_text','field_64d237e8bb1e4'),(151647,40528,'blocks_10_content_actions',''),(151648,40528,'_blocks_10_content_actions','field_64d237e8bb1e5'),(151649,40528,'blocks_10_content_align','left'),(151650,40528,'_blocks_10_content_align','field_64d2443e6b6aa'),(151651,40528,'blocks_10_content',''),(151652,40528,'_blocks_10_content','field_64d237e8bb1e1'),(151653,40528,'blocks_10_accordion_content','faqs'),(151654,40528,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(151655,40528,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(151656,40528,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(151657,40528,'blocks_10_actions',''),(151658,40528,'_blocks_10_actions','field_61a746a817f7a'),(151659,40528,'blocks_3_acfe_flexible_toggle',''),(151660,40528,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(151661,40528,'blocks_3_acfe_flexible_layout_title','Form'),(151662,40528,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(151663,40528,'blocks_3_row_content_format','standard'),(151664,40528,'_blocks_3_row_content_format','field_6481ead962881'),(151665,40528,'blocks_3_row_content_title',''),(151666,40528,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(151667,40528,'blocks_3_row_content_heading','Enquire Today'),(151668,40528,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(151669,40528,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(151670,40528,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(151671,40528,'blocks_3_row_content_actions',''),(151672,40528,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(151673,40528,'blocks_3_row_content',''),(151674,40528,'_blocks_3_row_content','field_61a0f5f5b3db0'),(151675,40528,'blocks_3_row_form','40394'),(151676,40528,'_blocks_3_row_form','field_61a4ff2c0b08e'),(151677,40528,'blocks_3_row_form_button_label',''),(151678,40528,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(151679,40528,'blocks_4_acfe_flexible_toggle',''),(151680,40528,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(151681,40528,'blocks_4_acfe_flexible_layout_title','Tabs'),(151682,40528,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(151683,40528,'blocks_4_options_theme','#ffffff'),(151684,40528,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(151685,40528,'blocks_4_options',''),(151686,40528,'_blocks_4_options','field_6177cfcd8140f'),(151687,40528,'blocks_4_tabs_0_tab_label','What will I learn ?'),(151688,40528,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(151689,40528,'blocks_4_tabs_0_tab_content_title',''),(151690,40528,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(151691,40528,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(151692,40528,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(151693,40528,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(151694,40528,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(151695,40528,'blocks_4_tabs_0_tab_content_actions',''),(151696,40528,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(151697,40528,'blocks_4_tabs_0_tab_content',''),(151698,40528,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(151699,40528,'blocks_4_tabs_0_tab_image','39076'),(151700,40528,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(151701,40528,'blocks_4_tabs_1_tab_label','What do I need ?'),(151702,40528,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(151703,40528,'blocks_4_tabs_1_tab_content_title',''),(151704,40528,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(151705,40528,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(151706,40528,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(151707,40528,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(151708,40528,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(151709,40528,'blocks_4_tabs_1_tab_content_actions',''),(151710,40528,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(151711,40528,'blocks_4_tabs_1_tab_content',''),(151712,40528,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(151713,40528,'blocks_4_tabs_1_tab_image','39223'),(151714,40528,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(151715,40528,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(151716,40528,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(151717,40528,'blocks_4_tabs_2_tab_content_title',''),(151718,40528,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(151719,40528,'blocks_4_tabs_2_tab_content_heading','Locations'),(151720,40528,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(151721,40528,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(151722,40528,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(151723,40528,'blocks_4_tabs_2_tab_content_actions',''),(151724,40528,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(151725,40528,'blocks_4_tabs_2_tab_content',''),(151726,40528,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(151727,40528,'blocks_4_tabs_2_tab_image','39224'),(151728,40528,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(151729,40528,'blocks_4_tabs','3'),(151730,40528,'_blocks_4_tabs','field_6177cff281419'),(151731,40528,'blocks_5_acfe_flexible_toggle',''),(151732,40528,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(151733,40528,'blocks_5_acfe_flexible_layout_title','Text Block'),(151734,40528,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(151735,40528,'blocks_5_options_theme','#b61234'),(151736,40528,'_blocks_5_options_theme','field_6176830e2ad17'),(151737,40528,'blocks_5_options',''),(151738,40528,'_blocks_5_options','field_6176830e2ad16'),(151739,40528,'blocks_5_text_block_heading','Fees & Funding Options'),(151740,40528,'_blocks_5_text_block_heading','field_617669d413097'),(151741,40528,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(151742,40528,'_blocks_5_text_block_content','field_617669ec13098'),(151743,40528,'blocks_1_acfe_flexible_toggle',''),(151744,40528,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(151745,40528,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(151746,40528,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(151747,40528,'blocks_1_options_theme','#ffffff'),(151748,40528,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(151749,40528,'blocks_1_options_reverse','0'),(151750,40528,'_blocks_1_options_reverse','field_61768049bb8ac'),(151751,40528,'blocks_1_options',''),(151752,40528,'_blocks_1_options','field_617682517c334'),(151753,40528,'blocks_1_split_5050_image','39241'),(151754,40528,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(151755,40528,'blocks_1_split_5050_video',''),(151756,40528,'_blocks_1_split_5050_video','field_6239f3160848a'),(151757,40528,'blocks_1_split_5050_content_title',''),(151758,40528,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(151759,40528,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(151760,40528,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(151761,40528,'blocks_1_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(151762,40528,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(151763,40528,'blocks_1_split_5050_content_actions',''),(151764,40528,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(151765,40528,'blocks_1_split_5050_content',''),(151766,40528,'_blocks_1_split_5050_content','field_61767afceb8ba'),(151767,40528,'blocks_2_acfe_flexible_toggle',''),(151768,40528,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(151769,40528,'blocks_2_acfe_flexible_layout_title','Video'),(151770,40528,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(151771,40528,'blocks_2_size','large'),(151772,40528,'_blocks_2_size','field_6487038f297c1'),(151773,40528,'blocks_2_row_content_title',''),(151774,40528,'_blocks_2_row_content_title','field_64870132a865d'),(151775,40528,'blocks_2_row_content_heading',''),(151776,40528,'_blocks_2_row_content_heading','field_64870142a865e'),(151777,40528,'blocks_2_row_content_text',''),(151778,40528,'_blocks_2_row_content_text','field_64870148a865f'),(151779,40528,'blocks_2_row_content',''),(151780,40528,'_blocks_2_row_content','field_6487008ba865c'),(151781,40528,'blocks_2_video_src',''),(151782,40528,'_blocks_2_video_src','field_6193c4a98ec07'),(151783,40528,'blocks_2_video_thumbnail',''),(151784,40528,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(151785,40528,'blocks_6_acfe_flexible_toggle',''),(151786,40528,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(151787,40528,'blocks_6_acfe_flexible_layout_title','Icons'),(151788,40528,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(151789,40528,'blocks_6_options_theme','#b61234'),(151790,40528,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(151791,40528,'blocks_6_options_format','row'),(151792,40528,'_blocks_6_options_format','field_64bfde9a90690'),(151793,40528,'blocks_6_options',''),(151794,40528,'_blocks_6_options','field_64bfdd9b90684'),(151795,40528,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(151796,40528,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(151797,40528,'blocks_6_icon_row_items_0_label','Pay in Full'),(151798,40528,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(151799,40528,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(151800,40528,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(151801,40528,'blocks_6_icon_row_items_1_icon','finance.svg'),(151802,40528,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(151803,40528,'blocks_6_icon_row_items_1_label','0% Finance'),(151804,40528,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(151805,40528,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(151806,40528,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(151807,40528,'blocks_6_icon_row_items_2_icon','deposit.svg'),(151808,40528,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(151809,40528,'blocks_6_icon_row_items_2_label','Deposit & balance'),(151810,40528,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(151811,40528,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(151812,40528,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(151813,40528,'blocks_6_icon_row_items','3'),(151814,40528,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(151815,40528,'blocks_7_acfe_flexible_toggle',''),(151816,40528,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(151817,40528,'blocks_7_acfe_flexible_layout_title','Steps'),(151818,40528,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(151819,40528,'blocks_7_row_content_title',''),(151820,40528,'_blocks_7_row_content_title','field_64888cd1e26e0'),(151821,40528,'blocks_7_row_content_heading','Benefits of Training with Us'),(151822,40528,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(151823,40528,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(151824,40528,'_blocks_7_row_content_text','field_64888ce2e26e2'),(151825,40528,'blocks_7_row_content_actions',''),(151826,40528,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(151827,40528,'blocks_7_row_content',''),(151828,40528,'_blocks_7_row_content','field_64888cb0e26df'),(151829,40528,'blocks_7_steps_0_icon','progression.svg'),(151830,40528,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(151831,40528,'blocks_7_steps_0_title','Earning potential'),(151832,40528,'_blocks_7_steps_0_title','field_64888d94e26e7'),(151833,40528,'blocks_7_steps_0_text','Find new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(151834,40528,'_blocks_7_steps_0_text','field_64888d99e26e8'),(151835,40528,'blocks_7_steps_1_icon','support.svg'),(151836,40528,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(151837,40528,'blocks_7_steps_1_title','Lifetime learning promise'),(151838,40528,'_blocks_7_steps_1_title','field_64888d94e26e7'),(151839,40528,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(151840,40528,'_blocks_7_steps_1_text','field_64888d99e26e8'),(151841,40528,'blocks_7_steps_2_icon','qualification.svg'),(151842,40528,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(151843,40528,'blocks_7_steps_2_title','Evidence based hands on learning'),(151844,40528,'_blocks_7_steps_2_title','field_64888d94e26e7'),(151845,40528,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(151846,40528,'_blocks_7_steps_2_text','field_64888d99e26e8'),(151847,40528,'blocks_7_steps_3_icon','leaders.svg'),(151848,40528,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(151849,40528,'blocks_7_steps_3_title','Stand out from the crowd'),(151850,40528,'_blocks_7_steps_3_title','field_64888d94e26e7'),(151851,40528,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(151852,40528,'_blocks_7_steps_3_text','field_64888d99e26e8'),(151853,40528,'blocks_7_steps','4'),(151854,40528,'_blocks_7_steps','field_64888d44e26e5'),(151855,40529,'hide_hero','0'),(151856,40529,'_hide_hero','field_66a2380fcda39'),(151857,40529,'hero_title','Biomechanics and Sports Massage Therapy'),(151858,40529,'_hero_title','field_617571fe285e8'),(151859,40529,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(151860,40529,'_hero_text','field_6175723c285e9'),(151861,40529,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(151862,40529,'_hero_actions_0_button','field_61757281285eb'),(151863,40529,'hero_actions','1'),(151864,40529,'_hero_actions','field_61757270285ea'),(151865,40529,'hero_style','default'),(151866,40529,'_hero_style','field_62051d9dc5324'),(151867,40529,'_thumbnail_id','39240'),(151868,40529,'__thumbnail_id','field_617570855ddaf'),(151869,40529,'hero_image_pos_x','right'),(151870,40529,'_hero_image_pos_x','field_62ec3d05390bb'),(151871,40529,'hero_image_pos_y','top'),(151872,40529,'_hero_image_pos_y','field_62ec3d05390bc'),(151873,40529,'hero_image_pos',''),(151874,40529,'_hero_image_pos','field_62ec3d05390ba'),(151875,40529,'fft_hide_from_listings','0'),(151876,40529,'_fft_hide_from_listings','field_61f1320446ab2'),(151877,40529,'fft_page_format','default'),(151878,40529,'_fft_page_format','field_61ae213f1f218'),(151879,40529,'fft_hide_nav','0'),(151880,40529,'_fft_hide_nav','field_635bd5e43527c'),(151881,40529,'fft_hide_header_call_to_action','0'),(151882,40529,'_fft_hide_header_call_to_action','field_635bd6723527d'),(151883,40529,'fft_page_sitemap','0'),(151884,40529,'_fft_page_sitemap','field_61af9b34e8181'),(151885,40529,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(151886,40529,'_blocks','field_6176696113096'),(151887,40529,'blocks_0_acfe_flexible_toggle',''),(151888,40529,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(151889,40529,'blocks_0_acfe_flexible_layout_title','Template'),(151890,40529,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(151891,40529,'blocks_0_template','39087'),(151892,40529,'_blocks_0_template','field_617bdd570fe01'),(151893,40529,'blocks_8_acfe_flexible_toggle',''),(151894,40529,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(151895,40529,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(151896,40529,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(151897,40529,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(151898,40529,'_blocks_8_content','field_6193c9b5eac84'),(151899,40529,'blocks_9_acfe_flexible_toggle',''),(151900,40529,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(151901,40529,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(151902,40529,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(151903,40529,'blocks_9_testimonial_slider_content_title',''),(151904,40529,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(151905,40529,'blocks_9_testimonial_slider_content_heading','Testimonials'),(151906,40529,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(151907,40529,'blocks_9_testimonial_slider_content_text',''),(151908,40529,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(151909,40529,'blocks_9_testimonial_slider_content_actions',''),(151910,40529,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(151911,40529,'blocks_9_testimonial_slider_content',''),(151912,40529,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(151913,40529,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(151914,40529,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(151915,40529,'blocks_9_testimonial_slider_ambassador_bool','0'),(151916,40529,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(151917,40529,'blocks_10_acfe_flexible_toggle',''),(151918,40529,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(151919,40529,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(151920,40529,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(151921,40529,'blocks_10_options_theme','#ffffff'),(151922,40529,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(151923,40529,'blocks_10_options_state','0'),(151924,40529,'_blocks_10_options_state','field_6239fcb7508c5'),(151925,40529,'blocks_10_options',''),(151926,40529,'_blocks_10_options','field_6177e2991ac44'),(151927,40529,'blocks_10_content_title',''),(151928,40529,'_blocks_10_content_title','field_64d237e8bb1e2'),(151929,40529,'blocks_10_content_heading','Frequently Asked Questions '),(151930,40529,'_blocks_10_content_heading','field_64d237e8bb1e3'),(151931,40529,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329829444'),(151932,40529,'_blocks_10_content_text','field_64d237e8bb1e4'),(151933,40529,'blocks_10_content_actions',''),(151934,40529,'_blocks_10_content_actions','field_64d237e8bb1e5'),(151935,40529,'blocks_10_content_align','left'),(151936,40529,'_blocks_10_content_align','field_64d2443e6b6aa'),(151937,40529,'blocks_10_content',''),(151938,40529,'_blocks_10_content','field_64d237e8bb1e1'),(151939,40529,'blocks_10_accordion_content','faqs'),(151940,40529,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(151941,40529,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(151942,40529,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(151943,40529,'blocks_10_actions',''),(151944,40529,'_blocks_10_actions','field_61a746a817f7a'),(151945,40529,'blocks_3_acfe_flexible_toggle',''),(151946,40529,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(151947,40529,'blocks_3_acfe_flexible_layout_title','Form'),(151948,40529,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(151949,40529,'blocks_3_row_content_format','standard'),(151950,40529,'_blocks_3_row_content_format','field_6481ead962881'),(151951,40529,'blocks_3_row_content_title',''),(151952,40529,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(151953,40529,'blocks_3_row_content_heading','Enquire Today'),(151954,40529,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(151955,40529,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(151956,40529,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(151957,40529,'blocks_3_row_content_actions',''),(151958,40529,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(151959,40529,'blocks_3_row_content',''),(151960,40529,'_blocks_3_row_content','field_61a0f5f5b3db0'),(151961,40529,'blocks_3_row_form','40394'),(151962,40529,'_blocks_3_row_form','field_61a4ff2c0b08e'),(151963,40529,'blocks_3_row_form_button_label',''),(151964,40529,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(151965,40529,'blocks_4_acfe_flexible_toggle',''),(151966,40529,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(151967,40529,'blocks_4_acfe_flexible_layout_title','Tabs'),(151968,40529,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(151969,40529,'blocks_4_options_theme','#ffffff'),(151970,40529,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(151971,40529,'blocks_4_options',''),(151972,40529,'_blocks_4_options','field_6177cfcd8140f'),(151973,40529,'blocks_4_tabs_0_tab_label','What will I learn ?'),(151974,40529,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(151975,40529,'blocks_4_tabs_0_tab_content_title',''),(151976,40529,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(151977,40529,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(151978,40529,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(151979,40529,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(151980,40529,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(151981,40529,'blocks_4_tabs_0_tab_content_actions',''),(151982,40529,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(151983,40529,'blocks_4_tabs_0_tab_content',''),(151984,40529,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(151985,40529,'blocks_4_tabs_0_tab_image','39076'),(151986,40529,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(151987,40529,'blocks_4_tabs_1_tab_label','What do I need ?'),(151988,40529,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(151989,40529,'blocks_4_tabs_1_tab_content_title',''),(151990,40529,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(151991,40529,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(151992,40529,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(151993,40529,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(151994,40529,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(151995,40529,'blocks_4_tabs_1_tab_content_actions',''),(151996,40529,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(151997,40529,'blocks_4_tabs_1_tab_content',''),(151998,40529,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(151999,40529,'blocks_4_tabs_1_tab_image','39223'),(152000,40529,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(152001,40529,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(152002,40529,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(152003,40529,'blocks_4_tabs_2_tab_content_title',''),(152004,40529,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(152005,40529,'blocks_4_tabs_2_tab_content_heading','Locations'),(152006,40529,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(152007,40529,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(152008,40529,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(152009,40529,'blocks_4_tabs_2_tab_content_actions',''),(152010,40529,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(152011,40529,'blocks_4_tabs_2_tab_content',''),(152012,40529,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(152013,40529,'blocks_4_tabs_2_tab_image','39224'),(152014,40529,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(152015,40529,'blocks_4_tabs','3'),(152016,40529,'_blocks_4_tabs','field_6177cff281419'),(152017,40529,'blocks_5_acfe_flexible_toggle',''),(152018,40529,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(152019,40529,'blocks_5_acfe_flexible_layout_title','Text Block'),(152020,40529,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(152021,40529,'blocks_5_options_theme','#f5f5f5'),(152022,40529,'_blocks_5_options_theme','field_6176830e2ad17'),(152023,40529,'blocks_5_options',''),(152024,40529,'_blocks_5_options','field_6176830e2ad16'),(152025,40529,'blocks_5_text_block_heading','Fees & Funding Options'),(152026,40529,'_blocks_5_text_block_heading','field_617669d413097'),(152027,40529,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(152028,40529,'_blocks_5_text_block_content','field_617669ec13098'),(152029,40529,'blocks_1_acfe_flexible_toggle',''),(152030,40529,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(152031,40529,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(152032,40529,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(152033,40529,'blocks_1_options_theme','#ffffff'),(152034,40529,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(152035,40529,'blocks_1_options_reverse','0'),(152036,40529,'_blocks_1_options_reverse','field_61768049bb8ac'),(152037,40529,'blocks_1_options',''),(152038,40529,'_blocks_1_options','field_617682517c334'),(152039,40529,'blocks_1_split_5050_image','39241'),(152040,40529,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(152041,40529,'blocks_1_split_5050_video',''),(152042,40529,'_blocks_1_split_5050_video','field_6239f3160848a'),(152043,40529,'blocks_1_split_5050_content_title',''),(152044,40529,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(152045,40529,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(152046,40529,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(152047,40529,'blocks_1_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(152048,40529,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(152049,40529,'blocks_1_split_5050_content_actions',''),(152050,40529,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(152051,40529,'blocks_1_split_5050_content',''),(152052,40529,'_blocks_1_split_5050_content','field_61767afceb8ba'),(152053,40529,'blocks_2_acfe_flexible_toggle',''),(152054,40529,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(152055,40529,'blocks_2_acfe_flexible_layout_title','Video'),(152056,40529,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(152057,40529,'blocks_2_size','large'),(152058,40529,'_blocks_2_size','field_6487038f297c1'),(152059,40529,'blocks_2_row_content_title',''),(152060,40529,'_blocks_2_row_content_title','field_64870132a865d'),(152061,40529,'blocks_2_row_content_heading',''),(152062,40529,'_blocks_2_row_content_heading','field_64870142a865e'),(152063,40529,'blocks_2_row_content_text',''),(152064,40529,'_blocks_2_row_content_text','field_64870148a865f'),(152065,40529,'blocks_2_row_content',''),(152066,40529,'_blocks_2_row_content','field_6487008ba865c'),(152067,40529,'blocks_2_video_src',''),(152068,40529,'_blocks_2_video_src','field_6193c4a98ec07'),(152069,40529,'blocks_2_video_thumbnail',''),(152070,40529,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(152071,40529,'blocks_6_acfe_flexible_toggle',''),(152072,40529,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(152073,40529,'blocks_6_acfe_flexible_layout_title','Icons'),(152074,40529,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(152075,40529,'blocks_6_options_theme','#b61234'),(152076,40529,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(152077,40529,'blocks_6_options_format','row'),(152078,40529,'_blocks_6_options_format','field_64bfde9a90690'),(152079,40529,'blocks_6_options',''),(152080,40529,'_blocks_6_options','field_64bfdd9b90684'),(152081,40529,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(152082,40529,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(152083,40529,'blocks_6_icon_row_items_0_label','Pay in Full'),(152084,40529,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(152085,40529,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(152086,40529,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(152087,40529,'blocks_6_icon_row_items_1_icon','finance.svg'),(152088,40529,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(152089,40529,'blocks_6_icon_row_items_1_label','0% Finance'),(152090,40529,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(152091,40529,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(152092,40529,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(152093,40529,'blocks_6_icon_row_items_2_icon','deposit.svg'),(152094,40529,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(152095,40529,'blocks_6_icon_row_items_2_label','Deposit & balance'),(152096,40529,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(152097,40529,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(152098,40529,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(152099,40529,'blocks_6_icon_row_items','3'),(152100,40529,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(152101,40529,'blocks_7_acfe_flexible_toggle',''),(152102,40529,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(152103,40529,'blocks_7_acfe_flexible_layout_title','Steps'),(152104,40529,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(152105,40529,'blocks_7_row_content_title',''),(152106,40529,'_blocks_7_row_content_title','field_64888cd1e26e0'),(152107,40529,'blocks_7_row_content_heading','Benefits of Training with Us'),(152108,40529,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(152109,40529,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(152110,40529,'_blocks_7_row_content_text','field_64888ce2e26e2'),(152111,40529,'blocks_7_row_content_actions',''),(152112,40529,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(152113,40529,'blocks_7_row_content',''),(152114,40529,'_blocks_7_row_content','field_64888cb0e26df'),(152115,40529,'blocks_7_steps_0_icon','progression.svg'),(152116,40529,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(152117,40529,'blocks_7_steps_0_title','Earning potential'),(152118,40529,'_blocks_7_steps_0_title','field_64888d94e26e7'),(152119,40529,'blocks_7_steps_0_text','Find new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(152120,40529,'_blocks_7_steps_0_text','field_64888d99e26e8'),(152121,40529,'blocks_7_steps_1_icon','support.svg'),(152122,40529,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(152123,40529,'blocks_7_steps_1_title','Lifetime learning promise'),(152124,40529,'_blocks_7_steps_1_title','field_64888d94e26e7'),(152125,40529,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(152126,40529,'_blocks_7_steps_1_text','field_64888d99e26e8'),(152127,40529,'blocks_7_steps_2_icon','qualification.svg'),(152128,40529,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(152129,40529,'blocks_7_steps_2_title','Evidence based hands on learning'),(152130,40529,'_blocks_7_steps_2_title','field_64888d94e26e7'),(152131,40529,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(152132,40529,'_blocks_7_steps_2_text','field_64888d99e26e8'),(152133,40529,'blocks_7_steps_3_icon','leaders.svg'),(152134,40529,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(152135,40529,'blocks_7_steps_3_title','Stand out from the crowd'),(152136,40529,'_blocks_7_steps_3_title','field_64888d94e26e7'),(152137,40529,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(152138,40529,'_blocks_7_steps_3_text','field_64888d99e26e8'),(152139,40529,'blocks_7_steps','4'),(152140,40529,'_blocks_7_steps','field_64888d44e26e5'),(152141,40530,'hide_hero','0'),(152142,40530,'_hide_hero','field_66a2380fcda39'),(152143,40530,'hero_title','Biomechanics and Sports Massage Therapy'),(152144,40530,'_hero_title','field_617571fe285e8'),(152145,40530,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(152146,40530,'_hero_text','field_6175723c285e9'),(152147,40530,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(152148,40530,'_hero_actions_0_button','field_61757281285eb'),(152149,40530,'hero_actions','1'),(152150,40530,'_hero_actions','field_61757270285ea'),(152151,40530,'hero_style','default'),(152152,40530,'_hero_style','field_62051d9dc5324'),(152153,40530,'_thumbnail_id','39240'),(152154,40530,'__thumbnail_id','field_617570855ddaf'),(152155,40530,'hero_image_pos_x','right'),(152156,40530,'_hero_image_pos_x','field_62ec3d05390bb'),(152157,40530,'hero_image_pos_y','top'),(152158,40530,'_hero_image_pos_y','field_62ec3d05390bc'),(152159,40530,'hero_image_pos',''),(152160,40530,'_hero_image_pos','field_62ec3d05390ba'),(152161,40530,'fft_hide_from_listings','0'),(152162,40530,'_fft_hide_from_listings','field_61f1320446ab2'),(152163,40530,'fft_page_format','default'),(152164,40530,'_fft_page_format','field_61ae213f1f218'),(152165,40530,'fft_hide_nav','0'),(152166,40530,'_fft_hide_nav','field_635bd5e43527c'),(152167,40530,'fft_hide_header_call_to_action','0'),(152168,40530,'_fft_hide_header_call_to_action','field_635bd6723527d'),(152169,40530,'fft_page_sitemap','0'),(152170,40530,'_fft_page_sitemap','field_61af9b34e8181'),(152171,40530,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(152172,40530,'_blocks','field_6176696113096'),(152173,40530,'blocks_0_acfe_flexible_toggle',''),(152174,40530,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(152175,40530,'blocks_0_acfe_flexible_layout_title','Template'),(152176,40530,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(152177,40530,'blocks_0_template','39087'),(152178,40530,'_blocks_0_template','field_617bdd570fe01'),(152179,40530,'blocks_8_acfe_flexible_toggle',''),(152180,40530,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(152181,40530,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(152182,40530,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(152183,40530,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(152184,40530,'_blocks_8_content','field_6193c9b5eac84'),(152185,40530,'blocks_9_acfe_flexible_toggle',''),(152186,40530,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(152187,40530,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(152188,40530,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(152189,40530,'blocks_9_testimonial_slider_content_title',''),(152190,40530,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(152191,40530,'blocks_9_testimonial_slider_content_heading','Testimonials'),(152192,40530,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(152193,40530,'blocks_9_testimonial_slider_content_text',''),(152194,40530,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(152195,40530,'blocks_9_testimonial_slider_content_actions',''),(152196,40530,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(152197,40530,'blocks_9_testimonial_slider_content',''),(152198,40530,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(152199,40530,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(152200,40530,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(152201,40530,'blocks_9_testimonial_slider_ambassador_bool','0'),(152202,40530,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(152203,40530,'blocks_10_acfe_flexible_toggle',''),(152204,40530,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(152205,40530,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(152206,40530,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(152207,40530,'blocks_10_options_theme','#ffffff'),(152208,40530,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(152209,40530,'blocks_10_options_state','0'),(152210,40530,'_blocks_10_options_state','field_6239fcb7508c5'),(152211,40530,'blocks_10_options',''),(152212,40530,'_blocks_10_options','field_6177e2991ac44'),(152213,40530,'blocks_10_content_title',''),(152214,40530,'_blocks_10_content_title','field_64d237e8bb1e2'),(152215,40530,'blocks_10_content_heading','Frequently Asked Questions '),(152216,40530,'_blocks_10_content_heading','field_64d237e8bb1e3'),(152217,40530,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329829444'),(152218,40530,'_blocks_10_content_text','field_64d237e8bb1e4'),(152219,40530,'blocks_10_content_actions',''),(152220,40530,'_blocks_10_content_actions','field_64d237e8bb1e5'),(152221,40530,'blocks_10_content_align','left'),(152222,40530,'_blocks_10_content_align','field_64d2443e6b6aa'),(152223,40530,'blocks_10_content',''),(152224,40530,'_blocks_10_content','field_64d237e8bb1e1'),(152225,40530,'blocks_10_accordion_content','faqs'),(152226,40530,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(152227,40530,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(152228,40530,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(152229,40530,'blocks_10_actions',''),(152230,40530,'_blocks_10_actions','field_61a746a817f7a'),(152231,40530,'blocks_3_acfe_flexible_toggle',''),(152232,40530,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(152233,40530,'blocks_3_acfe_flexible_layout_title','Form'),(152234,40530,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(152235,40530,'blocks_3_row_content_format','standard'),(152236,40530,'_blocks_3_row_content_format','field_6481ead962881'),(152237,40530,'blocks_3_row_content_title',''),(152238,40530,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(152239,40530,'blocks_3_row_content_heading','Enquire Today'),(152240,40530,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(152241,40530,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(152242,40530,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(152243,40530,'blocks_3_row_content_actions',''),(152244,40530,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(152245,40530,'blocks_3_row_content',''),(152246,40530,'_blocks_3_row_content','field_61a0f5f5b3db0'),(152247,40530,'blocks_3_row_form','40394'),(152248,40530,'_blocks_3_row_form','field_61a4ff2c0b08e'),(152249,40530,'blocks_3_row_form_button_label',''),(152250,40530,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(152251,40530,'blocks_4_acfe_flexible_toggle',''),(152252,40530,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(152253,40530,'blocks_4_acfe_flexible_layout_title','Tabs'),(152254,40530,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(152255,40530,'blocks_4_options_theme','#ffffff'),(152256,40530,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(152257,40530,'blocks_4_options',''),(152258,40530,'_blocks_4_options','field_6177cfcd8140f'),(152259,40530,'blocks_4_tabs_0_tab_label','What will I learn ?'),(152260,40530,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(152261,40530,'blocks_4_tabs_0_tab_content_title',''),(152262,40530,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(152263,40530,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(152264,40530,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(152265,40530,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(152266,40530,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(152267,40530,'blocks_4_tabs_0_tab_content_actions',''),(152268,40530,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(152269,40530,'blocks_4_tabs_0_tab_content',''),(152270,40530,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(152271,40530,'blocks_4_tabs_0_tab_image','39076'),(152272,40530,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(152273,40530,'blocks_4_tabs_1_tab_label','What do I need ?'),(152274,40530,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(152275,40530,'blocks_4_tabs_1_tab_content_title',''),(152276,40530,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(152277,40530,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(152278,40530,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(152279,40530,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(152280,40530,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(152281,40530,'blocks_4_tabs_1_tab_content_actions',''),(152282,40530,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(152283,40530,'blocks_4_tabs_1_tab_content',''),(152284,40530,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(152285,40530,'blocks_4_tabs_1_tab_image','39223'),(152286,40530,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(152287,40530,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(152288,40530,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(152289,40530,'blocks_4_tabs_2_tab_content_title',''),(152290,40530,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(152291,40530,'blocks_4_tabs_2_tab_content_heading','Locations'),(152292,40530,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(152293,40530,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(152294,40530,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(152295,40530,'blocks_4_tabs_2_tab_content_actions',''),(152296,40530,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(152297,40530,'blocks_4_tabs_2_tab_content',''),(152298,40530,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(152299,40530,'blocks_4_tabs_2_tab_image','39224'),(152300,40530,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(152301,40530,'blocks_4_tabs','3'),(152302,40530,'_blocks_4_tabs','field_6177cff281419'),(152303,40530,'blocks_5_acfe_flexible_toggle',''),(152304,40530,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(152305,40530,'blocks_5_acfe_flexible_layout_title','Text Block'),(152306,40530,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(152307,40530,'blocks_5_options_theme','#b61234'),(152308,40530,'_blocks_5_options_theme','field_6176830e2ad17'),(152309,40530,'blocks_5_options',''),(152310,40530,'_blocks_5_options','field_6176830e2ad16'),(152311,40530,'blocks_5_text_block_heading','Fees & Funding Options'),(152312,40530,'_blocks_5_text_block_heading','field_617669d413097'),(152313,40530,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(152314,40530,'_blocks_5_text_block_content','field_617669ec13098'),(152315,40530,'blocks_1_acfe_flexible_toggle',''),(152316,40530,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(152317,40530,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(152318,40530,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(152319,40530,'blocks_1_options_theme','#ffffff'),(152320,40530,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(152321,40530,'blocks_1_options_reverse','0'),(152322,40530,'_blocks_1_options_reverse','field_61768049bb8ac'),(152323,40530,'blocks_1_options',''),(152324,40530,'_blocks_1_options','field_617682517c334'),(152325,40530,'blocks_1_split_5050_image','39241'),(152326,40530,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(152327,40530,'blocks_1_split_5050_video',''),(152328,40530,'_blocks_1_split_5050_video','field_6239f3160848a'),(152329,40530,'blocks_1_split_5050_content_title',''),(152330,40530,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(152331,40530,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(152332,40530,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(152333,40530,'blocks_1_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(152334,40530,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(152335,40530,'blocks_1_split_5050_content_actions',''),(152336,40530,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(152337,40530,'blocks_1_split_5050_content',''),(152338,40530,'_blocks_1_split_5050_content','field_61767afceb8ba'),(152339,40530,'blocks_2_acfe_flexible_toggle',''),(152340,40530,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(152341,40530,'blocks_2_acfe_flexible_layout_title','Video'),(152342,40530,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(152343,40530,'blocks_2_size','large'),(152344,40530,'_blocks_2_size','field_6487038f297c1'),(152345,40530,'blocks_2_row_content_title',''),(152346,40530,'_blocks_2_row_content_title','field_64870132a865d'),(152347,40530,'blocks_2_row_content_heading',''),(152348,40530,'_blocks_2_row_content_heading','field_64870142a865e'),(152349,40530,'blocks_2_row_content_text',''),(152350,40530,'_blocks_2_row_content_text','field_64870148a865f'),(152351,40530,'blocks_2_row_content',''),(152352,40530,'_blocks_2_row_content','field_6487008ba865c'),(152353,40530,'blocks_2_video_src',''),(152354,40530,'_blocks_2_video_src','field_6193c4a98ec07'),(152355,40530,'blocks_2_video_thumbnail',''),(152356,40530,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(152357,40530,'blocks_6_acfe_flexible_toggle',''),(152358,40530,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(152359,40530,'blocks_6_acfe_flexible_layout_title','Icons'),(152360,40530,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(152361,40530,'blocks_6_options_theme','#b61234'),(152362,40530,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(152363,40530,'blocks_6_options_format','row'),(152364,40530,'_blocks_6_options_format','field_64bfde9a90690'),(152365,40530,'blocks_6_options',''),(152366,40530,'_blocks_6_options','field_64bfdd9b90684'),(152367,40530,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(152368,40530,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(152369,40530,'blocks_6_icon_row_items_0_label','Pay in Full'),(152370,40530,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(152371,40530,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(152372,40530,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(152373,40530,'blocks_6_icon_row_items_1_icon','finance.svg'),(152374,40530,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(152375,40530,'blocks_6_icon_row_items_1_label','0% Finance'),(152376,40530,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(152377,40530,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(152378,40530,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(152379,40530,'blocks_6_icon_row_items_2_icon','deposit.svg'),(152380,40530,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(152381,40530,'blocks_6_icon_row_items_2_label','Deposit & balance'),(152382,40530,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(152383,40530,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(152384,40530,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(152385,40530,'blocks_6_icon_row_items','3'),(152386,40530,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(152387,40530,'blocks_7_acfe_flexible_toggle',''),(152388,40530,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(152389,40530,'blocks_7_acfe_flexible_layout_title','Steps'),(152390,40530,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(152391,40530,'blocks_7_row_content_title',''),(152392,40530,'_blocks_7_row_content_title','field_64888cd1e26e0'),(152393,40530,'blocks_7_row_content_heading','Benefits of Training with Us'),(152394,40530,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(152395,40530,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(152396,40530,'_blocks_7_row_content_text','field_64888ce2e26e2'),(152397,40530,'blocks_7_row_content_actions',''),(152398,40530,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(152399,40530,'blocks_7_row_content',''),(152400,40530,'_blocks_7_row_content','field_64888cb0e26df'),(152401,40530,'blocks_7_steps_0_icon','progression.svg'),(152402,40530,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(152403,40530,'blocks_7_steps_0_title','Earning potential'),(152404,40530,'_blocks_7_steps_0_title','field_64888d94e26e7'),(152405,40530,'blocks_7_steps_0_text','Find new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(152406,40530,'_blocks_7_steps_0_text','field_64888d99e26e8'),(152407,40530,'blocks_7_steps_1_icon','support.svg'),(152408,40530,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(152409,40530,'blocks_7_steps_1_title','Lifetime learning promise'),(152410,40530,'_blocks_7_steps_1_title','field_64888d94e26e7'),(152411,40530,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(152412,40530,'_blocks_7_steps_1_text','field_64888d99e26e8'),(152413,40530,'blocks_7_steps_2_icon','qualification.svg'),(152414,40530,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(152415,40530,'blocks_7_steps_2_title','Evidence based hands on learning'),(152416,40530,'_blocks_7_steps_2_title','field_64888d94e26e7'),(152417,40530,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(152418,40530,'_blocks_7_steps_2_text','field_64888d99e26e8'),(152419,40530,'blocks_7_steps_3_icon','leaders.svg'),(152420,40530,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(152421,40530,'blocks_7_steps_3_title','Stand out from the crowd'),(152422,40530,'_blocks_7_steps_3_title','field_64888d94e26e7'),(152423,40530,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(152424,40530,'_blocks_7_steps_3_text','field_64888d99e26e8'),(152425,40530,'blocks_7_steps','4'),(152426,40530,'_blocks_7_steps','field_64888d44e26e5'),(152427,40531,'hide_hero','0'),(152428,40531,'_hide_hero','field_66a2380fcda39'),(152429,40531,'hero_title','Biomechanics and Sports Massage Therapy'),(152430,40531,'_hero_title','field_617571fe285e8'),(152431,40531,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(152432,40531,'_hero_text','field_6175723c285e9'),(152433,40531,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(152434,40531,'_hero_actions_0_button','field_61757281285eb'),(152435,40531,'hero_actions','1'),(152436,40531,'_hero_actions','field_61757270285ea'),(152437,40531,'hero_style','default'),(152438,40531,'_hero_style','field_62051d9dc5324'),(152439,40531,'_thumbnail_id','39240'),(152440,40531,'__thumbnail_id','field_617570855ddaf'),(152441,40531,'hero_image_pos_x','right'),(152442,40531,'_hero_image_pos_x','field_62ec3d05390bb'),(152443,40531,'hero_image_pos_y','top'),(152444,40531,'_hero_image_pos_y','field_62ec3d05390bc'),(152445,40531,'hero_image_pos',''),(152446,40531,'_hero_image_pos','field_62ec3d05390ba'),(152447,40531,'fft_hide_from_listings','0'),(152448,40531,'_fft_hide_from_listings','field_61f1320446ab2'),(152449,40531,'fft_page_format','default'),(152450,40531,'_fft_page_format','field_61ae213f1f218'),(152451,40531,'fft_hide_nav','0'),(152452,40531,'_fft_hide_nav','field_635bd5e43527c'),(152453,40531,'fft_hide_header_call_to_action','0'),(152454,40531,'_fft_hide_header_call_to_action','field_635bd6723527d'),(152455,40531,'fft_page_sitemap','0'),(152456,40531,'_fft_page_sitemap','field_61af9b34e8181'),(152457,40531,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(152458,40531,'_blocks','field_6176696113096'),(152459,40531,'blocks_0_acfe_flexible_toggle',''),(152460,40531,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(152461,40531,'blocks_0_acfe_flexible_layout_title','Template'),(152462,40531,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(152463,40531,'blocks_0_template','39087'),(152464,40531,'_blocks_0_template','field_617bdd570fe01'),(152465,40531,'blocks_8_acfe_flexible_toggle','1'),(152466,40531,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(152467,40531,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(152468,40531,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(152469,40531,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(152470,40531,'_blocks_8_content','field_6193c9b5eac84'),(152471,40531,'blocks_9_acfe_flexible_toggle',''),(152472,40531,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(152473,40531,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(152474,40531,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(152475,40531,'blocks_9_testimonial_slider_content_title',''),(152476,40531,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(152477,40531,'blocks_9_testimonial_slider_content_heading','Testimonials'),(152478,40531,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(152479,40531,'blocks_9_testimonial_slider_content_text',''),(152480,40531,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(152481,40531,'blocks_9_testimonial_slider_content_actions',''),(152482,40531,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(152483,40531,'blocks_9_testimonial_slider_content',''),(152484,40531,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(152485,40531,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(152486,40531,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(152487,40531,'blocks_9_testimonial_slider_ambassador_bool','0'),(152488,40531,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(152489,40531,'blocks_10_acfe_flexible_toggle',''),(152490,40531,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(152491,40531,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(152492,40531,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(152493,40531,'blocks_10_options_theme','#ffffff'),(152494,40531,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(152495,40531,'blocks_10_options_state','0'),(152496,40531,'_blocks_10_options_state','field_6239fcb7508c5'),(152497,40531,'blocks_10_options',''),(152498,40531,'_blocks_10_options','field_6177e2991ac44'),(152499,40531,'blocks_10_content_title',''),(152500,40531,'_blocks_10_content_title','field_64d237e8bb1e2'),(152501,40531,'blocks_10_content_heading','Frequently Asked Questions '),(152502,40531,'_blocks_10_content_heading','field_64d237e8bb1e3'),(152503,40531,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329829444'),(152504,40531,'_blocks_10_content_text','field_64d237e8bb1e4'),(152505,40531,'blocks_10_content_actions',''),(152506,40531,'_blocks_10_content_actions','field_64d237e8bb1e5'),(152507,40531,'blocks_10_content_align','left'),(152508,40531,'_blocks_10_content_align','field_64d2443e6b6aa'),(152509,40531,'blocks_10_content',''),(152510,40531,'_blocks_10_content','field_64d237e8bb1e1'),(152511,40531,'blocks_10_accordion_content','faqs'),(152512,40531,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(152513,40531,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(152514,40531,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(152515,40531,'blocks_10_actions',''),(152516,40531,'_blocks_10_actions','field_61a746a817f7a'),(152517,40531,'blocks_3_acfe_flexible_toggle',''),(152518,40531,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(152519,40531,'blocks_3_acfe_flexible_layout_title','Form'),(152520,40531,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(152521,40531,'blocks_3_row_content_format','standard'),(152522,40531,'_blocks_3_row_content_format','field_6481ead962881'),(152523,40531,'blocks_3_row_content_title',''),(152524,40531,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(152525,40531,'blocks_3_row_content_heading','Enquire Today'),(152526,40531,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(152527,40531,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(152528,40531,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(152529,40531,'blocks_3_row_content_actions',''),(152530,40531,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(152531,40531,'blocks_3_row_content',''),(152532,40531,'_blocks_3_row_content','field_61a0f5f5b3db0'),(152533,40531,'blocks_3_row_form','40394'),(152534,40531,'_blocks_3_row_form','field_61a4ff2c0b08e'),(152535,40531,'blocks_3_row_form_button_label',''),(152536,40531,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(152537,40531,'blocks_4_acfe_flexible_toggle',''),(152538,40531,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(152539,40531,'blocks_4_acfe_flexible_layout_title','Tabs'),(152540,40531,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(152541,40531,'blocks_4_options_theme','#ffffff'),(152542,40531,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(152543,40531,'blocks_4_options',''),(152544,40531,'_blocks_4_options','field_6177cfcd8140f'),(152545,40531,'blocks_4_tabs_0_tab_label','What will I learn ?'),(152546,40531,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(152547,40531,'blocks_4_tabs_0_tab_content_title',''),(152548,40531,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(152549,40531,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(152550,40531,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(152551,40531,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(152552,40531,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(152553,40531,'blocks_4_tabs_0_tab_content_actions',''),(152554,40531,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(152555,40531,'blocks_4_tabs_0_tab_content',''),(152556,40531,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(152557,40531,'blocks_4_tabs_0_tab_image','39076'),(152558,40531,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(152559,40531,'blocks_4_tabs_1_tab_label','What do I need ?'),(152560,40531,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(152561,40531,'blocks_4_tabs_1_tab_content_title',''),(152562,40531,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(152563,40531,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(152564,40531,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(152565,40531,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(152566,40531,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(152567,40531,'blocks_4_tabs_1_tab_content_actions',''),(152568,40531,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(152569,40531,'blocks_4_tabs_1_tab_content',''),(152570,40531,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(152571,40531,'blocks_4_tabs_1_tab_image','39223'),(152572,40531,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(152573,40531,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(152574,40531,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(152575,40531,'blocks_4_tabs_2_tab_content_title',''),(152576,40531,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(152577,40531,'blocks_4_tabs_2_tab_content_heading','Locations'),(152578,40531,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(152579,40531,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(152580,40531,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(152581,40531,'blocks_4_tabs_2_tab_content_actions',''),(152582,40531,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(152583,40531,'blocks_4_tabs_2_tab_content',''),(152584,40531,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(152585,40531,'blocks_4_tabs_2_tab_image','39224'),(152586,40531,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(152587,40531,'blocks_4_tabs','3'),(152588,40531,'_blocks_4_tabs','field_6177cff281419'),(152589,40531,'blocks_5_acfe_flexible_toggle',''),(152590,40531,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(152591,40531,'blocks_5_acfe_flexible_layout_title','Text Block'),(152592,40531,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(152593,40531,'blocks_5_options_theme','#b61234'),(152594,40531,'_blocks_5_options_theme','field_6176830e2ad17'),(152595,40531,'blocks_5_options',''),(152596,40531,'_blocks_5_options','field_6176830e2ad16'),(152597,40531,'blocks_5_text_block_heading','Fees & Funding Options'),(152598,40531,'_blocks_5_text_block_heading','field_617669d413097'),(152599,40531,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(152600,40531,'_blocks_5_text_block_content','field_617669ec13098'),(152601,40531,'blocks_1_acfe_flexible_toggle',''),(152602,40531,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(152603,40531,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(152604,40531,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(152605,40531,'blocks_1_options_theme','#ffffff'),(152606,40531,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(152607,40531,'blocks_1_options_reverse','0'),(152608,40531,'_blocks_1_options_reverse','field_61768049bb8ac'),(152609,40531,'blocks_1_options',''),(152610,40531,'_blocks_1_options','field_617682517c334'),(152611,40531,'blocks_1_split_5050_image','39241'),(152612,40531,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(152613,40531,'blocks_1_split_5050_video',''),(152614,40531,'_blocks_1_split_5050_video','field_6239f3160848a'),(152615,40531,'blocks_1_split_5050_content_title',''),(152616,40531,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(152617,40531,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(152618,40531,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(152619,40531,'blocks_1_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(152620,40531,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(152621,40531,'blocks_1_split_5050_content_actions',''),(152622,40531,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(152623,40531,'blocks_1_split_5050_content',''),(152624,40531,'_blocks_1_split_5050_content','field_61767afceb8ba'),(152625,40531,'blocks_2_acfe_flexible_toggle',''),(152626,40531,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(152627,40531,'blocks_2_acfe_flexible_layout_title','Video'),(152628,40531,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(152629,40531,'blocks_2_size','large'),(152630,40531,'_blocks_2_size','field_6487038f297c1'),(152631,40531,'blocks_2_row_content_title',''),(152632,40531,'_blocks_2_row_content_title','field_64870132a865d'),(152633,40531,'blocks_2_row_content_heading',''),(152634,40531,'_blocks_2_row_content_heading','field_64870142a865e'),(152635,40531,'blocks_2_row_content_text',''),(152636,40531,'_blocks_2_row_content_text','field_64870148a865f'),(152637,40531,'blocks_2_row_content',''),(152638,40531,'_blocks_2_row_content','field_6487008ba865c'),(152639,40531,'blocks_2_video_src',''),(152640,40531,'_blocks_2_video_src','field_6193c4a98ec07'),(152641,40531,'blocks_2_video_thumbnail',''),(152642,40531,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(152643,40531,'blocks_6_acfe_flexible_toggle',''),(152644,40531,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(152645,40531,'blocks_6_acfe_flexible_layout_title','Icons'),(152646,40531,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(152647,40531,'blocks_6_options_theme','#b61234'),(152648,40531,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(152649,40531,'blocks_6_options_format','row'),(152650,40531,'_blocks_6_options_format','field_64bfde9a90690'),(152651,40531,'blocks_6_options',''),(152652,40531,'_blocks_6_options','field_64bfdd9b90684'),(152653,40531,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(152654,40531,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(152655,40531,'blocks_6_icon_row_items_0_label','Pay in Full'),(152656,40531,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(152657,40531,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(152658,40531,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(152659,40531,'blocks_6_icon_row_items_1_icon','finance.svg'),(152660,40531,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(152661,40531,'blocks_6_icon_row_items_1_label','0% Finance'),(152662,40531,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(152663,40531,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(152664,40531,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(152665,40531,'blocks_6_icon_row_items_2_icon','deposit.svg'),(152666,40531,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(152667,40531,'blocks_6_icon_row_items_2_label','Deposit & balance'),(152668,40531,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(152669,40531,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(152670,40531,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(152671,40531,'blocks_6_icon_row_items','3'),(152672,40531,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(152673,40531,'blocks_7_acfe_flexible_toggle',''),(152674,40531,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(152675,40531,'blocks_7_acfe_flexible_layout_title','Steps'),(152676,40531,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(152677,40531,'blocks_7_row_content_title',''),(152678,40531,'_blocks_7_row_content_title','field_64888cd1e26e0'),(152679,40531,'blocks_7_row_content_heading','Benefits of Training with Us'),(152680,40531,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(152681,40531,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(152682,40531,'_blocks_7_row_content_text','field_64888ce2e26e2'),(152683,40531,'blocks_7_row_content_actions',''),(152684,40531,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(152685,40531,'blocks_7_row_content',''),(152686,40531,'_blocks_7_row_content','field_64888cb0e26df'),(152687,40531,'blocks_7_steps_0_icon','progression.svg'),(152688,40531,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(152689,40531,'blocks_7_steps_0_title','Earning potential'),(152690,40531,'_blocks_7_steps_0_title','field_64888d94e26e7'),(152691,40531,'blocks_7_steps_0_text','Attract new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(152692,40531,'_blocks_7_steps_0_text','field_64888d99e26e8'),(152693,40531,'blocks_7_steps_1_icon','support.svg'),(152694,40531,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(152695,40531,'blocks_7_steps_1_title','Lifetime learning promise'),(152696,40531,'_blocks_7_steps_1_title','field_64888d94e26e7'),(152697,40531,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(152698,40531,'_blocks_7_steps_1_text','field_64888d99e26e8'),(152699,40531,'blocks_7_steps_2_icon','qualification.svg'),(152700,40531,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(152701,40531,'blocks_7_steps_2_title','Evidence based hands on learning'),(152702,40531,'_blocks_7_steps_2_title','field_64888d94e26e7'),(152703,40531,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn how to screen and test to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(152704,40531,'_blocks_7_steps_2_text','field_64888d99e26e8'),(152705,40531,'blocks_7_steps_3_icon','leaders.svg'),(152706,40531,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(152707,40531,'blocks_7_steps_3_title','Stand out from the crowd'),(152708,40531,'_blocks_7_steps_3_title','field_64888d94e26e7'),(152709,40531,'blocks_7_steps_3_text','As a Sports Massage Therapist through the Biomechanics Coaching Diploma we will give you the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course can also enhance your relationship with other healthcare providers because you will have confidence in a common language'),(152710,40531,'_blocks_7_steps_3_text','field_64888d99e26e8'),(152711,40531,'blocks_7_steps','4'),(152712,40531,'_blocks_7_steps','field_64888d44e26e5'),(152713,39254,'blocks_1_acfe_flexible_toggle',''),(152714,39254,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(152715,39254,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(152716,39254,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(152717,39254,'blocks_1_options_theme','#ffffff'),(152718,39254,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(152719,39254,'blocks_1_options_reverse','0'),(152720,39254,'_blocks_1_options_reverse','field_61768049bb8ac'),(152721,39254,'blocks_1_options',''),(152722,39254,'_blocks_1_options','field_617682517c334'),(152723,39254,'blocks_1_split_5050_image','39257'),(152724,39254,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(152725,39254,'blocks_1_split_5050_video',''),(152726,39254,'_blocks_1_split_5050_video','field_6239f3160848a'),(152727,39254,'blocks_1_split_5050_content_title',''),(152728,39254,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(152729,39254,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(152730,39254,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(152731,39254,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(152732,39254,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(152733,39254,'blocks_1_split_5050_content_actions',''),(152734,39254,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(152735,39254,'blocks_1_split_5050_content',''),(152736,39254,'_blocks_1_split_5050_content','field_61767afceb8ba'),(152757,39254,'blocks_4_acfe_flexible_toggle',''),(152758,39254,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(152759,39254,'blocks_4_acfe_flexible_layout_title','Tabs'),(152760,39254,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(152761,39254,'blocks_4_options_theme','#ffffff'),(152762,39254,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(152763,39254,'blocks_4_options',''),(152764,39254,'_blocks_4_options','field_6177cfcd8140f'),(152765,39254,'blocks_4_tabs_0_tab_label','What will I learn ?'),(152766,39254,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(152767,39254,'blocks_4_tabs_0_tab_content_title',''),(152768,39254,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(152769,39254,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(152770,39254,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(152771,39254,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(152772,39254,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(152773,39254,'blocks_4_tabs_0_tab_content_actions',''),(152774,39254,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(152775,39254,'blocks_4_tabs_0_tab_content',''),(152776,39254,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(152777,39254,'blocks_4_tabs_0_tab_image','39076'),(152778,39254,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(152779,39254,'blocks_4_tabs_1_tab_label','What do I need ?'),(152780,39254,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(152781,39254,'blocks_4_tabs_1_tab_content_title',''),(152782,39254,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(152783,39254,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(152784,39254,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(152785,39254,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(152786,39254,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(152787,39254,'blocks_4_tabs_1_tab_content_actions',''),(152788,39254,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(152789,39254,'blocks_4_tabs_1_tab_content',''),(152790,39254,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(152791,39254,'blocks_4_tabs_1_tab_image','39223'),(152792,39254,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(152793,39254,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(152794,39254,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(152795,39254,'blocks_4_tabs_2_tab_content_title',''),(152796,39254,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(152797,39254,'blocks_4_tabs_2_tab_content_heading','Locations'),(152798,39254,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(152799,39254,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(152800,39254,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(152801,39254,'blocks_4_tabs_2_tab_content_actions',''),(152802,39254,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(152803,39254,'blocks_4_tabs_2_tab_content',''),(152804,39254,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(152805,39254,'blocks_4_tabs_2_tab_image','39224'),(152806,39254,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(152807,39254,'blocks_4_tabs','3'),(152808,39254,'_blocks_4_tabs','field_6177cff281419'),(152809,39254,'blocks_5_acfe_flexible_toggle',''),(152810,39254,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(152811,39254,'blocks_5_acfe_flexible_layout_title','Text Block'),(152812,39254,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(152813,39254,'blocks_5_options_theme','#b61234'),(152814,39254,'_blocks_5_options_theme','field_6176830e2ad17'),(152815,39254,'blocks_5_options',''),(152816,39254,'_blocks_5_options','field_6176830e2ad16'),(152817,39254,'blocks_5_text_block_heading','Fees & Funding Options'),(152818,39254,'_blocks_5_text_block_heading','field_617669d413097'),(152819,39254,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(152820,39254,'_blocks_5_text_block_content','field_617669ec13098'),(152821,39254,'blocks_6_acfe_flexible_toggle',''),(152822,39254,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(152823,39254,'blocks_6_acfe_flexible_layout_title','Icons'),(152824,39254,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(152825,39254,'blocks_6_options_theme','#b61234'),(152826,39254,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(152827,39254,'blocks_6_options_format','row'),(152828,39254,'_blocks_6_options_format','field_64bfde9a90690'),(152829,39254,'blocks_6_options',''),(152830,39254,'_blocks_6_options','field_64bfdd9b90684'),(152831,39254,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(152832,39254,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(152833,39254,'blocks_6_icon_row_items_0_label','Pay in Full'),(152834,39254,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(152835,39254,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(152836,39254,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(152837,39254,'blocks_6_icon_row_items_1_icon','finance.svg'),(152838,39254,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(152839,39254,'blocks_6_icon_row_items_1_label','0% finance'),(152840,39254,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(152841,39254,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(152842,39254,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(152843,39254,'blocks_6_icon_row_items_2_icon','deposit.svg'),(152844,39254,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(152845,39254,'blocks_6_icon_row_items_2_label','Deposit & balance'),(152846,39254,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(152847,39254,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(152848,39254,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(152849,39254,'blocks_6_icon_row_items','3'),(152850,39254,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(152851,39254,'blocks_7_acfe_flexible_toggle',''),(152852,39254,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(152853,39254,'blocks_7_acfe_flexible_layout_title','Steps'),(152854,39254,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(152855,39254,'blocks_7_row_content_title',''),(152856,39254,'_blocks_7_row_content_title','field_64888cd1e26e0'),(152857,39254,'blocks_7_row_content_heading','Benefits of training with us'),(152858,39254,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(152859,39254,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(152860,39254,'_blocks_7_row_content_text','field_64888ce2e26e2'),(152861,39254,'blocks_7_row_content_actions',''),(152862,39254,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(152863,39254,'blocks_7_row_content',''),(152864,39254,'_blocks_7_row_content','field_64888cb0e26df'),(152865,39254,'blocks_7_steps_0_icon','progression.svg'),(152866,39254,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(152867,39254,'blocks_7_steps_0_title','Attract new clients'),(152868,39254,'_blocks_7_steps_0_title','field_64888d94e26e7'),(152869,39254,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(152870,39254,'_blocks_7_steps_0_text','field_64888d99e26e8'),(152871,39254,'blocks_7_steps_1_icon','support.svg'),(152872,39254,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(152873,39254,'blocks_7_steps_1_title','Lifetime Learning Promise'),(152874,39254,'_blocks_7_steps_1_title','field_64888d94e26e7'),(152875,39254,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(152876,39254,'_blocks_7_steps_1_text','field_64888d99e26e8'),(152877,39254,'blocks_7_steps_2_icon','qualification.svg'),(152878,39254,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(152879,39254,'blocks_7_steps_2_title','Evidence based hands on learning'),(152880,39254,'_blocks_7_steps_2_title','field_64888d94e26e7'),(152881,39254,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You will learn how to test and screen, and learn methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(152882,39254,'_blocks_7_steps_2_text','field_64888d99e26e8'),(152883,39254,'blocks_7_steps_3_icon','leaders.svg'),(152884,39254,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(152885,39254,'blocks_7_steps_3_title','Stand out from the crowd'),(152886,39254,'_blocks_7_steps_3_title','field_64888d94e26e7'),(152887,39254,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(152888,39254,'_blocks_7_steps_3_text','field_64888d99e26e8'),(152889,39254,'blocks_7_steps','4'),(152890,39254,'_blocks_7_steps','field_64888d44e26e5'),(152891,40532,'hide_hero','0'),(152892,40532,'_hide_hero','field_66a2380fcda39'),(152893,40532,'hero_title','Biomechanics and S&C coaches'),(152894,40532,'_hero_title','field_617571fe285e8'),(152895,40532,'hero_text','Gain a deeper understanding of anatomy and client movement through intrinsic biomechanics.'),(152896,40532,'_hero_text','field_6175723c285e9'),(152897,40532,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(152898,40532,'_hero_actions_0_button','field_61757281285eb'),(152899,40532,'hero_actions','1'),(152900,40532,'_hero_actions','field_61757270285ea'),(152901,40532,'hero_style','default'),(152902,40532,'_hero_style','field_62051d9dc5324'),(152903,40532,'_thumbnail_id','39256'),(152904,40532,'__thumbnail_id','field_617570855ddaf'),(152905,40532,'hero_image_pos_x','right'),(152906,40532,'_hero_image_pos_x','field_62ec3d05390bb'),(152907,40532,'hero_image_pos_y','top'),(152908,40532,'_hero_image_pos_y','field_62ec3d05390bc'),(152909,40532,'hero_image_pos',''),(152910,40532,'_hero_image_pos','field_62ec3d05390ba'),(152911,40532,'fft_hide_from_listings','0'),(152912,40532,'_fft_hide_from_listings','field_61f1320446ab2'),(152913,40532,'fft_page_format','default'),(152914,40532,'_fft_page_format','field_61ae213f1f218'),(152915,40532,'fft_hide_nav','0'),(152916,40532,'_fft_hide_nav','field_635bd5e43527c'),(152917,40532,'fft_hide_header_call_to_action','0'),(152918,40532,'_fft_hide_header_call_to_action','field_635bd6723527d'),(152919,40532,'fft_page_sitemap','0'),(152920,40532,'_fft_page_sitemap','field_61af9b34e8181'),(152921,40532,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(152922,40532,'_blocks','field_6176696113096'),(152923,40532,'blocks_0_acfe_flexible_toggle',''),(152924,40532,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(152925,40532,'blocks_0_acfe_flexible_layout_title','Template'),(152926,40532,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(152927,40532,'blocks_0_template','39087'),(152928,40532,'_blocks_0_template','field_617bdd570fe01'),(152929,40532,'blocks_2_acfe_flexible_toggle',''),(152930,40532,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(152931,40532,'blocks_2_acfe_flexible_layout_title','Video'),(152932,40532,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(152933,40532,'blocks_2_size','large'),(152934,40532,'_blocks_2_size','field_6487038f297c1'),(152935,40532,'blocks_2_row_content_title',''),(152936,40532,'_blocks_2_row_content_title','field_64870132a865d'),(152937,40532,'blocks_2_row_content_heading',''),(152938,40532,'_blocks_2_row_content_heading','field_64870142a865e'),(152939,40532,'blocks_2_row_content_text',''),(152940,40532,'_blocks_2_row_content_text','field_64870148a865f'),(152941,40532,'blocks_2_row_content',''),(152942,40532,'_blocks_2_row_content','field_6487008ba865c'),(152943,40532,'blocks_2_video_src',''),(152944,40532,'_blocks_2_video_src','field_6193c4a98ec07'),(152945,40532,'blocks_2_video_thumbnail',''),(152946,40532,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(152947,40532,'blocks_8_acfe_flexible_toggle',''),(152948,40532,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(152949,40532,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(152950,40532,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(152951,40532,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(152952,40532,'_blocks_8_content','field_6193c9b5eac84'),(152953,40532,'blocks_9_acfe_flexible_toggle',''),(152954,40532,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(152955,40532,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(152956,40532,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(152957,40532,'blocks_9_testimonial_slider_content_title',''),(152958,40532,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(152959,40532,'blocks_9_testimonial_slider_content_heading','Testimonials'),(152960,40532,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(152961,40532,'blocks_9_testimonial_slider_content_text',''),(152962,40532,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(152963,40532,'blocks_9_testimonial_slider_content_actions',''),(152964,40532,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(152965,40532,'blocks_9_testimonial_slider_content',''),(152966,40532,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(152967,40532,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(152968,40532,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(152969,40532,'blocks_9_testimonial_slider_ambassador_bool','0'),(152970,40532,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(152971,40532,'blocks_10_acfe_flexible_toggle',''),(152972,40532,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(152973,40532,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(152974,40532,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(152975,40532,'blocks_10_options_theme','#ffffff'),(152976,40532,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(152977,40532,'blocks_10_options_state','0'),(152978,40532,'_blocks_10_options_state','field_6239fcb7508c5'),(152979,40532,'blocks_10_options',''),(152980,40532,'_blocks_10_options','field_6177e2991ac44'),(152981,40532,'blocks_10_content_title',''),(152982,40532,'_blocks_10_content_title','field_64d237e8bb1e2'),(152983,40532,'blocks_10_content_heading','Frequently asked questions '),(152984,40532,'_blocks_10_content_heading','field_64d237e8bb1e3'),(152985,40532,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(152986,40532,'_blocks_10_content_text','field_64d237e8bb1e4'),(152987,40532,'blocks_10_content_actions',''),(152988,40532,'_blocks_10_content_actions','field_64d237e8bb1e5'),(152989,40532,'blocks_10_content_align','left'),(152990,40532,'_blocks_10_content_align','field_64d2443e6b6aa'),(152991,40532,'blocks_10_content',''),(152992,40532,'_blocks_10_content','field_64d237e8bb1e1'),(152993,40532,'blocks_10_accordion_content','faqs'),(152994,40532,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(152995,40532,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(152996,40532,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(152997,40532,'blocks_10_actions',''),(152998,40532,'_blocks_10_actions','field_61a746a817f7a'),(152999,40532,'blocks_1_acfe_flexible_toggle',''),(153000,40532,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(153001,40532,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(153002,40532,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(153003,40532,'blocks_1_options_theme','#ffffff'),(153004,40532,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(153005,40532,'blocks_1_options_reverse','0'),(153006,40532,'_blocks_1_options_reverse','field_61768049bb8ac'),(153007,40532,'blocks_1_options',''),(153008,40532,'_blocks_1_options','field_617682517c334'),(153009,40532,'blocks_1_split_5050_image','39257'),(153010,40532,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(153011,40532,'blocks_1_split_5050_video',''),(153012,40532,'_blocks_1_split_5050_video','field_6239f3160848a'),(153013,40532,'blocks_1_split_5050_content_title',''),(153014,40532,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(153015,40532,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(153016,40532,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(153017,40532,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(153018,40532,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(153019,40532,'blocks_1_split_5050_content_actions',''),(153020,40532,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(153021,40532,'blocks_1_split_5050_content',''),(153022,40532,'_blocks_1_split_5050_content','field_61767afceb8ba'),(153023,40532,'blocks_3_acfe_flexible_toggle',''),(153024,40532,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(153025,40532,'blocks_3_acfe_flexible_layout_title','Form'),(153026,40532,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(153027,40532,'blocks_3_row_content_format','standard'),(153028,40532,'_blocks_3_row_content_format','field_6481ead962881'),(153029,40532,'blocks_3_row_content_title',''),(153030,40532,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(153031,40532,'blocks_3_row_content_heading','Enquire Today'),(153032,40532,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(153033,40532,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(153034,40532,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(153035,40532,'blocks_3_row_content_actions',''),(153036,40532,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(153037,40532,'blocks_3_row_content',''),(153038,40532,'_blocks_3_row_content','field_61a0f5f5b3db0'),(153039,40532,'blocks_3_row_form','40394'),(153040,40532,'_blocks_3_row_form','field_61a4ff2c0b08e'),(153041,40532,'blocks_3_row_form_button_label',''),(153042,40532,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(153043,40532,'blocks_4_acfe_flexible_toggle',''),(153044,40532,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(153045,40532,'blocks_4_acfe_flexible_layout_title','Tabs'),(153046,40532,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(153047,40532,'blocks_4_options_theme','#ffffff'),(153048,40532,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(153049,40532,'blocks_4_options',''),(153050,40532,'_blocks_4_options','field_6177cfcd8140f'),(153051,40532,'blocks_4_tabs_0_tab_label','What will I learn ?'),(153052,40532,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(153053,40532,'blocks_4_tabs_0_tab_content_title',''),(153054,40532,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(153055,40532,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(153056,40532,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(153057,40532,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(153058,40532,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(153059,40532,'blocks_4_tabs_0_tab_content_actions',''),(153060,40532,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(153061,40532,'blocks_4_tabs_0_tab_content',''),(153062,40532,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(153063,40532,'blocks_4_tabs_0_tab_image','39076'),(153064,40532,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(153065,40532,'blocks_4_tabs_1_tab_label','What do I need ?'),(153066,40532,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(153067,40532,'blocks_4_tabs_1_tab_content_title',''),(153068,40532,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(153069,40532,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(153070,40532,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(153071,40532,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(153072,40532,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(153073,40532,'blocks_4_tabs_1_tab_content_actions',''),(153074,40532,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(153075,40532,'blocks_4_tabs_1_tab_content',''),(153076,40532,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(153077,40532,'blocks_4_tabs_1_tab_image','39223'),(153078,40532,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(153079,40532,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(153080,40532,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(153081,40532,'blocks_4_tabs_2_tab_content_title',''),(153082,40532,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(153083,40532,'blocks_4_tabs_2_tab_content_heading','Locations'),(153084,40532,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(153085,40532,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(153086,40532,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(153087,40532,'blocks_4_tabs_2_tab_content_actions',''),(153088,40532,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(153089,40532,'blocks_4_tabs_2_tab_content',''),(153090,40532,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(153091,40532,'blocks_4_tabs_2_tab_image','39224'),(153092,40532,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(153093,40532,'blocks_4_tabs','3'),(153094,40532,'_blocks_4_tabs','field_6177cff281419'),(153095,40532,'blocks_5_acfe_flexible_toggle',''),(153096,40532,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(153097,40532,'blocks_5_acfe_flexible_layout_title','Text Block'),(153098,40532,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(153099,40532,'blocks_5_options_theme','#b61234'),(153100,40532,'_blocks_5_options_theme','field_6176830e2ad17'),(153101,40532,'blocks_5_options',''),(153102,40532,'_blocks_5_options','field_6176830e2ad16'),(153103,40532,'blocks_5_text_block_heading','Fees & Funding Options'),(153104,40532,'_blocks_5_text_block_heading','field_617669d413097'),(153105,40532,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(153106,40532,'_blocks_5_text_block_content','field_617669ec13098'),(153107,40532,'blocks_6_acfe_flexible_toggle',''),(153108,40532,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(153109,40532,'blocks_6_acfe_flexible_layout_title','Icons'),(153110,40532,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(153111,40532,'blocks_6_options_theme','#b61234'),(153112,40532,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(153113,40532,'blocks_6_options_format','row'),(153114,40532,'_blocks_6_options_format','field_64bfde9a90690'),(153115,40532,'blocks_6_options',''),(153116,40532,'_blocks_6_options','field_64bfdd9b90684'),(153117,40532,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(153118,40532,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(153119,40532,'blocks_6_icon_row_items_0_label','Pay in Full'),(153120,40532,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(153121,40532,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(153122,40532,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(153123,40532,'blocks_6_icon_row_items_1_icon','finance.svg'),(153124,40532,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(153125,40532,'blocks_6_icon_row_items_1_label','0% finance'),(153126,40532,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(153127,40532,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(153128,40532,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(153129,40532,'blocks_6_icon_row_items_2_icon','deposit.svg'),(153130,40532,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(153131,40532,'blocks_6_icon_row_items_2_label','Deposit & balance'),(153132,40532,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(153133,40532,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(153134,40532,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(153135,40532,'blocks_6_icon_row_items','3'),(153136,40532,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(153137,40532,'blocks_7_acfe_flexible_toggle',''),(153138,40532,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(153139,40532,'blocks_7_acfe_flexible_layout_title','Steps'),(153140,40532,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(153141,40532,'blocks_7_row_content_title',''),(153142,40532,'_blocks_7_row_content_title','field_64888cd1e26e0'),(153143,40532,'blocks_7_row_content_heading','Benefits of training with us'),(153144,40532,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(153145,40532,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(153146,40532,'_blocks_7_row_content_text','field_64888ce2e26e2'),(153147,40532,'blocks_7_row_content_actions',''),(153148,40532,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(153149,40532,'blocks_7_row_content',''),(153150,40532,'_blocks_7_row_content','field_64888cb0e26df'),(153151,40532,'blocks_7_steps_0_icon','progression.svg'),(153152,40532,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(153153,40532,'blocks_7_steps_0_title','Attract new clients'),(153154,40532,'_blocks_7_steps_0_title','field_64888d94e26e7'),(153155,40532,'blocks_7_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(153156,40532,'_blocks_7_steps_0_text','field_64888d99e26e8'),(153157,40532,'blocks_7_steps_1_icon','support.svg'),(153158,40532,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(153159,40532,'blocks_7_steps_1_title','Lifetime Learning Promise'),(153160,40532,'_blocks_7_steps_1_title','field_64888d94e26e7'),(153161,40532,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(153162,40532,'_blocks_7_steps_1_text','field_64888d99e26e8'),(153163,40532,'blocks_7_steps_2_icon','qualification.svg'),(153164,40532,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(153165,40532,'blocks_7_steps_2_title','Evidence based hands on learning'),(153166,40532,'_blocks_7_steps_2_title','field_64888d94e26e7'),(153167,40532,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You will learn how to test and screen, and learn methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(153168,40532,'_blocks_7_steps_2_text','field_64888d99e26e8'),(153169,40532,'blocks_7_steps_3_icon','leaders.svg'),(153170,40532,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(153171,40532,'blocks_7_steps_3_title','Stand out from the crowd'),(153172,40532,'_blocks_7_steps_3_title','field_64888d94e26e7'),(153173,40532,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(153174,40532,'_blocks_7_steps_3_text','field_64888d99e26e8'),(153175,40532,'blocks_7_steps','4'),(153176,40532,'_blocks_7_steps','field_64888d44e26e5'),(153177,40533,'hide_hero','0'),(153178,40533,'_hide_hero','field_66a2380fcda39'),(153179,40533,'hero_title','Biomechanics and S&C coaches'),(153180,40533,'_hero_title','field_617571fe285e8'),(153181,40533,'hero_text','Gain a deeper understanding of anatomy and client movement and level up your Strength and Conditioning practice through intrinsic biomechanics.'),(153182,40533,'_hero_text','field_6175723c285e9'),(153183,40533,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(153184,40533,'_hero_actions_0_button','field_61757281285eb'),(153185,40533,'hero_actions','1'),(153186,40533,'_hero_actions','field_61757270285ea'),(153187,40533,'hero_style','default'),(153188,40533,'_hero_style','field_62051d9dc5324'),(153189,40533,'_thumbnail_id','39256'),(153190,40533,'__thumbnail_id','field_617570855ddaf'),(153191,40533,'hero_image_pos_x','right'),(153192,40533,'_hero_image_pos_x','field_62ec3d05390bb'),(153193,40533,'hero_image_pos_y','top'),(153194,40533,'_hero_image_pos_y','field_62ec3d05390bc'),(153195,40533,'hero_image_pos',''),(153196,40533,'_hero_image_pos','field_62ec3d05390ba'),(153197,40533,'fft_hide_from_listings','0'),(153198,40533,'_fft_hide_from_listings','field_61f1320446ab2'),(153199,40533,'fft_page_format','default'),(153200,40533,'_fft_page_format','field_61ae213f1f218'),(153201,40533,'fft_hide_nav','0'),(153202,40533,'_fft_hide_nav','field_635bd5e43527c'),(153203,40533,'fft_hide_header_call_to_action','0'),(153204,40533,'_fft_hide_header_call_to_action','field_635bd6723527d'),(153205,40533,'fft_page_sitemap','0'),(153206,40533,'_fft_page_sitemap','field_61af9b34e8181'),(153207,40533,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(153208,40533,'_blocks','field_6176696113096'),(153209,40533,'blocks_0_acfe_flexible_toggle',''),(153210,40533,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(153211,40533,'blocks_0_acfe_flexible_layout_title','Template'),(153212,40533,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(153213,40533,'blocks_0_template','39087'),(153214,40533,'_blocks_0_template','field_617bdd570fe01'),(153215,40533,'blocks_2_acfe_flexible_toggle',''),(153216,40533,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(153217,40533,'blocks_2_acfe_flexible_layout_title','Video'),(153218,40533,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(153219,40533,'blocks_2_size','large'),(153220,40533,'_blocks_2_size','field_6487038f297c1'),(153221,40533,'blocks_2_row_content_title',''),(153222,40533,'_blocks_2_row_content_title','field_64870132a865d'),(153223,40533,'blocks_2_row_content_heading',''),(153224,40533,'_blocks_2_row_content_heading','field_64870142a865e'),(153225,40533,'blocks_2_row_content_text',''),(153226,40533,'_blocks_2_row_content_text','field_64870148a865f'),(153227,40533,'blocks_2_row_content',''),(153228,40533,'_blocks_2_row_content','field_6487008ba865c'),(153229,40533,'blocks_2_video_src',''),(153230,40533,'_blocks_2_video_src','field_6193c4a98ec07'),(153231,40533,'blocks_2_video_thumbnail',''),(153232,40533,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(153233,40533,'blocks_8_acfe_flexible_toggle',''),(153234,40533,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(153235,40533,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(153236,40533,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(153237,40533,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(153238,40533,'_blocks_8_content','field_6193c9b5eac84'),(153239,40533,'blocks_9_acfe_flexible_toggle',''),(153240,40533,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(153241,40533,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(153242,40533,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(153243,40533,'blocks_9_testimonial_slider_content_title',''),(153244,40533,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(153245,40533,'blocks_9_testimonial_slider_content_heading','Testimonials'),(153246,40533,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(153247,40533,'blocks_9_testimonial_slider_content_text',''),(153248,40533,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(153249,40533,'blocks_9_testimonial_slider_content_actions',''),(153250,40533,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(153251,40533,'blocks_9_testimonial_slider_content',''),(153252,40533,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(153253,40533,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(153254,40533,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(153255,40533,'blocks_9_testimonial_slider_ambassador_bool','0'),(153256,40533,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(153257,40533,'blocks_10_acfe_flexible_toggle',''),(153258,40533,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(153259,40533,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(153260,40533,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(153261,40533,'blocks_10_options_theme','#ffffff'),(153262,40533,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(153263,40533,'blocks_10_options_state','0'),(153264,40533,'_blocks_10_options_state','field_6239fcb7508c5'),(153265,40533,'blocks_10_options',''),(153266,40533,'_blocks_10_options','field_6177e2991ac44'),(153267,40533,'blocks_10_content_title',''),(153268,40533,'_blocks_10_content_title','field_64d237e8bb1e2'),(153269,40533,'blocks_10_content_heading','Frequently asked questions '),(153270,40533,'_blocks_10_content_heading','field_64d237e8bb1e3'),(153271,40533,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(153272,40533,'_blocks_10_content_text','field_64d237e8bb1e4'),(153273,40533,'blocks_10_content_actions',''),(153274,40533,'_blocks_10_content_actions','field_64d237e8bb1e5'),(153275,40533,'blocks_10_content_align','left'),(153276,40533,'_blocks_10_content_align','field_64d2443e6b6aa'),(153277,40533,'blocks_10_content',''),(153278,40533,'_blocks_10_content','field_64d237e8bb1e1'),(153279,40533,'blocks_10_accordion_content','faqs'),(153280,40533,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(153281,40533,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(153282,40533,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(153283,40533,'blocks_10_actions',''),(153284,40533,'_blocks_10_actions','field_61a746a817f7a'),(153285,40533,'blocks_1_acfe_flexible_toggle',''),(153286,40533,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(153287,40533,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(153288,40533,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(153289,40533,'blocks_1_options_theme','#ffffff'),(153290,40533,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(153291,40533,'blocks_1_options_reverse','0'),(153292,40533,'_blocks_1_options_reverse','field_61768049bb8ac'),(153293,40533,'blocks_1_options',''),(153294,40533,'_blocks_1_options','field_617682517c334'),(153295,40533,'blocks_1_split_5050_image','39257'),(153296,40533,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(153297,40533,'blocks_1_split_5050_video',''),(153298,40533,'_blocks_1_split_5050_video','field_6239f3160848a'),(153299,40533,'blocks_1_split_5050_content_title',''),(153300,40533,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(153301,40533,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(153302,40533,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(153303,40533,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(153304,40533,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(153305,40533,'blocks_1_split_5050_content_actions',''),(153306,40533,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(153307,40533,'blocks_1_split_5050_content',''),(153308,40533,'_blocks_1_split_5050_content','field_61767afceb8ba'),(153309,40533,'blocks_3_acfe_flexible_toggle',''),(153310,40533,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(153311,40533,'blocks_3_acfe_flexible_layout_title','Form'),(153312,40533,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(153313,40533,'blocks_3_row_content_format','standard'),(153314,40533,'_blocks_3_row_content_format','field_6481ead962881'),(153315,40533,'blocks_3_row_content_title',''),(153316,40533,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(153317,40533,'blocks_3_row_content_heading','Enquire Today'),(153318,40533,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(153319,40533,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(153320,40533,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(153321,40533,'blocks_3_row_content_actions',''),(153322,40533,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(153323,40533,'blocks_3_row_content',''),(153324,40533,'_blocks_3_row_content','field_61a0f5f5b3db0'),(153325,40533,'blocks_3_row_form','40394'),(153326,40533,'_blocks_3_row_form','field_61a4ff2c0b08e'),(153327,40533,'blocks_3_row_form_button_label',''),(153328,40533,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(153329,40533,'blocks_4_acfe_flexible_toggle',''),(153330,40533,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(153331,40533,'blocks_4_acfe_flexible_layout_title','Tabs'),(153332,40533,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(153333,40533,'blocks_4_options_theme','#ffffff'),(153334,40533,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(153335,40533,'blocks_4_options',''),(153336,40533,'_blocks_4_options','field_6177cfcd8140f'),(153337,40533,'blocks_4_tabs_0_tab_label','What will I learn ?'),(153338,40533,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(153339,40533,'blocks_4_tabs_0_tab_content_title',''),(153340,40533,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(153341,40533,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(153342,40533,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(153343,40533,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(153344,40533,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(153345,40533,'blocks_4_tabs_0_tab_content_actions',''),(153346,40533,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(153347,40533,'blocks_4_tabs_0_tab_content',''),(153348,40533,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(153349,40533,'blocks_4_tabs_0_tab_image','39076'),(153350,40533,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(153351,40533,'blocks_4_tabs_1_tab_label','What do I need ?'),(153352,40533,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(153353,40533,'blocks_4_tabs_1_tab_content_title',''),(153354,40533,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(153355,40533,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(153356,40533,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(153357,40533,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(153358,40533,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(153359,40533,'blocks_4_tabs_1_tab_content_actions',''),(153360,40533,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(153361,40533,'blocks_4_tabs_1_tab_content',''),(153362,40533,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(153363,40533,'blocks_4_tabs_1_tab_image','39223'),(153364,40533,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(153365,40533,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(153366,40533,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(153367,40533,'blocks_4_tabs_2_tab_content_title',''),(153368,40533,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(153369,40533,'blocks_4_tabs_2_tab_content_heading','Locations'),(153370,40533,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(153371,40533,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(153372,40533,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(153373,40533,'blocks_4_tabs_2_tab_content_actions',''),(153374,40533,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(153375,40533,'blocks_4_tabs_2_tab_content',''),(153376,40533,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(153377,40533,'blocks_4_tabs_2_tab_image','39224'),(153378,40533,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(153379,40533,'blocks_4_tabs','3'),(153380,40533,'_blocks_4_tabs','field_6177cff281419'),(153381,40533,'blocks_5_acfe_flexible_toggle',''),(153382,40533,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(153383,40533,'blocks_5_acfe_flexible_layout_title','Text Block'),(153384,40533,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(153385,40533,'blocks_5_options_theme','#b61234'),(153386,40533,'_blocks_5_options_theme','field_6176830e2ad17'),(153387,40533,'blocks_5_options',''),(153388,40533,'_blocks_5_options','field_6176830e2ad16'),(153389,40533,'blocks_5_text_block_heading','Fees & Funding Options'),(153390,40533,'_blocks_5_text_block_heading','field_617669d413097'),(153391,40533,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(153392,40533,'_blocks_5_text_block_content','field_617669ec13098'),(153393,40533,'blocks_6_acfe_flexible_toggle',''),(153394,40533,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(153395,40533,'blocks_6_acfe_flexible_layout_title','Icons'),(153396,40533,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(153397,40533,'blocks_6_options_theme','#b61234'),(153398,40533,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(153399,40533,'blocks_6_options_format','row'),(153400,40533,'_blocks_6_options_format','field_64bfde9a90690'),(153401,40533,'blocks_6_options',''),(153402,40533,'_blocks_6_options','field_64bfdd9b90684'),(153403,40533,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(153404,40533,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(153405,40533,'blocks_6_icon_row_items_0_label','Pay in Full'),(153406,40533,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(153407,40533,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(153408,40533,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(153409,40533,'blocks_6_icon_row_items_1_icon','finance.svg'),(153410,40533,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(153411,40533,'blocks_6_icon_row_items_1_label','0% finance'),(153412,40533,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(153413,40533,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(153414,40533,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(153415,40533,'blocks_6_icon_row_items_2_icon','deposit.svg'),(153416,40533,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(153417,40533,'blocks_6_icon_row_items_2_label','Deposit & balance'),(153418,40533,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(153419,40533,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(153420,40533,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(153421,40533,'blocks_6_icon_row_items','3'),(153422,40533,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(153423,40533,'blocks_7_acfe_flexible_toggle',''),(153424,40533,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(153425,40533,'blocks_7_acfe_flexible_layout_title','Steps'),(153426,40533,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(153427,40533,'blocks_7_row_content_title',''),(153428,40533,'_blocks_7_row_content_title','field_64888cd1e26e0'),(153429,40533,'blocks_7_row_content_heading','Benefits of training with us'),(153430,40533,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(153431,40533,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(153432,40533,'_blocks_7_row_content_text','field_64888ce2e26e2'),(153433,40533,'blocks_7_row_content_actions',''),(153434,40533,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(153435,40533,'blocks_7_row_content',''),(153436,40533,'_blocks_7_row_content','field_64888cb0e26df'),(153437,40533,'blocks_7_steps_0_icon','progression.svg'),(153438,40533,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(153439,40533,'blocks_7_steps_0_title','Attract new clients'),(153440,40533,'_blocks_7_steps_0_title','field_64888d94e26e7'),(153441,40533,'blocks_7_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(153442,40533,'_blocks_7_steps_0_text','field_64888d99e26e8'),(153443,40533,'blocks_7_steps_1_icon','support.svg'),(153444,40533,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(153445,40533,'blocks_7_steps_1_title','Lifetime Learning Promise'),(153446,40533,'_blocks_7_steps_1_title','field_64888d94e26e7'),(153447,40533,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(153448,40533,'_blocks_7_steps_1_text','field_64888d99e26e8'),(153449,40533,'blocks_7_steps_2_icon','qualification.svg'),(153450,40533,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(153451,40533,'blocks_7_steps_2_title','Evidence based hands on learning'),(153452,40533,'_blocks_7_steps_2_title','field_64888d94e26e7'),(153453,40533,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You will learn how to test and screen, and learn methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(153454,40533,'_blocks_7_steps_2_text','field_64888d99e26e8'),(153455,40533,'blocks_7_steps_3_icon','leaders.svg'),(153456,40533,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(153457,40533,'blocks_7_steps_3_title','Stand out from the crowd'),(153458,40533,'_blocks_7_steps_3_title','field_64888d94e26e7'),(153459,40533,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(153460,40533,'_blocks_7_steps_3_text','field_64888d99e26e8'),(153461,40533,'blocks_7_steps','4'),(153462,40533,'_blocks_7_steps','field_64888d44e26e5'),(153463,40534,'hide_hero','0'),(153464,40534,'_hide_hero','field_66a2380fcda39'),(153465,40534,'hero_title','Biomechanics and S&C coaches'),(153466,40534,'_hero_title','field_617571fe285e8'),(153467,40534,'hero_text','Gain a deeper understanding of anatomy and client movement and level up your Strength and Conditioning practice through intrinsic biomechanics.'),(153468,40534,'_hero_text','field_6175723c285e9'),(153469,40534,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(153470,40534,'_hero_actions_0_button','field_61757281285eb'),(153471,40534,'hero_actions','1'),(153472,40534,'_hero_actions','field_61757270285ea'),(153473,40534,'hero_style','default'),(153474,40534,'_hero_style','field_62051d9dc5324'),(153475,40534,'_thumbnail_id','39256'),(153476,40534,'__thumbnail_id','field_617570855ddaf'),(153477,40534,'hero_image_pos_x','right'),(153478,40534,'_hero_image_pos_x','field_62ec3d05390bb'),(153479,40534,'hero_image_pos_y','top'),(153480,40534,'_hero_image_pos_y','field_62ec3d05390bc'),(153481,40534,'hero_image_pos',''),(153482,40534,'_hero_image_pos','field_62ec3d05390ba'),(153483,40534,'fft_hide_from_listings','0'),(153484,40534,'_fft_hide_from_listings','field_61f1320446ab2'),(153485,40534,'fft_page_format','default'),(153486,40534,'_fft_page_format','field_61ae213f1f218'),(153487,40534,'fft_hide_nav','0'),(153488,40534,'_fft_hide_nav','field_635bd5e43527c'),(153489,40534,'fft_hide_header_call_to_action','0'),(153490,40534,'_fft_hide_header_call_to_action','field_635bd6723527d'),(153491,40534,'fft_page_sitemap','0'),(153492,40534,'_fft_page_sitemap','field_61af9b34e8181'),(153493,40534,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(153494,40534,'_blocks','field_6176696113096'),(153495,40534,'blocks_0_acfe_flexible_toggle',''),(153496,40534,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(153497,40534,'blocks_0_acfe_flexible_layout_title','Template'),(153498,40534,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(153499,40534,'blocks_0_template','39087'),(153500,40534,'_blocks_0_template','field_617bdd570fe01'),(153501,40534,'blocks_2_acfe_flexible_toggle',''),(153502,40534,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(153503,40534,'blocks_2_acfe_flexible_layout_title','Video'),(153504,40534,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(153505,40534,'blocks_2_size','large'),(153506,40534,'_blocks_2_size','field_6487038f297c1'),(153507,40534,'blocks_2_row_content_title',''),(153508,40534,'_blocks_2_row_content_title','field_64870132a865d'),(153509,40534,'blocks_2_row_content_heading',''),(153510,40534,'_blocks_2_row_content_heading','field_64870142a865e'),(153511,40534,'blocks_2_row_content_text',''),(153512,40534,'_blocks_2_row_content_text','field_64870148a865f'),(153513,40534,'blocks_2_row_content',''),(153514,40534,'_blocks_2_row_content','field_6487008ba865c'),(153515,40534,'blocks_2_video_src',''),(153516,40534,'_blocks_2_video_src','field_6193c4a98ec07'),(153517,40534,'blocks_2_video_thumbnail',''),(153518,40534,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(153519,40534,'blocks_8_acfe_flexible_toggle','1'),(153520,40534,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(153521,40534,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(153522,40534,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(153523,40534,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(153524,40534,'_blocks_8_content','field_6193c9b5eac84'),(153525,40534,'blocks_9_acfe_flexible_toggle',''),(153526,40534,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(153527,40534,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(153528,40534,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(153529,40534,'blocks_9_testimonial_slider_content_title',''),(153530,40534,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(153531,40534,'blocks_9_testimonial_slider_content_heading','Testimonials'),(153532,40534,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(153533,40534,'blocks_9_testimonial_slider_content_text',''),(153534,40534,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(153535,40534,'blocks_9_testimonial_slider_content_actions',''),(153536,40534,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(153537,40534,'blocks_9_testimonial_slider_content',''),(153538,40534,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(153539,40534,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(153540,40534,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(153541,40534,'blocks_9_testimonial_slider_ambassador_bool','0'),(153542,40534,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(153543,40534,'blocks_10_acfe_flexible_toggle',''),(153544,40534,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(153545,40534,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(153546,40534,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(153547,40534,'blocks_10_options_theme','#ffffff'),(153548,40534,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(153549,40534,'blocks_10_options_state','0'),(153550,40534,'_blocks_10_options_state','field_6239fcb7508c5'),(153551,40534,'blocks_10_options',''),(153552,40534,'_blocks_10_options','field_6177e2991ac44'),(153553,40534,'blocks_10_content_title',''),(153554,40534,'_blocks_10_content_title','field_64d237e8bb1e2'),(153555,40534,'blocks_10_content_heading','Frequently asked questions '),(153556,40534,'_blocks_10_content_heading','field_64d237e8bb1e3'),(153557,40534,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(153558,40534,'_blocks_10_content_text','field_64d237e8bb1e4'),(153559,40534,'blocks_10_content_actions',''),(153560,40534,'_blocks_10_content_actions','field_64d237e8bb1e5'),(153561,40534,'blocks_10_content_align','left'),(153562,40534,'_blocks_10_content_align','field_64d2443e6b6aa'),(153563,40534,'blocks_10_content',''),(153564,40534,'_blocks_10_content','field_64d237e8bb1e1'),(153565,40534,'blocks_10_accordion_content','faqs'),(153566,40534,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(153567,40534,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(153568,40534,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(153569,40534,'blocks_10_actions',''),(153570,40534,'_blocks_10_actions','field_61a746a817f7a'),(153571,40534,'blocks_1_acfe_flexible_toggle',''),(153572,40534,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(153573,40534,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(153574,40534,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(153575,40534,'blocks_1_options_theme','#ffffff'),(153576,40534,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(153577,40534,'blocks_1_options_reverse','0'),(153578,40534,'_blocks_1_options_reverse','field_61768049bb8ac'),(153579,40534,'blocks_1_options',''),(153580,40534,'_blocks_1_options','field_617682517c334'),(153581,40534,'blocks_1_split_5050_image','39257'),(153582,40534,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(153583,40534,'blocks_1_split_5050_video',''),(153584,40534,'_blocks_1_split_5050_video','field_6239f3160848a'),(153585,40534,'blocks_1_split_5050_content_title',''),(153586,40534,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(153587,40534,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(153588,40534,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(153589,40534,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(153590,40534,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(153591,40534,'blocks_1_split_5050_content_actions',''),(153592,40534,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(153593,40534,'blocks_1_split_5050_content',''),(153594,40534,'_blocks_1_split_5050_content','field_61767afceb8ba'),(153595,40534,'blocks_3_acfe_flexible_toggle',''),(153596,40534,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(153597,40534,'blocks_3_acfe_flexible_layout_title','Form'),(153598,40534,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(153599,40534,'blocks_3_row_content_format','standard'),(153600,40534,'_blocks_3_row_content_format','field_6481ead962881'),(153601,40534,'blocks_3_row_content_title',''),(153602,40534,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(153603,40534,'blocks_3_row_content_heading','Enquire Today'),(153604,40534,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(153605,40534,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(153606,40534,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(153607,40534,'blocks_3_row_content_actions',''),(153608,40534,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(153609,40534,'blocks_3_row_content',''),(153610,40534,'_blocks_3_row_content','field_61a0f5f5b3db0'),(153611,40534,'blocks_3_row_form','40394'),(153612,40534,'_blocks_3_row_form','field_61a4ff2c0b08e'),(153613,40534,'blocks_3_row_form_button_label',''),(153614,40534,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(153615,40534,'blocks_4_acfe_flexible_toggle',''),(153616,40534,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(153617,40534,'blocks_4_acfe_flexible_layout_title','Tabs'),(153618,40534,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(153619,40534,'blocks_4_options_theme','#ffffff'),(153620,40534,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(153621,40534,'blocks_4_options',''),(153622,40534,'_blocks_4_options','field_6177cfcd8140f'),(153623,40534,'blocks_4_tabs_0_tab_label','What will I learn ?'),(153624,40534,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(153625,40534,'blocks_4_tabs_0_tab_content_title',''),(153626,40534,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(153627,40534,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(153628,40534,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(153629,40534,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(153630,40534,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(153631,40534,'blocks_4_tabs_0_tab_content_actions',''),(153632,40534,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(153633,40534,'blocks_4_tabs_0_tab_content',''),(153634,40534,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(153635,40534,'blocks_4_tabs_0_tab_image','39076'),(153636,40534,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(153637,40534,'blocks_4_tabs_1_tab_label','What do I need ?'),(153638,40534,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(153639,40534,'blocks_4_tabs_1_tab_content_title',''),(153640,40534,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(153641,40534,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(153642,40534,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(153643,40534,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(153644,40534,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(153645,40534,'blocks_4_tabs_1_tab_content_actions',''),(153646,40534,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(153647,40534,'blocks_4_tabs_1_tab_content',''),(153648,40534,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(153649,40534,'blocks_4_tabs_1_tab_image','39223'),(153650,40534,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(153651,40534,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(153652,40534,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(153653,40534,'blocks_4_tabs_2_tab_content_title',''),(153654,40534,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(153655,40534,'blocks_4_tabs_2_tab_content_heading','Locations'),(153656,40534,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(153657,40534,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(153658,40534,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(153659,40534,'blocks_4_tabs_2_tab_content_actions',''),(153660,40534,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(153661,40534,'blocks_4_tabs_2_tab_content',''),(153662,40534,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(153663,40534,'blocks_4_tabs_2_tab_image','39224'),(153664,40534,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(153665,40534,'blocks_4_tabs','3'),(153666,40534,'_blocks_4_tabs','field_6177cff281419'),(153667,40534,'blocks_5_acfe_flexible_toggle',''),(153668,40534,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(153669,40534,'blocks_5_acfe_flexible_layout_title','Text Block'),(153670,40534,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(153671,40534,'blocks_5_options_theme','#b61234'),(153672,40534,'_blocks_5_options_theme','field_6176830e2ad17'),(153673,40534,'blocks_5_options',''),(153674,40534,'_blocks_5_options','field_6176830e2ad16'),(153675,40534,'blocks_5_text_block_heading','Fees & Funding Options'),(153676,40534,'_blocks_5_text_block_heading','field_617669d413097'),(153677,40534,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(153678,40534,'_blocks_5_text_block_content','field_617669ec13098'),(153679,40534,'blocks_6_acfe_flexible_toggle',''),(153680,40534,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(153681,40534,'blocks_6_acfe_flexible_layout_title','Icons'),(153682,40534,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(153683,40534,'blocks_6_options_theme','#b61234'),(153684,40534,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(153685,40534,'blocks_6_options_format','row'),(153686,40534,'_blocks_6_options_format','field_64bfde9a90690'),(153687,40534,'blocks_6_options',''),(153688,40534,'_blocks_6_options','field_64bfdd9b90684'),(153689,40534,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(153690,40534,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(153691,40534,'blocks_6_icon_row_items_0_label','Pay in Full'),(153692,40534,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(153693,40534,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(153694,40534,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(153695,40534,'blocks_6_icon_row_items_1_icon','finance.svg'),(153696,40534,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(153697,40534,'blocks_6_icon_row_items_1_label','0% finance'),(153698,40534,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(153699,40534,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(153700,40534,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(153701,40534,'blocks_6_icon_row_items_2_icon','deposit.svg'),(153702,40534,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(153703,40534,'blocks_6_icon_row_items_2_label','Deposit & balance'),(153704,40534,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(153705,40534,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(153706,40534,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(153707,40534,'blocks_6_icon_row_items','3'),(153708,40534,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(153709,40534,'blocks_7_acfe_flexible_toggle',''),(153710,40534,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(153711,40534,'blocks_7_acfe_flexible_layout_title','Steps'),(153712,40534,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(153713,40534,'blocks_7_row_content_title',''),(153714,40534,'_blocks_7_row_content_title','field_64888cd1e26e0'),(153715,40534,'blocks_7_row_content_heading','Benefits of training with us'),(153716,40534,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(153717,40534,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(153718,40534,'_blocks_7_row_content_text','field_64888ce2e26e2'),(153719,40534,'blocks_7_row_content_actions',''),(153720,40534,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(153721,40534,'blocks_7_row_content',''),(153722,40534,'_blocks_7_row_content','field_64888cb0e26df'),(153723,40534,'blocks_7_steps_0_icon','progression.svg'),(153724,40534,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(153725,40534,'blocks_7_steps_0_title','Attract new clients'),(153726,40534,'_blocks_7_steps_0_title','field_64888d94e26e7'),(153727,40534,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(153728,40534,'_blocks_7_steps_0_text','field_64888d99e26e8'),(153729,40534,'blocks_7_steps_1_icon','support.svg'),(153730,40534,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(153731,40534,'blocks_7_steps_1_title','Lifetime Learning Promise'),(153732,40534,'_blocks_7_steps_1_title','field_64888d94e26e7'),(153733,40534,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(153734,40534,'_blocks_7_steps_1_text','field_64888d99e26e8'),(153735,40534,'blocks_7_steps_2_icon','qualification.svg'),(153736,40534,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(153737,40534,'blocks_7_steps_2_title','Evidence based hands on learning'),(153738,40534,'_blocks_7_steps_2_title','field_64888d94e26e7'),(153739,40534,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You will learn how to test and screen, and learn methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(153740,40534,'_blocks_7_steps_2_text','field_64888d99e26e8'),(153741,40534,'blocks_7_steps_3_icon','leaders.svg'),(153742,40534,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(153743,40534,'blocks_7_steps_3_title','Stand out from the crowd'),(153744,40534,'_blocks_7_steps_3_title','field_64888d94e26e7'),(153745,40534,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(153746,40534,'_blocks_7_steps_3_text','field_64888d99e26e8'),(153747,40534,'blocks_7_steps','4'),(153748,40534,'_blocks_7_steps','field_64888d44e26e5'),(153749,39263,'blocks_1_acfe_flexible_toggle',''),(153750,39263,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(153751,39263,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(153752,39263,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(153753,39263,'blocks_1_options_theme','#ffffff'),(153754,39263,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(153755,39263,'blocks_1_options_reverse','0'),(153756,39263,'_blocks_1_options_reverse','field_61768049bb8ac'),(153757,39263,'blocks_1_options',''),(153758,39263,'_blocks_1_options','field_617682517c334'),(153759,39263,'blocks_1_split_5050_image','39623'),(153760,39263,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(153761,39263,'blocks_1_split_5050_video',''),(153762,39263,'_blocks_1_split_5050_video','field_6239f3160848a'),(153763,39263,'blocks_1_split_5050_content_title',''),(153764,39263,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(153765,39263,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(153766,39263,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(153767,39263,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of common modern ailments within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(153768,39263,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(153769,39263,'blocks_1_split_5050_content_actions',''),(153770,39263,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(153771,39263,'blocks_1_split_5050_content',''),(153772,39263,'_blocks_1_split_5050_content','field_61767afceb8ba'),(153793,39263,'blocks_4_acfe_flexible_toggle',''),(153794,39263,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(153795,39263,'blocks_4_acfe_flexible_layout_title','Tabs'),(153796,39263,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(153797,39263,'blocks_4_options_theme','#ffffff'),(153798,39263,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(153799,39263,'blocks_4_options',''),(153800,39263,'_blocks_4_options','field_6177cfcd8140f'),(153801,39263,'blocks_4_tabs_0_tab_label','What will I learn ?'),(153802,39263,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(153803,39263,'blocks_4_tabs_0_tab_content_title',''),(153804,39263,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(153805,39263,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(153806,39263,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(153807,39263,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(153808,39263,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(153809,39263,'blocks_4_tabs_0_tab_content_actions',''),(153810,39263,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(153811,39263,'blocks_4_tabs_0_tab_content',''),(153812,39263,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(153813,39263,'blocks_4_tabs_0_tab_image','39076'),(153814,39263,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(153815,39263,'blocks_4_tabs_1_tab_label','What do I need ?'),(153816,39263,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(153817,39263,'blocks_4_tabs_1_tab_content_title',''),(153818,39263,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(153819,39263,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(153820,39263,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(153821,39263,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(153822,39263,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(153823,39263,'blocks_4_tabs_1_tab_content_actions',''),(153824,39263,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(153825,39263,'blocks_4_tabs_1_tab_content',''),(153826,39263,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(153827,39263,'blocks_4_tabs_1_tab_image','41183'),(153828,39263,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(153829,39263,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(153830,39263,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(153831,39263,'blocks_4_tabs_2_tab_content_title',''),(153832,39263,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(153833,39263,'blocks_4_tabs_2_tab_content_heading','Locations'),(153834,39263,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(153835,39263,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(153836,39263,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(153837,39263,'blocks_4_tabs_2_tab_content_actions',''),(153838,39263,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(153839,39263,'blocks_4_tabs_2_tab_content',''),(153840,39263,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(153841,39263,'blocks_4_tabs_2_tab_image','39224'),(153842,39263,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(153843,39263,'blocks_4_tabs','3'),(153844,39263,'_blocks_4_tabs','field_6177cff281419'),(153845,39263,'blocks_5_acfe_flexible_toggle',''),(153846,39263,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(153847,39263,'blocks_5_acfe_flexible_layout_title','Text Block'),(153848,39263,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(153849,39263,'blocks_5_options_theme','#b61234'),(153850,39263,'_blocks_5_options_theme','field_6176830e2ad17'),(153851,39263,'blocks_5_options',''),(153852,39263,'_blocks_5_options','field_6176830e2ad16'),(153853,39263,'blocks_5_text_block_heading','Fees & Funding Options'),(153854,39263,'_blocks_5_text_block_heading','field_617669d413097'),(153855,39263,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(153856,39263,'_blocks_5_text_block_content','field_617669ec13098'),(153857,39263,'blocks_6_acfe_flexible_toggle',''),(153858,39263,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(153859,39263,'blocks_6_acfe_flexible_layout_title','Icons'),(153860,39263,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(153861,39263,'blocks_6_options_theme','#b61234'),(153862,39263,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(153863,39263,'blocks_6_options_format','row'),(153864,39263,'_blocks_6_options_format','field_64bfde9a90690'),(153865,39263,'blocks_6_options',''),(153866,39263,'_blocks_6_options','field_64bfdd9b90684'),(153867,39263,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(153868,39263,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(153869,39263,'blocks_6_icon_row_items_0_label','Pay in Full'),(153870,39263,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(153871,39263,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(153872,39263,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(153873,39263,'blocks_6_icon_row_items_1_icon','finance.svg'),(153874,39263,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(153875,39263,'blocks_6_icon_row_items_1_label','0% finance'),(153876,39263,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(153877,39263,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(153878,39263,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(153879,39263,'blocks_6_icon_row_items_2_icon','deposit.svg'),(153880,39263,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(153881,39263,'blocks_6_icon_row_items_2_label','Deposit & balance'),(153882,39263,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(153883,39263,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(153884,39263,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(153885,39263,'blocks_6_icon_row_items','3'),(153886,39263,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(153887,39263,'blocks_7_acfe_flexible_toggle',''),(153888,39263,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(153889,39263,'blocks_7_acfe_flexible_layout_title','Steps'),(153890,39263,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(153891,39263,'blocks_7_row_content_title',''),(153892,39263,'_blocks_7_row_content_title','field_64888cd1e26e0'),(153893,39263,'blocks_7_row_content_heading','Benefits of training with us'),(153894,39263,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(153895,39263,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(153896,39263,'_blocks_7_row_content_text','field_64888ce2e26e2'),(153897,39263,'blocks_7_row_content_actions',''),(153898,39263,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(153899,39263,'blocks_7_row_content',''),(153900,39263,'_blocks_7_row_content','field_64888cb0e26df'),(153901,39263,'blocks_7_steps_0_icon','progression.svg'),(153902,39263,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(153903,39263,'blocks_7_steps_0_title','Earning potential'),(153904,39263,'_blocks_7_steps_0_title','field_64888d94e26e7'),(153905,39263,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(153906,39263,'_blocks_7_steps_0_text','field_64888d99e26e8'),(153907,39263,'blocks_7_steps_1_icon','support.svg'),(153908,39263,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(153909,39263,'blocks_7_steps_1_title','Lifetime Learning Promise'),(153910,39263,'_blocks_7_steps_1_title','field_64888d94e26e7'),(153911,39263,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(153912,39263,'_blocks_7_steps_1_text','field_64888d99e26e8'),(153913,39263,'blocks_7_steps_2_icon','qualification.svg'),(153914,39263,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(153915,39263,'blocks_7_steps_2_title','Evidence based hands on learning'),(153916,39263,'_blocks_7_steps_2_title','field_64888d94e26e7'),(153917,39263,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(153918,39263,'_blocks_7_steps_2_text','field_64888d99e26e8'),(153919,39263,'blocks_7_steps_3_icon','leaders.svg'),(153920,39263,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(153921,39263,'blocks_7_steps_3_title','Stand out from the crowd'),(153922,39263,'_blocks_7_steps_3_title','field_64888d94e26e7'),(153923,39263,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(153924,39263,'_blocks_7_steps_3_text','field_64888d99e26e8'),(153925,39263,'blocks_7_steps','4'),(153926,39263,'_blocks_7_steps','field_64888d44e26e5'),(153927,40535,'hide_hero','0'),(153928,40535,'_hide_hero','field_66a2380fcda39'),(153929,40535,'hero_title','How to Become a Biomechanics Coach'),(153930,40535,'_hero_title','field_617571fe285e8'),(153931,40535,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(153932,40535,'_hero_text','field_6175723c285e9'),(153933,40535,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(153934,40535,'_hero_actions_0_button','field_61757281285eb'),(153935,40535,'hero_actions','1'),(153936,40535,'_hero_actions','field_61757270285ea'),(153937,40535,'hero_style','default'),(153938,40535,'_hero_style','field_62051d9dc5324'),(153939,40535,'_thumbnail_id','39454'),(153940,40535,'__thumbnail_id','field_617570855ddaf'),(153941,40535,'hero_image_pos_x','right'),(153942,40535,'_hero_image_pos_x','field_62ec3d05390bb'),(153943,40535,'hero_image_pos_y','top'),(153944,40535,'_hero_image_pos_y','field_62ec3d05390bc'),(153945,40535,'hero_image_pos',''),(153946,40535,'_hero_image_pos','field_62ec3d05390ba'),(153947,40535,'fft_hide_from_listings','0'),(153948,40535,'_fft_hide_from_listings','field_61f1320446ab2'),(153949,40535,'fft_page_format','default'),(153950,40535,'_fft_page_format','field_61ae213f1f218'),(153951,40535,'fft_hide_nav','0'),(153952,40535,'_fft_hide_nav','field_635bd5e43527c'),(153953,40535,'fft_hide_header_call_to_action','0'),(153954,40535,'_fft_hide_header_call_to_action','field_635bd6723527d'),(153955,40535,'fft_page_sitemap','0'),(153956,40535,'_fft_page_sitemap','field_61af9b34e8181'),(153957,40535,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(153958,40535,'_blocks','field_6176696113096'),(153959,40535,'blocks_0_acfe_flexible_toggle',''),(153960,40535,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(153961,40535,'blocks_0_acfe_flexible_layout_title','Template'),(153962,40535,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(153963,40535,'blocks_0_template','39087'),(153964,40535,'_blocks_0_template','field_617bdd570fe01'),(153965,40535,'blocks_2_acfe_flexible_toggle',''),(153966,40535,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(153967,40535,'blocks_2_acfe_flexible_layout_title','Video'),(153968,40535,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(153969,40535,'blocks_2_size','large'),(153970,40535,'_blocks_2_size','field_6487038f297c1'),(153971,40535,'blocks_2_row_content_title',''),(153972,40535,'_blocks_2_row_content_title','field_64870132a865d'),(153973,40535,'blocks_2_row_content_heading',''),(153974,40535,'_blocks_2_row_content_heading','field_64870142a865e'),(153975,40535,'blocks_2_row_content_text',''),(153976,40535,'_blocks_2_row_content_text','field_64870148a865f'),(153977,40535,'blocks_2_row_content',''),(153978,40535,'_blocks_2_row_content','field_6487008ba865c'),(153979,40535,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(153980,40535,'_blocks_2_video_src','field_6193c4a98ec07'),(153981,40535,'blocks_2_video_thumbnail',''),(153982,40535,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(153983,40535,'blocks_8_acfe_flexible_toggle','1'),(153984,40535,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(153985,40535,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(153986,40535,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(153987,40535,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(153988,40535,'_blocks_8_content','field_6193c9b5eac84'),(153989,40535,'blocks_9_acfe_flexible_toggle',''),(153990,40535,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(153991,40535,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(153992,40535,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(153993,40535,'blocks_9_testimonial_slider_content_title',''),(153994,40535,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(153995,40535,'blocks_9_testimonial_slider_content_heading','Testimonials'),(153996,40535,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(153997,40535,'blocks_9_testimonial_slider_content_text',''),(153998,40535,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(153999,40535,'blocks_9_testimonial_slider_content_actions',''),(154000,40535,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(154001,40535,'blocks_9_testimonial_slider_content',''),(154002,40535,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(154003,40535,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(154004,40535,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(154005,40535,'blocks_9_testimonial_slider_ambassador_bool','0'),(154006,40535,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(154007,40535,'blocks_10_acfe_flexible_toggle',''),(154008,40535,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(154009,40535,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(154010,40535,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(154011,40535,'blocks_10_options_theme','#ffffff'),(154012,40535,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(154013,40535,'blocks_10_options_state','0'),(154014,40535,'_blocks_10_options_state','field_6239fcb7508c5'),(154015,40535,'blocks_10_options',''),(154016,40535,'_blocks_10_options','field_6177e2991ac44'),(154017,40535,'blocks_10_content_title',''),(154018,40535,'_blocks_10_content_title','field_64d237e8bb1e2'),(154019,40535,'blocks_10_content_heading','Frequently asked questions '),(154020,40535,'_blocks_10_content_heading','field_64d237e8bb1e3'),(154021,40535,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(154022,40535,'_blocks_10_content_text','field_64d237e8bb1e4'),(154023,40535,'blocks_10_content_actions',''),(154024,40535,'_blocks_10_content_actions','field_64d237e8bb1e5'),(154025,40535,'blocks_10_content_align','left'),(154026,40535,'_blocks_10_content_align','field_64d2443e6b6aa'),(154027,40535,'blocks_10_content',''),(154028,40535,'_blocks_10_content','field_64d237e8bb1e1'),(154029,40535,'blocks_10_accordion_content','faqs'),(154030,40535,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(154031,40535,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(154032,40535,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(154033,40535,'blocks_10_actions',''),(154034,40535,'_blocks_10_actions','field_61a746a817f7a'),(154035,40535,'blocks_1_acfe_flexible_toggle',''),(154036,40535,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(154037,40535,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(154038,40535,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(154039,40535,'blocks_1_options_theme','#ffffff'),(154040,40535,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(154041,40535,'blocks_1_options_reverse','0'),(154042,40535,'_blocks_1_options_reverse','field_61768049bb8ac'),(154043,40535,'blocks_1_options',''),(154044,40535,'_blocks_1_options','field_617682517c334'),(154045,40535,'blocks_1_split_5050_image','39623'),(154046,40535,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(154047,40535,'blocks_1_split_5050_video',''),(154048,40535,'_blocks_1_split_5050_video','field_6239f3160848a'),(154049,40535,'blocks_1_split_5050_content_title',''),(154050,40535,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(154051,40535,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(154052,40535,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(154053,40535,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of numerous injuries within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(154054,40535,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(154055,40535,'blocks_1_split_5050_content_actions',''),(154056,40535,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(154057,40535,'blocks_1_split_5050_content',''),(154058,40535,'_blocks_1_split_5050_content','field_61767afceb8ba'),(154059,40535,'blocks_3_acfe_flexible_toggle',''),(154060,40535,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(154061,40535,'blocks_3_acfe_flexible_layout_title','Form'),(154062,40535,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(154063,40535,'blocks_3_row_content_format','standard'),(154064,40535,'_blocks_3_row_content_format','field_6481ead962881'),(154065,40535,'blocks_3_row_content_title',''),(154066,40535,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(154067,40535,'blocks_3_row_content_heading','Enquire Today'),(154068,40535,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(154069,40535,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(154070,40535,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(154071,40535,'blocks_3_row_content_actions',''),(154072,40535,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(154073,40535,'blocks_3_row_content',''),(154074,40535,'_blocks_3_row_content','field_61a0f5f5b3db0'),(154075,40535,'blocks_3_row_form','40417'),(154076,40535,'_blocks_3_row_form','field_61a4ff2c0b08e'),(154077,40535,'blocks_3_row_form_button_label',''),(154078,40535,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(154079,40535,'blocks_4_acfe_flexible_toggle',''),(154080,40535,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(154081,40535,'blocks_4_acfe_flexible_layout_title','Tabs'),(154082,40535,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(154083,40535,'blocks_4_options_theme','#ffffff'),(154084,40535,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(154085,40535,'blocks_4_options',''),(154086,40535,'_blocks_4_options','field_6177cfcd8140f'),(154087,40535,'blocks_4_tabs_0_tab_label','What will I learn ?'),(154088,40535,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(154089,40535,'blocks_4_tabs_0_tab_content_title',''),(154090,40535,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(154091,40535,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(154092,40535,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(154093,40535,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(154094,40535,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(154095,40535,'blocks_4_tabs_0_tab_content_actions',''),(154096,40535,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(154097,40535,'blocks_4_tabs_0_tab_content',''),(154098,40535,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(154099,40535,'blocks_4_tabs_0_tab_image','39076'),(154100,40535,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(154101,40535,'blocks_4_tabs_1_tab_label','What do I need ?'),(154102,40535,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(154103,40535,'blocks_4_tabs_1_tab_content_title',''),(154104,40535,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(154105,40535,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(154106,40535,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(154107,40535,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(154108,40535,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(154109,40535,'blocks_4_tabs_1_tab_content_actions',''),(154110,40535,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(154111,40535,'blocks_4_tabs_1_tab_content',''),(154112,40535,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(154113,40535,'blocks_4_tabs_1_tab_image','39223'),(154114,40535,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(154115,40535,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(154116,40535,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(154117,40535,'blocks_4_tabs_2_tab_content_title',''),(154118,40535,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(154119,40535,'blocks_4_tabs_2_tab_content_heading','Locations'),(154120,40535,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(154121,40535,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(154122,40535,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(154123,40535,'blocks_4_tabs_2_tab_content_actions',''),(154124,40535,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(154125,40535,'blocks_4_tabs_2_tab_content',''),(154126,40535,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(154127,40535,'blocks_4_tabs_2_tab_image','39224'),(154128,40535,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(154129,40535,'blocks_4_tabs','3'),(154130,40535,'_blocks_4_tabs','field_6177cff281419'),(154131,40535,'blocks_5_acfe_flexible_toggle',''),(154132,40535,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(154133,40535,'blocks_5_acfe_flexible_layout_title','Text Block'),(154134,40535,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(154135,40535,'blocks_5_options_theme','#b61234'),(154136,40535,'_blocks_5_options_theme','field_6176830e2ad17'),(154137,40535,'blocks_5_options',''),(154138,40535,'_blocks_5_options','field_6176830e2ad16'),(154139,40535,'blocks_5_text_block_heading','Fees & Funding Options'),(154140,40535,'_blocks_5_text_block_heading','field_617669d413097'),(154141,40535,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(154142,40535,'_blocks_5_text_block_content','field_617669ec13098'),(154143,40535,'blocks_6_acfe_flexible_toggle',''),(154144,40535,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(154145,40535,'blocks_6_acfe_flexible_layout_title','Icons'),(154146,40535,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(154147,40535,'blocks_6_options_theme','#b61234'),(154148,40535,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(154149,40535,'blocks_6_options_format','row'),(154150,40535,'_blocks_6_options_format','field_64bfde9a90690'),(154151,40535,'blocks_6_options',''),(154152,40535,'_blocks_6_options','field_64bfdd9b90684'),(154153,40535,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(154154,40535,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(154155,40535,'blocks_6_icon_row_items_0_label','Pay in Full'),(154156,40535,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(154157,40535,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(154158,40535,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(154159,40535,'blocks_6_icon_row_items_1_icon','finance.svg'),(154160,40535,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(154161,40535,'blocks_6_icon_row_items_1_label','0% finance'),(154162,40535,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(154163,40535,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(154164,40535,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(154165,40535,'blocks_6_icon_row_items_2_icon','deposit.svg'),(154166,40535,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(154167,40535,'blocks_6_icon_row_items_2_label','Deposit & balance'),(154168,40535,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(154169,40535,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(154170,40535,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(154171,40535,'blocks_6_icon_row_items','3'),(154172,40535,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(154173,40535,'blocks_7_acfe_flexible_toggle',''),(154174,40535,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(154175,40535,'blocks_7_acfe_flexible_layout_title','Steps'),(154176,40535,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(154177,40535,'blocks_7_row_content_title',''),(154178,40535,'_blocks_7_row_content_title','field_64888cd1e26e0'),(154179,40535,'blocks_7_row_content_heading','Benefits of training with us'),(154180,40535,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(154181,40535,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(154182,40535,'_blocks_7_row_content_text','field_64888ce2e26e2'),(154183,40535,'blocks_7_row_content_actions',''),(154184,40535,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(154185,40535,'blocks_7_row_content',''),(154186,40535,'_blocks_7_row_content','field_64888cb0e26df'),(154187,40535,'blocks_7_steps_0_icon','progression.svg'),(154188,40535,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(154189,40535,'blocks_7_steps_0_title','Earning potential'),(154190,40535,'_blocks_7_steps_0_title','field_64888d94e26e7'),(154191,40535,'blocks_7_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(154192,40535,'_blocks_7_steps_0_text','field_64888d99e26e8'),(154193,40535,'blocks_7_steps_1_icon','support.svg'),(154194,40535,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(154195,40535,'blocks_7_steps_1_title','Lifetime Learning Promise'),(154196,40535,'_blocks_7_steps_1_title','field_64888d94e26e7'),(154197,40535,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(154198,40535,'_blocks_7_steps_1_text','field_64888d99e26e8'),(154199,40535,'blocks_7_steps_2_icon','qualification.svg'),(154200,40535,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(154201,40535,'blocks_7_steps_2_title','Evidence based hands on learning'),(154202,40535,'_blocks_7_steps_2_title','field_64888d94e26e7'),(154203,40535,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(154204,40535,'_blocks_7_steps_2_text','field_64888d99e26e8'),(154205,40535,'blocks_7_steps_3_icon','leaders.svg'),(154206,40535,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(154207,40535,'blocks_7_steps_3_title','Stand out from the crowd'),(154208,40535,'_blocks_7_steps_3_title','field_64888d94e26e7'),(154209,40535,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(154210,40535,'_blocks_7_steps_3_text','field_64888d99e26e8'),(154211,40535,'blocks_7_steps','4'),(154212,40535,'_blocks_7_steps','field_64888d44e26e5'),(154213,40536,'hide_hero','0'),(154214,40536,'_hide_hero','field_66a2380fcda39'),(154215,40536,'hero_title','How to Become a Biomechanics Coach'),(154216,40536,'_hero_title','field_617571fe285e8'),(154217,40536,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(154218,40536,'_hero_text','field_6175723c285e9'),(154219,40536,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(154220,40536,'_hero_actions_0_button','field_61757281285eb'),(154221,40536,'hero_actions','1'),(154222,40536,'_hero_actions','field_61757270285ea'),(154223,40536,'hero_style','default'),(154224,40536,'_hero_style','field_62051d9dc5324'),(154225,40536,'_thumbnail_id','39454'),(154226,40536,'__thumbnail_id','field_617570855ddaf'),(154227,40536,'hero_image_pos_x','right'),(154228,40536,'_hero_image_pos_x','field_62ec3d05390bb'),(154229,40536,'hero_image_pos_y','top'),(154230,40536,'_hero_image_pos_y','field_62ec3d05390bc'),(154231,40536,'hero_image_pos',''),(154232,40536,'_hero_image_pos','field_62ec3d05390ba'),(154233,40536,'fft_hide_from_listings','0'),(154234,40536,'_fft_hide_from_listings','field_61f1320446ab2'),(154235,40536,'fft_page_format','default'),(154236,40536,'_fft_page_format','field_61ae213f1f218'),(154237,40536,'fft_hide_nav','0'),(154238,40536,'_fft_hide_nav','field_635bd5e43527c'),(154239,40536,'fft_hide_header_call_to_action','0'),(154240,40536,'_fft_hide_header_call_to_action','field_635bd6723527d'),(154241,40536,'fft_page_sitemap','0'),(154242,40536,'_fft_page_sitemap','field_61af9b34e8181'),(154243,40536,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(154244,40536,'_blocks','field_6176696113096'),(154245,40536,'blocks_0_acfe_flexible_toggle',''),(154246,40536,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(154247,40536,'blocks_0_acfe_flexible_layout_title','Template'),(154248,40536,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(154249,40536,'blocks_0_template','39087'),(154250,40536,'_blocks_0_template','field_617bdd570fe01'),(154251,40536,'blocks_2_acfe_flexible_toggle',''),(154252,40536,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(154253,40536,'blocks_2_acfe_flexible_layout_title','Video'),(154254,40536,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(154255,40536,'blocks_2_size','large'),(154256,40536,'_blocks_2_size','field_6487038f297c1'),(154257,40536,'blocks_2_row_content_title',''),(154258,40536,'_blocks_2_row_content_title','field_64870132a865d'),(154259,40536,'blocks_2_row_content_heading',''),(154260,40536,'_blocks_2_row_content_heading','field_64870142a865e'),(154261,40536,'blocks_2_row_content_text',''),(154262,40536,'_blocks_2_row_content_text','field_64870148a865f'),(154263,40536,'blocks_2_row_content',''),(154264,40536,'_blocks_2_row_content','field_6487008ba865c'),(154265,40536,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(154266,40536,'_blocks_2_video_src','field_6193c4a98ec07'),(154267,40536,'blocks_2_video_thumbnail',''),(154268,40536,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(154269,40536,'blocks_8_acfe_flexible_toggle','1'),(154270,40536,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(154271,40536,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(154272,40536,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(154273,40536,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(154274,40536,'_blocks_8_content','field_6193c9b5eac84'),(154275,40536,'blocks_9_acfe_flexible_toggle',''),(154276,40536,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(154277,40536,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(154278,40536,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(154279,40536,'blocks_9_testimonial_slider_content_title',''),(154280,40536,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(154281,40536,'blocks_9_testimonial_slider_content_heading','Testimonials'),(154282,40536,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(154283,40536,'blocks_9_testimonial_slider_content_text',''),(154284,40536,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(154285,40536,'blocks_9_testimonial_slider_content_actions',''),(154286,40536,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(154287,40536,'blocks_9_testimonial_slider_content',''),(154288,40536,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(154289,40536,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(154290,40536,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(154291,40536,'blocks_9_testimonial_slider_ambassador_bool','0'),(154292,40536,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(154293,40536,'blocks_10_acfe_flexible_toggle',''),(154294,40536,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(154295,40536,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(154296,40536,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(154297,40536,'blocks_10_options_theme','#ffffff'),(154298,40536,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(154299,40536,'blocks_10_options_state','0'),(154300,40536,'_blocks_10_options_state','field_6239fcb7508c5'),(154301,40536,'blocks_10_options',''),(154302,40536,'_blocks_10_options','field_6177e2991ac44'),(154303,40536,'blocks_10_content_title',''),(154304,40536,'_blocks_10_content_title','field_64d237e8bb1e2'),(154305,40536,'blocks_10_content_heading','Frequently asked questions '),(154306,40536,'_blocks_10_content_heading','field_64d237e8bb1e3'),(154307,40536,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(154308,40536,'_blocks_10_content_text','field_64d237e8bb1e4'),(154309,40536,'blocks_10_content_actions',''),(154310,40536,'_blocks_10_content_actions','field_64d237e8bb1e5'),(154311,40536,'blocks_10_content_align','left'),(154312,40536,'_blocks_10_content_align','field_64d2443e6b6aa'),(154313,40536,'blocks_10_content',''),(154314,40536,'_blocks_10_content','field_64d237e8bb1e1'),(154315,40536,'blocks_10_accordion_content','faqs'),(154316,40536,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(154317,40536,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(154318,40536,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(154319,40536,'blocks_10_actions',''),(154320,40536,'_blocks_10_actions','field_61a746a817f7a'),(154321,40536,'blocks_1_acfe_flexible_toggle',''),(154322,40536,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(154323,40536,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(154324,40536,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(154325,40536,'blocks_1_options_theme','#ffffff'),(154326,40536,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(154327,40536,'blocks_1_options_reverse','0'),(154328,40536,'_blocks_1_options_reverse','field_61768049bb8ac'),(154329,40536,'blocks_1_options',''),(154330,40536,'_blocks_1_options','field_617682517c334'),(154331,40536,'blocks_1_split_5050_image','39623'),(154332,40536,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(154333,40536,'blocks_1_split_5050_video',''),(154334,40536,'_blocks_1_split_5050_video','field_6239f3160848a'),(154335,40536,'blocks_1_split_5050_content_title',''),(154336,40536,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(154337,40536,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(154338,40536,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(154339,40536,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of numerous injuries within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(154340,40536,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(154341,40536,'blocks_1_split_5050_content_actions',''),(154342,40536,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(154343,40536,'blocks_1_split_5050_content',''),(154344,40536,'_blocks_1_split_5050_content','field_61767afceb8ba'),(154345,40536,'blocks_3_acfe_flexible_toggle',''),(154346,40536,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(154347,40536,'blocks_3_acfe_flexible_layout_title','Form'),(154348,40536,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(154349,40536,'blocks_3_row_content_format','standard'),(154350,40536,'_blocks_3_row_content_format','field_6481ead962881'),(154351,40536,'blocks_3_row_content_title','Ready to get started?'),(154352,40536,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(154353,40536,'blocks_3_row_content_heading','Enquire Today!'),(154354,40536,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(154355,40536,'blocks_3_row_content_text','When you fill out the form you\'ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(154356,40536,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(154357,40536,'blocks_3_row_content_actions',''),(154358,40536,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(154359,40536,'blocks_3_row_content',''),(154360,40536,'_blocks_3_row_content','field_61a0f5f5b3db0'),(154361,40536,'blocks_3_row_form','40417'),(154362,40536,'_blocks_3_row_form','field_61a4ff2c0b08e'),(154363,40536,'blocks_3_row_form_button_label',''),(154364,40536,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(154365,40536,'blocks_4_acfe_flexible_toggle',''),(154366,40536,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(154367,40536,'blocks_4_acfe_flexible_layout_title','Tabs'),(154368,40536,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(154369,40536,'blocks_4_options_theme','#ffffff'),(154370,40536,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(154371,40536,'blocks_4_options',''),(154372,40536,'_blocks_4_options','field_6177cfcd8140f'),(154373,40536,'blocks_4_tabs_0_tab_label','What will I learn ?'),(154374,40536,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(154375,40536,'blocks_4_tabs_0_tab_content_title',''),(154376,40536,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(154377,40536,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(154378,40536,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(154379,40536,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(154380,40536,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(154381,40536,'blocks_4_tabs_0_tab_content_actions',''),(154382,40536,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(154383,40536,'blocks_4_tabs_0_tab_content',''),(154384,40536,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(154385,40536,'blocks_4_tabs_0_tab_image','39076'),(154386,40536,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(154387,40536,'blocks_4_tabs_1_tab_label','What do I need ?'),(154388,40536,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(154389,40536,'blocks_4_tabs_1_tab_content_title',''),(154390,40536,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(154391,40536,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(154392,40536,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(154393,40536,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(154394,40536,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(154395,40536,'blocks_4_tabs_1_tab_content_actions',''),(154396,40536,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(154397,40536,'blocks_4_tabs_1_tab_content',''),(154398,40536,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(154399,40536,'blocks_4_tabs_1_tab_image','39223'),(154400,40536,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(154401,40536,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(154402,40536,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(154403,40536,'blocks_4_tabs_2_tab_content_title',''),(154404,40536,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(154405,40536,'blocks_4_tabs_2_tab_content_heading','Locations'),(154406,40536,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(154407,40536,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(154408,40536,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(154409,40536,'blocks_4_tabs_2_tab_content_actions',''),(154410,40536,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(154411,40536,'blocks_4_tabs_2_tab_content',''),(154412,40536,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(154413,40536,'blocks_4_tabs_2_tab_image','39224'),(154414,40536,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(154415,40536,'blocks_4_tabs','3'),(154416,40536,'_blocks_4_tabs','field_6177cff281419'),(154417,40536,'blocks_5_acfe_flexible_toggle',''),(154418,40536,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(154419,40536,'blocks_5_acfe_flexible_layout_title','Text Block'),(154420,40536,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(154421,40536,'blocks_5_options_theme','#b61234'),(154422,40536,'_blocks_5_options_theme','field_6176830e2ad17'),(154423,40536,'blocks_5_options',''),(154424,40536,'_blocks_5_options','field_6176830e2ad16'),(154425,40536,'blocks_5_text_block_heading','Fees & Funding Options'),(154426,40536,'_blocks_5_text_block_heading','field_617669d413097'),(154427,40536,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(154428,40536,'_blocks_5_text_block_content','field_617669ec13098'),(154429,40536,'blocks_6_acfe_flexible_toggle',''),(154430,40536,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(154431,40536,'blocks_6_acfe_flexible_layout_title','Icons'),(154432,40536,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(154433,40536,'blocks_6_options_theme','#b61234'),(154434,40536,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(154435,40536,'blocks_6_options_format','row'),(154436,40536,'_blocks_6_options_format','field_64bfde9a90690'),(154437,40536,'blocks_6_options',''),(154438,40536,'_blocks_6_options','field_64bfdd9b90684'),(154439,40536,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(154440,40536,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(154441,40536,'blocks_6_icon_row_items_0_label','Pay in Full'),(154442,40536,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(154443,40536,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(154444,40536,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(154445,40536,'blocks_6_icon_row_items_1_icon','finance.svg'),(154446,40536,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(154447,40536,'blocks_6_icon_row_items_1_label','0% finance'),(154448,40536,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(154449,40536,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(154450,40536,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(154451,40536,'blocks_6_icon_row_items_2_icon','deposit.svg'),(154452,40536,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(154453,40536,'blocks_6_icon_row_items_2_label','Deposit & balance'),(154454,40536,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(154455,40536,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(154456,40536,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(154457,40536,'blocks_6_icon_row_items','3'),(154458,40536,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(154459,40536,'blocks_7_acfe_flexible_toggle',''),(154460,40536,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(154461,40536,'blocks_7_acfe_flexible_layout_title','Steps'),(154462,40536,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(154463,40536,'blocks_7_row_content_title',''),(154464,40536,'_blocks_7_row_content_title','field_64888cd1e26e0'),(154465,40536,'blocks_7_row_content_heading','Benefits of training with us'),(154466,40536,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(154467,40536,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(154468,40536,'_blocks_7_row_content_text','field_64888ce2e26e2'),(154469,40536,'blocks_7_row_content_actions',''),(154470,40536,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(154471,40536,'blocks_7_row_content',''),(154472,40536,'_blocks_7_row_content','field_64888cb0e26df'),(154473,40536,'blocks_7_steps_0_icon','progression.svg'),(154474,40536,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(154475,40536,'blocks_7_steps_0_title','Earning potential'),(154476,40536,'_blocks_7_steps_0_title','field_64888d94e26e7'),(154477,40536,'blocks_7_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(154478,40536,'_blocks_7_steps_0_text','field_64888d99e26e8'),(154479,40536,'blocks_7_steps_1_icon','support.svg'),(154480,40536,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(154481,40536,'blocks_7_steps_1_title','Lifetime Learning Promise'),(154482,40536,'_blocks_7_steps_1_title','field_64888d94e26e7'),(154483,40536,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(154484,40536,'_blocks_7_steps_1_text','field_64888d99e26e8'),(154485,40536,'blocks_7_steps_2_icon','qualification.svg'),(154486,40536,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(154487,40536,'blocks_7_steps_2_title','Evidence based hands on learning'),(154488,40536,'_blocks_7_steps_2_title','field_64888d94e26e7'),(154489,40536,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(154490,40536,'_blocks_7_steps_2_text','field_64888d99e26e8'),(154491,40536,'blocks_7_steps_3_icon','leaders.svg'),(154492,40536,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(154493,40536,'blocks_7_steps_3_title','Stand out from the crowd'),(154494,40536,'_blocks_7_steps_3_title','field_64888d94e26e7'),(154495,40536,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(154496,40536,'_blocks_7_steps_3_text','field_64888d99e26e8'),(154497,40536,'blocks_7_steps','4'),(154498,40536,'_blocks_7_steps','field_64888d44e26e5'),(154499,40537,'hide_hero','0'),(154500,40537,'_hide_hero','field_66a2380fcda39'),(154501,40537,'hero_title','How to Become a Biomechanics Coach'),(154502,40537,'_hero_title','field_617571fe285e8'),(154503,40537,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(154504,40537,'_hero_text','field_6175723c285e9'),(154505,40537,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(154506,40537,'_hero_actions_0_button','field_61757281285eb'),(154507,40537,'hero_actions','1'),(154508,40537,'_hero_actions','field_61757270285ea'),(154509,40537,'hero_style','default'),(154510,40537,'_hero_style','field_62051d9dc5324'),(154511,40537,'_thumbnail_id','39454'),(154512,40537,'__thumbnail_id','field_617570855ddaf'),(154513,40537,'hero_image_pos_x','right'),(154514,40537,'_hero_image_pos_x','field_62ec3d05390bb'),(154515,40537,'hero_image_pos_y','top'),(154516,40537,'_hero_image_pos_y','field_62ec3d05390bc'),(154517,40537,'hero_image_pos',''),(154518,40537,'_hero_image_pos','field_62ec3d05390ba'),(154519,40537,'fft_hide_from_listings','0'),(154520,40537,'_fft_hide_from_listings','field_61f1320446ab2'),(154521,40537,'fft_page_format','default'),(154522,40537,'_fft_page_format','field_61ae213f1f218'),(154523,40537,'fft_hide_nav','0'),(154524,40537,'_fft_hide_nav','field_635bd5e43527c'),(154525,40537,'fft_hide_header_call_to_action','0'),(154526,40537,'_fft_hide_header_call_to_action','field_635bd6723527d'),(154527,40537,'fft_page_sitemap','0'),(154528,40537,'_fft_page_sitemap','field_61af9b34e8181'),(154529,40537,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:4:\"form\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(154530,40537,'_blocks','field_6176696113096'),(154531,40537,'blocks_0_acfe_flexible_toggle',''),(154532,40537,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(154533,40537,'blocks_0_acfe_flexible_layout_title','Template'),(154534,40537,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(154535,40537,'blocks_0_template','39087'),(154536,40537,'_blocks_0_template','field_617bdd570fe01'),(154537,40537,'blocks_2_acfe_flexible_toggle',''),(154538,40537,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(154539,40537,'blocks_2_acfe_flexible_layout_title','Video'),(154540,40537,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(154541,40537,'blocks_2_size','large'),(154542,40537,'_blocks_2_size','field_6487038f297c1'),(154543,40537,'blocks_2_row_content_title',''),(154544,40537,'_blocks_2_row_content_title','field_64870132a865d'),(154545,40537,'blocks_2_row_content_heading',''),(154546,40537,'_blocks_2_row_content_heading','field_64870142a865e'),(154547,40537,'blocks_2_row_content_text',''),(154548,40537,'_blocks_2_row_content_text','field_64870148a865f'),(154549,40537,'blocks_2_row_content',''),(154550,40537,'_blocks_2_row_content','field_6487008ba865c'),(154551,40537,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(154552,40537,'_blocks_2_video_src','field_6193c4a98ec07'),(154553,40537,'blocks_2_video_thumbnail',''),(154554,40537,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(154555,40537,'blocks_8_acfe_flexible_toggle','1'),(154556,40537,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(154557,40537,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(154558,40537,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(154559,40537,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(154560,40537,'_blocks_8_content','field_6193c9b5eac84'),(154561,40537,'blocks_9_acfe_flexible_toggle',''),(154562,40537,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(154563,40537,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(154564,40537,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(154565,40537,'blocks_9_testimonial_slider_content_title',''),(154566,40537,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(154567,40537,'blocks_9_testimonial_slider_content_heading','Testimonials'),(154568,40537,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(154569,40537,'blocks_9_testimonial_slider_content_text',''),(154570,40537,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(154571,40537,'blocks_9_testimonial_slider_content_actions',''),(154572,40537,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(154573,40537,'blocks_9_testimonial_slider_content',''),(154574,40537,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(154575,40537,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(154576,40537,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(154577,40537,'blocks_9_testimonial_slider_ambassador_bool','0'),(154578,40537,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(154579,40537,'blocks_10_acfe_flexible_toggle',''),(154580,40537,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(154581,40537,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(154582,40537,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(154583,40537,'blocks_10_options_theme','#ffffff'),(154584,40537,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(154585,40537,'blocks_10_options_state','0'),(154586,40537,'_blocks_10_options_state','field_6239fcb7508c5'),(154587,40537,'blocks_10_options',''),(154588,40537,'_blocks_10_options','field_6177e2991ac44'),(154589,40537,'blocks_10_content_title',''),(154590,40537,'_blocks_10_content_title','field_64d237e8bb1e2'),(154591,40537,'blocks_10_content_heading','Frequently asked questions '),(154592,40537,'_blocks_10_content_heading','field_64d237e8bb1e3'),(154593,40537,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(154594,40537,'_blocks_10_content_text','field_64d237e8bb1e4'),(154595,40537,'blocks_10_content_actions',''),(154596,40537,'_blocks_10_content_actions','field_64d237e8bb1e5'),(154597,40537,'blocks_10_content_align','left'),(154598,40537,'_blocks_10_content_align','field_64d2443e6b6aa'),(154599,40537,'blocks_10_content',''),(154600,40537,'_blocks_10_content','field_64d237e8bb1e1'),(154601,40537,'blocks_10_accordion_content','faqs'),(154602,40537,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(154603,40537,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(154604,40537,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(154605,40537,'blocks_10_actions',''),(154606,40537,'_blocks_10_actions','field_61a746a817f7a'),(154607,40537,'blocks_1_acfe_flexible_toggle',''),(154608,40537,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(154609,40537,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(154610,40537,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(154611,40537,'blocks_1_options_theme','#ffffff'),(154612,40537,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(154613,40537,'blocks_1_options_reverse','0'),(154614,40537,'_blocks_1_options_reverse','field_61768049bb8ac'),(154615,40537,'blocks_1_options',''),(154616,40537,'_blocks_1_options','field_617682517c334'),(154617,40537,'blocks_1_split_5050_image','39623'),(154618,40537,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(154619,40537,'blocks_1_split_5050_video',''),(154620,40537,'_blocks_1_split_5050_video','field_6239f3160848a'),(154621,40537,'blocks_1_split_5050_content_title',''),(154622,40537,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(154623,40537,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(154624,40537,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(154625,40537,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of numerous injuries within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(154626,40537,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(154627,40537,'blocks_1_split_5050_content_actions',''),(154628,40537,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(154629,40537,'blocks_1_split_5050_content',''),(154630,40537,'_blocks_1_split_5050_content','field_61767afceb8ba'),(154631,40537,'blocks_3_acfe_flexible_toggle',''),(154632,40537,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(154633,40537,'blocks_3_acfe_flexible_layout_title','Form'),(154634,40537,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(154635,40537,'blocks_3_row_content_format','standard'),(154636,40537,'_blocks_3_row_content_format','field_6481ead962881'),(154637,40537,'blocks_3_row_content_title','Ready to get started?'),(154638,40537,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(154639,40537,'blocks_3_row_content_heading','Enquire Today!'),(154640,40537,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(154641,40537,'blocks_3_row_content_text','When you fill out the form you\'ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(154642,40537,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(154643,40537,'blocks_3_row_content_actions',''),(154644,40537,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(154645,40537,'blocks_3_row_content',''),(154646,40537,'_blocks_3_row_content','field_61a0f5f5b3db0'),(154647,40537,'blocks_3_row_form','40417'),(154648,40537,'_blocks_3_row_form','field_61a4ff2c0b08e'),(154649,40537,'blocks_3_row_form_button_label',''),(154650,40537,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(154651,40537,'blocks_4_acfe_flexible_toggle',''),(154652,40537,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(154653,40537,'blocks_4_acfe_flexible_layout_title','Tabs'),(154654,40537,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(154655,40537,'blocks_4_options_theme','#ffffff'),(154656,40537,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(154657,40537,'blocks_4_options',''),(154658,40537,'_blocks_4_options','field_6177cfcd8140f'),(154659,40537,'blocks_4_tabs_0_tab_label','What will I learn ?'),(154660,40537,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(154661,40537,'blocks_4_tabs_0_tab_content_title',''),(154662,40537,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(154663,40537,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(154664,40537,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(154665,40537,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(154666,40537,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(154667,40537,'blocks_4_tabs_0_tab_content_actions',''),(154668,40537,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(154669,40537,'blocks_4_tabs_0_tab_content',''),(154670,40537,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(154671,40537,'blocks_4_tabs_0_tab_image','39076'),(154672,40537,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(154673,40537,'blocks_4_tabs_1_tab_label','What do I need ?'),(154674,40537,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(154675,40537,'blocks_4_tabs_1_tab_content_title',''),(154676,40537,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(154677,40537,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(154678,40537,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(154679,40537,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(154680,40537,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(154681,40537,'blocks_4_tabs_1_tab_content_actions',''),(154682,40537,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(154683,40537,'blocks_4_tabs_1_tab_content',''),(154684,40537,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(154685,40537,'blocks_4_tabs_1_tab_image','39223'),(154686,40537,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(154687,40537,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(154688,40537,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(154689,40537,'blocks_4_tabs_2_tab_content_title',''),(154690,40537,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(154691,40537,'blocks_4_tabs_2_tab_content_heading','Locations'),(154692,40537,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(154693,40537,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(154694,40537,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(154695,40537,'blocks_4_tabs_2_tab_content_actions',''),(154696,40537,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(154697,40537,'blocks_4_tabs_2_tab_content',''),(154698,40537,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(154699,40537,'blocks_4_tabs_2_tab_image','39224'),(154700,40537,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(154701,40537,'blocks_4_tabs','3'),(154702,40537,'_blocks_4_tabs','field_6177cff281419'),(154703,40537,'blocks_5_acfe_flexible_toggle',''),(154704,40537,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(154705,40537,'blocks_5_acfe_flexible_layout_title','Text Block'),(154706,40537,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(154707,40537,'blocks_5_options_theme','#b61234'),(154708,40537,'_blocks_5_options_theme','field_6176830e2ad17'),(154709,40537,'blocks_5_options',''),(154710,40537,'_blocks_5_options','field_6176830e2ad16'),(154711,40537,'blocks_5_text_block_heading','Fees & Funding Options'),(154712,40537,'_blocks_5_text_block_heading','field_617669d413097'),(154713,40537,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(154714,40537,'_blocks_5_text_block_content','field_617669ec13098'),(154715,40537,'blocks_6_acfe_flexible_toggle',''),(154716,40537,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(154717,40537,'blocks_6_acfe_flexible_layout_title','Icons'),(154718,40537,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(154719,40537,'blocks_6_options_theme','#b61234'),(154720,40537,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(154721,40537,'blocks_6_options_format','row'),(154722,40537,'_blocks_6_options_format','field_64bfde9a90690'),(154723,40537,'blocks_6_options',''),(154724,40537,'_blocks_6_options','field_64bfdd9b90684'),(154725,40537,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(154726,40537,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(154727,40537,'blocks_6_icon_row_items_0_label','Pay in Full'),(154728,40537,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(154729,40537,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(154730,40537,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(154731,40537,'blocks_6_icon_row_items_1_icon','finance.svg'),(154732,40537,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(154733,40537,'blocks_6_icon_row_items_1_label','0% finance'),(154734,40537,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(154735,40537,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(154736,40537,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(154737,40537,'blocks_6_icon_row_items_2_icon','deposit.svg'),(154738,40537,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(154739,40537,'blocks_6_icon_row_items_2_label','Deposit & balance'),(154740,40537,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(154741,40537,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(154742,40537,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(154743,40537,'blocks_6_icon_row_items','3'),(154744,40537,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(154745,40537,'blocks_7_acfe_flexible_toggle',''),(154746,40537,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(154747,40537,'blocks_7_acfe_flexible_layout_title','Steps'),(154748,40537,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(154749,40537,'blocks_7_row_content_title',''),(154750,40537,'_blocks_7_row_content_title','field_64888cd1e26e0'),(154751,40537,'blocks_7_row_content_heading','Benefits of training with us'),(154752,40537,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(154753,40537,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(154754,40537,'_blocks_7_row_content_text','field_64888ce2e26e2'),(154755,40537,'blocks_7_row_content_actions',''),(154756,40537,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(154757,40537,'blocks_7_row_content',''),(154758,40537,'_blocks_7_row_content','field_64888cb0e26df'),(154759,40537,'blocks_7_steps_0_icon','progression.svg'),(154760,40537,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(154761,40537,'blocks_7_steps_0_title','Earning potential'),(154762,40537,'_blocks_7_steps_0_title','field_64888d94e26e7'),(154763,40537,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(154764,40537,'_blocks_7_steps_0_text','field_64888d99e26e8'),(154765,40537,'blocks_7_steps_1_icon','support.svg'),(154766,40537,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(154767,40537,'blocks_7_steps_1_title','Lifetime Learning Promise'),(154768,40537,'_blocks_7_steps_1_title','field_64888d94e26e7'),(154769,40537,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(154770,40537,'_blocks_7_steps_1_text','field_64888d99e26e8'),(154771,40537,'blocks_7_steps_2_icon','qualification.svg'),(154772,40537,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(154773,40537,'blocks_7_steps_2_title','Evidence based hands on learning'),(154774,40537,'_blocks_7_steps_2_title','field_64888d94e26e7'),(154775,40537,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(154776,40537,'_blocks_7_steps_2_text','field_64888d99e26e8'),(154777,40537,'blocks_7_steps_3_icon','leaders.svg'),(154778,40537,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(154779,40537,'blocks_7_steps_3_title','Stand out from the crowd'),(154780,40537,'_blocks_7_steps_3_title','field_64888d94e26e7'),(154781,40537,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(154782,40537,'_blocks_7_steps_3_text','field_64888d99e26e8'),(154783,40537,'blocks_7_steps','4'),(154784,40537,'_blocks_7_steps','field_64888d44e26e5'),(154785,39284,'_thumbnail_id','40503'),(154786,40538,'hide_hero','0'),(154787,40538,'_hide_hero','field_66a2380fcda39'),(154788,40538,'hero_title','Our Partners'),(154789,40538,'_hero_title','field_617571fe285e8'),(154790,40538,'hero_text','Discover our partners'),(154791,40538,'_hero_text','field_6175723c285e9'),(154792,40538,'hero_actions','1'),(154793,40538,'_hero_actions','field_61757270285ea'),(154794,40538,'hero_style','default'),(154795,40538,'_hero_style','field_62051d9dc5324'),(154796,40538,'hero_image_pos_x','right'),(154797,40538,'_hero_image_pos_x','field_62ec3d05390bb'),(154798,40538,'hero_image_pos_y','top'),(154799,40538,'_hero_image_pos_y','field_62ec3d05390bc'),(154800,40538,'hero_image_pos',''),(154801,40538,'_hero_image_pos','field_62ec3d05390ba'),(154802,40538,'fft_hide_from_listings','0'),(154803,40538,'_fft_hide_from_listings','field_61f1320446ab2'),(154804,40538,'fft_page_format','default'),(154805,40538,'_fft_page_format','field_61ae213f1f218'),(154806,40538,'fft_hide_nav','0'),(154807,40538,'_fft_hide_nav','field_635bd5e43527c'),(154808,40538,'fft_hide_header_call_to_action','0'),(154809,40538,'_fft_hide_header_call_to_action','field_635bd6723527d'),(154810,40538,'fft_page_sitemap','0'),(154811,40538,'_fft_page_sitemap','field_61af9b34e8181'),(154812,40538,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:16:\"standard_content\";i:3;s:18:\"testimonial_slider\";}'),(154813,40538,'_blocks','field_6176696113096'),(154814,40538,'blocks_0_acfe_flexible_toggle',''),(154815,40538,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(154816,40538,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(154817,40538,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(154818,40538,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(154819,40538,'_blocks_0_content','field_6193c9b5eac84'),(154820,40538,'blocks_1_acfe_flexible_toggle',''),(154821,40538,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(154822,40538,'blocks_1_acfe_flexible_layout_title','Logos'),(154823,40538,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(154824,40538,'blocks_1_options_theme','#ffffff'),(154825,40538,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(154826,40538,'blocks_1_options_format','carousel'),(154827,40538,'_blocks_1_options_format','field_61782964ee971'),(154828,40538,'blocks_1_options',''),(154829,40538,'_blocks_1_options','field_61782954ee965'),(154830,40538,'blocks_1_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(154831,40538,'_blocks_1_logos','field_61782954ee96d'),(154832,40538,'blocks_1_title',''),(154833,40538,'_blocks_1_title','field_668fbfdc2daa1'),(154834,40538,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(154835,40538,'_hero_actions_0_button','field_61757281285eb'),(154836,40538,'blocks_2_acfe_flexible_toggle',''),(154837,40538,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(154838,40538,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(154839,40538,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(154840,40538,'blocks_2_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(154841,40538,'_blocks_2_content','field_6193c9b5eac84'),(154842,40538,'blocks_3_acfe_flexible_toggle',''),(154843,40538,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(154844,40538,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(154845,40538,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(154846,40538,'blocks_3_testimonial_slider_content_title',''),(154847,40538,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(154848,40538,'blocks_3_testimonial_slider_content_heading','Testimonials'),(154849,40538,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(154850,40538,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(154851,40538,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(154852,40538,'blocks_3_testimonial_slider_content_actions',''),(154853,40538,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(154854,40538,'blocks_3_testimonial_slider_content',''),(154855,40538,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(154856,40538,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(154857,40538,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(154858,40538,'blocks_3_testimonial_slider_ambassador_bool','0'),(154859,40538,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(154860,40538,'_thumbnail_id','40503'),(154861,40538,'__thumbnail_id','field_617570855ddaf'),(154862,40539,'hide_hero','0'),(154863,40539,'_hide_hero','field_66a2380fcda39'),(154864,40539,'hero_title','Our Partners'),(154865,40539,'_hero_title','field_617571fe285e8'),(154866,40539,'hero_text','Discover our partners'),(154867,40539,'_hero_text','field_6175723c285e9'),(154868,40539,'hero_actions','1'),(154869,40539,'_hero_actions','field_61757270285ea'),(154870,40539,'hero_style','default'),(154871,40539,'_hero_style','field_62051d9dc5324'),(154872,40539,'hero_image_pos_x','right'),(154873,40539,'_hero_image_pos_x','field_62ec3d05390bb'),(154874,40539,'hero_image_pos_y','top'),(154875,40539,'_hero_image_pos_y','field_62ec3d05390bc'),(154876,40539,'hero_image_pos',''),(154877,40539,'_hero_image_pos','field_62ec3d05390ba'),(154878,40539,'fft_hide_from_listings','0'),(154879,40539,'_fft_hide_from_listings','field_61f1320446ab2'),(154880,40539,'fft_page_format','default'),(154881,40539,'_fft_page_format','field_61ae213f1f218'),(154882,40539,'fft_hide_nav','0'),(154883,40539,'_fft_hide_nav','field_635bd5e43527c'),(154884,40539,'fft_hide_header_call_to_action','0'),(154885,40539,'_fft_hide_header_call_to_action','field_635bd6723527d'),(154886,40539,'fft_page_sitemap','0'),(154887,40539,'_fft_page_sitemap','field_61af9b34e8181'),(154888,40539,'blocks','a:4:{i:0;s:16:\"standard_content\";i:1;s:5:\"logos\";i:2;s:16:\"standard_content\";i:3;s:18:\"testimonial_slider\";}'),(154889,40539,'_blocks','field_6176696113096'),(154890,40539,'blocks_0_acfe_flexible_toggle',''),(154891,40539,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(154892,40539,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(154893,40539,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(154894,40539,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(154895,40539,'_blocks_0_content','field_6193c9b5eac84'),(154896,40539,'blocks_1_acfe_flexible_toggle',''),(154897,40539,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(154898,40539,'blocks_1_acfe_flexible_layout_title','Logos'),(154899,40539,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(154900,40539,'blocks_1_options_theme','#ffffff'),(154901,40539,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(154902,40539,'blocks_1_options_format','grid'),(154903,40539,'_blocks_1_options_format','field_61782964ee971'),(154904,40539,'blocks_1_options',''),(154905,40539,'_blocks_1_options','field_61782954ee965'),(154906,40539,'blocks_1_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(154907,40539,'_blocks_1_logos','field_61782954ee96d'),(154908,40539,'blocks_1_title',''),(154909,40539,'_blocks_1_title','field_668fbfdc2daa1'),(154910,40539,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(154911,40539,'_hero_actions_0_button','field_61757281285eb'),(154912,40539,'blocks_2_acfe_flexible_toggle',''),(154913,40539,'_blocks_2_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(154914,40539,'blocks_2_acfe_flexible_layout_title','Standard/Editorial Content'),(154915,40539,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(154916,40539,'blocks_2_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(154917,40539,'_blocks_2_content','field_6193c9b5eac84'),(154918,40539,'blocks_3_acfe_flexible_toggle',''),(154919,40539,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(154920,40539,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(154921,40539,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(154922,40539,'blocks_3_testimonial_slider_content_title',''),(154923,40539,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(154924,40539,'blocks_3_testimonial_slider_content_heading','Testimonials'),(154925,40539,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(154926,40539,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(154927,40539,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(154928,40539,'blocks_3_testimonial_slider_content_actions',''),(154929,40539,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(154930,40539,'blocks_3_testimonial_slider_content',''),(154931,40539,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(154932,40539,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(154933,40539,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(154934,40539,'blocks_3_testimonial_slider_ambassador_bool','0'),(154935,40539,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(154936,40539,'_thumbnail_id','40503'),(154937,40539,'__thumbnail_id','field_617570855ddaf'),(154988,40540,'hide_hero','0'),(154989,40540,'_hide_hero','field_66a2380fcda39'),(154990,40540,'hero_title','Our Partners'),(154991,40540,'_hero_title','field_617571fe285e8'),(154992,40540,'hero_text','Discover our partners'),(154993,40540,'_hero_text','field_6175723c285e9'),(154994,40540,'hero_actions','1'),(154995,40540,'_hero_actions','field_61757270285ea'),(154996,40540,'hero_style','default'),(154997,40540,'_hero_style','field_62051d9dc5324'),(154998,40540,'hero_image_pos_x','right'),(154999,40540,'_hero_image_pos_x','field_62ec3d05390bb'),(155000,40540,'hero_image_pos_y','top'),(155001,40540,'_hero_image_pos_y','field_62ec3d05390bc'),(155002,40540,'hero_image_pos',''),(155003,40540,'_hero_image_pos','field_62ec3d05390ba'),(155004,40540,'fft_hide_from_listings','0'),(155005,40540,'_fft_hide_from_listings','field_61f1320446ab2'),(155006,40540,'fft_page_format','default'),(155007,40540,'_fft_page_format','field_61ae213f1f218'),(155008,40540,'fft_hide_nav','0'),(155009,40540,'_fft_hide_nav','field_635bd5e43527c'),(155010,40540,'fft_hide_header_call_to_action','0'),(155011,40540,'_fft_hide_header_call_to_action','field_635bd6723527d'),(155012,40540,'fft_page_sitemap','0'),(155013,40540,'_fft_page_sitemap','field_61af9b34e8181'),(155014,40540,'blocks','a:5:{i:0;s:16:\"standard_content\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:16:\"standard_content\";i:4;s:18:\"testimonial_slider\";}'),(155015,40540,'_blocks','field_6176696113096'),(155016,40540,'blocks_0_acfe_flexible_toggle',''),(155017,40540,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155018,40540,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(155019,40540,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155020,40540,'blocks_0_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(155021,40540,'_blocks_0_content','field_6193c9b5eac84'),(155022,40540,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(155023,40540,'_hero_actions_0_button','field_61757281285eb'),(155024,40540,'_thumbnail_id','40503'),(155025,40540,'__thumbnail_id','field_617570855ddaf'),(155026,40540,'blocks_1_acfe_flexible_toggle',''),(155027,40540,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(155028,40540,'blocks_1_acfe_flexible_layout_title','Text Block'),(155029,40540,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(155030,40540,'blocks_1_options_theme','#b61234'),(155031,40540,'_blocks_1_options_theme','field_6176830e2ad17'),(155032,40540,'blocks_1_options',''),(155033,40540,'_blocks_1_options','field_6176830e2ad16'),(155034,40540,'blocks_1_text_block_heading','Proudly introducing our partners'),(155035,40540,'_blocks_1_text_block_heading','field_617669d413097'),(155036,40540,'blocks_1_text_block_content',''),(155037,40540,'_blocks_1_text_block_content','field_617669ec13098'),(155038,40540,'blocks_2_acfe_flexible_toggle',''),(155039,40540,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(155040,40540,'blocks_2_acfe_flexible_layout_title','Logos'),(155041,40540,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(155042,40540,'blocks_2_options_theme','#ffffff'),(155043,40540,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(155044,40540,'blocks_2_options_format','grid'),(155045,40540,'_blocks_2_options_format','field_61782964ee971'),(155046,40540,'blocks_2_options',''),(155047,40540,'_blocks_2_options','field_61782954ee965'),(155048,40540,'blocks_2_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(155049,40540,'_blocks_2_logos','field_61782954ee96d'),(155050,40540,'blocks_2_title',''),(155051,40540,'_blocks_2_title','field_668fbfdc2daa1'),(155052,40540,'blocks_3_acfe_flexible_toggle',''),(155053,40540,'_blocks_3_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155054,40540,'blocks_3_acfe_flexible_layout_title','Standard/Editorial Content'),(155055,40540,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155056,40540,'blocks_3_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(155057,40540,'_blocks_3_content','field_6193c9b5eac84'),(155058,40540,'blocks_4_acfe_flexible_toggle',''),(155059,40540,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(155060,40540,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(155061,40540,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(155062,40540,'blocks_4_testimonial_slider_content_title',''),(155063,40540,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(155064,40540,'blocks_4_testimonial_slider_content_heading','Testimonials'),(155065,40540,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(155066,40540,'blocks_4_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(155067,40540,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(155068,40540,'blocks_4_testimonial_slider_content_actions',''),(155069,40540,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(155070,40540,'blocks_4_testimonial_slider_content',''),(155071,40540,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(155072,40540,'blocks_4_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(155073,40540,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(155074,40540,'blocks_4_testimonial_slider_ambassador_bool','0'),(155075,40540,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(155076,39284,'blocks_0_acfe_flexible_toggle',''),(155077,39284,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(155078,39284,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(155079,39284,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(155080,39284,'blocks_0_options_theme','#ffffff'),(155081,39284,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(155082,39284,'blocks_0_options_reverse','0'),(155083,39284,'_blocks_0_options_reverse','field_61768049bb8ac'),(155084,39284,'blocks_0_options',''),(155085,39284,'_blocks_0_options','field_617682517c334'),(155086,39284,'blocks_0_split_5050_image','36390'),(155087,39284,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(155088,39284,'blocks_0_split_5050_video',''),(155089,39284,'_blocks_0_split_5050_video','field_6239f3160848a'),(155090,39284,'blocks_0_split_5050_content_title','Working in Partnership'),(155091,39284,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(155092,39284,'blocks_0_split_5050_content_heading',''),(155093,39284,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(155094,39284,'blocks_0_split_5050_content_text','At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our learners, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(155095,39284,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(155096,39284,'blocks_0_split_5050_content_actions','1'),(155097,39284,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(155098,39284,'blocks_0_split_5050_content',''),(155099,39284,'_blocks_0_split_5050_content','field_61767afceb8ba'),(155100,39284,'blocks_1_acfe_flexible_toggle','1'),(155101,39284,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155102,39284,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(155103,39284,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155104,39284,'blocks_1_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(155105,39284,'_blocks_1_content','field_6193c9b5eac84'),(155106,39284,'blocks_2_acfe_flexible_toggle',''),(155107,39284,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(155108,39284,'blocks_2_acfe_flexible_layout_title','Text Block'),(155109,39284,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(155110,39284,'blocks_2_options_theme','#b61234'),(155111,39284,'_blocks_2_options_theme','field_6176830e2ad17'),(155112,39284,'blocks_2_options',''),(155113,39284,'_blocks_2_options','field_6176830e2ad16'),(155114,39284,'blocks_2_text_block_heading','Proudly introducing our partners'),(155115,39284,'_blocks_2_text_block_heading','field_617669d413097'),(155116,39284,'blocks_2_text_block_content',''),(155117,39284,'_blocks_2_text_block_content','field_617669ec13098'),(155118,39284,'blocks_3_acfe_flexible_toggle',''),(155119,39284,'_blocks_3_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(155120,39284,'blocks_3_acfe_flexible_layout_title','Logos'),(155121,39284,'_blocks_3_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(155122,39284,'blocks_3_options_theme','#ffffff'),(155123,39284,'_blocks_3_options_theme','field_61782954ee966_field_6176830e2ad17'),(155124,39284,'blocks_3_options_format','grid'),(155125,39284,'_blocks_3_options_format','field_61782964ee971'),(155126,39284,'blocks_3_options',''),(155127,39284,'_blocks_3_options','field_61782954ee965'),(155128,39284,'blocks_3_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(155129,39284,'_blocks_3_logos','field_61782954ee96d'),(155130,39284,'blocks_3_title',''),(155131,39284,'_blocks_3_title','field_668fbfdc2daa1'),(155156,40541,'hide_hero','0'),(155157,40541,'_hide_hero','field_66a2380fcda39'),(155158,40541,'hero_title','Our Partners'),(155159,40541,'_hero_title','field_617571fe285e8'),(155160,40541,'hero_text','Discover our partners'),(155161,40541,'_hero_text','field_6175723c285e9'),(155162,40541,'hero_actions','1'),(155163,40541,'_hero_actions','field_61757270285ea'),(155164,40541,'hero_style','default'),(155165,40541,'_hero_style','field_62051d9dc5324'),(155166,40541,'hero_image_pos_x','right'),(155167,40541,'_hero_image_pos_x','field_62ec3d05390bb'),(155168,40541,'hero_image_pos_y','top'),(155169,40541,'_hero_image_pos_y','field_62ec3d05390bc'),(155170,40541,'hero_image_pos',''),(155171,40541,'_hero_image_pos','field_62ec3d05390ba'),(155172,40541,'fft_hide_from_listings','0'),(155173,40541,'_fft_hide_from_listings','field_61f1320446ab2'),(155174,40541,'fft_page_format','default'),(155175,40541,'_fft_page_format','field_61ae213f1f218'),(155176,40541,'fft_hide_nav','0'),(155177,40541,'_fft_hide_nav','field_635bd5e43527c'),(155178,40541,'fft_hide_header_call_to_action','0'),(155179,40541,'_fft_hide_header_call_to_action','field_635bd6723527d'),(155180,40541,'fft_page_sitemap','0'),(155181,40541,'_fft_page_sitemap','field_61af9b34e8181'),(155182,40541,'blocks','a:6:{i:0;s:10:\"split_5050\";i:1;s:16:\"standard_content\";i:2;s:10:\"text_block\";i:3;s:5:\"logos\";i:4;s:16:\"standard_content\";i:5;s:18:\"testimonial_slider\";}'),(155183,40541,'_blocks','field_6176696113096'),(155184,40541,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(155185,40541,'_hero_actions_0_button','field_61757281285eb'),(155186,40541,'_thumbnail_id','40503'),(155187,40541,'__thumbnail_id','field_617570855ddaf'),(155188,40541,'blocks_0_acfe_flexible_toggle',''),(155189,40541,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(155190,40541,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(155191,40541,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(155192,40541,'blocks_0_options_theme','#ffffff'),(155193,40541,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(155194,40541,'blocks_0_options_reverse','0'),(155195,40541,'_blocks_0_options_reverse','field_61768049bb8ac'),(155196,40541,'blocks_0_options',''),(155197,40541,'_blocks_0_options','field_617682517c334'),(155198,40541,'blocks_0_split_5050_image','36390'),(155199,40541,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(155200,40541,'blocks_0_split_5050_video',''),(155201,40541,'_blocks_0_split_5050_video','field_6239f3160848a'),(155202,40541,'blocks_0_split_5050_content_title',''),(155203,40541,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(155204,40541,'blocks_0_split_5050_content_heading',''),(155205,40541,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(155206,40541,'blocks_0_split_5050_content_text','At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(155207,40541,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(155208,40541,'blocks_0_split_5050_content_actions',''),(155209,40541,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(155210,40541,'blocks_0_split_5050_content',''),(155211,40541,'_blocks_0_split_5050_content','field_61767afceb8ba'),(155212,40541,'blocks_1_acfe_flexible_toggle',''),(155213,40541,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155214,40541,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(155215,40541,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155216,40541,'blocks_1_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(155217,40541,'_blocks_1_content','field_6193c9b5eac84'),(155218,40541,'blocks_2_acfe_flexible_toggle',''),(155219,40541,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(155220,40541,'blocks_2_acfe_flexible_layout_title','Text Block'),(155221,40541,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(155222,40541,'blocks_2_options_theme','#b61234'),(155223,40541,'_blocks_2_options_theme','field_6176830e2ad17'),(155224,40541,'blocks_2_options',''),(155225,40541,'_blocks_2_options','field_6176830e2ad16'),(155226,40541,'blocks_2_text_block_heading','Proudly introducing our partners'),(155227,40541,'_blocks_2_text_block_heading','field_617669d413097'),(155228,40541,'blocks_2_text_block_content',''),(155229,40541,'_blocks_2_text_block_content','field_617669ec13098'),(155230,40541,'blocks_3_acfe_flexible_toggle',''),(155231,40541,'_blocks_3_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(155232,40541,'blocks_3_acfe_flexible_layout_title','Logos'),(155233,40541,'_blocks_3_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(155234,40541,'blocks_3_options_theme','#ffffff'),(155235,40541,'_blocks_3_options_theme','field_61782954ee966_field_6176830e2ad17'),(155236,40541,'blocks_3_options_format','grid'),(155237,40541,'_blocks_3_options_format','field_61782964ee971'),(155238,40541,'blocks_3_options',''),(155239,40541,'_blocks_3_options','field_61782954ee965'),(155240,40541,'blocks_3_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(155241,40541,'_blocks_3_logos','field_61782954ee96d'),(155242,40541,'blocks_3_title',''),(155243,40541,'_blocks_3_title','field_668fbfdc2daa1'),(155244,40541,'blocks_4_acfe_flexible_toggle',''),(155245,40541,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155246,40541,'blocks_4_acfe_flexible_layout_title','Standard/Editorial Content'),(155247,40541,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155248,40541,'blocks_4_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(155249,40541,'_blocks_4_content','field_6193c9b5eac84'),(155250,40541,'blocks_5_acfe_flexible_toggle',''),(155251,40541,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(155252,40541,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(155253,40541,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(155254,40541,'blocks_5_testimonial_slider_content_title',''),(155255,40541,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(155256,40541,'blocks_5_testimonial_slider_content_heading','Testimonials'),(155257,40541,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(155258,40541,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(155259,40541,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(155260,40541,'blocks_5_testimonial_slider_content_actions',''),(155261,40541,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(155262,40541,'blocks_5_testimonial_slider_content',''),(155263,40541,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(155264,40541,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(155265,40541,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(155266,40541,'blocks_5_testimonial_slider_ambassador_bool','0'),(155267,40541,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(155268,40542,'hide_hero','0'),(155269,40542,'_hide_hero','field_66a2380fcda39'),(155270,40542,'hero_title','Our Partners'),(155271,40542,'_hero_title','field_617571fe285e8'),(155272,40542,'hero_text','Discover our partners'),(155273,40542,'_hero_text','field_6175723c285e9'),(155274,40542,'hero_actions','1'),(155275,40542,'_hero_actions','field_61757270285ea'),(155276,40542,'hero_style','default'),(155277,40542,'_hero_style','field_62051d9dc5324'),(155278,40542,'hero_image_pos_x','right'),(155279,40542,'_hero_image_pos_x','field_62ec3d05390bb'),(155280,40542,'hero_image_pos_y','top'),(155281,40542,'_hero_image_pos_y','field_62ec3d05390bc'),(155282,40542,'hero_image_pos',''),(155283,40542,'_hero_image_pos','field_62ec3d05390ba'),(155284,40542,'fft_hide_from_listings','0'),(155285,40542,'_fft_hide_from_listings','field_61f1320446ab2'),(155286,40542,'fft_page_format','default'),(155287,40542,'_fft_page_format','field_61ae213f1f218'),(155288,40542,'fft_hide_nav','0'),(155289,40542,'_fft_hide_nav','field_635bd5e43527c'),(155290,40542,'fft_hide_header_call_to_action','0'),(155291,40542,'_fft_hide_header_call_to_action','field_635bd6723527d'),(155292,40542,'fft_page_sitemap','0'),(155293,40542,'_fft_page_sitemap','field_61af9b34e8181'),(155294,40542,'blocks','a:6:{i:0;s:10:\"split_5050\";i:1;s:16:\"standard_content\";i:2;s:10:\"text_block\";i:3;s:5:\"logos\";i:4;s:16:\"standard_content\";i:5;s:18:\"testimonial_slider\";}'),(155295,40542,'_blocks','field_6176696113096'),(155296,40542,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(155297,40542,'_hero_actions_0_button','field_61757281285eb'),(155298,40542,'_thumbnail_id','40503'),(155299,40542,'__thumbnail_id','field_617570855ddaf'),(155300,40542,'blocks_0_acfe_flexible_toggle',''),(155301,40542,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(155302,40542,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(155303,40542,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(155304,40542,'blocks_0_options_theme','#ffffff'),(155305,40542,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(155306,40542,'blocks_0_options_reverse','0'),(155307,40542,'_blocks_0_options_reverse','field_61768049bb8ac'),(155308,40542,'blocks_0_options',''),(155309,40542,'_blocks_0_options','field_617682517c334'),(155310,40542,'blocks_0_split_5050_image','36390'),(155311,40542,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(155312,40542,'blocks_0_split_5050_video',''),(155313,40542,'_blocks_0_split_5050_video','field_6239f3160848a'),(155314,40542,'blocks_0_split_5050_content_title','Working in Partnership'),(155315,40542,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(155316,40542,'blocks_0_split_5050_content_heading',''),(155317,40542,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(155318,40542,'blocks_0_split_5050_content_text','At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(155319,40542,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(155320,40542,'blocks_0_split_5050_content_actions',''),(155321,40542,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(155322,40542,'blocks_0_split_5050_content',''),(155323,40542,'_blocks_0_split_5050_content','field_61767afceb8ba'),(155324,40542,'blocks_1_acfe_flexible_toggle','1'),(155325,40542,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155326,40542,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(155327,40542,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155328,40542,'blocks_1_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(155329,40542,'_blocks_1_content','field_6193c9b5eac84'),(155330,40542,'blocks_2_acfe_flexible_toggle',''),(155331,40542,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(155332,40542,'blocks_2_acfe_flexible_layout_title','Text Block'),(155333,40542,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(155334,40542,'blocks_2_options_theme','#b61234'),(155335,40542,'_blocks_2_options_theme','field_6176830e2ad17'),(155336,40542,'blocks_2_options',''),(155337,40542,'_blocks_2_options','field_6176830e2ad16'),(155338,40542,'blocks_2_text_block_heading','Proudly introducing our partners'),(155339,40542,'_blocks_2_text_block_heading','field_617669d413097'),(155340,40542,'blocks_2_text_block_content',''),(155341,40542,'_blocks_2_text_block_content','field_617669ec13098'),(155342,40542,'blocks_3_acfe_flexible_toggle',''),(155343,40542,'_blocks_3_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(155344,40542,'blocks_3_acfe_flexible_layout_title','Logos'),(155345,40542,'_blocks_3_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(155346,40542,'blocks_3_options_theme','#ffffff'),(155347,40542,'_blocks_3_options_theme','field_61782954ee966_field_6176830e2ad17'),(155348,40542,'blocks_3_options_format','grid'),(155349,40542,'_blocks_3_options_format','field_61782964ee971'),(155350,40542,'blocks_3_options',''),(155351,40542,'_blocks_3_options','field_61782954ee965'),(155352,40542,'blocks_3_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(155353,40542,'_blocks_3_logos','field_61782954ee96d'),(155354,40542,'blocks_3_title',''),(155355,40542,'_blocks_3_title','field_668fbfdc2daa1'),(155356,40542,'blocks_4_acfe_flexible_toggle',''),(155357,40542,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155358,40542,'blocks_4_acfe_flexible_layout_title','Standard/Editorial Content'),(155359,40542,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155360,40542,'blocks_4_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(155361,40542,'_blocks_4_content','field_6193c9b5eac84'),(155362,40542,'blocks_5_acfe_flexible_toggle',''),(155363,40542,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(155364,40542,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(155365,40542,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(155366,40542,'blocks_5_testimonial_slider_content_title',''),(155367,40542,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(155368,40542,'blocks_5_testimonial_slider_content_heading','Testimonials'),(155369,40542,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(155370,40542,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(155371,40542,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(155372,40542,'blocks_5_testimonial_slider_content_actions',''),(155373,40542,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(155374,40542,'blocks_5_testimonial_slider_content',''),(155375,40542,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(155376,40542,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(155377,40542,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(155378,40542,'blocks_5_testimonial_slider_ambassador_bool','0'),(155379,40542,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(155380,39284,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in touch\";s:3:\"url\";s:12:\"#row-39284-5\";s:6:\"target\";s:0:\"\";}'),(155381,39284,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(155382,40543,'hide_hero','0'),(155383,40543,'_hide_hero','field_66a2380fcda39'),(155384,40543,'hero_title','Our Partners'),(155385,40543,'_hero_title','field_617571fe285e8'),(155386,40543,'hero_text','Discover our partners'),(155387,40543,'_hero_text','field_6175723c285e9'),(155388,40543,'hero_actions','1'),(155389,40543,'_hero_actions','field_61757270285ea'),(155390,40543,'hero_style','default'),(155391,40543,'_hero_style','field_62051d9dc5324'),(155392,40543,'hero_image_pos_x','right'),(155393,40543,'_hero_image_pos_x','field_62ec3d05390bb'),(155394,40543,'hero_image_pos_y','top'),(155395,40543,'_hero_image_pos_y','field_62ec3d05390bc'),(155396,40543,'hero_image_pos',''),(155397,40543,'_hero_image_pos','field_62ec3d05390ba'),(155398,40543,'fft_hide_from_listings','0'),(155399,40543,'_fft_hide_from_listings','field_61f1320446ab2'),(155400,40543,'fft_page_format','default'),(155401,40543,'_fft_page_format','field_61ae213f1f218'),(155402,40543,'fft_hide_nav','0'),(155403,40543,'_fft_hide_nav','field_635bd5e43527c'),(155404,40543,'fft_hide_header_call_to_action','0'),(155405,40543,'_fft_hide_header_call_to_action','field_635bd6723527d'),(155406,40543,'fft_page_sitemap','0'),(155407,40543,'_fft_page_sitemap','field_61af9b34e8181'),(155408,40543,'blocks','a:6:{i:0;s:10:\"split_5050\";i:1;s:16:\"standard_content\";i:2;s:10:\"text_block\";i:3;s:5:\"logos\";i:4;s:16:\"standard_content\";i:5;s:18:\"testimonial_slider\";}'),(155409,40543,'_blocks','field_6176696113096'),(155410,40543,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(155411,40543,'_hero_actions_0_button','field_61757281285eb'),(155412,40543,'_thumbnail_id','40503'),(155413,40543,'__thumbnail_id','field_617570855ddaf'),(155414,40543,'blocks_0_acfe_flexible_toggle',''),(155415,40543,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(155416,40543,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(155417,40543,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(155418,40543,'blocks_0_options_theme','#ffffff'),(155419,40543,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(155420,40543,'blocks_0_options_reverse','0'),(155421,40543,'_blocks_0_options_reverse','field_61768049bb8ac'),(155422,40543,'blocks_0_options',''),(155423,40543,'_blocks_0_options','field_617682517c334'),(155424,40543,'blocks_0_split_5050_image','36390'),(155425,40543,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(155426,40543,'blocks_0_split_5050_video',''),(155427,40543,'_blocks_0_split_5050_video','field_6239f3160848a'),(155428,40543,'blocks_0_split_5050_content_title','Working in Partnership'),(155429,40543,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(155430,40543,'blocks_0_split_5050_content_heading',''),(155431,40543,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(155432,40543,'blocks_0_split_5050_content_text','At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(155433,40543,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(155434,40543,'blocks_0_split_5050_content_actions','1'),(155435,40543,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(155436,40543,'blocks_0_split_5050_content',''),(155437,40543,'_blocks_0_split_5050_content','field_61767afceb8ba'),(155438,40543,'blocks_1_acfe_flexible_toggle','1'),(155439,40543,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155440,40543,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(155441,40543,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155442,40543,'blocks_1_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(155443,40543,'_blocks_1_content','field_6193c9b5eac84'),(155444,40543,'blocks_2_acfe_flexible_toggle',''),(155445,40543,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(155446,40543,'blocks_2_acfe_flexible_layout_title','Text Block'),(155447,40543,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(155448,40543,'blocks_2_options_theme','#b61234'),(155449,40543,'_blocks_2_options_theme','field_6176830e2ad17'),(155450,40543,'blocks_2_options',''),(155451,40543,'_blocks_2_options','field_6176830e2ad16'),(155452,40543,'blocks_2_text_block_heading','Proudly introducing our partners'),(155453,40543,'_blocks_2_text_block_heading','field_617669d413097'),(155454,40543,'blocks_2_text_block_content',''),(155455,40543,'_blocks_2_text_block_content','field_617669ec13098'),(155456,40543,'blocks_3_acfe_flexible_toggle',''),(155457,40543,'_blocks_3_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(155458,40543,'blocks_3_acfe_flexible_layout_title','Logos'),(155459,40543,'_blocks_3_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(155460,40543,'blocks_3_options_theme','#ffffff'),(155461,40543,'_blocks_3_options_theme','field_61782954ee966_field_6176830e2ad17'),(155462,40543,'blocks_3_options_format','grid'),(155463,40543,'_blocks_3_options_format','field_61782964ee971'),(155464,40543,'blocks_3_options',''),(155465,40543,'_blocks_3_options','field_61782954ee965'),(155466,40543,'blocks_3_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(155467,40543,'_blocks_3_logos','field_61782954ee96d'),(155468,40543,'blocks_3_title',''),(155469,40543,'_blocks_3_title','field_668fbfdc2daa1'),(155470,40543,'blocks_4_acfe_flexible_toggle',''),(155471,40543,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155472,40543,'blocks_4_acfe_flexible_layout_title','Standard/Editorial Content'),(155473,40543,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155474,40543,'blocks_4_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(155475,40543,'_blocks_4_content','field_6193c9b5eac84'),(155476,40543,'blocks_5_acfe_flexible_toggle',''),(155477,40543,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(155478,40543,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(155479,40543,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(155480,40543,'blocks_5_testimonial_slider_content_title',''),(155481,40543,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(155482,40543,'blocks_5_testimonial_slider_content_heading','Testimonials'),(155483,40543,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(155484,40543,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(155485,40543,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(155486,40543,'blocks_5_testimonial_slider_content_actions',''),(155487,40543,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(155488,40543,'blocks_5_testimonial_slider_content',''),(155489,40543,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(155490,40543,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(155491,40543,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(155492,40543,'blocks_5_testimonial_slider_ambassador_bool','0'),(155493,40543,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(155494,40543,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in touch\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(155495,40543,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(155496,39284,'blocks_4_acfe_flexible_toggle',''),(155497,39284,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(155498,39284,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(155499,39284,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(155500,39284,'blocks_4_options_theme','#ffffff'),(155501,39284,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(155502,39284,'blocks_4_options_reverse','0'),(155503,39284,'_blocks_4_options_reverse','field_61768049bb8ac'),(155504,39284,'blocks_4_options',''),(155505,39284,'_blocks_4_options','field_617682517c334'),(155506,39284,'blocks_4_split_5050_image','38323'),(155507,39284,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(155508,39284,'blocks_4_split_5050_video',''),(155509,39284,'_blocks_4_split_5050_video','field_6239f3160848a'),(155510,39284,'blocks_4_split_5050_content_title','Imagine elevating your gym chain’s fitness programmes to a whole new level of effectiveness and safety.'),(155511,39284,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(155512,39284,'blocks_4_split_5050_content_heading',''),(155513,39284,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(155514,39284,'blocks_4_split_5050_content_text','We offer specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.'),(155515,39284,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(155516,39284,'blocks_4_split_5050_content_actions',''),(155517,39284,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(155518,39284,'blocks_4_split_5050_content',''),(155519,39284,'_blocks_4_split_5050_content','field_61767afceb8ba'),(155520,39284,'blocks_5_acfe_flexible_toggle','1'),(155521,39284,'_blocks_5_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155522,39284,'blocks_5_acfe_flexible_layout_title','Standard/Editorial Content'),(155523,39284,'_blocks_5_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155524,39284,'blocks_5_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(155525,39284,'_blocks_5_content','field_6193c9b5eac84'),(155526,39284,'blocks_6_acfe_flexible_toggle','1'),(155527,39284,'_blocks_6_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(155528,39284,'blocks_6_acfe_flexible_layout_title','Testimonial Slider'),(155529,39284,'_blocks_6_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(155530,39284,'blocks_6_testimonial_slider_content_title',''),(155531,39284,'_blocks_6_testimonial_slider_content_title','field_617c033b39a60'),(155532,39284,'blocks_6_testimonial_slider_content_heading','Testimonials'),(155533,39284,'_blocks_6_testimonial_slider_content_heading','field_617c033b39a61'),(155534,39284,'blocks_6_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(155535,39284,'_blocks_6_testimonial_slider_content_text','field_617c033b39a62'),(155536,39284,'blocks_6_testimonial_slider_content_actions',''),(155537,39284,'_blocks_6_testimonial_slider_content_actions','field_617c033b39a63'),(155538,39284,'blocks_6_testimonial_slider_content',''),(155539,39284,'_blocks_6_testimonial_slider_content','field_617c033b39a5f'),(155540,39284,'blocks_6_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(155541,39284,'_blocks_6_testimonial_slider_items','field_61812eaeb20eb'),(155542,39284,'blocks_6_testimonial_slider_ambassador_bool','0'),(155543,39284,'_blocks_6_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(155544,40544,'hide_hero','0'),(155545,40544,'_hide_hero','field_66a2380fcda39'),(155546,40544,'hero_title','Our Partners'),(155547,40544,'_hero_title','field_617571fe285e8'),(155548,40544,'hero_text','Discover our partners'),(155549,40544,'_hero_text','field_6175723c285e9'),(155550,40544,'hero_actions','1'),(155551,40544,'_hero_actions','field_61757270285ea'),(155552,40544,'hero_style','default'),(155553,40544,'_hero_style','field_62051d9dc5324'),(155554,40544,'hero_image_pos_x','right'),(155555,40544,'_hero_image_pos_x','field_62ec3d05390bb'),(155556,40544,'hero_image_pos_y','top'),(155557,40544,'_hero_image_pos_y','field_62ec3d05390bc'),(155558,40544,'hero_image_pos',''),(155559,40544,'_hero_image_pos','field_62ec3d05390ba'),(155560,40544,'fft_hide_from_listings','0'),(155561,40544,'_fft_hide_from_listings','field_61f1320446ab2'),(155562,40544,'fft_page_format','default'),(155563,40544,'_fft_page_format','field_61ae213f1f218'),(155564,40544,'fft_hide_nav','0'),(155565,40544,'_fft_hide_nav','field_635bd5e43527c'),(155566,40544,'fft_hide_header_call_to_action','0'),(155567,40544,'_fft_hide_header_call_to_action','field_635bd6723527d'),(155568,40544,'fft_page_sitemap','0'),(155569,40544,'_fft_page_sitemap','field_61af9b34e8181'),(155570,40544,'blocks','a:7:{i:0;s:10:\"split_5050\";i:1;s:16:\"standard_content\";i:2;s:10:\"text_block\";i:3;s:5:\"logos\";i:4;s:10:\"split_5050\";i:5;s:16:\"standard_content\";i:6;s:18:\"testimonial_slider\";}'),(155571,40544,'_blocks','field_6176696113096'),(155572,40544,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(155573,40544,'_hero_actions_0_button','field_61757281285eb'),(155574,40544,'_thumbnail_id','40503'),(155575,40544,'__thumbnail_id','field_617570855ddaf'),(155576,40544,'blocks_0_acfe_flexible_toggle',''),(155577,40544,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(155578,40544,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(155579,40544,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(155580,40544,'blocks_0_options_theme','#ffffff'),(155581,40544,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(155582,40544,'blocks_0_options_reverse','0'),(155583,40544,'_blocks_0_options_reverse','field_61768049bb8ac'),(155584,40544,'blocks_0_options',''),(155585,40544,'_blocks_0_options','field_617682517c334'),(155586,40544,'blocks_0_split_5050_image','36390'),(155587,40544,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(155588,40544,'blocks_0_split_5050_video',''),(155589,40544,'_blocks_0_split_5050_video','field_6239f3160848a'),(155590,40544,'blocks_0_split_5050_content_title','Working in Partnership'),(155591,40544,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(155592,40544,'blocks_0_split_5050_content_heading',''),(155593,40544,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(155594,40544,'blocks_0_split_5050_content_text','At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(155595,40544,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(155596,40544,'blocks_0_split_5050_content_actions','1'),(155597,40544,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(155598,40544,'blocks_0_split_5050_content',''),(155599,40544,'_blocks_0_split_5050_content','field_61767afceb8ba'),(155600,40544,'blocks_1_acfe_flexible_toggle','1'),(155601,40544,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155602,40544,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(155603,40544,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155604,40544,'blocks_1_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(155605,40544,'_blocks_1_content','field_6193c9b5eac84'),(155606,40544,'blocks_2_acfe_flexible_toggle',''),(155607,40544,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(155608,40544,'blocks_2_acfe_flexible_layout_title','Text Block'),(155609,40544,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(155610,40544,'blocks_2_options_theme','#b61234'),(155611,40544,'_blocks_2_options_theme','field_6176830e2ad17'),(155612,40544,'blocks_2_options',''),(155613,40544,'_blocks_2_options','field_6176830e2ad16'),(155614,40544,'blocks_2_text_block_heading','Proudly introducing our partners'),(155615,40544,'_blocks_2_text_block_heading','field_617669d413097'),(155616,40544,'blocks_2_text_block_content',''),(155617,40544,'_blocks_2_text_block_content','field_617669ec13098'),(155618,40544,'blocks_3_acfe_flexible_toggle',''),(155619,40544,'_blocks_3_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(155620,40544,'blocks_3_acfe_flexible_layout_title','Logos'),(155621,40544,'_blocks_3_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(155622,40544,'blocks_3_options_theme','#ffffff'),(155623,40544,'_blocks_3_options_theme','field_61782954ee966_field_6176830e2ad17'),(155624,40544,'blocks_3_options_format','grid'),(155625,40544,'_blocks_3_options_format','field_61782964ee971'),(155626,40544,'blocks_3_options',''),(155627,40544,'_blocks_3_options','field_61782954ee965'),(155628,40544,'blocks_3_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(155629,40544,'_blocks_3_logos','field_61782954ee96d'),(155630,40544,'blocks_3_title',''),(155631,40544,'_blocks_3_title','field_668fbfdc2daa1'),(155632,40544,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in touch\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(155633,40544,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(155634,40544,'blocks_4_acfe_flexible_toggle',''),(155635,40544,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(155636,40544,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(155637,40544,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(155638,40544,'blocks_4_options_theme','#ffffff'),(155639,40544,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(155640,40544,'blocks_4_options_reverse','0'),(155641,40544,'_blocks_4_options_reverse','field_61768049bb8ac'),(155642,40544,'blocks_4_options',''),(155643,40544,'_blocks_4_options','field_617682517c334'),(155644,40544,'blocks_4_split_5050_image','38323'),(155645,40544,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(155646,40544,'blocks_4_split_5050_video',''),(155647,40544,'_blocks_4_split_5050_video','field_6239f3160848a'),(155648,40544,'blocks_4_split_5050_content_title',''),(155649,40544,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(155650,40544,'blocks_4_split_5050_content_heading','Imagine elevating your gym chain’s fitness programmes to a whole new level of effectiveness and safety.'),(155651,40544,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(155652,40544,'blocks_4_split_5050_content_text','We offer specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.'),(155653,40544,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(155654,40544,'blocks_4_split_5050_content_actions',''),(155655,40544,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(155656,40544,'blocks_4_split_5050_content',''),(155657,40544,'_blocks_4_split_5050_content','field_61767afceb8ba'),(155658,40544,'blocks_5_acfe_flexible_toggle',''),(155659,40544,'_blocks_5_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155660,40544,'blocks_5_acfe_flexible_layout_title','Standard/Editorial Content'),(155661,40544,'_blocks_5_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155662,40544,'blocks_5_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(155663,40544,'_blocks_5_content','field_6193c9b5eac84'),(155664,40544,'blocks_6_acfe_flexible_toggle',''),(155665,40544,'_blocks_6_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(155666,40544,'blocks_6_acfe_flexible_layout_title','Testimonial Slider'),(155667,40544,'_blocks_6_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(155668,40544,'blocks_6_testimonial_slider_content_title',''),(155669,40544,'_blocks_6_testimonial_slider_content_title','field_617c033b39a60'),(155670,40544,'blocks_6_testimonial_slider_content_heading','Testimonials'),(155671,40544,'_blocks_6_testimonial_slider_content_heading','field_617c033b39a61'),(155672,40544,'blocks_6_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(155673,40544,'_blocks_6_testimonial_slider_content_text','field_617c033b39a62'),(155674,40544,'blocks_6_testimonial_slider_content_actions',''),(155675,40544,'_blocks_6_testimonial_slider_content_actions','field_617c033b39a63'),(155676,40544,'blocks_6_testimonial_slider_content',''),(155677,40544,'_blocks_6_testimonial_slider_content','field_617c033b39a5f'),(155678,40544,'blocks_6_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(155679,40544,'_blocks_6_testimonial_slider_items','field_61812eaeb20eb'),(155680,40544,'blocks_6_testimonial_slider_ambassador_bool','0'),(155681,40544,'_blocks_6_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(155682,40545,'hide_hero','0'),(155683,40545,'_hide_hero','field_66a2380fcda39'),(155684,40545,'hero_title','Our Partners'),(155685,40545,'_hero_title','field_617571fe285e8'),(155686,40545,'hero_text','Discover our partners'),(155687,40545,'_hero_text','field_6175723c285e9'),(155688,40545,'hero_actions','1'),(155689,40545,'_hero_actions','field_61757270285ea'),(155690,40545,'hero_style','default'),(155691,40545,'_hero_style','field_62051d9dc5324'),(155692,40545,'hero_image_pos_x','right'),(155693,40545,'_hero_image_pos_x','field_62ec3d05390bb'),(155694,40545,'hero_image_pos_y','top'),(155695,40545,'_hero_image_pos_y','field_62ec3d05390bc'),(155696,40545,'hero_image_pos',''),(155697,40545,'_hero_image_pos','field_62ec3d05390ba'),(155698,40545,'fft_hide_from_listings','0'),(155699,40545,'_fft_hide_from_listings','field_61f1320446ab2'),(155700,40545,'fft_page_format','default'),(155701,40545,'_fft_page_format','field_61ae213f1f218'),(155702,40545,'fft_hide_nav','0'),(155703,40545,'_fft_hide_nav','field_635bd5e43527c'),(155704,40545,'fft_hide_header_call_to_action','0'),(155705,40545,'_fft_hide_header_call_to_action','field_635bd6723527d'),(155706,40545,'fft_page_sitemap','0'),(155707,40545,'_fft_page_sitemap','field_61af9b34e8181'),(155708,40545,'blocks','a:7:{i:0;s:10:\"split_5050\";i:1;s:16:\"standard_content\";i:2;s:10:\"text_block\";i:3;s:5:\"logos\";i:4;s:10:\"split_5050\";i:5;s:16:\"standard_content\";i:6;s:18:\"testimonial_slider\";}'),(155709,40545,'_blocks','field_6176696113096'),(155710,40545,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(155711,40545,'_hero_actions_0_button','field_61757281285eb'),(155712,40545,'_thumbnail_id','40503'),(155713,40545,'__thumbnail_id','field_617570855ddaf'),(155714,40545,'blocks_0_acfe_flexible_toggle',''),(155715,40545,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(155716,40545,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(155717,40545,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(155718,40545,'blocks_0_options_theme','#ffffff'),(155719,40545,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(155720,40545,'blocks_0_options_reverse','0'),(155721,40545,'_blocks_0_options_reverse','field_61768049bb8ac'),(155722,40545,'blocks_0_options',''),(155723,40545,'_blocks_0_options','field_617682517c334'),(155724,40545,'blocks_0_split_5050_image','36390'),(155725,40545,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(155726,40545,'blocks_0_split_5050_video',''),(155727,40545,'_blocks_0_split_5050_video','field_6239f3160848a'),(155728,40545,'blocks_0_split_5050_content_title','Working in Partnership'),(155729,40545,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(155730,40545,'blocks_0_split_5050_content_heading',''),(155731,40545,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(155732,40545,'blocks_0_split_5050_content_text','At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(155733,40545,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(155734,40545,'blocks_0_split_5050_content_actions','1'),(155735,40545,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(155736,40545,'blocks_0_split_5050_content',''),(155737,40545,'_blocks_0_split_5050_content','field_61767afceb8ba'),(155738,40545,'blocks_1_acfe_flexible_toggle','1'),(155739,40545,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155740,40545,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(155741,40545,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155742,40545,'blocks_1_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(155743,40545,'_blocks_1_content','field_6193c9b5eac84'),(155744,40545,'blocks_2_acfe_flexible_toggle',''),(155745,40545,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(155746,40545,'blocks_2_acfe_flexible_layout_title','Text Block'),(155747,40545,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(155748,40545,'blocks_2_options_theme','#b61234'),(155749,40545,'_blocks_2_options_theme','field_6176830e2ad17'),(155750,40545,'blocks_2_options',''),(155751,40545,'_blocks_2_options','field_6176830e2ad16'),(155752,40545,'blocks_2_text_block_heading','Proudly introducing our partners'),(155753,40545,'_blocks_2_text_block_heading','field_617669d413097'),(155754,40545,'blocks_2_text_block_content',''),(155755,40545,'_blocks_2_text_block_content','field_617669ec13098'),(155756,40545,'blocks_3_acfe_flexible_toggle',''),(155757,40545,'_blocks_3_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(155758,40545,'blocks_3_acfe_flexible_layout_title','Logos'),(155759,40545,'_blocks_3_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(155760,40545,'blocks_3_options_theme','#ffffff'),(155761,40545,'_blocks_3_options_theme','field_61782954ee966_field_6176830e2ad17'),(155762,40545,'blocks_3_options_format','grid'),(155763,40545,'_blocks_3_options_format','field_61782964ee971'),(155764,40545,'blocks_3_options',''),(155765,40545,'_blocks_3_options','field_61782954ee965'),(155766,40545,'blocks_3_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(155767,40545,'_blocks_3_logos','field_61782954ee96d'),(155768,40545,'blocks_3_title',''),(155769,40545,'_blocks_3_title','field_668fbfdc2daa1'),(155770,40545,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in touch\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(155771,40545,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(155772,40545,'blocks_4_acfe_flexible_toggle',''),(155773,40545,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(155774,40545,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(155775,40545,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(155776,40545,'blocks_4_options_theme','#ffffff'),(155777,40545,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(155778,40545,'blocks_4_options_reverse','0'),(155779,40545,'_blocks_4_options_reverse','field_61768049bb8ac'),(155780,40545,'blocks_4_options',''),(155781,40545,'_blocks_4_options','field_617682517c334'),(155782,40545,'blocks_4_split_5050_image','38323'),(155783,40545,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(155784,40545,'blocks_4_split_5050_video',''),(155785,40545,'_blocks_4_split_5050_video','field_6239f3160848a'),(155786,40545,'blocks_4_split_5050_content_title','Imagine elevating your gym chain’s fitness programmes to a whole new level of effectiveness and safety.'),(155787,40545,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(155788,40545,'blocks_4_split_5050_content_heading',''),(155789,40545,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(155790,40545,'blocks_4_split_5050_content_text','We offer specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.'),(155791,40545,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(155792,40545,'blocks_4_split_5050_content_actions',''),(155793,40545,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(155794,40545,'blocks_4_split_5050_content',''),(155795,40545,'_blocks_4_split_5050_content','field_61767afceb8ba'),(155796,40545,'blocks_5_acfe_flexible_toggle',''),(155797,40545,'_blocks_5_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155798,40545,'blocks_5_acfe_flexible_layout_title','Standard/Editorial Content'),(155799,40545,'_blocks_5_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155800,40545,'blocks_5_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(155801,40545,'_blocks_5_content','field_6193c9b5eac84'),(155802,40545,'blocks_6_acfe_flexible_toggle',''),(155803,40545,'_blocks_6_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(155804,40545,'blocks_6_acfe_flexible_layout_title','Testimonial Slider'),(155805,40545,'_blocks_6_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(155806,40545,'blocks_6_testimonial_slider_content_title',''),(155807,40545,'_blocks_6_testimonial_slider_content_title','field_617c033b39a60'),(155808,40545,'blocks_6_testimonial_slider_content_heading','Testimonials'),(155809,40545,'_blocks_6_testimonial_slider_content_heading','field_617c033b39a61'),(155810,40545,'blocks_6_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(155811,40545,'_blocks_6_testimonial_slider_content_text','field_617c033b39a62'),(155812,40545,'blocks_6_testimonial_slider_content_actions',''),(155813,40545,'_blocks_6_testimonial_slider_content_actions','field_617c033b39a63'),(155814,40545,'blocks_6_testimonial_slider_content',''),(155815,40545,'_blocks_6_testimonial_slider_content','field_617c033b39a5f'),(155816,40545,'blocks_6_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(155817,40545,'_blocks_6_testimonial_slider_items','field_61812eaeb20eb'),(155818,40545,'blocks_6_testimonial_slider_ambassador_bool','0'),(155819,40545,'_blocks_6_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(155820,39284,'blocks_7_acfe_flexible_toggle',''),(155821,39284,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(155822,39284,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(155823,39284,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(155824,39284,'blocks_7_options_alignment','center'),(155825,39284,'_blocks_7_options_alignment','field_61769449f5490'),(155826,39284,'blocks_7_options',''),(155827,39284,'_blocks_7_options','field_617693e1428f0'),(155828,39284,'blocks_7_promo_panel_image','39637'),(155829,39284,'_blocks_7_promo_panel_image','field_617693e1428f3'),(155830,39284,'blocks_7_promo_panel_content_heading','Get in touch'),(155831,39284,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(155832,39284,'blocks_7_promo_panel_content_text','Get in touch with us today to discuss how we can work together to better our sector. '),(155833,39284,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(155834,39284,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:5:\"Email\";s:3:\"url\";s:37:\"mailto:info@biomechanicseducation.com\";s:6:\"target\";s:0:\"\";}'),(155835,39284,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(155836,39284,'blocks_7_promo_panel_content_actions_1_button','a:3:{s:5:\"title\";s:8:\"Call now\";s:3:\"url\";s:15:\"tel:02038416151\";s:6:\"target\";s:0:\"\";}'),(155837,39284,'_blocks_7_promo_panel_content_actions_1_button','field_617693e1428f9'),(155838,39284,'blocks_7_promo_panel_content_actions','2'),(155839,39284,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(155840,39284,'blocks_7_promo_panel_content',''),(155841,39284,'_blocks_7_promo_panel_content','field_617693e1428f4'),(155842,40546,'hide_hero','0'),(155843,40546,'_hide_hero','field_66a2380fcda39'),(155844,40546,'hero_title','Our Partners'),(155845,40546,'_hero_title','field_617571fe285e8'),(155846,40546,'hero_text','Discover our partners'),(155847,40546,'_hero_text','field_6175723c285e9'),(155848,40546,'hero_actions','1'),(155849,40546,'_hero_actions','field_61757270285ea'),(155850,40546,'hero_style','default'),(155851,40546,'_hero_style','field_62051d9dc5324'),(155852,40546,'hero_image_pos_x','right'),(155853,40546,'_hero_image_pos_x','field_62ec3d05390bb'),(155854,40546,'hero_image_pos_y','top'),(155855,40546,'_hero_image_pos_y','field_62ec3d05390bc'),(155856,40546,'hero_image_pos',''),(155857,40546,'_hero_image_pos','field_62ec3d05390ba'),(155858,40546,'fft_hide_from_listings','0'),(155859,40546,'_fft_hide_from_listings','field_61f1320446ab2'),(155860,40546,'fft_page_format','default'),(155861,40546,'_fft_page_format','field_61ae213f1f218'),(155862,40546,'fft_hide_nav','0'),(155863,40546,'_fft_hide_nav','field_635bd5e43527c'),(155864,40546,'fft_hide_header_call_to_action','0'),(155865,40546,'_fft_hide_header_call_to_action','field_635bd6723527d'),(155866,40546,'fft_page_sitemap','0'),(155867,40546,'_fft_page_sitemap','field_61af9b34e8181'),(155868,40546,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:16:\"standard_content\";i:2;s:10:\"text_block\";i:3;s:5:\"logos\";i:4;s:10:\"split_5050\";i:5;s:16:\"standard_content\";i:6;s:18:\"testimonial_slider\";i:7;s:11:\"promo_panel\";}'),(155869,40546,'_blocks','field_6176696113096'),(155870,40546,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(155871,40546,'_hero_actions_0_button','field_61757281285eb'),(155872,40546,'_thumbnail_id','40503'),(155873,40546,'__thumbnail_id','field_617570855ddaf'),(155874,40546,'blocks_0_acfe_flexible_toggle',''),(155875,40546,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(155876,40546,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(155877,40546,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(155878,40546,'blocks_0_options_theme','#ffffff'),(155879,40546,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(155880,40546,'blocks_0_options_reverse','0'),(155881,40546,'_blocks_0_options_reverse','field_61768049bb8ac'),(155882,40546,'blocks_0_options',''),(155883,40546,'_blocks_0_options','field_617682517c334'),(155884,40546,'blocks_0_split_5050_image','36390'),(155885,40546,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(155886,40546,'blocks_0_split_5050_video',''),(155887,40546,'_blocks_0_split_5050_video','field_6239f3160848a'),(155888,40546,'blocks_0_split_5050_content_title','Working in Partnership'),(155889,40546,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(155890,40546,'blocks_0_split_5050_content_heading',''),(155891,40546,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(155892,40546,'blocks_0_split_5050_content_text','At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(155893,40546,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(155894,40546,'blocks_0_split_5050_content_actions','1'),(155895,40546,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(155896,40546,'blocks_0_split_5050_content',''),(155897,40546,'_blocks_0_split_5050_content','field_61767afceb8ba'),(155898,40546,'blocks_1_acfe_flexible_toggle','1'),(155899,40546,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155900,40546,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(155901,40546,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155902,40546,'blocks_1_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(155903,40546,'_blocks_1_content','field_6193c9b5eac84'),(155904,40546,'blocks_2_acfe_flexible_toggle',''),(155905,40546,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(155906,40546,'blocks_2_acfe_flexible_layout_title','Text Block'),(155907,40546,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(155908,40546,'blocks_2_options_theme','#b61234'),(155909,40546,'_blocks_2_options_theme','field_6176830e2ad17'),(155910,40546,'blocks_2_options',''),(155911,40546,'_blocks_2_options','field_6176830e2ad16'),(155912,40546,'blocks_2_text_block_heading','Proudly introducing our partners'),(155913,40546,'_blocks_2_text_block_heading','field_617669d413097'),(155914,40546,'blocks_2_text_block_content',''),(155915,40546,'_blocks_2_text_block_content','field_617669ec13098'),(155916,40546,'blocks_3_acfe_flexible_toggle',''),(155917,40546,'_blocks_3_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(155918,40546,'blocks_3_acfe_flexible_layout_title','Logos'),(155919,40546,'_blocks_3_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(155920,40546,'blocks_3_options_theme','#ffffff'),(155921,40546,'_blocks_3_options_theme','field_61782954ee966_field_6176830e2ad17'),(155922,40546,'blocks_3_options_format','grid'),(155923,40546,'_blocks_3_options_format','field_61782964ee971'),(155924,40546,'blocks_3_options',''),(155925,40546,'_blocks_3_options','field_61782954ee965'),(155926,40546,'blocks_3_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(155927,40546,'_blocks_3_logos','field_61782954ee96d'),(155928,40546,'blocks_3_title',''),(155929,40546,'_blocks_3_title','field_668fbfdc2daa1'),(155930,40546,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in touch\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(155931,40546,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(155932,40546,'blocks_4_acfe_flexible_toggle',''),(155933,40546,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(155934,40546,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(155935,40546,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(155936,40546,'blocks_4_options_theme','#ffffff'),(155937,40546,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(155938,40546,'blocks_4_options_reverse','0'),(155939,40546,'_blocks_4_options_reverse','field_61768049bb8ac'),(155940,40546,'blocks_4_options',''),(155941,40546,'_blocks_4_options','field_617682517c334'),(155942,40546,'blocks_4_split_5050_image','38323'),(155943,40546,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(155944,40546,'blocks_4_split_5050_video',''),(155945,40546,'_blocks_4_split_5050_video','field_6239f3160848a'),(155946,40546,'blocks_4_split_5050_content_title','Imagine elevating your gym chain’s fitness programmes to a whole new level of effectiveness and safety.'),(155947,40546,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(155948,40546,'blocks_4_split_5050_content_heading',''),(155949,40546,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(155950,40546,'blocks_4_split_5050_content_text','We offer specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.'),(155951,40546,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(155952,40546,'blocks_4_split_5050_content_actions',''),(155953,40546,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(155954,40546,'blocks_4_split_5050_content',''),(155955,40546,'_blocks_4_split_5050_content','field_61767afceb8ba'),(155956,40546,'blocks_5_acfe_flexible_toggle','1'),(155957,40546,'_blocks_5_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(155958,40546,'blocks_5_acfe_flexible_layout_title','Standard/Editorial Content'),(155959,40546,'_blocks_5_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(155960,40546,'blocks_5_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(155961,40546,'_blocks_5_content','field_6193c9b5eac84'),(155962,40546,'blocks_6_acfe_flexible_toggle',''),(155963,40546,'_blocks_6_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(155964,40546,'blocks_6_acfe_flexible_layout_title','Testimonial Slider'),(155965,40546,'_blocks_6_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(155966,40546,'blocks_6_testimonial_slider_content_title',''),(155967,40546,'_blocks_6_testimonial_slider_content_title','field_617c033b39a60'),(155968,40546,'blocks_6_testimonial_slider_content_heading','Testimonials'),(155969,40546,'_blocks_6_testimonial_slider_content_heading','field_617c033b39a61'),(155970,40546,'blocks_6_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(155971,40546,'_blocks_6_testimonial_slider_content_text','field_617c033b39a62'),(155972,40546,'blocks_6_testimonial_slider_content_actions',''),(155973,40546,'_blocks_6_testimonial_slider_content_actions','field_617c033b39a63'),(155974,40546,'blocks_6_testimonial_slider_content',''),(155975,40546,'_blocks_6_testimonial_slider_content','field_617c033b39a5f'),(155976,40546,'blocks_6_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(155977,40546,'_blocks_6_testimonial_slider_items','field_61812eaeb20eb'),(155978,40546,'blocks_6_testimonial_slider_ambassador_bool','0'),(155979,40546,'_blocks_6_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(155980,40546,'blocks_7_acfe_flexible_toggle',''),(155981,40546,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(155982,40546,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(155983,40546,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(155984,40546,'blocks_7_options_alignment','center'),(155985,40546,'_blocks_7_options_alignment','field_61769449f5490'),(155986,40546,'blocks_7_options',''),(155987,40546,'_blocks_7_options','field_617693e1428f0'),(155988,40546,'blocks_7_promo_panel_image',''),(155989,40546,'_blocks_7_promo_panel_image','field_617693e1428f3'),(155990,40546,'blocks_7_promo_panel_content_heading','Get in touch'),(155991,40546,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(155992,40546,'blocks_7_promo_panel_content_text','Get in touch with us today to discuss how we can work together to better our sector. '),(155993,40546,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(155994,40546,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:5:\"Email\";s:3:\"url\";s:37:\"mailto:info@biomechanicseducation.com\";s:6:\"target\";s:0:\"\";}'),(155995,40546,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(155996,40546,'blocks_7_promo_panel_content_actions_1_button','a:3:{s:5:\"title\";s:8:\"Call now\";s:3:\"url\";s:15:\"tel:02038416151\";s:6:\"target\";s:0:\"\";}'),(155997,40546,'_blocks_7_promo_panel_content_actions_1_button','field_617693e1428f9'),(155998,40546,'blocks_7_promo_panel_content_actions','2'),(155999,40546,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(156000,40546,'blocks_7_promo_panel_content',''),(156001,40546,'_blocks_7_promo_panel_content','field_617693e1428f4'),(156002,40547,'hide_hero','0'),(156003,40547,'_hide_hero','field_66a2380fcda39'),(156004,40547,'hero_title','Our Partners'),(156005,40547,'_hero_title','field_617571fe285e8'),(156006,40547,'hero_text','Discover our partners'),(156007,40547,'_hero_text','field_6175723c285e9'),(156008,40547,'hero_actions','1'),(156009,40547,'_hero_actions','field_61757270285ea'),(156010,40547,'hero_style','default'),(156011,40547,'_hero_style','field_62051d9dc5324'),(156012,40547,'hero_image_pos_x','right'),(156013,40547,'_hero_image_pos_x','field_62ec3d05390bb'),(156014,40547,'hero_image_pos_y','top'),(156015,40547,'_hero_image_pos_y','field_62ec3d05390bc'),(156016,40547,'hero_image_pos',''),(156017,40547,'_hero_image_pos','field_62ec3d05390ba'),(156018,40547,'fft_hide_from_listings','0'),(156019,40547,'_fft_hide_from_listings','field_61f1320446ab2'),(156020,40547,'fft_page_format','default'),(156021,40547,'_fft_page_format','field_61ae213f1f218'),(156022,40547,'fft_hide_nav','0'),(156023,40547,'_fft_hide_nav','field_635bd5e43527c'),(156024,40547,'fft_hide_header_call_to_action','0'),(156025,40547,'_fft_hide_header_call_to_action','field_635bd6723527d'),(156026,40547,'fft_page_sitemap','0'),(156027,40547,'_fft_page_sitemap','field_61af9b34e8181'),(156028,40547,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:16:\"standard_content\";i:2;s:10:\"text_block\";i:3;s:5:\"logos\";i:4;s:10:\"split_5050\";i:5;s:16:\"standard_content\";i:6;s:18:\"testimonial_slider\";i:7;s:11:\"promo_panel\";}'),(156029,40547,'_blocks','field_6176696113096'),(156030,40547,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(156031,40547,'_hero_actions_0_button','field_61757281285eb'),(156032,40547,'_thumbnail_id','40503'),(156033,40547,'__thumbnail_id','field_617570855ddaf'),(156034,40547,'blocks_0_acfe_flexible_toggle',''),(156035,40547,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(156036,40547,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(156037,40547,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(156038,40547,'blocks_0_options_theme','#ffffff'),(156039,40547,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(156040,40547,'blocks_0_options_reverse','0'),(156041,40547,'_blocks_0_options_reverse','field_61768049bb8ac'),(156042,40547,'blocks_0_options',''),(156043,40547,'_blocks_0_options','field_617682517c334'),(156044,40547,'blocks_0_split_5050_image','36390'),(156045,40547,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(156046,40547,'blocks_0_split_5050_video',''),(156047,40547,'_blocks_0_split_5050_video','field_6239f3160848a'),(156048,40547,'blocks_0_split_5050_content_title','Working in Partnership'),(156049,40547,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(156050,40547,'blocks_0_split_5050_content_heading',''),(156051,40547,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(156052,40547,'blocks_0_split_5050_content_text','At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(156053,40547,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(156054,40547,'blocks_0_split_5050_content_actions','1'),(156055,40547,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(156056,40547,'blocks_0_split_5050_content',''),(156057,40547,'_blocks_0_split_5050_content','field_61767afceb8ba'),(156058,40547,'blocks_1_acfe_flexible_toggle','1'),(156059,40547,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(156060,40547,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(156061,40547,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(156062,40547,'blocks_1_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(156063,40547,'_blocks_1_content','field_6193c9b5eac84'),(156064,40547,'blocks_2_acfe_flexible_toggle',''),(156065,40547,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(156066,40547,'blocks_2_acfe_flexible_layout_title','Text Block'),(156067,40547,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(156068,40547,'blocks_2_options_theme','#b61234'),(156069,40547,'_blocks_2_options_theme','field_6176830e2ad17'),(156070,40547,'blocks_2_options',''),(156071,40547,'_blocks_2_options','field_6176830e2ad16'),(156072,40547,'blocks_2_text_block_heading','Proudly introducing our partners'),(156073,40547,'_blocks_2_text_block_heading','field_617669d413097'),(156074,40547,'blocks_2_text_block_content',''),(156075,40547,'_blocks_2_text_block_content','field_617669ec13098'),(156076,40547,'blocks_3_acfe_flexible_toggle',''),(156077,40547,'_blocks_3_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(156078,40547,'blocks_3_acfe_flexible_layout_title','Logos'),(156079,40547,'_blocks_3_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(156080,40547,'blocks_3_options_theme','#ffffff'),(156081,40547,'_blocks_3_options_theme','field_61782954ee966_field_6176830e2ad17'),(156082,40547,'blocks_3_options_format','grid'),(156083,40547,'_blocks_3_options_format','field_61782964ee971'),(156084,40547,'blocks_3_options',''),(156085,40547,'_blocks_3_options','field_61782954ee965'),(156086,40547,'blocks_3_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(156087,40547,'_blocks_3_logos','field_61782954ee96d'),(156088,40547,'blocks_3_title',''),(156089,40547,'_blocks_3_title','field_668fbfdc2daa1'),(156090,40547,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in touch\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(156091,40547,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(156092,40547,'blocks_4_acfe_flexible_toggle',''),(156093,40547,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(156094,40547,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(156095,40547,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(156096,40547,'blocks_4_options_theme','#ffffff'),(156097,40547,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(156098,40547,'blocks_4_options_reverse','0'),(156099,40547,'_blocks_4_options_reverse','field_61768049bb8ac'),(156100,40547,'blocks_4_options',''),(156101,40547,'_blocks_4_options','field_617682517c334'),(156102,40547,'blocks_4_split_5050_image','38323'),(156103,40547,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(156104,40547,'blocks_4_split_5050_video',''),(156105,40547,'_blocks_4_split_5050_video','field_6239f3160848a'),(156106,40547,'blocks_4_split_5050_content_title','Imagine elevating your gym chain’s fitness programmes to a whole new level of effectiveness and safety.'),(156107,40547,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(156108,40547,'blocks_4_split_5050_content_heading',''),(156109,40547,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(156110,40547,'blocks_4_split_5050_content_text','We offer specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.'),(156111,40547,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(156112,40547,'blocks_4_split_5050_content_actions',''),(156113,40547,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(156114,40547,'blocks_4_split_5050_content',''),(156115,40547,'_blocks_4_split_5050_content','field_61767afceb8ba'),(156116,40547,'blocks_5_acfe_flexible_toggle','1'),(156117,40547,'_blocks_5_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(156118,40547,'blocks_5_acfe_flexible_layout_title','Standard/Editorial Content'),(156119,40547,'_blocks_5_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(156120,40547,'blocks_5_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(156121,40547,'_blocks_5_content','field_6193c9b5eac84'),(156122,40547,'blocks_6_acfe_flexible_toggle','1'),(156123,40547,'_blocks_6_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(156124,40547,'blocks_6_acfe_flexible_layout_title','Testimonial Slider'),(156125,40547,'_blocks_6_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(156126,40547,'blocks_6_testimonial_slider_content_title',''),(156127,40547,'_blocks_6_testimonial_slider_content_title','field_617c033b39a60'),(156128,40547,'blocks_6_testimonial_slider_content_heading','Testimonials'),(156129,40547,'_blocks_6_testimonial_slider_content_heading','field_617c033b39a61'),(156130,40547,'blocks_6_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(156131,40547,'_blocks_6_testimonial_slider_content_text','field_617c033b39a62'),(156132,40547,'blocks_6_testimonial_slider_content_actions',''),(156133,40547,'_blocks_6_testimonial_slider_content_actions','field_617c033b39a63'),(156134,40547,'blocks_6_testimonial_slider_content',''),(156135,40547,'_blocks_6_testimonial_slider_content','field_617c033b39a5f'),(156136,40547,'blocks_6_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(156137,40547,'_blocks_6_testimonial_slider_items','field_61812eaeb20eb'),(156138,40547,'blocks_6_testimonial_slider_ambassador_bool','0'),(156139,40547,'_blocks_6_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(156140,40547,'blocks_7_acfe_flexible_toggle',''),(156141,40547,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(156142,40547,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(156143,40547,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(156144,40547,'blocks_7_options_alignment','center'),(156145,40547,'_blocks_7_options_alignment','field_61769449f5490'),(156146,40547,'blocks_7_options',''),(156147,40547,'_blocks_7_options','field_617693e1428f0'),(156148,40547,'blocks_7_promo_panel_image','39637'),(156149,40547,'_blocks_7_promo_panel_image','field_617693e1428f3'),(156150,40547,'blocks_7_promo_panel_content_heading','Get in touch'),(156151,40547,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(156152,40547,'blocks_7_promo_panel_content_text','Get in touch with us today to discuss how we can work together to better our sector. '),(156153,40547,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(156154,40547,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:5:\"Email\";s:3:\"url\";s:37:\"mailto:info@biomechanicseducation.com\";s:6:\"target\";s:0:\"\";}'),(156155,40547,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(156156,40547,'blocks_7_promo_panel_content_actions_1_button','a:3:{s:5:\"title\";s:8:\"Call now\";s:3:\"url\";s:15:\"tel:02038416151\";s:6:\"target\";s:0:\"\";}'),(156157,40547,'_blocks_7_promo_panel_content_actions_1_button','field_617693e1428f9'),(156158,40547,'blocks_7_promo_panel_content_actions','2'),(156159,40547,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(156160,40547,'blocks_7_promo_panel_content',''),(156161,40547,'_blocks_7_promo_panel_content','field_617693e1428f4');
INSERT INTO `6m7_postmeta` VALUES (156162,40548,'hide_hero','0'),(156163,40548,'_hide_hero','field_66a2380fcda39'),(156164,40548,'hero_title','Our Partners'),(156165,40548,'_hero_title','field_617571fe285e8'),(156166,40548,'hero_text',''),(156167,40548,'_hero_text','field_6175723c285e9'),(156168,40548,'hero_actions','1'),(156169,40548,'_hero_actions','field_61757270285ea'),(156170,40548,'hero_style','default'),(156171,40548,'_hero_style','field_62051d9dc5324'),(156172,40548,'hero_image_pos_x','right'),(156173,40548,'_hero_image_pos_x','field_62ec3d05390bb'),(156174,40548,'hero_image_pos_y','top'),(156175,40548,'_hero_image_pos_y','field_62ec3d05390bc'),(156176,40548,'hero_image_pos',''),(156177,40548,'_hero_image_pos','field_62ec3d05390ba'),(156178,40548,'fft_hide_from_listings','0'),(156179,40548,'_fft_hide_from_listings','field_61f1320446ab2'),(156180,40548,'fft_page_format','default'),(156181,40548,'_fft_page_format','field_61ae213f1f218'),(156182,40548,'fft_hide_nav','0'),(156183,40548,'_fft_hide_nav','field_635bd5e43527c'),(156184,40548,'fft_hide_header_call_to_action','0'),(156185,40548,'_fft_hide_header_call_to_action','field_635bd6723527d'),(156186,40548,'fft_page_sitemap','0'),(156187,40548,'_fft_page_sitemap','field_61af9b34e8181'),(156188,40548,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:16:\"standard_content\";i:2;s:10:\"text_block\";i:3;s:5:\"logos\";i:4;s:10:\"split_5050\";i:5;s:16:\"standard_content\";i:6;s:18:\"testimonial_slider\";i:7;s:11:\"promo_panel\";}'),(156189,40548,'_blocks','field_6176696113096'),(156190,40548,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(156191,40548,'_hero_actions_0_button','field_61757281285eb'),(156192,40548,'_thumbnail_id','40503'),(156193,40548,'__thumbnail_id','field_617570855ddaf'),(156194,40548,'blocks_0_acfe_flexible_toggle',''),(156195,40548,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(156196,40548,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(156197,40548,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(156198,40548,'blocks_0_options_theme','#ffffff'),(156199,40548,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(156200,40548,'blocks_0_options_reverse','0'),(156201,40548,'_blocks_0_options_reverse','field_61768049bb8ac'),(156202,40548,'blocks_0_options',''),(156203,40548,'_blocks_0_options','field_617682517c334'),(156204,40548,'blocks_0_split_5050_image','36390'),(156205,40548,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(156206,40548,'blocks_0_split_5050_video',''),(156207,40548,'_blocks_0_split_5050_video','field_6239f3160848a'),(156208,40548,'blocks_0_split_5050_content_title','Working in Partnership'),(156209,40548,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(156210,40548,'blocks_0_split_5050_content_heading',''),(156211,40548,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(156212,40548,'blocks_0_split_5050_content_text','At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(156213,40548,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(156214,40548,'blocks_0_split_5050_content_actions','1'),(156215,40548,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(156216,40548,'blocks_0_split_5050_content',''),(156217,40548,'_blocks_0_split_5050_content','field_61767afceb8ba'),(156218,40548,'blocks_1_acfe_flexible_toggle','1'),(156219,40548,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(156220,40548,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(156221,40548,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(156222,40548,'blocks_1_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(156223,40548,'_blocks_1_content','field_6193c9b5eac84'),(156224,40548,'blocks_2_acfe_flexible_toggle',''),(156225,40548,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(156226,40548,'blocks_2_acfe_flexible_layout_title','Text Block'),(156227,40548,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(156228,40548,'blocks_2_options_theme','#b61234'),(156229,40548,'_blocks_2_options_theme','field_6176830e2ad17'),(156230,40548,'blocks_2_options',''),(156231,40548,'_blocks_2_options','field_6176830e2ad16'),(156232,40548,'blocks_2_text_block_heading','Proudly introducing our partners'),(156233,40548,'_blocks_2_text_block_heading','field_617669d413097'),(156234,40548,'blocks_2_text_block_content',''),(156235,40548,'_blocks_2_text_block_content','field_617669ec13098'),(156236,40548,'blocks_3_acfe_flexible_toggle',''),(156237,40548,'_blocks_3_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(156238,40548,'blocks_3_acfe_flexible_layout_title','Logos'),(156239,40548,'_blocks_3_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(156240,40548,'blocks_3_options_theme','#ffffff'),(156241,40548,'_blocks_3_options_theme','field_61782954ee966_field_6176830e2ad17'),(156242,40548,'blocks_3_options_format','grid'),(156243,40548,'_blocks_3_options_format','field_61782964ee971'),(156244,40548,'blocks_3_options',''),(156245,40548,'_blocks_3_options','field_61782954ee965'),(156246,40548,'blocks_3_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(156247,40548,'_blocks_3_logos','field_61782954ee96d'),(156248,40548,'blocks_3_title',''),(156249,40548,'_blocks_3_title','field_668fbfdc2daa1'),(156250,40548,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in touch\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(156251,40548,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(156252,40548,'blocks_4_acfe_flexible_toggle',''),(156253,40548,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(156254,40548,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(156255,40548,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(156256,40548,'blocks_4_options_theme','#ffffff'),(156257,40548,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(156258,40548,'blocks_4_options_reverse','0'),(156259,40548,'_blocks_4_options_reverse','field_61768049bb8ac'),(156260,40548,'blocks_4_options',''),(156261,40548,'_blocks_4_options','field_617682517c334'),(156262,40548,'blocks_4_split_5050_image','38323'),(156263,40548,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(156264,40548,'blocks_4_split_5050_video',''),(156265,40548,'_blocks_4_split_5050_video','field_6239f3160848a'),(156266,40548,'blocks_4_split_5050_content_title','Imagine elevating your gym chain’s fitness programmes to a whole new level of effectiveness and safety.'),(156267,40548,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(156268,40548,'blocks_4_split_5050_content_heading',''),(156269,40548,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(156270,40548,'blocks_4_split_5050_content_text','We offer specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.'),(156271,40548,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(156272,40548,'blocks_4_split_5050_content_actions',''),(156273,40548,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(156274,40548,'blocks_4_split_5050_content',''),(156275,40548,'_blocks_4_split_5050_content','field_61767afceb8ba'),(156276,40548,'blocks_5_acfe_flexible_toggle','1'),(156277,40548,'_blocks_5_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(156278,40548,'blocks_5_acfe_flexible_layout_title','Standard/Editorial Content'),(156279,40548,'_blocks_5_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(156280,40548,'blocks_5_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(156281,40548,'_blocks_5_content','field_6193c9b5eac84'),(156282,40548,'blocks_6_acfe_flexible_toggle','1'),(156283,40548,'_blocks_6_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(156284,40548,'blocks_6_acfe_flexible_layout_title','Testimonial Slider'),(156285,40548,'_blocks_6_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(156286,40548,'blocks_6_testimonial_slider_content_title',''),(156287,40548,'_blocks_6_testimonial_slider_content_title','field_617c033b39a60'),(156288,40548,'blocks_6_testimonial_slider_content_heading','Testimonials'),(156289,40548,'_blocks_6_testimonial_slider_content_heading','field_617c033b39a61'),(156290,40548,'blocks_6_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(156291,40548,'_blocks_6_testimonial_slider_content_text','field_617c033b39a62'),(156292,40548,'blocks_6_testimonial_slider_content_actions',''),(156293,40548,'_blocks_6_testimonial_slider_content_actions','field_617c033b39a63'),(156294,40548,'blocks_6_testimonial_slider_content',''),(156295,40548,'_blocks_6_testimonial_slider_content','field_617c033b39a5f'),(156296,40548,'blocks_6_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(156297,40548,'_blocks_6_testimonial_slider_items','field_61812eaeb20eb'),(156298,40548,'blocks_6_testimonial_slider_ambassador_bool','0'),(156299,40548,'_blocks_6_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(156300,40548,'blocks_7_acfe_flexible_toggle',''),(156301,40548,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(156302,40548,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(156303,40548,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(156304,40548,'blocks_7_options_alignment','center'),(156305,40548,'_blocks_7_options_alignment','field_61769449f5490'),(156306,40548,'blocks_7_options',''),(156307,40548,'_blocks_7_options','field_617693e1428f0'),(156308,40548,'blocks_7_promo_panel_image','39637'),(156309,40548,'_blocks_7_promo_panel_image','field_617693e1428f3'),(156310,40548,'blocks_7_promo_panel_content_heading','Get in touch'),(156311,40548,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(156312,40548,'blocks_7_promo_panel_content_text','Get in touch with us today to discuss how we can work together to better our sector. '),(156313,40548,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(156314,40548,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:5:\"Email\";s:3:\"url\";s:37:\"mailto:info@biomechanicseducation.com\";s:6:\"target\";s:0:\"\";}'),(156315,40548,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(156316,40548,'blocks_7_promo_panel_content_actions_1_button','a:3:{s:5:\"title\";s:8:\"Call now\";s:3:\"url\";s:15:\"tel:02038416151\";s:6:\"target\";s:0:\"\";}'),(156317,40548,'_blocks_7_promo_panel_content_actions_1_button','field_617693e1428f9'),(156318,40548,'blocks_7_promo_panel_content_actions','2'),(156319,40548,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(156320,40548,'blocks_7_promo_panel_content',''),(156321,40548,'_blocks_7_promo_panel_content','field_617693e1428f4'),(156322,40549,'hide_hero','0'),(156323,40549,'_hide_hero','field_66a2380fcda39'),(156324,40549,'hero_title','Our Partners'),(156325,40549,'_hero_title','field_617571fe285e8'),(156326,40549,'hero_text',''),(156327,40549,'_hero_text','field_6175723c285e9'),(156328,40549,'hero_actions','1'),(156329,40549,'_hero_actions','field_61757270285ea'),(156330,40549,'hero_style','default'),(156331,40549,'_hero_style','field_62051d9dc5324'),(156332,40549,'hero_image_pos_x','right'),(156333,40549,'_hero_image_pos_x','field_62ec3d05390bb'),(156334,40549,'hero_image_pos_y','top'),(156335,40549,'_hero_image_pos_y','field_62ec3d05390bc'),(156336,40549,'hero_image_pos',''),(156337,40549,'_hero_image_pos','field_62ec3d05390ba'),(156338,40549,'fft_hide_from_listings','0'),(156339,40549,'_fft_hide_from_listings','field_61f1320446ab2'),(156340,40549,'fft_page_format','default'),(156341,40549,'_fft_page_format','field_61ae213f1f218'),(156342,40549,'fft_hide_nav','0'),(156343,40549,'_fft_hide_nav','field_635bd5e43527c'),(156344,40549,'fft_hide_header_call_to_action','0'),(156345,40549,'_fft_hide_header_call_to_action','field_635bd6723527d'),(156346,40549,'fft_page_sitemap','0'),(156347,40549,'_fft_page_sitemap','field_61af9b34e8181'),(156348,40549,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:16:\"standard_content\";i:2;s:10:\"text_block\";i:3;s:5:\"logos\";i:4;s:10:\"split_5050\";i:5;s:16:\"standard_content\";i:6;s:18:\"testimonial_slider\";i:7;s:11:\"promo_panel\";}'),(156349,40549,'_blocks','field_6176696113096'),(156350,40549,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(156351,40549,'_hero_actions_0_button','field_61757281285eb'),(156352,40549,'_thumbnail_id','40503'),(156353,40549,'__thumbnail_id','field_617570855ddaf'),(156354,40549,'blocks_0_acfe_flexible_toggle',''),(156355,40549,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(156356,40549,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(156357,40549,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(156358,40549,'blocks_0_options_theme','#ffffff'),(156359,40549,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(156360,40549,'blocks_0_options_reverse','0'),(156361,40549,'_blocks_0_options_reverse','field_61768049bb8ac'),(156362,40549,'blocks_0_options',''),(156363,40549,'_blocks_0_options','field_617682517c334'),(156364,40549,'blocks_0_split_5050_image','36390'),(156365,40549,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(156366,40549,'blocks_0_split_5050_video',''),(156367,40549,'_blocks_0_split_5050_video','field_6239f3160848a'),(156368,40549,'blocks_0_split_5050_content_title','Working in Partnership'),(156369,40549,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(156370,40549,'blocks_0_split_5050_content_heading',''),(156371,40549,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(156372,40549,'blocks_0_split_5050_content_text','At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(156373,40549,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(156374,40549,'blocks_0_split_5050_content_actions','1'),(156375,40549,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(156376,40549,'blocks_0_split_5050_content',''),(156377,40549,'_blocks_0_split_5050_content','field_61767afceb8ba'),(156378,40549,'blocks_1_acfe_flexible_toggle','1'),(156379,40549,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(156380,40549,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(156381,40549,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(156382,40549,'blocks_1_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(156383,40549,'_blocks_1_content','field_6193c9b5eac84'),(156384,40549,'blocks_2_acfe_flexible_toggle',''),(156385,40549,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(156386,40549,'blocks_2_acfe_flexible_layout_title','Text Block'),(156387,40549,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(156388,40549,'blocks_2_options_theme','#b61234'),(156389,40549,'_blocks_2_options_theme','field_6176830e2ad17'),(156390,40549,'blocks_2_options',''),(156391,40549,'_blocks_2_options','field_6176830e2ad16'),(156392,40549,'blocks_2_text_block_heading','Proudly introducing our partners'),(156393,40549,'_blocks_2_text_block_heading','field_617669d413097'),(156394,40549,'blocks_2_text_block_content',''),(156395,40549,'_blocks_2_text_block_content','field_617669ec13098'),(156396,40549,'blocks_3_acfe_flexible_toggle',''),(156397,40549,'_blocks_3_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(156398,40549,'blocks_3_acfe_flexible_layout_title','Logos'),(156399,40549,'_blocks_3_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(156400,40549,'blocks_3_options_theme','#ffffff'),(156401,40549,'_blocks_3_options_theme','field_61782954ee966_field_6176830e2ad17'),(156402,40549,'blocks_3_options_format','grid'),(156403,40549,'_blocks_3_options_format','field_61782964ee971'),(156404,40549,'blocks_3_options',''),(156405,40549,'_blocks_3_options','field_61782954ee965'),(156406,40549,'blocks_3_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(156407,40549,'_blocks_3_logos','field_61782954ee96d'),(156408,40549,'blocks_3_title',''),(156409,40549,'_blocks_3_title','field_668fbfdc2daa1'),(156410,40549,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in touch\";s:3:\"url\";s:12:\"#row-39284-5\";s:6:\"target\";s:0:\"\";}'),(156411,40549,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(156412,40549,'blocks_4_acfe_flexible_toggle',''),(156413,40549,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(156414,40549,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(156415,40549,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(156416,40549,'blocks_4_options_theme','#ffffff'),(156417,40549,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(156418,40549,'blocks_4_options_reverse','0'),(156419,40549,'_blocks_4_options_reverse','field_61768049bb8ac'),(156420,40549,'blocks_4_options',''),(156421,40549,'_blocks_4_options','field_617682517c334'),(156422,40549,'blocks_4_split_5050_image','38323'),(156423,40549,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(156424,40549,'blocks_4_split_5050_video',''),(156425,40549,'_blocks_4_split_5050_video','field_6239f3160848a'),(156426,40549,'blocks_4_split_5050_content_title','Imagine elevating your gym chain’s fitness programmes to a whole new level of effectiveness and safety.'),(156427,40549,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(156428,40549,'blocks_4_split_5050_content_heading',''),(156429,40549,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(156430,40549,'blocks_4_split_5050_content_text','We offer specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.'),(156431,40549,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(156432,40549,'blocks_4_split_5050_content_actions',''),(156433,40549,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(156434,40549,'blocks_4_split_5050_content',''),(156435,40549,'_blocks_4_split_5050_content','field_61767afceb8ba'),(156436,40549,'blocks_5_acfe_flexible_toggle','1'),(156437,40549,'_blocks_5_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(156438,40549,'blocks_5_acfe_flexible_layout_title','Standard/Editorial Content'),(156439,40549,'_blocks_5_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(156440,40549,'blocks_5_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(156441,40549,'_blocks_5_content','field_6193c9b5eac84'),(156442,40549,'blocks_6_acfe_flexible_toggle','1'),(156443,40549,'_blocks_6_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(156444,40549,'blocks_6_acfe_flexible_layout_title','Testimonial Slider'),(156445,40549,'_blocks_6_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(156446,40549,'blocks_6_testimonial_slider_content_title',''),(156447,40549,'_blocks_6_testimonial_slider_content_title','field_617c033b39a60'),(156448,40549,'blocks_6_testimonial_slider_content_heading','Testimonials'),(156449,40549,'_blocks_6_testimonial_slider_content_heading','field_617c033b39a61'),(156450,40549,'blocks_6_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(156451,40549,'_blocks_6_testimonial_slider_content_text','field_617c033b39a62'),(156452,40549,'blocks_6_testimonial_slider_content_actions',''),(156453,40549,'_blocks_6_testimonial_slider_content_actions','field_617c033b39a63'),(156454,40549,'blocks_6_testimonial_slider_content',''),(156455,40549,'_blocks_6_testimonial_slider_content','field_617c033b39a5f'),(156456,40549,'blocks_6_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(156457,40549,'_blocks_6_testimonial_slider_items','field_61812eaeb20eb'),(156458,40549,'blocks_6_testimonial_slider_ambassador_bool','0'),(156459,40549,'_blocks_6_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(156460,40549,'blocks_7_acfe_flexible_toggle',''),(156461,40549,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(156462,40549,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(156463,40549,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(156464,40549,'blocks_7_options_alignment','center'),(156465,40549,'_blocks_7_options_alignment','field_61769449f5490'),(156466,40549,'blocks_7_options',''),(156467,40549,'_blocks_7_options','field_617693e1428f0'),(156468,40549,'blocks_7_promo_panel_image','39637'),(156469,40549,'_blocks_7_promo_panel_image','field_617693e1428f3'),(156470,40549,'blocks_7_promo_panel_content_heading','Get in touch'),(156471,40549,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(156472,40549,'blocks_7_promo_panel_content_text','Get in touch with us today to discuss how we can work together to better our sector. '),(156473,40549,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(156474,40549,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:5:\"Email\";s:3:\"url\";s:37:\"mailto:info@biomechanicseducation.com\";s:6:\"target\";s:0:\"\";}'),(156475,40549,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(156476,40549,'blocks_7_promo_panel_content_actions_1_button','a:3:{s:5:\"title\";s:8:\"Call now\";s:3:\"url\";s:15:\"tel:02038416151\";s:6:\"target\";s:0:\"\";}'),(156477,40549,'_blocks_7_promo_panel_content_actions_1_button','field_617693e1428f9'),(156478,40549,'blocks_7_promo_panel_content_actions','2'),(156479,40549,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(156480,40549,'blocks_7_promo_panel_content',''),(156481,40549,'_blocks_7_promo_panel_content','field_617693e1428f4'),(156482,39270,'_thumbnail_id','40294'),(156483,40550,'hide_hero','0'),(156484,40550,'_hide_hero','field_66a2380fcda39'),(156485,40550,'hero_title','Download your price guide'),(156486,40550,'_hero_title','field_617571fe285e8'),(156487,40550,'hero_text',''),(156488,40550,'_hero_text','field_6175723c285e9'),(156489,40550,'hero_actions',''),(156490,40550,'_hero_actions','field_61757270285ea'),(156491,40550,'hero_style','default'),(156492,40550,'_hero_style','field_62051d9dc5324'),(156493,40550,'hero_image_pos_x','right'),(156494,40550,'_hero_image_pos_x','field_62ec3d05390bb'),(156495,40550,'hero_image_pos_y','top'),(156496,40550,'_hero_image_pos_y','field_62ec3d05390bc'),(156497,40550,'hero_image_pos',''),(156498,40550,'_hero_image_pos','field_62ec3d05390ba'),(156499,40550,'fft_hide_from_listings','0'),(156500,40550,'_fft_hide_from_listings','field_61f1320446ab2'),(156501,40550,'fft_page_format','default'),(156502,40550,'_fft_page_format','field_61ae213f1f218'),(156503,40550,'fft_hide_nav','0'),(156504,40550,'_fft_hide_nav','field_635bd5e43527c'),(156505,40550,'fft_hide_header_call_to_action','0'),(156506,40550,'_fft_hide_header_call_to_action','field_635bd6723527d'),(156507,40550,'fft_page_sitemap','0'),(156508,40550,'_fft_page_sitemap','field_61af9b34e8181'),(156509,40550,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:10:\"link_stack\";i:3;s:18:\"testimonial_slider\";}'),(156510,40550,'_blocks','field_6176696113096'),(156511,40550,'blocks_2_acfe_flexible_toggle',''),(156512,40550,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(156513,40550,'blocks_2_acfe_flexible_layout_title','Link Stack'),(156514,40550,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(156515,40550,'blocks_2_options_theme','#ffffff'),(156516,40550,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(156517,40550,'blocks_2_options',''),(156518,40550,'_blocks_2_options','field_6177b758246ae'),(156519,40550,'blocks_2_link_stack_content_title',''),(156520,40550,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(156521,40550,'blocks_2_link_stack_content_heading','Discover our expertise'),(156522,40550,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(156523,40550,'blocks_2_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(156524,40550,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(156525,40550,'blocks_2_link_stack_content_actions',''),(156526,40550,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(156527,40550,'blocks_2_link_stack_content',''),(156528,40550,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(156529,40550,'blocks_2_link_stack_0_label','Personal Training'),(156530,40550,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(156531,40550,'blocks_2_link_stack_0_title','Discover Biomechanics in Personal Training'),(156532,40550,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(156533,40550,'blocks_2_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(156534,40550,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(156535,40550,'blocks_2_link_stack_1_label','Pilates'),(156536,40550,'_blocks_2_link_stack_1_label','field_6177b80900d00'),(156537,40550,'blocks_2_link_stack_1_title','Discover Biomechanics in Pilates'),(156538,40550,'_blocks_2_link_stack_1_title','field_6177b80f00d01'),(156539,40550,'blocks_2_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(156540,40550,'_blocks_2_link_stack_1_url','field_6177b82200d02'),(156541,40550,'blocks_2_link_stack','6'),(156542,40550,'_blocks_2_link_stack','field_6177b7f600cff'),(156543,40550,'blocks_2_link_stack_2_label','Sports Coaches'),(156544,40550,'_blocks_2_link_stack_2_label','field_6177b80900d00'),(156545,40550,'blocks_2_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(156546,40550,'_blocks_2_link_stack_2_title','field_6177b80f00d01'),(156547,40550,'blocks_2_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(156548,40550,'_blocks_2_link_stack_2_url','field_6177b82200d02'),(156549,40550,'blocks_2_link_stack_3_label','SMT'),(156550,40550,'_blocks_2_link_stack_3_label','field_6177b80900d00'),(156551,40550,'blocks_2_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(156552,40550,'_blocks_2_link_stack_3_title','field_6177b80f00d01'),(156553,40550,'blocks_2_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(156554,40550,'_blocks_2_link_stack_3_url','field_6177b82200d02'),(156555,40550,'blocks_2_link_stack_4_label','Podiatrists'),(156556,40550,'_blocks_2_link_stack_4_label','field_6177b80900d00'),(156557,40550,'blocks_2_link_stack_4_title','Discover Biomechanics in Podiatry'),(156558,40550,'_blocks_2_link_stack_4_title','field_6177b80f00d01'),(156559,40550,'blocks_2_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(156560,40550,'_blocks_2_link_stack_4_url','field_6177b82200d02'),(156561,40550,'blocks_2_link_stack_5_label','Biomechanics Coach'),(156562,40550,'_blocks_2_link_stack_5_label','field_6177b80900d00'),(156563,40550,'blocks_2_link_stack_5_title','How to Become a Biomechanics Coach'),(156564,40550,'_blocks_2_link_stack_5_title','field_6177b80f00d01'),(156565,40550,'blocks_2_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(156566,40550,'_blocks_2_link_stack_5_url','field_6177b82200d02'),(156567,40550,'blocks_3_acfe_flexible_toggle',''),(156568,40550,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(156569,40550,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(156570,40550,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(156571,40550,'blocks_3_testimonial_slider_content_title',''),(156572,40550,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(156573,40550,'blocks_3_testimonial_slider_content_heading','Testimonials'),(156574,40550,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(156575,40550,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(156576,40550,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(156577,40550,'blocks_3_testimonial_slider_content_actions',''),(156578,40550,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(156579,40550,'blocks_3_testimonial_slider_content',''),(156580,40550,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(156581,40550,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(156582,40550,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(156583,40550,'blocks_3_testimonial_slider_ambassador_bool','0'),(156584,40550,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(156585,40550,'blocks_0_acfe_flexible_toggle',''),(156586,40550,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(156587,40550,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(156588,40550,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(156589,40550,'blocks_0_options_theme','#ffffff'),(156590,40550,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(156591,40550,'blocks_0_options_reverse','0'),(156592,40550,'_blocks_0_options_reverse','field_61768049bb8ac'),(156593,40550,'blocks_0_options',''),(156594,40550,'_blocks_0_options','field_617682517c334'),(156595,40550,'blocks_0_split_5050_image','39271'),(156596,40550,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(156597,40550,'blocks_0_split_5050_video',''),(156598,40550,'_blocks_0_split_5050_video','field_6239f3160848a'),(156599,40550,'blocks_0_split_5050_content_title',''),(156600,40550,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(156601,40550,'blocks_0_split_5050_content_heading','What\'s included in this guide? '),(156602,40550,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(156603,40550,'blocks_0_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(156604,40550,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(156605,40550,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(156606,40550,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(156607,40550,'blocks_0_split_5050_content_actions','1'),(156608,40550,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(156609,40550,'blocks_0_split_5050_content',''),(156610,40550,'_blocks_0_split_5050_content','field_61767afceb8ba'),(156611,40550,'blocks_1_acfe_flexible_toggle',''),(156612,40550,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(156613,40550,'blocks_1_acfe_flexible_layout_title','Form'),(156614,40550,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(156615,40550,'blocks_1_row_content_format','standard'),(156616,40550,'_blocks_1_row_content_format','field_6481ead962881'),(156617,40550,'blocks_1_row_content_title','Enquire Now'),(156618,40550,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(156619,40550,'blocks_1_row_content_heading','Course Information and Price Guide'),(156620,40550,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(156621,40550,'blocks_1_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(156622,40550,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(156623,40550,'blocks_1_row_content_actions',''),(156624,40550,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(156625,40550,'blocks_1_row_content',''),(156626,40550,'_blocks_1_row_content','field_61a0f5f5b3db0'),(156627,40550,'blocks_1_row_form',''),(156628,40550,'_blocks_1_row_form','field_61a4ff2c0b08e'),(156629,40550,'blocks_1_row_form_button_label',''),(156630,40550,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(156631,40550,'_thumbnail_id','40294'),(156632,40550,'__thumbnail_id','field_617570855ddaf'),(156633,39270,'blocks_0_acfe_flexible_toggle',''),(156634,39270,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(156635,39270,'blocks_0_acfe_flexible_layout_title','Form'),(156636,39270,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(156637,39270,'blocks_0_row_content_format','standard'),(156638,39270,'_blocks_0_row_content_format','field_6481ead962881'),(156639,39270,'blocks_0_row_content_title','Enquire Now'),(156640,39270,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(156641,39270,'blocks_0_row_content_heading','Course Information and Price Guide'),(156642,39270,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(156643,39270,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain an overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(156644,39270,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(156645,39270,'blocks_0_row_content_actions',''),(156646,39270,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(156647,39270,'blocks_0_row_content',''),(156648,39270,'_blocks_0_row_content','field_61a0f5f5b3db0'),(156649,39270,'blocks_0_row_form','40394'),(156650,39270,'_blocks_0_row_form','field_61a4ff2c0b08e'),(156651,39270,'blocks_0_row_form_button_label',''),(156652,39270,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(156653,39270,'blocks_1_acfe_flexible_toggle','1'),(156654,39270,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(156655,39270,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(156656,39270,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(156657,39270,'blocks_1_options_theme','#ffffff'),(156658,39270,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(156659,39270,'blocks_1_options_reverse','0'),(156660,39270,'_blocks_1_options_reverse','field_61768049bb8ac'),(156661,39270,'blocks_1_options',''),(156662,39270,'_blocks_1_options','field_617682517c334'),(156663,39270,'blocks_1_split_5050_image','39271'),(156664,39270,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(156665,39270,'blocks_1_split_5050_video',''),(156666,39270,'_blocks_1_split_5050_video','field_6239f3160848a'),(156667,39270,'blocks_1_split_5050_content_title',''),(156668,39270,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(156669,39270,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(156670,39270,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(156671,39270,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(156672,39270,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(156673,39270,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(156674,39270,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(156675,39270,'blocks_1_split_5050_content_actions','1'),(156676,39270,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(156677,39270,'blocks_1_split_5050_content',''),(156678,39270,'_blocks_1_split_5050_content','field_61767afceb8ba'),(156679,40551,'hide_hero','0'),(156680,40551,'_hide_hero','field_66a2380fcda39'),(156681,40551,'hero_title','Download your price guide'),(156682,40551,'_hero_title','field_617571fe285e8'),(156683,40551,'hero_text',''),(156684,40551,'_hero_text','field_6175723c285e9'),(156685,40551,'hero_actions',''),(156686,40551,'_hero_actions','field_61757270285ea'),(156687,40551,'hero_style','default'),(156688,40551,'_hero_style','field_62051d9dc5324'),(156689,40551,'hero_image_pos_x','right'),(156690,40551,'_hero_image_pos_x','field_62ec3d05390bb'),(156691,40551,'hero_image_pos_y','top'),(156692,40551,'_hero_image_pos_y','field_62ec3d05390bc'),(156693,40551,'hero_image_pos',''),(156694,40551,'_hero_image_pos','field_62ec3d05390ba'),(156695,40551,'fft_hide_from_listings','0'),(156696,40551,'_fft_hide_from_listings','field_61f1320446ab2'),(156697,40551,'fft_page_format','default'),(156698,40551,'_fft_page_format','field_61ae213f1f218'),(156699,40551,'fft_hide_nav','0'),(156700,40551,'_fft_hide_nav','field_635bd5e43527c'),(156701,40551,'fft_hide_header_call_to_action','0'),(156702,40551,'_fft_hide_header_call_to_action','field_635bd6723527d'),(156703,40551,'fft_page_sitemap','0'),(156704,40551,'_fft_page_sitemap','field_61af9b34e8181'),(156705,40551,'blocks','a:4:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"link_stack\";i:3;s:18:\"testimonial_slider\";}'),(156706,40551,'_blocks','field_6176696113096'),(156707,40551,'blocks_2_acfe_flexible_toggle',''),(156708,40551,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(156709,40551,'blocks_2_acfe_flexible_layout_title','Link Stack'),(156710,40551,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(156711,40551,'blocks_2_options_theme','#ffffff'),(156712,40551,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(156713,40551,'blocks_2_options',''),(156714,40551,'_blocks_2_options','field_6177b758246ae'),(156715,40551,'blocks_2_link_stack_content_title',''),(156716,40551,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(156717,40551,'blocks_2_link_stack_content_heading','Discover our expertise'),(156718,40551,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(156719,40551,'blocks_2_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(156720,40551,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(156721,40551,'blocks_2_link_stack_content_actions',''),(156722,40551,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(156723,40551,'blocks_2_link_stack_content',''),(156724,40551,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(156725,40551,'blocks_2_link_stack_0_label','Personal Training'),(156726,40551,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(156727,40551,'blocks_2_link_stack_0_title','Discover Biomechanics in Personal Training'),(156728,40551,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(156729,40551,'blocks_2_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(156730,40551,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(156731,40551,'blocks_2_link_stack_1_label','Pilates'),(156732,40551,'_blocks_2_link_stack_1_label','field_6177b80900d00'),(156733,40551,'blocks_2_link_stack_1_title','Discover Biomechanics in Pilates'),(156734,40551,'_blocks_2_link_stack_1_title','field_6177b80f00d01'),(156735,40551,'blocks_2_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(156736,40551,'_blocks_2_link_stack_1_url','field_6177b82200d02'),(156737,40551,'blocks_2_link_stack','6'),(156738,40551,'_blocks_2_link_stack','field_6177b7f600cff'),(156739,40551,'blocks_2_link_stack_2_label','Sports Coaches'),(156740,40551,'_blocks_2_link_stack_2_label','field_6177b80900d00'),(156741,40551,'blocks_2_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(156742,40551,'_blocks_2_link_stack_2_title','field_6177b80f00d01'),(156743,40551,'blocks_2_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(156744,40551,'_blocks_2_link_stack_2_url','field_6177b82200d02'),(156745,40551,'blocks_2_link_stack_3_label','SMT'),(156746,40551,'_blocks_2_link_stack_3_label','field_6177b80900d00'),(156747,40551,'blocks_2_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(156748,40551,'_blocks_2_link_stack_3_title','field_6177b80f00d01'),(156749,40551,'blocks_2_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(156750,40551,'_blocks_2_link_stack_3_url','field_6177b82200d02'),(156751,40551,'blocks_2_link_stack_4_label','Podiatrists'),(156752,40551,'_blocks_2_link_stack_4_label','field_6177b80900d00'),(156753,40551,'blocks_2_link_stack_4_title','Discover Biomechanics in Podiatry'),(156754,40551,'_blocks_2_link_stack_4_title','field_6177b80f00d01'),(156755,40551,'blocks_2_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(156756,40551,'_blocks_2_link_stack_4_url','field_6177b82200d02'),(156757,40551,'blocks_2_link_stack_5_label','Biomechanics Coach'),(156758,40551,'_blocks_2_link_stack_5_label','field_6177b80900d00'),(156759,40551,'blocks_2_link_stack_5_title','How to Become a Biomechanics Coach'),(156760,40551,'_blocks_2_link_stack_5_title','field_6177b80f00d01'),(156761,40551,'blocks_2_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(156762,40551,'_blocks_2_link_stack_5_url','field_6177b82200d02'),(156763,40551,'blocks_3_acfe_flexible_toggle',''),(156764,40551,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(156765,40551,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(156766,40551,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(156767,40551,'blocks_3_testimonial_slider_content_title',''),(156768,40551,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(156769,40551,'blocks_3_testimonial_slider_content_heading','Testimonials'),(156770,40551,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(156771,40551,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(156772,40551,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(156773,40551,'blocks_3_testimonial_slider_content_actions',''),(156774,40551,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(156775,40551,'blocks_3_testimonial_slider_content',''),(156776,40551,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(156777,40551,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(156778,40551,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(156779,40551,'blocks_3_testimonial_slider_ambassador_bool','0'),(156780,40551,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(156781,40551,'_thumbnail_id','40294'),(156782,40551,'__thumbnail_id','field_617570855ddaf'),(156783,40551,'blocks_0_acfe_flexible_toggle',''),(156784,40551,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(156785,40551,'blocks_0_acfe_flexible_layout_title','Form'),(156786,40551,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(156787,40551,'blocks_0_row_content_format','standard'),(156788,40551,'_blocks_0_row_content_format','field_6481ead962881'),(156789,40551,'blocks_0_row_content_title','Enquire Now'),(156790,40551,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(156791,40551,'blocks_0_row_content_heading','Course Information and Price Guide'),(156792,40551,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(156793,40551,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(156794,40551,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(156795,40551,'blocks_0_row_content_actions',''),(156796,40551,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(156797,40551,'blocks_0_row_content',''),(156798,40551,'_blocks_0_row_content','field_61a0f5f5b3db0'),(156799,40551,'blocks_0_row_form','40394'),(156800,40551,'_blocks_0_row_form','field_61a4ff2c0b08e'),(156801,40551,'blocks_0_row_form_button_label',''),(156802,40551,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(156803,40551,'blocks_1_acfe_flexible_toggle',''),(156804,40551,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(156805,40551,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(156806,40551,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(156807,40551,'blocks_1_options_theme','#ffffff'),(156808,40551,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(156809,40551,'blocks_1_options_reverse','0'),(156810,40551,'_blocks_1_options_reverse','field_61768049bb8ac'),(156811,40551,'blocks_1_options',''),(156812,40551,'_blocks_1_options','field_617682517c334'),(156813,40551,'blocks_1_split_5050_image','39271'),(156814,40551,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(156815,40551,'blocks_1_split_5050_video',''),(156816,40551,'_blocks_1_split_5050_video','field_6239f3160848a'),(156817,40551,'blocks_1_split_5050_content_title',''),(156818,40551,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(156819,40551,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(156820,40551,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(156821,40551,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(156822,40551,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(156823,40551,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(156824,40551,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(156825,40551,'blocks_1_split_5050_content_actions','1'),(156826,40551,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(156827,40551,'blocks_1_split_5050_content',''),(156828,40551,'_blocks_1_split_5050_content','field_61767afceb8ba'),(156829,39270,'blocks_2_acfe_flexible_toggle',''),(156830,39270,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(156831,39270,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(156832,39270,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(156833,39270,'blocks_2_options_theme','#ffffff'),(156834,39270,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(156835,39270,'blocks_2_options_reverse','0'),(156836,39270,'_blocks_2_options_reverse','field_61768049bb8ac'),(156837,39270,'blocks_2_options',''),(156838,39270,'_blocks_2_options','field_617682517c334'),(156839,39270,'blocks_2_split_5050_image','39271'),(156840,39270,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(156841,39270,'blocks_2_split_5050_video',''),(156842,39270,'_blocks_2_split_5050_video','field_6239f3160848a'),(156843,39270,'blocks_2_split_5050_content_title',''),(156844,39270,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(156845,39270,'blocks_2_split_5050_content_heading','What\'s included in this guide?'),(156846,39270,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(156847,39270,'blocks_2_split_5050_content_text','[accordion title=\"Understand our prices\" content=\"we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\"]\r\n\r\n[accordion title=\"Get to know our courses\" content=\"Access a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you’ll receive, awarding bodies and accreditations.\"]\r\n\r\n[accordion title=\"Learn about us as a business\" content=\"Get valuable information about Biomechanics Education and Future Fit Group. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.\"]'),(156848,39270,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(156849,39270,'blocks_2_split_5050_content_actions','1'),(156850,39270,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(156851,39270,'blocks_2_split_5050_content',''),(156852,39270,'_blocks_2_split_5050_content','field_61767afceb8ba'),(156927,40552,'hide_hero','0'),(156928,40552,'_hide_hero','field_66a2380fcda39'),(156929,40552,'hero_title','Download your price guide'),(156930,40552,'_hero_title','field_617571fe285e8'),(156931,40552,'hero_text',''),(156932,40552,'_hero_text','field_6175723c285e9'),(156933,40552,'hero_actions',''),(156934,40552,'_hero_actions','field_61757270285ea'),(156935,40552,'hero_style','default'),(156936,40552,'_hero_style','field_62051d9dc5324'),(156937,40552,'hero_image_pos_x','right'),(156938,40552,'_hero_image_pos_x','field_62ec3d05390bb'),(156939,40552,'hero_image_pos_y','top'),(156940,40552,'_hero_image_pos_y','field_62ec3d05390bc'),(156941,40552,'hero_image_pos',''),(156942,40552,'_hero_image_pos','field_62ec3d05390ba'),(156943,40552,'fft_hide_from_listings','0'),(156944,40552,'_fft_hide_from_listings','field_61f1320446ab2'),(156945,40552,'fft_page_format','default'),(156946,40552,'_fft_page_format','field_61ae213f1f218'),(156947,40552,'fft_hide_nav','0'),(156948,40552,'_fft_hide_nav','field_635bd5e43527c'),(156949,40552,'fft_hide_header_call_to_action','0'),(156950,40552,'_fft_hide_header_call_to_action','field_635bd6723527d'),(156951,40552,'fft_page_sitemap','0'),(156952,40552,'_fft_page_sitemap','field_61af9b34e8181'),(156953,40552,'blocks','a:5:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"link_stack\";i:4;s:18:\"testimonial_slider\";}'),(156954,40552,'_blocks','field_6176696113096'),(156955,40552,'_thumbnail_id','40294'),(156956,40552,'__thumbnail_id','field_617570855ddaf'),(156957,40552,'blocks_0_acfe_flexible_toggle',''),(156958,40552,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(156959,40552,'blocks_0_acfe_flexible_layout_title','Form'),(156960,40552,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(156961,40552,'blocks_0_row_content_format','standard'),(156962,40552,'_blocks_0_row_content_format','field_6481ead962881'),(156963,40552,'blocks_0_row_content_title','Enquire Now'),(156964,40552,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(156965,40552,'blocks_0_row_content_heading','Course Information and Price Guide'),(156966,40552,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(156967,40552,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(156968,40552,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(156969,40552,'blocks_0_row_content_actions',''),(156970,40552,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(156971,40552,'blocks_0_row_content',''),(156972,40552,'_blocks_0_row_content','field_61a0f5f5b3db0'),(156973,40552,'blocks_0_row_form','40394'),(156974,40552,'_blocks_0_row_form','field_61a4ff2c0b08e'),(156975,40552,'blocks_0_row_form_button_label',''),(156976,40552,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(156977,40552,'blocks_1_acfe_flexible_toggle',''),(156978,40552,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(156979,40552,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(156980,40552,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(156981,40552,'blocks_1_options_theme','#ffffff'),(156982,40552,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(156983,40552,'blocks_1_options_reverse','0'),(156984,40552,'_blocks_1_options_reverse','field_61768049bb8ac'),(156985,40552,'blocks_1_options',''),(156986,40552,'_blocks_1_options','field_617682517c334'),(156987,40552,'blocks_1_split_5050_image','39271'),(156988,40552,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(156989,40552,'blocks_1_split_5050_video',''),(156990,40552,'_blocks_1_split_5050_video','field_6239f3160848a'),(156991,40552,'blocks_1_split_5050_content_title',''),(156992,40552,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(156993,40552,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(156994,40552,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(156995,40552,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(156996,40552,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(156997,40552,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(156998,40552,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(156999,40552,'blocks_1_split_5050_content_actions','1'),(157000,40552,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(157001,40552,'blocks_1_split_5050_content',''),(157002,40552,'_blocks_1_split_5050_content','field_61767afceb8ba'),(157003,40552,'blocks_2_acfe_flexible_toggle',''),(157004,40552,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(157005,40552,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(157006,40552,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(157007,40552,'blocks_2_options_theme','#ffffff'),(157008,40552,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(157009,40552,'blocks_2_options_reverse','0'),(157010,40552,'_blocks_2_options_reverse','field_61768049bb8ac'),(157011,40552,'blocks_2_options',''),(157012,40552,'_blocks_2_options','field_617682517c334'),(157013,40552,'blocks_2_split_5050_image','39271'),(157014,40552,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(157015,40552,'blocks_2_split_5050_video',''),(157016,40552,'_blocks_2_split_5050_video','field_6239f3160848a'),(157017,40552,'blocks_2_split_5050_content_title',''),(157018,40552,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(157019,40552,'blocks_2_split_5050_content_heading','What\'s included in this guide?'),(157020,40552,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(157021,40552,'blocks_2_split_5050_content_text','[accordion title=\"Understand our prices\" content=\"we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\"]\r\n\r\n[accordion title=\"Get to know our courses\" content=\"Access a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you’ll receive, awarding bodies and accreditations.\"]\r\n\r\n[accordion title=\"Learn about us as a business\" content=\"Get valuable information about Biomechanics Education and Future Fit Group. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.\"]'),(157022,40552,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(157023,40552,'blocks_2_split_5050_content_actions',''),(157024,40552,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(157025,40552,'blocks_2_split_5050_content',''),(157026,40552,'_blocks_2_split_5050_content','field_61767afceb8ba'),(157027,40552,'blocks_3_acfe_flexible_toggle',''),(157028,40552,'_blocks_3_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(157029,40552,'blocks_3_acfe_flexible_layout_title','Link Stack'),(157030,40552,'_blocks_3_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(157031,40552,'blocks_3_options_theme','#ffffff'),(157032,40552,'_blocks_3_options_theme','field_6177b758246af_field_6176830e2ad17'),(157033,40552,'blocks_3_options',''),(157034,40552,'_blocks_3_options','field_6177b758246ae'),(157035,40552,'blocks_3_link_stack_content_title',''),(157036,40552,'_blocks_3_link_stack_content_title','field_6177b7b600cf9'),(157037,40552,'blocks_3_link_stack_content_heading','Discover our expertise'),(157038,40552,'_blocks_3_link_stack_content_heading','field_6177b7b600cfa'),(157039,40552,'blocks_3_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(157040,40552,'_blocks_3_link_stack_content_text','field_6177b7b600cfb'),(157041,40552,'blocks_3_link_stack_content_actions',''),(157042,40552,'_blocks_3_link_stack_content_actions','field_6177b7b600cfc'),(157043,40552,'blocks_3_link_stack_content',''),(157044,40552,'_blocks_3_link_stack_content','field_6177b7b600cf8'),(157045,40552,'blocks_3_link_stack_0_label','Personal Training'),(157046,40552,'_blocks_3_link_stack_0_label','field_6177b80900d00'),(157047,40552,'blocks_3_link_stack_0_title','Discover Biomechanics in Personal Training'),(157048,40552,'_blocks_3_link_stack_0_title','field_6177b80f00d01'),(157049,40552,'blocks_3_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(157050,40552,'_blocks_3_link_stack_0_url','field_6177b82200d02'),(157051,40552,'blocks_3_link_stack_1_label','Pilates'),(157052,40552,'_blocks_3_link_stack_1_label','field_6177b80900d00'),(157053,40552,'blocks_3_link_stack_1_title','Discover Biomechanics in Pilates'),(157054,40552,'_blocks_3_link_stack_1_title','field_6177b80f00d01'),(157055,40552,'blocks_3_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(157056,40552,'_blocks_3_link_stack_1_url','field_6177b82200d02'),(157057,40552,'blocks_3_link_stack_2_label','Sports Coaches'),(157058,40552,'_blocks_3_link_stack_2_label','field_6177b80900d00'),(157059,40552,'blocks_3_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(157060,40552,'_blocks_3_link_stack_2_title','field_6177b80f00d01'),(157061,40552,'blocks_3_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(157062,40552,'_blocks_3_link_stack_2_url','field_6177b82200d02'),(157063,40552,'blocks_3_link_stack_3_label','SMT'),(157064,40552,'_blocks_3_link_stack_3_label','field_6177b80900d00'),(157065,40552,'blocks_3_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(157066,40552,'_blocks_3_link_stack_3_title','field_6177b80f00d01'),(157067,40552,'blocks_3_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(157068,40552,'_blocks_3_link_stack_3_url','field_6177b82200d02'),(157069,40552,'blocks_3_link_stack_4_label','Podiatrists'),(157070,40552,'_blocks_3_link_stack_4_label','field_6177b80900d00'),(157071,40552,'blocks_3_link_stack_4_title','Discover Biomechanics in Podiatry'),(157072,40552,'_blocks_3_link_stack_4_title','field_6177b80f00d01'),(157073,40552,'blocks_3_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(157074,40552,'_blocks_3_link_stack_4_url','field_6177b82200d02'),(157075,40552,'blocks_3_link_stack_5_label','Biomechanics Coach'),(157076,40552,'_blocks_3_link_stack_5_label','field_6177b80900d00'),(157077,40552,'blocks_3_link_stack_5_title','How to Become a Biomechanics Coach'),(157078,40552,'_blocks_3_link_stack_5_title','field_6177b80f00d01'),(157079,40552,'blocks_3_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(157080,40552,'_blocks_3_link_stack_5_url','field_6177b82200d02'),(157081,40552,'blocks_3_link_stack','6'),(157082,40552,'_blocks_3_link_stack','field_6177b7f600cff'),(157083,40552,'blocks_4_acfe_flexible_toggle',''),(157084,40552,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(157085,40552,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(157086,40552,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(157087,40552,'blocks_4_testimonial_slider_content_title',''),(157088,40552,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(157089,40552,'blocks_4_testimonial_slider_content_heading','Testimonials'),(157090,40552,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(157091,40552,'blocks_4_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(157092,40552,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(157093,40552,'blocks_4_testimonial_slider_content_actions',''),(157094,40552,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(157095,40552,'blocks_4_testimonial_slider_content',''),(157096,40552,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(157097,40552,'blocks_4_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(157098,40552,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(157099,40552,'blocks_4_testimonial_slider_ambassador_bool','0'),(157100,40552,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(157101,39270,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(157102,39270,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(157103,40553,'hide_hero','0'),(157104,40553,'_hide_hero','field_66a2380fcda39'),(157105,40553,'hero_title','Download your price guide'),(157106,40553,'_hero_title','field_617571fe285e8'),(157107,40553,'hero_text',''),(157108,40553,'_hero_text','field_6175723c285e9'),(157109,40553,'hero_actions',''),(157110,40553,'_hero_actions','field_61757270285ea'),(157111,40553,'hero_style','default'),(157112,40553,'_hero_style','field_62051d9dc5324'),(157113,40553,'hero_image_pos_x','right'),(157114,40553,'_hero_image_pos_x','field_62ec3d05390bb'),(157115,40553,'hero_image_pos_y','top'),(157116,40553,'_hero_image_pos_y','field_62ec3d05390bc'),(157117,40553,'hero_image_pos',''),(157118,40553,'_hero_image_pos','field_62ec3d05390ba'),(157119,40553,'fft_hide_from_listings','0'),(157120,40553,'_fft_hide_from_listings','field_61f1320446ab2'),(157121,40553,'fft_page_format','default'),(157122,40553,'_fft_page_format','field_61ae213f1f218'),(157123,40553,'fft_hide_nav','0'),(157124,40553,'_fft_hide_nav','field_635bd5e43527c'),(157125,40553,'fft_hide_header_call_to_action','0'),(157126,40553,'_fft_hide_header_call_to_action','field_635bd6723527d'),(157127,40553,'fft_page_sitemap','0'),(157128,40553,'_fft_page_sitemap','field_61af9b34e8181'),(157129,40553,'blocks','a:5:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"link_stack\";i:4;s:18:\"testimonial_slider\";}'),(157130,40553,'_blocks','field_6176696113096'),(157131,40553,'_thumbnail_id','40294'),(157132,40553,'__thumbnail_id','field_617570855ddaf'),(157133,40553,'blocks_0_acfe_flexible_toggle',''),(157134,40553,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(157135,40553,'blocks_0_acfe_flexible_layout_title','Form'),(157136,40553,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(157137,40553,'blocks_0_row_content_format','standard'),(157138,40553,'_blocks_0_row_content_format','field_6481ead962881'),(157139,40553,'blocks_0_row_content_title','Enquire Now'),(157140,40553,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(157141,40553,'blocks_0_row_content_heading','Course Information and Price Guide'),(157142,40553,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(157143,40553,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(157144,40553,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(157145,40553,'blocks_0_row_content_actions',''),(157146,40553,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(157147,40553,'blocks_0_row_content',''),(157148,40553,'_blocks_0_row_content','field_61a0f5f5b3db0'),(157149,40553,'blocks_0_row_form','40394'),(157150,40553,'_blocks_0_row_form','field_61a4ff2c0b08e'),(157151,40553,'blocks_0_row_form_button_label',''),(157152,40553,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(157153,40553,'blocks_1_acfe_flexible_toggle','1'),(157154,40553,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(157155,40553,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(157156,40553,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(157157,40553,'blocks_1_options_theme','#ffffff'),(157158,40553,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(157159,40553,'blocks_1_options_reverse','0'),(157160,40553,'_blocks_1_options_reverse','field_61768049bb8ac'),(157161,40553,'blocks_1_options',''),(157162,40553,'_blocks_1_options','field_617682517c334'),(157163,40553,'blocks_1_split_5050_image','39271'),(157164,40553,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(157165,40553,'blocks_1_split_5050_video',''),(157166,40553,'_blocks_1_split_5050_video','field_6239f3160848a'),(157167,40553,'blocks_1_split_5050_content_title',''),(157168,40553,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(157169,40553,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(157170,40553,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(157171,40553,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(157172,40553,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(157173,40553,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(157174,40553,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(157175,40553,'blocks_1_split_5050_content_actions','1'),(157176,40553,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(157177,40553,'blocks_1_split_5050_content',''),(157178,40553,'_blocks_1_split_5050_content','field_61767afceb8ba'),(157179,40553,'blocks_2_acfe_flexible_toggle',''),(157180,40553,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(157181,40553,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(157182,40553,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(157183,40553,'blocks_2_options_theme','#ffffff'),(157184,40553,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(157185,40553,'blocks_2_options_reverse','0'),(157186,40553,'_blocks_2_options_reverse','field_61768049bb8ac'),(157187,40553,'blocks_2_options',''),(157188,40553,'_blocks_2_options','field_617682517c334'),(157189,40553,'blocks_2_split_5050_image','39271'),(157190,40553,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(157191,40553,'blocks_2_split_5050_video',''),(157192,40553,'_blocks_2_split_5050_video','field_6239f3160848a'),(157193,40553,'blocks_2_split_5050_content_title',''),(157194,40553,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(157195,40553,'blocks_2_split_5050_content_heading','What\'s included in this guide?'),(157196,40553,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(157197,40553,'blocks_2_split_5050_content_text','[accordion title=\"Understand our prices\" content=\"we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\"]\r\n\r\n[accordion title=\"Get to know our courses\" content=\"Access a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you’ll receive, awarding bodies and accreditations.\"]\r\n\r\n[accordion title=\"Learn about us as a business\" content=\"Get valuable information about Biomechanics Education and Future Fit Group. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.\"]'),(157198,40553,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(157199,40553,'blocks_2_split_5050_content_actions','1'),(157200,40553,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(157201,40553,'blocks_2_split_5050_content',''),(157202,40553,'_blocks_2_split_5050_content','field_61767afceb8ba'),(157203,40553,'blocks_3_acfe_flexible_toggle',''),(157204,40553,'_blocks_3_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(157205,40553,'blocks_3_acfe_flexible_layout_title','Link Stack'),(157206,40553,'_blocks_3_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(157207,40553,'blocks_3_options_theme','#ffffff'),(157208,40553,'_blocks_3_options_theme','field_6177b758246af_field_6176830e2ad17'),(157209,40553,'blocks_3_options',''),(157210,40553,'_blocks_3_options','field_6177b758246ae'),(157211,40553,'blocks_3_link_stack_content_title',''),(157212,40553,'_blocks_3_link_stack_content_title','field_6177b7b600cf9'),(157213,40553,'blocks_3_link_stack_content_heading','Discover our expertise'),(157214,40553,'_blocks_3_link_stack_content_heading','field_6177b7b600cfa'),(157215,40553,'blocks_3_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(157216,40553,'_blocks_3_link_stack_content_text','field_6177b7b600cfb'),(157217,40553,'blocks_3_link_stack_content_actions',''),(157218,40553,'_blocks_3_link_stack_content_actions','field_6177b7b600cfc'),(157219,40553,'blocks_3_link_stack_content',''),(157220,40553,'_blocks_3_link_stack_content','field_6177b7b600cf8'),(157221,40553,'blocks_3_link_stack_0_label','Personal Training'),(157222,40553,'_blocks_3_link_stack_0_label','field_6177b80900d00'),(157223,40553,'blocks_3_link_stack_0_title','Discover Biomechanics in Personal Training'),(157224,40553,'_blocks_3_link_stack_0_title','field_6177b80f00d01'),(157225,40553,'blocks_3_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(157226,40553,'_blocks_3_link_stack_0_url','field_6177b82200d02'),(157227,40553,'blocks_3_link_stack_1_label','Pilates'),(157228,40553,'_blocks_3_link_stack_1_label','field_6177b80900d00'),(157229,40553,'blocks_3_link_stack_1_title','Discover Biomechanics in Pilates'),(157230,40553,'_blocks_3_link_stack_1_title','field_6177b80f00d01'),(157231,40553,'blocks_3_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(157232,40553,'_blocks_3_link_stack_1_url','field_6177b82200d02'),(157233,40553,'blocks_3_link_stack_2_label','Sports Coaches'),(157234,40553,'_blocks_3_link_stack_2_label','field_6177b80900d00'),(157235,40553,'blocks_3_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(157236,40553,'_blocks_3_link_stack_2_title','field_6177b80f00d01'),(157237,40553,'blocks_3_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(157238,40553,'_blocks_3_link_stack_2_url','field_6177b82200d02'),(157239,40553,'blocks_3_link_stack_3_label','SMT'),(157240,40553,'_blocks_3_link_stack_3_label','field_6177b80900d00'),(157241,40553,'blocks_3_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(157242,40553,'_blocks_3_link_stack_3_title','field_6177b80f00d01'),(157243,40553,'blocks_3_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(157244,40553,'_blocks_3_link_stack_3_url','field_6177b82200d02'),(157245,40553,'blocks_3_link_stack_4_label','Podiatrists'),(157246,40553,'_blocks_3_link_stack_4_label','field_6177b80900d00'),(157247,40553,'blocks_3_link_stack_4_title','Discover Biomechanics in Podiatry'),(157248,40553,'_blocks_3_link_stack_4_title','field_6177b80f00d01'),(157249,40553,'blocks_3_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(157250,40553,'_blocks_3_link_stack_4_url','field_6177b82200d02'),(157251,40553,'blocks_3_link_stack_5_label','Biomechanics Coach'),(157252,40553,'_blocks_3_link_stack_5_label','field_6177b80900d00'),(157253,40553,'blocks_3_link_stack_5_title','How to Become a Biomechanics Coach'),(157254,40553,'_blocks_3_link_stack_5_title','field_6177b80f00d01'),(157255,40553,'blocks_3_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(157256,40553,'_blocks_3_link_stack_5_url','field_6177b82200d02'),(157257,40553,'blocks_3_link_stack','6'),(157258,40553,'_blocks_3_link_stack','field_6177b7f600cff'),(157259,40553,'blocks_4_acfe_flexible_toggle',''),(157260,40553,'_blocks_4_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(157261,40553,'blocks_4_acfe_flexible_layout_title','Testimonial Slider'),(157262,40553,'_blocks_4_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(157263,40553,'blocks_4_testimonial_slider_content_title',''),(157264,40553,'_blocks_4_testimonial_slider_content_title','field_617c033b39a60'),(157265,40553,'blocks_4_testimonial_slider_content_heading','Testimonials'),(157266,40553,'_blocks_4_testimonial_slider_content_heading','field_617c033b39a61'),(157267,40553,'blocks_4_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(157268,40553,'_blocks_4_testimonial_slider_content_text','field_617c033b39a62'),(157269,40553,'blocks_4_testimonial_slider_content_actions',''),(157270,40553,'_blocks_4_testimonial_slider_content_actions','field_617c033b39a63'),(157271,40553,'blocks_4_testimonial_slider_content',''),(157272,40553,'_blocks_4_testimonial_slider_content','field_617c033b39a5f'),(157273,40553,'blocks_4_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(157274,40553,'_blocks_4_testimonial_slider_items','field_61812eaeb20eb'),(157275,40553,'blocks_4_testimonial_slider_ambassador_bool','0'),(157276,40553,'_blocks_4_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(157277,40553,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(157278,40553,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(157279,39270,'blocks_3_acfe_flexible_toggle',''),(157280,39270,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(157281,39270,'blocks_3_acfe_flexible_layout_title','Quote'),(157282,39270,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(157283,39270,'blocks_3_quote_content','I just wanted to say thank you for transforming my knowledge. Without the Biomechanics Coaching Diploma, I would have been lost, but now I feel like I\'m not only giving clients a better understanding of their body but also further education is making more sense to me.  '),(157284,39270,'_blocks_3_quote_content','field_6177cdacdd67a'),(157285,39270,'blocks_3_quote_author',''),(157286,39270,'_blocks_3_quote_author','field_6177cdc6dd67b'),(157287,39270,'blocks_4_acfe_flexible_toggle',''),(157288,39270,'_blocks_4_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(157289,39270,'blocks_4_acfe_flexible_layout_title','Link Stack'),(157290,39270,'_blocks_4_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(157291,39270,'blocks_4_options_theme','#ffffff'),(157292,39270,'_blocks_4_options_theme','field_6177b758246af_field_6176830e2ad17'),(157293,39270,'blocks_4_options',''),(157294,39270,'_blocks_4_options','field_6177b758246ae'),(157295,39270,'blocks_4_link_stack_content_title',''),(157296,39270,'_blocks_4_link_stack_content_title','field_6177b7b600cf9'),(157297,39270,'blocks_4_link_stack_content_heading','Discover our expertise'),(157298,39270,'_blocks_4_link_stack_content_heading','field_6177b7b600cfa'),(157299,39270,'blocks_4_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(157300,39270,'_blocks_4_link_stack_content_text','field_6177b7b600cfb'),(157301,39270,'blocks_4_link_stack_content_actions',''),(157302,39270,'_blocks_4_link_stack_content_actions','field_6177b7b600cfc'),(157303,39270,'blocks_4_link_stack_content',''),(157304,39270,'_blocks_4_link_stack_content','field_6177b7b600cf8'),(157305,39270,'blocks_4_link_stack_0_label','Personal Training'),(157306,39270,'_blocks_4_link_stack_0_label','field_6177b80900d00'),(157307,39270,'blocks_4_link_stack_0_title','Discover Biomechanics in Personal Training'),(157308,39270,'_blocks_4_link_stack_0_title','field_6177b80f00d01'),(157309,39270,'blocks_4_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(157310,39270,'_blocks_4_link_stack_0_url','field_6177b82200d02'),(157311,39270,'blocks_4_link_stack_1_label','Pilates'),(157312,39270,'_blocks_4_link_stack_1_label','field_6177b80900d00'),(157313,39270,'blocks_4_link_stack_1_title','Discover Biomechanics in Pilates'),(157314,39270,'_blocks_4_link_stack_1_title','field_6177b80f00d01'),(157315,39270,'blocks_4_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(157316,39270,'_blocks_4_link_stack_1_url','field_6177b82200d02'),(157317,39270,'blocks_4_link_stack_2_label','Sports Coaches'),(157318,39270,'_blocks_4_link_stack_2_label','field_6177b80900d00'),(157319,39270,'blocks_4_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(157320,39270,'_blocks_4_link_stack_2_title','field_6177b80f00d01'),(157321,39270,'blocks_4_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(157322,39270,'_blocks_4_link_stack_2_url','field_6177b82200d02'),(157323,39270,'blocks_4_link_stack_3_label','SMT'),(157324,39270,'_blocks_4_link_stack_3_label','field_6177b80900d00'),(157325,39270,'blocks_4_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(157326,39270,'_blocks_4_link_stack_3_title','field_6177b80f00d01'),(157327,39270,'blocks_4_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(157328,39270,'_blocks_4_link_stack_3_url','field_6177b82200d02'),(157329,39270,'blocks_4_link_stack_4_label','Podiatrists'),(157330,39270,'_blocks_4_link_stack_4_label','field_6177b80900d00'),(157331,39270,'blocks_4_link_stack_4_title','Discover Biomechanics in Podiatry'),(157332,39270,'_blocks_4_link_stack_4_title','field_6177b80f00d01'),(157333,39270,'blocks_4_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(157334,39270,'_blocks_4_link_stack_4_url','field_6177b82200d02'),(157335,39270,'blocks_4_link_stack_5_label','Biomechanics Coach'),(157336,39270,'_blocks_4_link_stack_5_label','field_6177b80900d00'),(157337,39270,'blocks_4_link_stack_5_title','How to Become a Biomechanics Coach'),(157338,39270,'_blocks_4_link_stack_5_title','field_6177b80f00d01'),(157339,39270,'blocks_4_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(157340,39270,'_blocks_4_link_stack_5_url','field_6177b82200d02'),(157341,39270,'blocks_4_link_stack','6'),(157342,39270,'_blocks_4_link_stack','field_6177b7f600cff'),(157343,39270,'blocks_5_acfe_flexible_toggle','1'),(157344,39270,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(157345,39270,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(157346,39270,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(157347,39270,'blocks_5_testimonial_slider_content_title',''),(157348,39270,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(157349,39270,'blocks_5_testimonial_slider_content_heading','Testimonials'),(157350,39270,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(157351,39270,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(157352,39270,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(157353,39270,'blocks_5_testimonial_slider_content_actions',''),(157354,39270,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(157355,39270,'blocks_5_testimonial_slider_content',''),(157356,39270,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(157357,39270,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(157358,39270,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(157359,39270,'blocks_5_testimonial_slider_ambassador_bool','0'),(157360,39270,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(157361,40554,'hide_hero','0'),(157362,40554,'_hide_hero','field_66a2380fcda39'),(157363,40554,'hero_title','Download your price guide'),(157364,40554,'_hero_title','field_617571fe285e8'),(157365,40554,'hero_text',''),(157366,40554,'_hero_text','field_6175723c285e9'),(157367,40554,'hero_actions',''),(157368,40554,'_hero_actions','field_61757270285ea'),(157369,40554,'hero_style','default'),(157370,40554,'_hero_style','field_62051d9dc5324'),(157371,40554,'hero_image_pos_x','right'),(157372,40554,'_hero_image_pos_x','field_62ec3d05390bb'),(157373,40554,'hero_image_pos_y','top'),(157374,40554,'_hero_image_pos_y','field_62ec3d05390bc'),(157375,40554,'hero_image_pos',''),(157376,40554,'_hero_image_pos','field_62ec3d05390ba'),(157377,40554,'fft_hide_from_listings','0'),(157378,40554,'_fft_hide_from_listings','field_61f1320446ab2'),(157379,40554,'fft_page_format','default'),(157380,40554,'_fft_page_format','field_61ae213f1f218'),(157381,40554,'fft_hide_nav','0'),(157382,40554,'_fft_hide_nav','field_635bd5e43527c'),(157383,40554,'fft_hide_header_call_to_action','0'),(157384,40554,'_fft_hide_header_call_to_action','field_635bd6723527d'),(157385,40554,'fft_page_sitemap','0'),(157386,40554,'_fft_page_sitemap','field_61af9b34e8181'),(157387,40554,'blocks','a:6:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:5:\"quote\";i:4;s:10:\"link_stack\";i:5;s:18:\"testimonial_slider\";}'),(157388,40554,'_blocks','field_6176696113096'),(157389,40554,'_thumbnail_id','40294'),(157390,40554,'__thumbnail_id','field_617570855ddaf'),(157391,40554,'blocks_0_acfe_flexible_toggle',''),(157392,40554,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(157393,40554,'blocks_0_acfe_flexible_layout_title','Form'),(157394,40554,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(157395,40554,'blocks_0_row_content_format','standard'),(157396,40554,'_blocks_0_row_content_format','field_6481ead962881'),(157397,40554,'blocks_0_row_content_title','Enquire Now'),(157398,40554,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(157399,40554,'blocks_0_row_content_heading','Course Information and Price Guide'),(157400,40554,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(157401,40554,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Start earning in 2-3 months*.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(157402,40554,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(157403,40554,'blocks_0_row_content_actions',''),(157404,40554,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(157405,40554,'blocks_0_row_content',''),(157406,40554,'_blocks_0_row_content','field_61a0f5f5b3db0'),(157407,40554,'blocks_0_row_form','40394'),(157408,40554,'_blocks_0_row_form','field_61a4ff2c0b08e'),(157409,40554,'blocks_0_row_form_button_label',''),(157410,40554,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(157411,40554,'blocks_1_acfe_flexible_toggle','1'),(157412,40554,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(157413,40554,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(157414,40554,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(157415,40554,'blocks_1_options_theme','#ffffff'),(157416,40554,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(157417,40554,'blocks_1_options_reverse','0'),(157418,40554,'_blocks_1_options_reverse','field_61768049bb8ac'),(157419,40554,'blocks_1_options',''),(157420,40554,'_blocks_1_options','field_617682517c334'),(157421,40554,'blocks_1_split_5050_image','39271'),(157422,40554,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(157423,40554,'blocks_1_split_5050_video',''),(157424,40554,'_blocks_1_split_5050_video','field_6239f3160848a'),(157425,40554,'blocks_1_split_5050_content_title',''),(157426,40554,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(157427,40554,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(157428,40554,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(157429,40554,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(157430,40554,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(157431,40554,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(157432,40554,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(157433,40554,'blocks_1_split_5050_content_actions','1'),(157434,40554,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(157435,40554,'blocks_1_split_5050_content',''),(157436,40554,'_blocks_1_split_5050_content','field_61767afceb8ba'),(157437,40554,'blocks_2_acfe_flexible_toggle',''),(157438,40554,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(157439,40554,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(157440,40554,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(157441,40554,'blocks_2_options_theme','#ffffff'),(157442,40554,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(157443,40554,'blocks_2_options_reverse','0'),(157444,40554,'_blocks_2_options_reverse','field_61768049bb8ac'),(157445,40554,'blocks_2_options',''),(157446,40554,'_blocks_2_options','field_617682517c334'),(157447,40554,'blocks_2_split_5050_image','39271'),(157448,40554,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(157449,40554,'blocks_2_split_5050_video',''),(157450,40554,'_blocks_2_split_5050_video','field_6239f3160848a'),(157451,40554,'blocks_2_split_5050_content_title',''),(157452,40554,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(157453,40554,'blocks_2_split_5050_content_heading','What\'s included in this guide?'),(157454,40554,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(157455,40554,'blocks_2_split_5050_content_text','[accordion title=\"Understand our prices\" content=\"we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\"]\r\n\r\n[accordion title=\"Get to know our courses\" content=\"Access a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you’ll receive, awarding bodies and accreditations.\"]\r\n\r\n[accordion title=\"Learn about us as a business\" content=\"Get valuable information about Biomechanics Education and Future Fit Group. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.\"]'),(157456,40554,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(157457,40554,'blocks_2_split_5050_content_actions','1'),(157458,40554,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(157459,40554,'blocks_2_split_5050_content',''),(157460,40554,'_blocks_2_split_5050_content','field_61767afceb8ba'),(157461,40554,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(157462,40554,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(157463,40554,'blocks_3_acfe_flexible_toggle',''),(157464,40554,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(157465,40554,'blocks_3_acfe_flexible_layout_title','Quote'),(157466,40554,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(157467,40554,'blocks_3_quote_content','I just wanted to say thank you for transforming my knowledge. Without the Biomechanics Coaching Diploma, I would have been lost, but now I feel like I\'m not only giving clients a better understanding of their body but also further education is making more sense to me.  '),(157468,40554,'_blocks_3_quote_content','field_6177cdacdd67a'),(157469,40554,'blocks_3_quote_author',''),(157470,40554,'_blocks_3_quote_author','field_6177cdc6dd67b'),(157471,40554,'blocks_4_acfe_flexible_toggle',''),(157472,40554,'_blocks_4_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(157473,40554,'blocks_4_acfe_flexible_layout_title','Link Stack'),(157474,40554,'_blocks_4_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(157475,40554,'blocks_4_options_theme','#ffffff'),(157476,40554,'_blocks_4_options_theme','field_6177b758246af_field_6176830e2ad17'),(157477,40554,'blocks_4_options',''),(157478,40554,'_blocks_4_options','field_6177b758246ae'),(157479,40554,'blocks_4_link_stack_content_title',''),(157480,40554,'_blocks_4_link_stack_content_title','field_6177b7b600cf9'),(157481,40554,'blocks_4_link_stack_content_heading','Discover our expertise'),(157482,40554,'_blocks_4_link_stack_content_heading','field_6177b7b600cfa'),(157483,40554,'blocks_4_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(157484,40554,'_blocks_4_link_stack_content_text','field_6177b7b600cfb'),(157485,40554,'blocks_4_link_stack_content_actions',''),(157486,40554,'_blocks_4_link_stack_content_actions','field_6177b7b600cfc'),(157487,40554,'blocks_4_link_stack_content',''),(157488,40554,'_blocks_4_link_stack_content','field_6177b7b600cf8'),(157489,40554,'blocks_4_link_stack_0_label','Personal Training'),(157490,40554,'_blocks_4_link_stack_0_label','field_6177b80900d00'),(157491,40554,'blocks_4_link_stack_0_title','Discover Biomechanics in Personal Training'),(157492,40554,'_blocks_4_link_stack_0_title','field_6177b80f00d01'),(157493,40554,'blocks_4_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(157494,40554,'_blocks_4_link_stack_0_url','field_6177b82200d02'),(157495,40554,'blocks_4_link_stack_1_label','Pilates'),(157496,40554,'_blocks_4_link_stack_1_label','field_6177b80900d00'),(157497,40554,'blocks_4_link_stack_1_title','Discover Biomechanics in Pilates'),(157498,40554,'_blocks_4_link_stack_1_title','field_6177b80f00d01'),(157499,40554,'blocks_4_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(157500,40554,'_blocks_4_link_stack_1_url','field_6177b82200d02'),(157501,40554,'blocks_4_link_stack_2_label','Sports Coaches'),(157502,40554,'_blocks_4_link_stack_2_label','field_6177b80900d00'),(157503,40554,'blocks_4_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(157504,40554,'_blocks_4_link_stack_2_title','field_6177b80f00d01'),(157505,40554,'blocks_4_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(157506,40554,'_blocks_4_link_stack_2_url','field_6177b82200d02'),(157507,40554,'blocks_4_link_stack_3_label','SMT'),(157508,40554,'_blocks_4_link_stack_3_label','field_6177b80900d00'),(157509,40554,'blocks_4_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(157510,40554,'_blocks_4_link_stack_3_title','field_6177b80f00d01'),(157511,40554,'blocks_4_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(157512,40554,'_blocks_4_link_stack_3_url','field_6177b82200d02'),(157513,40554,'blocks_4_link_stack_4_label','Podiatrists'),(157514,40554,'_blocks_4_link_stack_4_label','field_6177b80900d00'),(157515,40554,'blocks_4_link_stack_4_title','Discover Biomechanics in Podiatry'),(157516,40554,'_blocks_4_link_stack_4_title','field_6177b80f00d01'),(157517,40554,'blocks_4_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(157518,40554,'_blocks_4_link_stack_4_url','field_6177b82200d02'),(157519,40554,'blocks_4_link_stack_5_label','Biomechanics Coach'),(157520,40554,'_blocks_4_link_stack_5_label','field_6177b80900d00'),(157521,40554,'blocks_4_link_stack_5_title','How to Become a Biomechanics Coach'),(157522,40554,'_blocks_4_link_stack_5_title','field_6177b80f00d01'),(157523,40554,'blocks_4_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(157524,40554,'_blocks_4_link_stack_5_url','field_6177b82200d02'),(157525,40554,'blocks_4_link_stack','6'),(157526,40554,'_blocks_4_link_stack','field_6177b7f600cff'),(157527,40554,'blocks_5_acfe_flexible_toggle','1'),(157528,40554,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(157529,40554,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(157530,40554,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(157531,40554,'blocks_5_testimonial_slider_content_title',''),(157532,40554,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(157533,40554,'blocks_5_testimonial_slider_content_heading','Testimonials'),(157534,40554,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(157535,40554,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(157536,40554,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(157537,40554,'blocks_5_testimonial_slider_content_actions',''),(157538,40554,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(157539,40554,'blocks_5_testimonial_slider_content',''),(157540,40554,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(157541,40554,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(157542,40554,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(157543,40554,'blocks_5_testimonial_slider_ambassador_bool','0'),(157544,40554,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(157545,40555,'hide_hero','0'),(157546,40555,'_hide_hero','field_66a2380fcda39'),(157547,40555,'hero_title','Download your price guide'),(157548,40555,'_hero_title','field_617571fe285e8'),(157549,40555,'hero_text',''),(157550,40555,'_hero_text','field_6175723c285e9'),(157551,40555,'hero_actions',''),(157552,40555,'_hero_actions','field_61757270285ea'),(157553,40555,'hero_style','default'),(157554,40555,'_hero_style','field_62051d9dc5324'),(157555,40555,'hero_image_pos_x','right'),(157556,40555,'_hero_image_pos_x','field_62ec3d05390bb'),(157557,40555,'hero_image_pos_y','top'),(157558,40555,'_hero_image_pos_y','field_62ec3d05390bc'),(157559,40555,'hero_image_pos',''),(157560,40555,'_hero_image_pos','field_62ec3d05390ba'),(157561,40555,'fft_hide_from_listings','0'),(157562,40555,'_fft_hide_from_listings','field_61f1320446ab2'),(157563,40555,'fft_page_format','default'),(157564,40555,'_fft_page_format','field_61ae213f1f218'),(157565,40555,'fft_hide_nav','0'),(157566,40555,'_fft_hide_nav','field_635bd5e43527c'),(157567,40555,'fft_hide_header_call_to_action','0'),(157568,40555,'_fft_hide_header_call_to_action','field_635bd6723527d'),(157569,40555,'fft_page_sitemap','0'),(157570,40555,'_fft_page_sitemap','field_61af9b34e8181'),(157571,40555,'blocks','a:6:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:5:\"quote\";i:4;s:10:\"link_stack\";i:5;s:18:\"testimonial_slider\";}'),(157572,40555,'_blocks','field_6176696113096'),(157573,40555,'_thumbnail_id','40294'),(157574,40555,'__thumbnail_id','field_617570855ddaf'),(157575,40555,'blocks_0_acfe_flexible_toggle',''),(157576,40555,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(157577,40555,'blocks_0_acfe_flexible_layout_title','Form'),(157578,40555,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(157579,40555,'blocks_0_row_content_format','standard'),(157580,40555,'_blocks_0_row_content_format','field_6481ead962881'),(157581,40555,'blocks_0_row_content_title','Enquire Now'),(157582,40555,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(157583,40555,'blocks_0_row_content_heading','Course Information and Price Guide'),(157584,40555,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(157585,40555,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain a comprehensive overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(157586,40555,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(157587,40555,'blocks_0_row_content_actions',''),(157588,40555,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(157589,40555,'blocks_0_row_content',''),(157590,40555,'_blocks_0_row_content','field_61a0f5f5b3db0'),(157591,40555,'blocks_0_row_form','40394'),(157592,40555,'_blocks_0_row_form','field_61a4ff2c0b08e'),(157593,40555,'blocks_0_row_form_button_label',''),(157594,40555,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(157595,40555,'blocks_1_acfe_flexible_toggle','1'),(157596,40555,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(157597,40555,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(157598,40555,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(157599,40555,'blocks_1_options_theme','#ffffff'),(157600,40555,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(157601,40555,'blocks_1_options_reverse','0'),(157602,40555,'_blocks_1_options_reverse','field_61768049bb8ac'),(157603,40555,'blocks_1_options',''),(157604,40555,'_blocks_1_options','field_617682517c334'),(157605,40555,'blocks_1_split_5050_image','39271'),(157606,40555,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(157607,40555,'blocks_1_split_5050_video',''),(157608,40555,'_blocks_1_split_5050_video','field_6239f3160848a'),(157609,40555,'blocks_1_split_5050_content_title',''),(157610,40555,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(157611,40555,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(157612,40555,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(157613,40555,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(157614,40555,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(157615,40555,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(157616,40555,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(157617,40555,'blocks_1_split_5050_content_actions','1'),(157618,40555,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(157619,40555,'blocks_1_split_5050_content',''),(157620,40555,'_blocks_1_split_5050_content','field_61767afceb8ba'),(157621,40555,'blocks_2_acfe_flexible_toggle',''),(157622,40555,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(157623,40555,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(157624,40555,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(157625,40555,'blocks_2_options_theme','#ffffff'),(157626,40555,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(157627,40555,'blocks_2_options_reverse','0'),(157628,40555,'_blocks_2_options_reverse','field_61768049bb8ac'),(157629,40555,'blocks_2_options',''),(157630,40555,'_blocks_2_options','field_617682517c334'),(157631,40555,'blocks_2_split_5050_image','39271'),(157632,40555,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(157633,40555,'blocks_2_split_5050_video',''),(157634,40555,'_blocks_2_split_5050_video','field_6239f3160848a'),(157635,40555,'blocks_2_split_5050_content_title',''),(157636,40555,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(157637,40555,'blocks_2_split_5050_content_heading','What\'s included in this guide?'),(157638,40555,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(157639,40555,'blocks_2_split_5050_content_text','[accordion title=\"Understand our prices\" content=\"we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\"]\r\n\r\n[accordion title=\"Get to know our courses\" content=\"Access a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you’ll receive, awarding bodies and accreditations.\"]\r\n\r\n[accordion title=\"Learn about us as a business\" content=\"Get valuable information about Biomechanics Education and Future Fit Group. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.\"]'),(157640,40555,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(157641,40555,'blocks_2_split_5050_content_actions','1'),(157642,40555,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(157643,40555,'blocks_2_split_5050_content',''),(157644,40555,'_blocks_2_split_5050_content','field_61767afceb8ba'),(157645,40555,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(157646,40555,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(157647,40555,'blocks_3_acfe_flexible_toggle',''),(157648,40555,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(157649,40555,'blocks_3_acfe_flexible_layout_title','Quote'),(157650,40555,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(157651,40555,'blocks_3_quote_content','I just wanted to say thank you for transforming my knowledge. Without the Biomechanics Coaching Diploma, I would have been lost, but now I feel like I\'m not only giving clients a better understanding of their body but also further education is making more sense to me.  '),(157652,40555,'_blocks_3_quote_content','field_6177cdacdd67a'),(157653,40555,'blocks_3_quote_author',''),(157654,40555,'_blocks_3_quote_author','field_6177cdc6dd67b'),(157655,40555,'blocks_4_acfe_flexible_toggle',''),(157656,40555,'_blocks_4_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(157657,40555,'blocks_4_acfe_flexible_layout_title','Link Stack'),(157658,40555,'_blocks_4_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(157659,40555,'blocks_4_options_theme','#ffffff'),(157660,40555,'_blocks_4_options_theme','field_6177b758246af_field_6176830e2ad17'),(157661,40555,'blocks_4_options',''),(157662,40555,'_blocks_4_options','field_6177b758246ae'),(157663,40555,'blocks_4_link_stack_content_title',''),(157664,40555,'_blocks_4_link_stack_content_title','field_6177b7b600cf9'),(157665,40555,'blocks_4_link_stack_content_heading','Discover our expertise'),(157666,40555,'_blocks_4_link_stack_content_heading','field_6177b7b600cfa'),(157667,40555,'blocks_4_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(157668,40555,'_blocks_4_link_stack_content_text','field_6177b7b600cfb'),(157669,40555,'blocks_4_link_stack_content_actions',''),(157670,40555,'_blocks_4_link_stack_content_actions','field_6177b7b600cfc'),(157671,40555,'blocks_4_link_stack_content',''),(157672,40555,'_blocks_4_link_stack_content','field_6177b7b600cf8'),(157673,40555,'blocks_4_link_stack_0_label','Personal Training'),(157674,40555,'_blocks_4_link_stack_0_label','field_6177b80900d00'),(157675,40555,'blocks_4_link_stack_0_title','Discover Biomechanics in Personal Training'),(157676,40555,'_blocks_4_link_stack_0_title','field_6177b80f00d01'),(157677,40555,'blocks_4_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(157678,40555,'_blocks_4_link_stack_0_url','field_6177b82200d02'),(157679,40555,'blocks_4_link_stack_1_label','Pilates'),(157680,40555,'_blocks_4_link_stack_1_label','field_6177b80900d00'),(157681,40555,'blocks_4_link_stack_1_title','Discover Biomechanics in Pilates'),(157682,40555,'_blocks_4_link_stack_1_title','field_6177b80f00d01'),(157683,40555,'blocks_4_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(157684,40555,'_blocks_4_link_stack_1_url','field_6177b82200d02'),(157685,40555,'blocks_4_link_stack_2_label','Sports Coaches'),(157686,40555,'_blocks_4_link_stack_2_label','field_6177b80900d00'),(157687,40555,'blocks_4_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(157688,40555,'_blocks_4_link_stack_2_title','field_6177b80f00d01'),(157689,40555,'blocks_4_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(157690,40555,'_blocks_4_link_stack_2_url','field_6177b82200d02'),(157691,40555,'blocks_4_link_stack_3_label','SMT'),(157692,40555,'_blocks_4_link_stack_3_label','field_6177b80900d00'),(157693,40555,'blocks_4_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(157694,40555,'_blocks_4_link_stack_3_title','field_6177b80f00d01'),(157695,40555,'blocks_4_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(157696,40555,'_blocks_4_link_stack_3_url','field_6177b82200d02'),(157697,40555,'blocks_4_link_stack_4_label','Podiatrists'),(157698,40555,'_blocks_4_link_stack_4_label','field_6177b80900d00'),(157699,40555,'blocks_4_link_stack_4_title','Discover Biomechanics in Podiatry'),(157700,40555,'_blocks_4_link_stack_4_title','field_6177b80f00d01'),(157701,40555,'blocks_4_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(157702,40555,'_blocks_4_link_stack_4_url','field_6177b82200d02'),(157703,40555,'blocks_4_link_stack_5_label','Biomechanics Coach'),(157704,40555,'_blocks_4_link_stack_5_label','field_6177b80900d00'),(157705,40555,'blocks_4_link_stack_5_title','How to Become a Biomechanics Coach'),(157706,40555,'_blocks_4_link_stack_5_title','field_6177b80f00d01'),(157707,40555,'blocks_4_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(157708,40555,'_blocks_4_link_stack_5_url','field_6177b82200d02'),(157709,40555,'blocks_4_link_stack','6'),(157710,40555,'_blocks_4_link_stack','field_6177b7f600cff'),(157711,40555,'blocks_5_acfe_flexible_toggle','1'),(157712,40555,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(157713,40555,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(157714,40555,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(157715,40555,'blocks_5_testimonial_slider_content_title',''),(157716,40555,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(157717,40555,'blocks_5_testimonial_slider_content_heading','Testimonials'),(157718,40555,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(157719,40555,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(157720,40555,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(157721,40555,'blocks_5_testimonial_slider_content_actions',''),(157722,40555,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(157723,40555,'blocks_5_testimonial_slider_content',''),(157724,40555,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(157725,40555,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(157726,40555,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(157727,40555,'blocks_5_testimonial_slider_ambassador_bool','0'),(157728,40555,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(157729,40263,'_edit_lock','1727342403:5'),(157730,40263,'_edit_last','5'),(157731,40263,'_wp_old_date','2024-09-10'),(157732,40263,'hide_hero','0'),(157733,40263,'_hide_hero','field_66a2380fcda39'),(157734,40263,'hero_title','Behaviour Change Coaching'),(157735,40263,'_hero_title','field_617571fe285e8'),(157736,40263,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(157737,40263,'_hero_text','field_6175723c285e9'),(157738,40263,'hero_actions','1'),(157739,40263,'_hero_actions','field_61757270285ea'),(157740,40263,'hero_style','default'),(157741,40263,'_hero_style','field_62051d9dc5324'),(157743,40263,'__thumbnail_id','field_617570855ddaf'),(157744,40263,'hero_image_pos_x','right'),(157745,40263,'_hero_image_pos_x','field_62ec3d05390bb'),(157746,40263,'hero_image_pos_y','top'),(157747,40263,'_hero_image_pos_y','field_62ec3d05390bc'),(157748,40263,'hero_image_pos',''),(157749,40263,'_hero_image_pos','field_62ec3d05390ba'),(157750,40263,'fft_hide_from_listings','0'),(157751,40263,'_fft_hide_from_listings','field_61f1320446ab2'),(157752,40263,'fft_page_format','default'),(157753,40263,'_fft_page_format','field_61ae213f1f218'),(157754,40263,'fft_hide_nav','0'),(157755,40263,'_fft_hide_nav','field_635bd5e43527c'),(157756,40263,'fft_hide_header_call_to_action','0'),(157757,40263,'_fft_hide_header_call_to_action','field_635bd6723527d'),(157758,40263,'fft_page_sitemap','0'),(157759,40263,'_fft_page_sitemap','field_61af9b34e8181'),(157760,40263,'blocks','a:14:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";i:8;s:7:\"buttons\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:13:\"step_timeline\";i:12;s:14:\"course_compare\";i:13;s:10:\"accordions\";}'),(157761,40263,'_blocks','field_6176696113096'),(157762,40263,'course_label_text','Behaviour Change Coaching'),(157763,40263,'_course_label_text','field_61e17babf71fa'),(157764,40263,'course_label',''),(157765,40263,'_course_label','field_61e12f92749a7'),(157766,40263,'course_description','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(157767,40263,'_course_description','field_617ac5788e5e1'),(157768,40263,'course_key_info','4'),(157769,40263,'_course_key_info','field_617ac6ad8e5e2'),(157770,40263,'course_included','Introduction to behaviour change\r\nBarriers to change\r\nModels of behaviour change\r\nTools for assessing readiness to change\r\nCommunication and interpersonal skills\r\nIntroduction to motivational interviewing\r\nThe Formula 4 Change system, exclusive to Future Fit Training\r\nEvaluation and assessment\r\nThe need for change'),(157771,40263,'_course_included','field_617ac6f08e5e4'),(157772,40263,'_yoast_wpseo_primary_course-cat','404'),(157773,40263,'_yoast_wpseo_estimated-reading-time-minutes','1'),(157774,40556,'hide_hero','0'),(157775,40556,'_hide_hero','field_66a2380fcda39'),(157776,40556,'hero_title','BEHAVIOUR CHANGE COACHING '),(157777,40556,'_hero_title','field_617571fe285e8'),(157778,40556,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(157779,40556,'_hero_text','field_6175723c285e9'),(157780,40556,'hero_actions',''),(157781,40556,'_hero_actions','field_61757270285ea'),(157782,40556,'hero_style','default'),(157783,40556,'_hero_style','field_62051d9dc5324'),(157784,40556,'_thumbnail_id',''),(157785,40556,'__thumbnail_id','field_617570855ddaf'),(157786,40556,'hero_image_pos_x','right'),(157787,40556,'_hero_image_pos_x','field_62ec3d05390bb'),(157788,40556,'hero_image_pos_y','top'),(157789,40556,'_hero_image_pos_y','field_62ec3d05390bc'),(157790,40556,'hero_image_pos',''),(157791,40556,'_hero_image_pos','field_62ec3d05390ba'),(157792,40556,'fft_hide_from_listings','0'),(157793,40556,'_fft_hide_from_listings','field_61f1320446ab2'),(157794,40556,'fft_page_format','default'),(157795,40556,'_fft_page_format','field_61ae213f1f218'),(157796,40556,'fft_hide_nav','0'),(157797,40556,'_fft_hide_nav','field_635bd5e43527c'),(157798,40556,'fft_hide_header_call_to_action','0'),(157799,40556,'_fft_hide_header_call_to_action','field_635bd6723527d'),(157800,40556,'fft_page_sitemap','0'),(157801,40556,'_fft_page_sitemap','field_61af9b34e8181'),(157802,40556,'blocks',''),(157803,40556,'_blocks','field_6176696113096'),(157804,40556,'course_label_text',''),(157805,40556,'_course_label_text','field_61e17babf71fa'),(157806,40556,'course_label',''),(157807,40556,'_course_label','field_61e12f92749a7'),(157808,40556,'course_description',''),(157809,40556,'_course_description','field_617ac5788e5e1'),(157810,40556,'course_key_info',''),(157811,40556,'_course_key_info','field_617ac6ad8e5e2'),(157812,40556,'course_included',''),(157813,40556,'_course_included','field_617ac6f08e5e4'),(157814,40557,'_wp_attached_file','2024/09/behaviour-change-coaching-50.50-image-scaled.jpg'),(157815,40557,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:56:\"2024/09/behaviour-change-coaching-50.50-image-scaled.jpg\";s:8:\"filesize\";i:488694;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88670;}s:5:\"large\";a:5:{s:4:\"file\";s:50:\"behaviour-change-coaching-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128156;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-50.50-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40221;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-50.50-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73812;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:51:\"behaviour-change-coaching-50.50-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185341;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:51:\"behaviour-change-coaching-50.50-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:309998;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-50.50-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51775;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-50.50-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133934;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:51:\"behaviour-change-coaching-50.50-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:213783;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-50.50-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40212;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88670;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:50:\"behaviour-change-coaching-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128156;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-50.50-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44599;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-50.50-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110932;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:50:\"behaviour-change-coaching-50.50-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176119;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-50.50-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43665;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-50.50-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100492;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:50:\"behaviour-change-coaching-50.50-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148777;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-50.50-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37464;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-50.50-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79858;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:50:\"behaviour-change-coaching-50.50-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114089;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1626527445\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:41:\"behaviour-change-coaching-50.50-image.jpg\";}'),(157816,40263,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(157817,40263,'_hero_actions_0_button','field_61757281285eb'),(157819,40263,'blocks_0_acfe_flexible_toggle',''),(157820,40263,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(157821,40263,'blocks_0_acfe_flexible_layout_title','Template'),(157822,40263,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(157823,40263,'blocks_0_template','39087'),(157824,40263,'_blocks_0_template','field_617bdd570fe01'),(157825,40263,'blocks_1_acfe_flexible_toggle',''),(157826,40263,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(157827,40263,'blocks_1_acfe_flexible_layout_title','Text Block'),(157828,40263,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(157829,40263,'blocks_1_options_theme','#ffffff'),(157830,40263,'_blocks_1_options_theme','field_6176830e2ad17'),(157831,40263,'blocks_1_options',''),(157832,40263,'_blocks_1_options','field_6176830e2ad16'),(157833,40263,'blocks_1_text_block_heading','Benefits of training with us'),(157834,40263,'_blocks_1_text_block_heading','field_617669d413097'),(157835,40263,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(157836,40263,'_blocks_1_text_block_content','field_617669ec13098'),(157927,40558,'hide_hero','0'),(157928,40558,'_hide_hero','field_66a2380fcda39'),(157929,40558,'hero_title','BEHAVIOUR CHANGE COACHING '),(157930,40558,'_hero_title','field_617571fe285e8'),(157931,40558,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(157932,40558,'_hero_text','field_6175723c285e9'),(157933,40558,'hero_actions','1'),(157934,40558,'_hero_actions','field_61757270285ea'),(157935,40558,'hero_style','default'),(157936,40558,'_hero_style','field_62051d9dc5324'),(157937,40558,'hero_image_pos_x','right'),(157938,40558,'_hero_image_pos_x','field_62ec3d05390bb'),(157939,40558,'hero_image_pos_y','top'),(157940,40558,'_hero_image_pos_y','field_62ec3d05390bc'),(157941,40558,'hero_image_pos',''),(157942,40558,'_hero_image_pos','field_62ec3d05390ba'),(157943,40558,'fft_hide_from_listings','0'),(157944,40558,'_fft_hide_from_listings','field_61f1320446ab2'),(157945,40558,'fft_page_format','default'),(157946,40558,'_fft_page_format','field_61ae213f1f218'),(157947,40558,'fft_hide_nav','0'),(157948,40558,'_fft_hide_nav','field_635bd5e43527c'),(157949,40558,'fft_hide_header_call_to_action','0'),(157950,40558,'_fft_hide_header_call_to_action','field_635bd6723527d'),(157951,40558,'fft_page_sitemap','0'),(157952,40558,'_fft_page_sitemap','field_61af9b34e8181'),(157953,40558,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";}'),(157954,40558,'_blocks','field_6176696113096'),(157955,40558,'course_label_text',''),(157956,40558,'_course_label_text','field_61e17babf71fa'),(157957,40558,'course_label',''),(157958,40558,'_course_label','field_61e12f92749a7'),(157959,40558,'course_description',''),(157960,40558,'_course_description','field_617ac5788e5e1'),(157961,40558,'course_key_info',''),(157962,40558,'_course_key_info','field_617ac6ad8e5e2'),(157963,40558,'course_included',''),(157964,40558,'_course_included','field_617ac6f08e5e4'),(157965,40558,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(157966,40558,'_hero_actions_0_button','field_61757281285eb'),(157967,40558,'_thumbnail_id',''),(157968,40558,'__thumbnail_id','field_617570855ddaf'),(157969,40558,'blocks_0_acfe_flexible_toggle',''),(157970,40558,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(157971,40558,'blocks_0_acfe_flexible_layout_title','Template'),(157972,40558,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(157973,40558,'blocks_0_template','39087'),(157974,40558,'_blocks_0_template','field_617bdd570fe01'),(157975,40558,'blocks_1_acfe_flexible_toggle',''),(157976,40558,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(157977,40558,'blocks_1_acfe_flexible_layout_title','Text Block'),(157978,40558,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(157979,40558,'blocks_1_options_theme','#ffffff'),(157980,40558,'_blocks_1_options_theme','field_6176830e2ad17'),(157981,40558,'blocks_1_options',''),(157982,40558,'_blocks_1_options','field_6176830e2ad16'),(157983,40558,'blocks_1_text_block_heading','Benefits of training with us'),(157984,40558,'_blocks_1_text_block_heading','field_617669d413097'),(157985,40558,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(157986,40558,'_blocks_1_text_block_content','field_617669ec13098'),(157987,40558,'blocks_2_acfe_flexible_toggle',''),(157988,40558,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(157989,40558,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(157990,40558,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(157991,40558,'blocks_2_options_theme','#f5f5f5'),(157992,40558,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(157993,40558,'blocks_2_options_reverse','0'),(157994,40558,'_blocks_2_options_reverse','field_61768049bb8ac'),(157995,40558,'blocks_2_options',''),(157996,40558,'_blocks_2_options','field_617682517c334'),(157997,40558,'blocks_2_split_5050_image','40557'),(157998,40558,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(157999,40558,'blocks_2_split_5050_video',''),(158000,40558,'_blocks_2_split_5050_video','field_6239f3160848a'),(158001,40558,'blocks_2_split_5050_content_title',''),(158002,40558,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(158003,40558,'blocks_2_split_5050_content_heading','Course Overview'),(158004,40558,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(158005,40558,'blocks_2_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(158006,40558,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(158007,40558,'blocks_2_split_5050_content_actions',''),(158008,40558,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(158009,40558,'blocks_2_split_5050_content',''),(158010,40558,'_blocks_2_split_5050_content','field_61767afceb8ba'),(158011,40558,'blocks_3_acfe_flexible_toggle',''),(158012,40558,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(158013,40558,'blocks_3_acfe_flexible_layout_title','Text Block'),(158014,40558,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(158015,40558,'blocks_3_options_theme','#b61234'),(158016,40558,'_blocks_3_options_theme','field_6176830e2ad17'),(158017,40558,'blocks_3_options',''),(158018,40558,'_blocks_3_options','field_6176830e2ad16'),(158019,40558,'blocks_3_text_block_heading','Learn more about this course'),(158020,40558,'_blocks_3_text_block_heading','field_617669d413097'),(158021,40558,'blocks_3_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(158022,40558,'_blocks_3_text_block_content','field_617669ec13098'),(158023,40558,'blocks_4_acfe_flexible_toggle',''),(158024,40558,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(158025,40558,'blocks_4_acfe_flexible_layout_title','Tabs'),(158026,40558,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(158027,40558,'blocks_4_options_theme','#ffffff'),(158028,40558,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(158029,40558,'blocks_4_options',''),(158030,40558,'_blocks_4_options','field_6177cfcd8140f'),(158031,40558,'blocks_4_tabs_0_tab_label','E-learning '),(158032,40558,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(158033,40558,'blocks_4_tabs_0_tab_content_title',''),(158034,40558,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(158035,40558,'blocks_4_tabs_0_tab_content_heading',''),(158036,40558,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(158037,40558,'blocks_4_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(158038,40558,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(158039,40558,'blocks_4_tabs_0_tab_content_actions',''),(158040,40558,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(158041,40558,'blocks_4_tabs_0_tab_content',''),(158042,40558,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(158043,40558,'blocks_4_tabs_0_tab_image',''),(158044,40558,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(158045,40558,'blocks_4_tabs_1_tab_label','Content '),(158046,40558,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(158047,40558,'blocks_4_tabs_1_tab_content_title',''),(158048,40558,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(158049,40558,'blocks_4_tabs_1_tab_content_heading',''),(158050,40558,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(158051,40558,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(158052,40558,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(158053,40558,'blocks_4_tabs_1_tab_content_actions',''),(158054,40558,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(158055,40558,'blocks_4_tabs_1_tab_content',''),(158056,40558,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(158057,40558,'blocks_4_tabs_1_tab_image',''),(158058,40558,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(158059,40558,'blocks_4_tabs_2_tab_label','Assessment '),(158060,40558,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(158061,40558,'blocks_4_tabs_2_tab_content_title',''),(158062,40558,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(158063,40558,'blocks_4_tabs_2_tab_content_heading',''),(158064,40558,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(158065,40558,'blocks_4_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(158066,40558,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(158067,40558,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(158068,40558,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(158069,40558,'blocks_4_tabs_2_tab_content_actions','1'),(158070,40558,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(158071,40558,'blocks_4_tabs_2_tab_content',''),(158072,40558,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(158073,40558,'blocks_4_tabs_2_tab_image',''),(158074,40558,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(158075,40558,'blocks_4_tabs','3'),(158076,40558,'_blocks_4_tabs','field_6177cff281419'),(158092,40559,'hide_hero','0'),(158093,40559,'_hide_hero','field_66a2380fcda39'),(158094,40559,'hero_title','BEHAVIOUR CHANGE COACHING '),(158095,40559,'_hero_title','field_617571fe285e8'),(158096,40559,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(158097,40559,'_hero_text','field_6175723c285e9'),(158098,40559,'hero_actions','1'),(158099,40559,'_hero_actions','field_61757270285ea'),(158100,40559,'hero_style','default'),(158101,40559,'_hero_style','field_62051d9dc5324'),(158102,40559,'hero_image_pos_x','right'),(158103,40559,'_hero_image_pos_x','field_62ec3d05390bb'),(158104,40559,'hero_image_pos_y','top'),(158105,40559,'_hero_image_pos_y','field_62ec3d05390bc'),(158106,40559,'hero_image_pos',''),(158107,40559,'_hero_image_pos','field_62ec3d05390ba'),(158108,40559,'fft_hide_from_listings','0'),(158109,40559,'_fft_hide_from_listings','field_61f1320446ab2'),(158110,40559,'fft_page_format','default'),(158111,40559,'_fft_page_format','field_61ae213f1f218'),(158112,40559,'fft_hide_nav','0'),(158113,40559,'_fft_hide_nav','field_635bd5e43527c'),(158114,40559,'fft_hide_header_call_to_action','0'),(158115,40559,'_fft_hide_header_call_to_action','field_635bd6723527d'),(158116,40559,'fft_page_sitemap','0'),(158117,40559,'_fft_page_sitemap','field_61af9b34e8181'),(158118,40559,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";}'),(158119,40559,'_blocks','field_6176696113096'),(158120,40559,'course_label_text',''),(158121,40559,'_course_label_text','field_61e17babf71fa'),(158122,40559,'course_label',''),(158123,40559,'_course_label','field_61e12f92749a7'),(158124,40559,'course_description',''),(158125,40559,'_course_description','field_617ac5788e5e1'),(158126,40559,'course_key_info',''),(158127,40559,'_course_key_info','field_617ac6ad8e5e2'),(158128,40559,'course_included',''),(158129,40559,'_course_included','field_617ac6f08e5e4'),(158130,40559,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(158131,40559,'_hero_actions_0_button','field_61757281285eb'),(158132,40559,'blocks_0_acfe_flexible_toggle',''),(158133,40559,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(158134,40559,'blocks_0_acfe_flexible_layout_title','Template'),(158135,40559,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(158136,40559,'blocks_0_template','39087'),(158137,40559,'_blocks_0_template','field_617bdd570fe01'),(158138,40559,'blocks_1_acfe_flexible_toggle',''),(158139,40559,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(158140,40559,'blocks_1_acfe_flexible_layout_title','Text Block'),(158141,40559,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(158142,40559,'blocks_1_options_theme','#ffffff'),(158143,40559,'_blocks_1_options_theme','field_6176830e2ad17'),(158144,40559,'blocks_1_options',''),(158145,40559,'_blocks_1_options','field_6176830e2ad16'),(158146,40559,'blocks_1_text_block_heading','Benefits of training with us'),(158147,40559,'_blocks_1_text_block_heading','field_617669d413097'),(158148,40559,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(158149,40559,'_blocks_1_text_block_content','field_617669ec13098'),(158150,40559,'blocks_2_acfe_flexible_toggle',''),(158151,40559,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(158152,40559,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(158153,40559,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(158154,40559,'blocks_2_options_theme','#f5f5f5'),(158155,40559,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(158156,40559,'blocks_2_options_reverse','0'),(158157,40559,'_blocks_2_options_reverse','field_61768049bb8ac'),(158158,40559,'blocks_2_options',''),(158159,40559,'_blocks_2_options','field_617682517c334'),(158160,40559,'blocks_2_split_5050_image','40557'),(158161,40559,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(158162,40559,'blocks_2_split_5050_video',''),(158163,40559,'_blocks_2_split_5050_video','field_6239f3160848a'),(158164,40559,'blocks_2_split_5050_content_title',''),(158165,40559,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(158166,40559,'blocks_2_split_5050_content_heading','Course Overview'),(158167,40559,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(158168,40559,'blocks_2_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(158169,40559,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(158170,40559,'blocks_2_split_5050_content_actions',''),(158171,40559,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(158172,40559,'blocks_2_split_5050_content',''),(158173,40559,'_blocks_2_split_5050_content','field_61767afceb8ba'),(158174,40559,'blocks_3_acfe_flexible_toggle',''),(158175,40559,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(158176,40559,'blocks_3_acfe_flexible_layout_title','Text Block'),(158177,40559,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(158178,40559,'blocks_3_options_theme','#b61234'),(158179,40559,'_blocks_3_options_theme','field_6176830e2ad17'),(158180,40559,'blocks_3_options',''),(158181,40559,'_blocks_3_options','field_6176830e2ad16'),(158182,40559,'blocks_3_text_block_heading','Learn more about this course'),(158183,40559,'_blocks_3_text_block_heading','field_617669d413097'),(158184,40559,'blocks_3_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(158185,40559,'_blocks_3_text_block_content','field_617669ec13098'),(158186,40559,'blocks_4_acfe_flexible_toggle',''),(158187,40559,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(158188,40559,'blocks_4_acfe_flexible_layout_title','Tabs'),(158189,40559,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(158190,40559,'blocks_4_options_theme','#ffffff'),(158191,40559,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(158192,40559,'blocks_4_options',''),(158193,40559,'_blocks_4_options','field_6177cfcd8140f'),(158194,40559,'blocks_4_tabs_0_tab_label','E-learning '),(158195,40559,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(158196,40559,'blocks_4_tabs_0_tab_content_title',''),(158197,40559,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(158198,40559,'blocks_4_tabs_0_tab_content_heading',''),(158199,40559,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(158200,40559,'blocks_4_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(158201,40559,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(158202,40559,'blocks_4_tabs_0_tab_content_actions',''),(158203,40559,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(158204,40559,'blocks_4_tabs_0_tab_content',''),(158205,40559,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(158206,40559,'blocks_4_tabs_0_tab_image',''),(158207,40559,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(158208,40559,'blocks_4_tabs_1_tab_label','Content '),(158209,40559,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(158210,40559,'blocks_4_tabs_1_tab_content_title',''),(158211,40559,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(158212,40559,'blocks_4_tabs_1_tab_content_heading',''),(158213,40559,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(158214,40559,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(158215,40559,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(158216,40559,'blocks_4_tabs_1_tab_content_actions',''),(158217,40559,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(158218,40559,'blocks_4_tabs_1_tab_content',''),(158219,40559,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(158220,40559,'blocks_4_tabs_1_tab_image',''),(158221,40559,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(158222,40559,'blocks_4_tabs_2_tab_label','Assessment '),(158223,40559,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(158224,40559,'blocks_4_tabs_2_tab_content_title',''),(158225,40559,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(158226,40559,'blocks_4_tabs_2_tab_content_heading',''),(158227,40559,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(158228,40559,'blocks_4_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(158229,40559,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(158230,40559,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(158231,40559,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(158232,40559,'blocks_4_tabs_2_tab_content_actions','1'),(158233,40559,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(158234,40559,'blocks_4_tabs_2_tab_content',''),(158235,40559,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(158236,40559,'blocks_4_tabs_2_tab_image',''),(158237,40559,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(158238,40559,'blocks_4_tabs','4'),(158239,40559,'_blocks_4_tabs','field_6177cff281419'),(158240,40559,'_thumbnail_id',''),(158241,40559,'__thumbnail_id','field_617570855ddaf'),(158242,40559,'blocks_4_tabs_3_tab_label','Entry requirements'),(158243,40559,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(158244,40559,'blocks_4_tabs_3_tab_content_title',''),(158245,40559,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(158246,40559,'blocks_4_tabs_3_tab_content_heading',''),(158247,40559,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(158248,40559,'blocks_4_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(158249,40559,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(158250,40559,'blocks_4_tabs_3_tab_content_actions',''),(158251,40559,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(158252,40559,'blocks_4_tabs_3_tab_content',''),(158253,40559,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(158254,40559,'blocks_4_tabs_3_tab_image',''),(158255,40559,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(158421,40561,'_wp_attached_file','2024/09/behaviour-change-coaching-hero-image-scaled.jpg'),(158422,40561,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:55:\"2024/09/behaviour-change-coaching-hero-image-scaled.jpg\";s:8:\"filesize\";i:388625;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"behaviour-change-coaching-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90835;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124362;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"behaviour-change-coaching-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47576;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"behaviour-change-coaching-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77826;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"behaviour-change-coaching-hero-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170737;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:50:\"behaviour-change-coaching-hero-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:263428;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:48:\"behaviour-change-coaching-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53734;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:48:\"behaviour-change-coaching-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114795;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:50:\"behaviour-change-coaching-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165472;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:48:\"behaviour-change-coaching-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47562;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:48:\"behaviour-change-coaching-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90835;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124362;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:48:\"behaviour-change-coaching-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47864;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:48:\"behaviour-change-coaching-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95139;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134588;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:48:\"behaviour-change-coaching-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49526;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:48:\"behaviour-change-coaching-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97759;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135866;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:48:\"behaviour-change-coaching-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44787;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:48:\"behaviour-change-coaching-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81437;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:49:\"behaviour-change-coaching-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109389;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1634029656\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:40:\"behaviour-change-coaching-hero-image.jpg\";}'),(158423,40263,'_thumbnail_id','40561'),(158442,40562,'hide_hero','0'),(158443,40562,'_hide_hero','field_66a2380fcda39'),(158444,40562,'hero_title','BEHAVIOUR CHANGE COACHING '),(158445,40562,'_hero_title','field_617571fe285e8'),(158446,40562,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(158447,40562,'_hero_text','field_6175723c285e9'),(158448,40562,'hero_actions','1'),(158449,40562,'_hero_actions','field_61757270285ea'),(158450,40562,'hero_style','default'),(158451,40562,'_hero_style','field_62051d9dc5324'),(158452,40562,'hero_image_pos_x','right'),(158453,40562,'_hero_image_pos_x','field_62ec3d05390bb'),(158454,40562,'hero_image_pos_y','top'),(158455,40562,'_hero_image_pos_y','field_62ec3d05390bc'),(158456,40562,'hero_image_pos',''),(158457,40562,'_hero_image_pos','field_62ec3d05390ba'),(158458,40562,'fft_hide_from_listings','0'),(158459,40562,'_fft_hide_from_listings','field_61f1320446ab2'),(158460,40562,'fft_page_format','default'),(158461,40562,'_fft_page_format','field_61ae213f1f218'),(158462,40562,'fft_hide_nav','0'),(158463,40562,'_fft_hide_nav','field_635bd5e43527c'),(158464,40562,'fft_hide_header_call_to_action','0'),(158465,40562,'_fft_hide_header_call_to_action','field_635bd6723527d'),(158466,40562,'fft_page_sitemap','0'),(158467,40562,'_fft_page_sitemap','field_61af9b34e8181'),(158468,40562,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";i:5;s:5:\"cards\";}'),(158469,40562,'_blocks','field_6176696113096'),(158470,40562,'course_label_text',''),(158471,40562,'_course_label_text','field_61e17babf71fa'),(158472,40562,'course_label',''),(158473,40562,'_course_label','field_61e12f92749a7'),(158474,40562,'course_description',''),(158475,40562,'_course_description','field_617ac5788e5e1'),(158476,40562,'course_key_info',''),(158477,40562,'_course_key_info','field_617ac6ad8e5e2'),(158478,40562,'course_included',''),(158479,40562,'_course_included','field_617ac6f08e5e4'),(158480,40562,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(158481,40562,'_hero_actions_0_button','field_61757281285eb'),(158482,40562,'blocks_0_acfe_flexible_toggle',''),(158483,40562,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(158484,40562,'blocks_0_acfe_flexible_layout_title','Template'),(158485,40562,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(158486,40562,'blocks_0_template','39087'),(158487,40562,'_blocks_0_template','field_617bdd570fe01'),(158488,40562,'blocks_1_acfe_flexible_toggle',''),(158489,40562,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(158490,40562,'blocks_1_acfe_flexible_layout_title','Text Block'),(158491,40562,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(158492,40562,'blocks_1_options_theme','#ffffff'),(158493,40562,'_blocks_1_options_theme','field_6176830e2ad17'),(158494,40562,'blocks_1_options',''),(158495,40562,'_blocks_1_options','field_6176830e2ad16'),(158496,40562,'blocks_1_text_block_heading','Benefits of training with us'),(158497,40562,'_blocks_1_text_block_heading','field_617669d413097'),(158498,40562,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(158499,40562,'_blocks_1_text_block_content','field_617669ec13098'),(158500,40562,'blocks_2_acfe_flexible_toggle',''),(158501,40562,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(158502,40562,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(158503,40562,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(158504,40562,'blocks_2_options_theme','#f5f5f5'),(158505,40562,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(158506,40562,'blocks_2_options_reverse','0'),(158507,40562,'_blocks_2_options_reverse','field_61768049bb8ac'),(158508,40562,'blocks_2_options',''),(158509,40562,'_blocks_2_options','field_617682517c334'),(158510,40562,'blocks_2_split_5050_image','40557'),(158511,40562,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(158512,40562,'blocks_2_split_5050_video',''),(158513,40562,'_blocks_2_split_5050_video','field_6239f3160848a'),(158514,40562,'blocks_2_split_5050_content_title',''),(158515,40562,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(158516,40562,'blocks_2_split_5050_content_heading','Course Overview'),(158517,40562,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(158518,40562,'blocks_2_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(158519,40562,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(158520,40562,'blocks_2_split_5050_content_actions',''),(158521,40562,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(158522,40562,'blocks_2_split_5050_content',''),(158523,40562,'_blocks_2_split_5050_content','field_61767afceb8ba'),(158524,40562,'blocks_3_acfe_flexible_toggle',''),(158525,40562,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(158526,40562,'blocks_3_acfe_flexible_layout_title','Text Block'),(158527,40562,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(158528,40562,'blocks_3_options_theme','#b61234'),(158529,40562,'_blocks_3_options_theme','field_6176830e2ad17'),(158530,40562,'blocks_3_options',''),(158531,40562,'_blocks_3_options','field_6176830e2ad16'),(158532,40562,'blocks_3_text_block_heading','Learn more about this course'),(158533,40562,'_blocks_3_text_block_heading','field_617669d413097'),(158534,40562,'blocks_3_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(158535,40562,'_blocks_3_text_block_content','field_617669ec13098'),(158536,40562,'blocks_4_acfe_flexible_toggle',''),(158537,40562,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(158538,40562,'blocks_4_acfe_flexible_layout_title','Tabs'),(158539,40562,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(158540,40562,'blocks_4_options_theme','#ffffff'),(158541,40562,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(158542,40562,'blocks_4_options',''),(158543,40562,'_blocks_4_options','field_6177cfcd8140f'),(158544,40562,'blocks_4_tabs_0_tab_label','E-learning '),(158545,40562,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(158546,40562,'blocks_4_tabs_0_tab_content_title',''),(158547,40562,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(158548,40562,'blocks_4_tabs_0_tab_content_heading',''),(158549,40562,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(158550,40562,'blocks_4_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(158551,40562,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(158552,40562,'blocks_4_tabs_0_tab_content_actions',''),(158553,40562,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(158554,40562,'blocks_4_tabs_0_tab_content',''),(158555,40562,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(158556,40562,'blocks_4_tabs_0_tab_image',''),(158557,40562,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(158558,40562,'blocks_4_tabs_1_tab_label','Content '),(158559,40562,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(158560,40562,'blocks_4_tabs_1_tab_content_title',''),(158561,40562,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(158562,40562,'blocks_4_tabs_1_tab_content_heading',''),(158563,40562,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(158564,40562,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(158565,40562,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(158566,40562,'blocks_4_tabs_1_tab_content_actions',''),(158567,40562,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(158568,40562,'blocks_4_tabs_1_tab_content',''),(158569,40562,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(158570,40562,'blocks_4_tabs_1_tab_image',''),(158571,40562,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(158572,40562,'blocks_4_tabs_2_tab_label','Assessment '),(158573,40562,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(158574,40562,'blocks_4_tabs_2_tab_content_title',''),(158575,40562,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(158576,40562,'blocks_4_tabs_2_tab_content_heading',''),(158577,40562,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(158578,40562,'blocks_4_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(158579,40562,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(158580,40562,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(158581,40562,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(158582,40562,'blocks_4_tabs_2_tab_content_actions','1'),(158583,40562,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(158584,40562,'blocks_4_tabs_2_tab_content',''),(158585,40562,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(158586,40562,'blocks_4_tabs_2_tab_image',''),(158587,40562,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(158588,40562,'blocks_4_tabs','4'),(158589,40562,'_blocks_4_tabs','field_6177cff281419'),(158590,40562,'blocks_4_tabs_3_tab_label','Entry requirements'),(158591,40562,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(158592,40562,'blocks_4_tabs_3_tab_content_title',''),(158593,40562,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(158594,40562,'blocks_4_tabs_3_tab_content_heading',''),(158595,40562,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(158596,40562,'blocks_4_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(158597,40562,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(158598,40562,'blocks_4_tabs_3_tab_content_actions',''),(158599,40562,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(158600,40562,'blocks_4_tabs_3_tab_content',''),(158601,40562,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(158602,40562,'blocks_4_tabs_3_tab_image',''),(158603,40562,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(158604,40562,'_thumbnail_id','40561'),(158605,40562,'__thumbnail_id','field_617570855ddaf'),(158606,40562,'blocks_5_acfe_flexible_toggle',''),(158607,40562,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(158608,40562,'blocks_5_acfe_flexible_layout_title','Cards'),(158609,40562,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(158610,40562,'blocks_5_options_theme','#ffffff'),(158611,40562,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(158612,40562,'blocks_5_options_format','carousel'),(158613,40562,'_blocks_5_options_format','field_617a7b15245b5'),(158614,40562,'blocks_5_options_style','default'),(158615,40562,'_blocks_5_options_style','field_6278ffb63484a'),(158616,40562,'blocks_5_options_cards_current_listing','0'),(158617,40562,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(158618,40562,'blocks_5_options_cards_content','selection'),(158619,40562,'_blocks_5_options_cards_content','field_617aba6122688'),(158620,40562,'blocks_5_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(158621,40562,'_blocks_5_options_cards_select_posts','field_6193f85fbaea1'),(158622,40562,'blocks_5_options',''),(158623,40562,'_blocks_5_options','field_617a7b15245b3'),(158660,40563,'hide_hero','0'),(158661,40563,'_hide_hero','field_66a2380fcda39'),(158662,40563,'hero_title','BEHAVIOUR CHANGE COACHING '),(158663,40563,'_hero_title','field_617571fe285e8'),(158664,40563,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(158665,40563,'_hero_text','field_6175723c285e9'),(158666,40563,'hero_actions','1'),(158667,40563,'_hero_actions','field_61757270285ea'),(158668,40563,'hero_style','default'),(158669,40563,'_hero_style','field_62051d9dc5324'),(158670,40563,'hero_image_pos_x','right'),(158671,40563,'_hero_image_pos_x','field_62ec3d05390bb'),(158672,40563,'hero_image_pos_y','top'),(158673,40563,'_hero_image_pos_y','field_62ec3d05390bc'),(158674,40563,'hero_image_pos',''),(158675,40563,'_hero_image_pos','field_62ec3d05390ba'),(158676,40563,'fft_hide_from_listings','0'),(158677,40563,'_fft_hide_from_listings','field_61f1320446ab2'),(158678,40563,'fft_page_format','default'),(158679,40563,'_fft_page_format','field_61ae213f1f218'),(158680,40563,'fft_hide_nav','0'),(158681,40563,'_fft_hide_nav','field_635bd5e43527c'),(158682,40563,'fft_hide_header_call_to_action','0'),(158683,40563,'_fft_hide_header_call_to_action','field_635bd6723527d'),(158684,40563,'fft_page_sitemap','0'),(158685,40563,'_fft_page_sitemap','field_61af9b34e8181'),(158686,40563,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(158687,40563,'_blocks','field_6176696113096'),(158688,40563,'course_label_text',''),(158689,40563,'_course_label_text','field_61e17babf71fa'),(158690,40563,'course_label',''),(158691,40563,'_course_label','field_61e12f92749a7'),(158692,40563,'course_description',''),(158693,40563,'_course_description','field_617ac5788e5e1'),(158694,40563,'course_key_info',''),(158695,40563,'_course_key_info','field_617ac6ad8e5e2'),(158696,40563,'course_included',''),(158697,40563,'_course_included','field_617ac6f08e5e4'),(158698,40563,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(158699,40563,'_hero_actions_0_button','field_61757281285eb'),(158700,40563,'blocks_0_acfe_flexible_toggle',''),(158701,40563,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(158702,40563,'blocks_0_acfe_flexible_layout_title','Template'),(158703,40563,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(158704,40563,'blocks_0_template','39087'),(158705,40563,'_blocks_0_template','field_617bdd570fe01'),(158706,40563,'blocks_1_acfe_flexible_toggle',''),(158707,40563,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(158708,40563,'blocks_1_acfe_flexible_layout_title','Text Block'),(158709,40563,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(158710,40563,'blocks_1_options_theme','#ffffff'),(158711,40563,'_blocks_1_options_theme','field_6176830e2ad17'),(158712,40563,'blocks_1_options',''),(158713,40563,'_blocks_1_options','field_6176830e2ad16'),(158714,40563,'blocks_1_text_block_heading','Benefits of training with us'),(158715,40563,'_blocks_1_text_block_heading','field_617669d413097'),(158716,40563,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(158717,40563,'_blocks_1_text_block_content','field_617669ec13098'),(158718,40563,'blocks_2_acfe_flexible_toggle',''),(158719,40563,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(158720,40563,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(158721,40563,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(158722,40563,'blocks_2_options_theme','#f5f5f5'),(158723,40563,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(158724,40563,'blocks_2_options_reverse','0'),(158725,40563,'_blocks_2_options_reverse','field_61768049bb8ac'),(158726,40563,'blocks_2_options',''),(158727,40563,'_blocks_2_options','field_617682517c334'),(158728,40563,'blocks_2_split_5050_image','40557'),(158729,40563,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(158730,40563,'blocks_2_split_5050_video',''),(158731,40563,'_blocks_2_split_5050_video','field_6239f3160848a'),(158732,40563,'blocks_2_split_5050_content_title',''),(158733,40563,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(158734,40563,'blocks_2_split_5050_content_heading','Course Overview'),(158735,40563,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(158736,40563,'blocks_2_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(158737,40563,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(158738,40563,'blocks_2_split_5050_content_actions',''),(158739,40563,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(158740,40563,'blocks_2_split_5050_content',''),(158741,40563,'_blocks_2_split_5050_content','field_61767afceb8ba'),(158742,40563,'blocks_3_acfe_flexible_toggle',''),(158743,40563,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(158744,40563,'blocks_3_acfe_flexible_layout_title','Text Block'),(158745,40563,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(158746,40563,'blocks_3_options_theme','#b61234'),(158747,40563,'_blocks_3_options_theme','field_6176830e2ad17'),(158748,40563,'blocks_3_options',''),(158749,40563,'_blocks_3_options','field_6176830e2ad16'),(158750,40563,'blocks_3_text_block_heading','Learn more about this course'),(158751,40563,'_blocks_3_text_block_heading','field_617669d413097'),(158752,40563,'blocks_3_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(158753,40563,'_blocks_3_text_block_content','field_617669ec13098'),(158754,40563,'blocks_4_acfe_flexible_toggle',''),(158755,40563,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(158756,40563,'blocks_4_acfe_flexible_layout_title','Tabs'),(158757,40563,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(158758,40563,'blocks_4_options_theme','#ffffff'),(158759,40563,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(158760,40563,'blocks_4_options',''),(158761,40563,'_blocks_4_options','field_6177cfcd8140f'),(158762,40563,'blocks_4_tabs_0_tab_label','E-learning '),(158763,40563,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(158764,40563,'blocks_4_tabs_0_tab_content_title',''),(158765,40563,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(158766,40563,'blocks_4_tabs_0_tab_content_heading',''),(158767,40563,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(158768,40563,'blocks_4_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(158769,40563,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(158770,40563,'blocks_4_tabs_0_tab_content_actions','1'),(158771,40563,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(158772,40563,'blocks_4_tabs_0_tab_content',''),(158773,40563,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(158774,40563,'blocks_4_tabs_0_tab_image',''),(158775,40563,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(158776,40563,'blocks_4_tabs_1_tab_label','Content '),(158777,40563,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(158778,40563,'blocks_4_tabs_1_tab_content_title',''),(158779,40563,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(158780,40563,'blocks_4_tabs_1_tab_content_heading',''),(158781,40563,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(158782,40563,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(158783,40563,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(158784,40563,'blocks_4_tabs_1_tab_content_actions','1'),(158785,40563,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(158786,40563,'blocks_4_tabs_1_tab_content',''),(158787,40563,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(158788,40563,'blocks_4_tabs_1_tab_image',''),(158789,40563,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(158790,40563,'blocks_4_tabs_2_tab_label','Assessment '),(158791,40563,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(158792,40563,'blocks_4_tabs_2_tab_content_title',''),(158793,40563,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(158794,40563,'blocks_4_tabs_2_tab_content_heading',''),(158795,40563,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(158796,40563,'blocks_4_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(158797,40563,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(158798,40563,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(158799,40563,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(158800,40563,'blocks_4_tabs_2_tab_content_actions','1'),(158801,40563,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(158802,40563,'blocks_4_tabs_2_tab_content',''),(158803,40563,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(158804,40563,'blocks_4_tabs_2_tab_image',''),(158805,40563,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(158806,40563,'blocks_4_tabs','4'),(158807,40563,'_blocks_4_tabs','field_6177cff281419'),(158808,40563,'blocks_4_tabs_3_tab_label','Entry requirements'),(158809,40563,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(158810,40563,'blocks_4_tabs_3_tab_content_title',''),(158811,40563,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(158812,40563,'blocks_4_tabs_3_tab_content_heading',''),(158813,40563,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(158814,40563,'blocks_4_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(158815,40563,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(158816,40563,'blocks_4_tabs_3_tab_content_actions','1'),(158817,40563,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(158818,40563,'blocks_4_tabs_3_tab_content',''),(158819,40563,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(158820,40563,'blocks_4_tabs_3_tab_image',''),(158821,40563,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(158822,40563,'_thumbnail_id','40561'),(158823,40563,'__thumbnail_id','field_617570855ddaf'),(158824,40563,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(158825,40563,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(158826,40563,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(158827,40563,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(158828,40563,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(158829,40563,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(158830,40563,'blocks_5_acfe_flexible_toggle',''),(158831,40563,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(158832,40563,'blocks_5_acfe_flexible_layout_title','Text Block'),(158833,40563,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(158834,40563,'blocks_5_options_theme','#ffffff'),(158835,40563,'_blocks_5_options_theme','field_6176830e2ad17'),(158836,40563,'blocks_5_options',''),(158837,40563,'_blocks_5_options','field_6176830e2ad16'),(158838,40563,'blocks_5_text_block_heading','Blogs'),(158839,40563,'_blocks_5_text_block_heading','field_617669d413097'),(158840,40563,'blocks_5_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(158841,40563,'_blocks_5_text_block_content','field_617669ec13098'),(158842,40563,'blocks_6_acfe_flexible_toggle',''),(158843,40563,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(158844,40563,'blocks_6_acfe_flexible_layout_title','Cards'),(158845,40563,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(158846,40563,'blocks_6_options_theme','#ffffff'),(158847,40563,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(158848,40563,'blocks_6_options_format','carousel'),(158849,40563,'_blocks_6_options_format','field_617a7b15245b5'),(158850,40563,'blocks_6_options_style','default'),(158851,40563,'_blocks_6_options_style','field_6278ffb63484a'),(158852,40563,'blocks_6_options_cards_current_listing','0'),(158853,40563,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(158854,40563,'blocks_6_options_cards_content','selection'),(158855,40563,'_blocks_6_options_cards_content','field_617aba6122688'),(158856,40563,'blocks_6_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(158857,40563,'_blocks_6_options_cards_select_posts','field_6193f85fbaea1'),(158858,40563,'blocks_6_options',''),(158859,40563,'_blocks_6_options','field_617a7b15245b3'),(158872,40564,'hide_hero','0'),(158873,40564,'_hide_hero','field_66a2380fcda39'),(158874,40564,'hero_title','BEHAVIOUR CHANGE COACHING '),(158875,40564,'_hero_title','field_617571fe285e8'),(158876,40564,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(158877,40564,'_hero_text','field_6175723c285e9'),(158878,40564,'hero_actions','1'),(158879,40564,'_hero_actions','field_61757270285ea'),(158880,40564,'hero_style','default'),(158881,40564,'_hero_style','field_62051d9dc5324'),(158882,40564,'hero_image_pos_x','right'),(158883,40564,'_hero_image_pos_x','field_62ec3d05390bb'),(158884,40564,'hero_image_pos_y','top'),(158885,40564,'_hero_image_pos_y','field_62ec3d05390bc'),(158886,40564,'hero_image_pos',''),(158887,40564,'_hero_image_pos','field_62ec3d05390ba'),(158888,40564,'fft_hide_from_listings','0'),(158889,40564,'_fft_hide_from_listings','field_61f1320446ab2'),(158890,40564,'fft_page_format','default'),(158891,40564,'_fft_page_format','field_61ae213f1f218'),(158892,40564,'fft_hide_nav','0'),(158893,40564,'_fft_hide_nav','field_635bd5e43527c'),(158894,40564,'fft_hide_header_call_to_action','0'),(158895,40564,'_fft_hide_header_call_to_action','field_635bd6723527d'),(158896,40564,'fft_page_sitemap','0'),(158897,40564,'_fft_page_sitemap','field_61af9b34e8181'),(158898,40564,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:7:\"buttons\";}'),(158899,40564,'_blocks','field_6176696113096'),(158900,40564,'course_label_text',''),(158901,40564,'_course_label_text','field_61e17babf71fa'),(158902,40564,'course_label',''),(158903,40564,'_course_label','field_61e12f92749a7'),(158904,40564,'course_description',''),(158905,40564,'_course_description','field_617ac5788e5e1'),(158906,40564,'course_key_info',''),(158907,40564,'_course_key_info','field_617ac6ad8e5e2'),(158908,40564,'course_included',''),(158909,40564,'_course_included','field_617ac6f08e5e4'),(158910,40564,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(158911,40564,'_hero_actions_0_button','field_61757281285eb'),(158912,40564,'blocks_0_acfe_flexible_toggle',''),(158913,40564,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(158914,40564,'blocks_0_acfe_flexible_layout_title','Template'),(158915,40564,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(158916,40564,'blocks_0_template','39087'),(158917,40564,'_blocks_0_template','field_617bdd570fe01'),(158918,40564,'blocks_1_acfe_flexible_toggle',''),(158919,40564,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(158920,40564,'blocks_1_acfe_flexible_layout_title','Text Block'),(158921,40564,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(158922,40564,'blocks_1_options_theme','#ffffff'),(158923,40564,'_blocks_1_options_theme','field_6176830e2ad17'),(158924,40564,'blocks_1_options',''),(158925,40564,'_blocks_1_options','field_6176830e2ad16'),(158926,40564,'blocks_1_text_block_heading','Benefits of training with us'),(158927,40564,'_blocks_1_text_block_heading','field_617669d413097'),(158928,40564,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(158929,40564,'_blocks_1_text_block_content','field_617669ec13098'),(158930,40564,'blocks_2_acfe_flexible_toggle',''),(158931,40564,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(158932,40564,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(158933,40564,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(158934,40564,'blocks_2_options_theme','#f5f5f5'),(158935,40564,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(158936,40564,'blocks_2_options_reverse','0'),(158937,40564,'_blocks_2_options_reverse','field_61768049bb8ac'),(158938,40564,'blocks_2_options',''),(158939,40564,'_blocks_2_options','field_617682517c334'),(158940,40564,'blocks_2_split_5050_image','40557'),(158941,40564,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(158942,40564,'blocks_2_split_5050_video',''),(158943,40564,'_blocks_2_split_5050_video','field_6239f3160848a'),(158944,40564,'blocks_2_split_5050_content_title',''),(158945,40564,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(158946,40564,'blocks_2_split_5050_content_heading','Course Overview'),(158947,40564,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(158948,40564,'blocks_2_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(158949,40564,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(158950,40564,'blocks_2_split_5050_content_actions',''),(158951,40564,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(158952,40564,'blocks_2_split_5050_content',''),(158953,40564,'_blocks_2_split_5050_content','field_61767afceb8ba'),(158954,40564,'blocks_3_acfe_flexible_toggle',''),(158955,40564,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(158956,40564,'blocks_3_acfe_flexible_layout_title','Text Block'),(158957,40564,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(158958,40564,'blocks_3_options_theme','#b61234'),(158959,40564,'_blocks_3_options_theme','field_6176830e2ad17'),(158960,40564,'blocks_3_options',''),(158961,40564,'_blocks_3_options','field_6176830e2ad16'),(158962,40564,'blocks_3_text_block_heading','Learn more about this course'),(158963,40564,'_blocks_3_text_block_heading','field_617669d413097'),(158964,40564,'blocks_3_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(158965,40564,'_blocks_3_text_block_content','field_617669ec13098'),(158966,40564,'blocks_4_acfe_flexible_toggle',''),(158967,40564,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(158968,40564,'blocks_4_acfe_flexible_layout_title','Tabs'),(158969,40564,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(158970,40564,'blocks_4_options_theme','#ffffff'),(158971,40564,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(158972,40564,'blocks_4_options',''),(158973,40564,'_blocks_4_options','field_6177cfcd8140f'),(158974,40564,'blocks_4_tabs_0_tab_label','E-learning '),(158975,40564,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(158976,40564,'blocks_4_tabs_0_tab_content_title',''),(158977,40564,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(158978,40564,'blocks_4_tabs_0_tab_content_heading',''),(158979,40564,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(158980,40564,'blocks_4_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(158981,40564,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(158982,40564,'blocks_4_tabs_0_tab_content_actions','1'),(158983,40564,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(158984,40564,'blocks_4_tabs_0_tab_content',''),(158985,40564,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(158986,40564,'blocks_4_tabs_0_tab_image',''),(158987,40564,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(158988,40564,'blocks_4_tabs_1_tab_label','Content '),(158989,40564,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(158990,40564,'blocks_4_tabs_1_tab_content_title',''),(158991,40564,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(158992,40564,'blocks_4_tabs_1_tab_content_heading',''),(158993,40564,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(158994,40564,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(158995,40564,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(158996,40564,'blocks_4_tabs_1_tab_content_actions','1'),(158997,40564,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(158998,40564,'blocks_4_tabs_1_tab_content',''),(158999,40564,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(159000,40564,'blocks_4_tabs_1_tab_image',''),(159001,40564,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(159002,40564,'blocks_4_tabs_2_tab_label','Assessment '),(159003,40564,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(159004,40564,'blocks_4_tabs_2_tab_content_title',''),(159005,40564,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(159006,40564,'blocks_4_tabs_2_tab_content_heading',''),(159007,40564,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(159008,40564,'blocks_4_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(159009,40564,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(159010,40564,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159011,40564,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(159012,40564,'blocks_4_tabs_2_tab_content_actions','1'),(159013,40564,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(159014,40564,'blocks_4_tabs_2_tab_content',''),(159015,40564,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(159016,40564,'blocks_4_tabs_2_tab_image',''),(159017,40564,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(159018,40564,'blocks_4_tabs','4'),(159019,40564,'_blocks_4_tabs','field_6177cff281419'),(159020,40564,'blocks_4_tabs_3_tab_label','Entry requirements'),(159021,40564,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(159022,40564,'blocks_4_tabs_3_tab_content_title',''),(159023,40564,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(159024,40564,'blocks_4_tabs_3_tab_content_heading',''),(159025,40564,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(159026,40564,'blocks_4_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(159027,40564,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(159028,40564,'blocks_4_tabs_3_tab_content_actions','1'),(159029,40564,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(159030,40564,'blocks_4_tabs_3_tab_content',''),(159031,40564,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(159032,40564,'blocks_4_tabs_3_tab_image',''),(159033,40564,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(159034,40564,'_thumbnail_id','40561'),(159035,40564,'__thumbnail_id','field_617570855ddaf'),(159036,40564,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159037,40564,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(159038,40564,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159039,40564,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(159040,40564,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159041,40564,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(159042,40564,'blocks_5_acfe_flexible_toggle',''),(159043,40564,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(159044,40564,'blocks_5_acfe_flexible_layout_title','Text Block'),(159045,40564,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(159046,40564,'blocks_5_options_theme','#ffffff'),(159047,40564,'_blocks_5_options_theme','field_6176830e2ad17'),(159048,40564,'blocks_5_options',''),(159049,40564,'_blocks_5_options','field_6176830e2ad16'),(159050,40564,'blocks_5_text_block_heading','Blogs'),(159051,40564,'_blocks_5_text_block_heading','field_617669d413097'),(159052,40564,'blocks_5_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(159053,40564,'_blocks_5_text_block_content','field_617669ec13098'),(159054,40564,'blocks_6_acfe_flexible_toggle',''),(159055,40564,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(159056,40564,'blocks_6_acfe_flexible_layout_title','Cards'),(159057,40564,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(159058,40564,'blocks_6_options_theme','#f5f5f5'),(159059,40564,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(159060,40564,'blocks_6_options_format','carousel'),(159061,40564,'_blocks_6_options_format','field_617a7b15245b5'),(159062,40564,'blocks_6_options_style','default'),(159063,40564,'_blocks_6_options_style','field_6278ffb63484a'),(159064,40564,'blocks_6_options_cards_current_listing','0'),(159065,40564,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(159066,40564,'blocks_6_options_cards_content','selection'),(159067,40564,'_blocks_6_options_cards_content','field_617aba6122688'),(159068,40564,'blocks_6_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(159069,40564,'_blocks_6_options_cards_select_posts','field_6193f85fbaea1'),(159070,40564,'blocks_6_options',''),(159071,40564,'_blocks_6_options','field_617a7b15245b3'),(159072,40564,'blocks_7_acfe_flexible_toggle',''),(159073,40564,'_blocks_7_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(159074,40564,'blocks_7_acfe_flexible_layout_title','Button(s)'),(159075,40564,'_blocks_7_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(159076,40564,'blocks_7_options_theme','#f5f5f5'),(159077,40564,'_blocks_7_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(159078,40564,'blocks_7_options',''),(159079,40564,'_blocks_7_options','field_623b03edb6e65'),(159080,40564,'blocks_7_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159081,40564,'_blocks_7_actions_0_button','field_623b03edb6e6f'),(159082,40564,'blocks_7_actions','1'),(159083,40564,'_blocks_7_actions','field_623b03edb6e6e'),(159118,40565,'hide_hero','0'),(159119,40565,'_hide_hero','field_66a2380fcda39'),(159120,40565,'hero_title','BEHAVIOUR CHANGE COACHING '),(159121,40565,'_hero_title','field_617571fe285e8'),(159122,40565,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(159123,40565,'_hero_text','field_6175723c285e9'),(159124,40565,'hero_actions','1'),(159125,40565,'_hero_actions','field_61757270285ea'),(159126,40565,'hero_style','default'),(159127,40565,'_hero_style','field_62051d9dc5324'),(159128,40565,'hero_image_pos_x','right'),(159129,40565,'_hero_image_pos_x','field_62ec3d05390bb'),(159130,40565,'hero_image_pos_y','top'),(159131,40565,'_hero_image_pos_y','field_62ec3d05390bc'),(159132,40565,'hero_image_pos',''),(159133,40565,'_hero_image_pos','field_62ec3d05390ba'),(159134,40565,'fft_hide_from_listings','0'),(159135,40565,'_fft_hide_from_listings','field_61f1320446ab2'),(159136,40565,'fft_page_format','default'),(159137,40565,'_fft_page_format','field_61ae213f1f218'),(159138,40565,'fft_hide_nav','0'),(159139,40565,'_fft_hide_nav','field_635bd5e43527c'),(159140,40565,'fft_hide_header_call_to_action','0'),(159141,40565,'_fft_hide_header_call_to_action','field_635bd6723527d'),(159142,40565,'fft_page_sitemap','0'),(159143,40565,'_fft_page_sitemap','field_61af9b34e8181'),(159144,40565,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:7:\"buttons\";i:8;s:5:\"icons\";}'),(159145,40565,'_blocks','field_6176696113096'),(159146,40565,'course_label_text',''),(159147,40565,'_course_label_text','field_61e17babf71fa'),(159148,40565,'course_label',''),(159149,40565,'_course_label','field_61e12f92749a7'),(159150,40565,'course_description',''),(159151,40565,'_course_description','field_617ac5788e5e1'),(159152,40565,'course_key_info',''),(159153,40565,'_course_key_info','field_617ac6ad8e5e2'),(159154,40565,'course_included',''),(159155,40565,'_course_included','field_617ac6f08e5e4'),(159156,40565,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159157,40565,'_hero_actions_0_button','field_61757281285eb'),(159158,40565,'blocks_0_acfe_flexible_toggle',''),(159159,40565,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(159160,40565,'blocks_0_acfe_flexible_layout_title','Template'),(159161,40565,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(159162,40565,'blocks_0_template','39087'),(159163,40565,'_blocks_0_template','field_617bdd570fe01'),(159164,40565,'blocks_1_acfe_flexible_toggle',''),(159165,40565,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(159166,40565,'blocks_1_acfe_flexible_layout_title','Text Block'),(159167,40565,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(159168,40565,'blocks_1_options_theme','#ffffff'),(159169,40565,'_blocks_1_options_theme','field_6176830e2ad17'),(159170,40565,'blocks_1_options',''),(159171,40565,'_blocks_1_options','field_6176830e2ad16'),(159172,40565,'blocks_1_text_block_heading','Benefits of training with us'),(159173,40565,'_blocks_1_text_block_heading','field_617669d413097'),(159174,40565,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(159175,40565,'_blocks_1_text_block_content','field_617669ec13098'),(159176,40565,'blocks_2_acfe_flexible_toggle',''),(159177,40565,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(159178,40565,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(159179,40565,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(159180,40565,'blocks_2_options_theme','#f5f5f5'),(159181,40565,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(159182,40565,'blocks_2_options_reverse','0'),(159183,40565,'_blocks_2_options_reverse','field_61768049bb8ac'),(159184,40565,'blocks_2_options',''),(159185,40565,'_blocks_2_options','field_617682517c334'),(159186,40565,'blocks_2_split_5050_image','40557'),(159187,40565,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(159188,40565,'blocks_2_split_5050_video',''),(159189,40565,'_blocks_2_split_5050_video','field_6239f3160848a'),(159190,40565,'blocks_2_split_5050_content_title',''),(159191,40565,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(159192,40565,'blocks_2_split_5050_content_heading','Course Overview'),(159193,40565,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(159194,40565,'blocks_2_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(159195,40565,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(159196,40565,'blocks_2_split_5050_content_actions',''),(159197,40565,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(159198,40565,'blocks_2_split_5050_content',''),(159199,40565,'_blocks_2_split_5050_content','field_61767afceb8ba'),(159200,40565,'blocks_3_acfe_flexible_toggle',''),(159201,40565,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(159202,40565,'blocks_3_acfe_flexible_layout_title','Text Block'),(159203,40565,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(159204,40565,'blocks_3_options_theme','#b61234'),(159205,40565,'_blocks_3_options_theme','field_6176830e2ad17'),(159206,40565,'blocks_3_options',''),(159207,40565,'_blocks_3_options','field_6176830e2ad16'),(159208,40565,'blocks_3_text_block_heading','Learn more about this course'),(159209,40565,'_blocks_3_text_block_heading','field_617669d413097'),(159210,40565,'blocks_3_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(159211,40565,'_blocks_3_text_block_content','field_617669ec13098'),(159212,40565,'blocks_4_acfe_flexible_toggle',''),(159213,40565,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(159214,40565,'blocks_4_acfe_flexible_layout_title','Tabs'),(159215,40565,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(159216,40565,'blocks_4_options_theme','#ffffff'),(159217,40565,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(159218,40565,'blocks_4_options',''),(159219,40565,'_blocks_4_options','field_6177cfcd8140f'),(159220,40565,'blocks_4_tabs_0_tab_label','E-learning '),(159221,40565,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(159222,40565,'blocks_4_tabs_0_tab_content_title',''),(159223,40565,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(159224,40565,'blocks_4_tabs_0_tab_content_heading',''),(159225,40565,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(159226,40565,'blocks_4_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(159227,40565,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(159228,40565,'blocks_4_tabs_0_tab_content_actions','1'),(159229,40565,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(159230,40565,'blocks_4_tabs_0_tab_content',''),(159231,40565,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(159232,40565,'blocks_4_tabs_0_tab_image',''),(159233,40565,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(159234,40565,'blocks_4_tabs_1_tab_label','Content '),(159235,40565,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(159236,40565,'blocks_4_tabs_1_tab_content_title',''),(159237,40565,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(159238,40565,'blocks_4_tabs_1_tab_content_heading',''),(159239,40565,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(159240,40565,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(159241,40565,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(159242,40565,'blocks_4_tabs_1_tab_content_actions','1'),(159243,40565,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(159244,40565,'blocks_4_tabs_1_tab_content',''),(159245,40565,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(159246,40565,'blocks_4_tabs_1_tab_image',''),(159247,40565,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(159248,40565,'blocks_4_tabs_2_tab_label','Assessment '),(159249,40565,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(159250,40565,'blocks_4_tabs_2_tab_content_title',''),(159251,40565,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(159252,40565,'blocks_4_tabs_2_tab_content_heading',''),(159253,40565,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(159254,40565,'blocks_4_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(159255,40565,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(159256,40565,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159257,40565,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(159258,40565,'blocks_4_tabs_2_tab_content_actions','1'),(159259,40565,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(159260,40565,'blocks_4_tabs_2_tab_content',''),(159261,40565,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(159262,40565,'blocks_4_tabs_2_tab_image',''),(159263,40565,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(159264,40565,'blocks_4_tabs','4'),(159265,40565,'_blocks_4_tabs','field_6177cff281419'),(159266,40565,'blocks_4_tabs_3_tab_label','Entry requirements'),(159267,40565,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(159268,40565,'blocks_4_tabs_3_tab_content_title',''),(159269,40565,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(159270,40565,'blocks_4_tabs_3_tab_content_heading',''),(159271,40565,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(159272,40565,'blocks_4_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(159273,40565,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(159274,40565,'blocks_4_tabs_3_tab_content_actions','1'),(159275,40565,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(159276,40565,'blocks_4_tabs_3_tab_content',''),(159277,40565,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(159278,40565,'blocks_4_tabs_3_tab_image',''),(159279,40565,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(159280,40565,'_thumbnail_id','40561'),(159281,40565,'__thumbnail_id','field_617570855ddaf'),(159282,40565,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159283,40565,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(159284,40565,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159285,40565,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(159286,40565,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159287,40565,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(159288,40565,'blocks_5_acfe_flexible_toggle',''),(159289,40565,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(159290,40565,'blocks_5_acfe_flexible_layout_title','Text Block'),(159291,40565,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(159292,40565,'blocks_5_options_theme','#ffffff'),(159293,40565,'_blocks_5_options_theme','field_6176830e2ad17'),(159294,40565,'blocks_5_options',''),(159295,40565,'_blocks_5_options','field_6176830e2ad16'),(159296,40565,'blocks_5_text_block_heading','Blogs'),(159297,40565,'_blocks_5_text_block_heading','field_617669d413097'),(159298,40565,'blocks_5_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(159299,40565,'_blocks_5_text_block_content','field_617669ec13098'),(159300,40565,'blocks_6_acfe_flexible_toggle',''),(159301,40565,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(159302,40565,'blocks_6_acfe_flexible_layout_title','Cards'),(159303,40565,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(159304,40565,'blocks_6_options_theme','#f5f5f5'),(159305,40565,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(159306,40565,'blocks_6_options_format','carousel'),(159307,40565,'_blocks_6_options_format','field_617a7b15245b5'),(159308,40565,'blocks_6_options_style','default'),(159309,40565,'_blocks_6_options_style','field_6278ffb63484a'),(159310,40565,'blocks_6_options_cards_current_listing','0'),(159311,40565,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(159312,40565,'blocks_6_options_cards_content','selection'),(159313,40565,'_blocks_6_options_cards_content','field_617aba6122688'),(159314,40565,'blocks_6_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(159315,40565,'_blocks_6_options_cards_select_posts','field_6193f85fbaea1'),(159316,40565,'blocks_6_options',''),(159317,40565,'_blocks_6_options','field_617a7b15245b3'),(159318,40565,'blocks_7_acfe_flexible_toggle',''),(159319,40565,'_blocks_7_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(159320,40565,'blocks_7_acfe_flexible_layout_title','Button(s)'),(159321,40565,'_blocks_7_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(159322,40565,'blocks_7_options_theme','#f5f5f5'),(159323,40565,'_blocks_7_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(159324,40565,'blocks_7_options',''),(159325,40565,'_blocks_7_options','field_623b03edb6e65'),(159326,40565,'blocks_7_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159327,40565,'_blocks_7_actions_0_button','field_623b03edb6e6f'),(159328,40565,'blocks_7_actions','1'),(159329,40565,'_blocks_7_actions','field_623b03edb6e6e'),(159330,40565,'blocks_8_acfe_flexible_toggle',''),(159331,40565,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(159332,40565,'blocks_8_acfe_flexible_layout_title','Icons'),(159333,40565,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(159334,40565,'blocks_8_options_theme','#ffffff'),(159335,40565,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(159336,40565,'blocks_8_options_format','grid'),(159337,40565,'_blocks_8_options_format','field_64bfde9a90690'),(159338,40565,'blocks_8_options',''),(159339,40565,'_blocks_8_options','field_64bfdd9b90684'),(159340,40565,'blocks_8_row_content_title',''),(159341,40565,'_blocks_8_row_content_title','field_64bfdd9b90687'),(159342,40565,'blocks_8_row_content_heading','Payment options'),(159343,40565,'_blocks_8_row_content_heading','field_64bfdd9b90688'),(159344,40565,'blocks_8_row_content_text','<strong>Options available to pay for your course</strong>\r\n\r\nTraining for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options including;'),(159345,40565,'_blocks_8_row_content_text','field_64bfdd9b90689'),(159346,40565,'blocks_8_row_content_actions',''),(159347,40565,'_blocks_8_row_content_actions','field_64bfdd9b9068a'),(159348,40565,'blocks_8_row_content',''),(159349,40565,'_blocks_8_row_content','field_64bfdd9b90686'),(159350,40565,'blocks_8_icon_row_items_0_icon','start-earning-in.svg'),(159351,40565,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(159352,40565,'blocks_8_icon_row_items_0_label','Pay your course in full'),(159353,40565,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(159354,40565,'blocks_8_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full'),(159355,40565,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(159356,40565,'blocks_8_icon_row_items_1_icon','pass-rate.svg'),(159357,40565,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(159358,40565,'blocks_8_icon_row_items_1_label','Flexible payment schemes'),(159359,40565,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(159360,40565,'blocks_8_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(159361,40565,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(159362,40565,'blocks_8_icon_row_items','2'),(159363,40565,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(159364,40566,'hide_hero','0'),(159365,40566,'_hide_hero','field_66a2380fcda39'),(159366,40566,'hero_title','Behaviour Change Coaching'),(159367,40566,'_hero_title','field_617571fe285e8'),(159368,40566,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(159369,40566,'_hero_text','field_6175723c285e9'),(159370,40566,'hero_actions','1'),(159371,40566,'_hero_actions','field_61757270285ea'),(159372,40566,'hero_style','default'),(159373,40566,'_hero_style','field_62051d9dc5324'),(159374,40566,'hero_image_pos_x','right'),(159375,40566,'_hero_image_pos_x','field_62ec3d05390bb'),(159376,40566,'hero_image_pos_y','top'),(159377,40566,'_hero_image_pos_y','field_62ec3d05390bc'),(159378,40566,'hero_image_pos',''),(159379,40566,'_hero_image_pos','field_62ec3d05390ba'),(159380,40566,'fft_hide_from_listings','0'),(159381,40566,'_fft_hide_from_listings','field_61f1320446ab2'),(159382,40566,'fft_page_format','default'),(159383,40566,'_fft_page_format','field_61ae213f1f218'),(159384,40566,'fft_hide_nav','0'),(159385,40566,'_fft_hide_nav','field_635bd5e43527c'),(159386,40566,'fft_hide_header_call_to_action','0'),(159387,40566,'_fft_hide_header_call_to_action','field_635bd6723527d'),(159388,40566,'fft_page_sitemap','0'),(159389,40566,'_fft_page_sitemap','field_61af9b34e8181'),(159390,40566,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:7:\"buttons\";i:8;s:5:\"icons\";}'),(159391,40566,'_blocks','field_6176696113096'),(159392,40566,'course_label_text',''),(159393,40566,'_course_label_text','field_61e17babf71fa'),(159394,40566,'course_label',''),(159395,40566,'_course_label','field_61e12f92749a7'),(159396,40566,'course_description',''),(159397,40566,'_course_description','field_617ac5788e5e1'),(159398,40566,'course_key_info',''),(159399,40566,'_course_key_info','field_617ac6ad8e5e2'),(159400,40566,'course_included',''),(159401,40566,'_course_included','field_617ac6f08e5e4'),(159402,40566,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159403,40566,'_hero_actions_0_button','field_61757281285eb'),(159404,40566,'blocks_0_acfe_flexible_toggle',''),(159405,40566,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(159406,40566,'blocks_0_acfe_flexible_layout_title','Template'),(159407,40566,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(159408,40566,'blocks_0_template','39087'),(159409,40566,'_blocks_0_template','field_617bdd570fe01'),(159410,40566,'blocks_1_acfe_flexible_toggle',''),(159411,40566,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(159412,40566,'blocks_1_acfe_flexible_layout_title','Text Block'),(159413,40566,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(159414,40566,'blocks_1_options_theme','#ffffff'),(159415,40566,'_blocks_1_options_theme','field_6176830e2ad17'),(159416,40566,'blocks_1_options',''),(159417,40566,'_blocks_1_options','field_6176830e2ad16'),(159418,40566,'blocks_1_text_block_heading','Benefits of training with us'),(159419,40566,'_blocks_1_text_block_heading','field_617669d413097'),(159420,40566,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(159421,40566,'_blocks_1_text_block_content','field_617669ec13098'),(159422,40566,'blocks_2_acfe_flexible_toggle',''),(159423,40566,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(159424,40566,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(159425,40566,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(159426,40566,'blocks_2_options_theme','#f5f5f5'),(159427,40566,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(159428,40566,'blocks_2_options_reverse','0'),(159429,40566,'_blocks_2_options_reverse','field_61768049bb8ac'),(159430,40566,'blocks_2_options',''),(159431,40566,'_blocks_2_options','field_617682517c334'),(159432,40566,'blocks_2_split_5050_image','40557'),(159433,40566,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(159434,40566,'blocks_2_split_5050_video',''),(159435,40566,'_blocks_2_split_5050_video','field_6239f3160848a'),(159436,40566,'blocks_2_split_5050_content_title',''),(159437,40566,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(159438,40566,'blocks_2_split_5050_content_heading','Course Overview'),(159439,40566,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(159440,40566,'blocks_2_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(159441,40566,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(159442,40566,'blocks_2_split_5050_content_actions',''),(159443,40566,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(159444,40566,'blocks_2_split_5050_content',''),(159445,40566,'_blocks_2_split_5050_content','field_61767afceb8ba'),(159446,40566,'blocks_3_acfe_flexible_toggle',''),(159447,40566,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(159448,40566,'blocks_3_acfe_flexible_layout_title','Text Block'),(159449,40566,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(159450,40566,'blocks_3_options_theme','#b61234'),(159451,40566,'_blocks_3_options_theme','field_6176830e2ad17'),(159452,40566,'blocks_3_options',''),(159453,40566,'_blocks_3_options','field_6176830e2ad16'),(159454,40566,'blocks_3_text_block_heading','Learn more about this course'),(159455,40566,'_blocks_3_text_block_heading','field_617669d413097'),(159456,40566,'blocks_3_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(159457,40566,'_blocks_3_text_block_content','field_617669ec13098'),(159458,40566,'blocks_4_acfe_flexible_toggle',''),(159459,40566,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(159460,40566,'blocks_4_acfe_flexible_layout_title','Tabs'),(159461,40566,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(159462,40566,'blocks_4_options_theme','#ffffff'),(159463,40566,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(159464,40566,'blocks_4_options',''),(159465,40566,'_blocks_4_options','field_6177cfcd8140f'),(159466,40566,'blocks_4_tabs_0_tab_label','E-learning '),(159467,40566,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(159468,40566,'blocks_4_tabs_0_tab_content_title',''),(159469,40566,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(159470,40566,'blocks_4_tabs_0_tab_content_heading',''),(159471,40566,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(159472,40566,'blocks_4_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(159473,40566,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(159474,40566,'blocks_4_tabs_0_tab_content_actions','1'),(159475,40566,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(159476,40566,'blocks_4_tabs_0_tab_content',''),(159477,40566,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(159478,40566,'blocks_4_tabs_0_tab_image',''),(159479,40566,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(159480,40566,'blocks_4_tabs_1_tab_label','Content '),(159481,40566,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(159482,40566,'blocks_4_tabs_1_tab_content_title',''),(159483,40566,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(159484,40566,'blocks_4_tabs_1_tab_content_heading',''),(159485,40566,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(159486,40566,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(159487,40566,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(159488,40566,'blocks_4_tabs_1_tab_content_actions','1'),(159489,40566,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(159490,40566,'blocks_4_tabs_1_tab_content',''),(159491,40566,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(159492,40566,'blocks_4_tabs_1_tab_image',''),(159493,40566,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(159494,40566,'blocks_4_tabs_2_tab_label','Assessment '),(159495,40566,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(159496,40566,'blocks_4_tabs_2_tab_content_title',''),(159497,40566,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(159498,40566,'blocks_4_tabs_2_tab_content_heading',''),(159499,40566,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(159500,40566,'blocks_4_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(159501,40566,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(159502,40566,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159503,40566,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(159504,40566,'blocks_4_tabs_2_tab_content_actions','1'),(159505,40566,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(159506,40566,'blocks_4_tabs_2_tab_content',''),(159507,40566,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(159508,40566,'blocks_4_tabs_2_tab_image',''),(159509,40566,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(159510,40566,'blocks_4_tabs','4'),(159511,40566,'_blocks_4_tabs','field_6177cff281419'),(159512,40566,'blocks_4_tabs_3_tab_label','Entry requirements'),(159513,40566,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(159514,40566,'blocks_4_tabs_3_tab_content_title',''),(159515,40566,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(159516,40566,'blocks_4_tabs_3_tab_content_heading',''),(159517,40566,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(159518,40566,'blocks_4_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(159519,40566,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(159520,40566,'blocks_4_tabs_3_tab_content_actions','1'),(159521,40566,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(159522,40566,'blocks_4_tabs_3_tab_content',''),(159523,40566,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(159524,40566,'blocks_4_tabs_3_tab_image',''),(159525,40566,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(159526,40566,'_thumbnail_id','40561'),(159527,40566,'__thumbnail_id','field_617570855ddaf'),(159528,40566,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159529,40566,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(159530,40566,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159531,40566,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(159532,40566,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159533,40566,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(159534,40566,'blocks_5_acfe_flexible_toggle',''),(159535,40566,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(159536,40566,'blocks_5_acfe_flexible_layout_title','Text Block'),(159537,40566,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(159538,40566,'blocks_5_options_theme','#ffffff'),(159539,40566,'_blocks_5_options_theme','field_6176830e2ad17'),(159540,40566,'blocks_5_options',''),(159541,40566,'_blocks_5_options','field_6176830e2ad16'),(159542,40566,'blocks_5_text_block_heading','Blogs'),(159543,40566,'_blocks_5_text_block_heading','field_617669d413097'),(159544,40566,'blocks_5_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(159545,40566,'_blocks_5_text_block_content','field_617669ec13098'),(159546,40566,'blocks_6_acfe_flexible_toggle',''),(159547,40566,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(159548,40566,'blocks_6_acfe_flexible_layout_title','Cards'),(159549,40566,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(159550,40566,'blocks_6_options_theme','#f5f5f5'),(159551,40566,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(159552,40566,'blocks_6_options_format','carousel'),(159553,40566,'_blocks_6_options_format','field_617a7b15245b5'),(159554,40566,'blocks_6_options_style','default'),(159555,40566,'_blocks_6_options_style','field_6278ffb63484a'),(159556,40566,'blocks_6_options_cards_current_listing','0'),(159557,40566,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(159558,40566,'blocks_6_options_cards_content','selection'),(159559,40566,'_blocks_6_options_cards_content','field_617aba6122688'),(159560,40566,'blocks_6_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(159561,40566,'_blocks_6_options_cards_select_posts','field_6193f85fbaea1'),(159562,40566,'blocks_6_options',''),(159563,40566,'_blocks_6_options','field_617a7b15245b3'),(159564,40566,'blocks_7_acfe_flexible_toggle',''),(159565,40566,'_blocks_7_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(159566,40566,'blocks_7_acfe_flexible_layout_title','Button(s)'),(159567,40566,'_blocks_7_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(159568,40566,'blocks_7_options_theme','#f5f5f5'),(159569,40566,'_blocks_7_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(159570,40566,'blocks_7_options',''),(159571,40566,'_blocks_7_options','field_623b03edb6e65'),(159572,40566,'blocks_7_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159573,40566,'_blocks_7_actions_0_button','field_623b03edb6e6f'),(159574,40566,'blocks_7_actions','1'),(159575,40566,'_blocks_7_actions','field_623b03edb6e6e'),(159576,40566,'blocks_8_acfe_flexible_toggle',''),(159577,40566,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(159578,40566,'blocks_8_acfe_flexible_layout_title','Icons'),(159579,40566,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(159580,40566,'blocks_8_options_theme','#ffffff'),(159581,40566,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(159582,40566,'blocks_8_options_format','grid'),(159583,40566,'_blocks_8_options_format','field_64bfde9a90690'),(159584,40566,'blocks_8_options',''),(159585,40566,'_blocks_8_options','field_64bfdd9b90684'),(159586,40566,'blocks_8_row_content_title',''),(159587,40566,'_blocks_8_row_content_title','field_64bfdd9b90687'),(159588,40566,'blocks_8_row_content_heading','Payment options'),(159589,40566,'_blocks_8_row_content_heading','field_64bfdd9b90688'),(159590,40566,'blocks_8_row_content_text','<strong>Options available to pay for your course</strong>\r\n\r\nTraining for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options including;'),(159591,40566,'_blocks_8_row_content_text','field_64bfdd9b90689'),(159592,40566,'blocks_8_row_content_actions',''),(159593,40566,'_blocks_8_row_content_actions','field_64bfdd9b9068a'),(159594,40566,'blocks_8_row_content',''),(159595,40566,'_blocks_8_row_content','field_64bfdd9b90686'),(159596,40566,'blocks_8_icon_row_items_0_icon','start-earning-in.svg'),(159597,40566,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(159598,40566,'blocks_8_icon_row_items_0_label','Pay your course in full'),(159599,40566,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(159600,40566,'blocks_8_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full'),(159601,40566,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(159602,40566,'blocks_8_icon_row_items_1_icon','pass-rate.svg'),(159603,40566,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(159604,40566,'blocks_8_icon_row_items_1_label','Flexible payment schemes'),(159605,40566,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(159606,40566,'blocks_8_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(159607,40566,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(159608,40566,'blocks_8_icon_row_items','2'),(159609,40566,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(159610,40567,'hide_hero','0'),(159611,40567,'_hide_hero','field_66a2380fcda39'),(159612,40567,'hero_title','Behaviour Change Coaching'),(159613,40567,'_hero_title','field_617571fe285e8'),(159614,40567,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(159615,40567,'_hero_text','field_6175723c285e9'),(159616,40567,'hero_actions','1'),(159617,40567,'_hero_actions','field_61757270285ea'),(159618,40567,'hero_style','default'),(159619,40567,'_hero_style','field_62051d9dc5324'),(159620,40567,'hero_image_pos_x','right'),(159621,40567,'_hero_image_pos_x','field_62ec3d05390bb'),(159622,40567,'hero_image_pos_y','top'),(159623,40567,'_hero_image_pos_y','field_62ec3d05390bc'),(159624,40567,'hero_image_pos',''),(159625,40567,'_hero_image_pos','field_62ec3d05390ba'),(159626,40567,'fft_hide_from_listings','0'),(159627,40567,'_fft_hide_from_listings','field_61f1320446ab2'),(159628,40567,'fft_page_format','default'),(159629,40567,'_fft_page_format','field_61ae213f1f218'),(159630,40567,'fft_hide_nav','0'),(159631,40567,'_fft_hide_nav','field_635bd5e43527c'),(159632,40567,'fft_hide_header_call_to_action','0'),(159633,40567,'_fft_hide_header_call_to_action','field_635bd6723527d'),(159634,40567,'fft_page_sitemap','0'),(159635,40567,'_fft_page_sitemap','field_61af9b34e8181'),(159636,40567,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:7:\"buttons\";i:8;s:5:\"icons\";}'),(159637,40567,'_blocks','field_6176696113096'),(159638,40567,'course_label_text',''),(159639,40567,'_course_label_text','field_61e17babf71fa'),(159640,40567,'course_label',''),(159641,40567,'_course_label','field_61e12f92749a7'),(159642,40567,'course_description',''),(159643,40567,'_course_description','field_617ac5788e5e1'),(159644,40567,'course_key_info',''),(159645,40567,'_course_key_info','field_617ac6ad8e5e2'),(159646,40567,'course_included',''),(159647,40567,'_course_included','field_617ac6f08e5e4'),(159648,40567,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159649,40567,'_hero_actions_0_button','field_61757281285eb'),(159650,40567,'blocks_0_acfe_flexible_toggle',''),(159651,40567,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(159652,40567,'blocks_0_acfe_flexible_layout_title','Template'),(159653,40567,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(159654,40567,'blocks_0_template','39087'),(159655,40567,'_blocks_0_template','field_617bdd570fe01'),(159656,40567,'blocks_1_acfe_flexible_toggle',''),(159657,40567,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(159658,40567,'blocks_1_acfe_flexible_layout_title','Text Block'),(159659,40567,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(159660,40567,'blocks_1_options_theme','#ffffff'),(159661,40567,'_blocks_1_options_theme','field_6176830e2ad17'),(159662,40567,'blocks_1_options',''),(159663,40567,'_blocks_1_options','field_6176830e2ad16'),(159664,40567,'blocks_1_text_block_heading','Benefits of training with us'),(159665,40567,'_blocks_1_text_block_heading','field_617669d413097'),(159666,40567,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(159667,40567,'_blocks_1_text_block_content','field_617669ec13098'),(159668,40567,'blocks_2_acfe_flexible_toggle',''),(159669,40567,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(159670,40567,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(159671,40567,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(159672,40567,'blocks_2_options_theme','#f5f5f5'),(159673,40567,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(159674,40567,'blocks_2_options_reverse','0'),(159675,40567,'_blocks_2_options_reverse','field_61768049bb8ac'),(159676,40567,'blocks_2_options',''),(159677,40567,'_blocks_2_options','field_617682517c334'),(159678,40567,'blocks_2_split_5050_image','40557'),(159679,40567,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(159680,40567,'blocks_2_split_5050_video',''),(159681,40567,'_blocks_2_split_5050_video','field_6239f3160848a'),(159682,40567,'blocks_2_split_5050_content_title',''),(159683,40567,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(159684,40567,'blocks_2_split_5050_content_heading','Course Overview'),(159685,40567,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(159686,40567,'blocks_2_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(159687,40567,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(159688,40567,'blocks_2_split_5050_content_actions',''),(159689,40567,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(159690,40567,'blocks_2_split_5050_content',''),(159691,40567,'_blocks_2_split_5050_content','field_61767afceb8ba'),(159692,40567,'blocks_3_acfe_flexible_toggle',''),(159693,40567,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(159694,40567,'blocks_3_acfe_flexible_layout_title','Text Block'),(159695,40567,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(159696,40567,'blocks_3_options_theme','#b61234'),(159697,40567,'_blocks_3_options_theme','field_6176830e2ad17'),(159698,40567,'blocks_3_options',''),(159699,40567,'_blocks_3_options','field_6176830e2ad16'),(159700,40567,'blocks_3_text_block_heading','Learn more about this course'),(159701,40567,'_blocks_3_text_block_heading','field_617669d413097'),(159702,40567,'blocks_3_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(159703,40567,'_blocks_3_text_block_content','field_617669ec13098'),(159704,40567,'blocks_4_acfe_flexible_toggle',''),(159705,40567,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(159706,40567,'blocks_4_acfe_flexible_layout_title','Tabs'),(159707,40567,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(159708,40567,'blocks_4_options_theme','#ffffff'),(159709,40567,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(159710,40567,'blocks_4_options',''),(159711,40567,'_blocks_4_options','field_6177cfcd8140f'),(159712,40567,'blocks_4_tabs_0_tab_label','E-learning '),(159713,40567,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(159714,40567,'blocks_4_tabs_0_tab_content_title',''),(159715,40567,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(159716,40567,'blocks_4_tabs_0_tab_content_heading',''),(159717,40567,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(159718,40567,'blocks_4_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(159719,40567,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(159720,40567,'blocks_4_tabs_0_tab_content_actions','1'),(159721,40567,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(159722,40567,'blocks_4_tabs_0_tab_content',''),(159723,40567,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(159724,40567,'blocks_4_tabs_0_tab_image',''),(159725,40567,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(159726,40567,'blocks_4_tabs_1_tab_label','Content '),(159727,40567,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(159728,40567,'blocks_4_tabs_1_tab_content_title',''),(159729,40567,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(159730,40567,'blocks_4_tabs_1_tab_content_heading',''),(159731,40567,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(159732,40567,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(159733,40567,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(159734,40567,'blocks_4_tabs_1_tab_content_actions','1'),(159735,40567,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(159736,40567,'blocks_4_tabs_1_tab_content',''),(159737,40567,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(159738,40567,'blocks_4_tabs_1_tab_image',''),(159739,40567,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(159740,40567,'blocks_4_tabs_2_tab_label','Assessment '),(159741,40567,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(159742,40567,'blocks_4_tabs_2_tab_content_title',''),(159743,40567,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(159744,40567,'blocks_4_tabs_2_tab_content_heading',''),(159745,40567,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(159746,40567,'blocks_4_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(159747,40567,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(159748,40567,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159749,40567,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(159750,40567,'blocks_4_tabs_2_tab_content_actions','1'),(159751,40567,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(159752,40567,'blocks_4_tabs_2_tab_content',''),(159753,40567,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(159754,40567,'blocks_4_tabs_2_tab_image',''),(159755,40567,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(159756,40567,'blocks_4_tabs','4'),(159757,40567,'_blocks_4_tabs','field_6177cff281419'),(159758,40567,'blocks_4_tabs_3_tab_label','Entry requirements'),(159759,40567,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(159760,40567,'blocks_4_tabs_3_tab_content_title',''),(159761,40567,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(159762,40567,'blocks_4_tabs_3_tab_content_heading',''),(159763,40567,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(159764,40567,'blocks_4_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(159765,40567,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(159766,40567,'blocks_4_tabs_3_tab_content_actions','1'),(159767,40567,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(159768,40567,'blocks_4_tabs_3_tab_content',''),(159769,40567,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(159770,40567,'blocks_4_tabs_3_tab_image',''),(159771,40567,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(159772,40567,'_thumbnail_id','40561'),(159773,40567,'__thumbnail_id','field_617570855ddaf'),(159774,40567,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159775,40567,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(159776,40567,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159777,40567,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(159778,40567,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159779,40567,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(159780,40567,'blocks_5_acfe_flexible_toggle',''),(159781,40567,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(159782,40567,'blocks_5_acfe_flexible_layout_title','Text Block'),(159783,40567,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(159784,40567,'blocks_5_options_theme','#f5f5f5'),(159785,40567,'_blocks_5_options_theme','field_6176830e2ad17'),(159786,40567,'blocks_5_options',''),(159787,40567,'_blocks_5_options','field_6176830e2ad16'),(159788,40567,'blocks_5_text_block_heading','Blogs'),(159789,40567,'_blocks_5_text_block_heading','field_617669d413097'),(159790,40567,'blocks_5_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(159791,40567,'_blocks_5_text_block_content','field_617669ec13098'),(159792,40567,'blocks_6_acfe_flexible_toggle',''),(159793,40567,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(159794,40567,'blocks_6_acfe_flexible_layout_title','Cards'),(159795,40567,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(159796,40567,'blocks_6_options_theme','#f5f5f5'),(159797,40567,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(159798,40567,'blocks_6_options_format','carousel'),(159799,40567,'_blocks_6_options_format','field_617a7b15245b5'),(159800,40567,'blocks_6_options_style','default'),(159801,40567,'_blocks_6_options_style','field_6278ffb63484a'),(159802,40567,'blocks_6_options_cards_current_listing','0'),(159803,40567,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(159804,40567,'blocks_6_options_cards_content','selection'),(159805,40567,'_blocks_6_options_cards_content','field_617aba6122688'),(159806,40567,'blocks_6_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(159807,40567,'_blocks_6_options_cards_select_posts','field_6193f85fbaea1'),(159808,40567,'blocks_6_options',''),(159809,40567,'_blocks_6_options','field_617a7b15245b3'),(159810,40567,'blocks_7_acfe_flexible_toggle',''),(159811,40567,'_blocks_7_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(159812,40567,'blocks_7_acfe_flexible_layout_title','Button(s)'),(159813,40567,'_blocks_7_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(159814,40567,'blocks_7_options_theme','#f5f5f5'),(159815,40567,'_blocks_7_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(159816,40567,'blocks_7_options',''),(159817,40567,'_blocks_7_options','field_623b03edb6e65'),(159818,40567,'blocks_7_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159819,40567,'_blocks_7_actions_0_button','field_623b03edb6e6f'),(159820,40567,'blocks_7_actions','1'),(159821,40567,'_blocks_7_actions','field_623b03edb6e6e'),(159822,40567,'blocks_8_acfe_flexible_toggle',''),(159823,40567,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(159824,40567,'blocks_8_acfe_flexible_layout_title','Icons'),(159825,40567,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(159826,40567,'blocks_8_options_theme','#ffffff'),(159827,40567,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(159828,40567,'blocks_8_options_format','grid'),(159829,40567,'_blocks_8_options_format','field_64bfde9a90690'),(159830,40567,'blocks_8_options',''),(159831,40567,'_blocks_8_options','field_64bfdd9b90684'),(159832,40567,'blocks_8_row_content_title',''),(159833,40567,'_blocks_8_row_content_title','field_64bfdd9b90687'),(159834,40567,'blocks_8_row_content_heading','Payment options'),(159835,40567,'_blocks_8_row_content_heading','field_64bfdd9b90688'),(159836,40567,'blocks_8_row_content_text','<strong>Options available to pay for your course</strong>\r\n\r\nTraining for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options including;'),(159837,40567,'_blocks_8_row_content_text','field_64bfdd9b90689'),(159838,40567,'blocks_8_row_content_actions',''),(159839,40567,'_blocks_8_row_content_actions','field_64bfdd9b9068a'),(159840,40567,'blocks_8_row_content',''),(159841,40567,'_blocks_8_row_content','field_64bfdd9b90686'),(159842,40567,'blocks_8_icon_row_items_0_icon','start-earning-in.svg'),(159843,40567,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(159844,40567,'blocks_8_icon_row_items_0_label','Pay your course in full'),(159845,40567,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(159846,40567,'blocks_8_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full'),(159847,40567,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(159848,40567,'blocks_8_icon_row_items_1_icon','pass-rate.svg'),(159849,40567,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(159850,40567,'blocks_8_icon_row_items_1_label','Flexible payment schemes'),(159851,40567,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(159852,40567,'blocks_8_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(159853,40567,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(159854,40567,'blocks_8_icon_row_items','2'),(159855,40567,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(159856,40568,'hide_hero','0'),(159857,40568,'_hide_hero','field_66a2380fcda39'),(159858,40568,'hero_title','Behaviour Change Coaching'),(159859,40568,'_hero_title','field_617571fe285e8'),(159860,40568,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(159861,40568,'_hero_text','field_6175723c285e9'),(159862,40568,'hero_actions','1'),(159863,40568,'_hero_actions','field_61757270285ea'),(159864,40568,'hero_style','default'),(159865,40568,'_hero_style','field_62051d9dc5324'),(159866,40568,'hero_image_pos_x','right'),(159867,40568,'_hero_image_pos_x','field_62ec3d05390bb'),(159868,40568,'hero_image_pos_y','top'),(159869,40568,'_hero_image_pos_y','field_62ec3d05390bc'),(159870,40568,'hero_image_pos',''),(159871,40568,'_hero_image_pos','field_62ec3d05390ba'),(159872,40568,'fft_hide_from_listings','0'),(159873,40568,'_fft_hide_from_listings','field_61f1320446ab2'),(159874,40568,'fft_page_format','default'),(159875,40568,'_fft_page_format','field_61ae213f1f218'),(159876,40568,'fft_hide_nav','0'),(159877,40568,'_fft_hide_nav','field_635bd5e43527c'),(159878,40568,'fft_hide_header_call_to_action','0'),(159879,40568,'_fft_hide_header_call_to_action','field_635bd6723527d'),(159880,40568,'fft_page_sitemap','0'),(159881,40568,'_fft_page_sitemap','field_61af9b34e8181'),(159882,40568,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:7:\"buttons\";i:8;s:5:\"icons\";}'),(159883,40568,'_blocks','field_6176696113096'),(159884,40568,'course_label_text',''),(159885,40568,'_course_label_text','field_61e17babf71fa'),(159886,40568,'course_label',''),(159887,40568,'_course_label','field_61e12f92749a7'),(159888,40568,'course_description',''),(159889,40568,'_course_description','field_617ac5788e5e1'),(159890,40568,'course_key_info',''),(159891,40568,'_course_key_info','field_617ac6ad8e5e2'),(159892,40568,'course_included',''),(159893,40568,'_course_included','field_617ac6f08e5e4'),(159894,40568,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159895,40568,'_hero_actions_0_button','field_61757281285eb'),(159896,40568,'blocks_0_acfe_flexible_toggle',''),(159897,40568,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(159898,40568,'blocks_0_acfe_flexible_layout_title','Template'),(159899,40568,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(159900,40568,'blocks_0_template','39087'),(159901,40568,'_blocks_0_template','field_617bdd570fe01'),(159902,40568,'blocks_1_acfe_flexible_toggle',''),(159903,40568,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(159904,40568,'blocks_1_acfe_flexible_layout_title','Text Block'),(159905,40568,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(159906,40568,'blocks_1_options_theme','#ffffff'),(159907,40568,'_blocks_1_options_theme','field_6176830e2ad17'),(159908,40568,'blocks_1_options',''),(159909,40568,'_blocks_1_options','field_6176830e2ad16'),(159910,40568,'blocks_1_text_block_heading','Benefits of training with us'),(159911,40568,'_blocks_1_text_block_heading','field_617669d413097'),(159912,40568,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(159913,40568,'_blocks_1_text_block_content','field_617669ec13098'),(159914,40568,'blocks_2_acfe_flexible_toggle',''),(159915,40568,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(159916,40568,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(159917,40568,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(159918,40568,'blocks_2_options_theme','#f5f5f5'),(159919,40568,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(159920,40568,'blocks_2_options_reverse','0'),(159921,40568,'_blocks_2_options_reverse','field_61768049bb8ac'),(159922,40568,'blocks_2_options',''),(159923,40568,'_blocks_2_options','field_617682517c334'),(159924,40568,'blocks_2_split_5050_image','40557'),(159925,40568,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(159926,40568,'blocks_2_split_5050_video',''),(159927,40568,'_blocks_2_split_5050_video','field_6239f3160848a'),(159928,40568,'blocks_2_split_5050_content_title',''),(159929,40568,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(159930,40568,'blocks_2_split_5050_content_heading','Course Overview'),(159931,40568,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(159932,40568,'blocks_2_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(159933,40568,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(159934,40568,'blocks_2_split_5050_content_actions',''),(159935,40568,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(159936,40568,'blocks_2_split_5050_content',''),(159937,40568,'_blocks_2_split_5050_content','field_61767afceb8ba'),(159938,40568,'blocks_3_acfe_flexible_toggle',''),(159939,40568,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(159940,40568,'blocks_3_acfe_flexible_layout_title','Text Block'),(159941,40568,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(159942,40568,'blocks_3_options_theme','#b61234'),(159943,40568,'_blocks_3_options_theme','field_6176830e2ad17'),(159944,40568,'blocks_3_options',''),(159945,40568,'_blocks_3_options','field_6176830e2ad16'),(159946,40568,'blocks_3_text_block_heading','Learn more about this course'),(159947,40568,'_blocks_3_text_block_heading','field_617669d413097'),(159948,40568,'blocks_3_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(159949,40568,'_blocks_3_text_block_content','field_617669ec13098'),(159950,40568,'blocks_4_acfe_flexible_toggle',''),(159951,40568,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(159952,40568,'blocks_4_acfe_flexible_layout_title','Tabs'),(159953,40568,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(159954,40568,'blocks_4_options_theme','#ffffff'),(159955,40568,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(159956,40568,'blocks_4_options',''),(159957,40568,'_blocks_4_options','field_6177cfcd8140f'),(159958,40568,'blocks_4_tabs_0_tab_label','E-learning '),(159959,40568,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(159960,40568,'blocks_4_tabs_0_tab_content_title',''),(159961,40568,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(159962,40568,'blocks_4_tabs_0_tab_content_heading',''),(159963,40568,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(159964,40568,'blocks_4_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(159965,40568,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(159966,40568,'blocks_4_tabs_0_tab_content_actions','1'),(159967,40568,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(159968,40568,'blocks_4_tabs_0_tab_content',''),(159969,40568,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(159970,40568,'blocks_4_tabs_0_tab_image',''),(159971,40568,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(159972,40568,'blocks_4_tabs_1_tab_label','Content '),(159973,40568,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(159974,40568,'blocks_4_tabs_1_tab_content_title',''),(159975,40568,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(159976,40568,'blocks_4_tabs_1_tab_content_heading',''),(159977,40568,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(159978,40568,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(159979,40568,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(159980,40568,'blocks_4_tabs_1_tab_content_actions','1'),(159981,40568,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(159982,40568,'blocks_4_tabs_1_tab_content',''),(159983,40568,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(159984,40568,'blocks_4_tabs_1_tab_image',''),(159985,40568,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(159986,40568,'blocks_4_tabs_2_tab_label','Assessment '),(159987,40568,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(159988,40568,'blocks_4_tabs_2_tab_content_title',''),(159989,40568,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(159990,40568,'blocks_4_tabs_2_tab_content_heading',''),(159991,40568,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(159992,40568,'blocks_4_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(159993,40568,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(159994,40568,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(159995,40568,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(159996,40568,'blocks_4_tabs_2_tab_content_actions','1'),(159997,40568,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(159998,40568,'blocks_4_tabs_2_tab_content',''),(159999,40568,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(160000,40568,'blocks_4_tabs_2_tab_image',''),(160001,40568,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(160002,40568,'blocks_4_tabs','4'),(160003,40568,'_blocks_4_tabs','field_6177cff281419'),(160004,40568,'blocks_4_tabs_3_tab_label','Entry requirements'),(160005,40568,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(160006,40568,'blocks_4_tabs_3_tab_content_title',''),(160007,40568,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(160008,40568,'blocks_4_tabs_3_tab_content_heading',''),(160009,40568,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(160010,40568,'blocks_4_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(160011,40568,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(160012,40568,'blocks_4_tabs_3_tab_content_actions','1'),(160013,40568,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(160014,40568,'blocks_4_tabs_3_tab_content',''),(160015,40568,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(160016,40568,'blocks_4_tabs_3_tab_image',''),(160017,40568,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(160018,40568,'_thumbnail_id','40561'),(160019,40568,'__thumbnail_id','field_617570855ddaf'),(160020,40568,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160021,40568,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(160022,40568,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160023,40568,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(160024,40568,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160025,40568,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(160026,40568,'blocks_5_acfe_flexible_toggle',''),(160027,40568,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(160028,40568,'blocks_5_acfe_flexible_layout_title','Text Block'),(160029,40568,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(160030,40568,'blocks_5_options_theme','#f5f5f5'),(160031,40568,'_blocks_5_options_theme','field_6176830e2ad17'),(160032,40568,'blocks_5_options',''),(160033,40568,'_blocks_5_options','field_6176830e2ad16'),(160034,40568,'blocks_5_text_block_heading','Blogs'),(160035,40568,'_blocks_5_text_block_heading','field_617669d413097'),(160036,40568,'blocks_5_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(160037,40568,'_blocks_5_text_block_content','field_617669ec13098'),(160038,40568,'blocks_6_acfe_flexible_toggle',''),(160039,40568,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(160040,40568,'blocks_6_acfe_flexible_layout_title','Cards'),(160041,40568,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(160042,40568,'blocks_6_options_theme','#f5f5f5'),(160043,40568,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(160044,40568,'blocks_6_options_format','carousel'),(160045,40568,'_blocks_6_options_format','field_617a7b15245b5'),(160046,40568,'blocks_6_options_style','default'),(160047,40568,'_blocks_6_options_style','field_6278ffb63484a'),(160048,40568,'blocks_6_options_cards_current_listing','0'),(160049,40568,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(160050,40568,'blocks_6_options_cards_content','selection'),(160051,40568,'_blocks_6_options_cards_content','field_617aba6122688'),(160052,40568,'blocks_6_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(160053,40568,'_blocks_6_options_cards_select_posts','field_6193f85fbaea1'),(160054,40568,'blocks_6_options',''),(160055,40568,'_blocks_6_options','field_617a7b15245b3'),(160056,40568,'blocks_7_acfe_flexible_toggle',''),(160057,40568,'_blocks_7_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(160058,40568,'blocks_7_acfe_flexible_layout_title','Button(s)'),(160059,40568,'_blocks_7_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(160060,40568,'blocks_7_options_theme','#ffffff'),(160061,40568,'_blocks_7_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(160062,40568,'blocks_7_options',''),(160063,40568,'_blocks_7_options','field_623b03edb6e65'),(160064,40568,'blocks_7_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160065,40568,'_blocks_7_actions_0_button','field_623b03edb6e6f'),(160066,40568,'blocks_7_actions','1'),(160067,40568,'_blocks_7_actions','field_623b03edb6e6e'),(160068,40568,'blocks_8_acfe_flexible_toggle',''),(160069,40568,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(160070,40568,'blocks_8_acfe_flexible_layout_title','Icons'),(160071,40568,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(160072,40568,'blocks_8_options_theme','#ffffff'),(160073,40568,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(160074,40568,'blocks_8_options_format','grid'),(160075,40568,'_blocks_8_options_format','field_64bfde9a90690'),(160076,40568,'blocks_8_options',''),(160077,40568,'_blocks_8_options','field_64bfdd9b90684'),(160078,40568,'blocks_8_row_content_title',''),(160079,40568,'_blocks_8_row_content_title','field_64bfdd9b90687'),(160080,40568,'blocks_8_row_content_heading','Payment options'),(160081,40568,'_blocks_8_row_content_heading','field_64bfdd9b90688'),(160082,40568,'blocks_8_row_content_text','<strong>Options available to pay for your course</strong>\r\n\r\nTraining for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options including;'),(160083,40568,'_blocks_8_row_content_text','field_64bfdd9b90689'),(160084,40568,'blocks_8_row_content_actions',''),(160085,40568,'_blocks_8_row_content_actions','field_64bfdd9b9068a'),(160086,40568,'blocks_8_row_content',''),(160087,40568,'_blocks_8_row_content','field_64bfdd9b90686'),(160088,40568,'blocks_8_icon_row_items_0_icon','start-earning-in.svg'),(160089,40568,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(160090,40568,'blocks_8_icon_row_items_0_label','Pay your course in full'),(160091,40568,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(160092,40568,'blocks_8_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full'),(160093,40568,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(160094,40568,'blocks_8_icon_row_items_1_icon','pass-rate.svg'),(160095,40568,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(160096,40568,'blocks_8_icon_row_items_1_label','Flexible payment schemes'),(160097,40568,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(160098,40568,'blocks_8_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(160099,40568,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(160100,40568,'blocks_8_icon_row_items','2'),(160101,40568,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(160114,40569,'hide_hero','0'),(160115,40569,'_hide_hero','field_66a2380fcda39'),(160116,40569,'hero_title','Behaviour Change Coaching'),(160117,40569,'_hero_title','field_617571fe285e8'),(160118,40569,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(160119,40569,'_hero_text','field_6175723c285e9'),(160120,40569,'hero_actions','1'),(160121,40569,'_hero_actions','field_61757270285ea'),(160122,40569,'hero_style','default'),(160123,40569,'_hero_style','field_62051d9dc5324'),(160124,40569,'hero_image_pos_x','right'),(160125,40569,'_hero_image_pos_x','field_62ec3d05390bb'),(160126,40569,'hero_image_pos_y','top'),(160127,40569,'_hero_image_pos_y','field_62ec3d05390bc'),(160128,40569,'hero_image_pos',''),(160129,40569,'_hero_image_pos','field_62ec3d05390ba'),(160130,40569,'fft_hide_from_listings','0'),(160131,40569,'_fft_hide_from_listings','field_61f1320446ab2'),(160132,40569,'fft_page_format','default'),(160133,40569,'_fft_page_format','field_61ae213f1f218'),(160134,40569,'fft_hide_nav','0'),(160135,40569,'_fft_hide_nav','field_635bd5e43527c'),(160136,40569,'fft_hide_header_call_to_action','0'),(160137,40569,'_fft_hide_header_call_to_action','field_635bd6723527d'),(160138,40569,'fft_page_sitemap','0'),(160139,40569,'_fft_page_sitemap','field_61af9b34e8181'),(160140,40569,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:7:\"buttons\";i:8;s:5:\"icons\";i:9;s:10:\"text_block\";}'),(160141,40569,'_blocks','field_6176696113096'),(160142,40569,'course_label_text',''),(160143,40569,'_course_label_text','field_61e17babf71fa'),(160144,40569,'course_label',''),(160145,40569,'_course_label','field_61e12f92749a7'),(160146,40569,'course_description',''),(160147,40569,'_course_description','field_617ac5788e5e1'),(160148,40569,'course_key_info',''),(160149,40569,'_course_key_info','field_617ac6ad8e5e2'),(160150,40569,'course_included',''),(160151,40569,'_course_included','field_617ac6f08e5e4'),(160152,40569,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160153,40569,'_hero_actions_0_button','field_61757281285eb'),(160154,40569,'blocks_0_acfe_flexible_toggle',''),(160155,40569,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(160156,40569,'blocks_0_acfe_flexible_layout_title','Template'),(160157,40569,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(160158,40569,'blocks_0_template','39087'),(160159,40569,'_blocks_0_template','field_617bdd570fe01'),(160160,40569,'blocks_1_acfe_flexible_toggle',''),(160161,40569,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(160162,40569,'blocks_1_acfe_flexible_layout_title','Text Block'),(160163,40569,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(160164,40569,'blocks_1_options_theme','#ffffff'),(160165,40569,'_blocks_1_options_theme','field_6176830e2ad17'),(160166,40569,'blocks_1_options',''),(160167,40569,'_blocks_1_options','field_6176830e2ad16'),(160168,40569,'blocks_1_text_block_heading','Benefits of training with us'),(160169,40569,'_blocks_1_text_block_heading','field_617669d413097'),(160170,40569,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(160171,40569,'_blocks_1_text_block_content','field_617669ec13098'),(160172,40569,'blocks_2_acfe_flexible_toggle',''),(160173,40569,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(160174,40569,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(160175,40569,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(160176,40569,'blocks_2_options_theme','#f5f5f5'),(160177,40569,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(160178,40569,'blocks_2_options_reverse','0'),(160179,40569,'_blocks_2_options_reverse','field_61768049bb8ac'),(160180,40569,'blocks_2_options',''),(160181,40569,'_blocks_2_options','field_617682517c334'),(160182,40569,'blocks_2_split_5050_image','40557'),(160183,40569,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(160184,40569,'blocks_2_split_5050_video',''),(160185,40569,'_blocks_2_split_5050_video','field_6239f3160848a'),(160186,40569,'blocks_2_split_5050_content_title',''),(160187,40569,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(160188,40569,'blocks_2_split_5050_content_heading','Course Overview'),(160189,40569,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(160190,40569,'blocks_2_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(160191,40569,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(160192,40569,'blocks_2_split_5050_content_actions',''),(160193,40569,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(160194,40569,'blocks_2_split_5050_content',''),(160195,40569,'_blocks_2_split_5050_content','field_61767afceb8ba'),(160196,40569,'blocks_3_acfe_flexible_toggle',''),(160197,40569,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(160198,40569,'blocks_3_acfe_flexible_layout_title','Text Block'),(160199,40569,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(160200,40569,'blocks_3_options_theme','#b61234'),(160201,40569,'_blocks_3_options_theme','field_6176830e2ad17'),(160202,40569,'blocks_3_options',''),(160203,40569,'_blocks_3_options','field_6176830e2ad16'),(160204,40569,'blocks_3_text_block_heading','Learn more about this course'),(160205,40569,'_blocks_3_text_block_heading','field_617669d413097'),(160206,40569,'blocks_3_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(160207,40569,'_blocks_3_text_block_content','field_617669ec13098'),(160208,40569,'blocks_4_acfe_flexible_toggle',''),(160209,40569,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(160210,40569,'blocks_4_acfe_flexible_layout_title','Tabs'),(160211,40569,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(160212,40569,'blocks_4_options_theme','#ffffff'),(160213,40569,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(160214,40569,'blocks_4_options',''),(160215,40569,'_blocks_4_options','field_6177cfcd8140f'),(160216,40569,'blocks_4_tabs_0_tab_label','E-learning '),(160217,40569,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(160218,40569,'blocks_4_tabs_0_tab_content_title',''),(160219,40569,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(160220,40569,'blocks_4_tabs_0_tab_content_heading',''),(160221,40569,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(160222,40569,'blocks_4_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(160223,40569,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(160224,40569,'blocks_4_tabs_0_tab_content_actions','1'),(160225,40569,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(160226,40569,'blocks_4_tabs_0_tab_content',''),(160227,40569,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(160228,40569,'blocks_4_tabs_0_tab_image',''),(160229,40569,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(160230,40569,'blocks_4_tabs_1_tab_label','Content '),(160231,40569,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(160232,40569,'blocks_4_tabs_1_tab_content_title',''),(160233,40569,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(160234,40569,'blocks_4_tabs_1_tab_content_heading',''),(160235,40569,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(160236,40569,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(160237,40569,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(160238,40569,'blocks_4_tabs_1_tab_content_actions','1'),(160239,40569,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(160240,40569,'blocks_4_tabs_1_tab_content',''),(160241,40569,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(160242,40569,'blocks_4_tabs_1_tab_image',''),(160243,40569,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(160244,40569,'blocks_4_tabs_2_tab_label','Assessment '),(160245,40569,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(160246,40569,'blocks_4_tabs_2_tab_content_title',''),(160247,40569,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(160248,40569,'blocks_4_tabs_2_tab_content_heading',''),(160249,40569,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(160250,40569,'blocks_4_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(160251,40569,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(160252,40569,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160253,40569,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(160254,40569,'blocks_4_tabs_2_tab_content_actions','1'),(160255,40569,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(160256,40569,'blocks_4_tabs_2_tab_content',''),(160257,40569,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(160258,40569,'blocks_4_tabs_2_tab_image',''),(160259,40569,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(160260,40569,'blocks_4_tabs','4'),(160261,40569,'_blocks_4_tabs','field_6177cff281419'),(160262,40569,'blocks_4_tabs_3_tab_label','Entry requirements'),(160263,40569,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(160264,40569,'blocks_4_tabs_3_tab_content_title',''),(160265,40569,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(160266,40569,'blocks_4_tabs_3_tab_content_heading',''),(160267,40569,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(160268,40569,'blocks_4_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(160269,40569,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(160270,40569,'blocks_4_tabs_3_tab_content_actions','1'),(160271,40569,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(160272,40569,'blocks_4_tabs_3_tab_content',''),(160273,40569,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(160274,40569,'blocks_4_tabs_3_tab_image',''),(160275,40569,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(160276,40569,'_thumbnail_id','40561'),(160277,40569,'__thumbnail_id','field_617570855ddaf'),(160278,40569,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160279,40569,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(160280,40569,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160281,40569,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(160282,40569,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160283,40569,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(160284,40569,'blocks_5_acfe_flexible_toggle',''),(160285,40569,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(160286,40569,'blocks_5_acfe_flexible_layout_title','Text Block'),(160287,40569,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(160288,40569,'blocks_5_options_theme','#f5f5f5'),(160289,40569,'_blocks_5_options_theme','field_6176830e2ad17'),(160290,40569,'blocks_5_options',''),(160291,40569,'_blocks_5_options','field_6176830e2ad16'),(160292,40569,'blocks_5_text_block_heading','Blogs'),(160293,40569,'_blocks_5_text_block_heading','field_617669d413097'),(160294,40569,'blocks_5_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(160295,40569,'_blocks_5_text_block_content','field_617669ec13098'),(160296,40569,'blocks_6_acfe_flexible_toggle',''),(160297,40569,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(160298,40569,'blocks_6_acfe_flexible_layout_title','Cards'),(160299,40569,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(160300,40569,'blocks_6_options_theme','#f5f5f5'),(160301,40569,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(160302,40569,'blocks_6_options_format','carousel'),(160303,40569,'_blocks_6_options_format','field_617a7b15245b5'),(160304,40569,'blocks_6_options_style','default'),(160305,40569,'_blocks_6_options_style','field_6278ffb63484a'),(160306,40569,'blocks_6_options_cards_current_listing','0'),(160307,40569,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(160308,40569,'blocks_6_options_cards_content','selection'),(160309,40569,'_blocks_6_options_cards_content','field_617aba6122688'),(160310,40569,'blocks_6_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(160311,40569,'_blocks_6_options_cards_select_posts','field_6193f85fbaea1'),(160312,40569,'blocks_6_options',''),(160313,40569,'_blocks_6_options','field_617a7b15245b3'),(160314,40569,'blocks_7_acfe_flexible_toggle',''),(160315,40569,'_blocks_7_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(160316,40569,'blocks_7_acfe_flexible_layout_title','Button(s)'),(160317,40569,'_blocks_7_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(160318,40569,'blocks_7_options_theme','#ffffff'),(160319,40569,'_blocks_7_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(160320,40569,'blocks_7_options',''),(160321,40569,'_blocks_7_options','field_623b03edb6e65'),(160322,40569,'blocks_7_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160323,40569,'_blocks_7_actions_0_button','field_623b03edb6e6f'),(160324,40569,'blocks_7_actions','1'),(160325,40569,'_blocks_7_actions','field_623b03edb6e6e'),(160326,40569,'blocks_8_acfe_flexible_toggle',''),(160327,40569,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(160328,40569,'blocks_8_acfe_flexible_layout_title','Icons'),(160329,40569,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(160330,40569,'blocks_8_options_theme','#ffffff'),(160331,40569,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(160332,40569,'blocks_8_options_format','grid'),(160333,40569,'_blocks_8_options_format','field_64bfde9a90690'),(160334,40569,'blocks_8_options',''),(160335,40569,'_blocks_8_options','field_64bfdd9b90684'),(160336,40569,'blocks_8_row_content_title',''),(160337,40569,'_blocks_8_row_content_title','field_64bfdd9b90687'),(160338,40569,'blocks_8_row_content_heading','Payment options'),(160339,40569,'_blocks_8_row_content_heading','field_64bfdd9b90688'),(160340,40569,'blocks_8_row_content_text','<strong>Options available to pay for your course</strong>\r\n\r\nTraining for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options including;'),(160341,40569,'_blocks_8_row_content_text','field_64bfdd9b90689'),(160342,40569,'blocks_8_row_content_actions',''),(160343,40569,'_blocks_8_row_content_actions','field_64bfdd9b9068a'),(160344,40569,'blocks_8_row_content',''),(160345,40569,'_blocks_8_row_content','field_64bfdd9b90686'),(160346,40569,'blocks_8_icon_row_items_0_icon','start-earning-in.svg'),(160347,40569,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(160348,40569,'blocks_8_icon_row_items_0_label','Pay your course in full'),(160349,40569,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(160350,40569,'blocks_8_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full'),(160351,40569,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(160352,40569,'blocks_8_icon_row_items_1_icon','pass-rate.svg'),(160353,40569,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(160354,40569,'blocks_8_icon_row_items_1_label','Flexible payment schemes'),(160355,40569,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(160356,40569,'blocks_8_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(160357,40569,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(160358,40569,'blocks_8_icon_row_items','2'),(160359,40569,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(160360,40569,'blocks_9_acfe_flexible_toggle',''),(160361,40569,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(160362,40569,'blocks_9_acfe_flexible_layout_title','Text Block'),(160363,40569,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(160364,40569,'blocks_9_options_theme','#ffffff'),(160365,40569,'_blocks_9_options_theme','field_6176830e2ad17'),(160366,40569,'blocks_9_options',''),(160367,40569,'_blocks_9_options','field_6176830e2ad16'),(160368,40569,'blocks_9_text_block_heading','Why study this behavioural change course? '),(160369,40569,'_blocks_9_text_block_heading','field_617669d413097'),(160370,40569,'blocks_9_text_block_content','Studying this coaching course in behavioural change will help fitness professionals and health coaches to work with clients in achieving their long-term goals. Without behavioural change coaches would find it difficult to make a difference to the client, understanding how to influence and motivate them is the underpinning knowledge to making coaching work.'),(160371,40569,'_blocks_9_text_block_content','field_617669ec13098'),(160408,40570,'hide_hero','0'),(160409,40570,'_hide_hero','field_66a2380fcda39'),(160410,40570,'hero_title','Behaviour Change Coaching'),(160411,40570,'_hero_title','field_617571fe285e8'),(160412,40570,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(160413,40570,'_hero_text','field_6175723c285e9'),(160414,40570,'hero_actions','1'),(160415,40570,'_hero_actions','field_61757270285ea'),(160416,40570,'hero_style','default'),(160417,40570,'_hero_style','field_62051d9dc5324'),(160418,40570,'hero_image_pos_x','right'),(160419,40570,'_hero_image_pos_x','field_62ec3d05390bb'),(160420,40570,'hero_image_pos_y','top'),(160421,40570,'_hero_image_pos_y','field_62ec3d05390bc'),(160422,40570,'hero_image_pos',''),(160423,40570,'_hero_image_pos','field_62ec3d05390ba'),(160424,40570,'fft_hide_from_listings','0'),(160425,40570,'_fft_hide_from_listings','field_61f1320446ab2'),(160426,40570,'fft_page_format','default'),(160427,40570,'_fft_page_format','field_61ae213f1f218'),(160428,40570,'fft_hide_nav','0'),(160429,40570,'_fft_hide_nav','field_635bd5e43527c'),(160430,40570,'fft_hide_header_call_to_action','0'),(160431,40570,'_fft_hide_header_call_to_action','field_635bd6723527d'),(160432,40570,'fft_page_sitemap','0'),(160433,40570,'_fft_page_sitemap','field_61af9b34e8181'),(160434,40570,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:7:\"buttons\";i:8;s:5:\"icons\";i:9;s:10:\"text_block\";i:10;s:13:\"step_timeline\";}'),(160435,40570,'_blocks','field_6176696113096'),(160436,40570,'course_label_text',''),(160437,40570,'_course_label_text','field_61e17babf71fa'),(160438,40570,'course_label',''),(160439,40570,'_course_label','field_61e12f92749a7'),(160440,40570,'course_description',''),(160441,40570,'_course_description','field_617ac5788e5e1'),(160442,40570,'course_key_info',''),(160443,40570,'_course_key_info','field_617ac6ad8e5e2'),(160444,40570,'course_included',''),(160445,40570,'_course_included','field_617ac6f08e5e4'),(160446,40570,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160447,40570,'_hero_actions_0_button','field_61757281285eb'),(160448,40570,'blocks_0_acfe_flexible_toggle',''),(160449,40570,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(160450,40570,'blocks_0_acfe_flexible_layout_title','Template'),(160451,40570,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(160452,40570,'blocks_0_template','39087'),(160453,40570,'_blocks_0_template','field_617bdd570fe01'),(160454,40570,'blocks_1_acfe_flexible_toggle',''),(160455,40570,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(160456,40570,'blocks_1_acfe_flexible_layout_title','Text Block'),(160457,40570,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(160458,40570,'blocks_1_options_theme','#ffffff'),(160459,40570,'_blocks_1_options_theme','field_6176830e2ad17'),(160460,40570,'blocks_1_options',''),(160461,40570,'_blocks_1_options','field_6176830e2ad16'),(160462,40570,'blocks_1_text_block_heading','Benefits of training with us'),(160463,40570,'_blocks_1_text_block_heading','field_617669d413097'),(160464,40570,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(160465,40570,'_blocks_1_text_block_content','field_617669ec13098'),(160466,40570,'blocks_2_acfe_flexible_toggle',''),(160467,40570,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(160468,40570,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(160469,40570,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(160470,40570,'blocks_2_options_theme','#f5f5f5'),(160471,40570,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(160472,40570,'blocks_2_options_reverse','0'),(160473,40570,'_blocks_2_options_reverse','field_61768049bb8ac'),(160474,40570,'blocks_2_options',''),(160475,40570,'_blocks_2_options','field_617682517c334'),(160476,40570,'blocks_2_split_5050_image','40557'),(160477,40570,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(160478,40570,'blocks_2_split_5050_video',''),(160479,40570,'_blocks_2_split_5050_video','field_6239f3160848a'),(160480,40570,'blocks_2_split_5050_content_title',''),(160481,40570,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(160482,40570,'blocks_2_split_5050_content_heading','Course Overview'),(160483,40570,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(160484,40570,'blocks_2_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(160485,40570,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(160486,40570,'blocks_2_split_5050_content_actions',''),(160487,40570,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(160488,40570,'blocks_2_split_5050_content',''),(160489,40570,'_blocks_2_split_5050_content','field_61767afceb8ba'),(160490,40570,'blocks_3_acfe_flexible_toggle',''),(160491,40570,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(160492,40570,'blocks_3_acfe_flexible_layout_title','Text Block'),(160493,40570,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(160494,40570,'blocks_3_options_theme','#b61234'),(160495,40570,'_blocks_3_options_theme','field_6176830e2ad17'),(160496,40570,'blocks_3_options',''),(160497,40570,'_blocks_3_options','field_6176830e2ad16'),(160498,40570,'blocks_3_text_block_heading','Learn more about this course'),(160499,40570,'_blocks_3_text_block_heading','field_617669d413097'),(160500,40570,'blocks_3_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(160501,40570,'_blocks_3_text_block_content','field_617669ec13098'),(160502,40570,'blocks_4_acfe_flexible_toggle',''),(160503,40570,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(160504,40570,'blocks_4_acfe_flexible_layout_title','Tabs'),(160505,40570,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(160506,40570,'blocks_4_options_theme','#ffffff'),(160507,40570,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(160508,40570,'blocks_4_options',''),(160509,40570,'_blocks_4_options','field_6177cfcd8140f'),(160510,40570,'blocks_4_tabs_0_tab_label','E-learning '),(160511,40570,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(160512,40570,'blocks_4_tabs_0_tab_content_title',''),(160513,40570,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(160514,40570,'blocks_4_tabs_0_tab_content_heading',''),(160515,40570,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(160516,40570,'blocks_4_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(160517,40570,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(160518,40570,'blocks_4_tabs_0_tab_content_actions','1'),(160519,40570,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(160520,40570,'blocks_4_tabs_0_tab_content',''),(160521,40570,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(160522,40570,'blocks_4_tabs_0_tab_image',''),(160523,40570,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(160524,40570,'blocks_4_tabs_1_tab_label','Content '),(160525,40570,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(160526,40570,'blocks_4_tabs_1_tab_content_title',''),(160527,40570,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(160528,40570,'blocks_4_tabs_1_tab_content_heading',''),(160529,40570,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(160530,40570,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(160531,40570,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(160532,40570,'blocks_4_tabs_1_tab_content_actions','1'),(160533,40570,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(160534,40570,'blocks_4_tabs_1_tab_content',''),(160535,40570,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(160536,40570,'blocks_4_tabs_1_tab_image',''),(160537,40570,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(160538,40570,'blocks_4_tabs_2_tab_label','Assessment '),(160539,40570,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(160540,40570,'blocks_4_tabs_2_tab_content_title',''),(160541,40570,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(160542,40570,'blocks_4_tabs_2_tab_content_heading',''),(160543,40570,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(160544,40570,'blocks_4_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(160545,40570,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(160546,40570,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160547,40570,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(160548,40570,'blocks_4_tabs_2_tab_content_actions','1'),(160549,40570,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(160550,40570,'blocks_4_tabs_2_tab_content',''),(160551,40570,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(160552,40570,'blocks_4_tabs_2_tab_image',''),(160553,40570,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(160554,40570,'blocks_4_tabs','4'),(160555,40570,'_blocks_4_tabs','field_6177cff281419'),(160556,40570,'blocks_4_tabs_3_tab_label','Entry requirements'),(160557,40570,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(160558,40570,'blocks_4_tabs_3_tab_content_title',''),(160559,40570,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(160560,40570,'blocks_4_tabs_3_tab_content_heading',''),(160561,40570,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(160562,40570,'blocks_4_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(160563,40570,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(160564,40570,'blocks_4_tabs_3_tab_content_actions','1'),(160565,40570,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(160566,40570,'blocks_4_tabs_3_tab_content',''),(160567,40570,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(160568,40570,'blocks_4_tabs_3_tab_image',''),(160569,40570,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(160570,40570,'_thumbnail_id','40561'),(160571,40570,'__thumbnail_id','field_617570855ddaf'),(160572,40570,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160573,40570,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(160574,40570,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160575,40570,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(160576,40570,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160577,40570,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(160578,40570,'blocks_5_acfe_flexible_toggle',''),(160579,40570,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(160580,40570,'blocks_5_acfe_flexible_layout_title','Text Block'),(160581,40570,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(160582,40570,'blocks_5_options_theme','#f5f5f5'),(160583,40570,'_blocks_5_options_theme','field_6176830e2ad17'),(160584,40570,'blocks_5_options',''),(160585,40570,'_blocks_5_options','field_6176830e2ad16'),(160586,40570,'blocks_5_text_block_heading','Blogs'),(160587,40570,'_blocks_5_text_block_heading','field_617669d413097'),(160588,40570,'blocks_5_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(160589,40570,'_blocks_5_text_block_content','field_617669ec13098'),(160590,40570,'blocks_6_acfe_flexible_toggle',''),(160591,40570,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(160592,40570,'blocks_6_acfe_flexible_layout_title','Cards'),(160593,40570,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(160594,40570,'blocks_6_options_theme','#f5f5f5'),(160595,40570,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(160596,40570,'blocks_6_options_format','carousel'),(160597,40570,'_blocks_6_options_format','field_617a7b15245b5'),(160598,40570,'blocks_6_options_style','default'),(160599,40570,'_blocks_6_options_style','field_6278ffb63484a'),(160600,40570,'blocks_6_options_cards_current_listing','0'),(160601,40570,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(160602,40570,'blocks_6_options_cards_content','selection'),(160603,40570,'_blocks_6_options_cards_content','field_617aba6122688'),(160604,40570,'blocks_6_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(160605,40570,'_blocks_6_options_cards_select_posts','field_6193f85fbaea1'),(160606,40570,'blocks_6_options',''),(160607,40570,'_blocks_6_options','field_617a7b15245b3'),(160608,40570,'blocks_7_acfe_flexible_toggle',''),(160609,40570,'_blocks_7_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(160610,40570,'blocks_7_acfe_flexible_layout_title','Button(s)'),(160611,40570,'_blocks_7_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(160612,40570,'blocks_7_options_theme','#ffffff'),(160613,40570,'_blocks_7_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(160614,40570,'blocks_7_options',''),(160615,40570,'_blocks_7_options','field_623b03edb6e65'),(160616,40570,'blocks_7_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160617,40570,'_blocks_7_actions_0_button','field_623b03edb6e6f'),(160618,40570,'blocks_7_actions','1'),(160619,40570,'_blocks_7_actions','field_623b03edb6e6e'),(160620,40570,'blocks_8_acfe_flexible_toggle',''),(160621,40570,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(160622,40570,'blocks_8_acfe_flexible_layout_title','Icons'),(160623,40570,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(160624,40570,'blocks_8_options_theme','#ffffff'),(160625,40570,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(160626,40570,'blocks_8_options_format','grid'),(160627,40570,'_blocks_8_options_format','field_64bfde9a90690'),(160628,40570,'blocks_8_options',''),(160629,40570,'_blocks_8_options','field_64bfdd9b90684'),(160630,40570,'blocks_8_row_content_title',''),(160631,40570,'_blocks_8_row_content_title','field_64bfdd9b90687'),(160632,40570,'blocks_8_row_content_heading','Payment options'),(160633,40570,'_blocks_8_row_content_heading','field_64bfdd9b90688'),(160634,40570,'blocks_8_row_content_text','<strong>Options available to pay for your course</strong>\r\n\r\nTraining for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options including;'),(160635,40570,'_blocks_8_row_content_text','field_64bfdd9b90689'),(160636,40570,'blocks_8_row_content_actions',''),(160637,40570,'_blocks_8_row_content_actions','field_64bfdd9b9068a'),(160638,40570,'blocks_8_row_content',''),(160639,40570,'_blocks_8_row_content','field_64bfdd9b90686'),(160640,40570,'blocks_8_icon_row_items_0_icon','start-earning-in.svg'),(160641,40570,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(160642,40570,'blocks_8_icon_row_items_0_label','Pay your course in full'),(160643,40570,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(160644,40570,'blocks_8_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full'),(160645,40570,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(160646,40570,'blocks_8_icon_row_items_1_icon','pass-rate.svg'),(160647,40570,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(160648,40570,'blocks_8_icon_row_items_1_label','Flexible payment schemes'),(160649,40570,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(160650,40570,'blocks_8_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(160651,40570,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(160652,40570,'blocks_8_icon_row_items','2'),(160653,40570,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(160654,40570,'blocks_9_acfe_flexible_toggle',''),(160655,40570,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(160656,40570,'blocks_9_acfe_flexible_layout_title','Text Block'),(160657,40570,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(160658,40570,'blocks_9_options_theme','#ffffff'),(160659,40570,'_blocks_9_options_theme','field_6176830e2ad17'),(160660,40570,'blocks_9_options',''),(160661,40570,'_blocks_9_options','field_6176830e2ad16'),(160662,40570,'blocks_9_text_block_heading','Why study this behavioural change course? '),(160663,40570,'_blocks_9_text_block_heading','field_617669d413097'),(160664,40570,'blocks_9_text_block_content','Studying this coaching course in behavioural change will help fitness professionals and health coaches to work with clients in achieving their long-term goals. Without behavioural change coaches would find it difficult to make a difference to the client, understanding how to influence and motivate them is the underpinning knowledge to making coaching work.'),(160665,40570,'_blocks_9_text_block_content','field_617669ec13098'),(160666,40570,'blocks_10_acfe_flexible_toggle',''),(160667,40570,'_blocks_10_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(160668,40570,'blocks_10_acfe_flexible_layout_title','Timeline'),(160669,40570,'_blocks_10_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(160670,40570,'blocks_10_options_theme','#ffffff'),(160671,40570,'_blocks_10_options_theme','field_6177de53d1196_field_6176830e2ad17'),(160672,40570,'blocks_10_options',''),(160673,40570,'_blocks_10_options','field_6177de53d1195'),(160674,40570,'blocks_10_timeline_content_title',''),(160675,40570,'_blocks_10_timeline_content_title','field_6177de53d1198'),(160676,40570,'blocks_10_timeline_content_heading','Job Opportunities '),(160677,40570,'_blocks_10_timeline_content_heading','field_6177de53d1199'),(160678,40570,'blocks_10_timeline_content_text','Behaviour Change Coaching is a skill which can be used in numerous jobs to implement effective behaviour change for an individual. Completing this course can be a great addition to the below careers'),(160679,40570,'_blocks_10_timeline_content_text','field_6177de53d119a'),(160680,40570,'blocks_10_timeline_content_actions',''),(160681,40570,'_blocks_10_timeline_content_actions','field_6177de53d119b'),(160682,40570,'blocks_10_timeline_content',''),(160683,40570,'_blocks_10_timeline_content','field_6177de53d1197'),(160684,40570,'blocks_10_timeline_items_0_title','Health & wellbeing coaching '),(160685,40570,'_blocks_10_timeline_items_0_title','field_6177de53d119f'),(160686,40570,'blocks_10_timeline_items_0_text',''),(160687,40570,'_blocks_10_timeline_items_0_text','field_6177de53d11a0'),(160688,40570,'blocks_10_timeline_items_1_title','Lifestyle coaching '),(160689,40570,'_blocks_10_timeline_items_1_title','field_6177de53d119f'),(160690,40570,'blocks_10_timeline_items_1_text',''),(160691,40570,'_blocks_10_timeline_items_1_text','field_6177de53d11a0'),(160692,40570,'blocks_10_timeline_items_2_title','Personal training '),(160693,40570,'_blocks_10_timeline_items_2_title','field_6177de53d119f'),(160694,40570,'blocks_10_timeline_items_2_text',''),(160695,40570,'_blocks_10_timeline_items_2_text','field_6177de53d11a0'),(160696,40570,'blocks_10_timeline_items_3_title','Nutrition coaching '),(160697,40570,'_blocks_10_timeline_items_3_title','field_6177de53d119f'),(160698,40570,'blocks_10_timeline_items_3_text',''),(160699,40570,'_blocks_10_timeline_items_3_text','field_6177de53d11a0'),(160700,40570,'blocks_10_timeline_items','4'),(160701,40570,'_blocks_10_timeline_items','field_6177de53d119d'),(160702,40571,'_edit_lock','1727266393:5'),(160703,40571,'_edit_last','5'),(160744,40572,'hide_hero','0'),(160745,40572,'_hide_hero','field_66a2380fcda39'),(160746,40572,'hero_title','Behaviour Change Coaching'),(160747,40572,'_hero_title','field_617571fe285e8'),(160748,40572,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(160749,40572,'_hero_text','field_6175723c285e9'),(160750,40572,'hero_actions','1'),(160751,40572,'_hero_actions','field_61757270285ea'),(160752,40572,'hero_style','default'),(160753,40572,'_hero_style','field_62051d9dc5324'),(160754,40572,'hero_image_pos_x','right'),(160755,40572,'_hero_image_pos_x','field_62ec3d05390bb'),(160756,40572,'hero_image_pos_y','top'),(160757,40572,'_hero_image_pos_y','field_62ec3d05390bc'),(160758,40572,'hero_image_pos',''),(160759,40572,'_hero_image_pos','field_62ec3d05390ba'),(160760,40572,'fft_hide_from_listings','0'),(160761,40572,'_fft_hide_from_listings','field_61f1320446ab2'),(160762,40572,'fft_page_format','default'),(160763,40572,'_fft_page_format','field_61ae213f1f218'),(160764,40572,'fft_hide_nav','0'),(160765,40572,'_fft_hide_nav','field_635bd5e43527c'),(160766,40572,'fft_hide_header_call_to_action','0'),(160767,40572,'_fft_hide_header_call_to_action','field_635bd6723527d'),(160768,40572,'fft_page_sitemap','0'),(160769,40572,'_fft_page_sitemap','field_61af9b34e8181'),(160770,40572,'blocks','a:13:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:7:\"buttons\";i:8;s:5:\"icons\";i:9;s:10:\"text_block\";i:10;s:13:\"step_timeline\";i:11;s:14:\"course_compare\";i:12;s:10:\"accordions\";}'),(160771,40572,'_blocks','field_6176696113096'),(160772,40572,'course_label_text',''),(160773,40572,'_course_label_text','field_61e17babf71fa'),(160774,40572,'course_label',''),(160775,40572,'_course_label','field_61e12f92749a7'),(160776,40572,'course_description',''),(160777,40572,'_course_description','field_617ac5788e5e1'),(160778,40572,'course_key_info',''),(160779,40572,'_course_key_info','field_617ac6ad8e5e2'),(160780,40572,'course_included',''),(160781,40572,'_course_included','field_617ac6f08e5e4'),(160782,40572,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160783,40572,'_hero_actions_0_button','field_61757281285eb'),(160784,40572,'blocks_0_acfe_flexible_toggle',''),(160785,40572,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(160786,40572,'blocks_0_acfe_flexible_layout_title','Template'),(160787,40572,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(160788,40572,'blocks_0_template','39087'),(160789,40572,'_blocks_0_template','field_617bdd570fe01'),(160790,40572,'blocks_1_acfe_flexible_toggle',''),(160791,40572,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(160792,40572,'blocks_1_acfe_flexible_layout_title','Text Block'),(160793,40572,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(160794,40572,'blocks_1_options_theme','#ffffff'),(160795,40572,'_blocks_1_options_theme','field_6176830e2ad17'),(160796,40572,'blocks_1_options',''),(160797,40572,'_blocks_1_options','field_6176830e2ad16'),(160798,40572,'blocks_1_text_block_heading','Benefits of training with us'),(160799,40572,'_blocks_1_text_block_heading','field_617669d413097'),(160800,40572,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(160801,40572,'_blocks_1_text_block_content','field_617669ec13098'),(160802,40572,'blocks_2_acfe_flexible_toggle',''),(160803,40572,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(160804,40572,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(160805,40572,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(160806,40572,'blocks_2_options_theme','#f5f5f5'),(160807,40572,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(160808,40572,'blocks_2_options_reverse','0'),(160809,40572,'_blocks_2_options_reverse','field_61768049bb8ac'),(160810,40572,'blocks_2_options',''),(160811,40572,'_blocks_2_options','field_617682517c334'),(160812,40572,'blocks_2_split_5050_image','40557'),(160813,40572,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(160814,40572,'blocks_2_split_5050_video',''),(160815,40572,'_blocks_2_split_5050_video','field_6239f3160848a'),(160816,40572,'blocks_2_split_5050_content_title',''),(160817,40572,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(160818,40572,'blocks_2_split_5050_content_heading','Course Overview'),(160819,40572,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(160820,40572,'blocks_2_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(160821,40572,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(160822,40572,'blocks_2_split_5050_content_actions',''),(160823,40572,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(160824,40572,'blocks_2_split_5050_content',''),(160825,40572,'_blocks_2_split_5050_content','field_61767afceb8ba'),(160826,40572,'blocks_3_acfe_flexible_toggle',''),(160827,40572,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(160828,40572,'blocks_3_acfe_flexible_layout_title','Text Block'),(160829,40572,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(160830,40572,'blocks_3_options_theme','#b61234'),(160831,40572,'_blocks_3_options_theme','field_6176830e2ad17'),(160832,40572,'blocks_3_options',''),(160833,40572,'_blocks_3_options','field_6176830e2ad16'),(160834,40572,'blocks_3_text_block_heading','Learn more about this course'),(160835,40572,'_blocks_3_text_block_heading','field_617669d413097'),(160836,40572,'blocks_3_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(160837,40572,'_blocks_3_text_block_content','field_617669ec13098'),(160838,40572,'blocks_4_acfe_flexible_toggle',''),(160839,40572,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(160840,40572,'blocks_4_acfe_flexible_layout_title','Tabs'),(160841,40572,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(160842,40572,'blocks_4_options_theme','#ffffff'),(160843,40572,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(160844,40572,'blocks_4_options',''),(160845,40572,'_blocks_4_options','field_6177cfcd8140f'),(160846,40572,'blocks_4_tabs_0_tab_label','E-learning '),(160847,40572,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(160848,40572,'blocks_4_tabs_0_tab_content_title',''),(160849,40572,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(160850,40572,'blocks_4_tabs_0_tab_content_heading',''),(160851,40572,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(160852,40572,'blocks_4_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(160853,40572,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(160854,40572,'blocks_4_tabs_0_tab_content_actions','1'),(160855,40572,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(160856,40572,'blocks_4_tabs_0_tab_content',''),(160857,40572,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(160858,40572,'blocks_4_tabs_0_tab_image',''),(160859,40572,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(160860,40572,'blocks_4_tabs_1_tab_label','Content '),(160861,40572,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(160862,40572,'blocks_4_tabs_1_tab_content_title',''),(160863,40572,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(160864,40572,'blocks_4_tabs_1_tab_content_heading',''),(160865,40572,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(160866,40572,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(160867,40572,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(160868,40572,'blocks_4_tabs_1_tab_content_actions','1'),(160869,40572,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(160870,40572,'blocks_4_tabs_1_tab_content',''),(160871,40572,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(160872,40572,'blocks_4_tabs_1_tab_image',''),(160873,40572,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(160874,40572,'blocks_4_tabs_2_tab_label','Assessment '),(160875,40572,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(160876,40572,'blocks_4_tabs_2_tab_content_title',''),(160877,40572,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(160878,40572,'blocks_4_tabs_2_tab_content_heading',''),(160879,40572,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(160880,40572,'blocks_4_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(160881,40572,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(160882,40572,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160883,40572,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(160884,40572,'blocks_4_tabs_2_tab_content_actions','1'),(160885,40572,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(160886,40572,'blocks_4_tabs_2_tab_content',''),(160887,40572,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(160888,40572,'blocks_4_tabs_2_tab_image',''),(160889,40572,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(160890,40572,'blocks_4_tabs','4'),(160891,40572,'_blocks_4_tabs','field_6177cff281419'),(160892,40572,'blocks_4_tabs_3_tab_label','Entry requirements'),(160893,40572,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(160894,40572,'blocks_4_tabs_3_tab_content_title',''),(160895,40572,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(160896,40572,'blocks_4_tabs_3_tab_content_heading',''),(160897,40572,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(160898,40572,'blocks_4_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(160899,40572,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(160900,40572,'blocks_4_tabs_3_tab_content_actions','1'),(160901,40572,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(160902,40572,'blocks_4_tabs_3_tab_content',''),(160903,40572,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(160904,40572,'blocks_4_tabs_3_tab_image',''),(160905,40572,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(160906,40572,'_thumbnail_id','40561'),(160907,40572,'__thumbnail_id','field_617570855ddaf'),(160908,40572,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160909,40572,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(160910,40572,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160911,40572,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(160912,40572,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160913,40572,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(160914,40572,'blocks_5_acfe_flexible_toggle',''),(160915,40572,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(160916,40572,'blocks_5_acfe_flexible_layout_title','Text Block'),(160917,40572,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(160918,40572,'blocks_5_options_theme','#f5f5f5'),(160919,40572,'_blocks_5_options_theme','field_6176830e2ad17'),(160920,40572,'blocks_5_options',''),(160921,40572,'_blocks_5_options','field_6176830e2ad16'),(160922,40572,'blocks_5_text_block_heading','Blogs'),(160923,40572,'_blocks_5_text_block_heading','field_617669d413097'),(160924,40572,'blocks_5_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(160925,40572,'_blocks_5_text_block_content','field_617669ec13098'),(160926,40572,'blocks_6_acfe_flexible_toggle',''),(160927,40572,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(160928,40572,'blocks_6_acfe_flexible_layout_title','Cards'),(160929,40572,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(160930,40572,'blocks_6_options_theme','#f5f5f5'),(160931,40572,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(160932,40572,'blocks_6_options_format','carousel'),(160933,40572,'_blocks_6_options_format','field_617a7b15245b5'),(160934,40572,'blocks_6_options_style','default'),(160935,40572,'_blocks_6_options_style','field_6278ffb63484a'),(160936,40572,'blocks_6_options_cards_current_listing','0'),(160937,40572,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(160938,40572,'blocks_6_options_cards_content','selection'),(160939,40572,'_blocks_6_options_cards_content','field_617aba6122688'),(160940,40572,'blocks_6_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(160941,40572,'_blocks_6_options_cards_select_posts','field_6193f85fbaea1'),(160942,40572,'blocks_6_options',''),(160943,40572,'_blocks_6_options','field_617a7b15245b3'),(160944,40572,'blocks_7_acfe_flexible_toggle',''),(160945,40572,'_blocks_7_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(160946,40572,'blocks_7_acfe_flexible_layout_title','Button(s)'),(160947,40572,'_blocks_7_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(160948,40572,'blocks_7_options_theme','#ffffff'),(160949,40572,'_blocks_7_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(160950,40572,'blocks_7_options',''),(160951,40572,'_blocks_7_options','field_623b03edb6e65'),(160952,40572,'blocks_7_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(160953,40572,'_blocks_7_actions_0_button','field_623b03edb6e6f'),(160954,40572,'blocks_7_actions','1'),(160955,40572,'_blocks_7_actions','field_623b03edb6e6e'),(160956,40572,'blocks_8_acfe_flexible_toggle',''),(160957,40572,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(160958,40572,'blocks_8_acfe_flexible_layout_title','Icons'),(160959,40572,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(160960,40572,'blocks_8_options_theme','#ffffff'),(160961,40572,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(160962,40572,'blocks_8_options_format','grid'),(160963,40572,'_blocks_8_options_format','field_64bfde9a90690'),(160964,40572,'blocks_8_options',''),(160965,40572,'_blocks_8_options','field_64bfdd9b90684'),(160966,40572,'blocks_8_row_content_title',''),(160967,40572,'_blocks_8_row_content_title','field_64bfdd9b90687'),(160968,40572,'blocks_8_row_content_heading','Payment options'),(160969,40572,'_blocks_8_row_content_heading','field_64bfdd9b90688'),(160970,40572,'blocks_8_row_content_text','<strong>Options available to pay for your course</strong>\r\n\r\nTraining for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options including;'),(160971,40572,'_blocks_8_row_content_text','field_64bfdd9b90689'),(160972,40572,'blocks_8_row_content_actions',''),(160973,40572,'_blocks_8_row_content_actions','field_64bfdd9b9068a'),(160974,40572,'blocks_8_row_content',''),(160975,40572,'_blocks_8_row_content','field_64bfdd9b90686'),(160976,40572,'blocks_8_icon_row_items_0_icon','start-earning-in.svg'),(160977,40572,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(160978,40572,'blocks_8_icon_row_items_0_label','Pay your course in full'),(160979,40572,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(160980,40572,'blocks_8_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full'),(160981,40572,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(160982,40572,'blocks_8_icon_row_items_1_icon','pass-rate.svg'),(160983,40572,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(160984,40572,'blocks_8_icon_row_items_1_label','Flexible payment schemes'),(160985,40572,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(160986,40572,'blocks_8_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(160987,40572,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(160988,40572,'blocks_8_icon_row_items','2'),(160989,40572,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(160990,40572,'blocks_9_acfe_flexible_toggle',''),(160991,40572,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(160992,40572,'blocks_9_acfe_flexible_layout_title','Text Block'),(160993,40572,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(160994,40572,'blocks_9_options_theme','#ffffff'),(160995,40572,'_blocks_9_options_theme','field_6176830e2ad17'),(160996,40572,'blocks_9_options',''),(160997,40572,'_blocks_9_options','field_6176830e2ad16'),(160998,40572,'blocks_9_text_block_heading','Why study this behavioural change course? '),(160999,40572,'_blocks_9_text_block_heading','field_617669d413097'),(161000,40572,'blocks_9_text_block_content','Studying this coaching course in behavioural change will help fitness professionals and health coaches to work with clients in achieving their long-term goals. Without behavioural change coaches would find it difficult to make a difference to the client, understanding how to influence and motivate them is the underpinning knowledge to making coaching work.'),(161001,40572,'_blocks_9_text_block_content','field_617669ec13098'),(161002,40572,'blocks_10_acfe_flexible_toggle',''),(161003,40572,'_blocks_10_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(161004,40572,'blocks_10_acfe_flexible_layout_title','Timeline'),(161005,40572,'_blocks_10_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(161006,40572,'blocks_10_options_theme','#ffffff'),(161007,40572,'_blocks_10_options_theme','field_6177de53d1196_field_6176830e2ad17'),(161008,40572,'blocks_10_options',''),(161009,40572,'_blocks_10_options','field_6177de53d1195'),(161010,40572,'blocks_10_timeline_content_title',''),(161011,40572,'_blocks_10_timeline_content_title','field_6177de53d1198'),(161012,40572,'blocks_10_timeline_content_heading','Job Opportunities '),(161013,40572,'_blocks_10_timeline_content_heading','field_6177de53d1199'),(161014,40572,'blocks_10_timeline_content_text','Behaviour Change Coaching is a skill which can be used in numerous jobs to implement effective behaviour change for an individual. Completing this course can be a great addition to the below careers'),(161015,40572,'_blocks_10_timeline_content_text','field_6177de53d119a'),(161016,40572,'blocks_10_timeline_content_actions',''),(161017,40572,'_blocks_10_timeline_content_actions','field_6177de53d119b'),(161018,40572,'blocks_10_timeline_content',''),(161019,40572,'_blocks_10_timeline_content','field_6177de53d1197'),(161020,40572,'blocks_10_timeline_items_0_title','Health & wellbeing coaching '),(161021,40572,'_blocks_10_timeline_items_0_title','field_6177de53d119f'),(161022,40572,'blocks_10_timeline_items_0_text',''),(161023,40572,'_blocks_10_timeline_items_0_text','field_6177de53d11a0'),(161024,40572,'blocks_10_timeline_items_1_title','Lifestyle coaching '),(161025,40572,'_blocks_10_timeline_items_1_title','field_6177de53d119f'),(161026,40572,'blocks_10_timeline_items_1_text',''),(161027,40572,'_blocks_10_timeline_items_1_text','field_6177de53d11a0'),(161028,40572,'blocks_10_timeline_items_2_title','Personal training '),(161029,40572,'_blocks_10_timeline_items_2_title','field_6177de53d119f'),(161030,40572,'blocks_10_timeline_items_2_text',''),(161031,40572,'_blocks_10_timeline_items_2_text','field_6177de53d11a0'),(161032,40572,'blocks_10_timeline_items_3_title','Nutrition coaching '),(161033,40572,'_blocks_10_timeline_items_3_title','field_6177de53d119f'),(161034,40572,'blocks_10_timeline_items_3_text',''),(161035,40572,'_blocks_10_timeline_items_3_text','field_6177de53d11a0'),(161036,40572,'blocks_10_timeline_items','4'),(161037,40572,'_blocks_10_timeline_items','field_6177de53d119d'),(161038,40572,'blocks_11_acfe_flexible_toggle',''),(161039,40572,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(161040,40572,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(161041,40572,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(161042,40572,'blocks_11_options_theme','#b61234'),(161043,40572,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(161044,40572,'blocks_11_options',''),(161045,40572,'_blocks_11_options','field_617ac0b7f6c08'),(161046,40572,'blocks_11_show','category'),(161047,40572,'_blocks_11_show','field_61a49cba9d946'),(161048,40572,'blocks_11_category','403'),(161049,40572,'_blocks_11_category','field_61a49cd79d947'),(161050,40572,'blocks_12_acfe_flexible_toggle',''),(161051,40572,'_blocks_12_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(161052,40572,'blocks_12_acfe_flexible_layout_title','Accordions / FAQs'),(161053,40572,'_blocks_12_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(161054,40572,'blocks_12_options_theme','#ffffff'),(161055,40572,'_blocks_12_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(161056,40572,'blocks_12_options_state','0'),(161057,40572,'_blocks_12_options_state','field_6239fcb7508c5'),(161058,40572,'blocks_12_options',''),(161059,40572,'_blocks_12_options','field_6177e2991ac44'),(161060,40572,'blocks_12_content_title',''),(161061,40572,'_blocks_12_content_title','field_64d237e8bb1e2'),(161062,40572,'blocks_12_content_heading','FAQs'),(161063,40572,'_blocks_12_content_heading','field_64d237e8bb1e3'),(161064,40572,'blocks_12_content_text',''),(161065,40572,'_blocks_12_content_text','field_64d237e8bb1e4'),(161066,40572,'blocks_12_content_actions',''),(161067,40572,'_blocks_12_content_actions','field_64d237e8bb1e5'),(161068,40572,'blocks_12_content_align','left'),(161069,40572,'_blocks_12_content_align','field_64d2443e6b6aa'),(161070,40572,'blocks_12_content',''),(161071,40572,'_blocks_12_content','field_64d237e8bb1e1'),(161072,40572,'blocks_12_accordion_content','faqs'),(161073,40572,'_blocks_12_accordion_content','field_6177e2c81ac4f'),(161074,40572,'blocks_12_accordion_faqs_select',''),(161075,40572,'_blocks_12_accordion_faqs_select','field_6177e5f3633dd'),(161076,40572,'blocks_12_actions',''),(161077,40572,'_blocks_12_actions','field_61a746a817f7a'),(161078,40573,'hide_hero','0'),(161079,40573,'_hide_hero','field_66a2380fcda39'),(161080,40573,'hero_title','Behaviour Change Coaching'),(161081,40573,'_hero_title','field_617571fe285e8'),(161082,40573,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(161083,40573,'_hero_text','field_6175723c285e9'),(161084,40573,'hero_actions','1'),(161085,40573,'_hero_actions','field_61757270285ea'),(161086,40573,'hero_style','default'),(161087,40573,'_hero_style','field_62051d9dc5324'),(161088,40573,'hero_image_pos_x','right'),(161089,40573,'_hero_image_pos_x','field_62ec3d05390bb'),(161090,40573,'hero_image_pos_y','top'),(161091,40573,'_hero_image_pos_y','field_62ec3d05390bc'),(161092,40573,'hero_image_pos',''),(161093,40573,'_hero_image_pos','field_62ec3d05390ba'),(161094,40573,'fft_hide_from_listings','0'),(161095,40573,'_fft_hide_from_listings','field_61f1320446ab2'),(161096,40573,'fft_page_format','default'),(161097,40573,'_fft_page_format','field_61ae213f1f218'),(161098,40573,'fft_hide_nav','0'),(161099,40573,'_fft_hide_nav','field_635bd5e43527c'),(161100,40573,'fft_hide_header_call_to_action','0'),(161101,40573,'_fft_hide_header_call_to_action','field_635bd6723527d'),(161102,40573,'fft_page_sitemap','0'),(161103,40573,'_fft_page_sitemap','field_61af9b34e8181'),(161104,40573,'blocks','a:13:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:7:\"buttons\";i:8;s:5:\"icons\";i:9;s:10:\"text_block\";i:10;s:13:\"step_timeline\";i:11;s:14:\"course_compare\";i:12;s:10:\"accordions\";}'),(161105,40573,'_blocks','field_6176696113096'),(161106,40573,'course_label_text',''),(161107,40573,'_course_label_text','field_61e17babf71fa'),(161108,40573,'course_label',''),(161109,40573,'_course_label','field_61e12f92749a7'),(161110,40573,'course_description',''),(161111,40573,'_course_description','field_617ac5788e5e1'),(161112,40573,'course_key_info',''),(161113,40573,'_course_key_info','field_617ac6ad8e5e2'),(161114,40573,'course_included',''),(161115,40573,'_course_included','field_617ac6f08e5e4'),(161116,40573,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161117,40573,'_hero_actions_0_button','field_61757281285eb'),(161118,40573,'blocks_0_acfe_flexible_toggle',''),(161119,40573,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(161120,40573,'blocks_0_acfe_flexible_layout_title','Template'),(161121,40573,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(161122,40573,'blocks_0_template','39087'),(161123,40573,'_blocks_0_template','field_617bdd570fe01'),(161124,40573,'blocks_1_acfe_flexible_toggle',''),(161125,40573,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(161126,40573,'blocks_1_acfe_flexible_layout_title','Text Block'),(161127,40573,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(161128,40573,'blocks_1_options_theme','#ffffff'),(161129,40573,'_blocks_1_options_theme','field_6176830e2ad17'),(161130,40573,'blocks_1_options',''),(161131,40573,'_blocks_1_options','field_6176830e2ad16'),(161132,40573,'blocks_1_text_block_heading','Benefits of training with us'),(161133,40573,'_blocks_1_text_block_heading','field_617669d413097'),(161134,40573,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(161135,40573,'_blocks_1_text_block_content','field_617669ec13098'),(161136,40573,'blocks_2_acfe_flexible_toggle',''),(161137,40573,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(161138,40573,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(161139,40573,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(161140,40573,'blocks_2_options_theme','#f5f5f5'),(161141,40573,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(161142,40573,'blocks_2_options_reverse','0'),(161143,40573,'_blocks_2_options_reverse','field_61768049bb8ac'),(161144,40573,'blocks_2_options',''),(161145,40573,'_blocks_2_options','field_617682517c334'),(161146,40573,'blocks_2_split_5050_image','40557'),(161147,40573,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(161148,40573,'blocks_2_split_5050_video',''),(161149,40573,'_blocks_2_split_5050_video','field_6239f3160848a'),(161150,40573,'blocks_2_split_5050_content_title',''),(161151,40573,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(161152,40573,'blocks_2_split_5050_content_heading','Course Overview'),(161153,40573,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(161154,40573,'blocks_2_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(161155,40573,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(161156,40573,'blocks_2_split_5050_content_actions',''),(161157,40573,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(161158,40573,'blocks_2_split_5050_content',''),(161159,40573,'_blocks_2_split_5050_content','field_61767afceb8ba'),(161160,40573,'blocks_3_acfe_flexible_toggle',''),(161161,40573,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(161162,40573,'blocks_3_acfe_flexible_layout_title','Text Block'),(161163,40573,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(161164,40573,'blocks_3_options_theme','#b61234'),(161165,40573,'_blocks_3_options_theme','field_6176830e2ad17'),(161166,40573,'blocks_3_options',''),(161167,40573,'_blocks_3_options','field_6176830e2ad16'),(161168,40573,'blocks_3_text_block_heading','Learn more about this course'),(161169,40573,'_blocks_3_text_block_heading','field_617669d413097'),(161170,40573,'blocks_3_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(161171,40573,'_blocks_3_text_block_content','field_617669ec13098'),(161172,40573,'blocks_4_acfe_flexible_toggle',''),(161173,40573,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(161174,40573,'blocks_4_acfe_flexible_layout_title','Tabs'),(161175,40573,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(161176,40573,'blocks_4_options_theme','#ffffff'),(161177,40573,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(161178,40573,'blocks_4_options',''),(161179,40573,'_blocks_4_options','field_6177cfcd8140f'),(161180,40573,'blocks_4_tabs_0_tab_label','E-learning '),(161181,40573,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(161182,40573,'blocks_4_tabs_0_tab_content_title',''),(161183,40573,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(161184,40573,'blocks_4_tabs_0_tab_content_heading',''),(161185,40573,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(161186,40573,'blocks_4_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(161187,40573,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(161188,40573,'blocks_4_tabs_0_tab_content_actions','1'),(161189,40573,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(161190,40573,'blocks_4_tabs_0_tab_content',''),(161191,40573,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(161192,40573,'blocks_4_tabs_0_tab_image',''),(161193,40573,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(161194,40573,'blocks_4_tabs_1_tab_label','Content '),(161195,40573,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(161196,40573,'blocks_4_tabs_1_tab_content_title',''),(161197,40573,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(161198,40573,'blocks_4_tabs_1_tab_content_heading',''),(161199,40573,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(161200,40573,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(161201,40573,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(161202,40573,'blocks_4_tabs_1_tab_content_actions','1'),(161203,40573,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(161204,40573,'blocks_4_tabs_1_tab_content',''),(161205,40573,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(161206,40573,'blocks_4_tabs_1_tab_image',''),(161207,40573,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(161208,40573,'blocks_4_tabs_2_tab_label','Assessment '),(161209,40573,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(161210,40573,'blocks_4_tabs_2_tab_content_title',''),(161211,40573,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(161212,40573,'blocks_4_tabs_2_tab_content_heading',''),(161213,40573,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(161214,40573,'blocks_4_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(161215,40573,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(161216,40573,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161217,40573,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(161218,40573,'blocks_4_tabs_2_tab_content_actions','1'),(161219,40573,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(161220,40573,'blocks_4_tabs_2_tab_content',''),(161221,40573,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(161222,40573,'blocks_4_tabs_2_tab_image',''),(161223,40573,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(161224,40573,'blocks_4_tabs','4'),(161225,40573,'_blocks_4_tabs','field_6177cff281419'),(161226,40573,'blocks_4_tabs_3_tab_label','Entry requirements'),(161227,40573,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(161228,40573,'blocks_4_tabs_3_tab_content_title',''),(161229,40573,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(161230,40573,'blocks_4_tabs_3_tab_content_heading',''),(161231,40573,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(161232,40573,'blocks_4_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(161233,40573,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(161234,40573,'blocks_4_tabs_3_tab_content_actions','1'),(161235,40573,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(161236,40573,'blocks_4_tabs_3_tab_content',''),(161237,40573,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(161238,40573,'blocks_4_tabs_3_tab_image',''),(161239,40573,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(161240,40573,'_thumbnail_id','40561'),(161241,40573,'__thumbnail_id','field_617570855ddaf'),(161242,40573,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161243,40573,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(161244,40573,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161245,40573,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(161246,40573,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161247,40573,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(161248,40573,'blocks_5_acfe_flexible_toggle',''),(161249,40573,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(161250,40573,'blocks_5_acfe_flexible_layout_title','Text Block'),(161251,40573,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(161252,40573,'blocks_5_options_theme','#f5f5f5'),(161253,40573,'_blocks_5_options_theme','field_6176830e2ad17'),(161254,40573,'blocks_5_options',''),(161255,40573,'_blocks_5_options','field_6176830e2ad16'),(161256,40573,'blocks_5_text_block_heading','Blogs'),(161257,40573,'_blocks_5_text_block_heading','field_617669d413097'),(161258,40573,'blocks_5_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(161259,40573,'_blocks_5_text_block_content','field_617669ec13098'),(161260,40573,'blocks_6_acfe_flexible_toggle',''),(161261,40573,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(161262,40573,'blocks_6_acfe_flexible_layout_title','Cards'),(161263,40573,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(161264,40573,'blocks_6_options_theme','#f5f5f5'),(161265,40573,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(161266,40573,'blocks_6_options_format','carousel'),(161267,40573,'_blocks_6_options_format','field_617a7b15245b5'),(161268,40573,'blocks_6_options_style','default'),(161269,40573,'_blocks_6_options_style','field_6278ffb63484a'),(161270,40573,'blocks_6_options_cards_current_listing','0'),(161271,40573,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(161272,40573,'blocks_6_options_cards_content','selection'),(161273,40573,'_blocks_6_options_cards_content','field_617aba6122688'),(161274,40573,'blocks_6_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(161275,40573,'_blocks_6_options_cards_select_posts','field_6193f85fbaea1'),(161276,40573,'blocks_6_options',''),(161277,40573,'_blocks_6_options','field_617a7b15245b3'),(161278,40573,'blocks_7_acfe_flexible_toggle',''),(161279,40573,'_blocks_7_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(161280,40573,'blocks_7_acfe_flexible_layout_title','Button(s)'),(161281,40573,'_blocks_7_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(161282,40573,'blocks_7_options_theme','#ffffff'),(161283,40573,'_blocks_7_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(161284,40573,'blocks_7_options',''),(161285,40573,'_blocks_7_options','field_623b03edb6e65'),(161286,40573,'blocks_7_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161287,40573,'_blocks_7_actions_0_button','field_623b03edb6e6f'),(161288,40573,'blocks_7_actions','1'),(161289,40573,'_blocks_7_actions','field_623b03edb6e6e'),(161290,40573,'blocks_8_acfe_flexible_toggle',''),(161291,40573,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(161292,40573,'blocks_8_acfe_flexible_layout_title','Icons'),(161293,40573,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(161294,40573,'blocks_8_options_theme','#ffffff'),(161295,40573,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(161296,40573,'blocks_8_options_format','grid'),(161297,40573,'_blocks_8_options_format','field_64bfde9a90690'),(161298,40573,'blocks_8_options',''),(161299,40573,'_blocks_8_options','field_64bfdd9b90684'),(161300,40573,'blocks_8_row_content_title',''),(161301,40573,'_blocks_8_row_content_title','field_64bfdd9b90687'),(161302,40573,'blocks_8_row_content_heading','Payment options'),(161303,40573,'_blocks_8_row_content_heading','field_64bfdd9b90688'),(161304,40573,'blocks_8_row_content_text','<strong>Options available to pay for your course</strong>\r\n\r\nTraining for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options including;'),(161305,40573,'_blocks_8_row_content_text','field_64bfdd9b90689'),(161306,40573,'blocks_8_row_content_actions',''),(161307,40573,'_blocks_8_row_content_actions','field_64bfdd9b9068a'),(161308,40573,'blocks_8_row_content',''),(161309,40573,'_blocks_8_row_content','field_64bfdd9b90686'),(161310,40573,'blocks_8_icon_row_items_0_icon','start-earning-in.svg'),(161311,40573,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(161312,40573,'blocks_8_icon_row_items_0_label','Pay your course in full'),(161313,40573,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(161314,40573,'blocks_8_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full'),(161315,40573,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(161316,40573,'blocks_8_icon_row_items_1_icon','pass-rate.svg'),(161317,40573,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(161318,40573,'blocks_8_icon_row_items_1_label','Flexible payment schemes'),(161319,40573,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(161320,40573,'blocks_8_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(161321,40573,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(161322,40573,'blocks_8_icon_row_items','2'),(161323,40573,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(161324,40573,'blocks_9_acfe_flexible_toggle',''),(161325,40573,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(161326,40573,'blocks_9_acfe_flexible_layout_title','Text Block'),(161327,40573,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(161328,40573,'blocks_9_options_theme','#ffffff'),(161329,40573,'_blocks_9_options_theme','field_6176830e2ad17'),(161330,40573,'blocks_9_options',''),(161331,40573,'_blocks_9_options','field_6176830e2ad16'),(161332,40573,'blocks_9_text_block_heading','Why study this behavioural change course? '),(161333,40573,'_blocks_9_text_block_heading','field_617669d413097'),(161334,40573,'blocks_9_text_block_content','Studying this coaching course in behavioural change will help fitness professionals and health coaches to work with clients in achieving their long-term goals. Without behavioural change coaches would find it difficult to make a difference to the client, understanding how to influence and motivate them is the underpinning knowledge to making coaching work.'),(161335,40573,'_blocks_9_text_block_content','field_617669ec13098'),(161336,40573,'blocks_10_acfe_flexible_toggle',''),(161337,40573,'_blocks_10_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(161338,40573,'blocks_10_acfe_flexible_layout_title','Timeline'),(161339,40573,'_blocks_10_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(161340,40573,'blocks_10_options_theme','#ffffff'),(161341,40573,'_blocks_10_options_theme','field_6177de53d1196_field_6176830e2ad17'),(161342,40573,'blocks_10_options',''),(161343,40573,'_blocks_10_options','field_6177de53d1195'),(161344,40573,'blocks_10_timeline_content_title',''),(161345,40573,'_blocks_10_timeline_content_title','field_6177de53d1198'),(161346,40573,'blocks_10_timeline_content_heading','Job Opportunities '),(161347,40573,'_blocks_10_timeline_content_heading','field_6177de53d1199'),(161348,40573,'blocks_10_timeline_content_text','Behaviour Change Coaching is a skill which can be used in numerous jobs to implement effective behaviour change for an individual. Completing this course can be a great addition to the below careers'),(161349,40573,'_blocks_10_timeline_content_text','field_6177de53d119a'),(161350,40573,'blocks_10_timeline_content_actions',''),(161351,40573,'_blocks_10_timeline_content_actions','field_6177de53d119b'),(161352,40573,'blocks_10_timeline_content',''),(161353,40573,'_blocks_10_timeline_content','field_6177de53d1197'),(161354,40573,'blocks_10_timeline_items_0_title','Health & wellbeing coaching '),(161355,40573,'_blocks_10_timeline_items_0_title','field_6177de53d119f'),(161356,40573,'blocks_10_timeline_items_0_text',''),(161357,40573,'_blocks_10_timeline_items_0_text','field_6177de53d11a0'),(161358,40573,'blocks_10_timeline_items_1_title','Lifestyle coaching '),(161359,40573,'_blocks_10_timeline_items_1_title','field_6177de53d119f'),(161360,40573,'blocks_10_timeline_items_1_text',''),(161361,40573,'_blocks_10_timeline_items_1_text','field_6177de53d11a0'),(161362,40573,'blocks_10_timeline_items_2_title','Personal training '),(161363,40573,'_blocks_10_timeline_items_2_title','field_6177de53d119f'),(161364,40573,'blocks_10_timeline_items_2_text',''),(161365,40573,'_blocks_10_timeline_items_2_text','field_6177de53d11a0'),(161366,40573,'blocks_10_timeline_items_3_title','Nutrition coaching '),(161367,40573,'_blocks_10_timeline_items_3_title','field_6177de53d119f'),(161368,40573,'blocks_10_timeline_items_3_text',''),(161369,40573,'_blocks_10_timeline_items_3_text','field_6177de53d11a0'),(161370,40573,'blocks_10_timeline_items','4'),(161371,40573,'_blocks_10_timeline_items','field_6177de53d119d'),(161372,40573,'blocks_11_acfe_flexible_toggle',''),(161373,40573,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(161374,40573,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(161375,40573,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(161376,40573,'blocks_11_options_theme','#b61234'),(161377,40573,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(161378,40573,'blocks_11_options',''),(161379,40573,'_blocks_11_options','field_617ac0b7f6c08'),(161380,40573,'blocks_11_show','category'),(161381,40573,'_blocks_11_show','field_61a49cba9d946'),(161382,40573,'blocks_11_category','403'),(161383,40573,'_blocks_11_category','field_61a49cd79d947'),(161384,40573,'blocks_12_acfe_flexible_toggle',''),(161385,40573,'_blocks_12_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(161386,40573,'blocks_12_acfe_flexible_layout_title','Accordions / FAQs'),(161387,40573,'_blocks_12_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(161388,40573,'blocks_12_options_theme','#ffffff'),(161389,40573,'_blocks_12_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(161390,40573,'blocks_12_options_state','0'),(161391,40573,'_blocks_12_options_state','field_6239fcb7508c5'),(161392,40573,'blocks_12_options',''),(161393,40573,'_blocks_12_options','field_6177e2991ac44'),(161394,40573,'blocks_12_content_title',''),(161395,40573,'_blocks_12_content_title','field_64d237e8bb1e2'),(161396,40573,'blocks_12_content_heading','FAQs'),(161397,40573,'_blocks_12_content_heading','field_64d237e8bb1e3'),(161398,40573,'blocks_12_content_text',''),(161399,40573,'_blocks_12_content_text','field_64d237e8bb1e4'),(161400,40573,'blocks_12_content_actions',''),(161401,40573,'_blocks_12_content_actions','field_64d237e8bb1e5'),(161402,40573,'blocks_12_content_align','left'),(161403,40573,'_blocks_12_content_align','field_64d2443e6b6aa'),(161404,40573,'blocks_12_content',''),(161405,40573,'_blocks_12_content','field_64d237e8bb1e1'),(161406,40573,'blocks_12_accordion_content','faqs'),(161407,40573,'_blocks_12_accordion_content','field_6177e2c81ac4f'),(161408,40573,'blocks_12_accordion_faqs_select','a:5:{i:0;s:5:\"40571\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(161409,40573,'_blocks_12_accordion_faqs_select','field_6177e5f3633dd'),(161410,40573,'blocks_12_actions',''),(161411,40573,'_blocks_12_actions','field_61a746a817f7a'),(161412,40263,'blocks_2_acfe_flexible_toggle',''),(161413,40263,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(161414,40263,'blocks_2_acfe_flexible_layout_title','Logos'),(161415,40263,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(161416,40263,'blocks_2_options_theme','#ffffff'),(161417,40263,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(161418,40263,'blocks_2_options_format','grid'),(161419,40263,'_blocks_2_options_format','field_61782964ee971'),(161420,40263,'blocks_2_options',''),(161421,40263,'_blocks_2_options','field_61782954ee965'),(161422,40263,'blocks_2_logos','a:2:{i:0;s:5:\"25354\";i:1;s:4:\"1500\";}'),(161423,40263,'_blocks_2_logos','field_61782954ee96d'),(161424,40263,'blocks_2_title',''),(161425,40263,'_blocks_2_title','field_668fbfdc2daa1'),(161426,40263,'blocks_3_acfe_flexible_toggle',''),(161427,40263,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(161428,40263,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(161429,40263,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(161430,40263,'blocks_3_options_theme','#f5f5f5'),(161431,40263,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(161432,40263,'blocks_3_options_reverse','0'),(161433,40263,'_blocks_3_options_reverse','field_61768049bb8ac'),(161434,40263,'blocks_3_options',''),(161435,40263,'_blocks_3_options','field_617682517c334'),(161436,40263,'blocks_3_split_5050_image','40557'),(161437,40263,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(161438,40263,'blocks_3_split_5050_video',''),(161439,40263,'_blocks_3_split_5050_video','field_6239f3160848a'),(161440,40263,'blocks_3_split_5050_content_title',''),(161441,40263,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(161442,40263,'blocks_3_split_5050_content_heading','Course Overview'),(161443,40263,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(161444,40263,'blocks_3_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(161445,40263,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(161446,40263,'blocks_3_split_5050_content_actions',''),(161447,40263,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(161448,40263,'blocks_3_split_5050_content',''),(161449,40263,'_blocks_3_split_5050_content','field_61767afceb8ba'),(161450,40263,'blocks_4_acfe_flexible_toggle',''),(161451,40263,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(161452,40263,'blocks_4_acfe_flexible_layout_title','Text Block'),(161453,40263,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(161454,40263,'blocks_4_options_theme','#b61234'),(161455,40263,'_blocks_4_options_theme','field_6176830e2ad17'),(161456,40263,'blocks_4_options',''),(161457,40263,'_blocks_4_options','field_6176830e2ad16'),(161458,40263,'blocks_4_text_block_heading','Learn more about this course'),(161459,40263,'_blocks_4_text_block_heading','field_617669d413097'),(161460,40263,'blocks_4_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(161461,40263,'_blocks_4_text_block_content','field_617669ec13098'),(161462,40263,'blocks_5_acfe_flexible_toggle',''),(161463,40263,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(161464,40263,'blocks_5_acfe_flexible_layout_title','Tabs'),(161465,40263,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(161466,40263,'blocks_5_options_theme','#ffffff'),(161467,40263,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(161468,40263,'blocks_5_options',''),(161469,40263,'_blocks_5_options','field_6177cfcd8140f'),(161470,40263,'blocks_5_tabs_0_tab_label','E-learning '),(161471,40263,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(161472,40263,'blocks_5_tabs_0_tab_content_title',''),(161473,40263,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(161474,40263,'blocks_5_tabs_0_tab_content_heading',''),(161475,40263,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(161476,40263,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(161477,40263,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(161478,40263,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161479,40263,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(161480,40263,'blocks_5_tabs_0_tab_content_actions','1'),(161481,40263,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(161482,40263,'blocks_5_tabs_0_tab_content',''),(161483,40263,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(161484,40263,'blocks_5_tabs_0_tab_image',''),(161485,40263,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(161486,40263,'blocks_5_tabs_1_tab_label','Content '),(161487,40263,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(161488,40263,'blocks_5_tabs_1_tab_content_title',''),(161489,40263,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(161490,40263,'blocks_5_tabs_1_tab_content_heading',''),(161491,40263,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(161492,40263,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(161493,40263,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(161494,40263,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161495,40263,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(161496,40263,'blocks_5_tabs_1_tab_content_actions','1'),(161497,40263,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(161498,40263,'blocks_5_tabs_1_tab_content',''),(161499,40263,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(161500,40263,'blocks_5_tabs_1_tab_image',''),(161501,40263,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(161502,40263,'blocks_5_tabs_2_tab_label','Assessment '),(161503,40263,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(161504,40263,'blocks_5_tabs_2_tab_content_title',''),(161505,40263,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(161506,40263,'blocks_5_tabs_2_tab_content_heading',''),(161507,40263,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(161508,40263,'blocks_5_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(161509,40263,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(161510,40263,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161511,40263,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(161512,40263,'blocks_5_tabs_2_tab_content_actions','1'),(161513,40263,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(161514,40263,'blocks_5_tabs_2_tab_content',''),(161515,40263,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(161516,40263,'blocks_5_tabs_2_tab_image',''),(161517,40263,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(161518,40263,'blocks_5_tabs_3_tab_label','Entry requirements'),(161519,40263,'_blocks_5_tabs_3_tab_label','field_6177d0068141a'),(161520,40263,'blocks_5_tabs_3_tab_content_title',''),(161521,40263,'_blocks_5_tabs_3_tab_content_title','field_6177cfcd81414'),(161522,40263,'blocks_5_tabs_3_tab_content_heading',''),(161523,40263,'_blocks_5_tabs_3_tab_content_heading','field_6177cfcd81415'),(161524,40263,'blocks_5_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(161525,40263,'_blocks_5_tabs_3_tab_content_text','field_6177cfcd81416'),(161526,40263,'blocks_5_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161527,40263,'_blocks_5_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(161528,40263,'blocks_5_tabs_3_tab_content_actions','1'),(161529,40263,'_blocks_5_tabs_3_tab_content_actions','field_6177cfcd81417'),(161530,40263,'blocks_5_tabs_3_tab_content',''),(161531,40263,'_blocks_5_tabs_3_tab_content','field_6177cfcd81413'),(161532,40263,'blocks_5_tabs_3_tab_image',''),(161533,40263,'_blocks_5_tabs_3_tab_image','field_6177cfcd81412'),(161534,40263,'blocks_5_tabs','4'),(161535,40263,'_blocks_5_tabs','field_6177cff281419'),(161536,40263,'blocks_6_acfe_flexible_toggle',''),(161537,40263,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(161538,40263,'blocks_6_acfe_flexible_layout_title','Text Block'),(161539,40263,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(161540,40263,'blocks_6_options_theme','#f5f5f5'),(161541,40263,'_blocks_6_options_theme','field_6176830e2ad17'),(161542,40263,'blocks_6_options',''),(161543,40263,'_blocks_6_options','field_6176830e2ad16'),(161544,40263,'blocks_6_text_block_heading','Blogs'),(161545,40263,'_blocks_6_text_block_heading','field_617669d413097'),(161546,40263,'blocks_6_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(161547,40263,'_blocks_6_text_block_content','field_617669ec13098'),(161548,40263,'blocks_7_acfe_flexible_toggle',''),(161549,40263,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(161550,40263,'blocks_7_acfe_flexible_layout_title','Cards'),(161551,40263,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(161552,40263,'blocks_7_options_theme','#f5f5f5'),(161553,40263,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(161554,40263,'blocks_7_options_format','carousel'),(161555,40263,'_blocks_7_options_format','field_617a7b15245b5'),(161556,40263,'blocks_7_options_style','default'),(161557,40263,'_blocks_7_options_style','field_6278ffb63484a'),(161558,40263,'blocks_7_options_cards_current_listing','0'),(161559,40263,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(161560,40263,'blocks_7_options_cards_content','term'),(161561,40263,'_blocks_7_options_cards_content','field_617aba6122688'),(161562,40263,'blocks_7_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(161563,40263,'_blocks_7_options_cards_select_posts','field_6193f85fbaea1'),(161564,40263,'blocks_7_options',''),(161565,40263,'_blocks_7_options','field_617a7b15245b3'),(161566,40263,'blocks_8_acfe_flexible_toggle',''),(161567,40263,'_blocks_8_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(161568,40263,'blocks_8_acfe_flexible_layout_title','Button(s)'),(161569,40263,'_blocks_8_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(161570,40263,'blocks_8_options_theme','#ffffff'),(161571,40263,'_blocks_8_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(161572,40263,'blocks_8_options',''),(161573,40263,'_blocks_8_options','field_623b03edb6e65'),(161574,40263,'blocks_8_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161575,40263,'_blocks_8_actions_0_button','field_623b03edb6e6f'),(161576,40263,'blocks_8_actions','1'),(161577,40263,'_blocks_8_actions','field_623b03edb6e6e'),(161578,40263,'blocks_9_acfe_flexible_toggle',''),(161579,40263,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(161580,40263,'blocks_9_acfe_flexible_layout_title','Icons'),(161581,40263,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(161582,40263,'blocks_9_options_theme','#ffffff'),(161583,40263,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(161584,40263,'blocks_9_options_format','grid'),(161585,40263,'_blocks_9_options_format','field_64bfde9a90690'),(161586,40263,'blocks_9_options',''),(161587,40263,'_blocks_9_options','field_64bfdd9b90684'),(161588,40263,'blocks_9_row_content_title',''),(161589,40263,'_blocks_9_row_content_title','field_64bfdd9b90687'),(161590,40263,'blocks_9_row_content_heading','Payment options'),(161591,40263,'_blocks_9_row_content_heading','field_64bfdd9b90688'),(161592,40263,'blocks_9_row_content_text','<strong>Options available to pay for your course</strong>\r\n\r\nTraining for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options including;'),(161593,40263,'_blocks_9_row_content_text','field_64bfdd9b90689'),(161594,40263,'blocks_9_row_content_actions',''),(161595,40263,'_blocks_9_row_content_actions','field_64bfdd9b9068a'),(161596,40263,'blocks_9_row_content',''),(161597,40263,'_blocks_9_row_content','field_64bfdd9b90686'),(161598,40263,'blocks_9_icon_row_items_0_icon','start-earning-in.svg'),(161599,40263,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(161600,40263,'blocks_9_icon_row_items_0_label','Pay your course in full'),(161601,40263,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(161602,40263,'blocks_9_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full'),(161603,40263,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(161604,40263,'blocks_9_icon_row_items_1_icon','pass-rate.svg'),(161605,40263,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(161606,40263,'blocks_9_icon_row_items_1_label','Flexible payment schemes'),(161607,40263,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(161608,40263,'blocks_9_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(161609,40263,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(161610,40263,'blocks_9_icon_row_items','2'),(161611,40263,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(161612,40263,'blocks_10_acfe_flexible_toggle',''),(161613,40263,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(161614,40263,'blocks_10_acfe_flexible_layout_title','Text Block'),(161615,40263,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(161616,40263,'blocks_10_options_theme','#ffffff'),(161617,40263,'_blocks_10_options_theme','field_6176830e2ad17'),(161618,40263,'blocks_10_options',''),(161619,40263,'_blocks_10_options','field_6176830e2ad16'),(161620,40263,'blocks_10_text_block_heading','Why study this behavioural change course? '),(161621,40263,'_blocks_10_text_block_heading','field_617669d413097'),(161622,40263,'blocks_10_text_block_content','Studying this coaching course in behavioural change will help fitness professionals and health coaches to work with clients in achieving their long-term goals. Without behavioural change coaches would find it difficult to make a difference to the client, understanding how to influence and motivate them is the underpinning knowledge to making coaching work.'),(161623,40263,'_blocks_10_text_block_content','field_617669ec13098'),(161624,40263,'blocks_11_acfe_flexible_toggle',''),(161625,40263,'_blocks_11_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(161626,40263,'blocks_11_acfe_flexible_layout_title','Timeline'),(161627,40263,'_blocks_11_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(161628,40263,'blocks_11_options_theme','#ffffff'),(161629,40263,'_blocks_11_options_theme','field_6177de53d1196_field_6176830e2ad17'),(161630,40263,'blocks_11_options',''),(161631,40263,'_blocks_11_options','field_6177de53d1195'),(161632,40263,'blocks_11_timeline_content_title',''),(161633,40263,'_blocks_11_timeline_content_title','field_6177de53d1198'),(161634,40263,'blocks_11_timeline_content_heading','Job Opportunities '),(161635,40263,'_blocks_11_timeline_content_heading','field_6177de53d1199'),(161636,40263,'blocks_11_timeline_content_text','Behaviour Change Coaching is a skill which can be used in numerous jobs to implement effective behaviour change for an individual. Completing this course can be a great addition to the below careers'),(161637,40263,'_blocks_11_timeline_content_text','field_6177de53d119a'),(161638,40263,'blocks_11_timeline_content_actions',''),(161639,40263,'_blocks_11_timeline_content_actions','field_6177de53d119b'),(161640,40263,'blocks_11_timeline_content',''),(161641,40263,'_blocks_11_timeline_content','field_6177de53d1197'),(161642,40263,'blocks_11_timeline_items_0_title','Health & wellbeing coaching '),(161643,40263,'_blocks_11_timeline_items_0_title','field_6177de53d119f'),(161644,40263,'blocks_11_timeline_items_0_text',''),(161645,40263,'_blocks_11_timeline_items_0_text','field_6177de53d11a0'),(161646,40263,'blocks_11_timeline_items_1_title','Lifestyle coaching '),(161647,40263,'_blocks_11_timeline_items_1_title','field_6177de53d119f'),(161648,40263,'blocks_11_timeline_items_1_text',''),(161649,40263,'_blocks_11_timeline_items_1_text','field_6177de53d11a0'),(161650,40263,'blocks_11_timeline_items_2_title','Personal training '),(161651,40263,'_blocks_11_timeline_items_2_title','field_6177de53d119f'),(161652,40263,'blocks_11_timeline_items_2_text',''),(161653,40263,'_blocks_11_timeline_items_2_text','field_6177de53d11a0'),(161654,40263,'blocks_11_timeline_items_3_title','Nutrition coaching '),(161655,40263,'_blocks_11_timeline_items_3_title','field_6177de53d119f'),(161656,40263,'blocks_11_timeline_items_3_text',''),(161657,40263,'_blocks_11_timeline_items_3_text','field_6177de53d11a0'),(161658,40263,'blocks_11_timeline_items','4'),(161659,40263,'_blocks_11_timeline_items','field_6177de53d119d'),(161660,40263,'blocks_12_acfe_flexible_toggle',''),(161661,40263,'_blocks_12_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(161662,40263,'blocks_12_acfe_flexible_layout_title','Course Comparison'),(161663,40263,'_blocks_12_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(161664,40263,'blocks_12_options_theme','#b61234'),(161665,40263,'_blocks_12_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(161666,40263,'blocks_12_options',''),(161667,40263,'_blocks_12_options','field_617ac0b7f6c08'),(161668,40263,'blocks_12_show','category'),(161669,40263,'_blocks_12_show','field_61a49cba9d946'),(161670,40263,'blocks_12_category','403'),(161671,40263,'_blocks_12_category','field_61a49cd79d947'),(161672,40263,'blocks_13_acfe_flexible_toggle',''),(161673,40263,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(161674,40263,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(161675,40263,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(161676,40263,'blocks_13_options_theme','#ffffff'),(161677,40263,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(161678,40263,'blocks_13_options_state','0'),(161679,40263,'_blocks_13_options_state','field_6239fcb7508c5'),(161680,40263,'blocks_13_options',''),(161681,40263,'_blocks_13_options','field_6177e2991ac44'),(161682,40263,'blocks_13_content_title',''),(161683,40263,'_blocks_13_content_title','field_64d237e8bb1e2'),(161684,40263,'blocks_13_content_heading','FAQs'),(161685,40263,'_blocks_13_content_heading','field_64d237e8bb1e3'),(161686,40263,'blocks_13_content_text',''),(161687,40263,'_blocks_13_content_text','field_64d237e8bb1e4'),(161688,40263,'blocks_13_content_actions',''),(161689,40263,'_blocks_13_content_actions','field_64d237e8bb1e5'),(161690,40263,'blocks_13_content_align','left'),(161691,40263,'_blocks_13_content_align','field_64d2443e6b6aa'),(161692,40263,'blocks_13_content',''),(161693,40263,'_blocks_13_content','field_64d237e8bb1e1'),(161694,40263,'blocks_13_accordion_content','faqs'),(161695,40263,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(161696,40263,'blocks_13_accordion_faqs_select','a:5:{i:0;s:5:\"40571\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(161697,40263,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(161698,40263,'blocks_13_actions',''),(161699,40263,'_blocks_13_actions','field_61a746a817f7a'),(161700,40574,'hide_hero','0'),(161701,40574,'_hide_hero','field_66a2380fcda39'),(161702,40574,'hero_title','Behaviour Change Coaching'),(161703,40574,'_hero_title','field_617571fe285e8'),(161704,40574,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(161705,40574,'_hero_text','field_6175723c285e9'),(161706,40574,'hero_actions','1'),(161707,40574,'_hero_actions','field_61757270285ea'),(161708,40574,'hero_style','default'),(161709,40574,'_hero_style','field_62051d9dc5324'),(161710,40574,'hero_image_pos_x','right'),(161711,40574,'_hero_image_pos_x','field_62ec3d05390bb'),(161712,40574,'hero_image_pos_y','top'),(161713,40574,'_hero_image_pos_y','field_62ec3d05390bc'),(161714,40574,'hero_image_pos',''),(161715,40574,'_hero_image_pos','field_62ec3d05390ba'),(161716,40574,'fft_hide_from_listings','0'),(161717,40574,'_fft_hide_from_listings','field_61f1320446ab2'),(161718,40574,'fft_page_format','default'),(161719,40574,'_fft_page_format','field_61ae213f1f218'),(161720,40574,'fft_hide_nav','0'),(161721,40574,'_fft_hide_nav','field_635bd5e43527c'),(161722,40574,'fft_hide_header_call_to_action','0'),(161723,40574,'_fft_hide_header_call_to_action','field_635bd6723527d'),(161724,40574,'fft_page_sitemap','0'),(161725,40574,'_fft_page_sitemap','field_61af9b34e8181'),(161726,40574,'blocks','a:14:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";i:8;s:7:\"buttons\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:13:\"step_timeline\";i:12;s:14:\"course_compare\";i:13;s:10:\"accordions\";}'),(161727,40574,'_blocks','field_6176696113096'),(161728,40574,'course_label_text',''),(161729,40574,'_course_label_text','field_61e17babf71fa'),(161730,40574,'course_label',''),(161731,40574,'_course_label','field_61e12f92749a7'),(161732,40574,'course_description',''),(161733,40574,'_course_description','field_617ac5788e5e1'),(161734,40574,'course_key_info',''),(161735,40574,'_course_key_info','field_617ac6ad8e5e2'),(161736,40574,'course_included',''),(161737,40574,'_course_included','field_617ac6f08e5e4'),(161738,40574,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161739,40574,'_hero_actions_0_button','field_61757281285eb'),(161740,40574,'blocks_0_acfe_flexible_toggle',''),(161741,40574,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(161742,40574,'blocks_0_acfe_flexible_layout_title','Template'),(161743,40574,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(161744,40574,'blocks_0_template','39087'),(161745,40574,'_blocks_0_template','field_617bdd570fe01'),(161746,40574,'blocks_1_acfe_flexible_toggle',''),(161747,40574,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(161748,40574,'blocks_1_acfe_flexible_layout_title','Text Block'),(161749,40574,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(161750,40574,'blocks_1_options_theme','#ffffff'),(161751,40574,'_blocks_1_options_theme','field_6176830e2ad17'),(161752,40574,'blocks_1_options',''),(161753,40574,'_blocks_1_options','field_6176830e2ad16'),(161754,40574,'blocks_1_text_block_heading','Benefits of training with us'),(161755,40574,'_blocks_1_text_block_heading','field_617669d413097'),(161756,40574,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(161757,40574,'_blocks_1_text_block_content','field_617669ec13098'),(161758,40574,'_thumbnail_id','40561'),(161759,40574,'__thumbnail_id','field_617570855ddaf'),(161760,40574,'blocks_2_acfe_flexible_toggle',''),(161761,40574,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(161762,40574,'blocks_2_acfe_flexible_layout_title','Logos'),(161763,40574,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(161764,40574,'blocks_2_options_theme','#ffffff'),(161765,40574,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(161766,40574,'blocks_2_options_format','carousel'),(161767,40574,'_blocks_2_options_format','field_61782964ee971'),(161768,40574,'blocks_2_options',''),(161769,40574,'_blocks_2_options','field_61782954ee965'),(161770,40574,'blocks_2_logos','a:2:{i:0;s:5:\"25354\";i:1;s:4:\"1500\";}'),(161771,40574,'_blocks_2_logos','field_61782954ee96d'),(161772,40574,'blocks_2_title',''),(161773,40574,'_blocks_2_title','field_668fbfdc2daa1'),(161774,40574,'blocks_3_acfe_flexible_toggle',''),(161775,40574,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(161776,40574,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(161777,40574,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(161778,40574,'blocks_3_options_theme','#f5f5f5'),(161779,40574,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(161780,40574,'blocks_3_options_reverse','0'),(161781,40574,'_blocks_3_options_reverse','field_61768049bb8ac'),(161782,40574,'blocks_3_options',''),(161783,40574,'_blocks_3_options','field_617682517c334'),(161784,40574,'blocks_3_split_5050_image','40557'),(161785,40574,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(161786,40574,'blocks_3_split_5050_video',''),(161787,40574,'_blocks_3_split_5050_video','field_6239f3160848a'),(161788,40574,'blocks_3_split_5050_content_title',''),(161789,40574,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(161790,40574,'blocks_3_split_5050_content_heading','Course Overview'),(161791,40574,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(161792,40574,'blocks_3_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(161793,40574,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(161794,40574,'blocks_3_split_5050_content_actions',''),(161795,40574,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(161796,40574,'blocks_3_split_5050_content',''),(161797,40574,'_blocks_3_split_5050_content','field_61767afceb8ba'),(161798,40574,'blocks_4_acfe_flexible_toggle',''),(161799,40574,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(161800,40574,'blocks_4_acfe_flexible_layout_title','Text Block'),(161801,40574,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(161802,40574,'blocks_4_options_theme','#b61234'),(161803,40574,'_blocks_4_options_theme','field_6176830e2ad17'),(161804,40574,'blocks_4_options',''),(161805,40574,'_blocks_4_options','field_6176830e2ad16'),(161806,40574,'blocks_4_text_block_heading','Learn more about this course'),(161807,40574,'_blocks_4_text_block_heading','field_617669d413097'),(161808,40574,'blocks_4_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(161809,40574,'_blocks_4_text_block_content','field_617669ec13098'),(161810,40574,'blocks_5_acfe_flexible_toggle',''),(161811,40574,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(161812,40574,'blocks_5_acfe_flexible_layout_title','Tabs'),(161813,40574,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(161814,40574,'blocks_5_options_theme','#ffffff'),(161815,40574,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(161816,40574,'blocks_5_options',''),(161817,40574,'_blocks_5_options','field_6177cfcd8140f'),(161818,40574,'blocks_5_tabs_0_tab_label','E-learning '),(161819,40574,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(161820,40574,'blocks_5_tabs_0_tab_content_title',''),(161821,40574,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(161822,40574,'blocks_5_tabs_0_tab_content_heading',''),(161823,40574,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(161824,40574,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(161825,40574,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(161826,40574,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161827,40574,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(161828,40574,'blocks_5_tabs_0_tab_content_actions','1'),(161829,40574,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(161830,40574,'blocks_5_tabs_0_tab_content',''),(161831,40574,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(161832,40574,'blocks_5_tabs_0_tab_image',''),(161833,40574,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(161834,40574,'blocks_5_tabs_1_tab_label','Content '),(161835,40574,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(161836,40574,'blocks_5_tabs_1_tab_content_title',''),(161837,40574,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(161838,40574,'blocks_5_tabs_1_tab_content_heading',''),(161839,40574,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(161840,40574,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(161841,40574,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(161842,40574,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161843,40574,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(161844,40574,'blocks_5_tabs_1_tab_content_actions','1'),(161845,40574,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(161846,40574,'blocks_5_tabs_1_tab_content',''),(161847,40574,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(161848,40574,'blocks_5_tabs_1_tab_image',''),(161849,40574,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(161850,40574,'blocks_5_tabs_2_tab_label','Assessment '),(161851,40574,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(161852,40574,'blocks_5_tabs_2_tab_content_title',''),(161853,40574,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(161854,40574,'blocks_5_tabs_2_tab_content_heading',''),(161855,40574,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(161856,40574,'blocks_5_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(161857,40574,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(161858,40574,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161859,40574,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(161860,40574,'blocks_5_tabs_2_tab_content_actions','1'),(161861,40574,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(161862,40574,'blocks_5_tabs_2_tab_content',''),(161863,40574,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(161864,40574,'blocks_5_tabs_2_tab_image',''),(161865,40574,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(161866,40574,'blocks_5_tabs_3_tab_label','Entry requirements'),(161867,40574,'_blocks_5_tabs_3_tab_label','field_6177d0068141a'),(161868,40574,'blocks_5_tabs_3_tab_content_title',''),(161869,40574,'_blocks_5_tabs_3_tab_content_title','field_6177cfcd81414'),(161870,40574,'blocks_5_tabs_3_tab_content_heading',''),(161871,40574,'_blocks_5_tabs_3_tab_content_heading','field_6177cfcd81415'),(161872,40574,'blocks_5_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(161873,40574,'_blocks_5_tabs_3_tab_content_text','field_6177cfcd81416'),(161874,40574,'blocks_5_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161875,40574,'_blocks_5_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(161876,40574,'blocks_5_tabs_3_tab_content_actions','1'),(161877,40574,'_blocks_5_tabs_3_tab_content_actions','field_6177cfcd81417'),(161878,40574,'blocks_5_tabs_3_tab_content',''),(161879,40574,'_blocks_5_tabs_3_tab_content','field_6177cfcd81413'),(161880,40574,'blocks_5_tabs_3_tab_image',''),(161881,40574,'_blocks_5_tabs_3_tab_image','field_6177cfcd81412'),(161882,40574,'blocks_5_tabs','4'),(161883,40574,'_blocks_5_tabs','field_6177cff281419'),(161884,40574,'blocks_6_acfe_flexible_toggle',''),(161885,40574,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(161886,40574,'blocks_6_acfe_flexible_layout_title','Text Block'),(161887,40574,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(161888,40574,'blocks_6_options_theme','#f5f5f5'),(161889,40574,'_blocks_6_options_theme','field_6176830e2ad17'),(161890,40574,'blocks_6_options',''),(161891,40574,'_blocks_6_options','field_6176830e2ad16'),(161892,40574,'blocks_6_text_block_heading','Blogs'),(161893,40574,'_blocks_6_text_block_heading','field_617669d413097'),(161894,40574,'blocks_6_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(161895,40574,'_blocks_6_text_block_content','field_617669ec13098'),(161896,40574,'blocks_7_acfe_flexible_toggle',''),(161897,40574,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(161898,40574,'blocks_7_acfe_flexible_layout_title','Cards'),(161899,40574,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(161900,40574,'blocks_7_options_theme','#f5f5f5'),(161901,40574,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(161902,40574,'blocks_7_options_format','carousel'),(161903,40574,'_blocks_7_options_format','field_617a7b15245b5'),(161904,40574,'blocks_7_options_style','default'),(161905,40574,'_blocks_7_options_style','field_6278ffb63484a'),(161906,40574,'blocks_7_options_cards_current_listing','0'),(161907,40574,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(161908,40574,'blocks_7_options_cards_content','selection'),(161909,40574,'_blocks_7_options_cards_content','field_617aba6122688'),(161910,40574,'blocks_7_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(161911,40574,'_blocks_7_options_cards_select_posts','field_6193f85fbaea1'),(161912,40574,'blocks_7_options',''),(161913,40574,'_blocks_7_options','field_617a7b15245b3'),(161914,40574,'blocks_8_acfe_flexible_toggle',''),(161915,40574,'_blocks_8_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(161916,40574,'blocks_8_acfe_flexible_layout_title','Button(s)'),(161917,40574,'_blocks_8_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(161918,40574,'blocks_8_options_theme','#ffffff'),(161919,40574,'_blocks_8_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(161920,40574,'blocks_8_options',''),(161921,40574,'_blocks_8_options','field_623b03edb6e65'),(161922,40574,'blocks_8_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(161923,40574,'_blocks_8_actions_0_button','field_623b03edb6e6f'),(161924,40574,'blocks_8_actions','1'),(161925,40574,'_blocks_8_actions','field_623b03edb6e6e'),(161926,40574,'blocks_9_acfe_flexible_toggle',''),(161927,40574,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(161928,40574,'blocks_9_acfe_flexible_layout_title','Icons'),(161929,40574,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(161930,40574,'blocks_9_options_theme','#ffffff'),(161931,40574,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(161932,40574,'blocks_9_options_format','grid'),(161933,40574,'_blocks_9_options_format','field_64bfde9a90690'),(161934,40574,'blocks_9_options',''),(161935,40574,'_blocks_9_options','field_64bfdd9b90684'),(161936,40574,'blocks_9_row_content_title',''),(161937,40574,'_blocks_9_row_content_title','field_64bfdd9b90687'),(161938,40574,'blocks_9_row_content_heading','Payment options'),(161939,40574,'_blocks_9_row_content_heading','field_64bfdd9b90688'),(161940,40574,'blocks_9_row_content_text','<strong>Options available to pay for your course</strong>\r\n\r\nTraining for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options including;'),(161941,40574,'_blocks_9_row_content_text','field_64bfdd9b90689'),(161942,40574,'blocks_9_row_content_actions',''),(161943,40574,'_blocks_9_row_content_actions','field_64bfdd9b9068a'),(161944,40574,'blocks_9_row_content',''),(161945,40574,'_blocks_9_row_content','field_64bfdd9b90686'),(161946,40574,'blocks_9_icon_row_items_0_icon','start-earning-in.svg'),(161947,40574,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(161948,40574,'blocks_9_icon_row_items_0_label','Pay your course in full'),(161949,40574,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(161950,40574,'blocks_9_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full'),(161951,40574,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(161952,40574,'blocks_9_icon_row_items_1_icon','pass-rate.svg'),(161953,40574,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(161954,40574,'blocks_9_icon_row_items_1_label','Flexible payment schemes'),(161955,40574,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(161956,40574,'blocks_9_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(161957,40574,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(161958,40574,'blocks_9_icon_row_items','2'),(161959,40574,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(161960,40574,'blocks_10_acfe_flexible_toggle',''),(161961,40574,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(161962,40574,'blocks_10_acfe_flexible_layout_title','Text Block'),(161963,40574,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(161964,40574,'blocks_10_options_theme','#ffffff'),(161965,40574,'_blocks_10_options_theme','field_6176830e2ad17'),(161966,40574,'blocks_10_options',''),(161967,40574,'_blocks_10_options','field_6176830e2ad16'),(161968,40574,'blocks_10_text_block_heading','Why study this behavioural change course? '),(161969,40574,'_blocks_10_text_block_heading','field_617669d413097'),(161970,40574,'blocks_10_text_block_content','Studying this coaching course in behavioural change will help fitness professionals and health coaches to work with clients in achieving their long-term goals. Without behavioural change coaches would find it difficult to make a difference to the client, understanding how to influence and motivate them is the underpinning knowledge to making coaching work.'),(161971,40574,'_blocks_10_text_block_content','field_617669ec13098'),(161972,40574,'blocks_11_acfe_flexible_toggle',''),(161973,40574,'_blocks_11_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(161974,40574,'blocks_11_acfe_flexible_layout_title','Timeline'),(161975,40574,'_blocks_11_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(161976,40574,'blocks_11_options_theme','#ffffff'),(161977,40574,'_blocks_11_options_theme','field_6177de53d1196_field_6176830e2ad17'),(161978,40574,'blocks_11_options',''),(161979,40574,'_blocks_11_options','field_6177de53d1195'),(161980,40574,'blocks_11_timeline_content_title',''),(161981,40574,'_blocks_11_timeline_content_title','field_6177de53d1198'),(161982,40574,'blocks_11_timeline_content_heading','Job Opportunities '),(161983,40574,'_blocks_11_timeline_content_heading','field_6177de53d1199'),(161984,40574,'blocks_11_timeline_content_text','Behaviour Change Coaching is a skill which can be used in numerous jobs to implement effective behaviour change for an individual. Completing this course can be a great addition to the below careers'),(161985,40574,'_blocks_11_timeline_content_text','field_6177de53d119a'),(161986,40574,'blocks_11_timeline_content_actions',''),(161987,40574,'_blocks_11_timeline_content_actions','field_6177de53d119b'),(161988,40574,'blocks_11_timeline_content',''),(161989,40574,'_blocks_11_timeline_content','field_6177de53d1197'),(161990,40574,'blocks_11_timeline_items_0_title','Health & wellbeing coaching '),(161991,40574,'_blocks_11_timeline_items_0_title','field_6177de53d119f'),(161992,40574,'blocks_11_timeline_items_0_text',''),(161993,40574,'_blocks_11_timeline_items_0_text','field_6177de53d11a0'),(161994,40574,'blocks_11_timeline_items_1_title','Lifestyle coaching '),(161995,40574,'_blocks_11_timeline_items_1_title','field_6177de53d119f'),(161996,40574,'blocks_11_timeline_items_1_text',''),(161997,40574,'_blocks_11_timeline_items_1_text','field_6177de53d11a0'),(161998,40574,'blocks_11_timeline_items_2_title','Personal training '),(161999,40574,'_blocks_11_timeline_items_2_title','field_6177de53d119f'),(162000,40574,'blocks_11_timeline_items_2_text',''),(162001,40574,'_blocks_11_timeline_items_2_text','field_6177de53d11a0'),(162002,40574,'blocks_11_timeline_items_3_title','Nutrition coaching '),(162003,40574,'_blocks_11_timeline_items_3_title','field_6177de53d119f'),(162004,40574,'blocks_11_timeline_items_3_text',''),(162005,40574,'_blocks_11_timeline_items_3_text','field_6177de53d11a0'),(162006,40574,'blocks_11_timeline_items','4'),(162007,40574,'_blocks_11_timeline_items','field_6177de53d119d'),(162008,40574,'blocks_12_acfe_flexible_toggle',''),(162009,40574,'_blocks_12_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(162010,40574,'blocks_12_acfe_flexible_layout_title','Course Comparison'),(162011,40574,'_blocks_12_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(162012,40574,'blocks_12_options_theme','#b61234'),(162013,40574,'_blocks_12_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(162014,40574,'blocks_12_options',''),(162015,40574,'_blocks_12_options','field_617ac0b7f6c08'),(162016,40574,'blocks_12_show','category'),(162017,40574,'_blocks_12_show','field_61a49cba9d946'),(162018,40574,'blocks_12_category','403'),(162019,40574,'_blocks_12_category','field_61a49cd79d947'),(162020,40574,'blocks_13_acfe_flexible_toggle',''),(162021,40574,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(162022,40574,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(162023,40574,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(162024,40574,'blocks_13_options_theme','#ffffff'),(162025,40574,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(162026,40574,'blocks_13_options_state','0'),(162027,40574,'_blocks_13_options_state','field_6239fcb7508c5'),(162028,40574,'blocks_13_options',''),(162029,40574,'_blocks_13_options','field_6177e2991ac44'),(162030,40574,'blocks_13_content_title',''),(162031,40574,'_blocks_13_content_title','field_64d237e8bb1e2'),(162032,40574,'blocks_13_content_heading','FAQs'),(162033,40574,'_blocks_13_content_heading','field_64d237e8bb1e3'),(162034,40574,'blocks_13_content_text',''),(162035,40574,'_blocks_13_content_text','field_64d237e8bb1e4'),(162036,40574,'blocks_13_content_actions',''),(162037,40574,'_blocks_13_content_actions','field_64d237e8bb1e5'),(162038,40574,'blocks_13_content_align','left'),(162039,40574,'_blocks_13_content_align','field_64d2443e6b6aa'),(162040,40574,'blocks_13_content',''),(162041,40574,'_blocks_13_content','field_64d237e8bb1e1'),(162042,40574,'blocks_13_accordion_content','faqs'),(162043,40574,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(162044,40574,'blocks_13_accordion_faqs_select','a:5:{i:0;s:5:\"40571\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(162045,40574,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(162046,40574,'blocks_13_actions',''),(162047,40574,'_blocks_13_actions','field_61a746a817f7a'),(162048,40575,'hide_hero','0'),(162049,40575,'_hide_hero','field_66a2380fcda39'),(162050,40575,'hero_title','Behaviour Change Coaching'),(162051,40575,'_hero_title','field_617571fe285e8'),(162052,40575,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(162053,40575,'_hero_text','field_6175723c285e9'),(162054,40575,'hero_actions','1'),(162055,40575,'_hero_actions','field_61757270285ea'),(162056,40575,'hero_style','default'),(162057,40575,'_hero_style','field_62051d9dc5324'),(162058,40575,'hero_image_pos_x','right'),(162059,40575,'_hero_image_pos_x','field_62ec3d05390bb'),(162060,40575,'hero_image_pos_y','top'),(162061,40575,'_hero_image_pos_y','field_62ec3d05390bc'),(162062,40575,'hero_image_pos',''),(162063,40575,'_hero_image_pos','field_62ec3d05390ba'),(162064,40575,'fft_hide_from_listings','0'),(162065,40575,'_fft_hide_from_listings','field_61f1320446ab2'),(162066,40575,'fft_page_format','default'),(162067,40575,'_fft_page_format','field_61ae213f1f218'),(162068,40575,'fft_hide_nav','0'),(162069,40575,'_fft_hide_nav','field_635bd5e43527c'),(162070,40575,'fft_hide_header_call_to_action','0'),(162071,40575,'_fft_hide_header_call_to_action','field_635bd6723527d'),(162072,40575,'fft_page_sitemap','0'),(162073,40575,'_fft_page_sitemap','field_61af9b34e8181'),(162074,40575,'blocks','a:14:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";i:8;s:7:\"buttons\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:13:\"step_timeline\";i:12;s:14:\"course_compare\";i:13;s:10:\"accordions\";}'),(162075,40575,'_blocks','field_6176696113096'),(162076,40575,'course_label_text',''),(162077,40575,'_course_label_text','field_61e17babf71fa'),(162078,40575,'course_label',''),(162079,40575,'_course_label','field_61e12f92749a7'),(162080,40575,'course_description',''),(162081,40575,'_course_description','field_617ac5788e5e1'),(162082,40575,'course_key_info',''),(162083,40575,'_course_key_info','field_617ac6ad8e5e2'),(162084,40575,'course_included',''),(162085,40575,'_course_included','field_617ac6f08e5e4'),(162086,40575,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(162087,40575,'_hero_actions_0_button','field_61757281285eb'),(162088,40575,'blocks_0_acfe_flexible_toggle',''),(162089,40575,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(162090,40575,'blocks_0_acfe_flexible_layout_title','Template'),(162091,40575,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(162092,40575,'blocks_0_template','39087'),(162093,40575,'_blocks_0_template','field_617bdd570fe01'),(162094,40575,'blocks_1_acfe_flexible_toggle',''),(162095,40575,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(162096,40575,'blocks_1_acfe_flexible_layout_title','Text Block'),(162097,40575,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(162098,40575,'blocks_1_options_theme','#ffffff'),(162099,40575,'_blocks_1_options_theme','field_6176830e2ad17'),(162100,40575,'blocks_1_options',''),(162101,40575,'_blocks_1_options','field_6176830e2ad16'),(162102,40575,'blocks_1_text_block_heading','Benefits of training with us'),(162103,40575,'_blocks_1_text_block_heading','field_617669d413097'),(162104,40575,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(162105,40575,'_blocks_1_text_block_content','field_617669ec13098'),(162106,40575,'_thumbnail_id','40561'),(162107,40575,'__thumbnail_id','field_617570855ddaf'),(162108,40575,'blocks_2_acfe_flexible_toggle',''),(162109,40575,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(162110,40575,'blocks_2_acfe_flexible_layout_title','Logos'),(162111,40575,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(162112,40575,'blocks_2_options_theme','#ffffff'),(162113,40575,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(162114,40575,'blocks_2_options_format','grid'),(162115,40575,'_blocks_2_options_format','field_61782964ee971'),(162116,40575,'blocks_2_options',''),(162117,40575,'_blocks_2_options','field_61782954ee965'),(162118,40575,'blocks_2_logos','a:2:{i:0;s:5:\"25354\";i:1;s:4:\"1500\";}'),(162119,40575,'_blocks_2_logos','field_61782954ee96d'),(162120,40575,'blocks_2_title',''),(162121,40575,'_blocks_2_title','field_668fbfdc2daa1'),(162122,40575,'blocks_3_acfe_flexible_toggle',''),(162123,40575,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(162124,40575,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(162125,40575,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(162126,40575,'blocks_3_options_theme','#f5f5f5'),(162127,40575,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(162128,40575,'blocks_3_options_reverse','0'),(162129,40575,'_blocks_3_options_reverse','field_61768049bb8ac'),(162130,40575,'blocks_3_options',''),(162131,40575,'_blocks_3_options','field_617682517c334'),(162132,40575,'blocks_3_split_5050_image','40557'),(162133,40575,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(162134,40575,'blocks_3_split_5050_video',''),(162135,40575,'_blocks_3_split_5050_video','field_6239f3160848a'),(162136,40575,'blocks_3_split_5050_content_title',''),(162137,40575,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(162138,40575,'blocks_3_split_5050_content_heading','Course Overview'),(162139,40575,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(162140,40575,'blocks_3_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(162141,40575,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(162142,40575,'blocks_3_split_5050_content_actions',''),(162143,40575,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(162144,40575,'blocks_3_split_5050_content',''),(162145,40575,'_blocks_3_split_5050_content','field_61767afceb8ba'),(162146,40575,'blocks_4_acfe_flexible_toggle',''),(162147,40575,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(162148,40575,'blocks_4_acfe_flexible_layout_title','Text Block'),(162149,40575,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(162150,40575,'blocks_4_options_theme','#b61234'),(162151,40575,'_blocks_4_options_theme','field_6176830e2ad17'),(162152,40575,'blocks_4_options',''),(162153,40575,'_blocks_4_options','field_6176830e2ad16'),(162154,40575,'blocks_4_text_block_heading','Learn more about this course'),(162155,40575,'_blocks_4_text_block_heading','field_617669d413097'),(162156,40575,'blocks_4_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(162157,40575,'_blocks_4_text_block_content','field_617669ec13098'),(162158,40575,'blocks_5_acfe_flexible_toggle',''),(162159,40575,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(162160,40575,'blocks_5_acfe_flexible_layout_title','Tabs'),(162161,40575,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(162162,40575,'blocks_5_options_theme','#ffffff'),(162163,40575,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(162164,40575,'blocks_5_options',''),(162165,40575,'_blocks_5_options','field_6177cfcd8140f'),(162166,40575,'blocks_5_tabs_0_tab_label','E-learning '),(162167,40575,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(162168,40575,'blocks_5_tabs_0_tab_content_title',''),(162169,40575,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(162170,40575,'blocks_5_tabs_0_tab_content_heading',''),(162171,40575,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(162172,40575,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(162173,40575,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(162174,40575,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(162175,40575,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(162176,40575,'blocks_5_tabs_0_tab_content_actions','1'),(162177,40575,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(162178,40575,'blocks_5_tabs_0_tab_content',''),(162179,40575,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(162180,40575,'blocks_5_tabs_0_tab_image',''),(162181,40575,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(162182,40575,'blocks_5_tabs_1_tab_label','Content '),(162183,40575,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(162184,40575,'blocks_5_tabs_1_tab_content_title',''),(162185,40575,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(162186,40575,'blocks_5_tabs_1_tab_content_heading',''),(162187,40575,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(162188,40575,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(162189,40575,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(162190,40575,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(162191,40575,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(162192,40575,'blocks_5_tabs_1_tab_content_actions','1'),(162193,40575,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(162194,40575,'blocks_5_tabs_1_tab_content',''),(162195,40575,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(162196,40575,'blocks_5_tabs_1_tab_image',''),(162197,40575,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(162198,40575,'blocks_5_tabs_2_tab_label','Assessment '),(162199,40575,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(162200,40575,'blocks_5_tabs_2_tab_content_title',''),(162201,40575,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(162202,40575,'blocks_5_tabs_2_tab_content_heading',''),(162203,40575,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(162204,40575,'blocks_5_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(162205,40575,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(162206,40575,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(162207,40575,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(162208,40575,'blocks_5_tabs_2_tab_content_actions','1'),(162209,40575,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(162210,40575,'blocks_5_tabs_2_tab_content',''),(162211,40575,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(162212,40575,'blocks_5_tabs_2_tab_image',''),(162213,40575,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(162214,40575,'blocks_5_tabs_3_tab_label','Entry requirements'),(162215,40575,'_blocks_5_tabs_3_tab_label','field_6177d0068141a'),(162216,40575,'blocks_5_tabs_3_tab_content_title',''),(162217,40575,'_blocks_5_tabs_3_tab_content_title','field_6177cfcd81414'),(162218,40575,'blocks_5_tabs_3_tab_content_heading',''),(162219,40575,'_blocks_5_tabs_3_tab_content_heading','field_6177cfcd81415'),(162220,40575,'blocks_5_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(162221,40575,'_blocks_5_tabs_3_tab_content_text','field_6177cfcd81416'),(162222,40575,'blocks_5_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(162223,40575,'_blocks_5_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(162224,40575,'blocks_5_tabs_3_tab_content_actions','1'),(162225,40575,'_blocks_5_tabs_3_tab_content_actions','field_6177cfcd81417'),(162226,40575,'blocks_5_tabs_3_tab_content',''),(162227,40575,'_blocks_5_tabs_3_tab_content','field_6177cfcd81413'),(162228,40575,'blocks_5_tabs_3_tab_image',''),(162229,40575,'_blocks_5_tabs_3_tab_image','field_6177cfcd81412'),(162230,40575,'blocks_5_tabs','4'),(162231,40575,'_blocks_5_tabs','field_6177cff281419'),(162232,40575,'blocks_6_acfe_flexible_toggle',''),(162233,40575,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(162234,40575,'blocks_6_acfe_flexible_layout_title','Text Block'),(162235,40575,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(162236,40575,'blocks_6_options_theme','#f5f5f5'),(162237,40575,'_blocks_6_options_theme','field_6176830e2ad17'),(162238,40575,'blocks_6_options',''),(162239,40575,'_blocks_6_options','field_6176830e2ad16'),(162240,40575,'blocks_6_text_block_heading','Blogs'),(162241,40575,'_blocks_6_text_block_heading','field_617669d413097'),(162242,40575,'blocks_6_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(162243,40575,'_blocks_6_text_block_content','field_617669ec13098'),(162244,40575,'blocks_7_acfe_flexible_toggle',''),(162245,40575,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(162246,40575,'blocks_7_acfe_flexible_layout_title','Cards'),(162247,40575,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(162248,40575,'blocks_7_options_theme','#f5f5f5'),(162249,40575,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(162250,40575,'blocks_7_options_format','carousel'),(162251,40575,'_blocks_7_options_format','field_617a7b15245b5'),(162252,40575,'blocks_7_options_style','default'),(162253,40575,'_blocks_7_options_style','field_6278ffb63484a'),(162254,40575,'blocks_7_options_cards_current_listing','0'),(162255,40575,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(162256,40575,'blocks_7_options_cards_content','selection'),(162257,40575,'_blocks_7_options_cards_content','field_617aba6122688'),(162258,40575,'blocks_7_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(162259,40575,'_blocks_7_options_cards_select_posts','field_6193f85fbaea1'),(162260,40575,'blocks_7_options',''),(162261,40575,'_blocks_7_options','field_617a7b15245b3'),(162262,40575,'blocks_8_acfe_flexible_toggle',''),(162263,40575,'_blocks_8_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(162264,40575,'blocks_8_acfe_flexible_layout_title','Button(s)'),(162265,40575,'_blocks_8_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(162266,40575,'blocks_8_options_theme','#ffffff'),(162267,40575,'_blocks_8_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(162268,40575,'blocks_8_options',''),(162269,40575,'_blocks_8_options','field_623b03edb6e65'),(162270,40575,'blocks_8_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(162271,40575,'_blocks_8_actions_0_button','field_623b03edb6e6f'),(162272,40575,'blocks_8_actions','1'),(162273,40575,'_blocks_8_actions','field_623b03edb6e6e'),(162274,40575,'blocks_9_acfe_flexible_toggle',''),(162275,40575,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(162276,40575,'blocks_9_acfe_flexible_layout_title','Icons'),(162277,40575,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(162278,40575,'blocks_9_options_theme','#ffffff'),(162279,40575,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(162280,40575,'blocks_9_options_format','grid'),(162281,40575,'_blocks_9_options_format','field_64bfde9a90690'),(162282,40575,'blocks_9_options',''),(162283,40575,'_blocks_9_options','field_64bfdd9b90684'),(162284,40575,'blocks_9_row_content_title',''),(162285,40575,'_blocks_9_row_content_title','field_64bfdd9b90687'),(162286,40575,'blocks_9_row_content_heading','Payment options'),(162287,40575,'_blocks_9_row_content_heading','field_64bfdd9b90688'),(162288,40575,'blocks_9_row_content_text','<strong>Options available to pay for your course</strong>\r\n\r\nTraining for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options including;'),(162289,40575,'_blocks_9_row_content_text','field_64bfdd9b90689'),(162290,40575,'blocks_9_row_content_actions',''),(162291,40575,'_blocks_9_row_content_actions','field_64bfdd9b9068a'),(162292,40575,'blocks_9_row_content',''),(162293,40575,'_blocks_9_row_content','field_64bfdd9b90686'),(162294,40575,'blocks_9_icon_row_items_0_icon','start-earning-in.svg'),(162295,40575,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(162296,40575,'blocks_9_icon_row_items_0_label','Pay your course in full'),(162297,40575,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(162298,40575,'blocks_9_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full'),(162299,40575,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(162300,40575,'blocks_9_icon_row_items_1_icon','pass-rate.svg'),(162301,40575,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(162302,40575,'blocks_9_icon_row_items_1_label','Flexible payment schemes'),(162303,40575,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(162304,40575,'blocks_9_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(162305,40575,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(162306,40575,'blocks_9_icon_row_items','2'),(162307,40575,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(162308,40575,'blocks_10_acfe_flexible_toggle',''),(162309,40575,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(162310,40575,'blocks_10_acfe_flexible_layout_title','Text Block'),(162311,40575,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(162312,40575,'blocks_10_options_theme','#ffffff'),(162313,40575,'_blocks_10_options_theme','field_6176830e2ad17'),(162314,40575,'blocks_10_options',''),(162315,40575,'_blocks_10_options','field_6176830e2ad16'),(162316,40575,'blocks_10_text_block_heading','Why study this behavioural change course? '),(162317,40575,'_blocks_10_text_block_heading','field_617669d413097'),(162318,40575,'blocks_10_text_block_content','Studying this coaching course in behavioural change will help fitness professionals and health coaches to work with clients in achieving their long-term goals. Without behavioural change coaches would find it difficult to make a difference to the client, understanding how to influence and motivate them is the underpinning knowledge to making coaching work.'),(162319,40575,'_blocks_10_text_block_content','field_617669ec13098'),(162320,40575,'blocks_11_acfe_flexible_toggle',''),(162321,40575,'_blocks_11_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(162322,40575,'blocks_11_acfe_flexible_layout_title','Timeline'),(162323,40575,'_blocks_11_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(162324,40575,'blocks_11_options_theme','#ffffff'),(162325,40575,'_blocks_11_options_theme','field_6177de53d1196_field_6176830e2ad17'),(162326,40575,'blocks_11_options',''),(162327,40575,'_blocks_11_options','field_6177de53d1195'),(162328,40575,'blocks_11_timeline_content_title',''),(162329,40575,'_blocks_11_timeline_content_title','field_6177de53d1198'),(162330,40575,'blocks_11_timeline_content_heading','Job Opportunities '),(162331,40575,'_blocks_11_timeline_content_heading','field_6177de53d1199'),(162332,40575,'blocks_11_timeline_content_text','Behaviour Change Coaching is a skill which can be used in numerous jobs to implement effective behaviour change for an individual. Completing this course can be a great addition to the below careers'),(162333,40575,'_blocks_11_timeline_content_text','field_6177de53d119a'),(162334,40575,'blocks_11_timeline_content_actions',''),(162335,40575,'_blocks_11_timeline_content_actions','field_6177de53d119b'),(162336,40575,'blocks_11_timeline_content',''),(162337,40575,'_blocks_11_timeline_content','field_6177de53d1197'),(162338,40575,'blocks_11_timeline_items_0_title','Health & wellbeing coaching '),(162339,40575,'_blocks_11_timeline_items_0_title','field_6177de53d119f'),(162340,40575,'blocks_11_timeline_items_0_text',''),(162341,40575,'_blocks_11_timeline_items_0_text','field_6177de53d11a0'),(162342,40575,'blocks_11_timeline_items_1_title','Lifestyle coaching '),(162343,40575,'_blocks_11_timeline_items_1_title','field_6177de53d119f'),(162344,40575,'blocks_11_timeline_items_1_text',''),(162345,40575,'_blocks_11_timeline_items_1_text','field_6177de53d11a0'),(162346,40575,'blocks_11_timeline_items_2_title','Personal training '),(162347,40575,'_blocks_11_timeline_items_2_title','field_6177de53d119f'),(162348,40575,'blocks_11_timeline_items_2_text',''),(162349,40575,'_blocks_11_timeline_items_2_text','field_6177de53d11a0'),(162350,40575,'blocks_11_timeline_items_3_title','Nutrition coaching '),(162351,40575,'_blocks_11_timeline_items_3_title','field_6177de53d119f'),(162352,40575,'blocks_11_timeline_items_3_text',''),(162353,40575,'_blocks_11_timeline_items_3_text','field_6177de53d11a0'),(162354,40575,'blocks_11_timeline_items','4'),(162355,40575,'_blocks_11_timeline_items','field_6177de53d119d'),(162356,40575,'blocks_12_acfe_flexible_toggle',''),(162357,40575,'_blocks_12_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(162358,40575,'blocks_12_acfe_flexible_layout_title','Course Comparison'),(162359,40575,'_blocks_12_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(162360,40575,'blocks_12_options_theme','#b61234'),(162361,40575,'_blocks_12_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(162362,40575,'blocks_12_options',''),(162363,40575,'_blocks_12_options','field_617ac0b7f6c08'),(162364,40575,'blocks_12_show','category'),(162365,40575,'_blocks_12_show','field_61a49cba9d946'),(162366,40575,'blocks_12_category','403'),(162367,40575,'_blocks_12_category','field_61a49cd79d947'),(162368,40575,'blocks_13_acfe_flexible_toggle',''),(162369,40575,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(162370,40575,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(162371,40575,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(162372,40575,'blocks_13_options_theme','#ffffff'),(162373,40575,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(162374,40575,'blocks_13_options_state','0'),(162375,40575,'_blocks_13_options_state','field_6239fcb7508c5'),(162376,40575,'blocks_13_options',''),(162377,40575,'_blocks_13_options','field_6177e2991ac44'),(162378,40575,'blocks_13_content_title',''),(162379,40575,'_blocks_13_content_title','field_64d237e8bb1e2'),(162380,40575,'blocks_13_content_heading','FAQs'),(162381,40575,'_blocks_13_content_heading','field_64d237e8bb1e3'),(162382,40575,'blocks_13_content_text',''),(162383,40575,'_blocks_13_content_text','field_64d237e8bb1e4'),(162384,40575,'blocks_13_content_actions',''),(162385,40575,'_blocks_13_content_actions','field_64d237e8bb1e5'),(162386,40575,'blocks_13_content_align','left'),(162387,40575,'_blocks_13_content_align','field_64d2443e6b6aa'),(162388,40575,'blocks_13_content',''),(162389,40575,'_blocks_13_content','field_64d237e8bb1e1'),(162390,40575,'blocks_13_accordion_content','faqs'),(162391,40575,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(162392,40575,'blocks_13_accordion_faqs_select','a:5:{i:0;s:5:\"40571\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(162393,40575,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(162394,40575,'blocks_13_actions',''),(162395,40575,'_blocks_13_actions','field_61a746a817f7a'),(162396,40270,'_edit_lock','1727342584:5'),(162397,40576,'_wp_attached_file','2024/09/BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-scaled.jpg'),(162398,40576,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:60:\"2024/09/BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-scaled.jpg\";s:8:\"filesize\";i:663487;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129984;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192800;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50251;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105668;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:279105;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:55:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:446516;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:53:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56259;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:53:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155323;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:55:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:236888;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:53:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50181;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:53:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129984;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192800;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:53:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46635;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:53:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121952;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184895;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:53:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52030;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:53:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138057;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206814;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:53:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45844;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:53:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114925;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167636;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1631952435\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"47\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:45:\"BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE.jpg\";}'),(162399,40577,'_wp_attached_file','2024/09/BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-scaled.jpg'),(162400,40577,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:61:\"2024/09/BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-scaled.jpg\";s:8:\"filesize\";i:537178;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81883;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120492;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36006;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66797;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:56:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181297;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:56:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:322004;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39387;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102333;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:56:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167903;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35919;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81883;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:55:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120492;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34985;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83857;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:55:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133821;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36652;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85488;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:55:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129411;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33185;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:54:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72866;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:55:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106022;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1631953289\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:7:\"0.00125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:46:\"BUILDING-YOUR-FITNESS-BUSINESS-50.50-image.jpg\";}'),(162401,40270,'_edit_last','5'),(162402,40270,'_wp_old_date','2024-09-10'),(162403,40270,'hide_hero','0'),(162404,40270,'_hide_hero','field_66a2380fcda39'),(162405,40270,'hero_title','Building Your Fitness Business'),(162406,40270,'_hero_title','field_617571fe285e8'),(162407,40270,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(162408,40270,'_hero_text','field_6175723c285e9'),(162409,40270,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(162410,40270,'_hero_actions_0_button','field_61757281285eb'),(162411,40270,'hero_actions','1'),(162412,40270,'_hero_actions','field_61757270285ea'),(162413,40270,'hero_style','default'),(162414,40270,'_hero_style','field_62051d9dc5324'),(162415,40270,'_thumbnail_id','40576'),(162416,40270,'__thumbnail_id','field_617570855ddaf'),(162417,40270,'hero_image_pos_x','right'),(162418,40270,'_hero_image_pos_x','field_62ec3d05390bb'),(162419,40270,'hero_image_pos_y','top'),(162420,40270,'_hero_image_pos_y','field_62ec3d05390bc'),(162421,40270,'hero_image_pos',''),(162422,40270,'_hero_image_pos','field_62ec3d05390ba'),(162423,40270,'fft_hide_from_listings','0'),(162424,40270,'_fft_hide_from_listings','field_61f1320446ab2'),(162425,40270,'fft_page_format','default'),(162426,40270,'_fft_page_format','field_61ae213f1f218'),(162427,40270,'fft_hide_nav','0'),(162428,40270,'_fft_hide_nav','field_635bd5e43527c'),(162429,40270,'fft_hide_header_call_to_action','0'),(162430,40270,'_fft_hide_header_call_to_action','field_635bd6723527d'),(162431,40270,'fft_page_sitemap','0'),(162432,40270,'_fft_page_sitemap','field_61af9b34e8181'),(162433,40270,'blocks_0_acfe_flexible_toggle',''),(162434,40270,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(162435,40270,'blocks_0_acfe_flexible_layout_title','Template'),(162436,40270,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(162437,40270,'blocks_0_template','39087'),(162438,40270,'_blocks_0_template','field_617bdd570fe01'),(162439,40270,'blocks_1_acfe_flexible_toggle',''),(162440,40270,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(162441,40270,'blocks_1_acfe_flexible_layout_title','Text Block'),(162442,40270,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(162443,40270,'blocks_1_options_theme','#ffffff'),(162444,40270,'_blocks_1_options_theme','field_6176830e2ad17'),(162445,40270,'blocks_1_options',''),(162446,40270,'_blocks_1_options','field_6176830e2ad16'),(162447,40270,'blocks_1_text_block_heading','Benefits of training with us'),(162448,40270,'_blocks_1_text_block_heading','field_617669d413097'),(162449,40270,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(162450,40270,'_blocks_1_text_block_content','field_617669ec13098'),(162451,40270,'blocks_2_acfe_flexible_toggle',''),(162452,40270,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(162453,40270,'blocks_2_acfe_flexible_layout_title','Logos'),(162454,40270,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(162455,40270,'blocks_2_options_theme','#ffffff'),(162456,40270,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(162457,40270,'blocks_2_options_format','grid'),(162458,40270,'_blocks_2_options_format','field_61782964ee971'),(162459,40270,'blocks_2_options',''),(162460,40270,'_blocks_2_options','field_61782954ee965'),(162461,40270,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(162462,40270,'_blocks_2_logos','field_61782954ee96d'),(162463,40270,'blocks_2_title',''),(162464,40270,'_blocks_2_title','field_668fbfdc2daa1'),(162465,40270,'blocks_3_acfe_flexible_toggle',''),(162466,40270,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(162467,40270,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(162468,40270,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(162469,40270,'blocks_3_options_theme','#f5f5f5'),(162470,40270,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(162471,40270,'blocks_3_options_reverse','0'),(162472,40270,'_blocks_3_options_reverse','field_61768049bb8ac'),(162473,40270,'blocks_3_options',''),(162474,40270,'_blocks_3_options','field_617682517c334'),(162475,40270,'blocks_3_split_5050_image','40577'),(162476,40270,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(162477,40270,'blocks_3_split_5050_video',''),(162478,40270,'_blocks_3_split_5050_video','field_6239f3160848a'),(162479,40270,'blocks_3_split_5050_content_title',''),(162480,40270,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(162481,40270,'blocks_3_split_5050_content_heading','Course Overview'),(162482,40270,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(162483,40270,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(162484,40270,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(162485,40270,'blocks_3_split_5050_content_actions',''),(162486,40270,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(162487,40270,'blocks_3_split_5050_content',''),(162488,40270,'_blocks_3_split_5050_content','field_61767afceb8ba'),(162489,40270,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:13:\"step_timeline\";i:7;s:8:\"template\";i:8;s:10:\"text_block\";i:9;s:14:\"course_compare\";i:10;s:10:\"accordions\";}'),(162490,40270,'_blocks','field_6176696113096'),(162491,40270,'course_label_text','Building Your Fitness Business'),(162492,40270,'_course_label_text','field_61e17babf71fa'),(162493,40270,'course_label',''),(162494,40270,'_course_label','field_61e12f92749a7'),(162495,40270,'course_description','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(162496,40270,'_course_description','field_617ac5788e5e1'),(162497,40270,'course_key_info','3'),(162498,40270,'_course_key_info','field_617ac6ad8e5e2'),(162499,40270,'course_included','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(162500,40270,'_course_included','field_617ac6f08e5e4'),(162501,40270,'_yoast_wpseo_primary_course-cat','404'),(162502,40270,'_yoast_wpseo_estimated-reading-time-minutes','1'),(162503,40578,'hide_hero','0'),(162504,40578,'_hide_hero','field_66a2380fcda39'),(162505,40578,'hero_title','Building Your Fitness Business'),(162506,40578,'_hero_title','field_617571fe285e8'),(162507,40578,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(162508,40578,'_hero_text','field_6175723c285e9'),(162509,40578,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(162510,40578,'_hero_actions_0_button','field_61757281285eb'),(162511,40578,'hero_actions','1'),(162512,40578,'_hero_actions','field_61757270285ea'),(162513,40578,'hero_style','default'),(162514,40578,'_hero_style','field_62051d9dc5324'),(162515,40578,'_thumbnail_id','40576'),(162516,40578,'__thumbnail_id','field_617570855ddaf'),(162517,40578,'hero_image_pos_x','right'),(162518,40578,'_hero_image_pos_x','field_62ec3d05390bb'),(162519,40578,'hero_image_pos_y','top'),(162520,40578,'_hero_image_pos_y','field_62ec3d05390bc'),(162521,40578,'hero_image_pos',''),(162522,40578,'_hero_image_pos','field_62ec3d05390ba'),(162523,40578,'fft_hide_from_listings','0'),(162524,40578,'_fft_hide_from_listings','field_61f1320446ab2'),(162525,40578,'fft_page_format','default'),(162526,40578,'_fft_page_format','field_61ae213f1f218'),(162527,40578,'fft_hide_nav','0'),(162528,40578,'_fft_hide_nav','field_635bd5e43527c'),(162529,40578,'fft_hide_header_call_to_action','0'),(162530,40578,'_fft_hide_header_call_to_action','field_635bd6723527d'),(162531,40578,'fft_page_sitemap','0'),(162532,40578,'_fft_page_sitemap','field_61af9b34e8181'),(162533,40578,'blocks_0_acfe_flexible_toggle',''),(162534,40578,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(162535,40578,'blocks_0_acfe_flexible_layout_title','Template'),(162536,40578,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(162537,40578,'blocks_0_template','39087'),(162538,40578,'_blocks_0_template','field_617bdd570fe01'),(162539,40578,'blocks_1_acfe_flexible_toggle',''),(162540,40578,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(162541,40578,'blocks_1_acfe_flexible_layout_title','Text Block'),(162542,40578,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(162543,40578,'blocks_1_options_theme','#ffffff'),(162544,40578,'_blocks_1_options_theme','field_6176830e2ad17'),(162545,40578,'blocks_1_options',''),(162546,40578,'_blocks_1_options','field_6176830e2ad16'),(162547,40578,'blocks_1_text_block_heading','Benefits of training with us'),(162548,40578,'_blocks_1_text_block_heading','field_617669d413097'),(162549,40578,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(162550,40578,'_blocks_1_text_block_content','field_617669ec13098'),(162551,40578,'blocks_2_acfe_flexible_toggle',''),(162552,40578,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(162553,40578,'blocks_2_acfe_flexible_layout_title','Logos'),(162554,40578,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(162555,40578,'blocks_2_options_theme','#ffffff'),(162556,40578,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(162557,40578,'blocks_2_options_format','grid'),(162558,40578,'_blocks_2_options_format','field_61782964ee971'),(162559,40578,'blocks_2_options',''),(162560,40578,'_blocks_2_options','field_61782954ee965'),(162561,40578,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(162562,40578,'_blocks_2_logos','field_61782954ee96d'),(162563,40578,'blocks_2_title',''),(162564,40578,'_blocks_2_title','field_668fbfdc2daa1'),(162565,40578,'blocks_3_acfe_flexible_toggle',''),(162566,40578,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(162567,40578,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(162568,40578,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(162569,40578,'blocks_3_options_theme','#f5f5f5'),(162570,40578,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(162571,40578,'blocks_3_options_reverse','0'),(162572,40578,'_blocks_3_options_reverse','field_61768049bb8ac'),(162573,40578,'blocks_3_options',''),(162574,40578,'_blocks_3_options','field_617682517c334'),(162575,40578,'blocks_3_split_5050_image','40577'),(162576,40578,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(162577,40578,'blocks_3_split_5050_video',''),(162578,40578,'_blocks_3_split_5050_video','field_6239f3160848a'),(162579,40578,'blocks_3_split_5050_content_title',''),(162580,40578,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(162581,40578,'blocks_3_split_5050_content_heading','Course Overview'),(162582,40578,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(162583,40578,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(162584,40578,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(162585,40578,'blocks_3_split_5050_content_actions',''),(162586,40578,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(162587,40578,'blocks_3_split_5050_content',''),(162588,40578,'_blocks_3_split_5050_content','field_61767afceb8ba'),(162589,40578,'blocks','a:4:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";}'),(162590,40578,'_blocks','field_6176696113096'),(162591,40578,'course_label_text',''),(162592,40578,'_course_label_text','field_61e17babf71fa'),(162593,40578,'course_label',''),(162594,40578,'_course_label','field_61e12f92749a7'),(162595,40578,'course_description',''),(162596,40578,'_course_description','field_617ac5788e5e1'),(162597,40578,'course_key_info',''),(162598,40578,'_course_key_info','field_617ac6ad8e5e2'),(162599,40578,'course_included',''),(162600,40578,'_course_included','field_617ac6f08e5e4'),(162699,40270,'blocks_4_acfe_flexible_toggle',''),(162700,40270,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(162701,40270,'blocks_4_acfe_flexible_layout_title','Text Block'),(162702,40270,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(162703,40270,'blocks_4_options_theme','#ffffff'),(162704,40270,'_blocks_4_options_theme','field_6176830e2ad17'),(162705,40270,'blocks_4_options',''),(162706,40270,'_blocks_4_options','field_6176830e2ad16'),(162707,40270,'blocks_4_text_block_heading','Learn more about this course'),(162708,40270,'_blocks_4_text_block_heading','field_617669d413097'),(162709,40270,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(162710,40270,'_blocks_4_text_block_content','field_617669ec13098'),(162761,40580,'hide_hero','0'),(162762,40580,'_hide_hero','field_66a2380fcda39'),(162763,40580,'hero_title','Building Your Fitness Business'),(162764,40580,'_hero_title','field_617571fe285e8'),(162765,40580,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(162766,40580,'_hero_text','field_6175723c285e9'),(162767,40580,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(162768,40580,'_hero_actions_0_button','field_61757281285eb'),(162769,40580,'hero_actions','1'),(162770,40580,'_hero_actions','field_61757270285ea'),(162771,40580,'hero_style','default'),(162772,40580,'_hero_style','field_62051d9dc5324'),(162773,40580,'_thumbnail_id','40576'),(162774,40580,'__thumbnail_id','field_617570855ddaf'),(162775,40580,'hero_image_pos_x','right'),(162776,40580,'_hero_image_pos_x','field_62ec3d05390bb'),(162777,40580,'hero_image_pos_y','top'),(162778,40580,'_hero_image_pos_y','field_62ec3d05390bc'),(162779,40580,'hero_image_pos',''),(162780,40580,'_hero_image_pos','field_62ec3d05390ba'),(162781,40580,'fft_hide_from_listings','0'),(162782,40580,'_fft_hide_from_listings','field_61f1320446ab2'),(162783,40580,'fft_page_format','default'),(162784,40580,'_fft_page_format','field_61ae213f1f218'),(162785,40580,'fft_hide_nav','0'),(162786,40580,'_fft_hide_nav','field_635bd5e43527c'),(162787,40580,'fft_hide_header_call_to_action','0'),(162788,40580,'_fft_hide_header_call_to_action','field_635bd6723527d'),(162789,40580,'fft_page_sitemap','0'),(162790,40580,'_fft_page_sitemap','field_61af9b34e8181'),(162791,40580,'blocks_0_acfe_flexible_toggle',''),(162792,40580,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(162793,40580,'blocks_0_acfe_flexible_layout_title','Template'),(162794,40580,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(162795,40580,'blocks_0_template','39087'),(162796,40580,'_blocks_0_template','field_617bdd570fe01'),(162797,40580,'blocks_1_acfe_flexible_toggle',''),(162798,40580,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(162799,40580,'blocks_1_acfe_flexible_layout_title','Text Block'),(162800,40580,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(162801,40580,'blocks_1_options_theme','#ffffff'),(162802,40580,'_blocks_1_options_theme','field_6176830e2ad17'),(162803,40580,'blocks_1_options',''),(162804,40580,'_blocks_1_options','field_6176830e2ad16'),(162805,40580,'blocks_1_text_block_heading','Benefits of training with us'),(162806,40580,'_blocks_1_text_block_heading','field_617669d413097'),(162807,40580,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(162808,40580,'_blocks_1_text_block_content','field_617669ec13098'),(162809,40580,'blocks_2_acfe_flexible_toggle',''),(162810,40580,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(162811,40580,'blocks_2_acfe_flexible_layout_title','Logos'),(162812,40580,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(162813,40580,'blocks_2_options_theme','#ffffff'),(162814,40580,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(162815,40580,'blocks_2_options_format','grid'),(162816,40580,'_blocks_2_options_format','field_61782964ee971'),(162817,40580,'blocks_2_options',''),(162818,40580,'_blocks_2_options','field_61782954ee965'),(162819,40580,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(162820,40580,'_blocks_2_logos','field_61782954ee96d'),(162821,40580,'blocks_2_title',''),(162822,40580,'_blocks_2_title','field_668fbfdc2daa1'),(162823,40580,'blocks_3_acfe_flexible_toggle',''),(162824,40580,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(162825,40580,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(162826,40580,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(162827,40580,'blocks_3_options_theme','#f5f5f5'),(162828,40580,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(162829,40580,'blocks_3_options_reverse','0'),(162830,40580,'_blocks_3_options_reverse','field_61768049bb8ac'),(162831,40580,'blocks_3_options',''),(162832,40580,'_blocks_3_options','field_617682517c334'),(162833,40580,'blocks_3_split_5050_image','40577'),(162834,40580,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(162835,40580,'blocks_3_split_5050_video',''),(162836,40580,'_blocks_3_split_5050_video','field_6239f3160848a'),(162837,40580,'blocks_3_split_5050_content_title',''),(162838,40580,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(162839,40580,'blocks_3_split_5050_content_heading','Course Overview'),(162840,40580,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(162841,40580,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(162842,40580,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(162843,40580,'blocks_3_split_5050_content_actions',''),(162844,40580,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(162845,40580,'blocks_3_split_5050_content',''),(162846,40580,'_blocks_3_split_5050_content','field_61767afceb8ba'),(162847,40580,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";}'),(162848,40580,'_blocks','field_6176696113096'),(162849,40580,'course_label_text',''),(162850,40580,'_course_label_text','field_61e17babf71fa'),(162851,40580,'course_label',''),(162852,40580,'_course_label','field_61e12f92749a7'),(162853,40580,'course_description',''),(162854,40580,'_course_description','field_617ac5788e5e1'),(162855,40580,'course_key_info',''),(162856,40580,'_course_key_info','field_617ac6ad8e5e2'),(162857,40580,'course_included',''),(162858,40580,'_course_included','field_617ac6f08e5e4'),(162859,40580,'blocks_4_acfe_flexible_toggle',''),(162860,40580,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(162861,40580,'blocks_4_acfe_flexible_layout_title','Text Block'),(162862,40580,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(162863,40580,'blocks_4_options_theme','#ffffff'),(162864,40580,'_blocks_4_options_theme','field_6176830e2ad17'),(162865,40580,'blocks_4_options',''),(162866,40580,'_blocks_4_options','field_6176830e2ad16'),(162867,40580,'blocks_4_text_block_heading','Learn more about this course'),(162868,40580,'_blocks_4_text_block_heading','field_617669d413097'),(162869,40580,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(162870,40580,'_blocks_4_text_block_content','field_617669ec13098'),(162871,40580,'blocks_5_acfe_flexible_toggle',''),(162872,40580,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(162873,40580,'blocks_5_acfe_flexible_layout_title','Cards'),(162874,40580,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(162875,40580,'blocks_5_options_theme','#ffffff'),(162876,40580,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(162877,40580,'blocks_5_options_format','carousel'),(162878,40580,'_blocks_5_options_format','field_617a7b15245b5'),(162879,40580,'blocks_5_options_style','default'),(162880,40580,'_blocks_5_options_style','field_6278ffb63484a'),(162881,40580,'blocks_5_options_cards_current_listing','0'),(162882,40580,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(162883,40580,'blocks_5_options_cards_content','custom'),(162884,40580,'_blocks_5_options_cards_content','field_617aba6122688'),(162885,40580,'blocks_5_options',''),(162886,40580,'_blocks_5_options','field_617a7b15245b3'),(162887,40580,'blocks_5_cards_custom_0_image',''),(162888,40580,'_blocks_5_cards_custom_0_image','field_6194cc284d387'),(162889,40580,'blocks_5_cards_custom_0_title','What’s included'),(162890,40580,'_blocks_5_cards_custom_0_title','field_6194cc454d388'),(162891,40580,'blocks_5_cards_custom_0_text','What\'s Included in the Building your Fitness Business Course '),(162892,40580,'_blocks_5_cards_custom_0_text','field_6194cc4a4d389'),(162893,40580,'blocks_5_cards_custom_0_link',''),(162894,40580,'_blocks_5_cards_custom_0_link','field_6194cc534d38a'),(162895,40580,'blocks_5_cards_custom_1_image',''),(162896,40580,'_blocks_5_cards_custom_1_image','field_6194cc284d387'),(162897,40580,'blocks_5_cards_custom_1_title','E-learning '),(162898,40580,'_blocks_5_cards_custom_1_title','field_6194cc454d388'),(162899,40580,'blocks_5_cards_custom_1_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab). '),(162900,40580,'_blocks_5_cards_custom_1_text','field_6194cc4a4d389'),(162901,40580,'blocks_5_cards_custom_1_link',''),(162902,40580,'_blocks_5_cards_custom_1_link','field_6194cc534d38a'),(162903,40580,'blocks_5_cards_custom_2_image',''),(162904,40580,'_blocks_5_cards_custom_2_image','field_6194cc284d387'),(162905,40580,'blocks_5_cards_custom_2_title','Content '),(162906,40580,'_blocks_5_cards_custom_2_title','field_6194cc454d388'),(162907,40580,'blocks_5_cards_custom_2_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management. '),(162908,40580,'_blocks_5_cards_custom_2_text','field_6194cc4a4d389'),(162909,40580,'blocks_5_cards_custom_2_link',''),(162910,40580,'_blocks_5_cards_custom_2_link','field_6194cc534d38a'),(162911,40580,'blocks_5_cards_custom_3_image',''),(162912,40580,'_blocks_5_cards_custom_3_image','field_6194cc284d387'),(162913,40580,'blocks_5_cards_custom_3_title','Assessment '),(162914,40580,'_blocks_5_cards_custom_3_title','field_6194cc454d388'),(162915,40580,'blocks_5_cards_custom_3_text','There is no assessment for this course. '),(162916,40580,'_blocks_5_cards_custom_3_text','field_6194cc4a4d389'),(162917,40580,'blocks_5_cards_custom_3_link',''),(162918,40580,'_blocks_5_cards_custom_3_link','field_6194cc534d38a'),(162919,40580,'blocks_5_cards_custom','4'),(162920,40580,'_blocks_5_cards_custom','field_6194cbf84d386'),(162969,40581,'hide_hero','0'),(162970,40581,'_hide_hero','field_66a2380fcda39'),(162971,40581,'hero_title','Building Your Fitness Business'),(162972,40581,'_hero_title','field_617571fe285e8'),(162973,40581,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(162974,40581,'_hero_text','field_6175723c285e9'),(162975,40581,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(162976,40581,'_hero_actions_0_button','field_61757281285eb'),(162977,40581,'hero_actions','1'),(162978,40581,'_hero_actions','field_61757270285ea'),(162979,40581,'hero_style','default'),(162980,40581,'_hero_style','field_62051d9dc5324'),(162981,40581,'_thumbnail_id','40576'),(162982,40581,'__thumbnail_id','field_617570855ddaf'),(162983,40581,'hero_image_pos_x','right'),(162984,40581,'_hero_image_pos_x','field_62ec3d05390bb'),(162985,40581,'hero_image_pos_y','top'),(162986,40581,'_hero_image_pos_y','field_62ec3d05390bc'),(162987,40581,'hero_image_pos',''),(162988,40581,'_hero_image_pos','field_62ec3d05390ba'),(162989,40581,'fft_hide_from_listings','0'),(162990,40581,'_fft_hide_from_listings','field_61f1320446ab2'),(162991,40581,'fft_page_format','default'),(162992,40581,'_fft_page_format','field_61ae213f1f218'),(162993,40581,'fft_hide_nav','0'),(162994,40581,'_fft_hide_nav','field_635bd5e43527c'),(162995,40581,'fft_hide_header_call_to_action','0'),(162996,40581,'_fft_hide_header_call_to_action','field_635bd6723527d'),(162997,40581,'fft_page_sitemap','0'),(162998,40581,'_fft_page_sitemap','field_61af9b34e8181'),(162999,40581,'blocks_0_acfe_flexible_toggle',''),(163000,40581,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(163001,40581,'blocks_0_acfe_flexible_layout_title','Template'),(163002,40581,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(163003,40581,'blocks_0_template','39087'),(163004,40581,'_blocks_0_template','field_617bdd570fe01'),(163005,40581,'blocks_1_acfe_flexible_toggle',''),(163006,40581,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(163007,40581,'blocks_1_acfe_flexible_layout_title','Text Block'),(163008,40581,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(163009,40581,'blocks_1_options_theme','#ffffff'),(163010,40581,'_blocks_1_options_theme','field_6176830e2ad17'),(163011,40581,'blocks_1_options',''),(163012,40581,'_blocks_1_options','field_6176830e2ad16'),(163013,40581,'blocks_1_text_block_heading','Benefits of training with us'),(163014,40581,'_blocks_1_text_block_heading','field_617669d413097'),(163015,40581,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(163016,40581,'_blocks_1_text_block_content','field_617669ec13098'),(163017,40581,'blocks_2_acfe_flexible_toggle',''),(163018,40581,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(163019,40581,'blocks_2_acfe_flexible_layout_title','Logos'),(163020,40581,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(163021,40581,'blocks_2_options_theme','#ffffff'),(163022,40581,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(163023,40581,'blocks_2_options_format','grid'),(163024,40581,'_blocks_2_options_format','field_61782964ee971'),(163025,40581,'blocks_2_options',''),(163026,40581,'_blocks_2_options','field_61782954ee965'),(163027,40581,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(163028,40581,'_blocks_2_logos','field_61782954ee96d'),(163029,40581,'blocks_2_title',''),(163030,40581,'_blocks_2_title','field_668fbfdc2daa1'),(163031,40581,'blocks_3_acfe_flexible_toggle',''),(163032,40581,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(163033,40581,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(163034,40581,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(163035,40581,'blocks_3_options_theme','#f5f5f5'),(163036,40581,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(163037,40581,'blocks_3_options_reverse','0'),(163038,40581,'_blocks_3_options_reverse','field_61768049bb8ac'),(163039,40581,'blocks_3_options',''),(163040,40581,'_blocks_3_options','field_617682517c334'),(163041,40581,'blocks_3_split_5050_image','40577'),(163042,40581,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(163043,40581,'blocks_3_split_5050_video',''),(163044,40581,'_blocks_3_split_5050_video','field_6239f3160848a'),(163045,40581,'blocks_3_split_5050_content_title',''),(163046,40581,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(163047,40581,'blocks_3_split_5050_content_heading','Course Overview'),(163048,40581,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(163049,40581,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(163050,40581,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(163051,40581,'blocks_3_split_5050_content_actions',''),(163052,40581,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(163053,40581,'blocks_3_split_5050_content',''),(163054,40581,'_blocks_3_split_5050_content','field_61767afceb8ba'),(163055,40581,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:13:\"step_timeline\";}'),(163056,40581,'_blocks','field_6176696113096'),(163057,40581,'course_label_text',''),(163058,40581,'_course_label_text','field_61e17babf71fa'),(163059,40581,'course_label',''),(163060,40581,'_course_label','field_61e12f92749a7'),(163061,40581,'course_description',''),(163062,40581,'_course_description','field_617ac5788e5e1'),(163063,40581,'course_key_info',''),(163064,40581,'_course_key_info','field_617ac6ad8e5e2'),(163065,40581,'course_included',''),(163066,40581,'_course_included','field_617ac6f08e5e4'),(163067,40581,'blocks_4_acfe_flexible_toggle',''),(163068,40581,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(163069,40581,'blocks_4_acfe_flexible_layout_title','Text Block'),(163070,40581,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(163071,40581,'blocks_4_options_theme','#ffffff'),(163072,40581,'_blocks_4_options_theme','field_6176830e2ad17'),(163073,40581,'blocks_4_options',''),(163074,40581,'_blocks_4_options','field_6176830e2ad16'),(163075,40581,'blocks_4_text_block_heading','Learn more about this course'),(163076,40581,'_blocks_4_text_block_heading','field_617669d413097'),(163077,40581,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(163078,40581,'_blocks_4_text_block_content','field_617669ec13098'),(163079,40581,'blocks_5_acfe_flexible_toggle',''),(163080,40581,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(163081,40581,'blocks_5_acfe_flexible_layout_title','Cards'),(163082,40581,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(163083,40581,'blocks_5_options_theme','#ffffff'),(163084,40581,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(163085,40581,'blocks_5_options_format','carousel'),(163086,40581,'_blocks_5_options_format','field_617a7b15245b5'),(163087,40581,'blocks_5_options_style','default'),(163088,40581,'_blocks_5_options_style','field_6278ffb63484a'),(163089,40581,'blocks_5_options_cards_current_listing','0'),(163090,40581,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(163091,40581,'blocks_5_options_cards_content','custom'),(163092,40581,'_blocks_5_options_cards_content','field_617aba6122688'),(163093,40581,'blocks_5_options',''),(163094,40581,'_blocks_5_options','field_617a7b15245b3'),(163095,40581,'blocks_5_cards_custom_0_image',''),(163096,40581,'_blocks_5_cards_custom_0_image','field_6194cc284d387'),(163097,40581,'blocks_5_cards_custom_0_title','What’s included'),(163098,40581,'_blocks_5_cards_custom_0_title','field_6194cc454d388'),(163099,40581,'blocks_5_cards_custom_0_text','What\'s Included in the Building your Fitness Business Course '),(163100,40581,'_blocks_5_cards_custom_0_text','field_6194cc4a4d389'),(163101,40581,'blocks_5_cards_custom_0_link',''),(163102,40581,'_blocks_5_cards_custom_0_link','field_6194cc534d38a'),(163103,40581,'blocks_5_cards_custom_1_image',''),(163104,40581,'_blocks_5_cards_custom_1_image','field_6194cc284d387'),(163105,40581,'blocks_5_cards_custom_1_title','E-learning '),(163106,40581,'_blocks_5_cards_custom_1_title','field_6194cc454d388'),(163107,40581,'blocks_5_cards_custom_1_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab). '),(163108,40581,'_blocks_5_cards_custom_1_text','field_6194cc4a4d389'),(163109,40581,'blocks_5_cards_custom_1_link',''),(163110,40581,'_blocks_5_cards_custom_1_link','field_6194cc534d38a'),(163111,40581,'blocks_5_cards_custom_2_image',''),(163112,40581,'_blocks_5_cards_custom_2_image','field_6194cc284d387'),(163113,40581,'blocks_5_cards_custom_2_title','Content '),(163114,40581,'_blocks_5_cards_custom_2_title','field_6194cc454d388'),(163115,40581,'blocks_5_cards_custom_2_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management. '),(163116,40581,'_blocks_5_cards_custom_2_text','field_6194cc4a4d389'),(163117,40581,'blocks_5_cards_custom_2_link',''),(163118,40581,'_blocks_5_cards_custom_2_link','field_6194cc534d38a'),(163119,40581,'blocks_5_cards_custom_3_image',''),(163120,40581,'_blocks_5_cards_custom_3_image','field_6194cc284d387'),(163121,40581,'blocks_5_cards_custom_3_title','Assessment '),(163122,40581,'_blocks_5_cards_custom_3_title','field_6194cc454d388'),(163123,40581,'blocks_5_cards_custom_3_text','There is no assessment for this course. '),(163124,40581,'_blocks_5_cards_custom_3_text','field_6194cc4a4d389'),(163125,40581,'blocks_5_cards_custom_3_link',''),(163126,40581,'_blocks_5_cards_custom_3_link','field_6194cc534d38a'),(163127,40581,'blocks_5_cards_custom','4'),(163128,40581,'_blocks_5_cards_custom','field_6194cbf84d386'),(163129,40581,'blocks_6_acfe_flexible_toggle',''),(163130,40581,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(163131,40581,'blocks_6_acfe_flexible_layout_title','Timeline'),(163132,40581,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(163133,40581,'blocks_6_options_theme','#ffffff'),(163134,40581,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(163135,40581,'blocks_6_options',''),(163136,40581,'_blocks_6_options','field_6177de53d1195'),(163137,40581,'blocks_6_timeline_content_title',''),(163138,40581,'_blocks_6_timeline_content_title','field_6177de53d1198'),(163139,40581,'blocks_6_timeline_content_heading','Course details'),(163140,40581,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(163141,40581,'blocks_6_timeline_content_text',''),(163142,40581,'_blocks_6_timeline_content_text','field_6177de53d119a'),(163143,40581,'blocks_6_timeline_content_actions',''),(163144,40581,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(163145,40581,'blocks_6_timeline_content',''),(163146,40581,'_blocks_6_timeline_content','field_6177de53d1197'),(163147,40581,'blocks_6_timeline_items_0_title','First Steps '),(163148,40581,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(163149,40581,'blocks_6_timeline_items_0_text','This first section is all about defining the types of people you want to work with – your ideal client. Doing this provides the context for all the other decisions you make as part of your business. '),(163150,40581,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(163151,40581,'blocks_6_timeline_items_1_title','Business Set Up '),(163152,40581,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(163153,40581,'blocks_6_timeline_items_1_text','This section covers the administrative side of your business, including the legal structure, financial management and GDPR. '),(163154,40581,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(163155,40581,'blocks_6_timeline_items_2_title','Business Planning '),(163156,40581,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(163157,40581,'blocks_6_timeline_items_2_text','In this section, we look at how to do a SWOT and PEST analysis, as well as market research to provide the information you need to plan your business and for product development. '),(163158,40581,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(163159,40581,'blocks_6_timeline_items_3_title','Product Development '),(163160,40581,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(163161,40581,'blocks_6_timeline_items_3_text','One of the most critical stages in the process is product development. Personal training is not a tangible ‘thing’ like cars, shoes or food, so in this section, you’ll learn how to put together packages and services that clients understand and are attracted to. '),(163162,40581,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(163163,40581,'blocks_6_timeline_items_4_title','Marketing '),(163164,40581,'_blocks_6_timeline_items_4_title','field_6177de53d119f'),(163165,40581,'blocks_6_timeline_items_4_text','In this section, you’ll learn about the marketing funnel, as well as offline and online marketing approaches, with specific techniques you can use immediately '),(163166,40581,'_blocks_6_timeline_items_4_text','field_6177de53d11a0'),(163167,40581,'blocks_6_timeline_items_5_title','Sales '),(163168,40581,'_blocks_6_timeline_items_5_title','field_6177de53d119f'),(163169,40581,'blocks_6_timeline_items_5_text','Sales skills are crucial to success as a personal trainer. This section covers the ‘principles of persuasion’ as well as strategies to handle common objections from potential clients. '),(163170,40581,'_blocks_6_timeline_items_5_text','field_6177de53d11a0'),(163171,40581,'blocks_6_timeline_items_6_title','Running Your Business '),(163172,40581,'_blocks_6_timeline_items_6_title','field_6177de53d119f'),(163173,40581,'blocks_6_timeline_items_6_text','As your client base expands you need to develop systems and processes to enable things to run smoothly and for your business to grow in a sustainable way. This final section provides the resources to help you do that.  '),(163174,40581,'_blocks_6_timeline_items_6_text','field_6177de53d11a0'),(163175,40581,'blocks_6_timeline_items','7'),(163176,40581,'_blocks_6_timeline_items','field_6177de53d119d'),(163277,40582,'hide_hero','0'),(163278,40582,'_hide_hero','field_66a2380fcda39'),(163279,40582,'hero_title','Building Your Fitness Business'),(163280,40582,'_hero_title','field_617571fe285e8'),(163281,40582,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(163282,40582,'_hero_text','field_6175723c285e9'),(163283,40582,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(163284,40582,'_hero_actions_0_button','field_61757281285eb'),(163285,40582,'hero_actions','1'),(163286,40582,'_hero_actions','field_61757270285ea'),(163287,40582,'hero_style','default'),(163288,40582,'_hero_style','field_62051d9dc5324'),(163289,40582,'_thumbnail_id','40576'),(163290,40582,'__thumbnail_id','field_617570855ddaf'),(163291,40582,'hero_image_pos_x','right'),(163292,40582,'_hero_image_pos_x','field_62ec3d05390bb'),(163293,40582,'hero_image_pos_y','top'),(163294,40582,'_hero_image_pos_y','field_62ec3d05390bc'),(163295,40582,'hero_image_pos',''),(163296,40582,'_hero_image_pos','field_62ec3d05390ba'),(163297,40582,'fft_hide_from_listings','0'),(163298,40582,'_fft_hide_from_listings','field_61f1320446ab2'),(163299,40582,'fft_page_format','default'),(163300,40582,'_fft_page_format','field_61ae213f1f218'),(163301,40582,'fft_hide_nav','0'),(163302,40582,'_fft_hide_nav','field_635bd5e43527c'),(163303,40582,'fft_hide_header_call_to_action','0'),(163304,40582,'_fft_hide_header_call_to_action','field_635bd6723527d'),(163305,40582,'fft_page_sitemap','0'),(163306,40582,'_fft_page_sitemap','field_61af9b34e8181'),(163307,40582,'blocks_0_acfe_flexible_toggle',''),(163308,40582,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(163309,40582,'blocks_0_acfe_flexible_layout_title','Template'),(163310,40582,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(163311,40582,'blocks_0_template','39087'),(163312,40582,'_blocks_0_template','field_617bdd570fe01'),(163313,40582,'blocks_1_acfe_flexible_toggle',''),(163314,40582,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(163315,40582,'blocks_1_acfe_flexible_layout_title','Text Block'),(163316,40582,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(163317,40582,'blocks_1_options_theme','#ffffff'),(163318,40582,'_blocks_1_options_theme','field_6176830e2ad17'),(163319,40582,'blocks_1_options',''),(163320,40582,'_blocks_1_options','field_6176830e2ad16'),(163321,40582,'blocks_1_text_block_heading','Benefits of training with us'),(163322,40582,'_blocks_1_text_block_heading','field_617669d413097'),(163323,40582,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(163324,40582,'_blocks_1_text_block_content','field_617669ec13098'),(163325,40582,'blocks_2_acfe_flexible_toggle',''),(163326,40582,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(163327,40582,'blocks_2_acfe_flexible_layout_title','Logos'),(163328,40582,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(163329,40582,'blocks_2_options_theme','#ffffff'),(163330,40582,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(163331,40582,'blocks_2_options_format','grid'),(163332,40582,'_blocks_2_options_format','field_61782964ee971'),(163333,40582,'blocks_2_options',''),(163334,40582,'_blocks_2_options','field_61782954ee965'),(163335,40582,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(163336,40582,'_blocks_2_logos','field_61782954ee96d'),(163337,40582,'blocks_2_title',''),(163338,40582,'_blocks_2_title','field_668fbfdc2daa1'),(163339,40582,'blocks_3_acfe_flexible_toggle',''),(163340,40582,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(163341,40582,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(163342,40582,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(163343,40582,'blocks_3_options_theme','#f5f5f5'),(163344,40582,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(163345,40582,'blocks_3_options_reverse','0'),(163346,40582,'_blocks_3_options_reverse','field_61768049bb8ac'),(163347,40582,'blocks_3_options',''),(163348,40582,'_blocks_3_options','field_617682517c334'),(163349,40582,'blocks_3_split_5050_image','40577'),(163350,40582,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(163351,40582,'blocks_3_split_5050_video',''),(163352,40582,'_blocks_3_split_5050_video','field_6239f3160848a'),(163353,40582,'blocks_3_split_5050_content_title',''),(163354,40582,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(163355,40582,'blocks_3_split_5050_content_heading','Course Overview'),(163356,40582,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(163357,40582,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(163358,40582,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(163359,40582,'blocks_3_split_5050_content_actions',''),(163360,40582,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(163361,40582,'blocks_3_split_5050_content',''),(163362,40582,'_blocks_3_split_5050_content','field_61767afceb8ba'),(163363,40582,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:4:\"tabs\";i:7;s:13:\"step_timeline\";}'),(163364,40582,'_blocks','field_6176696113096'),(163365,40582,'course_label_text',''),(163366,40582,'_course_label_text','field_61e17babf71fa'),(163367,40582,'course_label',''),(163368,40582,'_course_label','field_61e12f92749a7'),(163369,40582,'course_description',''),(163370,40582,'_course_description','field_617ac5788e5e1'),(163371,40582,'course_key_info',''),(163372,40582,'_course_key_info','field_617ac6ad8e5e2'),(163373,40582,'course_included',''),(163374,40582,'_course_included','field_617ac6f08e5e4'),(163375,40582,'blocks_4_acfe_flexible_toggle',''),(163376,40582,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(163377,40582,'blocks_4_acfe_flexible_layout_title','Text Block'),(163378,40582,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(163379,40582,'blocks_4_options_theme','#ffffff'),(163380,40582,'_blocks_4_options_theme','field_6176830e2ad17'),(163381,40582,'blocks_4_options',''),(163382,40582,'_blocks_4_options','field_6176830e2ad16'),(163383,40582,'blocks_4_text_block_heading','Learn more about this course'),(163384,40582,'_blocks_4_text_block_heading','field_617669d413097'),(163385,40582,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(163386,40582,'_blocks_4_text_block_content','field_617669ec13098'),(163387,40582,'blocks_5_acfe_flexible_toggle','1'),(163388,40582,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(163389,40582,'blocks_5_acfe_flexible_layout_title','Cards'),(163390,40582,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(163391,40582,'blocks_5_options_theme','#ffffff'),(163392,40582,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(163393,40582,'blocks_5_options_format','carousel'),(163394,40582,'_blocks_5_options_format','field_617a7b15245b5'),(163395,40582,'blocks_5_options_style','default'),(163396,40582,'_blocks_5_options_style','field_6278ffb63484a'),(163397,40582,'blocks_5_options_cards_current_listing','0'),(163398,40582,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(163399,40582,'blocks_5_options_cards_content','custom'),(163400,40582,'_blocks_5_options_cards_content','field_617aba6122688'),(163401,40582,'blocks_5_options',''),(163402,40582,'_blocks_5_options','field_617a7b15245b3'),(163403,40582,'blocks_5_cards_custom_0_image',''),(163404,40582,'_blocks_5_cards_custom_0_image','field_6194cc284d387'),(163405,40582,'blocks_5_cards_custom_0_title','What’s included'),(163406,40582,'_blocks_5_cards_custom_0_title','field_6194cc454d388'),(163407,40582,'blocks_5_cards_custom_0_text','What\'s Included in the Building your Fitness Business Course '),(163408,40582,'_blocks_5_cards_custom_0_text','field_6194cc4a4d389'),(163409,40582,'blocks_5_cards_custom_0_link',''),(163410,40582,'_blocks_5_cards_custom_0_link','field_6194cc534d38a'),(163411,40582,'blocks_5_cards_custom_1_image',''),(163412,40582,'_blocks_5_cards_custom_1_image','field_6194cc284d387'),(163413,40582,'blocks_5_cards_custom_1_title','E-learning '),(163414,40582,'_blocks_5_cards_custom_1_title','field_6194cc454d388'),(163415,40582,'blocks_5_cards_custom_1_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab). '),(163416,40582,'_blocks_5_cards_custom_1_text','field_6194cc4a4d389'),(163417,40582,'blocks_5_cards_custom_1_link',''),(163418,40582,'_blocks_5_cards_custom_1_link','field_6194cc534d38a'),(163419,40582,'blocks_5_cards_custom_2_image',''),(163420,40582,'_blocks_5_cards_custom_2_image','field_6194cc284d387'),(163421,40582,'blocks_5_cards_custom_2_title','Content '),(163422,40582,'_blocks_5_cards_custom_2_title','field_6194cc454d388'),(163423,40582,'blocks_5_cards_custom_2_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management. '),(163424,40582,'_blocks_5_cards_custom_2_text','field_6194cc4a4d389'),(163425,40582,'blocks_5_cards_custom_2_link',''),(163426,40582,'_blocks_5_cards_custom_2_link','field_6194cc534d38a'),(163427,40582,'blocks_5_cards_custom_3_image',''),(163428,40582,'_blocks_5_cards_custom_3_image','field_6194cc284d387'),(163429,40582,'blocks_5_cards_custom_3_title','Assessment '),(163430,40582,'_blocks_5_cards_custom_3_title','field_6194cc454d388'),(163431,40582,'blocks_5_cards_custom_3_text','There is no assessment for this course. '),(163432,40582,'_blocks_5_cards_custom_3_text','field_6194cc4a4d389'),(163433,40582,'blocks_5_cards_custom_3_link',''),(163434,40582,'_blocks_5_cards_custom_3_link','field_6194cc534d38a'),(163435,40582,'blocks_5_cards_custom','4'),(163436,40582,'_blocks_5_cards_custom','field_6194cbf84d386'),(163437,40582,'blocks_6_acfe_flexible_toggle',''),(163438,40582,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(163439,40582,'blocks_6_acfe_flexible_layout_title','Tabs'),(163440,40582,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(163441,40582,'blocks_6_options_theme','#ffffff'),(163442,40582,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(163443,40582,'blocks_6_options',''),(163444,40582,'_blocks_6_options','field_6177cfcd8140f'),(163445,40582,'blocks_6_tabs_0_tab_label','E-learning '),(163446,40582,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(163447,40582,'blocks_6_tabs_0_tab_content_title',''),(163448,40582,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(163449,40582,'blocks_6_tabs_0_tab_content_heading',''),(163450,40582,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(163451,40582,'blocks_6_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(163452,40582,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(163453,40582,'blocks_6_tabs_0_tab_content_actions',''),(163454,40582,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(163455,40582,'blocks_6_tabs_0_tab_content',''),(163456,40582,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(163457,40582,'blocks_6_tabs_0_tab_image',''),(163458,40582,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(163459,40582,'blocks_6_tabs_1_tab_label','Content '),(163460,40582,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(163461,40582,'blocks_6_tabs_1_tab_content_title',''),(163462,40582,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(163463,40582,'blocks_6_tabs_1_tab_content_heading',''),(163464,40582,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(163465,40582,'blocks_6_tabs_1_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(163466,40582,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(163467,40582,'blocks_6_tabs_1_tab_content_actions',''),(163468,40582,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(163469,40582,'blocks_6_tabs_1_tab_content',''),(163470,40582,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(163471,40582,'blocks_6_tabs_1_tab_image',''),(163472,40582,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(163473,40582,'blocks_6_tabs_2_tab_label','Assessment '),(163474,40582,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(163475,40582,'blocks_6_tabs_2_tab_content_title',''),(163476,40582,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(163477,40582,'blocks_6_tabs_2_tab_content_heading',''),(163478,40582,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(163479,40582,'blocks_6_tabs_2_tab_content_text','There is no assessment for this course.'),(163480,40582,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(163481,40582,'blocks_6_tabs_2_tab_content_actions',''),(163482,40582,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(163483,40582,'blocks_6_tabs_2_tab_content',''),(163484,40582,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(163485,40582,'blocks_6_tabs_2_tab_image',''),(163486,40582,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(163487,40582,'blocks_6_tabs','3'),(163488,40582,'_blocks_6_tabs','field_6177cff281419'),(163489,40582,'blocks_7_acfe_flexible_toggle',''),(163490,40582,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(163491,40582,'blocks_7_acfe_flexible_layout_title','Timeline'),(163492,40582,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(163493,40582,'blocks_7_options_theme','#ffffff'),(163494,40582,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(163495,40582,'blocks_7_options',''),(163496,40582,'_blocks_7_options','field_6177de53d1195'),(163497,40582,'blocks_7_timeline_content_title',''),(163498,40582,'_blocks_7_timeline_content_title','field_6177de53d1198'),(163499,40582,'blocks_7_timeline_content_heading','Course details'),(163500,40582,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(163501,40582,'blocks_7_timeline_content_text',''),(163502,40582,'_blocks_7_timeline_content_text','field_6177de53d119a'),(163503,40582,'blocks_7_timeline_content_actions',''),(163504,40582,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(163505,40582,'blocks_7_timeline_content',''),(163506,40582,'_blocks_7_timeline_content','field_6177de53d1197'),(163507,40582,'blocks_7_timeline_items_0_title','First Steps '),(163508,40582,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(163509,40582,'blocks_7_timeline_items_0_text','This first section is all about defining the types of people you want to work with – your ideal client. Doing this provides the context for all the other decisions you make as part of your business. '),(163510,40582,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(163511,40582,'blocks_7_timeline_items_1_title','Business Set Up '),(163512,40582,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(163513,40582,'blocks_7_timeline_items_1_text','This section covers the administrative side of your business, including the legal structure, financial management and GDPR. '),(163514,40582,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(163515,40582,'blocks_7_timeline_items_2_title','Business Planning '),(163516,40582,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(163517,40582,'blocks_7_timeline_items_2_text','In this section, we look at how to do a SWOT and PEST analysis, as well as market research to provide the information you need to plan your business and for product development. '),(163518,40582,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(163519,40582,'blocks_7_timeline_items_3_title','Product Development '),(163520,40582,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(163521,40582,'blocks_7_timeline_items_3_text','One of the most critical stages in the process is product development. Personal training is not a tangible ‘thing’ like cars, shoes or food, so in this section, you’ll learn how to put together packages and services that clients understand and are attracted to. '),(163522,40582,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(163523,40582,'blocks_7_timeline_items_4_title','Marketing '),(163524,40582,'_blocks_7_timeline_items_4_title','field_6177de53d119f'),(163525,40582,'blocks_7_timeline_items_4_text','In this section, you’ll learn about the marketing funnel, as well as offline and online marketing approaches, with specific techniques you can use immediately '),(163526,40582,'_blocks_7_timeline_items_4_text','field_6177de53d11a0'),(163527,40582,'blocks_7_timeline_items_5_title','Sales '),(163528,40582,'_blocks_7_timeline_items_5_title','field_6177de53d119f'),(163529,40582,'blocks_7_timeline_items_5_text','Sales skills are crucial to success as a personal trainer. This section covers the ‘principles of persuasion’ as well as strategies to handle common objections from potential clients. '),(163530,40582,'_blocks_7_timeline_items_5_text','field_6177de53d11a0'),(163531,40582,'blocks_7_timeline_items_6_title','Running Your Business '),(163532,40582,'_blocks_7_timeline_items_6_title','field_6177de53d119f'),(163533,40582,'blocks_7_timeline_items_6_text','As your client base expands you need to develop systems and processes to enable things to run smoothly and for your business to grow in a sustainable way. This final section provides the resources to help you do that.  '),(163534,40582,'_blocks_7_timeline_items_6_text','field_6177de53d11a0'),(163535,40582,'blocks_7_timeline_items','7'),(163536,40582,'_blocks_7_timeline_items','field_6177de53d119d'),(163537,40270,'blocks_5_acfe_flexible_toggle',''),(163538,40270,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(163539,40270,'blocks_5_acfe_flexible_layout_title','Tabs'),(163540,40270,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(163541,40270,'blocks_5_options_theme','#ffffff'),(163542,40270,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(163543,40270,'blocks_5_options',''),(163544,40270,'_blocks_5_options','field_6177cfcd8140f'),(163545,40270,'blocks_5_tabs_0_tab_label','E-learning '),(163546,40270,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(163547,40270,'blocks_5_tabs_0_tab_content_title',''),(163548,40270,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(163549,40270,'blocks_5_tabs_0_tab_content_heading',''),(163550,40270,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(163551,40270,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(163552,40270,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(163553,40270,'blocks_5_tabs_0_tab_content_actions','1'),(163554,40270,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(163555,40270,'blocks_5_tabs_0_tab_content',''),(163556,40270,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(163557,40270,'blocks_5_tabs_0_tab_image',''),(163558,40270,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(163559,40270,'blocks_5_tabs_1_tab_label','Content '),(163560,40270,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(163561,40270,'blocks_5_tabs_1_tab_content_title',''),(163562,40270,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(163563,40270,'blocks_5_tabs_1_tab_content_heading',''),(163564,40270,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(163565,40270,'blocks_5_tabs_1_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(163566,40270,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(163567,40270,'blocks_5_tabs_1_tab_content_actions','1'),(163568,40270,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(163569,40270,'blocks_5_tabs_1_tab_content',''),(163570,40270,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(163571,40270,'blocks_5_tabs_1_tab_image',''),(163572,40270,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(163573,40270,'blocks_5_tabs_2_tab_label','Assessment '),(163574,40270,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(163575,40270,'blocks_5_tabs_2_tab_content_title',''),(163576,40270,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(163577,40270,'blocks_5_tabs_2_tab_content_heading',''),(163578,40270,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(163579,40270,'blocks_5_tabs_2_tab_content_text','There is no assessment for this course.'),(163580,40270,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(163581,40270,'blocks_5_tabs_2_tab_content_actions','1'),(163582,40270,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(163583,40270,'blocks_5_tabs_2_tab_content',''),(163584,40270,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(163585,40270,'blocks_5_tabs_2_tab_image',''),(163586,40270,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(163587,40270,'blocks_5_tabs','4'),(163588,40270,'_blocks_5_tabs','field_6177cff281419'),(163589,40270,'blocks_6_acfe_flexible_toggle',''),(163590,40270,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(163591,40270,'blocks_6_acfe_flexible_layout_title','Timeline'),(163592,40270,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(163593,40270,'blocks_6_options_theme','#f5f5f5'),(163594,40270,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(163595,40270,'blocks_6_options',''),(163596,40270,'_blocks_6_options','field_6177de53d1195'),(163597,40270,'blocks_6_timeline_content_title',''),(163598,40270,'_blocks_6_timeline_content_title','field_6177de53d1198'),(163599,40270,'blocks_6_timeline_content_heading','Course details'),(163600,40270,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(163601,40270,'blocks_6_timeline_content_text',''),(163602,40270,'_blocks_6_timeline_content_text','field_6177de53d119a'),(163603,40270,'blocks_6_timeline_content_actions',''),(163604,40270,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(163605,40270,'blocks_6_timeline_content',''),(163606,40270,'_blocks_6_timeline_content','field_6177de53d1197'),(163607,40270,'blocks_6_timeline_items_0_title','First Steps '),(163608,40270,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(163609,40270,'blocks_6_timeline_items_0_text','This first section is all about defining the types of people you want to work with – your ideal client. Doing this provides the context for all the other decisions you make as part of your business. '),(163610,40270,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(163611,40270,'blocks_6_timeline_items_1_title','Business Set Up '),(163612,40270,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(163613,40270,'blocks_6_timeline_items_1_text','This section covers the administrative side of your business, including the legal structure, financial management and GDPR. '),(163614,40270,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(163615,40270,'blocks_6_timeline_items_2_title','Business Planning '),(163616,40270,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(163617,40270,'blocks_6_timeline_items_2_text','In this section, we look at how to do a SWOT and PEST analysis, as well as market research to provide the information you need to plan your business and for product development. '),(163618,40270,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(163619,40270,'blocks_6_timeline_items_3_title','Product Development '),(163620,40270,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(163621,40270,'blocks_6_timeline_items_3_text','One of the most critical stages in the process is product development. Personal training is not a tangible ‘thing’ like cars, shoes or food, so in this section, you’ll learn how to put together packages and services that clients understand and are attracted to. '),(163622,40270,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(163623,40270,'blocks_6_timeline_items_4_title','Marketing '),(163624,40270,'_blocks_6_timeline_items_4_title','field_6177de53d119f'),(163625,40270,'blocks_6_timeline_items_4_text','In this section, you’ll learn about the marketing funnel, as well as offline and online marketing approaches, with specific techniques you can use immediately '),(163626,40270,'_blocks_6_timeline_items_4_text','field_6177de53d11a0'),(163627,40270,'blocks_6_timeline_items_5_title','Sales '),(163628,40270,'_blocks_6_timeline_items_5_title','field_6177de53d119f'),(163629,40270,'blocks_6_timeline_items_5_text','Sales skills are crucial to success as a personal trainer. This section covers the ‘principles of persuasion’ as well as strategies to handle common objections from potential clients. '),(163630,40270,'_blocks_6_timeline_items_5_text','field_6177de53d11a0'),(163631,40270,'blocks_6_timeline_items_6_title','Running Your Business '),(163632,40270,'_blocks_6_timeline_items_6_title','field_6177de53d119f'),(163633,40270,'blocks_6_timeline_items_6_text','As your client base expands you need to develop systems and processes to enable things to run smoothly and for your business to grow in a sustainable way. This final section provides the resources to help you do that.  '),(163634,40270,'_blocks_6_timeline_items_6_text','field_6177de53d11a0'),(163635,40270,'blocks_6_timeline_items','7'),(163636,40270,'_blocks_6_timeline_items','field_6177de53d119d'),(163637,40583,'hide_hero','0'),(163638,40583,'_hide_hero','field_66a2380fcda39'),(163639,40583,'hero_title','Building Your Fitness Business'),(163640,40583,'_hero_title','field_617571fe285e8'),(163641,40583,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(163642,40583,'_hero_text','field_6175723c285e9'),(163643,40583,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(163644,40583,'_hero_actions_0_button','field_61757281285eb'),(163645,40583,'hero_actions','1'),(163646,40583,'_hero_actions','field_61757270285ea'),(163647,40583,'hero_style','default'),(163648,40583,'_hero_style','field_62051d9dc5324'),(163649,40583,'_thumbnail_id','40576'),(163650,40583,'__thumbnail_id','field_617570855ddaf'),(163651,40583,'hero_image_pos_x','right'),(163652,40583,'_hero_image_pos_x','field_62ec3d05390bb'),(163653,40583,'hero_image_pos_y','top'),(163654,40583,'_hero_image_pos_y','field_62ec3d05390bc'),(163655,40583,'hero_image_pos',''),(163656,40583,'_hero_image_pos','field_62ec3d05390ba'),(163657,40583,'fft_hide_from_listings','0'),(163658,40583,'_fft_hide_from_listings','field_61f1320446ab2'),(163659,40583,'fft_page_format','default'),(163660,40583,'_fft_page_format','field_61ae213f1f218'),(163661,40583,'fft_hide_nav','0'),(163662,40583,'_fft_hide_nav','field_635bd5e43527c'),(163663,40583,'fft_hide_header_call_to_action','0'),(163664,40583,'_fft_hide_header_call_to_action','field_635bd6723527d'),(163665,40583,'fft_page_sitemap','0'),(163666,40583,'_fft_page_sitemap','field_61af9b34e8181'),(163667,40583,'blocks_0_acfe_flexible_toggle',''),(163668,40583,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(163669,40583,'blocks_0_acfe_flexible_layout_title','Template'),(163670,40583,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(163671,40583,'blocks_0_template','39087'),(163672,40583,'_blocks_0_template','field_617bdd570fe01'),(163673,40583,'blocks_1_acfe_flexible_toggle',''),(163674,40583,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(163675,40583,'blocks_1_acfe_flexible_layout_title','Text Block'),(163676,40583,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(163677,40583,'blocks_1_options_theme','#ffffff'),(163678,40583,'_blocks_1_options_theme','field_6176830e2ad17'),(163679,40583,'blocks_1_options',''),(163680,40583,'_blocks_1_options','field_6176830e2ad16'),(163681,40583,'blocks_1_text_block_heading','Benefits of training with us'),(163682,40583,'_blocks_1_text_block_heading','field_617669d413097'),(163683,40583,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(163684,40583,'_blocks_1_text_block_content','field_617669ec13098'),(163685,40583,'blocks_2_acfe_flexible_toggle',''),(163686,40583,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(163687,40583,'blocks_2_acfe_flexible_layout_title','Logos'),(163688,40583,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(163689,40583,'blocks_2_options_theme','#ffffff'),(163690,40583,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(163691,40583,'blocks_2_options_format','grid'),(163692,40583,'_blocks_2_options_format','field_61782964ee971'),(163693,40583,'blocks_2_options',''),(163694,40583,'_blocks_2_options','field_61782954ee965'),(163695,40583,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(163696,40583,'_blocks_2_logos','field_61782954ee96d'),(163697,40583,'blocks_2_title',''),(163698,40583,'_blocks_2_title','field_668fbfdc2daa1'),(163699,40583,'blocks_3_acfe_flexible_toggle',''),(163700,40583,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(163701,40583,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(163702,40583,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(163703,40583,'blocks_3_options_theme','#f5f5f5'),(163704,40583,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(163705,40583,'blocks_3_options_reverse','0'),(163706,40583,'_blocks_3_options_reverse','field_61768049bb8ac'),(163707,40583,'blocks_3_options',''),(163708,40583,'_blocks_3_options','field_617682517c334'),(163709,40583,'blocks_3_split_5050_image','40577'),(163710,40583,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(163711,40583,'blocks_3_split_5050_video',''),(163712,40583,'_blocks_3_split_5050_video','field_6239f3160848a'),(163713,40583,'blocks_3_split_5050_content_title',''),(163714,40583,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(163715,40583,'blocks_3_split_5050_content_heading','Course Overview'),(163716,40583,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(163717,40583,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(163718,40583,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(163719,40583,'blocks_3_split_5050_content_actions',''),(163720,40583,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(163721,40583,'blocks_3_split_5050_content',''),(163722,40583,'_blocks_3_split_5050_content','field_61767afceb8ba'),(163723,40583,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:13:\"step_timeline\";}'),(163724,40583,'_blocks','field_6176696113096'),(163725,40583,'course_label_text',''),(163726,40583,'_course_label_text','field_61e17babf71fa'),(163727,40583,'course_label',''),(163728,40583,'_course_label','field_61e12f92749a7'),(163729,40583,'course_description',''),(163730,40583,'_course_description','field_617ac5788e5e1'),(163731,40583,'course_key_info',''),(163732,40583,'_course_key_info','field_617ac6ad8e5e2'),(163733,40583,'course_included',''),(163734,40583,'_course_included','field_617ac6f08e5e4'),(163735,40583,'blocks_4_acfe_flexible_toggle',''),(163736,40583,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(163737,40583,'blocks_4_acfe_flexible_layout_title','Text Block'),(163738,40583,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(163739,40583,'blocks_4_options_theme','#ffffff'),(163740,40583,'_blocks_4_options_theme','field_6176830e2ad17'),(163741,40583,'blocks_4_options',''),(163742,40583,'_blocks_4_options','field_6176830e2ad16'),(163743,40583,'blocks_4_text_block_heading','Learn more about this course'),(163744,40583,'_blocks_4_text_block_heading','field_617669d413097'),(163745,40583,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(163746,40583,'_blocks_4_text_block_content','field_617669ec13098'),(163747,40583,'blocks_5_acfe_flexible_toggle',''),(163748,40583,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(163749,40583,'blocks_5_acfe_flexible_layout_title','Tabs'),(163750,40583,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(163751,40583,'blocks_5_options_theme','#ffffff'),(163752,40583,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(163753,40583,'blocks_5_options',''),(163754,40583,'_blocks_5_options','field_6177cfcd8140f'),(163755,40583,'blocks_5_tabs_0_tab_label','E-learning '),(163756,40583,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(163757,40583,'blocks_5_tabs_0_tab_content_title',''),(163758,40583,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(163759,40583,'blocks_5_tabs_0_tab_content_heading',''),(163760,40583,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(163761,40583,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(163762,40583,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(163763,40583,'blocks_5_tabs_0_tab_content_actions',''),(163764,40583,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(163765,40583,'blocks_5_tabs_0_tab_content',''),(163766,40583,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(163767,40583,'blocks_5_tabs_0_tab_image',''),(163768,40583,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(163769,40583,'blocks_5_tabs_1_tab_label','Content '),(163770,40583,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(163771,40583,'blocks_5_tabs_1_tab_content_title',''),(163772,40583,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(163773,40583,'blocks_5_tabs_1_tab_content_heading',''),(163774,40583,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(163775,40583,'blocks_5_tabs_1_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(163776,40583,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(163777,40583,'blocks_5_tabs_1_tab_content_actions',''),(163778,40583,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(163779,40583,'blocks_5_tabs_1_tab_content',''),(163780,40583,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(163781,40583,'blocks_5_tabs_1_tab_image',''),(163782,40583,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(163783,40583,'blocks_5_tabs_2_tab_label','Assessment '),(163784,40583,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(163785,40583,'blocks_5_tabs_2_tab_content_title',''),(163786,40583,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(163787,40583,'blocks_5_tabs_2_tab_content_heading',''),(163788,40583,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(163789,40583,'blocks_5_tabs_2_tab_content_text','There is no assessment for this course.'),(163790,40583,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(163791,40583,'blocks_5_tabs_2_tab_content_actions',''),(163792,40583,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(163793,40583,'blocks_5_tabs_2_tab_content',''),(163794,40583,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(163795,40583,'blocks_5_tabs_2_tab_image',''),(163796,40583,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(163797,40583,'blocks_5_tabs','3'),(163798,40583,'_blocks_5_tabs','field_6177cff281419'),(163799,40583,'blocks_6_acfe_flexible_toggle',''),(163800,40583,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(163801,40583,'blocks_6_acfe_flexible_layout_title','Timeline'),(163802,40583,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(163803,40583,'blocks_6_options_theme','#b61234'),(163804,40583,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(163805,40583,'blocks_6_options',''),(163806,40583,'_blocks_6_options','field_6177de53d1195'),(163807,40583,'blocks_6_timeline_content_title',''),(163808,40583,'_blocks_6_timeline_content_title','field_6177de53d1198'),(163809,40583,'blocks_6_timeline_content_heading','Course details'),(163810,40583,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(163811,40583,'blocks_6_timeline_content_text',''),(163812,40583,'_blocks_6_timeline_content_text','field_6177de53d119a'),(163813,40583,'blocks_6_timeline_content_actions',''),(163814,40583,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(163815,40583,'blocks_6_timeline_content',''),(163816,40583,'_blocks_6_timeline_content','field_6177de53d1197'),(163817,40583,'blocks_6_timeline_items_0_title','First Steps '),(163818,40583,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(163819,40583,'blocks_6_timeline_items_0_text','This first section is all about defining the types of people you want to work with – your ideal client. Doing this provides the context for all the other decisions you make as part of your business. '),(163820,40583,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(163821,40583,'blocks_6_timeline_items_1_title','Business Set Up '),(163822,40583,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(163823,40583,'blocks_6_timeline_items_1_text','This section covers the administrative side of your business, including the legal structure, financial management and GDPR. '),(163824,40583,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(163825,40583,'blocks_6_timeline_items_2_title','Business Planning '),(163826,40583,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(163827,40583,'blocks_6_timeline_items_2_text','In this section, we look at how to do a SWOT and PEST analysis, as well as market research to provide the information you need to plan your business and for product development. '),(163828,40583,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(163829,40583,'blocks_6_timeline_items_3_title','Product Development '),(163830,40583,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(163831,40583,'blocks_6_timeline_items_3_text','One of the most critical stages in the process is product development. Personal training is not a tangible ‘thing’ like cars, shoes or food, so in this section, you’ll learn how to put together packages and services that clients understand and are attracted to. '),(163832,40583,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(163833,40583,'blocks_6_timeline_items_4_title','Marketing '),(163834,40583,'_blocks_6_timeline_items_4_title','field_6177de53d119f'),(163835,40583,'blocks_6_timeline_items_4_text','In this section, you’ll learn about the marketing funnel, as well as offline and online marketing approaches, with specific techniques you can use immediately '),(163836,40583,'_blocks_6_timeline_items_4_text','field_6177de53d11a0'),(163837,40583,'blocks_6_timeline_items_5_title','Sales '),(163838,40583,'_blocks_6_timeline_items_5_title','field_6177de53d119f'),(163839,40583,'blocks_6_timeline_items_5_text','Sales skills are crucial to success as a personal trainer. This section covers the ‘principles of persuasion’ as well as strategies to handle common objections from potential clients. '),(163840,40583,'_blocks_6_timeline_items_5_text','field_6177de53d11a0'),(163841,40583,'blocks_6_timeline_items_6_title','Running Your Business '),(163842,40583,'_blocks_6_timeline_items_6_title','field_6177de53d119f'),(163843,40583,'blocks_6_timeline_items_6_text','As your client base expands you need to develop systems and processes to enable things to run smoothly and for your business to grow in a sustainable way. This final section provides the resources to help you do that.  '),(163844,40583,'_blocks_6_timeline_items_6_text','field_6177de53d11a0'),(163845,40583,'blocks_6_timeline_items','7'),(163846,40583,'_blocks_6_timeline_items','field_6177de53d119d'),(163847,40584,'hide_hero','0'),(163848,40584,'_hide_hero','field_66a2380fcda39'),(163849,40584,'hero_title','Building Your Fitness Business'),(163850,40584,'_hero_title','field_617571fe285e8'),(163851,40584,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(163852,40584,'_hero_text','field_6175723c285e9'),(163853,40584,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(163854,40584,'_hero_actions_0_button','field_61757281285eb'),(163855,40584,'hero_actions','1'),(163856,40584,'_hero_actions','field_61757270285ea'),(163857,40584,'hero_style','default'),(163858,40584,'_hero_style','field_62051d9dc5324'),(163859,40584,'_thumbnail_id','40576'),(163860,40584,'__thumbnail_id','field_617570855ddaf'),(163861,40584,'hero_image_pos_x','right'),(163862,40584,'_hero_image_pos_x','field_62ec3d05390bb'),(163863,40584,'hero_image_pos_y','top'),(163864,40584,'_hero_image_pos_y','field_62ec3d05390bc'),(163865,40584,'hero_image_pos',''),(163866,40584,'_hero_image_pos','field_62ec3d05390ba'),(163867,40584,'fft_hide_from_listings','0'),(163868,40584,'_fft_hide_from_listings','field_61f1320446ab2'),(163869,40584,'fft_page_format','default'),(163870,40584,'_fft_page_format','field_61ae213f1f218'),(163871,40584,'fft_hide_nav','0'),(163872,40584,'_fft_hide_nav','field_635bd5e43527c'),(163873,40584,'fft_hide_header_call_to_action','0'),(163874,40584,'_fft_hide_header_call_to_action','field_635bd6723527d'),(163875,40584,'fft_page_sitemap','0'),(163876,40584,'_fft_page_sitemap','field_61af9b34e8181'),(163877,40584,'blocks_0_acfe_flexible_toggle',''),(163878,40584,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(163879,40584,'blocks_0_acfe_flexible_layout_title','Template'),(163880,40584,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(163881,40584,'blocks_0_template','39087'),(163882,40584,'_blocks_0_template','field_617bdd570fe01'),(163883,40584,'blocks_1_acfe_flexible_toggle',''),(163884,40584,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(163885,40584,'blocks_1_acfe_flexible_layout_title','Text Block'),(163886,40584,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(163887,40584,'blocks_1_options_theme','#ffffff'),(163888,40584,'_blocks_1_options_theme','field_6176830e2ad17'),(163889,40584,'blocks_1_options',''),(163890,40584,'_blocks_1_options','field_6176830e2ad16'),(163891,40584,'blocks_1_text_block_heading','Benefits of training with us'),(163892,40584,'_blocks_1_text_block_heading','field_617669d413097'),(163893,40584,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(163894,40584,'_blocks_1_text_block_content','field_617669ec13098'),(163895,40584,'blocks_2_acfe_flexible_toggle',''),(163896,40584,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(163897,40584,'blocks_2_acfe_flexible_layout_title','Logos'),(163898,40584,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(163899,40584,'blocks_2_options_theme','#ffffff'),(163900,40584,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(163901,40584,'blocks_2_options_format','grid'),(163902,40584,'_blocks_2_options_format','field_61782964ee971'),(163903,40584,'blocks_2_options',''),(163904,40584,'_blocks_2_options','field_61782954ee965'),(163905,40584,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(163906,40584,'_blocks_2_logos','field_61782954ee96d'),(163907,40584,'blocks_2_title',''),(163908,40584,'_blocks_2_title','field_668fbfdc2daa1'),(163909,40584,'blocks_3_acfe_flexible_toggle',''),(163910,40584,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(163911,40584,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(163912,40584,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(163913,40584,'blocks_3_options_theme','#f5f5f5'),(163914,40584,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(163915,40584,'blocks_3_options_reverse','0'),(163916,40584,'_blocks_3_options_reverse','field_61768049bb8ac'),(163917,40584,'blocks_3_options',''),(163918,40584,'_blocks_3_options','field_617682517c334'),(163919,40584,'blocks_3_split_5050_image','40577'),(163920,40584,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(163921,40584,'blocks_3_split_5050_video',''),(163922,40584,'_blocks_3_split_5050_video','field_6239f3160848a'),(163923,40584,'blocks_3_split_5050_content_title',''),(163924,40584,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(163925,40584,'blocks_3_split_5050_content_heading','Course Overview'),(163926,40584,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(163927,40584,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(163928,40584,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(163929,40584,'blocks_3_split_5050_content_actions',''),(163930,40584,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(163931,40584,'blocks_3_split_5050_content',''),(163932,40584,'_blocks_3_split_5050_content','field_61767afceb8ba'),(163933,40584,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:13:\"step_timeline\";}'),(163934,40584,'_blocks','field_6176696113096'),(163935,40584,'course_label_text',''),(163936,40584,'_course_label_text','field_61e17babf71fa'),(163937,40584,'course_label',''),(163938,40584,'_course_label','field_61e12f92749a7'),(163939,40584,'course_description',''),(163940,40584,'_course_description','field_617ac5788e5e1'),(163941,40584,'course_key_info',''),(163942,40584,'_course_key_info','field_617ac6ad8e5e2'),(163943,40584,'course_included',''),(163944,40584,'_course_included','field_617ac6f08e5e4'),(163945,40584,'blocks_4_acfe_flexible_toggle',''),(163946,40584,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(163947,40584,'blocks_4_acfe_flexible_layout_title','Text Block'),(163948,40584,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(163949,40584,'blocks_4_options_theme','#ffffff'),(163950,40584,'_blocks_4_options_theme','field_6176830e2ad17'),(163951,40584,'blocks_4_options',''),(163952,40584,'_blocks_4_options','field_6176830e2ad16'),(163953,40584,'blocks_4_text_block_heading','Learn more about this course'),(163954,40584,'_blocks_4_text_block_heading','field_617669d413097'),(163955,40584,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(163956,40584,'_blocks_4_text_block_content','field_617669ec13098'),(163957,40584,'blocks_5_acfe_flexible_toggle',''),(163958,40584,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(163959,40584,'blocks_5_acfe_flexible_layout_title','Tabs'),(163960,40584,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(163961,40584,'blocks_5_options_theme','#ffffff'),(163962,40584,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(163963,40584,'blocks_5_options',''),(163964,40584,'_blocks_5_options','field_6177cfcd8140f'),(163965,40584,'blocks_5_tabs_0_tab_label','E-learning '),(163966,40584,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(163967,40584,'blocks_5_tabs_0_tab_content_title',''),(163968,40584,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(163969,40584,'blocks_5_tabs_0_tab_content_heading',''),(163970,40584,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(163971,40584,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(163972,40584,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(163973,40584,'blocks_5_tabs_0_tab_content_actions',''),(163974,40584,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(163975,40584,'blocks_5_tabs_0_tab_content',''),(163976,40584,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(163977,40584,'blocks_5_tabs_0_tab_image',''),(163978,40584,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(163979,40584,'blocks_5_tabs_1_tab_label','Content '),(163980,40584,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(163981,40584,'blocks_5_tabs_1_tab_content_title',''),(163982,40584,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(163983,40584,'blocks_5_tabs_1_tab_content_heading',''),(163984,40584,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(163985,40584,'blocks_5_tabs_1_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(163986,40584,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(163987,40584,'blocks_5_tabs_1_tab_content_actions',''),(163988,40584,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(163989,40584,'blocks_5_tabs_1_tab_content',''),(163990,40584,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(163991,40584,'blocks_5_tabs_1_tab_image',''),(163992,40584,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(163993,40584,'blocks_5_tabs_2_tab_label','Assessment '),(163994,40584,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(163995,40584,'blocks_5_tabs_2_tab_content_title',''),(163996,40584,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(163997,40584,'blocks_5_tabs_2_tab_content_heading',''),(163998,40584,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(163999,40584,'blocks_5_tabs_2_tab_content_text','There is no assessment for this course.'),(164000,40584,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(164001,40584,'blocks_5_tabs_2_tab_content_actions',''),(164002,40584,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(164003,40584,'blocks_5_tabs_2_tab_content',''),(164004,40584,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(164005,40584,'blocks_5_tabs_2_tab_image',''),(164006,40584,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(164007,40584,'blocks_5_tabs','3'),(164008,40584,'_blocks_5_tabs','field_6177cff281419'),(164009,40584,'blocks_6_acfe_flexible_toggle',''),(164010,40584,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(164011,40584,'blocks_6_acfe_flexible_layout_title','Timeline'),(164012,40584,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(164013,40584,'blocks_6_options_theme','#f5f5f5'),(164014,40584,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(164015,40584,'blocks_6_options',''),(164016,40584,'_blocks_6_options','field_6177de53d1195'),(164017,40584,'blocks_6_timeline_content_title',''),(164018,40584,'_blocks_6_timeline_content_title','field_6177de53d1198'),(164019,40584,'blocks_6_timeline_content_heading','Course details'),(164020,40584,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(164021,40584,'blocks_6_timeline_content_text',''),(164022,40584,'_blocks_6_timeline_content_text','field_6177de53d119a'),(164023,40584,'blocks_6_timeline_content_actions',''),(164024,40584,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(164025,40584,'blocks_6_timeline_content',''),(164026,40584,'_blocks_6_timeline_content','field_6177de53d1197'),(164027,40584,'blocks_6_timeline_items_0_title','First Steps '),(164028,40584,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(164029,40584,'blocks_6_timeline_items_0_text','This first section is all about defining the types of people you want to work with – your ideal client. Doing this provides the context for all the other decisions you make as part of your business. '),(164030,40584,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(164031,40584,'blocks_6_timeline_items_1_title','Business Set Up '),(164032,40584,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(164033,40584,'blocks_6_timeline_items_1_text','This section covers the administrative side of your business, including the legal structure, financial management and GDPR. '),(164034,40584,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(164035,40584,'blocks_6_timeline_items_2_title','Business Planning '),(164036,40584,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(164037,40584,'blocks_6_timeline_items_2_text','In this section, we look at how to do a SWOT and PEST analysis, as well as market research to provide the information you need to plan your business and for product development. '),(164038,40584,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(164039,40584,'blocks_6_timeline_items_3_title','Product Development '),(164040,40584,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(164041,40584,'blocks_6_timeline_items_3_text','One of the most critical stages in the process is product development. Personal training is not a tangible ‘thing’ like cars, shoes or food, so in this section, you’ll learn how to put together packages and services that clients understand and are attracted to. '),(164042,40584,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(164043,40584,'blocks_6_timeline_items_4_title','Marketing '),(164044,40584,'_blocks_6_timeline_items_4_title','field_6177de53d119f'),(164045,40584,'blocks_6_timeline_items_4_text','In this section, you’ll learn about the marketing funnel, as well as offline and online marketing approaches, with specific techniques you can use immediately '),(164046,40584,'_blocks_6_timeline_items_4_text','field_6177de53d11a0'),(164047,40584,'blocks_6_timeline_items_5_title','Sales '),(164048,40584,'_blocks_6_timeline_items_5_title','field_6177de53d119f'),(164049,40584,'blocks_6_timeline_items_5_text','Sales skills are crucial to success as a personal trainer. This section covers the ‘principles of persuasion’ as well as strategies to handle common objections from potential clients. '),(164050,40584,'_blocks_6_timeline_items_5_text','field_6177de53d11a0'),(164051,40584,'blocks_6_timeline_items_6_title','Running Your Business '),(164052,40584,'_blocks_6_timeline_items_6_title','field_6177de53d119f'),(164053,40584,'blocks_6_timeline_items_6_text','As your client base expands you need to develop systems and processes to enable things to run smoothly and for your business to grow in a sustainable way. This final section provides the resources to help you do that.  '),(164054,40584,'_blocks_6_timeline_items_6_text','field_6177de53d11a0'),(164055,40584,'blocks_6_timeline_items','7'),(164056,40584,'_blocks_6_timeline_items','field_6177de53d119d'),(164057,40270,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164058,40270,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(164059,40270,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164060,40270,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(164061,40270,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164062,40270,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(164063,40585,'hide_hero','0'),(164064,40585,'_hide_hero','field_66a2380fcda39'),(164065,40585,'hero_title','Building Your Fitness Business'),(164066,40585,'_hero_title','field_617571fe285e8'),(164067,40585,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(164068,40585,'_hero_text','field_6175723c285e9'),(164069,40585,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164070,40585,'_hero_actions_0_button','field_61757281285eb'),(164071,40585,'hero_actions','1'),(164072,40585,'_hero_actions','field_61757270285ea'),(164073,40585,'hero_style','default'),(164074,40585,'_hero_style','field_62051d9dc5324'),(164075,40585,'_thumbnail_id','40576'),(164076,40585,'__thumbnail_id','field_617570855ddaf'),(164077,40585,'hero_image_pos_x','right'),(164078,40585,'_hero_image_pos_x','field_62ec3d05390bb'),(164079,40585,'hero_image_pos_y','top'),(164080,40585,'_hero_image_pos_y','field_62ec3d05390bc'),(164081,40585,'hero_image_pos',''),(164082,40585,'_hero_image_pos','field_62ec3d05390ba'),(164083,40585,'fft_hide_from_listings','0'),(164084,40585,'_fft_hide_from_listings','field_61f1320446ab2'),(164085,40585,'fft_page_format','default'),(164086,40585,'_fft_page_format','field_61ae213f1f218'),(164087,40585,'fft_hide_nav','0'),(164088,40585,'_fft_hide_nav','field_635bd5e43527c'),(164089,40585,'fft_hide_header_call_to_action','0'),(164090,40585,'_fft_hide_header_call_to_action','field_635bd6723527d'),(164091,40585,'fft_page_sitemap','0'),(164092,40585,'_fft_page_sitemap','field_61af9b34e8181'),(164093,40585,'blocks_0_acfe_flexible_toggle',''),(164094,40585,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(164095,40585,'blocks_0_acfe_flexible_layout_title','Template'),(164096,40585,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(164097,40585,'blocks_0_template','39087'),(164098,40585,'_blocks_0_template','field_617bdd570fe01'),(164099,40585,'blocks_1_acfe_flexible_toggle',''),(164100,40585,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(164101,40585,'blocks_1_acfe_flexible_layout_title','Text Block'),(164102,40585,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(164103,40585,'blocks_1_options_theme','#ffffff'),(164104,40585,'_blocks_1_options_theme','field_6176830e2ad17'),(164105,40585,'blocks_1_options',''),(164106,40585,'_blocks_1_options','field_6176830e2ad16'),(164107,40585,'blocks_1_text_block_heading','Benefits of training with us'),(164108,40585,'_blocks_1_text_block_heading','field_617669d413097'),(164109,40585,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(164110,40585,'_blocks_1_text_block_content','field_617669ec13098'),(164111,40585,'blocks_2_acfe_flexible_toggle',''),(164112,40585,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(164113,40585,'blocks_2_acfe_flexible_layout_title','Logos'),(164114,40585,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(164115,40585,'blocks_2_options_theme','#ffffff'),(164116,40585,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(164117,40585,'blocks_2_options_format','grid'),(164118,40585,'_blocks_2_options_format','field_61782964ee971'),(164119,40585,'blocks_2_options',''),(164120,40585,'_blocks_2_options','field_61782954ee965'),(164121,40585,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(164122,40585,'_blocks_2_logos','field_61782954ee96d'),(164123,40585,'blocks_2_title',''),(164124,40585,'_blocks_2_title','field_668fbfdc2daa1'),(164125,40585,'blocks_3_acfe_flexible_toggle',''),(164126,40585,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(164127,40585,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(164128,40585,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(164129,40585,'blocks_3_options_theme','#f5f5f5'),(164130,40585,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(164131,40585,'blocks_3_options_reverse','0'),(164132,40585,'_blocks_3_options_reverse','field_61768049bb8ac'),(164133,40585,'blocks_3_options',''),(164134,40585,'_blocks_3_options','field_617682517c334'),(164135,40585,'blocks_3_split_5050_image','40577'),(164136,40585,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(164137,40585,'blocks_3_split_5050_video',''),(164138,40585,'_blocks_3_split_5050_video','field_6239f3160848a'),(164139,40585,'blocks_3_split_5050_content_title',''),(164140,40585,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(164141,40585,'blocks_3_split_5050_content_heading','Course Overview'),(164142,40585,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(164143,40585,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(164144,40585,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(164145,40585,'blocks_3_split_5050_content_actions',''),(164146,40585,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(164147,40585,'blocks_3_split_5050_content',''),(164148,40585,'_blocks_3_split_5050_content','field_61767afceb8ba'),(164149,40585,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:13:\"step_timeline\";}'),(164150,40585,'_blocks','field_6176696113096'),(164151,40585,'course_label_text',''),(164152,40585,'_course_label_text','field_61e17babf71fa'),(164153,40585,'course_label',''),(164154,40585,'_course_label','field_61e12f92749a7'),(164155,40585,'course_description',''),(164156,40585,'_course_description','field_617ac5788e5e1'),(164157,40585,'course_key_info',''),(164158,40585,'_course_key_info','field_617ac6ad8e5e2'),(164159,40585,'course_included',''),(164160,40585,'_course_included','field_617ac6f08e5e4'),(164161,40585,'blocks_4_acfe_flexible_toggle',''),(164162,40585,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(164163,40585,'blocks_4_acfe_flexible_layout_title','Text Block'),(164164,40585,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(164165,40585,'blocks_4_options_theme','#ffffff'),(164166,40585,'_blocks_4_options_theme','field_6176830e2ad17'),(164167,40585,'blocks_4_options',''),(164168,40585,'_blocks_4_options','field_6176830e2ad16'),(164169,40585,'blocks_4_text_block_heading','Learn more about this course'),(164170,40585,'_blocks_4_text_block_heading','field_617669d413097'),(164171,40585,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(164172,40585,'_blocks_4_text_block_content','field_617669ec13098'),(164173,40585,'blocks_5_acfe_flexible_toggle',''),(164174,40585,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(164175,40585,'blocks_5_acfe_flexible_layout_title','Tabs'),(164176,40585,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(164177,40585,'blocks_5_options_theme','#ffffff'),(164178,40585,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(164179,40585,'blocks_5_options',''),(164180,40585,'_blocks_5_options','field_6177cfcd8140f'),(164181,40585,'blocks_5_tabs_0_tab_label','E-learning '),(164182,40585,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(164183,40585,'blocks_5_tabs_0_tab_content_title',''),(164184,40585,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(164185,40585,'blocks_5_tabs_0_tab_content_heading',''),(164186,40585,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(164187,40585,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(164188,40585,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(164189,40585,'blocks_5_tabs_0_tab_content_actions','1'),(164190,40585,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(164191,40585,'blocks_5_tabs_0_tab_content',''),(164192,40585,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(164193,40585,'blocks_5_tabs_0_tab_image',''),(164194,40585,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(164195,40585,'blocks_5_tabs_1_tab_label','Content '),(164196,40585,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(164197,40585,'blocks_5_tabs_1_tab_content_title',''),(164198,40585,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(164199,40585,'blocks_5_tabs_1_tab_content_heading',''),(164200,40585,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(164201,40585,'blocks_5_tabs_1_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(164202,40585,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(164203,40585,'blocks_5_tabs_1_tab_content_actions','1'),(164204,40585,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(164205,40585,'blocks_5_tabs_1_tab_content',''),(164206,40585,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(164207,40585,'blocks_5_tabs_1_tab_image',''),(164208,40585,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(164209,40585,'blocks_5_tabs_2_tab_label','Assessment '),(164210,40585,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(164211,40585,'blocks_5_tabs_2_tab_content_title',''),(164212,40585,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(164213,40585,'blocks_5_tabs_2_tab_content_heading',''),(164214,40585,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(164215,40585,'blocks_5_tabs_2_tab_content_text','There is no assessment for this course.'),(164216,40585,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(164217,40585,'blocks_5_tabs_2_tab_content_actions','1'),(164218,40585,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(164219,40585,'blocks_5_tabs_2_tab_content',''),(164220,40585,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(164221,40585,'blocks_5_tabs_2_tab_image',''),(164222,40585,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(164223,40585,'blocks_5_tabs','3'),(164224,40585,'_blocks_5_tabs','field_6177cff281419'),(164225,40585,'blocks_6_acfe_flexible_toggle',''),(164226,40585,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(164227,40585,'blocks_6_acfe_flexible_layout_title','Timeline'),(164228,40585,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(164229,40585,'blocks_6_options_theme','#f5f5f5'),(164230,40585,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(164231,40585,'blocks_6_options',''),(164232,40585,'_blocks_6_options','field_6177de53d1195'),(164233,40585,'blocks_6_timeline_content_title',''),(164234,40585,'_blocks_6_timeline_content_title','field_6177de53d1198'),(164235,40585,'blocks_6_timeline_content_heading','Course details'),(164236,40585,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(164237,40585,'blocks_6_timeline_content_text',''),(164238,40585,'_blocks_6_timeline_content_text','field_6177de53d119a'),(164239,40585,'blocks_6_timeline_content_actions',''),(164240,40585,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(164241,40585,'blocks_6_timeline_content',''),(164242,40585,'_blocks_6_timeline_content','field_6177de53d1197'),(164243,40585,'blocks_6_timeline_items_0_title','First Steps '),(164244,40585,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(164245,40585,'blocks_6_timeline_items_0_text','This first section is all about defining the types of people you want to work with – your ideal client. Doing this provides the context for all the other decisions you make as part of your business. '),(164246,40585,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(164247,40585,'blocks_6_timeline_items_1_title','Business Set Up '),(164248,40585,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(164249,40585,'blocks_6_timeline_items_1_text','This section covers the administrative side of your business, including the legal structure, financial management and GDPR. '),(164250,40585,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(164251,40585,'blocks_6_timeline_items_2_title','Business Planning '),(164252,40585,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(164253,40585,'blocks_6_timeline_items_2_text','In this section, we look at how to do a SWOT and PEST analysis, as well as market research to provide the information you need to plan your business and for product development. '),(164254,40585,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(164255,40585,'blocks_6_timeline_items_3_title','Product Development '),(164256,40585,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(164257,40585,'blocks_6_timeline_items_3_text','One of the most critical stages in the process is product development. Personal training is not a tangible ‘thing’ like cars, shoes or food, so in this section, you’ll learn how to put together packages and services that clients understand and are attracted to. '),(164258,40585,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(164259,40585,'blocks_6_timeline_items_4_title','Marketing '),(164260,40585,'_blocks_6_timeline_items_4_title','field_6177de53d119f'),(164261,40585,'blocks_6_timeline_items_4_text','In this section, you’ll learn about the marketing funnel, as well as offline and online marketing approaches, with specific techniques you can use immediately '),(164262,40585,'_blocks_6_timeline_items_4_text','field_6177de53d11a0'),(164263,40585,'blocks_6_timeline_items_5_title','Sales '),(164264,40585,'_blocks_6_timeline_items_5_title','field_6177de53d119f'),(164265,40585,'blocks_6_timeline_items_5_text','Sales skills are crucial to success as a personal trainer. This section covers the ‘principles of persuasion’ as well as strategies to handle common objections from potential clients. '),(164266,40585,'_blocks_6_timeline_items_5_text','field_6177de53d11a0'),(164267,40585,'blocks_6_timeline_items_6_title','Running Your Business '),(164268,40585,'_blocks_6_timeline_items_6_title','field_6177de53d119f'),(164269,40585,'blocks_6_timeline_items_6_text','As your client base expands you need to develop systems and processes to enable things to run smoothly and for your business to grow in a sustainable way. This final section provides the resources to help you do that.  '),(164270,40585,'_blocks_6_timeline_items_6_text','field_6177de53d11a0'),(164271,40585,'blocks_6_timeline_items','7'),(164272,40585,'_blocks_6_timeline_items','field_6177de53d119d'),(164273,40585,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164274,40585,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(164275,40585,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164276,40585,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(164277,40585,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164278,40585,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(164279,40270,'blocks_5_tabs_3_tab_label','Entry requirements'),(164280,40270,'_blocks_5_tabs_3_tab_label','field_6177d0068141a'),(164281,40270,'blocks_5_tabs_3_tab_content_title',''),(164282,40270,'_blocks_5_tabs_3_tab_content_title','field_6177cfcd81414'),(164283,40270,'blocks_5_tabs_3_tab_content_heading','To do this course, you will need'),(164284,40270,'_blocks_5_tabs_3_tab_content_heading','field_6177cfcd81415'),(164285,40270,'blocks_5_tabs_3_tab_content_text','<ul>\r\n 	<li>There are no entry requirements for this course.</li>\r\n 	<li>If you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.</li>\r\n</ul>'),(164286,40270,'_blocks_5_tabs_3_tab_content_text','field_6177cfcd81416'),(164287,40270,'blocks_5_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164288,40270,'_blocks_5_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(164289,40270,'blocks_5_tabs_3_tab_content_actions','1'),(164290,40270,'_blocks_5_tabs_3_tab_content_actions','field_6177cfcd81417'),(164291,40270,'blocks_5_tabs_3_tab_content',''),(164292,40270,'_blocks_5_tabs_3_tab_content','field_6177cfcd81413'),(164293,40270,'blocks_5_tabs_3_tab_image',''),(164294,40270,'_blocks_5_tabs_3_tab_image','field_6177cfcd81412'),(164295,40586,'hide_hero','0'),(164296,40586,'_hide_hero','field_66a2380fcda39'),(164297,40586,'hero_title','Building Your Fitness Business'),(164298,40586,'_hero_title','field_617571fe285e8'),(164299,40586,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(164300,40586,'_hero_text','field_6175723c285e9'),(164301,40586,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164302,40586,'_hero_actions_0_button','field_61757281285eb'),(164303,40586,'hero_actions','1'),(164304,40586,'_hero_actions','field_61757270285ea'),(164305,40586,'hero_style','default'),(164306,40586,'_hero_style','field_62051d9dc5324'),(164307,40586,'_thumbnail_id','40576'),(164308,40586,'__thumbnail_id','field_617570855ddaf'),(164309,40586,'hero_image_pos_x','right'),(164310,40586,'_hero_image_pos_x','field_62ec3d05390bb'),(164311,40586,'hero_image_pos_y','top'),(164312,40586,'_hero_image_pos_y','field_62ec3d05390bc'),(164313,40586,'hero_image_pos',''),(164314,40586,'_hero_image_pos','field_62ec3d05390ba'),(164315,40586,'fft_hide_from_listings','0'),(164316,40586,'_fft_hide_from_listings','field_61f1320446ab2'),(164317,40586,'fft_page_format','default'),(164318,40586,'_fft_page_format','field_61ae213f1f218'),(164319,40586,'fft_hide_nav','0'),(164320,40586,'_fft_hide_nav','field_635bd5e43527c'),(164321,40586,'fft_hide_header_call_to_action','0'),(164322,40586,'_fft_hide_header_call_to_action','field_635bd6723527d'),(164323,40586,'fft_page_sitemap','0'),(164324,40586,'_fft_page_sitemap','field_61af9b34e8181'),(164325,40586,'blocks_0_acfe_flexible_toggle',''),(164326,40586,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(164327,40586,'blocks_0_acfe_flexible_layout_title','Template'),(164328,40586,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(164329,40586,'blocks_0_template','39087'),(164330,40586,'_blocks_0_template','field_617bdd570fe01'),(164331,40586,'blocks_1_acfe_flexible_toggle',''),(164332,40586,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(164333,40586,'blocks_1_acfe_flexible_layout_title','Text Block'),(164334,40586,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(164335,40586,'blocks_1_options_theme','#ffffff'),(164336,40586,'_blocks_1_options_theme','field_6176830e2ad17'),(164337,40586,'blocks_1_options',''),(164338,40586,'_blocks_1_options','field_6176830e2ad16'),(164339,40586,'blocks_1_text_block_heading','Benefits of training with us'),(164340,40586,'_blocks_1_text_block_heading','field_617669d413097'),(164341,40586,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(164342,40586,'_blocks_1_text_block_content','field_617669ec13098'),(164343,40586,'blocks_2_acfe_flexible_toggle',''),(164344,40586,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(164345,40586,'blocks_2_acfe_flexible_layout_title','Logos'),(164346,40586,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(164347,40586,'blocks_2_options_theme','#ffffff'),(164348,40586,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(164349,40586,'blocks_2_options_format','grid'),(164350,40586,'_blocks_2_options_format','field_61782964ee971'),(164351,40586,'blocks_2_options',''),(164352,40586,'_blocks_2_options','field_61782954ee965'),(164353,40586,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(164354,40586,'_blocks_2_logos','field_61782954ee96d'),(164355,40586,'blocks_2_title',''),(164356,40586,'_blocks_2_title','field_668fbfdc2daa1'),(164357,40586,'blocks_3_acfe_flexible_toggle',''),(164358,40586,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(164359,40586,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(164360,40586,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(164361,40586,'blocks_3_options_theme','#f5f5f5'),(164362,40586,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(164363,40586,'blocks_3_options_reverse','0'),(164364,40586,'_blocks_3_options_reverse','field_61768049bb8ac'),(164365,40586,'blocks_3_options',''),(164366,40586,'_blocks_3_options','field_617682517c334'),(164367,40586,'blocks_3_split_5050_image','40577'),(164368,40586,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(164369,40586,'blocks_3_split_5050_video',''),(164370,40586,'_blocks_3_split_5050_video','field_6239f3160848a'),(164371,40586,'blocks_3_split_5050_content_title',''),(164372,40586,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(164373,40586,'blocks_3_split_5050_content_heading','Course Overview'),(164374,40586,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(164375,40586,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(164376,40586,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(164377,40586,'blocks_3_split_5050_content_actions',''),(164378,40586,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(164379,40586,'blocks_3_split_5050_content',''),(164380,40586,'_blocks_3_split_5050_content','field_61767afceb8ba'),(164381,40586,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:13:\"step_timeline\";}'),(164382,40586,'_blocks','field_6176696113096'),(164383,40586,'course_label_text',''),(164384,40586,'_course_label_text','field_61e17babf71fa'),(164385,40586,'course_label',''),(164386,40586,'_course_label','field_61e12f92749a7'),(164387,40586,'course_description',''),(164388,40586,'_course_description','field_617ac5788e5e1'),(164389,40586,'course_key_info',''),(164390,40586,'_course_key_info','field_617ac6ad8e5e2'),(164391,40586,'course_included',''),(164392,40586,'_course_included','field_617ac6f08e5e4'),(164393,40586,'blocks_4_acfe_flexible_toggle',''),(164394,40586,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(164395,40586,'blocks_4_acfe_flexible_layout_title','Text Block'),(164396,40586,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(164397,40586,'blocks_4_options_theme','#ffffff'),(164398,40586,'_blocks_4_options_theme','field_6176830e2ad17'),(164399,40586,'blocks_4_options',''),(164400,40586,'_blocks_4_options','field_6176830e2ad16'),(164401,40586,'blocks_4_text_block_heading','Learn more about this course'),(164402,40586,'_blocks_4_text_block_heading','field_617669d413097'),(164403,40586,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(164404,40586,'_blocks_4_text_block_content','field_617669ec13098'),(164405,40586,'blocks_5_acfe_flexible_toggle',''),(164406,40586,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(164407,40586,'blocks_5_acfe_flexible_layout_title','Tabs'),(164408,40586,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(164409,40586,'blocks_5_options_theme','#ffffff'),(164410,40586,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(164411,40586,'blocks_5_options',''),(164412,40586,'_blocks_5_options','field_6177cfcd8140f'),(164413,40586,'blocks_5_tabs_0_tab_label','E-learning '),(164414,40586,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(164415,40586,'blocks_5_tabs_0_tab_content_title',''),(164416,40586,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(164417,40586,'blocks_5_tabs_0_tab_content_heading',''),(164418,40586,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(164419,40586,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(164420,40586,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(164421,40586,'blocks_5_tabs_0_tab_content_actions','1'),(164422,40586,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(164423,40586,'blocks_5_tabs_0_tab_content',''),(164424,40586,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(164425,40586,'blocks_5_tabs_0_tab_image',''),(164426,40586,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(164427,40586,'blocks_5_tabs_1_tab_label','Content '),(164428,40586,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(164429,40586,'blocks_5_tabs_1_tab_content_title',''),(164430,40586,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(164431,40586,'blocks_5_tabs_1_tab_content_heading',''),(164432,40586,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(164433,40586,'blocks_5_tabs_1_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(164434,40586,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(164435,40586,'blocks_5_tabs_1_tab_content_actions','1'),(164436,40586,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(164437,40586,'blocks_5_tabs_1_tab_content',''),(164438,40586,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(164439,40586,'blocks_5_tabs_1_tab_image',''),(164440,40586,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(164441,40586,'blocks_5_tabs_2_tab_label','Assessment '),(164442,40586,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(164443,40586,'blocks_5_tabs_2_tab_content_title',''),(164444,40586,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(164445,40586,'blocks_5_tabs_2_tab_content_heading',''),(164446,40586,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(164447,40586,'blocks_5_tabs_2_tab_content_text','There is no assessment for this course.'),(164448,40586,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(164449,40586,'blocks_5_tabs_2_tab_content_actions','1'),(164450,40586,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(164451,40586,'blocks_5_tabs_2_tab_content',''),(164452,40586,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(164453,40586,'blocks_5_tabs_2_tab_image',''),(164454,40586,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(164455,40586,'blocks_5_tabs','4'),(164456,40586,'_blocks_5_tabs','field_6177cff281419'),(164457,40586,'blocks_6_acfe_flexible_toggle',''),(164458,40586,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(164459,40586,'blocks_6_acfe_flexible_layout_title','Timeline'),(164460,40586,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(164461,40586,'blocks_6_options_theme','#f5f5f5'),(164462,40586,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(164463,40586,'blocks_6_options',''),(164464,40586,'_blocks_6_options','field_6177de53d1195'),(164465,40586,'blocks_6_timeline_content_title',''),(164466,40586,'_blocks_6_timeline_content_title','field_6177de53d1198'),(164467,40586,'blocks_6_timeline_content_heading','Course details'),(164468,40586,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(164469,40586,'blocks_6_timeline_content_text',''),(164470,40586,'_blocks_6_timeline_content_text','field_6177de53d119a'),(164471,40586,'blocks_6_timeline_content_actions',''),(164472,40586,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(164473,40586,'blocks_6_timeline_content',''),(164474,40586,'_blocks_6_timeline_content','field_6177de53d1197'),(164475,40586,'blocks_6_timeline_items_0_title','First Steps '),(164476,40586,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(164477,40586,'blocks_6_timeline_items_0_text','This first section is all about defining the types of people you want to work with – your ideal client. Doing this provides the context for all the other decisions you make as part of your business. '),(164478,40586,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(164479,40586,'blocks_6_timeline_items_1_title','Business Set Up '),(164480,40586,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(164481,40586,'blocks_6_timeline_items_1_text','This section covers the administrative side of your business, including the legal structure, financial management and GDPR. '),(164482,40586,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(164483,40586,'blocks_6_timeline_items_2_title','Business Planning '),(164484,40586,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(164485,40586,'blocks_6_timeline_items_2_text','In this section, we look at how to do a SWOT and PEST analysis, as well as market research to provide the information you need to plan your business and for product development. '),(164486,40586,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(164487,40586,'blocks_6_timeline_items_3_title','Product Development '),(164488,40586,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(164489,40586,'blocks_6_timeline_items_3_text','One of the most critical stages in the process is product development. Personal training is not a tangible ‘thing’ like cars, shoes or food, so in this section, you’ll learn how to put together packages and services that clients understand and are attracted to. '),(164490,40586,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(164491,40586,'blocks_6_timeline_items_4_title','Marketing '),(164492,40586,'_blocks_6_timeline_items_4_title','field_6177de53d119f'),(164493,40586,'blocks_6_timeline_items_4_text','In this section, you’ll learn about the marketing funnel, as well as offline and online marketing approaches, with specific techniques you can use immediately '),(164494,40586,'_blocks_6_timeline_items_4_text','field_6177de53d11a0'),(164495,40586,'blocks_6_timeline_items_5_title','Sales '),(164496,40586,'_blocks_6_timeline_items_5_title','field_6177de53d119f'),(164497,40586,'blocks_6_timeline_items_5_text','Sales skills are crucial to success as a personal trainer. This section covers the ‘principles of persuasion’ as well as strategies to handle common objections from potential clients. '),(164498,40586,'_blocks_6_timeline_items_5_text','field_6177de53d11a0'),(164499,40586,'blocks_6_timeline_items_6_title','Running Your Business '),(164500,40586,'_blocks_6_timeline_items_6_title','field_6177de53d119f'),(164501,40586,'blocks_6_timeline_items_6_text','As your client base expands you need to develop systems and processes to enable things to run smoothly and for your business to grow in a sustainable way. This final section provides the resources to help you do that.  '),(164502,40586,'_blocks_6_timeline_items_6_text','field_6177de53d11a0'),(164503,40586,'blocks_6_timeline_items','7'),(164504,40586,'_blocks_6_timeline_items','field_6177de53d119d'),(164505,40586,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164506,40586,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(164507,40586,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164508,40586,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(164509,40586,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164510,40586,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(164511,40586,'blocks_5_tabs_3_tab_label','Entry requirements'),(164512,40586,'_blocks_5_tabs_3_tab_label','field_6177d0068141a'),(164513,40586,'blocks_5_tabs_3_tab_content_title',''),(164514,40586,'_blocks_5_tabs_3_tab_content_title','field_6177cfcd81414'),(164515,40586,'blocks_5_tabs_3_tab_content_heading','To do this course, you will need'),(164516,40586,'_blocks_5_tabs_3_tab_content_heading','field_6177cfcd81415'),(164517,40586,'blocks_5_tabs_3_tab_content_text','<ul>\r\n 	<li>There are no entry requirements for this course.</li>\r\n 	<li>If you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.</li>\r\n</ul>'),(164518,40586,'_blocks_5_tabs_3_tab_content_text','field_6177cfcd81416'),(164519,40586,'blocks_5_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164520,40586,'_blocks_5_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(164521,40586,'blocks_5_tabs_3_tab_content_actions','1'),(164522,40586,'_blocks_5_tabs_3_tab_content_actions','field_6177cfcd81417'),(164523,40586,'blocks_5_tabs_3_tab_content',''),(164524,40586,'_blocks_5_tabs_3_tab_content','field_6177cfcd81413'),(164525,40586,'blocks_5_tabs_3_tab_image',''),(164526,40586,'_blocks_5_tabs_3_tab_image','field_6177cfcd81412'),(164527,40270,'blocks_7_acfe_flexible_toggle',''),(164528,40270,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(164529,40270,'blocks_7_acfe_flexible_layout_title','Template'),(164530,40270,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(164531,40270,'blocks_7_template','39401'),(164532,40270,'_blocks_7_template','field_617bdd570fe01'),(164533,40270,'blocks_8_acfe_flexible_toggle',''),(164534,40270,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(164535,40270,'blocks_8_acfe_flexible_layout_title','Text Block'),(164536,40270,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(164537,40270,'blocks_8_options_theme','#b61234'),(164538,40270,'_blocks_8_options_theme','field_6176830e2ad17'),(164539,40270,'blocks_8_options',''),(164540,40270,'_blocks_8_options','field_6176830e2ad16'),(164541,40270,'blocks_8_text_block_heading','Frequently Bought Together'),(164542,40270,'_blocks_8_text_block_heading','field_617669d413097'),(164543,40270,'blocks_8_text_block_content','Check out some other courses that are frequently purchased with this one.'),(164544,40270,'_blocks_8_text_block_content','field_617669ec13098'),(164545,40270,'blocks_9_acfe_flexible_toggle',''),(164546,40270,'_blocks_9_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(164547,40270,'blocks_9_acfe_flexible_layout_title','Course Comparison'),(164548,40270,'_blocks_9_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(164549,40270,'blocks_9_options_theme','#b61234'),(164550,40270,'_blocks_9_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(164551,40270,'blocks_9_options',''),(164552,40270,'_blocks_9_options','field_617ac0b7f6c08'),(164553,40270,'blocks_9_show','selection'),(164554,40270,'_blocks_9_show','field_61a49cba9d946'),(164555,40270,'blocks_9_category','403'),(164556,40270,'_blocks_9_category','field_61a49cd79d947'),(164557,40270,'blocks_10_acfe_flexible_toggle',''),(164558,40270,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(164559,40270,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(164560,40270,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(164561,40270,'blocks_10_options_theme','#f5f5f5'),(164562,40270,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(164563,40270,'blocks_10_options_state','0'),(164564,40270,'_blocks_10_options_state','field_6239fcb7508c5'),(164565,40270,'blocks_10_options',''),(164566,40270,'_blocks_10_options','field_6177e2991ac44'),(164567,40270,'blocks_10_content_title',''),(164568,40270,'_blocks_10_content_title','field_64d237e8bb1e2'),(164569,40270,'blocks_10_content_heading','FAQ\'s'),(164570,40270,'_blocks_10_content_heading','field_64d237e8bb1e3'),(164571,40270,'blocks_10_content_text','Check out our FAQ\'s to further your understanding of this course and help you make a decision that\'s best for you.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today:<a href=\"tel:01329 829444\"> 01329 829444</a>'),(164572,40270,'_blocks_10_content_text','field_64d237e8bb1e4'),(164573,40270,'blocks_10_content_actions',''),(164574,40270,'_blocks_10_content_actions','field_64d237e8bb1e5'),(164575,40270,'blocks_10_content_align','left'),(164576,40270,'_blocks_10_content_align','field_64d2443e6b6aa'),(164577,40270,'blocks_10_content',''),(164578,40270,'_blocks_10_content','field_64d237e8bb1e1'),(164579,40270,'blocks_10_accordion_content','faqs'),(164580,40270,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(164581,40270,'blocks_10_accordion_faqs_select','a:5:{i:0;s:5:\"39403\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(164582,40270,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(164583,40270,'blocks_10_actions',''),(164584,40270,'_blocks_10_actions','field_61a746a817f7a'),(164585,40587,'hide_hero','0'),(164586,40587,'_hide_hero','field_66a2380fcda39'),(164587,40587,'hero_title','Building Your Fitness Business'),(164588,40587,'_hero_title','field_617571fe285e8'),(164589,40587,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(164590,40587,'_hero_text','field_6175723c285e9'),(164591,40587,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164592,40587,'_hero_actions_0_button','field_61757281285eb'),(164593,40587,'hero_actions','1'),(164594,40587,'_hero_actions','field_61757270285ea'),(164595,40587,'hero_style','default'),(164596,40587,'_hero_style','field_62051d9dc5324'),(164597,40587,'_thumbnail_id','40576'),(164598,40587,'__thumbnail_id','field_617570855ddaf'),(164599,40587,'hero_image_pos_x','right'),(164600,40587,'_hero_image_pos_x','field_62ec3d05390bb'),(164601,40587,'hero_image_pos_y','top'),(164602,40587,'_hero_image_pos_y','field_62ec3d05390bc'),(164603,40587,'hero_image_pos',''),(164604,40587,'_hero_image_pos','field_62ec3d05390ba'),(164605,40587,'fft_hide_from_listings','0'),(164606,40587,'_fft_hide_from_listings','field_61f1320446ab2'),(164607,40587,'fft_page_format','default'),(164608,40587,'_fft_page_format','field_61ae213f1f218'),(164609,40587,'fft_hide_nav','0'),(164610,40587,'_fft_hide_nav','field_635bd5e43527c'),(164611,40587,'fft_hide_header_call_to_action','0'),(164612,40587,'_fft_hide_header_call_to_action','field_635bd6723527d'),(164613,40587,'fft_page_sitemap','0'),(164614,40587,'_fft_page_sitemap','field_61af9b34e8181'),(164615,40587,'blocks_0_acfe_flexible_toggle',''),(164616,40587,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(164617,40587,'blocks_0_acfe_flexible_layout_title','Template'),(164618,40587,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(164619,40587,'blocks_0_template','39087'),(164620,40587,'_blocks_0_template','field_617bdd570fe01'),(164621,40587,'blocks_1_acfe_flexible_toggle',''),(164622,40587,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(164623,40587,'blocks_1_acfe_flexible_layout_title','Text Block'),(164624,40587,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(164625,40587,'blocks_1_options_theme','#ffffff'),(164626,40587,'_blocks_1_options_theme','field_6176830e2ad17'),(164627,40587,'blocks_1_options',''),(164628,40587,'_blocks_1_options','field_6176830e2ad16'),(164629,40587,'blocks_1_text_block_heading','Benefits of training with us'),(164630,40587,'_blocks_1_text_block_heading','field_617669d413097'),(164631,40587,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(164632,40587,'_blocks_1_text_block_content','field_617669ec13098'),(164633,40587,'blocks_2_acfe_flexible_toggle',''),(164634,40587,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(164635,40587,'blocks_2_acfe_flexible_layout_title','Logos'),(164636,40587,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(164637,40587,'blocks_2_options_theme','#ffffff'),(164638,40587,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(164639,40587,'blocks_2_options_format','grid'),(164640,40587,'_blocks_2_options_format','field_61782964ee971'),(164641,40587,'blocks_2_options',''),(164642,40587,'_blocks_2_options','field_61782954ee965'),(164643,40587,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(164644,40587,'_blocks_2_logos','field_61782954ee96d'),(164645,40587,'blocks_2_title',''),(164646,40587,'_blocks_2_title','field_668fbfdc2daa1'),(164647,40587,'blocks_3_acfe_flexible_toggle',''),(164648,40587,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(164649,40587,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(164650,40587,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(164651,40587,'blocks_3_options_theme','#f5f5f5'),(164652,40587,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(164653,40587,'blocks_3_options_reverse','0'),(164654,40587,'_blocks_3_options_reverse','field_61768049bb8ac'),(164655,40587,'blocks_3_options',''),(164656,40587,'_blocks_3_options','field_617682517c334'),(164657,40587,'blocks_3_split_5050_image','40577'),(164658,40587,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(164659,40587,'blocks_3_split_5050_video',''),(164660,40587,'_blocks_3_split_5050_video','field_6239f3160848a'),(164661,40587,'blocks_3_split_5050_content_title',''),(164662,40587,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(164663,40587,'blocks_3_split_5050_content_heading','Course Overview'),(164664,40587,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(164665,40587,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(164666,40587,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(164667,40587,'blocks_3_split_5050_content_actions',''),(164668,40587,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(164669,40587,'blocks_3_split_5050_content',''),(164670,40587,'_blocks_3_split_5050_content','field_61767afceb8ba'),(164671,40587,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:13:\"step_timeline\";i:7;s:8:\"template\";i:8;s:10:\"text_block\";i:9;s:14:\"course_compare\";i:10;s:10:\"accordions\";}'),(164672,40587,'_blocks','field_6176696113096'),(164673,40587,'course_label_text',''),(164674,40587,'_course_label_text','field_61e17babf71fa'),(164675,40587,'course_label',''),(164676,40587,'_course_label','field_61e12f92749a7'),(164677,40587,'course_description',''),(164678,40587,'_course_description','field_617ac5788e5e1'),(164679,40587,'course_key_info',''),(164680,40587,'_course_key_info','field_617ac6ad8e5e2'),(164681,40587,'course_included',''),(164682,40587,'_course_included','field_617ac6f08e5e4'),(164683,40587,'blocks_4_acfe_flexible_toggle',''),(164684,40587,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(164685,40587,'blocks_4_acfe_flexible_layout_title','Text Block'),(164686,40587,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(164687,40587,'blocks_4_options_theme','#ffffff'),(164688,40587,'_blocks_4_options_theme','field_6176830e2ad17'),(164689,40587,'blocks_4_options',''),(164690,40587,'_blocks_4_options','field_6176830e2ad16'),(164691,40587,'blocks_4_text_block_heading','Learn more about this course'),(164692,40587,'_blocks_4_text_block_heading','field_617669d413097'),(164693,40587,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(164694,40587,'_blocks_4_text_block_content','field_617669ec13098'),(164695,40587,'blocks_5_acfe_flexible_toggle',''),(164696,40587,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(164697,40587,'blocks_5_acfe_flexible_layout_title','Tabs'),(164698,40587,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(164699,40587,'blocks_5_options_theme','#ffffff'),(164700,40587,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(164701,40587,'blocks_5_options',''),(164702,40587,'_blocks_5_options','field_6177cfcd8140f'),(164703,40587,'blocks_5_tabs_0_tab_label','E-learning '),(164704,40587,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(164705,40587,'blocks_5_tabs_0_tab_content_title',''),(164706,40587,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(164707,40587,'blocks_5_tabs_0_tab_content_heading',''),(164708,40587,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(164709,40587,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(164710,40587,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(164711,40587,'blocks_5_tabs_0_tab_content_actions','1'),(164712,40587,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(164713,40587,'blocks_5_tabs_0_tab_content',''),(164714,40587,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(164715,40587,'blocks_5_tabs_0_tab_image',''),(164716,40587,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(164717,40587,'blocks_5_tabs_1_tab_label','Content '),(164718,40587,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(164719,40587,'blocks_5_tabs_1_tab_content_title',''),(164720,40587,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(164721,40587,'blocks_5_tabs_1_tab_content_heading',''),(164722,40587,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(164723,40587,'blocks_5_tabs_1_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(164724,40587,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(164725,40587,'blocks_5_tabs_1_tab_content_actions','1'),(164726,40587,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(164727,40587,'blocks_5_tabs_1_tab_content',''),(164728,40587,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(164729,40587,'blocks_5_tabs_1_tab_image',''),(164730,40587,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(164731,40587,'blocks_5_tabs_2_tab_label','Assessment '),(164732,40587,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(164733,40587,'blocks_5_tabs_2_tab_content_title',''),(164734,40587,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(164735,40587,'blocks_5_tabs_2_tab_content_heading',''),(164736,40587,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(164737,40587,'blocks_5_tabs_2_tab_content_text','There is no assessment for this course.'),(164738,40587,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(164739,40587,'blocks_5_tabs_2_tab_content_actions','1'),(164740,40587,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(164741,40587,'blocks_5_tabs_2_tab_content',''),(164742,40587,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(164743,40587,'blocks_5_tabs_2_tab_image',''),(164744,40587,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(164745,40587,'blocks_5_tabs','4'),(164746,40587,'_blocks_5_tabs','field_6177cff281419'),(164747,40587,'blocks_6_acfe_flexible_toggle',''),(164748,40587,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(164749,40587,'blocks_6_acfe_flexible_layout_title','Timeline'),(164750,40587,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(164751,40587,'blocks_6_options_theme','#f5f5f5'),(164752,40587,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(164753,40587,'blocks_6_options',''),(164754,40587,'_blocks_6_options','field_6177de53d1195'),(164755,40587,'blocks_6_timeline_content_title',''),(164756,40587,'_blocks_6_timeline_content_title','field_6177de53d1198'),(164757,40587,'blocks_6_timeline_content_heading','Course details'),(164758,40587,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(164759,40587,'blocks_6_timeline_content_text',''),(164760,40587,'_blocks_6_timeline_content_text','field_6177de53d119a'),(164761,40587,'blocks_6_timeline_content_actions',''),(164762,40587,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(164763,40587,'blocks_6_timeline_content',''),(164764,40587,'_blocks_6_timeline_content','field_6177de53d1197'),(164765,40587,'blocks_6_timeline_items_0_title','First Steps '),(164766,40587,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(164767,40587,'blocks_6_timeline_items_0_text','This first section is all about defining the types of people you want to work with – your ideal client. Doing this provides the context for all the other decisions you make as part of your business. '),(164768,40587,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(164769,40587,'blocks_6_timeline_items_1_title','Business Set Up '),(164770,40587,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(164771,40587,'blocks_6_timeline_items_1_text','This section covers the administrative side of your business, including the legal structure, financial management and GDPR. '),(164772,40587,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(164773,40587,'blocks_6_timeline_items_2_title','Business Planning '),(164774,40587,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(164775,40587,'blocks_6_timeline_items_2_text','In this section, we look at how to do a SWOT and PEST analysis, as well as market research to provide the information you need to plan your business and for product development. '),(164776,40587,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(164777,40587,'blocks_6_timeline_items_3_title','Product Development '),(164778,40587,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(164779,40587,'blocks_6_timeline_items_3_text','One of the most critical stages in the process is product development. Personal training is not a tangible ‘thing’ like cars, shoes or food, so in this section, you’ll learn how to put together packages and services that clients understand and are attracted to. '),(164780,40587,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(164781,40587,'blocks_6_timeline_items_4_title','Marketing '),(164782,40587,'_blocks_6_timeline_items_4_title','field_6177de53d119f'),(164783,40587,'blocks_6_timeline_items_4_text','In this section, you’ll learn about the marketing funnel, as well as offline and online marketing approaches, with specific techniques you can use immediately '),(164784,40587,'_blocks_6_timeline_items_4_text','field_6177de53d11a0'),(164785,40587,'blocks_6_timeline_items_5_title','Sales '),(164786,40587,'_blocks_6_timeline_items_5_title','field_6177de53d119f'),(164787,40587,'blocks_6_timeline_items_5_text','Sales skills are crucial to success as a personal trainer. This section covers the ‘principles of persuasion’ as well as strategies to handle common objections from potential clients. '),(164788,40587,'_blocks_6_timeline_items_5_text','field_6177de53d11a0'),(164789,40587,'blocks_6_timeline_items_6_title','Running Your Business '),(164790,40587,'_blocks_6_timeline_items_6_title','field_6177de53d119f'),(164791,40587,'blocks_6_timeline_items_6_text','As your client base expands you need to develop systems and processes to enable things to run smoothly and for your business to grow in a sustainable way. This final section provides the resources to help you do that.  '),(164792,40587,'_blocks_6_timeline_items_6_text','field_6177de53d11a0'),(164793,40587,'blocks_6_timeline_items','7'),(164794,40587,'_blocks_6_timeline_items','field_6177de53d119d'),(164795,40587,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164796,40587,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(164797,40587,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164798,40587,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(164799,40587,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164800,40587,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(164801,40587,'blocks_5_tabs_3_tab_label','Entry requirements'),(164802,40587,'_blocks_5_tabs_3_tab_label','field_6177d0068141a'),(164803,40587,'blocks_5_tabs_3_tab_content_title',''),(164804,40587,'_blocks_5_tabs_3_tab_content_title','field_6177cfcd81414'),(164805,40587,'blocks_5_tabs_3_tab_content_heading','To do this course, you will need'),(164806,40587,'_blocks_5_tabs_3_tab_content_heading','field_6177cfcd81415'),(164807,40587,'blocks_5_tabs_3_tab_content_text','<ul>\r\n 	<li>There are no entry requirements for this course.</li>\r\n 	<li>If you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.</li>\r\n</ul>'),(164808,40587,'_blocks_5_tabs_3_tab_content_text','field_6177cfcd81416'),(164809,40587,'blocks_5_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164810,40587,'_blocks_5_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(164811,40587,'blocks_5_tabs_3_tab_content_actions','1'),(164812,40587,'_blocks_5_tabs_3_tab_content_actions','field_6177cfcd81417'),(164813,40587,'blocks_5_tabs_3_tab_content',''),(164814,40587,'_blocks_5_tabs_3_tab_content','field_6177cfcd81413'),(164815,40587,'blocks_5_tabs_3_tab_image',''),(164816,40587,'_blocks_5_tabs_3_tab_image','field_6177cfcd81412'),(164817,40587,'blocks_7_acfe_flexible_toggle',''),(164818,40587,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(164819,40587,'blocks_7_acfe_flexible_layout_title','Template'),(164820,40587,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(164821,40587,'blocks_7_template','39401'),(164822,40587,'_blocks_7_template','field_617bdd570fe01'),(164823,40587,'blocks_8_acfe_flexible_toggle',''),(164824,40587,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(164825,40587,'blocks_8_acfe_flexible_layout_title','Text Block'),(164826,40587,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(164827,40587,'blocks_8_options_theme','#b61234'),(164828,40587,'_blocks_8_options_theme','field_6176830e2ad17'),(164829,40587,'blocks_8_options',''),(164830,40587,'_blocks_8_options','field_6176830e2ad16'),(164831,40587,'blocks_8_text_block_heading','Frequently Bought Together'),(164832,40587,'_blocks_8_text_block_heading','field_617669d413097'),(164833,40587,'blocks_8_text_block_content','Check out some other courses that are frequently purchased with this one.'),(164834,40587,'_blocks_8_text_block_content','field_617669ec13098'),(164835,40587,'blocks_9_acfe_flexible_toggle',''),(164836,40587,'_blocks_9_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(164837,40587,'blocks_9_acfe_flexible_layout_title','Course Comparison'),(164838,40587,'_blocks_9_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(164839,40587,'blocks_9_options_theme','#b61234'),(164840,40587,'_blocks_9_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(164841,40587,'blocks_9_options',''),(164842,40587,'_blocks_9_options','field_617ac0b7f6c08'),(164843,40587,'blocks_9_show','category'),(164844,40587,'_blocks_9_show','field_61a49cba9d946'),(164845,40587,'blocks_9_category','403'),(164846,40587,'_blocks_9_category','field_61a49cd79d947'),(164847,40587,'blocks_10_acfe_flexible_toggle',''),(164848,40587,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(164849,40587,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(164850,40587,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(164851,40587,'blocks_10_options_theme','#f5f5f5'),(164852,40587,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(164853,40587,'blocks_10_options_state','0'),(164854,40587,'_blocks_10_options_state','field_6239fcb7508c5'),(164855,40587,'blocks_10_options',''),(164856,40587,'_blocks_10_options','field_6177e2991ac44'),(164857,40587,'blocks_10_content_title',''),(164858,40587,'_blocks_10_content_title','field_64d237e8bb1e2'),(164859,40587,'blocks_10_content_heading','FAQ\'s'),(164860,40587,'_blocks_10_content_heading','field_64d237e8bb1e3'),(164861,40587,'blocks_10_content_text','Check out our FAQ\'s to further your understanding of this course and help you make a decision that\'s best for you.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today:<a href=\"tel:01329 829444\"> 01329 829444</a>'),(164862,40587,'_blocks_10_content_text','field_64d237e8bb1e4'),(164863,40587,'blocks_10_content_actions',''),(164864,40587,'_blocks_10_content_actions','field_64d237e8bb1e5'),(164865,40587,'blocks_10_content_align','left'),(164866,40587,'_blocks_10_content_align','field_64d2443e6b6aa'),(164867,40587,'blocks_10_content',''),(164868,40587,'_blocks_10_content','field_64d237e8bb1e1'),(164869,40587,'blocks_10_accordion_content','faqs'),(164870,40587,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(164871,40587,'blocks_10_accordion_faqs_select','a:5:{i:0;s:5:\"39403\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(164872,40587,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(164873,40587,'blocks_10_actions',''),(164874,40587,'_blocks_10_actions','field_61a746a817f7a'),(164875,40588,'hide_hero','0'),(164876,40588,'_hide_hero','field_66a2380fcda39'),(164877,40588,'hero_title','Building Your Fitness Business'),(164878,40588,'_hero_title','field_617571fe285e8'),(164879,40588,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(164880,40588,'_hero_text','field_6175723c285e9'),(164881,40588,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(164882,40588,'_hero_actions_0_button','field_61757281285eb'),(164883,40588,'hero_actions','1'),(164884,40588,'_hero_actions','field_61757270285ea'),(164885,40588,'hero_style','default'),(164886,40588,'_hero_style','field_62051d9dc5324'),(164887,40588,'_thumbnail_id','40576'),(164888,40588,'__thumbnail_id','field_617570855ddaf'),(164889,40588,'hero_image_pos_x','right'),(164890,40588,'_hero_image_pos_x','field_62ec3d05390bb'),(164891,40588,'hero_image_pos_y','top'),(164892,40588,'_hero_image_pos_y','field_62ec3d05390bc'),(164893,40588,'hero_image_pos',''),(164894,40588,'_hero_image_pos','field_62ec3d05390ba'),(164895,40588,'fft_hide_from_listings','0'),(164896,40588,'_fft_hide_from_listings','field_61f1320446ab2'),(164897,40588,'fft_page_format','default'),(164898,40588,'_fft_page_format','field_61ae213f1f218'),(164899,40588,'fft_hide_nav','0'),(164900,40588,'_fft_hide_nav','field_635bd5e43527c'),(164901,40588,'fft_hide_header_call_to_action','0'),(164902,40588,'_fft_hide_header_call_to_action','field_635bd6723527d'),(164903,40588,'fft_page_sitemap','0'),(164904,40588,'_fft_page_sitemap','field_61af9b34e8181'),(164905,40588,'blocks_0_acfe_flexible_toggle',''),(164906,40588,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(164907,40588,'blocks_0_acfe_flexible_layout_title','Template'),(164908,40588,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(164909,40588,'blocks_0_template','39087'),(164910,40588,'_blocks_0_template','field_617bdd570fe01'),(164911,40588,'blocks_1_acfe_flexible_toggle',''),(164912,40588,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(164913,40588,'blocks_1_acfe_flexible_layout_title','Text Block'),(164914,40588,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(164915,40588,'blocks_1_options_theme','#ffffff'),(164916,40588,'_blocks_1_options_theme','field_6176830e2ad17'),(164917,40588,'blocks_1_options',''),(164918,40588,'_blocks_1_options','field_6176830e2ad16'),(164919,40588,'blocks_1_text_block_heading','Benefits of training with us'),(164920,40588,'_blocks_1_text_block_heading','field_617669d413097'),(164921,40588,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(164922,40588,'_blocks_1_text_block_content','field_617669ec13098'),(164923,40588,'blocks_2_acfe_flexible_toggle',''),(164924,40588,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(164925,40588,'blocks_2_acfe_flexible_layout_title','Logos'),(164926,40588,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(164927,40588,'blocks_2_options_theme','#ffffff'),(164928,40588,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(164929,40588,'blocks_2_options_format','grid'),(164930,40588,'_blocks_2_options_format','field_61782964ee971'),(164931,40588,'blocks_2_options',''),(164932,40588,'_blocks_2_options','field_61782954ee965'),(164933,40588,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(164934,40588,'_blocks_2_logos','field_61782954ee96d'),(164935,40588,'blocks_2_title',''),(164936,40588,'_blocks_2_title','field_668fbfdc2daa1'),(164937,40588,'blocks_3_acfe_flexible_toggle',''),(164938,40588,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(164939,40588,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(164940,40588,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(164941,40588,'blocks_3_options_theme','#f5f5f5'),(164942,40588,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(164943,40588,'blocks_3_options_reverse','0'),(164944,40588,'_blocks_3_options_reverse','field_61768049bb8ac'),(164945,40588,'blocks_3_options',''),(164946,40588,'_blocks_3_options','field_617682517c334'),(164947,40588,'blocks_3_split_5050_image','40577'),(164948,40588,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(164949,40588,'blocks_3_split_5050_video',''),(164950,40588,'_blocks_3_split_5050_video','field_6239f3160848a'),(164951,40588,'blocks_3_split_5050_content_title',''),(164952,40588,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(164953,40588,'blocks_3_split_5050_content_heading','Course Overview'),(164954,40588,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(164955,40588,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(164956,40588,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(164957,40588,'blocks_3_split_5050_content_actions',''),(164958,40588,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(164959,40588,'blocks_3_split_5050_content',''),(164960,40588,'_blocks_3_split_5050_content','field_61767afceb8ba'),(164961,40588,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:13:\"step_timeline\";i:7;s:8:\"template\";i:8;s:10:\"text_block\";i:9;s:14:\"course_compare\";i:10;s:10:\"accordions\";}'),(164962,40588,'_blocks','field_6176696113096'),(164963,40588,'course_label_text',''),(164964,40588,'_course_label_text','field_61e17babf71fa'),(164965,40588,'course_label',''),(164966,40588,'_course_label','field_61e12f92749a7'),(164967,40588,'course_description',''),(164968,40588,'_course_description','field_617ac5788e5e1'),(164969,40588,'course_key_info',''),(164970,40588,'_course_key_info','field_617ac6ad8e5e2'),(164971,40588,'course_included',''),(164972,40588,'_course_included','field_617ac6f08e5e4'),(164973,40588,'blocks_4_acfe_flexible_toggle',''),(164974,40588,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(164975,40588,'blocks_4_acfe_flexible_layout_title','Text Block'),(164976,40588,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(164977,40588,'blocks_4_options_theme','#ffffff'),(164978,40588,'_blocks_4_options_theme','field_6176830e2ad17'),(164979,40588,'blocks_4_options',''),(164980,40588,'_blocks_4_options','field_6176830e2ad16'),(164981,40588,'blocks_4_text_block_heading','Learn more about this course'),(164982,40588,'_blocks_4_text_block_heading','field_617669d413097'),(164983,40588,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(164984,40588,'_blocks_4_text_block_content','field_617669ec13098'),(164985,40588,'blocks_5_acfe_flexible_toggle',''),(164986,40588,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(164987,40588,'blocks_5_acfe_flexible_layout_title','Tabs'),(164988,40588,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(164989,40588,'blocks_5_options_theme','#ffffff'),(164990,40588,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(164991,40588,'blocks_5_options',''),(164992,40588,'_blocks_5_options','field_6177cfcd8140f'),(164993,40588,'blocks_5_tabs_0_tab_label','E-learning '),(164994,40588,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(164995,40588,'blocks_5_tabs_0_tab_content_title',''),(164996,40588,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(164997,40588,'blocks_5_tabs_0_tab_content_heading',''),(164998,40588,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(164999,40588,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(165000,40588,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(165001,40588,'blocks_5_tabs_0_tab_content_actions','1'),(165002,40588,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(165003,40588,'blocks_5_tabs_0_tab_content',''),(165004,40588,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(165005,40588,'blocks_5_tabs_0_tab_image',''),(165006,40588,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(165007,40588,'blocks_5_tabs_1_tab_label','Content '),(165008,40588,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(165009,40588,'blocks_5_tabs_1_tab_content_title',''),(165010,40588,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(165011,40588,'blocks_5_tabs_1_tab_content_heading',''),(165012,40588,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(165013,40588,'blocks_5_tabs_1_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(165014,40588,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(165015,40588,'blocks_5_tabs_1_tab_content_actions','1'),(165016,40588,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(165017,40588,'blocks_5_tabs_1_tab_content',''),(165018,40588,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(165019,40588,'blocks_5_tabs_1_tab_image',''),(165020,40588,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(165021,40588,'blocks_5_tabs_2_tab_label','Assessment '),(165022,40588,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(165023,40588,'blocks_5_tabs_2_tab_content_title',''),(165024,40588,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(165025,40588,'blocks_5_tabs_2_tab_content_heading',''),(165026,40588,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(165027,40588,'blocks_5_tabs_2_tab_content_text','There is no assessment for this course.'),(165028,40588,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(165029,40588,'blocks_5_tabs_2_tab_content_actions','1'),(165030,40588,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(165031,40588,'blocks_5_tabs_2_tab_content',''),(165032,40588,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(165033,40588,'blocks_5_tabs_2_tab_image',''),(165034,40588,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(165035,40588,'blocks_5_tabs','4'),(165036,40588,'_blocks_5_tabs','field_6177cff281419'),(165037,40588,'blocks_6_acfe_flexible_toggle',''),(165038,40588,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(165039,40588,'blocks_6_acfe_flexible_layout_title','Timeline'),(165040,40588,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(165041,40588,'blocks_6_options_theme','#f5f5f5'),(165042,40588,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(165043,40588,'blocks_6_options',''),(165044,40588,'_blocks_6_options','field_6177de53d1195'),(165045,40588,'blocks_6_timeline_content_title',''),(165046,40588,'_blocks_6_timeline_content_title','field_6177de53d1198'),(165047,40588,'blocks_6_timeline_content_heading','Course details'),(165048,40588,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(165049,40588,'blocks_6_timeline_content_text',''),(165050,40588,'_blocks_6_timeline_content_text','field_6177de53d119a'),(165051,40588,'blocks_6_timeline_content_actions',''),(165052,40588,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(165053,40588,'blocks_6_timeline_content',''),(165054,40588,'_blocks_6_timeline_content','field_6177de53d1197'),(165055,40588,'blocks_6_timeline_items_0_title','First Steps '),(165056,40588,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(165057,40588,'blocks_6_timeline_items_0_text','This first section is all about defining the types of people you want to work with – your ideal client. Doing this provides the context for all the other decisions you make as part of your business. '),(165058,40588,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(165059,40588,'blocks_6_timeline_items_1_title','Business Set Up '),(165060,40588,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(165061,40588,'blocks_6_timeline_items_1_text','This section covers the administrative side of your business, including the legal structure, financial management and GDPR. '),(165062,40588,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(165063,40588,'blocks_6_timeline_items_2_title','Business Planning '),(165064,40588,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(165065,40588,'blocks_6_timeline_items_2_text','In this section, we look at how to do a SWOT and PEST analysis, as well as market research to provide the information you need to plan your business and for product development. '),(165066,40588,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(165067,40588,'blocks_6_timeline_items_3_title','Product Development '),(165068,40588,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(165069,40588,'blocks_6_timeline_items_3_text','One of the most critical stages in the process is product development. Personal training is not a tangible ‘thing’ like cars, shoes or food, so in this section, you’ll learn how to put together packages and services that clients understand and are attracted to. '),(165070,40588,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(165071,40588,'blocks_6_timeline_items_4_title','Marketing '),(165072,40588,'_blocks_6_timeline_items_4_title','field_6177de53d119f'),(165073,40588,'blocks_6_timeline_items_4_text','In this section, you’ll learn about the marketing funnel, as well as offline and online marketing approaches, with specific techniques you can use immediately '),(165074,40588,'_blocks_6_timeline_items_4_text','field_6177de53d11a0'),(165075,40588,'blocks_6_timeline_items_5_title','Sales '),(165076,40588,'_blocks_6_timeline_items_5_title','field_6177de53d119f'),(165077,40588,'blocks_6_timeline_items_5_text','Sales skills are crucial to success as a personal trainer. This section covers the ‘principles of persuasion’ as well as strategies to handle common objections from potential clients. '),(165078,40588,'_blocks_6_timeline_items_5_text','field_6177de53d11a0'),(165079,40588,'blocks_6_timeline_items_6_title','Running Your Business '),(165080,40588,'_blocks_6_timeline_items_6_title','field_6177de53d119f'),(165081,40588,'blocks_6_timeline_items_6_text','As your client base expands you need to develop systems and processes to enable things to run smoothly and for your business to grow in a sustainable way. This final section provides the resources to help you do that.  '),(165082,40588,'_blocks_6_timeline_items_6_text','field_6177de53d11a0'),(165083,40588,'blocks_6_timeline_items','7'),(165084,40588,'_blocks_6_timeline_items','field_6177de53d119d'),(165085,40588,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165086,40588,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(165087,40588,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165088,40588,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(165089,40588,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165090,40588,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(165091,40588,'blocks_5_tabs_3_tab_label','Entry requirements'),(165092,40588,'_blocks_5_tabs_3_tab_label','field_6177d0068141a'),(165093,40588,'blocks_5_tabs_3_tab_content_title',''),(165094,40588,'_blocks_5_tabs_3_tab_content_title','field_6177cfcd81414'),(165095,40588,'blocks_5_tabs_3_tab_content_heading','To do this course, you will need'),(165096,40588,'_blocks_5_tabs_3_tab_content_heading','field_6177cfcd81415'),(165097,40588,'blocks_5_tabs_3_tab_content_text','<ul>\r\n 	<li>There are no entry requirements for this course.</li>\r\n 	<li>If you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.</li>\r\n</ul>'),(165098,40588,'_blocks_5_tabs_3_tab_content_text','field_6177cfcd81416'),(165099,40588,'blocks_5_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165100,40588,'_blocks_5_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(165101,40588,'blocks_5_tabs_3_tab_content_actions','1'),(165102,40588,'_blocks_5_tabs_3_tab_content_actions','field_6177cfcd81417'),(165103,40588,'blocks_5_tabs_3_tab_content',''),(165104,40588,'_blocks_5_tabs_3_tab_content','field_6177cfcd81413'),(165105,40588,'blocks_5_tabs_3_tab_image',''),(165106,40588,'_blocks_5_tabs_3_tab_image','field_6177cfcd81412'),(165107,40588,'blocks_7_acfe_flexible_toggle',''),(165108,40588,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(165109,40588,'blocks_7_acfe_flexible_layout_title','Template'),(165110,40588,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(165111,40588,'blocks_7_template','39401'),(165112,40588,'_blocks_7_template','field_617bdd570fe01'),(165113,40588,'blocks_8_acfe_flexible_toggle',''),(165114,40588,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(165115,40588,'blocks_8_acfe_flexible_layout_title','Text Block'),(165116,40588,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(165117,40588,'blocks_8_options_theme','#b61234'),(165118,40588,'_blocks_8_options_theme','field_6176830e2ad17'),(165119,40588,'blocks_8_options',''),(165120,40588,'_blocks_8_options','field_6176830e2ad16'),(165121,40588,'blocks_8_text_block_heading','Frequently Bought Together'),(165122,40588,'_blocks_8_text_block_heading','field_617669d413097'),(165123,40588,'blocks_8_text_block_content','Check out some other courses that are frequently purchased with this one.'),(165124,40588,'_blocks_8_text_block_content','field_617669ec13098'),(165125,40588,'blocks_9_acfe_flexible_toggle',''),(165126,40588,'_blocks_9_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(165127,40588,'blocks_9_acfe_flexible_layout_title','Course Comparison'),(165128,40588,'_blocks_9_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(165129,40588,'blocks_9_options_theme','#b61234'),(165130,40588,'_blocks_9_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(165131,40588,'blocks_9_options',''),(165132,40588,'_blocks_9_options','field_617ac0b7f6c08'),(165133,40588,'blocks_9_show','current'),(165134,40588,'_blocks_9_show','field_61a49cba9d946'),(165135,40588,'blocks_9_category','403'),(165136,40588,'_blocks_9_category','field_61a49cd79d947'),(165137,40588,'blocks_10_acfe_flexible_toggle',''),(165138,40588,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(165139,40588,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(165140,40588,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(165141,40588,'blocks_10_options_theme','#f5f5f5'),(165142,40588,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(165143,40588,'blocks_10_options_state','0'),(165144,40588,'_blocks_10_options_state','field_6239fcb7508c5'),(165145,40588,'blocks_10_options',''),(165146,40588,'_blocks_10_options','field_6177e2991ac44'),(165147,40588,'blocks_10_content_title',''),(165148,40588,'_blocks_10_content_title','field_64d237e8bb1e2'),(165149,40588,'blocks_10_content_heading','FAQ\'s'),(165150,40588,'_blocks_10_content_heading','field_64d237e8bb1e3'),(165151,40588,'blocks_10_content_text','Check out our FAQ\'s to further your understanding of this course and help you make a decision that\'s best for you.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today:<a href=\"tel:01329 829444\"> 01329 829444</a>'),(165152,40588,'_blocks_10_content_text','field_64d237e8bb1e4'),(165153,40588,'blocks_10_content_actions',''),(165154,40588,'_blocks_10_content_actions','field_64d237e8bb1e5'),(165155,40588,'blocks_10_content_align','left'),(165156,40588,'_blocks_10_content_align','field_64d2443e6b6aa'),(165157,40588,'blocks_10_content',''),(165158,40588,'_blocks_10_content','field_64d237e8bb1e1'),(165159,40588,'blocks_10_accordion_content','faqs'),(165160,40588,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(165161,40588,'blocks_10_accordion_faqs_select','a:5:{i:0;s:5:\"39403\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(165162,40588,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(165163,40588,'blocks_10_actions',''),(165164,40588,'_blocks_10_actions','field_61a746a817f7a'),(165165,40270,'blocks_9_courses','a:1:{i:0;s:5:\"40263\";}'),(165166,40270,'_blocks_9_courses','field_61b244781ee0a'),(165167,40589,'hide_hero','0'),(165168,40589,'_hide_hero','field_66a2380fcda39'),(165169,40589,'hero_title','Building Your Fitness Business'),(165170,40589,'_hero_title','field_617571fe285e8'),(165171,40589,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(165172,40589,'_hero_text','field_6175723c285e9'),(165173,40589,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165174,40589,'_hero_actions_0_button','field_61757281285eb'),(165175,40589,'hero_actions','1'),(165176,40589,'_hero_actions','field_61757270285ea'),(165177,40589,'hero_style','default'),(165178,40589,'_hero_style','field_62051d9dc5324'),(165179,40589,'_thumbnail_id','40576'),(165180,40589,'__thumbnail_id','field_617570855ddaf'),(165181,40589,'hero_image_pos_x','right'),(165182,40589,'_hero_image_pos_x','field_62ec3d05390bb'),(165183,40589,'hero_image_pos_y','top'),(165184,40589,'_hero_image_pos_y','field_62ec3d05390bc'),(165185,40589,'hero_image_pos',''),(165186,40589,'_hero_image_pos','field_62ec3d05390ba'),(165187,40589,'fft_hide_from_listings','0'),(165188,40589,'_fft_hide_from_listings','field_61f1320446ab2'),(165189,40589,'fft_page_format','default'),(165190,40589,'_fft_page_format','field_61ae213f1f218'),(165191,40589,'fft_hide_nav','0'),(165192,40589,'_fft_hide_nav','field_635bd5e43527c'),(165193,40589,'fft_hide_header_call_to_action','0'),(165194,40589,'_fft_hide_header_call_to_action','field_635bd6723527d'),(165195,40589,'fft_page_sitemap','0'),(165196,40589,'_fft_page_sitemap','field_61af9b34e8181'),(165197,40589,'blocks_0_acfe_flexible_toggle',''),(165198,40589,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(165199,40589,'blocks_0_acfe_flexible_layout_title','Template'),(165200,40589,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(165201,40589,'blocks_0_template','39087'),(165202,40589,'_blocks_0_template','field_617bdd570fe01'),(165203,40589,'blocks_1_acfe_flexible_toggle',''),(165204,40589,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(165205,40589,'blocks_1_acfe_flexible_layout_title','Text Block'),(165206,40589,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(165207,40589,'blocks_1_options_theme','#ffffff'),(165208,40589,'_blocks_1_options_theme','field_6176830e2ad17'),(165209,40589,'blocks_1_options',''),(165210,40589,'_blocks_1_options','field_6176830e2ad16'),(165211,40589,'blocks_1_text_block_heading','Benefits of training with us'),(165212,40589,'_blocks_1_text_block_heading','field_617669d413097'),(165213,40589,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(165214,40589,'_blocks_1_text_block_content','field_617669ec13098'),(165215,40589,'blocks_2_acfe_flexible_toggle',''),(165216,40589,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(165217,40589,'blocks_2_acfe_flexible_layout_title','Logos'),(165218,40589,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(165219,40589,'blocks_2_options_theme','#ffffff'),(165220,40589,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(165221,40589,'blocks_2_options_format','grid'),(165222,40589,'_blocks_2_options_format','field_61782964ee971'),(165223,40589,'blocks_2_options',''),(165224,40589,'_blocks_2_options','field_61782954ee965'),(165225,40589,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(165226,40589,'_blocks_2_logos','field_61782954ee96d'),(165227,40589,'blocks_2_title',''),(165228,40589,'_blocks_2_title','field_668fbfdc2daa1'),(165229,40589,'blocks_3_acfe_flexible_toggle',''),(165230,40589,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(165231,40589,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(165232,40589,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(165233,40589,'blocks_3_options_theme','#f5f5f5'),(165234,40589,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(165235,40589,'blocks_3_options_reverse','0'),(165236,40589,'_blocks_3_options_reverse','field_61768049bb8ac'),(165237,40589,'blocks_3_options',''),(165238,40589,'_blocks_3_options','field_617682517c334'),(165239,40589,'blocks_3_split_5050_image','40577'),(165240,40589,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(165241,40589,'blocks_3_split_5050_video',''),(165242,40589,'_blocks_3_split_5050_video','field_6239f3160848a'),(165243,40589,'blocks_3_split_5050_content_title',''),(165244,40589,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(165245,40589,'blocks_3_split_5050_content_heading','Course Overview'),(165246,40589,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(165247,40589,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(165248,40589,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(165249,40589,'blocks_3_split_5050_content_actions',''),(165250,40589,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(165251,40589,'blocks_3_split_5050_content',''),(165252,40589,'_blocks_3_split_5050_content','field_61767afceb8ba'),(165253,40589,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:13:\"step_timeline\";i:7;s:8:\"template\";i:8;s:10:\"text_block\";i:9;s:14:\"course_compare\";i:10;s:10:\"accordions\";}'),(165254,40589,'_blocks','field_6176696113096'),(165255,40589,'course_label_text',''),(165256,40589,'_course_label_text','field_61e17babf71fa'),(165257,40589,'course_label',''),(165258,40589,'_course_label','field_61e12f92749a7'),(165259,40589,'course_description',''),(165260,40589,'_course_description','field_617ac5788e5e1'),(165261,40589,'course_key_info',''),(165262,40589,'_course_key_info','field_617ac6ad8e5e2'),(165263,40589,'course_included',''),(165264,40589,'_course_included','field_617ac6f08e5e4'),(165265,40589,'blocks_4_acfe_flexible_toggle',''),(165266,40589,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(165267,40589,'blocks_4_acfe_flexible_layout_title','Text Block'),(165268,40589,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(165269,40589,'blocks_4_options_theme','#ffffff'),(165270,40589,'_blocks_4_options_theme','field_6176830e2ad17'),(165271,40589,'blocks_4_options',''),(165272,40589,'_blocks_4_options','field_6176830e2ad16'),(165273,40589,'blocks_4_text_block_heading','Learn more about this course'),(165274,40589,'_blocks_4_text_block_heading','field_617669d413097'),(165275,40589,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(165276,40589,'_blocks_4_text_block_content','field_617669ec13098'),(165277,40589,'blocks_5_acfe_flexible_toggle',''),(165278,40589,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(165279,40589,'blocks_5_acfe_flexible_layout_title','Tabs'),(165280,40589,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(165281,40589,'blocks_5_options_theme','#ffffff'),(165282,40589,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(165283,40589,'blocks_5_options',''),(165284,40589,'_blocks_5_options','field_6177cfcd8140f'),(165285,40589,'blocks_5_tabs_0_tab_label','E-learning '),(165286,40589,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(165287,40589,'blocks_5_tabs_0_tab_content_title',''),(165288,40589,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(165289,40589,'blocks_5_tabs_0_tab_content_heading',''),(165290,40589,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(165291,40589,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(165292,40589,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(165293,40589,'blocks_5_tabs_0_tab_content_actions','1'),(165294,40589,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(165295,40589,'blocks_5_tabs_0_tab_content',''),(165296,40589,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(165297,40589,'blocks_5_tabs_0_tab_image',''),(165298,40589,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(165299,40589,'blocks_5_tabs_1_tab_label','Content '),(165300,40589,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(165301,40589,'blocks_5_tabs_1_tab_content_title',''),(165302,40589,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(165303,40589,'blocks_5_tabs_1_tab_content_heading',''),(165304,40589,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(165305,40589,'blocks_5_tabs_1_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(165306,40589,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(165307,40589,'blocks_5_tabs_1_tab_content_actions','1'),(165308,40589,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(165309,40589,'blocks_5_tabs_1_tab_content',''),(165310,40589,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(165311,40589,'blocks_5_tabs_1_tab_image',''),(165312,40589,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(165313,40589,'blocks_5_tabs_2_tab_label','Assessment '),(165314,40589,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(165315,40589,'blocks_5_tabs_2_tab_content_title',''),(165316,40589,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(165317,40589,'blocks_5_tabs_2_tab_content_heading',''),(165318,40589,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(165319,40589,'blocks_5_tabs_2_tab_content_text','There is no assessment for this course.'),(165320,40589,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(165321,40589,'blocks_5_tabs_2_tab_content_actions','1'),(165322,40589,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(165323,40589,'blocks_5_tabs_2_tab_content',''),(165324,40589,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(165325,40589,'blocks_5_tabs_2_tab_image',''),(165326,40589,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(165327,40589,'blocks_5_tabs','4'),(165328,40589,'_blocks_5_tabs','field_6177cff281419'),(165329,40589,'blocks_6_acfe_flexible_toggle',''),(165330,40589,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(165331,40589,'blocks_6_acfe_flexible_layout_title','Timeline'),(165332,40589,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(165333,40589,'blocks_6_options_theme','#f5f5f5'),(165334,40589,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(165335,40589,'blocks_6_options',''),(165336,40589,'_blocks_6_options','field_6177de53d1195'),(165337,40589,'blocks_6_timeline_content_title',''),(165338,40589,'_blocks_6_timeline_content_title','field_6177de53d1198'),(165339,40589,'blocks_6_timeline_content_heading','Course details'),(165340,40589,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(165341,40589,'blocks_6_timeline_content_text',''),(165342,40589,'_blocks_6_timeline_content_text','field_6177de53d119a'),(165343,40589,'blocks_6_timeline_content_actions',''),(165344,40589,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(165345,40589,'blocks_6_timeline_content',''),(165346,40589,'_blocks_6_timeline_content','field_6177de53d1197'),(165347,40589,'blocks_6_timeline_items_0_title','First Steps '),(165348,40589,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(165349,40589,'blocks_6_timeline_items_0_text','This first section is all about defining the types of people you want to work with – your ideal client. Doing this provides the context for all the other decisions you make as part of your business. '),(165350,40589,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(165351,40589,'blocks_6_timeline_items_1_title','Business Set Up '),(165352,40589,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(165353,40589,'blocks_6_timeline_items_1_text','This section covers the administrative side of your business, including the legal structure, financial management and GDPR. '),(165354,40589,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(165355,40589,'blocks_6_timeline_items_2_title','Business Planning '),(165356,40589,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(165357,40589,'blocks_6_timeline_items_2_text','In this section, we look at how to do a SWOT and PEST analysis, as well as market research to provide the information you need to plan your business and for product development. '),(165358,40589,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(165359,40589,'blocks_6_timeline_items_3_title','Product Development '),(165360,40589,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(165361,40589,'blocks_6_timeline_items_3_text','One of the most critical stages in the process is product development. Personal training is not a tangible ‘thing’ like cars, shoes or food, so in this section, you’ll learn how to put together packages and services that clients understand and are attracted to. '),(165362,40589,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(165363,40589,'blocks_6_timeline_items_4_title','Marketing '),(165364,40589,'_blocks_6_timeline_items_4_title','field_6177de53d119f'),(165365,40589,'blocks_6_timeline_items_4_text','In this section, you’ll learn about the marketing funnel, as well as offline and online marketing approaches, with specific techniques you can use immediately '),(165366,40589,'_blocks_6_timeline_items_4_text','field_6177de53d11a0'),(165367,40589,'blocks_6_timeline_items_5_title','Sales '),(165368,40589,'_blocks_6_timeline_items_5_title','field_6177de53d119f'),(165369,40589,'blocks_6_timeline_items_5_text','Sales skills are crucial to success as a personal trainer. This section covers the ‘principles of persuasion’ as well as strategies to handle common objections from potential clients. '),(165370,40589,'_blocks_6_timeline_items_5_text','field_6177de53d11a0'),(165371,40589,'blocks_6_timeline_items_6_title','Running Your Business '),(165372,40589,'_blocks_6_timeline_items_6_title','field_6177de53d119f'),(165373,40589,'blocks_6_timeline_items_6_text','As your client base expands you need to develop systems and processes to enable things to run smoothly and for your business to grow in a sustainable way. This final section provides the resources to help you do that.  '),(165374,40589,'_blocks_6_timeline_items_6_text','field_6177de53d11a0'),(165375,40589,'blocks_6_timeline_items','7'),(165376,40589,'_blocks_6_timeline_items','field_6177de53d119d'),(165377,40589,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165378,40589,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(165379,40589,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165380,40589,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(165381,40589,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165382,40589,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(165383,40589,'blocks_5_tabs_3_tab_label','Entry requirements'),(165384,40589,'_blocks_5_tabs_3_tab_label','field_6177d0068141a'),(165385,40589,'blocks_5_tabs_3_tab_content_title',''),(165386,40589,'_blocks_5_tabs_3_tab_content_title','field_6177cfcd81414'),(165387,40589,'blocks_5_tabs_3_tab_content_heading','To do this course, you will need'),(165388,40589,'_blocks_5_tabs_3_tab_content_heading','field_6177cfcd81415'),(165389,40589,'blocks_5_tabs_3_tab_content_text','<ul>\r\n 	<li>There are no entry requirements for this course.</li>\r\n 	<li>If you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.</li>\r\n</ul>'),(165390,40589,'_blocks_5_tabs_3_tab_content_text','field_6177cfcd81416'),(165391,40589,'blocks_5_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165392,40589,'_blocks_5_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(165393,40589,'blocks_5_tabs_3_tab_content_actions','1'),(165394,40589,'_blocks_5_tabs_3_tab_content_actions','field_6177cfcd81417'),(165395,40589,'blocks_5_tabs_3_tab_content',''),(165396,40589,'_blocks_5_tabs_3_tab_content','field_6177cfcd81413'),(165397,40589,'blocks_5_tabs_3_tab_image',''),(165398,40589,'_blocks_5_tabs_3_tab_image','field_6177cfcd81412'),(165399,40589,'blocks_7_acfe_flexible_toggle',''),(165400,40589,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(165401,40589,'blocks_7_acfe_flexible_layout_title','Template'),(165402,40589,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(165403,40589,'blocks_7_template','39401'),(165404,40589,'_blocks_7_template','field_617bdd570fe01'),(165405,40589,'blocks_8_acfe_flexible_toggle',''),(165406,40589,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(165407,40589,'blocks_8_acfe_flexible_layout_title','Text Block'),(165408,40589,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(165409,40589,'blocks_8_options_theme','#b61234'),(165410,40589,'_blocks_8_options_theme','field_6176830e2ad17'),(165411,40589,'blocks_8_options',''),(165412,40589,'_blocks_8_options','field_6176830e2ad16'),(165413,40589,'blocks_8_text_block_heading','Frequently Bought Together'),(165414,40589,'_blocks_8_text_block_heading','field_617669d413097'),(165415,40589,'blocks_8_text_block_content','Check out some other courses that are frequently purchased with this one.'),(165416,40589,'_blocks_8_text_block_content','field_617669ec13098'),(165417,40589,'blocks_9_acfe_flexible_toggle',''),(165418,40589,'_blocks_9_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(165419,40589,'blocks_9_acfe_flexible_layout_title','Course Comparison'),(165420,40589,'_blocks_9_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(165421,40589,'blocks_9_options_theme','#b61234'),(165422,40589,'_blocks_9_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(165423,40589,'blocks_9_options',''),(165424,40589,'_blocks_9_options','field_617ac0b7f6c08'),(165425,40589,'blocks_9_show','selection'),(165426,40589,'_blocks_9_show','field_61a49cba9d946'),(165427,40589,'blocks_9_category','403'),(165428,40589,'_blocks_9_category','field_61a49cd79d947'),(165429,40589,'blocks_10_acfe_flexible_toggle',''),(165430,40589,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(165431,40589,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(165432,40589,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(165433,40589,'blocks_10_options_theme','#f5f5f5'),(165434,40589,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(165435,40589,'blocks_10_options_state','0'),(165436,40589,'_blocks_10_options_state','field_6239fcb7508c5'),(165437,40589,'blocks_10_options',''),(165438,40589,'_blocks_10_options','field_6177e2991ac44'),(165439,40589,'blocks_10_content_title',''),(165440,40589,'_blocks_10_content_title','field_64d237e8bb1e2'),(165441,40589,'blocks_10_content_heading','FAQ\'s'),(165442,40589,'_blocks_10_content_heading','field_64d237e8bb1e3'),(165443,40589,'blocks_10_content_text','Check out our FAQ\'s to further your understanding of this course and help you make a decision that\'s best for you.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today:<a href=\"tel:01329 829444\"> 01329 829444</a>'),(165444,40589,'_blocks_10_content_text','field_64d237e8bb1e4'),(165445,40589,'blocks_10_content_actions',''),(165446,40589,'_blocks_10_content_actions','field_64d237e8bb1e5'),(165447,40589,'blocks_10_content_align','left'),(165448,40589,'_blocks_10_content_align','field_64d2443e6b6aa'),(165449,40589,'blocks_10_content',''),(165450,40589,'_blocks_10_content','field_64d237e8bb1e1'),(165451,40589,'blocks_10_accordion_content','faqs'),(165452,40589,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(165453,40589,'blocks_10_accordion_faqs_select','a:5:{i:0;s:5:\"39403\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(165454,40589,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(165455,40589,'blocks_10_actions',''),(165456,40589,'_blocks_10_actions','field_61a746a817f7a'),(165457,40589,'blocks_9_courses','a:1:{i:0;s:5:\"40263\";}'),(165458,40589,'_blocks_9_courses','field_61b244781ee0a'),(165459,40590,'hide_hero','0'),(165460,40590,'_hide_hero','field_66a2380fcda39'),(165461,40590,'hero_title','Building Your Fitness Business'),(165462,40590,'_hero_title','field_617571fe285e8'),(165463,40590,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(165464,40590,'_hero_text','field_6175723c285e9'),(165465,40590,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165466,40590,'_hero_actions_0_button','field_61757281285eb'),(165467,40590,'hero_actions','1'),(165468,40590,'_hero_actions','field_61757270285ea'),(165469,40590,'hero_style','default'),(165470,40590,'_hero_style','field_62051d9dc5324'),(165471,40590,'_thumbnail_id','40576'),(165472,40590,'__thumbnail_id','field_617570855ddaf'),(165473,40590,'hero_image_pos_x','right'),(165474,40590,'_hero_image_pos_x','field_62ec3d05390bb'),(165475,40590,'hero_image_pos_y','top'),(165476,40590,'_hero_image_pos_y','field_62ec3d05390bc'),(165477,40590,'hero_image_pos',''),(165478,40590,'_hero_image_pos','field_62ec3d05390ba'),(165479,40590,'fft_hide_from_listings','0'),(165480,40590,'_fft_hide_from_listings','field_61f1320446ab2'),(165481,40590,'fft_page_format','default'),(165482,40590,'_fft_page_format','field_61ae213f1f218'),(165483,40590,'fft_hide_nav','0'),(165484,40590,'_fft_hide_nav','field_635bd5e43527c'),(165485,40590,'fft_hide_header_call_to_action','0'),(165486,40590,'_fft_hide_header_call_to_action','field_635bd6723527d'),(165487,40590,'fft_page_sitemap','0'),(165488,40590,'_fft_page_sitemap','field_61af9b34e8181'),(165489,40590,'blocks_0_acfe_flexible_toggle',''),(165490,40590,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(165491,40590,'blocks_0_acfe_flexible_layout_title','Template'),(165492,40590,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(165493,40590,'blocks_0_template','39087'),(165494,40590,'_blocks_0_template','field_617bdd570fe01'),(165495,40590,'blocks_1_acfe_flexible_toggle',''),(165496,40590,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(165497,40590,'blocks_1_acfe_flexible_layout_title','Text Block'),(165498,40590,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(165499,40590,'blocks_1_options_theme','#ffffff'),(165500,40590,'_blocks_1_options_theme','field_6176830e2ad17'),(165501,40590,'blocks_1_options',''),(165502,40590,'_blocks_1_options','field_6176830e2ad16'),(165503,40590,'blocks_1_text_block_heading','Benefits of training with us'),(165504,40590,'_blocks_1_text_block_heading','field_617669d413097'),(165505,40590,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(165506,40590,'_blocks_1_text_block_content','field_617669ec13098'),(165507,40590,'blocks_2_acfe_flexible_toggle',''),(165508,40590,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(165509,40590,'blocks_2_acfe_flexible_layout_title','Logos'),(165510,40590,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(165511,40590,'blocks_2_options_theme','#ffffff'),(165512,40590,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(165513,40590,'blocks_2_options_format','grid'),(165514,40590,'_blocks_2_options_format','field_61782964ee971'),(165515,40590,'blocks_2_options',''),(165516,40590,'_blocks_2_options','field_61782954ee965'),(165517,40590,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(165518,40590,'_blocks_2_logos','field_61782954ee96d'),(165519,40590,'blocks_2_title',''),(165520,40590,'_blocks_2_title','field_668fbfdc2daa1'),(165521,40590,'blocks_3_acfe_flexible_toggle',''),(165522,40590,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(165523,40590,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(165524,40590,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(165525,40590,'blocks_3_options_theme','#f5f5f5'),(165526,40590,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(165527,40590,'blocks_3_options_reverse','0'),(165528,40590,'_blocks_3_options_reverse','field_61768049bb8ac'),(165529,40590,'blocks_3_options',''),(165530,40590,'_blocks_3_options','field_617682517c334'),(165531,40590,'blocks_3_split_5050_image','40577'),(165532,40590,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(165533,40590,'blocks_3_split_5050_video',''),(165534,40590,'_blocks_3_split_5050_video','field_6239f3160848a'),(165535,40590,'blocks_3_split_5050_content_title',''),(165536,40590,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(165537,40590,'blocks_3_split_5050_content_heading','Course Overview'),(165538,40590,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(165539,40590,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(165540,40590,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(165541,40590,'blocks_3_split_5050_content_actions',''),(165542,40590,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(165543,40590,'blocks_3_split_5050_content',''),(165544,40590,'_blocks_3_split_5050_content','field_61767afceb8ba'),(165545,40590,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:13:\"step_timeline\";i:7;s:8:\"template\";i:8;s:10:\"text_block\";i:9;s:14:\"course_compare\";i:10;s:10:\"accordions\";}'),(165546,40590,'_blocks','field_6176696113096'),(165547,40590,'course_label_text',''),(165548,40590,'_course_label_text','field_61e17babf71fa'),(165549,40590,'course_label',''),(165550,40590,'_course_label','field_61e12f92749a7'),(165551,40590,'course_description',''),(165552,40590,'_course_description','field_617ac5788e5e1'),(165553,40590,'course_key_info',''),(165554,40590,'_course_key_info','field_617ac6ad8e5e2'),(165555,40590,'course_included',''),(165556,40590,'_course_included','field_617ac6f08e5e4'),(165557,40590,'blocks_4_acfe_flexible_toggle',''),(165558,40590,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(165559,40590,'blocks_4_acfe_flexible_layout_title','Text Block'),(165560,40590,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(165561,40590,'blocks_4_options_theme','#ffffff'),(165562,40590,'_blocks_4_options_theme','field_6176830e2ad17'),(165563,40590,'blocks_4_options',''),(165564,40590,'_blocks_4_options','field_6176830e2ad16'),(165565,40590,'blocks_4_text_block_heading','Learn more about this course'),(165566,40590,'_blocks_4_text_block_heading','field_617669d413097'),(165567,40590,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(165568,40590,'_blocks_4_text_block_content','field_617669ec13098'),(165569,40590,'blocks_5_acfe_flexible_toggle',''),(165570,40590,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(165571,40590,'blocks_5_acfe_flexible_layout_title','Tabs'),(165572,40590,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(165573,40590,'blocks_5_options_theme','#ffffff'),(165574,40590,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(165575,40590,'blocks_5_options',''),(165576,40590,'_blocks_5_options','field_6177cfcd8140f'),(165577,40590,'blocks_5_tabs_0_tab_label','E-learning '),(165578,40590,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(165579,40590,'blocks_5_tabs_0_tab_content_title',''),(165580,40590,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(165581,40590,'blocks_5_tabs_0_tab_content_heading',''),(165582,40590,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(165583,40590,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(165584,40590,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(165585,40590,'blocks_5_tabs_0_tab_content_actions','1'),(165586,40590,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(165587,40590,'blocks_5_tabs_0_tab_content',''),(165588,40590,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(165589,40590,'blocks_5_tabs_0_tab_image',''),(165590,40590,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(165591,40590,'blocks_5_tabs_1_tab_label','Content '),(165592,40590,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(165593,40590,'blocks_5_tabs_1_tab_content_title',''),(165594,40590,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(165595,40590,'blocks_5_tabs_1_tab_content_heading',''),(165596,40590,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(165597,40590,'blocks_5_tabs_1_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(165598,40590,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(165599,40590,'blocks_5_tabs_1_tab_content_actions','1'),(165600,40590,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(165601,40590,'blocks_5_tabs_1_tab_content',''),(165602,40590,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(165603,40590,'blocks_5_tabs_1_tab_image',''),(165604,40590,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(165605,40590,'blocks_5_tabs_2_tab_label','Assessment '),(165606,40590,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(165607,40590,'blocks_5_tabs_2_tab_content_title',''),(165608,40590,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(165609,40590,'blocks_5_tabs_2_tab_content_heading',''),(165610,40590,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(165611,40590,'blocks_5_tabs_2_tab_content_text','There is no assessment for this course.'),(165612,40590,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(165613,40590,'blocks_5_tabs_2_tab_content_actions','1'),(165614,40590,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(165615,40590,'blocks_5_tabs_2_tab_content',''),(165616,40590,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(165617,40590,'blocks_5_tabs_2_tab_image',''),(165618,40590,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(165619,40590,'blocks_5_tabs','4'),(165620,40590,'_blocks_5_tabs','field_6177cff281419'),(165621,40590,'blocks_6_acfe_flexible_toggle',''),(165622,40590,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(165623,40590,'blocks_6_acfe_flexible_layout_title','Timeline'),(165624,40590,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(165625,40590,'blocks_6_options_theme','#f5f5f5'),(165626,40590,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(165627,40590,'blocks_6_options',''),(165628,40590,'_blocks_6_options','field_6177de53d1195'),(165629,40590,'blocks_6_timeline_content_title',''),(165630,40590,'_blocks_6_timeline_content_title','field_6177de53d1198'),(165631,40590,'blocks_6_timeline_content_heading','Course details'),(165632,40590,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(165633,40590,'blocks_6_timeline_content_text',''),(165634,40590,'_blocks_6_timeline_content_text','field_6177de53d119a'),(165635,40590,'blocks_6_timeline_content_actions',''),(165636,40590,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(165637,40590,'blocks_6_timeline_content',''),(165638,40590,'_blocks_6_timeline_content','field_6177de53d1197'),(165639,40590,'blocks_6_timeline_items_0_title','First Steps '),(165640,40590,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(165641,40590,'blocks_6_timeline_items_0_text','This first section is all about defining the types of people you want to work with – your ideal client. Doing this provides the context for all the other decisions you make as part of your business. '),(165642,40590,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(165643,40590,'blocks_6_timeline_items_1_title','Business Set Up '),(165644,40590,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(165645,40590,'blocks_6_timeline_items_1_text','This section covers the administrative side of your business, including the legal structure, financial management and GDPR. '),(165646,40590,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(165647,40590,'blocks_6_timeline_items_2_title','Business Planning '),(165648,40590,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(165649,40590,'blocks_6_timeline_items_2_text','In this section, we look at how to do a SWOT and PEST analysis, as well as market research to provide the information you need to plan your business and for product development. '),(165650,40590,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(165651,40590,'blocks_6_timeline_items_3_title','Product Development '),(165652,40590,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(165653,40590,'blocks_6_timeline_items_3_text','One of the most critical stages in the process is product development. Personal training is not a tangible ‘thing’ like cars, shoes or food, so in this section, you’ll learn how to put together packages and services that clients understand and are attracted to. '),(165654,40590,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(165655,40590,'blocks_6_timeline_items_4_title','Marketing '),(165656,40590,'_blocks_6_timeline_items_4_title','field_6177de53d119f'),(165657,40590,'blocks_6_timeline_items_4_text','In this section, you’ll learn about the marketing funnel, as well as offline and online marketing approaches, with specific techniques you can use immediately '),(165658,40590,'_blocks_6_timeline_items_4_text','field_6177de53d11a0'),(165659,40590,'blocks_6_timeline_items_5_title','Sales '),(165660,40590,'_blocks_6_timeline_items_5_title','field_6177de53d119f'),(165661,40590,'blocks_6_timeline_items_5_text','Sales skills are crucial to success as a personal trainer. This section covers the ‘principles of persuasion’ as well as strategies to handle common objections from potential clients. '),(165662,40590,'_blocks_6_timeline_items_5_text','field_6177de53d11a0'),(165663,40590,'blocks_6_timeline_items_6_title','Running Your Business '),(165664,40590,'_blocks_6_timeline_items_6_title','field_6177de53d119f'),(165665,40590,'blocks_6_timeline_items_6_text','As your client base expands you need to develop systems and processes to enable things to run smoothly and for your business to grow in a sustainable way. This final section provides the resources to help you do that.  '),(165666,40590,'_blocks_6_timeline_items_6_text','field_6177de53d11a0'),(165667,40590,'blocks_6_timeline_items','7'),(165668,40590,'_blocks_6_timeline_items','field_6177de53d119d'),(165669,40590,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165670,40590,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(165671,40590,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165672,40590,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(165673,40590,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165674,40590,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(165675,40590,'blocks_5_tabs_3_tab_label','Entry requirements'),(165676,40590,'_blocks_5_tabs_3_tab_label','field_6177d0068141a'),(165677,40590,'blocks_5_tabs_3_tab_content_title',''),(165678,40590,'_blocks_5_tabs_3_tab_content_title','field_6177cfcd81414'),(165679,40590,'blocks_5_tabs_3_tab_content_heading','To do this course, you will need'),(165680,40590,'_blocks_5_tabs_3_tab_content_heading','field_6177cfcd81415'),(165681,40590,'blocks_5_tabs_3_tab_content_text','<ul>\r\n 	<li>There are no entry requirements for this course.</li>\r\n 	<li>If you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.</li>\r\n</ul>'),(165682,40590,'_blocks_5_tabs_3_tab_content_text','field_6177cfcd81416'),(165683,40590,'blocks_5_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165684,40590,'_blocks_5_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(165685,40590,'blocks_5_tabs_3_tab_content_actions','1'),(165686,40590,'_blocks_5_tabs_3_tab_content_actions','field_6177cfcd81417'),(165687,40590,'blocks_5_tabs_3_tab_content',''),(165688,40590,'_blocks_5_tabs_3_tab_content','field_6177cfcd81413'),(165689,40590,'blocks_5_tabs_3_tab_image',''),(165690,40590,'_blocks_5_tabs_3_tab_image','field_6177cfcd81412'),(165691,40590,'blocks_7_acfe_flexible_toggle',''),(165692,40590,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(165693,40590,'blocks_7_acfe_flexible_layout_title','Template'),(165694,40590,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(165695,40590,'blocks_7_template','39401'),(165696,40590,'_blocks_7_template','field_617bdd570fe01'),(165697,40590,'blocks_8_acfe_flexible_toggle',''),(165698,40590,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(165699,40590,'blocks_8_acfe_flexible_layout_title','Text Block'),(165700,40590,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(165701,40590,'blocks_8_options_theme','#b61234'),(165702,40590,'_blocks_8_options_theme','field_6176830e2ad17'),(165703,40590,'blocks_8_options',''),(165704,40590,'_blocks_8_options','field_6176830e2ad16'),(165705,40590,'blocks_8_text_block_heading','Frequently Bought Together'),(165706,40590,'_blocks_8_text_block_heading','field_617669d413097'),(165707,40590,'blocks_8_text_block_content','Check out some other courses that are frequently purchased with this one.'),(165708,40590,'_blocks_8_text_block_content','field_617669ec13098'),(165709,40590,'blocks_9_acfe_flexible_toggle',''),(165710,40590,'_blocks_9_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(165711,40590,'blocks_9_acfe_flexible_layout_title','Course Comparison'),(165712,40590,'_blocks_9_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(165713,40590,'blocks_9_options_theme','#b61234'),(165714,40590,'_blocks_9_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(165715,40590,'blocks_9_options',''),(165716,40590,'_blocks_9_options','field_617ac0b7f6c08'),(165717,40590,'blocks_9_show','selection'),(165718,40590,'_blocks_9_show','field_61a49cba9d946'),(165719,40590,'blocks_9_category','403'),(165720,40590,'_blocks_9_category','field_61a49cd79d947'),(165721,40590,'blocks_10_acfe_flexible_toggle',''),(165722,40590,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(165723,40590,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(165724,40590,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(165725,40590,'blocks_10_options_theme','#f5f5f5'),(165726,40590,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(165727,40590,'blocks_10_options_state','0'),(165728,40590,'_blocks_10_options_state','field_6239fcb7508c5'),(165729,40590,'blocks_10_options',''),(165730,40590,'_blocks_10_options','field_6177e2991ac44'),(165731,40590,'blocks_10_content_title',''),(165732,40590,'_blocks_10_content_title','field_64d237e8bb1e2'),(165733,40590,'blocks_10_content_heading','FAQ\'s'),(165734,40590,'_blocks_10_content_heading','field_64d237e8bb1e3'),(165735,40590,'blocks_10_content_text','Check out our FAQ\'s to further your understanding of this course and help you make a decision that\'s best for you.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today:<a href=\"tel:01329 829444\"> 01329 829444</a>'),(165736,40590,'_blocks_10_content_text','field_64d237e8bb1e4'),(165737,40590,'blocks_10_content_actions',''),(165738,40590,'_blocks_10_content_actions','field_64d237e8bb1e5'),(165739,40590,'blocks_10_content_align','left'),(165740,40590,'_blocks_10_content_align','field_64d2443e6b6aa'),(165741,40590,'blocks_10_content',''),(165742,40590,'_blocks_10_content','field_64d237e8bb1e1'),(165743,40590,'blocks_10_accordion_content','faqs'),(165744,40590,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(165745,40590,'blocks_10_accordion_faqs_select','a:5:{i:0;s:5:\"39403\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(165746,40590,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(165747,40590,'blocks_10_actions',''),(165748,40590,'_blocks_10_actions','field_61a746a817f7a'),(165749,40590,'blocks_9_courses','a:1:{i:0;s:5:\"40263\";}'),(165750,40590,'_blocks_9_courses','field_61b244781ee0a'),(165751,40271,'_edit_lock','1727342478:5'),(165752,40271,'_edit_last','5'),(165753,40271,'_wp_old_date','2024-09-10'),(165754,40271,'hide_hero','0'),(165755,40271,'_hide_hero','field_66a2380fcda39'),(165756,40271,'hero_title','Coaching Fitness Online'),(165757,40271,'_hero_title','field_617571fe285e8'),(165758,40271,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(165759,40271,'_hero_text','field_6175723c285e9'),(165760,40271,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165761,40271,'_hero_actions_0_button','field_61757281285eb'),(165762,40271,'hero_actions','1'),(165763,40271,'_hero_actions','field_61757270285ea'),(165764,40271,'hero_style','default'),(165765,40271,'_hero_style','field_62051d9dc5324'),(165767,40271,'__thumbnail_id','field_617570855ddaf'),(165768,40271,'hero_image_pos_x','right'),(165769,40271,'_hero_image_pos_x','field_62ec3d05390bb'),(165770,40271,'hero_image_pos_y','top'),(165771,40271,'_hero_image_pos_y','field_62ec3d05390bc'),(165772,40271,'hero_image_pos',''),(165773,40271,'_hero_image_pos','field_62ec3d05390ba'),(165774,40271,'fft_hide_from_listings','0'),(165775,40271,'_fft_hide_from_listings','field_61f1320446ab2'),(165776,40271,'fft_page_format','default'),(165777,40271,'_fft_page_format','field_61ae213f1f218'),(165778,40271,'fft_hide_nav','0'),(165779,40271,'_fft_hide_nav','field_635bd5e43527c'),(165780,40271,'fft_hide_header_call_to_action','0'),(165781,40271,'_fft_hide_header_call_to_action','field_635bd6723527d'),(165782,40271,'fft_page_sitemap','0'),(165783,40271,'_fft_page_sitemap','field_61af9b34e8181'),(165784,40271,'blocks_0_acfe_flexible_toggle',''),(165785,40271,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(165786,40271,'blocks_0_acfe_flexible_layout_title','Template'),(165787,40271,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(165788,40271,'blocks_0_template','39087'),(165789,40271,'_blocks_0_template','field_617bdd570fe01'),(165790,40271,'blocks_1_acfe_flexible_toggle',''),(165791,40271,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(165792,40271,'blocks_1_acfe_flexible_layout_title','Text Block'),(165793,40271,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(165794,40271,'blocks_1_options_theme','#f5f5f5'),(165795,40271,'_blocks_1_options_theme','field_6176830e2ad17'),(165796,40271,'blocks_1_options',''),(165797,40271,'_blocks_1_options','field_6176830e2ad16'),(165798,40271,'blocks_1_text_block_heading','Course Overview'),(165799,40271,'_blocks_1_text_block_heading','field_617669d413097'),(165800,40271,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(165801,40271,'_blocks_1_text_block_content','field_617669ec13098'),(165802,40271,'blocks_2_acfe_flexible_toggle',''),(165803,40271,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(165804,40271,'blocks_2_acfe_flexible_layout_title','Logos'),(165805,40271,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(165806,40271,'blocks_2_options_theme','#ffffff'),(165807,40271,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(165808,40271,'blocks_2_options_format','grid'),(165809,40271,'_blocks_2_options_format','field_61782964ee971'),(165810,40271,'blocks_2_options',''),(165811,40271,'_blocks_2_options','field_61782954ee965'),(165812,40271,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(165813,40271,'_blocks_2_logos','field_61782954ee96d'),(165814,40271,'blocks_2_title',''),(165815,40271,'_blocks_2_title','field_668fbfdc2daa1'),(165816,40271,'blocks_3_acfe_flexible_toggle',''),(165817,40271,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(165818,40271,'blocks_3_acfe_flexible_layout_title','Timeline'),(165819,40271,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(165820,40271,'blocks_3_options_theme','#b61234'),(165821,40271,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(165822,40271,'blocks_3_options',''),(165823,40271,'_blocks_3_options','field_6177de53d1195'),(165824,40271,'blocks_3_timeline_content_title',''),(165825,40271,'_blocks_3_timeline_content_title','field_6177de53d1198'),(165826,40271,'blocks_3_timeline_content_heading','Course overview'),(165827,40271,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(165828,40271,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(165829,40271,'_blocks_3_timeline_content_text','field_6177de53d119a'),(165830,40271,'blocks_3_timeline_content_actions',''),(165831,40271,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(165832,40271,'blocks_3_timeline_content',''),(165833,40271,'_blocks_3_timeline_content','field_6177de53d1197'),(165834,40271,'blocks_3_timeline_items_0_title','CIMSPA'),(165835,40271,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(165836,40271,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(165837,40271,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(165838,40271,'blocks_3_timeline_items_1_title','Course Type'),(165839,40271,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(165840,40271,'blocks_3_timeline_items_1_text','100% Online Learning'),(165841,40271,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(165842,40271,'blocks_3_timeline_items_2_title','CPD points'),(165843,40271,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(165844,40271,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(165845,40271,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(165846,40271,'blocks_3_timeline_items_3_title','Learning'),(165847,40271,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(165848,40271,'blocks_3_timeline_items_3_text','5-7 Hours '),(165849,40271,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(165850,40271,'blocks_3_timeline_items','4'),(165851,40271,'_blocks_3_timeline_items','field_6177de53d119d'),(165852,40271,'blocks','a:15:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";i:8;s:8:\"template\";i:9;s:10:\"text_block\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:18:\"testimonial_slider\";i:13;s:5:\"video\";i:14;s:13:\"step_timeline\";}'),(165853,40271,'_blocks','field_6176696113096'),(165854,40271,'course_label_text','Coaching Fitness Online'),(165855,40271,'_course_label_text','field_61e17babf71fa'),(165856,40271,'course_label',''),(165857,40271,'_course_label','field_61e12f92749a7'),(165858,40271,'course_description','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(165859,40271,'_course_description','field_617ac5788e5e1'),(165860,40271,'course_key_info','3'),(165861,40271,'_course_key_info','field_617ac6ad8e5e2'),(165862,40271,'course_included','Marketing your business\r\nMarketing for new clients\r\nSales structure & management\r\nCoaching clients online\r\nLegalities of running a business\r\nEast – to- implement strategies\r\nInsurance help & guidance'),(165863,40271,'_course_included','field_617ac6f08e5e4'),(165864,40271,'_yoast_wpseo_primary_course-cat','403'),(165865,40271,'_yoast_wpseo_estimated-reading-time-minutes','0'),(165866,40591,'hide_hero','0'),(165867,40591,'_hide_hero','field_66a2380fcda39'),(165868,40591,'hero_title','Coaching Fitness Online'),(165869,40591,'_hero_title','field_617571fe285e8'),(165870,40591,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(165871,40591,'_hero_text','field_6175723c285e9'),(165872,40591,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165873,40591,'_hero_actions_0_button','field_61757281285eb'),(165874,40591,'hero_actions','1'),(165875,40591,'_hero_actions','field_61757270285ea'),(165876,40591,'hero_style','default'),(165877,40591,'_hero_style','field_62051d9dc5324'),(165878,40591,'_thumbnail_id',''),(165879,40591,'__thumbnail_id','field_617570855ddaf'),(165880,40591,'hero_image_pos_x','right'),(165881,40591,'_hero_image_pos_x','field_62ec3d05390bb'),(165882,40591,'hero_image_pos_y','top'),(165883,40591,'_hero_image_pos_y','field_62ec3d05390bc'),(165884,40591,'hero_image_pos',''),(165885,40591,'_hero_image_pos','field_62ec3d05390ba'),(165886,40591,'fft_hide_from_listings','0'),(165887,40591,'_fft_hide_from_listings','field_61f1320446ab2'),(165888,40591,'fft_page_format','default'),(165889,40591,'_fft_page_format','field_61ae213f1f218'),(165890,40591,'fft_hide_nav','0'),(165891,40591,'_fft_hide_nav','field_635bd5e43527c'),(165892,40591,'fft_hide_header_call_to_action','0'),(165893,40591,'_fft_hide_header_call_to_action','field_635bd6723527d'),(165894,40591,'fft_page_sitemap','0'),(165895,40591,'_fft_page_sitemap','field_61af9b34e8181'),(165896,40591,'blocks_0_acfe_flexible_toggle',''),(165897,40591,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(165898,40591,'blocks_0_acfe_flexible_layout_title','Template'),(165899,40591,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(165900,40591,'blocks_0_template','39087'),(165901,40591,'_blocks_0_template','field_617bdd570fe01'),(165902,40591,'blocks_1_acfe_flexible_toggle',''),(165903,40591,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(165904,40591,'blocks_1_acfe_flexible_layout_title','Text Block'),(165905,40591,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(165906,40591,'blocks_1_options_theme','#f5f5f5'),(165907,40591,'_blocks_1_options_theme','field_6176830e2ad17'),(165908,40591,'blocks_1_options',''),(165909,40591,'_blocks_1_options','field_6176830e2ad16'),(165910,40591,'blocks_1_text_block_heading','Course Overview'),(165911,40591,'_blocks_1_text_block_heading','field_617669d413097'),(165912,40591,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(165913,40591,'_blocks_1_text_block_content','field_617669ec13098'),(165914,40591,'blocks_2_acfe_flexible_toggle',''),(165915,40591,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(165916,40591,'blocks_2_acfe_flexible_layout_title','Logos'),(165917,40591,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(165918,40591,'blocks_2_options_theme','#ffffff'),(165919,40591,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(165920,40591,'blocks_2_options_format','grid'),(165921,40591,'_blocks_2_options_format','field_61782964ee971'),(165922,40591,'blocks_2_options',''),(165923,40591,'_blocks_2_options','field_61782954ee965'),(165924,40591,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(165925,40591,'_blocks_2_logos','field_61782954ee96d'),(165926,40591,'blocks_2_title',''),(165927,40591,'_blocks_2_title','field_668fbfdc2daa1'),(165928,40591,'blocks_3_acfe_flexible_toggle',''),(165929,40591,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(165930,40591,'blocks_3_acfe_flexible_layout_title','Timeline'),(165931,40591,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(165932,40591,'blocks_3_options_theme','#b61234'),(165933,40591,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(165934,40591,'blocks_3_options',''),(165935,40591,'_blocks_3_options','field_6177de53d1195'),(165936,40591,'blocks_3_timeline_content_title',''),(165937,40591,'_blocks_3_timeline_content_title','field_6177de53d1198'),(165938,40591,'blocks_3_timeline_content_heading','Course overview'),(165939,40591,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(165940,40591,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(165941,40591,'_blocks_3_timeline_content_text','field_6177de53d119a'),(165942,40591,'blocks_3_timeline_content_actions',''),(165943,40591,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(165944,40591,'blocks_3_timeline_content',''),(165945,40591,'_blocks_3_timeline_content','field_6177de53d1197'),(165946,40591,'blocks_3_timeline_items_0_title','CIMSPA'),(165947,40591,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(165948,40591,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(165949,40591,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(165950,40591,'blocks_3_timeline_items_1_title','Course Type'),(165951,40591,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(165952,40591,'blocks_3_timeline_items_1_text','100% Online Learning'),(165953,40591,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(165954,40591,'blocks_3_timeline_items_2_title','CPD points'),(165955,40591,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(165956,40591,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(165957,40591,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(165958,40591,'blocks_3_timeline_items_3_title','Learning'),(165959,40591,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(165960,40591,'blocks_3_timeline_items_3_text','5-7 Hours '),(165961,40591,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(165962,40591,'blocks_3_timeline_items','4'),(165963,40591,'_blocks_3_timeline_items','field_6177de53d119d'),(165964,40591,'blocks','a:4:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";}'),(165965,40591,'_blocks','field_6176696113096'),(165966,40591,'course_label_text',''),(165967,40591,'_course_label_text','field_61e17babf71fa'),(165968,40591,'course_label',''),(165969,40591,'_course_label','field_61e12f92749a7'),(165970,40591,'course_description',''),(165971,40591,'_course_description','field_617ac5788e5e1'),(165972,40591,'course_key_info',''),(165973,40591,'_course_key_info','field_617ac6ad8e5e2'),(165974,40591,'course_included',''),(165975,40591,'_course_included','field_617ac6f08e5e4'),(165976,40592,'hide_hero','0'),(165977,40592,'_hide_hero','field_66a2380fcda39'),(165978,40592,'hero_title','Coaching Fitness Online'),(165979,40592,'_hero_title','field_617571fe285e8'),(165980,40592,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(165981,40592,'_hero_text','field_6175723c285e9'),(165982,40592,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(165983,40592,'_hero_actions_0_button','field_61757281285eb'),(165984,40592,'hero_actions','1'),(165985,40592,'_hero_actions','field_61757270285ea'),(165986,40592,'hero_style','default'),(165987,40592,'_hero_style','field_62051d9dc5324'),(165988,40592,'_thumbnail_id',''),(165989,40592,'__thumbnail_id','field_617570855ddaf'),(165990,40592,'hero_image_pos_x','right'),(165991,40592,'_hero_image_pos_x','field_62ec3d05390bb'),(165992,40592,'hero_image_pos_y','top'),(165993,40592,'_hero_image_pos_y','field_62ec3d05390bc'),(165994,40592,'hero_image_pos',''),(165995,40592,'_hero_image_pos','field_62ec3d05390ba'),(165996,40592,'fft_hide_from_listings','0'),(165997,40592,'_fft_hide_from_listings','field_61f1320446ab2'),(165998,40592,'fft_page_format','default'),(165999,40592,'_fft_page_format','field_61ae213f1f218'),(166000,40592,'fft_hide_nav','0'),(166001,40592,'_fft_hide_nav','field_635bd5e43527c'),(166002,40592,'fft_hide_header_call_to_action','0'),(166003,40592,'_fft_hide_header_call_to_action','field_635bd6723527d'),(166004,40592,'fft_page_sitemap','0'),(166005,40592,'_fft_page_sitemap','field_61af9b34e8181'),(166006,40592,'blocks_0_acfe_flexible_toggle',''),(166007,40592,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(166008,40592,'blocks_0_acfe_flexible_layout_title','Template'),(166009,40592,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(166010,40592,'blocks_0_template','39087'),(166011,40592,'_blocks_0_template','field_617bdd570fe01'),(166012,40592,'blocks_1_acfe_flexible_toggle',''),(166013,40592,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(166014,40592,'blocks_1_acfe_flexible_layout_title','Text Block'),(166015,40592,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(166016,40592,'blocks_1_options_theme','#f5f5f5'),(166017,40592,'_blocks_1_options_theme','field_6176830e2ad17'),(166018,40592,'blocks_1_options',''),(166019,40592,'_blocks_1_options','field_6176830e2ad16'),(166020,40592,'blocks_1_text_block_heading','Course Overview'),(166021,40592,'_blocks_1_text_block_heading','field_617669d413097'),(166022,40592,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(166023,40592,'_blocks_1_text_block_content','field_617669ec13098'),(166024,40592,'blocks_2_acfe_flexible_toggle',''),(166025,40592,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(166026,40592,'blocks_2_acfe_flexible_layout_title','Logos'),(166027,40592,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(166028,40592,'blocks_2_options_theme','#ffffff'),(166029,40592,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(166030,40592,'blocks_2_options_format','grid'),(166031,40592,'_blocks_2_options_format','field_61782964ee971'),(166032,40592,'blocks_2_options',''),(166033,40592,'_blocks_2_options','field_61782954ee965'),(166034,40592,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(166035,40592,'_blocks_2_logos','field_61782954ee96d'),(166036,40592,'blocks_2_title',''),(166037,40592,'_blocks_2_title','field_668fbfdc2daa1'),(166038,40592,'blocks_3_acfe_flexible_toggle',''),(166039,40592,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(166040,40592,'blocks_3_acfe_flexible_layout_title','Timeline'),(166041,40592,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(166042,40592,'blocks_3_options_theme','#b61234'),(166043,40592,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(166044,40592,'blocks_3_options',''),(166045,40592,'_blocks_3_options','field_6177de53d1195'),(166046,40592,'blocks_3_timeline_content_title',''),(166047,40592,'_blocks_3_timeline_content_title','field_6177de53d1198'),(166048,40592,'blocks_3_timeline_content_heading','Course overview'),(166049,40592,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(166050,40592,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(166051,40592,'_blocks_3_timeline_content_text','field_6177de53d119a'),(166052,40592,'blocks_3_timeline_content_actions',''),(166053,40592,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(166054,40592,'blocks_3_timeline_content',''),(166055,40592,'_blocks_3_timeline_content','field_6177de53d1197'),(166056,40592,'blocks_3_timeline_items_0_title','CIMSPA'),(166057,40592,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(166058,40592,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(166059,40592,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(166060,40592,'blocks_3_timeline_items_1_title','Course Type'),(166061,40592,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(166062,40592,'blocks_3_timeline_items_1_text','100% Online Learning'),(166063,40592,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(166064,40592,'blocks_3_timeline_items_2_title','CPD points'),(166065,40592,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(166066,40592,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(166067,40592,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(166068,40592,'blocks_3_timeline_items_3_title','Learning'),(166069,40592,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(166070,40592,'blocks_3_timeline_items_3_text','5-7 Hours '),(166071,40592,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(166072,40592,'blocks_3_timeline_items','4'),(166073,40592,'_blocks_3_timeline_items','field_6177de53d119d'),(166074,40592,'blocks','a:4:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";}'),(166075,40592,'_blocks','field_6176696113096'),(166076,40592,'course_label_text',''),(166077,40592,'_course_label_text','field_61e17babf71fa'),(166078,40592,'course_label',''),(166079,40592,'_course_label','field_61e12f92749a7'),(166080,40592,'course_description',''),(166081,40592,'_course_description','field_617ac5788e5e1'),(166082,40592,'course_key_info',''),(166083,40592,'_course_key_info','field_617ac6ad8e5e2'),(166084,40592,'course_included',''),(166085,40592,'_course_included','field_617ac6f08e5e4'),(166087,40593,'hide_hero','0'),(166088,40593,'_hide_hero','field_66a2380fcda39'),(166089,40593,'hero_title','Coaching Fitness Online'),(166090,40593,'_hero_title','field_617571fe285e8'),(166091,40593,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(166092,40593,'_hero_text','field_6175723c285e9'),(166093,40593,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166094,40593,'_hero_actions_0_button','field_61757281285eb'),(166095,40593,'hero_actions','1'),(166096,40593,'_hero_actions','field_61757270285ea'),(166097,40593,'hero_style','default'),(166098,40593,'_hero_style','field_62051d9dc5324'),(166099,40593,'hero_image_pos_x','right'),(166100,40593,'_hero_image_pos_x','field_62ec3d05390bb'),(166101,40593,'hero_image_pos_y','top'),(166102,40593,'_hero_image_pos_y','field_62ec3d05390bc'),(166103,40593,'hero_image_pos',''),(166104,40593,'_hero_image_pos','field_62ec3d05390ba'),(166105,40593,'fft_hide_from_listings','0'),(166106,40593,'_fft_hide_from_listings','field_61f1320446ab2'),(166107,40593,'fft_page_format','default'),(166108,40593,'_fft_page_format','field_61ae213f1f218'),(166109,40593,'fft_hide_nav','0'),(166110,40593,'_fft_hide_nav','field_635bd5e43527c'),(166111,40593,'fft_hide_header_call_to_action','0'),(166112,40593,'_fft_hide_header_call_to_action','field_635bd6723527d'),(166113,40593,'fft_page_sitemap','0'),(166114,40593,'_fft_page_sitemap','field_61af9b34e8181'),(166115,40593,'blocks_0_acfe_flexible_toggle',''),(166116,40593,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(166117,40593,'blocks_0_acfe_flexible_layout_title','Template'),(166118,40593,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(166119,40593,'blocks_0_template','39087'),(166120,40593,'_blocks_0_template','field_617bdd570fe01'),(166121,40593,'blocks_1_acfe_flexible_toggle',''),(166122,40593,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(166123,40593,'blocks_1_acfe_flexible_layout_title','Text Block'),(166124,40593,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(166125,40593,'blocks_1_options_theme','#f5f5f5'),(166126,40593,'_blocks_1_options_theme','field_6176830e2ad17'),(166127,40593,'blocks_1_options',''),(166128,40593,'_blocks_1_options','field_6176830e2ad16'),(166129,40593,'blocks_1_text_block_heading','Course Overview'),(166130,40593,'_blocks_1_text_block_heading','field_617669d413097'),(166131,40593,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(166132,40593,'_blocks_1_text_block_content','field_617669ec13098'),(166133,40593,'blocks_2_acfe_flexible_toggle',''),(166134,40593,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(166135,40593,'blocks_2_acfe_flexible_layout_title','Logos'),(166136,40593,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(166137,40593,'blocks_2_options_theme','#ffffff'),(166138,40593,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(166139,40593,'blocks_2_options_format','grid'),(166140,40593,'_blocks_2_options_format','field_61782964ee971'),(166141,40593,'blocks_2_options',''),(166142,40593,'_blocks_2_options','field_61782954ee965'),(166143,40593,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(166144,40593,'_blocks_2_logos','field_61782954ee96d'),(166145,40593,'blocks_2_title',''),(166146,40593,'_blocks_2_title','field_668fbfdc2daa1'),(166147,40593,'blocks_3_acfe_flexible_toggle',''),(166148,40593,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(166149,40593,'blocks_3_acfe_flexible_layout_title','Timeline'),(166150,40593,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(166151,40593,'blocks_3_options_theme','#f5f5f5'),(166152,40593,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(166153,40593,'blocks_3_options',''),(166154,40593,'_blocks_3_options','field_6177de53d1195'),(166155,40593,'blocks_3_timeline_content_title',''),(166156,40593,'_blocks_3_timeline_content_title','field_6177de53d1198'),(166157,40593,'blocks_3_timeline_content_heading','Course overview'),(166158,40593,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(166159,40593,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(166160,40593,'_blocks_3_timeline_content_text','field_6177de53d119a'),(166161,40593,'blocks_3_timeline_content_actions',''),(166162,40593,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(166163,40593,'blocks_3_timeline_content',''),(166164,40593,'_blocks_3_timeline_content','field_6177de53d1197'),(166165,40593,'blocks_3_timeline_items_0_title','CIMSPA'),(166166,40593,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(166167,40593,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(166168,40593,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(166169,40593,'blocks_3_timeline_items_1_title','Course Type'),(166170,40593,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(166171,40593,'blocks_3_timeline_items_1_text','100% Online Learning'),(166172,40593,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(166173,40593,'blocks_3_timeline_items_2_title','CPD points'),(166174,40593,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(166175,40593,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(166176,40593,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(166177,40593,'blocks_3_timeline_items_3_title','Learning'),(166178,40593,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(166179,40593,'blocks_3_timeline_items_3_text','5-7 Hours '),(166180,40593,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(166181,40593,'blocks_3_timeline_items','4'),(166182,40593,'_blocks_3_timeline_items','field_6177de53d119d'),(166183,40593,'blocks','a:4:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";}'),(166184,40593,'_blocks','field_6176696113096'),(166185,40593,'course_label_text',''),(166186,40593,'_course_label_text','field_61e17babf71fa'),(166187,40593,'course_label',''),(166188,40593,'_course_label','field_61e12f92749a7'),(166189,40593,'course_description',''),(166190,40593,'_course_description','field_617ac5788e5e1'),(166191,40593,'course_key_info',''),(166192,40593,'_course_key_info','field_617ac6ad8e5e2'),(166193,40593,'course_included',''),(166194,40593,'_course_included','field_617ac6f08e5e4'),(166195,40593,'_thumbnail_id',''),(166196,40593,'__thumbnail_id','field_617570855ddaf'),(166198,40271,'blocks_4_acfe_flexible_toggle',''),(166199,40271,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(166200,40271,'blocks_4_acfe_flexible_layout_title','Text Block'),(166201,40271,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(166202,40271,'blocks_4_options_theme','#ffffff'),(166203,40271,'_blocks_4_options_theme','field_6176830e2ad17'),(166204,40271,'blocks_4_options',''),(166205,40271,'_blocks_4_options','field_6176830e2ad16'),(166206,40271,'blocks_4_text_block_heading','Learn more about this course'),(166207,40271,'_blocks_4_text_block_heading','field_617669d413097'),(166208,40271,'blocks_4_text_block_content','Understand how to start an online coaching fitness business by learning from the experts on essential marketing and business need to knows to successfully start your business online. This course is perfect for those looking to adapt their current approach as any coach, by learning how to manage clients online and make a business from doing this. This course will provide all the resources you need to start online coaching by providing you with help, advice and guidance on making this work for your clients.'),(166209,40271,'_blocks_4_text_block_content','field_617669ec13098'),(166210,40271,'blocks_5_acfe_flexible_toggle',''),(166211,40271,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(166212,40271,'blocks_5_acfe_flexible_layout_title','Tabs'),(166213,40271,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(166214,40271,'blocks_5_options_theme','#ffffff'),(166215,40271,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(166216,40271,'blocks_5_options',''),(166217,40271,'_blocks_5_options','field_6177cfcd8140f'),(166218,40271,'blocks_5_tabs_0_tab_label','What’s included'),(166219,40271,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(166220,40271,'blocks_5_tabs_0_tab_content_title',''),(166221,40271,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(166222,40271,'blocks_5_tabs_0_tab_content_heading',''),(166223,40271,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(166224,40271,'blocks_5_tabs_0_tab_content_text','This course will teach you vital skills in running your business online, by exploring marketing, legalisations, sales, online assessments, coaching and insurance. Prevent your services from being restricted by location as you get clients from several locations which will enhance your earning potential and even improve time efficiency in your client management.'),(166225,40271,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(166226,40271,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166227,40271,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(166228,40271,'blocks_5_tabs_0_tab_content_actions','1'),(166229,40271,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(166230,40271,'blocks_5_tabs_0_tab_content',''),(166231,40271,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(166232,40271,'blocks_5_tabs_0_tab_image',''),(166233,40271,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(166234,40271,'blocks_5_tabs_1_tab_label','Course details'),(166235,40271,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(166236,40271,'blocks_5_tabs_1_tab_content_title',''),(166237,40271,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(166238,40271,'blocks_5_tabs_1_tab_content_heading',''),(166239,40271,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(166240,40271,'blocks_5_tabs_1_tab_content_text','Developed by PT Master Trainer Mark Laws and in partnership with My PT Hub, a leading PT software business.\r\n<ul>\r\n 	<li>Marketing your business</li>\r\n 	<li>Marketing for new clients</li>\r\n 	<li>Sales structure &amp; management</li>\r\n 	<li>Coaching clients online</li>\r\n 	<li>Legalities of running a business</li>\r\n 	<li>East – to- implement strategies</li>\r\n 	<li>Insurance help &amp; guidance</li>\r\n</ul>'),(166241,40271,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(166242,40271,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166243,40271,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(166244,40271,'blocks_5_tabs_1_tab_content_actions','1'),(166245,40271,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(166246,40271,'blocks_5_tabs_1_tab_content',''),(166247,40271,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(166248,40271,'blocks_5_tabs_1_tab_image',''),(166249,40271,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(166250,40271,'blocks_5_tabs_2_tab_label','Entry requirements'),(166251,40271,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(166252,40271,'blocks_5_tabs_2_tab_content_title',''),(166253,40271,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(166254,40271,'blocks_5_tabs_2_tab_content_heading',''),(166255,40271,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(166256,40271,'blocks_5_tabs_2_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>There are no formal requirements for this course.</li>\r\n 	<li>However, we do recommend those studying this course are qualified instructors or personal trainers.</li>\r\n</ul>'),(166257,40271,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(166258,40271,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166259,40271,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(166260,40271,'blocks_5_tabs_2_tab_content_actions','1'),(166261,40271,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(166262,40271,'blocks_5_tabs_2_tab_content',''),(166263,40271,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(166264,40271,'blocks_5_tabs_2_tab_image',''),(166265,40271,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(166266,40271,'blocks_5_tabs','3'),(166267,40271,'_blocks_5_tabs','field_6177cff281419'),(166268,40594,'hide_hero','0'),(166269,40594,'_hide_hero','field_66a2380fcda39'),(166270,40594,'hero_title','Coaching Fitness Online'),(166271,40594,'_hero_title','field_617571fe285e8'),(166272,40594,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(166273,40594,'_hero_text','field_6175723c285e9'),(166274,40594,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166275,40594,'_hero_actions_0_button','field_61757281285eb'),(166276,40594,'hero_actions','1'),(166277,40594,'_hero_actions','field_61757270285ea'),(166278,40594,'hero_style','default'),(166279,40594,'_hero_style','field_62051d9dc5324'),(166280,40594,'hero_image_pos_x','right'),(166281,40594,'_hero_image_pos_x','field_62ec3d05390bb'),(166282,40594,'hero_image_pos_y','top'),(166283,40594,'_hero_image_pos_y','field_62ec3d05390bc'),(166284,40594,'hero_image_pos',''),(166285,40594,'_hero_image_pos','field_62ec3d05390ba'),(166286,40594,'fft_hide_from_listings','0'),(166287,40594,'_fft_hide_from_listings','field_61f1320446ab2'),(166288,40594,'fft_page_format','default'),(166289,40594,'_fft_page_format','field_61ae213f1f218'),(166290,40594,'fft_hide_nav','0'),(166291,40594,'_fft_hide_nav','field_635bd5e43527c'),(166292,40594,'fft_hide_header_call_to_action','0'),(166293,40594,'_fft_hide_header_call_to_action','field_635bd6723527d'),(166294,40594,'fft_page_sitemap','0'),(166295,40594,'_fft_page_sitemap','field_61af9b34e8181'),(166296,40594,'blocks_0_acfe_flexible_toggle',''),(166297,40594,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(166298,40594,'blocks_0_acfe_flexible_layout_title','Template'),(166299,40594,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(166300,40594,'blocks_0_template','39087'),(166301,40594,'_blocks_0_template','field_617bdd570fe01'),(166302,40594,'blocks_1_acfe_flexible_toggle',''),(166303,40594,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(166304,40594,'blocks_1_acfe_flexible_layout_title','Text Block'),(166305,40594,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(166306,40594,'blocks_1_options_theme','#f5f5f5'),(166307,40594,'_blocks_1_options_theme','field_6176830e2ad17'),(166308,40594,'blocks_1_options',''),(166309,40594,'_blocks_1_options','field_6176830e2ad16'),(166310,40594,'blocks_1_text_block_heading','Course Overview'),(166311,40594,'_blocks_1_text_block_heading','field_617669d413097'),(166312,40594,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(166313,40594,'_blocks_1_text_block_content','field_617669ec13098'),(166314,40594,'blocks_2_acfe_flexible_toggle',''),(166315,40594,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(166316,40594,'blocks_2_acfe_flexible_layout_title','Logos'),(166317,40594,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(166318,40594,'blocks_2_options_theme','#ffffff'),(166319,40594,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(166320,40594,'blocks_2_options_format','grid'),(166321,40594,'_blocks_2_options_format','field_61782964ee971'),(166322,40594,'blocks_2_options',''),(166323,40594,'_blocks_2_options','field_61782954ee965'),(166324,40594,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(166325,40594,'_blocks_2_logos','field_61782954ee96d'),(166326,40594,'blocks_2_title',''),(166327,40594,'_blocks_2_title','field_668fbfdc2daa1'),(166328,40594,'blocks_3_acfe_flexible_toggle',''),(166329,40594,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(166330,40594,'blocks_3_acfe_flexible_layout_title','Timeline'),(166331,40594,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(166332,40594,'blocks_3_options_theme','#f5f5f5'),(166333,40594,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(166334,40594,'blocks_3_options',''),(166335,40594,'_blocks_3_options','field_6177de53d1195'),(166336,40594,'blocks_3_timeline_content_title',''),(166337,40594,'_blocks_3_timeline_content_title','field_6177de53d1198'),(166338,40594,'blocks_3_timeline_content_heading','Course overview'),(166339,40594,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(166340,40594,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(166341,40594,'_blocks_3_timeline_content_text','field_6177de53d119a'),(166342,40594,'blocks_3_timeline_content_actions',''),(166343,40594,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(166344,40594,'blocks_3_timeline_content',''),(166345,40594,'_blocks_3_timeline_content','field_6177de53d1197'),(166346,40594,'blocks_3_timeline_items_0_title','CIMSPA'),(166347,40594,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(166348,40594,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(166349,40594,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(166350,40594,'blocks_3_timeline_items_1_title','Course Type'),(166351,40594,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(166352,40594,'blocks_3_timeline_items_1_text','100% Online Learning'),(166353,40594,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(166354,40594,'blocks_3_timeline_items_2_title','CPD points'),(166355,40594,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(166356,40594,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(166357,40594,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(166358,40594,'blocks_3_timeline_items_3_title','Learning'),(166359,40594,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(166360,40594,'blocks_3_timeline_items_3_text','5-7 Hours '),(166361,40594,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(166362,40594,'blocks_3_timeline_items','4'),(166363,40594,'_blocks_3_timeline_items','field_6177de53d119d'),(166364,40594,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";}'),(166365,40594,'_blocks','field_6176696113096'),(166366,40594,'course_label_text',''),(166367,40594,'_course_label_text','field_61e17babf71fa'),(166368,40594,'course_label',''),(166369,40594,'_course_label','field_61e12f92749a7'),(166370,40594,'course_description',''),(166371,40594,'_course_description','field_617ac5788e5e1'),(166372,40594,'course_key_info',''),(166373,40594,'_course_key_info','field_617ac6ad8e5e2'),(166374,40594,'course_included',''),(166375,40594,'_course_included','field_617ac6f08e5e4'),(166376,40594,'_thumbnail_id',''),(166377,40594,'__thumbnail_id','field_617570855ddaf'),(166378,40594,'blocks_4_acfe_flexible_toggle',''),(166379,40594,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(166380,40594,'blocks_4_acfe_flexible_layout_title','Text Block'),(166381,40594,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(166382,40594,'blocks_4_options_theme','#b61234'),(166383,40594,'_blocks_4_options_theme','field_6176830e2ad17'),(166384,40594,'blocks_4_options',''),(166385,40594,'_blocks_4_options','field_6176830e2ad16'),(166386,40594,'blocks_4_text_block_heading','Learn more about this course'),(166387,40594,'_blocks_4_text_block_heading','field_617669d413097'),(166388,40594,'blocks_4_text_block_content','Understand how to start an online coaching fitness business by learning from the experts on essential marketing and business need to knows to successfully start your business online. This course is perfect for those looking to adapt their current approach as any coach, by learning how to manage clients online and make a business from doing this. This course will provide all the resources you need to start online coaching by providing you with help, advice and guidance on making this work for your clients.'),(166389,40594,'_blocks_4_text_block_content','field_617669ec13098'),(166390,40594,'blocks_5_acfe_flexible_toggle',''),(166391,40594,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(166392,40594,'blocks_5_acfe_flexible_layout_title','Tabs'),(166393,40594,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(166394,40594,'blocks_5_options_theme','#b61234'),(166395,40594,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(166396,40594,'blocks_5_options',''),(166397,40594,'_blocks_5_options','field_6177cfcd8140f'),(166398,40594,'blocks_5_tabs_0_tab_label','What’s included'),(166399,40594,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(166400,40594,'blocks_5_tabs_0_tab_content_title',''),(166401,40594,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(166402,40594,'blocks_5_tabs_0_tab_content_heading',''),(166403,40594,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(166404,40594,'blocks_5_tabs_0_tab_content_text','This course will teach you vital skills in running your business online, by exploring marketing, legalisations, sales, online assessments, coaching and insurance. Prevent your services from being restricted by location as you get clients from several locations which will enhance your earning potential and even improve time efficiency in your client management.'),(166405,40594,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(166406,40594,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166407,40594,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(166408,40594,'blocks_5_tabs_0_tab_content_actions','1'),(166409,40594,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(166410,40594,'blocks_5_tabs_0_tab_content',''),(166411,40594,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(166412,40594,'blocks_5_tabs_0_tab_image',''),(166413,40594,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(166414,40594,'blocks_5_tabs_1_tab_label','Course details'),(166415,40594,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(166416,40594,'blocks_5_tabs_1_tab_content_title',''),(166417,40594,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(166418,40594,'blocks_5_tabs_1_tab_content_heading',''),(166419,40594,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(166420,40594,'blocks_5_tabs_1_tab_content_text','Developed by PT Master Trainer Mark Laws and in partnership with My PT Hub, a leading PT software business.\r\n<ul>\r\n 	<li>Marketing your business</li>\r\n 	<li>Marketing for new clients</li>\r\n 	<li>Sales structure &amp; management</li>\r\n 	<li>Coaching clients online</li>\r\n 	<li>Legalities of running a business</li>\r\n 	<li>East – to- implement strategies</li>\r\n 	<li>Insurance help &amp; guidance</li>\r\n</ul>'),(166421,40594,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(166422,40594,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166423,40594,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(166424,40594,'blocks_5_tabs_1_tab_content_actions','1'),(166425,40594,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(166426,40594,'blocks_5_tabs_1_tab_content',''),(166427,40594,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(166428,40594,'blocks_5_tabs_1_tab_image',''),(166429,40594,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(166430,40594,'blocks_5_tabs_2_tab_label','Entry requirements'),(166431,40594,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(166432,40594,'blocks_5_tabs_2_tab_content_title',''),(166433,40594,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(166434,40594,'blocks_5_tabs_2_tab_content_heading',''),(166435,40594,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(166436,40594,'blocks_5_tabs_2_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>There are no formal requirements for this course.</li>\r\n 	<li>However, we do recommend those studying this course are qualified instructors or personal trainers.</li>\r\n</ul>'),(166437,40594,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(166438,40594,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166439,40594,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(166440,40594,'blocks_5_tabs_2_tab_content_actions','1'),(166441,40594,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(166442,40594,'blocks_5_tabs_2_tab_content',''),(166443,40594,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(166444,40594,'blocks_5_tabs_2_tab_image',''),(166445,40594,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(166446,40594,'blocks_5_tabs','3'),(166447,40594,'_blocks_5_tabs','field_6177cff281419'),(166449,40595,'hide_hero','0'),(166450,40595,'_hide_hero','field_66a2380fcda39'),(166451,40595,'hero_title','Coaching Fitness Online'),(166452,40595,'_hero_title','field_617571fe285e8'),(166453,40595,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(166454,40595,'_hero_text','field_6175723c285e9'),(166455,40595,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166456,40595,'_hero_actions_0_button','field_61757281285eb'),(166457,40595,'hero_actions','1'),(166458,40595,'_hero_actions','field_61757270285ea'),(166459,40595,'hero_style','default'),(166460,40595,'_hero_style','field_62051d9dc5324'),(166461,40595,'hero_image_pos_x','right'),(166462,40595,'_hero_image_pos_x','field_62ec3d05390bb'),(166463,40595,'hero_image_pos_y','top'),(166464,40595,'_hero_image_pos_y','field_62ec3d05390bc'),(166465,40595,'hero_image_pos',''),(166466,40595,'_hero_image_pos','field_62ec3d05390ba'),(166467,40595,'fft_hide_from_listings','0'),(166468,40595,'_fft_hide_from_listings','field_61f1320446ab2'),(166469,40595,'fft_page_format','default'),(166470,40595,'_fft_page_format','field_61ae213f1f218'),(166471,40595,'fft_hide_nav','0'),(166472,40595,'_fft_hide_nav','field_635bd5e43527c'),(166473,40595,'fft_hide_header_call_to_action','0'),(166474,40595,'_fft_hide_header_call_to_action','field_635bd6723527d'),(166475,40595,'fft_page_sitemap','0'),(166476,40595,'_fft_page_sitemap','field_61af9b34e8181'),(166477,40595,'blocks_0_acfe_flexible_toggle',''),(166478,40595,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(166479,40595,'blocks_0_acfe_flexible_layout_title','Template'),(166480,40595,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(166481,40595,'blocks_0_template','39087'),(166482,40595,'_blocks_0_template','field_617bdd570fe01'),(166483,40595,'blocks_1_acfe_flexible_toggle',''),(166484,40595,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(166485,40595,'blocks_1_acfe_flexible_layout_title','Text Block'),(166486,40595,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(166487,40595,'blocks_1_options_theme','#f5f5f5'),(166488,40595,'_blocks_1_options_theme','field_6176830e2ad17'),(166489,40595,'blocks_1_options',''),(166490,40595,'_blocks_1_options','field_6176830e2ad16'),(166491,40595,'blocks_1_text_block_heading','Course Overview'),(166492,40595,'_blocks_1_text_block_heading','field_617669d413097'),(166493,40595,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(166494,40595,'_blocks_1_text_block_content','field_617669ec13098'),(166495,40595,'blocks_2_acfe_flexible_toggle',''),(166496,40595,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(166497,40595,'blocks_2_acfe_flexible_layout_title','Logos'),(166498,40595,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(166499,40595,'blocks_2_options_theme','#ffffff'),(166500,40595,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(166501,40595,'blocks_2_options_format','grid'),(166502,40595,'_blocks_2_options_format','field_61782964ee971'),(166503,40595,'blocks_2_options',''),(166504,40595,'_blocks_2_options','field_61782954ee965'),(166505,40595,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(166506,40595,'_blocks_2_logos','field_61782954ee96d'),(166507,40595,'blocks_2_title',''),(166508,40595,'_blocks_2_title','field_668fbfdc2daa1'),(166509,40595,'blocks_3_acfe_flexible_toggle',''),(166510,40595,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(166511,40595,'blocks_3_acfe_flexible_layout_title','Timeline'),(166512,40595,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(166513,40595,'blocks_3_options_theme','#f5f5f5'),(166514,40595,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(166515,40595,'blocks_3_options',''),(166516,40595,'_blocks_3_options','field_6177de53d1195'),(166517,40595,'blocks_3_timeline_content_title',''),(166518,40595,'_blocks_3_timeline_content_title','field_6177de53d1198'),(166519,40595,'blocks_3_timeline_content_heading','Course overview'),(166520,40595,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(166521,40595,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(166522,40595,'_blocks_3_timeline_content_text','field_6177de53d119a'),(166523,40595,'blocks_3_timeline_content_actions',''),(166524,40595,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(166525,40595,'blocks_3_timeline_content',''),(166526,40595,'_blocks_3_timeline_content','field_6177de53d1197'),(166527,40595,'blocks_3_timeline_items_0_title','CIMSPA'),(166528,40595,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(166529,40595,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(166530,40595,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(166531,40595,'blocks_3_timeline_items_1_title','Course Type'),(166532,40595,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(166533,40595,'blocks_3_timeline_items_1_text','100% Online Learning'),(166534,40595,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(166535,40595,'blocks_3_timeline_items_2_title','CPD points'),(166536,40595,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(166537,40595,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(166538,40595,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(166539,40595,'blocks_3_timeline_items_3_title','Learning'),(166540,40595,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(166541,40595,'blocks_3_timeline_items_3_text','5-7 Hours '),(166542,40595,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(166543,40595,'blocks_3_timeline_items','4'),(166544,40595,'_blocks_3_timeline_items','field_6177de53d119d'),(166545,40595,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";}'),(166546,40595,'_blocks','field_6176696113096'),(166547,40595,'course_label_text',''),(166548,40595,'_course_label_text','field_61e17babf71fa'),(166549,40595,'course_label',''),(166550,40595,'_course_label','field_61e12f92749a7'),(166551,40595,'course_description',''),(166552,40595,'_course_description','field_617ac5788e5e1'),(166553,40595,'course_key_info',''),(166554,40595,'_course_key_info','field_617ac6ad8e5e2'),(166555,40595,'course_included',''),(166556,40595,'_course_included','field_617ac6f08e5e4'),(166557,40595,'blocks_4_acfe_flexible_toggle',''),(166558,40595,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(166559,40595,'blocks_4_acfe_flexible_layout_title','Text Block'),(166560,40595,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(166561,40595,'blocks_4_options_theme','#ffffff'),(166562,40595,'_blocks_4_options_theme','field_6176830e2ad17'),(166563,40595,'blocks_4_options',''),(166564,40595,'_blocks_4_options','field_6176830e2ad16'),(166565,40595,'blocks_4_text_block_heading','Learn more about this course'),(166566,40595,'_blocks_4_text_block_heading','field_617669d413097'),(166567,40595,'blocks_4_text_block_content','Understand how to start an online coaching fitness business by learning from the experts on essential marketing and business need to knows to successfully start your business online. This course is perfect for those looking to adapt their current approach as any coach, by learning how to manage clients online and make a business from doing this. This course will provide all the resources you need to start online coaching by providing you with help, advice and guidance on making this work for your clients.'),(166568,40595,'_blocks_4_text_block_content','field_617669ec13098'),(166569,40595,'blocks_5_acfe_flexible_toggle',''),(166570,40595,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(166571,40595,'blocks_5_acfe_flexible_layout_title','Tabs'),(166572,40595,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(166573,40595,'blocks_5_options_theme','#ffffff'),(166574,40595,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(166575,40595,'blocks_5_options',''),(166576,40595,'_blocks_5_options','field_6177cfcd8140f'),(166577,40595,'blocks_5_tabs_0_tab_label','What’s included'),(166578,40595,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(166579,40595,'blocks_5_tabs_0_tab_content_title',''),(166580,40595,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(166581,40595,'blocks_5_tabs_0_tab_content_heading',''),(166582,40595,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(166583,40595,'blocks_5_tabs_0_tab_content_text','This course will teach you vital skills in running your business online, by exploring marketing, legalisations, sales, online assessments, coaching and insurance. Prevent your services from being restricted by location as you get clients from several locations which will enhance your earning potential and even improve time efficiency in your client management.'),(166584,40595,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(166585,40595,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166586,40595,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(166587,40595,'blocks_5_tabs_0_tab_content_actions','1'),(166588,40595,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(166589,40595,'blocks_5_tabs_0_tab_content',''),(166590,40595,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(166591,40595,'blocks_5_tabs_0_tab_image',''),(166592,40595,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(166593,40595,'blocks_5_tabs_1_tab_label','Course details'),(166594,40595,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(166595,40595,'blocks_5_tabs_1_tab_content_title',''),(166596,40595,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(166597,40595,'blocks_5_tabs_1_tab_content_heading',''),(166598,40595,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(166599,40595,'blocks_5_tabs_1_tab_content_text','Developed by PT Master Trainer Mark Laws and in partnership with My PT Hub, a leading PT software business.\r\n<ul>\r\n 	<li>Marketing your business</li>\r\n 	<li>Marketing for new clients</li>\r\n 	<li>Sales structure &amp; management</li>\r\n 	<li>Coaching clients online</li>\r\n 	<li>Legalities of running a business</li>\r\n 	<li>East – to- implement strategies</li>\r\n 	<li>Insurance help &amp; guidance</li>\r\n</ul>'),(166600,40595,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(166601,40595,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166602,40595,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(166603,40595,'blocks_5_tabs_1_tab_content_actions','1'),(166604,40595,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(166605,40595,'blocks_5_tabs_1_tab_content',''),(166606,40595,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(166607,40595,'blocks_5_tabs_1_tab_image',''),(166608,40595,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(166609,40595,'blocks_5_tabs_2_tab_label','Entry requirements'),(166610,40595,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(166611,40595,'blocks_5_tabs_2_tab_content_title',''),(166612,40595,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(166613,40595,'blocks_5_tabs_2_tab_content_heading',''),(166614,40595,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(166615,40595,'blocks_5_tabs_2_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>There are no formal requirements for this course.</li>\r\n 	<li>However, we do recommend those studying this course are qualified instructors or personal trainers.</li>\r\n</ul>'),(166616,40595,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(166617,40595,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166618,40595,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(166619,40595,'blocks_5_tabs_2_tab_content_actions','1'),(166620,40595,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(166621,40595,'blocks_5_tabs_2_tab_content',''),(166622,40595,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(166623,40595,'blocks_5_tabs_2_tab_image',''),(166624,40595,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(166625,40595,'blocks_5_tabs','3'),(166626,40595,'_blocks_5_tabs','field_6177cff281419'),(166627,40595,'_thumbnail_id',''),(166628,40595,'__thumbnail_id','field_617570855ddaf'),(166630,40596,'hide_hero','0'),(166631,40596,'_hide_hero','field_66a2380fcda39'),(166632,40596,'hero_title','Coaching Fitness Online'),(166633,40596,'_hero_title','field_617571fe285e8'),(166634,40596,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(166635,40596,'_hero_text','field_6175723c285e9'),(166636,40596,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166637,40596,'_hero_actions_0_button','field_61757281285eb'),(166638,40596,'hero_actions','1'),(166639,40596,'_hero_actions','field_61757270285ea'),(166640,40596,'hero_style','default'),(166641,40596,'_hero_style','field_62051d9dc5324'),(166642,40596,'hero_image_pos_x','right'),(166643,40596,'_hero_image_pos_x','field_62ec3d05390bb'),(166644,40596,'hero_image_pos_y','top'),(166645,40596,'_hero_image_pos_y','field_62ec3d05390bc'),(166646,40596,'hero_image_pos',''),(166647,40596,'_hero_image_pos','field_62ec3d05390ba'),(166648,40596,'fft_hide_from_listings','0'),(166649,40596,'_fft_hide_from_listings','field_61f1320446ab2'),(166650,40596,'fft_page_format','default'),(166651,40596,'_fft_page_format','field_61ae213f1f218'),(166652,40596,'fft_hide_nav','0'),(166653,40596,'_fft_hide_nav','field_635bd5e43527c'),(166654,40596,'fft_hide_header_call_to_action','0'),(166655,40596,'_fft_hide_header_call_to_action','field_635bd6723527d'),(166656,40596,'fft_page_sitemap','0'),(166657,40596,'_fft_page_sitemap','field_61af9b34e8181'),(166658,40596,'blocks_0_acfe_flexible_toggle',''),(166659,40596,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(166660,40596,'blocks_0_acfe_flexible_layout_title','Template'),(166661,40596,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(166662,40596,'blocks_0_template','39087'),(166663,40596,'_blocks_0_template','field_617bdd570fe01'),(166664,40596,'blocks_1_acfe_flexible_toggle',''),(166665,40596,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(166666,40596,'blocks_1_acfe_flexible_layout_title','Text Block'),(166667,40596,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(166668,40596,'blocks_1_options_theme','#f5f5f5'),(166669,40596,'_blocks_1_options_theme','field_6176830e2ad17'),(166670,40596,'blocks_1_options',''),(166671,40596,'_blocks_1_options','field_6176830e2ad16'),(166672,40596,'blocks_1_text_block_heading','Course Overview'),(166673,40596,'_blocks_1_text_block_heading','field_617669d413097'),(166674,40596,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(166675,40596,'_blocks_1_text_block_content','field_617669ec13098'),(166676,40596,'blocks_2_acfe_flexible_toggle',''),(166677,40596,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(166678,40596,'blocks_2_acfe_flexible_layout_title','Logos'),(166679,40596,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(166680,40596,'blocks_2_options_theme','#ffffff'),(166681,40596,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(166682,40596,'blocks_2_options_format','grid'),(166683,40596,'_blocks_2_options_format','field_61782964ee971'),(166684,40596,'blocks_2_options',''),(166685,40596,'_blocks_2_options','field_61782954ee965'),(166686,40596,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(166687,40596,'_blocks_2_logos','field_61782954ee96d'),(166688,40596,'blocks_2_title',''),(166689,40596,'_blocks_2_title','field_668fbfdc2daa1'),(166690,40596,'blocks_3_acfe_flexible_toggle',''),(166691,40596,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(166692,40596,'blocks_3_acfe_flexible_layout_title','Timeline'),(166693,40596,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(166694,40596,'blocks_3_options_theme','#b61234'),(166695,40596,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(166696,40596,'blocks_3_options',''),(166697,40596,'_blocks_3_options','field_6177de53d1195'),(166698,40596,'blocks_3_timeline_content_title',''),(166699,40596,'_blocks_3_timeline_content_title','field_6177de53d1198'),(166700,40596,'blocks_3_timeline_content_heading','Course overview'),(166701,40596,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(166702,40596,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(166703,40596,'_blocks_3_timeline_content_text','field_6177de53d119a'),(166704,40596,'blocks_3_timeline_content_actions',''),(166705,40596,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(166706,40596,'blocks_3_timeline_content',''),(166707,40596,'_blocks_3_timeline_content','field_6177de53d1197'),(166708,40596,'blocks_3_timeline_items_0_title','CIMSPA'),(166709,40596,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(166710,40596,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(166711,40596,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(166712,40596,'blocks_3_timeline_items_1_title','Course Type'),(166713,40596,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(166714,40596,'blocks_3_timeline_items_1_text','100% Online Learning'),(166715,40596,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(166716,40596,'blocks_3_timeline_items_2_title','CPD points'),(166717,40596,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(166718,40596,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(166719,40596,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(166720,40596,'blocks_3_timeline_items_3_title','Learning'),(166721,40596,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(166722,40596,'blocks_3_timeline_items_3_text','5-7 Hours '),(166723,40596,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(166724,40596,'blocks_3_timeline_items','4'),(166725,40596,'_blocks_3_timeline_items','field_6177de53d119d'),(166726,40596,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";}'),(166727,40596,'_blocks','field_6176696113096'),(166728,40596,'course_label_text',''),(166729,40596,'_course_label_text','field_61e17babf71fa'),(166730,40596,'course_label',''),(166731,40596,'_course_label','field_61e12f92749a7'),(166732,40596,'course_description',''),(166733,40596,'_course_description','field_617ac5788e5e1'),(166734,40596,'course_key_info',''),(166735,40596,'_course_key_info','field_617ac6ad8e5e2'),(166736,40596,'course_included',''),(166737,40596,'_course_included','field_617ac6f08e5e4'),(166738,40596,'blocks_4_acfe_flexible_toggle',''),(166739,40596,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(166740,40596,'blocks_4_acfe_flexible_layout_title','Text Block'),(166741,40596,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(166742,40596,'blocks_4_options_theme','#ffffff'),(166743,40596,'_blocks_4_options_theme','field_6176830e2ad17'),(166744,40596,'blocks_4_options',''),(166745,40596,'_blocks_4_options','field_6176830e2ad16'),(166746,40596,'blocks_4_text_block_heading','Learn more about this course'),(166747,40596,'_blocks_4_text_block_heading','field_617669d413097'),(166748,40596,'blocks_4_text_block_content','Understand how to start an online coaching fitness business by learning from the experts on essential marketing and business need to knows to successfully start your business online. This course is perfect for those looking to adapt their current approach as any coach, by learning how to manage clients online and make a business from doing this. This course will provide all the resources you need to start online coaching by providing you with help, advice and guidance on making this work for your clients.'),(166749,40596,'_blocks_4_text_block_content','field_617669ec13098'),(166750,40596,'blocks_5_acfe_flexible_toggle',''),(166751,40596,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(166752,40596,'blocks_5_acfe_flexible_layout_title','Tabs'),(166753,40596,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(166754,40596,'blocks_5_options_theme','#ffffff'),(166755,40596,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(166756,40596,'blocks_5_options',''),(166757,40596,'_blocks_5_options','field_6177cfcd8140f'),(166758,40596,'blocks_5_tabs_0_tab_label','What’s included'),(166759,40596,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(166760,40596,'blocks_5_tabs_0_tab_content_title',''),(166761,40596,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(166762,40596,'blocks_5_tabs_0_tab_content_heading',''),(166763,40596,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(166764,40596,'blocks_5_tabs_0_tab_content_text','This course will teach you vital skills in running your business online, by exploring marketing, legalisations, sales, online assessments, coaching and insurance. Prevent your services from being restricted by location as you get clients from several locations which will enhance your earning potential and even improve time efficiency in your client management.'),(166765,40596,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(166766,40596,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166767,40596,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(166768,40596,'blocks_5_tabs_0_tab_content_actions','1'),(166769,40596,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(166770,40596,'blocks_5_tabs_0_tab_content',''),(166771,40596,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(166772,40596,'blocks_5_tabs_0_tab_image',''),(166773,40596,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(166774,40596,'blocks_5_tabs_1_tab_label','Course details'),(166775,40596,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(166776,40596,'blocks_5_tabs_1_tab_content_title',''),(166777,40596,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(166778,40596,'blocks_5_tabs_1_tab_content_heading',''),(166779,40596,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(166780,40596,'blocks_5_tabs_1_tab_content_text','Developed by PT Master Trainer Mark Laws and in partnership with My PT Hub, a leading PT software business.\r\n<ul>\r\n 	<li>Marketing your business</li>\r\n 	<li>Marketing for new clients</li>\r\n 	<li>Sales structure &amp; management</li>\r\n 	<li>Coaching clients online</li>\r\n 	<li>Legalities of running a business</li>\r\n 	<li>East – to- implement strategies</li>\r\n 	<li>Insurance help &amp; guidance</li>\r\n</ul>'),(166781,40596,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(166782,40596,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166783,40596,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(166784,40596,'blocks_5_tabs_1_tab_content_actions','1'),(166785,40596,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(166786,40596,'blocks_5_tabs_1_tab_content',''),(166787,40596,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(166788,40596,'blocks_5_tabs_1_tab_image',''),(166789,40596,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(166790,40596,'blocks_5_tabs_2_tab_label','Entry requirements'),(166791,40596,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(166792,40596,'blocks_5_tabs_2_tab_content_title',''),(166793,40596,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(166794,40596,'blocks_5_tabs_2_tab_content_heading',''),(166795,40596,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(166796,40596,'blocks_5_tabs_2_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>There are no formal requirements for this course.</li>\r\n 	<li>However, we do recommend those studying this course are qualified instructors or personal trainers.</li>\r\n</ul>'),(166797,40596,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(166798,40596,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(166799,40596,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(166800,40596,'blocks_5_tabs_2_tab_content_actions','1'),(166801,40596,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(166802,40596,'blocks_5_tabs_2_tab_content',''),(166803,40596,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(166804,40596,'blocks_5_tabs_2_tab_image',''),(166805,40596,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(166806,40596,'blocks_5_tabs','3'),(166807,40596,'_blocks_5_tabs','field_6177cff281419'),(166808,40596,'_thumbnail_id',''),(166809,40596,'__thumbnail_id','field_617570855ddaf'),(166810,40597,'hide_hero','0'),(166811,40597,'_hide_hero','field_66a2380fcda39'),(166812,40597,'fft_hide_from_listings','0'),(166813,40597,'_fft_hide_from_listings','field_61f1320446ab2'),(166814,40597,'fft_page_format','default'),(166815,40597,'_fft_page_format','field_61ae213f1f218'),(166816,40597,'fft_hide_nav','0'),(166817,40597,'_fft_hide_nav','field_635bd5e43527c'),(166818,40597,'fft_hide_header_call_to_action','0'),(166819,40597,'_fft_hide_header_call_to_action','field_635bd6723527d'),(166820,40597,'fft_page_sitemap','0'),(166821,40597,'_fft_page_sitemap','field_61af9b34e8181'),(166822,40597,'blocks_0_acfe_flexible_toggle',''),(166823,40597,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(166824,40597,'blocks_0_acfe_flexible_layout_title','Text Block'),(166825,40597,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(166826,40597,'blocks_0_options_theme','#ffffff'),(166827,40597,'_blocks_0_options_theme','field_6176830e2ad17'),(166828,40597,'blocks_0_options',''),(166829,40597,'_blocks_0_options','field_6176830e2ad16'),(166830,40597,'blocks_0_text_block_heading','Get in Touch'),(166831,40597,'_blocks_0_text_block_heading','field_617669d413097'),(166832,40597,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(166833,40597,'_blocks_0_text_block_content','field_617669ec13098'),(166834,40597,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:4:\"form\";}'),(166835,40597,'_blocks','field_6176696113096'),(166836,40597,'hero_title','Contact us'),(166837,40597,'_hero_title','field_617571fe285e8'),(166838,40597,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(166839,40597,'_hero_text','field_6175723c285e9'),(166840,40597,'hero_actions',''),(166841,40597,'_hero_actions','field_61757270285ea'),(166842,40597,'hero_style','default'),(166843,40597,'_hero_style','field_62051d9dc5324'),(166844,40597,'hero_icon','lines'),(166845,40597,'_hero_icon','field_61a6182199d03'),(166846,40597,'_thumbnail_id','40339'),(166847,40597,'__thumbnail_id','field_617570855ddaf'),(166848,40597,'hero_image_pos_x','right'),(166849,40597,'_hero_image_pos_x','field_62ec3d05390bb'),(166850,40597,'hero_image_pos_y','top'),(166851,40597,'_hero_image_pos_y','field_62ec3d05390bc'),(166852,40597,'hero_image_pos',''),(166853,40597,'_hero_image_pos','field_62ec3d05390ba'),(166854,40597,'blocks_1_acfe_flexible_toggle',''),(166855,40597,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(166856,40597,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(166857,40597,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(166858,40597,'blocks_1_options_theme','#ffffff'),(166859,40597,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(166860,40597,'blocks_1_options_reverse','0'),(166861,40597,'_blocks_1_options_reverse','field_61768049bb8ac'),(166862,40597,'blocks_1_options',''),(166863,40597,'_blocks_1_options','field_617682517c334'),(166864,40597,'blocks_1_split_5050_image','40342'),(166865,40597,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(166866,40597,'blocks_1_split_5050_video',''),(166867,40597,'_blocks_1_split_5050_video','field_6239f3160848a'),(166868,40597,'blocks_1_split_5050_content_title',''),(166869,40597,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(166870,40597,'blocks_1_split_5050_content_heading','Let\'s connect!'),(166871,40597,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(166872,40597,'blocks_1_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(166873,40597,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(166874,40597,'blocks_1_split_5050_content_actions',''),(166875,40597,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(166876,40597,'blocks_1_split_5050_content',''),(166877,40597,'_blocks_1_split_5050_content','field_61767afceb8ba'),(166878,40597,'blocks_2_acfe_flexible_toggle',''),(166879,40597,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(166880,40597,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(166881,40597,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(166882,40597,'blocks_2_options_theme','#ffffff'),(166883,40597,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(166884,40597,'blocks_2_options_reverse','1'),(166885,40597,'_blocks_2_options_reverse','field_61768049bb8ac'),(166886,40597,'blocks_2_options',''),(166887,40597,'_blocks_2_options','field_617682517c334'),(166888,40597,'blocks_2_split_5050_image','40349'),(166889,40597,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(166890,40597,'blocks_2_split_5050_video',''),(166891,40597,'_blocks_2_split_5050_video','field_6239f3160848a'),(166892,40597,'blocks_2_split_5050_content_title',''),(166893,40597,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(166894,40597,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(166895,40597,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(166896,40597,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(166897,40597,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(166898,40597,'blocks_2_split_5050_content_actions',''),(166899,40597,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(166900,40597,'blocks_2_split_5050_content',''),(166901,40597,'_blocks_2_split_5050_content','field_61767afceb8ba'),(166902,40597,'blocks_3_acfe_flexible_toggle',''),(166903,40597,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(166904,40597,'blocks_3_acfe_flexible_layout_title','Form'),(166905,40597,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(166906,40597,'blocks_3_row_content_format','standard'),(166907,40597,'_blocks_3_row_content_format','field_6481ead962881'),(166908,40597,'blocks_3_row_content_title',''),(166909,40597,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(166910,40597,'blocks_3_row_content_heading','Let\'s get started'),(166911,40597,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(166912,40597,'blocks_3_row_content_text','<span data-contrast=\"none\">Please fill in your details for no obligation support and advice. One of our in-house Career Advisors will give you a call to discuss your enquiry – don\'t worry if you are not available, we can call back at a convenient time for you.  </span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\"> </span>\r\n\r\n<strong>By completing the form you will also gain access to our Information and Price Guide.</strong>'),(166913,40597,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(166914,40597,'blocks_3_row_content_actions',''),(166915,40597,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(166916,40597,'blocks_3_row_content',''),(166917,40597,'_blocks_3_row_content','field_61a0f5f5b3db0'),(166918,40597,'blocks_3_row_form','40394'),(166919,40597,'_blocks_3_row_form','field_61a4ff2c0b08e'),(166920,40597,'blocks_3_row_form_button_label',''),(166921,40597,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(167035,40271,'blocks_6_acfe_flexible_toggle',''),(167036,40271,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167037,40271,'blocks_6_acfe_flexible_layout_title','Text Block'),(167038,40271,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167039,40271,'blocks_6_options_theme','#ffffff'),(167040,40271,'_blocks_6_options_theme','field_6176830e2ad17'),(167041,40271,'blocks_6_options',''),(167042,40271,'_blocks_6_options','field_6176830e2ad16'),(167043,40271,'blocks_6_text_block_heading','Blogs'),(167044,40271,'_blocks_6_text_block_heading','field_617669d413097'),(167045,40271,'blocks_6_text_block_content','Why not read some of our blogs on personal training, pilates, nutrition and health and well being before starting the course? We provide valuable business information in all areas to help cement your understanding. Read them here:'),(167046,40271,'_blocks_6_text_block_content','field_617669ec13098'),(167047,40271,'blocks_7_acfe_flexible_toggle',''),(167048,40271,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(167049,40271,'blocks_7_acfe_flexible_layout_title','Cards'),(167050,40271,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(167051,40271,'blocks_7_options_theme','#ffffff'),(167052,40271,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(167053,40271,'blocks_7_options_format','carousel'),(167054,40271,'_blocks_7_options_format','field_617a7b15245b5'),(167055,40271,'blocks_7_options_style','featured'),(167056,40271,'_blocks_7_options_style','field_6278ffb63484a'),(167057,40271,'blocks_7_options_cards_current_listing','0'),(167058,40271,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(167059,40271,'blocks_7_options_cards_content','term'),(167060,40271,'_blocks_7_options_cards_content','field_617aba6122688'),(167061,40271,'blocks_7_options_cards_term','5'),(167062,40271,'_blocks_7_options_cards_term','field_6193f7c180895'),(167063,40271,'blocks_7_options_cards_posts_per_page','6'),(167064,40271,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(167065,40271,'blocks_7_options',''),(167066,40271,'_blocks_7_options','field_617a7b15245b3'),(167067,40599,'hide_hero','0'),(167068,40599,'_hide_hero','field_66a2380fcda39'),(167069,40599,'hero_title','Coaching Fitness Online'),(167070,40599,'_hero_title','field_617571fe285e8'),(167071,40599,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(167072,40599,'_hero_text','field_6175723c285e9'),(167073,40599,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167074,40599,'_hero_actions_0_button','field_61757281285eb'),(167075,40599,'hero_actions','1'),(167076,40599,'_hero_actions','field_61757270285ea'),(167077,40599,'hero_style','default'),(167078,40599,'_hero_style','field_62051d9dc5324'),(167079,40599,'hero_image_pos_x','right'),(167080,40599,'_hero_image_pos_x','field_62ec3d05390bb'),(167081,40599,'hero_image_pos_y','top'),(167082,40599,'_hero_image_pos_y','field_62ec3d05390bc'),(167083,40599,'hero_image_pos',''),(167084,40599,'_hero_image_pos','field_62ec3d05390ba'),(167085,40599,'fft_hide_from_listings','0'),(167086,40599,'_fft_hide_from_listings','field_61f1320446ab2'),(167087,40599,'fft_page_format','default'),(167088,40599,'_fft_page_format','field_61ae213f1f218'),(167089,40599,'fft_hide_nav','0'),(167090,40599,'_fft_hide_nav','field_635bd5e43527c'),(167091,40599,'fft_hide_header_call_to_action','0'),(167092,40599,'_fft_hide_header_call_to_action','field_635bd6723527d'),(167093,40599,'fft_page_sitemap','0'),(167094,40599,'_fft_page_sitemap','field_61af9b34e8181'),(167095,40599,'blocks_0_acfe_flexible_toggle',''),(167096,40599,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(167097,40599,'blocks_0_acfe_flexible_layout_title','Template'),(167098,40599,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(167099,40599,'blocks_0_template','39087'),(167100,40599,'_blocks_0_template','field_617bdd570fe01'),(167101,40599,'blocks_1_acfe_flexible_toggle',''),(167102,40599,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167103,40599,'blocks_1_acfe_flexible_layout_title','Text Block'),(167104,40599,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167105,40599,'blocks_1_options_theme','#f5f5f5'),(167106,40599,'_blocks_1_options_theme','field_6176830e2ad17'),(167107,40599,'blocks_1_options',''),(167108,40599,'_blocks_1_options','field_6176830e2ad16'),(167109,40599,'blocks_1_text_block_heading','Course Overview'),(167110,40599,'_blocks_1_text_block_heading','field_617669d413097'),(167111,40599,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(167112,40599,'_blocks_1_text_block_content','field_617669ec13098'),(167113,40599,'blocks_2_acfe_flexible_toggle',''),(167114,40599,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(167115,40599,'blocks_2_acfe_flexible_layout_title','Logos'),(167116,40599,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(167117,40599,'blocks_2_options_theme','#ffffff'),(167118,40599,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(167119,40599,'blocks_2_options_format','grid'),(167120,40599,'_blocks_2_options_format','field_61782964ee971'),(167121,40599,'blocks_2_options',''),(167122,40599,'_blocks_2_options','field_61782954ee965'),(167123,40599,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(167124,40599,'_blocks_2_logos','field_61782954ee96d'),(167125,40599,'blocks_2_title',''),(167126,40599,'_blocks_2_title','field_668fbfdc2daa1'),(167127,40599,'blocks_3_acfe_flexible_toggle',''),(167128,40599,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(167129,40599,'blocks_3_acfe_flexible_layout_title','Timeline'),(167130,40599,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(167131,40599,'blocks_3_options_theme','#b61234'),(167132,40599,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(167133,40599,'blocks_3_options',''),(167134,40599,'_blocks_3_options','field_6177de53d1195'),(167135,40599,'blocks_3_timeline_content_title',''),(167136,40599,'_blocks_3_timeline_content_title','field_6177de53d1198'),(167137,40599,'blocks_3_timeline_content_heading','Course overview'),(167138,40599,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(167139,40599,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(167140,40599,'_blocks_3_timeline_content_text','field_6177de53d119a'),(167141,40599,'blocks_3_timeline_content_actions',''),(167142,40599,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(167143,40599,'blocks_3_timeline_content',''),(167144,40599,'_blocks_3_timeline_content','field_6177de53d1197'),(167145,40599,'blocks_3_timeline_items_0_title','CIMSPA'),(167146,40599,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(167147,40599,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(167148,40599,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(167149,40599,'blocks_3_timeline_items_1_title','Course Type'),(167150,40599,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(167151,40599,'blocks_3_timeline_items_1_text','100% Online Learning'),(167152,40599,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(167153,40599,'blocks_3_timeline_items_2_title','CPD points'),(167154,40599,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(167155,40599,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(167156,40599,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(167157,40599,'blocks_3_timeline_items_3_title','Learning'),(167158,40599,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(167159,40599,'blocks_3_timeline_items_3_text','5-7 Hours '),(167160,40599,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(167161,40599,'blocks_3_timeline_items','4'),(167162,40599,'_blocks_3_timeline_items','field_6177de53d119d'),(167163,40599,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";}'),(167164,40599,'_blocks','field_6176696113096'),(167165,40599,'course_label_text',''),(167166,40599,'_course_label_text','field_61e17babf71fa'),(167167,40599,'course_label',''),(167168,40599,'_course_label','field_61e12f92749a7'),(167169,40599,'course_description',''),(167170,40599,'_course_description','field_617ac5788e5e1'),(167171,40599,'course_key_info',''),(167172,40599,'_course_key_info','field_617ac6ad8e5e2'),(167173,40599,'course_included',''),(167174,40599,'_course_included','field_617ac6f08e5e4'),(167175,40599,'blocks_4_acfe_flexible_toggle',''),(167176,40599,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167177,40599,'blocks_4_acfe_flexible_layout_title','Text Block'),(167178,40599,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167179,40599,'blocks_4_options_theme','#ffffff'),(167180,40599,'_blocks_4_options_theme','field_6176830e2ad17'),(167181,40599,'blocks_4_options',''),(167182,40599,'_blocks_4_options','field_6176830e2ad16'),(167183,40599,'blocks_4_text_block_heading','Learn more about this course'),(167184,40599,'_blocks_4_text_block_heading','field_617669d413097'),(167185,40599,'blocks_4_text_block_content','Understand how to start an online coaching fitness business by learning from the experts on essential marketing and business need to knows to successfully start your business online. This course is perfect for those looking to adapt their current approach as any coach, by learning how to manage clients online and make a business from doing this. This course will provide all the resources you need to start online coaching by providing you with help, advice and guidance on making this work for your clients.'),(167186,40599,'_blocks_4_text_block_content','field_617669ec13098'),(167187,40599,'blocks_5_acfe_flexible_toggle',''),(167188,40599,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(167189,40599,'blocks_5_acfe_flexible_layout_title','Tabs'),(167190,40599,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(167191,40599,'blocks_5_options_theme','#ffffff'),(167192,40599,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(167193,40599,'blocks_5_options',''),(167194,40599,'_blocks_5_options','field_6177cfcd8140f'),(167195,40599,'blocks_5_tabs_0_tab_label','What’s included'),(167196,40599,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(167197,40599,'blocks_5_tabs_0_tab_content_title',''),(167198,40599,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(167199,40599,'blocks_5_tabs_0_tab_content_heading',''),(167200,40599,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(167201,40599,'blocks_5_tabs_0_tab_content_text','This course will teach you vital skills in running your business online, by exploring marketing, legalisations, sales, online assessments, coaching and insurance. Prevent your services from being restricted by location as you get clients from several locations which will enhance your earning potential and even improve time efficiency in your client management.'),(167202,40599,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(167203,40599,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167204,40599,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(167205,40599,'blocks_5_tabs_0_tab_content_actions','1'),(167206,40599,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(167207,40599,'blocks_5_tabs_0_tab_content',''),(167208,40599,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(167209,40599,'blocks_5_tabs_0_tab_image',''),(167210,40599,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(167211,40599,'blocks_5_tabs_1_tab_label','Course details'),(167212,40599,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(167213,40599,'blocks_5_tabs_1_tab_content_title',''),(167214,40599,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(167215,40599,'blocks_5_tabs_1_tab_content_heading',''),(167216,40599,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(167217,40599,'blocks_5_tabs_1_tab_content_text','Developed by PT Master Trainer Mark Laws and in partnership with My PT Hub, a leading PT software business.\r\n<ul>\r\n 	<li>Marketing your business</li>\r\n 	<li>Marketing for new clients</li>\r\n 	<li>Sales structure &amp; management</li>\r\n 	<li>Coaching clients online</li>\r\n 	<li>Legalities of running a business</li>\r\n 	<li>East – to- implement strategies</li>\r\n 	<li>Insurance help &amp; guidance</li>\r\n</ul>'),(167218,40599,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(167219,40599,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167220,40599,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(167221,40599,'blocks_5_tabs_1_tab_content_actions','1'),(167222,40599,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(167223,40599,'blocks_5_tabs_1_tab_content',''),(167224,40599,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(167225,40599,'blocks_5_tabs_1_tab_image',''),(167226,40599,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(167227,40599,'blocks_5_tabs_2_tab_label','Entry requirements'),(167228,40599,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(167229,40599,'blocks_5_tabs_2_tab_content_title',''),(167230,40599,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(167231,40599,'blocks_5_tabs_2_tab_content_heading',''),(167232,40599,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(167233,40599,'blocks_5_tabs_2_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>There are no formal requirements for this course.</li>\r\n 	<li>However, we do recommend those studying this course are qualified instructors or personal trainers.</li>\r\n</ul>'),(167234,40599,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(167235,40599,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167236,40599,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(167237,40599,'blocks_5_tabs_2_tab_content_actions','1'),(167238,40599,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(167239,40599,'blocks_5_tabs_2_tab_content',''),(167240,40599,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(167241,40599,'blocks_5_tabs_2_tab_image',''),(167242,40599,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(167243,40599,'blocks_5_tabs','3'),(167244,40599,'_blocks_5_tabs','field_6177cff281419'),(167245,40599,'_thumbnail_id',''),(167246,40599,'__thumbnail_id','field_617570855ddaf'),(167247,40599,'blocks_6_acfe_flexible_toggle',''),(167248,40599,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167249,40599,'blocks_6_acfe_flexible_layout_title','Text Block'),(167250,40599,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167251,40599,'blocks_6_options_theme','#ffffff'),(167252,40599,'_blocks_6_options_theme','field_6176830e2ad17'),(167253,40599,'blocks_6_options',''),(167254,40599,'_blocks_6_options','field_6176830e2ad16'),(167255,40599,'blocks_6_text_block_heading','Blogs'),(167256,40599,'_blocks_6_text_block_heading','field_617669d413097'),(167257,40599,'blocks_6_text_block_content','Why not read some of our blogs on personal training, pilates, nutrition and health and well being before starting the course? We provide valuable business information in all areas to help cement your understanding. Read them here:'),(167258,40599,'_blocks_6_text_block_content','field_617669ec13098'),(167259,40599,'blocks_7_acfe_flexible_toggle',''),(167260,40599,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(167261,40599,'blocks_7_acfe_flexible_layout_title','Cards'),(167262,40599,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(167263,40599,'blocks_7_options_theme','#ffffff'),(167264,40599,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(167265,40599,'blocks_7_options_format','carousel'),(167266,40599,'_blocks_7_options_format','field_617a7b15245b5'),(167267,40599,'blocks_7_options_style','featured'),(167268,40599,'_blocks_7_options_style','field_6278ffb63484a'),(167269,40599,'blocks_7_options_cards_current_listing','0'),(167270,40599,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(167271,40599,'blocks_7_options_cards_content','term'),(167272,40599,'_blocks_7_options_cards_content','field_617aba6122688'),(167273,40599,'blocks_7_options_cards_term','5'),(167274,40599,'_blocks_7_options_cards_term','field_6193f7c180895'),(167275,40599,'blocks_7_options_cards_posts_per_page','6'),(167276,40599,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(167277,40599,'blocks_7_options',''),(167278,40599,'_blocks_7_options','field_617a7b15245b3'),(167280,40271,'blocks_8_acfe_flexible_toggle',''),(167281,40271,'_blocks_8_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(167282,40271,'blocks_8_acfe_flexible_layout_title','Template'),(167283,40271,'_blocks_8_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(167284,40271,'blocks_8_template','39401'),(167285,40271,'_blocks_8_template','field_617bdd570fe01'),(167286,40600,'hide_hero','0'),(167287,40600,'_hide_hero','field_66a2380fcda39'),(167288,40600,'hero_title','Coaching Fitness Online'),(167289,40600,'_hero_title','field_617571fe285e8'),(167290,40600,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(167291,40600,'_hero_text','field_6175723c285e9'),(167292,40600,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167293,40600,'_hero_actions_0_button','field_61757281285eb'),(167294,40600,'hero_actions','1'),(167295,40600,'_hero_actions','field_61757270285ea'),(167296,40600,'hero_style','default'),(167297,40600,'_hero_style','field_62051d9dc5324'),(167298,40600,'hero_image_pos_x','right'),(167299,40600,'_hero_image_pos_x','field_62ec3d05390bb'),(167300,40600,'hero_image_pos_y','top'),(167301,40600,'_hero_image_pos_y','field_62ec3d05390bc'),(167302,40600,'hero_image_pos',''),(167303,40600,'_hero_image_pos','field_62ec3d05390ba'),(167304,40600,'fft_hide_from_listings','0'),(167305,40600,'_fft_hide_from_listings','field_61f1320446ab2'),(167306,40600,'fft_page_format','default'),(167307,40600,'_fft_page_format','field_61ae213f1f218'),(167308,40600,'fft_hide_nav','0'),(167309,40600,'_fft_hide_nav','field_635bd5e43527c'),(167310,40600,'fft_hide_header_call_to_action','0'),(167311,40600,'_fft_hide_header_call_to_action','field_635bd6723527d'),(167312,40600,'fft_page_sitemap','0'),(167313,40600,'_fft_page_sitemap','field_61af9b34e8181'),(167314,40600,'blocks_0_acfe_flexible_toggle',''),(167315,40600,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(167316,40600,'blocks_0_acfe_flexible_layout_title','Template'),(167317,40600,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(167318,40600,'blocks_0_template','39087'),(167319,40600,'_blocks_0_template','field_617bdd570fe01'),(167320,40600,'blocks_1_acfe_flexible_toggle',''),(167321,40600,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167322,40600,'blocks_1_acfe_flexible_layout_title','Text Block'),(167323,40600,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167324,40600,'blocks_1_options_theme','#f5f5f5'),(167325,40600,'_blocks_1_options_theme','field_6176830e2ad17'),(167326,40600,'blocks_1_options',''),(167327,40600,'_blocks_1_options','field_6176830e2ad16'),(167328,40600,'blocks_1_text_block_heading','Course Overview'),(167329,40600,'_blocks_1_text_block_heading','field_617669d413097'),(167330,40600,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(167331,40600,'_blocks_1_text_block_content','field_617669ec13098'),(167332,40600,'blocks_2_acfe_flexible_toggle',''),(167333,40600,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(167334,40600,'blocks_2_acfe_flexible_layout_title','Logos'),(167335,40600,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(167336,40600,'blocks_2_options_theme','#ffffff'),(167337,40600,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(167338,40600,'blocks_2_options_format','grid'),(167339,40600,'_blocks_2_options_format','field_61782964ee971'),(167340,40600,'blocks_2_options',''),(167341,40600,'_blocks_2_options','field_61782954ee965'),(167342,40600,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(167343,40600,'_blocks_2_logos','field_61782954ee96d'),(167344,40600,'blocks_2_title',''),(167345,40600,'_blocks_2_title','field_668fbfdc2daa1'),(167346,40600,'blocks_3_acfe_flexible_toggle',''),(167347,40600,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(167348,40600,'blocks_3_acfe_flexible_layout_title','Timeline'),(167349,40600,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(167350,40600,'blocks_3_options_theme','#b61234'),(167351,40600,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(167352,40600,'blocks_3_options',''),(167353,40600,'_blocks_3_options','field_6177de53d1195'),(167354,40600,'blocks_3_timeline_content_title',''),(167355,40600,'_blocks_3_timeline_content_title','field_6177de53d1198'),(167356,40600,'blocks_3_timeline_content_heading','Course overview'),(167357,40600,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(167358,40600,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(167359,40600,'_blocks_3_timeline_content_text','field_6177de53d119a'),(167360,40600,'blocks_3_timeline_content_actions',''),(167361,40600,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(167362,40600,'blocks_3_timeline_content',''),(167363,40600,'_blocks_3_timeline_content','field_6177de53d1197'),(167364,40600,'blocks_3_timeline_items_0_title','CIMSPA'),(167365,40600,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(167366,40600,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(167367,40600,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(167368,40600,'blocks_3_timeline_items_1_title','Course Type'),(167369,40600,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(167370,40600,'blocks_3_timeline_items_1_text','100% Online Learning'),(167371,40600,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(167372,40600,'blocks_3_timeline_items_2_title','CPD points'),(167373,40600,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(167374,40600,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(167375,40600,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(167376,40600,'blocks_3_timeline_items_3_title','Learning'),(167377,40600,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(167378,40600,'blocks_3_timeline_items_3_text','5-7 Hours '),(167379,40600,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(167380,40600,'blocks_3_timeline_items','4'),(167381,40600,'_blocks_3_timeline_items','field_6177de53d119d'),(167382,40600,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";i:8;s:8:\"template\";}'),(167383,40600,'_blocks','field_6176696113096'),(167384,40600,'course_label_text',''),(167385,40600,'_course_label_text','field_61e17babf71fa'),(167386,40600,'course_label',''),(167387,40600,'_course_label','field_61e12f92749a7'),(167388,40600,'course_description',''),(167389,40600,'_course_description','field_617ac5788e5e1'),(167390,40600,'course_key_info',''),(167391,40600,'_course_key_info','field_617ac6ad8e5e2'),(167392,40600,'course_included',''),(167393,40600,'_course_included','field_617ac6f08e5e4'),(167394,40600,'blocks_4_acfe_flexible_toggle',''),(167395,40600,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167396,40600,'blocks_4_acfe_flexible_layout_title','Text Block'),(167397,40600,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167398,40600,'blocks_4_options_theme','#ffffff'),(167399,40600,'_blocks_4_options_theme','field_6176830e2ad17'),(167400,40600,'blocks_4_options',''),(167401,40600,'_blocks_4_options','field_6176830e2ad16'),(167402,40600,'blocks_4_text_block_heading','Learn more about this course'),(167403,40600,'_blocks_4_text_block_heading','field_617669d413097'),(167404,40600,'blocks_4_text_block_content','Understand how to start an online coaching fitness business by learning from the experts on essential marketing and business need to knows to successfully start your business online. This course is perfect for those looking to adapt their current approach as any coach, by learning how to manage clients online and make a business from doing this. This course will provide all the resources you need to start online coaching by providing you with help, advice and guidance on making this work for your clients.'),(167405,40600,'_blocks_4_text_block_content','field_617669ec13098'),(167406,40600,'blocks_5_acfe_flexible_toggle',''),(167407,40600,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(167408,40600,'blocks_5_acfe_flexible_layout_title','Tabs'),(167409,40600,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(167410,40600,'blocks_5_options_theme','#ffffff'),(167411,40600,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(167412,40600,'blocks_5_options',''),(167413,40600,'_blocks_5_options','field_6177cfcd8140f'),(167414,40600,'blocks_5_tabs_0_tab_label','What’s included'),(167415,40600,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(167416,40600,'blocks_5_tabs_0_tab_content_title',''),(167417,40600,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(167418,40600,'blocks_5_tabs_0_tab_content_heading',''),(167419,40600,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(167420,40600,'blocks_5_tabs_0_tab_content_text','This course will teach you vital skills in running your business online, by exploring marketing, legalisations, sales, online assessments, coaching and insurance. Prevent your services from being restricted by location as you get clients from several locations which will enhance your earning potential and even improve time efficiency in your client management.'),(167421,40600,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(167422,40600,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167423,40600,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(167424,40600,'blocks_5_tabs_0_tab_content_actions','1'),(167425,40600,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(167426,40600,'blocks_5_tabs_0_tab_content',''),(167427,40600,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(167428,40600,'blocks_5_tabs_0_tab_image',''),(167429,40600,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(167430,40600,'blocks_5_tabs_1_tab_label','Course details'),(167431,40600,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(167432,40600,'blocks_5_tabs_1_tab_content_title',''),(167433,40600,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(167434,40600,'blocks_5_tabs_1_tab_content_heading',''),(167435,40600,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(167436,40600,'blocks_5_tabs_1_tab_content_text','Developed by PT Master Trainer Mark Laws and in partnership with My PT Hub, a leading PT software business.\r\n<ul>\r\n 	<li>Marketing your business</li>\r\n 	<li>Marketing for new clients</li>\r\n 	<li>Sales structure &amp; management</li>\r\n 	<li>Coaching clients online</li>\r\n 	<li>Legalities of running a business</li>\r\n 	<li>East – to- implement strategies</li>\r\n 	<li>Insurance help &amp; guidance</li>\r\n</ul>'),(167437,40600,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(167438,40600,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167439,40600,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(167440,40600,'blocks_5_tabs_1_tab_content_actions','1'),(167441,40600,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(167442,40600,'blocks_5_tabs_1_tab_content',''),(167443,40600,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(167444,40600,'blocks_5_tabs_1_tab_image',''),(167445,40600,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(167446,40600,'blocks_5_tabs_2_tab_label','Entry requirements'),(167447,40600,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(167448,40600,'blocks_5_tabs_2_tab_content_title',''),(167449,40600,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(167450,40600,'blocks_5_tabs_2_tab_content_heading',''),(167451,40600,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(167452,40600,'blocks_5_tabs_2_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>There are no formal requirements for this course.</li>\r\n 	<li>However, we do recommend those studying this course are qualified instructors or personal trainers.</li>\r\n</ul>'),(167453,40600,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(167454,40600,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167455,40600,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(167456,40600,'blocks_5_tabs_2_tab_content_actions','1'),(167457,40600,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(167458,40600,'blocks_5_tabs_2_tab_content',''),(167459,40600,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(167460,40600,'blocks_5_tabs_2_tab_image',''),(167461,40600,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(167462,40600,'blocks_5_tabs','3'),(167463,40600,'_blocks_5_tabs','field_6177cff281419'),(167464,40600,'blocks_6_acfe_flexible_toggle',''),(167465,40600,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167466,40600,'blocks_6_acfe_flexible_layout_title','Text Block'),(167467,40600,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167468,40600,'blocks_6_options_theme','#ffffff'),(167469,40600,'_blocks_6_options_theme','field_6176830e2ad17'),(167470,40600,'blocks_6_options',''),(167471,40600,'_blocks_6_options','field_6176830e2ad16'),(167472,40600,'blocks_6_text_block_heading','Blogs'),(167473,40600,'_blocks_6_text_block_heading','field_617669d413097'),(167474,40600,'blocks_6_text_block_content','Why not read some of our blogs on personal training, pilates, nutrition and health and well being before starting the course? We provide valuable business information in all areas to help cement your understanding. Read them here:'),(167475,40600,'_blocks_6_text_block_content','field_617669ec13098'),(167476,40600,'blocks_7_acfe_flexible_toggle',''),(167477,40600,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(167478,40600,'blocks_7_acfe_flexible_layout_title','Cards'),(167479,40600,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(167480,40600,'blocks_7_options_theme','#ffffff'),(167481,40600,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(167482,40600,'blocks_7_options_format','carousel'),(167483,40600,'_blocks_7_options_format','field_617a7b15245b5'),(167484,40600,'blocks_7_options_style','featured'),(167485,40600,'_blocks_7_options_style','field_6278ffb63484a'),(167486,40600,'blocks_7_options_cards_current_listing','0'),(167487,40600,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(167488,40600,'blocks_7_options_cards_content','term'),(167489,40600,'_blocks_7_options_cards_content','field_617aba6122688'),(167490,40600,'blocks_7_options_cards_term','5'),(167491,40600,'_blocks_7_options_cards_term','field_6193f7c180895'),(167492,40600,'blocks_7_options_cards_posts_per_page','6'),(167493,40600,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(167494,40600,'blocks_7_options',''),(167495,40600,'_blocks_7_options','field_617a7b15245b3'),(167496,40600,'_thumbnail_id',''),(167497,40600,'__thumbnail_id','field_617570855ddaf'),(167498,40600,'blocks_8_acfe_flexible_toggle',''),(167499,40600,'_blocks_8_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(167500,40600,'blocks_8_acfe_flexible_layout_title','Template'),(167501,40600,'_blocks_8_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(167502,40600,'blocks_8_template','39401'),(167503,40600,'_blocks_8_template','field_617bdd570fe01'),(167505,40271,'blocks_9_acfe_flexible_toggle',''),(167506,40271,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167507,40271,'blocks_9_acfe_flexible_layout_title','Text Block'),(167508,40271,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167509,40271,'blocks_9_options_theme','#f5f5f5'),(167510,40271,'_blocks_9_options_theme','field_6176830e2ad17'),(167511,40271,'blocks_9_options',''),(167512,40271,'_blocks_9_options','field_6176830e2ad16'),(167513,40271,'blocks_9_text_block_heading','Job Opportunities '),(167514,40271,'_blocks_9_text_block_heading','field_617669d413097'),(167515,40271,'blocks_9_text_block_content','As an online coaching fitness professional, you will be able to successfully deliver a Personal Training Business online with the skills and knowledge needed to lead effective sessions.\r\n<ul>\r\n 	<li>Work as a fully remote as an Online Personal Trainer.</li>\r\n 	<li>Split in gym PT sessions with Online PT sessions giving you more scope to be flexible with your time and the clients.</li>\r\n</ul>\r\nWhichever route you take, online coaching has become increasingly popular amongst clientele; being able to operate online creates a new audience and new opportunities.'),(167516,40271,'_blocks_9_text_block_content','field_617669ec13098'),(167517,40601,'hide_hero','0'),(167518,40601,'_hide_hero','field_66a2380fcda39'),(167519,40601,'hero_title','Coaching Fitness Online'),(167520,40601,'_hero_title','field_617571fe285e8'),(167521,40601,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(167522,40601,'_hero_text','field_6175723c285e9'),(167523,40601,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167524,40601,'_hero_actions_0_button','field_61757281285eb'),(167525,40601,'hero_actions','1'),(167526,40601,'_hero_actions','field_61757270285ea'),(167527,40601,'hero_style','default'),(167528,40601,'_hero_style','field_62051d9dc5324'),(167529,40601,'hero_image_pos_x','right'),(167530,40601,'_hero_image_pos_x','field_62ec3d05390bb'),(167531,40601,'hero_image_pos_y','top'),(167532,40601,'_hero_image_pos_y','field_62ec3d05390bc'),(167533,40601,'hero_image_pos',''),(167534,40601,'_hero_image_pos','field_62ec3d05390ba'),(167535,40601,'fft_hide_from_listings','0'),(167536,40601,'_fft_hide_from_listings','field_61f1320446ab2'),(167537,40601,'fft_page_format','default'),(167538,40601,'_fft_page_format','field_61ae213f1f218'),(167539,40601,'fft_hide_nav','0'),(167540,40601,'_fft_hide_nav','field_635bd5e43527c'),(167541,40601,'fft_hide_header_call_to_action','0'),(167542,40601,'_fft_hide_header_call_to_action','field_635bd6723527d'),(167543,40601,'fft_page_sitemap','0'),(167544,40601,'_fft_page_sitemap','field_61af9b34e8181'),(167545,40601,'blocks_0_acfe_flexible_toggle',''),(167546,40601,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(167547,40601,'blocks_0_acfe_flexible_layout_title','Template'),(167548,40601,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(167549,40601,'blocks_0_template','39087'),(167550,40601,'_blocks_0_template','field_617bdd570fe01'),(167551,40601,'blocks_1_acfe_flexible_toggle',''),(167552,40601,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167553,40601,'blocks_1_acfe_flexible_layout_title','Text Block'),(167554,40601,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167555,40601,'blocks_1_options_theme','#f5f5f5'),(167556,40601,'_blocks_1_options_theme','field_6176830e2ad17'),(167557,40601,'blocks_1_options',''),(167558,40601,'_blocks_1_options','field_6176830e2ad16'),(167559,40601,'blocks_1_text_block_heading','Course Overview'),(167560,40601,'_blocks_1_text_block_heading','field_617669d413097'),(167561,40601,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(167562,40601,'_blocks_1_text_block_content','field_617669ec13098'),(167563,40601,'blocks_2_acfe_flexible_toggle',''),(167564,40601,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(167565,40601,'blocks_2_acfe_flexible_layout_title','Logos'),(167566,40601,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(167567,40601,'blocks_2_options_theme','#ffffff'),(167568,40601,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(167569,40601,'blocks_2_options_format','grid'),(167570,40601,'_blocks_2_options_format','field_61782964ee971'),(167571,40601,'blocks_2_options',''),(167572,40601,'_blocks_2_options','field_61782954ee965'),(167573,40601,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(167574,40601,'_blocks_2_logos','field_61782954ee96d'),(167575,40601,'blocks_2_title',''),(167576,40601,'_blocks_2_title','field_668fbfdc2daa1'),(167577,40601,'blocks_3_acfe_flexible_toggle',''),(167578,40601,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(167579,40601,'blocks_3_acfe_flexible_layout_title','Timeline'),(167580,40601,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(167581,40601,'blocks_3_options_theme','#b61234'),(167582,40601,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(167583,40601,'blocks_3_options',''),(167584,40601,'_blocks_3_options','field_6177de53d1195'),(167585,40601,'blocks_3_timeline_content_title',''),(167586,40601,'_blocks_3_timeline_content_title','field_6177de53d1198'),(167587,40601,'blocks_3_timeline_content_heading','Course overview'),(167588,40601,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(167589,40601,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(167590,40601,'_blocks_3_timeline_content_text','field_6177de53d119a'),(167591,40601,'blocks_3_timeline_content_actions',''),(167592,40601,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(167593,40601,'blocks_3_timeline_content',''),(167594,40601,'_blocks_3_timeline_content','field_6177de53d1197'),(167595,40601,'blocks_3_timeline_items_0_title','CIMSPA'),(167596,40601,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(167597,40601,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(167598,40601,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(167599,40601,'blocks_3_timeline_items_1_title','Course Type'),(167600,40601,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(167601,40601,'blocks_3_timeline_items_1_text','100% Online Learning'),(167602,40601,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(167603,40601,'blocks_3_timeline_items_2_title','CPD points'),(167604,40601,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(167605,40601,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(167606,40601,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(167607,40601,'blocks_3_timeline_items_3_title','Learning'),(167608,40601,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(167609,40601,'blocks_3_timeline_items_3_text','5-7 Hours '),(167610,40601,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(167611,40601,'blocks_3_timeline_items','4'),(167612,40601,'_blocks_3_timeline_items','field_6177de53d119d'),(167613,40601,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";i:8;s:8:\"template\";i:9;s:10:\"text_block\";}'),(167614,40601,'_blocks','field_6176696113096'),(167615,40601,'course_label_text',''),(167616,40601,'_course_label_text','field_61e17babf71fa'),(167617,40601,'course_label',''),(167618,40601,'_course_label','field_61e12f92749a7'),(167619,40601,'course_description',''),(167620,40601,'_course_description','field_617ac5788e5e1'),(167621,40601,'course_key_info',''),(167622,40601,'_course_key_info','field_617ac6ad8e5e2'),(167623,40601,'course_included',''),(167624,40601,'_course_included','field_617ac6f08e5e4'),(167625,40601,'blocks_4_acfe_flexible_toggle',''),(167626,40601,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167627,40601,'blocks_4_acfe_flexible_layout_title','Text Block'),(167628,40601,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167629,40601,'blocks_4_options_theme','#ffffff'),(167630,40601,'_blocks_4_options_theme','field_6176830e2ad17'),(167631,40601,'blocks_4_options',''),(167632,40601,'_blocks_4_options','field_6176830e2ad16'),(167633,40601,'blocks_4_text_block_heading','Learn more about this course'),(167634,40601,'_blocks_4_text_block_heading','field_617669d413097'),(167635,40601,'blocks_4_text_block_content','Understand how to start an online coaching fitness business by learning from the experts on essential marketing and business need to knows to successfully start your business online. This course is perfect for those looking to adapt their current approach as any coach, by learning how to manage clients online and make a business from doing this. This course will provide all the resources you need to start online coaching by providing you with help, advice and guidance on making this work for your clients.'),(167636,40601,'_blocks_4_text_block_content','field_617669ec13098'),(167637,40601,'blocks_5_acfe_flexible_toggle',''),(167638,40601,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(167639,40601,'blocks_5_acfe_flexible_layout_title','Tabs'),(167640,40601,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(167641,40601,'blocks_5_options_theme','#ffffff'),(167642,40601,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(167643,40601,'blocks_5_options',''),(167644,40601,'_blocks_5_options','field_6177cfcd8140f'),(167645,40601,'blocks_5_tabs_0_tab_label','What’s included'),(167646,40601,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(167647,40601,'blocks_5_tabs_0_tab_content_title',''),(167648,40601,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(167649,40601,'blocks_5_tabs_0_tab_content_heading',''),(167650,40601,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(167651,40601,'blocks_5_tabs_0_tab_content_text','This course will teach you vital skills in running your business online, by exploring marketing, legalisations, sales, online assessments, coaching and insurance. Prevent your services from being restricted by location as you get clients from several locations which will enhance your earning potential and even improve time efficiency in your client management.'),(167652,40601,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(167653,40601,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167654,40601,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(167655,40601,'blocks_5_tabs_0_tab_content_actions','1'),(167656,40601,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(167657,40601,'blocks_5_tabs_0_tab_content',''),(167658,40601,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(167659,40601,'blocks_5_tabs_0_tab_image',''),(167660,40601,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(167661,40601,'blocks_5_tabs_1_tab_label','Course details'),(167662,40601,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(167663,40601,'blocks_5_tabs_1_tab_content_title',''),(167664,40601,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(167665,40601,'blocks_5_tabs_1_tab_content_heading',''),(167666,40601,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(167667,40601,'blocks_5_tabs_1_tab_content_text','Developed by PT Master Trainer Mark Laws and in partnership with My PT Hub, a leading PT software business.\r\n<ul>\r\n 	<li>Marketing your business</li>\r\n 	<li>Marketing for new clients</li>\r\n 	<li>Sales structure &amp; management</li>\r\n 	<li>Coaching clients online</li>\r\n 	<li>Legalities of running a business</li>\r\n 	<li>East – to- implement strategies</li>\r\n 	<li>Insurance help &amp; guidance</li>\r\n</ul>'),(167668,40601,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(167669,40601,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167670,40601,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(167671,40601,'blocks_5_tabs_1_tab_content_actions','1'),(167672,40601,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(167673,40601,'blocks_5_tabs_1_tab_content',''),(167674,40601,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(167675,40601,'blocks_5_tabs_1_tab_image',''),(167676,40601,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(167677,40601,'blocks_5_tabs_2_tab_label','Entry requirements'),(167678,40601,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(167679,40601,'blocks_5_tabs_2_tab_content_title',''),(167680,40601,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(167681,40601,'blocks_5_tabs_2_tab_content_heading',''),(167682,40601,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(167683,40601,'blocks_5_tabs_2_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>There are no formal requirements for this course.</li>\r\n 	<li>However, we do recommend those studying this course are qualified instructors or personal trainers.</li>\r\n</ul>'),(167684,40601,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(167685,40601,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167686,40601,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(167687,40601,'blocks_5_tabs_2_tab_content_actions','1'),(167688,40601,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(167689,40601,'blocks_5_tabs_2_tab_content',''),(167690,40601,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(167691,40601,'blocks_5_tabs_2_tab_image',''),(167692,40601,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(167693,40601,'blocks_5_tabs','3'),(167694,40601,'_blocks_5_tabs','field_6177cff281419'),(167695,40601,'blocks_6_acfe_flexible_toggle',''),(167696,40601,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167697,40601,'blocks_6_acfe_flexible_layout_title','Text Block'),(167698,40601,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167699,40601,'blocks_6_options_theme','#ffffff'),(167700,40601,'_blocks_6_options_theme','field_6176830e2ad17'),(167701,40601,'blocks_6_options',''),(167702,40601,'_blocks_6_options','field_6176830e2ad16'),(167703,40601,'blocks_6_text_block_heading','Blogs'),(167704,40601,'_blocks_6_text_block_heading','field_617669d413097'),(167705,40601,'blocks_6_text_block_content','Why not read some of our blogs on personal training, pilates, nutrition and health and well being before starting the course? We provide valuable business information in all areas to help cement your understanding. Read them here:'),(167706,40601,'_blocks_6_text_block_content','field_617669ec13098'),(167707,40601,'blocks_7_acfe_flexible_toggle',''),(167708,40601,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(167709,40601,'blocks_7_acfe_flexible_layout_title','Cards'),(167710,40601,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(167711,40601,'blocks_7_options_theme','#ffffff'),(167712,40601,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(167713,40601,'blocks_7_options_format','carousel'),(167714,40601,'_blocks_7_options_format','field_617a7b15245b5'),(167715,40601,'blocks_7_options_style','featured'),(167716,40601,'_blocks_7_options_style','field_6278ffb63484a'),(167717,40601,'blocks_7_options_cards_current_listing','0'),(167718,40601,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(167719,40601,'blocks_7_options_cards_content','term'),(167720,40601,'_blocks_7_options_cards_content','field_617aba6122688'),(167721,40601,'blocks_7_options_cards_term','5'),(167722,40601,'_blocks_7_options_cards_term','field_6193f7c180895'),(167723,40601,'blocks_7_options_cards_posts_per_page','6'),(167724,40601,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(167725,40601,'blocks_7_options',''),(167726,40601,'_blocks_7_options','field_617a7b15245b3'),(167727,40601,'blocks_8_acfe_flexible_toggle',''),(167728,40601,'_blocks_8_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(167729,40601,'blocks_8_acfe_flexible_layout_title','Template'),(167730,40601,'_blocks_8_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(167731,40601,'blocks_8_template','39401'),(167732,40601,'_blocks_8_template','field_617bdd570fe01'),(167733,40601,'_thumbnail_id',''),(167734,40601,'__thumbnail_id','field_617570855ddaf'),(167735,40601,'blocks_9_acfe_flexible_toggle',''),(167736,40601,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167737,40601,'blocks_9_acfe_flexible_layout_title','Text Block'),(167738,40601,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167739,40601,'blocks_9_options_theme','#f5f5f5'),(167740,40601,'_blocks_9_options_theme','field_6176830e2ad17'),(167741,40601,'blocks_9_options',''),(167742,40601,'_blocks_9_options','field_6176830e2ad16'),(167743,40601,'blocks_9_text_block_heading','Job Opportunities '),(167744,40601,'_blocks_9_text_block_heading','field_617669d413097'),(167745,40601,'blocks_9_text_block_content','As an online coaching fitness professional, you will be able to successfully deliver a Personal Training Business online with the skills and knowledge needed to lead effective sessions.\r\n<ul>\r\n 	<li>Work as a fully remote as an Online Personal Trainer.</li>\r\n 	<li>Split in gym PT sessions with Online PT sessions giving you more scope to be flexible with your time and the clients.</li>\r\n</ul>\r\nWhichever route you take, online coaching has become increasingly popular amongst clientele; being able to operate online creates a new audience and new opportunities.'),(167746,40601,'_blocks_9_text_block_content','field_617669ec13098'),(167751,40271,'blocks_10_acfe_flexible_toggle',''),(167752,40271,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167753,40271,'blocks_10_acfe_flexible_layout_title','Text Block'),(167754,40271,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167755,40271,'blocks_10_options_theme','#ffffff'),(167756,40271,'_blocks_10_options_theme','field_6176830e2ad17'),(167757,40271,'blocks_10_options',''),(167758,40271,'_blocks_10_options','field_6176830e2ad16'),(167759,40271,'blocks_10_text_block_heading','Frequently Bought Together'),(167760,40271,'_blocks_10_text_block_heading','field_617669d413097'),(167761,40271,'blocks_10_text_block_content','Check out other courses we offer that are frequently bought together'),(167762,40271,'_blocks_10_text_block_content','field_617669ec13098'),(167763,40271,'blocks_11_acfe_flexible_toggle',''),(167764,40271,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(167765,40271,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(167766,40271,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(167767,40271,'blocks_11_options_theme','#ffffff'),(167768,40271,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(167769,40271,'blocks_11_options',''),(167770,40271,'_blocks_11_options','field_617ac0b7f6c08'),(167771,40271,'blocks_11_show','category'),(167772,40271,'_blocks_11_show','field_61a49cba9d946'),(167773,40271,'blocks_11_category','403'),(167774,40271,'_blocks_11_category','field_61a49cd79d947'),(167775,40602,'hide_hero','0'),(167776,40602,'_hide_hero','field_66a2380fcda39'),(167777,40602,'hero_title','Coaching Fitness Online'),(167778,40602,'_hero_title','field_617571fe285e8'),(167779,40602,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(167780,40602,'_hero_text','field_6175723c285e9'),(167781,40602,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167782,40602,'_hero_actions_0_button','field_61757281285eb'),(167783,40602,'hero_actions','1'),(167784,40602,'_hero_actions','field_61757270285ea'),(167785,40602,'hero_style','default'),(167786,40602,'_hero_style','field_62051d9dc5324'),(167787,40602,'hero_image_pos_x','right'),(167788,40602,'_hero_image_pos_x','field_62ec3d05390bb'),(167789,40602,'hero_image_pos_y','top'),(167790,40602,'_hero_image_pos_y','field_62ec3d05390bc'),(167791,40602,'hero_image_pos',''),(167792,40602,'_hero_image_pos','field_62ec3d05390ba'),(167793,40602,'fft_hide_from_listings','0'),(167794,40602,'_fft_hide_from_listings','field_61f1320446ab2'),(167795,40602,'fft_page_format','default'),(167796,40602,'_fft_page_format','field_61ae213f1f218'),(167797,40602,'fft_hide_nav','0'),(167798,40602,'_fft_hide_nav','field_635bd5e43527c'),(167799,40602,'fft_hide_header_call_to_action','0'),(167800,40602,'_fft_hide_header_call_to_action','field_635bd6723527d'),(167801,40602,'fft_page_sitemap','0'),(167802,40602,'_fft_page_sitemap','field_61af9b34e8181'),(167803,40602,'blocks_0_acfe_flexible_toggle',''),(167804,40602,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(167805,40602,'blocks_0_acfe_flexible_layout_title','Template'),(167806,40602,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(167807,40602,'blocks_0_template','39087'),(167808,40602,'_blocks_0_template','field_617bdd570fe01'),(167809,40602,'blocks_1_acfe_flexible_toggle',''),(167810,40602,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167811,40602,'blocks_1_acfe_flexible_layout_title','Text Block'),(167812,40602,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167813,40602,'blocks_1_options_theme','#f5f5f5'),(167814,40602,'_blocks_1_options_theme','field_6176830e2ad17'),(167815,40602,'blocks_1_options',''),(167816,40602,'_blocks_1_options','field_6176830e2ad16'),(167817,40602,'blocks_1_text_block_heading','Course Overview'),(167818,40602,'_blocks_1_text_block_heading','field_617669d413097'),(167819,40602,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(167820,40602,'_blocks_1_text_block_content','field_617669ec13098'),(167821,40602,'blocks_2_acfe_flexible_toggle',''),(167822,40602,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(167823,40602,'blocks_2_acfe_flexible_layout_title','Logos'),(167824,40602,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(167825,40602,'blocks_2_options_theme','#ffffff'),(167826,40602,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(167827,40602,'blocks_2_options_format','grid'),(167828,40602,'_blocks_2_options_format','field_61782964ee971'),(167829,40602,'blocks_2_options',''),(167830,40602,'_blocks_2_options','field_61782954ee965'),(167831,40602,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(167832,40602,'_blocks_2_logos','field_61782954ee96d'),(167833,40602,'blocks_2_title',''),(167834,40602,'_blocks_2_title','field_668fbfdc2daa1'),(167835,40602,'blocks_3_acfe_flexible_toggle',''),(167836,40602,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(167837,40602,'blocks_3_acfe_flexible_layout_title','Timeline'),(167838,40602,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(167839,40602,'blocks_3_options_theme','#b61234'),(167840,40602,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(167841,40602,'blocks_3_options',''),(167842,40602,'_blocks_3_options','field_6177de53d1195'),(167843,40602,'blocks_3_timeline_content_title',''),(167844,40602,'_blocks_3_timeline_content_title','field_6177de53d1198'),(167845,40602,'blocks_3_timeline_content_heading','Course overview'),(167846,40602,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(167847,40602,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(167848,40602,'_blocks_3_timeline_content_text','field_6177de53d119a'),(167849,40602,'blocks_3_timeline_content_actions',''),(167850,40602,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(167851,40602,'blocks_3_timeline_content',''),(167852,40602,'_blocks_3_timeline_content','field_6177de53d1197'),(167853,40602,'blocks_3_timeline_items_0_title','CIMSPA'),(167854,40602,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(167855,40602,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(167856,40602,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(167857,40602,'blocks_3_timeline_items_1_title','Course Type'),(167858,40602,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(167859,40602,'blocks_3_timeline_items_1_text','100% Online Learning'),(167860,40602,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(167861,40602,'blocks_3_timeline_items_2_title','CPD points'),(167862,40602,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(167863,40602,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(167864,40602,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(167865,40602,'blocks_3_timeline_items_3_title','Learning'),(167866,40602,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(167867,40602,'blocks_3_timeline_items_3_text','5-7 Hours '),(167868,40602,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(167869,40602,'blocks_3_timeline_items','4'),(167870,40602,'_blocks_3_timeline_items','field_6177de53d119d'),(167871,40602,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";i:8;s:8:\"template\";i:9;s:10:\"text_block\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";}'),(167872,40602,'_blocks','field_6176696113096'),(167873,40602,'course_label_text',''),(167874,40602,'_course_label_text','field_61e17babf71fa'),(167875,40602,'course_label',''),(167876,40602,'_course_label','field_61e12f92749a7'),(167877,40602,'course_description',''),(167878,40602,'_course_description','field_617ac5788e5e1'),(167879,40602,'course_key_info',''),(167880,40602,'_course_key_info','field_617ac6ad8e5e2'),(167881,40602,'course_included',''),(167882,40602,'_course_included','field_617ac6f08e5e4'),(167883,40602,'blocks_4_acfe_flexible_toggle',''),(167884,40602,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167885,40602,'blocks_4_acfe_flexible_layout_title','Text Block'),(167886,40602,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167887,40602,'blocks_4_options_theme','#ffffff'),(167888,40602,'_blocks_4_options_theme','field_6176830e2ad17'),(167889,40602,'blocks_4_options',''),(167890,40602,'_blocks_4_options','field_6176830e2ad16'),(167891,40602,'blocks_4_text_block_heading','Learn more about this course'),(167892,40602,'_blocks_4_text_block_heading','field_617669d413097'),(167893,40602,'blocks_4_text_block_content','Understand how to start an online coaching fitness business by learning from the experts on essential marketing and business need to knows to successfully start your business online. This course is perfect for those looking to adapt their current approach as any coach, by learning how to manage clients online and make a business from doing this. This course will provide all the resources you need to start online coaching by providing you with help, advice and guidance on making this work for your clients.'),(167894,40602,'_blocks_4_text_block_content','field_617669ec13098'),(167895,40602,'blocks_5_acfe_flexible_toggle',''),(167896,40602,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(167897,40602,'blocks_5_acfe_flexible_layout_title','Tabs'),(167898,40602,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(167899,40602,'blocks_5_options_theme','#ffffff'),(167900,40602,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(167901,40602,'blocks_5_options',''),(167902,40602,'_blocks_5_options','field_6177cfcd8140f'),(167903,40602,'blocks_5_tabs_0_tab_label','What’s included'),(167904,40602,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(167905,40602,'blocks_5_tabs_0_tab_content_title',''),(167906,40602,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(167907,40602,'blocks_5_tabs_0_tab_content_heading',''),(167908,40602,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(167909,40602,'blocks_5_tabs_0_tab_content_text','This course will teach you vital skills in running your business online, by exploring marketing, legalisations, sales, online assessments, coaching and insurance. Prevent your services from being restricted by location as you get clients from several locations which will enhance your earning potential and even improve time efficiency in your client management.'),(167910,40602,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(167911,40602,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167912,40602,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(167913,40602,'blocks_5_tabs_0_tab_content_actions','1'),(167914,40602,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(167915,40602,'blocks_5_tabs_0_tab_content',''),(167916,40602,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(167917,40602,'blocks_5_tabs_0_tab_image',''),(167918,40602,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(167919,40602,'blocks_5_tabs_1_tab_label','Course details'),(167920,40602,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(167921,40602,'blocks_5_tabs_1_tab_content_title',''),(167922,40602,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(167923,40602,'blocks_5_tabs_1_tab_content_heading',''),(167924,40602,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(167925,40602,'blocks_5_tabs_1_tab_content_text','Developed by PT Master Trainer Mark Laws and in partnership with My PT Hub, a leading PT software business.\r\n<ul>\r\n 	<li>Marketing your business</li>\r\n 	<li>Marketing for new clients</li>\r\n 	<li>Sales structure &amp; management</li>\r\n 	<li>Coaching clients online</li>\r\n 	<li>Legalities of running a business</li>\r\n 	<li>East – to- implement strategies</li>\r\n 	<li>Insurance help &amp; guidance</li>\r\n</ul>'),(167926,40602,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(167927,40602,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167928,40602,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(167929,40602,'blocks_5_tabs_1_tab_content_actions','1'),(167930,40602,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(167931,40602,'blocks_5_tabs_1_tab_content',''),(167932,40602,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(167933,40602,'blocks_5_tabs_1_tab_image',''),(167934,40602,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(167935,40602,'blocks_5_tabs_2_tab_label','Entry requirements'),(167936,40602,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(167937,40602,'blocks_5_tabs_2_tab_content_title',''),(167938,40602,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(167939,40602,'blocks_5_tabs_2_tab_content_heading',''),(167940,40602,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(167941,40602,'blocks_5_tabs_2_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>There are no formal requirements for this course.</li>\r\n 	<li>However, we do recommend those studying this course are qualified instructors or personal trainers.</li>\r\n</ul>'),(167942,40602,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(167943,40602,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(167944,40602,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(167945,40602,'blocks_5_tabs_2_tab_content_actions','1'),(167946,40602,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(167947,40602,'blocks_5_tabs_2_tab_content',''),(167948,40602,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(167949,40602,'blocks_5_tabs_2_tab_image',''),(167950,40602,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(167951,40602,'blocks_5_tabs','3'),(167952,40602,'_blocks_5_tabs','field_6177cff281419'),(167953,40602,'blocks_6_acfe_flexible_toggle',''),(167954,40602,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167955,40602,'blocks_6_acfe_flexible_layout_title','Text Block'),(167956,40602,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167957,40602,'blocks_6_options_theme','#ffffff'),(167958,40602,'_blocks_6_options_theme','field_6176830e2ad17'),(167959,40602,'blocks_6_options',''),(167960,40602,'_blocks_6_options','field_6176830e2ad16'),(167961,40602,'blocks_6_text_block_heading','Blogs'),(167962,40602,'_blocks_6_text_block_heading','field_617669d413097'),(167963,40602,'blocks_6_text_block_content','Why not read some of our blogs on personal training, pilates, nutrition and health and well being before starting the course? We provide valuable business information in all areas to help cement your understanding. Read them here:'),(167964,40602,'_blocks_6_text_block_content','field_617669ec13098'),(167965,40602,'blocks_7_acfe_flexible_toggle',''),(167966,40602,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(167967,40602,'blocks_7_acfe_flexible_layout_title','Cards'),(167968,40602,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(167969,40602,'blocks_7_options_theme','#ffffff'),(167970,40602,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(167971,40602,'blocks_7_options_format','carousel'),(167972,40602,'_blocks_7_options_format','field_617a7b15245b5'),(167973,40602,'blocks_7_options_style','featured'),(167974,40602,'_blocks_7_options_style','field_6278ffb63484a'),(167975,40602,'blocks_7_options_cards_current_listing','0'),(167976,40602,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(167977,40602,'blocks_7_options_cards_content','term'),(167978,40602,'_blocks_7_options_cards_content','field_617aba6122688'),(167979,40602,'blocks_7_options_cards_term','5'),(167980,40602,'_blocks_7_options_cards_term','field_6193f7c180895'),(167981,40602,'blocks_7_options_cards_posts_per_page','6'),(167982,40602,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(167983,40602,'blocks_7_options',''),(167984,40602,'_blocks_7_options','field_617a7b15245b3'),(167985,40602,'blocks_8_acfe_flexible_toggle',''),(167986,40602,'_blocks_8_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(167987,40602,'blocks_8_acfe_flexible_layout_title','Template'),(167988,40602,'_blocks_8_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(167989,40602,'blocks_8_template','39401'),(167990,40602,'_blocks_8_template','field_617bdd570fe01'),(167991,40602,'blocks_9_acfe_flexible_toggle',''),(167992,40602,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(167993,40602,'blocks_9_acfe_flexible_layout_title','Text Block'),(167994,40602,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(167995,40602,'blocks_9_options_theme','#f5f5f5'),(167996,40602,'_blocks_9_options_theme','field_6176830e2ad17'),(167997,40602,'blocks_9_options',''),(167998,40602,'_blocks_9_options','field_6176830e2ad16'),(167999,40602,'blocks_9_text_block_heading','Job Opportunities '),(168000,40602,'_blocks_9_text_block_heading','field_617669d413097'),(168001,40602,'blocks_9_text_block_content','As an online coaching fitness professional, you will be able to successfully deliver a Personal Training Business online with the skills and knowledge needed to lead effective sessions.\r\n<ul>\r\n 	<li>Work as a fully remote as an Online Personal Trainer.</li>\r\n 	<li>Split in gym PT sessions with Online PT sessions giving you more scope to be flexible with your time and the clients.</li>\r\n</ul>\r\nWhichever route you take, online coaching has become increasingly popular amongst clientele; being able to operate online creates a new audience and new opportunities.'),(168002,40602,'_blocks_9_text_block_content','field_617669ec13098'),(168003,40602,'_thumbnail_id',''),(168004,40602,'__thumbnail_id','field_617570855ddaf'),(168005,40602,'blocks_10_acfe_flexible_toggle',''),(168006,40602,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(168007,40602,'blocks_10_acfe_flexible_layout_title','Text Block'),(168008,40602,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(168009,40602,'blocks_10_options_theme','#ffffff'),(168010,40602,'_blocks_10_options_theme','field_6176830e2ad17'),(168011,40602,'blocks_10_options',''),(168012,40602,'_blocks_10_options','field_6176830e2ad16'),(168013,40602,'blocks_10_text_block_heading','Frequently Bought Together'),(168014,40602,'_blocks_10_text_block_heading','field_617669d413097'),(168015,40602,'blocks_10_text_block_content','Check out other courses we offer that are frequently bought together'),(168016,40602,'_blocks_10_text_block_content','field_617669ec13098'),(168017,40602,'blocks_11_acfe_flexible_toggle',''),(168018,40602,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(168019,40602,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(168020,40602,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(168021,40602,'blocks_11_options_theme','#ffffff'),(168022,40602,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(168023,40602,'blocks_11_options',''),(168024,40602,'_blocks_11_options','field_617ac0b7f6c08'),(168025,40602,'blocks_11_show','category'),(168026,40602,'_blocks_11_show','field_61a49cba9d946'),(168027,40602,'blocks_11_category','403'),(168028,40602,'_blocks_11_category','field_61a49cd79d947'),(168030,40271,'blocks_12_acfe_flexible_toggle',''),(168031,40271,'_blocks_12_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(168032,40271,'blocks_12_acfe_flexible_layout_title','Testimonial Slider'),(168033,40271,'_blocks_12_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(168034,40271,'blocks_12_testimonial_slider_content_title',''),(168035,40271,'_blocks_12_testimonial_slider_content_title','field_617c033b39a60'),(168036,40271,'blocks_12_testimonial_slider_content_heading','Testimonials'),(168037,40271,'_blocks_12_testimonial_slider_content_heading','field_617c033b39a61'),(168038,40271,'blocks_12_testimonial_slider_content_text','Read testimonials from people who have purchased this course before.'),(168039,40271,'_blocks_12_testimonial_slider_content_text','field_617c033b39a62'),(168040,40271,'blocks_12_testimonial_slider_content_actions',''),(168041,40271,'_blocks_12_testimonial_slider_content_actions','field_617c033b39a63'),(168042,40271,'blocks_12_testimonial_slider_content',''),(168043,40271,'_blocks_12_testimonial_slider_content','field_617c033b39a5f'),(168044,40271,'blocks_12_testimonial_slider_items',''),(168045,40271,'_blocks_12_testimonial_slider_items','field_61812eaeb20eb'),(168046,40271,'blocks_12_testimonial_slider_ambassador_bool','0'),(168047,40271,'_blocks_12_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(168048,40271,'blocks_13_acfe_flexible_toggle',''),(168049,40271,'_blocks_13_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(168050,40271,'blocks_13_acfe_flexible_layout_title','Video'),(168051,40271,'_blocks_13_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(168052,40271,'blocks_13_size','large'),(168053,40271,'_blocks_13_size','field_6487038f297c1'),(168054,40271,'blocks_13_row_content_title',''),(168055,40271,'_blocks_13_row_content_title','field_64870132a865d'),(168056,40271,'blocks_13_row_content_heading','Coaching Fitness Online '),(168057,40271,'_blocks_13_row_content_heading','field_64870142a865e'),(168058,40271,'blocks_13_row_content_text',''),(168059,40271,'_blocks_13_row_content_text','field_64870148a865f'),(168060,40271,'blocks_13_row_content',''),(168061,40271,'_blocks_13_row_content','field_6487008ba865c'),(168062,40271,'blocks_13_video_src','https://www.youtube.com/watch?v=whTK4-PJ_DA&t=1s'),(168063,40271,'_blocks_13_video_src','field_6193c4a98ec07'),(168064,40271,'blocks_13_video_thumbnail',''),(168065,40271,'_blocks_13_video_thumbnail','field_6193c4a08ec06'),(168066,40271,'blocks_14_acfe_flexible_toggle',''),(168067,40271,'_blocks_14_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(168068,40271,'blocks_14_acfe_flexible_layout_title','Timeline'),(168069,40271,'_blocks_14_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(168070,40271,'blocks_14_options_theme','#ffffff'),(168071,40271,'_blocks_14_options_theme','field_6177de53d1196_field_6176830e2ad17'),(168072,40271,'blocks_14_options',''),(168073,40271,'_blocks_14_options','field_6177de53d1195'),(168074,40271,'blocks_14_timeline_content_title',''),(168075,40271,'_blocks_14_timeline_content_title','field_6177de53d1198'),(168076,40271,'blocks_14_timeline_content_heading','Why should I study this course?'),(168077,40271,'_blocks_14_timeline_content_heading','field_6177de53d1199'),(168078,40271,'blocks_14_timeline_content_text',''),(168079,40271,'_blocks_14_timeline_content_text','field_6177de53d119a'),(168080,40271,'blocks_14_timeline_content_actions',''),(168081,40271,'_blocks_14_timeline_content_actions','field_6177de53d119b'),(168082,40271,'blocks_14_timeline_content',''),(168083,40271,'_blocks_14_timeline_content','field_6177de53d1197'),(168084,40271,'blocks_14_timeline_items_0_title','Keep up with demand '),(168085,40271,'_blocks_14_timeline_items_0_title','field_6177de53d119f'),(168086,40271,'blocks_14_timeline_items_0_text','The demand for online Personal Trainers and classes is at an all time high. You can be at the forefront of that offering! '),(168087,40271,'_blocks_14_timeline_items_0_text','field_6177de53d11a0'),(168088,40271,'blocks_14_timeline_items_1_title','Boost your client base '),(168089,40271,'_blocks_14_timeline_items_1_title','field_6177de53d119f'),(168090,40271,'blocks_14_timeline_items_1_text','When providing your training online you aren\'t restricted by location, so you can reach a wider audience in different areas and expand your client base beyond belief. '),(168091,40271,'_blocks_14_timeline_items_1_text','field_6177de53d11a0'),(168092,40271,'blocks_14_timeline_items_2_title','Open up new opportunities '),(168093,40271,'_blocks_14_timeline_items_2_title','field_6177de53d119f'),(168094,40271,'blocks_14_timeline_items_2_text','Having the flexibility to take your fitness business online will open the door to new opportunities, including new styles of training, being able to deliver even more and reach potential clients in a variety of locations. '),(168095,40271,'_blocks_14_timeline_items_2_text','field_6177de53d11a0'),(168096,40271,'blocks_14_timeline_items_3_title','Gain vital skills '),(168097,40271,'_blocks_14_timeline_items_3_title','field_6177de53d119f'),(168098,40271,'blocks_14_timeline_items_3_text','Covering the absolute vital fundamentals such as Marketing, Sales, Assessment, Coaching, Insurance, Legalities and more, you will be heads and shoulders above the rest whether you are offering your training face-to-face, online or a combination of the two! '),(168099,40271,'_blocks_14_timeline_items_3_text','field_6177de53d11a0'),(168100,40271,'blocks_14_timeline_items','4'),(168101,40271,'_blocks_14_timeline_items','field_6177de53d119d'),(168102,40603,'hide_hero','0'),(168103,40603,'_hide_hero','field_66a2380fcda39'),(168104,40603,'hero_title','Coaching Fitness Online'),(168105,40603,'_hero_title','field_617571fe285e8'),(168106,40603,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(168107,40603,'_hero_text','field_6175723c285e9'),(168108,40603,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168109,40603,'_hero_actions_0_button','field_61757281285eb'),(168110,40603,'hero_actions','1'),(168111,40603,'_hero_actions','field_61757270285ea'),(168112,40603,'hero_style','default'),(168113,40603,'_hero_style','field_62051d9dc5324'),(168114,40603,'hero_image_pos_x','right'),(168115,40603,'_hero_image_pos_x','field_62ec3d05390bb'),(168116,40603,'hero_image_pos_y','top'),(168117,40603,'_hero_image_pos_y','field_62ec3d05390bc'),(168118,40603,'hero_image_pos',''),(168119,40603,'_hero_image_pos','field_62ec3d05390ba'),(168120,40603,'fft_hide_from_listings','0'),(168121,40603,'_fft_hide_from_listings','field_61f1320446ab2'),(168122,40603,'fft_page_format','default'),(168123,40603,'_fft_page_format','field_61ae213f1f218'),(168124,40603,'fft_hide_nav','0'),(168125,40603,'_fft_hide_nav','field_635bd5e43527c'),(168126,40603,'fft_hide_header_call_to_action','0'),(168127,40603,'_fft_hide_header_call_to_action','field_635bd6723527d'),(168128,40603,'fft_page_sitemap','0'),(168129,40603,'_fft_page_sitemap','field_61af9b34e8181'),(168130,40603,'blocks_0_acfe_flexible_toggle',''),(168131,40603,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(168132,40603,'blocks_0_acfe_flexible_layout_title','Template'),(168133,40603,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(168134,40603,'blocks_0_template','39087'),(168135,40603,'_blocks_0_template','field_617bdd570fe01'),(168136,40603,'blocks_1_acfe_flexible_toggle',''),(168137,40603,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(168138,40603,'blocks_1_acfe_flexible_layout_title','Text Block'),(168139,40603,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(168140,40603,'blocks_1_options_theme','#f5f5f5'),(168141,40603,'_blocks_1_options_theme','field_6176830e2ad17'),(168142,40603,'blocks_1_options',''),(168143,40603,'_blocks_1_options','field_6176830e2ad16'),(168144,40603,'blocks_1_text_block_heading','Course Overview'),(168145,40603,'_blocks_1_text_block_heading','field_617669d413097'),(168146,40603,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(168147,40603,'_blocks_1_text_block_content','field_617669ec13098'),(168148,40603,'blocks_2_acfe_flexible_toggle',''),(168149,40603,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(168150,40603,'blocks_2_acfe_flexible_layout_title','Logos'),(168151,40603,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(168152,40603,'blocks_2_options_theme','#ffffff'),(168153,40603,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(168154,40603,'blocks_2_options_format','grid'),(168155,40603,'_blocks_2_options_format','field_61782964ee971'),(168156,40603,'blocks_2_options',''),(168157,40603,'_blocks_2_options','field_61782954ee965'),(168158,40603,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(168159,40603,'_blocks_2_logos','field_61782954ee96d'),(168160,40603,'blocks_2_title',''),(168161,40603,'_blocks_2_title','field_668fbfdc2daa1'),(168162,40603,'blocks_3_acfe_flexible_toggle',''),(168163,40603,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(168164,40603,'blocks_3_acfe_flexible_layout_title','Timeline'),(168165,40603,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(168166,40603,'blocks_3_options_theme','#b61234'),(168167,40603,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(168168,40603,'blocks_3_options',''),(168169,40603,'_blocks_3_options','field_6177de53d1195'),(168170,40603,'blocks_3_timeline_content_title',''),(168171,40603,'_blocks_3_timeline_content_title','field_6177de53d1198'),(168172,40603,'blocks_3_timeline_content_heading','Course overview'),(168173,40603,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(168174,40603,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(168175,40603,'_blocks_3_timeline_content_text','field_6177de53d119a'),(168176,40603,'blocks_3_timeline_content_actions',''),(168177,40603,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(168178,40603,'blocks_3_timeline_content',''),(168179,40603,'_blocks_3_timeline_content','field_6177de53d1197'),(168180,40603,'blocks_3_timeline_items_0_title','CIMSPA'),(168181,40603,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(168182,40603,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(168183,40603,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(168184,40603,'blocks_3_timeline_items_1_title','Course Type'),(168185,40603,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(168186,40603,'blocks_3_timeline_items_1_text','100% Online Learning'),(168187,40603,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(168188,40603,'blocks_3_timeline_items_2_title','CPD points'),(168189,40603,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(168190,40603,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(168191,40603,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(168192,40603,'blocks_3_timeline_items_3_title','Learning'),(168193,40603,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(168194,40603,'blocks_3_timeline_items_3_text','5-7 Hours '),(168195,40603,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(168196,40603,'blocks_3_timeline_items','4'),(168197,40603,'_blocks_3_timeline_items','field_6177de53d119d'),(168198,40603,'blocks','a:15:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";i:8;s:8:\"template\";i:9;s:10:\"text_block\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:18:\"testimonial_slider\";i:13;s:5:\"video\";i:14;s:13:\"step_timeline\";}'),(168199,40603,'_blocks','field_6176696113096'),(168200,40603,'course_label_text',''),(168201,40603,'_course_label_text','field_61e17babf71fa'),(168202,40603,'course_label',''),(168203,40603,'_course_label','field_61e12f92749a7'),(168204,40603,'course_description',''),(168205,40603,'_course_description','field_617ac5788e5e1'),(168206,40603,'course_key_info',''),(168207,40603,'_course_key_info','field_617ac6ad8e5e2'),(168208,40603,'course_included',''),(168209,40603,'_course_included','field_617ac6f08e5e4'),(168210,40603,'blocks_4_acfe_flexible_toggle',''),(168211,40603,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(168212,40603,'blocks_4_acfe_flexible_layout_title','Text Block'),(168213,40603,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(168214,40603,'blocks_4_options_theme','#ffffff'),(168215,40603,'_blocks_4_options_theme','field_6176830e2ad17'),(168216,40603,'blocks_4_options',''),(168217,40603,'_blocks_4_options','field_6176830e2ad16'),(168218,40603,'blocks_4_text_block_heading','Learn more about this course'),(168219,40603,'_blocks_4_text_block_heading','field_617669d413097'),(168220,40603,'blocks_4_text_block_content','Understand how to start an online coaching fitness business by learning from the experts on essential marketing and business need to knows to successfully start your business online. This course is perfect for those looking to adapt their current approach as any coach, by learning how to manage clients online and make a business from doing this. This course will provide all the resources you need to start online coaching by providing you with help, advice and guidance on making this work for your clients.'),(168221,40603,'_blocks_4_text_block_content','field_617669ec13098'),(168222,40603,'blocks_5_acfe_flexible_toggle',''),(168223,40603,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(168224,40603,'blocks_5_acfe_flexible_layout_title','Tabs'),(168225,40603,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(168226,40603,'blocks_5_options_theme','#ffffff'),(168227,40603,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(168228,40603,'blocks_5_options',''),(168229,40603,'_blocks_5_options','field_6177cfcd8140f'),(168230,40603,'blocks_5_tabs_0_tab_label','What’s included'),(168231,40603,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(168232,40603,'blocks_5_tabs_0_tab_content_title',''),(168233,40603,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(168234,40603,'blocks_5_tabs_0_tab_content_heading',''),(168235,40603,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(168236,40603,'blocks_5_tabs_0_tab_content_text','This course will teach you vital skills in running your business online, by exploring marketing, legalisations, sales, online assessments, coaching and insurance. Prevent your services from being restricted by location as you get clients from several locations which will enhance your earning potential and even improve time efficiency in your client management.'),(168237,40603,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(168238,40603,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168239,40603,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(168240,40603,'blocks_5_tabs_0_tab_content_actions','1'),(168241,40603,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(168242,40603,'blocks_5_tabs_0_tab_content',''),(168243,40603,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(168244,40603,'blocks_5_tabs_0_tab_image',''),(168245,40603,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(168246,40603,'blocks_5_tabs_1_tab_label','Course details'),(168247,40603,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(168248,40603,'blocks_5_tabs_1_tab_content_title',''),(168249,40603,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(168250,40603,'blocks_5_tabs_1_tab_content_heading',''),(168251,40603,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(168252,40603,'blocks_5_tabs_1_tab_content_text','Developed by PT Master Trainer Mark Laws and in partnership with My PT Hub, a leading PT software business.\r\n<ul>\r\n 	<li>Marketing your business</li>\r\n 	<li>Marketing for new clients</li>\r\n 	<li>Sales structure &amp; management</li>\r\n 	<li>Coaching clients online</li>\r\n 	<li>Legalities of running a business</li>\r\n 	<li>East – to- implement strategies</li>\r\n 	<li>Insurance help &amp; guidance</li>\r\n</ul>'),(168253,40603,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(168254,40603,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168255,40603,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(168256,40603,'blocks_5_tabs_1_tab_content_actions','1'),(168257,40603,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(168258,40603,'blocks_5_tabs_1_tab_content',''),(168259,40603,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(168260,40603,'blocks_5_tabs_1_tab_image',''),(168261,40603,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(168262,40603,'blocks_5_tabs_2_tab_label','Entry requirements'),(168263,40603,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(168264,40603,'blocks_5_tabs_2_tab_content_title',''),(168265,40603,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(168266,40603,'blocks_5_tabs_2_tab_content_heading',''),(168267,40603,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(168268,40603,'blocks_5_tabs_2_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>There are no formal requirements for this course.</li>\r\n 	<li>However, we do recommend those studying this course are qualified instructors or personal trainers.</li>\r\n</ul>'),(168269,40603,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(168270,40603,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168271,40603,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(168272,40603,'blocks_5_tabs_2_tab_content_actions','1'),(168273,40603,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(168274,40603,'blocks_5_tabs_2_tab_content',''),(168275,40603,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(168276,40603,'blocks_5_tabs_2_tab_image',''),(168277,40603,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(168278,40603,'blocks_5_tabs','3'),(168279,40603,'_blocks_5_tabs','field_6177cff281419'),(168280,40603,'blocks_6_acfe_flexible_toggle',''),(168281,40603,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(168282,40603,'blocks_6_acfe_flexible_layout_title','Text Block'),(168283,40603,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(168284,40603,'blocks_6_options_theme','#ffffff'),(168285,40603,'_blocks_6_options_theme','field_6176830e2ad17'),(168286,40603,'blocks_6_options',''),(168287,40603,'_blocks_6_options','field_6176830e2ad16'),(168288,40603,'blocks_6_text_block_heading','Blogs'),(168289,40603,'_blocks_6_text_block_heading','field_617669d413097'),(168290,40603,'blocks_6_text_block_content','Why not read some of our blogs on personal training, pilates, nutrition and health and well being before starting the course? We provide valuable business information in all areas to help cement your understanding. Read them here:'),(168291,40603,'_blocks_6_text_block_content','field_617669ec13098'),(168292,40603,'blocks_7_acfe_flexible_toggle',''),(168293,40603,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(168294,40603,'blocks_7_acfe_flexible_layout_title','Cards'),(168295,40603,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(168296,40603,'blocks_7_options_theme','#ffffff'),(168297,40603,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(168298,40603,'blocks_7_options_format','carousel'),(168299,40603,'_blocks_7_options_format','field_617a7b15245b5'),(168300,40603,'blocks_7_options_style','featured'),(168301,40603,'_blocks_7_options_style','field_6278ffb63484a'),(168302,40603,'blocks_7_options_cards_current_listing','0'),(168303,40603,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(168304,40603,'blocks_7_options_cards_content','term'),(168305,40603,'_blocks_7_options_cards_content','field_617aba6122688'),(168306,40603,'blocks_7_options_cards_term','5'),(168307,40603,'_blocks_7_options_cards_term','field_6193f7c180895'),(168308,40603,'blocks_7_options_cards_posts_per_page','6'),(168309,40603,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(168310,40603,'blocks_7_options',''),(168311,40603,'_blocks_7_options','field_617a7b15245b3'),(168312,40603,'blocks_8_acfe_flexible_toggle',''),(168313,40603,'_blocks_8_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(168314,40603,'blocks_8_acfe_flexible_layout_title','Template'),(168315,40603,'_blocks_8_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(168316,40603,'blocks_8_template','39401'),(168317,40603,'_blocks_8_template','field_617bdd570fe01'),(168318,40603,'blocks_9_acfe_flexible_toggle',''),(168319,40603,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(168320,40603,'blocks_9_acfe_flexible_layout_title','Text Block'),(168321,40603,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(168322,40603,'blocks_9_options_theme','#f5f5f5'),(168323,40603,'_blocks_9_options_theme','field_6176830e2ad17'),(168324,40603,'blocks_9_options',''),(168325,40603,'_blocks_9_options','field_6176830e2ad16'),(168326,40603,'blocks_9_text_block_heading','Job Opportunities '),(168327,40603,'_blocks_9_text_block_heading','field_617669d413097'),(168328,40603,'blocks_9_text_block_content','As an online coaching fitness professional, you will be able to successfully deliver a Personal Training Business online with the skills and knowledge needed to lead effective sessions.\r\n<ul>\r\n 	<li>Work as a fully remote as an Online Personal Trainer.</li>\r\n 	<li>Split in gym PT sessions with Online PT sessions giving you more scope to be flexible with your time and the clients.</li>\r\n</ul>\r\nWhichever route you take, online coaching has become increasingly popular amongst clientele; being able to operate online creates a new audience and new opportunities.'),(168329,40603,'_blocks_9_text_block_content','field_617669ec13098'),(168330,40603,'blocks_10_acfe_flexible_toggle',''),(168331,40603,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(168332,40603,'blocks_10_acfe_flexible_layout_title','Text Block'),(168333,40603,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(168334,40603,'blocks_10_options_theme','#ffffff'),(168335,40603,'_blocks_10_options_theme','field_6176830e2ad17'),(168336,40603,'blocks_10_options',''),(168337,40603,'_blocks_10_options','field_6176830e2ad16'),(168338,40603,'blocks_10_text_block_heading','Frequently Bought Together'),(168339,40603,'_blocks_10_text_block_heading','field_617669d413097'),(168340,40603,'blocks_10_text_block_content','Check out other courses we offer that are frequently bought together'),(168341,40603,'_blocks_10_text_block_content','field_617669ec13098'),(168342,40603,'blocks_11_acfe_flexible_toggle',''),(168343,40603,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(168344,40603,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(168345,40603,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(168346,40603,'blocks_11_options_theme','#ffffff'),(168347,40603,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(168348,40603,'blocks_11_options',''),(168349,40603,'_blocks_11_options','field_617ac0b7f6c08'),(168350,40603,'blocks_11_show','category'),(168351,40603,'_blocks_11_show','field_61a49cba9d946'),(168352,40603,'blocks_11_category','403'),(168353,40603,'_blocks_11_category','field_61a49cd79d947'),(168354,40603,'_thumbnail_id',''),(168355,40603,'__thumbnail_id','field_617570855ddaf'),(168356,40603,'blocks_12_acfe_flexible_toggle',''),(168357,40603,'_blocks_12_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(168358,40603,'blocks_12_acfe_flexible_layout_title','Testimonial Slider'),(168359,40603,'_blocks_12_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(168360,40603,'blocks_12_testimonial_slider_content_title',''),(168361,40603,'_blocks_12_testimonial_slider_content_title','field_617c033b39a60'),(168362,40603,'blocks_12_testimonial_slider_content_heading','Testimonials'),(168363,40603,'_blocks_12_testimonial_slider_content_heading','field_617c033b39a61'),(168364,40603,'blocks_12_testimonial_slider_content_text','Read testimonials from people who have purchased this course before.'),(168365,40603,'_blocks_12_testimonial_slider_content_text','field_617c033b39a62'),(168366,40603,'blocks_12_testimonial_slider_content_actions',''),(168367,40603,'_blocks_12_testimonial_slider_content_actions','field_617c033b39a63'),(168368,40603,'blocks_12_testimonial_slider_content',''),(168369,40603,'_blocks_12_testimonial_slider_content','field_617c033b39a5f'),(168370,40603,'blocks_12_testimonial_slider_items',''),(168371,40603,'_blocks_12_testimonial_slider_items','field_61812eaeb20eb'),(168372,40603,'blocks_12_testimonial_slider_ambassador_bool','0'),(168373,40603,'_blocks_12_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(168374,40603,'blocks_13_acfe_flexible_toggle',''),(168375,40603,'_blocks_13_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(168376,40603,'blocks_13_acfe_flexible_layout_title','Video'),(168377,40603,'_blocks_13_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(168378,40603,'blocks_13_size','large'),(168379,40603,'_blocks_13_size','field_6487038f297c1'),(168380,40603,'blocks_13_row_content_title',''),(168381,40603,'_blocks_13_row_content_title','field_64870132a865d'),(168382,40603,'blocks_13_row_content_heading','Coaching Fitness Online '),(168383,40603,'_blocks_13_row_content_heading','field_64870142a865e'),(168384,40603,'blocks_13_row_content_text',''),(168385,40603,'_blocks_13_row_content_text','field_64870148a865f'),(168386,40603,'blocks_13_row_content',''),(168387,40603,'_blocks_13_row_content','field_6487008ba865c'),(168388,40603,'blocks_13_video_src','https://www.youtube.com/watch?v=whTK4-PJ_DA&t=1s'),(168389,40603,'_blocks_13_video_src','field_6193c4a98ec07'),(168390,40603,'blocks_13_video_thumbnail',''),(168391,40603,'_blocks_13_video_thumbnail','field_6193c4a08ec06'),(168392,40603,'blocks_14_acfe_flexible_toggle',''),(168393,40603,'_blocks_14_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(168394,40603,'blocks_14_acfe_flexible_layout_title','Timeline'),(168395,40603,'_blocks_14_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(168396,40603,'blocks_14_options_theme','#ffffff'),(168397,40603,'_blocks_14_options_theme','field_6177de53d1196_field_6176830e2ad17'),(168398,40603,'blocks_14_options',''),(168399,40603,'_blocks_14_options','field_6177de53d1195'),(168400,40603,'blocks_14_timeline_content_title',''),(168401,40603,'_blocks_14_timeline_content_title','field_6177de53d1198'),(168402,40603,'blocks_14_timeline_content_heading','Why should I study this course?'),(168403,40603,'_blocks_14_timeline_content_heading','field_6177de53d1199'),(168404,40603,'blocks_14_timeline_content_text',''),(168405,40603,'_blocks_14_timeline_content_text','field_6177de53d119a'),(168406,40603,'blocks_14_timeline_content_actions',''),(168407,40603,'_blocks_14_timeline_content_actions','field_6177de53d119b'),(168408,40603,'blocks_14_timeline_content',''),(168409,40603,'_blocks_14_timeline_content','field_6177de53d1197'),(168410,40603,'blocks_14_timeline_items_0_title','Keep up with demand '),(168411,40603,'_blocks_14_timeline_items_0_title','field_6177de53d119f'),(168412,40603,'blocks_14_timeline_items_0_text','The demand for online Personal Trainers and classes is at an all time high. You can be at the forefront of that offering! '),(168413,40603,'_blocks_14_timeline_items_0_text','field_6177de53d11a0'),(168414,40603,'blocks_14_timeline_items_1_title','Boost your client base '),(168415,40603,'_blocks_14_timeline_items_1_title','field_6177de53d119f'),(168416,40603,'blocks_14_timeline_items_1_text','When providing your training online you aren\'t restricted by location, so you can reach a wider audience in different areas and expand your client base beyond belief. '),(168417,40603,'_blocks_14_timeline_items_1_text','field_6177de53d11a0'),(168418,40603,'blocks_14_timeline_items_2_title','Open up new opportunities '),(168419,40603,'_blocks_14_timeline_items_2_title','field_6177de53d119f'),(168420,40603,'blocks_14_timeline_items_2_text','Having the flexibility to take your fitness business online will open the door to new opportunities, including new styles of training, being able to deliver even more and reach potential clients in a variety of locations. '),(168421,40603,'_blocks_14_timeline_items_2_text','field_6177de53d11a0'),(168422,40603,'blocks_14_timeline_items_3_title','Gain vital skills '),(168423,40603,'_blocks_14_timeline_items_3_title','field_6177de53d119f'),(168424,40603,'blocks_14_timeline_items_3_text','Covering the absolute vital fundamentals such as Marketing, Sales, Assessment, Coaching, Insurance, Legalities and more, you will be heads and shoulders above the rest whether you are offering your training face-to-face, online or a combination of the two! '),(168425,40603,'_blocks_14_timeline_items_3_text','field_6177de53d11a0'),(168426,40603,'blocks_14_timeline_items','4'),(168427,40603,'_blocks_14_timeline_items','field_6177de53d119d'),(168428,40272,'_edit_lock','1727342520:5'),(168429,40604,'_wp_attached_file','2024/09/Core-training-hero-iamge-scaled.jpg'),(168430,40604,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:43:\"2024/09/Core-training-hero-iamge-scaled.jpg\";s:8:\"filesize\";i:495187;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111397;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"Core-training-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155346;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-iamge-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54929;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-iamge-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94637;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"Core-training-hero-iamge-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214418;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:38:\"Core-training-hero-iamge-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:332530;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-iamge-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64878;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-iamge-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147408;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:38:\"Core-training-hero-iamge-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216514;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-iamge-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54832;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111397;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:37:\"Core-training-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155346;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-iamge-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55950;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-iamge-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116832;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:37:\"Core-training-hero-iamge-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167911;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-iamge-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57695;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-iamge-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121484;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:37:\"Core-training-hero-iamge-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171972;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-iamge-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52517;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:36:\"Core-training-hero-iamge-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103764;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:37:\"Core-training-hero-iamge-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143889;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1634994966\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"45\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:28:\"Core-training-hero-iamge.jpg\";}'),(168431,40605,'_wp_attached_file','2024/09/Core-training-50.50-image-scaled.jpg'),(168432,40605,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:44:\"2024/09/Core-training-50.50-image-scaled.jpg\";s:8:\"filesize\";i:513595;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107942;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"Core-training-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150115;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54688;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91616;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"Core-training-50.50-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210823;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:39:\"Core-training-50.50-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:336929;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59984;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132976;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:39:\"Core-training-50.50-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198395;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54673;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107942;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:38:\"Core-training-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150115;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53635;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111023;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:38:\"Core-training-50.50-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162586;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55765;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113177;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:38:\"Core-training-50.50-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160549;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52106;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:37:\"Core-training-50.50-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100083;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:38:\"Core-training-50.50-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137969;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1634995585\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:29:\"Core-training-50.50-image.jpg\";}'),(168433,40272,'_edit_last','5'),(168434,40272,'_wp_old_date','2024-09-10'),(168435,40272,'hide_hero','0'),(168436,40272,'_hide_hero','field_66a2380fcda39'),(168437,40272,'hero_title','Core Training'),(168438,40272,'_hero_title','field_617571fe285e8'),(168439,40272,'hero_text','Build on your skill set and get to the Core of Fitness with a CPD Accreditation in Core Training. '),(168440,40272,'_hero_text','field_6175723c285e9'),(168441,40272,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168442,40272,'_hero_actions_0_button','field_61757281285eb'),(168443,40272,'hero_actions','1'),(168444,40272,'_hero_actions','field_61757270285ea'),(168445,40272,'hero_style','default'),(168446,40272,'_hero_style','field_62051d9dc5324'),(168447,40272,'_thumbnail_id','40604'),(168448,40272,'__thumbnail_id','field_617570855ddaf'),(168449,40272,'hero_image_pos_x','right'),(168450,40272,'_hero_image_pos_x','field_62ec3d05390bb'),(168451,40272,'hero_image_pos_y','top'),(168452,40272,'_hero_image_pos_y','field_62ec3d05390bc'),(168453,40272,'hero_image_pos',''),(168454,40272,'_hero_image_pos','field_62ec3d05390ba'),(168455,40272,'fft_hide_from_listings','0'),(168456,40272,'_fft_hide_from_listings','field_61f1320446ab2'),(168457,40272,'fft_page_format','default'),(168458,40272,'_fft_page_format','field_61ae213f1f218'),(168459,40272,'fft_hide_nav','0'),(168460,40272,'_fft_hide_nav','field_635bd5e43527c'),(168461,40272,'fft_hide_header_call_to_action','0'),(168462,40272,'_fft_hide_header_call_to_action','field_635bd6723527d'),(168463,40272,'fft_page_sitemap','0'),(168464,40272,'_fft_page_sitemap','field_61af9b34e8181'),(168465,40272,'blocks_0_acfe_flexible_toggle',''),(168466,40272,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(168467,40272,'blocks_0_acfe_flexible_layout_title','Template'),(168468,40272,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(168469,40272,'blocks_0_template','39087'),(168470,40272,'_blocks_0_template','field_617bdd570fe01'),(168471,40272,'blocks_1_acfe_flexible_toggle',''),(168472,40272,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(168473,40272,'blocks_1_acfe_flexible_layout_title','Text Block'),(168474,40272,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(168475,40272,'blocks_1_options_theme','#f5f5f5'),(168476,40272,'_blocks_1_options_theme','field_6176830e2ad17'),(168477,40272,'blocks_1_options',''),(168478,40272,'_blocks_1_options','field_6176830e2ad16'),(168479,40272,'blocks_1_text_block_heading','Overview'),(168480,40272,'_blocks_1_text_block_heading','field_617669d413097'),(168481,40272,'blocks_1_text_block_content','Train with Future Fit, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own training, to stand out from the crowd with advanced knowledge.'),(168482,40272,'_blocks_1_text_block_content','field_617669ec13098'),(168483,40272,'blocks_2_acfe_flexible_toggle',''),(168484,40272,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(168485,40272,'blocks_2_acfe_flexible_layout_title','Logos'),(168486,40272,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(168487,40272,'blocks_2_options_theme','#ffffff'),(168488,40272,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(168489,40272,'blocks_2_options_format','grid'),(168490,40272,'_blocks_2_options_format','field_61782964ee971'),(168491,40272,'blocks_2_options',''),(168492,40272,'_blocks_2_options','field_61782954ee965'),(168493,40272,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(168494,40272,'_blocks_2_logos','field_61782954ee96d'),(168495,40272,'blocks_2_title',''),(168496,40272,'_blocks_2_title','field_668fbfdc2daa1'),(168497,40272,'blocks_3_acfe_flexible_toggle',''),(168498,40272,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(168499,40272,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(168500,40272,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(168501,40272,'blocks_3_options_theme','#f5f5f5'),(168502,40272,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(168503,40272,'blocks_3_options_reverse','0'),(168504,40272,'_blocks_3_options_reverse','field_61768049bb8ac'),(168505,40272,'blocks_3_options',''),(168506,40272,'_blocks_3_options','field_617682517c334'),(168507,40272,'blocks_3_split_5050_image','40605'),(168508,40272,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(168509,40272,'blocks_3_split_5050_video',''),(168510,40272,'_blocks_3_split_5050_video','field_6239f3160848a'),(168511,40272,'blocks_3_split_5050_content_title',''),(168512,40272,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(168513,40272,'blocks_3_split_5050_content_heading','Course Overview '),(168514,40272,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(168515,40272,'blocks_3_split_5050_content_text','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective and challenging core exercises for your clients across a wide range of needs and abilities.'),(168516,40272,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(168517,40272,'blocks_3_split_5050_content_actions',''),(168518,40272,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(168519,40272,'blocks_3_split_5050_content',''),(168520,40272,'_blocks_3_split_5050_content','field_61767afceb8ba'),(168521,40272,'blocks_4_acfe_flexible_toggle',''),(168522,40272,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(168523,40272,'blocks_4_acfe_flexible_layout_title','Tabs'),(168524,40272,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(168525,40272,'blocks_4_options_theme','#ffffff'),(168526,40272,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(168527,40272,'blocks_4_options',''),(168528,40272,'_blocks_4_options','field_6177cfcd8140f'),(168529,40272,'blocks_4_tabs_0_tab_label','Learning Type'),(168530,40272,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(168531,40272,'blocks_4_tabs_0_tab_content_title',''),(168532,40272,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(168533,40272,'blocks_4_tabs_0_tab_content_heading',''),(168534,40272,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(168535,40272,'blocks_4_tabs_0_tab_content_text','This core Training CPD course is taught through a 1-day online course. Learn from anywhere in the world.'),(168536,40272,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(168537,40272,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168538,40272,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(168539,40272,'blocks_4_tabs_0_tab_content_actions','1'),(168540,40272,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(168541,40272,'blocks_4_tabs_0_tab_content',''),(168542,40272,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(168543,40272,'blocks_4_tabs_0_tab_image',''),(168544,40272,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(168545,40272,'blocks_4_tabs_1_tab_label','Content covered '),(168546,40272,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(168547,40272,'blocks_4_tabs_1_tab_content_title',''),(168548,40272,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(168549,40272,'blocks_4_tabs_1_tab_content_heading',''),(168550,40272,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(168551,40272,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Anatomy and kinesiology of the torso</li>\r\n 	<li>Exercise and its role in muscle balance and posture</li>\r\n 	<li>Core strength and stability exercises and their practical application</li>\r\n 	<li>Techniques for developing a client’s body awareness</li>\r\n 	<li>Techniques of adaptation and progression in core training</li>\r\n 	<li>The use of equipment such as stability balls, medicine balls, free weights, resistance machines and resistance bands</li>\r\n</ul>'),(168552,40272,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(168553,40272,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168554,40272,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(168555,40272,'blocks_4_tabs_1_tab_content_actions','1'),(168556,40272,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(168557,40272,'blocks_4_tabs_1_tab_content',''),(168558,40272,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(168559,40272,'blocks_4_tabs_1_tab_image',''),(168560,40272,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(168561,40272,'blocks_4_tabs_2_tab_label','Assessment '),(168562,40272,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(168563,40272,'blocks_4_tabs_2_tab_content_title',''),(168564,40272,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(168565,40272,'blocks_4_tabs_2_tab_content_heading',''),(168566,40272,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(168567,40272,'blocks_4_tabs_2_tab_content_text','An online multiple choice knowledge check'),(168568,40272,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(168569,40272,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168570,40272,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(168571,40272,'blocks_4_tabs_2_tab_content_actions','1'),(168572,40272,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(168573,40272,'blocks_4_tabs_2_tab_content',''),(168574,40272,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(168575,40272,'blocks_4_tabs_2_tab_image',''),(168576,40272,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(168577,40272,'blocks_4_tabs_3_tab_label','E-learning '),(168578,40272,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(168579,40272,'blocks_4_tabs_3_tab_content_title',''),(168580,40272,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(168581,40272,'blocks_4_tabs_3_tab_content_heading',''),(168582,40272,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(168583,40272,'blocks_4_tabs_3_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(168584,40272,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(168585,40272,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168586,40272,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(168587,40272,'blocks_4_tabs_3_tab_content_actions','1'),(168588,40272,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(168589,40272,'blocks_4_tabs_3_tab_content',''),(168590,40272,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(168591,40272,'blocks_4_tabs_3_tab_image',''),(168592,40272,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(168593,40272,'blocks_4_tabs_4_tab_label','Content '),(168594,40272,'_blocks_4_tabs_4_tab_label','field_6177d0068141a'),(168595,40272,'blocks_4_tabs_4_tab_content_title',''),(168596,40272,'_blocks_4_tabs_4_tab_content_title','field_6177cfcd81414'),(168597,40272,'blocks_4_tabs_4_tab_content_heading',''),(168598,40272,'_blocks_4_tabs_4_tab_content_heading','field_6177cfcd81415'),(168599,40272,'blocks_4_tabs_4_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(168600,40272,'_blocks_4_tabs_4_tab_content_text','field_6177cfcd81416'),(168601,40272,'blocks_4_tabs_4_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168602,40272,'_blocks_4_tabs_4_tab_content_actions_0_button','field_6177cfcd81418'),(168603,40272,'blocks_4_tabs_4_tab_content_actions','1'),(168604,40272,'_blocks_4_tabs_4_tab_content_actions','field_6177cfcd81417'),(168605,40272,'blocks_4_tabs_4_tab_content',''),(168606,40272,'_blocks_4_tabs_4_tab_content','field_6177cfcd81413'),(168607,40272,'blocks_4_tabs_4_tab_image',''),(168608,40272,'_blocks_4_tabs_4_tab_image','field_6177cfcd81412'),(168609,40272,'blocks_4_tabs_5_tab_label','Assessment '),(168610,40272,'_blocks_4_tabs_5_tab_label','field_6177d0068141a'),(168611,40272,'blocks_4_tabs_5_tab_content_title',''),(168612,40272,'_blocks_4_tabs_5_tab_content_title','field_6177cfcd81414'),(168613,40272,'blocks_4_tabs_5_tab_content_heading',''),(168614,40272,'_blocks_4_tabs_5_tab_content_heading','field_6177cfcd81415'),(168615,40272,'blocks_4_tabs_5_tab_content_text','There is no assessment for this course.'),(168616,40272,'_blocks_4_tabs_5_tab_content_text','field_6177cfcd81416'),(168617,40272,'blocks_4_tabs_5_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168618,40272,'_blocks_4_tabs_5_tab_content_actions_0_button','field_6177cfcd81418'),(168619,40272,'blocks_4_tabs_5_tab_content_actions','1'),(168620,40272,'_blocks_4_tabs_5_tab_content_actions','field_6177cfcd81417'),(168621,40272,'blocks_4_tabs_5_tab_content',''),(168622,40272,'_blocks_4_tabs_5_tab_content','field_6177cfcd81413'),(168623,40272,'blocks_4_tabs_5_tab_image',''),(168624,40272,'_blocks_4_tabs_5_tab_image','field_6177cfcd81412'),(168625,40272,'blocks_4_tabs_6_tab_label','Entry requirements'),(168626,40272,'_blocks_4_tabs_6_tab_label','field_6177d0068141a'),(168627,40272,'blocks_4_tabs_6_tab_content_title',''),(168628,40272,'_blocks_4_tabs_6_tab_content_title','field_6177cfcd81414'),(168629,40272,'blocks_4_tabs_6_tab_content_heading',''),(168630,40272,'_blocks_4_tabs_6_tab_content_heading','field_6177cfcd81415'),(168631,40272,'blocks_4_tabs_6_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>Level 2 Gym Instructor.</li>\r\n</ul>\r\nIf you don’t have this qualification, why not find out more about our Level 2 Gym Instructor certificate.\r\n\r\nWe also recommend reading our personal training blog posts before starting the course. There is loads of useful material to help cement your understanding of personal training! Read them here:\r\n<ul>\r\n 	<li>Newly qualified personal trainer? The 5 skills you need to learn now</li>\r\n 	<li>Personal training: expectations | costs | benefits | skills</li>\r\n</ul>'),(168632,40272,'_blocks_4_tabs_6_tab_content_text','field_6177cfcd81416'),(168633,40272,'blocks_4_tabs_6_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168634,40272,'_blocks_4_tabs_6_tab_content_actions_0_button','field_6177cfcd81418'),(168635,40272,'blocks_4_tabs_6_tab_content_actions','1'),(168636,40272,'_blocks_4_tabs_6_tab_content_actions','field_6177cfcd81417'),(168637,40272,'blocks_4_tabs_6_tab_content',''),(168638,40272,'_blocks_4_tabs_6_tab_content','field_6177cfcd81413'),(168639,40272,'blocks_4_tabs_6_tab_image',''),(168640,40272,'_blocks_4_tabs_6_tab_image','field_6177cfcd81412'),(168641,40272,'blocks_4_tabs','7'),(168642,40272,'_blocks_4_tabs','field_6177cff281419'),(168643,40272,'blocks_5_acfe_flexible_toggle',''),(168644,40272,'_blocks_5_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(168645,40272,'blocks_5_acfe_flexible_layout_title','Template'),(168646,40272,'_blocks_5_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(168647,40272,'blocks_5_template','39401'),(168648,40272,'_blocks_5_template','field_617bdd570fe01'),(168649,40272,'blocks_6_acfe_flexible_toggle',''),(168650,40272,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(168651,40272,'blocks_6_acfe_flexible_layout_title','Text Block'),(168652,40272,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(168653,40272,'blocks_6_options_theme','#b61234'),(168654,40272,'_blocks_6_options_theme','field_6176830e2ad17'),(168655,40272,'blocks_6_options',''),(168656,40272,'_blocks_6_options','field_6176830e2ad16'),(168657,40272,'blocks_6_text_block_heading','Why study this core training course?  '),(168658,40272,'_blocks_6_text_block_heading','field_617669d413097'),(168659,40272,'blocks_6_text_block_content','Studying this core training course will help you have a better understanding of helping people develop core stability and core strength. You will find out the best ways to incorporate core training into your client’s workouts to provide them with a valuable and enjoyable session.\r\n\r\nAs a fitness coach or instructor, having a good understanding of core strength is fundamental to all clients or group classes, having this knowledge will teach you how to ensure your clients are using their core strength and stability where they can. Having good core stability and strength can improve other factors such as exercise form and mobility, therefore this is valuable to all clients as a trainer.'),(168660,40272,'_blocks_6_text_block_content','field_617669ec13098'),(168661,40272,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:8:\"template\";i:6;s:10:\"text_block\";i:7;s:10:\"text_block\";i:8;s:14:\"course_compare\";i:9;s:10:\"accordions\";}'),(168662,40272,'_blocks','field_6176696113096'),(168663,40272,'course_label_text','Core Training'),(168664,40272,'_course_label_text','field_61e17babf71fa'),(168665,40272,'course_label',''),(168666,40272,'_course_label','field_61e12f92749a7'),(168667,40272,'course_description','Build on your skill set and get to the Core of Fitness with a CPD Accreditation in Core Training. '),(168668,40272,'_course_description','field_617ac5788e5e1'),(168669,40272,'course_key_info','2'),(168670,40272,'_course_key_info','field_617ac6ad8e5e2'),(168671,40272,'course_included','Anatomy and kinesiology of the torso\r\nExercise and its role in muscle balance and posture\r\nCore strength and stability exercises and their practical application\r\nTechniques for developing a client’s body awareness\r\nTechniques of adaptation and progression in core training\r\nThe use of equipment such as stability balls, medicine balls, free weights, resistance machines and resistance bands'),(168672,40272,'_course_included','field_617ac6f08e5e4'),(168673,40272,'_yoast_wpseo_primary_course-cat','403'),(168674,40272,'_yoast_wpseo_estimated-reading-time-minutes','1'),(168675,40606,'hide_hero','0'),(168676,40606,'_hide_hero','field_66a2380fcda39'),(168677,40606,'hero_title','Core Training'),(168678,40606,'_hero_title','field_617571fe285e8'),(168679,40606,'hero_text','Build on your skill set and get to the Core of Fitness with a CPD Accreditation in Core Training. '),(168680,40606,'_hero_text','field_6175723c285e9'),(168681,40606,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168682,40606,'_hero_actions_0_button','field_61757281285eb'),(168683,40606,'hero_actions','1'),(168684,40606,'_hero_actions','field_61757270285ea'),(168685,40606,'hero_style','default'),(168686,40606,'_hero_style','field_62051d9dc5324'),(168687,40606,'_thumbnail_id','40604'),(168688,40606,'__thumbnail_id','field_617570855ddaf'),(168689,40606,'hero_image_pos_x','right'),(168690,40606,'_hero_image_pos_x','field_62ec3d05390bb'),(168691,40606,'hero_image_pos_y','top'),(168692,40606,'_hero_image_pos_y','field_62ec3d05390bc'),(168693,40606,'hero_image_pos',''),(168694,40606,'_hero_image_pos','field_62ec3d05390ba'),(168695,40606,'fft_hide_from_listings','0'),(168696,40606,'_fft_hide_from_listings','field_61f1320446ab2'),(168697,40606,'fft_page_format','default'),(168698,40606,'_fft_page_format','field_61ae213f1f218'),(168699,40606,'fft_hide_nav','0'),(168700,40606,'_fft_hide_nav','field_635bd5e43527c'),(168701,40606,'fft_hide_header_call_to_action','0'),(168702,40606,'_fft_hide_header_call_to_action','field_635bd6723527d'),(168703,40606,'fft_page_sitemap','0'),(168704,40606,'_fft_page_sitemap','field_61af9b34e8181'),(168705,40606,'blocks_0_acfe_flexible_toggle',''),(168706,40606,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(168707,40606,'blocks_0_acfe_flexible_layout_title','Template'),(168708,40606,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(168709,40606,'blocks_0_template','39087'),(168710,40606,'_blocks_0_template','field_617bdd570fe01'),(168711,40606,'blocks_1_acfe_flexible_toggle',''),(168712,40606,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(168713,40606,'blocks_1_acfe_flexible_layout_title','Text Block'),(168714,40606,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(168715,40606,'blocks_1_options_theme','#f5f5f5'),(168716,40606,'_blocks_1_options_theme','field_6176830e2ad17'),(168717,40606,'blocks_1_options',''),(168718,40606,'_blocks_1_options','field_6176830e2ad16'),(168719,40606,'blocks_1_text_block_heading','Overview'),(168720,40606,'_blocks_1_text_block_heading','field_617669d413097'),(168721,40606,'blocks_1_text_block_content','Train with Future Fit, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own training, to stand out from the crowd with advanced knowledge.'),(168722,40606,'_blocks_1_text_block_content','field_617669ec13098'),(168723,40606,'blocks_2_acfe_flexible_toggle',''),(168724,40606,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(168725,40606,'blocks_2_acfe_flexible_layout_title','Logos'),(168726,40606,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(168727,40606,'blocks_2_options_theme','#ffffff'),(168728,40606,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(168729,40606,'blocks_2_options_format','grid'),(168730,40606,'_blocks_2_options_format','field_61782964ee971'),(168731,40606,'blocks_2_options',''),(168732,40606,'_blocks_2_options','field_61782954ee965'),(168733,40606,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(168734,40606,'_blocks_2_logos','field_61782954ee96d'),(168735,40606,'blocks_2_title',''),(168736,40606,'_blocks_2_title','field_668fbfdc2daa1'),(168737,40606,'blocks_3_acfe_flexible_toggle',''),(168738,40606,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(168739,40606,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(168740,40606,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(168741,40606,'blocks_3_options_theme','#f5f5f5'),(168742,40606,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(168743,40606,'blocks_3_options_reverse','0'),(168744,40606,'_blocks_3_options_reverse','field_61768049bb8ac'),(168745,40606,'blocks_3_options',''),(168746,40606,'_blocks_3_options','field_617682517c334'),(168747,40606,'blocks_3_split_5050_image','40605'),(168748,40606,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(168749,40606,'blocks_3_split_5050_video',''),(168750,40606,'_blocks_3_split_5050_video','field_6239f3160848a'),(168751,40606,'blocks_3_split_5050_content_title',''),(168752,40606,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(168753,40606,'blocks_3_split_5050_content_heading','Course Overview '),(168754,40606,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(168755,40606,'blocks_3_split_5050_content_text','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective and challenging core exercises for your clients across a wide range of needs and abilities.'),(168756,40606,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(168757,40606,'blocks_3_split_5050_content_actions',''),(168758,40606,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(168759,40606,'blocks_3_split_5050_content',''),(168760,40606,'_blocks_3_split_5050_content','field_61767afceb8ba'),(168761,40606,'blocks_4_acfe_flexible_toggle',''),(168762,40606,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(168763,40606,'blocks_4_acfe_flexible_layout_title','Tabs'),(168764,40606,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(168765,40606,'blocks_4_options_theme','#ffffff'),(168766,40606,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(168767,40606,'blocks_4_options',''),(168768,40606,'_blocks_4_options','field_6177cfcd8140f'),(168769,40606,'blocks_4_tabs_0_tab_label','Learning Type'),(168770,40606,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(168771,40606,'blocks_4_tabs_0_tab_content_title',''),(168772,40606,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(168773,40606,'blocks_4_tabs_0_tab_content_heading',''),(168774,40606,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(168775,40606,'blocks_4_tabs_0_tab_content_text','This core Training CPD course is taught through a 1-day online course. Learn from anywhere in the world.'),(168776,40606,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(168777,40606,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168778,40606,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(168779,40606,'blocks_4_tabs_0_tab_content_actions','1'),(168780,40606,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(168781,40606,'blocks_4_tabs_0_tab_content',''),(168782,40606,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(168783,40606,'blocks_4_tabs_0_tab_image',''),(168784,40606,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(168785,40606,'blocks_4_tabs_1_tab_label','Content covered '),(168786,40606,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(168787,40606,'blocks_4_tabs_1_tab_content_title',''),(168788,40606,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(168789,40606,'blocks_4_tabs_1_tab_content_heading',''),(168790,40606,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(168791,40606,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Anatomy and kinesiology of the torso</li>\r\n 	<li>Exercise and its role in muscle balance and posture</li>\r\n 	<li>Core strength and stability exercises and their practical application</li>\r\n 	<li>Techniques for developing a client’s body awareness</li>\r\n 	<li>Techniques of adaptation and progression in core training</li>\r\n 	<li>The use of equipment such as stability balls, medicine balls, free weights, resistance machines and resistance bands</li>\r\n</ul>'),(168792,40606,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(168793,40606,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168794,40606,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(168795,40606,'blocks_4_tabs_1_tab_content_actions','1'),(168796,40606,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(168797,40606,'blocks_4_tabs_1_tab_content',''),(168798,40606,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(168799,40606,'blocks_4_tabs_1_tab_image',''),(168800,40606,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(168801,40606,'blocks_4_tabs_2_tab_label','Assessment '),(168802,40606,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(168803,40606,'blocks_4_tabs_2_tab_content_title',''),(168804,40606,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(168805,40606,'blocks_4_tabs_2_tab_content_heading',''),(168806,40606,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(168807,40606,'blocks_4_tabs_2_tab_content_text','An online multiple choice knowledge check'),(168808,40606,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(168809,40606,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168810,40606,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(168811,40606,'blocks_4_tabs_2_tab_content_actions','1'),(168812,40606,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(168813,40606,'blocks_4_tabs_2_tab_content',''),(168814,40606,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(168815,40606,'blocks_4_tabs_2_tab_image',''),(168816,40606,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(168817,40606,'blocks_4_tabs_3_tab_label','E-learning '),(168818,40606,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(168819,40606,'blocks_4_tabs_3_tab_content_title',''),(168820,40606,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(168821,40606,'blocks_4_tabs_3_tab_content_heading',''),(168822,40606,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(168823,40606,'blocks_4_tabs_3_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(168824,40606,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(168825,40606,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168826,40606,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(168827,40606,'blocks_4_tabs_3_tab_content_actions','1'),(168828,40606,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(168829,40606,'blocks_4_tabs_3_tab_content',''),(168830,40606,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(168831,40606,'blocks_4_tabs_3_tab_image',''),(168832,40606,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(168833,40606,'blocks_4_tabs_4_tab_label','Content '),(168834,40606,'_blocks_4_tabs_4_tab_label','field_6177d0068141a'),(168835,40606,'blocks_4_tabs_4_tab_content_title',''),(168836,40606,'_blocks_4_tabs_4_tab_content_title','field_6177cfcd81414'),(168837,40606,'blocks_4_tabs_4_tab_content_heading',''),(168838,40606,'_blocks_4_tabs_4_tab_content_heading','field_6177cfcd81415'),(168839,40606,'blocks_4_tabs_4_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(168840,40606,'_blocks_4_tabs_4_tab_content_text','field_6177cfcd81416'),(168841,40606,'blocks_4_tabs_4_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168842,40606,'_blocks_4_tabs_4_tab_content_actions_0_button','field_6177cfcd81418'),(168843,40606,'blocks_4_tabs_4_tab_content_actions','1'),(168844,40606,'_blocks_4_tabs_4_tab_content_actions','field_6177cfcd81417'),(168845,40606,'blocks_4_tabs_4_tab_content',''),(168846,40606,'_blocks_4_tabs_4_tab_content','field_6177cfcd81413'),(168847,40606,'blocks_4_tabs_4_tab_image',''),(168848,40606,'_blocks_4_tabs_4_tab_image','field_6177cfcd81412'),(168849,40606,'blocks_4_tabs_5_tab_label','Assessment '),(168850,40606,'_blocks_4_tabs_5_tab_label','field_6177d0068141a'),(168851,40606,'blocks_4_tabs_5_tab_content_title',''),(168852,40606,'_blocks_4_tabs_5_tab_content_title','field_6177cfcd81414'),(168853,40606,'blocks_4_tabs_5_tab_content_heading',''),(168854,40606,'_blocks_4_tabs_5_tab_content_heading','field_6177cfcd81415'),(168855,40606,'blocks_4_tabs_5_tab_content_text','There is no assessment for this course.'),(168856,40606,'_blocks_4_tabs_5_tab_content_text','field_6177cfcd81416'),(168857,40606,'blocks_4_tabs_5_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168858,40606,'_blocks_4_tabs_5_tab_content_actions_0_button','field_6177cfcd81418'),(168859,40606,'blocks_4_tabs_5_tab_content_actions','1'),(168860,40606,'_blocks_4_tabs_5_tab_content_actions','field_6177cfcd81417'),(168861,40606,'blocks_4_tabs_5_tab_content',''),(168862,40606,'_blocks_4_tabs_5_tab_content','field_6177cfcd81413'),(168863,40606,'blocks_4_tabs_5_tab_image',''),(168864,40606,'_blocks_4_tabs_5_tab_image','field_6177cfcd81412'),(168865,40606,'blocks_4_tabs_6_tab_label','Entry requirements'),(168866,40606,'_blocks_4_tabs_6_tab_label','field_6177d0068141a'),(168867,40606,'blocks_4_tabs_6_tab_content_title',''),(168868,40606,'_blocks_4_tabs_6_tab_content_title','field_6177cfcd81414'),(168869,40606,'blocks_4_tabs_6_tab_content_heading',''),(168870,40606,'_blocks_4_tabs_6_tab_content_heading','field_6177cfcd81415'),(168871,40606,'blocks_4_tabs_6_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>Level 2 Gym Instructor.</li>\r\n</ul>\r\nIf you don’t have this qualification, why not find out more about our Level 2 Gym Instructor certificate.\r\n\r\nWe also recommend reading our personal training blog posts before starting the course. There is loads of useful material to help cement your understanding of personal training! Read them here:\r\n<ul>\r\n 	<li>Newly qualified personal trainer? The 5 skills you need to learn now</li>\r\n 	<li>Personal training: expectations | costs | benefits | skills</li>\r\n</ul>'),(168872,40606,'_blocks_4_tabs_6_tab_content_text','field_6177cfcd81416'),(168873,40606,'blocks_4_tabs_6_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168874,40606,'_blocks_4_tabs_6_tab_content_actions_0_button','field_6177cfcd81418'),(168875,40606,'blocks_4_tabs_6_tab_content_actions','1'),(168876,40606,'_blocks_4_tabs_6_tab_content_actions','field_6177cfcd81417'),(168877,40606,'blocks_4_tabs_6_tab_content',''),(168878,40606,'_blocks_4_tabs_6_tab_content','field_6177cfcd81413'),(168879,40606,'blocks_4_tabs_6_tab_image',''),(168880,40606,'_blocks_4_tabs_6_tab_image','field_6177cfcd81412'),(168881,40606,'blocks_4_tabs','7'),(168882,40606,'_blocks_4_tabs','field_6177cff281419'),(168883,40606,'blocks_5_acfe_flexible_toggle',''),(168884,40606,'_blocks_5_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(168885,40606,'blocks_5_acfe_flexible_layout_title','Template'),(168886,40606,'_blocks_5_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(168887,40606,'blocks_5_template','39401'),(168888,40606,'_blocks_5_template','field_617bdd570fe01'),(168889,40606,'blocks_6_acfe_flexible_toggle',''),(168890,40606,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(168891,40606,'blocks_6_acfe_flexible_layout_title','Text Block'),(168892,40606,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(168893,40606,'blocks_6_options_theme','#b61234'),(168894,40606,'_blocks_6_options_theme','field_6176830e2ad17'),(168895,40606,'blocks_6_options',''),(168896,40606,'_blocks_6_options','field_6176830e2ad16'),(168897,40606,'blocks_6_text_block_heading','Why study this core training course?  '),(168898,40606,'_blocks_6_text_block_heading','field_617669d413097'),(168899,40606,'blocks_6_text_block_content','Studying this core training course will help you have a better understanding of helping people develop core stability and core strength. You will find out the best ways to incorporate core training into your client’s workouts to provide them with a valuable and enjoyable session.\r\n\r\nAs a fitness coach or instructor, having a good understanding of core strength is fundamental to all clients or group classes, having this knowledge will teach you how to ensure your clients are using their core strength and stability where they can. Having good core stability and strength can improve other factors such as exercise form and mobility, therefore this is valuable to all clients as a trainer.'),(168900,40606,'_blocks_6_text_block_content','field_617669ec13098'),(168901,40606,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:8:\"template\";i:6;s:10:\"text_block\";}'),(168902,40606,'_blocks','field_6176696113096'),(168903,40606,'course_label_text',''),(168904,40606,'_course_label_text','field_61e17babf71fa'),(168905,40606,'course_label',''),(168906,40606,'_course_label','field_61e12f92749a7'),(168907,40606,'course_description',''),(168908,40606,'_course_description','field_617ac5788e5e1'),(168909,40606,'course_key_info',''),(168910,40606,'_course_key_info','field_617ac6ad8e5e2'),(168911,40606,'course_included',''),(168912,40606,'_course_included','field_617ac6f08e5e4'),(168913,40607,'hide_hero','0'),(168914,40607,'_hide_hero','field_66a2380fcda39'),(168915,40607,'hero_title','Core Training'),(168916,40607,'_hero_title','field_617571fe285e8'),(168917,40607,'hero_text','Build on your skill set and get to the Core of Fitness with a CPD Accreditation in Core Training. '),(168918,40607,'_hero_text','field_6175723c285e9'),(168919,40607,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(168920,40607,'_hero_actions_0_button','field_61757281285eb'),(168921,40607,'hero_actions','1'),(168922,40607,'_hero_actions','field_61757270285ea'),(168923,40607,'hero_style','default'),(168924,40607,'_hero_style','field_62051d9dc5324'),(168925,40607,'_thumbnail_id','40604'),(168926,40607,'__thumbnail_id','field_617570855ddaf'),(168927,40607,'hero_image_pos_x','right'),(168928,40607,'_hero_image_pos_x','field_62ec3d05390bb'),(168929,40607,'hero_image_pos_y','top'),(168930,40607,'_hero_image_pos_y','field_62ec3d05390bc'),(168931,40607,'hero_image_pos',''),(168932,40607,'_hero_image_pos','field_62ec3d05390ba'),(168933,40607,'fft_hide_from_listings','0'),(168934,40607,'_fft_hide_from_listings','field_61f1320446ab2'),(168935,40607,'fft_page_format','default'),(168936,40607,'_fft_page_format','field_61ae213f1f218'),(168937,40607,'fft_hide_nav','0'),(168938,40607,'_fft_hide_nav','field_635bd5e43527c'),(168939,40607,'fft_hide_header_call_to_action','0'),(168940,40607,'_fft_hide_header_call_to_action','field_635bd6723527d'),(168941,40607,'fft_page_sitemap','0'),(168942,40607,'_fft_page_sitemap','field_61af9b34e8181'),(168943,40607,'blocks_0_acfe_flexible_toggle',''),(168944,40607,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(168945,40607,'blocks_0_acfe_flexible_layout_title','Template'),(168946,40607,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(168947,40607,'blocks_0_template','39087'),(168948,40607,'_blocks_0_template','field_617bdd570fe01'),(168949,40607,'blocks_1_acfe_flexible_toggle',''),(168950,40607,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(168951,40607,'blocks_1_acfe_flexible_layout_title','Text Block'),(168952,40607,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(168953,40607,'blocks_1_options_theme','#f5f5f5'),(168954,40607,'_blocks_1_options_theme','field_6176830e2ad17'),(168955,40607,'blocks_1_options',''),(168956,40607,'_blocks_1_options','field_6176830e2ad16'),(168957,40607,'blocks_1_text_block_heading','Overview'),(168958,40607,'_blocks_1_text_block_heading','field_617669d413097'),(168959,40607,'blocks_1_text_block_content','Train with Future Fit, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own training, to stand out from the crowd with advanced knowledge.'),(168960,40607,'_blocks_1_text_block_content','field_617669ec13098'),(168961,40607,'blocks_2_acfe_flexible_toggle',''),(168962,40607,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(168963,40607,'blocks_2_acfe_flexible_layout_title','Logos'),(168964,40607,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(168965,40607,'blocks_2_options_theme','#ffffff'),(168966,40607,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(168967,40607,'blocks_2_options_format','grid'),(168968,40607,'_blocks_2_options_format','field_61782964ee971'),(168969,40607,'blocks_2_options',''),(168970,40607,'_blocks_2_options','field_61782954ee965'),(168971,40607,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(168972,40607,'_blocks_2_logos','field_61782954ee96d'),(168973,40607,'blocks_2_title',''),(168974,40607,'_blocks_2_title','field_668fbfdc2daa1'),(168975,40607,'blocks_3_acfe_flexible_toggle',''),(168976,40607,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(168977,40607,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(168978,40607,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(168979,40607,'blocks_3_options_theme','#f5f5f5'),(168980,40607,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(168981,40607,'blocks_3_options_reverse','0'),(168982,40607,'_blocks_3_options_reverse','field_61768049bb8ac'),(168983,40607,'blocks_3_options',''),(168984,40607,'_blocks_3_options','field_617682517c334'),(168985,40607,'blocks_3_split_5050_image','40605'),(168986,40607,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(168987,40607,'blocks_3_split_5050_video',''),(168988,40607,'_blocks_3_split_5050_video','field_6239f3160848a'),(168989,40607,'blocks_3_split_5050_content_title',''),(168990,40607,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(168991,40607,'blocks_3_split_5050_content_heading','Course Overview '),(168992,40607,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(168993,40607,'blocks_3_split_5050_content_text','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective and challenging core exercises for your clients across a wide range of needs and abilities.'),(168994,40607,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(168995,40607,'blocks_3_split_5050_content_actions',''),(168996,40607,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(168997,40607,'blocks_3_split_5050_content',''),(168998,40607,'_blocks_3_split_5050_content','field_61767afceb8ba'),(168999,40607,'blocks_4_acfe_flexible_toggle',''),(169000,40607,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(169001,40607,'blocks_4_acfe_flexible_layout_title','Tabs'),(169002,40607,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(169003,40607,'blocks_4_options_theme','#ffffff'),(169004,40607,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(169005,40607,'blocks_4_options',''),(169006,40607,'_blocks_4_options','field_6177cfcd8140f'),(169007,40607,'blocks_4_tabs_0_tab_label','Learning Type'),(169008,40607,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(169009,40607,'blocks_4_tabs_0_tab_content_title',''),(169010,40607,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(169011,40607,'blocks_4_tabs_0_tab_content_heading',''),(169012,40607,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(169013,40607,'blocks_4_tabs_0_tab_content_text','This core Training CPD course is taught through a 1-day online course. Learn from anywhere in the world.'),(169014,40607,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(169015,40607,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169016,40607,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(169017,40607,'blocks_4_tabs_0_tab_content_actions','1'),(169018,40607,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(169019,40607,'blocks_4_tabs_0_tab_content',''),(169020,40607,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(169021,40607,'blocks_4_tabs_0_tab_image',''),(169022,40607,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(169023,40607,'blocks_4_tabs_1_tab_label','Content covered '),(169024,40607,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(169025,40607,'blocks_4_tabs_1_tab_content_title',''),(169026,40607,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(169027,40607,'blocks_4_tabs_1_tab_content_heading',''),(169028,40607,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(169029,40607,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Anatomy and kinesiology of the torso</li>\r\n 	<li>Exercise and its role in muscle balance and posture</li>\r\n 	<li>Core strength and stability exercises and their practical application</li>\r\n 	<li>Techniques for developing a client’s body awareness</li>\r\n 	<li>Techniques of adaptation and progression in core training</li>\r\n 	<li>The use of equipment such as stability balls, medicine balls, free weights, resistance machines and resistance bands</li>\r\n</ul>'),(169030,40607,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(169031,40607,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169032,40607,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(169033,40607,'blocks_4_tabs_1_tab_content_actions','1'),(169034,40607,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(169035,40607,'blocks_4_tabs_1_tab_content',''),(169036,40607,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(169037,40607,'blocks_4_tabs_1_tab_image',''),(169038,40607,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(169039,40607,'blocks_4_tabs_2_tab_label','Assessment '),(169040,40607,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(169041,40607,'blocks_4_tabs_2_tab_content_title',''),(169042,40607,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(169043,40607,'blocks_4_tabs_2_tab_content_heading',''),(169044,40607,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(169045,40607,'blocks_4_tabs_2_tab_content_text','An online multiple choice knowledge check'),(169046,40607,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(169047,40607,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169048,40607,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(169049,40607,'blocks_4_tabs_2_tab_content_actions','1'),(169050,40607,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(169051,40607,'blocks_4_tabs_2_tab_content',''),(169052,40607,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(169053,40607,'blocks_4_tabs_2_tab_image',''),(169054,40607,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(169055,40607,'blocks_4_tabs_3_tab_label','E-learning '),(169056,40607,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(169057,40607,'blocks_4_tabs_3_tab_content_title',''),(169058,40607,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(169059,40607,'blocks_4_tabs_3_tab_content_heading',''),(169060,40607,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(169061,40607,'blocks_4_tabs_3_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(169062,40607,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(169063,40607,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169064,40607,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(169065,40607,'blocks_4_tabs_3_tab_content_actions','1'),(169066,40607,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(169067,40607,'blocks_4_tabs_3_tab_content',''),(169068,40607,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(169069,40607,'blocks_4_tabs_3_tab_image',''),(169070,40607,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(169071,40607,'blocks_4_tabs_4_tab_label','Content '),(169072,40607,'_blocks_4_tabs_4_tab_label','field_6177d0068141a'),(169073,40607,'blocks_4_tabs_4_tab_content_title',''),(169074,40607,'_blocks_4_tabs_4_tab_content_title','field_6177cfcd81414'),(169075,40607,'blocks_4_tabs_4_tab_content_heading',''),(169076,40607,'_blocks_4_tabs_4_tab_content_heading','field_6177cfcd81415'),(169077,40607,'blocks_4_tabs_4_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(169078,40607,'_blocks_4_tabs_4_tab_content_text','field_6177cfcd81416'),(169079,40607,'blocks_4_tabs_4_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169080,40607,'_blocks_4_tabs_4_tab_content_actions_0_button','field_6177cfcd81418'),(169081,40607,'blocks_4_tabs_4_tab_content_actions','1'),(169082,40607,'_blocks_4_tabs_4_tab_content_actions','field_6177cfcd81417'),(169083,40607,'blocks_4_tabs_4_tab_content',''),(169084,40607,'_blocks_4_tabs_4_tab_content','field_6177cfcd81413'),(169085,40607,'blocks_4_tabs_4_tab_image',''),(169086,40607,'_blocks_4_tabs_4_tab_image','field_6177cfcd81412'),(169087,40607,'blocks_4_tabs_5_tab_label','Assessment '),(169088,40607,'_blocks_4_tabs_5_tab_label','field_6177d0068141a'),(169089,40607,'blocks_4_tabs_5_tab_content_title',''),(169090,40607,'_blocks_4_tabs_5_tab_content_title','field_6177cfcd81414'),(169091,40607,'blocks_4_tabs_5_tab_content_heading',''),(169092,40607,'_blocks_4_tabs_5_tab_content_heading','field_6177cfcd81415'),(169093,40607,'blocks_4_tabs_5_tab_content_text','There is no assessment for this course.'),(169094,40607,'_blocks_4_tabs_5_tab_content_text','field_6177cfcd81416'),(169095,40607,'blocks_4_tabs_5_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169096,40607,'_blocks_4_tabs_5_tab_content_actions_0_button','field_6177cfcd81418'),(169097,40607,'blocks_4_tabs_5_tab_content_actions','1'),(169098,40607,'_blocks_4_tabs_5_tab_content_actions','field_6177cfcd81417'),(169099,40607,'blocks_4_tabs_5_tab_content',''),(169100,40607,'_blocks_4_tabs_5_tab_content','field_6177cfcd81413'),(169101,40607,'blocks_4_tabs_5_tab_image',''),(169102,40607,'_blocks_4_tabs_5_tab_image','field_6177cfcd81412'),(169103,40607,'blocks_4_tabs_6_tab_label','Entry requirements'),(169104,40607,'_blocks_4_tabs_6_tab_label','field_6177d0068141a'),(169105,40607,'blocks_4_tabs_6_tab_content_title',''),(169106,40607,'_blocks_4_tabs_6_tab_content_title','field_6177cfcd81414'),(169107,40607,'blocks_4_tabs_6_tab_content_heading',''),(169108,40607,'_blocks_4_tabs_6_tab_content_heading','field_6177cfcd81415'),(169109,40607,'blocks_4_tabs_6_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>Level 2 Gym Instructor.</li>\r\n</ul>\r\nIf you don’t have this qualification, why not find out more about our Level 2 Gym Instructor certificate.\r\n\r\nWe also recommend reading our personal training blog posts before starting the course. There is loads of useful material to help cement your understanding of personal training! Read them here:\r\n<ul>\r\n 	<li>Newly qualified personal trainer? The 5 skills you need to learn now</li>\r\n 	<li>Personal training: expectations | costs | benefits | skills</li>\r\n</ul>'),(169110,40607,'_blocks_4_tabs_6_tab_content_text','field_6177cfcd81416'),(169111,40607,'blocks_4_tabs_6_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169112,40607,'_blocks_4_tabs_6_tab_content_actions_0_button','field_6177cfcd81418'),(169113,40607,'blocks_4_tabs_6_tab_content_actions','1'),(169114,40607,'_blocks_4_tabs_6_tab_content_actions','field_6177cfcd81417'),(169115,40607,'blocks_4_tabs_6_tab_content',''),(169116,40607,'_blocks_4_tabs_6_tab_content','field_6177cfcd81413'),(169117,40607,'blocks_4_tabs_6_tab_image',''),(169118,40607,'_blocks_4_tabs_6_tab_image','field_6177cfcd81412'),(169119,40607,'blocks_4_tabs','7'),(169120,40607,'_blocks_4_tabs','field_6177cff281419'),(169121,40607,'blocks_5_acfe_flexible_toggle',''),(169122,40607,'_blocks_5_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(169123,40607,'blocks_5_acfe_flexible_layout_title','Template'),(169124,40607,'_blocks_5_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(169125,40607,'blocks_5_template','39401'),(169126,40607,'_blocks_5_template','field_617bdd570fe01'),(169127,40607,'blocks_6_acfe_flexible_toggle',''),(169128,40607,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(169129,40607,'blocks_6_acfe_flexible_layout_title','Text Block'),(169130,40607,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(169131,40607,'blocks_6_options_theme','#b61234'),(169132,40607,'_blocks_6_options_theme','field_6176830e2ad17'),(169133,40607,'blocks_6_options',''),(169134,40607,'_blocks_6_options','field_6176830e2ad16'),(169135,40607,'blocks_6_text_block_heading','Why study this core training course?  '),(169136,40607,'_blocks_6_text_block_heading','field_617669d413097'),(169137,40607,'blocks_6_text_block_content','Studying this core training course will help you have a better understanding of helping people develop core stability and core strength. You will find out the best ways to incorporate core training into your client’s workouts to provide them with a valuable and enjoyable session.\r\n\r\nAs a fitness coach or instructor, having a good understanding of core strength is fundamental to all clients or group classes, having this knowledge will teach you how to ensure your clients are using their core strength and stability where they can. Having good core stability and strength can improve other factors such as exercise form and mobility, therefore this is valuable to all clients as a trainer.'),(169138,40607,'_blocks_6_text_block_content','field_617669ec13098'),(169139,40607,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:8:\"template\";i:6;s:10:\"text_block\";}'),(169140,40607,'_blocks','field_6176696113096'),(169141,40607,'course_label_text',''),(169142,40607,'_course_label_text','field_61e17babf71fa'),(169143,40607,'course_label',''),(169144,40607,'_course_label','field_61e12f92749a7'),(169145,40607,'course_description',''),(169146,40607,'_course_description','field_617ac5788e5e1'),(169147,40607,'course_key_info',''),(169148,40607,'_course_key_info','field_617ac6ad8e5e2'),(169149,40607,'course_included',''),(169150,40607,'_course_included','field_617ac6f08e5e4'),(169151,40272,'blocks_7_acfe_flexible_toggle',''),(169152,40272,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(169153,40272,'blocks_7_acfe_flexible_layout_title','Text Block'),(169154,40272,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(169155,40272,'blocks_7_options_theme','#ffffff'),(169156,40272,'_blocks_7_options_theme','field_6176830e2ad17'),(169157,40272,'blocks_7_options',''),(169158,40272,'_blocks_7_options','field_6176830e2ad16'),(169159,40272,'blocks_7_text_block_heading','Frequently Bought Together'),(169160,40272,'_blocks_7_text_block_heading','field_617669d413097'),(169161,40272,'blocks_7_text_block_content','Check out more of our courses that are frequently purchased together'),(169162,40272,'_blocks_7_text_block_content','field_617669ec13098'),(169163,40272,'blocks_8_acfe_flexible_toggle',''),(169164,40272,'_blocks_8_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(169165,40272,'blocks_8_acfe_flexible_layout_title','Course Comparison'),(169166,40272,'_blocks_8_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(169167,40272,'blocks_8_options_theme','#ffffff'),(169168,40272,'_blocks_8_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(169169,40272,'blocks_8_options',''),(169170,40272,'_blocks_8_options','field_617ac0b7f6c08'),(169171,40272,'blocks_8_show','category'),(169172,40272,'_blocks_8_show','field_61a49cba9d946'),(169173,40272,'blocks_8_category','403'),(169174,40272,'_blocks_8_category','field_61a49cd79d947'),(169175,40272,'blocks_9_acfe_flexible_toggle',''),(169176,40272,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(169177,40272,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(169178,40272,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(169179,40272,'blocks_9_options_theme','#ffffff'),(169180,40272,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(169181,40272,'blocks_9_options_state','0'),(169182,40272,'_blocks_9_options_state','field_6239fcb7508c5'),(169183,40272,'blocks_9_options',''),(169184,40272,'_blocks_9_options','field_6177e2991ac44'),(169185,40272,'blocks_9_content_title',''),(169186,40272,'_blocks_9_content_title','field_64d237e8bb1e2'),(169187,40272,'blocks_9_content_heading','FAQ\'s'),(169188,40272,'_blocks_9_content_heading','field_64d237e8bb1e3'),(169189,40272,'blocks_9_content_text',''),(169190,40272,'_blocks_9_content_text','field_64d237e8bb1e4'),(169191,40272,'blocks_9_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169192,40272,'_blocks_9_content_actions_0_button','field_64d237e8bb1e6'),(169193,40272,'blocks_9_content_actions','1'),(169194,40272,'_blocks_9_content_actions','field_64d237e8bb1e5'),(169195,40272,'blocks_9_content_align','left'),(169196,40272,'_blocks_9_content_align','field_64d2443e6b6aa'),(169197,40272,'blocks_9_content',''),(169198,40272,'_blocks_9_content','field_64d237e8bb1e1'),(169199,40272,'blocks_9_accordion_content','faqs'),(169200,40272,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(169201,40272,'blocks_9_accordion_faqs_select','a:5:{i:0;s:5:\"39422\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(169202,40272,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(169203,40272,'blocks_9_actions',''),(169204,40272,'_blocks_9_actions','field_61a746a817f7a'),(169205,40608,'hide_hero','0'),(169206,40608,'_hide_hero','field_66a2380fcda39'),(169207,40608,'hero_title','Core Training'),(169208,40608,'_hero_title','field_617571fe285e8'),(169209,40608,'hero_text','Build on your skill set and get to the Core of Fitness with a CPD Accreditation in Core Training. '),(169210,40608,'_hero_text','field_6175723c285e9'),(169211,40608,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169212,40608,'_hero_actions_0_button','field_61757281285eb'),(169213,40608,'hero_actions','1'),(169214,40608,'_hero_actions','field_61757270285ea'),(169215,40608,'hero_style','default'),(169216,40608,'_hero_style','field_62051d9dc5324'),(169217,40608,'_thumbnail_id','40604'),(169218,40608,'__thumbnail_id','field_617570855ddaf'),(169219,40608,'hero_image_pos_x','right'),(169220,40608,'_hero_image_pos_x','field_62ec3d05390bb'),(169221,40608,'hero_image_pos_y','top'),(169222,40608,'_hero_image_pos_y','field_62ec3d05390bc'),(169223,40608,'hero_image_pos',''),(169224,40608,'_hero_image_pos','field_62ec3d05390ba'),(169225,40608,'fft_hide_from_listings','0'),(169226,40608,'_fft_hide_from_listings','field_61f1320446ab2'),(169227,40608,'fft_page_format','default'),(169228,40608,'_fft_page_format','field_61ae213f1f218'),(169229,40608,'fft_hide_nav','0'),(169230,40608,'_fft_hide_nav','field_635bd5e43527c'),(169231,40608,'fft_hide_header_call_to_action','0'),(169232,40608,'_fft_hide_header_call_to_action','field_635bd6723527d'),(169233,40608,'fft_page_sitemap','0'),(169234,40608,'_fft_page_sitemap','field_61af9b34e8181'),(169235,40608,'blocks_0_acfe_flexible_toggle',''),(169236,40608,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(169237,40608,'blocks_0_acfe_flexible_layout_title','Template'),(169238,40608,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(169239,40608,'blocks_0_template','39087'),(169240,40608,'_blocks_0_template','field_617bdd570fe01'),(169241,40608,'blocks_1_acfe_flexible_toggle',''),(169242,40608,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(169243,40608,'blocks_1_acfe_flexible_layout_title','Text Block'),(169244,40608,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(169245,40608,'blocks_1_options_theme','#f5f5f5'),(169246,40608,'_blocks_1_options_theme','field_6176830e2ad17'),(169247,40608,'blocks_1_options',''),(169248,40608,'_blocks_1_options','field_6176830e2ad16'),(169249,40608,'blocks_1_text_block_heading','Overview'),(169250,40608,'_blocks_1_text_block_heading','field_617669d413097'),(169251,40608,'blocks_1_text_block_content','Train with Future Fit, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own training, to stand out from the crowd with advanced knowledge.'),(169252,40608,'_blocks_1_text_block_content','field_617669ec13098'),(169253,40608,'blocks_2_acfe_flexible_toggle',''),(169254,40608,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(169255,40608,'blocks_2_acfe_flexible_layout_title','Logos'),(169256,40608,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(169257,40608,'blocks_2_options_theme','#ffffff'),(169258,40608,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(169259,40608,'blocks_2_options_format','grid'),(169260,40608,'_blocks_2_options_format','field_61782964ee971'),(169261,40608,'blocks_2_options',''),(169262,40608,'_blocks_2_options','field_61782954ee965'),(169263,40608,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(169264,40608,'_blocks_2_logos','field_61782954ee96d'),(169265,40608,'blocks_2_title',''),(169266,40608,'_blocks_2_title','field_668fbfdc2daa1'),(169267,40608,'blocks_3_acfe_flexible_toggle',''),(169268,40608,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(169269,40608,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(169270,40608,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(169271,40608,'blocks_3_options_theme','#f5f5f5'),(169272,40608,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(169273,40608,'blocks_3_options_reverse','0'),(169274,40608,'_blocks_3_options_reverse','field_61768049bb8ac'),(169275,40608,'blocks_3_options',''),(169276,40608,'_blocks_3_options','field_617682517c334'),(169277,40608,'blocks_3_split_5050_image','40605'),(169278,40608,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(169279,40608,'blocks_3_split_5050_video',''),(169280,40608,'_blocks_3_split_5050_video','field_6239f3160848a'),(169281,40608,'blocks_3_split_5050_content_title',''),(169282,40608,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(169283,40608,'blocks_3_split_5050_content_heading','Course Overview '),(169284,40608,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(169285,40608,'blocks_3_split_5050_content_text','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective and challenging core exercises for your clients across a wide range of needs and abilities.'),(169286,40608,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(169287,40608,'blocks_3_split_5050_content_actions',''),(169288,40608,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(169289,40608,'blocks_3_split_5050_content',''),(169290,40608,'_blocks_3_split_5050_content','field_61767afceb8ba'),(169291,40608,'blocks_4_acfe_flexible_toggle',''),(169292,40608,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(169293,40608,'blocks_4_acfe_flexible_layout_title','Tabs'),(169294,40608,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(169295,40608,'blocks_4_options_theme','#ffffff'),(169296,40608,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(169297,40608,'blocks_4_options',''),(169298,40608,'_blocks_4_options','field_6177cfcd8140f'),(169299,40608,'blocks_4_tabs_0_tab_label','Learning Type'),(169300,40608,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(169301,40608,'blocks_4_tabs_0_tab_content_title',''),(169302,40608,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(169303,40608,'blocks_4_tabs_0_tab_content_heading',''),(169304,40608,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(169305,40608,'blocks_4_tabs_0_tab_content_text','This core Training CPD course is taught through a 1-day online course. Learn from anywhere in the world.'),(169306,40608,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(169307,40608,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169308,40608,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(169309,40608,'blocks_4_tabs_0_tab_content_actions','1'),(169310,40608,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(169311,40608,'blocks_4_tabs_0_tab_content',''),(169312,40608,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(169313,40608,'blocks_4_tabs_0_tab_image',''),(169314,40608,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(169315,40608,'blocks_4_tabs_1_tab_label','Content covered '),(169316,40608,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(169317,40608,'blocks_4_tabs_1_tab_content_title',''),(169318,40608,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(169319,40608,'blocks_4_tabs_1_tab_content_heading',''),(169320,40608,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(169321,40608,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Anatomy and kinesiology of the torso</li>\r\n 	<li>Exercise and its role in muscle balance and posture</li>\r\n 	<li>Core strength and stability exercises and their practical application</li>\r\n 	<li>Techniques for developing a client’s body awareness</li>\r\n 	<li>Techniques of adaptation and progression in core training</li>\r\n 	<li>The use of equipment such as stability balls, medicine balls, free weights, resistance machines and resistance bands</li>\r\n</ul>'),(169322,40608,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(169323,40608,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169324,40608,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(169325,40608,'blocks_4_tabs_1_tab_content_actions','1'),(169326,40608,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(169327,40608,'blocks_4_tabs_1_tab_content',''),(169328,40608,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(169329,40608,'blocks_4_tabs_1_tab_image',''),(169330,40608,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(169331,40608,'blocks_4_tabs_2_tab_label','Assessment '),(169332,40608,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(169333,40608,'blocks_4_tabs_2_tab_content_title',''),(169334,40608,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(169335,40608,'blocks_4_tabs_2_tab_content_heading',''),(169336,40608,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(169337,40608,'blocks_4_tabs_2_tab_content_text','An online multiple choice knowledge check'),(169338,40608,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(169339,40608,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169340,40608,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(169341,40608,'blocks_4_tabs_2_tab_content_actions','1'),(169342,40608,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(169343,40608,'blocks_4_tabs_2_tab_content',''),(169344,40608,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(169345,40608,'blocks_4_tabs_2_tab_image',''),(169346,40608,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(169347,40608,'blocks_4_tabs_3_tab_label','E-learning '),(169348,40608,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(169349,40608,'blocks_4_tabs_3_tab_content_title',''),(169350,40608,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(169351,40608,'blocks_4_tabs_3_tab_content_heading',''),(169352,40608,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(169353,40608,'blocks_4_tabs_3_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(169354,40608,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(169355,40608,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169356,40608,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(169357,40608,'blocks_4_tabs_3_tab_content_actions','1'),(169358,40608,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(169359,40608,'blocks_4_tabs_3_tab_content',''),(169360,40608,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(169361,40608,'blocks_4_tabs_3_tab_image',''),(169362,40608,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(169363,40608,'blocks_4_tabs_4_tab_label','Content '),(169364,40608,'_blocks_4_tabs_4_tab_label','field_6177d0068141a'),(169365,40608,'blocks_4_tabs_4_tab_content_title',''),(169366,40608,'_blocks_4_tabs_4_tab_content_title','field_6177cfcd81414'),(169367,40608,'blocks_4_tabs_4_tab_content_heading',''),(169368,40608,'_blocks_4_tabs_4_tab_content_heading','field_6177cfcd81415'),(169369,40608,'blocks_4_tabs_4_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(169370,40608,'_blocks_4_tabs_4_tab_content_text','field_6177cfcd81416'),(169371,40608,'blocks_4_tabs_4_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169372,40608,'_blocks_4_tabs_4_tab_content_actions_0_button','field_6177cfcd81418'),(169373,40608,'blocks_4_tabs_4_tab_content_actions','1'),(169374,40608,'_blocks_4_tabs_4_tab_content_actions','field_6177cfcd81417'),(169375,40608,'blocks_4_tabs_4_tab_content',''),(169376,40608,'_blocks_4_tabs_4_tab_content','field_6177cfcd81413'),(169377,40608,'blocks_4_tabs_4_tab_image',''),(169378,40608,'_blocks_4_tabs_4_tab_image','field_6177cfcd81412'),(169379,40608,'blocks_4_tabs_5_tab_label','Assessment '),(169380,40608,'_blocks_4_tabs_5_tab_label','field_6177d0068141a'),(169381,40608,'blocks_4_tabs_5_tab_content_title',''),(169382,40608,'_blocks_4_tabs_5_tab_content_title','field_6177cfcd81414'),(169383,40608,'blocks_4_tabs_5_tab_content_heading',''),(169384,40608,'_blocks_4_tabs_5_tab_content_heading','field_6177cfcd81415'),(169385,40608,'blocks_4_tabs_5_tab_content_text','There is no assessment for this course.'),(169386,40608,'_blocks_4_tabs_5_tab_content_text','field_6177cfcd81416'),(169387,40608,'blocks_4_tabs_5_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169388,40608,'_blocks_4_tabs_5_tab_content_actions_0_button','field_6177cfcd81418'),(169389,40608,'blocks_4_tabs_5_tab_content_actions','1'),(169390,40608,'_blocks_4_tabs_5_tab_content_actions','field_6177cfcd81417'),(169391,40608,'blocks_4_tabs_5_tab_content',''),(169392,40608,'_blocks_4_tabs_5_tab_content','field_6177cfcd81413'),(169393,40608,'blocks_4_tabs_5_tab_image',''),(169394,40608,'_blocks_4_tabs_5_tab_image','field_6177cfcd81412'),(169395,40608,'blocks_4_tabs_6_tab_label','Entry requirements'),(169396,40608,'_blocks_4_tabs_6_tab_label','field_6177d0068141a'),(169397,40608,'blocks_4_tabs_6_tab_content_title',''),(169398,40608,'_blocks_4_tabs_6_tab_content_title','field_6177cfcd81414'),(169399,40608,'blocks_4_tabs_6_tab_content_heading',''),(169400,40608,'_blocks_4_tabs_6_tab_content_heading','field_6177cfcd81415'),(169401,40608,'blocks_4_tabs_6_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>Level 2 Gym Instructor.</li>\r\n</ul>\r\nIf you don’t have this qualification, why not find out more about our Level 2 Gym Instructor certificate.\r\n\r\nWe also recommend reading our personal training blog posts before starting the course. There is loads of useful material to help cement your understanding of personal training! Read them here:\r\n<ul>\r\n 	<li>Newly qualified personal trainer? The 5 skills you need to learn now</li>\r\n 	<li>Personal training: expectations | costs | benefits | skills</li>\r\n</ul>'),(169402,40608,'_blocks_4_tabs_6_tab_content_text','field_6177cfcd81416'),(169403,40608,'blocks_4_tabs_6_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169404,40608,'_blocks_4_tabs_6_tab_content_actions_0_button','field_6177cfcd81418'),(169405,40608,'blocks_4_tabs_6_tab_content_actions','1'),(169406,40608,'_blocks_4_tabs_6_tab_content_actions','field_6177cfcd81417'),(169407,40608,'blocks_4_tabs_6_tab_content',''),(169408,40608,'_blocks_4_tabs_6_tab_content','field_6177cfcd81413'),(169409,40608,'blocks_4_tabs_6_tab_image',''),(169410,40608,'_blocks_4_tabs_6_tab_image','field_6177cfcd81412'),(169411,40608,'blocks_4_tabs','7'),(169412,40608,'_blocks_4_tabs','field_6177cff281419'),(169413,40608,'blocks_5_acfe_flexible_toggle',''),(169414,40608,'_blocks_5_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(169415,40608,'blocks_5_acfe_flexible_layout_title','Template'),(169416,40608,'_blocks_5_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(169417,40608,'blocks_5_template','39401'),(169418,40608,'_blocks_5_template','field_617bdd570fe01'),(169419,40608,'blocks_6_acfe_flexible_toggle',''),(169420,40608,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(169421,40608,'blocks_6_acfe_flexible_layout_title','Text Block'),(169422,40608,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(169423,40608,'blocks_6_options_theme','#b61234'),(169424,40608,'_blocks_6_options_theme','field_6176830e2ad17'),(169425,40608,'blocks_6_options',''),(169426,40608,'_blocks_6_options','field_6176830e2ad16'),(169427,40608,'blocks_6_text_block_heading','Why study this core training course?  '),(169428,40608,'_blocks_6_text_block_heading','field_617669d413097'),(169429,40608,'blocks_6_text_block_content','Studying this core training course will help you have a better understanding of helping people develop core stability and core strength. You will find out the best ways to incorporate core training into your client’s workouts to provide them with a valuable and enjoyable session.\r\n\r\nAs a fitness coach or instructor, having a good understanding of core strength is fundamental to all clients or group classes, having this knowledge will teach you how to ensure your clients are using their core strength and stability where they can. Having good core stability and strength can improve other factors such as exercise form and mobility, therefore this is valuable to all clients as a trainer.'),(169430,40608,'_blocks_6_text_block_content','field_617669ec13098'),(169431,40608,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:8:\"template\";i:6;s:10:\"text_block\";i:7;s:10:\"text_block\";i:8;s:14:\"course_compare\";i:9;s:10:\"accordions\";}'),(169432,40608,'_blocks','field_6176696113096'),(169433,40608,'course_label_text',''),(169434,40608,'_course_label_text','field_61e17babf71fa'),(169435,40608,'course_label',''),(169436,40608,'_course_label','field_61e12f92749a7'),(169437,40608,'course_description',''),(169438,40608,'_course_description','field_617ac5788e5e1'),(169439,40608,'course_key_info',''),(169440,40608,'_course_key_info','field_617ac6ad8e5e2'),(169441,40608,'course_included',''),(169442,40608,'_course_included','field_617ac6f08e5e4'),(169443,40608,'blocks_7_acfe_flexible_toggle',''),(169444,40608,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(169445,40608,'blocks_7_acfe_flexible_layout_title','Text Block'),(169446,40608,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(169447,40608,'blocks_7_options_theme','#ffffff'),(169448,40608,'_blocks_7_options_theme','field_6176830e2ad17'),(169449,40608,'blocks_7_options',''),(169450,40608,'_blocks_7_options','field_6176830e2ad16'),(169451,40608,'blocks_7_text_block_heading','Frequently Bought Together'),(169452,40608,'_blocks_7_text_block_heading','field_617669d413097'),(169453,40608,'blocks_7_text_block_content','Check out more of our courses that are frequently purchased together'),(169454,40608,'_blocks_7_text_block_content','field_617669ec13098'),(169455,40608,'blocks_8_acfe_flexible_toggle',''),(169456,40608,'_blocks_8_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(169457,40608,'blocks_8_acfe_flexible_layout_title','Course Comparison'),(169458,40608,'_blocks_8_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(169459,40608,'blocks_8_options_theme','#ffffff'),(169460,40608,'_blocks_8_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(169461,40608,'blocks_8_options',''),(169462,40608,'_blocks_8_options','field_617ac0b7f6c08'),(169463,40608,'blocks_8_show','category'),(169464,40608,'_blocks_8_show','field_61a49cba9d946'),(169465,40608,'blocks_8_category','403'),(169466,40608,'_blocks_8_category','field_61a49cd79d947'),(169467,40608,'blocks_9_acfe_flexible_toggle',''),(169468,40608,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(169469,40608,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(169470,40608,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(169471,40608,'blocks_9_options_theme','#ffffff'),(169472,40608,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(169473,40608,'blocks_9_options_state','0'),(169474,40608,'_blocks_9_options_state','field_6239fcb7508c5'),(169475,40608,'blocks_9_options',''),(169476,40608,'_blocks_9_options','field_6177e2991ac44'),(169477,40608,'blocks_9_content_title',''),(169478,40608,'_blocks_9_content_title','field_64d237e8bb1e2'),(169479,40608,'blocks_9_content_heading','FAQ\'s'),(169480,40608,'_blocks_9_content_heading','field_64d237e8bb1e3'),(169481,40608,'blocks_9_content_text',''),(169482,40608,'_blocks_9_content_text','field_64d237e8bb1e4'),(169483,40608,'blocks_9_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169484,40608,'_blocks_9_content_actions_0_button','field_64d237e8bb1e6'),(169485,40608,'blocks_9_content_actions','1'),(169486,40608,'_blocks_9_content_actions','field_64d237e8bb1e5'),(169487,40608,'blocks_9_content_align','left'),(169488,40608,'_blocks_9_content_align','field_64d2443e6b6aa'),(169489,40608,'blocks_9_content',''),(169490,40608,'_blocks_9_content','field_64d237e8bb1e1'),(169491,40608,'blocks_9_accordion_content','faqs'),(169492,40608,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(169493,40608,'blocks_9_accordion_faqs_select','a:5:{i:0;s:5:\"39422\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(169494,40608,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(169495,40608,'blocks_9_actions',''),(169496,40608,'_blocks_9_actions','field_61a746a817f7a'),(169497,40609,'hide_hero','0'),(169498,40609,'_hide_hero','field_66a2380fcda39'),(169499,40609,'hero_title',''),(169500,40609,'_hero_title','field_617571fe285e8'),(169501,40609,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(169502,40609,'_hero_text','field_6175723c285e9'),(169503,40609,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(169504,40609,'_hero_actions_0_button','field_61757281285eb'),(169505,40609,'hero_actions','1'),(169506,40609,'_hero_actions','field_61757270285ea'),(169507,40609,'hero_style','default'),(169508,40609,'_hero_style','field_62051d9dc5324'),(169509,40609,'_thumbnail_id','40288'),(169510,40609,'__thumbnail_id','field_617570855ddaf'),(169511,40609,'hero_image_pos_x','right'),(169512,40609,'_hero_image_pos_x','field_62ec3d05390bb'),(169513,40609,'hero_image_pos_y','top'),(169514,40609,'_hero_image_pos_y','field_62ec3d05390bc'),(169515,40609,'hero_image_pos',''),(169516,40609,'_hero_image_pos','field_62ec3d05390ba'),(169517,40609,'fft_hide_from_listings','0'),(169518,40609,'_fft_hide_from_listings','field_61f1320446ab2'),(169519,40609,'fft_page_format','default'),(169520,40609,'_fft_page_format','field_61ae213f1f218'),(169521,40609,'fft_hide_nav','0'),(169522,40609,'_fft_hide_nav','field_635bd5e43527c'),(169523,40609,'fft_hide_header_call_to_action','0'),(169524,40609,'_fft_hide_header_call_to_action','field_635bd6723527d'),(169525,40609,'fft_page_sitemap','0'),(169526,40609,'_fft_page_sitemap','field_61af9b34e8181'),(169527,40609,'blocks_0_acfe_flexible_toggle',''),(169528,40609,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(169529,40609,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(169530,40609,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(169531,40609,'blocks_0_options_theme','#ffffff'),(169532,40609,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(169533,40609,'blocks_0_options_reverse','0'),(169534,40609,'_blocks_0_options_reverse','field_61768049bb8ac'),(169535,40609,'blocks_0_options',''),(169536,40609,'_blocks_0_options','field_617682517c334'),(169537,40609,'blocks_0_split_5050_image','40290'),(169538,40609,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(169539,40609,'blocks_0_split_5050_video',''),(169540,40609,'_blocks_0_split_5050_video','field_6239f3160848a'),(169541,40609,'blocks_0_split_5050_content_title',''),(169542,40609,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(169543,40609,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(169544,40609,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(169545,40609,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(169546,40609,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(169547,40609,'blocks_0_split_5050_content_actions',''),(169548,40609,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(169549,40609,'blocks_0_split_5050_content',''),(169550,40609,'_blocks_0_split_5050_content','field_61767afceb8ba'),(169551,40609,'blocks_1_acfe_flexible_toggle',''),(169552,40609,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(169553,40609,'blocks_1_acfe_flexible_layout_title','Icons'),(169554,40609,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(169555,40609,'blocks_1_options_theme','#b61234'),(169556,40609,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(169557,40609,'blocks_1_options_format','grid'),(169558,40609,'_blocks_1_options_format','field_64bfde9a90690'),(169559,40609,'blocks_1_options',''),(169560,40609,'_blocks_1_options','field_64bfdd9b90684'),(169561,40609,'blocks_1_row_content_title',''),(169562,40609,'_blocks_1_row_content_title','field_64bfdd9b90687'),(169563,40609,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(169564,40609,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(169565,40609,'blocks_1_row_content_text',''),(169566,40609,'_blocks_1_row_content_text','field_64bfdd9b90689'),(169567,40609,'blocks_1_row_content_actions',''),(169568,40609,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(169569,40609,'blocks_1_row_content',''),(169570,40609,'_blocks_1_row_content','field_64bfdd9b90686'),(169571,40609,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(169572,40609,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(169573,40609,'blocks_1_icon_row_items_0_label',''),(169574,40609,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(169575,40609,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(169576,40609,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(169577,40609,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(169578,40609,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(169579,40609,'blocks_1_icon_row_items_1_label',''),(169580,40609,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(169581,40609,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(169582,40609,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(169583,40609,'blocks_1_icon_row_items_2_icon','referrals.svg'),(169584,40609,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(169585,40609,'blocks_1_icon_row_items_2_label',''),(169586,40609,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(169587,40609,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(169588,40609,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(169589,40609,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(169590,40609,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(169591,40609,'blocks_1_icon_row_items_3_label',''),(169592,40609,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(169593,40609,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(169594,40609,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(169595,40609,'blocks_1_icon_row_items','4'),(169596,40609,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(169597,40609,'blocks_2_acfe_flexible_toggle',''),(169598,40609,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(169599,40609,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(169600,40609,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(169601,40609,'blocks_2_options_theme','#ffffff'),(169602,40609,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(169603,40609,'blocks_2_options_reverse','1'),(169604,40609,'_blocks_2_options_reverse','field_61768049bb8ac'),(169605,40609,'blocks_2_options',''),(169606,40609,'_blocks_2_options','field_617682517c334'),(169607,40609,'blocks_2_split_5050_image','40294'),(169608,40609,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(169609,40609,'blocks_2_split_5050_video',''),(169610,40609,'_blocks_2_split_5050_video','field_6239f3160848a'),(169611,40609,'blocks_2_split_5050_content_title',''),(169612,40609,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(169613,40609,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(169614,40609,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(169615,40609,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(169616,40609,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(169617,40609,'blocks_2_split_5050_content_actions',''),(169618,40609,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(169619,40609,'blocks_2_split_5050_content',''),(169620,40609,'_blocks_2_split_5050_content','field_61767afceb8ba'),(169621,40609,'blocks_3_acfe_flexible_toggle',''),(169622,40609,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(169623,40609,'blocks_3_acfe_flexible_layout_title','Tabs'),(169624,40609,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(169625,40609,'blocks_3_options_theme','#f5f5f5'),(169626,40609,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(169627,40609,'blocks_3_options',''),(169628,40609,'_blocks_3_options','field_6177cfcd8140f'),(169629,40609,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(169630,40609,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(169631,40609,'blocks_3_tabs_0_tab_content_title',''),(169632,40609,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(169633,40609,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(169634,40609,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(169635,40609,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(169636,40609,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(169637,40609,'blocks_3_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169638,40609,'_blocks_3_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(169639,40609,'blocks_3_tabs_0_tab_content_actions','1'),(169640,40609,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(169641,40609,'blocks_3_tabs_0_tab_content',''),(169642,40609,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(169643,40609,'blocks_3_tabs_0_tab_image',''),(169644,40609,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(169645,40609,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(169646,40609,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(169647,40609,'blocks_3_tabs_1_tab_content_title',''),(169648,40609,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(169649,40609,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(169650,40609,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(169651,40609,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(169652,40609,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(169653,40609,'blocks_3_tabs_1_tab_content_actions',''),(169654,40609,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(169655,40609,'blocks_3_tabs_1_tab_content',''),(169656,40609,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(169657,40609,'blocks_3_tabs_1_tab_image',''),(169658,40609,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(169659,40609,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(169660,40609,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(169661,40609,'blocks_3_tabs_2_tab_content_title',''),(169662,40609,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(169663,40609,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(169664,40609,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(169665,40609,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(169666,40609,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(169667,40609,'blocks_3_tabs_2_tab_content_actions',''),(169668,40609,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(169669,40609,'blocks_3_tabs_2_tab_content',''),(169670,40609,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(169671,40609,'blocks_3_tabs_2_tab_image',''),(169672,40609,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(169673,40609,'blocks_3_tabs','3'),(169674,40609,'_blocks_3_tabs','field_6177cff281419'),(169675,40609,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(169676,40609,'_blocks','field_6176696113096'),(169677,40609,'course_label_text',''),(169678,40609,'_course_label_text','field_61e17babf71fa'),(169679,40609,'course_label',''),(169680,40609,'_course_label','field_61e12f92749a7'),(169681,40609,'course_description',''),(169682,40609,'_course_description','field_617ac5788e5e1'),(169683,40609,'course_key_info',''),(169684,40609,'_course_key_info','field_617ac6ad8e5e2'),(169685,40609,'course_included',''),(169686,40609,'_course_included','field_617ac6f08e5e4'),(169687,40286,'blocks_3_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169688,40286,'_blocks_3_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(169689,40286,'blocks_3_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169690,40286,'_blocks_3_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(169691,40610,'hide_hero','0'),(169692,40610,'_hide_hero','field_66a2380fcda39'),(169693,40610,'hero_title',''),(169694,40610,'_hero_title','field_617571fe285e8'),(169695,40610,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(169696,40610,'_hero_text','field_6175723c285e9'),(169697,40610,'hero_actions','1'),(169698,40610,'_hero_actions','field_61757270285ea'),(169699,40610,'hero_style','default'),(169700,40610,'_hero_style','field_62051d9dc5324'),(169701,40610,'_thumbnail_id','40288'),(169702,40610,'__thumbnail_id','field_617570855ddaf'),(169703,40610,'hero_image_pos_x','right'),(169704,40610,'_hero_image_pos_x','field_62ec3d05390bb'),(169705,40610,'hero_image_pos_y','top'),(169706,40610,'_hero_image_pos_y','field_62ec3d05390bc'),(169707,40610,'hero_image_pos',''),(169708,40610,'_hero_image_pos','field_62ec3d05390ba'),(169709,40610,'fft_hide_from_listings','0'),(169710,40610,'_fft_hide_from_listings','field_61f1320446ab2'),(169711,40610,'fft_page_format','default'),(169712,40610,'_fft_page_format','field_61ae213f1f218'),(169713,40610,'fft_hide_nav','0'),(169714,40610,'_fft_hide_nav','field_635bd5e43527c'),(169715,40610,'fft_hide_header_call_to_action','0'),(169716,40610,'_fft_hide_header_call_to_action','field_635bd6723527d'),(169717,40610,'fft_page_sitemap','0'),(169718,40610,'_fft_page_sitemap','field_61af9b34e8181'),(169719,40610,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(169720,40610,'_blocks','field_6176696113096'),(169721,40610,'course_label_text',''),(169722,40610,'_course_label_text','field_61e17babf71fa'),(169723,40610,'course_label',''),(169724,40610,'_course_label','field_61e12f92749a7'),(169725,40610,'course_description',''),(169726,40610,'_course_description','field_617ac5788e5e1'),(169727,40610,'course_key_info',''),(169728,40610,'_course_key_info','field_617ac6ad8e5e2'),(169729,40610,'course_included',''),(169730,40610,'_course_included','field_617ac6f08e5e4'),(169731,40610,'blocks_0_acfe_flexible_toggle',''),(169732,40610,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(169733,40610,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(169734,40610,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(169735,40610,'blocks_0_options_theme','#ffffff'),(169736,40610,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(169737,40610,'blocks_0_options_reverse','0'),(169738,40610,'_blocks_0_options_reverse','field_61768049bb8ac'),(169739,40610,'blocks_0_options',''),(169740,40610,'_blocks_0_options','field_617682517c334'),(169741,40610,'blocks_0_split_5050_image','40290'),(169742,40610,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(169743,40610,'blocks_0_split_5050_video',''),(169744,40610,'_blocks_0_split_5050_video','field_6239f3160848a'),(169745,40610,'blocks_0_split_5050_content_title',''),(169746,40610,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(169747,40610,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(169748,40610,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(169749,40610,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(169750,40610,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(169751,40610,'blocks_0_split_5050_content_actions',''),(169752,40610,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(169753,40610,'blocks_0_split_5050_content',''),(169754,40610,'_blocks_0_split_5050_content','field_61767afceb8ba'),(169755,40610,'blocks_1_acfe_flexible_toggle',''),(169756,40610,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(169757,40610,'blocks_1_acfe_flexible_layout_title','Icons'),(169758,40610,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(169759,40610,'blocks_1_options_theme','#b61234'),(169760,40610,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(169761,40610,'blocks_1_options_format','grid'),(169762,40610,'_blocks_1_options_format','field_64bfde9a90690'),(169763,40610,'blocks_1_options',''),(169764,40610,'_blocks_1_options','field_64bfdd9b90684'),(169765,40610,'blocks_1_row_content_title',''),(169766,40610,'_blocks_1_row_content_title','field_64bfdd9b90687'),(169767,40610,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(169768,40610,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(169769,40610,'blocks_1_row_content_text',''),(169770,40610,'_blocks_1_row_content_text','field_64bfdd9b90689'),(169771,40610,'blocks_1_row_content_actions',''),(169772,40610,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(169773,40610,'blocks_1_row_content',''),(169774,40610,'_blocks_1_row_content','field_64bfdd9b90686'),(169775,40610,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(169776,40610,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(169777,40610,'blocks_1_icon_row_items_0_label',''),(169778,40610,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(169779,40610,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(169780,40610,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(169781,40610,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(169782,40610,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(169783,40610,'blocks_1_icon_row_items_1_label',''),(169784,40610,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(169785,40610,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(169786,40610,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(169787,40610,'blocks_1_icon_row_items_2_icon','referrals.svg'),(169788,40610,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(169789,40610,'blocks_1_icon_row_items_2_label',''),(169790,40610,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(169791,40610,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(169792,40610,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(169793,40610,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(169794,40610,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(169795,40610,'blocks_1_icon_row_items_3_label',''),(169796,40610,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(169797,40610,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(169798,40610,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(169799,40610,'blocks_1_icon_row_items','4'),(169800,40610,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(169801,40610,'blocks_2_acfe_flexible_toggle',''),(169802,40610,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(169803,40610,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(169804,40610,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(169805,40610,'blocks_2_options_theme','#ffffff'),(169806,40610,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(169807,40610,'blocks_2_options_reverse','1'),(169808,40610,'_blocks_2_options_reverse','field_61768049bb8ac'),(169809,40610,'blocks_2_options',''),(169810,40610,'_blocks_2_options','field_617682517c334'),(169811,40610,'blocks_2_split_5050_image','40294'),(169812,40610,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(169813,40610,'blocks_2_split_5050_video',''),(169814,40610,'_blocks_2_split_5050_video','field_6239f3160848a'),(169815,40610,'blocks_2_split_5050_content_title',''),(169816,40610,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(169817,40610,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(169818,40610,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(169819,40610,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(169820,40610,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(169821,40610,'blocks_2_split_5050_content_actions',''),(169822,40610,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(169823,40610,'blocks_2_split_5050_content',''),(169824,40610,'_blocks_2_split_5050_content','field_61767afceb8ba'),(169825,40610,'blocks_3_acfe_flexible_toggle',''),(169826,40610,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(169827,40610,'blocks_3_acfe_flexible_layout_title','Tabs'),(169828,40610,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(169829,40610,'blocks_3_options_theme','#ffffff'),(169830,40610,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(169831,40610,'blocks_3_options',''),(169832,40610,'_blocks_3_options','field_6177cfcd8140f'),(169833,40610,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(169834,40610,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(169835,40610,'blocks_3_tabs_0_tab_content_title',''),(169836,40610,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(169837,40610,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(169838,40610,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(169839,40610,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(169840,40610,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(169841,40610,'blocks_3_tabs_0_tab_content_actions','1'),(169842,40610,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(169843,40610,'blocks_3_tabs_0_tab_content',''),(169844,40610,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(169845,40610,'blocks_3_tabs_0_tab_image',''),(169846,40610,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(169847,40610,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(169848,40610,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(169849,40610,'blocks_3_tabs_1_tab_content_title',''),(169850,40610,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(169851,40610,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(169852,40610,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(169853,40610,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(169854,40610,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(169855,40610,'blocks_3_tabs_1_tab_content_actions','1'),(169856,40610,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(169857,40610,'blocks_3_tabs_1_tab_content',''),(169858,40610,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(169859,40610,'blocks_3_tabs_1_tab_image',''),(169860,40610,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(169861,40610,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(169862,40610,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(169863,40610,'blocks_3_tabs_2_tab_content_title',''),(169864,40610,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(169865,40610,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(169866,40610,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(169867,40610,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(169868,40610,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(169869,40610,'blocks_3_tabs_2_tab_content_actions','1'),(169870,40610,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(169871,40610,'blocks_3_tabs_2_tab_content',''),(169872,40610,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(169873,40610,'blocks_3_tabs_2_tab_image',''),(169874,40610,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(169875,40610,'blocks_3_tabs','3'),(169876,40610,'_blocks_3_tabs','field_6177cff281419'),(169877,40610,'blocks_3_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169878,40610,'_blocks_3_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(169879,40610,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(169880,40610,'_hero_actions_0_button','field_61757281285eb'),(169881,40610,'blocks_3_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169882,40610,'_blocks_3_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(169883,40610,'blocks_3_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169884,40610,'_blocks_3_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(169885,40281,'_edit_lock','1727342684:5'),(169886,40611,'_wp_attached_file','2024/09/Introduction-to-running-biomechanics-hero.jpg'),(169887,40611,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:53:\"2024/09/Introduction-to-running-biomechanics-hero.jpg\";s:8:\"filesize\";i:525592;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Introduction-to-running-biomechanics-hero-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104088;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-hero-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165064;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Introduction-to-running-biomechanics-hero-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28168;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Introduction-to-running-biomechanics-hero-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79698;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"Introduction-to-running-biomechanics-hero-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245664;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:55:\"Introduction-to-running-biomechanics-hero-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:388936;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:53:\"Introduction-to-running-biomechanics-hero-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36025;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:53:\"Introduction-to-running-biomechanics-hero-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134400;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:55:\"Introduction-to-running-biomechanics-hero-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210783;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:53:\"Introduction-to-running-biomechanics-hero-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28275;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:53:\"Introduction-to-running-biomechanics-hero-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104088;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-hero-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165064;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:53:\"Introduction-to-running-biomechanics-hero-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27641;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:53:\"Introduction-to-running-biomechanics-hero-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100601;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-hero-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157253;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:53:\"Introduction-to-running-biomechanics-hero-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30117;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:53:\"Introduction-to-running-biomechanics-hero-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111742;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-hero-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176990;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:53:\"Introduction-to-running-biomechanics-hero-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24250;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:53:\"Introduction-to-running-biomechanics-hero-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88417;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-hero-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140116;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(169888,40612,'_wp_attached_file','2024/09/Introduction-to-running-biomechanics-50.50.jpg'),(169889,40612,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1503;s:4:\"file\";s:54:\"2024/09/Introduction-to-running-biomechanics-50.50.jpg\";s:8:\"filesize\";i:446536;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-50.50-900x528.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91562;}s:5:\"large\";a:5:{s:4:\"file\";s:55:\"Introduction-to-running-biomechanics-50.50-1200x705.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145513;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-50.50-400x235.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25288;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-50.50-768x451.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:451;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71393;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:55:\"Introduction-to-running-biomechanics-50.50-1536x902.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:902;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214741;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:56:\"Introduction-to-running-biomechanics-50.50-2048x1202.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:336410;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-50.50-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36934;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-50.50-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132400;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:56:\"Introduction-to-running-biomechanics-50.50-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205236;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-50.50-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27775;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-50.50-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100995;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:55:\"Introduction-to-running-biomechanics-50.50-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158136;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-50.50-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27968;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-50.50-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98670;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:55:\"Introduction-to-running-biomechanics-50.50-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152774;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-50.50-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30075;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-50.50-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109199;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:55:\"Introduction-to-running-biomechanics-50.50-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170861;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-50.50-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24443;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:54:\"Introduction-to-running-biomechanics-50.50-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88816;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:55:\"Introduction-to-running-biomechanics-50.50-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140156;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(169890,40281,'_edit_last','5'),(169891,40281,'_wp_old_date','2024-09-10'),(169892,40281,'hide_hero','0'),(169893,40281,'_hide_hero','field_66a2380fcda39'),(169894,40281,'hero_title','Introduction To Running Biomechanics'),(169895,40281,'_hero_title','field_617571fe285e8'),(169896,40281,'hero_text','Discover the Secrets of Optimal Running Styles in this Comprehensive 3hr 15min Classroom Recording & Handout Session! '),(169897,40281,'_hero_text','field_6175723c285e9'),(169898,40281,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169899,40281,'_hero_actions_0_button','field_61757281285eb'),(169900,40281,'hero_actions','1'),(169901,40281,'_hero_actions','field_61757270285ea'),(169902,40281,'hero_style','default'),(169903,40281,'_hero_style','field_62051d9dc5324'),(169904,40281,'_thumbnail_id','40611'),(169905,40281,'__thumbnail_id','field_617570855ddaf'),(169906,40281,'hero_image_pos_x','right'),(169907,40281,'_hero_image_pos_x','field_62ec3d05390bb'),(169908,40281,'hero_image_pos_y','top'),(169909,40281,'_hero_image_pos_y','field_62ec3d05390bc'),(169910,40281,'hero_image_pos',''),(169911,40281,'_hero_image_pos','field_62ec3d05390ba'),(169912,40281,'fft_hide_from_listings','0'),(169913,40281,'_fft_hide_from_listings','field_61f1320446ab2'),(169914,40281,'fft_page_format','default'),(169915,40281,'_fft_page_format','field_61ae213f1f218'),(169916,40281,'fft_hide_nav','0'),(169917,40281,'_fft_hide_nav','field_635bd5e43527c'),(169918,40281,'fft_hide_header_call_to_action','0'),(169919,40281,'_fft_hide_header_call_to_action','field_635bd6723527d'),(169920,40281,'fft_page_sitemap','0'),(169921,40281,'_fft_page_sitemap','field_61af9b34e8181'),(169922,40281,'blocks_0_acfe_flexible_toggle',''),(169923,40281,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(169924,40281,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(169925,40281,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(169926,40281,'blocks_0_options_theme','#ffffff'),(169927,40281,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(169928,40281,'blocks_0_options_reverse','0'),(169929,40281,'_blocks_0_options_reverse','field_61768049bb8ac'),(169930,40281,'blocks_0_options',''),(169931,40281,'_blocks_0_options','field_617682517c334'),(169932,40281,'blocks_0_split_5050_image','40612'),(169933,40281,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(169934,40281,'blocks_0_split_5050_video',''),(169935,40281,'_blocks_0_split_5050_video','field_6239f3160848a'),(169936,40281,'blocks_0_split_5050_content_title',''),(169937,40281,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(169938,40281,'blocks_0_split_5050_content_heading','Course Overview'),(169939,40281,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(169940,40281,'blocks_0_split_5050_content_text','<strong>Embrace the Essence of Running</strong>\r\n\r\nRunning is a cornerstone of fitness, yet the ongoing debate on the best running style can be confusing. Simplify the complexity with our Introduction to Running Biomechanics Online Training.\r\n\r\n<strong>Tailored for You</strong>\r\n\r\nNo one-size-fits-all approach here. This workshop dissects the evidence supporting various running styles, empowering you to make informed choices for you and your clients.\r\n\r\n<strong>What You\'ll Gain</strong>\r\n<ul>\r\n 	<li>Master running club terminology.</li>\r\n 	<li>Grasp the mechanics and sequencing of different running gaits.</li>\r\n 	<li>Explore extrinsic influences and identify intrinsic restrictions.</li>\r\n</ul>'),(169941,40281,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(169942,40281,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(169943,40281,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(169944,40281,'blocks_0_split_5050_content_actions','1'),(169945,40281,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(169946,40281,'blocks_0_split_5050_content',''),(169947,40281,'_blocks_0_split_5050_content','field_61767afceb8ba'),(169948,40281,'blocks_1_acfe_flexible_toggle',''),(169949,40281,'_blocks_1_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(169950,40281,'blocks_1_acfe_flexible_layout_title','Tabs'),(169951,40281,'_blocks_1_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(169952,40281,'blocks_1_options_theme','#f5f5f5'),(169953,40281,'_blocks_1_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(169954,40281,'blocks_1_options',''),(169955,40281,'_blocks_1_options','field_6177cfcd8140f'),(169956,40281,'blocks_1_tabs_0_tab_label','Elevate Your Expertise '),(169957,40281,'_blocks_1_tabs_0_tab_label','field_6177d0068141a'),(169958,40281,'blocks_1_tabs_0_tab_content_title',''),(169959,40281,'_blocks_1_tabs_0_tab_content_title','field_6177cfcd81414'),(169960,40281,'blocks_1_tabs_0_tab_content_heading',''),(169961,40281,'_blocks_1_tabs_0_tab_content_heading','field_6177cfcd81415'),(169962,40281,'blocks_1_tabs_0_tab_content_text','Crafted for fitness and exercise instructors seeking CPD, this online training enhances your understanding of both intrinsic and extrinsic biomechanics.\r\n\r\n<em>Note: A face-to-face attendance option is available for an attendance certificate.</em>'),(169963,40281,'_blocks_1_tabs_0_tab_content_text','field_6177cfcd81416'),(169964,40281,'blocks_1_tabs_0_tab_content_actions',''),(169965,40281,'_blocks_1_tabs_0_tab_content_actions','field_6177cfcd81417'),(169966,40281,'blocks_1_tabs_0_tab_content',''),(169967,40281,'_blocks_1_tabs_0_tab_content','field_6177cfcd81413'),(169968,40281,'blocks_1_tabs_0_tab_image',''),(169969,40281,'_blocks_1_tabs_0_tab_image','field_6177cfcd81412'),(169970,40281,'blocks_1_tabs_1_tab_label','Seamless Access '),(169971,40281,'_blocks_1_tabs_1_tab_label','field_6177d0068141a'),(169972,40281,'blocks_1_tabs_1_tab_content_title',''),(169973,40281,'_blocks_1_tabs_1_tab_content_title','field_6177cfcd81414'),(169974,40281,'blocks_1_tabs_1_tab_content_heading',''),(169975,40281,'_blocks_1_tabs_1_tab_content_heading','field_6177cfcd81415'),(169976,40281,'blocks_1_tabs_1_tab_content_text','Upon payment, promptly access the video link and download your handout PDF. For future access, log in with your email.'),(169977,40281,'_blocks_1_tabs_1_tab_content_text','field_6177cfcd81416'),(169978,40281,'blocks_1_tabs_1_tab_content_actions',''),(169979,40281,'_blocks_1_tabs_1_tab_content_actions','field_6177cfcd81417'),(169980,40281,'blocks_1_tabs_1_tab_content',''),(169981,40281,'_blocks_1_tabs_1_tab_content','field_6177cfcd81413'),(169982,40281,'blocks_1_tabs_1_tab_image',''),(169983,40281,'_blocks_1_tabs_1_tab_image','field_6177cfcd81412'),(169984,40281,'blocks_1_tabs_2_tab_label','Exclusive Workshop Option! '),(169985,40281,'_blocks_1_tabs_2_tab_label','field_6177d0068141a'),(169986,40281,'blocks_1_tabs_2_tab_content_title',''),(169987,40281,'_blocks_1_tabs_2_tab_content_title','field_6177cfcd81414'),(169988,40281,'blocks_1_tabs_2_tab_content_heading',''),(169989,40281,'_blocks_1_tabs_2_tab_content_heading','field_6177cfcd81415'),(169990,40281,'blocks_1_tabs_2_tab_content_text','Opt for the face-to-face Running Biomechanics Workshop, receive a refund on the online training, and secure your attendance certificate.'),(169991,40281,'_blocks_1_tabs_2_tab_content_text','field_6177cfcd81416'),(169992,40281,'blocks_1_tabs_2_tab_content_actions',''),(169993,40281,'_blocks_1_tabs_2_tab_content_actions','field_6177cfcd81417'),(169994,40281,'blocks_1_tabs_2_tab_content',''),(169995,40281,'_blocks_1_tabs_2_tab_content','field_6177cfcd81413'),(169996,40281,'blocks_1_tabs_2_tab_image',''),(169997,40281,'_blocks_1_tabs_2_tab_image','field_6177cfcd81412'),(169998,40281,'blocks_1_tabs_3_tab_label','Elevate Your Run Today '),(169999,40281,'_blocks_1_tabs_3_tab_label','field_6177d0068141a'),(170000,40281,'blocks_1_tabs_3_tab_content_title',''),(170001,40281,'_blocks_1_tabs_3_tab_content_title','field_6177cfcd81414'),(170002,40281,'blocks_1_tabs_3_tab_content_heading',''),(170003,40281,'_blocks_1_tabs_3_tab_content_heading','field_6177cfcd81415'),(170004,40281,'blocks_1_tabs_3_tab_content_text','Revolutionise your running journey with Introduction to Running Biomechanics. Enrol now for a transformative learning experience!'),(170005,40281,'_blocks_1_tabs_3_tab_content_text','field_6177cfcd81416'),(170006,40281,'blocks_1_tabs_3_tab_content_actions',''),(170007,40281,'_blocks_1_tabs_3_tab_content_actions','field_6177cfcd81417'),(170008,40281,'blocks_1_tabs_3_tab_content',''),(170009,40281,'_blocks_1_tabs_3_tab_content','field_6177cfcd81413'),(170010,40281,'blocks_1_tabs_3_tab_image',''),(170011,40281,'_blocks_1_tabs_3_tab_image','field_6177cfcd81412'),(170012,40281,'blocks_1_tabs','4'),(170013,40281,'_blocks_1_tabs','field_6177cff281419'),(170014,40281,'blocks_2_acfe_flexible_toggle',''),(170015,40281,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(170016,40281,'blocks_2_acfe_flexible_layout_title','Button(s)'),(170017,40281,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(170018,40281,'blocks_2_options_theme','#ffffff'),(170019,40281,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(170020,40281,'blocks_2_options',''),(170021,40281,'_blocks_2_options','field_623b03edb6e65'),(170022,40281,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(170023,40281,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(170024,40281,'blocks_2_actions','1'),(170025,40281,'_blocks_2_actions','field_623b03edb6e6e'),(170026,40281,'blocks_3_acfe_flexible_toggle',''),(170027,40281,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(170028,40281,'blocks_3_acfe_flexible_layout_title','Text Block'),(170029,40281,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(170030,40281,'blocks_3_options_theme','#ffffff'),(170031,40281,'_blocks_3_options_theme','field_6176830e2ad17'),(170032,40281,'blocks_3_options',''),(170033,40281,'_blocks_3_options','field_6176830e2ad16'),(170034,40281,'blocks_3_text_block_heading','Please Note'),(170035,40281,'_blocks_3_text_block_heading','field_617669d413097'),(170036,40281,'blocks_3_text_block_content','This online training is designed to inform &amp; enhance understanding for fitness and exercise instructors through CPD. However, to gain an attendance certificate face to face attendance is required. Once you make your payment, please see the video link and DOWNLOAD your handout pdf immediately for instant access. Otherwise, you simply need to log back in using the email you signed in with to access all purchases.'),(170037,40281,'_blocks_3_text_block_content','field_617669ec13098'),(170038,40281,'blocks_4_acfe_flexible_toggle',''),(170039,40281,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(170040,40281,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(170041,40281,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(170042,40281,'blocks_4_options_theme','#ffffff'),(170043,40281,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(170044,40281,'blocks_4_options_state','0'),(170045,40281,'_blocks_4_options_state','field_6239fcb7508c5'),(170046,40281,'blocks_4_options',''),(170047,40281,'_blocks_4_options','field_6177e2991ac44'),(170048,40281,'blocks_4_content_title',''),(170049,40281,'_blocks_4_content_title','field_64d237e8bb1e2'),(170050,40281,'blocks_4_content_heading',''),(170051,40281,'_blocks_4_content_heading','field_64d237e8bb1e3'),(170052,40281,'blocks_4_content_text',''),(170053,40281,'_blocks_4_content_text','field_64d237e8bb1e4'),(170054,40281,'blocks_4_content_actions',''),(170055,40281,'_blocks_4_content_actions','field_64d237e8bb1e5'),(170056,40281,'blocks_4_content_align','left'),(170057,40281,'_blocks_4_content_align','field_64d2443e6b6aa'),(170058,40281,'blocks_4_content',''),(170059,40281,'_blocks_4_content','field_64d237e8bb1e1'),(170060,40281,'blocks_4_accordion_content','custom'),(170061,40281,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(170062,40281,'blocks_4_accordion_items',''),(170063,40281,'_blocks_4_accordion_items','field_6177e2991ac4c'),(170064,40281,'blocks_4_actions',''),(170065,40281,'_blocks_4_actions','field_61a746a817f7a'),(170066,40281,'blocks_5_acfe_flexible_toggle',''),(170067,40281,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(170068,40281,'blocks_5_acfe_flexible_layout_title','Text Block'),(170069,40281,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(170070,40281,'blocks_5_options_theme','#ffffff'),(170071,40281,'_blocks_5_options_theme','field_6176830e2ad17'),(170072,40281,'blocks_5_options',''),(170073,40281,'_blocks_5_options','field_6176830e2ad16'),(170074,40281,'blocks_5_text_block_heading','See Our Other CPD Courses'),(170075,40281,'_blocks_5_text_block_heading','field_617669d413097'),(170076,40281,'blocks_5_text_block_content','Check out our other frequently purchased CPD courses'),(170077,40281,'_blocks_5_text_block_content','field_617669ec13098'),(170078,40281,'blocks_6_acfe_flexible_toggle',''),(170079,40281,'_blocks_6_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(170080,40281,'blocks_6_acfe_flexible_layout_title','Course Comparison'),(170081,40281,'_blocks_6_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(170082,40281,'blocks_6_options_theme','#ffffff'),(170083,40281,'_blocks_6_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(170084,40281,'blocks_6_options',''),(170085,40281,'_blocks_6_options','field_617ac0b7f6c08'),(170086,40281,'blocks_6_show','category'),(170087,40281,'_blocks_6_show','field_61a49cba9d946'),(170088,40281,'blocks_6_category','403'),(170089,40281,'_blocks_6_category','field_61a49cd79d947'),(170090,40281,'blocks','a:7:{i:0;s:10:\"split_5050\";i:1;s:4:\"tabs\";i:2;s:7:\"buttons\";i:3;s:10:\"text_block\";i:4;s:10:\"accordions\";i:5;s:10:\"text_block\";i:6;s:14:\"course_compare\";}'),(170091,40281,'_blocks','field_6176696113096'),(170092,40281,'course_label_text','Introduction To Running Biomechanics'),(170093,40281,'_course_label_text','field_61e17babf71fa'),(170094,40281,'course_label',''),(170095,40281,'_course_label','field_61e12f92749a7'),(170096,40281,'course_description','Discover the Secrets of Optimal Running Styles in this Comprehensive 3hr 15min Classroom Recording & Handout Session! '),(170097,40281,'_course_description','field_617ac5788e5e1'),(170098,40281,'course_key_info','3'),(170099,40281,'_course_key_info','field_617ac6ad8e5e2'),(170100,40281,'course_included','Master running club terminology.\r\nGrasp the mechanics and sequencing of different running gaits.\r\nExplore extrinsic influences and identify intrinsic restrictions.'),(170101,40281,'_course_included','field_617ac6f08e5e4'),(170102,40281,'_yoast_wpseo_primary_course-cat','403'),(170103,40281,'_yoast_wpseo_estimated-reading-time-minutes','1'),(170104,40613,'hide_hero','0'),(170105,40613,'_hide_hero','field_66a2380fcda39'),(170106,40613,'hero_title','Introduction To Running Biomechanics'),(170107,40613,'_hero_title','field_617571fe285e8'),(170108,40613,'hero_text','Discover the Secrets of Optimal Running Styles in this Comprehensive 3hr 15min Classroom Recording & Handout Session! '),(170109,40613,'_hero_text','field_6175723c285e9'),(170110,40613,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(170111,40613,'_hero_actions_0_button','field_61757281285eb'),(170112,40613,'hero_actions','1'),(170113,40613,'_hero_actions','field_61757270285ea'),(170114,40613,'hero_style','default'),(170115,40613,'_hero_style','field_62051d9dc5324'),(170116,40613,'_thumbnail_id','40611'),(170117,40613,'__thumbnail_id','field_617570855ddaf'),(170118,40613,'hero_image_pos_x','right'),(170119,40613,'_hero_image_pos_x','field_62ec3d05390bb'),(170120,40613,'hero_image_pos_y','top'),(170121,40613,'_hero_image_pos_y','field_62ec3d05390bc'),(170122,40613,'hero_image_pos',''),(170123,40613,'_hero_image_pos','field_62ec3d05390ba'),(170124,40613,'fft_hide_from_listings','0'),(170125,40613,'_fft_hide_from_listings','field_61f1320446ab2'),(170126,40613,'fft_page_format','default'),(170127,40613,'_fft_page_format','field_61ae213f1f218'),(170128,40613,'fft_hide_nav','0'),(170129,40613,'_fft_hide_nav','field_635bd5e43527c'),(170130,40613,'fft_hide_header_call_to_action','0'),(170131,40613,'_fft_hide_header_call_to_action','field_635bd6723527d'),(170132,40613,'fft_page_sitemap','0'),(170133,40613,'_fft_page_sitemap','field_61af9b34e8181'),(170134,40613,'blocks_0_acfe_flexible_toggle',''),(170135,40613,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(170136,40613,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(170137,40613,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(170138,40613,'blocks_0_options_theme','#ffffff'),(170139,40613,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(170140,40613,'blocks_0_options_reverse','0'),(170141,40613,'_blocks_0_options_reverse','field_61768049bb8ac'),(170142,40613,'blocks_0_options',''),(170143,40613,'_blocks_0_options','field_617682517c334'),(170144,40613,'blocks_0_split_5050_image','40612'),(170145,40613,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(170146,40613,'blocks_0_split_5050_video',''),(170147,40613,'_blocks_0_split_5050_video','field_6239f3160848a'),(170148,40613,'blocks_0_split_5050_content_title',''),(170149,40613,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(170150,40613,'blocks_0_split_5050_content_heading','Course Overview'),(170151,40613,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(170152,40613,'blocks_0_split_5050_content_text','<strong>Embrace the Essence of Running</strong>\r\n\r\nRunning is a cornerstone of fitness, yet the ongoing debate on the best running style can be confusing. Simplify the complexity with our Introduction to Running Biomechanics Online Training.\r\n\r\n<strong>Tailored for You</strong>\r\n\r\nNo one-size-fits-all approach here. This workshop dissects the evidence supporting various running styles, empowering you to make informed choices for you and your clients.\r\n\r\n<strong>What You\'ll Gain</strong>\r\n<ul>\r\n 	<li>Master running club terminology.</li>\r\n 	<li>Grasp the mechanics and sequencing of different running gaits.</li>\r\n 	<li>Explore extrinsic influences and identify intrinsic restrictions.</li>\r\n</ul>'),(170153,40613,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(170154,40613,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(170155,40613,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(170156,40613,'blocks_0_split_5050_content_actions','1'),(170157,40613,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(170158,40613,'blocks_0_split_5050_content',''),(170159,40613,'_blocks_0_split_5050_content','field_61767afceb8ba'),(170160,40613,'blocks_1_acfe_flexible_toggle',''),(170161,40613,'_blocks_1_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(170162,40613,'blocks_1_acfe_flexible_layout_title','Tabs'),(170163,40613,'_blocks_1_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(170164,40613,'blocks_1_options_theme','#f5f5f5'),(170165,40613,'_blocks_1_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(170166,40613,'blocks_1_options',''),(170167,40613,'_blocks_1_options','field_6177cfcd8140f'),(170168,40613,'blocks_1_tabs_0_tab_label','Elevate Your Expertise '),(170169,40613,'_blocks_1_tabs_0_tab_label','field_6177d0068141a'),(170170,40613,'blocks_1_tabs_0_tab_content_title',''),(170171,40613,'_blocks_1_tabs_0_tab_content_title','field_6177cfcd81414'),(170172,40613,'blocks_1_tabs_0_tab_content_heading',''),(170173,40613,'_blocks_1_tabs_0_tab_content_heading','field_6177cfcd81415'),(170174,40613,'blocks_1_tabs_0_tab_content_text','Crafted for fitness and exercise instructors seeking CPD, this online training enhances your understanding of both intrinsic and extrinsic biomechanics.\r\n\r\n<em>Note: A face-to-face attendance option is available for an attendance certificate.</em>'),(170175,40613,'_blocks_1_tabs_0_tab_content_text','field_6177cfcd81416'),(170176,40613,'blocks_1_tabs_0_tab_content_actions',''),(170177,40613,'_blocks_1_tabs_0_tab_content_actions','field_6177cfcd81417'),(170178,40613,'blocks_1_tabs_0_tab_content',''),(170179,40613,'_blocks_1_tabs_0_tab_content','field_6177cfcd81413'),(170180,40613,'blocks_1_tabs_0_tab_image',''),(170181,40613,'_blocks_1_tabs_0_tab_image','field_6177cfcd81412'),(170182,40613,'blocks_1_tabs_1_tab_label','Seamless Access '),(170183,40613,'_blocks_1_tabs_1_tab_label','field_6177d0068141a'),(170184,40613,'blocks_1_tabs_1_tab_content_title',''),(170185,40613,'_blocks_1_tabs_1_tab_content_title','field_6177cfcd81414'),(170186,40613,'blocks_1_tabs_1_tab_content_heading',''),(170187,40613,'_blocks_1_tabs_1_tab_content_heading','field_6177cfcd81415');
INSERT INTO `6m7_postmeta` VALUES (170188,40613,'blocks_1_tabs_1_tab_content_text','Upon payment, promptly access the video link and download your handout PDF. For future access, log in with your email.'),(170189,40613,'_blocks_1_tabs_1_tab_content_text','field_6177cfcd81416'),(170190,40613,'blocks_1_tabs_1_tab_content_actions',''),(170191,40613,'_blocks_1_tabs_1_tab_content_actions','field_6177cfcd81417'),(170192,40613,'blocks_1_tabs_1_tab_content',''),(170193,40613,'_blocks_1_tabs_1_tab_content','field_6177cfcd81413'),(170194,40613,'blocks_1_tabs_1_tab_image',''),(170195,40613,'_blocks_1_tabs_1_tab_image','field_6177cfcd81412'),(170196,40613,'blocks_1_tabs_2_tab_label','Exclusive Workshop Option! '),(170197,40613,'_blocks_1_tabs_2_tab_label','field_6177d0068141a'),(170198,40613,'blocks_1_tabs_2_tab_content_title',''),(170199,40613,'_blocks_1_tabs_2_tab_content_title','field_6177cfcd81414'),(170200,40613,'blocks_1_tabs_2_tab_content_heading',''),(170201,40613,'_blocks_1_tabs_2_tab_content_heading','field_6177cfcd81415'),(170202,40613,'blocks_1_tabs_2_tab_content_text','Opt for the face-to-face Running Biomechanics Workshop, receive a refund on the online training, and secure your attendance certificate.'),(170203,40613,'_blocks_1_tabs_2_tab_content_text','field_6177cfcd81416'),(170204,40613,'blocks_1_tabs_2_tab_content_actions',''),(170205,40613,'_blocks_1_tabs_2_tab_content_actions','field_6177cfcd81417'),(170206,40613,'blocks_1_tabs_2_tab_content',''),(170207,40613,'_blocks_1_tabs_2_tab_content','field_6177cfcd81413'),(170208,40613,'blocks_1_tabs_2_tab_image',''),(170209,40613,'_blocks_1_tabs_2_tab_image','field_6177cfcd81412'),(170210,40613,'blocks_1_tabs_3_tab_label','Elevate Your Run Today '),(170211,40613,'_blocks_1_tabs_3_tab_label','field_6177d0068141a'),(170212,40613,'blocks_1_tabs_3_tab_content_title',''),(170213,40613,'_blocks_1_tabs_3_tab_content_title','field_6177cfcd81414'),(170214,40613,'blocks_1_tabs_3_tab_content_heading',''),(170215,40613,'_blocks_1_tabs_3_tab_content_heading','field_6177cfcd81415'),(170216,40613,'blocks_1_tabs_3_tab_content_text','Revolutionise your running journey with Introduction to Running Biomechanics. Enrol now for a transformative learning experience!'),(170217,40613,'_blocks_1_tabs_3_tab_content_text','field_6177cfcd81416'),(170218,40613,'blocks_1_tabs_3_tab_content_actions',''),(170219,40613,'_blocks_1_tabs_3_tab_content_actions','field_6177cfcd81417'),(170220,40613,'blocks_1_tabs_3_tab_content',''),(170221,40613,'_blocks_1_tabs_3_tab_content','field_6177cfcd81413'),(170222,40613,'blocks_1_tabs_3_tab_image',''),(170223,40613,'_blocks_1_tabs_3_tab_image','field_6177cfcd81412'),(170224,40613,'blocks_1_tabs','4'),(170225,40613,'_blocks_1_tabs','field_6177cff281419'),(170226,40613,'blocks_2_acfe_flexible_toggle',''),(170227,40613,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(170228,40613,'blocks_2_acfe_flexible_layout_title','Button(s)'),(170229,40613,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(170230,40613,'blocks_2_options_theme','#ffffff'),(170231,40613,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(170232,40613,'blocks_2_options',''),(170233,40613,'_blocks_2_options','field_623b03edb6e65'),(170234,40613,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(170235,40613,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(170236,40613,'blocks_2_actions','1'),(170237,40613,'_blocks_2_actions','field_623b03edb6e6e'),(170238,40613,'blocks_3_acfe_flexible_toggle',''),(170239,40613,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(170240,40613,'blocks_3_acfe_flexible_layout_title','Text Block'),(170241,40613,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(170242,40613,'blocks_3_options_theme','#ffffff'),(170243,40613,'_blocks_3_options_theme','field_6176830e2ad17'),(170244,40613,'blocks_3_options',''),(170245,40613,'_blocks_3_options','field_6176830e2ad16'),(170246,40613,'blocks_3_text_block_heading','Please Note'),(170247,40613,'_blocks_3_text_block_heading','field_617669d413097'),(170248,40613,'blocks_3_text_block_content','This online training is designed to inform &amp; enhance understanding for fitness and exercise instructors through CPD. However, to gain an attendance certificate face to face attendance is required. Once you make your payment, please see the video link and DOWNLOAD your handout pdf immediately for instant access. Otherwise, you simply need to log back in using the email you signed in with to access all purchases.'),(170249,40613,'_blocks_3_text_block_content','field_617669ec13098'),(170250,40613,'blocks_4_acfe_flexible_toggle',''),(170251,40613,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(170252,40613,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(170253,40613,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(170254,40613,'blocks_4_options_theme','#ffffff'),(170255,40613,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(170256,40613,'blocks_4_options_state','0'),(170257,40613,'_blocks_4_options_state','field_6239fcb7508c5'),(170258,40613,'blocks_4_options',''),(170259,40613,'_blocks_4_options','field_6177e2991ac44'),(170260,40613,'blocks_4_content_title',''),(170261,40613,'_blocks_4_content_title','field_64d237e8bb1e2'),(170262,40613,'blocks_4_content_heading',''),(170263,40613,'_blocks_4_content_heading','field_64d237e8bb1e3'),(170264,40613,'blocks_4_content_text',''),(170265,40613,'_blocks_4_content_text','field_64d237e8bb1e4'),(170266,40613,'blocks_4_content_actions',''),(170267,40613,'_blocks_4_content_actions','field_64d237e8bb1e5'),(170268,40613,'blocks_4_content_align','left'),(170269,40613,'_blocks_4_content_align','field_64d2443e6b6aa'),(170270,40613,'blocks_4_content',''),(170271,40613,'_blocks_4_content','field_64d237e8bb1e1'),(170272,40613,'blocks_4_accordion_content','custom'),(170273,40613,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(170274,40613,'blocks_4_accordion_items',''),(170275,40613,'_blocks_4_accordion_items','field_6177e2991ac4c'),(170276,40613,'blocks_4_actions',''),(170277,40613,'_blocks_4_actions','field_61a746a817f7a'),(170278,40613,'blocks_5_acfe_flexible_toggle',''),(170279,40613,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(170280,40613,'blocks_5_acfe_flexible_layout_title','Text Block'),(170281,40613,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(170282,40613,'blocks_5_options_theme','#ffffff'),(170283,40613,'_blocks_5_options_theme','field_6176830e2ad17'),(170284,40613,'blocks_5_options',''),(170285,40613,'_blocks_5_options','field_6176830e2ad16'),(170286,40613,'blocks_5_text_block_heading','See Our Other CPD Courses'),(170287,40613,'_blocks_5_text_block_heading','field_617669d413097'),(170288,40613,'blocks_5_text_block_content','Check out our other frequently purchased CPD courses'),(170289,40613,'_blocks_5_text_block_content','field_617669ec13098'),(170290,40613,'blocks_6_acfe_flexible_toggle',''),(170291,40613,'_blocks_6_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(170292,40613,'blocks_6_acfe_flexible_layout_title','Course Comparison'),(170293,40613,'_blocks_6_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(170294,40613,'blocks_6_options_theme','#ffffff'),(170295,40613,'_blocks_6_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(170296,40613,'blocks_6_options',''),(170297,40613,'_blocks_6_options','field_617ac0b7f6c08'),(170298,40613,'blocks_6_show','category'),(170299,40613,'_blocks_6_show','field_61a49cba9d946'),(170300,40613,'blocks_6_category','403'),(170301,40613,'_blocks_6_category','field_61a49cd79d947'),(170302,40613,'blocks','a:7:{i:0;s:10:\"split_5050\";i:1;s:4:\"tabs\";i:2;s:7:\"buttons\";i:3;s:10:\"text_block\";i:4;s:10:\"accordions\";i:5;s:10:\"text_block\";i:6;s:14:\"course_compare\";}'),(170303,40613,'_blocks','field_6176696113096'),(170304,40613,'course_label_text',''),(170305,40613,'_course_label_text','field_61e17babf71fa'),(170306,40613,'course_label',''),(170307,40613,'_course_label','field_61e12f92749a7'),(170308,40613,'course_description',''),(170309,40613,'_course_description','field_617ac5788e5e1'),(170310,40613,'course_key_info',''),(170311,40613,'_course_key_info','field_617ac6ad8e5e2'),(170312,40613,'course_included',''),(170313,40613,'_course_included','field_617ac6f08e5e4'),(170524,40277,'_edit_lock','1739187097:17'),(170525,40615,'_wp_attached_file','2024/09/Imovefreely-hero-iamge.jpg'),(170526,40615,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:34:\"2024/09/Imovefreely-hero-iamge.jpg\";s:8:\"filesize\";i:373908;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Imovefreely-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73284;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"Imovefreely-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116772;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Imovefreely-hero-iamge-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21058;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Imovefreely-hero-iamge-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56687;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"Imovefreely-hero-iamge-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176790;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"Imovefreely-hero-iamge-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:283391;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"Imovefreely-hero-iamge-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25998;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"Imovefreely-hero-iamge-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95955;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:36:\"Imovefreely-hero-iamge-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153404;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"Imovefreely-hero-iamge-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20924;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"Imovefreely-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73288;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"Imovefreely-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116727;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"Imovefreely-hero-iamge-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21322;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"Imovefreely-hero-iamge-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76813;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"Imovefreely-hero-iamge-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121815;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"Imovefreely-hero-iamge-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22055;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"Imovefreely-hero-iamge-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79312;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"Imovefreely-hero-iamge-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126666;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"Imovefreely-hero-iamge-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18829;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"Imovefreely-hero-iamge-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65655;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"Imovefreely-hero-iamge-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103585;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(170527,40277,'_edit_last','17'),(170528,40277,'_wp_old_date','2024-09-10'),(170529,40277,'hide_hero','0'),(170530,40277,'_hide_hero','field_66a2380fcda39'),(170531,40277,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(170532,40277,'_hero_title','field_617571fe285e8'),(170533,40277,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(170534,40277,'_hero_text','field_6175723c285e9'),(170535,40277,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(170536,40277,'_hero_actions_0_button','field_61757281285eb'),(170537,40277,'hero_actions','1'),(170538,40277,'_hero_actions','field_61757270285ea'),(170539,40277,'hero_style','default'),(170540,40277,'_hero_style','field_62051d9dc5324'),(170541,40277,'_thumbnail_id','40615'),(170542,40277,'__thumbnail_id','field_617570855ddaf'),(170543,40277,'hero_image_pos_x','right'),(170544,40277,'_hero_image_pos_x','field_62ec3d05390bb'),(170545,40277,'hero_image_pos_y','top'),(170546,40277,'_hero_image_pos_y','field_62ec3d05390bc'),(170547,40277,'hero_image_pos',''),(170548,40277,'_hero_image_pos','field_62ec3d05390ba'),(170549,40277,'fft_hide_from_listings','0'),(170550,40277,'_fft_hide_from_listings','field_61f1320446ab2'),(170551,40277,'fft_page_format','default'),(170552,40277,'_fft_page_format','field_61ae213f1f218'),(170553,40277,'fft_hide_nav','0'),(170554,40277,'_fft_hide_nav','field_635bd5e43527c'),(170555,40277,'fft_hide_header_call_to_action','0'),(170556,40277,'_fft_hide_header_call_to_action','field_635bd6723527d'),(170557,40277,'fft_page_sitemap','0'),(170558,40277,'_fft_page_sitemap','field_61af9b34e8181'),(170559,40277,'blocks_0_acfe_flexible_toggle',''),(170560,40277,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(170561,40277,'blocks_0_acfe_flexible_layout_title','Text Block'),(170562,40277,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(170563,40277,'blocks_0_options_theme','#f5f5f5'),(170564,40277,'_blocks_0_options_theme','field_6176830e2ad17'),(170565,40277,'blocks_0_options',''),(170566,40277,'_blocks_0_options','field_6176830e2ad16'),(170567,40277,'blocks_0_text_block_heading','Overview'),(170568,40277,'_blocks_0_text_block_heading','field_617669d413097'),(170569,40277,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(170570,40277,'_blocks_0_text_block_content','field_617669ec13098'),(170571,40277,'blocks_1_acfe_flexible_toggle',''),(170572,40277,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(170573,40277,'blocks_1_acfe_flexible_layout_title','Logos'),(170574,40277,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(170575,40277,'blocks_1_options_theme','#ffffff'),(170576,40277,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(170577,40277,'blocks_1_options_format','grid'),(170578,40277,'_blocks_1_options_format','field_61782964ee971'),(170579,40277,'blocks_1_options',''),(170580,40277,'_blocks_1_options','field_61782954ee965'),(170581,40277,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(170582,40277,'_blocks_1_logos','field_61782954ee96d'),(170583,40277,'blocks_1_title',''),(170584,40277,'_blocks_1_title','field_668fbfdc2daa1'),(170585,40277,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:18:\"testimonial_slider\";i:6;s:10:\"accordions\";}'),(170586,40277,'_blocks','field_6176696113096'),(170587,40277,'course_label_text','iMoveFreely Online CPD'),(170588,40277,'_course_label_text','field_61e17babf71fa'),(170589,40277,'course_label',''),(170590,40277,'_course_label','field_61e12f92749a7'),(170591,40277,'course_description','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(170592,40277,'_course_description','field_617ac5788e5e1'),(170593,40277,'course_key_info','3'),(170594,40277,'_course_key_info','field_617ac6ad8e5e2'),(170595,40277,'course_included','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.'),(170596,40277,'_course_included','field_617ac6f08e5e4'),(170597,40277,'_yoast_wpseo_primary_course-cat','403'),(170598,40277,'_yoast_wpseo_estimated-reading-time-minutes','1'),(170599,40616,'hide_hero','0'),(170600,40616,'_hide_hero','field_66a2380fcda39'),(170601,40616,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(170602,40616,'_hero_title','field_617571fe285e8'),(170603,40616,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(170604,40616,'_hero_text','field_6175723c285e9'),(170605,40616,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(170606,40616,'_hero_actions_0_button','field_61757281285eb'),(170607,40616,'hero_actions','1'),(170608,40616,'_hero_actions','field_61757270285ea'),(170609,40616,'hero_style','default'),(170610,40616,'_hero_style','field_62051d9dc5324'),(170611,40616,'_thumbnail_id','40615'),(170612,40616,'__thumbnail_id','field_617570855ddaf'),(170613,40616,'hero_image_pos_x','right'),(170614,40616,'_hero_image_pos_x','field_62ec3d05390bb'),(170615,40616,'hero_image_pos_y','top'),(170616,40616,'_hero_image_pos_y','field_62ec3d05390bc'),(170617,40616,'hero_image_pos',''),(170618,40616,'_hero_image_pos','field_62ec3d05390ba'),(170619,40616,'fft_hide_from_listings','0'),(170620,40616,'_fft_hide_from_listings','field_61f1320446ab2'),(170621,40616,'fft_page_format','default'),(170622,40616,'_fft_page_format','field_61ae213f1f218'),(170623,40616,'fft_hide_nav','0'),(170624,40616,'_fft_hide_nav','field_635bd5e43527c'),(170625,40616,'fft_hide_header_call_to_action','0'),(170626,40616,'_fft_hide_header_call_to_action','field_635bd6723527d'),(170627,40616,'fft_page_sitemap','0'),(170628,40616,'_fft_page_sitemap','field_61af9b34e8181'),(170629,40616,'blocks_0_acfe_flexible_toggle',''),(170630,40616,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(170631,40616,'blocks_0_acfe_flexible_layout_title','Text Block'),(170632,40616,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(170633,40616,'blocks_0_options_theme','#ffffff'),(170634,40616,'_blocks_0_options_theme','field_6176830e2ad17'),(170635,40616,'blocks_0_options',''),(170636,40616,'_blocks_0_options','field_6176830e2ad16'),(170637,40616,'blocks_0_text_block_heading','Course Overview'),(170638,40616,'_blocks_0_text_block_heading','field_617669d413097'),(170639,40616,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(170640,40616,'_blocks_0_text_block_content','field_617669ec13098'),(170641,40616,'blocks_1_acfe_flexible_toggle',''),(170642,40616,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(170643,40616,'blocks_1_acfe_flexible_layout_title','Logos'),(170644,40616,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(170645,40616,'blocks_1_options_theme','#ffffff'),(170646,40616,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(170647,40616,'blocks_1_options_format','grid'),(170648,40616,'_blocks_1_options_format','field_61782964ee971'),(170649,40616,'blocks_1_options',''),(170650,40616,'_blocks_1_options','field_61782954ee965'),(170651,40616,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(170652,40616,'_blocks_1_logos','field_61782954ee96d'),(170653,40616,'blocks_1_title',''),(170654,40616,'_blocks_1_title','field_668fbfdc2daa1'),(170655,40616,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";}'),(170656,40616,'_blocks','field_6176696113096'),(170657,40616,'course_label_text',''),(170658,40616,'_course_label_text','field_61e17babf71fa'),(170659,40616,'course_label',''),(170660,40616,'_course_label','field_61e12f92749a7'),(170661,40616,'course_description',''),(170662,40616,'_course_description','field_617ac5788e5e1'),(170663,40616,'course_key_info',''),(170664,40616,'_course_key_info','field_617ac6ad8e5e2'),(170665,40616,'course_included',''),(170666,40616,'_course_included','field_617ac6f08e5e4'),(170735,40618,'_wp_attached_file','2024/09/Imovefreely-50.50-image.jpg'),(170736,40618,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2388;s:6:\"height\";i:1592;s:4:\"file\";s:35:\"2024/09/Imovefreely-50.50-image.jpg\";s:8:\"filesize\";i:260383;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Imovefreely-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65569;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"Imovefreely-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100311;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Imovefreely-50.50-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20446;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Imovefreely-50.50-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51807;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"Imovefreely-50.50-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146193;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"Imovefreely-50.50-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228243;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"Imovefreely-50.50-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27777;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"Imovefreely-50.50-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93337;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"Imovefreely-50.50-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141984;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"Imovefreely-50.50-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20473;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"Imovefreely-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65569;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"Imovefreely-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100311;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"Imovefreely-50.50-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21643;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"Imovefreely-50.50-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70920;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"Imovefreely-50.50-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108210;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"Imovefreely-50.50-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22362;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"Imovefreely-50.50-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72844;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"Imovefreely-50.50-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111634;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"Imovefreely-50.50-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17408;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"Imovefreely-50.50-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55660;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"Imovefreely-50.50-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85153;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(170737,40277,'blocks_2_acfe_flexible_toggle',''),(170738,40277,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(170739,40277,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(170740,40277,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(170741,40277,'blocks_2_options_theme','#b61234'),(170742,40277,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(170743,40277,'blocks_2_options_reverse','0'),(170744,40277,'_blocks_2_options_reverse','field_61768049bb8ac'),(170745,40277,'blocks_2_options',''),(170746,40277,'_blocks_2_options','field_617682517c334'),(170747,40277,'blocks_2_split_5050_image','40618'),(170748,40277,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(170749,40277,'blocks_2_split_5050_video',''),(170750,40277,'_blocks_2_split_5050_video','field_6239f3160848a'),(170751,40277,'blocks_2_split_5050_content_title',''),(170752,40277,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(170753,40277,'blocks_2_split_5050_content_heading','Course Overview'),(170754,40277,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(170755,40277,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.\r\n\r\nInstructors through Continuing Professional Development (CPD). To obtain your iMoveFreely Instructor certificate, face-to-face attendance is required.\r\n\r\nUpon payment, access the recorded workshop and instantly download the comprehensive handout PDF. For future access, simply log in using your registered email.'),(170756,40277,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(170757,40277,'blocks_2_split_5050_content_actions','1'),(170758,40277,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(170759,40277,'blocks_2_split_5050_content',''),(170760,40277,'_blocks_2_split_5050_content','field_61767afceb8ba'),(170761,40619,'hide_hero','0'),(170762,40619,'_hide_hero','field_66a2380fcda39'),(170763,40619,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(170764,40619,'_hero_title','field_617571fe285e8'),(170765,40619,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(170766,40619,'_hero_text','field_6175723c285e9'),(170767,40619,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(170768,40619,'_hero_actions_0_button','field_61757281285eb'),(170769,40619,'hero_actions','1'),(170770,40619,'_hero_actions','field_61757270285ea'),(170771,40619,'hero_style','default'),(170772,40619,'_hero_style','field_62051d9dc5324'),(170773,40619,'_thumbnail_id','40615'),(170774,40619,'__thumbnail_id','field_617570855ddaf'),(170775,40619,'hero_image_pos_x','right'),(170776,40619,'_hero_image_pos_x','field_62ec3d05390bb'),(170777,40619,'hero_image_pos_y','top'),(170778,40619,'_hero_image_pos_y','field_62ec3d05390bc'),(170779,40619,'hero_image_pos',''),(170780,40619,'_hero_image_pos','field_62ec3d05390ba'),(170781,40619,'fft_hide_from_listings','0'),(170782,40619,'_fft_hide_from_listings','field_61f1320446ab2'),(170783,40619,'fft_page_format','default'),(170784,40619,'_fft_page_format','field_61ae213f1f218'),(170785,40619,'fft_hide_nav','0'),(170786,40619,'_fft_hide_nav','field_635bd5e43527c'),(170787,40619,'fft_hide_header_call_to_action','0'),(170788,40619,'_fft_hide_header_call_to_action','field_635bd6723527d'),(170789,40619,'fft_page_sitemap','0'),(170790,40619,'_fft_page_sitemap','field_61af9b34e8181'),(170791,40619,'blocks_0_acfe_flexible_toggle',''),(170792,40619,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(170793,40619,'blocks_0_acfe_flexible_layout_title','Text Block'),(170794,40619,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(170795,40619,'blocks_0_options_theme','#ffffff'),(170796,40619,'_blocks_0_options_theme','field_6176830e2ad17'),(170797,40619,'blocks_0_options',''),(170798,40619,'_blocks_0_options','field_6176830e2ad16'),(170799,40619,'blocks_0_text_block_heading','Overview'),(170800,40619,'_blocks_0_text_block_heading','field_617669d413097'),(170801,40619,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(170802,40619,'_blocks_0_text_block_content','field_617669ec13098'),(170803,40619,'blocks_1_acfe_flexible_toggle',''),(170804,40619,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(170805,40619,'blocks_1_acfe_flexible_layout_title','Logos'),(170806,40619,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(170807,40619,'blocks_1_options_theme','#ffffff'),(170808,40619,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(170809,40619,'blocks_1_options_format','grid'),(170810,40619,'_blocks_1_options_format','field_61782964ee971'),(170811,40619,'blocks_1_options',''),(170812,40619,'_blocks_1_options','field_61782954ee965'),(170813,40619,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(170814,40619,'_blocks_1_logos','field_61782954ee96d'),(170815,40619,'blocks_1_title',''),(170816,40619,'_blocks_1_title','field_668fbfdc2daa1'),(170817,40619,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";}'),(170818,40619,'_blocks','field_6176696113096'),(170819,40619,'course_label_text',''),(170820,40619,'_course_label_text','field_61e17babf71fa'),(170821,40619,'course_label',''),(170822,40619,'_course_label','field_61e12f92749a7'),(170823,40619,'course_description',''),(170824,40619,'_course_description','field_617ac5788e5e1'),(170825,40619,'course_key_info',''),(170826,40619,'_course_key_info','field_617ac6ad8e5e2'),(170827,40619,'course_included',''),(170828,40619,'_course_included','field_617ac6f08e5e4'),(170829,40619,'blocks_2_acfe_flexible_toggle',''),(170830,40619,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(170831,40619,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(170832,40619,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(170833,40619,'blocks_2_options_theme','#ffffff'),(170834,40619,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(170835,40619,'blocks_2_options_reverse','0'),(170836,40619,'_blocks_2_options_reverse','field_61768049bb8ac'),(170837,40619,'blocks_2_options',''),(170838,40619,'_blocks_2_options','field_617682517c334'),(170839,40619,'blocks_2_split_5050_image','40618'),(170840,40619,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(170841,40619,'blocks_2_split_5050_video',''),(170842,40619,'_blocks_2_split_5050_video','field_6239f3160848a'),(170843,40619,'blocks_2_split_5050_content_title',''),(170844,40619,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(170845,40619,'blocks_2_split_5050_content_heading','Course Overview'),(170846,40619,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(170847,40619,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.'),(170848,40619,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(170849,40619,'blocks_2_split_5050_content_actions',''),(170850,40619,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(170851,40619,'blocks_2_split_5050_content',''),(170852,40619,'_blocks_2_split_5050_content','field_61767afceb8ba'),(170853,40277,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(170854,40277,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(170855,40620,'hide_hero','0'),(170856,40620,'_hide_hero','field_66a2380fcda39'),(170857,40620,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(170858,40620,'_hero_title','field_617571fe285e8'),(170859,40620,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(170860,40620,'_hero_text','field_6175723c285e9'),(170861,40620,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(170862,40620,'_hero_actions_0_button','field_61757281285eb'),(170863,40620,'hero_actions','1'),(170864,40620,'_hero_actions','field_61757270285ea'),(170865,40620,'hero_style','default'),(170866,40620,'_hero_style','field_62051d9dc5324'),(170867,40620,'_thumbnail_id','40615'),(170868,40620,'__thumbnail_id','field_617570855ddaf'),(170869,40620,'hero_image_pos_x','right'),(170870,40620,'_hero_image_pos_x','field_62ec3d05390bb'),(170871,40620,'hero_image_pos_y','top'),(170872,40620,'_hero_image_pos_y','field_62ec3d05390bc'),(170873,40620,'hero_image_pos',''),(170874,40620,'_hero_image_pos','field_62ec3d05390ba'),(170875,40620,'fft_hide_from_listings','0'),(170876,40620,'_fft_hide_from_listings','field_61f1320446ab2'),(170877,40620,'fft_page_format','default'),(170878,40620,'_fft_page_format','field_61ae213f1f218'),(170879,40620,'fft_hide_nav','0'),(170880,40620,'_fft_hide_nav','field_635bd5e43527c'),(170881,40620,'fft_hide_header_call_to_action','0'),(170882,40620,'_fft_hide_header_call_to_action','field_635bd6723527d'),(170883,40620,'fft_page_sitemap','0'),(170884,40620,'_fft_page_sitemap','field_61af9b34e8181'),(170885,40620,'blocks_0_acfe_flexible_toggle',''),(170886,40620,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(170887,40620,'blocks_0_acfe_flexible_layout_title','Text Block'),(170888,40620,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(170889,40620,'blocks_0_options_theme','#ffffff'),(170890,40620,'_blocks_0_options_theme','field_6176830e2ad17'),(170891,40620,'blocks_0_options',''),(170892,40620,'_blocks_0_options','field_6176830e2ad16'),(170893,40620,'blocks_0_text_block_heading','Overview'),(170894,40620,'_blocks_0_text_block_heading','field_617669d413097'),(170895,40620,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(170896,40620,'_blocks_0_text_block_content','field_617669ec13098'),(170897,40620,'blocks_1_acfe_flexible_toggle',''),(170898,40620,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(170899,40620,'blocks_1_acfe_flexible_layout_title','Logos'),(170900,40620,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(170901,40620,'blocks_1_options_theme','#ffffff'),(170902,40620,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(170903,40620,'blocks_1_options_format','grid'),(170904,40620,'_blocks_1_options_format','field_61782964ee971'),(170905,40620,'blocks_1_options',''),(170906,40620,'_blocks_1_options','field_61782954ee965'),(170907,40620,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(170908,40620,'_blocks_1_logos','field_61782954ee96d'),(170909,40620,'blocks_1_title',''),(170910,40620,'_blocks_1_title','field_668fbfdc2daa1'),(170911,40620,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";}'),(170912,40620,'_blocks','field_6176696113096'),(170913,40620,'course_label_text',''),(170914,40620,'_course_label_text','field_61e17babf71fa'),(170915,40620,'course_label',''),(170916,40620,'_course_label','field_61e12f92749a7'),(170917,40620,'course_description',''),(170918,40620,'_course_description','field_617ac5788e5e1'),(170919,40620,'course_key_info',''),(170920,40620,'_course_key_info','field_617ac6ad8e5e2'),(170921,40620,'course_included',''),(170922,40620,'_course_included','field_617ac6f08e5e4'),(170923,40620,'blocks_2_acfe_flexible_toggle',''),(170924,40620,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(170925,40620,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(170926,40620,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(170927,40620,'blocks_2_options_theme','#ffffff'),(170928,40620,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(170929,40620,'blocks_2_options_reverse','0'),(170930,40620,'_blocks_2_options_reverse','field_61768049bb8ac'),(170931,40620,'blocks_2_options',''),(170932,40620,'_blocks_2_options','field_617682517c334'),(170933,40620,'blocks_2_split_5050_image','40618'),(170934,40620,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(170935,40620,'blocks_2_split_5050_video',''),(170936,40620,'_blocks_2_split_5050_video','field_6239f3160848a'),(170937,40620,'blocks_2_split_5050_content_title',''),(170938,40620,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(170939,40620,'blocks_2_split_5050_content_heading','Course Overview'),(170940,40620,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(170941,40620,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.\r\n\r\nInstructors through Continuing Professional Development (CPD). To obtain your iMoveFreely Instructor certificate, face-to-face attendance is required.\r\n\r\nUpon payment, access the recorded workshop and instantly download the comprehensive handout PDF. For future access, simply log in using your registered email.'),(170942,40620,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(170943,40620,'blocks_2_split_5050_content_actions','1'),(170944,40620,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(170945,40620,'blocks_2_split_5050_content',''),(170946,40620,'_blocks_2_split_5050_content','field_61767afceb8ba'),(170947,40620,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(170948,40620,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(170949,40277,'blocks_3_acfe_flexible_toggle',''),(170950,40277,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(170951,40277,'blocks_3_acfe_flexible_layout_title','Text Block'),(170952,40277,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(170953,40277,'blocks_3_options_theme','#ffffff'),(170954,40277,'_blocks_3_options_theme','field_6176830e2ad17'),(170955,40277,'blocks_3_options',''),(170956,40277,'_blocks_3_options','field_6176830e2ad16'),(170957,40277,'blocks_3_text_block_heading','Other Courses'),(170958,40277,'_blocks_3_text_block_heading','field_617669d413097'),(170959,40277,'blocks_3_text_block_content','Check out a range of other courses that are frequently purchased'),(170960,40277,'_blocks_3_text_block_content','field_617669ec13098'),(170961,40277,'blocks_4_acfe_flexible_toggle',''),(170962,40277,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(170963,40277,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(170964,40277,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(170965,40277,'blocks_4_options_theme','#ffffff'),(170966,40277,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(170967,40277,'blocks_4_options',''),(170968,40277,'_blocks_4_options','field_617ac0b7f6c08'),(170969,40277,'blocks_4_show','category'),(170970,40277,'_blocks_4_show','field_61a49cba9d946'),(170971,40277,'blocks_4_category','403'),(170972,40277,'_blocks_4_category','field_61a49cd79d947'),(170973,40621,'hide_hero','0'),(170974,40621,'_hide_hero','field_66a2380fcda39'),(170975,40621,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(170976,40621,'_hero_title','field_617571fe285e8'),(170977,40621,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(170978,40621,'_hero_text','field_6175723c285e9'),(170979,40621,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(170980,40621,'_hero_actions_0_button','field_61757281285eb'),(170981,40621,'hero_actions','1'),(170982,40621,'_hero_actions','field_61757270285ea'),(170983,40621,'hero_style','default'),(170984,40621,'_hero_style','field_62051d9dc5324'),(170985,40621,'_thumbnail_id','40615'),(170986,40621,'__thumbnail_id','field_617570855ddaf'),(170987,40621,'hero_image_pos_x','right'),(170988,40621,'_hero_image_pos_x','field_62ec3d05390bb'),(170989,40621,'hero_image_pos_y','top'),(170990,40621,'_hero_image_pos_y','field_62ec3d05390bc'),(170991,40621,'hero_image_pos',''),(170992,40621,'_hero_image_pos','field_62ec3d05390ba'),(170993,40621,'fft_hide_from_listings','0'),(170994,40621,'_fft_hide_from_listings','field_61f1320446ab2'),(170995,40621,'fft_page_format','default'),(170996,40621,'_fft_page_format','field_61ae213f1f218'),(170997,40621,'fft_hide_nav','0'),(170998,40621,'_fft_hide_nav','field_635bd5e43527c'),(170999,40621,'fft_hide_header_call_to_action','0'),(171000,40621,'_fft_hide_header_call_to_action','field_635bd6723527d'),(171001,40621,'fft_page_sitemap','0'),(171002,40621,'_fft_page_sitemap','field_61af9b34e8181'),(171003,40621,'blocks_0_acfe_flexible_toggle',''),(171004,40621,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(171005,40621,'blocks_0_acfe_flexible_layout_title','Text Block'),(171006,40621,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(171007,40621,'blocks_0_options_theme','#ffffff'),(171008,40621,'_blocks_0_options_theme','field_6176830e2ad17'),(171009,40621,'blocks_0_options',''),(171010,40621,'_blocks_0_options','field_6176830e2ad16'),(171011,40621,'blocks_0_text_block_heading','Overview'),(171012,40621,'_blocks_0_text_block_heading','field_617669d413097'),(171013,40621,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(171014,40621,'_blocks_0_text_block_content','field_617669ec13098'),(171015,40621,'blocks_1_acfe_flexible_toggle',''),(171016,40621,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(171017,40621,'blocks_1_acfe_flexible_layout_title','Logos'),(171018,40621,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(171019,40621,'blocks_1_options_theme','#ffffff'),(171020,40621,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(171021,40621,'blocks_1_options_format','grid'),(171022,40621,'_blocks_1_options_format','field_61782964ee971'),(171023,40621,'blocks_1_options',''),(171024,40621,'_blocks_1_options','field_61782954ee965'),(171025,40621,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(171026,40621,'_blocks_1_logos','field_61782954ee96d'),(171027,40621,'blocks_1_title',''),(171028,40621,'_blocks_1_title','field_668fbfdc2daa1'),(171029,40621,'blocks','a:5:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";}'),(171030,40621,'_blocks','field_6176696113096'),(171031,40621,'course_label_text',''),(171032,40621,'_course_label_text','field_61e17babf71fa'),(171033,40621,'course_label',''),(171034,40621,'_course_label','field_61e12f92749a7'),(171035,40621,'course_description',''),(171036,40621,'_course_description','field_617ac5788e5e1'),(171037,40621,'course_key_info',''),(171038,40621,'_course_key_info','field_617ac6ad8e5e2'),(171039,40621,'course_included',''),(171040,40621,'_course_included','field_617ac6f08e5e4'),(171041,40621,'blocks_2_acfe_flexible_toggle',''),(171042,40621,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(171043,40621,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(171044,40621,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(171045,40621,'blocks_2_options_theme','#f5f5f5'),(171046,40621,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(171047,40621,'blocks_2_options_reverse','0'),(171048,40621,'_blocks_2_options_reverse','field_61768049bb8ac'),(171049,40621,'blocks_2_options',''),(171050,40621,'_blocks_2_options','field_617682517c334'),(171051,40621,'blocks_2_split_5050_image','40618'),(171052,40621,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(171053,40621,'blocks_2_split_5050_video',''),(171054,40621,'_blocks_2_split_5050_video','field_6239f3160848a'),(171055,40621,'blocks_2_split_5050_content_title',''),(171056,40621,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(171057,40621,'blocks_2_split_5050_content_heading','Course Overview'),(171058,40621,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(171059,40621,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.\r\n\r\nInstructors through Continuing Professional Development (CPD). To obtain your iMoveFreely Instructor certificate, face-to-face attendance is required.\r\n\r\nUpon payment, access the recorded workshop and instantly download the comprehensive handout PDF. For future access, simply log in using your registered email.'),(171060,40621,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(171061,40621,'blocks_2_split_5050_content_actions','1'),(171062,40621,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(171063,40621,'blocks_2_split_5050_content',''),(171064,40621,'_blocks_2_split_5050_content','field_61767afceb8ba'),(171065,40621,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(171066,40621,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(171067,40621,'blocks_3_acfe_flexible_toggle',''),(171068,40621,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(171069,40621,'blocks_3_acfe_flexible_layout_title','Text Block'),(171070,40621,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(171071,40621,'blocks_3_options_theme','#ffffff'),(171072,40621,'_blocks_3_options_theme','field_6176830e2ad17'),(171073,40621,'blocks_3_options',''),(171074,40621,'_blocks_3_options','field_6176830e2ad16'),(171075,40621,'blocks_3_text_block_heading','Other Courses'),(171076,40621,'_blocks_3_text_block_heading','field_617669d413097'),(171077,40621,'blocks_3_text_block_content','Check out a range of other courses that are frequently purchased'),(171078,40621,'_blocks_3_text_block_content','field_617669ec13098'),(171079,40621,'blocks_4_acfe_flexible_toggle',''),(171080,40621,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(171081,40621,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(171082,40621,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(171083,40621,'blocks_4_options_theme','#ffffff'),(171084,40621,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(171085,40621,'blocks_4_options',''),(171086,40621,'_blocks_4_options','field_617ac0b7f6c08'),(171087,40621,'blocks_4_show','category'),(171088,40621,'_blocks_4_show','field_61a49cba9d946'),(171089,40621,'blocks_4_category','403'),(171090,40621,'_blocks_4_category','field_61a49cd79d947'),(171091,40277,'blocks_5_acfe_flexible_toggle',''),(171092,40277,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(171093,40277,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(171094,40277,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(171095,40277,'blocks_5_testimonial_slider_content_title',''),(171096,40277,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(171097,40277,'blocks_5_testimonial_slider_content_heading','Testimonials'),(171098,40277,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(171099,40277,'blocks_5_testimonial_slider_content_text',''),(171100,40277,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(171101,40277,'blocks_5_testimonial_slider_content_actions',''),(171102,40277,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(171103,40277,'blocks_5_testimonial_slider_content',''),(171104,40277,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(171105,40277,'blocks_5_testimonial_slider_items',''),(171106,40277,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(171107,40277,'blocks_5_testimonial_slider_ambassador_bool','0'),(171108,40277,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(171109,40277,'blocks_6_acfe_flexible_toggle',''),(171110,40277,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(171111,40277,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(171112,40277,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(171113,40277,'blocks_6_options_theme','#ffffff'),(171114,40277,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(171115,40277,'blocks_6_options_state','0'),(171116,40277,'_blocks_6_options_state','field_6239fcb7508c5'),(171117,40277,'blocks_6_options',''),(171118,40277,'_blocks_6_options','field_6177e2991ac44'),(171119,40277,'blocks_6_content_title',''),(171120,40277,'_blocks_6_content_title','field_64d237e8bb1e2'),(171121,40277,'blocks_6_content_heading',''),(171122,40277,'_blocks_6_content_heading','field_64d237e8bb1e3'),(171123,40277,'blocks_6_content_text',''),(171124,40277,'_blocks_6_content_text','field_64d237e8bb1e4'),(171125,40277,'blocks_6_content_actions',''),(171126,40277,'_blocks_6_content_actions','field_64d237e8bb1e5'),(171127,40277,'blocks_6_content_align','left'),(171128,40277,'_blocks_6_content_align','field_64d2443e6b6aa'),(171129,40277,'blocks_6_content',''),(171130,40277,'_blocks_6_content','field_64d237e8bb1e1'),(171131,40277,'blocks_6_accordion_content','custom'),(171132,40277,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(171133,40277,'blocks_6_accordion_items',''),(171134,40277,'_blocks_6_accordion_items','field_6177e2991ac4c'),(171135,40277,'blocks_6_actions',''),(171136,40277,'_blocks_6_actions','field_61a746a817f7a'),(171137,40622,'hide_hero','0'),(171138,40622,'_hide_hero','field_66a2380fcda39'),(171139,40622,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(171140,40622,'_hero_title','field_617571fe285e8'),(171141,40622,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(171142,40622,'_hero_text','field_6175723c285e9'),(171143,40622,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(171144,40622,'_hero_actions_0_button','field_61757281285eb'),(171145,40622,'hero_actions','1'),(171146,40622,'_hero_actions','field_61757270285ea'),(171147,40622,'hero_style','default'),(171148,40622,'_hero_style','field_62051d9dc5324'),(171149,40622,'_thumbnail_id','40615'),(171150,40622,'__thumbnail_id','field_617570855ddaf'),(171151,40622,'hero_image_pos_x','right'),(171152,40622,'_hero_image_pos_x','field_62ec3d05390bb'),(171153,40622,'hero_image_pos_y','top'),(171154,40622,'_hero_image_pos_y','field_62ec3d05390bc'),(171155,40622,'hero_image_pos',''),(171156,40622,'_hero_image_pos','field_62ec3d05390ba'),(171157,40622,'fft_hide_from_listings','0'),(171158,40622,'_fft_hide_from_listings','field_61f1320446ab2'),(171159,40622,'fft_page_format','default'),(171160,40622,'_fft_page_format','field_61ae213f1f218'),(171161,40622,'fft_hide_nav','0'),(171162,40622,'_fft_hide_nav','field_635bd5e43527c'),(171163,40622,'fft_hide_header_call_to_action','0'),(171164,40622,'_fft_hide_header_call_to_action','field_635bd6723527d'),(171165,40622,'fft_page_sitemap','0'),(171166,40622,'_fft_page_sitemap','field_61af9b34e8181'),(171167,40622,'blocks_0_acfe_flexible_toggle',''),(171168,40622,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(171169,40622,'blocks_0_acfe_flexible_layout_title','Text Block'),(171170,40622,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(171171,40622,'blocks_0_options_theme','#ffffff'),(171172,40622,'_blocks_0_options_theme','field_6176830e2ad17'),(171173,40622,'blocks_0_options',''),(171174,40622,'_blocks_0_options','field_6176830e2ad16'),(171175,40622,'blocks_0_text_block_heading','Overview'),(171176,40622,'_blocks_0_text_block_heading','field_617669d413097'),(171177,40622,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(171178,40622,'_blocks_0_text_block_content','field_617669ec13098'),(171179,40622,'blocks_1_acfe_flexible_toggle',''),(171180,40622,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(171181,40622,'blocks_1_acfe_flexible_layout_title','Logos'),(171182,40622,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(171183,40622,'blocks_1_options_theme','#ffffff'),(171184,40622,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(171185,40622,'blocks_1_options_format','grid'),(171186,40622,'_blocks_1_options_format','field_61782964ee971'),(171187,40622,'blocks_1_options',''),(171188,40622,'_blocks_1_options','field_61782954ee965'),(171189,40622,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(171190,40622,'_blocks_1_logos','field_61782954ee96d'),(171191,40622,'blocks_1_title',''),(171192,40622,'_blocks_1_title','field_668fbfdc2daa1'),(171193,40622,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:18:\"testimonial_slider\";i:6;s:10:\"accordions\";}'),(171194,40622,'_blocks','field_6176696113096'),(171195,40622,'course_label_text',''),(171196,40622,'_course_label_text','field_61e17babf71fa'),(171197,40622,'course_label',''),(171198,40622,'_course_label','field_61e12f92749a7'),(171199,40622,'course_description',''),(171200,40622,'_course_description','field_617ac5788e5e1'),(171201,40622,'course_key_info',''),(171202,40622,'_course_key_info','field_617ac6ad8e5e2'),(171203,40622,'course_included',''),(171204,40622,'_course_included','field_617ac6f08e5e4'),(171205,40622,'blocks_2_acfe_flexible_toggle',''),(171206,40622,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(171207,40622,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(171208,40622,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(171209,40622,'blocks_2_options_theme','#f5f5f5'),(171210,40622,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(171211,40622,'blocks_2_options_reverse','0'),(171212,40622,'_blocks_2_options_reverse','field_61768049bb8ac'),(171213,40622,'blocks_2_options',''),(171214,40622,'_blocks_2_options','field_617682517c334'),(171215,40622,'blocks_2_split_5050_image','40618'),(171216,40622,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(171217,40622,'blocks_2_split_5050_video',''),(171218,40622,'_blocks_2_split_5050_video','field_6239f3160848a'),(171219,40622,'blocks_2_split_5050_content_title',''),(171220,40622,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(171221,40622,'blocks_2_split_5050_content_heading','Course Overview'),(171222,40622,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(171223,40622,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.\r\n\r\nInstructors through Continuing Professional Development (CPD). To obtain your iMoveFreely Instructor certificate, face-to-face attendance is required.\r\n\r\nUpon payment, access the recorded workshop and instantly download the comprehensive handout PDF. For future access, simply log in using your registered email.'),(171224,40622,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(171225,40622,'blocks_2_split_5050_content_actions','1'),(171226,40622,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(171227,40622,'blocks_2_split_5050_content',''),(171228,40622,'_blocks_2_split_5050_content','field_61767afceb8ba'),(171229,40622,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(171230,40622,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(171231,40622,'blocks_3_acfe_flexible_toggle',''),(171232,40622,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(171233,40622,'blocks_3_acfe_flexible_layout_title','Text Block'),(171234,40622,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(171235,40622,'blocks_3_options_theme','#ffffff'),(171236,40622,'_blocks_3_options_theme','field_6176830e2ad17'),(171237,40622,'blocks_3_options',''),(171238,40622,'_blocks_3_options','field_6176830e2ad16'),(171239,40622,'blocks_3_text_block_heading','Other Courses'),(171240,40622,'_blocks_3_text_block_heading','field_617669d413097'),(171241,40622,'blocks_3_text_block_content','Check out a range of other courses that are frequently purchased'),(171242,40622,'_blocks_3_text_block_content','field_617669ec13098'),(171243,40622,'blocks_4_acfe_flexible_toggle',''),(171244,40622,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(171245,40622,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(171246,40622,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(171247,40622,'blocks_4_options_theme','#ffffff'),(171248,40622,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(171249,40622,'blocks_4_options',''),(171250,40622,'_blocks_4_options','field_617ac0b7f6c08'),(171251,40622,'blocks_4_show','category'),(171252,40622,'_blocks_4_show','field_61a49cba9d946'),(171253,40622,'blocks_4_category','403'),(171254,40622,'_blocks_4_category','field_61a49cd79d947'),(171255,40622,'blocks_5_acfe_flexible_toggle',''),(171256,40622,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(171257,40622,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(171258,40622,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(171259,40622,'blocks_5_testimonial_slider_content_title',''),(171260,40622,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(171261,40622,'blocks_5_testimonial_slider_content_heading','Testimonials'),(171262,40622,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(171263,40622,'blocks_5_testimonial_slider_content_text',''),(171264,40622,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(171265,40622,'blocks_5_testimonial_slider_content_actions',''),(171266,40622,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(171267,40622,'blocks_5_testimonial_slider_content',''),(171268,40622,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(171269,40622,'blocks_5_testimonial_slider_items',''),(171270,40622,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(171271,40622,'blocks_5_testimonial_slider_ambassador_bool','0'),(171272,40622,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(171273,40622,'blocks_6_acfe_flexible_toggle',''),(171274,40622,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(171275,40622,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(171276,40622,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(171277,40622,'blocks_6_options_theme','#ffffff'),(171278,40622,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(171279,40622,'blocks_6_options_state','0'),(171280,40622,'_blocks_6_options_state','field_6239fcb7508c5'),(171281,40622,'blocks_6_options',''),(171282,40622,'_blocks_6_options','field_6177e2991ac44'),(171283,40622,'blocks_6_content_title',''),(171284,40622,'_blocks_6_content_title','field_64d237e8bb1e2'),(171285,40622,'blocks_6_content_heading',''),(171286,40622,'_blocks_6_content_heading','field_64d237e8bb1e3'),(171287,40622,'blocks_6_content_text',''),(171288,40622,'_blocks_6_content_text','field_64d237e8bb1e4'),(171289,40622,'blocks_6_content_actions',''),(171290,40622,'_blocks_6_content_actions','field_64d237e8bb1e5'),(171291,40622,'blocks_6_content_align','left'),(171292,40622,'_blocks_6_content_align','field_64d2443e6b6aa'),(171293,40622,'blocks_6_content',''),(171294,40622,'_blocks_6_content','field_64d237e8bb1e1'),(171295,40622,'blocks_6_accordion_content','custom'),(171296,40622,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(171297,40622,'blocks_6_accordion_items',''),(171298,40622,'_blocks_6_accordion_items','field_6177e2991ac4c'),(171299,40622,'blocks_6_actions',''),(171300,40622,'_blocks_6_actions','field_61a746a817f7a'),(171301,40623,'hide_hero','0'),(171302,40623,'_hide_hero','field_66a2380fcda39'),(171303,40623,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(171304,40623,'_hero_title','field_617571fe285e8'),(171305,40623,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(171306,40623,'_hero_text','field_6175723c285e9'),(171307,40623,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(171308,40623,'_hero_actions_0_button','field_61757281285eb'),(171309,40623,'hero_actions','1'),(171310,40623,'_hero_actions','field_61757270285ea'),(171311,40623,'hero_style','default'),(171312,40623,'_hero_style','field_62051d9dc5324'),(171313,40623,'_thumbnail_id','40615'),(171314,40623,'__thumbnail_id','field_617570855ddaf'),(171315,40623,'hero_image_pos_x','right'),(171316,40623,'_hero_image_pos_x','field_62ec3d05390bb'),(171317,40623,'hero_image_pos_y','top'),(171318,40623,'_hero_image_pos_y','field_62ec3d05390bc'),(171319,40623,'hero_image_pos',''),(171320,40623,'_hero_image_pos','field_62ec3d05390ba'),(171321,40623,'fft_hide_from_listings','0'),(171322,40623,'_fft_hide_from_listings','field_61f1320446ab2'),(171323,40623,'fft_page_format','default'),(171324,40623,'_fft_page_format','field_61ae213f1f218'),(171325,40623,'fft_hide_nav','0'),(171326,40623,'_fft_hide_nav','field_635bd5e43527c'),(171327,40623,'fft_hide_header_call_to_action','0'),(171328,40623,'_fft_hide_header_call_to_action','field_635bd6723527d'),(171329,40623,'fft_page_sitemap','0'),(171330,40623,'_fft_page_sitemap','field_61af9b34e8181'),(171331,40623,'blocks_0_acfe_flexible_toggle',''),(171332,40623,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(171333,40623,'blocks_0_acfe_flexible_layout_title','Text Block'),(171334,40623,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(171335,40623,'blocks_0_options_theme','#ffffff'),(171336,40623,'_blocks_0_options_theme','field_6176830e2ad17'),(171337,40623,'blocks_0_options',''),(171338,40623,'_blocks_0_options','field_6176830e2ad16'),(171339,40623,'blocks_0_text_block_heading','Overview'),(171340,40623,'_blocks_0_text_block_heading','field_617669d413097'),(171341,40623,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(171342,40623,'_blocks_0_text_block_content','field_617669ec13098'),(171343,40623,'blocks_1_acfe_flexible_toggle',''),(171344,40623,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(171345,40623,'blocks_1_acfe_flexible_layout_title','Logos'),(171346,40623,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(171347,40623,'blocks_1_options_theme','#f5f5f5'),(171348,40623,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(171349,40623,'blocks_1_options_format','grid'),(171350,40623,'_blocks_1_options_format','field_61782964ee971'),(171351,40623,'blocks_1_options',''),(171352,40623,'_blocks_1_options','field_61782954ee965'),(171353,40623,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(171354,40623,'_blocks_1_logos','field_61782954ee96d'),(171355,40623,'blocks_1_title',''),(171356,40623,'_blocks_1_title','field_668fbfdc2daa1'),(171357,40623,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:18:\"testimonial_slider\";i:6;s:10:\"accordions\";}'),(171358,40623,'_blocks','field_6176696113096'),(171359,40623,'course_label_text',''),(171360,40623,'_course_label_text','field_61e17babf71fa'),(171361,40623,'course_label',''),(171362,40623,'_course_label','field_61e12f92749a7'),(171363,40623,'course_description',''),(171364,40623,'_course_description','field_617ac5788e5e1'),(171365,40623,'course_key_info',''),(171366,40623,'_course_key_info','field_617ac6ad8e5e2'),(171367,40623,'course_included',''),(171368,40623,'_course_included','field_617ac6f08e5e4'),(171369,40623,'blocks_2_acfe_flexible_toggle',''),(171370,40623,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(171371,40623,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(171372,40623,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(171373,40623,'blocks_2_options_theme','#ffffff'),(171374,40623,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(171375,40623,'blocks_2_options_reverse','0'),(171376,40623,'_blocks_2_options_reverse','field_61768049bb8ac'),(171377,40623,'blocks_2_options',''),(171378,40623,'_blocks_2_options','field_617682517c334'),(171379,40623,'blocks_2_split_5050_image','40618'),(171380,40623,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(171381,40623,'blocks_2_split_5050_video',''),(171382,40623,'_blocks_2_split_5050_video','field_6239f3160848a'),(171383,40623,'blocks_2_split_5050_content_title',''),(171384,40623,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(171385,40623,'blocks_2_split_5050_content_heading','Course Overview'),(171386,40623,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(171387,40623,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.\r\n\r\nInstructors through Continuing Professional Development (CPD). To obtain your iMoveFreely Instructor certificate, face-to-face attendance is required.\r\n\r\nUpon payment, access the recorded workshop and instantly download the comprehensive handout PDF. For future access, simply log in using your registered email.'),(171388,40623,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(171389,40623,'blocks_2_split_5050_content_actions','1'),(171390,40623,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(171391,40623,'blocks_2_split_5050_content',''),(171392,40623,'_blocks_2_split_5050_content','field_61767afceb8ba'),(171393,40623,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(171394,40623,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(171395,40623,'blocks_3_acfe_flexible_toggle',''),(171396,40623,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(171397,40623,'blocks_3_acfe_flexible_layout_title','Text Block'),(171398,40623,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(171399,40623,'blocks_3_options_theme','#ffffff'),(171400,40623,'_blocks_3_options_theme','field_6176830e2ad17'),(171401,40623,'blocks_3_options',''),(171402,40623,'_blocks_3_options','field_6176830e2ad16'),(171403,40623,'blocks_3_text_block_heading','Other Courses'),(171404,40623,'_blocks_3_text_block_heading','field_617669d413097'),(171405,40623,'blocks_3_text_block_content','Check out a range of other courses that are frequently purchased'),(171406,40623,'_blocks_3_text_block_content','field_617669ec13098'),(171407,40623,'blocks_4_acfe_flexible_toggle',''),(171408,40623,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(171409,40623,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(171410,40623,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(171411,40623,'blocks_4_options_theme','#ffffff'),(171412,40623,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(171413,40623,'blocks_4_options',''),(171414,40623,'_blocks_4_options','field_617ac0b7f6c08'),(171415,40623,'blocks_4_show','category'),(171416,40623,'_blocks_4_show','field_61a49cba9d946'),(171417,40623,'blocks_4_category','403'),(171418,40623,'_blocks_4_category','field_61a49cd79d947'),(171419,40623,'blocks_5_acfe_flexible_toggle',''),(171420,40623,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(171421,40623,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(171422,40623,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(171423,40623,'blocks_5_testimonial_slider_content_title',''),(171424,40623,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(171425,40623,'blocks_5_testimonial_slider_content_heading','Testimonials'),(171426,40623,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(171427,40623,'blocks_5_testimonial_slider_content_text',''),(171428,40623,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(171429,40623,'blocks_5_testimonial_slider_content_actions',''),(171430,40623,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(171431,40623,'blocks_5_testimonial_slider_content',''),(171432,40623,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(171433,40623,'blocks_5_testimonial_slider_items',''),(171434,40623,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(171435,40623,'blocks_5_testimonial_slider_ambassador_bool','0'),(171436,40623,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(171437,40623,'blocks_6_acfe_flexible_toggle',''),(171438,40623,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(171439,40623,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(171440,40623,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(171441,40623,'blocks_6_options_theme','#ffffff'),(171442,40623,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(171443,40623,'blocks_6_options_state','0'),(171444,40623,'_blocks_6_options_state','field_6239fcb7508c5'),(171445,40623,'blocks_6_options',''),(171446,40623,'_blocks_6_options','field_6177e2991ac44'),(171447,40623,'blocks_6_content_title',''),(171448,40623,'_blocks_6_content_title','field_64d237e8bb1e2'),(171449,40623,'blocks_6_content_heading',''),(171450,40623,'_blocks_6_content_heading','field_64d237e8bb1e3'),(171451,40623,'blocks_6_content_text',''),(171452,40623,'_blocks_6_content_text','field_64d237e8bb1e4'),(171453,40623,'blocks_6_content_actions',''),(171454,40623,'_blocks_6_content_actions','field_64d237e8bb1e5'),(171455,40623,'blocks_6_content_align','left'),(171456,40623,'_blocks_6_content_align','field_64d2443e6b6aa'),(171457,40623,'blocks_6_content',''),(171458,40623,'_blocks_6_content','field_64d237e8bb1e1'),(171459,40623,'blocks_6_accordion_content','custom'),(171460,40623,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(171461,40623,'blocks_6_accordion_items',''),(171462,40623,'_blocks_6_accordion_items','field_6177e2991ac4c'),(171463,40623,'blocks_6_actions',''),(171464,40623,'_blocks_6_actions','field_61a746a817f7a'),(171465,40624,'hide_hero','0'),(171466,40624,'_hide_hero','field_66a2380fcda39'),(171467,40624,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(171468,40624,'_hero_title','field_617571fe285e8'),(171469,40624,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(171470,40624,'_hero_text','field_6175723c285e9'),(171471,40624,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(171472,40624,'_hero_actions_0_button','field_61757281285eb'),(171473,40624,'hero_actions','1'),(171474,40624,'_hero_actions','field_61757270285ea'),(171475,40624,'hero_style','default'),(171476,40624,'_hero_style','field_62051d9dc5324'),(171477,40624,'_thumbnail_id','40615'),(171478,40624,'__thumbnail_id','field_617570855ddaf'),(171479,40624,'hero_image_pos_x','right'),(171480,40624,'_hero_image_pos_x','field_62ec3d05390bb'),(171481,40624,'hero_image_pos_y','top'),(171482,40624,'_hero_image_pos_y','field_62ec3d05390bc'),(171483,40624,'hero_image_pos',''),(171484,40624,'_hero_image_pos','field_62ec3d05390ba'),(171485,40624,'fft_hide_from_listings','0'),(171486,40624,'_fft_hide_from_listings','field_61f1320446ab2'),(171487,40624,'fft_page_format','default'),(171488,40624,'_fft_page_format','field_61ae213f1f218'),(171489,40624,'fft_hide_nav','0'),(171490,40624,'_fft_hide_nav','field_635bd5e43527c'),(171491,40624,'fft_hide_header_call_to_action','0'),(171492,40624,'_fft_hide_header_call_to_action','field_635bd6723527d'),(171493,40624,'fft_page_sitemap','0'),(171494,40624,'_fft_page_sitemap','field_61af9b34e8181'),(171495,40624,'blocks_0_acfe_flexible_toggle',''),(171496,40624,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(171497,40624,'blocks_0_acfe_flexible_layout_title','Text Block'),(171498,40624,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(171499,40624,'blocks_0_options_theme','#ffffff'),(171500,40624,'_blocks_0_options_theme','field_6176830e2ad17'),(171501,40624,'blocks_0_options',''),(171502,40624,'_blocks_0_options','field_6176830e2ad16'),(171503,40624,'blocks_0_text_block_heading','Overview'),(171504,40624,'_blocks_0_text_block_heading','field_617669d413097'),(171505,40624,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(171506,40624,'_blocks_0_text_block_content','field_617669ec13098'),(171507,40624,'blocks_1_acfe_flexible_toggle',''),(171508,40624,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(171509,40624,'blocks_1_acfe_flexible_layout_title','Logos'),(171510,40624,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(171511,40624,'blocks_1_options_theme','#ffffff'),(171512,40624,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(171513,40624,'blocks_1_options_format','grid'),(171514,40624,'_blocks_1_options_format','field_61782964ee971'),(171515,40624,'blocks_1_options',''),(171516,40624,'_blocks_1_options','field_61782954ee965'),(171517,40624,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(171518,40624,'_blocks_1_logos','field_61782954ee96d'),(171519,40624,'blocks_1_title',''),(171520,40624,'_blocks_1_title','field_668fbfdc2daa1'),(171521,40624,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:18:\"testimonial_slider\";i:6;s:10:\"accordions\";}'),(171522,40624,'_blocks','field_6176696113096'),(171523,40624,'course_label_text',''),(171524,40624,'_course_label_text','field_61e17babf71fa'),(171525,40624,'course_label',''),(171526,40624,'_course_label','field_61e12f92749a7'),(171527,40624,'course_description',''),(171528,40624,'_course_description','field_617ac5788e5e1'),(171529,40624,'course_key_info',''),(171530,40624,'_course_key_info','field_617ac6ad8e5e2'),(171531,40624,'course_included',''),(171532,40624,'_course_included','field_617ac6f08e5e4'),(171533,40624,'blocks_2_acfe_flexible_toggle',''),(171534,40624,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(171535,40624,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(171536,40624,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(171537,40624,'blocks_2_options_theme','#ffffff'),(171538,40624,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(171539,40624,'blocks_2_options_reverse','0'),(171540,40624,'_blocks_2_options_reverse','field_61768049bb8ac'),(171541,40624,'blocks_2_options',''),(171542,40624,'_blocks_2_options','field_617682517c334'),(171543,40624,'blocks_2_split_5050_image','40618'),(171544,40624,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(171545,40624,'blocks_2_split_5050_video',''),(171546,40624,'_blocks_2_split_5050_video','field_6239f3160848a'),(171547,40624,'blocks_2_split_5050_content_title',''),(171548,40624,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(171549,40624,'blocks_2_split_5050_content_heading','Course Overview'),(171550,40624,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(171551,40624,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.\r\n\r\nInstructors through Continuing Professional Development (CPD). To obtain your iMoveFreely Instructor certificate, face-to-face attendance is required.\r\n\r\nUpon payment, access the recorded workshop and instantly download the comprehensive handout PDF. For future access, simply log in using your registered email.'),(171552,40624,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(171553,40624,'blocks_2_split_5050_content_actions','1'),(171554,40624,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(171555,40624,'blocks_2_split_5050_content',''),(171556,40624,'_blocks_2_split_5050_content','field_61767afceb8ba'),(171557,40624,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(171558,40624,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(171559,40624,'blocks_3_acfe_flexible_toggle',''),(171560,40624,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(171561,40624,'blocks_3_acfe_flexible_layout_title','Text Block'),(171562,40624,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(171563,40624,'blocks_3_options_theme','#ffffff'),(171564,40624,'_blocks_3_options_theme','field_6176830e2ad17'),(171565,40624,'blocks_3_options',''),(171566,40624,'_blocks_3_options','field_6176830e2ad16'),(171567,40624,'blocks_3_text_block_heading','Other Courses'),(171568,40624,'_blocks_3_text_block_heading','field_617669d413097'),(171569,40624,'blocks_3_text_block_content','Check out a range of other courses that are frequently purchased'),(171570,40624,'_blocks_3_text_block_content','field_617669ec13098'),(171571,40624,'blocks_4_acfe_flexible_toggle',''),(171572,40624,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(171573,40624,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(171574,40624,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(171575,40624,'blocks_4_options_theme','#ffffff'),(171576,40624,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(171577,40624,'blocks_4_options',''),(171578,40624,'_blocks_4_options','field_617ac0b7f6c08'),(171579,40624,'blocks_4_show','category'),(171580,40624,'_blocks_4_show','field_61a49cba9d946'),(171581,40624,'blocks_4_category','403'),(171582,40624,'_blocks_4_category','field_61a49cd79d947'),(171583,40624,'blocks_5_acfe_flexible_toggle',''),(171584,40624,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(171585,40624,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(171586,40624,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(171587,40624,'blocks_5_testimonial_slider_content_title',''),(171588,40624,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(171589,40624,'blocks_5_testimonial_slider_content_heading','Testimonials'),(171590,40624,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(171591,40624,'blocks_5_testimonial_slider_content_text',''),(171592,40624,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(171593,40624,'blocks_5_testimonial_slider_content_actions',''),(171594,40624,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(171595,40624,'blocks_5_testimonial_slider_content',''),(171596,40624,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(171597,40624,'blocks_5_testimonial_slider_items',''),(171598,40624,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(171599,40624,'blocks_5_testimonial_slider_ambassador_bool','0'),(171600,40624,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(171601,40624,'blocks_6_acfe_flexible_toggle',''),(171602,40624,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(171603,40624,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(171604,40624,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(171605,40624,'blocks_6_options_theme','#ffffff'),(171606,40624,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(171607,40624,'blocks_6_options_state','0'),(171608,40624,'_blocks_6_options_state','field_6239fcb7508c5'),(171609,40624,'blocks_6_options',''),(171610,40624,'_blocks_6_options','field_6177e2991ac44'),(171611,40624,'blocks_6_content_title',''),(171612,40624,'_blocks_6_content_title','field_64d237e8bb1e2'),(171613,40624,'blocks_6_content_heading',''),(171614,40624,'_blocks_6_content_heading','field_64d237e8bb1e3'),(171615,40624,'blocks_6_content_text',''),(171616,40624,'_blocks_6_content_text','field_64d237e8bb1e4'),(171617,40624,'blocks_6_content_actions',''),(171618,40624,'_blocks_6_content_actions','field_64d237e8bb1e5'),(171619,40624,'blocks_6_content_align','left'),(171620,40624,'_blocks_6_content_align','field_64d2443e6b6aa'),(171621,40624,'blocks_6_content',''),(171622,40624,'_blocks_6_content','field_64d237e8bb1e1'),(171623,40624,'blocks_6_accordion_content','custom'),(171624,40624,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(171625,40624,'blocks_6_accordion_items',''),(171626,40624,'_blocks_6_accordion_items','field_6177e2991ac4c'),(171627,40624,'blocks_6_actions',''),(171628,40624,'_blocks_6_actions','field_61a746a817f7a'),(171629,40625,'hide_hero','0'),(171630,40625,'_hide_hero','field_66a2380fcda39'),(171631,40625,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(171632,40625,'_hero_title','field_617571fe285e8'),(171633,40625,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(171634,40625,'_hero_text','field_6175723c285e9'),(171635,40625,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(171636,40625,'_hero_actions_0_button','field_61757281285eb'),(171637,40625,'hero_actions','1'),(171638,40625,'_hero_actions','field_61757270285ea'),(171639,40625,'hero_style','default'),(171640,40625,'_hero_style','field_62051d9dc5324'),(171641,40625,'_thumbnail_id','40615'),(171642,40625,'__thumbnail_id','field_617570855ddaf'),(171643,40625,'hero_image_pos_x','right'),(171644,40625,'_hero_image_pos_x','field_62ec3d05390bb'),(171645,40625,'hero_image_pos_y','top'),(171646,40625,'_hero_image_pos_y','field_62ec3d05390bc'),(171647,40625,'hero_image_pos',''),(171648,40625,'_hero_image_pos','field_62ec3d05390ba'),(171649,40625,'fft_hide_from_listings','0'),(171650,40625,'_fft_hide_from_listings','field_61f1320446ab2'),(171651,40625,'fft_page_format','default'),(171652,40625,'_fft_page_format','field_61ae213f1f218'),(171653,40625,'fft_hide_nav','0'),(171654,40625,'_fft_hide_nav','field_635bd5e43527c'),(171655,40625,'fft_hide_header_call_to_action','0'),(171656,40625,'_fft_hide_header_call_to_action','field_635bd6723527d'),(171657,40625,'fft_page_sitemap','0'),(171658,40625,'_fft_page_sitemap','field_61af9b34e8181'),(171659,40625,'blocks_0_acfe_flexible_toggle',''),(171660,40625,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(171661,40625,'blocks_0_acfe_flexible_layout_title','Text Block'),(171662,40625,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(171663,40625,'blocks_0_options_theme','#f5f5f5'),(171664,40625,'_blocks_0_options_theme','field_6176830e2ad17'),(171665,40625,'blocks_0_options',''),(171666,40625,'_blocks_0_options','field_6176830e2ad16'),(171667,40625,'blocks_0_text_block_heading','Overview'),(171668,40625,'_blocks_0_text_block_heading','field_617669d413097'),(171669,40625,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(171670,40625,'_blocks_0_text_block_content','field_617669ec13098'),(171671,40625,'blocks_1_acfe_flexible_toggle',''),(171672,40625,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(171673,40625,'blocks_1_acfe_flexible_layout_title','Logos'),(171674,40625,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(171675,40625,'blocks_1_options_theme','#ffffff'),(171676,40625,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(171677,40625,'blocks_1_options_format','grid'),(171678,40625,'_blocks_1_options_format','field_61782964ee971'),(171679,40625,'blocks_1_options',''),(171680,40625,'_blocks_1_options','field_61782954ee965'),(171681,40625,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(171682,40625,'_blocks_1_logos','field_61782954ee96d'),(171683,40625,'blocks_1_title',''),(171684,40625,'_blocks_1_title','field_668fbfdc2daa1'),(171685,40625,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:18:\"testimonial_slider\";i:6;s:10:\"accordions\";}'),(171686,40625,'_blocks','field_6176696113096'),(171687,40625,'course_label_text',''),(171688,40625,'_course_label_text','field_61e17babf71fa'),(171689,40625,'course_label',''),(171690,40625,'_course_label','field_61e12f92749a7'),(171691,40625,'course_description',''),(171692,40625,'_course_description','field_617ac5788e5e1'),(171693,40625,'course_key_info',''),(171694,40625,'_course_key_info','field_617ac6ad8e5e2'),(171695,40625,'course_included',''),(171696,40625,'_course_included','field_617ac6f08e5e4'),(171697,40625,'blocks_2_acfe_flexible_toggle',''),(171698,40625,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(171699,40625,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(171700,40625,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(171701,40625,'blocks_2_options_theme','#ffffff'),(171702,40625,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(171703,40625,'blocks_2_options_reverse','0'),(171704,40625,'_blocks_2_options_reverse','field_61768049bb8ac'),(171705,40625,'blocks_2_options',''),(171706,40625,'_blocks_2_options','field_617682517c334'),(171707,40625,'blocks_2_split_5050_image','40618'),(171708,40625,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(171709,40625,'blocks_2_split_5050_video',''),(171710,40625,'_blocks_2_split_5050_video','field_6239f3160848a'),(171711,40625,'blocks_2_split_5050_content_title',''),(171712,40625,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(171713,40625,'blocks_2_split_5050_content_heading','Course Overview'),(171714,40625,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(171715,40625,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.\r\n\r\nInstructors through Continuing Professional Development (CPD). To obtain your iMoveFreely Instructor certificate, face-to-face attendance is required.\r\n\r\nUpon payment, access the recorded workshop and instantly download the comprehensive handout PDF. For future access, simply log in using your registered email.'),(171716,40625,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(171717,40625,'blocks_2_split_5050_content_actions','1'),(171718,40625,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(171719,40625,'blocks_2_split_5050_content',''),(171720,40625,'_blocks_2_split_5050_content','field_61767afceb8ba'),(171721,40625,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(171722,40625,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(171723,40625,'blocks_3_acfe_flexible_toggle',''),(171724,40625,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(171725,40625,'blocks_3_acfe_flexible_layout_title','Text Block'),(171726,40625,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(171727,40625,'blocks_3_options_theme','#ffffff'),(171728,40625,'_blocks_3_options_theme','field_6176830e2ad17'),(171729,40625,'blocks_3_options',''),(171730,40625,'_blocks_3_options','field_6176830e2ad16'),(171731,40625,'blocks_3_text_block_heading','Other Courses'),(171732,40625,'_blocks_3_text_block_heading','field_617669d413097'),(171733,40625,'blocks_3_text_block_content','Check out a range of other courses that are frequently purchased'),(171734,40625,'_blocks_3_text_block_content','field_617669ec13098'),(171735,40625,'blocks_4_acfe_flexible_toggle',''),(171736,40625,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(171737,40625,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(171738,40625,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(171739,40625,'blocks_4_options_theme','#ffffff'),(171740,40625,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(171741,40625,'blocks_4_options',''),(171742,40625,'_blocks_4_options','field_617ac0b7f6c08'),(171743,40625,'blocks_4_show','category'),(171744,40625,'_blocks_4_show','field_61a49cba9d946'),(171745,40625,'blocks_4_category','403'),(171746,40625,'_blocks_4_category','field_61a49cd79d947'),(171747,40625,'blocks_5_acfe_flexible_toggle',''),(171748,40625,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(171749,40625,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(171750,40625,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(171751,40625,'blocks_5_testimonial_slider_content_title',''),(171752,40625,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(171753,40625,'blocks_5_testimonial_slider_content_heading','Testimonials'),(171754,40625,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(171755,40625,'blocks_5_testimonial_slider_content_text',''),(171756,40625,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(171757,40625,'blocks_5_testimonial_slider_content_actions',''),(171758,40625,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(171759,40625,'blocks_5_testimonial_slider_content',''),(171760,40625,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(171761,40625,'blocks_5_testimonial_slider_items',''),(171762,40625,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(171763,40625,'blocks_5_testimonial_slider_ambassador_bool','0'),(171764,40625,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(171765,40625,'blocks_6_acfe_flexible_toggle',''),(171766,40625,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(171767,40625,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(171768,40625,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(171769,40625,'blocks_6_options_theme','#ffffff'),(171770,40625,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(171771,40625,'blocks_6_options_state','0'),(171772,40625,'_blocks_6_options_state','field_6239fcb7508c5'),(171773,40625,'blocks_6_options',''),(171774,40625,'_blocks_6_options','field_6177e2991ac44'),(171775,40625,'blocks_6_content_title',''),(171776,40625,'_blocks_6_content_title','field_64d237e8bb1e2'),(171777,40625,'blocks_6_content_heading',''),(171778,40625,'_blocks_6_content_heading','field_64d237e8bb1e3'),(171779,40625,'blocks_6_content_text',''),(171780,40625,'_blocks_6_content_text','field_64d237e8bb1e4'),(171781,40625,'blocks_6_content_actions',''),(171782,40625,'_blocks_6_content_actions','field_64d237e8bb1e5'),(171783,40625,'blocks_6_content_align','left'),(171784,40625,'_blocks_6_content_align','field_64d2443e6b6aa'),(171785,40625,'blocks_6_content',''),(171786,40625,'_blocks_6_content','field_64d237e8bb1e1'),(171787,40625,'blocks_6_accordion_content','custom'),(171788,40625,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(171789,40625,'blocks_6_accordion_items',''),(171790,40625,'_blocks_6_accordion_items','field_6177e2991ac4c'),(171791,40625,'blocks_6_actions',''),(171792,40625,'_blocks_6_actions','field_61a746a817f7a'),(171793,40626,'hide_hero','0'),(171794,40626,'_hide_hero','field_66a2380fcda39'),(171795,40626,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(171796,40626,'_hero_title','field_617571fe285e8'),(171797,40626,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(171798,40626,'_hero_text','field_6175723c285e9'),(171799,40626,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(171800,40626,'_hero_actions_0_button','field_61757281285eb'),(171801,40626,'hero_actions','1'),(171802,40626,'_hero_actions','field_61757270285ea'),(171803,40626,'hero_style','default'),(171804,40626,'_hero_style','field_62051d9dc5324'),(171805,40626,'_thumbnail_id','40615'),(171806,40626,'__thumbnail_id','field_617570855ddaf'),(171807,40626,'hero_image_pos_x','right'),(171808,40626,'_hero_image_pos_x','field_62ec3d05390bb'),(171809,40626,'hero_image_pos_y','top'),(171810,40626,'_hero_image_pos_y','field_62ec3d05390bc'),(171811,40626,'hero_image_pos',''),(171812,40626,'_hero_image_pos','field_62ec3d05390ba'),(171813,40626,'fft_hide_from_listings','0'),(171814,40626,'_fft_hide_from_listings','field_61f1320446ab2'),(171815,40626,'fft_page_format','default'),(171816,40626,'_fft_page_format','field_61ae213f1f218'),(171817,40626,'fft_hide_nav','0'),(171818,40626,'_fft_hide_nav','field_635bd5e43527c'),(171819,40626,'fft_hide_header_call_to_action','0'),(171820,40626,'_fft_hide_header_call_to_action','field_635bd6723527d'),(171821,40626,'fft_page_sitemap','0'),(171822,40626,'_fft_page_sitemap','field_61af9b34e8181'),(171823,40626,'blocks_0_acfe_flexible_toggle',''),(171824,40626,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(171825,40626,'blocks_0_acfe_flexible_layout_title','Text Block'),(171826,40626,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(171827,40626,'blocks_0_options_theme','#f5f5f5'),(171828,40626,'_blocks_0_options_theme','field_6176830e2ad17'),(171829,40626,'blocks_0_options',''),(171830,40626,'_blocks_0_options','field_6176830e2ad16'),(171831,40626,'blocks_0_text_block_heading','Overview'),(171832,40626,'_blocks_0_text_block_heading','field_617669d413097'),(171833,40626,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(171834,40626,'_blocks_0_text_block_content','field_617669ec13098'),(171835,40626,'blocks_1_acfe_flexible_toggle',''),(171836,40626,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(171837,40626,'blocks_1_acfe_flexible_layout_title','Logos'),(171838,40626,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(171839,40626,'blocks_1_options_theme','#ffffff'),(171840,40626,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(171841,40626,'blocks_1_options_format','grid'),(171842,40626,'_blocks_1_options_format','field_61782964ee971'),(171843,40626,'blocks_1_options',''),(171844,40626,'_blocks_1_options','field_61782954ee965'),(171845,40626,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(171846,40626,'_blocks_1_logos','field_61782954ee96d'),(171847,40626,'blocks_1_title',''),(171848,40626,'_blocks_1_title','field_668fbfdc2daa1'),(171849,40626,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:18:\"testimonial_slider\";i:6;s:10:\"accordions\";}'),(171850,40626,'_blocks','field_6176696113096'),(171851,40626,'course_label_text',''),(171852,40626,'_course_label_text','field_61e17babf71fa'),(171853,40626,'course_label',''),(171854,40626,'_course_label','field_61e12f92749a7'),(171855,40626,'course_description',''),(171856,40626,'_course_description','field_617ac5788e5e1'),(171857,40626,'course_key_info',''),(171858,40626,'_course_key_info','field_617ac6ad8e5e2'),(171859,40626,'course_included',''),(171860,40626,'_course_included','field_617ac6f08e5e4'),(171861,40626,'blocks_2_acfe_flexible_toggle',''),(171862,40626,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(171863,40626,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(171864,40626,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(171865,40626,'blocks_2_options_theme','#f5f5f5'),(171866,40626,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(171867,40626,'blocks_2_options_reverse','0'),(171868,40626,'_blocks_2_options_reverse','field_61768049bb8ac'),(171869,40626,'blocks_2_options',''),(171870,40626,'_blocks_2_options','field_617682517c334'),(171871,40626,'blocks_2_split_5050_image','40618'),(171872,40626,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(171873,40626,'blocks_2_split_5050_video',''),(171874,40626,'_blocks_2_split_5050_video','field_6239f3160848a'),(171875,40626,'blocks_2_split_5050_content_title',''),(171876,40626,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(171877,40626,'blocks_2_split_5050_content_heading','Course Overview'),(171878,40626,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(171879,40626,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.\r\n\r\nInstructors through Continuing Professional Development (CPD). To obtain your iMoveFreely Instructor certificate, face-to-face attendance is required.\r\n\r\nUpon payment, access the recorded workshop and instantly download the comprehensive handout PDF. For future access, simply log in using your registered email.'),(171880,40626,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(171881,40626,'blocks_2_split_5050_content_actions','1'),(171882,40626,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(171883,40626,'blocks_2_split_5050_content',''),(171884,40626,'_blocks_2_split_5050_content','field_61767afceb8ba'),(171885,40626,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(171886,40626,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(171887,40626,'blocks_3_acfe_flexible_toggle',''),(171888,40626,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(171889,40626,'blocks_3_acfe_flexible_layout_title','Text Block'),(171890,40626,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(171891,40626,'blocks_3_options_theme','#ffffff'),(171892,40626,'_blocks_3_options_theme','field_6176830e2ad17'),(171893,40626,'blocks_3_options',''),(171894,40626,'_blocks_3_options','field_6176830e2ad16'),(171895,40626,'blocks_3_text_block_heading','Other Courses'),(171896,40626,'_blocks_3_text_block_heading','field_617669d413097'),(171897,40626,'blocks_3_text_block_content','Check out a range of other courses that are frequently purchased'),(171898,40626,'_blocks_3_text_block_content','field_617669ec13098'),(171899,40626,'blocks_4_acfe_flexible_toggle',''),(171900,40626,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(171901,40626,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(171902,40626,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(171903,40626,'blocks_4_options_theme','#ffffff'),(171904,40626,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(171905,40626,'blocks_4_options',''),(171906,40626,'_blocks_4_options','field_617ac0b7f6c08'),(171907,40626,'blocks_4_show','category'),(171908,40626,'_blocks_4_show','field_61a49cba9d946'),(171909,40626,'blocks_4_category','403'),(171910,40626,'_blocks_4_category','field_61a49cd79d947'),(171911,40626,'blocks_5_acfe_flexible_toggle',''),(171912,40626,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(171913,40626,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(171914,40626,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(171915,40626,'blocks_5_testimonial_slider_content_title',''),(171916,40626,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(171917,40626,'blocks_5_testimonial_slider_content_heading','Testimonials'),(171918,40626,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(171919,40626,'blocks_5_testimonial_slider_content_text',''),(171920,40626,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(171921,40626,'blocks_5_testimonial_slider_content_actions',''),(171922,40626,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(171923,40626,'blocks_5_testimonial_slider_content',''),(171924,40626,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(171925,40626,'blocks_5_testimonial_slider_items',''),(171926,40626,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(171927,40626,'blocks_5_testimonial_slider_ambassador_bool','0'),(171928,40626,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(171929,40626,'blocks_6_acfe_flexible_toggle',''),(171930,40626,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(171931,40626,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(171932,40626,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(171933,40626,'blocks_6_options_theme','#ffffff'),(171934,40626,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(171935,40626,'blocks_6_options_state','0'),(171936,40626,'_blocks_6_options_state','field_6239fcb7508c5'),(171937,40626,'blocks_6_options',''),(171938,40626,'_blocks_6_options','field_6177e2991ac44'),(171939,40626,'blocks_6_content_title',''),(171940,40626,'_blocks_6_content_title','field_64d237e8bb1e2'),(171941,40626,'blocks_6_content_heading',''),(171942,40626,'_blocks_6_content_heading','field_64d237e8bb1e3'),(171943,40626,'blocks_6_content_text',''),(171944,40626,'_blocks_6_content_text','field_64d237e8bb1e4'),(171945,40626,'blocks_6_content_actions',''),(171946,40626,'_blocks_6_content_actions','field_64d237e8bb1e5'),(171947,40626,'blocks_6_content_align','left'),(171948,40626,'_blocks_6_content_align','field_64d2443e6b6aa'),(171949,40626,'blocks_6_content',''),(171950,40626,'_blocks_6_content','field_64d237e8bb1e1'),(171951,40626,'blocks_6_accordion_content','custom'),(171952,40626,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(171953,40626,'blocks_6_accordion_items',''),(171954,40626,'_blocks_6_accordion_items','field_6177e2991ac4c'),(171955,40626,'blocks_6_actions',''),(171956,40626,'_blocks_6_actions','field_61a746a817f7a'),(171957,40627,'hide_hero','0'),(171958,40627,'_hide_hero','field_66a2380fcda39'),(171959,40627,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(171960,40627,'_hero_title','field_617571fe285e8'),(171961,40627,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(171962,40627,'_hero_text','field_6175723c285e9'),(171963,40627,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(171964,40627,'_hero_actions_0_button','field_61757281285eb'),(171965,40627,'hero_actions','1'),(171966,40627,'_hero_actions','field_61757270285ea'),(171967,40627,'hero_style','default'),(171968,40627,'_hero_style','field_62051d9dc5324'),(171969,40627,'_thumbnail_id','40615'),(171970,40627,'__thumbnail_id','field_617570855ddaf'),(171971,40627,'hero_image_pos_x','right'),(171972,40627,'_hero_image_pos_x','field_62ec3d05390bb'),(171973,40627,'hero_image_pos_y','top'),(171974,40627,'_hero_image_pos_y','field_62ec3d05390bc'),(171975,40627,'hero_image_pos',''),(171976,40627,'_hero_image_pos','field_62ec3d05390ba'),(171977,40627,'fft_hide_from_listings','0'),(171978,40627,'_fft_hide_from_listings','field_61f1320446ab2'),(171979,40627,'fft_page_format','default'),(171980,40627,'_fft_page_format','field_61ae213f1f218'),(171981,40627,'fft_hide_nav','0'),(171982,40627,'_fft_hide_nav','field_635bd5e43527c'),(171983,40627,'fft_hide_header_call_to_action','0'),(171984,40627,'_fft_hide_header_call_to_action','field_635bd6723527d'),(171985,40627,'fft_page_sitemap','0'),(171986,40627,'_fft_page_sitemap','field_61af9b34e8181'),(171987,40627,'blocks_0_acfe_flexible_toggle',''),(171988,40627,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(171989,40627,'blocks_0_acfe_flexible_layout_title','Text Block'),(171990,40627,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(171991,40627,'blocks_0_options_theme','#f5f5f5'),(171992,40627,'_blocks_0_options_theme','field_6176830e2ad17'),(171993,40627,'blocks_0_options',''),(171994,40627,'_blocks_0_options','field_6176830e2ad16'),(171995,40627,'blocks_0_text_block_heading','Overview'),(171996,40627,'_blocks_0_text_block_heading','field_617669d413097'),(171997,40627,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(171998,40627,'_blocks_0_text_block_content','field_617669ec13098'),(171999,40627,'blocks_1_acfe_flexible_toggle',''),(172000,40627,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(172001,40627,'blocks_1_acfe_flexible_layout_title','Logos'),(172002,40627,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(172003,40627,'blocks_1_options_theme','#ffffff'),(172004,40627,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(172005,40627,'blocks_1_options_format','grid'),(172006,40627,'_blocks_1_options_format','field_61782964ee971'),(172007,40627,'blocks_1_options',''),(172008,40627,'_blocks_1_options','field_61782954ee965'),(172009,40627,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(172010,40627,'_blocks_1_logos','field_61782954ee96d'),(172011,40627,'blocks_1_title',''),(172012,40627,'_blocks_1_title','field_668fbfdc2daa1'),(172013,40627,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:18:\"testimonial_slider\";i:6;s:10:\"accordions\";}'),(172014,40627,'_blocks','field_6176696113096'),(172015,40627,'course_label_text',''),(172016,40627,'_course_label_text','field_61e17babf71fa'),(172017,40627,'course_label',''),(172018,40627,'_course_label','field_61e12f92749a7'),(172019,40627,'course_description',''),(172020,40627,'_course_description','field_617ac5788e5e1'),(172021,40627,'course_key_info',''),(172022,40627,'_course_key_info','field_617ac6ad8e5e2'),(172023,40627,'course_included',''),(172024,40627,'_course_included','field_617ac6f08e5e4'),(172025,40627,'blocks_2_acfe_flexible_toggle',''),(172026,40627,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(172027,40627,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(172028,40627,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(172029,40627,'blocks_2_options_theme','#b61234'),(172030,40627,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(172031,40627,'blocks_2_options_reverse','0'),(172032,40627,'_blocks_2_options_reverse','field_61768049bb8ac'),(172033,40627,'blocks_2_options',''),(172034,40627,'_blocks_2_options','field_617682517c334'),(172035,40627,'blocks_2_split_5050_image','40618'),(172036,40627,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(172037,40627,'blocks_2_split_5050_video',''),(172038,40627,'_blocks_2_split_5050_video','field_6239f3160848a'),(172039,40627,'blocks_2_split_5050_content_title',''),(172040,40627,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(172041,40627,'blocks_2_split_5050_content_heading','Course Overview'),(172042,40627,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(172043,40627,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.\r\n\r\nInstructors through Continuing Professional Development (CPD). To obtain your iMoveFreely Instructor certificate, face-to-face attendance is required.\r\n\r\nUpon payment, access the recorded workshop and instantly download the comprehensive handout PDF. For future access, simply log in using your registered email.'),(172044,40627,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(172045,40627,'blocks_2_split_5050_content_actions','1'),(172046,40627,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(172047,40627,'blocks_2_split_5050_content',''),(172048,40627,'_blocks_2_split_5050_content','field_61767afceb8ba'),(172049,40627,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(172050,40627,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(172051,40627,'blocks_3_acfe_flexible_toggle',''),(172052,40627,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(172053,40627,'blocks_3_acfe_flexible_layout_title','Text Block'),(172054,40627,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(172055,40627,'blocks_3_options_theme','#ffffff'),(172056,40627,'_blocks_3_options_theme','field_6176830e2ad17'),(172057,40627,'blocks_3_options',''),(172058,40627,'_blocks_3_options','field_6176830e2ad16'),(172059,40627,'blocks_3_text_block_heading','Other Courses'),(172060,40627,'_blocks_3_text_block_heading','field_617669d413097'),(172061,40627,'blocks_3_text_block_content','Check out a range of other courses that are frequently purchased'),(172062,40627,'_blocks_3_text_block_content','field_617669ec13098'),(172063,40627,'blocks_4_acfe_flexible_toggle',''),(172064,40627,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(172065,40627,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(172066,40627,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(172067,40627,'blocks_4_options_theme','#ffffff'),(172068,40627,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(172069,40627,'blocks_4_options',''),(172070,40627,'_blocks_4_options','field_617ac0b7f6c08'),(172071,40627,'blocks_4_show','category'),(172072,40627,'_blocks_4_show','field_61a49cba9d946'),(172073,40627,'blocks_4_category','403'),(172074,40627,'_blocks_4_category','field_61a49cd79d947'),(172075,40627,'blocks_5_acfe_flexible_toggle',''),(172076,40627,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(172077,40627,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(172078,40627,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(172079,40627,'blocks_5_testimonial_slider_content_title',''),(172080,40627,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(172081,40627,'blocks_5_testimonial_slider_content_heading','Testimonials'),(172082,40627,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(172083,40627,'blocks_5_testimonial_slider_content_text',''),(172084,40627,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(172085,40627,'blocks_5_testimonial_slider_content_actions',''),(172086,40627,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(172087,40627,'blocks_5_testimonial_slider_content',''),(172088,40627,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(172089,40627,'blocks_5_testimonial_slider_items',''),(172090,40627,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(172091,40627,'blocks_5_testimonial_slider_ambassador_bool','0'),(172092,40627,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(172093,40627,'blocks_6_acfe_flexible_toggle',''),(172094,40627,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(172095,40627,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(172096,40627,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(172097,40627,'blocks_6_options_theme','#ffffff'),(172098,40627,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(172099,40627,'blocks_6_options_state','0'),(172100,40627,'_blocks_6_options_state','field_6239fcb7508c5'),(172101,40627,'blocks_6_options',''),(172102,40627,'_blocks_6_options','field_6177e2991ac44'),(172103,40627,'blocks_6_content_title',''),(172104,40627,'_blocks_6_content_title','field_64d237e8bb1e2'),(172105,40627,'blocks_6_content_heading',''),(172106,40627,'_blocks_6_content_heading','field_64d237e8bb1e3'),(172107,40627,'blocks_6_content_text',''),(172108,40627,'_blocks_6_content_text','field_64d237e8bb1e4'),(172109,40627,'blocks_6_content_actions',''),(172110,40627,'_blocks_6_content_actions','field_64d237e8bb1e5'),(172111,40627,'blocks_6_content_align','left'),(172112,40627,'_blocks_6_content_align','field_64d2443e6b6aa'),(172113,40627,'blocks_6_content',''),(172114,40627,'_blocks_6_content','field_64d237e8bb1e1'),(172115,40627,'blocks_6_accordion_content','custom'),(172116,40627,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(172117,40627,'blocks_6_accordion_items',''),(172118,40627,'_blocks_6_accordion_items','field_6177e2991ac4c'),(172119,40627,'blocks_6_actions',''),(172120,40627,'_blocks_6_actions','field_61a746a817f7a'),(172121,40278,'_edit_lock','1728294633:11'),(172122,40628,'_wp_attached_file','2024/09/Introduction-to-intrinsic-BE-hero-iamge-scaled.jpg'),(172123,40628,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:58:\"2024/09/Introduction-to-intrinsic-BE-hero-iamge-scaled.jpg\";s:8:\"filesize\";i:388625;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Introduction-to-intrinsic-BE-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90835;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"Introduction-to-intrinsic-BE-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124362;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Introduction-to-intrinsic-BE-hero-iamge-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47576;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Introduction-to-intrinsic-BE-hero-iamge-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77826;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"Introduction-to-intrinsic-BE-hero-iamge-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170737;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:53:\"Introduction-to-intrinsic-BE-hero-iamge-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:263428;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:51:\"Introduction-to-intrinsic-BE-hero-iamge-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53734;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:51:\"Introduction-to-intrinsic-BE-hero-iamge-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114795;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:53:\"Introduction-to-intrinsic-BE-hero-iamge-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165472;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:51:\"Introduction-to-intrinsic-BE-hero-iamge-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47562;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:51:\"Introduction-to-intrinsic-BE-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90835;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:52:\"Introduction-to-intrinsic-BE-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124362;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:51:\"Introduction-to-intrinsic-BE-hero-iamge-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47864;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:51:\"Introduction-to-intrinsic-BE-hero-iamge-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95139;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:52:\"Introduction-to-intrinsic-BE-hero-iamge-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134588;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:51:\"Introduction-to-intrinsic-BE-hero-iamge-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49526;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:51:\"Introduction-to-intrinsic-BE-hero-iamge-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97759;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:52:\"Introduction-to-intrinsic-BE-hero-iamge-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135866;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:51:\"Introduction-to-intrinsic-BE-hero-iamge-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44787;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:51:\"Introduction-to-intrinsic-BE-hero-iamge-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81437;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:52:\"Introduction-to-intrinsic-BE-hero-iamge-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109389;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1634029656\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:43:\"Introduction-to-intrinsic-BE-hero-iamge.jpg\";}'),(172124,40278,'_edit_last','11'),(172125,40278,'_wp_old_date','2024-09-10'),(172126,40278,'hide_hero','0'),(172127,40278,'_hide_hero','field_66a2380fcda39'),(172128,40278,'hero_title','Introduction to Intrinsic Biomechanics'),(172129,40278,'_hero_title','field_617571fe285e8'),(172130,40278,'hero_text','Welcome to the Intrinsic Biomechanics Online CPD Training – Gain a deeper level of understanding of the body and human movement.'),(172131,40278,'_hero_text','field_6175723c285e9'),(172132,40278,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Add To Basket - Free\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(172133,40278,'_hero_actions_0_button','field_61757281285eb'),(172134,40278,'hero_actions','1'),(172135,40278,'_hero_actions','field_61757270285ea'),(172136,40278,'hero_style','default'),(172137,40278,'_hero_style','field_62051d9dc5324'),(172138,40278,'_thumbnail_id','40628'),(172139,40278,'__thumbnail_id','field_617570855ddaf'),(172140,40278,'hero_image_pos_x','right'),(172141,40278,'_hero_image_pos_x','field_62ec3d05390bb'),(172142,40278,'hero_image_pos_y','top'),(172143,40278,'_hero_image_pos_y','field_62ec3d05390bc'),(172144,40278,'hero_image_pos',''),(172145,40278,'_hero_image_pos','field_62ec3d05390ba'),(172146,40278,'fft_hide_from_listings','0'),(172147,40278,'_fft_hide_from_listings','field_61f1320446ab2'),(172148,40278,'fft_page_format','default'),(172149,40278,'_fft_page_format','field_61ae213f1f218'),(172150,40278,'fft_hide_nav','0'),(172151,40278,'_fft_hide_nav','field_635bd5e43527c'),(172152,40278,'fft_hide_header_call_to_action','0'),(172153,40278,'_fft_hide_header_call_to_action','field_635bd6723527d'),(172154,40278,'fft_page_sitemap','0'),(172155,40278,'_fft_page_sitemap','field_61af9b34e8181'),(172156,40278,'blocks_0_acfe_flexible_toggle',''),(172157,40278,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(172158,40278,'blocks_0_acfe_flexible_layout_title','Text Block'),(172159,40278,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(172160,40278,'blocks_0_options_theme','#ffffff'),(172161,40278,'_blocks_0_options_theme','field_6176830e2ad17'),(172162,40278,'blocks_0_options',''),(172163,40278,'_blocks_0_options','field_6176830e2ad16'),(172164,40278,'blocks_0_text_block_heading','Overview'),(172165,40278,'_blocks_0_text_block_heading','field_617669d413097'),(172166,40278,'blocks_0_text_block_content','Unlock a profound comprehension of the human body and movement patterns with our 2-hour online virtual classroom recording, complete with a comprehensive handout available for immediate download.\r\n\r\nAre your clients grappling with limited squat range or struggling to press overhead due to shoulder issues? Perhaps they avoid certain exercises due to physical constraints or pain. Witness transformative improvements in their movement and address your own mobility goals.'),(172167,40278,'_blocks_0_text_block_content','field_617669ec13098'),(172168,40278,'blocks_1_acfe_flexible_toggle',''),(172169,40278,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(172170,40278,'blocks_1_acfe_flexible_layout_title','Timeline'),(172171,40278,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(172172,40278,'blocks_1_options_theme','#f5f5f5'),(172173,40278,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(172174,40278,'blocks_1_options',''),(172175,40278,'_blocks_1_options','field_6177de53d1195'),(172176,40278,'blocks_1_timeline_content_title',''),(172177,40278,'_blocks_1_timeline_content_title','field_6177de53d1198'),(172178,40278,'blocks_1_timeline_content_heading','Course Information'),(172179,40278,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(172180,40278,'blocks_1_timeline_content_text','<strong>Discover how to:</strong>\r\n<ul>\r\n 	<li>Conduct evidence-based screenings to pinpoint movement limitations.</li>\r\n 	<li>Master techniques enhancing the functionality of the pelvis, spine, and shoulder.</li>\r\n</ul>'),(172181,40278,'_blocks_1_timeline_content_text','field_6177de53d119a'),(172182,40278,'blocks_1_timeline_content_actions',''),(172183,40278,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(172184,40278,'blocks_1_timeline_content',''),(172185,40278,'_blocks_1_timeline_content','field_6177de53d1197'),(172186,40278,'blocks_1_timeline_items_0_title','Explore Pelvic Biomechanics'),(172187,40278,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(172188,40278,'blocks_1_timeline_items_0_text','Uncover evidence-based assessments, identify sub-clinical muscle spasms, discern between structural and functional leg length discrepancies, and implement exercises to enhance pelvic function.'),(172189,40278,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(172190,40278,'blocks_1_timeline_items_1_title','Dive into Spine Biomechanics'),(172191,40278,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(172192,40278,'blocks_1_timeline_items_1_text','Learn how to assess and correct thoracic rotation – a game-changing skill with far-reaching effects.'),(172193,40278,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(172194,40278,'blocks_1_timeline_items_2_title','Delve into Shoulder Biomechanics'),(172195,40278,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(172196,40278,'blocks_1_timeline_items_2_text','Assess and correct shoulder function, focusing on key muscles influencing posture and movement right down to the feet.'),(172197,40278,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(172198,40278,'blocks_1_timeline_items','3'),(172199,40278,'_blocks_1_timeline_items','field_6177de53d119d'),(172200,40278,'blocks_2_acfe_flexible_toggle',''),(172201,40278,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(172202,40278,'blocks_2_acfe_flexible_layout_title','Text Block'),(172203,40278,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(172204,40278,'blocks_2_options_theme','#ffffff'),(172205,40278,'_blocks_2_options_theme','field_6176830e2ad17'),(172206,40278,'blocks_2_options',''),(172207,40278,'_blocks_2_options','field_6176830e2ad16'),(172208,40278,'blocks_2_text_block_heading','Please note'),(172209,40278,'_blocks_2_text_block_heading','field_617669d413097'),(172210,40278,'blocks_2_text_block_content','This online training aims to inform and enrich the understanding of fitness and exercise instructors through Continuing Professional Development (CPD). For an attendance certificate, face-to-face participation is required. Upon payment, access the video link and instantly download the handout PDF. Revisit using your registered email to access all purchases.\r\n\r\nOpt to attend the face-to-face Intrinsic Biomechanics Workshop, and not only will you receive a refund for the online training, but you\'ll also secure your attendance certificate.'),(172211,40278,'_blocks_2_text_block_content','field_617669ec13098'),(172212,40278,'blocks_3_acfe_flexible_toggle',''),(172213,40278,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(172214,40278,'blocks_3_acfe_flexible_layout_title','Button(s)'),(172215,40278,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(172216,40278,'blocks_3_options_theme','#ffffff'),(172217,40278,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(172218,40278,'blocks_3_options',''),(172219,40278,'_blocks_3_options','field_623b03edb6e65'),(172220,40278,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:20:\"Add To Basket - Free\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(172221,40278,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(172222,40278,'blocks_3_actions','1'),(172223,40278,'_blocks_3_actions','field_623b03edb6e6e'),(172224,40278,'blocks_4_acfe_flexible_toggle',''),(172225,40278,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(172226,40278,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(172227,40278,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(172228,40278,'blocks_4_options_theme','#ffffff'),(172229,40278,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(172230,40278,'blocks_4_options_state','0'),(172231,40278,'_blocks_4_options_state','field_6239fcb7508c5'),(172232,40278,'blocks_4_options',''),(172233,40278,'_blocks_4_options','field_6177e2991ac44'),(172234,40278,'blocks_4_content_title',''),(172235,40278,'_blocks_4_content_title','field_64d237e8bb1e2'),(172236,40278,'blocks_4_content_heading',''),(172237,40278,'_blocks_4_content_heading','field_64d237e8bb1e3'),(172238,40278,'blocks_4_content_text',''),(172239,40278,'_blocks_4_content_text','field_64d237e8bb1e4'),(172240,40278,'blocks_4_content_actions',''),(172241,40278,'_blocks_4_content_actions','field_64d237e8bb1e5'),(172242,40278,'blocks_4_content_align','left'),(172243,40278,'_blocks_4_content_align','field_64d2443e6b6aa'),(172244,40278,'blocks_4_content',''),(172245,40278,'_blocks_4_content','field_64d237e8bb1e1'),(172246,40278,'blocks_4_accordion_content','custom'),(172247,40278,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(172248,40278,'blocks_4_accordion_items',''),(172249,40278,'_blocks_4_accordion_items','field_6177e2991ac4c'),(172250,40278,'blocks_4_actions',''),(172251,40278,'_blocks_4_actions','field_61a746a817f7a'),(172252,40278,'blocks','a:5:{i:0;s:10:\"text_block\";i:1;s:13:\"step_timeline\";i:2;s:10:\"text_block\";i:3;s:7:\"buttons\";i:4;s:10:\"accordions\";}'),(172253,40278,'_blocks','field_6176696113096'),(172254,40278,'course_label_text','Introduction to Intrinsic Biomechanics'),(172255,40278,'_course_label_text','field_61e17babf71fa'),(172256,40278,'course_label',''),(172257,40278,'_course_label','field_61e12f92749a7'),(172258,40278,'course_description','Welcome to the Intrinsic Biomechanics Online CPD Training – Gain a deeper level of understanding of the body and human movement.'),(172259,40278,'_course_description','field_617ac5788e5e1'),(172260,40278,'course_key_info','3'),(172261,40278,'_course_key_info','field_617ac6ad8e5e2'),(172262,40278,'course_included','Conduct evidence-based screenings to pinpoint movement limitations.\r\nMaster techniques enhancing the functionality of the pelvis, spine, and shoulder.'),(172263,40278,'_course_included','field_617ac6f08e5e4'),(172264,40278,'_yoast_wpseo_primary_course-cat','403'),(172265,40278,'_yoast_wpseo_estimated-reading-time-minutes','1'),(172266,40629,'hide_hero','0'),(172267,40629,'_hide_hero','field_66a2380fcda39'),(172268,40629,'hero_title','Introduction to Intrinsic Biomechanics'),(172269,40629,'_hero_title','field_617571fe285e8'),(172270,40629,'hero_text','Welcome to the Intrinsic Biomechanics Online CPD Training – Gain a deeper level of understanding of the body and human movement.'),(172271,40629,'_hero_text','field_6175723c285e9'),(172272,40629,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(172273,40629,'_hero_actions_0_button','field_61757281285eb'),(172274,40629,'hero_actions','1'),(172275,40629,'_hero_actions','field_61757270285ea'),(172276,40629,'hero_style','default'),(172277,40629,'_hero_style','field_62051d9dc5324'),(172278,40629,'_thumbnail_id','40628'),(172279,40629,'__thumbnail_id','field_617570855ddaf'),(172280,40629,'hero_image_pos_x','right'),(172281,40629,'_hero_image_pos_x','field_62ec3d05390bb'),(172282,40629,'hero_image_pos_y','top'),(172283,40629,'_hero_image_pos_y','field_62ec3d05390bc'),(172284,40629,'hero_image_pos',''),(172285,40629,'_hero_image_pos','field_62ec3d05390ba'),(172286,40629,'fft_hide_from_listings','0'),(172287,40629,'_fft_hide_from_listings','field_61f1320446ab2'),(172288,40629,'fft_page_format','default'),(172289,40629,'_fft_page_format','field_61ae213f1f218'),(172290,40629,'fft_hide_nav','0'),(172291,40629,'_fft_hide_nav','field_635bd5e43527c'),(172292,40629,'fft_hide_header_call_to_action','0'),(172293,40629,'_fft_hide_header_call_to_action','field_635bd6723527d'),(172294,40629,'fft_page_sitemap','0'),(172295,40629,'_fft_page_sitemap','field_61af9b34e8181'),(172296,40629,'blocks_0_acfe_flexible_toggle',''),(172297,40629,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(172298,40629,'blocks_0_acfe_flexible_layout_title','Text Block'),(172299,40629,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(172300,40629,'blocks_0_options_theme','#ffffff'),(172301,40629,'_blocks_0_options_theme','field_6176830e2ad17'),(172302,40629,'blocks_0_options',''),(172303,40629,'_blocks_0_options','field_6176830e2ad16'),(172304,40629,'blocks_0_text_block_heading','Overview'),(172305,40629,'_blocks_0_text_block_heading','field_617669d413097'),(172306,40629,'blocks_0_text_block_content','Unlock a profound comprehension of the human body and movement patterns with our 2-hour online virtual classroom recording, complete with a comprehensive handout available for immediate download.\r\n\r\nAre your clients grappling with limited squat range or struggling to press overhead due to shoulder issues? Perhaps they avoid certain exercises due to physical constraints or pain. Witness transformative improvements in their movement and address your own mobility goals.'),(172307,40629,'_blocks_0_text_block_content','field_617669ec13098'),(172308,40629,'blocks_1_acfe_flexible_toggle',''),(172309,40629,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(172310,40629,'blocks_1_acfe_flexible_layout_title','Timeline'),(172311,40629,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(172312,40629,'blocks_1_options_theme','#f5f5f5'),(172313,40629,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(172314,40629,'blocks_1_options',''),(172315,40629,'_blocks_1_options','field_6177de53d1195'),(172316,40629,'blocks_1_timeline_content_title',''),(172317,40629,'_blocks_1_timeline_content_title','field_6177de53d1198'),(172318,40629,'blocks_1_timeline_content_heading','Course Information'),(172319,40629,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(172320,40629,'blocks_1_timeline_content_text','<strong>Discover how to:</strong>\r\n<ul>\r\n 	<li>Conduct evidence-based screenings to pinpoint movement limitations.</li>\r\n 	<li>Master techniques enhancing the functionality of the pelvis, spine, and shoulder.</li>\r\n</ul>'),(172321,40629,'_blocks_1_timeline_content_text','field_6177de53d119a'),(172322,40629,'blocks_1_timeline_content_actions',''),(172323,40629,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(172324,40629,'blocks_1_timeline_content',''),(172325,40629,'_blocks_1_timeline_content','field_6177de53d1197'),(172326,40629,'blocks_1_timeline_items_0_title','Explore Pelvic Biomechanics'),(172327,40629,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(172328,40629,'blocks_1_timeline_items_0_text','Uncover evidence-based assessments, identify sub-clinical muscle spasms, discern between structural and functional leg length discrepancies, and implement exercises to enhance pelvic function.'),(172329,40629,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(172330,40629,'blocks_1_timeline_items_1_title','Dive into Spine Biomechanics'),(172331,40629,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(172332,40629,'blocks_1_timeline_items_1_text','Learn how to assess and correct thoracic rotation – a game-changing skill with far-reaching effects.'),(172333,40629,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(172334,40629,'blocks_1_timeline_items_2_title','Delve into Shoulder Biomechanics'),(172335,40629,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(172336,40629,'blocks_1_timeline_items_2_text','Assess and correct shoulder function, focusing on key muscles influencing posture and movement right down to the feet.'),(172337,40629,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(172338,40629,'blocks_1_timeline_items','3'),(172339,40629,'_blocks_1_timeline_items','field_6177de53d119d'),(172340,40629,'blocks_2_acfe_flexible_toggle',''),(172341,40629,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(172342,40629,'blocks_2_acfe_flexible_layout_title','Text Block'),(172343,40629,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(172344,40629,'blocks_2_options_theme','#ffffff'),(172345,40629,'_blocks_2_options_theme','field_6176830e2ad17'),(172346,40629,'blocks_2_options',''),(172347,40629,'_blocks_2_options','field_6176830e2ad16'),(172348,40629,'blocks_2_text_block_heading','Please note'),(172349,40629,'_blocks_2_text_block_heading','field_617669d413097'),(172350,40629,'blocks_2_text_block_content','This online training aims to inform and enrich the understanding of fitness and exercise instructors through Continuing Professional Development (CPD). For an attendance certificate, face-to-face participation is required. Upon payment, access the video link and instantly download the handout PDF. Revisit using your registered email to access all purchases.\r\n\r\nOpt to attend the face-to-face Intrinsic Biomechanics Workshop, and not only will you receive a refund for the online training, but you\'ll also secure your attendance certificate.'),(172351,40629,'_blocks_2_text_block_content','field_617669ec13098'),(172352,40629,'blocks_3_acfe_flexible_toggle',''),(172353,40629,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(172354,40629,'blocks_3_acfe_flexible_layout_title','Button(s)'),(172355,40629,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(172356,40629,'blocks_3_options_theme','#ffffff'),(172357,40629,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(172358,40629,'blocks_3_options',''),(172359,40629,'_blocks_3_options','field_623b03edb6e65'),(172360,40629,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(172361,40629,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(172362,40629,'blocks_3_actions','1'),(172363,40629,'_blocks_3_actions','field_623b03edb6e6e'),(172364,40629,'blocks_4_acfe_flexible_toggle',''),(172365,40629,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(172366,40629,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(172367,40629,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(172368,40629,'blocks_4_options_theme','#ffffff'),(172369,40629,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(172370,40629,'blocks_4_options_state','0'),(172371,40629,'_blocks_4_options_state','field_6239fcb7508c5'),(172372,40629,'blocks_4_options',''),(172373,40629,'_blocks_4_options','field_6177e2991ac44'),(172374,40629,'blocks_4_content_title',''),(172375,40629,'_blocks_4_content_title','field_64d237e8bb1e2'),(172376,40629,'blocks_4_content_heading',''),(172377,40629,'_blocks_4_content_heading','field_64d237e8bb1e3'),(172378,40629,'blocks_4_content_text',''),(172379,40629,'_blocks_4_content_text','field_64d237e8bb1e4'),(172380,40629,'blocks_4_content_actions',''),(172381,40629,'_blocks_4_content_actions','field_64d237e8bb1e5'),(172382,40629,'blocks_4_content_align','left'),(172383,40629,'_blocks_4_content_align','field_64d2443e6b6aa'),(172384,40629,'blocks_4_content',''),(172385,40629,'_blocks_4_content','field_64d237e8bb1e1'),(172386,40629,'blocks_4_accordion_content','custom'),(172387,40629,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(172388,40629,'blocks_4_accordion_items',''),(172389,40629,'_blocks_4_accordion_items','field_6177e2991ac4c'),(172390,40629,'blocks_4_actions',''),(172391,40629,'_blocks_4_actions','field_61a746a817f7a'),(172392,40629,'blocks','a:5:{i:0;s:10:\"text_block\";i:1;s:13:\"step_timeline\";i:2;s:10:\"text_block\";i:3;s:7:\"buttons\";i:4;s:10:\"accordions\";}'),(172393,40629,'_blocks','field_6176696113096'),(172394,40629,'course_label_text',''),(172395,40629,'_course_label_text','field_61e17babf71fa'),(172396,40629,'course_label',''),(172397,40629,'_course_label','field_61e12f92749a7'),(172398,40629,'course_description',''),(172399,40629,'_course_description','field_617ac5788e5e1'),(172400,40629,'course_key_info',''),(172401,40629,'_course_key_info','field_617ac6ad8e5e2'),(172402,40629,'course_included',''),(172403,40629,'_course_included','field_617ac6f08e5e4'),(172404,40275,'_edit_lock','1727342698:5'),(172405,40630,'_wp_attached_file','2024/09/fundamental-principles-of-movement-hero.jpg'),(172406,40630,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:4:\"file\";s:51:\"2024/09/fundamental-principles-of-movement-hero.jpg\";s:8:\"filesize\";i:318177;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"fundamental-principles-of-movement-hero-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82978;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-hero-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129652;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"fundamental-principles-of-movement-hero-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24475;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"fundamental-principles-of-movement-hero-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64971;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"fundamental-principles-of-movement-hero-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193202;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:51:\"fundamental-principles-of-movement-hero-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33188;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:51:\"fundamental-principles-of-movement-hero-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118515;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:53:\"fundamental-principles-of-movement-hero-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188004;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:51:\"fundamental-principles-of-movement-hero-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24407;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:51:\"fundamental-principles-of-movement-hero-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82691;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-hero-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128947;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:51:\"fundamental-principles-of-movement-hero-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25768;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:51:\"fundamental-principles-of-movement-hero-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91973;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-hero-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146711;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:51:\"fundamental-principles-of-movement-hero-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26863;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:51:\"fundamental-principles-of-movement-hero-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92674;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-hero-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145925;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:51:\"fundamental-principles-of-movement-hero-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21868;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:51:\"fundamental-principles-of-movement-hero-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73907;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-hero-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115372;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(172407,40631,'_wp_attached_file','2024/09/fundamental-principles-of-movement-50.50.jpg'),(172408,40631,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:52:\"2024/09/fundamental-principles-of-movement-50.50.jpg\";s:8:\"filesize\";i:441334;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-50.50-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83948;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"fundamental-principles-of-movement-50.50-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133415;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-50.50-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21999;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-50.50-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63773;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"fundamental-principles-of-movement-50.50-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199216;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:54:\"fundamental-principles-of-movement-50.50-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:316646;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-50.50-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26395;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-50.50-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99550;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:54:\"fundamental-principles-of-movement-50.50-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156236;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-50.50-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21997;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-50.50-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83826;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:53:\"fundamental-principles-of-movement-50.50-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133389;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-50.50-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19982;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-50.50-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74080;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:53:\"fundamental-principles-of-movement-50.50-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115961;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-50.50-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23078;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-50.50-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87890;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:53:\"fundamental-principles-of-movement-50.50-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139040;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-50.50-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19315;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:52:\"fundamental-principles-of-movement-50.50-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69928;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:53:\"fundamental-principles-of-movement-50.50-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110421;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(172409,40275,'_edit_last','5'),(172410,40275,'_wp_old_date','2024-09-10'),(172411,40275,'hide_hero','0'),(172412,40275,'_hide_hero','field_66a2380fcda39'),(172413,40275,'hero_title','Fundamental Principles of Movement'),(172414,40275,'_hero_title','field_617571fe285e8'),(172415,40275,'hero_text','Explore the Fundamental Principles of Movement Analysis'),(172416,40275,'_hero_text','field_6175723c285e9'),(172417,40275,'hero_actions',''),(172418,40275,'_hero_actions','field_61757270285ea'),(172419,40275,'hero_style','default'),(172420,40275,'_hero_style','field_62051d9dc5324'),(172421,40275,'_thumbnail_id','40630'),(172422,40275,'__thumbnail_id','field_617570855ddaf'),(172423,40275,'hero_image_pos_x','right'),(172424,40275,'_hero_image_pos_x','field_62ec3d05390bb'),(172425,40275,'hero_image_pos_y','top'),(172426,40275,'_hero_image_pos_y','field_62ec3d05390bc'),(172427,40275,'hero_image_pos',''),(172428,40275,'_hero_image_pos','field_62ec3d05390ba'),(172429,40275,'fft_hide_from_listings','0'),(172430,40275,'_fft_hide_from_listings','field_61f1320446ab2'),(172431,40275,'fft_page_format','default'),(172432,40275,'_fft_page_format','field_61ae213f1f218'),(172433,40275,'fft_hide_nav','0'),(172434,40275,'_fft_hide_nav','field_635bd5e43527c'),(172435,40275,'fft_hide_header_call_to_action','0'),(172436,40275,'_fft_hide_header_call_to_action','field_635bd6723527d'),(172437,40275,'fft_page_sitemap','0'),(172438,40275,'_fft_page_sitemap','field_61af9b34e8181'),(172439,40275,'blocks_0_acfe_flexible_toggle',''),(172440,40275,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(172441,40275,'blocks_0_acfe_flexible_layout_title','Text Block'),(172442,40275,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(172443,40275,'blocks_0_options_theme','#ffffff'),(172444,40275,'_blocks_0_options_theme','field_6176830e2ad17'),(172445,40275,'blocks_0_options',''),(172446,40275,'_blocks_0_options','field_6176830e2ad16'),(172447,40275,'blocks_0_text_block_heading','Overview'),(172448,40275,'_blocks_0_text_block_heading','field_617669d413097'),(172449,40275,'blocks_0_text_block_content','Are you looking to deepen your understanding of the human body and the principles of movement? We are pleased to introduce our fundamental principles of movement analysis course, offering insights into comprehending, and analysing human movement.\r\n\r\nOur online course simplifies the complex subject of human movement analysis, providing practitioners with a practical understanding to assess their clients\' movement quality. With this knowledge, you can refine your exercise prescriptions to improve movement quality effectively.'),(172450,40275,'_blocks_0_text_block_content','field_617669ec13098'),(172451,40275,'blocks_1_acfe_flexible_toggle',''),(172452,40275,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(172453,40275,'blocks_1_acfe_flexible_layout_title','Timeline'),(172454,40275,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(172455,40275,'blocks_1_options_theme','#f5f5f5'),(172456,40275,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(172457,40275,'blocks_1_options',''),(172458,40275,'_blocks_1_options','field_6177de53d1195'),(172459,40275,'blocks_1_timeline_content_title',''),(172460,40275,'_blocks_1_timeline_content_title','field_6177de53d1198'),(172461,40275,'blocks_1_timeline_content_heading','Fundamental Principles of Movement Analysis'),(172462,40275,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(172463,40275,'blocks_1_timeline_content_text','Explore the Fundamental Principles of Movement Analysis, divided into four parts'),(172464,40275,'_blocks_1_timeline_content_text','field_6177de53d119a'),(172465,40275,'blocks_1_timeline_content_actions',''),(172466,40275,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(172467,40275,'blocks_1_timeline_content',''),(172468,40275,'_blocks_1_timeline_content','field_6177de53d1197'),(172469,40275,'blocks_1_timeline_items_0_title','Part 1: Principles of Movement Analysis '),(172470,40275,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(172471,40275,'blocks_1_timeline_items_0_text','Understand the foundational principles of human movement. '),(172472,40275,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(172473,40275,'blocks_1_timeline_items_1_title','Part 2: Equilibrium '),(172474,40275,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(172475,40275,'blocks_1_timeline_items_1_text','Learn about maintaining balance and equilibrium within the human body. '),(172476,40275,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(172477,40275,'blocks_1_timeline_items_2_title','Part 3: Levers '),(172478,40275,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(172479,40275,'blocks_1_timeline_items_2_text','Explore the mechanical principles of levers and their role in human movement. '),(172480,40275,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(172481,40275,'blocks_1_timeline_items_3_title','Part 4: Turning Forces '),(172482,40275,'_blocks_1_timeline_items_3_title','field_6177de53d119f'),(172483,40275,'blocks_1_timeline_items_3_text','Understand the dynamics of turning forces and their impact on human movement. '),(172484,40275,'_blocks_1_timeline_items_3_text','field_6177de53d11a0'),(172485,40275,'blocks_1_timeline_items','4'),(172486,40275,'_blocks_1_timeline_items','field_6177de53d119d'),(172487,40275,'blocks_2_acfe_flexible_toggle',''),(172488,40275,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(172489,40275,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(172490,40275,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(172491,40275,'blocks_2_options_theme','#b61234'),(172492,40275,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(172493,40275,'blocks_2_options_reverse','0'),(172494,40275,'_blocks_2_options_reverse','field_61768049bb8ac'),(172495,40275,'blocks_2_options',''),(172496,40275,'_blocks_2_options','field_617682517c334'),(172497,40275,'blocks_2_split_5050_image','40631'),(172498,40275,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(172499,40275,'blocks_2_split_5050_video',''),(172500,40275,'_blocks_2_split_5050_video','field_6239f3160848a'),(172501,40275,'blocks_2_split_5050_content_title',''),(172502,40275,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(172503,40275,'blocks_2_split_5050_content_heading','Ready to Get Started? '),(172504,40275,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(172505,40275,'blocks_2_split_5050_content_text','This downloadable course, accompanied by a quiz, aims to inform, and enhance the skills of human movement practitioners in both intrinsic and extrinsic biomechanics.\r\n\r\nReady to get started? After payment, download your course instantly for immediate access. Refine your understanding of movement analysis!'),(172506,40275,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(172507,40275,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(172508,40275,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(172509,40275,'blocks_2_split_5050_content_actions','1'),(172510,40275,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(172511,40275,'blocks_2_split_5050_content',''),(172512,40275,'_blocks_2_split_5050_content','field_61767afceb8ba'),(172513,40275,'blocks_3_acfe_flexible_toggle',''),(172514,40275,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(172515,40275,'blocks_3_acfe_flexible_layout_title','Text Block'),(172516,40275,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(172517,40275,'blocks_3_options_theme','#ffffff'),(172518,40275,'_blocks_3_options_theme','field_6176830e2ad17'),(172519,40275,'blocks_3_options',''),(172520,40275,'_blocks_3_options','field_6176830e2ad16'),(172521,40275,'blocks_3_text_block_heading','Other Courses'),(172522,40275,'_blocks_3_text_block_heading','field_617669d413097'),(172523,40275,'blocks_3_text_block_content','Check out other courses that are frequently purchased'),(172524,40275,'_blocks_3_text_block_content','field_617669ec13098'),(172525,40275,'blocks_4_acfe_flexible_toggle',''),(172526,40275,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(172527,40275,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(172528,40275,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(172529,40275,'blocks_4_options_theme','#ffffff'),(172530,40275,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(172531,40275,'blocks_4_options',''),(172532,40275,'_blocks_4_options','field_617ac0b7f6c08'),(172533,40275,'blocks_4_show','category'),(172534,40275,'_blocks_4_show','field_61a49cba9d946'),(172535,40275,'blocks_4_category','403'),(172536,40275,'_blocks_4_category','field_61a49cd79d947'),(172537,40275,'blocks_5_acfe_flexible_toggle',''),(172538,40275,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(172539,40275,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(172540,40275,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(172541,40275,'blocks_5_options_theme','#ffffff'),(172542,40275,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(172543,40275,'blocks_5_options_state','0'),(172544,40275,'_blocks_5_options_state','field_6239fcb7508c5'),(172545,40275,'blocks_5_options',''),(172546,40275,'_blocks_5_options','field_6177e2991ac44'),(172547,40275,'blocks_5_content_title',''),(172548,40275,'_blocks_5_content_title','field_64d237e8bb1e2'),(172549,40275,'blocks_5_content_heading','FAQ\'s'),(172550,40275,'_blocks_5_content_heading','field_64d237e8bb1e3'),(172551,40275,'blocks_5_content_text',''),(172552,40275,'_blocks_5_content_text','field_64d237e8bb1e4'),(172553,40275,'blocks_5_content_actions',''),(172554,40275,'_blocks_5_content_actions','field_64d237e8bb1e5'),(172555,40275,'blocks_5_content_align','left'),(172556,40275,'_blocks_5_content_align','field_64d2443e6b6aa'),(172557,40275,'blocks_5_content',''),(172558,40275,'_blocks_5_content','field_64d237e8bb1e1'),(172559,40275,'blocks_5_accordion_content','custom'),(172560,40275,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(172561,40275,'blocks_5_accordion_items',''),(172562,40275,'_blocks_5_accordion_items','field_6177e2991ac4c'),(172563,40275,'blocks_5_actions',''),(172564,40275,'_blocks_5_actions','field_61a746a817f7a'),(172565,40275,'blocks','a:6:{i:0;s:10:\"text_block\";i:1;s:13:\"step_timeline\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:10:\"accordions\";}'),(172566,40275,'_blocks','field_6176696113096'),(172567,40275,'course_label_text','Fundamental Principles of Movement'),(172568,40275,'_course_label_text','field_61e17babf71fa'),(172569,40275,'course_label',''),(172570,40275,'_course_label','field_61e12f92749a7'),(172571,40275,'course_description','Are you looking to deepen your understanding of the human body and movement? We are pleased to introduce our fundamental principles of movement analysis course, offering insights into comprehending, and analysing human movement.'),(172572,40275,'_course_description','field_617ac5788e5e1'),(172573,40275,'course_key_info','3'),(172574,40275,'_course_key_info','field_617ac6ad8e5e2'),(172575,40275,'course_included','Part 1: Principles of Movement Analysis \r\nPart 2: Equilibrium \r\nPart 3: Levers \r\nPart 4: Turning Forces '),(172576,40275,'_course_included','field_617ac6f08e5e4'),(172577,40275,'_yoast_wpseo_primary_course-cat','403'),(172578,40275,'_yoast_wpseo_estimated-reading-time-minutes','1'),(172579,40632,'hide_hero','0'),(172580,40632,'_hide_hero','field_66a2380fcda39'),(172581,40632,'hero_title','Fundamental Principles of Movement'),(172582,40632,'_hero_title','field_617571fe285e8'),(172583,40632,'hero_text','Explore the Fundamental Principles of Movement Analysis'),(172584,40632,'_hero_text','field_6175723c285e9'),(172585,40632,'hero_actions',''),(172586,40632,'_hero_actions','field_61757270285ea'),(172587,40632,'hero_style','default'),(172588,40632,'_hero_style','field_62051d9dc5324'),(172589,40632,'_thumbnail_id','40630'),(172590,40632,'__thumbnail_id','field_617570855ddaf'),(172591,40632,'hero_image_pos_x','right'),(172592,40632,'_hero_image_pos_x','field_62ec3d05390bb'),(172593,40632,'hero_image_pos_y','top'),(172594,40632,'_hero_image_pos_y','field_62ec3d05390bc'),(172595,40632,'hero_image_pos',''),(172596,40632,'_hero_image_pos','field_62ec3d05390ba'),(172597,40632,'fft_hide_from_listings','0'),(172598,40632,'_fft_hide_from_listings','field_61f1320446ab2'),(172599,40632,'fft_page_format','default'),(172600,40632,'_fft_page_format','field_61ae213f1f218'),(172601,40632,'fft_hide_nav','0'),(172602,40632,'_fft_hide_nav','field_635bd5e43527c'),(172603,40632,'fft_hide_header_call_to_action','0'),(172604,40632,'_fft_hide_header_call_to_action','field_635bd6723527d'),(172605,40632,'fft_page_sitemap','0'),(172606,40632,'_fft_page_sitemap','field_61af9b34e8181'),(172607,40632,'blocks_0_acfe_flexible_toggle',''),(172608,40632,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(172609,40632,'blocks_0_acfe_flexible_layout_title','Text Block'),(172610,40632,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(172611,40632,'blocks_0_options_theme','#ffffff'),(172612,40632,'_blocks_0_options_theme','field_6176830e2ad17'),(172613,40632,'blocks_0_options',''),(172614,40632,'_blocks_0_options','field_6176830e2ad16'),(172615,40632,'blocks_0_text_block_heading','Overview'),(172616,40632,'_blocks_0_text_block_heading','field_617669d413097'),(172617,40632,'blocks_0_text_block_content','Are you looking to deepen your understanding of the human body and movement? We are pleased to introduce our fundamental principles of movement analysis course, offering insights into comprehending, and analysing human movement.\r\n\r\nOur online course simplifies the complex subject of human movement analysis, providing practitioners with a practical understanding to assess their clients\' movement quality. With this knowledge, you can refine your exercise prescriptions to improve movement quality effectively.'),(172618,40632,'_blocks_0_text_block_content','field_617669ec13098'),(172619,40632,'blocks_1_acfe_flexible_toggle',''),(172620,40632,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(172621,40632,'blocks_1_acfe_flexible_layout_title','Timeline'),(172622,40632,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(172623,40632,'blocks_1_options_theme','#f5f5f5'),(172624,40632,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(172625,40632,'blocks_1_options',''),(172626,40632,'_blocks_1_options','field_6177de53d1195'),(172627,40632,'blocks_1_timeline_content_title',''),(172628,40632,'_blocks_1_timeline_content_title','field_6177de53d1198'),(172629,40632,'blocks_1_timeline_content_heading','Fundamental Principles of Movement Analysis'),(172630,40632,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(172631,40632,'blocks_1_timeline_content_text','Explore the Fundamental Principles of Movement Analysis, divided into four parts'),(172632,40632,'_blocks_1_timeline_content_text','field_6177de53d119a'),(172633,40632,'blocks_1_timeline_content_actions',''),(172634,40632,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(172635,40632,'blocks_1_timeline_content',''),(172636,40632,'_blocks_1_timeline_content','field_6177de53d1197'),(172637,40632,'blocks_1_timeline_items_0_title','Part 1: Principles of Movement Analysis '),(172638,40632,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(172639,40632,'blocks_1_timeline_items_0_text','Understand the foundational principles of human movement. '),(172640,40632,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(172641,40632,'blocks_1_timeline_items_1_title','Part 2: Equilibrium '),(172642,40632,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(172643,40632,'blocks_1_timeline_items_1_text','Learn about maintaining balance and equilibrium within the human body. '),(172644,40632,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(172645,40632,'blocks_1_timeline_items_2_title','Part 3: Levers '),(172646,40632,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(172647,40632,'blocks_1_timeline_items_2_text','Explore the mechanical principles of levers and their role in human movement. '),(172648,40632,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(172649,40632,'blocks_1_timeline_items_3_title','Part 4: Turning Forces '),(172650,40632,'_blocks_1_timeline_items_3_title','field_6177de53d119f'),(172651,40632,'blocks_1_timeline_items_3_text','Understand the dynamics of turning forces and their impact on human movement. '),(172652,40632,'_blocks_1_timeline_items_3_text','field_6177de53d11a0'),(172653,40632,'blocks_1_timeline_items','4'),(172654,40632,'_blocks_1_timeline_items','field_6177de53d119d'),(172655,40632,'blocks_2_acfe_flexible_toggle',''),(172656,40632,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(172657,40632,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(172658,40632,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(172659,40632,'blocks_2_options_theme','#b61234'),(172660,40632,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(172661,40632,'blocks_2_options_reverse','0'),(172662,40632,'_blocks_2_options_reverse','field_61768049bb8ac'),(172663,40632,'blocks_2_options',''),(172664,40632,'_blocks_2_options','field_617682517c334'),(172665,40632,'blocks_2_split_5050_image','40631'),(172666,40632,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(172667,40632,'blocks_2_split_5050_video',''),(172668,40632,'_blocks_2_split_5050_video','field_6239f3160848a'),(172669,40632,'blocks_2_split_5050_content_title',''),(172670,40632,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(172671,40632,'blocks_2_split_5050_content_heading','Ready to Get Started? '),(172672,40632,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(172673,40632,'blocks_2_split_5050_content_text','This downloadable course, accompanied by a quiz, aims to inform, and enhance the skills of human movement practitioners in both intrinsic and extrinsic biomechanics.\r\n\r\nReady to get started? After payment, download your course instantly for immediate access. Refine your understanding of movement analysis!'),(172674,40632,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(172675,40632,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(172676,40632,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(172677,40632,'blocks_2_split_5050_content_actions','1'),(172678,40632,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(172679,40632,'blocks_2_split_5050_content',''),(172680,40632,'_blocks_2_split_5050_content','field_61767afceb8ba'),(172681,40632,'blocks_3_acfe_flexible_toggle',''),(172682,40632,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(172683,40632,'blocks_3_acfe_flexible_layout_title','Text Block'),(172684,40632,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(172685,40632,'blocks_3_options_theme','#ffffff'),(172686,40632,'_blocks_3_options_theme','field_6176830e2ad17'),(172687,40632,'blocks_3_options',''),(172688,40632,'_blocks_3_options','field_6176830e2ad16'),(172689,40632,'blocks_3_text_block_heading','Other Courses'),(172690,40632,'_blocks_3_text_block_heading','field_617669d413097'),(172691,40632,'blocks_3_text_block_content','Check out other courses that are frequently purchased'),(172692,40632,'_blocks_3_text_block_content','field_617669ec13098'),(172693,40632,'blocks_4_acfe_flexible_toggle',''),(172694,40632,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(172695,40632,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(172696,40632,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(172697,40632,'blocks_4_options_theme','#ffffff'),(172698,40632,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(172699,40632,'blocks_4_options',''),(172700,40632,'_blocks_4_options','field_617ac0b7f6c08'),(172701,40632,'blocks_4_show','category'),(172702,40632,'_blocks_4_show','field_61a49cba9d946'),(172703,40632,'blocks_4_category','403'),(172704,40632,'_blocks_4_category','field_61a49cd79d947'),(172705,40632,'blocks_5_acfe_flexible_toggle',''),(172706,40632,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(172707,40632,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(172708,40632,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(172709,40632,'blocks_5_options_theme','#ffffff'),(172710,40632,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(172711,40632,'blocks_5_options_state','0'),(172712,40632,'_blocks_5_options_state','field_6239fcb7508c5'),(172713,40632,'blocks_5_options',''),(172714,40632,'_blocks_5_options','field_6177e2991ac44'),(172715,40632,'blocks_5_content_title',''),(172716,40632,'_blocks_5_content_title','field_64d237e8bb1e2'),(172717,40632,'blocks_5_content_heading','FAQ\'s'),(172718,40632,'_blocks_5_content_heading','field_64d237e8bb1e3'),(172719,40632,'blocks_5_content_text',''),(172720,40632,'_blocks_5_content_text','field_64d237e8bb1e4'),(172721,40632,'blocks_5_content_actions',''),(172722,40632,'_blocks_5_content_actions','field_64d237e8bb1e5'),(172723,40632,'blocks_5_content_align','left'),(172724,40632,'_blocks_5_content_align','field_64d2443e6b6aa'),(172725,40632,'blocks_5_content',''),(172726,40632,'_blocks_5_content','field_64d237e8bb1e1'),(172727,40632,'blocks_5_accordion_content','custom'),(172728,40632,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(172729,40632,'blocks_5_accordion_items',''),(172730,40632,'_blocks_5_accordion_items','field_6177e2991ac4c'),(172731,40632,'blocks_5_actions',''),(172732,40632,'_blocks_5_actions','field_61a746a817f7a'),(172733,40632,'blocks','a:6:{i:0;s:10:\"text_block\";i:1;s:13:\"step_timeline\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:10:\"accordions\";}'),(172734,40632,'_blocks','field_6176696113096'),(172735,40632,'course_label_text',''),(172736,40632,'_course_label_text','field_61e17babf71fa'),(172737,40632,'course_label',''),(172738,40632,'_course_label','field_61e12f92749a7'),(172739,40632,'course_description',''),(172740,40632,'_course_description','field_617ac5788e5e1'),(172741,40632,'course_key_info',''),(172742,40632,'_course_key_info','field_617ac6ad8e5e2'),(172743,40632,'course_included',''),(172744,40632,'_course_included','field_617ac6f08e5e4'),(172745,40633,'hide_hero','0'),(172746,40633,'_hide_hero','field_66a2380fcda39'),(172747,40633,'hero_title','Fundamental Principles of Movement'),(172748,40633,'_hero_title','field_617571fe285e8'),(172749,40633,'hero_text','Explore the Fundamental Principles of Movement Analysis'),(172750,40633,'_hero_text','field_6175723c285e9'),(172751,40633,'hero_actions',''),(172752,40633,'_hero_actions','field_61757270285ea'),(172753,40633,'hero_style','default'),(172754,40633,'_hero_style','field_62051d9dc5324'),(172755,40633,'_thumbnail_id','40630'),(172756,40633,'__thumbnail_id','field_617570855ddaf'),(172757,40633,'hero_image_pos_x','right'),(172758,40633,'_hero_image_pos_x','field_62ec3d05390bb'),(172759,40633,'hero_image_pos_y','top'),(172760,40633,'_hero_image_pos_y','field_62ec3d05390bc'),(172761,40633,'hero_image_pos',''),(172762,40633,'_hero_image_pos','field_62ec3d05390ba'),(172763,40633,'fft_hide_from_listings','0'),(172764,40633,'_fft_hide_from_listings','field_61f1320446ab2'),(172765,40633,'fft_page_format','default'),(172766,40633,'_fft_page_format','field_61ae213f1f218'),(172767,40633,'fft_hide_nav','0'),(172768,40633,'_fft_hide_nav','field_635bd5e43527c'),(172769,40633,'fft_hide_header_call_to_action','0'),(172770,40633,'_fft_hide_header_call_to_action','field_635bd6723527d'),(172771,40633,'fft_page_sitemap','0'),(172772,40633,'_fft_page_sitemap','field_61af9b34e8181'),(172773,40633,'blocks_0_acfe_flexible_toggle',''),(172774,40633,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(172775,40633,'blocks_0_acfe_flexible_layout_title','Text Block'),(172776,40633,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(172777,40633,'blocks_0_options_theme','#ffffff'),(172778,40633,'_blocks_0_options_theme','field_6176830e2ad17'),(172779,40633,'blocks_0_options',''),(172780,40633,'_blocks_0_options','field_6176830e2ad16'),(172781,40633,'blocks_0_text_block_heading','Overview'),(172782,40633,'_blocks_0_text_block_heading','field_617669d413097'),(172783,40633,'blocks_0_text_block_content','Are you looking to deepen your understanding of the human body and movement? We are pleased to introduce our fundamental principles of movement analysis course, offering insights into comprehending, and analysing human movement.\r\n\r\nOur online course simplifies the complex subject of human movement analysis, providing practitioners with a practical understanding to assess their clients\' movement quality. With this knowledge, you can refine your exercise prescriptions to improve movement quality effectively.'),(172784,40633,'_blocks_0_text_block_content','field_617669ec13098'),(172785,40633,'blocks_1_acfe_flexible_toggle',''),(172786,40633,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(172787,40633,'blocks_1_acfe_flexible_layout_title','Timeline'),(172788,40633,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(172789,40633,'blocks_1_options_theme','#f5f5f5'),(172790,40633,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(172791,40633,'blocks_1_options',''),(172792,40633,'_blocks_1_options','field_6177de53d1195'),(172793,40633,'blocks_1_timeline_content_title',''),(172794,40633,'_blocks_1_timeline_content_title','field_6177de53d1198'),(172795,40633,'blocks_1_timeline_content_heading','Fundamental Principles of Movement Analysis'),(172796,40633,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(172797,40633,'blocks_1_timeline_content_text','Explore the Fundamental Principles of Movement Analysis, divided into four parts'),(172798,40633,'_blocks_1_timeline_content_text','field_6177de53d119a'),(172799,40633,'blocks_1_timeline_content_actions',''),(172800,40633,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(172801,40633,'blocks_1_timeline_content',''),(172802,40633,'_blocks_1_timeline_content','field_6177de53d1197'),(172803,40633,'blocks_1_timeline_items_0_title','Part 1: Principles of Movement Analysis '),(172804,40633,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(172805,40633,'blocks_1_timeline_items_0_text','Understand the foundational principles of human movement. '),(172806,40633,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(172807,40633,'blocks_1_timeline_items_1_title','Part 2: Equilibrium '),(172808,40633,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(172809,40633,'blocks_1_timeline_items_1_text','Learn about maintaining balance and equilibrium within the human body. '),(172810,40633,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(172811,40633,'blocks_1_timeline_items_2_title','Part 3: Levers '),(172812,40633,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(172813,40633,'blocks_1_timeline_items_2_text','Explore the mechanical principles of levers and their role in human movement. '),(172814,40633,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(172815,40633,'blocks_1_timeline_items_3_title','Part 4: Turning Forces '),(172816,40633,'_blocks_1_timeline_items_3_title','field_6177de53d119f'),(172817,40633,'blocks_1_timeline_items_3_text','Understand the dynamics of turning forces and their impact on human movement. '),(172818,40633,'_blocks_1_timeline_items_3_text','field_6177de53d11a0'),(172819,40633,'blocks_1_timeline_items','4'),(172820,40633,'_blocks_1_timeline_items','field_6177de53d119d'),(172821,40633,'blocks_2_acfe_flexible_toggle',''),(172822,40633,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(172823,40633,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(172824,40633,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(172825,40633,'blocks_2_options_theme','#b61234'),(172826,40633,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(172827,40633,'blocks_2_options_reverse','0'),(172828,40633,'_blocks_2_options_reverse','field_61768049bb8ac'),(172829,40633,'blocks_2_options',''),(172830,40633,'_blocks_2_options','field_617682517c334'),(172831,40633,'blocks_2_split_5050_image','40631'),(172832,40633,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(172833,40633,'blocks_2_split_5050_video',''),(172834,40633,'_blocks_2_split_5050_video','field_6239f3160848a'),(172835,40633,'blocks_2_split_5050_content_title',''),(172836,40633,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(172837,40633,'blocks_2_split_5050_content_heading','Ready to Get Started? '),(172838,40633,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(172839,40633,'blocks_2_split_5050_content_text','This downloadable course, accompanied by a quiz, aims to inform, and enhance the skills of human movement practitioners in both intrinsic and extrinsic biomechanics.\r\n\r\nReady to get started? After payment, download your course instantly for immediate access. Refine your understanding of movement analysis!'),(172840,40633,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(172841,40633,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(172842,40633,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(172843,40633,'blocks_2_split_5050_content_actions','1'),(172844,40633,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(172845,40633,'blocks_2_split_5050_content',''),(172846,40633,'_blocks_2_split_5050_content','field_61767afceb8ba'),(172847,40633,'blocks_3_acfe_flexible_toggle',''),(172848,40633,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(172849,40633,'blocks_3_acfe_flexible_layout_title','Text Block'),(172850,40633,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(172851,40633,'blocks_3_options_theme','#ffffff'),(172852,40633,'_blocks_3_options_theme','field_6176830e2ad17'),(172853,40633,'blocks_3_options',''),(172854,40633,'_blocks_3_options','field_6176830e2ad16'),(172855,40633,'blocks_3_text_block_heading','Other Courses'),(172856,40633,'_blocks_3_text_block_heading','field_617669d413097'),(172857,40633,'blocks_3_text_block_content','Check out other courses that are frequently purchased'),(172858,40633,'_blocks_3_text_block_content','field_617669ec13098'),(172859,40633,'blocks_4_acfe_flexible_toggle',''),(172860,40633,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(172861,40633,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(172862,40633,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(172863,40633,'blocks_4_options_theme','#ffffff'),(172864,40633,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(172865,40633,'blocks_4_options',''),(172866,40633,'_blocks_4_options','field_617ac0b7f6c08'),(172867,40633,'blocks_4_show','category'),(172868,40633,'_blocks_4_show','field_61a49cba9d946'),(172869,40633,'blocks_4_category','403'),(172870,40633,'_blocks_4_category','field_61a49cd79d947'),(172871,40633,'blocks_5_acfe_flexible_toggle',''),(172872,40633,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(172873,40633,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(172874,40633,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(172875,40633,'blocks_5_options_theme','#ffffff'),(172876,40633,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(172877,40633,'blocks_5_options_state','0'),(172878,40633,'_blocks_5_options_state','field_6239fcb7508c5'),(172879,40633,'blocks_5_options',''),(172880,40633,'_blocks_5_options','field_6177e2991ac44'),(172881,40633,'blocks_5_content_title',''),(172882,40633,'_blocks_5_content_title','field_64d237e8bb1e2'),(172883,40633,'blocks_5_content_heading','FAQ\'s'),(172884,40633,'_blocks_5_content_heading','field_64d237e8bb1e3'),(172885,40633,'blocks_5_content_text',''),(172886,40633,'_blocks_5_content_text','field_64d237e8bb1e4'),(172887,40633,'blocks_5_content_actions',''),(172888,40633,'_blocks_5_content_actions','field_64d237e8bb1e5'),(172889,40633,'blocks_5_content_align','left'),(172890,40633,'_blocks_5_content_align','field_64d2443e6b6aa'),(172891,40633,'blocks_5_content',''),(172892,40633,'_blocks_5_content','field_64d237e8bb1e1'),(172893,40633,'blocks_5_accordion_content','custom'),(172894,40633,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(172895,40633,'blocks_5_accordion_items',''),(172896,40633,'_blocks_5_accordion_items','field_6177e2991ac4c'),(172897,40633,'blocks_5_actions',''),(172898,40633,'_blocks_5_actions','field_61a746a817f7a'),(172899,40633,'blocks','a:6:{i:0;s:10:\"text_block\";i:1;s:13:\"step_timeline\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:10:\"accordions\";}'),(172900,40633,'_blocks','field_6176696113096'),(172901,40633,'course_label_text',''),(172902,40633,'_course_label_text','field_61e17babf71fa'),(172903,40633,'course_label',''),(172904,40633,'_course_label','field_61e12f92749a7'),(172905,40633,'course_description',''),(172906,40633,'_course_description','field_617ac5788e5e1'),(172907,40633,'course_key_info',''),(172908,40633,'_course_key_info','field_617ac6ad8e5e2'),(172909,40633,'course_included',''),(172910,40633,'_course_included','field_617ac6f08e5e4'),(172911,40634,'_wp_attached_file','2024/09/practical-anatomy-series-hero-iamge.jpg'),(172912,40634,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:235;s:4:\"file\";s:47:\"2024/09/practical-anatomy-series-hero-iamge.jpg\";s:8:\"filesize\";i:16539;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"practical-anatomy-series-hero-iamge-400x157.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9043;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:47:\"practical-anatomy-series-hero-iamge-400x235.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12820;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:47:\"practical-anatomy-series-hero-iamge-400x235.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12820;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:47:\"practical-anatomy-series-hero-iamge-300x235.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10672;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:47:\"practical-anatomy-series-hero-iamge-400x235.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:235;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12820;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:47:\"practical-anatomy-series-hero-iamge-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11912;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(172913,40635,'_wp_attached_file','2024/09/practical-anatomy-series-50.50-image.jpg'),(172914,40635,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:48:\"2024/09/practical-anatomy-series-50.50-image.jpg\";s:8:\"filesize\";i:290351;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"practical-anatomy-series-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70107;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"practical-anatomy-series-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105832;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"practical-anatomy-series-50.50-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19930;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"practical-anatomy-series-50.50-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55272;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"practical-anatomy-series-50.50-image-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151819;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:50:\"practical-anatomy-series-50.50-image-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230676;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:48:\"practical-anatomy-series-50.50-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31133;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:48:\"practical-anatomy-series-50.50-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101262;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:50:\"practical-anatomy-series-50.50-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150415;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:48:\"practical-anatomy-series-50.50-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19942;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:48:\"practical-anatomy-series-50.50-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70154;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:49:\"practical-anatomy-series-50.50-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105862;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:48:\"practical-anatomy-series-50.50-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24600;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:48:\"practical-anatomy-series-50.50-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78154;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:49:\"practical-anatomy-series-50.50-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115530;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:48:\"practical-anatomy-series-50.50-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23244;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:48:\"practical-anatomy-series-50.50-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80014;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:49:\"practical-anatomy-series-50.50-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119887;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:48:\"practical-anatomy-series-50.50-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17569;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:48:\"practical-anatomy-series-50.50-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61604;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:49:\"practical-anatomy-series-50.50-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92610;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(172915,40280,'_edit_last','5'),(172916,40280,'_wp_old_date','2024-09-10'),(172917,40280,'hide_hero','0'),(172918,40280,'_hide_hero','field_66a2380fcda39'),(172919,40280,'hero_title','The Practical Anatomy Series'),(172920,40280,'_hero_title','field_617571fe285e8'),(172921,40280,'hero_text',''),(172922,40280,'_hero_text','field_6175723c285e9'),(172923,40280,'hero_actions',''),(172924,40280,'_hero_actions','field_61757270285ea'),(172925,40280,'hero_style','default'),(172926,40280,'_hero_style','field_62051d9dc5324'),(172927,40280,'_thumbnail_id','40634'),(172928,40280,'__thumbnail_id','field_617570855ddaf'),(172929,40280,'hero_image_pos_x','right'),(172930,40280,'_hero_image_pos_x','field_62ec3d05390bb'),(172931,40280,'hero_image_pos_y','top'),(172932,40280,'_hero_image_pos_y','field_62ec3d05390bc'),(172933,40280,'hero_image_pos',''),(172934,40280,'_hero_image_pos','field_62ec3d05390ba'),(172935,40280,'fft_hide_from_listings','0'),(172936,40280,'_fft_hide_from_listings','field_61f1320446ab2'),(172937,40280,'fft_page_format','default'),(172938,40280,'_fft_page_format','field_61ae213f1f218'),(172939,40280,'fft_hide_nav','0'),(172940,40280,'_fft_hide_nav','field_635bd5e43527c'),(172941,40280,'fft_hide_header_call_to_action','0'),(172942,40280,'_fft_hide_header_call_to_action','field_635bd6723527d'),(172943,40280,'fft_page_sitemap','0'),(172944,40280,'_fft_page_sitemap','field_61af9b34e8181'),(172945,40280,'blocks_0_acfe_flexible_toggle',''),(172946,40280,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(172947,40280,'blocks_0_acfe_flexible_layout_title','Template'),(172948,40280,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(172949,40280,'blocks_0_template','39087'),(172950,40280,'_blocks_0_template','field_617bdd570fe01'),(172951,40280,'blocks_1_acfe_flexible_toggle',''),(172952,40280,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(172953,40280,'blocks_1_acfe_flexible_layout_title','Text Block'),(172954,40280,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(172955,40280,'blocks_1_options_theme','#f5f5f5'),(172956,40280,'_blocks_1_options_theme','field_6176830e2ad17'),(172957,40280,'blocks_1_options',''),(172958,40280,'_blocks_1_options','field_6176830e2ad16'),(172959,40280,'blocks_1_text_block_heading','Overview'),(172960,40280,'_blocks_1_text_block_heading','field_617669d413097'),(172961,40280,'blocks_1_text_block_content','Discover the Practical Anatomy Series – a comprehensive learning experience comprising of five Online Recorded Classrooms and five E-Zines. If you\'ve been feeling a gap in your anatomy training or wish to simplify your learning process, this series is designed to support your journey into practical anatomy and intrinsic biomechanics.'),(172962,40280,'_blocks_1_text_block_content','field_617669ec13098'),(172963,40280,'blocks_2_acfe_flexible_toggle',''),(172964,40280,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(172965,40280,'blocks_2_acfe_flexible_layout_title','Timeline'),(172966,40280,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(172967,40280,'blocks_2_options_theme','#ffffff'),(172968,40280,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(172969,40280,'blocks_2_options',''),(172970,40280,'_blocks_2_options','field_6177de53d1195'),(172971,40280,'blocks_2_timeline_content_title',''),(172972,40280,'_blocks_2_timeline_content_title','field_6177de53d1198'),(172973,40280,'blocks_2_timeline_content_heading','Course Info'),(172974,40280,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(172975,40280,'blocks_2_timeline_content_text','Practical anatomy is more than memorisation; it\'s about applying your knowledge to understand your clients\' bodies and implementing practical solutions. Dive into the series for simplified anatomy learning, fun facts, and visual/memory tactics that enhance your understanding. The five online recorded classrooms and accompanying E-Zines provide a holistic approach to practical anatomy and intrinsic biomechanics.'),(172976,40280,'_blocks_2_timeline_content_text','field_6177de53d119a'),(172977,40280,'blocks_2_timeline_content_actions',''),(172978,40280,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(172979,40280,'blocks_2_timeline_content',''),(172980,40280,'_blocks_2_timeline_content','field_6177de53d1197'),(172981,40280,'blocks_2_timeline_items_0_title','CIMSPA Points'),(172982,40280,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(172983,40280,'blocks_2_timeline_items_0_text','Each of the five practical anatomy online webinars included in this series is worth one CPD, contributing to a total of five CIMSPA CPD points with this purchase. Elevate your professional development and enhance your practical skills in anatomy. '),(172984,40280,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(172985,40280,'blocks_2_timeline_items_1_title','Are you ready? '),(172986,40280,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(172987,40280,'blocks_2_timeline_items_1_text','Ready to enhance your anatomy knowledge and practical skills? Upon purchase, you not only gain access to the 5 online recorded classrooms and 5 E-Zines, but also set yourself on a path to deduct the series cost from the full price of our Diploma in Biomechanics Coaching if you choose to enrol.  '),(172988,40280,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(172989,40280,'blocks_2_timeline_items','2'),(172990,40280,'_blocks_2_timeline_items','field_6177de53d119d'),(172991,40280,'blocks_3_acfe_flexible_toggle',''),(172992,40280,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(172993,40280,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(172994,40280,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(172995,40280,'blocks_3_options_theme','#b61234'),(172996,40280,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(172997,40280,'blocks_3_options_reverse','0'),(172998,40280,'_blocks_3_options_reverse','field_61768049bb8ac'),(172999,40280,'blocks_3_options',''),(173000,40280,'_blocks_3_options','field_617682517c334'),(173001,40280,'blocks_3_split_5050_image','40635'),(173002,40280,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(173003,40280,'blocks_3_split_5050_video',''),(173004,40280,'_blocks_3_split_5050_video','field_6239f3160848a'),(173005,40280,'blocks_3_split_5050_content_title',''),(173006,40280,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(173007,40280,'blocks_3_split_5050_content_heading','Invest in your learning journey'),(173008,40280,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(173009,40280,'blocks_3_split_5050_content_text','Invest in your learning journey and take the first step towards a deeper understanding of your clients\' bodies.'),(173010,40280,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(173011,40280,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(173012,40280,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(173013,40280,'blocks_3_split_5050_content_actions','1'),(173014,40280,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(173015,40280,'blocks_3_split_5050_content',''),(173016,40280,'_blocks_3_split_5050_content','field_61767afceb8ba'),(173017,40280,'blocks_4_acfe_flexible_toggle',''),(173018,40280,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(173019,40280,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(173020,40280,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(173021,40280,'blocks_4_options_theme','#ffffff'),(173022,40280,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(173023,40280,'blocks_4_options_state','0'),(173024,40280,'_blocks_4_options_state','field_6239fcb7508c5'),(173025,40280,'blocks_4_options',''),(173026,40280,'_blocks_4_options','field_6177e2991ac44'),(173027,40280,'blocks_4_content_title',''),(173028,40280,'_blocks_4_content_title','field_64d237e8bb1e2'),(173029,40280,'blocks_4_content_heading','FAQ\'s'),(173030,40280,'_blocks_4_content_heading','field_64d237e8bb1e3'),(173031,40280,'blocks_4_content_text',''),(173032,40280,'_blocks_4_content_text','field_64d237e8bb1e4'),(173033,40280,'blocks_4_content_actions',''),(173034,40280,'_blocks_4_content_actions','field_64d237e8bb1e5'),(173035,40280,'blocks_4_content_align','left'),(173036,40280,'_blocks_4_content_align','field_64d2443e6b6aa'),(173037,40280,'blocks_4_content',''),(173038,40280,'_blocks_4_content','field_64d237e8bb1e1'),(173039,40280,'blocks_4_accordion_content','custom'),(173040,40280,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(173041,40280,'blocks_4_accordion_items',''),(173042,40280,'_blocks_4_accordion_items','field_6177e2991ac4c'),(173043,40280,'blocks_4_actions',''),(173044,40280,'_blocks_4_actions','field_61a746a817f7a'),(173045,40280,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:10:\"accordions\";}'),(173046,40280,'_blocks','field_6176696113096'),(173047,40280,'course_label_text','Practical Anatomy Series'),(173048,40280,'_course_label_text','field_61e17babf71fa'),(173049,40280,'course_label',''),(173050,40280,'_course_label','field_61e12f92749a7'),(173051,40280,'course_description','Discover the Practical Anatomy Series – a comprehensive learning experience comprising of five Online Recorded Classrooms and five E-Zines'),(173052,40280,'_course_description','field_617ac5788e5e1'),(173053,40280,'course_key_info','4'),(173054,40280,'_course_key_info','field_617ac6ad8e5e2'),(173055,40280,'course_included','5 x Recorded Classrooms\r\n5 x E-zines'),(173056,40280,'_course_included','field_617ac6f08e5e4'),(173057,40280,'_yoast_wpseo_primary_course-cat','403'),(173058,40280,'_yoast_wpseo_estimated-reading-time-minutes','1'),(173059,40636,'hide_hero','0'),(173060,40636,'_hide_hero','field_66a2380fcda39'),(173061,40636,'hero_title','The Practical Anatomy Series'),(173062,40636,'_hero_title','field_617571fe285e8'),(173063,40636,'hero_text',''),(173064,40636,'_hero_text','field_6175723c285e9'),(173065,40636,'hero_actions',''),(173066,40636,'_hero_actions','field_61757270285ea'),(173067,40636,'hero_style','default'),(173068,40636,'_hero_style','field_62051d9dc5324'),(173069,40636,'_thumbnail_id','40634'),(173070,40636,'__thumbnail_id','field_617570855ddaf'),(173071,40636,'hero_image_pos_x','right'),(173072,40636,'_hero_image_pos_x','field_62ec3d05390bb'),(173073,40636,'hero_image_pos_y','top'),(173074,40636,'_hero_image_pos_y','field_62ec3d05390bc'),(173075,40636,'hero_image_pos',''),(173076,40636,'_hero_image_pos','field_62ec3d05390ba'),(173077,40636,'fft_hide_from_listings','0'),(173078,40636,'_fft_hide_from_listings','field_61f1320446ab2'),(173079,40636,'fft_page_format','default'),(173080,40636,'_fft_page_format','field_61ae213f1f218'),(173081,40636,'fft_hide_nav','0'),(173082,40636,'_fft_hide_nav','field_635bd5e43527c'),(173083,40636,'fft_hide_header_call_to_action','0'),(173084,40636,'_fft_hide_header_call_to_action','field_635bd6723527d'),(173085,40636,'fft_page_sitemap','0'),(173086,40636,'_fft_page_sitemap','field_61af9b34e8181'),(173087,40636,'blocks_0_acfe_flexible_toggle',''),(173088,40636,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(173089,40636,'blocks_0_acfe_flexible_layout_title','Template'),(173090,40636,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(173091,40636,'blocks_0_template','39087'),(173092,40636,'_blocks_0_template','field_617bdd570fe01'),(173093,40636,'blocks_1_acfe_flexible_toggle',''),(173094,40636,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(173095,40636,'blocks_1_acfe_flexible_layout_title','Text Block'),(173096,40636,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(173097,40636,'blocks_1_options_theme','#f5f5f5'),(173098,40636,'_blocks_1_options_theme','field_6176830e2ad17'),(173099,40636,'blocks_1_options',''),(173100,40636,'_blocks_1_options','field_6176830e2ad16'),(173101,40636,'blocks_1_text_block_heading','Overview'),(173102,40636,'_blocks_1_text_block_heading','field_617669d413097'),(173103,40636,'blocks_1_text_block_content','Discover the Practical Anatomy Series – a comprehensive learning experience comprising of five Online Recorded Classrooms and five E-Zines. If you\'ve been feeling a gap in your anatomy training or wish to simplify your learning process, this series is designed to support your journey into practical anatomy and intrinsic biomechanics.'),(173104,40636,'_blocks_1_text_block_content','field_617669ec13098'),(173105,40636,'blocks_2_acfe_flexible_toggle',''),(173106,40636,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(173107,40636,'blocks_2_acfe_flexible_layout_title','Timeline'),(173108,40636,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(173109,40636,'blocks_2_options_theme','#ffffff'),(173110,40636,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(173111,40636,'blocks_2_options',''),(173112,40636,'_blocks_2_options','field_6177de53d1195'),(173113,40636,'blocks_2_timeline_content_title',''),(173114,40636,'_blocks_2_timeline_content_title','field_6177de53d1198'),(173115,40636,'blocks_2_timeline_content_heading','Course Info'),(173116,40636,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(173117,40636,'blocks_2_timeline_content_text','Practical anatomy is more than memorisation; it\'s about applying your knowledge to understand your clients\' bodies and implementing practical solutions. Dive into the series for simplified anatomy learning, fun facts, and visual/memory tactics that enhance your understanding. The five online recorded classrooms and accompanying E-Zines provide a holistic approach to practical anatomy and intrinsic biomechanics.'),(173118,40636,'_blocks_2_timeline_content_text','field_6177de53d119a'),(173119,40636,'blocks_2_timeline_content_actions',''),(173120,40636,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(173121,40636,'blocks_2_timeline_content',''),(173122,40636,'_blocks_2_timeline_content','field_6177de53d1197'),(173123,40636,'blocks_2_timeline_items_0_title','CIMSPA Points'),(173124,40636,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(173125,40636,'blocks_2_timeline_items_0_text','Each of the five practical anatomy online webinars included in this series is worth one CPD, contributing to a total of five CIMSPA CPD points with this purchase. Elevate your professional development and enhance your practical skills in anatomy. '),(173126,40636,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(173127,40636,'blocks_2_timeline_items_1_title','Are you ready? '),(173128,40636,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(173129,40636,'blocks_2_timeline_items_1_text','Ready to enhance your anatomy knowledge and practical skills? Upon purchase, you not only gain access to the 5 online recorded classrooms and 5 E-Zines, but also set yourself on a path to deduct the series cost from the full price of our Diploma in Biomechanics Coaching if you choose to enrol.  '),(173130,40636,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(173131,40636,'blocks_2_timeline_items','2'),(173132,40636,'_blocks_2_timeline_items','field_6177de53d119d'),(173133,40636,'blocks_3_acfe_flexible_toggle',''),(173134,40636,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(173135,40636,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(173136,40636,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(173137,40636,'blocks_3_options_theme','#b61234'),(173138,40636,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(173139,40636,'blocks_3_options_reverse','0'),(173140,40636,'_blocks_3_options_reverse','field_61768049bb8ac'),(173141,40636,'blocks_3_options',''),(173142,40636,'_blocks_3_options','field_617682517c334'),(173143,40636,'blocks_3_split_5050_image','40635'),(173144,40636,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(173145,40636,'blocks_3_split_5050_video',''),(173146,40636,'_blocks_3_split_5050_video','field_6239f3160848a'),(173147,40636,'blocks_3_split_5050_content_title',''),(173148,40636,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(173149,40636,'blocks_3_split_5050_content_heading','Invest in your learning journey'),(173150,40636,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(173151,40636,'blocks_3_split_5050_content_text','Invest in your learning journey and take the first step towards a deeper understanding of your clients\' bodies.'),(173152,40636,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(173153,40636,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(173154,40636,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(173155,40636,'blocks_3_split_5050_content_actions','1'),(173156,40636,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(173157,40636,'blocks_3_split_5050_content',''),(173158,40636,'_blocks_3_split_5050_content','field_61767afceb8ba'),(173159,40636,'blocks_4_acfe_flexible_toggle',''),(173160,40636,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(173161,40636,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(173162,40636,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(173163,40636,'blocks_4_options_theme','#ffffff'),(173164,40636,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(173165,40636,'blocks_4_options_state','0'),(173166,40636,'_blocks_4_options_state','field_6239fcb7508c5'),(173167,40636,'blocks_4_options',''),(173168,40636,'_blocks_4_options','field_6177e2991ac44'),(173169,40636,'blocks_4_content_title',''),(173170,40636,'_blocks_4_content_title','field_64d237e8bb1e2'),(173171,40636,'blocks_4_content_heading','FAQ\'s'),(173172,40636,'_blocks_4_content_heading','field_64d237e8bb1e3'),(173173,40636,'blocks_4_content_text',''),(173174,40636,'_blocks_4_content_text','field_64d237e8bb1e4'),(173175,40636,'blocks_4_content_actions',''),(173176,40636,'_blocks_4_content_actions','field_64d237e8bb1e5'),(173177,40636,'blocks_4_content_align','left'),(173178,40636,'_blocks_4_content_align','field_64d2443e6b6aa'),(173179,40636,'blocks_4_content',''),(173180,40636,'_blocks_4_content','field_64d237e8bb1e1'),(173181,40636,'blocks_4_accordion_content','custom'),(173182,40636,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(173183,40636,'blocks_4_accordion_items',''),(173184,40636,'_blocks_4_accordion_items','field_6177e2991ac4c'),(173185,40636,'blocks_4_actions',''),(173186,40636,'_blocks_4_actions','field_61a746a817f7a'),(173187,40636,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:10:\"accordions\";}'),(173188,40636,'_blocks','field_6176696113096'),(173189,40636,'course_label_text',''),(173190,40636,'_course_label_text','field_61e17babf71fa'),(173191,40636,'course_label',''),(173192,40636,'_course_label','field_61e12f92749a7'),(173193,40636,'course_description',''),(173194,40636,'_course_description','field_617ac5788e5e1'),(173195,40636,'course_key_info',''),(173196,40636,'_course_key_info','field_617ac6ad8e5e2'),(173197,40636,'course_included',''),(173198,40636,'_course_included','field_617ac6f08e5e4'),(173339,40284,'_edit_lock','1727342286:5'),(173340,40638,'_wp_attached_file','2024/09/weak-glutes-hero-image.jpg'),(173341,40638,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:34:\"2024/09/weak-glutes-hero-image.jpg\";s:8:\"filesize\";i:373285;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"weak-glutes-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88635;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"weak-glutes-hero-image-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136130;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"weak-glutes-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26421;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"weak-glutes-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69836;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"weak-glutes-hero-image-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195460;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"weak-glutes-hero-image-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:297465;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"weak-glutes-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34696;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"weak-glutes-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117148;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:36:\"weak-glutes-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177454;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"weak-glutes-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26332;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"weak-glutes-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88606;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"weak-glutes-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134927;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"weak-glutes-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26405;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"weak-glutes-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89102;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"weak-glutes-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135345;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"weak-glutes-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28480;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"weak-glutes-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96076;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"weak-glutes-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146697;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"weak-glutes-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22462;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"weak-glutes-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74642;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"weak-glutes-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113201;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(173342,40284,'_edit_last','5'),(173343,40284,'_wp_old_date','2024-09-10'),(173344,40284,'hide_hero','0'),(173345,40284,'_hide_hero','field_66a2380fcda39'),(173346,40284,'hero_title','Weak Glutes Online Learning'),(173347,40284,'_hero_title','field_617571fe285e8'),(173348,40284,'hero_text','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class '),(173349,40284,'_hero_text','field_6175723c285e9'),(173350,40284,'hero_actions','1'),(173351,40284,'_hero_actions','field_61757270285ea'),(173352,40284,'hero_style','default'),(173353,40284,'_hero_style','field_62051d9dc5324'),(173354,40284,'_thumbnail_id','40638'),(173355,40284,'__thumbnail_id','field_617570855ddaf'),(173356,40284,'hero_image_pos_x','right'),(173357,40284,'_hero_image_pos_x','field_62ec3d05390bb'),(173358,40284,'hero_image_pos_y','top'),(173359,40284,'_hero_image_pos_y','field_62ec3d05390bc'),(173360,40284,'hero_image_pos',''),(173361,40284,'_hero_image_pos','field_62ec3d05390ba'),(173362,40284,'fft_hide_from_listings','0'),(173363,40284,'_fft_hide_from_listings','field_61f1320446ab2'),(173364,40284,'fft_page_format','default'),(173365,40284,'_fft_page_format','field_61ae213f1f218'),(173366,40284,'fft_hide_nav','0'),(173367,40284,'_fft_hide_nav','field_635bd5e43527c'),(173368,40284,'fft_hide_header_call_to_action','0'),(173369,40284,'_fft_hide_header_call_to_action','field_635bd6723527d'),(173370,40284,'fft_page_sitemap','0'),(173371,40284,'_fft_page_sitemap','field_61af9b34e8181'),(173384,40284,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";i:7;s:10:\"text_block\";i:8;s:14:\"course_compare\";}'),(173385,40284,'_blocks','field_6176696113096'),(173386,40284,'course_label_text','Weak Glutes Webinar'),(173387,40284,'_course_label_text','field_61e17babf71fa'),(173388,40284,'course_label',''),(173389,40284,'_course_label','field_61e12f92749a7'),(173390,40284,'course_description','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class'),(173391,40284,'_course_description','field_617ac5788e5e1'),(173392,40284,'course_key_info','3'),(173393,40284,'_course_key_info','field_617ac6ad8e5e2'),(173394,40284,'course_included','Explore the Anatomy\r\n\r\nPractical Assessment\r\n\r\nUnveiling the Culprits\r\n\r\nTargeted Interventions\r\n\r\nKinetic Chain Exploration'),(173395,40284,'_course_included','field_617ac6f08e5e4'),(173396,40284,'_yoast_wpseo_primary_course-cat','403'),(173397,40284,'_yoast_wpseo_estimated-reading-time-minutes','1'),(173398,40639,'hide_hero','0'),(173399,40639,'_hide_hero','field_66a2380fcda39'),(173400,40639,'hero_title','Weak Glutes Online Learning'),(173401,40639,'_hero_title','field_617571fe285e8'),(173402,40639,'hero_text','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class '),(173403,40639,'_hero_text','field_6175723c285e9'),(173404,40639,'hero_actions',''),(173405,40639,'_hero_actions','field_61757270285ea'),(173406,40639,'hero_style','default'),(173407,40639,'_hero_style','field_62051d9dc5324'),(173408,40639,'_thumbnail_id','40638'),(173409,40639,'__thumbnail_id','field_617570855ddaf'),(173410,40639,'hero_image_pos_x','right'),(173411,40639,'_hero_image_pos_x','field_62ec3d05390bb'),(173412,40639,'hero_image_pos_y','top'),(173413,40639,'_hero_image_pos_y','field_62ec3d05390bc'),(173414,40639,'hero_image_pos',''),(173415,40639,'_hero_image_pos','field_62ec3d05390ba'),(173416,40639,'fft_hide_from_listings','0'),(173417,40639,'_fft_hide_from_listings','field_61f1320446ab2'),(173418,40639,'fft_page_format','default'),(173419,40639,'_fft_page_format','field_61ae213f1f218'),(173420,40639,'fft_hide_nav','0'),(173421,40639,'_fft_hide_nav','field_635bd5e43527c'),(173422,40639,'fft_hide_header_call_to_action','0'),(173423,40639,'_fft_hide_header_call_to_action','field_635bd6723527d'),(173424,40639,'fft_page_sitemap','0'),(173425,40639,'_fft_page_sitemap','field_61af9b34e8181'),(173426,40639,'blocks_0_acfe_flexible_toggle',''),(173427,40639,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(173428,40639,'blocks_0_acfe_flexible_layout_title','Text Block'),(173429,40639,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(173430,40639,'blocks_0_options_theme','#ffffff'),(173431,40639,'_blocks_0_options_theme','field_6176830e2ad17'),(173432,40639,'blocks_0_options',''),(173433,40639,'_blocks_0_options','field_6176830e2ad16'),(173434,40639,'blocks_0_text_block_heading','Overview'),(173435,40639,'_blocks_0_text_block_heading','field_617669d413097'),(173436,40639,'blocks_0_text_block_content','<strong>Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class</strong>\r\n\r\n\'Weak Glutes\' may not be what you\'ve always believed. Join our comprehensive webinar to delve deep into the intricacies of glute strength, debunk common myths, and equip yourself with effective solutions for both your clients and personal fitness journey.\r\n\r\nLearn to recognise when the conventional approaches to strength training miss the mark. Our webinar addresses the crucial question: What if your intervention isn\'t yielding the desired results? We\'ll guide you through identifying the root causes and unveil powerful strategies to overcome the elusive issue often misunderstood as \'Weak Glutes.\''),(173437,40639,'_blocks_0_text_block_content','field_617669ec13098'),(173438,40639,'blocks','a:1:{i:0;s:10:\"text_block\";}'),(173439,40639,'_blocks','field_6176696113096'),(173440,40639,'course_label_text',''),(173441,40639,'_course_label_text','field_61e17babf71fa'),(173442,40639,'course_label',''),(173443,40639,'_course_label','field_61e12f92749a7'),(173444,40639,'course_description',''),(173445,40639,'_course_description','field_617ac5788e5e1'),(173446,40639,'course_key_info',''),(173447,40639,'_course_key_info','field_617ac6ad8e5e2'),(173448,40639,'course_included',''),(173449,40639,'_course_included','field_617ac6f08e5e4'),(173450,40284,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(173451,40284,'_hero_actions_0_button','field_61757281285eb'),(173464,40640,'hide_hero','0'),(173465,40640,'_hide_hero','field_66a2380fcda39'),(173466,40640,'hero_title','Weak Glutes Online Learning'),(173467,40640,'_hero_title','field_617571fe285e8'),(173468,40640,'hero_text','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class '),(173469,40640,'_hero_text','field_6175723c285e9'),(173470,40640,'hero_actions','1'),(173471,40640,'_hero_actions','field_61757270285ea'),(173472,40640,'hero_style','default'),(173473,40640,'_hero_style','field_62051d9dc5324'),(173474,40640,'_thumbnail_id','40638'),(173475,40640,'__thumbnail_id','field_617570855ddaf'),(173476,40640,'hero_image_pos_x','right'),(173477,40640,'_hero_image_pos_x','field_62ec3d05390bb'),(173478,40640,'hero_image_pos_y','top'),(173479,40640,'_hero_image_pos_y','field_62ec3d05390bc'),(173480,40640,'hero_image_pos',''),(173481,40640,'_hero_image_pos','field_62ec3d05390ba'),(173482,40640,'fft_hide_from_listings','0'),(173483,40640,'_fft_hide_from_listings','field_61f1320446ab2'),(173484,40640,'fft_page_format','default'),(173485,40640,'_fft_page_format','field_61ae213f1f218'),(173486,40640,'fft_hide_nav','0'),(173487,40640,'_fft_hide_nav','field_635bd5e43527c'),(173488,40640,'fft_hide_header_call_to_action','0'),(173489,40640,'_fft_hide_header_call_to_action','field_635bd6723527d'),(173490,40640,'fft_page_sitemap','0'),(173491,40640,'_fft_page_sitemap','field_61af9b34e8181'),(173492,40640,'blocks_0_acfe_flexible_toggle',''),(173493,40640,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(173494,40640,'blocks_0_acfe_flexible_layout_title','Text Block'),(173495,40640,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(173496,40640,'blocks_0_options_theme','#ffffff'),(173497,40640,'_blocks_0_options_theme','field_6176830e2ad17'),(173498,40640,'blocks_0_options',''),(173499,40640,'_blocks_0_options','field_6176830e2ad16'),(173500,40640,'blocks_0_text_block_heading','Overview'),(173501,40640,'_blocks_0_text_block_heading','field_617669d413097'),(173502,40640,'blocks_0_text_block_content','<strong>Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class</strong>\r\n\r\n\'Weak Glutes\' may not be what you\'ve always believed. Join our comprehensive webinar to delve deep into the intricacies of glute strength, debunk common myths, and equip yourself with effective solutions for both your clients and personal fitness journey.\r\n\r\nLearn to recognise when the conventional approaches to strength training miss the mark. Our webinar addresses the crucial question: What if your intervention isn\'t yielding the desired results? We\'ll guide you through identifying the root causes and unveil powerful strategies to overcome the elusive issue often misunderstood as \'Weak Glutes.\''),(173503,40640,'_blocks_0_text_block_content','field_617669ec13098'),(173504,40640,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:7:\"buttons\";}'),(173505,40640,'_blocks','field_6176696113096'),(173506,40640,'course_label_text',''),(173507,40640,'_course_label_text','field_61e17babf71fa'),(173508,40640,'course_label',''),(173509,40640,'_course_label','field_61e12f92749a7'),(173510,40640,'course_description',''),(173511,40640,'_course_description','field_617ac5788e5e1'),(173512,40640,'course_key_info',''),(173513,40640,'_course_key_info','field_617ac6ad8e5e2'),(173514,40640,'course_included',''),(173515,40640,'_course_included','field_617ac6f08e5e4'),(173516,40640,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(173517,40640,'_hero_actions_0_button','field_61757281285eb'),(173518,40640,'blocks_1_acfe_flexible_toggle',''),(173519,40640,'_blocks_1_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(173520,40640,'blocks_1_acfe_flexible_layout_title','Button(s)'),(173521,40640,'_blocks_1_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(173522,40640,'blocks_1_options_theme','#ffffff'),(173523,40640,'_blocks_1_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(173524,40640,'blocks_1_options',''),(173525,40640,'_blocks_1_options','field_623b03edb6e65'),(173526,40640,'blocks_1_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(173527,40640,'_blocks_1_actions_0_button','field_623b03edb6e6f'),(173528,40640,'blocks_1_actions','1'),(173529,40640,'_blocks_1_actions','field_623b03edb6e6e'),(173688,40642,'hide_hero','0'),(173689,40642,'_hide_hero','field_66a2380fcda39'),(173690,40642,'hero_title','Weak Glutes Online Learning'),(173691,40642,'_hero_title','field_617571fe285e8'),(173692,40642,'hero_text','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class '),(173693,40642,'_hero_text','field_6175723c285e9'),(173694,40642,'hero_actions','1'),(173695,40642,'_hero_actions','field_61757270285ea'),(173696,40642,'hero_style','default'),(173697,40642,'_hero_style','field_62051d9dc5324'),(173698,40642,'_thumbnail_id','40638'),(173699,40642,'__thumbnail_id','field_617570855ddaf'),(173700,40642,'hero_image_pos_x','right'),(173701,40642,'_hero_image_pos_x','field_62ec3d05390bb'),(173702,40642,'hero_image_pos_y','top'),(173703,40642,'_hero_image_pos_y','field_62ec3d05390bc'),(173704,40642,'hero_image_pos',''),(173705,40642,'_hero_image_pos','field_62ec3d05390ba'),(173706,40642,'fft_hide_from_listings','0'),(173707,40642,'_fft_hide_from_listings','field_61f1320446ab2'),(173708,40642,'fft_page_format','default'),(173709,40642,'_fft_page_format','field_61ae213f1f218'),(173710,40642,'fft_hide_nav','0'),(173711,40642,'_fft_hide_nav','field_635bd5e43527c'),(173712,40642,'fft_hide_header_call_to_action','0'),(173713,40642,'_fft_hide_header_call_to_action','field_635bd6723527d'),(173714,40642,'fft_page_sitemap','0'),(173715,40642,'_fft_page_sitemap','field_61af9b34e8181'),(173716,40642,'blocks_0_acfe_flexible_toggle',''),(173717,40642,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(173718,40642,'blocks_0_acfe_flexible_layout_title','Text Block'),(173719,40642,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(173720,40642,'blocks_0_options_theme','#f5f5f5'),(173721,40642,'_blocks_0_options_theme','field_6176830e2ad17'),(173722,40642,'blocks_0_options',''),(173723,40642,'_blocks_0_options','field_6176830e2ad16'),(173724,40642,'blocks_0_text_block_heading','Overview'),(173725,40642,'_blocks_0_text_block_heading','field_617669d413097'),(173726,40642,'blocks_0_text_block_content','<strong>Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class</strong>\r\n\r\n\'Weak Glutes\' may not be what you\'ve always believed. Join our comprehensive webinar to delve deep into the intricacies of glute strength, debunk common myths, and equip yourself with effective solutions for both your clients and personal fitness journey.\r\n\r\nLearn to recognise when the conventional approaches to strength training miss the mark. Our webinar addresses the crucial question: What if your intervention isn\'t yielding the desired results? We\'ll guide you through identifying the root causes and unveil powerful strategies to overcome the elusive issue often misunderstood as \'Weak Glutes.\''),(173727,40642,'_blocks_0_text_block_content','field_617669ec13098'),(173728,40642,'blocks','a:6:{i:0;s:10:\"text_block\";i:1;s:7:\"buttons\";i:2;s:13:\"step_timeline\";i:3;s:10:\"text_block\";i:4;s:7:\"buttons\";i:5;s:10:\"accordions\";}'),(173729,40642,'_blocks','field_6176696113096'),(173730,40642,'course_label_text',''),(173731,40642,'_course_label_text','field_61e17babf71fa'),(173732,40642,'course_label',''),(173733,40642,'_course_label','field_61e12f92749a7'),(173734,40642,'course_description',''),(173735,40642,'_course_description','field_617ac5788e5e1'),(173736,40642,'course_key_info',''),(173737,40642,'_course_key_info','field_617ac6ad8e5e2'),(173738,40642,'course_included',''),(173739,40642,'_course_included','field_617ac6f08e5e4'),(173740,40642,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(173741,40642,'_hero_actions_0_button','field_61757281285eb'),(173742,40642,'blocks_1_acfe_flexible_toggle',''),(173743,40642,'_blocks_1_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(173744,40642,'blocks_1_acfe_flexible_layout_title','Button(s)'),(173745,40642,'_blocks_1_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(173746,40642,'blocks_1_options_theme','#f5f5f5'),(173747,40642,'_blocks_1_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(173748,40642,'blocks_1_options',''),(173749,40642,'_blocks_1_options','field_623b03edb6e65'),(173750,40642,'blocks_1_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(173751,40642,'_blocks_1_actions_0_button','field_623b03edb6e6f'),(173752,40642,'blocks_1_actions','1'),(173753,40642,'_blocks_1_actions','field_623b03edb6e6e'),(173754,40642,'blocks_2_acfe_flexible_toggle',''),(173755,40642,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(173756,40642,'blocks_2_acfe_flexible_layout_title','Timeline'),(173757,40642,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(173758,40642,'blocks_2_options_theme','#ffffff'),(173759,40642,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(173760,40642,'blocks_2_options',''),(173761,40642,'_blocks_2_options','field_6177de53d1195'),(173762,40642,'blocks_2_timeline_content_title',''),(173763,40642,'_blocks_2_timeline_content_title','field_6177de53d1198'),(173764,40642,'blocks_2_timeline_content_heading','What’s inside the masterclass? '),(173765,40642,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(173766,40642,'blocks_2_timeline_content_text',''),(173767,40642,'_blocks_2_timeline_content_text','field_6177de53d119a'),(173768,40642,'blocks_2_timeline_content_actions',''),(173769,40642,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(173770,40642,'blocks_2_timeline_content',''),(173771,40642,'_blocks_2_timeline_content','field_6177de53d1197'),(173772,40642,'blocks_2_timeline_items_0_title','Explore the Anatomy'),(173773,40642,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(173774,40642,'blocks_2_timeline_items_0_text','Unravel the mysteries of the glutes, understanding the unique contribution each muscle makes to fundamental movements.'),(173775,40642,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(173776,40642,'blocks_2_timeline_items_1_title','Practical Assessment'),(173777,40642,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(173778,40642,'blocks_2_timeline_items_1_text','Acquire a straightforward method to assess glute function tailored to your client\'s anatomy and movement patterns.'),(173779,40642,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(173780,40642,'blocks_2_timeline_items_2_title','Unveiling the Culprits'),(173781,40642,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(173782,40642,'blocks_2_timeline_items_2_text','Dive into the top 5 common causes of glute dysfunction, including antagonist dysfunction, nerve tension, lack of mobility, \'tension\' from other body parts, or a combination of these factors.'),(173783,40642,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(173784,40642,'blocks_2_timeline_items_3_title','Targeted Interventions'),(173785,40642,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(173786,40642,'blocks_2_timeline_items_3_text','Gain a toolkit of interventions for programming that addresses each identified cause. Learn the skills to test, intervene, and re-test effectively.'),(173787,40642,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(173788,40642,'blocks_2_timeline_items_4_title','Kinetic Chain Exploration'),(173789,40642,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(173790,40642,'blocks_2_timeline_items_4_text','Understand the integrated system of our kinetic chain, distinguishing between high-quality and poor-quality movement patterns.'),(173791,40642,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(173792,40642,'blocks_2_timeline_items','5'),(173793,40642,'_blocks_2_timeline_items','field_6177de53d119d'),(173794,40642,'blocks_3_acfe_flexible_toggle',''),(173795,40642,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(173796,40642,'blocks_3_acfe_flexible_layout_title','Text Block'),(173797,40642,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(173798,40642,'blocks_3_options_theme','#ffffff'),(173799,40642,'_blocks_3_options_theme','field_6176830e2ad17'),(173800,40642,'blocks_3_options',''),(173801,40642,'_blocks_3_options','field_6176830e2ad16'),(173802,40642,'blocks_3_text_block_heading','Key Takeaways'),(173803,40642,'_blocks_3_text_block_heading','field_617669d413097'),(173804,40642,'blocks_3_text_block_content','<ul>\r\n 	<li>Master the art of testing for glute dysfunction.</li>\r\n 	<li>Identify and address the 5 most prevalent causes of dysfunction.</li>\r\n 	<li>Implement targeted interventions to restore optimal glute function.</li>\r\n</ul>\r\nElevate your understanding of \'Weak Glutes\' and empower yourself with actionable insights.'),(173805,40642,'_blocks_3_text_block_content','field_617669ec13098'),(173806,40642,'blocks_4_acfe_flexible_toggle',''),(173807,40642,'_blocks_4_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(173808,40642,'blocks_4_acfe_flexible_layout_title','Button(s)'),(173809,40642,'_blocks_4_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(173810,40642,'blocks_4_options_theme','#ffffff'),(173811,40642,'_blocks_4_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(173812,40642,'blocks_4_options',''),(173813,40642,'_blocks_4_options','field_623b03edb6e65'),(173814,40642,'blocks_4_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(173815,40642,'_blocks_4_actions_0_button','field_623b03edb6e6f'),(173816,40642,'blocks_4_actions','1'),(173817,40642,'_blocks_4_actions','field_623b03edb6e6e'),(173818,40642,'blocks_5_acfe_flexible_toggle',''),(173819,40642,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(173820,40642,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(173821,40642,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(173822,40642,'blocks_5_options_theme','#ffffff'),(173823,40642,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(173824,40642,'blocks_5_options_state','0'),(173825,40642,'_blocks_5_options_state','field_6239fcb7508c5'),(173826,40642,'blocks_5_options',''),(173827,40642,'_blocks_5_options','field_6177e2991ac44'),(173828,40642,'blocks_5_content_title',''),(173829,40642,'_blocks_5_content_title','field_64d237e8bb1e2'),(173830,40642,'blocks_5_content_heading',''),(173831,40642,'_blocks_5_content_heading','field_64d237e8bb1e3'),(173832,40642,'blocks_5_content_text',''),(173833,40642,'_blocks_5_content_text','field_64d237e8bb1e4'),(173834,40642,'blocks_5_content_actions',''),(173835,40642,'_blocks_5_content_actions','field_64d237e8bb1e5'),(173836,40642,'blocks_5_content_align','left'),(173837,40642,'_blocks_5_content_align','field_64d2443e6b6aa'),(173838,40642,'blocks_5_content',''),(173839,40642,'_blocks_5_content','field_64d237e8bb1e1'),(173840,40642,'blocks_5_accordion_content','custom'),(173841,40642,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(173842,40642,'blocks_5_accordion_items',''),(173843,40642,'_blocks_5_accordion_items','field_6177e2991ac4c'),(173844,40642,'blocks_5_actions',''),(173845,40642,'_blocks_5_actions','field_61a746a817f7a'),(173846,40284,'blocks_0_acfe_flexible_toggle',''),(173847,40284,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(173848,40284,'blocks_0_acfe_flexible_layout_title','Template'),(173849,40284,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(173850,40284,'blocks_0_template','39087'),(173851,40284,'_blocks_0_template','field_617bdd570fe01'),(173852,40284,'blocks_1_acfe_flexible_toggle',''),(173853,40284,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(173854,40284,'blocks_1_acfe_flexible_layout_title','Text Block'),(173855,40284,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(173856,40284,'blocks_1_options_theme','#ffffff'),(173857,40284,'_blocks_1_options_theme','field_6176830e2ad17'),(173858,40284,'blocks_1_options',''),(173859,40284,'_blocks_1_options','field_6176830e2ad16'),(173860,40284,'blocks_1_text_block_heading','Overview'),(173861,40284,'_blocks_1_text_block_heading','field_617669d413097'),(173862,40284,'blocks_1_text_block_content','<strong>Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class</strong>\r\n\r\n\'Weak Glutes\' may not be what you\'ve always believed. Join our comprehensive webinar to delve deep into the intricacies of glute strength, debunk common myths, and equip yourself with effective solutions for both your clients and personal fitness journey.\r\n\r\nLearn to recognise when the conventional approaches to strength training miss the mark. Our webinar addresses the crucial question: What if your intervention isn\'t yielding the desired results? We\'ll guide you through identifying the root causes and unveil powerful strategies to overcome the elusive issue often misunderstood as \'Weak Glutes.\''),(173863,40284,'_blocks_1_text_block_content','field_617669ec13098'),(173864,40284,'blocks_2_acfe_flexible_toggle',''),(173865,40284,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(173866,40284,'blocks_2_acfe_flexible_layout_title','Button(s)'),(173867,40284,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(173868,40284,'blocks_2_options_theme','#ffffff'),(173869,40284,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(173870,40284,'blocks_2_options',''),(173871,40284,'_blocks_2_options','field_623b03edb6e65'),(173872,40284,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(173873,40284,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(173874,40284,'blocks_2_actions','1'),(173875,40284,'_blocks_2_actions','field_623b03edb6e6e'),(173876,40284,'blocks_3_acfe_flexible_toggle',''),(173877,40284,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(173878,40284,'blocks_3_acfe_flexible_layout_title','Timeline'),(173879,40284,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(173880,40284,'blocks_3_options_theme','#ffffff'),(173881,40284,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(173882,40284,'blocks_3_options',''),(173883,40284,'_blocks_3_options','field_6177de53d1195'),(173884,40284,'blocks_3_timeline_content_title',''),(173885,40284,'_blocks_3_timeline_content_title','field_6177de53d1198'),(173886,40284,'blocks_3_timeline_content_heading','What’s inside the masterclass? '),(173887,40284,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(173888,40284,'blocks_3_timeline_content_text',''),(173889,40284,'_blocks_3_timeline_content_text','field_6177de53d119a'),(173890,40284,'blocks_3_timeline_content_actions',''),(173891,40284,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(173892,40284,'blocks_3_timeline_content',''),(173893,40284,'_blocks_3_timeline_content','field_6177de53d1197'),(173894,40284,'blocks_3_timeline_items_0_title','Explore the Anatomy'),(173895,40284,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(173896,40284,'blocks_3_timeline_items_0_text','Unravel the mysteries of the glutes, understanding the unique contribution each muscle makes to fundamental movements.'),(173897,40284,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(173898,40284,'blocks_3_timeline_items_1_title','Practical Assessment'),(173899,40284,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(173900,40284,'blocks_3_timeline_items_1_text','Acquire a straightforward method to assess glute function tailored to your client\'s anatomy and movement patterns.'),(173901,40284,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(173902,40284,'blocks_3_timeline_items_2_title','Unveiling the Culprits'),(173903,40284,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(173904,40284,'blocks_3_timeline_items_2_text','Dive into the top 5 common causes of glute dysfunction, including antagonist dysfunction, nerve tension, lack of mobility, \'tension\' from other body parts, or a combination of these factors.'),(173905,40284,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(173906,40284,'blocks_3_timeline_items_3_title','Targeted Interventions'),(173907,40284,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(173908,40284,'blocks_3_timeline_items_3_text','Gain a toolkit of interventions for programming that addresses each identified cause. Learn the skills to test, intervene, and re-test effectively.'),(173909,40284,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(173910,40284,'blocks_3_timeline_items_4_title','Kinetic Chain Exploration'),(173911,40284,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(173912,40284,'blocks_3_timeline_items_4_text','Understand the integrated system of our kinetic chain, distinguishing between high-quality and poor-quality movement patterns.'),(173913,40284,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(173914,40284,'blocks_3_timeline_items','5'),(173915,40284,'_blocks_3_timeline_items','field_6177de53d119d'),(173916,40284,'blocks_4_acfe_flexible_toggle',''),(173917,40284,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(173918,40284,'blocks_4_acfe_flexible_layout_title','Text Block'),(173919,40284,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(173920,40284,'blocks_4_options_theme','#f5f5f5'),(173921,40284,'_blocks_4_options_theme','field_6176830e2ad17'),(173922,40284,'blocks_4_options',''),(173923,40284,'_blocks_4_options','field_6176830e2ad16'),(173924,40284,'blocks_4_text_block_heading','Key Takeaways'),(173925,40284,'_blocks_4_text_block_heading','field_617669d413097'),(173926,40284,'blocks_4_text_block_content','<ul>\r\n 	<li>Master the art of testing for glute dysfunction.</li>\r\n 	<li>Identify and address the 5 most prevalent causes of dysfunction.</li>\r\n 	<li>Implement targeted interventions to restore optimal glute function.</li>\r\n</ul>\r\nElevate your understanding of \'Weak Glutes\' and empower yourself with actionable insights.'),(173927,40284,'_blocks_4_text_block_content','field_617669ec13098'),(173928,40284,'blocks_5_acfe_flexible_toggle',''),(173929,40284,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(173930,40284,'blocks_5_acfe_flexible_layout_title','Button(s)'),(173931,40284,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(173932,40284,'blocks_5_options_theme','#ffffff'),(173933,40284,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(173934,40284,'blocks_5_options',''),(173935,40284,'_blocks_5_options','field_623b03edb6e65'),(173936,40284,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(173937,40284,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(173938,40284,'blocks_5_actions','1'),(173939,40284,'_blocks_5_actions','field_623b03edb6e6e'),(173940,40284,'blocks_6_acfe_flexible_toggle',''),(173941,40284,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(173942,40284,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(173943,40284,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(173944,40284,'blocks_6_options_theme','#ffffff'),(173945,40284,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(173946,40284,'blocks_6_options_state','0'),(173947,40284,'_blocks_6_options_state','field_6239fcb7508c5'),(173948,40284,'blocks_6_options',''),(173949,40284,'_blocks_6_options','field_6177e2991ac44'),(173950,40284,'blocks_6_content_title',''),(173951,40284,'_blocks_6_content_title','field_64d237e8bb1e2'),(173952,40284,'blocks_6_content_heading',''),(173953,40284,'_blocks_6_content_heading','field_64d237e8bb1e3'),(173954,40284,'blocks_6_content_text',''),(173955,40284,'_blocks_6_content_text','field_64d237e8bb1e4'),(173956,40284,'blocks_6_content_actions',''),(173957,40284,'_blocks_6_content_actions','field_64d237e8bb1e5'),(173958,40284,'blocks_6_content_align','left'),(173959,40284,'_blocks_6_content_align','field_64d2443e6b6aa'),(173960,40284,'blocks_6_content',''),(173961,40284,'_blocks_6_content','field_64d237e8bb1e1'),(173962,40284,'blocks_6_accordion_content','custom'),(173963,40284,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(173964,40284,'blocks_6_accordion_items',''),(173965,40284,'_blocks_6_accordion_items','field_6177e2991ac4c'),(173966,40284,'blocks_6_actions',''),(173967,40284,'_blocks_6_actions','field_61a746a817f7a'),(173980,40643,'hide_hero','0'),(173981,40643,'_hide_hero','field_66a2380fcda39'),(173982,40643,'hero_title','Weak Glutes Online Learning'),(173983,40643,'_hero_title','field_617571fe285e8'),(173984,40643,'hero_text','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class '),(173985,40643,'_hero_text','field_6175723c285e9'),(173986,40643,'hero_actions','1'),(173987,40643,'_hero_actions','field_61757270285ea'),(173988,40643,'hero_style','default'),(173989,40643,'_hero_style','field_62051d9dc5324'),(173990,40643,'_thumbnail_id','40638'),(173991,40643,'__thumbnail_id','field_617570855ddaf'),(173992,40643,'hero_image_pos_x','right'),(173993,40643,'_hero_image_pos_x','field_62ec3d05390bb'),(173994,40643,'hero_image_pos_y','top'),(173995,40643,'_hero_image_pos_y','field_62ec3d05390bc'),(173996,40643,'hero_image_pos',''),(173997,40643,'_hero_image_pos','field_62ec3d05390ba'),(173998,40643,'fft_hide_from_listings','0'),(173999,40643,'_fft_hide_from_listings','field_61f1320446ab2'),(174000,40643,'fft_page_format','default'),(174001,40643,'_fft_page_format','field_61ae213f1f218'),(174002,40643,'fft_hide_nav','0'),(174003,40643,'_fft_hide_nav','field_635bd5e43527c'),(174004,40643,'fft_hide_header_call_to_action','0'),(174005,40643,'_fft_hide_header_call_to_action','field_635bd6723527d'),(174006,40643,'fft_page_sitemap','0'),(174007,40643,'_fft_page_sitemap','field_61af9b34e8181'),(174008,40643,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";i:7;s:14:\"course_compare\";}'),(174009,40643,'_blocks','field_6176696113096'),(174010,40643,'course_label_text',''),(174011,40643,'_course_label_text','field_61e17babf71fa'),(174012,40643,'course_label',''),(174013,40643,'_course_label','field_61e12f92749a7'),(174014,40643,'course_description',''),(174015,40643,'_course_description','field_617ac5788e5e1'),(174016,40643,'course_key_info',''),(174017,40643,'_course_key_info','field_617ac6ad8e5e2'),(174018,40643,'course_included',''),(174019,40643,'_course_included','field_617ac6f08e5e4'),(174020,40643,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174021,40643,'_hero_actions_0_button','field_61757281285eb'),(174022,40643,'blocks_0_acfe_flexible_toggle',''),(174023,40643,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(174024,40643,'blocks_0_acfe_flexible_layout_title','Template'),(174025,40643,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(174026,40643,'blocks_0_template','39087'),(174027,40643,'_blocks_0_template','field_617bdd570fe01'),(174028,40643,'blocks_1_acfe_flexible_toggle',''),(174029,40643,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174030,40643,'blocks_1_acfe_flexible_layout_title','Text Block'),(174031,40643,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174032,40643,'blocks_1_options_theme','#f5f5f5'),(174033,40643,'_blocks_1_options_theme','field_6176830e2ad17'),(174034,40643,'blocks_1_options',''),(174035,40643,'_blocks_1_options','field_6176830e2ad16'),(174036,40643,'blocks_1_text_block_heading','Overview'),(174037,40643,'_blocks_1_text_block_heading','field_617669d413097'),(174038,40643,'blocks_1_text_block_content','<strong>Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class</strong>\r\n\r\n\'Weak Glutes\' may not be what you\'ve always believed. Join our comprehensive webinar to delve deep into the intricacies of glute strength, debunk common myths, and equip yourself with effective solutions for both your clients and personal fitness journey.\r\n\r\nLearn to recognise when the conventional approaches to strength training miss the mark. Our webinar addresses the crucial question: What if your intervention isn\'t yielding the desired results? We\'ll guide you through identifying the root causes and unveil powerful strategies to overcome the elusive issue often misunderstood as \'Weak Glutes.\''),(174039,40643,'_blocks_1_text_block_content','field_617669ec13098'),(174040,40643,'blocks_2_acfe_flexible_toggle',''),(174041,40643,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(174042,40643,'blocks_2_acfe_flexible_layout_title','Button(s)'),(174043,40643,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(174044,40643,'blocks_2_options_theme','#f5f5f5'),(174045,40643,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(174046,40643,'blocks_2_options',''),(174047,40643,'_blocks_2_options','field_623b03edb6e65'),(174048,40643,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174049,40643,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(174050,40643,'blocks_2_actions','1'),(174051,40643,'_blocks_2_actions','field_623b03edb6e6e'),(174052,40643,'blocks_3_acfe_flexible_toggle',''),(174053,40643,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(174054,40643,'blocks_3_acfe_flexible_layout_title','Timeline'),(174055,40643,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(174056,40643,'blocks_3_options_theme','#ffffff'),(174057,40643,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(174058,40643,'blocks_3_options',''),(174059,40643,'_blocks_3_options','field_6177de53d1195'),(174060,40643,'blocks_3_timeline_content_title',''),(174061,40643,'_blocks_3_timeline_content_title','field_6177de53d1198'),(174062,40643,'blocks_3_timeline_content_heading','What’s inside the masterclass? '),(174063,40643,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(174064,40643,'blocks_3_timeline_content_text',''),(174065,40643,'_blocks_3_timeline_content_text','field_6177de53d119a'),(174066,40643,'blocks_3_timeline_content_actions',''),(174067,40643,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(174068,40643,'blocks_3_timeline_content',''),(174069,40643,'_blocks_3_timeline_content','field_6177de53d1197'),(174070,40643,'blocks_3_timeline_items_0_title','Explore the Anatomy'),(174071,40643,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(174072,40643,'blocks_3_timeline_items_0_text','Unravel the mysteries of the glutes, understanding the unique contribution each muscle makes to fundamental movements.'),(174073,40643,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(174074,40643,'blocks_3_timeline_items_1_title','Practical Assessment'),(174075,40643,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(174076,40643,'blocks_3_timeline_items_1_text','Acquire a straightforward method to assess glute function tailored to your client\'s anatomy and movement patterns.'),(174077,40643,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(174078,40643,'blocks_3_timeline_items_2_title','Unveiling the Culprits'),(174079,40643,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(174080,40643,'blocks_3_timeline_items_2_text','Dive into the top 5 common causes of glute dysfunction, including antagonist dysfunction, nerve tension, lack of mobility, \'tension\' from other body parts, or a combination of these factors.'),(174081,40643,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(174082,40643,'blocks_3_timeline_items_3_title','Targeted Interventions'),(174083,40643,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(174084,40643,'blocks_3_timeline_items_3_text','Gain a toolkit of interventions for programming that addresses each identified cause. Learn the skills to test, intervene, and re-test effectively.'),(174085,40643,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(174086,40643,'blocks_3_timeline_items_4_title','Kinetic Chain Exploration'),(174087,40643,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(174088,40643,'blocks_3_timeline_items_4_text','Understand the integrated system of our kinetic chain, distinguishing between high-quality and poor-quality movement patterns.'),(174089,40643,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(174090,40643,'blocks_3_timeline_items','5'),(174091,40643,'_blocks_3_timeline_items','field_6177de53d119d'),(174092,40643,'blocks_4_acfe_flexible_toggle',''),(174093,40643,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174094,40643,'blocks_4_acfe_flexible_layout_title','Text Block'),(174095,40643,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174096,40643,'blocks_4_options_theme','#ffffff'),(174097,40643,'_blocks_4_options_theme','field_6176830e2ad17'),(174098,40643,'blocks_4_options',''),(174099,40643,'_blocks_4_options','field_6176830e2ad16'),(174100,40643,'blocks_4_text_block_heading','Key Takeaways'),(174101,40643,'_blocks_4_text_block_heading','field_617669d413097'),(174102,40643,'blocks_4_text_block_content','<ul>\r\n 	<li>Master the art of testing for glute dysfunction.</li>\r\n 	<li>Identify and address the 5 most prevalent causes of dysfunction.</li>\r\n 	<li>Implement targeted interventions to restore optimal glute function.</li>\r\n</ul>\r\nElevate your understanding of \'Weak Glutes\' and empower yourself with actionable insights.'),(174103,40643,'_blocks_4_text_block_content','field_617669ec13098'),(174104,40643,'blocks_5_acfe_flexible_toggle',''),(174105,40643,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(174106,40643,'blocks_5_acfe_flexible_layout_title','Button(s)'),(174107,40643,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(174108,40643,'blocks_5_options_theme','#ffffff'),(174109,40643,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(174110,40643,'blocks_5_options',''),(174111,40643,'_blocks_5_options','field_623b03edb6e65'),(174112,40643,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174113,40643,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(174114,40643,'blocks_5_actions','1'),(174115,40643,'_blocks_5_actions','field_623b03edb6e6e'),(174116,40643,'blocks_6_acfe_flexible_toggle',''),(174117,40643,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(174118,40643,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(174119,40643,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(174120,40643,'blocks_6_options_theme','#ffffff'),(174121,40643,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(174122,40643,'blocks_6_options_state','0'),(174123,40643,'_blocks_6_options_state','field_6239fcb7508c5'),(174124,40643,'blocks_6_options',''),(174125,40643,'_blocks_6_options','field_6177e2991ac44'),(174126,40643,'blocks_6_content_title',''),(174127,40643,'_blocks_6_content_title','field_64d237e8bb1e2'),(174128,40643,'blocks_6_content_heading',''),(174129,40643,'_blocks_6_content_heading','field_64d237e8bb1e3'),(174130,40643,'blocks_6_content_text',''),(174131,40643,'_blocks_6_content_text','field_64d237e8bb1e4'),(174132,40643,'blocks_6_content_actions',''),(174133,40643,'_blocks_6_content_actions','field_64d237e8bb1e5'),(174134,40643,'blocks_6_content_align','left'),(174135,40643,'_blocks_6_content_align','field_64d2443e6b6aa'),(174136,40643,'blocks_6_content',''),(174137,40643,'_blocks_6_content','field_64d237e8bb1e1'),(174138,40643,'blocks_6_accordion_content','custom'),(174139,40643,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(174140,40643,'blocks_6_accordion_items',''),(174141,40643,'_blocks_6_accordion_items','field_6177e2991ac4c'),(174142,40643,'blocks_6_actions',''),(174143,40643,'_blocks_6_actions','field_61a746a817f7a'),(174144,40643,'blocks_7_acfe_flexible_toggle',''),(174145,40643,'_blocks_7_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(174146,40643,'blocks_7_acfe_flexible_layout_title','Course Comparison'),(174147,40643,'_blocks_7_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(174148,40643,'blocks_7_options_theme','#ffffff'),(174149,40643,'_blocks_7_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(174150,40643,'blocks_7_options',''),(174151,40643,'_blocks_7_options','field_617ac0b7f6c08'),(174152,40643,'blocks_7_show','category'),(174153,40643,'_blocks_7_show','field_61a49cba9d946'),(174154,40643,'blocks_7_category','406'),(174155,40643,'_blocks_7_category','field_61a49cd79d947'),(174156,40284,'blocks_7_acfe_flexible_toggle',''),(174157,40284,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174158,40284,'blocks_7_acfe_flexible_layout_title','Text Block'),(174159,40284,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174160,40284,'blocks_7_options_theme','#b61234'),(174161,40284,'_blocks_7_options_theme','field_6176830e2ad17'),(174162,40284,'blocks_7_options',''),(174163,40284,'_blocks_7_options','field_6176830e2ad16'),(174164,40284,'blocks_7_text_block_heading','Other CPD Courses'),(174165,40284,'_blocks_7_text_block_heading','field_617669d413097'),(174166,40284,'blocks_7_text_block_content','Other frequently purchased CPD courses'),(174167,40284,'_blocks_7_text_block_content','field_617669ec13098'),(174168,40284,'blocks_8_acfe_flexible_toggle',''),(174169,40284,'_blocks_8_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(174170,40284,'blocks_8_acfe_flexible_layout_title','Course Comparison'),(174171,40284,'_blocks_8_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(174172,40284,'blocks_8_options_theme','#b61234'),(174173,40284,'_blocks_8_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(174174,40284,'blocks_8_options',''),(174175,40284,'_blocks_8_options','field_617ac0b7f6c08'),(174176,40284,'blocks_8_show','category'),(174177,40284,'_blocks_8_show','field_61a49cba9d946'),(174178,40284,'blocks_8_category','403'),(174179,40284,'_blocks_8_category','field_61a49cd79d947'),(174180,40644,'hide_hero','0'),(174181,40644,'_hide_hero','field_66a2380fcda39'),(174182,40644,'hero_title','Weak Glutes Online Learning'),(174183,40644,'_hero_title','field_617571fe285e8'),(174184,40644,'hero_text','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class '),(174185,40644,'_hero_text','field_6175723c285e9'),(174186,40644,'hero_actions','1'),(174187,40644,'_hero_actions','field_61757270285ea'),(174188,40644,'hero_style','default'),(174189,40644,'_hero_style','field_62051d9dc5324'),(174190,40644,'_thumbnail_id','40638'),(174191,40644,'__thumbnail_id','field_617570855ddaf'),(174192,40644,'hero_image_pos_x','right'),(174193,40644,'_hero_image_pos_x','field_62ec3d05390bb'),(174194,40644,'hero_image_pos_y','top'),(174195,40644,'_hero_image_pos_y','field_62ec3d05390bc'),(174196,40644,'hero_image_pos',''),(174197,40644,'_hero_image_pos','field_62ec3d05390ba'),(174198,40644,'fft_hide_from_listings','0'),(174199,40644,'_fft_hide_from_listings','field_61f1320446ab2'),(174200,40644,'fft_page_format','default'),(174201,40644,'_fft_page_format','field_61ae213f1f218'),(174202,40644,'fft_hide_nav','0'),(174203,40644,'_fft_hide_nav','field_635bd5e43527c'),(174204,40644,'fft_hide_header_call_to_action','0'),(174205,40644,'_fft_hide_header_call_to_action','field_635bd6723527d'),(174206,40644,'fft_page_sitemap','0'),(174207,40644,'_fft_page_sitemap','field_61af9b34e8181'),(174208,40644,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";i:7;s:10:\"text_block\";i:8;s:14:\"course_compare\";}'),(174209,40644,'_blocks','field_6176696113096'),(174210,40644,'course_label_text',''),(174211,40644,'_course_label_text','field_61e17babf71fa'),(174212,40644,'course_label',''),(174213,40644,'_course_label','field_61e12f92749a7'),(174214,40644,'course_description',''),(174215,40644,'_course_description','field_617ac5788e5e1'),(174216,40644,'course_key_info',''),(174217,40644,'_course_key_info','field_617ac6ad8e5e2'),(174218,40644,'course_included',''),(174219,40644,'_course_included','field_617ac6f08e5e4'),(174220,40644,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174221,40644,'_hero_actions_0_button','field_61757281285eb'),(174222,40644,'blocks_0_acfe_flexible_toggle',''),(174223,40644,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(174224,40644,'blocks_0_acfe_flexible_layout_title','Template'),(174225,40644,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(174226,40644,'blocks_0_template','39087'),(174227,40644,'_blocks_0_template','field_617bdd570fe01'),(174228,40644,'blocks_1_acfe_flexible_toggle',''),(174229,40644,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174230,40644,'blocks_1_acfe_flexible_layout_title','Text Block'),(174231,40644,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174232,40644,'blocks_1_options_theme','#f5f5f5'),(174233,40644,'_blocks_1_options_theme','field_6176830e2ad17'),(174234,40644,'blocks_1_options',''),(174235,40644,'_blocks_1_options','field_6176830e2ad16'),(174236,40644,'blocks_1_text_block_heading','Overview'),(174237,40644,'_blocks_1_text_block_heading','field_617669d413097'),(174238,40644,'blocks_1_text_block_content','<strong>Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class</strong>\r\n\r\n\'Weak Glutes\' may not be what you\'ve always believed. Join our comprehensive webinar to delve deep into the intricacies of glute strength, debunk common myths, and equip yourself with effective solutions for both your clients and personal fitness journey.\r\n\r\nLearn to recognise when the conventional approaches to strength training miss the mark. Our webinar addresses the crucial question: What if your intervention isn\'t yielding the desired results? We\'ll guide you through identifying the root causes and unveil powerful strategies to overcome the elusive issue often misunderstood as \'Weak Glutes.\''),(174239,40644,'_blocks_1_text_block_content','field_617669ec13098'),(174240,40644,'blocks_2_acfe_flexible_toggle',''),(174241,40644,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(174242,40644,'blocks_2_acfe_flexible_layout_title','Button(s)'),(174243,40644,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(174244,40644,'blocks_2_options_theme','#f5f5f5'),(174245,40644,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(174246,40644,'blocks_2_options',''),(174247,40644,'_blocks_2_options','field_623b03edb6e65'),(174248,40644,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174249,40644,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(174250,40644,'blocks_2_actions','1'),(174251,40644,'_blocks_2_actions','field_623b03edb6e6e'),(174252,40644,'blocks_3_acfe_flexible_toggle',''),(174253,40644,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(174254,40644,'blocks_3_acfe_flexible_layout_title','Timeline'),(174255,40644,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(174256,40644,'blocks_3_options_theme','#ffffff'),(174257,40644,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(174258,40644,'blocks_3_options',''),(174259,40644,'_blocks_3_options','field_6177de53d1195'),(174260,40644,'blocks_3_timeline_content_title',''),(174261,40644,'_blocks_3_timeline_content_title','field_6177de53d1198'),(174262,40644,'blocks_3_timeline_content_heading','What’s inside the masterclass? '),(174263,40644,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(174264,40644,'blocks_3_timeline_content_text',''),(174265,40644,'_blocks_3_timeline_content_text','field_6177de53d119a'),(174266,40644,'blocks_3_timeline_content_actions',''),(174267,40644,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(174268,40644,'blocks_3_timeline_content',''),(174269,40644,'_blocks_3_timeline_content','field_6177de53d1197'),(174270,40644,'blocks_3_timeline_items_0_title','Explore the Anatomy'),(174271,40644,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(174272,40644,'blocks_3_timeline_items_0_text','Unravel the mysteries of the glutes, understanding the unique contribution each muscle makes to fundamental movements.'),(174273,40644,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(174274,40644,'blocks_3_timeline_items_1_title','Practical Assessment'),(174275,40644,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(174276,40644,'blocks_3_timeline_items_1_text','Acquire a straightforward method to assess glute function tailored to your client\'s anatomy and movement patterns.'),(174277,40644,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(174278,40644,'blocks_3_timeline_items_2_title','Unveiling the Culprits'),(174279,40644,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(174280,40644,'blocks_3_timeline_items_2_text','Dive into the top 5 common causes of glute dysfunction, including antagonist dysfunction, nerve tension, lack of mobility, \'tension\' from other body parts, or a combination of these factors.'),(174281,40644,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(174282,40644,'blocks_3_timeline_items_3_title','Targeted Interventions'),(174283,40644,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(174284,40644,'blocks_3_timeline_items_3_text','Gain a toolkit of interventions for programming that addresses each identified cause. Learn the skills to test, intervene, and re-test effectively.'),(174285,40644,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(174286,40644,'blocks_3_timeline_items_4_title','Kinetic Chain Exploration'),(174287,40644,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(174288,40644,'blocks_3_timeline_items_4_text','Understand the integrated system of our kinetic chain, distinguishing between high-quality and poor-quality movement patterns.'),(174289,40644,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(174290,40644,'blocks_3_timeline_items','5'),(174291,40644,'_blocks_3_timeline_items','field_6177de53d119d'),(174292,40644,'blocks_4_acfe_flexible_toggle',''),(174293,40644,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174294,40644,'blocks_4_acfe_flexible_layout_title','Text Block'),(174295,40644,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174296,40644,'blocks_4_options_theme','#ffffff'),(174297,40644,'_blocks_4_options_theme','field_6176830e2ad17'),(174298,40644,'blocks_4_options',''),(174299,40644,'_blocks_4_options','field_6176830e2ad16'),(174300,40644,'blocks_4_text_block_heading','Key Takeaways'),(174301,40644,'_blocks_4_text_block_heading','field_617669d413097'),(174302,40644,'blocks_4_text_block_content','<ul>\r\n 	<li>Master the art of testing for glute dysfunction.</li>\r\n 	<li>Identify and address the 5 most prevalent causes of dysfunction.</li>\r\n 	<li>Implement targeted interventions to restore optimal glute function.</li>\r\n</ul>\r\nElevate your understanding of \'Weak Glutes\' and empower yourself with actionable insights.'),(174303,40644,'_blocks_4_text_block_content','field_617669ec13098'),(174304,40644,'blocks_5_acfe_flexible_toggle',''),(174305,40644,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(174306,40644,'blocks_5_acfe_flexible_layout_title','Button(s)'),(174307,40644,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(174308,40644,'blocks_5_options_theme','#ffffff'),(174309,40644,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(174310,40644,'blocks_5_options',''),(174311,40644,'_blocks_5_options','field_623b03edb6e65'),(174312,40644,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174313,40644,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(174314,40644,'blocks_5_actions','1'),(174315,40644,'_blocks_5_actions','field_623b03edb6e6e'),(174316,40644,'blocks_6_acfe_flexible_toggle',''),(174317,40644,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(174318,40644,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(174319,40644,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(174320,40644,'blocks_6_options_theme','#ffffff'),(174321,40644,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(174322,40644,'blocks_6_options_state','0'),(174323,40644,'_blocks_6_options_state','field_6239fcb7508c5'),(174324,40644,'blocks_6_options',''),(174325,40644,'_blocks_6_options','field_6177e2991ac44'),(174326,40644,'blocks_6_content_title',''),(174327,40644,'_blocks_6_content_title','field_64d237e8bb1e2'),(174328,40644,'blocks_6_content_heading',''),(174329,40644,'_blocks_6_content_heading','field_64d237e8bb1e3'),(174330,40644,'blocks_6_content_text',''),(174331,40644,'_blocks_6_content_text','field_64d237e8bb1e4'),(174332,40644,'blocks_6_content_actions',''),(174333,40644,'_blocks_6_content_actions','field_64d237e8bb1e5'),(174334,40644,'blocks_6_content_align','left'),(174335,40644,'_blocks_6_content_align','field_64d2443e6b6aa'),(174336,40644,'blocks_6_content',''),(174337,40644,'_blocks_6_content','field_64d237e8bb1e1'),(174338,40644,'blocks_6_accordion_content','custom'),(174339,40644,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(174340,40644,'blocks_6_accordion_items',''),(174341,40644,'_blocks_6_accordion_items','field_6177e2991ac4c'),(174342,40644,'blocks_6_actions',''),(174343,40644,'_blocks_6_actions','field_61a746a817f7a'),(174344,40644,'blocks_7_acfe_flexible_toggle',''),(174345,40644,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174346,40644,'blocks_7_acfe_flexible_layout_title','Text Block'),(174347,40644,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174348,40644,'blocks_7_options_theme','#ffffff'),(174349,40644,'_blocks_7_options_theme','field_6176830e2ad17'),(174350,40644,'blocks_7_options',''),(174351,40644,'_blocks_7_options','field_6176830e2ad16'),(174352,40644,'blocks_7_text_block_heading','Other CPD Courses'),(174353,40644,'_blocks_7_text_block_heading','field_617669d413097'),(174354,40644,'blocks_7_text_block_content','Other frequently purchased CPD courses'),(174355,40644,'_blocks_7_text_block_content','field_617669ec13098'),(174356,40644,'blocks_8_acfe_flexible_toggle',''),(174357,40644,'_blocks_8_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(174358,40644,'blocks_8_acfe_flexible_layout_title','Course Comparison'),(174359,40644,'_blocks_8_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(174360,40644,'blocks_8_options_theme','#f5f5f5'),(174361,40644,'_blocks_8_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(174362,40644,'blocks_8_options',''),(174363,40644,'_blocks_8_options','field_617ac0b7f6c08'),(174364,40644,'blocks_8_show','category'),(174365,40644,'_blocks_8_show','field_61a49cba9d946'),(174366,40644,'blocks_8_category','403'),(174367,40644,'_blocks_8_category','field_61a49cd79d947'),(174368,40645,'hide_hero','0'),(174369,40645,'_hide_hero','field_66a2380fcda39'),(174370,40645,'hero_title','Weak Glutes Online Learning'),(174371,40645,'_hero_title','field_617571fe285e8'),(174372,40645,'hero_text','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class '),(174373,40645,'_hero_text','field_6175723c285e9'),(174374,40645,'hero_actions','1'),(174375,40645,'_hero_actions','field_61757270285ea'),(174376,40645,'hero_style','default'),(174377,40645,'_hero_style','field_62051d9dc5324'),(174378,40645,'_thumbnail_id','40638'),(174379,40645,'__thumbnail_id','field_617570855ddaf'),(174380,40645,'hero_image_pos_x','right'),(174381,40645,'_hero_image_pos_x','field_62ec3d05390bb'),(174382,40645,'hero_image_pos_y','top'),(174383,40645,'_hero_image_pos_y','field_62ec3d05390bc'),(174384,40645,'hero_image_pos',''),(174385,40645,'_hero_image_pos','field_62ec3d05390ba'),(174386,40645,'fft_hide_from_listings','0'),(174387,40645,'_fft_hide_from_listings','field_61f1320446ab2'),(174388,40645,'fft_page_format','default'),(174389,40645,'_fft_page_format','field_61ae213f1f218'),(174390,40645,'fft_hide_nav','0'),(174391,40645,'_fft_hide_nav','field_635bd5e43527c'),(174392,40645,'fft_hide_header_call_to_action','0'),(174393,40645,'_fft_hide_header_call_to_action','field_635bd6723527d'),(174394,40645,'fft_page_sitemap','0'),(174395,40645,'_fft_page_sitemap','field_61af9b34e8181'),(174396,40645,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";i:7;s:10:\"text_block\";i:8;s:14:\"course_compare\";}'),(174397,40645,'_blocks','field_6176696113096'),(174398,40645,'course_label_text',''),(174399,40645,'_course_label_text','field_61e17babf71fa'),(174400,40645,'course_label',''),(174401,40645,'_course_label','field_61e12f92749a7'),(174402,40645,'course_description',''),(174403,40645,'_course_description','field_617ac5788e5e1'),(174404,40645,'course_key_info',''),(174405,40645,'_course_key_info','field_617ac6ad8e5e2'),(174406,40645,'course_included',''),(174407,40645,'_course_included','field_617ac6f08e5e4'),(174408,40645,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174409,40645,'_hero_actions_0_button','field_61757281285eb'),(174410,40645,'blocks_0_acfe_flexible_toggle',''),(174411,40645,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(174412,40645,'blocks_0_acfe_flexible_layout_title','Template'),(174413,40645,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(174414,40645,'blocks_0_template','39087'),(174415,40645,'_blocks_0_template','field_617bdd570fe01'),(174416,40645,'blocks_1_acfe_flexible_toggle',''),(174417,40645,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174418,40645,'blocks_1_acfe_flexible_layout_title','Text Block'),(174419,40645,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174420,40645,'blocks_1_options_theme','#f5f5f5'),(174421,40645,'_blocks_1_options_theme','field_6176830e2ad17'),(174422,40645,'blocks_1_options',''),(174423,40645,'_blocks_1_options','field_6176830e2ad16'),(174424,40645,'blocks_1_text_block_heading','Overview'),(174425,40645,'_blocks_1_text_block_heading','field_617669d413097'),(174426,40645,'blocks_1_text_block_content','<strong>Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class</strong>\r\n\r\n\'Weak Glutes\' may not be what you\'ve always believed. Join our comprehensive webinar to delve deep into the intricacies of glute strength, debunk common myths, and equip yourself with effective solutions for both your clients and personal fitness journey.\r\n\r\nLearn to recognise when the conventional approaches to strength training miss the mark. Our webinar addresses the crucial question: What if your intervention isn\'t yielding the desired results? We\'ll guide you through identifying the root causes and unveil powerful strategies to overcome the elusive issue often misunderstood as \'Weak Glutes.\''),(174427,40645,'_blocks_1_text_block_content','field_617669ec13098'),(174428,40645,'blocks_2_acfe_flexible_toggle',''),(174429,40645,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(174430,40645,'blocks_2_acfe_flexible_layout_title','Button(s)'),(174431,40645,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(174432,40645,'blocks_2_options_theme','#f5f5f5'),(174433,40645,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(174434,40645,'blocks_2_options',''),(174435,40645,'_blocks_2_options','field_623b03edb6e65'),(174436,40645,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174437,40645,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(174438,40645,'blocks_2_actions','1'),(174439,40645,'_blocks_2_actions','field_623b03edb6e6e'),(174440,40645,'blocks_3_acfe_flexible_toggle',''),(174441,40645,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(174442,40645,'blocks_3_acfe_flexible_layout_title','Timeline'),(174443,40645,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(174444,40645,'blocks_3_options_theme','#ffffff'),(174445,40645,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(174446,40645,'blocks_3_options',''),(174447,40645,'_blocks_3_options','field_6177de53d1195'),(174448,40645,'blocks_3_timeline_content_title',''),(174449,40645,'_blocks_3_timeline_content_title','field_6177de53d1198'),(174450,40645,'blocks_3_timeline_content_heading','What’s inside the masterclass? '),(174451,40645,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(174452,40645,'blocks_3_timeline_content_text',''),(174453,40645,'_blocks_3_timeline_content_text','field_6177de53d119a'),(174454,40645,'blocks_3_timeline_content_actions',''),(174455,40645,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(174456,40645,'blocks_3_timeline_content',''),(174457,40645,'_blocks_3_timeline_content','field_6177de53d1197'),(174458,40645,'blocks_3_timeline_items_0_title','Explore the Anatomy'),(174459,40645,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(174460,40645,'blocks_3_timeline_items_0_text','Unravel the mysteries of the glutes, understanding the unique contribution each muscle makes to fundamental movements.'),(174461,40645,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(174462,40645,'blocks_3_timeline_items_1_title','Practical Assessment'),(174463,40645,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(174464,40645,'blocks_3_timeline_items_1_text','Acquire a straightforward method to assess glute function tailored to your client\'s anatomy and movement patterns.'),(174465,40645,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(174466,40645,'blocks_3_timeline_items_2_title','Unveiling the Culprits'),(174467,40645,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(174468,40645,'blocks_3_timeline_items_2_text','Dive into the top 5 common causes of glute dysfunction, including antagonist dysfunction, nerve tension, lack of mobility, \'tension\' from other body parts, or a combination of these factors.'),(174469,40645,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(174470,40645,'blocks_3_timeline_items_3_title','Targeted Interventions'),(174471,40645,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(174472,40645,'blocks_3_timeline_items_3_text','Gain a toolkit of interventions for programming that addresses each identified cause. Learn the skills to test, intervene, and re-test effectively.'),(174473,40645,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(174474,40645,'blocks_3_timeline_items_4_title','Kinetic Chain Exploration'),(174475,40645,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(174476,40645,'blocks_3_timeline_items_4_text','Understand the integrated system of our kinetic chain, distinguishing between high-quality and poor-quality movement patterns.'),(174477,40645,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(174478,40645,'blocks_3_timeline_items','5'),(174479,40645,'_blocks_3_timeline_items','field_6177de53d119d'),(174480,40645,'blocks_4_acfe_flexible_toggle',''),(174481,40645,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174482,40645,'blocks_4_acfe_flexible_layout_title','Text Block'),(174483,40645,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174484,40645,'blocks_4_options_theme','#ffffff'),(174485,40645,'_blocks_4_options_theme','field_6176830e2ad17'),(174486,40645,'blocks_4_options',''),(174487,40645,'_blocks_4_options','field_6176830e2ad16'),(174488,40645,'blocks_4_text_block_heading','Key Takeaways'),(174489,40645,'_blocks_4_text_block_heading','field_617669d413097'),(174490,40645,'blocks_4_text_block_content','<ul>\r\n 	<li>Master the art of testing for glute dysfunction.</li>\r\n 	<li>Identify and address the 5 most prevalent causes of dysfunction.</li>\r\n 	<li>Implement targeted interventions to restore optimal glute function.</li>\r\n</ul>\r\nElevate your understanding of \'Weak Glutes\' and empower yourself with actionable insights.'),(174491,40645,'_blocks_4_text_block_content','field_617669ec13098'),(174492,40645,'blocks_5_acfe_flexible_toggle',''),(174493,40645,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(174494,40645,'blocks_5_acfe_flexible_layout_title','Button(s)'),(174495,40645,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(174496,40645,'blocks_5_options_theme','#ffffff'),(174497,40645,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(174498,40645,'blocks_5_options',''),(174499,40645,'_blocks_5_options','field_623b03edb6e65'),(174500,40645,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174501,40645,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(174502,40645,'blocks_5_actions','1'),(174503,40645,'_blocks_5_actions','field_623b03edb6e6e'),(174504,40645,'blocks_6_acfe_flexible_toggle',''),(174505,40645,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(174506,40645,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(174507,40645,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(174508,40645,'blocks_6_options_theme','#ffffff'),(174509,40645,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(174510,40645,'blocks_6_options_state','0'),(174511,40645,'_blocks_6_options_state','field_6239fcb7508c5'),(174512,40645,'blocks_6_options',''),(174513,40645,'_blocks_6_options','field_6177e2991ac44'),(174514,40645,'blocks_6_content_title',''),(174515,40645,'_blocks_6_content_title','field_64d237e8bb1e2'),(174516,40645,'blocks_6_content_heading',''),(174517,40645,'_blocks_6_content_heading','field_64d237e8bb1e3'),(174518,40645,'blocks_6_content_text',''),(174519,40645,'_blocks_6_content_text','field_64d237e8bb1e4'),(174520,40645,'blocks_6_content_actions',''),(174521,40645,'_blocks_6_content_actions','field_64d237e8bb1e5'),(174522,40645,'blocks_6_content_align','left'),(174523,40645,'_blocks_6_content_align','field_64d2443e6b6aa'),(174524,40645,'blocks_6_content',''),(174525,40645,'_blocks_6_content','field_64d237e8bb1e1'),(174526,40645,'blocks_6_accordion_content','custom'),(174527,40645,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(174528,40645,'blocks_6_accordion_items',''),(174529,40645,'_blocks_6_accordion_items','field_6177e2991ac4c'),(174530,40645,'blocks_6_actions',''),(174531,40645,'_blocks_6_actions','field_61a746a817f7a'),(174532,40645,'blocks_7_acfe_flexible_toggle',''),(174533,40645,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174534,40645,'blocks_7_acfe_flexible_layout_title','Text Block'),(174535,40645,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174536,40645,'blocks_7_options_theme','#ffffff'),(174537,40645,'_blocks_7_options_theme','field_6176830e2ad17'),(174538,40645,'blocks_7_options',''),(174539,40645,'_blocks_7_options','field_6176830e2ad16'),(174540,40645,'blocks_7_text_block_heading','Other CPD Courses'),(174541,40645,'_blocks_7_text_block_heading','field_617669d413097'),(174542,40645,'blocks_7_text_block_content','Other frequently purchased CPD courses'),(174543,40645,'_blocks_7_text_block_content','field_617669ec13098'),(174544,40645,'blocks_8_acfe_flexible_toggle',''),(174545,40645,'_blocks_8_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(174546,40645,'blocks_8_acfe_flexible_layout_title','Course Comparison'),(174547,40645,'_blocks_8_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(174548,40645,'blocks_8_options_theme','#f5f5f5'),(174549,40645,'_blocks_8_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(174550,40645,'blocks_8_options',''),(174551,40645,'_blocks_8_options','field_617ac0b7f6c08'),(174552,40645,'blocks_8_show','category'),(174553,40645,'_blocks_8_show','field_61a49cba9d946'),(174554,40645,'blocks_8_category','403'),(174555,40645,'_blocks_8_category','field_61a49cd79d947'),(174556,40646,'hide_hero','0'),(174557,40646,'_hide_hero','field_66a2380fcda39'),(174558,40646,'hero_title','Weak Glutes Online Learning'),(174559,40646,'_hero_title','field_617571fe285e8'),(174560,40646,'hero_text','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class '),(174561,40646,'_hero_text','field_6175723c285e9'),(174562,40646,'hero_actions','1'),(174563,40646,'_hero_actions','field_61757270285ea'),(174564,40646,'hero_style','default'),(174565,40646,'_hero_style','field_62051d9dc5324'),(174566,40646,'_thumbnail_id','40638'),(174567,40646,'__thumbnail_id','field_617570855ddaf'),(174568,40646,'hero_image_pos_x','right'),(174569,40646,'_hero_image_pos_x','field_62ec3d05390bb'),(174570,40646,'hero_image_pos_y','top'),(174571,40646,'_hero_image_pos_y','field_62ec3d05390bc'),(174572,40646,'hero_image_pos',''),(174573,40646,'_hero_image_pos','field_62ec3d05390ba'),(174574,40646,'fft_hide_from_listings','0'),(174575,40646,'_fft_hide_from_listings','field_61f1320446ab2'),(174576,40646,'fft_page_format','default'),(174577,40646,'_fft_page_format','field_61ae213f1f218'),(174578,40646,'fft_hide_nav','0'),(174579,40646,'_fft_hide_nav','field_635bd5e43527c'),(174580,40646,'fft_hide_header_call_to_action','0'),(174581,40646,'_fft_hide_header_call_to_action','field_635bd6723527d'),(174582,40646,'fft_page_sitemap','0'),(174583,40646,'_fft_page_sitemap','field_61af9b34e8181'),(174584,40646,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";i:7;s:10:\"text_block\";i:8;s:14:\"course_compare\";}'),(174585,40646,'_blocks','field_6176696113096'),(174586,40646,'course_label_text',''),(174587,40646,'_course_label_text','field_61e17babf71fa'),(174588,40646,'course_label',''),(174589,40646,'_course_label','field_61e12f92749a7'),(174590,40646,'course_description',''),(174591,40646,'_course_description','field_617ac5788e5e1'),(174592,40646,'course_key_info',''),(174593,40646,'_course_key_info','field_617ac6ad8e5e2'),(174594,40646,'course_included',''),(174595,40646,'_course_included','field_617ac6f08e5e4'),(174596,40646,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174597,40646,'_hero_actions_0_button','field_61757281285eb'),(174598,40646,'blocks_0_acfe_flexible_toggle',''),(174599,40646,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(174600,40646,'blocks_0_acfe_flexible_layout_title','Template'),(174601,40646,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(174602,40646,'blocks_0_template','39087'),(174603,40646,'_blocks_0_template','field_617bdd570fe01'),(174604,40646,'blocks_1_acfe_flexible_toggle',''),(174605,40646,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174606,40646,'blocks_1_acfe_flexible_layout_title','Text Block'),(174607,40646,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174608,40646,'blocks_1_options_theme','#ffffff'),(174609,40646,'_blocks_1_options_theme','field_6176830e2ad17'),(174610,40646,'blocks_1_options',''),(174611,40646,'_blocks_1_options','field_6176830e2ad16'),(174612,40646,'blocks_1_text_block_heading','Overview'),(174613,40646,'_blocks_1_text_block_heading','field_617669d413097'),(174614,40646,'blocks_1_text_block_content','<strong>Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class</strong>\r\n\r\n\'Weak Glutes\' may not be what you\'ve always believed. Join our comprehensive webinar to delve deep into the intricacies of glute strength, debunk common myths, and equip yourself with effective solutions for both your clients and personal fitness journey.\r\n\r\nLearn to recognise when the conventional approaches to strength training miss the mark. Our webinar addresses the crucial question: What if your intervention isn\'t yielding the desired results? We\'ll guide you through identifying the root causes and unveil powerful strategies to overcome the elusive issue often misunderstood as \'Weak Glutes.\''),(174615,40646,'_blocks_1_text_block_content','field_617669ec13098'),(174616,40646,'blocks_2_acfe_flexible_toggle',''),(174617,40646,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(174618,40646,'blocks_2_acfe_flexible_layout_title','Button(s)'),(174619,40646,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(174620,40646,'blocks_2_options_theme','#ffffff'),(174621,40646,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(174622,40646,'blocks_2_options',''),(174623,40646,'_blocks_2_options','field_623b03edb6e65'),(174624,40646,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174625,40646,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(174626,40646,'blocks_2_actions','1'),(174627,40646,'_blocks_2_actions','field_623b03edb6e6e'),(174628,40646,'blocks_3_acfe_flexible_toggle',''),(174629,40646,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(174630,40646,'blocks_3_acfe_flexible_layout_title','Timeline'),(174631,40646,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(174632,40646,'blocks_3_options_theme','#ffffff'),(174633,40646,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(174634,40646,'blocks_3_options',''),(174635,40646,'_blocks_3_options','field_6177de53d1195'),(174636,40646,'blocks_3_timeline_content_title',''),(174637,40646,'_blocks_3_timeline_content_title','field_6177de53d1198'),(174638,40646,'blocks_3_timeline_content_heading','What’s inside the masterclass? '),(174639,40646,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(174640,40646,'blocks_3_timeline_content_text',''),(174641,40646,'_blocks_3_timeline_content_text','field_6177de53d119a'),(174642,40646,'blocks_3_timeline_content_actions',''),(174643,40646,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(174644,40646,'blocks_3_timeline_content',''),(174645,40646,'_blocks_3_timeline_content','field_6177de53d1197'),(174646,40646,'blocks_3_timeline_items_0_title','Explore the Anatomy'),(174647,40646,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(174648,40646,'blocks_3_timeline_items_0_text','Unravel the mysteries of the glutes, understanding the unique contribution each muscle makes to fundamental movements.'),(174649,40646,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(174650,40646,'blocks_3_timeline_items_1_title','Practical Assessment'),(174651,40646,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(174652,40646,'blocks_3_timeline_items_1_text','Acquire a straightforward method to assess glute function tailored to your client\'s anatomy and movement patterns.'),(174653,40646,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(174654,40646,'blocks_3_timeline_items_2_title','Unveiling the Culprits'),(174655,40646,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(174656,40646,'blocks_3_timeline_items_2_text','Dive into the top 5 common causes of glute dysfunction, including antagonist dysfunction, nerve tension, lack of mobility, \'tension\' from other body parts, or a combination of these factors.'),(174657,40646,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(174658,40646,'blocks_3_timeline_items_3_title','Targeted Interventions'),(174659,40646,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(174660,40646,'blocks_3_timeline_items_3_text','Gain a toolkit of interventions for programming that addresses each identified cause. Learn the skills to test, intervene, and re-test effectively.'),(174661,40646,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(174662,40646,'blocks_3_timeline_items_4_title','Kinetic Chain Exploration'),(174663,40646,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(174664,40646,'blocks_3_timeline_items_4_text','Understand the integrated system of our kinetic chain, distinguishing between high-quality and poor-quality movement patterns.'),(174665,40646,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(174666,40646,'blocks_3_timeline_items','5'),(174667,40646,'_blocks_3_timeline_items','field_6177de53d119d'),(174668,40646,'blocks_4_acfe_flexible_toggle',''),(174669,40646,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174670,40646,'blocks_4_acfe_flexible_layout_title','Text Block'),(174671,40646,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174672,40646,'blocks_4_options_theme','#ffffff'),(174673,40646,'_blocks_4_options_theme','field_6176830e2ad17'),(174674,40646,'blocks_4_options',''),(174675,40646,'_blocks_4_options','field_6176830e2ad16'),(174676,40646,'blocks_4_text_block_heading','Key Takeaways'),(174677,40646,'_blocks_4_text_block_heading','field_617669d413097'),(174678,40646,'blocks_4_text_block_content','<ul>\r\n 	<li>Master the art of testing for glute dysfunction.</li>\r\n 	<li>Identify and address the 5 most prevalent causes of dysfunction.</li>\r\n 	<li>Implement targeted interventions to restore optimal glute function.</li>\r\n</ul>\r\nElevate your understanding of \'Weak Glutes\' and empower yourself with actionable insights.'),(174679,40646,'_blocks_4_text_block_content','field_617669ec13098'),(174680,40646,'blocks_5_acfe_flexible_toggle',''),(174681,40646,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(174682,40646,'blocks_5_acfe_flexible_layout_title','Button(s)'),(174683,40646,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(174684,40646,'blocks_5_options_theme','#ffffff'),(174685,40646,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(174686,40646,'blocks_5_options',''),(174687,40646,'_blocks_5_options','field_623b03edb6e65'),(174688,40646,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174689,40646,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(174690,40646,'blocks_5_actions','1'),(174691,40646,'_blocks_5_actions','field_623b03edb6e6e'),(174692,40646,'blocks_6_acfe_flexible_toggle',''),(174693,40646,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(174694,40646,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(174695,40646,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(174696,40646,'blocks_6_options_theme','#ffffff'),(174697,40646,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(174698,40646,'blocks_6_options_state','0'),(174699,40646,'_blocks_6_options_state','field_6239fcb7508c5'),(174700,40646,'blocks_6_options',''),(174701,40646,'_blocks_6_options','field_6177e2991ac44'),(174702,40646,'blocks_6_content_title',''),(174703,40646,'_blocks_6_content_title','field_64d237e8bb1e2'),(174704,40646,'blocks_6_content_heading',''),(174705,40646,'_blocks_6_content_heading','field_64d237e8bb1e3'),(174706,40646,'blocks_6_content_text',''),(174707,40646,'_blocks_6_content_text','field_64d237e8bb1e4'),(174708,40646,'blocks_6_content_actions',''),(174709,40646,'_blocks_6_content_actions','field_64d237e8bb1e5'),(174710,40646,'blocks_6_content_align','left'),(174711,40646,'_blocks_6_content_align','field_64d2443e6b6aa'),(174712,40646,'blocks_6_content',''),(174713,40646,'_blocks_6_content','field_64d237e8bb1e1'),(174714,40646,'blocks_6_accordion_content','custom'),(174715,40646,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(174716,40646,'blocks_6_accordion_items',''),(174717,40646,'_blocks_6_accordion_items','field_6177e2991ac4c'),(174718,40646,'blocks_6_actions',''),(174719,40646,'_blocks_6_actions','field_61a746a817f7a'),(174720,40646,'blocks_7_acfe_flexible_toggle',''),(174721,40646,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174722,40646,'blocks_7_acfe_flexible_layout_title','Text Block'),(174723,40646,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174724,40646,'blocks_7_options_theme','#ffffff'),(174725,40646,'_blocks_7_options_theme','field_6176830e2ad17'),(174726,40646,'blocks_7_options',''),(174727,40646,'_blocks_7_options','field_6176830e2ad16'),(174728,40646,'blocks_7_text_block_heading','Other CPD Courses'),(174729,40646,'_blocks_7_text_block_heading','field_617669d413097'),(174730,40646,'blocks_7_text_block_content','Other frequently purchased CPD courses'),(174731,40646,'_blocks_7_text_block_content','field_617669ec13098'),(174732,40646,'blocks_8_acfe_flexible_toggle',''),(174733,40646,'_blocks_8_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(174734,40646,'blocks_8_acfe_flexible_layout_title','Course Comparison'),(174735,40646,'_blocks_8_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(174736,40646,'blocks_8_options_theme','#f5f5f5'),(174737,40646,'_blocks_8_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(174738,40646,'blocks_8_options',''),(174739,40646,'_blocks_8_options','field_617ac0b7f6c08'),(174740,40646,'blocks_8_show','category'),(174741,40646,'_blocks_8_show','field_61a49cba9d946'),(174742,40646,'blocks_8_category','403'),(174743,40646,'_blocks_8_category','field_61a49cd79d947'),(174744,40647,'hide_hero','0'),(174745,40647,'_hide_hero','field_66a2380fcda39'),(174746,40647,'hero_title','Weak Glutes Online Learning'),(174747,40647,'_hero_title','field_617571fe285e8'),(174748,40647,'hero_text','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class '),(174749,40647,'_hero_text','field_6175723c285e9'),(174750,40647,'hero_actions','1'),(174751,40647,'_hero_actions','field_61757270285ea'),(174752,40647,'hero_style','default'),(174753,40647,'_hero_style','field_62051d9dc5324'),(174754,40647,'_thumbnail_id','40638'),(174755,40647,'__thumbnail_id','field_617570855ddaf'),(174756,40647,'hero_image_pos_x','right'),(174757,40647,'_hero_image_pos_x','field_62ec3d05390bb'),(174758,40647,'hero_image_pos_y','top'),(174759,40647,'_hero_image_pos_y','field_62ec3d05390bc'),(174760,40647,'hero_image_pos',''),(174761,40647,'_hero_image_pos','field_62ec3d05390ba'),(174762,40647,'fft_hide_from_listings','0'),(174763,40647,'_fft_hide_from_listings','field_61f1320446ab2'),(174764,40647,'fft_page_format','default'),(174765,40647,'_fft_page_format','field_61ae213f1f218'),(174766,40647,'fft_hide_nav','0'),(174767,40647,'_fft_hide_nav','field_635bd5e43527c'),(174768,40647,'fft_hide_header_call_to_action','0'),(174769,40647,'_fft_hide_header_call_to_action','field_635bd6723527d'),(174770,40647,'fft_page_sitemap','0'),(174771,40647,'_fft_page_sitemap','field_61af9b34e8181'),(174772,40647,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";i:7;s:10:\"text_block\";i:8;s:14:\"course_compare\";}'),(174773,40647,'_blocks','field_6176696113096'),(174774,40647,'course_label_text',''),(174775,40647,'_course_label_text','field_61e17babf71fa'),(174776,40647,'course_label',''),(174777,40647,'_course_label','field_61e12f92749a7'),(174778,40647,'course_description',''),(174779,40647,'_course_description','field_617ac5788e5e1'),(174780,40647,'course_key_info',''),(174781,40647,'_course_key_info','field_617ac6ad8e5e2'),(174782,40647,'course_included',''),(174783,40647,'_course_included','field_617ac6f08e5e4'),(174784,40647,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174785,40647,'_hero_actions_0_button','field_61757281285eb'),(174786,40647,'blocks_0_acfe_flexible_toggle',''),(174787,40647,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(174788,40647,'blocks_0_acfe_flexible_layout_title','Template'),(174789,40647,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(174790,40647,'blocks_0_template','39087'),(174791,40647,'_blocks_0_template','field_617bdd570fe01'),(174792,40647,'blocks_1_acfe_flexible_toggle',''),(174793,40647,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174794,40647,'blocks_1_acfe_flexible_layout_title','Text Block'),(174795,40647,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174796,40647,'blocks_1_options_theme','#ffffff'),(174797,40647,'_blocks_1_options_theme','field_6176830e2ad17'),(174798,40647,'blocks_1_options',''),(174799,40647,'_blocks_1_options','field_6176830e2ad16'),(174800,40647,'blocks_1_text_block_heading','Overview'),(174801,40647,'_blocks_1_text_block_heading','field_617669d413097'),(174802,40647,'blocks_1_text_block_content','<strong>Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class</strong>\r\n\r\n\'Weak Glutes\' may not be what you\'ve always believed. Join our comprehensive webinar to delve deep into the intricacies of glute strength, debunk common myths, and equip yourself with effective solutions for both your clients and personal fitness journey.\r\n\r\nLearn to recognise when the conventional approaches to strength training miss the mark. Our webinar addresses the crucial question: What if your intervention isn\'t yielding the desired results? We\'ll guide you through identifying the root causes and unveil powerful strategies to overcome the elusive issue often misunderstood as \'Weak Glutes.\''),(174803,40647,'_blocks_1_text_block_content','field_617669ec13098'),(174804,40647,'blocks_2_acfe_flexible_toggle',''),(174805,40647,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(174806,40647,'blocks_2_acfe_flexible_layout_title','Button(s)'),(174807,40647,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(174808,40647,'blocks_2_options_theme','#ffffff'),(174809,40647,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(174810,40647,'blocks_2_options',''),(174811,40647,'_blocks_2_options','field_623b03edb6e65'),(174812,40647,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174813,40647,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(174814,40647,'blocks_2_actions','1'),(174815,40647,'_blocks_2_actions','field_623b03edb6e6e'),(174816,40647,'blocks_3_acfe_flexible_toggle',''),(174817,40647,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(174818,40647,'blocks_3_acfe_flexible_layout_title','Timeline'),(174819,40647,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(174820,40647,'blocks_3_options_theme','#ffffff'),(174821,40647,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(174822,40647,'blocks_3_options',''),(174823,40647,'_blocks_3_options','field_6177de53d1195'),(174824,40647,'blocks_3_timeline_content_title',''),(174825,40647,'_blocks_3_timeline_content_title','field_6177de53d1198'),(174826,40647,'blocks_3_timeline_content_heading','What’s inside the masterclass? '),(174827,40647,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(174828,40647,'blocks_3_timeline_content_text',''),(174829,40647,'_blocks_3_timeline_content_text','field_6177de53d119a'),(174830,40647,'blocks_3_timeline_content_actions',''),(174831,40647,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(174832,40647,'blocks_3_timeline_content',''),(174833,40647,'_blocks_3_timeline_content','field_6177de53d1197'),(174834,40647,'blocks_3_timeline_items_0_title','Explore the Anatomy'),(174835,40647,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(174836,40647,'blocks_3_timeline_items_0_text','Unravel the mysteries of the glutes, understanding the unique contribution each muscle makes to fundamental movements.'),(174837,40647,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(174838,40647,'blocks_3_timeline_items_1_title','Practical Assessment'),(174839,40647,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(174840,40647,'blocks_3_timeline_items_1_text','Acquire a straightforward method to assess glute function tailored to your client\'s anatomy and movement patterns.'),(174841,40647,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(174842,40647,'blocks_3_timeline_items_2_title','Unveiling the Culprits'),(174843,40647,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(174844,40647,'blocks_3_timeline_items_2_text','Dive into the top 5 common causes of glute dysfunction, including antagonist dysfunction, nerve tension, lack of mobility, \'tension\' from other body parts, or a combination of these factors.'),(174845,40647,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(174846,40647,'blocks_3_timeline_items_3_title','Targeted Interventions'),(174847,40647,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(174848,40647,'blocks_3_timeline_items_3_text','Gain a toolkit of interventions for programming that addresses each identified cause. Learn the skills to test, intervene, and re-test effectively.'),(174849,40647,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(174850,40647,'blocks_3_timeline_items_4_title','Kinetic Chain Exploration'),(174851,40647,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(174852,40647,'blocks_3_timeline_items_4_text','Understand the integrated system of our kinetic chain, distinguishing between high-quality and poor-quality movement patterns.'),(174853,40647,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(174854,40647,'blocks_3_timeline_items','5'),(174855,40647,'_blocks_3_timeline_items','field_6177de53d119d'),(174856,40647,'blocks_4_acfe_flexible_toggle',''),(174857,40647,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174858,40647,'blocks_4_acfe_flexible_layout_title','Text Block'),(174859,40647,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174860,40647,'blocks_4_options_theme','#f5f5f5'),(174861,40647,'_blocks_4_options_theme','field_6176830e2ad17'),(174862,40647,'blocks_4_options',''),(174863,40647,'_blocks_4_options','field_6176830e2ad16'),(174864,40647,'blocks_4_text_block_heading','Key Takeaways'),(174865,40647,'_blocks_4_text_block_heading','field_617669d413097'),(174866,40647,'blocks_4_text_block_content','<ul>\r\n 	<li>Master the art of testing for glute dysfunction.</li>\r\n 	<li>Identify and address the 5 most prevalent causes of dysfunction.</li>\r\n 	<li>Implement targeted interventions to restore optimal glute function.</li>\r\n</ul>\r\nElevate your understanding of \'Weak Glutes\' and empower yourself with actionable insights.'),(174867,40647,'_blocks_4_text_block_content','field_617669ec13098'),(174868,40647,'blocks_5_acfe_flexible_toggle',''),(174869,40647,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(174870,40647,'blocks_5_acfe_flexible_layout_title','Button(s)'),(174871,40647,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(174872,40647,'blocks_5_options_theme','#ffffff'),(174873,40647,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(174874,40647,'blocks_5_options',''),(174875,40647,'_blocks_5_options','field_623b03edb6e65'),(174876,40647,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174877,40647,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(174878,40647,'blocks_5_actions','1'),(174879,40647,'_blocks_5_actions','field_623b03edb6e6e'),(174880,40647,'blocks_6_acfe_flexible_toggle',''),(174881,40647,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(174882,40647,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(174883,40647,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(174884,40647,'blocks_6_options_theme','#ffffff'),(174885,40647,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(174886,40647,'blocks_6_options_state','0'),(174887,40647,'_blocks_6_options_state','field_6239fcb7508c5'),(174888,40647,'blocks_6_options',''),(174889,40647,'_blocks_6_options','field_6177e2991ac44'),(174890,40647,'blocks_6_content_title',''),(174891,40647,'_blocks_6_content_title','field_64d237e8bb1e2'),(174892,40647,'blocks_6_content_heading',''),(174893,40647,'_blocks_6_content_heading','field_64d237e8bb1e3'),(174894,40647,'blocks_6_content_text',''),(174895,40647,'_blocks_6_content_text','field_64d237e8bb1e4'),(174896,40647,'blocks_6_content_actions',''),(174897,40647,'_blocks_6_content_actions','field_64d237e8bb1e5'),(174898,40647,'blocks_6_content_align','left'),(174899,40647,'_blocks_6_content_align','field_64d2443e6b6aa'),(174900,40647,'blocks_6_content',''),(174901,40647,'_blocks_6_content','field_64d237e8bb1e1'),(174902,40647,'blocks_6_accordion_content','custom'),(174903,40647,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(174904,40647,'blocks_6_accordion_items',''),(174905,40647,'_blocks_6_accordion_items','field_6177e2991ac4c'),(174906,40647,'blocks_6_actions',''),(174907,40647,'_blocks_6_actions','field_61a746a817f7a'),(174908,40647,'blocks_7_acfe_flexible_toggle',''),(174909,40647,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174910,40647,'blocks_7_acfe_flexible_layout_title','Text Block'),(174911,40647,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174912,40647,'blocks_7_options_theme','#ffffff'),(174913,40647,'_blocks_7_options_theme','field_6176830e2ad17'),(174914,40647,'blocks_7_options',''),(174915,40647,'_blocks_7_options','field_6176830e2ad16'),(174916,40647,'blocks_7_text_block_heading','Other CPD Courses'),(174917,40647,'_blocks_7_text_block_heading','field_617669d413097'),(174918,40647,'blocks_7_text_block_content','Other frequently purchased CPD courses'),(174919,40647,'_blocks_7_text_block_content','field_617669ec13098'),(174920,40647,'blocks_8_acfe_flexible_toggle',''),(174921,40647,'_blocks_8_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(174922,40647,'blocks_8_acfe_flexible_layout_title','Course Comparison'),(174923,40647,'_blocks_8_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(174924,40647,'blocks_8_options_theme','#f5f5f5'),(174925,40647,'_blocks_8_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(174926,40647,'blocks_8_options',''),(174927,40647,'_blocks_8_options','field_617ac0b7f6c08'),(174928,40647,'blocks_8_show','category'),(174929,40647,'_blocks_8_show','field_61a49cba9d946'),(174930,40647,'blocks_8_category','403'),(174931,40647,'_blocks_8_category','field_61a49cd79d947'),(174932,40648,'hide_hero','0'),(174933,40648,'_hide_hero','field_66a2380fcda39'),(174934,40648,'hero_title','Weak Glutes Online Learning'),(174935,40648,'_hero_title','field_617571fe285e8'),(174936,40648,'hero_text','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class '),(174937,40648,'_hero_text','field_6175723c285e9'),(174938,40648,'hero_actions','1'),(174939,40648,'_hero_actions','field_61757270285ea'),(174940,40648,'hero_style','default'),(174941,40648,'_hero_style','field_62051d9dc5324'),(174942,40648,'_thumbnail_id','40638'),(174943,40648,'__thumbnail_id','field_617570855ddaf'),(174944,40648,'hero_image_pos_x','right'),(174945,40648,'_hero_image_pos_x','field_62ec3d05390bb'),(174946,40648,'hero_image_pos_y','top'),(174947,40648,'_hero_image_pos_y','field_62ec3d05390bc'),(174948,40648,'hero_image_pos',''),(174949,40648,'_hero_image_pos','field_62ec3d05390ba'),(174950,40648,'fft_hide_from_listings','0'),(174951,40648,'_fft_hide_from_listings','field_61f1320446ab2'),(174952,40648,'fft_page_format','default'),(174953,40648,'_fft_page_format','field_61ae213f1f218'),(174954,40648,'fft_hide_nav','0'),(174955,40648,'_fft_hide_nav','field_635bd5e43527c'),(174956,40648,'fft_hide_header_call_to_action','0'),(174957,40648,'_fft_hide_header_call_to_action','field_635bd6723527d'),(174958,40648,'fft_page_sitemap','0'),(174959,40648,'_fft_page_sitemap','field_61af9b34e8181'),(174960,40648,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";i:7;s:10:\"text_block\";i:8;s:14:\"course_compare\";}'),(174961,40648,'_blocks','field_6176696113096'),(174962,40648,'course_label_text',''),(174963,40648,'_course_label_text','field_61e17babf71fa'),(174964,40648,'course_label',''),(174965,40648,'_course_label','field_61e12f92749a7'),(174966,40648,'course_description',''),(174967,40648,'_course_description','field_617ac5788e5e1'),(174968,40648,'course_key_info',''),(174969,40648,'_course_key_info','field_617ac6ad8e5e2'),(174970,40648,'course_included',''),(174971,40648,'_course_included','field_617ac6f08e5e4'),(174972,40648,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(174973,40648,'_hero_actions_0_button','field_61757281285eb'),(174974,40648,'blocks_0_acfe_flexible_toggle',''),(174975,40648,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(174976,40648,'blocks_0_acfe_flexible_layout_title','Template'),(174977,40648,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(174978,40648,'blocks_0_template','39087'),(174979,40648,'_blocks_0_template','field_617bdd570fe01'),(174980,40648,'blocks_1_acfe_flexible_toggle',''),(174981,40648,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(174982,40648,'blocks_1_acfe_flexible_layout_title','Text Block'),(174983,40648,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(174984,40648,'blocks_1_options_theme','#ffffff'),(174985,40648,'_blocks_1_options_theme','field_6176830e2ad17'),(174986,40648,'blocks_1_options',''),(174987,40648,'_blocks_1_options','field_6176830e2ad16'),(174988,40648,'blocks_1_text_block_heading','Overview'),(174989,40648,'_blocks_1_text_block_heading','field_617669d413097'),(174990,40648,'blocks_1_text_block_content','<strong>Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class</strong>\r\n\r\n\'Weak Glutes\' may not be what you\'ve always believed. Join our comprehensive webinar to delve deep into the intricacies of glute strength, debunk common myths, and equip yourself with effective solutions for both your clients and personal fitness journey.\r\n\r\nLearn to recognise when the conventional approaches to strength training miss the mark. Our webinar addresses the crucial question: What if your intervention isn\'t yielding the desired results? We\'ll guide you through identifying the root causes and unveil powerful strategies to overcome the elusive issue often misunderstood as \'Weak Glutes.\''),(174991,40648,'_blocks_1_text_block_content','field_617669ec13098'),(174992,40648,'blocks_2_acfe_flexible_toggle',''),(174993,40648,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(174994,40648,'blocks_2_acfe_flexible_layout_title','Button(s)'),(174995,40648,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(174996,40648,'blocks_2_options_theme','#ffffff'),(174997,40648,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(174998,40648,'blocks_2_options',''),(174999,40648,'_blocks_2_options','field_623b03edb6e65'),(175000,40648,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175001,40648,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(175002,40648,'blocks_2_actions','1'),(175003,40648,'_blocks_2_actions','field_623b03edb6e6e'),(175004,40648,'blocks_3_acfe_flexible_toggle',''),(175005,40648,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(175006,40648,'blocks_3_acfe_flexible_layout_title','Timeline'),(175007,40648,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(175008,40648,'blocks_3_options_theme','#ffffff'),(175009,40648,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(175010,40648,'blocks_3_options',''),(175011,40648,'_blocks_3_options','field_6177de53d1195'),(175012,40648,'blocks_3_timeline_content_title',''),(175013,40648,'_blocks_3_timeline_content_title','field_6177de53d1198'),(175014,40648,'blocks_3_timeline_content_heading','What’s inside the masterclass? '),(175015,40648,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(175016,40648,'blocks_3_timeline_content_text',''),(175017,40648,'_blocks_3_timeline_content_text','field_6177de53d119a'),(175018,40648,'blocks_3_timeline_content_actions',''),(175019,40648,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(175020,40648,'blocks_3_timeline_content',''),(175021,40648,'_blocks_3_timeline_content','field_6177de53d1197'),(175022,40648,'blocks_3_timeline_items_0_title','Explore the Anatomy'),(175023,40648,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(175024,40648,'blocks_3_timeline_items_0_text','Unravel the mysteries of the glutes, understanding the unique contribution each muscle makes to fundamental movements.'),(175025,40648,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(175026,40648,'blocks_3_timeline_items_1_title','Practical Assessment'),(175027,40648,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(175028,40648,'blocks_3_timeline_items_1_text','Acquire a straightforward method to assess glute function tailored to your client\'s anatomy and movement patterns.'),(175029,40648,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(175030,40648,'blocks_3_timeline_items_2_title','Unveiling the Culprits'),(175031,40648,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(175032,40648,'blocks_3_timeline_items_2_text','Dive into the top 5 common causes of glute dysfunction, including antagonist dysfunction, nerve tension, lack of mobility, \'tension\' from other body parts, or a combination of these factors.'),(175033,40648,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(175034,40648,'blocks_3_timeline_items_3_title','Targeted Interventions'),(175035,40648,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(175036,40648,'blocks_3_timeline_items_3_text','Gain a toolkit of interventions for programming that addresses each identified cause. Learn the skills to test, intervene, and re-test effectively.'),(175037,40648,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(175038,40648,'blocks_3_timeline_items_4_title','Kinetic Chain Exploration'),(175039,40648,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(175040,40648,'blocks_3_timeline_items_4_text','Understand the integrated system of our kinetic chain, distinguishing between high-quality and poor-quality movement patterns.'),(175041,40648,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(175042,40648,'blocks_3_timeline_items','5'),(175043,40648,'_blocks_3_timeline_items','field_6177de53d119d'),(175044,40648,'blocks_4_acfe_flexible_toggle',''),(175045,40648,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(175046,40648,'blocks_4_acfe_flexible_layout_title','Text Block'),(175047,40648,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(175048,40648,'blocks_4_options_theme','#f5f5f5'),(175049,40648,'_blocks_4_options_theme','field_6176830e2ad17'),(175050,40648,'blocks_4_options',''),(175051,40648,'_blocks_4_options','field_6176830e2ad16'),(175052,40648,'blocks_4_text_block_heading','Key Takeaways'),(175053,40648,'_blocks_4_text_block_heading','field_617669d413097'),(175054,40648,'blocks_4_text_block_content','<ul>\r\n 	<li>Master the art of testing for glute dysfunction.</li>\r\n 	<li>Identify and address the 5 most prevalent causes of dysfunction.</li>\r\n 	<li>Implement targeted interventions to restore optimal glute function.</li>\r\n</ul>\r\nElevate your understanding of \'Weak Glutes\' and empower yourself with actionable insights.'),(175055,40648,'_blocks_4_text_block_content','field_617669ec13098'),(175056,40648,'blocks_5_acfe_flexible_toggle',''),(175057,40648,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(175058,40648,'blocks_5_acfe_flexible_layout_title','Button(s)'),(175059,40648,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(175060,40648,'blocks_5_options_theme','#ffffff'),(175061,40648,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(175062,40648,'blocks_5_options',''),(175063,40648,'_blocks_5_options','field_623b03edb6e65'),(175064,40648,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175065,40648,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(175066,40648,'blocks_5_actions','1'),(175067,40648,'_blocks_5_actions','field_623b03edb6e6e'),(175068,40648,'blocks_6_acfe_flexible_toggle',''),(175069,40648,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(175070,40648,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(175071,40648,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(175072,40648,'blocks_6_options_theme','#ffffff'),(175073,40648,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(175074,40648,'blocks_6_options_state','0'),(175075,40648,'_blocks_6_options_state','field_6239fcb7508c5'),(175076,40648,'blocks_6_options',''),(175077,40648,'_blocks_6_options','field_6177e2991ac44'),(175078,40648,'blocks_6_content_title',''),(175079,40648,'_blocks_6_content_title','field_64d237e8bb1e2'),(175080,40648,'blocks_6_content_heading',''),(175081,40648,'_blocks_6_content_heading','field_64d237e8bb1e3'),(175082,40648,'blocks_6_content_text',''),(175083,40648,'_blocks_6_content_text','field_64d237e8bb1e4'),(175084,40648,'blocks_6_content_actions',''),(175085,40648,'_blocks_6_content_actions','field_64d237e8bb1e5'),(175086,40648,'blocks_6_content_align','left'),(175087,40648,'_blocks_6_content_align','field_64d2443e6b6aa'),(175088,40648,'blocks_6_content',''),(175089,40648,'_blocks_6_content','field_64d237e8bb1e1'),(175090,40648,'blocks_6_accordion_content','custom'),(175091,40648,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(175092,40648,'blocks_6_accordion_items',''),(175093,40648,'_blocks_6_accordion_items','field_6177e2991ac4c'),(175094,40648,'blocks_6_actions',''),(175095,40648,'_blocks_6_actions','field_61a746a817f7a'),(175096,40648,'blocks_7_acfe_flexible_toggle',''),(175097,40648,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(175098,40648,'blocks_7_acfe_flexible_layout_title','Text Block'),(175099,40648,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(175100,40648,'blocks_7_options_theme','#b61234'),(175101,40648,'_blocks_7_options_theme','field_6176830e2ad17'),(175102,40648,'blocks_7_options',''),(175103,40648,'_blocks_7_options','field_6176830e2ad16'),(175104,40648,'blocks_7_text_block_heading','Other CPD Courses'),(175105,40648,'_blocks_7_text_block_heading','field_617669d413097'),(175106,40648,'blocks_7_text_block_content','Other frequently purchased CPD courses'),(175107,40648,'_blocks_7_text_block_content','field_617669ec13098'),(175108,40648,'blocks_8_acfe_flexible_toggle',''),(175109,40648,'_blocks_8_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(175110,40648,'blocks_8_acfe_flexible_layout_title','Course Comparison'),(175111,40648,'_blocks_8_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(175112,40648,'blocks_8_options_theme','#b61234'),(175113,40648,'_blocks_8_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(175114,40648,'blocks_8_options',''),(175115,40648,'_blocks_8_options','field_617ac0b7f6c08'),(175116,40648,'blocks_8_show','category'),(175117,40648,'_blocks_8_show','field_61a49cba9d946'),(175118,40648,'blocks_8_category','403'),(175119,40648,'_blocks_8_category','field_61a49cd79d947'),(175308,40279,'_edit_lock','1727340426:5'),(175309,40650,'_wp_attached_file','2024/09/pain-science-made-simple-hero-iamge.jpg'),(175310,40650,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1248;s:4:\"file\";s:47:\"2024/09/pain-science-made-simple-hero-iamge.jpg\";s:8:\"filesize\";i:105151;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"pain-science-made-simple-hero-iamge-900x439.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:439;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23830;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"pain-science-made-simple-hero-iamge-1200x585.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36355;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"pain-science-made-simple-hero-iamge-400x195.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7730;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"pain-science-made-simple-hero-iamge-768x374.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18961;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"pain-science-made-simple-hero-iamge-1536x749.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:749;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53609;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:48:\"pain-science-made-simple-hero-iamge-2048x998.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:998;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83547;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:47:\"pain-science-made-simple-hero-iamge-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14469;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:47:\"pain-science-made-simple-hero-iamge-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48606;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:49:\"pain-science-made-simple-hero-iamge-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74273;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:47:\"pain-science-made-simple-hero-iamge-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9730;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:47:\"pain-science-made-simple-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31755;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:48:\"pain-science-made-simple-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49366;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:47:\"pain-science-made-simple-hero-iamge-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12398;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:47:\"pain-science-made-simple-hero-iamge-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40984;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:48:\"pain-science-made-simple-hero-iamge-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62448;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:47:\"pain-science-made-simple-hero-iamge-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10944;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:47:\"pain-science-made-simple-hero-iamge-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36706;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:48:\"pain-science-made-simple-hero-iamge-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57139;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:47:\"pain-science-made-simple-hero-iamge-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9000;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:47:\"pain-science-made-simple-hero-iamge-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27998;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:48:\"pain-science-made-simple-hero-iamge-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43394;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(175311,40279,'_edit_last','5'),(175312,40279,'_wp_old_date','2024-09-10'),(175313,40279,'hide_hero','0'),(175314,40279,'_hide_hero','field_66a2380fcda39'),(175315,40279,'hero_title','Pain Science Made Simple - Recorded Webinar'),(175316,40279,'_hero_title','field_617571fe285e8'),(175317,40279,'hero_text',''),(175318,40279,'_hero_text','field_6175723c285e9'),(175319,40279,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175320,40279,'_hero_actions_0_button','field_61757281285eb'),(175321,40279,'hero_actions','1'),(175322,40279,'_hero_actions','field_61757270285ea'),(175323,40279,'hero_style','default'),(175324,40279,'_hero_style','field_62051d9dc5324'),(175325,40279,'_thumbnail_id','40650'),(175326,40279,'__thumbnail_id','field_617570855ddaf'),(175327,40279,'hero_image_pos_x','right'),(175328,40279,'_hero_image_pos_x','field_62ec3d05390bb'),(175329,40279,'hero_image_pos_y','top'),(175330,40279,'_hero_image_pos_y','field_62ec3d05390bc'),(175331,40279,'hero_image_pos',''),(175332,40279,'_hero_image_pos','field_62ec3d05390ba'),(175333,40279,'fft_hide_from_listings','0'),(175334,40279,'_fft_hide_from_listings','field_61f1320446ab2'),(175335,40279,'fft_page_format','default'),(175336,40279,'_fft_page_format','field_61ae213f1f218'),(175337,40279,'fft_hide_nav','0'),(175338,40279,'_fft_hide_nav','field_635bd5e43527c'),(175339,40279,'fft_hide_header_call_to_action','0'),(175340,40279,'_fft_hide_header_call_to_action','field_635bd6723527d'),(175341,40279,'fft_page_sitemap','0'),(175342,40279,'_fft_page_sitemap','field_61af9b34e8181'),(175367,40279,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:5:\"quote\";i:4;s:10:\"split_5050\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";}'),(175368,40279,'_blocks','field_6176696113096'),(175369,40279,'course_label_text','Pain Science Made Simple'),(175370,40279,'_course_label_text','field_61e17babf71fa'),(175371,40279,'course_label',''),(175372,40279,'_course_label','field_61e12f92749a7'),(175373,40279,'course_description','Explore the intricate world of pain science in our recorded webinar, \"Pain Science Made Simple \" In this 1-hour live interactive session, we delve into the latest insights from leading neuroscientists, providing you with valuable guidance on addressing clients who experience aches, niggles, and pains; and giving you the confidence to address these issues and give appropriate advice for each individual.'),(175374,40279,'_course_description','field_617ac5788e5e1'),(175375,40279,'course_key_info','3'),(175376,40279,'_course_key_info','field_617ac6ad8e5e2'),(175377,40279,'course_included','What is pain, and how does it manifest in the body?\r\nHow does the mechanism of pain work, and is it solely a physical response?\r\nDispelling the myth: Is pain exclusively in the client\'s head?\r\nUnpacking the science: What does current research reveal about pain?\r\nNavigating persistent pain: What are the implications for working with such clients?\r\nPractical guidance: What steps should be taken to support individuals experiencing persistent pain?'),(175378,40279,'_course_included','field_617ac6f08e5e4'),(175379,40279,'_yoast_wpseo_primary_course-cat','403'),(175380,40279,'_yoast_wpseo_estimated-reading-time-minutes','1'),(175381,40651,'hide_hero','0'),(175382,40651,'_hide_hero','field_66a2380fcda39'),(175383,40651,'hero_title','Pain Science Made Simple - Recorded Webinar'),(175384,40651,'_hero_title','field_617571fe285e8'),(175385,40651,'hero_text',''),(175386,40651,'_hero_text','field_6175723c285e9'),(175387,40651,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175388,40651,'_hero_actions_0_button','field_61757281285eb'),(175389,40651,'hero_actions','1'),(175390,40651,'_hero_actions','field_61757270285ea'),(175391,40651,'hero_style','default'),(175392,40651,'_hero_style','field_62051d9dc5324'),(175393,40651,'_thumbnail_id','40650'),(175394,40651,'__thumbnail_id','field_617570855ddaf'),(175395,40651,'hero_image_pos_x','right'),(175396,40651,'_hero_image_pos_x','field_62ec3d05390bb'),(175397,40651,'hero_image_pos_y','top'),(175398,40651,'_hero_image_pos_y','field_62ec3d05390bc'),(175399,40651,'hero_image_pos',''),(175400,40651,'_hero_image_pos','field_62ec3d05390ba'),(175401,40651,'fft_hide_from_listings','0'),(175402,40651,'_fft_hide_from_listings','field_61f1320446ab2'),(175403,40651,'fft_page_format','default'),(175404,40651,'_fft_page_format','field_61ae213f1f218'),(175405,40651,'fft_hide_nav','0'),(175406,40651,'_fft_hide_nav','field_635bd5e43527c'),(175407,40651,'fft_hide_header_call_to_action','0'),(175408,40651,'_fft_hide_header_call_to_action','field_635bd6723527d'),(175409,40651,'fft_page_sitemap','0'),(175410,40651,'_fft_page_sitemap','field_61af9b34e8181'),(175411,40651,'blocks_0_acfe_flexible_toggle',''),(175412,40651,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(175413,40651,'blocks_0_acfe_flexible_layout_title','Text Block'),(175414,40651,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(175415,40651,'blocks_0_options_theme','#ffffff'),(175416,40651,'_blocks_0_options_theme','field_6176830e2ad17'),(175417,40651,'blocks_0_options',''),(175418,40651,'_blocks_0_options','field_6176830e2ad16'),(175419,40651,'blocks_0_text_block_heading','Overview'),(175420,40651,'_blocks_0_text_block_heading','field_617669d413097'),(175421,40651,'blocks_0_text_block_content','Explore the intricate world of pain science in our recorded webinar, \"Pain Science Made Simple \" In this 1-hour live interactive session, we delve into the latest insights from leading neuroscientists, providing you with valuable guidance on addressing clients who experience aches, niggles, and pains; and giving you the confidence to address these issues and give appropriate advice for each individual.\r\n\r\n<strong>Key Questions Explored</strong>\r\n<ul>\r\n 	<li>What is pain, and how does it manifest in the body?</li>\r\n 	<li>How does the mechanism of pain work, and is it solely a physical response?</li>\r\n 	<li>Dispelling the myth: Is pain exclusively in the client\'s head?</li>\r\n 	<li>Unpacking the science: What does current research reveal about pain?</li>\r\n 	<li>Navigating persistent pain: What are the implications for working with such clients?</li>\r\n 	<li>Practical guidance: What steps should be taken to support individuals experiencing persistent pain?</li>\r\n</ul>'),(175422,40651,'_blocks_0_text_block_content','field_617669ec13098'),(175423,40651,'blocks_1_acfe_flexible_toggle',''),(175424,40651,'_blocks_1_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(175425,40651,'blocks_1_acfe_flexible_layout_title','Button(s)'),(175426,40651,'_blocks_1_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(175427,40651,'blocks_1_options_theme','#ffffff'),(175428,40651,'_blocks_1_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(175429,40651,'blocks_1_options',''),(175430,40651,'_blocks_1_options','field_623b03edb6e65'),(175431,40651,'blocks_1_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175432,40651,'_blocks_1_actions_0_button','field_623b03edb6e6f'),(175433,40651,'blocks_1_actions','1'),(175434,40651,'_blocks_1_actions','field_623b03edb6e6e'),(175435,40651,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:7:\"buttons\";}'),(175436,40651,'_blocks','field_6176696113096'),(175437,40651,'course_label_text',''),(175438,40651,'_course_label_text','field_61e17babf71fa'),(175439,40651,'course_label',''),(175440,40651,'_course_label','field_61e12f92749a7'),(175441,40651,'course_description',''),(175442,40651,'_course_description','field_617ac5788e5e1'),(175443,40651,'course_key_info',''),(175444,40651,'_course_key_info','field_617ac6ad8e5e2'),(175445,40651,'course_included',''),(175446,40651,'_course_included','field_617ac6f08e5e4'),(175447,40652,'_wp_attached_file','2024/09/shutterstock_304486634.jpg'),(175448,40652,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:34:\"2024/09/shutterstock_304486634.jpg\";s:8:\"filesize\";i:479232;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60673;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21192;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48138;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30114;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71585;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21141;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60673;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27403;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-675x667.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65230;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71585;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23299;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71585;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18542;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"shutterstock_304486634-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52692;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:68:\"Copyright (c) 2015 PopTika/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:46:\"Acute,Pain,In,A,Woman,Wrist,,Colored,In,Red,On\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:1:{i:0;s:326:\"woman,strength,anatomy,thumb,young,osteoarthritis,exercise,body,naked,stretching,wrist,red,inflammation,muscle,rheumatism,dark,un,injury,female,physical,arm,chronic,cramp,human,grief,hand,illness,stress,pain,torso,touching,therapy,one,asian,health,bone,medicine,pressure,people,ache,arthritis,build,healthy,person,science,care\";}}}'),(175449,40279,'blocks_0_acfe_flexible_toggle',''),(175450,40279,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(175451,40279,'blocks_0_acfe_flexible_layout_title','Template'),(175452,40279,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(175453,40279,'blocks_0_template','39087'),(175454,40279,'_blocks_0_template','field_617bdd570fe01'),(175455,40279,'blocks_1_acfe_flexible_toggle',''),(175456,40279,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(175457,40279,'blocks_1_acfe_flexible_layout_title','Text Block'),(175458,40279,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(175459,40279,'blocks_1_options_theme','#ffffff'),(175460,40279,'_blocks_1_options_theme','field_6176830e2ad17'),(175461,40279,'blocks_1_options',''),(175462,40279,'_blocks_1_options','field_6176830e2ad16'),(175463,40279,'blocks_1_text_block_heading','Overview'),(175464,40279,'_blocks_1_text_block_heading','field_617669d413097'),(175465,40279,'blocks_1_text_block_content','Explore the intricate world of pain science in our recorded webinar, \"Pain Science Made Simple \" In this 1-hour live interactive session, we delve into the latest insights from leading neuroscientists, providing you with valuable guidance on addressing clients who experience aches, niggles, and pains; and giving you the confidence to address these issues and give appropriate advice for each individual.\r\n\r\n<strong>Key Questions Explored</strong>\r\n<ul>\r\n 	<li>What is pain, and how does it manifest in the body?</li>\r\n 	<li>How does the mechanism of pain work, and is it solely a physical response?</li>\r\n 	<li>Dispelling the myth: Is pain exclusively in the client\'s head?</li>\r\n 	<li>Unpacking the science: What does current research reveal about pain?</li>\r\n 	<li>Navigating persistent pain: What are the implications for working with such clients?</li>\r\n 	<li>Practical guidance: What steps should be taken to support individuals experiencing persistent pain?</li>\r\n</ul>'),(175466,40279,'_blocks_1_text_block_content','field_617669ec13098'),(175511,40653,'hide_hero','0'),(175512,40653,'_hide_hero','field_66a2380fcda39'),(175513,40653,'hero_title','Pain Science Made Simple - Recorded Webinar'),(175514,40653,'_hero_title','field_617571fe285e8'),(175515,40653,'hero_text',''),(175516,40653,'_hero_text','field_6175723c285e9'),(175517,40653,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175518,40653,'_hero_actions_0_button','field_61757281285eb'),(175519,40653,'hero_actions','1'),(175520,40653,'_hero_actions','field_61757270285ea'),(175521,40653,'hero_style','default'),(175522,40653,'_hero_style','field_62051d9dc5324'),(175523,40653,'_thumbnail_id','40650'),(175524,40653,'__thumbnail_id','field_617570855ddaf'),(175525,40653,'hero_image_pos_x','right'),(175526,40653,'_hero_image_pos_x','field_62ec3d05390bb'),(175527,40653,'hero_image_pos_y','top'),(175528,40653,'_hero_image_pos_y','field_62ec3d05390bc'),(175529,40653,'hero_image_pos',''),(175530,40653,'_hero_image_pos','field_62ec3d05390ba'),(175531,40653,'fft_hide_from_listings','0'),(175532,40653,'_fft_hide_from_listings','field_61f1320446ab2'),(175533,40653,'fft_page_format','default'),(175534,40653,'_fft_page_format','field_61ae213f1f218'),(175535,40653,'fft_hide_nav','0'),(175536,40653,'_fft_hide_nav','field_635bd5e43527c'),(175537,40653,'fft_hide_header_call_to_action','0'),(175538,40653,'_fft_hide_header_call_to_action','field_635bd6723527d'),(175539,40653,'fft_page_sitemap','0'),(175540,40653,'_fft_page_sitemap','field_61af9b34e8181'),(175541,40653,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:10:\"split_5050\";i:4;s:5:\"quote\";}'),(175542,40653,'_blocks','field_6176696113096'),(175543,40653,'course_label_text',''),(175544,40653,'_course_label_text','field_61e17babf71fa'),(175545,40653,'course_label',''),(175546,40653,'_course_label','field_61e12f92749a7'),(175547,40653,'course_description',''),(175548,40653,'_course_description','field_617ac5788e5e1'),(175549,40653,'course_key_info',''),(175550,40653,'_course_key_info','field_617ac6ad8e5e2'),(175551,40653,'course_included',''),(175552,40653,'_course_included','field_617ac6f08e5e4'),(175553,40653,'blocks_0_acfe_flexible_toggle',''),(175554,40653,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(175555,40653,'blocks_0_acfe_flexible_layout_title','Template'),(175556,40653,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(175557,40653,'blocks_0_template','39087'),(175558,40653,'_blocks_0_template','field_617bdd570fe01'),(175559,40653,'blocks_1_acfe_flexible_toggle',''),(175560,40653,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(175561,40653,'blocks_1_acfe_flexible_layout_title','Text Block'),(175562,40653,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(175563,40653,'blocks_1_options_theme','#ffffff'),(175564,40653,'_blocks_1_options_theme','field_6176830e2ad17'),(175565,40653,'blocks_1_options',''),(175566,40653,'_blocks_1_options','field_6176830e2ad16'),(175567,40653,'blocks_1_text_block_heading','Overview'),(175568,40653,'_blocks_1_text_block_heading','field_617669d413097'),(175569,40653,'blocks_1_text_block_content','Explore the intricate world of pain science in our recorded webinar, \"Pain Science Made Simple \" In this 1-hour live interactive session, we delve into the latest insights from leading neuroscientists, providing you with valuable guidance on addressing clients who experience aches, niggles, and pains; and giving you the confidence to address these issues and give appropriate advice for each individual.\r\n\r\n<strong>Key Questions Explored</strong>\r\n<ul>\r\n 	<li>What is pain, and how does it manifest in the body?</li>\r\n 	<li>How does the mechanism of pain work, and is it solely a physical response?</li>\r\n 	<li>Dispelling the myth: Is pain exclusively in the client\'s head?</li>\r\n 	<li>Unpacking the science: What does current research reveal about pain?</li>\r\n 	<li>Navigating persistent pain: What are the implications for working with such clients?</li>\r\n 	<li>Practical guidance: What steps should be taken to support individuals experiencing persistent pain?</li>\r\n</ul>'),(175570,40653,'_blocks_1_text_block_content','field_617669ec13098'),(175571,40653,'blocks_2_acfe_flexible_toggle',''),(175572,40653,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(175573,40653,'blocks_2_acfe_flexible_layout_title','Button(s)'),(175574,40653,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(175575,40653,'blocks_2_options_theme','#ffffff'),(175576,40653,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(175577,40653,'blocks_2_options',''),(175578,40653,'_blocks_2_options','field_623b03edb6e65'),(175579,40653,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175580,40653,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(175581,40653,'blocks_2_actions','1'),(175582,40653,'_blocks_2_actions','field_623b03edb6e6e'),(175583,40653,'blocks_3_acfe_flexible_toggle',''),(175584,40653,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(175585,40653,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(175586,40653,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(175587,40653,'blocks_3_options_theme','#b61234'),(175588,40653,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(175589,40653,'blocks_3_options_reverse','0'),(175590,40653,'_blocks_3_options_reverse','field_61768049bb8ac'),(175591,40653,'blocks_3_options',''),(175592,40653,'_blocks_3_options','field_617682517c334'),(175593,40653,'blocks_3_split_5050_image','40652'),(175594,40653,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(175595,40653,'blocks_3_split_5050_video',''),(175596,40653,'_blocks_3_split_5050_video','field_6239f3160848a'),(175597,40653,'blocks_3_split_5050_content_title',''),(175598,40653,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(175599,40653,'blocks_3_split_5050_content_heading','What you’ll gain'),(175600,40653,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(175601,40653,'blocks_3_split_5050_content_text','Gain a deeper understanding of pain by adopting the perspective of leading neuroscientists. Challenge traditional notions by acknowledging that pain is not merely a measure of tissue damage but a complex and sophisticated protective mechanism.'),(175602,40653,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(175603,40653,'blocks_3_split_5050_content_actions',''),(175604,40653,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(175605,40653,'blocks_3_split_5050_content',''),(175606,40653,'_blocks_3_split_5050_content','field_61767afceb8ba'),(175607,40653,'blocks_4_acfe_flexible_toggle',''),(175608,40653,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(175609,40653,'blocks_4_acfe_flexible_layout_title','Quote'),(175610,40653,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(175611,40653,'blocks_4_quote_content','Pain scientists are reasonably agreed that pain is an unpleasant feeling in our body that makes us want to stop and change our behaviour.\" Benefits et al. (2022)'),(175612,40653,'_blocks_4_quote_content','field_6177cdacdd67a'),(175613,40653,'blocks_4_quote_author',''),(175614,40653,'_blocks_4_quote_author','field_6177cdc6dd67b'),(175615,40654,'hide_hero','0'),(175616,40654,'_hide_hero','field_66a2380fcda39'),(175617,40654,'hero_title','Pain Science Made Simple - Recorded Webinar'),(175618,40654,'_hero_title','field_617571fe285e8'),(175619,40654,'hero_text',''),(175620,40654,'_hero_text','field_6175723c285e9'),(175621,40654,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175622,40654,'_hero_actions_0_button','field_61757281285eb'),(175623,40654,'hero_actions','1'),(175624,40654,'_hero_actions','field_61757270285ea'),(175625,40654,'hero_style','default'),(175626,40654,'_hero_style','field_62051d9dc5324'),(175627,40654,'_thumbnail_id','40650'),(175628,40654,'__thumbnail_id','field_617570855ddaf'),(175629,40654,'hero_image_pos_x','right'),(175630,40654,'_hero_image_pos_x','field_62ec3d05390bb'),(175631,40654,'hero_image_pos_y','top'),(175632,40654,'_hero_image_pos_y','field_62ec3d05390bc'),(175633,40654,'hero_image_pos',''),(175634,40654,'_hero_image_pos','field_62ec3d05390ba'),(175635,40654,'fft_hide_from_listings','0'),(175636,40654,'_fft_hide_from_listings','field_61f1320446ab2'),(175637,40654,'fft_page_format','default'),(175638,40654,'_fft_page_format','field_61ae213f1f218'),(175639,40654,'fft_hide_nav','0'),(175640,40654,'_fft_hide_nav','field_635bd5e43527c'),(175641,40654,'fft_hide_header_call_to_action','0'),(175642,40654,'_fft_hide_header_call_to_action','field_635bd6723527d'),(175643,40654,'fft_page_sitemap','0'),(175644,40654,'_fft_page_sitemap','field_61af9b34e8181'),(175645,40654,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:10:\"split_5050\";i:4;s:5:\"quote\";}'),(175646,40654,'_blocks','field_6176696113096'),(175647,40654,'course_label_text',''),(175648,40654,'_course_label_text','field_61e17babf71fa'),(175649,40654,'course_label',''),(175650,40654,'_course_label','field_61e12f92749a7'),(175651,40654,'course_description',''),(175652,40654,'_course_description','field_617ac5788e5e1'),(175653,40654,'course_key_info',''),(175654,40654,'_course_key_info','field_617ac6ad8e5e2'),(175655,40654,'course_included',''),(175656,40654,'_course_included','field_617ac6f08e5e4'),(175657,40654,'blocks_0_acfe_flexible_toggle',''),(175658,40654,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(175659,40654,'blocks_0_acfe_flexible_layout_title','Template'),(175660,40654,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(175661,40654,'blocks_0_template','39087'),(175662,40654,'_blocks_0_template','field_617bdd570fe01'),(175663,40654,'blocks_1_acfe_flexible_toggle',''),(175664,40654,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(175665,40654,'blocks_1_acfe_flexible_layout_title','Text Block'),(175666,40654,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(175667,40654,'blocks_1_options_theme','#ffffff'),(175668,40654,'_blocks_1_options_theme','field_6176830e2ad17'),(175669,40654,'blocks_1_options',''),(175670,40654,'_blocks_1_options','field_6176830e2ad16'),(175671,40654,'blocks_1_text_block_heading','Overview'),(175672,40654,'_blocks_1_text_block_heading','field_617669d413097'),(175673,40654,'blocks_1_text_block_content','Explore the intricate world of pain science in our recorded webinar, \"Pain Science Made Simple \" In this 1-hour live interactive session, we delve into the latest insights from leading neuroscientists, providing you with valuable guidance on addressing clients who experience aches, niggles, and pains; and giving you the confidence to address these issues and give appropriate advice for each individual.\r\n\r\n<strong>Key Questions Explored</strong>\r\n<ul>\r\n 	<li>What is pain, and how does it manifest in the body?</li>\r\n 	<li>How does the mechanism of pain work, and is it solely a physical response?</li>\r\n 	<li>Dispelling the myth: Is pain exclusively in the client\'s head?</li>\r\n 	<li>Unpacking the science: What does current research reveal about pain?</li>\r\n 	<li>Navigating persistent pain: What are the implications for working with such clients?</li>\r\n 	<li>Practical guidance: What steps should be taken to support individuals experiencing persistent pain?</li>\r\n</ul>'),(175674,40654,'_blocks_1_text_block_content','field_617669ec13098'),(175675,40654,'blocks_2_acfe_flexible_toggle',''),(175676,40654,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(175677,40654,'blocks_2_acfe_flexible_layout_title','Button(s)'),(175678,40654,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(175679,40654,'blocks_2_options_theme','#ffffff'),(175680,40654,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(175681,40654,'blocks_2_options',''),(175682,40654,'_blocks_2_options','field_623b03edb6e65'),(175683,40654,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175684,40654,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(175685,40654,'blocks_2_actions','1'),(175686,40654,'_blocks_2_actions','field_623b03edb6e6e'),(175687,40654,'blocks_3_acfe_flexible_toggle',''),(175688,40654,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(175689,40654,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(175690,40654,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(175691,40654,'blocks_3_options_theme','#b61234'),(175692,40654,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(175693,40654,'blocks_3_options_reverse','0'),(175694,40654,'_blocks_3_options_reverse','field_61768049bb8ac'),(175695,40654,'blocks_3_options',''),(175696,40654,'_blocks_3_options','field_617682517c334'),(175697,40654,'blocks_3_split_5050_image','40652'),(175698,40654,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(175699,40654,'blocks_3_split_5050_video',''),(175700,40654,'_blocks_3_split_5050_video','field_6239f3160848a'),(175701,40654,'blocks_3_split_5050_content_title',''),(175702,40654,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(175703,40654,'blocks_3_split_5050_content_heading','What you’ll gain'),(175704,40654,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(175705,40654,'blocks_3_split_5050_content_text','Gain a deeper understanding of pain by adopting the perspective of leading neuroscientists. Challenge traditional notions by acknowledging that pain is not merely a measure of tissue damage but a complex and sophisticated protective mechanism.\r\n\r\nJoin us on this enlightening journey as we simplify pain science and equip you with the knowledge to confidently address your clients\' concerns.'),(175706,40654,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(175707,40654,'blocks_3_split_5050_content_actions',''),(175708,40654,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(175709,40654,'blocks_3_split_5050_content',''),(175710,40654,'_blocks_3_split_5050_content','field_61767afceb8ba'),(175711,40654,'blocks_4_acfe_flexible_toggle',''),(175712,40654,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(175713,40654,'blocks_4_acfe_flexible_layout_title','Quote'),(175714,40654,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(175715,40654,'blocks_4_quote_content','Pain scientists are reasonably agreed that pain is an unpleasant feeling in our body that makes us want to stop and change our behaviour.\" Benefits et al. (2022)'),(175716,40654,'_blocks_4_quote_content','field_6177cdacdd67a'),(175717,40654,'blocks_4_quote_author',''),(175718,40654,'_blocks_4_quote_author','field_6177cdc6dd67b'),(175719,40279,'blocks_5_acfe_flexible_toggle',''),(175720,40279,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(175721,40279,'blocks_5_acfe_flexible_layout_title','Button(s)'),(175722,40279,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(175723,40279,'blocks_5_options_theme','#ffffff'),(175724,40279,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(175725,40279,'blocks_5_options',''),(175726,40279,'_blocks_5_options','field_623b03edb6e65'),(175727,40279,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175728,40279,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(175729,40279,'blocks_5_actions','1'),(175730,40279,'_blocks_5_actions','field_623b03edb6e6e'),(175731,40279,'blocks_6_acfe_flexible_toggle',''),(175732,40279,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(175733,40279,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(175734,40279,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(175735,40279,'blocks_6_options_theme','#ffffff'),(175736,40279,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(175737,40279,'blocks_6_options_state','0'),(175738,40279,'_blocks_6_options_state','field_6239fcb7508c5'),(175739,40279,'blocks_6_options',''),(175740,40279,'_blocks_6_options','field_6177e2991ac44'),(175741,40279,'blocks_6_content_title',''),(175742,40279,'_blocks_6_content_title','field_64d237e8bb1e2'),(175743,40279,'blocks_6_content_heading',''),(175744,40279,'_blocks_6_content_heading','field_64d237e8bb1e3'),(175745,40279,'blocks_6_content_text',''),(175746,40279,'_blocks_6_content_text','field_64d237e8bb1e4'),(175747,40279,'blocks_6_content_actions',''),(175748,40279,'_blocks_6_content_actions','field_64d237e8bb1e5'),(175749,40279,'blocks_6_content_align','left'),(175750,40279,'_blocks_6_content_align','field_64d2443e6b6aa'),(175751,40279,'blocks_6_content',''),(175752,40279,'_blocks_6_content','field_64d237e8bb1e1'),(175753,40279,'blocks_6_accordion_content','custom'),(175754,40279,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(175755,40279,'blocks_6_accordion_items',''),(175756,40279,'_blocks_6_accordion_items','field_6177e2991ac4c'),(175757,40279,'blocks_6_actions',''),(175758,40279,'_blocks_6_actions','field_61a746a817f7a'),(175759,40655,'hide_hero','0'),(175760,40655,'_hide_hero','field_66a2380fcda39'),(175761,40655,'hero_title','Pain Science Made Simple - Recorded Webinar'),(175762,40655,'_hero_title','field_617571fe285e8'),(175763,40655,'hero_text',''),(175764,40655,'_hero_text','field_6175723c285e9'),(175765,40655,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175766,40655,'_hero_actions_0_button','field_61757281285eb'),(175767,40655,'hero_actions','1'),(175768,40655,'_hero_actions','field_61757270285ea'),(175769,40655,'hero_style','default'),(175770,40655,'_hero_style','field_62051d9dc5324'),(175771,40655,'_thumbnail_id','40650'),(175772,40655,'__thumbnail_id','field_617570855ddaf'),(175773,40655,'hero_image_pos_x','right'),(175774,40655,'_hero_image_pos_x','field_62ec3d05390bb'),(175775,40655,'hero_image_pos_y','top'),(175776,40655,'_hero_image_pos_y','field_62ec3d05390bc'),(175777,40655,'hero_image_pos',''),(175778,40655,'_hero_image_pos','field_62ec3d05390ba'),(175779,40655,'fft_hide_from_listings','0'),(175780,40655,'_fft_hide_from_listings','field_61f1320446ab2'),(175781,40655,'fft_page_format','default'),(175782,40655,'_fft_page_format','field_61ae213f1f218'),(175783,40655,'fft_hide_nav','0'),(175784,40655,'_fft_hide_nav','field_635bd5e43527c'),(175785,40655,'fft_hide_header_call_to_action','0'),(175786,40655,'_fft_hide_header_call_to_action','field_635bd6723527d'),(175787,40655,'fft_page_sitemap','0'),(175788,40655,'_fft_page_sitemap','field_61af9b34e8181'),(175789,40655,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:10:\"split_5050\";i:4;s:5:\"quote\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";}'),(175790,40655,'_blocks','field_6176696113096'),(175791,40655,'course_label_text',''),(175792,40655,'_course_label_text','field_61e17babf71fa'),(175793,40655,'course_label',''),(175794,40655,'_course_label','field_61e12f92749a7'),(175795,40655,'course_description',''),(175796,40655,'_course_description','field_617ac5788e5e1'),(175797,40655,'course_key_info',''),(175798,40655,'_course_key_info','field_617ac6ad8e5e2'),(175799,40655,'course_included',''),(175800,40655,'_course_included','field_617ac6f08e5e4'),(175801,40655,'blocks_0_acfe_flexible_toggle',''),(175802,40655,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(175803,40655,'blocks_0_acfe_flexible_layout_title','Template'),(175804,40655,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(175805,40655,'blocks_0_template','39087'),(175806,40655,'_blocks_0_template','field_617bdd570fe01'),(175807,40655,'blocks_1_acfe_flexible_toggle',''),(175808,40655,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(175809,40655,'blocks_1_acfe_flexible_layout_title','Text Block'),(175810,40655,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(175811,40655,'blocks_1_options_theme','#ffffff'),(175812,40655,'_blocks_1_options_theme','field_6176830e2ad17'),(175813,40655,'blocks_1_options',''),(175814,40655,'_blocks_1_options','field_6176830e2ad16'),(175815,40655,'blocks_1_text_block_heading','Overview'),(175816,40655,'_blocks_1_text_block_heading','field_617669d413097'),(175817,40655,'blocks_1_text_block_content','Explore the intricate world of pain science in our recorded webinar, \"Pain Science Made Simple \" In this 1-hour live interactive session, we delve into the latest insights from leading neuroscientists, providing you with valuable guidance on addressing clients who experience aches, niggles, and pains; and giving you the confidence to address these issues and give appropriate advice for each individual.\r\n\r\n<strong>Key Questions Explored</strong>\r\n<ul>\r\n 	<li>What is pain, and how does it manifest in the body?</li>\r\n 	<li>How does the mechanism of pain work, and is it solely a physical response?</li>\r\n 	<li>Dispelling the myth: Is pain exclusively in the client\'s head?</li>\r\n 	<li>Unpacking the science: What does current research reveal about pain?</li>\r\n 	<li>Navigating persistent pain: What are the implications for working with such clients?</li>\r\n 	<li>Practical guidance: What steps should be taken to support individuals experiencing persistent pain?</li>\r\n</ul>'),(175818,40655,'_blocks_1_text_block_content','field_617669ec13098'),(175819,40655,'blocks_2_acfe_flexible_toggle',''),(175820,40655,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(175821,40655,'blocks_2_acfe_flexible_layout_title','Button(s)'),(175822,40655,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(175823,40655,'blocks_2_options_theme','#ffffff'),(175824,40655,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(175825,40655,'blocks_2_options',''),(175826,40655,'_blocks_2_options','field_623b03edb6e65'),(175827,40655,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175828,40655,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(175829,40655,'blocks_2_actions','1'),(175830,40655,'_blocks_2_actions','field_623b03edb6e6e'),(175831,40655,'blocks_3_acfe_flexible_toggle',''),(175832,40655,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(175833,40655,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(175834,40655,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(175835,40655,'blocks_3_options_theme','#b61234'),(175836,40655,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(175837,40655,'blocks_3_options_reverse','0'),(175838,40655,'_blocks_3_options_reverse','field_61768049bb8ac'),(175839,40655,'blocks_3_options',''),(175840,40655,'_blocks_3_options','field_617682517c334'),(175841,40655,'blocks_3_split_5050_image','40652'),(175842,40655,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(175843,40655,'blocks_3_split_5050_video',''),(175844,40655,'_blocks_3_split_5050_video','field_6239f3160848a'),(175845,40655,'blocks_3_split_5050_content_title',''),(175846,40655,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(175847,40655,'blocks_3_split_5050_content_heading','What you’ll gain'),(175848,40655,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(175849,40655,'blocks_3_split_5050_content_text','Gain a deeper understanding of pain by adopting the perspective of leading neuroscientists. Challenge traditional notions by acknowledging that pain is not merely a measure of tissue damage but a complex and sophisticated protective mechanism.\r\n\r\nJoin us on this enlightening journey as we simplify pain science and equip you with the knowledge to confidently address your clients\' concerns.'),(175850,40655,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(175851,40655,'blocks_3_split_5050_content_actions',''),(175852,40655,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(175853,40655,'blocks_3_split_5050_content',''),(175854,40655,'_blocks_3_split_5050_content','field_61767afceb8ba'),(175855,40655,'blocks_4_acfe_flexible_toggle',''),(175856,40655,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(175857,40655,'blocks_4_acfe_flexible_layout_title','Quote'),(175858,40655,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(175859,40655,'blocks_4_quote_content','Pain scientists are reasonably agreed that pain is an unpleasant feeling in our body that makes us want to stop and change our behaviour.\" Benefits et al. (2022)'),(175860,40655,'_blocks_4_quote_content','field_6177cdacdd67a'),(175861,40655,'blocks_4_quote_author',''),(175862,40655,'_blocks_4_quote_author','field_6177cdc6dd67b'),(175863,40655,'blocks_5_acfe_flexible_toggle',''),(175864,40655,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(175865,40655,'blocks_5_acfe_flexible_layout_title','Button(s)'),(175866,40655,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(175867,40655,'blocks_5_options_theme','#ffffff'),(175868,40655,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(175869,40655,'blocks_5_options',''),(175870,40655,'_blocks_5_options','field_623b03edb6e65'),(175871,40655,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175872,40655,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(175873,40655,'blocks_5_actions','1'),(175874,40655,'_blocks_5_actions','field_623b03edb6e6e'),(175875,40655,'blocks_6_acfe_flexible_toggle',''),(175876,40655,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(175877,40655,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(175878,40655,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(175879,40655,'blocks_6_options_theme','#ffffff'),(175880,40655,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(175881,40655,'blocks_6_options_state','0'),(175882,40655,'_blocks_6_options_state','field_6239fcb7508c5'),(175883,40655,'blocks_6_options',''),(175884,40655,'_blocks_6_options','field_6177e2991ac44'),(175885,40655,'blocks_6_content_title',''),(175886,40655,'_blocks_6_content_title','field_64d237e8bb1e2'),(175887,40655,'blocks_6_content_heading',''),(175888,40655,'_blocks_6_content_heading','field_64d237e8bb1e3'),(175889,40655,'blocks_6_content_text',''),(175890,40655,'_blocks_6_content_text','field_64d237e8bb1e4'),(175891,40655,'blocks_6_content_actions',''),(175892,40655,'_blocks_6_content_actions','field_64d237e8bb1e5'),(175893,40655,'blocks_6_content_align','left'),(175894,40655,'_blocks_6_content_align','field_64d2443e6b6aa'),(175895,40655,'blocks_6_content',''),(175896,40655,'_blocks_6_content','field_64d237e8bb1e1'),(175897,40655,'blocks_6_accordion_content','custom'),(175898,40655,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(175899,40655,'blocks_6_accordion_items',''),(175900,40655,'_blocks_6_accordion_items','field_6177e2991ac4c'),(175901,40655,'blocks_6_actions',''),(175902,40655,'_blocks_6_actions','field_61a746a817f7a'),(175923,40279,'blocks_4_acfe_flexible_toggle',''),(175924,40279,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(175925,40279,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(175926,40279,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(175927,40279,'blocks_4_options_theme','#f5f5f5'),(175928,40279,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(175929,40279,'blocks_4_options_reverse','0'),(175930,40279,'_blocks_4_options_reverse','field_61768049bb8ac'),(175931,40279,'blocks_4_options',''),(175932,40279,'_blocks_4_options','field_617682517c334'),(175933,40279,'blocks_4_split_5050_image','40652'),(175934,40279,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(175935,40279,'blocks_4_split_5050_video',''),(175936,40279,'_blocks_4_split_5050_video','field_6239f3160848a'),(175937,40279,'blocks_4_split_5050_content_title',''),(175938,40279,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(175939,40279,'blocks_4_split_5050_content_heading','What you’ll gain'),(175940,40279,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(175941,40279,'blocks_4_split_5050_content_text','Gain a deeper understanding of pain by adopting the perspective of leading neuroscientists. Challenge traditional notions by acknowledging that pain is not merely a measure of tissue damage but a complex and sophisticated protective mechanism.\r\n\r\nJoin us on this enlightening journey as we simplify pain science and equip you with the knowledge to confidently address your clients\' concerns.'),(175942,40279,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(175943,40279,'blocks_4_split_5050_content_actions',''),(175944,40279,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(175945,40279,'blocks_4_split_5050_content',''),(175946,40279,'_blocks_4_split_5050_content','field_61767afceb8ba'),(175947,40656,'hide_hero','0'),(175948,40656,'_hide_hero','field_66a2380fcda39'),(175949,40656,'hero_title','Pain Science Made Simple - Recorded Webinar'),(175950,40656,'_hero_title','field_617571fe285e8'),(175951,40656,'hero_text',''),(175952,40656,'_hero_text','field_6175723c285e9'),(175953,40656,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(175954,40656,'_hero_actions_0_button','field_61757281285eb'),(175955,40656,'hero_actions','1'),(175956,40656,'_hero_actions','field_61757270285ea'),(175957,40656,'hero_style','default'),(175958,40656,'_hero_style','field_62051d9dc5324'),(175959,40656,'_thumbnail_id','40650'),(175960,40656,'__thumbnail_id','field_617570855ddaf'),(175961,40656,'hero_image_pos_x','right'),(175962,40656,'_hero_image_pos_x','field_62ec3d05390bb'),(175963,40656,'hero_image_pos_y','top'),(175964,40656,'_hero_image_pos_y','field_62ec3d05390bc'),(175965,40656,'hero_image_pos',''),(175966,40656,'_hero_image_pos','field_62ec3d05390ba'),(175967,40656,'fft_hide_from_listings','0'),(175968,40656,'_fft_hide_from_listings','field_61f1320446ab2'),(175969,40656,'fft_page_format','default'),(175970,40656,'_fft_page_format','field_61ae213f1f218'),(175971,40656,'fft_hide_nav','0'),(175972,40656,'_fft_hide_nav','field_635bd5e43527c'),(175973,40656,'fft_hide_header_call_to_action','0'),(175974,40656,'_fft_hide_header_call_to_action','field_635bd6723527d'),(175975,40656,'fft_page_sitemap','0'),(175976,40656,'_fft_page_sitemap','field_61af9b34e8181'),(175977,40656,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"quote\";i:3;s:7:\"buttons\";i:4;s:10:\"split_5050\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";}'),(175978,40656,'_blocks','field_6176696113096'),(175979,40656,'course_label_text',''),(175980,40656,'_course_label_text','field_61e17babf71fa'),(175981,40656,'course_label',''),(175982,40656,'_course_label','field_61e12f92749a7'),(175983,40656,'course_description',''),(175984,40656,'_course_description','field_617ac5788e5e1'),(175985,40656,'course_key_info',''),(175986,40656,'_course_key_info','field_617ac6ad8e5e2'),(175987,40656,'course_included',''),(175988,40656,'_course_included','field_617ac6f08e5e4'),(175989,40656,'blocks_0_acfe_flexible_toggle',''),(175990,40656,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(175991,40656,'blocks_0_acfe_flexible_layout_title','Template'),(175992,40656,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(175993,40656,'blocks_0_template','39087'),(175994,40656,'_blocks_0_template','field_617bdd570fe01'),(175995,40656,'blocks_1_acfe_flexible_toggle',''),(175996,40656,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(175997,40656,'blocks_1_acfe_flexible_layout_title','Text Block'),(175998,40656,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(175999,40656,'blocks_1_options_theme','#ffffff'),(176000,40656,'_blocks_1_options_theme','field_6176830e2ad17'),(176001,40656,'blocks_1_options',''),(176002,40656,'_blocks_1_options','field_6176830e2ad16'),(176003,40656,'blocks_1_text_block_heading','Overview'),(176004,40656,'_blocks_1_text_block_heading','field_617669d413097'),(176005,40656,'blocks_1_text_block_content','Explore the intricate world of pain science in our recorded webinar, \"Pain Science Made Simple \" In this 1-hour live interactive session, we delve into the latest insights from leading neuroscientists, providing you with valuable guidance on addressing clients who experience aches, niggles, and pains; and giving you the confidence to address these issues and give appropriate advice for each individual.\r\n\r\n<strong>Key Questions Explored</strong>\r\n<ul>\r\n 	<li>What is pain, and how does it manifest in the body?</li>\r\n 	<li>How does the mechanism of pain work, and is it solely a physical response?</li>\r\n 	<li>Dispelling the myth: Is pain exclusively in the client\'s head?</li>\r\n 	<li>Unpacking the science: What does current research reveal about pain?</li>\r\n 	<li>Navigating persistent pain: What are the implications for working with such clients?</li>\r\n 	<li>Practical guidance: What steps should be taken to support individuals experiencing persistent pain?</li>\r\n</ul>'),(176006,40656,'_blocks_1_text_block_content','field_617669ec13098'),(176007,40656,'blocks_5_acfe_flexible_toggle',''),(176008,40656,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(176009,40656,'blocks_5_acfe_flexible_layout_title','Button(s)'),(176010,40656,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(176011,40656,'blocks_5_options_theme','#ffffff'),(176012,40656,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(176013,40656,'blocks_5_options',''),(176014,40656,'_blocks_5_options','field_623b03edb6e65'),(176015,40656,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176016,40656,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(176017,40656,'blocks_5_actions','1'),(176018,40656,'_blocks_5_actions','field_623b03edb6e6e'),(176019,40656,'blocks_6_acfe_flexible_toggle',''),(176020,40656,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(176021,40656,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(176022,40656,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(176023,40656,'blocks_6_options_theme','#ffffff'),(176024,40656,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(176025,40656,'blocks_6_options_state','0'),(176026,40656,'_blocks_6_options_state','field_6239fcb7508c5'),(176027,40656,'blocks_6_options',''),(176028,40656,'_blocks_6_options','field_6177e2991ac44'),(176029,40656,'blocks_6_content_title',''),(176030,40656,'_blocks_6_content_title','field_64d237e8bb1e2'),(176031,40656,'blocks_6_content_heading',''),(176032,40656,'_blocks_6_content_heading','field_64d237e8bb1e3'),(176033,40656,'blocks_6_content_text',''),(176034,40656,'_blocks_6_content_text','field_64d237e8bb1e4'),(176035,40656,'blocks_6_content_actions',''),(176036,40656,'_blocks_6_content_actions','field_64d237e8bb1e5'),(176037,40656,'blocks_6_content_align','left'),(176038,40656,'_blocks_6_content_align','field_64d2443e6b6aa'),(176039,40656,'blocks_6_content',''),(176040,40656,'_blocks_6_content','field_64d237e8bb1e1'),(176041,40656,'blocks_6_accordion_content','custom'),(176042,40656,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(176043,40656,'blocks_6_accordion_items',''),(176044,40656,'_blocks_6_accordion_items','field_6177e2991ac4c'),(176045,40656,'blocks_6_actions',''),(176046,40656,'_blocks_6_actions','field_61a746a817f7a'),(176047,40656,'blocks_2_acfe_flexible_toggle',''),(176048,40656,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(176049,40656,'blocks_2_acfe_flexible_layout_title','Quote'),(176050,40656,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(176051,40656,'blocks_2_quote_content','Pain scientists are reasonably agreed that pain is an unpleasant feeling in our body that makes us want to stop and change our behaviour.\" Benefits et al. (2022)'),(176052,40656,'_blocks_2_quote_content','field_6177cdacdd67a'),(176053,40656,'blocks_2_quote_author',''),(176054,40656,'_blocks_2_quote_author','field_6177cdc6dd67b'),(176055,40656,'blocks_3_acfe_flexible_toggle',''),(176056,40656,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(176057,40656,'blocks_3_acfe_flexible_layout_title','Button(s)'),(176058,40656,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(176059,40656,'blocks_3_options_theme','#ffffff'),(176060,40656,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(176061,40656,'blocks_3_options',''),(176062,40656,'_blocks_3_options','field_623b03edb6e65'),(176063,40656,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176064,40656,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(176065,40656,'blocks_3_actions','1'),(176066,40656,'_blocks_3_actions','field_623b03edb6e6e'),(176067,40656,'blocks_4_acfe_flexible_toggle',''),(176068,40656,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(176069,40656,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(176070,40656,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(176071,40656,'blocks_4_options_theme','#b61234'),(176072,40656,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(176073,40656,'blocks_4_options_reverse','0'),(176074,40656,'_blocks_4_options_reverse','field_61768049bb8ac'),(176075,40656,'blocks_4_options',''),(176076,40656,'_blocks_4_options','field_617682517c334'),(176077,40656,'blocks_4_split_5050_image','40652'),(176078,40656,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(176079,40656,'blocks_4_split_5050_video',''),(176080,40656,'_blocks_4_split_5050_video','field_6239f3160848a'),(176081,40656,'blocks_4_split_5050_content_title',''),(176082,40656,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(176083,40656,'blocks_4_split_5050_content_heading','What you’ll gain'),(176084,40656,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(176085,40656,'blocks_4_split_5050_content_text','Gain a deeper understanding of pain by adopting the perspective of leading neuroscientists. Challenge traditional notions by acknowledging that pain is not merely a measure of tissue damage but a complex and sophisticated protective mechanism.\r\n\r\nJoin us on this enlightening journey as we simplify pain science and equip you with the knowledge to confidently address your clients\' concerns.'),(176086,40656,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(176087,40656,'blocks_4_split_5050_content_actions',''),(176088,40656,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(176089,40656,'blocks_4_split_5050_content',''),(176090,40656,'_blocks_4_split_5050_content','field_61767afceb8ba'),(176091,40657,'hide_hero','0'),(176092,40657,'_hide_hero','field_66a2380fcda39'),(176093,40657,'hero_title','Pain Science Made Simple - Recorded Webinar'),(176094,40657,'_hero_title','field_617571fe285e8'),(176095,40657,'hero_text',''),(176096,40657,'_hero_text','field_6175723c285e9'),(176097,40657,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176098,40657,'_hero_actions_0_button','field_61757281285eb'),(176099,40657,'hero_actions','1'),(176100,40657,'_hero_actions','field_61757270285ea'),(176101,40657,'hero_style','default'),(176102,40657,'_hero_style','field_62051d9dc5324'),(176103,40657,'_thumbnail_id','40650'),(176104,40657,'__thumbnail_id','field_617570855ddaf'),(176105,40657,'hero_image_pos_x','right'),(176106,40657,'_hero_image_pos_x','field_62ec3d05390bb'),(176107,40657,'hero_image_pos_y','top'),(176108,40657,'_hero_image_pos_y','field_62ec3d05390bc'),(176109,40657,'hero_image_pos',''),(176110,40657,'_hero_image_pos','field_62ec3d05390ba'),(176111,40657,'fft_hide_from_listings','0'),(176112,40657,'_fft_hide_from_listings','field_61f1320446ab2'),(176113,40657,'fft_page_format','default'),(176114,40657,'_fft_page_format','field_61ae213f1f218'),(176115,40657,'fft_hide_nav','0'),(176116,40657,'_fft_hide_nav','field_635bd5e43527c'),(176117,40657,'fft_hide_header_call_to_action','0'),(176118,40657,'_fft_hide_header_call_to_action','field_635bd6723527d'),(176119,40657,'fft_page_sitemap','0'),(176120,40657,'_fft_page_sitemap','field_61af9b34e8181'),(176121,40657,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"quote\";i:3;s:7:\"buttons\";i:4;s:10:\"split_5050\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";}'),(176122,40657,'_blocks','field_6176696113096'),(176123,40657,'course_label_text',''),(176124,40657,'_course_label_text','field_61e17babf71fa'),(176125,40657,'course_label',''),(176126,40657,'_course_label','field_61e12f92749a7'),(176127,40657,'course_description',''),(176128,40657,'_course_description','field_617ac5788e5e1'),(176129,40657,'course_key_info',''),(176130,40657,'_course_key_info','field_617ac6ad8e5e2'),(176131,40657,'course_included',''),(176132,40657,'_course_included','field_617ac6f08e5e4'),(176133,40657,'blocks_0_acfe_flexible_toggle',''),(176134,40657,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(176135,40657,'blocks_0_acfe_flexible_layout_title','Template'),(176136,40657,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(176137,40657,'blocks_0_template','39087'),(176138,40657,'_blocks_0_template','field_617bdd570fe01'),(176139,40657,'blocks_1_acfe_flexible_toggle',''),(176140,40657,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(176141,40657,'blocks_1_acfe_flexible_layout_title','Text Block'),(176142,40657,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(176143,40657,'blocks_1_options_theme','#ffffff'),(176144,40657,'_blocks_1_options_theme','field_6176830e2ad17'),(176145,40657,'blocks_1_options',''),(176146,40657,'_blocks_1_options','field_6176830e2ad16'),(176147,40657,'blocks_1_text_block_heading','Overview'),(176148,40657,'_blocks_1_text_block_heading','field_617669d413097'),(176149,40657,'blocks_1_text_block_content','Explore the intricate world of pain science in our recorded webinar, \"Pain Science Made Simple \" In this 1-hour live interactive session, we delve into the latest insights from leading neuroscientists, providing you with valuable guidance on addressing clients who experience aches, niggles, and pains; and giving you the confidence to address these issues and give appropriate advice for each individual.\r\n\r\n<strong>Key Questions Explored</strong>\r\n<ul>\r\n 	<li>What is pain, and how does it manifest in the body?</li>\r\n 	<li>How does the mechanism of pain work, and is it solely a physical response?</li>\r\n 	<li>Dispelling the myth: Is pain exclusively in the client\'s head?</li>\r\n 	<li>Unpacking the science: What does current research reveal about pain?</li>\r\n 	<li>Navigating persistent pain: What are the implications for working with such clients?</li>\r\n 	<li>Practical guidance: What steps should be taken to support individuals experiencing persistent pain?</li>\r\n</ul>'),(176150,40657,'_blocks_1_text_block_content','field_617669ec13098'),(176151,40657,'blocks_5_acfe_flexible_toggle',''),(176152,40657,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(176153,40657,'blocks_5_acfe_flexible_layout_title','Button(s)'),(176154,40657,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(176155,40657,'blocks_5_options_theme','#ffffff'),(176156,40657,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(176157,40657,'blocks_5_options',''),(176158,40657,'_blocks_5_options','field_623b03edb6e65'),(176159,40657,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176160,40657,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(176161,40657,'blocks_5_actions','1'),(176162,40657,'_blocks_5_actions','field_623b03edb6e6e'),(176163,40657,'blocks_6_acfe_flexible_toggle',''),(176164,40657,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(176165,40657,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(176166,40657,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(176167,40657,'blocks_6_options_theme','#ffffff'),(176168,40657,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(176169,40657,'blocks_6_options_state','0'),(176170,40657,'_blocks_6_options_state','field_6239fcb7508c5'),(176171,40657,'blocks_6_options',''),(176172,40657,'_blocks_6_options','field_6177e2991ac44'),(176173,40657,'blocks_6_content_title',''),(176174,40657,'_blocks_6_content_title','field_64d237e8bb1e2'),(176175,40657,'blocks_6_content_heading',''),(176176,40657,'_blocks_6_content_heading','field_64d237e8bb1e3'),(176177,40657,'blocks_6_content_text',''),(176178,40657,'_blocks_6_content_text','field_64d237e8bb1e4'),(176179,40657,'blocks_6_content_actions',''),(176180,40657,'_blocks_6_content_actions','field_64d237e8bb1e5'),(176181,40657,'blocks_6_content_align','left'),(176182,40657,'_blocks_6_content_align','field_64d2443e6b6aa'),(176183,40657,'blocks_6_content',''),(176184,40657,'_blocks_6_content','field_64d237e8bb1e1'),(176185,40657,'blocks_6_accordion_content','custom'),(176186,40657,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(176187,40657,'blocks_6_accordion_items',''),(176188,40657,'_blocks_6_accordion_items','field_6177e2991ac4c'),(176189,40657,'blocks_6_actions',''),(176190,40657,'_blocks_6_actions','field_61a746a817f7a'),(176191,40657,'blocks_2_acfe_flexible_toggle',''),(176192,40657,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(176193,40657,'blocks_2_acfe_flexible_layout_title','Quote'),(176194,40657,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(176195,40657,'blocks_2_quote_content','Pain scientists are reasonably agreed that pain is an unpleasant feeling in our body that makes us want to stop and change our behaviour.\" Benefits et al. (2022)'),(176196,40657,'_blocks_2_quote_content','field_6177cdacdd67a'),(176197,40657,'blocks_2_quote_author',''),(176198,40657,'_blocks_2_quote_author','field_6177cdc6dd67b'),(176199,40657,'blocks_3_acfe_flexible_toggle',''),(176200,40657,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(176201,40657,'blocks_3_acfe_flexible_layout_title','Button(s)'),(176202,40657,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(176203,40657,'blocks_3_options_theme','#ffffff'),(176204,40657,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(176205,40657,'blocks_3_options',''),(176206,40657,'_blocks_3_options','field_623b03edb6e65'),(176207,40657,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176208,40657,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(176209,40657,'blocks_3_actions','1'),(176210,40657,'_blocks_3_actions','field_623b03edb6e6e'),(176211,40657,'blocks_4_acfe_flexible_toggle',''),(176212,40657,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(176213,40657,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(176214,40657,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(176215,40657,'blocks_4_options_theme','#f5f5f5'),(176216,40657,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(176217,40657,'blocks_4_options_reverse','0'),(176218,40657,'_blocks_4_options_reverse','field_61768049bb8ac'),(176219,40657,'blocks_4_options',''),(176220,40657,'_blocks_4_options','field_617682517c334'),(176221,40657,'blocks_4_split_5050_image','40652'),(176222,40657,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(176223,40657,'blocks_4_split_5050_video',''),(176224,40657,'_blocks_4_split_5050_video','field_6239f3160848a'),(176225,40657,'blocks_4_split_5050_content_title',''),(176226,40657,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(176227,40657,'blocks_4_split_5050_content_heading','What you’ll gain'),(176228,40657,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(176229,40657,'blocks_4_split_5050_content_text','Gain a deeper understanding of pain by adopting the perspective of leading neuroscientists. Challenge traditional notions by acknowledging that pain is not merely a measure of tissue damage but a complex and sophisticated protective mechanism.\r\n\r\nJoin us on this enlightening journey as we simplify pain science and equip you with the knowledge to confidently address your clients\' concerns.'),(176230,40657,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(176231,40657,'blocks_4_split_5050_content_actions',''),(176232,40657,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(176233,40657,'blocks_4_split_5050_content',''),(176234,40657,'_blocks_4_split_5050_content','field_61767afceb8ba'),(176235,40279,'blocks_2_acfe_flexible_toggle',''),(176236,40279,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(176237,40279,'blocks_2_acfe_flexible_layout_title','Button(s)'),(176238,40279,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(176239,40279,'blocks_2_options_theme','#ffffff'),(176240,40279,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(176241,40279,'blocks_2_options',''),(176242,40279,'_blocks_2_options','field_623b03edb6e65'),(176243,40279,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176244,40279,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(176245,40279,'blocks_2_actions','1'),(176246,40279,'_blocks_2_actions','field_623b03edb6e6e'),(176247,40279,'blocks_3_acfe_flexible_toggle',''),(176248,40279,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(176249,40279,'blocks_3_acfe_flexible_layout_title','Quote'),(176250,40279,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(176251,40279,'blocks_3_quote_content','Pain scientists are reasonably agreed that pain is an unpleasant feeling in our body that makes us want to stop and change our behaviour.\" Benefits et al. (2022)'),(176252,40279,'_blocks_3_quote_content','field_6177cdacdd67a'),(176253,40279,'blocks_3_quote_author',''),(176254,40279,'_blocks_3_quote_author','field_6177cdc6dd67b'),(176255,40658,'hide_hero','0'),(176256,40658,'_hide_hero','field_66a2380fcda39'),(176257,40658,'hero_title','Pain Science Made Simple - Recorded Webinar'),(176258,40658,'_hero_title','field_617571fe285e8'),(176259,40658,'hero_text',''),(176260,40658,'_hero_text','field_6175723c285e9'),(176261,40658,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176262,40658,'_hero_actions_0_button','field_61757281285eb'),(176263,40658,'hero_actions','1'),(176264,40658,'_hero_actions','field_61757270285ea'),(176265,40658,'hero_style','default'),(176266,40658,'_hero_style','field_62051d9dc5324'),(176267,40658,'_thumbnail_id','40650'),(176268,40658,'__thumbnail_id','field_617570855ddaf'),(176269,40658,'hero_image_pos_x','right'),(176270,40658,'_hero_image_pos_x','field_62ec3d05390bb'),(176271,40658,'hero_image_pos_y','top'),(176272,40658,'_hero_image_pos_y','field_62ec3d05390bc'),(176273,40658,'hero_image_pos',''),(176274,40658,'_hero_image_pos','field_62ec3d05390ba'),(176275,40658,'fft_hide_from_listings','0'),(176276,40658,'_fft_hide_from_listings','field_61f1320446ab2'),(176277,40658,'fft_page_format','default'),(176278,40658,'_fft_page_format','field_61ae213f1f218'),(176279,40658,'fft_hide_nav','0'),(176280,40658,'_fft_hide_nav','field_635bd5e43527c'),(176281,40658,'fft_hide_header_call_to_action','0'),(176282,40658,'_fft_hide_header_call_to_action','field_635bd6723527d'),(176283,40658,'fft_page_sitemap','0'),(176284,40658,'_fft_page_sitemap','field_61af9b34e8181'),(176285,40658,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:5:\"quote\";i:4;s:10:\"split_5050\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";}'),(176286,40658,'_blocks','field_6176696113096'),(176287,40658,'course_label_text',''),(176288,40658,'_course_label_text','field_61e17babf71fa'),(176289,40658,'course_label',''),(176290,40658,'_course_label','field_61e12f92749a7'),(176291,40658,'course_description',''),(176292,40658,'_course_description','field_617ac5788e5e1'),(176293,40658,'course_key_info',''),(176294,40658,'_course_key_info','field_617ac6ad8e5e2'),(176295,40658,'course_included',''),(176296,40658,'_course_included','field_617ac6f08e5e4'),(176297,40658,'blocks_0_acfe_flexible_toggle',''),(176298,40658,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(176299,40658,'blocks_0_acfe_flexible_layout_title','Template'),(176300,40658,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(176301,40658,'blocks_0_template','39087'),(176302,40658,'_blocks_0_template','field_617bdd570fe01'),(176303,40658,'blocks_1_acfe_flexible_toggle',''),(176304,40658,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(176305,40658,'blocks_1_acfe_flexible_layout_title','Text Block'),(176306,40658,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(176307,40658,'blocks_1_options_theme','#ffffff'),(176308,40658,'_blocks_1_options_theme','field_6176830e2ad17'),(176309,40658,'blocks_1_options',''),(176310,40658,'_blocks_1_options','field_6176830e2ad16'),(176311,40658,'blocks_1_text_block_heading','Overview'),(176312,40658,'_blocks_1_text_block_heading','field_617669d413097'),(176313,40658,'blocks_1_text_block_content','Explore the intricate world of pain science in our recorded webinar, \"Pain Science Made Simple \" In this 1-hour live interactive session, we delve into the latest insights from leading neuroscientists, providing you with valuable guidance on addressing clients who experience aches, niggles, and pains; and giving you the confidence to address these issues and give appropriate advice for each individual.\r\n\r\n<strong>Key Questions Explored</strong>\r\n<ul>\r\n 	<li>What is pain, and how does it manifest in the body?</li>\r\n 	<li>How does the mechanism of pain work, and is it solely a physical response?</li>\r\n 	<li>Dispelling the myth: Is pain exclusively in the client\'s head?</li>\r\n 	<li>Unpacking the science: What does current research reveal about pain?</li>\r\n 	<li>Navigating persistent pain: What are the implications for working with such clients?</li>\r\n 	<li>Practical guidance: What steps should be taken to support individuals experiencing persistent pain?</li>\r\n</ul>'),(176314,40658,'_blocks_1_text_block_content','field_617669ec13098'),(176315,40658,'blocks_5_acfe_flexible_toggle',''),(176316,40658,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(176317,40658,'blocks_5_acfe_flexible_layout_title','Button(s)'),(176318,40658,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(176319,40658,'blocks_5_options_theme','#ffffff'),(176320,40658,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(176321,40658,'blocks_5_options',''),(176322,40658,'_blocks_5_options','field_623b03edb6e65'),(176323,40658,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176324,40658,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(176325,40658,'blocks_5_actions','1'),(176326,40658,'_blocks_5_actions','field_623b03edb6e6e'),(176327,40658,'blocks_6_acfe_flexible_toggle',''),(176328,40658,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(176329,40658,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(176330,40658,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(176331,40658,'blocks_6_options_theme','#ffffff'),(176332,40658,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(176333,40658,'blocks_6_options_state','0'),(176334,40658,'_blocks_6_options_state','field_6239fcb7508c5'),(176335,40658,'blocks_6_options',''),(176336,40658,'_blocks_6_options','field_6177e2991ac44'),(176337,40658,'blocks_6_content_title',''),(176338,40658,'_blocks_6_content_title','field_64d237e8bb1e2'),(176339,40658,'blocks_6_content_heading',''),(176340,40658,'_blocks_6_content_heading','field_64d237e8bb1e3'),(176341,40658,'blocks_6_content_text',''),(176342,40658,'_blocks_6_content_text','field_64d237e8bb1e4'),(176343,40658,'blocks_6_content_actions',''),(176344,40658,'_blocks_6_content_actions','field_64d237e8bb1e5'),(176345,40658,'blocks_6_content_align','left'),(176346,40658,'_blocks_6_content_align','field_64d2443e6b6aa'),(176347,40658,'blocks_6_content',''),(176348,40658,'_blocks_6_content','field_64d237e8bb1e1'),(176349,40658,'blocks_6_accordion_content','custom'),(176350,40658,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(176351,40658,'blocks_6_accordion_items',''),(176352,40658,'_blocks_6_accordion_items','field_6177e2991ac4c'),(176353,40658,'blocks_6_actions',''),(176354,40658,'_blocks_6_actions','field_61a746a817f7a'),(176355,40658,'blocks_4_acfe_flexible_toggle',''),(176356,40658,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(176357,40658,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(176358,40658,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(176359,40658,'blocks_4_options_theme','#f5f5f5'),(176360,40658,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(176361,40658,'blocks_4_options_reverse','0'),(176362,40658,'_blocks_4_options_reverse','field_61768049bb8ac'),(176363,40658,'blocks_4_options',''),(176364,40658,'_blocks_4_options','field_617682517c334'),(176365,40658,'blocks_4_split_5050_image','40652'),(176366,40658,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(176367,40658,'blocks_4_split_5050_video',''),(176368,40658,'_blocks_4_split_5050_video','field_6239f3160848a'),(176369,40658,'blocks_4_split_5050_content_title',''),(176370,40658,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(176371,40658,'blocks_4_split_5050_content_heading','What you’ll gain'),(176372,40658,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(176373,40658,'blocks_4_split_5050_content_text','Gain a deeper understanding of pain by adopting the perspective of leading neuroscientists. Challenge traditional notions by acknowledging that pain is not merely a measure of tissue damage but a complex and sophisticated protective mechanism.\r\n\r\nJoin us on this enlightening journey as we simplify pain science and equip you with the knowledge to confidently address your clients\' concerns.'),(176374,40658,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(176375,40658,'blocks_4_split_5050_content_actions',''),(176376,40658,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(176377,40658,'blocks_4_split_5050_content',''),(176378,40658,'_blocks_4_split_5050_content','field_61767afceb8ba'),(176379,40658,'blocks_2_acfe_flexible_toggle',''),(176380,40658,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(176381,40658,'blocks_2_acfe_flexible_layout_title','Button(s)'),(176382,40658,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(176383,40658,'blocks_2_options_theme','#ffffff'),(176384,40658,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(176385,40658,'blocks_2_options',''),(176386,40658,'_blocks_2_options','field_623b03edb6e65'),(176387,40658,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176388,40658,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(176389,40658,'blocks_2_actions','1'),(176390,40658,'_blocks_2_actions','field_623b03edb6e6e'),(176391,40658,'blocks_3_acfe_flexible_toggle',''),(176392,40658,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(176393,40658,'blocks_3_acfe_flexible_layout_title','Quote'),(176394,40658,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(176395,40658,'blocks_3_quote_content','Pain scientists are reasonably agreed that pain is an unpleasant feeling in our body that makes us want to stop and change our behaviour.\" Benefits et al. (2022)'),(176396,40658,'_blocks_3_quote_content','field_6177cdacdd67a'),(176397,40658,'blocks_3_quote_author',''),(176398,40658,'_blocks_3_quote_author','field_6177cdc6dd67b'),(176399,40285,'_edit_lock','1727342304:5'),(176400,40659,'_wp_attached_file','2024/09/what-the-hell-is-functional-training-hero-iamge.jpg'),(176401,40659,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:59:\"2024/09/what-the-hell-is-functional-training-hero-iamge.jpg\";s:8:\"filesize\";i:370143;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:59:\"what-the-hell-is-functional-training-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84401;}s:5:\"large\";a:5:{s:4:\"file\";s:60:\"what-the-hell-is-functional-training-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128850;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"what-the-hell-is-functional-training-hero-iamge-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24522;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:59:\"what-the-hell-is-functional-training-hero-iamge-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65782;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:61:\"what-the-hell-is-functional-training-hero-iamge-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186195;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:61:\"what-the-hell-is-functional-training-hero-iamge-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:283209;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:59:\"what-the-hell-is-functional-training-hero-iamge-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32236;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:59:\"what-the-hell-is-functional-training-hero-iamge-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110207;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:61:\"what-the-hell-is-functional-training-hero-iamge-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166750;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:59:\"what-the-hell-is-functional-training-hero-iamge-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24439;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:59:\"what-the-hell-is-functional-training-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84423;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:60:\"what-the-hell-is-functional-training-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128889;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:59:\"what-the-hell-is-functional-training-hero-iamge-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24421;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:59:\"what-the-hell-is-functional-training-hero-iamge-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82501;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:60:\"what-the-hell-is-functional-training-hero-iamge-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125108;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:59:\"what-the-hell-is-functional-training-hero-iamge-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27140;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:59:\"what-the-hell-is-functional-training-hero-iamge-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92784;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:60:\"what-the-hell-is-functional-training-hero-iamge-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141171;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:59:\"what-the-hell-is-functional-training-hero-iamge-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21828;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:59:\"what-the-hell-is-functional-training-hero-iamge-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74997;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:60:\"what-the-hell-is-functional-training-hero-iamge-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115002;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(176402,40285,'_edit_last','5'),(176403,40285,'_wp_old_date','2024-09-10'),(176404,40285,'hide_hero','0'),(176405,40285,'_hide_hero','field_66a2380fcda39'),(176406,40285,'hero_title','What the hell is ‘functional training’ anyway? Recorded Webinar'),(176407,40285,'_hero_title','field_617571fe285e8'),(176408,40285,'hero_text',''),(176409,40285,'_hero_text','field_6175723c285e9'),(176410,40285,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176411,40285,'_hero_actions_0_button','field_61757281285eb'),(176412,40285,'hero_actions','1'),(176413,40285,'_hero_actions','field_61757270285ea'),(176414,40285,'hero_style','default'),(176415,40285,'_hero_style','field_62051d9dc5324'),(176416,40285,'_thumbnail_id','40659'),(176417,40285,'__thumbnail_id','field_617570855ddaf'),(176418,40285,'hero_image_pos_x','right'),(176419,40285,'_hero_image_pos_x','field_62ec3d05390bb'),(176420,40285,'hero_image_pos_y','top'),(176421,40285,'_hero_image_pos_y','field_62ec3d05390bc'),(176422,40285,'hero_image_pos',''),(176423,40285,'_hero_image_pos','field_62ec3d05390ba'),(176424,40285,'fft_hide_from_listings','0'),(176425,40285,'_fft_hide_from_listings','field_61f1320446ab2'),(176426,40285,'fft_page_format','default'),(176427,40285,'_fft_page_format','field_61ae213f1f218'),(176428,40285,'fft_hide_nav','0'),(176429,40285,'_fft_hide_nav','field_635bd5e43527c'),(176430,40285,'fft_hide_header_call_to_action','0'),(176431,40285,'_fft_hide_header_call_to_action','field_635bd6723527d'),(176432,40285,'fft_page_sitemap','0'),(176433,40285,'_fft_page_sitemap','field_61af9b34e8181'),(176434,40285,'blocks_0_acfe_flexible_toggle',''),(176435,40285,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(176436,40285,'blocks_0_acfe_flexible_layout_title','Template'),(176437,40285,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(176438,40285,'blocks_0_template','39087'),(176439,40285,'_blocks_0_template','field_617bdd570fe01'),(176440,40285,'blocks_1_acfe_flexible_toggle',''),(176441,40285,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(176442,40285,'blocks_1_acfe_flexible_layout_title','Text Block'),(176443,40285,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(176444,40285,'blocks_1_options_theme','#ffffff'),(176445,40285,'_blocks_1_options_theme','field_6176830e2ad17'),(176446,40285,'blocks_1_options',''),(176447,40285,'_blocks_1_options','field_6176830e2ad16'),(176448,40285,'blocks_1_text_block_heading','Overview'),(176449,40285,'_blocks_1_text_block_heading','field_617669d413097'),(176450,40285,'blocks_1_text_block_content','In this enlightening webinar, we embark on a journey to demystify the concept of \'functional training,\' a term that has firmly entrenched itself in the fitness industry. Gray Cook, the creator of the Functional Movement Screen (FMS), rightly points out, \"Everyone has a different definition of function.\" So, what exactly is functional training, and why has it become a ubiquitous aspect of fitness culture?\r\n\r\nOur expert, Biomechanics Coach Rachel Thomson (Biomechanics Education), delves into the scientific foundations, insights from global leaders, and the potential need for a paradigm shift to truly understand functional training. Rather than accepting it as a universal norm, let\'s explore the multifaceted aspects of this training methodology.'),(176451,40285,'_blocks_1_text_block_content','field_617669ec13098'),(176452,40285,'blocks_2_acfe_flexible_toggle',''),(176453,40285,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(176454,40285,'blocks_2_acfe_flexible_layout_title','Button(s)'),(176455,40285,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(176456,40285,'blocks_2_options_theme','#ffffff'),(176457,40285,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(176458,40285,'blocks_2_options',''),(176459,40285,'_blocks_2_options','field_623b03edb6e65'),(176460,40285,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176461,40285,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(176462,40285,'blocks_2_actions','1'),(176463,40285,'_blocks_2_actions','field_623b03edb6e6e'),(176464,40285,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:10:\"accordions\";}'),(176465,40285,'_blocks','field_6176696113096'),(176466,40285,'course_label_text','What the hell is Functional Training anyway?'),(176467,40285,'_course_label_text','field_61e17babf71fa'),(176468,40285,'course_label',''),(176469,40285,'_course_label','field_61e12f92749a7'),(176470,40285,'course_description','In this enlightening webinar, we embark on a journey to demystify the concept of \'functional training,\' a term that has firmly entrenched itself in the fitness industry.'),(176471,40285,'_course_description','field_617ac5788e5e1'),(176472,40285,'course_key_info','3'),(176473,40285,'_course_key_info','field_617ac6ad8e5e2'),(176474,40285,'course_included','Diverse Definitions of Functional Training\r\n\r\nEvaluating the Current Paradigm\r\n\r\nRevolutionising Client Preparation\r\n\r\nMeeting Evolving Client Expectations\r\n\r\nExpanding Trainer Skills Amidst Changing Expectations\r\n\r\nNavigating the Shifting Fitness Landscape\r\n\r\nPreparing for Future Challenges'),(176475,40285,'_course_included','field_617ac6f08e5e4'),(176476,40285,'_yoast_wpseo_primary_course-cat','403'),(176477,40285,'_yoast_wpseo_estimated-reading-time-minutes','1'),(176478,40660,'hide_hero','0'),(176479,40660,'_hide_hero','field_66a2380fcda39'),(176480,40660,'hero_title','What the hell is ‘functional training’ anyway? Recorded Webinar'),(176481,40660,'_hero_title','field_617571fe285e8'),(176482,40660,'hero_text',''),(176483,40660,'_hero_text','field_6175723c285e9'),(176484,40660,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176485,40660,'_hero_actions_0_button','field_61757281285eb'),(176486,40660,'hero_actions','1'),(176487,40660,'_hero_actions','field_61757270285ea'),(176488,40660,'hero_style','default'),(176489,40660,'_hero_style','field_62051d9dc5324'),(176490,40660,'_thumbnail_id','40659'),(176491,40660,'__thumbnail_id','field_617570855ddaf'),(176492,40660,'hero_image_pos_x','right'),(176493,40660,'_hero_image_pos_x','field_62ec3d05390bb'),(176494,40660,'hero_image_pos_y','top'),(176495,40660,'_hero_image_pos_y','field_62ec3d05390bc'),(176496,40660,'hero_image_pos',''),(176497,40660,'_hero_image_pos','field_62ec3d05390ba'),(176498,40660,'fft_hide_from_listings','0'),(176499,40660,'_fft_hide_from_listings','field_61f1320446ab2'),(176500,40660,'fft_page_format','default'),(176501,40660,'_fft_page_format','field_61ae213f1f218'),(176502,40660,'fft_hide_nav','0'),(176503,40660,'_fft_hide_nav','field_635bd5e43527c'),(176504,40660,'fft_hide_header_call_to_action','0'),(176505,40660,'_fft_hide_header_call_to_action','field_635bd6723527d'),(176506,40660,'fft_page_sitemap','0'),(176507,40660,'_fft_page_sitemap','field_61af9b34e8181'),(176508,40660,'blocks_0_acfe_flexible_toggle',''),(176509,40660,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(176510,40660,'blocks_0_acfe_flexible_layout_title','Template'),(176511,40660,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(176512,40660,'blocks_0_template','39087'),(176513,40660,'_blocks_0_template','field_617bdd570fe01'),(176514,40660,'blocks_1_acfe_flexible_toggle',''),(176515,40660,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(176516,40660,'blocks_1_acfe_flexible_layout_title','Text Block'),(176517,40660,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(176518,40660,'blocks_1_options_theme','#ffffff'),(176519,40660,'_blocks_1_options_theme','field_6176830e2ad17'),(176520,40660,'blocks_1_options',''),(176521,40660,'_blocks_1_options','field_6176830e2ad16'),(176522,40660,'blocks_1_text_block_heading','Overview'),(176523,40660,'_blocks_1_text_block_heading','field_617669d413097'),(176524,40660,'blocks_1_text_block_content','In this enlightening webinar, we embark on a journey to demystify the concept of \'functional training,\' a term that has firmly entrenched itself in the fitness industry. Gray Cook, the creator of the Functional Movement Screen (FMS), rightly points out, \"Everyone has a different definition of function.\" So, what exactly is functional training, and why has it become a ubiquitous aspect of fitness culture?\r\n\r\nOur expert, Biomechanics Coach Rachel Thomson (Biomechanics Education), delves into the scientific foundations, insights from global leaders, and the potential need for a paradigm shift to truly understand functional training. Rather than accepting it as a universal norm, let\'s explore the multifaceted aspects of this training methodology.'),(176525,40660,'_blocks_1_text_block_content','field_617669ec13098'),(176526,40660,'blocks_2_acfe_flexible_toggle',''),(176527,40660,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(176528,40660,'blocks_2_acfe_flexible_layout_title','Button(s)'),(176529,40660,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(176530,40660,'blocks_2_options_theme','#ffffff'),(176531,40660,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(176532,40660,'blocks_2_options',''),(176533,40660,'_blocks_2_options','field_623b03edb6e65'),(176534,40660,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176535,40660,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(176536,40660,'blocks_2_actions','1'),(176537,40660,'_blocks_2_actions','field_623b03edb6e6e'),(176538,40660,'blocks','a:3:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";}'),(176539,40660,'_blocks','field_6176696113096'),(176540,40660,'course_label_text',''),(176541,40660,'_course_label_text','field_61e17babf71fa'),(176542,40660,'course_label',''),(176543,40660,'_course_label','field_61e12f92749a7'),(176544,40660,'course_description',''),(176545,40660,'_course_description','field_617ac5788e5e1'),(176546,40660,'course_key_info',''),(176547,40660,'_course_key_info','field_617ac6ad8e5e2'),(176548,40660,'course_included',''),(176549,40660,'_course_included','field_617ac6f08e5e4'),(176550,40285,'blocks_3_acfe_flexible_toggle',''),(176551,40285,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(176552,40285,'blocks_3_acfe_flexible_layout_title','Timeline'),(176553,40285,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(176554,40285,'blocks_3_options_theme','#ffffff'),(176555,40285,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(176556,40285,'blocks_3_options',''),(176557,40285,'_blocks_3_options','field_6177de53d1195'),(176558,40285,'blocks_3_timeline_content_title',''),(176559,40285,'_blocks_3_timeline_content_title','field_6177de53d1198'),(176560,40285,'blocks_3_timeline_content_heading','Key webinar highlights'),(176561,40285,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(176562,40285,'blocks_3_timeline_content_text','This recorded webinar provides valuable insights for fitness professionals looking to enhance their understanding of functional training and adapt to the evolving needs of their clients. Access the recording by adding this product to your basket and stay ahead in the dynamic world of fitness.'),(176563,40285,'_blocks_3_timeline_content_text','field_6177de53d119a'),(176564,40285,'blocks_3_timeline_content_actions',''),(176565,40285,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(176566,40285,'blocks_3_timeline_content',''),(176567,40285,'_blocks_3_timeline_content','field_6177de53d1197'),(176568,40285,'blocks_3_timeline_items_0_title','Diverse Definitions of Functional Training'),(176569,40285,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(176570,40285,'blocks_3_timeline_items_0_text','Examine the various interpretations of functional training, recognising the multitude of perspectives within the fitness community. '),(176571,40285,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(176572,40285,'blocks_3_timeline_items_1_title','Evaluating the Current Paradigm'),(176573,40285,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(176574,40285,'blocks_3_timeline_items_1_text','Understand the strengths and weaknesses inherent in the existing functional training concept, prompting a critical evaluation of its present paradigm. '),(176575,40285,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(176576,40285,'blocks_3_timeline_items_2_title','Revolutionising Client Preparation'),(176577,40285,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(176578,40285,'blocks_3_timeline_items_2_text','Explore innovative approaches to preparing clients for exercise, focusing on mitigating the risk of injury and promoting a holistic training experience. '),(176579,40285,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(176580,40285,'blocks_3_timeline_items_3_title','Meeting Evolving Client Expectations'),(176581,40285,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(176582,40285,'blocks_3_timeline_items_3_text','Recognize the evolving needs of personal training clients, shaped by a more educated and health-conscious consumer base. Discover how personal trainers can adapt to address issues beyond traditional fitness goals. '),(176583,40285,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(176584,40285,'blocks_3_timeline_items_4_title','Expanding Trainer Skills Amidst Changing Expectations'),(176585,40285,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(176586,40285,'blocks_3_timeline_items_4_text','Acknowledge the expanded role of personal trainers, who are now sought after for advice on various ailments and issues. Gain insights into the changing landscape of health clubs, transforming into comprehensive health and wellness facilities. '),(176587,40285,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(176588,40285,'blocks_3_timeline_items_5_title','Navigating the Shifting Fitness Landscape'),(176589,40285,'_blocks_3_timeline_items_5_title','field_6177de53d119f'),(176590,40285,'blocks_3_timeline_items_5_text','Discuss the transformative impact of client expectations on the fitness industry, where health clubs are repositioned as holistic wellness facilities. Understand the nuanced health status of members between illness and wellness. '),(176591,40285,'_blocks_3_timeline_items_5_text','field_6177de53d11a0'),(176592,40285,'blocks_3_timeline_items_6_title','Preparing for Future Challenges'),(176593,40285,'_blocks_3_timeline_items_6_title','field_6177de53d119f'),(176594,40285,'blocks_3_timeline_items_6_text','Anticipate the increasing demand for personal trainers as individuals seek fitness guidance for minor issues. Explore the role of new screening methods, such as biomechanical and functional screening, in maintaining professional identity while avoiding the pitfalls of pseudo-therapy. '),(176595,40285,'_blocks_3_timeline_items_6_text','field_6177de53d11a0'),(176596,40285,'blocks_3_timeline_items','7'),(176597,40285,'_blocks_3_timeline_items','field_6177de53d119d'),(176598,40661,'hide_hero','0'),(176599,40661,'_hide_hero','field_66a2380fcda39'),(176600,40661,'hero_title','What the hell is ‘functional training’ anyway? Recorded Webinar'),(176601,40661,'_hero_title','field_617571fe285e8'),(176602,40661,'hero_text',''),(176603,40661,'_hero_text','field_6175723c285e9'),(176604,40661,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176605,40661,'_hero_actions_0_button','field_61757281285eb'),(176606,40661,'hero_actions','1'),(176607,40661,'_hero_actions','field_61757270285ea'),(176608,40661,'hero_style','default'),(176609,40661,'_hero_style','field_62051d9dc5324'),(176610,40661,'_thumbnail_id','40659'),(176611,40661,'__thumbnail_id','field_617570855ddaf'),(176612,40661,'hero_image_pos_x','right'),(176613,40661,'_hero_image_pos_x','field_62ec3d05390bb'),(176614,40661,'hero_image_pos_y','top'),(176615,40661,'_hero_image_pos_y','field_62ec3d05390bc'),(176616,40661,'hero_image_pos',''),(176617,40661,'_hero_image_pos','field_62ec3d05390ba'),(176618,40661,'fft_hide_from_listings','0'),(176619,40661,'_fft_hide_from_listings','field_61f1320446ab2'),(176620,40661,'fft_page_format','default'),(176621,40661,'_fft_page_format','field_61ae213f1f218'),(176622,40661,'fft_hide_nav','0'),(176623,40661,'_fft_hide_nav','field_635bd5e43527c'),(176624,40661,'fft_hide_header_call_to_action','0'),(176625,40661,'_fft_hide_header_call_to_action','field_635bd6723527d'),(176626,40661,'fft_page_sitemap','0'),(176627,40661,'_fft_page_sitemap','field_61af9b34e8181'),(176628,40661,'blocks_0_acfe_flexible_toggle',''),(176629,40661,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(176630,40661,'blocks_0_acfe_flexible_layout_title','Template'),(176631,40661,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(176632,40661,'blocks_0_template','39087'),(176633,40661,'_blocks_0_template','field_617bdd570fe01'),(176634,40661,'blocks_1_acfe_flexible_toggle',''),(176635,40661,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(176636,40661,'blocks_1_acfe_flexible_layout_title','Text Block'),(176637,40661,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(176638,40661,'blocks_1_options_theme','#ffffff'),(176639,40661,'_blocks_1_options_theme','field_6176830e2ad17'),(176640,40661,'blocks_1_options',''),(176641,40661,'_blocks_1_options','field_6176830e2ad16'),(176642,40661,'blocks_1_text_block_heading','Overview'),(176643,40661,'_blocks_1_text_block_heading','field_617669d413097'),(176644,40661,'blocks_1_text_block_content','In this enlightening webinar, we embark on a journey to demystify the concept of \'functional training,\' a term that has firmly entrenched itself in the fitness industry. Gray Cook, the creator of the Functional Movement Screen (FMS), rightly points out, \"Everyone has a different definition of function.\" So, what exactly is functional training, and why has it become a ubiquitous aspect of fitness culture?\r\n\r\nOur expert, Biomechanics Coach Rachel Thomson (Biomechanics Education), delves into the scientific foundations, insights from global leaders, and the potential need for a paradigm shift to truly understand functional training. Rather than accepting it as a universal norm, let\'s explore the multifaceted aspects of this training methodology.'),(176645,40661,'_blocks_1_text_block_content','field_617669ec13098'),(176646,40661,'blocks_2_acfe_flexible_toggle',''),(176647,40661,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(176648,40661,'blocks_2_acfe_flexible_layout_title','Button(s)'),(176649,40661,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(176650,40661,'blocks_2_options_theme','#ffffff'),(176651,40661,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(176652,40661,'blocks_2_options',''),(176653,40661,'_blocks_2_options','field_623b03edb6e65'),(176654,40661,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176655,40661,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(176656,40661,'blocks_2_actions','1'),(176657,40661,'_blocks_2_actions','field_623b03edb6e6e'),(176658,40661,'blocks','a:4:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";}'),(176659,40661,'_blocks','field_6176696113096'),(176660,40661,'course_label_text',''),(176661,40661,'_course_label_text','field_61e17babf71fa'),(176662,40661,'course_label',''),(176663,40661,'_course_label','field_61e12f92749a7'),(176664,40661,'course_description',''),(176665,40661,'_course_description','field_617ac5788e5e1'),(176666,40661,'course_key_info',''),(176667,40661,'_course_key_info','field_617ac6ad8e5e2'),(176668,40661,'course_included',''),(176669,40661,'_course_included','field_617ac6f08e5e4'),(176670,40661,'blocks_3_acfe_flexible_toggle',''),(176671,40661,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(176672,40661,'blocks_3_acfe_flexible_layout_title','Timeline'),(176673,40661,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(176674,40661,'blocks_3_options_theme','#ffffff'),(176675,40661,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(176676,40661,'blocks_3_options',''),(176677,40661,'_blocks_3_options','field_6177de53d1195'),(176678,40661,'blocks_3_timeline_content_title',''),(176679,40661,'_blocks_3_timeline_content_title','field_6177de53d1198'),(176680,40661,'blocks_3_timeline_content_heading','Key webinar highlights'),(176681,40661,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(176682,40661,'blocks_3_timeline_content_text','This recorded webinar provides valuable insights for fitness professionals looking to enhance their understanding of functional training and adapt to the evolving needs of their clients. Access the recording by adding this product to your basket and stay ahead in the dynamic world of fitness.'),(176683,40661,'_blocks_3_timeline_content_text','field_6177de53d119a'),(176684,40661,'blocks_3_timeline_content_actions',''),(176685,40661,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(176686,40661,'blocks_3_timeline_content',''),(176687,40661,'_blocks_3_timeline_content','field_6177de53d1197'),(176688,40661,'blocks_3_timeline_items_0_title','Diverse Definitions of Functional Training'),(176689,40661,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(176690,40661,'blocks_3_timeline_items_0_text','Examine the various interpretations of functional training, recognising the multitude of perspectives within the fitness community. '),(176691,40661,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(176692,40661,'blocks_3_timeline_items_1_title','Evaluating the Current Paradigm'),(176693,40661,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(176694,40661,'blocks_3_timeline_items_1_text','Understand the strengths and weaknesses inherent in the existing functional training concept, prompting a critical evaluation of its present paradigm. '),(176695,40661,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(176696,40661,'blocks_3_timeline_items_2_title','Revolutionising Client Preparation'),(176697,40661,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(176698,40661,'blocks_3_timeline_items_2_text','Explore innovative approaches to preparing clients for exercise, focusing on mitigating the risk of injury and promoting a holistic training experience. '),(176699,40661,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(176700,40661,'blocks_3_timeline_items_3_title','Meeting Evolving Client Expectations:'),(176701,40661,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(176702,40661,'blocks_3_timeline_items_3_text','Recognize the evolving needs of personal training clients, shaped by a more educated and health-conscious consumer base. Discover how personal trainers can adapt to address issues beyond traditional fitness goals. '),(176703,40661,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(176704,40661,'blocks_3_timeline_items_4_title','Expanding Trainer Skills Amidst Changing Expectations'),(176705,40661,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(176706,40661,'blocks_3_timeline_items_4_text','Acknowledge the expanded role of personal trainers, who are now sought after for advice on various ailments and issues. Gain insights into the changing landscape of health clubs, transforming into comprehensive health and wellness facilities. '),(176707,40661,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(176708,40661,'blocks_3_timeline_items_5_title','Navigating the Shifting Fitness Landscape'),(176709,40661,'_blocks_3_timeline_items_5_title','field_6177de53d119f'),(176710,40661,'blocks_3_timeline_items_5_text','Discuss the transformative impact of client expectations on the fitness industry, where health clubs are repositioned as holistic wellness facilities. Understand the nuanced health status of members between illness and wellness. '),(176711,40661,'_blocks_3_timeline_items_5_text','field_6177de53d11a0'),(176712,40661,'blocks_3_timeline_items_6_title','Preparing for Future Challenges'),(176713,40661,'_blocks_3_timeline_items_6_title','field_6177de53d119f'),(176714,40661,'blocks_3_timeline_items_6_text','Anticipate the increasing demand for personal trainers as individuals seek fitness guidance for minor issues. Explore the role of new screening methods, such as biomechanical and functional screening, in maintaining professional identity while avoiding the pitfalls of pseudo-therapy. '),(176715,40661,'_blocks_3_timeline_items_6_text','field_6177de53d11a0'),(176716,40661,'blocks_3_timeline_items','7'),(176717,40661,'_blocks_3_timeline_items','field_6177de53d119d'),(176718,40285,'blocks_4_acfe_flexible_toggle',''),(176719,40285,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(176720,40285,'blocks_4_acfe_flexible_layout_title','Text Block'),(176721,40285,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(176722,40285,'blocks_4_options_theme','#f5f5f5'),(176723,40285,'_blocks_4_options_theme','field_6176830e2ad17'),(176724,40285,'blocks_4_options',''),(176725,40285,'_blocks_4_options','field_6176830e2ad16'),(176726,40285,'blocks_4_text_block_heading','Related Courses'),(176727,40285,'_blocks_4_text_block_heading','field_617669d413097'),(176728,40285,'blocks_4_text_block_content','Check out our other commonly purchased CPD courses'),(176729,40285,'_blocks_4_text_block_content','field_617669ec13098'),(176742,40285,'blocks_6_acfe_flexible_toggle',''),(176743,40285,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(176744,40285,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(176745,40285,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(176746,40285,'blocks_6_options_theme','#ffffff'),(176747,40285,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(176748,40285,'blocks_6_options_state','0'),(176749,40285,'_blocks_6_options_state','field_6239fcb7508c5'),(176750,40285,'blocks_6_options',''),(176751,40285,'_blocks_6_options','field_6177e2991ac44'),(176752,40285,'blocks_6_content_title',''),(176753,40285,'_blocks_6_content_title','field_64d237e8bb1e2'),(176754,40285,'blocks_6_content_heading',''),(176755,40285,'_blocks_6_content_heading','field_64d237e8bb1e3'),(176756,40285,'blocks_6_content_text',''),(176757,40285,'_blocks_6_content_text','field_64d237e8bb1e4'),(176758,40285,'blocks_6_content_actions',''),(176759,40285,'_blocks_6_content_actions','field_64d237e8bb1e5'),(176760,40285,'blocks_6_content_align','left'),(176761,40285,'_blocks_6_content_align','field_64d2443e6b6aa'),(176762,40285,'blocks_6_content',''),(176763,40285,'_blocks_6_content','field_64d237e8bb1e1'),(176764,40285,'blocks_6_accordion_content','custom'),(176765,40285,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(176766,40285,'blocks_6_accordion_items',''),(176767,40285,'_blocks_6_accordion_items','field_6177e2991ac4c'),(176768,40285,'blocks_6_actions',''),(176769,40285,'_blocks_6_actions','field_61a746a817f7a'),(176770,40662,'hide_hero','0'),(176771,40662,'_hide_hero','field_66a2380fcda39'),(176772,40662,'hero_title','What the hell is ‘functional training’ anyway? Recorded Webinar'),(176773,40662,'_hero_title','field_617571fe285e8'),(176774,40662,'hero_text',''),(176775,40662,'_hero_text','field_6175723c285e9'),(176776,40662,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176777,40662,'_hero_actions_0_button','field_61757281285eb'),(176778,40662,'hero_actions','1'),(176779,40662,'_hero_actions','field_61757270285ea'),(176780,40662,'hero_style','default'),(176781,40662,'_hero_style','field_62051d9dc5324'),(176782,40662,'_thumbnail_id','40659'),(176783,40662,'__thumbnail_id','field_617570855ddaf'),(176784,40662,'hero_image_pos_x','right'),(176785,40662,'_hero_image_pos_x','field_62ec3d05390bb'),(176786,40662,'hero_image_pos_y','top'),(176787,40662,'_hero_image_pos_y','field_62ec3d05390bc'),(176788,40662,'hero_image_pos',''),(176789,40662,'_hero_image_pos','field_62ec3d05390ba'),(176790,40662,'fft_hide_from_listings','0'),(176791,40662,'_fft_hide_from_listings','field_61f1320446ab2'),(176792,40662,'fft_page_format','default'),(176793,40662,'_fft_page_format','field_61ae213f1f218'),(176794,40662,'fft_hide_nav','0'),(176795,40662,'_fft_hide_nav','field_635bd5e43527c'),(176796,40662,'fft_hide_header_call_to_action','0'),(176797,40662,'_fft_hide_header_call_to_action','field_635bd6723527d'),(176798,40662,'fft_page_sitemap','0'),(176799,40662,'_fft_page_sitemap','field_61af9b34e8181'),(176800,40662,'blocks_0_acfe_flexible_toggle',''),(176801,40662,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(176802,40662,'blocks_0_acfe_flexible_layout_title','Template'),(176803,40662,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(176804,40662,'blocks_0_template','39087'),(176805,40662,'_blocks_0_template','field_617bdd570fe01'),(176806,40662,'blocks_1_acfe_flexible_toggle',''),(176807,40662,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(176808,40662,'blocks_1_acfe_flexible_layout_title','Text Block'),(176809,40662,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(176810,40662,'blocks_1_options_theme','#ffffff'),(176811,40662,'_blocks_1_options_theme','field_6176830e2ad17'),(176812,40662,'blocks_1_options',''),(176813,40662,'_blocks_1_options','field_6176830e2ad16'),(176814,40662,'blocks_1_text_block_heading','Overview'),(176815,40662,'_blocks_1_text_block_heading','field_617669d413097'),(176816,40662,'blocks_1_text_block_content','In this enlightening webinar, we embark on a journey to demystify the concept of \'functional training,\' a term that has firmly entrenched itself in the fitness industry. Gray Cook, the creator of the Functional Movement Screen (FMS), rightly points out, \"Everyone has a different definition of function.\" So, what exactly is functional training, and why has it become a ubiquitous aspect of fitness culture?\r\n\r\nOur expert, Biomechanics Coach Rachel Thomson (Biomechanics Education), delves into the scientific foundations, insights from global leaders, and the potential need for a paradigm shift to truly understand functional training. Rather than accepting it as a universal norm, let\'s explore the multifaceted aspects of this training methodology.'),(176817,40662,'_blocks_1_text_block_content','field_617669ec13098'),(176818,40662,'blocks_2_acfe_flexible_toggle',''),(176819,40662,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(176820,40662,'blocks_2_acfe_flexible_layout_title','Button(s)'),(176821,40662,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(176822,40662,'blocks_2_options_theme','#ffffff'),(176823,40662,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(176824,40662,'blocks_2_options',''),(176825,40662,'_blocks_2_options','field_623b03edb6e65'),(176826,40662,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176827,40662,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(176828,40662,'blocks_2_actions','1'),(176829,40662,'_blocks_2_actions','field_623b03edb6e6e'),(176830,40662,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:14:\"course_compare\";i:6;s:10:\"accordions\";}'),(176831,40662,'_blocks','field_6176696113096'),(176832,40662,'course_label_text',''),(176833,40662,'_course_label_text','field_61e17babf71fa'),(176834,40662,'course_label',''),(176835,40662,'_course_label','field_61e12f92749a7'),(176836,40662,'course_description',''),(176837,40662,'_course_description','field_617ac5788e5e1'),(176838,40662,'course_key_info',''),(176839,40662,'_course_key_info','field_617ac6ad8e5e2'),(176840,40662,'course_included',''),(176841,40662,'_course_included','field_617ac6f08e5e4'),(176842,40662,'blocks_3_acfe_flexible_toggle',''),(176843,40662,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(176844,40662,'blocks_3_acfe_flexible_layout_title','Timeline'),(176845,40662,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(176846,40662,'blocks_3_options_theme','#ffffff'),(176847,40662,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(176848,40662,'blocks_3_options',''),(176849,40662,'_blocks_3_options','field_6177de53d1195'),(176850,40662,'blocks_3_timeline_content_title',''),(176851,40662,'_blocks_3_timeline_content_title','field_6177de53d1198'),(176852,40662,'blocks_3_timeline_content_heading','Key webinar highlights'),(176853,40662,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(176854,40662,'blocks_3_timeline_content_text','This recorded webinar provides valuable insights for fitness professionals looking to enhance their understanding of functional training and adapt to the evolving needs of their clients. Access the recording by adding this product to your basket and stay ahead in the dynamic world of fitness.'),(176855,40662,'_blocks_3_timeline_content_text','field_6177de53d119a'),(176856,40662,'blocks_3_timeline_content_actions',''),(176857,40662,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(176858,40662,'blocks_3_timeline_content',''),(176859,40662,'_blocks_3_timeline_content','field_6177de53d1197'),(176860,40662,'blocks_3_timeline_items_0_title','Diverse Definitions of Functional Training'),(176861,40662,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(176862,40662,'blocks_3_timeline_items_0_text','Examine the various interpretations of functional training, recognising the multitude of perspectives within the fitness community. '),(176863,40662,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(176864,40662,'blocks_3_timeline_items_1_title','Evaluating the Current Paradigm'),(176865,40662,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(176866,40662,'blocks_3_timeline_items_1_text','Understand the strengths and weaknesses inherent in the existing functional training concept, prompting a critical evaluation of its present paradigm. '),(176867,40662,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(176868,40662,'blocks_3_timeline_items_2_title','Revolutionising Client Preparation'),(176869,40662,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(176870,40662,'blocks_3_timeline_items_2_text','Explore innovative approaches to preparing clients for exercise, focusing on mitigating the risk of injury and promoting a holistic training experience. '),(176871,40662,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(176872,40662,'blocks_3_timeline_items_3_title','Meeting Evolving Client Expectations:'),(176873,40662,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(176874,40662,'blocks_3_timeline_items_3_text','Recognize the evolving needs of personal training clients, shaped by a more educated and health-conscious consumer base. Discover how personal trainers can adapt to address issues beyond traditional fitness goals. '),(176875,40662,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(176876,40662,'blocks_3_timeline_items_4_title','Expanding Trainer Skills Amidst Changing Expectations'),(176877,40662,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(176878,40662,'blocks_3_timeline_items_4_text','Acknowledge the expanded role of personal trainers, who are now sought after for advice on various ailments and issues. Gain insights into the changing landscape of health clubs, transforming into comprehensive health and wellness facilities. '),(176879,40662,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(176880,40662,'blocks_3_timeline_items_5_title','Navigating the Shifting Fitness Landscape'),(176881,40662,'_blocks_3_timeline_items_5_title','field_6177de53d119f'),(176882,40662,'blocks_3_timeline_items_5_text','Discuss the transformative impact of client expectations on the fitness industry, where health clubs are repositioned as holistic wellness facilities. Understand the nuanced health status of members between illness and wellness. '),(176883,40662,'_blocks_3_timeline_items_5_text','field_6177de53d11a0'),(176884,40662,'blocks_3_timeline_items_6_title','Preparing for Future Challenges'),(176885,40662,'_blocks_3_timeline_items_6_title','field_6177de53d119f'),(176886,40662,'blocks_3_timeline_items_6_text','Anticipate the increasing demand for personal trainers as individuals seek fitness guidance for minor issues. Explore the role of new screening methods, such as biomechanical and functional screening, in maintaining professional identity while avoiding the pitfalls of pseudo-therapy. '),(176887,40662,'_blocks_3_timeline_items_6_text','field_6177de53d11a0'),(176888,40662,'blocks_3_timeline_items','7'),(176889,40662,'_blocks_3_timeline_items','field_6177de53d119d'),(176890,40662,'blocks_4_acfe_flexible_toggle',''),(176891,40662,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(176892,40662,'blocks_4_acfe_flexible_layout_title','Text Block'),(176893,40662,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(176894,40662,'blocks_4_options_theme','#f5f5f5'),(176895,40662,'_blocks_4_options_theme','field_6176830e2ad17'),(176896,40662,'blocks_4_options',''),(176897,40662,'_blocks_4_options','field_6176830e2ad16'),(176898,40662,'blocks_4_text_block_heading','Related Courses'),(176899,40662,'_blocks_4_text_block_heading','field_617669d413097'),(176900,40662,'blocks_4_text_block_content','Check out our other commonly purchased CPD courses'),(176901,40662,'_blocks_4_text_block_content','field_617669ec13098'),(176902,40662,'blocks_5_acfe_flexible_toggle',''),(176903,40662,'_blocks_5_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(176904,40662,'blocks_5_acfe_flexible_layout_title','Course Comparison'),(176905,40662,'_blocks_5_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(176906,40662,'blocks_5_options_theme','#f5f5f5'),(176907,40662,'_blocks_5_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(176908,40662,'blocks_5_options',''),(176909,40662,'_blocks_5_options','field_617ac0b7f6c08'),(176910,40662,'blocks_5_show','category'),(176911,40662,'_blocks_5_show','field_61a49cba9d946'),(176912,40662,'blocks_5_category','403'),(176913,40662,'_blocks_5_category','field_61a49cd79d947'),(176914,40662,'blocks_6_acfe_flexible_toggle',''),(176915,40662,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(176916,40662,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(176917,40662,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(176918,40662,'blocks_6_options_theme','#ffffff'),(176919,40662,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(176920,40662,'blocks_6_options_state','0'),(176921,40662,'_blocks_6_options_state','field_6239fcb7508c5'),(176922,40662,'blocks_6_options',''),(176923,40662,'_blocks_6_options','field_6177e2991ac44'),(176924,40662,'blocks_6_content_title',''),(176925,40662,'_blocks_6_content_title','field_64d237e8bb1e2'),(176926,40662,'blocks_6_content_heading',''),(176927,40662,'_blocks_6_content_heading','field_64d237e8bb1e3'),(176928,40662,'blocks_6_content_text',''),(176929,40662,'_blocks_6_content_text','field_64d237e8bb1e4'),(176930,40662,'blocks_6_content_actions',''),(176931,40662,'_blocks_6_content_actions','field_64d237e8bb1e5'),(176932,40662,'blocks_6_content_align','left'),(176933,40662,'_blocks_6_content_align','field_64d2443e6b6aa'),(176934,40662,'blocks_6_content',''),(176935,40662,'_blocks_6_content','field_64d237e8bb1e1'),(176936,40662,'blocks_6_accordion_content','custom'),(176937,40662,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(176938,40662,'blocks_6_accordion_items',''),(176939,40662,'_blocks_6_accordion_items','field_6177e2991ac4c'),(176940,40662,'blocks_6_actions',''),(176941,40662,'_blocks_6_actions','field_61a746a817f7a'),(176942,40663,'hide_hero','0'),(176943,40663,'_hide_hero','field_66a2380fcda39'),(176944,40663,'hero_title','What the hell is ‘functional training’ anyway? Recorded Webinar'),(176945,40663,'_hero_title','field_617571fe285e8'),(176946,40663,'hero_text',''),(176947,40663,'_hero_text','field_6175723c285e9'),(176948,40663,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176949,40663,'_hero_actions_0_button','field_61757281285eb'),(176950,40663,'hero_actions','1'),(176951,40663,'_hero_actions','field_61757270285ea'),(176952,40663,'hero_style','default'),(176953,40663,'_hero_style','field_62051d9dc5324'),(176954,40663,'_thumbnail_id','40659'),(176955,40663,'__thumbnail_id','field_617570855ddaf'),(176956,40663,'hero_image_pos_x','right'),(176957,40663,'_hero_image_pos_x','field_62ec3d05390bb'),(176958,40663,'hero_image_pos_y','top'),(176959,40663,'_hero_image_pos_y','field_62ec3d05390bc'),(176960,40663,'hero_image_pos',''),(176961,40663,'_hero_image_pos','field_62ec3d05390ba'),(176962,40663,'fft_hide_from_listings','0'),(176963,40663,'_fft_hide_from_listings','field_61f1320446ab2'),(176964,40663,'fft_page_format','default'),(176965,40663,'_fft_page_format','field_61ae213f1f218'),(176966,40663,'fft_hide_nav','0'),(176967,40663,'_fft_hide_nav','field_635bd5e43527c'),(176968,40663,'fft_hide_header_call_to_action','0'),(176969,40663,'_fft_hide_header_call_to_action','field_635bd6723527d'),(176970,40663,'fft_page_sitemap','0'),(176971,40663,'_fft_page_sitemap','field_61af9b34e8181'),(176972,40663,'blocks_0_acfe_flexible_toggle',''),(176973,40663,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(176974,40663,'blocks_0_acfe_flexible_layout_title','Template'),(176975,40663,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(176976,40663,'blocks_0_template','39087'),(176977,40663,'_blocks_0_template','field_617bdd570fe01'),(176978,40663,'blocks_1_acfe_flexible_toggle',''),(176979,40663,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(176980,40663,'blocks_1_acfe_flexible_layout_title','Text Block'),(176981,40663,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(176982,40663,'blocks_1_options_theme','#ffffff'),(176983,40663,'_blocks_1_options_theme','field_6176830e2ad17'),(176984,40663,'blocks_1_options',''),(176985,40663,'_blocks_1_options','field_6176830e2ad16'),(176986,40663,'blocks_1_text_block_heading','Overview'),(176987,40663,'_blocks_1_text_block_heading','field_617669d413097'),(176988,40663,'blocks_1_text_block_content','In this enlightening webinar, we embark on a journey to demystify the concept of \'functional training,\' a term that has firmly entrenched itself in the fitness industry. Gray Cook, the creator of the Functional Movement Screen (FMS), rightly points out, \"Everyone has a different definition of function.\" So, what exactly is functional training, and why has it become a ubiquitous aspect of fitness culture?\r\n\r\nOur expert, Biomechanics Coach Rachel Thomson (Biomechanics Education), delves into the scientific foundations, insights from global leaders, and the potential need for a paradigm shift to truly understand functional training. Rather than accepting it as a universal norm, let\'s explore the multifaceted aspects of this training methodology.'),(176989,40663,'_blocks_1_text_block_content','field_617669ec13098'),(176990,40663,'blocks_2_acfe_flexible_toggle',''),(176991,40663,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(176992,40663,'blocks_2_acfe_flexible_layout_title','Button(s)'),(176993,40663,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(176994,40663,'blocks_2_options_theme','#ffffff'),(176995,40663,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(176996,40663,'blocks_2_options',''),(176997,40663,'_blocks_2_options','field_623b03edb6e65'),(176998,40663,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(176999,40663,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(177000,40663,'blocks_2_actions','1'),(177001,40663,'_blocks_2_actions','field_623b03edb6e6e'),(177002,40663,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:14:\"course_compare\";i:6;s:10:\"accordions\";}'),(177003,40663,'_blocks','field_6176696113096'),(177004,40663,'course_label_text',''),(177005,40663,'_course_label_text','field_61e17babf71fa'),(177006,40663,'course_label',''),(177007,40663,'_course_label','field_61e12f92749a7'),(177008,40663,'course_description',''),(177009,40663,'_course_description','field_617ac5788e5e1'),(177010,40663,'course_key_info',''),(177011,40663,'_course_key_info','field_617ac6ad8e5e2'),(177012,40663,'course_included',''),(177013,40663,'_course_included','field_617ac6f08e5e4'),(177014,40663,'blocks_3_acfe_flexible_toggle',''),(177015,40663,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(177016,40663,'blocks_3_acfe_flexible_layout_title','Timeline'),(177017,40663,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(177018,40663,'blocks_3_options_theme','#ffffff'),(177019,40663,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(177020,40663,'blocks_3_options',''),(177021,40663,'_blocks_3_options','field_6177de53d1195'),(177022,40663,'blocks_3_timeline_content_title',''),(177023,40663,'_blocks_3_timeline_content_title','field_6177de53d1198'),(177024,40663,'blocks_3_timeline_content_heading','Key webinar highlights'),(177025,40663,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(177026,40663,'blocks_3_timeline_content_text','This recorded webinar provides valuable insights for fitness professionals looking to enhance their understanding of functional training and adapt to the evolving needs of their clients. Access the recording by adding this product to your basket and stay ahead in the dynamic world of fitness.'),(177027,40663,'_blocks_3_timeline_content_text','field_6177de53d119a'),(177028,40663,'blocks_3_timeline_content_actions',''),(177029,40663,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(177030,40663,'blocks_3_timeline_content',''),(177031,40663,'_blocks_3_timeline_content','field_6177de53d1197'),(177032,40663,'blocks_3_timeline_items_0_title','Diverse Definitions of Functional Training'),(177033,40663,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(177034,40663,'blocks_3_timeline_items_0_text','Examine the various interpretations of functional training, recognising the multitude of perspectives within the fitness community. '),(177035,40663,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(177036,40663,'blocks_3_timeline_items_1_title','Evaluating the Current Paradigm'),(177037,40663,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(177038,40663,'blocks_3_timeline_items_1_text','Understand the strengths and weaknesses inherent in the existing functional training concept, prompting a critical evaluation of its present paradigm. '),(177039,40663,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(177040,40663,'blocks_3_timeline_items_2_title','Revolutionising Client Preparation'),(177041,40663,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(177042,40663,'blocks_3_timeline_items_2_text','Explore innovative approaches to preparing clients for exercise, focusing on mitigating the risk of injury and promoting a holistic training experience. '),(177043,40663,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(177044,40663,'blocks_3_timeline_items_3_title','Meeting Evolving Client Expectations:'),(177045,40663,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(177046,40663,'blocks_3_timeline_items_3_text','Recognize the evolving needs of personal training clients, shaped by a more educated and health-conscious consumer base. Discover how personal trainers can adapt to address issues beyond traditional fitness goals. '),(177047,40663,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(177048,40663,'blocks_3_timeline_items_4_title','Expanding Trainer Skills Amidst Changing Expectations'),(177049,40663,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(177050,40663,'blocks_3_timeline_items_4_text','Acknowledge the expanded role of personal trainers, who are now sought after for advice on various ailments and issues. Gain insights into the changing landscape of health clubs, transforming into comprehensive health and wellness facilities. '),(177051,40663,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(177052,40663,'blocks_3_timeline_items_5_title','Navigating the Shifting Fitness Landscape'),(177053,40663,'_blocks_3_timeline_items_5_title','field_6177de53d119f'),(177054,40663,'blocks_3_timeline_items_5_text','Discuss the transformative impact of client expectations on the fitness industry, where health clubs are repositioned as holistic wellness facilities. Understand the nuanced health status of members between illness and wellness. '),(177055,40663,'_blocks_3_timeline_items_5_text','field_6177de53d11a0'),(177056,40663,'blocks_3_timeline_items_6_title','Preparing for Future Challenges'),(177057,40663,'_blocks_3_timeline_items_6_title','field_6177de53d119f'),(177058,40663,'blocks_3_timeline_items_6_text','Anticipate the increasing demand for personal trainers as individuals seek fitness guidance for minor issues. Explore the role of new screening methods, such as biomechanical and functional screening, in maintaining professional identity while avoiding the pitfalls of pseudo-therapy. '),(177059,40663,'_blocks_3_timeline_items_6_text','field_6177de53d11a0'),(177060,40663,'blocks_3_timeline_items','7'),(177061,40663,'_blocks_3_timeline_items','field_6177de53d119d'),(177062,40663,'blocks_4_acfe_flexible_toggle',''),(177063,40663,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(177064,40663,'blocks_4_acfe_flexible_layout_title','Text Block'),(177065,40663,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(177066,40663,'blocks_4_options_theme','#f5f5f5'),(177067,40663,'_blocks_4_options_theme','field_6176830e2ad17'),(177068,40663,'blocks_4_options',''),(177069,40663,'_blocks_4_options','field_6176830e2ad16'),(177070,40663,'blocks_4_text_block_heading','Related Courses'),(177071,40663,'_blocks_4_text_block_heading','field_617669d413097'),(177072,40663,'blocks_4_text_block_content','Check out our other commonly purchased CPD courses'),(177073,40663,'_blocks_4_text_block_content','field_617669ec13098'),(177074,40663,'blocks_5_acfe_flexible_toggle',''),(177075,40663,'_blocks_5_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(177076,40663,'blocks_5_acfe_flexible_layout_title','Course Comparison'),(177077,40663,'_blocks_5_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(177078,40663,'blocks_5_options_theme','#f5f5f5'),(177079,40663,'_blocks_5_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(177080,40663,'blocks_5_options',''),(177081,40663,'_blocks_5_options','field_617ac0b7f6c08'),(177082,40663,'blocks_5_show','category'),(177083,40663,'_blocks_5_show','field_61a49cba9d946'),(177084,40663,'blocks_5_category','403'),(177085,40663,'_blocks_5_category','field_61a49cd79d947'),(177086,40663,'blocks_6_acfe_flexible_toggle',''),(177087,40663,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(177088,40663,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(177089,40663,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(177090,40663,'blocks_6_options_theme','#ffffff'),(177091,40663,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(177092,40663,'blocks_6_options_state','0'),(177093,40663,'_blocks_6_options_state','field_6239fcb7508c5'),(177094,40663,'blocks_6_options',''),(177095,40663,'_blocks_6_options','field_6177e2991ac44'),(177096,40663,'blocks_6_content_title',''),(177097,40663,'_blocks_6_content_title','field_64d237e8bb1e2'),(177098,40663,'blocks_6_content_heading',''),(177099,40663,'_blocks_6_content_heading','field_64d237e8bb1e3'),(177100,40663,'blocks_6_content_text',''),(177101,40663,'_blocks_6_content_text','field_64d237e8bb1e4'),(177102,40663,'blocks_6_content_actions',''),(177103,40663,'_blocks_6_content_actions','field_64d237e8bb1e5'),(177104,40663,'blocks_6_content_align','left'),(177105,40663,'_blocks_6_content_align','field_64d2443e6b6aa'),(177106,40663,'blocks_6_content',''),(177107,40663,'_blocks_6_content','field_64d237e8bb1e1'),(177108,40663,'blocks_6_accordion_content','custom'),(177109,40663,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(177110,40663,'blocks_6_accordion_items',''),(177111,40663,'_blocks_6_accordion_items','field_6177e2991ac4c'),(177112,40663,'blocks_6_actions',''),(177113,40663,'_blocks_6_actions','field_61a746a817f7a'),(177114,40285,'blocks_5_acfe_flexible_toggle',''),(177115,40285,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(177116,40285,'blocks_5_acfe_flexible_layout_title','Cards'),(177117,40285,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(177118,40285,'blocks_5_options_theme','#ffffff'),(177119,40285,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(177120,40285,'blocks_5_options_format','carousel'),(177121,40285,'_blocks_5_options_format','field_617a7b15245b5'),(177122,40285,'blocks_5_options_style','default'),(177123,40285,'_blocks_5_options_style','field_6278ffb63484a'),(177124,40285,'blocks_5_options_cards_current_listing','0'),(177125,40285,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(177126,40285,'blocks_5_options_cards_content','post_type'),(177127,40285,'_blocks_5_options_cards_content','field_617aba6122688'),(177128,40285,'blocks_5_options_cards_post_type','course'),(177129,40285,'_blocks_5_options_cards_post_type','field_6194cc744d38b'),(177130,40285,'blocks_5_options_cards_posts_per_page','6'),(177131,40285,'_blocks_5_options_cards_posts_per_page','field_61a7565b1a0f2'),(177132,40285,'blocks_5_options',''),(177133,40285,'_blocks_5_options','field_617a7b15245b3'),(177134,40664,'hide_hero','0'),(177135,40664,'_hide_hero','field_66a2380fcda39'),(177136,40664,'hero_title','What the hell is ‘functional training’ anyway? Recorded Webinar'),(177137,40664,'_hero_title','field_617571fe285e8'),(177138,40664,'hero_text',''),(177139,40664,'_hero_text','field_6175723c285e9'),(177140,40664,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177141,40664,'_hero_actions_0_button','field_61757281285eb'),(177142,40664,'hero_actions','1'),(177143,40664,'_hero_actions','field_61757270285ea'),(177144,40664,'hero_style','default'),(177145,40664,'_hero_style','field_62051d9dc5324'),(177146,40664,'_thumbnail_id','40659'),(177147,40664,'__thumbnail_id','field_617570855ddaf'),(177148,40664,'hero_image_pos_x','right'),(177149,40664,'_hero_image_pos_x','field_62ec3d05390bb'),(177150,40664,'hero_image_pos_y','top'),(177151,40664,'_hero_image_pos_y','field_62ec3d05390bc'),(177152,40664,'hero_image_pos',''),(177153,40664,'_hero_image_pos','field_62ec3d05390ba'),(177154,40664,'fft_hide_from_listings','0'),(177155,40664,'_fft_hide_from_listings','field_61f1320446ab2'),(177156,40664,'fft_page_format','default'),(177157,40664,'_fft_page_format','field_61ae213f1f218'),(177158,40664,'fft_hide_nav','0'),(177159,40664,'_fft_hide_nav','field_635bd5e43527c'),(177160,40664,'fft_hide_header_call_to_action','0'),(177161,40664,'_fft_hide_header_call_to_action','field_635bd6723527d'),(177162,40664,'fft_page_sitemap','0'),(177163,40664,'_fft_page_sitemap','field_61af9b34e8181'),(177164,40664,'blocks_0_acfe_flexible_toggle',''),(177165,40664,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(177166,40664,'blocks_0_acfe_flexible_layout_title','Template'),(177167,40664,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(177168,40664,'blocks_0_template','39087'),(177169,40664,'_blocks_0_template','field_617bdd570fe01'),(177170,40664,'blocks_1_acfe_flexible_toggle',''),(177171,40664,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(177172,40664,'blocks_1_acfe_flexible_layout_title','Text Block'),(177173,40664,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(177174,40664,'blocks_1_options_theme','#ffffff'),(177175,40664,'_blocks_1_options_theme','field_6176830e2ad17'),(177176,40664,'blocks_1_options',''),(177177,40664,'_blocks_1_options','field_6176830e2ad16'),(177178,40664,'blocks_1_text_block_heading','Overview'),(177179,40664,'_blocks_1_text_block_heading','field_617669d413097'),(177180,40664,'blocks_1_text_block_content','In this enlightening webinar, we embark on a journey to demystify the concept of \'functional training,\' a term that has firmly entrenched itself in the fitness industry. Gray Cook, the creator of the Functional Movement Screen (FMS), rightly points out, \"Everyone has a different definition of function.\" So, what exactly is functional training, and why has it become a ubiquitous aspect of fitness culture?\r\n\r\nOur expert, Biomechanics Coach Rachel Thomson (Biomechanics Education), delves into the scientific foundations, insights from global leaders, and the potential need for a paradigm shift to truly understand functional training. Rather than accepting it as a universal norm, let\'s explore the multifaceted aspects of this training methodology.'),(177181,40664,'_blocks_1_text_block_content','field_617669ec13098'),(177182,40664,'blocks_2_acfe_flexible_toggle',''),(177183,40664,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(177184,40664,'blocks_2_acfe_flexible_layout_title','Button(s)'),(177185,40664,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(177186,40664,'blocks_2_options_theme','#ffffff'),(177187,40664,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(177188,40664,'blocks_2_options',''),(177189,40664,'_blocks_2_options','field_623b03edb6e65'),(177190,40664,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177191,40664,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(177192,40664,'blocks_2_actions','1'),(177193,40664,'_blocks_2_actions','field_623b03edb6e6e'),(177194,40664,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:10:\"accordions\";}'),(177195,40664,'_blocks','field_6176696113096'),(177196,40664,'course_label_text',''),(177197,40664,'_course_label_text','field_61e17babf71fa'),(177198,40664,'course_label',''),(177199,40664,'_course_label','field_61e12f92749a7'),(177200,40664,'course_description',''),(177201,40664,'_course_description','field_617ac5788e5e1'),(177202,40664,'course_key_info',''),(177203,40664,'_course_key_info','field_617ac6ad8e5e2'),(177204,40664,'course_included',''),(177205,40664,'_course_included','field_617ac6f08e5e4'),(177206,40664,'blocks_3_acfe_flexible_toggle',''),(177207,40664,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(177208,40664,'blocks_3_acfe_flexible_layout_title','Timeline'),(177209,40664,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(177210,40664,'blocks_3_options_theme','#ffffff'),(177211,40664,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(177212,40664,'blocks_3_options',''),(177213,40664,'_blocks_3_options','field_6177de53d1195'),(177214,40664,'blocks_3_timeline_content_title',''),(177215,40664,'_blocks_3_timeline_content_title','field_6177de53d1198'),(177216,40664,'blocks_3_timeline_content_heading','Key webinar highlights'),(177217,40664,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(177218,40664,'blocks_3_timeline_content_text','This recorded webinar provides valuable insights for fitness professionals looking to enhance their understanding of functional training and adapt to the evolving needs of their clients. Access the recording by adding this product to your basket and stay ahead in the dynamic world of fitness.'),(177219,40664,'_blocks_3_timeline_content_text','field_6177de53d119a'),(177220,40664,'blocks_3_timeline_content_actions',''),(177221,40664,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(177222,40664,'blocks_3_timeline_content',''),(177223,40664,'_blocks_3_timeline_content','field_6177de53d1197'),(177224,40664,'blocks_3_timeline_items_0_title','Diverse Definitions of Functional Training'),(177225,40664,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(177226,40664,'blocks_3_timeline_items_0_text','Examine the various interpretations of functional training, recognising the multitude of perspectives within the fitness community. '),(177227,40664,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(177228,40664,'blocks_3_timeline_items_1_title','Evaluating the Current Paradigm'),(177229,40664,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(177230,40664,'blocks_3_timeline_items_1_text','Understand the strengths and weaknesses inherent in the existing functional training concept, prompting a critical evaluation of its present paradigm. '),(177231,40664,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(177232,40664,'blocks_3_timeline_items_2_title','Revolutionising Client Preparation'),(177233,40664,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(177234,40664,'blocks_3_timeline_items_2_text','Explore innovative approaches to preparing clients for exercise, focusing on mitigating the risk of injury and promoting a holistic training experience. '),(177235,40664,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(177236,40664,'blocks_3_timeline_items_3_title','Meeting Evolving Client Expectations:'),(177237,40664,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(177238,40664,'blocks_3_timeline_items_3_text','Recognize the evolving needs of personal training clients, shaped by a more educated and health-conscious consumer base. Discover how personal trainers can adapt to address issues beyond traditional fitness goals. '),(177239,40664,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(177240,40664,'blocks_3_timeline_items_4_title','Expanding Trainer Skills Amidst Changing Expectations'),(177241,40664,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(177242,40664,'blocks_3_timeline_items_4_text','Acknowledge the expanded role of personal trainers, who are now sought after for advice on various ailments and issues. Gain insights into the changing landscape of health clubs, transforming into comprehensive health and wellness facilities. '),(177243,40664,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(177244,40664,'blocks_3_timeline_items_5_title','Navigating the Shifting Fitness Landscape'),(177245,40664,'_blocks_3_timeline_items_5_title','field_6177de53d119f'),(177246,40664,'blocks_3_timeline_items_5_text','Discuss the transformative impact of client expectations on the fitness industry, where health clubs are repositioned as holistic wellness facilities. Understand the nuanced health status of members between illness and wellness. '),(177247,40664,'_blocks_3_timeline_items_5_text','field_6177de53d11a0'),(177248,40664,'blocks_3_timeline_items_6_title','Preparing for Future Challenges'),(177249,40664,'_blocks_3_timeline_items_6_title','field_6177de53d119f'),(177250,40664,'blocks_3_timeline_items_6_text','Anticipate the increasing demand for personal trainers as individuals seek fitness guidance for minor issues. Explore the role of new screening methods, such as biomechanical and functional screening, in maintaining professional identity while avoiding the pitfalls of pseudo-therapy. '),(177251,40664,'_blocks_3_timeline_items_6_text','field_6177de53d11a0'),(177252,40664,'blocks_3_timeline_items','7'),(177253,40664,'_blocks_3_timeline_items','field_6177de53d119d'),(177254,40664,'blocks_4_acfe_flexible_toggle',''),(177255,40664,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(177256,40664,'blocks_4_acfe_flexible_layout_title','Text Block'),(177257,40664,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(177258,40664,'blocks_4_options_theme','#f5f5f5'),(177259,40664,'_blocks_4_options_theme','field_6176830e2ad17'),(177260,40664,'blocks_4_options',''),(177261,40664,'_blocks_4_options','field_6176830e2ad16'),(177262,40664,'blocks_4_text_block_heading','Related Courses'),(177263,40664,'_blocks_4_text_block_heading','field_617669d413097'),(177264,40664,'blocks_4_text_block_content','Check out our other commonly purchased CPD courses'),(177265,40664,'_blocks_4_text_block_content','field_617669ec13098'),(177266,40664,'blocks_6_acfe_flexible_toggle',''),(177267,40664,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(177268,40664,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(177269,40664,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(177270,40664,'blocks_6_options_theme','#ffffff'),(177271,40664,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(177272,40664,'blocks_6_options_state','0'),(177273,40664,'_blocks_6_options_state','field_6239fcb7508c5'),(177274,40664,'blocks_6_options',''),(177275,40664,'_blocks_6_options','field_6177e2991ac44'),(177276,40664,'blocks_6_content_title',''),(177277,40664,'_blocks_6_content_title','field_64d237e8bb1e2'),(177278,40664,'blocks_6_content_heading',''),(177279,40664,'_blocks_6_content_heading','field_64d237e8bb1e3'),(177280,40664,'blocks_6_content_text',''),(177281,40664,'_blocks_6_content_text','field_64d237e8bb1e4'),(177282,40664,'blocks_6_content_actions',''),(177283,40664,'_blocks_6_content_actions','field_64d237e8bb1e5'),(177284,40664,'blocks_6_content_align','left'),(177285,40664,'_blocks_6_content_align','field_64d2443e6b6aa'),(177286,40664,'blocks_6_content',''),(177287,40664,'_blocks_6_content','field_64d237e8bb1e1'),(177288,40664,'blocks_6_accordion_content','custom'),(177289,40664,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(177290,40664,'blocks_6_accordion_items',''),(177291,40664,'_blocks_6_accordion_items','field_6177e2991ac4c'),(177292,40664,'blocks_6_actions',''),(177293,40664,'_blocks_6_actions','field_61a746a817f7a'),(177294,40664,'blocks_5_acfe_flexible_toggle',''),(177295,40664,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(177296,40664,'blocks_5_acfe_flexible_layout_title','Cards'),(177297,40664,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(177298,40664,'blocks_5_options_theme','#ffffff'),(177299,40664,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(177300,40664,'blocks_5_options_format','carousel'),(177301,40664,'_blocks_5_options_format','field_617a7b15245b5'),(177302,40664,'blocks_5_options_style','default'),(177303,40664,'_blocks_5_options_style','field_6278ffb63484a'),(177304,40664,'blocks_5_options_cards_current_listing','0'),(177305,40664,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(177306,40664,'blocks_5_options_cards_content','post_type'),(177307,40664,'_blocks_5_options_cards_content','field_617aba6122688'),(177308,40664,'blocks_5_options_cards_post_type','course'),(177309,40664,'_blocks_5_options_cards_post_type','field_6194cc744d38b'),(177310,40664,'blocks_5_options_cards_posts_per_page','6'),(177311,40664,'_blocks_5_options_cards_posts_per_page','field_61a7565b1a0f2'),(177312,40664,'blocks_5_options',''),(177313,40664,'_blocks_5_options','field_617a7b15245b3'),(177314,40283,'_edit_lock','1727342233:5'),(177315,40665,'_wp_attached_file','2024/09/Understanding-the-nerves-hero.jpg'),(177316,40665,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:973;s:4:\"file\";s:41:\"2024/09/Understanding-the-nerves-hero.jpg\";s:8:\"filesize\";i:136428;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-900x342.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30611;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Understanding-the-nerves-hero-1200x456.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:456;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47226;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-400x152.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9244;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-768x292.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24109;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"Understanding-the-nerves-hero-1536x584.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:584;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69040;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:42:\"Understanding-the-nerves-hero-2048x778.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:778;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106469;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16141;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53902;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:42:\"Understanding-the-nerves-hero-1200x973.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:973;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74338;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13465;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46319;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Understanding-the-nerves-hero-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71365;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11445;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36422;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-900x973.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:973;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55420;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14334;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49643;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Understanding-the-nerves-hero-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76374;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12217;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Understanding-the-nerves-hero-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41706;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Understanding-the-nerves-hero-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64815;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(177317,40283,'_edit_last','5'),(177318,40283,'_wp_old_date','2024-09-10'),(177319,40283,'hide_hero','0'),(177320,40283,'_hide_hero','field_66a2380fcda39'),(177321,40283,'hero_title','Understanding Nerves – Recorded Webinar'),(177322,40283,'_hero_title','field_617571fe285e8'),(177323,40283,'hero_text',''),(177324,40283,'_hero_text','field_6175723c285e9'),(177325,40283,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177326,40283,'_hero_actions_0_button','field_61757281285eb'),(177327,40283,'hero_actions','1'),(177328,40283,'_hero_actions','field_61757270285ea'),(177329,40283,'hero_style','default'),(177330,40283,'_hero_style','field_62051d9dc5324'),(177331,40283,'_thumbnail_id','40665'),(177332,40283,'__thumbnail_id','field_617570855ddaf'),(177333,40283,'hero_image_pos_x','right'),(177334,40283,'_hero_image_pos_x','field_62ec3d05390bb'),(177335,40283,'hero_image_pos_y','top'),(177336,40283,'_hero_image_pos_y','field_62ec3d05390bc'),(177337,40283,'hero_image_pos',''),(177338,40283,'_hero_image_pos','field_62ec3d05390ba'),(177339,40283,'fft_hide_from_listings','0'),(177340,40283,'_fft_hide_from_listings','field_61f1320446ab2'),(177341,40283,'fft_page_format','default'),(177342,40283,'_fft_page_format','field_61ae213f1f218'),(177343,40283,'fft_hide_nav','0'),(177344,40283,'_fft_hide_nav','field_635bd5e43527c'),(177345,40283,'fft_hide_header_call_to_action','0'),(177346,40283,'_fft_hide_header_call_to_action','field_635bd6723527d'),(177347,40283,'fft_page_sitemap','0'),(177348,40283,'_fft_page_sitemap','field_61af9b34e8181'),(177349,40283,'blocks_0_acfe_flexible_toggle',''),(177350,40283,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(177351,40283,'blocks_0_acfe_flexible_layout_title','Template'),(177352,40283,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(177353,40283,'blocks_0_template','39087'),(177354,40283,'_blocks_0_template','field_617bdd570fe01'),(177355,40283,'blocks_1_acfe_flexible_toggle',''),(177356,40283,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(177357,40283,'blocks_1_acfe_flexible_layout_title','Text Block'),(177358,40283,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(177359,40283,'blocks_1_options_theme','#ffffff'),(177360,40283,'_blocks_1_options_theme','field_6176830e2ad17'),(177361,40283,'blocks_1_options',''),(177362,40283,'_blocks_1_options','field_6176830e2ad16'),(177363,40283,'blocks_1_text_block_heading','Course Overview'),(177364,40283,'_blocks_1_text_block_heading','field_617669d413097'),(177365,40283,'blocks_1_text_block_content','This live webinar is for non-clinicians seeking solutions to modern ailments of their clients with a proactive approach to assessment &amp; improvement of movement.\r\n\r\nKey Objectives:\r\n<ul>\r\n 	<li>Delve into the integrated system</li>\r\n 	<li>Gain a comprehensive understanding of the 3 subsystems</li>\r\n 	<li>Explore the pivotal role of nerves and examine supporting evidence</li>\r\n 	<li>Engage in hands-on practice to assess the nerves</li>\r\n 	<li>Learn effective techniques to mobilize the nervous system, enhancing performance and reducing the risk of complications.</li>\r\n</ul>'),(177366,40283,'_blocks_1_text_block_content','field_617669ec13098'),(177367,40283,'blocks_2_acfe_flexible_toggle',''),(177368,40283,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(177369,40283,'blocks_2_acfe_flexible_layout_title','Button(s)'),(177370,40283,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(177371,40283,'blocks_2_options_theme','#ffffff'),(177372,40283,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(177373,40283,'blocks_2_options',''),(177374,40283,'_blocks_2_options','field_623b03edb6e65'),(177375,40283,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177376,40283,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(177377,40283,'blocks_2_actions','1'),(177378,40283,'_blocks_2_actions','field_623b03edb6e6e'),(177379,40283,'blocks_3_acfe_flexible_toggle',''),(177380,40283,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(177381,40283,'blocks_3_acfe_flexible_layout_title','Text Block'),(177382,40283,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(177383,40283,'blocks_3_options_theme','#ffffff'),(177384,40283,'_blocks_3_options_theme','field_6176830e2ad17'),(177385,40283,'blocks_3_options',''),(177386,40283,'_blocks_3_options','field_6176830e2ad16'),(177387,40283,'blocks_3_text_block_heading','More Courses'),(177388,40283,'_blocks_3_text_block_heading','field_617669d413097'),(177389,40283,'blocks_3_text_block_content','Discover our range of courses that are frequently purchased'),(177390,40283,'_blocks_3_text_block_content','field_617669ec13098'),(177391,40283,'blocks_4_acfe_flexible_toggle',''),(177392,40283,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(177393,40283,'blocks_4_acfe_flexible_layout_title','Cards'),(177394,40283,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(177395,40283,'blocks_4_options_theme','#ffffff'),(177396,40283,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(177397,40283,'blocks_4_options_format','carousel'),(177398,40283,'_blocks_4_options_format','field_617a7b15245b5'),(177399,40283,'blocks_4_options_style','default'),(177400,40283,'_blocks_4_options_style','field_6278ffb63484a'),(177401,40283,'blocks_4_options_cards_current_listing','0'),(177402,40283,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(177403,40283,'blocks_4_options_cards_content','post_type'),(177404,40283,'_blocks_4_options_cards_content','field_617aba6122688'),(177405,40283,'blocks_4_options_cards_post_type','course'),(177406,40283,'_blocks_4_options_cards_post_type','field_6194cc744d38b'),(177407,40283,'blocks_4_options_cards_posts_per_page','6'),(177408,40283,'_blocks_4_options_cards_posts_per_page','field_61a7565b1a0f2'),(177409,40283,'blocks_4_options',''),(177410,40283,'_blocks_4_options','field_617a7b15245b3'),(177411,40283,'blocks_5_acfe_flexible_toggle',''),(177412,40283,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(177413,40283,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(177414,40283,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(177415,40283,'blocks_5_options_theme','#ffffff'),(177416,40283,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(177417,40283,'blocks_5_options_state','0'),(177418,40283,'_blocks_5_options_state','field_6239fcb7508c5'),(177419,40283,'blocks_5_options',''),(177420,40283,'_blocks_5_options','field_6177e2991ac44'),(177421,40283,'blocks_5_content_title',''),(177422,40283,'_blocks_5_content_title','field_64d237e8bb1e2'),(177423,40283,'blocks_5_content_heading','FAQ\'s'),(177424,40283,'_blocks_5_content_heading','field_64d237e8bb1e3'),(177425,40283,'blocks_5_content_text',''),(177426,40283,'_blocks_5_content_text','field_64d237e8bb1e4'),(177427,40283,'blocks_5_content_actions',''),(177428,40283,'_blocks_5_content_actions','field_64d237e8bb1e5'),(177429,40283,'blocks_5_content_align','left'),(177430,40283,'_blocks_5_content_align','field_64d2443e6b6aa'),(177431,40283,'blocks_5_content',''),(177432,40283,'_blocks_5_content','field_64d237e8bb1e1'),(177433,40283,'blocks_5_accordion_content','custom'),(177434,40283,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(177435,40283,'blocks_5_accordion_items',''),(177436,40283,'_blocks_5_accordion_items','field_6177e2991ac4c'),(177437,40283,'blocks_5_actions',''),(177438,40283,'_blocks_5_actions','field_61a746a817f7a'),(177439,40283,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"accordions\";}'),(177440,40283,'_blocks','field_6176696113096'),(177441,40283,'course_label_text','Understanding Nerves Webinar'),(177442,40283,'_course_label_text','field_61e17babf71fa'),(177443,40283,'course_label',''),(177444,40283,'_course_label','field_61e12f92749a7'),(177445,40283,'course_description','This live webinar is for non-clinicians seeking solutions to modern ailments of their clients with a proactive approach to assessment & improvement of movement.'),(177446,40283,'_course_description','field_617ac5788e5e1'),(177447,40283,'course_key_info','3'),(177448,40283,'_course_key_info','field_617ac6ad8e5e2'),(177449,40283,'course_included','Delve into the integrated system\r\n\r\nGain a comprehensive understanding of the 3 subsystems\r\n\r\nExplore the pivotal role of nerves and examine supporting evidence\r\n\r\nEngage in hands-on practice to assess the nerves\r\n\r\nLearn effective techniques to mobilize the nervous system, enhancing performance and reducing the risk of complications.'),(177450,40283,'_course_included','field_617ac6f08e5e4'),(177451,40283,'_yoast_wpseo_primary_course-cat','403'),(177452,40283,'_yoast_wpseo_estimated-reading-time-minutes','1'),(177453,40666,'hide_hero','0'),(177454,40666,'_hide_hero','field_66a2380fcda39'),(177455,40666,'hero_title','Understanding Nerves – Recorded Webinar'),(177456,40666,'_hero_title','field_617571fe285e8'),(177457,40666,'hero_text',''),(177458,40666,'_hero_text','field_6175723c285e9'),(177459,40666,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177460,40666,'_hero_actions_0_button','field_61757281285eb'),(177461,40666,'hero_actions','1'),(177462,40666,'_hero_actions','field_61757270285ea'),(177463,40666,'hero_style','default'),(177464,40666,'_hero_style','field_62051d9dc5324'),(177465,40666,'_thumbnail_id','40665'),(177466,40666,'__thumbnail_id','field_617570855ddaf'),(177467,40666,'hero_image_pos_x','right'),(177468,40666,'_hero_image_pos_x','field_62ec3d05390bb'),(177469,40666,'hero_image_pos_y','top'),(177470,40666,'_hero_image_pos_y','field_62ec3d05390bc'),(177471,40666,'hero_image_pos',''),(177472,40666,'_hero_image_pos','field_62ec3d05390ba'),(177473,40666,'fft_hide_from_listings','0'),(177474,40666,'_fft_hide_from_listings','field_61f1320446ab2'),(177475,40666,'fft_page_format','default'),(177476,40666,'_fft_page_format','field_61ae213f1f218'),(177477,40666,'fft_hide_nav','0'),(177478,40666,'_fft_hide_nav','field_635bd5e43527c'),(177479,40666,'fft_hide_header_call_to_action','0'),(177480,40666,'_fft_hide_header_call_to_action','field_635bd6723527d'),(177481,40666,'fft_page_sitemap','0'),(177482,40666,'_fft_page_sitemap','field_61af9b34e8181'),(177483,40666,'blocks_0_acfe_flexible_toggle',''),(177484,40666,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(177485,40666,'blocks_0_acfe_flexible_layout_title','Template'),(177486,40666,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(177487,40666,'blocks_0_template','39087'),(177488,40666,'_blocks_0_template','field_617bdd570fe01'),(177489,40666,'blocks_1_acfe_flexible_toggle',''),(177490,40666,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(177491,40666,'blocks_1_acfe_flexible_layout_title','Text Block'),(177492,40666,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(177493,40666,'blocks_1_options_theme','#ffffff'),(177494,40666,'_blocks_1_options_theme','field_6176830e2ad17'),(177495,40666,'blocks_1_options',''),(177496,40666,'_blocks_1_options','field_6176830e2ad16'),(177497,40666,'blocks_1_text_block_heading','Course Overview'),(177498,40666,'_blocks_1_text_block_heading','field_617669d413097'),(177499,40666,'blocks_1_text_block_content','This live webinar is for non-clinicians seeking solutions to modern ailments of their clients with a proactive approach to assessment &amp; improvement of movement.\r\n\r\nKey Objectives:\r\n<ul>\r\n 	<li>Delve into the integrated system</li>\r\n 	<li>Gain a comprehensive understanding of the 3 subsystems</li>\r\n 	<li>Explore the pivotal role of nerves and examine supporting evidence</li>\r\n 	<li>Engage in hands-on practice to assess the nerves</li>\r\n 	<li>Learn effective techniques to mobilize the nervous system, enhancing performance and reducing the risk of complications.</li>\r\n</ul>'),(177500,40666,'_blocks_1_text_block_content','field_617669ec13098'),(177501,40666,'blocks_2_acfe_flexible_toggle',''),(177502,40666,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(177503,40666,'blocks_2_acfe_flexible_layout_title','Button(s)'),(177504,40666,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(177505,40666,'blocks_2_options_theme','#ffffff'),(177506,40666,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(177507,40666,'blocks_2_options',''),(177508,40666,'_blocks_2_options','field_623b03edb6e65'),(177509,40666,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177510,40666,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(177511,40666,'blocks_2_actions','1'),(177512,40666,'_blocks_2_actions','field_623b03edb6e6e'),(177513,40666,'blocks_3_acfe_flexible_toggle',''),(177514,40666,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(177515,40666,'blocks_3_acfe_flexible_layout_title','Text Block'),(177516,40666,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(177517,40666,'blocks_3_options_theme','#ffffff'),(177518,40666,'_blocks_3_options_theme','field_6176830e2ad17'),(177519,40666,'blocks_3_options',''),(177520,40666,'_blocks_3_options','field_6176830e2ad16'),(177521,40666,'blocks_3_text_block_heading','More Courses'),(177522,40666,'_blocks_3_text_block_heading','field_617669d413097'),(177523,40666,'blocks_3_text_block_content','Discover our range of courses that are frequently purchased'),(177524,40666,'_blocks_3_text_block_content','field_617669ec13098'),(177525,40666,'blocks_4_acfe_flexible_toggle',''),(177526,40666,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(177527,40666,'blocks_4_acfe_flexible_layout_title','Cards'),(177528,40666,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(177529,40666,'blocks_4_options_theme','#ffffff'),(177530,40666,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(177531,40666,'blocks_4_options_format','carousel'),(177532,40666,'_blocks_4_options_format','field_617a7b15245b5'),(177533,40666,'blocks_4_options_style','default'),(177534,40666,'_blocks_4_options_style','field_6278ffb63484a'),(177535,40666,'blocks_4_options_cards_current_listing','0'),(177536,40666,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(177537,40666,'blocks_4_options_cards_content','post_type'),(177538,40666,'_blocks_4_options_cards_content','field_617aba6122688'),(177539,40666,'blocks_4_options_cards_post_type','course'),(177540,40666,'_blocks_4_options_cards_post_type','field_6194cc744d38b'),(177541,40666,'blocks_4_options_cards_posts_per_page','6'),(177542,40666,'_blocks_4_options_cards_posts_per_page','field_61a7565b1a0f2'),(177543,40666,'blocks_4_options',''),(177544,40666,'_blocks_4_options','field_617a7b15245b3'),(177545,40666,'blocks_5_acfe_flexible_toggle',''),(177546,40666,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(177547,40666,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(177548,40666,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(177549,40666,'blocks_5_options_theme','#ffffff'),(177550,40666,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(177551,40666,'blocks_5_options_state','0'),(177552,40666,'_blocks_5_options_state','field_6239fcb7508c5'),(177553,40666,'blocks_5_options',''),(177554,40666,'_blocks_5_options','field_6177e2991ac44'),(177555,40666,'blocks_5_content_title',''),(177556,40666,'_blocks_5_content_title','field_64d237e8bb1e2'),(177557,40666,'blocks_5_content_heading','FAQ\'s'),(177558,40666,'_blocks_5_content_heading','field_64d237e8bb1e3'),(177559,40666,'blocks_5_content_text',''),(177560,40666,'_blocks_5_content_text','field_64d237e8bb1e4'),(177561,40666,'blocks_5_content_actions',''),(177562,40666,'_blocks_5_content_actions','field_64d237e8bb1e5'),(177563,40666,'blocks_5_content_align','left'),(177564,40666,'_blocks_5_content_align','field_64d2443e6b6aa'),(177565,40666,'blocks_5_content',''),(177566,40666,'_blocks_5_content','field_64d237e8bb1e1'),(177567,40666,'blocks_5_accordion_content','custom'),(177568,40666,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(177569,40666,'blocks_5_accordion_items',''),(177570,40666,'_blocks_5_accordion_items','field_6177e2991ac4c'),(177571,40666,'blocks_5_actions',''),(177572,40666,'_blocks_5_actions','field_61a746a817f7a'),(177573,40666,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"accordions\";}'),(177574,40666,'_blocks','field_6176696113096'),(177575,40666,'course_label_text',''),(177576,40666,'_course_label_text','field_61e17babf71fa'),(177577,40666,'course_label',''),(177578,40666,'_course_label','field_61e12f92749a7'),(177579,40666,'course_description',''),(177580,40666,'_course_description','field_617ac5788e5e1'),(177581,40666,'course_key_info',''),(177582,40666,'_course_key_info','field_617ac6ad8e5e2'),(177583,40666,'course_included',''),(177584,40666,'_course_included','field_617ac6f08e5e4'),(177585,40274,'_edit_lock','1727340285:5'),(177586,40667,'_wp_attached_file','2024/09/Foot-biomechanics-hero.jpg'),(177587,40667,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:34:\"2024/09/Foot-biomechanics-hero.jpg\";s:8:\"filesize\";i:204555;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"Foot-biomechanics-hero-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49127;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"Foot-biomechanics-hero-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74621;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Foot-biomechanics-hero-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15483;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Foot-biomechanics-hero-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38845;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"Foot-biomechanics-hero-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107747;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"Foot-biomechanics-hero-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165029;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"Foot-biomechanics-hero-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19377;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"Foot-biomechanics-hero-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63221;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:36:\"Foot-biomechanics-hero-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95759;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"Foot-biomechanics-hero-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15438;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"Foot-biomechanics-hero-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49109;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"Foot-biomechanics-hero-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74738;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"Foot-biomechanics-hero-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15629;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"Foot-biomechanics-hero-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50055;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"Foot-biomechanics-hero-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75240;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"Foot-biomechanics-hero-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16603;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"Foot-biomechanics-hero-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53151;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"Foot-biomechanics-hero-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81065;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"Foot-biomechanics-hero-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13718;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"Foot-biomechanics-hero-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42865;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"Foot-biomechanics-hero-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65472;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(177588,40274,'_edit_last','5'),(177589,40274,'_wp_old_date','2024-09-10'),(177590,40274,'hide_hero','0'),(177591,40274,'_hide_hero','field_66a2380fcda39'),(177592,40274,'hero_title','Foot Biomechanics Made Simple: Recorded Webinar'),(177593,40274,'_hero_title','field_617571fe285e8'),(177594,40274,'hero_text',''),(177595,40274,'_hero_text','field_6175723c285e9'),(177596,40274,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177597,40274,'_hero_actions_0_button','field_61757281285eb'),(177598,40274,'hero_actions','1'),(177599,40274,'_hero_actions','field_61757270285ea'),(177600,40274,'hero_style','default'),(177601,40274,'_hero_style','field_62051d9dc5324'),(177602,40274,'_thumbnail_id','40667'),(177603,40274,'__thumbnail_id','field_617570855ddaf'),(177604,40274,'hero_image_pos_x','right'),(177605,40274,'_hero_image_pos_x','field_62ec3d05390bb'),(177606,40274,'hero_image_pos_y','top'),(177607,40274,'_hero_image_pos_y','field_62ec3d05390bc'),(177608,40274,'hero_image_pos',''),(177609,40274,'_hero_image_pos','field_62ec3d05390ba'),(177610,40274,'fft_hide_from_listings','0'),(177611,40274,'_fft_hide_from_listings','field_61f1320446ab2'),(177612,40274,'fft_page_format','default'),(177613,40274,'_fft_page_format','field_61ae213f1f218'),(177614,40274,'fft_hide_nav','0'),(177615,40274,'_fft_hide_nav','field_635bd5e43527c'),(177616,40274,'fft_hide_header_call_to_action','0'),(177617,40274,'_fft_hide_header_call_to_action','field_635bd6723527d'),(177618,40274,'fft_page_sitemap','0'),(177619,40274,'_fft_page_sitemap','field_61af9b34e8181'),(177620,40274,'blocks_0_acfe_flexible_toggle',''),(177621,40274,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(177622,40274,'blocks_0_acfe_flexible_layout_title','Template'),(177623,40274,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(177624,40274,'blocks_0_template','39087'),(177625,40274,'_blocks_0_template','field_617bdd570fe01'),(177626,40274,'blocks_1_acfe_flexible_toggle',''),(177627,40274,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(177628,40274,'blocks_1_acfe_flexible_layout_title','Text Block'),(177629,40274,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(177630,40274,'blocks_1_options_theme','#ffffff'),(177631,40274,'_blocks_1_options_theme','field_6176830e2ad17'),(177632,40274,'blocks_1_options',''),(177633,40274,'_blocks_1_options','field_6176830e2ad16'),(177634,40274,'blocks_1_text_block_heading','Overview'),(177635,40274,'_blocks_1_text_block_heading','field_617669d413097'),(177636,40274,'blocks_1_text_block_content','Grasping the basics of foot biomechanics is fundamental for anyone involved in prescribing movement training, especially considering that nearly every client relies on their feet for various activities. Our goal is to simplify the complexities of foot biomechanics, equipping you with practical knowledge to better assist your clients. This webinar is not just about theory; it\'s a hands-on, insightful experience that will elevate your understanding and approach to foot health.'),(177637,40274,'_blocks_1_text_block_content','field_617669ec13098'),(177638,40274,'blocks_2_acfe_flexible_toggle',''),(177639,40274,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(177640,40274,'blocks_2_acfe_flexible_layout_title','Button(s)'),(177641,40274,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(177642,40274,'blocks_2_options_theme','#ffffff'),(177643,40274,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(177644,40274,'blocks_2_options',''),(177645,40274,'_blocks_2_options','field_623b03edb6e65'),(177646,40274,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177647,40274,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(177648,40274,'blocks_2_actions','1'),(177649,40274,'_blocks_2_actions','field_623b03edb6e6e'),(177650,40274,'blocks_3_acfe_flexible_toggle',''),(177651,40274,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(177652,40274,'blocks_3_acfe_flexible_layout_title','Timeline'),(177653,40274,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(177654,40274,'blocks_3_options_theme','#ffffff'),(177655,40274,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(177656,40274,'blocks_3_options',''),(177657,40274,'_blocks_3_options','field_6177de53d1195'),(177658,40274,'blocks_3_timeline_content_title','What You\'ll Explore'),(177659,40274,'_blocks_3_timeline_content_title','field_6177de53d1198'),(177660,40274,'blocks_3_timeline_content_heading','Why Focus on Foot Biomechanics? '),(177661,40274,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(177662,40274,'blocks_3_timeline_content_text','Our feet bear the weight of our movements - from walking and running to jumping and turning. With a multitude of joints, the foot is designed for simultaneous action in various planes, making its function both fascinating and potentially problematic. Understanding the forces at play is crucial for effective training and injury prevention.\r\n\r\nRegister now to gain actionable insights and embark on a journey to unravel the subtleties of Foot Biomechanics.'),(177663,40274,'_blocks_3_timeline_content_text','field_6177de53d119a'),(177664,40274,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177665,40274,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(177666,40274,'blocks_3_timeline_content_actions','1'),(177667,40274,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(177668,40274,'blocks_3_timeline_content',''),(177669,40274,'_blocks_3_timeline_content','field_6177de53d1197'),(177670,40274,'blocks_3_timeline_items_0_title','Functions of Pronation and Supination '),(177671,40274,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(177672,40274,'blocks_3_timeline_items_0_text','Learn about the pivotal roles of pronation and supination in foot biomechanics. Understand how these movements contribute to the overall gait cycle. '),(177673,40274,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(177674,40274,'blocks_3_timeline_items_1_title','Timing and Occurrence in the Gait Cycle '),(177675,40274,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(177676,40274,'blocks_3_timeline_items_1_text','Explore when and why pronation and supination naturally occur during the gait cycle. Gain insights into the intricacies of these movements in real-life scenarios. '),(177677,40274,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(177678,40274,'blocks_3_timeline_items_2_title','Practical Tests for Understanding Client Function '),(177679,40274,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(177680,40274,'blocks_3_timeline_items_2_text','Witness the demonstration of two practical tests designed to enhance your understanding of your client\'s foot function. These tests provide actionable insights for tailoring your approach to each individual.'),(177681,40274,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(177682,40274,'blocks_3_timeline_items_3_title','Biomechanical Intervention Strategies '),(177683,40274,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(177684,40274,'blocks_3_timeline_items_3_text','Establish a clear strategy for biomechanical interventions focused on the foot. Learn how to address potential issues and optimize foot function for better overall movement. '),(177685,40274,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(177686,40274,'blocks_3_timeline_items','4'),(177687,40274,'_blocks_3_timeline_items','field_6177de53d119d'),(177688,40274,'blocks_4_acfe_flexible_toggle',''),(177689,40274,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(177690,40274,'blocks_4_acfe_flexible_layout_title','Text Block'),(177691,40274,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(177692,40274,'blocks_4_options_theme','#f5f5f5'),(177693,40274,'_blocks_4_options_theme','field_6176830e2ad17'),(177694,40274,'blocks_4_options',''),(177695,40274,'_blocks_4_options','field_6176830e2ad16'),(177696,40274,'blocks_4_text_block_heading','Other Courses'),(177697,40274,'_blocks_4_text_block_heading','field_617669d413097'),(177698,40274,'blocks_4_text_block_content','Discover our range of courses that are frequently purchased'),(177699,40274,'_blocks_4_text_block_content','field_617669ec13098'),(177700,40274,'blocks_5_acfe_flexible_toggle',''),(177701,40274,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(177702,40274,'blocks_5_acfe_flexible_layout_title','Cards'),(177703,40274,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(177704,40274,'blocks_5_options_theme','#ffffff'),(177705,40274,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(177706,40274,'blocks_5_options_format','carousel'),(177707,40274,'_blocks_5_options_format','field_617a7b15245b5'),(177708,40274,'blocks_5_options_style','default'),(177709,40274,'_blocks_5_options_style','field_6278ffb63484a'),(177710,40274,'blocks_5_options_cards_current_listing','0'),(177711,40274,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(177712,40274,'blocks_5_options_cards_content','term'),(177713,40274,'_blocks_5_options_cards_content','field_617aba6122688'),(177714,40274,'blocks_5_options_cards_term','409'),(177715,40274,'_blocks_5_options_cards_term','field_6193f7c180895'),(177716,40274,'blocks_5_options_cards_posts_per_page',''),(177717,40274,'_blocks_5_options_cards_posts_per_page','field_61a7565b1a0f2'),(177718,40274,'blocks_5_options',''),(177719,40274,'_blocks_5_options','field_617a7b15245b3'),(177720,40274,'blocks_6_acfe_flexible_toggle',''),(177721,40274,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(177722,40274,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(177723,40274,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(177724,40274,'blocks_6_options_theme','#ffffff'),(177725,40274,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(177726,40274,'blocks_6_options_state','0'),(177727,40274,'_blocks_6_options_state','field_6239fcb7508c5'),(177728,40274,'blocks_6_options',''),(177729,40274,'_blocks_6_options','field_6177e2991ac44'),(177730,40274,'blocks_6_content_title',''),(177731,40274,'_blocks_6_content_title','field_64d237e8bb1e2'),(177732,40274,'blocks_6_content_heading','FAQ\'s'),(177733,40274,'_blocks_6_content_heading','field_64d237e8bb1e3'),(177734,40274,'blocks_6_content_text',''),(177735,40274,'_blocks_6_content_text','field_64d237e8bb1e4'),(177736,40274,'blocks_6_content_actions',''),(177737,40274,'_blocks_6_content_actions','field_64d237e8bb1e5'),(177738,40274,'blocks_6_content_align','left'),(177739,40274,'_blocks_6_content_align','field_64d2443e6b6aa'),(177740,40274,'blocks_6_content',''),(177741,40274,'_blocks_6_content','field_64d237e8bb1e1'),(177742,40274,'blocks_6_accordion_content','custom'),(177743,40274,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(177744,40274,'blocks_6_accordion_items',''),(177745,40274,'_blocks_6_accordion_items','field_6177e2991ac4c'),(177746,40274,'blocks_6_actions',''),(177747,40274,'_blocks_6_actions','field_61a746a817f7a'),(177748,40274,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:10:\"accordions\";}'),(177749,40274,'_blocks','field_6176696113096'),(177750,40274,'course_label_text','Foot Biomechanics Made Simple Webinar'),(177751,40274,'_course_label_text','field_61e17babf71fa'),(177752,40274,'course_label',''),(177753,40274,'_course_label','field_61e12f92749a7'),(177754,40274,'course_description','Grasping the basics of foot biomechanics is fundamental for anyone involved in prescribing movement training, especially considering that nearly every client relies on their feet for various activities.'),(177755,40274,'_course_description','field_617ac5788e5e1'),(177756,40274,'course_key_info','3'),(177757,40274,'_course_key_info','field_617ac6ad8e5e2'),(177758,40274,'course_included','Functions of Pronation and Supination \r\n\r\nTiming and Occurrence in the Gait Cycle \r\n\r\nPractical Tests for Understanding Client Function \r\n\r\nBiomechanical Intervention Strategies '),(177759,40274,'_course_included','field_617ac6f08e5e4'),(177760,40274,'_yoast_wpseo_primary_course-cat','403'),(177761,40274,'_yoast_wpseo_estimated-reading-time-minutes','1'),(177762,40668,'hide_hero','0'),(177763,40668,'_hide_hero','field_66a2380fcda39'),(177764,40668,'hero_title','Foot Biomechanics Made Simple: online learning'),(177765,40668,'_hero_title','field_617571fe285e8'),(177766,40668,'hero_text',''),(177767,40668,'_hero_text','field_6175723c285e9'),(177768,40668,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177769,40668,'_hero_actions_0_button','field_61757281285eb'),(177770,40668,'hero_actions','1'),(177771,40668,'_hero_actions','field_61757270285ea'),(177772,40668,'hero_style','default'),(177773,40668,'_hero_style','field_62051d9dc5324'),(177774,40668,'_thumbnail_id','40667'),(177775,40668,'__thumbnail_id','field_617570855ddaf'),(177776,40668,'hero_image_pos_x','right'),(177777,40668,'_hero_image_pos_x','field_62ec3d05390bb'),(177778,40668,'hero_image_pos_y','top'),(177779,40668,'_hero_image_pos_y','field_62ec3d05390bc'),(177780,40668,'hero_image_pos',''),(177781,40668,'_hero_image_pos','field_62ec3d05390ba'),(177782,40668,'fft_hide_from_listings','0'),(177783,40668,'_fft_hide_from_listings','field_61f1320446ab2'),(177784,40668,'fft_page_format','default'),(177785,40668,'_fft_page_format','field_61ae213f1f218'),(177786,40668,'fft_hide_nav','0'),(177787,40668,'_fft_hide_nav','field_635bd5e43527c'),(177788,40668,'fft_hide_header_call_to_action','0'),(177789,40668,'_fft_hide_header_call_to_action','field_635bd6723527d'),(177790,40668,'fft_page_sitemap','0'),(177791,40668,'_fft_page_sitemap','field_61af9b34e8181'),(177792,40668,'blocks_0_acfe_flexible_toggle',''),(177793,40668,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(177794,40668,'blocks_0_acfe_flexible_layout_title','Template'),(177795,40668,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(177796,40668,'blocks_0_template','39087'),(177797,40668,'_blocks_0_template','field_617bdd570fe01'),(177798,40668,'blocks_1_acfe_flexible_toggle',''),(177799,40668,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(177800,40668,'blocks_1_acfe_flexible_layout_title','Text Block'),(177801,40668,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(177802,40668,'blocks_1_options_theme','#ffffff'),(177803,40668,'_blocks_1_options_theme','field_6176830e2ad17'),(177804,40668,'blocks_1_options',''),(177805,40668,'_blocks_1_options','field_6176830e2ad16'),(177806,40668,'blocks_1_text_block_heading','Overview'),(177807,40668,'_blocks_1_text_block_heading','field_617669d413097'),(177808,40668,'blocks_1_text_block_content','Grasping the basics of foot biomechanics is fundamental for anyone involved in prescribing movement training, especially considering that nearly every client relies on their feet for various activities. Our goal is to simplify the complexities of foot biomechanics, equipping you with practical knowledge to better assist your clients. This webinar is not just about theory; it\'s a hands-on, insightful experience that will elevate your understanding and approach to foot health.'),(177809,40668,'_blocks_1_text_block_content','field_617669ec13098'),(177810,40668,'blocks_2_acfe_flexible_toggle',''),(177811,40668,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(177812,40668,'blocks_2_acfe_flexible_layout_title','Button(s)'),(177813,40668,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(177814,40668,'blocks_2_options_theme','#ffffff'),(177815,40668,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(177816,40668,'blocks_2_options',''),(177817,40668,'_blocks_2_options','field_623b03edb6e65'),(177818,40668,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177819,40668,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(177820,40668,'blocks_2_actions','1'),(177821,40668,'_blocks_2_actions','field_623b03edb6e6e'),(177822,40668,'blocks_3_acfe_flexible_toggle',''),(177823,40668,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(177824,40668,'blocks_3_acfe_flexible_layout_title','Timeline'),(177825,40668,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(177826,40668,'blocks_3_options_theme','#ffffff'),(177827,40668,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(177828,40668,'blocks_3_options',''),(177829,40668,'_blocks_3_options','field_6177de53d1195'),(177830,40668,'blocks_3_timeline_content_title','What You\'ll Explore'),(177831,40668,'_blocks_3_timeline_content_title','field_6177de53d1198'),(177832,40668,'blocks_3_timeline_content_heading','Why Focus on Foot Biomechanics? '),(177833,40668,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(177834,40668,'blocks_3_timeline_content_text','Our feet bear the weight of our movements - from walking and running to jumping and turning. With a multitude of joints, the foot is designed for simultaneous action in various planes, making its function both fascinating and potentially problematic. Understanding the forces at play is crucial for effective training and injury prevention.\r\n\r\nRegister now to gain actionable insights and embark on a journey to unravel the subtleties of Foot Biomechanics.'),(177835,40668,'_blocks_3_timeline_content_text','field_6177de53d119a'),(177836,40668,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177837,40668,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(177838,40668,'blocks_3_timeline_content_actions','1'),(177839,40668,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(177840,40668,'blocks_3_timeline_content',''),(177841,40668,'_blocks_3_timeline_content','field_6177de53d1197'),(177842,40668,'blocks_3_timeline_items_0_title','Functions of Pronation and Supination '),(177843,40668,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(177844,40668,'blocks_3_timeline_items_0_text','Learn about the pivotal roles of pronation and supination in foot biomechanics. Understand how these movements contribute to the overall gait cycle. '),(177845,40668,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(177846,40668,'blocks_3_timeline_items_1_title','Timing and Occurrence in the Gait Cycle '),(177847,40668,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(177848,40668,'blocks_3_timeline_items_1_text','Explore when and why pronation and supination naturally occur during the gait cycle. Gain insights into the intricacies of these movements in real-life scenarios. '),(177849,40668,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(177850,40668,'blocks_3_timeline_items_2_title','Practical Tests for Understanding Client Function '),(177851,40668,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(177852,40668,'blocks_3_timeline_items_2_text','Witness the demonstration of two practical tests designed to enhance your understanding of your client\'s foot function. These tests provide actionable insights for tailoring your approach to each individual.'),(177853,40668,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(177854,40668,'blocks_3_timeline_items_3_title','Biomechanical Intervention Strategies '),(177855,40668,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(177856,40668,'blocks_3_timeline_items_3_text','Establish a clear strategy for biomechanical interventions focused on the foot. Learn how to address potential issues and optimize foot function for better overall movement. '),(177857,40668,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(177858,40668,'blocks_3_timeline_items','4'),(177859,40668,'_blocks_3_timeline_items','field_6177de53d119d'),(177860,40668,'blocks_4_acfe_flexible_toggle',''),(177861,40668,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(177862,40668,'blocks_4_acfe_flexible_layout_title','Text Block'),(177863,40668,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(177864,40668,'blocks_4_options_theme','#f5f5f5'),(177865,40668,'_blocks_4_options_theme','field_6176830e2ad17'),(177866,40668,'blocks_4_options',''),(177867,40668,'_blocks_4_options','field_6176830e2ad16'),(177868,40668,'blocks_4_text_block_heading','Other Courses'),(177869,40668,'_blocks_4_text_block_heading','field_617669d413097'),(177870,40668,'blocks_4_text_block_content','Discover our range of courses that are frequently purchased'),(177871,40668,'_blocks_4_text_block_content','field_617669ec13098'),(177872,40668,'blocks_5_acfe_flexible_toggle',''),(177873,40668,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(177874,40668,'blocks_5_acfe_flexible_layout_title','Cards'),(177875,40668,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(177876,40668,'blocks_5_options_theme','#ffffff'),(177877,40668,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(177878,40668,'blocks_5_options_format','carousel'),(177879,40668,'_blocks_5_options_format','field_617a7b15245b5'),(177880,40668,'blocks_5_options_style','default'),(177881,40668,'_blocks_5_options_style','field_6278ffb63484a'),(177882,40668,'blocks_5_options_cards_current_listing','0'),(177883,40668,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(177884,40668,'blocks_5_options_cards_content','term'),(177885,40668,'_blocks_5_options_cards_content','field_617aba6122688'),(177886,40668,'blocks_5_options_cards_term','409'),(177887,40668,'_blocks_5_options_cards_term','field_6193f7c180895'),(177888,40668,'blocks_5_options_cards_posts_per_page',''),(177889,40668,'_blocks_5_options_cards_posts_per_page','field_61a7565b1a0f2'),(177890,40668,'blocks_5_options',''),(177891,40668,'_blocks_5_options','field_617a7b15245b3'),(177892,40668,'blocks_6_acfe_flexible_toggle',''),(177893,40668,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(177894,40668,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(177895,40668,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(177896,40668,'blocks_6_options_theme','#ffffff'),(177897,40668,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(177898,40668,'blocks_6_options_state','0'),(177899,40668,'_blocks_6_options_state','field_6239fcb7508c5'),(177900,40668,'blocks_6_options',''),(177901,40668,'_blocks_6_options','field_6177e2991ac44'),(177902,40668,'blocks_6_content_title',''),(177903,40668,'_blocks_6_content_title','field_64d237e8bb1e2'),(177904,40668,'blocks_6_content_heading','FAQ\'s'),(177905,40668,'_blocks_6_content_heading','field_64d237e8bb1e3'),(177906,40668,'blocks_6_content_text',''),(177907,40668,'_blocks_6_content_text','field_64d237e8bb1e4'),(177908,40668,'blocks_6_content_actions',''),(177909,40668,'_blocks_6_content_actions','field_64d237e8bb1e5'),(177910,40668,'blocks_6_content_align','left'),(177911,40668,'_blocks_6_content_align','field_64d2443e6b6aa'),(177912,40668,'blocks_6_content',''),(177913,40668,'_blocks_6_content','field_64d237e8bb1e1'),(177914,40668,'blocks_6_accordion_content','custom'),(177915,40668,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(177916,40668,'blocks_6_accordion_items',''),(177917,40668,'_blocks_6_accordion_items','field_6177e2991ac4c'),(177918,40668,'blocks_6_actions',''),(177919,40668,'_blocks_6_actions','field_61a746a817f7a'),(177920,40668,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:10:\"accordions\";}'),(177921,40668,'_blocks','field_6176696113096'),(177922,40668,'course_label_text',''),(177923,40668,'_course_label_text','field_61e17babf71fa'),(177924,40668,'course_label',''),(177925,40668,'_course_label','field_61e12f92749a7'),(177926,40668,'course_description',''),(177927,40668,'_course_description','field_617ac5788e5e1'),(177928,40668,'course_key_info',''),(177929,40668,'_course_key_info','field_617ac6ad8e5e2'),(177930,40668,'course_included',''),(177931,40668,'_course_included','field_617ac6f08e5e4'),(177932,40669,'hide_hero','0'),(177933,40669,'_hide_hero','field_66a2380fcda39'),(177934,40669,'hero_title','Foot Biomechanics Made Simple: Recorded Webinar'),(177935,40669,'_hero_title','field_617571fe285e8'),(177936,40669,'hero_text',''),(177937,40669,'_hero_text','field_6175723c285e9'),(177938,40669,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177939,40669,'_hero_actions_0_button','field_61757281285eb'),(177940,40669,'hero_actions','1'),(177941,40669,'_hero_actions','field_61757270285ea'),(177942,40669,'hero_style','default'),(177943,40669,'_hero_style','field_62051d9dc5324'),(177944,40669,'_thumbnail_id','40667'),(177945,40669,'__thumbnail_id','field_617570855ddaf'),(177946,40669,'hero_image_pos_x','right'),(177947,40669,'_hero_image_pos_x','field_62ec3d05390bb'),(177948,40669,'hero_image_pos_y','top'),(177949,40669,'_hero_image_pos_y','field_62ec3d05390bc'),(177950,40669,'hero_image_pos',''),(177951,40669,'_hero_image_pos','field_62ec3d05390ba'),(177952,40669,'fft_hide_from_listings','0'),(177953,40669,'_fft_hide_from_listings','field_61f1320446ab2'),(177954,40669,'fft_page_format','default'),(177955,40669,'_fft_page_format','field_61ae213f1f218'),(177956,40669,'fft_hide_nav','0'),(177957,40669,'_fft_hide_nav','field_635bd5e43527c'),(177958,40669,'fft_hide_header_call_to_action','0'),(177959,40669,'_fft_hide_header_call_to_action','field_635bd6723527d'),(177960,40669,'fft_page_sitemap','0'),(177961,40669,'_fft_page_sitemap','field_61af9b34e8181'),(177962,40669,'blocks_0_acfe_flexible_toggle',''),(177963,40669,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(177964,40669,'blocks_0_acfe_flexible_layout_title','Template'),(177965,40669,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(177966,40669,'blocks_0_template','39087'),(177967,40669,'_blocks_0_template','field_617bdd570fe01'),(177968,40669,'blocks_1_acfe_flexible_toggle',''),(177969,40669,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(177970,40669,'blocks_1_acfe_flexible_layout_title','Text Block'),(177971,40669,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(177972,40669,'blocks_1_options_theme','#ffffff'),(177973,40669,'_blocks_1_options_theme','field_6176830e2ad17'),(177974,40669,'blocks_1_options',''),(177975,40669,'_blocks_1_options','field_6176830e2ad16'),(177976,40669,'blocks_1_text_block_heading','Overview'),(177977,40669,'_blocks_1_text_block_heading','field_617669d413097'),(177978,40669,'blocks_1_text_block_content','Grasping the basics of foot biomechanics is fundamental for anyone involved in prescribing movement training, especially considering that nearly every client relies on their feet for various activities. Our goal is to simplify the complexities of foot biomechanics, equipping you with practical knowledge to better assist your clients. This webinar is not just about theory; it\'s a hands-on, insightful experience that will elevate your understanding and approach to foot health.'),(177979,40669,'_blocks_1_text_block_content','field_617669ec13098'),(177980,40669,'blocks_2_acfe_flexible_toggle',''),(177981,40669,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(177982,40669,'blocks_2_acfe_flexible_layout_title','Button(s)'),(177983,40669,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(177984,40669,'blocks_2_options_theme','#ffffff'),(177985,40669,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(177986,40669,'blocks_2_options',''),(177987,40669,'_blocks_2_options','field_623b03edb6e65'),(177988,40669,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(177989,40669,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(177990,40669,'blocks_2_actions','1'),(177991,40669,'_blocks_2_actions','field_623b03edb6e6e'),(177992,40669,'blocks_3_acfe_flexible_toggle',''),(177993,40669,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(177994,40669,'blocks_3_acfe_flexible_layout_title','Timeline'),(177995,40669,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(177996,40669,'blocks_3_options_theme','#ffffff'),(177997,40669,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(177998,40669,'blocks_3_options',''),(177999,40669,'_blocks_3_options','field_6177de53d1195'),(178000,40669,'blocks_3_timeline_content_title','What You\'ll Explore'),(178001,40669,'_blocks_3_timeline_content_title','field_6177de53d1198'),(178002,40669,'blocks_3_timeline_content_heading','Why Focus on Foot Biomechanics? '),(178003,40669,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(178004,40669,'blocks_3_timeline_content_text','Our feet bear the weight of our movements - from walking and running to jumping and turning. With a multitude of joints, the foot is designed for simultaneous action in various planes, making its function both fascinating and potentially problematic. Understanding the forces at play is crucial for effective training and injury prevention.\r\n\r\nRegister now to gain actionable insights and embark on a journey to unravel the subtleties of Foot Biomechanics.'),(178005,40669,'_blocks_3_timeline_content_text','field_6177de53d119a'),(178006,40669,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(178007,40669,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(178008,40669,'blocks_3_timeline_content_actions','1'),(178009,40669,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(178010,40669,'blocks_3_timeline_content',''),(178011,40669,'_blocks_3_timeline_content','field_6177de53d1197'),(178012,40669,'blocks_3_timeline_items_0_title','Functions of Pronation and Supination '),(178013,40669,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(178014,40669,'blocks_3_timeline_items_0_text','Learn about the pivotal roles of pronation and supination in foot biomechanics. Understand how these movements contribute to the overall gait cycle. '),(178015,40669,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(178016,40669,'blocks_3_timeline_items_1_title','Timing and Occurrence in the Gait Cycle '),(178017,40669,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(178018,40669,'blocks_3_timeline_items_1_text','Explore when and why pronation and supination naturally occur during the gait cycle. Gain insights into the intricacies of these movements in real-life scenarios. '),(178019,40669,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(178020,40669,'blocks_3_timeline_items_2_title','Practical Tests for Understanding Client Function '),(178021,40669,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(178022,40669,'blocks_3_timeline_items_2_text','Witness the demonstration of two practical tests designed to enhance your understanding of your client\'s foot function. These tests provide actionable insights for tailoring your approach to each individual.'),(178023,40669,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(178024,40669,'blocks_3_timeline_items_3_title','Biomechanical Intervention Strategies '),(178025,40669,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(178026,40669,'blocks_3_timeline_items_3_text','Establish a clear strategy for biomechanical interventions focused on the foot. Learn how to address potential issues and optimize foot function for better overall movement. '),(178027,40669,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(178028,40669,'blocks_3_timeline_items','4'),(178029,40669,'_blocks_3_timeline_items','field_6177de53d119d'),(178030,40669,'blocks_4_acfe_flexible_toggle',''),(178031,40669,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(178032,40669,'blocks_4_acfe_flexible_layout_title','Text Block'),(178033,40669,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(178034,40669,'blocks_4_options_theme','#f5f5f5'),(178035,40669,'_blocks_4_options_theme','field_6176830e2ad17'),(178036,40669,'blocks_4_options',''),(178037,40669,'_blocks_4_options','field_6176830e2ad16'),(178038,40669,'blocks_4_text_block_heading','Other Courses'),(178039,40669,'_blocks_4_text_block_heading','field_617669d413097'),(178040,40669,'blocks_4_text_block_content','Discover our range of courses that are frequently purchased'),(178041,40669,'_blocks_4_text_block_content','field_617669ec13098'),(178042,40669,'blocks_5_acfe_flexible_toggle',''),(178043,40669,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(178044,40669,'blocks_5_acfe_flexible_layout_title','Cards'),(178045,40669,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(178046,40669,'blocks_5_options_theme','#ffffff'),(178047,40669,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(178048,40669,'blocks_5_options_format','carousel'),(178049,40669,'_blocks_5_options_format','field_617a7b15245b5'),(178050,40669,'blocks_5_options_style','default'),(178051,40669,'_blocks_5_options_style','field_6278ffb63484a'),(178052,40669,'blocks_5_options_cards_current_listing','0'),(178053,40669,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(178054,40669,'blocks_5_options_cards_content','term'),(178055,40669,'_blocks_5_options_cards_content','field_617aba6122688'),(178056,40669,'blocks_5_options_cards_term','409'),(178057,40669,'_blocks_5_options_cards_term','field_6193f7c180895'),(178058,40669,'blocks_5_options_cards_posts_per_page',''),(178059,40669,'_blocks_5_options_cards_posts_per_page','field_61a7565b1a0f2'),(178060,40669,'blocks_5_options',''),(178061,40669,'_blocks_5_options','field_617a7b15245b3'),(178062,40669,'blocks_6_acfe_flexible_toggle',''),(178063,40669,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(178064,40669,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(178065,40669,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(178066,40669,'blocks_6_options_theme','#ffffff'),(178067,40669,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(178068,40669,'blocks_6_options_state','0'),(178069,40669,'_blocks_6_options_state','field_6239fcb7508c5'),(178070,40669,'blocks_6_options',''),(178071,40669,'_blocks_6_options','field_6177e2991ac44'),(178072,40669,'blocks_6_content_title',''),(178073,40669,'_blocks_6_content_title','field_64d237e8bb1e2'),(178074,40669,'blocks_6_content_heading','FAQ\'s'),(178075,40669,'_blocks_6_content_heading','field_64d237e8bb1e3'),(178076,40669,'blocks_6_content_text',''),(178077,40669,'_blocks_6_content_text','field_64d237e8bb1e4'),(178078,40669,'blocks_6_content_actions',''),(178079,40669,'_blocks_6_content_actions','field_64d237e8bb1e5'),(178080,40669,'blocks_6_content_align','left'),(178081,40669,'_blocks_6_content_align','field_64d2443e6b6aa'),(178082,40669,'blocks_6_content',''),(178083,40669,'_blocks_6_content','field_64d237e8bb1e1'),(178084,40669,'blocks_6_accordion_content','custom'),(178085,40669,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(178086,40669,'blocks_6_accordion_items',''),(178087,40669,'_blocks_6_accordion_items','field_6177e2991ac4c'),(178088,40669,'blocks_6_actions',''),(178089,40669,'_blocks_6_actions','field_61a746a817f7a'),(178090,40669,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:10:\"accordions\";}'),(178091,40669,'_blocks','field_6176696113096'),(178092,40669,'course_label_text',''),(178093,40669,'_course_label_text','field_61e17babf71fa'),(178094,40669,'course_label',''),(178095,40669,'_course_label','field_61e12f92749a7'),(178096,40669,'course_description',''),(178097,40669,'_course_description','field_617ac5788e5e1'),(178098,40669,'course_key_info',''),(178099,40669,'_course_key_info','field_617ac6ad8e5e2'),(178100,40669,'course_included',''),(178101,40669,'_course_included','field_617ac6f08e5e4'),(178102,40282,'_edit_lock','1728031863:5'),(178103,40670,'_wp_attached_file','2024/09/Foot-posture-index-hero-iamge.jpg'),(178104,40670,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:41:\"2024/09/Foot-posture-index-hero-iamge.jpg\";s:8:\"filesize\";i:357155;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Foot-posture-index-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73421;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Foot-posture-index-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113757;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Foot-posture-index-hero-iamge-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20717;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Foot-posture-index-hero-iamge-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56790;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Foot-posture-index-hero-iamge-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166941;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"Foot-posture-index-hero-iamge-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:262592;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Foot-posture-index-hero-iamge-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29669;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Foot-posture-index-hero-iamge-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105943;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Foot-posture-index-hero-iamge-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165097;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Foot-posture-index-hero-iamge-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20624;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Foot-posture-index-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73399;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Foot-posture-index-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113826;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Foot-posture-index-hero-iamge-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22628;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Foot-posture-index-hero-iamge-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81262;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Foot-posture-index-hero-iamge-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127441;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Foot-posture-index-hero-iamge-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23209;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Foot-posture-index-hero-iamge-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82153;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Foot-posture-index-hero-iamge-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127524;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Foot-posture-index-hero-iamge-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17243;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Foot-posture-index-hero-iamge-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62107;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Foot-posture-index-hero-iamge-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97014;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(178105,40282,'_edit_last','5'),(178106,40282,'_wp_old_date','2024-09-10'),(178107,40282,'hide_hero','0'),(178108,40282,'_hide_hero','field_66a2380fcda39'),(178109,40282,'hero_title','The Foot Posture Index Webinar'),(178110,40282,'_hero_title','field_617571fe285e8'),(178111,40282,'hero_text',''),(178112,40282,'_hero_text','field_6175723c285e9'),(178113,40282,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(178114,40282,'_hero_actions_0_button','field_61757281285eb'),(178115,40282,'hero_actions','1'),(178116,40282,'_hero_actions','field_61757270285ea'),(178117,40282,'hero_style','default'),(178118,40282,'_hero_style','field_62051d9dc5324'),(178119,40282,'_thumbnail_id','40670'),(178120,40282,'__thumbnail_id','field_617570855ddaf'),(178121,40282,'hero_image_pos_x','right'),(178122,40282,'_hero_image_pos_x','field_62ec3d05390bb'),(178123,40282,'hero_image_pos_y','top'),(178124,40282,'_hero_image_pos_y','field_62ec3d05390bc'),(178125,40282,'hero_image_pos',''),(178126,40282,'_hero_image_pos','field_62ec3d05390ba'),(178127,40282,'fft_hide_from_listings','0'),(178128,40282,'_fft_hide_from_listings','field_61f1320446ab2'),(178129,40282,'fft_page_format','default'),(178130,40282,'_fft_page_format','field_61ae213f1f218'),(178131,40282,'fft_hide_nav','0'),(178132,40282,'_fft_hide_nav','field_635bd5e43527c'),(178133,40282,'fft_hide_header_call_to_action','0'),(178134,40282,'_fft_hide_header_call_to_action','field_635bd6723527d'),(178135,40282,'fft_page_sitemap','0'),(178136,40282,'_fft_page_sitemap','field_61af9b34e8181'),(178137,40282,'blocks_0_acfe_flexible_toggle',''),(178138,40282,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(178139,40282,'blocks_0_acfe_flexible_layout_title','Template'),(178140,40282,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(178141,40282,'blocks_0_template','39087'),(178142,40282,'_blocks_0_template','field_617bdd570fe01'),(178143,40282,'blocks_1_acfe_flexible_toggle',''),(178144,40282,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(178145,40282,'blocks_1_acfe_flexible_layout_title','Text Block'),(178146,40282,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(178147,40282,'blocks_1_options_theme','#ffffff'),(178148,40282,'_blocks_1_options_theme','field_6176830e2ad17'),(178149,40282,'blocks_1_options',''),(178150,40282,'_blocks_1_options','field_6176830e2ad16'),(178151,40282,'blocks_1_text_block_heading','Overview'),(178152,40282,'_blocks_1_text_block_heading','field_617669d413097'),(178153,40282,'blocks_1_text_block_content','Explore the world of evidence-based foot and ankle biomechanics assessment with our comprehensive webinar, \"The Foot Posture Index.\" This one-hour recorded session, coupled with a downloadable slide PDF, equips personal trainers, sports coaches and therapists, and Pilates instructors with a cost-effective evaluation tool to enhance their understanding of foot biomechanics.\r\n\r\nIdeal for those seeking simplicity without the need for expensive equipment, this online CPD delves into the Foot Posture Index, covering essential tests such as Talar head position, Supra and infra lateral malleolus curve, Calcaneal frontal plane position, Prominence of the talonavicular joint, Congruence of the medial longitudinal arch, and Abduction/adduction of the forefoot on the rearfoot (Dr. Anthony Redmond from the University of Leeds (2005, 2008, 2010)).\r\n\r\nJoin us in exploring not only the assessment methods but also effective exercise interventions to enhance foot and lower leg biomechanics. Elevate your practice with evidence-based insights and practical tools that you can out to practice with your clients straight away.'),(178154,40282,'_blocks_1_text_block_content','field_617669ec13098'),(178227,40282,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:8:\"template\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"accordions\";}'),(178228,40282,'_blocks','field_6176696113096'),(178229,40282,'course_label_text','The Foot Posture Index'),(178230,40282,'_course_label_text','field_61e17babf71fa'),(178231,40282,'course_label',''),(178232,40282,'_course_label','field_61e12f92749a7'),(178233,40282,'course_description','Explore the world of evidence-based foot and ankle biomechanics assessment with our comprehensive webinar, \"The Foot Posture Index.\"'),(178234,40282,'_course_description','field_617ac5788e5e1'),(178235,40282,'course_key_info','3'),(178236,40282,'_course_key_info','field_617ac6ad8e5e2'),(178237,40282,'course_included','Ideal for those seeking simplicity without the need for expensive equipment, this online CPD delves into the Foot Posture Index, covering essential tests such as Talar head position, Supra and infra lateral malleolus curve, Calcaneal frontal plane position, Prominence of the talonavicular joint, Congruence of the medial longitudinal arch, and Abduction/adduction of the forefoot on the rearfoot'),(178238,40282,'_course_included','field_617ac6f08e5e4'),(178239,40282,'_yoast_wpseo_primary_course-cat','403'),(178240,40282,'_yoast_wpseo_estimated-reading-time-minutes','1'),(178241,40671,'hide_hero','0'),(178242,40671,'_hide_hero','field_66a2380fcda39'),(178243,40671,'hero_title','The Foot Posture Index Webinar'),(178244,40671,'_hero_title','field_617571fe285e8'),(178245,40671,'hero_text',''),(178246,40671,'_hero_text','field_6175723c285e9'),(178247,40671,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(178248,40671,'_hero_actions_0_button','field_61757281285eb'),(178249,40671,'hero_actions','1'),(178250,40671,'_hero_actions','field_61757270285ea'),(178251,40671,'hero_style','default'),(178252,40671,'_hero_style','field_62051d9dc5324'),(178253,40671,'_thumbnail_id','40670'),(178254,40671,'__thumbnail_id','field_617570855ddaf'),(178255,40671,'hero_image_pos_x','right'),(178256,40671,'_hero_image_pos_x','field_62ec3d05390bb'),(178257,40671,'hero_image_pos_y','top'),(178258,40671,'_hero_image_pos_y','field_62ec3d05390bc'),(178259,40671,'hero_image_pos',''),(178260,40671,'_hero_image_pos','field_62ec3d05390ba'),(178261,40671,'fft_hide_from_listings','0'),(178262,40671,'_fft_hide_from_listings','field_61f1320446ab2'),(178263,40671,'fft_page_format','default'),(178264,40671,'_fft_page_format','field_61ae213f1f218'),(178265,40671,'fft_hide_nav','0'),(178266,40671,'_fft_hide_nav','field_635bd5e43527c'),(178267,40671,'fft_hide_header_call_to_action','0'),(178268,40671,'_fft_hide_header_call_to_action','field_635bd6723527d'),(178269,40671,'fft_page_sitemap','0'),(178270,40671,'_fft_page_sitemap','field_61af9b34e8181'),(178271,40671,'blocks_0_acfe_flexible_toggle',''),(178272,40671,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(178273,40671,'blocks_0_acfe_flexible_layout_title','Template'),(178274,40671,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(178275,40671,'blocks_0_template','39087'),(178276,40671,'_blocks_0_template','field_617bdd570fe01'),(178277,40671,'blocks_1_acfe_flexible_toggle',''),(178278,40671,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(178279,40671,'blocks_1_acfe_flexible_layout_title','Text Block'),(178280,40671,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(178281,40671,'blocks_1_options_theme','#ffffff'),(178282,40671,'_blocks_1_options_theme','field_6176830e2ad17'),(178283,40671,'blocks_1_options',''),(178284,40671,'_blocks_1_options','field_6176830e2ad16'),(178285,40671,'blocks_1_text_block_heading','Overview'),(178286,40671,'_blocks_1_text_block_heading','field_617669d413097'),(178287,40671,'blocks_1_text_block_content','Explore the world of evidence-based foot and ankle biomechanics assessment with our comprehensive webinar, \"The Foot Posture Index.\" This one-hour recorded session, coupled with a downloadable slide PDF, equips personal trainers, sports coaches and therapists, and Pilates instructors with a cost-effective evaluation tool to enhance their understanding of foot biomechanics.\r\n\r\nIdeal for those seeking simplicity without the need for expensive equipment, this online CPD delves into the Foot Posture Index, covering essential tests such as Talar head position, Supra and infra lateral malleolus curve, Calcaneal frontal plane position, Prominence of the talonavicular joint, Congruence of the medial longitudinal arch, and Abduction/adduction of the forefoot on the rearfoot (Dr. Anthony Redmond from the University of Leeds (2005, 2008, 2010)).\r\n\r\nJoin us in exploring not only the assessment methods but also effective exercise interventions to enhance foot and lower leg biomechanics. Elevate your practice with evidence-based insights and practical tools that you can out to practice with your clients straight away.'),(178288,40671,'_blocks_1_text_block_content','field_617669ec13098'),(178289,40671,'blocks_2_acfe_flexible_toggle',''),(178290,40671,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(178291,40671,'blocks_2_acfe_flexible_layout_title','Button(s)'),(178292,40671,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(178293,40671,'blocks_2_options_theme','#ffffff'),(178294,40671,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(178295,40671,'blocks_2_options',''),(178296,40671,'_blocks_2_options','field_623b03edb6e65'),(178297,40671,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(178298,40671,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(178299,40671,'blocks_2_actions','1'),(178300,40671,'_blocks_2_actions','field_623b03edb6e6e'),(178301,40671,'blocks_3_acfe_flexible_toggle',''),(178302,40671,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(178303,40671,'blocks_3_acfe_flexible_layout_title','Text Block'),(178304,40671,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(178305,40671,'blocks_3_options_theme','#ffffff'),(178306,40671,'_blocks_3_options_theme','field_6176830e2ad17'),(178307,40671,'blocks_3_options',''),(178308,40671,'_blocks_3_options','field_6176830e2ad16'),(178309,40671,'blocks_3_text_block_heading','Other Courses'),(178310,40671,'_blocks_3_text_block_heading','field_617669d413097'),(178311,40671,'blocks_3_text_block_content','Discover our range of frequently purchased courses'),(178312,40671,'_blocks_3_text_block_content','field_617669ec13098'),(178313,40671,'blocks_4_acfe_flexible_toggle',''),(178314,40671,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(178315,40671,'blocks_4_acfe_flexible_layout_title','Cards'),(178316,40671,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(178317,40671,'blocks_4_options_theme','#ffffff'),(178318,40671,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(178319,40671,'blocks_4_options_format','carousel'),(178320,40671,'_blocks_4_options_format','field_617a7b15245b5'),(178321,40671,'blocks_4_options_style','default'),(178322,40671,'_blocks_4_options_style','field_6278ffb63484a'),(178323,40671,'blocks_4_options_cards_current_listing','0'),(178324,40671,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(178325,40671,'blocks_4_options_cards_content','term'),(178326,40671,'_blocks_4_options_cards_content','field_617aba6122688'),(178327,40671,'blocks_4_options_cards_term','403'),(178328,40671,'_blocks_4_options_cards_term','field_6193f7c180895'),(178329,40671,'blocks_4_options_cards_posts_per_page','6'),(178330,40671,'_blocks_4_options_cards_posts_per_page','field_61a7565b1a0f2'),(178331,40671,'blocks_4_options',''),(178332,40671,'_blocks_4_options','field_617a7b15245b3'),(178333,40671,'blocks_5_acfe_flexible_toggle',''),(178334,40671,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(178335,40671,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(178336,40671,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(178337,40671,'blocks_5_options_theme','#ffffff'),(178338,40671,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(178339,40671,'blocks_5_options_state','0'),(178340,40671,'_blocks_5_options_state','field_6239fcb7508c5'),(178341,40671,'blocks_5_options',''),(178342,40671,'_blocks_5_options','field_6177e2991ac44'),(178343,40671,'blocks_5_content_title',''),(178344,40671,'_blocks_5_content_title','field_64d237e8bb1e2'),(178345,40671,'blocks_5_content_heading','FAQ\'s'),(178346,40671,'_blocks_5_content_heading','field_64d237e8bb1e3'),(178347,40671,'blocks_5_content_text',''),(178348,40671,'_blocks_5_content_text','field_64d237e8bb1e4'),(178349,40671,'blocks_5_content_actions',''),(178350,40671,'_blocks_5_content_actions','field_64d237e8bb1e5'),(178351,40671,'blocks_5_content_align','left'),(178352,40671,'_blocks_5_content_align','field_64d2443e6b6aa'),(178353,40671,'blocks_5_content',''),(178354,40671,'_blocks_5_content','field_64d237e8bb1e1'),(178355,40671,'blocks_5_accordion_content','custom'),(178356,40671,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(178357,40671,'blocks_5_accordion_items',''),(178358,40671,'_blocks_5_accordion_items','field_6177e2991ac4c'),(178359,40671,'blocks_5_actions',''),(178360,40671,'_blocks_5_actions','field_61a746a817f7a'),(178361,40671,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"accordions\";}'),(178362,40671,'_blocks','field_6176696113096'),(178363,40671,'course_label_text',''),(178364,40671,'_course_label_text','field_61e17babf71fa'),(178365,40671,'course_label',''),(178366,40671,'_course_label','field_61e12f92749a7'),(178367,40671,'course_description',''),(178368,40671,'_course_description','field_617ac5788e5e1'),(178369,40671,'course_key_info',''),(178370,40671,'_course_key_info','field_617ac6ad8e5e2'),(178371,40671,'course_included',''),(178372,40671,'_course_included','field_617ac6f08e5e4'),(178439,40672,'hide_hero','0'),(178440,40672,'_hide_hero','field_66a2380fcda39'),(178441,40672,'hero_title','The Foot Posture Index Webinar'),(178442,40672,'_hero_title','field_617571fe285e8'),(178443,40672,'hero_text',''),(178444,40672,'_hero_text','field_6175723c285e9'),(178445,40672,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(178446,40672,'_hero_actions_0_button','field_61757281285eb'),(178447,40672,'hero_actions','1'),(178448,40672,'_hero_actions','field_61757270285ea'),(178449,40672,'hero_style','default'),(178450,40672,'_hero_style','field_62051d9dc5324'),(178451,40672,'_thumbnail_id','40670'),(178452,40672,'__thumbnail_id','field_617570855ddaf'),(178453,40672,'hero_image_pos_x','right'),(178454,40672,'_hero_image_pos_x','field_62ec3d05390bb'),(178455,40672,'hero_image_pos_y','top'),(178456,40672,'_hero_image_pos_y','field_62ec3d05390bc'),(178457,40672,'hero_image_pos',''),(178458,40672,'_hero_image_pos','field_62ec3d05390ba'),(178459,40672,'fft_hide_from_listings','0'),(178460,40672,'_fft_hide_from_listings','field_61f1320446ab2'),(178461,40672,'fft_page_format','default'),(178462,40672,'_fft_page_format','field_61ae213f1f218'),(178463,40672,'fft_hide_nav','0'),(178464,40672,'_fft_hide_nav','field_635bd5e43527c'),(178465,40672,'fft_hide_header_call_to_action','0'),(178466,40672,'_fft_hide_header_call_to_action','field_635bd6723527d'),(178467,40672,'fft_page_sitemap','0'),(178468,40672,'_fft_page_sitemap','field_61af9b34e8181'),(178469,40672,'blocks_0_acfe_flexible_toggle',''),(178470,40672,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(178471,40672,'blocks_0_acfe_flexible_layout_title','Template'),(178472,40672,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(178473,40672,'blocks_0_template','39087'),(178474,40672,'_blocks_0_template','field_617bdd570fe01'),(178475,40672,'blocks_1_acfe_flexible_toggle',''),(178476,40672,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(178477,40672,'blocks_1_acfe_flexible_layout_title','Text Block'),(178478,40672,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(178479,40672,'blocks_1_options_theme','#ffffff'),(178480,40672,'_blocks_1_options_theme','field_6176830e2ad17'),(178481,40672,'blocks_1_options',''),(178482,40672,'_blocks_1_options','field_6176830e2ad16'),(178483,40672,'blocks_1_text_block_heading','Overview'),(178484,40672,'_blocks_1_text_block_heading','field_617669d413097'),(178485,40672,'blocks_1_text_block_content','Explore the world of evidence-based foot and ankle biomechanics assessment with our comprehensive webinar, \"The Foot Posture Index.\" This one-hour recorded session, coupled with a downloadable slide PDF, equips personal trainers, sports coaches and therapists, and Pilates instructors with a cost-effective evaluation tool to enhance their understanding of foot biomechanics.\r\n\r\nIdeal for those seeking simplicity without the need for expensive equipment, this online CPD delves into the Foot Posture Index, covering essential tests such as Talar head position, Supra and infra lateral malleolus curve, Calcaneal frontal plane position, Prominence of the talonavicular joint, Congruence of the medial longitudinal arch, and Abduction/adduction of the forefoot on the rearfoot (Dr. Anthony Redmond from the University of Leeds (2005, 2008, 2010)).\r\n\r\nJoin us in exploring not only the assessment methods but also effective exercise interventions to enhance foot and lower leg biomechanics. Elevate your practice with evidence-based insights and practical tools that you can out to practice with your clients straight away.'),(178486,40672,'_blocks_1_text_block_content','field_617669ec13098'),(178487,40672,'blocks_2_acfe_flexible_toggle',''),(178488,40672,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(178489,40672,'blocks_2_acfe_flexible_layout_title','Button(s)'),(178490,40672,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(178491,40672,'blocks_2_options_theme','#ffffff'),(178492,40672,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(178493,40672,'blocks_2_options',''),(178494,40672,'_blocks_2_options','field_623b03edb6e65'),(178495,40672,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(178496,40672,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(178497,40672,'blocks_2_actions','1'),(178498,40672,'_blocks_2_actions','field_623b03edb6e6e'),(178499,40672,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:8:\"template\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:10:\"accordions\";}'),(178500,40672,'_blocks','field_6176696113096'),(178501,40672,'course_label_text',''),(178502,40672,'_course_label_text','field_61e17babf71fa'),(178503,40672,'course_label',''),(178504,40672,'_course_label','field_61e12f92749a7'),(178505,40672,'course_description',''),(178506,40672,'_course_description','field_617ac5788e5e1'),(178507,40672,'course_key_info',''),(178508,40672,'_course_key_info','field_617ac6ad8e5e2'),(178509,40672,'course_included',''),(178510,40672,'_course_included','field_617ac6f08e5e4'),(178511,40672,'blocks_3_acfe_flexible_toggle',''),(178512,40672,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(178513,40672,'blocks_3_acfe_flexible_layout_title','Template'),(178514,40672,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(178515,40672,'blocks_3_template','39401'),(178516,40672,'_blocks_3_template','field_617bdd570fe01'),(178517,40672,'blocks_4_acfe_flexible_toggle',''),(178518,40672,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(178519,40672,'blocks_4_acfe_flexible_layout_title','Text Block'),(178520,40672,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(178521,40672,'blocks_4_options_theme','#ffffff'),(178522,40672,'_blocks_4_options_theme','field_6176830e2ad17'),(178523,40672,'blocks_4_options',''),(178524,40672,'_blocks_4_options','field_6176830e2ad16'),(178525,40672,'blocks_4_text_block_heading','Other Courses'),(178526,40672,'_blocks_4_text_block_heading','field_617669d413097'),(178527,40672,'blocks_4_text_block_content','Discover our range of frequently purchased courses'),(178528,40672,'_blocks_4_text_block_content','field_617669ec13098'),(178529,40672,'blocks_5_acfe_flexible_toggle',''),(178530,40672,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(178531,40672,'blocks_5_acfe_flexible_layout_title','Cards'),(178532,40672,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(178533,40672,'blocks_5_options_theme','#ffffff'),(178534,40672,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(178535,40672,'blocks_5_options_format','carousel'),(178536,40672,'_blocks_5_options_format','field_617a7b15245b5'),(178537,40672,'blocks_5_options_style','default'),(178538,40672,'_blocks_5_options_style','field_6278ffb63484a'),(178539,40672,'blocks_5_options_cards_current_listing','0'),(178540,40672,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(178541,40672,'blocks_5_options_cards_content','term'),(178542,40672,'_blocks_5_options_cards_content','field_617aba6122688'),(178543,40672,'blocks_5_options_cards_term','403'),(178544,40672,'_blocks_5_options_cards_term','field_6193f7c180895'),(178545,40672,'blocks_5_options_cards_posts_per_page','6'),(178546,40672,'_blocks_5_options_cards_posts_per_page','field_61a7565b1a0f2'),(178547,40672,'blocks_5_options',''),(178548,40672,'_blocks_5_options','field_617a7b15245b3'),(178549,40672,'blocks_6_acfe_flexible_toggle',''),(178550,40672,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(178551,40672,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(178552,40672,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(178553,40672,'blocks_6_options_theme','#ffffff'),(178554,40672,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(178555,40672,'blocks_6_options_state','0'),(178556,40672,'_blocks_6_options_state','field_6239fcb7508c5'),(178557,40672,'blocks_6_options',''),(178558,40672,'_blocks_6_options','field_6177e2991ac44'),(178559,40672,'blocks_6_content_title',''),(178560,40672,'_blocks_6_content_title','field_64d237e8bb1e2'),(178561,40672,'blocks_6_content_heading','FAQ\'s'),(178562,40672,'_blocks_6_content_heading','field_64d237e8bb1e3'),(178563,40672,'blocks_6_content_text',''),(178564,40672,'_blocks_6_content_text','field_64d237e8bb1e4'),(178565,40672,'blocks_6_content_actions',''),(178566,40672,'_blocks_6_content_actions','field_64d237e8bb1e5'),(178567,40672,'blocks_6_content_align','left'),(178568,40672,'_blocks_6_content_align','field_64d2443e6b6aa'),(178569,40672,'blocks_6_content',''),(178570,40672,'_blocks_6_content','field_64d237e8bb1e1'),(178571,40672,'blocks_6_accordion_content','custom'),(178572,40672,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(178573,40672,'blocks_6_accordion_items',''),(178574,40672,'_blocks_6_accordion_items','field_6177e2991ac4c'),(178575,40672,'blocks_6_actions',''),(178576,40672,'_blocks_6_actions','field_61a746a817f7a'),(178577,40282,'blocks_2_acfe_flexible_toggle',''),(178578,40282,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(178579,40282,'blocks_2_acfe_flexible_layout_title','Template'),(178580,40282,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(178581,40282,'blocks_2_template','39401'),(178582,40282,'_blocks_2_template','field_617bdd570fe01'),(178583,40282,'blocks_3_acfe_flexible_toggle',''),(178584,40282,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(178585,40282,'blocks_3_acfe_flexible_layout_title','Text Block'),(178586,40282,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(178587,40282,'blocks_3_options_theme','#ffffff'),(178588,40282,'_blocks_3_options_theme','field_6176830e2ad17'),(178589,40282,'blocks_3_options',''),(178590,40282,'_blocks_3_options','field_6176830e2ad16'),(178591,40282,'blocks_3_text_block_heading','Other Courses'),(178592,40282,'_blocks_3_text_block_heading','field_617669d413097'),(178593,40282,'blocks_3_text_block_content','Discover our range of frequently purchased courses'),(178594,40282,'_blocks_3_text_block_content','field_617669ec13098'),(178595,40282,'blocks_4_acfe_flexible_toggle',''),(178596,40282,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(178597,40282,'blocks_4_acfe_flexible_layout_title','Cards'),(178598,40282,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(178599,40282,'blocks_4_options_theme','#ffffff'),(178600,40282,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(178601,40282,'blocks_4_options_format','carousel'),(178602,40282,'_blocks_4_options_format','field_617a7b15245b5'),(178603,40282,'blocks_4_options_style','default'),(178604,40282,'_blocks_4_options_style','field_6278ffb63484a'),(178605,40282,'blocks_4_options_cards_current_listing','0'),(178606,40282,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(178607,40282,'blocks_4_options_cards_content','term'),(178608,40282,'_blocks_4_options_cards_content','field_617aba6122688'),(178609,40282,'blocks_4_options_cards_term','403'),(178610,40282,'_blocks_4_options_cards_term','field_6193f7c180895'),(178611,40282,'blocks_4_options_cards_posts_per_page','6'),(178612,40282,'_blocks_4_options_cards_posts_per_page','field_61a7565b1a0f2'),(178613,40282,'blocks_4_options',''),(178614,40282,'_blocks_4_options','field_617a7b15245b3'),(178615,40282,'blocks_5_acfe_flexible_toggle',''),(178616,40282,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(178617,40282,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(178618,40282,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(178619,40282,'blocks_5_options_theme','#ffffff'),(178620,40282,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(178621,40282,'blocks_5_options_state','0'),(178622,40282,'_blocks_5_options_state','field_6239fcb7508c5'),(178623,40282,'blocks_5_options',''),(178624,40282,'_blocks_5_options','field_6177e2991ac44'),(178625,40282,'blocks_5_content_title',''),(178626,40282,'_blocks_5_content_title','field_64d237e8bb1e2'),(178627,40282,'blocks_5_content_heading','FAQ\'s'),(178628,40282,'_blocks_5_content_heading','field_64d237e8bb1e3'),(178629,40282,'blocks_5_content_text',''),(178630,40282,'_blocks_5_content_text','field_64d237e8bb1e4'),(178631,40282,'blocks_5_content_actions',''),(178632,40282,'_blocks_5_content_actions','field_64d237e8bb1e5'),(178633,40282,'blocks_5_content_align','left'),(178634,40282,'_blocks_5_content_align','field_64d2443e6b6aa'),(178635,40282,'blocks_5_content',''),(178636,40282,'_blocks_5_content','field_64d237e8bb1e1'),(178637,40282,'blocks_5_accordion_content','custom'),(178638,40282,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(178639,40282,'blocks_5_accordion_items',''),(178640,40282,'_blocks_5_accordion_items','field_6177e2991ac4c'),(178641,40282,'blocks_5_actions',''),(178642,40282,'_blocks_5_actions','field_61a746a817f7a'),(178643,40673,'hide_hero','0'),(178644,40673,'_hide_hero','field_66a2380fcda39'),(178645,40673,'hero_title','The Foot Posture Index Webinar'),(178646,40673,'_hero_title','field_617571fe285e8'),(178647,40673,'hero_text',''),(178648,40673,'_hero_text','field_6175723c285e9'),(178649,40673,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(178650,40673,'_hero_actions_0_button','field_61757281285eb'),(178651,40673,'hero_actions','1'),(178652,40673,'_hero_actions','field_61757270285ea'),(178653,40673,'hero_style','default'),(178654,40673,'_hero_style','field_62051d9dc5324'),(178655,40673,'_thumbnail_id','40670'),(178656,40673,'__thumbnail_id','field_617570855ddaf'),(178657,40673,'hero_image_pos_x','right'),(178658,40673,'_hero_image_pos_x','field_62ec3d05390bb'),(178659,40673,'hero_image_pos_y','top'),(178660,40673,'_hero_image_pos_y','field_62ec3d05390bc'),(178661,40673,'hero_image_pos',''),(178662,40673,'_hero_image_pos','field_62ec3d05390ba'),(178663,40673,'fft_hide_from_listings','0'),(178664,40673,'_fft_hide_from_listings','field_61f1320446ab2'),(178665,40673,'fft_page_format','default'),(178666,40673,'_fft_page_format','field_61ae213f1f218'),(178667,40673,'fft_hide_nav','0'),(178668,40673,'_fft_hide_nav','field_635bd5e43527c'),(178669,40673,'fft_hide_header_call_to_action','0'),(178670,40673,'_fft_hide_header_call_to_action','field_635bd6723527d'),(178671,40673,'fft_page_sitemap','0'),(178672,40673,'_fft_page_sitemap','field_61af9b34e8181'),(178673,40673,'blocks_0_acfe_flexible_toggle',''),(178674,40673,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(178675,40673,'blocks_0_acfe_flexible_layout_title','Template'),(178676,40673,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(178677,40673,'blocks_0_template','39087'),(178678,40673,'_blocks_0_template','field_617bdd570fe01'),(178679,40673,'blocks_1_acfe_flexible_toggle',''),(178680,40673,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(178681,40673,'blocks_1_acfe_flexible_layout_title','Text Block'),(178682,40673,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(178683,40673,'blocks_1_options_theme','#ffffff'),(178684,40673,'_blocks_1_options_theme','field_6176830e2ad17'),(178685,40673,'blocks_1_options',''),(178686,40673,'_blocks_1_options','field_6176830e2ad16'),(178687,40673,'blocks_1_text_block_heading','Overview'),(178688,40673,'_blocks_1_text_block_heading','field_617669d413097'),(178689,40673,'blocks_1_text_block_content','Explore the world of evidence-based foot and ankle biomechanics assessment with our comprehensive webinar, \"The Foot Posture Index.\" This one-hour recorded session, coupled with a downloadable slide PDF, equips personal trainers, sports coaches and therapists, and Pilates instructors with a cost-effective evaluation tool to enhance their understanding of foot biomechanics.\r\n\r\nIdeal for those seeking simplicity without the need for expensive equipment, this online CPD delves into the Foot Posture Index, covering essential tests such as Talar head position, Supra and infra lateral malleolus curve, Calcaneal frontal plane position, Prominence of the talonavicular joint, Congruence of the medial longitudinal arch, and Abduction/adduction of the forefoot on the rearfoot (Dr. Anthony Redmond from the University of Leeds (2005, 2008, 2010)).\r\n\r\nJoin us in exploring not only the assessment methods but also effective exercise interventions to enhance foot and lower leg biomechanics. Elevate your practice with evidence-based insights and practical tools that you can out to practice with your clients straight away.'),(178690,40673,'_blocks_1_text_block_content','field_617669ec13098'),(178691,40673,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:8:\"template\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"accordions\";}'),(178692,40673,'_blocks','field_6176696113096'),(178693,40673,'course_label_text',''),(178694,40673,'_course_label_text','field_61e17babf71fa'),(178695,40673,'course_label',''),(178696,40673,'_course_label','field_61e12f92749a7'),(178697,40673,'course_description',''),(178698,40673,'_course_description','field_617ac5788e5e1'),(178699,40673,'course_key_info',''),(178700,40673,'_course_key_info','field_617ac6ad8e5e2'),(178701,40673,'course_included',''),(178702,40673,'_course_included','field_617ac6f08e5e4'),(178703,40673,'blocks_2_acfe_flexible_toggle',''),(178704,40673,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(178705,40673,'blocks_2_acfe_flexible_layout_title','Template'),(178706,40673,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(178707,40673,'blocks_2_template','39401'),(178708,40673,'_blocks_2_template','field_617bdd570fe01'),(178709,40673,'blocks_3_acfe_flexible_toggle',''),(178710,40673,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(178711,40673,'blocks_3_acfe_flexible_layout_title','Text Block'),(178712,40673,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(178713,40673,'blocks_3_options_theme','#ffffff'),(178714,40673,'_blocks_3_options_theme','field_6176830e2ad17'),(178715,40673,'blocks_3_options',''),(178716,40673,'_blocks_3_options','field_6176830e2ad16'),(178717,40673,'blocks_3_text_block_heading','Other Courses'),(178718,40673,'_blocks_3_text_block_heading','field_617669d413097'),(178719,40673,'blocks_3_text_block_content','Discover our range of frequently purchased courses'),(178720,40673,'_blocks_3_text_block_content','field_617669ec13098'),(178721,40673,'blocks_4_acfe_flexible_toggle',''),(178722,40673,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(178723,40673,'blocks_4_acfe_flexible_layout_title','Cards'),(178724,40673,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(178725,40673,'blocks_4_options_theme','#ffffff'),(178726,40673,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(178727,40673,'blocks_4_options_format','carousel'),(178728,40673,'_blocks_4_options_format','field_617a7b15245b5'),(178729,40673,'blocks_4_options_style','default'),(178730,40673,'_blocks_4_options_style','field_6278ffb63484a'),(178731,40673,'blocks_4_options_cards_current_listing','0'),(178732,40673,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(178733,40673,'blocks_4_options_cards_content','term'),(178734,40673,'_blocks_4_options_cards_content','field_617aba6122688'),(178735,40673,'blocks_4_options_cards_term','403'),(178736,40673,'_blocks_4_options_cards_term','field_6193f7c180895'),(178737,40673,'blocks_4_options_cards_posts_per_page','6'),(178738,40673,'_blocks_4_options_cards_posts_per_page','field_61a7565b1a0f2'),(178739,40673,'blocks_4_options',''),(178740,40673,'_blocks_4_options','field_617a7b15245b3'),(178741,40673,'blocks_5_acfe_flexible_toggle',''),(178742,40673,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(178743,40673,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(178744,40673,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(178745,40673,'blocks_5_options_theme','#ffffff'),(178746,40673,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(178747,40673,'blocks_5_options_state','0'),(178748,40673,'_blocks_5_options_state','field_6239fcb7508c5'),(178749,40673,'blocks_5_options',''),(178750,40673,'_blocks_5_options','field_6177e2991ac44'),(178751,40673,'blocks_5_content_title',''),(178752,40673,'_blocks_5_content_title','field_64d237e8bb1e2'),(178753,40673,'blocks_5_content_heading','FAQ\'s'),(178754,40673,'_blocks_5_content_heading','field_64d237e8bb1e3'),(178755,40673,'blocks_5_content_text',''),(178756,40673,'_blocks_5_content_text','field_64d237e8bb1e4'),(178757,40673,'blocks_5_content_actions',''),(178758,40673,'_blocks_5_content_actions','field_64d237e8bb1e5'),(178759,40673,'blocks_5_content_align','left'),(178760,40673,'_blocks_5_content_align','field_64d2443e6b6aa'),(178761,40673,'blocks_5_content',''),(178762,40673,'_blocks_5_content','field_64d237e8bb1e1'),(178763,40673,'blocks_5_accordion_content','custom'),(178764,40673,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(178765,40673,'blocks_5_accordion_items',''),(178766,40673,'_blocks_5_accordion_items','field_6177e2991ac4c'),(178767,40673,'blocks_5_actions',''),(178768,40673,'_blocks_5_actions','field_61a746a817f7a'),(178769,40282,'_fft_show','1'),(178770,40282,'_fft_plan',NULL),(178771,40274,'_fft_show','1'),(178772,40274,'_fft_plan',NULL),(178773,40283,'_fft_show','1'),(178774,40283,'_fft_plan',NULL),(178775,40285,'_fft_show','1'),(178776,40285,'_fft_plan',NULL),(178777,40279,'_fft_show','1'),(178778,40279,'_fft_plan',NULL),(178779,40284,'_fft_show','1'),(178780,40284,'_fft_plan',NULL),(178781,40280,'_fft_show','1'),(178782,40280,'_fft_plan',NULL),(178783,40275,'_fft_show','1'),(178784,40275,'_fft_plan',NULL),(178785,40278,'_fft_show',''),(178786,40278,'_fft_plan',NULL),(178787,40277,'_fft_show','1'),(178788,40277,'_fft_plan',NULL),(178789,40281,'_fft_show','1'),(178790,40281,'_fft_plan',NULL),(178791,40272,'_fft_show','1'),(178792,40272,'_fft_plan',NULL),(178793,40271,'_fft_show','1'),(178794,40271,'_fft_plan',NULL),(178795,40270,'_fft_show','1'),(178796,40270,'_fft_plan',NULL),(178797,40263,'_fft_show','1'),(178798,40263,'_fft_plan',NULL),(178799,40286,'_fft_show','1'),(178800,40286,'_fft_plan',NULL),(178958,40273,'_edit_lock','1744026269:15'),(178959,40675,'_wp_attached_file','2024/09/deadlift-analysis-made-simple.jpg'),(178960,40675,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:41:\"2024/09/deadlift-analysis-made-simple.jpg\";s:8:\"filesize\";i:393191;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"deadlift-analysis-made-simple-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89828;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"deadlift-analysis-made-simple-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139322;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"deadlift-analysis-made-simple-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27208;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"deadlift-analysis-made-simple-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70716;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"deadlift-analysis-made-simple-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205609;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"deadlift-analysis-made-simple-2048x1366.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:325171;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"deadlift-analysis-made-simple-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35065;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"deadlift-analysis-made-simple-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119747;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"deadlift-analysis-made-simple-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187860;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"deadlift-analysis-made-simple-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27147;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"deadlift-analysis-made-simple-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89748;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"deadlift-analysis-made-simple-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138546;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"deadlift-analysis-made-simple-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26842;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"deadlift-analysis-made-simple-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92730;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"deadlift-analysis-made-simple-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145699;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"deadlift-analysis-made-simple-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29383;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"deadlift-analysis-made-simple-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98627;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"deadlift-analysis-made-simple-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153009;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"deadlift-analysis-made-simple-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23593;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"deadlift-analysis-made-simple-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78870;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"deadlift-analysis-made-simple-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121395;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(178961,40676,'_wp_attached_file','2024/09/shutterstock_2211550705.jpg'),(178962,40676,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:677;s:4:\"file\";s:35:\"2024/09/shutterstock_2211550705.jpg\";s:8:\"filesize\";i:369351;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-900x609.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:609;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69418;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-400x271.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22776;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-768x520.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54907;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28944;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-900x677.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:677;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79421;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22614;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68300;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24703;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-675x677.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:677;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64708;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-900x677.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:677;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79421;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24226;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74144;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20462;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2211550705-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58867;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"shutterstock_2211550705-1000x675.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85983;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:86:\"Copyright (c) 2022 PeopleImages.com - Yuri A/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:77:\"Workout,,Weightlifting,And,Man,Doing,Deadlift,Training,With,Strength,,Weights\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:406:\"muscular,strength,body,fit,muscles,fitness,club,sporty,energy,intense,athlete,dumbbell,active,equipment,weights,weightlifting,person,gym,bodybuilding,adult,athletic,male,strong,squat,activity,young,motivation,exercise,guy,training,exercising,sportsman,lifting,wellness,man,power,physical,sports,bodybuilder,health,deadlift,sportswear,lifestyle,masculine,health club,powerful,workout,healthy,challenge,sport\";}}}'),(178963,40273,'_edit_last','5'),(178964,40273,'_wp_old_date','2024-09-10'),(178965,40273,'hide_hero','0'),(178966,40273,'_hide_hero','field_66a2380fcda39'),(178967,40273,'hero_title','Deadlift Analysis Made Simple Recorded Online Learning'),(178968,40273,'_hero_title','field_617571fe285e8'),(178969,40273,'hero_text',''),(178970,40273,'_hero_text','field_6175723c285e9'),(178971,40273,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(178972,40273,'_hero_actions_0_button','field_61757281285eb'),(178973,40273,'hero_actions','1'),(178974,40273,'_hero_actions','field_61757270285ea'),(178975,40273,'hero_style','default'),(178976,40273,'_hero_style','field_62051d9dc5324'),(178977,40273,'_thumbnail_id','40675'),(178978,40273,'__thumbnail_id','field_617570855ddaf'),(178979,40273,'hero_image_pos_x','right'),(178980,40273,'_hero_image_pos_x','field_62ec3d05390bb'),(178981,40273,'hero_image_pos_y','top'),(178982,40273,'_hero_image_pos_y','field_62ec3d05390bc'),(178983,40273,'hero_image_pos',''),(178984,40273,'_hero_image_pos','field_62ec3d05390ba'),(178985,40273,'fft_hide_from_listings','0'),(178986,40273,'_fft_hide_from_listings','field_61f1320446ab2'),(178987,40273,'fft_page_format','default'),(178988,40273,'_fft_page_format','field_61ae213f1f218'),(178989,40273,'fft_hide_nav','0'),(178990,40273,'_fft_hide_nav','field_635bd5e43527c'),(178991,40273,'fft_hide_header_call_to_action','0'),(178992,40273,'_fft_hide_header_call_to_action','field_635bd6723527d'),(178993,40273,'fft_page_sitemap','0'),(178994,40273,'_fft_page_sitemap','field_61af9b34e8181'),(178995,40273,'blocks_0_acfe_flexible_toggle',''),(178996,40273,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(178997,40273,'blocks_0_acfe_flexible_layout_title','Template'),(178998,40273,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(178999,40273,'blocks_0_template','39087'),(179000,40273,'_blocks_0_template','field_617bdd570fe01'),(179001,40273,'blocks_1_acfe_flexible_toggle',''),(179002,40273,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(179003,40273,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(179004,40273,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(179005,40273,'blocks_1_options_theme','#ffffff'),(179006,40273,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(179007,40273,'blocks_1_options_reverse','0'),(179008,40273,'_blocks_1_options_reverse','field_61768049bb8ac'),(179009,40273,'blocks_1_options',''),(179010,40273,'_blocks_1_options','field_617682517c334'),(179011,40273,'blocks_1_split_5050_image','40676'),(179012,40273,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(179013,40273,'blocks_1_split_5050_video',''),(179014,40273,'_blocks_1_split_5050_video','field_6239f3160848a'),(179015,40273,'blocks_1_split_5050_content_title',''),(179016,40273,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(179017,40273,'blocks_1_split_5050_content_heading','Course Overview'),(179018,40273,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(179019,40273,'blocks_1_split_5050_content_text','This webinar will elevate your form and help guide your clients on yet fitness journey. designed for personal trainers and therapists, discover straightforward, equipment-free movement analysis methods that will enhance your understanding of the deadlift and its crucial role in any fitness program.'),(179020,40273,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(179021,40273,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(179022,40273,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(179023,40273,'blocks_1_split_5050_content_actions','1'),(179024,40273,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(179025,40273,'blocks_1_split_5050_content',''),(179026,40273,'_blocks_1_split_5050_content','field_61767afceb8ba'),(179027,40273,'blocks_2_acfe_flexible_toggle',''),(179028,40273,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(179029,40273,'blocks_2_acfe_flexible_layout_title','Timeline'),(179030,40273,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(179031,40273,'blocks_2_options_theme','#ffffff'),(179032,40273,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(179033,40273,'blocks_2_options',''),(179034,40273,'_blocks_2_options','field_6177de53d1195'),(179035,40273,'blocks_2_timeline_content_title',''),(179036,40273,'_blocks_2_timeline_content_title','field_6177de53d1198'),(179037,40273,'blocks_2_timeline_content_heading','What is included?'),(179038,40273,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(179039,40273,'blocks_2_timeline_content_text','Join us for this enlightening webinar where simplicity meets effectiveness in deadlift analysis. Elevate your training and therapy game with practical insights that make a difference.'),(179040,40273,'_blocks_2_timeline_content_text','field_6177de53d119a'),(179041,40273,'blocks_2_timeline_content_actions',''),(179042,40273,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(179043,40273,'blocks_2_timeline_content',''),(179044,40273,'_blocks_2_timeline_content','field_6177de53d1197'),(179045,40273,'blocks_2_timeline_items_0_title','Why Analyse the Deadlift? '),(179046,40273,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(179047,40273,'blocks_2_timeline_items_0_text','Uncover the importance of dissecting the deadlift and how it contributes to overall fitness programs. '),(179048,40273,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(179049,40273,'blocks_2_timeline_items_1_title','The Deadlift\'s Offerings: A Deep Dive '),(179050,40273,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(179051,40273,'blocks_2_timeline_items_1_text','Explore the myriad benefits the deadlift brings to the table for individuals seeking a well-rounded fitness routine. '),(179052,40273,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(179053,40273,'blocks_2_timeline_items_2_title','Decoding the Movement '),(179054,40273,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(179055,40273,'blocks_2_timeline_items_2_text','Get to the core of the deadlift by understanding its mechanics and nuances. '),(179056,40273,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(179057,40273,'blocks_2_timeline_items_3_title','Exploring Deadlift Styles '),(179058,40273,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(179059,40273,'blocks_2_timeline_items_3_text','Discuss the various deadlift styles and their unique advantages, providing a comprehensive view for trainers and therapists. '),(179060,40273,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(179061,40273,'blocks_2_timeline_items_4_title','Interactive Session: Analysing the Movement – So What?'),(179062,40273,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(179063,40273,'blocks_2_timeline_items_4_text','Engage in a dynamic Q&A session to delve deeper into the practical aspects of deadlift analysis. '),(179064,40273,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(179065,40273,'blocks_2_timeline_items_5_title','Choosing the Right Style for Reduced Risk & Peak Performance '),(179066,40273,'_blocks_2_timeline_items_5_title','field_6177de53d119f'),(179067,40273,'blocks_2_timeline_items_5_text','Learn how to tailor deadlift styles to individual needs, ensuring optimal performance and minimizing the risk of injury. '),(179068,40273,'_blocks_2_timeline_items_5_text','field_6177de53d11a0'),(179069,40273,'blocks_2_timeline_items_6_title','Crucial Insights: Understanding Tissue Tolerance and Load Management '),(179070,40273,'_blocks_2_timeline_items_6_title','field_6177de53d119f'),(179071,40273,'blocks_2_timeline_items_6_text','Gain invaluable knowledge on managing tissue tolerance and optimizing load for better long-term results. '),(179072,40273,'_blocks_2_timeline_items_6_text','field_6177de53d11a0'),(179073,40273,'blocks_2_timeline_items','7'),(179074,40273,'_blocks_2_timeline_items','field_6177de53d119d'),(179075,40273,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:7:\"buttons\";i:4;s:8:\"template\";i:5;s:10:\"accordions\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";}'),(179076,40273,'_blocks','field_6176696113096'),(179077,40273,'course_label_text','Deadlift Analysis Made Simple'),(179078,40273,'_course_label_text','field_61e17babf71fa'),(179079,40273,'course_label',''),(179080,40273,'_course_label','field_61e12f92749a7'),(179081,40273,'course_description','This webinar will elevate your form and help guide your clients on yet fitness journey.'),(179082,40273,'_course_description','field_617ac5788e5e1'),(179083,40273,'course_key_info','3'),(179084,40273,'_course_key_info','field_617ac6ad8e5e2'),(179085,40273,'course_included','Why Analyse the Deadlift? \r\n\r\nThe Deadlift\'s Offerings: A Deep Dive \r\n\r\nDecoding the Movement \r\n\r\nExploring Deadlift Styles \r\n\r\nInteractive Session: Analysing the Movement – So What? \r\n\r\nChoosing the Right Style for Reduced Risk & Peak Performance \r\n\r\nCrucial Insights: Understanding Tissue Tolerance and Load Management '),(179086,40273,'_course_included','field_617ac6f08e5e4'),(179087,40273,'_yoast_wpseo_primary_course-cat','403'),(179088,40273,'_yoast_wpseo_estimated-reading-time-minutes','1'),(179089,40677,'hide_hero','0'),(179090,40677,'_hide_hero','field_66a2380fcda39'),(179091,40677,'hero_title','Deadlift Analysis Made Simple Recorded Online Learning'),(179092,40677,'_hero_title','field_617571fe285e8'),(179093,40677,'hero_text',''),(179094,40677,'_hero_text','field_6175723c285e9'),(179095,40677,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(179096,40677,'_hero_actions_0_button','field_61757281285eb'),(179097,40677,'hero_actions','1'),(179098,40677,'_hero_actions','field_61757270285ea'),(179099,40677,'hero_style','default'),(179100,40677,'_hero_style','field_62051d9dc5324'),(179101,40677,'_thumbnail_id','40675'),(179102,40677,'__thumbnail_id','field_617570855ddaf'),(179103,40677,'hero_image_pos_x','right'),(179104,40677,'_hero_image_pos_x','field_62ec3d05390bb'),(179105,40677,'hero_image_pos_y','top'),(179106,40677,'_hero_image_pos_y','field_62ec3d05390bc'),(179107,40677,'hero_image_pos',''),(179108,40677,'_hero_image_pos','field_62ec3d05390ba'),(179109,40677,'fft_hide_from_listings','0'),(179110,40677,'_fft_hide_from_listings','field_61f1320446ab2'),(179111,40677,'fft_page_format','default'),(179112,40677,'_fft_page_format','field_61ae213f1f218'),(179113,40677,'fft_hide_nav','0'),(179114,40677,'_fft_hide_nav','field_635bd5e43527c'),(179115,40677,'fft_hide_header_call_to_action','0'),(179116,40677,'_fft_hide_header_call_to_action','field_635bd6723527d'),(179117,40677,'fft_page_sitemap','0'),(179118,40677,'_fft_page_sitemap','field_61af9b34e8181'),(179119,40677,'blocks_0_acfe_flexible_toggle',''),(179120,40677,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(179121,40677,'blocks_0_acfe_flexible_layout_title','Template'),(179122,40677,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(179123,40677,'blocks_0_template','39087'),(179124,40677,'_blocks_0_template','field_617bdd570fe01'),(179125,40677,'blocks_1_acfe_flexible_toggle',''),(179126,40677,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(179127,40677,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(179128,40677,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(179129,40677,'blocks_1_options_theme','#f5f5f5'),(179130,40677,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(179131,40677,'blocks_1_options_reverse','0'),(179132,40677,'_blocks_1_options_reverse','field_61768049bb8ac'),(179133,40677,'blocks_1_options',''),(179134,40677,'_blocks_1_options','field_617682517c334'),(179135,40677,'blocks_1_split_5050_image','40676'),(179136,40677,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(179137,40677,'blocks_1_split_5050_video',''),(179138,40677,'_blocks_1_split_5050_video','field_6239f3160848a'),(179139,40677,'blocks_1_split_5050_content_title',''),(179140,40677,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(179141,40677,'blocks_1_split_5050_content_heading','Course Overview'),(179142,40677,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(179143,40677,'blocks_1_split_5050_content_text','This webinar will elevate your form and help guide your clients on yet fitness journey. designed for personal trainers and therapists, discover straightforward, equipment-free movement analysis methods that will enhance your understanding of the deadlift and its crucial role in any fitness program.'),(179144,40677,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(179145,40677,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(179146,40677,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(179147,40677,'blocks_1_split_5050_content_actions','1'),(179148,40677,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(179149,40677,'blocks_1_split_5050_content',''),(179150,40677,'_blocks_1_split_5050_content','field_61767afceb8ba'),(179151,40677,'blocks_2_acfe_flexible_toggle',''),(179152,40677,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(179153,40677,'blocks_2_acfe_flexible_layout_title','Timeline'),(179154,40677,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(179155,40677,'blocks_2_options_theme','#ffffff'),(179156,40677,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(179157,40677,'blocks_2_options',''),(179158,40677,'_blocks_2_options','field_6177de53d1195'),(179159,40677,'blocks_2_timeline_content_title',''),(179160,40677,'_blocks_2_timeline_content_title','field_6177de53d1198'),(179161,40677,'blocks_2_timeline_content_heading','What is included?'),(179162,40677,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(179163,40677,'blocks_2_timeline_content_text','Join us for this enlightening webinar where simplicity meets effectiveness in deadlift analysis. Elevate your training and therapy game with practical insights that make a difference.'),(179164,40677,'_blocks_2_timeline_content_text','field_6177de53d119a'),(179165,40677,'blocks_2_timeline_content_actions',''),(179166,40677,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(179167,40677,'blocks_2_timeline_content',''),(179168,40677,'_blocks_2_timeline_content','field_6177de53d1197'),(179169,40677,'blocks_2_timeline_items_0_title','Why Analyse the Deadlift? '),(179170,40677,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(179171,40677,'blocks_2_timeline_items_0_text','Uncover the importance of dissecting the deadlift and how it contributes to overall fitness programs. '),(179172,40677,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(179173,40677,'blocks_2_timeline_items_1_title','The Deadlift\'s Offerings: A Deep Dive '),(179174,40677,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(179175,40677,'blocks_2_timeline_items_1_text','Explore the myriad benefits the deadlift brings to the table for individuals seeking a well-rounded fitness routine. '),(179176,40677,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(179177,40677,'blocks_2_timeline_items_2_title','Decoding the Movement '),(179178,40677,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(179179,40677,'blocks_2_timeline_items_2_text','Get to the core of the deadlift by understanding its mechanics and nuances. '),(179180,40677,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(179181,40677,'blocks_2_timeline_items_3_title','Exploring Deadlift Styles '),(179182,40677,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(179183,40677,'blocks_2_timeline_items_3_text','Discuss the various deadlift styles and their unique advantages, providing a comprehensive view for trainers and therapists. '),(179184,40677,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(179185,40677,'blocks_2_timeline_items_4_title','Interactive Session: Analysing the Movement – So What?'),(179186,40677,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(179187,40677,'blocks_2_timeline_items_4_text','Engage in a dynamic Q&A session to delve deeper into the practical aspects of deadlift analysis. '),(179188,40677,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(179189,40677,'blocks_2_timeline_items_5_title','Choosing the Right Style for Reduced Risk & Peak Performance '),(179190,40677,'_blocks_2_timeline_items_5_title','field_6177de53d119f'),(179191,40677,'blocks_2_timeline_items_5_text','Learn how to tailor deadlift styles to individual needs, ensuring optimal performance and minimizing the risk of injury. '),(179192,40677,'_blocks_2_timeline_items_5_text','field_6177de53d11a0'),(179193,40677,'blocks_2_timeline_items_6_title','Crucial Insights: Understanding Tissue Tolerance and Load Management '),(179194,40677,'_blocks_2_timeline_items_6_title','field_6177de53d119f'),(179195,40677,'blocks_2_timeline_items_6_text','Gain invaluable knowledge on managing tissue tolerance and optimizing load for better long-term results. '),(179196,40677,'_blocks_2_timeline_items_6_text','field_6177de53d11a0'),(179197,40677,'blocks_2_timeline_items','7'),(179198,40677,'_blocks_2_timeline_items','field_6177de53d119d'),(179199,40677,'blocks','a:3:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";}'),(179200,40677,'_blocks','field_6176696113096'),(179201,40677,'course_label_text',''),(179202,40677,'_course_label_text','field_61e17babf71fa'),(179203,40677,'course_label',''),(179204,40677,'_course_label','field_61e12f92749a7'),(179205,40677,'course_description',''),(179206,40677,'_course_description','field_617ac5788e5e1'),(179207,40677,'course_key_info',''),(179208,40677,'_course_key_info','field_617ac6ad8e5e2'),(179209,40677,'course_included',''),(179210,40677,'_course_included','field_617ac6f08e5e4'),(179211,40273,'blocks_3_acfe_flexible_toggle',''),(179212,40273,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(179213,40273,'blocks_3_acfe_flexible_layout_title','Button(s)'),(179214,40273,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(179215,40273,'blocks_3_options_theme','#ffffff'),(179216,40273,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(179217,40273,'blocks_3_options',''),(179218,40273,'_blocks_3_options','field_623b03edb6e65'),(179219,40273,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(179220,40273,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(179221,40273,'blocks_3_actions','1'),(179222,40273,'_blocks_3_actions','field_623b03edb6e6e'),(179283,40678,'hide_hero','0'),(179284,40678,'_hide_hero','field_66a2380fcda39'),(179285,40678,'hero_title','Deadlift Analysis Made Simple Recorded Online Learning'),(179286,40678,'_hero_title','field_617571fe285e8'),(179287,40678,'hero_text',''),(179288,40678,'_hero_text','field_6175723c285e9'),(179289,40678,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(179290,40678,'_hero_actions_0_button','field_61757281285eb'),(179291,40678,'hero_actions','1'),(179292,40678,'_hero_actions','field_61757270285ea'),(179293,40678,'hero_style','default'),(179294,40678,'_hero_style','field_62051d9dc5324'),(179295,40678,'_thumbnail_id','40675'),(179296,40678,'__thumbnail_id','field_617570855ddaf'),(179297,40678,'hero_image_pos_x','right'),(179298,40678,'_hero_image_pos_x','field_62ec3d05390bb'),(179299,40678,'hero_image_pos_y','top'),(179300,40678,'_hero_image_pos_y','field_62ec3d05390bc'),(179301,40678,'hero_image_pos',''),(179302,40678,'_hero_image_pos','field_62ec3d05390ba'),(179303,40678,'fft_hide_from_listings','0'),(179304,40678,'_fft_hide_from_listings','field_61f1320446ab2'),(179305,40678,'fft_page_format','default'),(179306,40678,'_fft_page_format','field_61ae213f1f218'),(179307,40678,'fft_hide_nav','0'),(179308,40678,'_fft_hide_nav','field_635bd5e43527c'),(179309,40678,'fft_hide_header_call_to_action','0'),(179310,40678,'_fft_hide_header_call_to_action','field_635bd6723527d'),(179311,40678,'fft_page_sitemap','0'),(179312,40678,'_fft_page_sitemap','field_61af9b34e8181'),(179313,40678,'blocks_0_acfe_flexible_toggle',''),(179314,40678,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(179315,40678,'blocks_0_acfe_flexible_layout_title','Template'),(179316,40678,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(179317,40678,'blocks_0_template','39087'),(179318,40678,'_blocks_0_template','field_617bdd570fe01'),(179319,40678,'blocks_1_acfe_flexible_toggle',''),(179320,40678,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(179321,40678,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(179322,40678,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(179323,40678,'blocks_1_options_theme','#f5f5f5'),(179324,40678,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(179325,40678,'blocks_1_options_reverse','0'),(179326,40678,'_blocks_1_options_reverse','field_61768049bb8ac'),(179327,40678,'blocks_1_options',''),(179328,40678,'_blocks_1_options','field_617682517c334'),(179329,40678,'blocks_1_split_5050_image','40676'),(179330,40678,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(179331,40678,'blocks_1_split_5050_video',''),(179332,40678,'_blocks_1_split_5050_video','field_6239f3160848a'),(179333,40678,'blocks_1_split_5050_content_title',''),(179334,40678,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(179335,40678,'blocks_1_split_5050_content_heading','Course Overview'),(179336,40678,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(179337,40678,'blocks_1_split_5050_content_text','This webinar will elevate your form and help guide your clients on yet fitness journey. designed for personal trainers and therapists, discover straightforward, equipment-free movement analysis methods that will enhance your understanding of the deadlift and its crucial role in any fitness program.'),(179338,40678,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(179339,40678,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(179340,40678,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(179341,40678,'blocks_1_split_5050_content_actions','1'),(179342,40678,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(179343,40678,'blocks_1_split_5050_content',''),(179344,40678,'_blocks_1_split_5050_content','field_61767afceb8ba'),(179345,40678,'blocks_2_acfe_flexible_toggle',''),(179346,40678,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(179347,40678,'blocks_2_acfe_flexible_layout_title','Timeline'),(179348,40678,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(179349,40678,'blocks_2_options_theme','#ffffff'),(179350,40678,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(179351,40678,'blocks_2_options',''),(179352,40678,'_blocks_2_options','field_6177de53d1195'),(179353,40678,'blocks_2_timeline_content_title',''),(179354,40678,'_blocks_2_timeline_content_title','field_6177de53d1198'),(179355,40678,'blocks_2_timeline_content_heading','What is included?'),(179356,40678,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(179357,40678,'blocks_2_timeline_content_text','Join us for this enlightening webinar where simplicity meets effectiveness in deadlift analysis. Elevate your training and therapy game with practical insights that make a difference.'),(179358,40678,'_blocks_2_timeline_content_text','field_6177de53d119a'),(179359,40678,'blocks_2_timeline_content_actions',''),(179360,40678,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(179361,40678,'blocks_2_timeline_content',''),(179362,40678,'_blocks_2_timeline_content','field_6177de53d1197'),(179363,40678,'blocks_2_timeline_items_0_title','Why Analyse the Deadlift? '),(179364,40678,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(179365,40678,'blocks_2_timeline_items_0_text','Uncover the importance of dissecting the deadlift and how it contributes to overall fitness programs. '),(179366,40678,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(179367,40678,'blocks_2_timeline_items_1_title','The Deadlift\'s Offerings: A Deep Dive '),(179368,40678,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(179369,40678,'blocks_2_timeline_items_1_text','Explore the myriad benefits the deadlift brings to the table for individuals seeking a well-rounded fitness routine. '),(179370,40678,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(179371,40678,'blocks_2_timeline_items_2_title','Decoding the Movement '),(179372,40678,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(179373,40678,'blocks_2_timeline_items_2_text','Get to the core of the deadlift by understanding its mechanics and nuances. '),(179374,40678,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(179375,40678,'blocks_2_timeline_items_3_title','Exploring Deadlift Styles '),(179376,40678,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(179377,40678,'blocks_2_timeline_items_3_text','Discuss the various deadlift styles and their unique advantages, providing a comprehensive view for trainers and therapists. '),(179378,40678,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(179379,40678,'blocks_2_timeline_items_4_title','Interactive Session: Analysing the Movement – So What?'),(179380,40678,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(179381,40678,'blocks_2_timeline_items_4_text','Engage in a dynamic Q&A session to delve deeper into the practical aspects of deadlift analysis. '),(179382,40678,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(179383,40678,'blocks_2_timeline_items_5_title','Choosing the Right Style for Reduced Risk & Peak Performance '),(179384,40678,'_blocks_2_timeline_items_5_title','field_6177de53d119f'),(179385,40678,'blocks_2_timeline_items_5_text','Learn how to tailor deadlift styles to individual needs, ensuring optimal performance and minimizing the risk of injury. '),(179386,40678,'_blocks_2_timeline_items_5_text','field_6177de53d11a0'),(179387,40678,'blocks_2_timeline_items_6_title','Crucial Insights: Understanding Tissue Tolerance and Load Management '),(179388,40678,'_blocks_2_timeline_items_6_title','field_6177de53d119f'),(179389,40678,'blocks_2_timeline_items_6_text','Gain invaluable knowledge on managing tissue tolerance and optimizing load for better long-term results. '),(179390,40678,'_blocks_2_timeline_items_6_text','field_6177de53d11a0'),(179391,40678,'blocks_2_timeline_items','7'),(179392,40678,'_blocks_2_timeline_items','field_6177de53d119d'),(179393,40678,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:7:\"buttons\";i:4;s:10:\"accordions\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(179394,40678,'_blocks','field_6176696113096'),(179395,40678,'course_label_text',''),(179396,40678,'_course_label_text','field_61e17babf71fa'),(179397,40678,'course_label',''),(179398,40678,'_course_label','field_61e12f92749a7'),(179399,40678,'course_description',''),(179400,40678,'_course_description','field_617ac5788e5e1'),(179401,40678,'course_key_info',''),(179402,40678,'_course_key_info','field_617ac6ad8e5e2'),(179403,40678,'course_included',''),(179404,40678,'_course_included','field_617ac6f08e5e4'),(179405,40678,'blocks_3_acfe_flexible_toggle',''),(179406,40678,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(179407,40678,'blocks_3_acfe_flexible_layout_title','Button(s)'),(179408,40678,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(179409,40678,'blocks_3_options_theme','#ffffff'),(179410,40678,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(179411,40678,'blocks_3_options',''),(179412,40678,'_blocks_3_options','field_623b03edb6e65'),(179413,40678,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(179414,40678,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(179415,40678,'blocks_3_actions','1'),(179416,40678,'_blocks_3_actions','field_623b03edb6e6e'),(179417,40678,'blocks_4_acfe_flexible_toggle',''),(179418,40678,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(179419,40678,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(179420,40678,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(179421,40678,'blocks_4_options_theme','#ffffff'),(179422,40678,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(179423,40678,'blocks_4_options_state','0'),(179424,40678,'_blocks_4_options_state','field_6239fcb7508c5'),(179425,40678,'blocks_4_options',''),(179426,40678,'_blocks_4_options','field_6177e2991ac44'),(179427,40678,'blocks_4_content_title',''),(179428,40678,'_blocks_4_content_title','field_64d237e8bb1e2'),(179429,40678,'blocks_4_content_heading','FAQ\'s'),(179430,40678,'_blocks_4_content_heading','field_64d237e8bb1e3'),(179431,40678,'blocks_4_content_text',''),(179432,40678,'_blocks_4_content_text','field_64d237e8bb1e4'),(179433,40678,'blocks_4_content_actions',''),(179434,40678,'_blocks_4_content_actions','field_64d237e8bb1e5'),(179435,40678,'blocks_4_content_align','left'),(179436,40678,'_blocks_4_content_align','field_64d2443e6b6aa'),(179437,40678,'blocks_4_content',''),(179438,40678,'_blocks_4_content','field_64d237e8bb1e1'),(179439,40678,'blocks_4_accordion_content','custom'),(179440,40678,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(179441,40678,'blocks_4_accordion_items',''),(179442,40678,'_blocks_4_accordion_items','field_6177e2991ac4c'),(179443,40678,'blocks_4_actions',''),(179444,40678,'_blocks_4_actions','field_61a746a817f7a'),(179445,40678,'blocks_5_acfe_flexible_toggle',''),(179446,40678,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(179447,40678,'blocks_5_acfe_flexible_layout_title','Text Block'),(179448,40678,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(179449,40678,'blocks_5_options_theme','#ffffff'),(179450,40678,'_blocks_5_options_theme','field_6176830e2ad17'),(179451,40678,'blocks_5_options',''),(179452,40678,'_blocks_5_options','field_6176830e2ad16'),(179453,40678,'blocks_5_text_block_heading','Other Courses'),(179454,40678,'_blocks_5_text_block_heading','field_617669d413097'),(179455,40678,'blocks_5_text_block_content','Discover our range of frequently purchased courses.'),(179456,40678,'_blocks_5_text_block_content','field_617669ec13098'),(179457,40678,'blocks_6_acfe_flexible_toggle',''),(179458,40678,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(179459,40678,'blocks_6_acfe_flexible_layout_title','Cards'),(179460,40678,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(179461,40678,'blocks_6_options_theme','#ffffff'),(179462,40678,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(179463,40678,'blocks_6_options_format','carousel'),(179464,40678,'_blocks_6_options_format','field_617a7b15245b5'),(179465,40678,'blocks_6_options_style','default'),(179466,40678,'_blocks_6_options_style','field_6278ffb63484a'),(179467,40678,'blocks_6_options_cards_current_listing','0'),(179468,40678,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(179469,40678,'blocks_6_options_cards_content','term'),(179470,40678,'_blocks_6_options_cards_content','field_617aba6122688'),(179471,40678,'blocks_6_options_cards_term','409'),(179472,40678,'_blocks_6_options_cards_term','field_6193f7c180895'),(179473,40678,'blocks_6_options_cards_posts_per_page',''),(179474,40678,'_blocks_6_options_cards_posts_per_page','field_61a7565b1a0f2'),(179475,40678,'blocks_6_options',''),(179476,40678,'_blocks_6_options','field_617a7b15245b3'),(179671,40680,'hide_hero','0'),(179672,40680,'_hide_hero','field_66a2380fcda39'),(179673,40680,'hero_title','Deadlift Analysis Made Simple Recorded Online Learning'),(179674,40680,'_hero_title','field_617571fe285e8'),(179675,40680,'hero_text',''),(179676,40680,'_hero_text','field_6175723c285e9'),(179677,40680,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(179678,40680,'_hero_actions_0_button','field_61757281285eb'),(179679,40680,'hero_actions','1'),(179680,40680,'_hero_actions','field_61757270285ea'),(179681,40680,'hero_style','default'),(179682,40680,'_hero_style','field_62051d9dc5324'),(179683,40680,'_thumbnail_id','40675'),(179684,40680,'__thumbnail_id','field_617570855ddaf'),(179685,40680,'hero_image_pos_x','right'),(179686,40680,'_hero_image_pos_x','field_62ec3d05390bb'),(179687,40680,'hero_image_pos_y','top'),(179688,40680,'_hero_image_pos_y','field_62ec3d05390bc'),(179689,40680,'hero_image_pos',''),(179690,40680,'_hero_image_pos','field_62ec3d05390ba'),(179691,40680,'fft_hide_from_listings','0'),(179692,40680,'_fft_hide_from_listings','field_61f1320446ab2'),(179693,40680,'fft_page_format','default'),(179694,40680,'_fft_page_format','field_61ae213f1f218'),(179695,40680,'fft_hide_nav','0'),(179696,40680,'_fft_hide_nav','field_635bd5e43527c'),(179697,40680,'fft_hide_header_call_to_action','0'),(179698,40680,'_fft_hide_header_call_to_action','field_635bd6723527d'),(179699,40680,'fft_page_sitemap','0'),(179700,40680,'_fft_page_sitemap','field_61af9b34e8181'),(179701,40680,'blocks_0_acfe_flexible_toggle',''),(179702,40680,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(179703,40680,'blocks_0_acfe_flexible_layout_title','Template'),(179704,40680,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(179705,40680,'blocks_0_template','39087'),(179706,40680,'_blocks_0_template','field_617bdd570fe01'),(179707,40680,'blocks_1_acfe_flexible_toggle',''),(179708,40680,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(179709,40680,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(179710,40680,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(179711,40680,'blocks_1_options_theme','#ffffff'),(179712,40680,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(179713,40680,'blocks_1_options_reverse','0'),(179714,40680,'_blocks_1_options_reverse','field_61768049bb8ac'),(179715,40680,'blocks_1_options',''),(179716,40680,'_blocks_1_options','field_617682517c334'),(179717,40680,'blocks_1_split_5050_image','40676'),(179718,40680,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(179719,40680,'blocks_1_split_5050_video',''),(179720,40680,'_blocks_1_split_5050_video','field_6239f3160848a'),(179721,40680,'blocks_1_split_5050_content_title',''),(179722,40680,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(179723,40680,'blocks_1_split_5050_content_heading','Course Overview'),(179724,40680,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(179725,40680,'blocks_1_split_5050_content_text','This webinar will elevate your form and help guide your clients on yet fitness journey. designed for personal trainers and therapists, discover straightforward, equipment-free movement analysis methods that will enhance your understanding of the deadlift and its crucial role in any fitness program.'),(179726,40680,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(179727,40680,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(179728,40680,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(179729,40680,'blocks_1_split_5050_content_actions','1'),(179730,40680,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(179731,40680,'blocks_1_split_5050_content',''),(179732,40680,'_blocks_1_split_5050_content','field_61767afceb8ba'),(179733,40680,'blocks_2_acfe_flexible_toggle',''),(179734,40680,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(179735,40680,'blocks_2_acfe_flexible_layout_title','Timeline'),(179736,40680,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(179737,40680,'blocks_2_options_theme','#ffffff'),(179738,40680,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(179739,40680,'blocks_2_options',''),(179740,40680,'_blocks_2_options','field_6177de53d1195'),(179741,40680,'blocks_2_timeline_content_title',''),(179742,40680,'_blocks_2_timeline_content_title','field_6177de53d1198'),(179743,40680,'blocks_2_timeline_content_heading','What is included?'),(179744,40680,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(179745,40680,'blocks_2_timeline_content_text','Join us for this enlightening webinar where simplicity meets effectiveness in deadlift analysis. Elevate your training and therapy game with practical insights that make a difference.'),(179746,40680,'_blocks_2_timeline_content_text','field_6177de53d119a'),(179747,40680,'blocks_2_timeline_content_actions',''),(179748,40680,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(179749,40680,'blocks_2_timeline_content',''),(179750,40680,'_blocks_2_timeline_content','field_6177de53d1197'),(179751,40680,'blocks_2_timeline_items_0_title','Why Analyse the Deadlift? '),(179752,40680,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(179753,40680,'blocks_2_timeline_items_0_text','Uncover the importance of dissecting the deadlift and how it contributes to overall fitness programs. '),(179754,40680,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(179755,40680,'blocks_2_timeline_items_1_title','The Deadlift\'s Offerings: A Deep Dive '),(179756,40680,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(179757,40680,'blocks_2_timeline_items_1_text','Explore the myriad benefits the deadlift brings to the table for individuals seeking a well-rounded fitness routine. '),(179758,40680,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(179759,40680,'blocks_2_timeline_items_2_title','Decoding the Movement '),(179760,40680,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(179761,40680,'blocks_2_timeline_items_2_text','Get to the core of the deadlift by understanding its mechanics and nuances. '),(179762,40680,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(179763,40680,'blocks_2_timeline_items_3_title','Exploring Deadlift Styles '),(179764,40680,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(179765,40680,'blocks_2_timeline_items_3_text','Discuss the various deadlift styles and their unique advantages, providing a comprehensive view for trainers and therapists. '),(179766,40680,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(179767,40680,'blocks_2_timeline_items_4_title','Interactive Session: Analysing the Movement – So What?'),(179768,40680,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(179769,40680,'blocks_2_timeline_items_4_text','Engage in a dynamic Q&A session to delve deeper into the practical aspects of deadlift analysis. '),(179770,40680,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(179771,40680,'blocks_2_timeline_items_5_title','Choosing the Right Style for Reduced Risk & Peak Performance '),(179772,40680,'_blocks_2_timeline_items_5_title','field_6177de53d119f'),(179773,40680,'blocks_2_timeline_items_5_text','Learn how to tailor deadlift styles to individual needs, ensuring optimal performance and minimizing the risk of injury. '),(179774,40680,'_blocks_2_timeline_items_5_text','field_6177de53d11a0'),(179775,40680,'blocks_2_timeline_items_6_title','Crucial Insights: Understanding Tissue Tolerance and Load Management '),(179776,40680,'_blocks_2_timeline_items_6_title','field_6177de53d119f'),(179777,40680,'blocks_2_timeline_items_6_text','Gain invaluable knowledge on managing tissue tolerance and optimizing load for better long-term results. '),(179778,40680,'_blocks_2_timeline_items_6_text','field_6177de53d11a0'),(179779,40680,'blocks_2_timeline_items','7'),(179780,40680,'_blocks_2_timeline_items','field_6177de53d119d'),(179781,40680,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:7:\"buttons\";i:4;s:10:\"accordions\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(179782,40680,'_blocks','field_6176696113096'),(179783,40680,'course_label_text',''),(179784,40680,'_course_label_text','field_61e17babf71fa'),(179785,40680,'course_label',''),(179786,40680,'_course_label','field_61e12f92749a7'),(179787,40680,'course_description',''),(179788,40680,'_course_description','field_617ac5788e5e1'),(179789,40680,'course_key_info',''),(179790,40680,'_course_key_info','field_617ac6ad8e5e2'),(179791,40680,'course_included',''),(179792,40680,'_course_included','field_617ac6f08e5e4'),(179793,40680,'blocks_3_acfe_flexible_toggle',''),(179794,40680,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(179795,40680,'blocks_3_acfe_flexible_layout_title','Button(s)'),(179796,40680,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(179797,40680,'blocks_3_options_theme','#ffffff'),(179798,40680,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(179799,40680,'blocks_3_options',''),(179800,40680,'_blocks_3_options','field_623b03edb6e65'),(179801,40680,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(179802,40680,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(179803,40680,'blocks_3_actions','1'),(179804,40680,'_blocks_3_actions','field_623b03edb6e6e'),(179805,40680,'blocks_4_acfe_flexible_toggle',''),(179806,40680,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(179807,40680,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(179808,40680,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(179809,40680,'blocks_4_options_theme','#ffffff'),(179810,40680,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(179811,40680,'blocks_4_options_state','0'),(179812,40680,'_blocks_4_options_state','field_6239fcb7508c5'),(179813,40680,'blocks_4_options',''),(179814,40680,'_blocks_4_options','field_6177e2991ac44'),(179815,40680,'blocks_4_content_title',''),(179816,40680,'_blocks_4_content_title','field_64d237e8bb1e2'),(179817,40680,'blocks_4_content_heading','FAQ\'s'),(179818,40680,'_blocks_4_content_heading','field_64d237e8bb1e3'),(179819,40680,'blocks_4_content_text',''),(179820,40680,'_blocks_4_content_text','field_64d237e8bb1e4'),(179821,40680,'blocks_4_content_actions',''),(179822,40680,'_blocks_4_content_actions','field_64d237e8bb1e5'),(179823,40680,'blocks_4_content_align','left'),(179824,40680,'_blocks_4_content_align','field_64d2443e6b6aa'),(179825,40680,'blocks_4_content',''),(179826,40680,'_blocks_4_content','field_64d237e8bb1e1'),(179827,40680,'blocks_4_accordion_content','custom'),(179828,40680,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(179829,40680,'blocks_4_accordion_items',''),(179830,40680,'_blocks_4_accordion_items','field_6177e2991ac4c'),(179831,40680,'blocks_4_actions',''),(179832,40680,'_blocks_4_actions','field_61a746a817f7a'),(179833,40680,'blocks_5_acfe_flexible_toggle',''),(179834,40680,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(179835,40680,'blocks_5_acfe_flexible_layout_title','Text Block'),(179836,40680,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(179837,40680,'blocks_5_options_theme','#ffffff'),(179838,40680,'_blocks_5_options_theme','field_6176830e2ad17'),(179839,40680,'blocks_5_options',''),(179840,40680,'_blocks_5_options','field_6176830e2ad16'),(179841,40680,'blocks_5_text_block_heading','Other Courses'),(179842,40680,'_blocks_5_text_block_heading','field_617669d413097'),(179843,40680,'blocks_5_text_block_content','Discover our range of frequently purchased courses.'),(179844,40680,'_blocks_5_text_block_content','field_617669ec13098'),(179845,40680,'blocks_6_acfe_flexible_toggle',''),(179846,40680,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(179847,40680,'blocks_6_acfe_flexible_layout_title','Cards'),(179848,40680,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(179849,40680,'blocks_6_options_theme','#ffffff'),(179850,40680,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(179851,40680,'blocks_6_options_format','carousel'),(179852,40680,'_blocks_6_options_format','field_617a7b15245b5'),(179853,40680,'blocks_6_options_style','default'),(179854,40680,'_blocks_6_options_style','field_6278ffb63484a'),(179855,40680,'blocks_6_options_cards_current_listing','0'),(179856,40680,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(179857,40680,'blocks_6_options_cards_content','term'),(179858,40680,'_blocks_6_options_cards_content','field_617aba6122688'),(179859,40680,'blocks_6_options_cards_term','409'),(179860,40680,'_blocks_6_options_cards_term','field_6193f7c180895'),(179861,40680,'blocks_6_options_cards_posts_per_page',''),(179862,40680,'_blocks_6_options_cards_posts_per_page','field_61a7565b1a0f2'),(179863,40680,'blocks_6_options',''),(179864,40680,'_blocks_6_options','field_617a7b15245b3'),(179865,40273,'blocks_4_acfe_flexible_toggle',''),(179866,40273,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(179867,40273,'blocks_4_acfe_flexible_layout_title','Template'),(179868,40273,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(179869,40273,'blocks_4_template','39401'),(179870,40273,'_blocks_4_template','field_617bdd570fe01'),(179871,40273,'blocks_5_acfe_flexible_toggle',''),(179872,40273,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(179873,40273,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(179874,40273,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(179875,40273,'blocks_5_options_theme','#ffffff'),(179876,40273,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(179877,40273,'blocks_5_options_state','0'),(179878,40273,'_blocks_5_options_state','field_6239fcb7508c5'),(179879,40273,'blocks_5_options',''),(179880,40273,'_blocks_5_options','field_6177e2991ac44'),(179881,40273,'blocks_5_content_title',''),(179882,40273,'_blocks_5_content_title','field_64d237e8bb1e2'),(179883,40273,'blocks_5_content_heading','FAQ\'s'),(179884,40273,'_blocks_5_content_heading','field_64d237e8bb1e3'),(179885,40273,'blocks_5_content_text',''),(179886,40273,'_blocks_5_content_text','field_64d237e8bb1e4'),(179887,40273,'blocks_5_content_actions',''),(179888,40273,'_blocks_5_content_actions','field_64d237e8bb1e5'),(179889,40273,'blocks_5_content_align','left'),(179890,40273,'_blocks_5_content_align','field_64d2443e6b6aa'),(179891,40273,'blocks_5_content',''),(179892,40273,'_blocks_5_content','field_64d237e8bb1e1'),(179893,40273,'blocks_5_accordion_content','custom'),(179894,40273,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(179895,40273,'blocks_5_accordion_items',''),(179896,40273,'_blocks_5_accordion_items','field_6177e2991ac4c'),(179897,40273,'blocks_5_actions',''),(179898,40273,'_blocks_5_actions','field_61a746a817f7a'),(179899,40273,'blocks_6_acfe_flexible_toggle',''),(179900,40273,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(179901,40273,'blocks_6_acfe_flexible_layout_title','Text Block'),(179902,40273,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(179903,40273,'blocks_6_options_theme','#ffffff'),(179904,40273,'_blocks_6_options_theme','field_6176830e2ad17'),(179905,40273,'blocks_6_options',''),(179906,40273,'_blocks_6_options','field_6176830e2ad16'),(179907,40273,'blocks_6_text_block_heading','Other Courses'),(179908,40273,'_blocks_6_text_block_heading','field_617669d413097'),(179909,40273,'blocks_6_text_block_content','Discover our range of frequently purchased courses.'),(179910,40273,'_blocks_6_text_block_content','field_617669ec13098'),(179911,40273,'blocks_7_acfe_flexible_toggle',''),(179912,40273,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(179913,40273,'blocks_7_acfe_flexible_layout_title','Cards'),(179914,40273,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(179915,40273,'blocks_7_options_theme','#ffffff'),(179916,40273,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(179917,40273,'blocks_7_options_format','carousel'),(179918,40273,'_blocks_7_options_format','field_617a7b15245b5'),(179919,40273,'blocks_7_options_style','default'),(179920,40273,'_blocks_7_options_style','field_6278ffb63484a'),(179921,40273,'blocks_7_options_cards_current_listing','0'),(179922,40273,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(179923,40273,'blocks_7_options_cards_content','term'),(179924,40273,'_blocks_7_options_cards_content','field_617aba6122688'),(179925,40273,'blocks_7_options_cards_term','409'),(179926,40273,'_blocks_7_options_cards_term','field_6193f7c180895'),(179927,40273,'blocks_7_options_cards_posts_per_page',''),(179928,40273,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(179929,40273,'blocks_7_options',''),(179930,40273,'_blocks_7_options','field_617a7b15245b3'),(179931,40681,'hide_hero','0'),(179932,40681,'_hide_hero','field_66a2380fcda39'),(179933,40681,'hero_title','Deadlift Analysis Made Simple Recorded Online Learning'),(179934,40681,'_hero_title','field_617571fe285e8'),(179935,40681,'hero_text',''),(179936,40681,'_hero_text','field_6175723c285e9'),(179937,40681,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(179938,40681,'_hero_actions_0_button','field_61757281285eb'),(179939,40681,'hero_actions','1'),(179940,40681,'_hero_actions','field_61757270285ea'),(179941,40681,'hero_style','default'),(179942,40681,'_hero_style','field_62051d9dc5324'),(179943,40681,'_thumbnail_id','40675'),(179944,40681,'__thumbnail_id','field_617570855ddaf'),(179945,40681,'hero_image_pos_x','right'),(179946,40681,'_hero_image_pos_x','field_62ec3d05390bb'),(179947,40681,'hero_image_pos_y','top'),(179948,40681,'_hero_image_pos_y','field_62ec3d05390bc'),(179949,40681,'hero_image_pos',''),(179950,40681,'_hero_image_pos','field_62ec3d05390ba'),(179951,40681,'fft_hide_from_listings','0'),(179952,40681,'_fft_hide_from_listings','field_61f1320446ab2'),(179953,40681,'fft_page_format','default'),(179954,40681,'_fft_page_format','field_61ae213f1f218'),(179955,40681,'fft_hide_nav','0'),(179956,40681,'_fft_hide_nav','field_635bd5e43527c'),(179957,40681,'fft_hide_header_call_to_action','0'),(179958,40681,'_fft_hide_header_call_to_action','field_635bd6723527d'),(179959,40681,'fft_page_sitemap','0'),(179960,40681,'_fft_page_sitemap','field_61af9b34e8181'),(179961,40681,'blocks_0_acfe_flexible_toggle',''),(179962,40681,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(179963,40681,'blocks_0_acfe_flexible_layout_title','Template'),(179964,40681,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(179965,40681,'blocks_0_template','39087'),(179966,40681,'_blocks_0_template','field_617bdd570fe01'),(179967,40681,'blocks_1_acfe_flexible_toggle',''),(179968,40681,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(179969,40681,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(179970,40681,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(179971,40681,'blocks_1_options_theme','#ffffff'),(179972,40681,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(179973,40681,'blocks_1_options_reverse','0'),(179974,40681,'_blocks_1_options_reverse','field_61768049bb8ac'),(179975,40681,'blocks_1_options',''),(179976,40681,'_blocks_1_options','field_617682517c334'),(179977,40681,'blocks_1_split_5050_image','40676'),(179978,40681,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(179979,40681,'blocks_1_split_5050_video',''),(179980,40681,'_blocks_1_split_5050_video','field_6239f3160848a'),(179981,40681,'blocks_1_split_5050_content_title',''),(179982,40681,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(179983,40681,'blocks_1_split_5050_content_heading','Course Overview'),(179984,40681,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(179985,40681,'blocks_1_split_5050_content_text','This webinar will elevate your form and help guide your clients on yet fitness journey. designed for personal trainers and therapists, discover straightforward, equipment-free movement analysis methods that will enhance your understanding of the deadlift and its crucial role in any fitness program.'),(179986,40681,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(179987,40681,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(179988,40681,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(179989,40681,'blocks_1_split_5050_content_actions','1'),(179990,40681,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(179991,40681,'blocks_1_split_5050_content',''),(179992,40681,'_blocks_1_split_5050_content','field_61767afceb8ba'),(179993,40681,'blocks_2_acfe_flexible_toggle',''),(179994,40681,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(179995,40681,'blocks_2_acfe_flexible_layout_title','Timeline'),(179996,40681,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(179997,40681,'blocks_2_options_theme','#ffffff'),(179998,40681,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(179999,40681,'blocks_2_options',''),(180000,40681,'_blocks_2_options','field_6177de53d1195'),(180001,40681,'blocks_2_timeline_content_title',''),(180002,40681,'_blocks_2_timeline_content_title','field_6177de53d1198'),(180003,40681,'blocks_2_timeline_content_heading','What is included?'),(180004,40681,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(180005,40681,'blocks_2_timeline_content_text','Join us for this enlightening webinar where simplicity meets effectiveness in deadlift analysis. Elevate your training and therapy game with practical insights that make a difference.'),(180006,40681,'_blocks_2_timeline_content_text','field_6177de53d119a'),(180007,40681,'blocks_2_timeline_content_actions',''),(180008,40681,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(180009,40681,'blocks_2_timeline_content',''),(180010,40681,'_blocks_2_timeline_content','field_6177de53d1197'),(180011,40681,'blocks_2_timeline_items_0_title','Why Analyse the Deadlift? '),(180012,40681,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(180013,40681,'blocks_2_timeline_items_0_text','Uncover the importance of dissecting the deadlift and how it contributes to overall fitness programs. '),(180014,40681,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(180015,40681,'blocks_2_timeline_items_1_title','The Deadlift\'s Offerings: A Deep Dive '),(180016,40681,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(180017,40681,'blocks_2_timeline_items_1_text','Explore the myriad benefits the deadlift brings to the table for individuals seeking a well-rounded fitness routine. '),(180018,40681,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(180019,40681,'blocks_2_timeline_items_2_title','Decoding the Movement '),(180020,40681,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(180021,40681,'blocks_2_timeline_items_2_text','Get to the core of the deadlift by understanding its mechanics and nuances. '),(180022,40681,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(180023,40681,'blocks_2_timeline_items_3_title','Exploring Deadlift Styles '),(180024,40681,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(180025,40681,'blocks_2_timeline_items_3_text','Discuss the various deadlift styles and their unique advantages, providing a comprehensive view for trainers and therapists. '),(180026,40681,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(180027,40681,'blocks_2_timeline_items_4_title','Interactive Session: Analysing the Movement – So What?'),(180028,40681,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(180029,40681,'blocks_2_timeline_items_4_text','Engage in a dynamic Q&A session to delve deeper into the practical aspects of deadlift analysis. '),(180030,40681,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(180031,40681,'blocks_2_timeline_items_5_title','Choosing the Right Style for Reduced Risk & Peak Performance '),(180032,40681,'_blocks_2_timeline_items_5_title','field_6177de53d119f'),(180033,40681,'blocks_2_timeline_items_5_text','Learn how to tailor deadlift styles to individual needs, ensuring optimal performance and minimizing the risk of injury. '),(180034,40681,'_blocks_2_timeline_items_5_text','field_6177de53d11a0'),(180035,40681,'blocks_2_timeline_items_6_title','Crucial Insights: Understanding Tissue Tolerance and Load Management '),(180036,40681,'_blocks_2_timeline_items_6_title','field_6177de53d119f'),(180037,40681,'blocks_2_timeline_items_6_text','Gain invaluable knowledge on managing tissue tolerance and optimizing load for better long-term results. '),(180038,40681,'_blocks_2_timeline_items_6_text','field_6177de53d11a0'),(180039,40681,'blocks_2_timeline_items','7'),(180040,40681,'_blocks_2_timeline_items','field_6177de53d119d'),(180041,40681,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:7:\"buttons\";i:4;s:8:\"template\";i:5;s:10:\"accordions\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";}'),(180042,40681,'_blocks','field_6176696113096'),(180043,40681,'course_label_text',''),(180044,40681,'_course_label_text','field_61e17babf71fa'),(180045,40681,'course_label',''),(180046,40681,'_course_label','field_61e12f92749a7'),(180047,40681,'course_description',''),(180048,40681,'_course_description','field_617ac5788e5e1'),(180049,40681,'course_key_info',''),(180050,40681,'_course_key_info','field_617ac6ad8e5e2'),(180051,40681,'course_included',''),(180052,40681,'_course_included','field_617ac6f08e5e4'),(180053,40681,'blocks_3_acfe_flexible_toggle',''),(180054,40681,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(180055,40681,'blocks_3_acfe_flexible_layout_title','Button(s)'),(180056,40681,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(180057,40681,'blocks_3_options_theme','#ffffff'),(180058,40681,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(180059,40681,'blocks_3_options',''),(180060,40681,'_blocks_3_options','field_623b03edb6e65'),(180061,40681,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(180062,40681,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(180063,40681,'blocks_3_actions','1'),(180064,40681,'_blocks_3_actions','field_623b03edb6e6e'),(180065,40681,'blocks_4_acfe_flexible_toggle',''),(180066,40681,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(180067,40681,'blocks_4_acfe_flexible_layout_title','Template'),(180068,40681,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(180069,40681,'blocks_4_template','39401'),(180070,40681,'_blocks_4_template','field_617bdd570fe01'),(180071,40681,'blocks_5_acfe_flexible_toggle',''),(180072,40681,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(180073,40681,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(180074,40681,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(180075,40681,'blocks_5_options_theme','#ffffff'),(180076,40681,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(180077,40681,'blocks_5_options_state','0'),(180078,40681,'_blocks_5_options_state','field_6239fcb7508c5'),(180079,40681,'blocks_5_options',''),(180080,40681,'_blocks_5_options','field_6177e2991ac44'),(180081,40681,'blocks_5_content_title',''),(180082,40681,'_blocks_5_content_title','field_64d237e8bb1e2'),(180083,40681,'blocks_5_content_heading','FAQ\'s'),(180084,40681,'_blocks_5_content_heading','field_64d237e8bb1e3'),(180085,40681,'blocks_5_content_text',''),(180086,40681,'_blocks_5_content_text','field_64d237e8bb1e4'),(180087,40681,'blocks_5_content_actions',''),(180088,40681,'_blocks_5_content_actions','field_64d237e8bb1e5'),(180089,40681,'blocks_5_content_align','left'),(180090,40681,'_blocks_5_content_align','field_64d2443e6b6aa'),(180091,40681,'blocks_5_content',''),(180092,40681,'_blocks_5_content','field_64d237e8bb1e1'),(180093,40681,'blocks_5_accordion_content','custom'),(180094,40681,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(180095,40681,'blocks_5_accordion_items',''),(180096,40681,'_blocks_5_accordion_items','field_6177e2991ac4c'),(180097,40681,'blocks_5_actions',''),(180098,40681,'_blocks_5_actions','field_61a746a817f7a'),(180099,40681,'blocks_6_acfe_flexible_toggle',''),(180100,40681,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(180101,40681,'blocks_6_acfe_flexible_layout_title','Text Block'),(180102,40681,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(180103,40681,'blocks_6_options_theme','#ffffff'),(180104,40681,'_blocks_6_options_theme','field_6176830e2ad17'),(180105,40681,'blocks_6_options',''),(180106,40681,'_blocks_6_options','field_6176830e2ad16'),(180107,40681,'blocks_6_text_block_heading','Other Courses'),(180108,40681,'_blocks_6_text_block_heading','field_617669d413097'),(180109,40681,'blocks_6_text_block_content','Discover our range of frequently purchased courses.'),(180110,40681,'_blocks_6_text_block_content','field_617669ec13098'),(180111,40681,'blocks_7_acfe_flexible_toggle',''),(180112,40681,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(180113,40681,'blocks_7_acfe_flexible_layout_title','Cards'),(180114,40681,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(180115,40681,'blocks_7_options_theme','#ffffff'),(180116,40681,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(180117,40681,'blocks_7_options_format','carousel'),(180118,40681,'_blocks_7_options_format','field_617a7b15245b5'),(180119,40681,'blocks_7_options_style','default'),(180120,40681,'_blocks_7_options_style','field_6278ffb63484a'),(180121,40681,'blocks_7_options_cards_current_listing','0'),(180122,40681,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(180123,40681,'blocks_7_options_cards_content','term'),(180124,40681,'_blocks_7_options_cards_content','field_617aba6122688'),(180125,40681,'blocks_7_options_cards_term','409'),(180126,40681,'_blocks_7_options_cards_term','field_6193f7c180895'),(180127,40681,'blocks_7_options_cards_posts_per_page',''),(180128,40681,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(180129,40681,'blocks_7_options',''),(180130,40681,'_blocks_7_options','field_617a7b15245b3'),(180131,40273,'_fft_show','1'),(180132,40273,'_fft_plan',NULL),(180133,40273,'course_label_label_theme','#0d1f73'),(180134,40273,'_course_label_label_theme','field_61e17bb8f71fb'),(180135,40273,'course_key_info_0_text','Online Learning'),(180136,40273,'_course_key_info_0_text','field_617ac6c38e5e3'),(180137,40273,'course_key_info_1_text','Webinar'),(180138,40273,'_course_key_info_1_text','field_617ac6c38e5e3'),(180139,40682,'hide_hero','0'),(180140,40682,'_hide_hero','field_66a2380fcda39'),(180141,40682,'hero_title','Deadlift Analysis Made Simple Recorded Online Learning'),(180142,40682,'_hero_title','field_617571fe285e8'),(180143,40682,'hero_text',''),(180144,40682,'_hero_text','field_6175723c285e9'),(180145,40682,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(180146,40682,'_hero_actions_0_button','field_61757281285eb'),(180147,40682,'hero_actions','1'),(180148,40682,'_hero_actions','field_61757270285ea'),(180149,40682,'hero_style','default'),(180150,40682,'_hero_style','field_62051d9dc5324'),(180151,40682,'_thumbnail_id','40675'),(180152,40682,'__thumbnail_id','field_617570855ddaf'),(180153,40682,'hero_image_pos_x','right'),(180154,40682,'_hero_image_pos_x','field_62ec3d05390bb'),(180155,40682,'hero_image_pos_y','top'),(180156,40682,'_hero_image_pos_y','field_62ec3d05390bc'),(180157,40682,'hero_image_pos',''),(180158,40682,'_hero_image_pos','field_62ec3d05390ba'),(180159,40682,'fft_hide_from_listings','0'),(180160,40682,'_fft_hide_from_listings','field_61f1320446ab2'),(180161,40682,'fft_page_format','default'),(180162,40682,'_fft_page_format','field_61ae213f1f218'),(180163,40682,'fft_hide_nav','0'),(180164,40682,'_fft_hide_nav','field_635bd5e43527c'),(180165,40682,'fft_hide_header_call_to_action','0'),(180166,40682,'_fft_hide_header_call_to_action','field_635bd6723527d'),(180167,40682,'fft_page_sitemap','0'),(180168,40682,'_fft_page_sitemap','field_61af9b34e8181'),(180169,40682,'blocks_0_acfe_flexible_toggle',''),(180170,40682,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(180171,40682,'blocks_0_acfe_flexible_layout_title','Template'),(180172,40682,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(180173,40682,'blocks_0_template','39087'),(180174,40682,'_blocks_0_template','field_617bdd570fe01'),(180175,40682,'blocks_1_acfe_flexible_toggle',''),(180176,40682,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(180177,40682,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(180178,40682,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(180179,40682,'blocks_1_options_theme','#ffffff'),(180180,40682,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(180181,40682,'blocks_1_options_reverse','0'),(180182,40682,'_blocks_1_options_reverse','field_61768049bb8ac'),(180183,40682,'blocks_1_options',''),(180184,40682,'_blocks_1_options','field_617682517c334'),(180185,40682,'blocks_1_split_5050_image','40676'),(180186,40682,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(180187,40682,'blocks_1_split_5050_video',''),(180188,40682,'_blocks_1_split_5050_video','field_6239f3160848a'),(180189,40682,'blocks_1_split_5050_content_title',''),(180190,40682,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(180191,40682,'blocks_1_split_5050_content_heading','Course Overview'),(180192,40682,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(180193,40682,'blocks_1_split_5050_content_text','This webinar will elevate your form and help guide your clients on yet fitness journey. designed for personal trainers and therapists, discover straightforward, equipment-free movement analysis methods that will enhance your understanding of the deadlift and its crucial role in any fitness program.'),(180194,40682,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(180195,40682,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(180196,40682,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(180197,40682,'blocks_1_split_5050_content_actions','1'),(180198,40682,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(180199,40682,'blocks_1_split_5050_content',''),(180200,40682,'_blocks_1_split_5050_content','field_61767afceb8ba'),(180201,40682,'blocks_2_acfe_flexible_toggle',''),(180202,40682,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(180203,40682,'blocks_2_acfe_flexible_layout_title','Timeline'),(180204,40682,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(180205,40682,'blocks_2_options_theme','#ffffff'),(180206,40682,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(180207,40682,'blocks_2_options',''),(180208,40682,'_blocks_2_options','field_6177de53d1195'),(180209,40682,'blocks_2_timeline_content_title',''),(180210,40682,'_blocks_2_timeline_content_title','field_6177de53d1198'),(180211,40682,'blocks_2_timeline_content_heading','What is included?'),(180212,40682,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(180213,40682,'blocks_2_timeline_content_text','Join us for this enlightening webinar where simplicity meets effectiveness in deadlift analysis. Elevate your training and therapy game with practical insights that make a difference.'),(180214,40682,'_blocks_2_timeline_content_text','field_6177de53d119a'),(180215,40682,'blocks_2_timeline_content_actions',''),(180216,40682,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(180217,40682,'blocks_2_timeline_content',''),(180218,40682,'_blocks_2_timeline_content','field_6177de53d1197'),(180219,40682,'blocks_2_timeline_items_0_title','Why Analyse the Deadlift? '),(180220,40682,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(180221,40682,'blocks_2_timeline_items_0_text','Uncover the importance of dissecting the deadlift and how it contributes to overall fitness programs. '),(180222,40682,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(180223,40682,'blocks_2_timeline_items_1_title','The Deadlift\'s Offerings: A Deep Dive '),(180224,40682,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(180225,40682,'blocks_2_timeline_items_1_text','Explore the myriad benefits the deadlift brings to the table for individuals seeking a well-rounded fitness routine. '),(180226,40682,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(180227,40682,'blocks_2_timeline_items_2_title','Decoding the Movement '),(180228,40682,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(180229,40682,'blocks_2_timeline_items_2_text','Get to the core of the deadlift by understanding its mechanics and nuances. '),(180230,40682,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(180231,40682,'blocks_2_timeline_items_3_title','Exploring Deadlift Styles '),(180232,40682,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(180233,40682,'blocks_2_timeline_items_3_text','Discuss the various deadlift styles and their unique advantages, providing a comprehensive view for trainers and therapists. '),(180234,40682,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(180235,40682,'blocks_2_timeline_items_4_title','Interactive Session: Analysing the Movement – So What?'),(180236,40682,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(180237,40682,'blocks_2_timeline_items_4_text','Engage in a dynamic Q&A session to delve deeper into the practical aspects of deadlift analysis. '),(180238,40682,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(180239,40682,'blocks_2_timeline_items_5_title','Choosing the Right Style for Reduced Risk & Peak Performance '),(180240,40682,'_blocks_2_timeline_items_5_title','field_6177de53d119f'),(180241,40682,'blocks_2_timeline_items_5_text','Learn how to tailor deadlift styles to individual needs, ensuring optimal performance and minimizing the risk of injury. '),(180242,40682,'_blocks_2_timeline_items_5_text','field_6177de53d11a0'),(180243,40682,'blocks_2_timeline_items_6_title','Crucial Insights: Understanding Tissue Tolerance and Load Management '),(180244,40682,'_blocks_2_timeline_items_6_title','field_6177de53d119f'),(180245,40682,'blocks_2_timeline_items_6_text','Gain invaluable knowledge on managing tissue tolerance and optimizing load for better long-term results. '),(180246,40682,'_blocks_2_timeline_items_6_text','field_6177de53d11a0'),(180247,40682,'blocks_2_timeline_items','7'),(180248,40682,'_blocks_2_timeline_items','field_6177de53d119d'),(180249,40682,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:7:\"buttons\";i:4;s:8:\"template\";i:5;s:10:\"accordions\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";}'),(180250,40682,'_blocks','field_6176696113096'),(180251,40682,'course_label_text','Deadlift Analysis Made Simple'),(180252,40682,'_course_label_text','field_61e17babf71fa'),(180253,40682,'course_label',''),(180254,40682,'_course_label','field_61e12f92749a7'),(180255,40682,'course_description','This webinar will elevate your form and help guide your clients on yet fitness journey.'),(180256,40682,'_course_description','field_617ac5788e5e1'),(180257,40682,'course_key_info','2'),(180258,40682,'_course_key_info','field_617ac6ad8e5e2'),(180259,40682,'course_included','Why Analyse the Deadlift? \r\n\r\nThe Deadlift\'s Offerings: A Deep Dive \r\n\r\nDecoding the Movement \r\n\r\nExploring Deadlift Styles \r\n\r\nInteractive Session: Analysing the Movement – So What? \r\n\r\nChoosing the Right Style for Reduced Risk & Peak Performance \r\n\r\nCrucial Insights: Understanding Tissue Tolerance and Load Management '),(180260,40682,'_course_included','field_617ac6f08e5e4'),(180261,40682,'blocks_3_acfe_flexible_toggle',''),(180262,40682,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(180263,40682,'blocks_3_acfe_flexible_layout_title','Button(s)'),(180264,40682,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(180265,40682,'blocks_3_options_theme','#ffffff'),(180266,40682,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(180267,40682,'blocks_3_options',''),(180268,40682,'_blocks_3_options','field_623b03edb6e65'),(180269,40682,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(180270,40682,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(180271,40682,'blocks_3_actions','1'),(180272,40682,'_blocks_3_actions','field_623b03edb6e6e'),(180273,40682,'blocks_4_acfe_flexible_toggle',''),(180274,40682,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(180275,40682,'blocks_4_acfe_flexible_layout_title','Template'),(180276,40682,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(180277,40682,'blocks_4_template','39401'),(180278,40682,'_blocks_4_template','field_617bdd570fe01'),(180279,40682,'blocks_5_acfe_flexible_toggle',''),(180280,40682,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(180281,40682,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(180282,40682,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(180283,40682,'blocks_5_options_theme','#ffffff'),(180284,40682,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(180285,40682,'blocks_5_options_state','0'),(180286,40682,'_blocks_5_options_state','field_6239fcb7508c5'),(180287,40682,'blocks_5_options',''),(180288,40682,'_blocks_5_options','field_6177e2991ac44'),(180289,40682,'blocks_5_content_title',''),(180290,40682,'_blocks_5_content_title','field_64d237e8bb1e2'),(180291,40682,'blocks_5_content_heading','FAQ\'s'),(180292,40682,'_blocks_5_content_heading','field_64d237e8bb1e3'),(180293,40682,'blocks_5_content_text',''),(180294,40682,'_blocks_5_content_text','field_64d237e8bb1e4'),(180295,40682,'blocks_5_content_actions',''),(180296,40682,'_blocks_5_content_actions','field_64d237e8bb1e5'),(180297,40682,'blocks_5_content_align','left'),(180298,40682,'_blocks_5_content_align','field_64d2443e6b6aa'),(180299,40682,'blocks_5_content',''),(180300,40682,'_blocks_5_content','field_64d237e8bb1e1'),(180301,40682,'blocks_5_accordion_content','custom'),(180302,40682,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(180303,40682,'blocks_5_accordion_items',''),(180304,40682,'_blocks_5_accordion_items','field_6177e2991ac4c'),(180305,40682,'blocks_5_actions',''),(180306,40682,'_blocks_5_actions','field_61a746a817f7a'),(180307,40682,'blocks_6_acfe_flexible_toggle',''),(180308,40682,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(180309,40682,'blocks_6_acfe_flexible_layout_title','Text Block'),(180310,40682,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(180311,40682,'blocks_6_options_theme','#ffffff'),(180312,40682,'_blocks_6_options_theme','field_6176830e2ad17'),(180313,40682,'blocks_6_options',''),(180314,40682,'_blocks_6_options','field_6176830e2ad16'),(180315,40682,'blocks_6_text_block_heading','Other Courses'),(180316,40682,'_blocks_6_text_block_heading','field_617669d413097'),(180317,40682,'blocks_6_text_block_content','Discover our range of frequently purchased courses.'),(180318,40682,'_blocks_6_text_block_content','field_617669ec13098'),(180319,40682,'blocks_7_acfe_flexible_toggle',''),(180320,40682,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(180321,40682,'blocks_7_acfe_flexible_layout_title','Cards'),(180322,40682,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(180323,40682,'blocks_7_options_theme','#ffffff'),(180324,40682,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(180325,40682,'blocks_7_options_format','carousel'),(180326,40682,'_blocks_7_options_format','field_617a7b15245b5'),(180327,40682,'blocks_7_options_style','default'),(180328,40682,'_blocks_7_options_style','field_6278ffb63484a'),(180329,40682,'blocks_7_options_cards_current_listing','0'),(180330,40682,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(180331,40682,'blocks_7_options_cards_content','term'),(180332,40682,'_blocks_7_options_cards_content','field_617aba6122688'),(180333,40682,'blocks_7_options_cards_term','409'),(180334,40682,'_blocks_7_options_cards_term','field_6193f7c180895'),(180335,40682,'blocks_7_options_cards_posts_per_page',''),(180336,40682,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(180337,40682,'blocks_7_options',''),(180338,40682,'_blocks_7_options','field_617a7b15245b3'),(180339,40682,'course_label_label_theme','#0d1f73'),(180340,40682,'_course_label_label_theme','field_61e17bb8f71fb'),(180341,40682,'course_key_info_0_text','CPD'),(180342,40682,'_course_key_info_0_text','field_617ac6c38e5e3'),(180343,40682,'course_key_info_1_text','Webinar'),(180344,40682,'_course_key_info_1_text','field_617ac6c38e5e3'),(180345,39278,'_wp_old_date','2024-09-17'),(180346,39348,'_wp_old_date','2024-09-17'),(180347,39486,'_wp_old_date','2024-09-17'),(180348,39485,'_wp_old_date','2024-09-17'),(180349,39487,'_wp_old_date','2024-09-17'),(180350,39279,'_wp_old_date','2024-09-17'),(180351,39325,'_wp_old_date','2024-09-17'),(180352,39324,'_wp_old_date','2024-09-17'),(180353,39323,'_wp_old_date','2024-09-17'),(180354,39322,'_wp_old_date','2024-09-17'),(180355,39321,'_wp_old_date','2024-09-17'),(180356,39320,'_wp_old_date','2024-09-17'),(180357,39319,'_wp_old_date','2024-09-17'),(180358,39280,'_wp_old_date','2024-09-17'),(180359,39522,'_wp_old_date','2024-09-17'),(180360,39281,'_wp_old_date','2024-09-17'),(180361,39344,'_wp_old_date','2024-09-17'),(180362,39318,'_wp_old_date','2024-09-17'),(180410,40683,'hide_hero','0'),(180411,40683,'_hide_hero','field_66a2380fcda39'),(180412,40683,'fft_hide_from_listings','0'),(180413,40683,'_fft_hide_from_listings','field_61f1320446ab2'),(180414,40683,'fft_page_format','default'),(180415,40683,'_fft_page_format','field_61ae213f1f218'),(180416,40683,'fft_hide_nav','0'),(180417,40683,'_fft_hide_nav','field_635bd5e43527c'),(180418,40683,'fft_hide_header_call_to_action','0'),(180419,40683,'_fft_hide_header_call_to_action','field_635bd6723527d'),(180420,40683,'fft_page_sitemap','0'),(180421,40683,'_fft_page_sitemap','field_61af9b34e8181'),(180422,40683,'blocks_0_acfe_flexible_toggle',''),(180423,40683,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(180424,40683,'blocks_0_acfe_flexible_layout_title','Text Block'),(180425,40683,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(180426,40683,'blocks_0_options_theme','#ffffff'),(180427,40683,'_blocks_0_options_theme','field_6176830e2ad17'),(180428,40683,'blocks_0_options',''),(180429,40683,'_blocks_0_options','field_6176830e2ad16'),(180430,40683,'blocks_0_text_block_heading','Get in Touch'),(180431,40683,'_blocks_0_text_block_heading','field_617669d413097'),(180432,40683,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(180433,40683,'_blocks_0_text_block_content','field_617669ec13098'),(180434,40683,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:4:\"form\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";}'),(180435,40683,'_blocks','field_6176696113096'),(180436,40683,'hero_title','Contact us'),(180437,40683,'_hero_title','field_617571fe285e8'),(180438,40683,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(180439,40683,'_hero_text','field_6175723c285e9'),(180440,40683,'hero_actions',''),(180441,40683,'_hero_actions','field_61757270285ea'),(180442,40683,'hero_style','default'),(180443,40683,'_hero_style','field_62051d9dc5324'),(180444,40683,'hero_icon','lines'),(180445,40683,'_hero_icon','field_61a6182199d03'),(180446,40683,'_thumbnail_id','40339'),(180447,40683,'__thumbnail_id','field_617570855ddaf'),(180448,40683,'hero_image_pos_x','right'),(180449,40683,'_hero_image_pos_x','field_62ec3d05390bb'),(180450,40683,'hero_image_pos_y','top'),(180451,40683,'_hero_image_pos_y','field_62ec3d05390bc'),(180452,40683,'hero_image_pos',''),(180453,40683,'_hero_image_pos','field_62ec3d05390ba'),(180454,40683,'blocks_2_acfe_flexible_toggle',''),(180455,40683,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(180456,40683,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(180457,40683,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(180458,40683,'blocks_2_options_theme','#ffffff'),(180459,40683,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(180460,40683,'blocks_2_options_reverse','0'),(180461,40683,'_blocks_2_options_reverse','field_61768049bb8ac'),(180462,40683,'blocks_2_options',''),(180463,40683,'_blocks_2_options','field_617682517c334'),(180464,40683,'blocks_2_split_5050_image','40342'),(180465,40683,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(180466,40683,'blocks_2_split_5050_video',''),(180467,40683,'_blocks_2_split_5050_video','field_6239f3160848a'),(180468,40683,'blocks_2_split_5050_content_title',''),(180469,40683,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(180470,40683,'blocks_2_split_5050_content_heading','Let\'s connect!'),(180471,40683,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(180472,40683,'blocks_2_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(180473,40683,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(180474,40683,'blocks_2_split_5050_content_actions',''),(180475,40683,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(180476,40683,'blocks_2_split_5050_content',''),(180477,40683,'_blocks_2_split_5050_content','field_61767afceb8ba'),(180478,40683,'blocks_1_acfe_flexible_toggle',''),(180479,40683,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(180480,40683,'blocks_1_acfe_flexible_layout_title','Form'),(180481,40683,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(180482,40683,'blocks_1_row_content_format','standard'),(180483,40683,'_blocks_1_row_content_format','field_6481ead962881'),(180484,40683,'blocks_1_row_content_title',''),(180485,40683,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(180486,40683,'blocks_1_row_content_heading','Let\'s get started'),(180487,40683,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(180488,40683,'blocks_1_row_content_text','<span data-contrast=\"none\">Please fill in your details for no obligation support and advice. One of our in-house Career Advisors will give you a call to discuss your enquiry – don\'t worry if you are not available, we can call back at a convenient time for you.  </span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\"> </span>\r\n\r\n<strong>By completing the form you will also gain access to our Information and Price Guide.</strong>'),(180489,40683,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(180490,40683,'blocks_1_row_content_actions',''),(180491,40683,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(180492,40683,'blocks_1_row_content',''),(180493,40683,'_blocks_1_row_content','field_61a0f5f5b3db0'),(180494,40683,'blocks_1_row_form','40394'),(180495,40683,'_blocks_1_row_form','field_61a4ff2c0b08e'),(180496,40683,'blocks_1_row_form_button_label',''),(180497,40683,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(180498,40683,'blocks_3_acfe_flexible_toggle',''),(180499,40683,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(180500,40683,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(180501,40683,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(180502,40683,'blocks_3_options_theme','#ffffff'),(180503,40683,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(180504,40683,'blocks_3_options_reverse','1'),(180505,40683,'_blocks_3_options_reverse','field_61768049bb8ac'),(180506,40683,'blocks_3_options',''),(180507,40683,'_blocks_3_options','field_617682517c334'),(180508,40683,'blocks_3_split_5050_image','40349'),(180509,40683,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(180510,40683,'blocks_3_split_5050_video',''),(180511,40683,'_blocks_3_split_5050_video','field_6239f3160848a'),(180512,40683,'blocks_3_split_5050_content_title',''),(180513,40683,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(180514,40683,'blocks_3_split_5050_content_heading','Find a Biomechanics Coach in your area'),(180515,40683,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(180516,40683,'blocks_3_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(180517,40683,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(180518,40683,'blocks_3_split_5050_content_actions',''),(180519,40683,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(180520,40683,'blocks_3_split_5050_content',''),(180521,40683,'_blocks_3_split_5050_content','field_61767afceb8ba'),(180525,40282,'course_label_label_theme','#0d1f73'),(180526,40282,'_course_label_label_theme','field_61e17bb8f71fb'),(180527,40282,'course_key_info_0_text','Online Learning'),(180528,40282,'_course_key_info_0_text','field_617ac6c38e5e3'),(180529,40282,'course_key_info_1_text','Webinar'),(180530,40282,'_course_key_info_1_text','field_617ac6c38e5e3'),(180531,40282,'course_key_info_2_text','CPD'),(180532,40282,'_course_key_info_2_text','field_617ac6c38e5e3'),(180533,40282,'_yoast_wpseo_focuskw','foot posture index'),(180534,40282,'_yoast_wpseo_metadesc','Learn the Foot Posture Index in this webinar, a simple, cost-effective tool for assessing foot biomechanics.'),(180535,40282,'_yoast_wpseo_linkdex','47'),(180536,40686,'hide_hero','0'),(180537,40686,'_hide_hero','field_66a2380fcda39'),(180538,40686,'hero_title','The Foot Posture Index Webinar'),(180539,40686,'_hero_title','field_617571fe285e8'),(180540,40686,'hero_text',''),(180541,40686,'_hero_text','field_6175723c285e9'),(180542,40686,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(180543,40686,'_hero_actions_0_button','field_61757281285eb'),(180544,40686,'hero_actions','1'),(180545,40686,'_hero_actions','field_61757270285ea'),(180546,40686,'hero_style','default'),(180547,40686,'_hero_style','field_62051d9dc5324'),(180548,40686,'_thumbnail_id','40670'),(180549,40686,'__thumbnail_id','field_617570855ddaf'),(180550,40686,'hero_image_pos_x','right'),(180551,40686,'_hero_image_pos_x','field_62ec3d05390bb'),(180552,40686,'hero_image_pos_y','top'),(180553,40686,'_hero_image_pos_y','field_62ec3d05390bc'),(180554,40686,'hero_image_pos',''),(180555,40686,'_hero_image_pos','field_62ec3d05390ba'),(180556,40686,'fft_hide_from_listings','0'),(180557,40686,'_fft_hide_from_listings','field_61f1320446ab2'),(180558,40686,'fft_page_format','default'),(180559,40686,'_fft_page_format','field_61ae213f1f218'),(180560,40686,'fft_hide_nav','0'),(180561,40686,'_fft_hide_nav','field_635bd5e43527c'),(180562,40686,'fft_hide_header_call_to_action','0'),(180563,40686,'_fft_hide_header_call_to_action','field_635bd6723527d'),(180564,40686,'fft_page_sitemap','0'),(180565,40686,'_fft_page_sitemap','field_61af9b34e8181'),(180566,40686,'blocks_0_acfe_flexible_toggle',''),(180567,40686,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(180568,40686,'blocks_0_acfe_flexible_layout_title','Template'),(180569,40686,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(180570,40686,'blocks_0_template','39087'),(180571,40686,'_blocks_0_template','field_617bdd570fe01'),(180572,40686,'blocks_1_acfe_flexible_toggle',''),(180573,40686,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(180574,40686,'blocks_1_acfe_flexible_layout_title','Text Block'),(180575,40686,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(180576,40686,'blocks_1_options_theme','#ffffff'),(180577,40686,'_blocks_1_options_theme','field_6176830e2ad17'),(180578,40686,'blocks_1_options',''),(180579,40686,'_blocks_1_options','field_6176830e2ad16'),(180580,40686,'blocks_1_text_block_heading','Overview'),(180581,40686,'_blocks_1_text_block_heading','field_617669d413097'),(180582,40686,'blocks_1_text_block_content','Explore the world of evidence-based foot and ankle biomechanics assessment with our comprehensive webinar, \"The Foot Posture Index.\" This one-hour recorded session, coupled with a downloadable slide PDF, equips personal trainers, sports coaches and therapists, and Pilates instructors with a cost-effective evaluation tool to enhance their understanding of foot biomechanics.\r\n\r\nIdeal for those seeking simplicity without the need for expensive equipment, this online CPD delves into the Foot Posture Index, covering essential tests such as Talar head position, Supra and infra lateral malleolus curve, Calcaneal frontal plane position, Prominence of the talonavicular joint, Congruence of the medial longitudinal arch, and Abduction/adduction of the forefoot on the rearfoot (Dr. Anthony Redmond from the University of Leeds (2005, 2008, 2010)).\r\n\r\nJoin us in exploring not only the assessment methods but also effective exercise interventions to enhance foot and lower leg biomechanics. Elevate your practice with evidence-based insights and practical tools that you can out to practice with your clients straight away.'),(180583,40686,'_blocks_1_text_block_content','field_617669ec13098'),(180584,40686,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:8:\"template\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"accordions\";}'),(180585,40686,'_blocks','field_6176696113096'),(180586,40686,'course_label_text','The Foot Posture Index'),(180587,40686,'_course_label_text','field_61e17babf71fa'),(180588,40686,'course_label',''),(180589,40686,'_course_label','field_61e12f92749a7'),(180590,40686,'course_description','Explore the world of evidence-based foot and ankle biomechanics assessment with our comprehensive webinar, \"The Foot Posture Index.\"'),(180591,40686,'_course_description','field_617ac5788e5e1'),(180592,40686,'course_key_info','3'),(180593,40686,'_course_key_info','field_617ac6ad8e5e2'),(180594,40686,'course_included','Ideal for those seeking simplicity without the need for expensive equipment, this online CPD delves into the Foot Posture Index, covering essential tests such as Talar head position, Supra and infra lateral malleolus curve, Calcaneal frontal plane position, Prominence of the talonavicular joint, Congruence of the medial longitudinal arch, and Abduction/adduction of the forefoot on the rearfoot'),(180595,40686,'_course_included','field_617ac6f08e5e4'),(180596,40686,'blocks_2_acfe_flexible_toggle',''),(180597,40686,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(180598,40686,'blocks_2_acfe_flexible_layout_title','Template'),(180599,40686,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(180600,40686,'blocks_2_template','39401'),(180601,40686,'_blocks_2_template','field_617bdd570fe01'),(180602,40686,'blocks_3_acfe_flexible_toggle',''),(180603,40686,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(180604,40686,'blocks_3_acfe_flexible_layout_title','Text Block'),(180605,40686,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(180606,40686,'blocks_3_options_theme','#ffffff'),(180607,40686,'_blocks_3_options_theme','field_6176830e2ad17'),(180608,40686,'blocks_3_options',''),(180609,40686,'_blocks_3_options','field_6176830e2ad16'),(180610,40686,'blocks_3_text_block_heading','Other Courses'),(180611,40686,'_blocks_3_text_block_heading','field_617669d413097'),(180612,40686,'blocks_3_text_block_content','Discover our range of frequently purchased courses'),(180613,40686,'_blocks_3_text_block_content','field_617669ec13098'),(180614,40686,'blocks_4_acfe_flexible_toggle',''),(180615,40686,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(180616,40686,'blocks_4_acfe_flexible_layout_title','Cards'),(180617,40686,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(180618,40686,'blocks_4_options_theme','#ffffff'),(180619,40686,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(180620,40686,'blocks_4_options_format','carousel'),(180621,40686,'_blocks_4_options_format','field_617a7b15245b5'),(180622,40686,'blocks_4_options_style','default'),(180623,40686,'_blocks_4_options_style','field_6278ffb63484a'),(180624,40686,'blocks_4_options_cards_current_listing','0'),(180625,40686,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(180626,40686,'blocks_4_options_cards_content','term'),(180627,40686,'_blocks_4_options_cards_content','field_617aba6122688'),(180628,40686,'blocks_4_options_cards_term','403'),(180629,40686,'_blocks_4_options_cards_term','field_6193f7c180895'),(180630,40686,'blocks_4_options_cards_posts_per_page','6'),(180631,40686,'_blocks_4_options_cards_posts_per_page','field_61a7565b1a0f2'),(180632,40686,'blocks_4_options',''),(180633,40686,'_blocks_4_options','field_617a7b15245b3'),(180634,40686,'blocks_5_acfe_flexible_toggle',''),(180635,40686,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(180636,40686,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(180637,40686,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(180638,40686,'blocks_5_options_theme','#ffffff'),(180639,40686,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(180640,40686,'blocks_5_options_state','0'),(180641,40686,'_blocks_5_options_state','field_6239fcb7508c5'),(180642,40686,'blocks_5_options',''),(180643,40686,'_blocks_5_options','field_6177e2991ac44'),(180644,40686,'blocks_5_content_title',''),(180645,40686,'_blocks_5_content_title','field_64d237e8bb1e2'),(180646,40686,'blocks_5_content_heading','FAQ\'s'),(180647,40686,'_blocks_5_content_heading','field_64d237e8bb1e3'),(180648,40686,'blocks_5_content_text',''),(180649,40686,'_blocks_5_content_text','field_64d237e8bb1e4'),(180650,40686,'blocks_5_content_actions',''),(180651,40686,'_blocks_5_content_actions','field_64d237e8bb1e5'),(180652,40686,'blocks_5_content_align','left'),(180653,40686,'_blocks_5_content_align','field_64d2443e6b6aa'),(180654,40686,'blocks_5_content',''),(180655,40686,'_blocks_5_content','field_64d237e8bb1e1'),(180656,40686,'blocks_5_accordion_content','custom'),(180657,40686,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(180658,40686,'blocks_5_accordion_items',''),(180659,40686,'_blocks_5_accordion_items','field_6177e2991ac4c'),(180660,40686,'blocks_5_actions',''),(180661,40686,'_blocks_5_actions','field_61a746a817f7a'),(180662,40686,'course_label_label_theme','#0d1f73'),(180663,40686,'_course_label_label_theme','field_61e17bb8f71fb'),(180664,40686,'course_key_info_0_text','CPD'),(180665,40686,'_course_key_info_0_text','field_617ac6c38e5e3'),(180666,40686,'course_key_info_1_text','Webinar'),(180667,40686,'_course_key_info_1_text','field_617ac6c38e5e3'),(180668,40686,'course_key_info_2_text','Online Learning'),(180669,40686,'_course_key_info_2_text','field_617ac6c38e5e3'),(180670,40273,'_yoast_wpseo_focuskw','deadlift analysis'),(180671,40273,'_yoast_wpseo_metadesc','Enhance your deadlift analysis skills with this webinar, designed for trainers and therapists. No equipment needed.'),(180672,40273,'_yoast_wpseo_linkdex','47'),(180673,40274,'course_label_label_theme','#0d1f73'),(180674,40274,'_course_label_label_theme','field_61e17bb8f71fb'),(180675,40274,'course_key_info_0_text','Online Learning'),(180676,40274,'_course_key_info_0_text','field_617ac6c38e5e3'),(180677,40274,'course_key_info_1_text','Webinar'),(180678,40274,'_course_key_info_1_text','field_617ac6c38e5e3'),(180679,40274,'course_key_info_2_text','CPD'),(180680,40274,'_course_key_info_2_text','field_617ac6c38e5e3'),(180681,40274,'_yoast_wpseo_focuskw','Foot Biomechanics'),(180682,40274,'_yoast_wpseo_metadesc','Simplify foot biomechanics with this hands-on webinar, giving you practical tools to enhance client movement training.'),(180683,40274,'_yoast_wpseo_linkdex','47'),(180684,40687,'hide_hero','0'),(180685,40687,'_hide_hero','field_66a2380fcda39'),(180686,40687,'hero_title','Foot Biomechanics Made Simple: Recorded Webinar'),(180687,40687,'_hero_title','field_617571fe285e8'),(180688,40687,'hero_text',''),(180689,40687,'_hero_text','field_6175723c285e9'),(180690,40687,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(180691,40687,'_hero_actions_0_button','field_61757281285eb'),(180692,40687,'hero_actions','1'),(180693,40687,'_hero_actions','field_61757270285ea'),(180694,40687,'hero_style','default'),(180695,40687,'_hero_style','field_62051d9dc5324'),(180696,40687,'_thumbnail_id','40667'),(180697,40687,'__thumbnail_id','field_617570855ddaf'),(180698,40687,'hero_image_pos_x','right'),(180699,40687,'_hero_image_pos_x','field_62ec3d05390bb'),(180700,40687,'hero_image_pos_y','top'),(180701,40687,'_hero_image_pos_y','field_62ec3d05390bc'),(180702,40687,'hero_image_pos',''),(180703,40687,'_hero_image_pos','field_62ec3d05390ba'),(180704,40687,'fft_hide_from_listings','0'),(180705,40687,'_fft_hide_from_listings','field_61f1320446ab2'),(180706,40687,'fft_page_format','default'),(180707,40687,'_fft_page_format','field_61ae213f1f218'),(180708,40687,'fft_hide_nav','0'),(180709,40687,'_fft_hide_nav','field_635bd5e43527c'),(180710,40687,'fft_hide_header_call_to_action','0'),(180711,40687,'_fft_hide_header_call_to_action','field_635bd6723527d'),(180712,40687,'fft_page_sitemap','0'),(180713,40687,'_fft_page_sitemap','field_61af9b34e8181'),(180714,40687,'blocks_0_acfe_flexible_toggle',''),(180715,40687,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(180716,40687,'blocks_0_acfe_flexible_layout_title','Template'),(180717,40687,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(180718,40687,'blocks_0_template','39087'),(180719,40687,'_blocks_0_template','field_617bdd570fe01'),(180720,40687,'blocks_1_acfe_flexible_toggle',''),(180721,40687,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(180722,40687,'blocks_1_acfe_flexible_layout_title','Text Block'),(180723,40687,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(180724,40687,'blocks_1_options_theme','#ffffff'),(180725,40687,'_blocks_1_options_theme','field_6176830e2ad17'),(180726,40687,'blocks_1_options',''),(180727,40687,'_blocks_1_options','field_6176830e2ad16'),(180728,40687,'blocks_1_text_block_heading','Overview'),(180729,40687,'_blocks_1_text_block_heading','field_617669d413097'),(180730,40687,'blocks_1_text_block_content','Grasping the basics of foot biomechanics is fundamental for anyone involved in prescribing movement training, especially considering that nearly every client relies on their feet for various activities. Our goal is to simplify the complexities of foot biomechanics, equipping you with practical knowledge to better assist your clients. This webinar is not just about theory; it\'s a hands-on, insightful experience that will elevate your understanding and approach to foot health.'),(180731,40687,'_blocks_1_text_block_content','field_617669ec13098'),(180732,40687,'blocks_2_acfe_flexible_toggle',''),(180733,40687,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(180734,40687,'blocks_2_acfe_flexible_layout_title','Button(s)'),(180735,40687,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(180736,40687,'blocks_2_options_theme','#ffffff'),(180737,40687,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(180738,40687,'blocks_2_options',''),(180739,40687,'_blocks_2_options','field_623b03edb6e65'),(180740,40687,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(180741,40687,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(180742,40687,'blocks_2_actions','1'),(180743,40687,'_blocks_2_actions','field_623b03edb6e6e'),(180744,40687,'blocks_3_acfe_flexible_toggle',''),(180745,40687,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(180746,40687,'blocks_3_acfe_flexible_layout_title','Timeline'),(180747,40687,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(180748,40687,'blocks_3_options_theme','#ffffff'),(180749,40687,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(180750,40687,'blocks_3_options',''),(180751,40687,'_blocks_3_options','field_6177de53d1195'),(180752,40687,'blocks_3_timeline_content_title','What You\'ll Explore'),(180753,40687,'_blocks_3_timeline_content_title','field_6177de53d1198'),(180754,40687,'blocks_3_timeline_content_heading','Why Focus on Foot Biomechanics? '),(180755,40687,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(180756,40687,'blocks_3_timeline_content_text','Our feet bear the weight of our movements - from walking and running to jumping and turning. With a multitude of joints, the foot is designed for simultaneous action in various planes, making its function both fascinating and potentially problematic. Understanding the forces at play is crucial for effective training and injury prevention.\r\n\r\nRegister now to gain actionable insights and embark on a journey to unravel the subtleties of Foot Biomechanics.'),(180757,40687,'_blocks_3_timeline_content_text','field_6177de53d119a'),(180758,40687,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(180759,40687,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(180760,40687,'blocks_3_timeline_content_actions','1'),(180761,40687,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(180762,40687,'blocks_3_timeline_content',''),(180763,40687,'_blocks_3_timeline_content','field_6177de53d1197'),(180764,40687,'blocks_3_timeline_items_0_title','Functions of Pronation and Supination '),(180765,40687,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(180766,40687,'blocks_3_timeline_items_0_text','Learn about the pivotal roles of pronation and supination in foot biomechanics. Understand how these movements contribute to the overall gait cycle. '),(180767,40687,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(180768,40687,'blocks_3_timeline_items_1_title','Timing and Occurrence in the Gait Cycle '),(180769,40687,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(180770,40687,'blocks_3_timeline_items_1_text','Explore when and why pronation and supination naturally occur during the gait cycle. Gain insights into the intricacies of these movements in real-life scenarios. '),(180771,40687,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(180772,40687,'blocks_3_timeline_items_2_title','Practical Tests for Understanding Client Function '),(180773,40687,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(180774,40687,'blocks_3_timeline_items_2_text','Witness the demonstration of two practical tests designed to enhance your understanding of your client\'s foot function. These tests provide actionable insights for tailoring your approach to each individual.'),(180775,40687,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(180776,40687,'blocks_3_timeline_items_3_title','Biomechanical Intervention Strategies '),(180777,40687,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(180778,40687,'blocks_3_timeline_items_3_text','Establish a clear strategy for biomechanical interventions focused on the foot. Learn how to address potential issues and optimize foot function for better overall movement. '),(180779,40687,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(180780,40687,'blocks_3_timeline_items','4'),(180781,40687,'_blocks_3_timeline_items','field_6177de53d119d'),(180782,40687,'blocks_4_acfe_flexible_toggle',''),(180783,40687,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(180784,40687,'blocks_4_acfe_flexible_layout_title','Text Block'),(180785,40687,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(180786,40687,'blocks_4_options_theme','#f5f5f5'),(180787,40687,'_blocks_4_options_theme','field_6176830e2ad17'),(180788,40687,'blocks_4_options',''),(180789,40687,'_blocks_4_options','field_6176830e2ad16'),(180790,40687,'blocks_4_text_block_heading','Other Courses'),(180791,40687,'_blocks_4_text_block_heading','field_617669d413097'),(180792,40687,'blocks_4_text_block_content','Discover our range of courses that are frequently purchased'),(180793,40687,'_blocks_4_text_block_content','field_617669ec13098'),(180794,40687,'blocks_5_acfe_flexible_toggle',''),(180795,40687,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(180796,40687,'blocks_5_acfe_flexible_layout_title','Cards'),(180797,40687,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(180798,40687,'blocks_5_options_theme','#ffffff'),(180799,40687,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(180800,40687,'blocks_5_options_format','carousel'),(180801,40687,'_blocks_5_options_format','field_617a7b15245b5'),(180802,40687,'blocks_5_options_style','default'),(180803,40687,'_blocks_5_options_style','field_6278ffb63484a'),(180804,40687,'blocks_5_options_cards_current_listing','0'),(180805,40687,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(180806,40687,'blocks_5_options_cards_content','term'),(180807,40687,'_blocks_5_options_cards_content','field_617aba6122688'),(180808,40687,'blocks_5_options_cards_term','409'),(180809,40687,'_blocks_5_options_cards_term','field_6193f7c180895'),(180810,40687,'blocks_5_options_cards_posts_per_page',''),(180811,40687,'_blocks_5_options_cards_posts_per_page','field_61a7565b1a0f2'),(180812,40687,'blocks_5_options',''),(180813,40687,'_blocks_5_options','field_617a7b15245b3'),(180814,40687,'blocks_6_acfe_flexible_toggle',''),(180815,40687,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(180816,40687,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(180817,40687,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(180818,40687,'blocks_6_options_theme','#ffffff'),(180819,40687,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(180820,40687,'blocks_6_options_state','0'),(180821,40687,'_blocks_6_options_state','field_6239fcb7508c5'),(180822,40687,'blocks_6_options',''),(180823,40687,'_blocks_6_options','field_6177e2991ac44'),(180824,40687,'blocks_6_content_title',''),(180825,40687,'_blocks_6_content_title','field_64d237e8bb1e2'),(180826,40687,'blocks_6_content_heading','FAQ\'s'),(180827,40687,'_blocks_6_content_heading','field_64d237e8bb1e3'),(180828,40687,'blocks_6_content_text',''),(180829,40687,'_blocks_6_content_text','field_64d237e8bb1e4'),(180830,40687,'blocks_6_content_actions',''),(180831,40687,'_blocks_6_content_actions','field_64d237e8bb1e5'),(180832,40687,'blocks_6_content_align','left'),(180833,40687,'_blocks_6_content_align','field_64d2443e6b6aa'),(180834,40687,'blocks_6_content',''),(180835,40687,'_blocks_6_content','field_64d237e8bb1e1'),(180836,40687,'blocks_6_accordion_content','custom'),(180837,40687,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(180838,40687,'blocks_6_accordion_items',''),(180839,40687,'_blocks_6_accordion_items','field_6177e2991ac4c'),(180840,40687,'blocks_6_actions',''),(180841,40687,'_blocks_6_actions','field_61a746a817f7a'),(180842,40687,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:10:\"accordions\";}'),(180843,40687,'_blocks','field_6176696113096'),(180844,40687,'course_label_text','Foot Biomechanics Made Simple Webinar'),(180845,40687,'_course_label_text','field_61e17babf71fa'),(180846,40687,'course_label',''),(180847,40687,'_course_label','field_61e12f92749a7'),(180848,40687,'course_description','Grasping the basics of foot biomechanics is fundamental for anyone involved in prescribing movement training, especially considering that nearly every client relies on their feet for various activities.'),(180849,40687,'_course_description','field_617ac5788e5e1'),(180850,40687,'course_key_info','3'),(180851,40687,'_course_key_info','field_617ac6ad8e5e2'),(180852,40687,'course_included','Functions of Pronation and Supination \r\n\r\nTiming and Occurrence in the Gait Cycle \r\n\r\nPractical Tests for Understanding Client Function \r\n\r\nBiomechanical Intervention Strategies '),(180853,40687,'_course_included','field_617ac6f08e5e4'),(180854,40687,'course_label_label_theme','#0d1f73'),(180855,40687,'_course_label_label_theme','field_61e17bb8f71fb'),(180856,40687,'course_key_info_0_text','Webinar'),(180857,40687,'_course_key_info_0_text','field_617ac6c38e5e3'),(180858,40687,'course_key_info_1_text','CPD'),(180859,40687,'_course_key_info_1_text','field_617ac6c38e5e3'),(180860,40687,'course_key_info_2_text','Online Learning'),(180861,40687,'_course_key_info_2_text','field_617ac6c38e5e3'),(180862,40283,'course_label_label_theme','#0d1f73'),(180863,40283,'_course_label_label_theme','field_61e17bb8f71fb'),(180864,40283,'course_key_info_0_text','Online Learning'),(180865,40283,'_course_key_info_0_text','field_617ac6c38e5e3'),(180866,40283,'course_key_info_1_text','Webinar'),(180867,40283,'_course_key_info_1_text','field_617ac6c38e5e3'),(180868,40283,'course_key_info_2_text','CPD'),(180869,40283,'_course_key_info_2_text','field_617ac6c38e5e3'),(180870,40283,'_yoast_wpseo_focuskw','Understanding Nerves'),(180871,40283,'_yoast_wpseo_metadesc','Join this live webinar for non-clinicians to assess and improve movement, exploring nerve health and hands-on techniques.'),(180872,40283,'_yoast_wpseo_linkdex','42'),(180873,40688,'hide_hero','0'),(180874,40688,'_hide_hero','field_66a2380fcda39'),(180875,40688,'hero_title','Understanding Nerves – Recorded Webinar'),(180876,40688,'_hero_title','field_617571fe285e8'),(180877,40688,'hero_text',''),(180878,40688,'_hero_text','field_6175723c285e9'),(180879,40688,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(180880,40688,'_hero_actions_0_button','field_61757281285eb'),(180881,40688,'hero_actions','1'),(180882,40688,'_hero_actions','field_61757270285ea'),(180883,40688,'hero_style','default'),(180884,40688,'_hero_style','field_62051d9dc5324'),(180885,40688,'_thumbnail_id','40665'),(180886,40688,'__thumbnail_id','field_617570855ddaf'),(180887,40688,'hero_image_pos_x','right'),(180888,40688,'_hero_image_pos_x','field_62ec3d05390bb'),(180889,40688,'hero_image_pos_y','top'),(180890,40688,'_hero_image_pos_y','field_62ec3d05390bc'),(180891,40688,'hero_image_pos',''),(180892,40688,'_hero_image_pos','field_62ec3d05390ba'),(180893,40688,'fft_hide_from_listings','0'),(180894,40688,'_fft_hide_from_listings','field_61f1320446ab2'),(180895,40688,'fft_page_format','default'),(180896,40688,'_fft_page_format','field_61ae213f1f218'),(180897,40688,'fft_hide_nav','0'),(180898,40688,'_fft_hide_nav','field_635bd5e43527c'),(180899,40688,'fft_hide_header_call_to_action','0'),(180900,40688,'_fft_hide_header_call_to_action','field_635bd6723527d'),(180901,40688,'fft_page_sitemap','0'),(180902,40688,'_fft_page_sitemap','field_61af9b34e8181'),(180903,40688,'blocks_0_acfe_flexible_toggle',''),(180904,40688,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(180905,40688,'blocks_0_acfe_flexible_layout_title','Template'),(180906,40688,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(180907,40688,'blocks_0_template','39087'),(180908,40688,'_blocks_0_template','field_617bdd570fe01'),(180909,40688,'blocks_1_acfe_flexible_toggle',''),(180910,40688,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(180911,40688,'blocks_1_acfe_flexible_layout_title','Text Block'),(180912,40688,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(180913,40688,'blocks_1_options_theme','#ffffff'),(180914,40688,'_blocks_1_options_theme','field_6176830e2ad17'),(180915,40688,'blocks_1_options',''),(180916,40688,'_blocks_1_options','field_6176830e2ad16'),(180917,40688,'blocks_1_text_block_heading','Course Overview'),(180918,40688,'_blocks_1_text_block_heading','field_617669d413097'),(180919,40688,'blocks_1_text_block_content','This live webinar is for non-clinicians seeking solutions to modern ailments of their clients with a proactive approach to assessment &amp; improvement of movement.\r\n\r\nKey Objectives:\r\n<ul>\r\n 	<li>Delve into the integrated system</li>\r\n 	<li>Gain a comprehensive understanding of the 3 subsystems</li>\r\n 	<li>Explore the pivotal role of nerves and examine supporting evidence</li>\r\n 	<li>Engage in hands-on practice to assess the nerves</li>\r\n 	<li>Learn effective techniques to mobilize the nervous system, enhancing performance and reducing the risk of complications.</li>\r\n</ul>'),(180920,40688,'_blocks_1_text_block_content','field_617669ec13098'),(180921,40688,'blocks_2_acfe_flexible_toggle',''),(180922,40688,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(180923,40688,'blocks_2_acfe_flexible_layout_title','Button(s)'),(180924,40688,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(180925,40688,'blocks_2_options_theme','#ffffff'),(180926,40688,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(180927,40688,'blocks_2_options',''),(180928,40688,'_blocks_2_options','field_623b03edb6e65'),(180929,40688,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(180930,40688,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(180931,40688,'blocks_2_actions','1'),(180932,40688,'_blocks_2_actions','field_623b03edb6e6e'),(180933,40688,'blocks_3_acfe_flexible_toggle',''),(180934,40688,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(180935,40688,'blocks_3_acfe_flexible_layout_title','Text Block'),(180936,40688,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(180937,40688,'blocks_3_options_theme','#ffffff'),(180938,40688,'_blocks_3_options_theme','field_6176830e2ad17'),(180939,40688,'blocks_3_options',''),(180940,40688,'_blocks_3_options','field_6176830e2ad16'),(180941,40688,'blocks_3_text_block_heading','More Courses'),(180942,40688,'_blocks_3_text_block_heading','field_617669d413097'),(180943,40688,'blocks_3_text_block_content','Discover our range of courses that are frequently purchased'),(180944,40688,'_blocks_3_text_block_content','field_617669ec13098'),(180945,40688,'blocks_4_acfe_flexible_toggle',''),(180946,40688,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(180947,40688,'blocks_4_acfe_flexible_layout_title','Cards'),(180948,40688,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(180949,40688,'blocks_4_options_theme','#ffffff'),(180950,40688,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(180951,40688,'blocks_4_options_format','carousel'),(180952,40688,'_blocks_4_options_format','field_617a7b15245b5'),(180953,40688,'blocks_4_options_style','default'),(180954,40688,'_blocks_4_options_style','field_6278ffb63484a'),(180955,40688,'blocks_4_options_cards_current_listing','0'),(180956,40688,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(180957,40688,'blocks_4_options_cards_content','post_type'),(180958,40688,'_blocks_4_options_cards_content','field_617aba6122688'),(180959,40688,'blocks_4_options_cards_post_type','course'),(180960,40688,'_blocks_4_options_cards_post_type','field_6194cc744d38b'),(180961,40688,'blocks_4_options_cards_posts_per_page','6'),(180962,40688,'_blocks_4_options_cards_posts_per_page','field_61a7565b1a0f2'),(180963,40688,'blocks_4_options',''),(180964,40688,'_blocks_4_options','field_617a7b15245b3'),(180965,40688,'blocks_5_acfe_flexible_toggle',''),(180966,40688,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(180967,40688,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(180968,40688,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(180969,40688,'blocks_5_options_theme','#ffffff'),(180970,40688,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(180971,40688,'blocks_5_options_state','0'),(180972,40688,'_blocks_5_options_state','field_6239fcb7508c5'),(180973,40688,'blocks_5_options',''),(180974,40688,'_blocks_5_options','field_6177e2991ac44'),(180975,40688,'blocks_5_content_title',''),(180976,40688,'_blocks_5_content_title','field_64d237e8bb1e2'),(180977,40688,'blocks_5_content_heading','FAQ\'s'),(180978,40688,'_blocks_5_content_heading','field_64d237e8bb1e3'),(180979,40688,'blocks_5_content_text',''),(180980,40688,'_blocks_5_content_text','field_64d237e8bb1e4'),(180981,40688,'blocks_5_content_actions',''),(180982,40688,'_blocks_5_content_actions','field_64d237e8bb1e5'),(180983,40688,'blocks_5_content_align','left'),(180984,40688,'_blocks_5_content_align','field_64d2443e6b6aa'),(180985,40688,'blocks_5_content',''),(180986,40688,'_blocks_5_content','field_64d237e8bb1e1'),(180987,40688,'blocks_5_accordion_content','custom'),(180988,40688,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(180989,40688,'blocks_5_accordion_items',''),(180990,40688,'_blocks_5_accordion_items','field_6177e2991ac4c'),(180991,40688,'blocks_5_actions',''),(180992,40688,'_blocks_5_actions','field_61a746a817f7a'),(180993,40688,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"accordions\";}'),(180994,40688,'_blocks','field_6176696113096'),(180995,40688,'course_label_text','Understanding Nerves Webinar'),(180996,40688,'_course_label_text','field_61e17babf71fa'),(180997,40688,'course_label',''),(180998,40688,'_course_label','field_61e12f92749a7'),(180999,40688,'course_description','This live webinar is for non-clinicians seeking solutions to modern ailments of their clients with a proactive approach to assessment & improvement of movement.'),(181000,40688,'_course_description','field_617ac5788e5e1'),(181001,40688,'course_key_info','3'),(181002,40688,'_course_key_info','field_617ac6ad8e5e2'),(181003,40688,'course_included','Delve into the integrated system\r\n\r\nGain a comprehensive understanding of the 3 subsystems\r\n\r\nExplore the pivotal role of nerves and examine supporting evidence\r\n\r\nEngage in hands-on practice to assess the nerves\r\n\r\nLearn effective techniques to mobilize the nervous system, enhancing performance and reducing the risk of complications.'),(181004,40688,'_course_included','field_617ac6f08e5e4'),(181005,40688,'course_label_label_theme','#0d1f73'),(181006,40688,'_course_label_label_theme','field_61e17bb8f71fb'),(181007,40688,'course_key_info_0_text','Webinar'),(181008,40688,'_course_key_info_0_text','field_617ac6c38e5e3'),(181009,40688,'course_key_info_1_text','CPD'),(181010,40688,'_course_key_info_1_text','field_617ac6c38e5e3'),(181011,40688,'course_key_info_2_text','Online Learning'),(181012,40688,'_course_key_info_2_text','field_617ac6c38e5e3'),(181013,40285,'course_label_label_theme','#0d1f73'),(181014,40285,'_course_label_label_theme','field_61e17bb8f71fb'),(181015,40285,'course_key_info_0_text','Online Learning'),(181016,40285,'_course_key_info_0_text','field_617ac6c38e5e3'),(181017,40285,'course_key_info_1_text','CPD'),(181018,40285,'_course_key_info_1_text','field_617ac6c38e5e3'),(181019,40285,'course_key_info_2_text','Webinar'),(181020,40285,'_course_key_info_2_text','field_617ac6c38e5e3'),(181021,40285,'_yoast_wpseo_focuskw','Functional Training'),(181022,40285,'_yoast_wpseo_metadesc','Explore the true meaning of functional training in this webinar with Biomechanics Coach Rachel Thomson. Redefine your approach!'),(181023,40285,'_yoast_wpseo_linkdex','42'),(181024,40689,'hide_hero','0'),(181025,40689,'_hide_hero','field_66a2380fcda39'),(181026,40689,'hero_title','What the hell is ‘functional training’ anyway? Recorded Webinar'),(181027,40689,'_hero_title','field_617571fe285e8'),(181028,40689,'hero_text',''),(181029,40689,'_hero_text','field_6175723c285e9'),(181030,40689,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(181031,40689,'_hero_actions_0_button','field_61757281285eb'),(181032,40689,'hero_actions','1'),(181033,40689,'_hero_actions','field_61757270285ea'),(181034,40689,'hero_style','default'),(181035,40689,'_hero_style','field_62051d9dc5324'),(181036,40689,'_thumbnail_id','40659'),(181037,40689,'__thumbnail_id','field_617570855ddaf'),(181038,40689,'hero_image_pos_x','right'),(181039,40689,'_hero_image_pos_x','field_62ec3d05390bb'),(181040,40689,'hero_image_pos_y','top'),(181041,40689,'_hero_image_pos_y','field_62ec3d05390bc'),(181042,40689,'hero_image_pos',''),(181043,40689,'_hero_image_pos','field_62ec3d05390ba'),(181044,40689,'fft_hide_from_listings','0'),(181045,40689,'_fft_hide_from_listings','field_61f1320446ab2'),(181046,40689,'fft_page_format','default'),(181047,40689,'_fft_page_format','field_61ae213f1f218'),(181048,40689,'fft_hide_nav','0'),(181049,40689,'_fft_hide_nav','field_635bd5e43527c'),(181050,40689,'fft_hide_header_call_to_action','0'),(181051,40689,'_fft_hide_header_call_to_action','field_635bd6723527d'),(181052,40689,'fft_page_sitemap','0'),(181053,40689,'_fft_page_sitemap','field_61af9b34e8181'),(181054,40689,'blocks_0_acfe_flexible_toggle',''),(181055,40689,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(181056,40689,'blocks_0_acfe_flexible_layout_title','Template'),(181057,40689,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(181058,40689,'blocks_0_template','39087'),(181059,40689,'_blocks_0_template','field_617bdd570fe01'),(181060,40689,'blocks_1_acfe_flexible_toggle',''),(181061,40689,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(181062,40689,'blocks_1_acfe_flexible_layout_title','Text Block'),(181063,40689,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(181064,40689,'blocks_1_options_theme','#ffffff'),(181065,40689,'_blocks_1_options_theme','field_6176830e2ad17'),(181066,40689,'blocks_1_options',''),(181067,40689,'_blocks_1_options','field_6176830e2ad16'),(181068,40689,'blocks_1_text_block_heading','Overview'),(181069,40689,'_blocks_1_text_block_heading','field_617669d413097'),(181070,40689,'blocks_1_text_block_content','In this enlightening webinar, we embark on a journey to demystify the concept of \'functional training,\' a term that has firmly entrenched itself in the fitness industry. Gray Cook, the creator of the Functional Movement Screen (FMS), rightly points out, \"Everyone has a different definition of function.\" So, what exactly is functional training, and why has it become a ubiquitous aspect of fitness culture?\r\n\r\nOur expert, Biomechanics Coach Rachel Thomson (Biomechanics Education), delves into the scientific foundations, insights from global leaders, and the potential need for a paradigm shift to truly understand functional training. Rather than accepting it as a universal norm, let\'s explore the multifaceted aspects of this training methodology.'),(181071,40689,'_blocks_1_text_block_content','field_617669ec13098'),(181072,40689,'blocks_2_acfe_flexible_toggle',''),(181073,40689,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(181074,40689,'blocks_2_acfe_flexible_layout_title','Button(s)'),(181075,40689,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(181076,40689,'blocks_2_options_theme','#ffffff'),(181077,40689,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(181078,40689,'blocks_2_options',''),(181079,40689,'_blocks_2_options','field_623b03edb6e65'),(181080,40689,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(181081,40689,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(181082,40689,'blocks_2_actions','1'),(181083,40689,'_blocks_2_actions','field_623b03edb6e6e'),(181084,40689,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:10:\"accordions\";}'),(181085,40689,'_blocks','field_6176696113096'),(181086,40689,'course_label_text','What the hell is Functional Training anyway?'),(181087,40689,'_course_label_text','field_61e17babf71fa'),(181088,40689,'course_label',''),(181089,40689,'_course_label','field_61e12f92749a7'),(181090,40689,'course_description','In this enlightening webinar, we embark on a journey to demystify the concept of \'functional training,\' a term that has firmly entrenched itself in the fitness industry.'),(181091,40689,'_course_description','field_617ac5788e5e1'),(181092,40689,'course_key_info','3'),(181093,40689,'_course_key_info','field_617ac6ad8e5e2'),(181094,40689,'course_included','Diverse Definitions of Functional Training\r\n\r\nEvaluating the Current Paradigm\r\n\r\nRevolutionising Client Preparation\r\n\r\nMeeting Evolving Client Expectations\r\n\r\nExpanding Trainer Skills Amidst Changing Expectations\r\n\r\nNavigating the Shifting Fitness Landscape\r\n\r\nPreparing for Future Challenges'),(181095,40689,'_course_included','field_617ac6f08e5e4'),(181096,40689,'blocks_3_acfe_flexible_toggle',''),(181097,40689,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(181098,40689,'blocks_3_acfe_flexible_layout_title','Timeline'),(181099,40689,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(181100,40689,'blocks_3_options_theme','#ffffff'),(181101,40689,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(181102,40689,'blocks_3_options',''),(181103,40689,'_blocks_3_options','field_6177de53d1195'),(181104,40689,'blocks_3_timeline_content_title',''),(181105,40689,'_blocks_3_timeline_content_title','field_6177de53d1198'),(181106,40689,'blocks_3_timeline_content_heading','Key webinar highlights'),(181107,40689,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(181108,40689,'blocks_3_timeline_content_text','This recorded webinar provides valuable insights for fitness professionals looking to enhance their understanding of functional training and adapt to the evolving needs of their clients. Access the recording by adding this product to your basket and stay ahead in the dynamic world of fitness.'),(181109,40689,'_blocks_3_timeline_content_text','field_6177de53d119a'),(181110,40689,'blocks_3_timeline_content_actions',''),(181111,40689,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(181112,40689,'blocks_3_timeline_content',''),(181113,40689,'_blocks_3_timeline_content','field_6177de53d1197'),(181114,40689,'blocks_3_timeline_items_0_title','Diverse Definitions of Functional Training'),(181115,40689,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(181116,40689,'blocks_3_timeline_items_0_text','Examine the various interpretations of functional training, recognising the multitude of perspectives within the fitness community. '),(181117,40689,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(181118,40689,'blocks_3_timeline_items_1_title','Evaluating the Current Paradigm'),(181119,40689,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(181120,40689,'blocks_3_timeline_items_1_text','Understand the strengths and weaknesses inherent in the existing functional training concept, prompting a critical evaluation of its present paradigm. '),(181121,40689,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(181122,40689,'blocks_3_timeline_items_2_title','Revolutionising Client Preparation'),(181123,40689,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(181124,40689,'blocks_3_timeline_items_2_text','Explore innovative approaches to preparing clients for exercise, focusing on mitigating the risk of injury and promoting a holistic training experience. '),(181125,40689,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(181126,40689,'blocks_3_timeline_items_3_title','Meeting Evolving Client Expectations'),(181127,40689,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(181128,40689,'blocks_3_timeline_items_3_text','Recognize the evolving needs of personal training clients, shaped by a more educated and health-conscious consumer base. Discover how personal trainers can adapt to address issues beyond traditional fitness goals. '),(181129,40689,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(181130,40689,'blocks_3_timeline_items_4_title','Expanding Trainer Skills Amidst Changing Expectations'),(181131,40689,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(181132,40689,'blocks_3_timeline_items_4_text','Acknowledge the expanded role of personal trainers, who are now sought after for advice on various ailments and issues. Gain insights into the changing landscape of health clubs, transforming into comprehensive health and wellness facilities. '),(181133,40689,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(181134,40689,'blocks_3_timeline_items_5_title','Navigating the Shifting Fitness Landscape'),(181135,40689,'_blocks_3_timeline_items_5_title','field_6177de53d119f'),(181136,40689,'blocks_3_timeline_items_5_text','Discuss the transformative impact of client expectations on the fitness industry, where health clubs are repositioned as holistic wellness facilities. Understand the nuanced health status of members between illness and wellness. '),(181137,40689,'_blocks_3_timeline_items_5_text','field_6177de53d11a0'),(181138,40689,'blocks_3_timeline_items_6_title','Preparing for Future Challenges'),(181139,40689,'_blocks_3_timeline_items_6_title','field_6177de53d119f'),(181140,40689,'blocks_3_timeline_items_6_text','Anticipate the increasing demand for personal trainers as individuals seek fitness guidance for minor issues. Explore the role of new screening methods, such as biomechanical and functional screening, in maintaining professional identity while avoiding the pitfalls of pseudo-therapy. '),(181141,40689,'_blocks_3_timeline_items_6_text','field_6177de53d11a0'),(181142,40689,'blocks_3_timeline_items','7'),(181143,40689,'_blocks_3_timeline_items','field_6177de53d119d'),(181144,40689,'blocks_4_acfe_flexible_toggle',''),(181145,40689,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(181146,40689,'blocks_4_acfe_flexible_layout_title','Text Block'),(181147,40689,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(181148,40689,'blocks_4_options_theme','#f5f5f5'),(181149,40689,'_blocks_4_options_theme','field_6176830e2ad17'),(181150,40689,'blocks_4_options',''),(181151,40689,'_blocks_4_options','field_6176830e2ad16'),(181152,40689,'blocks_4_text_block_heading','Related Courses'),(181153,40689,'_blocks_4_text_block_heading','field_617669d413097'),(181154,40689,'blocks_4_text_block_content','Check out our other commonly purchased CPD courses'),(181155,40689,'_blocks_4_text_block_content','field_617669ec13098'),(181156,40689,'blocks_6_acfe_flexible_toggle',''),(181157,40689,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(181158,40689,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(181159,40689,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(181160,40689,'blocks_6_options_theme','#ffffff'),(181161,40689,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(181162,40689,'blocks_6_options_state','0'),(181163,40689,'_blocks_6_options_state','field_6239fcb7508c5'),(181164,40689,'blocks_6_options',''),(181165,40689,'_blocks_6_options','field_6177e2991ac44'),(181166,40689,'blocks_6_content_title',''),(181167,40689,'_blocks_6_content_title','field_64d237e8bb1e2'),(181168,40689,'blocks_6_content_heading',''),(181169,40689,'_blocks_6_content_heading','field_64d237e8bb1e3'),(181170,40689,'blocks_6_content_text',''),(181171,40689,'_blocks_6_content_text','field_64d237e8bb1e4'),(181172,40689,'blocks_6_content_actions',''),(181173,40689,'_blocks_6_content_actions','field_64d237e8bb1e5'),(181174,40689,'blocks_6_content_align','left'),(181175,40689,'_blocks_6_content_align','field_64d2443e6b6aa'),(181176,40689,'blocks_6_content',''),(181177,40689,'_blocks_6_content','field_64d237e8bb1e1'),(181178,40689,'blocks_6_accordion_content','custom'),(181179,40689,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(181180,40689,'blocks_6_accordion_items',''),(181181,40689,'_blocks_6_accordion_items','field_6177e2991ac4c'),(181182,40689,'blocks_6_actions',''),(181183,40689,'_blocks_6_actions','field_61a746a817f7a'),(181184,40689,'blocks_5_acfe_flexible_toggle',''),(181185,40689,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(181186,40689,'blocks_5_acfe_flexible_layout_title','Cards'),(181187,40689,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(181188,40689,'blocks_5_options_theme','#ffffff'),(181189,40689,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(181190,40689,'blocks_5_options_format','carousel'),(181191,40689,'_blocks_5_options_format','field_617a7b15245b5'),(181192,40689,'blocks_5_options_style','default'),(181193,40689,'_blocks_5_options_style','field_6278ffb63484a'),(181194,40689,'blocks_5_options_cards_current_listing','0'),(181195,40689,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(181196,40689,'blocks_5_options_cards_content','post_type'),(181197,40689,'_blocks_5_options_cards_content','field_617aba6122688'),(181198,40689,'blocks_5_options_cards_post_type','course'),(181199,40689,'_blocks_5_options_cards_post_type','field_6194cc744d38b'),(181200,40689,'blocks_5_options_cards_posts_per_page','6'),(181201,40689,'_blocks_5_options_cards_posts_per_page','field_61a7565b1a0f2'),(181202,40689,'blocks_5_options',''),(181203,40689,'_blocks_5_options','field_617a7b15245b3'),(181204,40689,'course_label_label_theme','#0d1f73'),(181205,40689,'_course_label_label_theme','field_61e17bb8f71fb'),(181206,40689,'course_key_info_0_text','CPD'),(181207,40689,'_course_key_info_0_text','field_617ac6c38e5e3'),(181208,40689,'course_key_info_1_text','Webinar'),(181209,40689,'_course_key_info_1_text','field_617ac6c38e5e3'),(181210,40689,'course_key_info_2_text','Online Learning'),(181211,40689,'_course_key_info_2_text','field_617ac6c38e5e3'),(181212,40279,'course_label_label_theme','#0d1f73'),(181213,40279,'_course_label_label_theme','field_61e17bb8f71fb'),(181214,40279,'course_key_info_0_text','Online Learning'),(181215,40279,'_course_key_info_0_text','field_617ac6c38e5e3'),(181216,40279,'course_key_info_1_text','Webinar'),(181217,40279,'_course_key_info_1_text','field_617ac6c38e5e3'),(181218,40279,'course_key_info_2_text','CPD'),(181219,40279,'_course_key_info_2_text','field_617ac6c38e5e3'),(181220,40279,'_yoast_wpseo_focuskw','Pain Science'),(181221,40279,'_yoast_wpseo_metadesc','Discover pain science in this webinar, exploring the latest insights and practical guidance to support clients with persistent pain.'),(181222,40279,'_yoast_wpseo_linkdex','47'),(181223,40690,'hide_hero','0'),(181224,40690,'_hide_hero','field_66a2380fcda39'),(181225,40690,'hero_title','Pain Science Made Simple - Recorded Webinar'),(181226,40690,'_hero_title','field_617571fe285e8'),(181227,40690,'hero_text',''),(181228,40690,'_hero_text','field_6175723c285e9'),(181229,40690,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(181230,40690,'_hero_actions_0_button','field_61757281285eb'),(181231,40690,'hero_actions','1'),(181232,40690,'_hero_actions','field_61757270285ea'),(181233,40690,'hero_style','default'),(181234,40690,'_hero_style','field_62051d9dc5324'),(181235,40690,'_thumbnail_id','40650'),(181236,40690,'__thumbnail_id','field_617570855ddaf'),(181237,40690,'hero_image_pos_x','right'),(181238,40690,'_hero_image_pos_x','field_62ec3d05390bb'),(181239,40690,'hero_image_pos_y','top'),(181240,40690,'_hero_image_pos_y','field_62ec3d05390bc'),(181241,40690,'hero_image_pos',''),(181242,40690,'_hero_image_pos','field_62ec3d05390ba'),(181243,40690,'fft_hide_from_listings','0'),(181244,40690,'_fft_hide_from_listings','field_61f1320446ab2'),(181245,40690,'fft_page_format','default'),(181246,40690,'_fft_page_format','field_61ae213f1f218'),(181247,40690,'fft_hide_nav','0'),(181248,40690,'_fft_hide_nav','field_635bd5e43527c'),(181249,40690,'fft_hide_header_call_to_action','0'),(181250,40690,'_fft_hide_header_call_to_action','field_635bd6723527d'),(181251,40690,'fft_page_sitemap','0'),(181252,40690,'_fft_page_sitemap','field_61af9b34e8181'),(181253,40690,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:5:\"quote\";i:4;s:10:\"split_5050\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";}'),(181254,40690,'_blocks','field_6176696113096'),(181255,40690,'course_label_text','Pain Science Made Simple'),(181256,40690,'_course_label_text','field_61e17babf71fa'),(181257,40690,'course_label',''),(181258,40690,'_course_label','field_61e12f92749a7'),(181259,40690,'course_description','Explore the intricate world of pain science in our recorded webinar, \"Pain Science Made Simple \" In this 1-hour live interactive session, we delve into the latest insights from leading neuroscientists, providing you with valuable guidance on addressing clients who experience aches, niggles, and pains; and giving you the confidence to address these issues and give appropriate advice for each individual.'),(181260,40690,'_course_description','field_617ac5788e5e1'),(181261,40690,'course_key_info','3'),(181262,40690,'_course_key_info','field_617ac6ad8e5e2'),(181263,40690,'course_included','What is pain, and how does it manifest in the body?\r\nHow does the mechanism of pain work, and is it solely a physical response?\r\nDispelling the myth: Is pain exclusively in the client\'s head?\r\nUnpacking the science: What does current research reveal about pain?\r\nNavigating persistent pain: What are the implications for working with such clients?\r\nPractical guidance: What steps should be taken to support individuals experiencing persistent pain?'),(181264,40690,'_course_included','field_617ac6f08e5e4'),(181265,40690,'blocks_0_acfe_flexible_toggle',''),(181266,40690,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(181267,40690,'blocks_0_acfe_flexible_layout_title','Template'),(181268,40690,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(181269,40690,'blocks_0_template','39087'),(181270,40690,'_blocks_0_template','field_617bdd570fe01'),(181271,40690,'blocks_1_acfe_flexible_toggle',''),(181272,40690,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(181273,40690,'blocks_1_acfe_flexible_layout_title','Text Block'),(181274,40690,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(181275,40690,'blocks_1_options_theme','#ffffff'),(181276,40690,'_blocks_1_options_theme','field_6176830e2ad17'),(181277,40690,'blocks_1_options',''),(181278,40690,'_blocks_1_options','field_6176830e2ad16'),(181279,40690,'blocks_1_text_block_heading','Overview'),(181280,40690,'_blocks_1_text_block_heading','field_617669d413097'),(181281,40690,'blocks_1_text_block_content','Explore the intricate world of pain science in our recorded webinar, \"Pain Science Made Simple \" In this 1-hour live interactive session, we delve into the latest insights from leading neuroscientists, providing you with valuable guidance on addressing clients who experience aches, niggles, and pains; and giving you the confidence to address these issues and give appropriate advice for each individual.\r\n\r\n<strong>Key Questions Explored</strong>\r\n<ul>\r\n 	<li>What is pain, and how does it manifest in the body?</li>\r\n 	<li>How does the mechanism of pain work, and is it solely a physical response?</li>\r\n 	<li>Dispelling the myth: Is pain exclusively in the client\'s head?</li>\r\n 	<li>Unpacking the science: What does current research reveal about pain?</li>\r\n 	<li>Navigating persistent pain: What are the implications for working with such clients?</li>\r\n 	<li>Practical guidance: What steps should be taken to support individuals experiencing persistent pain?</li>\r\n</ul>'),(181282,40690,'_blocks_1_text_block_content','field_617669ec13098'),(181283,40690,'blocks_5_acfe_flexible_toggle',''),(181284,40690,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(181285,40690,'blocks_5_acfe_flexible_layout_title','Button(s)'),(181286,40690,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(181287,40690,'blocks_5_options_theme','#ffffff'),(181288,40690,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(181289,40690,'blocks_5_options',''),(181290,40690,'_blocks_5_options','field_623b03edb6e65'),(181291,40690,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(181292,40690,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(181293,40690,'blocks_5_actions','1'),(181294,40690,'_blocks_5_actions','field_623b03edb6e6e'),(181295,40690,'blocks_6_acfe_flexible_toggle',''),(181296,40690,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(181297,40690,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(181298,40690,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(181299,40690,'blocks_6_options_theme','#ffffff'),(181300,40690,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(181301,40690,'blocks_6_options_state','0'),(181302,40690,'_blocks_6_options_state','field_6239fcb7508c5'),(181303,40690,'blocks_6_options',''),(181304,40690,'_blocks_6_options','field_6177e2991ac44'),(181305,40690,'blocks_6_content_title',''),(181306,40690,'_blocks_6_content_title','field_64d237e8bb1e2'),(181307,40690,'blocks_6_content_heading',''),(181308,40690,'_blocks_6_content_heading','field_64d237e8bb1e3'),(181309,40690,'blocks_6_content_text',''),(181310,40690,'_blocks_6_content_text','field_64d237e8bb1e4'),(181311,40690,'blocks_6_content_actions',''),(181312,40690,'_blocks_6_content_actions','field_64d237e8bb1e5'),(181313,40690,'blocks_6_content_align','left'),(181314,40690,'_blocks_6_content_align','field_64d2443e6b6aa'),(181315,40690,'blocks_6_content',''),(181316,40690,'_blocks_6_content','field_64d237e8bb1e1'),(181317,40690,'blocks_6_accordion_content','custom'),(181318,40690,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(181319,40690,'blocks_6_accordion_items',''),(181320,40690,'_blocks_6_accordion_items','field_6177e2991ac4c'),(181321,40690,'blocks_6_actions',''),(181322,40690,'_blocks_6_actions','field_61a746a817f7a'),(181323,40690,'blocks_4_acfe_flexible_toggle',''),(181324,40690,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(181325,40690,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(181326,40690,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(181327,40690,'blocks_4_options_theme','#f5f5f5'),(181328,40690,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(181329,40690,'blocks_4_options_reverse','0'),(181330,40690,'_blocks_4_options_reverse','field_61768049bb8ac'),(181331,40690,'blocks_4_options',''),(181332,40690,'_blocks_4_options','field_617682517c334'),(181333,40690,'blocks_4_split_5050_image','40652'),(181334,40690,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(181335,40690,'blocks_4_split_5050_video',''),(181336,40690,'_blocks_4_split_5050_video','field_6239f3160848a'),(181337,40690,'blocks_4_split_5050_content_title',''),(181338,40690,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(181339,40690,'blocks_4_split_5050_content_heading','What you’ll gain'),(181340,40690,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(181341,40690,'blocks_4_split_5050_content_text','Gain a deeper understanding of pain by adopting the perspective of leading neuroscientists. Challenge traditional notions by acknowledging that pain is not merely a measure of tissue damage but a complex and sophisticated protective mechanism.\r\n\r\nJoin us on this enlightening journey as we simplify pain science and equip you with the knowledge to confidently address your clients\' concerns.'),(181342,40690,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(181343,40690,'blocks_4_split_5050_content_actions',''),(181344,40690,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(181345,40690,'blocks_4_split_5050_content',''),(181346,40690,'_blocks_4_split_5050_content','field_61767afceb8ba'),(181347,40690,'blocks_2_acfe_flexible_toggle',''),(181348,40690,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(181349,40690,'blocks_2_acfe_flexible_layout_title','Button(s)'),(181350,40690,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(181351,40690,'blocks_2_options_theme','#ffffff'),(181352,40690,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(181353,40690,'blocks_2_options',''),(181354,40690,'_blocks_2_options','field_623b03edb6e65'),(181355,40690,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(181356,40690,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(181357,40690,'blocks_2_actions','1'),(181358,40690,'_blocks_2_actions','field_623b03edb6e6e'),(181359,40690,'blocks_3_acfe_flexible_toggle',''),(181360,40690,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(181361,40690,'blocks_3_acfe_flexible_layout_title','Quote'),(181362,40690,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(181363,40690,'blocks_3_quote_content','Pain scientists are reasonably agreed that pain is an unpleasant feeling in our body that makes us want to stop and change our behaviour.\" Benefits et al. (2022)'),(181364,40690,'_blocks_3_quote_content','field_6177cdacdd67a'),(181365,40690,'blocks_3_quote_author',''),(181366,40690,'_blocks_3_quote_author','field_6177cdc6dd67b'),(181367,40690,'course_label_label_theme','#0d1f73'),(181368,40690,'_course_label_label_theme','field_61e17bb8f71fb'),(181369,40690,'course_key_info_0_text','CPD'),(181370,40690,'_course_key_info_0_text','field_617ac6c38e5e3'),(181371,40690,'course_key_info_1_text','Webinar'),(181372,40690,'_course_key_info_1_text','field_617ac6c38e5e3'),(181373,40690,'course_key_info_2_text','Online Learning'),(181374,40690,'_course_key_info_2_text','field_617ac6c38e5e3'),(181375,40284,'course_label_label_theme','#0d1f73'),(181376,40284,'_course_label_label_theme','field_61e17bb8f71fb'),(181377,40284,'course_key_info_0_text','Online Learning'),(181378,40284,'_course_key_info_0_text','field_617ac6c38e5e3'),(181379,40284,'course_key_info_1_text','CPD'),(181380,40284,'_course_key_info_1_text','field_617ac6c38e5e3'),(181381,40284,'course_key_info_2_text','Webinar'),(181382,40284,'_course_key_info_2_text','field_617ac6c38e5e3'),(181383,40284,'_yoast_wpseo_focuskw','weak glutes'),(181384,40284,'_yoast_wpseo_metadesc','Join our master class to debunk myths about \'Weak Glutes,\' uncover root causes, and learn effective strength strategies.'),(181385,40284,'_yoast_wpseo_linkdex','47'),(181386,40691,'hide_hero','0'),(181387,40691,'_hide_hero','field_66a2380fcda39'),(181388,40691,'hero_title','Weak Glutes Online Learning'),(181389,40691,'_hero_title','field_617571fe285e8'),(181390,40691,'hero_text','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class '),(181391,40691,'_hero_text','field_6175723c285e9'),(181392,40691,'hero_actions','1'),(181393,40691,'_hero_actions','field_61757270285ea'),(181394,40691,'hero_style','default'),(181395,40691,'_hero_style','field_62051d9dc5324'),(181396,40691,'_thumbnail_id','40638'),(181397,40691,'__thumbnail_id','field_617570855ddaf'),(181398,40691,'hero_image_pos_x','right'),(181399,40691,'_hero_image_pos_x','field_62ec3d05390bb'),(181400,40691,'hero_image_pos_y','top'),(181401,40691,'_hero_image_pos_y','field_62ec3d05390bc'),(181402,40691,'hero_image_pos',''),(181403,40691,'_hero_image_pos','field_62ec3d05390ba'),(181404,40691,'fft_hide_from_listings','0'),(181405,40691,'_fft_hide_from_listings','field_61f1320446ab2'),(181406,40691,'fft_page_format','default'),(181407,40691,'_fft_page_format','field_61ae213f1f218'),(181408,40691,'fft_hide_nav','0'),(181409,40691,'_fft_hide_nav','field_635bd5e43527c'),(181410,40691,'fft_hide_header_call_to_action','0'),(181411,40691,'_fft_hide_header_call_to_action','field_635bd6723527d'),(181412,40691,'fft_page_sitemap','0'),(181413,40691,'_fft_page_sitemap','field_61af9b34e8181'),(181414,40691,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";i:7;s:10:\"text_block\";i:8;s:14:\"course_compare\";}'),(181415,40691,'_blocks','field_6176696113096'),(181416,40691,'course_label_text','Weak Glutes Webinar'),(181417,40691,'_course_label_text','field_61e17babf71fa'),(181418,40691,'course_label',''),(181419,40691,'_course_label','field_61e12f92749a7'),(181420,40691,'course_description','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class'),(181421,40691,'_course_description','field_617ac5788e5e1'),(181422,40691,'course_key_info','3'),(181423,40691,'_course_key_info','field_617ac6ad8e5e2'),(181424,40691,'course_included','Explore the Anatomy\r\n\r\nPractical Assessment\r\n\r\nUnveiling the Culprits\r\n\r\nTargeted Interventions\r\n\r\nKinetic Chain Exploration'),(181425,40691,'_course_included','field_617ac6f08e5e4'),(181426,40691,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(181427,40691,'_hero_actions_0_button','field_61757281285eb'),(181428,40691,'blocks_0_acfe_flexible_toggle',''),(181429,40691,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(181430,40691,'blocks_0_acfe_flexible_layout_title','Template'),(181431,40691,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(181432,40691,'blocks_0_template','39087'),(181433,40691,'_blocks_0_template','field_617bdd570fe01'),(181434,40691,'blocks_1_acfe_flexible_toggle',''),(181435,40691,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(181436,40691,'blocks_1_acfe_flexible_layout_title','Text Block'),(181437,40691,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(181438,40691,'blocks_1_options_theme','#ffffff'),(181439,40691,'_blocks_1_options_theme','field_6176830e2ad17'),(181440,40691,'blocks_1_options',''),(181441,40691,'_blocks_1_options','field_6176830e2ad16'),(181442,40691,'blocks_1_text_block_heading','Overview'),(181443,40691,'_blocks_1_text_block_heading','field_617669d413097'),(181444,40691,'blocks_1_text_block_content','<strong>Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class</strong>\r\n\r\n\'Weak Glutes\' may not be what you\'ve always believed. Join our comprehensive webinar to delve deep into the intricacies of glute strength, debunk common myths, and equip yourself with effective solutions for both your clients and personal fitness journey.\r\n\r\nLearn to recognise when the conventional approaches to strength training miss the mark. Our webinar addresses the crucial question: What if your intervention isn\'t yielding the desired results? We\'ll guide you through identifying the root causes and unveil powerful strategies to overcome the elusive issue often misunderstood as \'Weak Glutes.\''),(181445,40691,'_blocks_1_text_block_content','field_617669ec13098'),(181446,40691,'blocks_2_acfe_flexible_toggle',''),(181447,40691,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(181448,40691,'blocks_2_acfe_flexible_layout_title','Button(s)'),(181449,40691,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(181450,40691,'blocks_2_options_theme','#ffffff'),(181451,40691,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(181452,40691,'blocks_2_options',''),(181453,40691,'_blocks_2_options','field_623b03edb6e65'),(181454,40691,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(181455,40691,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(181456,40691,'blocks_2_actions','1'),(181457,40691,'_blocks_2_actions','field_623b03edb6e6e'),(181458,40691,'blocks_3_acfe_flexible_toggle',''),(181459,40691,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(181460,40691,'blocks_3_acfe_flexible_layout_title','Timeline'),(181461,40691,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(181462,40691,'blocks_3_options_theme','#ffffff'),(181463,40691,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(181464,40691,'blocks_3_options',''),(181465,40691,'_blocks_3_options','field_6177de53d1195'),(181466,40691,'blocks_3_timeline_content_title',''),(181467,40691,'_blocks_3_timeline_content_title','field_6177de53d1198'),(181468,40691,'blocks_3_timeline_content_heading','What’s inside the masterclass? '),(181469,40691,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(181470,40691,'blocks_3_timeline_content_text',''),(181471,40691,'_blocks_3_timeline_content_text','field_6177de53d119a'),(181472,40691,'blocks_3_timeline_content_actions',''),(181473,40691,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(181474,40691,'blocks_3_timeline_content',''),(181475,40691,'_blocks_3_timeline_content','field_6177de53d1197'),(181476,40691,'blocks_3_timeline_items_0_title','Explore the Anatomy'),(181477,40691,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(181478,40691,'blocks_3_timeline_items_0_text','Unravel the mysteries of the glutes, understanding the unique contribution each muscle makes to fundamental movements.'),(181479,40691,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(181480,40691,'blocks_3_timeline_items_1_title','Practical Assessment'),(181481,40691,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(181482,40691,'blocks_3_timeline_items_1_text','Acquire a straightforward method to assess glute function tailored to your client\'s anatomy and movement patterns.'),(181483,40691,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(181484,40691,'blocks_3_timeline_items_2_title','Unveiling the Culprits'),(181485,40691,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(181486,40691,'blocks_3_timeline_items_2_text','Dive into the top 5 common causes of glute dysfunction, including antagonist dysfunction, nerve tension, lack of mobility, \'tension\' from other body parts, or a combination of these factors.'),(181487,40691,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(181488,40691,'blocks_3_timeline_items_3_title','Targeted Interventions'),(181489,40691,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(181490,40691,'blocks_3_timeline_items_3_text','Gain a toolkit of interventions for programming that addresses each identified cause. Learn the skills to test, intervene, and re-test effectively.'),(181491,40691,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(181492,40691,'blocks_3_timeline_items_4_title','Kinetic Chain Exploration'),(181493,40691,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(181494,40691,'blocks_3_timeline_items_4_text','Understand the integrated system of our kinetic chain, distinguishing between high-quality and poor-quality movement patterns.'),(181495,40691,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(181496,40691,'blocks_3_timeline_items','5'),(181497,40691,'_blocks_3_timeline_items','field_6177de53d119d'),(181498,40691,'blocks_4_acfe_flexible_toggle',''),(181499,40691,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(181500,40691,'blocks_4_acfe_flexible_layout_title','Text Block'),(181501,40691,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(181502,40691,'blocks_4_options_theme','#f5f5f5'),(181503,40691,'_blocks_4_options_theme','field_6176830e2ad17'),(181504,40691,'blocks_4_options',''),(181505,40691,'_blocks_4_options','field_6176830e2ad16'),(181506,40691,'blocks_4_text_block_heading','Key Takeaways'),(181507,40691,'_blocks_4_text_block_heading','field_617669d413097'),(181508,40691,'blocks_4_text_block_content','<ul>\r\n 	<li>Master the art of testing for glute dysfunction.</li>\r\n 	<li>Identify and address the 5 most prevalent causes of dysfunction.</li>\r\n 	<li>Implement targeted interventions to restore optimal glute function.</li>\r\n</ul>\r\nElevate your understanding of \'Weak Glutes\' and empower yourself with actionable insights.'),(181509,40691,'_blocks_4_text_block_content','field_617669ec13098'),(181510,40691,'blocks_5_acfe_flexible_toggle',''),(181511,40691,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(181512,40691,'blocks_5_acfe_flexible_layout_title','Button(s)'),(181513,40691,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(181514,40691,'blocks_5_options_theme','#ffffff'),(181515,40691,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(181516,40691,'blocks_5_options',''),(181517,40691,'_blocks_5_options','field_623b03edb6e65'),(181518,40691,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(181519,40691,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(181520,40691,'blocks_5_actions','1'),(181521,40691,'_blocks_5_actions','field_623b03edb6e6e'),(181522,40691,'blocks_6_acfe_flexible_toggle',''),(181523,40691,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(181524,40691,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(181525,40691,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(181526,40691,'blocks_6_options_theme','#ffffff'),(181527,40691,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(181528,40691,'blocks_6_options_state','0'),(181529,40691,'_blocks_6_options_state','field_6239fcb7508c5'),(181530,40691,'blocks_6_options',''),(181531,40691,'_blocks_6_options','field_6177e2991ac44'),(181532,40691,'blocks_6_content_title',''),(181533,40691,'_blocks_6_content_title','field_64d237e8bb1e2'),(181534,40691,'blocks_6_content_heading',''),(181535,40691,'_blocks_6_content_heading','field_64d237e8bb1e3'),(181536,40691,'blocks_6_content_text',''),(181537,40691,'_blocks_6_content_text','field_64d237e8bb1e4'),(181538,40691,'blocks_6_content_actions',''),(181539,40691,'_blocks_6_content_actions','field_64d237e8bb1e5'),(181540,40691,'blocks_6_content_align','left'),(181541,40691,'_blocks_6_content_align','field_64d2443e6b6aa'),(181542,40691,'blocks_6_content',''),(181543,40691,'_blocks_6_content','field_64d237e8bb1e1'),(181544,40691,'blocks_6_accordion_content','custom'),(181545,40691,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(181546,40691,'blocks_6_accordion_items',''),(181547,40691,'_blocks_6_accordion_items','field_6177e2991ac4c'),(181548,40691,'blocks_6_actions',''),(181549,40691,'_blocks_6_actions','field_61a746a817f7a'),(181550,40691,'blocks_7_acfe_flexible_toggle',''),(181551,40691,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(181552,40691,'blocks_7_acfe_flexible_layout_title','Text Block'),(181553,40691,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(181554,40691,'blocks_7_options_theme','#b61234'),(181555,40691,'_blocks_7_options_theme','field_6176830e2ad17'),(181556,40691,'blocks_7_options',''),(181557,40691,'_blocks_7_options','field_6176830e2ad16'),(181558,40691,'blocks_7_text_block_heading','Other CPD Courses'),(181559,40691,'_blocks_7_text_block_heading','field_617669d413097'),(181560,40691,'blocks_7_text_block_content','Other frequently purchased CPD courses'),(181561,40691,'_blocks_7_text_block_content','field_617669ec13098'),(181562,40691,'blocks_8_acfe_flexible_toggle',''),(181563,40691,'_blocks_8_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(181564,40691,'blocks_8_acfe_flexible_layout_title','Course Comparison'),(181565,40691,'_blocks_8_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(181566,40691,'blocks_8_options_theme','#b61234'),(181567,40691,'_blocks_8_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(181568,40691,'blocks_8_options',''),(181569,40691,'_blocks_8_options','field_617ac0b7f6c08'),(181570,40691,'blocks_8_show','category'),(181571,40691,'_blocks_8_show','field_61a49cba9d946'),(181572,40691,'blocks_8_category','403'),(181573,40691,'_blocks_8_category','field_61a49cd79d947'),(181574,40691,'course_label_label_theme','#0d1f73'),(181575,40691,'_course_label_label_theme','field_61e17bb8f71fb'),(181576,40691,'course_key_info_0_text','CPD'),(181577,40691,'_course_key_info_0_text','field_617ac6c38e5e3'),(181578,40691,'course_key_info_1_text','Webinar'),(181579,40691,'_course_key_info_1_text','field_617ac6c38e5e3'),(181580,40691,'course_key_info_2_text','Online Learning'),(181581,40691,'_course_key_info_2_text','field_617ac6c38e5e3'),(181582,40280,'course_label_label_theme','#0d1f73'),(181583,40280,'_course_label_label_theme','field_61e17bb8f71fb'),(181584,40280,'course_key_info_0_text','CPD'),(181585,40280,'_course_key_info_0_text','field_617ac6c38e5e3'),(181586,40280,'course_key_info_1_text','E-Zines '),(181587,40280,'_course_key_info_1_text','field_617ac6c38e5e3'),(181588,40280,'course_key_info_2_text','Online Learning'),(181589,40280,'_course_key_info_2_text','field_617ac6c38e5e3'),(181590,40280,'_yoast_wpseo_focuskw','Practical Anatomy'),(181591,40280,'_yoast_wpseo_metadesc','Explore simplified anatomy with fun facts and memory tactics in this series of online classrooms and E-Zines for better learning.'),(181592,40280,'_yoast_wpseo_linkdex','42'),(181593,40692,'hide_hero','0'),(181594,40692,'_hide_hero','field_66a2380fcda39'),(181595,40692,'hero_title','The Practical Anatomy Series'),(181596,40692,'_hero_title','field_617571fe285e8'),(181597,40692,'hero_text',''),(181598,40692,'_hero_text','field_6175723c285e9'),(181599,40692,'hero_actions',''),(181600,40692,'_hero_actions','field_61757270285ea'),(181601,40692,'hero_style','default'),(181602,40692,'_hero_style','field_62051d9dc5324'),(181603,40692,'_thumbnail_id','40634'),(181604,40692,'__thumbnail_id','field_617570855ddaf'),(181605,40692,'hero_image_pos_x','right'),(181606,40692,'_hero_image_pos_x','field_62ec3d05390bb'),(181607,40692,'hero_image_pos_y','top'),(181608,40692,'_hero_image_pos_y','field_62ec3d05390bc'),(181609,40692,'hero_image_pos',''),(181610,40692,'_hero_image_pos','field_62ec3d05390ba'),(181611,40692,'fft_hide_from_listings','0'),(181612,40692,'_fft_hide_from_listings','field_61f1320446ab2'),(181613,40692,'fft_page_format','default'),(181614,40692,'_fft_page_format','field_61ae213f1f218'),(181615,40692,'fft_hide_nav','0'),(181616,40692,'_fft_hide_nav','field_635bd5e43527c'),(181617,40692,'fft_hide_header_call_to_action','0'),(181618,40692,'_fft_hide_header_call_to_action','field_635bd6723527d'),(181619,40692,'fft_page_sitemap','0'),(181620,40692,'_fft_page_sitemap','field_61af9b34e8181'),(181621,40692,'blocks_0_acfe_flexible_toggle',''),(181622,40692,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(181623,40692,'blocks_0_acfe_flexible_layout_title','Template'),(181624,40692,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(181625,40692,'blocks_0_template','39087'),(181626,40692,'_blocks_0_template','field_617bdd570fe01'),(181627,40692,'blocks_1_acfe_flexible_toggle',''),(181628,40692,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(181629,40692,'blocks_1_acfe_flexible_layout_title','Text Block'),(181630,40692,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(181631,40692,'blocks_1_options_theme','#f5f5f5'),(181632,40692,'_blocks_1_options_theme','field_6176830e2ad17'),(181633,40692,'blocks_1_options',''),(181634,40692,'_blocks_1_options','field_6176830e2ad16'),(181635,40692,'blocks_1_text_block_heading','Overview'),(181636,40692,'_blocks_1_text_block_heading','field_617669d413097'),(181637,40692,'blocks_1_text_block_content','Discover the Practical Anatomy Series – a comprehensive learning experience comprising of five Online Recorded Classrooms and five E-Zines. If you\'ve been feeling a gap in your anatomy training or wish to simplify your learning process, this series is designed to support your journey into practical anatomy and intrinsic biomechanics.'),(181638,40692,'_blocks_1_text_block_content','field_617669ec13098'),(181639,40692,'blocks_2_acfe_flexible_toggle',''),(181640,40692,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(181641,40692,'blocks_2_acfe_flexible_layout_title','Timeline'),(181642,40692,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(181643,40692,'blocks_2_options_theme','#ffffff'),(181644,40692,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(181645,40692,'blocks_2_options',''),(181646,40692,'_blocks_2_options','field_6177de53d1195'),(181647,40692,'blocks_2_timeline_content_title',''),(181648,40692,'_blocks_2_timeline_content_title','field_6177de53d1198'),(181649,40692,'blocks_2_timeline_content_heading','Course Info'),(181650,40692,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(181651,40692,'blocks_2_timeline_content_text','Practical anatomy is more than memorisation; it\'s about applying your knowledge to understand your clients\' bodies and implementing practical solutions. Dive into the series for simplified anatomy learning, fun facts, and visual/memory tactics that enhance your understanding. The five online recorded classrooms and accompanying E-Zines provide a holistic approach to practical anatomy and intrinsic biomechanics.'),(181652,40692,'_blocks_2_timeline_content_text','field_6177de53d119a'),(181653,40692,'blocks_2_timeline_content_actions',''),(181654,40692,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(181655,40692,'blocks_2_timeline_content',''),(181656,40692,'_blocks_2_timeline_content','field_6177de53d1197'),(181657,40692,'blocks_2_timeline_items_0_title','CIMSPA Points'),(181658,40692,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(181659,40692,'blocks_2_timeline_items_0_text','Each of the five practical anatomy online webinars included in this series is worth one CPD, contributing to a total of five CIMSPA CPD points with this purchase. Elevate your professional development and enhance your practical skills in anatomy. '),(181660,40692,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(181661,40692,'blocks_2_timeline_items_1_title','Are you ready? '),(181662,40692,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(181663,40692,'blocks_2_timeline_items_1_text','Ready to enhance your anatomy knowledge and practical skills? Upon purchase, you not only gain access to the 5 online recorded classrooms and 5 E-Zines, but also set yourself on a path to deduct the series cost from the full price of our Diploma in Biomechanics Coaching if you choose to enrol.  '),(181664,40692,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(181665,40692,'blocks_2_timeline_items','2'),(181666,40692,'_blocks_2_timeline_items','field_6177de53d119d'),(181667,40692,'blocks_3_acfe_flexible_toggle',''),(181668,40692,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(181669,40692,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(181670,40692,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(181671,40692,'blocks_3_options_theme','#b61234'),(181672,40692,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(181673,40692,'blocks_3_options_reverse','0'),(181674,40692,'_blocks_3_options_reverse','field_61768049bb8ac'),(181675,40692,'blocks_3_options',''),(181676,40692,'_blocks_3_options','field_617682517c334'),(181677,40692,'blocks_3_split_5050_image','40635'),(181678,40692,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(181679,40692,'blocks_3_split_5050_video',''),(181680,40692,'_blocks_3_split_5050_video','field_6239f3160848a'),(181681,40692,'blocks_3_split_5050_content_title',''),(181682,40692,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(181683,40692,'blocks_3_split_5050_content_heading','Invest in your learning journey'),(181684,40692,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(181685,40692,'blocks_3_split_5050_content_text','Invest in your learning journey and take the first step towards a deeper understanding of your clients\' bodies.'),(181686,40692,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(181687,40692,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(181688,40692,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(181689,40692,'blocks_3_split_5050_content_actions','1'),(181690,40692,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(181691,40692,'blocks_3_split_5050_content',''),(181692,40692,'_blocks_3_split_5050_content','field_61767afceb8ba'),(181693,40692,'blocks_4_acfe_flexible_toggle',''),(181694,40692,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(181695,40692,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(181696,40692,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(181697,40692,'blocks_4_options_theme','#ffffff'),(181698,40692,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(181699,40692,'blocks_4_options_state','0'),(181700,40692,'_blocks_4_options_state','field_6239fcb7508c5'),(181701,40692,'blocks_4_options',''),(181702,40692,'_blocks_4_options','field_6177e2991ac44'),(181703,40692,'blocks_4_content_title',''),(181704,40692,'_blocks_4_content_title','field_64d237e8bb1e2'),(181705,40692,'blocks_4_content_heading','FAQ\'s'),(181706,40692,'_blocks_4_content_heading','field_64d237e8bb1e3'),(181707,40692,'blocks_4_content_text',''),(181708,40692,'_blocks_4_content_text','field_64d237e8bb1e4'),(181709,40692,'blocks_4_content_actions',''),(181710,40692,'_blocks_4_content_actions','field_64d237e8bb1e5'),(181711,40692,'blocks_4_content_align','left'),(181712,40692,'_blocks_4_content_align','field_64d2443e6b6aa'),(181713,40692,'blocks_4_content',''),(181714,40692,'_blocks_4_content','field_64d237e8bb1e1'),(181715,40692,'blocks_4_accordion_content','custom'),(181716,40692,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(181717,40692,'blocks_4_accordion_items',''),(181718,40692,'_blocks_4_accordion_items','field_6177e2991ac4c'),(181719,40692,'blocks_4_actions',''),(181720,40692,'_blocks_4_actions','field_61a746a817f7a'),(181721,40692,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:10:\"accordions\";}'),(181722,40692,'_blocks','field_6176696113096'),(181723,40692,'course_label_text','Practical Anatomy Series'),(181724,40692,'_course_label_text','field_61e17babf71fa'),(181725,40692,'course_label',''),(181726,40692,'_course_label','field_61e12f92749a7'),(181727,40692,'course_description','Discover the Practical Anatomy Series – a comprehensive learning experience comprising of five Online Recorded Classrooms and five E-Zines'),(181728,40692,'_course_description','field_617ac5788e5e1'),(181729,40692,'course_key_info','3'),(181730,40692,'_course_key_info','field_617ac6ad8e5e2'),(181731,40692,'course_included','Dive into the series for simplified anatomy learning, fun facts, and visual/memory tactics that enhance your understanding. The five online recorded classrooms and accompanying E-Zines provide a holistic approach to practical anatomy and intrinsic biomechanics.'),(181732,40692,'_course_included','field_617ac6f08e5e4'),(181733,40692,'course_label_label_theme','#0d1f73'),(181734,40692,'_course_label_label_theme','field_61e17bb8f71fb'),(181735,40692,'course_key_info_0_text','CPD'),(181736,40692,'_course_key_info_0_text','field_617ac6c38e5e3'),(181737,40692,'course_key_info_1_text','E-Zines '),(181738,40692,'_course_key_info_1_text','field_617ac6c38e5e3'),(181739,40692,'course_key_info_2_text','Online Learning'),(181740,40692,'_course_key_info_2_text','field_617ac6c38e5e3'),(181741,40275,'course_label_label_theme','#0d1f73'),(181742,40275,'_course_label_label_theme','field_61e17bb8f71fb'),(181743,40275,'course_key_info_0_text','CPD'),(181744,40275,'_course_key_info_0_text','field_617ac6c38e5e3'),(181745,40275,'course_key_info_1_text','Online Learning'),(181746,40275,'_course_key_info_1_text','field_617ac6c38e5e3'),(181747,40275,'_yoast_wpseo_focuskw','principles of movement'),(181748,40275,'_yoast_wpseo_metadesc','Deepen your understanding of human movement with our course, offering practical insights for analysing and improving movement quality.'),(181749,40275,'_yoast_wpseo_linkdex','40'),(181750,40693,'hide_hero','0'),(181751,40693,'_hide_hero','field_66a2380fcda39'),(181752,40693,'hero_title','Fundamental Principles of Movement'),(181753,40693,'_hero_title','field_617571fe285e8'),(181754,40693,'hero_text','Explore the Fundamental Principles of Movement Analysis'),(181755,40693,'_hero_text','field_6175723c285e9'),(181756,40693,'hero_actions',''),(181757,40693,'_hero_actions','field_61757270285ea'),(181758,40693,'hero_style','default'),(181759,40693,'_hero_style','field_62051d9dc5324'),(181760,40693,'_thumbnail_id','40630'),(181761,40693,'__thumbnail_id','field_617570855ddaf'),(181762,40693,'hero_image_pos_x','right'),(181763,40693,'_hero_image_pos_x','field_62ec3d05390bb'),(181764,40693,'hero_image_pos_y','top'),(181765,40693,'_hero_image_pos_y','field_62ec3d05390bc'),(181766,40693,'hero_image_pos',''),(181767,40693,'_hero_image_pos','field_62ec3d05390ba'),(181768,40693,'fft_hide_from_listings','0'),(181769,40693,'_fft_hide_from_listings','field_61f1320446ab2'),(181770,40693,'fft_page_format','default'),(181771,40693,'_fft_page_format','field_61ae213f1f218'),(181772,40693,'fft_hide_nav','0'),(181773,40693,'_fft_hide_nav','field_635bd5e43527c'),(181774,40693,'fft_hide_header_call_to_action','0'),(181775,40693,'_fft_hide_header_call_to_action','field_635bd6723527d'),(181776,40693,'fft_page_sitemap','0'),(181777,40693,'_fft_page_sitemap','field_61af9b34e8181'),(181778,40693,'blocks_0_acfe_flexible_toggle',''),(181779,40693,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(181780,40693,'blocks_0_acfe_flexible_layout_title','Text Block'),(181781,40693,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(181782,40693,'blocks_0_options_theme','#ffffff'),(181783,40693,'_blocks_0_options_theme','field_6176830e2ad17'),(181784,40693,'blocks_0_options',''),(181785,40693,'_blocks_0_options','field_6176830e2ad16'),(181786,40693,'blocks_0_text_block_heading','Overview'),(181787,40693,'_blocks_0_text_block_heading','field_617669d413097'),(181788,40693,'blocks_0_text_block_content','Are you looking to deepen your understanding of the human body and the principles of movement? We are pleased to introduce our fundamental principles of movement analysis course, offering insights into comprehending, and analysing human movement.\r\n\r\nOur online course simplifies the complex subject of human movement analysis, providing practitioners with a practical understanding to assess their clients\' movement quality. With this knowledge, you can refine your exercise prescriptions to improve movement quality effectively.'),(181789,40693,'_blocks_0_text_block_content','field_617669ec13098'),(181790,40693,'blocks_1_acfe_flexible_toggle',''),(181791,40693,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(181792,40693,'blocks_1_acfe_flexible_layout_title','Timeline'),(181793,40693,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(181794,40693,'blocks_1_options_theme','#f5f5f5'),(181795,40693,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(181796,40693,'blocks_1_options',''),(181797,40693,'_blocks_1_options','field_6177de53d1195'),(181798,40693,'blocks_1_timeline_content_title',''),(181799,40693,'_blocks_1_timeline_content_title','field_6177de53d1198'),(181800,40693,'blocks_1_timeline_content_heading','Fundamental Principles of Movement Analysis'),(181801,40693,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(181802,40693,'blocks_1_timeline_content_text','Explore the Fundamental Principles of Movement Analysis, divided into four parts'),(181803,40693,'_blocks_1_timeline_content_text','field_6177de53d119a'),(181804,40693,'blocks_1_timeline_content_actions',''),(181805,40693,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(181806,40693,'blocks_1_timeline_content',''),(181807,40693,'_blocks_1_timeline_content','field_6177de53d1197'),(181808,40693,'blocks_1_timeline_items_0_title','Part 1: Principles of Movement Analysis '),(181809,40693,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(181810,40693,'blocks_1_timeline_items_0_text','Understand the foundational principles of human movement. '),(181811,40693,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(181812,40693,'blocks_1_timeline_items_1_title','Part 2: Equilibrium '),(181813,40693,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(181814,40693,'blocks_1_timeline_items_1_text','Learn about maintaining balance and equilibrium within the human body. '),(181815,40693,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(181816,40693,'blocks_1_timeline_items_2_title','Part 3: Levers '),(181817,40693,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(181818,40693,'blocks_1_timeline_items_2_text','Explore the mechanical principles of levers and their role in human movement. '),(181819,40693,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(181820,40693,'blocks_1_timeline_items_3_title','Part 4: Turning Forces '),(181821,40693,'_blocks_1_timeline_items_3_title','field_6177de53d119f'),(181822,40693,'blocks_1_timeline_items_3_text','Understand the dynamics of turning forces and their impact on human movement. '),(181823,40693,'_blocks_1_timeline_items_3_text','field_6177de53d11a0'),(181824,40693,'blocks_1_timeline_items','4'),(181825,40693,'_blocks_1_timeline_items','field_6177de53d119d'),(181826,40693,'blocks_2_acfe_flexible_toggle',''),(181827,40693,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(181828,40693,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(181829,40693,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(181830,40693,'blocks_2_options_theme','#b61234'),(181831,40693,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(181832,40693,'blocks_2_options_reverse','0'),(181833,40693,'_blocks_2_options_reverse','field_61768049bb8ac'),(181834,40693,'blocks_2_options',''),(181835,40693,'_blocks_2_options','field_617682517c334'),(181836,40693,'blocks_2_split_5050_image','40631'),(181837,40693,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(181838,40693,'blocks_2_split_5050_video',''),(181839,40693,'_blocks_2_split_5050_video','field_6239f3160848a'),(181840,40693,'blocks_2_split_5050_content_title',''),(181841,40693,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(181842,40693,'blocks_2_split_5050_content_heading','Ready to Get Started? '),(181843,40693,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(181844,40693,'blocks_2_split_5050_content_text','This downloadable course, accompanied by a quiz, aims to inform, and enhance the skills of human movement practitioners in both intrinsic and extrinsic biomechanics.\r\n\r\nReady to get started? After payment, download your course instantly for immediate access. Refine your understanding of movement analysis!'),(181845,40693,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(181846,40693,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(181847,40693,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(181848,40693,'blocks_2_split_5050_content_actions','1'),(181849,40693,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(181850,40693,'blocks_2_split_5050_content',''),(181851,40693,'_blocks_2_split_5050_content','field_61767afceb8ba'),(181852,40693,'blocks_3_acfe_flexible_toggle',''),(181853,40693,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(181854,40693,'blocks_3_acfe_flexible_layout_title','Text Block'),(181855,40693,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(181856,40693,'blocks_3_options_theme','#ffffff'),(181857,40693,'_blocks_3_options_theme','field_6176830e2ad17'),(181858,40693,'blocks_3_options',''),(181859,40693,'_blocks_3_options','field_6176830e2ad16'),(181860,40693,'blocks_3_text_block_heading','Other Courses'),(181861,40693,'_blocks_3_text_block_heading','field_617669d413097'),(181862,40693,'blocks_3_text_block_content','Check out other courses that are frequently purchased'),(181863,40693,'_blocks_3_text_block_content','field_617669ec13098'),(181864,40693,'blocks_4_acfe_flexible_toggle',''),(181865,40693,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(181866,40693,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(181867,40693,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(181868,40693,'blocks_4_options_theme','#ffffff'),(181869,40693,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(181870,40693,'blocks_4_options',''),(181871,40693,'_blocks_4_options','field_617ac0b7f6c08'),(181872,40693,'blocks_4_show','category'),(181873,40693,'_blocks_4_show','field_61a49cba9d946'),(181874,40693,'blocks_4_category','403'),(181875,40693,'_blocks_4_category','field_61a49cd79d947'),(181876,40693,'blocks_5_acfe_flexible_toggle',''),(181877,40693,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(181878,40693,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(181879,40693,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(181880,40693,'blocks_5_options_theme','#ffffff'),(181881,40693,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(181882,40693,'blocks_5_options_state','0'),(181883,40693,'_blocks_5_options_state','field_6239fcb7508c5'),(181884,40693,'blocks_5_options',''),(181885,40693,'_blocks_5_options','field_6177e2991ac44'),(181886,40693,'blocks_5_content_title',''),(181887,40693,'_blocks_5_content_title','field_64d237e8bb1e2'),(181888,40693,'blocks_5_content_heading','FAQ\'s'),(181889,40693,'_blocks_5_content_heading','field_64d237e8bb1e3'),(181890,40693,'blocks_5_content_text',''),(181891,40693,'_blocks_5_content_text','field_64d237e8bb1e4'),(181892,40693,'blocks_5_content_actions',''),(181893,40693,'_blocks_5_content_actions','field_64d237e8bb1e5'),(181894,40693,'blocks_5_content_align','left'),(181895,40693,'_blocks_5_content_align','field_64d2443e6b6aa'),(181896,40693,'blocks_5_content',''),(181897,40693,'_blocks_5_content','field_64d237e8bb1e1'),(181898,40693,'blocks_5_accordion_content','custom'),(181899,40693,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(181900,40693,'blocks_5_accordion_items',''),(181901,40693,'_blocks_5_accordion_items','field_6177e2991ac4c'),(181902,40693,'blocks_5_actions',''),(181903,40693,'_blocks_5_actions','field_61a746a817f7a'),(181904,40693,'blocks','a:6:{i:0;s:10:\"text_block\";i:1;s:13:\"step_timeline\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:10:\"accordions\";}'),(181905,40693,'_blocks','field_6176696113096'),(181906,40693,'course_label_text','Fundamental Principles of Movement'),(181907,40693,'_course_label_text','field_61e17babf71fa'),(181908,40693,'course_label',''),(181909,40693,'_course_label','field_61e12f92749a7'),(181910,40693,'course_description','Are you looking to deepen your understanding of the human body and movement? We are pleased to introduce our fundamental principles of movement analysis course, offering insights into comprehending, and analysing human movement.'),(181911,40693,'_course_description','field_617ac5788e5e1'),(181912,40693,'course_key_info','2'),(181913,40693,'_course_key_info','field_617ac6ad8e5e2'),(181914,40693,'course_included','Our online course simplifies the complex subject of human movement analysis, providing practitioners with a practical understanding to assess their clients\' movement quality. With this knowledge, you can refine your exercise prescriptions to improve movement quality effectively.'),(181915,40693,'_course_included','field_617ac6f08e5e4'),(181916,40693,'course_label_label_theme','#0d1f73'),(181917,40693,'_course_label_label_theme','field_61e17bb8f71fb'),(181918,40693,'course_key_info_0_text','CPD'),(181919,40693,'_course_key_info_0_text','field_617ac6c38e5e3'),(181920,40693,'course_key_info_1_text','Online Learning'),(181921,40693,'_course_key_info_1_text','field_617ac6c38e5e3'),(181922,40278,'course_label_label_theme','#0d1f73'),(181923,40278,'_course_label_label_theme','field_61e17bb8f71fb'),(181924,40278,'course_key_info_0_text','CPD'),(181925,40278,'_course_key_info_0_text','field_617ac6c38e5e3'),(181926,40278,'course_key_info_1_text','CIMSPA Endorsed'),(181927,40278,'_course_key_info_1_text','field_617ac6c38e5e3'),(181928,40278,'course_key_info_2_text','Online Learning'),(181929,40278,'_course_key_info_2_text','field_617ac6c38e5e3'),(181930,40278,'_yoast_wpseo_focuskw','Intrinsic biomechanics'),(181931,40278,'_yoast_wpseo_metadesc','Unlock better movement with our 2-hour virtual class, addressing squat and shoulder issues. Includes a downloadable handout!'),(181932,40278,'_yoast_wpseo_linkdex','40'),(181933,40694,'hide_hero','0'),(181934,40694,'_hide_hero','field_66a2380fcda39'),(181935,40694,'hero_title','Introduction to Intrinsic Biomechanics'),(181936,40694,'_hero_title','field_617571fe285e8'),(181937,40694,'hero_text','Welcome to the Intrinsic Biomechanics Online CPD Training – Gain a deeper level of understanding of the body and human movement.'),(181938,40694,'_hero_text','field_6175723c285e9'),(181939,40694,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(181940,40694,'_hero_actions_0_button','field_61757281285eb'),(181941,40694,'hero_actions','1'),(181942,40694,'_hero_actions','field_61757270285ea'),(181943,40694,'hero_style','default'),(181944,40694,'_hero_style','field_62051d9dc5324'),(181945,40694,'_thumbnail_id','40628'),(181946,40694,'__thumbnail_id','field_617570855ddaf'),(181947,40694,'hero_image_pos_x','right'),(181948,40694,'_hero_image_pos_x','field_62ec3d05390bb'),(181949,40694,'hero_image_pos_y','top'),(181950,40694,'_hero_image_pos_y','field_62ec3d05390bc'),(181951,40694,'hero_image_pos',''),(181952,40694,'_hero_image_pos','field_62ec3d05390ba'),(181953,40694,'fft_hide_from_listings','0'),(181954,40694,'_fft_hide_from_listings','field_61f1320446ab2'),(181955,40694,'fft_page_format','default'),(181956,40694,'_fft_page_format','field_61ae213f1f218'),(181957,40694,'fft_hide_nav','0'),(181958,40694,'_fft_hide_nav','field_635bd5e43527c'),(181959,40694,'fft_hide_header_call_to_action','0'),(181960,40694,'_fft_hide_header_call_to_action','field_635bd6723527d'),(181961,40694,'fft_page_sitemap','0'),(181962,40694,'_fft_page_sitemap','field_61af9b34e8181'),(181963,40694,'blocks_0_acfe_flexible_toggle',''),(181964,40694,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(181965,40694,'blocks_0_acfe_flexible_layout_title','Text Block'),(181966,40694,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(181967,40694,'blocks_0_options_theme','#ffffff'),(181968,40694,'_blocks_0_options_theme','field_6176830e2ad17'),(181969,40694,'blocks_0_options',''),(181970,40694,'_blocks_0_options','field_6176830e2ad16'),(181971,40694,'blocks_0_text_block_heading','Overview'),(181972,40694,'_blocks_0_text_block_heading','field_617669d413097'),(181973,40694,'blocks_0_text_block_content','Unlock a profound comprehension of the human body and movement patterns with our 2-hour online virtual classroom recording, complete with a comprehensive handout available for immediate download.\r\n\r\nAre your clients grappling with limited squat range or struggling to press overhead due to shoulder issues? Perhaps they avoid certain exercises due to physical constraints or pain. Witness transformative improvements in their movement and address your own mobility goals.'),(181974,40694,'_blocks_0_text_block_content','field_617669ec13098'),(181975,40694,'blocks_1_acfe_flexible_toggle',''),(181976,40694,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(181977,40694,'blocks_1_acfe_flexible_layout_title','Timeline'),(181978,40694,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(181979,40694,'blocks_1_options_theme','#f5f5f5'),(181980,40694,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(181981,40694,'blocks_1_options',''),(181982,40694,'_blocks_1_options','field_6177de53d1195'),(181983,40694,'blocks_1_timeline_content_title',''),(181984,40694,'_blocks_1_timeline_content_title','field_6177de53d1198'),(181985,40694,'blocks_1_timeline_content_heading','Course Information'),(181986,40694,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(181987,40694,'blocks_1_timeline_content_text','<strong>Discover how to:</strong>\r\n<ul>\r\n 	<li>Conduct evidence-based screenings to pinpoint movement limitations.</li>\r\n 	<li>Master techniques enhancing the functionality of the pelvis, spine, and shoulder.</li>\r\n</ul>'),(181988,40694,'_blocks_1_timeline_content_text','field_6177de53d119a'),(181989,40694,'blocks_1_timeline_content_actions',''),(181990,40694,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(181991,40694,'blocks_1_timeline_content',''),(181992,40694,'_blocks_1_timeline_content','field_6177de53d1197'),(181993,40694,'blocks_1_timeline_items_0_title','Explore Pelvic Biomechanics'),(181994,40694,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(181995,40694,'blocks_1_timeline_items_0_text','Uncover evidence-based assessments, identify sub-clinical muscle spasms, discern between structural and functional leg length discrepancies, and implement exercises to enhance pelvic function.'),(181996,40694,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(181997,40694,'blocks_1_timeline_items_1_title','Dive into Spine Biomechanics'),(181998,40694,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(181999,40694,'blocks_1_timeline_items_1_text','Learn how to assess and correct thoracic rotation – a game-changing skill with far-reaching effects.'),(182000,40694,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(182001,40694,'blocks_1_timeline_items_2_title','Delve into Shoulder Biomechanics'),(182002,40694,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(182003,40694,'blocks_1_timeline_items_2_text','Assess and correct shoulder function, focusing on key muscles influencing posture and movement right down to the feet.'),(182004,40694,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(182005,40694,'blocks_1_timeline_items','3'),(182006,40694,'_blocks_1_timeline_items','field_6177de53d119d'),(182007,40694,'blocks_2_acfe_flexible_toggle',''),(182008,40694,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(182009,40694,'blocks_2_acfe_flexible_layout_title','Text Block'),(182010,40694,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(182011,40694,'blocks_2_options_theme','#ffffff'),(182012,40694,'_blocks_2_options_theme','field_6176830e2ad17'),(182013,40694,'blocks_2_options',''),(182014,40694,'_blocks_2_options','field_6176830e2ad16'),(182015,40694,'blocks_2_text_block_heading','Please note'),(182016,40694,'_blocks_2_text_block_heading','field_617669d413097'),(182017,40694,'blocks_2_text_block_content','This online training aims to inform and enrich the understanding of fitness and exercise instructors through Continuing Professional Development (CPD). For an attendance certificate, face-to-face participation is required. Upon payment, access the video link and instantly download the handout PDF. Revisit using your registered email to access all purchases.\r\n\r\nOpt to attend the face-to-face Intrinsic Biomechanics Workshop, and not only will you receive a refund for the online training, but you\'ll also secure your attendance certificate.'),(182018,40694,'_blocks_2_text_block_content','field_617669ec13098'),(182019,40694,'blocks_3_acfe_flexible_toggle',''),(182020,40694,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(182021,40694,'blocks_3_acfe_flexible_layout_title','Button(s)'),(182022,40694,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(182023,40694,'blocks_3_options_theme','#ffffff'),(182024,40694,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(182025,40694,'blocks_3_options',''),(182026,40694,'_blocks_3_options','field_623b03edb6e65'),(182027,40694,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182028,40694,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(182029,40694,'blocks_3_actions','1'),(182030,40694,'_blocks_3_actions','field_623b03edb6e6e'),(182031,40694,'blocks_4_acfe_flexible_toggle',''),(182032,40694,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(182033,40694,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(182034,40694,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(182035,40694,'blocks_4_options_theme','#ffffff'),(182036,40694,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(182037,40694,'blocks_4_options_state','0'),(182038,40694,'_blocks_4_options_state','field_6239fcb7508c5'),(182039,40694,'blocks_4_options',''),(182040,40694,'_blocks_4_options','field_6177e2991ac44'),(182041,40694,'blocks_4_content_title',''),(182042,40694,'_blocks_4_content_title','field_64d237e8bb1e2'),(182043,40694,'blocks_4_content_heading',''),(182044,40694,'_blocks_4_content_heading','field_64d237e8bb1e3'),(182045,40694,'blocks_4_content_text',''),(182046,40694,'_blocks_4_content_text','field_64d237e8bb1e4'),(182047,40694,'blocks_4_content_actions',''),(182048,40694,'_blocks_4_content_actions','field_64d237e8bb1e5'),(182049,40694,'blocks_4_content_align','left'),(182050,40694,'_blocks_4_content_align','field_64d2443e6b6aa'),(182051,40694,'blocks_4_content',''),(182052,40694,'_blocks_4_content','field_64d237e8bb1e1'),(182053,40694,'blocks_4_accordion_content','custom'),(182054,40694,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(182055,40694,'blocks_4_accordion_items',''),(182056,40694,'_blocks_4_accordion_items','field_6177e2991ac4c'),(182057,40694,'blocks_4_actions',''),(182058,40694,'_blocks_4_actions','field_61a746a817f7a'),(182059,40694,'blocks','a:5:{i:0;s:10:\"text_block\";i:1;s:13:\"step_timeline\";i:2;s:10:\"text_block\";i:3;s:7:\"buttons\";i:4;s:10:\"accordions\";}'),(182060,40694,'_blocks','field_6176696113096'),(182061,40694,'course_label_text','Introduction to Intrinsic Biomechanics'),(182062,40694,'_course_label_text','field_61e17babf71fa'),(182063,40694,'course_label',''),(182064,40694,'_course_label','field_61e12f92749a7'),(182065,40694,'course_description','Welcome to the Intrinsic Biomechanics Online CPD Training – Gain a deeper level of understanding of the body and human movement.'),(182066,40694,'_course_description','field_617ac5788e5e1'),(182067,40694,'course_key_info','3'),(182068,40694,'_course_key_info','field_617ac6ad8e5e2'),(182069,40694,'course_included','Discover how to:\r\n\r\nConduct evidence-based screenings to pinpoint movement limitations.\r\nMaster techniques enhancing the functionality of the pelvis, spine, and shoulder.'),(182070,40694,'_course_included','field_617ac6f08e5e4'),(182071,40694,'course_label_label_theme','#0d1f73'),(182072,40694,'_course_label_label_theme','field_61e17bb8f71fb'),(182073,40694,'course_key_info_0_text','Online CPD'),(182074,40694,'_course_key_info_0_text','field_617ac6c38e5e3'),(182075,40694,'course_key_info_1_text','CIMSPA'),(182076,40694,'_course_key_info_1_text','field_617ac6c38e5e3'),(182077,40694,'course_key_info_2_text','Online Learning'),(182078,40694,'_course_key_info_2_text','field_617ac6c38e5e3'),(182079,40277,'course_label_label_theme','#0d1f73'),(182080,40277,'_course_label_label_theme','field_61e17bb8f71fb'),(182081,40277,'course_key_info_0_text','Online Learning'),(182082,40277,'_course_key_info_0_text','field_617ac6c38e5e3'),(182087,40695,'hide_hero','0'),(182088,40695,'_hide_hero','field_66a2380fcda39'),(182089,40695,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(182090,40695,'_hero_title','field_617571fe285e8'),(182091,40695,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(182092,40695,'_hero_text','field_6175723c285e9'),(182093,40695,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182094,40695,'_hero_actions_0_button','field_61757281285eb'),(182095,40695,'hero_actions','1'),(182096,40695,'_hero_actions','field_61757270285ea'),(182097,40695,'hero_style','default'),(182098,40695,'_hero_style','field_62051d9dc5324'),(182099,40695,'_thumbnail_id','40615'),(182100,40695,'__thumbnail_id','field_617570855ddaf'),(182101,40695,'hero_image_pos_x','right'),(182102,40695,'_hero_image_pos_x','field_62ec3d05390bb'),(182103,40695,'hero_image_pos_y','top'),(182104,40695,'_hero_image_pos_y','field_62ec3d05390bc'),(182105,40695,'hero_image_pos',''),(182106,40695,'_hero_image_pos','field_62ec3d05390ba'),(182107,40695,'fft_hide_from_listings','0'),(182108,40695,'_fft_hide_from_listings','field_61f1320446ab2'),(182109,40695,'fft_page_format','default'),(182110,40695,'_fft_page_format','field_61ae213f1f218'),(182111,40695,'fft_hide_nav','0'),(182112,40695,'_fft_hide_nav','field_635bd5e43527c'),(182113,40695,'fft_hide_header_call_to_action','0'),(182114,40695,'_fft_hide_header_call_to_action','field_635bd6723527d'),(182115,40695,'fft_page_sitemap','0'),(182116,40695,'_fft_page_sitemap','field_61af9b34e8181'),(182117,40695,'blocks_0_acfe_flexible_toggle',''),(182118,40695,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(182119,40695,'blocks_0_acfe_flexible_layout_title','Text Block'),(182120,40695,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(182121,40695,'blocks_0_options_theme','#f5f5f5'),(182122,40695,'_blocks_0_options_theme','field_6176830e2ad17'),(182123,40695,'blocks_0_options',''),(182124,40695,'_blocks_0_options','field_6176830e2ad16'),(182125,40695,'blocks_0_text_block_heading','Overview'),(182126,40695,'_blocks_0_text_block_heading','field_617669d413097'),(182127,40695,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(182128,40695,'_blocks_0_text_block_content','field_617669ec13098'),(182129,40695,'blocks_1_acfe_flexible_toggle',''),(182130,40695,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(182131,40695,'blocks_1_acfe_flexible_layout_title','Logos'),(182132,40695,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(182133,40695,'blocks_1_options_theme','#ffffff'),(182134,40695,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(182135,40695,'blocks_1_options_format','grid'),(182136,40695,'_blocks_1_options_format','field_61782964ee971'),(182137,40695,'blocks_1_options',''),(182138,40695,'_blocks_1_options','field_61782954ee965'),(182139,40695,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(182140,40695,'_blocks_1_logos','field_61782954ee96d'),(182141,40695,'blocks_1_title',''),(182142,40695,'_blocks_1_title','field_668fbfdc2daa1'),(182143,40695,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:18:\"testimonial_slider\";i:6;s:10:\"accordions\";}'),(182144,40695,'_blocks','field_6176696113096'),(182145,40695,'course_label_text','iMoveFreely Online CPD'),(182146,40695,'_course_label_text','field_61e17babf71fa'),(182147,40695,'course_label',''),(182148,40695,'_course_label','field_61e12f92749a7'),(182149,40695,'course_description','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(182150,40695,'_course_description','field_617ac5788e5e1'),(182151,40695,'course_key_info','3'),(182152,40695,'_course_key_info','field_617ac6ad8e5e2'),(182153,40695,'course_included','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.'),(182154,40695,'_course_included','field_617ac6f08e5e4'),(182155,40695,'blocks_2_acfe_flexible_toggle',''),(182156,40695,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(182157,40695,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(182158,40695,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(182159,40695,'blocks_2_options_theme','#b61234'),(182160,40695,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(182161,40695,'blocks_2_options_reverse','0'),(182162,40695,'_blocks_2_options_reverse','field_61768049bb8ac'),(182163,40695,'blocks_2_options',''),(182164,40695,'_blocks_2_options','field_617682517c334'),(182165,40695,'blocks_2_split_5050_image','40618'),(182166,40695,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(182167,40695,'blocks_2_split_5050_video',''),(182168,40695,'_blocks_2_split_5050_video','field_6239f3160848a'),(182169,40695,'blocks_2_split_5050_content_title',''),(182170,40695,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(182171,40695,'blocks_2_split_5050_content_heading','Course Overview'),(182172,40695,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(182173,40695,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.\r\n\r\nInstructors through Continuing Professional Development (CPD). To obtain your iMoveFreely Instructor certificate, face-to-face attendance is required.\r\n\r\nUpon payment, access the recorded workshop and instantly download the comprehensive handout PDF. For future access, simply log in using your registered email.'),(182174,40695,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(182175,40695,'blocks_2_split_5050_content_actions','1'),(182176,40695,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(182177,40695,'blocks_2_split_5050_content',''),(182178,40695,'_blocks_2_split_5050_content','field_61767afceb8ba'),(182179,40695,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182180,40695,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(182181,40695,'blocks_3_acfe_flexible_toggle',''),(182182,40695,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(182183,40695,'blocks_3_acfe_flexible_layout_title','Text Block'),(182184,40695,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(182185,40695,'blocks_3_options_theme','#ffffff'),(182186,40695,'_blocks_3_options_theme','field_6176830e2ad17'),(182187,40695,'blocks_3_options',''),(182188,40695,'_blocks_3_options','field_6176830e2ad16'),(182189,40695,'blocks_3_text_block_heading','Other Courses'),(182190,40695,'_blocks_3_text_block_heading','field_617669d413097'),(182191,40695,'blocks_3_text_block_content','Check out a range of other courses that are frequently purchased'),(182192,40695,'_blocks_3_text_block_content','field_617669ec13098'),(182193,40695,'blocks_4_acfe_flexible_toggle',''),(182194,40695,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(182195,40695,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(182196,40695,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(182197,40695,'blocks_4_options_theme','#ffffff'),(182198,40695,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(182199,40695,'blocks_4_options',''),(182200,40695,'_blocks_4_options','field_617ac0b7f6c08'),(182201,40695,'blocks_4_show','category'),(182202,40695,'_blocks_4_show','field_61a49cba9d946'),(182203,40695,'blocks_4_category','403'),(182204,40695,'_blocks_4_category','field_61a49cd79d947'),(182205,40695,'blocks_5_acfe_flexible_toggle',''),(182206,40695,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(182207,40695,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(182208,40695,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(182209,40695,'blocks_5_testimonial_slider_content_title',''),(182210,40695,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(182211,40695,'blocks_5_testimonial_slider_content_heading','Testimonials'),(182212,40695,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(182213,40695,'blocks_5_testimonial_slider_content_text',''),(182214,40695,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(182215,40695,'blocks_5_testimonial_slider_content_actions',''),(182216,40695,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(182217,40695,'blocks_5_testimonial_slider_content',''),(182218,40695,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(182219,40695,'blocks_5_testimonial_slider_items',''),(182220,40695,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(182221,40695,'blocks_5_testimonial_slider_ambassador_bool','0'),(182222,40695,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(182223,40695,'blocks_6_acfe_flexible_toggle',''),(182224,40695,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(182225,40695,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(182226,40695,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(182227,40695,'blocks_6_options_theme','#ffffff'),(182228,40695,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(182229,40695,'blocks_6_options_state','0'),(182230,40695,'_blocks_6_options_state','field_6239fcb7508c5'),(182231,40695,'blocks_6_options',''),(182232,40695,'_blocks_6_options','field_6177e2991ac44'),(182233,40695,'blocks_6_content_title',''),(182234,40695,'_blocks_6_content_title','field_64d237e8bb1e2'),(182235,40695,'blocks_6_content_heading',''),(182236,40695,'_blocks_6_content_heading','field_64d237e8bb1e3'),(182237,40695,'blocks_6_content_text',''),(182238,40695,'_blocks_6_content_text','field_64d237e8bb1e4'),(182239,40695,'blocks_6_content_actions',''),(182240,40695,'_blocks_6_content_actions','field_64d237e8bb1e5'),(182241,40695,'blocks_6_content_align','left'),(182242,40695,'_blocks_6_content_align','field_64d2443e6b6aa'),(182243,40695,'blocks_6_content',''),(182244,40695,'_blocks_6_content','field_64d237e8bb1e1'),(182245,40695,'blocks_6_accordion_content','custom'),(182246,40695,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(182247,40695,'blocks_6_accordion_items',''),(182248,40695,'_blocks_6_accordion_items','field_6177e2991ac4c'),(182249,40695,'blocks_6_actions',''),(182250,40695,'_blocks_6_actions','field_61a746a817f7a'),(182251,40695,'course_label_label_theme','#0d1f73'),(182252,40695,'_course_label_label_theme','field_61e17bb8f71fb'),(182253,40695,'course_key_info_0_text','Online CPD'),(182254,40695,'_course_key_info_0_text','field_617ac6c38e5e3'),(182255,40695,'course_key_info_1_text','Online Learning'),(182256,40695,'_course_key_info_1_text','field_617ac6c38e5e3'),(182257,40695,'course_key_info_2_text','Online Learning'),(182258,40695,'_course_key_info_2_text','field_617ac6c38e5e3'),(182259,40281,'course_label_label_theme','#0d1f73'),(182260,40281,'_course_label_label_theme','field_61e17bb8f71fb'),(182261,40281,'course_key_info_0_text','Online Learning'),(182262,40281,'_course_key_info_0_text','field_617ac6c38e5e3'),(182263,40281,'course_key_info_1_text','CPD'),(182264,40281,'_course_key_info_1_text','field_617ac6c38e5e3'),(182267,40281,'_yoast_wpseo_focuskw','Running Biomechanics'),(182268,40281,'_yoast_wpseo_metadesc','Simplify running styles with our Intro to Running Biomechanics training. Learn running mechanics, terminology, and influence factors.'),(182269,40281,'_yoast_wpseo_linkdex','47'),(182270,40696,'hide_hero','0'),(182271,40696,'_hide_hero','field_66a2380fcda39'),(182272,40696,'hero_title','Introduction To Running Biomechanics'),(182273,40696,'_hero_title','field_617571fe285e8'),(182274,40696,'hero_text','Discover the Secrets of Optimal Running Styles in this Comprehensive 3hr 15min Classroom Recording & Handout Session! '),(182275,40696,'_hero_text','field_6175723c285e9'),(182276,40696,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182277,40696,'_hero_actions_0_button','field_61757281285eb'),(182278,40696,'hero_actions','1'),(182279,40696,'_hero_actions','field_61757270285ea'),(182280,40696,'hero_style','default'),(182281,40696,'_hero_style','field_62051d9dc5324'),(182282,40696,'_thumbnail_id','40611'),(182283,40696,'__thumbnail_id','field_617570855ddaf'),(182284,40696,'hero_image_pos_x','right'),(182285,40696,'_hero_image_pos_x','field_62ec3d05390bb'),(182286,40696,'hero_image_pos_y','top'),(182287,40696,'_hero_image_pos_y','field_62ec3d05390bc'),(182288,40696,'hero_image_pos',''),(182289,40696,'_hero_image_pos','field_62ec3d05390ba'),(182290,40696,'fft_hide_from_listings','0'),(182291,40696,'_fft_hide_from_listings','field_61f1320446ab2'),(182292,40696,'fft_page_format','default'),(182293,40696,'_fft_page_format','field_61ae213f1f218'),(182294,40696,'fft_hide_nav','0'),(182295,40696,'_fft_hide_nav','field_635bd5e43527c'),(182296,40696,'fft_hide_header_call_to_action','0'),(182297,40696,'_fft_hide_header_call_to_action','field_635bd6723527d'),(182298,40696,'fft_page_sitemap','0'),(182299,40696,'_fft_page_sitemap','field_61af9b34e8181'),(182300,40696,'blocks_0_acfe_flexible_toggle',''),(182301,40696,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(182302,40696,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(182303,40696,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(182304,40696,'blocks_0_options_theme','#ffffff'),(182305,40696,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(182306,40696,'blocks_0_options_reverse','0'),(182307,40696,'_blocks_0_options_reverse','field_61768049bb8ac'),(182308,40696,'blocks_0_options',''),(182309,40696,'_blocks_0_options','field_617682517c334'),(182310,40696,'blocks_0_split_5050_image','40612'),(182311,40696,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(182312,40696,'blocks_0_split_5050_video',''),(182313,40696,'_blocks_0_split_5050_video','field_6239f3160848a'),(182314,40696,'blocks_0_split_5050_content_title',''),(182315,40696,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(182316,40696,'blocks_0_split_5050_content_heading','Course Overview'),(182317,40696,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(182318,40696,'blocks_0_split_5050_content_text','<strong>Embrace the Essence of Running</strong>\r\n\r\nRunning is a cornerstone of fitness, yet the ongoing debate on the best running style can be confusing. Simplify the complexity with our Introduction to Running Biomechanics Online Training.\r\n\r\n<strong>Tailored for You</strong>\r\n\r\nNo one-size-fits-all approach here. This workshop dissects the evidence supporting various running styles, empowering you to make informed choices for you and your clients.\r\n\r\n<strong>What You\'ll Gain</strong>\r\n<ul>\r\n 	<li>Master running club terminology.</li>\r\n 	<li>Grasp the mechanics and sequencing of different running gaits.</li>\r\n 	<li>Explore extrinsic influences and identify intrinsic restrictions.</li>\r\n</ul>'),(182319,40696,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(182320,40696,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182321,40696,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(182322,40696,'blocks_0_split_5050_content_actions','1'),(182323,40696,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(182324,40696,'blocks_0_split_5050_content',''),(182325,40696,'_blocks_0_split_5050_content','field_61767afceb8ba'),(182326,40696,'blocks_1_acfe_flexible_toggle',''),(182327,40696,'_blocks_1_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(182328,40696,'blocks_1_acfe_flexible_layout_title','Tabs'),(182329,40696,'_blocks_1_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(182330,40696,'blocks_1_options_theme','#f5f5f5'),(182331,40696,'_blocks_1_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(182332,40696,'blocks_1_options',''),(182333,40696,'_blocks_1_options','field_6177cfcd8140f'),(182334,40696,'blocks_1_tabs_0_tab_label','Elevate Your Expertise '),(182335,40696,'_blocks_1_tabs_0_tab_label','field_6177d0068141a'),(182336,40696,'blocks_1_tabs_0_tab_content_title',''),(182337,40696,'_blocks_1_tabs_0_tab_content_title','field_6177cfcd81414'),(182338,40696,'blocks_1_tabs_0_tab_content_heading',''),(182339,40696,'_blocks_1_tabs_0_tab_content_heading','field_6177cfcd81415'),(182340,40696,'blocks_1_tabs_0_tab_content_text','Crafted for fitness and exercise instructors seeking CPD, this online training enhances your understanding of both intrinsic and extrinsic biomechanics.\r\n\r\n<em>Note: A face-to-face attendance option is available for an attendance certificate.</em>'),(182341,40696,'_blocks_1_tabs_0_tab_content_text','field_6177cfcd81416'),(182342,40696,'blocks_1_tabs_0_tab_content_actions',''),(182343,40696,'_blocks_1_tabs_0_tab_content_actions','field_6177cfcd81417'),(182344,40696,'blocks_1_tabs_0_tab_content',''),(182345,40696,'_blocks_1_tabs_0_tab_content','field_6177cfcd81413'),(182346,40696,'blocks_1_tabs_0_tab_image',''),(182347,40696,'_blocks_1_tabs_0_tab_image','field_6177cfcd81412'),(182348,40696,'blocks_1_tabs_1_tab_label','Seamless Access '),(182349,40696,'_blocks_1_tabs_1_tab_label','field_6177d0068141a'),(182350,40696,'blocks_1_tabs_1_tab_content_title',''),(182351,40696,'_blocks_1_tabs_1_tab_content_title','field_6177cfcd81414'),(182352,40696,'blocks_1_tabs_1_tab_content_heading',''),(182353,40696,'_blocks_1_tabs_1_tab_content_heading','field_6177cfcd81415'),(182354,40696,'blocks_1_tabs_1_tab_content_text','Upon payment, promptly access the video link and download your handout PDF. For future access, log in with your email.'),(182355,40696,'_blocks_1_tabs_1_tab_content_text','field_6177cfcd81416'),(182356,40696,'blocks_1_tabs_1_tab_content_actions',''),(182357,40696,'_blocks_1_tabs_1_tab_content_actions','field_6177cfcd81417'),(182358,40696,'blocks_1_tabs_1_tab_content',''),(182359,40696,'_blocks_1_tabs_1_tab_content','field_6177cfcd81413'),(182360,40696,'blocks_1_tabs_1_tab_image',''),(182361,40696,'_blocks_1_tabs_1_tab_image','field_6177cfcd81412'),(182362,40696,'blocks_1_tabs_2_tab_label','Exclusive Workshop Option! '),(182363,40696,'_blocks_1_tabs_2_tab_label','field_6177d0068141a'),(182364,40696,'blocks_1_tabs_2_tab_content_title',''),(182365,40696,'_blocks_1_tabs_2_tab_content_title','field_6177cfcd81414'),(182366,40696,'blocks_1_tabs_2_tab_content_heading',''),(182367,40696,'_blocks_1_tabs_2_tab_content_heading','field_6177cfcd81415'),(182368,40696,'blocks_1_tabs_2_tab_content_text','Opt for the face-to-face Running Biomechanics Workshop, receive a refund on the online training, and secure your attendance certificate.'),(182369,40696,'_blocks_1_tabs_2_tab_content_text','field_6177cfcd81416'),(182370,40696,'blocks_1_tabs_2_tab_content_actions',''),(182371,40696,'_blocks_1_tabs_2_tab_content_actions','field_6177cfcd81417'),(182372,40696,'blocks_1_tabs_2_tab_content',''),(182373,40696,'_blocks_1_tabs_2_tab_content','field_6177cfcd81413'),(182374,40696,'blocks_1_tabs_2_tab_image',''),(182375,40696,'_blocks_1_tabs_2_tab_image','field_6177cfcd81412'),(182376,40696,'blocks_1_tabs_3_tab_label','Elevate Your Run Today '),(182377,40696,'_blocks_1_tabs_3_tab_label','field_6177d0068141a'),(182378,40696,'blocks_1_tabs_3_tab_content_title',''),(182379,40696,'_blocks_1_tabs_3_tab_content_title','field_6177cfcd81414'),(182380,40696,'blocks_1_tabs_3_tab_content_heading',''),(182381,40696,'_blocks_1_tabs_3_tab_content_heading','field_6177cfcd81415'),(182382,40696,'blocks_1_tabs_3_tab_content_text','Revolutionise your running journey with Introduction to Running Biomechanics. Enrol now for a transformative learning experience!'),(182383,40696,'_blocks_1_tabs_3_tab_content_text','field_6177cfcd81416'),(182384,40696,'blocks_1_tabs_3_tab_content_actions',''),(182385,40696,'_blocks_1_tabs_3_tab_content_actions','field_6177cfcd81417'),(182386,40696,'blocks_1_tabs_3_tab_content',''),(182387,40696,'_blocks_1_tabs_3_tab_content','field_6177cfcd81413'),(182388,40696,'blocks_1_tabs_3_tab_image',''),(182389,40696,'_blocks_1_tabs_3_tab_image','field_6177cfcd81412'),(182390,40696,'blocks_1_tabs','4'),(182391,40696,'_blocks_1_tabs','field_6177cff281419'),(182392,40696,'blocks_2_acfe_flexible_toggle',''),(182393,40696,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(182394,40696,'blocks_2_acfe_flexible_layout_title','Button(s)'),(182395,40696,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(182396,40696,'blocks_2_options_theme','#ffffff'),(182397,40696,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(182398,40696,'blocks_2_options',''),(182399,40696,'_blocks_2_options','field_623b03edb6e65'),(182400,40696,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182401,40696,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(182402,40696,'blocks_2_actions','1'),(182403,40696,'_blocks_2_actions','field_623b03edb6e6e'),(182404,40696,'blocks_3_acfe_flexible_toggle',''),(182405,40696,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(182406,40696,'blocks_3_acfe_flexible_layout_title','Text Block'),(182407,40696,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(182408,40696,'blocks_3_options_theme','#ffffff'),(182409,40696,'_blocks_3_options_theme','field_6176830e2ad17'),(182410,40696,'blocks_3_options',''),(182411,40696,'_blocks_3_options','field_6176830e2ad16'),(182412,40696,'blocks_3_text_block_heading','Please Note'),(182413,40696,'_blocks_3_text_block_heading','field_617669d413097'),(182414,40696,'blocks_3_text_block_content','This online training is designed to inform &amp; enhance understanding for fitness and exercise instructors through CPD. However, to gain an attendance certificate face to face attendance is required. Once you make your payment, please see the video link and DOWNLOAD your handout pdf immediately for instant access. Otherwise, you simply need to log back in using the email you signed in with to access all purchases.'),(182415,40696,'_blocks_3_text_block_content','field_617669ec13098'),(182416,40696,'blocks_4_acfe_flexible_toggle',''),(182417,40696,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(182418,40696,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(182419,40696,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(182420,40696,'blocks_4_options_theme','#ffffff'),(182421,40696,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(182422,40696,'blocks_4_options_state','0'),(182423,40696,'_blocks_4_options_state','field_6239fcb7508c5'),(182424,40696,'blocks_4_options',''),(182425,40696,'_blocks_4_options','field_6177e2991ac44'),(182426,40696,'blocks_4_content_title',''),(182427,40696,'_blocks_4_content_title','field_64d237e8bb1e2'),(182428,40696,'blocks_4_content_heading',''),(182429,40696,'_blocks_4_content_heading','field_64d237e8bb1e3'),(182430,40696,'blocks_4_content_text',''),(182431,40696,'_blocks_4_content_text','field_64d237e8bb1e4'),(182432,40696,'blocks_4_content_actions',''),(182433,40696,'_blocks_4_content_actions','field_64d237e8bb1e5'),(182434,40696,'blocks_4_content_align','left'),(182435,40696,'_blocks_4_content_align','field_64d2443e6b6aa'),(182436,40696,'blocks_4_content',''),(182437,40696,'_blocks_4_content','field_64d237e8bb1e1'),(182438,40696,'blocks_4_accordion_content','custom'),(182439,40696,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(182440,40696,'blocks_4_accordion_items',''),(182441,40696,'_blocks_4_accordion_items','field_6177e2991ac4c'),(182442,40696,'blocks_4_actions',''),(182443,40696,'_blocks_4_actions','field_61a746a817f7a'),(182444,40696,'blocks_5_acfe_flexible_toggle',''),(182445,40696,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(182446,40696,'blocks_5_acfe_flexible_layout_title','Text Block'),(182447,40696,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(182448,40696,'blocks_5_options_theme','#ffffff'),(182449,40696,'_blocks_5_options_theme','field_6176830e2ad17'),(182450,40696,'blocks_5_options',''),(182451,40696,'_blocks_5_options','field_6176830e2ad16'),(182452,40696,'blocks_5_text_block_heading','See Our Other CPD Courses'),(182453,40696,'_blocks_5_text_block_heading','field_617669d413097'),(182454,40696,'blocks_5_text_block_content','Check out our other frequently purchased CPD courses'),(182455,40696,'_blocks_5_text_block_content','field_617669ec13098'),(182456,40696,'blocks_6_acfe_flexible_toggle',''),(182457,40696,'_blocks_6_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(182458,40696,'blocks_6_acfe_flexible_layout_title','Course Comparison'),(182459,40696,'_blocks_6_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(182460,40696,'blocks_6_options_theme','#ffffff'),(182461,40696,'_blocks_6_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(182462,40696,'blocks_6_options',''),(182463,40696,'_blocks_6_options','field_617ac0b7f6c08'),(182464,40696,'blocks_6_show','category'),(182465,40696,'_blocks_6_show','field_61a49cba9d946'),(182466,40696,'blocks_6_category','403'),(182467,40696,'_blocks_6_category','field_61a49cd79d947'),(182468,40696,'blocks','a:7:{i:0;s:10:\"split_5050\";i:1;s:4:\"tabs\";i:2;s:7:\"buttons\";i:3;s:10:\"text_block\";i:4;s:10:\"accordions\";i:5;s:10:\"text_block\";i:6;s:14:\"course_compare\";}'),(182469,40696,'_blocks','field_6176696113096'),(182470,40696,'course_label_text','Introduction To Running Biomechanics'),(182471,40696,'_course_label_text','field_61e17babf71fa'),(182472,40696,'course_label',''),(182473,40696,'_course_label','field_61e12f92749a7'),(182474,40696,'course_description','Discover the Secrets of Optimal Running Styles in this Comprehensive 3hr 15min Classroom Recording & Handout Session! '),(182475,40696,'_course_description','field_617ac5788e5e1'),(182476,40696,'course_key_info','3'),(182477,40696,'_course_key_info','field_617ac6ad8e5e2'),(182478,40696,'course_included','Embrace the Essence of Running\r\n\r\nRunning is a cornerstone of fitness, yet the ongoing debate on the best running style can be confusing. Simplify the complexity with our Introduction to Running Biomechanics Online Training.\r\n\r\nTailored for You\r\n\r\nNo one-size-fits-all approach here. This workshop dissects the evidence supporting various running styles, empowering you to make informed choices for you and your clients.\r\n\r\nWhat You\'ll Gain\r\n\r\nMaster running club terminology.\r\nGrasp the mechanics and sequencing of different running gaits.\r\nExplore extrinsic influences and identify intrinsic restrictions.'),(182479,40696,'_course_included','field_617ac6f08e5e4'),(182480,40696,'course_label_label_theme','#0d1f73'),(182481,40696,'_course_label_label_theme','field_61e17bb8f71fb'),(182482,40696,'course_key_info_0_text','Online Learning'),(182483,40696,'_course_key_info_0_text','field_617ac6c38e5e3'),(182484,40696,'course_key_info_1_text','CPD'),(182485,40696,'_course_key_info_1_text','field_617ac6c38e5e3'),(182486,40696,'course_key_info_2_text',''),(182487,40696,'_course_key_info_2_text','field_617ac6c38e5e3'),(182488,40272,'course_label_label_theme','#0d1f73'),(182489,40272,'_course_label_label_theme','field_61e17bb8f71fb'),(182490,40272,'course_key_info_0_text','Online CPD'),(182491,40272,'_course_key_info_0_text','field_617ac6c38e5e3'),(182492,40272,'course_key_info_1_text','CIMSPA Endorsed'),(182493,40272,'_course_key_info_1_text','field_617ac6c38e5e3'),(182496,40272,'_yoast_wpseo_focuskw','Core Training'),(182497,40272,'_yoast_wpseo_metadesc','Master torso anatomy, muscle balance, and core training techniques with practical exercises and equipment tips in our comprehensive course.'),(182498,40272,'_yoast_wpseo_linkdex','47'),(182499,40697,'hide_hero','0'),(182500,40697,'_hide_hero','field_66a2380fcda39'),(182501,40697,'hero_title','Core Training'),(182502,40697,'_hero_title','field_617571fe285e8'),(182503,40697,'hero_text','Build on your skill set and get to the Core of Fitness with a CPD Accreditation in Core Training. '),(182504,40697,'_hero_text','field_6175723c285e9'),(182505,40697,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182506,40697,'_hero_actions_0_button','field_61757281285eb'),(182507,40697,'hero_actions','1'),(182508,40697,'_hero_actions','field_61757270285ea'),(182509,40697,'hero_style','default'),(182510,40697,'_hero_style','field_62051d9dc5324'),(182511,40697,'_thumbnail_id','40604'),(182512,40697,'__thumbnail_id','field_617570855ddaf'),(182513,40697,'hero_image_pos_x','right'),(182514,40697,'_hero_image_pos_x','field_62ec3d05390bb'),(182515,40697,'hero_image_pos_y','top'),(182516,40697,'_hero_image_pos_y','field_62ec3d05390bc'),(182517,40697,'hero_image_pos',''),(182518,40697,'_hero_image_pos','field_62ec3d05390ba'),(182519,40697,'fft_hide_from_listings','0'),(182520,40697,'_fft_hide_from_listings','field_61f1320446ab2'),(182521,40697,'fft_page_format','default'),(182522,40697,'_fft_page_format','field_61ae213f1f218'),(182523,40697,'fft_hide_nav','0'),(182524,40697,'_fft_hide_nav','field_635bd5e43527c'),(182525,40697,'fft_hide_header_call_to_action','0'),(182526,40697,'_fft_hide_header_call_to_action','field_635bd6723527d'),(182527,40697,'fft_page_sitemap','0'),(182528,40697,'_fft_page_sitemap','field_61af9b34e8181'),(182529,40697,'blocks_0_acfe_flexible_toggle',''),(182530,40697,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(182531,40697,'blocks_0_acfe_flexible_layout_title','Template'),(182532,40697,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(182533,40697,'blocks_0_template','39087'),(182534,40697,'_blocks_0_template','field_617bdd570fe01'),(182535,40697,'blocks_1_acfe_flexible_toggle',''),(182536,40697,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(182537,40697,'blocks_1_acfe_flexible_layout_title','Text Block'),(182538,40697,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(182539,40697,'blocks_1_options_theme','#f5f5f5'),(182540,40697,'_blocks_1_options_theme','field_6176830e2ad17'),(182541,40697,'blocks_1_options',''),(182542,40697,'_blocks_1_options','field_6176830e2ad16'),(182543,40697,'blocks_1_text_block_heading','Overview'),(182544,40697,'_blocks_1_text_block_heading','field_617669d413097'),(182545,40697,'blocks_1_text_block_content','Train with Future Fit, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own training, to stand out from the crowd with advanced knowledge.'),(182546,40697,'_blocks_1_text_block_content','field_617669ec13098'),(182547,40697,'blocks_2_acfe_flexible_toggle',''),(182548,40697,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(182549,40697,'blocks_2_acfe_flexible_layout_title','Logos'),(182550,40697,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(182551,40697,'blocks_2_options_theme','#ffffff'),(182552,40697,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(182553,40697,'blocks_2_options_format','grid'),(182554,40697,'_blocks_2_options_format','field_61782964ee971'),(182555,40697,'blocks_2_options',''),(182556,40697,'_blocks_2_options','field_61782954ee965'),(182557,40697,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(182558,40697,'_blocks_2_logos','field_61782954ee96d'),(182559,40697,'blocks_2_title',''),(182560,40697,'_blocks_2_title','field_668fbfdc2daa1'),(182561,40697,'blocks_3_acfe_flexible_toggle',''),(182562,40697,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(182563,40697,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(182564,40697,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(182565,40697,'blocks_3_options_theme','#f5f5f5'),(182566,40697,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(182567,40697,'blocks_3_options_reverse','0'),(182568,40697,'_blocks_3_options_reverse','field_61768049bb8ac'),(182569,40697,'blocks_3_options',''),(182570,40697,'_blocks_3_options','field_617682517c334'),(182571,40697,'blocks_3_split_5050_image','40605'),(182572,40697,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(182573,40697,'blocks_3_split_5050_video',''),(182574,40697,'_blocks_3_split_5050_video','field_6239f3160848a'),(182575,40697,'blocks_3_split_5050_content_title',''),(182576,40697,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(182577,40697,'blocks_3_split_5050_content_heading','Course Overview '),(182578,40697,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(182579,40697,'blocks_3_split_5050_content_text','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective and challenging core exercises for your clients across a wide range of needs and abilities.'),(182580,40697,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(182581,40697,'blocks_3_split_5050_content_actions',''),(182582,40697,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(182583,40697,'blocks_3_split_5050_content',''),(182584,40697,'_blocks_3_split_5050_content','field_61767afceb8ba'),(182585,40697,'blocks_4_acfe_flexible_toggle',''),(182586,40697,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(182587,40697,'blocks_4_acfe_flexible_layout_title','Tabs'),(182588,40697,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(182589,40697,'blocks_4_options_theme','#ffffff'),(182590,40697,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(182591,40697,'blocks_4_options',''),(182592,40697,'_blocks_4_options','field_6177cfcd8140f'),(182593,40697,'blocks_4_tabs_0_tab_label','Learning Type'),(182594,40697,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(182595,40697,'blocks_4_tabs_0_tab_content_title',''),(182596,40697,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(182597,40697,'blocks_4_tabs_0_tab_content_heading',''),(182598,40697,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(182599,40697,'blocks_4_tabs_0_tab_content_text','This core Training CPD course is taught through a 1-day online course. Learn from anywhere in the world.'),(182600,40697,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(182601,40697,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182602,40697,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(182603,40697,'blocks_4_tabs_0_tab_content_actions','1'),(182604,40697,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(182605,40697,'blocks_4_tabs_0_tab_content',''),(182606,40697,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(182607,40697,'blocks_4_tabs_0_tab_image',''),(182608,40697,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(182609,40697,'blocks_4_tabs_1_tab_label','Content covered '),(182610,40697,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(182611,40697,'blocks_4_tabs_1_tab_content_title',''),(182612,40697,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(182613,40697,'blocks_4_tabs_1_tab_content_heading',''),(182614,40697,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(182615,40697,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Anatomy and kinesiology of the torso</li>\r\n 	<li>Exercise and its role in muscle balance and posture</li>\r\n 	<li>Core strength and stability exercises and their practical application</li>\r\n 	<li>Techniques for developing a client’s body awareness</li>\r\n 	<li>Techniques of adaptation and progression in core training</li>\r\n 	<li>The use of equipment such as stability balls, medicine balls, free weights, resistance machines and resistance bands</li>\r\n</ul>'),(182616,40697,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(182617,40697,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182618,40697,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(182619,40697,'blocks_4_tabs_1_tab_content_actions','1'),(182620,40697,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(182621,40697,'blocks_4_tabs_1_tab_content',''),(182622,40697,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(182623,40697,'blocks_4_tabs_1_tab_image',''),(182624,40697,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(182625,40697,'blocks_4_tabs_2_tab_label','Assessment '),(182626,40697,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(182627,40697,'blocks_4_tabs_2_tab_content_title',''),(182628,40697,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(182629,40697,'blocks_4_tabs_2_tab_content_heading',''),(182630,40697,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(182631,40697,'blocks_4_tabs_2_tab_content_text','An online multiple choice knowledge check'),(182632,40697,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(182633,40697,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182634,40697,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(182635,40697,'blocks_4_tabs_2_tab_content_actions','1'),(182636,40697,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(182637,40697,'blocks_4_tabs_2_tab_content',''),(182638,40697,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(182639,40697,'blocks_4_tabs_2_tab_image',''),(182640,40697,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(182641,40697,'blocks_4_tabs_3_tab_label','E-learning '),(182642,40697,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(182643,40697,'blocks_4_tabs_3_tab_content_title',''),(182644,40697,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(182645,40697,'blocks_4_tabs_3_tab_content_heading',''),(182646,40697,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(182647,40697,'blocks_4_tabs_3_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(182648,40697,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(182649,40697,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182650,40697,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(182651,40697,'blocks_4_tabs_3_tab_content_actions','1'),(182652,40697,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(182653,40697,'blocks_4_tabs_3_tab_content',''),(182654,40697,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(182655,40697,'blocks_4_tabs_3_tab_image',''),(182656,40697,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(182657,40697,'blocks_4_tabs_4_tab_label','Content '),(182658,40697,'_blocks_4_tabs_4_tab_label','field_6177d0068141a'),(182659,40697,'blocks_4_tabs_4_tab_content_title',''),(182660,40697,'_blocks_4_tabs_4_tab_content_title','field_6177cfcd81414'),(182661,40697,'blocks_4_tabs_4_tab_content_heading',''),(182662,40697,'_blocks_4_tabs_4_tab_content_heading','field_6177cfcd81415'),(182663,40697,'blocks_4_tabs_4_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(182664,40697,'_blocks_4_tabs_4_tab_content_text','field_6177cfcd81416'),(182665,40697,'blocks_4_tabs_4_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182666,40697,'_blocks_4_tabs_4_tab_content_actions_0_button','field_6177cfcd81418'),(182667,40697,'blocks_4_tabs_4_tab_content_actions','1'),(182668,40697,'_blocks_4_tabs_4_tab_content_actions','field_6177cfcd81417'),(182669,40697,'blocks_4_tabs_4_tab_content',''),(182670,40697,'_blocks_4_tabs_4_tab_content','field_6177cfcd81413'),(182671,40697,'blocks_4_tabs_4_tab_image',''),(182672,40697,'_blocks_4_tabs_4_tab_image','field_6177cfcd81412'),(182673,40697,'blocks_4_tabs_5_tab_label','Assessment '),(182674,40697,'_blocks_4_tabs_5_tab_label','field_6177d0068141a'),(182675,40697,'blocks_4_tabs_5_tab_content_title',''),(182676,40697,'_blocks_4_tabs_5_tab_content_title','field_6177cfcd81414'),(182677,40697,'blocks_4_tabs_5_tab_content_heading',''),(182678,40697,'_blocks_4_tabs_5_tab_content_heading','field_6177cfcd81415'),(182679,40697,'blocks_4_tabs_5_tab_content_text','There is no assessment for this course.'),(182680,40697,'_blocks_4_tabs_5_tab_content_text','field_6177cfcd81416'),(182681,40697,'blocks_4_tabs_5_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182682,40697,'_blocks_4_tabs_5_tab_content_actions_0_button','field_6177cfcd81418'),(182683,40697,'blocks_4_tabs_5_tab_content_actions','1'),(182684,40697,'_blocks_4_tabs_5_tab_content_actions','field_6177cfcd81417'),(182685,40697,'blocks_4_tabs_5_tab_content',''),(182686,40697,'_blocks_4_tabs_5_tab_content','field_6177cfcd81413'),(182687,40697,'blocks_4_tabs_5_tab_image',''),(182688,40697,'_blocks_4_tabs_5_tab_image','field_6177cfcd81412'),(182689,40697,'blocks_4_tabs_6_tab_label','Entry requirements'),(182690,40697,'_blocks_4_tabs_6_tab_label','field_6177d0068141a'),(182691,40697,'blocks_4_tabs_6_tab_content_title',''),(182692,40697,'_blocks_4_tabs_6_tab_content_title','field_6177cfcd81414'),(182693,40697,'blocks_4_tabs_6_tab_content_heading',''),(182694,40697,'_blocks_4_tabs_6_tab_content_heading','field_6177cfcd81415'),(182695,40697,'blocks_4_tabs_6_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>Level 2 Gym Instructor.</li>\r\n</ul>\r\nIf you don’t have this qualification, why not find out more about our Level 2 Gym Instructor certificate.\r\n\r\nWe also recommend reading our personal training blog posts before starting the course. There is loads of useful material to help cement your understanding of personal training! Read them here:\r\n<ul>\r\n 	<li>Newly qualified personal trainer? The 5 skills you need to learn now</li>\r\n 	<li>Personal training: expectations | costs | benefits | skills</li>\r\n</ul>'),(182696,40697,'_blocks_4_tabs_6_tab_content_text','field_6177cfcd81416'),(182697,40697,'blocks_4_tabs_6_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182698,40697,'_blocks_4_tabs_6_tab_content_actions_0_button','field_6177cfcd81418'),(182699,40697,'blocks_4_tabs_6_tab_content_actions','1'),(182700,40697,'_blocks_4_tabs_6_tab_content_actions','field_6177cfcd81417'),(182701,40697,'blocks_4_tabs_6_tab_content',''),(182702,40697,'_blocks_4_tabs_6_tab_content','field_6177cfcd81413'),(182703,40697,'blocks_4_tabs_6_tab_image',''),(182704,40697,'_blocks_4_tabs_6_tab_image','field_6177cfcd81412'),(182705,40697,'blocks_4_tabs','7'),(182706,40697,'_blocks_4_tabs','field_6177cff281419'),(182707,40697,'blocks_5_acfe_flexible_toggle',''),(182708,40697,'_blocks_5_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(182709,40697,'blocks_5_acfe_flexible_layout_title','Template'),(182710,40697,'_blocks_5_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(182711,40697,'blocks_5_template','39401'),(182712,40697,'_blocks_5_template','field_617bdd570fe01'),(182713,40697,'blocks_6_acfe_flexible_toggle',''),(182714,40697,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(182715,40697,'blocks_6_acfe_flexible_layout_title','Text Block'),(182716,40697,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(182717,40697,'blocks_6_options_theme','#b61234'),(182718,40697,'_blocks_6_options_theme','field_6176830e2ad17'),(182719,40697,'blocks_6_options',''),(182720,40697,'_blocks_6_options','field_6176830e2ad16'),(182721,40697,'blocks_6_text_block_heading','Why study this core training course?  '),(182722,40697,'_blocks_6_text_block_heading','field_617669d413097'),(182723,40697,'blocks_6_text_block_content','Studying this core training course will help you have a better understanding of helping people develop core stability and core strength. You will find out the best ways to incorporate core training into your client’s workouts to provide them with a valuable and enjoyable session.\r\n\r\nAs a fitness coach or instructor, having a good understanding of core strength is fundamental to all clients or group classes, having this knowledge will teach you how to ensure your clients are using their core strength and stability where they can. Having good core stability and strength can improve other factors such as exercise form and mobility, therefore this is valuable to all clients as a trainer.'),(182724,40697,'_blocks_6_text_block_content','field_617669ec13098'),(182725,40697,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:8:\"template\";i:6;s:10:\"text_block\";i:7;s:10:\"text_block\";i:8;s:14:\"course_compare\";i:9;s:10:\"accordions\";}'),(182726,40697,'_blocks','field_6176696113096'),(182727,40697,'course_label_text','Core Training'),(182728,40697,'_course_label_text','field_61e17babf71fa'),(182729,40697,'course_label',''),(182730,40697,'_course_label','field_61e12f92749a7'),(182731,40697,'course_description','Build on your skill set and get to the Core of Fitness with a CPD Accreditation in Core Training. '),(182732,40697,'_course_description','field_617ac5788e5e1'),(182733,40697,'course_key_info','3'),(182734,40697,'_course_key_info','field_617ac6ad8e5e2'),(182735,40697,'course_included','Anatomy and kinesiology of the torso\r\nExercise and its role in muscle balance and posture\r\nCore strength and stability exercises and their practical application\r\nTechniques for developing a client’s body awareness\r\nTechniques of adaptation and progression in core training\r\nThe use of equipment such as stability balls, medicine balls, free weights, resistance machines and resistance bands'),(182736,40697,'_course_included','field_617ac6f08e5e4'),(182737,40697,'blocks_7_acfe_flexible_toggle',''),(182738,40697,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(182739,40697,'blocks_7_acfe_flexible_layout_title','Text Block'),(182740,40697,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(182741,40697,'blocks_7_options_theme','#ffffff'),(182742,40697,'_blocks_7_options_theme','field_6176830e2ad17'),(182743,40697,'blocks_7_options',''),(182744,40697,'_blocks_7_options','field_6176830e2ad16'),(182745,40697,'blocks_7_text_block_heading','Frequently Bought Together'),(182746,40697,'_blocks_7_text_block_heading','field_617669d413097'),(182747,40697,'blocks_7_text_block_content','Check out more of our courses that are frequently purchased together'),(182748,40697,'_blocks_7_text_block_content','field_617669ec13098'),(182749,40697,'blocks_8_acfe_flexible_toggle',''),(182750,40697,'_blocks_8_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(182751,40697,'blocks_8_acfe_flexible_layout_title','Course Comparison'),(182752,40697,'_blocks_8_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(182753,40697,'blocks_8_options_theme','#ffffff'),(182754,40697,'_blocks_8_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(182755,40697,'blocks_8_options',''),(182756,40697,'_blocks_8_options','field_617ac0b7f6c08'),(182757,40697,'blocks_8_show','category'),(182758,40697,'_blocks_8_show','field_61a49cba9d946'),(182759,40697,'blocks_8_category','403'),(182760,40697,'_blocks_8_category','field_61a49cd79d947'),(182761,40697,'blocks_9_acfe_flexible_toggle',''),(182762,40697,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(182763,40697,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(182764,40697,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(182765,40697,'blocks_9_options_theme','#ffffff'),(182766,40697,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(182767,40697,'blocks_9_options_state','0'),(182768,40697,'_blocks_9_options_state','field_6239fcb7508c5'),(182769,40697,'blocks_9_options',''),(182770,40697,'_blocks_9_options','field_6177e2991ac44'),(182771,40697,'blocks_9_content_title',''),(182772,40697,'_blocks_9_content_title','field_64d237e8bb1e2'),(182773,40697,'blocks_9_content_heading','FAQ\'s'),(182774,40697,'_blocks_9_content_heading','field_64d237e8bb1e3'),(182775,40697,'blocks_9_content_text',''),(182776,40697,'_blocks_9_content_text','field_64d237e8bb1e4'),(182777,40697,'blocks_9_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182778,40697,'_blocks_9_content_actions_0_button','field_64d237e8bb1e6'),(182779,40697,'blocks_9_content_actions','1'),(182780,40697,'_blocks_9_content_actions','field_64d237e8bb1e5'),(182781,40697,'blocks_9_content_align','left'),(182782,40697,'_blocks_9_content_align','field_64d2443e6b6aa'),(182783,40697,'blocks_9_content',''),(182784,40697,'_blocks_9_content','field_64d237e8bb1e1'),(182785,40697,'blocks_9_accordion_content','faqs'),(182786,40697,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(182787,40697,'blocks_9_accordion_faqs_select','a:5:{i:0;s:5:\"39422\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(182788,40697,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(182789,40697,'blocks_9_actions',''),(182790,40697,'_blocks_9_actions','field_61a746a817f7a'),(182791,40697,'course_label_label_theme','#0d1f73'),(182792,40697,'_course_label_label_theme','field_61e17bb8f71fb'),(182793,40697,'course_key_info_0_text','Online CPD'),(182794,40697,'_course_key_info_0_text','field_617ac6c38e5e3'),(182795,40697,'course_key_info_1_text','Online Learning'),(182796,40697,'_course_key_info_1_text','field_617ac6c38e5e3'),(182797,40697,'course_key_info_2_text','CIMSPA'),(182798,40697,'_course_key_info_2_text','field_617ac6c38e5e3'),(182800,40271,'course_label_label_theme','#0d1f73'),(182801,40271,'_course_label_label_theme','field_61e17bb8f71fb'),(182802,40271,'course_key_info_0_text','No Entry Requirements'),(182803,40271,'_course_key_info_0_text','field_617ac6c38e5e3'),(182804,40271,'course_key_info_1_text','Online Learning'),(182805,40271,'_course_key_info_1_text','field_617ac6c38e5e3'),(182806,40271,'course_key_info_2_text','CPD'),(182807,40271,'_course_key_info_2_text','field_617ac6c38e5e3'),(182808,40271,'_yoast_wpseo_focuskw','COACHING FITNESS'),(182809,40271,'_yoast_wpseo_metadesc','Master online coaching management with our course on marketing, legalities, sales, online assessments, coaching, and insurance.'),(182810,40271,'_yoast_wpseo_linkdex','46'),(182811,40698,'hide_hero','0'),(182812,40698,'_hide_hero','field_66a2380fcda39'),(182813,40698,'hero_title','Coaching Fitness Online'),(182814,40698,'_hero_title','field_617571fe285e8'),(182815,40698,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(182816,40698,'_hero_text','field_6175723c285e9'),(182817,40698,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182818,40698,'_hero_actions_0_button','field_61757281285eb'),(182819,40698,'hero_actions','1'),(182820,40698,'_hero_actions','field_61757270285ea'),(182821,40698,'hero_style','default'),(182822,40698,'_hero_style','field_62051d9dc5324'),(182823,40698,'hero_image_pos_x','right'),(182824,40698,'_hero_image_pos_x','field_62ec3d05390bb'),(182825,40698,'hero_image_pos_y','top'),(182826,40698,'_hero_image_pos_y','field_62ec3d05390bc'),(182827,40698,'hero_image_pos',''),(182828,40698,'_hero_image_pos','field_62ec3d05390ba'),(182829,40698,'fft_hide_from_listings','0'),(182830,40698,'_fft_hide_from_listings','field_61f1320446ab2'),(182831,40698,'fft_page_format','default'),(182832,40698,'_fft_page_format','field_61ae213f1f218'),(182833,40698,'fft_hide_nav','0'),(182834,40698,'_fft_hide_nav','field_635bd5e43527c'),(182835,40698,'fft_hide_header_call_to_action','0'),(182836,40698,'_fft_hide_header_call_to_action','field_635bd6723527d'),(182837,40698,'fft_page_sitemap','0'),(182838,40698,'_fft_page_sitemap','field_61af9b34e8181'),(182839,40698,'blocks_0_acfe_flexible_toggle',''),(182840,40698,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(182841,40698,'blocks_0_acfe_flexible_layout_title','Template'),(182842,40698,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(182843,40698,'blocks_0_template','39087'),(182844,40698,'_blocks_0_template','field_617bdd570fe01'),(182845,40698,'blocks_1_acfe_flexible_toggle',''),(182846,40698,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(182847,40698,'blocks_1_acfe_flexible_layout_title','Text Block'),(182848,40698,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(182849,40698,'blocks_1_options_theme','#f5f5f5'),(182850,40698,'_blocks_1_options_theme','field_6176830e2ad17'),(182851,40698,'blocks_1_options',''),(182852,40698,'_blocks_1_options','field_6176830e2ad16'),(182853,40698,'blocks_1_text_block_heading','Course Overview'),(182854,40698,'_blocks_1_text_block_heading','field_617669d413097'),(182855,40698,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(182856,40698,'_blocks_1_text_block_content','field_617669ec13098'),(182857,40698,'blocks_2_acfe_flexible_toggle',''),(182858,40698,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(182859,40698,'blocks_2_acfe_flexible_layout_title','Logos'),(182860,40698,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(182861,40698,'blocks_2_options_theme','#ffffff'),(182862,40698,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(182863,40698,'blocks_2_options_format','grid'),(182864,40698,'_blocks_2_options_format','field_61782964ee971'),(182865,40698,'blocks_2_options',''),(182866,40698,'_blocks_2_options','field_61782954ee965'),(182867,40698,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(182868,40698,'_blocks_2_logos','field_61782954ee96d'),(182869,40698,'blocks_2_title',''),(182870,40698,'_blocks_2_title','field_668fbfdc2daa1'),(182871,40698,'blocks_3_acfe_flexible_toggle',''),(182872,40698,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(182873,40698,'blocks_3_acfe_flexible_layout_title','Timeline'),(182874,40698,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(182875,40698,'blocks_3_options_theme','#b61234'),(182876,40698,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(182877,40698,'blocks_3_options',''),(182878,40698,'_blocks_3_options','field_6177de53d1195'),(182879,40698,'blocks_3_timeline_content_title',''),(182880,40698,'_blocks_3_timeline_content_title','field_6177de53d1198'),(182881,40698,'blocks_3_timeline_content_heading','Course overview'),(182882,40698,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(182883,40698,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(182884,40698,'_blocks_3_timeline_content_text','field_6177de53d119a'),(182885,40698,'blocks_3_timeline_content_actions',''),(182886,40698,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(182887,40698,'blocks_3_timeline_content',''),(182888,40698,'_blocks_3_timeline_content','field_6177de53d1197'),(182889,40698,'blocks_3_timeline_items_0_title','CIMSPA'),(182890,40698,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(182891,40698,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(182892,40698,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(182893,40698,'blocks_3_timeline_items_1_title','Course Type'),(182894,40698,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(182895,40698,'blocks_3_timeline_items_1_text','100% Online Learning'),(182896,40698,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(182897,40698,'blocks_3_timeline_items_2_title','CPD points'),(182898,40698,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(182899,40698,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(182900,40698,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(182901,40698,'blocks_3_timeline_items_3_title','Learning'),(182902,40698,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(182903,40698,'blocks_3_timeline_items_3_text','5-7 Hours '),(182904,40698,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(182905,40698,'blocks_3_timeline_items','4'),(182906,40698,'_blocks_3_timeline_items','field_6177de53d119d'),(182907,40698,'blocks','a:15:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";i:8;s:8:\"template\";i:9;s:10:\"text_block\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:18:\"testimonial_slider\";i:13;s:5:\"video\";i:14;s:13:\"step_timeline\";}'),(182908,40698,'_blocks','field_6176696113096'),(182909,40698,'course_label_text','Coaching Fitness Online'),(182910,40698,'_course_label_text','field_61e17babf71fa'),(182911,40698,'course_label',''),(182912,40698,'_course_label','field_61e12f92749a7'),(182913,40698,'course_description','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(182914,40698,'_course_description','field_617ac5788e5e1'),(182915,40698,'course_key_info','3'),(182916,40698,'_course_key_info','field_617ac6ad8e5e2'),(182917,40698,'course_included','Marketing your business\r\nMarketing for new clients\r\nSales structure & management\r\nCoaching clients online\r\nLegalities of running a business\r\nEast – to- implement strategies\r\nInsurance help & guidance'),(182918,40698,'_course_included','field_617ac6f08e5e4'),(182919,40698,'blocks_4_acfe_flexible_toggle',''),(182920,40698,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(182921,40698,'blocks_4_acfe_flexible_layout_title','Text Block'),(182922,40698,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(182923,40698,'blocks_4_options_theme','#ffffff'),(182924,40698,'_blocks_4_options_theme','field_6176830e2ad17'),(182925,40698,'blocks_4_options',''),(182926,40698,'_blocks_4_options','field_6176830e2ad16'),(182927,40698,'blocks_4_text_block_heading','Learn more about this course'),(182928,40698,'_blocks_4_text_block_heading','field_617669d413097'),(182929,40698,'blocks_4_text_block_content','Understand how to start an online coaching fitness business by learning from the experts on essential marketing and business need to knows to successfully start your business online. This course is perfect for those looking to adapt their current approach as any coach, by learning how to manage clients online and make a business from doing this. This course will provide all the resources you need to start online coaching by providing you with help, advice and guidance on making this work for your clients.'),(182930,40698,'_blocks_4_text_block_content','field_617669ec13098'),(182931,40698,'blocks_5_acfe_flexible_toggle',''),(182932,40698,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(182933,40698,'blocks_5_acfe_flexible_layout_title','Tabs'),(182934,40698,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(182935,40698,'blocks_5_options_theme','#ffffff'),(182936,40698,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(182937,40698,'blocks_5_options',''),(182938,40698,'_blocks_5_options','field_6177cfcd8140f'),(182939,40698,'blocks_5_tabs_0_tab_label','What’s included'),(182940,40698,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(182941,40698,'blocks_5_tabs_0_tab_content_title',''),(182942,40698,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(182943,40698,'blocks_5_tabs_0_tab_content_heading',''),(182944,40698,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(182945,40698,'blocks_5_tabs_0_tab_content_text','This course will teach you vital skills in running your business online, by exploring marketing, legalisations, sales, online assessments, coaching and insurance. Prevent your services from being restricted by location as you get clients from several locations which will enhance your earning potential and even improve time efficiency in your client management.'),(182946,40698,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(182947,40698,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182948,40698,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(182949,40698,'blocks_5_tabs_0_tab_content_actions','1'),(182950,40698,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(182951,40698,'blocks_5_tabs_0_tab_content',''),(182952,40698,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(182953,40698,'blocks_5_tabs_0_tab_image',''),(182954,40698,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(182955,40698,'blocks_5_tabs_1_tab_label','Course details'),(182956,40698,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(182957,40698,'blocks_5_tabs_1_tab_content_title',''),(182958,40698,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(182959,40698,'blocks_5_tabs_1_tab_content_heading',''),(182960,40698,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(182961,40698,'blocks_5_tabs_1_tab_content_text','Developed by PT Master Trainer Mark Laws and in partnership with My PT Hub, a leading PT software business.\r\n<ul>\r\n 	<li>Marketing your business</li>\r\n 	<li>Marketing for new clients</li>\r\n 	<li>Sales structure &amp; management</li>\r\n 	<li>Coaching clients online</li>\r\n 	<li>Legalities of running a business</li>\r\n 	<li>East – to- implement strategies</li>\r\n 	<li>Insurance help &amp; guidance</li>\r\n</ul>'),(182962,40698,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(182963,40698,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182964,40698,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(182965,40698,'blocks_5_tabs_1_tab_content_actions','1'),(182966,40698,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(182967,40698,'blocks_5_tabs_1_tab_content',''),(182968,40698,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(182969,40698,'blocks_5_tabs_1_tab_image',''),(182970,40698,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(182971,40698,'blocks_5_tabs_2_tab_label','Entry requirements'),(182972,40698,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(182973,40698,'blocks_5_tabs_2_tab_content_title',''),(182974,40698,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(182975,40698,'blocks_5_tabs_2_tab_content_heading',''),(182976,40698,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(182977,40698,'blocks_5_tabs_2_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>There are no formal requirements for this course.</li>\r\n 	<li>However, we do recommend those studying this course are qualified instructors or personal trainers.</li>\r\n</ul>'),(182978,40698,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(182979,40698,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(182980,40698,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(182981,40698,'blocks_5_tabs_2_tab_content_actions','1'),(182982,40698,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(182983,40698,'blocks_5_tabs_2_tab_content',''),(182984,40698,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(182985,40698,'blocks_5_tabs_2_tab_image',''),(182986,40698,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(182987,40698,'blocks_5_tabs','3'),(182988,40698,'_blocks_5_tabs','field_6177cff281419'),(182989,40698,'blocks_6_acfe_flexible_toggle',''),(182990,40698,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(182991,40698,'blocks_6_acfe_flexible_layout_title','Text Block'),(182992,40698,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(182993,40698,'blocks_6_options_theme','#ffffff'),(182994,40698,'_blocks_6_options_theme','field_6176830e2ad17'),(182995,40698,'blocks_6_options',''),(182996,40698,'_blocks_6_options','field_6176830e2ad16'),(182997,40698,'blocks_6_text_block_heading','Blogs'),(182998,40698,'_blocks_6_text_block_heading','field_617669d413097'),(182999,40698,'blocks_6_text_block_content','Why not read some of our blogs on personal training, pilates, nutrition and health and well being before starting the course? We provide valuable business information in all areas to help cement your understanding. Read them here:'),(183000,40698,'_blocks_6_text_block_content','field_617669ec13098'),(183001,40698,'blocks_7_acfe_flexible_toggle',''),(183002,40698,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(183003,40698,'blocks_7_acfe_flexible_layout_title','Cards'),(183004,40698,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(183005,40698,'blocks_7_options_theme','#ffffff'),(183006,40698,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(183007,40698,'blocks_7_options_format','carousel'),(183008,40698,'_blocks_7_options_format','field_617a7b15245b5'),(183009,40698,'blocks_7_options_style','featured'),(183010,40698,'_blocks_7_options_style','field_6278ffb63484a'),(183011,40698,'blocks_7_options_cards_current_listing','0'),(183012,40698,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(183013,40698,'blocks_7_options_cards_content','term'),(183014,40698,'_blocks_7_options_cards_content','field_617aba6122688'),(183015,40698,'blocks_7_options_cards_term','5'),(183016,40698,'_blocks_7_options_cards_term','field_6193f7c180895'),(183017,40698,'blocks_7_options_cards_posts_per_page','6'),(183018,40698,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(183019,40698,'blocks_7_options',''),(183020,40698,'_blocks_7_options','field_617a7b15245b3'),(183021,40698,'blocks_8_acfe_flexible_toggle',''),(183022,40698,'_blocks_8_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(183023,40698,'blocks_8_acfe_flexible_layout_title','Template'),(183024,40698,'_blocks_8_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(183025,40698,'blocks_8_template','39401'),(183026,40698,'_blocks_8_template','field_617bdd570fe01'),(183027,40698,'blocks_9_acfe_flexible_toggle',''),(183028,40698,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(183029,40698,'blocks_9_acfe_flexible_layout_title','Text Block'),(183030,40698,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(183031,40698,'blocks_9_options_theme','#f5f5f5'),(183032,40698,'_blocks_9_options_theme','field_6176830e2ad17'),(183033,40698,'blocks_9_options',''),(183034,40698,'_blocks_9_options','field_6176830e2ad16'),(183035,40698,'blocks_9_text_block_heading','Job Opportunities '),(183036,40698,'_blocks_9_text_block_heading','field_617669d413097'),(183037,40698,'blocks_9_text_block_content','As an online coaching fitness professional, you will be able to successfully deliver a Personal Training Business online with the skills and knowledge needed to lead effective sessions.\r\n<ul>\r\n 	<li>Work as a fully remote as an Online Personal Trainer.</li>\r\n 	<li>Split in gym PT sessions with Online PT sessions giving you more scope to be flexible with your time and the clients.</li>\r\n</ul>\r\nWhichever route you take, online coaching has become increasingly popular amongst clientele; being able to operate online creates a new audience and new opportunities.'),(183038,40698,'_blocks_9_text_block_content','field_617669ec13098'),(183039,40698,'blocks_10_acfe_flexible_toggle',''),(183040,40698,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(183041,40698,'blocks_10_acfe_flexible_layout_title','Text Block'),(183042,40698,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(183043,40698,'blocks_10_options_theme','#ffffff'),(183044,40698,'_blocks_10_options_theme','field_6176830e2ad17'),(183045,40698,'blocks_10_options',''),(183046,40698,'_blocks_10_options','field_6176830e2ad16'),(183047,40698,'blocks_10_text_block_heading','Frequently Bought Together'),(183048,40698,'_blocks_10_text_block_heading','field_617669d413097'),(183049,40698,'blocks_10_text_block_content','Check out other courses we offer that are frequently bought together'),(183050,40698,'_blocks_10_text_block_content','field_617669ec13098'),(183051,40698,'blocks_11_acfe_flexible_toggle',''),(183052,40698,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(183053,40698,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(183054,40698,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(183055,40698,'blocks_11_options_theme','#ffffff'),(183056,40698,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(183057,40698,'blocks_11_options',''),(183058,40698,'_blocks_11_options','field_617ac0b7f6c08'),(183059,40698,'blocks_11_show','category'),(183060,40698,'_blocks_11_show','field_61a49cba9d946'),(183061,40698,'blocks_11_category','403'),(183062,40698,'_blocks_11_category','field_61a49cd79d947'),(183063,40698,'blocks_12_acfe_flexible_toggle',''),(183064,40698,'_blocks_12_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(183065,40698,'blocks_12_acfe_flexible_layout_title','Testimonial Slider'),(183066,40698,'_blocks_12_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(183067,40698,'blocks_12_testimonial_slider_content_title',''),(183068,40698,'_blocks_12_testimonial_slider_content_title','field_617c033b39a60'),(183069,40698,'blocks_12_testimonial_slider_content_heading','Testimonials'),(183070,40698,'_blocks_12_testimonial_slider_content_heading','field_617c033b39a61'),(183071,40698,'blocks_12_testimonial_slider_content_text','Read testimonials from people who have purchased this course before.'),(183072,40698,'_blocks_12_testimonial_slider_content_text','field_617c033b39a62'),(183073,40698,'blocks_12_testimonial_slider_content_actions',''),(183074,40698,'_blocks_12_testimonial_slider_content_actions','field_617c033b39a63'),(183075,40698,'blocks_12_testimonial_slider_content',''),(183076,40698,'_blocks_12_testimonial_slider_content','field_617c033b39a5f'),(183077,40698,'blocks_12_testimonial_slider_items',''),(183078,40698,'_blocks_12_testimonial_slider_items','field_61812eaeb20eb'),(183079,40698,'blocks_12_testimonial_slider_ambassador_bool','0'),(183080,40698,'_blocks_12_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(183081,40698,'blocks_13_acfe_flexible_toggle',''),(183082,40698,'_blocks_13_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(183083,40698,'blocks_13_acfe_flexible_layout_title','Video'),(183084,40698,'_blocks_13_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(183085,40698,'blocks_13_size','large'),(183086,40698,'_blocks_13_size','field_6487038f297c1'),(183087,40698,'blocks_13_row_content_title',''),(183088,40698,'_blocks_13_row_content_title','field_64870132a865d'),(183089,40698,'blocks_13_row_content_heading','Coaching Fitness Online '),(183090,40698,'_blocks_13_row_content_heading','field_64870142a865e'),(183091,40698,'blocks_13_row_content_text',''),(183092,40698,'_blocks_13_row_content_text','field_64870148a865f'),(183093,40698,'blocks_13_row_content',''),(183094,40698,'_blocks_13_row_content','field_6487008ba865c'),(183095,40698,'blocks_13_video_src','https://www.youtube.com/watch?v=whTK4-PJ_DA&t=1s'),(183096,40698,'_blocks_13_video_src','field_6193c4a98ec07'),(183097,40698,'blocks_13_video_thumbnail',''),(183098,40698,'_blocks_13_video_thumbnail','field_6193c4a08ec06'),(183099,40698,'blocks_14_acfe_flexible_toggle',''),(183100,40698,'_blocks_14_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(183101,40698,'blocks_14_acfe_flexible_layout_title','Timeline'),(183102,40698,'_blocks_14_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(183103,40698,'blocks_14_options_theme','#ffffff'),(183104,40698,'_blocks_14_options_theme','field_6177de53d1196_field_6176830e2ad17'),(183105,40698,'blocks_14_options',''),(183106,40698,'_blocks_14_options','field_6177de53d1195'),(183107,40698,'blocks_14_timeline_content_title',''),(183108,40698,'_blocks_14_timeline_content_title','field_6177de53d1198'),(183109,40698,'blocks_14_timeline_content_heading','Why should I study this course?'),(183110,40698,'_blocks_14_timeline_content_heading','field_6177de53d1199'),(183111,40698,'blocks_14_timeline_content_text',''),(183112,40698,'_blocks_14_timeline_content_text','field_6177de53d119a'),(183113,40698,'blocks_14_timeline_content_actions',''),(183114,40698,'_blocks_14_timeline_content_actions','field_6177de53d119b'),(183115,40698,'blocks_14_timeline_content',''),(183116,40698,'_blocks_14_timeline_content','field_6177de53d1197'),(183117,40698,'blocks_14_timeline_items_0_title','Keep up with demand '),(183118,40698,'_blocks_14_timeline_items_0_title','field_6177de53d119f'),(183119,40698,'blocks_14_timeline_items_0_text','The demand for online Personal Trainers and classes is at an all time high. You can be at the forefront of that offering! '),(183120,40698,'_blocks_14_timeline_items_0_text','field_6177de53d11a0'),(183121,40698,'blocks_14_timeline_items_1_title','Boost your client base '),(183122,40698,'_blocks_14_timeline_items_1_title','field_6177de53d119f'),(183123,40698,'blocks_14_timeline_items_1_text','When providing your training online you aren\'t restricted by location, so you can reach a wider audience in different areas and expand your client base beyond belief. '),(183124,40698,'_blocks_14_timeline_items_1_text','field_6177de53d11a0'),(183125,40698,'blocks_14_timeline_items_2_title','Open up new opportunities '),(183126,40698,'_blocks_14_timeline_items_2_title','field_6177de53d119f'),(183127,40698,'blocks_14_timeline_items_2_text','Having the flexibility to take your fitness business online will open the door to new opportunities, including new styles of training, being able to deliver even more and reach potential clients in a variety of locations. '),(183128,40698,'_blocks_14_timeline_items_2_text','field_6177de53d11a0'),(183129,40698,'blocks_14_timeline_items_3_title','Gain vital skills '),(183130,40698,'_blocks_14_timeline_items_3_title','field_6177de53d119f'),(183131,40698,'blocks_14_timeline_items_3_text','Covering the absolute vital fundamentals such as Marketing, Sales, Assessment, Coaching, Insurance, Legalities and more, you will be heads and shoulders above the rest whether you are offering your training face-to-face, online or a combination of the two! '),(183132,40698,'_blocks_14_timeline_items_3_text','field_6177de53d11a0'),(183133,40698,'blocks_14_timeline_items','4'),(183134,40698,'_blocks_14_timeline_items','field_6177de53d119d'),(183135,40698,'_thumbnail_id',''),(183136,40698,'__thumbnail_id','field_617570855ddaf'),(183137,40698,'course_label_label_theme','#0d1f73'),(183138,40698,'_course_label_label_theme','field_61e17bb8f71fb'),(183139,40698,'course_key_info_0_text','Online CPD'),(183140,40698,'_course_key_info_0_text','field_617ac6c38e5e3'),(183141,40698,'course_key_info_1_text','Online Learning'),(183142,40698,'_course_key_info_1_text','field_617ac6c38e5e3'),(183143,40698,'course_key_info_2_text','CPD'),(183144,40698,'_course_key_info_2_text','field_617ac6c38e5e3'),(183145,40270,'course_label_label_theme','#0d1f73'),(183146,40270,'_course_label_label_theme','field_61e17bb8f71fb'),(183147,40270,'course_key_info_0_text','Online CPD'),(183148,40270,'_course_key_info_0_text','field_617ac6c38e5e3'),(183149,40270,'course_key_info_1_text','CIMSPA Endorsed'),(183150,40270,'_course_key_info_1_text','field_617ac6c38e5e3'),(183151,40270,'course_key_info_2_text','No Entry Requirements'),(183152,40270,'_course_key_info_2_text','field_617ac6c38e5e3'),(183153,40699,'hide_hero','0'),(183154,40699,'_hide_hero','field_66a2380fcda39'),(183155,40699,'hero_title','Building Your Fitness Business'),(183156,40699,'_hero_title','field_617571fe285e8'),(183157,40699,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(183158,40699,'_hero_text','field_6175723c285e9'),(183159,40699,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(183160,40699,'_hero_actions_0_button','field_61757281285eb'),(183161,40699,'hero_actions','1'),(183162,40699,'_hero_actions','field_61757270285ea'),(183163,40699,'hero_style','default'),(183164,40699,'_hero_style','field_62051d9dc5324'),(183165,40699,'_thumbnail_id','40576'),(183166,40699,'__thumbnail_id','field_617570855ddaf'),(183167,40699,'hero_image_pos_x','right'),(183168,40699,'_hero_image_pos_x','field_62ec3d05390bb'),(183169,40699,'hero_image_pos_y','top'),(183170,40699,'_hero_image_pos_y','field_62ec3d05390bc'),(183171,40699,'hero_image_pos',''),(183172,40699,'_hero_image_pos','field_62ec3d05390ba'),(183173,40699,'fft_hide_from_listings','0'),(183174,40699,'_fft_hide_from_listings','field_61f1320446ab2'),(183175,40699,'fft_page_format','default'),(183176,40699,'_fft_page_format','field_61ae213f1f218'),(183177,40699,'fft_hide_nav','0'),(183178,40699,'_fft_hide_nav','field_635bd5e43527c'),(183179,40699,'fft_hide_header_call_to_action','0'),(183180,40699,'_fft_hide_header_call_to_action','field_635bd6723527d'),(183181,40699,'fft_page_sitemap','0'),(183182,40699,'_fft_page_sitemap','field_61af9b34e8181'),(183183,40699,'blocks_0_acfe_flexible_toggle',''),(183184,40699,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(183185,40699,'blocks_0_acfe_flexible_layout_title','Template'),(183186,40699,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(183187,40699,'blocks_0_template','39087'),(183188,40699,'_blocks_0_template','field_617bdd570fe01'),(183189,40699,'blocks_1_acfe_flexible_toggle',''),(183190,40699,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(183191,40699,'blocks_1_acfe_flexible_layout_title','Text Block'),(183192,40699,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(183193,40699,'blocks_1_options_theme','#ffffff'),(183194,40699,'_blocks_1_options_theme','field_6176830e2ad17'),(183195,40699,'blocks_1_options',''),(183196,40699,'_blocks_1_options','field_6176830e2ad16'),(183197,40699,'blocks_1_text_block_heading','Benefits of training with us'),(183198,40699,'_blocks_1_text_block_heading','field_617669d413097'),(183199,40699,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(183200,40699,'_blocks_1_text_block_content','field_617669ec13098'),(183201,40699,'blocks_2_acfe_flexible_toggle',''),(183202,40699,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(183203,40699,'blocks_2_acfe_flexible_layout_title','Logos'),(183204,40699,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(183205,40699,'blocks_2_options_theme','#ffffff'),(183206,40699,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(183207,40699,'blocks_2_options_format','grid'),(183208,40699,'_blocks_2_options_format','field_61782964ee971'),(183209,40699,'blocks_2_options',''),(183210,40699,'_blocks_2_options','field_61782954ee965'),(183211,40699,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(183212,40699,'_blocks_2_logos','field_61782954ee96d'),(183213,40699,'blocks_2_title',''),(183214,40699,'_blocks_2_title','field_668fbfdc2daa1'),(183215,40699,'blocks_3_acfe_flexible_toggle',''),(183216,40699,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(183217,40699,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(183218,40699,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(183219,40699,'blocks_3_options_theme','#f5f5f5'),(183220,40699,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(183221,40699,'blocks_3_options_reverse','0'),(183222,40699,'_blocks_3_options_reverse','field_61768049bb8ac'),(183223,40699,'blocks_3_options',''),(183224,40699,'_blocks_3_options','field_617682517c334'),(183225,40699,'blocks_3_split_5050_image','40577'),(183226,40699,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(183227,40699,'blocks_3_split_5050_video',''),(183228,40699,'_blocks_3_split_5050_video','field_6239f3160848a'),(183229,40699,'blocks_3_split_5050_content_title',''),(183230,40699,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(183231,40699,'blocks_3_split_5050_content_heading','Course Overview'),(183232,40699,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(183233,40699,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(183234,40699,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(183235,40699,'blocks_3_split_5050_content_actions',''),(183236,40699,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(183237,40699,'blocks_3_split_5050_content',''),(183238,40699,'_blocks_3_split_5050_content','field_61767afceb8ba'),(183239,40699,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:13:\"step_timeline\";i:7;s:8:\"template\";i:8;s:10:\"text_block\";i:9;s:14:\"course_compare\";i:10;s:10:\"accordions\";}'),(183240,40699,'_blocks','field_6176696113096'),(183241,40699,'course_label_text','Building Your Fitness Business'),(183242,40699,'_course_label_text','field_61e17babf71fa'),(183243,40699,'course_label',''),(183244,40699,'_course_label','field_61e12f92749a7'),(183245,40699,'course_description','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(183246,40699,'_course_description','field_617ac5788e5e1'),(183247,40699,'course_key_info','3'),(183248,40699,'_course_key_info','field_617ac6ad8e5e2'),(183249,40699,'course_included','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(183250,40699,'_course_included','field_617ac6f08e5e4'),(183251,40699,'blocks_4_acfe_flexible_toggle',''),(183252,40699,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(183253,40699,'blocks_4_acfe_flexible_layout_title','Text Block'),(183254,40699,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(183255,40699,'blocks_4_options_theme','#ffffff'),(183256,40699,'_blocks_4_options_theme','field_6176830e2ad17'),(183257,40699,'blocks_4_options',''),(183258,40699,'_blocks_4_options','field_6176830e2ad16'),(183259,40699,'blocks_4_text_block_heading','Learn more about this course'),(183260,40699,'_blocks_4_text_block_heading','field_617669d413097'),(183261,40699,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(183262,40699,'_blocks_4_text_block_content','field_617669ec13098'),(183263,40699,'blocks_5_acfe_flexible_toggle',''),(183264,40699,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(183265,40699,'blocks_5_acfe_flexible_layout_title','Tabs'),(183266,40699,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(183267,40699,'blocks_5_options_theme','#ffffff'),(183268,40699,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(183269,40699,'blocks_5_options',''),(183270,40699,'_blocks_5_options','field_6177cfcd8140f'),(183271,40699,'blocks_5_tabs_0_tab_label','E-learning '),(183272,40699,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(183273,40699,'blocks_5_tabs_0_tab_content_title',''),(183274,40699,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(183275,40699,'blocks_5_tabs_0_tab_content_heading',''),(183276,40699,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(183277,40699,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(183278,40699,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(183279,40699,'blocks_5_tabs_0_tab_content_actions','1'),(183280,40699,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(183281,40699,'blocks_5_tabs_0_tab_content',''),(183282,40699,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(183283,40699,'blocks_5_tabs_0_tab_image',''),(183284,40699,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(183285,40699,'blocks_5_tabs_1_tab_label','Content '),(183286,40699,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(183287,40699,'blocks_5_tabs_1_tab_content_title',''),(183288,40699,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(183289,40699,'blocks_5_tabs_1_tab_content_heading',''),(183290,40699,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(183291,40699,'blocks_5_tabs_1_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(183292,40699,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(183293,40699,'blocks_5_tabs_1_tab_content_actions','1'),(183294,40699,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(183295,40699,'blocks_5_tabs_1_tab_content',''),(183296,40699,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(183297,40699,'blocks_5_tabs_1_tab_image',''),(183298,40699,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(183299,40699,'blocks_5_tabs_2_tab_label','Assessment '),(183300,40699,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(183301,40699,'blocks_5_tabs_2_tab_content_title',''),(183302,40699,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(183303,40699,'blocks_5_tabs_2_tab_content_heading',''),(183304,40699,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(183305,40699,'blocks_5_tabs_2_tab_content_text','There is no assessment for this course.'),(183306,40699,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(183307,40699,'blocks_5_tabs_2_tab_content_actions','1'),(183308,40699,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(183309,40699,'blocks_5_tabs_2_tab_content',''),(183310,40699,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(183311,40699,'blocks_5_tabs_2_tab_image',''),(183312,40699,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(183313,40699,'blocks_5_tabs','4'),(183314,40699,'_blocks_5_tabs','field_6177cff281419'),(183315,40699,'blocks_6_acfe_flexible_toggle',''),(183316,40699,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(183317,40699,'blocks_6_acfe_flexible_layout_title','Timeline'),(183318,40699,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(183319,40699,'blocks_6_options_theme','#f5f5f5'),(183320,40699,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(183321,40699,'blocks_6_options',''),(183322,40699,'_blocks_6_options','field_6177de53d1195'),(183323,40699,'blocks_6_timeline_content_title',''),(183324,40699,'_blocks_6_timeline_content_title','field_6177de53d1198'),(183325,40699,'blocks_6_timeline_content_heading','Course details'),(183326,40699,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(183327,40699,'blocks_6_timeline_content_text',''),(183328,40699,'_blocks_6_timeline_content_text','field_6177de53d119a'),(183329,40699,'blocks_6_timeline_content_actions',''),(183330,40699,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(183331,40699,'blocks_6_timeline_content',''),(183332,40699,'_blocks_6_timeline_content','field_6177de53d1197'),(183333,40699,'blocks_6_timeline_items_0_title','First Steps '),(183334,40699,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(183335,40699,'blocks_6_timeline_items_0_text','This first section is all about defining the types of people you want to work with – your ideal client. Doing this provides the context for all the other decisions you make as part of your business. '),(183336,40699,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(183337,40699,'blocks_6_timeline_items_1_title','Business Set Up '),(183338,40699,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(183339,40699,'blocks_6_timeline_items_1_text','This section covers the administrative side of your business, including the legal structure, financial management and GDPR. '),(183340,40699,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(183341,40699,'blocks_6_timeline_items_2_title','Business Planning '),(183342,40699,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(183343,40699,'blocks_6_timeline_items_2_text','In this section, we look at how to do a SWOT and PEST analysis, as well as market research to provide the information you need to plan your business and for product development. '),(183344,40699,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(183345,40699,'blocks_6_timeline_items_3_title','Product Development '),(183346,40699,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(183347,40699,'blocks_6_timeline_items_3_text','One of the most critical stages in the process is product development. Personal training is not a tangible ‘thing’ like cars, shoes or food, so in this section, you’ll learn how to put together packages and services that clients understand and are attracted to. '),(183348,40699,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(183349,40699,'blocks_6_timeline_items_4_title','Marketing '),(183350,40699,'_blocks_6_timeline_items_4_title','field_6177de53d119f'),(183351,40699,'blocks_6_timeline_items_4_text','In this section, you’ll learn about the marketing funnel, as well as offline and online marketing approaches, with specific techniques you can use immediately '),(183352,40699,'_blocks_6_timeline_items_4_text','field_6177de53d11a0'),(183353,40699,'blocks_6_timeline_items_5_title','Sales '),(183354,40699,'_blocks_6_timeline_items_5_title','field_6177de53d119f'),(183355,40699,'blocks_6_timeline_items_5_text','Sales skills are crucial to success as a personal trainer. This section covers the ‘principles of persuasion’ as well as strategies to handle common objections from potential clients. '),(183356,40699,'_blocks_6_timeline_items_5_text','field_6177de53d11a0'),(183357,40699,'blocks_6_timeline_items_6_title','Running Your Business '),(183358,40699,'_blocks_6_timeline_items_6_title','field_6177de53d119f'),(183359,40699,'blocks_6_timeline_items_6_text','As your client base expands you need to develop systems and processes to enable things to run smoothly and for your business to grow in a sustainable way. This final section provides the resources to help you do that.  '),(183360,40699,'_blocks_6_timeline_items_6_text','field_6177de53d11a0'),(183361,40699,'blocks_6_timeline_items','7'),(183362,40699,'_blocks_6_timeline_items','field_6177de53d119d'),(183363,40699,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(183364,40699,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(183365,40699,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(183366,40699,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(183367,40699,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(183368,40699,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(183369,40699,'blocks_5_tabs_3_tab_label','Entry requirements'),(183370,40699,'_blocks_5_tabs_3_tab_label','field_6177d0068141a'),(183371,40699,'blocks_5_tabs_3_tab_content_title',''),(183372,40699,'_blocks_5_tabs_3_tab_content_title','field_6177cfcd81414'),(183373,40699,'blocks_5_tabs_3_tab_content_heading','To do this course, you will need'),(183374,40699,'_blocks_5_tabs_3_tab_content_heading','field_6177cfcd81415'),(183375,40699,'blocks_5_tabs_3_tab_content_text','<ul>\r\n 	<li>There are no entry requirements for this course.</li>\r\n 	<li>If you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.</li>\r\n</ul>'),(183376,40699,'_blocks_5_tabs_3_tab_content_text','field_6177cfcd81416'),(183377,40699,'blocks_5_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(183378,40699,'_blocks_5_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(183379,40699,'blocks_5_tabs_3_tab_content_actions','1'),(183380,40699,'_blocks_5_tabs_3_tab_content_actions','field_6177cfcd81417'),(183381,40699,'blocks_5_tabs_3_tab_content',''),(183382,40699,'_blocks_5_tabs_3_tab_content','field_6177cfcd81413'),(183383,40699,'blocks_5_tabs_3_tab_image',''),(183384,40699,'_blocks_5_tabs_3_tab_image','field_6177cfcd81412'),(183385,40699,'blocks_7_acfe_flexible_toggle',''),(183386,40699,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(183387,40699,'blocks_7_acfe_flexible_layout_title','Template'),(183388,40699,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(183389,40699,'blocks_7_template','39401'),(183390,40699,'_blocks_7_template','field_617bdd570fe01'),(183391,40699,'blocks_8_acfe_flexible_toggle',''),(183392,40699,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(183393,40699,'blocks_8_acfe_flexible_layout_title','Text Block'),(183394,40699,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(183395,40699,'blocks_8_options_theme','#b61234'),(183396,40699,'_blocks_8_options_theme','field_6176830e2ad17'),(183397,40699,'blocks_8_options',''),(183398,40699,'_blocks_8_options','field_6176830e2ad16'),(183399,40699,'blocks_8_text_block_heading','Frequently Bought Together'),(183400,40699,'_blocks_8_text_block_heading','field_617669d413097'),(183401,40699,'blocks_8_text_block_content','Check out some other courses that are frequently purchased with this one.'),(183402,40699,'_blocks_8_text_block_content','field_617669ec13098'),(183403,40699,'blocks_9_acfe_flexible_toggle',''),(183404,40699,'_blocks_9_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(183405,40699,'blocks_9_acfe_flexible_layout_title','Course Comparison'),(183406,40699,'_blocks_9_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(183407,40699,'blocks_9_options_theme','#b61234'),(183408,40699,'_blocks_9_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(183409,40699,'blocks_9_options',''),(183410,40699,'_blocks_9_options','field_617ac0b7f6c08'),(183411,40699,'blocks_9_show','selection'),(183412,40699,'_blocks_9_show','field_61a49cba9d946'),(183413,40699,'blocks_9_category','403'),(183414,40699,'_blocks_9_category','field_61a49cd79d947'),(183415,40699,'blocks_10_acfe_flexible_toggle',''),(183416,40699,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(183417,40699,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(183418,40699,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(183419,40699,'blocks_10_options_theme','#f5f5f5'),(183420,40699,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(183421,40699,'blocks_10_options_state','0'),(183422,40699,'_blocks_10_options_state','field_6239fcb7508c5'),(183423,40699,'blocks_10_options',''),(183424,40699,'_blocks_10_options','field_6177e2991ac44'),(183425,40699,'blocks_10_content_title',''),(183426,40699,'_blocks_10_content_title','field_64d237e8bb1e2'),(183427,40699,'blocks_10_content_heading','FAQ\'s'),(183428,40699,'_blocks_10_content_heading','field_64d237e8bb1e3'),(183429,40699,'blocks_10_content_text','Check out our FAQ\'s to further your understanding of this course and help you make a decision that\'s best for you.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today:<a href=\"tel:01329 829444\"> 01329 829444</a>'),(183430,40699,'_blocks_10_content_text','field_64d237e8bb1e4'),(183431,40699,'blocks_10_content_actions',''),(183432,40699,'_blocks_10_content_actions','field_64d237e8bb1e5'),(183433,40699,'blocks_10_content_align','left'),(183434,40699,'_blocks_10_content_align','field_64d2443e6b6aa'),(183435,40699,'blocks_10_content',''),(183436,40699,'_blocks_10_content','field_64d237e8bb1e1'),(183437,40699,'blocks_10_accordion_content','faqs'),(183438,40699,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(183439,40699,'blocks_10_accordion_faqs_select','a:5:{i:0;s:5:\"39403\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(183440,40699,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(183441,40699,'blocks_10_actions',''),(183442,40699,'_blocks_10_actions','field_61a746a817f7a'),(183443,40699,'blocks_9_courses','a:1:{i:0;s:5:\"40263\";}'),(183444,40699,'_blocks_9_courses','field_61b244781ee0a'),(183445,40699,'course_label_label_theme','#0d1f73'),(183446,40699,'_course_label_label_theme','field_61e17bb8f71fb'),(183447,40699,'course_key_info_0_text','Online CPD'),(183448,40699,'_course_key_info_0_text','field_617ac6c38e5e3'),(183449,40699,'course_key_info_1_text','CIMSPA Endorsed'),(183450,40699,'_course_key_info_1_text','field_617ac6c38e5e3'),(183451,40699,'course_key_info_2_text','Online Learning'),(183452,40699,'_course_key_info_2_text','field_617ac6c38e5e3'),(183453,40270,'_yoast_wpseo_focuskw','Fitness Business'),(183454,40270,'_yoast_wpseo_metadesc','Train with Biomechanics Education to boost your fitness career. Get expert support and learn to build your fitness business.'),(183455,40270,'_yoast_wpseo_linkdex','44'),(183456,40263,'blocks_7_options_cards_term','404'),(183457,40263,'_blocks_7_options_cards_term','field_6193f7c180895'),(183458,40263,'blocks_7_options_cards_posts_per_page',''),(183459,40263,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(183460,40263,'course_label_label_theme','#0d1f73'),(183461,40263,'_course_label_label_theme','field_61e17bb8f71fb'),(183462,40263,'course_key_info_0_text','CIMSPA Endorsed'),(183463,40263,'_course_key_info_0_text','field_617ac6c38e5e3'),(183464,40263,'course_key_info_1_text','Online Learning'),(183465,40263,'_course_key_info_1_text','field_617ac6c38e5e3'),(183466,40263,'course_key_info_2_text','CPD'),(183467,40263,'_course_key_info_2_text','field_617ac6c38e5e3'),(183468,40263,'course_key_info_3_text','No Entry Requirements'),(183469,40263,'_course_key_info_3_text','field_617ac6c38e5e3'),(183470,40263,'_yoast_wpseo_focuskw','Behaviour change coaching'),(183471,40263,'_yoast_wpseo_metadesc','Advance your fitness career with expert guidance in Behaviour Change Coaching. Invest in your training and stand out with advanced skills.'),(183472,40263,'_yoast_wpseo_linkdex','47'),(183473,40700,'hide_hero','0'),(183474,40700,'_hide_hero','field_66a2380fcda39'),(183475,40700,'hero_title','Behaviour Change Coaching'),(183476,40700,'_hero_title','field_617571fe285e8'),(183477,40700,'hero_text','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(183478,40700,'_hero_text','field_6175723c285e9'),(183479,40700,'hero_actions','1'),(183480,40700,'_hero_actions','field_61757270285ea'),(183481,40700,'hero_style','default'),(183482,40700,'_hero_style','field_62051d9dc5324'),(183483,40700,'hero_image_pos_x','right'),(183484,40700,'_hero_image_pos_x','field_62ec3d05390bb'),(183485,40700,'hero_image_pos_y','top'),(183486,40700,'_hero_image_pos_y','field_62ec3d05390bc'),(183487,40700,'hero_image_pos',''),(183488,40700,'_hero_image_pos','field_62ec3d05390ba'),(183489,40700,'fft_hide_from_listings','0'),(183490,40700,'_fft_hide_from_listings','field_61f1320446ab2'),(183491,40700,'fft_page_format','default'),(183492,40700,'_fft_page_format','field_61ae213f1f218'),(183493,40700,'fft_hide_nav','0'),(183494,40700,'_fft_hide_nav','field_635bd5e43527c'),(183495,40700,'fft_hide_header_call_to_action','0'),(183496,40700,'_fft_hide_header_call_to_action','field_635bd6723527d'),(183497,40700,'fft_page_sitemap','0'),(183498,40700,'_fft_page_sitemap','field_61af9b34e8181'),(183499,40700,'blocks','a:14:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";i:8;s:7:\"buttons\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:13:\"step_timeline\";i:12;s:14:\"course_compare\";i:13;s:10:\"accordions\";}'),(183500,40700,'_blocks','field_6176696113096'),(183501,40700,'course_label_text','Behaviour Change Coaching'),(183502,40700,'_course_label_text','field_61e17babf71fa'),(183503,40700,'course_label',''),(183504,40700,'_course_label','field_61e12f92749a7'),(183505,40700,'course_description','Facilitate Positive Behaviour Change in your Clients with a CPD Accreditation. This online e-learning course is endorsed by CIMSPA. '),(183506,40700,'_course_description','field_617ac5788e5e1'),(183507,40700,'course_key_info','4'),(183508,40700,'_course_key_info','field_617ac6ad8e5e2'),(183509,40700,'course_included','Introduction to behaviour change\r\nBarriers to change\r\nModels of behaviour change\r\nTools for assessing readiness to change\r\nCommunication and interpersonal skills\r\nIntroduction to motivational interviewing\r\nThe Formula 4 Change system, exclusive to Future Fit Training\r\nEvaluation and assessment\r\nThe need for change'),(183510,40700,'_course_included','field_617ac6f08e5e4'),(183511,40700,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(183512,40700,'_hero_actions_0_button','field_61757281285eb'),(183513,40700,'blocks_0_acfe_flexible_toggle',''),(183514,40700,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(183515,40700,'blocks_0_acfe_flexible_layout_title','Template'),(183516,40700,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(183517,40700,'blocks_0_template','39087'),(183518,40700,'_blocks_0_template','field_617bdd570fe01'),(183519,40700,'blocks_1_acfe_flexible_toggle',''),(183520,40700,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(183521,40700,'blocks_1_acfe_flexible_layout_title','Text Block'),(183522,40700,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(183523,40700,'blocks_1_options_theme','#ffffff'),(183524,40700,'_blocks_1_options_theme','field_6176830e2ad17'),(183525,40700,'blocks_1_options',''),(183526,40700,'_blocks_1_options','field_6176830e2ad16'),(183527,40700,'blocks_1_text_block_heading','Benefits of training with us'),(183528,40700,'_blocks_1_text_block_heading','field_617669d413097'),(183529,40700,'blocks_1_text_block_content','Advance your fitness career with expert guidance and industry knowledge. Invest in your training and stand out with advanced skills in Behaviour Change Coaching.'),(183530,40700,'_blocks_1_text_block_content','field_617669ec13098'),(183531,40700,'_thumbnail_id','40561'),(183532,40700,'__thumbnail_id','field_617570855ddaf'),(183533,40700,'blocks_2_acfe_flexible_toggle',''),(183534,40700,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(183535,40700,'blocks_2_acfe_flexible_layout_title','Logos'),(183536,40700,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(183537,40700,'blocks_2_options_theme','#ffffff'),(183538,40700,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(183539,40700,'blocks_2_options_format','grid'),(183540,40700,'_blocks_2_options_format','field_61782964ee971'),(183541,40700,'blocks_2_options',''),(183542,40700,'_blocks_2_options','field_61782954ee965'),(183543,40700,'blocks_2_logos','a:2:{i:0;s:5:\"25354\";i:1;s:4:\"1500\";}'),(183544,40700,'_blocks_2_logos','field_61782954ee96d'),(183545,40700,'blocks_2_title',''),(183546,40700,'_blocks_2_title','field_668fbfdc2daa1'),(183547,40700,'blocks_3_acfe_flexible_toggle',''),(183548,40700,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(183549,40700,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(183550,40700,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(183551,40700,'blocks_3_options_theme','#f5f5f5'),(183552,40700,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(183553,40700,'blocks_3_options_reverse','0'),(183554,40700,'_blocks_3_options_reverse','field_61768049bb8ac'),(183555,40700,'blocks_3_options',''),(183556,40700,'_blocks_3_options','field_617682517c334'),(183557,40700,'blocks_3_split_5050_image','40557'),(183558,40700,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(183559,40700,'blocks_3_split_5050_video',''),(183560,40700,'_blocks_3_split_5050_video','field_6239f3160848a'),(183561,40700,'blocks_3_split_5050_content_title',''),(183562,40700,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(183563,40700,'blocks_3_split_5050_content_heading','Course Overview'),(183564,40700,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(183565,40700,'blocks_3_split_5050_content_text','This course provides the skills and underpinning knowledge that will enable you to help clients achieve long-term change in relation to their diet and exercise behaviour. Completing this course will enhance your ability to help clients and thus make them a more skilled and sought-after personal trainer or nutrition adviser.\r\n\r\nThe course also features significant contributions from Dr Gary Mendoza, a behaviour change expert, university lecturer and personal trainer.'),(183566,40700,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(183567,40700,'blocks_3_split_5050_content_actions',''),(183568,40700,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(183569,40700,'blocks_3_split_5050_content',''),(183570,40700,'_blocks_3_split_5050_content','field_61767afceb8ba'),(183571,40700,'blocks_4_acfe_flexible_toggle',''),(183572,40700,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(183573,40700,'blocks_4_acfe_flexible_layout_title','Text Block'),(183574,40700,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(183575,40700,'blocks_4_options_theme','#b61234'),(183576,40700,'_blocks_4_options_theme','field_6176830e2ad17'),(183577,40700,'blocks_4_options',''),(183578,40700,'_blocks_4_options','field_6176830e2ad16'),(183579,40700,'blocks_4_text_block_heading','Learn more about this course'),(183580,40700,'_blocks_4_text_block_heading','field_617669d413097'),(183581,40700,'blocks_4_text_block_content','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective behavioural change coaching for your clients across a wide range of needs and abilities.'),(183582,40700,'_blocks_4_text_block_content','field_617669ec13098'),(183583,40700,'blocks_5_acfe_flexible_toggle',''),(183584,40700,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(183585,40700,'blocks_5_acfe_flexible_layout_title','Tabs'),(183586,40700,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(183587,40700,'blocks_5_options_theme','#ffffff'),(183588,40700,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(183589,40700,'blocks_5_options',''),(183590,40700,'_blocks_5_options','field_6177cfcd8140f'),(183591,40700,'blocks_5_tabs_0_tab_label','E-learning '),(183592,40700,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(183593,40700,'blocks_5_tabs_0_tab_content_title',''),(183594,40700,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(183595,40700,'blocks_5_tabs_0_tab_content_heading',''),(183596,40700,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(183597,40700,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(183598,40700,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(183599,40700,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(183600,40700,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(183601,40700,'blocks_5_tabs_0_tab_content_actions','1'),(183602,40700,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(183603,40700,'blocks_5_tabs_0_tab_content',''),(183604,40700,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(183605,40700,'blocks_5_tabs_0_tab_image',''),(183606,40700,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(183607,40700,'blocks_5_tabs_1_tab_label','Content '),(183608,40700,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(183609,40700,'blocks_5_tabs_1_tab_content_title',''),(183610,40700,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(183611,40700,'blocks_5_tabs_1_tab_content_heading',''),(183612,40700,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(183613,40700,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Introduction to behaviour change</li>\r\n 	<li>Barriers to change</li>\r\n 	<li>Models of behaviour change</li>\r\n 	<li>Tools for assessing readiness to change</li>\r\n 	<li>Communication and interpersonal skills</li>\r\n 	<li>Introduction to motivational interviewing</li>\r\n 	<li>The Formula 4 Change system, exclusive to Future Fit Training</li>\r\n 	<li>Evaluation and assessment</li>\r\n 	<li>The need for change</li>\r\n</ul>'),(183614,40700,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(183615,40700,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(183616,40700,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(183617,40700,'blocks_5_tabs_1_tab_content_actions','1'),(183618,40700,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(183619,40700,'blocks_5_tabs_1_tab_content',''),(183620,40700,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(183621,40700,'blocks_5_tabs_1_tab_image',''),(183622,40700,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(183623,40700,'blocks_5_tabs_2_tab_label','Assessment '),(183624,40700,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(183625,40700,'blocks_5_tabs_2_tab_content_title',''),(183626,40700,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(183627,40700,'blocks_5_tabs_2_tab_content_heading',''),(183628,40700,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(183629,40700,'blocks_5_tabs_2_tab_content_text','An online exam at the end of the course to test your understanding.'),(183630,40700,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(183631,40700,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(183632,40700,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(183633,40700,'blocks_5_tabs_2_tab_content_actions','1'),(183634,40700,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(183635,40700,'blocks_5_tabs_2_tab_content',''),(183636,40700,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(183637,40700,'blocks_5_tabs_2_tab_image',''),(183638,40700,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(183639,40700,'blocks_5_tabs_3_tab_label','Entry requirements'),(183640,40700,'_blocks_5_tabs_3_tab_label','field_6177d0068141a'),(183641,40700,'blocks_5_tabs_3_tab_content_title',''),(183642,40700,'_blocks_5_tabs_3_tab_content_title','field_6177cfcd81414'),(183643,40700,'blocks_5_tabs_3_tab_content_heading',''),(183644,40700,'_blocks_5_tabs_3_tab_content_heading','field_6177cfcd81415'),(183645,40700,'blocks_5_tabs_3_tab_content_text','There are no entry requirements for this course.\r\n\r\nIf you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.'),(183646,40700,'_blocks_5_tabs_3_tab_content_text','field_6177cfcd81416'),(183647,40700,'blocks_5_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(183648,40700,'_blocks_5_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(183649,40700,'blocks_5_tabs_3_tab_content_actions','1'),(183650,40700,'_blocks_5_tabs_3_tab_content_actions','field_6177cfcd81417'),(183651,40700,'blocks_5_tabs_3_tab_content',''),(183652,40700,'_blocks_5_tabs_3_tab_content','field_6177cfcd81413'),(183653,40700,'blocks_5_tabs_3_tab_image',''),(183654,40700,'_blocks_5_tabs_3_tab_image','field_6177cfcd81412'),(183655,40700,'blocks_5_tabs','4'),(183656,40700,'_blocks_5_tabs','field_6177cff281419'),(183657,40700,'blocks_6_acfe_flexible_toggle',''),(183658,40700,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(183659,40700,'blocks_6_acfe_flexible_layout_title','Text Block'),(183660,40700,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(183661,40700,'blocks_6_options_theme','#f5f5f5'),(183662,40700,'_blocks_6_options_theme','field_6176830e2ad17'),(183663,40700,'blocks_6_options',''),(183664,40700,'_blocks_6_options','field_6176830e2ad16'),(183665,40700,'blocks_6_text_block_heading','Blogs'),(183666,40700,'_blocks_6_text_block_heading','field_617669d413097'),(183667,40700,'blocks_6_text_block_content','Why not read our personal training blog before starting the course? There is loads of useful material to help cement your understanding of personal training! Read them below.'),(183668,40700,'_blocks_6_text_block_content','field_617669ec13098'),(183669,40700,'blocks_7_acfe_flexible_toggle',''),(183670,40700,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(183671,40700,'blocks_7_acfe_flexible_layout_title','Cards'),(183672,40700,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(183673,40700,'blocks_7_options_theme','#f5f5f5'),(183674,40700,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(183675,40700,'blocks_7_options_format','carousel'),(183676,40700,'_blocks_7_options_format','field_617a7b15245b5'),(183677,40700,'blocks_7_options_style','default'),(183678,40700,'_blocks_7_options_style','field_6278ffb63484a'),(183679,40700,'blocks_7_options_cards_current_listing','0'),(183680,40700,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(183681,40700,'blocks_7_options_cards_content','term'),(183682,40700,'_blocks_7_options_cards_content','field_617aba6122688'),(183683,40700,'blocks_7_options_cards_select_posts','a:3:{i:0;s:5:\"35126\";i:1;s:5:\"16411\";i:2;s:3:\"761\";}'),(183684,40700,'_blocks_7_options_cards_select_posts','field_6193f85fbaea1'),(183685,40700,'blocks_7_options',''),(183686,40700,'_blocks_7_options','field_617a7b15245b3'),(183687,40700,'blocks_8_acfe_flexible_toggle',''),(183688,40700,'_blocks_8_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(183689,40700,'blocks_8_acfe_flexible_layout_title','Button(s)'),(183690,40700,'_blocks_8_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(183691,40700,'blocks_8_options_theme','#ffffff'),(183692,40700,'_blocks_8_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(183693,40700,'blocks_8_options',''),(183694,40700,'_blocks_8_options','field_623b03edb6e65'),(183695,40700,'blocks_8_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(183696,40700,'_blocks_8_actions_0_button','field_623b03edb6e6f'),(183697,40700,'blocks_8_actions','1'),(183698,40700,'_blocks_8_actions','field_623b03edb6e6e'),(183699,40700,'blocks_9_acfe_flexible_toggle',''),(183700,40700,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(183701,40700,'blocks_9_acfe_flexible_layout_title','Icons'),(183702,40700,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(183703,40700,'blocks_9_options_theme','#ffffff'),(183704,40700,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(183705,40700,'blocks_9_options_format','grid'),(183706,40700,'_blocks_9_options_format','field_64bfde9a90690'),(183707,40700,'blocks_9_options',''),(183708,40700,'_blocks_9_options','field_64bfdd9b90684'),(183709,40700,'blocks_9_row_content_title',''),(183710,40700,'_blocks_9_row_content_title','field_64bfdd9b90687'),(183711,40700,'blocks_9_row_content_heading','Payment options'),(183712,40700,'_blocks_9_row_content_heading','field_64bfdd9b90688'),(183713,40700,'blocks_9_row_content_text','<strong>Options available to pay for your course</strong>\r\n\r\nTraining for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options including;'),(183714,40700,'_blocks_9_row_content_text','field_64bfdd9b90689'),(183715,40700,'blocks_9_row_content_actions',''),(183716,40700,'_blocks_9_row_content_actions','field_64bfdd9b9068a'),(183717,40700,'blocks_9_row_content',''),(183718,40700,'_blocks_9_row_content','field_64bfdd9b90686'),(183719,40700,'blocks_9_icon_row_items_0_icon','start-earning-in.svg'),(183720,40700,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(183721,40700,'blocks_9_icon_row_items_0_label','Pay your course in full'),(183722,40700,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(183723,40700,'blocks_9_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full'),(183724,40700,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(183725,40700,'blocks_9_icon_row_items_1_icon','pass-rate.svg'),(183726,40700,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(183727,40700,'blocks_9_icon_row_items_1_label','Flexible payment schemes'),(183728,40700,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(183729,40700,'blocks_9_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(183730,40700,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(183731,40700,'blocks_9_icon_row_items','2'),(183732,40700,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(183733,40700,'blocks_10_acfe_flexible_toggle',''),(183734,40700,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(183735,40700,'blocks_10_acfe_flexible_layout_title','Text Block'),(183736,40700,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(183737,40700,'blocks_10_options_theme','#ffffff'),(183738,40700,'_blocks_10_options_theme','field_6176830e2ad17'),(183739,40700,'blocks_10_options',''),(183740,40700,'_blocks_10_options','field_6176830e2ad16'),(183741,40700,'blocks_10_text_block_heading','Why study this behavioural change course? '),(183742,40700,'_blocks_10_text_block_heading','field_617669d413097'),(183743,40700,'blocks_10_text_block_content','Studying this coaching course in behavioural change will help fitness professionals and health coaches to work with clients in achieving their long-term goals. Without behavioural change coaches would find it difficult to make a difference to the client, understanding how to influence and motivate them is the underpinning knowledge to making coaching work.'),(183744,40700,'_blocks_10_text_block_content','field_617669ec13098'),(183745,40700,'blocks_11_acfe_flexible_toggle',''),(183746,40700,'_blocks_11_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(183747,40700,'blocks_11_acfe_flexible_layout_title','Timeline'),(183748,40700,'_blocks_11_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(183749,40700,'blocks_11_options_theme','#ffffff'),(183750,40700,'_blocks_11_options_theme','field_6177de53d1196_field_6176830e2ad17'),(183751,40700,'blocks_11_options',''),(183752,40700,'_blocks_11_options','field_6177de53d1195'),(183753,40700,'blocks_11_timeline_content_title',''),(183754,40700,'_blocks_11_timeline_content_title','field_6177de53d1198'),(183755,40700,'blocks_11_timeline_content_heading','Job Opportunities '),(183756,40700,'_blocks_11_timeline_content_heading','field_6177de53d1199'),(183757,40700,'blocks_11_timeline_content_text','Behaviour Change Coaching is a skill which can be used in numerous jobs to implement effective behaviour change for an individual. Completing this course can be a great addition to the below careers'),(183758,40700,'_blocks_11_timeline_content_text','field_6177de53d119a'),(183759,40700,'blocks_11_timeline_content_actions',''),(183760,40700,'_blocks_11_timeline_content_actions','field_6177de53d119b'),(183761,40700,'blocks_11_timeline_content',''),(183762,40700,'_blocks_11_timeline_content','field_6177de53d1197'),(183763,40700,'blocks_11_timeline_items_0_title','Health & wellbeing coaching '),(183764,40700,'_blocks_11_timeline_items_0_title','field_6177de53d119f'),(183765,40700,'blocks_11_timeline_items_0_text',''),(183766,40700,'_blocks_11_timeline_items_0_text','field_6177de53d11a0'),(183767,40700,'blocks_11_timeline_items_1_title','Lifestyle coaching '),(183768,40700,'_blocks_11_timeline_items_1_title','field_6177de53d119f'),(183769,40700,'blocks_11_timeline_items_1_text',''),(183770,40700,'_blocks_11_timeline_items_1_text','field_6177de53d11a0'),(183771,40700,'blocks_11_timeline_items_2_title','Personal training '),(183772,40700,'_blocks_11_timeline_items_2_title','field_6177de53d119f'),(183773,40700,'blocks_11_timeline_items_2_text',''),(183774,40700,'_blocks_11_timeline_items_2_text','field_6177de53d11a0'),(183775,40700,'blocks_11_timeline_items_3_title','Nutrition coaching '),(183776,40700,'_blocks_11_timeline_items_3_title','field_6177de53d119f'),(183777,40700,'blocks_11_timeline_items_3_text',''),(183778,40700,'_blocks_11_timeline_items_3_text','field_6177de53d11a0'),(183779,40700,'blocks_11_timeline_items','4'),(183780,40700,'_blocks_11_timeline_items','field_6177de53d119d'),(183781,40700,'blocks_12_acfe_flexible_toggle',''),(183782,40700,'_blocks_12_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(183783,40700,'blocks_12_acfe_flexible_layout_title','Course Comparison'),(183784,40700,'_blocks_12_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(183785,40700,'blocks_12_options_theme','#b61234'),(183786,40700,'_blocks_12_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(183787,40700,'blocks_12_options',''),(183788,40700,'_blocks_12_options','field_617ac0b7f6c08'),(183789,40700,'blocks_12_show','category'),(183790,40700,'_blocks_12_show','field_61a49cba9d946'),(183791,40700,'blocks_12_category','403'),(183792,40700,'_blocks_12_category','field_61a49cd79d947'),(183793,40700,'blocks_13_acfe_flexible_toggle',''),(183794,40700,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(183795,40700,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(183796,40700,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(183797,40700,'blocks_13_options_theme','#ffffff'),(183798,40700,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(183799,40700,'blocks_13_options_state','0'),(183800,40700,'_blocks_13_options_state','field_6239fcb7508c5'),(183801,40700,'blocks_13_options',''),(183802,40700,'_blocks_13_options','field_6177e2991ac44'),(183803,40700,'blocks_13_content_title',''),(183804,40700,'_blocks_13_content_title','field_64d237e8bb1e2'),(183805,40700,'blocks_13_content_heading','FAQs'),(183806,40700,'_blocks_13_content_heading','field_64d237e8bb1e3'),(183807,40700,'blocks_13_content_text',''),(183808,40700,'_blocks_13_content_text','field_64d237e8bb1e4'),(183809,40700,'blocks_13_content_actions',''),(183810,40700,'_blocks_13_content_actions','field_64d237e8bb1e5'),(183811,40700,'blocks_13_content_align','left'),(183812,40700,'_blocks_13_content_align','field_64d2443e6b6aa'),(183813,40700,'blocks_13_content',''),(183814,40700,'_blocks_13_content','field_64d237e8bb1e1'),(183815,40700,'blocks_13_accordion_content','faqs'),(183816,40700,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(183817,40700,'blocks_13_accordion_faqs_select','a:5:{i:0;s:5:\"40571\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(183818,40700,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(183819,40700,'blocks_13_actions',''),(183820,40700,'_blocks_13_actions','field_61a746a817f7a'),(183821,40700,'blocks_7_options_cards_term','404'),(183822,40700,'_blocks_7_options_cards_term','field_6193f7c180895'),(183823,40700,'blocks_7_options_cards_posts_per_page',''),(183824,40700,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(183825,40700,'course_label_label_theme','#0d1f73'),(183826,40700,'_course_label_label_theme','field_61e17bb8f71fb'),(183827,40700,'course_key_info_0_text','CIMSPA Endorsed'),(183828,40700,'_course_key_info_0_text','field_617ac6c38e5e3'),(183829,40700,'course_key_info_1_text','Online Learning'),(183830,40700,'_course_key_info_1_text','field_617ac6c38e5e3'),(183831,40700,'course_key_info_2_text','CPD'),(183832,40700,'_course_key_info_2_text','field_617ac6c38e5e3'),(183833,40700,'course_key_info_3_text','No Entry Requirements'),(183834,40700,'_course_key_info_3_text','field_617ac6c38e5e3'),(183835,40286,'course_label_label_theme','#0d1f73'),(183836,40286,'_course_label_label_theme','field_61e17bb8f71fb'),(183837,40286,'course_key_info_0_text','CPD'),(183838,40286,'_course_key_info_0_text','field_617ac6c38e5e3'),(183839,40286,'course_key_info_1_text','Online Learning'),(183840,40286,'_course_key_info_1_text','field_617ac6c38e5e3'),(183841,40286,'course_key_info_2_text','No Entry Requirements'),(183842,40286,'_course_key_info_2_text','field_617ac6c38e5e3'),(183843,40286,'_yoast_wpseo_focuskw','Menopause'),(183844,40286,'_yoast_wpseo_metadesc','Master women\'s health with our course on the menstrual cycle and menopause. Gain practical training and nutritional advice to enhance your coaching skills.'),(183845,40286,'_yoast_wpseo_linkdex','42'),(183846,40701,'hide_hero','0'),(183847,40701,'_hide_hero','field_66a2380fcda39'),(183848,40701,'hero_title',''),(183849,40701,'_hero_title','field_617571fe285e8'),(183850,40701,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(183851,40701,'_hero_text','field_6175723c285e9'),(183852,40701,'hero_actions','1'),(183853,40701,'_hero_actions','field_61757270285ea'),(183854,40701,'hero_style','default'),(183855,40701,'_hero_style','field_62051d9dc5324'),(183856,40701,'_thumbnail_id','40288'),(183857,40701,'__thumbnail_id','field_617570855ddaf'),(183858,40701,'hero_image_pos_x','right'),(183859,40701,'_hero_image_pos_x','field_62ec3d05390bb'),(183860,40701,'hero_image_pos_y','top'),(183861,40701,'_hero_image_pos_y','field_62ec3d05390bc'),(183862,40701,'hero_image_pos',''),(183863,40701,'_hero_image_pos','field_62ec3d05390ba'),(183864,40701,'fft_hide_from_listings','0'),(183865,40701,'_fft_hide_from_listings','field_61f1320446ab2'),(183866,40701,'fft_page_format','default'),(183867,40701,'_fft_page_format','field_61ae213f1f218'),(183868,40701,'fft_hide_nav','0'),(183869,40701,'_fft_hide_nav','field_635bd5e43527c'),(183870,40701,'fft_hide_header_call_to_action','0'),(183871,40701,'_fft_hide_header_call_to_action','field_635bd6723527d'),(183872,40701,'fft_page_sitemap','0'),(183873,40701,'_fft_page_sitemap','field_61af9b34e8181'),(183874,40701,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(183875,40701,'_blocks','field_6176696113096'),(183876,40701,'course_label_text','Womens Health - Menopause and Programming'),(183877,40701,'_course_label_text','field_61e17babf71fa'),(183878,40701,'course_label',''),(183879,40701,'_course_label','field_61e12f92749a7'),(183880,40701,'course_description','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(183881,40701,'_course_description','field_617ac5788e5e1'),(183882,40701,'course_key_info','3'),(183883,40701,'_course_key_info','field_617ac6ad8e5e2'),(183884,40701,'course_included','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(183885,40701,'_course_included','field_617ac6f08e5e4'),(183886,40701,'blocks_0_acfe_flexible_toggle',''),(183887,40701,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(183888,40701,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(183889,40701,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(183890,40701,'blocks_0_options_theme','#ffffff'),(183891,40701,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(183892,40701,'blocks_0_options_reverse','0'),(183893,40701,'_blocks_0_options_reverse','field_61768049bb8ac'),(183894,40701,'blocks_0_options',''),(183895,40701,'_blocks_0_options','field_617682517c334'),(183896,40701,'blocks_0_split_5050_image','40290'),(183897,40701,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(183898,40701,'blocks_0_split_5050_video',''),(183899,40701,'_blocks_0_split_5050_video','field_6239f3160848a'),(183900,40701,'blocks_0_split_5050_content_title',''),(183901,40701,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(183902,40701,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(183903,40701,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(183904,40701,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(183905,40701,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(183906,40701,'blocks_0_split_5050_content_actions',''),(183907,40701,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(183908,40701,'blocks_0_split_5050_content',''),(183909,40701,'_blocks_0_split_5050_content','field_61767afceb8ba'),(183910,40701,'blocks_1_acfe_flexible_toggle',''),(183911,40701,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(183912,40701,'blocks_1_acfe_flexible_layout_title','Icons'),(183913,40701,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(183914,40701,'blocks_1_options_theme','#b61234'),(183915,40701,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(183916,40701,'blocks_1_options_format','grid'),(183917,40701,'_blocks_1_options_format','field_64bfde9a90690'),(183918,40701,'blocks_1_options',''),(183919,40701,'_blocks_1_options','field_64bfdd9b90684'),(183920,40701,'blocks_1_row_content_title',''),(183921,40701,'_blocks_1_row_content_title','field_64bfdd9b90687'),(183922,40701,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(183923,40701,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(183924,40701,'blocks_1_row_content_text',''),(183925,40701,'_blocks_1_row_content_text','field_64bfdd9b90689'),(183926,40701,'blocks_1_row_content_actions',''),(183927,40701,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(183928,40701,'blocks_1_row_content',''),(183929,40701,'_blocks_1_row_content','field_64bfdd9b90686'),(183930,40701,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(183931,40701,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(183932,40701,'blocks_1_icon_row_items_0_label',''),(183933,40701,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(183934,40701,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(183935,40701,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(183936,40701,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(183937,40701,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(183938,40701,'blocks_1_icon_row_items_1_label',''),(183939,40701,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(183940,40701,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(183941,40701,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(183942,40701,'blocks_1_icon_row_items_2_icon','referrals.svg'),(183943,40701,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(183944,40701,'blocks_1_icon_row_items_2_label',''),(183945,40701,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(183946,40701,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(183947,40701,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(183948,40701,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(183949,40701,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(183950,40701,'blocks_1_icon_row_items_3_label',''),(183951,40701,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(183952,40701,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(183953,40701,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(183954,40701,'blocks_1_icon_row_items','4'),(183955,40701,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(183956,40701,'blocks_2_acfe_flexible_toggle',''),(183957,40701,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(183958,40701,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(183959,40701,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(183960,40701,'blocks_2_options_theme','#ffffff'),(183961,40701,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(183962,40701,'blocks_2_options_reverse','1'),(183963,40701,'_blocks_2_options_reverse','field_61768049bb8ac'),(183964,40701,'blocks_2_options',''),(183965,40701,'_blocks_2_options','field_617682517c334'),(183966,40701,'blocks_2_split_5050_image','40294'),(183967,40701,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(183968,40701,'blocks_2_split_5050_video',''),(183969,40701,'_blocks_2_split_5050_video','field_6239f3160848a'),(183970,40701,'blocks_2_split_5050_content_title',''),(183971,40701,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(183972,40701,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(183973,40701,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(183974,40701,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(183975,40701,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(183976,40701,'blocks_2_split_5050_content_actions',''),(183977,40701,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(183978,40701,'blocks_2_split_5050_content',''),(183979,40701,'_blocks_2_split_5050_content','field_61767afceb8ba'),(183980,40701,'blocks_3_acfe_flexible_toggle',''),(183981,40701,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(183982,40701,'blocks_3_acfe_flexible_layout_title','Tabs'),(183983,40701,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(183984,40701,'blocks_3_options_theme','#ffffff'),(183985,40701,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(183986,40701,'blocks_3_options',''),(183987,40701,'_blocks_3_options','field_6177cfcd8140f'),(183988,40701,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(183989,40701,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(183990,40701,'blocks_3_tabs_0_tab_content_title',''),(183991,40701,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(183992,40701,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(183993,40701,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(183994,40701,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(183995,40701,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(183996,40701,'blocks_3_tabs_0_tab_content_actions','1'),(183997,40701,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(183998,40701,'blocks_3_tabs_0_tab_content',''),(183999,40701,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(184000,40701,'blocks_3_tabs_0_tab_image',''),(184001,40701,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(184002,40701,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(184003,40701,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(184004,40701,'blocks_3_tabs_1_tab_content_title',''),(184005,40701,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(184006,40701,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(184007,40701,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(184008,40701,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(184009,40701,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(184010,40701,'blocks_3_tabs_1_tab_content_actions','1'),(184011,40701,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(184012,40701,'blocks_3_tabs_1_tab_content',''),(184013,40701,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(184014,40701,'blocks_3_tabs_1_tab_image',''),(184015,40701,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(184016,40701,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(184017,40701,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(184018,40701,'blocks_3_tabs_2_tab_content_title',''),(184019,40701,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(184020,40701,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(184021,40701,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(184022,40701,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(184023,40701,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(184024,40701,'blocks_3_tabs_2_tab_content_actions','1'),(184025,40701,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(184026,40701,'blocks_3_tabs_2_tab_content',''),(184027,40701,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(184028,40701,'blocks_3_tabs_2_tab_image',''),(184029,40701,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(184030,40701,'blocks_3_tabs','3'),(184031,40701,'_blocks_3_tabs','field_6177cff281419'),(184032,40701,'blocks_3_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(184033,40701,'_blocks_3_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(184034,40701,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(184035,40701,'_hero_actions_0_button','field_61757281285eb'),(184036,40701,'blocks_3_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(184037,40701,'_blocks_3_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(184038,40701,'blocks_3_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(184039,40701,'_blocks_3_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(184040,40701,'course_label_label_theme','#0d1f73'),(184041,40701,'_course_label_label_theme','field_61e17bb8f71fb'),(184042,40701,'course_key_info_0_text','Online CPD'),(184043,40701,'_course_key_info_0_text','field_617ac6c38e5e3'),(184044,40701,'course_key_info_1_text','Online Learning'),(184045,40701,'_course_key_info_1_text','field_617ac6c38e5e3'),(184046,40701,'course_key_info_2_text','No Entry Requirements'),(184047,40701,'_course_key_info_2_text','field_617ac6c38e5e3'),(184048,40702,'hide_hero','0'),(184049,40702,'_hide_hero','field_66a2380fcda39'),(184050,40702,'hero_title','Introduction to Intrinsic Biomechanics'),(184051,40702,'_hero_title','field_617571fe285e8'),(184052,40702,'hero_text','Welcome to the Intrinsic Biomechanics Online CPD Training – Gain a deeper level of understanding of the body and human movement.'),(184053,40702,'_hero_text','field_6175723c285e9'),(184054,40702,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(184055,40702,'_hero_actions_0_button','field_61757281285eb'),(184056,40702,'hero_actions','1'),(184057,40702,'_hero_actions','field_61757270285ea'),(184058,40702,'hero_style','default'),(184059,40702,'_hero_style','field_62051d9dc5324'),(184060,40702,'_thumbnail_id','40628'),(184061,40702,'__thumbnail_id','field_617570855ddaf'),(184062,40702,'hero_image_pos_x','right'),(184063,40702,'_hero_image_pos_x','field_62ec3d05390bb'),(184064,40702,'hero_image_pos_y','top'),(184065,40702,'_hero_image_pos_y','field_62ec3d05390bc'),(184066,40702,'hero_image_pos',''),(184067,40702,'_hero_image_pos','field_62ec3d05390ba'),(184068,40702,'fft_hide_from_listings','0'),(184069,40702,'_fft_hide_from_listings','field_61f1320446ab2'),(184070,40702,'fft_page_format','default'),(184071,40702,'_fft_page_format','field_61ae213f1f218'),(184072,40702,'fft_hide_nav','0'),(184073,40702,'_fft_hide_nav','field_635bd5e43527c'),(184074,40702,'fft_hide_header_call_to_action','0'),(184075,40702,'_fft_hide_header_call_to_action','field_635bd6723527d'),(184076,40702,'fft_page_sitemap','0'),(184077,40702,'_fft_page_sitemap','field_61af9b34e8181'),(184078,40702,'blocks_0_acfe_flexible_toggle',''),(184079,40702,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(184080,40702,'blocks_0_acfe_flexible_layout_title','Text Block'),(184081,40702,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(184082,40702,'blocks_0_options_theme','#ffffff'),(184083,40702,'_blocks_0_options_theme','field_6176830e2ad17'),(184084,40702,'blocks_0_options',''),(184085,40702,'_blocks_0_options','field_6176830e2ad16'),(184086,40702,'blocks_0_text_block_heading','Overview'),(184087,40702,'_blocks_0_text_block_heading','field_617669d413097'),(184088,40702,'blocks_0_text_block_content','Unlock a profound comprehension of the human body and movement patterns with our 2-hour online virtual classroom recording, complete with a comprehensive handout available for immediate download.\r\n\r\nAre your clients grappling with limited squat range or struggling to press overhead due to shoulder issues? Perhaps they avoid certain exercises due to physical constraints or pain. Witness transformative improvements in their movement and address your own mobility goals.'),(184089,40702,'_blocks_0_text_block_content','field_617669ec13098'),(184090,40702,'blocks_1_acfe_flexible_toggle',''),(184091,40702,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(184092,40702,'blocks_1_acfe_flexible_layout_title','Timeline'),(184093,40702,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(184094,40702,'blocks_1_options_theme','#f5f5f5'),(184095,40702,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(184096,40702,'blocks_1_options',''),(184097,40702,'_blocks_1_options','field_6177de53d1195'),(184098,40702,'blocks_1_timeline_content_title',''),(184099,40702,'_blocks_1_timeline_content_title','field_6177de53d1198'),(184100,40702,'blocks_1_timeline_content_heading','Course Information'),(184101,40702,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(184102,40702,'blocks_1_timeline_content_text','<strong>Discover how to:</strong>\r\n<ul>\r\n 	<li>Conduct evidence-based screenings to pinpoint movement limitations.</li>\r\n 	<li>Master techniques enhancing the functionality of the pelvis, spine, and shoulder.</li>\r\n</ul>'),(184103,40702,'_blocks_1_timeline_content_text','field_6177de53d119a'),(184104,40702,'blocks_1_timeline_content_actions',''),(184105,40702,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(184106,40702,'blocks_1_timeline_content',''),(184107,40702,'_blocks_1_timeline_content','field_6177de53d1197'),(184108,40702,'blocks_1_timeline_items_0_title','Explore Pelvic Biomechanics'),(184109,40702,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(184110,40702,'blocks_1_timeline_items_0_text','Uncover evidence-based assessments, identify sub-clinical muscle spasms, discern between structural and functional leg length discrepancies, and implement exercises to enhance pelvic function.'),(184111,40702,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(184112,40702,'blocks_1_timeline_items_1_title','Dive into Spine Biomechanics'),(184113,40702,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(184114,40702,'blocks_1_timeline_items_1_text','Learn how to assess and correct thoracic rotation – a game-changing skill with far-reaching effects.'),(184115,40702,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(184116,40702,'blocks_1_timeline_items_2_title','Delve into Shoulder Biomechanics'),(184117,40702,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(184118,40702,'blocks_1_timeline_items_2_text','Assess and correct shoulder function, focusing on key muscles influencing posture and movement right down to the feet.'),(184119,40702,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(184120,40702,'blocks_1_timeline_items','3'),(184121,40702,'_blocks_1_timeline_items','field_6177de53d119d'),(184122,40702,'blocks_2_acfe_flexible_toggle',''),(184123,40702,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(184124,40702,'blocks_2_acfe_flexible_layout_title','Text Block'),(184125,40702,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(184126,40702,'blocks_2_options_theme','#ffffff'),(184127,40702,'_blocks_2_options_theme','field_6176830e2ad17'),(184128,40702,'blocks_2_options',''),(184129,40702,'_blocks_2_options','field_6176830e2ad16'),(184130,40702,'blocks_2_text_block_heading','Please note'),(184131,40702,'_blocks_2_text_block_heading','field_617669d413097'),(184132,40702,'blocks_2_text_block_content','This online training aims to inform and enrich the understanding of fitness and exercise instructors through Continuing Professional Development (CPD). For an attendance certificate, face-to-face participation is required. Upon payment, access the video link and instantly download the handout PDF. Revisit using your registered email to access all purchases.\r\n\r\nOpt to attend the face-to-face Intrinsic Biomechanics Workshop, and not only will you receive a refund for the online training, but you\'ll also secure your attendance certificate.'),(184133,40702,'_blocks_2_text_block_content','field_617669ec13098'),(184134,40702,'blocks_3_acfe_flexible_toggle',''),(184135,40702,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(184136,40702,'blocks_3_acfe_flexible_layout_title','Button(s)'),(184137,40702,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(184138,40702,'blocks_3_options_theme','#ffffff'),(184139,40702,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(184140,40702,'blocks_3_options',''),(184141,40702,'_blocks_3_options','field_623b03edb6e65'),(184142,40702,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(184143,40702,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(184144,40702,'blocks_3_actions','1'),(184145,40702,'_blocks_3_actions','field_623b03edb6e6e'),(184146,40702,'blocks_4_acfe_flexible_toggle',''),(184147,40702,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(184148,40702,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(184149,40702,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(184150,40702,'blocks_4_options_theme','#ffffff'),(184151,40702,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(184152,40702,'blocks_4_options_state','0'),(184153,40702,'_blocks_4_options_state','field_6239fcb7508c5'),(184154,40702,'blocks_4_options',''),(184155,40702,'_blocks_4_options','field_6177e2991ac44'),(184156,40702,'blocks_4_content_title',''),(184157,40702,'_blocks_4_content_title','field_64d237e8bb1e2'),(184158,40702,'blocks_4_content_heading',''),(184159,40702,'_blocks_4_content_heading','field_64d237e8bb1e3'),(184160,40702,'blocks_4_content_text',''),(184161,40702,'_blocks_4_content_text','field_64d237e8bb1e4'),(184162,40702,'blocks_4_content_actions',''),(184163,40702,'_blocks_4_content_actions','field_64d237e8bb1e5'),(184164,40702,'blocks_4_content_align','left'),(184165,40702,'_blocks_4_content_align','field_64d2443e6b6aa'),(184166,40702,'blocks_4_content',''),(184167,40702,'_blocks_4_content','field_64d237e8bb1e1'),(184168,40702,'blocks_4_accordion_content','custom'),(184169,40702,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(184170,40702,'blocks_4_accordion_items',''),(184171,40702,'_blocks_4_accordion_items','field_6177e2991ac4c'),(184172,40702,'blocks_4_actions',''),(184173,40702,'_blocks_4_actions','field_61a746a817f7a'),(184174,40702,'blocks','a:5:{i:0;s:10:\"text_block\";i:1;s:13:\"step_timeline\";i:2;s:10:\"text_block\";i:3;s:7:\"buttons\";i:4;s:10:\"accordions\";}'),(184175,40702,'_blocks','field_6176696113096'),(184176,40702,'course_label_text','Introduction to Intrinsic Biomechanics'),(184177,40702,'_course_label_text','field_61e17babf71fa'),(184178,40702,'course_label',''),(184179,40702,'_course_label','field_61e12f92749a7'),(184180,40702,'course_description','Welcome to the Intrinsic Biomechanics Online CPD Training – Gain a deeper level of understanding of the body and human movement.'),(184181,40702,'_course_description','field_617ac5788e5e1'),(184182,40702,'course_key_info','3'),(184183,40702,'_course_key_info','field_617ac6ad8e5e2'),(184184,40702,'course_included','Conduct evidence-based screenings to pinpoint movement limitations.\r\nMaster techniques enhancing the functionality of the pelvis, spine, and shoulder.'),(184185,40702,'_course_included','field_617ac6f08e5e4'),(184186,40702,'course_label_label_theme','#0d1f73'),(184187,40702,'_course_label_label_theme','field_61e17bb8f71fb'),(184188,40702,'course_key_info_0_text','Online CPD'),(184189,40702,'_course_key_info_0_text','field_617ac6c38e5e3'),(184190,40702,'course_key_info_1_text','CIMSPA'),(184191,40702,'_course_key_info_1_text','field_617ac6c38e5e3'),(184192,40702,'course_key_info_2_text','Online Learning'),(184193,40702,'_course_key_info_2_text','field_617ac6c38e5e3'),(184194,40703,'hide_hero','0'),(184195,40703,'_hide_hero','field_66a2380fcda39'),(184196,40703,'hero_title','Introduction To Running Biomechanics'),(184197,40703,'_hero_title','field_617571fe285e8'),(184198,40703,'hero_text','Discover the Secrets of Optimal Running Styles in this Comprehensive 3hr 15min Classroom Recording & Handout Session! '),(184199,40703,'_hero_text','field_6175723c285e9'),(184200,40703,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(184201,40703,'_hero_actions_0_button','field_61757281285eb'),(184202,40703,'hero_actions','1'),(184203,40703,'_hero_actions','field_61757270285ea'),(184204,40703,'hero_style','default'),(184205,40703,'_hero_style','field_62051d9dc5324'),(184206,40703,'_thumbnail_id','40611'),(184207,40703,'__thumbnail_id','field_617570855ddaf'),(184208,40703,'hero_image_pos_x','right'),(184209,40703,'_hero_image_pos_x','field_62ec3d05390bb'),(184210,40703,'hero_image_pos_y','top'),(184211,40703,'_hero_image_pos_y','field_62ec3d05390bc'),(184212,40703,'hero_image_pos',''),(184213,40703,'_hero_image_pos','field_62ec3d05390ba'),(184214,40703,'fft_hide_from_listings','0'),(184215,40703,'_fft_hide_from_listings','field_61f1320446ab2'),(184216,40703,'fft_page_format','default'),(184217,40703,'_fft_page_format','field_61ae213f1f218'),(184218,40703,'fft_hide_nav','0'),(184219,40703,'_fft_hide_nav','field_635bd5e43527c'),(184220,40703,'fft_hide_header_call_to_action','0'),(184221,40703,'_fft_hide_header_call_to_action','field_635bd6723527d'),(184222,40703,'fft_page_sitemap','0'),(184223,40703,'_fft_page_sitemap','field_61af9b34e8181'),(184224,40703,'blocks_0_acfe_flexible_toggle',''),(184225,40703,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(184226,40703,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(184227,40703,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(184228,40703,'blocks_0_options_theme','#ffffff'),(184229,40703,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(184230,40703,'blocks_0_options_reverse','0'),(184231,40703,'_blocks_0_options_reverse','field_61768049bb8ac'),(184232,40703,'blocks_0_options',''),(184233,40703,'_blocks_0_options','field_617682517c334'),(184234,40703,'blocks_0_split_5050_image','40612'),(184235,40703,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(184236,40703,'blocks_0_split_5050_video',''),(184237,40703,'_blocks_0_split_5050_video','field_6239f3160848a'),(184238,40703,'blocks_0_split_5050_content_title',''),(184239,40703,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(184240,40703,'blocks_0_split_5050_content_heading','Course Overview'),(184241,40703,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(184242,40703,'blocks_0_split_5050_content_text','<strong>Embrace the Essence of Running</strong>\r\n\r\nRunning is a cornerstone of fitness, yet the ongoing debate on the best running style can be confusing. Simplify the complexity with our Introduction to Running Biomechanics Online Training.\r\n\r\n<strong>Tailored for You</strong>\r\n\r\nNo one-size-fits-all approach here. This workshop dissects the evidence supporting various running styles, empowering you to make informed choices for you and your clients.\r\n\r\n<strong>What You\'ll Gain</strong>\r\n<ul>\r\n 	<li>Master running club terminology.</li>\r\n 	<li>Grasp the mechanics and sequencing of different running gaits.</li>\r\n 	<li>Explore extrinsic influences and identify intrinsic restrictions.</li>\r\n</ul>'),(184243,40703,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(184244,40703,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(184245,40703,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(184246,40703,'blocks_0_split_5050_content_actions','1'),(184247,40703,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(184248,40703,'blocks_0_split_5050_content',''),(184249,40703,'_blocks_0_split_5050_content','field_61767afceb8ba'),(184250,40703,'blocks_1_acfe_flexible_toggle',''),(184251,40703,'_blocks_1_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(184252,40703,'blocks_1_acfe_flexible_layout_title','Tabs'),(184253,40703,'_blocks_1_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(184254,40703,'blocks_1_options_theme','#f5f5f5'),(184255,40703,'_blocks_1_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(184256,40703,'blocks_1_options',''),(184257,40703,'_blocks_1_options','field_6177cfcd8140f'),(184258,40703,'blocks_1_tabs_0_tab_label','Elevate Your Expertise '),(184259,40703,'_blocks_1_tabs_0_tab_label','field_6177d0068141a'),(184260,40703,'blocks_1_tabs_0_tab_content_title',''),(184261,40703,'_blocks_1_tabs_0_tab_content_title','field_6177cfcd81414'),(184262,40703,'blocks_1_tabs_0_tab_content_heading',''),(184263,40703,'_blocks_1_tabs_0_tab_content_heading','field_6177cfcd81415'),(184264,40703,'blocks_1_tabs_0_tab_content_text','Crafted for fitness and exercise instructors seeking CPD, this online training enhances your understanding of both intrinsic and extrinsic biomechanics.\r\n\r\n<em>Note: A face-to-face attendance option is available for an attendance certificate.</em>'),(184265,40703,'_blocks_1_tabs_0_tab_content_text','field_6177cfcd81416'),(184266,40703,'blocks_1_tabs_0_tab_content_actions',''),(184267,40703,'_blocks_1_tabs_0_tab_content_actions','field_6177cfcd81417'),(184268,40703,'blocks_1_tabs_0_tab_content',''),(184269,40703,'_blocks_1_tabs_0_tab_content','field_6177cfcd81413'),(184270,40703,'blocks_1_tabs_0_tab_image',''),(184271,40703,'_blocks_1_tabs_0_tab_image','field_6177cfcd81412'),(184272,40703,'blocks_1_tabs_1_tab_label','Seamless Access '),(184273,40703,'_blocks_1_tabs_1_tab_label','field_6177d0068141a'),(184274,40703,'blocks_1_tabs_1_tab_content_title',''),(184275,40703,'_blocks_1_tabs_1_tab_content_title','field_6177cfcd81414'),(184276,40703,'blocks_1_tabs_1_tab_content_heading',''),(184277,40703,'_blocks_1_tabs_1_tab_content_heading','field_6177cfcd81415'),(184278,40703,'blocks_1_tabs_1_tab_content_text','Upon payment, promptly access the video link and download your handout PDF. For future access, log in with your email.'),(184279,40703,'_blocks_1_tabs_1_tab_content_text','field_6177cfcd81416'),(184280,40703,'blocks_1_tabs_1_tab_content_actions',''),(184281,40703,'_blocks_1_tabs_1_tab_content_actions','field_6177cfcd81417'),(184282,40703,'blocks_1_tabs_1_tab_content',''),(184283,40703,'_blocks_1_tabs_1_tab_content','field_6177cfcd81413'),(184284,40703,'blocks_1_tabs_1_tab_image',''),(184285,40703,'_blocks_1_tabs_1_tab_image','field_6177cfcd81412'),(184286,40703,'blocks_1_tabs_2_tab_label','Exclusive Workshop Option! '),(184287,40703,'_blocks_1_tabs_2_tab_label','field_6177d0068141a'),(184288,40703,'blocks_1_tabs_2_tab_content_title',''),(184289,40703,'_blocks_1_tabs_2_tab_content_title','field_6177cfcd81414'),(184290,40703,'blocks_1_tabs_2_tab_content_heading',''),(184291,40703,'_blocks_1_tabs_2_tab_content_heading','field_6177cfcd81415'),(184292,40703,'blocks_1_tabs_2_tab_content_text','Opt for the face-to-face Running Biomechanics Workshop, receive a refund on the online training, and secure your attendance certificate.'),(184293,40703,'_blocks_1_tabs_2_tab_content_text','field_6177cfcd81416'),(184294,40703,'blocks_1_tabs_2_tab_content_actions',''),(184295,40703,'_blocks_1_tabs_2_tab_content_actions','field_6177cfcd81417'),(184296,40703,'blocks_1_tabs_2_tab_content',''),(184297,40703,'_blocks_1_tabs_2_tab_content','field_6177cfcd81413'),(184298,40703,'blocks_1_tabs_2_tab_image',''),(184299,40703,'_blocks_1_tabs_2_tab_image','field_6177cfcd81412'),(184300,40703,'blocks_1_tabs_3_tab_label','Elevate Your Run Today '),(184301,40703,'_blocks_1_tabs_3_tab_label','field_6177d0068141a'),(184302,40703,'blocks_1_tabs_3_tab_content_title',''),(184303,40703,'_blocks_1_tabs_3_tab_content_title','field_6177cfcd81414'),(184304,40703,'blocks_1_tabs_3_tab_content_heading',''),(184305,40703,'_blocks_1_tabs_3_tab_content_heading','field_6177cfcd81415'),(184306,40703,'blocks_1_tabs_3_tab_content_text','Revolutionise your running journey with Introduction to Running Biomechanics. Enrol now for a transformative learning experience!'),(184307,40703,'_blocks_1_tabs_3_tab_content_text','field_6177cfcd81416'),(184308,40703,'blocks_1_tabs_3_tab_content_actions',''),(184309,40703,'_blocks_1_tabs_3_tab_content_actions','field_6177cfcd81417'),(184310,40703,'blocks_1_tabs_3_tab_content',''),(184311,40703,'_blocks_1_tabs_3_tab_content','field_6177cfcd81413'),(184312,40703,'blocks_1_tabs_3_tab_image',''),(184313,40703,'_blocks_1_tabs_3_tab_image','field_6177cfcd81412'),(184314,40703,'blocks_1_tabs','4'),(184315,40703,'_blocks_1_tabs','field_6177cff281419'),(184316,40703,'blocks_2_acfe_flexible_toggle',''),(184317,40703,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(184318,40703,'blocks_2_acfe_flexible_layout_title','Button(s)'),(184319,40703,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(184320,40703,'blocks_2_options_theme','#ffffff'),(184321,40703,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(184322,40703,'blocks_2_options',''),(184323,40703,'_blocks_2_options','field_623b03edb6e65'),(184324,40703,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(184325,40703,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(184326,40703,'blocks_2_actions','1'),(184327,40703,'_blocks_2_actions','field_623b03edb6e6e'),(184328,40703,'blocks_3_acfe_flexible_toggle',''),(184329,40703,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(184330,40703,'blocks_3_acfe_flexible_layout_title','Text Block'),(184331,40703,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(184332,40703,'blocks_3_options_theme','#ffffff'),(184333,40703,'_blocks_3_options_theme','field_6176830e2ad17'),(184334,40703,'blocks_3_options',''),(184335,40703,'_blocks_3_options','field_6176830e2ad16'),(184336,40703,'blocks_3_text_block_heading','Please Note'),(184337,40703,'_blocks_3_text_block_heading','field_617669d413097'),(184338,40703,'blocks_3_text_block_content','This online training is designed to inform &amp; enhance understanding for fitness and exercise instructors through CPD. However, to gain an attendance certificate face to face attendance is required. Once you make your payment, please see the video link and DOWNLOAD your handout pdf immediately for instant access. Otherwise, you simply need to log back in using the email you signed in with to access all purchases.'),(184339,40703,'_blocks_3_text_block_content','field_617669ec13098'),(184340,40703,'blocks_4_acfe_flexible_toggle',''),(184341,40703,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(184342,40703,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(184343,40703,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(184344,40703,'blocks_4_options_theme','#ffffff'),(184345,40703,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(184346,40703,'blocks_4_options_state','0'),(184347,40703,'_blocks_4_options_state','field_6239fcb7508c5'),(184348,40703,'blocks_4_options',''),(184349,40703,'_blocks_4_options','field_6177e2991ac44'),(184350,40703,'blocks_4_content_title',''),(184351,40703,'_blocks_4_content_title','field_64d237e8bb1e2'),(184352,40703,'blocks_4_content_heading',''),(184353,40703,'_blocks_4_content_heading','field_64d237e8bb1e3'),(184354,40703,'blocks_4_content_text',''),(184355,40703,'_blocks_4_content_text','field_64d237e8bb1e4'),(184356,40703,'blocks_4_content_actions',''),(184357,40703,'_blocks_4_content_actions','field_64d237e8bb1e5'),(184358,40703,'blocks_4_content_align','left'),(184359,40703,'_blocks_4_content_align','field_64d2443e6b6aa'),(184360,40703,'blocks_4_content',''),(184361,40703,'_blocks_4_content','field_64d237e8bb1e1'),(184362,40703,'blocks_4_accordion_content','custom'),(184363,40703,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(184364,40703,'blocks_4_accordion_items',''),(184365,40703,'_blocks_4_accordion_items','field_6177e2991ac4c'),(184366,40703,'blocks_4_actions',''),(184367,40703,'_blocks_4_actions','field_61a746a817f7a'),(184368,40703,'blocks_5_acfe_flexible_toggle',''),(184369,40703,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(184370,40703,'blocks_5_acfe_flexible_layout_title','Text Block'),(184371,40703,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(184372,40703,'blocks_5_options_theme','#ffffff'),(184373,40703,'_blocks_5_options_theme','field_6176830e2ad17'),(184374,40703,'blocks_5_options',''),(184375,40703,'_blocks_5_options','field_6176830e2ad16'),(184376,40703,'blocks_5_text_block_heading','See Our Other CPD Courses'),(184377,40703,'_blocks_5_text_block_heading','field_617669d413097'),(184378,40703,'blocks_5_text_block_content','Check out our other frequently purchased CPD courses'),(184379,40703,'_blocks_5_text_block_content','field_617669ec13098'),(184380,40703,'blocks_6_acfe_flexible_toggle',''),(184381,40703,'_blocks_6_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(184382,40703,'blocks_6_acfe_flexible_layout_title','Course Comparison'),(184383,40703,'_blocks_6_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(184384,40703,'blocks_6_options_theme','#ffffff'),(184385,40703,'_blocks_6_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(184386,40703,'blocks_6_options',''),(184387,40703,'_blocks_6_options','field_617ac0b7f6c08'),(184388,40703,'blocks_6_show','category'),(184389,40703,'_blocks_6_show','field_61a49cba9d946'),(184390,40703,'blocks_6_category','403'),(184391,40703,'_blocks_6_category','field_61a49cd79d947'),(184392,40703,'blocks','a:7:{i:0;s:10:\"split_5050\";i:1;s:4:\"tabs\";i:2;s:7:\"buttons\";i:3;s:10:\"text_block\";i:4;s:10:\"accordions\";i:5;s:10:\"text_block\";i:6;s:14:\"course_compare\";}'),(184393,40703,'_blocks','field_6176696113096'),(184394,40703,'course_label_text','Introduction To Running Biomechanics'),(184395,40703,'_course_label_text','field_61e17babf71fa'),(184396,40703,'course_label',''),(184397,40703,'_course_label','field_61e12f92749a7'),(184398,40703,'course_description','Discover the Secrets of Optimal Running Styles in this Comprehensive 3hr 15min Classroom Recording & Handout Session! '),(184399,40703,'_course_description','field_617ac5788e5e1'),(184400,40703,'course_key_info','3'),(184401,40703,'_course_key_info','field_617ac6ad8e5e2'),(184402,40703,'course_included','Master running club terminology.\r\nGrasp the mechanics and sequencing of different running gaits.\r\nExplore extrinsic influences and identify intrinsic restrictions.\r\n'),(184403,40703,'_course_included','field_617ac6f08e5e4'),(184404,40703,'course_label_label_theme','#0d1f73'),(184405,40703,'_course_label_label_theme','field_61e17bb8f71fb'),(184406,40703,'course_key_info_0_text','Online Learning'),(184407,40703,'_course_key_info_0_text','field_617ac6c38e5e3'),(184408,40703,'course_key_info_1_text','CPD'),(184409,40703,'_course_key_info_1_text','field_617ac6c38e5e3'),(184410,40703,'course_key_info_2_text',''),(184411,40703,'_course_key_info_2_text','field_617ac6c38e5e3'),(184412,40704,'hide_hero','0'),(184413,40704,'_hide_hero','field_66a2380fcda39'),(184414,40704,'hero_title','Fundamental Principles of Movement'),(184415,40704,'_hero_title','field_617571fe285e8'),(184416,40704,'hero_text','Explore the Fundamental Principles of Movement Analysis'),(184417,40704,'_hero_text','field_6175723c285e9'),(184418,40704,'hero_actions',''),(184419,40704,'_hero_actions','field_61757270285ea'),(184420,40704,'hero_style','default'),(184421,40704,'_hero_style','field_62051d9dc5324'),(184422,40704,'_thumbnail_id','40630'),(184423,40704,'__thumbnail_id','field_617570855ddaf'),(184424,40704,'hero_image_pos_x','right'),(184425,40704,'_hero_image_pos_x','field_62ec3d05390bb'),(184426,40704,'hero_image_pos_y','top'),(184427,40704,'_hero_image_pos_y','field_62ec3d05390bc'),(184428,40704,'hero_image_pos',''),(184429,40704,'_hero_image_pos','field_62ec3d05390ba'),(184430,40704,'fft_hide_from_listings','0'),(184431,40704,'_fft_hide_from_listings','field_61f1320446ab2'),(184432,40704,'fft_page_format','default'),(184433,40704,'_fft_page_format','field_61ae213f1f218'),(184434,40704,'fft_hide_nav','0'),(184435,40704,'_fft_hide_nav','field_635bd5e43527c'),(184436,40704,'fft_hide_header_call_to_action','0'),(184437,40704,'_fft_hide_header_call_to_action','field_635bd6723527d'),(184438,40704,'fft_page_sitemap','0'),(184439,40704,'_fft_page_sitemap','field_61af9b34e8181'),(184440,40704,'blocks_0_acfe_flexible_toggle',''),(184441,40704,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(184442,40704,'blocks_0_acfe_flexible_layout_title','Text Block'),(184443,40704,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(184444,40704,'blocks_0_options_theme','#ffffff'),(184445,40704,'_blocks_0_options_theme','field_6176830e2ad17'),(184446,40704,'blocks_0_options',''),(184447,40704,'_blocks_0_options','field_6176830e2ad16'),(184448,40704,'blocks_0_text_block_heading','Overview'),(184449,40704,'_blocks_0_text_block_heading','field_617669d413097'),(184450,40704,'blocks_0_text_block_content','Are you looking to deepen your understanding of the human body and the principles of movement? We are pleased to introduce our fundamental principles of movement analysis course, offering insights into comprehending, and analysing human movement.\r\n\r\nOur online course simplifies the complex subject of human movement analysis, providing practitioners with a practical understanding to assess their clients\' movement quality. With this knowledge, you can refine your exercise prescriptions to improve movement quality effectively.'),(184451,40704,'_blocks_0_text_block_content','field_617669ec13098'),(184452,40704,'blocks_1_acfe_flexible_toggle',''),(184453,40704,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(184454,40704,'blocks_1_acfe_flexible_layout_title','Timeline'),(184455,40704,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(184456,40704,'blocks_1_options_theme','#f5f5f5'),(184457,40704,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(184458,40704,'blocks_1_options',''),(184459,40704,'_blocks_1_options','field_6177de53d1195'),(184460,40704,'blocks_1_timeline_content_title',''),(184461,40704,'_blocks_1_timeline_content_title','field_6177de53d1198'),(184462,40704,'blocks_1_timeline_content_heading','Fundamental Principles of Movement Analysis'),(184463,40704,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(184464,40704,'blocks_1_timeline_content_text','Explore the Fundamental Principles of Movement Analysis, divided into four parts'),(184465,40704,'_blocks_1_timeline_content_text','field_6177de53d119a'),(184466,40704,'blocks_1_timeline_content_actions',''),(184467,40704,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(184468,40704,'blocks_1_timeline_content',''),(184469,40704,'_blocks_1_timeline_content','field_6177de53d1197'),(184470,40704,'blocks_1_timeline_items_0_title','Part 1: Principles of Movement Analysis '),(184471,40704,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(184472,40704,'blocks_1_timeline_items_0_text','Understand the foundational principles of human movement. '),(184473,40704,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(184474,40704,'blocks_1_timeline_items_1_title','Part 2: Equilibrium '),(184475,40704,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(184476,40704,'blocks_1_timeline_items_1_text','Learn about maintaining balance and equilibrium within the human body. '),(184477,40704,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(184478,40704,'blocks_1_timeline_items_2_title','Part 3: Levers '),(184479,40704,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(184480,40704,'blocks_1_timeline_items_2_text','Explore the mechanical principles of levers and their role in human movement. '),(184481,40704,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(184482,40704,'blocks_1_timeline_items_3_title','Part 4: Turning Forces '),(184483,40704,'_blocks_1_timeline_items_3_title','field_6177de53d119f'),(184484,40704,'blocks_1_timeline_items_3_text','Understand the dynamics of turning forces and their impact on human movement. '),(184485,40704,'_blocks_1_timeline_items_3_text','field_6177de53d11a0'),(184486,40704,'blocks_1_timeline_items','4'),(184487,40704,'_blocks_1_timeline_items','field_6177de53d119d'),(184488,40704,'blocks_2_acfe_flexible_toggle',''),(184489,40704,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(184490,40704,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(184491,40704,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(184492,40704,'blocks_2_options_theme','#b61234'),(184493,40704,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(184494,40704,'blocks_2_options_reverse','0'),(184495,40704,'_blocks_2_options_reverse','field_61768049bb8ac'),(184496,40704,'blocks_2_options',''),(184497,40704,'_blocks_2_options','field_617682517c334'),(184498,40704,'blocks_2_split_5050_image','40631'),(184499,40704,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(184500,40704,'blocks_2_split_5050_video',''),(184501,40704,'_blocks_2_split_5050_video','field_6239f3160848a'),(184502,40704,'blocks_2_split_5050_content_title',''),(184503,40704,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(184504,40704,'blocks_2_split_5050_content_heading','Ready to Get Started? '),(184505,40704,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(184506,40704,'blocks_2_split_5050_content_text','This downloadable course, accompanied by a quiz, aims to inform, and enhance the skills of human movement practitioners in both intrinsic and extrinsic biomechanics.\r\n\r\nReady to get started? After payment, download your course instantly for immediate access. Refine your understanding of movement analysis!'),(184507,40704,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(184508,40704,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(184509,40704,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(184510,40704,'blocks_2_split_5050_content_actions','1'),(184511,40704,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(184512,40704,'blocks_2_split_5050_content',''),(184513,40704,'_blocks_2_split_5050_content','field_61767afceb8ba'),(184514,40704,'blocks_3_acfe_flexible_toggle',''),(184515,40704,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(184516,40704,'blocks_3_acfe_flexible_layout_title','Text Block'),(184517,40704,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(184518,40704,'blocks_3_options_theme','#ffffff'),(184519,40704,'_blocks_3_options_theme','field_6176830e2ad17'),(184520,40704,'blocks_3_options',''),(184521,40704,'_blocks_3_options','field_6176830e2ad16'),(184522,40704,'blocks_3_text_block_heading','Other Courses'),(184523,40704,'_blocks_3_text_block_heading','field_617669d413097'),(184524,40704,'blocks_3_text_block_content','Check out other courses that are frequently purchased'),(184525,40704,'_blocks_3_text_block_content','field_617669ec13098'),(184526,40704,'blocks_4_acfe_flexible_toggle',''),(184527,40704,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(184528,40704,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(184529,40704,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(184530,40704,'blocks_4_options_theme','#ffffff'),(184531,40704,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(184532,40704,'blocks_4_options',''),(184533,40704,'_blocks_4_options','field_617ac0b7f6c08'),(184534,40704,'blocks_4_show','category'),(184535,40704,'_blocks_4_show','field_61a49cba9d946'),(184536,40704,'blocks_4_category','403'),(184537,40704,'_blocks_4_category','field_61a49cd79d947'),(184538,40704,'blocks_5_acfe_flexible_toggle',''),(184539,40704,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(184540,40704,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(184541,40704,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(184542,40704,'blocks_5_options_theme','#ffffff'),(184543,40704,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(184544,40704,'blocks_5_options_state','0'),(184545,40704,'_blocks_5_options_state','field_6239fcb7508c5'),(184546,40704,'blocks_5_options',''),(184547,40704,'_blocks_5_options','field_6177e2991ac44'),(184548,40704,'blocks_5_content_title',''),(184549,40704,'_blocks_5_content_title','field_64d237e8bb1e2'),(184550,40704,'blocks_5_content_heading','FAQ\'s'),(184551,40704,'_blocks_5_content_heading','field_64d237e8bb1e3'),(184552,40704,'blocks_5_content_text',''),(184553,40704,'_blocks_5_content_text','field_64d237e8bb1e4'),(184554,40704,'blocks_5_content_actions',''),(184555,40704,'_blocks_5_content_actions','field_64d237e8bb1e5'),(184556,40704,'blocks_5_content_align','left'),(184557,40704,'_blocks_5_content_align','field_64d2443e6b6aa'),(184558,40704,'blocks_5_content',''),(184559,40704,'_blocks_5_content','field_64d237e8bb1e1'),(184560,40704,'blocks_5_accordion_content','custom'),(184561,40704,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(184562,40704,'blocks_5_accordion_items',''),(184563,40704,'_blocks_5_accordion_items','field_6177e2991ac4c'),(184564,40704,'blocks_5_actions',''),(184565,40704,'_blocks_5_actions','field_61a746a817f7a'),(184566,40704,'blocks','a:6:{i:0;s:10:\"text_block\";i:1;s:13:\"step_timeline\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:10:\"accordions\";}'),(184567,40704,'_blocks','field_6176696113096'),(184568,40704,'course_label_text','Fundamental Principles of Movement'),(184569,40704,'_course_label_text','field_61e17babf71fa'),(184570,40704,'course_label',''),(184571,40704,'_course_label','field_61e12f92749a7'),(184572,40704,'course_description','Are you looking to deepen your understanding of the human body and movement? We are pleased to introduce our fundamental principles of movement analysis course, offering insights into comprehending, and analysing human movement.'),(184573,40704,'_course_description','field_617ac5788e5e1'),(184574,40704,'course_key_info','2'),(184575,40704,'_course_key_info','field_617ac6ad8e5e2'),(184576,40704,'course_included','Part 1: Principles of Movement Analysis \r\nPart 2: Equilibrium \r\nPart 3: Levers \r\nPart 4: Turning Forces '),(184577,40704,'_course_included','field_617ac6f08e5e4'),(184578,40704,'course_label_label_theme','#0d1f73'),(184579,40704,'_course_label_label_theme','field_61e17bb8f71fb'),(184580,40704,'course_key_info_0_text','CPD'),(184581,40704,'_course_key_info_0_text','field_617ac6c38e5e3'),(184582,40704,'course_key_info_1_text','Online Learning'),(184583,40704,'_course_key_info_1_text','field_617ac6c38e5e3'),(184584,40705,'hide_hero','0'),(184585,40705,'_hide_hero','field_66a2380fcda39'),(184586,40705,'hero_title','The Practical Anatomy Series'),(184587,40705,'_hero_title','field_617571fe285e8'),(184588,40705,'hero_text',''),(184589,40705,'_hero_text','field_6175723c285e9'),(184590,40705,'hero_actions',''),(184591,40705,'_hero_actions','field_61757270285ea'),(184592,40705,'hero_style','default'),(184593,40705,'_hero_style','field_62051d9dc5324'),(184594,40705,'_thumbnail_id','40634'),(184595,40705,'__thumbnail_id','field_617570855ddaf'),(184596,40705,'hero_image_pos_x','right'),(184597,40705,'_hero_image_pos_x','field_62ec3d05390bb'),(184598,40705,'hero_image_pos_y','top'),(184599,40705,'_hero_image_pos_y','field_62ec3d05390bc'),(184600,40705,'hero_image_pos',''),(184601,40705,'_hero_image_pos','field_62ec3d05390ba'),(184602,40705,'fft_hide_from_listings','0'),(184603,40705,'_fft_hide_from_listings','field_61f1320446ab2'),(184604,40705,'fft_page_format','default'),(184605,40705,'_fft_page_format','field_61ae213f1f218'),(184606,40705,'fft_hide_nav','0'),(184607,40705,'_fft_hide_nav','field_635bd5e43527c'),(184608,40705,'fft_hide_header_call_to_action','0'),(184609,40705,'_fft_hide_header_call_to_action','field_635bd6723527d'),(184610,40705,'fft_page_sitemap','0'),(184611,40705,'_fft_page_sitemap','field_61af9b34e8181'),(184612,40705,'blocks_0_acfe_flexible_toggle',''),(184613,40705,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(184614,40705,'blocks_0_acfe_flexible_layout_title','Template'),(184615,40705,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(184616,40705,'blocks_0_template','39087'),(184617,40705,'_blocks_0_template','field_617bdd570fe01'),(184618,40705,'blocks_1_acfe_flexible_toggle',''),(184619,40705,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(184620,40705,'blocks_1_acfe_flexible_layout_title','Text Block'),(184621,40705,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(184622,40705,'blocks_1_options_theme','#f5f5f5'),(184623,40705,'_blocks_1_options_theme','field_6176830e2ad17'),(184624,40705,'blocks_1_options',''),(184625,40705,'_blocks_1_options','field_6176830e2ad16'),(184626,40705,'blocks_1_text_block_heading','Overview'),(184627,40705,'_blocks_1_text_block_heading','field_617669d413097'),(184628,40705,'blocks_1_text_block_content','Discover the Practical Anatomy Series – a comprehensive learning experience comprising of five Online Recorded Classrooms and five E-Zines. If you\'ve been feeling a gap in your anatomy training or wish to simplify your learning process, this series is designed to support your journey into practical anatomy and intrinsic biomechanics.'),(184629,40705,'_blocks_1_text_block_content','field_617669ec13098'),(184630,40705,'blocks_2_acfe_flexible_toggle',''),(184631,40705,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(184632,40705,'blocks_2_acfe_flexible_layout_title','Timeline'),(184633,40705,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(184634,40705,'blocks_2_options_theme','#ffffff'),(184635,40705,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(184636,40705,'blocks_2_options',''),(184637,40705,'_blocks_2_options','field_6177de53d1195'),(184638,40705,'blocks_2_timeline_content_title',''),(184639,40705,'_blocks_2_timeline_content_title','field_6177de53d1198'),(184640,40705,'blocks_2_timeline_content_heading','Course Info'),(184641,40705,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(184642,40705,'blocks_2_timeline_content_text','Practical anatomy is more than memorisation; it\'s about applying your knowledge to understand your clients\' bodies and implementing practical solutions. Dive into the series for simplified anatomy learning, fun facts, and visual/memory tactics that enhance your understanding. The five online recorded classrooms and accompanying E-Zines provide a holistic approach to practical anatomy and intrinsic biomechanics.'),(184643,40705,'_blocks_2_timeline_content_text','field_6177de53d119a'),(184644,40705,'blocks_2_timeline_content_actions',''),(184645,40705,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(184646,40705,'blocks_2_timeline_content',''),(184647,40705,'_blocks_2_timeline_content','field_6177de53d1197'),(184648,40705,'blocks_2_timeline_items_0_title','CIMSPA Points'),(184649,40705,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(184650,40705,'blocks_2_timeline_items_0_text','Each of the five practical anatomy online webinars included in this series is worth one CPD, contributing to a total of five CIMSPA CPD points with this purchase. Elevate your professional development and enhance your practical skills in anatomy. '),(184651,40705,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(184652,40705,'blocks_2_timeline_items_1_title','Are you ready? '),(184653,40705,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(184654,40705,'blocks_2_timeline_items_1_text','Ready to enhance your anatomy knowledge and practical skills? Upon purchase, you not only gain access to the 5 online recorded classrooms and 5 E-Zines, but also set yourself on a path to deduct the series cost from the full price of our Diploma in Biomechanics Coaching if you choose to enrol.  '),(184655,40705,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(184656,40705,'blocks_2_timeline_items','2'),(184657,40705,'_blocks_2_timeline_items','field_6177de53d119d'),(184658,40705,'blocks_3_acfe_flexible_toggle',''),(184659,40705,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(184660,40705,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(184661,40705,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(184662,40705,'blocks_3_options_theme','#b61234'),(184663,40705,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(184664,40705,'blocks_3_options_reverse','0'),(184665,40705,'_blocks_3_options_reverse','field_61768049bb8ac'),(184666,40705,'blocks_3_options',''),(184667,40705,'_blocks_3_options','field_617682517c334'),(184668,40705,'blocks_3_split_5050_image','40635'),(184669,40705,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(184670,40705,'blocks_3_split_5050_video',''),(184671,40705,'_blocks_3_split_5050_video','field_6239f3160848a'),(184672,40705,'blocks_3_split_5050_content_title',''),(184673,40705,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(184674,40705,'blocks_3_split_5050_content_heading','Invest in your learning journey'),(184675,40705,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(184676,40705,'blocks_3_split_5050_content_text','Invest in your learning journey and take the first step towards a deeper understanding of your clients\' bodies.'),(184677,40705,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(184678,40705,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(184679,40705,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(184680,40705,'blocks_3_split_5050_content_actions','1'),(184681,40705,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(184682,40705,'blocks_3_split_5050_content',''),(184683,40705,'_blocks_3_split_5050_content','field_61767afceb8ba'),(184684,40705,'blocks_4_acfe_flexible_toggle',''),(184685,40705,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(184686,40705,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(184687,40705,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(184688,40705,'blocks_4_options_theme','#ffffff'),(184689,40705,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(184690,40705,'blocks_4_options_state','0'),(184691,40705,'_blocks_4_options_state','field_6239fcb7508c5'),(184692,40705,'blocks_4_options',''),(184693,40705,'_blocks_4_options','field_6177e2991ac44'),(184694,40705,'blocks_4_content_title',''),(184695,40705,'_blocks_4_content_title','field_64d237e8bb1e2'),(184696,40705,'blocks_4_content_heading','FAQ\'s'),(184697,40705,'_blocks_4_content_heading','field_64d237e8bb1e3'),(184698,40705,'blocks_4_content_text',''),(184699,40705,'_blocks_4_content_text','field_64d237e8bb1e4'),(184700,40705,'blocks_4_content_actions',''),(184701,40705,'_blocks_4_content_actions','field_64d237e8bb1e5'),(184702,40705,'blocks_4_content_align','left'),(184703,40705,'_blocks_4_content_align','field_64d2443e6b6aa'),(184704,40705,'blocks_4_content',''),(184705,40705,'_blocks_4_content','field_64d237e8bb1e1'),(184706,40705,'blocks_4_accordion_content','custom'),(184707,40705,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(184708,40705,'blocks_4_accordion_items',''),(184709,40705,'_blocks_4_accordion_items','field_6177e2991ac4c'),(184710,40705,'blocks_4_actions',''),(184711,40705,'_blocks_4_actions','field_61a746a817f7a'),(184712,40705,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:10:\"accordions\";}'),(184713,40705,'_blocks','field_6176696113096'),(184714,40705,'course_label_text','Practical Anatomy Series'),(184715,40705,'_course_label_text','field_61e17babf71fa'),(184716,40705,'course_label',''),(184717,40705,'_course_label','field_61e12f92749a7'),(184718,40705,'course_description','Discover the Practical Anatomy Series – a comprehensive learning experience comprising of five Online Recorded Classrooms and five E-Zines'),(184719,40705,'_course_description','field_617ac5788e5e1'),(184720,40705,'course_key_info','3'),(184721,40705,'_course_key_info','field_617ac6ad8e5e2'),(184722,40705,'course_included','5 x Recorded Classrooms\r\n5 x E-zines'),(184723,40705,'_course_included','field_617ac6f08e5e4'),(184724,40705,'course_label_label_theme','#0d1f73'),(184725,40705,'_course_label_label_theme','field_61e17bb8f71fb'),(184726,40705,'course_key_info_0_text','CPD'),(184727,40705,'_course_key_info_0_text','field_617ac6c38e5e3'),(184728,40705,'course_key_info_1_text','E-Zines '),(184729,40705,'_course_key_info_1_text','field_617ac6c38e5e3'),(184730,40705,'course_key_info_2_text','Online Learning'),(184731,40705,'_course_key_info_2_text','field_617ac6c38e5e3'),(184732,40706,'hide_hero','0'),(184733,40706,'_hide_hero','field_66a2380fcda39'),(184734,40706,'hero_title','Introduction To Running Biomechanics'),(184735,40706,'_hero_title','field_617571fe285e8'),(184736,40706,'hero_text','Discover the Secrets of Optimal Running Styles in this Comprehensive 3hr 15min Classroom Recording & Handout Session! '),(184737,40706,'_hero_text','field_6175723c285e9'),(184738,40706,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(184739,40706,'_hero_actions_0_button','field_61757281285eb'),(184740,40706,'hero_actions','1'),(184741,40706,'_hero_actions','field_61757270285ea'),(184742,40706,'hero_style','default'),(184743,40706,'_hero_style','field_62051d9dc5324'),(184744,40706,'_thumbnail_id','40611'),(184745,40706,'__thumbnail_id','field_617570855ddaf'),(184746,40706,'hero_image_pos_x','right'),(184747,40706,'_hero_image_pos_x','field_62ec3d05390bb'),(184748,40706,'hero_image_pos_y','top'),(184749,40706,'_hero_image_pos_y','field_62ec3d05390bc'),(184750,40706,'hero_image_pos',''),(184751,40706,'_hero_image_pos','field_62ec3d05390ba'),(184752,40706,'fft_hide_from_listings','0'),(184753,40706,'_fft_hide_from_listings','field_61f1320446ab2'),(184754,40706,'fft_page_format','default'),(184755,40706,'_fft_page_format','field_61ae213f1f218'),(184756,40706,'fft_hide_nav','0'),(184757,40706,'_fft_hide_nav','field_635bd5e43527c'),(184758,40706,'fft_hide_header_call_to_action','0'),(184759,40706,'_fft_hide_header_call_to_action','field_635bd6723527d'),(184760,40706,'fft_page_sitemap','0'),(184761,40706,'_fft_page_sitemap','field_61af9b34e8181'),(184762,40706,'blocks_0_acfe_flexible_toggle',''),(184763,40706,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(184764,40706,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(184765,40706,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(184766,40706,'blocks_0_options_theme','#ffffff'),(184767,40706,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(184768,40706,'blocks_0_options_reverse','0'),(184769,40706,'_blocks_0_options_reverse','field_61768049bb8ac'),(184770,40706,'blocks_0_options',''),(184771,40706,'_blocks_0_options','field_617682517c334'),(184772,40706,'blocks_0_split_5050_image','40612'),(184773,40706,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(184774,40706,'blocks_0_split_5050_video',''),(184775,40706,'_blocks_0_split_5050_video','field_6239f3160848a'),(184776,40706,'blocks_0_split_5050_content_title',''),(184777,40706,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(184778,40706,'blocks_0_split_5050_content_heading','Course Overview'),(184779,40706,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(184780,40706,'blocks_0_split_5050_content_text','<strong>Embrace the Essence of Running</strong>\r\n\r\nRunning is a cornerstone of fitness, yet the ongoing debate on the best running style can be confusing. Simplify the complexity with our Introduction to Running Biomechanics Online Training.\r\n\r\n<strong>Tailored for You</strong>\r\n\r\nNo one-size-fits-all approach here. This workshop dissects the evidence supporting various running styles, empowering you to make informed choices for you and your clients.\r\n\r\n<strong>What You\'ll Gain</strong>\r\n<ul>\r\n 	<li>Master running club terminology.</li>\r\n 	<li>Grasp the mechanics and sequencing of different running gaits.</li>\r\n 	<li>Explore extrinsic influences and identify intrinsic restrictions.</li>\r\n</ul>'),(184781,40706,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(184782,40706,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(184783,40706,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(184784,40706,'blocks_0_split_5050_content_actions','1'),(184785,40706,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(184786,40706,'blocks_0_split_5050_content',''),(184787,40706,'_blocks_0_split_5050_content','field_61767afceb8ba'),(184788,40706,'blocks_1_acfe_flexible_toggle',''),(184789,40706,'_blocks_1_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(184790,40706,'blocks_1_acfe_flexible_layout_title','Tabs'),(184791,40706,'_blocks_1_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(184792,40706,'blocks_1_options_theme','#f5f5f5'),(184793,40706,'_blocks_1_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(184794,40706,'blocks_1_options',''),(184795,40706,'_blocks_1_options','field_6177cfcd8140f'),(184796,40706,'blocks_1_tabs_0_tab_label','Elevate Your Expertise '),(184797,40706,'_blocks_1_tabs_0_tab_label','field_6177d0068141a'),(184798,40706,'blocks_1_tabs_0_tab_content_title',''),(184799,40706,'_blocks_1_tabs_0_tab_content_title','field_6177cfcd81414'),(184800,40706,'blocks_1_tabs_0_tab_content_heading',''),(184801,40706,'_blocks_1_tabs_0_tab_content_heading','field_6177cfcd81415'),(184802,40706,'blocks_1_tabs_0_tab_content_text','Crafted for fitness and exercise instructors seeking CPD, this online training enhances your understanding of both intrinsic and extrinsic biomechanics.\r\n\r\n<em>Note: A face-to-face attendance option is available for an attendance certificate.</em>'),(184803,40706,'_blocks_1_tabs_0_tab_content_text','field_6177cfcd81416'),(184804,40706,'blocks_1_tabs_0_tab_content_actions',''),(184805,40706,'_blocks_1_tabs_0_tab_content_actions','field_6177cfcd81417'),(184806,40706,'blocks_1_tabs_0_tab_content',''),(184807,40706,'_blocks_1_tabs_0_tab_content','field_6177cfcd81413'),(184808,40706,'blocks_1_tabs_0_tab_image',''),(184809,40706,'_blocks_1_tabs_0_tab_image','field_6177cfcd81412'),(184810,40706,'blocks_1_tabs_1_tab_label','Seamless Access '),(184811,40706,'_blocks_1_tabs_1_tab_label','field_6177d0068141a'),(184812,40706,'blocks_1_tabs_1_tab_content_title',''),(184813,40706,'_blocks_1_tabs_1_tab_content_title','field_6177cfcd81414'),(184814,40706,'blocks_1_tabs_1_tab_content_heading',''),(184815,40706,'_blocks_1_tabs_1_tab_content_heading','field_6177cfcd81415'),(184816,40706,'blocks_1_tabs_1_tab_content_text','Upon payment, promptly access the video link and download your handout PDF. For future access, log in with your email.'),(184817,40706,'_blocks_1_tabs_1_tab_content_text','field_6177cfcd81416'),(184818,40706,'blocks_1_tabs_1_tab_content_actions',''),(184819,40706,'_blocks_1_tabs_1_tab_content_actions','field_6177cfcd81417'),(184820,40706,'blocks_1_tabs_1_tab_content',''),(184821,40706,'_blocks_1_tabs_1_tab_content','field_6177cfcd81413'),(184822,40706,'blocks_1_tabs_1_tab_image',''),(184823,40706,'_blocks_1_tabs_1_tab_image','field_6177cfcd81412'),(184824,40706,'blocks_1_tabs_2_tab_label','Exclusive Workshop Option! '),(184825,40706,'_blocks_1_tabs_2_tab_label','field_6177d0068141a'),(184826,40706,'blocks_1_tabs_2_tab_content_title',''),(184827,40706,'_blocks_1_tabs_2_tab_content_title','field_6177cfcd81414'),(184828,40706,'blocks_1_tabs_2_tab_content_heading',''),(184829,40706,'_blocks_1_tabs_2_tab_content_heading','field_6177cfcd81415'),(184830,40706,'blocks_1_tabs_2_tab_content_text','Opt for the face-to-face Running Biomechanics Workshop, receive a refund on the online training, and secure your attendance certificate.'),(184831,40706,'_blocks_1_tabs_2_tab_content_text','field_6177cfcd81416'),(184832,40706,'blocks_1_tabs_2_tab_content_actions',''),(184833,40706,'_blocks_1_tabs_2_tab_content_actions','field_6177cfcd81417'),(184834,40706,'blocks_1_tabs_2_tab_content',''),(184835,40706,'_blocks_1_tabs_2_tab_content','field_6177cfcd81413'),(184836,40706,'blocks_1_tabs_2_tab_image',''),(184837,40706,'_blocks_1_tabs_2_tab_image','field_6177cfcd81412'),(184838,40706,'blocks_1_tabs_3_tab_label','Elevate Your Run Today '),(184839,40706,'_blocks_1_tabs_3_tab_label','field_6177d0068141a'),(184840,40706,'blocks_1_tabs_3_tab_content_title',''),(184841,40706,'_blocks_1_tabs_3_tab_content_title','field_6177cfcd81414'),(184842,40706,'blocks_1_tabs_3_tab_content_heading',''),(184843,40706,'_blocks_1_tabs_3_tab_content_heading','field_6177cfcd81415'),(184844,40706,'blocks_1_tabs_3_tab_content_text','Revolutionise your running journey with Introduction to Running Biomechanics. Enrol now for a transformative learning experience!'),(184845,40706,'_blocks_1_tabs_3_tab_content_text','field_6177cfcd81416'),(184846,40706,'blocks_1_tabs_3_tab_content_actions',''),(184847,40706,'_blocks_1_tabs_3_tab_content_actions','field_6177cfcd81417'),(184848,40706,'blocks_1_tabs_3_tab_content',''),(184849,40706,'_blocks_1_tabs_3_tab_content','field_6177cfcd81413'),(184850,40706,'blocks_1_tabs_3_tab_image',''),(184851,40706,'_blocks_1_tabs_3_tab_image','field_6177cfcd81412'),(184852,40706,'blocks_1_tabs','4'),(184853,40706,'_blocks_1_tabs','field_6177cff281419'),(184854,40706,'blocks_2_acfe_flexible_toggle',''),(184855,40706,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(184856,40706,'blocks_2_acfe_flexible_layout_title','Button(s)'),(184857,40706,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(184858,40706,'blocks_2_options_theme','#ffffff'),(184859,40706,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(184860,40706,'blocks_2_options',''),(184861,40706,'_blocks_2_options','field_623b03edb6e65'),(184862,40706,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(184863,40706,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(184864,40706,'blocks_2_actions','1'),(184865,40706,'_blocks_2_actions','field_623b03edb6e6e'),(184866,40706,'blocks_3_acfe_flexible_toggle',''),(184867,40706,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(184868,40706,'blocks_3_acfe_flexible_layout_title','Text Block'),(184869,40706,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(184870,40706,'blocks_3_options_theme','#ffffff'),(184871,40706,'_blocks_3_options_theme','field_6176830e2ad17'),(184872,40706,'blocks_3_options',''),(184873,40706,'_blocks_3_options','field_6176830e2ad16'),(184874,40706,'blocks_3_text_block_heading','Please Note'),(184875,40706,'_blocks_3_text_block_heading','field_617669d413097'),(184876,40706,'blocks_3_text_block_content','This online training is designed to inform &amp; enhance understanding for fitness and exercise instructors through CPD. However, to gain an attendance certificate face to face attendance is required. Once you make your payment, please see the video link and DOWNLOAD your handout pdf immediately for instant access. Otherwise, you simply need to log back in using the email you signed in with to access all purchases.'),(184877,40706,'_blocks_3_text_block_content','field_617669ec13098'),(184878,40706,'blocks_4_acfe_flexible_toggle',''),(184879,40706,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(184880,40706,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(184881,40706,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(184882,40706,'blocks_4_options_theme','#ffffff'),(184883,40706,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(184884,40706,'blocks_4_options_state','0'),(184885,40706,'_blocks_4_options_state','field_6239fcb7508c5'),(184886,40706,'blocks_4_options',''),(184887,40706,'_blocks_4_options','field_6177e2991ac44'),(184888,40706,'blocks_4_content_title',''),(184889,40706,'_blocks_4_content_title','field_64d237e8bb1e2'),(184890,40706,'blocks_4_content_heading',''),(184891,40706,'_blocks_4_content_heading','field_64d237e8bb1e3'),(184892,40706,'blocks_4_content_text',''),(184893,40706,'_blocks_4_content_text','field_64d237e8bb1e4'),(184894,40706,'blocks_4_content_actions',''),(184895,40706,'_blocks_4_content_actions','field_64d237e8bb1e5'),(184896,40706,'blocks_4_content_align','left'),(184897,40706,'_blocks_4_content_align','field_64d2443e6b6aa'),(184898,40706,'blocks_4_content',''),(184899,40706,'_blocks_4_content','field_64d237e8bb1e1'),(184900,40706,'blocks_4_accordion_content','custom'),(184901,40706,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(184902,40706,'blocks_4_accordion_items',''),(184903,40706,'_blocks_4_accordion_items','field_6177e2991ac4c'),(184904,40706,'blocks_4_actions',''),(184905,40706,'_blocks_4_actions','field_61a746a817f7a'),(184906,40706,'blocks_5_acfe_flexible_toggle',''),(184907,40706,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(184908,40706,'blocks_5_acfe_flexible_layout_title','Text Block'),(184909,40706,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(184910,40706,'blocks_5_options_theme','#ffffff'),(184911,40706,'_blocks_5_options_theme','field_6176830e2ad17'),(184912,40706,'blocks_5_options',''),(184913,40706,'_blocks_5_options','field_6176830e2ad16'),(184914,40706,'blocks_5_text_block_heading','See Our Other CPD Courses'),(184915,40706,'_blocks_5_text_block_heading','field_617669d413097'),(184916,40706,'blocks_5_text_block_content','Check out our other frequently purchased CPD courses'),(184917,40706,'_blocks_5_text_block_content','field_617669ec13098'),(184918,40706,'blocks_6_acfe_flexible_toggle',''),(184919,40706,'_blocks_6_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(184920,40706,'blocks_6_acfe_flexible_layout_title','Course Comparison'),(184921,40706,'_blocks_6_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(184922,40706,'blocks_6_options_theme','#ffffff'),(184923,40706,'_blocks_6_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(184924,40706,'blocks_6_options',''),(184925,40706,'_blocks_6_options','field_617ac0b7f6c08'),(184926,40706,'blocks_6_show','category'),(184927,40706,'_blocks_6_show','field_61a49cba9d946'),(184928,40706,'blocks_6_category','403'),(184929,40706,'_blocks_6_category','field_61a49cd79d947'),(184930,40706,'blocks','a:7:{i:0;s:10:\"split_5050\";i:1;s:4:\"tabs\";i:2;s:7:\"buttons\";i:3;s:10:\"text_block\";i:4;s:10:\"accordions\";i:5;s:10:\"text_block\";i:6;s:14:\"course_compare\";}'),(184931,40706,'_blocks','field_6176696113096'),(184932,40706,'course_label_text','Introduction To Running Biomechanics'),(184933,40706,'_course_label_text','field_61e17babf71fa'),(184934,40706,'course_label',''),(184935,40706,'_course_label','field_61e12f92749a7'),(184936,40706,'course_description','Discover the Secrets of Optimal Running Styles in this Comprehensive 3hr 15min Classroom Recording & Handout Session! '),(184937,40706,'_course_description','field_617ac5788e5e1'),(184938,40706,'course_key_info','3'),(184939,40706,'_course_key_info','field_617ac6ad8e5e2'),(184940,40706,'course_included','Master running club terminology.\r\nGrasp the mechanics and sequencing of different running gaits.\r\nExplore extrinsic influences and identify intrinsic restrictions.'),(184941,40706,'_course_included','field_617ac6f08e5e4'),(184942,40706,'course_label_label_theme','#0d1f73'),(184943,40706,'_course_label_label_theme','field_61e17bb8f71fb'),(184944,40706,'course_key_info_0_text','Online Learning'),(184945,40706,'_course_key_info_0_text','field_617ac6c38e5e3'),(184946,40706,'course_key_info_1_text','CPD'),(184947,40706,'_course_key_info_1_text','field_617ac6c38e5e3'),(184948,40706,'course_key_info_2_text',''),(184949,40706,'_course_key_info_2_text','field_617ac6c38e5e3'),(184950,39066,'blocks_2_acfe_flexible_toggle',''),(184951,39066,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(184952,39066,'blocks_2_acfe_flexible_layout_title','Cards'),(184953,39066,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(184954,39066,'blocks_2_options_theme','#ffffff'),(184955,39066,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(184956,39066,'blocks_2_options_format','carousel'),(184957,39066,'_blocks_2_options_format','field_617a7b15245b5'),(184958,39066,'blocks_2_options_style','default'),(184959,39066,'_blocks_2_options_style','field_6278ffb63484a'),(184960,39066,'blocks_2_options_cards_current_listing','0'),(184961,39066,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(184962,39066,'blocks_2_options_cards_content','custom'),(184963,39066,'_blocks_2_options_cards_content','field_617aba6122688'),(184964,39066,'blocks_2_options',''),(184965,39066,'_blocks_2_options','field_617a7b15245b3'),(184966,39066,'blocks_2_cards_custom_0_image','38321'),(184967,39066,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(184968,39066,'blocks_2_cards_custom_0_title','CPD Courses'),(184969,39066,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(184970,39066,'blocks_2_cards_custom_0_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(184971,39066,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(184972,39066,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:17:\"Find a CPD Course\";s:3:\"url\";s:54:\"https://biomechanicseducation.com/courses/cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(184973,39066,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(184974,39066,'blocks_2_cards_custom_1_image','39047'),(184975,39066,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(184976,39066,'blocks_2_cards_custom_1_title','Diploma in Biomechanics Coaching'),(184977,39066,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(184978,39066,'blocks_2_cards_custom_1_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(184979,39066,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(184980,39066,'blocks_2_cards_custom_1_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:81:\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\";s:6:\"target\";s:0:\"\";}'),(184981,39066,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(184982,39066,'blocks_2_cards_custom_2_image','39437'),(184983,39066,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(184984,39066,'blocks_2_cards_custom_2_title','Lvl 4 Personal Trainer with Biomechanics Diploma'),(184985,39066,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(184986,39066,'blocks_2_cards_custom_2_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(184987,39066,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(184988,39066,'blocks_2_cards_custom_2_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:87:\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\";s:6:\"target\";s:0:\"\";}'),(184989,39066,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(185006,39066,'blocks_2_cards_custom','3'),(185007,39066,'_blocks_2_cards_custom','field_6194cbf84d386'),(185020,40707,'hero_style','default'),(185021,40707,'_hero_style','field_62051d9dc5324'),(185022,40707,'_thumbnail_id','39067'),(185023,40707,'__thumbnail_id','field_617570855ddaf'),(185024,40707,'hero_image_pos_x','right'),(185025,40707,'_hero_image_pos_x','field_62ec3d05390bb'),(185026,40707,'hero_image_pos_y','top'),(185027,40707,'_hero_image_pos_y','field_62ec3d05390bc'),(185028,40707,'hero_image_pos',''),(185029,40707,'_hero_image_pos','field_62ec3d05390ba'),(185030,40707,'hero_title','Courses'),(185031,40707,'_hero_title','field_617571fe285e8'),(185032,40707,'hero_text','Explore Industry-Leading Biomechanics Courses for Fitness Professionals'),(185033,40707,'_hero_text','field_6175723c285e9'),(185034,40707,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(185035,40707,'_hero_actions_0_button','field_61757281285eb'),(185036,40707,'hero_actions','1'),(185037,40707,'_hero_actions','field_61757270285ea'),(185038,40707,'hero_icon',''),(185039,40707,'_hero_icon','field_61a6182199d03'),(185040,40707,'fft_hide_from_listings','0'),(185041,40707,'_fft_hide_from_listings','field_61f1320446ab2'),(185042,40707,'fft_page_format','default'),(185043,40707,'_fft_page_format','field_61ae213f1f218'),(185044,40707,'fft_hide_nav','0'),(185045,40707,'_fft_hide_nav','field_635bd5e43527c');
INSERT INTO `6m7_postmeta` VALUES (185046,40707,'fft_hide_header_call_to_action','0'),(185047,40707,'_fft_hide_header_call_to_action','field_635bd6723527d'),(185048,40707,'fft_page_sitemap','0'),(185049,40707,'_fft_page_sitemap','field_61af9b34e8181'),(185050,40707,'blocks','a:5:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:5:\"cards\";i:3;s:14:\"course_compare\";i:4;s:8:\"template\";}'),(185051,40707,'_blocks','field_6176696113096'),(185052,40707,'blocks_0_acfe_flexible_toggle',''),(185053,40707,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(185054,40707,'blocks_0_acfe_flexible_layout_title','Icons'),(185055,40707,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(185056,40707,'blocks_0_options_theme','#b61234'),(185057,40707,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(185058,40707,'blocks_0_options_format','row'),(185059,40707,'_blocks_0_options_format','field_64bfde9a90690'),(185060,40707,'blocks_0_options',''),(185061,40707,'_blocks_0_options','field_64bfdd9b90684'),(185062,40707,'blocks_0_icon_row_items_0_icon','world.svg'),(185063,40707,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(185064,40707,'blocks_0_icon_row_items_0_label',''),(185065,40707,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(185066,40707,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(185067,40707,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(185068,40707,'blocks_0_icon_row_items_1_icon','home-study.svg'),(185069,40707,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(185070,40707,'blocks_0_icon_row_items_1_label',''),(185071,40707,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(185072,40707,'blocks_0_icon_row_items_1_text','Built and taught in house'),(185073,40707,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(185074,40707,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(185075,40707,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(185076,40707,'blocks_0_icon_row_items_2_label',''),(185077,40707,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(185078,40707,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(185079,40707,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(185080,40707,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(185081,40707,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(185082,40707,'blocks_0_icon_row_items_3_label',''),(185083,40707,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(185084,40707,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(185085,40707,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(185086,40707,'blocks_0_icon_row_items','4'),(185087,40707,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(185088,40707,'hide_hero','0'),(185089,40707,'_hide_hero','field_66a2380fcda39'),(185090,40707,'blocks_1_acfe_flexible_toggle',''),(185091,40707,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(185092,40707,'blocks_1_acfe_flexible_layout_title','Text Block'),(185093,40707,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(185094,40707,'blocks_1_options_theme','#ffffff'),(185095,40707,'_blocks_1_options_theme','field_6176830e2ad17'),(185096,40707,'blocks_1_options',''),(185097,40707,'_blocks_1_options','field_6176830e2ad16'),(185098,40707,'blocks_1_text_block_heading','Overview'),(185099,40707,'_blocks_1_text_block_heading','field_617669d413097'),(185100,40707,'blocks_1_text_block_content','Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.'),(185101,40707,'_blocks_1_text_block_content','field_617669ec13098'),(185102,40707,'blocks_4_acfe_flexible_toggle',''),(185103,40707,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(185104,40707,'blocks_4_acfe_flexible_layout_title','Template'),(185105,40707,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(185106,40707,'blocks_4_template','39207'),(185107,40707,'_blocks_4_template','field_617bdd570fe01'),(185108,40707,'blocks_2_acfe_flexible_toggle',''),(185109,40707,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(185110,40707,'blocks_2_acfe_flexible_layout_title','Cards'),(185111,40707,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(185112,40707,'blocks_2_options_theme','#ffffff'),(185113,40707,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(185114,40707,'blocks_2_options_format','carousel'),(185115,40707,'_blocks_2_options_format','field_617a7b15245b5'),(185116,40707,'blocks_2_options_style','default'),(185117,40707,'_blocks_2_options_style','field_6278ffb63484a'),(185118,40707,'blocks_2_options_cards_current_listing','0'),(185119,40707,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(185120,40707,'blocks_2_options_cards_content','custom'),(185121,40707,'_blocks_2_options_cards_content','field_617aba6122688'),(185122,40707,'blocks_2_options',''),(185123,40707,'_blocks_2_options','field_617a7b15245b3'),(185124,40707,'blocks_2_cards_custom_0_image','38321'),(185125,40707,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(185126,40707,'blocks_2_cards_custom_0_title','CPD Courses'),(185127,40707,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(185128,40707,'blocks_2_cards_custom_0_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(185129,40707,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(185130,40707,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:17:\"Find a CPD Course\";s:3:\"url\";s:54:\"https://biomechanicseducation.com/courses/cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(185131,40707,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(185132,40707,'blocks_2_cards_custom_1_image','39047'),(185133,40707,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(185134,40707,'blocks_2_cards_custom_1_title','Diploma in Biomechanics Coaching'),(185135,40707,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(185136,40707,'blocks_2_cards_custom_1_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(185137,40707,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(185138,40707,'blocks_2_cards_custom_1_link',''),(185139,40707,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(185140,40707,'blocks_2_cards_custom_2_image','39437'),(185141,40707,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(185142,40707,'blocks_2_cards_custom_2_title','Lvl 4 Personal Trainer with Biomechanics Diploma'),(185143,40707,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(185144,40707,'blocks_2_cards_custom_2_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(185145,40707,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(185146,40707,'blocks_2_cards_custom_2_link',''),(185147,40707,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(185148,40707,'blocks_2_cards_custom_3_image','39085'),(185149,40707,'_blocks_2_cards_custom_3_image','field_6194cc284d387'),(185150,40707,'blocks_2_cards_custom_3_title','Online CPD Courses'),(185151,40707,'_blocks_2_cards_custom_3_title','field_6194cc454d388'),(185152,40707,'blocks_2_cards_custom_3_text','Elevate your skills with our expert-led online CPD courses – Anytime, anywhere, and at your pace.'),(185153,40707,'_blocks_2_cards_custom_3_text','field_6194cc4a4d389'),(185154,40707,'blocks_2_cards_custom_3_link','a:3:{s:5:\"title\";s:25:\"Find an Online CPD Course\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/courses/online-cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(185155,40707,'_blocks_2_cards_custom_3_link','field_6194cc534d38a'),(185156,40707,'blocks_2_cards_custom_4_image',''),(185157,40707,'_blocks_2_cards_custom_4_image','field_6194cc284d387'),(185158,40707,'blocks_2_cards_custom_4_title',''),(185159,40707,'_blocks_2_cards_custom_4_title','field_6194cc454d388'),(185160,40707,'blocks_2_cards_custom_4_text',''),(185161,40707,'_blocks_2_cards_custom_4_text','field_6194cc4a4d389'),(185162,40707,'blocks_2_cards_custom_4_link',''),(185163,40707,'_blocks_2_cards_custom_4_link','field_6194cc534d38a'),(185164,40707,'blocks_2_cards_custom','5'),(185165,40707,'_blocks_2_cards_custom','field_6194cbf84d386'),(185166,40707,'blocks_3_acfe_flexible_toggle',''),(185167,40707,'_blocks_3_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(185168,40707,'blocks_3_acfe_flexible_layout_title','Course Comparison'),(185169,40707,'_blocks_3_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(185170,40707,'blocks_3_options_theme','#ffffff'),(185171,40707,'_blocks_3_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(185172,40707,'blocks_3_options',''),(185173,40707,'_blocks_3_options','field_617ac0b7f6c08'),(185174,40707,'blocks_3_show','category'),(185175,40707,'_blocks_3_show','field_61a49cba9d946'),(185176,40707,'blocks_3_category','406'),(185177,40707,'_blocks_3_category','field_61a49cd79d947'),(185178,40708,'hero_style','default'),(185179,40708,'_hero_style','field_62051d9dc5324'),(185180,40708,'_thumbnail_id','39067'),(185181,40708,'__thumbnail_id','field_617570855ddaf'),(185182,40708,'hero_image_pos_x','right'),(185183,40708,'_hero_image_pos_x','field_62ec3d05390bb'),(185184,40708,'hero_image_pos_y','top'),(185185,40708,'_hero_image_pos_y','field_62ec3d05390bc'),(185186,40708,'hero_image_pos',''),(185187,40708,'_hero_image_pos','field_62ec3d05390ba'),(185188,40708,'hero_title','Courses'),(185189,40708,'_hero_title','field_617571fe285e8'),(185190,40708,'hero_text','Explore Industry-Leading Biomechanics Courses for Fitness Professionals'),(185191,40708,'_hero_text','field_6175723c285e9'),(185192,40708,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(185193,40708,'_hero_actions_0_button','field_61757281285eb'),(185194,40708,'hero_actions','1'),(185195,40708,'_hero_actions','field_61757270285ea'),(185196,40708,'hero_icon',''),(185197,40708,'_hero_icon','field_61a6182199d03'),(185198,40708,'fft_hide_from_listings','0'),(185199,40708,'_fft_hide_from_listings','field_61f1320446ab2'),(185200,40708,'fft_page_format','default'),(185201,40708,'_fft_page_format','field_61ae213f1f218'),(185202,40708,'fft_hide_nav','0'),(185203,40708,'_fft_hide_nav','field_635bd5e43527c'),(185204,40708,'fft_hide_header_call_to_action','0'),(185205,40708,'_fft_hide_header_call_to_action','field_635bd6723527d'),(185206,40708,'fft_page_sitemap','0'),(185207,40708,'_fft_page_sitemap','field_61af9b34e8181'),(185208,40708,'blocks','a:5:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:5:\"cards\";i:3;s:14:\"course_compare\";i:4;s:8:\"template\";}'),(185209,40708,'_blocks','field_6176696113096'),(185210,40708,'blocks_0_acfe_flexible_toggle',''),(185211,40708,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(185212,40708,'blocks_0_acfe_flexible_layout_title','Icons'),(185213,40708,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(185214,40708,'blocks_0_options_theme','#b61234'),(185215,40708,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(185216,40708,'blocks_0_options_format','row'),(185217,40708,'_blocks_0_options_format','field_64bfde9a90690'),(185218,40708,'blocks_0_options',''),(185219,40708,'_blocks_0_options','field_64bfdd9b90684'),(185220,40708,'blocks_0_icon_row_items_0_icon','world.svg'),(185221,40708,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(185222,40708,'blocks_0_icon_row_items_0_label',''),(185223,40708,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(185224,40708,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(185225,40708,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(185226,40708,'blocks_0_icon_row_items_1_icon','home-study.svg'),(185227,40708,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(185228,40708,'blocks_0_icon_row_items_1_label',''),(185229,40708,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(185230,40708,'blocks_0_icon_row_items_1_text','Built and taught in house'),(185231,40708,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(185232,40708,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(185233,40708,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(185234,40708,'blocks_0_icon_row_items_2_label',''),(185235,40708,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(185236,40708,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(185237,40708,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(185238,40708,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(185239,40708,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(185240,40708,'blocks_0_icon_row_items_3_label',''),(185241,40708,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(185242,40708,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(185243,40708,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(185244,40708,'blocks_0_icon_row_items','4'),(185245,40708,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(185246,40708,'hide_hero','0'),(185247,40708,'_hide_hero','field_66a2380fcda39'),(185248,40708,'blocks_1_acfe_flexible_toggle',''),(185249,40708,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(185250,40708,'blocks_1_acfe_flexible_layout_title','Text Block'),(185251,40708,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(185252,40708,'blocks_1_options_theme','#ffffff'),(185253,40708,'_blocks_1_options_theme','field_6176830e2ad17'),(185254,40708,'blocks_1_options',''),(185255,40708,'_blocks_1_options','field_6176830e2ad16'),(185256,40708,'blocks_1_text_block_heading','Overview'),(185257,40708,'_blocks_1_text_block_heading','field_617669d413097'),(185258,40708,'blocks_1_text_block_content','Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.'),(185259,40708,'_blocks_1_text_block_content','field_617669ec13098'),(185260,40708,'blocks_4_acfe_flexible_toggle',''),(185261,40708,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(185262,40708,'blocks_4_acfe_flexible_layout_title','Template'),(185263,40708,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(185264,40708,'blocks_4_template','39207'),(185265,40708,'_blocks_4_template','field_617bdd570fe01'),(185266,40708,'blocks_2_acfe_flexible_toggle',''),(185267,40708,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(185268,40708,'blocks_2_acfe_flexible_layout_title','Cards'),(185269,40708,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(185270,40708,'blocks_2_options_theme','#ffffff'),(185271,40708,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(185272,40708,'blocks_2_options_format','carousel'),(185273,40708,'_blocks_2_options_format','field_617a7b15245b5'),(185274,40708,'blocks_2_options_style','default'),(185275,40708,'_blocks_2_options_style','field_6278ffb63484a'),(185276,40708,'blocks_2_options_cards_current_listing','0'),(185277,40708,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(185278,40708,'blocks_2_options_cards_content','custom'),(185279,40708,'_blocks_2_options_cards_content','field_617aba6122688'),(185280,40708,'blocks_2_options',''),(185281,40708,'_blocks_2_options','field_617a7b15245b3'),(185282,40708,'blocks_2_cards_custom_0_image','38321'),(185283,40708,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(185284,40708,'blocks_2_cards_custom_0_title','CPD Courses'),(185285,40708,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(185286,40708,'blocks_2_cards_custom_0_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(185287,40708,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(185288,40708,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:17:\"Find a CPD Course\";s:3:\"url\";s:54:\"https://biomechanicseducation.com/courses/cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(185289,40708,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(185290,40708,'blocks_2_cards_custom_1_image','39047'),(185291,40708,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(185292,40708,'blocks_2_cards_custom_1_title','Diploma in Biomechanics Coaching'),(185293,40708,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(185294,40708,'blocks_2_cards_custom_1_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(185295,40708,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(185296,40708,'blocks_2_cards_custom_1_link',''),(185297,40708,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(185298,40708,'blocks_2_cards_custom_2_image','39437'),(185299,40708,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(185300,40708,'blocks_2_cards_custom_2_title','Lvl 4 Personal Trainer with Biomechanics Diploma'),(185301,40708,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(185302,40708,'blocks_2_cards_custom_2_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(185303,40708,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(185304,40708,'blocks_2_cards_custom_2_link',''),(185305,40708,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(185306,40708,'blocks_2_cards_custom','3'),(185307,40708,'_blocks_2_cards_custom','field_6194cbf84d386'),(185308,40708,'blocks_3_acfe_flexible_toggle',''),(185309,40708,'_blocks_3_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(185310,40708,'blocks_3_acfe_flexible_layout_title','Course Comparison'),(185311,40708,'_blocks_3_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(185312,40708,'blocks_3_options_theme','#ffffff'),(185313,40708,'_blocks_3_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(185314,40708,'blocks_3_options',''),(185315,40708,'_blocks_3_options','field_617ac0b7f6c08'),(185316,40708,'blocks_3_show','category'),(185317,40708,'_blocks_3_show','field_61a49cba9d946'),(185318,40708,'blocks_3_category','406'),(185319,40708,'_blocks_3_category','field_61a49cd79d947'),(185320,39066,'blocks_3_acfe_flexible_toggle',''),(185321,39066,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(185322,39066,'blocks_3_acfe_flexible_layout_title','Text Block'),(185323,39066,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(185324,39066,'blocks_3_options_theme','#ffffff'),(185325,39066,'_blocks_3_options_theme','field_6176830e2ad17'),(185326,39066,'blocks_3_options',''),(185327,39066,'_blocks_3_options','field_6176830e2ad16'),(185328,39066,'blocks_3_text_block_heading','Check Out Some of Our CPD Courses'),(185329,39066,'_blocks_3_text_block_heading','field_617669d413097'),(185330,39066,'blocks_3_text_block_content',''),(185331,39066,'_blocks_3_text_block_content','field_617669ec13098'),(185332,39066,'blocks_4_acfe_flexible_toggle',''),(185333,39066,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(185334,39066,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(185335,39066,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(185336,39066,'blocks_4_options_theme','#ffffff'),(185337,39066,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(185338,39066,'blocks_4_options',''),(185339,39066,'_blocks_4_options','field_617ac0b7f6c08'),(185340,39066,'blocks_4_show','category'),(185341,39066,'_blocks_4_show','field_61a49cba9d946'),(185342,39066,'blocks_4_category','403'),(185343,39066,'_blocks_4_category','field_61a49cd79d947'),(185344,39066,'blocks_5_acfe_flexible_toggle',''),(185345,39066,'_blocks_5_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(185346,39066,'blocks_5_acfe_flexible_layout_title','Template'),(185347,39066,'_blocks_5_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(185348,39066,'blocks_5_template','39207'),(185349,39066,'_blocks_5_template','field_617bdd570fe01'),(185350,40709,'hero_style','default'),(185351,40709,'_hero_style','field_62051d9dc5324'),(185352,40709,'_thumbnail_id','39067'),(185353,40709,'__thumbnail_id','field_617570855ddaf'),(185354,40709,'hero_image_pos_x','right'),(185355,40709,'_hero_image_pos_x','field_62ec3d05390bb'),(185356,40709,'hero_image_pos_y','top'),(185357,40709,'_hero_image_pos_y','field_62ec3d05390bc'),(185358,40709,'hero_image_pos',''),(185359,40709,'_hero_image_pos','field_62ec3d05390ba'),(185360,40709,'hero_title','Courses'),(185361,40709,'_hero_title','field_617571fe285e8'),(185362,40709,'hero_text','Explore Industry-Leading Biomechanics Courses for Fitness Professionals'),(185363,40709,'_hero_text','field_6175723c285e9'),(185364,40709,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(185365,40709,'_hero_actions_0_button','field_61757281285eb'),(185366,40709,'hero_actions','1'),(185367,40709,'_hero_actions','field_61757270285ea'),(185368,40709,'hero_icon',''),(185369,40709,'_hero_icon','field_61a6182199d03'),(185370,40709,'fft_hide_from_listings','0'),(185371,40709,'_fft_hide_from_listings','field_61f1320446ab2'),(185372,40709,'fft_page_format','default'),(185373,40709,'_fft_page_format','field_61ae213f1f218'),(185374,40709,'fft_hide_nav','0'),(185375,40709,'_fft_hide_nav','field_635bd5e43527c'),(185376,40709,'fft_hide_header_call_to_action','0'),(185377,40709,'_fft_hide_header_call_to_action','field_635bd6723527d'),(185378,40709,'fft_page_sitemap','0'),(185379,40709,'_fft_page_sitemap','field_61af9b34e8181'),(185380,40709,'blocks','a:6:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:5:\"cards\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:8:\"template\";}'),(185381,40709,'_blocks','field_6176696113096'),(185382,40709,'blocks_0_acfe_flexible_toggle',''),(185383,40709,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(185384,40709,'blocks_0_acfe_flexible_layout_title','Icons'),(185385,40709,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(185386,40709,'blocks_0_options_theme','#b61234'),(185387,40709,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(185388,40709,'blocks_0_options_format','row'),(185389,40709,'_blocks_0_options_format','field_64bfde9a90690'),(185390,40709,'blocks_0_options',''),(185391,40709,'_blocks_0_options','field_64bfdd9b90684'),(185392,40709,'blocks_0_icon_row_items_0_icon','world.svg'),(185393,40709,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(185394,40709,'blocks_0_icon_row_items_0_label',''),(185395,40709,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(185396,40709,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(185397,40709,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(185398,40709,'blocks_0_icon_row_items_1_icon','home-study.svg'),(185399,40709,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(185400,40709,'blocks_0_icon_row_items_1_label',''),(185401,40709,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(185402,40709,'blocks_0_icon_row_items_1_text','Built and taught in house'),(185403,40709,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(185404,40709,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(185405,40709,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(185406,40709,'blocks_0_icon_row_items_2_label',''),(185407,40709,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(185408,40709,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(185409,40709,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(185410,40709,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(185411,40709,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(185412,40709,'blocks_0_icon_row_items_3_label',''),(185413,40709,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(185414,40709,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(185415,40709,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(185416,40709,'blocks_0_icon_row_items','4'),(185417,40709,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(185418,40709,'hide_hero','0'),(185419,40709,'_hide_hero','field_66a2380fcda39'),(185420,40709,'blocks_1_acfe_flexible_toggle',''),(185421,40709,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(185422,40709,'blocks_1_acfe_flexible_layout_title','Text Block'),(185423,40709,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(185424,40709,'blocks_1_options_theme','#ffffff'),(185425,40709,'_blocks_1_options_theme','field_6176830e2ad17'),(185426,40709,'blocks_1_options',''),(185427,40709,'_blocks_1_options','field_6176830e2ad16'),(185428,40709,'blocks_1_text_block_heading','Overview'),(185429,40709,'_blocks_1_text_block_heading','field_617669d413097'),(185430,40709,'blocks_1_text_block_content','Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.'),(185431,40709,'_blocks_1_text_block_content','field_617669ec13098'),(185432,40709,'blocks_2_acfe_flexible_toggle',''),(185433,40709,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(185434,40709,'blocks_2_acfe_flexible_layout_title','Cards'),(185435,40709,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(185436,40709,'blocks_2_options_theme','#ffffff'),(185437,40709,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(185438,40709,'blocks_2_options_format','carousel'),(185439,40709,'_blocks_2_options_format','field_617a7b15245b5'),(185440,40709,'blocks_2_options_style','default'),(185441,40709,'_blocks_2_options_style','field_6278ffb63484a'),(185442,40709,'blocks_2_options_cards_current_listing','0'),(185443,40709,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(185444,40709,'blocks_2_options_cards_content','custom'),(185445,40709,'_blocks_2_options_cards_content','field_617aba6122688'),(185446,40709,'blocks_2_options',''),(185447,40709,'_blocks_2_options','field_617a7b15245b3'),(185448,40709,'blocks_2_cards_custom_0_image','38321'),(185449,40709,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(185450,40709,'blocks_2_cards_custom_0_title','CPD Courses'),(185451,40709,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(185452,40709,'blocks_2_cards_custom_0_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(185453,40709,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(185454,40709,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:17:\"Find a CPD Course\";s:3:\"url\";s:54:\"https://biomechanicseducation.com/courses/cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(185455,40709,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(185456,40709,'blocks_2_cards_custom_1_image','39047'),(185457,40709,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(185458,40709,'blocks_2_cards_custom_1_title','Diploma in Biomechanics Coaching'),(185459,40709,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(185460,40709,'blocks_2_cards_custom_1_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(185461,40709,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(185462,40709,'blocks_2_cards_custom_1_link',''),(185463,40709,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(185464,40709,'blocks_2_cards_custom_2_image','39437'),(185465,40709,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(185466,40709,'blocks_2_cards_custom_2_title','Lvl 4 Personal Trainer with Biomechanics Diploma'),(185467,40709,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(185468,40709,'blocks_2_cards_custom_2_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(185469,40709,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(185470,40709,'blocks_2_cards_custom_2_link',''),(185471,40709,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(185472,40709,'blocks_2_cards_custom','3'),(185473,40709,'_blocks_2_cards_custom','field_6194cbf84d386'),(185474,40709,'blocks_3_acfe_flexible_toggle',''),(185475,40709,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(185476,40709,'blocks_3_acfe_flexible_layout_title','Text Block'),(185477,40709,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(185478,40709,'blocks_3_options_theme','#ffffff'),(185479,40709,'_blocks_3_options_theme','field_6176830e2ad17'),(185480,40709,'blocks_3_options',''),(185481,40709,'_blocks_3_options','field_6176830e2ad16'),(185482,40709,'blocks_3_text_block_heading','Check Out Some of Our CPD Courses'),(185483,40709,'_blocks_3_text_block_heading','field_617669d413097'),(185484,40709,'blocks_3_text_block_content',''),(185485,40709,'_blocks_3_text_block_content','field_617669ec13098'),(185486,40709,'blocks_4_acfe_flexible_toggle',''),(185487,40709,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(185488,40709,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(185489,40709,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(185490,40709,'blocks_4_options_theme','#ffffff'),(185491,40709,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(185492,40709,'blocks_4_options',''),(185493,40709,'_blocks_4_options','field_617ac0b7f6c08'),(185494,40709,'blocks_4_show','category'),(185495,40709,'_blocks_4_show','field_61a49cba9d946'),(185496,40709,'blocks_4_category','406'),(185497,40709,'_blocks_4_category','field_61a49cd79d947'),(185498,40709,'blocks_5_acfe_flexible_toggle',''),(185499,40709,'_blocks_5_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(185500,40709,'blocks_5_acfe_flexible_layout_title','Template'),(185501,40709,'_blocks_5_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(185502,40709,'blocks_5_template','39207'),(185503,40709,'_blocks_5_template','field_617bdd570fe01'),(185504,40710,'hero_style','default'),(185505,40710,'_hero_style','field_62051d9dc5324'),(185506,40710,'_thumbnail_id','39067'),(185507,40710,'__thumbnail_id','field_617570855ddaf'),(185508,40710,'hero_image_pos_x','right'),(185509,40710,'_hero_image_pos_x','field_62ec3d05390bb'),(185510,40710,'hero_image_pos_y','top'),(185511,40710,'_hero_image_pos_y','field_62ec3d05390bc'),(185512,40710,'hero_image_pos',''),(185513,40710,'_hero_image_pos','field_62ec3d05390ba'),(185514,40710,'hero_title','Courses'),(185515,40710,'_hero_title','field_617571fe285e8'),(185516,40710,'hero_text','Explore Industry-Leading Biomechanics Courses for Fitness Professionals'),(185517,40710,'_hero_text','field_6175723c285e9'),(185518,40710,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(185519,40710,'_hero_actions_0_button','field_61757281285eb'),(185520,40710,'hero_actions','1'),(185521,40710,'_hero_actions','field_61757270285ea'),(185522,40710,'hero_icon',''),(185523,40710,'_hero_icon','field_61a6182199d03'),(185524,40710,'fft_hide_from_listings','0'),(185525,40710,'_fft_hide_from_listings','field_61f1320446ab2'),(185526,40710,'fft_page_format','default'),(185527,40710,'_fft_page_format','field_61ae213f1f218'),(185528,40710,'fft_hide_nav','0'),(185529,40710,'_fft_hide_nav','field_635bd5e43527c'),(185530,40710,'fft_hide_header_call_to_action','0'),(185531,40710,'_fft_hide_header_call_to_action','field_635bd6723527d'),(185532,40710,'fft_page_sitemap','0'),(185533,40710,'_fft_page_sitemap','field_61af9b34e8181'),(185534,40710,'blocks','a:6:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:5:\"cards\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:8:\"template\";}'),(185535,40710,'_blocks','field_6176696113096'),(185536,40710,'blocks_0_acfe_flexible_toggle',''),(185537,40710,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(185538,40710,'blocks_0_acfe_flexible_layout_title','Icons'),(185539,40710,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(185540,40710,'blocks_0_options_theme','#b61234'),(185541,40710,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(185542,40710,'blocks_0_options_format','row'),(185543,40710,'_blocks_0_options_format','field_64bfde9a90690'),(185544,40710,'blocks_0_options',''),(185545,40710,'_blocks_0_options','field_64bfdd9b90684'),(185546,40710,'blocks_0_icon_row_items_0_icon','world.svg'),(185547,40710,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(185548,40710,'blocks_0_icon_row_items_0_label',''),(185549,40710,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(185550,40710,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(185551,40710,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(185552,40710,'blocks_0_icon_row_items_1_icon','home-study.svg'),(185553,40710,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(185554,40710,'blocks_0_icon_row_items_1_label',''),(185555,40710,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(185556,40710,'blocks_0_icon_row_items_1_text','Built and taught in house'),(185557,40710,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(185558,40710,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(185559,40710,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(185560,40710,'blocks_0_icon_row_items_2_label',''),(185561,40710,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(185562,40710,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(185563,40710,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(185564,40710,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(185565,40710,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(185566,40710,'blocks_0_icon_row_items_3_label',''),(185567,40710,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(185568,40710,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(185569,40710,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(185570,40710,'blocks_0_icon_row_items','4'),(185571,40710,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(185572,40710,'hide_hero','0'),(185573,40710,'_hide_hero','field_66a2380fcda39'),(185574,40710,'blocks_1_acfe_flexible_toggle',''),(185575,40710,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(185576,40710,'blocks_1_acfe_flexible_layout_title','Text Block'),(185577,40710,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(185578,40710,'blocks_1_options_theme','#ffffff'),(185579,40710,'_blocks_1_options_theme','field_6176830e2ad17'),(185580,40710,'blocks_1_options',''),(185581,40710,'_blocks_1_options','field_6176830e2ad16'),(185582,40710,'blocks_1_text_block_heading','Overview'),(185583,40710,'_blocks_1_text_block_heading','field_617669d413097'),(185584,40710,'blocks_1_text_block_content','Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.'),(185585,40710,'_blocks_1_text_block_content','field_617669ec13098'),(185586,40710,'blocks_2_acfe_flexible_toggle',''),(185587,40710,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(185588,40710,'blocks_2_acfe_flexible_layout_title','Cards'),(185589,40710,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(185590,40710,'blocks_2_options_theme','#ffffff'),(185591,40710,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(185592,40710,'blocks_2_options_format','carousel'),(185593,40710,'_blocks_2_options_format','field_617a7b15245b5'),(185594,40710,'blocks_2_options_style','default'),(185595,40710,'_blocks_2_options_style','field_6278ffb63484a'),(185596,40710,'blocks_2_options_cards_current_listing','0'),(185597,40710,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(185598,40710,'blocks_2_options_cards_content','custom'),(185599,40710,'_blocks_2_options_cards_content','field_617aba6122688'),(185600,40710,'blocks_2_options',''),(185601,40710,'_blocks_2_options','field_617a7b15245b3'),(185602,40710,'blocks_2_cards_custom_0_image','38321'),(185603,40710,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(185604,40710,'blocks_2_cards_custom_0_title','CPD Courses'),(185605,40710,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(185606,40710,'blocks_2_cards_custom_0_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(185607,40710,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(185608,40710,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:17:\"Find a CPD Course\";s:3:\"url\";s:54:\"https://biomechanicseducation.com/courses/cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(185609,40710,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(185610,40710,'blocks_2_cards_custom_1_image','39047'),(185611,40710,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(185612,40710,'blocks_2_cards_custom_1_title','Diploma in Biomechanics Coaching'),(185613,40710,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(185614,40710,'blocks_2_cards_custom_1_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(185615,40710,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(185616,40710,'blocks_2_cards_custom_1_link',''),(185617,40710,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(185618,40710,'blocks_2_cards_custom_2_image','39437'),(185619,40710,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(185620,40710,'blocks_2_cards_custom_2_title','Lvl 4 Personal Trainer with Biomechanics Diploma'),(185621,40710,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(185622,40710,'blocks_2_cards_custom_2_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(185623,40710,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(185624,40710,'blocks_2_cards_custom_2_link',''),(185625,40710,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(185626,40710,'blocks_2_cards_custom','3'),(185627,40710,'_blocks_2_cards_custom','field_6194cbf84d386'),(185628,40710,'blocks_3_acfe_flexible_toggle',''),(185629,40710,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(185630,40710,'blocks_3_acfe_flexible_layout_title','Text Block'),(185631,40710,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(185632,40710,'blocks_3_options_theme','#ffffff'),(185633,40710,'_blocks_3_options_theme','field_6176830e2ad17'),(185634,40710,'blocks_3_options',''),(185635,40710,'_blocks_3_options','field_6176830e2ad16'),(185636,40710,'blocks_3_text_block_heading','Check Out Some of Our CPD Courses'),(185637,40710,'_blocks_3_text_block_heading','field_617669d413097'),(185638,40710,'blocks_3_text_block_content',''),(185639,40710,'_blocks_3_text_block_content','field_617669ec13098'),(185640,40710,'blocks_4_acfe_flexible_toggle',''),(185641,40710,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(185642,40710,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(185643,40710,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(185644,40710,'blocks_4_options_theme','#ffffff'),(185645,40710,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(185646,40710,'blocks_4_options',''),(185647,40710,'_blocks_4_options','field_617ac0b7f6c08'),(185648,40710,'blocks_4_show','category'),(185649,40710,'_blocks_4_show','field_61a49cba9d946'),(185650,40710,'blocks_4_category','403'),(185651,40710,'_blocks_4_category','field_61a49cd79d947'),(185652,40710,'blocks_5_acfe_flexible_toggle',''),(185653,40710,'_blocks_5_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(185654,40710,'blocks_5_acfe_flexible_layout_title','Template'),(185655,40710,'_blocks_5_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(185656,40710,'blocks_5_template','39207'),(185657,40710,'_blocks_5_template','field_617bdd570fe01'),(185678,39148,'blocks_4_acfe_flexible_toggle',''),(185679,39148,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(185680,39148,'blocks_4_acfe_flexible_layout_title','Cards'),(185681,39148,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(185682,39148,'blocks_4_options_theme','#ffffff'),(185683,39148,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(185684,39148,'blocks_4_options_format','carousel'),(185685,39148,'_blocks_4_options_format','field_617a7b15245b5'),(185686,39148,'blocks_4_options_style','default'),(185687,39148,'_blocks_4_options_style','field_6278ffb63484a'),(185688,39148,'blocks_4_options_cards_current_listing','0'),(185689,39148,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(185690,39148,'blocks_4_options_cards_content','custom'),(185691,39148,'_blocks_4_options_cards_content','field_617aba6122688'),(185692,39148,'blocks_4_options',''),(185693,39148,'_blocks_4_options','field_617a7b15245b3'),(185694,39148,'blocks_4_cards_custom_0_image','39215'),(185695,39148,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(185696,39148,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(185697,39148,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(185698,39148,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(185699,39148,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(185700,39148,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(185701,39148,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(185702,39148,'blocks_4_cards_custom_1_image','39243'),(185703,39148,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(185704,39148,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(185705,39148,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(185706,39148,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(185707,39148,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(185708,39148,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(185709,39148,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(185710,39148,'blocks_4_cards_custom_2_image','39247'),(185711,39148,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(185712,39148,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(185713,39148,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(185714,39148,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(185715,39148,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(185716,39148,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(185717,39148,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(185718,39148,'blocks_4_cards_custom_3_image','39256'),(185719,39148,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(185720,39148,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(185721,39148,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(185722,39148,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(185723,39148,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(185724,39148,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(185725,39148,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(185726,39148,'blocks_4_cards_custom_4_image','39251'),(185727,39148,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(185728,39148,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches'),(185729,39148,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(185730,39148,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(185731,39148,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(185732,39148,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(185733,39148,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(185734,39148,'blocks_4_cards_custom_5_image','39240'),(185735,39148,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(185736,39148,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(185737,39148,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(185738,39148,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(185739,39148,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(185740,39148,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(185741,39148,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(185742,39148,'blocks_4_cards_custom_6_image','39260'),(185743,39148,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(185744,39148,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(185745,39148,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(185746,39148,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(185747,39148,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(185748,39148,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(185749,39148,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(185750,39148,'blocks_4_cards_custom','7'),(185751,39148,'_blocks_4_cards_custom','field_6194cbf84d386'),(185752,40711,'hero_style','default'),(185753,40711,'_hero_style','field_62051d9dc5324'),(185754,40711,'hero_image_pos_x','right'),(185755,40711,'_hero_image_pos_x','field_62ec3d05390bb'),(185756,40711,'hero_image_pos_y','top'),(185757,40711,'_hero_image_pos_y','field_62ec3d05390bc'),(185758,40711,'hero_image_pos',''),(185759,40711,'_hero_image_pos','field_62ec3d05390ba'),(185760,40711,'hero_title','Getting Started'),(185761,40711,'_hero_title','field_617571fe285e8'),(185762,40711,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(185763,40711,'_hero_text','field_6175723c285e9'),(185764,40711,'hero_actions',''),(185765,40711,'_hero_actions','field_61757270285ea'),(185766,40711,'hero_icon','bars'),(185767,40711,'_hero_icon','field_61a6182199d03'),(185768,40711,'fft_hide_from_listings','0'),(185769,40711,'_fft_hide_from_listings','field_61f1320446ab2'),(185770,40711,'fft_page_format','default'),(185771,40711,'_fft_page_format','field_61ae213f1f218'),(185772,40711,'fft_hide_nav','0'),(185773,40711,'_fft_hide_nav','field_635bd5e43527c'),(185774,40711,'fft_hide_header_call_to_action','0'),(185775,40711,'_fft_hide_header_call_to_action','field_635bd6723527d'),(185776,40711,'fft_page_sitemap','0'),(185777,40711,'_fft_page_sitemap','field_61af9b34e8181'),(185778,40711,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:4:\"form\";i:4;s:5:\"cards\";}'),(185779,40711,'_blocks','field_6176696113096'),(185780,40711,'hide_hero','0'),(185781,40711,'_hide_hero','field_66a2380fcda39'),(185782,40711,'blocks_2_acfe_flexible_toggle',''),(185783,40711,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(185784,40711,'blocks_2_acfe_flexible_layout_title','Text Block'),(185785,40711,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(185786,40711,'blocks_2_options_theme','#ffffff'),(185787,40711,'_blocks_2_options_theme','field_6176830e2ad17'),(185788,40711,'blocks_2_options',''),(185789,40711,'_blocks_2_options','field_6176830e2ad16'),(185790,40711,'blocks_2_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines'),(185791,40711,'_blocks_2_text_block_heading','field_617669d413097'),(185792,40711,'blocks_2_text_block_content',''),(185793,40711,'_blocks_2_text_block_content','field_617669ec13098'),(185794,40711,'_thumbnail_id','39252'),(185795,40711,'__thumbnail_id','field_617570855ddaf'),(185796,40711,'blocks_0_acfe_flexible_toggle',''),(185797,40711,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(185798,40711,'blocks_0_acfe_flexible_layout_title','Template'),(185799,40711,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(185800,40711,'blocks_0_template','39087'),(185801,40711,'_blocks_0_template','field_617bdd570fe01'),(185802,40711,'blocks_1_acfe_flexible_toggle',''),(185803,40711,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(185804,40711,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(185805,40711,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(185806,40711,'blocks_1_options_theme','#ffffff'),(185807,40711,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(185808,40711,'blocks_1_options_reverse','0'),(185809,40711,'_blocks_1_options_reverse','field_61768049bb8ac'),(185810,40711,'blocks_1_options',''),(185811,40711,'_blocks_1_options','field_617682517c334'),(185812,40711,'blocks_1_split_5050_image','39152'),(185813,40711,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(185814,40711,'blocks_1_split_5050_video',''),(185815,40711,'_blocks_1_split_5050_video','field_6239f3160848a'),(185816,40711,'blocks_1_split_5050_content_title',''),(185817,40711,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(185818,40711,'blocks_1_split_5050_content_heading','About Our Career Guides'),(185819,40711,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(185820,40711,'blocks_1_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(185821,40711,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(185822,40711,'blocks_1_split_5050_content_actions',''),(185823,40711,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(185824,40711,'blocks_1_split_5050_content',''),(185825,40711,'_blocks_1_split_5050_content','field_61767afceb8ba'),(185826,40711,'blocks_3_acfe_flexible_toggle',''),(185827,40711,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(185828,40711,'blocks_3_acfe_flexible_layout_title','Form'),(185829,40711,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(185830,40711,'blocks_3_row_content_format','standard'),(185831,40711,'_blocks_3_row_content_format','field_6481ead962881'),(185832,40711,'blocks_3_row_content_title','Ready to get started?'),(185833,40711,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(185834,40711,'blocks_3_row_content_heading','Download your free guide!'),(185835,40711,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(185836,40711,'blocks_3_row_content_text','Complete the form to receive your free digital guide, so we can support you on this exciting next step of bringing Intrinsic Biomechanics into your practice.'),(185837,40711,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(185838,40711,'blocks_3_row_content_actions',''),(185839,40711,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(185840,40711,'blocks_3_row_content',''),(185841,40711,'_blocks_3_row_content','field_61a0f5f5b3db0'),(185842,40711,'blocks_3_row_form','40417'),(185843,40711,'_blocks_3_row_form','field_61a4ff2c0b08e'),(185844,40711,'blocks_3_row_form_button_label',''),(185845,40711,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(185846,40711,'blocks_4_acfe_flexible_toggle',''),(185847,40711,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(185848,40711,'blocks_4_acfe_flexible_layout_title','Cards'),(185849,40711,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(185850,40711,'blocks_4_options_theme','#ffffff'),(185851,40711,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(185852,40711,'blocks_4_options_format','carousel'),(185853,40711,'_blocks_4_options_format','field_617a7b15245b5'),(185854,40711,'blocks_4_options_style','default'),(185855,40711,'_blocks_4_options_style','field_6278ffb63484a'),(185856,40711,'blocks_4_options_cards_current_listing','0'),(185857,40711,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(185858,40711,'blocks_4_options_cards_content','custom'),(185859,40711,'_blocks_4_options_cards_content','field_617aba6122688'),(185860,40711,'blocks_4_options',''),(185861,40711,'_blocks_4_options','field_617a7b15245b3'),(185862,40711,'blocks_4_cards_custom_0_image','39215'),(185863,40711,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(185864,40711,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(185865,40711,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(185866,40711,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(185867,40711,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(185868,40711,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(185869,40711,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(185870,40711,'blocks_4_cards_custom_1_image','39243'),(185871,40711,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(185872,40711,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(185873,40711,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(185874,40711,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(185875,40711,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(185876,40711,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(185877,40711,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(185878,40711,'blocks_4_cards_custom_2_image','39247'),(185879,40711,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(185880,40711,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(185881,40711,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(185882,40711,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(185883,40711,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(185884,40711,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(185885,40711,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(185886,40711,'blocks_4_cards_custom_3_image','39256'),(185887,40711,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(185888,40711,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(185889,40711,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(185890,40711,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(185891,40711,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(185892,40711,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(185893,40711,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(185894,40711,'blocks_4_cards_custom_4_image','39251'),(185895,40711,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(185896,40711,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches'),(185897,40711,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(185898,40711,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(185899,40711,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(185900,40711,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(185901,40711,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(185902,40711,'blocks_4_cards_custom_5_image','39240'),(185903,40711,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(185904,40711,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(185905,40711,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(185906,40711,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(185907,40711,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(185908,40711,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(185909,40711,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(185910,40711,'blocks_4_cards_custom_6_image','39260'),(185911,40711,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(185912,40711,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(185913,40711,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(185914,40711,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(185915,40711,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(185916,40711,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(185917,40711,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(185918,40711,'blocks_4_cards_custom','7'),(185919,40711,'_blocks_4_cards_custom','field_6194cbf84d386'),(185920,39148,'blocks_2_acfe_flexible_toggle',''),(185921,39148,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(185922,39148,'blocks_2_acfe_flexible_layout_title','Form'),(185923,39148,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(185924,39148,'blocks_2_row_content_format','standard'),(185925,39148,'_blocks_2_row_content_format','field_6481ead962881'),(185926,39148,'blocks_2_row_content_title','Ready to get started?'),(185927,39148,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(185928,39148,'blocks_2_row_content_heading','Download your free guide!'),(185929,39148,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(185930,39148,'blocks_2_row_content_text','Complete the form to receive your free digital guide, so we can support you on this exciting next step of bringing Intrinsic Biomechanics into your practice.'),(185931,39148,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(185932,39148,'blocks_2_row_content_actions',''),(185933,39148,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(185934,39148,'blocks_2_row_content',''),(185935,39148,'_blocks_2_row_content','field_61a0f5f5b3db0'),(185936,39148,'blocks_2_row_form','40417'),(185937,39148,'_blocks_2_row_form','field_61a4ff2c0b08e'),(185938,39148,'blocks_2_row_form_button_label',''),(185939,39148,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(185940,39148,'blocks_3_acfe_flexible_toggle',''),(185941,39148,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(185942,39148,'blocks_3_acfe_flexible_layout_title','Text Block'),(185943,39148,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(185944,39148,'blocks_3_options_theme','#ffffff'),(185945,39148,'_blocks_3_options_theme','field_6176830e2ad17'),(185946,39148,'blocks_3_options',''),(185947,39148,'_blocks_3_options','field_6176830e2ad16'),(185948,39148,'blocks_3_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines'),(185949,39148,'_blocks_3_text_block_heading','field_617669d413097'),(185950,39148,'blocks_3_text_block_content',''),(185951,39148,'_blocks_3_text_block_content','field_617669ec13098'),(185952,40712,'hero_style','default'),(185953,40712,'_hero_style','field_62051d9dc5324'),(185954,40712,'hero_image_pos_x','right'),(185955,40712,'_hero_image_pos_x','field_62ec3d05390bb'),(185956,40712,'hero_image_pos_y','top'),(185957,40712,'_hero_image_pos_y','field_62ec3d05390bc'),(185958,40712,'hero_image_pos',''),(185959,40712,'_hero_image_pos','field_62ec3d05390ba'),(185960,40712,'hero_title','Getting Started'),(185961,40712,'_hero_title','field_617571fe285e8'),(185962,40712,'hero_text','Discover your path in Biomechanics Coaching: Explore diverse roles in physical activity and health. Hear from PTs, Pilates instructors, and other professionals for informed movement choices.'),(185963,40712,'_hero_text','field_6175723c285e9'),(185964,40712,'hero_actions',''),(185965,40712,'_hero_actions','field_61757270285ea'),(185966,40712,'hero_icon','bars'),(185967,40712,'_hero_icon','field_61a6182199d03'),(185968,40712,'fft_hide_from_listings','0'),(185969,40712,'_fft_hide_from_listings','field_61f1320446ab2'),(185970,40712,'fft_page_format','default'),(185971,40712,'_fft_page_format','field_61ae213f1f218'),(185972,40712,'fft_hide_nav','0'),(185973,40712,'_fft_hide_nav','field_635bd5e43527c'),(185974,40712,'fft_hide_header_call_to_action','0'),(185975,40712,'_fft_hide_header_call_to_action','field_635bd6723527d'),(185976,40712,'fft_page_sitemap','0'),(185977,40712,'_fft_page_sitemap','field_61af9b34e8181'),(185978,40712,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";}'),(185979,40712,'_blocks','field_6176696113096'),(185980,40712,'hide_hero','0'),(185981,40712,'_hide_hero','field_66a2380fcda39'),(185982,40712,'_thumbnail_id','39252'),(185983,40712,'__thumbnail_id','field_617570855ddaf'),(185984,40712,'blocks_0_acfe_flexible_toggle',''),(185985,40712,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(185986,40712,'blocks_0_acfe_flexible_layout_title','Template'),(185987,40712,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(185988,40712,'blocks_0_template','39087'),(185989,40712,'_blocks_0_template','field_617bdd570fe01'),(185990,40712,'blocks_1_acfe_flexible_toggle',''),(185991,40712,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(185992,40712,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(185993,40712,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(185994,40712,'blocks_1_options_theme','#ffffff'),(185995,40712,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(185996,40712,'blocks_1_options_reverse','0'),(185997,40712,'_blocks_1_options_reverse','field_61768049bb8ac'),(185998,40712,'blocks_1_options',''),(185999,40712,'_blocks_1_options','field_617682517c334'),(186000,40712,'blocks_1_split_5050_image','39152'),(186001,40712,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(186002,40712,'blocks_1_split_5050_video',''),(186003,40712,'_blocks_1_split_5050_video','field_6239f3160848a'),(186004,40712,'blocks_1_split_5050_content_title',''),(186005,40712,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(186006,40712,'blocks_1_split_5050_content_heading','About Our Career Guides'),(186007,40712,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(186008,40712,'blocks_1_split_5050_content_text','Enhance your career in health and fitness with our Diploma in Biomechanics Coaching. Dive into cutting-edge research spanning nearly two decades to elevate your understanding of client performance and mobility. Benefit from expert guidance, flexible learning options, and workshop locations across the UK. Join a community of multidisciplinary professionals and boost your earnings with advanced knowledge in biomechanics. Download our guides today to embark on your journey to professional excellence.'),(186009,40712,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(186010,40712,'blocks_1_split_5050_content_actions',''),(186011,40712,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(186012,40712,'blocks_1_split_5050_content',''),(186013,40712,'_blocks_1_split_5050_content','field_61767afceb8ba'),(186014,40712,'blocks_4_acfe_flexible_toggle',''),(186015,40712,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(186016,40712,'blocks_4_acfe_flexible_layout_title','Cards'),(186017,40712,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(186018,40712,'blocks_4_options_theme','#ffffff'),(186019,40712,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(186020,40712,'blocks_4_options_format','carousel'),(186021,40712,'_blocks_4_options_format','field_617a7b15245b5'),(186022,40712,'blocks_4_options_style','default'),(186023,40712,'_blocks_4_options_style','field_6278ffb63484a'),(186024,40712,'blocks_4_options_cards_current_listing','0'),(186025,40712,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(186026,40712,'blocks_4_options_cards_content','custom'),(186027,40712,'_blocks_4_options_cards_content','field_617aba6122688'),(186028,40712,'blocks_4_options',''),(186029,40712,'_blocks_4_options','field_617a7b15245b3'),(186030,40712,'blocks_4_cards_custom_0_image','39215'),(186031,40712,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(186032,40712,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(186033,40712,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(186034,40712,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(186035,40712,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(186036,40712,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(186037,40712,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(186038,40712,'blocks_4_cards_custom_1_image','39243'),(186039,40712,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(186040,40712,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(186041,40712,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(186042,40712,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(186043,40712,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(186044,40712,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:50:\"https://biomechanicseducation.com/getting-started/\";s:6:\"target\";s:0:\"\";}'),(186045,40712,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(186046,40712,'blocks_4_cards_custom_2_image','39247'),(186047,40712,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(186048,40712,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(186049,40712,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(186050,40712,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(186051,40712,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(186052,40712,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(186053,40712,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(186054,40712,'blocks_4_cards_custom_3_image','39256'),(186055,40712,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(186056,40712,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(186057,40712,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(186058,40712,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(186059,40712,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(186060,40712,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(186061,40712,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(186062,40712,'blocks_4_cards_custom_4_image','39251'),(186063,40712,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(186064,40712,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches'),(186065,40712,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(186066,40712,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(186067,40712,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(186068,40712,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(186069,40712,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(186070,40712,'blocks_4_cards_custom_5_image','39240'),(186071,40712,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(186072,40712,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(186073,40712,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(186074,40712,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for Sports Massage Therapists'),(186075,40712,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(186076,40712,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(186077,40712,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(186078,40712,'blocks_4_cards_custom_6_image','39260'),(186079,40712,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(186080,40712,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(186081,40712,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(186082,40712,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(186083,40712,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(186084,40712,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(186085,40712,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(186086,40712,'blocks_4_cards_custom','7'),(186087,40712,'_blocks_4_cards_custom','field_6194cbf84d386'),(186088,40712,'blocks_2_acfe_flexible_toggle',''),(186089,40712,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(186090,40712,'blocks_2_acfe_flexible_layout_title','Form'),(186091,40712,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(186092,40712,'blocks_2_row_content_format','standard'),(186093,40712,'_blocks_2_row_content_format','field_6481ead962881'),(186094,40712,'blocks_2_row_content_title','Ready to get started?'),(186095,40712,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(186096,40712,'blocks_2_row_content_heading','Download your free guide!'),(186097,40712,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(186098,40712,'blocks_2_row_content_text','Complete the form to receive your free digital guide, so we can support you on this exciting next step of bringing Intrinsic Biomechanics into your practice.'),(186099,40712,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(186100,40712,'blocks_2_row_content_actions',''),(186101,40712,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(186102,40712,'blocks_2_row_content',''),(186103,40712,'_blocks_2_row_content','field_61a0f5f5b3db0'),(186104,40712,'blocks_2_row_form','40417'),(186105,40712,'_blocks_2_row_form','field_61a4ff2c0b08e'),(186106,40712,'blocks_2_row_form_button_label',''),(186107,40712,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(186108,40712,'blocks_3_acfe_flexible_toggle',''),(186109,40712,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(186110,40712,'blocks_3_acfe_flexible_layout_title','Text Block'),(186111,40712,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(186112,40712,'blocks_3_options_theme','#ffffff'),(186113,40712,'_blocks_3_options_theme','field_6176830e2ad17'),(186114,40712,'blocks_3_options',''),(186115,40712,'_blocks_3_options','field_6176830e2ad16'),(186116,40712,'blocks_3_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines'),(186117,40712,'_blocks_3_text_block_heading','field_617669d413097'),(186118,40712,'blocks_3_text_block_content',''),(186119,40712,'_blocks_3_text_block_content','field_617669ec13098'),(186120,40713,'hide_hero','0'),(186121,40713,'_hide_hero','field_66a2380fcda39'),(186122,40713,'hero_title','Biomechanics and Personal Training'),(186123,40713,'_hero_title','field_617571fe285e8'),(186124,40713,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(186125,40713,'_hero_text','field_6175723c285e9'),(186126,40713,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(186127,40713,'_hero_actions_0_button','field_61757281285eb'),(186128,40713,'hero_actions','1'),(186129,40713,'_hero_actions','field_61757270285ea'),(186130,40713,'hero_style','default'),(186131,40713,'_hero_style','field_62051d9dc5324'),(186132,40713,'_thumbnail_id','39215'),(186133,40713,'__thumbnail_id','field_617570855ddaf'),(186134,40713,'hero_image_pos_x','right'),(186135,40713,'_hero_image_pos_x','field_62ec3d05390bb'),(186136,40713,'hero_image_pos_y','top'),(186137,40713,'_hero_image_pos_y','field_62ec3d05390bc'),(186138,40713,'hero_image_pos',''),(186139,40713,'_hero_image_pos','field_62ec3d05390ba'),(186140,40713,'fft_hide_from_listings','0'),(186141,40713,'_fft_hide_from_listings','field_61f1320446ab2'),(186142,40713,'fft_page_format','default'),(186143,40713,'_fft_page_format','field_61ae213f1f218'),(186144,40713,'fft_hide_nav','0'),(186145,40713,'_fft_hide_nav','field_635bd5e43527c'),(186146,40713,'fft_hide_header_call_to_action','0'),(186147,40713,'_fft_hide_header_call_to_action','field_635bd6723527d'),(186148,40713,'fft_page_sitemap','0'),(186149,40713,'_fft_page_sitemap','field_61af9b34e8181'),(186150,40713,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(186151,40713,'_blocks','field_6176696113096'),(186152,40713,'blocks_0_acfe_flexible_toggle',''),(186153,40713,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(186154,40713,'blocks_0_acfe_flexible_layout_title','Template'),(186155,40713,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(186156,40713,'blocks_0_template','39087'),(186157,40713,'_blocks_0_template','field_617bdd570fe01'),(186158,40713,'blocks_1_acfe_flexible_toggle',''),(186159,40713,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(186160,40713,'blocks_1_acfe_flexible_layout_title','Steps'),(186161,40713,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(186162,40713,'blocks_1_row_content_title',''),(186163,40713,'_blocks_1_row_content_title','field_64888cd1e26e0'),(186164,40713,'blocks_1_row_content_heading','Benefits of training with us'),(186165,40713,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(186166,40713,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(186167,40713,'_blocks_1_row_content_text','field_64888ce2e26e2'),(186168,40713,'blocks_1_row_content_actions',''),(186169,40713,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(186170,40713,'blocks_1_row_content',''),(186171,40713,'_blocks_1_row_content','field_64888cb0e26df'),(186172,40713,'blocks_1_steps_0_icon','progression.svg'),(186173,40713,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(186174,40713,'blocks_1_steps_0_title','Earning Potential'),(186175,40713,'_blocks_1_steps_0_title','field_64888d94e26e7'),(186176,40713,'blocks_1_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(186177,40713,'_blocks_1_steps_0_text','field_64888d99e26e8'),(186178,40713,'blocks_1_steps_1_icon','support.svg'),(186179,40713,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(186180,40713,'blocks_1_steps_1_title','Lifetime Learning Promise'),(186181,40713,'_blocks_1_steps_1_title','field_64888d94e26e7'),(186182,40713,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(186183,40713,'_blocks_1_steps_1_text','field_64888d99e26e8'),(186184,40713,'blocks_1_steps_2_icon','qualification.svg'),(186185,40713,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(186186,40713,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(186187,40713,'_blocks_1_steps_2_title','field_64888d94e26e7'),(186188,40713,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(186189,40713,'_blocks_1_steps_2_text','field_64888d99e26e8'),(186190,40713,'blocks_1_steps_3_icon','leaders.svg'),(186191,40713,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(186192,40713,'blocks_1_steps_3_title','Stand Out From the Crowd'),(186193,40713,'_blocks_1_steps_3_title','field_64888d94e26e7'),(186194,40713,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(186195,40713,'_blocks_1_steps_3_text','field_64888d99e26e8'),(186196,40713,'blocks_1_steps','4'),(186197,40713,'_blocks_1_steps','field_64888d44e26e5'),(186198,40713,'blocks_2_acfe_flexible_toggle',''),(186199,40713,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(186200,40713,'blocks_2_acfe_flexible_layout_title','Video'),(186201,40713,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(186202,40713,'blocks_2_size','large'),(186203,40713,'_blocks_2_size','field_6487038f297c1'),(186204,40713,'blocks_2_row_content_title',''),(186205,40713,'_blocks_2_row_content_title','field_64870132a865d'),(186206,40713,'blocks_2_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(186207,40713,'_blocks_2_row_content_heading','field_64870142a865e'),(186208,40713,'blocks_2_row_content_text',''),(186209,40713,'_blocks_2_row_content_text','field_64870148a865f'),(186210,40713,'blocks_2_row_content',''),(186211,40713,'_blocks_2_row_content','field_6487008ba865c'),(186212,40713,'blocks_2_video_src','https://youtu.be/kLVekt6aqrI'),(186213,40713,'_blocks_2_video_src','field_6193c4a98ec07'),(186214,40713,'blocks_2_video_thumbnail','39186'),(186215,40713,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(186216,40713,'blocks_3_acfe_flexible_toggle',''),(186217,40713,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(186218,40713,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(186219,40713,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(186220,40713,'blocks_3_options_theme','#ffffff'),(186221,40713,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(186222,40713,'blocks_3_options_reverse','0'),(186223,40713,'_blocks_3_options_reverse','field_61768049bb8ac'),(186224,40713,'blocks_3_options',''),(186225,40713,'_blocks_3_options','field_617682517c334'),(186226,40713,'blocks_3_split_5050_image','39220'),(186227,40713,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(186228,40713,'blocks_3_split_5050_video',''),(186229,40713,'_blocks_3_split_5050_video','field_6239f3160848a'),(186230,40713,'blocks_3_split_5050_content_title',''),(186231,40713,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(186232,40713,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a PT'),(186233,40713,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(186234,40713,'blocks_3_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(186235,40713,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(186236,40713,'blocks_3_split_5050_content_actions',''),(186237,40713,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(186238,40713,'blocks_3_split_5050_content',''),(186239,40713,'_blocks_3_split_5050_content','field_61767afceb8ba'),(186240,40713,'blocks_4_acfe_flexible_toggle',''),(186241,40713,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(186242,40713,'blocks_4_acfe_flexible_layout_title','Form'),(186243,40713,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(186244,40713,'blocks_4_row_content_format','standard'),(186245,40713,'_blocks_4_row_content_format','field_6481ead962881'),(186246,40713,'blocks_4_row_content_title',''),(186247,40713,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(186248,40713,'blocks_4_row_content_heading','Enquire Today'),(186249,40713,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(186250,40713,'blocks_4_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(186251,40713,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(186252,40713,'blocks_4_row_content_actions',''),(186253,40713,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(186254,40713,'blocks_4_row_content',''),(186255,40713,'_blocks_4_row_content','field_61a0f5f5b3db0'),(186256,40713,'blocks_4_row_form','40394'),(186257,40713,'_blocks_4_row_form','field_61a4ff2c0b08e'),(186258,40713,'blocks_4_row_form_button_label',''),(186259,40713,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(186260,40713,'blocks_5_acfe_flexible_toggle',''),(186261,40713,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(186262,40713,'blocks_5_acfe_flexible_layout_title','Tabs'),(186263,40713,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(186264,40713,'blocks_5_options_theme','#ffffff'),(186265,40713,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(186266,40713,'blocks_5_options',''),(186267,40713,'_blocks_5_options','field_6177cfcd8140f'),(186268,40713,'blocks_5_tabs_0_tab_label','What will I learn?'),(186269,40713,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(186270,40713,'blocks_5_tabs_0_tab_content_title',''),(186271,40713,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(186272,40713,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(186273,40713,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(186274,40713,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(186275,40713,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(186276,40713,'blocks_5_tabs_0_tab_content_actions',''),(186277,40713,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(186278,40713,'blocks_5_tabs_0_tab_content',''),(186279,40713,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(186280,40713,'blocks_5_tabs_0_tab_image','39076'),(186281,40713,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(186282,40713,'blocks_5_tabs_1_tab_label','What do I need?'),(186283,40713,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(186284,40713,'blocks_5_tabs_1_tab_content_title',''),(186285,40713,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(186286,40713,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(186287,40713,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(186288,40713,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(186289,40713,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(186290,40713,'blocks_5_tabs_1_tab_content_actions',''),(186291,40713,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(186292,40713,'blocks_5_tabs_1_tab_content',''),(186293,40713,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(186294,40713,'blocks_5_tabs_1_tab_image','39223'),(186295,40713,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(186296,40713,'blocks_5_tabs_2_tab_label','Where can I learn?'),(186297,40713,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(186298,40713,'blocks_5_tabs_2_tab_content_title',''),(186299,40713,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(186300,40713,'blocks_5_tabs_2_tab_content_heading','Locations'),(186301,40713,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(186302,40713,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(186303,40713,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(186304,40713,'blocks_5_tabs_2_tab_content_actions',''),(186305,40713,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(186306,40713,'blocks_5_tabs_2_tab_content',''),(186307,40713,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(186308,40713,'blocks_5_tabs_2_tab_image','39224'),(186309,40713,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(186310,40713,'blocks_5_tabs','3'),(186311,40713,'_blocks_5_tabs','field_6177cff281419'),(186312,40713,'blocks_6_acfe_flexible_toggle',''),(186313,40713,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(186314,40713,'blocks_6_acfe_flexible_layout_title','Text Block'),(186315,40713,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(186316,40713,'blocks_6_options_theme','#b61234'),(186317,40713,'_blocks_6_options_theme','field_6176830e2ad17'),(186318,40713,'blocks_6_options',''),(186319,40713,'_blocks_6_options','field_6176830e2ad16'),(186320,40713,'blocks_6_text_block_heading','Fees & Funding Options'),(186321,40713,'_blocks_6_text_block_heading','field_617669d413097'),(186322,40713,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(186323,40713,'_blocks_6_text_block_content','field_617669ec13098'),(186324,40713,'blocks_7_acfe_flexible_toggle',''),(186325,40713,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(186326,40713,'blocks_7_acfe_flexible_layout_title','Icons'),(186327,40713,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(186328,40713,'blocks_7_options_theme','#b61234'),(186329,40713,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(186330,40713,'blocks_7_options_format','row'),(186331,40713,'_blocks_7_options_format','field_64bfde9a90690'),(186332,40713,'blocks_7_options',''),(186333,40713,'_blocks_7_options','field_64bfdd9b90684'),(186334,40713,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(186335,40713,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(186336,40713,'blocks_7_icon_row_items_0_label','Pay in Full'),(186337,40713,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(186338,40713,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(186339,40713,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(186340,40713,'blocks_7_icon_row_items_1_icon','finance.svg'),(186341,40713,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(186342,40713,'blocks_7_icon_row_items_1_label','0% finance'),(186343,40713,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(186344,40713,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(186345,40713,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(186346,40713,'blocks_7_icon_row_items_2_icon','deposit.svg'),(186347,40713,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(186348,40713,'blocks_7_icon_row_items_2_label','Deposit & balance'),(186349,40713,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(186350,40713,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(186351,40713,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(186352,40713,'blocks_7_icon_row_items','3'),(186353,40713,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(186354,40713,'blocks_8_acfe_flexible_toggle',''),(186355,40713,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(186356,40713,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(186357,40713,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(186358,40713,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why Study This Course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(186359,40713,'_blocks_8_content','field_6193c9b5eac84'),(186360,40713,'blocks_9_acfe_flexible_toggle',''),(186361,40713,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(186362,40713,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(186363,40713,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(186364,40713,'blocks_9_testimonial_slider_content_title',''),(186365,40713,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(186366,40713,'blocks_9_testimonial_slider_content_heading','Testimonials'),(186367,40713,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(186368,40713,'blocks_9_testimonial_slider_content_text',''),(186369,40713,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(186370,40713,'blocks_9_testimonial_slider_content_actions',''),(186371,40713,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(186372,40713,'blocks_9_testimonial_slider_content',''),(186373,40713,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(186374,40713,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(186375,40713,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(186376,40713,'blocks_9_testimonial_slider_ambassador_bool','0'),(186377,40713,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(186378,40713,'blocks_10_acfe_flexible_toggle',''),(186379,40713,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(186380,40713,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(186381,40713,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(186382,40713,'blocks_10_options_theme','#ffffff'),(186383,40713,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(186384,40713,'blocks_10_options_state','0'),(186385,40713,'_blocks_10_options_state','field_6239fcb7508c5'),(186386,40713,'blocks_10_options',''),(186387,40713,'_blocks_10_options','field_6177e2991ac44'),(186388,40713,'blocks_10_content_title',''),(186389,40713,'_blocks_10_content_title','field_64d237e8bb1e2'),(186390,40713,'blocks_10_content_heading','Frequently asked questions '),(186391,40713,'_blocks_10_content_heading','field_64d237e8bb1e3'),(186392,40713,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(186393,40713,'_blocks_10_content_text','field_64d237e8bb1e4'),(186394,40713,'blocks_10_content_actions',''),(186395,40713,'_blocks_10_content_actions','field_64d237e8bb1e5'),(186396,40713,'blocks_10_content_align','left'),(186397,40713,'_blocks_10_content_align','field_64d2443e6b6aa'),(186398,40713,'blocks_10_content',''),(186399,40713,'_blocks_10_content','field_64d237e8bb1e1'),(186400,40713,'blocks_10_accordion_content','faqs'),(186401,40713,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(186402,40713,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(186403,40713,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(186404,40713,'blocks_10_actions',''),(186405,40713,'_blocks_10_actions','field_61a746a817f7a'),(186468,40714,'hide_hero','0'),(186469,40714,'_hide_hero','field_66a2380fcda39'),(186470,40714,'hero_title','Biomechanics and Personal Training'),(186471,40714,'_hero_title','field_617571fe285e8'),(186472,40714,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(186473,40714,'_hero_text','field_6175723c285e9'),(186474,40714,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(186475,40714,'_hero_actions_0_button','field_61757281285eb'),(186476,40714,'hero_actions','1'),(186477,40714,'_hero_actions','field_61757270285ea'),(186478,40714,'hero_style','default'),(186479,40714,'_hero_style','field_62051d9dc5324'),(186480,40714,'_thumbnail_id','39215'),(186481,40714,'__thumbnail_id','field_617570855ddaf'),(186482,40714,'hero_image_pos_x','right'),(186483,40714,'_hero_image_pos_x','field_62ec3d05390bb'),(186484,40714,'hero_image_pos_y','top'),(186485,40714,'_hero_image_pos_y','field_62ec3d05390bc'),(186486,40714,'hero_image_pos',''),(186487,40714,'_hero_image_pos','field_62ec3d05390ba'),(186488,40714,'fft_hide_from_listings','0'),(186489,40714,'_fft_hide_from_listings','field_61f1320446ab2'),(186490,40714,'fft_page_format','default'),(186491,40714,'_fft_page_format','field_61ae213f1f218'),(186492,40714,'fft_hide_nav','0'),(186493,40714,'_fft_hide_nav','field_635bd5e43527c'),(186494,40714,'fft_hide_header_call_to_action','0'),(186495,40714,'_fft_hide_header_call_to_action','field_635bd6723527d'),(186496,40714,'fft_page_sitemap','0'),(186497,40714,'_fft_page_sitemap','field_61af9b34e8181'),(186498,40714,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:10:\"split_5050\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(186499,40714,'_blocks','field_6176696113096'),(186500,40714,'blocks_0_acfe_flexible_toggle',''),(186501,40714,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(186502,40714,'blocks_0_acfe_flexible_layout_title','Template'),(186503,40714,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(186504,40714,'blocks_0_template','39087'),(186505,40714,'_blocks_0_template','field_617bdd570fe01'),(186506,40714,'blocks_1_acfe_flexible_toggle',''),(186507,40714,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(186508,40714,'blocks_1_acfe_flexible_layout_title','Steps'),(186509,40714,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(186510,40714,'blocks_1_row_content_title',''),(186511,40714,'_blocks_1_row_content_title','field_64888cd1e26e0'),(186512,40714,'blocks_1_row_content_heading','Benefits of training with us'),(186513,40714,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(186514,40714,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(186515,40714,'_blocks_1_row_content_text','field_64888ce2e26e2'),(186516,40714,'blocks_1_row_content_actions',''),(186517,40714,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(186518,40714,'blocks_1_row_content',''),(186519,40714,'_blocks_1_row_content','field_64888cb0e26df'),(186520,40714,'blocks_1_steps_0_icon','progression.svg'),(186521,40714,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(186522,40714,'blocks_1_steps_0_title','Earning Potential'),(186523,40714,'_blocks_1_steps_0_title','field_64888d94e26e7'),(186524,40714,'blocks_1_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(186525,40714,'_blocks_1_steps_0_text','field_64888d99e26e8'),(186526,40714,'blocks_1_steps_1_icon','support.svg'),(186527,40714,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(186528,40714,'blocks_1_steps_1_title','Lifetime Learning Promise'),(186529,40714,'_blocks_1_steps_1_title','field_64888d94e26e7'),(186530,40714,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(186531,40714,'_blocks_1_steps_1_text','field_64888d99e26e8'),(186532,40714,'blocks_1_steps_2_icon','qualification.svg'),(186533,40714,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(186534,40714,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(186535,40714,'_blocks_1_steps_2_title','field_64888d94e26e7'),(186536,40714,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(186537,40714,'_blocks_1_steps_2_text','field_64888d99e26e8'),(186538,40714,'blocks_1_steps_3_icon','leaders.svg'),(186539,40714,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(186540,40714,'blocks_1_steps_3_title','Stand Out From the Crowd'),(186541,40714,'_blocks_1_steps_3_title','field_64888d94e26e7'),(186542,40714,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(186543,40714,'_blocks_1_steps_3_text','field_64888d99e26e8'),(186544,40714,'blocks_1_steps','4'),(186545,40714,'_blocks_1_steps','field_64888d44e26e5'),(186546,40714,'blocks_5_acfe_flexible_toggle',''),(186547,40714,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(186548,40714,'blocks_5_acfe_flexible_layout_title','Tabs'),(186549,40714,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(186550,40714,'blocks_5_options_theme','#ffffff'),(186551,40714,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(186552,40714,'blocks_5_options',''),(186553,40714,'_blocks_5_options','field_6177cfcd8140f'),(186554,40714,'blocks_5_tabs_0_tab_label','What will I learn?'),(186555,40714,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(186556,40714,'blocks_5_tabs_0_tab_content_title',''),(186557,40714,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(186558,40714,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(186559,40714,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(186560,40714,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(186561,40714,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(186562,40714,'blocks_5_tabs_0_tab_content_actions',''),(186563,40714,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(186564,40714,'blocks_5_tabs_0_tab_content',''),(186565,40714,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(186566,40714,'blocks_5_tabs_0_tab_image','39076'),(186567,40714,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(186568,40714,'blocks_5_tabs_1_tab_label','What do I need?'),(186569,40714,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(186570,40714,'blocks_5_tabs_1_tab_content_title',''),(186571,40714,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(186572,40714,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(186573,40714,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(186574,40714,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(186575,40714,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(186576,40714,'blocks_5_tabs_1_tab_content_actions',''),(186577,40714,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(186578,40714,'blocks_5_tabs_1_tab_content',''),(186579,40714,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(186580,40714,'blocks_5_tabs_1_tab_image','39223'),(186581,40714,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(186582,40714,'blocks_5_tabs_2_tab_label','Where can I learn?'),(186583,40714,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(186584,40714,'blocks_5_tabs_2_tab_content_title',''),(186585,40714,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(186586,40714,'blocks_5_tabs_2_tab_content_heading','Locations'),(186587,40714,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(186588,40714,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(186589,40714,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(186590,40714,'blocks_5_tabs_2_tab_content_actions',''),(186591,40714,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(186592,40714,'blocks_5_tabs_2_tab_content',''),(186593,40714,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(186594,40714,'blocks_5_tabs_2_tab_image','39224'),(186595,40714,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(186596,40714,'blocks_5_tabs','3'),(186597,40714,'_blocks_5_tabs','field_6177cff281419'),(186598,40714,'blocks_6_acfe_flexible_toggle',''),(186599,40714,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(186600,40714,'blocks_6_acfe_flexible_layout_title','Text Block'),(186601,40714,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(186602,40714,'blocks_6_options_theme','#b61234'),(186603,40714,'_blocks_6_options_theme','field_6176830e2ad17'),(186604,40714,'blocks_6_options',''),(186605,40714,'_blocks_6_options','field_6176830e2ad16'),(186606,40714,'blocks_6_text_block_heading','Fees & Funding Options'),(186607,40714,'_blocks_6_text_block_heading','field_617669d413097'),(186608,40714,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(186609,40714,'_blocks_6_text_block_content','field_617669ec13098'),(186610,40714,'blocks_7_acfe_flexible_toggle',''),(186611,40714,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(186612,40714,'blocks_7_acfe_flexible_layout_title','Icons'),(186613,40714,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(186614,40714,'blocks_7_options_theme','#b61234'),(186615,40714,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(186616,40714,'blocks_7_options_format','row'),(186617,40714,'_blocks_7_options_format','field_64bfde9a90690'),(186618,40714,'blocks_7_options',''),(186619,40714,'_blocks_7_options','field_64bfdd9b90684'),(186620,40714,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(186621,40714,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(186622,40714,'blocks_7_icon_row_items_0_label','Pay in Full'),(186623,40714,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(186624,40714,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(186625,40714,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(186626,40714,'blocks_7_icon_row_items_1_icon','finance.svg'),(186627,40714,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(186628,40714,'blocks_7_icon_row_items_1_label','0% finance'),(186629,40714,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(186630,40714,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(186631,40714,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(186632,40714,'blocks_7_icon_row_items_2_icon','deposit.svg'),(186633,40714,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(186634,40714,'blocks_7_icon_row_items_2_label','Deposit & balance'),(186635,40714,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(186636,40714,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(186637,40714,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(186638,40714,'blocks_7_icon_row_items','3'),(186639,40714,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(186640,40714,'blocks_8_acfe_flexible_toggle',''),(186641,40714,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(186642,40714,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(186643,40714,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(186644,40714,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why Study This Course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(186645,40714,'_blocks_8_content','field_6193c9b5eac84'),(186646,40714,'blocks_9_acfe_flexible_toggle',''),(186647,40714,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(186648,40714,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(186649,40714,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(186650,40714,'blocks_9_testimonial_slider_content_title',''),(186651,40714,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(186652,40714,'blocks_9_testimonial_slider_content_heading','Testimonials'),(186653,40714,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(186654,40714,'blocks_9_testimonial_slider_content_text',''),(186655,40714,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(186656,40714,'blocks_9_testimonial_slider_content_actions',''),(186657,40714,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(186658,40714,'blocks_9_testimonial_slider_content',''),(186659,40714,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(186660,40714,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(186661,40714,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(186662,40714,'blocks_9_testimonial_slider_ambassador_bool','0'),(186663,40714,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(186664,40714,'blocks_10_acfe_flexible_toggle',''),(186665,40714,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(186666,40714,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(186667,40714,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(186668,40714,'blocks_10_options_theme','#ffffff'),(186669,40714,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(186670,40714,'blocks_10_options_state','0'),(186671,40714,'_blocks_10_options_state','field_6239fcb7508c5'),(186672,40714,'blocks_10_options',''),(186673,40714,'_blocks_10_options','field_6177e2991ac44'),(186674,40714,'blocks_10_content_title',''),(186675,40714,'_blocks_10_content_title','field_64d237e8bb1e2'),(186676,40714,'blocks_10_content_heading','Frequently asked questions '),(186677,40714,'_blocks_10_content_heading','field_64d237e8bb1e3'),(186678,40714,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(186679,40714,'_blocks_10_content_text','field_64d237e8bb1e4'),(186680,40714,'blocks_10_content_actions',''),(186681,40714,'_blocks_10_content_actions','field_64d237e8bb1e5'),(186682,40714,'blocks_10_content_align','left'),(186683,40714,'_blocks_10_content_align','field_64d2443e6b6aa'),(186684,40714,'blocks_10_content',''),(186685,40714,'_blocks_10_content','field_64d237e8bb1e1'),(186686,40714,'blocks_10_accordion_content','faqs'),(186687,40714,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(186688,40714,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(186689,40714,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(186690,40714,'blocks_10_actions',''),(186691,40714,'_blocks_10_actions','field_61a746a817f7a'),(186692,40714,'blocks_2_acfe_flexible_toggle',''),(186693,40714,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(186694,40714,'blocks_2_acfe_flexible_layout_title','Form'),(186695,40714,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(186696,40714,'blocks_2_row_content_format','standard'),(186697,40714,'_blocks_2_row_content_format','field_6481ead962881'),(186698,40714,'blocks_2_row_content_title',''),(186699,40714,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(186700,40714,'blocks_2_row_content_heading','Enquire Today'),(186701,40714,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(186702,40714,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(186703,40714,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(186704,40714,'blocks_2_row_content_actions',''),(186705,40714,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(186706,40714,'blocks_2_row_content',''),(186707,40714,'_blocks_2_row_content','field_61a0f5f5b3db0'),(186708,40714,'blocks_2_row_form','40394'),(186709,40714,'_blocks_2_row_form','field_61a4ff2c0b08e'),(186710,40714,'blocks_2_row_form_button_label',''),(186711,40714,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(186712,40714,'blocks_3_acfe_flexible_toggle',''),(186713,40714,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(186714,40714,'blocks_3_acfe_flexible_layout_title','Video'),(186715,40714,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(186716,40714,'blocks_3_size','large'),(186717,40714,'_blocks_3_size','field_6487038f297c1'),(186718,40714,'blocks_3_row_content_title',''),(186719,40714,'_blocks_3_row_content_title','field_64870132a865d'),(186720,40714,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(186721,40714,'_blocks_3_row_content_heading','field_64870142a865e'),(186722,40714,'blocks_3_row_content_text',''),(186723,40714,'_blocks_3_row_content_text','field_64870148a865f'),(186724,40714,'blocks_3_row_content',''),(186725,40714,'_blocks_3_row_content','field_6487008ba865c'),(186726,40714,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(186727,40714,'_blocks_3_video_src','field_6193c4a98ec07'),(186728,40714,'blocks_3_video_thumbnail','39186'),(186729,40714,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(186730,40714,'blocks_4_acfe_flexible_toggle',''),(186731,40714,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(186732,40714,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(186733,40714,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(186734,40714,'blocks_4_options_theme','#ffffff'),(186735,40714,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(186736,40714,'blocks_4_options_reverse','0'),(186737,40714,'_blocks_4_options_reverse','field_61768049bb8ac'),(186738,40714,'blocks_4_options',''),(186739,40714,'_blocks_4_options','field_617682517c334'),(186740,40714,'blocks_4_split_5050_image','39220'),(186741,40714,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(186742,40714,'blocks_4_split_5050_video',''),(186743,40714,'_blocks_4_split_5050_video','field_6239f3160848a'),(186744,40714,'blocks_4_split_5050_content_title',''),(186745,40714,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(186746,40714,'blocks_4_split_5050_content_heading','Why it’s relevant to you as a PT'),(186747,40714,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(186748,40714,'blocks_4_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(186749,40714,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(186750,40714,'blocks_4_split_5050_content_actions',''),(186751,40714,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(186752,40714,'blocks_4_split_5050_content',''),(186753,40714,'_blocks_4_split_5050_content','field_61767afceb8ba'),(186754,40715,'hide_hero','0'),(186755,40715,'_hide_hero','field_66a2380fcda39'),(186756,40715,'hero_title','Biomechanics and Personal Training'),(186757,40715,'_hero_title','field_617571fe285e8'),(186758,40715,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(186759,40715,'_hero_text','field_6175723c285e9'),(186760,40715,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(186761,40715,'_hero_actions_0_button','field_61757281285eb'),(186762,40715,'hero_actions','1'),(186763,40715,'_hero_actions','field_61757270285ea'),(186764,40715,'hero_style','default'),(186765,40715,'_hero_style','field_62051d9dc5324'),(186766,40715,'_thumbnail_id','39215'),(186767,40715,'__thumbnail_id','field_617570855ddaf'),(186768,40715,'hero_image_pos_x','right'),(186769,40715,'_hero_image_pos_x','field_62ec3d05390bb'),(186770,40715,'hero_image_pos_y','top'),(186771,40715,'_hero_image_pos_y','field_62ec3d05390bc'),(186772,40715,'hero_image_pos',''),(186773,40715,'_hero_image_pos','field_62ec3d05390ba'),(186774,40715,'fft_hide_from_listings','0'),(186775,40715,'_fft_hide_from_listings','field_61f1320446ab2'),(186776,40715,'fft_page_format','default'),(186777,40715,'_fft_page_format','field_61ae213f1f218'),(186778,40715,'fft_hide_nav','0'),(186779,40715,'_fft_hide_nav','field_635bd5e43527c'),(186780,40715,'fft_hide_header_call_to_action','0'),(186781,40715,'_fft_hide_header_call_to_action','field_635bd6723527d'),(186782,40715,'fft_page_sitemap','0'),(186783,40715,'_fft_page_sitemap','field_61af9b34e8181'),(186784,40715,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:10:\"split_5050\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(186785,40715,'_blocks','field_6176696113096'),(186786,40715,'blocks_0_acfe_flexible_toggle',''),(186787,40715,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(186788,40715,'blocks_0_acfe_flexible_layout_title','Template'),(186789,40715,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(186790,40715,'blocks_0_template','39087'),(186791,40715,'_blocks_0_template','field_617bdd570fe01'),(186792,40715,'blocks_1_acfe_flexible_toggle',''),(186793,40715,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(186794,40715,'blocks_1_acfe_flexible_layout_title','Steps'),(186795,40715,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(186796,40715,'blocks_1_row_content_title',''),(186797,40715,'_blocks_1_row_content_title','field_64888cd1e26e0'),(186798,40715,'blocks_1_row_content_heading','Benefits of training with us'),(186799,40715,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(186800,40715,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(186801,40715,'_blocks_1_row_content_text','field_64888ce2e26e2'),(186802,40715,'blocks_1_row_content_actions',''),(186803,40715,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(186804,40715,'blocks_1_row_content',''),(186805,40715,'_blocks_1_row_content','field_64888cb0e26df'),(186806,40715,'blocks_1_steps_0_icon','progression.svg'),(186807,40715,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(186808,40715,'blocks_1_steps_0_title','Earning Potential'),(186809,40715,'_blocks_1_steps_0_title','field_64888d94e26e7'),(186810,40715,'blocks_1_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(186811,40715,'_blocks_1_steps_0_text','field_64888d99e26e8'),(186812,40715,'blocks_1_steps_1_icon','support.svg'),(186813,40715,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(186814,40715,'blocks_1_steps_1_title','Lifetime Learning Promise'),(186815,40715,'_blocks_1_steps_1_title','field_64888d94e26e7'),(186816,40715,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(186817,40715,'_blocks_1_steps_1_text','field_64888d99e26e8'),(186818,40715,'blocks_1_steps_2_icon','qualification.svg'),(186819,40715,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(186820,40715,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(186821,40715,'_blocks_1_steps_2_title','field_64888d94e26e7'),(186822,40715,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(186823,40715,'_blocks_1_steps_2_text','field_64888d99e26e8'),(186824,40715,'blocks_1_steps_3_icon','leaders.svg'),(186825,40715,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(186826,40715,'blocks_1_steps_3_title','Stand Out From the Crowd'),(186827,40715,'_blocks_1_steps_3_title','field_64888d94e26e7'),(186828,40715,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(186829,40715,'_blocks_1_steps_3_text','field_64888d99e26e8'),(186830,40715,'blocks_1_steps','4'),(186831,40715,'_blocks_1_steps','field_64888d44e26e5'),(186832,40715,'blocks_5_acfe_flexible_toggle',''),(186833,40715,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(186834,40715,'blocks_5_acfe_flexible_layout_title','Tabs'),(186835,40715,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(186836,40715,'blocks_5_options_theme','#ffffff'),(186837,40715,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(186838,40715,'blocks_5_options',''),(186839,40715,'_blocks_5_options','field_6177cfcd8140f'),(186840,40715,'blocks_5_tabs_0_tab_label','What will I learn?'),(186841,40715,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(186842,40715,'blocks_5_tabs_0_tab_content_title',''),(186843,40715,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(186844,40715,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(186845,40715,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(186846,40715,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(186847,40715,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(186848,40715,'blocks_5_tabs_0_tab_content_actions',''),(186849,40715,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(186850,40715,'blocks_5_tabs_0_tab_content',''),(186851,40715,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(186852,40715,'blocks_5_tabs_0_tab_image','39076'),(186853,40715,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(186854,40715,'blocks_5_tabs_1_tab_label','What do I need?'),(186855,40715,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(186856,40715,'blocks_5_tabs_1_tab_content_title',''),(186857,40715,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(186858,40715,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(186859,40715,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(186860,40715,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(186861,40715,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(186862,40715,'blocks_5_tabs_1_tab_content_actions',''),(186863,40715,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(186864,40715,'blocks_5_tabs_1_tab_content',''),(186865,40715,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(186866,40715,'blocks_5_tabs_1_tab_image','39223'),(186867,40715,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(186868,40715,'blocks_5_tabs_2_tab_label','Where can I learn?'),(186869,40715,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(186870,40715,'blocks_5_tabs_2_tab_content_title',''),(186871,40715,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(186872,40715,'blocks_5_tabs_2_tab_content_heading','Locations'),(186873,40715,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(186874,40715,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(186875,40715,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(186876,40715,'blocks_5_tabs_2_tab_content_actions',''),(186877,40715,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(186878,40715,'blocks_5_tabs_2_tab_content',''),(186879,40715,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(186880,40715,'blocks_5_tabs_2_tab_image','39224'),(186881,40715,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(186882,40715,'blocks_5_tabs','3'),(186883,40715,'_blocks_5_tabs','field_6177cff281419'),(186884,40715,'blocks_6_acfe_flexible_toggle',''),(186885,40715,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(186886,40715,'blocks_6_acfe_flexible_layout_title','Text Block'),(186887,40715,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(186888,40715,'blocks_6_options_theme','#b61234'),(186889,40715,'_blocks_6_options_theme','field_6176830e2ad17'),(186890,40715,'blocks_6_options',''),(186891,40715,'_blocks_6_options','field_6176830e2ad16'),(186892,40715,'blocks_6_text_block_heading','Fees & Funding Options'),(186893,40715,'_blocks_6_text_block_heading','field_617669d413097'),(186894,40715,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(186895,40715,'_blocks_6_text_block_content','field_617669ec13098'),(186896,40715,'blocks_7_acfe_flexible_toggle',''),(186897,40715,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(186898,40715,'blocks_7_acfe_flexible_layout_title','Icons'),(186899,40715,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(186900,40715,'blocks_7_options_theme','#b61234'),(186901,40715,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(186902,40715,'blocks_7_options_format','row'),(186903,40715,'_blocks_7_options_format','field_64bfde9a90690'),(186904,40715,'blocks_7_options',''),(186905,40715,'_blocks_7_options','field_64bfdd9b90684'),(186906,40715,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(186907,40715,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(186908,40715,'blocks_7_icon_row_items_0_label','Pay in Full'),(186909,40715,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(186910,40715,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(186911,40715,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(186912,40715,'blocks_7_icon_row_items_1_icon','finance.svg'),(186913,40715,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(186914,40715,'blocks_7_icon_row_items_1_label','0% finance'),(186915,40715,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(186916,40715,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(186917,40715,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(186918,40715,'blocks_7_icon_row_items_2_icon','deposit.svg'),(186919,40715,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(186920,40715,'blocks_7_icon_row_items_2_label','Deposit & balance'),(186921,40715,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(186922,40715,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(186923,40715,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(186924,40715,'blocks_7_icon_row_items','3'),(186925,40715,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(186926,40715,'blocks_8_acfe_flexible_toggle',''),(186927,40715,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(186928,40715,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(186929,40715,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(186930,40715,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why Study This Course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our learner community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(186931,40715,'_blocks_8_content','field_6193c9b5eac84'),(186932,40715,'blocks_9_acfe_flexible_toggle',''),(186933,40715,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(186934,40715,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(186935,40715,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(186936,40715,'blocks_9_testimonial_slider_content_title',''),(186937,40715,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(186938,40715,'blocks_9_testimonial_slider_content_heading','Testimonials'),(186939,40715,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(186940,40715,'blocks_9_testimonial_slider_content_text',''),(186941,40715,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(186942,40715,'blocks_9_testimonial_slider_content_actions',''),(186943,40715,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(186944,40715,'blocks_9_testimonial_slider_content',''),(186945,40715,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(186946,40715,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(186947,40715,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(186948,40715,'blocks_9_testimonial_slider_ambassador_bool','0'),(186949,40715,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(186950,40715,'blocks_10_acfe_flexible_toggle',''),(186951,40715,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(186952,40715,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(186953,40715,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(186954,40715,'blocks_10_options_theme','#ffffff'),(186955,40715,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(186956,40715,'blocks_10_options_state','0'),(186957,40715,'_blocks_10_options_state','field_6239fcb7508c5'),(186958,40715,'blocks_10_options',''),(186959,40715,'_blocks_10_options','field_6177e2991ac44'),(186960,40715,'blocks_10_content_title',''),(186961,40715,'_blocks_10_content_title','field_64d237e8bb1e2'),(186962,40715,'blocks_10_content_heading','Frequently asked questions '),(186963,40715,'_blocks_10_content_heading','field_64d237e8bb1e3'),(186964,40715,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(186965,40715,'_blocks_10_content_text','field_64d237e8bb1e4'),(186966,40715,'blocks_10_content_actions',''),(186967,40715,'_blocks_10_content_actions','field_64d237e8bb1e5'),(186968,40715,'blocks_10_content_align','left'),(186969,40715,'_blocks_10_content_align','field_64d2443e6b6aa'),(186970,40715,'blocks_10_content',''),(186971,40715,'_blocks_10_content','field_64d237e8bb1e1'),(186972,40715,'blocks_10_accordion_content','faqs'),(186973,40715,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(186974,40715,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(186975,40715,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(186976,40715,'blocks_10_actions',''),(186977,40715,'_blocks_10_actions','field_61a746a817f7a'),(186978,40715,'blocks_2_acfe_flexible_toggle',''),(186979,40715,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(186980,40715,'blocks_2_acfe_flexible_layout_title','Form'),(186981,40715,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(186982,40715,'blocks_2_row_content_format','standard'),(186983,40715,'_blocks_2_row_content_format','field_6481ead962881'),(186984,40715,'blocks_2_row_content_title',''),(186985,40715,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(186986,40715,'blocks_2_row_content_heading','Enquire Today'),(186987,40715,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(186988,40715,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(186989,40715,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(186990,40715,'blocks_2_row_content_actions',''),(186991,40715,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(186992,40715,'blocks_2_row_content',''),(186993,40715,'_blocks_2_row_content','field_61a0f5f5b3db0'),(186994,40715,'blocks_2_row_form','40394'),(186995,40715,'_blocks_2_row_form','field_61a4ff2c0b08e'),(186996,40715,'blocks_2_row_form_button_label',''),(186997,40715,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(186998,40715,'blocks_3_acfe_flexible_toggle',''),(186999,40715,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(187000,40715,'blocks_3_acfe_flexible_layout_title','Video'),(187001,40715,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(187002,40715,'blocks_3_size','large'),(187003,40715,'_blocks_3_size','field_6487038f297c1'),(187004,40715,'blocks_3_row_content_title',''),(187005,40715,'_blocks_3_row_content_title','field_64870132a865d'),(187006,40715,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(187007,40715,'_blocks_3_row_content_heading','field_64870142a865e'),(187008,40715,'blocks_3_row_content_text',''),(187009,40715,'_blocks_3_row_content_text','field_64870148a865f'),(187010,40715,'blocks_3_row_content',''),(187011,40715,'_blocks_3_row_content','field_6487008ba865c'),(187012,40715,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(187013,40715,'_blocks_3_video_src','field_6193c4a98ec07'),(187014,40715,'blocks_3_video_thumbnail','39186'),(187015,40715,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(187016,40715,'blocks_4_acfe_flexible_toggle',''),(187017,40715,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(187018,40715,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(187019,40715,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(187020,40715,'blocks_4_options_theme','#ffffff'),(187021,40715,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(187022,40715,'blocks_4_options_reverse','0'),(187023,40715,'_blocks_4_options_reverse','field_61768049bb8ac'),(187024,40715,'blocks_4_options',''),(187025,40715,'_blocks_4_options','field_617682517c334'),(187026,40715,'blocks_4_split_5050_image','39220'),(187027,40715,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(187028,40715,'blocks_4_split_5050_video',''),(187029,40715,'_blocks_4_split_5050_video','field_6239f3160848a'),(187030,40715,'blocks_4_split_5050_content_title',''),(187031,40715,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(187032,40715,'blocks_4_split_5050_content_heading','Why it’s relevant to you as a PT'),(187033,40715,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(187034,40715,'blocks_4_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(187035,40715,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(187036,40715,'blocks_4_split_5050_content_actions',''),(187037,40715,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(187038,40715,'blocks_4_split_5050_content',''),(187039,40715,'_blocks_4_split_5050_content','field_61767afceb8ba'),(187040,40716,'hide_hero','0'),(187041,40716,'_hide_hero','field_66a2380fcda39'),(187042,40716,'hero_title','Biomechanics and Pilates'),(187043,40716,'_hero_title','field_617571fe285e8'),(187044,40716,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(187045,40716,'_hero_text','field_6175723c285e9'),(187046,40716,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(187047,40716,'_hero_actions_0_button','field_61757281285eb'),(187048,40716,'hero_actions','1'),(187049,40716,'_hero_actions','field_61757270285ea'),(187050,40716,'hero_style','default'),(187051,40716,'_hero_style','field_62051d9dc5324'),(187052,40716,'_thumbnail_id','39243'),(187053,40716,'__thumbnail_id','field_617570855ddaf'),(187054,40716,'hero_image_pos_x','right'),(187055,40716,'_hero_image_pos_x','field_62ec3d05390bb'),(187056,40716,'hero_image_pos_y','top'),(187057,40716,'_hero_image_pos_y','field_62ec3d05390bc'),(187058,40716,'hero_image_pos',''),(187059,40716,'_hero_image_pos','field_62ec3d05390ba'),(187060,40716,'fft_hide_from_listings','0'),(187061,40716,'_fft_hide_from_listings','field_61f1320446ab2'),(187062,40716,'fft_page_format','default'),(187063,40716,'_fft_page_format','field_61ae213f1f218'),(187064,40716,'fft_hide_nav','0'),(187065,40716,'_fft_hide_nav','field_635bd5e43527c'),(187066,40716,'fft_hide_header_call_to_action','0'),(187067,40716,'_fft_hide_header_call_to_action','field_635bd6723527d'),(187068,40716,'fft_page_sitemap','0'),(187069,40716,'_fft_page_sitemap','field_61af9b34e8181'),(187070,40716,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:18:\"testimonial_slider\";}'),(187071,40716,'_blocks','field_6176696113096'),(187072,40716,'blocks_0_acfe_flexible_toggle',''),(187073,40716,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(187074,40716,'blocks_0_acfe_flexible_layout_title','Icons'),(187075,40716,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(187076,40716,'blocks_0_options_theme','#b61234'),(187077,40716,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(187078,40716,'blocks_0_options_format','row'),(187079,40716,'_blocks_0_options_format','field_64bfde9a90690'),(187080,40716,'blocks_0_options',''),(187081,40716,'_blocks_0_options','field_64bfdd9b90684'),(187082,40716,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(187083,40716,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(187084,40716,'blocks_0_icon_row_items_0_label','Accreditation'),(187085,40716,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(187086,40716,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(187087,40716,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(187088,40716,'blocks_0_icon_row_items_1_icon','finance.svg'),(187089,40716,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(187090,40716,'blocks_0_icon_row_items_1_label','Flexible payment options'),(187091,40716,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(187092,40716,'blocks_0_icon_row_items_1_text','Including 0% finance'),(187093,40716,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(187094,40716,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(187095,40716,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(187096,40716,'blocks_0_icon_row_items_2_label','Earning potential'),(187097,40716,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(187098,40716,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(187099,40716,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(187100,40716,'blocks_0_icon_row_items','3'),(187101,40716,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(187102,40716,'blocks_1_acfe_flexible_toggle',''),(187103,40716,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(187104,40716,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(187105,40716,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(187106,40716,'blocks_1_options_theme','#ffffff'),(187107,40716,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(187108,40716,'blocks_1_options_reverse','0'),(187109,40716,'_blocks_1_options_reverse','field_61768049bb8ac'),(187110,40716,'blocks_1_options',''),(187111,40716,'_blocks_1_options','field_617682517c334'),(187112,40716,'blocks_1_split_5050_image','38037'),(187113,40716,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(187114,40716,'blocks_1_split_5050_video',''),(187115,40716,'_blocks_1_split_5050_video','field_6239f3160848a'),(187116,40716,'blocks_1_split_5050_content_title',''),(187117,40716,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(187118,40716,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(187119,40716,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(187120,40716,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(187121,40716,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(187122,40716,'blocks_1_split_5050_content_actions',''),(187123,40716,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(187124,40716,'blocks_1_split_5050_content',''),(187125,40716,'_blocks_1_split_5050_content','field_61767afceb8ba'),(187126,40716,'blocks_2_acfe_flexible_toggle',''),(187127,40716,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(187128,40716,'blocks_2_acfe_flexible_layout_title','Form'),(187129,40716,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(187130,40716,'blocks_2_row_content_format','standard'),(187131,40716,'_blocks_2_row_content_format','field_6481ead962881'),(187132,40716,'blocks_2_row_content_title',''),(187133,40716,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(187134,40716,'blocks_2_row_content_heading','Enquire Today'),(187135,40716,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(187136,40716,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(187137,40716,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(187138,40716,'blocks_2_row_content_actions',''),(187139,40716,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(187140,40716,'blocks_2_row_content',''),(187141,40716,'_blocks_2_row_content','field_61a0f5f5b3db0'),(187142,40716,'blocks_2_row_form','40394'),(187143,40716,'_blocks_2_row_form','field_61a4ff2c0b08e'),(187144,40716,'blocks_2_row_form_button_label',''),(187145,40716,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(187146,40716,'blocks_3_acfe_flexible_toggle',''),(187147,40716,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(187148,40716,'blocks_3_acfe_flexible_layout_title','Video'),(187149,40716,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(187150,40716,'blocks_3_size','large'),(187151,40716,'_blocks_3_size','field_6487038f297c1'),(187152,40716,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(187153,40716,'_blocks_3_row_content_title','field_64870132a865d'),(187154,40716,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(187155,40716,'_blocks_3_row_content_heading','field_64870142a865e'),(187156,40716,'blocks_3_row_content_text',''),(187157,40716,'_blocks_3_row_content_text','field_64870148a865f'),(187158,40716,'blocks_3_row_content',''),(187159,40716,'_blocks_3_row_content','field_6487008ba865c'),(187160,40716,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(187161,40716,'_blocks_3_video_src','field_6193c4a98ec07'),(187162,40716,'blocks_3_video_thumbnail',''),(187163,40716,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(187164,40716,'blocks_4_acfe_flexible_toggle',''),(187165,40716,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(187166,40716,'blocks_4_acfe_flexible_layout_title','Steps'),(187167,40716,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(187168,40716,'blocks_4_row_content_title',''),(187169,40716,'_blocks_4_row_content_title','field_64888cd1e26e0'),(187170,40716,'blocks_4_row_content_heading','Benefits of training with us'),(187171,40716,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(187172,40716,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(187173,40716,'_blocks_4_row_content_text','field_64888ce2e26e2'),(187174,40716,'blocks_4_row_content_actions',''),(187175,40716,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(187176,40716,'blocks_4_row_content',''),(187177,40716,'_blocks_4_row_content','field_64888cb0e26df'),(187178,40716,'blocks_4_steps_0_icon','progression.svg'),(187179,40716,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(187180,40716,'blocks_4_steps_0_title','Earning potential'),(187181,40716,'_blocks_4_steps_0_title','field_64888d94e26e7'),(187182,40716,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(187183,40716,'_blocks_4_steps_0_text','field_64888d99e26e8'),(187184,40716,'blocks_4_steps_1_icon','support.svg'),(187185,40716,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(187186,40716,'blocks_4_steps_1_title','Lifetime Learning Promise'),(187187,40716,'_blocks_4_steps_1_title','field_64888d94e26e7'),(187188,40716,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(187189,40716,'_blocks_4_steps_1_text','field_64888d99e26e8'),(187190,40716,'blocks_4_steps_2_icon','qualification.svg'),(187191,40716,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(187192,40716,'blocks_4_steps_2_title','Evidence based hands on learning'),(187193,40716,'_blocks_4_steps_2_title','field_64888d94e26e7'),(187194,40716,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(187195,40716,'_blocks_4_steps_2_text','field_64888d99e26e8'),(187196,40716,'blocks_4_steps_3_icon','leaders.svg'),(187197,40716,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(187198,40716,'blocks_4_steps_3_title','Stand out from the crowd'),(187199,40716,'_blocks_4_steps_3_title','field_64888d94e26e7'),(187200,40716,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(187201,40716,'_blocks_4_steps_3_text','field_64888d99e26e8'),(187202,40716,'blocks_4_steps','4'),(187203,40716,'_blocks_4_steps','field_64888d44e26e5'),(187204,40716,'blocks_5_acfe_flexible_toggle',''),(187205,40716,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(187206,40716,'blocks_5_acfe_flexible_layout_title','Tabs'),(187207,40716,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(187208,40716,'blocks_5_options_theme','#ffffff'),(187209,40716,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(187210,40716,'blocks_5_options',''),(187211,40716,'_blocks_5_options','field_6177cfcd8140f'),(187212,40716,'blocks_5_tabs_0_tab_label','What will I learn?'),(187213,40716,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(187214,40716,'blocks_5_tabs_0_tab_content_title',''),(187215,40716,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(187216,40716,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(187217,40716,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(187218,40716,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients:\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(187219,40716,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(187220,40716,'blocks_5_tabs_0_tab_content_actions',''),(187221,40716,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(187222,40716,'blocks_5_tabs_0_tab_content',''),(187223,40716,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(187224,40716,'blocks_5_tabs_0_tab_image','39076'),(187225,40716,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(187226,40716,'blocks_5_tabs_1_tab_label','What do I need?'),(187227,40716,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(187228,40716,'blocks_5_tabs_1_tab_content_title',''),(187229,40716,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(187230,40716,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(187231,40716,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(187232,40716,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(187233,40716,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(187234,40716,'blocks_5_tabs_1_tab_content_actions',''),(187235,40716,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(187236,40716,'blocks_5_tabs_1_tab_content',''),(187237,40716,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(187238,40716,'blocks_5_tabs_1_tab_image','40487'),(187239,40716,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(187240,40716,'blocks_5_tabs_2_tab_label','Where can I learn?'),(187241,40716,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(187242,40716,'blocks_5_tabs_2_tab_content_title',''),(187243,40716,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(187244,40716,'blocks_5_tabs_2_tab_content_heading','Locations'),(187245,40716,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(187246,40716,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(187247,40716,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(187248,40716,'blocks_5_tabs_2_tab_content_actions',''),(187249,40716,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(187250,40716,'blocks_5_tabs_2_tab_content',''),(187251,40716,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(187252,40716,'blocks_5_tabs_2_tab_image','39224'),(187253,40716,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(187254,40716,'blocks_5_tabs','3'),(187255,40716,'_blocks_5_tabs','field_6177cff281419'),(187256,40716,'blocks_6_acfe_flexible_toggle',''),(187257,40716,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(187258,40716,'blocks_6_acfe_flexible_layout_title','Text Block'),(187259,40716,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(187260,40716,'blocks_6_options_theme','#b61234'),(187261,40716,'_blocks_6_options_theme','field_6176830e2ad17'),(187262,40716,'blocks_6_options',''),(187263,40716,'_blocks_6_options','field_6176830e2ad16'),(187264,40716,'blocks_6_text_block_heading','Fees & Funding Options'),(187265,40716,'_blocks_6_text_block_heading','field_617669d413097'),(187266,40716,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(187267,40716,'_blocks_6_text_block_content','field_617669ec13098'),(187268,40716,'blocks_8_acfe_flexible_toggle',''),(187269,40716,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(187270,40716,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(187271,40716,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(187272,40716,'blocks_8_options_theme','#ffffff'),(187273,40716,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(187274,40716,'blocks_8_options_reverse','0'),(187275,40716,'_blocks_8_options_reverse','field_61768049bb8ac'),(187276,40716,'blocks_8_options',''),(187277,40716,'_blocks_8_options','field_617682517c334'),(187278,40716,'blocks_8_split_5050_image','40484'),(187279,40716,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(187280,40716,'blocks_8_split_5050_video',''),(187281,40716,'_blocks_8_split_5050_video','field_6239f3160848a'),(187282,40716,'blocks_8_split_5050_content_title',''),(187283,40716,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(187284,40716,'blocks_8_split_5050_content_heading','Why study this course?'),(187285,40716,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(187286,40716,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(187287,40716,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(187288,40716,'blocks_8_split_5050_content_actions',''),(187289,40716,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(187290,40716,'blocks_8_split_5050_content',''),(187291,40716,'_blocks_8_split_5050_content','field_61767afceb8ba'),(187292,40716,'blocks_7_acfe_flexible_toggle',''),(187293,40716,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(187294,40716,'blocks_7_acfe_flexible_layout_title','Icons'),(187295,40716,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(187296,40716,'blocks_7_options_theme','#b61234'),(187297,40716,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(187298,40716,'blocks_7_options_format','row'),(187299,40716,'_blocks_7_options_format','field_64bfde9a90690'),(187300,40716,'blocks_7_options',''),(187301,40716,'_blocks_7_options','field_64bfdd9b90684'),(187302,40716,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(187303,40716,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(187304,40716,'blocks_7_icon_row_items_0_label','Pay in full '),(187305,40716,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(187306,40716,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(187307,40716,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(187308,40716,'blocks_7_icon_row_items_1_icon','finance.svg'),(187309,40716,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(187310,40716,'blocks_7_icon_row_items_1_label','0% finance'),(187311,40716,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(187312,40716,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(187313,40716,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(187314,40716,'blocks_7_icon_row_items_2_icon','deposit.svg'),(187315,40716,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(187316,40716,'blocks_7_icon_row_items_2_label','Deposit & balance'),(187317,40716,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(187318,40716,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(187319,40716,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(187320,40716,'blocks_7_icon_row_items','3'),(187321,40716,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(187322,40716,'blocks_9_acfe_flexible_toggle',''),(187323,40716,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(187324,40716,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(187325,40716,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(187326,40716,'blocks_9_options_theme','#ffffff'),(187327,40716,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(187328,40716,'blocks_9_options_state','0'),(187329,40716,'_blocks_9_options_state','field_6239fcb7508c5'),(187330,40716,'blocks_9_options',''),(187331,40716,'_blocks_9_options','field_6177e2991ac44'),(187332,40716,'blocks_9_content_title',''),(187333,40716,'_blocks_9_content_title','field_64d237e8bb1e2'),(187334,40716,'blocks_9_content_heading','Frequently asked questions '),(187335,40716,'_blocks_9_content_heading','field_64d237e8bb1e3'),(187336,40716,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(187337,40716,'_blocks_9_content_text','field_64d237e8bb1e4'),(187338,40716,'blocks_9_content_actions',''),(187339,40716,'_blocks_9_content_actions','field_64d237e8bb1e5'),(187340,40716,'blocks_9_content_align','left'),(187341,40716,'_blocks_9_content_align','field_64d2443e6b6aa'),(187342,40716,'blocks_9_content',''),(187343,40716,'_blocks_9_content','field_64d237e8bb1e1'),(187344,40716,'blocks_9_accordion_content','faqs'),(187345,40716,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(187346,40716,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(187347,40716,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(187348,40716,'blocks_9_actions',''),(187349,40716,'_blocks_9_actions','field_61a746a817f7a'),(187350,40716,'blocks_10_acfe_flexible_toggle',''),(187351,40716,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(187352,40716,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(187353,40716,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(187354,40716,'blocks_10_testimonial_slider_content_title',''),(187355,40716,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(187356,40716,'blocks_10_testimonial_slider_content_heading','Testimonials'),(187357,40716,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(187358,40716,'blocks_10_testimonial_slider_content_text',''),(187359,40716,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(187360,40716,'blocks_10_testimonial_slider_content_actions',''),(187361,40716,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(187362,40716,'blocks_10_testimonial_slider_content',''),(187363,40716,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(187364,40716,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(187365,40716,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(187366,40716,'blocks_10_testimonial_slider_ambassador_bool','0'),(187367,40716,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(187368,39238,'blocks_2_acfe_flexible_toggle',''),(187369,39238,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(187370,39238,'blocks_2_acfe_flexible_layout_title','Form'),(187371,39238,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(187372,39238,'blocks_2_row_content_format','standard'),(187373,39238,'_blocks_2_row_content_format','field_6481ead962881'),(187374,39238,'blocks_2_row_content_title',''),(187375,39238,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(187376,39238,'blocks_2_row_content_heading','Enquire Today'),(187377,39238,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(187378,39238,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(187379,39238,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(187380,39238,'blocks_2_row_content_actions',''),(187381,39238,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(187382,39238,'blocks_2_row_content',''),(187383,39238,'_blocks_2_row_content','field_61a0f5f5b3db0'),(187384,39238,'blocks_2_row_form','40394'),(187385,39238,'_blocks_2_row_form','field_61a4ff2c0b08e'),(187386,39238,'blocks_2_row_form_button_label',''),(187387,39238,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(187388,39238,'blocks_3_acfe_flexible_toggle','1'),(187389,39238,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(187390,39238,'blocks_3_acfe_flexible_layout_title','Video'),(187391,39238,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(187392,39238,'blocks_3_size','large'),(187393,39238,'_blocks_3_size','field_6487038f297c1'),(187394,39238,'blocks_3_row_content_title',''),(187395,39238,'_blocks_3_row_content_title','field_64870132a865d'),(187396,39238,'blocks_3_row_content_heading',''),(187397,39238,'_blocks_3_row_content_heading','field_64870142a865e'),(187398,39238,'blocks_3_row_content_text',''),(187399,39238,'_blocks_3_row_content_text','field_64870148a865f'),(187400,39238,'blocks_3_row_content',''),(187401,39238,'_blocks_3_row_content','field_6487008ba865c'),(187402,39238,'blocks_3_video_src',''),(187403,39238,'_blocks_3_video_src','field_6193c4a98ec07'),(187404,39238,'blocks_3_video_thumbnail',''),(187405,39238,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(187406,40717,'hide_hero','0'),(187407,40717,'_hide_hero','field_66a2380fcda39'),(187408,40717,'hero_title','Biomechanics and Sports Massage Therapy'),(187409,40717,'_hero_title','field_617571fe285e8'),(187410,40717,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(187411,40717,'_hero_text','field_6175723c285e9'),(187412,40717,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39214-4\";s:6:\"target\";s:0:\"\";}'),(187413,40717,'_hero_actions_0_button','field_61757281285eb'),(187414,40717,'hero_actions','1'),(187415,40717,'_hero_actions','field_61757270285ea'),(187416,40717,'hero_style','default'),(187417,40717,'_hero_style','field_62051d9dc5324'),(187418,40717,'_thumbnail_id','39240'),(187419,40717,'__thumbnail_id','field_617570855ddaf'),(187420,40717,'hero_image_pos_x','right'),(187421,40717,'_hero_image_pos_x','field_62ec3d05390bb'),(187422,40717,'hero_image_pos_y','top'),(187423,40717,'_hero_image_pos_y','field_62ec3d05390bc'),(187424,40717,'hero_image_pos',''),(187425,40717,'_hero_image_pos','field_62ec3d05390ba'),(187426,40717,'fft_hide_from_listings','0'),(187427,40717,'_fft_hide_from_listings','field_61f1320446ab2'),(187428,40717,'fft_page_format','default'),(187429,40717,'_fft_page_format','field_61ae213f1f218'),(187430,40717,'fft_hide_nav','0'),(187431,40717,'_fft_hide_nav','field_635bd5e43527c'),(187432,40717,'fft_hide_header_call_to_action','0'),(187433,40717,'_fft_hide_header_call_to_action','field_635bd6723527d'),(187434,40717,'fft_page_sitemap','0'),(187435,40717,'_fft_page_sitemap','field_61af9b34e8181'),(187436,40717,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(187437,40717,'_blocks','field_6176696113096'),(187438,40717,'blocks_0_acfe_flexible_toggle',''),(187439,40717,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(187440,40717,'blocks_0_acfe_flexible_layout_title','Template'),(187441,40717,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(187442,40717,'blocks_0_template','39087'),(187443,40717,'_blocks_0_template','field_617bdd570fe01'),(187444,40717,'blocks_8_acfe_flexible_toggle','1'),(187445,40717,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(187446,40717,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(187447,40717,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(187448,40717,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(187449,40717,'_blocks_8_content','field_6193c9b5eac84'),(187450,40717,'blocks_9_acfe_flexible_toggle',''),(187451,40717,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(187452,40717,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(187453,40717,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(187454,40717,'blocks_9_testimonial_slider_content_title',''),(187455,40717,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(187456,40717,'blocks_9_testimonial_slider_content_heading','Testimonials'),(187457,40717,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(187458,40717,'blocks_9_testimonial_slider_content_text',''),(187459,40717,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(187460,40717,'blocks_9_testimonial_slider_content_actions',''),(187461,40717,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(187462,40717,'blocks_9_testimonial_slider_content',''),(187463,40717,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(187464,40717,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(187465,40717,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(187466,40717,'blocks_9_testimonial_slider_ambassador_bool','0'),(187467,40717,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(187468,40717,'blocks_10_acfe_flexible_toggle',''),(187469,40717,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(187470,40717,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(187471,40717,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(187472,40717,'blocks_10_options_theme','#ffffff'),(187473,40717,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(187474,40717,'blocks_10_options_state','0'),(187475,40717,'_blocks_10_options_state','field_6239fcb7508c5'),(187476,40717,'blocks_10_options',''),(187477,40717,'_blocks_10_options','field_6177e2991ac44'),(187478,40717,'blocks_10_content_title',''),(187479,40717,'_blocks_10_content_title','field_64d237e8bb1e2'),(187480,40717,'blocks_10_content_heading','Frequently Asked Questions '),(187481,40717,'_blocks_10_content_heading','field_64d237e8bb1e3'),(187482,40717,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329829444'),(187483,40717,'_blocks_10_content_text','field_64d237e8bb1e4'),(187484,40717,'blocks_10_content_actions',''),(187485,40717,'_blocks_10_content_actions','field_64d237e8bb1e5'),(187486,40717,'blocks_10_content_align','left'),(187487,40717,'_blocks_10_content_align','field_64d2443e6b6aa'),(187488,40717,'blocks_10_content',''),(187489,40717,'_blocks_10_content','field_64d237e8bb1e1'),(187490,40717,'blocks_10_accordion_content','faqs'),(187491,40717,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(187492,40717,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(187493,40717,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(187494,40717,'blocks_10_actions',''),(187495,40717,'_blocks_10_actions','field_61a746a817f7a'),(187496,40717,'blocks_4_acfe_flexible_toggle',''),(187497,40717,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(187498,40717,'blocks_4_acfe_flexible_layout_title','Tabs'),(187499,40717,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(187500,40717,'blocks_4_options_theme','#ffffff'),(187501,40717,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(187502,40717,'blocks_4_options',''),(187503,40717,'_blocks_4_options','field_6177cfcd8140f'),(187504,40717,'blocks_4_tabs_0_tab_label','What will I learn ?'),(187505,40717,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(187506,40717,'blocks_4_tabs_0_tab_content_title',''),(187507,40717,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(187508,40717,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(187509,40717,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(187510,40717,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(187511,40717,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(187512,40717,'blocks_4_tabs_0_tab_content_actions',''),(187513,40717,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(187514,40717,'blocks_4_tabs_0_tab_content',''),(187515,40717,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(187516,40717,'blocks_4_tabs_0_tab_image','39076'),(187517,40717,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(187518,40717,'blocks_4_tabs_1_tab_label','What do I need ?'),(187519,40717,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(187520,40717,'blocks_4_tabs_1_tab_content_title',''),(187521,40717,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(187522,40717,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(187523,40717,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(187524,40717,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(187525,40717,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(187526,40717,'blocks_4_tabs_1_tab_content_actions',''),(187527,40717,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(187528,40717,'blocks_4_tabs_1_tab_content',''),(187529,40717,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(187530,40717,'blocks_4_tabs_1_tab_image','39223'),(187531,40717,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(187532,40717,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(187533,40717,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(187534,40717,'blocks_4_tabs_2_tab_content_title',''),(187535,40717,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(187536,40717,'blocks_4_tabs_2_tab_content_heading','Locations'),(187537,40717,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(187538,40717,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(187539,40717,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(187540,40717,'blocks_4_tabs_2_tab_content_actions',''),(187541,40717,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(187542,40717,'blocks_4_tabs_2_tab_content',''),(187543,40717,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(187544,40717,'blocks_4_tabs_2_tab_image','39224'),(187545,40717,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(187546,40717,'blocks_4_tabs','3'),(187547,40717,'_blocks_4_tabs','field_6177cff281419'),(187548,40717,'blocks_5_acfe_flexible_toggle',''),(187549,40717,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(187550,40717,'blocks_5_acfe_flexible_layout_title','Text Block'),(187551,40717,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(187552,40717,'blocks_5_options_theme','#b61234'),(187553,40717,'_blocks_5_options_theme','field_6176830e2ad17'),(187554,40717,'blocks_5_options',''),(187555,40717,'_blocks_5_options','field_6176830e2ad16'),(187556,40717,'blocks_5_text_block_heading','Fees & Funding Options'),(187557,40717,'_blocks_5_text_block_heading','field_617669d413097'),(187558,40717,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(187559,40717,'_blocks_5_text_block_content','field_617669ec13098'),(187560,40717,'blocks_1_acfe_flexible_toggle',''),(187561,40717,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(187562,40717,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(187563,40717,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(187564,40717,'blocks_1_options_theme','#ffffff'),(187565,40717,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(187566,40717,'blocks_1_options_reverse','0'),(187567,40717,'_blocks_1_options_reverse','field_61768049bb8ac'),(187568,40717,'blocks_1_options',''),(187569,40717,'_blocks_1_options','field_617682517c334'),(187570,40717,'blocks_1_split_5050_image','39241'),(187571,40717,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(187572,40717,'blocks_1_split_5050_video',''),(187573,40717,'_blocks_1_split_5050_video','field_6239f3160848a'),(187574,40717,'blocks_1_split_5050_content_title',''),(187575,40717,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(187576,40717,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(187577,40717,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(187578,40717,'blocks_1_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(187579,40717,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(187580,40717,'blocks_1_split_5050_content_actions',''),(187581,40717,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(187582,40717,'blocks_1_split_5050_content',''),(187583,40717,'_blocks_1_split_5050_content','field_61767afceb8ba'),(187584,40717,'blocks_6_acfe_flexible_toggle',''),(187585,40717,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(187586,40717,'blocks_6_acfe_flexible_layout_title','Icons'),(187587,40717,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(187588,40717,'blocks_6_options_theme','#b61234'),(187589,40717,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(187590,40717,'blocks_6_options_format','row'),(187591,40717,'_blocks_6_options_format','field_64bfde9a90690'),(187592,40717,'blocks_6_options',''),(187593,40717,'_blocks_6_options','field_64bfdd9b90684'),(187594,40717,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(187595,40717,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(187596,40717,'blocks_6_icon_row_items_0_label','Pay in Full'),(187597,40717,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(187598,40717,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(187599,40717,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(187600,40717,'blocks_6_icon_row_items_1_icon','finance.svg'),(187601,40717,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(187602,40717,'blocks_6_icon_row_items_1_label','0% Finance'),(187603,40717,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(187604,40717,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(187605,40717,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(187606,40717,'blocks_6_icon_row_items_2_icon','deposit.svg'),(187607,40717,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(187608,40717,'blocks_6_icon_row_items_2_label','Deposit & balance'),(187609,40717,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(187610,40717,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(187611,40717,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(187612,40717,'blocks_6_icon_row_items','3'),(187613,40717,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(187614,40717,'blocks_7_acfe_flexible_toggle',''),(187615,40717,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(187616,40717,'blocks_7_acfe_flexible_layout_title','Steps'),(187617,40717,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(187618,40717,'blocks_7_row_content_title',''),(187619,40717,'_blocks_7_row_content_title','field_64888cd1e26e0'),(187620,40717,'blocks_7_row_content_heading','Benefits of Training with Us'),(187621,40717,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(187622,40717,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(187623,40717,'_blocks_7_row_content_text','field_64888ce2e26e2'),(187624,40717,'blocks_7_row_content_actions',''),(187625,40717,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(187626,40717,'blocks_7_row_content',''),(187627,40717,'_blocks_7_row_content','field_64888cb0e26df'),(187628,40717,'blocks_7_steps_0_icon','progression.svg'),(187629,40717,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(187630,40717,'blocks_7_steps_0_title','Earning potential'),(187631,40717,'_blocks_7_steps_0_title','field_64888d94e26e7'),(187632,40717,'blocks_7_steps_0_text','Attract new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(187633,40717,'_blocks_7_steps_0_text','field_64888d99e26e8'),(187634,40717,'blocks_7_steps_1_icon','support.svg'),(187635,40717,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(187636,40717,'blocks_7_steps_1_title','Lifetime learning promise'),(187637,40717,'_blocks_7_steps_1_title','field_64888d94e26e7'),(187638,40717,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(187639,40717,'_blocks_7_steps_1_text','field_64888d99e26e8'),(187640,40717,'blocks_7_steps_2_icon','qualification.svg'),(187641,40717,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(187642,40717,'blocks_7_steps_2_title','Evidence based hands on learning'),(187643,40717,'_blocks_7_steps_2_title','field_64888d94e26e7'),(187644,40717,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn how to screen and test to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(187645,40717,'_blocks_7_steps_2_text','field_64888d99e26e8'),(187646,40717,'blocks_7_steps_3_icon','leaders.svg'),(187647,40717,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(187648,40717,'blocks_7_steps_3_title','Stand out from the crowd'),(187649,40717,'_blocks_7_steps_3_title','field_64888d94e26e7'),(187650,40717,'blocks_7_steps_3_text','As a Sports Massage Therapist through the Biomechanics Coaching Diploma we will give you the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course can also enhance your relationship with other healthcare providers because you will have confidence in a common language'),(187651,40717,'_blocks_7_steps_3_text','field_64888d99e26e8'),(187652,40717,'blocks_7_steps','4'),(187653,40717,'_blocks_7_steps','field_64888d44e26e5'),(187654,40717,'blocks_2_acfe_flexible_toggle',''),(187655,40717,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(187656,40717,'blocks_2_acfe_flexible_layout_title','Form'),(187657,40717,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(187658,40717,'blocks_2_row_content_format','standard'),(187659,40717,'_blocks_2_row_content_format','field_6481ead962881'),(187660,40717,'blocks_2_row_content_title',''),(187661,40717,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(187662,40717,'blocks_2_row_content_heading','Enquire Today'),(187663,40717,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(187664,40717,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(187665,40717,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(187666,40717,'blocks_2_row_content_actions',''),(187667,40717,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(187668,40717,'blocks_2_row_content',''),(187669,40717,'_blocks_2_row_content','field_61a0f5f5b3db0'),(187670,40717,'blocks_2_row_form','40394'),(187671,40717,'_blocks_2_row_form','field_61a4ff2c0b08e'),(187672,40717,'blocks_2_row_form_button_label',''),(187673,40717,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(187674,40717,'blocks_3_acfe_flexible_toggle',''),(187675,40717,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(187676,40717,'blocks_3_acfe_flexible_layout_title','Video'),(187677,40717,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(187678,40717,'blocks_3_size','large'),(187679,40717,'_blocks_3_size','field_6487038f297c1'),(187680,40717,'blocks_3_row_content_title',''),(187681,40717,'_blocks_3_row_content_title','field_64870132a865d'),(187682,40717,'blocks_3_row_content_heading',''),(187683,40717,'_blocks_3_row_content_heading','field_64870142a865e'),(187684,40717,'blocks_3_row_content_text',''),(187685,40717,'_blocks_3_row_content_text','field_64870148a865f'),(187686,40717,'blocks_3_row_content',''),(187687,40717,'_blocks_3_row_content','field_6487008ba865c'),(187688,40717,'blocks_3_video_src',''),(187689,40717,'_blocks_3_video_src','field_6193c4a98ec07'),(187690,40717,'blocks_3_video_thumbnail',''),(187691,40717,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(187692,40718,'hide_hero','0'),(187693,40718,'_hide_hero','field_66a2380fcda39'),(187694,40718,'hero_title','Biomechanics and Podiatrists'),(187695,40718,'_hero_title','field_617571fe285e8'),(187696,40718,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(187697,40718,'_hero_text','field_6175723c285e9'),(187698,40718,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(187699,40718,'_hero_actions_0_button','field_61757281285eb'),(187700,40718,'hero_actions','1'),(187701,40718,'_hero_actions','field_61757270285ea'),(187702,40718,'hero_style','default'),(187703,40718,'_hero_style','field_62051d9dc5324'),(187704,40718,'_thumbnail_id','39247'),(187705,40718,'__thumbnail_id','field_617570855ddaf'),(187706,40718,'hero_image_pos_x','right'),(187707,40718,'_hero_image_pos_x','field_62ec3d05390bb'),(187708,40718,'hero_image_pos_y','top'),(187709,40718,'_hero_image_pos_y','field_62ec3d05390bc'),(187710,40718,'hero_image_pos',''),(187711,40718,'_hero_image_pos','field_62ec3d05390ba'),(187712,40718,'fft_hide_from_listings','0'),(187713,40718,'_fft_hide_from_listings','field_61f1320446ab2'),(187714,40718,'fft_page_format','default'),(187715,40718,'_fft_page_format','field_61ae213f1f218'),(187716,40718,'fft_hide_nav','0'),(187717,40718,'_fft_hide_nav','field_635bd5e43527c'),(187718,40718,'fft_hide_header_call_to_action','0'),(187719,40718,'_fft_hide_header_call_to_action','field_635bd6723527d'),(187720,40718,'fft_page_sitemap','0'),(187721,40718,'_fft_page_sitemap','field_61af9b34e8181'),(187722,40718,'blocks','a:9:{i:0;s:5:\"steps\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:4:\"tabs\";i:4;s:10:\"text_block\";i:5;s:5:\"icons\";i:6;s:16:\"standard_content\";i:7;s:18:\"testimonial_slider\";i:8;s:10:\"accordions\";}'),(187723,40718,'_blocks','field_6176696113096'),(187724,40718,'blocks_0_acfe_flexible_toggle',''),(187725,40718,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(187726,40718,'blocks_0_acfe_flexible_layout_title','Steps'),(187727,40718,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(187728,40718,'blocks_0_row_content_title',''),(187729,40718,'_blocks_0_row_content_title','field_64888cd1e26e0'),(187730,40718,'blocks_0_row_content_heading','Benefits of training with us'),(187731,40718,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(187732,40718,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(187733,40718,'_blocks_0_row_content_text','field_64888ce2e26e2'),(187734,40718,'blocks_0_row_content_actions',''),(187735,40718,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(187736,40718,'blocks_0_row_content',''),(187737,40718,'_blocks_0_row_content','field_64888cb0e26df'),(187738,40718,'blocks_0_steps_0_icon','progression.svg'),(187739,40718,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(187740,40718,'blocks_0_steps_0_title','Earning Potential'),(187741,40718,'_blocks_0_steps_0_title','field_64888d94e26e7'),(187742,40718,'blocks_0_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(187743,40718,'_blocks_0_steps_0_text','field_64888d99e26e8'),(187744,40718,'blocks_0_steps_1_icon','support.svg'),(187745,40718,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(187746,40718,'blocks_0_steps_1_title','Lifetime Learning Promise'),(187747,40718,'_blocks_0_steps_1_title','field_64888d94e26e7'),(187748,40718,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(187749,40718,'_blocks_0_steps_1_text','field_64888d99e26e8'),(187750,40718,'blocks_0_steps_2_icon','qualification.svg'),(187751,40718,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(187752,40718,'blocks_0_steps_2_title','Evidence Based Hands on Learning'),(187753,40718,'_blocks_0_steps_2_title','field_64888d94e26e7'),(187754,40718,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(187755,40718,'_blocks_0_steps_2_text','field_64888d99e26e8'),(187756,40718,'blocks_0_steps_3_icon','leaders.svg'),(187757,40718,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(187758,40718,'blocks_0_steps_3_title','Stand Out From the Crowd'),(187759,40718,'_blocks_0_steps_3_title','field_64888d94e26e7'),(187760,40718,'blocks_0_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(187761,40718,'_blocks_0_steps_3_text','field_64888d99e26e8'),(187762,40718,'blocks_0_steps','4'),(187763,40718,'_blocks_0_steps','field_64888d44e26e5'),(187764,40718,'blocks_1_acfe_flexible_toggle',''),(187765,40718,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(187766,40718,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(187767,40718,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(187768,40718,'blocks_1_options_theme','#ffffff'),(187769,40718,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(187770,40718,'blocks_1_options_reverse','0'),(187771,40718,'_blocks_1_options_reverse','field_61768049bb8ac'),(187772,40718,'blocks_1_options',''),(187773,40718,'_blocks_1_options','field_617682517c334'),(187774,40718,'blocks_1_split_5050_image','39617'),(187775,40718,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(187776,40718,'blocks_1_split_5050_video',''),(187777,40718,'_blocks_1_split_5050_video','field_6239f3160848a'),(187778,40718,'blocks_1_split_5050_content_title',''),(187779,40718,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(187780,40718,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(187781,40718,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(187782,40718,'blocks_1_split_5050_content_text','This integrated system is enabling podiatrists to find solutions to foot problems through understanding the upper body and shoulders. By assessing the entire body, this unique approach gives podiatrists the ability to retain clients longer and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(187783,40718,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(187784,40718,'blocks_1_split_5050_content_actions',''),(187785,40718,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(187786,40718,'blocks_1_split_5050_content',''),(187787,40718,'_blocks_1_split_5050_content','field_61767afceb8ba'),(187788,40718,'blocks_2_acfe_flexible_toggle',''),(187789,40718,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(187790,40718,'blocks_2_acfe_flexible_layout_title','Form'),(187791,40718,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(187792,40718,'blocks_2_row_content_format','standard'),(187793,40718,'_blocks_2_row_content_format','field_6481ead962881'),(187794,40718,'blocks_2_row_content_title',''),(187795,40718,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(187796,40718,'blocks_2_row_content_heading','Enquire Today'),(187797,40718,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(187798,40718,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(187799,40718,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(187800,40718,'blocks_2_row_content_actions',''),(187801,40718,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(187802,40718,'blocks_2_row_content',''),(187803,40718,'_blocks_2_row_content','field_61a0f5f5b3db0'),(187804,40718,'blocks_2_row_form','40394'),(187805,40718,'_blocks_2_row_form','field_61a4ff2c0b08e'),(187806,40718,'blocks_2_row_form_button_label',''),(187807,40718,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(187808,40718,'blocks_3_acfe_flexible_toggle',''),(187809,40718,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(187810,40718,'blocks_3_acfe_flexible_layout_title','Tabs'),(187811,40718,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(187812,40718,'blocks_3_options_theme','#ffffff'),(187813,40718,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(187814,40718,'blocks_3_options',''),(187815,40718,'_blocks_3_options','field_6177cfcd8140f'),(187816,40718,'blocks_3_tabs_0_tab_label','What will I learn?'),(187817,40718,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(187818,40718,'blocks_3_tabs_0_tab_content_title',''),(187819,40718,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(187820,40718,'blocks_3_tabs_0_tab_content_heading','What you’ll learn'),(187821,40718,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(187822,40718,'blocks_3_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(187823,40718,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(187824,40718,'blocks_3_tabs_0_tab_content_actions',''),(187825,40718,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(187826,40718,'blocks_3_tabs_0_tab_content',''),(187827,40718,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(187828,40718,'blocks_3_tabs_0_tab_image','39076'),(187829,40718,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(187830,40718,'blocks_3_tabs_1_tab_label','What do I need?'),(187831,40718,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(187832,40718,'blocks_3_tabs_1_tab_content_title',''),(187833,40718,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(187834,40718,'blocks_3_tabs_1_tab_content_heading','Entry requirements'),(187835,40718,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(187836,40718,'blocks_3_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(187837,40718,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(187838,40718,'blocks_3_tabs_1_tab_content_actions',''),(187839,40718,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(187840,40718,'blocks_3_tabs_1_tab_content',''),(187841,40718,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(187842,40718,'blocks_3_tabs_1_tab_image','39223'),(187843,40718,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(187844,40718,'blocks_3_tabs_2_tab_label','Where can I learn?'),(187845,40718,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(187846,40718,'blocks_3_tabs_2_tab_content_title',''),(187847,40718,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(187848,40718,'blocks_3_tabs_2_tab_content_heading','Locations'),(187849,40718,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(187850,40718,'blocks_3_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(187851,40718,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(187852,40718,'blocks_3_tabs_2_tab_content_actions',''),(187853,40718,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(187854,40718,'blocks_3_tabs_2_tab_content',''),(187855,40718,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(187856,40718,'blocks_3_tabs_2_tab_image','39224'),(187857,40718,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(187858,40718,'blocks_3_tabs','3'),(187859,40718,'_blocks_3_tabs','field_6177cff281419'),(187860,40718,'blocks_4_acfe_flexible_toggle',''),(187861,40718,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(187862,40718,'blocks_4_acfe_flexible_layout_title','Text Block'),(187863,40718,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(187864,40718,'blocks_4_options_theme','#b61234'),(187865,40718,'_blocks_4_options_theme','field_6176830e2ad17'),(187866,40718,'blocks_4_options',''),(187867,40718,'_blocks_4_options','field_6176830e2ad16'),(187868,40718,'blocks_4_text_block_heading','Fees & Funding Options'),(187869,40718,'_blocks_4_text_block_heading','field_617669d413097'),(187870,40718,'blocks_4_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(187871,40718,'_blocks_4_text_block_content','field_617669ec13098'),(187872,40718,'blocks_5_acfe_flexible_toggle',''),(187873,40718,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(187874,40718,'blocks_5_acfe_flexible_layout_title','Icons'),(187875,40718,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(187876,40718,'blocks_5_options_theme','#b61234'),(187877,40718,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(187878,40718,'blocks_5_options_format','row'),(187879,40718,'_blocks_5_options_format','field_64bfde9a90690'),(187880,40718,'blocks_5_options',''),(187881,40718,'_blocks_5_options','field_64bfdd9b90684'),(187882,40718,'blocks_5_icon_row_items_0_icon','payment-plans.svg'),(187883,40718,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(187884,40718,'blocks_5_icon_row_items_0_label','Pay in Full'),(187885,40718,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(187886,40718,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(187887,40718,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(187888,40718,'blocks_5_icon_row_items_1_icon','finance.svg'),(187889,40718,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(187890,40718,'blocks_5_icon_row_items_1_label','0% finance'),(187891,40718,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(187892,40718,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(187893,40718,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(187894,40718,'blocks_5_icon_row_items_2_icon','deposit.svg'),(187895,40718,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(187896,40718,'blocks_5_icon_row_items_2_label','Deposit & balance'),(187897,40718,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(187898,40718,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(187899,40718,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(187900,40718,'blocks_5_icon_row_items','3'),(187901,40718,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(187902,40718,'blocks_6_acfe_flexible_toggle',''),(187903,40718,'_blocks_6_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(187904,40718,'blocks_6_acfe_flexible_layout_title','Standard/Editorial Content'),(187905,40718,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(187906,40718,'blocks_6_content','<h2 style=\"text-align: center;\"><strong>Why Study This Course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(187907,40718,'_blocks_6_content','field_6193c9b5eac84'),(187908,40718,'blocks_7_acfe_flexible_toggle',''),(187909,40718,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(187910,40718,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(187911,40718,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(187912,40718,'blocks_7_testimonial_slider_content_title',''),(187913,40718,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(187914,40718,'blocks_7_testimonial_slider_content_heading','Testimonials'),(187915,40718,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(187916,40718,'blocks_7_testimonial_slider_content_text',''),(187917,40718,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(187918,40718,'blocks_7_testimonial_slider_content_actions',''),(187919,40718,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(187920,40718,'blocks_7_testimonial_slider_content',''),(187921,40718,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(187922,40718,'blocks_7_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(187923,40718,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(187924,40718,'blocks_7_testimonial_slider_ambassador_bool','0'),(187925,40718,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(187926,40718,'blocks_8_acfe_flexible_toggle',''),(187927,40718,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(187928,40718,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(187929,40718,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(187930,40718,'blocks_8_options_theme','#ffffff'),(187931,40718,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(187932,40718,'blocks_8_options_state','0'),(187933,40718,'_blocks_8_options_state','field_6239fcb7508c5'),(187934,40718,'blocks_8_options',''),(187935,40718,'_blocks_8_options','field_6177e2991ac44'),(187936,40718,'blocks_8_content_title',''),(187937,40718,'_blocks_8_content_title','field_64d237e8bb1e2'),(187938,40718,'blocks_8_content_heading','Frequently asked questions '),(187939,40718,'_blocks_8_content_heading','field_64d237e8bb1e3'),(187940,40718,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(187941,40718,'_blocks_8_content_text','field_64d237e8bb1e4'),(187942,40718,'blocks_8_content_actions',''),(187943,40718,'_blocks_8_content_actions','field_64d237e8bb1e5'),(187944,40718,'blocks_8_content_align','left'),(187945,40718,'_blocks_8_content_align','field_64d2443e6b6aa'),(187946,40718,'blocks_8_content',''),(187947,40718,'_blocks_8_content','field_64d237e8bb1e1'),(187948,40718,'blocks_8_accordion_content','faqs'),(187949,40718,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(187950,40718,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(187951,40718,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(187952,40718,'blocks_8_actions',''),(187953,40718,'_blocks_8_actions','field_61a746a817f7a'),(187954,40719,'hide_hero','0'),(187955,40719,'_hide_hero','field_66a2380fcda39'),(187956,40719,'hero_title','Biomechanics and Podiatrists'),(187957,40719,'_hero_title','field_617571fe285e8'),(187958,40719,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(187959,40719,'_hero_text','field_6175723c285e9'),(187960,40719,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(187961,40719,'_hero_actions_0_button','field_61757281285eb'),(187962,40719,'hero_actions','1'),(187963,40719,'_hero_actions','field_61757270285ea'),(187964,40719,'hero_style','default'),(187965,40719,'_hero_style','field_62051d9dc5324'),(187966,40719,'_thumbnail_id','39247'),(187967,40719,'__thumbnail_id','field_617570855ddaf'),(187968,40719,'hero_image_pos_x','right'),(187969,40719,'_hero_image_pos_x','field_62ec3d05390bb'),(187970,40719,'hero_image_pos_y','top'),(187971,40719,'_hero_image_pos_y','field_62ec3d05390bc'),(187972,40719,'hero_image_pos',''),(187973,40719,'_hero_image_pos','field_62ec3d05390ba'),(187974,40719,'fft_hide_from_listings','0'),(187975,40719,'_fft_hide_from_listings','field_61f1320446ab2'),(187976,40719,'fft_page_format','default'),(187977,40719,'_fft_page_format','field_61ae213f1f218'),(187978,40719,'fft_hide_nav','0'),(187979,40719,'_fft_hide_nav','field_635bd5e43527c'),(187980,40719,'fft_hide_header_call_to_action','0'),(187981,40719,'_fft_hide_header_call_to_action','field_635bd6723527d'),(187982,40719,'fft_page_sitemap','0'),(187983,40719,'_fft_page_sitemap','field_61af9b34e8181'),(187984,40719,'blocks','a:9:{i:0;s:5:\"steps\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:4:\"tabs\";i:4;s:10:\"text_block\";i:5;s:5:\"icons\";i:6;s:16:\"standard_content\";i:7;s:18:\"testimonial_slider\";i:8;s:10:\"accordions\";}'),(187985,40719,'_blocks','field_6176696113096'),(187986,40719,'blocks_0_acfe_flexible_toggle',''),(187987,40719,'_blocks_0_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(187988,40719,'blocks_0_acfe_flexible_layout_title','Steps'),(187989,40719,'_blocks_0_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(187990,40719,'blocks_0_row_content_title',''),(187991,40719,'_blocks_0_row_content_title','field_64888cd1e26e0'),(187992,40719,'blocks_0_row_content_heading','Benefits of training with us'),(187993,40719,'_blocks_0_row_content_heading','field_64888cd9e26e1'),(187994,40719,'blocks_0_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(187995,40719,'_blocks_0_row_content_text','field_64888ce2e26e2'),(187996,40719,'blocks_0_row_content_actions',''),(187997,40719,'_blocks_0_row_content_actions','field_64888cf5e26e3'),(187998,40719,'blocks_0_row_content',''),(187999,40719,'_blocks_0_row_content','field_64888cb0e26df'),(188000,40719,'blocks_0_steps_0_icon','progression.svg'),(188001,40719,'_blocks_0_steps_0_icon','field_64888d53e26e6'),(188002,40719,'blocks_0_steps_0_title','Earning Potential'),(188003,40719,'_blocks_0_steps_0_title','field_64888d94e26e7'),(188004,40719,'blocks_0_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(188005,40719,'_blocks_0_steps_0_text','field_64888d99e26e8'),(188006,40719,'blocks_0_steps_1_icon','support.svg'),(188007,40719,'_blocks_0_steps_1_icon','field_64888d53e26e6'),(188008,40719,'blocks_0_steps_1_title','Lifetime Learning Promise'),(188009,40719,'_blocks_0_steps_1_title','field_64888d94e26e7'),(188010,40719,'blocks_0_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(188011,40719,'_blocks_0_steps_1_text','field_64888d99e26e8'),(188012,40719,'blocks_0_steps_2_icon','qualification.svg'),(188013,40719,'_blocks_0_steps_2_icon','field_64888d53e26e6'),(188014,40719,'blocks_0_steps_2_title','Evidence Based Hands on Learning'),(188015,40719,'_blocks_0_steps_2_title','field_64888d94e26e7'),(188016,40719,'blocks_0_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(188017,40719,'_blocks_0_steps_2_text','field_64888d99e26e8'),(188018,40719,'blocks_0_steps_3_icon','leaders.svg'),(188019,40719,'_blocks_0_steps_3_icon','field_64888d53e26e6'),(188020,40719,'blocks_0_steps_3_title','Stand Out From the Crowd'),(188021,40719,'_blocks_0_steps_3_title','field_64888d94e26e7'),(188022,40719,'blocks_0_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(188023,40719,'_blocks_0_steps_3_text','field_64888d99e26e8'),(188024,40719,'blocks_0_steps','4'),(188025,40719,'_blocks_0_steps','field_64888d44e26e5'),(188026,40719,'blocks_1_acfe_flexible_toggle',''),(188027,40719,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(188028,40719,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(188029,40719,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(188030,40719,'blocks_1_options_theme','#ffffff'),(188031,40719,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(188032,40719,'blocks_1_options_reverse','0'),(188033,40719,'_blocks_1_options_reverse','field_61768049bb8ac'),(188034,40719,'blocks_1_options',''),(188035,40719,'_blocks_1_options','field_617682517c334'),(188036,40719,'blocks_1_split_5050_image','39617'),(188037,40719,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(188038,40719,'blocks_1_split_5050_video',''),(188039,40719,'_blocks_1_split_5050_video','field_6239f3160848a'),(188040,40719,'blocks_1_split_5050_content_title',''),(188041,40719,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(188042,40719,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(188043,40719,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(188044,40719,'blocks_1_split_5050_content_text','This integrated system is enabling podiatrists to find solutions to foot problems through understanding the upper body and shoulders. By assessing the entire body, this unique approach gives podiatrists the ability to retain clients longer and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(188045,40719,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(188046,40719,'blocks_1_split_5050_content_actions',''),(188047,40719,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(188048,40719,'blocks_1_split_5050_content',''),(188049,40719,'_blocks_1_split_5050_content','field_61767afceb8ba'),(188050,40719,'blocks_2_acfe_flexible_toggle',''),(188051,40719,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(188052,40719,'blocks_2_acfe_flexible_layout_title','Form'),(188053,40719,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(188054,40719,'blocks_2_row_content_format','standard'),(188055,40719,'_blocks_2_row_content_format','field_6481ead962881'),(188056,40719,'blocks_2_row_content_title',''),(188057,40719,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(188058,40719,'blocks_2_row_content_heading','Enquire Today'),(188059,40719,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(188060,40719,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(188061,40719,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(188062,40719,'blocks_2_row_content_actions',''),(188063,40719,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(188064,40719,'blocks_2_row_content',''),(188065,40719,'_blocks_2_row_content','field_61a0f5f5b3db0'),(188066,40719,'blocks_2_row_form','40394'),(188067,40719,'_blocks_2_row_form','field_61a4ff2c0b08e'),(188068,40719,'blocks_2_row_form_button_label',''),(188069,40719,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(188070,40719,'blocks_3_acfe_flexible_toggle',''),(188071,40719,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(188072,40719,'blocks_3_acfe_flexible_layout_title','Tabs'),(188073,40719,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(188074,40719,'blocks_3_options_theme','#ffffff'),(188075,40719,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(188076,40719,'blocks_3_options',''),(188077,40719,'_blocks_3_options','field_6177cfcd8140f'),(188078,40719,'blocks_3_tabs_0_tab_label','What will I learn?'),(188079,40719,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(188080,40719,'blocks_3_tabs_0_tab_content_title',''),(188081,40719,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(188082,40719,'blocks_3_tabs_0_tab_content_heading','What you’ll learn'),(188083,40719,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(188084,40719,'blocks_3_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(188085,40719,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(188086,40719,'blocks_3_tabs_0_tab_content_actions',''),(188087,40719,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(188088,40719,'blocks_3_tabs_0_tab_content',''),(188089,40719,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(188090,40719,'blocks_3_tabs_0_tab_image','39076'),(188091,40719,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(188092,40719,'blocks_3_tabs_1_tab_label','What do I need?'),(188093,40719,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(188094,40719,'blocks_3_tabs_1_tab_content_title',''),(188095,40719,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(188096,40719,'blocks_3_tabs_1_tab_content_heading','Entry requirements'),(188097,40719,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(188098,40719,'blocks_3_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(188099,40719,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(188100,40719,'blocks_3_tabs_1_tab_content_actions',''),(188101,40719,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(188102,40719,'blocks_3_tabs_1_tab_content',''),(188103,40719,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(188104,40719,'blocks_3_tabs_1_tab_image','39223'),(188105,40719,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(188106,40719,'blocks_3_tabs_2_tab_label','Where can I learn?'),(188107,40719,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(188108,40719,'blocks_3_tabs_2_tab_content_title',''),(188109,40719,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(188110,40719,'blocks_3_tabs_2_tab_content_heading','Locations'),(188111,40719,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(188112,40719,'blocks_3_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(188113,40719,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(188114,40719,'blocks_3_tabs_2_tab_content_actions',''),(188115,40719,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(188116,40719,'blocks_3_tabs_2_tab_content',''),(188117,40719,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(188118,40719,'blocks_3_tabs_2_tab_image','39224'),(188119,40719,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(188120,40719,'blocks_3_tabs','3'),(188121,40719,'_blocks_3_tabs','field_6177cff281419'),(188122,40719,'blocks_4_acfe_flexible_toggle',''),(188123,40719,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(188124,40719,'blocks_4_acfe_flexible_layout_title','Text Block'),(188125,40719,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(188126,40719,'blocks_4_options_theme','#b61234'),(188127,40719,'_blocks_4_options_theme','field_6176830e2ad17'),(188128,40719,'blocks_4_options',''),(188129,40719,'_blocks_4_options','field_6176830e2ad16'),(188130,40719,'blocks_4_text_block_heading','Fees & Funding Options'),(188131,40719,'_blocks_4_text_block_heading','field_617669d413097'),(188132,40719,'blocks_4_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(188133,40719,'_blocks_4_text_block_content','field_617669ec13098'),(188134,40719,'blocks_5_acfe_flexible_toggle',''),(188135,40719,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(188136,40719,'blocks_5_acfe_flexible_layout_title','Icons'),(188137,40719,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(188138,40719,'blocks_5_options_theme','#b61234'),(188139,40719,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(188140,40719,'blocks_5_options_format','row'),(188141,40719,'_blocks_5_options_format','field_64bfde9a90690'),(188142,40719,'blocks_5_options',''),(188143,40719,'_blocks_5_options','field_64bfdd9b90684'),(188144,40719,'blocks_5_icon_row_items_0_icon','payment-plans.svg'),(188145,40719,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(188146,40719,'blocks_5_icon_row_items_0_label','Pay in Full'),(188147,40719,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(188148,40719,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(188149,40719,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(188150,40719,'blocks_5_icon_row_items_1_icon','finance.svg'),(188151,40719,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(188152,40719,'blocks_5_icon_row_items_1_label','0% finance'),(188153,40719,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(188154,40719,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(188155,40719,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(188156,40719,'blocks_5_icon_row_items_2_icon','deposit.svg'),(188157,40719,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(188158,40719,'blocks_5_icon_row_items_2_label','Deposit & balance'),(188159,40719,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(188160,40719,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(188161,40719,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(188162,40719,'blocks_5_icon_row_items','3'),(188163,40719,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(188164,40719,'blocks_6_acfe_flexible_toggle',''),(188165,40719,'_blocks_6_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(188166,40719,'blocks_6_acfe_flexible_layout_title','Standard/Editorial Content'),(188167,40719,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(188168,40719,'blocks_6_content','<h2 style=\"text-align: center;\"><strong>Why Study This Course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(188169,40719,'_blocks_6_content','field_6193c9b5eac84'),(188170,40719,'blocks_7_acfe_flexible_toggle',''),(188171,40719,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(188172,40719,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(188173,40719,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(188174,40719,'blocks_7_testimonial_slider_content_title',''),(188175,40719,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(188176,40719,'blocks_7_testimonial_slider_content_heading','Testimonials'),(188177,40719,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(188178,40719,'blocks_7_testimonial_slider_content_text',''),(188179,40719,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(188180,40719,'blocks_7_testimonial_slider_content_actions',''),(188181,40719,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(188182,40719,'blocks_7_testimonial_slider_content',''),(188183,40719,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(188184,40719,'blocks_7_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(188185,40719,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(188186,40719,'blocks_7_testimonial_slider_ambassador_bool','0'),(188187,40719,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(188188,40719,'blocks_8_acfe_flexible_toggle',''),(188189,40719,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(188190,40719,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(188191,40719,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(188192,40719,'blocks_8_options_theme','#ffffff'),(188193,40719,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(188194,40719,'blocks_8_options_state','0'),(188195,40719,'_blocks_8_options_state','field_6239fcb7508c5'),(188196,40719,'blocks_8_options',''),(188197,40719,'_blocks_8_options','field_6177e2991ac44'),(188198,40719,'blocks_8_content_title',''),(188199,40719,'_blocks_8_content_title','field_64d237e8bb1e2'),(188200,40719,'blocks_8_content_heading','Frequently asked questions '),(188201,40719,'_blocks_8_content_heading','field_64d237e8bb1e3'),(188202,40719,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(188203,40719,'_blocks_8_content_text','field_64d237e8bb1e4'),(188204,40719,'blocks_8_content_actions',''),(188205,40719,'_blocks_8_content_actions','field_64d237e8bb1e5'),(188206,40719,'blocks_8_content_align','left'),(188207,40719,'_blocks_8_content_align','field_64d2443e6b6aa'),(188208,40719,'blocks_8_content',''),(188209,40719,'_blocks_8_content','field_64d237e8bb1e1'),(188210,40719,'blocks_8_accordion_content','faqs'),(188211,40719,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(188212,40719,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(188213,40719,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(188214,40719,'blocks_8_actions',''),(188215,40719,'_blocks_8_actions','field_61a746a817f7a'),(188294,40721,'hide_hero','0'),(188295,40721,'_hide_hero','field_66a2380fcda39'),(188296,40721,'hero_title','Thank you!'),(188297,40721,'_hero_title','field_617571fe285e8'),(188298,40721,'hero_text','Your digital price guide has been sent directly to your email inbox, but if you can\'t wait to get your hands on it you can access your guide straight away below!'),(188299,40721,'_hero_text','field_6175723c285e9'),(188300,40721,'hero_actions','1'),(188301,40721,'_hero_actions','field_61757270285ea'),(188302,40721,'hero_style','default'),(188303,40721,'_hero_style','field_62051d9dc5324'),(188304,40721,'hero_image_pos_x','right'),(188305,40721,'_hero_image_pos_x','field_62ec3d05390bb'),(188306,40721,'hero_image_pos_y','top'),(188307,40721,'_hero_image_pos_y','field_62ec3d05390bc'),(188308,40721,'hero_image_pos',''),(188309,40721,'_hero_image_pos','field_62ec3d05390ba'),(188310,40721,'fft_hide_from_listings','0'),(188311,40721,'_fft_hide_from_listings','field_61f1320446ab2'),(188312,40721,'fft_page_format','default'),(188313,40721,'_fft_page_format','field_61ae213f1f218'),(188314,40721,'fft_hide_nav','0'),(188315,40721,'_fft_hide_nav','field_635bd5e43527c'),(188316,40721,'fft_hide_header_call_to_action','0'),(188317,40721,'_fft_hide_header_call_to_action','field_635bd6723527d'),(188318,40721,'fft_page_sitemap','0'),(188319,40721,'_fft_page_sitemap','field_61af9b34e8181'),(188320,40721,'blocks','a:2:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";}'),(188321,40721,'_blocks','field_6176696113096'),(188322,40721,'hero_actions_0_button','a:3:{s:5:\"title\";s:14:\"Get Your Guide\";s:3:\"url\";s:12:\"#row-40321-2\";s:6:\"target\";s:0:\"\";}'),(188323,40721,'_hero_actions_0_button','field_61757281285eb'),(188324,40721,'blocks_0_acfe_flexible_toggle',''),(188325,40721,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(188326,40721,'blocks_0_acfe_flexible_layout_title','Form'),(188327,40721,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(188328,40721,'blocks_0_row_content_format','standard'),(188329,40721,'_blocks_0_row_content_format','field_6481ead962881'),(188330,40721,'blocks_0_row_content_title','psst'),(188331,40721,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(188332,40721,'blocks_0_row_content_heading','Can we trouble you for a few more details? '),(188333,40721,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(188334,40721,'blocks_0_row_content_text','We want to make sure your experience with us is as relevant and supportive as it can possibly be, so we would love to learn a bit more about you.\r\n\r\nWe promise it won\'t take more than 1.5 minutes and we won\'t share this information with anyone else.'),(188335,40721,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(188336,40721,'blocks_0_row_content_actions',''),(188337,40721,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(188338,40721,'blocks_0_row_content',''),(188339,40721,'_blocks_0_row_content','field_61a0f5f5b3db0'),(188340,40721,'blocks_0_row_form','40410'),(188341,40721,'_blocks_0_row_form','field_61a4ff2c0b08e'),(188342,40721,'blocks_0_row_form_button_label','Next'),(188343,40721,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(188344,40721,'blocks_1_acfe_flexible_toggle',''),(188345,40721,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(188346,40721,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(188347,40721,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(188348,40721,'blocks_1_options_theme','#ffffff'),(188349,40721,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(188350,40721,'blocks_1_options_reverse','0'),(188351,40721,'_blocks_1_options_reverse','field_61768049bb8ac'),(188352,40721,'blocks_1_options',''),(188353,40721,'_blocks_1_options','field_617682517c334'),(188354,40721,'blocks_1_split_5050_image',''),(188355,40721,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(188356,40721,'blocks_1_split_5050_video','https://www.youtube.com/watch?v=xgRiAj1qEog&t=1s'),(188357,40721,'_blocks_1_split_5050_video','field_6239f3160848a'),(188358,40721,'blocks_1_split_5050_content_title',''),(188359,40721,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(188360,40721,'blocks_1_split_5050_content_heading','Congratulations!'),(188361,40721,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(188362,40721,'blocks_1_split_5050_content_text','We will be in touch to discuss your enquiry shortly.\r\n\r\nBut first, the founder, Rachel Frances Thomson would like to welcome you to Biomechanics Education in this short video.'),(188363,40721,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(188364,40721,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:16:\"OPEN PRICE GUIDE\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(188365,40721,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(188366,40721,'blocks_1_split_5050_content_actions','1'),(188367,40721,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(188368,40721,'blocks_1_split_5050_content',''),(188369,40721,'_blocks_1_split_5050_content','field_61767afceb8ba'),(188370,40721,'_thumbnail_id','39186'),(188371,40721,'__thumbnail_id','field_617570855ddaf'),(188372,39245,'blocks_0_acfe_flexible_toggle',''),(188373,39245,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(188374,39245,'blocks_0_acfe_flexible_layout_title','Template'),(188375,39245,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(188376,39245,'blocks_0_template','39087'),(188377,39245,'_blocks_0_template','field_617bdd570fe01'),(188378,39245,'blocks_1_acfe_flexible_toggle',''),(188379,39245,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(188380,39245,'blocks_1_acfe_flexible_layout_title','Steps'),(188381,39245,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(188382,39245,'blocks_1_row_content_title',''),(188383,39245,'_blocks_1_row_content_title','field_64888cd1e26e0'),(188384,39245,'blocks_1_row_content_heading','Benefits of training with us'),(188385,39245,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(188386,39245,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(188387,39245,'_blocks_1_row_content_text','field_64888ce2e26e2'),(188388,39245,'blocks_1_row_content_actions',''),(188389,39245,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(188390,39245,'blocks_1_row_content',''),(188391,39245,'_blocks_1_row_content','field_64888cb0e26df'),(188392,39245,'blocks_1_steps_0_icon','progression.svg'),(188393,39245,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(188394,39245,'blocks_1_steps_0_title','Earning Potential'),(188395,39245,'_blocks_1_steps_0_title','field_64888d94e26e7'),(188396,39245,'blocks_1_steps_0_text','Attract new clients, retain current ones, and increase your rates with the Diploma in Biomechanics Coaching. This programme gives you a system to reach new clients and work more effectively with existing ones. Full body screenings may also require extra sessions, providing clients with thorough support and helping you build stronger, long-term relationships.'),(188397,39245,'_blocks_1_steps_0_text','field_64888d99e26e8'),(188398,39245,'blocks_1_steps_1_icon','support.svg'),(188399,39245,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(188400,39245,'blocks_1_steps_1_title','Lifetime Learning Promise'),(188401,39245,'_blocks_1_steps_1_title','field_64888d94e26e7'),(188402,39245,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(188403,39245,'_blocks_1_steps_1_text','field_64888d99e26e8'),(188404,39245,'blocks_1_steps_2_icon','qualification.svg'),(188405,39245,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(188406,39245,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(188407,39245,'_blocks_1_steps_2_title','field_64888d94e26e7'),(188408,39245,'blocks_1_steps_2_text','Developed through over 20 years of research with 4,000 participants - from those recovering from injury to active individuals - is a comprehensive, evidence-backed programme for mastering movement assessments. Through a blend of online learning and hands-on workshops, you’ll learn specific tests and screens to understand the roles of the pelvis, spine, and upper body in lower limb function, particularly foot mechanics. This approach equips you with the insights needed for effective orthotic prescription and tailored movement strategies, helping you optimise outcomes for every client.'),(188409,39245,'_blocks_1_steps_2_text','field_64888d99e26e8'),(188410,39245,'blocks_1_steps_3_icon','leaders.svg'),(188411,39245,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(188412,39245,'blocks_1_steps_3_title','Stand Out From the Crowd'),(188413,39245,'_blocks_1_steps_3_title','field_64888d94e26e7'),(188414,39245,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(188415,39245,'_blocks_1_steps_3_text','field_64888d99e26e8'),(188416,39245,'blocks_1_steps','4'),(188417,39245,'_blocks_1_steps','field_64888d44e26e5'),(188418,39245,'blocks_3_acfe_flexible_toggle',''),(188419,39245,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(188420,39245,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(188421,39245,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(188422,39245,'blocks_3_options_theme','#ffffff'),(188423,39245,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(188424,39245,'blocks_3_options_reverse','0'),(188425,39245,'_blocks_3_options_reverse','field_61768049bb8ac'),(188426,39245,'blocks_3_options',''),(188427,39245,'_blocks_3_options','field_617682517c334'),(188428,39245,'blocks_3_split_5050_image','39617'),(188429,39245,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(188430,39245,'blocks_3_split_5050_video',''),(188431,39245,'_blocks_3_split_5050_video','field_6239f3160848a'),(188432,39245,'blocks_3_split_5050_content_title',''),(188433,39245,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(188434,39245,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(188435,39245,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(188436,39245,'blocks_3_split_5050_content_text','This integrated system offers a full-body approach, covering the pelvis, spine, shoulders, knees, and feet in a comprehensive biomechanical assessment programme. By understanding how the upper body affects lower limb mechanics, podiatrists can address foot issues with a more holistic perspective. This unique assessment method enables you to uncover connections and solutions that traditional approaches may overlook, helping to improve client retention and build trust over time.\r\n\r\nOur model promotes a prevention-focused, system-led approach rather than just responding to symptoms. This proactive method allows you to expand your client base while reducing risks through exercise prescription, supporting clients before, during, and after injuries. It also empowers you with exercise prescription skills that complement your existing expertise, allowing for informed orthotic prescriptions and an integrated care approach to foot health.'),(188437,39245,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(188438,39245,'blocks_3_split_5050_content_actions',''),(188439,39245,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(188440,39245,'blocks_3_split_5050_content',''),(188441,39245,'_blocks_3_split_5050_content','field_61767afceb8ba'),(188588,40722,'hide_hero','0'),(188589,40722,'_hide_hero','field_66a2380fcda39'),(188590,40722,'hero_title','Biomechanics and Podiatrists'),(188591,40722,'_hero_title','field_617571fe285e8'),(188592,40722,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(188593,40722,'_hero_text','field_6175723c285e9'),(188594,40722,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(188595,40722,'_hero_actions_0_button','field_61757281285eb'),(188596,40722,'hero_actions','1'),(188597,40722,'_hero_actions','field_61757270285ea'),(188598,40722,'hero_style','default'),(188599,40722,'_hero_style','field_62051d9dc5324'),(188600,40722,'_thumbnail_id','39247'),(188601,40722,'__thumbnail_id','field_617570855ddaf'),(188602,40722,'hero_image_pos_x','right'),(188603,40722,'_hero_image_pos_x','field_62ec3d05390bb'),(188604,40722,'hero_image_pos_y','top'),(188605,40722,'_hero_image_pos_y','field_62ec3d05390bc'),(188606,40722,'hero_image_pos',''),(188607,40722,'_hero_image_pos','field_62ec3d05390ba'),(188608,40722,'fft_hide_from_listings','0'),(188609,40722,'_fft_hide_from_listings','field_61f1320446ab2'),(188610,40722,'fft_page_format','default'),(188611,40722,'_fft_page_format','field_61ae213f1f218'),(188612,40722,'fft_hide_nav','0'),(188613,40722,'_fft_hide_nav','field_635bd5e43527c'),(188614,40722,'fft_hide_header_call_to_action','0'),(188615,40722,'_fft_hide_header_call_to_action','field_635bd6723527d'),(188616,40722,'fft_page_sitemap','0'),(188617,40722,'_fft_page_sitemap','field_61af9b34e8181'),(188618,40722,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:16:\"standard_content\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(188619,40722,'_blocks','field_6176696113096'),(188620,40722,'blocks_2_acfe_flexible_toggle',''),(188621,40722,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(188622,40722,'blocks_2_acfe_flexible_layout_title','Form'),(188623,40722,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(188624,40722,'blocks_2_row_content_format','standard'),(188625,40722,'_blocks_2_row_content_format','field_6481ead962881'),(188626,40722,'blocks_2_row_content_title',''),(188627,40722,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(188628,40722,'blocks_2_row_content_heading','Enquire Today'),(188629,40722,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(188630,40722,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(188631,40722,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(188632,40722,'blocks_2_row_content_actions',''),(188633,40722,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(188634,40722,'blocks_2_row_content',''),(188635,40722,'_blocks_2_row_content','field_61a0f5f5b3db0'),(188636,40722,'blocks_2_row_form','40394'),(188637,40722,'_blocks_2_row_form','field_61a4ff2c0b08e'),(188638,40722,'blocks_2_row_form_button_label',''),(188639,40722,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(188640,40722,'blocks_0_acfe_flexible_toggle',''),(188641,40722,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(188642,40722,'blocks_0_acfe_flexible_layout_title','Template'),(188643,40722,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(188644,40722,'blocks_0_template','39087'),(188645,40722,'_blocks_0_template','field_617bdd570fe01'),(188646,40722,'blocks_1_acfe_flexible_toggle',''),(188647,40722,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(188648,40722,'blocks_1_acfe_flexible_layout_title','Steps'),(188649,40722,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(188650,40722,'blocks_1_row_content_title',''),(188651,40722,'_blocks_1_row_content_title','field_64888cd1e26e0'),(188652,40722,'blocks_1_row_content_heading','Benefits of training with us'),(188653,40722,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(188654,40722,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(188655,40722,'_blocks_1_row_content_text','field_64888ce2e26e2'),(188656,40722,'blocks_1_row_content_actions',''),(188657,40722,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(188658,40722,'blocks_1_row_content',''),(188659,40722,'_blocks_1_row_content','field_64888cb0e26df'),(188660,40722,'blocks_1_steps_0_icon','progression.svg'),(188661,40722,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(188662,40722,'blocks_1_steps_0_title','Earning Potential'),(188663,40722,'_blocks_1_steps_0_title','field_64888d94e26e7'),(188664,40722,'blocks_1_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(188665,40722,'_blocks_1_steps_0_text','field_64888d99e26e8'),(188666,40722,'blocks_1_steps_1_icon','support.svg'),(188667,40722,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(188668,40722,'blocks_1_steps_1_title','Lifetime Learning Promise'),(188669,40722,'_blocks_1_steps_1_title','field_64888d94e26e7'),(188670,40722,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(188671,40722,'_blocks_1_steps_1_text','field_64888d99e26e8'),(188672,40722,'blocks_1_steps_2_icon','qualification.svg'),(188673,40722,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(188674,40722,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(188675,40722,'_blocks_1_steps_2_title','field_64888d94e26e7'),(188676,40722,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(188677,40722,'_blocks_1_steps_2_text','field_64888d99e26e8'),(188678,40722,'blocks_1_steps_3_icon','leaders.svg'),(188679,40722,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(188680,40722,'blocks_1_steps_3_title','Stand Out From the Crowd'),(188681,40722,'_blocks_1_steps_3_title','field_64888d94e26e7'),(188682,40722,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(188683,40722,'_blocks_1_steps_3_text','field_64888d99e26e8'),(188684,40722,'blocks_1_steps','4'),(188685,40722,'_blocks_1_steps','field_64888d44e26e5'),(188686,40722,'blocks_3_acfe_flexible_toggle',''),(188687,40722,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(188688,40722,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(188689,40722,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(188690,40722,'blocks_3_options_theme','#ffffff'),(188691,40722,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(188692,40722,'blocks_3_options_reverse','0'),(188693,40722,'_blocks_3_options_reverse','field_61768049bb8ac'),(188694,40722,'blocks_3_options',''),(188695,40722,'_blocks_3_options','field_617682517c334'),(188696,40722,'blocks_3_split_5050_image','39617'),(188697,40722,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(188698,40722,'blocks_3_split_5050_video',''),(188699,40722,'_blocks_3_split_5050_video','field_6239f3160848a'),(188700,40722,'blocks_3_split_5050_content_title',''),(188701,40722,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(188702,40722,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(188703,40722,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(188704,40722,'blocks_3_split_5050_content_text','This integrated system is enabling podiatrists to find solutions to foot problems through understanding the upper body and shoulders. By assessing the entire body, this unique approach gives podiatrists the ability to retain clients longer and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(188705,40722,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(188706,40722,'blocks_3_split_5050_content_actions',''),(188707,40722,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(188708,40722,'blocks_3_split_5050_content',''),(188709,40722,'_blocks_3_split_5050_content','field_61767afceb8ba'),(188710,40722,'blocks_4_acfe_flexible_toggle',''),(188711,40722,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(188712,40722,'blocks_4_acfe_flexible_layout_title','Tabs'),(188713,40722,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(188714,40722,'blocks_4_options_theme','#ffffff'),(188715,40722,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(188716,40722,'blocks_4_options',''),(188717,40722,'_blocks_4_options','field_6177cfcd8140f'),(188718,40722,'blocks_4_tabs_0_tab_label','What will I learn?'),(188719,40722,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(188720,40722,'blocks_4_tabs_0_tab_content_title',''),(188721,40722,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(188722,40722,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(188723,40722,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(188724,40722,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(188725,40722,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(188726,40722,'blocks_4_tabs_0_tab_content_actions',''),(188727,40722,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(188728,40722,'blocks_4_tabs_0_tab_content',''),(188729,40722,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(188730,40722,'blocks_4_tabs_0_tab_image','39076'),(188731,40722,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(188732,40722,'blocks_4_tabs_1_tab_label','What do I need?'),(188733,40722,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(188734,40722,'blocks_4_tabs_1_tab_content_title',''),(188735,40722,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(188736,40722,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(188737,40722,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(188738,40722,'blocks_4_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(188739,40722,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(188740,40722,'blocks_4_tabs_1_tab_content_actions',''),(188741,40722,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(188742,40722,'blocks_4_tabs_1_tab_content',''),(188743,40722,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(188744,40722,'blocks_4_tabs_1_tab_image','39223'),(188745,40722,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(188746,40722,'blocks_4_tabs_2_tab_label','Where can I learn?'),(188747,40722,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(188748,40722,'blocks_4_tabs_2_tab_content_title',''),(188749,40722,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(188750,40722,'blocks_4_tabs_2_tab_content_heading','Locations'),(188751,40722,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(188752,40722,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(188753,40722,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(188754,40722,'blocks_4_tabs_2_tab_content_actions',''),(188755,40722,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(188756,40722,'blocks_4_tabs_2_tab_content',''),(188757,40722,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(188758,40722,'blocks_4_tabs_2_tab_image','39224'),(188759,40722,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(188760,40722,'blocks_4_tabs','3'),(188761,40722,'_blocks_4_tabs','field_6177cff281419'),(188762,40722,'blocks_5_acfe_flexible_toggle',''),(188763,40722,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(188764,40722,'blocks_5_acfe_flexible_layout_title','Text Block'),(188765,40722,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(188766,40722,'blocks_5_options_theme','#b61234'),(188767,40722,'_blocks_5_options_theme','field_6176830e2ad17'),(188768,40722,'blocks_5_options',''),(188769,40722,'_blocks_5_options','field_6176830e2ad16'),(188770,40722,'blocks_5_text_block_heading','Fees & Funding Options'),(188771,40722,'_blocks_5_text_block_heading','field_617669d413097'),(188772,40722,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(188773,40722,'_blocks_5_text_block_content','field_617669ec13098'),(188774,40722,'blocks_6_acfe_flexible_toggle',''),(188775,40722,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(188776,40722,'blocks_6_acfe_flexible_layout_title','Icons'),(188777,40722,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(188778,40722,'blocks_6_options_theme','#b61234'),(188779,40722,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(188780,40722,'blocks_6_options_format','row'),(188781,40722,'_blocks_6_options_format','field_64bfde9a90690'),(188782,40722,'blocks_6_options',''),(188783,40722,'_blocks_6_options','field_64bfdd9b90684'),(188784,40722,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(188785,40722,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(188786,40722,'blocks_6_icon_row_items_0_label','Pay in Full'),(188787,40722,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(188788,40722,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(188789,40722,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(188790,40722,'blocks_6_icon_row_items_1_icon','finance.svg'),(188791,40722,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(188792,40722,'blocks_6_icon_row_items_1_label','0% finance'),(188793,40722,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(188794,40722,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(188795,40722,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(188796,40722,'blocks_6_icon_row_items_2_icon','deposit.svg'),(188797,40722,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(188798,40722,'blocks_6_icon_row_items_2_label','Deposit & balance'),(188799,40722,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(188800,40722,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(188801,40722,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(188802,40722,'blocks_6_icon_row_items','3'),(188803,40722,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(188804,40722,'blocks_7_acfe_flexible_toggle',''),(188805,40722,'_blocks_7_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(188806,40722,'blocks_7_acfe_flexible_layout_title','Standard/Editorial Content'),(188807,40722,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(188808,40722,'blocks_7_content','<h2 style=\"text-align: center;\"><strong>Why Study This Course?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(188809,40722,'_blocks_7_content','field_6193c9b5eac84'),(188810,40722,'blocks_8_acfe_flexible_toggle',''),(188811,40722,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(188812,40722,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(188813,40722,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(188814,40722,'blocks_8_testimonial_slider_content_title',''),(188815,40722,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(188816,40722,'blocks_8_testimonial_slider_content_heading','Testimonials'),(188817,40722,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(188818,40722,'blocks_8_testimonial_slider_content_text',''),(188819,40722,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(188820,40722,'blocks_8_testimonial_slider_content_actions',''),(188821,40722,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(188822,40722,'blocks_8_testimonial_slider_content',''),(188823,40722,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(188824,40722,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(188825,40722,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(188826,40722,'blocks_8_testimonial_slider_ambassador_bool','0'),(188827,40722,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(188828,40722,'blocks_9_acfe_flexible_toggle',''),(188829,40722,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(188830,40722,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(188831,40722,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(188832,40722,'blocks_9_options_theme','#ffffff'),(188833,40722,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(188834,40722,'blocks_9_options_state','0'),(188835,40722,'_blocks_9_options_state','field_6239fcb7508c5'),(188836,40722,'blocks_9_options',''),(188837,40722,'_blocks_9_options','field_6177e2991ac44'),(188838,40722,'blocks_9_content_title',''),(188839,40722,'_blocks_9_content_title','field_64d237e8bb1e2'),(188840,40722,'blocks_9_content_heading','Frequently asked questions '),(188841,40722,'_blocks_9_content_heading','field_64d237e8bb1e3'),(188842,40722,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(188843,40722,'_blocks_9_content_text','field_64d237e8bb1e4'),(188844,40722,'blocks_9_content_actions',''),(188845,40722,'_blocks_9_content_actions','field_64d237e8bb1e5'),(188846,40722,'blocks_9_content_align','left'),(188847,40722,'_blocks_9_content_align','field_64d2443e6b6aa'),(188848,40722,'blocks_9_content',''),(188849,40722,'_blocks_9_content','field_64d237e8bb1e1'),(188850,40722,'blocks_9_accordion_content','faqs'),(188851,40722,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(188852,40722,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(188853,40722,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(188854,40722,'blocks_9_actions',''),(188855,40722,'_blocks_9_actions','field_61a746a817f7a'),(188856,40723,'hide_hero','0'),(188857,40723,'_hide_hero','field_66a2380fcda39'),(188858,40723,'hero_title','Biomechanics and Pilates'),(188859,40723,'_hero_title','field_617571fe285e8'),(188860,40723,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(188861,40723,'_hero_text','field_6175723c285e9'),(188862,40723,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39231-3\";s:6:\"target\";s:0:\"\";}'),(188863,40723,'_hero_actions_0_button','field_61757281285eb'),(188864,40723,'hero_actions','1'),(188865,40723,'_hero_actions','field_61757270285ea'),(188866,40723,'hero_style','default'),(188867,40723,'_hero_style','field_62051d9dc5324'),(188868,40723,'_thumbnail_id','39243'),(188869,40723,'__thumbnail_id','field_617570855ddaf'),(188870,40723,'hero_image_pos_x','right'),(188871,40723,'_hero_image_pos_x','field_62ec3d05390bb'),(188872,40723,'hero_image_pos_y','top'),(188873,40723,'_hero_image_pos_y','field_62ec3d05390bc'),(188874,40723,'hero_image_pos',''),(188875,40723,'_hero_image_pos','field_62ec3d05390ba'),(188876,40723,'fft_hide_from_listings','0'),(188877,40723,'_fft_hide_from_listings','field_61f1320446ab2'),(188878,40723,'fft_page_format','default'),(188879,40723,'_fft_page_format','field_61ae213f1f218'),(188880,40723,'fft_hide_nav','0'),(188881,40723,'_fft_hide_nav','field_635bd5e43527c'),(188882,40723,'fft_hide_header_call_to_action','0'),(188883,40723,'_fft_hide_header_call_to_action','field_635bd6723527d'),(188884,40723,'fft_page_sitemap','0'),(188885,40723,'_fft_page_sitemap','field_61af9b34e8181'),(188886,40723,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:18:\"testimonial_slider\";}'),(188887,40723,'_blocks','field_6176696113096'),(188888,40723,'blocks_0_acfe_flexible_toggle',''),(188889,40723,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(188890,40723,'blocks_0_acfe_flexible_layout_title','Icons'),(188891,40723,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(188892,40723,'blocks_0_options_theme','#b61234'),(188893,40723,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(188894,40723,'blocks_0_options_format','row'),(188895,40723,'_blocks_0_options_format','field_64bfde9a90690'),(188896,40723,'blocks_0_options',''),(188897,40723,'_blocks_0_options','field_64bfdd9b90684'),(188898,40723,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(188899,40723,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(188900,40723,'blocks_0_icon_row_items_0_label','Accreditation'),(188901,40723,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(188902,40723,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(188903,40723,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(188904,40723,'blocks_0_icon_row_items_1_icon','finance.svg'),(188905,40723,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(188906,40723,'blocks_0_icon_row_items_1_label','Flexible payment options'),(188907,40723,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(188908,40723,'blocks_0_icon_row_items_1_text','Including 0% finance'),(188909,40723,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(188910,40723,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(188911,40723,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(188912,40723,'blocks_0_icon_row_items_2_label','Earning potential'),(188913,40723,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(188914,40723,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(188915,40723,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(188916,40723,'blocks_0_icon_row_items','3'),(188917,40723,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(188918,40723,'blocks_1_acfe_flexible_toggle',''),(188919,40723,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(188920,40723,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(188921,40723,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(188922,40723,'blocks_1_options_theme','#ffffff'),(188923,40723,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(188924,40723,'blocks_1_options_reverse','0'),(188925,40723,'_blocks_1_options_reverse','field_61768049bb8ac'),(188926,40723,'blocks_1_options',''),(188927,40723,'_blocks_1_options','field_617682517c334'),(188928,40723,'blocks_1_split_5050_image','38037'),(188929,40723,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(188930,40723,'blocks_1_split_5050_video',''),(188931,40723,'_blocks_1_split_5050_video','field_6239f3160848a'),(188932,40723,'blocks_1_split_5050_content_title',''),(188933,40723,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(188934,40723,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(188935,40723,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(188936,40723,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(188937,40723,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(188938,40723,'blocks_1_split_5050_content_actions',''),(188939,40723,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(188940,40723,'blocks_1_split_5050_content',''),(188941,40723,'_blocks_1_split_5050_content','field_61767afceb8ba'),(188942,40723,'blocks_2_acfe_flexible_toggle',''),(188943,40723,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(188944,40723,'blocks_2_acfe_flexible_layout_title','Form'),(188945,40723,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(188946,40723,'blocks_2_row_content_format','standard'),(188947,40723,'_blocks_2_row_content_format','field_6481ead962881'),(188948,40723,'blocks_2_row_content_title',''),(188949,40723,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(188950,40723,'blocks_2_row_content_heading','Enquire Today'),(188951,40723,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(188952,40723,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(188953,40723,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(188954,40723,'blocks_2_row_content_actions',''),(188955,40723,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(188956,40723,'blocks_2_row_content',''),(188957,40723,'_blocks_2_row_content','field_61a0f5f5b3db0'),(188958,40723,'blocks_2_row_form','40394'),(188959,40723,'_blocks_2_row_form','field_61a4ff2c0b08e'),(188960,40723,'blocks_2_row_form_button_label',''),(188961,40723,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(188962,40723,'blocks_3_acfe_flexible_toggle',''),(188963,40723,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(188964,40723,'blocks_3_acfe_flexible_layout_title','Video'),(188965,40723,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(188966,40723,'blocks_3_size','large'),(188967,40723,'_blocks_3_size','field_6487038f297c1'),(188968,40723,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(188969,40723,'_blocks_3_row_content_title','field_64870132a865d'),(188970,40723,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(188971,40723,'_blocks_3_row_content_heading','field_64870142a865e'),(188972,40723,'blocks_3_row_content_text',''),(188973,40723,'_blocks_3_row_content_text','field_64870148a865f'),(188974,40723,'blocks_3_row_content',''),(188975,40723,'_blocks_3_row_content','field_6487008ba865c'),(188976,40723,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(188977,40723,'_blocks_3_video_src','field_6193c4a98ec07'),(188978,40723,'blocks_3_video_thumbnail',''),(188979,40723,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(188980,40723,'blocks_4_acfe_flexible_toggle',''),(188981,40723,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(188982,40723,'blocks_4_acfe_flexible_layout_title','Steps'),(188983,40723,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(188984,40723,'blocks_4_row_content_title',''),(188985,40723,'_blocks_4_row_content_title','field_64888cd1e26e0'),(188986,40723,'blocks_4_row_content_heading','Benefits of training with us'),(188987,40723,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(188988,40723,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(188989,40723,'_blocks_4_row_content_text','field_64888ce2e26e2'),(188990,40723,'blocks_4_row_content_actions',''),(188991,40723,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(188992,40723,'blocks_4_row_content',''),(188993,40723,'_blocks_4_row_content','field_64888cb0e26df'),(188994,40723,'blocks_4_steps_0_icon','progression.svg'),(188995,40723,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(188996,40723,'blocks_4_steps_0_title','Earning potential'),(188997,40723,'_blocks_4_steps_0_title','field_64888d94e26e7'),(188998,40723,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(188999,40723,'_blocks_4_steps_0_text','field_64888d99e26e8'),(189000,40723,'blocks_4_steps_1_icon','support.svg'),(189001,40723,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(189002,40723,'blocks_4_steps_1_title','Lifetime Learning Promise'),(189003,40723,'_blocks_4_steps_1_title','field_64888d94e26e7'),(189004,40723,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(189005,40723,'_blocks_4_steps_1_text','field_64888d99e26e8'),(189006,40723,'blocks_4_steps_2_icon','qualification.svg'),(189007,40723,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(189008,40723,'blocks_4_steps_2_title','Evidence based hands on learning'),(189009,40723,'_blocks_4_steps_2_title','field_64888d94e26e7'),(189010,40723,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(189011,40723,'_blocks_4_steps_2_text','field_64888d99e26e8'),(189012,40723,'blocks_4_steps_3_icon','leaders.svg'),(189013,40723,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(189014,40723,'blocks_4_steps_3_title','Stand out from the crowd'),(189015,40723,'_blocks_4_steps_3_title','field_64888d94e26e7'),(189016,40723,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(189017,40723,'_blocks_4_steps_3_text','field_64888d99e26e8'),(189018,40723,'blocks_4_steps','4'),(189019,40723,'_blocks_4_steps','field_64888d44e26e5'),(189020,40723,'blocks_5_acfe_flexible_toggle',''),(189021,40723,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(189022,40723,'blocks_5_acfe_flexible_layout_title','Tabs'),(189023,40723,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(189024,40723,'blocks_5_options_theme','#ffffff'),(189025,40723,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(189026,40723,'blocks_5_options',''),(189027,40723,'_blocks_5_options','field_6177cfcd8140f'),(189028,40723,'blocks_5_tabs_0_tab_label','What will I learn?'),(189029,40723,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(189030,40723,'blocks_5_tabs_0_tab_content_title',''),(189031,40723,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(189032,40723,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(189033,40723,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(189034,40723,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients:\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(189035,40723,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(189036,40723,'blocks_5_tabs_0_tab_content_actions',''),(189037,40723,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(189038,40723,'blocks_5_tabs_0_tab_content',''),(189039,40723,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(189040,40723,'blocks_5_tabs_0_tab_image','39076'),(189041,40723,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(189042,40723,'blocks_5_tabs_1_tab_label','What do I need?'),(189043,40723,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(189044,40723,'blocks_5_tabs_1_tab_content_title',''),(189045,40723,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(189046,40723,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(189047,40723,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(189048,40723,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(189049,40723,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(189050,40723,'blocks_5_tabs_1_tab_content_actions',''),(189051,40723,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(189052,40723,'blocks_5_tabs_1_tab_content',''),(189053,40723,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(189054,40723,'blocks_5_tabs_1_tab_image','40487'),(189055,40723,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(189056,40723,'blocks_5_tabs_2_tab_label','Where can I learn?'),(189057,40723,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(189058,40723,'blocks_5_tabs_2_tab_content_title',''),(189059,40723,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(189060,40723,'blocks_5_tabs_2_tab_content_heading','Locations'),(189061,40723,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(189062,40723,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(189063,40723,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(189064,40723,'blocks_5_tabs_2_tab_content_actions',''),(189065,40723,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(189066,40723,'blocks_5_tabs_2_tab_content',''),(189067,40723,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(189068,40723,'blocks_5_tabs_2_tab_image','39224'),(189069,40723,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(189070,40723,'blocks_5_tabs','3'),(189071,40723,'_blocks_5_tabs','field_6177cff281419'),(189072,40723,'blocks_6_acfe_flexible_toggle',''),(189073,40723,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(189074,40723,'blocks_6_acfe_flexible_layout_title','Text Block'),(189075,40723,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(189076,40723,'blocks_6_options_theme','#b61234'),(189077,40723,'_blocks_6_options_theme','field_6176830e2ad17'),(189078,40723,'blocks_6_options',''),(189079,40723,'_blocks_6_options','field_6176830e2ad16'),(189080,40723,'blocks_6_text_block_heading','Fees & Funding Options'),(189081,40723,'_blocks_6_text_block_heading','field_617669d413097'),(189082,40723,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(189083,40723,'_blocks_6_text_block_content','field_617669ec13098'),(189084,40723,'blocks_8_acfe_flexible_toggle',''),(189085,40723,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(189086,40723,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(189087,40723,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(189088,40723,'blocks_8_options_theme','#ffffff'),(189089,40723,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(189090,40723,'blocks_8_options_reverse','0'),(189091,40723,'_blocks_8_options_reverse','field_61768049bb8ac'),(189092,40723,'blocks_8_options',''),(189093,40723,'_blocks_8_options','field_617682517c334'),(189094,40723,'blocks_8_split_5050_image','40484'),(189095,40723,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(189096,40723,'blocks_8_split_5050_video',''),(189097,40723,'_blocks_8_split_5050_video','field_6239f3160848a'),(189098,40723,'blocks_8_split_5050_content_title',''),(189099,40723,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(189100,40723,'blocks_8_split_5050_content_heading','Why study this course?'),(189101,40723,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(189102,40723,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(189103,40723,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(189104,40723,'blocks_8_split_5050_content_actions',''),(189105,40723,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(189106,40723,'blocks_8_split_5050_content',''),(189107,40723,'_blocks_8_split_5050_content','field_61767afceb8ba'),(189108,40723,'blocks_7_acfe_flexible_toggle',''),(189109,40723,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(189110,40723,'blocks_7_acfe_flexible_layout_title','Icons'),(189111,40723,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(189112,40723,'blocks_7_options_theme','#b61234'),(189113,40723,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(189114,40723,'blocks_7_options_format','row'),(189115,40723,'_blocks_7_options_format','field_64bfde9a90690'),(189116,40723,'blocks_7_options',''),(189117,40723,'_blocks_7_options','field_64bfdd9b90684'),(189118,40723,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(189119,40723,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(189120,40723,'blocks_7_icon_row_items_0_label','Pay in full '),(189121,40723,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(189122,40723,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(189123,40723,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(189124,40723,'blocks_7_icon_row_items_1_icon','finance.svg'),(189125,40723,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(189126,40723,'blocks_7_icon_row_items_1_label','0% finance'),(189127,40723,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(189128,40723,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(189129,40723,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(189130,40723,'blocks_7_icon_row_items_2_icon','deposit.svg'),(189131,40723,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(189132,40723,'blocks_7_icon_row_items_2_label','Deposit & balance'),(189133,40723,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(189134,40723,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(189135,40723,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(189136,40723,'blocks_7_icon_row_items','3'),(189137,40723,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(189138,40723,'blocks_9_acfe_flexible_toggle',''),(189139,40723,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(189140,40723,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(189141,40723,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(189142,40723,'blocks_9_options_theme','#ffffff'),(189143,40723,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(189144,40723,'blocks_9_options_state','0'),(189145,40723,'_blocks_9_options_state','field_6239fcb7508c5'),(189146,40723,'blocks_9_options',''),(189147,40723,'_blocks_9_options','field_6177e2991ac44'),(189148,40723,'blocks_9_content_title',''),(189149,40723,'_blocks_9_content_title','field_64d237e8bb1e2'),(189150,40723,'blocks_9_content_heading','Frequently asked questions '),(189151,40723,'_blocks_9_content_heading','field_64d237e8bb1e3'),(189152,40723,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(189153,40723,'_blocks_9_content_text','field_64d237e8bb1e4'),(189154,40723,'blocks_9_content_actions',''),(189155,40723,'_blocks_9_content_actions','field_64d237e8bb1e5'),(189156,40723,'blocks_9_content_align','left'),(189157,40723,'_blocks_9_content_align','field_64d2443e6b6aa'),(189158,40723,'blocks_9_content',''),(189159,40723,'_blocks_9_content','field_64d237e8bb1e1'),(189160,40723,'blocks_9_accordion_content','faqs'),(189161,40723,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(189162,40723,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(189163,40723,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(189164,40723,'blocks_9_actions',''),(189165,40723,'_blocks_9_actions','field_61a746a817f7a'),(189166,40723,'blocks_10_acfe_flexible_toggle',''),(189167,40723,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(189168,40723,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(189169,40723,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(189170,40723,'blocks_10_testimonial_slider_content_title',''),(189171,40723,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(189172,40723,'blocks_10_testimonial_slider_content_heading','Testimonials'),(189173,40723,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(189174,40723,'blocks_10_testimonial_slider_content_text',''),(189175,40723,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(189176,40723,'blocks_10_testimonial_slider_content_actions',''),(189177,40723,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(189178,40723,'blocks_10_testimonial_slider_content',''),(189179,40723,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(189180,40723,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(189181,40723,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(189182,40723,'blocks_10_testimonial_slider_ambassador_bool','0'),(189183,40723,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(189184,40724,'hide_hero','0'),(189185,40724,'_hide_hero','field_66a2380fcda39'),(189186,40724,'hero_title','Biomechanics and Sports Massage Therapy'),(189187,40724,'_hero_title','field_617571fe285e8'),(189188,40724,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(189189,40724,'_hero_text','field_6175723c285e9'),(189190,40724,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39238-3\";s:6:\"target\";s:0:\"\";}'),(189191,40724,'_hero_actions_0_button','field_61757281285eb'),(189192,40724,'hero_actions','1'),(189193,40724,'_hero_actions','field_61757270285ea'),(189194,40724,'hero_style','default'),(189195,40724,'_hero_style','field_62051d9dc5324'),(189196,40724,'_thumbnail_id','39240'),(189197,40724,'__thumbnail_id','field_617570855ddaf'),(189198,40724,'hero_image_pos_x','right'),(189199,40724,'_hero_image_pos_x','field_62ec3d05390bb'),(189200,40724,'hero_image_pos_y','top'),(189201,40724,'_hero_image_pos_y','field_62ec3d05390bc'),(189202,40724,'hero_image_pos',''),(189203,40724,'_hero_image_pos','field_62ec3d05390ba'),(189204,40724,'fft_hide_from_listings','0'),(189205,40724,'_fft_hide_from_listings','field_61f1320446ab2'),(189206,40724,'fft_page_format','default'),(189207,40724,'_fft_page_format','field_61ae213f1f218'),(189208,40724,'fft_hide_nav','0'),(189209,40724,'_fft_hide_nav','field_635bd5e43527c'),(189210,40724,'fft_hide_header_call_to_action','0'),(189211,40724,'_fft_hide_header_call_to_action','field_635bd6723527d'),(189212,40724,'fft_page_sitemap','0'),(189213,40724,'_fft_page_sitemap','field_61af9b34e8181'),(189214,40724,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(189215,40724,'_blocks','field_6176696113096'),(189216,40724,'blocks_0_acfe_flexible_toggle',''),(189217,40724,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(189218,40724,'blocks_0_acfe_flexible_layout_title','Template'),(189219,40724,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(189220,40724,'blocks_0_template','39087'),(189221,40724,'_blocks_0_template','field_617bdd570fe01'),(189222,40724,'blocks_8_acfe_flexible_toggle','1'),(189223,40724,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(189224,40724,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(189225,40724,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(189226,40724,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(189227,40724,'_blocks_8_content','field_6193c9b5eac84'),(189228,40724,'blocks_9_acfe_flexible_toggle',''),(189229,40724,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(189230,40724,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(189231,40724,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(189232,40724,'blocks_9_testimonial_slider_content_title',''),(189233,40724,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(189234,40724,'blocks_9_testimonial_slider_content_heading','Testimonials'),(189235,40724,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(189236,40724,'blocks_9_testimonial_slider_content_text',''),(189237,40724,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(189238,40724,'blocks_9_testimonial_slider_content_actions',''),(189239,40724,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(189240,40724,'blocks_9_testimonial_slider_content',''),(189241,40724,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(189242,40724,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(189243,40724,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(189244,40724,'blocks_9_testimonial_slider_ambassador_bool','0'),(189245,40724,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(189246,40724,'blocks_10_acfe_flexible_toggle',''),(189247,40724,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(189248,40724,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(189249,40724,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(189250,40724,'blocks_10_options_theme','#ffffff'),(189251,40724,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(189252,40724,'blocks_10_options_state','0'),(189253,40724,'_blocks_10_options_state','field_6239fcb7508c5'),(189254,40724,'blocks_10_options',''),(189255,40724,'_blocks_10_options','field_6177e2991ac44'),(189256,40724,'blocks_10_content_title',''),(189257,40724,'_blocks_10_content_title','field_64d237e8bb1e2'),(189258,40724,'blocks_10_content_heading','Frequently Asked Questions '),(189259,40724,'_blocks_10_content_heading','field_64d237e8bb1e3'),(189260,40724,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329829444'),(189261,40724,'_blocks_10_content_text','field_64d237e8bb1e4'),(189262,40724,'blocks_10_content_actions',''),(189263,40724,'_blocks_10_content_actions','field_64d237e8bb1e5'),(189264,40724,'blocks_10_content_align','left'),(189265,40724,'_blocks_10_content_align','field_64d2443e6b6aa'),(189266,40724,'blocks_10_content',''),(189267,40724,'_blocks_10_content','field_64d237e8bb1e1'),(189268,40724,'blocks_10_accordion_content','faqs'),(189269,40724,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(189270,40724,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(189271,40724,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(189272,40724,'blocks_10_actions',''),(189273,40724,'_blocks_10_actions','field_61a746a817f7a'),(189274,40724,'blocks_4_acfe_flexible_toggle',''),(189275,40724,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(189276,40724,'blocks_4_acfe_flexible_layout_title','Tabs'),(189277,40724,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(189278,40724,'blocks_4_options_theme','#ffffff'),(189279,40724,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(189280,40724,'blocks_4_options',''),(189281,40724,'_blocks_4_options','field_6177cfcd8140f'),(189282,40724,'blocks_4_tabs_0_tab_label','What will I learn ?'),(189283,40724,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(189284,40724,'blocks_4_tabs_0_tab_content_title',''),(189285,40724,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(189286,40724,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(189287,40724,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(189288,40724,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(189289,40724,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(189290,40724,'blocks_4_tabs_0_tab_content_actions',''),(189291,40724,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(189292,40724,'blocks_4_tabs_0_tab_content',''),(189293,40724,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(189294,40724,'blocks_4_tabs_0_tab_image','39076'),(189295,40724,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(189296,40724,'blocks_4_tabs_1_tab_label','What do I need ?'),(189297,40724,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(189298,40724,'blocks_4_tabs_1_tab_content_title',''),(189299,40724,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(189300,40724,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(189301,40724,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(189302,40724,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(189303,40724,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(189304,40724,'blocks_4_tabs_1_tab_content_actions',''),(189305,40724,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(189306,40724,'blocks_4_tabs_1_tab_content',''),(189307,40724,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(189308,40724,'blocks_4_tabs_1_tab_image','39223'),(189309,40724,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(189310,40724,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(189311,40724,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(189312,40724,'blocks_4_tabs_2_tab_content_title',''),(189313,40724,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(189314,40724,'blocks_4_tabs_2_tab_content_heading','Locations'),(189315,40724,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(189316,40724,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(189317,40724,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(189318,40724,'blocks_4_tabs_2_tab_content_actions',''),(189319,40724,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(189320,40724,'blocks_4_tabs_2_tab_content',''),(189321,40724,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(189322,40724,'blocks_4_tabs_2_tab_image','39224'),(189323,40724,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(189324,40724,'blocks_4_tabs','3'),(189325,40724,'_blocks_4_tabs','field_6177cff281419'),(189326,40724,'blocks_5_acfe_flexible_toggle',''),(189327,40724,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(189328,40724,'blocks_5_acfe_flexible_layout_title','Text Block'),(189329,40724,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(189330,40724,'blocks_5_options_theme','#b61234'),(189331,40724,'_blocks_5_options_theme','field_6176830e2ad17'),(189332,40724,'blocks_5_options',''),(189333,40724,'_blocks_5_options','field_6176830e2ad16'),(189334,40724,'blocks_5_text_block_heading','Fees & Funding Options'),(189335,40724,'_blocks_5_text_block_heading','field_617669d413097'),(189336,40724,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(189337,40724,'_blocks_5_text_block_content','field_617669ec13098'),(189338,40724,'blocks_1_acfe_flexible_toggle',''),(189339,40724,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(189340,40724,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(189341,40724,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(189342,40724,'blocks_1_options_theme','#ffffff'),(189343,40724,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(189344,40724,'blocks_1_options_reverse','0'),(189345,40724,'_blocks_1_options_reverse','field_61768049bb8ac'),(189346,40724,'blocks_1_options',''),(189347,40724,'_blocks_1_options','field_617682517c334'),(189348,40724,'blocks_1_split_5050_image','39241'),(189349,40724,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(189350,40724,'blocks_1_split_5050_video',''),(189351,40724,'_blocks_1_split_5050_video','field_6239f3160848a'),(189352,40724,'blocks_1_split_5050_content_title',''),(189353,40724,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(189354,40724,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(189355,40724,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(189356,40724,'blocks_1_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(189357,40724,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(189358,40724,'blocks_1_split_5050_content_actions',''),(189359,40724,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(189360,40724,'blocks_1_split_5050_content',''),(189361,40724,'_blocks_1_split_5050_content','field_61767afceb8ba'),(189362,40724,'blocks_6_acfe_flexible_toggle',''),(189363,40724,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(189364,40724,'blocks_6_acfe_flexible_layout_title','Icons'),(189365,40724,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(189366,40724,'blocks_6_options_theme','#b61234'),(189367,40724,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(189368,40724,'blocks_6_options_format','row'),(189369,40724,'_blocks_6_options_format','field_64bfde9a90690'),(189370,40724,'blocks_6_options',''),(189371,40724,'_blocks_6_options','field_64bfdd9b90684'),(189372,40724,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(189373,40724,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(189374,40724,'blocks_6_icon_row_items_0_label','Pay in Full'),(189375,40724,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(189376,40724,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(189377,40724,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(189378,40724,'blocks_6_icon_row_items_1_icon','finance.svg'),(189379,40724,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(189380,40724,'blocks_6_icon_row_items_1_label','0% Finance'),(189381,40724,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(189382,40724,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(189383,40724,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(189384,40724,'blocks_6_icon_row_items_2_icon','deposit.svg'),(189385,40724,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(189386,40724,'blocks_6_icon_row_items_2_label','Deposit & balance'),(189387,40724,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(189388,40724,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(189389,40724,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(189390,40724,'blocks_6_icon_row_items','3'),(189391,40724,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(189392,40724,'blocks_7_acfe_flexible_toggle',''),(189393,40724,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(189394,40724,'blocks_7_acfe_flexible_layout_title','Steps'),(189395,40724,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(189396,40724,'blocks_7_row_content_title',''),(189397,40724,'_blocks_7_row_content_title','field_64888cd1e26e0'),(189398,40724,'blocks_7_row_content_heading','Benefits of Training with Us'),(189399,40724,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(189400,40724,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(189401,40724,'_blocks_7_row_content_text','field_64888ce2e26e2'),(189402,40724,'blocks_7_row_content_actions',''),(189403,40724,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(189404,40724,'blocks_7_row_content',''),(189405,40724,'_blocks_7_row_content','field_64888cb0e26df'),(189406,40724,'blocks_7_steps_0_icon','progression.svg'),(189407,40724,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(189408,40724,'blocks_7_steps_0_title','Earning potential'),(189409,40724,'_blocks_7_steps_0_title','field_64888d94e26e7'),(189410,40724,'blocks_7_steps_0_text','Attract new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(189411,40724,'_blocks_7_steps_0_text','field_64888d99e26e8'),(189412,40724,'blocks_7_steps_1_icon','support.svg'),(189413,40724,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(189414,40724,'blocks_7_steps_1_title','Lifetime learning promise'),(189415,40724,'_blocks_7_steps_1_title','field_64888d94e26e7'),(189416,40724,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(189417,40724,'_blocks_7_steps_1_text','field_64888d99e26e8'),(189418,40724,'blocks_7_steps_2_icon','qualification.svg'),(189419,40724,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(189420,40724,'blocks_7_steps_2_title','Evidence based hands on learning'),(189421,40724,'_blocks_7_steps_2_title','field_64888d94e26e7'),(189422,40724,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn how to screen and test to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(189423,40724,'_blocks_7_steps_2_text','field_64888d99e26e8'),(189424,40724,'blocks_7_steps_3_icon','leaders.svg'),(189425,40724,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(189426,40724,'blocks_7_steps_3_title','Stand out from the crowd'),(189427,40724,'_blocks_7_steps_3_title','field_64888d94e26e7'),(189428,40724,'blocks_7_steps_3_text','As a Sports Massage Therapist through the Biomechanics Coaching Diploma we will give you the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course can also enhance your relationship with other healthcare providers because you will have confidence in a common language'),(189429,40724,'_blocks_7_steps_3_text','field_64888d99e26e8'),(189430,40724,'blocks_7_steps','4'),(189431,40724,'_blocks_7_steps','field_64888d44e26e5'),(189432,40724,'blocks_2_acfe_flexible_toggle',''),(189433,40724,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(189434,40724,'blocks_2_acfe_flexible_layout_title','Form'),(189435,40724,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(189436,40724,'blocks_2_row_content_format','standard'),(189437,40724,'_blocks_2_row_content_format','field_6481ead962881'),(189438,40724,'blocks_2_row_content_title',''),(189439,40724,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(189440,40724,'blocks_2_row_content_heading','Enquire Today'),(189441,40724,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(189442,40724,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(189443,40724,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(189444,40724,'blocks_2_row_content_actions',''),(189445,40724,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(189446,40724,'blocks_2_row_content',''),(189447,40724,'_blocks_2_row_content','field_61a0f5f5b3db0'),(189448,40724,'blocks_2_row_form','40394'),(189449,40724,'_blocks_2_row_form','field_61a4ff2c0b08e'),(189450,40724,'blocks_2_row_form_button_label',''),(189451,40724,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(189452,40724,'blocks_3_acfe_flexible_toggle',''),(189453,40724,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(189454,40724,'blocks_3_acfe_flexible_layout_title','Video'),(189455,40724,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(189456,40724,'blocks_3_size','large'),(189457,40724,'_blocks_3_size','field_6487038f297c1'),(189458,40724,'blocks_3_row_content_title',''),(189459,40724,'_blocks_3_row_content_title','field_64870132a865d'),(189460,40724,'blocks_3_row_content_heading',''),(189461,40724,'_blocks_3_row_content_heading','field_64870142a865e'),(189462,40724,'blocks_3_row_content_text',''),(189463,40724,'_blocks_3_row_content_text','field_64870148a865f'),(189464,40724,'blocks_3_row_content',''),(189465,40724,'_blocks_3_row_content','field_6487008ba865c'),(189466,40724,'blocks_3_video_src',''),(189467,40724,'_blocks_3_video_src','field_6193c4a98ec07'),(189468,40724,'blocks_3_video_thumbnail',''),(189469,40724,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(189595,40726,'hide_hero','0'),(189596,40726,'_hide_hero','field_66a2380fcda39'),(189597,40726,'hero_title','Thank you!'),(189598,40726,'_hero_title','field_617571fe285e8'),(189599,40726,'hero_text','Your digital price guide has been sent directly to your email inbox, but if you can\'t wait to get your hands on it you can access your guide straight away below!'),(189600,40726,'_hero_text','field_6175723c285e9'),(189601,40726,'hero_actions','1'),(189602,40726,'_hero_actions','field_61757270285ea'),(189603,40726,'hero_style','default'),(189604,40726,'_hero_style','field_62051d9dc5324'),(189605,40726,'hero_image_pos_x','right'),(189606,40726,'_hero_image_pos_x','field_62ec3d05390bb'),(189607,40726,'hero_image_pos_y','top'),(189608,40726,'_hero_image_pos_y','field_62ec3d05390bc'),(189609,40726,'hero_image_pos',''),(189610,40726,'_hero_image_pos','field_62ec3d05390ba'),(189611,40726,'fft_hide_from_listings','0'),(189612,40726,'_fft_hide_from_listings','field_61f1320446ab2'),(189613,40726,'fft_page_format','default'),(189614,40726,'_fft_page_format','field_61ae213f1f218'),(189615,40726,'fft_hide_nav','0'),(189616,40726,'_fft_hide_nav','field_635bd5e43527c'),(189617,40726,'fft_hide_header_call_to_action','0'),(189618,40726,'_fft_hide_header_call_to_action','field_635bd6723527d'),(189619,40726,'fft_page_sitemap','0'),(189620,40726,'_fft_page_sitemap','field_61af9b34e8181'),(189621,40726,'blocks','a:2:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";}'),(189622,40726,'_blocks','field_6176696113096'),(189623,40726,'hero_actions_0_button','a:3:{s:5:\"title\";s:14:\"Get Your Guide\";s:3:\"url\";s:12:\"#row-40321-2\";s:6:\"target\";s:0:\"\";}'),(189624,40726,'_hero_actions_0_button','field_61757281285eb'),(189625,40726,'_thumbnail_id','39186'),(189626,40726,'__thumbnail_id','field_617570855ddaf'),(189627,40726,'blocks_0_acfe_flexible_toggle',''),(189628,40726,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(189629,40726,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(189630,40726,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(189631,40726,'blocks_0_options_theme','#ffffff'),(189632,40726,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(189633,40726,'blocks_0_options_reverse','0'),(189634,40726,'_blocks_0_options_reverse','field_61768049bb8ac'),(189635,40726,'blocks_0_options',''),(189636,40726,'_blocks_0_options','field_617682517c334'),(189637,40726,'blocks_0_split_5050_image',''),(189638,40726,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(189639,40726,'blocks_0_split_5050_video','https://www.youtube.com/watch?v=xgRiAj1qEog&t=1s'),(189640,40726,'_blocks_0_split_5050_video','field_6239f3160848a'),(189641,40726,'blocks_0_split_5050_content_title',''),(189642,40726,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(189643,40726,'blocks_0_split_5050_content_heading','Congratulations!'),(189644,40726,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(189645,40726,'blocks_0_split_5050_content_text','We will be in touch to discuss your enquiry shortly.\r\n\r\nBut first, the founder, Rachel Frances Thomson would like to welcome you to Biomechanics Education in this short video.'),(189646,40726,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(189647,40726,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:16:\"OPEN PRICE GUIDE\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(189648,40726,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(189649,40726,'blocks_0_split_5050_content_actions','1'),(189650,40726,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(189651,40726,'blocks_0_split_5050_content',''),(189652,40726,'_blocks_0_split_5050_content','field_61767afceb8ba'),(189653,40726,'blocks_1_acfe_flexible_toggle',''),(189654,40726,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(189655,40726,'blocks_1_acfe_flexible_layout_title','Form'),(189656,40726,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(189657,40726,'blocks_1_row_content_format','standard'),(189658,40726,'_blocks_1_row_content_format','field_6481ead962881'),(189659,40726,'blocks_1_row_content_title','psst'),(189660,40726,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(189661,40726,'blocks_1_row_content_heading','Can we trouble you for a few more details? '),(189662,40726,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(189663,40726,'blocks_1_row_content_text','We want to make sure your experience with us is as relevant and supportive as it can possibly be, so we would love to learn a bit more about you.\r\n\r\nWe promise it won\'t take more than 1.5 minutes and we won\'t share this information with anyone else.'),(189664,40726,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(189665,40726,'blocks_1_row_content_actions',''),(189666,40726,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(189667,40726,'blocks_1_row_content',''),(189668,40726,'_blocks_1_row_content','field_61a0f5f5b3db0'),(189669,40726,'blocks_1_row_form','40410'),(189670,40726,'_blocks_1_row_form','field_61a4ff2c0b08e'),(189671,40726,'blocks_1_row_form_button_label','Next'),(189672,40726,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(189673,40727,'hide_hero','0'),(189674,40727,'_hide_hero','field_66a2380fcda39'),(189675,40727,'hero_title','Biomechanics and Sports Coaches '),(189676,40727,'_hero_title','field_617571fe285e8'),(189677,40727,'hero_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(189678,40727,'_hero_text','field_6175723c285e9'),(189679,40727,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39249-3\";s:6:\"target\";s:0:\"\";}'),(189680,40727,'_hero_actions_0_button','field_61757281285eb'),(189681,40727,'hero_actions','1'),(189682,40727,'_hero_actions','field_61757270285ea'),(189683,40727,'hero_style','default'),(189684,40727,'_hero_style','field_62051d9dc5324'),(189685,40727,'_thumbnail_id','39251'),(189686,40727,'__thumbnail_id','field_617570855ddaf'),(189687,40727,'hero_image_pos_x','right'),(189688,40727,'_hero_image_pos_x','field_62ec3d05390bb'),(189689,40727,'hero_image_pos_y','top'),(189690,40727,'_hero_image_pos_y','field_62ec3d05390bc'),(189691,40727,'hero_image_pos',''),(189692,40727,'_hero_image_pos','field_62ec3d05390ba'),(189693,40727,'fft_hide_from_listings','0'),(189694,40727,'_fft_hide_from_listings','field_61f1320446ab2'),(189695,40727,'fft_page_format','default'),(189696,40727,'_fft_page_format','field_61ae213f1f218'),(189697,40727,'fft_hide_nav','0'),(189698,40727,'_fft_hide_nav','field_635bd5e43527c'),(189699,40727,'fft_hide_header_call_to_action','0'),(189700,40727,'_fft_hide_header_call_to_action','field_635bd6723527d'),(189701,40727,'fft_page_sitemap','0'),(189702,40727,'_fft_page_sitemap','field_61af9b34e8181'),(189703,40727,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"steps\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:10:\"accordions\";i:9;s:18:\"testimonial_slider\";}'),(189704,40727,'_blocks','field_6176696113096'),(189705,40727,'blocks_0_acfe_flexible_toggle',''),(189706,40727,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(189707,40727,'blocks_0_acfe_flexible_layout_title','Template'),(189708,40727,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(189709,40727,'blocks_0_template','39087'),(189710,40727,'_blocks_0_template','field_617bdd570fe01'),(189711,40727,'blocks_4_acfe_flexible_toggle',''),(189712,40727,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(189713,40727,'blocks_4_acfe_flexible_layout_title','Tabs'),(189714,40727,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(189715,40727,'blocks_4_options_theme','#ffffff'),(189716,40727,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(189717,40727,'blocks_4_options',''),(189718,40727,'_blocks_4_options','field_6177cfcd8140f'),(189719,40727,'blocks_4_tabs_0_tab_label','What will I learn ?'),(189720,40727,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(189721,40727,'blocks_4_tabs_0_tab_content_title',''),(189722,40727,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(189723,40727,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(189724,40727,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(189725,40727,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(189726,40727,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(189727,40727,'blocks_4_tabs_0_tab_content_actions',''),(189728,40727,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(189729,40727,'blocks_4_tabs_0_tab_content',''),(189730,40727,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(189731,40727,'blocks_4_tabs_0_tab_image','39076'),(189732,40727,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(189733,40727,'blocks_4_tabs_1_tab_label','What do I need ?'),(189734,40727,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(189735,40727,'blocks_4_tabs_1_tab_content_title',''),(189736,40727,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(189737,40727,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(189738,40727,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(189739,40727,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(189740,40727,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(189741,40727,'blocks_4_tabs_1_tab_content_actions',''),(189742,40727,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(189743,40727,'blocks_4_tabs_1_tab_content',''),(189744,40727,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(189745,40727,'blocks_4_tabs_1_tab_image','39223'),(189746,40727,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(189747,40727,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(189748,40727,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(189749,40727,'blocks_4_tabs_2_tab_content_title',''),(189750,40727,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(189751,40727,'blocks_4_tabs_2_tab_content_heading','Locations'),(189752,40727,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(189753,40727,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(189754,40727,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(189755,40727,'blocks_4_tabs_2_tab_content_actions',''),(189756,40727,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(189757,40727,'blocks_4_tabs_2_tab_content',''),(189758,40727,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(189759,40727,'blocks_4_tabs_2_tab_image','39224'),(189760,40727,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(189761,40727,'blocks_4_tabs','3'),(189762,40727,'_blocks_4_tabs','field_6177cff281419'),(189763,40727,'blocks_5_acfe_flexible_toggle',''),(189764,40727,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(189765,40727,'blocks_5_acfe_flexible_layout_title','Text Block'),(189766,40727,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(189767,40727,'blocks_5_options_theme','#b61234'),(189768,40727,'_blocks_5_options_theme','field_6176830e2ad17'),(189769,40727,'blocks_5_options',''),(189770,40727,'_blocks_5_options','field_6176830e2ad16'),(189771,40727,'blocks_5_text_block_heading','Fees & Funding Options'),(189772,40727,'_blocks_5_text_block_heading','field_617669d413097'),(189773,40727,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(189774,40727,'_blocks_5_text_block_content','field_617669ec13098'),(189775,40727,'blocks_6_acfe_flexible_toggle',''),(189776,40727,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(189777,40727,'blocks_6_acfe_flexible_layout_title','Icons'),(189778,40727,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(189779,40727,'blocks_6_options_theme','#b61234'),(189780,40727,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(189781,40727,'blocks_6_options_format','row'),(189782,40727,'_blocks_6_options_format','field_64bfde9a90690'),(189783,40727,'blocks_6_options',''),(189784,40727,'_blocks_6_options','field_64bfdd9b90684'),(189785,40727,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(189786,40727,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(189787,40727,'blocks_6_icon_row_items_0_label','Pay in Full'),(189788,40727,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(189789,40727,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(189790,40727,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(189791,40727,'blocks_6_icon_row_items_1_icon','finance.svg'),(189792,40727,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(189793,40727,'blocks_6_icon_row_items_1_label','0% finance'),(189794,40727,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(189795,40727,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(189796,40727,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(189797,40727,'blocks_6_icon_row_items_2_icon','deposit.svg'),(189798,40727,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(189799,40727,'blocks_6_icon_row_items_2_label','Deposit & balance'),(189800,40727,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(189801,40727,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(189802,40727,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(189803,40727,'blocks_6_icon_row_items','3'),(189804,40727,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(189805,40727,'blocks_1_acfe_flexible_toggle',''),(189806,40727,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(189807,40727,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(189808,40727,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(189809,40727,'blocks_1_options_theme','#ffffff'),(189810,40727,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(189811,40727,'blocks_1_options_reverse','0'),(189812,40727,'_blocks_1_options_reverse','field_61768049bb8ac'),(189813,40727,'blocks_1_options',''),(189814,40727,'_blocks_1_options','field_617682517c334'),(189815,40727,'blocks_1_split_5050_image','39252'),(189816,40727,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(189817,40727,'blocks_1_split_5050_video',''),(189818,40727,'_blocks_1_split_5050_video','field_6239f3160848a'),(189819,40727,'blocks_1_split_5050_content_title',''),(189820,40727,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(189821,40727,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports coach'),(189822,40727,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(189823,40727,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from, injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(189824,40727,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(189825,40727,'blocks_1_split_5050_content_actions',''),(189826,40727,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(189827,40727,'blocks_1_split_5050_content',''),(189828,40727,'_blocks_1_split_5050_content','field_61767afceb8ba'),(189829,40727,'blocks_2_acfe_flexible_toggle',''),(189830,40727,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(189831,40727,'blocks_2_acfe_flexible_layout_title','Form'),(189832,40727,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(189833,40727,'blocks_2_row_content_format','standard'),(189834,40727,'_blocks_2_row_content_format','field_6481ead962881'),(189835,40727,'blocks_2_row_content_title',''),(189836,40727,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(189837,40727,'blocks_2_row_content_heading','Enquire Today'),(189838,40727,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(189839,40727,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(189840,40727,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(189841,40727,'blocks_2_row_content_actions',''),(189842,40727,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(189843,40727,'blocks_2_row_content',''),(189844,40727,'_blocks_2_row_content','field_61a0f5f5b3db0'),(189845,40727,'blocks_2_row_form','40394'),(189846,40727,'_blocks_2_row_form','field_61a4ff2c0b08e'),(189847,40727,'blocks_2_row_form_button_label',''),(189848,40727,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(189849,40727,'blocks_3_acfe_flexible_toggle',''),(189850,40727,'_blocks_3_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(189851,40727,'blocks_3_acfe_flexible_layout_title','Steps'),(189852,40727,'_blocks_3_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(189853,40727,'blocks_3_row_content_title',''),(189854,40727,'_blocks_3_row_content_title','field_64888cd1e26e0'),(189855,40727,'blocks_3_row_content_heading','Benefits of training with us'),(189856,40727,'_blocks_3_row_content_heading','field_64888cd9e26e1'),(189857,40727,'blocks_3_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(189858,40727,'_blocks_3_row_content_text','field_64888ce2e26e2'),(189859,40727,'blocks_3_row_content_actions',''),(189860,40727,'_blocks_3_row_content_actions','field_64888cf5e26e3'),(189861,40727,'blocks_3_row_content',''),(189862,40727,'_blocks_3_row_content','field_64888cb0e26df'),(189863,40727,'blocks_3_steps_0_icon','progression.svg'),(189864,40727,'_blocks_3_steps_0_icon','field_64888d53e26e6'),(189865,40727,'blocks_3_steps_0_title','Earning potential'),(189866,40727,'_blocks_3_steps_0_title','field_64888d94e26e7'),(189867,40727,'blocks_3_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(189868,40727,'_blocks_3_steps_0_text','field_64888d99e26e8'),(189869,40727,'blocks_3_steps_1_icon','support.svg'),(189870,40727,'_blocks_3_steps_1_icon','field_64888d53e26e6'),(189871,40727,'blocks_3_steps_1_title','Lifetime Learning Promise'),(189872,40727,'_blocks_3_steps_1_title','field_64888d94e26e7'),(189873,40727,'blocks_3_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(189874,40727,'_blocks_3_steps_1_text','field_64888d99e26e8'),(189875,40727,'blocks_3_steps_2_icon','qualification.svg'),(189876,40727,'_blocks_3_steps_2_icon','field_64888d53e26e6'),(189877,40727,'blocks_3_steps_2_title','Evidence based hands on learning'),(189878,40727,'_blocks_3_steps_2_title','field_64888d94e26e7'),(189879,40727,'blocks_3_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(189880,40727,'_blocks_3_steps_2_text','field_64888d99e26e8'),(189881,40727,'blocks_3_steps_3_icon','leaders.svg'),(189882,40727,'_blocks_3_steps_3_icon','field_64888d53e26e6'),(189883,40727,'blocks_3_steps_3_title','Stand out from the crowd'),(189884,40727,'_blocks_3_steps_3_title','field_64888d94e26e7'),(189885,40727,'blocks_3_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(189886,40727,'_blocks_3_steps_3_text','field_64888d99e26e8'),(189887,40727,'blocks_3_steps','4'),(189888,40727,'_blocks_3_steps','field_64888d44e26e5'),(189889,40727,'blocks_7_acfe_flexible_toggle',''),(189890,40727,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(189891,40727,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(189892,40727,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(189893,40727,'blocks_7_options_theme','#ffffff'),(189894,40727,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(189895,40727,'blocks_7_options_reverse','0'),(189896,40727,'_blocks_7_options_reverse','field_61768049bb8ac'),(189897,40727,'blocks_7_options',''),(189898,40727,'_blocks_7_options','field_617682517c334'),(189899,40727,'blocks_7_split_5050_image','40491'),(189900,40727,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(189901,40727,'blocks_7_split_5050_video',''),(189902,40727,'_blocks_7_split_5050_video','field_6239f3160848a'),(189903,40727,'blocks_7_split_5050_content_title',''),(189904,40727,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(189905,40727,'blocks_7_split_5050_content_heading','Why study this course ?'),(189906,40727,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(189907,40727,'blocks_7_split_5050_content_text','<ul>\r\n 	<li style=\"text-align: left;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: left;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: left;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: left;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: left;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(189908,40727,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(189909,40727,'blocks_7_split_5050_content_actions',''),(189910,40727,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(189911,40727,'blocks_7_split_5050_content',''),(189912,40727,'_blocks_7_split_5050_content','field_61767afceb8ba'),(189913,40727,'blocks_8_acfe_flexible_toggle',''),(189914,40727,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(189915,40727,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(189916,40727,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(189917,40727,'blocks_8_options_theme','#ffffff'),(189918,40727,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(189919,40727,'blocks_8_options_state','0'),(189920,40727,'_blocks_8_options_state','field_6239fcb7508c5'),(189921,40727,'blocks_8_options',''),(189922,40727,'_blocks_8_options','field_6177e2991ac44'),(189923,40727,'blocks_8_content_title',''),(189924,40727,'_blocks_8_content_title','field_64d237e8bb1e2'),(189925,40727,'blocks_8_content_heading','Frequently asked questions '),(189926,40727,'_blocks_8_content_heading','field_64d237e8bb1e3'),(189927,40727,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(189928,40727,'_blocks_8_content_text','field_64d237e8bb1e4'),(189929,40727,'blocks_8_content_actions',''),(189930,40727,'_blocks_8_content_actions','field_64d237e8bb1e5'),(189931,40727,'blocks_8_content_align','left'),(189932,40727,'_blocks_8_content_align','field_64d2443e6b6aa'),(189933,40727,'blocks_8_content',''),(189934,40727,'_blocks_8_content','field_64d237e8bb1e1'),(189935,40727,'blocks_8_accordion_content','faqs'),(189936,40727,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(189937,40727,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(189938,40727,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(189939,40727,'blocks_8_actions',''),(189940,40727,'_blocks_8_actions','field_61a746a817f7a'),(189941,40727,'blocks_9_acfe_flexible_toggle',''),(189942,40727,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(189943,40727,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(189944,40727,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(189945,40727,'blocks_9_testimonial_slider_content_title',''),(189946,40727,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(189947,40727,'blocks_9_testimonial_slider_content_heading','Testimonials'),(189948,40727,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(189949,40727,'blocks_9_testimonial_slider_content_text',''),(189950,40727,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(189951,40727,'blocks_9_testimonial_slider_content_actions',''),(189952,40727,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(189953,40727,'blocks_9_testimonial_slider_content',''),(189954,40727,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(189955,40727,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(189956,40727,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(189957,40727,'blocks_9_testimonial_slider_ambassador_bool','0'),(189958,40727,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(190009,39254,'blocks_2_acfe_flexible_toggle',''),(190010,39254,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(190011,39254,'blocks_2_acfe_flexible_layout_title','Form'),(190012,39254,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(190013,39254,'blocks_2_row_content_format','standard'),(190014,39254,'_blocks_2_row_content_format','field_6481ead962881'),(190015,39254,'blocks_2_row_content_title',''),(190016,39254,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(190017,39254,'blocks_2_row_content_heading','Enquire Today'),(190018,39254,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(190019,39254,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(190020,39254,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(190021,39254,'blocks_2_row_content_actions',''),(190022,39254,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(190023,39254,'blocks_2_row_content',''),(190024,39254,'_blocks_2_row_content','field_61a0f5f5b3db0'),(190025,39254,'blocks_2_row_form','40394'),(190026,39254,'_blocks_2_row_form','field_61a4ff2c0b08e'),(190027,39254,'blocks_2_row_form_button_label',''),(190028,39254,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(190029,39254,'blocks_3_acfe_flexible_toggle','1'),(190030,39254,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(190031,39254,'blocks_3_acfe_flexible_layout_title','Video'),(190032,39254,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(190033,39254,'blocks_3_size','large'),(190034,39254,'_blocks_3_size','field_6487038f297c1'),(190035,39254,'blocks_3_row_content_title',''),(190036,39254,'_blocks_3_row_content_title','field_64870132a865d'),(190037,39254,'blocks_3_row_content_heading',''),(190038,39254,'_blocks_3_row_content_heading','field_64870142a865e'),(190039,39254,'blocks_3_row_content_text',''),(190040,39254,'_blocks_3_row_content_text','field_64870148a865f'),(190041,39254,'blocks_3_row_content',''),(190042,39254,'_blocks_3_row_content','field_6487008ba865c'),(190043,39254,'blocks_3_video_src',''),(190044,39254,'_blocks_3_video_src','field_6193c4a98ec07'),(190045,39254,'blocks_3_video_thumbnail',''),(190046,39254,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(190047,40729,'hide_hero','0'),(190048,40729,'_hide_hero','field_66a2380fcda39'),(190049,40729,'hero_title','Biomechanics and S&C coaches'),(190050,40729,'_hero_title','field_617571fe285e8'),(190051,40729,'hero_text','Gain a deeper understanding of anatomy and client movement and level up your Strength and Conditioning practice through intrinsic biomechanics.'),(190052,40729,'_hero_text','field_6175723c285e9'),(190053,40729,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39254-3\";s:6:\"target\";s:0:\"\";}'),(190054,40729,'_hero_actions_0_button','field_61757281285eb'),(190055,40729,'hero_actions','1'),(190056,40729,'_hero_actions','field_61757270285ea'),(190057,40729,'hero_style','default'),(190058,40729,'_hero_style','field_62051d9dc5324'),(190059,40729,'_thumbnail_id','39256'),(190060,40729,'__thumbnail_id','field_617570855ddaf'),(190061,40729,'hero_image_pos_x','right'),(190062,40729,'_hero_image_pos_x','field_62ec3d05390bb'),(190063,40729,'hero_image_pos_y','top'),(190064,40729,'_hero_image_pos_y','field_62ec3d05390bc'),(190065,40729,'hero_image_pos',''),(190066,40729,'_hero_image_pos','field_62ec3d05390ba'),(190067,40729,'fft_hide_from_listings','0'),(190068,40729,'_fft_hide_from_listings','field_61f1320446ab2'),(190069,40729,'fft_page_format','default'),(190070,40729,'_fft_page_format','field_61ae213f1f218'),(190071,40729,'fft_hide_nav','0'),(190072,40729,'_fft_hide_nav','field_635bd5e43527c'),(190073,40729,'fft_hide_header_call_to_action','0'),(190074,40729,'_fft_hide_header_call_to_action','field_635bd6723527d'),(190075,40729,'fft_page_sitemap','0'),(190076,40729,'_fft_page_sitemap','field_61af9b34e8181'),(190077,40729,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(190078,40729,'_blocks','field_6176696113096'),(190079,40729,'blocks_0_acfe_flexible_toggle',''),(190080,40729,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(190081,40729,'blocks_0_acfe_flexible_layout_title','Template'),(190082,40729,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(190083,40729,'blocks_0_template','39087'),(190084,40729,'_blocks_0_template','field_617bdd570fe01'),(190085,40729,'blocks_8_acfe_flexible_toggle','1'),(190086,40729,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(190087,40729,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(190088,40729,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(190089,40729,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(190090,40729,'_blocks_8_content','field_6193c9b5eac84'),(190091,40729,'blocks_9_acfe_flexible_toggle',''),(190092,40729,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(190093,40729,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(190094,40729,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(190095,40729,'blocks_9_testimonial_slider_content_title',''),(190096,40729,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(190097,40729,'blocks_9_testimonial_slider_content_heading','Testimonials'),(190098,40729,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(190099,40729,'blocks_9_testimonial_slider_content_text',''),(190100,40729,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(190101,40729,'blocks_9_testimonial_slider_content_actions',''),(190102,40729,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(190103,40729,'blocks_9_testimonial_slider_content',''),(190104,40729,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(190105,40729,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(190106,40729,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(190107,40729,'blocks_9_testimonial_slider_ambassador_bool','0'),(190108,40729,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(190109,40729,'blocks_10_acfe_flexible_toggle',''),(190110,40729,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(190111,40729,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(190112,40729,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(190113,40729,'blocks_10_options_theme','#ffffff'),(190114,40729,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(190115,40729,'blocks_10_options_state','0'),(190116,40729,'_blocks_10_options_state','field_6239fcb7508c5'),(190117,40729,'blocks_10_options',''),(190118,40729,'_blocks_10_options','field_6177e2991ac44'),(190119,40729,'blocks_10_content_title',''),(190120,40729,'_blocks_10_content_title','field_64d237e8bb1e2'),(190121,40729,'blocks_10_content_heading','Frequently asked questions '),(190122,40729,'_blocks_10_content_heading','field_64d237e8bb1e3'),(190123,40729,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(190124,40729,'_blocks_10_content_text','field_64d237e8bb1e4'),(190125,40729,'blocks_10_content_actions',''),(190126,40729,'_blocks_10_content_actions','field_64d237e8bb1e5'),(190127,40729,'blocks_10_content_align','left'),(190128,40729,'_blocks_10_content_align','field_64d2443e6b6aa'),(190129,40729,'blocks_10_content',''),(190130,40729,'_blocks_10_content','field_64d237e8bb1e1'),(190131,40729,'blocks_10_accordion_content','faqs'),(190132,40729,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(190133,40729,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(190134,40729,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(190135,40729,'blocks_10_actions',''),(190136,40729,'_blocks_10_actions','field_61a746a817f7a'),(190137,40729,'blocks_1_acfe_flexible_toggle',''),(190138,40729,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(190139,40729,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(190140,40729,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(190141,40729,'blocks_1_options_theme','#ffffff'),(190142,40729,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(190143,40729,'blocks_1_options_reverse','0'),(190144,40729,'_blocks_1_options_reverse','field_61768049bb8ac'),(190145,40729,'blocks_1_options',''),(190146,40729,'_blocks_1_options','field_617682517c334'),(190147,40729,'blocks_1_split_5050_image','39257'),(190148,40729,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(190149,40729,'blocks_1_split_5050_video',''),(190150,40729,'_blocks_1_split_5050_video','field_6239f3160848a'),(190151,40729,'blocks_1_split_5050_content_title',''),(190152,40729,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(190153,40729,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(190154,40729,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(190155,40729,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(190156,40729,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(190157,40729,'blocks_1_split_5050_content_actions',''),(190158,40729,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(190159,40729,'blocks_1_split_5050_content',''),(190160,40729,'_blocks_1_split_5050_content','field_61767afceb8ba'),(190161,40729,'blocks_4_acfe_flexible_toggle',''),(190162,40729,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(190163,40729,'blocks_4_acfe_flexible_layout_title','Tabs'),(190164,40729,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(190165,40729,'blocks_4_options_theme','#ffffff'),(190166,40729,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(190167,40729,'blocks_4_options',''),(190168,40729,'_blocks_4_options','field_6177cfcd8140f'),(190169,40729,'blocks_4_tabs_0_tab_label','What will I learn ?'),(190170,40729,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(190171,40729,'blocks_4_tabs_0_tab_content_title',''),(190172,40729,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(190173,40729,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(190174,40729,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(190175,40729,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(190176,40729,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(190177,40729,'blocks_4_tabs_0_tab_content_actions',''),(190178,40729,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(190179,40729,'blocks_4_tabs_0_tab_content',''),(190180,40729,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(190181,40729,'blocks_4_tabs_0_tab_image','39076'),(190182,40729,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(190183,40729,'blocks_4_tabs_1_tab_label','What do I need ?'),(190184,40729,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(190185,40729,'blocks_4_tabs_1_tab_content_title',''),(190186,40729,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(190187,40729,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(190188,40729,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(190189,40729,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(190190,40729,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(190191,40729,'blocks_4_tabs_1_tab_content_actions',''),(190192,40729,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(190193,40729,'blocks_4_tabs_1_tab_content',''),(190194,40729,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(190195,40729,'blocks_4_tabs_1_tab_image','39223'),(190196,40729,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(190197,40729,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(190198,40729,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(190199,40729,'blocks_4_tabs_2_tab_content_title',''),(190200,40729,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(190201,40729,'blocks_4_tabs_2_tab_content_heading','Locations'),(190202,40729,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(190203,40729,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(190204,40729,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(190205,40729,'blocks_4_tabs_2_tab_content_actions',''),(190206,40729,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(190207,40729,'blocks_4_tabs_2_tab_content',''),(190208,40729,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(190209,40729,'blocks_4_tabs_2_tab_image','39224'),(190210,40729,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(190211,40729,'blocks_4_tabs','3'),(190212,40729,'_blocks_4_tabs','field_6177cff281419'),(190213,40729,'blocks_5_acfe_flexible_toggle',''),(190214,40729,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(190215,40729,'blocks_5_acfe_flexible_layout_title','Text Block'),(190216,40729,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(190217,40729,'blocks_5_options_theme','#b61234'),(190218,40729,'_blocks_5_options_theme','field_6176830e2ad17'),(190219,40729,'blocks_5_options',''),(190220,40729,'_blocks_5_options','field_6176830e2ad16'),(190221,40729,'blocks_5_text_block_heading','Fees & Funding Options'),(190222,40729,'_blocks_5_text_block_heading','field_617669d413097'),(190223,40729,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(190224,40729,'_blocks_5_text_block_content','field_617669ec13098'),(190225,40729,'blocks_6_acfe_flexible_toggle',''),(190226,40729,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(190227,40729,'blocks_6_acfe_flexible_layout_title','Icons'),(190228,40729,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(190229,40729,'blocks_6_options_theme','#b61234'),(190230,40729,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(190231,40729,'blocks_6_options_format','row'),(190232,40729,'_blocks_6_options_format','field_64bfde9a90690'),(190233,40729,'blocks_6_options',''),(190234,40729,'_blocks_6_options','field_64bfdd9b90684'),(190235,40729,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(190236,40729,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(190237,40729,'blocks_6_icon_row_items_0_label','Pay in Full'),(190238,40729,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(190239,40729,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(190240,40729,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(190241,40729,'blocks_6_icon_row_items_1_icon','finance.svg'),(190242,40729,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(190243,40729,'blocks_6_icon_row_items_1_label','0% finance'),(190244,40729,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(190245,40729,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(190246,40729,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(190247,40729,'blocks_6_icon_row_items_2_icon','deposit.svg'),(190248,40729,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(190249,40729,'blocks_6_icon_row_items_2_label','Deposit & balance'),(190250,40729,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(190251,40729,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(190252,40729,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(190253,40729,'blocks_6_icon_row_items','3'),(190254,40729,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(190255,40729,'blocks_7_acfe_flexible_toggle',''),(190256,40729,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(190257,40729,'blocks_7_acfe_flexible_layout_title','Steps'),(190258,40729,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(190259,40729,'blocks_7_row_content_title',''),(190260,40729,'_blocks_7_row_content_title','field_64888cd1e26e0'),(190261,40729,'blocks_7_row_content_heading','Benefits of training with us'),(190262,40729,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(190263,40729,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(190264,40729,'_blocks_7_row_content_text','field_64888ce2e26e2'),(190265,40729,'blocks_7_row_content_actions',''),(190266,40729,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(190267,40729,'blocks_7_row_content',''),(190268,40729,'_blocks_7_row_content','field_64888cb0e26df'),(190269,40729,'blocks_7_steps_0_icon','progression.svg'),(190270,40729,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(190271,40729,'blocks_7_steps_0_title','Attract new clients'),(190272,40729,'_blocks_7_steps_0_title','field_64888d94e26e7'),(190273,40729,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(190274,40729,'_blocks_7_steps_0_text','field_64888d99e26e8'),(190275,40729,'blocks_7_steps_1_icon','support.svg'),(190276,40729,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(190277,40729,'blocks_7_steps_1_title','Lifetime Learning Promise'),(190278,40729,'_blocks_7_steps_1_title','field_64888d94e26e7'),(190279,40729,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(190280,40729,'_blocks_7_steps_1_text','field_64888d99e26e8'),(190281,40729,'blocks_7_steps_2_icon','qualification.svg'),(190282,40729,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(190283,40729,'blocks_7_steps_2_title','Evidence based hands on learning'),(190284,40729,'_blocks_7_steps_2_title','field_64888d94e26e7'),(190285,40729,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You will learn how to test and screen, and learn methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(190286,40729,'_blocks_7_steps_2_text','field_64888d99e26e8'),(190287,40729,'blocks_7_steps_3_icon','leaders.svg'),(190288,40729,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(190289,40729,'blocks_7_steps_3_title','Stand out from the crowd'),(190290,40729,'_blocks_7_steps_3_title','field_64888d94e26e7'),(190291,40729,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(190292,40729,'_blocks_7_steps_3_text','field_64888d99e26e8'),(190293,40729,'blocks_7_steps','4'),(190294,40729,'_blocks_7_steps','field_64888d44e26e5'),(190295,40729,'blocks_2_acfe_flexible_toggle',''),(190296,40729,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(190297,40729,'blocks_2_acfe_flexible_layout_title','Form'),(190298,40729,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(190299,40729,'blocks_2_row_content_format','standard'),(190300,40729,'_blocks_2_row_content_format','field_6481ead962881'),(190301,40729,'blocks_2_row_content_title',''),(190302,40729,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(190303,40729,'blocks_2_row_content_heading','Enquire Today'),(190304,40729,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(190305,40729,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(190306,40729,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(190307,40729,'blocks_2_row_content_actions',''),(190308,40729,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(190309,40729,'blocks_2_row_content',''),(190310,40729,'_blocks_2_row_content','field_61a0f5f5b3db0'),(190311,40729,'blocks_2_row_form','40394'),(190312,40729,'_blocks_2_row_form','field_61a4ff2c0b08e'),(190313,40729,'blocks_2_row_form_button_label',''),(190314,40729,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(190315,40729,'blocks_3_acfe_flexible_toggle',''),(190316,40729,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(190317,40729,'blocks_3_acfe_flexible_layout_title','Video'),(190318,40729,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(190319,40729,'blocks_3_size','large'),(190320,40729,'_blocks_3_size','field_6487038f297c1'),(190321,40729,'blocks_3_row_content_title',''),(190322,40729,'_blocks_3_row_content_title','field_64870132a865d'),(190323,40729,'blocks_3_row_content_heading',''),(190324,40729,'_blocks_3_row_content_heading','field_64870142a865e'),(190325,40729,'blocks_3_row_content_text',''),(190326,40729,'_blocks_3_row_content_text','field_64870148a865f'),(190327,40729,'blocks_3_row_content',''),(190328,40729,'_blocks_3_row_content','field_6487008ba865c'),(190329,40729,'blocks_3_video_src',''),(190330,40729,'_blocks_3_video_src','field_6193c4a98ec07'),(190331,40729,'blocks_3_video_thumbnail',''),(190332,40729,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(190333,39263,'blocks_2_acfe_flexible_toggle',''),(190334,39263,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(190335,39263,'blocks_2_acfe_flexible_layout_title','Form'),(190336,39263,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(190337,39263,'blocks_2_row_content_format','standard'),(190338,39263,'_blocks_2_row_content_format','field_6481ead962881'),(190339,39263,'blocks_2_row_content_title','Ready to get started?'),(190340,39263,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(190341,39263,'blocks_2_row_content_heading','Enquire Today!'),(190342,39263,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(190343,39263,'blocks_2_row_content_text','When you fill out the form you\'ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(190344,39263,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(190345,39263,'blocks_2_row_content_actions',''),(190346,39263,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(190347,39263,'blocks_2_row_content',''),(190348,39263,'_blocks_2_row_content','field_61a0f5f5b3db0'),(190349,39263,'blocks_2_row_form','40417'),(190350,39263,'_blocks_2_row_form','field_61a4ff2c0b08e'),(190351,39263,'blocks_2_row_form_button_label',''),(190352,39263,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(190353,39263,'blocks_3_acfe_flexible_toggle',''),(190354,39263,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(190355,39263,'blocks_3_acfe_flexible_layout_title','Video'),(190356,39263,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(190357,39263,'blocks_3_size','large'),(190358,39263,'_blocks_3_size','field_6487038f297c1'),(190359,39263,'blocks_3_row_content_title',''),(190360,39263,'_blocks_3_row_content_title','field_64870132a865d'),(190361,39263,'blocks_3_row_content_heading',''),(190362,39263,'_blocks_3_row_content_heading','field_64870142a865e'),(190363,39263,'blocks_3_row_content_text',''),(190364,39263,'_blocks_3_row_content_text','field_64870148a865f'),(190365,39263,'blocks_3_row_content',''),(190366,39263,'_blocks_3_row_content','field_6487008ba865c'),(190367,39263,'blocks_3_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(190368,39263,'_blocks_3_video_src','field_6193c4a98ec07'),(190369,39263,'blocks_3_video_thumbnail',''),(190370,39263,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(190371,40730,'hide_hero','0'),(190372,40730,'_hide_hero','field_66a2380fcda39'),(190373,40730,'hero_title','How to Become a Biomechanics Coach'),(190374,40730,'_hero_title','field_617571fe285e8'),(190375,40730,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(190376,40730,'_hero_text','field_6175723c285e9'),(190377,40730,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39263-3\";s:6:\"target\";s:0:\"\";}'),(190378,40730,'_hero_actions_0_button','field_61757281285eb'),(190379,40730,'hero_actions','1'),(190380,40730,'_hero_actions','field_61757270285ea'),(190381,40730,'hero_style','default'),(190382,40730,'_hero_style','field_62051d9dc5324'),(190383,40730,'_thumbnail_id','39454'),(190384,40730,'__thumbnail_id','field_617570855ddaf'),(190385,40730,'hero_image_pos_x','right'),(190386,40730,'_hero_image_pos_x','field_62ec3d05390bb'),(190387,40730,'hero_image_pos_y','top'),(190388,40730,'_hero_image_pos_y','field_62ec3d05390bc'),(190389,40730,'hero_image_pos',''),(190390,40730,'_hero_image_pos','field_62ec3d05390ba'),(190391,40730,'fft_hide_from_listings','0'),(190392,40730,'_fft_hide_from_listings','field_61f1320446ab2'),(190393,40730,'fft_page_format','default'),(190394,40730,'_fft_page_format','field_61ae213f1f218'),(190395,40730,'fft_hide_nav','0'),(190396,40730,'_fft_hide_nav','field_635bd5e43527c'),(190397,40730,'fft_hide_header_call_to_action','0'),(190398,40730,'_fft_hide_header_call_to_action','field_635bd6723527d'),(190399,40730,'fft_page_sitemap','0'),(190400,40730,'_fft_page_sitemap','field_61af9b34e8181'),(190401,40730,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(190402,40730,'_blocks','field_6176696113096'),(190403,40730,'blocks_0_acfe_flexible_toggle',''),(190404,40730,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(190405,40730,'blocks_0_acfe_flexible_layout_title','Template'),(190406,40730,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(190407,40730,'blocks_0_template','39087'),(190408,40730,'_blocks_0_template','field_617bdd570fe01'),(190409,40730,'blocks_8_acfe_flexible_toggle','1'),(190410,40730,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(190411,40730,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(190412,40730,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(190413,40730,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(190414,40730,'_blocks_8_content','field_6193c9b5eac84'),(190415,40730,'blocks_9_acfe_flexible_toggle',''),(190416,40730,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(190417,40730,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(190418,40730,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(190419,40730,'blocks_9_testimonial_slider_content_title',''),(190420,40730,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(190421,40730,'blocks_9_testimonial_slider_content_heading','Testimonials'),(190422,40730,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(190423,40730,'blocks_9_testimonial_slider_content_text',''),(190424,40730,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(190425,40730,'blocks_9_testimonial_slider_content_actions',''),(190426,40730,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(190427,40730,'blocks_9_testimonial_slider_content',''),(190428,40730,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(190429,40730,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(190430,40730,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(190431,40730,'blocks_9_testimonial_slider_ambassador_bool','0'),(190432,40730,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(190433,40730,'blocks_10_acfe_flexible_toggle',''),(190434,40730,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(190435,40730,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(190436,40730,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(190437,40730,'blocks_10_options_theme','#ffffff'),(190438,40730,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(190439,40730,'blocks_10_options_state','0'),(190440,40730,'_blocks_10_options_state','field_6239fcb7508c5'),(190441,40730,'blocks_10_options',''),(190442,40730,'_blocks_10_options','field_6177e2991ac44'),(190443,40730,'blocks_10_content_title',''),(190444,40730,'_blocks_10_content_title','field_64d237e8bb1e2'),(190445,40730,'blocks_10_content_heading','Frequently asked questions '),(190446,40730,'_blocks_10_content_heading','field_64d237e8bb1e3'),(190447,40730,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(190448,40730,'_blocks_10_content_text','field_64d237e8bb1e4'),(190449,40730,'blocks_10_content_actions',''),(190450,40730,'_blocks_10_content_actions','field_64d237e8bb1e5'),(190451,40730,'blocks_10_content_align','left'),(190452,40730,'_blocks_10_content_align','field_64d2443e6b6aa'),(190453,40730,'blocks_10_content',''),(190454,40730,'_blocks_10_content','field_64d237e8bb1e1'),(190455,40730,'blocks_10_accordion_content','faqs'),(190456,40730,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(190457,40730,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(190458,40730,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(190459,40730,'blocks_10_actions',''),(190460,40730,'_blocks_10_actions','field_61a746a817f7a'),(190461,40730,'blocks_1_acfe_flexible_toggle',''),(190462,40730,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(190463,40730,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(190464,40730,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(190465,40730,'blocks_1_options_theme','#ffffff'),(190466,40730,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(190467,40730,'blocks_1_options_reverse','0'),(190468,40730,'_blocks_1_options_reverse','field_61768049bb8ac'),(190469,40730,'blocks_1_options',''),(190470,40730,'_blocks_1_options','field_617682517c334'),(190471,40730,'blocks_1_split_5050_image','39623'),(190472,40730,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(190473,40730,'blocks_1_split_5050_video',''),(190474,40730,'_blocks_1_split_5050_video','field_6239f3160848a'),(190475,40730,'blocks_1_split_5050_content_title',''),(190476,40730,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(190477,40730,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(190478,40730,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(190479,40730,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of numerous injuries within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(190480,40730,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(190481,40730,'blocks_1_split_5050_content_actions',''),(190482,40730,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(190483,40730,'blocks_1_split_5050_content',''),(190484,40730,'_blocks_1_split_5050_content','field_61767afceb8ba'),(190485,40730,'blocks_4_acfe_flexible_toggle',''),(190486,40730,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(190487,40730,'blocks_4_acfe_flexible_layout_title','Tabs'),(190488,40730,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(190489,40730,'blocks_4_options_theme','#ffffff'),(190490,40730,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(190491,40730,'blocks_4_options',''),(190492,40730,'_blocks_4_options','field_6177cfcd8140f'),(190493,40730,'blocks_4_tabs_0_tab_label','What will I learn ?'),(190494,40730,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(190495,40730,'blocks_4_tabs_0_tab_content_title',''),(190496,40730,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(190497,40730,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(190498,40730,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(190499,40730,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(190500,40730,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(190501,40730,'blocks_4_tabs_0_tab_content_actions',''),(190502,40730,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(190503,40730,'blocks_4_tabs_0_tab_content',''),(190504,40730,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(190505,40730,'blocks_4_tabs_0_tab_image','39076'),(190506,40730,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(190507,40730,'blocks_4_tabs_1_tab_label','What do I need ?'),(190508,40730,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(190509,40730,'blocks_4_tabs_1_tab_content_title',''),(190510,40730,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(190511,40730,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(190512,40730,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(190513,40730,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(190514,40730,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(190515,40730,'blocks_4_tabs_1_tab_content_actions',''),(190516,40730,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(190517,40730,'blocks_4_tabs_1_tab_content',''),(190518,40730,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(190519,40730,'blocks_4_tabs_1_tab_image','39223'),(190520,40730,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(190521,40730,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(190522,40730,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(190523,40730,'blocks_4_tabs_2_tab_content_title',''),(190524,40730,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(190525,40730,'blocks_4_tabs_2_tab_content_heading','Locations'),(190526,40730,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(190527,40730,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(190528,40730,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(190529,40730,'blocks_4_tabs_2_tab_content_actions',''),(190530,40730,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(190531,40730,'blocks_4_tabs_2_tab_content',''),(190532,40730,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(190533,40730,'blocks_4_tabs_2_tab_image','39224'),(190534,40730,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(190535,40730,'blocks_4_tabs','3'),(190536,40730,'_blocks_4_tabs','field_6177cff281419'),(190537,40730,'blocks_5_acfe_flexible_toggle',''),(190538,40730,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(190539,40730,'blocks_5_acfe_flexible_layout_title','Text Block'),(190540,40730,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(190541,40730,'blocks_5_options_theme','#b61234'),(190542,40730,'_blocks_5_options_theme','field_6176830e2ad17'),(190543,40730,'blocks_5_options',''),(190544,40730,'_blocks_5_options','field_6176830e2ad16'),(190545,40730,'blocks_5_text_block_heading','Fees & Funding Options'),(190546,40730,'_blocks_5_text_block_heading','field_617669d413097'),(190547,40730,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(190548,40730,'_blocks_5_text_block_content','field_617669ec13098'),(190549,40730,'blocks_6_acfe_flexible_toggle',''),(190550,40730,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(190551,40730,'blocks_6_acfe_flexible_layout_title','Icons'),(190552,40730,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(190553,40730,'blocks_6_options_theme','#b61234'),(190554,40730,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(190555,40730,'blocks_6_options_format','row'),(190556,40730,'_blocks_6_options_format','field_64bfde9a90690'),(190557,40730,'blocks_6_options',''),(190558,40730,'_blocks_6_options','field_64bfdd9b90684'),(190559,40730,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(190560,40730,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(190561,40730,'blocks_6_icon_row_items_0_label','Pay in Full'),(190562,40730,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(190563,40730,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(190564,40730,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(190565,40730,'blocks_6_icon_row_items_1_icon','finance.svg'),(190566,40730,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(190567,40730,'blocks_6_icon_row_items_1_label','0% finance'),(190568,40730,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(190569,40730,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(190570,40730,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(190571,40730,'blocks_6_icon_row_items_2_icon','deposit.svg'),(190572,40730,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(190573,40730,'blocks_6_icon_row_items_2_label','Deposit & balance'),(190574,40730,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(190575,40730,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(190576,40730,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(190577,40730,'blocks_6_icon_row_items','3'),(190578,40730,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(190579,40730,'blocks_7_acfe_flexible_toggle',''),(190580,40730,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(190581,40730,'blocks_7_acfe_flexible_layout_title','Steps'),(190582,40730,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(190583,40730,'blocks_7_row_content_title',''),(190584,40730,'_blocks_7_row_content_title','field_64888cd1e26e0'),(190585,40730,'blocks_7_row_content_heading','Benefits of training with us'),(190586,40730,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(190587,40730,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(190588,40730,'_blocks_7_row_content_text','field_64888ce2e26e2'),(190589,40730,'blocks_7_row_content_actions',''),(190590,40730,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(190591,40730,'blocks_7_row_content',''),(190592,40730,'_blocks_7_row_content','field_64888cb0e26df'),(190593,40730,'blocks_7_steps_0_icon','progression.svg'),(190594,40730,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(190595,40730,'blocks_7_steps_0_title','Earning potential'),(190596,40730,'_blocks_7_steps_0_title','field_64888d94e26e7'),(190597,40730,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(190598,40730,'_blocks_7_steps_0_text','field_64888d99e26e8'),(190599,40730,'blocks_7_steps_1_icon','support.svg'),(190600,40730,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(190601,40730,'blocks_7_steps_1_title','Lifetime Learning Promise'),(190602,40730,'_blocks_7_steps_1_title','field_64888d94e26e7'),(190603,40730,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(190604,40730,'_blocks_7_steps_1_text','field_64888d99e26e8'),(190605,40730,'blocks_7_steps_2_icon','qualification.svg'),(190606,40730,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(190607,40730,'blocks_7_steps_2_title','Evidence based hands on learning'),(190608,40730,'_blocks_7_steps_2_title','field_64888d94e26e7'),(190609,40730,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(190610,40730,'_blocks_7_steps_2_text','field_64888d99e26e8'),(190611,40730,'blocks_7_steps_3_icon','leaders.svg'),(190612,40730,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(190613,40730,'blocks_7_steps_3_title','Stand out from the crowd'),(190614,40730,'_blocks_7_steps_3_title','field_64888d94e26e7'),(190615,40730,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(190616,40730,'_blocks_7_steps_3_text','field_64888d99e26e8'),(190617,40730,'blocks_7_steps','4'),(190618,40730,'_blocks_7_steps','field_64888d44e26e5'),(190619,40730,'blocks_2_acfe_flexible_toggle',''),(190620,40730,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(190621,40730,'blocks_2_acfe_flexible_layout_title','Form'),(190622,40730,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(190623,40730,'blocks_2_row_content_format','standard'),(190624,40730,'_blocks_2_row_content_format','field_6481ead962881'),(190625,40730,'blocks_2_row_content_title','Ready to get started?'),(190626,40730,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(190627,40730,'blocks_2_row_content_heading','Enquire Today!'),(190628,40730,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(190629,40730,'blocks_2_row_content_text','When you fill out the form you\'ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(190630,40730,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(190631,40730,'blocks_2_row_content_actions',''),(190632,40730,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(190633,40730,'blocks_2_row_content',''),(190634,40730,'_blocks_2_row_content','field_61a0f5f5b3db0'),(190635,40730,'blocks_2_row_form','40417'),(190636,40730,'_blocks_2_row_form','field_61a4ff2c0b08e'),(190637,40730,'blocks_2_row_form_button_label',''),(190638,40730,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(190639,40730,'blocks_3_acfe_flexible_toggle',''),(190640,40730,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(190641,40730,'blocks_3_acfe_flexible_layout_title','Video'),(190642,40730,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(190643,40730,'blocks_3_size','large'),(190644,40730,'_blocks_3_size','field_6487038f297c1'),(190645,40730,'blocks_3_row_content_title',''),(190646,40730,'_blocks_3_row_content_title','field_64870132a865d'),(190647,40730,'blocks_3_row_content_heading',''),(190648,40730,'_blocks_3_row_content_heading','field_64870142a865e'),(190649,40730,'blocks_3_row_content_text',''),(190650,40730,'_blocks_3_row_content_text','field_64870148a865f'),(190651,40730,'blocks_3_row_content',''),(190652,40730,'_blocks_3_row_content','field_6487008ba865c'),(190653,40730,'blocks_3_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(190654,40730,'_blocks_3_video_src','field_6193c4a98ec07'),(190655,40730,'blocks_3_video_thumbnail',''),(190656,40730,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(190658,40732,'_edit_lock','1726734930:5'),(190659,40732,'_edit_last','5'),(190660,40732,'hide_hero','0'),(190661,40732,'_hide_hero','field_66a2380fcda39'),(190662,40732,'hero_title','Terms & Conditions'),(190663,40732,'_hero_title','field_617571fe285e8'),(190664,40732,'hero_text',''),(190665,40732,'_hero_text','field_6175723c285e9'),(190666,40732,'hero_actions',''),(190667,40732,'_hero_actions','field_61757270285ea'),(190668,40732,'hero_style','default'),(190669,40732,'_hero_style','field_62051d9dc5324'),(190671,40732,'__thumbnail_id','field_617570855ddaf'),(190672,40732,'hero_image_pos_x','right'),(190673,40732,'_hero_image_pos_x','field_62ec3d05390bb'),(190674,40732,'hero_image_pos_y','top'),(190675,40732,'_hero_image_pos_y','field_62ec3d05390bc'),(190676,40732,'hero_image_pos',''),(190677,40732,'_hero_image_pos','field_62ec3d05390ba'),(190678,40732,'fft_hide_from_listings','0'),(190679,40732,'_fft_hide_from_listings','field_61f1320446ab2'),(190680,40732,'fft_page_format','default'),(190681,40732,'_fft_page_format','field_61ae213f1f218'),(190682,40732,'fft_hide_nav','0'),(190683,40732,'_fft_hide_nav','field_635bd5e43527c'),(190684,40732,'fft_hide_header_call_to_action','0'),(190685,40732,'_fft_hide_header_call_to_action','field_635bd6723527d'),(190686,40732,'fft_page_sitemap','0'),(190687,40732,'_fft_page_sitemap','field_61af9b34e8181'),(190688,40732,'blocks','a:1:{i:0;s:10:\"text_block\";}'),(190689,40732,'_blocks','field_6176696113096'),(190690,40732,'_yoast_wpseo_estimated-reading-time-minutes','0'),(190691,40733,'hide_hero','0'),(190692,40733,'_hide_hero','field_66a2380fcda39'),(190693,40733,'hero_title','Terms & Conditions'),(190694,40733,'_hero_title','field_617571fe285e8'),(190695,40733,'hero_text',''),(190696,40733,'_hero_text','field_6175723c285e9'),(190697,40733,'hero_actions',''),(190698,40733,'_hero_actions','field_61757270285ea'),(190699,40733,'hero_style','default'),(190700,40733,'_hero_style','field_62051d9dc5324'),(190701,40733,'_thumbnail_id',''),(190702,40733,'__thumbnail_id','field_617570855ddaf'),(190703,40733,'hero_image_pos_x','right'),(190704,40733,'_hero_image_pos_x','field_62ec3d05390bb'),(190705,40733,'hero_image_pos_y','top'),(190706,40733,'_hero_image_pos_y','field_62ec3d05390bc'),(190707,40733,'hero_image_pos',''),(190708,40733,'_hero_image_pos','field_62ec3d05390ba'),(190709,40733,'fft_hide_from_listings','0'),(190710,40733,'_fft_hide_from_listings','field_61f1320446ab2'),(190711,40733,'fft_page_format','default'),(190712,40733,'_fft_page_format','field_61ae213f1f218'),(190713,40733,'fft_hide_nav','0'),(190714,40733,'_fft_hide_nav','field_635bd5e43527c'),(190715,40733,'fft_hide_header_call_to_action','0'),(190716,40733,'_fft_hide_header_call_to_action','field_635bd6723527d'),(190717,40733,'fft_page_sitemap','0'),(190718,40733,'_fft_page_sitemap','field_61af9b34e8181'),(190719,40733,'blocks',''),(190720,40733,'_blocks','field_6176696113096'),(190721,40734,'_menu_item_type','post_type'),(190722,40734,'_menu_item_menu_item_parent','0'),(190723,40734,'_menu_item_object_id','3'),(190724,40734,'_menu_item_object','page'),(190725,40734,'_menu_item_target',''),(190726,40734,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(190727,40734,'_menu_item_xfn',''),(190728,40734,'_menu_item_url',''),(190730,40735,'_menu_item_type','post_type'),(190731,40735,'_menu_item_menu_item_parent','0'),(190732,40735,'_menu_item_object_id','40732'),(190733,40735,'_menu_item_object','page'),(190734,40735,'_menu_item_target',''),(190735,40735,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(190736,40735,'_menu_item_xfn',''),(190737,40735,'_menu_item_url',''),(190739,40736,'_wp_attached_file','2024/09/Terms-Conditions-Biomechanics-Education_May-2024_v2.pdf'),(190740,40736,'_wp_attachment_metadata','a:2:{s:5:\"sizes\";a:3:{s:4:\"full\";a:5:{s:4:\"file\";s:59:\"Terms-Conditions-Biomechanics-Education_May-2024_v2-pdf.jpg\";s:5:\"width\";i:1059;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:255845;}s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Terms-Conditions-Biomechanics-Education_May-2024_v2-pdf-900x1272.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176114;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:67:\"Terms-Conditions-Biomechanics-Education_May-2024_v2-pdf-400x565.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:565;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43118;}}s:8:\"filesize\";i:340532;}'),(190748,40737,'hide_hero','0'),(190749,40737,'_hide_hero','field_66a2380fcda39'),(190750,40737,'hero_title','Terms & Conditions'),(190751,40737,'_hero_title','field_617571fe285e8'),(190752,40737,'hero_text',''),(190753,40737,'_hero_text','field_6175723c285e9'),(190754,40737,'hero_actions',''),(190755,40737,'_hero_actions','field_61757270285ea'),(190756,40737,'hero_style','default'),(190757,40737,'_hero_style','field_62051d9dc5324'),(190758,40737,'hero_image_pos_x','right'),(190759,40737,'_hero_image_pos_x','field_62ec3d05390bb'),(190760,40737,'hero_image_pos_y','top'),(190761,40737,'_hero_image_pos_y','field_62ec3d05390bc'),(190762,40737,'hero_image_pos',''),(190763,40737,'_hero_image_pos','field_62ec3d05390ba'),(190764,40737,'fft_hide_from_listings','0'),(190765,40737,'_fft_hide_from_listings','field_61f1320446ab2'),(190766,40737,'fft_page_format','default'),(190767,40737,'_fft_page_format','field_61ae213f1f218'),(190768,40737,'fft_hide_nav','0'),(190769,40737,'_fft_hide_nav','field_635bd5e43527c'),(190770,40737,'fft_hide_header_call_to_action','0'),(190771,40737,'_fft_hide_header_call_to_action','field_635bd6723527d'),(190772,40737,'fft_page_sitemap','0'),(190773,40737,'_fft_page_sitemap','field_61af9b34e8181'),(190774,40737,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(190775,40737,'_blocks','field_6176696113096'),(190776,40737,'_thumbnail_id',''),(190777,40737,'__thumbnail_id','field_617570855ddaf'),(190778,40737,'blocks_0_acfe_flexible_toggle',''),(190779,40737,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(190780,40737,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(190781,40737,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(190782,40737,'blocks_0_content','<a href=\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Terms-Conditions-Biomechanics-Education_May-2024_v2.pdf\">Terms &amp; Conditions Biomechanics Education_May 2024_v2</a>'),(190783,40737,'_blocks_0_content','field_6193c9b5eac84'),(190820,3,'_oembed_c221dcfd1666b7667f90b0a6515be4aa','{{unknown}}'),(190821,40732,'_thumbnail_id',''),(190822,40732,'blocks_0_acfe_flexible_toggle',''),(190823,40732,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(190824,40732,'blocks_0_acfe_flexible_layout_title','Text Block'),(190825,40732,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(190826,40732,'blocks_0_options_theme','#ffffff'),(190827,40732,'_blocks_0_options_theme','field_6176830e2ad17'),(190828,40732,'blocks_0_options',''),(190829,40732,'_blocks_0_options','field_6176830e2ad16'),(190830,40732,'blocks_0_text_block_heading',''),(190831,40732,'_blocks_0_text_block_heading','field_617669d413097'),(190832,40732,'blocks_0_text_block_content','Biomechanics Education, Terms and Conditions - May – 2024\r\nFurther Information\r\nGuaranteed Interview Scheme\r\nGuaranteed interviews are not currently available for Biomechanics Education graduates. However, should\r\nyou wish to allow us to use your details in future if this were to become available, please indicate your wish\r\nto be opted in for this here. If you opt in, we will send your name, email address and phone number to our\r\nGuaranteed Interview Scheme partners at the appropriate point in your training, along with your general\r\nlocation.\r\nDon\'t Miss Out\r\nLet us keep you up to date with the latest information in the industry and from Biomechanics Education, as\r\nwell as occasional promotions and special offers. Please choose your preferred\r\nmethod/s for us to send you this.\r\nNationality\r\nWe collect information on nationality for all learners and may share associated statistics with the Education\r\nand Skills Funding Agency (ESFA) without disclosing any individual personal information.\r\nEthnicity\r\nWe collect information on ethnicity for all learners and may share associated statistics with the Education\r\nand Skills Funding Agency (ESFA) without disclosing any individual personal information.\r\nDocuments Needed to Complete Your Course\r\nIf you notified us of a pre-existing medical condition, impairment or disability, have claimed exemptions\r\nand/or have prerequisites regarding your training we require all documents to be sent to us within 14 days\r\nfrom the date of your enrolment.\r\nFailure to send documents could lead to a delay in your training until these are received.\r\nTerms and Conditions of Enrolment\r\n1. Learners charter\r\n1.1 Our Commitment to You\r\nAs a learner with Biomechanics Education you can expect us to:\r\n- Provide you with first-classtraining and resources via our team of highly qualified, professional tutors\r\n- Co-ordinate yourtraining programme and provide you with regular information regarding your training throughout your time with us\r\n- Offer appropriate advice, guidance and support as you progressthrough yourstudies\r\n- Employ fair, valid and appropriate assessment methods thereby ensuring that your qualifications always remain highly respected within the industry\r\n- Ask you for your views and listen to your constructive feedback so that we can continuously enhance the quality of your courses and overall\r\nexperience with us\r\n- Communicate with you regularly to keep you abreast of company, course and training developments and encourage you to feel part of the\r\nBiomechanics Education learner community\r\n1.2 Your commitment to Biomechanics Education\r\nAs one of our learners you will:\r\n- Do your bestto make the most ofthe opportunities and facilities provided by Biomechanics Education, your courses and tutors\r\n- Participate in a friendly, professional manner and with respect for your fellow learners, tutors, assessors and venue staff\r\n- Take responsibility for managing your learning, allocating yourself sufficient study time to enable you to achieve your goals and meet the required\r\ndeadlines\r\n- Contact oursupport teams if you require help with yourstudies to give us the opportunity to assist you in the most appropriate manner\r\n- Ensure your contact and personal details are always up to date and reply promptly to our correspondence\r\n- Ensure you are medically fit and well enough to attend each session of your course or workshop. If this appears not to be the case the tutor has the right\r\nto request that you leave a session and you may incur a fee to re-book your training\r\n- Report any new or changing medical conditions to us promptly. This may result in our requesting a GP’s certification prior to you attending any courses\r\nor workshops\r\n- Ensure you do not attend any courses or workshops while underthe influence of alcohol or drugs(otherthan prescribed medication)\r\n- Attend sessions on the understanding that your tutor has the right to request you leave if they feel your behaviour is inappropriate or disruptive. Note\r\nthat under such circumstances there will be an administrative charge to re-book your training\r\n2. General terms and conditions\r\n2.1 Learners under the age of 16 may not attend any of our practical courses or workshops until their 16th birthday. Prior to that they may complete any non-practical elearning courses. Learners over the age of 16 but under the age of 18 may attend any of our practical courses or workshops with written permission from a parent or\r\nguardian.\r\n2.2 All courses and diplomas should be completed within the time frame set out below under 13.1 beginning from the date ofsigning your enrolment form. If thistime\r\nframe is exceeded a return to training fee would apply the amount of which is dependent on the course that you have enrolled on and the length of time since the\r\nBiomechanics Education, Terms and Conditions - May – 2024\r\ndeadline expired. This clause can be superseded by written agreement from both parties prior to the deadline in extenuating circumstances (for example a\r\nserious medical condition supported by the relevant documents).\r\n2.3 All course content, format and assessment is subject to change, and we reserve the right to change and work with alternative Awarding Organisation(s) or\r\nProfessional Registers where required.\r\n2.4 By signing the declaration on the Enrolment Form you have promised to pay the full amount of money for the whole training programme and failure to do so will\r\nresult in action being taken to recover the full amount outstanding for the whole training programme.\r\n2.5 You must adhere to your agreed payment plan and all courses must be paid for in full at least 4 weeks before you start them. Unless you have paid in advance, you\r\nwill not be able to start or attend a course.\r\n3. Monthly instalment scheme\r\n3.1 If you are paying monthly using Biomechanic Education’s instalment scheme, each instalment including the deposit will include a processing fee of £9, also known\r\nas the ‘staged learner fee’.\r\n3.2 Your payment schedule will determine how soon you can complete your diploma/course(s) as each course must be paid for one month in advance. You should\r\ndiscuss your payment plan with your Learner Support Adviser to make sure that it does not affect any of your booked courses.\r\n3.3 If at any stage you wish to put your training on hold you will still be required to continue your monthly payments. We do not permit ‘payment holidays’.\r\n4. Cancellation\r\n4.1 By signing the Enrolment Form you are agreeing to undertake your training. You have the right to cancel your diploma/course(s), providing we receive\r\nnotification within 14 days commencing the day after you sign the Enrolment Form. Your cancellation may be subject to charges as set out in clause 4.2. After those\r\n14 days, no cancellations are permitted and no refunds will be given.\r\n4.2 You acknowledge that if you authorise us to allow access to your training within this 14 day period any cancelation within this timeframe will be subject to charges\r\nfor all elements supplied. Supplied elements include all e-learning courses and any other courses which have been attended.\r\n4.3 When you book a diploma or package consisting of two or more courses, you are purchasing a single product. Once the first course has commenced, the whole\r\ndiploma or package is deemed to have commenced. For those courses that include online Anatomy and Physiology, the course is deemed to have commenced 14\r\ndays after the day of signing your enrolment form.\r\n4.4 If you cancel within the 14 days you must return all training materials at your own expense and all items must arrive in the condition in which you received them\r\nor you will be charged for their replacement value.\r\n4.5 If you cancel within your 14-day cancellation period, your refund will be processed within 14 working days.\r\n4.6 All training is non-transferable between different individuals.\r\n4.7 All training is non-transferable between different course products.\r\n4.8 To request cancellation within the 14-day period you may use the model cancellation form below, but this is not obligatory. Please send this to\r\ninfo@biomechanicseducation.com\r\nTo Biomechanics Education,\r\nI hereby give notice that I [name] cancel my contract of sales of the following goods [diploma or product name] and/or services [services name].\r\nOrdered on [date} and received on [date].\r\n[Full name]\r\n[Full address]\r\n[Date]\r\n5. Withdraw of credit agreement\r\n5.1 If you are paying for your training via a credit agreement and wish to withdraw from this credit agreement, please refer to the terms and conditions of your\r\ncredit agreement. Please note that this will not affect the agreement you are entering into with Biomechanics Education whereby you are agreeing to purchase your\r\ntraining.\r\n5.2 The credit agreement is between the credit provider, and you the customer.\r\n5.3 Should your credit agreement be ended by the credit provider prior to full payment of the outstanding balance, Biomechanics Education will require you to\r\npay the outstanding balance in full.\r\n6. Changesto course bookings by you (deferrals)\r\n6.1 If you need to defer your booked date on a practical course or workshop, we will do everything we can to accommodate your request. However, there will be a\r\ncharge, as detailed in the table below:\r\n6.2 If you do not contact us to arrange a deferral prior to a course, you will forfeit your place and will therefore be required to pay for the course again in full if you\r\nwish to rebook.\r\n7. Changesto course bookings by us\r\n7.1 If owing to unforeseen circumstances, Biomechanics Education is compelled to change the agreed date or venue for a practical workshop or assessment, we will\r\nendeavorto give you as much notice as possible and will take reasonable steps to book you onto the earliest available workshop or assessment. Biomechanics\r\nEducation reserves the right to change the deferral fees at any time giving the learners at least 21 days\' notice in writing of the change.\r\n7.2 Biomechanics Education is not liable for any expenses incurred by a learner following a cancellation of course or assessment. Biomechanics Education advise\r\nlearners to book accommodation and travel arrangements with free cancellation.\r\n8. Learners with additional needs\r\n8.1. Learners with additional needs, for example those with learning disabilities or difficulties, physical disabilities, existing medical conditions, those with English as a\r\nsecond language (ESL), and those with specific religious considerations, should ensure they have made this known to us prior to returning the signed Enrolment Form\r\nso we can ensure that we are able to provide the right kind of support to you throughout your training with us.\r\n8.2 Learners with disabilities and learning difficulties may request adjustments to assessments. You must provide a professional/medical report that supports the specific\r\nadjustment that you are looking for us to apply e.g. 25% extra time in exams.\r\n8.3 Pregnant learners will be able to attend all courses but may not be able to fully participate in certain practical elements on them for health and safety reasons.\r\nPlease inform the Learner Support teams as soon as you are aware of your pregnancy so that we can advise you of any amendments or/and alterations to your training.\r\nFor assessments, we may need to apply for reasonable adjustments from the relevant Awarding Organisation prior to your attendance.\r\nNumber of weeks before start of booked course:\r\nCourse 8+ weeks 0-8 weeks Non-Attendance\r\nAll practical courses and assessments No charge. Deferral fee of £50 for each day of\r\nthe practical course or workshop.\r\nFull cost ofthe practical\r\ncourse or workshop.\r\nBiomechanics Education, Terms and Conditions - May – 2024\r\n9. Approved/accredited prior learning\r\n9.1 Some courses may require prior qualifications. If you have achieved a prior qualification with another training provider, you will need to provide proof (which is\r\nsubject to approval). Please email a copy of your award certificate(s) to info@biomechanicseducation.com as soon as you can so that we can get them approved and\r\nprevent delays to you being able to undertake your training. It is your responsibility as the learners to submit your proof of prior learning promptly. If you do not\r\nhold the relevant approved prior qualification(s) as discussed with your Careers Advisor, you may need to purchase further courses to ensure you have the relevant\r\nprerequisite.\r\n9.2 Before Biomechanics Education or an Awarding Organisation can issue certificates, we must have proof that the prerequisite training has been achieved and is still\r\nvalid.\r\n10. Help with yourstudies\r\n10.1 The Learner Support teams are on hand to assist with any questions you may have regarding your training courses, training administration and payments. You\r\ncan access the relevant contact details under the ‘Support’ section once you have logged on to the Student Zone area of our website. You can also contact the\r\nLearner Support teams Monday to Friday, 9am – 6pm by phone (020 3841 6151) or email (info@biomechanicseducation.com).\r\n10.2 If you have any questions related to the course content, the Tutor Support team can provide plenty of assistance whilst you are studying and preparing for your\r\ncourse, assessment or case study. Once you have logged on to the Student Zone area of our website, you can also find their contact details in the \'Support\' section\'.\r\n10.3 For certain courses, additional support can be accessed via our closed Facebook groups. Here you can post questions, chat with other learners and view\r\nwebinars. If your course has a dedicated Facebook group, then you should receive an invitation within approximately 2 weeks upon enrolment. You can also access\r\ndetails on how to request access via the ‘Support’ section once logged on to the Student Zone area of our website.\r\n11. Written assessments and exams\r\n11.1 If, when taking an exam orsubmitting a case study or written assessment, yourfirst attempt is unsuccessful, you will be given the opportunity to retake orresubmit\r\nfree of charge. Subsequent retakes and resubmissions will however incur a charge of £50.\r\n12. Practical assessments\r\n12.1 For the Gym Instructor Assessment, PT Programming and Coaching Assessment, Sports Massage Assessment and Biomechanics Coach Assessment you must\r\nbring a friend with you to act as a participant when you demonstrate your teaching ability. For the Mat Pilates Assessment you must bring two participants. Failure to\r\ndo so may result in the assessment being cancelled and you having to pay again for a new assessment. If you fail to attend an assessment or defer an assessment\r\nwithout giving eight weeks prior notice, a fee of £50 is payable. If you fail an assessment you will be given another opportunity to retake this free of charge.\r\nSubsequent retakes will incur a charge of £50.\r\n13. Time frames and extensions\r\n13.1 All courses and diplomas should be completed within the time frame set out in the table below beginning from the date of signing your enrolment form. If this\r\ntime frame is exceeded a fee to return to training would apply, the amount of which is dependent on the course you have enrolled on and the length of time since the\r\ncourse time frame shown below expired. This clause can be superseded by written agreement from both parties prior to the deadline in\r\nextenuating circumstances (for example a serious medical condition supported by the relevant documents). All courses classified as CPD have a one year completion\r\ntime frame.\r\nBiomechanics Coach 1 Year\r\n14. Career Accelerator Package (CAP)\r\n14.1 If your course or diploma includesthe Career Accelerator Package (CAP),then the following applies:\r\nSome items included in the CAP are provided by third parties. While we make every effort to ensure that products and services are fulfilled, we are not liable to you in\r\nconnection with any third party provider. Your contract and all communications regarding the provision of these goods and services shall be direct with the third party\r\nservice provider and not with Biomechanics Education.\r\n14.2 Biomechanics Education is not responsible for any damaged goods received from a third party provider or any financial loss resulting from provision of goods\r\nand services of a third party service provider. In these instances you must contact the third party service provider directly.\r\n14.3 Goods and services included in the CAP have no cash value and cannot be exchanged for cash.\r\n14.4 While we make every effort to communicate any changes to the CAP, we reserve the right to withdraw or amend any product or service without notice at any\r\ntime.\r\n14.5 Biomechanics Education is not responsible for the use by third parties of personal data supplied to them directly by you.\r\n15. Postage costs\r\n15.1 Our course fees include any delivery charges we incur to send course materials and certificates to a UK mainland address. Please note if your course materials or\r\ncertificates have to be delivered to a non-mainland address, you accept liability for the delivery charge we will incur. This is payable prior to anything being sent. Please\r\ncontact our Support Team on 020 3841 6151 to check the delivery charges.\r\n15.2 Please note if you fail to collect your parcel from the sorting office causing it to be returned to Biomechanics Education, you will incurfurther charges.\r\n15.3 Forfurther information on costs please call the Support team on 020 3841 6151 or email info@biomechanicseducation.com\r\n16. Complaints procedure\r\n16.1 Our Support teams are here to help and will endeavour to resolve any issue as soon as they have been alerted. If they are unable to resolve the situation over\r\nthe the phone or by email, there is an established complaints procedure in place.\r\n16.2 The procedure is as follows: Following your correspondence with the Support team, they will send you an email to advise on how to send your complaint in\r\nwriting to be reviewed. If a written account has already been received, you will be sent an email confirming this has been passed on for review.\r\n16.3 Your complaint will be investigated internally with the relevant areas of Biomechanics Education and we will respond in writing to your complaint within 14\r\nworking days. In the unlikely event that our investigations are still ongoing after 14 days we will inform you of our progress and ensure that you are kept up to date.\r\nOnce we have fully investigated your complaint, we will present our findings along with any options available to you. The Support teams will also be able to guide you\r\nthrough the complaints process an answer any questions you may have.\r\nBiomechanics Education, Terms and Conditions - May – 2024\r\n17. Data protection and third parties\r\n17.1 As a learner with Biomechanics Education all personal data that you supply will be used to process your application. Your data will be used for marketing,\r\nstatistical and analytical purposes and to administer your training.\r\n17.2 If you have opted to, you will receive occasional marketing and promotional emails. You are able to opt out of marketing and promotional emails from\r\nBiomechanics Education by emailing info@biomechanicseducation.com, but you willstill receive emailsrelevant to yourtraining.\r\n17.3 In order to administer your training, your details may be sent to a limited number of third parties, including our awarding organisations.\r\n17.4 If you have opted into it, your details may be passed to a limited number of carefully selected partners that we work with. These include a number of gym chains\r\nand fitness operators who may contact you should they have any positions available in locations near you once you are a qualified; and also providers of specialist\r\nproducts and services designed to help you in your career. If you would like to opt out please email us on info@biomechanicseducation.com\r\n17.5 If you are a registered member of CIMSPA your details may be sent to them upon taking part in any CPD courses in order for them to update your records.\r\n17.6 Your data is kept on oursystems for a period of seven years from your date of order, after which it will be confidentially destroyed. Following this time, we will\r\nkeep only the data we require to continue to administer your training,such as being able to provide you with replacement certificates. Non-personal data may be kept\r\nfor analytical and statistical purposes. This does not include anything you have posted on any of our social media channels or third party websites, such as Trustpilot.\r\n17.6.1 We may be required to keep certain other information for a longer period of time, in order to be compliant with relevant regulations or requirements. We will\r\nnot keep any other information except that stated above and will only keep information that we are required to keep for as long as we are required to keep it.\r\n17.6.2 We may extend the duration that we keep your data for if we have reason do to so, such as if you have made further orders within seven years of the first\r\norder, following which most of your data will be kept for seven years from the latest order date. This is with exception to certain data related to earlier orders,such\r\nas payment information, which is kept for a maximum of seven years.\r\n17.6.3 We reserve the right to confidentially destroy data we do not find reasonable to keep earlier than seven years if we have reason to do so. This includes any\r\npayment information, which we will keep for a maximum of seven years.\r\n17.6.4 We may keep additional data about you if you have given us consent to do so separately. This includes such data as contact information for ongoing\r\nmarketing and promotional purposes if you have opted in to receiving these or testimonials you have provided.\r\n18. Image rights waiver\r\n18.1 When attending each practical workshop you will be given a form with an option to give authority to Biomechanics Education and any related companies to the\r\naforementioned, permission to use your image in any promotional materials, brochures or course content to be published publicly or internally or digitally.\r\nPermissions include still images (photographs), moving images (film video), and audio recordings. Biomechanics Education agrees that it will respect the dignity and\r\nprivacy of any images, videos or audio recording obtained.\r\n18.2 If you choose to give authority on these forms as a learner of Biomechanics Education you give perpetuity for any photography, film containing your image and\r\nany audio recording that contains your voice as part of that practical workshop. It will be the decision of Biomechanics Education when to cease using any\r\nphotography, video or audio recording (within reason). Biomechanics Education will own the copyright to any photography or video containing your image.\r\n19. Contact information\r\n19.1 If any of Biomechanics Education\'s contact information changes, we will make every reasonable effort to inform you within 14 days.\r\n19.2 You must provide us with a reasonable method of contacting you, preferably one or more of the following or a reasonable alternative agreed upon with\r\nBiomechanics Education prior to agreeing to this contract:\r\na. A valid email address\r\nb. A UK telephone number, either a standard landline or mobile\r\nc. A non-UK telephone number in conjunction with a valid email address\r\n19.3 If any of your contact information changes over the course of your training, you must make every reasonable effort to make Biomechanics Education aware\r\nwithin 14 days and provide alternative contact details.\r\n20. Medical information\r\n20.1 If you do have any pre-existing medical condition, impairment or disability, we will require a fit note from a medical professional prior to you attending any\r\npractical sessions that may form part of the enrolled course.\r\n20.2 It is your responsibility to send this fit note to us within 14 days from the date of your enrolment (unless we have agreed in writing to extend this period of time\r\npursuant to your request for an extension) to allow us time to make reasonable adjustments should they be required to the course where possible.\r\n20.3 You agree to inform Biomechanics Education of any changes in your medicalstatus. Notifications of changes must be sent to info@biomechanicseducation.com.\r\nChanges may require a fit note from a medical professional prior to you attending any further practical sessions.\r\n21. Lifetime Learning Promise\r\n21.1 As long as you are actively studying towards your qualification, we will provide you with a free extension to your learning. Active studying is considered to be\r\ncompleting any part of your learning within a six month rolling period. Completed learning could be attending a workshop or finishing a small unit of e-learning. On\r\nexpiry of your course time frame, if a six month period has passed or subsequently passes without active studying a return to training fee would apply to continue your\r\ncourse. The amount of the return to training fee is dependent on the course you have enrolled on and the length of time since the course time frame expired.\r\n21.2 Biomechanics Education’s Lifetime Learning Promise has no monetary value and is nontransferable to other organisations'),(190833,40732,'_blocks_0_text_block_content','field_617669ec13098'),(190834,40739,'hide_hero','0'),(190835,40739,'_hide_hero','field_66a2380fcda39'),(190836,40739,'hero_title','Terms & Conditions'),(190837,40739,'_hero_title','field_617571fe285e8'),(190838,40739,'hero_text',''),(190839,40739,'_hero_text','field_6175723c285e9'),(190840,40739,'hero_actions',''),(190841,40739,'_hero_actions','field_61757270285ea'),(190842,40739,'hero_style','default'),(190843,40739,'_hero_style','field_62051d9dc5324'),(190844,40739,'hero_image_pos_x','right'),(190845,40739,'_hero_image_pos_x','field_62ec3d05390bb'),(190846,40739,'hero_image_pos_y','top'),(190847,40739,'_hero_image_pos_y','field_62ec3d05390bc'),(190848,40739,'hero_image_pos',''),(190849,40739,'_hero_image_pos','field_62ec3d05390ba'),(190850,40739,'fft_hide_from_listings','0'),(190851,40739,'_fft_hide_from_listings','field_61f1320446ab2'),(190852,40739,'fft_page_format','default'),(190853,40739,'_fft_page_format','field_61ae213f1f218'),(190854,40739,'fft_hide_nav','0'),(190855,40739,'_fft_hide_nav','field_635bd5e43527c'),(190856,40739,'fft_hide_header_call_to_action','0'),(190857,40739,'_fft_hide_header_call_to_action','field_635bd6723527d'),(190858,40739,'fft_page_sitemap','0'),(190859,40739,'_fft_page_sitemap','field_61af9b34e8181'),(190860,40739,'blocks','a:1:{i:0;s:10:\"text_block\";}'),(190861,40739,'_blocks','field_6176696113096'),(190862,40739,'_thumbnail_id',''),(190863,40739,'__thumbnail_id','field_617570855ddaf'),(190864,40739,'blocks_0_acfe_flexible_toggle',''),(190865,40739,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(190866,40739,'blocks_0_acfe_flexible_layout_title','Text Block'),(190867,40739,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(190868,40739,'blocks_0_options_theme','#ffffff'),(190869,40739,'_blocks_0_options_theme','field_6176830e2ad17'),(190870,40739,'blocks_0_options',''),(190871,40739,'_blocks_0_options','field_6176830e2ad16'),(190872,40739,'blocks_0_text_block_heading',''),(190873,40739,'_blocks_0_text_block_heading','field_617669d413097'),(190874,40739,'blocks_0_text_block_content','Biomechanics Education, Terms and Conditions - May – 2024\r\nFurther Information\r\nGuaranteed Interview Scheme\r\nGuaranteed interviews are not currently available for Biomechanics Education graduates. However, should\r\nyou wish to allow us to use your details in future if this were to become available, please indicate your wish\r\nto be opted in for this here. If you opt in, we will send your name, email address and phone number to our\r\nGuaranteed Interview Scheme partners at the appropriate point in your training, along with your general\r\nlocation.\r\nDon\'t Miss Out\r\nLet us keep you up to date with the latest information in the industry and from Biomechanics Education, as\r\nwell as occasional promotions and special offers. Please choose your preferred\r\nmethod/s for us to send you this.\r\nNationality\r\nWe collect information on nationality for all learners and may share associated statistics with the Education\r\nand Skills Funding Agency (ESFA) without disclosing any individual personal information.\r\nEthnicity\r\nWe collect information on ethnicity for all learners and may share associated statistics with the Education\r\nand Skills Funding Agency (ESFA) without disclosing any individual personal information.\r\nDocuments Needed to Complete Your Course\r\nIf you notified us of a pre-existing medical condition, impairment or disability, have claimed exemptions\r\nand/or have prerequisites regarding your training we require all documents to be sent to us within 14 days\r\nfrom the date of your enrolment.\r\nFailure to send documents could lead to a delay in your training until these are received.\r\nTerms and Conditions of Enrolment\r\n1. Learners charter\r\n1.1 Our Commitment to You\r\nAs a learner with Biomechanics Education you can expect us to:\r\n- Provide you with first-classtraining and resources via our team of highly qualified, professional tutors\r\n- Co-ordinate yourtraining programme and provide you with regular information regarding your training throughout your time with us\r\n- Offer appropriate advice, guidance and support as you progressthrough yourstudies\r\n- Employ fair, valid and appropriate assessment methods thereby ensuring that your qualifications always remain highly respected within the industry\r\n- Ask you for your views and listen to your constructive feedback so that we can continuously enhance the quality of your courses and overall\r\nexperience with us\r\n- Communicate with you regularly to keep you abreast of company, course and training developments and encourage you to feel part of the\r\nBiomechanics Education learner community\r\n1.2 Your commitment to Biomechanics Education\r\nAs one of our learners you will:\r\n- Do your bestto make the most ofthe opportunities and facilities provided by Biomechanics Education, your courses and tutors\r\n- Participate in a friendly, professional manner and with respect for your fellow learners, tutors, assessors and venue staff\r\n- Take responsibility for managing your learning, allocating yourself sufficient study time to enable you to achieve your goals and meet the required\r\ndeadlines\r\n- Contact oursupport teams if you require help with yourstudies to give us the opportunity to assist you in the most appropriate manner\r\n- Ensure your contact and personal details are always up to date and reply promptly to our correspondence\r\n- Ensure you are medically fit and well enough to attend each session of your course or workshop. If this appears not to be the case the tutor has the right\r\nto request that you leave a session and you may incur a fee to re-book your training\r\n- Report any new or changing medical conditions to us promptly. This may result in our requesting a GP’s certification prior to you attending any courses\r\nor workshops\r\n- Ensure you do not attend any courses or workshops while underthe influence of alcohol or drugs(otherthan prescribed medication)\r\n- Attend sessions on the understanding that your tutor has the right to request you leave if they feel your behaviour is inappropriate or disruptive. Note\r\nthat under such circumstances there will be an administrative charge to re-book your training\r\n2. General terms and conditions\r\n2.1 Learners under the age of 16 may not attend any of our practical courses or workshops until their 16th birthday. Prior to that they may complete any non-practical elearning courses. Learners over the age of 16 but under the age of 18 may attend any of our practical courses or workshops with written permission from a parent or\r\nguardian.\r\n2.2 All courses and diplomas should be completed within the time frame set out below under 13.1 beginning from the date ofsigning your enrolment form. If thistime\r\nframe is exceeded a return to training fee would apply the amount of which is dependent on the course that you have enrolled on and the length of time since the\r\nBiomechanics Education, Terms and Conditions - May – 2024\r\ndeadline expired. This clause can be superseded by written agreement from both parties prior to the deadline in extenuating circumstances (for example a\r\nserious medical condition supported by the relevant documents).\r\n2.3 All course content, format and assessment is subject to change, and we reserve the right to change and work with alternative Awarding Organisation(s) or\r\nProfessional Registers where required.\r\n2.4 By signing the declaration on the Enrolment Form you have promised to pay the full amount of money for the whole training programme and failure to do so will\r\nresult in action being taken to recover the full amount outstanding for the whole training programme.\r\n2.5 You must adhere to your agreed payment plan and all courses must be paid for in full at least 4 weeks before you start them. Unless you have paid in advance, you\r\nwill not be able to start or attend a course.\r\n3. Monthly instalment scheme\r\n3.1 If you are paying monthly using Biomechanic Education’s instalment scheme, each instalment including the deposit will include a processing fee of £9, also known\r\nas the ‘staged learner fee’.\r\n3.2 Your payment schedule will determine how soon you can complete your diploma/course(s) as each course must be paid for one month in advance. You should\r\ndiscuss your payment plan with your Learner Support Adviser to make sure that it does not affect any of your booked courses.\r\n3.3 If at any stage you wish to put your training on hold you will still be required to continue your monthly payments. We do not permit ‘payment holidays’.\r\n4. Cancellation\r\n4.1 By signing the Enrolment Form you are agreeing to undertake your training. You have the right to cancel your diploma/course(s), providing we receive\r\nnotification within 14 days commencing the day after you sign the Enrolment Form. Your cancellation may be subject to charges as set out in clause 4.2. After those\r\n14 days, no cancellations are permitted and no refunds will be given.\r\n4.2 You acknowledge that if you authorise us to allow access to your training within this 14 day period any cancelation within this timeframe will be subject to charges\r\nfor all elements supplied. Supplied elements include all e-learning courses and any other courses which have been attended.\r\n4.3 When you book a diploma or package consisting of two or more courses, you are purchasing a single product. Once the first course has commenced, the whole\r\ndiploma or package is deemed to have commenced. For those courses that include online Anatomy and Physiology, the course is deemed to have commenced 14\r\ndays after the day of signing your enrolment form.\r\n4.4 If you cancel within the 14 days you must return all training materials at your own expense and all items must arrive in the condition in which you received them\r\nor you will be charged for their replacement value.\r\n4.5 If you cancel within your 14-day cancellation period, your refund will be processed within 14 working days.\r\n4.6 All training is non-transferable between different individuals.\r\n4.7 All training is non-transferable between different course products.\r\n4.8 To request cancellation within the 14-day period you may use the model cancellation form below, but this is not obligatory. Please send this to\r\ninfo@biomechanicseducation.com\r\nTo Biomechanics Education,\r\nI hereby give notice that I [name] cancel my contract of sales of the following goods [diploma or product name] and/or services [services name].\r\nOrdered on [date} and received on [date].\r\n[Full name]\r\n[Full address]\r\n[Date]\r\n5. Withdraw of credit agreement\r\n5.1 If you are paying for your training via a credit agreement and wish to withdraw from this credit agreement, please refer to the terms and conditions of your\r\ncredit agreement. Please note that this will not affect the agreement you are entering into with Biomechanics Education whereby you are agreeing to purchase your\r\ntraining.\r\n5.2 The credit agreement is between the credit provider, and you the customer.\r\n5.3 Should your credit agreement be ended by the credit provider prior to full payment of the outstanding balance, Biomechanics Education will require you to\r\npay the outstanding balance in full.\r\n6. Changesto course bookings by you (deferrals)\r\n6.1 If you need to defer your booked date on a practical course or workshop, we will do everything we can to accommodate your request. However, there will be a\r\ncharge, as detailed in the table below:\r\n6.2 If you do not contact us to arrange a deferral prior to a course, you will forfeit your place and will therefore be required to pay for the course again in full if you\r\nwish to rebook.\r\n7. Changesto course bookings by us\r\n7.1 If owing to unforeseen circumstances, Biomechanics Education is compelled to change the agreed date or venue for a practical workshop or assessment, we will\r\nendeavorto give you as much notice as possible and will take reasonable steps to book you onto the earliest available workshop or assessment. Biomechanics\r\nEducation reserves the right to change the deferral fees at any time giving the learners at least 21 days\' notice in writing of the change.\r\n7.2 Biomechanics Education is not liable for any expenses incurred by a learner following a cancellation of course or assessment. Biomechanics Education advise\r\nlearners to book accommodation and travel arrangements with free cancellation.\r\n8. Learners with additional needs\r\n8.1. Learners with additional needs, for example those with learning disabilities or difficulties, physical disabilities, existing medical conditions, those with English as a\r\nsecond language (ESL), and those with specific religious considerations, should ensure they have made this known to us prior to returning the signed Enrolment Form\r\nso we can ensure that we are able to provide the right kind of support to you throughout your training with us.\r\n8.2 Learners with disabilities and learning difficulties may request adjustments to assessments. You must provide a professional/medical report that supports the specific\r\nadjustment that you are looking for us to apply e.g. 25% extra time in exams.\r\n8.3 Pregnant learners will be able to attend all courses but may not be able to fully participate in certain practical elements on them for health and safety reasons.\r\nPlease inform the Learner Support teams as soon as you are aware of your pregnancy so that we can advise you of any amendments or/and alterations to your training.\r\nFor assessments, we may need to apply for reasonable adjustments from the relevant Awarding Organisation prior to your attendance.\r\nNumber of weeks before start of booked course:\r\nCourse 8+ weeks 0-8 weeks Non-Attendance\r\nAll practical courses and assessments No charge. Deferral fee of £50 for each day of\r\nthe practical course or workshop.\r\nFull cost ofthe practical\r\ncourse or workshop.\r\nBiomechanics Education, Terms and Conditions - May – 2024\r\n9. Approved/accredited prior learning\r\n9.1 Some courses may require prior qualifications. If you have achieved a prior qualification with another training provider, you will need to provide proof (which is\r\nsubject to approval). Please email a copy of your award certificate(s) to info@biomechanicseducation.com as soon as you can so that we can get them approved and\r\nprevent delays to you being able to undertake your training. It is your responsibility as the learners to submit your proof of prior learning promptly. If you do not\r\nhold the relevant approved prior qualification(s) as discussed with your Careers Advisor, you may need to purchase further courses to ensure you have the relevant\r\nprerequisite.\r\n9.2 Before Biomechanics Education or an Awarding Organisation can issue certificates, we must have proof that the prerequisite training has been achieved and is still\r\nvalid.\r\n10. Help with yourstudies\r\n10.1 The Learner Support teams are on hand to assist with any questions you may have regarding your training courses, training administration and payments. You\r\ncan access the relevant contact details under the ‘Support’ section once you have logged on to the Student Zone area of our website. You can also contact the\r\nLearner Support teams Monday to Friday, 9am – 6pm by phone (020 3841 6151) or email (info@biomechanicseducation.com).\r\n10.2 If you have any questions related to the course content, the Tutor Support team can provide plenty of assistance whilst you are studying and preparing for your\r\ncourse, assessment or case study. Once you have logged on to the Student Zone area of our website, you can also find their contact details in the \'Support\' section\'.\r\n10.3 For certain courses, additional support can be accessed via our closed Facebook groups. Here you can post questions, chat with other learners and view\r\nwebinars. If your course has a dedicated Facebook group, then you should receive an invitation within approximately 2 weeks upon enrolment. You can also access\r\ndetails on how to request access via the ‘Support’ section once logged on to the Student Zone area of our website.\r\n11. Written assessments and exams\r\n11.1 If, when taking an exam orsubmitting a case study or written assessment, yourfirst attempt is unsuccessful, you will be given the opportunity to retake orresubmit\r\nfree of charge. Subsequent retakes and resubmissions will however incur a charge of £50.\r\n12. Practical assessments\r\n12.1 For the Gym Instructor Assessment, PT Programming and Coaching Assessment, Sports Massage Assessment and Biomechanics Coach Assessment you must\r\nbring a friend with you to act as a participant when you demonstrate your teaching ability. For the Mat Pilates Assessment you must bring two participants. Failure to\r\ndo so may result in the assessment being cancelled and you having to pay again for a new assessment. If you fail to attend an assessment or defer an assessment\r\nwithout giving eight weeks prior notice, a fee of £50 is payable. If you fail an assessment you will be given another opportunity to retake this free of charge.\r\nSubsequent retakes will incur a charge of £50.\r\n13. Time frames and extensions\r\n13.1 All courses and diplomas should be completed within the time frame set out in the table below beginning from the date of signing your enrolment form. If this\r\ntime frame is exceeded a fee to return to training would apply, the amount of which is dependent on the course you have enrolled on and the length of time since the\r\ncourse time frame shown below expired. This clause can be superseded by written agreement from both parties prior to the deadline in\r\nextenuating circumstances (for example a serious medical condition supported by the relevant documents). All courses classified as CPD have a one year completion\r\ntime frame.\r\nBiomechanics Coach 1 Year\r\n14. Career Accelerator Package (CAP)\r\n14.1 If your course or diploma includesthe Career Accelerator Package (CAP),then the following applies:\r\nSome items included in the CAP are provided by third parties. While we make every effort to ensure that products and services are fulfilled, we are not liable to you in\r\nconnection with any third party provider. Your contract and all communications regarding the provision of these goods and services shall be direct with the third party\r\nservice provider and not with Biomechanics Education.\r\n14.2 Biomechanics Education is not responsible for any damaged goods received from a third party provider or any financial loss resulting from provision of goods\r\nand services of a third party service provider. In these instances you must contact the third party service provider directly.\r\n14.3 Goods and services included in the CAP have no cash value and cannot be exchanged for cash.\r\n14.4 While we make every effort to communicate any changes to the CAP, we reserve the right to withdraw or amend any product or service without notice at any\r\ntime.\r\n14.5 Biomechanics Education is not responsible for the use by third parties of personal data supplied to them directly by you.\r\n15. Postage costs\r\n15.1 Our course fees include any delivery charges we incur to send course materials and certificates to a UK mainland address. Please note if your course materials or\r\ncertificates have to be delivered to a non-mainland address, you accept liability for the delivery charge we will incur. This is payable prior to anything being sent. Please\r\ncontact our Support Team on 020 3841 6151 to check the delivery charges.\r\n15.2 Please note if you fail to collect your parcel from the sorting office causing it to be returned to Biomechanics Education, you will incurfurther charges.\r\n15.3 Forfurther information on costs please call the Support team on 020 3841 6151 or email info@biomechanicseducation.com\r\n16. Complaints procedure\r\n16.1 Our Support teams are here to help and will endeavour to resolve any issue as soon as they have been alerted. If they are unable to resolve the situation over\r\nthe the phone or by email, there is an established complaints procedure in place.\r\n16.2 The procedure is as follows: Following your correspondence with the Support team, they will send you an email to advise on how to send your complaint in\r\nwriting to be reviewed. If a written account has already been received, you will be sent an email confirming this has been passed on for review.\r\n16.3 Your complaint will be investigated internally with the relevant areas of Biomechanics Education and we will respond in writing to your complaint within 14\r\nworking days. In the unlikely event that our investigations are still ongoing after 14 days we will inform you of our progress and ensure that you are kept up to date.\r\nOnce we have fully investigated your complaint, we will present our findings along with any options available to you. The Support teams will also be able to guide you\r\nthrough the complaints process an answer any questions you may have.\r\nBiomechanics Education, Terms and Conditions - May – 2024\r\n17. Data protection and third parties\r\n17.1 As a learner with Biomechanics Education all personal data that you supply will be used to process your application. Your data will be used for marketing,\r\nstatistical and analytical purposes and to administer your training.\r\n17.2 If you have opted to, you will receive occasional marketing and promotional emails. You are able to opt out of marketing and promotional emails from\r\nBiomechanics Education by emailing info@biomechanicseducation.com, but you willstill receive emailsrelevant to yourtraining.\r\n17.3 In order to administer your training, your details may be sent to a limited number of third parties, including our awarding organisations.\r\n17.4 If you have opted into it, your details may be passed to a limited number of carefully selected partners that we work with. These include a number of gym chains\r\nand fitness operators who may contact you should they have any positions available in locations near you once you are a qualified; and also providers of specialist\r\nproducts and services designed to help you in your career. If you would like to opt out please email us on info@biomechanicseducation.com\r\n17.5 If you are a registered member of CIMSPA your details may be sent to them upon taking part in any CPD courses in order for them to update your records.\r\n17.6 Your data is kept on oursystems for a period of seven years from your date of order, after which it will be confidentially destroyed. Following this time, we will\r\nkeep only the data we require to continue to administer your training,such as being able to provide you with replacement certificates. Non-personal data may be kept\r\nfor analytical and statistical purposes. This does not include anything you have posted on any of our social media channels or third party websites, such as Trustpilot.\r\n17.6.1 We may be required to keep certain other information for a longer period of time, in order to be compliant with relevant regulations or requirements. We will\r\nnot keep any other information except that stated above and will only keep information that we are required to keep for as long as we are required to keep it.\r\n17.6.2 We may extend the duration that we keep your data for if we have reason do to so, such as if you have made further orders within seven years of the first\r\norder, following which most of your data will be kept for seven years from the latest order date. This is with exception to certain data related to earlier orders,such\r\nas payment information, which is kept for a maximum of seven years.\r\n17.6.3 We reserve the right to confidentially destroy data we do not find reasonable to keep earlier than seven years if we have reason to do so. This includes any\r\npayment information, which we will keep for a maximum of seven years.\r\n17.6.4 We may keep additional data about you if you have given us consent to do so separately. This includes such data as contact information for ongoing\r\nmarketing and promotional purposes if you have opted in to receiving these or testimonials you have provided.\r\n18. Image rights waiver\r\n18.1 When attending each practical workshop you will be given a form with an option to give authority to Biomechanics Education and any related companies to the\r\naforementioned, permission to use your image in any promotional materials, brochures or course content to be published publicly or internally or digitally.\r\nPermissions include still images (photographs), moving images (film video), and audio recordings. Biomechanics Education agrees that it will respect the dignity and\r\nprivacy of any images, videos or audio recording obtained.\r\n18.2 If you choose to give authority on these forms as a learner of Biomechanics Education you give perpetuity for any photography, film containing your image and\r\nany audio recording that contains your voice as part of that practical workshop. It will be the decision of Biomechanics Education when to cease using any\r\nphotography, video or audio recording (within reason). Biomechanics Education will own the copyright to any photography or video containing your image.\r\n19. Contact information\r\n19.1 If any of Biomechanics Education\'s contact information changes, we will make every reasonable effort to inform you within 14 days.\r\n19.2 You must provide us with a reasonable method of contacting you, preferably one or more of the following or a reasonable alternative agreed upon with\r\nBiomechanics Education prior to agreeing to this contract:\r\na. A valid email address\r\nb. A UK telephone number, either a standard landline or mobile\r\nc. A non-UK telephone number in conjunction with a valid email address\r\n19.3 If any of your contact information changes over the course of your training, you must make every reasonable effort to make Biomechanics Education aware\r\nwithin 14 days and provide alternative contact details.\r\n20. Medical information\r\n20.1 If you do have any pre-existing medical condition, impairment or disability, we will require a fit note from a medical professional prior to you attending any\r\npractical sessions that may form part of the enrolled course.\r\n20.2 It is your responsibility to send this fit note to us within 14 days from the date of your enrolment (unless we have agreed in writing to extend this period of time\r\npursuant to your request for an extension) to allow us time to make reasonable adjustments should they be required to the course where possible.\r\n20.3 You agree to inform Biomechanics Education of any changes in your medicalstatus. Notifications of changes must be sent to info@biomechanicseducation.com.\r\nChanges may require a fit note from a medical professional prior to you attending any further practical sessions.\r\n21. Lifetime Learning Promise\r\n21.1 As long as you are actively studying towards your qualification, we will provide you with a free extension to your learning. Active studying is considered to be\r\ncompleting any part of your learning within a six month rolling period. Completed learning could be attending a workshop or finishing a small unit of e-learning. On\r\nexpiry of your course time frame, if a six month period has passed or subsequently passes without active studying a return to training fee would apply to continue your\r\ncourse. The amount of the return to training fee is dependent on the course you have enrolled on and the length of time since the course time frame expired.\r\n21.2 Biomechanics Education’s Lifetime Learning Promise has no monetary value and is nontransferable to other organisations'),(190875,40739,'_blocks_0_text_block_content','field_617669ec13098'),(190904,40743,'_edit_lock','1739292542:17'),(190905,40743,'_edit_last','17'),(190906,40743,'venue_region','418'),(190907,40743,'_venue_region','field_62ea283e4cc28'),(190908,40743,'venue_address_company_address_1','Spectra health & well-being ltd'),(190909,40743,'_venue_address_company_address_1','field_62e24deabfef9'),(190910,40743,'venue_address_company_address_2','Greenbottom'),(190911,40743,'_venue_address_company_address_2','field_62e24deabfefa'),(190912,40743,'venue_address_company_address_street',''),(190913,40743,'_venue_address_company_address_street','field_62e24deabfefb'),(190914,40743,'venue_address_company_address_locality','Truro'),(190915,40743,'_venue_address_company_address_locality','field_62e24deabfefc'),(190916,40743,'venue_address_company_address_region','Cornwall'),(190917,40743,'_venue_address_company_address_region','field_62e24deabfefd'),(190918,40743,'venue_address_company_address_postcode','TR4 8QL'),(190919,40743,'_venue_address_company_address_postcode','field_62e24deabfefe'),(190920,40743,'venue_address',''),(190921,40743,'_venue_address','field_62e24de9bfef8'),(190922,40743,'venue_location','a:12:{s:7:\"address\";s:53:\"Carniggey, Greenbottom, Chacewater, Truro TR4 8QL, UK\";s:3:\"lat\";d:50.2617303;s:3:\"lng\";d:-5.132364;s:4:\"zoom\";i:4;s:8:\"place_id\";s:27:\"ChIJBwHgozgYa0gRx5pm_3oDZnQ\";s:4:\"name\";s:7:\"TR4 8QL\";s:11:\"street_name\";s:9:\"Carniggey\";s:4:\"city\";s:5:\"Truro\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"TR4 8QL\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(190923,40743,'_venue_location','field_62e24e36a82f4'),(190924,40743,'venue_tel','07555 173009'),(190925,40743,'_venue_tel','field_62e26ee1005e5'),(190926,40743,'venue_is_popup','0'),(190927,40743,'_venue_is_popup','field_63c66ffc50d7e'),(190928,39493,'blocks_0_acfe_flexible_toggle',''),(190929,39493,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(190930,39493,'blocks_0_acfe_flexible_layout_title','Text Block'),(190931,39493,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(190932,39493,'blocks_0_options_theme','#ffffff'),(190933,39493,'_blocks_0_options_theme','field_6176830e2ad17'),(190934,39493,'blocks_0_options',''),(190935,39493,'_blocks_0_options','field_6176830e2ad16'),(190936,39493,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(190937,39493,'_blocks_0_text_block_heading','field_617669d413097'),(190938,39493,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(190939,39493,'_blocks_0_text_block_content','field_617669ec13098'),(190940,39493,'blocks_1_acfe_flexible_toggle',''),(190941,39493,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(190942,39493,'blocks_1_acfe_flexible_layout_title','Venues'),(190943,39493,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(190944,39493,'blocks_1_category','a:1:{i:0;s:3:\"417\";}'),(190945,39493,'_blocks_1_category','field_6361407e17657'),(190946,39493,'blocks_1_region',''),(190947,39493,'_blocks_1_region','field_636140bd17659'),(190948,40744,'hide_hero','0'),(190949,40744,'_hide_hero','field_66a2380fcda39'),(190950,40744,'hero_title','Find a Biomechanics Coach in Your Area'),(190951,40744,'_hero_title','field_617571fe285e8'),(190952,40744,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(190953,40744,'_hero_text','field_6175723c285e9'),(190954,40744,'hero_actions',''),(190955,40744,'_hero_actions','field_61757270285ea'),(190956,40744,'hero_style','default'),(190957,40744,'_hero_style','field_62051d9dc5324'),(190958,40744,'hero_image_pos_x','right'),(190959,40744,'_hero_image_pos_x','field_62ec3d05390bb'),(190960,40744,'hero_image_pos_y','top'),(190961,40744,'_hero_image_pos_y','field_62ec3d05390bc'),(190962,40744,'hero_image_pos',''),(190963,40744,'_hero_image_pos','field_62ec3d05390ba'),(190964,40744,'fft_hide_from_listings','0'),(190965,40744,'_fft_hide_from_listings','field_61f1320446ab2'),(190966,40744,'fft_page_format','default'),(190967,40744,'_fft_page_format','field_61ae213f1f218'),(190968,40744,'fft_hide_nav','0'),(190969,40744,'_fft_hide_nav','field_635bd5e43527c'),(190970,40744,'fft_hide_header_call_to_action','0'),(190971,40744,'_fft_hide_header_call_to_action','field_635bd6723527d'),(190972,40744,'fft_page_sitemap','0'),(190973,40744,'_fft_page_sitemap','field_61af9b34e8181'),(190974,40744,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(190975,40744,'_blocks','field_6176696113096'),(190976,40744,'_thumbnail_id','40447'),(190977,40744,'__thumbnail_id','field_617570855ddaf'),(190978,40744,'blocks_0_acfe_flexible_toggle',''),(190979,40744,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(190980,40744,'blocks_0_acfe_flexible_layout_title','Text Block'),(190981,40744,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(190982,40744,'blocks_0_options_theme','#ffffff'),(190983,40744,'_blocks_0_options_theme','field_6176830e2ad17'),(190984,40744,'blocks_0_options',''),(190985,40744,'_blocks_0_options','field_6176830e2ad16'),(190986,40744,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(190987,40744,'_blocks_0_text_block_heading','field_617669d413097'),(190988,40744,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(190989,40744,'_blocks_0_text_block_content','field_617669ec13098'),(190990,40744,'blocks_1_acfe_flexible_toggle',''),(190991,40744,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(190992,40744,'blocks_1_acfe_flexible_layout_title','Venues'),(190993,40744,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(190994,40744,'blocks_1_category','a:1:{i:0;s:3:\"415\";}'),(190995,40744,'_blocks_1_category','field_6361407e17657'),(190996,40744,'blocks_1_region',''),(190997,40744,'_blocks_1_region','field_636140bd17659'),(190998,40745,'hide_hero','0'),(190999,40745,'_hide_hero','field_66a2380fcda39'),(191000,40745,'hero_title','Find a Biomechanics Coach in Your Area'),(191001,40745,'_hero_title','field_617571fe285e8'),(191002,40745,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(191003,40745,'_hero_text','field_6175723c285e9'),(191004,40745,'hero_actions',''),(191005,40745,'_hero_actions','field_61757270285ea'),(191006,40745,'hero_style','default'),(191007,40745,'_hero_style','field_62051d9dc5324'),(191008,40745,'hero_image_pos_x','right'),(191009,40745,'_hero_image_pos_x','field_62ec3d05390bb'),(191010,40745,'hero_image_pos_y','top'),(191011,40745,'_hero_image_pos_y','field_62ec3d05390bc'),(191012,40745,'hero_image_pos',''),(191013,40745,'_hero_image_pos','field_62ec3d05390ba'),(191014,40745,'fft_hide_from_listings','0'),(191015,40745,'_fft_hide_from_listings','field_61f1320446ab2'),(191016,40745,'fft_page_format','default'),(191017,40745,'_fft_page_format','field_61ae213f1f218'),(191018,40745,'fft_hide_nav','0'),(191019,40745,'_fft_hide_nav','field_635bd5e43527c'),(191020,40745,'fft_hide_header_call_to_action','0'),(191021,40745,'_fft_hide_header_call_to_action','field_635bd6723527d'),(191022,40745,'fft_page_sitemap','0'),(191023,40745,'_fft_page_sitemap','field_61af9b34e8181'),(191024,40745,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(191025,40745,'_blocks','field_6176696113096'),(191026,40745,'_thumbnail_id','40447'),(191027,40745,'__thumbnail_id','field_617570855ddaf'),(191028,40745,'blocks_0_acfe_flexible_toggle',''),(191029,40745,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(191030,40745,'blocks_0_acfe_flexible_layout_title','Text Block'),(191031,40745,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(191032,40745,'blocks_0_options_theme','#ffffff'),(191033,40745,'_blocks_0_options_theme','field_6176830e2ad17'),(191034,40745,'blocks_0_options',''),(191035,40745,'_blocks_0_options','field_6176830e2ad16'),(191036,40745,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(191037,40745,'_blocks_0_text_block_heading','field_617669d413097'),(191038,40745,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(191039,40745,'_blocks_0_text_block_content','field_617669ec13098'),(191040,40745,'blocks_1_acfe_flexible_toggle',''),(191041,40745,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(191042,40745,'blocks_1_acfe_flexible_layout_title','Venues'),(191043,40745,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(191044,40745,'blocks_1_category','a:1:{i:0;s:3:\"415\";}'),(191045,40745,'_blocks_1_category','field_6361407e17657'),(191046,40745,'blocks_1_region','a:1:{i:0;s:3:\"414\";}'),(191047,40745,'_blocks_1_region','field_636140bd17659'),(191048,40746,'_edit_lock','1739292687:17'),(191049,40746,'_edit_last','17'),(191050,40746,'venue_region','418'),(191051,40746,'_venue_region','field_62ea283e4cc28'),(191052,40746,'venue_address_company_address_1','2 Royal Oak'),(191053,40746,'_venue_address_company_address_1','field_62e24deabfef9'),(191054,40746,'venue_address_company_address_2','Stratton'),(191055,40746,'_venue_address_company_address_2','field_62e24deabfefa'),(191056,40746,'venue_address_company_address_street',''),(191057,40746,'_venue_address_company_address_street','field_62e24deabfefb'),(191058,40746,'venue_address_company_address_locality','Bude'),(191059,40746,'_venue_address_company_address_locality','field_62e24deabfefc'),(191060,40746,'venue_address_company_address_region','Launcells'),(191061,40746,'_venue_address_company_address_region','field_62e24deabfefd'),(191062,40746,'venue_address_company_address_postcode','EX23 9NP'),(191063,40746,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191064,40746,'venue_address',''),(191065,40746,'_venue_address','field_62e24de9bfef8'),(191066,40746,'venue_location','a:12:{s:7:\"address\";s:38:\"Royal Oak, Stratton, Bude EX23 9NP, UK\";s:3:\"lat\";d:50.8165387;s:3:\"lng\";d:-4.481398;s:4:\"zoom\";i:7;s:8:\"place_id\";s:27:\"ChIJqZnxgT5xbEgRpNx-2ftShcc\";s:4:\"name\";s:8:\"EX23 9NP\";s:11:\"street_name\";s:9:\"Royal Oak\";s:4:\"city\";s:4:\"Bude\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"EX23 9NP\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191067,40746,'_venue_location','field_62e24e36a82f4'),(191068,40746,'venue_tel','07800780039'),(191069,40746,'_venue_tel','field_62e26ee1005e5'),(191070,40746,'venue_is_popup','0'),(191071,40746,'_venue_is_popup','field_63c66ffc50d7e'),(191072,40747,'hide_hero','0'),(191073,40747,'_hide_hero','field_66a2380fcda39'),(191074,40747,'hero_title','Find a Biomechanics Coach in Your Area'),(191075,40747,'_hero_title','field_617571fe285e8'),(191076,40747,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(191077,40747,'_hero_text','field_6175723c285e9'),(191078,40747,'hero_actions',''),(191079,40747,'_hero_actions','field_61757270285ea'),(191080,40747,'hero_style','default'),(191081,40747,'_hero_style','field_62051d9dc5324'),(191082,40747,'hero_image_pos_x','right'),(191083,40747,'_hero_image_pos_x','field_62ec3d05390bb'),(191084,40747,'hero_image_pos_y','top'),(191085,40747,'_hero_image_pos_y','field_62ec3d05390bc'),(191086,40747,'hero_image_pos',''),(191087,40747,'_hero_image_pos','field_62ec3d05390ba'),(191088,40747,'fft_hide_from_listings','0'),(191089,40747,'_fft_hide_from_listings','field_61f1320446ab2'),(191090,40747,'fft_page_format','default'),(191091,40747,'_fft_page_format','field_61ae213f1f218'),(191092,40747,'fft_hide_nav','0'),(191093,40747,'_fft_hide_nav','field_635bd5e43527c'),(191094,40747,'fft_hide_header_call_to_action','0'),(191095,40747,'_fft_hide_header_call_to_action','field_635bd6723527d'),(191096,40747,'fft_page_sitemap','0'),(191097,40747,'_fft_page_sitemap','field_61af9b34e8181'),(191098,40747,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(191099,40747,'_blocks','field_6176696113096'),(191100,40747,'_thumbnail_id','40447'),(191101,40747,'__thumbnail_id','field_617570855ddaf'),(191102,40747,'blocks_0_acfe_flexible_toggle',''),(191103,40747,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(191104,40747,'blocks_0_acfe_flexible_layout_title','Text Block'),(191105,40747,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(191106,40747,'blocks_0_options_theme','#ffffff'),(191107,40747,'_blocks_0_options_theme','field_6176830e2ad17'),(191108,40747,'blocks_0_options',''),(191109,40747,'_blocks_0_options','field_6176830e2ad16'),(191110,40747,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(191111,40747,'_blocks_0_text_block_heading','field_617669d413097'),(191112,40747,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(191113,40747,'_blocks_0_text_block_content','field_617669ec13098'),(191114,40747,'blocks_1_acfe_flexible_toggle',''),(191115,40747,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(191116,40747,'blocks_1_acfe_flexible_layout_title','Venues'),(191117,40747,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(191118,40747,'blocks_1_category','a:1:{i:0;s:3:\"415\";}'),(191119,40747,'_blocks_1_category','field_6361407e17657'),(191120,40747,'blocks_1_region','a:1:{i:0;s:3:\"416\";}'),(191121,40747,'_blocks_1_region','field_636140bd17659'),(191122,40748,'hide_hero','0'),(191123,40748,'_hide_hero','field_66a2380fcda39'),(191124,40748,'hero_title','Find a Biomechanics Coach in Your Area'),(191125,40748,'_hero_title','field_617571fe285e8'),(191126,40748,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(191127,40748,'_hero_text','field_6175723c285e9'),(191128,40748,'hero_actions',''),(191129,40748,'_hero_actions','field_61757270285ea'),(191130,40748,'hero_style','default'),(191131,40748,'_hero_style','field_62051d9dc5324'),(191132,40748,'hero_image_pos_x','right'),(191133,40748,'_hero_image_pos_x','field_62ec3d05390bb'),(191134,40748,'hero_image_pos_y','top'),(191135,40748,'_hero_image_pos_y','field_62ec3d05390bc'),(191136,40748,'hero_image_pos',''),(191137,40748,'_hero_image_pos','field_62ec3d05390ba'),(191138,40748,'fft_hide_from_listings','0'),(191139,40748,'_fft_hide_from_listings','field_61f1320446ab2'),(191140,40748,'fft_page_format','default'),(191141,40748,'_fft_page_format','field_61ae213f1f218'),(191142,40748,'fft_hide_nav','0'),(191143,40748,'_fft_hide_nav','field_635bd5e43527c'),(191144,40748,'fft_hide_header_call_to_action','0'),(191145,40748,'_fft_hide_header_call_to_action','field_635bd6723527d'),(191146,40748,'fft_page_sitemap','0'),(191147,40748,'_fft_page_sitemap','field_61af9b34e8181'),(191148,40748,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(191149,40748,'_blocks','field_6176696113096'),(191150,40748,'_thumbnail_id','40447'),(191151,40748,'__thumbnail_id','field_617570855ddaf'),(191152,40748,'blocks_0_acfe_flexible_toggle',''),(191153,40748,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(191154,40748,'blocks_0_acfe_flexible_layout_title','Text Block'),(191155,40748,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(191156,40748,'blocks_0_options_theme','#ffffff'),(191157,40748,'_blocks_0_options_theme','field_6176830e2ad17'),(191158,40748,'blocks_0_options',''),(191159,40748,'_blocks_0_options','field_6176830e2ad16'),(191160,40748,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(191161,40748,'_blocks_0_text_block_heading','field_617669d413097'),(191162,40748,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(191163,40748,'_blocks_0_text_block_content','field_617669ec13098'),(191164,40748,'blocks_1_acfe_flexible_toggle',''),(191165,40748,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(191166,40748,'blocks_1_acfe_flexible_layout_title','Venues'),(191167,40748,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(191168,40748,'blocks_1_category',''),(191169,40748,'_blocks_1_category','field_6361407e17657'),(191170,40748,'blocks_1_region','a:1:{i:0;s:3:\"416\";}'),(191171,40748,'_blocks_1_region','field_636140bd17659'),(191172,40749,'hide_hero','0'),(191173,40749,'_hide_hero','field_66a2380fcda39'),(191174,40749,'hero_title','Find a Biomechanics Coach in Your Area'),(191175,40749,'_hero_title','field_617571fe285e8'),(191176,40749,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(191177,40749,'_hero_text','field_6175723c285e9'),(191178,40749,'hero_actions',''),(191179,40749,'_hero_actions','field_61757270285ea'),(191180,40749,'hero_style','default'),(191181,40749,'_hero_style','field_62051d9dc5324'),(191182,40749,'hero_image_pos_x','right'),(191183,40749,'_hero_image_pos_x','field_62ec3d05390bb'),(191184,40749,'hero_image_pos_y','top'),(191185,40749,'_hero_image_pos_y','field_62ec3d05390bc'),(191186,40749,'hero_image_pos',''),(191187,40749,'_hero_image_pos','field_62ec3d05390ba'),(191188,40749,'fft_hide_from_listings','0'),(191189,40749,'_fft_hide_from_listings','field_61f1320446ab2'),(191190,40749,'fft_page_format','default'),(191191,40749,'_fft_page_format','field_61ae213f1f218'),(191192,40749,'fft_hide_nav','0'),(191193,40749,'_fft_hide_nav','field_635bd5e43527c'),(191194,40749,'fft_hide_header_call_to_action','0'),(191195,40749,'_fft_hide_header_call_to_action','field_635bd6723527d'),(191196,40749,'fft_page_sitemap','0'),(191197,40749,'_fft_page_sitemap','field_61af9b34e8181'),(191198,40749,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(191199,40749,'_blocks','field_6176696113096'),(191200,40749,'_thumbnail_id','40447'),(191201,40749,'__thumbnail_id','field_617570855ddaf'),(191202,40749,'blocks_0_acfe_flexible_toggle',''),(191203,40749,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(191204,40749,'blocks_0_acfe_flexible_layout_title','Text Block'),(191205,40749,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(191206,40749,'blocks_0_options_theme','#ffffff'),(191207,40749,'_blocks_0_options_theme','field_6176830e2ad17'),(191208,40749,'blocks_0_options',''),(191209,40749,'_blocks_0_options','field_6176830e2ad16'),(191210,40749,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(191211,40749,'_blocks_0_text_block_heading','field_617669d413097'),(191212,40749,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(191213,40749,'_blocks_0_text_block_content','field_617669ec13098'),(191214,40749,'blocks_1_acfe_flexible_toggle',''),(191215,40749,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(191216,40749,'blocks_1_acfe_flexible_layout_title','Venues'),(191217,40749,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(191218,40749,'blocks_1_category','a:1:{i:0;s:3:\"415\";}'),(191219,40749,'_blocks_1_category','field_6361407e17657'),(191220,40749,'blocks_1_region','a:1:{i:0;s:3:\"414\";}'),(191221,40749,'_blocks_1_region','field_636140bd17659'),(191222,40750,'hide_hero','0'),(191223,40750,'_hide_hero','field_66a2380fcda39'),(191224,40750,'hero_title','Find a Biomechanics Coach in Your Area'),(191225,40750,'_hero_title','field_617571fe285e8'),(191226,40750,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(191227,40750,'_hero_text','field_6175723c285e9'),(191228,40750,'hero_actions',''),(191229,40750,'_hero_actions','field_61757270285ea'),(191230,40750,'hero_style','default'),(191231,40750,'_hero_style','field_62051d9dc5324'),(191232,40750,'hero_image_pos_x','right'),(191233,40750,'_hero_image_pos_x','field_62ec3d05390bb'),(191234,40750,'hero_image_pos_y','top'),(191235,40750,'_hero_image_pos_y','field_62ec3d05390bc'),(191236,40750,'hero_image_pos',''),(191237,40750,'_hero_image_pos','field_62ec3d05390ba'),(191238,40750,'fft_hide_from_listings','0'),(191239,40750,'_fft_hide_from_listings','field_61f1320446ab2'),(191240,40750,'fft_page_format','default'),(191241,40750,'_fft_page_format','field_61ae213f1f218'),(191242,40750,'fft_hide_nav','0'),(191243,40750,'_fft_hide_nav','field_635bd5e43527c'),(191244,40750,'fft_hide_header_call_to_action','0'),(191245,40750,'_fft_hide_header_call_to_action','field_635bd6723527d'),(191246,40750,'fft_page_sitemap','0'),(191247,40750,'_fft_page_sitemap','field_61af9b34e8181'),(191248,40750,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(191249,40750,'_blocks','field_6176696113096'),(191250,40750,'_thumbnail_id','40447'),(191251,40750,'__thumbnail_id','field_617570855ddaf'),(191252,40750,'blocks_0_acfe_flexible_toggle',''),(191253,40750,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(191254,40750,'blocks_0_acfe_flexible_layout_title','Text Block'),(191255,40750,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(191256,40750,'blocks_0_options_theme','#ffffff'),(191257,40750,'_blocks_0_options_theme','field_6176830e2ad17'),(191258,40750,'blocks_0_options',''),(191259,40750,'_blocks_0_options','field_6176830e2ad16'),(191260,40750,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(191261,40750,'_blocks_0_text_block_heading','field_617669d413097'),(191262,40750,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(191263,40750,'_blocks_0_text_block_content','field_617669ec13098'),(191264,40750,'blocks_1_acfe_flexible_toggle',''),(191265,40750,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(191266,40750,'blocks_1_acfe_flexible_layout_title','Venues'),(191267,40750,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(191268,40750,'blocks_1_category','a:1:{i:0;s:3:\"417\";}'),(191269,40750,'_blocks_1_category','field_6361407e17657'),(191270,40750,'blocks_1_region',''),(191271,40750,'_blocks_1_region','field_636140bd17659'),(191272,40751,'_edit_lock','1739292686:17'),(191273,40751,'_edit_last','17'),(191274,40751,'venue_region','419'),(191275,40751,'_venue_region','field_62ea283e4cc28'),(191276,40751,'venue_address_company_address_1','24 Greenacres'),(191277,40751,'_venue_address_company_address_1','field_62e24deabfef9'),(191278,40751,'venue_address_company_address_2',''),(191279,40751,'_venue_address_company_address_2','field_62e24deabfefa'),(191280,40751,'venue_address_company_address_street',''),(191281,40751,'_venue_address_company_address_street','field_62e24deabfefb'),(191282,40751,'venue_address_company_address_locality','Puriton'),(191283,40751,'_venue_address_company_address_locality','field_62e24deabfefc'),(191284,40751,'venue_address_company_address_region','Somerset'),(191285,40751,'_venue_address_company_address_region','field_62e24deabfefd'),(191286,40751,'venue_address_company_address_postcode','TA7 8FN'),(191287,40751,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191288,40751,'venue_address',''),(191289,40751,'_venue_address','field_62e24de9bfef8'),(191290,40751,'venue_location','a:11:{s:7:\"address\";s:22:\"Bridgwater TA7 8FN, UK\";s:3:\"lat\";d:51.1700666;s:3:\"lng\";d:-2.9777728;s:4:\"zoom\";i:7;s:8:\"place_id\";s:27:\"ChIJLa4mtWUGckgRlXVsCliae0U\";s:4:\"name\";s:7:\"TA7 8FN\";s:4:\"city\";s:10:\"Bridgwater\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"TA7 8FN\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191291,40751,'_venue_location','field_62e24e36a82f4'),(191292,40751,'venue_tel','07989 371796'),(191293,40751,'_venue_tel','field_62e26ee1005e5'),(191294,40751,'venue_is_popup','0'),(191295,40751,'_venue_is_popup','field_63c66ffc50d7e'),(191296,40752,'_edit_lock','1739292686:17'),(191297,40752,'_edit_last','17'),(191298,40752,'venue_region','420'),(191299,40752,'_venue_region','field_62ea283e4cc28'),(191300,40752,'venue_address_company_address_1',''),(191301,40752,'_venue_address_company_address_1','field_62e24deabfef9'),(191302,40752,'venue_address_company_address_2',''),(191303,40752,'_venue_address_company_address_2','field_62e24deabfefa'),(191304,40752,'venue_address_company_address_street',''),(191305,40752,'_venue_address_company_address_street','field_62e24deabfefb'),(191306,40752,'venue_address_company_address_locality',''),(191307,40752,'_venue_address_company_address_locality','field_62e24deabfefc'),(191308,40752,'venue_address_company_address_region','Bradford-on-Avon'),(191309,40752,'_venue_address_company_address_region','field_62e24deabfefd'),(191310,40752,'venue_address_company_address_postcode','BA15 2AY'),(191311,40752,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191312,40752,'venue_address',''),(191313,40752,'_venue_address','field_62e24de9bfef8'),(191314,40752,'venue_location','a:11:{s:7:\"address\";s:29:\"Bradford-on-Avon BA15 2AY, UK\";s:3:\"lat\";d:51.3358291;s:3:\"lng\";d:-2.2514416;s:4:\"zoom\";i:4;s:8:\"place_id\";s:27:\"ChIJMVZpKdB_cUgRF_wTmTX7psg\";s:4:\"name\";s:8:\"BA15 2AY\";s:4:\"city\";s:16:\"Bradford-on-Avon\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"BA15 2AY\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191315,40752,'_venue_location','field_62e24e36a82f4'),(191316,40752,'venue_tel','07828 448627'),(191317,40752,'_venue_tel','field_62e26ee1005e5'),(191318,40752,'venue_is_popup','0'),(191319,40752,'_venue_is_popup','field_63c66ffc50d7e'),(191320,40753,'_edit_lock','1739292541:17'),(191321,40753,'_edit_last','17'),(191322,40753,'venue_region','421'),(191323,40753,'_venue_region','field_62ea283e4cc28'),(191324,40753,'venue_address_company_address_1',''),(191325,40753,'_venue_address_company_address_1','field_62e24deabfef9'),(191326,40753,'venue_address_company_address_2',''),(191327,40753,'_venue_address_company_address_2','field_62e24deabfefa'),(191328,40753,'venue_address_company_address_street','Southsea'),(191329,40753,'_venue_address_company_address_street','field_62e24deabfefb'),(191330,40753,'venue_address_company_address_locality','Portsmouth'),(191331,40753,'_venue_address_company_address_locality','field_62e24deabfefc'),(191332,40753,'venue_address_company_address_region','Hampshire'),(191333,40753,'_venue_address_company_address_region','field_62e24deabfefd'),(191334,40753,'venue_address_company_address_postcode','PO5 1RS'),(191335,40753,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191336,40753,'venue_address',''),(191337,40753,'_venue_address','field_62e24de9bfef8'),(191338,40753,'venue_location','a:13:{s:7:\"address\";s:60:\"Livingstone Road, Southsea, Portsmouth, Southsea PO5 1RS, UK\";s:3:\"lat\";d:50.7910099;s:3:\"lng\";d:-1.0794653;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJ5ZmM9KRddEgRVRAr5kVEsFw\";s:4:\"name\";s:7:\"PO5 1RS\";s:11:\"street_name\";s:16:\"Livingstone Road\";s:17:\"street_name_short\";s:14:\"Livingstone Rd\";s:4:\"city\";s:8:\"Southsea\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"PO5 1RS\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191339,40753,'_venue_location','field_62e24e36a82f4'),(191340,40753,'venue_tel','07977 335373'),(191341,40753,'_venue_tel','field_62e26ee1005e5'),(191342,40753,'venue_is_popup','0'),(191343,40753,'_venue_is_popup','field_63c66ffc50d7e'),(191344,40754,'_edit_lock','1739292540:17'),(191345,40754,'_edit_last','17'),(191346,40754,'venue_region','422'),(191347,40754,'_venue_region','field_62ea283e4cc28'),(191348,40754,'venue_address_company_address_1',''),(191349,40754,'_venue_address_company_address_1','field_62e24deabfef9'),(191350,40754,'venue_address_company_address_2',''),(191351,40754,'_venue_address_company_address_2','field_62e24deabfefa'),(191352,40754,'venue_address_company_address_street',''),(191353,40754,'_venue_address_company_address_street','field_62e24deabfefb'),(191354,40754,'venue_address_company_address_locality','Fernhurst'),(191355,40754,'_venue_address_company_address_locality','field_62e24deabfefc'),(191356,40754,'venue_address_company_address_region','West Sussex'),(191357,40754,'_venue_address_company_address_region','field_62e24deabfefd'),(191358,40754,'venue_address_company_address_postcode',''),(191359,40754,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191360,40754,'venue_address',''),(191361,40754,'_venue_address','field_62e24de9bfef8'),(191362,40754,'venue_location','a:9:{s:7:\"address\";s:15:\"West Sussex, UK\";s:3:\"lat\";d:50.969873;s:3:\"lng\";d:-0.4159547;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJf5cWR0NY30cRwn257Oarqa4\";s:4:\"name\";s:11:\"West Sussex\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191363,40754,'_venue_location','field_62e24e36a82f4'),(191364,40754,'venue_tel','07388642465'),(191365,40754,'_venue_tel','field_62e26ee1005e5'),(191366,40754,'venue_is_popup','0'),(191367,40754,'_venue_is_popup','field_63c66ffc50d7e'),(191368,40755,'_edit_lock','1739292540:17'),(191369,40755,'_edit_last','17'),(191370,40755,'venue_region','422'),(191371,40755,'_venue_region','field_62ea283e4cc28'),(191372,40755,'venue_address_company_address_1','Tarring Road'),(191373,40755,'_venue_address_company_address_1','field_62e24deabfef9'),(191374,40755,'venue_address_company_address_2',''),(191375,40755,'_venue_address_company_address_2','field_62e24deabfefa'),(191376,40755,'venue_address_company_address_street',''),(191377,40755,'_venue_address_company_address_street','field_62e24deabfefb'),(191378,40755,'venue_address_company_address_locality','Worthing'),(191379,40755,'_venue_address_company_address_locality','field_62e24deabfefc'),(191380,40755,'venue_address_company_address_region',''),(191381,40755,'_venue_address_company_address_region','field_62e24deabfefd'),(191382,40755,'venue_address_company_address_postcode','BN11 5JG'),(191383,40755,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191384,40755,'venue_address',''),(191385,40755,'_venue_address','field_62e24de9bfef8'),(191386,40755,'venue_location','a:13:{s:7:\"address\";s:35:\"Tarring Road, Worthing BN11 5JG, UK\";s:3:\"lat\";d:50.81774189999999;s:3:\"lng\";d:-0.3955929;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJcz3kF-yidUgRuhs_x_I3kZk\";s:4:\"name\";s:8:\"BN11 5JG\";s:11:\"street_name\";s:12:\"Tarring Road\";s:17:\"street_name_short\";s:10:\"Tarring Rd\";s:4:\"city\";s:8:\"Worthing\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"BN11 5JG\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191387,40755,'_venue_location','field_62e24e36a82f4'),(191388,40755,'venue_tel','07877 564240'),(191389,40755,'_venue_tel','field_62e26ee1005e5'),(191390,40755,'venue_is_popup','0'),(191391,40755,'_venue_is_popup','field_63c66ffc50d7e'),(191392,40756,'_edit_lock','1739292540:17'),(191393,40756,'_edit_last','17'),(191394,40756,'venue_region','423'),(191395,40756,'_venue_region','field_62ea283e4cc28'),(191396,40756,'venue_address_company_address_1','Elstow Avenue'),(191397,40756,'_venue_address_company_address_1','field_62e24deabfef9'),(191398,40756,'venue_address_company_address_2',''),(191399,40756,'_venue_address_company_address_2','field_62e24deabfefa'),(191400,40756,'venue_address_company_address_street',''),(191401,40756,'_venue_address_company_address_street','field_62e24deabfefb'),(191402,40756,'venue_address_company_address_locality','Caversham'),(191403,40756,'_venue_address_company_address_locality','field_62e24deabfefc'),(191404,40756,'venue_address_company_address_region','Reading'),(191405,40756,'_venue_address_company_address_region','field_62e24deabfefd'),(191406,40756,'venue_address_company_address_postcode','RG4 6RX'),(191407,40756,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191408,40756,'venue_address',''),(191409,40756,'_venue_address','field_62e24de9bfef8'),(191410,40756,'venue_location','a:13:{s:7:\"address\";s:45:\"Elstow Avenue, Caversham, Reading RG4 6RX, UK\";s:3:\"lat\";d:51.4846398;s:3:\"lng\";d:-0.9588187;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJiYmW_sWadkgRFL5CHiiIHME\";s:4:\"name\";s:7:\"RG4 6RX\";s:11:\"street_name\";s:13:\"Elstow Avenue\";s:17:\"street_name_short\";s:10:\"Elstow Ave\";s:4:\"city\";s:7:\"Reading\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"RG4 6RX\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191411,40756,'_venue_location','field_62e24e36a82f4'),(191412,40756,'venue_tel','07800124003'),(191413,40756,'_venue_tel','field_62e26ee1005e5'),(191414,40756,'venue_is_popup','0'),(191415,40756,'_venue_is_popup','field_63c66ffc50d7e'),(191416,40757,'_edit_lock','1739292539:17'),(191417,40757,'_edit_last','17'),(191418,40757,'venue_region','424'),(191419,40757,'_venue_region','field_62ea283e4cc28'),(191420,40757,'venue_address_company_address_1','The Flag Store'),(191421,40757,'_venue_address_company_address_1','field_62e24deabfef9'),(191422,40757,'venue_address_company_address_2','23 Queen Elizabeth Street'),(191423,40757,'_venue_address_company_address_2','field_62e24deabfefa'),(191424,40757,'venue_address_company_address_street',''),(191425,40757,'_venue_address_company_address_street','field_62e24deabfefb'),(191426,40757,'venue_address_company_address_locality','London'),(191427,40757,'_venue_address_company_address_locality','field_62e24deabfefc'),(191428,40757,'venue_address_company_address_region','London'),(191429,40757,'_venue_address_company_address_region','field_62e24deabfefd'),(191430,40757,'venue_address_company_address_postcode','SE12LP'),(191431,40757,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191432,40757,'venue_address',''),(191433,40757,'_venue_address','field_62e24de9bfef8'),(191434,40757,'venue_location','a:13:{s:7:\"address\";s:42:\"Queen Elizabeth Street, London SE1 2LP, UK\";s:3:\"lat\";d:51.5026603;s:3:\"lng\";d:-0.07603549999999999;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJZ_sRd0YDdkgR_2mrnG3TIlw\";s:4:\"name\";s:7:\"SE1 2LP\";s:11:\"street_name\";s:22:\"Queen Elizabeth Street\";s:17:\"street_name_short\";s:18:\"Queen Elizabeth St\";s:4:\"city\";s:6:\"London\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"SE1 2LP\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191435,40757,'_venue_location','field_62e24e36a82f4'),(191436,40757,'venue_tel',''),(191437,40757,'_venue_tel','field_62e26ee1005e5'),(191438,40757,'venue_is_popup','0'),(191439,40757,'_venue_is_popup','field_63c66ffc50d7e'),(191440,40758,'_edit_lock','1739292539:17'),(191441,40758,'_edit_last','17'),(191442,40758,'venue_region','424'),(191443,40758,'_venue_region','field_62ea283e4cc28'),(191444,40758,'venue_address_company_address_1','99 Retford Road'),(191445,40758,'_venue_address_company_address_1','field_62e24deabfef9'),(191446,40758,'venue_address_company_address_2',''),(191447,40758,'_venue_address_company_address_2','field_62e24deabfefa'),(191448,40758,'venue_address_company_address_street',''),(191449,40758,'_venue_address_company_address_street','field_62e24deabfefb'),(191450,40758,'venue_address_company_address_locality','Romford'),(191451,40758,'_venue_address_company_address_locality','field_62e24deabfefc'),(191452,40758,'venue_address_company_address_region',''),(191453,40758,'_venue_address_company_address_region','field_62e24deabfefd'),(191454,40758,'venue_address_company_address_postcode','RM3 9ND'),(191455,40758,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191456,40758,'venue_address',''),(191457,40758,'_venue_address','field_62e24de9bfef8'),(191458,40758,'venue_location','a:13:{s:7:\"address\";s:33:\"Retford Road, Romford RM3 9ND, UK\";s:3:\"lat\";d:51.60202200000001;s:3:\"lng\";d:0.2420125;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJrapgLHm82EcR_diEm7Dwbfc\";s:4:\"name\";s:7:\"RM3 9ND\";s:11:\"street_name\";s:12:\"Retford Road\";s:17:\"street_name_short\";s:10:\"Retford Rd\";s:4:\"city\";s:7:\"Romford\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"RM3 9ND\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191459,40758,'_venue_location','field_62e24e36a82f4'),(191460,40758,'venue_tel','07980203828'),(191461,40758,'_venue_tel','field_62e26ee1005e5'),(191462,40758,'venue_is_popup','0'),(191463,40758,'_venue_is_popup','field_63c66ffc50d7e'),(191464,40759,'_edit_lock','1739292538:17'),(191465,40759,'_edit_last','17'),(191466,40759,'venue_region','425'),(191467,40759,'_venue_region','field_62ea283e4cc28'),(191468,40759,'venue_address_company_address_1','Rochester Way'),(191469,40759,'_venue_address_company_address_1','field_62e24deabfef9'),(191470,40759,'venue_address_company_address_2',''),(191471,40759,'_venue_address_company_address_2','field_62e24deabfefa'),(191472,40759,'venue_address_company_address_street',''),(191473,40759,'_venue_address_company_address_street','field_62e24deabfefb'),(191474,40759,'venue_address_company_address_locality','Sudbury'),(191475,40759,'_venue_address_company_address_locality','field_62e24deabfefc'),(191476,40759,'venue_address_company_address_region',''),(191477,40759,'_venue_address_company_address_region','field_62e24deabfefd'),(191478,40759,'venue_address_company_address_postcode','CO10 1LP'),(191479,40759,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191480,40759,'venue_address',''),(191481,40759,'_venue_address','field_62e24de9bfef8'),(191482,40759,'venue_location','a:12:{s:7:\"address\";s:35:\"Rochester Way, Sudbury CO10 1LP, UK\";s:3:\"lat\";d:52.0504497;s:3:\"lng\";d:0.7220749000000001;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJJU5o8KdV2EcRla_T8_XvXIg\";s:4:\"name\";s:8:\"CO10 1LP\";s:11:\"street_name\";s:13:\"Rochester Way\";s:4:\"city\";s:7:\"Sudbury\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"CO10 1LP\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191483,40759,'_venue_location','field_62e24e36a82f4'),(191484,40759,'venue_tel','07875086760'),(191485,40759,'_venue_tel','field_62e26ee1005e5'),(191486,40759,'venue_is_popup','0'),(191487,40759,'_venue_is_popup','field_63c66ffc50d7e'),(191488,40760,'_edit_lock','1739292538:17'),(191489,40760,'_edit_last','17'),(191490,40760,'venue_region','425'),(191491,40760,'_venue_region','field_62ea283e4cc28'),(191492,40760,'venue_address_company_address_1','Mayes Lane'),(191493,40760,'_venue_address_company_address_1','field_62e24deabfef9'),(191494,40760,'venue_address_company_address_2',''),(191495,40760,'_venue_address_company_address_2','field_62e24deabfefa'),(191496,40760,'venue_address_company_address_street',''),(191497,40760,'_venue_address_company_address_street','field_62e24deabfefb'),(191498,40760,'venue_address_company_address_locality','Harwich'),(191499,40760,'_venue_address_company_address_locality','field_62e24deabfefc'),(191500,40760,'venue_address_company_address_region',''),(191501,40760,'_venue_address_company_address_region','field_62e24deabfefd'),(191502,40760,'venue_address_company_address_postcode','CO12 5EJ'),(191503,40760,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191504,40760,'venue_address',''),(191505,40760,'_venue_address','field_62e24de9bfef8'),(191506,40760,'venue_location','a:13:{s:7:\"address\";s:40:\"Mayes Lane, Ramsey, Harwich CO12 5EJ, UK\";s:3:\"lat\";d:51.92581;s:3:\"lng\";d:1.2288524;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJNXbeT4tz2UcR5IrTTvWy8uA\";s:4:\"name\";s:8:\"CO12 5EJ\";s:11:\"street_name\";s:10:\"Mayes Lane\";s:17:\"street_name_short\";s:8:\"Mayes Ln\";s:4:\"city\";s:7:\"Harwich\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"CO12 5EJ\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191507,40760,'_venue_location','field_62e24e36a82f4'),(191508,40760,'venue_tel','07941 252663'),(191509,40760,'_venue_tel','field_62e26ee1005e5'),(191510,40760,'venue_is_popup','0'),(191511,40760,'_venue_is_popup','field_63c66ffc50d7e'),(191512,40761,'_edit_lock','1739291745:17'),(191513,40761,'_edit_last','17'),(191514,40761,'venue_region','426'),(191515,40761,'_venue_region','field_62ea283e4cc28'),(191516,40761,'venue_address_company_address_1','Booth Road'),(191517,40761,'_venue_address_company_address_1','field_62e24deabfef9'),(191518,40761,'venue_address_company_address_2',''),(191519,40761,'_venue_address_company_address_2','field_62e24deabfefa'),(191520,40761,'venue_address_company_address_street',''),(191521,40761,'_venue_address_company_address_street','field_62e24deabfefb'),(191522,40761,'venue_address_company_address_locality','Banbury'),(191523,40761,'_venue_address_company_address_locality','field_62e24deabfefc'),(191524,40761,'venue_address_company_address_region',''),(191525,40761,'_venue_address_company_address_region','field_62e24deabfefd'),(191526,40761,'venue_address_company_address_postcode','OX16 1EG'),(191527,40761,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191528,40761,'venue_address',''),(191529,40761,'_venue_address','field_62e24de9bfef8'),(191530,40761,'venue_location','a:13:{s:7:\"address\";s:32:\"Booth Road, Banbury OX16 1EG, UK\";s:3:\"lat\";d:52.0792298;s:3:\"lng\";d:-1.3417107;s:4:\"zoom\";i:4;s:8:\"place_id\";s:27:\"ChIJr7ihbhYmd0gRlhDiGHET11o\";s:4:\"name\";s:8:\"OX16 1EG\";s:11:\"street_name\";s:10:\"Booth Road\";s:17:\"street_name_short\";s:8:\"Booth Rd\";s:4:\"city\";s:7:\"Banbury\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"OX16 1EG\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191531,40761,'_venue_location','field_62e24e36a82f4'),(191532,40761,'venue_tel','07765876822'),(191533,40761,'_venue_tel','field_62e26ee1005e5'),(191534,40761,'venue_is_popup','0'),(191535,40761,'_venue_is_popup','field_63c66ffc50d7e'),(191536,40762,'_edit_lock','1739291890:17'),(191537,40762,'_edit_last','17'),(191538,40762,'venue_region','427'),(191539,40762,'_venue_region','field_62ea283e4cc28'),(191540,40762,'venue_address_company_address_1',''),(191541,40762,'_venue_address_company_address_1','field_62e24deabfef9'),(191542,40762,'venue_address_company_address_2',''),(191543,40762,'_venue_address_company_address_2','field_62e24deabfefa'),(191544,40762,'venue_address_company_address_street','Harborne'),(191545,40762,'_venue_address_company_address_street','field_62e24deabfefb'),(191546,40762,'venue_address_company_address_locality','Birmingham'),(191547,40762,'_venue_address_company_address_locality','field_62e24deabfefc'),(191548,40762,'venue_address_company_address_region','West Midlands'),(191549,40762,'_venue_address_company_address_region','field_62e24deabfefd'),(191550,40762,'venue_address_company_address_postcode','B17 9AH'),(191551,40762,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191552,40762,'venue_address',''),(191553,40762,'_venue_address','field_62e24de9bfef8'),(191554,40762,'venue_location','a:13:{s:7:\"address\";s:50:\"Earls Court Road, Harborne, Birmingham B17 9AH, UK\";s:3:\"lat\";d:52.46095039999999;s:3:\"lng\";d:-1.9693372;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJi3rrlY-9cEgRSwr0FdDO3ys\";s:4:\"name\";s:7:\"B17 9AH\";s:11:\"street_name\";s:16:\"Earls Court Road\";s:17:\"street_name_short\";s:11:\"Earls Ct Rd\";s:4:\"city\";s:10:\"Birmingham\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"B17 9AH\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191555,40762,'_venue_location','field_62e24e36a82f4'),(191556,40762,'venue_tel','07957 859285'),(191557,40762,'_venue_tel','field_62e26ee1005e5'),(191558,40762,'venue_is_popup','0'),(191559,40762,'_venue_is_popup','field_63c66ffc50d7e'),(191560,40763,'_edit_lock','1739291890:17'),(191561,40763,'_edit_last','17'),(191562,40763,'venue_region','428'),(191563,40763,'_venue_region','field_62ea283e4cc28'),(191564,40763,'venue_address_company_address_1','Orchard Way'),(191565,40763,'_venue_address_company_address_1','field_62e24deabfef9'),(191566,40763,'venue_address_company_address_2','Wymeswold'),(191567,40763,'_venue_address_company_address_2','field_62e24deabfefa'),(191568,40763,'venue_address_company_address_street',''),(191569,40763,'_venue_address_company_address_street','field_62e24deabfefb'),(191570,40763,'venue_address_company_address_locality','Loughborough'),(191571,40763,'_venue_address_company_address_locality','field_62e24deabfefc'),(191572,40763,'venue_address_company_address_region','Loughborough'),(191573,40763,'_venue_address_company_address_region','field_62e24deabfefd'),(191574,40763,'venue_address_company_address_postcode','LE12 6SW'),(191575,40763,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191576,40763,'venue_address',''),(191577,40763,'_venue_address','field_62e24de9bfef8'),(191578,40763,'venue_location','a:12:{s:7:\"address\";s:49:\"Orchard Way, Wymeswold, Loughborough LE12 6SW, UK\";s:3:\"lat\";d:52.8054174;s:3:\"lng\";d:-1.1025572;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJaySJ13LceUgRbS0CZfLXhQc\";s:4:\"name\";s:8:\"LE12 6SW\";s:11:\"street_name\";s:11:\"Orchard Way\";s:4:\"city\";s:12:\"Loughborough\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"LE12 6SW\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191579,40763,'_venue_location','field_62e24e36a82f4'),(191580,40763,'venue_tel','07446 028691'),(191581,40763,'_venue_tel','field_62e26ee1005e5'),(191582,40763,'venue_is_popup','0'),(191583,40763,'_venue_is_popup','field_63c66ffc50d7e'),(191584,40764,'_edit_lock','1741944494:18'),(191585,40764,'_edit_last','17'),(191586,40764,'venue_region','429'),(191587,40764,'_venue_region','field_62ea283e4cc28'),(191588,40764,'venue_address_company_address_1','East Close'),(191589,40764,'_venue_address_company_address_1','field_62e24deabfef9'),(191590,40764,'venue_address_company_address_2','Keyworth'),(191591,40764,'_venue_address_company_address_2','field_62e24deabfefa'),(191592,40764,'venue_address_company_address_street',''),(191593,40764,'_venue_address_company_address_street','field_62e24deabfefb'),(191594,40764,'venue_address_company_address_locality','Nottingham'),(191595,40764,'_venue_address_company_address_locality','field_62e24deabfefc'),(191596,40764,'venue_address_company_address_region','Nottinghamshire'),(191597,40764,'_venue_address_company_address_region','field_62e24deabfefd'),(191598,40764,'venue_address_company_address_postcode','NG12 5GN'),(191599,40764,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191600,40764,'venue_address',''),(191601,40764,'_venue_address','field_62e24de9bfef8'),(191602,40764,'venue_location','a:13:{s:7:\"address\";s:45:\"East Close, Keyworth, Nottingham NG12 5GN, UK\";s:3:\"lat\";d:52.8726255;s:3:\"lng\";d:-1.0920059;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJ3-m0savEeUgRhDs12x-G8Bo\";s:4:\"name\";s:8:\"NG12 5GN\";s:11:\"street_name\";s:10:\"East Close\";s:17:\"street_name_short\";s:7:\"East Cl\";s:4:\"city\";s:10:\"Nottingham\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"NG12 5GN\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191603,40764,'_venue_location','field_62e24e36a82f4'),(191604,40764,'venue_tel','07976 933113 '),(191605,40764,'_venue_tel','field_62e26ee1005e5'),(191606,40764,'venue_is_popup','0'),(191607,40764,'_venue_is_popup','field_63c66ffc50d7e'),(191608,40765,'_edit_lock','1739291888:17'),(191609,40765,'_edit_last','17'),(191610,40765,'venue_region','429'),(191611,40765,'_venue_region','field_62ea283e4cc28'),(191612,40765,'venue_address_company_address_1',''),(191613,40765,'_venue_address_company_address_1','field_62e24deabfef9'),(191614,40765,'venue_address_company_address_2',''),(191615,40765,'_venue_address_company_address_2','field_62e24deabfefa'),(191616,40765,'venue_address_company_address_street',''),(191617,40765,'_venue_address_company_address_street','field_62e24deabfefb'),(191618,40765,'venue_address_company_address_locality','Ripley'),(191619,40765,'_venue_address_company_address_locality','field_62e24deabfefc'),(191620,40765,'venue_address_company_address_region','Derbyshire '),(191621,40765,'_venue_address_company_address_region','field_62e24deabfefd'),(191622,40765,'venue_address_company_address_postcode','DE5 8JG'),(191623,40765,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191624,40765,'venue_address',''),(191625,40765,'_venue_address','field_62e24de9bfef8'),(191626,40765,'venue_location','a:13:{s:7:\"address\";s:38:\"Upper Marehay Road, Ripley DE5 8JG, UK\";s:3:\"lat\";d:53.0334547;s:3:\"lng\";d:-1.4141542;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJWesdEqzyeUgRewRZqjjOE08\";s:4:\"name\";s:7:\"DE5 8JG\";s:11:\"street_name\";s:18:\"Upper Marehay Road\";s:17:\"street_name_short\";s:16:\"Upper Marehay Rd\";s:4:\"city\";s:6:\"Ripley\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"DE5 8JG\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191627,40765,'_venue_location','field_62e24e36a82f4'),(191628,40765,'venue_tel','07973 851692'),(191629,40765,'_venue_tel','field_62e26ee1005e5'),(191630,40765,'venue_is_popup','0'),(191631,40765,'_venue_is_popup','field_63c66ffc50d7e'),(191632,40766,'_edit_lock','1739291887:17'),(191633,40766,'_edit_last','17'),(191634,40766,'venue_region','431'),(191635,40766,'_venue_region','field_62ea283e4cc28'),(191636,40766,'venue_address_company_address_1','Homestead Avenue'),(191637,40766,'_venue_address_company_address_1','field_62e24deabfef9'),(191638,40766,'venue_address_company_address_2',''),(191639,40766,'_venue_address_company_address_2','field_62e24deabfefa'),(191640,40766,'venue_address_company_address_street','Saint Martins'),(191641,40766,'_venue_address_company_address_street','field_62e24deabfefb'),(191642,40766,'venue_address_company_address_locality','Oswestry'),(191643,40766,'_venue_address_company_address_locality','field_62e24deabfefc'),(191644,40766,'venue_address_company_address_region',''),(191645,40766,'_venue_address_company_address_region','field_62e24deabfefd'),(191646,40766,'venue_address_company_address_postcode','SY11 3DD'),(191647,40766,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191648,40766,'venue_address',''),(191649,40766,'_venue_address','field_62e24de9bfef8'),(191650,40766,'venue_location','a:14:{s:7:\"address\";s:52:\"Homestead Avenue, St Martin\'s, Oswestry SY11 3DD, UK\";s:3:\"lat\";d:52.92395519999999;s:3:\"lng\";d:-3.0008159;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJAXIfWYC5ekgRrov_LpjBcV0\";s:4:\"name\";s:8:\"SY11 3DD\";s:11:\"street_name\";s:16:\"Homestead Avenue\";s:17:\"street_name_short\";s:13:\"Homestead Ave\";s:4:\"city\";s:8:\"Oswestry\";s:10:\"city_short\";s:11:\"St Martin\'s\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"SY11 3DD\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191651,40766,'_venue_location','field_62e24e36a82f4'),(191652,40766,'venue_tel','07970964622'),(191653,40766,'_venue_tel','field_62e26ee1005e5'),(191654,40766,'venue_is_popup','0'),(191655,40766,'_venue_is_popup','field_63c66ffc50d7e'),(191656,40767,'_edit_lock','1739291887:17'),(191657,40767,'_edit_last','17'),(191658,40767,'venue_region','432'),(191659,40767,'_venue_region','field_62ea283e4cc28'),(191660,40767,'venue_address_company_address_1','Ten Acres Lane'),(191661,40767,'_venue_address_company_address_1','field_62e24deabfef9'),(191662,40767,'venue_address_company_address_2',''),(191663,40767,'_venue_address_company_address_2','field_62e24deabfefa'),(191664,40767,'venue_address_company_address_street',''),(191665,40767,'_venue_address_company_address_street','field_62e24deabfefb'),(191666,40767,'venue_address_company_address_locality','Manchester'),(191667,40767,'_venue_address_company_address_locality','field_62e24deabfefc'),(191668,40767,'venue_address_company_address_region',''),(191669,40767,'_venue_address_company_address_region','field_62e24deabfefd'),(191670,40767,'venue_address_company_address_postcode','M40 2SP'),(191671,40767,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191672,40767,'venue_address',''),(191673,40767,'_venue_address','field_62e24de9bfef8'),(191674,40767,'venue_location','a:13:{s:7:\"address\";s:38:\"Ten Acres Lane, Manchester M40 2SP, UK\";s:3:\"lat\";d:53.497137;s:3:\"lng\";d:-2.1927876;s:4:\"zoom\";i:4;s:8:\"place_id\";s:27:\"ChIJgxZpjx6xe0gRxH1YaTgUwCI\";s:4:\"name\";s:7:\"M40 2SP\";s:11:\"street_name\";s:14:\"Ten Acres Lane\";s:17:\"street_name_short\";s:12:\"Ten Acres Ln\";s:4:\"city\";s:10:\"Manchester\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"M40 2SP\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191675,40767,'_venue_location','field_62e24e36a82f4'),(191676,40767,'venue_tel','07847598572'),(191677,40767,'_venue_tel','field_62e26ee1005e5'),(191678,40767,'venue_is_popup','0'),(191679,40767,'_venue_is_popup','field_63c66ffc50d7e'),(191680,40768,'_edit_lock','1739291886:17'),(191681,40768,'_edit_last','17'),(191682,40768,'venue_region','432'),(191683,40768,'_venue_region','field_62ea283e4cc28'),(191684,40768,'venue_address_company_address_1',''),(191685,40768,'_venue_address_company_address_1','field_62e24deabfef9'),(191686,40768,'venue_address_company_address_2',''),(191687,40768,'_venue_address_company_address_2','field_62e24deabfefa'),(191688,40768,'venue_address_company_address_street',''),(191689,40768,'_venue_address_company_address_street','field_62e24deabfefb'),(191690,40768,'venue_address_company_address_locality','Manchester '),(191691,40768,'_venue_address_company_address_locality','field_62e24deabfefc'),(191692,40768,'venue_address_company_address_region',''),(191693,40768,'_venue_address_company_address_region','field_62e24deabfefd'),(191694,40768,'venue_address_company_address_postcode','M24 5WA '),(191695,40768,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191696,40768,'venue_address',''),(191697,40768,'_venue_address','field_62e24de9bfef8'),(191698,40768,'venue_location','a:13:{s:7:\"address\";s:46:\"Hollin Lane, Middleton, Manchester M24 5WA, UK\";s:3:\"lat\";d:53.561772;s:3:\"lng\";d:-2.2039366;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJJabXjGi6e0gRt9QvGQfGtYY\";s:4:\"name\";s:7:\"M24 5WA\";s:11:\"street_name\";s:11:\"Hollin Lane\";s:17:\"street_name_short\";s:9:\"Hollin Ln\";s:4:\"city\";s:10:\"Manchester\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"M24 5WA\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191699,40768,'_venue_location','field_62e24e36a82f4'),(191700,40768,'venue_tel','07545 751974 '),(191701,40768,'_venue_tel','field_62e26ee1005e5'),(191702,40768,'venue_is_popup','0'),(191703,40768,'_venue_is_popup','field_63c66ffc50d7e'),(191704,40769,'_edit_lock','1739291885:17'),(191705,40769,'_edit_last','17'),(191706,40769,'venue_region','432'),(191707,40769,'_venue_region','field_62ea283e4cc28'),(191708,40769,'venue_address_company_address_1','Bury Road'),(191709,40769,'_venue_address_company_address_1','field_62e24deabfef9'),(191710,40769,'venue_address_company_address_2',''),(191711,40769,'_venue_address_company_address_2','field_62e24deabfefa'),(191712,40769,'venue_address_company_address_street',''),(191713,40769,'_venue_address_company_address_street','field_62e24deabfefb'),(191714,40769,'venue_address_company_address_locality','Rochdale'),(191715,40769,'_venue_address_company_address_locality','field_62e24deabfefc'),(191716,40769,'venue_address_company_address_region',''),(191717,40769,'_venue_address_company_address_region','field_62e24deabfefd'),(191718,40769,'venue_address_company_address_postcode','OL11 4DG'),(191719,40769,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191720,40769,'venue_address',''),(191721,40769,'_venue_address','field_62e24de9bfef8'),(191722,40769,'venue_location','a:13:{s:7:\"address\";s:32:\"Bury Road, Rochdale OL11 4DG, UK\";s:3:\"lat\";d:53.6128747;s:3:\"lng\";d:-2.1847146;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJE_10IOa7e0gRIxGs9J_5DB0\";s:4:\"name\";s:8:\"OL11 4DG\";s:11:\"street_name\";s:9:\"Bury Road\";s:17:\"street_name_short\";s:7:\"Bury Rd\";s:4:\"city\";s:8:\"Rochdale\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"OL11 4DG\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191723,40769,'_venue_location','field_62e24e36a82f4'),(191724,40769,'venue_tel',''),(191725,40769,'_venue_tel','field_62e26ee1005e5'),(191726,40769,'venue_is_popup','0'),(191727,40769,'_venue_is_popup','field_63c66ffc50d7e'),(191728,40770,'_edit_lock','1739291884:17'),(191729,40770,'_edit_last','17'),(191730,40770,'venue_region','433'),(191731,40770,'_venue_region','field_62ea283e4cc28'),(191732,40770,'venue_address_company_address_1','The Movement Hub'),(191733,40770,'_venue_address_company_address_1','field_62e24deabfef9'),(191734,40770,'venue_address_company_address_2','C/o Trident Fitness'),(191735,40770,'_venue_address_company_address_2','field_62e24deabfefa'),(191736,40770,'venue_address_company_address_street','Howley Park Rd'),(191737,40770,'_venue_address_company_address_street','field_62e24deabfefb'),(191738,40770,'venue_address_company_address_locality','Morley'),(191739,40770,'_venue_address_company_address_locality','field_62e24deabfefc'),(191740,40770,'venue_address_company_address_region','Leeds'),(191741,40770,'_venue_address_company_address_region','field_62e24deabfefd'),(191742,40770,'venue_address_company_address_postcode','LS27 0QT'),(191743,40770,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191744,40770,'venue_address',''),(191745,40770,'_venue_address','field_62e24de9bfef8'),(191746,40770,'venue_location','a:11:{s:7:\"address\";s:21:\"Wakefield WF3 1SL, UK\";s:3:\"lat\";d:53.7361132;s:3:\"lng\";d:-1.5577935;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJSyX6qgVeeUgRrUsJIQBgKLc\";s:4:\"name\";s:7:\"WF3 1SL\";s:4:\"city\";s:9:\"Wakefield\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"WF3 1SL\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191747,40770,'_venue_location','field_62e24e36a82f4'),(191748,40770,'venue_tel','07962225304'),(191749,40770,'_venue_tel','field_62e26ee1005e5'),(191750,40770,'venue_is_popup','0'),(191751,40770,'_venue_is_popup','field_63c66ffc50d7e'),(191752,40771,'_edit_lock','1739291882:17'),(191753,40771,'_edit_last','17'),(191754,40771,'venue_region','434'),(191755,40771,'_venue_region','field_62ea283e4cc28'),(191756,40771,'venue_address_company_address_1',''),(191757,40771,'_venue_address_company_address_1','field_62e24deabfef9'),(191758,40771,'venue_address_company_address_2',''),(191759,40771,'_venue_address_company_address_2','field_62e24deabfefa'),(191760,40771,'venue_address_company_address_street',''),(191761,40771,'_venue_address_company_address_street','field_62e24deabfefb'),(191762,40771,'venue_address_company_address_locality','Pool in Wharfedale'),(191763,40771,'_venue_address_company_address_locality','field_62e24deabfefc'),(191764,40771,'venue_address_company_address_region',''),(191765,40771,'_venue_address_company_address_region','field_62e24deabfefd'),(191766,40771,'venue_address_company_address_postcode','LS169HX'),(191767,40771,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191768,40771,'venue_address',''),(191769,40771,'_venue_address','field_62e24de9bfef8'),(191770,40771,'venue_location','a:11:{s:7:\"address\";s:18:\"Leeds LS16 9HX, UK\";s:3:\"lat\";d:53.8889551;s:3:\"lng\";d:-1.6449932;s:4:\"zoom\";i:4;s:8:\"place_id\";s:27:\"ChIJH4_OexpYeUgRmm9NCFlKC3k\";s:4:\"name\";s:8:\"LS16 9HX\";s:4:\"city\";s:5:\"Leeds\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"LS16 9HX\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191771,40771,'_venue_location','field_62e24e36a82f4'),(191772,40771,'venue_tel','07709866397 '),(191773,40771,'_venue_tel','field_62e26ee1005e5'),(191774,40771,'venue_is_popup','0'),(191775,40771,'_venue_is_popup','field_63c66ffc50d7e'),(191776,40772,'_edit_lock','1739291881:17'),(191777,40772,'_edit_last','17'),(191778,40772,'venue_region','434'),(191779,40772,'_venue_region','field_62ea283e4cc28'),(191780,40772,'venue_address_company_address_1','Raikeswood Road'),(191781,40772,'_venue_address_company_address_1','field_62e24deabfef9'),(191782,40772,'venue_address_company_address_2',''),(191783,40772,'_venue_address_company_address_2','field_62e24deabfefa'),(191784,40772,'venue_address_company_address_street',''),(191785,40772,'_venue_address_company_address_street','field_62e24deabfefb'),(191786,40772,'venue_address_company_address_locality','Skipton'),(191787,40772,'_venue_address_company_address_locality','field_62e24deabfefc'),(191788,40772,'venue_address_company_address_region',''),(191789,40772,'_venue_address_company_address_region','field_62e24deabfefd'),(191790,40772,'venue_address_company_address_postcode','BD23 1NB'),(191791,40772,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191792,40772,'venue_address',''),(191793,40772,'_venue_address','field_62e24de9bfef8'),(191794,40772,'venue_location','a:13:{s:7:\"address\";s:37:\"Raikeswood Road, Skipton BD23 1NB, UK\";s:3:\"lat\";d:53.9649729;s:3:\"lng\";d:-2.0251028;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJa0HFB5rze0gRbv7PgpiuzFk\";s:4:\"name\";s:8:\"BD23 1NB\";s:11:\"street_name\";s:15:\"Raikeswood Road\";s:17:\"street_name_short\";s:13:\"Raikeswood Rd\";s:4:\"city\";s:7:\"Skipton\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"BD23 1NB\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191795,40772,'_venue_location','field_62e24e36a82f4'),(191796,40772,'venue_tel','07759164201'),(191797,40772,'_venue_tel','field_62e26ee1005e5'),(191798,40772,'venue_is_popup','0'),(191799,40772,'_venue_is_popup','field_63c66ffc50d7e'),(191800,40773,'_edit_lock','1739291880:17'),(191801,40773,'_edit_last','17'),(191802,40773,'venue_region','435'),(191803,40773,'_venue_region','field_62ea283e4cc28'),(191804,40773,'venue_address_company_address_1','The Studio'),(191805,40773,'_venue_address_company_address_1','field_62e24deabfef9'),(191806,40773,'venue_address_company_address_2','Glebe Farm'),(191807,40773,'_venue_address_company_address_2','field_62e24deabfefa'),(191808,40773,'venue_address_company_address_street','Lower Dunsforth'),(191809,40773,'_venue_address_company_address_street','field_62e24deabfefb'),(191810,40773,'venue_address_company_address_locality','York'),(191811,40773,'_venue_address_company_address_locality','field_62e24deabfefc'),(191812,40773,'venue_address_company_address_region',''),(191813,40773,'_venue_address_company_address_region','field_62e24deabfefd'),(191814,40773,'venue_address_company_address_postcode','YO26 9RZ'),(191815,40773,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191816,40773,'venue_address',''),(191817,40773,'_venue_address','field_62e24de9bfef8'),(191818,40773,'venue_location','a:11:{s:7:\"address\";s:34:\"Lower Dunsforth, York YO26 9RZ, UK\";s:3:\"lat\";d:54.0765088;s:3:\"lng\";d:-1.3282234;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJKx9zRDVLeUgRk8a4HErvczY\";s:4:\"name\";s:8:\"YO26 9RZ\";s:4:\"city\";s:4:\"York\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"YO26 9RZ\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191819,40773,'_venue_location','field_62e24e36a82f4'),(191820,40773,'venue_tel','07841054967'),(191821,40773,'_venue_tel','field_62e26ee1005e5'),(191822,40773,'venue_is_popup','0'),(191823,40773,'_venue_is_popup','field_63c66ffc50d7e'),(191824,40774,'_edit_lock','1739291335:17'),(191825,40774,'_edit_last','17'),(191826,40774,'venue_region','436'),(191827,40774,'_venue_region','field_62ea283e4cc28'),(191828,40774,'venue_address_company_address_1','Market Place'),(191829,40774,'_venue_address_company_address_1','field_62e24deabfef9'),(191830,40774,'venue_address_company_address_2',''),(191831,40774,'_venue_address_company_address_2','field_62e24deabfefa'),(191832,40774,'venue_address_company_address_street',''),(191833,40774,'_venue_address_company_address_street','field_62e24deabfefb'),(191834,40774,'venue_address_company_address_locality','Cockermouth'),(191835,40774,'_venue_address_company_address_locality','field_62e24deabfefc'),(191836,40774,'venue_address_company_address_region',''),(191837,40774,'_venue_address_company_address_region','field_62e24deabfefd'),(191838,40774,'venue_address_company_address_postcode','CA13 9NH'),(191839,40774,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191840,40774,'venue_address',''),(191841,40774,'_venue_address','field_62e24de9bfef8'),(191842,40774,'venue_location','a:13:{s:7:\"address\";s:38:\"Market Place, Cockermouth CA13 9NH, UK\";s:3:\"lat\";d:54.6639771;s:3:\"lng\";d:-3.3606726;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJO_-no6fWfEgR5yEDbLFdZv4\";s:4:\"name\";s:8:\"CA13 9NH\";s:11:\"street_name\";s:12:\"Market Place\";s:17:\"street_name_short\";s:9:\"Market Pl\";s:4:\"city\";s:11:\"Cockermouth\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"CA13 9NH\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191843,40774,'_venue_location','field_62e24e36a82f4'),(191844,40774,'venue_tel','07831 681639'),(191845,40774,'_venue_tel','field_62e26ee1005e5'),(191846,40774,'venue_is_popup','0'),(191847,40774,'_venue_is_popup','field_63c66ffc50d7e'),(191848,40775,'_edit_lock','1739291335:17'),(191849,40775,'_edit_last','17'),(191850,40775,'venue_region','437'),(191851,40775,'_venue_region','field_62ea283e4cc28'),(191852,40775,'venue_address_company_address_1','187 Bush Manor'),(191853,40775,'_venue_address_company_address_1','field_62e24deabfef9'),(191854,40775,'venue_address_company_address_2',''),(191855,40775,'_venue_address_company_address_2','field_62e24deabfefa'),(191856,40775,'venue_address_company_address_street',''),(191857,40775,'_venue_address_company_address_street','field_62e24deabfefb'),(191858,40775,'venue_address_company_address_locality','Antrim'),(191859,40775,'_venue_address_company_address_locality','field_62e24deabfefc'),(191860,40775,'venue_address_company_address_region','Northern Ireland'),(191861,40775,'_venue_address_company_address_region','field_62e24deabfefd'),(191862,40775,'venue_address_company_address_postcode','BT41 2UQ'),(191863,40775,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191864,40775,'venue_address',''),(191865,40775,'_venue_address','field_62e24de9bfef8'),(191866,40775,'venue_location','a:12:{s:7:\"address\";s:31:\"Bush Manor, Antrim BT41 2UQ, UK\";s:3:\"lat\";d:54.7296801;s:3:\"lng\";d:-6.1918516;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJzen_R46sYUgRWCOw30Ht2ec\";s:4:\"name\";s:8:\"BT41 2UQ\";s:11:\"street_name\";s:10:\"Bush Manor\";s:4:\"city\";s:6:\"Antrim\";s:5:\"state\";s:16:\"Northern Ireland\";s:9:\"post_code\";s:8:\"BT41 2UQ\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(191867,40775,'_venue_location','field_62e24e36a82f4'),(191868,40775,'venue_tel',''),(191869,40775,'_venue_tel','field_62e26ee1005e5'),(191870,40775,'venue_is_popup','0'),(191871,40775,'_venue_is_popup','field_63c66ffc50d7e'),(191872,40776,'_edit_lock','1739291480:17'),(191873,40776,'_edit_last','17'),(191874,40776,'venue_region','438'),(191875,40776,'_venue_region','field_62ea283e4cc28'),(191876,40776,'venue_address_company_address_1','Brederodestraat'),(191877,40776,'_venue_address_company_address_1','field_62e24deabfef9'),(191878,40776,'venue_address_company_address_2',''),(191879,40776,'_venue_address_company_address_2','field_62e24deabfefa'),(191880,40776,'venue_address_company_address_street',''),(191881,40776,'_venue_address_company_address_street','field_62e24deabfefb'),(191882,40776,'venue_address_company_address_locality','Amsterdam'),(191883,40776,'_venue_address_company_address_locality','field_62e24deabfefc'),(191884,40776,'venue_address_company_address_region','The Netherlands'),(191885,40776,'_venue_address_company_address_region','field_62e24deabfefd'),(191886,40776,'venue_address_company_address_postcode','1054 MX'),(191887,40776,'_venue_address_company_address_postcode','field_62e24deabfefe'),(191888,40776,'venue_address',''),(191889,40776,'_venue_address','field_62e24de9bfef8'),(191890,40776,'venue_location','a:12:{s:7:\"address\";s:30:\"1054 MX Amsterdam, Netherlands\";s:3:\"lat\";d:52.36155890000001;s:3:\"lng\";d:4.865381999999999;s:4:\"zoom\";i:5;s:8:\"place_id\";s:27:\"ChIJx32E7AnixUcRS0UsL81pLrk\";s:4:\"name\";s:7:\"1054 MX\";s:4:\"city\";s:9:\"Amsterdam\";s:5:\"state\";s:13:\"North Holland\";s:11:\"state_short\";s:2:\"NH\";s:9:\"post_code\";s:7:\"1054 MX\";s:7:\"country\";s:11:\"Netherlands\";s:13:\"country_short\";s:2:\"NL\";}'),(191891,40776,'_venue_location','field_62e24e36a82f4'),(191892,40776,'venue_tel','031646037774 '),(191893,40776,'_venue_tel','field_62e26ee1005e5'),(191894,40776,'venue_is_popup','0'),(191895,40776,'_venue_is_popup','field_63c66ffc50d7e'),(191896,40778,'_fft_id','211'),(191897,40778,'_fft_catalogue_id','94be843e-05f3-ec11-bb3d-002248428ff5'),(191898,40778,'_fft_code','BIOC'),(191899,40778,'_fft_name','Biomechanics Coach Course'),(191900,40778,'_fft_description',NULL),(191901,40778,'_fft_metadata_school','biomechanics'),(191902,40778,'_fft_metadata_flex_id','476'),(191903,40778,'_fft_metadata_type_id','100000002'),(191904,40778,'_fft_metadata_flex_type','collection'),(191905,40778,'_fft_metadata_type_label','Diploma'),(191906,40778,'_fft_metadata_course_type_id',NULL),(191907,40778,'_fft_metadata_productstructure_id','3'),(191908,40778,'_fft_metadata_productstructure_label','Product Bundle'),(191909,40778,'_fft_taxable','1'),(191910,40778,'_fft_show','1'),(191911,40778,'_fft_created_at','1726735820'),(191912,40778,'_fft_updated_at','1726735820'),(191913,40778,'_fft_plan',NULL),(191914,40778,'_fft_price_id','214'),(191915,40778,'_fft_price_value','0'),(191916,40778,'_fft_price_begins_at',NULL),(191917,40778,'_fft_price_expires_at',NULL),(191918,40778,'_fft_price_value_inc_tax','0'),(191919,40778,'_fft_error',''),(191920,40778,'_fft_saved_at','1751618582'),(191921,40779,'_fft_id','214'),(191922,40779,'_fft_catalogue_id','a3306c87-55f5-ed11-8848-6045bdd0ef47'),(191923,40779,'_fft_code','iMFWS'),(191924,40779,'_fft_name','iMoveFreely Workshop'),(191925,40779,'_fft_description',NULL),(191926,40779,'_fft_metadata_school','biomechanics'),(191927,40779,'_fft_metadata_flex_id','744'),(191928,40779,'_fft_metadata_type_id','100000000'),(191929,40779,'_fft_metadata_flex_type','collection'),(191930,40779,'_fft_metadata_type_label','Course'),(191931,40779,'_fft_metadata_course_type_id','100000002'),(191932,40779,'_fft_metadata_course_type_label','Online Learning'),(191933,40779,'_fft_metadata_productstructure_id','1'),(191934,40779,'_fft_metadata_productstructure_label','Product'),(191935,40779,'_fft_taxable','1'),(191936,40779,'_fft_show','1'),(191937,40779,'_fft_created_at','1726735820'),(191938,40779,'_fft_updated_at','1743078584'),(191939,40779,'_fft_plan',NULL),(191940,40779,'_fft_price_id','217'),(191941,40779,'_fft_price_value','188'),(191942,40779,'_fft_price_begins_at',NULL),(191943,40779,'_fft_price_expires_at',NULL),(191944,40779,'_fft_price_value_inc_tax','225.6'),(191945,40779,'_fft_error',''),(191946,40779,'_fft_saved_at','1751618583'),(191947,40780,'_fft_id','212'),(191948,40780,'_fft_catalogue_id','772ccce2-2e59-ec11-8f8f-00224842cd4b'),(191949,40780,'_fft_code','L4PT'),(191950,40780,'_fft_name','Level 4 Personal Trainer'),(191951,40780,'_fft_description',NULL),(191952,40780,'_fft_metadata_school','biomechanics'),(191953,40780,'_fft_metadata_flex_id','415'),(191954,40780,'_fft_metadata_type_id','100000000'),(191955,40780,'_fft_metadata_flex_type','collection'),(191956,40780,'_fft_metadata_type_label','Course'),(191957,40780,'_fft_metadata_course_type_id','100000002'),(191958,40780,'_fft_metadata_course_type_label','Online Learning'),(191959,40780,'_fft_metadata_productstructure_id','1'),(191960,40780,'_fft_metadata_productstructure_label','Product'),(191961,40780,'_fft_taxable','1'),(191962,40780,'_fft_show','1'),(191963,40780,'_fft_created_at','1726735820'),(191964,40780,'_fft_updated_at','1743078587'),(191965,40780,'_fft_plan',NULL),(191966,40780,'_fft_price_id','215'),(191967,40780,'_fft_price_value','0'),(191968,40780,'_fft_price_begins_at',NULL),(191969,40780,'_fft_price_expires_at',NULL),(191970,40780,'_fft_price_value_inc_tax','0'),(191971,40780,'_fft_error',''),(191972,40780,'_fft_saved_at','1751618583'),(191973,40781,'_fft_id','213'),(191974,40781,'_fft_catalogue_id','19306bf4-56f5-ed11-8848-6045bdd2c805'),(191975,40781,'_fft_code','RBWS'),(191976,40781,'_fft_name','Running Biomechanics Workshop'),(191977,40781,'_fft_description',NULL),(191978,40781,'_fft_metadata_school','biomechanics'),(191979,40781,'_fft_metadata_flex_id','746'),(191980,40781,'_fft_metadata_type_id','100000000'),(191981,40781,'_fft_metadata_flex_type','collection'),(191982,40781,'_fft_metadata_type_label','Course'),(191983,40781,'_fft_metadata_course_type_id','100000001'),(191984,40781,'_fft_metadata_course_type_label','Practical Workshop'),(191985,40781,'_fft_metadata_productstructure_id','1'),(191986,40781,'_fft_metadata_productstructure_label','Product'),(191987,40781,'_fft_taxable','1'),(191988,40781,'_fft_show','1'),(191989,40781,'_fft_created_at','1726735820'),(191990,40781,'_fft_updated_at','1743078593'),(191991,40781,'_fft_plan',NULL),(191992,40781,'_fft_price_id','216'),(191993,40781,'_fft_price_value','188'),(191994,40781,'_fft_price_begins_at',NULL),(191995,40781,'_fft_price_expires_at',NULL),(191996,40781,'_fft_price_value_inc_tax','225.6'),(191997,40781,'_fft_error',''),(191998,40781,'_fft_saved_at','1751618583'),(191999,40780,'_edit_lock','1741944064:18'),(192000,40780,'_edit_last','18'),(192001,40782,'_wp_attached_file','2024/09/Level-4-pt-course-hero-iamge-scaled.jpg'),(192002,40782,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:47:\"2024/09/Level-4-pt-course-hero-iamge-scaled.jpg\";s:8:\"filesize\";i:531063;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Level-4-pt-course-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74438;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Level-4-pt-course-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111075;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Level-4-pt-course-hero-iamge-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33891;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Level-4-pt-course-hero-iamge-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61480;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"Level-4-pt-course-hero-iamge-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171003;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:42:\"Level-4-pt-course-hero-iamge-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:312709;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:40:\"Level-4-pt-course-hero-iamge-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37918;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:40:\"Level-4-pt-course-hero-iamge-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98788;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:42:\"Level-4-pt-course-hero-iamge-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164057;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:40:\"Level-4-pt-course-hero-iamge-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33894;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:40:\"Level-4-pt-course-hero-iamge-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74438;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:41:\"Level-4-pt-course-hero-iamge-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111075;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:40:\"Level-4-pt-course-hero-iamge-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34313;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:40:\"Level-4-pt-course-hero-iamge-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82591;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:41:\"Level-4-pt-course-hero-iamge-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132988;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:40:\"Level-4-pt-course-hero-iamge-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35218;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:40:\"Level-4-pt-course-hero-iamge-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80469;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:41:\"Level-4-pt-course-hero-iamge-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124564;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:40:\"Level-4-pt-course-hero-iamge-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32311;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:40:\"Level-4-pt-course-hero-iamge-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69412;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:41:\"Level-4-pt-course-hero-iamge-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102005;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1631952695\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"57\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:32:\"Level-4-pt-course-hero-iamge.jpg\";}'),(192003,40780,'hide_hero','0'),(192004,40780,'_hide_hero','field_66a2380fcda39'),(192005,40780,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(192006,40780,'_hero_title','field_617571fe285e8'),(192007,40780,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(192008,40780,'_hero_text','field_6175723c285e9'),(192009,40780,'hero_actions','1'),(192010,40780,'_hero_actions','field_61757270285ea'),(192011,40780,'hero_style','default'),(192012,40780,'_hero_style','field_62051d9dc5324'),(192013,40780,'_thumbnail_id','40848'),(192014,40780,'__thumbnail_id','field_617570855ddaf'),(192015,40780,'hero_image_pos_x','right'),(192016,40780,'_hero_image_pos_x','field_62ec3d05390bb'),(192017,40780,'hero_image_pos_y','top'),(192018,40780,'_hero_image_pos_y','field_62ec3d05390bc'),(192019,40780,'hero_image_pos',''),(192020,40780,'_hero_image_pos','field_62ec3d05390ba'),(192021,40780,'fft_hide_from_listings','0'),(192022,40780,'_fft_hide_from_listings','field_61f1320446ab2'),(192023,40780,'fft_page_format','default'),(192024,40780,'_fft_page_format','field_61ae213f1f218'),(192025,40780,'fft_hide_nav','0'),(192026,40780,'_fft_hide_nav','field_635bd5e43527c'),(192027,40780,'fft_hide_header_call_to_action','0'),(192028,40780,'_fft_hide_header_call_to_action','field_635bd6723527d'),(192029,40780,'fft_page_sitemap','0'),(192030,40780,'_fft_page_sitemap','field_61af9b34e8181'),(192031,40780,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(192032,40780,'_blocks','field_6176696113096'),(192033,40780,'course_label_text',''),(192034,40780,'_course_label_text','field_61e17babf71fa'),(192035,40780,'course_label',''),(192036,40780,'_course_label','field_61e12f92749a7'),(192037,40780,'course_description',''),(192038,40780,'_course_description','field_617ac5788e5e1'),(192039,40780,'course_key_info',''),(192040,40780,'_course_key_info','field_617ac6ad8e5e2'),(192041,40780,'course_included',''),(192042,40780,'_course_included','field_617ac6f08e5e4'),(192043,40780,'_yoast_wpseo_primary_course-cat','406'),(192044,40780,'_yoast_wpseo_estimated-reading-time-minutes','1'),(192045,40783,'hide_hero','0'),(192046,40783,'_hide_hero','field_66a2380fcda39'),(192047,40783,'hero_title','Level 4 Personal Trainer Course'),(192048,40783,'_hero_title','field_617571fe285e8'),(192049,40783,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(192050,40783,'_hero_text','field_6175723c285e9'),(192051,40783,'hero_actions',''),(192052,40783,'_hero_actions','field_61757270285ea'),(192053,40783,'hero_style','default'),(192054,40783,'_hero_style','field_62051d9dc5324'),(192055,40783,'_thumbnail_id','40782'),(192056,40783,'__thumbnail_id','field_617570855ddaf'),(192057,40783,'hero_image_pos_x','right'),(192058,40783,'_hero_image_pos_x','field_62ec3d05390bb'),(192059,40783,'hero_image_pos_y','top'),(192060,40783,'_hero_image_pos_y','field_62ec3d05390bc'),(192061,40783,'hero_image_pos',''),(192062,40783,'_hero_image_pos','field_62ec3d05390ba'),(192063,40783,'fft_hide_from_listings','0'),(192064,40783,'_fft_hide_from_listings','field_61f1320446ab2'),(192065,40783,'fft_page_format','default'),(192066,40783,'_fft_page_format','field_61ae213f1f218'),(192067,40783,'fft_hide_nav','0'),(192068,40783,'_fft_hide_nav','field_635bd5e43527c'),(192069,40783,'fft_hide_header_call_to_action','0'),(192070,40783,'_fft_hide_header_call_to_action','field_635bd6723527d'),(192071,40783,'fft_page_sitemap','0'),(192072,40783,'_fft_page_sitemap','field_61af9b34e8181'),(192073,40783,'blocks',''),(192074,40783,'_blocks','field_6176696113096'),(192075,40783,'course_label_text',''),(192076,40783,'_course_label_text','field_61e17babf71fa'),(192077,40783,'course_label',''),(192078,40783,'_course_label','field_61e12f92749a7'),(192079,40783,'course_description',''),(192080,40783,'_course_description','field_617ac5788e5e1'),(192081,40783,'course_key_info',''),(192082,40783,'_course_key_info','field_617ac6ad8e5e2'),(192083,40783,'course_included',''),(192084,40783,'_course_included','field_617ac6f08e5e4'),(192125,40785,'_wp_attached_file','2024/09/Level-4-PT-50.50-IMAGE.webp'),(192126,40785,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:35:\"2024/09/Level-4-PT-50.50-IMAGE.webp\";s:8:\"filesize\";i:36174;s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Level-4-PT-50.50-IMAGE-400x267.webp\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18370;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Level-4-PT-50.50-IMAGE-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:39486;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"Level-4-PT-50.50-IMAGE-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20502;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"Level-4-PT-50.50-IMAGE-400x266.webp\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18354;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"Level-4-PT-50.50-IMAGE-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17258;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"Level-4-PT-50.50-IMAGE-675x600.webp\";s:5:\"width\";i:675;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:33218;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"Level-4-PT-50.50-IMAGE-400x300.webp\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18678;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"Level-4-PT-50.50-IMAGE-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15790;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"Level-4-PT-50.50-IMAGE-900x506.webp\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:45060;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(192127,40780,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(192128,40780,'_hero_actions_0_button','field_61757281285eb'),(192175,40786,'hide_hero','0'),(192176,40786,'_hide_hero','field_66a2380fcda39'),(192177,40786,'hero_title','Level 4 Personal Trainer Course'),(192178,40786,'_hero_title','field_617571fe285e8'),(192179,40786,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(192180,40786,'_hero_text','field_6175723c285e9'),(192181,40786,'hero_actions','1'),(192182,40786,'_hero_actions','field_61757270285ea'),(192183,40786,'hero_style','default'),(192184,40786,'_hero_style','field_62051d9dc5324'),(192185,40786,'_thumbnail_id','40782'),(192186,40786,'__thumbnail_id','field_617570855ddaf'),(192187,40786,'hero_image_pos_x','right'),(192188,40786,'_hero_image_pos_x','field_62ec3d05390bb'),(192189,40786,'hero_image_pos_y','top'),(192190,40786,'_hero_image_pos_y','field_62ec3d05390bc'),(192191,40786,'hero_image_pos',''),(192192,40786,'_hero_image_pos','field_62ec3d05390ba'),(192193,40786,'fft_hide_from_listings','0'),(192194,40786,'_fft_hide_from_listings','field_61f1320446ab2'),(192195,40786,'fft_page_format','default'),(192196,40786,'_fft_page_format','field_61ae213f1f218'),(192197,40786,'fft_hide_nav','0'),(192198,40786,'_fft_hide_nav','field_635bd5e43527c'),(192199,40786,'fft_hide_header_call_to_action','0'),(192200,40786,'_fft_hide_header_call_to_action','field_635bd6723527d'),(192201,40786,'fft_page_sitemap','0'),(192202,40786,'_fft_page_sitemap','field_61af9b34e8181'),(192203,40786,'blocks','a:2:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";}'),(192204,40786,'_blocks','field_6176696113096'),(192205,40786,'course_label_text',''),(192206,40786,'_course_label_text','field_61e17babf71fa'),(192207,40786,'course_label',''),(192208,40786,'_course_label','field_61e12f92749a7'),(192209,40786,'course_description',''),(192210,40786,'_course_description','field_617ac5788e5e1'),(192211,40786,'course_key_info',''),(192212,40786,'_course_key_info','field_617ac6ad8e5e2'),(192213,40786,'course_included',''),(192214,40786,'_course_included','field_617ac6f08e5e4'),(192215,40786,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(192216,40786,'_hero_actions_0_button','field_61757281285eb'),(192217,40786,'blocks_0_acfe_flexible_toggle',''),(192218,40786,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(192219,40786,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(192220,40786,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(192221,40786,'blocks_0_options_theme','#ffffff'),(192222,40786,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(192223,40786,'blocks_0_options_reverse','0'),(192224,40786,'_blocks_0_options_reverse','field_61768049bb8ac'),(192225,40786,'blocks_0_options',''),(192226,40786,'_blocks_0_options','field_617682517c334'),(192227,40786,'blocks_0_split_5050_image','40785'),(192228,40786,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(192229,40786,'blocks_0_split_5050_video',''),(192230,40786,'_blocks_0_split_5050_video','field_6239f3160848a'),(192231,40786,'blocks_0_split_5050_content_title',''),(192232,40786,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(192233,40786,'blocks_0_split_5050_content_heading','Course Overview'),(192234,40786,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(192235,40786,'blocks_0_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(192236,40786,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(192237,40786,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(192238,40786,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(192239,40786,'blocks_0_split_5050_content_actions','1'),(192240,40786,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(192241,40786,'blocks_0_split_5050_content',''),(192242,40786,'_blocks_0_split_5050_content','field_61767afceb8ba'),(192243,40786,'blocks_1_acfe_flexible_toggle',''),(192244,40786,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(192245,40786,'blocks_1_acfe_flexible_layout_title','Form'),(192246,40786,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(192247,40786,'blocks_1_row_content_format','standard'),(192248,40786,'_blocks_1_row_content_format','field_6481ead962881'),(192249,40786,'blocks_1_row_content_title',''),(192250,40786,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(192251,40786,'blocks_1_row_content_heading','Level 4 Personal Trainer Course'),(192252,40786,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(192253,40786,'blocks_1_row_content_text','Fill out the form to receive a price guide.'),(192254,40786,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(192255,40786,'blocks_1_row_content_actions',''),(192256,40786,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(192257,40786,'blocks_1_row_content',''),(192258,40786,'_blocks_1_row_content','field_61a0f5f5b3db0'),(192259,40786,'blocks_1_row_form','40394'),(192260,40786,'_blocks_1_row_form','field_61a4ff2c0b08e'),(192261,40786,'blocks_1_row_form_button_label',''),(192262,40786,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(192263,40787,'hide_hero','0'),(192264,40787,'_hide_hero','field_66a2380fcda39'),(192265,40787,'hero_title','Level 4 Personal Trainer Course'),(192266,40787,'_hero_title','field_617571fe285e8'),(192267,40787,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(192268,40787,'_hero_text','field_6175723c285e9'),(192269,40787,'hero_actions','1'),(192270,40787,'_hero_actions','field_61757270285ea'),(192271,40787,'hero_style','default'),(192272,40787,'_hero_style','field_62051d9dc5324'),(192273,40787,'_thumbnail_id','40782'),(192274,40787,'__thumbnail_id','field_617570855ddaf'),(192275,40787,'hero_image_pos_x','right'),(192276,40787,'_hero_image_pos_x','field_62ec3d05390bb'),(192277,40787,'hero_image_pos_y','top'),(192278,40787,'_hero_image_pos_y','field_62ec3d05390bc'),(192279,40787,'hero_image_pos',''),(192280,40787,'_hero_image_pos','field_62ec3d05390ba'),(192281,40787,'fft_hide_from_listings','0'),(192282,40787,'_fft_hide_from_listings','field_61f1320446ab2'),(192283,40787,'fft_page_format','default'),(192284,40787,'_fft_page_format','field_61ae213f1f218'),(192285,40787,'fft_hide_nav','0'),(192286,40787,'_fft_hide_nav','field_635bd5e43527c'),(192287,40787,'fft_hide_header_call_to_action','0'),(192288,40787,'_fft_hide_header_call_to_action','field_635bd6723527d'),(192289,40787,'fft_page_sitemap','0'),(192290,40787,'_fft_page_sitemap','field_61af9b34e8181'),(192291,40787,'blocks','a:2:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";}'),(192292,40787,'_blocks','field_6176696113096'),(192293,40787,'course_label_text',''),(192294,40787,'_course_label_text','field_61e17babf71fa'),(192295,40787,'course_label',''),(192296,40787,'_course_label','field_61e12f92749a7'),(192297,40787,'course_description',''),(192298,40787,'_course_description','field_617ac5788e5e1'),(192299,40787,'course_key_info',''),(192300,40787,'_course_key_info','field_617ac6ad8e5e2'),(192301,40787,'course_included',''),(192302,40787,'_course_included','field_617ac6f08e5e4'),(192303,40787,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(192304,40787,'_hero_actions_0_button','field_61757281285eb'),(192305,40787,'blocks_0_acfe_flexible_toggle',''),(192306,40787,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(192307,40787,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(192308,40787,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(192309,40787,'blocks_0_options_theme','#ffffff'),(192310,40787,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(192311,40787,'blocks_0_options_reverse','0'),(192312,40787,'_blocks_0_options_reverse','field_61768049bb8ac'),(192313,40787,'blocks_0_options',''),(192314,40787,'_blocks_0_options','field_617682517c334'),(192315,40787,'blocks_0_split_5050_image','40785'),(192316,40787,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(192317,40787,'blocks_0_split_5050_video',''),(192318,40787,'_blocks_0_split_5050_video','field_6239f3160848a'),(192319,40787,'blocks_0_split_5050_content_title',''),(192320,40787,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(192321,40787,'blocks_0_split_5050_content_heading','Course Overview'),(192322,40787,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(192323,40787,'blocks_0_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(192324,40787,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(192325,40787,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(192326,40787,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(192327,40787,'blocks_0_split_5050_content_actions','1'),(192328,40787,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(192329,40787,'blocks_0_split_5050_content',''),(192330,40787,'_blocks_0_split_5050_content','field_61767afceb8ba'),(192331,40787,'blocks_1_acfe_flexible_toggle',''),(192332,40787,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(192333,40787,'blocks_1_acfe_flexible_layout_title','Form'),(192334,40787,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(192335,40787,'blocks_1_row_content_format','standard'),(192336,40787,'_blocks_1_row_content_format','field_6481ead962881'),(192337,40787,'blocks_1_row_content_title',''),(192338,40787,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(192339,40787,'blocks_1_row_content_heading','Level 4 Personal Trainer Course'),(192340,40787,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(192341,40787,'blocks_1_row_content_text','Fill out the form to receive a price guide.'),(192342,40787,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(192343,40787,'blocks_1_row_content_actions',''),(192344,40787,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(192345,40787,'blocks_1_row_content',''),(192346,40787,'_blocks_1_row_content','field_61a0f5f5b3db0'),(192347,40787,'blocks_1_row_form','40394'),(192348,40787,'_blocks_1_row_form','field_61a4ff2c0b08e'),(192349,40787,'blocks_1_row_form_button_label',''),(192350,40787,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(192351,40780,'blocks_0_acfe_flexible_toggle',''),(192352,40780,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(192353,40780,'blocks_0_acfe_flexible_layout_title','Icons'),(192354,40780,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(192355,40780,'blocks_0_options_theme','#b61234'),(192356,40780,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(192357,40780,'blocks_0_options_format','row'),(192358,40780,'_blocks_0_options_format','field_64bfde9a90690'),(192359,40780,'blocks_0_options',''),(192360,40780,'_blocks_0_options','field_64bfdd9b90684'),(192361,40780,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(192362,40780,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(192363,40780,'blocks_0_icon_row_items_0_label','Accreditation'),(192364,40780,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(192365,40780,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(192366,40780,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(192367,40780,'blocks_0_icon_row_items_1_icon','finance.svg'),(192368,40780,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(192369,40780,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(192370,40780,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(192371,40780,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(192372,40780,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(192373,40780,'blocks_0_icon_row_items_2_icon','progression.svg'),(192374,40780,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(192375,40780,'blocks_0_icon_row_items_2_label','Earning Potential'),(192376,40780,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(192377,40780,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(192378,40780,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(192379,40780,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(192380,40780,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(192381,40780,'blocks_0_icon_row_items_3_label','Qualification'),(192382,40780,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(192383,40780,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(192384,40780,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(192385,40780,'blocks_0_icon_row_items','4'),(192386,40780,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(192433,40788,'hide_hero','0'),(192434,40788,'_hide_hero','field_66a2380fcda39'),(192435,40788,'hero_title','Level 4 Personal Trainer Course'),(192436,40788,'_hero_title','field_617571fe285e8'),(192437,40788,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(192438,40788,'_hero_text','field_6175723c285e9'),(192439,40788,'hero_actions','1'),(192440,40788,'_hero_actions','field_61757270285ea'),(192441,40788,'hero_style','default'),(192442,40788,'_hero_style','field_62051d9dc5324'),(192443,40788,'_thumbnail_id','40782'),(192444,40788,'__thumbnail_id','field_617570855ddaf'),(192445,40788,'hero_image_pos_x','right'),(192446,40788,'_hero_image_pos_x','field_62ec3d05390bb'),(192447,40788,'hero_image_pos_y','top'),(192448,40788,'_hero_image_pos_y','field_62ec3d05390bc'),(192449,40788,'hero_image_pos',''),(192450,40788,'_hero_image_pos','field_62ec3d05390ba'),(192451,40788,'fft_hide_from_listings','0'),(192452,40788,'_fft_hide_from_listings','field_61f1320446ab2'),(192453,40788,'fft_page_format','default'),(192454,40788,'_fft_page_format','field_61ae213f1f218'),(192455,40788,'fft_hide_nav','0'),(192456,40788,'_fft_hide_nav','field_635bd5e43527c'),(192457,40788,'fft_hide_header_call_to_action','0'),(192458,40788,'_fft_hide_header_call_to_action','field_635bd6723527d'),(192459,40788,'fft_page_sitemap','0'),(192460,40788,'_fft_page_sitemap','field_61af9b34e8181'),(192461,40788,'blocks','a:3:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";}'),(192462,40788,'_blocks','field_6176696113096'),(192463,40788,'course_label_text',''),(192464,40788,'_course_label_text','field_61e17babf71fa'),(192465,40788,'course_label',''),(192466,40788,'_course_label','field_61e12f92749a7'),(192467,40788,'course_description',''),(192468,40788,'_course_description','field_617ac5788e5e1'),(192469,40788,'course_key_info',''),(192470,40788,'_course_key_info','field_617ac6ad8e5e2'),(192471,40788,'course_included',''),(192472,40788,'_course_included','field_617ac6f08e5e4'),(192473,40788,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(192474,40788,'_hero_actions_0_button','field_61757281285eb'),(192475,40788,'blocks_0_acfe_flexible_toggle',''),(192476,40788,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(192477,40788,'blocks_0_acfe_flexible_layout_title','Icons'),(192478,40788,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(192479,40788,'blocks_0_options_theme','#b61234'),(192480,40788,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(192481,40788,'blocks_0_options_format','row'),(192482,40788,'_blocks_0_options_format','field_64bfde9a90690'),(192483,40788,'blocks_0_options',''),(192484,40788,'_blocks_0_options','field_64bfdd9b90684'),(192485,40788,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(192486,40788,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(192487,40788,'blocks_0_icon_row_items_0_label','Accreditation'),(192488,40788,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(192489,40788,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(192490,40788,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(192491,40788,'blocks_0_icon_row_items_1_icon','finance.svg'),(192492,40788,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(192493,40788,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(192494,40788,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(192495,40788,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(192496,40788,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(192497,40788,'blocks_0_icon_row_items_2_icon','progression.svg'),(192498,40788,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(192499,40788,'blocks_0_icon_row_items_2_label','Earning Potential'),(192500,40788,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(192501,40788,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(192502,40788,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(192503,40788,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(192504,40788,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(192505,40788,'blocks_0_icon_row_items_3_label','Qualification'),(192506,40788,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(192507,40788,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(192508,40788,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(192509,40788,'blocks_0_icon_row_items','4'),(192510,40788,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(192511,40788,'blocks_1_acfe_flexible_toggle',''),(192512,40788,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(192513,40788,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(192514,40788,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(192515,40788,'blocks_1_options_theme','#ffffff'),(192516,40788,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(192517,40788,'blocks_1_options_reverse','0'),(192518,40788,'_blocks_1_options_reverse','field_61768049bb8ac'),(192519,40788,'blocks_1_options',''),(192520,40788,'_blocks_1_options','field_617682517c334'),(192521,40788,'blocks_1_split_5050_image','40785'),(192522,40788,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(192523,40788,'blocks_1_split_5050_video',''),(192524,40788,'_blocks_1_split_5050_video','field_6239f3160848a'),(192525,40788,'blocks_1_split_5050_content_title',''),(192526,40788,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(192527,40788,'blocks_1_split_5050_content_heading','Course Overview'),(192528,40788,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(192529,40788,'blocks_1_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(192530,40788,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(192531,40788,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(192532,40788,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(192533,40788,'blocks_1_split_5050_content_actions','1'),(192534,40788,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(192535,40788,'blocks_1_split_5050_content',''),(192536,40788,'_blocks_1_split_5050_content','field_61767afceb8ba'),(192537,40788,'blocks_2_acfe_flexible_toggle',''),(192538,40788,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(192539,40788,'blocks_2_acfe_flexible_layout_title','Form'),(192540,40788,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(192541,40788,'blocks_2_row_content_format','standard'),(192542,40788,'_blocks_2_row_content_format','field_6481ead962881'),(192543,40788,'blocks_2_row_content_title',''),(192544,40788,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(192545,40788,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(192546,40788,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(192547,40788,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(192548,40788,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(192549,40788,'blocks_2_row_content_actions',''),(192550,40788,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(192551,40788,'blocks_2_row_content',''),(192552,40788,'_blocks_2_row_content','field_61a0f5f5b3db0'),(192553,40788,'blocks_2_row_form','40394'),(192554,40788,'_blocks_2_row_form','field_61a4ff2c0b08e'),(192555,40788,'blocks_2_row_form_button_label',''),(192556,40788,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(192583,40789,'hide_hero','0'),(192584,40789,'_hide_hero','field_66a2380fcda39'),(192585,40789,'hero_title','Level 4 Personal Trainer Course'),(192586,40789,'_hero_title','field_617571fe285e8'),(192587,40789,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(192588,40789,'_hero_text','field_6175723c285e9'),(192589,40789,'hero_actions','1'),(192590,40789,'_hero_actions','field_61757270285ea'),(192591,40789,'hero_style','default'),(192592,40789,'_hero_style','field_62051d9dc5324'),(192593,40789,'_thumbnail_id','40782'),(192594,40789,'__thumbnail_id','field_617570855ddaf'),(192595,40789,'hero_image_pos_x','right'),(192596,40789,'_hero_image_pos_x','field_62ec3d05390bb'),(192597,40789,'hero_image_pos_y','top'),(192598,40789,'_hero_image_pos_y','field_62ec3d05390bc'),(192599,40789,'hero_image_pos',''),(192600,40789,'_hero_image_pos','field_62ec3d05390ba'),(192601,40789,'fft_hide_from_listings','0'),(192602,40789,'_fft_hide_from_listings','field_61f1320446ab2'),(192603,40789,'fft_page_format','default'),(192604,40789,'_fft_page_format','field_61ae213f1f218'),(192605,40789,'fft_hide_nav','0'),(192606,40789,'_fft_hide_nav','field_635bd5e43527c'),(192607,40789,'fft_hide_header_call_to_action','0'),(192608,40789,'_fft_hide_header_call_to_action','field_635bd6723527d'),(192609,40789,'fft_page_sitemap','0'),(192610,40789,'_fft_page_sitemap','field_61af9b34e8181'),(192611,40789,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:4:\"form\";}'),(192612,40789,'_blocks','field_6176696113096'),(192613,40789,'course_label_text',''),(192614,40789,'_course_label_text','field_61e17babf71fa'),(192615,40789,'course_label',''),(192616,40789,'_course_label','field_61e12f92749a7'),(192617,40789,'course_description',''),(192618,40789,'_course_description','field_617ac5788e5e1'),(192619,40789,'course_key_info',''),(192620,40789,'_course_key_info','field_617ac6ad8e5e2'),(192621,40789,'course_included',''),(192622,40789,'_course_included','field_617ac6f08e5e4'),(192623,40789,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(192624,40789,'_hero_actions_0_button','field_61757281285eb'),(192625,40789,'blocks_0_acfe_flexible_toggle',''),(192626,40789,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(192627,40789,'blocks_0_acfe_flexible_layout_title','Icons'),(192628,40789,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(192629,40789,'blocks_0_options_theme','#b61234'),(192630,40789,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(192631,40789,'blocks_0_options_format','row'),(192632,40789,'_blocks_0_options_format','field_64bfde9a90690'),(192633,40789,'blocks_0_options',''),(192634,40789,'_blocks_0_options','field_64bfdd9b90684'),(192635,40789,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(192636,40789,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(192637,40789,'blocks_0_icon_row_items_0_label','Accreditation'),(192638,40789,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(192639,40789,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(192640,40789,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(192641,40789,'blocks_0_icon_row_items_1_icon','finance.svg'),(192642,40789,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(192643,40789,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(192644,40789,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(192645,40789,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(192646,40789,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(192647,40789,'blocks_0_icon_row_items_2_icon','progression.svg'),(192648,40789,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(192649,40789,'blocks_0_icon_row_items_2_label','Earning Potential'),(192650,40789,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(192651,40789,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(192652,40789,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(192653,40789,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(192654,40789,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(192655,40789,'blocks_0_icon_row_items_3_label','Qualification'),(192656,40789,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(192657,40789,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(192658,40789,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(192659,40789,'blocks_0_icon_row_items','4'),(192660,40789,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(192661,40789,'blocks_1_acfe_flexible_toggle',''),(192662,40789,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(192663,40789,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(192664,40789,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(192665,40789,'blocks_1_options_theme','#ffffff'),(192666,40789,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(192667,40789,'blocks_1_options_reverse','0'),(192668,40789,'_blocks_1_options_reverse','field_61768049bb8ac'),(192669,40789,'blocks_1_options',''),(192670,40789,'_blocks_1_options','field_617682517c334'),(192671,40789,'blocks_1_split_5050_image','40785'),(192672,40789,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(192673,40789,'blocks_1_split_5050_video',''),(192674,40789,'_blocks_1_split_5050_video','field_6239f3160848a'),(192675,40789,'blocks_1_split_5050_content_title',''),(192676,40789,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(192677,40789,'blocks_1_split_5050_content_heading','Course Overview'),(192678,40789,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(192679,40789,'blocks_1_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(192680,40789,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(192681,40789,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(192682,40789,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(192683,40789,'blocks_1_split_5050_content_actions','1'),(192684,40789,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(192685,40789,'blocks_1_split_5050_content',''),(192686,40789,'_blocks_1_split_5050_content','field_61767afceb8ba'),(192687,40789,'blocks_2_acfe_flexible_toggle',''),(192688,40789,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(192689,40789,'blocks_2_acfe_flexible_layout_title','Template'),(192690,40789,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(192691,40789,'blocks_2_template','39207'),(192692,40789,'_blocks_2_template','field_617bdd570fe01'),(192693,40789,'blocks_3_acfe_flexible_toggle',''),(192694,40789,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(192695,40789,'blocks_3_acfe_flexible_layout_title','Form'),(192696,40789,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(192697,40789,'blocks_3_row_content_format','standard'),(192698,40789,'_blocks_3_row_content_format','field_6481ead962881'),(192699,40789,'blocks_3_row_content_title',''),(192700,40789,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(192701,40789,'blocks_3_row_content_heading','Level 4 Personal Trainer Course'),(192702,40789,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(192703,40789,'blocks_3_row_content_text','Fill out the form to receive a price guide.'),(192704,40789,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(192705,40789,'blocks_3_row_content_actions',''),(192706,40789,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(192707,40789,'blocks_3_row_content',''),(192708,40789,'_blocks_3_row_content','field_61a0f5f5b3db0'),(192709,40789,'blocks_3_row_form','40394'),(192710,40789,'_blocks_3_row_form','field_61a4ff2c0b08e'),(192711,40789,'blocks_3_row_form_button_label',''),(192712,40789,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(192755,40790,'hide_hero','0'),(192756,40790,'_hide_hero','field_66a2380fcda39'),(192757,40790,'hero_title','Level 4 Personal Trainer Course'),(192758,40790,'_hero_title','field_617571fe285e8'),(192759,40790,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(192760,40790,'_hero_text','field_6175723c285e9'),(192761,40790,'hero_actions','1'),(192762,40790,'_hero_actions','field_61757270285ea'),(192763,40790,'hero_style','default'),(192764,40790,'_hero_style','field_62051d9dc5324'),(192765,40790,'_thumbnail_id','40782'),(192766,40790,'__thumbnail_id','field_617570855ddaf'),(192767,40790,'hero_image_pos_x','right'),(192768,40790,'_hero_image_pos_x','field_62ec3d05390bb'),(192769,40790,'hero_image_pos_y','top'),(192770,40790,'_hero_image_pos_y','field_62ec3d05390bc'),(192771,40790,'hero_image_pos',''),(192772,40790,'_hero_image_pos','field_62ec3d05390ba'),(192773,40790,'fft_hide_from_listings','0'),(192774,40790,'_fft_hide_from_listings','field_61f1320446ab2'),(192775,40790,'fft_page_format','default'),(192776,40790,'_fft_page_format','field_61ae213f1f218'),(192777,40790,'fft_hide_nav','0'),(192778,40790,'_fft_hide_nav','field_635bd5e43527c'),(192779,40790,'fft_hide_header_call_to_action','0'),(192780,40790,'_fft_hide_header_call_to_action','field_635bd6723527d'),(192781,40790,'fft_page_sitemap','0'),(192782,40790,'_fft_page_sitemap','field_61af9b34e8181'),(192783,40790,'blocks','a:5:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:4:\"form\";i:4;s:5:\"cards\";}'),(192784,40790,'_blocks','field_6176696113096'),(192785,40790,'course_label_text',''),(192786,40790,'_course_label_text','field_61e17babf71fa'),(192787,40790,'course_label',''),(192788,40790,'_course_label','field_61e12f92749a7'),(192789,40790,'course_description',''),(192790,40790,'_course_description','field_617ac5788e5e1'),(192791,40790,'course_key_info',''),(192792,40790,'_course_key_info','field_617ac6ad8e5e2'),(192793,40790,'course_included',''),(192794,40790,'_course_included','field_617ac6f08e5e4'),(192795,40790,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(192796,40790,'_hero_actions_0_button','field_61757281285eb'),(192797,40790,'blocks_0_acfe_flexible_toggle',''),(192798,40790,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(192799,40790,'blocks_0_acfe_flexible_layout_title','Icons'),(192800,40790,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(192801,40790,'blocks_0_options_theme','#b61234'),(192802,40790,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(192803,40790,'blocks_0_options_format','row'),(192804,40790,'_blocks_0_options_format','field_64bfde9a90690'),(192805,40790,'blocks_0_options',''),(192806,40790,'_blocks_0_options','field_64bfdd9b90684'),(192807,40790,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(192808,40790,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(192809,40790,'blocks_0_icon_row_items_0_label','Accreditation'),(192810,40790,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(192811,40790,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(192812,40790,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(192813,40790,'blocks_0_icon_row_items_1_icon','finance.svg'),(192814,40790,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(192815,40790,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(192816,40790,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(192817,40790,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(192818,40790,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(192819,40790,'blocks_0_icon_row_items_2_icon','progression.svg'),(192820,40790,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(192821,40790,'blocks_0_icon_row_items_2_label','Earning Potential'),(192822,40790,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(192823,40790,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(192824,40790,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(192825,40790,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(192826,40790,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(192827,40790,'blocks_0_icon_row_items_3_label','Qualification'),(192828,40790,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(192829,40790,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(192830,40790,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(192831,40790,'blocks_0_icon_row_items','4'),(192832,40790,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(192833,40790,'blocks_1_acfe_flexible_toggle',''),(192834,40790,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(192835,40790,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(192836,40790,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(192837,40790,'blocks_1_options_theme','#ffffff'),(192838,40790,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(192839,40790,'blocks_1_options_reverse','0'),(192840,40790,'_blocks_1_options_reverse','field_61768049bb8ac'),(192841,40790,'blocks_1_options',''),(192842,40790,'_blocks_1_options','field_617682517c334'),(192843,40790,'blocks_1_split_5050_image','40785'),(192844,40790,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(192845,40790,'blocks_1_split_5050_video',''),(192846,40790,'_blocks_1_split_5050_video','field_6239f3160848a'),(192847,40790,'blocks_1_split_5050_content_title',''),(192848,40790,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(192849,40790,'blocks_1_split_5050_content_heading','Course Overview'),(192850,40790,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(192851,40790,'blocks_1_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(192852,40790,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(192853,40790,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(192854,40790,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(192855,40790,'blocks_1_split_5050_content_actions','1'),(192856,40790,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(192857,40790,'blocks_1_split_5050_content',''),(192858,40790,'_blocks_1_split_5050_content','field_61767afceb8ba'),(192859,40790,'blocks_2_acfe_flexible_toggle',''),(192860,40790,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(192861,40790,'blocks_2_acfe_flexible_layout_title','Template'),(192862,40790,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(192863,40790,'blocks_2_template','39207'),(192864,40790,'_blocks_2_template','field_617bdd570fe01'),(192865,40790,'blocks_3_acfe_flexible_toggle',''),(192866,40790,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(192867,40790,'blocks_3_acfe_flexible_layout_title','Form'),(192868,40790,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(192869,40790,'blocks_3_row_content_format','standard'),(192870,40790,'_blocks_3_row_content_format','field_6481ead962881'),(192871,40790,'blocks_3_row_content_title',''),(192872,40790,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(192873,40790,'blocks_3_row_content_heading','Level 4 Personal Trainer Course'),(192874,40790,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(192875,40790,'blocks_3_row_content_text','Fill out the form to receive a price guide.'),(192876,40790,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(192877,40790,'blocks_3_row_content_actions',''),(192878,40790,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(192879,40790,'blocks_3_row_content',''),(192880,40790,'_blocks_3_row_content','field_61a0f5f5b3db0'),(192881,40790,'blocks_3_row_form','40394'),(192882,40790,'_blocks_3_row_form','field_61a4ff2c0b08e'),(192883,40790,'blocks_3_row_form_button_label',''),(192884,40790,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(192885,40790,'blocks_4_acfe_flexible_toggle',''),(192886,40790,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(192887,40790,'blocks_4_acfe_flexible_layout_title','Cards'),(192888,40790,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(192889,40790,'blocks_4_options_theme','#ffffff'),(192890,40790,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(192891,40790,'blocks_4_options_format','carousel'),(192892,40790,'_blocks_4_options_format','field_617a7b15245b5'),(192893,40790,'blocks_4_options_style','default'),(192894,40790,'_blocks_4_options_style','field_6278ffb63484a'),(192895,40790,'blocks_4_options_cards_current_listing','0'),(192896,40790,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(192897,40790,'blocks_4_options_cards_content','custom'),(192898,40790,'_blocks_4_options_cards_content','field_617aba6122688'),(192899,40790,'blocks_4_options',''),(192900,40790,'_blocks_4_options','field_617a7b15245b3'),(192901,40790,'blocks_4_cards_custom_0_image',''),(192902,40790,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(192903,40790,'blocks_4_cards_custom_0_title','Advanced Programming'),(192904,40790,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(192905,40790,'blocks_4_cards_custom_0_text','Master sophisticated training regimens tailored to diverse client needs and goals.'),(192906,40790,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(192907,40790,'blocks_4_cards_custom_0_link',''),(192908,40790,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(192909,40790,'blocks_4_cards_custom_1_image',''),(192910,40790,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(192911,40790,'blocks_4_cards_custom_1_title','Advanced Behaviour Change'),(192912,40790,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(192913,40790,'blocks_4_cards_custom_1_text','Learn cutting-edge strategies to inspire and sustain client motivation and commitment.'),(192914,40790,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(192915,40790,'blocks_4_cards_custom_1_link',''),(192916,40790,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(192917,40790,'blocks_4_cards_custom_2_image',''),(192918,40790,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(192919,40790,'blocks_4_cards_custom_2_title','Training Considerations for Males and Females'),(192920,40790,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(192921,40790,'blocks_4_cards_custom_2_text','Understand the nuanced physiological differences and adapt your training approaches accordingly.'),(192922,40790,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(192923,40790,'blocks_4_cards_custom_2_link',''),(192924,40790,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(192925,40790,'blocks_4_cards_custom','3'),(192926,40790,'_blocks_4_cards_custom','field_6194cbf84d386'),(192943,40791,'hide_hero','0'),(192944,40791,'_hide_hero','field_66a2380fcda39'),(192945,40791,'hero_title','Level 4 Personal Trainer Course'),(192946,40791,'_hero_title','field_617571fe285e8'),(192947,40791,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(192948,40791,'_hero_text','field_6175723c285e9'),(192949,40791,'hero_actions','1'),(192950,40791,'_hero_actions','field_61757270285ea'),(192951,40791,'hero_style','default'),(192952,40791,'_hero_style','field_62051d9dc5324'),(192953,40791,'_thumbnail_id','40782'),(192954,40791,'__thumbnail_id','field_617570855ddaf'),(192955,40791,'hero_image_pos_x','right'),(192956,40791,'_hero_image_pos_x','field_62ec3d05390bb'),(192957,40791,'hero_image_pos_y','top'),(192958,40791,'_hero_image_pos_y','field_62ec3d05390bc'),(192959,40791,'hero_image_pos',''),(192960,40791,'_hero_image_pos','field_62ec3d05390ba'),(192961,40791,'fft_hide_from_listings','0'),(192962,40791,'_fft_hide_from_listings','field_61f1320446ab2'),(192963,40791,'fft_page_format','default'),(192964,40791,'_fft_page_format','field_61ae213f1f218'),(192965,40791,'fft_hide_nav','0'),(192966,40791,'_fft_hide_nav','field_635bd5e43527c'),(192967,40791,'fft_hide_header_call_to_action','0'),(192968,40791,'_fft_hide_header_call_to_action','field_635bd6723527d'),(192969,40791,'fft_page_sitemap','0'),(192970,40791,'_fft_page_sitemap','field_61af9b34e8181'),(192971,40791,'blocks','a:5:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:4:\"form\";i:4;s:5:\"cards\";}'),(192972,40791,'_blocks','field_6176696113096'),(192973,40791,'course_label_text',''),(192974,40791,'_course_label_text','field_61e17babf71fa'),(192975,40791,'course_label',''),(192976,40791,'_course_label','field_61e12f92749a7'),(192977,40791,'course_description',''),(192978,40791,'_course_description','field_617ac5788e5e1'),(192979,40791,'course_key_info',''),(192980,40791,'_course_key_info','field_617ac6ad8e5e2'),(192981,40791,'course_included',''),(192982,40791,'_course_included','field_617ac6f08e5e4'),(192983,40791,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(192984,40791,'_hero_actions_0_button','field_61757281285eb'),(192985,40791,'blocks_0_acfe_flexible_toggle',''),(192986,40791,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(192987,40791,'blocks_0_acfe_flexible_layout_title','Icons'),(192988,40791,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(192989,40791,'blocks_0_options_theme','#b61234'),(192990,40791,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(192991,40791,'blocks_0_options_format','row'),(192992,40791,'_blocks_0_options_format','field_64bfde9a90690'),(192993,40791,'blocks_0_options',''),(192994,40791,'_blocks_0_options','field_64bfdd9b90684'),(192995,40791,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(192996,40791,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(192997,40791,'blocks_0_icon_row_items_0_label','Accreditation'),(192998,40791,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(192999,40791,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(193000,40791,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(193001,40791,'blocks_0_icon_row_items_1_icon','finance.svg'),(193002,40791,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(193003,40791,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(193004,40791,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(193005,40791,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(193006,40791,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(193007,40791,'blocks_0_icon_row_items_2_icon','progression.svg'),(193008,40791,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(193009,40791,'blocks_0_icon_row_items_2_label','Earning Potential'),(193010,40791,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(193011,40791,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(193012,40791,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(193013,40791,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(193014,40791,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(193015,40791,'blocks_0_icon_row_items_3_label','Qualification'),(193016,40791,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(193017,40791,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(193018,40791,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(193019,40791,'blocks_0_icon_row_items','4'),(193020,40791,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(193021,40791,'blocks_1_acfe_flexible_toggle',''),(193022,40791,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(193023,40791,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(193024,40791,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(193025,40791,'blocks_1_options_theme','#ffffff'),(193026,40791,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(193027,40791,'blocks_1_options_reverse','0'),(193028,40791,'_blocks_1_options_reverse','field_61768049bb8ac'),(193029,40791,'blocks_1_options',''),(193030,40791,'_blocks_1_options','field_617682517c334'),(193031,40791,'blocks_1_split_5050_image','40785'),(193032,40791,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(193033,40791,'blocks_1_split_5050_video',''),(193034,40791,'_blocks_1_split_5050_video','field_6239f3160848a'),(193035,40791,'blocks_1_split_5050_content_title',''),(193036,40791,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(193037,40791,'blocks_1_split_5050_content_heading','Course Overview'),(193038,40791,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(193039,40791,'blocks_1_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(193040,40791,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(193041,40791,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(193042,40791,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(193043,40791,'blocks_1_split_5050_content_actions','1'),(193044,40791,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(193045,40791,'blocks_1_split_5050_content',''),(193046,40791,'_blocks_1_split_5050_content','field_61767afceb8ba'),(193047,40791,'blocks_2_acfe_flexible_toggle',''),(193048,40791,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(193049,40791,'blocks_2_acfe_flexible_layout_title','Template'),(193050,40791,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(193051,40791,'blocks_2_template','39207'),(193052,40791,'_blocks_2_template','field_617bdd570fe01'),(193053,40791,'blocks_3_acfe_flexible_toggle',''),(193054,40791,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(193055,40791,'blocks_3_acfe_flexible_layout_title','Form'),(193056,40791,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(193057,40791,'blocks_3_row_content_format','standard'),(193058,40791,'_blocks_3_row_content_format','field_6481ead962881'),(193059,40791,'blocks_3_row_content_title',''),(193060,40791,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(193061,40791,'blocks_3_row_content_heading','Level 4 Personal Trainer Course'),(193062,40791,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(193063,40791,'blocks_3_row_content_text','Fill out the form to receive a price guide.'),(193064,40791,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(193065,40791,'blocks_3_row_content_actions',''),(193066,40791,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(193067,40791,'blocks_3_row_content',''),(193068,40791,'_blocks_3_row_content','field_61a0f5f5b3db0'),(193069,40791,'blocks_3_row_form','40394'),(193070,40791,'_blocks_3_row_form','field_61a4ff2c0b08e'),(193071,40791,'blocks_3_row_form_button_label',''),(193072,40791,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(193073,40791,'blocks_4_acfe_flexible_toggle',''),(193074,40791,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(193075,40791,'blocks_4_acfe_flexible_layout_title','Cards'),(193076,40791,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(193077,40791,'blocks_4_options_theme','#ffffff'),(193078,40791,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(193079,40791,'blocks_4_options_format','carousel'),(193080,40791,'_blocks_4_options_format','field_617a7b15245b5'),(193081,40791,'blocks_4_options_style','default'),(193082,40791,'_blocks_4_options_style','field_6278ffb63484a'),(193083,40791,'blocks_4_options_cards_current_listing','0'),(193084,40791,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(193085,40791,'blocks_4_options_cards_content','custom'),(193086,40791,'_blocks_4_options_cards_content','field_617aba6122688'),(193087,40791,'blocks_4_options',''),(193088,40791,'_blocks_4_options','field_617a7b15245b3'),(193089,40791,'blocks_4_cards_custom_0_image',''),(193090,40791,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(193091,40791,'blocks_4_cards_custom_0_title','Advanced Programming'),(193092,40791,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(193093,40791,'blocks_4_cards_custom_0_text','Master sophisticated training regimens tailored to diverse client needs and goals.'),(193094,40791,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(193095,40791,'blocks_4_cards_custom_0_link',''),(193096,40791,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(193097,40791,'blocks_4_cards_custom_1_image',''),(193098,40791,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(193099,40791,'blocks_4_cards_custom_1_title','Advanced Behaviour Change'),(193100,40791,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(193101,40791,'blocks_4_cards_custom_1_text','Learn cutting-edge strategies to inspire and sustain client motivation and commitment.'),(193102,40791,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(193103,40791,'blocks_4_cards_custom_1_link',''),(193104,40791,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(193105,40791,'blocks_4_cards_custom_2_image',''),(193106,40791,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(193107,40791,'blocks_4_cards_custom_2_title','Training Considerations for Males and Females'),(193108,40791,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(193109,40791,'blocks_4_cards_custom_2_text','Understand the nuanced physiological differences and adapt your training approaches accordingly.'),(193110,40791,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(193111,40791,'blocks_4_cards_custom_2_link',''),(193112,40791,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(193113,40791,'blocks_4_cards_custom','5'),(193114,40791,'_blocks_4_cards_custom','field_6194cbf84d386'),(193115,40791,'blocks_4_cards_custom_3_image',''),(193116,40791,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(193117,40791,'blocks_4_cards_custom_3_title','Advanced Fitness Testing'),(193118,40791,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(193119,40791,'blocks_4_cards_custom_3_text','Conduct precise and insightful fitness assessments to monitor and enhance client progress.'),(193120,40791,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(193121,40791,'blocks_4_cards_custom_3_link',''),(193122,40791,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(193123,40791,'blocks_4_cards_custom_4_image',''),(193124,40791,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(193125,40791,'blocks_4_cards_custom_4_title','Advanced Techniques to Support and Enhance the Client Journey'),(193126,40791,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(193127,40791,'blocks_4_cards_custom_4_text','Implement innovative methods to deliver exceptional client experiences and outcomes.'),(193128,40791,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(193129,40791,'blocks_4_cards_custom_4_link',''),(193130,40791,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(193143,40792,'hide_hero','0'),(193144,40792,'_hide_hero','field_66a2380fcda39'),(193145,40792,'hero_title','Level 4 Personal Trainer Course'),(193146,40792,'_hero_title','field_617571fe285e8'),(193147,40792,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(193148,40792,'_hero_text','field_6175723c285e9'),(193149,40792,'hero_actions','1'),(193150,40792,'_hero_actions','field_61757270285ea'),(193151,40792,'hero_style','default'),(193152,40792,'_hero_style','field_62051d9dc5324'),(193153,40792,'_thumbnail_id','40782'),(193154,40792,'__thumbnail_id','field_617570855ddaf'),(193155,40792,'hero_image_pos_x','right'),(193156,40792,'_hero_image_pos_x','field_62ec3d05390bb'),(193157,40792,'hero_image_pos_y','top'),(193158,40792,'_hero_image_pos_y','field_62ec3d05390bc'),(193159,40792,'hero_image_pos',''),(193160,40792,'_hero_image_pos','field_62ec3d05390ba'),(193161,40792,'fft_hide_from_listings','0'),(193162,40792,'_fft_hide_from_listings','field_61f1320446ab2'),(193163,40792,'fft_page_format','default'),(193164,40792,'_fft_page_format','field_61ae213f1f218'),(193165,40792,'fft_hide_nav','0'),(193166,40792,'_fft_hide_nav','field_635bd5e43527c'),(193167,40792,'fft_hide_header_call_to_action','0'),(193168,40792,'_fft_hide_header_call_to_action','field_635bd6723527d'),(193169,40792,'fft_page_sitemap','0'),(193170,40792,'_fft_page_sitemap','field_61af9b34e8181'),(193171,40792,'blocks','a:6:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:4:\"form\";i:4;s:5:\"cards\";i:5;s:10:\"text_block\";}'),(193172,40792,'_blocks','field_6176696113096'),(193173,40792,'course_label_text',''),(193174,40792,'_course_label_text','field_61e17babf71fa'),(193175,40792,'course_label',''),(193176,40792,'_course_label','field_61e12f92749a7'),(193177,40792,'course_description',''),(193178,40792,'_course_description','field_617ac5788e5e1'),(193179,40792,'course_key_info',''),(193180,40792,'_course_key_info','field_617ac6ad8e5e2'),(193181,40792,'course_included',''),(193182,40792,'_course_included','field_617ac6f08e5e4'),(193183,40792,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(193184,40792,'_hero_actions_0_button','field_61757281285eb'),(193185,40792,'blocks_0_acfe_flexible_toggle',''),(193186,40792,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(193187,40792,'blocks_0_acfe_flexible_layout_title','Icons'),(193188,40792,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(193189,40792,'blocks_0_options_theme','#b61234'),(193190,40792,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(193191,40792,'blocks_0_options_format','row'),(193192,40792,'_blocks_0_options_format','field_64bfde9a90690'),(193193,40792,'blocks_0_options',''),(193194,40792,'_blocks_0_options','field_64bfdd9b90684'),(193195,40792,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(193196,40792,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(193197,40792,'blocks_0_icon_row_items_0_label','Accreditation'),(193198,40792,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(193199,40792,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(193200,40792,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(193201,40792,'blocks_0_icon_row_items_1_icon','finance.svg'),(193202,40792,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(193203,40792,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(193204,40792,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(193205,40792,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(193206,40792,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(193207,40792,'blocks_0_icon_row_items_2_icon','progression.svg'),(193208,40792,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(193209,40792,'blocks_0_icon_row_items_2_label','Earning Potential'),(193210,40792,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(193211,40792,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(193212,40792,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(193213,40792,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(193214,40792,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(193215,40792,'blocks_0_icon_row_items_3_label','Qualification'),(193216,40792,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(193217,40792,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(193218,40792,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(193219,40792,'blocks_0_icon_row_items','4'),(193220,40792,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(193221,40792,'blocks_1_acfe_flexible_toggle',''),(193222,40792,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(193223,40792,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(193224,40792,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(193225,40792,'blocks_1_options_theme','#ffffff'),(193226,40792,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(193227,40792,'blocks_1_options_reverse','0'),(193228,40792,'_blocks_1_options_reverse','field_61768049bb8ac'),(193229,40792,'blocks_1_options',''),(193230,40792,'_blocks_1_options','field_617682517c334'),(193231,40792,'blocks_1_split_5050_image','40785'),(193232,40792,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(193233,40792,'blocks_1_split_5050_video',''),(193234,40792,'_blocks_1_split_5050_video','field_6239f3160848a'),(193235,40792,'blocks_1_split_5050_content_title',''),(193236,40792,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(193237,40792,'blocks_1_split_5050_content_heading','Course Overview'),(193238,40792,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(193239,40792,'blocks_1_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(193240,40792,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(193241,40792,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(193242,40792,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(193243,40792,'blocks_1_split_5050_content_actions','1'),(193244,40792,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(193245,40792,'blocks_1_split_5050_content',''),(193246,40792,'_blocks_1_split_5050_content','field_61767afceb8ba'),(193247,40792,'blocks_2_acfe_flexible_toggle',''),(193248,40792,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(193249,40792,'blocks_2_acfe_flexible_layout_title','Template'),(193250,40792,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(193251,40792,'blocks_2_template','39207'),(193252,40792,'_blocks_2_template','field_617bdd570fe01'),(193253,40792,'blocks_3_acfe_flexible_toggle',''),(193254,40792,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(193255,40792,'blocks_3_acfe_flexible_layout_title','Form'),(193256,40792,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(193257,40792,'blocks_3_row_content_format','standard'),(193258,40792,'_blocks_3_row_content_format','field_6481ead962881'),(193259,40792,'blocks_3_row_content_title',''),(193260,40792,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(193261,40792,'blocks_3_row_content_heading','Level 4 Personal Trainer Course'),(193262,40792,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(193263,40792,'blocks_3_row_content_text','Fill out the form to receive a price guide.'),(193264,40792,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(193265,40792,'blocks_3_row_content_actions',''),(193266,40792,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(193267,40792,'blocks_3_row_content',''),(193268,40792,'_blocks_3_row_content','field_61a0f5f5b3db0'),(193269,40792,'blocks_3_row_form','40394'),(193270,40792,'_blocks_3_row_form','field_61a4ff2c0b08e'),(193271,40792,'blocks_3_row_form_button_label',''),(193272,40792,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(193273,40792,'blocks_4_acfe_flexible_toggle',''),(193274,40792,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(193275,40792,'blocks_4_acfe_flexible_layout_title','Cards'),(193276,40792,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(193277,40792,'blocks_4_options_theme','#ffffff'),(193278,40792,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(193279,40792,'blocks_4_options_format','carousel'),(193280,40792,'_blocks_4_options_format','field_617a7b15245b5'),(193281,40792,'blocks_4_options_style','default'),(193282,40792,'_blocks_4_options_style','field_6278ffb63484a'),(193283,40792,'blocks_4_options_cards_current_listing','0'),(193284,40792,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(193285,40792,'blocks_4_options_cards_content','custom'),(193286,40792,'_blocks_4_options_cards_content','field_617aba6122688'),(193287,40792,'blocks_4_options',''),(193288,40792,'_blocks_4_options','field_617a7b15245b3'),(193289,40792,'blocks_4_cards_custom_0_image',''),(193290,40792,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(193291,40792,'blocks_4_cards_custom_0_title','Advanced Programming'),(193292,40792,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(193293,40792,'blocks_4_cards_custom_0_text','Master sophisticated training regimens tailored to diverse client needs and goals.'),(193294,40792,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(193295,40792,'blocks_4_cards_custom_0_link',''),(193296,40792,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(193297,40792,'blocks_4_cards_custom_1_image',''),(193298,40792,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(193299,40792,'blocks_4_cards_custom_1_title','Advanced Behaviour Change'),(193300,40792,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(193301,40792,'blocks_4_cards_custom_1_text','Learn cutting-edge strategies to inspire and sustain client motivation and commitment.'),(193302,40792,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(193303,40792,'blocks_4_cards_custom_1_link',''),(193304,40792,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(193305,40792,'blocks_4_cards_custom_2_image',''),(193306,40792,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(193307,40792,'blocks_4_cards_custom_2_title','Training Considerations for Males and Females'),(193308,40792,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(193309,40792,'blocks_4_cards_custom_2_text','Understand the nuanced physiological differences and adapt your training approaches accordingly.'),(193310,40792,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(193311,40792,'blocks_4_cards_custom_2_link',''),(193312,40792,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(193313,40792,'blocks_4_cards_custom','5'),(193314,40792,'_blocks_4_cards_custom','field_6194cbf84d386'),(193315,40792,'blocks_4_cards_custom_3_image',''),(193316,40792,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(193317,40792,'blocks_4_cards_custom_3_title','Advanced Fitness Testing'),(193318,40792,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(193319,40792,'blocks_4_cards_custom_3_text','Conduct precise and insightful fitness assessments to monitor and enhance client progress.'),(193320,40792,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(193321,40792,'blocks_4_cards_custom_3_link',''),(193322,40792,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(193323,40792,'blocks_4_cards_custom_4_image',''),(193324,40792,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(193325,40792,'blocks_4_cards_custom_4_title','Advanced Techniques to Support and Enhance the Client Journey'),(193326,40792,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(193327,40792,'blocks_4_cards_custom_4_text','Implement innovative methods to deliver exceptional client experiences and outcomes.'),(193328,40792,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(193329,40792,'blocks_4_cards_custom_4_link',''),(193330,40792,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(193331,40792,'blocks_5_acfe_flexible_toggle',''),(193332,40792,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(193333,40792,'blocks_5_acfe_flexible_layout_title','Text Block'),(193334,40792,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(193335,40792,'blocks_5_options_theme','#ffffff'),(193336,40792,'_blocks_5_options_theme','field_6176830e2ad17'),(193337,40792,'blocks_5_options',''),(193338,40792,'_blocks_5_options','field_6176830e2ad16'),(193339,40792,'blocks_5_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(193340,40792,'_blocks_5_text_block_heading','field_617669d413097'),(193341,40792,'blocks_5_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(193342,40792,'_blocks_5_text_block_content','field_617669ec13098'),(193413,40793,'hide_hero','0'),(193414,40793,'_hide_hero','field_66a2380fcda39'),(193415,40793,'hero_title','Level 4 Personal Trainer Course'),(193416,40793,'_hero_title','field_617571fe285e8'),(193417,40793,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(193418,40793,'_hero_text','field_6175723c285e9'),(193419,40793,'hero_actions','1'),(193420,40793,'_hero_actions','field_61757270285ea'),(193421,40793,'hero_style','default'),(193422,40793,'_hero_style','field_62051d9dc5324'),(193423,40793,'_thumbnail_id','40782'),(193424,40793,'__thumbnail_id','field_617570855ddaf'),(193425,40793,'hero_image_pos_x','right'),(193426,40793,'_hero_image_pos_x','field_62ec3d05390bb'),(193427,40793,'hero_image_pos_y','top'),(193428,40793,'_hero_image_pos_y','field_62ec3d05390bc'),(193429,40793,'hero_image_pos',''),(193430,40793,'_hero_image_pos','field_62ec3d05390ba'),(193431,40793,'fft_hide_from_listings','0'),(193432,40793,'_fft_hide_from_listings','field_61f1320446ab2'),(193433,40793,'fft_page_format','default'),(193434,40793,'_fft_page_format','field_61ae213f1f218'),(193435,40793,'fft_hide_nav','0'),(193436,40793,'_fft_hide_nav','field_635bd5e43527c'),(193437,40793,'fft_hide_header_call_to_action','0'),(193438,40793,'_fft_hide_header_call_to_action','field_635bd6723527d'),(193439,40793,'fft_page_sitemap','0'),(193440,40793,'_fft_page_sitemap','field_61af9b34e8181'),(193441,40793,'blocks','a:6:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:4:\"form\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";}'),(193442,40793,'_blocks','field_6176696113096'),(193443,40793,'course_label_text',''),(193444,40793,'_course_label_text','field_61e17babf71fa'),(193445,40793,'course_label',''),(193446,40793,'_course_label','field_61e12f92749a7'),(193447,40793,'course_description',''),(193448,40793,'_course_description','field_617ac5788e5e1'),(193449,40793,'course_key_info',''),(193450,40793,'_course_key_info','field_617ac6ad8e5e2'),(193451,40793,'course_included',''),(193452,40793,'_course_included','field_617ac6f08e5e4'),(193453,40793,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(193454,40793,'_hero_actions_0_button','field_61757281285eb'),(193455,40793,'blocks_0_acfe_flexible_toggle',''),(193456,40793,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(193457,40793,'blocks_0_acfe_flexible_layout_title','Icons'),(193458,40793,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(193459,40793,'blocks_0_options_theme','#b61234'),(193460,40793,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(193461,40793,'blocks_0_options_format','row'),(193462,40793,'_blocks_0_options_format','field_64bfde9a90690'),(193463,40793,'blocks_0_options',''),(193464,40793,'_blocks_0_options','field_64bfdd9b90684'),(193465,40793,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(193466,40793,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(193467,40793,'blocks_0_icon_row_items_0_label','Accreditation'),(193468,40793,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(193469,40793,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(193470,40793,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(193471,40793,'blocks_0_icon_row_items_1_icon','finance.svg'),(193472,40793,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(193473,40793,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(193474,40793,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(193475,40793,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(193476,40793,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(193477,40793,'blocks_0_icon_row_items_2_icon','progression.svg'),(193478,40793,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(193479,40793,'blocks_0_icon_row_items_2_label','Earning Potential'),(193480,40793,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(193481,40793,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(193482,40793,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(193483,40793,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(193484,40793,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(193485,40793,'blocks_0_icon_row_items_3_label','Qualification'),(193486,40793,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(193487,40793,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(193488,40793,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(193489,40793,'blocks_0_icon_row_items','4'),(193490,40793,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(193491,40793,'blocks_1_acfe_flexible_toggle',''),(193492,40793,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(193493,40793,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(193494,40793,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(193495,40793,'blocks_1_options_theme','#ffffff'),(193496,40793,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(193497,40793,'blocks_1_options_reverse','0'),(193498,40793,'_blocks_1_options_reverse','field_61768049bb8ac'),(193499,40793,'blocks_1_options',''),(193500,40793,'_blocks_1_options','field_617682517c334'),(193501,40793,'blocks_1_split_5050_image','40785'),(193502,40793,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(193503,40793,'blocks_1_split_5050_video',''),(193504,40793,'_blocks_1_split_5050_video','field_6239f3160848a'),(193505,40793,'blocks_1_split_5050_content_title',''),(193506,40793,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(193507,40793,'blocks_1_split_5050_content_heading','Course Overview'),(193508,40793,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(193509,40793,'blocks_1_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(193510,40793,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(193511,40793,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(193512,40793,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(193513,40793,'blocks_1_split_5050_content_actions','1'),(193514,40793,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(193515,40793,'blocks_1_split_5050_content',''),(193516,40793,'_blocks_1_split_5050_content','field_61767afceb8ba'),(193517,40793,'blocks_2_acfe_flexible_toggle',''),(193518,40793,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(193519,40793,'blocks_2_acfe_flexible_layout_title','Template'),(193520,40793,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(193521,40793,'blocks_2_template','39207'),(193522,40793,'_blocks_2_template','field_617bdd570fe01'),(193523,40793,'blocks_3_acfe_flexible_toggle',''),(193524,40793,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(193525,40793,'blocks_3_acfe_flexible_layout_title','Form'),(193526,40793,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(193527,40793,'blocks_3_row_content_format','standard'),(193528,40793,'_blocks_3_row_content_format','field_6481ead962881'),(193529,40793,'blocks_3_row_content_title',''),(193530,40793,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(193531,40793,'blocks_3_row_content_heading','Level 4 Personal Trainer Course'),(193532,40793,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(193533,40793,'blocks_3_row_content_text','Fill out the form to receive a price guide.'),(193534,40793,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(193535,40793,'blocks_3_row_content_actions',''),(193536,40793,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(193537,40793,'blocks_3_row_content',''),(193538,40793,'_blocks_3_row_content','field_61a0f5f5b3db0'),(193539,40793,'blocks_3_row_form','40394'),(193540,40793,'_blocks_3_row_form','field_61a4ff2c0b08e'),(193541,40793,'blocks_3_row_form_button_label',''),(193542,40793,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(193543,40793,'blocks_4_acfe_flexible_toggle',''),(193544,40793,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(193545,40793,'blocks_4_acfe_flexible_layout_title','Text Block'),(193546,40793,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(193547,40793,'blocks_4_options_theme','#ffffff'),(193548,40793,'_blocks_4_options_theme','field_6176830e2ad17'),(193549,40793,'blocks_4_options',''),(193550,40793,'_blocks_4_options','field_6176830e2ad16'),(193551,40793,'blocks_4_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(193552,40793,'_blocks_4_text_block_heading','field_617669d413097'),(193553,40793,'blocks_4_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(193554,40793,'_blocks_4_text_block_content','field_617669ec13098'),(193555,40793,'blocks_5_acfe_flexible_toggle',''),(193556,40793,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(193557,40793,'blocks_5_acfe_flexible_layout_title','Cards'),(193558,40793,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(193559,40793,'blocks_5_options_theme','#ffffff'),(193560,40793,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(193561,40793,'blocks_5_options_format','carousel'),(193562,40793,'_blocks_5_options_format','field_617a7b15245b5'),(193563,40793,'blocks_5_options_style','default'),(193564,40793,'_blocks_5_options_style','field_6278ffb63484a'),(193565,40793,'blocks_5_options_cards_current_listing','0'),(193566,40793,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(193567,40793,'blocks_5_options_cards_content','custom'),(193568,40793,'_blocks_5_options_cards_content','field_617aba6122688'),(193569,40793,'blocks_5_options',''),(193570,40793,'_blocks_5_options','field_617a7b15245b3'),(193571,40793,'blocks_5_cards_custom_0_image',''),(193572,40793,'_blocks_5_cards_custom_0_image','field_6194cc284d387'),(193573,40793,'blocks_5_cards_custom_0_title','Advanced Programming'),(193574,40793,'_blocks_5_cards_custom_0_title','field_6194cc454d388'),(193575,40793,'blocks_5_cards_custom_0_text','Master sophisticated training regimens tailored to diverse client needs and goals.'),(193576,40793,'_blocks_5_cards_custom_0_text','field_6194cc4a4d389'),(193577,40793,'blocks_5_cards_custom_0_link',''),(193578,40793,'_blocks_5_cards_custom_0_link','field_6194cc534d38a'),(193579,40793,'blocks_5_cards_custom_1_image',''),(193580,40793,'_blocks_5_cards_custom_1_image','field_6194cc284d387'),(193581,40793,'blocks_5_cards_custom_1_title','Advanced Behaviour Change'),(193582,40793,'_blocks_5_cards_custom_1_title','field_6194cc454d388'),(193583,40793,'blocks_5_cards_custom_1_text','Learn cutting-edge strategies to inspire and sustain client motivation and commitment.'),(193584,40793,'_blocks_5_cards_custom_1_text','field_6194cc4a4d389'),(193585,40793,'blocks_5_cards_custom_1_link',''),(193586,40793,'_blocks_5_cards_custom_1_link','field_6194cc534d38a'),(193587,40793,'blocks_5_cards_custom_2_image',''),(193588,40793,'_blocks_5_cards_custom_2_image','field_6194cc284d387'),(193589,40793,'blocks_5_cards_custom_2_title','Training Considerations for Males and Females'),(193590,40793,'_blocks_5_cards_custom_2_title','field_6194cc454d388'),(193591,40793,'blocks_5_cards_custom_2_text','Understand the nuanced physiological differences and adapt your training approaches accordingly.'),(193592,40793,'_blocks_5_cards_custom_2_text','field_6194cc4a4d389'),(193593,40793,'blocks_5_cards_custom_2_link',''),(193594,40793,'_blocks_5_cards_custom_2_link','field_6194cc534d38a'),(193595,40793,'blocks_5_cards_custom_3_image',''),(193596,40793,'_blocks_5_cards_custom_3_image','field_6194cc284d387'),(193597,40793,'blocks_5_cards_custom_3_title','Advanced Fitness Testing'),(193598,40793,'_blocks_5_cards_custom_3_title','field_6194cc454d388'),(193599,40793,'blocks_5_cards_custom_3_text','Conduct precise and insightful fitness assessments to monitor and enhance client progress.'),(193600,40793,'_blocks_5_cards_custom_3_text','field_6194cc4a4d389'),(193601,40793,'blocks_5_cards_custom_3_link',''),(193602,40793,'_blocks_5_cards_custom_3_link','field_6194cc534d38a'),(193603,40793,'blocks_5_cards_custom_4_image',''),(193604,40793,'_blocks_5_cards_custom_4_image','field_6194cc284d387'),(193605,40793,'blocks_5_cards_custom_4_title','Advanced Techniques to Support and Enhance the Client Journey'),(193606,40793,'_blocks_5_cards_custom_4_title','field_6194cc454d388'),(193607,40793,'blocks_5_cards_custom_4_text','Implement innovative methods to deliver exceptional client experiences and outcomes.'),(193608,40793,'_blocks_5_cards_custom_4_text','field_6194cc4a4d389'),(193609,40793,'blocks_5_cards_custom_4_link',''),(193610,40793,'_blocks_5_cards_custom_4_link','field_6194cc534d38a'),(193611,40793,'blocks_5_cards_custom','5'),(193612,40793,'_blocks_5_cards_custom','field_6194cbf84d386'),(193613,40794,'hide_hero','0'),(193614,40794,'_hide_hero','field_66a2380fcda39'),(193615,40794,'hero_title','Level 4 Personal Trainer Course'),(193616,40794,'_hero_title','field_617571fe285e8'),(193617,40794,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(193618,40794,'_hero_text','field_6175723c285e9'),(193619,40794,'hero_actions','1'),(193620,40794,'_hero_actions','field_61757270285ea'),(193621,40794,'hero_style','default'),(193622,40794,'_hero_style','field_62051d9dc5324'),(193623,40794,'_thumbnail_id','40782'),(193624,40794,'__thumbnail_id','field_617570855ddaf'),(193625,40794,'hero_image_pos_x','right'),(193626,40794,'_hero_image_pos_x','field_62ec3d05390bb'),(193627,40794,'hero_image_pos_y','top'),(193628,40794,'_hero_image_pos_y','field_62ec3d05390bc'),(193629,40794,'hero_image_pos',''),(193630,40794,'_hero_image_pos','field_62ec3d05390ba'),(193631,40794,'fft_hide_from_listings','0'),(193632,40794,'_fft_hide_from_listings','field_61f1320446ab2'),(193633,40794,'fft_page_format','default'),(193634,40794,'_fft_page_format','field_61ae213f1f218'),(193635,40794,'fft_hide_nav','0'),(193636,40794,'_fft_hide_nav','field_635bd5e43527c'),(193637,40794,'fft_hide_header_call_to_action','0'),(193638,40794,'_fft_hide_header_call_to_action','field_635bd6723527d'),(193639,40794,'fft_page_sitemap','0'),(193640,40794,'_fft_page_sitemap','field_61af9b34e8181'),(193641,40794,'blocks','a:6:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:4:\"form\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";}'),(193642,40794,'_blocks','field_6176696113096'),(193643,40794,'course_label_text',''),(193644,40794,'_course_label_text','field_61e17babf71fa'),(193645,40794,'course_label',''),(193646,40794,'_course_label','field_61e12f92749a7'),(193647,40794,'course_description',''),(193648,40794,'_course_description','field_617ac5788e5e1'),(193649,40794,'course_key_info',''),(193650,40794,'_course_key_info','field_617ac6ad8e5e2'),(193651,40794,'course_included',''),(193652,40794,'_course_included','field_617ac6f08e5e4'),(193653,40794,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(193654,40794,'_hero_actions_0_button','field_61757281285eb'),(193655,40794,'blocks_0_acfe_flexible_toggle',''),(193656,40794,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(193657,40794,'blocks_0_acfe_flexible_layout_title','Icons'),(193658,40794,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(193659,40794,'blocks_0_options_theme','#b61234'),(193660,40794,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(193661,40794,'blocks_0_options_format','row'),(193662,40794,'_blocks_0_options_format','field_64bfde9a90690'),(193663,40794,'blocks_0_options',''),(193664,40794,'_blocks_0_options','field_64bfdd9b90684'),(193665,40794,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(193666,40794,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(193667,40794,'blocks_0_icon_row_items_0_label','Accreditation'),(193668,40794,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(193669,40794,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(193670,40794,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(193671,40794,'blocks_0_icon_row_items_1_icon','finance.svg'),(193672,40794,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(193673,40794,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(193674,40794,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(193675,40794,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(193676,40794,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(193677,40794,'blocks_0_icon_row_items_2_icon','progression.svg'),(193678,40794,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(193679,40794,'blocks_0_icon_row_items_2_label','Earning Potential'),(193680,40794,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(193681,40794,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(193682,40794,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(193683,40794,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(193684,40794,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(193685,40794,'blocks_0_icon_row_items_3_label','Qualification'),(193686,40794,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(193687,40794,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(193688,40794,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(193689,40794,'blocks_0_icon_row_items','4'),(193690,40794,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(193691,40794,'blocks_1_acfe_flexible_toggle',''),(193692,40794,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(193693,40794,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(193694,40794,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(193695,40794,'blocks_1_options_theme','#ffffff'),(193696,40794,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(193697,40794,'blocks_1_options_reverse','0'),(193698,40794,'_blocks_1_options_reverse','field_61768049bb8ac'),(193699,40794,'blocks_1_options',''),(193700,40794,'_blocks_1_options','field_617682517c334'),(193701,40794,'blocks_1_split_5050_image','40785'),(193702,40794,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(193703,40794,'blocks_1_split_5050_video',''),(193704,40794,'_blocks_1_split_5050_video','field_6239f3160848a'),(193705,40794,'blocks_1_split_5050_content_title',''),(193706,40794,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(193707,40794,'blocks_1_split_5050_content_heading','Course Overview'),(193708,40794,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(193709,40794,'blocks_1_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(193710,40794,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(193711,40794,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(193712,40794,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(193713,40794,'blocks_1_split_5050_content_actions','1'),(193714,40794,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(193715,40794,'blocks_1_split_5050_content',''),(193716,40794,'_blocks_1_split_5050_content','field_61767afceb8ba'),(193717,40794,'blocks_2_acfe_flexible_toggle',''),(193718,40794,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(193719,40794,'blocks_2_acfe_flexible_layout_title','Template'),(193720,40794,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(193721,40794,'blocks_2_template','39207'),(193722,40794,'_blocks_2_template','field_617bdd570fe01'),(193723,40794,'blocks_3_acfe_flexible_toggle',''),(193724,40794,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(193725,40794,'blocks_3_acfe_flexible_layout_title','Form'),(193726,40794,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(193727,40794,'blocks_3_row_content_format','standard'),(193728,40794,'_blocks_3_row_content_format','field_6481ead962881'),(193729,40794,'blocks_3_row_content_title',''),(193730,40794,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(193731,40794,'blocks_3_row_content_heading','Level 4 Personal Trainer Course'),(193732,40794,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(193733,40794,'blocks_3_row_content_text','Fill out the form to receive a price guide.'),(193734,40794,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(193735,40794,'blocks_3_row_content_actions',''),(193736,40794,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(193737,40794,'blocks_3_row_content',''),(193738,40794,'_blocks_3_row_content','field_61a0f5f5b3db0'),(193739,40794,'blocks_3_row_form','40394'),(193740,40794,'_blocks_3_row_form','field_61a4ff2c0b08e'),(193741,40794,'blocks_3_row_form_button_label',''),(193742,40794,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(193743,40794,'blocks_4_acfe_flexible_toggle',''),(193744,40794,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(193745,40794,'blocks_4_acfe_flexible_layout_title','Text Block'),(193746,40794,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(193747,40794,'blocks_4_options_theme','#ffffff'),(193748,40794,'_blocks_4_options_theme','field_6176830e2ad17'),(193749,40794,'blocks_4_options',''),(193750,40794,'_blocks_4_options','field_6176830e2ad16'),(193751,40794,'blocks_4_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(193752,40794,'_blocks_4_text_block_heading','field_617669d413097'),(193753,40794,'blocks_4_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(193754,40794,'_blocks_4_text_block_content','field_617669ec13098'),(193755,40794,'blocks_5_acfe_flexible_toggle',''),(193756,40794,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(193757,40794,'blocks_5_acfe_flexible_layout_title','Cards'),(193758,40794,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(193759,40794,'blocks_5_options_theme','#ffffff'),(193760,40794,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(193761,40794,'blocks_5_options_format','carousel'),(193762,40794,'_blocks_5_options_format','field_617a7b15245b5'),(193763,40794,'blocks_5_options_style','default'),(193764,40794,'_blocks_5_options_style','field_6278ffb63484a'),(193765,40794,'blocks_5_options_cards_current_listing','0'),(193766,40794,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(193767,40794,'blocks_5_options_cards_content','custom'),(193768,40794,'_blocks_5_options_cards_content','field_617aba6122688'),(193769,40794,'blocks_5_options',''),(193770,40794,'_blocks_5_options','field_617a7b15245b3'),(193771,40794,'blocks_5_cards_custom_0_image','40650'),(193772,40794,'_blocks_5_cards_custom_0_image','field_6194cc284d387'),(193773,40794,'blocks_5_cards_custom_0_title','Advanced Programming'),(193774,40794,'_blocks_5_cards_custom_0_title','field_6194cc454d388'),(193775,40794,'blocks_5_cards_custom_0_text','Master sophisticated training regimens tailored to diverse client needs and goals.'),(193776,40794,'_blocks_5_cards_custom_0_text','field_6194cc4a4d389'),(193777,40794,'blocks_5_cards_custom_0_link',''),(193778,40794,'_blocks_5_cards_custom_0_link','field_6194cc534d38a'),(193779,40794,'blocks_5_cards_custom_1_image',''),(193780,40794,'_blocks_5_cards_custom_1_image','field_6194cc284d387'),(193781,40794,'blocks_5_cards_custom_1_title','Advanced Behaviour Change'),(193782,40794,'_blocks_5_cards_custom_1_title','field_6194cc454d388'),(193783,40794,'blocks_5_cards_custom_1_text','Learn cutting-edge strategies to inspire and sustain client motivation and commitment.'),(193784,40794,'_blocks_5_cards_custom_1_text','field_6194cc4a4d389'),(193785,40794,'blocks_5_cards_custom_1_link',''),(193786,40794,'_blocks_5_cards_custom_1_link','field_6194cc534d38a'),(193787,40794,'blocks_5_cards_custom_2_image',''),(193788,40794,'_blocks_5_cards_custom_2_image','field_6194cc284d387'),(193789,40794,'blocks_5_cards_custom_2_title','Training Considerations for Males and Females'),(193790,40794,'_blocks_5_cards_custom_2_title','field_6194cc454d388'),(193791,40794,'blocks_5_cards_custom_2_text','Understand the nuanced physiological differences and adapt your training approaches accordingly.'),(193792,40794,'_blocks_5_cards_custom_2_text','field_6194cc4a4d389'),(193793,40794,'blocks_5_cards_custom_2_link',''),(193794,40794,'_blocks_5_cards_custom_2_link','field_6194cc534d38a'),(193795,40794,'blocks_5_cards_custom_3_image',''),(193796,40794,'_blocks_5_cards_custom_3_image','field_6194cc284d387'),(193797,40794,'blocks_5_cards_custom_3_title','Advanced Fitness Testing'),(193798,40794,'_blocks_5_cards_custom_3_title','field_6194cc454d388'),(193799,40794,'blocks_5_cards_custom_3_text','Conduct precise and insightful fitness assessments to monitor and enhance client progress.'),(193800,40794,'_blocks_5_cards_custom_3_text','field_6194cc4a4d389'),(193801,40794,'blocks_5_cards_custom_3_link',''),(193802,40794,'_blocks_5_cards_custom_3_link','field_6194cc534d38a'),(193803,40794,'blocks_5_cards_custom_4_image',''),(193804,40794,'_blocks_5_cards_custom_4_image','field_6194cc284d387'),(193805,40794,'blocks_5_cards_custom_4_title','Advanced Techniques to Support and Enhance the Client Journey'),(193806,40794,'_blocks_5_cards_custom_4_title','field_6194cc454d388'),(193807,40794,'blocks_5_cards_custom_4_text','Implement innovative methods to deliver exceptional client experiences and outcomes.'),(193808,40794,'_blocks_5_cards_custom_4_text','field_6194cc4a4d389'),(193809,40794,'blocks_5_cards_custom_4_link',''),(193810,40794,'_blocks_5_cards_custom_4_link','field_6194cc534d38a'),(193811,40794,'blocks_5_cards_custom','5'),(193812,40794,'_blocks_5_cards_custom','field_6194cbf84d386'),(193813,40795,'hide_hero','0'),(193814,40795,'_hide_hero','field_66a2380fcda39'),(193815,40795,'hero_title','Level 4 Personal Trainer Course'),(193816,40795,'_hero_title','field_617571fe285e8'),(193817,40795,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(193818,40795,'_hero_text','field_6175723c285e9'),(193819,40795,'hero_actions','1'),(193820,40795,'_hero_actions','field_61757270285ea'),(193821,40795,'hero_style','default'),(193822,40795,'_hero_style','field_62051d9dc5324'),(193823,40795,'_thumbnail_id','40782'),(193824,40795,'__thumbnail_id','field_617570855ddaf'),(193825,40795,'hero_image_pos_x','right'),(193826,40795,'_hero_image_pos_x','field_62ec3d05390bb'),(193827,40795,'hero_image_pos_y','top'),(193828,40795,'_hero_image_pos_y','field_62ec3d05390bc'),(193829,40795,'hero_image_pos',''),(193830,40795,'_hero_image_pos','field_62ec3d05390ba'),(193831,40795,'fft_hide_from_listings','0'),(193832,40795,'_fft_hide_from_listings','field_61f1320446ab2'),(193833,40795,'fft_page_format','default'),(193834,40795,'_fft_page_format','field_61ae213f1f218'),(193835,40795,'fft_hide_nav','0'),(193836,40795,'_fft_hide_nav','field_635bd5e43527c'),(193837,40795,'fft_hide_header_call_to_action','0'),(193838,40795,'_fft_hide_header_call_to_action','field_635bd6723527d'),(193839,40795,'fft_page_sitemap','0'),(193840,40795,'_fft_page_sitemap','field_61af9b34e8181'),(193841,40795,'blocks','a:6:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:4:\"form\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";}'),(193842,40795,'_blocks','field_6176696113096'),(193843,40795,'course_label_text',''),(193844,40795,'_course_label_text','field_61e17babf71fa'),(193845,40795,'course_label',''),(193846,40795,'_course_label','field_61e12f92749a7'),(193847,40795,'course_description',''),(193848,40795,'_course_description','field_617ac5788e5e1'),(193849,40795,'course_key_info',''),(193850,40795,'_course_key_info','field_617ac6ad8e5e2'),(193851,40795,'course_included',''),(193852,40795,'_course_included','field_617ac6f08e5e4'),(193853,40795,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(193854,40795,'_hero_actions_0_button','field_61757281285eb'),(193855,40795,'blocks_0_acfe_flexible_toggle',''),(193856,40795,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(193857,40795,'blocks_0_acfe_flexible_layout_title','Icons'),(193858,40795,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(193859,40795,'blocks_0_options_theme','#b61234'),(193860,40795,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(193861,40795,'blocks_0_options_format','row'),(193862,40795,'_blocks_0_options_format','field_64bfde9a90690'),(193863,40795,'blocks_0_options',''),(193864,40795,'_blocks_0_options','field_64bfdd9b90684'),(193865,40795,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(193866,40795,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(193867,40795,'blocks_0_icon_row_items_0_label','Accreditation'),(193868,40795,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(193869,40795,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(193870,40795,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(193871,40795,'blocks_0_icon_row_items_1_icon','finance.svg'),(193872,40795,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(193873,40795,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(193874,40795,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(193875,40795,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(193876,40795,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(193877,40795,'blocks_0_icon_row_items_2_icon','progression.svg'),(193878,40795,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(193879,40795,'blocks_0_icon_row_items_2_label','Earning Potential'),(193880,40795,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(193881,40795,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(193882,40795,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(193883,40795,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(193884,40795,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(193885,40795,'blocks_0_icon_row_items_3_label','Qualification'),(193886,40795,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(193887,40795,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(193888,40795,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(193889,40795,'blocks_0_icon_row_items','4'),(193890,40795,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(193891,40795,'blocks_1_acfe_flexible_toggle',''),(193892,40795,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(193893,40795,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(193894,40795,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(193895,40795,'blocks_1_options_theme','#ffffff'),(193896,40795,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(193897,40795,'blocks_1_options_reverse','0'),(193898,40795,'_blocks_1_options_reverse','field_61768049bb8ac'),(193899,40795,'blocks_1_options',''),(193900,40795,'_blocks_1_options','field_617682517c334'),(193901,40795,'blocks_1_split_5050_image','40785'),(193902,40795,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(193903,40795,'blocks_1_split_5050_video',''),(193904,40795,'_blocks_1_split_5050_video','field_6239f3160848a'),(193905,40795,'blocks_1_split_5050_content_title',''),(193906,40795,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(193907,40795,'blocks_1_split_5050_content_heading','Course Overview'),(193908,40795,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(193909,40795,'blocks_1_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(193910,40795,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(193911,40795,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(193912,40795,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(193913,40795,'blocks_1_split_5050_content_actions','1'),(193914,40795,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(193915,40795,'blocks_1_split_5050_content',''),(193916,40795,'_blocks_1_split_5050_content','field_61767afceb8ba'),(193917,40795,'blocks_2_acfe_flexible_toggle',''),(193918,40795,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(193919,40795,'blocks_2_acfe_flexible_layout_title','Template'),(193920,40795,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(193921,40795,'blocks_2_template','39207'),(193922,40795,'_blocks_2_template','field_617bdd570fe01'),(193923,40795,'blocks_3_acfe_flexible_toggle',''),(193924,40795,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(193925,40795,'blocks_3_acfe_flexible_layout_title','Form'),(193926,40795,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(193927,40795,'blocks_3_row_content_format','standard'),(193928,40795,'_blocks_3_row_content_format','field_6481ead962881'),(193929,40795,'blocks_3_row_content_title',''),(193930,40795,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(193931,40795,'blocks_3_row_content_heading','Level 4 Personal Trainer Course'),(193932,40795,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(193933,40795,'blocks_3_row_content_text','Fill out the form to receive a price guide.'),(193934,40795,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(193935,40795,'blocks_3_row_content_actions',''),(193936,40795,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(193937,40795,'blocks_3_row_content',''),(193938,40795,'_blocks_3_row_content','field_61a0f5f5b3db0'),(193939,40795,'blocks_3_row_form','40394'),(193940,40795,'_blocks_3_row_form','field_61a4ff2c0b08e'),(193941,40795,'blocks_3_row_form_button_label',''),(193942,40795,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(193943,40795,'blocks_4_acfe_flexible_toggle',''),(193944,40795,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(193945,40795,'blocks_4_acfe_flexible_layout_title','Text Block'),(193946,40795,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(193947,40795,'blocks_4_options_theme','#ffffff'),(193948,40795,'_blocks_4_options_theme','field_6176830e2ad17'),(193949,40795,'blocks_4_options',''),(193950,40795,'_blocks_4_options','field_6176830e2ad16'),(193951,40795,'blocks_4_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(193952,40795,'_blocks_4_text_block_heading','field_617669d413097'),(193953,40795,'blocks_4_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(193954,40795,'_blocks_4_text_block_content','field_617669ec13098'),(193955,40795,'blocks_5_acfe_flexible_toggle',''),(193956,40795,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(193957,40795,'blocks_5_acfe_flexible_layout_title','Cards'),(193958,40795,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(193959,40795,'blocks_5_options_theme','#ffffff'),(193960,40795,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(193961,40795,'blocks_5_options_format','carousel'),(193962,40795,'_blocks_5_options_format','field_617a7b15245b5'),(193963,40795,'blocks_5_options_style','default'),(193964,40795,'_blocks_5_options_style','field_6278ffb63484a'),(193965,40795,'blocks_5_options_cards_current_listing','0'),(193966,40795,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(193967,40795,'blocks_5_options_cards_content','custom'),(193968,40795,'_blocks_5_options_cards_content','field_617aba6122688'),(193969,40795,'blocks_5_options',''),(193970,40795,'_blocks_5_options','field_617a7b15245b3'),(193971,40795,'blocks_5_cards_custom_0_image',''),(193972,40795,'_blocks_5_cards_custom_0_image','field_6194cc284d387'),(193973,40795,'blocks_5_cards_custom_0_title','Advanced Programming'),(193974,40795,'_blocks_5_cards_custom_0_title','field_6194cc454d388'),(193975,40795,'blocks_5_cards_custom_0_text','Master sophisticated training regimens tailored to diverse client needs and goals.'),(193976,40795,'_blocks_5_cards_custom_0_text','field_6194cc4a4d389'),(193977,40795,'blocks_5_cards_custom_0_link',''),(193978,40795,'_blocks_5_cards_custom_0_link','field_6194cc534d38a'),(193979,40795,'blocks_5_cards_custom_1_image',''),(193980,40795,'_blocks_5_cards_custom_1_image','field_6194cc284d387'),(193981,40795,'blocks_5_cards_custom_1_title','Advanced Behaviour Change'),(193982,40795,'_blocks_5_cards_custom_1_title','field_6194cc454d388'),(193983,40795,'blocks_5_cards_custom_1_text','Learn cutting-edge strategies to inspire and sustain client motivation and commitment.'),(193984,40795,'_blocks_5_cards_custom_1_text','field_6194cc4a4d389'),(193985,40795,'blocks_5_cards_custom_1_link',''),(193986,40795,'_blocks_5_cards_custom_1_link','field_6194cc534d38a'),(193987,40795,'blocks_5_cards_custom_2_image',''),(193988,40795,'_blocks_5_cards_custom_2_image','field_6194cc284d387'),(193989,40795,'blocks_5_cards_custom_2_title','Training Considerations for Males and Females'),(193990,40795,'_blocks_5_cards_custom_2_title','field_6194cc454d388'),(193991,40795,'blocks_5_cards_custom_2_text','Understand the nuanced physiological differences and adapt your training approaches accordingly.'),(193992,40795,'_blocks_5_cards_custom_2_text','field_6194cc4a4d389'),(193993,40795,'blocks_5_cards_custom_2_link',''),(193994,40795,'_blocks_5_cards_custom_2_link','field_6194cc534d38a'),(193995,40795,'blocks_5_cards_custom_3_image',''),(193996,40795,'_blocks_5_cards_custom_3_image','field_6194cc284d387'),(193997,40795,'blocks_5_cards_custom_3_title','Advanced Fitness Testing'),(193998,40795,'_blocks_5_cards_custom_3_title','field_6194cc454d388'),(193999,40795,'blocks_5_cards_custom_3_text','Conduct precise and insightful fitness assessments to monitor and enhance client progress.'),(194000,40795,'_blocks_5_cards_custom_3_text','field_6194cc4a4d389'),(194001,40795,'blocks_5_cards_custom_3_link',''),(194002,40795,'_blocks_5_cards_custom_3_link','field_6194cc534d38a'),(194003,40795,'blocks_5_cards_custom_4_image',''),(194004,40795,'_blocks_5_cards_custom_4_image','field_6194cc284d387'),(194005,40795,'blocks_5_cards_custom_4_title','Advanced Techniques to Support and Enhance the Client Journey'),(194006,40795,'_blocks_5_cards_custom_4_title','field_6194cc454d388'),(194007,40795,'blocks_5_cards_custom_4_text','Implement innovative methods to deliver exceptional client experiences and outcomes.'),(194008,40795,'_blocks_5_cards_custom_4_text','field_6194cc4a4d389'),(194009,40795,'blocks_5_cards_custom_4_link',''),(194010,40795,'_blocks_5_cards_custom_4_link','field_6194cc534d38a'),(194011,40795,'blocks_5_cards_custom','5'),(194012,40795,'_blocks_5_cards_custom','field_6194cbf84d386'),(194013,40796,'hide_hero','0'),(194014,40796,'_hide_hero','field_66a2380fcda39'),(194015,40796,'hero_title','Level 4 Personal Trainer Course'),(194016,40796,'_hero_title','field_617571fe285e8'),(194017,40796,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(194018,40796,'_hero_text','field_6175723c285e9'),(194019,40796,'hero_actions','1'),(194020,40796,'_hero_actions','field_61757270285ea'),(194021,40796,'hero_style','default'),(194022,40796,'_hero_style','field_62051d9dc5324'),(194023,40796,'_thumbnail_id','40782'),(194024,40796,'__thumbnail_id','field_617570855ddaf'),(194025,40796,'hero_image_pos_x','right'),(194026,40796,'_hero_image_pos_x','field_62ec3d05390bb'),(194027,40796,'hero_image_pos_y','top'),(194028,40796,'_hero_image_pos_y','field_62ec3d05390bc'),(194029,40796,'hero_image_pos',''),(194030,40796,'_hero_image_pos','field_62ec3d05390ba'),(194031,40796,'fft_hide_from_listings','0'),(194032,40796,'_fft_hide_from_listings','field_61f1320446ab2'),(194033,40796,'fft_page_format','default'),(194034,40796,'_fft_page_format','field_61ae213f1f218'),(194035,40796,'fft_hide_nav','0'),(194036,40796,'_fft_hide_nav','field_635bd5e43527c'),(194037,40796,'fft_hide_header_call_to_action','0'),(194038,40796,'_fft_hide_header_call_to_action','field_635bd6723527d'),(194039,40796,'fft_page_sitemap','0'),(194040,40796,'_fft_page_sitemap','field_61af9b34e8181'),(194041,40796,'blocks','a:6:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:4:\"form\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";}'),(194042,40796,'_blocks','field_6176696113096'),(194043,40796,'course_label_text',''),(194044,40796,'_course_label_text','field_61e17babf71fa'),(194045,40796,'course_label',''),(194046,40796,'_course_label','field_61e12f92749a7'),(194047,40796,'course_description',''),(194048,40796,'_course_description','field_617ac5788e5e1'),(194049,40796,'course_key_info',''),(194050,40796,'_course_key_info','field_617ac6ad8e5e2'),(194051,40796,'course_included',''),(194052,40796,'_course_included','field_617ac6f08e5e4'),(194053,40796,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(194054,40796,'_hero_actions_0_button','field_61757281285eb'),(194055,40796,'blocks_0_acfe_flexible_toggle',''),(194056,40796,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(194057,40796,'blocks_0_acfe_flexible_layout_title','Icons'),(194058,40796,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(194059,40796,'blocks_0_options_theme','#b61234'),(194060,40796,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(194061,40796,'blocks_0_options_format','row'),(194062,40796,'_blocks_0_options_format','field_64bfde9a90690'),(194063,40796,'blocks_0_options',''),(194064,40796,'_blocks_0_options','field_64bfdd9b90684'),(194065,40796,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(194066,40796,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(194067,40796,'blocks_0_icon_row_items_0_label','Accreditation'),(194068,40796,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(194069,40796,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(194070,40796,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(194071,40796,'blocks_0_icon_row_items_1_icon','finance.svg'),(194072,40796,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(194073,40796,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(194074,40796,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(194075,40796,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(194076,40796,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(194077,40796,'blocks_0_icon_row_items_2_icon','progression.svg'),(194078,40796,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(194079,40796,'blocks_0_icon_row_items_2_label','Earning Potential'),(194080,40796,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(194081,40796,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(194082,40796,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(194083,40796,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(194084,40796,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(194085,40796,'blocks_0_icon_row_items_3_label','Qualification'),(194086,40796,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(194087,40796,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(194088,40796,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(194089,40796,'blocks_0_icon_row_items','4'),(194090,40796,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(194091,40796,'blocks_1_acfe_flexible_toggle',''),(194092,40796,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(194093,40796,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(194094,40796,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(194095,40796,'blocks_1_options_theme','#ffffff'),(194096,40796,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(194097,40796,'blocks_1_options_reverse','0'),(194098,40796,'_blocks_1_options_reverse','field_61768049bb8ac'),(194099,40796,'blocks_1_options',''),(194100,40796,'_blocks_1_options','field_617682517c334'),(194101,40796,'blocks_1_split_5050_image','40785'),(194102,40796,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(194103,40796,'blocks_1_split_5050_video',''),(194104,40796,'_blocks_1_split_5050_video','field_6239f3160848a'),(194105,40796,'blocks_1_split_5050_content_title',''),(194106,40796,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(194107,40796,'blocks_1_split_5050_content_heading','Course Overview'),(194108,40796,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(194109,40796,'blocks_1_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(194110,40796,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(194111,40796,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(194112,40796,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(194113,40796,'blocks_1_split_5050_content_actions','1'),(194114,40796,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(194115,40796,'blocks_1_split_5050_content',''),(194116,40796,'_blocks_1_split_5050_content','field_61767afceb8ba'),(194117,40796,'blocks_2_acfe_flexible_toggle',''),(194118,40796,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(194119,40796,'blocks_2_acfe_flexible_layout_title','Template'),(194120,40796,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(194121,40796,'blocks_2_template','39207'),(194122,40796,'_blocks_2_template','field_617bdd570fe01'),(194123,40796,'blocks_3_acfe_flexible_toggle',''),(194124,40796,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(194125,40796,'blocks_3_acfe_flexible_layout_title','Form'),(194126,40796,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(194127,40796,'blocks_3_row_content_format','standard'),(194128,40796,'_blocks_3_row_content_format','field_6481ead962881'),(194129,40796,'blocks_3_row_content_title',''),(194130,40796,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(194131,40796,'blocks_3_row_content_heading','Level 4 Personal Trainer Course'),(194132,40796,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(194133,40796,'blocks_3_row_content_text','Fill out the form to receive a price guide.'),(194134,40796,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(194135,40796,'blocks_3_row_content_actions',''),(194136,40796,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(194137,40796,'blocks_3_row_content',''),(194138,40796,'_blocks_3_row_content','field_61a0f5f5b3db0'),(194139,40796,'blocks_3_row_form','40394'),(194140,40796,'_blocks_3_row_form','field_61a4ff2c0b08e'),(194141,40796,'blocks_3_row_form_button_label',''),(194142,40796,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(194143,40796,'blocks_4_acfe_flexible_toggle',''),(194144,40796,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(194145,40796,'blocks_4_acfe_flexible_layout_title','Text Block'),(194146,40796,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(194147,40796,'blocks_4_options_theme','#f5f5f5'),(194148,40796,'_blocks_4_options_theme','field_6176830e2ad17'),(194149,40796,'blocks_4_options',''),(194150,40796,'_blocks_4_options','field_6176830e2ad16'),(194151,40796,'blocks_4_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(194152,40796,'_blocks_4_text_block_heading','field_617669d413097'),(194153,40796,'blocks_4_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(194154,40796,'_blocks_4_text_block_content','field_617669ec13098'),(194155,40796,'blocks_5_acfe_flexible_toggle',''),(194156,40796,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(194157,40796,'blocks_5_acfe_flexible_layout_title','Cards'),(194158,40796,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(194159,40796,'blocks_5_options_theme','#f5f5f5'),(194160,40796,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(194161,40796,'blocks_5_options_format','carousel'),(194162,40796,'_blocks_5_options_format','field_617a7b15245b5'),(194163,40796,'blocks_5_options_style','default'),(194164,40796,'_blocks_5_options_style','field_6278ffb63484a'),(194165,40796,'blocks_5_options_cards_current_listing','0'),(194166,40796,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(194167,40796,'blocks_5_options_cards_content','custom'),(194168,40796,'_blocks_5_options_cards_content','field_617aba6122688'),(194169,40796,'blocks_5_options',''),(194170,40796,'_blocks_5_options','field_617a7b15245b3'),(194171,40796,'blocks_5_cards_custom_0_image',''),(194172,40796,'_blocks_5_cards_custom_0_image','field_6194cc284d387'),(194173,40796,'blocks_5_cards_custom_0_title','Advanced Programming'),(194174,40796,'_blocks_5_cards_custom_0_title','field_6194cc454d388'),(194175,40796,'blocks_5_cards_custom_0_text','Master sophisticated training regimens tailored to diverse client needs and goals.'),(194176,40796,'_blocks_5_cards_custom_0_text','field_6194cc4a4d389'),(194177,40796,'blocks_5_cards_custom_0_link',''),(194178,40796,'_blocks_5_cards_custom_0_link','field_6194cc534d38a'),(194179,40796,'blocks_5_cards_custom_1_image',''),(194180,40796,'_blocks_5_cards_custom_1_image','field_6194cc284d387'),(194181,40796,'blocks_5_cards_custom_1_title','Advanced Behaviour Change'),(194182,40796,'_blocks_5_cards_custom_1_title','field_6194cc454d388'),(194183,40796,'blocks_5_cards_custom_1_text','Learn cutting-edge strategies to inspire and sustain client motivation and commitment.'),(194184,40796,'_blocks_5_cards_custom_1_text','field_6194cc4a4d389'),(194185,40796,'blocks_5_cards_custom_1_link',''),(194186,40796,'_blocks_5_cards_custom_1_link','field_6194cc534d38a'),(194187,40796,'blocks_5_cards_custom_2_image',''),(194188,40796,'_blocks_5_cards_custom_2_image','field_6194cc284d387'),(194189,40796,'blocks_5_cards_custom_2_title','Training Considerations for Males and Females'),(194190,40796,'_blocks_5_cards_custom_2_title','field_6194cc454d388'),(194191,40796,'blocks_5_cards_custom_2_text','Understand the nuanced physiological differences and adapt your training approaches accordingly.'),(194192,40796,'_blocks_5_cards_custom_2_text','field_6194cc4a4d389'),(194193,40796,'blocks_5_cards_custom_2_link',''),(194194,40796,'_blocks_5_cards_custom_2_link','field_6194cc534d38a'),(194195,40796,'blocks_5_cards_custom_3_image',''),(194196,40796,'_blocks_5_cards_custom_3_image','field_6194cc284d387'),(194197,40796,'blocks_5_cards_custom_3_title','Advanced Fitness Testing'),(194198,40796,'_blocks_5_cards_custom_3_title','field_6194cc454d388'),(194199,40796,'blocks_5_cards_custom_3_text','Conduct precise and insightful fitness assessments to monitor and enhance client progress.'),(194200,40796,'_blocks_5_cards_custom_3_text','field_6194cc4a4d389'),(194201,40796,'blocks_5_cards_custom_3_link',''),(194202,40796,'_blocks_5_cards_custom_3_link','field_6194cc534d38a'),(194203,40796,'blocks_5_cards_custom_4_image',''),(194204,40796,'_blocks_5_cards_custom_4_image','field_6194cc284d387'),(194205,40796,'blocks_5_cards_custom_4_title','Advanced Techniques to Support and Enhance the Client Journey'),(194206,40796,'_blocks_5_cards_custom_4_title','field_6194cc454d388'),(194207,40796,'blocks_5_cards_custom_4_text','Implement innovative methods to deliver exceptional client experiences and outcomes.'),(194208,40796,'_blocks_5_cards_custom_4_text','field_6194cc4a4d389'),(194209,40796,'blocks_5_cards_custom_4_link',''),(194210,40796,'_blocks_5_cards_custom_4_link','field_6194cc534d38a'),(194211,40796,'blocks_5_cards_custom','5'),(194212,40796,'_blocks_5_cards_custom','field_6194cbf84d386'),(194213,40797,'hide_hero','0'),(194214,40797,'_hide_hero','field_66a2380fcda39'),(194215,40797,'hero_title','Level 4 Personal Trainer Course'),(194216,40797,'_hero_title','field_617571fe285e8'),(194217,40797,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(194218,40797,'_hero_text','field_6175723c285e9'),(194219,40797,'hero_actions','1'),(194220,40797,'_hero_actions','field_61757270285ea'),(194221,40797,'hero_style','default'),(194222,40797,'_hero_style','field_62051d9dc5324'),(194223,40797,'_thumbnail_id','40782'),(194224,40797,'__thumbnail_id','field_617570855ddaf'),(194225,40797,'hero_image_pos_x','right'),(194226,40797,'_hero_image_pos_x','field_62ec3d05390bb'),(194227,40797,'hero_image_pos_y','top'),(194228,40797,'_hero_image_pos_y','field_62ec3d05390bc'),(194229,40797,'hero_image_pos',''),(194230,40797,'_hero_image_pos','field_62ec3d05390ba'),(194231,40797,'fft_hide_from_listings','0'),(194232,40797,'_fft_hide_from_listings','field_61f1320446ab2'),(194233,40797,'fft_page_format','default'),(194234,40797,'_fft_page_format','field_61ae213f1f218'),(194235,40797,'fft_hide_nav','0'),(194236,40797,'_fft_hide_nav','field_635bd5e43527c'),(194237,40797,'fft_hide_header_call_to_action','0'),(194238,40797,'_fft_hide_header_call_to_action','field_635bd6723527d'),(194239,40797,'fft_page_sitemap','0'),(194240,40797,'_fft_page_sitemap','field_61af9b34e8181'),(194241,40797,'blocks','a:6:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:4:\"form\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";}'),(194242,40797,'_blocks','field_6176696113096'),(194243,40797,'course_label_text',''),(194244,40797,'_course_label_text','field_61e17babf71fa'),(194245,40797,'course_label',''),(194246,40797,'_course_label','field_61e12f92749a7'),(194247,40797,'course_description',''),(194248,40797,'_course_description','field_617ac5788e5e1'),(194249,40797,'course_key_info',''),(194250,40797,'_course_key_info','field_617ac6ad8e5e2'),(194251,40797,'course_included',''),(194252,40797,'_course_included','field_617ac6f08e5e4'),(194253,40797,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(194254,40797,'_hero_actions_0_button','field_61757281285eb'),(194255,40797,'blocks_0_acfe_flexible_toggle',''),(194256,40797,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(194257,40797,'blocks_0_acfe_flexible_layout_title','Icons'),(194258,40797,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(194259,40797,'blocks_0_options_theme','#b61234'),(194260,40797,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(194261,40797,'blocks_0_options_format','row'),(194262,40797,'_blocks_0_options_format','field_64bfde9a90690'),(194263,40797,'blocks_0_options',''),(194264,40797,'_blocks_0_options','field_64bfdd9b90684'),(194265,40797,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(194266,40797,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(194267,40797,'blocks_0_icon_row_items_0_label','Accreditation'),(194268,40797,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(194269,40797,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(194270,40797,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(194271,40797,'blocks_0_icon_row_items_1_icon','finance.svg'),(194272,40797,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(194273,40797,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(194274,40797,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(194275,40797,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(194276,40797,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(194277,40797,'blocks_0_icon_row_items_2_icon','progression.svg'),(194278,40797,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(194279,40797,'blocks_0_icon_row_items_2_label','Earning Potential'),(194280,40797,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(194281,40797,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(194282,40797,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(194283,40797,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(194284,40797,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(194285,40797,'blocks_0_icon_row_items_3_label','Qualification'),(194286,40797,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(194287,40797,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(194288,40797,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(194289,40797,'blocks_0_icon_row_items','4'),(194290,40797,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(194291,40797,'blocks_1_acfe_flexible_toggle',''),(194292,40797,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(194293,40797,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(194294,40797,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(194295,40797,'blocks_1_options_theme','#ffffff'),(194296,40797,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(194297,40797,'blocks_1_options_reverse','0'),(194298,40797,'_blocks_1_options_reverse','field_61768049bb8ac'),(194299,40797,'blocks_1_options',''),(194300,40797,'_blocks_1_options','field_617682517c334'),(194301,40797,'blocks_1_split_5050_image','40785'),(194302,40797,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(194303,40797,'blocks_1_split_5050_video',''),(194304,40797,'_blocks_1_split_5050_video','field_6239f3160848a'),(194305,40797,'blocks_1_split_5050_content_title',''),(194306,40797,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(194307,40797,'blocks_1_split_5050_content_heading','Course Overview'),(194308,40797,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(194309,40797,'blocks_1_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(194310,40797,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(194311,40797,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(194312,40797,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(194313,40797,'blocks_1_split_5050_content_actions','1'),(194314,40797,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(194315,40797,'blocks_1_split_5050_content',''),(194316,40797,'_blocks_1_split_5050_content','field_61767afceb8ba'),(194317,40797,'blocks_2_acfe_flexible_toggle',''),(194318,40797,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(194319,40797,'blocks_2_acfe_flexible_layout_title','Template'),(194320,40797,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(194321,40797,'blocks_2_template','39207'),(194322,40797,'_blocks_2_template','field_617bdd570fe01'),(194323,40797,'blocks_3_acfe_flexible_toggle',''),(194324,40797,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(194325,40797,'blocks_3_acfe_flexible_layout_title','Form'),(194326,40797,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(194327,40797,'blocks_3_row_content_format','standard'),(194328,40797,'_blocks_3_row_content_format','field_6481ead962881'),(194329,40797,'blocks_3_row_content_title',''),(194330,40797,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(194331,40797,'blocks_3_row_content_heading','Level 4 Personal Trainer Course'),(194332,40797,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(194333,40797,'blocks_3_row_content_text','Fill out the form to receive a price guide.'),(194334,40797,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(194335,40797,'blocks_3_row_content_actions',''),(194336,40797,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(194337,40797,'blocks_3_row_content',''),(194338,40797,'_blocks_3_row_content','field_61a0f5f5b3db0'),(194339,40797,'blocks_3_row_form','40394'),(194340,40797,'_blocks_3_row_form','field_61a4ff2c0b08e'),(194341,40797,'blocks_3_row_form_button_label',''),(194342,40797,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(194343,40797,'blocks_4_acfe_flexible_toggle',''),(194344,40797,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(194345,40797,'blocks_4_acfe_flexible_layout_title','Text Block'),(194346,40797,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(194347,40797,'blocks_4_options_theme','#ffffff'),(194348,40797,'_blocks_4_options_theme','field_6176830e2ad17'),(194349,40797,'blocks_4_options',''),(194350,40797,'_blocks_4_options','field_6176830e2ad16'),(194351,40797,'blocks_4_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(194352,40797,'_blocks_4_text_block_heading','field_617669d413097'),(194353,40797,'blocks_4_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(194354,40797,'_blocks_4_text_block_content','field_617669ec13098'),(194355,40797,'blocks_5_acfe_flexible_toggle',''),(194356,40797,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(194357,40797,'blocks_5_acfe_flexible_layout_title','Cards'),(194358,40797,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(194359,40797,'blocks_5_options_theme','#ffffff'),(194360,40797,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(194361,40797,'blocks_5_options_format','carousel'),(194362,40797,'_blocks_5_options_format','field_617a7b15245b5'),(194363,40797,'blocks_5_options_style','default'),(194364,40797,'_blocks_5_options_style','field_6278ffb63484a'),(194365,40797,'blocks_5_options_cards_current_listing','0'),(194366,40797,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(194367,40797,'blocks_5_options_cards_content','custom'),(194368,40797,'_blocks_5_options_cards_content','field_617aba6122688'),(194369,40797,'blocks_5_options',''),(194370,40797,'_blocks_5_options','field_617a7b15245b3'),(194371,40797,'blocks_5_cards_custom_0_image',''),(194372,40797,'_blocks_5_cards_custom_0_image','field_6194cc284d387'),(194373,40797,'blocks_5_cards_custom_0_title','Advanced Programming'),(194374,40797,'_blocks_5_cards_custom_0_title','field_6194cc454d388'),(194375,40797,'blocks_5_cards_custom_0_text','Master sophisticated training regimens tailored to diverse client needs and goals.'),(194376,40797,'_blocks_5_cards_custom_0_text','field_6194cc4a4d389'),(194377,40797,'blocks_5_cards_custom_0_link',''),(194378,40797,'_blocks_5_cards_custom_0_link','field_6194cc534d38a'),(194379,40797,'blocks_5_cards_custom_1_image',''),(194380,40797,'_blocks_5_cards_custom_1_image','field_6194cc284d387'),(194381,40797,'blocks_5_cards_custom_1_title','Advanced Behaviour Change'),(194382,40797,'_blocks_5_cards_custom_1_title','field_6194cc454d388'),(194383,40797,'blocks_5_cards_custom_1_text','Learn cutting-edge strategies to inspire and sustain client motivation and commitment.'),(194384,40797,'_blocks_5_cards_custom_1_text','field_6194cc4a4d389'),(194385,40797,'blocks_5_cards_custom_1_link',''),(194386,40797,'_blocks_5_cards_custom_1_link','field_6194cc534d38a'),(194387,40797,'blocks_5_cards_custom_2_image',''),(194388,40797,'_blocks_5_cards_custom_2_image','field_6194cc284d387'),(194389,40797,'blocks_5_cards_custom_2_title','Training Considerations for Males and Females'),(194390,40797,'_blocks_5_cards_custom_2_title','field_6194cc454d388'),(194391,40797,'blocks_5_cards_custom_2_text','Understand the nuanced physiological differences and adapt your training approaches accordingly.'),(194392,40797,'_blocks_5_cards_custom_2_text','field_6194cc4a4d389'),(194393,40797,'blocks_5_cards_custom_2_link',''),(194394,40797,'_blocks_5_cards_custom_2_link','field_6194cc534d38a'),(194395,40797,'blocks_5_cards_custom_3_image',''),(194396,40797,'_blocks_5_cards_custom_3_image','field_6194cc284d387'),(194397,40797,'blocks_5_cards_custom_3_title','Advanced Fitness Testing'),(194398,40797,'_blocks_5_cards_custom_3_title','field_6194cc454d388'),(194399,40797,'blocks_5_cards_custom_3_text','Conduct precise and insightful fitness assessments to monitor and enhance client progress.'),(194400,40797,'_blocks_5_cards_custom_3_text','field_6194cc4a4d389'),(194401,40797,'blocks_5_cards_custom_3_link',''),(194402,40797,'_blocks_5_cards_custom_3_link','field_6194cc534d38a'),(194403,40797,'blocks_5_cards_custom_4_image',''),(194404,40797,'_blocks_5_cards_custom_4_image','field_6194cc284d387'),(194405,40797,'blocks_5_cards_custom_4_title','Advanced Techniques to Support and Enhance the Client Journey'),(194406,40797,'_blocks_5_cards_custom_4_title','field_6194cc454d388'),(194407,40797,'blocks_5_cards_custom_4_text','Implement innovative methods to deliver exceptional client experiences and outcomes.'),(194408,40797,'_blocks_5_cards_custom_4_text','field_6194cc4a4d389'),(194409,40797,'blocks_5_cards_custom_4_link',''),(194410,40797,'_blocks_5_cards_custom_4_link','field_6194cc534d38a'),(194411,40797,'blocks_5_cards_custom','5'),(194412,40797,'_blocks_5_cards_custom','field_6194cbf84d386'),(194471,40798,'hide_hero','0'),(194472,40798,'_hide_hero','field_66a2380fcda39'),(194473,40798,'hero_title','Level 4 Personal Trainer Course'),(194474,40798,'_hero_title','field_617571fe285e8'),(194475,40798,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(194476,40798,'_hero_text','field_6175723c285e9'),(194477,40798,'hero_actions','1'),(194478,40798,'_hero_actions','field_61757270285ea'),(194479,40798,'hero_style','default'),(194480,40798,'_hero_style','field_62051d9dc5324'),(194481,40798,'_thumbnail_id','40782'),(194482,40798,'__thumbnail_id','field_617570855ddaf'),(194483,40798,'hero_image_pos_x','right'),(194484,40798,'_hero_image_pos_x','field_62ec3d05390bb'),(194485,40798,'hero_image_pos_y','top'),(194486,40798,'_hero_image_pos_y','field_62ec3d05390bc'),(194487,40798,'hero_image_pos',''),(194488,40798,'_hero_image_pos','field_62ec3d05390ba'),(194489,40798,'fft_hide_from_listings','0'),(194490,40798,'_fft_hide_from_listings','field_61f1320446ab2'),(194491,40798,'fft_page_format','default'),(194492,40798,'_fft_page_format','field_61ae213f1f218'),(194493,40798,'fft_hide_nav','0'),(194494,40798,'_fft_hide_nav','field_635bd5e43527c'),(194495,40798,'fft_hide_header_call_to_action','0'),(194496,40798,'_fft_hide_header_call_to_action','field_635bd6723527d'),(194497,40798,'fft_page_sitemap','0'),(194498,40798,'_fft_page_sitemap','field_61af9b34e8181'),(194499,40798,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:4:\"form\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:4:\"tabs\";i:7;s:8:\"template\";}'),(194500,40798,'_blocks','field_6176696113096'),(194501,40798,'course_label_text',''),(194502,40798,'_course_label_text','field_61e17babf71fa'),(194503,40798,'course_label',''),(194504,40798,'_course_label','field_61e12f92749a7'),(194505,40798,'course_description',''),(194506,40798,'_course_description','field_617ac5788e5e1'),(194507,40798,'course_key_info',''),(194508,40798,'_course_key_info','field_617ac6ad8e5e2'),(194509,40798,'course_included',''),(194510,40798,'_course_included','field_617ac6f08e5e4'),(194511,40798,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(194512,40798,'_hero_actions_0_button','field_61757281285eb'),(194513,40798,'blocks_0_acfe_flexible_toggle',''),(194514,40798,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(194515,40798,'blocks_0_acfe_flexible_layout_title','Icons'),(194516,40798,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(194517,40798,'blocks_0_options_theme','#b61234'),(194518,40798,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(194519,40798,'blocks_0_options_format','row'),(194520,40798,'_blocks_0_options_format','field_64bfde9a90690'),(194521,40798,'blocks_0_options',''),(194522,40798,'_blocks_0_options','field_64bfdd9b90684'),(194523,40798,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(194524,40798,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(194525,40798,'blocks_0_icon_row_items_0_label','Accreditation'),(194526,40798,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(194527,40798,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(194528,40798,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(194529,40798,'blocks_0_icon_row_items_1_icon','finance.svg'),(194530,40798,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(194531,40798,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(194532,40798,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(194533,40798,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(194534,40798,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(194535,40798,'blocks_0_icon_row_items_2_icon','progression.svg'),(194536,40798,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(194537,40798,'blocks_0_icon_row_items_2_label','Earning Potential'),(194538,40798,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(194539,40798,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(194540,40798,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(194541,40798,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(194542,40798,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(194543,40798,'blocks_0_icon_row_items_3_label','Qualification'),(194544,40798,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(194545,40798,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(194546,40798,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(194547,40798,'blocks_0_icon_row_items','4'),(194548,40798,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(194549,40798,'blocks_1_acfe_flexible_toggle',''),(194550,40798,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(194551,40798,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(194552,40798,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(194553,40798,'blocks_1_options_theme','#ffffff'),(194554,40798,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(194555,40798,'blocks_1_options_reverse','0'),(194556,40798,'_blocks_1_options_reverse','field_61768049bb8ac'),(194557,40798,'blocks_1_options',''),(194558,40798,'_blocks_1_options','field_617682517c334'),(194559,40798,'blocks_1_split_5050_image','40785'),(194560,40798,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(194561,40798,'blocks_1_split_5050_video',''),(194562,40798,'_blocks_1_split_5050_video','field_6239f3160848a'),(194563,40798,'blocks_1_split_5050_content_title',''),(194564,40798,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(194565,40798,'blocks_1_split_5050_content_heading','Course Overview'),(194566,40798,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(194567,40798,'blocks_1_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(194568,40798,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(194569,40798,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(194570,40798,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(194571,40798,'blocks_1_split_5050_content_actions','1'),(194572,40798,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(194573,40798,'blocks_1_split_5050_content',''),(194574,40798,'_blocks_1_split_5050_content','field_61767afceb8ba'),(194575,40798,'blocks_2_acfe_flexible_toggle',''),(194576,40798,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(194577,40798,'blocks_2_acfe_flexible_layout_title','Template'),(194578,40798,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(194579,40798,'blocks_2_template','39207'),(194580,40798,'_blocks_2_template','field_617bdd570fe01'),(194581,40798,'blocks_3_acfe_flexible_toggle',''),(194582,40798,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(194583,40798,'blocks_3_acfe_flexible_layout_title','Form'),(194584,40798,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(194585,40798,'blocks_3_row_content_format','standard'),(194586,40798,'_blocks_3_row_content_format','field_6481ead962881'),(194587,40798,'blocks_3_row_content_title',''),(194588,40798,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(194589,40798,'blocks_3_row_content_heading','Level 4 Personal Trainer Course'),(194590,40798,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(194591,40798,'blocks_3_row_content_text','Fill out the form to receive a price guide.'),(194592,40798,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(194593,40798,'blocks_3_row_content_actions',''),(194594,40798,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(194595,40798,'blocks_3_row_content',''),(194596,40798,'_blocks_3_row_content','field_61a0f5f5b3db0'),(194597,40798,'blocks_3_row_form','40394'),(194598,40798,'_blocks_3_row_form','field_61a4ff2c0b08e'),(194599,40798,'blocks_3_row_form_button_label',''),(194600,40798,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(194601,40798,'blocks_4_acfe_flexible_toggle',''),(194602,40798,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(194603,40798,'blocks_4_acfe_flexible_layout_title','Text Block'),(194604,40798,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(194605,40798,'blocks_4_options_theme','#ffffff'),(194606,40798,'_blocks_4_options_theme','field_6176830e2ad17'),(194607,40798,'blocks_4_options',''),(194608,40798,'_blocks_4_options','field_6176830e2ad16'),(194609,40798,'blocks_4_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(194610,40798,'_blocks_4_text_block_heading','field_617669d413097'),(194611,40798,'blocks_4_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(194612,40798,'_blocks_4_text_block_content','field_617669ec13098'),(194613,40798,'blocks_5_acfe_flexible_toggle',''),(194614,40798,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(194615,40798,'blocks_5_acfe_flexible_layout_title','Cards'),(194616,40798,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(194617,40798,'blocks_5_options_theme','#ffffff'),(194618,40798,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(194619,40798,'blocks_5_options_format','carousel'),(194620,40798,'_blocks_5_options_format','field_617a7b15245b5'),(194621,40798,'blocks_5_options_style','default'),(194622,40798,'_blocks_5_options_style','field_6278ffb63484a'),(194623,40798,'blocks_5_options_cards_current_listing','0'),(194624,40798,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(194625,40798,'blocks_5_options_cards_content','custom'),(194626,40798,'_blocks_5_options_cards_content','field_617aba6122688'),(194627,40798,'blocks_5_options',''),(194628,40798,'_blocks_5_options','field_617a7b15245b3'),(194629,40798,'blocks_5_cards_custom_0_image',''),(194630,40798,'_blocks_5_cards_custom_0_image','field_6194cc284d387'),(194631,40798,'blocks_5_cards_custom_0_title','Advanced Programming'),(194632,40798,'_blocks_5_cards_custom_0_title','field_6194cc454d388'),(194633,40798,'blocks_5_cards_custom_0_text','Master sophisticated training regimens tailored to diverse client needs and goals.'),(194634,40798,'_blocks_5_cards_custom_0_text','field_6194cc4a4d389'),(194635,40798,'blocks_5_cards_custom_0_link',''),(194636,40798,'_blocks_5_cards_custom_0_link','field_6194cc534d38a'),(194637,40798,'blocks_5_cards_custom_1_image',''),(194638,40798,'_blocks_5_cards_custom_1_image','field_6194cc284d387'),(194639,40798,'blocks_5_cards_custom_1_title','Advanced Behaviour Change'),(194640,40798,'_blocks_5_cards_custom_1_title','field_6194cc454d388'),(194641,40798,'blocks_5_cards_custom_1_text','Learn cutting-edge strategies to inspire and sustain client motivation and commitment.'),(194642,40798,'_blocks_5_cards_custom_1_text','field_6194cc4a4d389'),(194643,40798,'blocks_5_cards_custom_1_link',''),(194644,40798,'_blocks_5_cards_custom_1_link','field_6194cc534d38a'),(194645,40798,'blocks_5_cards_custom_2_image',''),(194646,40798,'_blocks_5_cards_custom_2_image','field_6194cc284d387'),(194647,40798,'blocks_5_cards_custom_2_title','Training Considerations for Males and Females'),(194648,40798,'_blocks_5_cards_custom_2_title','field_6194cc454d388'),(194649,40798,'blocks_5_cards_custom_2_text','Understand the nuanced physiological differences and adapt your training approaches accordingly.'),(194650,40798,'_blocks_5_cards_custom_2_text','field_6194cc4a4d389'),(194651,40798,'blocks_5_cards_custom_2_link',''),(194652,40798,'_blocks_5_cards_custom_2_link','field_6194cc534d38a'),(194653,40798,'blocks_5_cards_custom_3_image',''),(194654,40798,'_blocks_5_cards_custom_3_image','field_6194cc284d387'),(194655,40798,'blocks_5_cards_custom_3_title','Advanced Fitness Testing'),(194656,40798,'_blocks_5_cards_custom_3_title','field_6194cc454d388'),(194657,40798,'blocks_5_cards_custom_3_text','Conduct precise and insightful fitness assessments to monitor and enhance client progress.'),(194658,40798,'_blocks_5_cards_custom_3_text','field_6194cc4a4d389'),(194659,40798,'blocks_5_cards_custom_3_link',''),(194660,40798,'_blocks_5_cards_custom_3_link','field_6194cc534d38a'),(194661,40798,'blocks_5_cards_custom_4_image',''),(194662,40798,'_blocks_5_cards_custom_4_image','field_6194cc284d387'),(194663,40798,'blocks_5_cards_custom_4_title','Advanced Techniques to Support and Enhance the Client Journey'),(194664,40798,'_blocks_5_cards_custom_4_title','field_6194cc454d388'),(194665,40798,'blocks_5_cards_custom_4_text','Implement innovative methods to deliver exceptional client experiences and outcomes.'),(194666,40798,'_blocks_5_cards_custom_4_text','field_6194cc4a4d389'),(194667,40798,'blocks_5_cards_custom_4_link',''),(194668,40798,'_blocks_5_cards_custom_4_link','field_6194cc534d38a'),(194669,40798,'blocks_5_cards_custom','5'),(194670,40798,'_blocks_5_cards_custom','field_6194cbf84d386'),(194671,40798,'blocks_6_acfe_flexible_toggle',''),(194672,40798,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(194673,40798,'blocks_6_acfe_flexible_layout_title','Tabs'),(194674,40798,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(194675,40798,'blocks_6_options_theme','#ffffff'),(194676,40798,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(194677,40798,'blocks_6_options',''),(194678,40798,'_blocks_6_options','field_6177cfcd8140f'),(194679,40798,'blocks_6_tabs_0_tab_label','Entry requirements'),(194680,40798,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(194681,40798,'blocks_6_tabs_0_tab_content_title',''),(194682,40798,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(194683,40798,'blocks_6_tabs_0_tab_content_heading',''),(194684,40798,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(194685,40798,'blocks_6_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(194686,40798,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(194687,40798,'blocks_6_tabs_0_tab_content_actions',''),(194688,40798,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(194689,40798,'blocks_6_tabs_0_tab_content',''),(194690,40798,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(194691,40798,'blocks_6_tabs_0_tab_image',''),(194692,40798,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(194693,40798,'blocks_6_tabs_1_tab_label','Learning format'),(194694,40798,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(194695,40798,'blocks_6_tabs_1_tab_content_title',''),(194696,40798,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(194697,40798,'blocks_6_tabs_1_tab_content_heading',''),(194698,40798,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(194699,40798,'blocks_6_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(194700,40798,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(194701,40798,'blocks_6_tabs_1_tab_content_actions',''),(194702,40798,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(194703,40798,'blocks_6_tabs_1_tab_content',''),(194704,40798,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(194705,40798,'blocks_6_tabs_1_tab_image',''),(194706,40798,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(194707,40798,'blocks_6_tabs_2_tab_label','Qualifications included'),(194708,40798,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(194709,40798,'blocks_6_tabs_2_tab_content_title',''),(194710,40798,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(194711,40798,'blocks_6_tabs_2_tab_content_heading',''),(194712,40798,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(194713,40798,'blocks_6_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(194714,40798,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(194715,40798,'blocks_6_tabs_2_tab_content_actions',''),(194716,40798,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(194717,40798,'blocks_6_tabs_2_tab_content',''),(194718,40798,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(194719,40798,'blocks_6_tabs_2_tab_image',''),(194720,40798,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(194721,40798,'blocks_6_tabs','3'),(194722,40798,'_blocks_6_tabs','field_6177cff281419'),(194723,40798,'blocks_7_acfe_flexible_toggle',''),(194724,40798,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(194725,40798,'blocks_7_acfe_flexible_layout_title','Template'),(194726,40798,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(194727,40798,'blocks_7_template','39401'),(194728,40798,'_blocks_7_template','field_617bdd570fe01'),(194729,40799,'_wp_attached_file','2024/09/shutterstock_1454913377.jpg'),(194730,40799,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:35:\"2024/09/shutterstock_1454913377.jpg\";s:8:\"filesize\";i:627948;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94042;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28907;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73833;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31249;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104720;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28883;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94042;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22531;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-675x667.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69909;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104720;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30298;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104720;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23937;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_1454913377-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74575;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:68:\"Copyright (c) 2019 Hadrian/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:49:\"Paris,,France,-,Jun,6,,2019:,Man,Reading,On,Apple\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:351:\"ipados13,small,surf the web,gadget,concept,scale,screen,mac pro,apple computers,smart,transparent,professional,apple,tablet,pad,view,realistic,modern,pov,design,up,hand,news,new,website,display,mobile,wwdc,workstation,launch,technology,pro,int,application,phone,background,the box,responsive,mock,detail,front,ipad,device,whats included,internet,frame\";}}}'),(194731,40780,'blocks_5_acfe_flexible_toggle','1'),(194732,40780,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(194733,40780,'blocks_5_acfe_flexible_layout_title','Tabs'),(194734,40780,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(194735,40780,'blocks_5_options_theme','#ffffff'),(194736,40780,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(194737,40780,'blocks_5_options',''),(194738,40780,'_blocks_5_options','field_6177cfcd8140f'),(194739,40780,'blocks_5_tabs_0_tab_label','Entry requirements'),(194740,40780,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(194741,40780,'blocks_5_tabs_0_tab_content_title',''),(194742,40780,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(194743,40780,'blocks_5_tabs_0_tab_content_heading',''),(194744,40780,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(194745,40780,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(194746,40780,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(194747,40780,'blocks_5_tabs_0_tab_content_actions',''),(194748,40780,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(194749,40780,'blocks_5_tabs_0_tab_content',''),(194750,40780,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(194751,40780,'blocks_5_tabs_0_tab_image',''),(194752,40780,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(194753,40780,'blocks_5_tabs_1_tab_label','Learning format'),(194754,40780,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(194755,40780,'blocks_5_tabs_1_tab_content_title',''),(194756,40780,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(194757,40780,'blocks_5_tabs_1_tab_content_heading',''),(194758,40780,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(194759,40780,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(194760,40780,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(194761,40780,'blocks_5_tabs_1_tab_content_actions',''),(194762,40780,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(194763,40780,'blocks_5_tabs_1_tab_content',''),(194764,40780,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(194765,40780,'blocks_5_tabs_1_tab_image',''),(194766,40780,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(194767,40780,'blocks_5_tabs_2_tab_label','Qualifications included'),(194768,40780,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(194769,40780,'blocks_5_tabs_2_tab_content_title',''),(194770,40780,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(194771,40780,'blocks_5_tabs_2_tab_content_heading',''),(194772,40780,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(194773,40780,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(194774,40780,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(194775,40780,'blocks_5_tabs_2_tab_content_actions',''),(194776,40780,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(194777,40780,'blocks_5_tabs_2_tab_content',''),(194778,40780,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(194779,40780,'blocks_5_tabs_2_tab_image',''),(194780,40780,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(194781,40780,'blocks_5_tabs','3'),(194782,40780,'_blocks_5_tabs','field_6177cff281419'),(194815,40800,'hide_hero','0'),(194816,40800,'_hide_hero','field_66a2380fcda39'),(194817,40800,'hero_title','Level 4 Personal Trainer Course'),(194818,40800,'_hero_title','field_617571fe285e8'),(194819,40800,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(194820,40800,'_hero_text','field_6175723c285e9'),(194821,40800,'hero_actions','1'),(194822,40800,'_hero_actions','field_61757270285ea'),(194823,40800,'hero_style','default'),(194824,40800,'_hero_style','field_62051d9dc5324'),(194825,40800,'_thumbnail_id','40782'),(194826,40800,'__thumbnail_id','field_617570855ddaf'),(194827,40800,'hero_image_pos_x','right'),(194828,40800,'_hero_image_pos_x','field_62ec3d05390bb'),(194829,40800,'hero_image_pos_y','top'),(194830,40800,'_hero_image_pos_y','field_62ec3d05390bc'),(194831,40800,'hero_image_pos',''),(194832,40800,'_hero_image_pos','field_62ec3d05390ba'),(194833,40800,'fft_hide_from_listings','0'),(194834,40800,'_fft_hide_from_listings','field_61f1320446ab2'),(194835,40800,'fft_page_format','default'),(194836,40800,'_fft_page_format','field_61ae213f1f218'),(194837,40800,'fft_hide_nav','0'),(194838,40800,'_fft_hide_nav','field_635bd5e43527c'),(194839,40800,'fft_hide_header_call_to_action','0'),(194840,40800,'_fft_hide_header_call_to_action','field_635bd6723527d'),(194841,40800,'fft_page_sitemap','0'),(194842,40800,'_fft_page_sitemap','field_61af9b34e8181'),(194843,40800,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:4:\"form\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:8:\"template\";i:7;s:10:\"split_5050\";}'),(194844,40800,'_blocks','field_6176696113096'),(194845,40800,'course_label_text',''),(194846,40800,'_course_label_text','field_61e17babf71fa'),(194847,40800,'course_label',''),(194848,40800,'_course_label','field_61e12f92749a7'),(194849,40800,'course_description',''),(194850,40800,'_course_description','field_617ac5788e5e1'),(194851,40800,'course_key_info',''),(194852,40800,'_course_key_info','field_617ac6ad8e5e2'),(194853,40800,'course_included',''),(194854,40800,'_course_included','field_617ac6f08e5e4'),(194855,40800,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(194856,40800,'_hero_actions_0_button','field_61757281285eb'),(194857,40800,'blocks_0_acfe_flexible_toggle',''),(194858,40800,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(194859,40800,'blocks_0_acfe_flexible_layout_title','Icons'),(194860,40800,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(194861,40800,'blocks_0_options_theme','#b61234'),(194862,40800,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(194863,40800,'blocks_0_options_format','row'),(194864,40800,'_blocks_0_options_format','field_64bfde9a90690'),(194865,40800,'blocks_0_options',''),(194866,40800,'_blocks_0_options','field_64bfdd9b90684'),(194867,40800,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(194868,40800,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(194869,40800,'blocks_0_icon_row_items_0_label','Accreditation'),(194870,40800,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(194871,40800,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(194872,40800,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(194873,40800,'blocks_0_icon_row_items_1_icon','finance.svg'),(194874,40800,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(194875,40800,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(194876,40800,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(194877,40800,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(194878,40800,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(194879,40800,'blocks_0_icon_row_items_2_icon','progression.svg'),(194880,40800,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(194881,40800,'blocks_0_icon_row_items_2_label','Earning Potential'),(194882,40800,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(194883,40800,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(194884,40800,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(194885,40800,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(194886,40800,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(194887,40800,'blocks_0_icon_row_items_3_label','Qualification'),(194888,40800,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(194889,40800,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(194890,40800,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(194891,40800,'blocks_0_icon_row_items','4'),(194892,40800,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(194893,40800,'blocks_1_acfe_flexible_toggle',''),(194894,40800,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(194895,40800,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(194896,40800,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(194897,40800,'blocks_1_options_theme','#ffffff'),(194898,40800,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(194899,40800,'blocks_1_options_reverse','0'),(194900,40800,'_blocks_1_options_reverse','field_61768049bb8ac'),(194901,40800,'blocks_1_options',''),(194902,40800,'_blocks_1_options','field_617682517c334'),(194903,40800,'blocks_1_split_5050_image','40785'),(194904,40800,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(194905,40800,'blocks_1_split_5050_video',''),(194906,40800,'_blocks_1_split_5050_video','field_6239f3160848a'),(194907,40800,'blocks_1_split_5050_content_title',''),(194908,40800,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(194909,40800,'blocks_1_split_5050_content_heading','Course Overview'),(194910,40800,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(194911,40800,'blocks_1_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(194912,40800,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(194913,40800,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(194914,40800,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(194915,40800,'blocks_1_split_5050_content_actions','1'),(194916,40800,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(194917,40800,'blocks_1_split_5050_content',''),(194918,40800,'_blocks_1_split_5050_content','field_61767afceb8ba'),(194919,40800,'blocks_2_acfe_flexible_toggle',''),(194920,40800,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(194921,40800,'blocks_2_acfe_flexible_layout_title','Template'),(194922,40800,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(194923,40800,'blocks_2_template','39207'),(194924,40800,'_blocks_2_template','field_617bdd570fe01'),(194925,40800,'blocks_3_acfe_flexible_toggle',''),(194926,40800,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(194927,40800,'blocks_3_acfe_flexible_layout_title','Form'),(194928,40800,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(194929,40800,'blocks_3_row_content_format','standard'),(194930,40800,'_blocks_3_row_content_format','field_6481ead962881'),(194931,40800,'blocks_3_row_content_title',''),(194932,40800,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(194933,40800,'blocks_3_row_content_heading','Level 4 Personal Trainer Course'),(194934,40800,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(194935,40800,'blocks_3_row_content_text','Fill out the form to receive a price guide.'),(194936,40800,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(194937,40800,'blocks_3_row_content_actions',''),(194938,40800,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(194939,40800,'blocks_3_row_content',''),(194940,40800,'_blocks_3_row_content','field_61a0f5f5b3db0'),(194941,40800,'blocks_3_row_form','40394'),(194942,40800,'_blocks_3_row_form','field_61a4ff2c0b08e'),(194943,40800,'blocks_3_row_form_button_label',''),(194944,40800,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(194945,40800,'blocks_4_acfe_flexible_toggle',''),(194946,40800,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(194947,40800,'blocks_4_acfe_flexible_layout_title','Text Block'),(194948,40800,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(194949,40800,'blocks_4_options_theme','#ffffff'),(194950,40800,'_blocks_4_options_theme','field_6176830e2ad17'),(194951,40800,'blocks_4_options',''),(194952,40800,'_blocks_4_options','field_6176830e2ad16'),(194953,40800,'blocks_4_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(194954,40800,'_blocks_4_text_block_heading','field_617669d413097'),(194955,40800,'blocks_4_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(194956,40800,'_blocks_4_text_block_content','field_617669ec13098'),(194957,40800,'blocks_5_acfe_flexible_toggle',''),(194958,40800,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(194959,40800,'blocks_5_acfe_flexible_layout_title','Tabs'),(194960,40800,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(194961,40800,'blocks_5_options_theme','#ffffff'),(194962,40800,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(194963,40800,'blocks_5_options',''),(194964,40800,'_blocks_5_options','field_6177cfcd8140f'),(194965,40800,'blocks_5_tabs_0_tab_label','Entry requirements'),(194966,40800,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(194967,40800,'blocks_5_tabs_0_tab_content_title',''),(194968,40800,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(194969,40800,'blocks_5_tabs_0_tab_content_heading',''),(194970,40800,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(194971,40800,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(194972,40800,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(194973,40800,'blocks_5_tabs_0_tab_content_actions',''),(194974,40800,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(194975,40800,'blocks_5_tabs_0_tab_content',''),(194976,40800,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(194977,40800,'blocks_5_tabs_0_tab_image',''),(194978,40800,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(194979,40800,'blocks_5_tabs_1_tab_label','Learning format'),(194980,40800,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(194981,40800,'blocks_5_tabs_1_tab_content_title',''),(194982,40800,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(194983,40800,'blocks_5_tabs_1_tab_content_heading',''),(194984,40800,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(194985,40800,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(194986,40800,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(194987,40800,'blocks_5_tabs_1_tab_content_actions',''),(194988,40800,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(194989,40800,'blocks_5_tabs_1_tab_content',''),(194990,40800,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(194991,40800,'blocks_5_tabs_1_tab_image',''),(194992,40800,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(194993,40800,'blocks_5_tabs_2_tab_label','Qualifications included'),(194994,40800,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(194995,40800,'blocks_5_tabs_2_tab_content_title',''),(194996,40800,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(194997,40800,'blocks_5_tabs_2_tab_content_heading',''),(194998,40800,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(194999,40800,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(195000,40800,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(195001,40800,'blocks_5_tabs_2_tab_content_actions',''),(195002,40800,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(195003,40800,'blocks_5_tabs_2_tab_content',''),(195004,40800,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(195005,40800,'blocks_5_tabs_2_tab_image',''),(195006,40800,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(195007,40800,'blocks_5_tabs','3'),(195008,40800,'_blocks_5_tabs','field_6177cff281419'),(195009,40800,'blocks_6_acfe_flexible_toggle',''),(195010,40800,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(195011,40800,'blocks_6_acfe_flexible_layout_title','Template'),(195012,40800,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(195013,40800,'blocks_6_template','39401'),(195014,40800,'_blocks_6_template','field_617bdd570fe01'),(195015,40800,'blocks_7_acfe_flexible_toggle',''),(195016,40800,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(195017,40800,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(195018,40800,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(195019,40800,'blocks_7_options_theme','#ffffff'),(195020,40800,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(195021,40800,'blocks_7_options_reverse','0'),(195022,40800,'_blocks_7_options_reverse','field_61768049bb8ac'),(195023,40800,'blocks_7_options',''),(195024,40800,'_blocks_7_options','field_617682517c334'),(195025,40800,'blocks_7_split_5050_image','40799'),(195026,40800,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(195027,40800,'blocks_7_split_5050_video',''),(195028,40800,'_blocks_7_split_5050_video','field_6239f3160848a'),(195029,40800,'blocks_7_split_5050_content_title',''),(195030,40800,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(195031,40800,'blocks_7_split_5050_content_heading','Course Information'),(195032,40800,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(195033,40800,'blocks_7_split_5050_content_text','<strong>Entry requirements:</strong>\r\n<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning format:</strong>\r\n<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Qualifications included:</strong>\r\n<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(195034,40800,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(195035,40800,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(195036,40800,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(195037,40800,'blocks_7_split_5050_content_actions','1'),(195038,40800,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(195039,40800,'blocks_7_split_5050_content',''),(195040,40800,'_blocks_7_split_5050_content','field_61767afceb8ba'),(195105,40801,'hide_hero','0'),(195106,40801,'_hide_hero','field_66a2380fcda39'),(195107,40801,'hero_title','Level 4 Personal Trainer Course'),(195108,40801,'_hero_title','field_617571fe285e8'),(195109,40801,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(195110,40801,'_hero_text','field_6175723c285e9'),(195111,40801,'hero_actions','1'),(195112,40801,'_hero_actions','field_61757270285ea'),(195113,40801,'hero_style','default'),(195114,40801,'_hero_style','field_62051d9dc5324'),(195115,40801,'_thumbnail_id','40782'),(195116,40801,'__thumbnail_id','field_617570855ddaf'),(195117,40801,'hero_image_pos_x','right'),(195118,40801,'_hero_image_pos_x','field_62ec3d05390bb'),(195119,40801,'hero_image_pos_y','top'),(195120,40801,'_hero_image_pos_y','field_62ec3d05390bc'),(195121,40801,'hero_image_pos',''),(195122,40801,'_hero_image_pos','field_62ec3d05390ba'),(195123,40801,'fft_hide_from_listings','0'),(195124,40801,'_fft_hide_from_listings','field_61f1320446ab2'),(195125,40801,'fft_page_format','default'),(195126,40801,'_fft_page_format','field_61ae213f1f218'),(195127,40801,'fft_hide_nav','0'),(195128,40801,'_fft_hide_nav','field_635bd5e43527c'),(195129,40801,'fft_hide_header_call_to_action','0'),(195130,40801,'_fft_hide_header_call_to_action','field_635bd6723527d'),(195131,40801,'fft_page_sitemap','0'),(195132,40801,'_fft_page_sitemap','field_61af9b34e8181'),(195133,40801,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:8:\"template\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:8:\"template\";i:7;s:10:\"split_5050\";}'),(195134,40801,'_blocks','field_6176696113096'),(195135,40801,'course_label_text',''),(195136,40801,'_course_label_text','field_61e17babf71fa'),(195137,40801,'course_label',''),(195138,40801,'_course_label','field_61e12f92749a7'),(195139,40801,'course_description',''),(195140,40801,'_course_description','field_617ac5788e5e1'),(195141,40801,'course_key_info',''),(195142,40801,'_course_key_info','field_617ac6ad8e5e2'),(195143,40801,'course_included',''),(195144,40801,'_course_included','field_617ac6f08e5e4'),(195145,40801,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(195146,40801,'_hero_actions_0_button','field_61757281285eb'),(195147,40801,'blocks_0_acfe_flexible_toggle',''),(195148,40801,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(195149,40801,'blocks_0_acfe_flexible_layout_title','Icons'),(195150,40801,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(195151,40801,'blocks_0_options_theme','#b61234'),(195152,40801,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(195153,40801,'blocks_0_options_format','row'),(195154,40801,'_blocks_0_options_format','field_64bfde9a90690'),(195155,40801,'blocks_0_options',''),(195156,40801,'_blocks_0_options','field_64bfdd9b90684'),(195157,40801,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(195158,40801,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(195159,40801,'blocks_0_icon_row_items_0_label','Accreditation'),(195160,40801,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(195161,40801,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(195162,40801,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(195163,40801,'blocks_0_icon_row_items_1_icon','finance.svg'),(195164,40801,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(195165,40801,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(195166,40801,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(195167,40801,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(195168,40801,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(195169,40801,'blocks_0_icon_row_items_2_icon','progression.svg'),(195170,40801,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(195171,40801,'blocks_0_icon_row_items_2_label','Earning Potential'),(195172,40801,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(195173,40801,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(195174,40801,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(195175,40801,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(195176,40801,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(195177,40801,'blocks_0_icon_row_items_3_label','Qualification'),(195178,40801,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(195179,40801,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(195180,40801,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(195181,40801,'blocks_0_icon_row_items','4'),(195182,40801,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(195183,40801,'blocks_5_acfe_flexible_toggle','1'),(195184,40801,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(195185,40801,'blocks_5_acfe_flexible_layout_title','Tabs'),(195186,40801,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(195187,40801,'blocks_5_options_theme','#ffffff'),(195188,40801,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(195189,40801,'blocks_5_options',''),(195190,40801,'_blocks_5_options','field_6177cfcd8140f'),(195191,40801,'blocks_5_tabs_0_tab_label','Entry requirements'),(195192,40801,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(195193,40801,'blocks_5_tabs_0_tab_content_title',''),(195194,40801,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(195195,40801,'blocks_5_tabs_0_tab_content_heading',''),(195196,40801,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(195197,40801,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(195198,40801,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(195199,40801,'blocks_5_tabs_0_tab_content_actions',''),(195200,40801,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(195201,40801,'blocks_5_tabs_0_tab_content',''),(195202,40801,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(195203,40801,'blocks_5_tabs_0_tab_image',''),(195204,40801,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(195205,40801,'blocks_5_tabs_1_tab_label','Learning format'),(195206,40801,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(195207,40801,'blocks_5_tabs_1_tab_content_title',''),(195208,40801,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(195209,40801,'blocks_5_tabs_1_tab_content_heading',''),(195210,40801,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(195211,40801,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(195212,40801,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(195213,40801,'blocks_5_tabs_1_tab_content_actions',''),(195214,40801,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(195215,40801,'blocks_5_tabs_1_tab_content',''),(195216,40801,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(195217,40801,'blocks_5_tabs_1_tab_image',''),(195218,40801,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(195219,40801,'blocks_5_tabs_2_tab_label','Qualifications included'),(195220,40801,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(195221,40801,'blocks_5_tabs_2_tab_content_title',''),(195222,40801,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(195223,40801,'blocks_5_tabs_2_tab_content_heading',''),(195224,40801,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(195225,40801,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(195226,40801,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(195227,40801,'blocks_5_tabs_2_tab_content_actions',''),(195228,40801,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(195229,40801,'blocks_5_tabs_2_tab_content',''),(195230,40801,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(195231,40801,'blocks_5_tabs_2_tab_image',''),(195232,40801,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(195233,40801,'blocks_5_tabs','3'),(195234,40801,'_blocks_5_tabs','field_6177cff281419'),(195235,40801,'blocks_6_acfe_flexible_toggle',''),(195236,40801,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(195237,40801,'blocks_6_acfe_flexible_layout_title','Template'),(195238,40801,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(195239,40801,'blocks_6_template','39401'),(195240,40801,'_blocks_6_template','field_617bdd570fe01'),(195241,40801,'blocks_7_acfe_flexible_toggle',''),(195242,40801,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(195243,40801,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(195244,40801,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(195245,40801,'blocks_7_options_theme','#ffffff'),(195246,40801,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(195247,40801,'blocks_7_options_reverse','0'),(195248,40801,'_blocks_7_options_reverse','field_61768049bb8ac'),(195249,40801,'blocks_7_options',''),(195250,40801,'_blocks_7_options','field_617682517c334'),(195251,40801,'blocks_7_split_5050_image','40799'),(195252,40801,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(195253,40801,'blocks_7_split_5050_video',''),(195254,40801,'_blocks_7_split_5050_video','field_6239f3160848a'),(195255,40801,'blocks_7_split_5050_content_title',''),(195256,40801,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(195257,40801,'blocks_7_split_5050_content_heading','Course Information'),(195258,40801,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(195259,40801,'blocks_7_split_5050_content_text','<strong>Entry requirements:</strong>\r\n<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning format:</strong>\r\n<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Qualifications included:</strong>\r\n<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(195260,40801,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(195261,40801,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(195262,40801,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(195263,40801,'blocks_7_split_5050_content_actions','1'),(195264,40801,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(195265,40801,'blocks_7_split_5050_content',''),(195266,40801,'_blocks_7_split_5050_content','field_61767afceb8ba'),(195267,40801,'blocks_1_acfe_flexible_toggle',''),(195268,40801,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(195269,40801,'blocks_1_acfe_flexible_layout_title','Text Block'),(195270,40801,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(195271,40801,'blocks_1_options_theme','#ffffff'),(195272,40801,'_blocks_1_options_theme','field_6176830e2ad17'),(195273,40801,'blocks_1_options',''),(195274,40801,'_blocks_1_options','field_6176830e2ad16'),(195275,40801,'blocks_1_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(195276,40801,'_blocks_1_text_block_heading','field_617669d413097'),(195277,40801,'blocks_1_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(195278,40801,'_blocks_1_text_block_content','field_617669ec13098'),(195279,40801,'blocks_2_acfe_flexible_toggle',''),(195280,40801,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(195281,40801,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(195282,40801,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(195283,40801,'blocks_2_options_theme','#ffffff'),(195284,40801,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(195285,40801,'blocks_2_options_reverse','0'),(195286,40801,'_blocks_2_options_reverse','field_61768049bb8ac'),(195287,40801,'blocks_2_options',''),(195288,40801,'_blocks_2_options','field_617682517c334'),(195289,40801,'blocks_2_split_5050_image','40785'),(195290,40801,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(195291,40801,'blocks_2_split_5050_video',''),(195292,40801,'_blocks_2_split_5050_video','field_6239f3160848a'),(195293,40801,'blocks_2_split_5050_content_title',''),(195294,40801,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(195295,40801,'blocks_2_split_5050_content_heading','Course Overview'),(195296,40801,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(195297,40801,'blocks_2_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(195298,40801,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(195299,40801,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(195300,40801,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(195301,40801,'blocks_2_split_5050_content_actions','1'),(195302,40801,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(195303,40801,'blocks_2_split_5050_content',''),(195304,40801,'_blocks_2_split_5050_content','field_61767afceb8ba'),(195305,40801,'blocks_3_acfe_flexible_toggle',''),(195306,40801,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(195307,40801,'blocks_3_acfe_flexible_layout_title','Template'),(195308,40801,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(195309,40801,'blocks_3_template','39207'),(195310,40801,'_blocks_3_template','field_617bdd570fe01'),(195311,40801,'blocks_4_acfe_flexible_toggle',''),(195312,40801,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(195313,40801,'blocks_4_acfe_flexible_layout_title','Form'),(195314,40801,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(195315,40801,'blocks_4_row_content_format','standard'),(195316,40801,'_blocks_4_row_content_format','field_6481ead962881'),(195317,40801,'blocks_4_row_content_title',''),(195318,40801,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(195319,40801,'blocks_4_row_content_heading','Level 4 Personal Trainer Course'),(195320,40801,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(195321,40801,'blocks_4_row_content_text','Fill out the form to receive a price guide.'),(195322,40801,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(195323,40801,'blocks_4_row_content_actions',''),(195324,40801,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(195325,40801,'blocks_4_row_content',''),(195326,40801,'_blocks_4_row_content','field_61a0f5f5b3db0'),(195327,40801,'blocks_4_row_form','40394'),(195328,40801,'_blocks_4_row_form','field_61a4ff2c0b08e'),(195329,40801,'blocks_4_row_form_button_label',''),(195330,40801,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(195331,40802,'_edit_lock','1726736717:5'),(195332,40802,'_edit_last','5'),(195333,40802,'blocks_0_acfe_flexible_toggle',''),(195334,40802,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(195335,40802,'blocks_0_acfe_flexible_layout_title','Icons'),(195336,40802,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(195337,40802,'blocks_0_options_theme','#ffffff'),(195338,40802,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(195339,40802,'blocks_0_options_format','grid'),(195340,40802,'_blocks_0_options_format','field_64bfde9a90690'),(195341,40802,'blocks_0_options',''),(195342,40802,'_blocks_0_options','field_64bfdd9b90684'),(195343,40802,'blocks_0_row_content_title',''),(195344,40802,'_blocks_0_row_content_title','field_64bfdd9b90687'),(195345,40802,'blocks_0_row_content_heading','Payment Options'),(195346,40802,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(195347,40802,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(195348,40802,'_blocks_0_row_content_text','field_64bfdd9b90689'),(195349,40802,'blocks_0_row_content_actions_0_button',''),(195350,40802,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(195351,40802,'blocks_0_row_content_actions','1'),(195352,40802,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(195353,40802,'blocks_0_row_content',''),(195354,40802,'_blocks_0_row_content','field_64bfdd9b90686'),(195355,40802,'blocks_0_icon_row_items_0_icon','pay-full.svg'),(195356,40802,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(195357,40802,'blocks_0_icon_row_items_0_label','Pay your course in full '),(195358,40802,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(195359,40802,'blocks_0_icon_row_items_0_text','all of our CPD courses can be purchased through our website in full '),(195360,40802,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(195361,40802,'blocks_0_icon_row_items_1_icon','pass-rate.svg'),(195362,40802,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(195363,40802,'blocks_0_icon_row_items_1_label','Flexible payment schemes'),(195364,40802,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(195365,40802,'blocks_0_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(195366,40802,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(195367,40802,'blocks_0_icon_row_items_2_icon','finance.svg'),(195368,40802,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(195369,40802,'blocks_0_icon_row_items_2_label','0% finance*'),(195370,40802,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(195371,40802,'blocks_0_icon_row_items_2_text','Put down a deposit and then spread the cost of your training with 0% finance'),(195372,40802,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(195373,40802,'blocks_0_icon_row_items','3'),(195374,40802,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(195375,40802,'blocks','a:1:{i:0;s:5:\"icons\";}'),(195376,40802,'_blocks','field_6176696113096'),(195377,40803,'hide_hero','0'),(195378,40803,'_hide_hero','field_66a2380fcda39'),(195379,40803,'hero_title','Level 4 Personal Trainer Course'),(195380,40803,'_hero_title','field_617571fe285e8'),(195381,40803,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(195382,40803,'_hero_text','field_6175723c285e9'),(195383,40803,'hero_actions','1'),(195384,40803,'_hero_actions','field_61757270285ea'),(195385,40803,'hero_style','default'),(195386,40803,'_hero_style','field_62051d9dc5324'),(195387,40803,'_thumbnail_id','40782'),(195388,40803,'__thumbnail_id','field_617570855ddaf'),(195389,40803,'hero_image_pos_x','right'),(195390,40803,'_hero_image_pos_x','field_62ec3d05390bb'),(195391,40803,'hero_image_pos_y','top'),(195392,40803,'_hero_image_pos_y','field_62ec3d05390bc'),(195393,40803,'hero_image_pos',''),(195394,40803,'_hero_image_pos','field_62ec3d05390ba'),(195395,40803,'fft_hide_from_listings','0'),(195396,40803,'_fft_hide_from_listings','field_61f1320446ab2'),(195397,40803,'fft_page_format','default'),(195398,40803,'_fft_page_format','field_61ae213f1f218'),(195399,40803,'fft_hide_nav','0'),(195400,40803,'_fft_hide_nav','field_635bd5e43527c'),(195401,40803,'fft_hide_header_call_to_action','0'),(195402,40803,'_fft_hide_header_call_to_action','field_635bd6723527d'),(195403,40803,'fft_page_sitemap','0'),(195404,40803,'_fft_page_sitemap','field_61af9b34e8181'),(195405,40803,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:8:\"template\";i:4;s:4:\"form\";i:5;s:4:\"tabs\";i:6;s:8:\"template\";i:7;s:10:\"split_5050\";}'),(195406,40803,'_blocks','field_6176696113096'),(195407,40803,'course_label_text',''),(195408,40803,'_course_label_text','field_61e17babf71fa'),(195409,40803,'course_label',''),(195410,40803,'_course_label','field_61e12f92749a7'),(195411,40803,'course_description',''),(195412,40803,'_course_description','field_617ac5788e5e1'),(195413,40803,'course_key_info',''),(195414,40803,'_course_key_info','field_617ac6ad8e5e2'),(195415,40803,'course_included',''),(195416,40803,'_course_included','field_617ac6f08e5e4'),(195417,40803,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(195418,40803,'_hero_actions_0_button','field_61757281285eb'),(195419,40803,'blocks_0_acfe_flexible_toggle',''),(195420,40803,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(195421,40803,'blocks_0_acfe_flexible_layout_title','Icons'),(195422,40803,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(195423,40803,'blocks_0_options_theme','#b61234'),(195424,40803,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(195425,40803,'blocks_0_options_format','row'),(195426,40803,'_blocks_0_options_format','field_64bfde9a90690'),(195427,40803,'blocks_0_options',''),(195428,40803,'_blocks_0_options','field_64bfdd9b90684'),(195429,40803,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(195430,40803,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(195431,40803,'blocks_0_icon_row_items_0_label','Accreditation'),(195432,40803,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(195433,40803,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(195434,40803,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(195435,40803,'blocks_0_icon_row_items_1_icon','finance.svg'),(195436,40803,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(195437,40803,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(195438,40803,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(195439,40803,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(195440,40803,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(195441,40803,'blocks_0_icon_row_items_2_icon','progression.svg'),(195442,40803,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(195443,40803,'blocks_0_icon_row_items_2_label','Earning Potential'),(195444,40803,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(195445,40803,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(195446,40803,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(195447,40803,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(195448,40803,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(195449,40803,'blocks_0_icon_row_items_3_label','Qualification'),(195450,40803,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(195451,40803,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(195452,40803,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(195453,40803,'blocks_0_icon_row_items','4'),(195454,40803,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(195455,40803,'blocks_5_acfe_flexible_toggle','1'),(195456,40803,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(195457,40803,'blocks_5_acfe_flexible_layout_title','Tabs'),(195458,40803,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(195459,40803,'blocks_5_options_theme','#ffffff'),(195460,40803,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(195461,40803,'blocks_5_options',''),(195462,40803,'_blocks_5_options','field_6177cfcd8140f'),(195463,40803,'blocks_5_tabs_0_tab_label','Entry requirements'),(195464,40803,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(195465,40803,'blocks_5_tabs_0_tab_content_title',''),(195466,40803,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(195467,40803,'blocks_5_tabs_0_tab_content_heading',''),(195468,40803,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(195469,40803,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(195470,40803,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(195471,40803,'blocks_5_tabs_0_tab_content_actions',''),(195472,40803,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(195473,40803,'blocks_5_tabs_0_tab_content',''),(195474,40803,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(195475,40803,'blocks_5_tabs_0_tab_image',''),(195476,40803,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(195477,40803,'blocks_5_tabs_1_tab_label','Learning format'),(195478,40803,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(195479,40803,'blocks_5_tabs_1_tab_content_title',''),(195480,40803,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(195481,40803,'blocks_5_tabs_1_tab_content_heading',''),(195482,40803,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(195483,40803,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(195484,40803,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(195485,40803,'blocks_5_tabs_1_tab_content_actions',''),(195486,40803,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(195487,40803,'blocks_5_tabs_1_tab_content',''),(195488,40803,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(195489,40803,'blocks_5_tabs_1_tab_image',''),(195490,40803,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(195491,40803,'blocks_5_tabs_2_tab_label','Qualifications included'),(195492,40803,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(195493,40803,'blocks_5_tabs_2_tab_content_title',''),(195494,40803,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(195495,40803,'blocks_5_tabs_2_tab_content_heading',''),(195496,40803,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(195497,40803,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(195498,40803,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(195499,40803,'blocks_5_tabs_2_tab_content_actions',''),(195500,40803,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(195501,40803,'blocks_5_tabs_2_tab_content',''),(195502,40803,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(195503,40803,'blocks_5_tabs_2_tab_image',''),(195504,40803,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(195505,40803,'blocks_5_tabs','3'),(195506,40803,'_blocks_5_tabs','field_6177cff281419'),(195507,40803,'blocks_6_acfe_flexible_toggle',''),(195508,40803,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(195509,40803,'blocks_6_acfe_flexible_layout_title','Template'),(195510,40803,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(195511,40803,'blocks_6_template','40802'),(195512,40803,'_blocks_6_template','field_617bdd570fe01'),(195513,40803,'blocks_7_acfe_flexible_toggle',''),(195514,40803,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(195515,40803,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(195516,40803,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(195517,40803,'blocks_7_options_theme','#ffffff'),(195518,40803,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(195519,40803,'blocks_7_options_reverse','0'),(195520,40803,'_blocks_7_options_reverse','field_61768049bb8ac'),(195521,40803,'blocks_7_options',''),(195522,40803,'_blocks_7_options','field_617682517c334'),(195523,40803,'blocks_7_split_5050_image','40799'),(195524,40803,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(195525,40803,'blocks_7_split_5050_video',''),(195526,40803,'_blocks_7_split_5050_video','field_6239f3160848a'),(195527,40803,'blocks_7_split_5050_content_title',''),(195528,40803,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(195529,40803,'blocks_7_split_5050_content_heading','Course Information'),(195530,40803,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(195531,40803,'blocks_7_split_5050_content_text','<strong>Entry requirements:</strong>\r\n<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning format:</strong>\r\n<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Qualifications included:</strong>\r\n<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(195532,40803,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(195533,40803,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(195534,40803,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(195535,40803,'blocks_7_split_5050_content_actions','1'),(195536,40803,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(195537,40803,'blocks_7_split_5050_content',''),(195538,40803,'_blocks_7_split_5050_content','field_61767afceb8ba'),(195539,40803,'blocks_1_acfe_flexible_toggle',''),(195540,40803,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(195541,40803,'blocks_1_acfe_flexible_layout_title','Text Block'),(195542,40803,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(195543,40803,'blocks_1_options_theme','#ffffff'),(195544,40803,'_blocks_1_options_theme','field_6176830e2ad17'),(195545,40803,'blocks_1_options',''),(195546,40803,'_blocks_1_options','field_6176830e2ad16'),(195547,40803,'blocks_1_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(195548,40803,'_blocks_1_text_block_heading','field_617669d413097'),(195549,40803,'blocks_1_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(195550,40803,'_blocks_1_text_block_content','field_617669ec13098'),(195551,40803,'blocks_2_acfe_flexible_toggle',''),(195552,40803,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(195553,40803,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(195554,40803,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(195555,40803,'blocks_2_options_theme','#ffffff'),(195556,40803,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(195557,40803,'blocks_2_options_reverse','0'),(195558,40803,'_blocks_2_options_reverse','field_61768049bb8ac'),(195559,40803,'blocks_2_options',''),(195560,40803,'_blocks_2_options','field_617682517c334'),(195561,40803,'blocks_2_split_5050_image','40785'),(195562,40803,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(195563,40803,'blocks_2_split_5050_video',''),(195564,40803,'_blocks_2_split_5050_video','field_6239f3160848a'),(195565,40803,'blocks_2_split_5050_content_title',''),(195566,40803,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(195567,40803,'blocks_2_split_5050_content_heading','Course Overview'),(195568,40803,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(195569,40803,'blocks_2_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(195570,40803,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(195571,40803,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(195572,40803,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(195573,40803,'blocks_2_split_5050_content_actions','1'),(195574,40803,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(195575,40803,'blocks_2_split_5050_content',''),(195576,40803,'_blocks_2_split_5050_content','field_61767afceb8ba'),(195577,40803,'blocks_3_acfe_flexible_toggle',''),(195578,40803,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(195579,40803,'blocks_3_acfe_flexible_layout_title','Template'),(195580,40803,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(195581,40803,'blocks_3_template','39207'),(195582,40803,'_blocks_3_template','field_617bdd570fe01'),(195583,40803,'blocks_4_acfe_flexible_toggle',''),(195584,40803,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(195585,40803,'blocks_4_acfe_flexible_layout_title','Form'),(195586,40803,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(195587,40803,'blocks_4_row_content_format','standard'),(195588,40803,'_blocks_4_row_content_format','field_6481ead962881'),(195589,40803,'blocks_4_row_content_title',''),(195590,40803,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(195591,40803,'blocks_4_row_content_heading','Level 4 Personal Trainer Course'),(195592,40803,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(195593,40803,'blocks_4_row_content_text','Fill out the form to receive a price guide.'),(195594,40803,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(195595,40803,'blocks_4_row_content_actions',''),(195596,40803,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(195597,40803,'blocks_4_row_content',''),(195598,40803,'_blocks_4_row_content','field_61a0f5f5b3db0'),(195599,40803,'blocks_4_row_form','40394'),(195600,40803,'_blocks_4_row_form','field_61a4ff2c0b08e'),(195601,40803,'blocks_4_row_form_button_label',''),(195602,40803,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(195649,40780,'blocks_4_acfe_flexible_toggle',''),(195650,40780,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(195651,40780,'blocks_4_acfe_flexible_layout_title','Template'),(195652,40780,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(195653,40780,'blocks_4_template','39207'),(195654,40780,'_blocks_4_template','field_617bdd570fe01'),(195655,40804,'hide_hero','0'),(195656,40804,'_hide_hero','field_66a2380fcda39'),(195657,40804,'hero_title','Level 4 Personal Trainer Course'),(195658,40804,'_hero_title','field_617571fe285e8'),(195659,40804,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(195660,40804,'_hero_text','field_6175723c285e9'),(195661,40804,'hero_actions','1'),(195662,40804,'_hero_actions','field_61757270285ea'),(195663,40804,'hero_style','default'),(195664,40804,'_hero_style','field_62051d9dc5324'),(195665,40804,'_thumbnail_id','40782'),(195666,40804,'__thumbnail_id','field_617570855ddaf'),(195667,40804,'hero_image_pos_x','right'),(195668,40804,'_hero_image_pos_x','field_62ec3d05390bb'),(195669,40804,'hero_image_pos_y','top'),(195670,40804,'_hero_image_pos_y','field_62ec3d05390bc'),(195671,40804,'hero_image_pos',''),(195672,40804,'_hero_image_pos','field_62ec3d05390ba'),(195673,40804,'fft_hide_from_listings','0'),(195674,40804,'_fft_hide_from_listings','field_61f1320446ab2'),(195675,40804,'fft_page_format','default'),(195676,40804,'_fft_page_format','field_61ae213f1f218'),(195677,40804,'fft_hide_nav','0'),(195678,40804,'_fft_hide_nav','field_635bd5e43527c'),(195679,40804,'fft_hide_header_call_to_action','0'),(195680,40804,'_fft_hide_header_call_to_action','field_635bd6723527d'),(195681,40804,'fft_page_sitemap','0'),(195682,40804,'_fft_page_sitemap','field_61af9b34e8181'),(195683,40804,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:8:\"template\";i:7;s:10:\"split_5050\";}'),(195684,40804,'_blocks','field_6176696113096'),(195685,40804,'course_label_text',''),(195686,40804,'_course_label_text','field_61e17babf71fa'),(195687,40804,'course_label',''),(195688,40804,'_course_label','field_61e12f92749a7'),(195689,40804,'course_description',''),(195690,40804,'_course_description','field_617ac5788e5e1'),(195691,40804,'course_key_info',''),(195692,40804,'_course_key_info','field_617ac6ad8e5e2'),(195693,40804,'course_included',''),(195694,40804,'_course_included','field_617ac6f08e5e4'),(195695,40804,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(195696,40804,'_hero_actions_0_button','field_61757281285eb'),(195697,40804,'blocks_0_acfe_flexible_toggle',''),(195698,40804,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(195699,40804,'blocks_0_acfe_flexible_layout_title','Icons'),(195700,40804,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(195701,40804,'blocks_0_options_theme','#b61234'),(195702,40804,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(195703,40804,'blocks_0_options_format','row'),(195704,40804,'_blocks_0_options_format','field_64bfde9a90690'),(195705,40804,'blocks_0_options',''),(195706,40804,'_blocks_0_options','field_64bfdd9b90684'),(195707,40804,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(195708,40804,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(195709,40804,'blocks_0_icon_row_items_0_label','Accreditation'),(195710,40804,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(195711,40804,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(195712,40804,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(195713,40804,'blocks_0_icon_row_items_1_icon','finance.svg'),(195714,40804,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(195715,40804,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(195716,40804,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(195717,40804,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(195718,40804,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(195719,40804,'blocks_0_icon_row_items_2_icon','progression.svg'),(195720,40804,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(195721,40804,'blocks_0_icon_row_items_2_label','Earning Potential'),(195722,40804,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(195723,40804,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(195724,40804,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(195725,40804,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(195726,40804,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(195727,40804,'blocks_0_icon_row_items_3_label','Qualification'),(195728,40804,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(195729,40804,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(195730,40804,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(195731,40804,'blocks_0_icon_row_items','4'),(195732,40804,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(195733,40804,'blocks_5_acfe_flexible_toggle','1'),(195734,40804,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(195735,40804,'blocks_5_acfe_flexible_layout_title','Tabs'),(195736,40804,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(195737,40804,'blocks_5_options_theme','#ffffff'),(195738,40804,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(195739,40804,'blocks_5_options',''),(195740,40804,'_blocks_5_options','field_6177cfcd8140f'),(195741,40804,'blocks_5_tabs_0_tab_label','Entry requirements'),(195742,40804,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(195743,40804,'blocks_5_tabs_0_tab_content_title',''),(195744,40804,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(195745,40804,'blocks_5_tabs_0_tab_content_heading',''),(195746,40804,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(195747,40804,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(195748,40804,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(195749,40804,'blocks_5_tabs_0_tab_content_actions',''),(195750,40804,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(195751,40804,'blocks_5_tabs_0_tab_content',''),(195752,40804,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(195753,40804,'blocks_5_tabs_0_tab_image',''),(195754,40804,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(195755,40804,'blocks_5_tabs_1_tab_label','Learning format'),(195756,40804,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(195757,40804,'blocks_5_tabs_1_tab_content_title',''),(195758,40804,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(195759,40804,'blocks_5_tabs_1_tab_content_heading',''),(195760,40804,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(195761,40804,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(195762,40804,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(195763,40804,'blocks_5_tabs_1_tab_content_actions',''),(195764,40804,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(195765,40804,'blocks_5_tabs_1_tab_content',''),(195766,40804,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(195767,40804,'blocks_5_tabs_1_tab_image',''),(195768,40804,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(195769,40804,'blocks_5_tabs_2_tab_label','Qualifications included'),(195770,40804,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(195771,40804,'blocks_5_tabs_2_tab_content_title',''),(195772,40804,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(195773,40804,'blocks_5_tabs_2_tab_content_heading',''),(195774,40804,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(195775,40804,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(195776,40804,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(195777,40804,'blocks_5_tabs_2_tab_content_actions',''),(195778,40804,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(195779,40804,'blocks_5_tabs_2_tab_content',''),(195780,40804,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(195781,40804,'blocks_5_tabs_2_tab_image',''),(195782,40804,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(195783,40804,'blocks_5_tabs','3'),(195784,40804,'_blocks_5_tabs','field_6177cff281419'),(195785,40804,'blocks_6_acfe_flexible_toggle',''),(195786,40804,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(195787,40804,'blocks_6_acfe_flexible_layout_title','Template'),(195788,40804,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(195789,40804,'blocks_6_template','40802'),(195790,40804,'_blocks_6_template','field_617bdd570fe01'),(195791,40804,'blocks_7_acfe_flexible_toggle',''),(195792,40804,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(195793,40804,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(195794,40804,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(195795,40804,'blocks_7_options_theme','#ffffff'),(195796,40804,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(195797,40804,'blocks_7_options_reverse','0'),(195798,40804,'_blocks_7_options_reverse','field_61768049bb8ac'),(195799,40804,'blocks_7_options',''),(195800,40804,'_blocks_7_options','field_617682517c334'),(195801,40804,'blocks_7_split_5050_image','40799'),(195802,40804,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(195803,40804,'blocks_7_split_5050_video',''),(195804,40804,'_blocks_7_split_5050_video','field_6239f3160848a'),(195805,40804,'blocks_7_split_5050_content_title',''),(195806,40804,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(195807,40804,'blocks_7_split_5050_content_heading','Course Information'),(195808,40804,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(195809,40804,'blocks_7_split_5050_content_text','<strong>Entry requirements:</strong>\r\n<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning format:</strong>\r\n<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Qualifications included:</strong>\r\n<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(195810,40804,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(195811,40804,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(195812,40804,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(195813,40804,'blocks_7_split_5050_content_actions','1'),(195814,40804,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(195815,40804,'blocks_7_split_5050_content',''),(195816,40804,'_blocks_7_split_5050_content','field_61767afceb8ba'),(195817,40804,'blocks_1_acfe_flexible_toggle',''),(195818,40804,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(195819,40804,'blocks_1_acfe_flexible_layout_title','Text Block'),(195820,40804,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(195821,40804,'blocks_1_options_theme','#ffffff'),(195822,40804,'_blocks_1_options_theme','field_6176830e2ad17'),(195823,40804,'blocks_1_options',''),(195824,40804,'_blocks_1_options','field_6176830e2ad16'),(195825,40804,'blocks_1_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(195826,40804,'_blocks_1_text_block_heading','field_617669d413097'),(195827,40804,'blocks_1_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(195828,40804,'_blocks_1_text_block_content','field_617669ec13098'),(195829,40804,'blocks_2_acfe_flexible_toggle',''),(195830,40804,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(195831,40804,'blocks_2_acfe_flexible_layout_title','Form'),(195832,40804,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(195833,40804,'blocks_2_row_content_format','standard'),(195834,40804,'_blocks_2_row_content_format','field_6481ead962881'),(195835,40804,'blocks_2_row_content_title',''),(195836,40804,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(195837,40804,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(195838,40804,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(195839,40804,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(195840,40804,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(195841,40804,'blocks_2_row_content_actions',''),(195842,40804,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(195843,40804,'blocks_2_row_content',''),(195844,40804,'_blocks_2_row_content','field_61a0f5f5b3db0'),(195845,40804,'blocks_2_row_form','40394'),(195846,40804,'_blocks_2_row_form','field_61a4ff2c0b08e'),(195847,40804,'blocks_2_row_form_button_label',''),(195848,40804,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(195849,40804,'blocks_3_acfe_flexible_toggle',''),(195850,40804,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(195851,40804,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(195852,40804,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(195853,40804,'blocks_3_options_theme','#ffffff'),(195854,40804,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(195855,40804,'blocks_3_options_reverse','0'),(195856,40804,'_blocks_3_options_reverse','field_61768049bb8ac'),(195857,40804,'blocks_3_options',''),(195858,40804,'_blocks_3_options','field_617682517c334'),(195859,40804,'blocks_3_split_5050_image','40785'),(195860,40804,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(195861,40804,'blocks_3_split_5050_video',''),(195862,40804,'_blocks_3_split_5050_video','field_6239f3160848a'),(195863,40804,'blocks_3_split_5050_content_title',''),(195864,40804,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(195865,40804,'blocks_3_split_5050_content_heading','Course Overview'),(195866,40804,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(195867,40804,'blocks_3_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(195868,40804,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(195869,40804,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(195870,40804,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(195871,40804,'blocks_3_split_5050_content_actions','1'),(195872,40804,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(195873,40804,'blocks_3_split_5050_content',''),(195874,40804,'_blocks_3_split_5050_content','field_61767afceb8ba'),(195875,40804,'blocks_4_acfe_flexible_toggle',''),(195876,40804,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(195877,40804,'blocks_4_acfe_flexible_layout_title','Template'),(195878,40804,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(195879,40804,'blocks_4_template','39207'),(195880,40804,'_blocks_4_template','field_617bdd570fe01'),(195943,40805,'hide_hero','0'),(195944,40805,'_hide_hero','field_66a2380fcda39'),(195945,40805,'hero_title','Level 4 Personal Trainer Course'),(195946,40805,'_hero_title','field_617571fe285e8'),(195947,40805,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(195948,40805,'_hero_text','field_6175723c285e9'),(195949,40805,'hero_actions','1'),(195950,40805,'_hero_actions','field_61757270285ea'),(195951,40805,'hero_style','default'),(195952,40805,'_hero_style','field_62051d9dc5324'),(195953,40805,'_thumbnail_id','40782'),(195954,40805,'__thumbnail_id','field_617570855ddaf'),(195955,40805,'hero_image_pos_x','right'),(195956,40805,'_hero_image_pos_x','field_62ec3d05390bb'),(195957,40805,'hero_image_pos_y','top'),(195958,40805,'_hero_image_pos_y','field_62ec3d05390bc'),(195959,40805,'hero_image_pos',''),(195960,40805,'_hero_image_pos','field_62ec3d05390ba'),(195961,40805,'fft_hide_from_listings','0'),(195962,40805,'_fft_hide_from_listings','field_61f1320446ab2'),(195963,40805,'fft_page_format','default'),(195964,40805,'_fft_page_format','field_61ae213f1f218'),(195965,40805,'fft_hide_nav','0'),(195966,40805,'_fft_hide_nav','field_635bd5e43527c'),(195967,40805,'fft_hide_header_call_to_action','0'),(195968,40805,'_fft_hide_header_call_to_action','field_635bd6723527d'),(195969,40805,'fft_page_sitemap','0'),(195970,40805,'_fft_page_sitemap','field_61af9b34e8181'),(195971,40805,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:5:\"icons\";}'),(195972,40805,'_blocks','field_6176696113096'),(195973,40805,'course_label_text',''),(195974,40805,'_course_label_text','field_61e17babf71fa'),(195975,40805,'course_label',''),(195976,40805,'_course_label','field_61e12f92749a7'),(195977,40805,'course_description',''),(195978,40805,'_course_description','field_617ac5788e5e1'),(195979,40805,'course_key_info',''),(195980,40805,'_course_key_info','field_617ac6ad8e5e2'),(195981,40805,'course_included',''),(195982,40805,'_course_included','field_617ac6f08e5e4'),(195983,40805,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(195984,40805,'_hero_actions_0_button','field_61757281285eb'),(195985,40805,'blocks_0_acfe_flexible_toggle',''),(195986,40805,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(195987,40805,'blocks_0_acfe_flexible_layout_title','Icons'),(195988,40805,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(195989,40805,'blocks_0_options_theme','#b61234'),(195990,40805,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(195991,40805,'blocks_0_options_format','row'),(195992,40805,'_blocks_0_options_format','field_64bfde9a90690'),(195993,40805,'blocks_0_options',''),(195994,40805,'_blocks_0_options','field_64bfdd9b90684'),(195995,40805,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(195996,40805,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(195997,40805,'blocks_0_icon_row_items_0_label','Accreditation'),(195998,40805,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(195999,40805,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(196000,40805,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(196001,40805,'blocks_0_icon_row_items_1_icon','finance.svg'),(196002,40805,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(196003,40805,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(196004,40805,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(196005,40805,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(196006,40805,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(196007,40805,'blocks_0_icon_row_items_2_icon','progression.svg'),(196008,40805,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(196009,40805,'blocks_0_icon_row_items_2_label','Earning Potential'),(196010,40805,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(196011,40805,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(196012,40805,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(196013,40805,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(196014,40805,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(196015,40805,'blocks_0_icon_row_items_3_label','Qualification'),(196016,40805,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(196017,40805,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(196018,40805,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(196019,40805,'blocks_0_icon_row_items','4'),(196020,40805,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(196021,40805,'blocks_5_acfe_flexible_toggle','1'),(196022,40805,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(196023,40805,'blocks_5_acfe_flexible_layout_title','Tabs'),(196024,40805,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(196025,40805,'blocks_5_options_theme','#ffffff'),(196026,40805,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(196027,40805,'blocks_5_options',''),(196028,40805,'_blocks_5_options','field_6177cfcd8140f'),(196029,40805,'blocks_5_tabs_0_tab_label','Entry requirements'),(196030,40805,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(196031,40805,'blocks_5_tabs_0_tab_content_title',''),(196032,40805,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(196033,40805,'blocks_5_tabs_0_tab_content_heading',''),(196034,40805,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(196035,40805,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(196036,40805,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(196037,40805,'blocks_5_tabs_0_tab_content_actions',''),(196038,40805,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(196039,40805,'blocks_5_tabs_0_tab_content',''),(196040,40805,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(196041,40805,'blocks_5_tabs_0_tab_image',''),(196042,40805,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(196043,40805,'blocks_5_tabs_1_tab_label','Learning format'),(196044,40805,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(196045,40805,'blocks_5_tabs_1_tab_content_title',''),(196046,40805,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(196047,40805,'blocks_5_tabs_1_tab_content_heading',''),(196048,40805,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(196049,40805,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(196050,40805,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(196051,40805,'blocks_5_tabs_1_tab_content_actions',''),(196052,40805,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(196053,40805,'blocks_5_tabs_1_tab_content',''),(196054,40805,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(196055,40805,'blocks_5_tabs_1_tab_image',''),(196056,40805,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(196057,40805,'blocks_5_tabs_2_tab_label','Qualifications included'),(196058,40805,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(196059,40805,'blocks_5_tabs_2_tab_content_title',''),(196060,40805,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(196061,40805,'blocks_5_tabs_2_tab_content_heading',''),(196062,40805,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(196063,40805,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(196064,40805,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(196065,40805,'blocks_5_tabs_2_tab_content_actions',''),(196066,40805,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(196067,40805,'blocks_5_tabs_2_tab_content',''),(196068,40805,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(196069,40805,'blocks_5_tabs_2_tab_image',''),(196070,40805,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(196071,40805,'blocks_5_tabs','3'),(196072,40805,'_blocks_5_tabs','field_6177cff281419'),(196073,40805,'blocks_1_acfe_flexible_toggle',''),(196074,40805,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(196075,40805,'blocks_1_acfe_flexible_layout_title','Text Block'),(196076,40805,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(196077,40805,'blocks_1_options_theme','#ffffff'),(196078,40805,'_blocks_1_options_theme','field_6176830e2ad17'),(196079,40805,'blocks_1_options',''),(196080,40805,'_blocks_1_options','field_6176830e2ad16'),(196081,40805,'blocks_1_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(196082,40805,'_blocks_1_text_block_heading','field_617669d413097'),(196083,40805,'blocks_1_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(196084,40805,'_blocks_1_text_block_content','field_617669ec13098'),(196085,40805,'blocks_2_acfe_flexible_toggle',''),(196086,40805,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(196087,40805,'blocks_2_acfe_flexible_layout_title','Form'),(196088,40805,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(196089,40805,'blocks_2_row_content_format','standard'),(196090,40805,'_blocks_2_row_content_format','field_6481ead962881'),(196091,40805,'blocks_2_row_content_title',''),(196092,40805,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(196093,40805,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(196094,40805,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(196095,40805,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(196096,40805,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(196097,40805,'blocks_2_row_content_actions',''),(196098,40805,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(196099,40805,'blocks_2_row_content',''),(196100,40805,'_blocks_2_row_content','field_61a0f5f5b3db0'),(196101,40805,'blocks_2_row_form','40394'),(196102,40805,'_blocks_2_row_form','field_61a4ff2c0b08e'),(196103,40805,'blocks_2_row_form_button_label',''),(196104,40805,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(196105,40805,'blocks_3_acfe_flexible_toggle',''),(196106,40805,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(196107,40805,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(196108,40805,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(196109,40805,'blocks_3_options_theme','#ffffff'),(196110,40805,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(196111,40805,'blocks_3_options_reverse','0'),(196112,40805,'_blocks_3_options_reverse','field_61768049bb8ac'),(196113,40805,'blocks_3_options',''),(196114,40805,'_blocks_3_options','field_617682517c334'),(196115,40805,'blocks_3_split_5050_image','40785'),(196116,40805,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(196117,40805,'blocks_3_split_5050_video',''),(196118,40805,'_blocks_3_split_5050_video','field_6239f3160848a'),(196119,40805,'blocks_3_split_5050_content_title',''),(196120,40805,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(196121,40805,'blocks_3_split_5050_content_heading','Course Overview'),(196122,40805,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(196123,40805,'blocks_3_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(196124,40805,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(196125,40805,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(196126,40805,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(196127,40805,'blocks_3_split_5050_content_actions','1'),(196128,40805,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(196129,40805,'blocks_3_split_5050_content',''),(196130,40805,'_blocks_3_split_5050_content','field_61767afceb8ba'),(196131,40805,'blocks_4_acfe_flexible_toggle',''),(196132,40805,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(196133,40805,'blocks_4_acfe_flexible_layout_title','Template'),(196134,40805,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(196135,40805,'blocks_4_template','39207'),(196136,40805,'_blocks_4_template','field_617bdd570fe01'),(196137,40805,'blocks_6_acfe_flexible_toggle',''),(196138,40805,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(196139,40805,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(196140,40805,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(196141,40805,'blocks_6_options_theme','#ffffff'),(196142,40805,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(196143,40805,'blocks_6_options_reverse','0'),(196144,40805,'_blocks_6_options_reverse','field_61768049bb8ac'),(196145,40805,'blocks_6_options',''),(196146,40805,'_blocks_6_options','field_617682517c334'),(196147,40805,'blocks_6_split_5050_image','40799'),(196148,40805,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(196149,40805,'blocks_6_split_5050_video',''),(196150,40805,'_blocks_6_split_5050_video','field_6239f3160848a'),(196151,40805,'blocks_6_split_5050_content_title',''),(196152,40805,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(196153,40805,'blocks_6_split_5050_content_heading','Course Information'),(196154,40805,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(196155,40805,'blocks_6_split_5050_content_text','<strong>Entry requirements:</strong>\r\n<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning format:</strong>\r\n<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Qualifications included:</strong>\r\n<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(196156,40805,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(196157,40805,'blocks_6_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(196158,40805,'_blocks_6_split_5050_content_actions_0_button','field_61767b72eb8be'),(196159,40805,'blocks_6_split_5050_content_actions','1'),(196160,40805,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(196161,40805,'blocks_6_split_5050_content',''),(196162,40805,'_blocks_6_split_5050_content','field_61767afceb8ba'),(196163,40805,'blocks_7_acfe_flexible_toggle',''),(196164,40805,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(196165,40805,'blocks_7_acfe_flexible_layout_title','Icons'),(196166,40805,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(196167,40805,'blocks_7_options_theme','#ffffff'),(196168,40805,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(196169,40805,'blocks_7_options_format','grid'),(196170,40805,'_blocks_7_options_format','field_64bfde9a90690'),(196171,40805,'blocks_7_options',''),(196172,40805,'_blocks_7_options','field_64bfdd9b90684'),(196173,40805,'blocks_7_row_content_title','Options available to pay for your course'),(196174,40805,'_blocks_7_row_content_title','field_64bfdd9b90687'),(196175,40805,'blocks_7_row_content_heading','Payment Options'),(196176,40805,'_blocks_7_row_content_heading','field_64bfdd9b90688'),(196177,40805,'blocks_7_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Future Fit Training, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(196178,40805,'_blocks_7_row_content_text','field_64bfdd9b90689'),(196179,40805,'blocks_7_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(196180,40805,'_blocks_7_row_content_actions_0_button','field_64bfdd9b9068b'),(196181,40805,'blocks_7_row_content_actions','1'),(196182,40805,'_blocks_7_row_content_actions','field_64bfdd9b9068a'),(196183,40805,'blocks_7_row_content',''),(196184,40805,'_blocks_7_row_content','field_64bfdd9b90686'),(196185,40805,'blocks_7_icon_row_items_0_icon','pay-as-you-learn.svg'),(196186,40805,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(196187,40805,'blocks_7_icon_row_items_0_label','Pay your course in full'),(196188,40805,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(196189,40805,'blocks_7_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(196190,40805,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(196191,40805,'blocks_7_icon_row_items_1_icon','pass-rate.svg'),(196192,40805,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(196193,40805,'blocks_7_icon_row_items_1_label','Flexible payment schemes'),(196194,40805,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(196195,40805,'blocks_7_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(196196,40805,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(196197,40805,'blocks_7_icon_row_items','2'),(196198,40805,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(196199,40780,'blocks_6_acfe_flexible_toggle',''),(196200,40780,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(196201,40780,'blocks_6_acfe_flexible_layout_title','Icons'),(196202,40780,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(196203,40780,'blocks_6_options_theme','#f5f5f5'),(196204,40780,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(196205,40780,'blocks_6_options_format','stacked'),(196206,40780,'_blocks_6_options_format','field_64bfde9a90690'),(196207,40780,'blocks_6_options',''),(196208,40780,'_blocks_6_options','field_64bfdd9b90684'),(196209,40780,'blocks_6_row_content_title','Options available to pay for your course'),(196210,40780,'_blocks_6_row_content_title','field_64bfdd9b90687'),(196211,40780,'blocks_6_row_content_heading','Fees & Funding Options '),(196212,40780,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(196213,40780,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(196214,40780,'_blocks_6_row_content_text','field_64bfdd9b90689'),(196215,40780,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(196216,40780,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(196217,40780,'blocks_6_row_content_actions','1'),(196218,40780,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(196219,40780,'blocks_6_row_content',''),(196220,40780,'_blocks_6_row_content','field_64bfdd9b90686'),(196221,40780,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(196222,40780,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(196223,40780,'blocks_6_icon_row_items_0_label','Pay in full'),(196224,40780,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(196225,40780,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(196226,40780,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(196227,40780,'blocks_6_icon_row_items_1_icon','finance.svg'),(196228,40780,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(196229,40780,'blocks_6_icon_row_items_1_label','0% finance'),(196230,40780,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(196231,40780,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(196232,40780,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(196233,40780,'blocks_6_icon_row_items','3'),(196234,40780,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(196235,40780,'blocks_7_acfe_flexible_toggle',''),(196236,40780,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(196237,40780,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(196238,40780,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(196239,40780,'blocks_7_options_theme','#ffffff'),(196240,40780,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(196241,40780,'blocks_7_options_reverse','0'),(196242,40780,'_blocks_7_options_reverse','field_61768049bb8ac'),(196243,40780,'blocks_7_options',''),(196244,40780,'_blocks_7_options','field_617682517c334'),(196245,40780,'blocks_7_split_5050_image','40817'),(196246,40780,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(196247,40780,'blocks_7_split_5050_video',''),(196248,40780,'_blocks_7_split_5050_video','field_6239f3160848a'),(196249,40780,'blocks_7_split_5050_content_title',''),(196250,40780,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(196251,40780,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(196252,40780,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(196253,40780,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(196254,40780,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(196255,40780,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(196256,40780,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(196257,40780,'blocks_7_split_5050_content_actions','1'),(196258,40780,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(196259,40780,'blocks_7_split_5050_content',''),(196260,40780,'_blocks_7_split_5050_content','field_61767afceb8ba'),(196261,40806,'hide_hero','0'),(196262,40806,'_hide_hero','field_66a2380fcda39'),(196263,40806,'hero_title','Level 4 Personal Trainer Course'),(196264,40806,'_hero_title','field_617571fe285e8'),(196265,40806,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(196266,40806,'_hero_text','field_6175723c285e9'),(196267,40806,'hero_actions','1'),(196268,40806,'_hero_actions','field_61757270285ea'),(196269,40806,'hero_style','default'),(196270,40806,'_hero_style','field_62051d9dc5324'),(196271,40806,'_thumbnail_id','40782'),(196272,40806,'__thumbnail_id','field_617570855ddaf'),(196273,40806,'hero_image_pos_x','right'),(196274,40806,'_hero_image_pos_x','field_62ec3d05390bb'),(196275,40806,'hero_image_pos_y','top'),(196276,40806,'_hero_image_pos_y','field_62ec3d05390bc'),(196277,40806,'hero_image_pos',''),(196278,40806,'_hero_image_pos','field_62ec3d05390ba'),(196279,40806,'fft_hide_from_listings','0'),(196280,40806,'_fft_hide_from_listings','field_61f1320446ab2'),(196281,40806,'fft_page_format','default'),(196282,40806,'_fft_page_format','field_61ae213f1f218'),(196283,40806,'fft_hide_nav','0'),(196284,40806,'_fft_hide_nav','field_635bd5e43527c'),(196285,40806,'fft_hide_header_call_to_action','0'),(196286,40806,'_fft_hide_header_call_to_action','field_635bd6723527d'),(196287,40806,'fft_page_sitemap','0'),(196288,40806,'_fft_page_sitemap','field_61af9b34e8181'),(196289,40806,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";}'),(196290,40806,'_blocks','field_6176696113096'),(196291,40806,'course_label_text',''),(196292,40806,'_course_label_text','field_61e17babf71fa'),(196293,40806,'course_label',''),(196294,40806,'_course_label','field_61e12f92749a7'),(196295,40806,'course_description',''),(196296,40806,'_course_description','field_617ac5788e5e1'),(196297,40806,'course_key_info',''),(196298,40806,'_course_key_info','field_617ac6ad8e5e2'),(196299,40806,'course_included',''),(196300,40806,'_course_included','field_617ac6f08e5e4'),(196301,40806,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(196302,40806,'_hero_actions_0_button','field_61757281285eb'),(196303,40806,'blocks_0_acfe_flexible_toggle',''),(196304,40806,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(196305,40806,'blocks_0_acfe_flexible_layout_title','Icons'),(196306,40806,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(196307,40806,'blocks_0_options_theme','#b61234'),(196308,40806,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(196309,40806,'blocks_0_options_format','row'),(196310,40806,'_blocks_0_options_format','field_64bfde9a90690'),(196311,40806,'blocks_0_options',''),(196312,40806,'_blocks_0_options','field_64bfdd9b90684'),(196313,40806,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(196314,40806,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(196315,40806,'blocks_0_icon_row_items_0_label','Accreditation'),(196316,40806,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(196317,40806,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(196318,40806,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(196319,40806,'blocks_0_icon_row_items_1_icon','finance.svg'),(196320,40806,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(196321,40806,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(196322,40806,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(196323,40806,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(196324,40806,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(196325,40806,'blocks_0_icon_row_items_2_icon','progression.svg'),(196326,40806,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(196327,40806,'blocks_0_icon_row_items_2_label','Earning Potential'),(196328,40806,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(196329,40806,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(196330,40806,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(196331,40806,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(196332,40806,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(196333,40806,'blocks_0_icon_row_items_3_label','Qualification'),(196334,40806,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(196335,40806,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(196336,40806,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(196337,40806,'blocks_0_icon_row_items','4'),(196338,40806,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(196339,40806,'blocks_5_acfe_flexible_toggle','1'),(196340,40806,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(196341,40806,'blocks_5_acfe_flexible_layout_title','Tabs'),(196342,40806,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(196343,40806,'blocks_5_options_theme','#ffffff'),(196344,40806,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(196345,40806,'blocks_5_options',''),(196346,40806,'_blocks_5_options','field_6177cfcd8140f'),(196347,40806,'blocks_5_tabs_0_tab_label','Entry requirements'),(196348,40806,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(196349,40806,'blocks_5_tabs_0_tab_content_title',''),(196350,40806,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(196351,40806,'blocks_5_tabs_0_tab_content_heading',''),(196352,40806,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(196353,40806,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(196354,40806,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(196355,40806,'blocks_5_tabs_0_tab_content_actions',''),(196356,40806,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(196357,40806,'blocks_5_tabs_0_tab_content',''),(196358,40806,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(196359,40806,'blocks_5_tabs_0_tab_image',''),(196360,40806,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(196361,40806,'blocks_5_tabs_1_tab_label','Learning format'),(196362,40806,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(196363,40806,'blocks_5_tabs_1_tab_content_title',''),(196364,40806,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(196365,40806,'blocks_5_tabs_1_tab_content_heading',''),(196366,40806,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(196367,40806,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(196368,40806,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(196369,40806,'blocks_5_tabs_1_tab_content_actions',''),(196370,40806,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(196371,40806,'blocks_5_tabs_1_tab_content',''),(196372,40806,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(196373,40806,'blocks_5_tabs_1_tab_image',''),(196374,40806,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(196375,40806,'blocks_5_tabs_2_tab_label','Qualifications included'),(196376,40806,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(196377,40806,'blocks_5_tabs_2_tab_content_title',''),(196378,40806,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(196379,40806,'blocks_5_tabs_2_tab_content_heading',''),(196380,40806,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(196381,40806,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(196382,40806,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(196383,40806,'blocks_5_tabs_2_tab_content_actions',''),(196384,40806,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(196385,40806,'blocks_5_tabs_2_tab_content',''),(196386,40806,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(196387,40806,'blocks_5_tabs_2_tab_image',''),(196388,40806,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(196389,40806,'blocks_5_tabs','3'),(196390,40806,'_blocks_5_tabs','field_6177cff281419'),(196391,40806,'blocks_1_acfe_flexible_toggle',''),(196392,40806,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(196393,40806,'blocks_1_acfe_flexible_layout_title','Text Block'),(196394,40806,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(196395,40806,'blocks_1_options_theme','#ffffff'),(196396,40806,'_blocks_1_options_theme','field_6176830e2ad17'),(196397,40806,'blocks_1_options',''),(196398,40806,'_blocks_1_options','field_6176830e2ad16'),(196399,40806,'blocks_1_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(196400,40806,'_blocks_1_text_block_heading','field_617669d413097'),(196401,40806,'blocks_1_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(196402,40806,'_blocks_1_text_block_content','field_617669ec13098'),(196403,40806,'blocks_2_acfe_flexible_toggle',''),(196404,40806,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(196405,40806,'blocks_2_acfe_flexible_layout_title','Form'),(196406,40806,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(196407,40806,'blocks_2_row_content_format','standard'),(196408,40806,'_blocks_2_row_content_format','field_6481ead962881'),(196409,40806,'blocks_2_row_content_title',''),(196410,40806,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(196411,40806,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(196412,40806,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(196413,40806,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(196414,40806,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(196415,40806,'blocks_2_row_content_actions',''),(196416,40806,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(196417,40806,'blocks_2_row_content',''),(196418,40806,'_blocks_2_row_content','field_61a0f5f5b3db0'),(196419,40806,'blocks_2_row_form','40394'),(196420,40806,'_blocks_2_row_form','field_61a4ff2c0b08e'),(196421,40806,'blocks_2_row_form_button_label',''),(196422,40806,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(196423,40806,'blocks_3_acfe_flexible_toggle',''),(196424,40806,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(196425,40806,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(196426,40806,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(196427,40806,'blocks_3_options_theme','#ffffff'),(196428,40806,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(196429,40806,'blocks_3_options_reverse','0'),(196430,40806,'_blocks_3_options_reverse','field_61768049bb8ac'),(196431,40806,'blocks_3_options',''),(196432,40806,'_blocks_3_options','field_617682517c334'),(196433,40806,'blocks_3_split_5050_image','40785'),(196434,40806,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(196435,40806,'blocks_3_split_5050_video',''),(196436,40806,'_blocks_3_split_5050_video','field_6239f3160848a'),(196437,40806,'blocks_3_split_5050_content_title',''),(196438,40806,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(196439,40806,'blocks_3_split_5050_content_heading','Course Overview'),(196440,40806,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(196441,40806,'blocks_3_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(196442,40806,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(196443,40806,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(196444,40806,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(196445,40806,'blocks_3_split_5050_content_actions','1'),(196446,40806,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(196447,40806,'blocks_3_split_5050_content',''),(196448,40806,'_blocks_3_split_5050_content','field_61767afceb8ba'),(196449,40806,'blocks_4_acfe_flexible_toggle',''),(196450,40806,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(196451,40806,'blocks_4_acfe_flexible_layout_title','Template'),(196452,40806,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(196453,40806,'blocks_4_template','39207'),(196454,40806,'_blocks_4_template','field_617bdd570fe01'),(196455,40806,'blocks_6_acfe_flexible_toggle',''),(196456,40806,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(196457,40806,'blocks_6_acfe_flexible_layout_title','Icons'),(196458,40806,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(196459,40806,'blocks_6_options_theme','#b61234'),(196460,40806,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(196461,40806,'blocks_6_options_format','grid'),(196462,40806,'_blocks_6_options_format','field_64bfde9a90690'),(196463,40806,'blocks_6_options',''),(196464,40806,'_blocks_6_options','field_64bfdd9b90684'),(196465,40806,'blocks_6_row_content_title','Options available to pay for your course'),(196466,40806,'_blocks_6_row_content_title','field_64bfdd9b90687'),(196467,40806,'blocks_6_row_content_heading','Payment Options'),(196468,40806,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(196469,40806,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Future Fit Training, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(196470,40806,'_blocks_6_row_content_text','field_64bfdd9b90689'),(196471,40806,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(196472,40806,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(196473,40806,'blocks_6_row_content_actions','1'),(196474,40806,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(196475,40806,'blocks_6_row_content',''),(196476,40806,'_blocks_6_row_content','field_64bfdd9b90686'),(196477,40806,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(196478,40806,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(196479,40806,'blocks_6_icon_row_items_0_label','Pay your course in full'),(196480,40806,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(196481,40806,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(196482,40806,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(196483,40806,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(196484,40806,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(196485,40806,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(196486,40806,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(196487,40806,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(196488,40806,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(196489,40806,'blocks_6_icon_row_items','2'),(196490,40806,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(196491,40806,'blocks_7_acfe_flexible_toggle',''),(196492,40806,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(196493,40806,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(196494,40806,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(196495,40806,'blocks_7_options_theme','#ffffff'),(196496,40806,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(196497,40806,'blocks_7_options_reverse','0'),(196498,40806,'_blocks_7_options_reverse','field_61768049bb8ac'),(196499,40806,'blocks_7_options',''),(196500,40806,'_blocks_7_options','field_617682517c334'),(196501,40806,'blocks_7_split_5050_image','40799'),(196502,40806,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(196503,40806,'blocks_7_split_5050_video',''),(196504,40806,'_blocks_7_split_5050_video','field_6239f3160848a'),(196505,40806,'blocks_7_split_5050_content_title',''),(196506,40806,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(196507,40806,'blocks_7_split_5050_content_heading','Course Information'),(196508,40806,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(196509,40806,'blocks_7_split_5050_content_text','<strong>Entry requirements:</strong>\r\n<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning format:</strong>\r\n<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Qualifications included:</strong>\r\n<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(196510,40806,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(196511,40806,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(196512,40806,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(196513,40806,'blocks_7_split_5050_content_actions','1'),(196514,40806,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(196515,40806,'blocks_7_split_5050_content',''),(196516,40806,'_blocks_7_split_5050_content','field_61767afceb8ba'),(196517,40807,'hide_hero','0'),(196518,40807,'_hide_hero','field_66a2380fcda39'),(196519,40807,'hero_title','Level 4 Personal Trainer Course'),(196520,40807,'_hero_title','field_617571fe285e8'),(196521,40807,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(196522,40807,'_hero_text','field_6175723c285e9'),(196523,40807,'hero_actions','1'),(196524,40807,'_hero_actions','field_61757270285ea'),(196525,40807,'hero_style','default'),(196526,40807,'_hero_style','field_62051d9dc5324'),(196527,40807,'_thumbnail_id','40782'),(196528,40807,'__thumbnail_id','field_617570855ddaf'),(196529,40807,'hero_image_pos_x','right'),(196530,40807,'_hero_image_pos_x','field_62ec3d05390bb'),(196531,40807,'hero_image_pos_y','top'),(196532,40807,'_hero_image_pos_y','field_62ec3d05390bc'),(196533,40807,'hero_image_pos',''),(196534,40807,'_hero_image_pos','field_62ec3d05390ba'),(196535,40807,'fft_hide_from_listings','0'),(196536,40807,'_fft_hide_from_listings','field_61f1320446ab2'),(196537,40807,'fft_page_format','default'),(196538,40807,'_fft_page_format','field_61ae213f1f218'),(196539,40807,'fft_hide_nav','0'),(196540,40807,'_fft_hide_nav','field_635bd5e43527c'),(196541,40807,'fft_hide_header_call_to_action','0'),(196542,40807,'_fft_hide_header_call_to_action','field_635bd6723527d'),(196543,40807,'fft_page_sitemap','0'),(196544,40807,'_fft_page_sitemap','field_61af9b34e8181'),(196545,40807,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";}'),(196546,40807,'_blocks','field_6176696113096'),(196547,40807,'course_label_text',''),(196548,40807,'_course_label_text','field_61e17babf71fa'),(196549,40807,'course_label',''),(196550,40807,'_course_label','field_61e12f92749a7'),(196551,40807,'course_description',''),(196552,40807,'_course_description','field_617ac5788e5e1'),(196553,40807,'course_key_info',''),(196554,40807,'_course_key_info','field_617ac6ad8e5e2'),(196555,40807,'course_included',''),(196556,40807,'_course_included','field_617ac6f08e5e4'),(196557,40807,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(196558,40807,'_hero_actions_0_button','field_61757281285eb'),(196559,40807,'blocks_0_acfe_flexible_toggle',''),(196560,40807,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(196561,40807,'blocks_0_acfe_flexible_layout_title','Icons'),(196562,40807,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(196563,40807,'blocks_0_options_theme','#b61234'),(196564,40807,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(196565,40807,'blocks_0_options_format','row'),(196566,40807,'_blocks_0_options_format','field_64bfde9a90690'),(196567,40807,'blocks_0_options',''),(196568,40807,'_blocks_0_options','field_64bfdd9b90684'),(196569,40807,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(196570,40807,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(196571,40807,'blocks_0_icon_row_items_0_label','Accreditation'),(196572,40807,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(196573,40807,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(196574,40807,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(196575,40807,'blocks_0_icon_row_items_1_icon','finance.svg'),(196576,40807,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(196577,40807,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(196578,40807,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(196579,40807,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(196580,40807,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(196581,40807,'blocks_0_icon_row_items_2_icon','progression.svg'),(196582,40807,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(196583,40807,'blocks_0_icon_row_items_2_label','Earning Potential'),(196584,40807,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(196585,40807,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(196586,40807,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(196587,40807,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(196588,40807,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(196589,40807,'blocks_0_icon_row_items_3_label','Qualification'),(196590,40807,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(196591,40807,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(196592,40807,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(196593,40807,'blocks_0_icon_row_items','4'),(196594,40807,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(196595,40807,'blocks_5_acfe_flexible_toggle','1'),(196596,40807,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(196597,40807,'blocks_5_acfe_flexible_layout_title','Tabs'),(196598,40807,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(196599,40807,'blocks_5_options_theme','#ffffff'),(196600,40807,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(196601,40807,'blocks_5_options',''),(196602,40807,'_blocks_5_options','field_6177cfcd8140f'),(196603,40807,'blocks_5_tabs_0_tab_label','Entry requirements'),(196604,40807,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(196605,40807,'blocks_5_tabs_0_tab_content_title',''),(196606,40807,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(196607,40807,'blocks_5_tabs_0_tab_content_heading',''),(196608,40807,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(196609,40807,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(196610,40807,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(196611,40807,'blocks_5_tabs_0_tab_content_actions',''),(196612,40807,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(196613,40807,'blocks_5_tabs_0_tab_content',''),(196614,40807,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(196615,40807,'blocks_5_tabs_0_tab_image',''),(196616,40807,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(196617,40807,'blocks_5_tabs_1_tab_label','Learning format'),(196618,40807,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(196619,40807,'blocks_5_tabs_1_tab_content_title',''),(196620,40807,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(196621,40807,'blocks_5_tabs_1_tab_content_heading',''),(196622,40807,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(196623,40807,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(196624,40807,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(196625,40807,'blocks_5_tabs_1_tab_content_actions',''),(196626,40807,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(196627,40807,'blocks_5_tabs_1_tab_content',''),(196628,40807,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(196629,40807,'blocks_5_tabs_1_tab_image',''),(196630,40807,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(196631,40807,'blocks_5_tabs_2_tab_label','Qualifications included'),(196632,40807,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(196633,40807,'blocks_5_tabs_2_tab_content_title',''),(196634,40807,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(196635,40807,'blocks_5_tabs_2_tab_content_heading',''),(196636,40807,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(196637,40807,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(196638,40807,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(196639,40807,'blocks_5_tabs_2_tab_content_actions',''),(196640,40807,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(196641,40807,'blocks_5_tabs_2_tab_content',''),(196642,40807,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(196643,40807,'blocks_5_tabs_2_tab_image',''),(196644,40807,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(196645,40807,'blocks_5_tabs','3'),(196646,40807,'_blocks_5_tabs','field_6177cff281419'),(196647,40807,'blocks_1_acfe_flexible_toggle',''),(196648,40807,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(196649,40807,'blocks_1_acfe_flexible_layout_title','Text Block'),(196650,40807,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(196651,40807,'blocks_1_options_theme','#ffffff'),(196652,40807,'_blocks_1_options_theme','field_6176830e2ad17'),(196653,40807,'blocks_1_options',''),(196654,40807,'_blocks_1_options','field_6176830e2ad16'),(196655,40807,'blocks_1_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(196656,40807,'_blocks_1_text_block_heading','field_617669d413097'),(196657,40807,'blocks_1_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(196658,40807,'_blocks_1_text_block_content','field_617669ec13098'),(196659,40807,'blocks_2_acfe_flexible_toggle',''),(196660,40807,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(196661,40807,'blocks_2_acfe_flexible_layout_title','Form'),(196662,40807,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(196663,40807,'blocks_2_row_content_format','standard'),(196664,40807,'_blocks_2_row_content_format','field_6481ead962881'),(196665,40807,'blocks_2_row_content_title',''),(196666,40807,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(196667,40807,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(196668,40807,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(196669,40807,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(196670,40807,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(196671,40807,'blocks_2_row_content_actions',''),(196672,40807,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(196673,40807,'blocks_2_row_content',''),(196674,40807,'_blocks_2_row_content','field_61a0f5f5b3db0'),(196675,40807,'blocks_2_row_form','40394'),(196676,40807,'_blocks_2_row_form','field_61a4ff2c0b08e'),(196677,40807,'blocks_2_row_form_button_label',''),(196678,40807,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(196679,40807,'blocks_3_acfe_flexible_toggle',''),(196680,40807,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(196681,40807,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(196682,40807,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(196683,40807,'blocks_3_options_theme','#ffffff'),(196684,40807,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(196685,40807,'blocks_3_options_reverse','0'),(196686,40807,'_blocks_3_options_reverse','field_61768049bb8ac'),(196687,40807,'blocks_3_options',''),(196688,40807,'_blocks_3_options','field_617682517c334'),(196689,40807,'blocks_3_split_5050_image','40785'),(196690,40807,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(196691,40807,'blocks_3_split_5050_video',''),(196692,40807,'_blocks_3_split_5050_video','field_6239f3160848a'),(196693,40807,'blocks_3_split_5050_content_title',''),(196694,40807,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(196695,40807,'blocks_3_split_5050_content_heading','Course Overview'),(196696,40807,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(196697,40807,'blocks_3_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(196698,40807,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(196699,40807,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(196700,40807,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(196701,40807,'blocks_3_split_5050_content_actions','1'),(196702,40807,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(196703,40807,'blocks_3_split_5050_content',''),(196704,40807,'_blocks_3_split_5050_content','field_61767afceb8ba'),(196705,40807,'blocks_4_acfe_flexible_toggle',''),(196706,40807,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(196707,40807,'blocks_4_acfe_flexible_layout_title','Template'),(196708,40807,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(196709,40807,'blocks_4_template','39207'),(196710,40807,'_blocks_4_template','field_617bdd570fe01'),(196711,40807,'blocks_6_acfe_flexible_toggle',''),(196712,40807,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(196713,40807,'blocks_6_acfe_flexible_layout_title','Icons'),(196714,40807,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(196715,40807,'blocks_6_options_theme','#b61234'),(196716,40807,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(196717,40807,'blocks_6_options_format','grid'),(196718,40807,'_blocks_6_options_format','field_64bfde9a90690'),(196719,40807,'blocks_6_options',''),(196720,40807,'_blocks_6_options','field_64bfdd9b90684'),(196721,40807,'blocks_6_row_content_title','Options available to pay for your course'),(196722,40807,'_blocks_6_row_content_title','field_64bfdd9b90687'),(196723,40807,'blocks_6_row_content_heading','Payment Options'),(196724,40807,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(196725,40807,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(196726,40807,'_blocks_6_row_content_text','field_64bfdd9b90689'),(196727,40807,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(196728,40807,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(196729,40807,'blocks_6_row_content_actions','1'),(196730,40807,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(196731,40807,'blocks_6_row_content',''),(196732,40807,'_blocks_6_row_content','field_64bfdd9b90686'),(196733,40807,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(196734,40807,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(196735,40807,'blocks_6_icon_row_items_0_label','Pay your course in full'),(196736,40807,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(196737,40807,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(196738,40807,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(196739,40807,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(196740,40807,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(196741,40807,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(196742,40807,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(196743,40807,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(196744,40807,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(196745,40807,'blocks_6_icon_row_items','2'),(196746,40807,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(196747,40807,'blocks_7_acfe_flexible_toggle',''),(196748,40807,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(196749,40807,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(196750,40807,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(196751,40807,'blocks_7_options_theme','#ffffff'),(196752,40807,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(196753,40807,'blocks_7_options_reverse','0'),(196754,40807,'_blocks_7_options_reverse','field_61768049bb8ac'),(196755,40807,'blocks_7_options',''),(196756,40807,'_blocks_7_options','field_617682517c334'),(196757,40807,'blocks_7_split_5050_image','40799'),(196758,40807,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(196759,40807,'blocks_7_split_5050_video',''),(196760,40807,'_blocks_7_split_5050_video','field_6239f3160848a'),(196761,40807,'blocks_7_split_5050_content_title',''),(196762,40807,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(196763,40807,'blocks_7_split_5050_content_heading','Course Information'),(196764,40807,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(196765,40807,'blocks_7_split_5050_content_text','<strong>Entry requirements:</strong>\r\n<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning format:</strong>\r\n<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Qualifications included:</strong>\r\n<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(196766,40807,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(196767,40807,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(196768,40807,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(196769,40807,'blocks_7_split_5050_content_actions','1'),(196770,40807,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(196771,40807,'blocks_7_split_5050_content',''),(196772,40807,'_blocks_7_split_5050_content','field_61767afceb8ba'),(196773,40808,'hide_hero','0'),(196774,40808,'_hide_hero','field_66a2380fcda39'),(196775,40808,'hero_title','Level 4 Personal Trainer Course'),(196776,40808,'_hero_title','field_617571fe285e8'),(196777,40808,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(196778,40808,'_hero_text','field_6175723c285e9'),(196779,40808,'hero_actions','1'),(196780,40808,'_hero_actions','field_61757270285ea'),(196781,40808,'hero_style','default'),(196782,40808,'_hero_style','field_62051d9dc5324'),(196783,40808,'_thumbnail_id','40782'),(196784,40808,'__thumbnail_id','field_617570855ddaf'),(196785,40808,'hero_image_pos_x','right'),(196786,40808,'_hero_image_pos_x','field_62ec3d05390bb'),(196787,40808,'hero_image_pos_y','top'),(196788,40808,'_hero_image_pos_y','field_62ec3d05390bc'),(196789,40808,'hero_image_pos',''),(196790,40808,'_hero_image_pos','field_62ec3d05390ba'),(196791,40808,'fft_hide_from_listings','0'),(196792,40808,'_fft_hide_from_listings','field_61f1320446ab2'),(196793,40808,'fft_page_format','default'),(196794,40808,'_fft_page_format','field_61ae213f1f218'),(196795,40808,'fft_hide_nav','0'),(196796,40808,'_fft_hide_nav','field_635bd5e43527c'),(196797,40808,'fft_hide_header_call_to_action','0'),(196798,40808,'_fft_hide_header_call_to_action','field_635bd6723527d'),(196799,40808,'fft_page_sitemap','0'),(196800,40808,'_fft_page_sitemap','field_61af9b34e8181'),(196801,40808,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";}'),(196802,40808,'_blocks','field_6176696113096'),(196803,40808,'course_label_text',''),(196804,40808,'_course_label_text','field_61e17babf71fa'),(196805,40808,'course_label',''),(196806,40808,'_course_label','field_61e12f92749a7'),(196807,40808,'course_description',''),(196808,40808,'_course_description','field_617ac5788e5e1'),(196809,40808,'course_key_info',''),(196810,40808,'_course_key_info','field_617ac6ad8e5e2'),(196811,40808,'course_included',''),(196812,40808,'_course_included','field_617ac6f08e5e4'),(196813,40808,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(196814,40808,'_hero_actions_0_button','field_61757281285eb'),(196815,40808,'blocks_0_acfe_flexible_toggle',''),(196816,40808,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(196817,40808,'blocks_0_acfe_flexible_layout_title','Icons'),(196818,40808,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(196819,40808,'blocks_0_options_theme','#b61234'),(196820,40808,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(196821,40808,'blocks_0_options_format','row'),(196822,40808,'_blocks_0_options_format','field_64bfde9a90690'),(196823,40808,'blocks_0_options',''),(196824,40808,'_blocks_0_options','field_64bfdd9b90684'),(196825,40808,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(196826,40808,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(196827,40808,'blocks_0_icon_row_items_0_label','Accreditation'),(196828,40808,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(196829,40808,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(196830,40808,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(196831,40808,'blocks_0_icon_row_items_1_icon','finance.svg'),(196832,40808,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(196833,40808,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(196834,40808,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(196835,40808,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(196836,40808,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(196837,40808,'blocks_0_icon_row_items_2_icon','progression.svg'),(196838,40808,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(196839,40808,'blocks_0_icon_row_items_2_label','Earning Potential'),(196840,40808,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(196841,40808,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(196842,40808,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(196843,40808,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(196844,40808,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(196845,40808,'blocks_0_icon_row_items_3_label','Qualification'),(196846,40808,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(196847,40808,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(196848,40808,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(196849,40808,'blocks_0_icon_row_items','4'),(196850,40808,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(196851,40808,'blocks_5_acfe_flexible_toggle','1'),(196852,40808,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(196853,40808,'blocks_5_acfe_flexible_layout_title','Tabs'),(196854,40808,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(196855,40808,'blocks_5_options_theme','#ffffff'),(196856,40808,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(196857,40808,'blocks_5_options',''),(196858,40808,'_blocks_5_options','field_6177cfcd8140f'),(196859,40808,'blocks_5_tabs_0_tab_label','Entry requirements'),(196860,40808,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(196861,40808,'blocks_5_tabs_0_tab_content_title',''),(196862,40808,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(196863,40808,'blocks_5_tabs_0_tab_content_heading',''),(196864,40808,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(196865,40808,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(196866,40808,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(196867,40808,'blocks_5_tabs_0_tab_content_actions',''),(196868,40808,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(196869,40808,'blocks_5_tabs_0_tab_content',''),(196870,40808,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(196871,40808,'blocks_5_tabs_0_tab_image',''),(196872,40808,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(196873,40808,'blocks_5_tabs_1_tab_label','Learning format'),(196874,40808,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(196875,40808,'blocks_5_tabs_1_tab_content_title',''),(196876,40808,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(196877,40808,'blocks_5_tabs_1_tab_content_heading',''),(196878,40808,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(196879,40808,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(196880,40808,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(196881,40808,'blocks_5_tabs_1_tab_content_actions',''),(196882,40808,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(196883,40808,'blocks_5_tabs_1_tab_content',''),(196884,40808,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(196885,40808,'blocks_5_tabs_1_tab_image',''),(196886,40808,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(196887,40808,'blocks_5_tabs_2_tab_label','Qualifications included'),(196888,40808,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(196889,40808,'blocks_5_tabs_2_tab_content_title',''),(196890,40808,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(196891,40808,'blocks_5_tabs_2_tab_content_heading',''),(196892,40808,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(196893,40808,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(196894,40808,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(196895,40808,'blocks_5_tabs_2_tab_content_actions',''),(196896,40808,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(196897,40808,'blocks_5_tabs_2_tab_content',''),(196898,40808,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(196899,40808,'blocks_5_tabs_2_tab_image',''),(196900,40808,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(196901,40808,'blocks_5_tabs','3'),(196902,40808,'_blocks_5_tabs','field_6177cff281419'),(196903,40808,'blocks_1_acfe_flexible_toggle',''),(196904,40808,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(196905,40808,'blocks_1_acfe_flexible_layout_title','Text Block'),(196906,40808,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(196907,40808,'blocks_1_options_theme','#ffffff'),(196908,40808,'_blocks_1_options_theme','field_6176830e2ad17'),(196909,40808,'blocks_1_options',''),(196910,40808,'_blocks_1_options','field_6176830e2ad16'),(196911,40808,'blocks_1_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(196912,40808,'_blocks_1_text_block_heading','field_617669d413097'),(196913,40808,'blocks_1_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(196914,40808,'_blocks_1_text_block_content','field_617669ec13098'),(196915,40808,'blocks_2_acfe_flexible_toggle',''),(196916,40808,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(196917,40808,'blocks_2_acfe_flexible_layout_title','Form'),(196918,40808,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(196919,40808,'blocks_2_row_content_format','standard'),(196920,40808,'_blocks_2_row_content_format','field_6481ead962881'),(196921,40808,'blocks_2_row_content_title',''),(196922,40808,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(196923,40808,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(196924,40808,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(196925,40808,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(196926,40808,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(196927,40808,'blocks_2_row_content_actions',''),(196928,40808,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(196929,40808,'blocks_2_row_content',''),(196930,40808,'_blocks_2_row_content','field_61a0f5f5b3db0'),(196931,40808,'blocks_2_row_form','40394'),(196932,40808,'_blocks_2_row_form','field_61a4ff2c0b08e'),(196933,40808,'blocks_2_row_form_button_label',''),(196934,40808,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(196935,40808,'blocks_3_acfe_flexible_toggle',''),(196936,40808,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(196937,40808,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(196938,40808,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(196939,40808,'blocks_3_options_theme','#ffffff'),(196940,40808,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(196941,40808,'blocks_3_options_reverse','0'),(196942,40808,'_blocks_3_options_reverse','field_61768049bb8ac'),(196943,40808,'blocks_3_options',''),(196944,40808,'_blocks_3_options','field_617682517c334'),(196945,40808,'blocks_3_split_5050_image','40785'),(196946,40808,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(196947,40808,'blocks_3_split_5050_video',''),(196948,40808,'_blocks_3_split_5050_video','field_6239f3160848a'),(196949,40808,'blocks_3_split_5050_content_title',''),(196950,40808,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(196951,40808,'blocks_3_split_5050_content_heading','Course Overview'),(196952,40808,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(196953,40808,'blocks_3_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(196954,40808,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(196955,40808,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(196956,40808,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(196957,40808,'blocks_3_split_5050_content_actions','1'),(196958,40808,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(196959,40808,'blocks_3_split_5050_content',''),(196960,40808,'_blocks_3_split_5050_content','field_61767afceb8ba'),(196961,40808,'blocks_4_acfe_flexible_toggle',''),(196962,40808,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(196963,40808,'blocks_4_acfe_flexible_layout_title','Template'),(196964,40808,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(196965,40808,'blocks_4_template','39207'),(196966,40808,'_blocks_4_template','field_617bdd570fe01'),(196967,40808,'blocks_6_acfe_flexible_toggle',''),(196968,40808,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(196969,40808,'blocks_6_acfe_flexible_layout_title','Icons'),(196970,40808,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(196971,40808,'blocks_6_options_theme','#f5f5f5'),(196972,40808,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(196973,40808,'blocks_6_options_format','stacked'),(196974,40808,'_blocks_6_options_format','field_64bfde9a90690'),(196975,40808,'blocks_6_options',''),(196976,40808,'_blocks_6_options','field_64bfdd9b90684'),(196977,40808,'blocks_6_row_content_title','Options available to pay for your course'),(196978,40808,'_blocks_6_row_content_title','field_64bfdd9b90687'),(196979,40808,'blocks_6_row_content_heading','Payment Options'),(196980,40808,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(196981,40808,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(196982,40808,'_blocks_6_row_content_text','field_64bfdd9b90689'),(196983,40808,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(196984,40808,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(196985,40808,'blocks_6_row_content_actions','1'),(196986,40808,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(196987,40808,'blocks_6_row_content',''),(196988,40808,'_blocks_6_row_content','field_64bfdd9b90686'),(196989,40808,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(196990,40808,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(196991,40808,'blocks_6_icon_row_items_0_label','Pay your course in full'),(196992,40808,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(196993,40808,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(196994,40808,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(196995,40808,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(196996,40808,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(196997,40808,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(196998,40808,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(196999,40808,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(197000,40808,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(197001,40808,'blocks_6_icon_row_items','2'),(197002,40808,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(197003,40808,'blocks_7_acfe_flexible_toggle',''),(197004,40808,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(197005,40808,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(197006,40808,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(197007,40808,'blocks_7_options_theme','#ffffff'),(197008,40808,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(197009,40808,'blocks_7_options_reverse','0'),(197010,40808,'_blocks_7_options_reverse','field_61768049bb8ac'),(197011,40808,'blocks_7_options',''),(197012,40808,'_blocks_7_options','field_617682517c334'),(197013,40808,'blocks_7_split_5050_image','40799'),(197014,40808,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(197015,40808,'blocks_7_split_5050_video',''),(197016,40808,'_blocks_7_split_5050_video','field_6239f3160848a'),(197017,40808,'blocks_7_split_5050_content_title',''),(197018,40808,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(197019,40808,'blocks_7_split_5050_content_heading','Course Information'),(197020,40808,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(197021,40808,'blocks_7_split_5050_content_text','<strong>Entry requirements:</strong>\r\n<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning format:</strong>\r\n<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Qualifications included:</strong>\r\n<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(197022,40808,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(197023,40808,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(197024,40808,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(197025,40808,'blocks_7_split_5050_content_actions','1'),(197026,40808,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(197027,40808,'blocks_7_split_5050_content',''),(197028,40808,'_blocks_7_split_5050_content','field_61767afceb8ba'),(197029,40809,'hide_hero','0'),(197030,40809,'_hide_hero','field_66a2380fcda39'),(197031,40809,'hero_title','Level 4 Personal Trainer Course'),(197032,40809,'_hero_title','field_617571fe285e8'),(197033,40809,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(197034,40809,'_hero_text','field_6175723c285e9'),(197035,40809,'hero_actions','1'),(197036,40809,'_hero_actions','field_61757270285ea'),(197037,40809,'hero_style','default'),(197038,40809,'_hero_style','field_62051d9dc5324'),(197039,40809,'_thumbnail_id','40782'),(197040,40809,'__thumbnail_id','field_617570855ddaf'),(197041,40809,'hero_image_pos_x','right'),(197042,40809,'_hero_image_pos_x','field_62ec3d05390bb'),(197043,40809,'hero_image_pos_y','top'),(197044,40809,'_hero_image_pos_y','field_62ec3d05390bc'),(197045,40809,'hero_image_pos',''),(197046,40809,'_hero_image_pos','field_62ec3d05390ba'),(197047,40809,'fft_hide_from_listings','0'),(197048,40809,'_fft_hide_from_listings','field_61f1320446ab2'),(197049,40809,'fft_page_format','default'),(197050,40809,'_fft_page_format','field_61ae213f1f218'),(197051,40809,'fft_hide_nav','0'),(197052,40809,'_fft_hide_nav','field_635bd5e43527c'),(197053,40809,'fft_hide_header_call_to_action','0'),(197054,40809,'_fft_hide_header_call_to_action','field_635bd6723527d'),(197055,40809,'fft_page_sitemap','0'),(197056,40809,'_fft_page_sitemap','field_61af9b34e8181'),(197057,40809,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";}'),(197058,40809,'_blocks','field_6176696113096'),(197059,40809,'course_label_text',''),(197060,40809,'_course_label_text','field_61e17babf71fa'),(197061,40809,'course_label',''),(197062,40809,'_course_label','field_61e12f92749a7'),(197063,40809,'course_description',''),(197064,40809,'_course_description','field_617ac5788e5e1'),(197065,40809,'course_key_info',''),(197066,40809,'_course_key_info','field_617ac6ad8e5e2'),(197067,40809,'course_included',''),(197068,40809,'_course_included','field_617ac6f08e5e4'),(197069,40809,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(197070,40809,'_hero_actions_0_button','field_61757281285eb'),(197071,40809,'blocks_0_acfe_flexible_toggle',''),(197072,40809,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(197073,40809,'blocks_0_acfe_flexible_layout_title','Icons'),(197074,40809,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(197075,40809,'blocks_0_options_theme','#b61234'),(197076,40809,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(197077,40809,'blocks_0_options_format','row'),(197078,40809,'_blocks_0_options_format','field_64bfde9a90690'),(197079,40809,'blocks_0_options',''),(197080,40809,'_blocks_0_options','field_64bfdd9b90684'),(197081,40809,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(197082,40809,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(197083,40809,'blocks_0_icon_row_items_0_label','Accreditation'),(197084,40809,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(197085,40809,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(197086,40809,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(197087,40809,'blocks_0_icon_row_items_1_icon','finance.svg'),(197088,40809,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(197089,40809,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(197090,40809,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(197091,40809,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(197092,40809,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(197093,40809,'blocks_0_icon_row_items_2_icon','progression.svg'),(197094,40809,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(197095,40809,'blocks_0_icon_row_items_2_label','Earning Potential'),(197096,40809,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(197097,40809,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(197098,40809,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(197099,40809,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(197100,40809,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(197101,40809,'blocks_0_icon_row_items_3_label','Qualification'),(197102,40809,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(197103,40809,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(197104,40809,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(197105,40809,'blocks_0_icon_row_items','4'),(197106,40809,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(197107,40809,'blocks_5_acfe_flexible_toggle','1'),(197108,40809,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(197109,40809,'blocks_5_acfe_flexible_layout_title','Tabs'),(197110,40809,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(197111,40809,'blocks_5_options_theme','#ffffff'),(197112,40809,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(197113,40809,'blocks_5_options',''),(197114,40809,'_blocks_5_options','field_6177cfcd8140f'),(197115,40809,'blocks_5_tabs_0_tab_label','Entry requirements'),(197116,40809,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(197117,40809,'blocks_5_tabs_0_tab_content_title',''),(197118,40809,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(197119,40809,'blocks_5_tabs_0_tab_content_heading',''),(197120,40809,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(197121,40809,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(197122,40809,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(197123,40809,'blocks_5_tabs_0_tab_content_actions',''),(197124,40809,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(197125,40809,'blocks_5_tabs_0_tab_content',''),(197126,40809,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(197127,40809,'blocks_5_tabs_0_tab_image',''),(197128,40809,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(197129,40809,'blocks_5_tabs_1_tab_label','Learning format'),(197130,40809,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(197131,40809,'blocks_5_tabs_1_tab_content_title',''),(197132,40809,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(197133,40809,'blocks_5_tabs_1_tab_content_heading',''),(197134,40809,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(197135,40809,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(197136,40809,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(197137,40809,'blocks_5_tabs_1_tab_content_actions',''),(197138,40809,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(197139,40809,'blocks_5_tabs_1_tab_content',''),(197140,40809,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(197141,40809,'blocks_5_tabs_1_tab_image',''),(197142,40809,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(197143,40809,'blocks_5_tabs_2_tab_label','Qualifications included'),(197144,40809,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(197145,40809,'blocks_5_tabs_2_tab_content_title',''),(197146,40809,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(197147,40809,'blocks_5_tabs_2_tab_content_heading',''),(197148,40809,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(197149,40809,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(197150,40809,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(197151,40809,'blocks_5_tabs_2_tab_content_actions',''),(197152,40809,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(197153,40809,'blocks_5_tabs_2_tab_content',''),(197154,40809,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(197155,40809,'blocks_5_tabs_2_tab_image',''),(197156,40809,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(197157,40809,'blocks_5_tabs','3'),(197158,40809,'_blocks_5_tabs','field_6177cff281419'),(197159,40809,'blocks_1_acfe_flexible_toggle',''),(197160,40809,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(197161,40809,'blocks_1_acfe_flexible_layout_title','Text Block'),(197162,40809,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(197163,40809,'blocks_1_options_theme','#ffffff'),(197164,40809,'_blocks_1_options_theme','field_6176830e2ad17'),(197165,40809,'blocks_1_options',''),(197166,40809,'_blocks_1_options','field_6176830e2ad16'),(197167,40809,'blocks_1_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(197168,40809,'_blocks_1_text_block_heading','field_617669d413097'),(197169,40809,'blocks_1_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(197170,40809,'_blocks_1_text_block_content','field_617669ec13098'),(197171,40809,'blocks_2_acfe_flexible_toggle',''),(197172,40809,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(197173,40809,'blocks_2_acfe_flexible_layout_title','Form'),(197174,40809,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(197175,40809,'blocks_2_row_content_format','standard'),(197176,40809,'_blocks_2_row_content_format','field_6481ead962881'),(197177,40809,'blocks_2_row_content_title',''),(197178,40809,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(197179,40809,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(197180,40809,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(197181,40809,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(197182,40809,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(197183,40809,'blocks_2_row_content_actions',''),(197184,40809,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(197185,40809,'blocks_2_row_content',''),(197186,40809,'_blocks_2_row_content','field_61a0f5f5b3db0'),(197187,40809,'blocks_2_row_form','40394'),(197188,40809,'_blocks_2_row_form','field_61a4ff2c0b08e'),(197189,40809,'blocks_2_row_form_button_label',''),(197190,40809,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(197191,40809,'blocks_3_acfe_flexible_toggle',''),(197192,40809,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(197193,40809,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(197194,40809,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(197195,40809,'blocks_3_options_theme','#ffffff'),(197196,40809,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(197197,40809,'blocks_3_options_reverse','0'),(197198,40809,'_blocks_3_options_reverse','field_61768049bb8ac'),(197199,40809,'blocks_3_options',''),(197200,40809,'_blocks_3_options','field_617682517c334'),(197201,40809,'blocks_3_split_5050_image','40785'),(197202,40809,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(197203,40809,'blocks_3_split_5050_video',''),(197204,40809,'_blocks_3_split_5050_video','field_6239f3160848a'),(197205,40809,'blocks_3_split_5050_content_title',''),(197206,40809,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(197207,40809,'blocks_3_split_5050_content_heading','Course Overview'),(197208,40809,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(197209,40809,'blocks_3_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(197210,40809,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(197211,40809,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(197212,40809,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(197213,40809,'blocks_3_split_5050_content_actions','1'),(197214,40809,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(197215,40809,'blocks_3_split_5050_content',''),(197216,40809,'_blocks_3_split_5050_content','field_61767afceb8ba'),(197217,40809,'blocks_4_acfe_flexible_toggle',''),(197218,40809,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(197219,40809,'blocks_4_acfe_flexible_layout_title','Template'),(197220,40809,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(197221,40809,'blocks_4_template','39207'),(197222,40809,'_blocks_4_template','field_617bdd570fe01'),(197223,40809,'blocks_6_acfe_flexible_toggle',''),(197224,40809,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(197225,40809,'blocks_6_acfe_flexible_layout_title','Icons'),(197226,40809,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(197227,40809,'blocks_6_options_theme','#f5f5f5'),(197228,40809,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(197229,40809,'blocks_6_options_format','stacked'),(197230,40809,'_blocks_6_options_format','field_64bfde9a90690'),(197231,40809,'blocks_6_options',''),(197232,40809,'_blocks_6_options','field_64bfdd9b90684'),(197233,40809,'blocks_6_row_content_title','Options available to pay for your course'),(197234,40809,'_blocks_6_row_content_title','field_64bfdd9b90687'),(197235,40809,'blocks_6_row_content_heading','Payment Options'),(197236,40809,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(197237,40809,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(197238,40809,'_blocks_6_row_content_text','field_64bfdd9b90689'),(197239,40809,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(197240,40809,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(197241,40809,'blocks_6_row_content_actions','1'),(197242,40809,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(197243,40809,'blocks_6_row_content',''),(197244,40809,'_blocks_6_row_content','field_64bfdd9b90686'),(197245,40809,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(197246,40809,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(197247,40809,'blocks_6_icon_row_items_0_label','Pay your course in full'),(197248,40809,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(197249,40809,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(197250,40809,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(197251,40809,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(197252,40809,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(197253,40809,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(197254,40809,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(197255,40809,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(197256,40809,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(197257,40809,'blocks_6_icon_row_items','2'),(197258,40809,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(197259,40809,'blocks_7_acfe_flexible_toggle',''),(197260,40809,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(197261,40809,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(197262,40809,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(197263,40809,'blocks_7_options_theme','#ffffff'),(197264,40809,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(197265,40809,'blocks_7_options_reverse','0'),(197266,40809,'_blocks_7_options_reverse','field_61768049bb8ac'),(197267,40809,'blocks_7_options',''),(197268,40809,'_blocks_7_options','field_617682517c334'),(197269,40809,'blocks_7_split_5050_image','40799'),(197270,40809,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(197271,40809,'blocks_7_split_5050_video',''),(197272,40809,'_blocks_7_split_5050_video','field_6239f3160848a'),(197273,40809,'blocks_7_split_5050_content_title',''),(197274,40809,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(197275,40809,'blocks_7_split_5050_content_heading','Course Information'),(197276,40809,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(197277,40809,'blocks_7_split_5050_content_text','<strong>Entry requirements:</strong>\r\n<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning format:</strong>\r\n<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Qualifications included:</strong>\r\n<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(197278,40809,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(197279,40809,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(197280,40809,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(197281,40809,'blocks_7_split_5050_content_actions','1'),(197282,40809,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(197283,40809,'blocks_7_split_5050_content',''),(197284,40809,'_blocks_7_split_5050_content','field_61767afceb8ba'),(197285,40780,'blocks_8_acfe_flexible_toggle',''),(197286,40780,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(197287,40780,'blocks_8_acfe_flexible_layout_title','Icons'),(197288,40780,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(197289,40780,'blocks_8_options_theme','#f5f5f5'),(197290,40780,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(197291,40780,'blocks_8_options_format','row'),(197292,40780,'_blocks_8_options_format','field_64bfde9a90690'),(197293,40780,'blocks_8_options',''),(197294,40780,'_blocks_8_options','field_64bfdd9b90684'),(197295,40780,'blocks_8_icon_row_items_0_icon','qualification.svg'),(197296,40780,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(197297,40780,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(197298,40780,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(197299,40780,'blocks_8_icon_row_items_0_text',''),(197300,40780,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(197301,40780,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(197302,40780,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(197303,40780,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(197304,40780,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(197305,40780,'blocks_8_icon_row_items_1_text',''),(197306,40780,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(197307,40780,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(197308,40780,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(197309,40780,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(197310,40780,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(197311,40780,'blocks_8_icon_row_items_2_text',''),(197312,40780,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(197313,40780,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(197314,40780,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(197315,40780,'blocks_8_icon_row_items_3_label','Flexible funding options'),(197316,40780,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(197317,40780,'blocks_8_icon_row_items_3_text',''),(197318,40780,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(197319,40780,'blocks_8_icon_row_items','4'),(197320,40780,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(197321,40810,'hide_hero','0'),(197322,40810,'_hide_hero','field_66a2380fcda39'),(197323,40810,'hero_title','Level 4 Personal Trainer Course'),(197324,40810,'_hero_title','field_617571fe285e8'),(197325,40810,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(197326,40810,'_hero_text','field_6175723c285e9'),(197327,40810,'hero_actions','1'),(197328,40810,'_hero_actions','field_61757270285ea'),(197329,40810,'hero_style','default'),(197330,40810,'_hero_style','field_62051d9dc5324'),(197331,40810,'_thumbnail_id','40782'),(197332,40810,'__thumbnail_id','field_617570855ddaf'),(197333,40810,'hero_image_pos_x','right'),(197334,40810,'_hero_image_pos_x','field_62ec3d05390bb'),(197335,40810,'hero_image_pos_y','top'),(197336,40810,'_hero_image_pos_y','field_62ec3d05390bc'),(197337,40810,'hero_image_pos',''),(197338,40810,'_hero_image_pos','field_62ec3d05390ba'),(197339,40810,'fft_hide_from_listings','0'),(197340,40810,'_fft_hide_from_listings','field_61f1320446ab2'),(197341,40810,'fft_page_format','default'),(197342,40810,'_fft_page_format','field_61ae213f1f218'),(197343,40810,'fft_hide_nav','0'),(197344,40810,'_fft_hide_nav','field_635bd5e43527c'),(197345,40810,'fft_hide_header_call_to_action','0'),(197346,40810,'_fft_hide_header_call_to_action','field_635bd6723527d'),(197347,40810,'fft_page_sitemap','0'),(197348,40810,'_fft_page_sitemap','field_61af9b34e8181'),(197349,40810,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";}'),(197350,40810,'_blocks','field_6176696113096'),(197351,40810,'course_label_text',''),(197352,40810,'_course_label_text','field_61e17babf71fa'),(197353,40810,'course_label',''),(197354,40810,'_course_label','field_61e12f92749a7'),(197355,40810,'course_description',''),(197356,40810,'_course_description','field_617ac5788e5e1'),(197357,40810,'course_key_info',''),(197358,40810,'_course_key_info','field_617ac6ad8e5e2'),(197359,40810,'course_included',''),(197360,40810,'_course_included','field_617ac6f08e5e4'),(197361,40810,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(197362,40810,'_hero_actions_0_button','field_61757281285eb'),(197363,40810,'blocks_0_acfe_flexible_toggle',''),(197364,40810,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(197365,40810,'blocks_0_acfe_flexible_layout_title','Icons'),(197366,40810,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(197367,40810,'blocks_0_options_theme','#b61234'),(197368,40810,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(197369,40810,'blocks_0_options_format','row'),(197370,40810,'_blocks_0_options_format','field_64bfde9a90690'),(197371,40810,'blocks_0_options',''),(197372,40810,'_blocks_0_options','field_64bfdd9b90684'),(197373,40810,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(197374,40810,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(197375,40810,'blocks_0_icon_row_items_0_label','Accreditation'),(197376,40810,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(197377,40810,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(197378,40810,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(197379,40810,'blocks_0_icon_row_items_1_icon','finance.svg'),(197380,40810,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(197381,40810,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(197382,40810,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(197383,40810,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(197384,40810,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(197385,40810,'blocks_0_icon_row_items_2_icon','progression.svg'),(197386,40810,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(197387,40810,'blocks_0_icon_row_items_2_label','Earning Potential'),(197388,40810,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(197389,40810,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(197390,40810,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(197391,40810,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(197392,40810,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(197393,40810,'blocks_0_icon_row_items_3_label','Qualification'),(197394,40810,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(197395,40810,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(197396,40810,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(197397,40810,'blocks_0_icon_row_items','4'),(197398,40810,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(197399,40810,'blocks_5_acfe_flexible_toggle','1'),(197400,40810,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(197401,40810,'blocks_5_acfe_flexible_layout_title','Tabs'),(197402,40810,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(197403,40810,'blocks_5_options_theme','#ffffff'),(197404,40810,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(197405,40810,'blocks_5_options',''),(197406,40810,'_blocks_5_options','field_6177cfcd8140f'),(197407,40810,'blocks_5_tabs_0_tab_label','Entry requirements'),(197408,40810,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(197409,40810,'blocks_5_tabs_0_tab_content_title',''),(197410,40810,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(197411,40810,'blocks_5_tabs_0_tab_content_heading',''),(197412,40810,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(197413,40810,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(197414,40810,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(197415,40810,'blocks_5_tabs_0_tab_content_actions',''),(197416,40810,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(197417,40810,'blocks_5_tabs_0_tab_content',''),(197418,40810,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(197419,40810,'blocks_5_tabs_0_tab_image',''),(197420,40810,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(197421,40810,'blocks_5_tabs_1_tab_label','Learning format'),(197422,40810,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(197423,40810,'blocks_5_tabs_1_tab_content_title',''),(197424,40810,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(197425,40810,'blocks_5_tabs_1_tab_content_heading',''),(197426,40810,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(197427,40810,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(197428,40810,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(197429,40810,'blocks_5_tabs_1_tab_content_actions',''),(197430,40810,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(197431,40810,'blocks_5_tabs_1_tab_content',''),(197432,40810,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(197433,40810,'blocks_5_tabs_1_tab_image',''),(197434,40810,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(197435,40810,'blocks_5_tabs_2_tab_label','Qualifications included'),(197436,40810,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(197437,40810,'blocks_5_tabs_2_tab_content_title',''),(197438,40810,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(197439,40810,'blocks_5_tabs_2_tab_content_heading',''),(197440,40810,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(197441,40810,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(197442,40810,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(197443,40810,'blocks_5_tabs_2_tab_content_actions',''),(197444,40810,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(197445,40810,'blocks_5_tabs_2_tab_content',''),(197446,40810,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(197447,40810,'blocks_5_tabs_2_tab_image',''),(197448,40810,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(197449,40810,'blocks_5_tabs','3'),(197450,40810,'_blocks_5_tabs','field_6177cff281419'),(197451,40810,'blocks_1_acfe_flexible_toggle',''),(197452,40810,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(197453,40810,'blocks_1_acfe_flexible_layout_title','Text Block'),(197454,40810,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(197455,40810,'blocks_1_options_theme','#ffffff'),(197456,40810,'_blocks_1_options_theme','field_6176830e2ad17'),(197457,40810,'blocks_1_options',''),(197458,40810,'_blocks_1_options','field_6176830e2ad16'),(197459,40810,'blocks_1_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(197460,40810,'_blocks_1_text_block_heading','field_617669d413097'),(197461,40810,'blocks_1_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(197462,40810,'_blocks_1_text_block_content','field_617669ec13098'),(197463,40810,'blocks_2_acfe_flexible_toggle',''),(197464,40810,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(197465,40810,'blocks_2_acfe_flexible_layout_title','Form'),(197466,40810,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(197467,40810,'blocks_2_row_content_format','standard'),(197468,40810,'_blocks_2_row_content_format','field_6481ead962881'),(197469,40810,'blocks_2_row_content_title',''),(197470,40810,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(197471,40810,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(197472,40810,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(197473,40810,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(197474,40810,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(197475,40810,'blocks_2_row_content_actions',''),(197476,40810,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(197477,40810,'blocks_2_row_content',''),(197478,40810,'_blocks_2_row_content','field_61a0f5f5b3db0'),(197479,40810,'blocks_2_row_form','40394'),(197480,40810,'_blocks_2_row_form','field_61a4ff2c0b08e'),(197481,40810,'blocks_2_row_form_button_label',''),(197482,40810,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(197483,40810,'blocks_3_acfe_flexible_toggle',''),(197484,40810,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(197485,40810,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(197486,40810,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(197487,40810,'blocks_3_options_theme','#ffffff'),(197488,40810,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(197489,40810,'blocks_3_options_reverse','0'),(197490,40810,'_blocks_3_options_reverse','field_61768049bb8ac'),(197491,40810,'blocks_3_options',''),(197492,40810,'_blocks_3_options','field_617682517c334'),(197493,40810,'blocks_3_split_5050_image','40785'),(197494,40810,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(197495,40810,'blocks_3_split_5050_video',''),(197496,40810,'_blocks_3_split_5050_video','field_6239f3160848a'),(197497,40810,'blocks_3_split_5050_content_title',''),(197498,40810,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(197499,40810,'blocks_3_split_5050_content_heading','Course Overview'),(197500,40810,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(197501,40810,'blocks_3_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(197502,40810,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(197503,40810,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(197504,40810,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(197505,40810,'blocks_3_split_5050_content_actions','1'),(197506,40810,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(197507,40810,'blocks_3_split_5050_content',''),(197508,40810,'_blocks_3_split_5050_content','field_61767afceb8ba'),(197509,40810,'blocks_4_acfe_flexible_toggle',''),(197510,40810,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(197511,40810,'blocks_4_acfe_flexible_layout_title','Template'),(197512,40810,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(197513,40810,'blocks_4_template','39207'),(197514,40810,'_blocks_4_template','field_617bdd570fe01'),(197515,40810,'blocks_6_acfe_flexible_toggle',''),(197516,40810,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(197517,40810,'blocks_6_acfe_flexible_layout_title','Icons'),(197518,40810,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(197519,40810,'blocks_6_options_theme','#f5f5f5'),(197520,40810,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(197521,40810,'blocks_6_options_format','stacked'),(197522,40810,'_blocks_6_options_format','field_64bfde9a90690'),(197523,40810,'blocks_6_options',''),(197524,40810,'_blocks_6_options','field_64bfdd9b90684'),(197525,40810,'blocks_6_row_content_title','Options available to pay for your course'),(197526,40810,'_blocks_6_row_content_title','field_64bfdd9b90687'),(197527,40810,'blocks_6_row_content_heading','Payment Options'),(197528,40810,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(197529,40810,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(197530,40810,'_blocks_6_row_content_text','field_64bfdd9b90689'),(197531,40810,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(197532,40810,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(197533,40810,'blocks_6_row_content_actions','1'),(197534,40810,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(197535,40810,'blocks_6_row_content',''),(197536,40810,'_blocks_6_row_content','field_64bfdd9b90686'),(197537,40810,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(197538,40810,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(197539,40810,'blocks_6_icon_row_items_0_label','Pay your course in full'),(197540,40810,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(197541,40810,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(197542,40810,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(197543,40810,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(197544,40810,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(197545,40810,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(197546,40810,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(197547,40810,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(197548,40810,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(197549,40810,'blocks_6_icon_row_items','2'),(197550,40810,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(197551,40810,'blocks_7_acfe_flexible_toggle',''),(197552,40810,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(197553,40810,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(197554,40810,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(197555,40810,'blocks_7_options_theme','#ffffff'),(197556,40810,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(197557,40810,'blocks_7_options_reverse','0'),(197558,40810,'_blocks_7_options_reverse','field_61768049bb8ac'),(197559,40810,'blocks_7_options',''),(197560,40810,'_blocks_7_options','field_617682517c334'),(197561,40810,'blocks_7_split_5050_image','40799'),(197562,40810,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(197563,40810,'blocks_7_split_5050_video',''),(197564,40810,'_blocks_7_split_5050_video','field_6239f3160848a'),(197565,40810,'blocks_7_split_5050_content_title',''),(197566,40810,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(197567,40810,'blocks_7_split_5050_content_heading','Course Information'),(197568,40810,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(197569,40810,'blocks_7_split_5050_content_text','<strong>Entry requirements:</strong>\r\n<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning format:</strong>\r\n<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Qualifications included:</strong>\r\n<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(197570,40810,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(197571,40810,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(197572,40810,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(197573,40810,'blocks_7_split_5050_content_actions','1'),(197574,40810,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(197575,40810,'blocks_7_split_5050_content',''),(197576,40810,'_blocks_7_split_5050_content','field_61767afceb8ba'),(197577,40810,'blocks_8_acfe_flexible_toggle',''),(197578,40810,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(197579,40810,'blocks_8_acfe_flexible_layout_title','Icons'),(197580,40810,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(197581,40810,'blocks_8_options_theme','#f5f5f5'),(197582,40810,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(197583,40810,'blocks_8_options_format','row'),(197584,40810,'_blocks_8_options_format','field_64bfde9a90690'),(197585,40810,'blocks_8_options',''),(197586,40810,'_blocks_8_options','field_64bfdd9b90684'),(197587,40810,'blocks_8_icon_row_items_0_icon','qualification.svg'),(197588,40810,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(197589,40810,'blocks_8_icon_row_items_0_label',''),(197590,40810,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(197591,40810,'blocks_8_icon_row_items_0_text','Learn from industry experts'),(197592,40810,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(197593,40810,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(197594,40810,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(197595,40810,'blocks_8_icon_row_items_1_label',''),(197596,40810,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(197597,40810,'blocks_8_icon_row_items_1_text','Increase your earning potential'),(197598,40810,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(197599,40810,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(197600,40810,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(197601,40810,'blocks_8_icon_row_items_2_label',''),(197602,40810,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(197603,40810,'blocks_8_icon_row_items_2_text','Face-to-face workshops'),(197604,40810,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(197605,40810,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(197606,40810,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(197607,40810,'blocks_8_icon_row_items_3_label',''),(197608,40810,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(197609,40810,'blocks_8_icon_row_items_3_text','Flexible funding options'),(197610,40810,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(197611,40810,'blocks_8_icon_row_items','4'),(197612,40810,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(197613,40811,'hide_hero','0'),(197614,40811,'_hide_hero','field_66a2380fcda39'),(197615,40811,'hero_title','Level 4 Personal Trainer Course'),(197616,40811,'_hero_title','field_617571fe285e8'),(197617,40811,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(197618,40811,'_hero_text','field_6175723c285e9'),(197619,40811,'hero_actions','1'),(197620,40811,'_hero_actions','field_61757270285ea'),(197621,40811,'hero_style','default'),(197622,40811,'_hero_style','field_62051d9dc5324'),(197623,40811,'_thumbnail_id','40782'),(197624,40811,'__thumbnail_id','field_617570855ddaf'),(197625,40811,'hero_image_pos_x','right'),(197626,40811,'_hero_image_pos_x','field_62ec3d05390bb'),(197627,40811,'hero_image_pos_y','top'),(197628,40811,'_hero_image_pos_y','field_62ec3d05390bc'),(197629,40811,'hero_image_pos',''),(197630,40811,'_hero_image_pos','field_62ec3d05390ba'),(197631,40811,'fft_hide_from_listings','0'),(197632,40811,'_fft_hide_from_listings','field_61f1320446ab2'),(197633,40811,'fft_page_format','default'),(197634,40811,'_fft_page_format','field_61ae213f1f218'),(197635,40811,'fft_hide_nav','0'),(197636,40811,'_fft_hide_nav','field_635bd5e43527c'),(197637,40811,'fft_hide_header_call_to_action','0'),(197638,40811,'_fft_hide_header_call_to_action','field_635bd6723527d'),(197639,40811,'fft_page_sitemap','0'),(197640,40811,'_fft_page_sitemap','field_61af9b34e8181'),(197641,40811,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";}'),(197642,40811,'_blocks','field_6176696113096'),(197643,40811,'course_label_text',''),(197644,40811,'_course_label_text','field_61e17babf71fa'),(197645,40811,'course_label',''),(197646,40811,'_course_label','field_61e12f92749a7'),(197647,40811,'course_description',''),(197648,40811,'_course_description','field_617ac5788e5e1'),(197649,40811,'course_key_info',''),(197650,40811,'_course_key_info','field_617ac6ad8e5e2'),(197651,40811,'course_included',''),(197652,40811,'_course_included','field_617ac6f08e5e4'),(197653,40811,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(197654,40811,'_hero_actions_0_button','field_61757281285eb'),(197655,40811,'blocks_0_acfe_flexible_toggle',''),(197656,40811,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(197657,40811,'blocks_0_acfe_flexible_layout_title','Icons'),(197658,40811,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(197659,40811,'blocks_0_options_theme','#b61234'),(197660,40811,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(197661,40811,'blocks_0_options_format','row'),(197662,40811,'_blocks_0_options_format','field_64bfde9a90690'),(197663,40811,'blocks_0_options',''),(197664,40811,'_blocks_0_options','field_64bfdd9b90684'),(197665,40811,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(197666,40811,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(197667,40811,'blocks_0_icon_row_items_0_label','Accreditation'),(197668,40811,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(197669,40811,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(197670,40811,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(197671,40811,'blocks_0_icon_row_items_1_icon','finance.svg'),(197672,40811,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(197673,40811,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(197674,40811,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(197675,40811,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(197676,40811,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(197677,40811,'blocks_0_icon_row_items_2_icon','progression.svg'),(197678,40811,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(197679,40811,'blocks_0_icon_row_items_2_label','Earning Potential'),(197680,40811,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(197681,40811,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(197682,40811,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(197683,40811,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(197684,40811,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(197685,40811,'blocks_0_icon_row_items_3_label','Qualification'),(197686,40811,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(197687,40811,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(197688,40811,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(197689,40811,'blocks_0_icon_row_items','4'),(197690,40811,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(197691,40811,'blocks_5_acfe_flexible_toggle','1'),(197692,40811,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(197693,40811,'blocks_5_acfe_flexible_layout_title','Tabs'),(197694,40811,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(197695,40811,'blocks_5_options_theme','#ffffff'),(197696,40811,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(197697,40811,'blocks_5_options',''),(197698,40811,'_blocks_5_options','field_6177cfcd8140f'),(197699,40811,'blocks_5_tabs_0_tab_label','Entry requirements'),(197700,40811,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(197701,40811,'blocks_5_tabs_0_tab_content_title',''),(197702,40811,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(197703,40811,'blocks_5_tabs_0_tab_content_heading',''),(197704,40811,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(197705,40811,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(197706,40811,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(197707,40811,'blocks_5_tabs_0_tab_content_actions',''),(197708,40811,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(197709,40811,'blocks_5_tabs_0_tab_content',''),(197710,40811,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(197711,40811,'blocks_5_tabs_0_tab_image',''),(197712,40811,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(197713,40811,'blocks_5_tabs_1_tab_label','Learning format'),(197714,40811,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(197715,40811,'blocks_5_tabs_1_tab_content_title',''),(197716,40811,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(197717,40811,'blocks_5_tabs_1_tab_content_heading',''),(197718,40811,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(197719,40811,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(197720,40811,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(197721,40811,'blocks_5_tabs_1_tab_content_actions',''),(197722,40811,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(197723,40811,'blocks_5_tabs_1_tab_content',''),(197724,40811,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(197725,40811,'blocks_5_tabs_1_tab_image',''),(197726,40811,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(197727,40811,'blocks_5_tabs_2_tab_label','Qualifications included'),(197728,40811,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(197729,40811,'blocks_5_tabs_2_tab_content_title',''),(197730,40811,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(197731,40811,'blocks_5_tabs_2_tab_content_heading',''),(197732,40811,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(197733,40811,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(197734,40811,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(197735,40811,'blocks_5_tabs_2_tab_content_actions',''),(197736,40811,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(197737,40811,'blocks_5_tabs_2_tab_content',''),(197738,40811,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(197739,40811,'blocks_5_tabs_2_tab_image',''),(197740,40811,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(197741,40811,'blocks_5_tabs','3'),(197742,40811,'_blocks_5_tabs','field_6177cff281419'),(197743,40811,'blocks_1_acfe_flexible_toggle',''),(197744,40811,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(197745,40811,'blocks_1_acfe_flexible_layout_title','Text Block'),(197746,40811,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(197747,40811,'blocks_1_options_theme','#ffffff'),(197748,40811,'_blocks_1_options_theme','field_6176830e2ad17'),(197749,40811,'blocks_1_options',''),(197750,40811,'_blocks_1_options','field_6176830e2ad16'),(197751,40811,'blocks_1_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(197752,40811,'_blocks_1_text_block_heading','field_617669d413097'),(197753,40811,'blocks_1_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(197754,40811,'_blocks_1_text_block_content','field_617669ec13098'),(197755,40811,'blocks_2_acfe_flexible_toggle',''),(197756,40811,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(197757,40811,'blocks_2_acfe_flexible_layout_title','Form'),(197758,40811,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(197759,40811,'blocks_2_row_content_format','standard'),(197760,40811,'_blocks_2_row_content_format','field_6481ead962881'),(197761,40811,'blocks_2_row_content_title',''),(197762,40811,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(197763,40811,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(197764,40811,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(197765,40811,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(197766,40811,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(197767,40811,'blocks_2_row_content_actions',''),(197768,40811,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(197769,40811,'blocks_2_row_content',''),(197770,40811,'_blocks_2_row_content','field_61a0f5f5b3db0'),(197771,40811,'blocks_2_row_form','40394'),(197772,40811,'_blocks_2_row_form','field_61a4ff2c0b08e'),(197773,40811,'blocks_2_row_form_button_label',''),(197774,40811,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(197775,40811,'blocks_3_acfe_flexible_toggle',''),(197776,40811,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(197777,40811,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(197778,40811,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(197779,40811,'blocks_3_options_theme','#ffffff'),(197780,40811,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(197781,40811,'blocks_3_options_reverse','0'),(197782,40811,'_blocks_3_options_reverse','field_61768049bb8ac'),(197783,40811,'blocks_3_options',''),(197784,40811,'_blocks_3_options','field_617682517c334'),(197785,40811,'blocks_3_split_5050_image','40785'),(197786,40811,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(197787,40811,'blocks_3_split_5050_video',''),(197788,40811,'_blocks_3_split_5050_video','field_6239f3160848a'),(197789,40811,'blocks_3_split_5050_content_title',''),(197790,40811,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(197791,40811,'blocks_3_split_5050_content_heading','Course Overview'),(197792,40811,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(197793,40811,'blocks_3_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(197794,40811,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(197795,40811,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(197796,40811,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(197797,40811,'blocks_3_split_5050_content_actions','1'),(197798,40811,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(197799,40811,'blocks_3_split_5050_content',''),(197800,40811,'_blocks_3_split_5050_content','field_61767afceb8ba'),(197801,40811,'blocks_4_acfe_flexible_toggle',''),(197802,40811,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(197803,40811,'blocks_4_acfe_flexible_layout_title','Template'),(197804,40811,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(197805,40811,'blocks_4_template','39207'),(197806,40811,'_blocks_4_template','field_617bdd570fe01'),(197807,40811,'blocks_6_acfe_flexible_toggle',''),(197808,40811,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(197809,40811,'blocks_6_acfe_flexible_layout_title','Icons'),(197810,40811,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(197811,40811,'blocks_6_options_theme','#f5f5f5'),(197812,40811,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(197813,40811,'blocks_6_options_format','stacked'),(197814,40811,'_blocks_6_options_format','field_64bfde9a90690'),(197815,40811,'blocks_6_options',''),(197816,40811,'_blocks_6_options','field_64bfdd9b90684'),(197817,40811,'blocks_6_row_content_title','Options available to pay for your course'),(197818,40811,'_blocks_6_row_content_title','field_64bfdd9b90687'),(197819,40811,'blocks_6_row_content_heading','Payment Options'),(197820,40811,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(197821,40811,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(197822,40811,'_blocks_6_row_content_text','field_64bfdd9b90689'),(197823,40811,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(197824,40811,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(197825,40811,'blocks_6_row_content_actions','1'),(197826,40811,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(197827,40811,'blocks_6_row_content',''),(197828,40811,'_blocks_6_row_content','field_64bfdd9b90686'),(197829,40811,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(197830,40811,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(197831,40811,'blocks_6_icon_row_items_0_label','Pay your course in full'),(197832,40811,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(197833,40811,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(197834,40811,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(197835,40811,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(197836,40811,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(197837,40811,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(197838,40811,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(197839,40811,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(197840,40811,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(197841,40811,'blocks_6_icon_row_items','2'),(197842,40811,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(197843,40811,'blocks_7_acfe_flexible_toggle',''),(197844,40811,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(197845,40811,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(197846,40811,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(197847,40811,'blocks_7_options_theme','#ffffff'),(197848,40811,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(197849,40811,'blocks_7_options_reverse','0'),(197850,40811,'_blocks_7_options_reverse','field_61768049bb8ac'),(197851,40811,'blocks_7_options',''),(197852,40811,'_blocks_7_options','field_617682517c334'),(197853,40811,'blocks_7_split_5050_image','40799'),(197854,40811,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(197855,40811,'blocks_7_split_5050_video',''),(197856,40811,'_blocks_7_split_5050_video','field_6239f3160848a'),(197857,40811,'blocks_7_split_5050_content_title',''),(197858,40811,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(197859,40811,'blocks_7_split_5050_content_heading','Course Information'),(197860,40811,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(197861,40811,'blocks_7_split_5050_content_text','<strong>Entry requirements:</strong>\r\n<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning format:</strong>\r\n<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Qualifications included:</strong>\r\n<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(197862,40811,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(197863,40811,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(197864,40811,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(197865,40811,'blocks_7_split_5050_content_actions','1'),(197866,40811,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(197867,40811,'blocks_7_split_5050_content',''),(197868,40811,'_blocks_7_split_5050_content','field_61767afceb8ba'),(197869,40811,'blocks_8_acfe_flexible_toggle',''),(197870,40811,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(197871,40811,'blocks_8_acfe_flexible_layout_title','Icons'),(197872,40811,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(197873,40811,'blocks_8_options_theme','#f5f5f5'),(197874,40811,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(197875,40811,'blocks_8_options_format','row'),(197876,40811,'_blocks_8_options_format','field_64bfde9a90690'),(197877,40811,'blocks_8_options',''),(197878,40811,'_blocks_8_options','field_64bfdd9b90684'),(197879,40811,'blocks_8_icon_row_items_0_icon','qualification.svg'),(197880,40811,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(197881,40811,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(197882,40811,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(197883,40811,'blocks_8_icon_row_items_0_text',''),(197884,40811,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(197885,40811,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(197886,40811,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(197887,40811,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(197888,40811,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(197889,40811,'blocks_8_icon_row_items_1_text',''),(197890,40811,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(197891,40811,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(197892,40811,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(197893,40811,'blocks_8_icon_row_items_2_label','Face-to-face workshops'),(197894,40811,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(197895,40811,'blocks_8_icon_row_items_2_text',''),(197896,40811,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(197897,40811,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(197898,40811,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(197899,40811,'blocks_8_icon_row_items_3_label','Flexible funding options'),(197900,40811,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(197901,40811,'blocks_8_icon_row_items_3_text',''),(197902,40811,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(197903,40811,'blocks_8_icon_row_items','4'),(197904,40811,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(197905,40812,'_wp_attached_file','2024/09/Level-4-PT-50.50-3-IMAGE.webp'),(197906,40812,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2024/09/Level-4-PT-50.50-3-IMAGE.webp\";s:8:\"filesize\";i:52510;s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Level-4-PT-50.50-3-IMAGE-400x267.webp\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Level-4-PT-50.50-3-IMAGE-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:53068;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:37:\"Level-4-PT-50.50-3-IMAGE-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:25438;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:37:\"Level-4-PT-50.50-3-IMAGE-400x266.webp\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:21222;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:37:\"Level-4-PT-50.50-3-IMAGE-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:18800;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:37:\"Level-4-PT-50.50-3-IMAGE-675x600.webp\";s:5:\"width\";i:675;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:49704;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:37:\"Level-4-PT-50.50-3-IMAGE-400x300.webp\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22606;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:37:\"Level-4-PT-50.50-3-IMAGE-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19264;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:37:\"Level-4-PT-50.50-3-IMAGE-900x506.webp\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:63226;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(197907,40780,'blocks_9_acfe_flexible_toggle',''),(197908,40780,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(197909,40780,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(197910,40780,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(197911,40780,'blocks_9_options_theme','#ffffff'),(197912,40780,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(197913,40780,'blocks_9_options_reverse','1'),(197914,40780,'_blocks_9_options_reverse','field_61768049bb8ac'),(197915,40780,'blocks_9_options',''),(197916,40780,'_blocks_9_options','field_617682517c334'),(197917,40780,'blocks_9_split_5050_image','39224'),(197918,40780,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(197919,40780,'blocks_9_split_5050_video',''),(197920,40780,'_blocks_9_split_5050_video','field_6239f3160848a'),(197921,40780,'blocks_9_split_5050_content_title','Locations'),(197922,40780,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(197923,40780,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(197924,40780,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(197925,40780,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(197926,40780,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(197927,40780,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(197928,40780,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(197929,40780,'blocks_9_split_5050_content_actions','1'),(197930,40780,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(197931,40780,'blocks_9_split_5050_content',''),(197932,40780,'_blocks_9_split_5050_content','field_61767afceb8ba'),(197933,40813,'hide_hero','0'),(197934,40813,'_hide_hero','field_66a2380fcda39'),(197935,40813,'hero_title','Level 4 Personal Trainer Course'),(197936,40813,'_hero_title','field_617571fe285e8'),(197937,40813,'hero_text','Take your fitness career to the next level. Complete this course to become a top-tier Personal Trainer, equipped with specialised knowledge and the most coveted skills in the industry.'),(197938,40813,'_hero_text','field_6175723c285e9'),(197939,40813,'hero_actions','1'),(197940,40813,'_hero_actions','field_61757270285ea'),(197941,40813,'hero_style','default'),(197942,40813,'_hero_style','field_62051d9dc5324'),(197943,40813,'_thumbnail_id','40782'),(197944,40813,'__thumbnail_id','field_617570855ddaf'),(197945,40813,'hero_image_pos_x','right'),(197946,40813,'_hero_image_pos_x','field_62ec3d05390bb'),(197947,40813,'hero_image_pos_y','top'),(197948,40813,'_hero_image_pos_y','field_62ec3d05390bc'),(197949,40813,'hero_image_pos',''),(197950,40813,'_hero_image_pos','field_62ec3d05390ba'),(197951,40813,'fft_hide_from_listings','0'),(197952,40813,'_fft_hide_from_listings','field_61f1320446ab2'),(197953,40813,'fft_page_format','default'),(197954,40813,'_fft_page_format','field_61ae213f1f218'),(197955,40813,'fft_hide_nav','0'),(197956,40813,'_fft_hide_nav','field_635bd5e43527c'),(197957,40813,'fft_hide_header_call_to_action','0'),(197958,40813,'_fft_hide_header_call_to_action','field_635bd6723527d'),(197959,40813,'fft_page_sitemap','0'),(197960,40813,'_fft_page_sitemap','field_61af9b34e8181'),(197961,40813,'blocks','a:10:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";}'),(197962,40813,'_blocks','field_6176696113096'),(197963,40813,'course_label_text',''),(197964,40813,'_course_label_text','field_61e17babf71fa'),(197965,40813,'course_label',''),(197966,40813,'_course_label','field_61e12f92749a7'),(197967,40813,'course_description',''),(197968,40813,'_course_description','field_617ac5788e5e1'),(197969,40813,'course_key_info',''),(197970,40813,'_course_key_info','field_617ac6ad8e5e2'),(197971,40813,'course_included',''),(197972,40813,'_course_included','field_617ac6f08e5e4'),(197973,40813,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(197974,40813,'_hero_actions_0_button','field_61757281285eb'),(197975,40813,'blocks_0_acfe_flexible_toggle',''),(197976,40813,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(197977,40813,'blocks_0_acfe_flexible_layout_title','Icons'),(197978,40813,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(197979,40813,'blocks_0_options_theme','#b61234'),(197980,40813,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(197981,40813,'blocks_0_options_format','row'),(197982,40813,'_blocks_0_options_format','field_64bfde9a90690'),(197983,40813,'blocks_0_options',''),(197984,40813,'_blocks_0_options','field_64bfdd9b90684'),(197985,40813,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(197986,40813,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(197987,40813,'blocks_0_icon_row_items_0_label','Accreditation'),(197988,40813,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(197989,40813,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(197990,40813,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(197991,40813,'blocks_0_icon_row_items_1_icon','finance.svg'),(197992,40813,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(197993,40813,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(197994,40813,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(197995,40813,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(197996,40813,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(197997,40813,'blocks_0_icon_row_items_2_icon','progression.svg'),(197998,40813,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(197999,40813,'blocks_0_icon_row_items_2_label','Earning Potential'),(198000,40813,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(198001,40813,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(198002,40813,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(198003,40813,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(198004,40813,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(198005,40813,'blocks_0_icon_row_items_3_label','Qualification'),(198006,40813,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(198007,40813,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer'),(198008,40813,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(198009,40813,'blocks_0_icon_row_items','4'),(198010,40813,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(198011,40813,'blocks_5_acfe_flexible_toggle','1'),(198012,40813,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(198013,40813,'blocks_5_acfe_flexible_layout_title','Tabs'),(198014,40813,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(198015,40813,'blocks_5_options_theme','#ffffff'),(198016,40813,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(198017,40813,'blocks_5_options',''),(198018,40813,'_blocks_5_options','field_6177cfcd8140f'),(198019,40813,'blocks_5_tabs_0_tab_label','Entry requirements'),(198020,40813,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(198021,40813,'blocks_5_tabs_0_tab_content_title',''),(198022,40813,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(198023,40813,'blocks_5_tabs_0_tab_content_heading',''),(198024,40813,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(198025,40813,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(198026,40813,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(198027,40813,'blocks_5_tabs_0_tab_content_actions',''),(198028,40813,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(198029,40813,'blocks_5_tabs_0_tab_content',''),(198030,40813,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(198031,40813,'blocks_5_tabs_0_tab_image',''),(198032,40813,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(198033,40813,'blocks_5_tabs_1_tab_label','Learning format'),(198034,40813,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(198035,40813,'blocks_5_tabs_1_tab_content_title',''),(198036,40813,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(198037,40813,'blocks_5_tabs_1_tab_content_heading',''),(198038,40813,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(198039,40813,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(198040,40813,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(198041,40813,'blocks_5_tabs_1_tab_content_actions',''),(198042,40813,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(198043,40813,'blocks_5_tabs_1_tab_content',''),(198044,40813,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(198045,40813,'blocks_5_tabs_1_tab_image',''),(198046,40813,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(198047,40813,'blocks_5_tabs_2_tab_label','Qualifications included'),(198048,40813,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(198049,40813,'blocks_5_tabs_2_tab_content_title',''),(198050,40813,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(198051,40813,'blocks_5_tabs_2_tab_content_heading',''),(198052,40813,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(198053,40813,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(198054,40813,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(198055,40813,'blocks_5_tabs_2_tab_content_actions',''),(198056,40813,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(198057,40813,'blocks_5_tabs_2_tab_content',''),(198058,40813,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(198059,40813,'blocks_5_tabs_2_tab_image',''),(198060,40813,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(198061,40813,'blocks_5_tabs','3'),(198062,40813,'_blocks_5_tabs','field_6177cff281419'),(198063,40813,'blocks_1_acfe_flexible_toggle',''),(198064,40813,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(198065,40813,'blocks_1_acfe_flexible_layout_title','Text Block'),(198066,40813,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(198067,40813,'blocks_1_options_theme','#ffffff'),(198068,40813,'_blocks_1_options_theme','field_6176830e2ad17'),(198069,40813,'blocks_1_options',''),(198070,40813,'_blocks_1_options','field_6176830e2ad16'),(198071,40813,'blocks_1_text_block_heading','Unlock Advanced Expertise and Transform Your Career '),(198072,40813,'_blocks_1_text_block_heading','field_617669d413097'),(198073,40813,'blocks_1_text_block_content','Our Level 4 Personal Trainer course is meticulously designed to propel you to the pinnacle of personal training excellence. This comprehensive programme goes beyond the basics, equipping you with advanced skills and knowledge to set you apart in the fitness industry.'),(198074,40813,'_blocks_1_text_block_content','field_617669ec13098'),(198075,40813,'blocks_2_acfe_flexible_toggle',''),(198076,40813,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(198077,40813,'blocks_2_acfe_flexible_layout_title','Form'),(198078,40813,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(198079,40813,'blocks_2_row_content_format','standard'),(198080,40813,'_blocks_2_row_content_format','field_6481ead962881'),(198081,40813,'blocks_2_row_content_title',''),(198082,40813,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(198083,40813,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(198084,40813,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(198085,40813,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(198086,40813,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(198087,40813,'blocks_2_row_content_actions',''),(198088,40813,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(198089,40813,'blocks_2_row_content',''),(198090,40813,'_blocks_2_row_content','field_61a0f5f5b3db0'),(198091,40813,'blocks_2_row_form','40394'),(198092,40813,'_blocks_2_row_form','field_61a4ff2c0b08e'),(198093,40813,'blocks_2_row_form_button_label',''),(198094,40813,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(198095,40813,'blocks_3_acfe_flexible_toggle',''),(198096,40813,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(198097,40813,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(198098,40813,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(198099,40813,'blocks_3_options_theme','#ffffff'),(198100,40813,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(198101,40813,'blocks_3_options_reverse','0'),(198102,40813,'_blocks_3_options_reverse','field_61768049bb8ac'),(198103,40813,'blocks_3_options',''),(198104,40813,'_blocks_3_options','field_617682517c334'),(198105,40813,'blocks_3_split_5050_image','40785'),(198106,40813,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(198107,40813,'blocks_3_split_5050_video',''),(198108,40813,'_blocks_3_split_5050_video','field_6239f3160848a'),(198109,40813,'blocks_3_split_5050_content_title',''),(198110,40813,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(198111,40813,'blocks_3_split_5050_content_heading','Course Overview'),(198112,40813,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(198113,40813,'blocks_3_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(198114,40813,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(198115,40813,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(198116,40813,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(198117,40813,'blocks_3_split_5050_content_actions','1'),(198118,40813,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(198119,40813,'blocks_3_split_5050_content',''),(198120,40813,'_blocks_3_split_5050_content','field_61767afceb8ba'),(198121,40813,'blocks_4_acfe_flexible_toggle',''),(198122,40813,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(198123,40813,'blocks_4_acfe_flexible_layout_title','Template'),(198124,40813,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(198125,40813,'blocks_4_template','39207'),(198126,40813,'_blocks_4_template','field_617bdd570fe01'),(198127,40813,'blocks_6_acfe_flexible_toggle',''),(198128,40813,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(198129,40813,'blocks_6_acfe_flexible_layout_title','Icons'),(198130,40813,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(198131,40813,'blocks_6_options_theme','#f5f5f5'),(198132,40813,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(198133,40813,'blocks_6_options_format','stacked'),(198134,40813,'_blocks_6_options_format','field_64bfde9a90690'),(198135,40813,'blocks_6_options',''),(198136,40813,'_blocks_6_options','field_64bfdd9b90684'),(198137,40813,'blocks_6_row_content_title','Options available to pay for your course'),(198138,40813,'_blocks_6_row_content_title','field_64bfdd9b90687'),(198139,40813,'blocks_6_row_content_heading','Payment Options'),(198140,40813,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(198141,40813,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(198142,40813,'_blocks_6_row_content_text','field_64bfdd9b90689'),(198143,40813,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(198144,40813,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(198145,40813,'blocks_6_row_content_actions','1'),(198146,40813,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(198147,40813,'blocks_6_row_content',''),(198148,40813,'_blocks_6_row_content','field_64bfdd9b90686'),(198149,40813,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(198150,40813,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(198151,40813,'blocks_6_icon_row_items_0_label','Pay your course in full'),(198152,40813,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(198153,40813,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(198154,40813,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(198155,40813,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(198156,40813,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(198157,40813,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(198158,40813,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(198159,40813,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(198160,40813,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(198161,40813,'blocks_6_icon_row_items','2'),(198162,40813,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(198163,40813,'blocks_7_acfe_flexible_toggle',''),(198164,40813,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(198165,40813,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(198166,40813,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(198167,40813,'blocks_7_options_theme','#ffffff'),(198168,40813,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(198169,40813,'blocks_7_options_reverse','0'),(198170,40813,'_blocks_7_options_reverse','field_61768049bb8ac'),(198171,40813,'blocks_7_options',''),(198172,40813,'_blocks_7_options','field_617682517c334'),(198173,40813,'blocks_7_split_5050_image','40799'),(198174,40813,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(198175,40813,'blocks_7_split_5050_video',''),(198176,40813,'_blocks_7_split_5050_video','field_6239f3160848a'),(198177,40813,'blocks_7_split_5050_content_title',''),(198178,40813,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(198179,40813,'blocks_7_split_5050_content_heading','Course Information'),(198180,40813,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(198181,40813,'blocks_7_split_5050_content_text','<strong>Entry requirements:</strong>\r\n<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning format:</strong>\r\n<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Qualifications included:</strong>\r\n<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(198182,40813,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(198183,40813,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(198184,40813,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(198185,40813,'blocks_7_split_5050_content_actions','1'),(198186,40813,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(198187,40813,'blocks_7_split_5050_content',''),(198188,40813,'_blocks_7_split_5050_content','field_61767afceb8ba'),(198189,40813,'blocks_8_acfe_flexible_toggle',''),(198190,40813,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(198191,40813,'blocks_8_acfe_flexible_layout_title','Icons'),(198192,40813,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(198193,40813,'blocks_8_options_theme','#f5f5f5'),(198194,40813,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(198195,40813,'blocks_8_options_format','row'),(198196,40813,'_blocks_8_options_format','field_64bfde9a90690'),(198197,40813,'blocks_8_options',''),(198198,40813,'_blocks_8_options','field_64bfdd9b90684'),(198199,40813,'blocks_8_icon_row_items_0_icon','qualification.svg'),(198200,40813,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(198201,40813,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(198202,40813,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(198203,40813,'blocks_8_icon_row_items_0_text',''),(198204,40813,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(198205,40813,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(198206,40813,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(198207,40813,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(198208,40813,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(198209,40813,'blocks_8_icon_row_items_1_text',''),(198210,40813,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(198211,40813,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(198212,40813,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(198213,40813,'blocks_8_icon_row_items_2_label','Face-to-face workshops'),(198214,40813,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(198215,40813,'blocks_8_icon_row_items_2_text',''),(198216,40813,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(198217,40813,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(198218,40813,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(198219,40813,'blocks_8_icon_row_items_3_label','Flexible funding options'),(198220,40813,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(198221,40813,'blocks_8_icon_row_items_3_text',''),(198222,40813,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(198223,40813,'blocks_8_icon_row_items','4'),(198224,40813,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(198225,40813,'blocks_9_acfe_flexible_toggle',''),(198226,40813,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(198227,40813,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(198228,40813,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(198229,40813,'blocks_9_options_theme','#ffffff'),(198230,40813,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(198231,40813,'blocks_9_options_reverse','1'),(198232,40813,'_blocks_9_options_reverse','field_61768049bb8ac'),(198233,40813,'blocks_9_options',''),(198234,40813,'_blocks_9_options','field_617682517c334'),(198235,40813,'blocks_9_split_5050_image','40812'),(198236,40813,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(198237,40813,'blocks_9_split_5050_video',''),(198238,40813,'_blocks_9_split_5050_video','field_6239f3160848a'),(198239,40813,'blocks_9_split_5050_content_title',''),(198240,40813,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(198241,40813,'blocks_9_split_5050_content_heading','Why study this Level 4 Personal Trainer Course?  '),(198242,40813,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(198243,40813,'blocks_9_split_5050_content_text','The Level 4 Personal Trainer Course offers a unique opportunity for fitness professionals to advance their careers through comprehensive and specialised training. This course delves into advanced concepts of physiology and elite training techniques, providing a deeper understanding essential for personal trainers aiming to stand out in the industry. With a curriculum designed to blend theoretical knowledge and practical application, graduates are well-prepared to handle a wide range of client needs.\r\n\r\nAchieving a Level 4 qualification not only enhances professional credibility but also opens doors to higher-paying roles and prestigious positions within elite sports teams, health and wellness centres, and private training facilities. The course also fosters valuable connections with industry experts and like-minded professionals, expanding your professional network.\r\n\r\nBy enrolling in this course, you\'ll be equipped to deliver exceptional training and support, making a significant impact on your clients\' fitness journeys.'),(198244,40813,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(198245,40813,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(198246,40813,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(198247,40813,'blocks_9_split_5050_content_actions','1'),(198248,40813,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(198249,40813,'blocks_9_split_5050_content',''),(198250,40813,'_blocks_9_split_5050_content','field_61767afceb8ba'),(198636,40815,'hide_hero','0'),(198637,40815,'_hide_hero','field_66a2380fcda39'),(198638,40815,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(198639,40815,'_hero_title','field_617571fe285e8'),(198640,40815,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(198641,40815,'_hero_text','field_6175723c285e9'),(198642,40815,'hero_actions','1'),(198643,40815,'_hero_actions','field_61757270285ea'),(198644,40815,'hero_style','default'),(198645,40815,'_hero_style','field_62051d9dc5324'),(198646,40815,'_thumbnail_id','40782'),(198647,40815,'__thumbnail_id','field_617570855ddaf'),(198648,40815,'hero_image_pos_x','right'),(198649,40815,'_hero_image_pos_x','field_62ec3d05390bb'),(198650,40815,'hero_image_pos_y','top'),(198651,40815,'_hero_image_pos_y','field_62ec3d05390bc'),(198652,40815,'hero_image_pos',''),(198653,40815,'_hero_image_pos','field_62ec3d05390ba'),(198654,40815,'fft_hide_from_listings','0'),(198655,40815,'_fft_hide_from_listings','field_61f1320446ab2'),(198656,40815,'fft_page_format','default'),(198657,40815,'_fft_page_format','field_61ae213f1f218'),(198658,40815,'fft_hide_nav','0'),(198659,40815,'_fft_hide_nav','field_635bd5e43527c'),(198660,40815,'fft_hide_header_call_to_action','0'),(198661,40815,'_fft_hide_header_call_to_action','field_635bd6723527d'),(198662,40815,'fft_page_sitemap','0'),(198663,40815,'_fft_page_sitemap','field_61af9b34e8181'),(198664,40815,'blocks','a:12:{i:0;s:5:\"icons\";i:1;s:5:\"video\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"text_block\";}'),(198665,40815,'_blocks','field_6176696113096'),(198666,40815,'course_label_text',''),(198667,40815,'_course_label_text','field_61e17babf71fa'),(198668,40815,'course_label',''),(198669,40815,'_course_label','field_61e12f92749a7'),(198670,40815,'course_description',''),(198671,40815,'_course_description','field_617ac5788e5e1'),(198672,40815,'course_key_info',''),(198673,40815,'_course_key_info','field_617ac6ad8e5e2'),(198674,40815,'course_included',''),(198675,40815,'_course_included','field_617ac6f08e5e4'),(198676,40815,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(198677,40815,'_hero_actions_0_button','field_61757281285eb'),(198678,40815,'blocks_0_acfe_flexible_toggle',''),(198679,40815,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(198680,40815,'blocks_0_acfe_flexible_layout_title','Icons'),(198681,40815,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(198682,40815,'blocks_0_options_theme','#b61234'),(198683,40815,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(198684,40815,'blocks_0_options_format','row'),(198685,40815,'_blocks_0_options_format','field_64bfde9a90690'),(198686,40815,'blocks_0_options',''),(198687,40815,'_blocks_0_options','field_64bfdd9b90684'),(198688,40815,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(198689,40815,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(198690,40815,'blocks_0_icon_row_items_0_label','Accreditation'),(198691,40815,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(198692,40815,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(198693,40815,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(198694,40815,'blocks_0_icon_row_items_1_icon','finance.svg'),(198695,40815,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(198696,40815,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(198697,40815,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(198698,40815,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(198699,40815,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(198700,40815,'blocks_0_icon_row_items_2_icon','progression.svg'),(198701,40815,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(198702,40815,'blocks_0_icon_row_items_2_label','Earning Potential'),(198703,40815,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(198704,40815,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(198705,40815,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(198706,40815,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(198707,40815,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(198708,40815,'blocks_0_icon_row_items_3_label','Qualification'),(198709,40815,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(198710,40815,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(198711,40815,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(198712,40815,'blocks_0_icon_row_items','4'),(198713,40815,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(198714,40815,'blocks_5_acfe_flexible_toggle','1'),(198715,40815,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(198716,40815,'blocks_5_acfe_flexible_layout_title','Tabs'),(198717,40815,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(198718,40815,'blocks_5_options_theme','#ffffff'),(198719,40815,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(198720,40815,'blocks_5_options',''),(198721,40815,'_blocks_5_options','field_6177cfcd8140f'),(198722,40815,'blocks_5_tabs_0_tab_label','Entry requirements'),(198723,40815,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(198724,40815,'blocks_5_tabs_0_tab_content_title',''),(198725,40815,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(198726,40815,'blocks_5_tabs_0_tab_content_heading',''),(198727,40815,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(198728,40815,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(198729,40815,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(198730,40815,'blocks_5_tabs_0_tab_content_actions',''),(198731,40815,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(198732,40815,'blocks_5_tabs_0_tab_content',''),(198733,40815,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(198734,40815,'blocks_5_tabs_0_tab_image',''),(198735,40815,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(198736,40815,'blocks_5_tabs_1_tab_label','Learning format'),(198737,40815,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(198738,40815,'blocks_5_tabs_1_tab_content_title',''),(198739,40815,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(198740,40815,'blocks_5_tabs_1_tab_content_heading',''),(198741,40815,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(198742,40815,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(198743,40815,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(198744,40815,'blocks_5_tabs_1_tab_content_actions',''),(198745,40815,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(198746,40815,'blocks_5_tabs_1_tab_content',''),(198747,40815,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(198748,40815,'blocks_5_tabs_1_tab_image',''),(198749,40815,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(198750,40815,'blocks_5_tabs_2_tab_label','Qualifications included'),(198751,40815,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(198752,40815,'blocks_5_tabs_2_tab_content_title',''),(198753,40815,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(198754,40815,'blocks_5_tabs_2_tab_content_heading',''),(198755,40815,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(198756,40815,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(198757,40815,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(198758,40815,'blocks_5_tabs_2_tab_content_actions',''),(198759,40815,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(198760,40815,'blocks_5_tabs_2_tab_content',''),(198761,40815,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(198762,40815,'blocks_5_tabs_2_tab_image',''),(198763,40815,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(198764,40815,'blocks_5_tabs','3'),(198765,40815,'_blocks_5_tabs','field_6177cff281419'),(198766,40815,'blocks_2_acfe_flexible_toggle',''),(198767,40815,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(198768,40815,'blocks_2_acfe_flexible_layout_title','Form'),(198769,40815,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(198770,40815,'blocks_2_row_content_format','standard'),(198771,40815,'_blocks_2_row_content_format','field_6481ead962881'),(198772,40815,'blocks_2_row_content_title',''),(198773,40815,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(198774,40815,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(198775,40815,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(198776,40815,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(198777,40815,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(198778,40815,'blocks_2_row_content_actions',''),(198779,40815,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(198780,40815,'blocks_2_row_content',''),(198781,40815,'_blocks_2_row_content','field_61a0f5f5b3db0'),(198782,40815,'blocks_2_row_form','40394'),(198783,40815,'_blocks_2_row_form','field_61a4ff2c0b08e'),(198784,40815,'blocks_2_row_form_button_label',''),(198785,40815,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(198786,40815,'blocks_3_acfe_flexible_toggle',''),(198787,40815,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(198788,40815,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(198789,40815,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(198790,40815,'blocks_3_options_theme','#ffffff'),(198791,40815,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(198792,40815,'blocks_3_options_reverse','0'),(198793,40815,'_blocks_3_options_reverse','field_61768049bb8ac'),(198794,40815,'blocks_3_options',''),(198795,40815,'_blocks_3_options','field_617682517c334'),(198796,40815,'blocks_3_split_5050_image','40785'),(198797,40815,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(198798,40815,'blocks_3_split_5050_video',''),(198799,40815,'_blocks_3_split_5050_video','field_6239f3160848a'),(198800,40815,'blocks_3_split_5050_content_title',''),(198801,40815,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(198802,40815,'blocks_3_split_5050_content_heading','Course Overview'),(198803,40815,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(198804,40815,'blocks_3_split_5050_content_text','Elevate your career to new heights with our Level 4 Personal Trainer course! Building on the solid foundation of Level 3, this specialised programme introduces essential new skills that set you apart in the competitive fitness industry. Unlock higher earning potential and gain a definitive edge over other trainers. Join us to transform your passion into expertise and success.'),(198805,40815,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(198806,40815,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(198807,40815,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(198808,40815,'blocks_3_split_5050_content_actions','1'),(198809,40815,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(198810,40815,'blocks_3_split_5050_content',''),(198811,40815,'_blocks_3_split_5050_content','field_61767afceb8ba'),(198812,40815,'blocks_4_acfe_flexible_toggle',''),(198813,40815,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(198814,40815,'blocks_4_acfe_flexible_layout_title','Template'),(198815,40815,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(198816,40815,'blocks_4_template','39207'),(198817,40815,'_blocks_4_template','field_617bdd570fe01'),(198818,40815,'blocks_6_acfe_flexible_toggle',''),(198819,40815,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(198820,40815,'blocks_6_acfe_flexible_layout_title','Icons'),(198821,40815,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(198822,40815,'blocks_6_options_theme','#f5f5f5'),(198823,40815,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(198824,40815,'blocks_6_options_format','stacked'),(198825,40815,'_blocks_6_options_format','field_64bfde9a90690'),(198826,40815,'blocks_6_options',''),(198827,40815,'_blocks_6_options','field_64bfdd9b90684'),(198828,40815,'blocks_6_row_content_title','Options available to pay for your course'),(198829,40815,'_blocks_6_row_content_title','field_64bfdd9b90687'),(198830,40815,'blocks_6_row_content_heading','Payment Options'),(198831,40815,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(198832,40815,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(198833,40815,'_blocks_6_row_content_text','field_64bfdd9b90689'),(198834,40815,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(198835,40815,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(198836,40815,'blocks_6_row_content_actions','1'),(198837,40815,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(198838,40815,'blocks_6_row_content',''),(198839,40815,'_blocks_6_row_content','field_64bfdd9b90686'),(198840,40815,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(198841,40815,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(198842,40815,'blocks_6_icon_row_items_0_label','Pay your course in full'),(198843,40815,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(198844,40815,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(198845,40815,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(198846,40815,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(198847,40815,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(198848,40815,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(198849,40815,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(198850,40815,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(198851,40815,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(198852,40815,'blocks_6_icon_row_items','2'),(198853,40815,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(198854,40815,'blocks_7_acfe_flexible_toggle',''),(198855,40815,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(198856,40815,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(198857,40815,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(198858,40815,'blocks_7_options_theme','#ffffff'),(198859,40815,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(198860,40815,'blocks_7_options_reverse','0'),(198861,40815,'_blocks_7_options_reverse','field_61768049bb8ac'),(198862,40815,'blocks_7_options',''),(198863,40815,'_blocks_7_options','field_617682517c334'),(198864,40815,'blocks_7_split_5050_image','40799'),(198865,40815,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(198866,40815,'blocks_7_split_5050_video',''),(198867,40815,'_blocks_7_split_5050_video','field_6239f3160848a'),(198868,40815,'blocks_7_split_5050_content_title',''),(198869,40815,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(198870,40815,'blocks_7_split_5050_content_heading','Course Information'),(198871,40815,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(198872,40815,'blocks_7_split_5050_content_text','<strong>Entry requirements:</strong>\r\n<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning format:</strong>\r\n<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Qualifications included:</strong>\r\n<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(198873,40815,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(198874,40815,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(198875,40815,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(198876,40815,'blocks_7_split_5050_content_actions','1'),(198877,40815,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(198878,40815,'blocks_7_split_5050_content',''),(198879,40815,'_blocks_7_split_5050_content','field_61767afceb8ba'),(198880,40815,'blocks_8_acfe_flexible_toggle',''),(198881,40815,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(198882,40815,'blocks_8_acfe_flexible_layout_title','Icons'),(198883,40815,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(198884,40815,'blocks_8_options_theme','#f5f5f5'),(198885,40815,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(198886,40815,'blocks_8_options_format','row'),(198887,40815,'_blocks_8_options_format','field_64bfde9a90690'),(198888,40815,'blocks_8_options',''),(198889,40815,'_blocks_8_options','field_64bfdd9b90684'),(198890,40815,'blocks_8_icon_row_items_0_icon','qualification.svg'),(198891,40815,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(198892,40815,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(198893,40815,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(198894,40815,'blocks_8_icon_row_items_0_text',''),(198895,40815,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(198896,40815,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(198897,40815,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(198898,40815,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(198899,40815,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(198900,40815,'blocks_8_icon_row_items_1_text',''),(198901,40815,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(198902,40815,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(198903,40815,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(198904,40815,'blocks_8_icon_row_items_2_label','Face-to-face workshops'),(198905,40815,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(198906,40815,'blocks_8_icon_row_items_2_text',''),(198907,40815,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(198908,40815,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(198909,40815,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(198910,40815,'blocks_8_icon_row_items_3_label','Flexible funding options'),(198911,40815,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(198912,40815,'blocks_8_icon_row_items_3_text',''),(198913,40815,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(198914,40815,'blocks_8_icon_row_items','4'),(198915,40815,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(198916,40815,'blocks_9_acfe_flexible_toggle',''),(198917,40815,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(198918,40815,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(198919,40815,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(198920,40815,'blocks_9_options_theme','#ffffff'),(198921,40815,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(198922,40815,'blocks_9_options_reverse','1'),(198923,40815,'_blocks_9_options_reverse','field_61768049bb8ac'),(198924,40815,'blocks_9_options',''),(198925,40815,'_blocks_9_options','field_617682517c334'),(198926,40815,'blocks_9_split_5050_image','40812'),(198927,40815,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(198928,40815,'blocks_9_split_5050_video',''),(198929,40815,'_blocks_9_split_5050_video','field_6239f3160848a'),(198930,40815,'blocks_9_split_5050_content_title',''),(198931,40815,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(198932,40815,'blocks_9_split_5050_content_heading','Why study this Level 4 Personal Trainer Course?  '),(198933,40815,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(198934,40815,'blocks_9_split_5050_content_text','The Level 4 Personal Trainer Course offers a unique opportunity for fitness professionals to advance their careers through comprehensive and specialised training. This course delves into advanced concepts of physiology and elite training techniques, providing a deeper understanding essential for personal trainers aiming to stand out in the industry. With a curriculum designed to blend theoretical knowledge and practical application, graduates are well-prepared to handle a wide range of client needs.\r\n\r\nAchieving a Level 4 qualification not only enhances professional credibility but also opens doors to higher-paying roles and prestigious positions within elite sports teams, health and wellness centres, and private training facilities. The course also fosters valuable connections with industry experts and like-minded professionals, expanding your professional network.\r\n\r\nBy enrolling in this course, you\'ll be equipped to deliver exceptional training and support, making a significant impact on your clients\' fitness journeys.'),(198935,40815,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(198936,40815,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(198937,40815,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(198938,40815,'blocks_9_split_5050_content_actions','1'),(198939,40815,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(198940,40815,'blocks_9_split_5050_content',''),(198941,40815,'_blocks_9_split_5050_content','field_61767afceb8ba'),(198942,40815,'blocks_1_acfe_flexible_toggle',''),(198943,40815,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(198944,40815,'blocks_1_acfe_flexible_layout_title','Video'),(198945,40815,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(198946,40815,'blocks_1_size','large'),(198947,40815,'_blocks_1_size','field_6487038f297c1'),(198948,40815,'blocks_1_row_content_title',''),(198949,40815,'_blocks_1_row_content_title','field_64870132a865d'),(198950,40815,'blocks_1_row_content_heading','Become a Biomechanics Coach'),(198951,40815,'_blocks_1_row_content_heading','field_64870142a865e'),(198952,40815,'blocks_1_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(198953,40815,'_blocks_1_row_content_text','field_64870148a865f'),(198954,40815,'blocks_1_row_content',''),(198955,40815,'_blocks_1_row_content','field_6487008ba865c'),(198956,40815,'blocks_1_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(198957,40815,'_blocks_1_video_src','field_6193c4a98ec07'),(198958,40815,'blocks_1_video_thumbnail',''),(198959,40815,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(198960,40815,'blocks_10_acfe_flexible_toggle',''),(198961,40815,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(198962,40815,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(198963,40815,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(198964,40815,'blocks_10_options_theme','#ffffff'),(198965,40815,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(198966,40815,'blocks_10_options',''),(198967,40815,'_blocks_10_options','field_617ac0b7f6c08'),(198968,40815,'blocks_10_show','selection'),(198969,40815,'_blocks_10_show','field_61a49cba9d946'),(198970,40815,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(198971,40815,'_blocks_10_courses','field_61b244781ee0a'),(198972,40815,'blocks_11_acfe_flexible_toggle',''),(198973,40815,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(198974,40815,'blocks_11_acfe_flexible_layout_title','Text Block'),(198975,40815,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(198976,40815,'blocks_11_options_theme','#ffffff'),(198977,40815,'_blocks_11_options_theme','field_6176830e2ad17'),(198978,40815,'blocks_11_options',''),(198979,40815,'_blocks_11_options','field_6176830e2ad16'),(198980,40815,'blocks_11_text_block_heading','Check out other relevant courses'),(198981,40815,'_blocks_11_text_block_heading','field_617669d413097'),(198982,40815,'blocks_11_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(198983,40815,'_blocks_11_text_block_content','field_617669ec13098'),(198984,40816,'_edit_lock','1739188229:17'),(198985,40817,'_wp_attached_file','2024/09/LVL-4-PT-BIOMECHANICS-50.50-1-scaled.jpg'),(198986,40817,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:48:\"2024/09/LVL-4-PT-BIOMECHANICS-50.50-1-scaled.jpg\";s:8:\"filesize\";i:511121;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"LVL-4-PT-BIOMECHANICS-50.50-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89814;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"LVL-4-PT-BIOMECHANICS-50.50-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140334;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"LVL-4-PT-BIOMECHANICS-50.50-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26344;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"LVL-4-PT-BIOMECHANICS-50.50-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70543;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"LVL-4-PT-BIOMECHANICS-50.50-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208815;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"LVL-4-PT-BIOMECHANICS-50.50-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:340374;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"LVL-4-PT-BIOMECHANICS-50.50-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34632;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"LVL-4-PT-BIOMECHANICS-50.50-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121426;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"LVL-4-PT-BIOMECHANICS-50.50-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192166;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"LVL-4-PT-BIOMECHANICS-50.50-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26188;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"LVL-4-PT-BIOMECHANICS-50.50-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89814;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"LVL-4-PT-BIOMECHANICS-50.50-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140334;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"LVL-4-PT-BIOMECHANICS-50.50-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27645;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"LVL-4-PT-BIOMECHANICS-50.50-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94697;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"LVL-4-PT-BIOMECHANICS-50.50-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149091;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"LVL-4-PT-BIOMECHANICS-50.50-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28246;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"LVL-4-PT-BIOMECHANICS-50.50-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97868;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"LVL-4-PT-BIOMECHANICS-50.50-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154148;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"LVL-4-PT-BIOMECHANICS-50.50-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22838;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"LVL-4-PT-BIOMECHANICS-50.50-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79245;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"LVL-4-PT-BIOMECHANICS-50.50-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123678;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:33:\"LVL-4-PT-BIOMECHANICS-50.50-1.jpg\";}'),(198987,40818,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-17-1-scaled.jpg'),(198988,40818,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:44:\"2024/09/BE_Tom_Joseph_Rachel-17-1-scaled.jpg\";s:8:\"filesize\";i:745859;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150000;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"BE_Tom_Joseph_Rachel-17-1-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229422;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49768;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119059;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:39:\"BE_Tom_Joseph_Rachel-17-1-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:334731;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:39:\"BE_Tom_Joseph_Rachel-17-1-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:522820;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60508;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194289;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:39:\"BE_Tom_Joseph_Rachel-17-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:303285;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49770;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148865;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:38:\"BE_Tom_Joseph_Rachel-17-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227685;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47830;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146615;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:38:\"BE_Tom_Joseph_Rachel-17-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227817;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52887;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160965;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:38:\"BE_Tom_Joseph_Rachel-17-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247143;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44789;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-17-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130607;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:38:\"BE_Tom_Joseph_Rachel-17-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198982;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706201\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"67\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:29:\"BE_Tom_Joseph_Rachel-17-1.jpg\";}'),(198989,40819,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-18-scaled.jpg'),(198990,40819,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-18-scaled.jpg\";s:8:\"filesize\";i:845854;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-18-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150773;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-18-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:236580;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-18-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49214;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-18-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118557;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-18-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:354620;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-18-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:576097;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-18-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59759;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-18-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204368;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-18-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:332129;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-18-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49173;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-18-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149864;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-18-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:234890;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-18-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46899;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-18-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151822;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-18-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245085;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-18-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52487;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-18-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166399;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-18-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:263894;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-18-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44333;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-18-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132506;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-18-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207886;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706204\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:9:\"0.0003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-18.jpg\";}'),(198991,40820,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-19-scaled.jpg'),(198992,40820,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-19-scaled.jpg\";s:8:\"filesize\";i:1161010;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-19-900x1125.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:300462;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-19-1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:483316;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-19-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81399;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-19-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229340;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-19-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:502468;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-19-1638x2048.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:807394;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-19-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69003;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-19-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245326;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-19-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:390405;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-19-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52091;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-19-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164927;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-19-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256731;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-19-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55169;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-19-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191890;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-19-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:306000;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-19-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56549;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-19-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185902;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-19-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:290817;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-19-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46682;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-19-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142566;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-19-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218102;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706215\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-19.jpg\";}'),(198993,40821,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-20-scaled.jpg'),(198994,40821,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-20-scaled.jpg\";s:8:\"filesize\";i:706474;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-20-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134680;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-20-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207727;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-20-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44498;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-20-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106545;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-20-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:305375;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-20-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:487180;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-20-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54098;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-20-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178385;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-20-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:285438;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-20-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44412;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-20-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134165;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-20-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206660;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-20-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44445;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-20-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140988;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-20-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225611;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-20-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46559;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-20-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142993;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-20-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222849;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-20-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40166;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-20-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119287;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-20-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184009;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706697\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-20.jpg\";}'),(198995,40822,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-21-scaled.jpg'),(198996,40822,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-21-scaled.jpg\";s:8:\"filesize\";i:619488;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-21-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115625;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-21-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178536;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-21-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38320;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-21-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90946;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-21-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264712;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-21-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:423506;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-21-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45540;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-21-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140299;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-21-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218292;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-21-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38269;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-21-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114804;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-21-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177433;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-21-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36210;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-21-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104211;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-21-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161213;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-21-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40368;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-21-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122039;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-21-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187887;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-21-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35228;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-21-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104102;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-21-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159703;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706705\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"42\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-21.jpg\";}'),(198997,40823,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-22-scaled.jpg'),(198998,40823,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-22-scaled.jpg\";s:8:\"filesize\";i:610096;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-22-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113267;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-22-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175309;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-22-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37561;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-22-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88667;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-22-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259988;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-22-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:416019;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-22-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45260;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-22-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142860;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-22-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225270;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-22-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37377;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-22-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112607;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-22-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174563;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-22-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35346;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-22-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102999;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-22-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161753;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-22-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39500;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-22-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119098;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-22-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184591;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-22-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35185;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-22-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103681;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-22-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159902;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706708\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"42\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-22.jpg\";}'),(198999,40824,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-23-scaled.jpg'),(199000,40824,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-23-scaled.jpg\";s:8:\"filesize\";i:276232;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-23-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57341;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-23-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83373;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-23-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25238;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-23-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47425;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-23-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118120;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-23-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186092;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-23-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29931;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-23-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76364;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-23-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115711;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-23-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25302;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-23-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57112;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-23-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82937;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-23-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28125;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-23-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69888;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-23-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104858;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-23-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27064;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-23-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63632;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-23-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93761;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-23-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23444;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-23-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51193;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-23-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73659;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706714\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.033333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-23.jpg\";}'),(199001,40825,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-1.jpg'),(199002,40825,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1929;s:6:\"height\";i:2411;s:4:\"file\";s:34:\"2024/09/BE_Tom_Joseph_Rachel-1.jpg\";s:8:\"filesize\";i:5489561;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-1-900x1125.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259585;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-1-1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:443742;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-1-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61597;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-1-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192035;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-1-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:462392;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-1-1639x2048.jpg\";s:5:\"width\";i:1639;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:778791;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51749;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209118;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:353225;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37383;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128819;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:213801;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43097;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166316;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:283261;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40735;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149002;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:248513;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33079;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106289;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174191;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720705975\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(199003,40826,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-10-scaled.jpg'),(199004,40826,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-10-scaled.jpg\";s:8:\"filesize\";i:634569;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-10-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113779;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-10-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176927;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-10-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39745;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-10-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90161;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-10-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264602;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-10-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:429773;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-10-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51750;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-10-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173325;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-10-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:281705;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-10-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39612;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-10-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113046;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-10-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176081;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-10-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45887;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-10-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153410;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-10-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249709;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-10-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42337;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-10-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126734;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-10-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199848;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-10-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35823;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-10-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99388;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-10-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153987;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706056\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-10.jpg\";}'),(199005,40827,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-11-scaled.jpg'),(199006,40827,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-11-scaled.jpg\";s:8:\"filesize\";i:1509862;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-11-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225719;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-11-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:383987;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-11-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55459;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-11-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168144;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-11-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:607243;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-11-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1021508;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-11-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80958;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-11-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:343404;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-11-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:582070;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-11-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55360;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-11-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223981;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-11-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:381568;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-11-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66673;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-11-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:269895;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-11-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:448454;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-11-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61002;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-11-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256749;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-11-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:427876;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-11-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49531;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-11-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194442;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-11-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:328074;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706069\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-11.jpg\";}'),(199007,40828,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-12-scaled.jpg'),(199008,40828,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-12-scaled.jpg\";s:8:\"filesize\";i:1525783;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-12-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223700;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-12-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:382267;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-12-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54786;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-12-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166414;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-12-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:606739;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-12-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1027042;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-12-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79871;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-12-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:343609;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-12-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:580355;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-12-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54660;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-12-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:221975;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-12-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:379843;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-12-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65791;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-12-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:271580;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-12-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:453280;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-12-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60778;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-12-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253703;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-12-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:431653;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-12-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49027;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-12-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193322;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-12-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:328005;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706070\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-12.jpg\";}'),(199009,40829,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-13-scaled.jpg');
INSERT INTO `6m7_postmeta` VALUES (199010,40829,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-13-scaled.jpg\";s:8:\"filesize\";i:1440652;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-13-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219497;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-13-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:371754;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-13-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54064;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-13-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163994;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-13-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:584482;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-13-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:976107;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-13-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78620;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-13-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:333380;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-13-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:556276;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-13-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53904;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-13-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:217574;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-13-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:369274;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-13-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64157;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-13-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:258877;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-13-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:427734;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-13-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60313;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-13-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:249002;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-13-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:420193;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-13-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48263;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-13-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188160;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-13-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:316669;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706074\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-13.jpg\";}'),(199011,40830,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-14-scaled.jpg'),(199012,40830,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-14-scaled.jpg\";s:8:\"filesize\";i:1284958;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-14-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212006;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-14-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:353724;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-14-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54337;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-14-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159871;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-14-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:546026;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-14-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:888419;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-14-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75359;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-14-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:301294;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-14-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:490968;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-14-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54228;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-14-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210084;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-14-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:351009;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-14-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60186;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-14-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230627;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-14-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:373092;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-14-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59694;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-14-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:236003;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-14-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:390680;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-14-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47715;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-14-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176410;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-14-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:291934;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706075\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-14.jpg\";}'),(199013,40831,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-9-scaled.jpg'),(199014,40831,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:41:\"2024/09/BE_Tom_Joseph_Rachel-9-scaled.jpg\";s:8:\"filesize\";i:574419;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-9-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102282;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-9-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158530;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-9-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36750;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-9-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81481;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-9-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237665;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-9-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:387462;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-9-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45669;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-9-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150346;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-9-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245958;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-9-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36663;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-9-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101588;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-9-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157369;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-9-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38936;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-9-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123472;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-9-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201209;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-9-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38873;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-9-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113113;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-9-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178183;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-9-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33926;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-9-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92530;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-9-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142965;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706052\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"64\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:8:\"0.000125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:26:\"BE_Tom_Joseph_Rachel-9.jpg\";}'),(199015,40832,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel--scaled.jpg'),(199016,40832,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:40:\"2024/09/BE_Tom_Joseph_Rachel--scaled.jpg\";s:8:\"filesize\";i:953815;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel--900x1125.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225266;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel--1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:378026;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Tom_Joseph_Rachel--400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54758;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Tom_Joseph_Rachel--768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167798;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel--1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:393021;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel--1639x2048.jpg\";s:5:\"width\";i:1639;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:650160;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Tom_Joseph_Rachel--400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45392;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Tom_Joseph_Rachel--900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177390;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel--1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:293359;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Tom_Joseph_Rachel--400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32215;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Tom_Joseph_Rachel--900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101733;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel--1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164589;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Tom_Joseph_Rachel--300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38379;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Tom_Joseph_Rachel--675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146102;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel--900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:244610;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Tom_Joseph_Rachel--400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35577;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Tom_Joseph_Rachel--900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121307;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel--1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197055;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Tom_Joseph_Rachel--400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28141;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Tom_Joseph_Rachel--900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82483;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel--1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130067;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720698609\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"57\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Tom_Joseph_Rachel-.jpg\";}'),(199017,40833,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-3.jpg'),(199018,40833,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1903;s:6:\"height\";i:2378;s:4:\"file\";s:34:\"2024/09/BE_Tom_Joseph_Rachel-3.jpg\";s:8:\"filesize\";i:4533877;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-3-900x1125.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215139;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-3-1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:355728;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-3-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58189;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-3-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162477;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-3-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:370129;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-3-1639x2048.jpg\";s:5:\"width\";i:1639;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:611989;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-3-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50174;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-3-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181593;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-3-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:298639;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-3-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39372;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-3-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130169;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-3-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212152;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-3-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42419;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-3-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142808;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-3-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235037;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-3-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42336;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-3-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144124;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-3-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235405;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-3-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35341;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-3-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111880;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-3-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181414;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706000\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(199019,40834,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-4.jpg'),(199020,40834,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1852;s:6:\"height\";i:2314;s:4:\"file\";s:34:\"2024/09/BE_Tom_Joseph_Rachel-4.jpg\";s:8:\"filesize\";i:3283852;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-4-900x1125.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128580;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-4-1200x1499.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1499;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201827;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-4-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44275;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-4-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101731;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-4-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210235;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-4-1639x2048.jpg\";s:5:\"width\";i:1639;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:343097;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-4-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38012;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-4-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106975;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-4-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166580;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-4-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29071;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-4-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70199;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-4-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105862;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-4-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33859;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-4-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89902;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-4-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136886;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-4-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30849;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-4-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77483;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-4-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117439;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-4-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26523;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-4-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61075;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-4-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91047;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706011\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(199021,40835,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-5-scaled.jpg'),(199022,40835,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:41:\"2024/09/BE_Tom_Joseph_Rachel-5-scaled.jpg\";s:8:\"filesize\";i:885540;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-5-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169703;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-5-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264375;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-5-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53179;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-5-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133148;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-5-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:390207;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-5-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:616862;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-5-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69160;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-5-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232786;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-5-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:368315;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-5-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53106;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-5-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168156;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-5-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:262552;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-5-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55929;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-5-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181398;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-5-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:285663;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-5-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57558;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-5-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185011;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-5-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:289422;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-5-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46407;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-5-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141846;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-5-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219497;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706032\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"59\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:26:\"BE_Tom_Joseph_Rachel-5.jpg\";}'),(199023,40836,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-6-scaled.jpg'),(199024,40836,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:41:\"2024/09/BE_Tom_Joseph_Rachel-6-scaled.jpg\";s:8:\"filesize\";i:533105;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-6-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120130;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-6-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177110;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-6-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44002;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-6-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97261;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-6-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:250192;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-6-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:378602;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-6-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55708;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-6-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161571;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-6-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:241816;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-6-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43903;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-6-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119227;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-6-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176094;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-6-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46545;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-6-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129781;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-6-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192793;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-6-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47038;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-6-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131014;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-6-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193698;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-6-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39408;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-6-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104213;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-6-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152859;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706039\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:26:\"BE_Tom_Joseph_Rachel-6.jpg\";}'),(199025,40834,'_wp_attachment_image_alt','Joseph Bleetman - Tetsimonial'),(199026,40837,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-7-scaled.jpg'),(199027,40837,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:41:\"2024/09/BE_Tom_Joseph_Rachel-7-scaled.jpg\";s:8:\"filesize\";i:778820;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-7-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161655;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-7-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245656;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-7-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51638;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-7-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127928;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-7-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:355616;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-7-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:549335;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-7-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65293;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-7-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:207217;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-7-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:316825;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-7-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51412;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-7-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160167;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-7-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:243850;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-7-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53921;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-7-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164794;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-7-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:251836;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-7-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55576;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-7-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174256;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-7-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:264977;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-7-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45105;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-7-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135254;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-7-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204445;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706044\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"41\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:10:\"0.00015625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:26:\"BE_Tom_Joseph_Rachel-7.jpg\";}'),(199028,40838,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-8-scaled.jpg'),(199029,40838,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:41:\"2024/09/BE_Tom_Joseph_Rachel-8-scaled.jpg\";s:8:\"filesize\";i:504991;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-8-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95058;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-8-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146361;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-8-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34366;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-8-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75668;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-8-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216453;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-8-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:345618;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-8-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43239;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-8-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140054;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-8-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223750;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-8-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34344;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-8-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94179;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-8-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145209;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-8-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38151;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-8-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120884;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-8-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193061;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-8-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36310;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-8-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104429;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-8-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162922;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-8-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31328;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"BE_Tom_Joseph_Rachel-8-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83186;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-8-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127022;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706050\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"64\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:8:\"0.000125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:26:\"BE_Tom_Joseph_Rachel-8.jpg\";}'),(199030,40816,'_edit_last','17'),(199031,40839,'_wp_attached_file','2024/09/BE_Tom_Joseph_Rachel-24-scaled.jpg'),(199032,40816,'hide_hero','0'),(199033,40816,'_hide_hero','field_66a2380fcda39'),(199034,40816,'hero_title',''),(199035,40816,'_hero_title','field_617571fe285e8'),(199036,40816,'hero_text','Biomechanics has helped me to specialise which has helped me to get higher quality clients, increase my fees and therefore income. '),(199037,40816,'_hero_text','field_6175723c285e9'),(199038,40816,'hero_actions',''),(199039,40816,'_hero_actions','field_61757270285ea'),(199040,40816,'hero_style','default'),(199041,40816,'_hero_style','field_62051d9dc5324'),(199043,40816,'__thumbnail_id','field_617570855ddaf'),(199044,40816,'hero_image_pos_x','right'),(199045,40816,'_hero_image_pos_x','field_62ec3d05390bb'),(199046,40816,'hero_image_pos_y','top'),(199047,40816,'_hero_image_pos_y','field_62ec3d05390bc'),(199048,40816,'hero_image_pos',''),(199049,40816,'_hero_image_pos','field_62ec3d05390ba'),(199050,40816,'blocks',''),(199051,40816,'_blocks','field_6176696113096'),(199052,40816,'testimonial_quote','Biomechanics has helped me to specialise which has helped me to get higher quality clients, increase my fees and therefore income. '),(199053,40816,'_testimonial_quote','field_61812ae117979'),(199054,40816,'testimonial_image','40834'),(199055,40816,'_testimonial_image','field_61812af71797a'),(199056,40816,'_yoast_wpseo_estimated-reading-time-minutes','0'),(199057,40839,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:42:\"2024/09/BE_Tom_Joseph_Rachel-24-scaled.jpg\";s:8:\"filesize\";i:475838;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-24-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82380;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-24-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128070;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-24-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29826;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-24-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65318;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-24-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192842;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-24-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:316784;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-24-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37252;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-24-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123107;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"BE_Tom_Joseph_Rachel-24-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201849;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-24-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29800;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-24-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81853;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-24-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127381;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-24-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32528;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-24-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103533;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-24-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168440;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-24-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31452;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-24-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91146;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-24-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144169;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-24-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27398;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"BE_Tom_Joseph_Rachel-24-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73340;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"BE_Tom_Joseph_Rachel-24-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113461;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1720706718\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:27:\"BE_Tom_Joseph_Rachel-24.jpg\";}'),(199058,40840,'hide_hero','0'),(199059,40840,'_hide_hero','field_66a2380fcda39'),(199060,40840,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(199061,40840,'_hero_title','field_617571fe285e8'),(199062,40840,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(199063,40840,'_hero_text','field_6175723c285e9'),(199064,40840,'hero_actions','1'),(199065,40840,'_hero_actions','field_61757270285ea'),(199066,40840,'hero_style','default'),(199067,40840,'_hero_style','field_62051d9dc5324'),(199068,40840,'_thumbnail_id','40782'),(199069,40840,'__thumbnail_id','field_617570855ddaf'),(199070,40840,'hero_image_pos_x','right'),(199071,40840,'_hero_image_pos_x','field_62ec3d05390bb'),(199072,40840,'hero_image_pos_y','top'),(199073,40840,'_hero_image_pos_y','field_62ec3d05390bc'),(199074,40840,'hero_image_pos',''),(199075,40840,'_hero_image_pos','field_62ec3d05390ba'),(199076,40840,'fft_hide_from_listings','0'),(199077,40840,'_fft_hide_from_listings','field_61f1320446ab2'),(199078,40840,'fft_page_format','default'),(199079,40840,'_fft_page_format','field_61ae213f1f218'),(199080,40840,'fft_hide_nav','0'),(199081,40840,'_fft_hide_nav','field_635bd5e43527c'),(199082,40840,'fft_hide_header_call_to_action','0'),(199083,40840,'_fft_hide_header_call_to_action','field_635bd6723527d'),(199084,40840,'fft_page_sitemap','0'),(199085,40840,'_fft_page_sitemap','field_61af9b34e8181'),(199086,40840,'blocks','a:12:{i:0;s:5:\"icons\";i:1;s:5:\"video\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"text_block\";}'),(199087,40840,'_blocks','field_6176696113096'),(199088,40840,'course_label_text',''),(199089,40840,'_course_label_text','field_61e17babf71fa'),(199090,40840,'course_label',''),(199091,40840,'_course_label','field_61e12f92749a7'),(199092,40840,'course_description',''),(199093,40840,'_course_description','field_617ac5788e5e1'),(199094,40840,'course_key_info',''),(199095,40840,'_course_key_info','field_617ac6ad8e5e2'),(199096,40840,'course_included',''),(199097,40840,'_course_included','field_617ac6f08e5e4'),(199098,40840,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(199099,40840,'_hero_actions_0_button','field_61757281285eb'),(199100,40840,'blocks_0_acfe_flexible_toggle',''),(199101,40840,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(199102,40840,'blocks_0_acfe_flexible_layout_title','Icons'),(199103,40840,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(199104,40840,'blocks_0_options_theme','#b61234'),(199105,40840,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(199106,40840,'blocks_0_options_format','row'),(199107,40840,'_blocks_0_options_format','field_64bfde9a90690'),(199108,40840,'blocks_0_options',''),(199109,40840,'_blocks_0_options','field_64bfdd9b90684'),(199110,40840,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(199111,40840,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(199112,40840,'blocks_0_icon_row_items_0_label','Accreditation'),(199113,40840,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(199114,40840,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(199115,40840,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(199116,40840,'blocks_0_icon_row_items_1_icon','finance.svg'),(199117,40840,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(199118,40840,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(199119,40840,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(199120,40840,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(199121,40840,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(199122,40840,'blocks_0_icon_row_items_2_icon','progression.svg'),(199123,40840,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(199124,40840,'blocks_0_icon_row_items_2_label','Earning Potential'),(199125,40840,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(199126,40840,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(199127,40840,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(199128,40840,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(199129,40840,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(199130,40840,'blocks_0_icon_row_items_3_label','Qualification'),(199131,40840,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(199132,40840,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(199133,40840,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(199134,40840,'blocks_0_icon_row_items','4'),(199135,40840,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(199136,40840,'blocks_5_acfe_flexible_toggle','1'),(199137,40840,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(199138,40840,'blocks_5_acfe_flexible_layout_title','Tabs'),(199139,40840,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(199140,40840,'blocks_5_options_theme','#ffffff'),(199141,40840,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(199142,40840,'blocks_5_options',''),(199143,40840,'_blocks_5_options','field_6177cfcd8140f'),(199144,40840,'blocks_5_tabs_0_tab_label','Entry requirements'),(199145,40840,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(199146,40840,'blocks_5_tabs_0_tab_content_title',''),(199147,40840,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(199148,40840,'blocks_5_tabs_0_tab_content_heading',''),(199149,40840,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(199150,40840,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(199151,40840,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(199152,40840,'blocks_5_tabs_0_tab_content_actions',''),(199153,40840,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(199154,40840,'blocks_5_tabs_0_tab_content',''),(199155,40840,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(199156,40840,'blocks_5_tabs_0_tab_image',''),(199157,40840,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(199158,40840,'blocks_5_tabs_1_tab_label','Learning format'),(199159,40840,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(199160,40840,'blocks_5_tabs_1_tab_content_title',''),(199161,40840,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(199162,40840,'blocks_5_tabs_1_tab_content_heading',''),(199163,40840,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(199164,40840,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(199165,40840,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(199166,40840,'blocks_5_tabs_1_tab_content_actions',''),(199167,40840,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(199168,40840,'blocks_5_tabs_1_tab_content',''),(199169,40840,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(199170,40840,'blocks_5_tabs_1_tab_image',''),(199171,40840,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(199172,40840,'blocks_5_tabs_2_tab_label','Qualifications included'),(199173,40840,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(199174,40840,'blocks_5_tabs_2_tab_content_title',''),(199175,40840,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(199176,40840,'blocks_5_tabs_2_tab_content_heading',''),(199177,40840,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(199178,40840,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(199179,40840,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(199180,40840,'blocks_5_tabs_2_tab_content_actions',''),(199181,40840,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(199182,40840,'blocks_5_tabs_2_tab_content',''),(199183,40840,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(199184,40840,'blocks_5_tabs_2_tab_image',''),(199185,40840,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(199186,40840,'blocks_5_tabs','3'),(199187,40840,'_blocks_5_tabs','field_6177cff281419'),(199188,40840,'blocks_2_acfe_flexible_toggle',''),(199189,40840,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(199190,40840,'blocks_2_acfe_flexible_layout_title','Form'),(199191,40840,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(199192,40840,'blocks_2_row_content_format','standard'),(199193,40840,'_blocks_2_row_content_format','field_6481ead962881'),(199194,40840,'blocks_2_row_content_title',''),(199195,40840,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(199196,40840,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(199197,40840,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(199198,40840,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(199199,40840,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(199200,40840,'blocks_2_row_content_actions',''),(199201,40840,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(199202,40840,'blocks_2_row_content',''),(199203,40840,'_blocks_2_row_content','field_61a0f5f5b3db0'),(199204,40840,'blocks_2_row_form','40394'),(199205,40840,'_blocks_2_row_form','field_61a4ff2c0b08e'),(199206,40840,'blocks_2_row_form_button_label',''),(199207,40840,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(199208,40840,'blocks_3_acfe_flexible_toggle',''),(199209,40840,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(199210,40840,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(199211,40840,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(199212,40840,'blocks_3_options_theme','#ffffff'),(199213,40840,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(199214,40840,'blocks_3_options_reverse','0'),(199215,40840,'_blocks_3_options_reverse','field_61768049bb8ac'),(199216,40840,'blocks_3_options',''),(199217,40840,'_blocks_3_options','field_617682517c334'),(199218,40840,'blocks_3_split_5050_image','40785'),(199219,40840,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(199220,40840,'blocks_3_split_5050_video',''),(199221,40840,'_blocks_3_split_5050_video','field_6239f3160848a'),(199222,40840,'blocks_3_split_5050_content_title',''),(199223,40840,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(199224,40840,'blocks_3_split_5050_content_heading','Course Overview'),(199225,40840,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(199226,40840,'blocks_3_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(199227,40840,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(199228,40840,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(199229,40840,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(199230,40840,'blocks_3_split_5050_content_actions','1'),(199231,40840,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(199232,40840,'blocks_3_split_5050_content',''),(199233,40840,'_blocks_3_split_5050_content','field_61767afceb8ba'),(199234,40840,'blocks_4_acfe_flexible_toggle',''),(199235,40840,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(199236,40840,'blocks_4_acfe_flexible_layout_title','Template'),(199237,40840,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(199238,40840,'blocks_4_template','39207'),(199239,40840,'_blocks_4_template','field_617bdd570fe01'),(199240,40840,'blocks_6_acfe_flexible_toggle',''),(199241,40840,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(199242,40840,'blocks_6_acfe_flexible_layout_title','Icons'),(199243,40840,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(199244,40840,'blocks_6_options_theme','#f5f5f5'),(199245,40840,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(199246,40840,'blocks_6_options_format','stacked'),(199247,40840,'_blocks_6_options_format','field_64bfde9a90690'),(199248,40840,'blocks_6_options',''),(199249,40840,'_blocks_6_options','field_64bfdd9b90684'),(199250,40840,'blocks_6_row_content_title','Options available to pay for your course'),(199251,40840,'_blocks_6_row_content_title','field_64bfdd9b90687'),(199252,40840,'blocks_6_row_content_heading','Payment Options'),(199253,40840,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(199254,40840,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(199255,40840,'_blocks_6_row_content_text','field_64bfdd9b90689'),(199256,40840,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(199257,40840,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(199258,40840,'blocks_6_row_content_actions','1'),(199259,40840,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(199260,40840,'blocks_6_row_content',''),(199261,40840,'_blocks_6_row_content','field_64bfdd9b90686'),(199262,40840,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(199263,40840,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(199264,40840,'blocks_6_icon_row_items_0_label','Pay your course in full'),(199265,40840,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(199266,40840,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(199267,40840,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(199268,40840,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(199269,40840,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(199270,40840,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(199271,40840,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(199272,40840,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(199273,40840,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(199274,40840,'blocks_6_icon_row_items','2'),(199275,40840,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(199276,40840,'blocks_7_acfe_flexible_toggle',''),(199277,40840,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(199278,40840,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(199279,40840,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(199280,40840,'blocks_7_options_theme','#ffffff'),(199281,40840,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(199282,40840,'blocks_7_options_reverse','0'),(199283,40840,'_blocks_7_options_reverse','field_61768049bb8ac'),(199284,40840,'blocks_7_options',''),(199285,40840,'_blocks_7_options','field_617682517c334'),(199286,40840,'blocks_7_split_5050_image','40817'),(199287,40840,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(199288,40840,'blocks_7_split_5050_video',''),(199289,40840,'_blocks_7_split_5050_video','field_6239f3160848a'),(199290,40840,'blocks_7_split_5050_content_title',''),(199291,40840,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(199292,40840,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(199293,40840,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(199294,40840,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(199295,40840,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(199296,40840,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(199297,40840,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(199298,40840,'blocks_7_split_5050_content_actions','1'),(199299,40840,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(199300,40840,'blocks_7_split_5050_content',''),(199301,40840,'_blocks_7_split_5050_content','field_61767afceb8ba'),(199302,40840,'blocks_8_acfe_flexible_toggle',''),(199303,40840,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(199304,40840,'blocks_8_acfe_flexible_layout_title','Icons'),(199305,40840,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(199306,40840,'blocks_8_options_theme','#f5f5f5'),(199307,40840,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(199308,40840,'blocks_8_options_format','row'),(199309,40840,'_blocks_8_options_format','field_64bfde9a90690'),(199310,40840,'blocks_8_options',''),(199311,40840,'_blocks_8_options','field_64bfdd9b90684'),(199312,40840,'blocks_8_icon_row_items_0_icon','qualification.svg'),(199313,40840,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(199314,40840,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(199315,40840,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(199316,40840,'blocks_8_icon_row_items_0_text',''),(199317,40840,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(199318,40840,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(199319,40840,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(199320,40840,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(199321,40840,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(199322,40840,'blocks_8_icon_row_items_1_text',''),(199323,40840,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(199324,40840,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(199325,40840,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(199326,40840,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(199327,40840,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(199328,40840,'blocks_8_icon_row_items_2_text',''),(199329,40840,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(199330,40840,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(199331,40840,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(199332,40840,'blocks_8_icon_row_items_3_label','Flexible funding options'),(199333,40840,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(199334,40840,'blocks_8_icon_row_items_3_text',''),(199335,40840,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(199336,40840,'blocks_8_icon_row_items','4'),(199337,40840,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(199338,40840,'blocks_9_acfe_flexible_toggle',''),(199339,40840,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(199340,40840,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(199341,40840,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(199342,40840,'blocks_9_options_theme','#ffffff'),(199343,40840,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(199344,40840,'blocks_9_options_reverse','1'),(199345,40840,'_blocks_9_options_reverse','field_61768049bb8ac'),(199346,40840,'blocks_9_options',''),(199347,40840,'_blocks_9_options','field_617682517c334'),(199348,40840,'blocks_9_split_5050_image','39224'),(199349,40840,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(199350,40840,'blocks_9_split_5050_video',''),(199351,40840,'_blocks_9_split_5050_video','field_6239f3160848a'),(199352,40840,'blocks_9_split_5050_content_title','Locations'),(199353,40840,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(199354,40840,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(199355,40840,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(199356,40840,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(199357,40840,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(199358,40840,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(199359,40840,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(199360,40840,'blocks_9_split_5050_content_actions','1'),(199361,40840,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(199362,40840,'blocks_9_split_5050_content',''),(199363,40840,'_blocks_9_split_5050_content','field_61767afceb8ba'),(199364,40840,'blocks_1_acfe_flexible_toggle',''),(199365,40840,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(199366,40840,'blocks_1_acfe_flexible_layout_title','Video'),(199367,40840,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(199368,40840,'blocks_1_size','large'),(199369,40840,'_blocks_1_size','field_6487038f297c1'),(199370,40840,'blocks_1_row_content_title',''),(199371,40840,'_blocks_1_row_content_title','field_64870132a865d'),(199372,40840,'blocks_1_row_content_heading','Become a Biomechanics Coach'),(199373,40840,'_blocks_1_row_content_heading','field_64870142a865e'),(199374,40840,'blocks_1_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(199375,40840,'_blocks_1_row_content_text','field_64870148a865f'),(199376,40840,'blocks_1_row_content',''),(199377,40840,'_blocks_1_row_content','field_6487008ba865c'),(199378,40840,'blocks_1_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(199379,40840,'_blocks_1_video_src','field_6193c4a98ec07'),(199380,40840,'blocks_1_video_thumbnail',''),(199381,40840,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(199382,40840,'blocks_10_acfe_flexible_toggle',''),(199383,40840,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(199384,40840,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(199385,40840,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(199386,40840,'blocks_10_options_theme','#ffffff'),(199387,40840,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(199388,40840,'blocks_10_options',''),(199389,40840,'_blocks_10_options','field_617ac0b7f6c08'),(199390,40840,'blocks_10_show','selection'),(199391,40840,'_blocks_10_show','field_61a49cba9d946'),(199392,40840,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(199393,40840,'_blocks_10_courses','field_61b244781ee0a'),(199394,40840,'blocks_11_acfe_flexible_toggle',''),(199395,40840,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(199396,40840,'blocks_11_acfe_flexible_layout_title','Text Block'),(199397,40840,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(199398,40840,'blocks_11_options_theme','#ffffff'),(199399,40840,'_blocks_11_options_theme','field_6176830e2ad17'),(199400,40840,'blocks_11_options',''),(199401,40840,'_blocks_11_options','field_6176830e2ad16'),(199402,40840,'blocks_11_text_block_heading','Check out other relevant courses'),(199403,40840,'_blocks_11_text_block_heading','field_617669d413097'),(199404,40840,'blocks_11_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(199405,40840,'_blocks_11_text_block_content','field_617669ec13098'),(199406,39585,'_wp_old_date','2024-09-05'),(199407,39585,'hide_hero','0'),(199408,39585,'_hide_hero','field_66a2380fcda39'),(199409,39585,'hero_title',''),(199410,39585,'_hero_title','field_617571fe285e8'),(199411,39585,'hero_text',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(199412,39585,'_hero_text','field_6175723c285e9'),(199413,39585,'hero_actions',''),(199414,39585,'_hero_actions','field_61757270285ea'),(199415,39585,'hero_style','default'),(199416,39585,'_hero_style','field_62051d9dc5324'),(199418,39585,'__thumbnail_id','field_617570855ddaf'),(199419,39585,'hero_image_pos_x','right'),(199420,39585,'_hero_image_pos_x','field_62ec3d05390bb'),(199421,39585,'hero_image_pos_y','top'),(199422,39585,'_hero_image_pos_y','field_62ec3d05390bc'),(199423,39585,'hero_image_pos',''),(199424,39585,'_hero_image_pos','field_62ec3d05390ba'),(199425,39585,'blocks',''),(199426,39585,'_blocks','field_6176696113096'),(199427,39585,'testimonial_quote',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(199428,39585,'_testimonial_quote','field_61812ae117979'),(199429,39585,'testimonial_image',''),(199430,39585,'_testimonial_image','field_61812af71797a'),(199431,39585,'_yoast_wpseo_content_score','90'),(199432,39585,'_yoast_wpseo_estimated-reading-time-minutes','1'),(199433,40841,'_edit_lock','1739188228:17'),(199434,40841,'_edit_last','17'),(199435,40841,'hide_hero','0'),(199436,40841,'_hide_hero','field_66a2380fcda39'),(199437,40841,'hero_title','Milan Pun'),(199438,40841,'_hero_title','field_617571fe285e8'),(199439,40841,'hero_text','I have been practicing it on my work colleagues and they are awed by how simple but effective it is.'),(199440,40841,'_hero_text','field_6175723c285e9'),(199441,40841,'hero_actions',''),(199442,40841,'_hero_actions','field_61757270285ea'),(199443,40841,'hero_style','default'),(199444,40841,'_hero_style','field_62051d9dc5324'),(199446,40841,'__thumbnail_id','field_617570855ddaf'),(199447,40841,'hero_image_pos_x','right'),(199448,40841,'_hero_image_pos_x','field_62ec3d05390bb'),(199449,40841,'hero_image_pos_y','top'),(199450,40841,'_hero_image_pos_y','field_62ec3d05390bc'),(199451,40841,'hero_image_pos',''),(199452,40841,'_hero_image_pos','field_62ec3d05390ba'),(199453,40841,'blocks',''),(199454,40841,'_blocks','field_6176696113096'),(199455,40841,'testimonial_quote','I have been practicing it on my work colleagues and they are awed by how simple but effective it is.'),(199456,40841,'_testimonial_quote','field_61812ae117979'),(199457,40841,'testimonial_image','40959'),(199458,40841,'_testimonial_image','field_61812af71797a'),(199459,40841,'_yoast_wpseo_estimated-reading-time-minutes','0'),(199511,40842,'hide_hero','0'),(199512,40842,'_hide_hero','field_66a2380fcda39'),(199513,40842,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(199514,40842,'_hero_title','field_617571fe285e8'),(199515,40842,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(199516,40842,'_hero_text','field_6175723c285e9'),(199517,40842,'hero_actions','1'),(199518,40842,'_hero_actions','field_61757270285ea'),(199519,40842,'hero_style','default'),(199520,40842,'_hero_style','field_62051d9dc5324'),(199521,40842,'_thumbnail_id','40782'),(199522,40842,'__thumbnail_id','field_617570855ddaf'),(199523,40842,'hero_image_pos_x','right'),(199524,40842,'_hero_image_pos_x','field_62ec3d05390bb'),(199525,40842,'hero_image_pos_y','top'),(199526,40842,'_hero_image_pos_y','field_62ec3d05390bc'),(199527,40842,'hero_image_pos',''),(199528,40842,'_hero_image_pos','field_62ec3d05390ba'),(199529,40842,'fft_hide_from_listings','0'),(199530,40842,'_fft_hide_from_listings','field_61f1320446ab2'),(199531,40842,'fft_page_format','default'),(199532,40842,'_fft_page_format','field_61ae213f1f218'),(199533,40842,'fft_hide_nav','0'),(199534,40842,'_fft_hide_nav','field_635bd5e43527c'),(199535,40842,'fft_hide_header_call_to_action','0'),(199536,40842,'_fft_hide_header_call_to_action','field_635bd6723527d'),(199537,40842,'fft_page_sitemap','0'),(199538,40842,'_fft_page_sitemap','field_61af9b34e8181'),(199539,40842,'blocks','a:13:{i:0;s:5:\"icons\";i:1;s:5:\"video\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";}'),(199540,40842,'_blocks','field_6176696113096'),(199541,40842,'course_label_text',''),(199542,40842,'_course_label_text','field_61e17babf71fa'),(199543,40842,'course_label',''),(199544,40842,'_course_label','field_61e12f92749a7'),(199545,40842,'course_description',''),(199546,40842,'_course_description','field_617ac5788e5e1'),(199547,40842,'course_key_info',''),(199548,40842,'_course_key_info','field_617ac6ad8e5e2'),(199549,40842,'course_included',''),(199550,40842,'_course_included','field_617ac6f08e5e4'),(199551,40842,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(199552,40842,'_hero_actions_0_button','field_61757281285eb'),(199553,40842,'blocks_0_acfe_flexible_toggle',''),(199554,40842,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(199555,40842,'blocks_0_acfe_flexible_layout_title','Icons'),(199556,40842,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(199557,40842,'blocks_0_options_theme','#b61234'),(199558,40842,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(199559,40842,'blocks_0_options_format','row'),(199560,40842,'_blocks_0_options_format','field_64bfde9a90690'),(199561,40842,'blocks_0_options',''),(199562,40842,'_blocks_0_options','field_64bfdd9b90684'),(199563,40842,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(199564,40842,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(199565,40842,'blocks_0_icon_row_items_0_label','Accreditation'),(199566,40842,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(199567,40842,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(199568,40842,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(199569,40842,'blocks_0_icon_row_items_1_icon','finance.svg'),(199570,40842,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(199571,40842,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(199572,40842,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(199573,40842,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(199574,40842,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(199575,40842,'blocks_0_icon_row_items_2_icon','progression.svg'),(199576,40842,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(199577,40842,'blocks_0_icon_row_items_2_label','Earning Potential'),(199578,40842,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(199579,40842,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(199580,40842,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(199581,40842,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(199582,40842,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(199583,40842,'blocks_0_icon_row_items_3_label','Qualification'),(199584,40842,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(199585,40842,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(199586,40842,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(199587,40842,'blocks_0_icon_row_items','4'),(199588,40842,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(199589,40842,'blocks_5_acfe_flexible_toggle','1'),(199590,40842,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(199591,40842,'blocks_5_acfe_flexible_layout_title','Tabs'),(199592,40842,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(199593,40842,'blocks_5_options_theme','#ffffff'),(199594,40842,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(199595,40842,'blocks_5_options',''),(199596,40842,'_blocks_5_options','field_6177cfcd8140f'),(199597,40842,'blocks_5_tabs_0_tab_label','Entry requirements'),(199598,40842,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(199599,40842,'blocks_5_tabs_0_tab_content_title',''),(199600,40842,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(199601,40842,'blocks_5_tabs_0_tab_content_heading',''),(199602,40842,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(199603,40842,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(199604,40842,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(199605,40842,'blocks_5_tabs_0_tab_content_actions',''),(199606,40842,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(199607,40842,'blocks_5_tabs_0_tab_content',''),(199608,40842,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(199609,40842,'blocks_5_tabs_0_tab_image',''),(199610,40842,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(199611,40842,'blocks_5_tabs_1_tab_label','Learning format'),(199612,40842,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(199613,40842,'blocks_5_tabs_1_tab_content_title',''),(199614,40842,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(199615,40842,'blocks_5_tabs_1_tab_content_heading',''),(199616,40842,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(199617,40842,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(199618,40842,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(199619,40842,'blocks_5_tabs_1_tab_content_actions',''),(199620,40842,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(199621,40842,'blocks_5_tabs_1_tab_content',''),(199622,40842,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(199623,40842,'blocks_5_tabs_1_tab_image',''),(199624,40842,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(199625,40842,'blocks_5_tabs_2_tab_label','Qualifications included'),(199626,40842,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(199627,40842,'blocks_5_tabs_2_tab_content_title',''),(199628,40842,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(199629,40842,'blocks_5_tabs_2_tab_content_heading',''),(199630,40842,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(199631,40842,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(199632,40842,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(199633,40842,'blocks_5_tabs_2_tab_content_actions',''),(199634,40842,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(199635,40842,'blocks_5_tabs_2_tab_content',''),(199636,40842,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(199637,40842,'blocks_5_tabs_2_tab_image',''),(199638,40842,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(199639,40842,'blocks_5_tabs','3'),(199640,40842,'_blocks_5_tabs','field_6177cff281419'),(199641,40842,'blocks_2_acfe_flexible_toggle',''),(199642,40842,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(199643,40842,'blocks_2_acfe_flexible_layout_title','Form'),(199644,40842,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(199645,40842,'blocks_2_row_content_format','standard'),(199646,40842,'_blocks_2_row_content_format','field_6481ead962881'),(199647,40842,'blocks_2_row_content_title',''),(199648,40842,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(199649,40842,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(199650,40842,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(199651,40842,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(199652,40842,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(199653,40842,'blocks_2_row_content_actions',''),(199654,40842,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(199655,40842,'blocks_2_row_content',''),(199656,40842,'_blocks_2_row_content','field_61a0f5f5b3db0'),(199657,40842,'blocks_2_row_form','40394'),(199658,40842,'_blocks_2_row_form','field_61a4ff2c0b08e'),(199659,40842,'blocks_2_row_form_button_label',''),(199660,40842,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(199661,40842,'blocks_3_acfe_flexible_toggle',''),(199662,40842,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(199663,40842,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(199664,40842,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(199665,40842,'blocks_3_options_theme','#ffffff'),(199666,40842,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(199667,40842,'blocks_3_options_reverse','0'),(199668,40842,'_blocks_3_options_reverse','field_61768049bb8ac'),(199669,40842,'blocks_3_options',''),(199670,40842,'_blocks_3_options','field_617682517c334'),(199671,40842,'blocks_3_split_5050_image','40785'),(199672,40842,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(199673,40842,'blocks_3_split_5050_video',''),(199674,40842,'_blocks_3_split_5050_video','field_6239f3160848a'),(199675,40842,'blocks_3_split_5050_content_title',''),(199676,40842,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(199677,40842,'blocks_3_split_5050_content_heading','Course Overview'),(199678,40842,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(199679,40842,'blocks_3_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(199680,40842,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(199681,40842,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(199682,40842,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(199683,40842,'blocks_3_split_5050_content_actions','1'),(199684,40842,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(199685,40842,'blocks_3_split_5050_content',''),(199686,40842,'_blocks_3_split_5050_content','field_61767afceb8ba'),(199687,40842,'blocks_4_acfe_flexible_toggle',''),(199688,40842,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(199689,40842,'blocks_4_acfe_flexible_layout_title','Template'),(199690,40842,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(199691,40842,'blocks_4_template','39207'),(199692,40842,'_blocks_4_template','field_617bdd570fe01'),(199693,40842,'blocks_6_acfe_flexible_toggle',''),(199694,40842,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(199695,40842,'blocks_6_acfe_flexible_layout_title','Icons'),(199696,40842,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(199697,40842,'blocks_6_options_theme','#f5f5f5'),(199698,40842,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(199699,40842,'blocks_6_options_format','stacked'),(199700,40842,'_blocks_6_options_format','field_64bfde9a90690'),(199701,40842,'blocks_6_options',''),(199702,40842,'_blocks_6_options','field_64bfdd9b90684'),(199703,40842,'blocks_6_row_content_title','Options available to pay for your course'),(199704,40842,'_blocks_6_row_content_title','field_64bfdd9b90687'),(199705,40842,'blocks_6_row_content_heading','Payment Options'),(199706,40842,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(199707,40842,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(199708,40842,'_blocks_6_row_content_text','field_64bfdd9b90689'),(199709,40842,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(199710,40842,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(199711,40842,'blocks_6_row_content_actions','1'),(199712,40842,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(199713,40842,'blocks_6_row_content',''),(199714,40842,'_blocks_6_row_content','field_64bfdd9b90686'),(199715,40842,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(199716,40842,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(199717,40842,'blocks_6_icon_row_items_0_label','Pay your course in full'),(199718,40842,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(199719,40842,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(199720,40842,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(199721,40842,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(199722,40842,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(199723,40842,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(199724,40842,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(199725,40842,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(199726,40842,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(199727,40842,'blocks_6_icon_row_items','2'),(199728,40842,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(199729,40842,'blocks_7_acfe_flexible_toggle',''),(199730,40842,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(199731,40842,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(199732,40842,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(199733,40842,'blocks_7_options_theme','#ffffff'),(199734,40842,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(199735,40842,'blocks_7_options_reverse','0'),(199736,40842,'_blocks_7_options_reverse','field_61768049bb8ac'),(199737,40842,'blocks_7_options',''),(199738,40842,'_blocks_7_options','field_617682517c334'),(199739,40842,'blocks_7_split_5050_image','40817'),(199740,40842,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(199741,40842,'blocks_7_split_5050_video',''),(199742,40842,'_blocks_7_split_5050_video','field_6239f3160848a'),(199743,40842,'blocks_7_split_5050_content_title',''),(199744,40842,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(199745,40842,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(199746,40842,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(199747,40842,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(199748,40842,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(199749,40842,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(199750,40842,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(199751,40842,'blocks_7_split_5050_content_actions','1'),(199752,40842,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(199753,40842,'blocks_7_split_5050_content',''),(199754,40842,'_blocks_7_split_5050_content','field_61767afceb8ba'),(199755,40842,'blocks_8_acfe_flexible_toggle',''),(199756,40842,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(199757,40842,'blocks_8_acfe_flexible_layout_title','Icons'),(199758,40842,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(199759,40842,'blocks_8_options_theme','#f5f5f5'),(199760,40842,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(199761,40842,'blocks_8_options_format','row'),(199762,40842,'_blocks_8_options_format','field_64bfde9a90690'),(199763,40842,'blocks_8_options',''),(199764,40842,'_blocks_8_options','field_64bfdd9b90684'),(199765,40842,'blocks_8_icon_row_items_0_icon','qualification.svg'),(199766,40842,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(199767,40842,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(199768,40842,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(199769,40842,'blocks_8_icon_row_items_0_text',''),(199770,40842,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(199771,40842,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(199772,40842,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(199773,40842,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(199774,40842,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(199775,40842,'blocks_8_icon_row_items_1_text',''),(199776,40842,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(199777,40842,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(199778,40842,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(199779,40842,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(199780,40842,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(199781,40842,'blocks_8_icon_row_items_2_text',''),(199782,40842,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(199783,40842,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(199784,40842,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(199785,40842,'blocks_8_icon_row_items_3_label','Flexible funding options'),(199786,40842,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(199787,40842,'blocks_8_icon_row_items_3_text',''),(199788,40842,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(199789,40842,'blocks_8_icon_row_items','4'),(199790,40842,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(199791,40842,'blocks_9_acfe_flexible_toggle',''),(199792,40842,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(199793,40842,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(199794,40842,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(199795,40842,'blocks_9_options_theme','#ffffff'),(199796,40842,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(199797,40842,'blocks_9_options_reverse','1'),(199798,40842,'_blocks_9_options_reverse','field_61768049bb8ac'),(199799,40842,'blocks_9_options',''),(199800,40842,'_blocks_9_options','field_617682517c334'),(199801,40842,'blocks_9_split_5050_image','39224'),(199802,40842,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(199803,40842,'blocks_9_split_5050_video',''),(199804,40842,'_blocks_9_split_5050_video','field_6239f3160848a'),(199805,40842,'blocks_9_split_5050_content_title','Locations'),(199806,40842,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(199807,40842,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(199808,40842,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(199809,40842,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(199810,40842,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(199811,40842,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(199812,40842,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(199813,40842,'blocks_9_split_5050_content_actions','1'),(199814,40842,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(199815,40842,'blocks_9_split_5050_content',''),(199816,40842,'_blocks_9_split_5050_content','field_61767afceb8ba'),(199817,40842,'blocks_1_acfe_flexible_toggle',''),(199818,40842,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(199819,40842,'blocks_1_acfe_flexible_layout_title','Video'),(199820,40842,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(199821,40842,'blocks_1_size','large'),(199822,40842,'_blocks_1_size','field_6487038f297c1'),(199823,40842,'blocks_1_row_content_title',''),(199824,40842,'_blocks_1_row_content_title','field_64870132a865d'),(199825,40842,'blocks_1_row_content_heading','Become a Biomechanics Coach'),(199826,40842,'_blocks_1_row_content_heading','field_64870142a865e'),(199827,40842,'blocks_1_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(199828,40842,'_blocks_1_row_content_text','field_64870148a865f'),(199829,40842,'blocks_1_row_content',''),(199830,40842,'_blocks_1_row_content','field_6487008ba865c'),(199831,40842,'blocks_1_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(199832,40842,'_blocks_1_video_src','field_6193c4a98ec07'),(199833,40842,'blocks_1_video_thumbnail',''),(199834,40842,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(199835,40842,'blocks_10_acfe_flexible_toggle',''),(199836,40842,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(199837,40842,'blocks_10_acfe_flexible_layout_title','Text Block'),(199838,40842,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(199839,40842,'blocks_10_options_theme','#ffffff'),(199840,40842,'_blocks_10_options_theme','field_6176830e2ad17'),(199841,40842,'blocks_10_options',''),(199842,40842,'_blocks_10_options','field_6176830e2ad16'),(199843,40842,'blocks_10_text_block_heading','Check out other relevant courses'),(199844,40842,'_blocks_10_text_block_heading','field_617669d413097'),(199845,40842,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(199846,40842,'_blocks_10_text_block_content','field_617669ec13098'),(199847,40842,'blocks_11_acfe_flexible_toggle',''),(199848,40842,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(199849,40842,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(199850,40842,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(199851,40842,'blocks_11_options_theme','#ffffff'),(199852,40842,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(199853,40842,'blocks_11_options',''),(199854,40842,'_blocks_11_options','field_617ac0b7f6c08'),(199855,40842,'blocks_11_show','selection'),(199856,40842,'_blocks_11_show','field_61a49cba9d946'),(199857,40842,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(199858,40842,'_blocks_11_courses','field_61b244781ee0a'),(199859,40842,'blocks_12_acfe_flexible_toggle',''),(199860,40842,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(199861,40842,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(199862,40842,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(199863,40842,'blocks_12_options_theme','#ffffff'),(199864,40842,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(199865,40842,'blocks_12_options_reverse','0'),(199866,40842,'_blocks_12_options_reverse','field_61768049bb8ac'),(199867,40842,'blocks_12_options',''),(199868,40842,'_blocks_12_options','field_617682517c334'),(199869,40842,'blocks_12_split_5050_image','40812'),(199870,40842,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(199871,40842,'blocks_12_split_5050_video',''),(199872,40842,'_blocks_12_split_5050_video','field_6239f3160848a'),(199873,40842,'blocks_12_split_5050_content_title','Optimise Performance '),(199874,40842,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(199875,40842,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(199876,40842,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(199877,40842,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(199878,40842,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(199879,40842,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(199880,40842,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(199881,40842,'blocks_12_split_5050_content_actions','1'),(199882,40842,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(199883,40842,'blocks_12_split_5050_content',''),(199884,40842,'_blocks_12_split_5050_content','field_61767afceb8ba'),(199885,40843,'_edit_lock','1739188082:17'),(199886,40843,'_edit_last','13'),(199887,40843,'hide_hero','0'),(199888,40843,'_hide_hero','field_66a2380fcda39'),(199889,40843,'hero_title',''),(199890,40843,'_hero_title','field_617571fe285e8'),(199891,40843,'hero_text',''),(199892,40843,'_hero_text','field_6175723c285e9'),(199893,40843,'hero_actions',''),(199894,40843,'_hero_actions','field_61757270285ea'),(199895,40843,'hero_style','default'),(199896,40843,'_hero_style','field_62051d9dc5324'),(199898,40843,'__thumbnail_id','field_617570855ddaf'),(199899,40843,'hero_image_pos_x','right'),(199900,40843,'_hero_image_pos_x','field_62ec3d05390bb'),(199901,40843,'hero_image_pos_y','top'),(199902,40843,'_hero_image_pos_y','field_62ec3d05390bc'),(199903,40843,'hero_image_pos',''),(199904,40843,'_hero_image_pos','field_62ec3d05390ba'),(199905,40843,'blocks',''),(199906,40843,'_blocks','field_6176696113096'),(199907,40843,'testimonial_quote','Thanks for the great course. I learnt a lot, and it was a great pace! I actually feel confident that I can go away and use those tests.'),(199908,40843,'_testimonial_quote','field_61812ae117979'),(199909,40843,'testimonial_image','40958'),(199910,40843,'_testimonial_image','field_61812af71797a'),(199911,40843,'_yoast_wpseo_estimated-reading-time-minutes','0'),(199912,40844,'_wp_attached_file','2024/09/robrachel-partnership.png'),(199913,40844,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:552;s:6:\"height\";i:366;s:4:\"file\";s:33:\"2024/09/robrachel-partnership.png\";s:8:\"filesize\";i:320159;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"robrachel-partnership-400x265.png\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173519;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"robrachel-partnership-400x366.png\";s:5:\"width\";i:400;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:243273;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"robrachel-partnership-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174137;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"robrachel-partnership-300x366.png\";s:5:\"width\";i:300;s:6:\"height\";i:366;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:183045;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"robrachel-partnership-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:194610;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"robrachel-partnership-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155851;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(199915,40845,'_edit_lock','1739188224:17'),(199916,40845,'_edit_last','17'),(199917,40845,'hide_hero','0'),(199918,40845,'_hide_hero','field_66a2380fcda39'),(199919,40845,'hero_title',''),(199920,40845,'_hero_title','field_617571fe285e8'),(199921,40845,'hero_text','Great workshop at Biomechanics Education! The team were good fun, knowledgeable, and really encouraged/challenged throughout the course. Thank you!'),(199922,40845,'_hero_text','field_6175723c285e9'),(199923,40845,'hero_actions',''),(199924,40845,'_hero_actions','field_61757270285ea'),(199925,40845,'hero_style','default'),(199926,40845,'_hero_style','field_62051d9dc5324'),(199928,40845,'__thumbnail_id','field_617570855ddaf'),(199929,40845,'hero_image_pos_x','right'),(199930,40845,'_hero_image_pos_x','field_62ec3d05390bb'),(199931,40845,'hero_image_pos_y','top'),(199932,40845,'_hero_image_pos_y','field_62ec3d05390bc'),(199933,40845,'hero_image_pos',''),(199934,40845,'_hero_image_pos','field_62ec3d05390ba'),(199935,40845,'blocks',''),(199936,40845,'_blocks','field_6176696113096'),(199937,40845,'testimonial_quote','Great workshop at Biomechanics Education! The team were good fun, knowledgeable, and really encouraged/challenged throughout the course. Thank you!'),(199938,40845,'_testimonial_quote','field_61812ae117979'),(199939,40845,'testimonial_image','40957'),(199940,40845,'_testimonial_image','field_61812af71797a'),(199941,40845,'_yoast_wpseo_estimated-reading-time-minutes','0'),(199942,40846,'hide_hero','0'),(199943,40846,'_hide_hero','field_66a2380fcda39'),(199944,40846,'hero_title',''),(199945,40846,'_hero_title','field_617571fe285e8'),(199946,40846,'hero_text',''),(199947,40846,'_hero_text','field_6175723c285e9'),(199948,40846,'hero_actions',''),(199949,40846,'_hero_actions','field_61757270285ea'),(199950,40846,'hero_style','default'),(199951,40846,'_hero_style','field_62051d9dc5324'),(199952,40846,'_thumbnail_id',''),(199953,40846,'__thumbnail_id','field_617570855ddaf'),(199954,40846,'hero_image_pos_x','right'),(199955,40846,'_hero_image_pos_x','field_62ec3d05390bb'),(199956,40846,'hero_image_pos_y','top'),(199957,40846,'_hero_image_pos_y','field_62ec3d05390bc'),(199958,40846,'hero_image_pos',''),(199959,40846,'_hero_image_pos','field_62ec3d05390ba'),(199960,40846,'blocks',''),(199961,40846,'_blocks','field_6176696113096'),(199962,40846,'testimonial_quote','Great workshop at Biomechanics Education! The team were good fun, knowledgeable, and really encouraged/challenged throughout the course. Thank you!'),(199963,40846,'_testimonial_quote','field_61812ae117979'),(199964,40846,'testimonial_image',''),(199965,40846,'_testimonial_image','field_61812af71797a'),(200013,40847,'hide_hero','0'),(200014,40847,'_hide_hero','field_66a2380fcda39'),(200015,40847,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(200016,40847,'_hero_title','field_617571fe285e8'),(200017,40847,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(200018,40847,'_hero_text','field_6175723c285e9'),(200019,40847,'hero_actions','1'),(200020,40847,'_hero_actions','field_61757270285ea'),(200021,40847,'hero_style','default'),(200022,40847,'_hero_style','field_62051d9dc5324'),(200023,40847,'_thumbnail_id','40782'),(200024,40847,'__thumbnail_id','field_617570855ddaf'),(200025,40847,'hero_image_pos_x','right'),(200026,40847,'_hero_image_pos_x','field_62ec3d05390bb'),(200027,40847,'hero_image_pos_y','top'),(200028,40847,'_hero_image_pos_y','field_62ec3d05390bc'),(200029,40847,'hero_image_pos',''),(200030,40847,'_hero_image_pos','field_62ec3d05390ba'),(200031,40847,'fft_hide_from_listings','0'),(200032,40847,'_fft_hide_from_listings','field_61f1320446ab2'),(200033,40847,'fft_page_format','default'),(200034,40847,'_fft_page_format','field_61ae213f1f218'),(200035,40847,'fft_hide_nav','0'),(200036,40847,'_fft_hide_nav','field_635bd5e43527c'),(200037,40847,'fft_hide_header_call_to_action','0'),(200038,40847,'_fft_hide_header_call_to_action','field_635bd6723527d'),(200039,40847,'fft_page_sitemap','0'),(200040,40847,'_fft_page_sitemap','field_61af9b34e8181'),(200041,40847,'blocks','a:16:{i:0;s:5:\"icons\";i:1;s:5:\"video\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";i:13;s:16:\"standard_content\";i:14;s:7:\"buttons\";i:15;s:10:\"accordions\";}'),(200042,40847,'_blocks','field_6176696113096'),(200043,40847,'course_label_text',''),(200044,40847,'_course_label_text','field_61e17babf71fa'),(200045,40847,'course_label',''),(200046,40847,'_course_label','field_61e12f92749a7'),(200047,40847,'course_description',''),(200048,40847,'_course_description','field_617ac5788e5e1'),(200049,40847,'course_key_info',''),(200050,40847,'_course_key_info','field_617ac6ad8e5e2'),(200051,40847,'course_included',''),(200052,40847,'_course_included','field_617ac6f08e5e4'),(200053,40847,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(200054,40847,'_hero_actions_0_button','field_61757281285eb'),(200055,40847,'blocks_0_acfe_flexible_toggle',''),(200056,40847,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(200057,40847,'blocks_0_acfe_flexible_layout_title','Icons'),(200058,40847,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(200059,40847,'blocks_0_options_theme','#b61234'),(200060,40847,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(200061,40847,'blocks_0_options_format','row'),(200062,40847,'_blocks_0_options_format','field_64bfde9a90690'),(200063,40847,'blocks_0_options',''),(200064,40847,'_blocks_0_options','field_64bfdd9b90684'),(200065,40847,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(200066,40847,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(200067,40847,'blocks_0_icon_row_items_0_label','Accreditation'),(200068,40847,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(200069,40847,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(200070,40847,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(200071,40847,'blocks_0_icon_row_items_1_icon','finance.svg'),(200072,40847,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(200073,40847,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(200074,40847,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(200075,40847,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(200076,40847,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(200077,40847,'blocks_0_icon_row_items_2_icon','progression.svg'),(200078,40847,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(200079,40847,'blocks_0_icon_row_items_2_label','Earning Potential'),(200080,40847,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(200081,40847,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(200082,40847,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(200083,40847,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(200084,40847,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(200085,40847,'blocks_0_icon_row_items_3_label','Qualification'),(200086,40847,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(200087,40847,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(200088,40847,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(200089,40847,'blocks_0_icon_row_items','4'),(200090,40847,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(200091,40847,'blocks_5_acfe_flexible_toggle','1'),(200092,40847,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(200093,40847,'blocks_5_acfe_flexible_layout_title','Tabs'),(200094,40847,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(200095,40847,'blocks_5_options_theme','#ffffff'),(200096,40847,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(200097,40847,'blocks_5_options',''),(200098,40847,'_blocks_5_options','field_6177cfcd8140f'),(200099,40847,'blocks_5_tabs_0_tab_label','Entry requirements'),(200100,40847,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(200101,40847,'blocks_5_tabs_0_tab_content_title',''),(200102,40847,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(200103,40847,'blocks_5_tabs_0_tab_content_heading',''),(200104,40847,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(200105,40847,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(200106,40847,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(200107,40847,'blocks_5_tabs_0_tab_content_actions',''),(200108,40847,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(200109,40847,'blocks_5_tabs_0_tab_content',''),(200110,40847,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(200111,40847,'blocks_5_tabs_0_tab_image',''),(200112,40847,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(200113,40847,'blocks_5_tabs_1_tab_label','Learning format'),(200114,40847,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(200115,40847,'blocks_5_tabs_1_tab_content_title',''),(200116,40847,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(200117,40847,'blocks_5_tabs_1_tab_content_heading',''),(200118,40847,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(200119,40847,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(200120,40847,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(200121,40847,'blocks_5_tabs_1_tab_content_actions',''),(200122,40847,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(200123,40847,'blocks_5_tabs_1_tab_content',''),(200124,40847,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(200125,40847,'blocks_5_tabs_1_tab_image',''),(200126,40847,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(200127,40847,'blocks_5_tabs_2_tab_label','Qualifications included'),(200128,40847,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(200129,40847,'blocks_5_tabs_2_tab_content_title',''),(200130,40847,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(200131,40847,'blocks_5_tabs_2_tab_content_heading',''),(200132,40847,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(200133,40847,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(200134,40847,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(200135,40847,'blocks_5_tabs_2_tab_content_actions',''),(200136,40847,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(200137,40847,'blocks_5_tabs_2_tab_content',''),(200138,40847,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(200139,40847,'blocks_5_tabs_2_tab_image',''),(200140,40847,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(200141,40847,'blocks_5_tabs','3'),(200142,40847,'_blocks_5_tabs','field_6177cff281419'),(200143,40847,'blocks_2_acfe_flexible_toggle',''),(200144,40847,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(200145,40847,'blocks_2_acfe_flexible_layout_title','Form'),(200146,40847,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(200147,40847,'blocks_2_row_content_format','standard'),(200148,40847,'_blocks_2_row_content_format','field_6481ead962881'),(200149,40847,'blocks_2_row_content_title',''),(200150,40847,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(200151,40847,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(200152,40847,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(200153,40847,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(200154,40847,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(200155,40847,'blocks_2_row_content_actions',''),(200156,40847,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(200157,40847,'blocks_2_row_content',''),(200158,40847,'_blocks_2_row_content','field_61a0f5f5b3db0'),(200159,40847,'blocks_2_row_form','40394'),(200160,40847,'_blocks_2_row_form','field_61a4ff2c0b08e'),(200161,40847,'blocks_2_row_form_button_label',''),(200162,40847,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(200163,40847,'blocks_3_acfe_flexible_toggle',''),(200164,40847,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(200165,40847,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(200166,40847,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(200167,40847,'blocks_3_options_theme','#ffffff'),(200168,40847,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(200169,40847,'blocks_3_options_reverse','0'),(200170,40847,'_blocks_3_options_reverse','field_61768049bb8ac'),(200171,40847,'blocks_3_options',''),(200172,40847,'_blocks_3_options','field_617682517c334'),(200173,40847,'blocks_3_split_5050_image','40785'),(200174,40847,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(200175,40847,'blocks_3_split_5050_video',''),(200176,40847,'_blocks_3_split_5050_video','field_6239f3160848a'),(200177,40847,'blocks_3_split_5050_content_title',''),(200178,40847,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(200179,40847,'blocks_3_split_5050_content_heading','Course Overview'),(200180,40847,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(200181,40847,'blocks_3_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(200182,40847,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(200183,40847,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(200184,40847,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(200185,40847,'blocks_3_split_5050_content_actions','1'),(200186,40847,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(200187,40847,'blocks_3_split_5050_content',''),(200188,40847,'_blocks_3_split_5050_content','field_61767afceb8ba'),(200189,40847,'blocks_4_acfe_flexible_toggle',''),(200190,40847,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(200191,40847,'blocks_4_acfe_flexible_layout_title','Template'),(200192,40847,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(200193,40847,'blocks_4_template','39207'),(200194,40847,'_blocks_4_template','field_617bdd570fe01'),(200195,40847,'blocks_6_acfe_flexible_toggle',''),(200196,40847,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(200197,40847,'blocks_6_acfe_flexible_layout_title','Icons'),(200198,40847,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(200199,40847,'blocks_6_options_theme','#f5f5f5'),(200200,40847,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(200201,40847,'blocks_6_options_format','stacked'),(200202,40847,'_blocks_6_options_format','field_64bfde9a90690'),(200203,40847,'blocks_6_options',''),(200204,40847,'_blocks_6_options','field_64bfdd9b90684'),(200205,40847,'blocks_6_row_content_title','Options available to pay for your course'),(200206,40847,'_blocks_6_row_content_title','field_64bfdd9b90687'),(200207,40847,'blocks_6_row_content_heading','Payment Options'),(200208,40847,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(200209,40847,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(200210,40847,'_blocks_6_row_content_text','field_64bfdd9b90689'),(200211,40847,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(200212,40847,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(200213,40847,'blocks_6_row_content_actions','1'),(200214,40847,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(200215,40847,'blocks_6_row_content',''),(200216,40847,'_blocks_6_row_content','field_64bfdd9b90686'),(200217,40847,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(200218,40847,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(200219,40847,'blocks_6_icon_row_items_0_label','Pay your course in full'),(200220,40847,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(200221,40847,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(200222,40847,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(200223,40847,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(200224,40847,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(200225,40847,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(200226,40847,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(200227,40847,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(200228,40847,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(200229,40847,'blocks_6_icon_row_items','2'),(200230,40847,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(200231,40847,'blocks_7_acfe_flexible_toggle',''),(200232,40847,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(200233,40847,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(200234,40847,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(200235,40847,'blocks_7_options_theme','#ffffff'),(200236,40847,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(200237,40847,'blocks_7_options_reverse','0'),(200238,40847,'_blocks_7_options_reverse','field_61768049bb8ac'),(200239,40847,'blocks_7_options',''),(200240,40847,'_blocks_7_options','field_617682517c334'),(200241,40847,'blocks_7_split_5050_image','40817'),(200242,40847,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(200243,40847,'blocks_7_split_5050_video',''),(200244,40847,'_blocks_7_split_5050_video','field_6239f3160848a'),(200245,40847,'blocks_7_split_5050_content_title',''),(200246,40847,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(200247,40847,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(200248,40847,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(200249,40847,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(200250,40847,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(200251,40847,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(200252,40847,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(200253,40847,'blocks_7_split_5050_content_actions','1'),(200254,40847,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(200255,40847,'blocks_7_split_5050_content',''),(200256,40847,'_blocks_7_split_5050_content','field_61767afceb8ba'),(200257,40847,'blocks_8_acfe_flexible_toggle',''),(200258,40847,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(200259,40847,'blocks_8_acfe_flexible_layout_title','Icons'),(200260,40847,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(200261,40847,'blocks_8_options_theme','#f5f5f5'),(200262,40847,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(200263,40847,'blocks_8_options_format','row'),(200264,40847,'_blocks_8_options_format','field_64bfde9a90690'),(200265,40847,'blocks_8_options',''),(200266,40847,'_blocks_8_options','field_64bfdd9b90684'),(200267,40847,'blocks_8_icon_row_items_0_icon','qualification.svg'),(200268,40847,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(200269,40847,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(200270,40847,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(200271,40847,'blocks_8_icon_row_items_0_text',''),(200272,40847,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(200273,40847,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(200274,40847,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(200275,40847,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(200276,40847,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(200277,40847,'blocks_8_icon_row_items_1_text',''),(200278,40847,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(200279,40847,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(200280,40847,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(200281,40847,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(200282,40847,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(200283,40847,'blocks_8_icon_row_items_2_text',''),(200284,40847,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(200285,40847,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(200286,40847,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(200287,40847,'blocks_8_icon_row_items_3_label','Flexible funding options'),(200288,40847,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(200289,40847,'blocks_8_icon_row_items_3_text',''),(200290,40847,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(200291,40847,'blocks_8_icon_row_items','4'),(200292,40847,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(200293,40847,'blocks_9_acfe_flexible_toggle',''),(200294,40847,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(200295,40847,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(200296,40847,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(200297,40847,'blocks_9_options_theme','#ffffff'),(200298,40847,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(200299,40847,'blocks_9_options_reverse','1'),(200300,40847,'_blocks_9_options_reverse','field_61768049bb8ac'),(200301,40847,'blocks_9_options',''),(200302,40847,'_blocks_9_options','field_617682517c334'),(200303,40847,'blocks_9_split_5050_image','39224'),(200304,40847,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(200305,40847,'blocks_9_split_5050_video',''),(200306,40847,'_blocks_9_split_5050_video','field_6239f3160848a'),(200307,40847,'blocks_9_split_5050_content_title','Locations'),(200308,40847,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(200309,40847,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(200310,40847,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(200311,40847,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(200312,40847,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(200313,40847,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(200314,40847,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(200315,40847,'blocks_9_split_5050_content_actions','1'),(200316,40847,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(200317,40847,'blocks_9_split_5050_content',''),(200318,40847,'_blocks_9_split_5050_content','field_61767afceb8ba'),(200319,40847,'blocks_1_acfe_flexible_toggle',''),(200320,40847,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(200321,40847,'blocks_1_acfe_flexible_layout_title','Video'),(200322,40847,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(200323,40847,'blocks_1_size','large'),(200324,40847,'_blocks_1_size','field_6487038f297c1'),(200325,40847,'blocks_1_row_content_title',''),(200326,40847,'_blocks_1_row_content_title','field_64870132a865d'),(200327,40847,'blocks_1_row_content_heading','Become a Biomechanics Coach'),(200328,40847,'_blocks_1_row_content_heading','field_64870142a865e'),(200329,40847,'blocks_1_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(200330,40847,'_blocks_1_row_content_text','field_64870148a865f'),(200331,40847,'blocks_1_row_content',''),(200332,40847,'_blocks_1_row_content','field_6487008ba865c'),(200333,40847,'blocks_1_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(200334,40847,'_blocks_1_video_src','field_6193c4a98ec07'),(200335,40847,'blocks_1_video_thumbnail',''),(200336,40847,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(200337,40847,'blocks_10_acfe_flexible_toggle',''),(200338,40847,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(200339,40847,'blocks_10_acfe_flexible_layout_title','Text Block'),(200340,40847,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(200341,40847,'blocks_10_options_theme','#ffffff'),(200342,40847,'_blocks_10_options_theme','field_6176830e2ad17'),(200343,40847,'blocks_10_options',''),(200344,40847,'_blocks_10_options','field_6176830e2ad16'),(200345,40847,'blocks_10_text_block_heading','Check out other relevant courses'),(200346,40847,'_blocks_10_text_block_heading','field_617669d413097'),(200347,40847,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(200348,40847,'_blocks_10_text_block_content','field_617669ec13098'),(200349,40847,'blocks_11_acfe_flexible_toggle',''),(200350,40847,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(200351,40847,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(200352,40847,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(200353,40847,'blocks_11_options_theme','#ffffff'),(200354,40847,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(200355,40847,'blocks_11_options',''),(200356,40847,'_blocks_11_options','field_617ac0b7f6c08'),(200357,40847,'blocks_11_show','selection'),(200358,40847,'_blocks_11_show','field_61a49cba9d946'),(200359,40847,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(200360,40847,'_blocks_11_courses','field_61b244781ee0a'),(200361,40847,'blocks_12_acfe_flexible_toggle',''),(200362,40847,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(200363,40847,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(200364,40847,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(200365,40847,'blocks_12_options_theme','#ffffff'),(200366,40847,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(200367,40847,'blocks_12_options_reverse','0'),(200368,40847,'_blocks_12_options_reverse','field_61768049bb8ac'),(200369,40847,'blocks_12_options',''),(200370,40847,'_blocks_12_options','field_617682517c334'),(200371,40847,'blocks_12_split_5050_image','40812'),(200372,40847,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(200373,40847,'blocks_12_split_5050_video',''),(200374,40847,'_blocks_12_split_5050_video','field_6239f3160848a'),(200375,40847,'blocks_12_split_5050_content_title','Optimise Performance '),(200376,40847,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(200377,40847,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(200378,40847,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(200379,40847,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(200380,40847,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(200381,40847,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(200382,40847,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(200383,40847,'blocks_12_split_5050_content_actions','1'),(200384,40847,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(200385,40847,'blocks_12_split_5050_content',''),(200386,40847,'_blocks_12_split_5050_content','field_61767afceb8ba'),(200387,40847,'blocks_13_acfe_flexible_toggle',''),(200388,40847,'_blocks_13_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(200389,40847,'blocks_13_acfe_flexible_layout_title','Standard/Editorial Content'),(200390,40847,'_blocks_13_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(200391,40847,'blocks_13_content','<h2 style=\"text-align: center;\">Working In Partnership</h2>\r\n<img class=\"size-full wp-image-40844 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/09/robrachel-partnership.png\" alt=\"\" width=\"552\" height=\"366\" />\r\n<p style=\"text-align: center;\">In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners and our network and will help us in our mission as we continue to look for new ways to make positive changes to the way we not only train our students but how we help shape the health and fitness industry.</p>\r\n<p style=\"text-align: center;\">As a combined force, both Future Fit and Biomechanics Education offer multiple benefits to you as the learner, including (but not exclusive to):</p>\r\n\r\n<ul>\r\n 	<li style=\"text-align: center;\">Access to Future Fit Student Zone for support and information</li>\r\n 	<li style=\"text-align: center;\">Discounts on businesses and brands you love</li>\r\n 	<li style=\"text-align: center;\">Our learning management system</li>\r\n 	<li style=\"text-align: center;\">Industry recognised training</li>\r\n 	<li style=\"text-align: center;\">Ongoing support during and after qualification</li>\r\n</ul>'),(200392,40847,'_blocks_13_content','field_6193c9b5eac84'),(200393,40847,'blocks_14_acfe_flexible_toggle',''),(200394,40847,'_blocks_14_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(200395,40847,'blocks_14_acfe_flexible_layout_title','Button(s)'),(200396,40847,'_blocks_14_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(200397,40847,'blocks_14_options_theme','#ffffff'),(200398,40847,'_blocks_14_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(200399,40847,'blocks_14_options',''),(200400,40847,'_blocks_14_options','field_623b03edb6e65'),(200401,40847,'blocks_14_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(200402,40847,'_blocks_14_actions_0_button','field_623b03edb6e6f'),(200403,40847,'blocks_14_actions','1'),(200404,40847,'_blocks_14_actions','field_623b03edb6e6e'),(200405,40847,'blocks_15_acfe_flexible_toggle',''),(200406,40847,'_blocks_15_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(200407,40847,'blocks_15_acfe_flexible_layout_title','Accordions / FAQs'),(200408,40847,'_blocks_15_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(200409,40847,'blocks_15_options_theme','#f5f5f5'),(200410,40847,'_blocks_15_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(200411,40847,'blocks_15_options_state','0'),(200412,40847,'_blocks_15_options_state','field_6239fcb7508c5'),(200413,40847,'blocks_15_options',''),(200414,40847,'_blocks_15_options','field_6177e2991ac44'),(200415,40847,'blocks_15_content_title',''),(200416,40847,'_blocks_15_content_title','field_64d237e8bb1e2'),(200417,40847,'blocks_15_content_heading','FAQ\'s'),(200418,40847,'_blocks_15_content_heading','field_64d237e8bb1e3'),(200419,40847,'blocks_15_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(200420,40847,'_blocks_15_content_text','field_64d237e8bb1e4'),(200421,40847,'blocks_15_content_actions',''),(200422,40847,'_blocks_15_content_actions','field_64d237e8bb1e5'),(200423,40847,'blocks_15_content_align','left'),(200424,40847,'_blocks_15_content_align','field_64d2443e6b6aa'),(200425,40847,'blocks_15_content',''),(200426,40847,'_blocks_15_content','field_64d237e8bb1e1'),(200427,40847,'blocks_15_accordion_content','faqs'),(200428,40847,'_blocks_15_accordion_content','field_6177e2c81ac4f'),(200429,40847,'blocks_15_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(200430,40847,'_blocks_15_accordion_faqs_select','field_6177e5f3633dd'),(200431,40847,'blocks_15_actions',''),(200432,40847,'_blocks_15_actions','field_61a746a817f7a'),(200433,40848,'_wp_attached_file','2024/09/level-4-pt-bm-diploma-hero.jpg'),(200434,40848,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:820;s:6:\"height\";i:547;s:4:\"file\";s:38:\"2024/09/level-4-pt-bm-diploma-hero.jpg\";s:8:\"filesize\";i:161210;s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"level-4-pt-bm-diploma-hero-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50844;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"level-4-pt-bm-diploma-hero-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113370;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:38:\"level-4-pt-bm-diploma-hero-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61198;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:38:\"level-4-pt-bm-diploma-hero-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50737;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:38:\"level-4-pt-bm-diploma-hero-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51115;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:38:\"level-4-pt-bm-diploma-hero-675x547.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:547;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119333;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:38:\"level-4-pt-bm-diploma-hero-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53677;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:38:\"level-4-pt-bm-diploma-hero-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47064;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:38:\"level-4-pt-bm-diploma-hero-820x506.jpg\";s:5:\"width\";i:820;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129238;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535282091\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"1100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(200435,40849,'hide_hero','0'),(200436,40849,'_hide_hero','field_66a2380fcda39'),(200437,40849,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(200438,40849,'_hero_title','field_617571fe285e8'),(200439,40849,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(200440,40849,'_hero_text','field_6175723c285e9'),(200441,40849,'hero_actions','1'),(200442,40849,'_hero_actions','field_61757270285ea'),(200443,40849,'hero_style','default'),(200444,40849,'_hero_style','field_62051d9dc5324'),(200445,40849,'_thumbnail_id','40848'),(200446,40849,'__thumbnail_id','field_617570855ddaf'),(200447,40849,'hero_image_pos_x','right'),(200448,40849,'_hero_image_pos_x','field_62ec3d05390bb'),(200449,40849,'hero_image_pos_y','top'),(200450,40849,'_hero_image_pos_y','field_62ec3d05390bc'),(200451,40849,'hero_image_pos',''),(200452,40849,'_hero_image_pos','field_62ec3d05390ba'),(200453,40849,'fft_hide_from_listings','0'),(200454,40849,'_fft_hide_from_listings','field_61f1320446ab2'),(200455,40849,'fft_page_format','default'),(200456,40849,'_fft_page_format','field_61ae213f1f218'),(200457,40849,'fft_hide_nav','0'),(200458,40849,'_fft_hide_nav','field_635bd5e43527c'),(200459,40849,'fft_hide_header_call_to_action','0'),(200460,40849,'_fft_hide_header_call_to_action','field_635bd6723527d'),(200461,40849,'fft_page_sitemap','0'),(200462,40849,'_fft_page_sitemap','field_61af9b34e8181'),(200463,40849,'blocks','a:16:{i:0;s:5:\"icons\";i:1;s:5:\"video\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";i:13;s:16:\"standard_content\";i:14;s:7:\"buttons\";i:15;s:10:\"accordions\";}'),(200464,40849,'_blocks','field_6176696113096'),(200465,40849,'course_label_text',''),(200466,40849,'_course_label_text','field_61e17babf71fa'),(200467,40849,'course_label',''),(200468,40849,'_course_label','field_61e12f92749a7'),(200469,40849,'course_description',''),(200470,40849,'_course_description','field_617ac5788e5e1'),(200471,40849,'course_key_info',''),(200472,40849,'_course_key_info','field_617ac6ad8e5e2'),(200473,40849,'course_included',''),(200474,40849,'_course_included','field_617ac6f08e5e4'),(200475,40849,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(200476,40849,'_hero_actions_0_button','field_61757281285eb'),(200477,40849,'blocks_0_acfe_flexible_toggle',''),(200478,40849,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(200479,40849,'blocks_0_acfe_flexible_layout_title','Icons'),(200480,40849,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(200481,40849,'blocks_0_options_theme','#b61234'),(200482,40849,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(200483,40849,'blocks_0_options_format','row'),(200484,40849,'_blocks_0_options_format','field_64bfde9a90690'),(200485,40849,'blocks_0_options',''),(200486,40849,'_blocks_0_options','field_64bfdd9b90684'),(200487,40849,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(200488,40849,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(200489,40849,'blocks_0_icon_row_items_0_label','Accreditation'),(200490,40849,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(200491,40849,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(200492,40849,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(200493,40849,'blocks_0_icon_row_items_1_icon','finance.svg'),(200494,40849,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(200495,40849,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(200496,40849,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(200497,40849,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(200498,40849,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(200499,40849,'blocks_0_icon_row_items_2_icon','progression.svg'),(200500,40849,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(200501,40849,'blocks_0_icon_row_items_2_label','Earning Potential'),(200502,40849,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(200503,40849,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(200504,40849,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(200505,40849,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(200506,40849,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(200507,40849,'blocks_0_icon_row_items_3_label','Qualification'),(200508,40849,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(200509,40849,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(200510,40849,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(200511,40849,'blocks_0_icon_row_items','4'),(200512,40849,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(200513,40849,'blocks_5_acfe_flexible_toggle','1'),(200514,40849,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(200515,40849,'blocks_5_acfe_flexible_layout_title','Tabs'),(200516,40849,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(200517,40849,'blocks_5_options_theme','#ffffff'),(200518,40849,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(200519,40849,'blocks_5_options',''),(200520,40849,'_blocks_5_options','field_6177cfcd8140f'),(200521,40849,'blocks_5_tabs_0_tab_label','Entry requirements'),(200522,40849,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(200523,40849,'blocks_5_tabs_0_tab_content_title',''),(200524,40849,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(200525,40849,'blocks_5_tabs_0_tab_content_heading',''),(200526,40849,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(200527,40849,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(200528,40849,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(200529,40849,'blocks_5_tabs_0_tab_content_actions',''),(200530,40849,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(200531,40849,'blocks_5_tabs_0_tab_content',''),(200532,40849,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(200533,40849,'blocks_5_tabs_0_tab_image',''),(200534,40849,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(200535,40849,'blocks_5_tabs_1_tab_label','Learning format'),(200536,40849,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(200537,40849,'blocks_5_tabs_1_tab_content_title',''),(200538,40849,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(200539,40849,'blocks_5_tabs_1_tab_content_heading',''),(200540,40849,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(200541,40849,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(200542,40849,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(200543,40849,'blocks_5_tabs_1_tab_content_actions',''),(200544,40849,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(200545,40849,'blocks_5_tabs_1_tab_content',''),(200546,40849,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(200547,40849,'blocks_5_tabs_1_tab_image',''),(200548,40849,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(200549,40849,'blocks_5_tabs_2_tab_label','Qualifications included'),(200550,40849,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(200551,40849,'blocks_5_tabs_2_tab_content_title',''),(200552,40849,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(200553,40849,'blocks_5_tabs_2_tab_content_heading',''),(200554,40849,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(200555,40849,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(200556,40849,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(200557,40849,'blocks_5_tabs_2_tab_content_actions',''),(200558,40849,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(200559,40849,'blocks_5_tabs_2_tab_content',''),(200560,40849,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(200561,40849,'blocks_5_tabs_2_tab_image',''),(200562,40849,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(200563,40849,'blocks_5_tabs','3'),(200564,40849,'_blocks_5_tabs','field_6177cff281419'),(200565,40849,'blocks_2_acfe_flexible_toggle',''),(200566,40849,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(200567,40849,'blocks_2_acfe_flexible_layout_title','Form'),(200568,40849,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(200569,40849,'blocks_2_row_content_format','standard'),(200570,40849,'_blocks_2_row_content_format','field_6481ead962881'),(200571,40849,'blocks_2_row_content_title',''),(200572,40849,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(200573,40849,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(200574,40849,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(200575,40849,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(200576,40849,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(200577,40849,'blocks_2_row_content_actions',''),(200578,40849,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(200579,40849,'blocks_2_row_content',''),(200580,40849,'_blocks_2_row_content','field_61a0f5f5b3db0'),(200581,40849,'blocks_2_row_form','40394'),(200582,40849,'_blocks_2_row_form','field_61a4ff2c0b08e'),(200583,40849,'blocks_2_row_form_button_label',''),(200584,40849,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(200585,40849,'blocks_3_acfe_flexible_toggle',''),(200586,40849,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(200587,40849,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(200588,40849,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(200589,40849,'blocks_3_options_theme','#ffffff'),(200590,40849,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(200591,40849,'blocks_3_options_reverse','0'),(200592,40849,'_blocks_3_options_reverse','field_61768049bb8ac'),(200593,40849,'blocks_3_options',''),(200594,40849,'_blocks_3_options','field_617682517c334'),(200595,40849,'blocks_3_split_5050_image','40785'),(200596,40849,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(200597,40849,'blocks_3_split_5050_video',''),(200598,40849,'_blocks_3_split_5050_video','field_6239f3160848a'),(200599,40849,'blocks_3_split_5050_content_title',''),(200600,40849,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(200601,40849,'blocks_3_split_5050_content_heading','Course Overview'),(200602,40849,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(200603,40849,'blocks_3_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(200604,40849,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(200605,40849,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(200606,40849,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(200607,40849,'blocks_3_split_5050_content_actions','1'),(200608,40849,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(200609,40849,'blocks_3_split_5050_content',''),(200610,40849,'_blocks_3_split_5050_content','field_61767afceb8ba'),(200611,40849,'blocks_4_acfe_flexible_toggle',''),(200612,40849,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(200613,40849,'blocks_4_acfe_flexible_layout_title','Template'),(200614,40849,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(200615,40849,'blocks_4_template','39207'),(200616,40849,'_blocks_4_template','field_617bdd570fe01'),(200617,40849,'blocks_6_acfe_flexible_toggle',''),(200618,40849,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(200619,40849,'blocks_6_acfe_flexible_layout_title','Icons'),(200620,40849,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(200621,40849,'blocks_6_options_theme','#f5f5f5'),(200622,40849,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(200623,40849,'blocks_6_options_format','stacked'),(200624,40849,'_blocks_6_options_format','field_64bfde9a90690'),(200625,40849,'blocks_6_options',''),(200626,40849,'_blocks_6_options','field_64bfdd9b90684'),(200627,40849,'blocks_6_row_content_title','Options available to pay for your course'),(200628,40849,'_blocks_6_row_content_title','field_64bfdd9b90687'),(200629,40849,'blocks_6_row_content_heading','Payment Options'),(200630,40849,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(200631,40849,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(200632,40849,'_blocks_6_row_content_text','field_64bfdd9b90689'),(200633,40849,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(200634,40849,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(200635,40849,'blocks_6_row_content_actions','1'),(200636,40849,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(200637,40849,'blocks_6_row_content',''),(200638,40849,'_blocks_6_row_content','field_64bfdd9b90686'),(200639,40849,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(200640,40849,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(200641,40849,'blocks_6_icon_row_items_0_label','Pay your course in full'),(200642,40849,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(200643,40849,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(200644,40849,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(200645,40849,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(200646,40849,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(200647,40849,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(200648,40849,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(200649,40849,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(200650,40849,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(200651,40849,'blocks_6_icon_row_items','2'),(200652,40849,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(200653,40849,'blocks_7_acfe_flexible_toggle',''),(200654,40849,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(200655,40849,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(200656,40849,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(200657,40849,'blocks_7_options_theme','#ffffff'),(200658,40849,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(200659,40849,'blocks_7_options_reverse','0'),(200660,40849,'_blocks_7_options_reverse','field_61768049bb8ac'),(200661,40849,'blocks_7_options',''),(200662,40849,'_blocks_7_options','field_617682517c334'),(200663,40849,'blocks_7_split_5050_image','40817'),(200664,40849,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(200665,40849,'blocks_7_split_5050_video',''),(200666,40849,'_blocks_7_split_5050_video','field_6239f3160848a'),(200667,40849,'blocks_7_split_5050_content_title',''),(200668,40849,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(200669,40849,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(200670,40849,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(200671,40849,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(200672,40849,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(200673,40849,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(200674,40849,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(200675,40849,'blocks_7_split_5050_content_actions','1'),(200676,40849,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(200677,40849,'blocks_7_split_5050_content',''),(200678,40849,'_blocks_7_split_5050_content','field_61767afceb8ba'),(200679,40849,'blocks_8_acfe_flexible_toggle',''),(200680,40849,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(200681,40849,'blocks_8_acfe_flexible_layout_title','Icons'),(200682,40849,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(200683,40849,'blocks_8_options_theme','#f5f5f5'),(200684,40849,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(200685,40849,'blocks_8_options_format','row'),(200686,40849,'_blocks_8_options_format','field_64bfde9a90690'),(200687,40849,'blocks_8_options',''),(200688,40849,'_blocks_8_options','field_64bfdd9b90684'),(200689,40849,'blocks_8_icon_row_items_0_icon','qualification.svg'),(200690,40849,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(200691,40849,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(200692,40849,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(200693,40849,'blocks_8_icon_row_items_0_text',''),(200694,40849,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(200695,40849,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(200696,40849,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(200697,40849,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(200698,40849,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(200699,40849,'blocks_8_icon_row_items_1_text',''),(200700,40849,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(200701,40849,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(200702,40849,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(200703,40849,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(200704,40849,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(200705,40849,'blocks_8_icon_row_items_2_text',''),(200706,40849,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(200707,40849,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(200708,40849,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(200709,40849,'blocks_8_icon_row_items_3_label','Flexible funding options'),(200710,40849,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(200711,40849,'blocks_8_icon_row_items_3_text',''),(200712,40849,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(200713,40849,'blocks_8_icon_row_items','4'),(200714,40849,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(200715,40849,'blocks_9_acfe_flexible_toggle',''),(200716,40849,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(200717,40849,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(200718,40849,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(200719,40849,'blocks_9_options_theme','#ffffff'),(200720,40849,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(200721,40849,'blocks_9_options_reverse','1'),(200722,40849,'_blocks_9_options_reverse','field_61768049bb8ac'),(200723,40849,'blocks_9_options',''),(200724,40849,'_blocks_9_options','field_617682517c334'),(200725,40849,'blocks_9_split_5050_image','39224'),(200726,40849,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(200727,40849,'blocks_9_split_5050_video',''),(200728,40849,'_blocks_9_split_5050_video','field_6239f3160848a'),(200729,40849,'blocks_9_split_5050_content_title','Locations'),(200730,40849,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(200731,40849,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(200732,40849,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(200733,40849,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(200734,40849,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(200735,40849,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(200736,40849,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(200737,40849,'blocks_9_split_5050_content_actions','1'),(200738,40849,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(200739,40849,'blocks_9_split_5050_content',''),(200740,40849,'_blocks_9_split_5050_content','field_61767afceb8ba'),(200741,40849,'blocks_1_acfe_flexible_toggle',''),(200742,40849,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(200743,40849,'blocks_1_acfe_flexible_layout_title','Video'),(200744,40849,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(200745,40849,'blocks_1_size','large'),(200746,40849,'_blocks_1_size','field_6487038f297c1'),(200747,40849,'blocks_1_row_content_title',''),(200748,40849,'_blocks_1_row_content_title','field_64870132a865d'),(200749,40849,'blocks_1_row_content_heading','Become a Biomechanics Coach'),(200750,40849,'_blocks_1_row_content_heading','field_64870142a865e'),(200751,40849,'blocks_1_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(200752,40849,'_blocks_1_row_content_text','field_64870148a865f'),(200753,40849,'blocks_1_row_content',''),(200754,40849,'_blocks_1_row_content','field_6487008ba865c'),(200755,40849,'blocks_1_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(200756,40849,'_blocks_1_video_src','field_6193c4a98ec07'),(200757,40849,'blocks_1_video_thumbnail',''),(200758,40849,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(200759,40849,'blocks_10_acfe_flexible_toggle',''),(200760,40849,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(200761,40849,'blocks_10_acfe_flexible_layout_title','Text Block'),(200762,40849,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(200763,40849,'blocks_10_options_theme','#ffffff'),(200764,40849,'_blocks_10_options_theme','field_6176830e2ad17'),(200765,40849,'blocks_10_options',''),(200766,40849,'_blocks_10_options','field_6176830e2ad16'),(200767,40849,'blocks_10_text_block_heading','Check out other relevant courses'),(200768,40849,'_blocks_10_text_block_heading','field_617669d413097'),(200769,40849,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(200770,40849,'_blocks_10_text_block_content','field_617669ec13098'),(200771,40849,'blocks_11_acfe_flexible_toggle',''),(200772,40849,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(200773,40849,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(200774,40849,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(200775,40849,'blocks_11_options_theme','#ffffff'),(200776,40849,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(200777,40849,'blocks_11_options',''),(200778,40849,'_blocks_11_options','field_617ac0b7f6c08'),(200779,40849,'blocks_11_show','selection'),(200780,40849,'_blocks_11_show','field_61a49cba9d946'),(200781,40849,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(200782,40849,'_blocks_11_courses','field_61b244781ee0a'),(200783,40849,'blocks_12_acfe_flexible_toggle',''),(200784,40849,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(200785,40849,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(200786,40849,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(200787,40849,'blocks_12_options_theme','#ffffff'),(200788,40849,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(200789,40849,'blocks_12_options_reverse','0'),(200790,40849,'_blocks_12_options_reverse','field_61768049bb8ac'),(200791,40849,'blocks_12_options',''),(200792,40849,'_blocks_12_options','field_617682517c334'),(200793,40849,'blocks_12_split_5050_image','40812'),(200794,40849,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(200795,40849,'blocks_12_split_5050_video',''),(200796,40849,'_blocks_12_split_5050_video','field_6239f3160848a'),(200797,40849,'blocks_12_split_5050_content_title','Optimise Performance '),(200798,40849,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(200799,40849,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(200800,40849,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(200801,40849,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(200802,40849,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(200803,40849,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(200804,40849,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(200805,40849,'blocks_12_split_5050_content_actions','1'),(200806,40849,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(200807,40849,'blocks_12_split_5050_content',''),(200808,40849,'_blocks_12_split_5050_content','field_61767afceb8ba'),(200809,40849,'blocks_13_acfe_flexible_toggle',''),(200810,40849,'_blocks_13_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(200811,40849,'blocks_13_acfe_flexible_layout_title','Standard/Editorial Content'),(200812,40849,'_blocks_13_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(200813,40849,'blocks_13_content','<h2 style=\"text-align: center;\">Working In Partnership</h2>\r\n<img class=\"size-full wp-image-40844 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/09/robrachel-partnership.png\" alt=\"\" width=\"552\" height=\"366\" />\r\n<p style=\"text-align: center;\">In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners and our network and will help us in our mission as we continue to look for new ways to make positive changes to the way we not only train our students but how we help shape the health and fitness industry.</p>\r\n<p style=\"text-align: center;\">As a combined force, both Future Fit and Biomechanics Education offer multiple benefits to you as the learner, including (but not exclusive to):</p>\r\n\r\n<ul>\r\n 	<li style=\"text-align: center;\">Access to Future Fit Student Zone for support and information</li>\r\n 	<li style=\"text-align: center;\">Discounts on businesses and brands you love</li>\r\n 	<li style=\"text-align: center;\">Our learning management system</li>\r\n 	<li style=\"text-align: center;\">Industry recognised training</li>\r\n 	<li style=\"text-align: center;\">Ongoing support during and after qualification</li>\r\n</ul>'),(200814,40849,'_blocks_13_content','field_6193c9b5eac84'),(200815,40849,'blocks_14_acfe_flexible_toggle',''),(200816,40849,'_blocks_14_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(200817,40849,'blocks_14_acfe_flexible_layout_title','Button(s)'),(200818,40849,'_blocks_14_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(200819,40849,'blocks_14_options_theme','#ffffff'),(200820,40849,'_blocks_14_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(200821,40849,'blocks_14_options',''),(200822,40849,'_blocks_14_options','field_623b03edb6e65'),(200823,40849,'blocks_14_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(200824,40849,'_blocks_14_actions_0_button','field_623b03edb6e6f'),(200825,40849,'blocks_14_actions','1'),(200826,40849,'_blocks_14_actions','field_623b03edb6e6e'),(200827,40849,'blocks_15_acfe_flexible_toggle',''),(200828,40849,'_blocks_15_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(200829,40849,'blocks_15_acfe_flexible_layout_title','Accordions / FAQs'),(200830,40849,'_blocks_15_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(200831,40849,'blocks_15_options_theme','#f5f5f5'),(200832,40849,'_blocks_15_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(200833,40849,'blocks_15_options_state','0'),(200834,40849,'_blocks_15_options_state','field_6239fcb7508c5'),(200835,40849,'blocks_15_options',''),(200836,40849,'_blocks_15_options','field_6177e2991ac44'),(200837,40849,'blocks_15_content_title',''),(200838,40849,'_blocks_15_content_title','field_64d237e8bb1e2'),(200839,40849,'blocks_15_content_heading','FAQ\'s'),(200840,40849,'_blocks_15_content_heading','field_64d237e8bb1e3'),(200841,40849,'blocks_15_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(200842,40849,'_blocks_15_content_text','field_64d237e8bb1e4'),(200843,40849,'blocks_15_content_actions',''),(200844,40849,'_blocks_15_content_actions','field_64d237e8bb1e5'),(200845,40849,'blocks_15_content_align','left'),(200846,40849,'_blocks_15_content_align','field_64d2443e6b6aa'),(200847,40849,'blocks_15_content',''),(200848,40849,'_blocks_15_content','field_64d237e8bb1e1'),(200849,40849,'blocks_15_accordion_content','faqs'),(200850,40849,'_blocks_15_accordion_content','field_6177e2c81ac4f'),(200851,40849,'blocks_15_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(200852,40849,'_blocks_15_accordion_faqs_select','field_6177e5f3633dd'),(200853,40849,'blocks_15_actions',''),(200854,40849,'_blocks_15_actions','field_61a746a817f7a'),(200855,40850,'hide_hero','0'),(200856,40850,'_hide_hero','field_66a2380fcda39'),(200857,40850,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(200858,40850,'_hero_title','field_617571fe285e8'),(200859,40850,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(200860,40850,'_hero_text','field_6175723c285e9'),(200861,40850,'hero_actions','1'),(200862,40850,'_hero_actions','field_61757270285ea'),(200863,40850,'hero_style','default'),(200864,40850,'_hero_style','field_62051d9dc5324'),(200865,40850,'_thumbnail_id','40848'),(200866,40850,'__thumbnail_id','field_617570855ddaf'),(200867,40850,'hero_image_pos_x','right'),(200868,40850,'_hero_image_pos_x','field_62ec3d05390bb'),(200869,40850,'hero_image_pos_y','top'),(200870,40850,'_hero_image_pos_y','field_62ec3d05390bc'),(200871,40850,'hero_image_pos',''),(200872,40850,'_hero_image_pos','field_62ec3d05390ba'),(200873,40850,'fft_hide_from_listings','0'),(200874,40850,'_fft_hide_from_listings','field_61f1320446ab2'),(200875,40850,'fft_page_format','default'),(200876,40850,'_fft_page_format','field_61ae213f1f218'),(200877,40850,'fft_hide_nav','0'),(200878,40850,'_fft_hide_nav','field_635bd5e43527c'),(200879,40850,'fft_hide_header_call_to_action','0'),(200880,40850,'_fft_hide_header_call_to_action','field_635bd6723527d'),(200881,40850,'fft_page_sitemap','0'),(200882,40850,'_fft_page_sitemap','field_61af9b34e8181'),(200883,40850,'blocks','a:16:{i:0;s:5:\"icons\";i:1;s:5:\"video\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";i:13;s:16:\"standard_content\";i:14;s:7:\"buttons\";i:15;s:10:\"accordions\";}'),(200884,40850,'_blocks','field_6176696113096'),(200885,40850,'course_label_text',''),(200886,40850,'_course_label_text','field_61e17babf71fa'),(200887,40850,'course_label',''),(200888,40850,'_course_label','field_61e12f92749a7'),(200889,40850,'course_description',''),(200890,40850,'_course_description','field_617ac5788e5e1'),(200891,40850,'course_key_info',''),(200892,40850,'_course_key_info','field_617ac6ad8e5e2'),(200893,40850,'course_included',''),(200894,40850,'_course_included','field_617ac6f08e5e4'),(200895,40850,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(200896,40850,'_hero_actions_0_button','field_61757281285eb'),(200897,40850,'blocks_0_acfe_flexible_toggle',''),(200898,40850,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(200899,40850,'blocks_0_acfe_flexible_layout_title','Icons'),(200900,40850,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(200901,40850,'blocks_0_options_theme','#b61234'),(200902,40850,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(200903,40850,'blocks_0_options_format','row'),(200904,40850,'_blocks_0_options_format','field_64bfde9a90690'),(200905,40850,'blocks_0_options',''),(200906,40850,'_blocks_0_options','field_64bfdd9b90684'),(200907,40850,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(200908,40850,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(200909,40850,'blocks_0_icon_row_items_0_label','Accreditation'),(200910,40850,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(200911,40850,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(200912,40850,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(200913,40850,'blocks_0_icon_row_items_1_icon','finance.svg'),(200914,40850,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(200915,40850,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(200916,40850,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(200917,40850,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(200918,40850,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(200919,40850,'blocks_0_icon_row_items_2_icon','progression.svg'),(200920,40850,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(200921,40850,'blocks_0_icon_row_items_2_label','Earning Potential'),(200922,40850,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(200923,40850,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(200924,40850,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(200925,40850,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(200926,40850,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(200927,40850,'blocks_0_icon_row_items_3_label','Qualification'),(200928,40850,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(200929,40850,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(200930,40850,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(200931,40850,'blocks_0_icon_row_items','4'),(200932,40850,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(200933,40850,'blocks_5_acfe_flexible_toggle','1'),(200934,40850,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(200935,40850,'blocks_5_acfe_flexible_layout_title','Tabs'),(200936,40850,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(200937,40850,'blocks_5_options_theme','#ffffff'),(200938,40850,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(200939,40850,'blocks_5_options',''),(200940,40850,'_blocks_5_options','field_6177cfcd8140f'),(200941,40850,'blocks_5_tabs_0_tab_label','Entry requirements'),(200942,40850,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(200943,40850,'blocks_5_tabs_0_tab_content_title',''),(200944,40850,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(200945,40850,'blocks_5_tabs_0_tab_content_heading',''),(200946,40850,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(200947,40850,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(200948,40850,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(200949,40850,'blocks_5_tabs_0_tab_content_actions',''),(200950,40850,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(200951,40850,'blocks_5_tabs_0_tab_content',''),(200952,40850,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(200953,40850,'blocks_5_tabs_0_tab_image',''),(200954,40850,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(200955,40850,'blocks_5_tabs_1_tab_label','Learning format'),(200956,40850,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(200957,40850,'blocks_5_tabs_1_tab_content_title',''),(200958,40850,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(200959,40850,'blocks_5_tabs_1_tab_content_heading',''),(200960,40850,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(200961,40850,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(200962,40850,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(200963,40850,'blocks_5_tabs_1_tab_content_actions',''),(200964,40850,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(200965,40850,'blocks_5_tabs_1_tab_content',''),(200966,40850,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(200967,40850,'blocks_5_tabs_1_tab_image',''),(200968,40850,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(200969,40850,'blocks_5_tabs_2_tab_label','Qualifications included'),(200970,40850,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(200971,40850,'blocks_5_tabs_2_tab_content_title',''),(200972,40850,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(200973,40850,'blocks_5_tabs_2_tab_content_heading',''),(200974,40850,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(200975,40850,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(200976,40850,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(200977,40850,'blocks_5_tabs_2_tab_content_actions',''),(200978,40850,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(200979,40850,'blocks_5_tabs_2_tab_content',''),(200980,40850,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(200981,40850,'blocks_5_tabs_2_tab_image',''),(200982,40850,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(200983,40850,'blocks_5_tabs','3'),(200984,40850,'_blocks_5_tabs','field_6177cff281419'),(200985,40850,'blocks_2_acfe_flexible_toggle',''),(200986,40850,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(200987,40850,'blocks_2_acfe_flexible_layout_title','Form'),(200988,40850,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(200989,40850,'blocks_2_row_content_format','standard'),(200990,40850,'_blocks_2_row_content_format','field_6481ead962881'),(200991,40850,'blocks_2_row_content_title',''),(200992,40850,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(200993,40850,'blocks_2_row_content_heading','Level 4 Personal Trainer Course'),(200994,40850,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(200995,40850,'blocks_2_row_content_text','Fill out the form to receive a price guide.'),(200996,40850,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(200997,40850,'blocks_2_row_content_actions',''),(200998,40850,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(200999,40850,'blocks_2_row_content',''),(201000,40850,'_blocks_2_row_content','field_61a0f5f5b3db0'),(201001,40850,'blocks_2_row_form','40394'),(201002,40850,'_blocks_2_row_form','field_61a4ff2c0b08e'),(201003,40850,'blocks_2_row_form_button_label',''),(201004,40850,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(201005,40850,'blocks_3_acfe_flexible_toggle',''),(201006,40850,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(201007,40850,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(201008,40850,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(201009,40850,'blocks_3_options_theme','#ffffff'),(201010,40850,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(201011,40850,'blocks_3_options_reverse','0'),(201012,40850,'_blocks_3_options_reverse','field_61768049bb8ac'),(201013,40850,'blocks_3_options',''),(201014,40850,'_blocks_3_options','field_617682517c334'),(201015,40850,'blocks_3_split_5050_image','40785'),(201016,40850,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(201017,40850,'blocks_3_split_5050_video',''),(201018,40850,'_blocks_3_split_5050_video','field_6239f3160848a'),(201019,40850,'blocks_3_split_5050_content_title',''),(201020,40850,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(201021,40850,'blocks_3_split_5050_content_heading','Course Overview'),(201022,40850,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(201023,40850,'blocks_3_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(201024,40850,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(201025,40850,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201026,40850,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(201027,40850,'blocks_3_split_5050_content_actions','1'),(201028,40850,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(201029,40850,'blocks_3_split_5050_content',''),(201030,40850,'_blocks_3_split_5050_content','field_61767afceb8ba'),(201031,40850,'blocks_4_acfe_flexible_toggle',''),(201032,40850,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(201033,40850,'blocks_4_acfe_flexible_layout_title','Template'),(201034,40850,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(201035,40850,'blocks_4_template','39207'),(201036,40850,'_blocks_4_template','field_617bdd570fe01'),(201037,40850,'blocks_6_acfe_flexible_toggle',''),(201038,40850,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(201039,40850,'blocks_6_acfe_flexible_layout_title','Icons'),(201040,40850,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(201041,40850,'blocks_6_options_theme','#f5f5f5'),(201042,40850,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(201043,40850,'blocks_6_options_format','stacked'),(201044,40850,'_blocks_6_options_format','field_64bfde9a90690'),(201045,40850,'blocks_6_options',''),(201046,40850,'_blocks_6_options','field_64bfdd9b90684'),(201047,40850,'blocks_6_row_content_title','Options available to pay for your course'),(201048,40850,'_blocks_6_row_content_title','field_64bfdd9b90687'),(201049,40850,'blocks_6_row_content_heading','Payment Options'),(201050,40850,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(201051,40850,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(201052,40850,'_blocks_6_row_content_text','field_64bfdd9b90689'),(201053,40850,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201054,40850,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(201055,40850,'blocks_6_row_content_actions','1'),(201056,40850,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(201057,40850,'blocks_6_row_content',''),(201058,40850,'_blocks_6_row_content','field_64bfdd9b90686'),(201059,40850,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(201060,40850,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(201061,40850,'blocks_6_icon_row_items_0_label','Pay your course in full'),(201062,40850,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(201063,40850,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(201064,40850,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(201065,40850,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(201066,40850,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(201067,40850,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(201068,40850,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(201069,40850,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(201070,40850,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(201071,40850,'blocks_6_icon_row_items','2'),(201072,40850,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(201073,40850,'blocks_7_acfe_flexible_toggle',''),(201074,40850,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(201075,40850,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(201076,40850,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(201077,40850,'blocks_7_options_theme','#ffffff'),(201078,40850,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(201079,40850,'blocks_7_options_reverse','0'),(201080,40850,'_blocks_7_options_reverse','field_61768049bb8ac'),(201081,40850,'blocks_7_options',''),(201082,40850,'_blocks_7_options','field_617682517c334'),(201083,40850,'blocks_7_split_5050_image','40817'),(201084,40850,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(201085,40850,'blocks_7_split_5050_video',''),(201086,40850,'_blocks_7_split_5050_video','field_6239f3160848a'),(201087,40850,'blocks_7_split_5050_content_title',''),(201088,40850,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(201089,40850,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(201090,40850,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(201091,40850,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(201092,40850,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(201093,40850,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201094,40850,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(201095,40850,'blocks_7_split_5050_content_actions','1'),(201096,40850,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(201097,40850,'blocks_7_split_5050_content',''),(201098,40850,'_blocks_7_split_5050_content','field_61767afceb8ba'),(201099,40850,'blocks_8_acfe_flexible_toggle',''),(201100,40850,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(201101,40850,'blocks_8_acfe_flexible_layout_title','Icons'),(201102,40850,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(201103,40850,'blocks_8_options_theme','#f5f5f5'),(201104,40850,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(201105,40850,'blocks_8_options_format','row'),(201106,40850,'_blocks_8_options_format','field_64bfde9a90690'),(201107,40850,'blocks_8_options',''),(201108,40850,'_blocks_8_options','field_64bfdd9b90684'),(201109,40850,'blocks_8_icon_row_items_0_icon','qualification.svg'),(201110,40850,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(201111,40850,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(201112,40850,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(201113,40850,'blocks_8_icon_row_items_0_text',''),(201114,40850,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(201115,40850,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(201116,40850,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(201117,40850,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(201118,40850,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(201119,40850,'blocks_8_icon_row_items_1_text',''),(201120,40850,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(201121,40850,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(201122,40850,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(201123,40850,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(201124,40850,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(201125,40850,'blocks_8_icon_row_items_2_text',''),(201126,40850,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(201127,40850,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(201128,40850,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(201129,40850,'blocks_8_icon_row_items_3_label','Flexible funding options'),(201130,40850,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(201131,40850,'blocks_8_icon_row_items_3_text',''),(201132,40850,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(201133,40850,'blocks_8_icon_row_items','4'),(201134,40850,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(201135,40850,'blocks_9_acfe_flexible_toggle',''),(201136,40850,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(201137,40850,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(201138,40850,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(201139,40850,'blocks_9_options_theme','#ffffff'),(201140,40850,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(201141,40850,'blocks_9_options_reverse','1'),(201142,40850,'_blocks_9_options_reverse','field_61768049bb8ac'),(201143,40850,'blocks_9_options',''),(201144,40850,'_blocks_9_options','field_617682517c334'),(201145,40850,'blocks_9_split_5050_image','39224'),(201146,40850,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(201147,40850,'blocks_9_split_5050_video',''),(201148,40850,'_blocks_9_split_5050_video','field_6239f3160848a'),(201149,40850,'blocks_9_split_5050_content_title','Locations'),(201150,40850,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(201151,40850,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(201152,40850,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(201153,40850,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(201154,40850,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(201155,40850,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201156,40850,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(201157,40850,'blocks_9_split_5050_content_actions','1'),(201158,40850,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(201159,40850,'blocks_9_split_5050_content',''),(201160,40850,'_blocks_9_split_5050_content','field_61767afceb8ba'),(201161,40850,'blocks_1_acfe_flexible_toggle',''),(201162,40850,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(201163,40850,'blocks_1_acfe_flexible_layout_title','Video'),(201164,40850,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(201165,40850,'blocks_1_size','large'),(201166,40850,'_blocks_1_size','field_6487038f297c1'),(201167,40850,'blocks_1_row_content_title',''),(201168,40850,'_blocks_1_row_content_title','field_64870132a865d'),(201169,40850,'blocks_1_row_content_heading','Become a Biomechanics Coach'),(201170,40850,'_blocks_1_row_content_heading','field_64870142a865e'),(201171,40850,'blocks_1_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(201172,40850,'_blocks_1_row_content_text','field_64870148a865f'),(201173,40850,'blocks_1_row_content',''),(201174,40850,'_blocks_1_row_content','field_6487008ba865c'),(201175,40850,'blocks_1_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(201176,40850,'_blocks_1_video_src','field_6193c4a98ec07'),(201177,40850,'blocks_1_video_thumbnail',''),(201178,40850,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(201179,40850,'blocks_10_acfe_flexible_toggle',''),(201180,40850,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(201181,40850,'blocks_10_acfe_flexible_layout_title','Text Block'),(201182,40850,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(201183,40850,'blocks_10_options_theme','#ffffff'),(201184,40850,'_blocks_10_options_theme','field_6176830e2ad17'),(201185,40850,'blocks_10_options',''),(201186,40850,'_blocks_10_options','field_6176830e2ad16'),(201187,40850,'blocks_10_text_block_heading','Check out other relevant courses'),(201188,40850,'_blocks_10_text_block_heading','field_617669d413097'),(201189,40850,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(201190,40850,'_blocks_10_text_block_content','field_617669ec13098'),(201191,40850,'blocks_11_acfe_flexible_toggle',''),(201192,40850,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(201193,40850,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(201194,40850,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(201195,40850,'blocks_11_options_theme','#ffffff'),(201196,40850,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(201197,40850,'blocks_11_options',''),(201198,40850,'_blocks_11_options','field_617ac0b7f6c08'),(201199,40850,'blocks_11_show','selection'),(201200,40850,'_blocks_11_show','field_61a49cba9d946'),(201201,40850,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(201202,40850,'_blocks_11_courses','field_61b244781ee0a'),(201203,40850,'blocks_12_acfe_flexible_toggle',''),(201204,40850,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(201205,40850,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(201206,40850,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(201207,40850,'blocks_12_options_theme','#ffffff'),(201208,40850,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(201209,40850,'blocks_12_options_reverse','0'),(201210,40850,'_blocks_12_options_reverse','field_61768049bb8ac'),(201211,40850,'blocks_12_options',''),(201212,40850,'_blocks_12_options','field_617682517c334'),(201213,40850,'blocks_12_split_5050_image','40812'),(201214,40850,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(201215,40850,'blocks_12_split_5050_video',''),(201216,40850,'_blocks_12_split_5050_video','field_6239f3160848a'),(201217,40850,'blocks_12_split_5050_content_title','Optimise Performance '),(201218,40850,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(201219,40850,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(201220,40850,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(201221,40850,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(201222,40850,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(201223,40850,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(201224,40850,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(201225,40850,'blocks_12_split_5050_content_actions','1'),(201226,40850,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(201227,40850,'blocks_12_split_5050_content',''),(201228,40850,'_blocks_12_split_5050_content','field_61767afceb8ba'),(201229,40850,'blocks_13_acfe_flexible_toggle',''),(201230,40850,'_blocks_13_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(201231,40850,'blocks_13_acfe_flexible_layout_title','Standard/Editorial Content'),(201232,40850,'_blocks_13_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(201233,40850,'blocks_13_content','<h2 style=\"text-align: center;\">Working In Partnership</h2>\r\n<img class=\"size-full wp-image-40844 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/09/robrachel-partnership.png\" alt=\"\" width=\"552\" height=\"366\" />\r\n<p style=\"text-align: center;\">In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners and our network and will help us in our mission as we continue to look for new ways to make positive changes to the way we not only train our students but how we help shape the health and fitness industry.</p>\r\n<p style=\"text-align: center;\">As a combined force, both Future Fit and Biomechanics Education offer multiple benefits to you as the learner, including (but not exclusive to):</p>\r\n\r\n<ul>\r\n 	<li style=\"text-align: center;\">Access to Future Fit Student Zone for support and information</li>\r\n 	<li style=\"text-align: center;\">Discounts on businesses and brands you love</li>\r\n 	<li style=\"text-align: center;\">Our learning management system</li>\r\n 	<li style=\"text-align: center;\">Industry recognised training</li>\r\n 	<li style=\"text-align: center;\">Ongoing support during and after qualification</li>\r\n</ul>'),(201234,40850,'_blocks_13_content','field_6193c9b5eac84'),(201235,40850,'blocks_14_acfe_flexible_toggle',''),(201236,40850,'_blocks_14_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(201237,40850,'blocks_14_acfe_flexible_layout_title','Button(s)'),(201238,40850,'_blocks_14_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(201239,40850,'blocks_14_options_theme','#ffffff'),(201240,40850,'_blocks_14_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(201241,40850,'blocks_14_options',''),(201242,40850,'_blocks_14_options','field_623b03edb6e65'),(201243,40850,'blocks_14_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(201244,40850,'_blocks_14_actions_0_button','field_623b03edb6e6f'),(201245,40850,'blocks_14_actions','1'),(201246,40850,'_blocks_14_actions','field_623b03edb6e6e'),(201247,40850,'blocks_15_acfe_flexible_toggle',''),(201248,40850,'_blocks_15_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(201249,40850,'blocks_15_acfe_flexible_layout_title','Accordions / FAQs'),(201250,40850,'_blocks_15_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(201251,40850,'blocks_15_options_theme','#f5f5f5'),(201252,40850,'_blocks_15_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(201253,40850,'blocks_15_options_state','0'),(201254,40850,'_blocks_15_options_state','field_6239fcb7508c5'),(201255,40850,'blocks_15_options',''),(201256,40850,'_blocks_15_options','field_6177e2991ac44'),(201257,40850,'blocks_15_content_title',''),(201258,40850,'_blocks_15_content_title','field_64d237e8bb1e2'),(201259,40850,'blocks_15_content_heading','FAQ\'s'),(201260,40850,'_blocks_15_content_heading','field_64d237e8bb1e3'),(201261,40850,'blocks_15_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(201262,40850,'_blocks_15_content_text','field_64d237e8bb1e4'),(201263,40850,'blocks_15_content_actions',''),(201264,40850,'_blocks_15_content_actions','field_64d237e8bb1e5'),(201265,40850,'blocks_15_content_align','left'),(201266,40850,'_blocks_15_content_align','field_64d2443e6b6aa'),(201267,40850,'blocks_15_content',''),(201268,40850,'_blocks_15_content','field_64d237e8bb1e1'),(201269,40850,'blocks_15_accordion_content','faqs'),(201270,40850,'_blocks_15_accordion_content','field_6177e2c81ac4f'),(201271,40850,'blocks_15_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(201272,40850,'_blocks_15_accordion_faqs_select','field_6177e5f3633dd'),(201273,40850,'blocks_15_actions',''),(201274,40850,'_blocks_15_actions','field_61a746a817f7a'),(201275,40851,'hide_hero','0'),(201276,40851,'_hide_hero','field_66a2380fcda39'),(201277,40851,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(201278,40851,'_hero_title','field_617571fe285e8'),(201279,40851,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(201280,40851,'_hero_text','field_6175723c285e9'),(201281,40851,'hero_actions','1'),(201282,40851,'_hero_actions','field_61757270285ea'),(201283,40851,'hero_style','default'),(201284,40851,'_hero_style','field_62051d9dc5324'),(201285,40851,'_thumbnail_id','40848'),(201286,40851,'__thumbnail_id','field_617570855ddaf'),(201287,40851,'hero_image_pos_x','right'),(201288,40851,'_hero_image_pos_x','field_62ec3d05390bb'),(201289,40851,'hero_image_pos_y','top'),(201290,40851,'_hero_image_pos_y','field_62ec3d05390bc'),(201291,40851,'hero_image_pos',''),(201292,40851,'_hero_image_pos','field_62ec3d05390ba'),(201293,40851,'fft_hide_from_listings','0'),(201294,40851,'_fft_hide_from_listings','field_61f1320446ab2'),(201295,40851,'fft_page_format','default'),(201296,40851,'_fft_page_format','field_61ae213f1f218'),(201297,40851,'fft_hide_nav','0'),(201298,40851,'_fft_hide_nav','field_635bd5e43527c'),(201299,40851,'fft_hide_header_call_to_action','0'),(201300,40851,'_fft_hide_header_call_to_action','field_635bd6723527d'),(201301,40851,'fft_page_sitemap','0'),(201302,40851,'_fft_page_sitemap','field_61af9b34e8181'),(201303,40851,'blocks','a:16:{i:0;s:5:\"icons\";i:1;s:5:\"video\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";i:13;s:16:\"standard_content\";i:14;s:7:\"buttons\";i:15;s:10:\"accordions\";}'),(201304,40851,'_blocks','field_6176696113096'),(201305,40851,'course_label_text',''),(201306,40851,'_course_label_text','field_61e17babf71fa'),(201307,40851,'course_label',''),(201308,40851,'_course_label','field_61e12f92749a7'),(201309,40851,'course_description',''),(201310,40851,'_course_description','field_617ac5788e5e1'),(201311,40851,'course_key_info',''),(201312,40851,'_course_key_info','field_617ac6ad8e5e2'),(201313,40851,'course_included',''),(201314,40851,'_course_included','field_617ac6f08e5e4'),(201315,40851,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201316,40851,'_hero_actions_0_button','field_61757281285eb'),(201317,40851,'blocks_0_acfe_flexible_toggle',''),(201318,40851,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(201319,40851,'blocks_0_acfe_flexible_layout_title','Icons'),(201320,40851,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(201321,40851,'blocks_0_options_theme','#b61234'),(201322,40851,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(201323,40851,'blocks_0_options_format','row'),(201324,40851,'_blocks_0_options_format','field_64bfde9a90690'),(201325,40851,'blocks_0_options',''),(201326,40851,'_blocks_0_options','field_64bfdd9b90684'),(201327,40851,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(201328,40851,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(201329,40851,'blocks_0_icon_row_items_0_label','Accreditation'),(201330,40851,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(201331,40851,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(201332,40851,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(201333,40851,'blocks_0_icon_row_items_1_icon','finance.svg'),(201334,40851,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(201335,40851,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(201336,40851,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(201337,40851,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(201338,40851,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(201339,40851,'blocks_0_icon_row_items_2_icon','progression.svg'),(201340,40851,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(201341,40851,'blocks_0_icon_row_items_2_label','Earning Potential'),(201342,40851,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(201343,40851,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(201344,40851,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(201345,40851,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(201346,40851,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(201347,40851,'blocks_0_icon_row_items_3_label','Qualification'),(201348,40851,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(201349,40851,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(201350,40851,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(201351,40851,'blocks_0_icon_row_items','4'),(201352,40851,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(201353,40851,'blocks_5_acfe_flexible_toggle','1'),(201354,40851,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(201355,40851,'blocks_5_acfe_flexible_layout_title','Tabs'),(201356,40851,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(201357,40851,'blocks_5_options_theme','#ffffff'),(201358,40851,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(201359,40851,'blocks_5_options',''),(201360,40851,'_blocks_5_options','field_6177cfcd8140f'),(201361,40851,'blocks_5_tabs_0_tab_label','Entry requirements'),(201362,40851,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(201363,40851,'blocks_5_tabs_0_tab_content_title',''),(201364,40851,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(201365,40851,'blocks_5_tabs_0_tab_content_heading',''),(201366,40851,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(201367,40851,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(201368,40851,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(201369,40851,'blocks_5_tabs_0_tab_content_actions',''),(201370,40851,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(201371,40851,'blocks_5_tabs_0_tab_content',''),(201372,40851,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(201373,40851,'blocks_5_tabs_0_tab_image',''),(201374,40851,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(201375,40851,'blocks_5_tabs_1_tab_label','Learning format'),(201376,40851,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(201377,40851,'blocks_5_tabs_1_tab_content_title',''),(201378,40851,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(201379,40851,'blocks_5_tabs_1_tab_content_heading',''),(201380,40851,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(201381,40851,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(201382,40851,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(201383,40851,'blocks_5_tabs_1_tab_content_actions',''),(201384,40851,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(201385,40851,'blocks_5_tabs_1_tab_content',''),(201386,40851,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(201387,40851,'blocks_5_tabs_1_tab_image',''),(201388,40851,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(201389,40851,'blocks_5_tabs_2_tab_label','Qualifications included'),(201390,40851,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(201391,40851,'blocks_5_tabs_2_tab_content_title',''),(201392,40851,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(201393,40851,'blocks_5_tabs_2_tab_content_heading',''),(201394,40851,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(201395,40851,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(201396,40851,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(201397,40851,'blocks_5_tabs_2_tab_content_actions',''),(201398,40851,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(201399,40851,'blocks_5_tabs_2_tab_content',''),(201400,40851,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(201401,40851,'blocks_5_tabs_2_tab_image',''),(201402,40851,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(201403,40851,'blocks_5_tabs','3'),(201404,40851,'_blocks_5_tabs','field_6177cff281419'),(201405,40851,'blocks_2_acfe_flexible_toggle',''),(201406,40851,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(201407,40851,'blocks_2_acfe_flexible_layout_title','Form'),(201408,40851,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(201409,40851,'blocks_2_row_content_format','standard'),(201410,40851,'_blocks_2_row_content_format','field_6481ead962881'),(201411,40851,'blocks_2_row_content_title',''),(201412,40851,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(201413,40851,'blocks_2_row_content_heading','Enquire Today'),(201414,40851,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(201415,40851,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(201416,40851,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(201417,40851,'blocks_2_row_content_actions',''),(201418,40851,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(201419,40851,'blocks_2_row_content',''),(201420,40851,'_blocks_2_row_content','field_61a0f5f5b3db0'),(201421,40851,'blocks_2_row_form','40394'),(201422,40851,'_blocks_2_row_form','field_61a4ff2c0b08e'),(201423,40851,'blocks_2_row_form_button_label',''),(201424,40851,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(201425,40851,'blocks_3_acfe_flexible_toggle',''),(201426,40851,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(201427,40851,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(201428,40851,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(201429,40851,'blocks_3_options_theme','#ffffff'),(201430,40851,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(201431,40851,'blocks_3_options_reverse','0'),(201432,40851,'_blocks_3_options_reverse','field_61768049bb8ac'),(201433,40851,'blocks_3_options',''),(201434,40851,'_blocks_3_options','field_617682517c334'),(201435,40851,'blocks_3_split_5050_image','40785'),(201436,40851,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(201437,40851,'blocks_3_split_5050_video',''),(201438,40851,'_blocks_3_split_5050_video','field_6239f3160848a'),(201439,40851,'blocks_3_split_5050_content_title',''),(201440,40851,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(201441,40851,'blocks_3_split_5050_content_heading','Course Overview'),(201442,40851,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(201443,40851,'blocks_3_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(201444,40851,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(201445,40851,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201446,40851,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(201447,40851,'blocks_3_split_5050_content_actions','1'),(201448,40851,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(201449,40851,'blocks_3_split_5050_content',''),(201450,40851,'_blocks_3_split_5050_content','field_61767afceb8ba'),(201451,40851,'blocks_4_acfe_flexible_toggle',''),(201452,40851,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(201453,40851,'blocks_4_acfe_flexible_layout_title','Template'),(201454,40851,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(201455,40851,'blocks_4_template','39207'),(201456,40851,'_blocks_4_template','field_617bdd570fe01'),(201457,40851,'blocks_6_acfe_flexible_toggle',''),(201458,40851,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(201459,40851,'blocks_6_acfe_flexible_layout_title','Icons'),(201460,40851,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(201461,40851,'blocks_6_options_theme','#f5f5f5'),(201462,40851,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(201463,40851,'blocks_6_options_format','stacked'),(201464,40851,'_blocks_6_options_format','field_64bfde9a90690'),(201465,40851,'blocks_6_options',''),(201466,40851,'_blocks_6_options','field_64bfdd9b90684'),(201467,40851,'blocks_6_row_content_title','Options available to pay for your course'),(201468,40851,'_blocks_6_row_content_title','field_64bfdd9b90687'),(201469,40851,'blocks_6_row_content_heading','Payment Options'),(201470,40851,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(201471,40851,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(201472,40851,'_blocks_6_row_content_text','field_64bfdd9b90689'),(201473,40851,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201474,40851,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(201475,40851,'blocks_6_row_content_actions','1'),(201476,40851,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(201477,40851,'blocks_6_row_content',''),(201478,40851,'_blocks_6_row_content','field_64bfdd9b90686'),(201479,40851,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(201480,40851,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(201481,40851,'blocks_6_icon_row_items_0_label','Pay your course in full'),(201482,40851,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(201483,40851,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(201484,40851,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(201485,40851,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(201486,40851,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(201487,40851,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(201488,40851,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(201489,40851,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(201490,40851,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(201491,40851,'blocks_6_icon_row_items','2'),(201492,40851,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(201493,40851,'blocks_7_acfe_flexible_toggle',''),(201494,40851,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(201495,40851,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(201496,40851,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(201497,40851,'blocks_7_options_theme','#ffffff'),(201498,40851,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(201499,40851,'blocks_7_options_reverse','0'),(201500,40851,'_blocks_7_options_reverse','field_61768049bb8ac'),(201501,40851,'blocks_7_options',''),(201502,40851,'_blocks_7_options','field_617682517c334'),(201503,40851,'blocks_7_split_5050_image','40817'),(201504,40851,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(201505,40851,'blocks_7_split_5050_video',''),(201506,40851,'_blocks_7_split_5050_video','field_6239f3160848a'),(201507,40851,'blocks_7_split_5050_content_title',''),(201508,40851,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(201509,40851,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(201510,40851,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(201511,40851,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(201512,40851,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(201513,40851,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201514,40851,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(201515,40851,'blocks_7_split_5050_content_actions','1'),(201516,40851,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(201517,40851,'blocks_7_split_5050_content',''),(201518,40851,'_blocks_7_split_5050_content','field_61767afceb8ba'),(201519,40851,'blocks_8_acfe_flexible_toggle',''),(201520,40851,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(201521,40851,'blocks_8_acfe_flexible_layout_title','Icons'),(201522,40851,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(201523,40851,'blocks_8_options_theme','#f5f5f5'),(201524,40851,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(201525,40851,'blocks_8_options_format','row'),(201526,40851,'_blocks_8_options_format','field_64bfde9a90690'),(201527,40851,'blocks_8_options',''),(201528,40851,'_blocks_8_options','field_64bfdd9b90684'),(201529,40851,'blocks_8_icon_row_items_0_icon','qualification.svg'),(201530,40851,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(201531,40851,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(201532,40851,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(201533,40851,'blocks_8_icon_row_items_0_text',''),(201534,40851,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(201535,40851,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(201536,40851,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(201537,40851,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(201538,40851,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(201539,40851,'blocks_8_icon_row_items_1_text',''),(201540,40851,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(201541,40851,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(201542,40851,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(201543,40851,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(201544,40851,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(201545,40851,'blocks_8_icon_row_items_2_text',''),(201546,40851,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(201547,40851,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(201548,40851,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(201549,40851,'blocks_8_icon_row_items_3_label','Flexible funding options'),(201550,40851,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(201551,40851,'blocks_8_icon_row_items_3_text',''),(201552,40851,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(201553,40851,'blocks_8_icon_row_items','4'),(201554,40851,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(201555,40851,'blocks_9_acfe_flexible_toggle',''),(201556,40851,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(201557,40851,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(201558,40851,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(201559,40851,'blocks_9_options_theme','#ffffff'),(201560,40851,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(201561,40851,'blocks_9_options_reverse','1'),(201562,40851,'_blocks_9_options_reverse','field_61768049bb8ac'),(201563,40851,'blocks_9_options',''),(201564,40851,'_blocks_9_options','field_617682517c334'),(201565,40851,'blocks_9_split_5050_image','39224'),(201566,40851,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(201567,40851,'blocks_9_split_5050_video',''),(201568,40851,'_blocks_9_split_5050_video','field_6239f3160848a'),(201569,40851,'blocks_9_split_5050_content_title','Locations'),(201570,40851,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(201571,40851,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(201572,40851,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(201573,40851,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(201574,40851,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(201575,40851,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201576,40851,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(201577,40851,'blocks_9_split_5050_content_actions','1'),(201578,40851,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(201579,40851,'blocks_9_split_5050_content',''),(201580,40851,'_blocks_9_split_5050_content','field_61767afceb8ba'),(201581,40851,'blocks_1_acfe_flexible_toggle',''),(201582,40851,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(201583,40851,'blocks_1_acfe_flexible_layout_title','Video'),(201584,40851,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(201585,40851,'blocks_1_size','large'),(201586,40851,'_blocks_1_size','field_6487038f297c1'),(201587,40851,'blocks_1_row_content_title',''),(201588,40851,'_blocks_1_row_content_title','field_64870132a865d'),(201589,40851,'blocks_1_row_content_heading','Become a Biomechanics Coach'),(201590,40851,'_blocks_1_row_content_heading','field_64870142a865e'),(201591,40851,'blocks_1_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(201592,40851,'_blocks_1_row_content_text','field_64870148a865f'),(201593,40851,'blocks_1_row_content',''),(201594,40851,'_blocks_1_row_content','field_6487008ba865c'),(201595,40851,'blocks_1_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(201596,40851,'_blocks_1_video_src','field_6193c4a98ec07'),(201597,40851,'blocks_1_video_thumbnail',''),(201598,40851,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(201599,40851,'blocks_10_acfe_flexible_toggle',''),(201600,40851,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(201601,40851,'blocks_10_acfe_flexible_layout_title','Text Block'),(201602,40851,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(201603,40851,'blocks_10_options_theme','#ffffff'),(201604,40851,'_blocks_10_options_theme','field_6176830e2ad17'),(201605,40851,'blocks_10_options',''),(201606,40851,'_blocks_10_options','field_6176830e2ad16'),(201607,40851,'blocks_10_text_block_heading','Check out other relevant courses'),(201608,40851,'_blocks_10_text_block_heading','field_617669d413097'),(201609,40851,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(201610,40851,'_blocks_10_text_block_content','field_617669ec13098'),(201611,40851,'blocks_11_acfe_flexible_toggle',''),(201612,40851,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(201613,40851,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(201614,40851,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(201615,40851,'blocks_11_options_theme','#ffffff'),(201616,40851,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(201617,40851,'blocks_11_options',''),(201618,40851,'_blocks_11_options','field_617ac0b7f6c08'),(201619,40851,'blocks_11_show','selection'),(201620,40851,'_blocks_11_show','field_61a49cba9d946'),(201621,40851,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(201622,40851,'_blocks_11_courses','field_61b244781ee0a'),(201623,40851,'blocks_12_acfe_flexible_toggle',''),(201624,40851,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(201625,40851,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(201626,40851,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(201627,40851,'blocks_12_options_theme','#ffffff'),(201628,40851,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(201629,40851,'blocks_12_options_reverse','0'),(201630,40851,'_blocks_12_options_reverse','field_61768049bb8ac'),(201631,40851,'blocks_12_options',''),(201632,40851,'_blocks_12_options','field_617682517c334'),(201633,40851,'blocks_12_split_5050_image','40812'),(201634,40851,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(201635,40851,'blocks_12_split_5050_video',''),(201636,40851,'_blocks_12_split_5050_video','field_6239f3160848a'),(201637,40851,'blocks_12_split_5050_content_title','Optimise Performance '),(201638,40851,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(201639,40851,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(201640,40851,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(201641,40851,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(201642,40851,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(201643,40851,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(201644,40851,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(201645,40851,'blocks_12_split_5050_content_actions','1'),(201646,40851,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(201647,40851,'blocks_12_split_5050_content',''),(201648,40851,'_blocks_12_split_5050_content','field_61767afceb8ba'),(201649,40851,'blocks_13_acfe_flexible_toggle',''),(201650,40851,'_blocks_13_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(201651,40851,'blocks_13_acfe_flexible_layout_title','Standard/Editorial Content'),(201652,40851,'_blocks_13_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(201653,40851,'blocks_13_content','<h2 style=\"text-align: center;\">Working In Partnership</h2>\r\n<img class=\"size-full wp-image-40844 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/09/robrachel-partnership.png\" alt=\"\" width=\"552\" height=\"366\" />\r\n<p style=\"text-align: center;\">In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners and our network and will help us in our mission as we continue to look for new ways to make positive changes to the way we not only train our students but how we help shape the health and fitness industry.</p>\r\n<p style=\"text-align: center;\">As a combined force, both Future Fit and Biomechanics Education offer multiple benefits to you as the learner, including (but not exclusive to):</p>\r\n\r\n<ul>\r\n 	<li style=\"text-align: center;\">Access to Future Fit Student Zone for support and information</li>\r\n 	<li style=\"text-align: center;\">Discounts on businesses and brands you love</li>\r\n 	<li style=\"text-align: center;\">Our learning management system</li>\r\n 	<li style=\"text-align: center;\">Industry recognised training</li>\r\n 	<li style=\"text-align: center;\">Ongoing support during and after qualification</li>\r\n</ul>'),(201654,40851,'_blocks_13_content','field_6193c9b5eac84'),(201655,40851,'blocks_14_acfe_flexible_toggle',''),(201656,40851,'_blocks_14_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(201657,40851,'blocks_14_acfe_flexible_layout_title','Button(s)'),(201658,40851,'_blocks_14_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(201659,40851,'blocks_14_options_theme','#ffffff'),(201660,40851,'_blocks_14_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(201661,40851,'blocks_14_options',''),(201662,40851,'_blocks_14_options','field_623b03edb6e65'),(201663,40851,'blocks_14_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(201664,40851,'_blocks_14_actions_0_button','field_623b03edb6e6f'),(201665,40851,'blocks_14_actions','1'),(201666,40851,'_blocks_14_actions','field_623b03edb6e6e'),(201667,40851,'blocks_15_acfe_flexible_toggle',''),(201668,40851,'_blocks_15_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(201669,40851,'blocks_15_acfe_flexible_layout_title','Accordions / FAQs'),(201670,40851,'_blocks_15_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(201671,40851,'blocks_15_options_theme','#f5f5f5'),(201672,40851,'_blocks_15_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(201673,40851,'blocks_15_options_state','0'),(201674,40851,'_blocks_15_options_state','field_6239fcb7508c5'),(201675,40851,'blocks_15_options',''),(201676,40851,'_blocks_15_options','field_6177e2991ac44'),(201677,40851,'blocks_15_content_title',''),(201678,40851,'_blocks_15_content_title','field_64d237e8bb1e2'),(201679,40851,'blocks_15_content_heading','FAQ\'s'),(201680,40851,'_blocks_15_content_heading','field_64d237e8bb1e3'),(201681,40851,'blocks_15_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(201682,40851,'_blocks_15_content_text','field_64d237e8bb1e4'),(201683,40851,'blocks_15_content_actions',''),(201684,40851,'_blocks_15_content_actions','field_64d237e8bb1e5'),(201685,40851,'blocks_15_content_align','left'),(201686,40851,'_blocks_15_content_align','field_64d2443e6b6aa'),(201687,40851,'blocks_15_content',''),(201688,40851,'_blocks_15_content','field_64d237e8bb1e1'),(201689,40851,'blocks_15_accordion_content','faqs'),(201690,40851,'_blocks_15_accordion_content','field_6177e2c81ac4f'),(201691,40851,'blocks_15_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(201692,40851,'_blocks_15_accordion_faqs_select','field_6177e5f3633dd'),(201693,40851,'blocks_15_actions',''),(201694,40851,'_blocks_15_actions','field_61a746a817f7a'),(201695,40852,'hide_hero','0'),(201696,40852,'_hide_hero','field_66a2380fcda39'),(201697,40852,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(201698,40852,'_hero_title','field_617571fe285e8'),(201699,40852,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(201700,40852,'_hero_text','field_6175723c285e9'),(201701,40852,'hero_actions','1'),(201702,40852,'_hero_actions','field_61757270285ea'),(201703,40852,'hero_style','default'),(201704,40852,'_hero_style','field_62051d9dc5324'),(201705,40852,'_thumbnail_id','40848'),(201706,40852,'__thumbnail_id','field_617570855ddaf'),(201707,40852,'hero_image_pos_x','right'),(201708,40852,'_hero_image_pos_x','field_62ec3d05390bb'),(201709,40852,'hero_image_pos_y','top'),(201710,40852,'_hero_image_pos_y','field_62ec3d05390bc'),(201711,40852,'hero_image_pos',''),(201712,40852,'_hero_image_pos','field_62ec3d05390ba'),(201713,40852,'fft_hide_from_listings','0'),(201714,40852,'_fft_hide_from_listings','field_61f1320446ab2'),(201715,40852,'fft_page_format','default'),(201716,40852,'_fft_page_format','field_61ae213f1f218'),(201717,40852,'fft_hide_nav','0'),(201718,40852,'_fft_hide_nav','field_635bd5e43527c'),(201719,40852,'fft_hide_header_call_to_action','0'),(201720,40852,'_fft_hide_header_call_to_action','field_635bd6723527d'),(201721,40852,'fft_page_sitemap','0'),(201722,40852,'_fft_page_sitemap','field_61af9b34e8181'),(201723,40852,'blocks','a:16:{i:0;s:5:\"icons\";i:1;s:5:\"video\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";i:13;s:16:\"standard_content\";i:14;s:7:\"buttons\";i:15;s:10:\"accordions\";}'),(201724,40852,'_blocks','field_6176696113096'),(201725,40852,'course_label_text',''),(201726,40852,'_course_label_text','field_61e17babf71fa'),(201727,40852,'course_label',''),(201728,40852,'_course_label','field_61e12f92749a7'),(201729,40852,'course_description',''),(201730,40852,'_course_description','field_617ac5788e5e1'),(201731,40852,'course_key_info',''),(201732,40852,'_course_key_info','field_617ac6ad8e5e2'),(201733,40852,'course_included',''),(201734,40852,'_course_included','field_617ac6f08e5e4'),(201735,40852,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201736,40852,'_hero_actions_0_button','field_61757281285eb'),(201737,40852,'blocks_0_acfe_flexible_toggle',''),(201738,40852,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(201739,40852,'blocks_0_acfe_flexible_layout_title','Icons'),(201740,40852,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(201741,40852,'blocks_0_options_theme','#b61234'),(201742,40852,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(201743,40852,'blocks_0_options_format','row'),(201744,40852,'_blocks_0_options_format','field_64bfde9a90690'),(201745,40852,'blocks_0_options',''),(201746,40852,'_blocks_0_options','field_64bfdd9b90684'),(201747,40852,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(201748,40852,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(201749,40852,'blocks_0_icon_row_items_0_label','Accreditation'),(201750,40852,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(201751,40852,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(201752,40852,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(201753,40852,'blocks_0_icon_row_items_1_icon','finance.svg'),(201754,40852,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(201755,40852,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(201756,40852,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(201757,40852,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(201758,40852,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(201759,40852,'blocks_0_icon_row_items_2_icon','progression.svg'),(201760,40852,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(201761,40852,'blocks_0_icon_row_items_2_label','Earning Potential'),(201762,40852,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(201763,40852,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(201764,40852,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(201765,40852,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(201766,40852,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(201767,40852,'blocks_0_icon_row_items_3_label','Qualification'),(201768,40852,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(201769,40852,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(201770,40852,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(201771,40852,'blocks_0_icon_row_items','4'),(201772,40852,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(201773,40852,'blocks_5_acfe_flexible_toggle','1'),(201774,40852,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(201775,40852,'blocks_5_acfe_flexible_layout_title','Tabs'),(201776,40852,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(201777,40852,'blocks_5_options_theme','#ffffff'),(201778,40852,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(201779,40852,'blocks_5_options',''),(201780,40852,'_blocks_5_options','field_6177cfcd8140f'),(201781,40852,'blocks_5_tabs_0_tab_label','Entry requirements'),(201782,40852,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(201783,40852,'blocks_5_tabs_0_tab_content_title',''),(201784,40852,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(201785,40852,'blocks_5_tabs_0_tab_content_heading',''),(201786,40852,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(201787,40852,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(201788,40852,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(201789,40852,'blocks_5_tabs_0_tab_content_actions',''),(201790,40852,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(201791,40852,'blocks_5_tabs_0_tab_content',''),(201792,40852,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(201793,40852,'blocks_5_tabs_0_tab_image',''),(201794,40852,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(201795,40852,'blocks_5_tabs_1_tab_label','Learning format'),(201796,40852,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(201797,40852,'blocks_5_tabs_1_tab_content_title',''),(201798,40852,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(201799,40852,'blocks_5_tabs_1_tab_content_heading',''),(201800,40852,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(201801,40852,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(201802,40852,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(201803,40852,'blocks_5_tabs_1_tab_content_actions',''),(201804,40852,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(201805,40852,'blocks_5_tabs_1_tab_content',''),(201806,40852,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(201807,40852,'blocks_5_tabs_1_tab_image',''),(201808,40852,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(201809,40852,'blocks_5_tabs_2_tab_label','Qualifications included'),(201810,40852,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(201811,40852,'blocks_5_tabs_2_tab_content_title',''),(201812,40852,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(201813,40852,'blocks_5_tabs_2_tab_content_heading',''),(201814,40852,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(201815,40852,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(201816,40852,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(201817,40852,'blocks_5_tabs_2_tab_content_actions',''),(201818,40852,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(201819,40852,'blocks_5_tabs_2_tab_content',''),(201820,40852,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(201821,40852,'blocks_5_tabs_2_tab_image',''),(201822,40852,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(201823,40852,'blocks_5_tabs','3'),(201824,40852,'_blocks_5_tabs','field_6177cff281419'),(201825,40852,'blocks_2_acfe_flexible_toggle',''),(201826,40852,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(201827,40852,'blocks_2_acfe_flexible_layout_title','Form'),(201828,40852,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(201829,40852,'blocks_2_row_content_format','standard'),(201830,40852,'_blocks_2_row_content_format','field_6481ead962881'),(201831,40852,'blocks_2_row_content_title',''),(201832,40852,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(201833,40852,'blocks_2_row_content_heading','Enquire Today'),(201834,40852,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(201835,40852,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(201836,40852,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(201837,40852,'blocks_2_row_content_actions',''),(201838,40852,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(201839,40852,'blocks_2_row_content',''),(201840,40852,'_blocks_2_row_content','field_61a0f5f5b3db0'),(201841,40852,'blocks_2_row_form','40394'),(201842,40852,'_blocks_2_row_form','field_61a4ff2c0b08e'),(201843,40852,'blocks_2_row_form_button_label',''),(201844,40852,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(201845,40852,'blocks_3_acfe_flexible_toggle',''),(201846,40852,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(201847,40852,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(201848,40852,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(201849,40852,'blocks_3_options_theme','#ffffff'),(201850,40852,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(201851,40852,'blocks_3_options_reverse','0'),(201852,40852,'_blocks_3_options_reverse','field_61768049bb8ac'),(201853,40852,'blocks_3_options',''),(201854,40852,'_blocks_3_options','field_617682517c334'),(201855,40852,'blocks_3_split_5050_image','40785'),(201856,40852,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(201857,40852,'blocks_3_split_5050_video',''),(201858,40852,'_blocks_3_split_5050_video','field_6239f3160848a'),(201859,40852,'blocks_3_split_5050_content_title',''),(201860,40852,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(201861,40852,'blocks_3_split_5050_content_heading','Course Overview'),(201862,40852,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(201863,40852,'blocks_3_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(201864,40852,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(201865,40852,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201866,40852,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(201867,40852,'blocks_3_split_5050_content_actions','1'),(201868,40852,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(201869,40852,'blocks_3_split_5050_content',''),(201870,40852,'_blocks_3_split_5050_content','field_61767afceb8ba'),(201871,40852,'blocks_4_acfe_flexible_toggle',''),(201872,40852,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(201873,40852,'blocks_4_acfe_flexible_layout_title','Template'),(201874,40852,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(201875,40852,'blocks_4_template','39207'),(201876,40852,'_blocks_4_template','field_617bdd570fe01'),(201877,40852,'blocks_6_acfe_flexible_toggle',''),(201878,40852,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(201879,40852,'blocks_6_acfe_flexible_layout_title','Icons'),(201880,40852,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(201881,40852,'blocks_6_options_theme','#f5f5f5'),(201882,40852,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(201883,40852,'blocks_6_options_format','stacked'),(201884,40852,'_blocks_6_options_format','field_64bfde9a90690'),(201885,40852,'blocks_6_options',''),(201886,40852,'_blocks_6_options','field_64bfdd9b90684'),(201887,40852,'blocks_6_row_content_title','Options available to pay for your course'),(201888,40852,'_blocks_6_row_content_title','field_64bfdd9b90687'),(201889,40852,'blocks_6_row_content_heading','Payment Options'),(201890,40852,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(201891,40852,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(201892,40852,'_blocks_6_row_content_text','field_64bfdd9b90689'),(201893,40852,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201894,40852,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(201895,40852,'blocks_6_row_content_actions','1'),(201896,40852,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(201897,40852,'blocks_6_row_content',''),(201898,40852,'_blocks_6_row_content','field_64bfdd9b90686'),(201899,40852,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(201900,40852,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(201901,40852,'blocks_6_icon_row_items_0_label','Pay your course in full'),(201902,40852,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(201903,40852,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(201904,40852,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(201905,40852,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(201906,40852,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(201907,40852,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(201908,40852,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(201909,40852,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(201910,40852,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(201911,40852,'blocks_6_icon_row_items','2'),(201912,40852,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(201913,40852,'blocks_7_acfe_flexible_toggle',''),(201914,40852,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(201915,40852,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(201916,40852,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(201917,40852,'blocks_7_options_theme','#ffffff'),(201918,40852,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(201919,40852,'blocks_7_options_reverse','0'),(201920,40852,'_blocks_7_options_reverse','field_61768049bb8ac'),(201921,40852,'blocks_7_options',''),(201922,40852,'_blocks_7_options','field_617682517c334'),(201923,40852,'blocks_7_split_5050_image','40817'),(201924,40852,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(201925,40852,'blocks_7_split_5050_video',''),(201926,40852,'_blocks_7_split_5050_video','field_6239f3160848a'),(201927,40852,'blocks_7_split_5050_content_title',''),(201928,40852,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(201929,40852,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(201930,40852,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(201931,40852,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(201932,40852,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(201933,40852,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201934,40852,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(201935,40852,'blocks_7_split_5050_content_actions','1'),(201936,40852,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(201937,40852,'blocks_7_split_5050_content',''),(201938,40852,'_blocks_7_split_5050_content','field_61767afceb8ba'),(201939,40852,'blocks_8_acfe_flexible_toggle',''),(201940,40852,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(201941,40852,'blocks_8_acfe_flexible_layout_title','Icons'),(201942,40852,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(201943,40852,'blocks_8_options_theme','#f5f5f5'),(201944,40852,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(201945,40852,'blocks_8_options_format','row'),(201946,40852,'_blocks_8_options_format','field_64bfde9a90690'),(201947,40852,'blocks_8_options',''),(201948,40852,'_blocks_8_options','field_64bfdd9b90684'),(201949,40852,'blocks_8_icon_row_items_0_icon','qualification.svg'),(201950,40852,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(201951,40852,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(201952,40852,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(201953,40852,'blocks_8_icon_row_items_0_text',''),(201954,40852,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(201955,40852,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(201956,40852,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(201957,40852,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(201958,40852,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(201959,40852,'blocks_8_icon_row_items_1_text',''),(201960,40852,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(201961,40852,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(201962,40852,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(201963,40852,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(201964,40852,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(201965,40852,'blocks_8_icon_row_items_2_text',''),(201966,40852,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(201967,40852,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(201968,40852,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(201969,40852,'blocks_8_icon_row_items_3_label','Flexible funding options'),(201970,40852,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(201971,40852,'blocks_8_icon_row_items_3_text',''),(201972,40852,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(201973,40852,'blocks_8_icon_row_items','4'),(201974,40852,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(201975,40852,'blocks_9_acfe_flexible_toggle',''),(201976,40852,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(201977,40852,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(201978,40852,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(201979,40852,'blocks_9_options_theme','#ffffff'),(201980,40852,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(201981,40852,'blocks_9_options_reverse','1'),(201982,40852,'_blocks_9_options_reverse','field_61768049bb8ac'),(201983,40852,'blocks_9_options',''),(201984,40852,'_blocks_9_options','field_617682517c334'),(201985,40852,'blocks_9_split_5050_image','39224'),(201986,40852,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(201987,40852,'blocks_9_split_5050_video',''),(201988,40852,'_blocks_9_split_5050_video','field_6239f3160848a'),(201989,40852,'blocks_9_split_5050_content_title','Locations'),(201990,40852,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(201991,40852,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(201992,40852,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(201993,40852,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(201994,40852,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(201995,40852,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(201996,40852,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(201997,40852,'blocks_9_split_5050_content_actions','1'),(201998,40852,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(201999,40852,'blocks_9_split_5050_content',''),(202000,40852,'_blocks_9_split_5050_content','field_61767afceb8ba'),(202001,40852,'blocks_1_acfe_flexible_toggle',''),(202002,40852,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(202003,40852,'blocks_1_acfe_flexible_layout_title','Video'),(202004,40852,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(202005,40852,'blocks_1_size','large'),(202006,40852,'_blocks_1_size','field_6487038f297c1'),(202007,40852,'blocks_1_row_content_title',''),(202008,40852,'_blocks_1_row_content_title','field_64870132a865d'),(202009,40852,'blocks_1_row_content_heading','Become a Biomechanics Coach'),(202010,40852,'_blocks_1_row_content_heading','field_64870142a865e'),(202011,40852,'blocks_1_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(202012,40852,'_blocks_1_row_content_text','field_64870148a865f'),(202013,40852,'blocks_1_row_content',''),(202014,40852,'_blocks_1_row_content','field_6487008ba865c'),(202015,40852,'blocks_1_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(202016,40852,'_blocks_1_video_src','field_6193c4a98ec07'),(202017,40852,'blocks_1_video_thumbnail',''),(202018,40852,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(202019,40852,'blocks_10_acfe_flexible_toggle',''),(202020,40852,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(202021,40852,'blocks_10_acfe_flexible_layout_title','Text Block'),(202022,40852,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(202023,40852,'blocks_10_options_theme','#ffffff'),(202024,40852,'_blocks_10_options_theme','field_6176830e2ad17'),(202025,40852,'blocks_10_options',''),(202026,40852,'_blocks_10_options','field_6176830e2ad16'),(202027,40852,'blocks_10_text_block_heading','Check out other relevant courses'),(202028,40852,'_blocks_10_text_block_heading','field_617669d413097'),(202029,40852,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(202030,40852,'_blocks_10_text_block_content','field_617669ec13098'),(202031,40852,'blocks_11_acfe_flexible_toggle',''),(202032,40852,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(202033,40852,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(202034,40852,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(202035,40852,'blocks_11_options_theme','#ffffff'),(202036,40852,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(202037,40852,'blocks_11_options',''),(202038,40852,'_blocks_11_options','field_617ac0b7f6c08'),(202039,40852,'blocks_11_show','selection'),(202040,40852,'_blocks_11_show','field_61a49cba9d946'),(202041,40852,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(202042,40852,'_blocks_11_courses','field_61b244781ee0a'),(202043,40852,'blocks_12_acfe_flexible_toggle',''),(202044,40852,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(202045,40852,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(202046,40852,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(202047,40852,'blocks_12_options_theme','#ffffff'),(202048,40852,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(202049,40852,'blocks_12_options_reverse','0'),(202050,40852,'_blocks_12_options_reverse','field_61768049bb8ac'),(202051,40852,'blocks_12_options',''),(202052,40852,'_blocks_12_options','field_617682517c334'),(202053,40852,'blocks_12_split_5050_image','40812'),(202054,40852,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(202055,40852,'blocks_12_split_5050_video',''),(202056,40852,'_blocks_12_split_5050_video','field_6239f3160848a'),(202057,40852,'blocks_12_split_5050_content_title','Optimise Performance '),(202058,40852,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(202059,40852,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(202060,40852,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(202061,40852,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(202062,40852,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(202063,40852,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202064,40852,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(202065,40852,'blocks_12_split_5050_content_actions','1'),(202066,40852,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(202067,40852,'blocks_12_split_5050_content',''),(202068,40852,'_blocks_12_split_5050_content','field_61767afceb8ba'),(202069,40852,'blocks_13_acfe_flexible_toggle',''),(202070,40852,'_blocks_13_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(202071,40852,'blocks_13_acfe_flexible_layout_title','Standard/Editorial Content'),(202072,40852,'_blocks_13_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(202073,40852,'blocks_13_content','<h2 style=\"text-align: center;\">Working In Partnership</h2>\r\n<img class=\"size-full wp-image-40844 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/09/robrachel-partnership.png\" alt=\"\" width=\"552\" height=\"366\" />\r\n<p style=\"text-align: center;\">In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners and our network and will help us in our mission as we continue to look for new ways to make positive changes to the way we not only train our students but how we help shape the health and fitness industry.</p>\r\n<p style=\"text-align: center;\">As a combined force, both Future Fit and Biomechanics Education offer multiple benefits to you as the learner, including (but not exclusive to):</p>\r\n\r\n<ul>\r\n 	<li style=\"text-align: center;\">Access to Future Fit Student Zone for support and information</li>\r\n 	<li style=\"text-align: center;\">Discounts on businesses and brands you love</li>\r\n 	<li style=\"text-align: center;\">Our learning management system</li>\r\n 	<li style=\"text-align: center;\">Industry recognised training</li>\r\n 	<li style=\"text-align: center;\">Ongoing support during and after qualification</li>\r\n</ul>'),(202074,40852,'_blocks_13_content','field_6193c9b5eac84'),(202075,40852,'blocks_14_acfe_flexible_toggle',''),(202076,40852,'_blocks_14_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(202077,40852,'blocks_14_acfe_flexible_layout_title','Button(s)'),(202078,40852,'_blocks_14_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(202079,40852,'blocks_14_options_theme','#ffffff'),(202080,40852,'_blocks_14_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(202081,40852,'blocks_14_options',''),(202082,40852,'_blocks_14_options','field_623b03edb6e65'),(202083,40852,'blocks_14_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-2\";s:6:\"target\";s:0:\"\";}'),(202084,40852,'_blocks_14_actions_0_button','field_623b03edb6e6f'),(202085,40852,'blocks_14_actions','1'),(202086,40852,'_blocks_14_actions','field_623b03edb6e6e'),(202087,40852,'blocks_15_acfe_flexible_toggle',''),(202088,40852,'_blocks_15_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(202089,40852,'blocks_15_acfe_flexible_layout_title','Accordions / FAQs'),(202090,40852,'_blocks_15_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(202091,40852,'blocks_15_options_theme','#f5f5f5'),(202092,40852,'_blocks_15_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(202093,40852,'blocks_15_options_state','0'),(202094,40852,'_blocks_15_options_state','field_6239fcb7508c5'),(202095,40852,'blocks_15_options',''),(202096,40852,'_blocks_15_options','field_6177e2991ac44'),(202097,40852,'blocks_15_content_title',''),(202098,40852,'_blocks_15_content_title','field_64d237e8bb1e2'),(202099,40852,'blocks_15_content_heading','FAQ\'s'),(202100,40852,'_blocks_15_content_heading','field_64d237e8bb1e3'),(202101,40852,'blocks_15_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(202102,40852,'_blocks_15_content_text','field_64d237e8bb1e4'),(202103,40852,'blocks_15_content_actions',''),(202104,40852,'_blocks_15_content_actions','field_64d237e8bb1e5'),(202105,40852,'blocks_15_content_align','left'),(202106,40852,'_blocks_15_content_align','field_64d2443e6b6aa'),(202107,40852,'blocks_15_content',''),(202108,40852,'_blocks_15_content','field_64d237e8bb1e1'),(202109,40852,'blocks_15_accordion_content','faqs'),(202110,40852,'_blocks_15_accordion_content','field_6177e2c81ac4f'),(202111,40852,'blocks_15_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(202112,40852,'_blocks_15_accordion_faqs_select','field_6177e5f3633dd'),(202113,40852,'blocks_15_actions',''),(202114,40852,'_blocks_15_actions','field_61a746a817f7a'),(202115,40853,'hide_hero','0'),(202116,40853,'_hide_hero','field_66a2380fcda39'),(202117,40853,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(202118,40853,'_hero_title','field_617571fe285e8'),(202119,40853,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(202120,40853,'_hero_text','field_6175723c285e9'),(202121,40853,'hero_actions','1'),(202122,40853,'_hero_actions','field_61757270285ea'),(202123,40853,'hero_style','default'),(202124,40853,'_hero_style','field_62051d9dc5324'),(202125,40853,'_thumbnail_id','40848'),(202126,40853,'__thumbnail_id','field_617570855ddaf'),(202127,40853,'hero_image_pos_x','right'),(202128,40853,'_hero_image_pos_x','field_62ec3d05390bb'),(202129,40853,'hero_image_pos_y','top'),(202130,40853,'_hero_image_pos_y','field_62ec3d05390bc'),(202131,40853,'hero_image_pos',''),(202132,40853,'_hero_image_pos','field_62ec3d05390ba'),(202133,40853,'fft_hide_from_listings','0'),(202134,40853,'_fft_hide_from_listings','field_61f1320446ab2'),(202135,40853,'fft_page_format','default'),(202136,40853,'_fft_page_format','field_61ae213f1f218'),(202137,40853,'fft_hide_nav','0'),(202138,40853,'_fft_hide_nav','field_635bd5e43527c'),(202139,40853,'fft_hide_header_call_to_action','0'),(202140,40853,'_fft_hide_header_call_to_action','field_635bd6723527d'),(202141,40853,'fft_page_sitemap','0'),(202142,40853,'_fft_page_sitemap','field_61af9b34e8181'),(202143,40853,'blocks','a:16:{i:0;s:5:\"icons\";i:1;s:5:\"video\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";i:13;s:16:\"standard_content\";i:14;s:7:\"buttons\";i:15;s:10:\"accordions\";}'),(202144,40853,'_blocks','field_6176696113096'),(202145,40853,'course_label_text',''),(202146,40853,'_course_label_text','field_61e17babf71fa'),(202147,40853,'course_label',''),(202148,40853,'_course_label','field_61e12f92749a7'),(202149,40853,'course_description',''),(202150,40853,'_course_description','field_617ac5788e5e1'),(202151,40853,'course_key_info',''),(202152,40853,'_course_key_info','field_617ac6ad8e5e2'),(202153,40853,'course_included',''),(202154,40853,'_course_included','field_617ac6f08e5e4'),(202155,40853,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202156,40853,'_hero_actions_0_button','field_61757281285eb'),(202157,40853,'blocks_0_acfe_flexible_toggle',''),(202158,40853,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(202159,40853,'blocks_0_acfe_flexible_layout_title','Icons'),(202160,40853,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(202161,40853,'blocks_0_options_theme','#b61234'),(202162,40853,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(202163,40853,'blocks_0_options_format','row'),(202164,40853,'_blocks_0_options_format','field_64bfde9a90690'),(202165,40853,'blocks_0_options',''),(202166,40853,'_blocks_0_options','field_64bfdd9b90684'),(202167,40853,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(202168,40853,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(202169,40853,'blocks_0_icon_row_items_0_label','Accreditation'),(202170,40853,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(202171,40853,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(202172,40853,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(202173,40853,'blocks_0_icon_row_items_1_icon','finance.svg'),(202174,40853,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(202175,40853,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(202176,40853,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(202177,40853,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(202178,40853,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(202179,40853,'blocks_0_icon_row_items_2_icon','progression.svg'),(202180,40853,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(202181,40853,'blocks_0_icon_row_items_2_label','Earning Potential'),(202182,40853,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(202183,40853,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(202184,40853,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(202185,40853,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(202186,40853,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(202187,40853,'blocks_0_icon_row_items_3_label','Qualification'),(202188,40853,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(202189,40853,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(202190,40853,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(202191,40853,'blocks_0_icon_row_items','4'),(202192,40853,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(202193,40853,'blocks_5_acfe_flexible_toggle','1'),(202194,40853,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(202195,40853,'blocks_5_acfe_flexible_layout_title','Tabs'),(202196,40853,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(202197,40853,'blocks_5_options_theme','#ffffff'),(202198,40853,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(202199,40853,'blocks_5_options',''),(202200,40853,'_blocks_5_options','field_6177cfcd8140f'),(202201,40853,'blocks_5_tabs_0_tab_label','Entry requirements'),(202202,40853,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(202203,40853,'blocks_5_tabs_0_tab_content_title',''),(202204,40853,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(202205,40853,'blocks_5_tabs_0_tab_content_heading',''),(202206,40853,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(202207,40853,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(202208,40853,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(202209,40853,'blocks_5_tabs_0_tab_content_actions',''),(202210,40853,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(202211,40853,'blocks_5_tabs_0_tab_content',''),(202212,40853,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(202213,40853,'blocks_5_tabs_0_tab_image',''),(202214,40853,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(202215,40853,'blocks_5_tabs_1_tab_label','Learning format'),(202216,40853,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(202217,40853,'blocks_5_tabs_1_tab_content_title',''),(202218,40853,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(202219,40853,'blocks_5_tabs_1_tab_content_heading',''),(202220,40853,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(202221,40853,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(202222,40853,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(202223,40853,'blocks_5_tabs_1_tab_content_actions',''),(202224,40853,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(202225,40853,'blocks_5_tabs_1_tab_content',''),(202226,40853,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(202227,40853,'blocks_5_tabs_1_tab_image',''),(202228,40853,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(202229,40853,'blocks_5_tabs_2_tab_label','Qualifications included'),(202230,40853,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(202231,40853,'blocks_5_tabs_2_tab_content_title',''),(202232,40853,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(202233,40853,'blocks_5_tabs_2_tab_content_heading',''),(202234,40853,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(202235,40853,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(202236,40853,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(202237,40853,'blocks_5_tabs_2_tab_content_actions',''),(202238,40853,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(202239,40853,'blocks_5_tabs_2_tab_content',''),(202240,40853,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(202241,40853,'blocks_5_tabs_2_tab_image',''),(202242,40853,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(202243,40853,'blocks_5_tabs','3'),(202244,40853,'_blocks_5_tabs','field_6177cff281419'),(202245,40853,'blocks_2_acfe_flexible_toggle',''),(202246,40853,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(202247,40853,'blocks_2_acfe_flexible_layout_title','Form'),(202248,40853,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(202249,40853,'blocks_2_row_content_format','standard'),(202250,40853,'_blocks_2_row_content_format','field_6481ead962881'),(202251,40853,'blocks_2_row_content_title',''),(202252,40853,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(202253,40853,'blocks_2_row_content_heading','Enquire Today'),(202254,40853,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(202255,40853,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(202256,40853,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(202257,40853,'blocks_2_row_content_actions',''),(202258,40853,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(202259,40853,'blocks_2_row_content',''),(202260,40853,'_blocks_2_row_content','field_61a0f5f5b3db0'),(202261,40853,'blocks_2_row_form','40394'),(202262,40853,'_blocks_2_row_form','field_61a4ff2c0b08e'),(202263,40853,'blocks_2_row_form_button_label',''),(202264,40853,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(202265,40853,'blocks_3_acfe_flexible_toggle',''),(202266,40853,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(202267,40853,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(202268,40853,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(202269,40853,'blocks_3_options_theme','#ffffff'),(202270,40853,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(202271,40853,'blocks_3_options_reverse','0'),(202272,40853,'_blocks_3_options_reverse','field_61768049bb8ac'),(202273,40853,'blocks_3_options',''),(202274,40853,'_blocks_3_options','field_617682517c334'),(202275,40853,'blocks_3_split_5050_image','40785'),(202276,40853,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(202277,40853,'blocks_3_split_5050_video',''),(202278,40853,'_blocks_3_split_5050_video','field_6239f3160848a'),(202279,40853,'blocks_3_split_5050_content_title',''),(202280,40853,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(202281,40853,'blocks_3_split_5050_content_heading','Course Overview'),(202282,40853,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(202283,40853,'blocks_3_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(202284,40853,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(202285,40853,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202286,40853,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(202287,40853,'blocks_3_split_5050_content_actions','1'),(202288,40853,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(202289,40853,'blocks_3_split_5050_content',''),(202290,40853,'_blocks_3_split_5050_content','field_61767afceb8ba'),(202291,40853,'blocks_4_acfe_flexible_toggle',''),(202292,40853,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(202293,40853,'blocks_4_acfe_flexible_layout_title','Template'),(202294,40853,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(202295,40853,'blocks_4_template','39207'),(202296,40853,'_blocks_4_template','field_617bdd570fe01'),(202297,40853,'blocks_6_acfe_flexible_toggle',''),(202298,40853,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(202299,40853,'blocks_6_acfe_flexible_layout_title','Icons'),(202300,40853,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(202301,40853,'blocks_6_options_theme','#f5f5f5'),(202302,40853,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(202303,40853,'blocks_6_options_format','stacked'),(202304,40853,'_blocks_6_options_format','field_64bfde9a90690'),(202305,40853,'blocks_6_options',''),(202306,40853,'_blocks_6_options','field_64bfdd9b90684'),(202307,40853,'blocks_6_row_content_title','Options available to pay for your course'),(202308,40853,'_blocks_6_row_content_title','field_64bfdd9b90687'),(202309,40853,'blocks_6_row_content_heading','Payment Options'),(202310,40853,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(202311,40853,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(202312,40853,'_blocks_6_row_content_text','field_64bfdd9b90689'),(202313,40853,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202314,40853,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(202315,40853,'blocks_6_row_content_actions','1'),(202316,40853,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(202317,40853,'blocks_6_row_content',''),(202318,40853,'_blocks_6_row_content','field_64bfdd9b90686'),(202319,40853,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(202320,40853,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(202321,40853,'blocks_6_icon_row_items_0_label','Pay your course in full'),(202322,40853,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(202323,40853,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(202324,40853,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(202325,40853,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(202326,40853,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(202327,40853,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(202328,40853,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(202329,40853,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(202330,40853,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(202331,40853,'blocks_6_icon_row_items','2'),(202332,40853,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(202333,40853,'blocks_7_acfe_flexible_toggle',''),(202334,40853,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(202335,40853,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(202336,40853,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(202337,40853,'blocks_7_options_theme','#ffffff'),(202338,40853,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(202339,40853,'blocks_7_options_reverse','0'),(202340,40853,'_blocks_7_options_reverse','field_61768049bb8ac'),(202341,40853,'blocks_7_options',''),(202342,40853,'_blocks_7_options','field_617682517c334'),(202343,40853,'blocks_7_split_5050_image','40817'),(202344,40853,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(202345,40853,'blocks_7_split_5050_video',''),(202346,40853,'_blocks_7_split_5050_video','field_6239f3160848a'),(202347,40853,'blocks_7_split_5050_content_title',''),(202348,40853,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(202349,40853,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(202350,40853,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(202351,40853,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(202352,40853,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(202353,40853,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202354,40853,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(202355,40853,'blocks_7_split_5050_content_actions','1'),(202356,40853,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(202357,40853,'blocks_7_split_5050_content',''),(202358,40853,'_blocks_7_split_5050_content','field_61767afceb8ba'),(202359,40853,'blocks_8_acfe_flexible_toggle',''),(202360,40853,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(202361,40853,'blocks_8_acfe_flexible_layout_title','Icons'),(202362,40853,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(202363,40853,'blocks_8_options_theme','#f5f5f5'),(202364,40853,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(202365,40853,'blocks_8_options_format','row'),(202366,40853,'_blocks_8_options_format','field_64bfde9a90690'),(202367,40853,'blocks_8_options',''),(202368,40853,'_blocks_8_options','field_64bfdd9b90684'),(202369,40853,'blocks_8_icon_row_items_0_icon','qualification.svg'),(202370,40853,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(202371,40853,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(202372,40853,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(202373,40853,'blocks_8_icon_row_items_0_text',''),(202374,40853,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(202375,40853,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(202376,40853,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(202377,40853,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(202378,40853,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(202379,40853,'blocks_8_icon_row_items_1_text',''),(202380,40853,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(202381,40853,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(202382,40853,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(202383,40853,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(202384,40853,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(202385,40853,'blocks_8_icon_row_items_2_text',''),(202386,40853,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(202387,40853,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(202388,40853,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(202389,40853,'blocks_8_icon_row_items_3_label','Flexible funding options'),(202390,40853,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(202391,40853,'blocks_8_icon_row_items_3_text',''),(202392,40853,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(202393,40853,'blocks_8_icon_row_items','4'),(202394,40853,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(202395,40853,'blocks_9_acfe_flexible_toggle',''),(202396,40853,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(202397,40853,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(202398,40853,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(202399,40853,'blocks_9_options_theme','#ffffff'),(202400,40853,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(202401,40853,'blocks_9_options_reverse','1'),(202402,40853,'_blocks_9_options_reverse','field_61768049bb8ac'),(202403,40853,'blocks_9_options',''),(202404,40853,'_blocks_9_options','field_617682517c334'),(202405,40853,'blocks_9_split_5050_image','39224'),(202406,40853,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(202407,40853,'blocks_9_split_5050_video',''),(202408,40853,'_blocks_9_split_5050_video','field_6239f3160848a'),(202409,40853,'blocks_9_split_5050_content_title','Locations'),(202410,40853,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(202411,40853,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(202412,40853,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(202413,40853,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(202414,40853,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(202415,40853,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202416,40853,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(202417,40853,'blocks_9_split_5050_content_actions','1'),(202418,40853,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(202419,40853,'blocks_9_split_5050_content',''),(202420,40853,'_blocks_9_split_5050_content','field_61767afceb8ba'),(202421,40853,'blocks_1_acfe_flexible_toggle',''),(202422,40853,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(202423,40853,'blocks_1_acfe_flexible_layout_title','Video'),(202424,40853,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(202425,40853,'blocks_1_size','large'),(202426,40853,'_blocks_1_size','field_6487038f297c1'),(202427,40853,'blocks_1_row_content_title',''),(202428,40853,'_blocks_1_row_content_title','field_64870132a865d'),(202429,40853,'blocks_1_row_content_heading','Become a Biomechanics Coach'),(202430,40853,'_blocks_1_row_content_heading','field_64870142a865e'),(202431,40853,'blocks_1_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(202432,40853,'_blocks_1_row_content_text','field_64870148a865f'),(202433,40853,'blocks_1_row_content',''),(202434,40853,'_blocks_1_row_content','field_6487008ba865c'),(202435,40853,'blocks_1_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(202436,40853,'_blocks_1_video_src','field_6193c4a98ec07'),(202437,40853,'blocks_1_video_thumbnail',''),(202438,40853,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(202439,40853,'blocks_10_acfe_flexible_toggle',''),(202440,40853,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(202441,40853,'blocks_10_acfe_flexible_layout_title','Text Block'),(202442,40853,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(202443,40853,'blocks_10_options_theme','#ffffff'),(202444,40853,'_blocks_10_options_theme','field_6176830e2ad17'),(202445,40853,'blocks_10_options',''),(202446,40853,'_blocks_10_options','field_6176830e2ad16'),(202447,40853,'blocks_10_text_block_heading','Check out other relevant courses'),(202448,40853,'_blocks_10_text_block_heading','field_617669d413097'),(202449,40853,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(202450,40853,'_blocks_10_text_block_content','field_617669ec13098'),(202451,40853,'blocks_11_acfe_flexible_toggle',''),(202452,40853,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(202453,40853,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(202454,40853,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(202455,40853,'blocks_11_options_theme','#ffffff'),(202456,40853,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(202457,40853,'blocks_11_options',''),(202458,40853,'_blocks_11_options','field_617ac0b7f6c08'),(202459,40853,'blocks_11_show','selection'),(202460,40853,'_blocks_11_show','field_61a49cba9d946'),(202461,40853,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(202462,40853,'_blocks_11_courses','field_61b244781ee0a'),(202463,40853,'blocks_12_acfe_flexible_toggle',''),(202464,40853,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(202465,40853,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(202466,40853,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(202467,40853,'blocks_12_options_theme','#ffffff'),(202468,40853,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(202469,40853,'blocks_12_options_reverse','0'),(202470,40853,'_blocks_12_options_reverse','field_61768049bb8ac'),(202471,40853,'blocks_12_options',''),(202472,40853,'_blocks_12_options','field_617682517c334'),(202473,40853,'blocks_12_split_5050_image','40812'),(202474,40853,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(202475,40853,'blocks_12_split_5050_video',''),(202476,40853,'_blocks_12_split_5050_video','field_6239f3160848a'),(202477,40853,'blocks_12_split_5050_content_title','Optimise Performance '),(202478,40853,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(202479,40853,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(202480,40853,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(202481,40853,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(202482,40853,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(202483,40853,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202484,40853,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(202485,40853,'blocks_12_split_5050_content_actions','1'),(202486,40853,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(202487,40853,'blocks_12_split_5050_content',''),(202488,40853,'_blocks_12_split_5050_content','field_61767afceb8ba'),(202489,40853,'blocks_13_acfe_flexible_toggle',''),(202490,40853,'_blocks_13_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(202491,40853,'blocks_13_acfe_flexible_layout_title','Standard/Editorial Content'),(202492,40853,'_blocks_13_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(202493,40853,'blocks_13_content','<h2 style=\"text-align: center;\">Working In Partnership</h2>\r\n<img class=\"size-full wp-image-40844 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/09/robrachel-partnership.png\" alt=\"\" width=\"552\" height=\"366\" />\r\n<p style=\"text-align: center;\">In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners and our network and will help us in our mission as we continue to look for new ways to make positive changes to the way we not only train our students but how we help shape the health and fitness industry.</p>\r\n<p style=\"text-align: center;\">As a combined force, both Future Fit and Biomechanics Education offer multiple benefits to you as the learner, including (but not exclusive to):</p>\r\n\r\n<ul>\r\n 	<li style=\"text-align: center;\">Access to Future Fit Student Zone for support and information</li>\r\n 	<li style=\"text-align: center;\">Discounts on businesses and brands you love</li>\r\n 	<li style=\"text-align: center;\">Our learning management system</li>\r\n 	<li style=\"text-align: center;\">Industry recognised training</li>\r\n 	<li style=\"text-align: center;\">Ongoing support during and after qualification</li>\r\n</ul>'),(202494,40853,'_blocks_13_content','field_6193c9b5eac84'),(202495,40853,'blocks_14_acfe_flexible_toggle',''),(202496,40853,'_blocks_14_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(202497,40853,'blocks_14_acfe_flexible_layout_title','Button(s)'),(202498,40853,'_blocks_14_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(202499,40853,'blocks_14_options_theme','#ffffff'),(202500,40853,'_blocks_14_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(202501,40853,'blocks_14_options',''),(202502,40853,'_blocks_14_options','field_623b03edb6e65'),(202503,40853,'blocks_14_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202504,40853,'_blocks_14_actions_0_button','field_623b03edb6e6f'),(202505,40853,'blocks_14_actions','1'),(202506,40853,'_blocks_14_actions','field_623b03edb6e6e'),(202507,40853,'blocks_15_acfe_flexible_toggle',''),(202508,40853,'_blocks_15_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(202509,40853,'blocks_15_acfe_flexible_layout_title','Accordions / FAQs'),(202510,40853,'_blocks_15_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(202511,40853,'blocks_15_options_theme','#f5f5f5'),(202512,40853,'_blocks_15_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(202513,40853,'blocks_15_options_state','0'),(202514,40853,'_blocks_15_options_state','field_6239fcb7508c5'),(202515,40853,'blocks_15_options',''),(202516,40853,'_blocks_15_options','field_6177e2991ac44'),(202517,40853,'blocks_15_content_title',''),(202518,40853,'_blocks_15_content_title','field_64d237e8bb1e2'),(202519,40853,'blocks_15_content_heading','FAQ\'s'),(202520,40853,'_blocks_15_content_heading','field_64d237e8bb1e3'),(202521,40853,'blocks_15_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(202522,40853,'_blocks_15_content_text','field_64d237e8bb1e4'),(202523,40853,'blocks_15_content_actions',''),(202524,40853,'_blocks_15_content_actions','field_64d237e8bb1e5'),(202525,40853,'blocks_15_content_align','left'),(202526,40853,'_blocks_15_content_align','field_64d2443e6b6aa'),(202527,40853,'blocks_15_content',''),(202528,40853,'_blocks_15_content','field_64d237e8bb1e1'),(202529,40853,'blocks_15_accordion_content','faqs'),(202530,40853,'_blocks_15_accordion_content','field_6177e2c81ac4f'),(202531,40853,'blocks_15_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(202532,40853,'_blocks_15_accordion_faqs_select','field_6177e5f3633dd'),(202533,40853,'blocks_15_actions',''),(202534,40853,'_blocks_15_actions','field_61a746a817f7a'),(202601,40854,'hide_hero','0'),(202602,40854,'_hide_hero','field_66a2380fcda39'),(202603,40854,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(202604,40854,'_hero_title','field_617571fe285e8'),(202605,40854,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(202606,40854,'_hero_text','field_6175723c285e9'),(202607,40854,'hero_actions','1'),(202608,40854,'_hero_actions','field_61757270285ea'),(202609,40854,'hero_style','default'),(202610,40854,'_hero_style','field_62051d9dc5324'),(202611,40854,'_thumbnail_id','40848'),(202612,40854,'__thumbnail_id','field_617570855ddaf'),(202613,40854,'hero_image_pos_x','right'),(202614,40854,'_hero_image_pos_x','field_62ec3d05390bb'),(202615,40854,'hero_image_pos_y','top'),(202616,40854,'_hero_image_pos_y','field_62ec3d05390bc'),(202617,40854,'hero_image_pos',''),(202618,40854,'_hero_image_pos','field_62ec3d05390ba'),(202619,40854,'fft_hide_from_listings','0'),(202620,40854,'_fft_hide_from_listings','field_61f1320446ab2'),(202621,40854,'fft_page_format','default'),(202622,40854,'_fft_page_format','field_61ae213f1f218'),(202623,40854,'fft_hide_nav','0'),(202624,40854,'_fft_hide_nav','field_635bd5e43527c'),(202625,40854,'fft_hide_header_call_to_action','0'),(202626,40854,'_fft_hide_header_call_to_action','field_635bd6723527d'),(202627,40854,'fft_page_sitemap','0'),(202628,40854,'_fft_page_sitemap','field_61af9b34e8181'),(202629,40854,'blocks','a:16:{i:0;s:5:\"icons\";i:1;s:5:\"video\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";i:13;s:7:\"buttons\";i:14;s:10:\"accordions\";i:15;s:10:\"split_5050\";}'),(202630,40854,'_blocks','field_6176696113096'),(202631,40854,'course_label_text',''),(202632,40854,'_course_label_text','field_61e17babf71fa'),(202633,40854,'course_label',''),(202634,40854,'_course_label','field_61e12f92749a7'),(202635,40854,'course_description',''),(202636,40854,'_course_description','field_617ac5788e5e1'),(202637,40854,'course_key_info',''),(202638,40854,'_course_key_info','field_617ac6ad8e5e2'),(202639,40854,'course_included',''),(202640,40854,'_course_included','field_617ac6f08e5e4'),(202641,40854,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202642,40854,'_hero_actions_0_button','field_61757281285eb'),(202643,40854,'blocks_0_acfe_flexible_toggle',''),(202644,40854,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(202645,40854,'blocks_0_acfe_flexible_layout_title','Icons'),(202646,40854,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(202647,40854,'blocks_0_options_theme','#b61234'),(202648,40854,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(202649,40854,'blocks_0_options_format','row'),(202650,40854,'_blocks_0_options_format','field_64bfde9a90690'),(202651,40854,'blocks_0_options',''),(202652,40854,'_blocks_0_options','field_64bfdd9b90684'),(202653,40854,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(202654,40854,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(202655,40854,'blocks_0_icon_row_items_0_label','Accreditation'),(202656,40854,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(202657,40854,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(202658,40854,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(202659,40854,'blocks_0_icon_row_items_1_icon','finance.svg'),(202660,40854,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(202661,40854,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(202662,40854,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(202663,40854,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(202664,40854,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(202665,40854,'blocks_0_icon_row_items_2_icon','progression.svg'),(202666,40854,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(202667,40854,'blocks_0_icon_row_items_2_label','Earning Potential'),(202668,40854,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(202669,40854,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(202670,40854,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(202671,40854,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(202672,40854,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(202673,40854,'blocks_0_icon_row_items_3_label','Qualification'),(202674,40854,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(202675,40854,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(202676,40854,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(202677,40854,'blocks_0_icon_row_items','4'),(202678,40854,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(202679,40854,'blocks_5_acfe_flexible_toggle','1'),(202680,40854,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(202681,40854,'blocks_5_acfe_flexible_layout_title','Tabs'),(202682,40854,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(202683,40854,'blocks_5_options_theme','#ffffff'),(202684,40854,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(202685,40854,'blocks_5_options',''),(202686,40854,'_blocks_5_options','field_6177cfcd8140f'),(202687,40854,'blocks_5_tabs_0_tab_label','Entry requirements'),(202688,40854,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(202689,40854,'blocks_5_tabs_0_tab_content_title',''),(202690,40854,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(202691,40854,'blocks_5_tabs_0_tab_content_heading',''),(202692,40854,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(202693,40854,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(202694,40854,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(202695,40854,'blocks_5_tabs_0_tab_content_actions',''),(202696,40854,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(202697,40854,'blocks_5_tabs_0_tab_content',''),(202698,40854,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(202699,40854,'blocks_5_tabs_0_tab_image',''),(202700,40854,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(202701,40854,'blocks_5_tabs_1_tab_label','Learning format'),(202702,40854,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(202703,40854,'blocks_5_tabs_1_tab_content_title',''),(202704,40854,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(202705,40854,'blocks_5_tabs_1_tab_content_heading',''),(202706,40854,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(202707,40854,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(202708,40854,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(202709,40854,'blocks_5_tabs_1_tab_content_actions',''),(202710,40854,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(202711,40854,'blocks_5_tabs_1_tab_content',''),(202712,40854,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(202713,40854,'blocks_5_tabs_1_tab_image',''),(202714,40854,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(202715,40854,'blocks_5_tabs_2_tab_label','Qualifications included'),(202716,40854,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(202717,40854,'blocks_5_tabs_2_tab_content_title',''),(202718,40854,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(202719,40854,'blocks_5_tabs_2_tab_content_heading',''),(202720,40854,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(202721,40854,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(202722,40854,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(202723,40854,'blocks_5_tabs_2_tab_content_actions',''),(202724,40854,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(202725,40854,'blocks_5_tabs_2_tab_content',''),(202726,40854,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(202727,40854,'blocks_5_tabs_2_tab_image',''),(202728,40854,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(202729,40854,'blocks_5_tabs','3'),(202730,40854,'_blocks_5_tabs','field_6177cff281419'),(202731,40854,'blocks_2_acfe_flexible_toggle',''),(202732,40854,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(202733,40854,'blocks_2_acfe_flexible_layout_title','Form'),(202734,40854,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(202735,40854,'blocks_2_row_content_format','standard'),(202736,40854,'_blocks_2_row_content_format','field_6481ead962881'),(202737,40854,'blocks_2_row_content_title',''),(202738,40854,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(202739,40854,'blocks_2_row_content_heading','Enquire Today'),(202740,40854,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(202741,40854,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(202742,40854,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(202743,40854,'blocks_2_row_content_actions',''),(202744,40854,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(202745,40854,'blocks_2_row_content',''),(202746,40854,'_blocks_2_row_content','field_61a0f5f5b3db0'),(202747,40854,'blocks_2_row_form','40394'),(202748,40854,'_blocks_2_row_form','field_61a4ff2c0b08e'),(202749,40854,'blocks_2_row_form_button_label',''),(202750,40854,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(202751,40854,'blocks_3_acfe_flexible_toggle',''),(202752,40854,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(202753,40854,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(202754,40854,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(202755,40854,'blocks_3_options_theme','#ffffff'),(202756,40854,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(202757,40854,'blocks_3_options_reverse','0'),(202758,40854,'_blocks_3_options_reverse','field_61768049bb8ac'),(202759,40854,'blocks_3_options',''),(202760,40854,'_blocks_3_options','field_617682517c334'),(202761,40854,'blocks_3_split_5050_image','40785'),(202762,40854,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(202763,40854,'blocks_3_split_5050_video',''),(202764,40854,'_blocks_3_split_5050_video','field_6239f3160848a'),(202765,40854,'blocks_3_split_5050_content_title',''),(202766,40854,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(202767,40854,'blocks_3_split_5050_content_heading','Course Overview'),(202768,40854,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(202769,40854,'blocks_3_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(202770,40854,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(202771,40854,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202772,40854,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(202773,40854,'blocks_3_split_5050_content_actions','1'),(202774,40854,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(202775,40854,'blocks_3_split_5050_content',''),(202776,40854,'_blocks_3_split_5050_content','field_61767afceb8ba'),(202777,40854,'blocks_4_acfe_flexible_toggle',''),(202778,40854,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(202779,40854,'blocks_4_acfe_flexible_layout_title','Template'),(202780,40854,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(202781,40854,'blocks_4_template','39207'),(202782,40854,'_blocks_4_template','field_617bdd570fe01'),(202783,40854,'blocks_6_acfe_flexible_toggle',''),(202784,40854,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(202785,40854,'blocks_6_acfe_flexible_layout_title','Icons'),(202786,40854,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(202787,40854,'blocks_6_options_theme','#f5f5f5'),(202788,40854,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(202789,40854,'blocks_6_options_format','stacked'),(202790,40854,'_blocks_6_options_format','field_64bfde9a90690'),(202791,40854,'blocks_6_options',''),(202792,40854,'_blocks_6_options','field_64bfdd9b90684'),(202793,40854,'blocks_6_row_content_title','Options available to pay for your course'),(202794,40854,'_blocks_6_row_content_title','field_64bfdd9b90687'),(202795,40854,'blocks_6_row_content_heading','Payment Options'),(202796,40854,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(202797,40854,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(202798,40854,'_blocks_6_row_content_text','field_64bfdd9b90689'),(202799,40854,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202800,40854,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(202801,40854,'blocks_6_row_content_actions','1'),(202802,40854,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(202803,40854,'blocks_6_row_content',''),(202804,40854,'_blocks_6_row_content','field_64bfdd9b90686'),(202805,40854,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(202806,40854,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(202807,40854,'blocks_6_icon_row_items_0_label','Pay your course in full'),(202808,40854,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(202809,40854,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(202810,40854,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(202811,40854,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(202812,40854,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(202813,40854,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(202814,40854,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(202815,40854,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(202816,40854,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(202817,40854,'blocks_6_icon_row_items','2'),(202818,40854,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(202819,40854,'blocks_7_acfe_flexible_toggle',''),(202820,40854,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(202821,40854,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(202822,40854,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(202823,40854,'blocks_7_options_theme','#ffffff'),(202824,40854,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(202825,40854,'blocks_7_options_reverse','0'),(202826,40854,'_blocks_7_options_reverse','field_61768049bb8ac'),(202827,40854,'blocks_7_options',''),(202828,40854,'_blocks_7_options','field_617682517c334'),(202829,40854,'blocks_7_split_5050_image','40817'),(202830,40854,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(202831,40854,'blocks_7_split_5050_video',''),(202832,40854,'_blocks_7_split_5050_video','field_6239f3160848a'),(202833,40854,'blocks_7_split_5050_content_title',''),(202834,40854,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(202835,40854,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(202836,40854,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(202837,40854,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(202838,40854,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(202839,40854,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202840,40854,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(202841,40854,'blocks_7_split_5050_content_actions','1'),(202842,40854,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(202843,40854,'blocks_7_split_5050_content',''),(202844,40854,'_blocks_7_split_5050_content','field_61767afceb8ba'),(202845,40854,'blocks_8_acfe_flexible_toggle',''),(202846,40854,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(202847,40854,'blocks_8_acfe_flexible_layout_title','Icons'),(202848,40854,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(202849,40854,'blocks_8_options_theme','#f5f5f5'),(202850,40854,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(202851,40854,'blocks_8_options_format','row'),(202852,40854,'_blocks_8_options_format','field_64bfde9a90690'),(202853,40854,'blocks_8_options',''),(202854,40854,'_blocks_8_options','field_64bfdd9b90684'),(202855,40854,'blocks_8_icon_row_items_0_icon','qualification.svg'),(202856,40854,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(202857,40854,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(202858,40854,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(202859,40854,'blocks_8_icon_row_items_0_text',''),(202860,40854,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(202861,40854,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(202862,40854,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(202863,40854,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(202864,40854,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(202865,40854,'blocks_8_icon_row_items_1_text',''),(202866,40854,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(202867,40854,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(202868,40854,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(202869,40854,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(202870,40854,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(202871,40854,'blocks_8_icon_row_items_2_text',''),(202872,40854,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(202873,40854,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(202874,40854,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(202875,40854,'blocks_8_icon_row_items_3_label','Flexible funding options'),(202876,40854,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(202877,40854,'blocks_8_icon_row_items_3_text',''),(202878,40854,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(202879,40854,'blocks_8_icon_row_items','4'),(202880,40854,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(202881,40854,'blocks_9_acfe_flexible_toggle',''),(202882,40854,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(202883,40854,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(202884,40854,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(202885,40854,'blocks_9_options_theme','#ffffff'),(202886,40854,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(202887,40854,'blocks_9_options_reverse','1'),(202888,40854,'_blocks_9_options_reverse','field_61768049bb8ac'),(202889,40854,'blocks_9_options',''),(202890,40854,'_blocks_9_options','field_617682517c334'),(202891,40854,'blocks_9_split_5050_image','39224'),(202892,40854,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(202893,40854,'blocks_9_split_5050_video',''),(202894,40854,'_blocks_9_split_5050_video','field_6239f3160848a'),(202895,40854,'blocks_9_split_5050_content_title','Locations'),(202896,40854,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(202897,40854,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(202898,40854,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(202899,40854,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(202900,40854,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(202901,40854,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202902,40854,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(202903,40854,'blocks_9_split_5050_content_actions','1'),(202904,40854,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(202905,40854,'blocks_9_split_5050_content',''),(202906,40854,'_blocks_9_split_5050_content','field_61767afceb8ba'),(202907,40854,'blocks_1_acfe_flexible_toggle',''),(202908,40854,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(202909,40854,'blocks_1_acfe_flexible_layout_title','Video'),(202910,40854,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(202911,40854,'blocks_1_size','large'),(202912,40854,'_blocks_1_size','field_6487038f297c1'),(202913,40854,'blocks_1_row_content_title',''),(202914,40854,'_blocks_1_row_content_title','field_64870132a865d'),(202915,40854,'blocks_1_row_content_heading','Become a Biomechanics Coach'),(202916,40854,'_blocks_1_row_content_heading','field_64870142a865e'),(202917,40854,'blocks_1_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(202918,40854,'_blocks_1_row_content_text','field_64870148a865f'),(202919,40854,'blocks_1_row_content',''),(202920,40854,'_blocks_1_row_content','field_6487008ba865c'),(202921,40854,'blocks_1_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(202922,40854,'_blocks_1_video_src','field_6193c4a98ec07'),(202923,40854,'blocks_1_video_thumbnail',''),(202924,40854,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(202925,40854,'blocks_10_acfe_flexible_toggle',''),(202926,40854,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(202927,40854,'blocks_10_acfe_flexible_layout_title','Text Block'),(202928,40854,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(202929,40854,'blocks_10_options_theme','#ffffff'),(202930,40854,'_blocks_10_options_theme','field_6176830e2ad17'),(202931,40854,'blocks_10_options',''),(202932,40854,'_blocks_10_options','field_6176830e2ad16'),(202933,40854,'blocks_10_text_block_heading','Check out other relevant courses'),(202934,40854,'_blocks_10_text_block_heading','field_617669d413097'),(202935,40854,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(202936,40854,'_blocks_10_text_block_content','field_617669ec13098'),(202937,40854,'blocks_11_acfe_flexible_toggle',''),(202938,40854,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(202939,40854,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(202940,40854,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(202941,40854,'blocks_11_options_theme','#ffffff'),(202942,40854,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(202943,40854,'blocks_11_options',''),(202944,40854,'_blocks_11_options','field_617ac0b7f6c08'),(202945,40854,'blocks_11_show','selection'),(202946,40854,'_blocks_11_show','field_61a49cba9d946'),(202947,40854,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(202948,40854,'_blocks_11_courses','field_61b244781ee0a'),(202949,40854,'blocks_12_acfe_flexible_toggle',''),(202950,40854,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(202951,40854,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(202952,40854,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(202953,40854,'blocks_12_options_theme','#ffffff'),(202954,40854,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(202955,40854,'blocks_12_options_reverse','0'),(202956,40854,'_blocks_12_options_reverse','field_61768049bb8ac'),(202957,40854,'blocks_12_options',''),(202958,40854,'_blocks_12_options','field_617682517c334'),(202959,40854,'blocks_12_split_5050_image','40812'),(202960,40854,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(202961,40854,'blocks_12_split_5050_video',''),(202962,40854,'_blocks_12_split_5050_video','field_6239f3160848a'),(202963,40854,'blocks_12_split_5050_content_title','Optimise Performance '),(202964,40854,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(202965,40854,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(202966,40854,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(202967,40854,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(202968,40854,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(202969,40854,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202970,40854,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(202971,40854,'blocks_12_split_5050_content_actions','1'),(202972,40854,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(202973,40854,'blocks_12_split_5050_content',''),(202974,40854,'_blocks_12_split_5050_content','field_61767afceb8ba'),(202975,40854,'blocks_13_acfe_flexible_toggle',''),(202976,40854,'_blocks_13_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(202977,40854,'blocks_13_acfe_flexible_layout_title','Button(s)'),(202978,40854,'_blocks_13_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(202979,40854,'blocks_13_options_theme','#ffffff'),(202980,40854,'_blocks_13_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(202981,40854,'blocks_13_options',''),(202982,40854,'_blocks_13_options','field_623b03edb6e65'),(202983,40854,'blocks_13_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(202984,40854,'_blocks_13_actions_0_button','field_623b03edb6e6f'),(202985,40854,'blocks_13_actions','1'),(202986,40854,'_blocks_13_actions','field_623b03edb6e6e'),(202987,40854,'blocks_14_acfe_flexible_toggle',''),(202988,40854,'_blocks_14_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(202989,40854,'blocks_14_acfe_flexible_layout_title','Accordions / FAQs'),(202990,40854,'_blocks_14_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(202991,40854,'blocks_14_options_theme','#f5f5f5'),(202992,40854,'_blocks_14_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(202993,40854,'blocks_14_options_state','0'),(202994,40854,'_blocks_14_options_state','field_6239fcb7508c5'),(202995,40854,'blocks_14_options',''),(202996,40854,'_blocks_14_options','field_6177e2991ac44'),(202997,40854,'blocks_14_content_title',''),(202998,40854,'_blocks_14_content_title','field_64d237e8bb1e2'),(202999,40854,'blocks_14_content_heading','FAQ\'s'),(203000,40854,'_blocks_14_content_heading','field_64d237e8bb1e3'),(203001,40854,'blocks_14_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(203002,40854,'_blocks_14_content_text','field_64d237e8bb1e4'),(203003,40854,'blocks_14_content_actions',''),(203004,40854,'_blocks_14_content_actions','field_64d237e8bb1e5'),(203005,40854,'blocks_14_content_align','left'),(203006,40854,'_blocks_14_content_align','field_64d2443e6b6aa'),(203007,40854,'blocks_14_content',''),(203008,40854,'_blocks_14_content','field_64d237e8bb1e1'),(203009,40854,'blocks_14_accordion_content','faqs'),(203010,40854,'_blocks_14_accordion_content','field_6177e2c81ac4f'),(203011,40854,'blocks_14_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(203012,40854,'_blocks_14_accordion_faqs_select','field_6177e5f3633dd'),(203013,40854,'blocks_14_actions',''),(203014,40854,'_blocks_14_actions','field_61a746a817f7a'),(203015,40854,'blocks_15_acfe_flexible_toggle',''),(203016,40854,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(203017,40854,'blocks_15_acfe_flexible_layout_title','50/50 Split'),(203018,40854,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(203019,40854,'blocks_15_options_theme','#f5f5f5'),(203020,40854,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(203021,40854,'blocks_15_options_reverse','1'),(203022,40854,'_blocks_15_options_reverse','field_61768049bb8ac'),(203023,40854,'blocks_15_options',''),(203024,40854,'_blocks_15_options','field_617682517c334'),(203025,40854,'blocks_15_split_5050_image','40844'),(203026,40854,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(203027,40854,'blocks_15_split_5050_video',''),(203028,40854,'_blocks_15_split_5050_video','field_6239f3160848a'),(203029,40854,'blocks_15_split_5050_content_title','BIOMECHANICS EDUCATION & FUTURE FIT'),(203030,40854,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(203031,40854,'blocks_15_split_5050_content_heading','Working In Partnership'),(203032,40854,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(203033,40854,'blocks_15_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners and our network and will help us in our mission as we continue to look for new ways to make positive changes to the way we not only train our students but how we help shape the health and fitness industry.\r\n\r\nAs a combined force, both Future Fit and Biomechanics Education offer multiple benefits to you as the learner, including (but not exclusive to):\r\n\r\nAccess to Future Fit Student Zone for support and information\r\n\r\nDiscounts on businesses and brands you love\r\n\r\nOur learning management system\r\n\r\nIndustry recognised training\r\n\r\nOngoing support during and after qualification'),(203034,40854,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(203035,40854,'blocks_15_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203036,40854,'_blocks_15_split_5050_content_actions_0_button','field_61767b72eb8be'),(203037,40854,'blocks_15_split_5050_content_actions','1'),(203038,40854,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(203039,40854,'blocks_15_split_5050_content',''),(203040,40854,'_blocks_15_split_5050_content','field_61767afceb8ba'),(203095,40855,'hide_hero','0'),(203096,40855,'_hide_hero','field_66a2380fcda39'),(203097,40855,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(203098,40855,'_hero_title','field_617571fe285e8'),(203099,40855,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(203100,40855,'_hero_text','field_6175723c285e9'),(203101,40855,'hero_actions','1'),(203102,40855,'_hero_actions','field_61757270285ea'),(203103,40855,'hero_style','default'),(203104,40855,'_hero_style','field_62051d9dc5324'),(203105,40855,'_thumbnail_id','40848'),(203106,40855,'__thumbnail_id','field_617570855ddaf'),(203107,40855,'hero_image_pos_x','right'),(203108,40855,'_hero_image_pos_x','field_62ec3d05390bb'),(203109,40855,'hero_image_pos_y','top'),(203110,40855,'_hero_image_pos_y','field_62ec3d05390bc'),(203111,40855,'hero_image_pos',''),(203112,40855,'_hero_image_pos','field_62ec3d05390ba'),(203113,40855,'fft_hide_from_listings','0'),(203114,40855,'_fft_hide_from_listings','field_61f1320446ab2'),(203115,40855,'fft_page_format','default'),(203116,40855,'_fft_page_format','field_61ae213f1f218'),(203117,40855,'fft_hide_nav','0'),(203118,40855,'_fft_hide_nav','field_635bd5e43527c'),(203119,40855,'fft_hide_header_call_to_action','0'),(203120,40855,'_fft_hide_header_call_to_action','field_635bd6723527d'),(203121,40855,'fft_page_sitemap','0'),(203122,40855,'_fft_page_sitemap','field_61af9b34e8181'),(203123,40855,'blocks','a:16:{i:0;s:5:\"icons\";i:1;s:5:\"video\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";i:13;s:7:\"buttons\";i:14;s:10:\"split_5050\";i:15;s:10:\"accordions\";}'),(203124,40855,'_blocks','field_6176696113096'),(203125,40855,'course_label_text',''),(203126,40855,'_course_label_text','field_61e17babf71fa'),(203127,40855,'course_label',''),(203128,40855,'_course_label','field_61e12f92749a7'),(203129,40855,'course_description',''),(203130,40855,'_course_description','field_617ac5788e5e1'),(203131,40855,'course_key_info',''),(203132,40855,'_course_key_info','field_617ac6ad8e5e2'),(203133,40855,'course_included',''),(203134,40855,'_course_included','field_617ac6f08e5e4'),(203135,40855,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203136,40855,'_hero_actions_0_button','field_61757281285eb'),(203137,40855,'blocks_0_acfe_flexible_toggle',''),(203138,40855,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(203139,40855,'blocks_0_acfe_flexible_layout_title','Icons'),(203140,40855,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(203141,40855,'blocks_0_options_theme','#b61234'),(203142,40855,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(203143,40855,'blocks_0_options_format','row'),(203144,40855,'_blocks_0_options_format','field_64bfde9a90690'),(203145,40855,'blocks_0_options',''),(203146,40855,'_blocks_0_options','field_64bfdd9b90684'),(203147,40855,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(203148,40855,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(203149,40855,'blocks_0_icon_row_items_0_label','Accreditation'),(203150,40855,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(203151,40855,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(203152,40855,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(203153,40855,'blocks_0_icon_row_items_1_icon','finance.svg'),(203154,40855,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(203155,40855,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(203156,40855,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(203157,40855,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(203158,40855,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(203159,40855,'blocks_0_icon_row_items_2_icon','progression.svg'),(203160,40855,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(203161,40855,'blocks_0_icon_row_items_2_label','Earning Potential'),(203162,40855,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(203163,40855,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(203164,40855,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(203165,40855,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(203166,40855,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(203167,40855,'blocks_0_icon_row_items_3_label','Qualification'),(203168,40855,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(203169,40855,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(203170,40855,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(203171,40855,'blocks_0_icon_row_items','4'),(203172,40855,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(203173,40855,'blocks_5_acfe_flexible_toggle','1'),(203174,40855,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(203175,40855,'blocks_5_acfe_flexible_layout_title','Tabs'),(203176,40855,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(203177,40855,'blocks_5_options_theme','#ffffff'),(203178,40855,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(203179,40855,'blocks_5_options',''),(203180,40855,'_blocks_5_options','field_6177cfcd8140f'),(203181,40855,'blocks_5_tabs_0_tab_label','Entry requirements'),(203182,40855,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(203183,40855,'blocks_5_tabs_0_tab_content_title',''),(203184,40855,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(203185,40855,'blocks_5_tabs_0_tab_content_heading',''),(203186,40855,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(203187,40855,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(203188,40855,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(203189,40855,'blocks_5_tabs_0_tab_content_actions',''),(203190,40855,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(203191,40855,'blocks_5_tabs_0_tab_content',''),(203192,40855,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(203193,40855,'blocks_5_tabs_0_tab_image',''),(203194,40855,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(203195,40855,'blocks_5_tabs_1_tab_label','Learning format'),(203196,40855,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(203197,40855,'blocks_5_tabs_1_tab_content_title',''),(203198,40855,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(203199,40855,'blocks_5_tabs_1_tab_content_heading',''),(203200,40855,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(203201,40855,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(203202,40855,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(203203,40855,'blocks_5_tabs_1_tab_content_actions',''),(203204,40855,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(203205,40855,'blocks_5_tabs_1_tab_content',''),(203206,40855,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(203207,40855,'blocks_5_tabs_1_tab_image',''),(203208,40855,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(203209,40855,'blocks_5_tabs_2_tab_label','Qualifications included'),(203210,40855,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(203211,40855,'blocks_5_tabs_2_tab_content_title',''),(203212,40855,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(203213,40855,'blocks_5_tabs_2_tab_content_heading',''),(203214,40855,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(203215,40855,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(203216,40855,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(203217,40855,'blocks_5_tabs_2_tab_content_actions',''),(203218,40855,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(203219,40855,'blocks_5_tabs_2_tab_content',''),(203220,40855,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(203221,40855,'blocks_5_tabs_2_tab_image',''),(203222,40855,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(203223,40855,'blocks_5_tabs','3'),(203224,40855,'_blocks_5_tabs','field_6177cff281419'),(203225,40855,'blocks_2_acfe_flexible_toggle',''),(203226,40855,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(203227,40855,'blocks_2_acfe_flexible_layout_title','Form'),(203228,40855,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(203229,40855,'blocks_2_row_content_format','standard'),(203230,40855,'_blocks_2_row_content_format','field_6481ead962881'),(203231,40855,'blocks_2_row_content_title',''),(203232,40855,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(203233,40855,'blocks_2_row_content_heading','Enquire Today'),(203234,40855,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(203235,40855,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(203236,40855,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(203237,40855,'blocks_2_row_content_actions',''),(203238,40855,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(203239,40855,'blocks_2_row_content',''),(203240,40855,'_blocks_2_row_content','field_61a0f5f5b3db0'),(203241,40855,'blocks_2_row_form','40394'),(203242,40855,'_blocks_2_row_form','field_61a4ff2c0b08e'),(203243,40855,'blocks_2_row_form_button_label',''),(203244,40855,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(203245,40855,'blocks_3_acfe_flexible_toggle',''),(203246,40855,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(203247,40855,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(203248,40855,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(203249,40855,'blocks_3_options_theme','#ffffff'),(203250,40855,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(203251,40855,'blocks_3_options_reverse','0'),(203252,40855,'_blocks_3_options_reverse','field_61768049bb8ac'),(203253,40855,'blocks_3_options',''),(203254,40855,'_blocks_3_options','field_617682517c334'),(203255,40855,'blocks_3_split_5050_image','40785'),(203256,40855,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(203257,40855,'blocks_3_split_5050_video',''),(203258,40855,'_blocks_3_split_5050_video','field_6239f3160848a'),(203259,40855,'blocks_3_split_5050_content_title',''),(203260,40855,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(203261,40855,'blocks_3_split_5050_content_heading','Course Overview'),(203262,40855,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(203263,40855,'blocks_3_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(203264,40855,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(203265,40855,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203266,40855,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(203267,40855,'blocks_3_split_5050_content_actions','1'),(203268,40855,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(203269,40855,'blocks_3_split_5050_content',''),(203270,40855,'_blocks_3_split_5050_content','field_61767afceb8ba'),(203271,40855,'blocks_4_acfe_flexible_toggle',''),(203272,40855,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(203273,40855,'blocks_4_acfe_flexible_layout_title','Template'),(203274,40855,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(203275,40855,'blocks_4_template','39207'),(203276,40855,'_blocks_4_template','field_617bdd570fe01'),(203277,40855,'blocks_6_acfe_flexible_toggle',''),(203278,40855,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(203279,40855,'blocks_6_acfe_flexible_layout_title','Icons'),(203280,40855,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(203281,40855,'blocks_6_options_theme','#f5f5f5'),(203282,40855,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(203283,40855,'blocks_6_options_format','stacked'),(203284,40855,'_blocks_6_options_format','field_64bfde9a90690'),(203285,40855,'blocks_6_options',''),(203286,40855,'_blocks_6_options','field_64bfdd9b90684'),(203287,40855,'blocks_6_row_content_title','Options available to pay for your course'),(203288,40855,'_blocks_6_row_content_title','field_64bfdd9b90687'),(203289,40855,'blocks_6_row_content_heading','Payment Options'),(203290,40855,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(203291,40855,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(203292,40855,'_blocks_6_row_content_text','field_64bfdd9b90689'),(203293,40855,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203294,40855,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(203295,40855,'blocks_6_row_content_actions','1'),(203296,40855,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(203297,40855,'blocks_6_row_content',''),(203298,40855,'_blocks_6_row_content','field_64bfdd9b90686'),(203299,40855,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(203300,40855,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(203301,40855,'blocks_6_icon_row_items_0_label','Pay your course in full'),(203302,40855,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(203303,40855,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(203304,40855,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(203305,40855,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(203306,40855,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(203307,40855,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(203308,40855,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(203309,40855,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(203310,40855,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(203311,40855,'blocks_6_icon_row_items','2'),(203312,40855,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(203313,40855,'blocks_7_acfe_flexible_toggle',''),(203314,40855,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(203315,40855,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(203316,40855,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(203317,40855,'blocks_7_options_theme','#ffffff'),(203318,40855,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(203319,40855,'blocks_7_options_reverse','0'),(203320,40855,'_blocks_7_options_reverse','field_61768049bb8ac'),(203321,40855,'blocks_7_options',''),(203322,40855,'_blocks_7_options','field_617682517c334'),(203323,40855,'blocks_7_split_5050_image','40817'),(203324,40855,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(203325,40855,'blocks_7_split_5050_video',''),(203326,40855,'_blocks_7_split_5050_video','field_6239f3160848a'),(203327,40855,'blocks_7_split_5050_content_title',''),(203328,40855,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(203329,40855,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(203330,40855,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(203331,40855,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(203332,40855,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(203333,40855,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203334,40855,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(203335,40855,'blocks_7_split_5050_content_actions','1'),(203336,40855,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(203337,40855,'blocks_7_split_5050_content',''),(203338,40855,'_blocks_7_split_5050_content','field_61767afceb8ba'),(203339,40855,'blocks_8_acfe_flexible_toggle',''),(203340,40855,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(203341,40855,'blocks_8_acfe_flexible_layout_title','Icons'),(203342,40855,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(203343,40855,'blocks_8_options_theme','#f5f5f5'),(203344,40855,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(203345,40855,'blocks_8_options_format','row'),(203346,40855,'_blocks_8_options_format','field_64bfde9a90690'),(203347,40855,'blocks_8_options',''),(203348,40855,'_blocks_8_options','field_64bfdd9b90684'),(203349,40855,'blocks_8_icon_row_items_0_icon','qualification.svg'),(203350,40855,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(203351,40855,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(203352,40855,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(203353,40855,'blocks_8_icon_row_items_0_text',''),(203354,40855,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(203355,40855,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(203356,40855,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(203357,40855,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(203358,40855,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(203359,40855,'blocks_8_icon_row_items_1_text',''),(203360,40855,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(203361,40855,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(203362,40855,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(203363,40855,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(203364,40855,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(203365,40855,'blocks_8_icon_row_items_2_text',''),(203366,40855,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(203367,40855,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(203368,40855,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(203369,40855,'blocks_8_icon_row_items_3_label','Flexible funding options'),(203370,40855,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(203371,40855,'blocks_8_icon_row_items_3_text',''),(203372,40855,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(203373,40855,'blocks_8_icon_row_items','4'),(203374,40855,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(203375,40855,'blocks_9_acfe_flexible_toggle',''),(203376,40855,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(203377,40855,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(203378,40855,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(203379,40855,'blocks_9_options_theme','#ffffff'),(203380,40855,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(203381,40855,'blocks_9_options_reverse','1'),(203382,40855,'_blocks_9_options_reverse','field_61768049bb8ac'),(203383,40855,'blocks_9_options',''),(203384,40855,'_blocks_9_options','field_617682517c334'),(203385,40855,'blocks_9_split_5050_image','39224'),(203386,40855,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(203387,40855,'blocks_9_split_5050_video',''),(203388,40855,'_blocks_9_split_5050_video','field_6239f3160848a'),(203389,40855,'blocks_9_split_5050_content_title','Locations'),(203390,40855,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(203391,40855,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(203392,40855,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(203393,40855,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(203394,40855,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(203395,40855,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203396,40855,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(203397,40855,'blocks_9_split_5050_content_actions','1'),(203398,40855,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(203399,40855,'blocks_9_split_5050_content',''),(203400,40855,'_blocks_9_split_5050_content','field_61767afceb8ba'),(203401,40855,'blocks_1_acfe_flexible_toggle',''),(203402,40855,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(203403,40855,'blocks_1_acfe_flexible_layout_title','Video'),(203404,40855,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(203405,40855,'blocks_1_size','large'),(203406,40855,'_blocks_1_size','field_6487038f297c1'),(203407,40855,'blocks_1_row_content_title',''),(203408,40855,'_blocks_1_row_content_title','field_64870132a865d'),(203409,40855,'blocks_1_row_content_heading','Become a Biomechanics Coach'),(203410,40855,'_blocks_1_row_content_heading','field_64870142a865e'),(203411,40855,'blocks_1_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(203412,40855,'_blocks_1_row_content_text','field_64870148a865f'),(203413,40855,'blocks_1_row_content',''),(203414,40855,'_blocks_1_row_content','field_6487008ba865c'),(203415,40855,'blocks_1_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(203416,40855,'_blocks_1_video_src','field_6193c4a98ec07'),(203417,40855,'blocks_1_video_thumbnail',''),(203418,40855,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(203419,40855,'blocks_10_acfe_flexible_toggle',''),(203420,40855,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(203421,40855,'blocks_10_acfe_flexible_layout_title','Text Block'),(203422,40855,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(203423,40855,'blocks_10_options_theme','#ffffff'),(203424,40855,'_blocks_10_options_theme','field_6176830e2ad17'),(203425,40855,'blocks_10_options',''),(203426,40855,'_blocks_10_options','field_6176830e2ad16'),(203427,40855,'blocks_10_text_block_heading','Check out other relevant courses'),(203428,40855,'_blocks_10_text_block_heading','field_617669d413097'),(203429,40855,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(203430,40855,'_blocks_10_text_block_content','field_617669ec13098'),(203431,40855,'blocks_11_acfe_flexible_toggle',''),(203432,40855,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(203433,40855,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(203434,40855,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(203435,40855,'blocks_11_options_theme','#ffffff'),(203436,40855,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(203437,40855,'blocks_11_options',''),(203438,40855,'_blocks_11_options','field_617ac0b7f6c08'),(203439,40855,'blocks_11_show','selection'),(203440,40855,'_blocks_11_show','field_61a49cba9d946'),(203441,40855,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(203442,40855,'_blocks_11_courses','field_61b244781ee0a'),(203443,40855,'blocks_12_acfe_flexible_toggle',''),(203444,40855,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(203445,40855,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(203446,40855,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(203447,40855,'blocks_12_options_theme','#ffffff'),(203448,40855,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(203449,40855,'blocks_12_options_reverse','0'),(203450,40855,'_blocks_12_options_reverse','field_61768049bb8ac'),(203451,40855,'blocks_12_options',''),(203452,40855,'_blocks_12_options','field_617682517c334'),(203453,40855,'blocks_12_split_5050_image','40812'),(203454,40855,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(203455,40855,'blocks_12_split_5050_video',''),(203456,40855,'_blocks_12_split_5050_video','field_6239f3160848a'),(203457,40855,'blocks_12_split_5050_content_title','Optimise Performance '),(203458,40855,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(203459,40855,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(203460,40855,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(203461,40855,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(203462,40855,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(203463,40855,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203464,40855,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(203465,40855,'blocks_12_split_5050_content_actions','1'),(203466,40855,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(203467,40855,'blocks_12_split_5050_content',''),(203468,40855,'_blocks_12_split_5050_content','field_61767afceb8ba'),(203469,40855,'blocks_13_acfe_flexible_toggle',''),(203470,40855,'_blocks_13_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(203471,40855,'blocks_13_acfe_flexible_layout_title','Button(s)'),(203472,40855,'_blocks_13_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(203473,40855,'blocks_13_options_theme','#ffffff'),(203474,40855,'_blocks_13_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(203475,40855,'blocks_13_options',''),(203476,40855,'_blocks_13_options','field_623b03edb6e65'),(203477,40855,'blocks_13_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203478,40855,'_blocks_13_actions_0_button','field_623b03edb6e6f'),(203479,40855,'blocks_13_actions','1'),(203480,40855,'_blocks_13_actions','field_623b03edb6e6e'),(203481,40855,'blocks_14_acfe_flexible_toggle',''),(203482,40855,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(203483,40855,'blocks_14_acfe_flexible_layout_title','50/50 Split'),(203484,40855,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(203485,40855,'blocks_14_options_theme','#f5f5f5'),(203486,40855,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(203487,40855,'blocks_14_options_reverse','1'),(203488,40855,'_blocks_14_options_reverse','field_61768049bb8ac'),(203489,40855,'blocks_14_options',''),(203490,40855,'_blocks_14_options','field_617682517c334'),(203491,40855,'blocks_14_split_5050_image','40844'),(203492,40855,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(203493,40855,'blocks_14_split_5050_video',''),(203494,40855,'_blocks_14_split_5050_video','field_6239f3160848a'),(203495,40855,'blocks_14_split_5050_content_title','BIOMECHANICS EDUCATION & FUTURE FIT'),(203496,40855,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(203497,40855,'blocks_14_split_5050_content_heading','Working In Partnership'),(203498,40855,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(203499,40855,'blocks_14_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners and our network and will help us in our mission as we continue to look for new ways to make positive changes to the way we not only train our students but how we help shape the health and fitness industry.\r\n\r\nAs a combined force, both Future Fit and Biomechanics Education offer multiple benefits to you as the learner, including (but not exclusive to):\r\n\r\nAccess to Future Fit Student Zone for support and information\r\n\r\nDiscounts on businesses and brands you love\r\n\r\nOur learning management system\r\n\r\nIndustry recognised training\r\n\r\nOngoing support during and after qualification'),(203500,40855,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(203501,40855,'blocks_14_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203502,40855,'_blocks_14_split_5050_content_actions_0_button','field_61767b72eb8be'),(203503,40855,'blocks_14_split_5050_content_actions','1'),(203504,40855,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(203505,40855,'blocks_14_split_5050_content',''),(203506,40855,'_blocks_14_split_5050_content','field_61767afceb8ba'),(203507,40855,'blocks_15_acfe_flexible_toggle',''),(203508,40855,'_blocks_15_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(203509,40855,'blocks_15_acfe_flexible_layout_title','Accordions / FAQs'),(203510,40855,'_blocks_15_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(203511,40855,'blocks_15_options_theme','#f5f5f5'),(203512,40855,'_blocks_15_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(203513,40855,'blocks_15_options_state','0'),(203514,40855,'_blocks_15_options_state','field_6239fcb7508c5'),(203515,40855,'blocks_15_options',''),(203516,40855,'_blocks_15_options','field_6177e2991ac44'),(203517,40855,'blocks_15_content_title',''),(203518,40855,'_blocks_15_content_title','field_64d237e8bb1e2'),(203519,40855,'blocks_15_content_heading','FAQ\'s'),(203520,40855,'_blocks_15_content_heading','field_64d237e8bb1e3'),(203521,40855,'blocks_15_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(203522,40855,'_blocks_15_content_text','field_64d237e8bb1e4'),(203523,40855,'blocks_15_content_actions',''),(203524,40855,'_blocks_15_content_actions','field_64d237e8bb1e5'),(203525,40855,'blocks_15_content_align','left'),(203526,40855,'_blocks_15_content_align','field_64d2443e6b6aa'),(203527,40855,'blocks_15_content',''),(203528,40855,'_blocks_15_content','field_64d237e8bb1e1'),(203529,40855,'blocks_15_accordion_content','faqs'),(203530,40855,'_blocks_15_accordion_content','field_6177e2c81ac4f'),(203531,40855,'blocks_15_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(203532,40855,'_blocks_15_accordion_faqs_select','field_6177e5f3633dd'),(203533,40855,'blocks_15_actions',''),(203534,40855,'_blocks_15_actions','field_61a746a817f7a'),(203589,40856,'hide_hero','0'),(203590,40856,'_hide_hero','field_66a2380fcda39'),(203591,40856,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(203592,40856,'_hero_title','field_617571fe285e8'),(203593,40856,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(203594,40856,'_hero_text','field_6175723c285e9'),(203595,40856,'hero_actions','1'),(203596,40856,'_hero_actions','field_61757270285ea'),(203597,40856,'hero_style','default'),(203598,40856,'_hero_style','field_62051d9dc5324'),(203599,40856,'_thumbnail_id','40848'),(203600,40856,'__thumbnail_id','field_617570855ddaf'),(203601,40856,'hero_image_pos_x','right'),(203602,40856,'_hero_image_pos_x','field_62ec3d05390bb'),(203603,40856,'hero_image_pos_y','top'),(203604,40856,'_hero_image_pos_y','field_62ec3d05390bc'),(203605,40856,'hero_image_pos',''),(203606,40856,'_hero_image_pos','field_62ec3d05390ba'),(203607,40856,'fft_hide_from_listings','0'),(203608,40856,'_fft_hide_from_listings','field_61f1320446ab2'),(203609,40856,'fft_page_format','default'),(203610,40856,'_fft_page_format','field_61ae213f1f218'),(203611,40856,'fft_hide_nav','0'),(203612,40856,'_fft_hide_nav','field_635bd5e43527c'),(203613,40856,'fft_hide_header_call_to_action','0'),(203614,40856,'_fft_hide_header_call_to_action','field_635bd6723527d'),(203615,40856,'fft_page_sitemap','0'),(203616,40856,'_fft_page_sitemap','field_61af9b34e8181'),(203617,40856,'blocks','a:15:{i:0;s:5:\"icons\";i:1;s:5:\"video\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"accordions\";}'),(203618,40856,'_blocks','field_6176696113096'),(203619,40856,'course_label_text',''),(203620,40856,'_course_label_text','field_61e17babf71fa'),(203621,40856,'course_label',''),(203622,40856,'_course_label','field_61e12f92749a7'),(203623,40856,'course_description',''),(203624,40856,'_course_description','field_617ac5788e5e1'),(203625,40856,'course_key_info',''),(203626,40856,'_course_key_info','field_617ac6ad8e5e2'),(203627,40856,'course_included',''),(203628,40856,'_course_included','field_617ac6f08e5e4'),(203629,40856,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203630,40856,'_hero_actions_0_button','field_61757281285eb'),(203631,40856,'blocks_0_acfe_flexible_toggle',''),(203632,40856,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(203633,40856,'blocks_0_acfe_flexible_layout_title','Icons'),(203634,40856,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(203635,40856,'blocks_0_options_theme','#b61234'),(203636,40856,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(203637,40856,'blocks_0_options_format','row'),(203638,40856,'_blocks_0_options_format','field_64bfde9a90690'),(203639,40856,'blocks_0_options',''),(203640,40856,'_blocks_0_options','field_64bfdd9b90684'),(203641,40856,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(203642,40856,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(203643,40856,'blocks_0_icon_row_items_0_label','Accreditation'),(203644,40856,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(203645,40856,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(203646,40856,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(203647,40856,'blocks_0_icon_row_items_1_icon','finance.svg'),(203648,40856,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(203649,40856,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(203650,40856,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(203651,40856,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(203652,40856,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(203653,40856,'blocks_0_icon_row_items_2_icon','progression.svg'),(203654,40856,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(203655,40856,'blocks_0_icon_row_items_2_label','Earning Potential'),(203656,40856,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(203657,40856,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(203658,40856,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(203659,40856,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(203660,40856,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(203661,40856,'blocks_0_icon_row_items_3_label','Qualification'),(203662,40856,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(203663,40856,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(203664,40856,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(203665,40856,'blocks_0_icon_row_items','4'),(203666,40856,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(203667,40856,'blocks_5_acfe_flexible_toggle','1'),(203668,40856,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(203669,40856,'blocks_5_acfe_flexible_layout_title','Tabs'),(203670,40856,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(203671,40856,'blocks_5_options_theme','#ffffff'),(203672,40856,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(203673,40856,'blocks_5_options',''),(203674,40856,'_blocks_5_options','field_6177cfcd8140f'),(203675,40856,'blocks_5_tabs_0_tab_label','Entry requirements'),(203676,40856,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(203677,40856,'blocks_5_tabs_0_tab_content_title',''),(203678,40856,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(203679,40856,'blocks_5_tabs_0_tab_content_heading',''),(203680,40856,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(203681,40856,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(203682,40856,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(203683,40856,'blocks_5_tabs_0_tab_content_actions',''),(203684,40856,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(203685,40856,'blocks_5_tabs_0_tab_content',''),(203686,40856,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(203687,40856,'blocks_5_tabs_0_tab_image',''),(203688,40856,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(203689,40856,'blocks_5_tabs_1_tab_label','Learning format'),(203690,40856,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(203691,40856,'blocks_5_tabs_1_tab_content_title',''),(203692,40856,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(203693,40856,'blocks_5_tabs_1_tab_content_heading',''),(203694,40856,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(203695,40856,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(203696,40856,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(203697,40856,'blocks_5_tabs_1_tab_content_actions',''),(203698,40856,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(203699,40856,'blocks_5_tabs_1_tab_content',''),(203700,40856,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(203701,40856,'blocks_5_tabs_1_tab_image',''),(203702,40856,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(203703,40856,'blocks_5_tabs_2_tab_label','Qualifications included'),(203704,40856,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(203705,40856,'blocks_5_tabs_2_tab_content_title',''),(203706,40856,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(203707,40856,'blocks_5_tabs_2_tab_content_heading',''),(203708,40856,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(203709,40856,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(203710,40856,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(203711,40856,'blocks_5_tabs_2_tab_content_actions',''),(203712,40856,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(203713,40856,'blocks_5_tabs_2_tab_content',''),(203714,40856,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(203715,40856,'blocks_5_tabs_2_tab_image',''),(203716,40856,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(203717,40856,'blocks_5_tabs','3'),(203718,40856,'_blocks_5_tabs','field_6177cff281419'),(203719,40856,'blocks_2_acfe_flexible_toggle',''),(203720,40856,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(203721,40856,'blocks_2_acfe_flexible_layout_title','Form'),(203722,40856,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(203723,40856,'blocks_2_row_content_format','standard'),(203724,40856,'_blocks_2_row_content_format','field_6481ead962881'),(203725,40856,'blocks_2_row_content_title',''),(203726,40856,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(203727,40856,'blocks_2_row_content_heading','Enquire Today'),(203728,40856,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(203729,40856,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(203730,40856,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(203731,40856,'blocks_2_row_content_actions',''),(203732,40856,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(203733,40856,'blocks_2_row_content',''),(203734,40856,'_blocks_2_row_content','field_61a0f5f5b3db0'),(203735,40856,'blocks_2_row_form','40394'),(203736,40856,'_blocks_2_row_form','field_61a4ff2c0b08e'),(203737,40856,'blocks_2_row_form_button_label',''),(203738,40856,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(203739,40856,'blocks_3_acfe_flexible_toggle',''),(203740,40856,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(203741,40856,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(203742,40856,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(203743,40856,'blocks_3_options_theme','#ffffff'),(203744,40856,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(203745,40856,'blocks_3_options_reverse','0'),(203746,40856,'_blocks_3_options_reverse','field_61768049bb8ac'),(203747,40856,'blocks_3_options',''),(203748,40856,'_blocks_3_options','field_617682517c334'),(203749,40856,'blocks_3_split_5050_image','40785'),(203750,40856,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(203751,40856,'blocks_3_split_5050_video',''),(203752,40856,'_blocks_3_split_5050_video','field_6239f3160848a'),(203753,40856,'blocks_3_split_5050_content_title',''),(203754,40856,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(203755,40856,'blocks_3_split_5050_content_heading','Course Overview'),(203756,40856,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(203757,40856,'blocks_3_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(203758,40856,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(203759,40856,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203760,40856,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(203761,40856,'blocks_3_split_5050_content_actions','1'),(203762,40856,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(203763,40856,'blocks_3_split_5050_content',''),(203764,40856,'_blocks_3_split_5050_content','field_61767afceb8ba'),(203765,40856,'blocks_4_acfe_flexible_toggle',''),(203766,40856,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(203767,40856,'blocks_4_acfe_flexible_layout_title','Template'),(203768,40856,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(203769,40856,'blocks_4_template','39207'),(203770,40856,'_blocks_4_template','field_617bdd570fe01'),(203771,40856,'blocks_6_acfe_flexible_toggle',''),(203772,40856,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(203773,40856,'blocks_6_acfe_flexible_layout_title','Icons'),(203774,40856,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(203775,40856,'blocks_6_options_theme','#f5f5f5'),(203776,40856,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(203777,40856,'blocks_6_options_format','stacked'),(203778,40856,'_blocks_6_options_format','field_64bfde9a90690'),(203779,40856,'blocks_6_options',''),(203780,40856,'_blocks_6_options','field_64bfdd9b90684'),(203781,40856,'blocks_6_row_content_title','Options available to pay for your course'),(203782,40856,'_blocks_6_row_content_title','field_64bfdd9b90687'),(203783,40856,'blocks_6_row_content_heading','Payment Options'),(203784,40856,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(203785,40856,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(203786,40856,'_blocks_6_row_content_text','field_64bfdd9b90689'),(203787,40856,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203788,40856,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(203789,40856,'blocks_6_row_content_actions','1'),(203790,40856,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(203791,40856,'blocks_6_row_content',''),(203792,40856,'_blocks_6_row_content','field_64bfdd9b90686'),(203793,40856,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(203794,40856,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(203795,40856,'blocks_6_icon_row_items_0_label','Pay your course in full'),(203796,40856,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(203797,40856,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(203798,40856,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(203799,40856,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(203800,40856,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(203801,40856,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(203802,40856,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(203803,40856,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(203804,40856,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(203805,40856,'blocks_6_icon_row_items','2'),(203806,40856,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(203807,40856,'blocks_7_acfe_flexible_toggle',''),(203808,40856,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(203809,40856,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(203810,40856,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(203811,40856,'blocks_7_options_theme','#ffffff'),(203812,40856,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(203813,40856,'blocks_7_options_reverse','0'),(203814,40856,'_blocks_7_options_reverse','field_61768049bb8ac'),(203815,40856,'blocks_7_options',''),(203816,40856,'_blocks_7_options','field_617682517c334'),(203817,40856,'blocks_7_split_5050_image','40817'),(203818,40856,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(203819,40856,'blocks_7_split_5050_video',''),(203820,40856,'_blocks_7_split_5050_video','field_6239f3160848a'),(203821,40856,'blocks_7_split_5050_content_title',''),(203822,40856,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(203823,40856,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(203824,40856,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(203825,40856,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(203826,40856,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(203827,40856,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203828,40856,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(203829,40856,'blocks_7_split_5050_content_actions','1'),(203830,40856,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(203831,40856,'blocks_7_split_5050_content',''),(203832,40856,'_blocks_7_split_5050_content','field_61767afceb8ba'),(203833,40856,'blocks_8_acfe_flexible_toggle',''),(203834,40856,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(203835,40856,'blocks_8_acfe_flexible_layout_title','Icons'),(203836,40856,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(203837,40856,'blocks_8_options_theme','#f5f5f5'),(203838,40856,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(203839,40856,'blocks_8_options_format','row'),(203840,40856,'_blocks_8_options_format','field_64bfde9a90690'),(203841,40856,'blocks_8_options',''),(203842,40856,'_blocks_8_options','field_64bfdd9b90684'),(203843,40856,'blocks_8_icon_row_items_0_icon','qualification.svg'),(203844,40856,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(203845,40856,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(203846,40856,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(203847,40856,'blocks_8_icon_row_items_0_text',''),(203848,40856,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(203849,40856,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(203850,40856,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(203851,40856,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(203852,40856,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(203853,40856,'blocks_8_icon_row_items_1_text',''),(203854,40856,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(203855,40856,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(203856,40856,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(203857,40856,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(203858,40856,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(203859,40856,'blocks_8_icon_row_items_2_text',''),(203860,40856,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(203861,40856,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(203862,40856,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(203863,40856,'blocks_8_icon_row_items_3_label','Flexible funding options'),(203864,40856,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(203865,40856,'blocks_8_icon_row_items_3_text',''),(203866,40856,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(203867,40856,'blocks_8_icon_row_items','4'),(203868,40856,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(203869,40856,'blocks_9_acfe_flexible_toggle',''),(203870,40856,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(203871,40856,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(203872,40856,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(203873,40856,'blocks_9_options_theme','#ffffff'),(203874,40856,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(203875,40856,'blocks_9_options_reverse','1'),(203876,40856,'_blocks_9_options_reverse','field_61768049bb8ac'),(203877,40856,'blocks_9_options',''),(203878,40856,'_blocks_9_options','field_617682517c334'),(203879,40856,'blocks_9_split_5050_image','39224'),(203880,40856,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(203881,40856,'blocks_9_split_5050_video',''),(203882,40856,'_blocks_9_split_5050_video','field_6239f3160848a'),(203883,40856,'blocks_9_split_5050_content_title','Locations'),(203884,40856,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(203885,40856,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(203886,40856,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(203887,40856,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(203888,40856,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(203889,40856,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203890,40856,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(203891,40856,'blocks_9_split_5050_content_actions','1'),(203892,40856,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(203893,40856,'blocks_9_split_5050_content',''),(203894,40856,'_blocks_9_split_5050_content','field_61767afceb8ba'),(203895,40856,'blocks_1_acfe_flexible_toggle',''),(203896,40856,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(203897,40856,'blocks_1_acfe_flexible_layout_title','Video'),(203898,40856,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(203899,40856,'blocks_1_size','large'),(203900,40856,'_blocks_1_size','field_6487038f297c1'),(203901,40856,'blocks_1_row_content_title',''),(203902,40856,'_blocks_1_row_content_title','field_64870132a865d'),(203903,40856,'blocks_1_row_content_heading','Become a Biomechanics Coach'),(203904,40856,'_blocks_1_row_content_heading','field_64870142a865e'),(203905,40856,'blocks_1_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(203906,40856,'_blocks_1_row_content_text','field_64870148a865f'),(203907,40856,'blocks_1_row_content',''),(203908,40856,'_blocks_1_row_content','field_6487008ba865c'),(203909,40856,'blocks_1_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(203910,40856,'_blocks_1_video_src','field_6193c4a98ec07'),(203911,40856,'blocks_1_video_thumbnail',''),(203912,40856,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(203913,40856,'blocks_10_acfe_flexible_toggle',''),(203914,40856,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(203915,40856,'blocks_10_acfe_flexible_layout_title','Text Block'),(203916,40856,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(203917,40856,'blocks_10_options_theme','#ffffff'),(203918,40856,'_blocks_10_options_theme','field_6176830e2ad17'),(203919,40856,'blocks_10_options',''),(203920,40856,'_blocks_10_options','field_6176830e2ad16'),(203921,40856,'blocks_10_text_block_heading','Check out other relevant courses'),(203922,40856,'_blocks_10_text_block_heading','field_617669d413097'),(203923,40856,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(203924,40856,'_blocks_10_text_block_content','field_617669ec13098'),(203925,40856,'blocks_11_acfe_flexible_toggle',''),(203926,40856,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(203927,40856,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(203928,40856,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(203929,40856,'blocks_11_options_theme','#ffffff'),(203930,40856,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(203931,40856,'blocks_11_options',''),(203932,40856,'_blocks_11_options','field_617ac0b7f6c08'),(203933,40856,'blocks_11_show','selection'),(203934,40856,'_blocks_11_show','field_61a49cba9d946'),(203935,40856,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(203936,40856,'_blocks_11_courses','field_61b244781ee0a'),(203937,40856,'blocks_12_acfe_flexible_toggle',''),(203938,40856,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(203939,40856,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(203940,40856,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(203941,40856,'blocks_12_options_theme','#ffffff'),(203942,40856,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(203943,40856,'blocks_12_options_reverse','0'),(203944,40856,'_blocks_12_options_reverse','field_61768049bb8ac'),(203945,40856,'blocks_12_options',''),(203946,40856,'_blocks_12_options','field_617682517c334'),(203947,40856,'blocks_12_split_5050_image','40812'),(203948,40856,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(203949,40856,'blocks_12_split_5050_video',''),(203950,40856,'_blocks_12_split_5050_video','field_6239f3160848a'),(203951,40856,'blocks_12_split_5050_content_title','Optimise Performance '),(203952,40856,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(203953,40856,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(203954,40856,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(203955,40856,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(203956,40856,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(203957,40856,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203958,40856,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(203959,40856,'blocks_12_split_5050_content_actions','1'),(203960,40856,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(203961,40856,'blocks_12_split_5050_content',''),(203962,40856,'_blocks_12_split_5050_content','field_61767afceb8ba'),(203963,40856,'blocks_13_acfe_flexible_toggle',''),(203964,40856,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(203965,40856,'blocks_13_acfe_flexible_layout_title','50/50 Split'),(203966,40856,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(203967,40856,'blocks_13_options_theme','#f5f5f5'),(203968,40856,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(203969,40856,'blocks_13_options_reverse','1'),(203970,40856,'_blocks_13_options_reverse','field_61768049bb8ac'),(203971,40856,'blocks_13_options',''),(203972,40856,'_blocks_13_options','field_617682517c334'),(203973,40856,'blocks_13_split_5050_image','40844'),(203974,40856,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(203975,40856,'blocks_13_split_5050_video',''),(203976,40856,'_blocks_13_split_5050_video','field_6239f3160848a'),(203977,40856,'blocks_13_split_5050_content_title','BIOMECHANICS EDUCATION & FUTURE FIT'),(203978,40856,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(203979,40856,'blocks_13_split_5050_content_heading','Working In Partnership'),(203980,40856,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(203981,40856,'blocks_13_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners and our network and will help us in our mission as we continue to look for new ways to make positive changes to the way we not only train our students but how we help shape the health and fitness industry.\r\n\r\nAs a combined force, both Future Fit and Biomechanics Education offer multiple benefits to you as the learner, including (but not exclusive to):\r\n\r\nAccess to Future Fit Student Zone for support and information\r\n\r\nDiscounts on businesses and brands you love\r\n\r\nOur learning management system\r\n\r\nIndustry recognised training\r\n\r\nOngoing support during and after qualification'),(203982,40856,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(203983,40856,'blocks_13_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(203984,40856,'_blocks_13_split_5050_content_actions_0_button','field_61767b72eb8be'),(203985,40856,'blocks_13_split_5050_content_actions','1'),(203986,40856,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(203987,40856,'blocks_13_split_5050_content',''),(203988,40856,'_blocks_13_split_5050_content','field_61767afceb8ba'),(203989,40856,'blocks_14_acfe_flexible_toggle',''),(203990,40856,'_blocks_14_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(203991,40856,'blocks_14_acfe_flexible_layout_title','Accordions / FAQs'),(203992,40856,'_blocks_14_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(203993,40856,'blocks_14_options_theme','#f5f5f5'),(203994,40856,'_blocks_14_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(203995,40856,'blocks_14_options_state','0'),(203996,40856,'_blocks_14_options_state','field_6239fcb7508c5'),(203997,40856,'blocks_14_options',''),(203998,40856,'_blocks_14_options','field_6177e2991ac44'),(203999,40856,'blocks_14_content_title',''),(204000,40856,'_blocks_14_content_title','field_64d237e8bb1e2'),(204001,40856,'blocks_14_content_heading','FAQ\'s'),(204002,40856,'_blocks_14_content_heading','field_64d237e8bb1e3'),(204003,40856,'blocks_14_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(204004,40856,'_blocks_14_content_text','field_64d237e8bb1e4'),(204005,40856,'blocks_14_content_actions',''),(204006,40856,'_blocks_14_content_actions','field_64d237e8bb1e5'),(204007,40856,'blocks_14_content_align','left'),(204008,40856,'_blocks_14_content_align','field_64d2443e6b6aa'),(204009,40856,'blocks_14_content',''),(204010,40856,'_blocks_14_content','field_64d237e8bb1e1'),(204011,40856,'blocks_14_accordion_content','faqs'),(204012,40856,'_blocks_14_accordion_content','field_6177e2c81ac4f'),(204013,40856,'blocks_14_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(204014,40856,'_blocks_14_accordion_faqs_select','field_6177e5f3633dd'),(204015,40856,'blocks_14_actions',''),(204016,40856,'_blocks_14_actions','field_61a746a817f7a'),(204026,40858,'_menu_item_type','custom'),(204027,40858,'_menu_item_menu_item_parent','39278'),(204028,40858,'_menu_item_object_id','40858'),(204029,40858,'_menu_item_object','custom'),(204030,40858,'_menu_item_target',''),(204031,40858,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(204032,40858,'_menu_item_xfn',''),(204033,40858,'_menu_item_url','https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/'),(204035,40858,'menu_item_card_image',''),(204036,40858,'_menu_item_card_image','field_618cf50fb8716'),(204037,40858,'menu_item_card_title',''),(204038,40858,'_menu_item_card_title','field_618cf51cb8717'),(204039,40858,'menu_item_card_text',''),(204040,40858,'_menu_item_card_text','field_618cf521b8718'),(204041,40858,'menu_item_card_link',''),(204042,40858,'_menu_item_card_link','field_618cf52eb8719'),(204043,40858,'menu_item_card',''),(204044,40858,'_menu_item_card','field_618cf506b8715'),(204045,39278,'_wp_old_date','2024-09-18'),(204046,39348,'_wp_old_date','2024-09-18'),(204047,39486,'_wp_old_date','2024-09-18'),(204048,39485,'_wp_old_date','2024-09-18'),(204049,39487,'_wp_old_date','2024-09-18'),(204050,39279,'_wp_old_date','2024-09-18'),(204051,39325,'_wp_old_date','2024-09-18'),(204052,39324,'_wp_old_date','2024-09-18'),(204053,39323,'_wp_old_date','2024-09-18'),(204054,39322,'_wp_old_date','2024-09-18'),(204055,39321,'_wp_old_date','2024-09-18'),(204056,39320,'_wp_old_date','2024-09-18'),(204057,39319,'_wp_old_date','2024-09-18'),(204058,39280,'_wp_old_date','2024-09-18'),(204059,39522,'_wp_old_date','2024-09-18'),(204060,39281,'_wp_old_date','2024-09-18'),(204061,39344,'_wp_old_date','2024-09-18'),(204062,39318,'_wp_old_date','2024-09-18'),(204066,40859,'_wp_attached_file','2024/09/getting-started-menu-image.webp'),(204067,40859,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:39:\"2024/09/getting-started-menu-image.webp\";s:8:\"filesize\";i:55584;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-900x506.webp\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:48020;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16344;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-768x432.webp\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:37856;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:19350;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-900x675.webp\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:62710;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-400x266.webp\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17132;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-900x600.webp\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:52550;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12446;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-675x675.webp\";s:5:\"width\";i:675;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:43828;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-900x675.webp\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:62710;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-400x300.webp\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17856;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-900x675.webp\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:62710;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16344;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:39:\"getting-started-menu-image-900x506.webp\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:48020;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(204068,40860,'_wp_attached_file','2024/09/Contact-us-menu-image.jpg'),(204069,40860,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:33:\"2024/09/Contact-us-menu-image.jpg\";s:8:\"filesize\";i:316907;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59148;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27287;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49363;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31253;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65416;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27204;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59148;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27310;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-675x667.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54678;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65416;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28344;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65416;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25692;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"Contact-us-menu-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54671;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:73:\"Copyright (c) 2023 insta_photos/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:64:\"Young,Happy,Busy,Latin,Businessman,Talking,On,Phone,Using,Laptop\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:757:\"busy office,eyeglasses eyewear,investor work,smartphone device,financial broker,lifestyle merchant,laptop workplace,guy hr,digital bank,plan salesman,discussing manage,entrepreneur male,tech us,smart phone,cellular communication,communicating contract,casual client,finance glasses,job worker,cellphone ceo,customer interview,businessman person,adult advice,adviser calling,data management,looking happy,corporate professional,cell service,business project,one pc,sale sit,web website,executive success,modern technology,latin hispanic,company desk,conversation discussion,contact connection,mobile offer,european expert,hand indoor,holding smile,shirt wear,online marketing,sunny talk,employee manager,call telephone,computer people,young man,sell sunlight\";}}}'),(204070,40861,'_wp_attached_file','2024/09/Resources-menu-image.jpg'),(204071,40861,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:32:\"2024/09/Resources-menu-image.jpg\";s:8:\"filesize\";i:350025;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74080;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30008;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60750;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35294;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83187;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29992;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74080;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30103;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-675x667.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67416;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83187;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31482;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83187;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28674;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"Resources-menu-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68716;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:71:\"Copyright (c) 2024 Pixel-Shot/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:72:\"Human,Resources,Manager,Interviewing,Female,Applicant,At,Table,In,Office\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:384:\"interviewing,career,occupation,caucasian,happy,questions,hr,office,employee,professional,recruitment,join,female,worker,profession,smiling,work,exam,formal,background,person,adult,job,vacancy,male,woman,hire,young,expectation,candidate,indoors,company,man,human,table,interviewer,resume,business,manager,asian,resources,staff,employment,portrait,people,applicant,ask,interview,sitting\";}}}'),(204072,40778,'_edit_lock','1741944024:18'),(204073,40778,'_edit_last','18'),(204074,40778,'hide_hero','0'),(204075,40778,'_hide_hero','field_66a2380fcda39'),(204076,40778,'hero_title','Diploma in Biomechanics Coaching'),(204077,40778,'_hero_title','field_617571fe285e8'),(204078,40778,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and gym-goers. Gathering data to develop a course that educates practitioners to a high level of understanding movement.'),(204079,40778,'_hero_text','field_6175723c285e9'),(204080,40778,'hero_actions','1'),(204081,40778,'_hero_actions','field_61757270285ea'),(204082,40778,'hero_style','default'),(204083,40778,'_hero_style','field_62051d9dc5324'),(204085,40778,'__thumbnail_id','field_617570855ddaf'),(204086,40778,'hero_image_pos_x','right'),(204087,40778,'_hero_image_pos_x','field_62ec3d05390bb'),(204088,40778,'hero_image_pos_y','top'),(204089,40778,'_hero_image_pos_y','field_62ec3d05390bc'),(204090,40778,'hero_image_pos',''),(204091,40778,'_hero_image_pos','field_62ec3d05390ba'),(204092,40778,'fft_hide_from_listings','0'),(204093,40778,'_fft_hide_from_listings','field_61f1320446ab2'),(204094,40778,'fft_page_format','default'),(204095,40778,'_fft_page_format','field_61ae213f1f218'),(204096,40778,'fft_hide_nav','0'),(204097,40778,'_fft_hide_nav','field_635bd5e43527c'),(204098,40778,'fft_hide_header_call_to_action','0'),(204099,40778,'_fft_hide_header_call_to_action','field_635bd6723527d'),(204100,40778,'fft_page_sitemap','0'),(204101,40778,'_fft_page_sitemap','field_61af9b34e8181'),(204102,40778,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:5:\"icons\";i:6;s:10:\"split_5050\";i:7;s:8:\"template\";i:8;s:10:\"accordions\";}'),(204103,40778,'_blocks','field_6176696113096'),(204104,40778,'course_label_text','Biomechanics Coach Course'),(204105,40778,'_course_label_text','field_61e17babf71fa'),(204106,40778,'course_label',''),(204107,40778,'_course_label','field_61e12f92749a7'),(204108,40778,'course_description','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(204109,40778,'_course_description','field_617ac5788e5e1'),(204110,40778,'course_key_info','1'),(204111,40778,'_course_key_info','field_617ac6ad8e5e2'),(204112,40778,'course_included','Diploma in Biomechanics Coaching'),(204113,40778,'_course_included','field_617ac6f08e5e4'),(204114,40778,'_yoast_wpseo_primary_course-cat','406'),(204115,40778,'_yoast_wpseo_estimated-reading-time-minutes','1'),(204116,40862,'hide_hero','0'),(204117,40862,'_hide_hero','field_66a2380fcda39'),(204118,40862,'hero_title',''),(204119,40862,'_hero_title','field_617571fe285e8'),(204120,40862,'hero_text',''),(204121,40862,'_hero_text','field_6175723c285e9'),(204122,40862,'hero_actions',''),(204123,40862,'_hero_actions','field_61757270285ea'),(204124,40862,'hero_style','default'),(204125,40862,'_hero_style','field_62051d9dc5324'),(204126,40862,'_thumbnail_id',''),(204127,40862,'__thumbnail_id','field_617570855ddaf'),(204128,40862,'hero_image_pos_x','right'),(204129,40862,'_hero_image_pos_x','field_62ec3d05390bb'),(204130,40862,'hero_image_pos_y','top'),(204131,40862,'_hero_image_pos_y','field_62ec3d05390bc'),(204132,40862,'hero_image_pos',''),(204133,40862,'_hero_image_pos','field_62ec3d05390ba'),(204134,40862,'fft_hide_from_listings','0'),(204135,40862,'_fft_hide_from_listings','field_61f1320446ab2'),(204136,40862,'fft_page_format','default'),(204137,40862,'_fft_page_format','field_61ae213f1f218'),(204138,40862,'fft_hide_nav','0'),(204139,40862,'_fft_hide_nav','field_635bd5e43527c'),(204140,40862,'fft_hide_header_call_to_action','0'),(204141,40862,'_fft_hide_header_call_to_action','field_635bd6723527d'),(204142,40862,'fft_page_sitemap','0'),(204143,40862,'_fft_page_sitemap','field_61af9b34e8181'),(204144,40862,'blocks',''),(204145,40862,'_blocks','field_6176696113096'),(204146,40862,'course_label_text',''),(204147,40862,'_course_label_text','field_61e17babf71fa'),(204148,40862,'course_label',''),(204149,40862,'_course_label','field_61e12f92749a7'),(204150,40862,'course_description',''),(204151,40862,'_course_description','field_617ac5788e5e1'),(204152,40862,'course_key_info',''),(204153,40862,'_course_key_info','field_617ac6ad8e5e2'),(204154,40862,'course_included',''),(204155,40862,'_course_included','field_617ac6f08e5e4'),(204156,40863,'_wp_attached_file','2024/09/Diploma-in-biomechanics-hero-image.jpg'),(204157,40863,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:46:\"2024/09/Diploma-in-biomechanics-hero-image.jpg\";s:8:\"filesize\";i:384182;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"Diploma-in-biomechanics-hero-image-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85400;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"Diploma-in-biomechanics-hero-image-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132595;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"Diploma-in-biomechanics-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24571;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"Diploma-in-biomechanics-hero-image-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67223;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"Diploma-in-biomechanics-hero-image-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196363;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:48:\"Diploma-in-biomechanics-hero-image-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:309560;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:46:\"Diploma-in-biomechanics-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31239;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:46:\"Diploma-in-biomechanics-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110588;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:48:\"Diploma-in-biomechanics-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174788;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:46:\"Diploma-in-biomechanics-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24623;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:46:\"Diploma-in-biomechanics-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85052;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:47:\"Diploma-in-biomechanics-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131656;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:46:\"Diploma-in-biomechanics-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24487;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:46:\"Diploma-in-biomechanics-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86310;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:47:\"Diploma-in-biomechanics-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136565;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:46:\"Diploma-in-biomechanics-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26587;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:46:\"Diploma-in-biomechanics-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92424;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:47:\"Diploma-in-biomechanics-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143762;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:46:\"Diploma-in-biomechanics-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21971;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:46:\"Diploma-in-biomechanics-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76143;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:47:\"Diploma-in-biomechanics-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117999;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(204158,40778,'_thumbnail_id','40863'),(204159,40778,'blocks_0_acfe_flexible_toggle',''),(204160,40778,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(204161,40778,'blocks_0_acfe_flexible_layout_title','Template'),(204162,40778,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(204163,40778,'blocks_0_template','39087'),(204164,40778,'_blocks_0_template','field_617bdd570fe01'),(204185,40864,'hide_hero','0'),(204186,40864,'_hide_hero','field_66a2380fcda39'),(204187,40864,'hero_title','Diploma in Biomechanics Coaching'),(204188,40864,'_hero_title','field_617571fe285e8'),(204189,40864,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(204190,40864,'_hero_text','field_6175723c285e9'),(204191,40864,'hero_actions',''),(204192,40864,'_hero_actions','field_61757270285ea'),(204193,40864,'hero_style','default'),(204194,40864,'_hero_style','field_62051d9dc5324'),(204195,40864,'hero_image_pos_x','right'),(204196,40864,'_hero_image_pos_x','field_62ec3d05390bb'),(204197,40864,'hero_image_pos_y','top'),(204198,40864,'_hero_image_pos_y','field_62ec3d05390bc'),(204199,40864,'hero_image_pos',''),(204200,40864,'_hero_image_pos','field_62ec3d05390ba'),(204201,40864,'fft_hide_from_listings','0'),(204202,40864,'_fft_hide_from_listings','field_61f1320446ab2'),(204203,40864,'fft_page_format','default'),(204204,40864,'_fft_page_format','field_61ae213f1f218'),(204205,40864,'fft_hide_nav','0'),(204206,40864,'_fft_hide_nav','field_635bd5e43527c'),(204207,40864,'fft_hide_header_call_to_action','0'),(204208,40864,'_fft_hide_header_call_to_action','field_635bd6723527d'),(204209,40864,'fft_page_sitemap','0'),(204210,40864,'_fft_page_sitemap','field_61af9b34e8181'),(204211,40864,'blocks','a:2:{i:0;s:8:\"template\";i:1;s:4:\"form\";}'),(204212,40864,'_blocks','field_6176696113096'),(204213,40864,'course_label_text',''),(204214,40864,'_course_label_text','field_61e17babf71fa'),(204215,40864,'course_label',''),(204216,40864,'_course_label','field_61e12f92749a7'),(204217,40864,'course_description',''),(204218,40864,'_course_description','field_617ac5788e5e1'),(204219,40864,'course_key_info',''),(204220,40864,'_course_key_info','field_617ac6ad8e5e2'),(204221,40864,'course_included',''),(204222,40864,'_course_included','field_617ac6f08e5e4'),(204223,40864,'_thumbnail_id','40863'),(204224,40864,'__thumbnail_id','field_617570855ddaf'),(204225,40864,'blocks_0_acfe_flexible_toggle',''),(204226,40864,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(204227,40864,'blocks_0_acfe_flexible_layout_title','Template'),(204228,40864,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(204229,40864,'blocks_0_template','39087'),(204230,40864,'_blocks_0_template','field_617bdd570fe01'),(204231,40864,'blocks_1_acfe_flexible_toggle',''),(204232,40864,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(204233,40864,'blocks_1_acfe_flexible_layout_title','Form'),(204234,40864,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(204235,40864,'blocks_1_row_content_format','standard'),(204236,40864,'_blocks_1_row_content_format','field_6481ead962881'),(204237,40864,'blocks_1_row_content_title',''),(204238,40864,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(204239,40864,'blocks_1_row_content_heading','Enquire Today'),(204240,40864,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(204241,40864,'blocks_1_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(204242,40864,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(204243,40864,'blocks_1_row_content_actions',''),(204244,40864,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(204245,40864,'blocks_1_row_content',''),(204246,40864,'_blocks_1_row_content','field_61a0f5f5b3db0'),(204247,40864,'blocks_1_row_form','40394'),(204248,40864,'_blocks_1_row_form','field_61a4ff2c0b08e'),(204249,40864,'blocks_1_row_form_button_label',''),(204250,40864,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(204317,40866,'_wp_attached_file','2024/09/Biomechanics-diploma-50.50.jpg'),(204318,40866,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:38:\"2024/09/Biomechanics-diploma-50.50.jpg\";s:8:\"filesize\";i:559709;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Biomechanics-diploma-50.50-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121260;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Biomechanics-diploma-50.50-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189530;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Biomechanics-diploma-50.50-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34172;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Biomechanics-diploma-50.50-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94604;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"Biomechanics-diploma-50.50-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:280137;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:40:\"Biomechanics-diploma-50.50-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:443136;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:38:\"Biomechanics-diploma-50.50-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44376;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:38:\"Biomechanics-diploma-50.50-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156137;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:40:\"Biomechanics-diploma-50.50-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:243057;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:38:\"Biomechanics-diploma-50.50-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34054;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:38:\"Biomechanics-diploma-50.50-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121325;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:39:\"Biomechanics-diploma-50.50-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189569;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:38:\"Biomechanics-diploma-50.50-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33836;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:38:\"Biomechanics-diploma-50.50-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115839;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:39:\"Biomechanics-diploma-50.50-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180829;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:38:\"Biomechanics-diploma-50.50-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37441;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:38:\"Biomechanics-diploma-50.50-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132735;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:39:\"Biomechanics-diploma-50.50-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206298;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:38:\"Biomechanics-diploma-50.50-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29942;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:38:\"Biomechanics-diploma-50.50-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105821;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:39:\"Biomechanics-diploma-50.50-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164891;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(204319,40778,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204320,40778,'_hero_actions_0_button','field_61757281285eb'),(204321,40778,'blocks_1_acfe_flexible_toggle',''),(204322,40778,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(204323,40778,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(204324,40778,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(204325,40778,'blocks_1_options_theme','#ffffff'),(204326,40778,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(204327,40778,'blocks_1_options_reverse','0'),(204328,40778,'_blocks_1_options_reverse','field_61768049bb8ac'),(204329,40778,'blocks_1_options',''),(204330,40778,'_blocks_1_options','field_617682517c334'),(204331,40778,'blocks_1_split_5050_image','40866'),(204332,40778,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(204333,40778,'blocks_1_split_5050_video',''),(204334,40778,'_blocks_1_split_5050_video','field_6239f3160848a'),(204335,40778,'blocks_1_split_5050_content_title',''),(204336,40778,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(204337,40778,'blocks_1_split_5050_content_heading','Course Overview'),(204338,40778,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(204339,40778,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(204340,40778,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(204341,40778,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204342,40778,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(204343,40778,'blocks_1_split_5050_content_actions','1'),(204344,40778,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(204345,40778,'blocks_1_split_5050_content',''),(204346,40778,'_blocks_1_split_5050_content','field_61767afceb8ba'),(204347,40778,'blocks_2_acfe_flexible_toggle',''),(204348,40778,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(204349,40778,'blocks_2_acfe_flexible_layout_title','Form'),(204350,40778,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(204351,40778,'blocks_2_row_content_format','standard'),(204352,40778,'_blocks_2_row_content_format','field_6481ead962881'),(204353,40778,'blocks_2_row_content_title',''),(204354,40778,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(204355,40778,'blocks_2_row_content_heading','Enquire Today'),(204356,40778,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(204357,40778,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(204358,40778,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(204359,40778,'blocks_2_row_content_actions',''),(204360,40778,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(204361,40778,'blocks_2_row_content',''),(204362,40778,'_blocks_2_row_content','field_61a0f5f5b3db0'),(204363,40778,'blocks_2_row_form','40394'),(204364,40778,'_blocks_2_row_form','field_61a4ff2c0b08e'),(204365,40778,'blocks_2_row_form_button_label',''),(204366,40778,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(204367,40867,'hide_hero','0'),(204368,40867,'_hide_hero','field_66a2380fcda39'),(204369,40867,'hero_title','Diploma in Biomechanics Coaching'),(204370,40867,'_hero_title','field_617571fe285e8'),(204371,40867,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(204372,40867,'_hero_text','field_6175723c285e9'),(204373,40867,'hero_actions','1'),(204374,40867,'_hero_actions','field_61757270285ea'),(204375,40867,'hero_style','default'),(204376,40867,'_hero_style','field_62051d9dc5324'),(204377,40867,'hero_image_pos_x','right'),(204378,40867,'_hero_image_pos_x','field_62ec3d05390bb'),(204379,40867,'hero_image_pos_y','top'),(204380,40867,'_hero_image_pos_y','field_62ec3d05390bc'),(204381,40867,'hero_image_pos',''),(204382,40867,'_hero_image_pos','field_62ec3d05390ba'),(204383,40867,'fft_hide_from_listings','0'),(204384,40867,'_fft_hide_from_listings','field_61f1320446ab2'),(204385,40867,'fft_page_format','default'),(204386,40867,'_fft_page_format','field_61ae213f1f218'),(204387,40867,'fft_hide_nav','0'),(204388,40867,'_fft_hide_nav','field_635bd5e43527c'),(204389,40867,'fft_hide_header_call_to_action','0'),(204390,40867,'_fft_hide_header_call_to_action','field_635bd6723527d'),(204391,40867,'fft_page_sitemap','0'),(204392,40867,'_fft_page_sitemap','field_61af9b34e8181'),(204393,40867,'blocks','a:3:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";}'),(204394,40867,'_blocks','field_6176696113096'),(204395,40867,'course_label_text',''),(204396,40867,'_course_label_text','field_61e17babf71fa'),(204397,40867,'course_label',''),(204398,40867,'_course_label','field_61e12f92749a7'),(204399,40867,'course_description',''),(204400,40867,'_course_description','field_617ac5788e5e1'),(204401,40867,'course_key_info',''),(204402,40867,'_course_key_info','field_617ac6ad8e5e2'),(204403,40867,'course_included',''),(204404,40867,'_course_included','field_617ac6f08e5e4'),(204405,40867,'_thumbnail_id','40863'),(204406,40867,'__thumbnail_id','field_617570855ddaf'),(204407,40867,'blocks_0_acfe_flexible_toggle',''),(204408,40867,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(204409,40867,'blocks_0_acfe_flexible_layout_title','Template'),(204410,40867,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(204411,40867,'blocks_0_template','39087'),(204412,40867,'_blocks_0_template','field_617bdd570fe01'),(204413,40867,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204414,40867,'_hero_actions_0_button','field_61757281285eb'),(204415,40867,'blocks_1_acfe_flexible_toggle',''),(204416,40867,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(204417,40867,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(204418,40867,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(204419,40867,'blocks_1_options_theme','#ffffff'),(204420,40867,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(204421,40867,'blocks_1_options_reverse','0'),(204422,40867,'_blocks_1_options_reverse','field_61768049bb8ac'),(204423,40867,'blocks_1_options',''),(204424,40867,'_blocks_1_options','field_617682517c334'),(204425,40867,'blocks_1_split_5050_image','40866'),(204426,40867,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(204427,40867,'blocks_1_split_5050_video',''),(204428,40867,'_blocks_1_split_5050_video','field_6239f3160848a'),(204429,40867,'blocks_1_split_5050_content_title',''),(204430,40867,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(204431,40867,'blocks_1_split_5050_content_heading','Course Overview'),(204432,40867,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(204433,40867,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(204434,40867,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(204435,40867,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204436,40867,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(204437,40867,'blocks_1_split_5050_content_actions','1'),(204438,40867,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(204439,40867,'blocks_1_split_5050_content',''),(204440,40867,'_blocks_1_split_5050_content','field_61767afceb8ba'),(204441,40867,'blocks_2_acfe_flexible_toggle',''),(204442,40867,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(204443,40867,'blocks_2_acfe_flexible_layout_title','Form'),(204444,40867,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(204445,40867,'blocks_2_row_content_format','standard'),(204446,40867,'_blocks_2_row_content_format','field_6481ead962881'),(204447,40867,'blocks_2_row_content_title',''),(204448,40867,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(204449,40867,'blocks_2_row_content_heading','Enquire Today'),(204450,40867,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(204451,40867,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(204452,40867,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(204453,40867,'blocks_2_row_content_actions',''),(204454,40867,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(204455,40867,'blocks_2_row_content',''),(204456,40867,'_blocks_2_row_content','field_61a0f5f5b3db0'),(204457,40867,'blocks_2_row_form','40394'),(204458,40867,'_blocks_2_row_form','field_61a4ff2c0b08e'),(204459,40867,'blocks_2_row_form_button_label',''),(204460,40867,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(204461,40778,'blocks_3_acfe_flexible_toggle',''),(204462,40778,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(204463,40778,'blocks_3_acfe_flexible_layout_title','Video'),(204464,40778,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(204465,40778,'blocks_3_size','large'),(204466,40778,'_blocks_3_size','field_6487038f297c1'),(204467,40778,'blocks_3_row_content_title',''),(204468,40778,'_blocks_3_row_content_title','field_64870132a865d'),(204469,40778,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(204470,40778,'_blocks_3_row_content_heading','field_64870142a865e'),(204471,40778,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(204472,40778,'_blocks_3_row_content_text','field_64870148a865f'),(204473,40778,'blocks_3_row_content',''),(204474,40778,'_blocks_3_row_content','field_6487008ba865c'),(204475,40778,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(204476,40778,'_blocks_3_video_src','field_6193c4a98ec07'),(204477,40778,'blocks_3_video_thumbnail',''),(204478,40778,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(204479,40868,'hide_hero','0'),(204480,40868,'_hide_hero','field_66a2380fcda39'),(204481,40868,'hero_title','Diploma in Biomechanics Coaching'),(204482,40868,'_hero_title','field_617571fe285e8'),(204483,40868,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(204484,40868,'_hero_text','field_6175723c285e9'),(204485,40868,'hero_actions','1'),(204486,40868,'_hero_actions','field_61757270285ea'),(204487,40868,'hero_style','default'),(204488,40868,'_hero_style','field_62051d9dc5324'),(204489,40868,'hero_image_pos_x','right'),(204490,40868,'_hero_image_pos_x','field_62ec3d05390bb'),(204491,40868,'hero_image_pos_y','top'),(204492,40868,'_hero_image_pos_y','field_62ec3d05390bc'),(204493,40868,'hero_image_pos',''),(204494,40868,'_hero_image_pos','field_62ec3d05390ba'),(204495,40868,'fft_hide_from_listings','0'),(204496,40868,'_fft_hide_from_listings','field_61f1320446ab2'),(204497,40868,'fft_page_format','default'),(204498,40868,'_fft_page_format','field_61ae213f1f218'),(204499,40868,'fft_hide_nav','0'),(204500,40868,'_fft_hide_nav','field_635bd5e43527c'),(204501,40868,'fft_hide_header_call_to_action','0'),(204502,40868,'_fft_hide_header_call_to_action','field_635bd6723527d'),(204503,40868,'fft_page_sitemap','0'),(204504,40868,'_fft_page_sitemap','field_61af9b34e8181'),(204505,40868,'blocks','a:4:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";}'),(204506,40868,'_blocks','field_6176696113096'),(204507,40868,'course_label_text',''),(204508,40868,'_course_label_text','field_61e17babf71fa'),(204509,40868,'course_label',''),(204510,40868,'_course_label','field_61e12f92749a7'),(204511,40868,'course_description',''),(204512,40868,'_course_description','field_617ac5788e5e1'),(204513,40868,'course_key_info',''),(204514,40868,'_course_key_info','field_617ac6ad8e5e2'),(204515,40868,'course_included',''),(204516,40868,'_course_included','field_617ac6f08e5e4'),(204517,40868,'_thumbnail_id','40863'),(204518,40868,'__thumbnail_id','field_617570855ddaf'),(204519,40868,'blocks_0_acfe_flexible_toggle',''),(204520,40868,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(204521,40868,'blocks_0_acfe_flexible_layout_title','Template'),(204522,40868,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(204523,40868,'blocks_0_template','39087'),(204524,40868,'_blocks_0_template','field_617bdd570fe01'),(204525,40868,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204526,40868,'_hero_actions_0_button','field_61757281285eb'),(204527,40868,'blocks_1_acfe_flexible_toggle',''),(204528,40868,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(204529,40868,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(204530,40868,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(204531,40868,'blocks_1_options_theme','#ffffff'),(204532,40868,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(204533,40868,'blocks_1_options_reverse','0'),(204534,40868,'_blocks_1_options_reverse','field_61768049bb8ac'),(204535,40868,'blocks_1_options',''),(204536,40868,'_blocks_1_options','field_617682517c334'),(204537,40868,'blocks_1_split_5050_image','40866'),(204538,40868,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(204539,40868,'blocks_1_split_5050_video',''),(204540,40868,'_blocks_1_split_5050_video','field_6239f3160848a'),(204541,40868,'blocks_1_split_5050_content_title',''),(204542,40868,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(204543,40868,'blocks_1_split_5050_content_heading','Course Overview'),(204544,40868,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(204545,40868,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(204546,40868,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(204547,40868,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204548,40868,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(204549,40868,'blocks_1_split_5050_content_actions','1'),(204550,40868,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(204551,40868,'blocks_1_split_5050_content',''),(204552,40868,'_blocks_1_split_5050_content','field_61767afceb8ba'),(204553,40868,'blocks_2_acfe_flexible_toggle',''),(204554,40868,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(204555,40868,'blocks_2_acfe_flexible_layout_title','Form'),(204556,40868,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(204557,40868,'blocks_2_row_content_format','standard'),(204558,40868,'_blocks_2_row_content_format','field_6481ead962881'),(204559,40868,'blocks_2_row_content_title',''),(204560,40868,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(204561,40868,'blocks_2_row_content_heading','Enquire Today'),(204562,40868,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(204563,40868,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(204564,40868,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(204565,40868,'blocks_2_row_content_actions',''),(204566,40868,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(204567,40868,'blocks_2_row_content',''),(204568,40868,'_blocks_2_row_content','field_61a0f5f5b3db0'),(204569,40868,'blocks_2_row_form','40394'),(204570,40868,'_blocks_2_row_form','field_61a4ff2c0b08e'),(204571,40868,'blocks_2_row_form_button_label',''),(204572,40868,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(204573,40868,'blocks_3_acfe_flexible_toggle',''),(204574,40868,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(204575,40868,'blocks_3_acfe_flexible_layout_title','Video'),(204576,40868,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(204577,40868,'blocks_3_size','large'),(204578,40868,'_blocks_3_size','field_6487038f297c1'),(204579,40868,'blocks_3_row_content_title',''),(204580,40868,'_blocks_3_row_content_title','field_64870132a865d'),(204581,40868,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(204582,40868,'_blocks_3_row_content_heading','field_64870142a865e'),(204583,40868,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(204584,40868,'_blocks_3_row_content_text','field_64870148a865f'),(204585,40868,'blocks_3_row_content',''),(204586,40868,'_blocks_3_row_content','field_6487008ba865c'),(204587,40868,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(204588,40868,'_blocks_3_video_src','field_6193c4a98ec07'),(204589,40868,'blocks_3_video_thumbnail',''),(204590,40868,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(204591,40869,'_wp_attached_file','2024/09/BE-diploma-tabs-1-scaled.jpg'),(204592,40869,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:36:\"2024/09/BE-diploma-tabs-1-scaled.jpg\";s:8:\"filesize\";i:356969;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60336;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"BE-diploma-tabs-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94473;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17804;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46881;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"BE-diploma-tabs-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144585;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"BE-diploma-tabs-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237487;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23153;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83311;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:31:\"BE-diploma-tabs-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133477;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17762;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60336;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:30:\"BE-diploma-tabs-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94473;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17175;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60349;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:30:\"BE-diploma-tabs-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96603;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19873;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68275;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:30:\"BE-diploma-tabs-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107685;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15828;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52543;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:30:\"BE-diploma-tabs-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81713;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"BE-diploma-tabs-1.jpg\";}'),(204593,40870,'_wp_attached_file','2024/09/BE-diploma-tabs-2-scaled.jpg'),(204594,40870,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:36:\"2024/09/BE-diploma-tabs-2-scaled.jpg\";s:8:\"filesize\";i:831928;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-2-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140115;}s:5:\"large\";a:5:{s:4:\"file\";s:30:\"BE-diploma-tabs-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227254;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-2-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36395;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-2-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107389;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"BE-diploma-tabs-2-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:343788;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:31:\"BE-diploma-tabs-2-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:562074;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-2-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46577;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-2-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181665;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:31:\"BE-diploma-tabs-2-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:293216;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-2-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36260;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-2-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140115;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:30:\"BE-diploma-tabs-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:227254;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35585;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-2-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140763;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:30:\"BE-diploma-tabs-2-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230312;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-2-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39875;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-2-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154809;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:30:\"BE-diploma-tabs-2-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:248614;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-2-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32137;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:29:\"BE-diploma-tabs-2-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123289;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:30:\"BE-diploma-tabs-2-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198606;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:21:\"BE-diploma-tabs-2.jpg\";}'),(204595,40778,'blocks_4_acfe_flexible_toggle',''),(204596,40778,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(204597,40778,'blocks_4_acfe_flexible_layout_title','Tabs'),(204598,40778,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(204599,40778,'blocks_4_options_theme','#ffffff'),(204600,40778,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(204601,40778,'blocks_4_options',''),(204602,40778,'_blocks_4_options','field_6177cfcd8140f'),(204603,40778,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(204604,40778,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(204605,40778,'blocks_4_tabs_0_tab_content_title',''),(204606,40778,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(204607,40778,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(204608,40778,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(204609,40778,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(204610,40778,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(204611,40778,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204612,40778,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(204613,40778,'blocks_4_tabs_0_tab_content_actions','1'),(204614,40778,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(204615,40778,'blocks_4_tabs_0_tab_content',''),(204616,40778,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(204617,40778,'blocks_4_tabs_0_tab_image','40869'),(204618,40778,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(204619,40778,'blocks_4_tabs_1_tab_label','Entry requirements'),(204620,40778,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(204621,40778,'blocks_4_tabs_1_tab_content_title',''),(204622,40778,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(204623,40778,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(204624,40778,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(204625,40778,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(204626,40778,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(204627,40778,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204628,40778,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(204629,40778,'blocks_4_tabs_1_tab_content_actions','1'),(204630,40778,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(204631,40778,'blocks_4_tabs_1_tab_content',''),(204632,40778,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(204633,40778,'blocks_4_tabs_1_tab_image','40870'),(204634,40778,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(204635,40778,'blocks_4_tabs','2'),(204636,40778,'_blocks_4_tabs','field_6177cff281419'),(204637,40871,'hide_hero','0'),(204638,40871,'_hide_hero','field_66a2380fcda39'),(204639,40871,'hero_title','Diploma in Biomechanics Coaching'),(204640,40871,'_hero_title','field_617571fe285e8'),(204641,40871,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(204642,40871,'_hero_text','field_6175723c285e9'),(204643,40871,'hero_actions','1'),(204644,40871,'_hero_actions','field_61757270285ea'),(204645,40871,'hero_style','default'),(204646,40871,'_hero_style','field_62051d9dc5324'),(204647,40871,'hero_image_pos_x','right'),(204648,40871,'_hero_image_pos_x','field_62ec3d05390bb'),(204649,40871,'hero_image_pos_y','top'),(204650,40871,'_hero_image_pos_y','field_62ec3d05390bc'),(204651,40871,'hero_image_pos',''),(204652,40871,'_hero_image_pos','field_62ec3d05390ba'),(204653,40871,'fft_hide_from_listings','0'),(204654,40871,'_fft_hide_from_listings','field_61f1320446ab2'),(204655,40871,'fft_page_format','default'),(204656,40871,'_fft_page_format','field_61ae213f1f218'),(204657,40871,'fft_hide_nav','0'),(204658,40871,'_fft_hide_nav','field_635bd5e43527c'),(204659,40871,'fft_hide_header_call_to_action','0'),(204660,40871,'_fft_hide_header_call_to_action','field_635bd6723527d'),(204661,40871,'fft_page_sitemap','0'),(204662,40871,'_fft_page_sitemap','field_61af9b34e8181'),(204663,40871,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";}'),(204664,40871,'_blocks','field_6176696113096'),(204665,40871,'course_label_text',''),(204666,40871,'_course_label_text','field_61e17babf71fa'),(204667,40871,'course_label',''),(204668,40871,'_course_label','field_61e12f92749a7'),(204669,40871,'course_description',''),(204670,40871,'_course_description','field_617ac5788e5e1'),(204671,40871,'course_key_info',''),(204672,40871,'_course_key_info','field_617ac6ad8e5e2'),(204673,40871,'course_included',''),(204674,40871,'_course_included','field_617ac6f08e5e4'),(204675,40871,'_thumbnail_id','40863'),(204676,40871,'__thumbnail_id','field_617570855ddaf'),(204677,40871,'blocks_0_acfe_flexible_toggle',''),(204678,40871,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(204679,40871,'blocks_0_acfe_flexible_layout_title','Template'),(204680,40871,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(204681,40871,'blocks_0_template','39087'),(204682,40871,'_blocks_0_template','field_617bdd570fe01'),(204683,40871,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204684,40871,'_hero_actions_0_button','field_61757281285eb'),(204685,40871,'blocks_1_acfe_flexible_toggle',''),(204686,40871,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(204687,40871,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(204688,40871,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(204689,40871,'blocks_1_options_theme','#ffffff'),(204690,40871,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(204691,40871,'blocks_1_options_reverse','0'),(204692,40871,'_blocks_1_options_reverse','field_61768049bb8ac'),(204693,40871,'blocks_1_options',''),(204694,40871,'_blocks_1_options','field_617682517c334'),(204695,40871,'blocks_1_split_5050_image','40866'),(204696,40871,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(204697,40871,'blocks_1_split_5050_video',''),(204698,40871,'_blocks_1_split_5050_video','field_6239f3160848a'),(204699,40871,'blocks_1_split_5050_content_title',''),(204700,40871,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(204701,40871,'blocks_1_split_5050_content_heading','Course Overview'),(204702,40871,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(204703,40871,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(204704,40871,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(204705,40871,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204706,40871,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(204707,40871,'blocks_1_split_5050_content_actions','1'),(204708,40871,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(204709,40871,'blocks_1_split_5050_content',''),(204710,40871,'_blocks_1_split_5050_content','field_61767afceb8ba'),(204711,40871,'blocks_2_acfe_flexible_toggle',''),(204712,40871,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(204713,40871,'blocks_2_acfe_flexible_layout_title','Form'),(204714,40871,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(204715,40871,'blocks_2_row_content_format','standard'),(204716,40871,'_blocks_2_row_content_format','field_6481ead962881'),(204717,40871,'blocks_2_row_content_title',''),(204718,40871,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(204719,40871,'blocks_2_row_content_heading','Enquire Today'),(204720,40871,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(204721,40871,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(204722,40871,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(204723,40871,'blocks_2_row_content_actions',''),(204724,40871,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(204725,40871,'blocks_2_row_content',''),(204726,40871,'_blocks_2_row_content','field_61a0f5f5b3db0'),(204727,40871,'blocks_2_row_form','40394'),(204728,40871,'_blocks_2_row_form','field_61a4ff2c0b08e'),(204729,40871,'blocks_2_row_form_button_label',''),(204730,40871,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(204731,40871,'blocks_3_acfe_flexible_toggle',''),(204732,40871,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(204733,40871,'blocks_3_acfe_flexible_layout_title','Video'),(204734,40871,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(204735,40871,'blocks_3_size','large'),(204736,40871,'_blocks_3_size','field_6487038f297c1'),(204737,40871,'blocks_3_row_content_title',''),(204738,40871,'_blocks_3_row_content_title','field_64870132a865d'),(204739,40871,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(204740,40871,'_blocks_3_row_content_heading','field_64870142a865e'),(204741,40871,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(204742,40871,'_blocks_3_row_content_text','field_64870148a865f'),(204743,40871,'blocks_3_row_content',''),(204744,40871,'_blocks_3_row_content','field_6487008ba865c'),(204745,40871,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(204746,40871,'_blocks_3_video_src','field_6193c4a98ec07'),(204747,40871,'blocks_3_video_thumbnail',''),(204748,40871,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(204749,40871,'blocks_4_acfe_flexible_toggle',''),(204750,40871,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(204751,40871,'blocks_4_acfe_flexible_layout_title','Tabs'),(204752,40871,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(204753,40871,'blocks_4_options_theme','#f5f5f5'),(204754,40871,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(204755,40871,'blocks_4_options',''),(204756,40871,'_blocks_4_options','field_6177cfcd8140f'),(204757,40871,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(204758,40871,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(204759,40871,'blocks_4_tabs_0_tab_content_title',''),(204760,40871,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(204761,40871,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(204762,40871,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(204763,40871,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(204764,40871,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(204765,40871,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204766,40871,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(204767,40871,'blocks_4_tabs_0_tab_content_actions','1'),(204768,40871,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(204769,40871,'blocks_4_tabs_0_tab_content',''),(204770,40871,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(204771,40871,'blocks_4_tabs_0_tab_image','40869'),(204772,40871,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(204773,40871,'blocks_4_tabs_1_tab_label','Entry requirements'),(204774,40871,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(204775,40871,'blocks_4_tabs_1_tab_content_title',''),(204776,40871,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(204777,40871,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(204778,40871,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(204779,40871,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(204780,40871,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(204781,40871,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204782,40871,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(204783,40871,'blocks_4_tabs_1_tab_content_actions','1'),(204784,40871,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(204785,40871,'blocks_4_tabs_1_tab_content',''),(204786,40871,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(204787,40871,'blocks_4_tabs_1_tab_image','40870'),(204788,40871,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(204789,40871,'blocks_4_tabs','2'),(204790,40871,'_blocks_4_tabs','field_6177cff281419'),(204791,40872,'hide_hero','0'),(204792,40872,'_hide_hero','field_66a2380fcda39'),(204793,40872,'hero_title','Diploma in Biomechanics Coaching'),(204794,40872,'_hero_title','field_617571fe285e8'),(204795,40872,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(204796,40872,'_hero_text','field_6175723c285e9'),(204797,40872,'hero_actions','1'),(204798,40872,'_hero_actions','field_61757270285ea'),(204799,40872,'hero_style','default'),(204800,40872,'_hero_style','field_62051d9dc5324'),(204801,40872,'hero_image_pos_x','right'),(204802,40872,'_hero_image_pos_x','field_62ec3d05390bb'),(204803,40872,'hero_image_pos_y','top'),(204804,40872,'_hero_image_pos_y','field_62ec3d05390bc'),(204805,40872,'hero_image_pos',''),(204806,40872,'_hero_image_pos','field_62ec3d05390ba'),(204807,40872,'fft_hide_from_listings','0'),(204808,40872,'_fft_hide_from_listings','field_61f1320446ab2'),(204809,40872,'fft_page_format','default'),(204810,40872,'_fft_page_format','field_61ae213f1f218'),(204811,40872,'fft_hide_nav','0'),(204812,40872,'_fft_hide_nav','field_635bd5e43527c'),(204813,40872,'fft_hide_header_call_to_action','0'),(204814,40872,'_fft_hide_header_call_to_action','field_635bd6723527d'),(204815,40872,'fft_page_sitemap','0'),(204816,40872,'_fft_page_sitemap','field_61af9b34e8181'),(204817,40872,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";}'),(204818,40872,'_blocks','field_6176696113096'),(204819,40872,'course_label_text',''),(204820,40872,'_course_label_text','field_61e17babf71fa'),(204821,40872,'course_label',''),(204822,40872,'_course_label','field_61e12f92749a7'),(204823,40872,'course_description',''),(204824,40872,'_course_description','field_617ac5788e5e1'),(204825,40872,'course_key_info',''),(204826,40872,'_course_key_info','field_617ac6ad8e5e2'),(204827,40872,'course_included',''),(204828,40872,'_course_included','field_617ac6f08e5e4'),(204829,40872,'_thumbnail_id','40863'),(204830,40872,'__thumbnail_id','field_617570855ddaf'),(204831,40872,'blocks_0_acfe_flexible_toggle',''),(204832,40872,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(204833,40872,'blocks_0_acfe_flexible_layout_title','Template'),(204834,40872,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(204835,40872,'blocks_0_template','39087'),(204836,40872,'_blocks_0_template','field_617bdd570fe01'),(204837,40872,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204838,40872,'_hero_actions_0_button','field_61757281285eb'),(204839,40872,'blocks_1_acfe_flexible_toggle',''),(204840,40872,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(204841,40872,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(204842,40872,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(204843,40872,'blocks_1_options_theme','#ffffff'),(204844,40872,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(204845,40872,'blocks_1_options_reverse','0'),(204846,40872,'_blocks_1_options_reverse','field_61768049bb8ac'),(204847,40872,'blocks_1_options',''),(204848,40872,'_blocks_1_options','field_617682517c334'),(204849,40872,'blocks_1_split_5050_image','40866'),(204850,40872,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(204851,40872,'blocks_1_split_5050_video',''),(204852,40872,'_blocks_1_split_5050_video','field_6239f3160848a'),(204853,40872,'blocks_1_split_5050_content_title',''),(204854,40872,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(204855,40872,'blocks_1_split_5050_content_heading','Course Overview'),(204856,40872,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(204857,40872,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(204858,40872,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(204859,40872,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204860,40872,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(204861,40872,'blocks_1_split_5050_content_actions','1'),(204862,40872,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(204863,40872,'blocks_1_split_5050_content',''),(204864,40872,'_blocks_1_split_5050_content','field_61767afceb8ba'),(204865,40872,'blocks_2_acfe_flexible_toggle',''),(204866,40872,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(204867,40872,'blocks_2_acfe_flexible_layout_title','Form'),(204868,40872,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(204869,40872,'blocks_2_row_content_format','standard'),(204870,40872,'_blocks_2_row_content_format','field_6481ead962881'),(204871,40872,'blocks_2_row_content_title',''),(204872,40872,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(204873,40872,'blocks_2_row_content_heading','Enquire Today'),(204874,40872,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(204875,40872,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(204876,40872,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(204877,40872,'blocks_2_row_content_actions',''),(204878,40872,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(204879,40872,'blocks_2_row_content',''),(204880,40872,'_blocks_2_row_content','field_61a0f5f5b3db0'),(204881,40872,'blocks_2_row_form','40394'),(204882,40872,'_blocks_2_row_form','field_61a4ff2c0b08e'),(204883,40872,'blocks_2_row_form_button_label',''),(204884,40872,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(204885,40872,'blocks_3_acfe_flexible_toggle',''),(204886,40872,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(204887,40872,'blocks_3_acfe_flexible_layout_title','Video'),(204888,40872,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(204889,40872,'blocks_3_size','large'),(204890,40872,'_blocks_3_size','field_6487038f297c1'),(204891,40872,'blocks_3_row_content_title',''),(204892,40872,'_blocks_3_row_content_title','field_64870132a865d'),(204893,40872,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(204894,40872,'_blocks_3_row_content_heading','field_64870142a865e'),(204895,40872,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(204896,40872,'_blocks_3_row_content_text','field_64870148a865f'),(204897,40872,'blocks_3_row_content',''),(204898,40872,'_blocks_3_row_content','field_6487008ba865c'),(204899,40872,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(204900,40872,'_blocks_3_video_src','field_6193c4a98ec07'),(204901,40872,'blocks_3_video_thumbnail',''),(204902,40872,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(204903,40872,'blocks_4_acfe_flexible_toggle',''),(204904,40872,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(204905,40872,'blocks_4_acfe_flexible_layout_title','Tabs'),(204906,40872,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(204907,40872,'blocks_4_options_theme','#ffffff'),(204908,40872,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(204909,40872,'blocks_4_options',''),(204910,40872,'_blocks_4_options','field_6177cfcd8140f'),(204911,40872,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(204912,40872,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(204913,40872,'blocks_4_tabs_0_tab_content_title',''),(204914,40872,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(204915,40872,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(204916,40872,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(204917,40872,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(204918,40872,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(204919,40872,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204920,40872,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(204921,40872,'blocks_4_tabs_0_tab_content_actions','1'),(204922,40872,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(204923,40872,'blocks_4_tabs_0_tab_content',''),(204924,40872,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(204925,40872,'blocks_4_tabs_0_tab_image','40869'),(204926,40872,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(204927,40872,'blocks_4_tabs_1_tab_label','Entry requirements'),(204928,40872,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(204929,40872,'blocks_4_tabs_1_tab_content_title',''),(204930,40872,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(204931,40872,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(204932,40872,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(204933,40872,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(204934,40872,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(204935,40872,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204936,40872,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(204937,40872,'blocks_4_tabs_1_tab_content_actions','1'),(204938,40872,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(204939,40872,'blocks_4_tabs_1_tab_content',''),(204940,40872,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(204941,40872,'blocks_4_tabs_1_tab_image','40870'),(204942,40872,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(204943,40872,'blocks_4_tabs','2'),(204944,40872,'_blocks_4_tabs','field_6177cff281419'),(204945,40778,'blocks_5_acfe_flexible_toggle',''),(204946,40778,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(204947,40778,'blocks_5_acfe_flexible_layout_title','Icons'),(204948,40778,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(204949,40778,'blocks_5_options_theme','#b61234'),(204950,40778,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(204951,40778,'blocks_5_options_format','stacked'),(204952,40778,'_blocks_5_options_format','field_64bfde9a90690'),(204953,40778,'blocks_5_options',''),(204954,40778,'_blocks_5_options','field_64bfdd9b90684'),(204955,40778,'blocks_5_row_content_title',''),(204956,40778,'_blocks_5_row_content_title','field_64bfdd9b90687'),(204957,40778,'blocks_5_row_content_heading','Fees & Funding Options '),(204958,40778,'_blocks_5_row_content_heading','field_64bfdd9b90688'),(204959,40778,'blocks_5_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(204960,40778,'_blocks_5_row_content_text','field_64bfdd9b90689'),(204961,40778,'blocks_5_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(204962,40778,'_blocks_5_row_content_actions_0_button','field_64bfdd9b9068b'),(204963,40778,'blocks_5_row_content_actions','1'),(204964,40778,'_blocks_5_row_content_actions','field_64bfdd9b9068a'),(204965,40778,'blocks_5_row_content',''),(204966,40778,'_blocks_5_row_content','field_64bfdd9b90686'),(204967,40778,'blocks_5_icon_row_items_0_icon','pay-as-you-learn.svg'),(204968,40778,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(204969,40778,'blocks_5_icon_row_items_0_label','Pay in full'),(204970,40778,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(204971,40778,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(204972,40778,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(204973,40778,'blocks_5_icon_row_items_1_icon','finance.svg'),(204974,40778,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(204975,40778,'blocks_5_icon_row_items_1_label','0% finance'),(204976,40778,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(204977,40778,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(204978,40778,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(204979,40778,'blocks_5_icon_row_items_2_icon','pass-rate.svg'),(204980,40778,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(204981,40778,'blocks_5_icon_row_items_2_label','Deposit & balance'),(204982,40778,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(204983,40778,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(204984,40778,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(204985,40778,'blocks_5_icon_row_items','3'),(204986,40778,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(204987,40873,'hide_hero','0'),(204988,40873,'_hide_hero','field_66a2380fcda39'),(204989,40873,'hero_title','Diploma in Biomechanics Coaching'),(204990,40873,'_hero_title','field_617571fe285e8'),(204991,40873,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(204992,40873,'_hero_text','field_6175723c285e9'),(204993,40873,'hero_actions','1'),(204994,40873,'_hero_actions','field_61757270285ea'),(204995,40873,'hero_style','default'),(204996,40873,'_hero_style','field_62051d9dc5324'),(204997,40873,'hero_image_pos_x','right'),(204998,40873,'_hero_image_pos_x','field_62ec3d05390bb'),(204999,40873,'hero_image_pos_y','top'),(205000,40873,'_hero_image_pos_y','field_62ec3d05390bc'),(205001,40873,'hero_image_pos',''),(205002,40873,'_hero_image_pos','field_62ec3d05390ba'),(205003,40873,'fft_hide_from_listings','0'),(205004,40873,'_fft_hide_from_listings','field_61f1320446ab2'),(205005,40873,'fft_page_format','default'),(205006,40873,'_fft_page_format','field_61ae213f1f218'),(205007,40873,'fft_hide_nav','0'),(205008,40873,'_fft_hide_nav','field_635bd5e43527c'),(205009,40873,'fft_hide_header_call_to_action','0'),(205010,40873,'_fft_hide_header_call_to_action','field_635bd6723527d'),(205011,40873,'fft_page_sitemap','0'),(205012,40873,'_fft_page_sitemap','field_61af9b34e8181'),(205013,40873,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:5:\"icons\";}'),(205014,40873,'_blocks','field_6176696113096'),(205015,40873,'course_label_text',''),(205016,40873,'_course_label_text','field_61e17babf71fa'),(205017,40873,'course_label',''),(205018,40873,'_course_label','field_61e12f92749a7'),(205019,40873,'course_description',''),(205020,40873,'_course_description','field_617ac5788e5e1'),(205021,40873,'course_key_info',''),(205022,40873,'_course_key_info','field_617ac6ad8e5e2'),(205023,40873,'course_included',''),(205024,40873,'_course_included','field_617ac6f08e5e4'),(205025,40873,'_thumbnail_id','40863'),(205026,40873,'__thumbnail_id','field_617570855ddaf'),(205027,40873,'blocks_0_acfe_flexible_toggle',''),(205028,40873,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(205029,40873,'blocks_0_acfe_flexible_layout_title','Template'),(205030,40873,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(205031,40873,'blocks_0_template','39087'),(205032,40873,'_blocks_0_template','field_617bdd570fe01'),(205033,40873,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205034,40873,'_hero_actions_0_button','field_61757281285eb'),(205035,40873,'blocks_1_acfe_flexible_toggle',''),(205036,40873,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(205037,40873,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(205038,40873,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(205039,40873,'blocks_1_options_theme','#ffffff'),(205040,40873,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(205041,40873,'blocks_1_options_reverse','0'),(205042,40873,'_blocks_1_options_reverse','field_61768049bb8ac'),(205043,40873,'blocks_1_options',''),(205044,40873,'_blocks_1_options','field_617682517c334'),(205045,40873,'blocks_1_split_5050_image','40866'),(205046,40873,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(205047,40873,'blocks_1_split_5050_video',''),(205048,40873,'_blocks_1_split_5050_video','field_6239f3160848a'),(205049,40873,'blocks_1_split_5050_content_title',''),(205050,40873,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(205051,40873,'blocks_1_split_5050_content_heading','Course Overview'),(205052,40873,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(205053,40873,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(205054,40873,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(205055,40873,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205056,40873,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(205057,40873,'blocks_1_split_5050_content_actions','1'),(205058,40873,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(205059,40873,'blocks_1_split_5050_content',''),(205060,40873,'_blocks_1_split_5050_content','field_61767afceb8ba'),(205061,40873,'blocks_2_acfe_flexible_toggle',''),(205062,40873,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(205063,40873,'blocks_2_acfe_flexible_layout_title','Form'),(205064,40873,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(205065,40873,'blocks_2_row_content_format','standard'),(205066,40873,'_blocks_2_row_content_format','field_6481ead962881'),(205067,40873,'blocks_2_row_content_title',''),(205068,40873,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(205069,40873,'blocks_2_row_content_heading','Enquire Today'),(205070,40873,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(205071,40873,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(205072,40873,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(205073,40873,'blocks_2_row_content_actions',''),(205074,40873,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(205075,40873,'blocks_2_row_content',''),(205076,40873,'_blocks_2_row_content','field_61a0f5f5b3db0'),(205077,40873,'blocks_2_row_form','40394'),(205078,40873,'_blocks_2_row_form','field_61a4ff2c0b08e'),(205079,40873,'blocks_2_row_form_button_label',''),(205080,40873,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(205081,40873,'blocks_3_acfe_flexible_toggle',''),(205082,40873,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(205083,40873,'blocks_3_acfe_flexible_layout_title','Video'),(205084,40873,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(205085,40873,'blocks_3_size','large'),(205086,40873,'_blocks_3_size','field_6487038f297c1'),(205087,40873,'blocks_3_row_content_title',''),(205088,40873,'_blocks_3_row_content_title','field_64870132a865d'),(205089,40873,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(205090,40873,'_blocks_3_row_content_heading','field_64870142a865e'),(205091,40873,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(205092,40873,'_blocks_3_row_content_text','field_64870148a865f'),(205093,40873,'blocks_3_row_content',''),(205094,40873,'_blocks_3_row_content','field_6487008ba865c'),(205095,40873,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(205096,40873,'_blocks_3_video_src','field_6193c4a98ec07'),(205097,40873,'blocks_3_video_thumbnail',''),(205098,40873,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(205099,40873,'blocks_4_acfe_flexible_toggle',''),(205100,40873,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(205101,40873,'blocks_4_acfe_flexible_layout_title','Tabs'),(205102,40873,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(205103,40873,'blocks_4_options_theme','#ffffff'),(205104,40873,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(205105,40873,'blocks_4_options',''),(205106,40873,'_blocks_4_options','field_6177cfcd8140f'),(205107,40873,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(205108,40873,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(205109,40873,'blocks_4_tabs_0_tab_content_title',''),(205110,40873,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(205111,40873,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(205112,40873,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(205113,40873,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(205114,40873,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(205115,40873,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205116,40873,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(205117,40873,'blocks_4_tabs_0_tab_content_actions','1'),(205118,40873,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(205119,40873,'blocks_4_tabs_0_tab_content',''),(205120,40873,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(205121,40873,'blocks_4_tabs_0_tab_image','40869'),(205122,40873,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(205123,40873,'blocks_4_tabs_1_tab_label','Entry requirements'),(205124,40873,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(205125,40873,'blocks_4_tabs_1_tab_content_title',''),(205126,40873,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(205127,40873,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(205128,40873,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(205129,40873,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(205130,40873,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(205131,40873,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205132,40873,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(205133,40873,'blocks_4_tabs_1_tab_content_actions','1'),(205134,40873,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(205135,40873,'blocks_4_tabs_1_tab_content',''),(205136,40873,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(205137,40873,'blocks_4_tabs_1_tab_image','40870'),(205138,40873,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(205139,40873,'blocks_4_tabs','2'),(205140,40873,'_blocks_4_tabs','field_6177cff281419'),(205141,40873,'blocks_5_acfe_flexible_toggle',''),(205142,40873,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(205143,40873,'blocks_5_acfe_flexible_layout_title','Icons'),(205144,40873,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(205145,40873,'blocks_5_options_theme','#b61234'),(205146,40873,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(205147,40873,'blocks_5_options_format','stacked'),(205148,40873,'_blocks_5_options_format','field_64bfde9a90690'),(205149,40873,'blocks_5_options',''),(205150,40873,'_blocks_5_options','field_64bfdd9b90684'),(205151,40873,'blocks_5_row_content_title',''),(205152,40873,'_blocks_5_row_content_title','field_64bfdd9b90687'),(205153,40873,'blocks_5_row_content_heading','Fees & Funding Options '),(205154,40873,'_blocks_5_row_content_heading','field_64bfdd9b90688'),(205155,40873,'blocks_5_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(205156,40873,'_blocks_5_row_content_text','field_64bfdd9b90689'),(205157,40873,'blocks_5_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205158,40873,'_blocks_5_row_content_actions_0_button','field_64bfdd9b9068b'),(205159,40873,'blocks_5_row_content_actions','1'),(205160,40873,'_blocks_5_row_content_actions','field_64bfdd9b9068a'),(205161,40873,'blocks_5_row_content',''),(205162,40873,'_blocks_5_row_content','field_64bfdd9b90686'),(205163,40873,'blocks_5_icon_row_items_0_icon','finance.svg'),(205164,40873,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(205165,40873,'blocks_5_icon_row_items_0_label','Pay in full'),(205166,40873,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(205167,40873,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(205168,40873,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(205169,40873,'blocks_5_icon_row_items_1_icon','pass-rate.svg'),(205170,40873,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(205171,40873,'blocks_5_icon_row_items_1_label','0% finance'),(205172,40873,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(205173,40873,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(205174,40873,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(205175,40873,'blocks_5_icon_row_items_2_icon','28-years.svg'),(205176,40873,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(205177,40873,'blocks_5_icon_row_items_2_label','Deposit & balance'),(205178,40873,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(205179,40873,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(205180,40873,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(205181,40873,'blocks_5_icon_row_items','3'),(205182,40873,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(205183,40778,'blocks_6_acfe_flexible_toggle',''),(205184,40778,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(205185,40778,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(205186,40778,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(205187,40778,'blocks_6_options_theme','#ffffff'),(205188,40778,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(205189,40778,'blocks_6_options_reverse','0'),(205190,40778,'_blocks_6_options_reverse','field_61768049bb8ac'),(205191,40778,'blocks_6_options',''),(205192,40778,'_blocks_6_options','field_617682517c334'),(205193,40778,'blocks_6_split_5050_image','39224'),(205194,40778,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(205195,40778,'blocks_6_split_5050_video',''),(205196,40778,'_blocks_6_split_5050_video','field_6239f3160848a'),(205197,40778,'blocks_6_split_5050_content_title',''),(205198,40778,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(205199,40778,'blocks_6_split_5050_content_heading','Locations'),(205200,40778,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(205201,40778,'blocks_6_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(205202,40778,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(205203,40778,'blocks_6_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205204,40778,'_blocks_6_split_5050_content_actions_0_button','field_61767b72eb8be'),(205205,40778,'blocks_6_split_5050_content_actions','1'),(205206,40778,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(205207,40778,'blocks_6_split_5050_content',''),(205208,40778,'_blocks_6_split_5050_content','field_61767afceb8ba'),(205209,40874,'hide_hero','0'),(205210,40874,'_hide_hero','field_66a2380fcda39'),(205211,40874,'hero_title','Diploma in Biomechanics Coaching'),(205212,40874,'_hero_title','field_617571fe285e8'),(205213,40874,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(205214,40874,'_hero_text','field_6175723c285e9'),(205215,40874,'hero_actions','1'),(205216,40874,'_hero_actions','field_61757270285ea'),(205217,40874,'hero_style','default'),(205218,40874,'_hero_style','field_62051d9dc5324'),(205219,40874,'hero_image_pos_x','right'),(205220,40874,'_hero_image_pos_x','field_62ec3d05390bb'),(205221,40874,'hero_image_pos_y','top'),(205222,40874,'_hero_image_pos_y','field_62ec3d05390bc'),(205223,40874,'hero_image_pos',''),(205224,40874,'_hero_image_pos','field_62ec3d05390ba'),(205225,40874,'fft_hide_from_listings','0'),(205226,40874,'_fft_hide_from_listings','field_61f1320446ab2'),(205227,40874,'fft_page_format','default'),(205228,40874,'_fft_page_format','field_61ae213f1f218'),(205229,40874,'fft_hide_nav','0'),(205230,40874,'_fft_hide_nav','field_635bd5e43527c'),(205231,40874,'fft_hide_header_call_to_action','0'),(205232,40874,'_fft_hide_header_call_to_action','field_635bd6723527d'),(205233,40874,'fft_page_sitemap','0'),(205234,40874,'_fft_page_sitemap','field_61af9b34e8181'),(205235,40874,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:5:\"icons\";i:6;s:10:\"split_5050\";}'),(205236,40874,'_blocks','field_6176696113096'),(205237,40874,'course_label_text',''),(205238,40874,'_course_label_text','field_61e17babf71fa'),(205239,40874,'course_label',''),(205240,40874,'_course_label','field_61e12f92749a7'),(205241,40874,'course_description',''),(205242,40874,'_course_description','field_617ac5788e5e1'),(205243,40874,'course_key_info',''),(205244,40874,'_course_key_info','field_617ac6ad8e5e2'),(205245,40874,'course_included',''),(205246,40874,'_course_included','field_617ac6f08e5e4'),(205247,40874,'_thumbnail_id','40863'),(205248,40874,'__thumbnail_id','field_617570855ddaf'),(205249,40874,'blocks_0_acfe_flexible_toggle',''),(205250,40874,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(205251,40874,'blocks_0_acfe_flexible_layout_title','Template'),(205252,40874,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(205253,40874,'blocks_0_template','39087'),(205254,40874,'_blocks_0_template','field_617bdd570fe01'),(205255,40874,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205256,40874,'_hero_actions_0_button','field_61757281285eb'),(205257,40874,'blocks_1_acfe_flexible_toggle',''),(205258,40874,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(205259,40874,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(205260,40874,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(205261,40874,'blocks_1_options_theme','#ffffff'),(205262,40874,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(205263,40874,'blocks_1_options_reverse','0'),(205264,40874,'_blocks_1_options_reverse','field_61768049bb8ac'),(205265,40874,'blocks_1_options',''),(205266,40874,'_blocks_1_options','field_617682517c334'),(205267,40874,'blocks_1_split_5050_image','40866'),(205268,40874,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(205269,40874,'blocks_1_split_5050_video',''),(205270,40874,'_blocks_1_split_5050_video','field_6239f3160848a'),(205271,40874,'blocks_1_split_5050_content_title',''),(205272,40874,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(205273,40874,'blocks_1_split_5050_content_heading','Course Overview'),(205274,40874,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(205275,40874,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(205276,40874,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(205277,40874,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205278,40874,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(205279,40874,'blocks_1_split_5050_content_actions','1'),(205280,40874,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(205281,40874,'blocks_1_split_5050_content',''),(205282,40874,'_blocks_1_split_5050_content','field_61767afceb8ba'),(205283,40874,'blocks_2_acfe_flexible_toggle',''),(205284,40874,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(205285,40874,'blocks_2_acfe_flexible_layout_title','Form'),(205286,40874,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(205287,40874,'blocks_2_row_content_format','standard'),(205288,40874,'_blocks_2_row_content_format','field_6481ead962881'),(205289,40874,'blocks_2_row_content_title',''),(205290,40874,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(205291,40874,'blocks_2_row_content_heading','Enquire Today'),(205292,40874,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(205293,40874,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(205294,40874,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(205295,40874,'blocks_2_row_content_actions',''),(205296,40874,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(205297,40874,'blocks_2_row_content',''),(205298,40874,'_blocks_2_row_content','field_61a0f5f5b3db0'),(205299,40874,'blocks_2_row_form','40394'),(205300,40874,'_blocks_2_row_form','field_61a4ff2c0b08e'),(205301,40874,'blocks_2_row_form_button_label',''),(205302,40874,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(205303,40874,'blocks_3_acfe_flexible_toggle',''),(205304,40874,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(205305,40874,'blocks_3_acfe_flexible_layout_title','Video'),(205306,40874,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(205307,40874,'blocks_3_size','large'),(205308,40874,'_blocks_3_size','field_6487038f297c1'),(205309,40874,'blocks_3_row_content_title',''),(205310,40874,'_blocks_3_row_content_title','field_64870132a865d'),(205311,40874,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(205312,40874,'_blocks_3_row_content_heading','field_64870142a865e'),(205313,40874,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(205314,40874,'_blocks_3_row_content_text','field_64870148a865f'),(205315,40874,'blocks_3_row_content',''),(205316,40874,'_blocks_3_row_content','field_6487008ba865c'),(205317,40874,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(205318,40874,'_blocks_3_video_src','field_6193c4a98ec07'),(205319,40874,'blocks_3_video_thumbnail',''),(205320,40874,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(205321,40874,'blocks_4_acfe_flexible_toggle',''),(205322,40874,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(205323,40874,'blocks_4_acfe_flexible_layout_title','Tabs'),(205324,40874,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(205325,40874,'blocks_4_options_theme','#ffffff'),(205326,40874,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(205327,40874,'blocks_4_options',''),(205328,40874,'_blocks_4_options','field_6177cfcd8140f'),(205329,40874,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(205330,40874,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(205331,40874,'blocks_4_tabs_0_tab_content_title',''),(205332,40874,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(205333,40874,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(205334,40874,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(205335,40874,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(205336,40874,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(205337,40874,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205338,40874,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(205339,40874,'blocks_4_tabs_0_tab_content_actions','1'),(205340,40874,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(205341,40874,'blocks_4_tabs_0_tab_content',''),(205342,40874,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(205343,40874,'blocks_4_tabs_0_tab_image','40869'),(205344,40874,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(205345,40874,'blocks_4_tabs_1_tab_label','Entry requirements'),(205346,40874,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(205347,40874,'blocks_4_tabs_1_tab_content_title',''),(205348,40874,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(205349,40874,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(205350,40874,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(205351,40874,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(205352,40874,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(205353,40874,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205354,40874,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(205355,40874,'blocks_4_tabs_1_tab_content_actions','1'),(205356,40874,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(205357,40874,'blocks_4_tabs_1_tab_content',''),(205358,40874,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(205359,40874,'blocks_4_tabs_1_tab_image','40870'),(205360,40874,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(205361,40874,'blocks_4_tabs','2'),(205362,40874,'_blocks_4_tabs','field_6177cff281419'),(205363,40874,'blocks_5_acfe_flexible_toggle',''),(205364,40874,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(205365,40874,'blocks_5_acfe_flexible_layout_title','Icons'),(205366,40874,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(205367,40874,'blocks_5_options_theme','#b61234'),(205368,40874,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(205369,40874,'blocks_5_options_format','stacked'),(205370,40874,'_blocks_5_options_format','field_64bfde9a90690'),(205371,40874,'blocks_5_options',''),(205372,40874,'_blocks_5_options','field_64bfdd9b90684'),(205373,40874,'blocks_5_row_content_title',''),(205374,40874,'_blocks_5_row_content_title','field_64bfdd9b90687'),(205375,40874,'blocks_5_row_content_heading','Fees & Funding Options '),(205376,40874,'_blocks_5_row_content_heading','field_64bfdd9b90688'),(205377,40874,'blocks_5_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(205378,40874,'_blocks_5_row_content_text','field_64bfdd9b90689'),(205379,40874,'blocks_5_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205380,40874,'_blocks_5_row_content_actions_0_button','field_64bfdd9b9068b'),(205381,40874,'blocks_5_row_content_actions','1'),(205382,40874,'_blocks_5_row_content_actions','field_64bfdd9b9068a'),(205383,40874,'blocks_5_row_content',''),(205384,40874,'_blocks_5_row_content','field_64bfdd9b90686'),(205385,40874,'blocks_5_icon_row_items_0_icon','finance.svg'),(205386,40874,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(205387,40874,'blocks_5_icon_row_items_0_label','Pay in full'),(205388,40874,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(205389,40874,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(205390,40874,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(205391,40874,'blocks_5_icon_row_items_1_icon','pass-rate.svg'),(205392,40874,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(205393,40874,'blocks_5_icon_row_items_1_label','0% finance'),(205394,40874,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(205395,40874,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(205396,40874,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(205397,40874,'blocks_5_icon_row_items_2_icon','28-years.svg'),(205398,40874,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(205399,40874,'blocks_5_icon_row_items_2_label','Deposit & balance'),(205400,40874,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(205401,40874,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(205402,40874,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(205403,40874,'blocks_5_icon_row_items','3'),(205404,40874,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(205405,40874,'blocks_6_acfe_flexible_toggle',''),(205406,40874,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(205407,40874,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(205408,40874,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(205409,40874,'blocks_6_options_theme','#ffffff'),(205410,40874,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(205411,40874,'blocks_6_options_reverse','0'),(205412,40874,'_blocks_6_options_reverse','field_61768049bb8ac'),(205413,40874,'blocks_6_options',''),(205414,40874,'_blocks_6_options','field_617682517c334'),(205415,40874,'blocks_6_split_5050_image','39224'),(205416,40874,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(205417,40874,'blocks_6_split_5050_video',''),(205418,40874,'_blocks_6_split_5050_video','field_6239f3160848a'),(205419,40874,'blocks_6_split_5050_content_title',''),(205420,40874,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(205421,40874,'blocks_6_split_5050_content_heading','Locations'),(205422,40874,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(205423,40874,'blocks_6_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(205424,40874,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(205425,40874,'blocks_6_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205426,40874,'_blocks_6_split_5050_content_actions_0_button','field_61767b72eb8be'),(205427,40874,'blocks_6_split_5050_content_actions','1'),(205428,40874,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(205429,40874,'blocks_6_split_5050_content',''),(205430,40874,'_blocks_6_split_5050_content','field_61767afceb8ba'),(205457,40778,'blocks_8_acfe_flexible_toggle',''),(205458,40778,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(205459,40778,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(205460,40778,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(205461,40778,'blocks_8_options_theme','#ffffff'),(205462,40778,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(205463,40778,'blocks_8_options_state','0'),(205464,40778,'_blocks_8_options_state','field_6239fcb7508c5'),(205465,40778,'blocks_8_options',''),(205466,40778,'_blocks_8_options','field_6177e2991ac44'),(205467,40778,'blocks_8_content_title',''),(205468,40778,'_blocks_8_content_title','field_64d237e8bb1e2'),(205469,40778,'blocks_8_content_heading','FAQ\'s'),(205470,40778,'_blocks_8_content_heading','field_64d237e8bb1e3'),(205471,40778,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(205472,40778,'_blocks_8_content_text','field_64d237e8bb1e4'),(205473,40778,'blocks_8_content_actions',''),(205474,40778,'_blocks_8_content_actions','field_64d237e8bb1e5'),(205475,40778,'blocks_8_content_align','left'),(205476,40778,'_blocks_8_content_align','field_64d2443e6b6aa'),(205477,40778,'blocks_8_content',''),(205478,40778,'_blocks_8_content','field_64d237e8bb1e1'),(205479,40778,'blocks_8_accordion_content','faqs'),(205480,40778,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(205481,40778,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(205482,40778,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(205483,40778,'blocks_8_actions',''),(205484,40778,'_blocks_8_actions','field_61a746a817f7a'),(205485,40875,'hide_hero','0'),(205486,40875,'_hide_hero','field_66a2380fcda39'),(205487,40875,'hero_title','Diploma in Biomechanics Coaching'),(205488,40875,'_hero_title','field_617571fe285e8'),(205489,40875,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(205490,40875,'_hero_text','field_6175723c285e9'),(205491,40875,'hero_actions','1'),(205492,40875,'_hero_actions','field_61757270285ea'),(205493,40875,'hero_style','default'),(205494,40875,'_hero_style','field_62051d9dc5324'),(205495,40875,'hero_image_pos_x','right'),(205496,40875,'_hero_image_pos_x','field_62ec3d05390bb'),(205497,40875,'hero_image_pos_y','top'),(205498,40875,'_hero_image_pos_y','field_62ec3d05390bc'),(205499,40875,'hero_image_pos',''),(205500,40875,'_hero_image_pos','field_62ec3d05390ba'),(205501,40875,'fft_hide_from_listings','0'),(205502,40875,'_fft_hide_from_listings','field_61f1320446ab2'),(205503,40875,'fft_page_format','default'),(205504,40875,'_fft_page_format','field_61ae213f1f218'),(205505,40875,'fft_hide_nav','0'),(205506,40875,'_fft_hide_nav','field_635bd5e43527c'),(205507,40875,'fft_hide_header_call_to_action','0'),(205508,40875,'_fft_hide_header_call_to_action','field_635bd6723527d'),(205509,40875,'fft_page_sitemap','0'),(205510,40875,'_fft_page_sitemap','field_61af9b34e8181'),(205511,40875,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:5:\"icons\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"accordions\";}'),(205512,40875,'_blocks','field_6176696113096'),(205513,40875,'course_label_text',''),(205514,40875,'_course_label_text','field_61e17babf71fa'),(205515,40875,'course_label',''),(205516,40875,'_course_label','field_61e12f92749a7'),(205517,40875,'course_description',''),(205518,40875,'_course_description','field_617ac5788e5e1'),(205519,40875,'course_key_info',''),(205520,40875,'_course_key_info','field_617ac6ad8e5e2'),(205521,40875,'course_included',''),(205522,40875,'_course_included','field_617ac6f08e5e4'),(205523,40875,'_thumbnail_id','40863'),(205524,40875,'__thumbnail_id','field_617570855ddaf'),(205525,40875,'blocks_0_acfe_flexible_toggle',''),(205526,40875,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(205527,40875,'blocks_0_acfe_flexible_layout_title','Template'),(205528,40875,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(205529,40875,'blocks_0_template','39087'),(205530,40875,'_blocks_0_template','field_617bdd570fe01'),(205531,40875,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205532,40875,'_hero_actions_0_button','field_61757281285eb'),(205533,40875,'blocks_1_acfe_flexible_toggle',''),(205534,40875,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(205535,40875,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(205536,40875,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(205537,40875,'blocks_1_options_theme','#ffffff'),(205538,40875,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(205539,40875,'blocks_1_options_reverse','0'),(205540,40875,'_blocks_1_options_reverse','field_61768049bb8ac'),(205541,40875,'blocks_1_options',''),(205542,40875,'_blocks_1_options','field_617682517c334'),(205543,40875,'blocks_1_split_5050_image','40866'),(205544,40875,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(205545,40875,'blocks_1_split_5050_video',''),(205546,40875,'_blocks_1_split_5050_video','field_6239f3160848a'),(205547,40875,'blocks_1_split_5050_content_title',''),(205548,40875,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(205549,40875,'blocks_1_split_5050_content_heading','Course Overview'),(205550,40875,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(205551,40875,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(205552,40875,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(205553,40875,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205554,40875,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(205555,40875,'blocks_1_split_5050_content_actions','1'),(205556,40875,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(205557,40875,'blocks_1_split_5050_content',''),(205558,40875,'_blocks_1_split_5050_content','field_61767afceb8ba'),(205559,40875,'blocks_2_acfe_flexible_toggle',''),(205560,40875,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(205561,40875,'blocks_2_acfe_flexible_layout_title','Form'),(205562,40875,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(205563,40875,'blocks_2_row_content_format','standard'),(205564,40875,'_blocks_2_row_content_format','field_6481ead962881'),(205565,40875,'blocks_2_row_content_title',''),(205566,40875,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(205567,40875,'blocks_2_row_content_heading','Enquire Today'),(205568,40875,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(205569,40875,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(205570,40875,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(205571,40875,'blocks_2_row_content_actions',''),(205572,40875,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(205573,40875,'blocks_2_row_content',''),(205574,40875,'_blocks_2_row_content','field_61a0f5f5b3db0'),(205575,40875,'blocks_2_row_form','40394'),(205576,40875,'_blocks_2_row_form','field_61a4ff2c0b08e'),(205577,40875,'blocks_2_row_form_button_label',''),(205578,40875,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(205579,40875,'blocks_3_acfe_flexible_toggle',''),(205580,40875,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(205581,40875,'blocks_3_acfe_flexible_layout_title','Video'),(205582,40875,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(205583,40875,'blocks_3_size','large'),(205584,40875,'_blocks_3_size','field_6487038f297c1'),(205585,40875,'blocks_3_row_content_title',''),(205586,40875,'_blocks_3_row_content_title','field_64870132a865d'),(205587,40875,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(205588,40875,'_blocks_3_row_content_heading','field_64870142a865e'),(205589,40875,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(205590,40875,'_blocks_3_row_content_text','field_64870148a865f'),(205591,40875,'blocks_3_row_content',''),(205592,40875,'_blocks_3_row_content','field_6487008ba865c'),(205593,40875,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(205594,40875,'_blocks_3_video_src','field_6193c4a98ec07'),(205595,40875,'blocks_3_video_thumbnail',''),(205596,40875,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(205597,40875,'blocks_4_acfe_flexible_toggle',''),(205598,40875,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(205599,40875,'blocks_4_acfe_flexible_layout_title','Tabs'),(205600,40875,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(205601,40875,'blocks_4_options_theme','#ffffff'),(205602,40875,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(205603,40875,'blocks_4_options',''),(205604,40875,'_blocks_4_options','field_6177cfcd8140f'),(205605,40875,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(205606,40875,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(205607,40875,'blocks_4_tabs_0_tab_content_title',''),(205608,40875,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(205609,40875,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(205610,40875,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(205611,40875,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(205612,40875,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(205613,40875,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205614,40875,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(205615,40875,'blocks_4_tabs_0_tab_content_actions','1'),(205616,40875,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(205617,40875,'blocks_4_tabs_0_tab_content',''),(205618,40875,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(205619,40875,'blocks_4_tabs_0_tab_image','40869'),(205620,40875,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(205621,40875,'blocks_4_tabs_1_tab_label','Entry requirements'),(205622,40875,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(205623,40875,'blocks_4_tabs_1_tab_content_title',''),(205624,40875,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(205625,40875,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(205626,40875,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(205627,40875,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(205628,40875,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(205629,40875,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205630,40875,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(205631,40875,'blocks_4_tabs_1_tab_content_actions','1'),(205632,40875,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(205633,40875,'blocks_4_tabs_1_tab_content',''),(205634,40875,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(205635,40875,'blocks_4_tabs_1_tab_image','40870'),(205636,40875,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(205637,40875,'blocks_4_tabs','2'),(205638,40875,'_blocks_4_tabs','field_6177cff281419'),(205639,40875,'blocks_5_acfe_flexible_toggle',''),(205640,40875,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(205641,40875,'blocks_5_acfe_flexible_layout_title','Icons'),(205642,40875,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(205643,40875,'blocks_5_options_theme','#b61234'),(205644,40875,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(205645,40875,'blocks_5_options_format','stacked'),(205646,40875,'_blocks_5_options_format','field_64bfde9a90690'),(205647,40875,'blocks_5_options',''),(205648,40875,'_blocks_5_options','field_64bfdd9b90684'),(205649,40875,'blocks_5_row_content_title',''),(205650,40875,'_blocks_5_row_content_title','field_64bfdd9b90687'),(205651,40875,'blocks_5_row_content_heading','Fees & Funding Options '),(205652,40875,'_blocks_5_row_content_heading','field_64bfdd9b90688'),(205653,40875,'blocks_5_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(205654,40875,'_blocks_5_row_content_text','field_64bfdd9b90689'),(205655,40875,'blocks_5_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205656,40875,'_blocks_5_row_content_actions_0_button','field_64bfdd9b9068b'),(205657,40875,'blocks_5_row_content_actions','1'),(205658,40875,'_blocks_5_row_content_actions','field_64bfdd9b9068a'),(205659,40875,'blocks_5_row_content',''),(205660,40875,'_blocks_5_row_content','field_64bfdd9b90686'),(205661,40875,'blocks_5_icon_row_items_0_icon','finance.svg'),(205662,40875,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(205663,40875,'blocks_5_icon_row_items_0_label','Pay in full'),(205664,40875,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(205665,40875,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(205666,40875,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(205667,40875,'blocks_5_icon_row_items_1_icon','pass-rate.svg'),(205668,40875,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(205669,40875,'blocks_5_icon_row_items_1_label','0% finance'),(205670,40875,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(205671,40875,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(205672,40875,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(205673,40875,'blocks_5_icon_row_items_2_icon','28-years.svg'),(205674,40875,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(205675,40875,'blocks_5_icon_row_items_2_label','Deposit & balance'),(205676,40875,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(205677,40875,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(205678,40875,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(205679,40875,'blocks_5_icon_row_items','3'),(205680,40875,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(205681,40875,'blocks_6_acfe_flexible_toggle',''),(205682,40875,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(205683,40875,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(205684,40875,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(205685,40875,'blocks_6_options_theme','#ffffff'),(205686,40875,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(205687,40875,'blocks_6_options_reverse','0'),(205688,40875,'_blocks_6_options_reverse','field_61768049bb8ac'),(205689,40875,'blocks_6_options',''),(205690,40875,'_blocks_6_options','field_617682517c334'),(205691,40875,'blocks_6_split_5050_image','39224'),(205692,40875,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(205693,40875,'blocks_6_split_5050_video',''),(205694,40875,'_blocks_6_split_5050_video','field_6239f3160848a'),(205695,40875,'blocks_6_split_5050_content_title',''),(205696,40875,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(205697,40875,'blocks_6_split_5050_content_heading','Locations'),(205698,40875,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(205699,40875,'blocks_6_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(205700,40875,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(205701,40875,'blocks_6_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205702,40875,'_blocks_6_split_5050_content_actions_0_button','field_61767b72eb8be'),(205703,40875,'blocks_6_split_5050_content_actions','1'),(205704,40875,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(205705,40875,'blocks_6_split_5050_content',''),(205706,40875,'_blocks_6_split_5050_content','field_61767afceb8ba'),(205707,40875,'blocks_7_acfe_flexible_toggle',''),(205708,40875,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(205709,40875,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(205710,40875,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(205711,40875,'blocks_7_options_theme','#f5f5f5'),(205712,40875,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(205713,40875,'blocks_7_options_reverse','1'),(205714,40875,'_blocks_7_options_reverse','field_61768049bb8ac'),(205715,40875,'blocks_7_options',''),(205716,40875,'_blocks_7_options','field_617682517c334'),(205717,40875,'blocks_7_split_5050_image','40844'),(205718,40875,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(205719,40875,'blocks_7_split_5050_video',''),(205720,40875,'_blocks_7_split_5050_video','field_6239f3160848a'),(205721,40875,'blocks_7_split_5050_content_title','Biomechanics Education & Future Fit'),(205722,40875,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(205723,40875,'blocks_7_split_5050_content_heading','Working In Partnership '),(205724,40875,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(205725,40875,'blocks_7_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanics Educations expertise, skills, connections, and offerings to our learners and our network and will help us in our mission as we continue to look for new ways to make positive changes to the way we not only train our students but how we help shape the health and fitness industry.\r\n\r\nAs a combined force, both Future Fit and Biomechanics Education offer multiple benefits to you as the learner, including (but not exclusive to):\r\n<ul>\r\n 	<li>Access to Future Fit Student Zone for support and information</li>\r\n 	<li>Discounts on businesses and brands you love</li>\r\n 	<li>Our learning management system</li>\r\n 	<li>Industry recognised training</li>\r\n 	<li>Ongoing support during and after qualification</li>\r\n</ul>'),(205726,40875,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(205727,40875,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(205728,40875,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(205729,40875,'blocks_7_split_5050_content_actions','1'),(205730,40875,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(205731,40875,'blocks_7_split_5050_content',''),(205732,40875,'_blocks_7_split_5050_content','field_61767afceb8ba'),(205733,40875,'blocks_8_acfe_flexible_toggle',''),(205734,40875,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(205735,40875,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(205736,40875,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(205737,40875,'blocks_8_options_theme','#ffffff'),(205738,40875,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(205739,40875,'blocks_8_options_state','0'),(205740,40875,'_blocks_8_options_state','field_6239fcb7508c5'),(205741,40875,'blocks_8_options',''),(205742,40875,'_blocks_8_options','field_6177e2991ac44'),(205743,40875,'blocks_8_content_title',''),(205744,40875,'_blocks_8_content_title','field_64d237e8bb1e2'),(205745,40875,'blocks_8_content_heading','FAQ\'s'),(205746,40875,'_blocks_8_content_heading','field_64d237e8bb1e3'),(205747,40875,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(205748,40875,'_blocks_8_content_text','field_64d237e8bb1e4'),(205749,40875,'blocks_8_content_actions',''),(205750,40875,'_blocks_8_content_actions','field_64d237e8bb1e5'),(205751,40875,'blocks_8_content_align','left'),(205752,40875,'_blocks_8_content_align','field_64d2443e6b6aa'),(205753,40875,'blocks_8_content',''),(205754,40875,'_blocks_8_content','field_64d237e8bb1e1'),(205755,40875,'blocks_8_accordion_content','faqs'),(205756,40875,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(205757,40875,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(205758,40875,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(205759,40875,'blocks_8_actions',''),(205760,40875,'_blocks_8_actions','field_61a746a817f7a'),(205761,40781,'_edit_lock','1729092638:13'),(205762,40781,'_edit_last','5'),(205763,40781,'hide_hero','0'),(205764,40781,'_hide_hero','field_66a2380fcda39'),(205765,40781,'hero_title','Running Biomechanics Workshop'),(205766,40781,'_hero_title','field_617571fe285e8'),(205767,40781,'hero_text','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(205768,40781,'_hero_text','field_6175723c285e9'),(205769,40781,'hero_actions','1'),(205770,40781,'_hero_actions','field_61757270285ea'),(205771,40781,'hero_style','default'),(205772,40781,'_hero_style','field_62051d9dc5324'),(205774,40781,'__thumbnail_id','field_617570855ddaf'),(205775,40781,'hero_image_pos_x','right'),(205776,40781,'_hero_image_pos_x','field_62ec3d05390bb'),(205777,40781,'hero_image_pos_y','top'),(205778,40781,'_hero_image_pos_y','field_62ec3d05390bc'),(205779,40781,'hero_image_pos',''),(205780,40781,'_hero_image_pos','field_62ec3d05390ba'),(205781,40781,'fft_hide_from_listings','0'),(205782,40781,'_fft_hide_from_listings','field_61f1320446ab2'),(205783,40781,'fft_page_format','default'),(205784,40781,'_fft_page_format','field_61ae213f1f218'),(205785,40781,'fft_hide_nav','0'),(205786,40781,'_fft_hide_nav','field_635bd5e43527c'),(205787,40781,'fft_hide_header_call_to_action','0'),(205788,40781,'_fft_hide_header_call_to_action','field_635bd6723527d'),(205789,40781,'fft_page_sitemap','0'),(205790,40781,'_fft_page_sitemap','field_61af9b34e8181'),(205791,40781,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:11:\"promo_panel\";i:4;s:10:\"accordions\";}'),(205792,40781,'_blocks','field_6176696113096'),(205793,40781,'course_label_text','Running Biomechanics Workshop'),(205794,40781,'_course_label_text','field_61e17babf71fa'),(205795,40781,'course_label',''),(205796,40781,'_course_label','field_61e12f92749a7'),(205797,40781,'course_description','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(205798,40781,'_course_description','field_617ac5788e5e1'),(205799,40781,'course_key_info','2'),(205800,40781,'_course_key_info','field_617ac6ad8e5e2'),(205801,40781,'course_included','Pre-course recorded classroom for pre & post-learning enhancement \r\n\r\n1-day attendance for 7 hours '),(205802,40781,'_course_included','field_617ac6f08e5e4'),(205803,40781,'_yoast_wpseo_primary_course-cat','403'),(205804,40781,'_yoast_wpseo_estimated-reading-time-minutes','1'),(205805,40876,'hide_hero','0'),(205806,40876,'_hide_hero','field_66a2380fcda39'),(205807,40876,'hero_title',''),(205808,40876,'_hero_title','field_617571fe285e8'),(205809,40876,'hero_text',''),(205810,40876,'_hero_text','field_6175723c285e9'),(205811,40876,'hero_actions',''),(205812,40876,'_hero_actions','field_61757270285ea'),(205813,40876,'hero_style','default'),(205814,40876,'_hero_style','field_62051d9dc5324'),(205815,40876,'_thumbnail_id',''),(205816,40876,'__thumbnail_id','field_617570855ddaf'),(205817,40876,'hero_image_pos_x','right'),(205818,40876,'_hero_image_pos_x','field_62ec3d05390bb'),(205819,40876,'hero_image_pos_y','top'),(205820,40876,'_hero_image_pos_y','field_62ec3d05390bc'),(205821,40876,'hero_image_pos',''),(205822,40876,'_hero_image_pos','field_62ec3d05390ba'),(205823,40876,'fft_hide_from_listings','0'),(205824,40876,'_fft_hide_from_listings','field_61f1320446ab2'),(205825,40876,'fft_page_format','default'),(205826,40876,'_fft_page_format','field_61ae213f1f218'),(205827,40876,'fft_hide_nav','0'),(205828,40876,'_fft_hide_nav','field_635bd5e43527c'),(205829,40876,'fft_hide_header_call_to_action','0'),(205830,40876,'_fft_hide_header_call_to_action','field_635bd6723527d'),(205831,40876,'fft_page_sitemap','0'),(205832,40876,'_fft_page_sitemap','field_61af9b34e8181'),(205833,40876,'blocks',''),(205834,40876,'_blocks','field_6176696113096'),(205835,40876,'course_label_text',''),(205836,40876,'_course_label_text','field_61e17babf71fa'),(205837,40876,'course_label',''),(205838,40876,'_course_label','field_61e12f92749a7'),(205839,40876,'course_description',''),(205840,40876,'_course_description','field_617ac5788e5e1'),(205841,40876,'course_key_info',''),(205842,40876,'_course_key_info','field_617ac6ad8e5e2'),(205843,40876,'course_included',''),(205844,40876,'_course_included','field_617ac6f08e5e4'),(205845,40877,'_wp_attached_file','2024/09/running-biomechanics-workshop-hero-image.jpg'),(205846,40877,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:52:\"2024/09/running-biomechanics-workshop-hero-image.jpg\";s:8:\"filesize\";i:339390;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"running-biomechanics-workshop-hero-image-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75094;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"running-biomechanics-workshop-hero-image-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117561;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"running-biomechanics-workshop-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21543;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"running-biomechanics-workshop-hero-image-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58234;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"running-biomechanics-workshop-hero-image-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175022;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:54:\"running-biomechanics-workshop-hero-image-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:278918;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:52:\"running-biomechanics-workshop-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29077;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:52:\"running-biomechanics-workshop-hero-image-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104414;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:54:\"running-biomechanics-workshop-hero-image-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165003;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:52:\"running-biomechanics-workshop-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21390;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:52:\"running-biomechanics-workshop-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74838;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:53:\"running-biomechanics-workshop-hero-image-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117216;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:52:\"running-biomechanics-workshop-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21774;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:52:\"running-biomechanics-workshop-hero-image-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77864;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:53:\"running-biomechanics-workshop-hero-image-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123065;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:52:\"running-biomechanics-workshop-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23982;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:52:\"running-biomechanics-workshop-hero-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83792;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:53:\"running-biomechanics-workshop-hero-image-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131775;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:52:\"running-biomechanics-workshop-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19011;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:52:\"running-biomechanics-workshop-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66141;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:53:\"running-biomechanics-workshop-hero-image-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104110;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(205847,40276,'_edit_lock','1730198879:13'),(205848,40276,'_edit_last','13'),(205849,40276,'_wp_old_date','2024-09-10'),(205850,40276,'hide_hero','0'),(205851,40276,'_hide_hero','field_66a2380fcda39'),(205852,40276,'hero_title','Intrinsic Biomechanics Association (IBA)'),(205853,40276,'_hero_title','field_617571fe285e8'),(205854,40276,'hero_text','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities. '),(205855,40276,'_hero_text','field_6175723c285e9'),(205856,40276,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(205857,40276,'_hero_actions_0_button','field_61757281285eb'),(205858,40276,'hero_actions','1'),(205859,40276,'_hero_actions','field_61757270285ea'),(205860,40276,'hero_style','default'),(205861,40276,'_hero_style','field_62051d9dc5324'),(205862,40276,'_thumbnail_id','40503'),(205863,40276,'__thumbnail_id','field_617570855ddaf'),(205864,40276,'hero_image_pos_x','right'),(205865,40276,'_hero_image_pos_x','field_62ec3d05390bb'),(205866,40276,'hero_image_pos_y','top'),(205867,40276,'_hero_image_pos_y','field_62ec3d05390bc'),(205868,40276,'hero_image_pos',''),(205869,40276,'_hero_image_pos','field_62ec3d05390ba'),(205870,40276,'fft_hide_from_listings','0'),(205871,40276,'_fft_hide_from_listings','field_61f1320446ab2'),(205872,40276,'fft_page_format','default'),(205873,40276,'_fft_page_format','field_61ae213f1f218'),(205874,40276,'fft_hide_nav','0'),(205875,40276,'_fft_hide_nav','field_635bd5e43527c'),(205876,40276,'fft_hide_header_call_to_action','0'),(205877,40276,'_fft_hide_header_call_to_action','field_635bd6723527d'),(205878,40276,'fft_page_sitemap','0'),(205879,40276,'_fft_page_sitemap','field_61af9b34e8181'),(205880,40276,'blocks_0_acfe_flexible_toggle',''),(205881,40276,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(205882,40276,'blocks_0_acfe_flexible_layout_title','Text Block'),(205883,40276,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(205884,40276,'blocks_0_options_theme','#ffffff'),(205885,40276,'_blocks_0_options_theme','field_6176830e2ad17'),(205886,40276,'blocks_0_options',''),(205887,40276,'_blocks_0_options','field_6176830e2ad16'),(205888,40276,'blocks_0_text_block_heading','Discover the IBA'),(205889,40276,'_blocks_0_text_block_heading','field_617669d413097'),(205890,40276,'blocks_0_text_block_content','Discover the Intrinsic Biomechanics Association (IBA), your gateway to a supportive community and invaluable resources for Biomechanics Trainers™ &amp; Coaches™. Managed by Biomechanics Education Limited, the IBA offers networking opportunities, standardised practices, and ongoing education in all things that relate to being a Biomechanics Coach. Membership benefits include exclusive workshops, discounts on courses and products, mentorship, and access to a vibrant professional network. Join today to enhance your practice and stay at the forefront of biomechanical advancements.'),(205891,40276,'_blocks_0_text_block_content','field_617669ec13098'),(205892,40276,'blocks_1_acfe_flexible_toggle',''),(205893,40276,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(205894,40276,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(205895,40276,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(205896,40276,'blocks_1_options_theme','#b61234'),(205897,40276,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(205898,40276,'blocks_1_options_reverse','0'),(205899,40276,'_blocks_1_options_reverse','field_61768049bb8ac'),(205900,40276,'blocks_1_options',''),(205901,40276,'_blocks_1_options','field_617682517c334'),(205902,40276,'blocks_1_split_5050_image','40819'),(205903,40276,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(205904,40276,'blocks_1_split_5050_video',''),(205905,40276,'_blocks_1_split_5050_video','field_6239f3160848a'),(205906,40276,'blocks_1_split_5050_content_title',''),(205907,40276,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(205908,40276,'blocks_1_split_5050_content_heading','Benefits'),(205909,40276,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(205910,40276,'blocks_1_split_5050_content_text','<ul>\r\n 	<li><strong>FREE 6 Online IBA Discovery Days per annum</strong></li>\r\n 	<li><strong>10% off all face to face workshops</strong></li>\r\n 	<li>FREE 12-week online business accountability course</li>\r\n 	<li>FREE Branded T Shirt / Vest top – every year</li>\r\n 	<li>Eligibility for the IBA Register of Biomechanics Coaches</li>\r\n 	<li>Eligibility for the FIND A COACH map locator</li>\r\n 	<li>Mentor support from the Master Trainer team</li>\r\n 	<li>Support from professionals across the UK &amp; overseas</li>\r\n 	<li>Discounts on partner courses, products, and equipment</li>\r\n 	<li>Discounts on CIMSPA Membership</li>\r\n 	<li>Discounts &amp; BENEFITS of BGi Insurance</li>\r\n 	<li>Access to ProZone</li>\r\n</ul>\r\n<h5>Join today to enhance your practice and stay at the forefront of intrinsic biomechanics.</h5>'),(205911,40276,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(205912,40276,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(205913,40276,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(205914,40276,'blocks_1_split_5050_content_actions','1'),(205915,40276,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(205916,40276,'blocks_1_split_5050_content',''),(205917,40276,'_blocks_1_split_5050_content','field_61767afceb8ba'),(205918,40276,'blocks_2_acfe_flexible_toggle',''),(205919,40276,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(205920,40276,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(205921,40276,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(205922,40276,'blocks_2_options_theme','#ffffff'),(205923,40276,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(205924,40276,'blocks_2_options_reverse','1'),(205925,40276,'_blocks_2_options_reverse','field_61768049bb8ac'),(205926,40276,'blocks_2_options',''),(205927,40276,'_blocks_2_options','field_617682517c334'),(205928,40276,'blocks_2_split_5050_image','40505'),(205929,40276,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(205930,40276,'blocks_2_split_5050_video',''),(205931,40276,'_blocks_2_split_5050_video','field_6239f3160848a'),(205932,40276,'blocks_2_split_5050_content_title',''),(205933,40276,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(205934,40276,'blocks_2_split_5050_content_heading','Reserve Your Place'),(205935,40276,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(205936,40276,'blocks_2_split_5050_content_text','Join our monthly IBA Member workshops, conducted online for convenience and accessibility. These engaging sessions offer Biomechanics Trainers™ &amp; Coaches™ valuable insights, networking opportunities, and practical knowledge in Intrinsic biomechanics. Secure your virtual seat today to enhance your expertise from anywhere in the world.'),(205937,40276,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(205938,40276,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(205939,40276,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(205940,40276,'blocks_2_split_5050_content_actions','1'),(205941,40276,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(205942,40276,'blocks_2_split_5050_content',''),(205943,40276,'_blocks_2_split_5050_content','field_61767afceb8ba'),(205944,40276,'blocks_3_acfe_flexible_toggle',''),(205945,40276,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(205946,40276,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(205947,40276,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(205948,40276,'blocks_3_testimonial_slider_content_title',''),(205949,40276,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(205950,40276,'blocks_3_testimonial_slider_content_heading','Testimonials'),(205951,40276,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(205952,40276,'blocks_3_testimonial_slider_content_text','Discover testimonials from people currently subscribed as an IBA member'),(205953,40276,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(205954,40276,'blocks_3_testimonial_slider_content_actions',''),(205955,40276,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(205956,40276,'blocks_3_testimonial_slider_content',''),(205957,40276,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(205958,40276,'blocks_3_testimonial_slider_items',''),(205959,40276,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(205960,40276,'blocks_3_testimonial_slider_ambassador_bool','0'),(205961,40276,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(205962,40276,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:18:\"testimonial_slider\";}'),(205963,40276,'_blocks','field_6176696113096'),(205964,40276,'course_label_text','IBA Membership'),(205965,40276,'_course_label_text','field_61e17babf71fa'),(205966,40276,'course_label_label_theme','#0d1f73'),(205967,40276,'_course_label_label_theme','field_61e17bb8f71fb'),(205968,40276,'course_label',''),(205969,40276,'_course_label','field_61e12f92749a7'),(205970,40276,'course_description','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities.'),(205971,40276,'_course_description','field_617ac5788e5e1'),(205972,40276,'course_key_info','1'),(205973,40276,'_course_key_info','field_617ac6ad8e5e2'),(205974,40276,'course_included','FREE 6 Online IBA Discovery Days per annum\r\n10% off all face to face workshops\r\nFREE 12-week online business accountability course\r\nFREE Branded T Shirt / Vest top – every year\r\nEligibility for the IBA Register of Biomechanics Coaches\r\nEligibility for the FIND A COACH map locator\r\nMentor support from the Master Trainer team\r\nSupport from professionals across the UK & overseas\r\nDiscounts on partner courses, products, and equipment\r\nDiscounts on CIMSPA Membership\r\nDiscounts & BENEFITS of BGi Insurance\r\nAccess to ProZone'),(205975,40276,'_course_included','field_617ac6f08e5e4'),(205976,40276,'_yoast_wpseo_primary_course-cat','406'),(205977,40276,'_yoast_wpseo_focuskw','IBA Membership'),(205978,40276,'_yoast_wpseo_title','IBA Membership | Biomechanics Education'),(205979,40276,'_yoast_wpseo_metadesc','Join the Intrinsic Biomechanics Association to connect with professionals and access exclusive resources.'),(205980,40276,'_yoast_wpseo_linkdex','40'),(205981,40276,'_yoast_wpseo_estimated-reading-time-minutes','1'),(205982,40878,'hide_hero','0'),(205983,40878,'_hide_hero','field_66a2380fcda39'),(205984,40878,'hero_title','Intrinsic Biomechanics Association (IBA)'),(205985,40878,'_hero_title','field_617571fe285e8'),(205986,40878,'hero_text','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities. '),(205987,40878,'_hero_text','field_6175723c285e9'),(205988,40878,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(205989,40878,'_hero_actions_0_button','field_61757281285eb'),(205990,40878,'hero_actions','1'),(205991,40878,'_hero_actions','field_61757270285ea'),(205992,40878,'hero_style','default'),(205993,40878,'_hero_style','field_62051d9dc5324'),(205994,40878,'_thumbnail_id','40503'),(205995,40878,'__thumbnail_id','field_617570855ddaf'),(205996,40878,'hero_image_pos_x','right'),(205997,40878,'_hero_image_pos_x','field_62ec3d05390bb'),(205998,40878,'hero_image_pos_y','top'),(205999,40878,'_hero_image_pos_y','field_62ec3d05390bc'),(206000,40878,'hero_image_pos',''),(206001,40878,'_hero_image_pos','field_62ec3d05390ba'),(206002,40878,'fft_hide_from_listings','0'),(206003,40878,'_fft_hide_from_listings','field_61f1320446ab2'),(206004,40878,'fft_page_format','default'),(206005,40878,'_fft_page_format','field_61ae213f1f218'),(206006,40878,'fft_hide_nav','0'),(206007,40878,'_fft_hide_nav','field_635bd5e43527c'),(206008,40878,'fft_hide_header_call_to_action','0'),(206009,40878,'_fft_hide_header_call_to_action','field_635bd6723527d'),(206010,40878,'fft_page_sitemap','0'),(206011,40878,'_fft_page_sitemap','field_61af9b34e8181'),(206012,40878,'blocks_0_acfe_flexible_toggle',''),(206013,40878,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(206014,40878,'blocks_0_acfe_flexible_layout_title','Text Block'),(206015,40878,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(206016,40878,'blocks_0_options_theme','#ffffff'),(206017,40878,'_blocks_0_options_theme','field_6176830e2ad17'),(206018,40878,'blocks_0_options',''),(206019,40878,'_blocks_0_options','field_6176830e2ad16'),(206020,40878,'blocks_0_text_block_heading','Discover the IBA'),(206021,40878,'_blocks_0_text_block_heading','field_617669d413097'),(206022,40878,'blocks_0_text_block_content','Discover the Intrinsic Biomechanics Association (IBA), your gateway to a supportive community and invaluable resources for Biomechanics Trainers™ &amp; Coaches™. Managed by Biomechanics Education Limited, the IBA offers networking opportunities, standardised practices, and ongoing education in all things that relate to being a Biomechanics Coach. Membership benefits include exclusive workshops, discounts on courses and products, mentorship, and access to a vibrant professional network. Join today to enhance your practice and stay at the forefront of biomechanical advancements.'),(206023,40878,'_blocks_0_text_block_content','field_617669ec13098'),(206024,40878,'blocks_1_acfe_flexible_toggle',''),(206025,40878,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(206026,40878,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(206027,40878,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(206028,40878,'blocks_1_options_theme','#b61234'),(206029,40878,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(206030,40878,'blocks_1_options_reverse','0'),(206031,40878,'_blocks_1_options_reverse','field_61768049bb8ac'),(206032,40878,'blocks_1_options',''),(206033,40878,'_blocks_1_options','field_617682517c334'),(206034,40878,'blocks_1_split_5050_image','40819'),(206035,40878,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(206036,40878,'blocks_1_split_5050_video',''),(206037,40878,'_blocks_1_split_5050_video','field_6239f3160848a'),(206038,40878,'blocks_1_split_5050_content_title',''),(206039,40878,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(206040,40878,'blocks_1_split_5050_content_heading','Benefits'),(206041,40878,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(206042,40878,'blocks_1_split_5050_content_text','<ul>\r\n 	<li><strong>FREE 6 Online IBA Discovery Days per annum</strong></li>\r\n 	<li><strong>10% off all face to face workshops</strong></li>\r\n 	<li>FREE 12-week online business accountability course</li>\r\n 	<li>FREE Branded T Shirt / Vest top – every year</li>\r\n 	<li>Eligibility for the IBA Register of Biomechanics Coaches</li>\r\n 	<li>Eligibility for the FIND A COACH map locator</li>\r\n 	<li>Mentor support from the Master Trainer team</li>\r\n 	<li>Support from professionals across the UK &amp; overseas</li>\r\n 	<li>Discounts on partner courses, products, and equipment</li>\r\n 	<li>Discounts on CIMSPA Membership</li>\r\n 	<li>Discounts &amp; BENEFITS of BGi Insurance</li>\r\n 	<li>Access to ProZone</li>\r\n</ul>\r\n&nbsp;\r\n<h5>Join today to enhance your practice and stay at the forefront of intrinsic biomechanics.</h5>'),(206043,40878,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(206044,40878,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206045,40878,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(206046,40878,'blocks_1_split_5050_content_actions','1'),(206047,40878,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(206048,40878,'blocks_1_split_5050_content',''),(206049,40878,'_blocks_1_split_5050_content','field_61767afceb8ba'),(206050,40878,'blocks_2_acfe_flexible_toggle',''),(206051,40878,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(206052,40878,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(206053,40878,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(206054,40878,'blocks_2_options_theme','#ffffff'),(206055,40878,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(206056,40878,'blocks_2_options_reverse','1'),(206057,40878,'_blocks_2_options_reverse','field_61768049bb8ac'),(206058,40878,'blocks_2_options',''),(206059,40878,'_blocks_2_options','field_617682517c334'),(206060,40878,'blocks_2_split_5050_image','40505'),(206061,40878,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(206062,40878,'blocks_2_split_5050_video',''),(206063,40878,'_blocks_2_split_5050_video','field_6239f3160848a'),(206064,40878,'blocks_2_split_5050_content_title',''),(206065,40878,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(206066,40878,'blocks_2_split_5050_content_heading','Reserve Your Place'),(206067,40878,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(206068,40878,'blocks_2_split_5050_content_text','Join our monthly IBA Member workshops, conducted online for convenience and accessibility. These engaging sessions offer Biomechanics Trainers™ &amp; Coaches™ valuable insights, networking opportunities, and practical knowledge in biomechanics. Secure your virtual seat today to enhance your expertise from anywhere in the world.'),(206069,40878,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(206070,40878,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206071,40878,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(206072,40878,'blocks_2_split_5050_content_actions','1'),(206073,40878,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(206074,40878,'blocks_2_split_5050_content',''),(206075,40878,'_blocks_2_split_5050_content','field_61767afceb8ba'),(206076,40878,'blocks_3_acfe_flexible_toggle',''),(206077,40878,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(206078,40878,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(206079,40878,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(206080,40878,'blocks_3_testimonial_slider_content_title',''),(206081,40878,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(206082,40878,'blocks_3_testimonial_slider_content_heading','Testimonials'),(206083,40878,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(206084,40878,'blocks_3_testimonial_slider_content_text','Discover testimonials from people currently subscribed as an IBA member'),(206085,40878,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(206086,40878,'blocks_3_testimonial_slider_content_actions',''),(206087,40878,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(206088,40878,'blocks_3_testimonial_slider_content',''),(206089,40878,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(206090,40878,'blocks_3_testimonial_slider_items',''),(206091,40878,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(206092,40878,'blocks_3_testimonial_slider_ambassador_bool','0'),(206093,40878,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(206094,40878,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:18:\"testimonial_slider\";}'),(206095,40878,'_blocks','field_6176696113096'),(206096,40878,'course_label_text','IBA Membership'),(206097,40878,'_course_label_text','field_61e17babf71fa'),(206098,40878,'course_label_label_theme','#0d1f73'),(206099,40878,'_course_label_label_theme','field_61e17bb8f71fb'),(206100,40878,'course_label',''),(206101,40878,'_course_label','field_61e12f92749a7'),(206102,40878,'course_description',''),(206103,40878,'_course_description','field_617ac5788e5e1'),(206104,40878,'course_key_info',''),(206105,40878,'_course_key_info','field_617ac6ad8e5e2'),(206106,40878,'course_included',''),(206107,40878,'_course_included','field_617ac6f08e5e4'),(206108,40276,'course_key_info_0_text','Join our monthly IBA Member workshops, conducted online for convenience and accessibility. These engaging sessions offer Biomechanics Trainers™ & Coaches™ valuable insights, networking opportunities, and practical knowledge in biomechanics. Secure your virtual seat today to enhance your expertise from anywhere in the world.'),(206109,40276,'_course_key_info_0_text','field_617ac6c38e5e3'),(206110,40879,'hide_hero','0'),(206111,40879,'_hide_hero','field_66a2380fcda39'),(206112,40879,'hero_title','Intrinsic Biomechanics Association (IBA)'),(206113,40879,'_hero_title','field_617571fe285e8'),(206114,40879,'hero_text','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities. '),(206115,40879,'_hero_text','field_6175723c285e9'),(206116,40879,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206117,40879,'_hero_actions_0_button','field_61757281285eb'),(206118,40879,'hero_actions','1'),(206119,40879,'_hero_actions','field_61757270285ea'),(206120,40879,'hero_style','default'),(206121,40879,'_hero_style','field_62051d9dc5324'),(206122,40879,'_thumbnail_id','40503'),(206123,40879,'__thumbnail_id','field_617570855ddaf'),(206124,40879,'hero_image_pos_x','right'),(206125,40879,'_hero_image_pos_x','field_62ec3d05390bb'),(206126,40879,'hero_image_pos_y','top'),(206127,40879,'_hero_image_pos_y','field_62ec3d05390bc'),(206128,40879,'hero_image_pos',''),(206129,40879,'_hero_image_pos','field_62ec3d05390ba'),(206130,40879,'fft_hide_from_listings','0'),(206131,40879,'_fft_hide_from_listings','field_61f1320446ab2'),(206132,40879,'fft_page_format','default'),(206133,40879,'_fft_page_format','field_61ae213f1f218'),(206134,40879,'fft_hide_nav','0'),(206135,40879,'_fft_hide_nav','field_635bd5e43527c'),(206136,40879,'fft_hide_header_call_to_action','0'),(206137,40879,'_fft_hide_header_call_to_action','field_635bd6723527d'),(206138,40879,'fft_page_sitemap','0'),(206139,40879,'_fft_page_sitemap','field_61af9b34e8181'),(206140,40879,'blocks_0_acfe_flexible_toggle',''),(206141,40879,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(206142,40879,'blocks_0_acfe_flexible_layout_title','Text Block'),(206143,40879,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(206144,40879,'blocks_0_options_theme','#ffffff'),(206145,40879,'_blocks_0_options_theme','field_6176830e2ad17'),(206146,40879,'blocks_0_options',''),(206147,40879,'_blocks_0_options','field_6176830e2ad16'),(206148,40879,'blocks_0_text_block_heading','Discover the IBA'),(206149,40879,'_blocks_0_text_block_heading','field_617669d413097'),(206150,40879,'blocks_0_text_block_content','Discover the Intrinsic Biomechanics Association (IBA), your gateway to a supportive community and invaluable resources for Biomechanics Trainers™ &amp; Coaches™. Managed by Biomechanics Education Limited, the IBA offers networking opportunities, standardised practices, and ongoing education in all things that relate to being a Biomechanics Coach. Membership benefits include exclusive workshops, discounts on courses and products, mentorship, and access to a vibrant professional network. Join today to enhance your practice and stay at the forefront of biomechanical advancements.'),(206151,40879,'_blocks_0_text_block_content','field_617669ec13098'),(206152,40879,'blocks_1_acfe_flexible_toggle',''),(206153,40879,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(206154,40879,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(206155,40879,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(206156,40879,'blocks_1_options_theme','#b61234'),(206157,40879,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(206158,40879,'blocks_1_options_reverse','0'),(206159,40879,'_blocks_1_options_reverse','field_61768049bb8ac'),(206160,40879,'blocks_1_options',''),(206161,40879,'_blocks_1_options','field_617682517c334'),(206162,40879,'blocks_1_split_5050_image','40819'),(206163,40879,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(206164,40879,'blocks_1_split_5050_video',''),(206165,40879,'_blocks_1_split_5050_video','field_6239f3160848a'),(206166,40879,'blocks_1_split_5050_content_title',''),(206167,40879,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(206168,40879,'blocks_1_split_5050_content_heading','Benefits'),(206169,40879,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(206170,40879,'blocks_1_split_5050_content_text','<ul>\r\n 	<li><strong>FREE 6 Online IBA Discovery Days per annum</strong></li>\r\n 	<li><strong>10% off all face to face workshops</strong></li>\r\n 	<li>FREE 12-week online business accountability course</li>\r\n 	<li>FREE Branded T Shirt / Vest top – every year</li>\r\n 	<li>Eligibility for the IBA Register of Biomechanics Coaches</li>\r\n 	<li>Eligibility for the FIND A COACH map locator</li>\r\n 	<li>Mentor support from the Master Trainer team</li>\r\n 	<li>Support from professionals across the UK &amp; overseas</li>\r\n 	<li>Discounts on partner courses, products, and equipment</li>\r\n 	<li>Discounts on CIMSPA Membership</li>\r\n 	<li>Discounts &amp; BENEFITS of BGi Insurance</li>\r\n 	<li>Access to ProZone</li>\r\n</ul>\r\n&nbsp;\r\n<h5>Join today to enhance your practice and stay at the forefront of intrinsic biomechanics.</h5>'),(206171,40879,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(206172,40879,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206173,40879,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(206174,40879,'blocks_1_split_5050_content_actions','1'),(206175,40879,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(206176,40879,'blocks_1_split_5050_content',''),(206177,40879,'_blocks_1_split_5050_content','field_61767afceb8ba'),(206178,40879,'blocks_2_acfe_flexible_toggle',''),(206179,40879,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(206180,40879,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(206181,40879,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(206182,40879,'blocks_2_options_theme','#ffffff'),(206183,40879,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(206184,40879,'blocks_2_options_reverse','1'),(206185,40879,'_blocks_2_options_reverse','field_61768049bb8ac'),(206186,40879,'blocks_2_options',''),(206187,40879,'_blocks_2_options','field_617682517c334'),(206188,40879,'blocks_2_split_5050_image','40505'),(206189,40879,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(206190,40879,'blocks_2_split_5050_video',''),(206191,40879,'_blocks_2_split_5050_video','field_6239f3160848a'),(206192,40879,'blocks_2_split_5050_content_title',''),(206193,40879,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(206194,40879,'blocks_2_split_5050_content_heading','Reserve Your Place'),(206195,40879,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(206196,40879,'blocks_2_split_5050_content_text','Join our monthly IBA Member workshops, conducted online for convenience and accessibility. These engaging sessions offer Biomechanics Trainers™ &amp; Coaches™ valuable insights, networking opportunities, and practical knowledge in biomechanics. Secure your virtual seat today to enhance your expertise from anywhere in the world.'),(206197,40879,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(206198,40879,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206199,40879,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(206200,40879,'blocks_2_split_5050_content_actions','1'),(206201,40879,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(206202,40879,'blocks_2_split_5050_content',''),(206203,40879,'_blocks_2_split_5050_content','field_61767afceb8ba'),(206204,40879,'blocks_3_acfe_flexible_toggle',''),(206205,40879,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(206206,40879,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(206207,40879,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(206208,40879,'blocks_3_testimonial_slider_content_title',''),(206209,40879,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(206210,40879,'blocks_3_testimonial_slider_content_heading','Testimonials'),(206211,40879,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(206212,40879,'blocks_3_testimonial_slider_content_text','Discover testimonials from people currently subscribed as an IBA member'),(206213,40879,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(206214,40879,'blocks_3_testimonial_slider_content_actions',''),(206215,40879,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(206216,40879,'blocks_3_testimonial_slider_content',''),(206217,40879,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(206218,40879,'blocks_3_testimonial_slider_items',''),(206219,40879,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(206220,40879,'blocks_3_testimonial_slider_ambassador_bool','0'),(206221,40879,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(206222,40879,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:18:\"testimonial_slider\";}'),(206223,40879,'_blocks','field_6176696113096'),(206224,40879,'course_label_text','IBA Membership'),(206225,40879,'_course_label_text','field_61e17babf71fa'),(206226,40879,'course_label_label_theme','#0d1f73'),(206227,40879,'_course_label_label_theme','field_61e17bb8f71fb'),(206228,40879,'course_label',''),(206229,40879,'_course_label','field_61e12f92749a7'),(206230,40879,'course_description','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities.'),(206231,40879,'_course_description','field_617ac5788e5e1'),(206232,40879,'course_key_info','1'),(206233,40879,'_course_key_info','field_617ac6ad8e5e2'),(206234,40879,'course_included','FREE 6 Online IBA Discovery Days per annum\r\n10% off all face to face workshops\r\nFREE 12-week online business accountability course\r\nFREE Branded T Shirt / Vest top – every year\r\nEligibility for the IBA Register of Biomechanics Coaches\r\nEligibility for the FIND A COACH map locator\r\nMentor support from the Master Trainer team\r\nSupport from professionals across the UK & overseas\r\nDiscounts on partner courses, products, and equipment\r\nDiscounts on CIMSPA Membership\r\nDiscounts & BENEFITS of BGi Insurance\r\nAccess to ProZone'),(206235,40879,'_course_included','field_617ac6f08e5e4'),(206236,40879,'course_key_info_0_text','Join our monthly IBA Member workshops, conducted online for convenience and accessibility. These engaging sessions offer Biomechanics Trainers™ & Coaches™ valuable insights, networking opportunities, and practical knowledge in biomechanics. Secure your virtual seat today to enhance your expertise from anywhere in the world.'),(206237,40879,'_course_key_info_0_text','field_617ac6c38e5e3'),(206260,40781,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206261,40781,'_hero_actions_0_button','field_61757281285eb'),(206262,40781,'_thumbnail_id','40877'),(206263,40781,'blocks_0_acfe_flexible_toggle',''),(206264,40781,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(206265,40781,'blocks_0_acfe_flexible_layout_title','Template'),(206266,40781,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(206267,40781,'blocks_0_template','39087'),(206268,40781,'_blocks_0_template','field_617bdd570fe01'),(206269,40781,'blocks_1_acfe_flexible_toggle',''),(206270,40781,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(206271,40781,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(206272,40781,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(206273,40781,'blocks_1_options_theme','#ffffff'),(206274,40781,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(206275,40781,'blocks_1_options_reverse','0'),(206276,40781,'_blocks_1_options_reverse','field_61768049bb8ac'),(206277,40781,'blocks_1_options',''),(206278,40781,'_blocks_1_options','field_617682517c334'),(206279,40781,'blocks_1_split_5050_image','40612'),(206280,40781,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(206281,40781,'blocks_1_split_5050_video',''),(206282,40781,'_blocks_1_split_5050_video','field_6239f3160848a'),(206283,40781,'blocks_1_split_5050_content_title',''),(206284,40781,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(206285,40781,'blocks_1_split_5050_content_heading','Course Overview'),(206286,40781,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(206287,40781,'blocks_1_split_5050_content_text','Running, a fundamental aspect of many fitness programs, demands a nuanced understanding of biomechanics. With an ever-growing array of running styles, it can be challenging to discern the most suitable approach for you or your clients.\r\n\r\nOur in-person workshop is built on the principle that there\'s no one-size-fits-all running style. Delve into the evidence supporting various techniques and gain practical methods to determine the most effective running style for your clients. We also provide insights into preparation exercises that can aid your clients in adapting to their chosen method.'),(206288,40781,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(206289,40781,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206290,40781,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(206291,40781,'blocks_1_split_5050_content_actions','1'),(206292,40781,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(206293,40781,'blocks_1_split_5050_content',''),(206294,40781,'_blocks_1_split_5050_content','field_61767afceb8ba'),(206295,40881,'hide_hero','0'),(206296,40881,'_hide_hero','field_66a2380fcda39'),(206297,40881,'hero_title','Running Biomechanics Workshop'),(206298,40881,'_hero_title','field_617571fe285e8'),(206299,40881,'hero_text','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(206300,40881,'_hero_text','field_6175723c285e9'),(206301,40881,'hero_actions','1'),(206302,40881,'_hero_actions','field_61757270285ea'),(206303,40881,'hero_style','default'),(206304,40881,'_hero_style','field_62051d9dc5324'),(206305,40881,'hero_image_pos_x','right'),(206306,40881,'_hero_image_pos_x','field_62ec3d05390bb'),(206307,40881,'hero_image_pos_y','top'),(206308,40881,'_hero_image_pos_y','field_62ec3d05390bc'),(206309,40881,'hero_image_pos',''),(206310,40881,'_hero_image_pos','field_62ec3d05390ba'),(206311,40881,'fft_hide_from_listings','0'),(206312,40881,'_fft_hide_from_listings','field_61f1320446ab2'),(206313,40881,'fft_page_format','default'),(206314,40881,'_fft_page_format','field_61ae213f1f218'),(206315,40881,'fft_hide_nav','0'),(206316,40881,'_fft_hide_nav','field_635bd5e43527c'),(206317,40881,'fft_hide_header_call_to_action','0'),(206318,40881,'_fft_hide_header_call_to_action','field_635bd6723527d'),(206319,40881,'fft_page_sitemap','0'),(206320,40881,'_fft_page_sitemap','field_61af9b34e8181'),(206321,40881,'blocks','a:2:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";}'),(206322,40881,'_blocks','field_6176696113096'),(206323,40881,'course_label_text',''),(206324,40881,'_course_label_text','field_61e17babf71fa'),(206325,40881,'course_label',''),(206326,40881,'_course_label','field_61e12f92749a7'),(206327,40881,'course_description',''),(206328,40881,'_course_description','field_617ac5788e5e1'),(206329,40881,'course_key_info',''),(206330,40881,'_course_key_info','field_617ac6ad8e5e2'),(206331,40881,'course_included',''),(206332,40881,'_course_included','field_617ac6f08e5e4'),(206333,40881,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206334,40881,'_hero_actions_0_button','field_61757281285eb'),(206335,40881,'_thumbnail_id','40877'),(206336,40881,'__thumbnail_id','field_617570855ddaf'),(206337,40881,'blocks_0_acfe_flexible_toggle',''),(206338,40881,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(206339,40881,'blocks_0_acfe_flexible_layout_title','Template'),(206340,40881,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(206341,40881,'blocks_0_template','39087'),(206342,40881,'_blocks_0_template','field_617bdd570fe01'),(206343,40881,'blocks_1_acfe_flexible_toggle',''),(206344,40881,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(206345,40881,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(206346,40881,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(206347,40881,'blocks_1_options_theme','#ffffff'),(206348,40881,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(206349,40881,'blocks_1_options_reverse','0'),(206350,40881,'_blocks_1_options_reverse','field_61768049bb8ac'),(206351,40881,'blocks_1_options',''),(206352,40881,'_blocks_1_options','field_617682517c334'),(206353,40881,'blocks_1_split_5050_image','40612'),(206354,40881,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(206355,40881,'blocks_1_split_5050_video',''),(206356,40881,'_blocks_1_split_5050_video','field_6239f3160848a'),(206357,40881,'blocks_1_split_5050_content_title',''),(206358,40881,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(206359,40881,'blocks_1_split_5050_content_heading','Course Overview'),(206360,40881,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(206361,40881,'blocks_1_split_5050_content_text','Running, a fundamental aspect of many fitness programs, demands a nuanced understanding of biomechanics. With an ever-growing array of running styles, it can be challenging to discern the most suitable approach for you or your clients.\r\n\r\nOur in-person workshop is built on the principle that there\'s no one-size-fits-all running style. Delve into the evidence supporting various techniques and gain practical methods to determine the most effective running style for your clients. We also provide insights into preparation exercises that can aid your clients in adapting to their chosen method.'),(206362,40881,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(206363,40881,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206364,40881,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(206365,40881,'blocks_1_split_5050_content_actions','1'),(206366,40881,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(206367,40881,'blocks_1_split_5050_content',''),(206368,40881,'_blocks_1_split_5050_content','field_61767afceb8ba'),(206443,40781,'blocks_2_acfe_flexible_toggle',''),(206444,40781,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(206445,40781,'blocks_2_acfe_flexible_layout_title','Timeline'),(206446,40781,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(206447,40781,'blocks_2_options_theme','#ffffff'),(206448,40781,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(206449,40781,'blocks_2_options',''),(206450,40781,'_blocks_2_options','field_6177de53d1195'),(206451,40781,'blocks_2_timeline_content_title',''),(206452,40781,'_blocks_2_timeline_content_title','field_6177de53d1198'),(206453,40781,'blocks_2_timeline_content_heading','What You\'ll Learn in this One-Day Workshop'),(206454,40781,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(206455,40781,'blocks_2_timeline_content_text','<ul>\r\n 	<li>The correct terminology to engage with local running clubs</li>\r\n 	<li>Understanding the mechanics and sequencing of running gaits</li>\r\n 	<li>Extrinsically examining different styles or idiosyncrasies and intrinsically evaluating restrictions and dysfunctions</li>\r\n 	<li>Discussing screenings and key exercise interventions to prepare runners for their chosen style</li>\r\n</ul>'),(206456,40781,'_blocks_2_timeline_content_text','field_6177de53d119a'),(206457,40781,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206458,40781,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(206459,40781,'blocks_2_timeline_content_actions','1'),(206460,40781,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(206461,40781,'blocks_2_timeline_content',''),(206462,40781,'_blocks_2_timeline_content','field_6177de53d1197'),(206463,40781,'blocks_2_timeline_items_0_title','Workshop Duration'),(206464,40781,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(206465,40781,'blocks_2_timeline_items_0_text','1. Pre-course recorded classroom for pre & post-learning enhancement \r\n\r\n2. 1-day attendance for 7 hours '),(206466,40781,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(206467,40781,'blocks_2_timeline_items_1_title','Who Should Attend? '),(206468,40781,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(206469,40781,'blocks_2_timeline_items_1_text','1. Running coaches and practitioners aiming to elevate their skills \r\n\r\n2. Any professionals seeking a comprehensive understanding of running biomechanics '),(206470,40781,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(206471,40781,'blocks_2_timeline_items_2_title','Prerequisites'),(206472,40781,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(206473,40781,'blocks_2_timeline_items_2_text','1. Suitable for running coaches, athletics coaches, Level 3 PT, and Level 3 manual therapists '),(206474,40781,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(206475,40781,'blocks_2_timeline_items_3_title','Assessment'),(206476,40781,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(206477,40781,'blocks_2_timeline_items_3_text','1. Continuous assessment during the attendance day '),(206478,40781,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(206479,40781,'blocks_2_timeline_items','5'),(206480,40781,'_blocks_2_timeline_items','field_6177de53d119d'),(206481,40883,'hide_hero','0'),(206482,40883,'_hide_hero','field_66a2380fcda39'),(206483,40883,'hero_title','Running Biomechanics Workshop'),(206484,40883,'_hero_title','field_617571fe285e8'),(206485,40883,'hero_text','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(206486,40883,'_hero_text','field_6175723c285e9'),(206487,40883,'hero_actions','1'),(206488,40883,'_hero_actions','field_61757270285ea'),(206489,40883,'hero_style','default'),(206490,40883,'_hero_style','field_62051d9dc5324'),(206491,40883,'hero_image_pos_x','right'),(206492,40883,'_hero_image_pos_x','field_62ec3d05390bb'),(206493,40883,'hero_image_pos_y','top'),(206494,40883,'_hero_image_pos_y','field_62ec3d05390bc'),(206495,40883,'hero_image_pos',''),(206496,40883,'_hero_image_pos','field_62ec3d05390ba'),(206497,40883,'fft_hide_from_listings','0'),(206498,40883,'_fft_hide_from_listings','field_61f1320446ab2'),(206499,40883,'fft_page_format','default'),(206500,40883,'_fft_page_format','field_61ae213f1f218'),(206501,40883,'fft_hide_nav','0'),(206502,40883,'_fft_hide_nav','field_635bd5e43527c'),(206503,40883,'fft_hide_header_call_to_action','0'),(206504,40883,'_fft_hide_header_call_to_action','field_635bd6723527d'),(206505,40883,'fft_page_sitemap','0'),(206506,40883,'_fft_page_sitemap','field_61af9b34e8181'),(206507,40883,'blocks','a:3:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";}'),(206508,40883,'_blocks','field_6176696113096'),(206509,40883,'course_label_text',''),(206510,40883,'_course_label_text','field_61e17babf71fa'),(206511,40883,'course_label',''),(206512,40883,'_course_label','field_61e12f92749a7'),(206513,40883,'course_description',''),(206514,40883,'_course_description','field_617ac5788e5e1'),(206515,40883,'course_key_info',''),(206516,40883,'_course_key_info','field_617ac6ad8e5e2'),(206517,40883,'course_included',''),(206518,40883,'_course_included','field_617ac6f08e5e4'),(206519,40883,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206520,40883,'_hero_actions_0_button','field_61757281285eb'),(206521,40883,'_thumbnail_id','40877'),(206522,40883,'__thumbnail_id','field_617570855ddaf'),(206523,40883,'blocks_0_acfe_flexible_toggle',''),(206524,40883,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(206525,40883,'blocks_0_acfe_flexible_layout_title','Template'),(206526,40883,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(206527,40883,'blocks_0_template','39087'),(206528,40883,'_blocks_0_template','field_617bdd570fe01'),(206529,40883,'blocks_1_acfe_flexible_toggle',''),(206530,40883,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(206531,40883,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(206532,40883,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(206533,40883,'blocks_1_options_theme','#ffffff'),(206534,40883,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(206535,40883,'blocks_1_options_reverse','0'),(206536,40883,'_blocks_1_options_reverse','field_61768049bb8ac'),(206537,40883,'blocks_1_options',''),(206538,40883,'_blocks_1_options','field_617682517c334'),(206539,40883,'blocks_1_split_5050_image','40612'),(206540,40883,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(206541,40883,'blocks_1_split_5050_video',''),(206542,40883,'_blocks_1_split_5050_video','field_6239f3160848a'),(206543,40883,'blocks_1_split_5050_content_title',''),(206544,40883,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(206545,40883,'blocks_1_split_5050_content_heading','Course Overview'),(206546,40883,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(206547,40883,'blocks_1_split_5050_content_text','Running, a fundamental aspect of many fitness programs, demands a nuanced understanding of biomechanics. With an ever-growing array of running styles, it can be challenging to discern the most suitable approach for you or your clients.\r\n\r\nOur in-person workshop is built on the principle that there\'s no one-size-fits-all running style. Delve into the evidence supporting various techniques and gain practical methods to determine the most effective running style for your clients. We also provide insights into preparation exercises that can aid your clients in adapting to their chosen method.'),(206548,40883,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(206549,40883,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206550,40883,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(206551,40883,'blocks_1_split_5050_content_actions','1'),(206552,40883,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(206553,40883,'blocks_1_split_5050_content',''),(206554,40883,'_blocks_1_split_5050_content','field_61767afceb8ba'),(206555,40883,'blocks_2_acfe_flexible_toggle',''),(206556,40883,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(206557,40883,'blocks_2_acfe_flexible_layout_title','Timeline'),(206558,40883,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(206559,40883,'blocks_2_options_theme','#ffffff'),(206560,40883,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(206561,40883,'blocks_2_options',''),(206562,40883,'_blocks_2_options','field_6177de53d1195'),(206563,40883,'blocks_2_timeline_content_title',''),(206564,40883,'_blocks_2_timeline_content_title','field_6177de53d1198'),(206565,40883,'blocks_2_timeline_content_heading','What You\'ll Learn in this One-Day Workshop'),(206566,40883,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(206567,40883,'blocks_2_timeline_content_text','<ul>\r\n 	<li>The correct terminology to engage with local running clubs</li>\r\n 	<li>Understanding the mechanics and sequencing of running gaits</li>\r\n 	<li>Extrinsically examining different styles or idiosyncrasies and intrinsically evaluating restrictions and dysfunctions</li>\r\n 	<li>Discussing screenings and key exercise interventions to prepare runners for their chosen style</li>\r\n</ul>'),(206568,40883,'_blocks_2_timeline_content_text','field_6177de53d119a'),(206569,40883,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206570,40883,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(206571,40883,'blocks_2_timeline_content_actions','1'),(206572,40883,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(206573,40883,'blocks_2_timeline_content',''),(206574,40883,'_blocks_2_timeline_content','field_6177de53d1197'),(206575,40883,'blocks_2_timeline_items_0_title','Workshop Duration'),(206576,40883,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(206577,40883,'blocks_2_timeline_items_0_text','1. Pre-course recorded classroom for pre & post-learning enhancement \r\n\r\n2. 1-day attendance for 7 hours '),(206578,40883,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(206579,40883,'blocks_2_timeline_items_1_title','Who Should Attend? '),(206580,40883,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(206581,40883,'blocks_2_timeline_items_1_text','1. Running coaches and practitioners aiming to elevate their skills \r\n\r\n2. Any professionals seeking a comprehensive understanding of running biomechanics '),(206582,40883,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(206583,40883,'blocks_2_timeline_items_2_title','Prerequisites'),(206584,40883,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(206585,40883,'blocks_2_timeline_items_2_text','1. Suitable for running coaches, athletics coaches, Level 3 PT, and Level 3 manual therapists '),(206586,40883,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(206587,40883,'blocks_2_timeline_items_3_title','Assessment'),(206588,40883,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(206589,40883,'blocks_2_timeline_items_3_text','1. Continuous assessment during the attendance day '),(206590,40883,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(206591,40883,'blocks_2_timeline_items','4'),(206592,40883,'_blocks_2_timeline_items','field_6177de53d119d'),(206613,40884,'hide_hero','0'),(206614,40884,'_hide_hero','field_66a2380fcda39'),(206615,40884,'hero_title','Running Biomechanics Workshop'),(206616,40884,'_hero_title','field_617571fe285e8'),(206617,40884,'hero_text','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(206618,40884,'_hero_text','field_6175723c285e9'),(206619,40884,'hero_actions','1'),(206620,40884,'_hero_actions','field_61757270285ea'),(206621,40884,'hero_style','default'),(206622,40884,'_hero_style','field_62051d9dc5324'),(206623,40884,'hero_image_pos_x','right'),(206624,40884,'_hero_image_pos_x','field_62ec3d05390bb'),(206625,40884,'hero_image_pos_y','top'),(206626,40884,'_hero_image_pos_y','field_62ec3d05390bc'),(206627,40884,'hero_image_pos',''),(206628,40884,'_hero_image_pos','field_62ec3d05390ba'),(206629,40884,'fft_hide_from_listings','0'),(206630,40884,'_fft_hide_from_listings','field_61f1320446ab2'),(206631,40884,'fft_page_format','default'),(206632,40884,'_fft_page_format','field_61ae213f1f218'),(206633,40884,'fft_hide_nav','0'),(206634,40884,'_fft_hide_nav','field_635bd5e43527c'),(206635,40884,'fft_hide_header_call_to_action','0'),(206636,40884,'_fft_hide_header_call_to_action','field_635bd6723527d'),(206637,40884,'fft_page_sitemap','0'),(206638,40884,'_fft_page_sitemap','field_61af9b34e8181'),(206639,40884,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"text_block\";i:4;s:5:\"quote\";}'),(206640,40884,'_blocks','field_6176696113096'),(206641,40884,'course_label_text',''),(206642,40884,'_course_label_text','field_61e17babf71fa'),(206643,40884,'course_label',''),(206644,40884,'_course_label','field_61e12f92749a7'),(206645,40884,'course_description',''),(206646,40884,'_course_description','field_617ac5788e5e1'),(206647,40884,'course_key_info',''),(206648,40884,'_course_key_info','field_617ac6ad8e5e2'),(206649,40884,'course_included',''),(206650,40884,'_course_included','field_617ac6f08e5e4'),(206651,40884,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206652,40884,'_hero_actions_0_button','field_61757281285eb'),(206653,40884,'_thumbnail_id','40877'),(206654,40884,'__thumbnail_id','field_617570855ddaf'),(206655,40884,'blocks_0_acfe_flexible_toggle',''),(206656,40884,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(206657,40884,'blocks_0_acfe_flexible_layout_title','Template'),(206658,40884,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(206659,40884,'blocks_0_template','39087'),(206660,40884,'_blocks_0_template','field_617bdd570fe01'),(206661,40884,'blocks_1_acfe_flexible_toggle',''),(206662,40884,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(206663,40884,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(206664,40884,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(206665,40884,'blocks_1_options_theme','#ffffff'),(206666,40884,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(206667,40884,'blocks_1_options_reverse','0'),(206668,40884,'_blocks_1_options_reverse','field_61768049bb8ac'),(206669,40884,'blocks_1_options',''),(206670,40884,'_blocks_1_options','field_617682517c334'),(206671,40884,'blocks_1_split_5050_image','40612'),(206672,40884,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(206673,40884,'blocks_1_split_5050_video',''),(206674,40884,'_blocks_1_split_5050_video','field_6239f3160848a'),(206675,40884,'blocks_1_split_5050_content_title',''),(206676,40884,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(206677,40884,'blocks_1_split_5050_content_heading','Course Overview'),(206678,40884,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(206679,40884,'blocks_1_split_5050_content_text','Running, a fundamental aspect of many fitness programs, demands a nuanced understanding of biomechanics. With an ever-growing array of running styles, it can be challenging to discern the most suitable approach for you or your clients.\r\n\r\nOur in-person workshop is built on the principle that there\'s no one-size-fits-all running style. Delve into the evidence supporting various techniques and gain practical methods to determine the most effective running style for your clients. We also provide insights into preparation exercises that can aid your clients in adapting to their chosen method.'),(206680,40884,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(206681,40884,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206682,40884,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(206683,40884,'blocks_1_split_5050_content_actions','1'),(206684,40884,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(206685,40884,'blocks_1_split_5050_content',''),(206686,40884,'_blocks_1_split_5050_content','field_61767afceb8ba'),(206687,40884,'blocks_2_acfe_flexible_toggle',''),(206688,40884,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(206689,40884,'blocks_2_acfe_flexible_layout_title','Timeline'),(206690,40884,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(206691,40884,'blocks_2_options_theme','#ffffff'),(206692,40884,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(206693,40884,'blocks_2_options',''),(206694,40884,'_blocks_2_options','field_6177de53d1195'),(206695,40884,'blocks_2_timeline_content_title',''),(206696,40884,'_blocks_2_timeline_content_title','field_6177de53d1198'),(206697,40884,'blocks_2_timeline_content_heading','What You\'ll Learn in this One-Day Workshop'),(206698,40884,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(206699,40884,'blocks_2_timeline_content_text','<ul>\r\n 	<li>The correct terminology to engage with local running clubs</li>\r\n 	<li>Understanding the mechanics and sequencing of running gaits</li>\r\n 	<li>Extrinsically examining different styles or idiosyncrasies and intrinsically evaluating restrictions and dysfunctions</li>\r\n 	<li>Discussing screenings and key exercise interventions to prepare runners for their chosen style</li>\r\n</ul>'),(206700,40884,'_blocks_2_timeline_content_text','field_6177de53d119a'),(206701,40884,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206702,40884,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(206703,40884,'blocks_2_timeline_content_actions','1'),(206704,40884,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(206705,40884,'blocks_2_timeline_content',''),(206706,40884,'_blocks_2_timeline_content','field_6177de53d1197'),(206707,40884,'blocks_2_timeline_items_0_title','Workshop Duration'),(206708,40884,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(206709,40884,'blocks_2_timeline_items_0_text','1. Pre-course recorded classroom for pre & post-learning enhancement \r\n\r\n2. 1-day attendance for 7 hours '),(206710,40884,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(206711,40884,'blocks_2_timeline_items_1_title','Who Should Attend? '),(206712,40884,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(206713,40884,'blocks_2_timeline_items_1_text','1. Running coaches and practitioners aiming to elevate their skills \r\n\r\n2. Any professionals seeking a comprehensive understanding of running biomechanics '),(206714,40884,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(206715,40884,'blocks_2_timeline_items_2_title','Prerequisites'),(206716,40884,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(206717,40884,'blocks_2_timeline_items_2_text','1. Suitable for running coaches, athletics coaches, Level 3 PT, and Level 3 manual therapists '),(206718,40884,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(206719,40884,'blocks_2_timeline_items_3_title','Assessment'),(206720,40884,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(206721,40884,'blocks_2_timeline_items_3_text','1. Continuous assessment during the attendance day '),(206722,40884,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(206723,40884,'blocks_2_timeline_items','4'),(206724,40884,'_blocks_2_timeline_items','field_6177de53d119d'),(206725,40884,'blocks_3_acfe_flexible_toggle',''),(206726,40884,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(206727,40884,'blocks_3_acfe_flexible_layout_title','Text Block'),(206728,40884,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(206729,40884,'blocks_3_options_theme','#ffffff'),(206730,40884,'_blocks_3_options_theme','field_6176830e2ad17'),(206731,40884,'blocks_3_options',''),(206732,40884,'_blocks_3_options','field_6176830e2ad16'),(206733,40884,'blocks_3_text_block_heading','Materials Needed'),(206734,40884,'_blocks_3_text_block_heading','field_617669d413097'),(206735,40884,'blocks_3_text_block_content','<ul>\r\n 	<li>A link to the downloadable workshop manual will be sent in advance of attendance, created by Martin Haines, Founder of Brytespark</li>\r\n</ul>'),(206736,40884,'_blocks_3_text_block_content','field_617669ec13098'),(206737,40884,'blocks_4_acfe_flexible_toggle',''),(206738,40884,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(206739,40884,'blocks_4_acfe_flexible_layout_title','Quote'),(206740,40884,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(206741,40884,'blocks_4_quote_content','\"Rachel was one of my first mentors both professionally and personally. She introduced to me the concept of critical thinking as well as the ability to respectfully question everything. She’s an expert in human movement, and if you’re lucky enough to have Rachel as a teacher, you gain much more than just knowledge about the human body. \r\n\r\nToday Rachel led a 1-day workshop on the biomechanics of running. We addressed the research behind running styles, biomechanics, load, and effective training strategies based on the person in front of you. \r\n\r\nAs always, taking an evidence-based approach that means no black and white simple solutions. It’s always about context, not what’s popular. Do yourself a favour and follow Rachel; she’s one of the best educators you’ll ever come across! \r\n\r\nKnows her stuff and no ego = gold dust. \r\n\r\nThanks, Rachel, you’re a bloomin’ bad ass!” '),(206742,40884,'_blocks_4_quote_content','field_6177cdacdd67a'),(206743,40884,'blocks_4_quote_author','Tom Waldron, Master Trainer '),(206744,40884,'_blocks_4_quote_author','field_6177cdc6dd67b'),(206765,40885,'hide_hero','0'),(206766,40885,'_hide_hero','field_66a2380fcda39'),(206767,40885,'hero_title','Running Biomechanics Workshop'),(206768,40885,'_hero_title','field_617571fe285e8'),(206769,40885,'hero_text','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(206770,40885,'_hero_text','field_6175723c285e9'),(206771,40885,'hero_actions','1'),(206772,40885,'_hero_actions','field_61757270285ea'),(206773,40885,'hero_style','default'),(206774,40885,'_hero_style','field_62051d9dc5324'),(206775,40885,'hero_image_pos_x','right'),(206776,40885,'_hero_image_pos_x','field_62ec3d05390bb'),(206777,40885,'hero_image_pos_y','top'),(206778,40885,'_hero_image_pos_y','field_62ec3d05390bc'),(206779,40885,'hero_image_pos',''),(206780,40885,'_hero_image_pos','field_62ec3d05390ba'),(206781,40885,'fft_hide_from_listings','0'),(206782,40885,'_fft_hide_from_listings','field_61f1320446ab2'),(206783,40885,'fft_page_format','default'),(206784,40885,'_fft_page_format','field_61ae213f1f218'),(206785,40885,'fft_hide_nav','0'),(206786,40885,'_fft_hide_nav','field_635bd5e43527c'),(206787,40885,'fft_hide_header_call_to_action','0'),(206788,40885,'_fft_hide_header_call_to_action','field_635bd6723527d'),(206789,40885,'fft_page_sitemap','0'),(206790,40885,'_fft_page_sitemap','field_61af9b34e8181'),(206791,40885,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"text_block\";i:4;s:5:\"quote\";i:5;s:11:\"promo_panel\";}'),(206792,40885,'_blocks','field_6176696113096'),(206793,40885,'course_label_text',''),(206794,40885,'_course_label_text','field_61e17babf71fa'),(206795,40885,'course_label',''),(206796,40885,'_course_label','field_61e12f92749a7'),(206797,40885,'course_description',''),(206798,40885,'_course_description','field_617ac5788e5e1'),(206799,40885,'course_key_info',''),(206800,40885,'_course_key_info','field_617ac6ad8e5e2'),(206801,40885,'course_included',''),(206802,40885,'_course_included','field_617ac6f08e5e4'),(206803,40885,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206804,40885,'_hero_actions_0_button','field_61757281285eb'),(206805,40885,'_thumbnail_id','40877'),(206806,40885,'__thumbnail_id','field_617570855ddaf'),(206807,40885,'blocks_0_acfe_flexible_toggle',''),(206808,40885,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(206809,40885,'blocks_0_acfe_flexible_layout_title','Template'),(206810,40885,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(206811,40885,'blocks_0_template','39087'),(206812,40885,'_blocks_0_template','field_617bdd570fe01'),(206813,40885,'blocks_1_acfe_flexible_toggle',''),(206814,40885,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(206815,40885,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(206816,40885,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(206817,40885,'blocks_1_options_theme','#ffffff'),(206818,40885,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(206819,40885,'blocks_1_options_reverse','0'),(206820,40885,'_blocks_1_options_reverse','field_61768049bb8ac'),(206821,40885,'blocks_1_options',''),(206822,40885,'_blocks_1_options','field_617682517c334'),(206823,40885,'blocks_1_split_5050_image','40612'),(206824,40885,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(206825,40885,'blocks_1_split_5050_video',''),(206826,40885,'_blocks_1_split_5050_video','field_6239f3160848a'),(206827,40885,'blocks_1_split_5050_content_title',''),(206828,40885,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(206829,40885,'blocks_1_split_5050_content_heading','Course Overview'),(206830,40885,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(206831,40885,'blocks_1_split_5050_content_text','Running, a fundamental aspect of many fitness programs, demands a nuanced understanding of biomechanics. With an ever-growing array of running styles, it can be challenging to discern the most suitable approach for you or your clients.\r\n\r\nOur in-person workshop is built on the principle that there\'s no one-size-fits-all running style. Delve into the evidence supporting various techniques and gain practical methods to determine the most effective running style for your clients. We also provide insights into preparation exercises that can aid your clients in adapting to their chosen method.'),(206832,40885,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(206833,40885,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206834,40885,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(206835,40885,'blocks_1_split_5050_content_actions','1'),(206836,40885,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(206837,40885,'blocks_1_split_5050_content',''),(206838,40885,'_blocks_1_split_5050_content','field_61767afceb8ba'),(206839,40885,'blocks_2_acfe_flexible_toggle',''),(206840,40885,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(206841,40885,'blocks_2_acfe_flexible_layout_title','Timeline'),(206842,40885,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(206843,40885,'blocks_2_options_theme','#ffffff'),(206844,40885,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(206845,40885,'blocks_2_options',''),(206846,40885,'_blocks_2_options','field_6177de53d1195'),(206847,40885,'blocks_2_timeline_content_title',''),(206848,40885,'_blocks_2_timeline_content_title','field_6177de53d1198'),(206849,40885,'blocks_2_timeline_content_heading','What You\'ll Learn in this One-Day Workshop'),(206850,40885,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(206851,40885,'blocks_2_timeline_content_text','<ul>\r\n 	<li>The correct terminology to engage with local running clubs</li>\r\n 	<li>Understanding the mechanics and sequencing of running gaits</li>\r\n 	<li>Extrinsically examining different styles or idiosyncrasies and intrinsically evaluating restrictions and dysfunctions</li>\r\n 	<li>Discussing screenings and key exercise interventions to prepare runners for their chosen style</li>\r\n</ul>'),(206852,40885,'_blocks_2_timeline_content_text','field_6177de53d119a'),(206853,40885,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206854,40885,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(206855,40885,'blocks_2_timeline_content_actions','1'),(206856,40885,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(206857,40885,'blocks_2_timeline_content',''),(206858,40885,'_blocks_2_timeline_content','field_6177de53d1197'),(206859,40885,'blocks_2_timeline_items_0_title','Workshop Duration'),(206860,40885,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(206861,40885,'blocks_2_timeline_items_0_text','1. Pre-course recorded classroom for pre & post-learning enhancement \r\n\r\n2. 1-day attendance for 7 hours '),(206862,40885,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(206863,40885,'blocks_2_timeline_items_1_title','Who Should Attend? '),(206864,40885,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(206865,40885,'blocks_2_timeline_items_1_text','1. Running coaches and practitioners aiming to elevate their skills \r\n\r\n2. Any professionals seeking a comprehensive understanding of running biomechanics '),(206866,40885,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(206867,40885,'blocks_2_timeline_items_2_title','Prerequisites'),(206868,40885,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(206869,40885,'blocks_2_timeline_items_2_text','1. Suitable for running coaches, athletics coaches, Level 3 PT, and Level 3 manual therapists '),(206870,40885,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(206871,40885,'blocks_2_timeline_items_3_title','Assessment'),(206872,40885,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(206873,40885,'blocks_2_timeline_items_3_text','1. Continuous assessment during the attendance day '),(206874,40885,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(206875,40885,'blocks_2_timeline_items','4'),(206876,40885,'_blocks_2_timeline_items','field_6177de53d119d'),(206877,40885,'blocks_3_acfe_flexible_toggle',''),(206878,40885,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(206879,40885,'blocks_3_acfe_flexible_layout_title','Text Block'),(206880,40885,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(206881,40885,'blocks_3_options_theme','#ffffff'),(206882,40885,'_blocks_3_options_theme','field_6176830e2ad17'),(206883,40885,'blocks_3_options',''),(206884,40885,'_blocks_3_options','field_6176830e2ad16'),(206885,40885,'blocks_3_text_block_heading','Materials Needed'),(206886,40885,'_blocks_3_text_block_heading','field_617669d413097'),(206887,40885,'blocks_3_text_block_content','<ul>\r\n 	<li>A link to the downloadable workshop manual will be sent in advance of attendance, created by Martin Haines, Founder of Brytespark</li>\r\n</ul>'),(206888,40885,'_blocks_3_text_block_content','field_617669ec13098'),(206889,40885,'blocks_4_acfe_flexible_toggle',''),(206890,40885,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(206891,40885,'blocks_4_acfe_flexible_layout_title','Quote'),(206892,40885,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(206893,40885,'blocks_4_quote_content','\"Rachel was one of my first mentors both professionally and personally. She introduced to me the concept of critical thinking as well as the ability to respectfully question everything. She’s an expert in human movement, and if you’re lucky enough to have Rachel as a teacher, you gain much more than just knowledge about the human body. \r\n\r\nToday Rachel led a 1-day workshop on the biomechanics of running. We addressed the research behind running styles, biomechanics, load, and effective training strategies based on the person in front of you. \r\n\r\nAs always, taking an evidence-based approach that means no black and white simple solutions. It’s always about context, not what’s popular. Do yourself a favour and follow Rachel; she’s one of the best educators you’ll ever come across! \r\n\r\nKnows her stuff and no ego = gold dust. \r\n\r\nThanks, Rachel, you’re a bloomin’ bad ass!” '),(206894,40885,'_blocks_4_quote_content','field_6177cdacdd67a'),(206895,40885,'blocks_4_quote_author','Tom Waldron, Master Trainer '),(206896,40885,'_blocks_4_quote_author','field_6177cdc6dd67b'),(206897,40885,'blocks_5_acfe_flexible_toggle',''),(206898,40885,'_blocks_5_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(206899,40885,'blocks_5_acfe_flexible_layout_title','Promo Panel'),(206900,40885,'_blocks_5_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(206901,40885,'blocks_5_options_alignment','center'),(206902,40885,'_blocks_5_options_alignment','field_61769449f5490'),(206903,40885,'blocks_5_options',''),(206904,40885,'_blocks_5_options','field_617693e1428f0'),(206905,40885,'blocks_5_promo_panel_image','40820'),(206906,40885,'_blocks_5_promo_panel_image','field_617693e1428f3'),(206907,40885,'blocks_5_promo_panel_content_heading','Tom Waldron, Master Trainer '),(206908,40885,'_blocks_5_promo_panel_content_heading','field_617693e1428f6'),(206909,40885,'blocks_5_promo_panel_content_text','\"Rachel was one of my first mentors both professionally and personally. She introduced to me the concept of critical thinking as well as the ability to respectfully question everything. She’s an expert in human movement, and if you’re lucky enough to have Rachel as a teacher, you gain much more than just knowledge about the human body. \r\n\r\nToday Rachel led a 1-day workshop on the biomechanics of running. We addressed the research behind running styles, biomechanics, load, and effective training strategies based on the person in front of you. \r\n\r\nAs always, taking an evidence-based approach that means no black and white simple solutions. It’s always about context, not what’s popular. Do yourself a favour and follow Rachel; she’s one of the best educators you’ll ever come across! \r\n\r\nKnows her stuff and no ego = gold dust. \r\n\r\nThanks, Rachel, you’re a bloomin’ bad ass!” '),(206910,40885,'_blocks_5_promo_panel_content_text','field_617693e1428f7'),(206911,40885,'blocks_5_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206912,40885,'_blocks_5_promo_panel_content_actions_0_button','field_617693e1428f9'),(206913,40885,'blocks_5_promo_panel_content_actions','1'),(206914,40885,'_blocks_5_promo_panel_content_actions','field_617693e1428f8'),(206915,40885,'blocks_5_promo_panel_content',''),(206916,40885,'_blocks_5_promo_panel_content','field_617693e1428f4'),(206937,40886,'hide_hero','0'),(206938,40886,'_hide_hero','field_66a2380fcda39'),(206939,40886,'hero_title','Running Biomechanics Workshop'),(206940,40886,'_hero_title','field_617571fe285e8'),(206941,40886,'hero_text','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(206942,40886,'_hero_text','field_6175723c285e9'),(206943,40886,'hero_actions','1'),(206944,40886,'_hero_actions','field_61757270285ea'),(206945,40886,'hero_style','default'),(206946,40886,'_hero_style','field_62051d9dc5324'),(206947,40886,'hero_image_pos_x','right'),(206948,40886,'_hero_image_pos_x','field_62ec3d05390bb'),(206949,40886,'hero_image_pos_y','top'),(206950,40886,'_hero_image_pos_y','field_62ec3d05390bc'),(206951,40886,'hero_image_pos',''),(206952,40886,'_hero_image_pos','field_62ec3d05390ba'),(206953,40886,'fft_hide_from_listings','0'),(206954,40886,'_fft_hide_from_listings','field_61f1320446ab2'),(206955,40886,'fft_page_format','default'),(206956,40886,'_fft_page_format','field_61ae213f1f218'),(206957,40886,'fft_hide_nav','0'),(206958,40886,'_fft_hide_nav','field_635bd5e43527c'),(206959,40886,'fft_hide_header_call_to_action','0'),(206960,40886,'_fft_hide_header_call_to_action','field_635bd6723527d'),(206961,40886,'fft_page_sitemap','0'),(206962,40886,'_fft_page_sitemap','field_61af9b34e8181'),(206963,40886,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"text_block\";i:4;s:11:\"promo_panel\";}'),(206964,40886,'_blocks','field_6176696113096'),(206965,40886,'course_label_text',''),(206966,40886,'_course_label_text','field_61e17babf71fa'),(206967,40886,'course_label',''),(206968,40886,'_course_label','field_61e12f92749a7'),(206969,40886,'course_description',''),(206970,40886,'_course_description','field_617ac5788e5e1'),(206971,40886,'course_key_info',''),(206972,40886,'_course_key_info','field_617ac6ad8e5e2'),(206973,40886,'course_included',''),(206974,40886,'_course_included','field_617ac6f08e5e4'),(206975,40886,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(206976,40886,'_hero_actions_0_button','field_61757281285eb'),(206977,40886,'_thumbnail_id','40877'),(206978,40886,'__thumbnail_id','field_617570855ddaf'),(206979,40886,'blocks_0_acfe_flexible_toggle',''),(206980,40886,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(206981,40886,'blocks_0_acfe_flexible_layout_title','Template'),(206982,40886,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(206983,40886,'blocks_0_template','39087'),(206984,40886,'_blocks_0_template','field_617bdd570fe01'),(206985,40886,'blocks_1_acfe_flexible_toggle',''),(206986,40886,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(206987,40886,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(206988,40886,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(206989,40886,'blocks_1_options_theme','#ffffff'),(206990,40886,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(206991,40886,'blocks_1_options_reverse','0'),(206992,40886,'_blocks_1_options_reverse','field_61768049bb8ac'),(206993,40886,'blocks_1_options',''),(206994,40886,'_blocks_1_options','field_617682517c334'),(206995,40886,'blocks_1_split_5050_image','40612'),(206996,40886,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(206997,40886,'blocks_1_split_5050_video',''),(206998,40886,'_blocks_1_split_5050_video','field_6239f3160848a'),(206999,40886,'blocks_1_split_5050_content_title',''),(207000,40886,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(207001,40886,'blocks_1_split_5050_content_heading','Course Overview'),(207002,40886,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(207003,40886,'blocks_1_split_5050_content_text','Running, a fundamental aspect of many fitness programs, demands a nuanced understanding of biomechanics. With an ever-growing array of running styles, it can be challenging to discern the most suitable approach for you or your clients.\r\n\r\nOur in-person workshop is built on the principle that there\'s no one-size-fits-all running style. Delve into the evidence supporting various techniques and gain practical methods to determine the most effective running style for your clients. We also provide insights into preparation exercises that can aid your clients in adapting to their chosen method.'),(207004,40886,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(207005,40886,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207006,40886,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(207007,40886,'blocks_1_split_5050_content_actions','1'),(207008,40886,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(207009,40886,'blocks_1_split_5050_content',''),(207010,40886,'_blocks_1_split_5050_content','field_61767afceb8ba'),(207011,40886,'blocks_2_acfe_flexible_toggle',''),(207012,40886,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(207013,40886,'blocks_2_acfe_flexible_layout_title','Timeline'),(207014,40886,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(207015,40886,'blocks_2_options_theme','#ffffff'),(207016,40886,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(207017,40886,'blocks_2_options',''),(207018,40886,'_blocks_2_options','field_6177de53d1195'),(207019,40886,'blocks_2_timeline_content_title',''),(207020,40886,'_blocks_2_timeline_content_title','field_6177de53d1198'),(207021,40886,'blocks_2_timeline_content_heading','What You\'ll Learn in this One-Day Workshop'),(207022,40886,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(207023,40886,'blocks_2_timeline_content_text','<ul>\r\n 	<li>The correct terminology to engage with local running clubs</li>\r\n 	<li>Understanding the mechanics and sequencing of running gaits</li>\r\n 	<li>Extrinsically examining different styles or idiosyncrasies and intrinsically evaluating restrictions and dysfunctions</li>\r\n 	<li>Discussing screenings and key exercise interventions to prepare runners for their chosen style</li>\r\n</ul>'),(207024,40886,'_blocks_2_timeline_content_text','field_6177de53d119a'),(207025,40886,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207026,40886,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(207027,40886,'blocks_2_timeline_content_actions','1'),(207028,40886,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(207029,40886,'blocks_2_timeline_content',''),(207030,40886,'_blocks_2_timeline_content','field_6177de53d1197'),(207031,40886,'blocks_2_timeline_items_0_title','Workshop Duration'),(207032,40886,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(207033,40886,'blocks_2_timeline_items_0_text','1. Pre-course recorded classroom for pre & post-learning enhancement \r\n\r\n2. 1-day attendance for 7 hours '),(207034,40886,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(207035,40886,'blocks_2_timeline_items_1_title','Who Should Attend? '),(207036,40886,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(207037,40886,'blocks_2_timeline_items_1_text','1. Running coaches and practitioners aiming to elevate their skills \r\n\r\n2. Any professionals seeking a comprehensive understanding of running biomechanics '),(207038,40886,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(207039,40886,'blocks_2_timeline_items_2_title','Prerequisites'),(207040,40886,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(207041,40886,'blocks_2_timeline_items_2_text','1. Suitable for running coaches, athletics coaches, Level 3 PT, and Level 3 manual therapists '),(207042,40886,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(207043,40886,'blocks_2_timeline_items_3_title','Assessment'),(207044,40886,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(207045,40886,'blocks_2_timeline_items_3_text','1. Continuous assessment during the attendance day '),(207046,40886,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(207047,40886,'blocks_2_timeline_items','4'),(207048,40886,'_blocks_2_timeline_items','field_6177de53d119d'),(207049,40886,'blocks_3_acfe_flexible_toggle',''),(207050,40886,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(207051,40886,'blocks_3_acfe_flexible_layout_title','Text Block'),(207052,40886,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(207053,40886,'blocks_3_options_theme','#ffffff'),(207054,40886,'_blocks_3_options_theme','field_6176830e2ad17'),(207055,40886,'blocks_3_options',''),(207056,40886,'_blocks_3_options','field_6176830e2ad16'),(207057,40886,'blocks_3_text_block_heading','Materials Needed'),(207058,40886,'_blocks_3_text_block_heading','field_617669d413097'),(207059,40886,'blocks_3_text_block_content','<ul>\r\n 	<li>A link to the downloadable workshop manual will be sent in advance of attendance, created by Martin Haines, Founder of Brytespark</li>\r\n</ul>'),(207060,40886,'_blocks_3_text_block_content','field_617669ec13098'),(207061,40886,'blocks_4_acfe_flexible_toggle',''),(207062,40886,'_blocks_4_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(207063,40886,'blocks_4_acfe_flexible_layout_title','Promo Panel'),(207064,40886,'_blocks_4_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(207065,40886,'blocks_4_options_alignment','center'),(207066,40886,'_blocks_4_options_alignment','field_61769449f5490'),(207067,40886,'blocks_4_options',''),(207068,40886,'_blocks_4_options','field_617693e1428f0'),(207069,40886,'blocks_4_promo_panel_image','40820'),(207070,40886,'_blocks_4_promo_panel_image','field_617693e1428f3'),(207071,40886,'blocks_4_promo_panel_content_heading','Tom Waldron, Master Trainer '),(207072,40886,'_blocks_4_promo_panel_content_heading','field_617693e1428f6'),(207073,40886,'blocks_4_promo_panel_content_text','\"Rachel was one of my first mentors both professionally and personally. She introduced to me the concept of critical thinking as well as the ability to respectfully question everything. She’s an expert in human movement, and if you’re lucky enough to have Rachel as a teacher, you gain much more than just knowledge about the human body.\"'),(207074,40886,'_blocks_4_promo_panel_content_text','field_617693e1428f7'),(207075,40886,'blocks_4_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207076,40886,'_blocks_4_promo_panel_content_actions_0_button','field_617693e1428f9'),(207077,40886,'blocks_4_promo_panel_content_actions','1'),(207078,40886,'_blocks_4_promo_panel_content_actions','field_617693e1428f8'),(207079,40886,'blocks_4_promo_panel_content',''),(207080,40886,'_blocks_4_promo_panel_content','field_617693e1428f4'),(207081,40781,'blocks_2_timeline_items_4_title','Materials Needed'),(207082,40781,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(207083,40781,'blocks_2_timeline_items_4_text','1. A link to the downloadable workshop manual will be sent in advance of attendance, created by Martin Haines, Founder of Brytespark'),(207084,40781,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(207085,40781,'blocks_3_acfe_flexible_toggle',''),(207086,40781,'_blocks_3_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(207087,40781,'blocks_3_acfe_flexible_layout_title','Promo Panel'),(207088,40781,'_blocks_3_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(207089,40781,'blocks_3_options_alignment','center'),(207090,40781,'_blocks_3_options_alignment','field_61769449f5490'),(207091,40781,'blocks_3_options',''),(207092,40781,'_blocks_3_options','field_617693e1428f0'),(207093,40781,'blocks_3_promo_panel_image','40820'),(207094,40781,'_blocks_3_promo_panel_image','field_617693e1428f3'),(207095,40781,'blocks_3_promo_panel_content_heading','Tom Waldron, Master Trainer '),(207096,40781,'_blocks_3_promo_panel_content_heading','field_617693e1428f6'),(207097,40781,'blocks_3_promo_panel_content_text','\"Rachel was one of my first mentors both professionally and personally. She introduced to me the concept of critical thinking as well as the ability to respectfully question everything. She’s an expert in human movement, and if you’re lucky enough to have Rachel as a teacher, you gain much more than just knowledge about the human body.\"'),(207098,40781,'_blocks_3_promo_panel_content_text','field_617693e1428f7'),(207099,40781,'blocks_3_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207100,40781,'_blocks_3_promo_panel_content_actions_0_button','field_617693e1428f9'),(207101,40781,'blocks_3_promo_panel_content_actions','1'),(207102,40781,'_blocks_3_promo_panel_content_actions','field_617693e1428f8'),(207103,40781,'blocks_3_promo_panel_content',''),(207104,40781,'_blocks_3_promo_panel_content','field_617693e1428f4'),(207105,40887,'hide_hero','0'),(207106,40887,'_hide_hero','field_66a2380fcda39'),(207107,40887,'hero_title','Running Biomechanics Workshop'),(207108,40887,'_hero_title','field_617571fe285e8'),(207109,40887,'hero_text','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(207110,40887,'_hero_text','field_6175723c285e9'),(207111,40887,'hero_actions','1'),(207112,40887,'_hero_actions','field_61757270285ea'),(207113,40887,'hero_style','default'),(207114,40887,'_hero_style','field_62051d9dc5324'),(207115,40887,'hero_image_pos_x','right'),(207116,40887,'_hero_image_pos_x','field_62ec3d05390bb'),(207117,40887,'hero_image_pos_y','top'),(207118,40887,'_hero_image_pos_y','field_62ec3d05390bc'),(207119,40887,'hero_image_pos',''),(207120,40887,'_hero_image_pos','field_62ec3d05390ba'),(207121,40887,'fft_hide_from_listings','0'),(207122,40887,'_fft_hide_from_listings','field_61f1320446ab2'),(207123,40887,'fft_page_format','default'),(207124,40887,'_fft_page_format','field_61ae213f1f218'),(207125,40887,'fft_hide_nav','0'),(207126,40887,'_fft_hide_nav','field_635bd5e43527c'),(207127,40887,'fft_hide_header_call_to_action','0'),(207128,40887,'_fft_hide_header_call_to_action','field_635bd6723527d'),(207129,40887,'fft_page_sitemap','0'),(207130,40887,'_fft_page_sitemap','field_61af9b34e8181'),(207131,40887,'blocks','a:4:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:11:\"promo_panel\";}'),(207132,40887,'_blocks','field_6176696113096'),(207133,40887,'course_label_text',''),(207134,40887,'_course_label_text','field_61e17babf71fa'),(207135,40887,'course_label',''),(207136,40887,'_course_label','field_61e12f92749a7'),(207137,40887,'course_description',''),(207138,40887,'_course_description','field_617ac5788e5e1'),(207139,40887,'course_key_info',''),(207140,40887,'_course_key_info','field_617ac6ad8e5e2'),(207141,40887,'course_included',''),(207142,40887,'_course_included','field_617ac6f08e5e4'),(207143,40887,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207144,40887,'_hero_actions_0_button','field_61757281285eb'),(207145,40887,'_thumbnail_id','40877'),(207146,40887,'__thumbnail_id','field_617570855ddaf'),(207147,40887,'blocks_0_acfe_flexible_toggle',''),(207148,40887,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(207149,40887,'blocks_0_acfe_flexible_layout_title','Template'),(207150,40887,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(207151,40887,'blocks_0_template','39087'),(207152,40887,'_blocks_0_template','field_617bdd570fe01'),(207153,40887,'blocks_1_acfe_flexible_toggle',''),(207154,40887,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(207155,40887,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(207156,40887,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(207157,40887,'blocks_1_options_theme','#ffffff'),(207158,40887,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(207159,40887,'blocks_1_options_reverse','0'),(207160,40887,'_blocks_1_options_reverse','field_61768049bb8ac'),(207161,40887,'blocks_1_options',''),(207162,40887,'_blocks_1_options','field_617682517c334'),(207163,40887,'blocks_1_split_5050_image','40612'),(207164,40887,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(207165,40887,'blocks_1_split_5050_video',''),(207166,40887,'_blocks_1_split_5050_video','field_6239f3160848a'),(207167,40887,'blocks_1_split_5050_content_title',''),(207168,40887,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(207169,40887,'blocks_1_split_5050_content_heading','Course Overview'),(207170,40887,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(207171,40887,'blocks_1_split_5050_content_text','Running, a fundamental aspect of many fitness programs, demands a nuanced understanding of biomechanics. With an ever-growing array of running styles, it can be challenging to discern the most suitable approach for you or your clients.\r\n\r\nOur in-person workshop is built on the principle that there\'s no one-size-fits-all running style. Delve into the evidence supporting various techniques and gain practical methods to determine the most effective running style for your clients. We also provide insights into preparation exercises that can aid your clients in adapting to their chosen method.'),(207172,40887,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(207173,40887,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207174,40887,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(207175,40887,'blocks_1_split_5050_content_actions','1'),(207176,40887,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(207177,40887,'blocks_1_split_5050_content',''),(207178,40887,'_blocks_1_split_5050_content','field_61767afceb8ba'),(207179,40887,'blocks_2_acfe_flexible_toggle',''),(207180,40887,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(207181,40887,'blocks_2_acfe_flexible_layout_title','Timeline'),(207182,40887,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(207183,40887,'blocks_2_options_theme','#ffffff'),(207184,40887,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(207185,40887,'blocks_2_options',''),(207186,40887,'_blocks_2_options','field_6177de53d1195'),(207187,40887,'blocks_2_timeline_content_title',''),(207188,40887,'_blocks_2_timeline_content_title','field_6177de53d1198'),(207189,40887,'blocks_2_timeline_content_heading','What You\'ll Learn in this One-Day Workshop'),(207190,40887,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(207191,40887,'blocks_2_timeline_content_text','<ul>\r\n 	<li>The correct terminology to engage with local running clubs</li>\r\n 	<li>Understanding the mechanics and sequencing of running gaits</li>\r\n 	<li>Extrinsically examining different styles or idiosyncrasies and intrinsically evaluating restrictions and dysfunctions</li>\r\n 	<li>Discussing screenings and key exercise interventions to prepare runners for their chosen style</li>\r\n</ul>'),(207192,40887,'_blocks_2_timeline_content_text','field_6177de53d119a'),(207193,40887,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207194,40887,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(207195,40887,'blocks_2_timeline_content_actions','1'),(207196,40887,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(207197,40887,'blocks_2_timeline_content',''),(207198,40887,'_blocks_2_timeline_content','field_6177de53d1197'),(207199,40887,'blocks_2_timeline_items_0_title','Workshop Duration'),(207200,40887,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(207201,40887,'blocks_2_timeline_items_0_text','1. Pre-course recorded classroom for pre & post-learning enhancement \r\n\r\n2. 1-day attendance for 7 hours '),(207202,40887,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(207203,40887,'blocks_2_timeline_items_1_title','Who Should Attend? '),(207204,40887,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(207205,40887,'blocks_2_timeline_items_1_text','1. Running coaches and practitioners aiming to elevate their skills \r\n\r\n2. Any professionals seeking a comprehensive understanding of running biomechanics '),(207206,40887,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(207207,40887,'blocks_2_timeline_items_2_title','Prerequisites'),(207208,40887,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(207209,40887,'blocks_2_timeline_items_2_text','1. Suitable for running coaches, athletics coaches, Level 3 PT, and Level 3 manual therapists '),(207210,40887,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(207211,40887,'blocks_2_timeline_items_3_title','Assessment'),(207212,40887,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(207213,40887,'blocks_2_timeline_items_3_text','1. Continuous assessment during the attendance day '),(207214,40887,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(207215,40887,'blocks_2_timeline_items','5'),(207216,40887,'_blocks_2_timeline_items','field_6177de53d119d'),(207217,40887,'blocks_2_timeline_items_4_title','Materials Needed'),(207218,40887,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(207219,40887,'blocks_2_timeline_items_4_text','1. A link to the downloadable workshop manual will be sent in advance of attendance, created by Martin Haines, Founder of Brytespark'),(207220,40887,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(207221,40887,'blocks_3_acfe_flexible_toggle',''),(207222,40887,'_blocks_3_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(207223,40887,'blocks_3_acfe_flexible_layout_title','Promo Panel'),(207224,40887,'_blocks_3_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(207225,40887,'blocks_3_options_alignment','center'),(207226,40887,'_blocks_3_options_alignment','field_61769449f5490'),(207227,40887,'blocks_3_options',''),(207228,40887,'_blocks_3_options','field_617693e1428f0'),(207229,40887,'blocks_3_promo_panel_image','40820'),(207230,40887,'_blocks_3_promo_panel_image','field_617693e1428f3'),(207231,40887,'blocks_3_promo_panel_content_heading','Tom Waldron, Master Trainer '),(207232,40887,'_blocks_3_promo_panel_content_heading','field_617693e1428f6'),(207233,40887,'blocks_3_promo_panel_content_text','\"Rachel was one of my first mentors both professionally and personally. She introduced to me the concept of critical thinking as well as the ability to respectfully question everything. She’s an expert in human movement, and if you’re lucky enough to have Rachel as a teacher, you gain much more than just knowledge about the human body.\"'),(207234,40887,'_blocks_3_promo_panel_content_text','field_617693e1428f7'),(207235,40887,'blocks_3_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207236,40887,'_blocks_3_promo_panel_content_actions_0_button','field_617693e1428f9'),(207237,40887,'blocks_3_promo_panel_content_actions','1'),(207238,40887,'_blocks_3_promo_panel_content_actions','field_617693e1428f8'),(207239,40887,'blocks_3_promo_panel_content',''),(207240,40887,'_blocks_3_promo_panel_content','field_617693e1428f4'),(207241,40888,'_edit_lock','1727266388:5'),(207242,40888,'_edit_last','5'),(207243,40889,'_edit_lock','1727266382:5'),(207244,40889,'_edit_last','5'),(207245,40890,'_edit_lock','1727266377:5'),(207246,40890,'_edit_last','5'),(207247,40781,'blocks_4_acfe_flexible_toggle',''),(207248,40781,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(207249,40781,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(207250,40781,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(207251,40781,'blocks_4_options_theme','#ffffff'),(207252,40781,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(207253,40781,'blocks_4_options_state','0'),(207254,40781,'_blocks_4_options_state','field_6239fcb7508c5'),(207255,40781,'blocks_4_options',''),(207256,40781,'_blocks_4_options','field_6177e2991ac44'),(207257,40781,'blocks_4_content_title',''),(207258,40781,'_blocks_4_content_title','field_64d237e8bb1e2'),(207259,40781,'blocks_4_content_heading','FAQ\'s'),(207260,40781,'_blocks_4_content_heading','field_64d237e8bb1e3'),(207261,40781,'blocks_4_content_text',''),(207262,40781,'_blocks_4_content_text','field_64d237e8bb1e4'),(207263,40781,'blocks_4_content_actions',''),(207264,40781,'_blocks_4_content_actions','field_64d237e8bb1e5'),(207265,40781,'blocks_4_content_align','left'),(207266,40781,'_blocks_4_content_align','field_64d2443e6b6aa'),(207267,40781,'blocks_4_content',''),(207268,40781,'_blocks_4_content','field_64d237e8bb1e1'),(207269,40781,'blocks_4_accordion_content','faqs'),(207270,40781,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(207271,40781,'blocks_4_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(207272,40781,'_blocks_4_accordion_faqs_select','field_6177e5f3633dd'),(207273,40781,'blocks_4_actions',''),(207274,40781,'_blocks_4_actions','field_61a746a817f7a'),(207275,40891,'hide_hero','0'),(207276,40891,'_hide_hero','field_66a2380fcda39'),(207277,40891,'hero_title','Running Biomechanics Workshop'),(207278,40891,'_hero_title','field_617571fe285e8'),(207279,40891,'hero_text','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(207280,40891,'_hero_text','field_6175723c285e9'),(207281,40891,'hero_actions','1'),(207282,40891,'_hero_actions','field_61757270285ea'),(207283,40891,'hero_style','default'),(207284,40891,'_hero_style','field_62051d9dc5324'),(207285,40891,'hero_image_pos_x','right'),(207286,40891,'_hero_image_pos_x','field_62ec3d05390bb'),(207287,40891,'hero_image_pos_y','top'),(207288,40891,'_hero_image_pos_y','field_62ec3d05390bc'),(207289,40891,'hero_image_pos',''),(207290,40891,'_hero_image_pos','field_62ec3d05390ba'),(207291,40891,'fft_hide_from_listings','0'),(207292,40891,'_fft_hide_from_listings','field_61f1320446ab2'),(207293,40891,'fft_page_format','default'),(207294,40891,'_fft_page_format','field_61ae213f1f218'),(207295,40891,'fft_hide_nav','0'),(207296,40891,'_fft_hide_nav','field_635bd5e43527c'),(207297,40891,'fft_hide_header_call_to_action','0'),(207298,40891,'_fft_hide_header_call_to_action','field_635bd6723527d'),(207299,40891,'fft_page_sitemap','0'),(207300,40891,'_fft_page_sitemap','field_61af9b34e8181'),(207301,40891,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:11:\"promo_panel\";i:4;s:10:\"accordions\";}'),(207302,40891,'_blocks','field_6176696113096'),(207303,40891,'course_label_text',''),(207304,40891,'_course_label_text','field_61e17babf71fa'),(207305,40891,'course_label',''),(207306,40891,'_course_label','field_61e12f92749a7'),(207307,40891,'course_description',''),(207308,40891,'_course_description','field_617ac5788e5e1'),(207309,40891,'course_key_info',''),(207310,40891,'_course_key_info','field_617ac6ad8e5e2'),(207311,40891,'course_included',''),(207312,40891,'_course_included','field_617ac6f08e5e4'),(207313,40891,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207314,40891,'_hero_actions_0_button','field_61757281285eb'),(207315,40891,'_thumbnail_id','40877'),(207316,40891,'__thumbnail_id','field_617570855ddaf'),(207317,40891,'blocks_0_acfe_flexible_toggle',''),(207318,40891,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(207319,40891,'blocks_0_acfe_flexible_layout_title','Template'),(207320,40891,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(207321,40891,'blocks_0_template','39087'),(207322,40891,'_blocks_0_template','field_617bdd570fe01'),(207323,40891,'blocks_1_acfe_flexible_toggle',''),(207324,40891,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(207325,40891,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(207326,40891,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(207327,40891,'blocks_1_options_theme','#ffffff'),(207328,40891,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(207329,40891,'blocks_1_options_reverse','0'),(207330,40891,'_blocks_1_options_reverse','field_61768049bb8ac'),(207331,40891,'blocks_1_options',''),(207332,40891,'_blocks_1_options','field_617682517c334'),(207333,40891,'blocks_1_split_5050_image','40612'),(207334,40891,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(207335,40891,'blocks_1_split_5050_video',''),(207336,40891,'_blocks_1_split_5050_video','field_6239f3160848a'),(207337,40891,'blocks_1_split_5050_content_title',''),(207338,40891,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(207339,40891,'blocks_1_split_5050_content_heading','Course Overview'),(207340,40891,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(207341,40891,'blocks_1_split_5050_content_text','Running, a fundamental aspect of many fitness programs, demands a nuanced understanding of biomechanics. With an ever-growing array of running styles, it can be challenging to discern the most suitable approach for you or your clients.\r\n\r\nOur in-person workshop is built on the principle that there\'s no one-size-fits-all running style. Delve into the evidence supporting various techniques and gain practical methods to determine the most effective running style for your clients. We also provide insights into preparation exercises that can aid your clients in adapting to their chosen method.'),(207342,40891,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(207343,40891,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207344,40891,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(207345,40891,'blocks_1_split_5050_content_actions','1'),(207346,40891,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(207347,40891,'blocks_1_split_5050_content',''),(207348,40891,'_blocks_1_split_5050_content','field_61767afceb8ba'),(207349,40891,'blocks_2_acfe_flexible_toggle',''),(207350,40891,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(207351,40891,'blocks_2_acfe_flexible_layout_title','Timeline'),(207352,40891,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(207353,40891,'blocks_2_options_theme','#ffffff'),(207354,40891,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(207355,40891,'blocks_2_options',''),(207356,40891,'_blocks_2_options','field_6177de53d1195'),(207357,40891,'blocks_2_timeline_content_title',''),(207358,40891,'_blocks_2_timeline_content_title','field_6177de53d1198'),(207359,40891,'blocks_2_timeline_content_heading','What You\'ll Learn in this One-Day Workshop'),(207360,40891,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(207361,40891,'blocks_2_timeline_content_text','<ul>\r\n 	<li>The correct terminology to engage with local running clubs</li>\r\n 	<li>Understanding the mechanics and sequencing of running gaits</li>\r\n 	<li>Extrinsically examining different styles or idiosyncrasies and intrinsically evaluating restrictions and dysfunctions</li>\r\n 	<li>Discussing screenings and key exercise interventions to prepare runners for their chosen style</li>\r\n</ul>'),(207362,40891,'_blocks_2_timeline_content_text','field_6177de53d119a'),(207363,40891,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207364,40891,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(207365,40891,'blocks_2_timeline_content_actions','1'),(207366,40891,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(207367,40891,'blocks_2_timeline_content',''),(207368,40891,'_blocks_2_timeline_content','field_6177de53d1197'),(207369,40891,'blocks_2_timeline_items_0_title','Workshop Duration'),(207370,40891,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(207371,40891,'blocks_2_timeline_items_0_text','1. Pre-course recorded classroom for pre & post-learning enhancement \r\n\r\n2. 1-day attendance for 7 hours '),(207372,40891,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(207373,40891,'blocks_2_timeline_items_1_title','Who Should Attend? '),(207374,40891,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(207375,40891,'blocks_2_timeline_items_1_text','1. Running coaches and practitioners aiming to elevate their skills \r\n\r\n2. Any professionals seeking a comprehensive understanding of running biomechanics '),(207376,40891,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(207377,40891,'blocks_2_timeline_items_2_title','Prerequisites'),(207378,40891,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(207379,40891,'blocks_2_timeline_items_2_text','1. Suitable for running coaches, athletics coaches, Level 3 PT, and Level 3 manual therapists '),(207380,40891,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(207381,40891,'blocks_2_timeline_items_3_title','Assessment'),(207382,40891,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(207383,40891,'blocks_2_timeline_items_3_text','1. Continuous assessment during the attendance day '),(207384,40891,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(207385,40891,'blocks_2_timeline_items','5'),(207386,40891,'_blocks_2_timeline_items','field_6177de53d119d'),(207387,40891,'blocks_2_timeline_items_4_title','Materials Needed'),(207388,40891,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(207389,40891,'blocks_2_timeline_items_4_text','1. A link to the downloadable workshop manual will be sent in advance of attendance, created by Martin Haines, Founder of Brytespark'),(207390,40891,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(207391,40891,'blocks_3_acfe_flexible_toggle',''),(207392,40891,'_blocks_3_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(207393,40891,'blocks_3_acfe_flexible_layout_title','Promo Panel'),(207394,40891,'_blocks_3_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(207395,40891,'blocks_3_options_alignment','center'),(207396,40891,'_blocks_3_options_alignment','field_61769449f5490'),(207397,40891,'blocks_3_options',''),(207398,40891,'_blocks_3_options','field_617693e1428f0'),(207399,40891,'blocks_3_promo_panel_image','40820'),(207400,40891,'_blocks_3_promo_panel_image','field_617693e1428f3'),(207401,40891,'blocks_3_promo_panel_content_heading','Tom Waldron, Master Trainer '),(207402,40891,'_blocks_3_promo_panel_content_heading','field_617693e1428f6'),(207403,40891,'blocks_3_promo_panel_content_text','\"Rachel was one of my first mentors both professionally and personally. She introduced to me the concept of critical thinking as well as the ability to respectfully question everything. She’s an expert in human movement, and if you’re lucky enough to have Rachel as a teacher, you gain much more than just knowledge about the human body.\"'),(207404,40891,'_blocks_3_promo_panel_content_text','field_617693e1428f7'),(207405,40891,'blocks_3_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207406,40891,'_blocks_3_promo_panel_content_actions_0_button','field_617693e1428f9'),(207407,40891,'blocks_3_promo_panel_content_actions','1'),(207408,40891,'_blocks_3_promo_panel_content_actions','field_617693e1428f8'),(207409,40891,'blocks_3_promo_panel_content',''),(207410,40891,'_blocks_3_promo_panel_content','field_617693e1428f4'),(207411,40891,'blocks_4_acfe_flexible_toggle',''),(207412,40891,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(207413,40891,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(207414,40891,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(207415,40891,'blocks_4_options_theme','#ffffff'),(207416,40891,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(207417,40891,'blocks_4_options_state','0'),(207418,40891,'_blocks_4_options_state','field_6239fcb7508c5'),(207419,40891,'blocks_4_options',''),(207420,40891,'_blocks_4_options','field_6177e2991ac44'),(207421,40891,'blocks_4_content_title',''),(207422,40891,'_blocks_4_content_title','field_64d237e8bb1e2'),(207423,40891,'blocks_4_content_heading','FAQ\'s'),(207424,40891,'_blocks_4_content_heading','field_64d237e8bb1e3'),(207425,40891,'blocks_4_content_text',''),(207426,40891,'_blocks_4_content_text','field_64d237e8bb1e4'),(207427,40891,'blocks_4_content_actions',''),(207428,40891,'_blocks_4_content_actions','field_64d237e8bb1e5'),(207429,40891,'blocks_4_content_align','left'),(207430,40891,'_blocks_4_content_align','field_64d2443e6b6aa'),(207431,40891,'blocks_4_content',''),(207432,40891,'_blocks_4_content','field_64d237e8bb1e1'),(207433,40891,'blocks_4_accordion_content','faqs'),(207434,40891,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(207435,40891,'blocks_4_accordion_faqs_select',''),(207436,40891,'_blocks_4_accordion_faqs_select','field_6177e5f3633dd'),(207437,40891,'blocks_4_actions',''),(207438,40891,'_blocks_4_actions','field_61a746a817f7a'),(207439,40892,'hide_hero','0'),(207440,40892,'_hide_hero','field_66a2380fcda39'),(207441,40892,'hero_title','Running Biomechanics Workshop'),(207442,40892,'_hero_title','field_617571fe285e8'),(207443,40892,'hero_text','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(207444,40892,'_hero_text','field_6175723c285e9'),(207445,40892,'hero_actions','1'),(207446,40892,'_hero_actions','field_61757270285ea'),(207447,40892,'hero_style','default'),(207448,40892,'_hero_style','field_62051d9dc5324'),(207449,40892,'hero_image_pos_x','right'),(207450,40892,'_hero_image_pos_x','field_62ec3d05390bb'),(207451,40892,'hero_image_pos_y','top'),(207452,40892,'_hero_image_pos_y','field_62ec3d05390bc'),(207453,40892,'hero_image_pos',''),(207454,40892,'_hero_image_pos','field_62ec3d05390ba'),(207455,40892,'fft_hide_from_listings','0'),(207456,40892,'_fft_hide_from_listings','field_61f1320446ab2'),(207457,40892,'fft_page_format','default'),(207458,40892,'_fft_page_format','field_61ae213f1f218'),(207459,40892,'fft_hide_nav','0'),(207460,40892,'_fft_hide_nav','field_635bd5e43527c'),(207461,40892,'fft_hide_header_call_to_action','0'),(207462,40892,'_fft_hide_header_call_to_action','field_635bd6723527d'),(207463,40892,'fft_page_sitemap','0'),(207464,40892,'_fft_page_sitemap','field_61af9b34e8181'),(207465,40892,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:11:\"promo_panel\";i:4;s:10:\"accordions\";}'),(207466,40892,'_blocks','field_6176696113096'),(207467,40892,'course_label_text',''),(207468,40892,'_course_label_text','field_61e17babf71fa'),(207469,40892,'course_label',''),(207470,40892,'_course_label','field_61e12f92749a7'),(207471,40892,'course_description',''),(207472,40892,'_course_description','field_617ac5788e5e1'),(207473,40892,'course_key_info',''),(207474,40892,'_course_key_info','field_617ac6ad8e5e2'),(207475,40892,'course_included',''),(207476,40892,'_course_included','field_617ac6f08e5e4'),(207477,40892,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207478,40892,'_hero_actions_0_button','field_61757281285eb'),(207479,40892,'_thumbnail_id','40877'),(207480,40892,'__thumbnail_id','field_617570855ddaf'),(207481,40892,'blocks_0_acfe_flexible_toggle',''),(207482,40892,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(207483,40892,'blocks_0_acfe_flexible_layout_title','Template'),(207484,40892,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(207485,40892,'blocks_0_template','39087'),(207486,40892,'_blocks_0_template','field_617bdd570fe01'),(207487,40892,'blocks_1_acfe_flexible_toggle',''),(207488,40892,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(207489,40892,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(207490,40892,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(207491,40892,'blocks_1_options_theme','#ffffff'),(207492,40892,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(207493,40892,'blocks_1_options_reverse','0'),(207494,40892,'_blocks_1_options_reverse','field_61768049bb8ac'),(207495,40892,'blocks_1_options',''),(207496,40892,'_blocks_1_options','field_617682517c334'),(207497,40892,'blocks_1_split_5050_image','40612'),(207498,40892,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(207499,40892,'blocks_1_split_5050_video',''),(207500,40892,'_blocks_1_split_5050_video','field_6239f3160848a'),(207501,40892,'blocks_1_split_5050_content_title',''),(207502,40892,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(207503,40892,'blocks_1_split_5050_content_heading','Course Overview'),(207504,40892,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(207505,40892,'blocks_1_split_5050_content_text','Running, a fundamental aspect of many fitness programs, demands a nuanced understanding of biomechanics. With an ever-growing array of running styles, it can be challenging to discern the most suitable approach for you or your clients.\r\n\r\nOur in-person workshop is built on the principle that there\'s no one-size-fits-all running style. Delve into the evidence supporting various techniques and gain practical methods to determine the most effective running style for your clients. We also provide insights into preparation exercises that can aid your clients in adapting to their chosen method.'),(207506,40892,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(207507,40892,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207508,40892,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(207509,40892,'blocks_1_split_5050_content_actions','1'),(207510,40892,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(207511,40892,'blocks_1_split_5050_content',''),(207512,40892,'_blocks_1_split_5050_content','field_61767afceb8ba'),(207513,40892,'blocks_2_acfe_flexible_toggle',''),(207514,40892,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(207515,40892,'blocks_2_acfe_flexible_layout_title','Timeline'),(207516,40892,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(207517,40892,'blocks_2_options_theme','#ffffff'),(207518,40892,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(207519,40892,'blocks_2_options',''),(207520,40892,'_blocks_2_options','field_6177de53d1195'),(207521,40892,'blocks_2_timeline_content_title',''),(207522,40892,'_blocks_2_timeline_content_title','field_6177de53d1198'),(207523,40892,'blocks_2_timeline_content_heading','What You\'ll Learn in this One-Day Workshop'),(207524,40892,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(207525,40892,'blocks_2_timeline_content_text','<ul>\r\n 	<li>The correct terminology to engage with local running clubs</li>\r\n 	<li>Understanding the mechanics and sequencing of running gaits</li>\r\n 	<li>Extrinsically examining different styles or idiosyncrasies and intrinsically evaluating restrictions and dysfunctions</li>\r\n 	<li>Discussing screenings and key exercise interventions to prepare runners for their chosen style</li>\r\n</ul>'),(207526,40892,'_blocks_2_timeline_content_text','field_6177de53d119a'),(207527,40892,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207528,40892,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(207529,40892,'blocks_2_timeline_content_actions','1'),(207530,40892,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(207531,40892,'blocks_2_timeline_content',''),(207532,40892,'_blocks_2_timeline_content','field_6177de53d1197'),(207533,40892,'blocks_2_timeline_items_0_title','Workshop Duration'),(207534,40892,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(207535,40892,'blocks_2_timeline_items_0_text','1. Pre-course recorded classroom for pre & post-learning enhancement \r\n\r\n2. 1-day attendance for 7 hours '),(207536,40892,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(207537,40892,'blocks_2_timeline_items_1_title','Who Should Attend? '),(207538,40892,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(207539,40892,'blocks_2_timeline_items_1_text','1. Running coaches and practitioners aiming to elevate their skills \r\n\r\n2. Any professionals seeking a comprehensive understanding of running biomechanics '),(207540,40892,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(207541,40892,'blocks_2_timeline_items_2_title','Prerequisites'),(207542,40892,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(207543,40892,'blocks_2_timeline_items_2_text','1. Suitable for running coaches, athletics coaches, Level 3 PT, and Level 3 manual therapists '),(207544,40892,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(207545,40892,'blocks_2_timeline_items_3_title','Assessment'),(207546,40892,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(207547,40892,'blocks_2_timeline_items_3_text','1. Continuous assessment during the attendance day '),(207548,40892,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(207549,40892,'blocks_2_timeline_items','5'),(207550,40892,'_blocks_2_timeline_items','field_6177de53d119d'),(207551,40892,'blocks_2_timeline_items_4_title','Materials Needed'),(207552,40892,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(207553,40892,'blocks_2_timeline_items_4_text','1. A link to the downloadable workshop manual will be sent in advance of attendance, created by Martin Haines, Founder of Brytespark'),(207554,40892,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(207555,40892,'blocks_3_acfe_flexible_toggle',''),(207556,40892,'_blocks_3_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(207557,40892,'blocks_3_acfe_flexible_layout_title','Promo Panel'),(207558,40892,'_blocks_3_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(207559,40892,'blocks_3_options_alignment','center'),(207560,40892,'_blocks_3_options_alignment','field_61769449f5490'),(207561,40892,'blocks_3_options',''),(207562,40892,'_blocks_3_options','field_617693e1428f0'),(207563,40892,'blocks_3_promo_panel_image','40820'),(207564,40892,'_blocks_3_promo_panel_image','field_617693e1428f3'),(207565,40892,'blocks_3_promo_panel_content_heading','Tom Waldron, Master Trainer '),(207566,40892,'_blocks_3_promo_panel_content_heading','field_617693e1428f6'),(207567,40892,'blocks_3_promo_panel_content_text','\"Rachel was one of my first mentors both professionally and personally. She introduced to me the concept of critical thinking as well as the ability to respectfully question everything. She’s an expert in human movement, and if you’re lucky enough to have Rachel as a teacher, you gain much more than just knowledge about the human body.\"'),(207568,40892,'_blocks_3_promo_panel_content_text','field_617693e1428f7'),(207569,40892,'blocks_3_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207570,40892,'_blocks_3_promo_panel_content_actions_0_button','field_617693e1428f9'),(207571,40892,'blocks_3_promo_panel_content_actions','1'),(207572,40892,'_blocks_3_promo_panel_content_actions','field_617693e1428f8'),(207573,40892,'blocks_3_promo_panel_content',''),(207574,40892,'_blocks_3_promo_panel_content','field_617693e1428f4'),(207575,40892,'blocks_4_acfe_flexible_toggle',''),(207576,40892,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(207577,40892,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(207578,40892,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(207579,40892,'blocks_4_options_theme','#ffffff'),(207580,40892,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(207581,40892,'blocks_4_options_state','0'),(207582,40892,'_blocks_4_options_state','field_6239fcb7508c5'),(207583,40892,'blocks_4_options',''),(207584,40892,'_blocks_4_options','field_6177e2991ac44'),(207585,40892,'blocks_4_content_title',''),(207586,40892,'_blocks_4_content_title','field_64d237e8bb1e2'),(207587,40892,'blocks_4_content_heading','FAQ\'s'),(207588,40892,'_blocks_4_content_heading','field_64d237e8bb1e3'),(207589,40892,'blocks_4_content_text',''),(207590,40892,'_blocks_4_content_text','field_64d237e8bb1e4'),(207591,40892,'blocks_4_content_actions',''),(207592,40892,'_blocks_4_content_actions','field_64d237e8bb1e5'),(207593,40892,'blocks_4_content_align','left'),(207594,40892,'_blocks_4_content_align','field_64d2443e6b6aa'),(207595,40892,'blocks_4_content',''),(207596,40892,'_blocks_4_content','field_64d237e8bb1e1'),(207597,40892,'blocks_4_accordion_content','faqs'),(207598,40892,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(207599,40892,'blocks_4_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(207600,40892,'_blocks_4_accordion_faqs_select','field_6177e5f3633dd'),(207601,40892,'blocks_4_actions',''),(207602,40892,'_blocks_4_actions','field_61a746a817f7a'),(207603,40779,'_edit_lock','1739960232:18'),(207604,40779,'_edit_last','18'),(207605,40893,'_wp_attached_file','2024/09/imovefreely-hero-image-workhop.jpg'),(207606,40893,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:4:\"file\";s:42:\"2024/09/imovefreely-hero-image-workhop.jpg\";s:8:\"filesize\";i:362213;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"imovefreely-hero-image-workhop-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91048;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"imovefreely-hero-image-workhop-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150259;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"imovefreely-hero-image-workhop-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23540;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"imovefreely-hero-image-workhop-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69472;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:44:\"imovefreely-hero-image-workhop-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230941;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:42:\"imovefreely-hero-image-workhop-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35725;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:42:\"imovefreely-hero-image-workhop-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142381;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:44:\"imovefreely-hero-image-workhop-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229135;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:42:\"imovefreely-hero-image-workhop-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23437;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:42:\"imovefreely-hero-image-workhop-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90405;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:43:\"imovefreely-hero-image-workhop-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148655;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:42:\"imovefreely-hero-image-workhop-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28772;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:42:\"imovefreely-hero-image-workhop-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113540;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:43:\"imovefreely-hero-image-workhop-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182660;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:42:\"imovefreely-hero-image-workhop-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27085;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:42:\"imovefreely-hero-image-workhop-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105696;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:43:\"imovefreely-hero-image-workhop-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172988;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:42:\"imovefreely-hero-image-workhop-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21116;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:42:\"imovefreely-hero-image-workhop-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79451;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:43:\"imovefreely-hero-image-workhop-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129355;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(207607,40779,'hide_hero','0'),(207608,40779,'_hide_hero','field_66a2380fcda39'),(207609,40779,'hero_title','iMoveFreely Instructor Programme Workshop'),(207610,40779,'_hero_title','field_617571fe285e8'),(207611,40779,'hero_text',''),(207612,40779,'_hero_text','field_6175723c285e9'),(207613,40779,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207614,40779,'_hero_actions_0_button','field_61757281285eb'),(207615,40779,'hero_actions','1'),(207616,40779,'_hero_actions','field_61757270285ea'),(207617,40779,'hero_style','default'),(207618,40779,'_hero_style','field_62051d9dc5324'),(207620,40779,'__thumbnail_id','field_617570855ddaf'),(207621,40779,'hero_image_pos_x','right'),(207622,40779,'_hero_image_pos_x','field_62ec3d05390bb'),(207623,40779,'hero_image_pos_y','top'),(207624,40779,'_hero_image_pos_y','field_62ec3d05390bc'),(207625,40779,'hero_image_pos',''),(207626,40779,'_hero_image_pos','field_62ec3d05390ba'),(207627,40779,'fft_hide_from_listings','0'),(207628,40779,'_fft_hide_from_listings','field_61f1320446ab2'),(207629,40779,'fft_page_format','default'),(207630,40779,'_fft_page_format','field_61ae213f1f218'),(207631,40779,'fft_hide_nav','0'),(207632,40779,'_fft_hide_nav','field_635bd5e43527c'),(207633,40779,'fft_hide_header_call_to_action','0'),(207634,40779,'_fft_hide_header_call_to_action','field_635bd6723527d'),(207635,40779,'fft_page_sitemap','0'),(207636,40779,'_fft_page_sitemap','field_61af9b34e8181'),(207637,40779,'blocks_0_acfe_flexible_toggle',''),(207638,40779,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(207639,40779,'blocks_0_acfe_flexible_layout_title','Template'),(207640,40779,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(207641,40779,'blocks_0_template','39087'),(207642,40779,'_blocks_0_template','field_617bdd570fe01'),(207669,40779,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:5:\"video\";i:4;s:13:\"step_timeline\";i:5;s:11:\"promo_panel\";i:6;s:10:\"accordions\";}'),(207670,40779,'_blocks','field_6176696113096'),(207671,40779,'course_label_text','IMoveFreely Instructor programme workshop'),(207672,40779,'_course_label_text','field_61e17babf71fa'),(207673,40779,'course_label',''),(207674,40779,'_course_label','field_61e12f92749a7'),(207675,40779,'course_description','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants.'),(207676,40779,'_course_description','field_617ac5788e5e1'),(207677,40779,'course_key_info','2'),(207678,40779,'_course_key_info','field_617ac6ad8e5e2'),(207679,40779,'course_included','Profound effects on movement issues \r\n\r\nIdeal for injury prevention, rehabilitation, and activity preparation \r\n\r\nEvidence-based techniques for improved performance \r\n\r\nFlexible integration into existing classes '),(207680,40779,'_course_included','field_617ac6f08e5e4'),(207681,40779,'_yoast_wpseo_primary_course-cat','403'),(207682,40779,'_yoast_wpseo_estimated-reading-time-minutes','1'),(207683,40894,'hide_hero','0'),(207684,40894,'_hide_hero','field_66a2380fcda39'),(207685,40894,'hero_title','IMoveFreely Instructor Programme Workshop'),(207686,40894,'_hero_title','field_617571fe285e8'),(207687,40894,'hero_text',''),(207688,40894,'_hero_text','field_6175723c285e9'),(207689,40894,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207690,40894,'_hero_actions_0_button','field_61757281285eb'),(207691,40894,'hero_actions','1'),(207692,40894,'_hero_actions','field_61757270285ea'),(207693,40894,'hero_style','default'),(207694,40894,'_hero_style','field_62051d9dc5324'),(207695,40894,'_thumbnail_id','40893'),(207696,40894,'__thumbnail_id','field_617570855ddaf'),(207697,40894,'hero_image_pos_x','right'),(207698,40894,'_hero_image_pos_x','field_62ec3d05390bb'),(207699,40894,'hero_image_pos_y','top'),(207700,40894,'_hero_image_pos_y','field_62ec3d05390bc'),(207701,40894,'hero_image_pos',''),(207702,40894,'_hero_image_pos','field_62ec3d05390ba'),(207703,40894,'fft_hide_from_listings','0'),(207704,40894,'_fft_hide_from_listings','field_61f1320446ab2'),(207705,40894,'fft_page_format','default'),(207706,40894,'_fft_page_format','field_61ae213f1f218'),(207707,40894,'fft_hide_nav','0'),(207708,40894,'_fft_hide_nav','field_635bd5e43527c'),(207709,40894,'fft_hide_header_call_to_action','0'),(207710,40894,'_fft_hide_header_call_to_action','field_635bd6723527d'),(207711,40894,'fft_page_sitemap','0'),(207712,40894,'_fft_page_sitemap','field_61af9b34e8181'),(207713,40894,'blocks_0_acfe_flexible_toggle',''),(207714,40894,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(207715,40894,'blocks_0_acfe_flexible_layout_title','Template'),(207716,40894,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(207717,40894,'blocks_0_template','39087'),(207718,40894,'_blocks_0_template','field_617bdd570fe01'),(207719,40894,'blocks_1_acfe_flexible_toggle',''),(207720,40894,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(207721,40894,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(207722,40894,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(207723,40894,'blocks_1_options_theme','#ffffff'),(207724,40894,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(207725,40894,'blocks_1_options_reverse','0'),(207726,40894,'_blocks_1_options_reverse','field_61768049bb8ac'),(207727,40894,'blocks_1_options',''),(207728,40894,'_blocks_1_options','field_617682517c334'),(207729,40894,'blocks_1_split_5050_image',''),(207730,40894,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(207731,40894,'blocks_1_split_5050_video',''),(207732,40894,'_blocks_1_split_5050_video','field_6239f3160848a'),(207733,40894,'blocks_1_split_5050_content_title',''),(207734,40894,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(207735,40894,'blocks_1_split_5050_content_heading','Overview'),(207736,40894,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(207737,40894,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.'),(207738,40894,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(207739,40894,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207740,40894,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(207741,40894,'blocks_1_split_5050_content_actions','1'),(207742,40894,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(207743,40894,'blocks_1_split_5050_content',''),(207744,40894,'_blocks_1_split_5050_content','field_61767afceb8ba'),(207745,40894,'blocks','a:2:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";}'),(207746,40894,'_blocks','field_6176696113096'),(207747,40894,'course_label_text',''),(207748,40894,'_course_label_text','field_61e17babf71fa'),(207749,40894,'course_label',''),(207750,40894,'_course_label','field_61e12f92749a7'),(207751,40894,'course_description',''),(207752,40894,'_course_description','field_617ac5788e5e1'),(207753,40894,'course_key_info',''),(207754,40894,'_course_key_info','field_617ac6ad8e5e2'),(207755,40894,'course_included',''),(207756,40894,'_course_included','field_617ac6f08e5e4'),(207757,40895,'hide_hero','0'),(207758,40895,'_hide_hero','field_66a2380fcda39'),(207759,40895,'hero_title','IMoveFreely Instructor Programme Workshop'),(207760,40895,'_hero_title','field_617571fe285e8'),(207761,40895,'hero_text',''),(207762,40895,'_hero_text','field_6175723c285e9'),(207763,40895,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207764,40895,'_hero_actions_0_button','field_61757281285eb'),(207765,40895,'hero_actions','1'),(207766,40895,'_hero_actions','field_61757270285ea'),(207767,40895,'hero_style','default'),(207768,40895,'_hero_style','field_62051d9dc5324'),(207769,40895,'_thumbnail_id','40893'),(207770,40895,'__thumbnail_id','field_617570855ddaf'),(207771,40895,'hero_image_pos_x','right'),(207772,40895,'_hero_image_pos_x','field_62ec3d05390bb'),(207773,40895,'hero_image_pos_y','top'),(207774,40895,'_hero_image_pos_y','field_62ec3d05390bc'),(207775,40895,'hero_image_pos',''),(207776,40895,'_hero_image_pos','field_62ec3d05390ba'),(207777,40895,'fft_hide_from_listings','0'),(207778,40895,'_fft_hide_from_listings','field_61f1320446ab2'),(207779,40895,'fft_page_format','default'),(207780,40895,'_fft_page_format','field_61ae213f1f218'),(207781,40895,'fft_hide_nav','0'),(207782,40895,'_fft_hide_nav','field_635bd5e43527c'),(207783,40895,'fft_hide_header_call_to_action','0'),(207784,40895,'_fft_hide_header_call_to_action','field_635bd6723527d'),(207785,40895,'fft_page_sitemap','0'),(207786,40895,'_fft_page_sitemap','field_61af9b34e8181'),(207787,40895,'blocks_0_acfe_flexible_toggle',''),(207788,40895,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(207789,40895,'blocks_0_acfe_flexible_layout_title','Template'),(207790,40895,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(207791,40895,'blocks_0_template','39087'),(207792,40895,'_blocks_0_template','field_617bdd570fe01'),(207793,40895,'blocks_1_acfe_flexible_toggle',''),(207794,40895,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(207795,40895,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(207796,40895,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(207797,40895,'blocks_1_options_theme','#ffffff'),(207798,40895,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(207799,40895,'blocks_1_options_reverse','0'),(207800,40895,'_blocks_1_options_reverse','field_61768049bb8ac'),(207801,40895,'blocks_1_options',''),(207802,40895,'_blocks_1_options','field_617682517c334'),(207803,40895,'blocks_1_split_5050_image','40615'),(207804,40895,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(207805,40895,'blocks_1_split_5050_video',''),(207806,40895,'_blocks_1_split_5050_video','field_6239f3160848a'),(207807,40895,'blocks_1_split_5050_content_title',''),(207808,40895,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(207809,40895,'blocks_1_split_5050_content_heading','Overview'),(207810,40895,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(207811,40895,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.'),(207812,40895,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(207813,40895,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207814,40895,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(207815,40895,'blocks_1_split_5050_content_actions','1'),(207816,40895,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(207817,40895,'blocks_1_split_5050_content',''),(207818,40895,'_blocks_1_split_5050_content','field_61767afceb8ba'),(207819,40895,'blocks','a:2:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";}'),(207820,40895,'_blocks','field_6176696113096'),(207821,40895,'course_label_text',''),(207822,40895,'_course_label_text','field_61e17babf71fa'),(207823,40895,'course_label',''),(207824,40895,'_course_label','field_61e12f92749a7'),(207825,40895,'course_description',''),(207826,40895,'_course_description','field_617ac5788e5e1'),(207827,40895,'course_key_info',''),(207828,40895,'_course_key_info','field_617ac6ad8e5e2'),(207829,40895,'course_included',''),(207830,40895,'_course_included','field_617ac6f08e5e4'),(207883,40896,'hide_hero','0'),(207884,40896,'_hide_hero','field_66a2380fcda39'),(207885,40896,'hero_title','IMoveFreely Instructor Programme Workshop'),(207886,40896,'_hero_title','field_617571fe285e8'),(207887,40896,'hero_text',''),(207888,40896,'_hero_text','field_6175723c285e9'),(207889,40896,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207890,40896,'_hero_actions_0_button','field_61757281285eb'),(207891,40896,'hero_actions','1'),(207892,40896,'_hero_actions','field_61757270285ea'),(207893,40896,'hero_style','default'),(207894,40896,'_hero_style','field_62051d9dc5324'),(207895,40896,'_thumbnail_id','40893'),(207896,40896,'__thumbnail_id','field_617570855ddaf'),(207897,40896,'hero_image_pos_x','right'),(207898,40896,'_hero_image_pos_x','field_62ec3d05390bb'),(207899,40896,'hero_image_pos_y','top'),(207900,40896,'_hero_image_pos_y','field_62ec3d05390bc'),(207901,40896,'hero_image_pos',''),(207902,40896,'_hero_image_pos','field_62ec3d05390ba'),(207903,40896,'fft_hide_from_listings','0'),(207904,40896,'_fft_hide_from_listings','field_61f1320446ab2'),(207905,40896,'fft_page_format','default'),(207906,40896,'_fft_page_format','field_61ae213f1f218'),(207907,40896,'fft_hide_nav','0'),(207908,40896,'_fft_hide_nav','field_635bd5e43527c'),(207909,40896,'fft_hide_header_call_to_action','0'),(207910,40896,'_fft_hide_header_call_to_action','field_635bd6723527d'),(207911,40896,'fft_page_sitemap','0'),(207912,40896,'_fft_page_sitemap','field_61af9b34e8181'),(207913,40896,'blocks_0_acfe_flexible_toggle',''),(207914,40896,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(207915,40896,'blocks_0_acfe_flexible_layout_title','Template'),(207916,40896,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(207917,40896,'blocks_0_template','39087'),(207918,40896,'_blocks_0_template','field_617bdd570fe01'),(207919,40896,'blocks_1_acfe_flexible_toggle',''),(207920,40896,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(207921,40896,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(207922,40896,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(207923,40896,'blocks_1_options_theme','#ffffff'),(207924,40896,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(207925,40896,'blocks_1_options_reverse','0'),(207926,40896,'_blocks_1_options_reverse','field_61768049bb8ac'),(207927,40896,'blocks_1_options',''),(207928,40896,'_blocks_1_options','field_617682517c334'),(207929,40896,'blocks_1_split_5050_image','40615'),(207930,40896,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(207931,40896,'blocks_1_split_5050_video',''),(207932,40896,'_blocks_1_split_5050_video','field_6239f3160848a'),(207933,40896,'blocks_1_split_5050_content_title',''),(207934,40896,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(207935,40896,'blocks_1_split_5050_content_heading','Overview'),(207936,40896,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(207937,40896,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.'),(207938,40896,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(207939,40896,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207940,40896,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(207941,40896,'blocks_1_split_5050_content_actions','1'),(207942,40896,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(207943,40896,'blocks_1_split_5050_content',''),(207944,40896,'_blocks_1_split_5050_content','field_61767afceb8ba'),(207945,40896,'blocks','a:4:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:13:\"step_timeline\";}'),(207946,40896,'_blocks','field_6176696113096'),(207947,40896,'course_label_text',''),(207948,40896,'_course_label_text','field_61e17babf71fa'),(207949,40896,'course_label',''),(207950,40896,'_course_label','field_61e12f92749a7'),(207951,40896,'course_description',''),(207952,40896,'_course_description','field_617ac5788e5e1'),(207953,40896,'course_key_info',''),(207954,40896,'_course_key_info','field_617ac6ad8e5e2'),(207955,40896,'course_included',''),(207956,40896,'_course_included','field_617ac6f08e5e4'),(207957,40896,'blocks_2_acfe_flexible_toggle',''),(207958,40896,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(207959,40896,'blocks_2_acfe_flexible_layout_title','Video'),(207960,40896,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(207961,40896,'blocks_2_size','large'),(207962,40896,'_blocks_2_size','field_6487038f297c1'),(207963,40896,'blocks_2_row_content_title',''),(207964,40896,'_blocks_2_row_content_title','field_64870132a865d'),(207965,40896,'blocks_2_row_content_heading','Video of Intro to IMoveFreely Instructor workshop:'),(207966,40896,'_blocks_2_row_content_heading','field_64870142a865e'),(207967,40896,'blocks_2_row_content_text',''),(207968,40896,'_blocks_2_row_content_text','field_64870148a865f'),(207969,40896,'blocks_2_row_content',''),(207970,40896,'_blocks_2_row_content','field_6487008ba865c'),(207971,40896,'blocks_2_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(207972,40896,'_blocks_2_video_src','field_6193c4a98ec07'),(207973,40896,'blocks_2_video_thumbnail',''),(207974,40896,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(207975,40896,'blocks_3_acfe_flexible_toggle',''),(207976,40896,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(207977,40896,'blocks_3_acfe_flexible_layout_title','Timeline'),(207978,40896,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(207979,40896,'blocks_3_options_theme','#ffffff'),(207980,40896,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(207981,40896,'blocks_3_options',''),(207982,40896,'_blocks_3_options','field_6177de53d1195'),(207983,40896,'blocks_3_timeline_content_title',''),(207984,40896,'_blocks_3_timeline_content_title','field_6177de53d1198'),(207985,40896,'blocks_3_timeline_content_heading','Who is the course suitable for? '),(207986,40896,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(207987,40896,'blocks_3_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(207988,40896,'_blocks_3_timeline_content_text','field_6177de53d119a'),(207989,40896,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(207990,40896,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(207991,40896,'blocks_3_timeline_content_actions','1'),(207992,40896,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(207993,40896,'blocks_3_timeline_content',''),(207994,40896,'_blocks_3_timeline_content','field_6177de53d1197'),(207995,40896,'blocks_3_timeline_items_0_title','Benefits'),(207996,40896,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(207997,40896,'blocks_3_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(207998,40896,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(207999,40896,'blocks_3_timeline_items_1_title','Curriculum Highlights'),(208000,40896,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(208001,40896,'blocks_3_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(208002,40896,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(208003,40896,'blocks_3_timeline_items_2_title','What pre-qualifications are required?'),(208004,40896,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(208005,40896,'blocks_3_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(208006,40896,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(208007,40896,'blocks_3_timeline_items','3'),(208008,40896,'_blocks_3_timeline_items','field_6177de53d119d'),(208041,40897,'hide_hero','0'),(208042,40897,'_hide_hero','field_66a2380fcda39'),(208043,40897,'hero_title','IMoveFreely Instructor Programme Workshop'),(208044,40897,'_hero_title','field_617571fe285e8'),(208045,40897,'hero_text',''),(208046,40897,'_hero_text','field_6175723c285e9'),(208047,40897,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208048,40897,'_hero_actions_0_button','field_61757281285eb'),(208049,40897,'hero_actions','1'),(208050,40897,'_hero_actions','field_61757270285ea'),(208051,40897,'hero_style','default'),(208052,40897,'_hero_style','field_62051d9dc5324'),(208053,40897,'_thumbnail_id','40893'),(208054,40897,'__thumbnail_id','field_617570855ddaf'),(208055,40897,'hero_image_pos_x','right'),(208056,40897,'_hero_image_pos_x','field_62ec3d05390bb'),(208057,40897,'hero_image_pos_y','top'),(208058,40897,'_hero_image_pos_y','field_62ec3d05390bc'),(208059,40897,'hero_image_pos',''),(208060,40897,'_hero_image_pos','field_62ec3d05390ba'),(208061,40897,'fft_hide_from_listings','0'),(208062,40897,'_fft_hide_from_listings','field_61f1320446ab2'),(208063,40897,'fft_page_format','default'),(208064,40897,'_fft_page_format','field_61ae213f1f218'),(208065,40897,'fft_hide_nav','0'),(208066,40897,'_fft_hide_nav','field_635bd5e43527c'),(208067,40897,'fft_hide_header_call_to_action','0'),(208068,40897,'_fft_hide_header_call_to_action','field_635bd6723527d'),(208069,40897,'fft_page_sitemap','0'),(208070,40897,'_fft_page_sitemap','field_61af9b34e8181'),(208071,40897,'blocks_0_acfe_flexible_toggle',''),(208072,40897,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(208073,40897,'blocks_0_acfe_flexible_layout_title','Template'),(208074,40897,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(208075,40897,'blocks_0_template','39087'),(208076,40897,'_blocks_0_template','field_617bdd570fe01'),(208077,40897,'blocks_1_acfe_flexible_toggle',''),(208078,40897,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(208079,40897,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(208080,40897,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(208081,40897,'blocks_1_options_theme','#ffffff'),(208082,40897,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(208083,40897,'blocks_1_options_reverse','0'),(208084,40897,'_blocks_1_options_reverse','field_61768049bb8ac'),(208085,40897,'blocks_1_options',''),(208086,40897,'_blocks_1_options','field_617682517c334'),(208087,40897,'blocks_1_split_5050_image','40615'),(208088,40897,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(208089,40897,'blocks_1_split_5050_video',''),(208090,40897,'_blocks_1_split_5050_video','field_6239f3160848a'),(208091,40897,'blocks_1_split_5050_content_title',''),(208092,40897,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(208093,40897,'blocks_1_split_5050_content_heading','Overview'),(208094,40897,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(208095,40897,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.'),(208096,40897,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(208097,40897,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208098,40897,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(208099,40897,'blocks_1_split_5050_content_actions','1'),(208100,40897,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(208101,40897,'blocks_1_split_5050_content',''),(208102,40897,'_blocks_1_split_5050_content','field_61767afceb8ba'),(208103,40897,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:11:\"promo_panel\";}'),(208104,40897,'_blocks','field_6176696113096'),(208105,40897,'course_label_text',''),(208106,40897,'_course_label_text','field_61e17babf71fa'),(208107,40897,'course_label',''),(208108,40897,'_course_label','field_61e12f92749a7'),(208109,40897,'course_description',''),(208110,40897,'_course_description','field_617ac5788e5e1'),(208111,40897,'course_key_info',''),(208112,40897,'_course_key_info','field_617ac6ad8e5e2'),(208113,40897,'course_included',''),(208114,40897,'_course_included','field_617ac6f08e5e4'),(208115,40897,'blocks_2_acfe_flexible_toggle',''),(208116,40897,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(208117,40897,'blocks_2_acfe_flexible_layout_title','Video'),(208118,40897,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(208119,40897,'blocks_2_size','large'),(208120,40897,'_blocks_2_size','field_6487038f297c1'),(208121,40897,'blocks_2_row_content_title',''),(208122,40897,'_blocks_2_row_content_title','field_64870132a865d'),(208123,40897,'blocks_2_row_content_heading','Video of Intro to IMoveFreely Instructor workshop:'),(208124,40897,'_blocks_2_row_content_heading','field_64870142a865e'),(208125,40897,'blocks_2_row_content_text',''),(208126,40897,'_blocks_2_row_content_text','field_64870148a865f'),(208127,40897,'blocks_2_row_content',''),(208128,40897,'_blocks_2_row_content','field_6487008ba865c'),(208129,40897,'blocks_2_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(208130,40897,'_blocks_2_video_src','field_6193c4a98ec07'),(208131,40897,'blocks_2_video_thumbnail',''),(208132,40897,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(208133,40897,'blocks_3_acfe_flexible_toggle',''),(208134,40897,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(208135,40897,'blocks_3_acfe_flexible_layout_title','Timeline'),(208136,40897,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(208137,40897,'blocks_3_options_theme','#ffffff'),(208138,40897,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(208139,40897,'blocks_3_options',''),(208140,40897,'_blocks_3_options','field_6177de53d1195'),(208141,40897,'blocks_3_timeline_content_title',''),(208142,40897,'_blocks_3_timeline_content_title','field_6177de53d1198'),(208143,40897,'blocks_3_timeline_content_heading','Who is the course suitable for? '),(208144,40897,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(208145,40897,'blocks_3_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(208146,40897,'_blocks_3_timeline_content_text','field_6177de53d119a'),(208147,40897,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208148,40897,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(208149,40897,'blocks_3_timeline_content_actions','1'),(208150,40897,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(208151,40897,'blocks_3_timeline_content',''),(208152,40897,'_blocks_3_timeline_content','field_6177de53d1197'),(208153,40897,'blocks_3_timeline_items_0_title','Benefits'),(208154,40897,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(208155,40897,'blocks_3_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(208156,40897,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(208157,40897,'blocks_3_timeline_items_1_title','Curriculum Highlights'),(208158,40897,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(208159,40897,'blocks_3_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(208160,40897,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(208161,40897,'blocks_3_timeline_items_2_title','What pre-qualifications are required?'),(208162,40897,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(208163,40897,'blocks_3_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(208164,40897,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(208165,40897,'blocks_3_timeline_items','3'),(208166,40897,'_blocks_3_timeline_items','field_6177de53d119d'),(208167,40897,'blocks_4_acfe_flexible_toggle',''),(208168,40897,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(208169,40897,'blocks_4_acfe_flexible_layout_title','Text Block'),(208170,40897,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(208171,40897,'blocks_4_options_theme','#f5f5f5'),(208172,40897,'_blocks_4_options_theme','field_6176830e2ad17'),(208173,40897,'blocks_4_options',''),(208174,40897,'_blocks_4_options','field_6176830e2ad16'),(208175,40897,'blocks_4_text_block_heading','Course details'),(208176,40897,'_blocks_4_text_block_heading','field_617669d413097'),(208177,40897,'blocks_4_text_block_content','There will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(208178,40897,'_blocks_4_text_block_content','field_617669ec13098'),(208179,40897,'blocks_5_acfe_flexible_toggle',''),(208180,40897,'_blocks_5_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(208181,40897,'blocks_5_acfe_flexible_layout_title','Promo Panel'),(208182,40897,'_blocks_5_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(208183,40897,'blocks_5_options_alignment','center'),(208184,40897,'_blocks_5_options_alignment','field_61769449f5490'),(208185,40897,'blocks_5_options',''),(208186,40897,'_blocks_5_options','field_617693e1428f0'),(208187,40897,'blocks_5_promo_panel_image','40615'),(208188,40897,'_blocks_5_promo_panel_image','field_617693e1428f3'),(208189,40897,'blocks_5_promo_panel_content_heading','Testimonial'),(208190,40897,'_blocks_5_promo_panel_content_heading','field_617693e1428f6'),(208191,40897,'blocks_5_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!” Jayne Nicholls Director Group X Training Ltd.\"'),(208192,40897,'_blocks_5_promo_panel_content_text','field_617693e1428f7'),(208193,40897,'blocks_5_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208194,40897,'_blocks_5_promo_panel_content_actions_0_button','field_617693e1428f9'),(208195,40897,'blocks_5_promo_panel_content_actions','1'),(208196,40897,'_blocks_5_promo_panel_content_actions','field_617693e1428f8'),(208197,40897,'blocks_5_promo_panel_content',''),(208198,40897,'_blocks_5_promo_panel_content','field_617693e1428f4'),(208357,40899,'hide_hero','0'),(208358,40899,'_hide_hero','field_66a2380fcda39'),(208359,40899,'hero_title','IMoveFreely Instructor Programme Workshop'),(208360,40899,'_hero_title','field_617571fe285e8'),(208361,40899,'hero_text',''),(208362,40899,'_hero_text','field_6175723c285e9'),(208363,40899,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208364,40899,'_hero_actions_0_button','field_61757281285eb'),(208365,40899,'hero_actions','1'),(208366,40899,'_hero_actions','field_61757270285ea'),(208367,40899,'hero_style','default'),(208368,40899,'_hero_style','field_62051d9dc5324'),(208369,40899,'_thumbnail_id','40893'),(208370,40899,'__thumbnail_id','field_617570855ddaf'),(208371,40899,'hero_image_pos_x','right'),(208372,40899,'_hero_image_pos_x','field_62ec3d05390bb'),(208373,40899,'hero_image_pos_y','top'),(208374,40899,'_hero_image_pos_y','field_62ec3d05390bc'),(208375,40899,'hero_image_pos',''),(208376,40899,'_hero_image_pos','field_62ec3d05390ba'),(208377,40899,'fft_hide_from_listings','0'),(208378,40899,'_fft_hide_from_listings','field_61f1320446ab2'),(208379,40899,'fft_page_format','default'),(208380,40899,'_fft_page_format','field_61ae213f1f218'),(208381,40899,'fft_hide_nav','0'),(208382,40899,'_fft_hide_nav','field_635bd5e43527c'),(208383,40899,'fft_hide_header_call_to_action','0'),(208384,40899,'_fft_hide_header_call_to_action','field_635bd6723527d'),(208385,40899,'fft_page_sitemap','0'),(208386,40899,'_fft_page_sitemap','field_61af9b34e8181'),(208387,40899,'blocks_0_acfe_flexible_toggle',''),(208388,40899,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(208389,40899,'blocks_0_acfe_flexible_layout_title','Template'),(208390,40899,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(208391,40899,'blocks_0_template','39087'),(208392,40899,'_blocks_0_template','field_617bdd570fe01'),(208393,40899,'blocks_1_acfe_flexible_toggle',''),(208394,40899,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(208395,40899,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(208396,40899,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(208397,40899,'blocks_1_options_theme','#ffffff'),(208398,40899,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(208399,40899,'blocks_1_options_reverse','0'),(208400,40899,'_blocks_1_options_reverse','field_61768049bb8ac'),(208401,40899,'blocks_1_options',''),(208402,40899,'_blocks_1_options','field_617682517c334'),(208403,40899,'blocks_1_split_5050_image','40615'),(208404,40899,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(208405,40899,'blocks_1_split_5050_video',''),(208406,40899,'_blocks_1_split_5050_video','field_6239f3160848a'),(208407,40899,'blocks_1_split_5050_content_title',''),(208408,40899,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(208409,40899,'blocks_1_split_5050_content_heading','Overview'),(208410,40899,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(208411,40899,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.'),(208412,40899,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(208413,40899,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208414,40899,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(208415,40899,'blocks_1_split_5050_content_actions','1'),(208416,40899,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(208417,40899,'blocks_1_split_5050_content',''),(208418,40899,'_blocks_1_split_5050_content','field_61767afceb8ba'),(208419,40899,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:11:\"promo_panel\";}'),(208420,40899,'_blocks','field_6176696113096'),(208421,40899,'course_label_text',''),(208422,40899,'_course_label_text','field_61e17babf71fa'),(208423,40899,'course_label',''),(208424,40899,'_course_label','field_61e12f92749a7'),(208425,40899,'course_description',''),(208426,40899,'_course_description','field_617ac5788e5e1'),(208427,40899,'course_key_info',''),(208428,40899,'_course_key_info','field_617ac6ad8e5e2'),(208429,40899,'course_included',''),(208430,40899,'_course_included','field_617ac6f08e5e4'),(208431,40899,'blocks_2_acfe_flexible_toggle',''),(208432,40899,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(208433,40899,'blocks_2_acfe_flexible_layout_title','Video'),(208434,40899,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(208435,40899,'blocks_2_size','large'),(208436,40899,'_blocks_2_size','field_6487038f297c1'),(208437,40899,'blocks_2_row_content_title',''),(208438,40899,'_blocks_2_row_content_title','field_64870132a865d'),(208439,40899,'blocks_2_row_content_heading','Intro to IMoveFreely Instructor workshop'),(208440,40899,'_blocks_2_row_content_heading','field_64870142a865e'),(208441,40899,'blocks_2_row_content_text',''),(208442,40899,'_blocks_2_row_content_text','field_64870148a865f'),(208443,40899,'blocks_2_row_content',''),(208444,40899,'_blocks_2_row_content','field_6487008ba865c'),(208445,40899,'blocks_2_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(208446,40899,'_blocks_2_video_src','field_6193c4a98ec07'),(208447,40899,'blocks_2_video_thumbnail',''),(208448,40899,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(208449,40899,'blocks_3_acfe_flexible_toggle',''),(208450,40899,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(208451,40899,'blocks_3_acfe_flexible_layout_title','Timeline'),(208452,40899,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(208453,40899,'blocks_3_options_theme','#ffffff'),(208454,40899,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(208455,40899,'blocks_3_options',''),(208456,40899,'_blocks_3_options','field_6177de53d1195'),(208457,40899,'blocks_3_timeline_content_title',''),(208458,40899,'_blocks_3_timeline_content_title','field_6177de53d1198'),(208459,40899,'blocks_3_timeline_content_heading','Who is the course suitable for? '),(208460,40899,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(208461,40899,'blocks_3_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(208462,40899,'_blocks_3_timeline_content_text','field_6177de53d119a'),(208463,40899,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208464,40899,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(208465,40899,'blocks_3_timeline_content_actions','1'),(208466,40899,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(208467,40899,'blocks_3_timeline_content',''),(208468,40899,'_blocks_3_timeline_content','field_6177de53d1197'),(208469,40899,'blocks_3_timeline_items_0_title','Benefits'),(208470,40899,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(208471,40899,'blocks_3_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(208472,40899,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(208473,40899,'blocks_3_timeline_items_1_title','Curriculum Highlights'),(208474,40899,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(208475,40899,'blocks_3_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(208476,40899,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(208477,40899,'blocks_3_timeline_items_2_title','What pre-qualifications are required?'),(208478,40899,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(208479,40899,'blocks_3_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(208480,40899,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(208481,40899,'blocks_3_timeline_items','3'),(208482,40899,'_blocks_3_timeline_items','field_6177de53d119d'),(208483,40899,'blocks_4_acfe_flexible_toggle',''),(208484,40899,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(208485,40899,'blocks_4_acfe_flexible_layout_title','Text Block'),(208486,40899,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(208487,40899,'blocks_4_options_theme','#f5f5f5'),(208488,40899,'_blocks_4_options_theme','field_6176830e2ad17'),(208489,40899,'blocks_4_options',''),(208490,40899,'_blocks_4_options','field_6176830e2ad16'),(208491,40899,'blocks_4_text_block_heading','Course details'),(208492,40899,'_blocks_4_text_block_heading','field_617669d413097'),(208493,40899,'blocks_4_text_block_content','There will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(208494,40899,'_blocks_4_text_block_content','field_617669ec13098'),(208495,40899,'blocks_5_acfe_flexible_toggle',''),(208496,40899,'_blocks_5_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(208497,40899,'blocks_5_acfe_flexible_layout_title','Promo Panel'),(208498,40899,'_blocks_5_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(208499,40899,'blocks_5_options_alignment','center'),(208500,40899,'_blocks_5_options_alignment','field_61769449f5490'),(208501,40899,'blocks_5_options',''),(208502,40899,'_blocks_5_options','field_617693e1428f0'),(208503,40899,'blocks_5_promo_panel_image','40615'),(208504,40899,'_blocks_5_promo_panel_image','field_617693e1428f3'),(208505,40899,'blocks_5_promo_panel_content_heading','Testimonial'),(208506,40899,'_blocks_5_promo_panel_content_heading','field_617693e1428f6'),(208507,40899,'blocks_5_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!” Jayne Nicholls Director Group X Training Ltd.\"'),(208508,40899,'_blocks_5_promo_panel_content_text','field_617693e1428f7'),(208509,40899,'blocks_5_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208510,40899,'_blocks_5_promo_panel_content_actions_0_button','field_617693e1428f9'),(208511,40899,'blocks_5_promo_panel_content_actions','1'),(208512,40899,'_blocks_5_promo_panel_content_actions','field_617693e1428f8'),(208513,40899,'blocks_5_promo_panel_content',''),(208514,40899,'_blocks_5_promo_panel_content','field_617693e1428f4'),(208515,40900,'hide_hero','0'),(208516,40900,'_hide_hero','field_66a2380fcda39'),(208517,40900,'hero_title','IMoveFreely Instructor Programme Workshop'),(208518,40900,'_hero_title','field_617571fe285e8'),(208519,40900,'hero_text',''),(208520,40900,'_hero_text','field_6175723c285e9'),(208521,40900,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208522,40900,'_hero_actions_0_button','field_61757281285eb'),(208523,40900,'hero_actions','1'),(208524,40900,'_hero_actions','field_61757270285ea'),(208525,40900,'hero_style','default'),(208526,40900,'_hero_style','field_62051d9dc5324'),(208527,40900,'_thumbnail_id','40893'),(208528,40900,'__thumbnail_id','field_617570855ddaf'),(208529,40900,'hero_image_pos_x','right'),(208530,40900,'_hero_image_pos_x','field_62ec3d05390bb'),(208531,40900,'hero_image_pos_y','top'),(208532,40900,'_hero_image_pos_y','field_62ec3d05390bc'),(208533,40900,'hero_image_pos',''),(208534,40900,'_hero_image_pos','field_62ec3d05390ba'),(208535,40900,'fft_hide_from_listings','0'),(208536,40900,'_fft_hide_from_listings','field_61f1320446ab2'),(208537,40900,'fft_page_format','default'),(208538,40900,'_fft_page_format','field_61ae213f1f218'),(208539,40900,'fft_hide_nav','0'),(208540,40900,'_fft_hide_nav','field_635bd5e43527c'),(208541,40900,'fft_hide_header_call_to_action','0'),(208542,40900,'_fft_hide_header_call_to_action','field_635bd6723527d'),(208543,40900,'fft_page_sitemap','0'),(208544,40900,'_fft_page_sitemap','field_61af9b34e8181'),(208545,40900,'blocks_0_acfe_flexible_toggle',''),(208546,40900,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(208547,40900,'blocks_0_acfe_flexible_layout_title','Template'),(208548,40900,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(208549,40900,'blocks_0_template','39087'),(208550,40900,'_blocks_0_template','field_617bdd570fe01'),(208551,40900,'blocks_1_acfe_flexible_toggle',''),(208552,40900,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(208553,40900,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(208554,40900,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(208555,40900,'blocks_1_options_theme','#ffffff'),(208556,40900,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(208557,40900,'blocks_1_options_reverse','0'),(208558,40900,'_blocks_1_options_reverse','field_61768049bb8ac'),(208559,40900,'blocks_1_options',''),(208560,40900,'_blocks_1_options','field_617682517c334'),(208561,40900,'blocks_1_split_5050_image','40615'),(208562,40900,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(208563,40900,'blocks_1_split_5050_video',''),(208564,40900,'_blocks_1_split_5050_video','field_6239f3160848a'),(208565,40900,'blocks_1_split_5050_content_title',''),(208566,40900,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(208567,40900,'blocks_1_split_5050_content_heading','Overview'),(208568,40900,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(208569,40900,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n<h4>Course details</h4>\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(208570,40900,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(208571,40900,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208572,40900,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(208573,40900,'blocks_1_split_5050_content_actions','1'),(208574,40900,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(208575,40900,'blocks_1_split_5050_content',''),(208576,40900,'_blocks_1_split_5050_content','field_61767afceb8ba'),(208577,40900,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:11:\"promo_panel\";}'),(208578,40900,'_blocks','field_6176696113096'),(208579,40900,'course_label_text',''),(208580,40900,'_course_label_text','field_61e17babf71fa'),(208581,40900,'course_label',''),(208582,40900,'_course_label','field_61e12f92749a7'),(208583,40900,'course_description',''),(208584,40900,'_course_description','field_617ac5788e5e1'),(208585,40900,'course_key_info',''),(208586,40900,'_course_key_info','field_617ac6ad8e5e2'),(208587,40900,'course_included',''),(208588,40900,'_course_included','field_617ac6f08e5e4'),(208589,40900,'blocks_2_acfe_flexible_toggle',''),(208590,40900,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(208591,40900,'blocks_2_acfe_flexible_layout_title','Video'),(208592,40900,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(208593,40900,'blocks_2_size','large'),(208594,40900,'_blocks_2_size','field_6487038f297c1'),(208595,40900,'blocks_2_row_content_title',''),(208596,40900,'_blocks_2_row_content_title','field_64870132a865d'),(208597,40900,'blocks_2_row_content_heading','Intro to IMoveFreely Instructor workshop'),(208598,40900,'_blocks_2_row_content_heading','field_64870142a865e'),(208599,40900,'blocks_2_row_content_text',''),(208600,40900,'_blocks_2_row_content_text','field_64870148a865f'),(208601,40900,'blocks_2_row_content',''),(208602,40900,'_blocks_2_row_content','field_6487008ba865c'),(208603,40900,'blocks_2_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(208604,40900,'_blocks_2_video_src','field_6193c4a98ec07'),(208605,40900,'blocks_2_video_thumbnail',''),(208606,40900,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(208607,40900,'blocks_3_acfe_flexible_toggle',''),(208608,40900,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(208609,40900,'blocks_3_acfe_flexible_layout_title','Timeline'),(208610,40900,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(208611,40900,'blocks_3_options_theme','#ffffff'),(208612,40900,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(208613,40900,'blocks_3_options',''),(208614,40900,'_blocks_3_options','field_6177de53d1195'),(208615,40900,'blocks_3_timeline_content_title',''),(208616,40900,'_blocks_3_timeline_content_title','field_6177de53d1198'),(208617,40900,'blocks_3_timeline_content_heading','Who is the course suitable for? '),(208618,40900,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(208619,40900,'blocks_3_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(208620,40900,'_blocks_3_timeline_content_text','field_6177de53d119a'),(208621,40900,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208622,40900,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(208623,40900,'blocks_3_timeline_content_actions','1'),(208624,40900,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(208625,40900,'blocks_3_timeline_content',''),(208626,40900,'_blocks_3_timeline_content','field_6177de53d1197'),(208627,40900,'blocks_3_timeline_items_0_title','Benefits'),(208628,40900,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(208629,40900,'blocks_3_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(208630,40900,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(208631,40900,'blocks_3_timeline_items_1_title','Curriculum Highlights'),(208632,40900,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(208633,40900,'blocks_3_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(208634,40900,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(208635,40900,'blocks_3_timeline_items_2_title','What pre-qualifications are required?'),(208636,40900,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(208637,40900,'blocks_3_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(208638,40900,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(208639,40900,'blocks_3_timeline_items','3'),(208640,40900,'_blocks_3_timeline_items','field_6177de53d119d'),(208641,40900,'blocks_4_acfe_flexible_toggle',''),(208642,40900,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(208643,40900,'blocks_4_acfe_flexible_layout_title','Text Block'),(208644,40900,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(208645,40900,'blocks_4_options_theme','#f5f5f5'),(208646,40900,'_blocks_4_options_theme','field_6176830e2ad17'),(208647,40900,'blocks_4_options',''),(208648,40900,'_blocks_4_options','field_6176830e2ad16'),(208649,40900,'blocks_4_text_block_heading','Course details'),(208650,40900,'_blocks_4_text_block_heading','field_617669d413097'),(208651,40900,'blocks_4_text_block_content','There will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(208652,40900,'_blocks_4_text_block_content','field_617669ec13098'),(208653,40900,'blocks_5_acfe_flexible_toggle',''),(208654,40900,'_blocks_5_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(208655,40900,'blocks_5_acfe_flexible_layout_title','Promo Panel'),(208656,40900,'_blocks_5_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(208657,40900,'blocks_5_options_alignment','center'),(208658,40900,'_blocks_5_options_alignment','field_61769449f5490'),(208659,40900,'blocks_5_options',''),(208660,40900,'_blocks_5_options','field_617693e1428f0'),(208661,40900,'blocks_5_promo_panel_image','40615'),(208662,40900,'_blocks_5_promo_panel_image','field_617693e1428f3'),(208663,40900,'blocks_5_promo_panel_content_heading','Testimonial'),(208664,40900,'_blocks_5_promo_panel_content_heading','field_617693e1428f6'),(208665,40900,'blocks_5_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!” Jayne Nicholls Director Group X Training Ltd.\"'),(208666,40900,'_blocks_5_promo_panel_content_text','field_617693e1428f7'),(208667,40900,'blocks_5_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208668,40900,'_blocks_5_promo_panel_content_actions_0_button','field_617693e1428f9'),(208669,40900,'blocks_5_promo_panel_content_actions','1'),(208670,40900,'_blocks_5_promo_panel_content_actions','field_617693e1428f8'),(208671,40900,'blocks_5_promo_panel_content',''),(208672,40900,'_blocks_5_promo_panel_content','field_617693e1428f4'),(208673,40901,'hide_hero','0'),(208674,40901,'_hide_hero','field_66a2380fcda39'),(208675,40901,'hero_title','IMoveFreely Instructor Programme Workshop'),(208676,40901,'_hero_title','field_617571fe285e8'),(208677,40901,'hero_text',''),(208678,40901,'_hero_text','field_6175723c285e9'),(208679,40901,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208680,40901,'_hero_actions_0_button','field_61757281285eb'),(208681,40901,'hero_actions','1'),(208682,40901,'_hero_actions','field_61757270285ea'),(208683,40901,'hero_style','default'),(208684,40901,'_hero_style','field_62051d9dc5324'),(208685,40901,'_thumbnail_id','40893'),(208686,40901,'__thumbnail_id','field_617570855ddaf'),(208687,40901,'hero_image_pos_x','right'),(208688,40901,'_hero_image_pos_x','field_62ec3d05390bb'),(208689,40901,'hero_image_pos_y','top'),(208690,40901,'_hero_image_pos_y','field_62ec3d05390bc'),(208691,40901,'hero_image_pos',''),(208692,40901,'_hero_image_pos','field_62ec3d05390ba'),(208693,40901,'fft_hide_from_listings','0'),(208694,40901,'_fft_hide_from_listings','field_61f1320446ab2'),(208695,40901,'fft_page_format','default'),(208696,40901,'_fft_page_format','field_61ae213f1f218'),(208697,40901,'fft_hide_nav','0'),(208698,40901,'_fft_hide_nav','field_635bd5e43527c'),(208699,40901,'fft_hide_header_call_to_action','0'),(208700,40901,'_fft_hide_header_call_to_action','field_635bd6723527d'),(208701,40901,'fft_page_sitemap','0'),(208702,40901,'_fft_page_sitemap','field_61af9b34e8181'),(208703,40901,'blocks_0_acfe_flexible_toggle',''),(208704,40901,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(208705,40901,'blocks_0_acfe_flexible_layout_title','Template'),(208706,40901,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(208707,40901,'blocks_0_template','39087'),(208708,40901,'_blocks_0_template','field_617bdd570fe01'),(208709,40901,'blocks_1_acfe_flexible_toggle',''),(208710,40901,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(208711,40901,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(208712,40901,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(208713,40901,'blocks_1_options_theme','#ffffff'),(208714,40901,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(208715,40901,'blocks_1_options_reverse','0'),(208716,40901,'_blocks_1_options_reverse','field_61768049bb8ac'),(208717,40901,'blocks_1_options',''),(208718,40901,'_blocks_1_options','field_617682517c334'),(208719,40901,'blocks_1_split_5050_image','40615'),(208720,40901,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(208721,40901,'blocks_1_split_5050_video',''),(208722,40901,'_blocks_1_split_5050_video','field_6239f3160848a'),(208723,40901,'blocks_1_split_5050_content_title',''),(208724,40901,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(208725,40901,'blocks_1_split_5050_content_heading','Overview'),(208726,40901,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(208727,40901,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(208728,40901,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(208729,40901,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208730,40901,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(208731,40901,'blocks_1_split_5050_content_actions','1'),(208732,40901,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(208733,40901,'blocks_1_split_5050_content',''),(208734,40901,'_blocks_1_split_5050_content','field_61767afceb8ba'),(208735,40901,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:11:\"promo_panel\";}'),(208736,40901,'_blocks','field_6176696113096'),(208737,40901,'course_label_text',''),(208738,40901,'_course_label_text','field_61e17babf71fa'),(208739,40901,'course_label',''),(208740,40901,'_course_label','field_61e12f92749a7'),(208741,40901,'course_description',''),(208742,40901,'_course_description','field_617ac5788e5e1'),(208743,40901,'course_key_info',''),(208744,40901,'_course_key_info','field_617ac6ad8e5e2'),(208745,40901,'course_included',''),(208746,40901,'_course_included','field_617ac6f08e5e4'),(208747,40901,'blocks_2_acfe_flexible_toggle',''),(208748,40901,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(208749,40901,'blocks_2_acfe_flexible_layout_title','Video'),(208750,40901,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(208751,40901,'blocks_2_size','large'),(208752,40901,'_blocks_2_size','field_6487038f297c1'),(208753,40901,'blocks_2_row_content_title',''),(208754,40901,'_blocks_2_row_content_title','field_64870132a865d'),(208755,40901,'blocks_2_row_content_heading','Intro to IMoveFreely Instructor workshop'),(208756,40901,'_blocks_2_row_content_heading','field_64870142a865e'),(208757,40901,'blocks_2_row_content_text',''),(208758,40901,'_blocks_2_row_content_text','field_64870148a865f'),(208759,40901,'blocks_2_row_content',''),(208760,40901,'_blocks_2_row_content','field_6487008ba865c'),(208761,40901,'blocks_2_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(208762,40901,'_blocks_2_video_src','field_6193c4a98ec07'),(208763,40901,'blocks_2_video_thumbnail',''),(208764,40901,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(208765,40901,'blocks_3_acfe_flexible_toggle',''),(208766,40901,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(208767,40901,'blocks_3_acfe_flexible_layout_title','Timeline'),(208768,40901,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(208769,40901,'blocks_3_options_theme','#ffffff'),(208770,40901,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(208771,40901,'blocks_3_options',''),(208772,40901,'_blocks_3_options','field_6177de53d1195'),(208773,40901,'blocks_3_timeline_content_title',''),(208774,40901,'_blocks_3_timeline_content_title','field_6177de53d1198'),(208775,40901,'blocks_3_timeline_content_heading','Who is the course suitable for? '),(208776,40901,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(208777,40901,'blocks_3_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(208778,40901,'_blocks_3_timeline_content_text','field_6177de53d119a'),(208779,40901,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208780,40901,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(208781,40901,'blocks_3_timeline_content_actions','1'),(208782,40901,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(208783,40901,'blocks_3_timeline_content',''),(208784,40901,'_blocks_3_timeline_content','field_6177de53d1197'),(208785,40901,'blocks_3_timeline_items_0_title','Benefits'),(208786,40901,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(208787,40901,'blocks_3_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(208788,40901,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(208789,40901,'blocks_3_timeline_items_1_title','Curriculum Highlights'),(208790,40901,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(208791,40901,'blocks_3_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(208792,40901,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(208793,40901,'blocks_3_timeline_items_2_title','What pre-qualifications are required?'),(208794,40901,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(208795,40901,'blocks_3_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(208796,40901,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(208797,40901,'blocks_3_timeline_items','3'),(208798,40901,'_blocks_3_timeline_items','field_6177de53d119d'),(208799,40901,'blocks_4_acfe_flexible_toggle',''),(208800,40901,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(208801,40901,'blocks_4_acfe_flexible_layout_title','Text Block'),(208802,40901,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(208803,40901,'blocks_4_options_theme','#f5f5f5'),(208804,40901,'_blocks_4_options_theme','field_6176830e2ad17'),(208805,40901,'blocks_4_options',''),(208806,40901,'_blocks_4_options','field_6176830e2ad16'),(208807,40901,'blocks_4_text_block_heading','Course details'),(208808,40901,'_blocks_4_text_block_heading','field_617669d413097'),(208809,40901,'blocks_4_text_block_content','There will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(208810,40901,'_blocks_4_text_block_content','field_617669ec13098'),(208811,40901,'blocks_5_acfe_flexible_toggle',''),(208812,40901,'_blocks_5_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(208813,40901,'blocks_5_acfe_flexible_layout_title','Promo Panel'),(208814,40901,'_blocks_5_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(208815,40901,'blocks_5_options_alignment','center'),(208816,40901,'_blocks_5_options_alignment','field_61769449f5490'),(208817,40901,'blocks_5_options',''),(208818,40901,'_blocks_5_options','field_617693e1428f0'),(208819,40901,'blocks_5_promo_panel_image','40615'),(208820,40901,'_blocks_5_promo_panel_image','field_617693e1428f3'),(208821,40901,'blocks_5_promo_panel_content_heading','Testimonial'),(208822,40901,'_blocks_5_promo_panel_content_heading','field_617693e1428f6'),(208823,40901,'blocks_5_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!” Jayne Nicholls Director Group X Training Ltd.\"'),(208824,40901,'_blocks_5_promo_panel_content_text','field_617693e1428f7'),(208825,40901,'blocks_5_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208826,40901,'_blocks_5_promo_panel_content_actions_0_button','field_617693e1428f9'),(208827,40901,'blocks_5_promo_panel_content_actions','1'),(208828,40901,'_blocks_5_promo_panel_content_actions','field_617693e1428f8'),(208829,40901,'blocks_5_promo_panel_content',''),(208830,40901,'_blocks_5_promo_panel_content','field_617693e1428f4'),(208851,40902,'hide_hero','0'),(208852,40902,'_hide_hero','field_66a2380fcda39'),(208853,40902,'hero_title','IMoveFreely Instructor Programme Workshop'),(208854,40902,'_hero_title','field_617571fe285e8'),(208855,40902,'hero_text',''),(208856,40902,'_hero_text','field_6175723c285e9'),(208857,40902,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208858,40902,'_hero_actions_0_button','field_61757281285eb'),(208859,40902,'hero_actions','1'),(208860,40902,'_hero_actions','field_61757270285ea'),(208861,40902,'hero_style','default'),(208862,40902,'_hero_style','field_62051d9dc5324'),(208863,40902,'_thumbnail_id','40893'),(208864,40902,'__thumbnail_id','field_617570855ddaf'),(208865,40902,'hero_image_pos_x','right'),(208866,40902,'_hero_image_pos_x','field_62ec3d05390bb'),(208867,40902,'hero_image_pos_y','top'),(208868,40902,'_hero_image_pos_y','field_62ec3d05390bc'),(208869,40902,'hero_image_pos',''),(208870,40902,'_hero_image_pos','field_62ec3d05390ba'),(208871,40902,'fft_hide_from_listings','0'),(208872,40902,'_fft_hide_from_listings','field_61f1320446ab2'),(208873,40902,'fft_page_format','default'),(208874,40902,'_fft_page_format','field_61ae213f1f218'),(208875,40902,'fft_hide_nav','0'),(208876,40902,'_fft_hide_nav','field_635bd5e43527c'),(208877,40902,'fft_hide_header_call_to_action','0'),(208878,40902,'_fft_hide_header_call_to_action','field_635bd6723527d'),(208879,40902,'fft_page_sitemap','0'),(208880,40902,'_fft_page_sitemap','field_61af9b34e8181'),(208881,40902,'blocks_0_acfe_flexible_toggle',''),(208882,40902,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(208883,40902,'blocks_0_acfe_flexible_layout_title','Template'),(208884,40902,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(208885,40902,'blocks_0_template','39087'),(208886,40902,'_blocks_0_template','field_617bdd570fe01'),(208887,40902,'blocks_1_acfe_flexible_toggle',''),(208888,40902,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(208889,40902,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(208890,40902,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(208891,40902,'blocks_1_options_theme','#ffffff'),(208892,40902,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(208893,40902,'blocks_1_options_reverse','0'),(208894,40902,'_blocks_1_options_reverse','field_61768049bb8ac'),(208895,40902,'blocks_1_options',''),(208896,40902,'_blocks_1_options','field_617682517c334'),(208897,40902,'blocks_1_split_5050_image','40615'),(208898,40902,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(208899,40902,'blocks_1_split_5050_video',''),(208900,40902,'_blocks_1_split_5050_video','field_6239f3160848a'),(208901,40902,'blocks_1_split_5050_content_title',''),(208902,40902,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(208903,40902,'blocks_1_split_5050_content_heading','Overview'),(208904,40902,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(208905,40902,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(208906,40902,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(208907,40902,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208908,40902,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(208909,40902,'blocks_1_split_5050_content_actions','1'),(208910,40902,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(208911,40902,'blocks_1_split_5050_content',''),(208912,40902,'_blocks_1_split_5050_content','field_61767afceb8ba'),(208913,40902,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:13:\"step_timeline\";i:4;s:11:\"promo_panel\";}'),(208914,40902,'_blocks','field_6176696113096'),(208915,40902,'course_label_text',''),(208916,40902,'_course_label_text','field_61e17babf71fa'),(208917,40902,'course_label',''),(208918,40902,'_course_label','field_61e12f92749a7'),(208919,40902,'course_description',''),(208920,40902,'_course_description','field_617ac5788e5e1'),(208921,40902,'course_key_info',''),(208922,40902,'_course_key_info','field_617ac6ad8e5e2'),(208923,40902,'course_included',''),(208924,40902,'_course_included','field_617ac6f08e5e4'),(208925,40902,'blocks_2_acfe_flexible_toggle',''),(208926,40902,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(208927,40902,'blocks_2_acfe_flexible_layout_title','Video'),(208928,40902,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(208929,40902,'blocks_2_size','large'),(208930,40902,'_blocks_2_size','field_6487038f297c1'),(208931,40902,'blocks_2_row_content_title',''),(208932,40902,'_blocks_2_row_content_title','field_64870132a865d'),(208933,40902,'blocks_2_row_content_heading','Intro to IMoveFreely Instructor workshop'),(208934,40902,'_blocks_2_row_content_heading','field_64870142a865e'),(208935,40902,'blocks_2_row_content_text',''),(208936,40902,'_blocks_2_row_content_text','field_64870148a865f'),(208937,40902,'blocks_2_row_content',''),(208938,40902,'_blocks_2_row_content','field_6487008ba865c'),(208939,40902,'blocks_2_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(208940,40902,'_blocks_2_video_src','field_6193c4a98ec07'),(208941,40902,'blocks_2_video_thumbnail',''),(208942,40902,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(208943,40902,'blocks_3_acfe_flexible_toggle',''),(208944,40902,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(208945,40902,'blocks_3_acfe_flexible_layout_title','Timeline'),(208946,40902,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(208947,40902,'blocks_3_options_theme','#ffffff'),(208948,40902,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(208949,40902,'blocks_3_options',''),(208950,40902,'_blocks_3_options','field_6177de53d1195'),(208951,40902,'blocks_3_timeline_content_title',''),(208952,40902,'_blocks_3_timeline_content_title','field_6177de53d1198'),(208953,40902,'blocks_3_timeline_content_heading','Who is the course suitable for? '),(208954,40902,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(208955,40902,'blocks_3_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(208956,40902,'_blocks_3_timeline_content_text','field_6177de53d119a'),(208957,40902,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208958,40902,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(208959,40902,'blocks_3_timeline_content_actions','1'),(208960,40902,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(208961,40902,'blocks_3_timeline_content',''),(208962,40902,'_blocks_3_timeline_content','field_6177de53d1197'),(208963,40902,'blocks_3_timeline_items_0_title','Benefits'),(208964,40902,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(208965,40902,'blocks_3_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(208966,40902,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(208967,40902,'blocks_3_timeline_items_1_title','Curriculum Highlights'),(208968,40902,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(208969,40902,'blocks_3_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(208970,40902,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(208971,40902,'blocks_3_timeline_items_2_title','What pre-qualifications are required?'),(208972,40902,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(208973,40902,'blocks_3_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(208974,40902,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(208975,40902,'blocks_3_timeline_items','3'),(208976,40902,'_blocks_3_timeline_items','field_6177de53d119d'),(208977,40902,'blocks_4_acfe_flexible_toggle',''),(208978,40902,'_blocks_4_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(208979,40902,'blocks_4_acfe_flexible_layout_title','Promo Panel'),(208980,40902,'_blocks_4_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(208981,40902,'blocks_4_options_alignment','center'),(208982,40902,'_blocks_4_options_alignment','field_61769449f5490'),(208983,40902,'blocks_4_options',''),(208984,40902,'_blocks_4_options','field_617693e1428f0'),(208985,40902,'blocks_4_promo_panel_image','40615'),(208986,40902,'_blocks_4_promo_panel_image','field_617693e1428f3'),(208987,40902,'blocks_4_promo_panel_content_heading','Testimonial'),(208988,40902,'_blocks_4_promo_panel_content_heading','field_617693e1428f6'),(208989,40902,'blocks_4_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!” Jayne Nicholls Director Group X Training Ltd.\"'),(208990,40902,'_blocks_4_promo_panel_content_text','field_617693e1428f7'),(208991,40902,'blocks_4_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(208992,40902,'_blocks_4_promo_panel_content_actions_0_button','field_617693e1428f9'),(208993,40902,'blocks_4_promo_panel_content_actions','1'),(208994,40902,'_blocks_4_promo_panel_content_actions','field_617693e1428f8'),(208995,40902,'blocks_4_promo_panel_content',''),(208996,40902,'_blocks_4_promo_panel_content','field_617693e1428f4'),(209025,40903,'hide_hero','0'),(209026,40903,'_hide_hero','field_66a2380fcda39'),(209027,40903,'hero_title','IMoveFreely Instructor Programme Workshop'),(209028,40903,'_hero_title','field_617571fe285e8'),(209029,40903,'hero_text',''),(209030,40903,'_hero_text','field_6175723c285e9'),(209031,40903,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(209032,40903,'_hero_actions_0_button','field_61757281285eb'),(209033,40903,'hero_actions','1'),(209034,40903,'_hero_actions','field_61757270285ea'),(209035,40903,'hero_style','default'),(209036,40903,'_hero_style','field_62051d9dc5324'),(209037,40903,'_thumbnail_id','40893'),(209038,40903,'__thumbnail_id','field_617570855ddaf'),(209039,40903,'hero_image_pos_x','right'),(209040,40903,'_hero_image_pos_x','field_62ec3d05390bb'),(209041,40903,'hero_image_pos_y','top'),(209042,40903,'_hero_image_pos_y','field_62ec3d05390bc'),(209043,40903,'hero_image_pos',''),(209044,40903,'_hero_image_pos','field_62ec3d05390ba'),(209045,40903,'fft_hide_from_listings','0'),(209046,40903,'_fft_hide_from_listings','field_61f1320446ab2'),(209047,40903,'fft_page_format','default'),(209048,40903,'_fft_page_format','field_61ae213f1f218'),(209049,40903,'fft_hide_nav','0'),(209050,40903,'_fft_hide_nav','field_635bd5e43527c'),(209051,40903,'fft_hide_header_call_to_action','0'),(209052,40903,'_fft_hide_header_call_to_action','field_635bd6723527d'),(209053,40903,'fft_page_sitemap','0'),(209054,40903,'_fft_page_sitemap','field_61af9b34e8181'),(209055,40903,'blocks_0_acfe_flexible_toggle',''),(209056,40903,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(209057,40903,'blocks_0_acfe_flexible_layout_title','Template'),(209058,40903,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(209059,40903,'blocks_0_template','39087'),(209060,40903,'_blocks_0_template','field_617bdd570fe01'),(209061,40903,'blocks_1_acfe_flexible_toggle',''),(209062,40903,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(209063,40903,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(209064,40903,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(209065,40903,'blocks_1_options_theme','#ffffff'),(209066,40903,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(209067,40903,'blocks_1_options_reverse','0'),(209068,40903,'_blocks_1_options_reverse','field_61768049bb8ac'),(209069,40903,'blocks_1_options',''),(209070,40903,'_blocks_1_options','field_617682517c334'),(209071,40903,'blocks_1_split_5050_image','40615'),(209072,40903,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(209073,40903,'blocks_1_split_5050_video',''),(209074,40903,'_blocks_1_split_5050_video','field_6239f3160848a'),(209075,40903,'blocks_1_split_5050_content_title',''),(209076,40903,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(209077,40903,'blocks_1_split_5050_content_heading','Overview'),(209078,40903,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(209079,40903,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(209080,40903,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(209081,40903,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(209082,40903,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(209083,40903,'blocks_1_split_5050_content_actions','1'),(209084,40903,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(209085,40903,'blocks_1_split_5050_content',''),(209086,40903,'_blocks_1_split_5050_content','field_61767afceb8ba'),(209087,40903,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:13:\"step_timeline\";i:4;s:11:\"promo_panel\";i:5;s:10:\"accordions\";}'),(209088,40903,'_blocks','field_6176696113096'),(209089,40903,'course_label_text',''),(209090,40903,'_course_label_text','field_61e17babf71fa'),(209091,40903,'course_label',''),(209092,40903,'_course_label','field_61e12f92749a7'),(209093,40903,'course_description',''),(209094,40903,'_course_description','field_617ac5788e5e1'),(209095,40903,'course_key_info',''),(209096,40903,'_course_key_info','field_617ac6ad8e5e2'),(209097,40903,'course_included',''),(209098,40903,'_course_included','field_617ac6f08e5e4'),(209099,40903,'blocks_2_acfe_flexible_toggle',''),(209100,40903,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(209101,40903,'blocks_2_acfe_flexible_layout_title','Video'),(209102,40903,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(209103,40903,'blocks_2_size','large'),(209104,40903,'_blocks_2_size','field_6487038f297c1'),(209105,40903,'blocks_2_row_content_title',''),(209106,40903,'_blocks_2_row_content_title','field_64870132a865d'),(209107,40903,'blocks_2_row_content_heading','Intro to IMoveFreely Instructor workshop'),(209108,40903,'_blocks_2_row_content_heading','field_64870142a865e'),(209109,40903,'blocks_2_row_content_text',''),(209110,40903,'_blocks_2_row_content_text','field_64870148a865f'),(209111,40903,'blocks_2_row_content',''),(209112,40903,'_blocks_2_row_content','field_6487008ba865c'),(209113,40903,'blocks_2_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(209114,40903,'_blocks_2_video_src','field_6193c4a98ec07'),(209115,40903,'blocks_2_video_thumbnail',''),(209116,40903,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(209117,40903,'blocks_3_acfe_flexible_toggle',''),(209118,40903,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(209119,40903,'blocks_3_acfe_flexible_layout_title','Timeline'),(209120,40903,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(209121,40903,'blocks_3_options_theme','#ffffff'),(209122,40903,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(209123,40903,'blocks_3_options',''),(209124,40903,'_blocks_3_options','field_6177de53d1195'),(209125,40903,'blocks_3_timeline_content_title',''),(209126,40903,'_blocks_3_timeline_content_title','field_6177de53d1198'),(209127,40903,'blocks_3_timeline_content_heading','Who is the course suitable for? '),(209128,40903,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(209129,40903,'blocks_3_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(209130,40903,'_blocks_3_timeline_content_text','field_6177de53d119a'),(209131,40903,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(209132,40903,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(209133,40903,'blocks_3_timeline_content_actions','1'),(209134,40903,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(209135,40903,'blocks_3_timeline_content',''),(209136,40903,'_blocks_3_timeline_content','field_6177de53d1197'),(209137,40903,'blocks_3_timeline_items_0_title','Benefits'),(209138,40903,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(209139,40903,'blocks_3_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(209140,40903,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(209141,40903,'blocks_3_timeline_items_1_title','Curriculum Highlights'),(209142,40903,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(209143,40903,'blocks_3_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(209144,40903,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(209145,40903,'blocks_3_timeline_items_2_title','What pre-qualifications are required?'),(209146,40903,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(209147,40903,'blocks_3_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(209148,40903,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(209149,40903,'blocks_3_timeline_items','3'),(209150,40903,'_blocks_3_timeline_items','field_6177de53d119d'),(209151,40903,'blocks_4_acfe_flexible_toggle',''),(209152,40903,'_blocks_4_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(209153,40903,'blocks_4_acfe_flexible_layout_title','Promo Panel'),(209154,40903,'_blocks_4_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(209155,40903,'blocks_4_options_alignment','center'),(209156,40903,'_blocks_4_options_alignment','field_61769449f5490'),(209157,40903,'blocks_4_options',''),(209158,40903,'_blocks_4_options','field_617693e1428f0'),(209159,40903,'blocks_4_promo_panel_image','40615'),(209160,40903,'_blocks_4_promo_panel_image','field_617693e1428f3'),(209161,40903,'blocks_4_promo_panel_content_heading','Testimonial'),(209162,40903,'_blocks_4_promo_panel_content_heading','field_617693e1428f6'),(209163,40903,'blocks_4_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!” Jayne Nicholls Director Group X Training Ltd.\"'),(209164,40903,'_blocks_4_promo_panel_content_text','field_617693e1428f7'),(209165,40903,'blocks_4_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(209166,40903,'_blocks_4_promo_panel_content_actions_0_button','field_617693e1428f9'),(209167,40903,'blocks_4_promo_panel_content_actions','1'),(209168,40903,'_blocks_4_promo_panel_content_actions','field_617693e1428f8'),(209169,40903,'blocks_4_promo_panel_content',''),(209170,40903,'_blocks_4_promo_panel_content','field_617693e1428f4'),(209171,40903,'blocks_5_acfe_flexible_toggle',''),(209172,40903,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(209173,40903,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(209174,40903,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(209175,40903,'blocks_5_options_theme','#ffffff'),(209176,40903,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(209177,40903,'blocks_5_options_state','0'),(209178,40903,'_blocks_5_options_state','field_6239fcb7508c5'),(209179,40903,'blocks_5_options',''),(209180,40903,'_blocks_5_options','field_6177e2991ac44'),(209181,40903,'blocks_5_content_title',''),(209182,40903,'_blocks_5_content_title','field_64d237e8bb1e2'),(209183,40903,'blocks_5_content_heading','FAQ\'s'),(209184,40903,'_blocks_5_content_heading','field_64d237e8bb1e3'),(209185,40903,'blocks_5_content_text',''),(209186,40903,'_blocks_5_content_text','field_64d237e8bb1e4'),(209187,40903,'blocks_5_content_actions',''),(209188,40903,'_blocks_5_content_actions','field_64d237e8bb1e5'),(209189,40903,'blocks_5_content_align','left'),(209190,40903,'_blocks_5_content_align','field_64d2443e6b6aa'),(209191,40903,'blocks_5_content',''),(209192,40903,'_blocks_5_content','field_64d237e8bb1e1'),(209193,40903,'blocks_5_accordion_content','faqs'),(209194,40903,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(209195,40903,'blocks_5_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(209196,40903,'_blocks_5_accordion_faqs_select','field_6177e5f3633dd'),(209197,40903,'blocks_5_actions',''),(209198,40903,'_blocks_5_actions','field_61a746a817f7a'),(209199,40276,'_fft_show','1'),(209200,40276,'_fft_plan_id','2'),(209201,40276,'_fft_plan_code','plan_QrtHtOYTZV8Ycw'),(209202,40276,'_fft_plan_name','IBA Monthly £36+VAT'),(209203,40276,'_fft_plan_statement_descriptor',NULL),(209204,40276,'_fft_plan_taxable','1'),(209205,40276,'_fft_plan_interval','month'),(209206,40276,'_fft_plan_interval_count','1'),(209207,40276,'_fft_plan_trial_period_days',NULL),(209208,40276,'_fft_plan_cancellation_policy','unassign_products'),(209209,40276,'_fft_plan_archived_at',NULL),(209210,40276,'_fft_plan_created_at','1726610608'),(209211,40276,'_fft_plan_updated_at','1726610616'),(209212,40779,'course_label_label_theme','#0d1f73'),(209213,40779,'_course_label_label_theme','field_61e17bb8f71fb'),(209214,40779,'course_key_info_0_text','In-person Workshop'),(209215,40779,'_course_key_info_0_text','field_617ac6c38e5e3'),(209216,40779,'course_key_info_1_text','CPD Course'),(209217,40779,'_course_key_info_1_text','field_617ac6c38e5e3'),(209218,40779,'_yoast_wpseo_focuskw','instructor workshop'),(209219,40779,'_yoast_wpseo_metadesc','Elevate your training skills with the iMoveFreely® Instructor Workshop. Learn to support clients with long Covid symptoms.'),(209220,40779,'_yoast_wpseo_linkdex','44'),(209221,40904,'hide_hero','0'),(209222,40904,'_hide_hero','field_66a2380fcda39'),(209223,40904,'hero_title','IMoveFreely Instructor Programme Workshop'),(209224,40904,'_hero_title','field_617571fe285e8'),(209225,40904,'hero_text',''),(209226,40904,'_hero_text','field_6175723c285e9'),(209227,40904,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(209228,40904,'_hero_actions_0_button','field_61757281285eb'),(209229,40904,'hero_actions','1'),(209230,40904,'_hero_actions','field_61757270285ea'),(209231,40904,'hero_style','default'),(209232,40904,'_hero_style','field_62051d9dc5324'),(209233,40904,'_thumbnail_id','40893'),(209234,40904,'__thumbnail_id','field_617570855ddaf'),(209235,40904,'hero_image_pos_x','right'),(209236,40904,'_hero_image_pos_x','field_62ec3d05390bb'),(209237,40904,'hero_image_pos_y','top'),(209238,40904,'_hero_image_pos_y','field_62ec3d05390bc'),(209239,40904,'hero_image_pos',''),(209240,40904,'_hero_image_pos','field_62ec3d05390ba'),(209241,40904,'fft_hide_from_listings','0'),(209242,40904,'_fft_hide_from_listings','field_61f1320446ab2'),(209243,40904,'fft_page_format','default'),(209244,40904,'_fft_page_format','field_61ae213f1f218'),(209245,40904,'fft_hide_nav','0'),(209246,40904,'_fft_hide_nav','field_635bd5e43527c'),(209247,40904,'fft_hide_header_call_to_action','0'),(209248,40904,'_fft_hide_header_call_to_action','field_635bd6723527d'),(209249,40904,'fft_page_sitemap','0'),(209250,40904,'_fft_page_sitemap','field_61af9b34e8181'),(209251,40904,'blocks_0_acfe_flexible_toggle',''),(209252,40904,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(209253,40904,'blocks_0_acfe_flexible_layout_title','Template'),(209254,40904,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(209255,40904,'blocks_0_template','39087'),(209256,40904,'_blocks_0_template','field_617bdd570fe01'),(209257,40904,'blocks_1_acfe_flexible_toggle',''),(209258,40904,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(209259,40904,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(209260,40904,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(209261,40904,'blocks_1_options_theme','#ffffff'),(209262,40904,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(209263,40904,'blocks_1_options_reverse','0'),(209264,40904,'_blocks_1_options_reverse','field_61768049bb8ac'),(209265,40904,'blocks_1_options',''),(209266,40904,'_blocks_1_options','field_617682517c334'),(209267,40904,'blocks_1_split_5050_image','40615'),(209268,40904,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(209269,40904,'blocks_1_split_5050_video',''),(209270,40904,'_blocks_1_split_5050_video','field_6239f3160848a'),(209271,40904,'blocks_1_split_5050_content_title',''),(209272,40904,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(209273,40904,'blocks_1_split_5050_content_heading','Overview'),(209274,40904,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(209275,40904,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(209276,40904,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(209277,40904,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(209278,40904,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(209279,40904,'blocks_1_split_5050_content_actions','1'),(209280,40904,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(209281,40904,'blocks_1_split_5050_content',''),(209282,40904,'_blocks_1_split_5050_content','field_61767afceb8ba'),(209283,40904,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:13:\"step_timeline\";i:4;s:11:\"promo_panel\";i:5;s:10:\"accordions\";}'),(209284,40904,'_blocks','field_6176696113096'),(209285,40904,'course_label_text','IMoveFreely Instructor programme workshop'),(209286,40904,'_course_label_text','field_61e17babf71fa'),(209287,40904,'course_label',''),(209288,40904,'_course_label','field_61e12f92749a7'),(209289,40904,'course_description','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants.'),(209290,40904,'_course_description','field_617ac5788e5e1'),(209291,40904,'course_key_info','2'),(209292,40904,'_course_key_info','field_617ac6ad8e5e2'),(209293,40904,'course_included','Profound effects on movement issues \r\n\r\nIdeal for injury prevention, rehabilitation, and activity preparation \r\n\r\nEvidence-based techniques for improved performance \r\n\r\nFlexible integration into existing classes '),(209294,40904,'_course_included','field_617ac6f08e5e4'),(209295,40904,'blocks_2_acfe_flexible_toggle',''),(209296,40904,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(209297,40904,'blocks_2_acfe_flexible_layout_title','Video'),(209298,40904,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(209299,40904,'blocks_2_size','large'),(209300,40904,'_blocks_2_size','field_6487038f297c1'),(209301,40904,'blocks_2_row_content_title',''),(209302,40904,'_blocks_2_row_content_title','field_64870132a865d'),(209303,40904,'blocks_2_row_content_heading','Intro to IMoveFreely Instructor workshop'),(209304,40904,'_blocks_2_row_content_heading','field_64870142a865e'),(209305,40904,'blocks_2_row_content_text',''),(209306,40904,'_blocks_2_row_content_text','field_64870148a865f'),(209307,40904,'blocks_2_row_content',''),(209308,40904,'_blocks_2_row_content','field_6487008ba865c'),(209309,40904,'blocks_2_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(209310,40904,'_blocks_2_video_src','field_6193c4a98ec07'),(209311,40904,'blocks_2_video_thumbnail',''),(209312,40904,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(209313,40904,'blocks_3_acfe_flexible_toggle',''),(209314,40904,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(209315,40904,'blocks_3_acfe_flexible_layout_title','Timeline'),(209316,40904,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(209317,40904,'blocks_3_options_theme','#ffffff'),(209318,40904,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(209319,40904,'blocks_3_options',''),(209320,40904,'_blocks_3_options','field_6177de53d1195'),(209321,40904,'blocks_3_timeline_content_title',''),(209322,40904,'_blocks_3_timeline_content_title','field_6177de53d1198'),(209323,40904,'blocks_3_timeline_content_heading','Who is the course suitable for? '),(209324,40904,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(209325,40904,'blocks_3_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(209326,40904,'_blocks_3_timeline_content_text','field_6177de53d119a'),(209327,40904,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(209328,40904,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(209329,40904,'blocks_3_timeline_content_actions','1'),(209330,40904,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(209331,40904,'blocks_3_timeline_content',''),(209332,40904,'_blocks_3_timeline_content','field_6177de53d1197'),(209333,40904,'blocks_3_timeline_items_0_title','Benefits'),(209334,40904,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(209335,40904,'blocks_3_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(209336,40904,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(209337,40904,'blocks_3_timeline_items_1_title','Curriculum Highlights'),(209338,40904,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(209339,40904,'blocks_3_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(209340,40904,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(209341,40904,'blocks_3_timeline_items_2_title','What pre-qualifications are required?'),(209342,40904,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(209343,40904,'blocks_3_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(209344,40904,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(209345,40904,'blocks_3_timeline_items','3'),(209346,40904,'_blocks_3_timeline_items','field_6177de53d119d'),(209347,40904,'blocks_4_acfe_flexible_toggle',''),(209348,40904,'_blocks_4_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(209349,40904,'blocks_4_acfe_flexible_layout_title','Promo Panel'),(209350,40904,'_blocks_4_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(209351,40904,'blocks_4_options_alignment','center'),(209352,40904,'_blocks_4_options_alignment','field_61769449f5490'),(209353,40904,'blocks_4_options',''),(209354,40904,'_blocks_4_options','field_617693e1428f0'),(209355,40904,'blocks_4_promo_panel_image','40615'),(209356,40904,'_blocks_4_promo_panel_image','field_617693e1428f3'),(209357,40904,'blocks_4_promo_panel_content_heading','Testimonial'),(209358,40904,'_blocks_4_promo_panel_content_heading','field_617693e1428f6'),(209359,40904,'blocks_4_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!” Jayne Nicholls Director Group X Training Ltd.\"'),(209360,40904,'_blocks_4_promo_panel_content_text','field_617693e1428f7'),(209361,40904,'blocks_4_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(209362,40904,'_blocks_4_promo_panel_content_actions_0_button','field_617693e1428f9'),(209363,40904,'blocks_4_promo_panel_content_actions','1'),(209364,40904,'_blocks_4_promo_panel_content_actions','field_617693e1428f8'),(209365,40904,'blocks_4_promo_panel_content',''),(209366,40904,'_blocks_4_promo_panel_content','field_617693e1428f4'),(209367,40904,'blocks_5_acfe_flexible_toggle',''),(209368,40904,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(209369,40904,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(209370,40904,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(209371,40904,'blocks_5_options_theme','#ffffff'),(209372,40904,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(209373,40904,'blocks_5_options_state','0'),(209374,40904,'_blocks_5_options_state','field_6239fcb7508c5'),(209375,40904,'blocks_5_options',''),(209376,40904,'_blocks_5_options','field_6177e2991ac44'),(209377,40904,'blocks_5_content_title',''),(209378,40904,'_blocks_5_content_title','field_64d237e8bb1e2'),(209379,40904,'blocks_5_content_heading','FAQ\'s'),(209380,40904,'_blocks_5_content_heading','field_64d237e8bb1e3'),(209381,40904,'blocks_5_content_text',''),(209382,40904,'_blocks_5_content_text','field_64d237e8bb1e4'),(209383,40904,'blocks_5_content_actions',''),(209384,40904,'_blocks_5_content_actions','field_64d237e8bb1e5'),(209385,40904,'blocks_5_content_align','left'),(209386,40904,'_blocks_5_content_align','field_64d2443e6b6aa'),(209387,40904,'blocks_5_content',''),(209388,40904,'_blocks_5_content','field_64d237e8bb1e1'),(209389,40904,'blocks_5_accordion_content','faqs'),(209390,40904,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(209391,40904,'blocks_5_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(209392,40904,'_blocks_5_accordion_faqs_select','field_6177e5f3633dd'),(209393,40904,'blocks_5_actions',''),(209394,40904,'_blocks_5_actions','field_61a746a817f7a'),(209395,40904,'course_label_label_theme','#0d1f73'),(209396,40904,'_course_label_label_theme','field_61e17bb8f71fb'),(209397,40904,'course_key_info_0_text','In-person Workshop'),(209398,40904,'_course_key_info_0_text','field_617ac6c38e5e3'),(209399,40904,'course_key_info_1_text','CPD Course'),(209400,40904,'_course_key_info_1_text','field_617ac6c38e5e3'),(209401,40781,'course_label_label_theme','#0d1f73'),(209402,40781,'_course_label_label_theme','field_61e17bb8f71fb'),(209403,40781,'course_key_info_0_text','In-person Workshop'),(209404,40781,'_course_key_info_0_text','field_617ac6c38e5e3'),(209405,40781,'course_key_info_1_text','CPD Course'),(209406,40781,'_course_key_info_1_text','field_617ac6c38e5e3'),(209407,40905,'hide_hero','0'),(209408,40905,'_hide_hero','field_66a2380fcda39'),(209409,40905,'hero_title','Running Biomechanics Workshop'),(209410,40905,'_hero_title','field_617571fe285e8'),(209411,40905,'hero_text','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(209412,40905,'_hero_text','field_6175723c285e9'),(209413,40905,'hero_actions','1'),(209414,40905,'_hero_actions','field_61757270285ea'),(209415,40905,'hero_style','default'),(209416,40905,'_hero_style','field_62051d9dc5324'),(209417,40905,'hero_image_pos_x','right'),(209418,40905,'_hero_image_pos_x','field_62ec3d05390bb'),(209419,40905,'hero_image_pos_y','top'),(209420,40905,'_hero_image_pos_y','field_62ec3d05390bc'),(209421,40905,'hero_image_pos',''),(209422,40905,'_hero_image_pos','field_62ec3d05390ba'),(209423,40905,'fft_hide_from_listings','0'),(209424,40905,'_fft_hide_from_listings','field_61f1320446ab2'),(209425,40905,'fft_page_format','default'),(209426,40905,'_fft_page_format','field_61ae213f1f218'),(209427,40905,'fft_hide_nav','0'),(209428,40905,'_fft_hide_nav','field_635bd5e43527c'),(209429,40905,'fft_hide_header_call_to_action','0'),(209430,40905,'_fft_hide_header_call_to_action','field_635bd6723527d'),(209431,40905,'fft_page_sitemap','0'),(209432,40905,'_fft_page_sitemap','field_61af9b34e8181'),(209433,40905,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:11:\"promo_panel\";i:4;s:10:\"accordions\";}'),(209434,40905,'_blocks','field_6176696113096'),(209435,40905,'course_label_text','Running Biomechanics Workshop'),(209436,40905,'_course_label_text','field_61e17babf71fa'),(209437,40905,'course_label',''),(209438,40905,'_course_label','field_61e12f92749a7'),(209439,40905,'course_description','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(209440,40905,'_course_description','field_617ac5788e5e1'),(209441,40905,'course_key_info','2'),(209442,40905,'_course_key_info','field_617ac6ad8e5e2'),(209443,40905,'course_included','Pre-course recorded classroom for pre & post-learning enhancement \r\n\r\n1-day attendance for 7 hours '),(209444,40905,'_course_included','field_617ac6f08e5e4'),(209445,40905,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(209446,40905,'_hero_actions_0_button','field_61757281285eb'),(209447,40905,'_thumbnail_id','40877'),(209448,40905,'__thumbnail_id','field_617570855ddaf'),(209449,40905,'blocks_0_acfe_flexible_toggle',''),(209450,40905,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(209451,40905,'blocks_0_acfe_flexible_layout_title','Template'),(209452,40905,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(209453,40905,'blocks_0_template','39087'),(209454,40905,'_blocks_0_template','field_617bdd570fe01'),(209455,40905,'blocks_1_acfe_flexible_toggle',''),(209456,40905,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(209457,40905,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(209458,40905,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(209459,40905,'blocks_1_options_theme','#ffffff'),(209460,40905,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(209461,40905,'blocks_1_options_reverse','0'),(209462,40905,'_blocks_1_options_reverse','field_61768049bb8ac'),(209463,40905,'blocks_1_options',''),(209464,40905,'_blocks_1_options','field_617682517c334'),(209465,40905,'blocks_1_split_5050_image','40612'),(209466,40905,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(209467,40905,'blocks_1_split_5050_video',''),(209468,40905,'_blocks_1_split_5050_video','field_6239f3160848a'),(209469,40905,'blocks_1_split_5050_content_title',''),(209470,40905,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(209471,40905,'blocks_1_split_5050_content_heading','Course Overview'),(209472,40905,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(209473,40905,'blocks_1_split_5050_content_text','Running, a fundamental aspect of many fitness programs, demands a nuanced understanding of biomechanics. With an ever-growing array of running styles, it can be challenging to discern the most suitable approach for you or your clients.\r\n\r\nOur in-person workshop is built on the principle that there\'s no one-size-fits-all running style. Delve into the evidence supporting various techniques and gain practical methods to determine the most effective running style for your clients. We also provide insights into preparation exercises that can aid your clients in adapting to their chosen method.'),(209474,40905,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(209475,40905,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(209476,40905,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(209477,40905,'blocks_1_split_5050_content_actions','1'),(209478,40905,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(209479,40905,'blocks_1_split_5050_content',''),(209480,40905,'_blocks_1_split_5050_content','field_61767afceb8ba'),(209481,40905,'blocks_2_acfe_flexible_toggle',''),(209482,40905,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(209483,40905,'blocks_2_acfe_flexible_layout_title','Timeline'),(209484,40905,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(209485,40905,'blocks_2_options_theme','#ffffff'),(209486,40905,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(209487,40905,'blocks_2_options',''),(209488,40905,'_blocks_2_options','field_6177de53d1195'),(209489,40905,'blocks_2_timeline_content_title',''),(209490,40905,'_blocks_2_timeline_content_title','field_6177de53d1198'),(209491,40905,'blocks_2_timeline_content_heading','What You\'ll Learn in this One-Day Workshop'),(209492,40905,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(209493,40905,'blocks_2_timeline_content_text','<ul>\r\n 	<li>The correct terminology to engage with local running clubs</li>\r\n 	<li>Understanding the mechanics and sequencing of running gaits</li>\r\n 	<li>Extrinsically examining different styles or idiosyncrasies and intrinsically evaluating restrictions and dysfunctions</li>\r\n 	<li>Discussing screenings and key exercise interventions to prepare runners for their chosen style</li>\r\n</ul>'),(209494,40905,'_blocks_2_timeline_content_text','field_6177de53d119a'),(209495,40905,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(209496,40905,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(209497,40905,'blocks_2_timeline_content_actions','1'),(209498,40905,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(209499,40905,'blocks_2_timeline_content',''),(209500,40905,'_blocks_2_timeline_content','field_6177de53d1197'),(209501,40905,'blocks_2_timeline_items_0_title','Workshop Duration'),(209502,40905,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(209503,40905,'blocks_2_timeline_items_0_text','1. Pre-course recorded classroom for pre & post-learning enhancement \r\n\r\n2. 1-day attendance for 7 hours '),(209504,40905,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(209505,40905,'blocks_2_timeline_items_1_title','Who Should Attend? '),(209506,40905,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(209507,40905,'blocks_2_timeline_items_1_text','1. Running coaches and practitioners aiming to elevate their skills \r\n\r\n2. Any professionals seeking a comprehensive understanding of running biomechanics '),(209508,40905,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(209509,40905,'blocks_2_timeline_items_2_title','Prerequisites'),(209510,40905,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(209511,40905,'blocks_2_timeline_items_2_text','1. Suitable for running coaches, athletics coaches, Level 3 PT, and Level 3 manual therapists '),(209512,40905,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(209513,40905,'blocks_2_timeline_items_3_title','Assessment'),(209514,40905,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(209515,40905,'blocks_2_timeline_items_3_text','1. Continuous assessment during the attendance day '),(209516,40905,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(209517,40905,'blocks_2_timeline_items','5'),(209518,40905,'_blocks_2_timeline_items','field_6177de53d119d'),(209519,40905,'blocks_2_timeline_items_4_title','Materials Needed'),(209520,40905,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(209521,40905,'blocks_2_timeline_items_4_text','1. A link to the downloadable workshop manual will be sent in advance of attendance, created by Martin Haines, Founder of Brytespark'),(209522,40905,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(209523,40905,'blocks_3_acfe_flexible_toggle',''),(209524,40905,'_blocks_3_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(209525,40905,'blocks_3_acfe_flexible_layout_title','Promo Panel'),(209526,40905,'_blocks_3_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(209527,40905,'blocks_3_options_alignment','center'),(209528,40905,'_blocks_3_options_alignment','field_61769449f5490'),(209529,40905,'blocks_3_options',''),(209530,40905,'_blocks_3_options','field_617693e1428f0'),(209531,40905,'blocks_3_promo_panel_image','40820'),(209532,40905,'_blocks_3_promo_panel_image','field_617693e1428f3'),(209533,40905,'blocks_3_promo_panel_content_heading','Tom Waldron, Master Trainer '),(209534,40905,'_blocks_3_promo_panel_content_heading','field_617693e1428f6'),(209535,40905,'blocks_3_promo_panel_content_text','\"Rachel was one of my first mentors both professionally and personally. She introduced to me the concept of critical thinking as well as the ability to respectfully question everything. She’s an expert in human movement, and if you’re lucky enough to have Rachel as a teacher, you gain much more than just knowledge about the human body.\"'),(209536,40905,'_blocks_3_promo_panel_content_text','field_617693e1428f7'),(209537,40905,'blocks_3_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(209538,40905,'_blocks_3_promo_panel_content_actions_0_button','field_617693e1428f9'),(209539,40905,'blocks_3_promo_panel_content_actions','1'),(209540,40905,'_blocks_3_promo_panel_content_actions','field_617693e1428f8'),(209541,40905,'blocks_3_promo_panel_content',''),(209542,40905,'_blocks_3_promo_panel_content','field_617693e1428f4'),(209543,40905,'blocks_4_acfe_flexible_toggle',''),(209544,40905,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(209545,40905,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(209546,40905,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(209547,40905,'blocks_4_options_theme','#ffffff'),(209548,40905,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(209549,40905,'blocks_4_options_state','0'),(209550,40905,'_blocks_4_options_state','field_6239fcb7508c5'),(209551,40905,'blocks_4_options',''),(209552,40905,'_blocks_4_options','field_6177e2991ac44'),(209553,40905,'blocks_4_content_title',''),(209554,40905,'_blocks_4_content_title','field_64d237e8bb1e2'),(209555,40905,'blocks_4_content_heading','FAQ\'s'),(209556,40905,'_blocks_4_content_heading','field_64d237e8bb1e3'),(209557,40905,'blocks_4_content_text',''),(209558,40905,'_blocks_4_content_text','field_64d237e8bb1e4'),(209559,40905,'blocks_4_content_actions',''),(209560,40905,'_blocks_4_content_actions','field_64d237e8bb1e5'),(209561,40905,'blocks_4_content_align','left'),(209562,40905,'_blocks_4_content_align','field_64d2443e6b6aa'),(209563,40905,'blocks_4_content',''),(209564,40905,'_blocks_4_content','field_64d237e8bb1e1'),(209565,40905,'blocks_4_accordion_content','faqs'),(209566,40905,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(209567,40905,'blocks_4_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(209568,40905,'_blocks_4_accordion_faqs_select','field_6177e5f3633dd'),(209569,40905,'blocks_4_actions',''),(209570,40905,'_blocks_4_actions','field_61a746a817f7a'),(209571,40905,'course_label_label_theme','#0d1f73'),(209572,40905,'_course_label_label_theme','field_61e17bb8f71fb'),(209573,40905,'course_key_info_0_text','In-person Workshop'),(209574,40905,'_course_key_info_0_text','field_617ac6c38e5e3'),(209575,40905,'course_key_info_1_text','CPD Course'),(209576,40905,'_course_key_info_1_text','field_617ac6c38e5e3'),(209577,40781,'_yoast_wpseo_focuskw','Biomechanics Workshop'),(209578,40781,'_yoast_wpseo_metadesc','Discover tailored running techniques in our workshop. Learn evidence-based methods to find the best running style for your clients.'),(209579,40781,'_yoast_wpseo_linkdex','40'),(209580,40906,'_menu_item_type','custom'),(209581,40906,'_menu_item_menu_item_parent','39278'),(209582,40906,'_menu_item_object_id','40906'),(209583,40906,'_menu_item_object','custom'),(209584,40906,'_menu_item_target',''),(209585,40906,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(209586,40906,'_menu_item_xfn',''),(209587,40906,'_menu_item_url','https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/'),(209589,40906,'menu_item_card_image',''),(209590,40906,'_menu_item_card_image','field_618cf50fb8716'),(209591,40906,'menu_item_card_title',''),(209592,40906,'_menu_item_card_title','field_618cf51cb8717'),(209593,40906,'menu_item_card_text',''),(209594,40906,'_menu_item_card_text','field_618cf521b8718'),(209595,40906,'menu_item_card_link',''),(209596,40906,'_menu_item_card_link','field_618cf52eb8719'),(209597,40906,'menu_item_card',''),(209598,40906,'_menu_item_card','field_618cf506b8715'),(209599,39066,'blocks_4_open_whats_included','1'),(209600,39066,'_blocks_4_open_whats_included','field_66ebfd679450c'),(209601,39066,'blocks_4_open_key_information','0'),(209602,39066,'_blocks_4_open_key_information','field_66ebfd7f9450d'),(209603,39066,'blocks_4_open',''),(209604,39066,'_blocks_4_open','field_66ebfd009450b'),(209605,40907,'hero_style','default'),(209606,40907,'_hero_style','field_62051d9dc5324'),(209607,40907,'_thumbnail_id','39067'),(209608,40907,'__thumbnail_id','field_617570855ddaf'),(209609,40907,'hero_image_pos_x','right'),(209610,40907,'_hero_image_pos_x','field_62ec3d05390bb'),(209611,40907,'hero_image_pos_y','top'),(209612,40907,'_hero_image_pos_y','field_62ec3d05390bc'),(209613,40907,'hero_image_pos',''),(209614,40907,'_hero_image_pos','field_62ec3d05390ba'),(209615,40907,'hero_title','Courses'),(209616,40907,'_hero_title','field_617571fe285e8'),(209617,40907,'hero_text','Explore Industry-Leading Biomechanics Courses for Fitness Professionals'),(209618,40907,'_hero_text','field_6175723c285e9'),(209619,40907,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(209620,40907,'_hero_actions_0_button','field_61757281285eb'),(209621,40907,'hero_actions','1'),(209622,40907,'_hero_actions','field_61757270285ea'),(209623,40907,'hero_icon',''),(209624,40907,'_hero_icon','field_61a6182199d03'),(209625,40907,'fft_hide_from_listings','0'),(209626,40907,'_fft_hide_from_listings','field_61f1320446ab2'),(209627,40907,'fft_page_format','default'),(209628,40907,'_fft_page_format','field_61ae213f1f218'),(209629,40907,'fft_hide_nav','0'),(209630,40907,'_fft_hide_nav','field_635bd5e43527c'),(209631,40907,'fft_hide_header_call_to_action','0'),(209632,40907,'_fft_hide_header_call_to_action','field_635bd6723527d'),(209633,40907,'fft_page_sitemap','0'),(209634,40907,'_fft_page_sitemap','field_61af9b34e8181'),(209635,40907,'blocks','a:6:{i:0;s:5:\"icons\";i:1;s:10:\"text_block\";i:2;s:5:\"cards\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:8:\"template\";}'),(209636,40907,'_blocks','field_6176696113096'),(209637,40907,'blocks_0_acfe_flexible_toggle',''),(209638,40907,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(209639,40907,'blocks_0_acfe_flexible_layout_title','Icons'),(209640,40907,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(209641,40907,'blocks_0_options_theme','#b61234'),(209642,40907,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(209643,40907,'blocks_0_options_format','row'),(209644,40907,'_blocks_0_options_format','field_64bfde9a90690'),(209645,40907,'blocks_0_options',''),(209646,40907,'_blocks_0_options','field_64bfdd9b90684'),(209647,40907,'blocks_0_icon_row_items_0_icon','world.svg'),(209648,40907,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(209649,40907,'blocks_0_icon_row_items_0_label',''),(209650,40907,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(209651,40907,'blocks_0_icon_row_items_0_text','Learn From Anywhere in the world'),(209652,40907,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(209653,40907,'blocks_0_icon_row_items_1_icon','home-study.svg'),(209654,40907,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(209655,40907,'blocks_0_icon_row_items_1_label',''),(209656,40907,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(209657,40907,'blocks_0_icon_row_items_1_text','Built and taught in house'),(209658,40907,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(209659,40907,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(209660,40907,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(209661,40907,'blocks_0_icon_row_items_2_label',''),(209662,40907,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(209663,40907,'blocks_0_icon_row_items_2_text','Real tutors, not just videos'),(209664,40907,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(209665,40907,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(209666,40907,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(209667,40907,'blocks_0_icon_row_items_3_label',''),(209668,40907,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(209669,40907,'blocks_0_icon_row_items_3_text','Excellent e-learning platform'),(209670,40907,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(209671,40907,'blocks_0_icon_row_items','4'),(209672,40907,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(209673,40907,'hide_hero','0'),(209674,40907,'_hide_hero','field_66a2380fcda39'),(209675,40907,'blocks_1_acfe_flexible_toggle',''),(209676,40907,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(209677,40907,'blocks_1_acfe_flexible_layout_title','Text Block'),(209678,40907,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(209679,40907,'blocks_1_options_theme','#ffffff'),(209680,40907,'_blocks_1_options_theme','field_6176830e2ad17'),(209681,40907,'blocks_1_options',''),(209682,40907,'_blocks_1_options','field_6176830e2ad16'),(209683,40907,'blocks_1_text_block_heading','Overview'),(209684,40907,'_blocks_1_text_block_heading','field_617669d413097'),(209685,40907,'blocks_1_text_block_content','Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.'),(209686,40907,'_blocks_1_text_block_content','field_617669ec13098'),(209687,40907,'blocks_2_acfe_flexible_toggle',''),(209688,40907,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(209689,40907,'blocks_2_acfe_flexible_layout_title','Cards'),(209690,40907,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(209691,40907,'blocks_2_options_theme','#ffffff'),(209692,40907,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(209693,40907,'blocks_2_options_format','carousel'),(209694,40907,'_blocks_2_options_format','field_617a7b15245b5'),(209695,40907,'blocks_2_options_style','default'),(209696,40907,'_blocks_2_options_style','field_6278ffb63484a'),(209697,40907,'blocks_2_options_cards_current_listing','0'),(209698,40907,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(209699,40907,'blocks_2_options_cards_content','custom'),(209700,40907,'_blocks_2_options_cards_content','field_617aba6122688'),(209701,40907,'blocks_2_options',''),(209702,40907,'_blocks_2_options','field_617a7b15245b3'),(209703,40907,'blocks_2_cards_custom_0_image','38321'),(209704,40907,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(209705,40907,'blocks_2_cards_custom_0_title','CPD Courses'),(209706,40907,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(209707,40907,'blocks_2_cards_custom_0_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(209708,40907,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(209709,40907,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:17:\"Find a CPD Course\";s:3:\"url\";s:54:\"https://biomechanicseducation.com/courses/cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(209710,40907,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(209711,40907,'blocks_2_cards_custom_1_image','39047'),(209712,40907,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(209713,40907,'blocks_2_cards_custom_1_title','Diploma in Biomechanics Coaching'),(209714,40907,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(209715,40907,'blocks_2_cards_custom_1_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(209716,40907,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(209717,40907,'blocks_2_cards_custom_1_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:81:\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\";s:6:\"target\";s:0:\"\";}'),(209718,40907,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(209719,40907,'blocks_2_cards_custom_2_image','39437'),(209720,40907,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(209721,40907,'blocks_2_cards_custom_2_title','Lvl 4 Personal Trainer with Biomechanics Diploma'),(209722,40907,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(209723,40907,'blocks_2_cards_custom_2_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(209724,40907,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(209725,40907,'blocks_2_cards_custom_2_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:87:\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\";s:6:\"target\";s:0:\"\";}'),(209726,40907,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(209727,40907,'blocks_2_cards_custom','3'),(209728,40907,'_blocks_2_cards_custom','field_6194cbf84d386'),(209729,40907,'blocks_3_acfe_flexible_toggle',''),(209730,40907,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(209731,40907,'blocks_3_acfe_flexible_layout_title','Text Block'),(209732,40907,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(209733,40907,'blocks_3_options_theme','#ffffff'),(209734,40907,'_blocks_3_options_theme','field_6176830e2ad17'),(209735,40907,'blocks_3_options',''),(209736,40907,'_blocks_3_options','field_6176830e2ad16'),(209737,40907,'blocks_3_text_block_heading','Check Out Some of Our CPD Courses'),(209738,40907,'_blocks_3_text_block_heading','field_617669d413097'),(209739,40907,'blocks_3_text_block_content',''),(209740,40907,'_blocks_3_text_block_content','field_617669ec13098'),(209741,40907,'blocks_4_acfe_flexible_toggle',''),(209742,40907,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(209743,40907,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(209744,40907,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(209745,40907,'blocks_4_options_theme','#ffffff'),(209746,40907,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(209747,40907,'blocks_4_options',''),(209748,40907,'_blocks_4_options','field_617ac0b7f6c08'),(209749,40907,'blocks_4_show','category'),(209750,40907,'_blocks_4_show','field_61a49cba9d946'),(209751,40907,'blocks_4_category','403'),(209752,40907,'_blocks_4_category','field_61a49cd79d947'),(209753,40907,'blocks_5_acfe_flexible_toggle',''),(209754,40907,'_blocks_5_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(209755,40907,'blocks_5_acfe_flexible_layout_title','Template'),(209756,40907,'_blocks_5_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(209757,40907,'blocks_5_template','39207'),(209758,40907,'_blocks_5_template','field_617bdd570fe01'),(209759,40907,'blocks_4_open_whats_included','1'),(209760,40907,'_blocks_4_open_whats_included','field_66ebfd679450c'),(209761,40907,'blocks_4_open_key_information','0'),(209762,40907,'_blocks_4_open_key_information','field_66ebfd7f9450d'),(209763,40907,'blocks_4_open',''),(209764,40907,'_blocks_4_open','field_66ebfd009450b'),(209765,39196,'hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in Touch\";s:3:\"url\";s:12:\"#row-39196-2\";s:6:\"target\";s:0:\"\";}'),(209766,39196,'_hero_actions_0_button','field_61757281285eb'),(209767,40908,'hide_hero','0'),(209768,40908,'_hide_hero','field_66a2380fcda39'),(209769,40908,'fft_hide_from_listings','0'),(209770,40908,'_fft_hide_from_listings','field_61f1320446ab2'),(209771,40908,'fft_page_format','default'),(209772,40908,'_fft_page_format','field_61ae213f1f218'),(209773,40908,'fft_hide_nav','0'),(209774,40908,'_fft_hide_nav','field_635bd5e43527c'),(209775,40908,'fft_hide_header_call_to_action','0'),(209776,40908,'_fft_hide_header_call_to_action','field_635bd6723527d'),(209777,40908,'fft_page_sitemap','0'),(209778,40908,'_fft_page_sitemap','field_61af9b34e8181'),(209779,40908,'blocks_0_acfe_flexible_toggle',''),(209780,40908,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(209781,40908,'blocks_0_acfe_flexible_layout_title','Text Block'),(209782,40908,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(209783,40908,'blocks_0_options_theme','#ffffff'),(209784,40908,'_blocks_0_options_theme','field_6176830e2ad17'),(209785,40908,'blocks_0_options',''),(209786,40908,'_blocks_0_options','field_6176830e2ad16'),(209787,40908,'blocks_0_text_block_heading','Get in Touch'),(209788,40908,'_blocks_0_text_block_heading','field_617669d413097'),(209789,40908,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support your organisation. Whether you’re interested in courses, or looking for a bespoke solution, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(209790,40908,'_blocks_0_text_block_content','field_617669ec13098'),(209791,40908,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:4:\"form\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";}'),(209792,40908,'_blocks','field_6176696113096'),(209793,40908,'hero_title','Contact us'),(209794,40908,'_hero_title','field_617571fe285e8'),(209795,40908,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(209796,40908,'_hero_text','field_6175723c285e9'),(209797,40908,'hero_actions','1'),(209798,40908,'_hero_actions','field_61757270285ea'),(209799,40908,'hero_style','default'),(209800,40908,'_hero_style','field_62051d9dc5324'),(209801,40908,'hero_icon','lines'),(209802,40908,'_hero_icon','field_61a6182199d03'),(209803,40908,'_thumbnail_id','40339'),(209804,40908,'__thumbnail_id','field_617570855ddaf'),(209805,40908,'hero_image_pos_x','right'),(209806,40908,'_hero_image_pos_x','field_62ec3d05390bb'),(209807,40908,'hero_image_pos_y','top'),(209808,40908,'_hero_image_pos_y','field_62ec3d05390bc'),(209809,40908,'hero_image_pos',''),(209810,40908,'_hero_image_pos','field_62ec3d05390ba'),(209811,40908,'blocks_2_acfe_flexible_toggle',''),(209812,40908,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(209813,40908,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(209814,40908,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(209815,40908,'blocks_2_options_theme','#ffffff'),(209816,40908,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(209817,40908,'blocks_2_options_reverse','0'),(209818,40908,'_blocks_2_options_reverse','field_61768049bb8ac'),(209819,40908,'blocks_2_options',''),(209820,40908,'_blocks_2_options','field_617682517c334'),(209821,40908,'blocks_2_split_5050_image','40342'),(209822,40908,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(209823,40908,'blocks_2_split_5050_video',''),(209824,40908,'_blocks_2_split_5050_video','field_6239f3160848a'),(209825,40908,'blocks_2_split_5050_content_title',''),(209826,40908,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(209827,40908,'blocks_2_split_5050_content_heading','Let\'s connect!'),(209828,40908,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(209829,40908,'blocks_2_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(209830,40908,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(209831,40908,'blocks_2_split_5050_content_actions',''),(209832,40908,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(209833,40908,'blocks_2_split_5050_content',''),(209834,40908,'_blocks_2_split_5050_content','field_61767afceb8ba'),(209835,40908,'blocks_1_acfe_flexible_toggle',''),(209836,40908,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(209837,40908,'blocks_1_acfe_flexible_layout_title','Form'),(209838,40908,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(209839,40908,'blocks_1_row_content_format','standard'),(209840,40908,'_blocks_1_row_content_format','field_6481ead962881'),(209841,40908,'blocks_1_row_content_title',''),(209842,40908,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(209843,40908,'blocks_1_row_content_heading','Let\'s get started'),(209844,40908,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(209845,40908,'blocks_1_row_content_text','<span data-contrast=\"none\">Please fill in your details for no obligation support and advice. One of our in-house Career Advisors will give you a call to discuss your enquiry – don\'t worry if you are not available, we can call back at a convenient time for you.  </span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\"> </span>\r\n\r\n<strong>By completing the form you will also gain access to our Information and Price Guide.</strong>'),(209846,40908,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(209847,40908,'blocks_1_row_content_actions',''),(209848,40908,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(209849,40908,'blocks_1_row_content',''),(209850,40908,'_blocks_1_row_content','field_61a0f5f5b3db0'),(209851,40908,'blocks_1_row_form','40394'),(209852,40908,'_blocks_1_row_form','field_61a4ff2c0b08e'),(209853,40908,'blocks_1_row_form_button_label',''),(209854,40908,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(209855,40908,'blocks_3_acfe_flexible_toggle',''),(209856,40908,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(209857,40908,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(209858,40908,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(209859,40908,'blocks_3_options_theme','#ffffff'),(209860,40908,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(209861,40908,'blocks_3_options_reverse','1'),(209862,40908,'_blocks_3_options_reverse','field_61768049bb8ac'),(209863,40908,'blocks_3_options',''),(209864,40908,'_blocks_3_options','field_617682517c334'),(209865,40908,'blocks_3_split_5050_image','40349'),(209866,40908,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(209867,40908,'blocks_3_split_5050_video',''),(209868,40908,'_blocks_3_split_5050_video','field_6239f3160848a'),(209869,40908,'blocks_3_split_5050_content_title',''),(209870,40908,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(209871,40908,'blocks_3_split_5050_content_heading','Find a Biomechanics Coach in your area'),(209872,40908,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(209873,40908,'blocks_3_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(209874,40908,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(209875,40908,'blocks_3_split_5050_content_actions',''),(209876,40908,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(209877,40908,'blocks_3_split_5050_content',''),(209878,40908,'_blocks_3_split_5050_content','field_61767afceb8ba'),(209879,40908,'hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in Touch\";s:3:\"url\";s:12:\"#row-39196-2\";s:6:\"target\";s:0:\"\";}'),(209880,40908,'_hero_actions_0_button','field_61757281285eb'),(209881,39154,'blocks_1_acfe_flexible_toggle',''),(209882,39154,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(209883,39154,'blocks_1_acfe_flexible_layout_title','Form'),(209884,39154,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(209885,39154,'blocks_1_row_content_format','standard'),(209886,39154,'_blocks_1_row_content_format','field_6481ead962881'),(209887,39154,'blocks_1_row_content_title',''),(209888,39154,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(209889,39154,'blocks_1_row_content_heading','Download a Price Guide'),(209890,39154,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(209891,39154,'blocks_1_row_content_text','Fill in your info to receive a price guide and start your career in Biomechanics Education'),(209892,39154,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(209893,39154,'blocks_1_row_content_actions',''),(209894,39154,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(209895,39154,'blocks_1_row_content',''),(209896,39154,'_blocks_1_row_content','field_61a0f5f5b3db0'),(209897,39154,'blocks_1_row_form','40394'),(209898,39154,'_blocks_1_row_form','field_61a4ff2c0b08e'),(209899,39154,'blocks_1_row_form_button_label',''),(209900,39154,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(209901,39154,'blocks_2_acfe_flexible_toggle',''),(209902,39154,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(209903,39154,'blocks_2_acfe_flexible_layout_title','Link Stack'),(209904,39154,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(209905,39154,'blocks_2_options_theme','#ffffff'),(209906,39154,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(209907,39154,'blocks_2_options',''),(209908,39154,'_blocks_2_options','field_6177b758246ae'),(209909,39154,'blocks_2_link_stack_content_title',''),(209910,39154,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(209911,39154,'blocks_2_link_stack_content_heading','About Our YouTube Channel '),(209912,39154,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(209913,39154,'blocks_2_link_stack_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(209914,39154,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(209915,39154,'blocks_2_link_stack_content_actions',''),(209916,39154,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(209917,39154,'blocks_2_link_stack_content',''),(209918,39154,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(209919,39154,'blocks_2_link_stack_0_label','Hosted by Rachel Frances Thompson'),(209920,39154,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(209921,39154,'blocks_2_link_stack_0_title','Our YouTube Channel'),(209922,39154,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(209923,39154,'blocks_2_link_stack_0_url','https://www.youtube.com/@biomedu'),(209924,39154,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(209925,39154,'blocks_2_link_stack','1'),(209926,39154,'_blocks_2_link_stack','field_6177b7f600cff'),(209927,39154,'blocks_3_acfe_flexible_toggle',''),(209928,39154,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(209929,39154,'blocks_3_acfe_flexible_layout_title','Text Block'),(209930,39154,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(209931,39154,'blocks_3_options_theme','#ffffff'),(209932,39154,'_blocks_3_options_theme','field_6176830e2ad17'),(209933,39154,'blocks_3_options',''),(209934,39154,'_blocks_3_options','field_6176830e2ad16'),(209935,39154,'blocks_3_text_block_heading','Discover Our Blogs'),(209936,39154,'_blocks_3_text_block_heading','field_617669d413097'),(209937,39154,'blocks_3_text_block_content',''),(209938,39154,'_blocks_3_text_block_content','field_617669ec13098'),(209939,39154,'blocks_4_acfe_flexible_toggle',''),(209940,39154,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(209941,39154,'blocks_4_acfe_flexible_layout_title','Cards'),(209942,39154,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(209943,39154,'blocks_4_options_theme','#ffffff'),(209944,39154,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(209945,39154,'blocks_4_options_format','carousel'),(209946,39154,'_blocks_4_options_format','field_617a7b15245b5'),(209947,39154,'blocks_4_options_style','featured'),(209948,39154,'_blocks_4_options_style','field_6278ffb63484a'),(209949,39154,'blocks_4_options_cards_current_listing','0'),(209950,39154,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(209951,39154,'blocks_4_options_cards_content','post_type'),(209952,39154,'_blocks_4_options_cards_content','field_617aba6122688'),(209953,39154,'blocks_4_options_cards_post_type','post'),(209954,39154,'_blocks_4_options_cards_post_type','field_6194cc744d38b'),(209955,39154,'blocks_4_options_cards_posts_per_page','6'),(209956,39154,'_blocks_4_options_cards_posts_per_page','field_61a7565b1a0f2'),(209957,39154,'blocks_4_options',''),(209958,39154,'_blocks_4_options','field_617a7b15245b3'),(209959,39154,'blocks_5_acfe_flexible_toggle',''),(209960,39154,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(209961,39154,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(209962,39154,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(209963,39154,'blocks_5_options_theme','#ffffff'),(209964,39154,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(209965,39154,'blocks_5_options_reverse','0'),(209966,39154,'_blocks_5_options_reverse','field_61768049bb8ac'),(209967,39154,'blocks_5_options',''),(209968,39154,'_blocks_5_options','field_617682517c334'),(209969,39154,'blocks_5_split_5050_image','39165'),(209970,39154,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(209971,39154,'blocks_5_split_5050_video',''),(209972,39154,'_blocks_5_split_5050_video','field_6239f3160848a'),(209973,39154,'blocks_5_split_5050_content_title',''),(209974,39154,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(209975,39154,'blocks_5_split_5050_content_heading','IBA Membership'),(209976,39154,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(209977,39154,'blocks_5_split_5050_content_text','Explore the Intrinsic Biomechanics Association (IBA), your portal to a vibrant community and essential resources for Biomechanics Trainers™ &amp; Coaches™. Operated by Biomechanics Education Limited, IBA provides networking opportunities, standardized practices, and continuous education in biomechanics. As a member, you\'ll gain access to exclusive workshops, discounts on courses and products, mentorship, and a dynamic professional network. Join today to elevate your practice and remain at the cutting edge of biomechanical innovation.'),(209978,39154,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(209979,39154,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Become an IBA Member\";s:3:\"url\";s:49:\"https://biomechanicseducation.com/iba-membership/\";s:6:\"target\";s:0:\"\";}'),(209980,39154,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(209981,39154,'blocks_5_split_5050_content_actions','1'),(209982,39154,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(209983,39154,'blocks_5_split_5050_content',''),(209984,39154,'_blocks_5_split_5050_content','field_61767afceb8ba'),(209985,39154,'blocks_6_acfe_flexible_toggle',''),(209986,39154,'_blocks_6_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(209987,39154,'blocks_6_acfe_flexible_layout_title','Testimonial Slider'),(209988,39154,'_blocks_6_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(209989,39154,'blocks_6_testimonial_slider_content_title',''),(209990,39154,'_blocks_6_testimonial_slider_content_title','field_617c033b39a60'),(209991,39154,'blocks_6_testimonial_slider_content_heading','Testimonials'),(209992,39154,'_blocks_6_testimonial_slider_content_heading','field_617c033b39a61'),(209993,39154,'blocks_6_testimonial_slider_content_text','Discover what people say about us'),(209994,39154,'_blocks_6_testimonial_slider_content_text','field_617c033b39a62'),(209995,39154,'blocks_6_testimonial_slider_content_actions',''),(209996,39154,'_blocks_6_testimonial_slider_content_actions','field_617c033b39a63'),(209997,39154,'blocks_6_testimonial_slider_content',''),(209998,39154,'_blocks_6_testimonial_slider_content','field_617c033b39a5f'),(209999,39154,'blocks_6_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"39169\";i:2;s:5:\"39170\";}'),(210000,39154,'_blocks_6_testimonial_slider_items','field_61812eaeb20eb'),(210001,39154,'blocks_6_testimonial_slider_ambassador_bool','0'),(210002,39154,'_blocks_6_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(210003,40909,'hero_style','default'),(210004,40909,'_hero_style','field_62051d9dc5324'),(210005,40909,'_thumbnail_id','38321'),(210006,40909,'__thumbnail_id','field_617570855ddaf'),(210007,40909,'hero_image_pos_x','right'),(210008,40909,'_hero_image_pos_x','field_62ec3d05390bb'),(210009,40909,'hero_image_pos_y','top'),(210010,40909,'_hero_image_pos_y','field_62ec3d05390bc'),(210011,40909,'hero_image_pos',''),(210012,40909,'_hero_image_pos','field_62ec3d05390ba'),(210013,40909,'hero_title','Resources'),(210014,40909,'_hero_title','field_617571fe285e8'),(210015,40909,'hero_text','Innovative content to support the growth of your organisation.'),(210016,40909,'_hero_text','field_6175723c285e9'),(210017,40909,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(210018,40909,'_hero_actions_0_button','field_61757281285eb'),(210019,40909,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-1\";s:6:\"target\";s:0:\"\";}'),(210020,40909,'_hero_actions_1_button','field_61757281285eb'),(210021,40909,'hero_actions','2'),(210022,40909,'_hero_actions','field_61757270285ea'),(210023,40909,'hero_icon',''),(210024,40909,'_hero_icon','field_61a6182199d03'),(210025,40909,'fft_hide_from_listings','0'),(210026,40909,'_fft_hide_from_listings','field_61f1320446ab2'),(210027,40909,'fft_page_format','default'),(210028,40909,'_fft_page_format','field_61ae213f1f218'),(210029,40909,'fft_hide_nav','0'),(210030,40909,'_fft_hide_nav','field_635bd5e43527c'),(210031,40909,'fft_hide_header_call_to_action','0'),(210032,40909,'_fft_hide_header_call_to_action','field_635bd6723527d'),(210033,40909,'fft_page_sitemap','0'),(210034,40909,'_fft_page_sitemap','field_61af9b34e8181'),(210035,40909,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:4:\"form\";i:2;s:10:\"link_stack\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:18:\"testimonial_slider\";}'),(210036,40909,'_blocks','field_6176696113096'),(210037,40909,'blocks_0_acfe_flexible_toggle',''),(210038,40909,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(210039,40909,'blocks_0_acfe_flexible_layout_title','Text Block'),(210040,40909,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(210041,40909,'blocks_0_options_theme','#f5f5f5'),(210042,40909,'_blocks_0_options_theme','field_6176830e2ad17'),(210043,40909,'blocks_0_options',''),(210044,40909,'_blocks_0_options','field_6176830e2ad16'),(210045,40909,'blocks_0_text_block_heading','Resources Available'),(210046,40909,'_blocks_0_text_block_heading','field_617669d413097'),(210047,40909,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(210048,40909,'_blocks_0_text_block_content','field_617669ec13098'),(210049,40909,'hide_hero','0'),(210050,40909,'_hide_hero','field_66a2380fcda39'),(210051,40909,'blocks_1_acfe_flexible_toggle',''),(210052,40909,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(210053,40909,'blocks_1_acfe_flexible_layout_title','Form'),(210054,40909,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(210055,40909,'blocks_1_row_content_format','standard'),(210056,40909,'_blocks_1_row_content_format','field_6481ead962881'),(210057,40909,'blocks_1_row_content_title',''),(210058,40909,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(210059,40909,'blocks_1_row_content_heading','Download a Price Guide'),(210060,40909,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(210061,40909,'blocks_1_row_content_text','Fill in your info to receive a price guide and start your career in Biomechanics Education'),(210062,40909,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(210063,40909,'blocks_1_row_content_actions',''),(210064,40909,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(210065,40909,'blocks_1_row_content',''),(210066,40909,'_blocks_1_row_content','field_61a0f5f5b3db0'),(210067,40909,'blocks_1_row_form','40394'),(210068,40909,'_blocks_1_row_form','field_61a4ff2c0b08e'),(210069,40909,'blocks_1_row_form_button_label',''),(210070,40909,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(210071,40909,'blocks_2_acfe_flexible_toggle',''),(210072,40909,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(210073,40909,'blocks_2_acfe_flexible_layout_title','Link Stack'),(210074,40909,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(210075,40909,'blocks_2_options_theme','#ffffff'),(210076,40909,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(210077,40909,'blocks_2_options',''),(210078,40909,'_blocks_2_options','field_6177b758246ae'),(210079,40909,'blocks_2_link_stack_content_title',''),(210080,40909,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(210081,40909,'blocks_2_link_stack_content_heading','About Our YouTube Channel '),(210082,40909,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(210083,40909,'blocks_2_link_stack_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(210084,40909,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(210085,40909,'blocks_2_link_stack_content_actions',''),(210086,40909,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(210087,40909,'blocks_2_link_stack_content',''),(210088,40909,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(210089,40909,'blocks_2_link_stack_0_label','Hosted by Rachel Frances Thompson'),(210090,40909,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(210091,40909,'blocks_2_link_stack_0_title','Our YouTube Channel'),(210092,40909,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(210093,40909,'blocks_2_link_stack_0_url','https://www.youtube.com/@biomedu'),(210094,40909,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(210095,40909,'blocks_2_link_stack','1'),(210096,40909,'_blocks_2_link_stack','field_6177b7f600cff'),(210097,40909,'blocks_3_acfe_flexible_toggle',''),(210098,40909,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(210099,40909,'blocks_3_acfe_flexible_layout_title','Text Block'),(210100,40909,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(210101,40909,'blocks_3_options_theme','#ffffff'),(210102,40909,'_blocks_3_options_theme','field_6176830e2ad17'),(210103,40909,'blocks_3_options',''),(210104,40909,'_blocks_3_options','field_6176830e2ad16'),(210105,40909,'blocks_3_text_block_heading','Discover Our Blogs'),(210106,40909,'_blocks_3_text_block_heading','field_617669d413097'),(210107,40909,'blocks_3_text_block_content',''),(210108,40909,'_blocks_3_text_block_content','field_617669ec13098'),(210109,40909,'blocks_4_acfe_flexible_toggle',''),(210110,40909,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(210111,40909,'blocks_4_acfe_flexible_layout_title','Cards'),(210112,40909,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(210113,40909,'blocks_4_options_theme','#ffffff'),(210114,40909,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(210115,40909,'blocks_4_options_format','carousel'),(210116,40909,'_blocks_4_options_format','field_617a7b15245b5'),(210117,40909,'blocks_4_options_style','featured'),(210118,40909,'_blocks_4_options_style','field_6278ffb63484a'),(210119,40909,'blocks_4_options_cards_current_listing','0'),(210120,40909,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(210121,40909,'blocks_4_options_cards_content','post_type'),(210122,40909,'_blocks_4_options_cards_content','field_617aba6122688'),(210123,40909,'blocks_4_options_cards_post_type','post'),(210124,40909,'_blocks_4_options_cards_post_type','field_6194cc744d38b'),(210125,40909,'blocks_4_options_cards_posts_per_page','6'),(210126,40909,'_blocks_4_options_cards_posts_per_page','field_61a7565b1a0f2'),(210127,40909,'blocks_4_options',''),(210128,40909,'_blocks_4_options','field_617a7b15245b3'),(210129,40909,'blocks_5_acfe_flexible_toggle',''),(210130,40909,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(210131,40909,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(210132,40909,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(210133,40909,'blocks_5_options_theme','#ffffff'),(210134,40909,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(210135,40909,'blocks_5_options_reverse','0'),(210136,40909,'_blocks_5_options_reverse','field_61768049bb8ac'),(210137,40909,'blocks_5_options',''),(210138,40909,'_blocks_5_options','field_617682517c334'),(210139,40909,'blocks_5_split_5050_image','39165'),(210140,40909,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(210141,40909,'blocks_5_split_5050_video',''),(210142,40909,'_blocks_5_split_5050_video','field_6239f3160848a'),(210143,40909,'blocks_5_split_5050_content_title',''),(210144,40909,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(210145,40909,'blocks_5_split_5050_content_heading','IBA Membership'),(210146,40909,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(210147,40909,'blocks_5_split_5050_content_text','Explore the Intrinsic Biomechanics Association (IBA), your portal to a vibrant community and essential resources for Biomechanics Trainers™ &amp; Coaches™. Operated by Biomechanics Education Limited, IBA provides networking opportunities, standardized practices, and continuous education in biomechanics. As a member, you\'ll gain access to exclusive workshops, discounts on courses and products, mentorship, and a dynamic professional network. Join today to elevate your practice and remain at the cutting edge of biomechanical innovation.'),(210148,40909,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(210149,40909,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Become an IBA Member\";s:3:\"url\";s:49:\"https://biomechanicseducation.com/iba-membership/\";s:6:\"target\";s:0:\"\";}'),(210150,40909,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(210151,40909,'blocks_5_split_5050_content_actions','1'),(210152,40909,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(210153,40909,'blocks_5_split_5050_content',''),(210154,40909,'_blocks_5_split_5050_content','field_61767afceb8ba'),(210155,40909,'blocks_6_acfe_flexible_toggle',''),(210156,40909,'_blocks_6_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(210157,40909,'blocks_6_acfe_flexible_layout_title','Testimonial Slider'),(210158,40909,'_blocks_6_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(210159,40909,'blocks_6_testimonial_slider_content_title',''),(210160,40909,'_blocks_6_testimonial_slider_content_title','field_617c033b39a60'),(210161,40909,'blocks_6_testimonial_slider_content_heading','Testimonials'),(210162,40909,'_blocks_6_testimonial_slider_content_heading','field_617c033b39a61'),(210163,40909,'blocks_6_testimonial_slider_content_text','Discover what people say about us'),(210164,40909,'_blocks_6_testimonial_slider_content_text','field_617c033b39a62'),(210165,40909,'blocks_6_testimonial_slider_content_actions',''),(210166,40909,'_blocks_6_testimonial_slider_content_actions','field_617c033b39a63'),(210167,40909,'blocks_6_testimonial_slider_content',''),(210168,40909,'_blocks_6_testimonial_slider_content','field_617c033b39a5f'),(210169,40909,'blocks_6_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"39169\";i:2;s:5:\"39170\";}'),(210170,40909,'_blocks_6_testimonial_slider_items','field_61812eaeb20eb'),(210171,40909,'blocks_6_testimonial_slider_ambassador_bool','0'),(210172,40909,'_blocks_6_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(210173,40910,'hero_style','default'),(210174,40910,'_hero_style','field_62051d9dc5324'),(210175,40910,'_thumbnail_id','38321'),(210176,40910,'__thumbnail_id','field_617570855ddaf'),(210177,40910,'hero_image_pos_x','right'),(210178,40910,'_hero_image_pos_x','field_62ec3d05390bb'),(210179,40910,'hero_image_pos_y','top'),(210180,40910,'_hero_image_pos_y','field_62ec3d05390bc'),(210181,40910,'hero_image_pos',''),(210182,40910,'_hero_image_pos','field_62ec3d05390ba'),(210183,40910,'hero_title','Resources'),(210184,40910,'_hero_title','field_617571fe285e8'),(210185,40910,'hero_text','Innovative content to support the growth of your organisation.'),(210186,40910,'_hero_text','field_6175723c285e9'),(210187,40910,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39154-4\";s:6:\"target\";s:0:\"\";}'),(210188,40910,'_hero_actions_0_button','field_61757281285eb'),(210189,40910,'hero_actions_1_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39154-2\";s:6:\"target\";s:0:\"\";}'),(210190,40910,'_hero_actions_1_button','field_61757281285eb'),(210191,40910,'hero_actions','2'),(210192,40910,'_hero_actions','field_61757270285ea'),(210193,40910,'hero_icon',''),(210194,40910,'_hero_icon','field_61a6182199d03'),(210195,40910,'fft_hide_from_listings','0'),(210196,40910,'_fft_hide_from_listings','field_61f1320446ab2'),(210197,40910,'fft_page_format','default'),(210198,40910,'_fft_page_format','field_61ae213f1f218'),(210199,40910,'fft_hide_nav','0'),(210200,40910,'_fft_hide_nav','field_635bd5e43527c'),(210201,40910,'fft_hide_header_call_to_action','0'),(210202,40910,'_fft_hide_header_call_to_action','field_635bd6723527d'),(210203,40910,'fft_page_sitemap','0'),(210204,40910,'_fft_page_sitemap','field_61af9b34e8181'),(210205,40910,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:4:\"form\";i:2;s:10:\"link_stack\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:18:\"testimonial_slider\";}'),(210206,40910,'_blocks','field_6176696113096'),(210207,40910,'blocks_0_acfe_flexible_toggle',''),(210208,40910,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(210209,40910,'blocks_0_acfe_flexible_layout_title','Text Block'),(210210,40910,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(210211,40910,'blocks_0_options_theme','#f5f5f5'),(210212,40910,'_blocks_0_options_theme','field_6176830e2ad17'),(210213,40910,'blocks_0_options',''),(210214,40910,'_blocks_0_options','field_6176830e2ad16'),(210215,40910,'blocks_0_text_block_heading','Resources Available'),(210216,40910,'_blocks_0_text_block_heading','field_617669d413097'),(210217,40910,'blocks_0_text_block_content','At Biomechanics Education, we provide a comprehensive array of resources. Our offerings include IBA membership, which grants access to exclusive content, expertly written educational blogs covering various physical activity, health, and biomechanical topics, and an informative YouTube channel with engaging videos. Join our community to enhance your knowledge and stay updated with the latest advancements in biomechanics.'),(210218,40910,'_blocks_0_text_block_content','field_617669ec13098'),(210219,40910,'hide_hero','0'),(210220,40910,'_hide_hero','field_66a2380fcda39'),(210221,40910,'blocks_1_acfe_flexible_toggle',''),(210222,40910,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(210223,40910,'blocks_1_acfe_flexible_layout_title','Form'),(210224,40910,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(210225,40910,'blocks_1_row_content_format','standard'),(210226,40910,'_blocks_1_row_content_format','field_6481ead962881'),(210227,40910,'blocks_1_row_content_title',''),(210228,40910,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(210229,40910,'blocks_1_row_content_heading','Download a Price Guide'),(210230,40910,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(210231,40910,'blocks_1_row_content_text','Fill in your info to receive a price guide and start your career in Biomechanics Education'),(210232,40910,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(210233,40910,'blocks_1_row_content_actions',''),(210234,40910,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(210235,40910,'blocks_1_row_content',''),(210236,40910,'_blocks_1_row_content','field_61a0f5f5b3db0'),(210237,40910,'blocks_1_row_form','40394'),(210238,40910,'_blocks_1_row_form','field_61a4ff2c0b08e'),(210239,40910,'blocks_1_row_form_button_label',''),(210240,40910,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(210241,40910,'blocks_2_acfe_flexible_toggle',''),(210242,40910,'_blocks_2_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(210243,40910,'blocks_2_acfe_flexible_layout_title','Link Stack'),(210244,40910,'_blocks_2_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(210245,40910,'blocks_2_options_theme','#ffffff'),(210246,40910,'_blocks_2_options_theme','field_6177b758246af_field_6176830e2ad17'),(210247,40910,'blocks_2_options',''),(210248,40910,'_blocks_2_options','field_6177b758246ae'),(210249,40910,'blocks_2_link_stack_content_title',''),(210250,40910,'_blocks_2_link_stack_content_title','field_6177b7b600cf9'),(210251,40910,'blocks_2_link_stack_content_heading','About Our YouTube Channel '),(210252,40910,'_blocks_2_link_stack_content_heading','field_6177b7b600cfa'),(210253,40910,'blocks_2_link_stack_content_text','Our YouTube channel, hosted by Rachel Frances Thomson, a Chartered H&amp;A Practitioner and Biomechanics Coach. Rachel is the founder of the Intrinsic Biomechanics programme and creator of iMoveFreely. Our content focuses on biomechanics education for therapists, trainers, and instructors, aiming to enhance movement quality, prevent injuries, and improve performance. Join us for expert insights into health, fitness, and education.'),(210254,40910,'_blocks_2_link_stack_content_text','field_6177b7b600cfb'),(210255,40910,'blocks_2_link_stack_content_actions',''),(210256,40910,'_blocks_2_link_stack_content_actions','field_6177b7b600cfc'),(210257,40910,'blocks_2_link_stack_content',''),(210258,40910,'_blocks_2_link_stack_content','field_6177b7b600cf8'),(210259,40910,'blocks_2_link_stack_0_label','Hosted by Rachel Frances Thompson'),(210260,40910,'_blocks_2_link_stack_0_label','field_6177b80900d00'),(210261,40910,'blocks_2_link_stack_0_title','Our YouTube Channel'),(210262,40910,'_blocks_2_link_stack_0_title','field_6177b80f00d01'),(210263,40910,'blocks_2_link_stack_0_url','https://www.youtube.com/@biomedu'),(210264,40910,'_blocks_2_link_stack_0_url','field_6177b82200d02'),(210265,40910,'blocks_2_link_stack','1'),(210266,40910,'_blocks_2_link_stack','field_6177b7f600cff'),(210267,40910,'blocks_3_acfe_flexible_toggle',''),(210268,40910,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(210269,40910,'blocks_3_acfe_flexible_layout_title','Text Block'),(210270,40910,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(210271,40910,'blocks_3_options_theme','#ffffff'),(210272,40910,'_blocks_3_options_theme','field_6176830e2ad17'),(210273,40910,'blocks_3_options',''),(210274,40910,'_blocks_3_options','field_6176830e2ad16'),(210275,40910,'blocks_3_text_block_heading','Discover Our Blogs'),(210276,40910,'_blocks_3_text_block_heading','field_617669d413097'),(210277,40910,'blocks_3_text_block_content',''),(210278,40910,'_blocks_3_text_block_content','field_617669ec13098'),(210279,40910,'blocks_4_acfe_flexible_toggle',''),(210280,40910,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(210281,40910,'blocks_4_acfe_flexible_layout_title','Cards'),(210282,40910,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(210283,40910,'blocks_4_options_theme','#ffffff'),(210284,40910,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(210285,40910,'blocks_4_options_format','carousel'),(210286,40910,'_blocks_4_options_format','field_617a7b15245b5'),(210287,40910,'blocks_4_options_style','featured'),(210288,40910,'_blocks_4_options_style','field_6278ffb63484a'),(210289,40910,'blocks_4_options_cards_current_listing','0'),(210290,40910,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(210291,40910,'blocks_4_options_cards_content','post_type'),(210292,40910,'_blocks_4_options_cards_content','field_617aba6122688'),(210293,40910,'blocks_4_options_cards_post_type','post'),(210294,40910,'_blocks_4_options_cards_post_type','field_6194cc744d38b'),(210295,40910,'blocks_4_options_cards_posts_per_page','6'),(210296,40910,'_blocks_4_options_cards_posts_per_page','field_61a7565b1a0f2'),(210297,40910,'blocks_4_options',''),(210298,40910,'_blocks_4_options','field_617a7b15245b3'),(210299,40910,'blocks_5_acfe_flexible_toggle',''),(210300,40910,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(210301,40910,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(210302,40910,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(210303,40910,'blocks_5_options_theme','#ffffff'),(210304,40910,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(210305,40910,'blocks_5_options_reverse','0'),(210306,40910,'_blocks_5_options_reverse','field_61768049bb8ac'),(210307,40910,'blocks_5_options',''),(210308,40910,'_blocks_5_options','field_617682517c334'),(210309,40910,'blocks_5_split_5050_image','39165'),(210310,40910,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(210311,40910,'blocks_5_split_5050_video',''),(210312,40910,'_blocks_5_split_5050_video','field_6239f3160848a'),(210313,40910,'blocks_5_split_5050_content_title',''),(210314,40910,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(210315,40910,'blocks_5_split_5050_content_heading','IBA Membership'),(210316,40910,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(210317,40910,'blocks_5_split_5050_content_text','Explore the Intrinsic Biomechanics Association (IBA), your portal to a vibrant community and essential resources for Biomechanics Trainers™ &amp; Coaches™. Operated by Biomechanics Education Limited, IBA provides networking opportunities, standardized practices, and continuous education in biomechanics. As a member, you\'ll gain access to exclusive workshops, discounts on courses and products, mentorship, and a dynamic professional network. Join today to elevate your practice and remain at the cutting edge of biomechanical innovation.'),(210318,40910,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(210319,40910,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Become an IBA Member\";s:3:\"url\";s:49:\"https://biomechanicseducation.com/iba-membership/\";s:6:\"target\";s:0:\"\";}'),(210320,40910,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(210321,40910,'blocks_5_split_5050_content_actions','1'),(210322,40910,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(210323,40910,'blocks_5_split_5050_content',''),(210324,40910,'_blocks_5_split_5050_content','field_61767afceb8ba'),(210325,40910,'blocks_6_acfe_flexible_toggle',''),(210326,40910,'_blocks_6_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(210327,40910,'blocks_6_acfe_flexible_layout_title','Testimonial Slider'),(210328,40910,'_blocks_6_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(210329,40910,'blocks_6_testimonial_slider_content_title',''),(210330,40910,'_blocks_6_testimonial_slider_content_title','field_617c033b39a60'),(210331,40910,'blocks_6_testimonial_slider_content_heading','Testimonials'),(210332,40910,'_blocks_6_testimonial_slider_content_heading','field_617c033b39a61'),(210333,40910,'blocks_6_testimonial_slider_content_text','Discover what people say about us'),(210334,40910,'_blocks_6_testimonial_slider_content_text','field_617c033b39a62'),(210335,40910,'blocks_6_testimonial_slider_content_actions',''),(210336,40910,'_blocks_6_testimonial_slider_content_actions','field_617c033b39a63'),(210337,40910,'blocks_6_testimonial_slider_content',''),(210338,40910,'_blocks_6_testimonial_slider_content','field_617c033b39a5f'),(210339,40910,'blocks_6_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"39169\";i:2;s:5:\"39170\";}'),(210340,40910,'_blocks_6_testimonial_slider_items','field_61812eaeb20eb'),(210341,40910,'blocks_6_testimonial_slider_ambassador_bool','0'),(210342,40910,'_blocks_6_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(210343,40911,'hide_hero','0'),(210344,40911,'_hide_hero','field_66a2380fcda39'),(210345,40911,'hero_title','Find a Biomechanics Coach in Your Area'),(210346,40911,'_hero_title','field_617571fe285e8'),(210347,40911,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(210348,40911,'_hero_text','field_6175723c285e9'),(210349,40911,'hero_actions',''),(210350,40911,'_hero_actions','field_61757270285ea'),(210351,40911,'hero_style','default'),(210352,40911,'_hero_style','field_62051d9dc5324'),(210353,40911,'hero_image_pos_x','right'),(210354,40911,'_hero_image_pos_x','field_62ec3d05390bb'),(210355,40911,'hero_image_pos_y','top'),(210356,40911,'_hero_image_pos_y','field_62ec3d05390bc'),(210357,40911,'hero_image_pos',''),(210358,40911,'_hero_image_pos','field_62ec3d05390ba'),(210359,40911,'fft_hide_from_listings','0'),(210360,40911,'_fft_hide_from_listings','field_61f1320446ab2'),(210361,40911,'fft_page_format','default'),(210362,40911,'_fft_page_format','field_61ae213f1f218'),(210363,40911,'fft_hide_nav','0'),(210364,40911,'_fft_hide_nav','field_635bd5e43527c'),(210365,40911,'fft_hide_header_call_to_action','0'),(210366,40911,'_fft_hide_header_call_to_action','field_635bd6723527d'),(210367,40911,'fft_page_sitemap','0'),(210368,40911,'_fft_page_sitemap','field_61af9b34e8181'),(210369,40911,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(210370,40911,'_blocks','field_6176696113096'),(210371,40911,'_thumbnail_id','40447'),(210372,40911,'__thumbnail_id','field_617570855ddaf'),(210373,40911,'blocks_0_acfe_flexible_toggle',''),(210374,40911,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(210375,40911,'blocks_0_acfe_flexible_layout_title','Text Block'),(210376,40911,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(210377,40911,'blocks_0_options_theme','#ffffff'),(210378,40911,'_blocks_0_options_theme','field_6176830e2ad17'),(210379,40911,'blocks_0_options',''),(210380,40911,'_blocks_0_options','field_6176830e2ad16'),(210381,40911,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(210382,40911,'_blocks_0_text_block_heading','field_617669d413097'),(210383,40911,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(210384,40911,'_blocks_0_text_block_content','field_617669ec13098'),(210385,40911,'blocks_1_acfe_flexible_toggle',''),(210386,40911,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(210387,40911,'blocks_1_acfe_flexible_layout_title','Venues'),(210388,40911,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(210389,40911,'blocks_1_category','a:1:{i:0;s:3:\"417\";}'),(210390,40911,'_blocks_1_category','field_6361407e17657'),(210391,40911,'blocks_1_region',''),(210392,40911,'_blocks_1_region','field_636140bd17659'),(210395,40913,'hide_hero','0'),(210396,40913,'_hide_hero','field_66a2380fcda39'),(210397,40913,'hero_title','Find a Biomechanics Coach in Your Area'),(210398,40913,'_hero_title','field_617571fe285e8'),(210399,40913,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(210400,40913,'_hero_text','field_6175723c285e9'),(210401,40913,'hero_actions',''),(210402,40913,'_hero_actions','field_61757270285ea'),(210403,40913,'hero_style','default'),(210404,40913,'_hero_style','field_62051d9dc5324'),(210405,40913,'hero_image_pos_x','right'),(210406,40913,'_hero_image_pos_x','field_62ec3d05390bb'),(210407,40913,'hero_image_pos_y','top'),(210408,40913,'_hero_image_pos_y','field_62ec3d05390bc'),(210409,40913,'hero_image_pos',''),(210410,40913,'_hero_image_pos','field_62ec3d05390ba'),(210411,40913,'fft_hide_from_listings','0'),(210412,40913,'_fft_hide_from_listings','field_61f1320446ab2'),(210413,40913,'fft_page_format','default'),(210414,40913,'_fft_page_format','field_61ae213f1f218'),(210415,40913,'fft_hide_nav','0'),(210416,40913,'_fft_hide_nav','field_635bd5e43527c'),(210417,40913,'fft_hide_header_call_to_action','0'),(210418,40913,'_fft_hide_header_call_to_action','field_635bd6723527d'),(210419,40913,'fft_page_sitemap','0'),(210420,40913,'_fft_page_sitemap','field_61af9b34e8181'),(210421,40913,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(210422,40913,'_blocks','field_6176696113096'),(210424,40913,'__thumbnail_id','field_617570855ddaf'),(210425,40913,'blocks_0_acfe_flexible_toggle',''),(210426,40913,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(210427,40913,'blocks_0_acfe_flexible_layout_title','Text Block'),(210428,40913,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(210429,40913,'blocks_0_options_theme','#ffffff'),(210430,40913,'_blocks_0_options_theme','field_6176830e2ad17'),(210431,40913,'blocks_0_options',''),(210432,40913,'_blocks_0_options','field_6176830e2ad16'),(210433,40913,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(210434,40913,'_blocks_0_text_block_heading','field_617669d413097'),(210435,40913,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(210436,40913,'_blocks_0_text_block_content','field_617669ec13098'),(210437,40913,'blocks_1_acfe_flexible_toggle',''),(210438,40913,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(210439,40913,'blocks_1_acfe_flexible_layout_title','Venues'),(210440,40913,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(210441,40913,'blocks_1_category','a:1:{i:0;s:3:\"417\";}'),(210442,40913,'_blocks_1_category','field_6361407e17657'),(210443,40913,'blocks_1_region',''),(210444,40913,'_blocks_1_region','field_636140bd17659'),(210445,40914,'_wp_attached_file','2024/09/find-a-bm-coach-hero-1.png'),(210446,40914,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:837;s:4:\"file\";s:34:\"2024/09/find-a-bm-coach-hero-1.png\";s:8:\"filesize\";i:1417907;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-900x377.png\";s:5:\"width\";i:900;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:264515;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"find-a-bm-coach-hero-1-1200x502.png\";s:5:\"width\";i:1200;s:6:\"height\";i:502;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:428986;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-400x167.png\";s:5:\"width\";i:400;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66458;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-768x321.png\";s:5:\"width\";i:768;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:201690;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"find-a-bm-coach-hero-1-1536x643.png\";s:5:\"width\";i:1536;s:6:\"height\";i:643;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:640427;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157269;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-900x837.png\";s:5:\"width\";i:900;s:6:\"height\";i:837;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:576303;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"find-a-bm-coach-hero-1-1200x837.png\";s:5:\"width\";i:1200;s:6:\"height\";i:837;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:708760;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107619;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:407571;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"find-a-bm-coach-hero-1-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:635922;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122077;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-675x837.png\";s:5:\"width\";i:675;s:6:\"height\";i:837;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:451765;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-900x837.png\";s:5:\"width\";i:900;s:6:\"height\";i:837;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:576303;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122819;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:454000;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"find-a-bm-coach-hero-1-1200x837.png\";s:5:\"width\";i:1200;s:6:\"height\";i:837;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:708760;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90593;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"find-a-bm-coach-hero-1-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:350312;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(210447,40915,'_wp_attached_file','2024/09/find-a-bm-coach-hero-1-1.png'),(210448,40915,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:837;s:4:\"file\";s:36:\"2024/09/find-a-bm-coach-hero-1-1.png\";s:8:\"filesize\";i:1417907;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-900x377.png\";s:5:\"width\";i:900;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:264515;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"find-a-bm-coach-hero-1-1-1200x502.png\";s:5:\"width\";i:1200;s:6:\"height\";i:502;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:428986;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-400x167.png\";s:5:\"width\";i:400;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66458;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-768x321.png\";s:5:\"width\";i:768;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:201690;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"find-a-bm-coach-hero-1-1-1536x643.png\";s:5:\"width\";i:1536;s:6:\"height\";i:643;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:640427;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157269;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-900x837.png\";s:5:\"width\";i:900;s:6:\"height\";i:837;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:576303;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"find-a-bm-coach-hero-1-1-1200x837.png\";s:5:\"width\";i:1200;s:6:\"height\";i:837;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:708760;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107619;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:407571;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:37:\"find-a-bm-coach-hero-1-1-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:635922;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122077;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-675x837.png\";s:5:\"width\";i:675;s:6:\"height\";i:837;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:451765;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-900x837.png\";s:5:\"width\";i:900;s:6:\"height\";i:837;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:576303;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122819;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:454000;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:37:\"find-a-bm-coach-hero-1-1-1200x837.png\";s:5:\"width\";i:1200;s:6:\"height\";i:837;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:708760;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90593;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:36:\"find-a-bm-coach-hero-1-1-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:350312;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:37:\"find-a-bm-coach-hero-1-1-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:556016;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(210450,40916,'hide_hero','0'),(210451,40916,'_hide_hero','field_66a2380fcda39'),(210452,40916,'hero_title','Find a Biomechanics Coach in Your Area'),(210453,40916,'_hero_title','field_617571fe285e8'),(210454,40916,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(210455,40916,'_hero_text','field_6175723c285e9'),(210456,40916,'hero_actions',''),(210457,40916,'_hero_actions','field_61757270285ea'),(210458,40916,'hero_style','default'),(210459,40916,'_hero_style','field_62051d9dc5324'),(210460,40916,'hero_image_pos_x','right'),(210461,40916,'_hero_image_pos_x','field_62ec3d05390bb'),(210462,40916,'hero_image_pos_y','top'),(210463,40916,'_hero_image_pos_y','field_62ec3d05390bc'),(210464,40916,'hero_image_pos',''),(210465,40916,'_hero_image_pos','field_62ec3d05390ba'),(210466,40916,'fft_hide_from_listings','0'),(210467,40916,'_fft_hide_from_listings','field_61f1320446ab2'),(210468,40916,'fft_page_format','default'),(210469,40916,'_fft_page_format','field_61ae213f1f218'),(210470,40916,'fft_hide_nav','0'),(210471,40916,'_fft_hide_nav','field_635bd5e43527c'),(210472,40916,'fft_hide_header_call_to_action','0'),(210473,40916,'_fft_hide_header_call_to_action','field_635bd6723527d'),(210474,40916,'fft_page_sitemap','0'),(210475,40916,'_fft_page_sitemap','field_61af9b34e8181'),(210476,40916,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(210477,40916,'_blocks','field_6176696113096'),(210478,40916,'blocks_0_acfe_flexible_toggle',''),(210479,40916,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(210480,40916,'blocks_0_acfe_flexible_layout_title','Text Block'),(210481,40916,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(210482,40916,'blocks_0_options_theme','#ffffff'),(210483,40916,'_blocks_0_options_theme','field_6176830e2ad17'),(210484,40916,'blocks_0_options',''),(210485,40916,'_blocks_0_options','field_6176830e2ad16'),(210486,40916,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(210487,40916,'_blocks_0_text_block_heading','field_617669d413097'),(210488,40916,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(210489,40916,'_blocks_0_text_block_content','field_617669ec13098'),(210490,40916,'blocks_1_acfe_flexible_toggle',''),(210491,40916,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(210492,40916,'blocks_1_acfe_flexible_layout_title','Venues'),(210493,40916,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(210494,40916,'blocks_1_category','a:1:{i:0;s:3:\"417\";}'),(210495,40916,'_blocks_1_category','field_6361407e17657'),(210496,40916,'blocks_1_region',''),(210497,40916,'_blocks_1_region','field_636140bd17659'),(210498,40916,'_thumbnail_id','40915'),(210499,40916,'__thumbnail_id','field_617570855ddaf'),(210500,39493,'hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Find a Coach\";s:3:\"url\";s:12:\"#row-39493-2\";s:6:\"target\";s:0:\"\";}'),(210501,39493,'_hero_actions_0_button','field_61757281285eb'),(210502,40917,'hide_hero','0'),(210503,40917,'_hide_hero','field_66a2380fcda39'),(210504,40917,'hero_title','Find a Biomechanics Coach in Your Area'),(210505,40917,'_hero_title','field_617571fe285e8'),(210506,40917,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(210507,40917,'_hero_text','field_6175723c285e9'),(210508,40917,'hero_actions','1'),(210509,40917,'_hero_actions','field_61757270285ea'),(210510,40917,'hero_style','default'),(210511,40917,'_hero_style','field_62051d9dc5324'),(210512,40917,'hero_image_pos_x','right'),(210513,40917,'_hero_image_pos_x','field_62ec3d05390bb'),(210514,40917,'hero_image_pos_y','top'),(210515,40917,'_hero_image_pos_y','field_62ec3d05390bc'),(210516,40917,'hero_image_pos',''),(210517,40917,'_hero_image_pos','field_62ec3d05390ba'),(210518,40917,'fft_hide_from_listings','0'),(210519,40917,'_fft_hide_from_listings','field_61f1320446ab2'),(210520,40917,'fft_page_format','default'),(210521,40917,'_fft_page_format','field_61ae213f1f218'),(210522,40917,'fft_hide_nav','0'),(210523,40917,'_fft_hide_nav','field_635bd5e43527c'),(210524,40917,'fft_hide_header_call_to_action','0'),(210525,40917,'_fft_hide_header_call_to_action','field_635bd6723527d'),(210526,40917,'fft_page_sitemap','0'),(210527,40917,'_fft_page_sitemap','field_61af9b34e8181'),(210528,40917,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(210529,40917,'_blocks','field_6176696113096'),(210530,40917,'blocks_0_acfe_flexible_toggle',''),(210531,40917,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(210532,40917,'blocks_0_acfe_flexible_layout_title','Text Block'),(210533,40917,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(210534,40917,'blocks_0_options_theme','#ffffff'),(210535,40917,'_blocks_0_options_theme','field_6176830e2ad17'),(210536,40917,'blocks_0_options',''),(210537,40917,'_blocks_0_options','field_6176830e2ad16'),(210538,40917,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(210539,40917,'_blocks_0_text_block_heading','field_617669d413097'),(210540,40917,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(210541,40917,'_blocks_0_text_block_content','field_617669ec13098'),(210542,40917,'blocks_1_acfe_flexible_toggle',''),(210543,40917,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(210544,40917,'blocks_1_acfe_flexible_layout_title','Venues'),(210545,40917,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(210546,40917,'blocks_1_category','a:1:{i:0;s:3:\"417\";}'),(210547,40917,'_blocks_1_category','field_6361407e17657'),(210548,40917,'blocks_1_region',''),(210549,40917,'_blocks_1_region','field_636140bd17659'),(210550,40917,'_thumbnail_id','40915'),(210551,40917,'__thumbnail_id','field_617570855ddaf'),(210552,40917,'hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Find a Coach\";s:3:\"url\";s:12:\"#row-39493-2\";s:6:\"target\";s:0:\"\";}'),(210553,40917,'_hero_actions_0_button','field_61757281285eb'),(210554,40918,'_wp_attached_file','2024/09/blogs-hero-image.jpg'),(210555,40918,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:28:\"2024/09/blogs-hero-image.jpg\";s:8:\"filesize\";i:399265;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81590;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31984;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66141;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38258;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93633;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31891;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81590;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32415;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-675x667.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75084;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93633;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34143;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93633;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29457;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:28:\"blogs-hero-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72661;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:86:\"Copyright (c) 2024 PeopleImages.com - Yuri A/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:52:\"Remote,Work,,Laptop,And,Man,On,Sofa,With,Drink,,Blog\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:389:\"couch,blog,laptop,remote,at home,tea,remote work,review,startup,contact,communication,tech,sofa,drinking,lounge,work,creative,drink,morning,planning,person,adult,job,internet,male,cup,house,interior,computer,search,web,design,ecommerce,living room,working,company,man,small business,table,digital,business,reading,designer,technology,entrepreneur,home,interior design,coffee,online,finance\";}}}'),(210556,39497,'_thumbnail_id','40918'),(210557,40919,'hide_hero','0'),(210558,40919,'_hide_hero','field_66a2380fcda39'),(210559,40919,'hero_title','Blogs'),(210560,40919,'_hero_title','field_617571fe285e8'),(210561,40919,'hero_text','Explore Insights and Expert Tips on Everything Biomechanics, Including Movement, Performance and Injury Prevention'),(210562,40919,'_hero_text','field_6175723c285e9'),(210563,40919,'hero_actions',''),(210564,40919,'_hero_actions','field_61757270285ea'),(210565,40919,'hero_style','default'),(210566,40919,'_hero_style','field_62051d9dc5324'),(210567,40919,'hero_image_pos_x','right'),(210568,40919,'_hero_image_pos_x','field_62ec3d05390bb'),(210569,40919,'hero_image_pos_y','top'),(210570,40919,'_hero_image_pos_y','field_62ec3d05390bc'),(210571,40919,'hero_image_pos',''),(210572,40919,'_hero_image_pos','field_62ec3d05390ba'),(210573,40919,'fft_hide_from_listings','0'),(210574,40919,'_fft_hide_from_listings','field_61f1320446ab2'),(210575,40919,'fft_page_format','default'),(210576,40919,'_fft_page_format','field_61ae213f1f218'),(210577,40919,'fft_hide_nav','0'),(210578,40919,'_fft_hide_nav','field_635bd5e43527c'),(210579,40919,'fft_hide_header_call_to_action','0'),(210580,40919,'_fft_hide_header_call_to_action','field_635bd6723527d'),(210581,40919,'fft_page_sitemap','0'),(210582,40919,'_fft_page_sitemap','field_61af9b34e8181'),(210583,40919,'blocks','a:1:{i:0;s:5:\"cards\";}'),(210584,40919,'_blocks','field_6176696113096'),(210585,40919,'blocks_0_acfe_flexible_toggle',''),(210586,40919,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(210587,40919,'blocks_0_acfe_flexible_layout_title','Cards'),(210588,40919,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(210589,40919,'blocks_0_options_theme','#ffffff'),(210590,40919,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(210591,40919,'blocks_0_options_format','grid'),(210592,40919,'_blocks_0_options_format','field_617a7b15245b5'),(210593,40919,'blocks_0_options_style','default'),(210594,40919,'_blocks_0_options_style','field_6278ffb63484a'),(210595,40919,'blocks_0_options_cards_current_listing','0'),(210596,40919,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(210597,40919,'blocks_0_options_cards_content','post_type'),(210598,40919,'_blocks_0_options_cards_content','field_617aba6122688'),(210599,40919,'blocks_0_options_cards_post_type','post'),(210600,40919,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(210601,40919,'blocks_0_options_cards_posts_per_page','6'),(210602,40919,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(210603,40919,'blocks_0_options',''),(210604,40919,'_blocks_0_options','field_617a7b15245b3'),(210605,40919,'blocks_0_options_cards_term','5'),(210606,40919,'_blocks_0_options_cards_term','field_6193f7c180895'),(210607,40919,'blocks_0_options_cards_pagination','0'),(210608,40919,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(210609,40919,'blocks_0_options_cards_filter_taxonomy',''),(210610,40919,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(210611,40919,'_thumbnail_id','40918'),(210612,40919,'__thumbnail_id','field_617570855ddaf'),(210613,40920,'_wp_attached_file','2024/09/Why-study-this-course-image.jpg'),(210614,40920,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:39:\"2024/09/Why-study-this-course-image.jpg\";s:8:\"filesize\";i:317421;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52487;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24844;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43695;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28460;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57746;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24791;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52487;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24892;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-675x667.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49069;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57746;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25774;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-900x667.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:667;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57746;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23226;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:39:\"Why-study-this-course-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47063;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:68:\"Copyright (c) 2024 78image/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:52:\"A,Man,Writing,Questions,On,Glass,And,The,Hatena,Mark\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:310:\"reason,study,japan,cause,why,learning,investigate,thinking,point,research,unknown,search,problem,judgment,beginner,inquiry,lost,writing,understanding,judge,man,question mark,businessman,worry,image,glass,business,decision,question,check,whereabouts,mystery,management,background,person,consideration,hesitation\";}}}'),(210615,39214,'blocks_8_acfe_flexible_toggle',''),(210616,39214,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(210617,39214,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(210618,39214,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(210619,39214,'blocks_8_options_theme','#f5f5f5'),(210620,39214,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(210621,39214,'blocks_8_options_reverse','0'),(210622,39214,'_blocks_8_options_reverse','field_61768049bb8ac'),(210623,39214,'blocks_8_options',''),(210624,39214,'_blocks_8_options','field_617682517c334'),(210625,39214,'blocks_8_split_5050_image','40920'),(210626,39214,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(210627,39214,'blocks_8_split_5050_video',''),(210628,39214,'_blocks_8_split_5050_video','field_6239f3160848a'),(210629,39214,'blocks_8_split_5050_content_title',''),(210630,39214,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(210631,39214,'blocks_8_split_5050_content_heading','Why Study This Course?'),(210632,39214,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(210633,39214,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(210634,39214,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(210635,39214,'blocks_8_split_5050_content_actions',''),(210636,39214,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(210637,39214,'blocks_8_split_5050_content',''),(210638,39214,'_blocks_8_split_5050_content','field_61767afceb8ba'),(210639,40921,'hide_hero','0'),(210640,40921,'_hide_hero','field_66a2380fcda39'),(210641,40921,'hero_title','Biomechanics and Personal Training'),(210642,40921,'_hero_title','field_617571fe285e8'),(210643,40921,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(210644,40921,'_hero_text','field_6175723c285e9'),(210645,40921,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(210646,40921,'_hero_actions_0_button','field_61757281285eb'),(210647,40921,'hero_actions','1'),(210648,40921,'_hero_actions','field_61757270285ea'),(210649,40921,'hero_style','default'),(210650,40921,'_hero_style','field_62051d9dc5324'),(210651,40921,'_thumbnail_id','39215'),(210652,40921,'__thumbnail_id','field_617570855ddaf'),(210653,40921,'hero_image_pos_x','right'),(210654,40921,'_hero_image_pos_x','field_62ec3d05390bb'),(210655,40921,'hero_image_pos_y','top'),(210656,40921,'_hero_image_pos_y','field_62ec3d05390bc'),(210657,40921,'hero_image_pos',''),(210658,40921,'_hero_image_pos','field_62ec3d05390ba'),(210659,40921,'fft_hide_from_listings','0'),(210660,40921,'_fft_hide_from_listings','field_61f1320446ab2'),(210661,40921,'fft_page_format','default'),(210662,40921,'_fft_page_format','field_61ae213f1f218'),(210663,40921,'fft_hide_nav','0'),(210664,40921,'_fft_hide_nav','field_635bd5e43527c'),(210665,40921,'fft_hide_header_call_to_action','0'),(210666,40921,'_fft_hide_header_call_to_action','field_635bd6723527d'),(210667,40921,'fft_page_sitemap','0'),(210668,40921,'_fft_page_sitemap','field_61af9b34e8181'),(210669,40921,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:10:\"split_5050\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(210670,40921,'_blocks','field_6176696113096'),(210671,40921,'blocks_0_acfe_flexible_toggle',''),(210672,40921,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(210673,40921,'blocks_0_acfe_flexible_layout_title','Template'),(210674,40921,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(210675,40921,'blocks_0_template','39087'),(210676,40921,'_blocks_0_template','field_617bdd570fe01'),(210677,40921,'blocks_1_acfe_flexible_toggle',''),(210678,40921,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(210679,40921,'blocks_1_acfe_flexible_layout_title','Steps'),(210680,40921,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(210681,40921,'blocks_1_row_content_title',''),(210682,40921,'_blocks_1_row_content_title','field_64888cd1e26e0'),(210683,40921,'blocks_1_row_content_heading','Benefits of training with us'),(210684,40921,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(210685,40921,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(210686,40921,'_blocks_1_row_content_text','field_64888ce2e26e2'),(210687,40921,'blocks_1_row_content_actions',''),(210688,40921,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(210689,40921,'blocks_1_row_content',''),(210690,40921,'_blocks_1_row_content','field_64888cb0e26df'),(210691,40921,'blocks_1_steps_0_icon','progression.svg'),(210692,40921,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(210693,40921,'blocks_1_steps_0_title','Earning Potential'),(210694,40921,'_blocks_1_steps_0_title','field_64888d94e26e7'),(210695,40921,'blocks_1_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(210696,40921,'_blocks_1_steps_0_text','field_64888d99e26e8'),(210697,40921,'blocks_1_steps_1_icon','support.svg'),(210698,40921,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(210699,40921,'blocks_1_steps_1_title','Lifetime Learning Promise'),(210700,40921,'_blocks_1_steps_1_title','field_64888d94e26e7'),(210701,40921,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(210702,40921,'_blocks_1_steps_1_text','field_64888d99e26e8'),(210703,40921,'blocks_1_steps_2_icon','qualification.svg'),(210704,40921,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(210705,40921,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(210706,40921,'_blocks_1_steps_2_title','field_64888d94e26e7'),(210707,40921,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(210708,40921,'_blocks_1_steps_2_text','field_64888d99e26e8'),(210709,40921,'blocks_1_steps_3_icon','leaders.svg'),(210710,40921,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(210711,40921,'blocks_1_steps_3_title','Stand Out From the Crowd'),(210712,40921,'_blocks_1_steps_3_title','field_64888d94e26e7'),(210713,40921,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(210714,40921,'_blocks_1_steps_3_text','field_64888d99e26e8'),(210715,40921,'blocks_1_steps','4'),(210716,40921,'_blocks_1_steps','field_64888d44e26e5'),(210717,40921,'blocks_5_acfe_flexible_toggle',''),(210718,40921,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(210719,40921,'blocks_5_acfe_flexible_layout_title','Tabs'),(210720,40921,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(210721,40921,'blocks_5_options_theme','#ffffff'),(210722,40921,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(210723,40921,'blocks_5_options',''),(210724,40921,'_blocks_5_options','field_6177cfcd8140f'),(210725,40921,'blocks_5_tabs_0_tab_label','What will I learn?'),(210726,40921,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(210727,40921,'blocks_5_tabs_0_tab_content_title',''),(210728,40921,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(210729,40921,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(210730,40921,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(210731,40921,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(210732,40921,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(210733,40921,'blocks_5_tabs_0_tab_content_actions',''),(210734,40921,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(210735,40921,'blocks_5_tabs_0_tab_content',''),(210736,40921,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(210737,40921,'blocks_5_tabs_0_tab_image','39076'),(210738,40921,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(210739,40921,'blocks_5_tabs_1_tab_label','What do I need?'),(210740,40921,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(210741,40921,'blocks_5_tabs_1_tab_content_title',''),(210742,40921,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(210743,40921,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(210744,40921,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(210745,40921,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(210746,40921,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(210747,40921,'blocks_5_tabs_1_tab_content_actions',''),(210748,40921,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(210749,40921,'blocks_5_tabs_1_tab_content',''),(210750,40921,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(210751,40921,'blocks_5_tabs_1_tab_image','39223'),(210752,40921,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(210753,40921,'blocks_5_tabs_2_tab_label','Where can I learn?'),(210754,40921,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(210755,40921,'blocks_5_tabs_2_tab_content_title',''),(210756,40921,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(210757,40921,'blocks_5_tabs_2_tab_content_heading','Locations'),(210758,40921,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(210759,40921,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(210760,40921,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(210761,40921,'blocks_5_tabs_2_tab_content_actions',''),(210762,40921,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(210763,40921,'blocks_5_tabs_2_tab_content',''),(210764,40921,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(210765,40921,'blocks_5_tabs_2_tab_image','39224'),(210766,40921,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(210767,40921,'blocks_5_tabs','3'),(210768,40921,'_blocks_5_tabs','field_6177cff281419'),(210769,40921,'blocks_6_acfe_flexible_toggle',''),(210770,40921,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(210771,40921,'blocks_6_acfe_flexible_layout_title','Text Block'),(210772,40921,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(210773,40921,'blocks_6_options_theme','#b61234'),(210774,40921,'_blocks_6_options_theme','field_6176830e2ad17'),(210775,40921,'blocks_6_options',''),(210776,40921,'_blocks_6_options','field_6176830e2ad16'),(210777,40921,'blocks_6_text_block_heading','Fees & Funding Options'),(210778,40921,'_blocks_6_text_block_heading','field_617669d413097'),(210779,40921,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(210780,40921,'_blocks_6_text_block_content','field_617669ec13098'),(210781,40921,'blocks_7_acfe_flexible_toggle',''),(210782,40921,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(210783,40921,'blocks_7_acfe_flexible_layout_title','Icons'),(210784,40921,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(210785,40921,'blocks_7_options_theme','#b61234'),(210786,40921,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(210787,40921,'blocks_7_options_format','row'),(210788,40921,'_blocks_7_options_format','field_64bfde9a90690'),(210789,40921,'blocks_7_options',''),(210790,40921,'_blocks_7_options','field_64bfdd9b90684'),(210791,40921,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(210792,40921,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(210793,40921,'blocks_7_icon_row_items_0_label','Pay in Full'),(210794,40921,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(210795,40921,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(210796,40921,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(210797,40921,'blocks_7_icon_row_items_1_icon','finance.svg'),(210798,40921,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(210799,40921,'blocks_7_icon_row_items_1_label','0% finance'),(210800,40921,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(210801,40921,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(210802,40921,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(210803,40921,'blocks_7_icon_row_items_2_icon','deposit.svg'),(210804,40921,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(210805,40921,'blocks_7_icon_row_items_2_label','Deposit & balance'),(210806,40921,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(210807,40921,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(210808,40921,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(210809,40921,'blocks_7_icon_row_items','3'),(210810,40921,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(210811,40921,'blocks_9_acfe_flexible_toggle',''),(210812,40921,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(210813,40921,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(210814,40921,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(210815,40921,'blocks_9_testimonial_slider_content_title',''),(210816,40921,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(210817,40921,'blocks_9_testimonial_slider_content_heading','Testimonials'),(210818,40921,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(210819,40921,'blocks_9_testimonial_slider_content_text',''),(210820,40921,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(210821,40921,'blocks_9_testimonial_slider_content_actions',''),(210822,40921,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(210823,40921,'blocks_9_testimonial_slider_content',''),(210824,40921,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(210825,40921,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(210826,40921,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(210827,40921,'blocks_9_testimonial_slider_ambassador_bool','0'),(210828,40921,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(210829,40921,'blocks_10_acfe_flexible_toggle',''),(210830,40921,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(210831,40921,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(210832,40921,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(210833,40921,'blocks_10_options_theme','#ffffff'),(210834,40921,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(210835,40921,'blocks_10_options_state','0'),(210836,40921,'_blocks_10_options_state','field_6239fcb7508c5'),(210837,40921,'blocks_10_options',''),(210838,40921,'_blocks_10_options','field_6177e2991ac44'),(210839,40921,'blocks_10_content_title',''),(210840,40921,'_blocks_10_content_title','field_64d237e8bb1e2'),(210841,40921,'blocks_10_content_heading','Frequently asked questions '),(210842,40921,'_blocks_10_content_heading','field_64d237e8bb1e3'),(210843,40921,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(210844,40921,'_blocks_10_content_text','field_64d237e8bb1e4'),(210845,40921,'blocks_10_content_actions',''),(210846,40921,'_blocks_10_content_actions','field_64d237e8bb1e5'),(210847,40921,'blocks_10_content_align','left'),(210848,40921,'_blocks_10_content_align','field_64d2443e6b6aa'),(210849,40921,'blocks_10_content',''),(210850,40921,'_blocks_10_content','field_64d237e8bb1e1'),(210851,40921,'blocks_10_accordion_content','faqs'),(210852,40921,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(210853,40921,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(210854,40921,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(210855,40921,'blocks_10_actions',''),(210856,40921,'_blocks_10_actions','field_61a746a817f7a'),(210857,40921,'blocks_2_acfe_flexible_toggle',''),(210858,40921,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(210859,40921,'blocks_2_acfe_flexible_layout_title','Form'),(210860,40921,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(210861,40921,'blocks_2_row_content_format','standard'),(210862,40921,'_blocks_2_row_content_format','field_6481ead962881'),(210863,40921,'blocks_2_row_content_title',''),(210864,40921,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(210865,40921,'blocks_2_row_content_heading','Enquire Today'),(210866,40921,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(210867,40921,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(210868,40921,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(210869,40921,'blocks_2_row_content_actions',''),(210870,40921,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(210871,40921,'blocks_2_row_content',''),(210872,40921,'_blocks_2_row_content','field_61a0f5f5b3db0'),(210873,40921,'blocks_2_row_form','40394'),(210874,40921,'_blocks_2_row_form','field_61a4ff2c0b08e'),(210875,40921,'blocks_2_row_form_button_label',''),(210876,40921,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(210877,40921,'blocks_3_acfe_flexible_toggle',''),(210878,40921,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(210879,40921,'blocks_3_acfe_flexible_layout_title','Video'),(210880,40921,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(210881,40921,'blocks_3_size','large'),(210882,40921,'_blocks_3_size','field_6487038f297c1'),(210883,40921,'blocks_3_row_content_title',''),(210884,40921,'_blocks_3_row_content_title','field_64870132a865d'),(210885,40921,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(210886,40921,'_blocks_3_row_content_heading','field_64870142a865e'),(210887,40921,'blocks_3_row_content_text',''),(210888,40921,'_blocks_3_row_content_text','field_64870148a865f'),(210889,40921,'blocks_3_row_content',''),(210890,40921,'_blocks_3_row_content','field_6487008ba865c'),(210891,40921,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(210892,40921,'_blocks_3_video_src','field_6193c4a98ec07'),(210893,40921,'blocks_3_video_thumbnail','39186'),(210894,40921,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(210895,40921,'blocks_4_acfe_flexible_toggle',''),(210896,40921,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(210897,40921,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(210898,40921,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(210899,40921,'blocks_4_options_theme','#ffffff'),(210900,40921,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(210901,40921,'blocks_4_options_reverse','0'),(210902,40921,'_blocks_4_options_reverse','field_61768049bb8ac'),(210903,40921,'blocks_4_options',''),(210904,40921,'_blocks_4_options','field_617682517c334'),(210905,40921,'blocks_4_split_5050_image','39220'),(210906,40921,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(210907,40921,'blocks_4_split_5050_video',''),(210908,40921,'_blocks_4_split_5050_video','field_6239f3160848a'),(210909,40921,'blocks_4_split_5050_content_title',''),(210910,40921,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(210911,40921,'blocks_4_split_5050_content_heading','Why it’s relevant to you as a PT'),(210912,40921,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(210913,40921,'blocks_4_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(210914,40921,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(210915,40921,'blocks_4_split_5050_content_actions',''),(210916,40921,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(210917,40921,'blocks_4_split_5050_content',''),(210918,40921,'_blocks_4_split_5050_content','field_61767afceb8ba'),(210919,40921,'blocks_8_acfe_flexible_toggle',''),(210920,40921,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(210921,40921,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(210922,40921,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(210923,40921,'blocks_8_options_theme','#f5f5f5'),(210924,40921,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(210925,40921,'blocks_8_options_reverse','0'),(210926,40921,'_blocks_8_options_reverse','field_61768049bb8ac'),(210927,40921,'blocks_8_options',''),(210928,40921,'_blocks_8_options','field_617682517c334'),(210929,40921,'blocks_8_split_5050_image','40920'),(210930,40921,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(210931,40921,'blocks_8_split_5050_video',''),(210932,40921,'_blocks_8_split_5050_video','field_6239f3160848a'),(210933,40921,'blocks_8_split_5050_content_title',''),(210934,40921,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(210935,40921,'blocks_8_split_5050_content_heading','Why Study This Course?'),(210936,40921,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(210937,40921,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(210938,40921,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(210939,40921,'blocks_8_split_5050_content_actions',''),(210940,40921,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(210941,40921,'blocks_8_split_5050_content',''),(210942,40921,'_blocks_8_split_5050_content','field_61767afceb8ba'),(211247,39238,'blocks_8_acfe_flexible_toggle',''),(211248,39238,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(211249,39238,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(211250,39238,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(211251,39238,'blocks_8_options_theme','#f5f5f5'),(211252,39238,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(211253,39238,'blocks_8_options_reverse','0'),(211254,39238,'_blocks_8_options_reverse','field_61768049bb8ac'),(211255,39238,'blocks_8_options',''),(211256,39238,'_blocks_8_options','field_617682517c334'),(211257,39238,'blocks_8_split_5050_image','40920'),(211258,39238,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(211259,39238,'blocks_8_split_5050_video',''),(211260,39238,'_blocks_8_split_5050_video','field_6239f3160848a'),(211261,39238,'blocks_8_split_5050_content_title',''),(211262,39238,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(211263,39238,'blocks_8_split_5050_content_heading','Why study this course ?'),(211264,39238,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(211265,39238,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(211266,39238,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(211267,39238,'blocks_8_split_5050_content_actions',''),(211268,39238,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(211269,39238,'blocks_8_split_5050_content',''),(211270,39238,'_blocks_8_split_5050_content','field_61767afceb8ba'),(211271,39238,'blocks_9_acfe_flexible_toggle','1'),(211272,39238,'_blocks_9_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(211273,39238,'blocks_9_acfe_flexible_layout_title','Standard/Editorial Content'),(211274,39238,'_blocks_9_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(211275,39238,'blocks_9_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(211276,39238,'_blocks_9_content','field_6193c9b5eac84'),(211277,39238,'blocks_10_acfe_flexible_toggle',''),(211278,39238,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(211279,39238,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(211280,39238,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(211281,39238,'blocks_10_testimonial_slider_content_title',''),(211282,39238,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(211283,39238,'blocks_10_testimonial_slider_content_heading','Testimonials'),(211284,39238,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(211285,39238,'blocks_10_testimonial_slider_content_text',''),(211286,39238,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(211287,39238,'blocks_10_testimonial_slider_content_actions',''),(211288,39238,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(211289,39238,'blocks_10_testimonial_slider_content',''),(211290,39238,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(211291,39238,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(211292,39238,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(211293,39238,'blocks_10_testimonial_slider_ambassador_bool','0'),(211294,39238,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(211295,39238,'blocks_11_acfe_flexible_toggle',''),(211296,39238,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(211297,39238,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(211298,39238,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(211299,39238,'blocks_11_options_theme','#ffffff'),(211300,39238,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(211301,39238,'blocks_11_options_state','0'),(211302,39238,'_blocks_11_options_state','field_6239fcb7508c5'),(211303,39238,'blocks_11_options',''),(211304,39238,'_blocks_11_options','field_6177e2991ac44'),(211305,39238,'blocks_11_content_title',''),(211306,39238,'_blocks_11_content_title','field_64d237e8bb1e2'),(211307,39238,'blocks_11_content_heading','Frequently Asked Questions '),(211308,39238,'_blocks_11_content_heading','field_64d237e8bb1e3'),(211309,39238,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(211310,39238,'_blocks_11_content_text','field_64d237e8bb1e4'),(211311,39238,'blocks_11_content_actions',''),(211312,39238,'_blocks_11_content_actions','field_64d237e8bb1e5'),(211313,39238,'blocks_11_content_align','left'),(211314,39238,'_blocks_11_content_align','field_64d2443e6b6aa'),(211315,39238,'blocks_11_content',''),(211316,39238,'_blocks_11_content','field_64d237e8bb1e1'),(211317,39238,'blocks_11_accordion_content','faqs'),(211318,39238,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(211319,39238,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(211320,39238,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(211321,39238,'blocks_11_actions',''),(211322,39238,'_blocks_11_actions','field_61a746a817f7a'),(211323,40923,'hide_hero','0'),(211324,40923,'_hide_hero','field_66a2380fcda39'),(211325,40923,'hero_title','Biomechanics and Sports Massage Therapy'),(211326,40923,'_hero_title','field_617571fe285e8'),(211327,40923,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(211328,40923,'_hero_text','field_6175723c285e9'),(211329,40923,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39238-3\";s:6:\"target\";s:0:\"\";}'),(211330,40923,'_hero_actions_0_button','field_61757281285eb'),(211331,40923,'hero_actions','1'),(211332,40923,'_hero_actions','field_61757270285ea'),(211333,40923,'hero_style','default'),(211334,40923,'_hero_style','field_62051d9dc5324'),(211335,40923,'_thumbnail_id','39240'),(211336,40923,'__thumbnail_id','field_617570855ddaf'),(211337,40923,'hero_image_pos_x','right'),(211338,40923,'_hero_image_pos_x','field_62ec3d05390bb'),(211339,40923,'hero_image_pos_y','top'),(211340,40923,'_hero_image_pos_y','field_62ec3d05390bc'),(211341,40923,'hero_image_pos',''),(211342,40923,'_hero_image_pos','field_62ec3d05390ba'),(211343,40923,'fft_hide_from_listings','0'),(211344,40923,'_fft_hide_from_listings','field_61f1320446ab2'),(211345,40923,'fft_page_format','default'),(211346,40923,'_fft_page_format','field_61ae213f1f218'),(211347,40923,'fft_hide_nav','0'),(211348,40923,'_fft_hide_nav','field_635bd5e43527c'),(211349,40923,'fft_hide_header_call_to_action','0'),(211350,40923,'_fft_hide_header_call_to_action','field_635bd6723527d'),(211351,40923,'fft_page_sitemap','0'),(211352,40923,'_fft_page_sitemap','field_61af9b34e8181'),(211353,40923,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:10:\"split_5050\";i:9;s:16:\"standard_content\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(211354,40923,'_blocks','field_6176696113096'),(211355,40923,'blocks_0_acfe_flexible_toggle',''),(211356,40923,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(211357,40923,'blocks_0_acfe_flexible_layout_title','Template'),(211358,40923,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(211359,40923,'blocks_0_template','39087'),(211360,40923,'_blocks_0_template','field_617bdd570fe01'),(211361,40923,'blocks_4_acfe_flexible_toggle',''),(211362,40923,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(211363,40923,'blocks_4_acfe_flexible_layout_title','Tabs'),(211364,40923,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(211365,40923,'blocks_4_options_theme','#ffffff'),(211366,40923,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(211367,40923,'blocks_4_options',''),(211368,40923,'_blocks_4_options','field_6177cfcd8140f'),(211369,40923,'blocks_4_tabs_0_tab_label','What will I learn ?'),(211370,40923,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(211371,40923,'blocks_4_tabs_0_tab_content_title',''),(211372,40923,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(211373,40923,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(211374,40923,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(211375,40923,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(211376,40923,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(211377,40923,'blocks_4_tabs_0_tab_content_actions',''),(211378,40923,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(211379,40923,'blocks_4_tabs_0_tab_content',''),(211380,40923,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(211381,40923,'blocks_4_tabs_0_tab_image','39076'),(211382,40923,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(211383,40923,'blocks_4_tabs_1_tab_label','What do I need ?'),(211384,40923,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(211385,40923,'blocks_4_tabs_1_tab_content_title',''),(211386,40923,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(211387,40923,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(211388,40923,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(211389,40923,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(211390,40923,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(211391,40923,'blocks_4_tabs_1_tab_content_actions',''),(211392,40923,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(211393,40923,'blocks_4_tabs_1_tab_content',''),(211394,40923,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(211395,40923,'blocks_4_tabs_1_tab_image','39223'),(211396,40923,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(211397,40923,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(211398,40923,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(211399,40923,'blocks_4_tabs_2_tab_content_title',''),(211400,40923,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(211401,40923,'blocks_4_tabs_2_tab_content_heading','Locations'),(211402,40923,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(211403,40923,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(211404,40923,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(211405,40923,'blocks_4_tabs_2_tab_content_actions',''),(211406,40923,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(211407,40923,'blocks_4_tabs_2_tab_content',''),(211408,40923,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(211409,40923,'blocks_4_tabs_2_tab_image','39224'),(211410,40923,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(211411,40923,'blocks_4_tabs','3'),(211412,40923,'_blocks_4_tabs','field_6177cff281419'),(211413,40923,'blocks_5_acfe_flexible_toggle',''),(211414,40923,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(211415,40923,'blocks_5_acfe_flexible_layout_title','Text Block'),(211416,40923,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(211417,40923,'blocks_5_options_theme','#b61234'),(211418,40923,'_blocks_5_options_theme','field_6176830e2ad17'),(211419,40923,'blocks_5_options',''),(211420,40923,'_blocks_5_options','field_6176830e2ad16'),(211421,40923,'blocks_5_text_block_heading','Fees & Funding Options'),(211422,40923,'_blocks_5_text_block_heading','field_617669d413097'),(211423,40923,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(211424,40923,'_blocks_5_text_block_content','field_617669ec13098'),(211425,40923,'blocks_1_acfe_flexible_toggle',''),(211426,40923,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(211427,40923,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(211428,40923,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(211429,40923,'blocks_1_options_theme','#ffffff'),(211430,40923,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(211431,40923,'blocks_1_options_reverse','0'),(211432,40923,'_blocks_1_options_reverse','field_61768049bb8ac'),(211433,40923,'blocks_1_options',''),(211434,40923,'_blocks_1_options','field_617682517c334'),(211435,40923,'blocks_1_split_5050_image','39241'),(211436,40923,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(211437,40923,'blocks_1_split_5050_video',''),(211438,40923,'_blocks_1_split_5050_video','field_6239f3160848a'),(211439,40923,'blocks_1_split_5050_content_title',''),(211440,40923,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(211441,40923,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(211442,40923,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(211443,40923,'blocks_1_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(211444,40923,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(211445,40923,'blocks_1_split_5050_content_actions',''),(211446,40923,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(211447,40923,'blocks_1_split_5050_content',''),(211448,40923,'_blocks_1_split_5050_content','field_61767afceb8ba'),(211449,40923,'blocks_6_acfe_flexible_toggle',''),(211450,40923,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(211451,40923,'blocks_6_acfe_flexible_layout_title','Icons'),(211452,40923,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(211453,40923,'blocks_6_options_theme','#b61234'),(211454,40923,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(211455,40923,'blocks_6_options_format','row'),(211456,40923,'_blocks_6_options_format','field_64bfde9a90690'),(211457,40923,'blocks_6_options',''),(211458,40923,'_blocks_6_options','field_64bfdd9b90684'),(211459,40923,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(211460,40923,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(211461,40923,'blocks_6_icon_row_items_0_label','Pay in Full'),(211462,40923,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(211463,40923,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(211464,40923,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(211465,40923,'blocks_6_icon_row_items_1_icon','finance.svg'),(211466,40923,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(211467,40923,'blocks_6_icon_row_items_1_label','0% Finance'),(211468,40923,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(211469,40923,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(211470,40923,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(211471,40923,'blocks_6_icon_row_items_2_icon','deposit.svg'),(211472,40923,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(211473,40923,'blocks_6_icon_row_items_2_label','Deposit & balance'),(211474,40923,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(211475,40923,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(211476,40923,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(211477,40923,'blocks_6_icon_row_items','3'),(211478,40923,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(211479,40923,'blocks_7_acfe_flexible_toggle',''),(211480,40923,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(211481,40923,'blocks_7_acfe_flexible_layout_title','Steps'),(211482,40923,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(211483,40923,'blocks_7_row_content_title',''),(211484,40923,'_blocks_7_row_content_title','field_64888cd1e26e0'),(211485,40923,'blocks_7_row_content_heading','Benefits of Training with Us'),(211486,40923,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(211487,40923,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(211488,40923,'_blocks_7_row_content_text','field_64888ce2e26e2'),(211489,40923,'blocks_7_row_content_actions',''),(211490,40923,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(211491,40923,'blocks_7_row_content',''),(211492,40923,'_blocks_7_row_content','field_64888cb0e26df'),(211493,40923,'blocks_7_steps_0_icon','progression.svg'),(211494,40923,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(211495,40923,'blocks_7_steps_0_title','Earning potential'),(211496,40923,'_blocks_7_steps_0_title','field_64888d94e26e7'),(211497,40923,'blocks_7_steps_0_text','Attract new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(211498,40923,'_blocks_7_steps_0_text','field_64888d99e26e8'),(211499,40923,'blocks_7_steps_1_icon','support.svg'),(211500,40923,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(211501,40923,'blocks_7_steps_1_title','Lifetime learning promise'),(211502,40923,'_blocks_7_steps_1_title','field_64888d94e26e7'),(211503,40923,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(211504,40923,'_blocks_7_steps_1_text','field_64888d99e26e8'),(211505,40923,'blocks_7_steps_2_icon','qualification.svg'),(211506,40923,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(211507,40923,'blocks_7_steps_2_title','Evidence based hands on learning'),(211508,40923,'_blocks_7_steps_2_title','field_64888d94e26e7'),(211509,40923,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn how to screen and test to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(211510,40923,'_blocks_7_steps_2_text','field_64888d99e26e8'),(211511,40923,'blocks_7_steps_3_icon','leaders.svg'),(211512,40923,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(211513,40923,'blocks_7_steps_3_title','Stand out from the crowd'),(211514,40923,'_blocks_7_steps_3_title','field_64888d94e26e7'),(211515,40923,'blocks_7_steps_3_text','As a Sports Massage Therapist through the Biomechanics Coaching Diploma we will give you the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course can also enhance your relationship with other healthcare providers because you will have confidence in a common language'),(211516,40923,'_blocks_7_steps_3_text','field_64888d99e26e8'),(211517,40923,'blocks_7_steps','4'),(211518,40923,'_blocks_7_steps','field_64888d44e26e5'),(211519,40923,'blocks_2_acfe_flexible_toggle',''),(211520,40923,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(211521,40923,'blocks_2_acfe_flexible_layout_title','Form'),(211522,40923,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(211523,40923,'blocks_2_row_content_format','standard'),(211524,40923,'_blocks_2_row_content_format','field_6481ead962881'),(211525,40923,'blocks_2_row_content_title',''),(211526,40923,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(211527,40923,'blocks_2_row_content_heading','Enquire Today'),(211528,40923,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(211529,40923,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(211530,40923,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(211531,40923,'blocks_2_row_content_actions',''),(211532,40923,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(211533,40923,'blocks_2_row_content',''),(211534,40923,'_blocks_2_row_content','field_61a0f5f5b3db0'),(211535,40923,'blocks_2_row_form','40394'),(211536,40923,'_blocks_2_row_form','field_61a4ff2c0b08e'),(211537,40923,'blocks_2_row_form_button_label',''),(211538,40923,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(211539,40923,'blocks_3_acfe_flexible_toggle',''),(211540,40923,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(211541,40923,'blocks_3_acfe_flexible_layout_title','Video'),(211542,40923,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(211543,40923,'blocks_3_size','large'),(211544,40923,'_blocks_3_size','field_6487038f297c1'),(211545,40923,'blocks_3_row_content_title',''),(211546,40923,'_blocks_3_row_content_title','field_64870132a865d'),(211547,40923,'blocks_3_row_content_heading',''),(211548,40923,'_blocks_3_row_content_heading','field_64870142a865e'),(211549,40923,'blocks_3_row_content_text',''),(211550,40923,'_blocks_3_row_content_text','field_64870148a865f'),(211551,40923,'blocks_3_row_content',''),(211552,40923,'_blocks_3_row_content','field_6487008ba865c'),(211553,40923,'blocks_3_video_src',''),(211554,40923,'_blocks_3_video_src','field_6193c4a98ec07'),(211555,40923,'blocks_3_video_thumbnail',''),(211556,40923,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(211557,40923,'blocks_8_acfe_flexible_toggle',''),(211558,40923,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(211559,40923,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(211560,40923,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(211561,40923,'blocks_8_options_theme','#f5f5f5'),(211562,40923,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(211563,40923,'blocks_8_options_reverse','0'),(211564,40923,'_blocks_8_options_reverse','field_61768049bb8ac'),(211565,40923,'blocks_8_options',''),(211566,40923,'_blocks_8_options','field_617682517c334'),(211567,40923,'blocks_8_split_5050_image','40920'),(211568,40923,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(211569,40923,'blocks_8_split_5050_video',''),(211570,40923,'_blocks_8_split_5050_video','field_6239f3160848a'),(211571,40923,'blocks_8_split_5050_content_title',''),(211572,40923,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(211573,40923,'blocks_8_split_5050_content_heading','Why study this course ?'),(211574,40923,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(211575,40923,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(211576,40923,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(211577,40923,'blocks_8_split_5050_content_actions',''),(211578,40923,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(211579,40923,'blocks_8_split_5050_content',''),(211580,40923,'_blocks_8_split_5050_content','field_61767afceb8ba'),(211581,40923,'blocks_9_acfe_flexible_toggle','1'),(211582,40923,'_blocks_9_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(211583,40923,'blocks_9_acfe_flexible_layout_title','Standard/Editorial Content'),(211584,40923,'_blocks_9_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(211585,40923,'blocks_9_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(211586,40923,'_blocks_9_content','field_6193c9b5eac84'),(211587,40923,'blocks_10_acfe_flexible_toggle',''),(211588,40923,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(211589,40923,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(211590,40923,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(211591,40923,'blocks_10_testimonial_slider_content_title',''),(211592,40923,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(211593,40923,'blocks_10_testimonial_slider_content_heading','Testimonials'),(211594,40923,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(211595,40923,'blocks_10_testimonial_slider_content_text',''),(211596,40923,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(211597,40923,'blocks_10_testimonial_slider_content_actions',''),(211598,40923,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(211599,40923,'blocks_10_testimonial_slider_content',''),(211600,40923,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(211601,40923,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(211602,40923,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(211603,40923,'blocks_10_testimonial_slider_ambassador_bool','0'),(211604,40923,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(211605,40923,'blocks_11_acfe_flexible_toggle',''),(211606,40923,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(211607,40923,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(211608,40923,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(211609,40923,'blocks_11_options_theme','#ffffff'),(211610,40923,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(211611,40923,'blocks_11_options_state','0'),(211612,40923,'_blocks_11_options_state','field_6239fcb7508c5'),(211613,40923,'blocks_11_options',''),(211614,40923,'_blocks_11_options','field_6177e2991ac44'),(211615,40923,'blocks_11_content_title',''),(211616,40923,'_blocks_11_content_title','field_64d237e8bb1e2'),(211617,40923,'blocks_11_content_heading','Frequently Asked Questions '),(211618,40923,'_blocks_11_content_heading','field_64d237e8bb1e3'),(211619,40923,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329829444'),(211620,40923,'_blocks_11_content_text','field_64d237e8bb1e4'),(211621,40923,'blocks_11_content_actions',''),(211622,40923,'_blocks_11_content_actions','field_64d237e8bb1e5'),(211623,40923,'blocks_11_content_align','left'),(211624,40923,'_blocks_11_content_align','field_64d2443e6b6aa'),(211625,40923,'blocks_11_content',''),(211626,40923,'_blocks_11_content','field_64d237e8bb1e1'),(211627,40923,'blocks_11_accordion_content','faqs'),(211628,40923,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(211629,40923,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(211630,40923,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(211631,40923,'blocks_11_actions',''),(211632,40923,'_blocks_11_actions','field_61a746a817f7a'),(211657,40924,'hide_hero','0'),(211658,40924,'_hide_hero','field_66a2380fcda39'),(211659,40924,'hero_title','Biomechanics and Podiatrists'),(211660,40924,'_hero_title','field_617571fe285e8'),(211661,40924,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(211662,40924,'_hero_text','field_6175723c285e9'),(211663,40924,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(211664,40924,'_hero_actions_0_button','field_61757281285eb'),(211665,40924,'hero_actions','1'),(211666,40924,'_hero_actions','field_61757270285ea'),(211667,40924,'hero_style','default'),(211668,40924,'_hero_style','field_62051d9dc5324'),(211669,40924,'_thumbnail_id','39247'),(211670,40924,'__thumbnail_id','field_617570855ddaf'),(211671,40924,'hero_image_pos_x','right'),(211672,40924,'_hero_image_pos_x','field_62ec3d05390bb'),(211673,40924,'hero_image_pos_y','top'),(211674,40924,'_hero_image_pos_y','field_62ec3d05390bc'),(211675,40924,'hero_image_pos',''),(211676,40924,'_hero_image_pos','field_62ec3d05390ba'),(211677,40924,'fft_hide_from_listings','0'),(211678,40924,'_fft_hide_from_listings','field_61f1320446ab2'),(211679,40924,'fft_page_format','default'),(211680,40924,'_fft_page_format','field_61ae213f1f218'),(211681,40924,'fft_hide_nav','0'),(211682,40924,'_fft_hide_nav','field_635bd5e43527c'),(211683,40924,'fft_hide_header_call_to_action','0'),(211684,40924,'_fft_hide_header_call_to_action','field_635bd6723527d'),(211685,40924,'fft_page_sitemap','0'),(211686,40924,'_fft_page_sitemap','field_61af9b34e8181'),(211687,40924,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(211688,40924,'_blocks','field_6176696113096'),(211689,40924,'blocks_2_acfe_flexible_toggle',''),(211690,40924,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(211691,40924,'blocks_2_acfe_flexible_layout_title','Form'),(211692,40924,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(211693,40924,'blocks_2_row_content_format','standard'),(211694,40924,'_blocks_2_row_content_format','field_6481ead962881'),(211695,40924,'blocks_2_row_content_title',''),(211696,40924,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(211697,40924,'blocks_2_row_content_heading','Enquire Today'),(211698,40924,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(211699,40924,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(211700,40924,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(211701,40924,'blocks_2_row_content_actions',''),(211702,40924,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(211703,40924,'blocks_2_row_content',''),(211704,40924,'_blocks_2_row_content','field_61a0f5f5b3db0'),(211705,40924,'blocks_2_row_form','40394'),(211706,40924,'_blocks_2_row_form','field_61a4ff2c0b08e'),(211707,40924,'blocks_2_row_form_button_label',''),(211708,40924,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(211709,40924,'blocks_0_acfe_flexible_toggle',''),(211710,40924,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(211711,40924,'blocks_0_acfe_flexible_layout_title','Template'),(211712,40924,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(211713,40924,'blocks_0_template','39087'),(211714,40924,'_blocks_0_template','field_617bdd570fe01'),(211715,40924,'blocks_1_acfe_flexible_toggle',''),(211716,40924,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(211717,40924,'blocks_1_acfe_flexible_layout_title','Steps'),(211718,40924,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(211719,40924,'blocks_1_row_content_title',''),(211720,40924,'_blocks_1_row_content_title','field_64888cd1e26e0'),(211721,40924,'blocks_1_row_content_heading','Benefits of training with us'),(211722,40924,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(211723,40924,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(211724,40924,'_blocks_1_row_content_text','field_64888ce2e26e2'),(211725,40924,'blocks_1_row_content_actions',''),(211726,40924,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(211727,40924,'blocks_1_row_content',''),(211728,40924,'_blocks_1_row_content','field_64888cb0e26df'),(211729,40924,'blocks_1_steps_0_icon','progression.svg'),(211730,40924,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(211731,40924,'blocks_1_steps_0_title','Earning Potential'),(211732,40924,'_blocks_1_steps_0_title','field_64888d94e26e7'),(211733,40924,'blocks_1_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(211734,40924,'_blocks_1_steps_0_text','field_64888d99e26e8'),(211735,40924,'blocks_1_steps_1_icon','support.svg'),(211736,40924,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(211737,40924,'blocks_1_steps_1_title','Lifetime Learning Promise'),(211738,40924,'_blocks_1_steps_1_title','field_64888d94e26e7'),(211739,40924,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(211740,40924,'_blocks_1_steps_1_text','field_64888d99e26e8'),(211741,40924,'blocks_1_steps_2_icon','qualification.svg'),(211742,40924,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(211743,40924,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(211744,40924,'_blocks_1_steps_2_title','field_64888d94e26e7'),(211745,40924,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(211746,40924,'_blocks_1_steps_2_text','field_64888d99e26e8'),(211747,40924,'blocks_1_steps_3_icon','leaders.svg'),(211748,40924,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(211749,40924,'blocks_1_steps_3_title','Stand Out From the Crowd'),(211750,40924,'_blocks_1_steps_3_title','field_64888d94e26e7'),(211751,40924,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(211752,40924,'_blocks_1_steps_3_text','field_64888d99e26e8'),(211753,40924,'blocks_1_steps','4'),(211754,40924,'_blocks_1_steps','field_64888d44e26e5'),(211755,40924,'blocks_3_acfe_flexible_toggle',''),(211756,40924,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(211757,40924,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(211758,40924,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(211759,40924,'blocks_3_options_theme','#ffffff'),(211760,40924,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(211761,40924,'blocks_3_options_reverse','0'),(211762,40924,'_blocks_3_options_reverse','field_61768049bb8ac'),(211763,40924,'blocks_3_options',''),(211764,40924,'_blocks_3_options','field_617682517c334'),(211765,40924,'blocks_3_split_5050_image','39617'),(211766,40924,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(211767,40924,'blocks_3_split_5050_video',''),(211768,40924,'_blocks_3_split_5050_video','field_6239f3160848a'),(211769,40924,'blocks_3_split_5050_content_title',''),(211770,40924,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(211771,40924,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(211772,40924,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(211773,40924,'blocks_3_split_5050_content_text','This integrated system is enabling podiatrists to find solutions to foot problems through understanding the upper body and shoulders. By assessing the entire body, this unique approach gives podiatrists the ability to retain clients longer and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(211774,40924,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(211775,40924,'blocks_3_split_5050_content_actions',''),(211776,40924,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(211777,40924,'blocks_3_split_5050_content',''),(211778,40924,'_blocks_3_split_5050_content','field_61767afceb8ba'),(211779,40924,'blocks_4_acfe_flexible_toggle',''),(211780,40924,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(211781,40924,'blocks_4_acfe_flexible_layout_title','Tabs'),(211782,40924,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(211783,40924,'blocks_4_options_theme','#ffffff'),(211784,40924,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(211785,40924,'blocks_4_options',''),(211786,40924,'_blocks_4_options','field_6177cfcd8140f'),(211787,40924,'blocks_4_tabs_0_tab_label','What will I learn?'),(211788,40924,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(211789,40924,'blocks_4_tabs_0_tab_content_title',''),(211790,40924,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(211791,40924,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(211792,40924,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(211793,40924,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(211794,40924,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(211795,40924,'blocks_4_tabs_0_tab_content_actions',''),(211796,40924,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(211797,40924,'blocks_4_tabs_0_tab_content',''),(211798,40924,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(211799,40924,'blocks_4_tabs_0_tab_image','39076'),(211800,40924,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(211801,40924,'blocks_4_tabs_1_tab_label','What do I need?'),(211802,40924,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(211803,40924,'blocks_4_tabs_1_tab_content_title',''),(211804,40924,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(211805,40924,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(211806,40924,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(211807,40924,'blocks_4_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(211808,40924,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(211809,40924,'blocks_4_tabs_1_tab_content_actions',''),(211810,40924,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(211811,40924,'blocks_4_tabs_1_tab_content',''),(211812,40924,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(211813,40924,'blocks_4_tabs_1_tab_image','39223'),(211814,40924,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(211815,40924,'blocks_4_tabs_2_tab_label','Where can I learn?'),(211816,40924,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(211817,40924,'blocks_4_tabs_2_tab_content_title',''),(211818,40924,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(211819,40924,'blocks_4_tabs_2_tab_content_heading','Locations'),(211820,40924,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(211821,40924,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(211822,40924,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(211823,40924,'blocks_4_tabs_2_tab_content_actions',''),(211824,40924,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(211825,40924,'blocks_4_tabs_2_tab_content',''),(211826,40924,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(211827,40924,'blocks_4_tabs_2_tab_image','39224'),(211828,40924,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(211829,40924,'blocks_4_tabs','3'),(211830,40924,'_blocks_4_tabs','field_6177cff281419'),(211831,40924,'blocks_5_acfe_flexible_toggle',''),(211832,40924,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(211833,40924,'blocks_5_acfe_flexible_layout_title','Text Block'),(211834,40924,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(211835,40924,'blocks_5_options_theme','#b61234'),(211836,40924,'_blocks_5_options_theme','field_6176830e2ad17'),(211837,40924,'blocks_5_options',''),(211838,40924,'_blocks_5_options','field_6176830e2ad16'),(211839,40924,'blocks_5_text_block_heading','Fees & Funding Options'),(211840,40924,'_blocks_5_text_block_heading','field_617669d413097'),(211841,40924,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(211842,40924,'_blocks_5_text_block_content','field_617669ec13098'),(211843,40924,'blocks_6_acfe_flexible_toggle',''),(211844,40924,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(211845,40924,'blocks_6_acfe_flexible_layout_title','Icons'),(211846,40924,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(211847,40924,'blocks_6_options_theme','#b61234'),(211848,40924,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(211849,40924,'blocks_6_options_format','row'),(211850,40924,'_blocks_6_options_format','field_64bfde9a90690'),(211851,40924,'blocks_6_options',''),(211852,40924,'_blocks_6_options','field_64bfdd9b90684'),(211853,40924,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(211854,40924,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(211855,40924,'blocks_6_icon_row_items_0_label','Pay in Full'),(211856,40924,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(211857,40924,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(211858,40924,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(211859,40924,'blocks_6_icon_row_items_1_icon','finance.svg'),(211860,40924,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(211861,40924,'blocks_6_icon_row_items_1_label','0% finance'),(211862,40924,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(211863,40924,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(211864,40924,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(211865,40924,'blocks_6_icon_row_items_2_icon','deposit.svg'),(211866,40924,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(211867,40924,'blocks_6_icon_row_items_2_label','Deposit & balance'),(211868,40924,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(211869,40924,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(211870,40924,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(211871,40924,'blocks_6_icon_row_items','3'),(211872,40924,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(211873,40924,'blocks_8_acfe_flexible_toggle',''),(211874,40924,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(211875,40924,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(211876,40924,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(211877,40924,'blocks_8_testimonial_slider_content_title',''),(211878,40924,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(211879,40924,'blocks_8_testimonial_slider_content_heading','Testimonials'),(211880,40924,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(211881,40924,'blocks_8_testimonial_slider_content_text',''),(211882,40924,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(211883,40924,'blocks_8_testimonial_slider_content_actions',''),(211884,40924,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(211885,40924,'blocks_8_testimonial_slider_content',''),(211886,40924,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(211887,40924,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(211888,40924,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(211889,40924,'blocks_8_testimonial_slider_ambassador_bool','0'),(211890,40924,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(211891,40924,'blocks_9_acfe_flexible_toggle',''),(211892,40924,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(211893,40924,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(211894,40924,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(211895,40924,'blocks_9_options_theme','#ffffff'),(211896,40924,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(211897,40924,'blocks_9_options_state','0'),(211898,40924,'_blocks_9_options_state','field_6239fcb7508c5'),(211899,40924,'blocks_9_options',''),(211900,40924,'_blocks_9_options','field_6177e2991ac44'),(211901,40924,'blocks_9_content_title',''),(211902,40924,'_blocks_9_content_title','field_64d237e8bb1e2'),(211903,40924,'blocks_9_content_heading','Frequently asked questions '),(211904,40924,'_blocks_9_content_heading','field_64d237e8bb1e3'),(211905,40924,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(211906,40924,'_blocks_9_content_text','field_64d237e8bb1e4'),(211907,40924,'blocks_9_content_actions',''),(211908,40924,'_blocks_9_content_actions','field_64d237e8bb1e5'),(211909,40924,'blocks_9_content_align','left'),(211910,40924,'_blocks_9_content_align','field_64d2443e6b6aa'),(211911,40924,'blocks_9_content',''),(211912,40924,'_blocks_9_content','field_64d237e8bb1e1'),(211913,40924,'blocks_9_accordion_content','faqs'),(211914,40924,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(211915,40924,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(211916,40924,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(211917,40924,'blocks_9_actions',''),(211918,40924,'_blocks_9_actions','field_61a746a817f7a'),(211919,40924,'blocks_7_acfe_flexible_toggle',''),(211920,40924,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(211921,40924,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(211922,40924,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(211923,40924,'blocks_7_options_theme','#f5f5f5'),(211924,40924,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(211925,40924,'blocks_7_options_reverse','0'),(211926,40924,'_blocks_7_options_reverse','field_61768049bb8ac'),(211927,40924,'blocks_7_options',''),(211928,40924,'_blocks_7_options','field_617682517c334'),(211929,40924,'blocks_7_split_5050_image','40920'),(211930,40924,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(211931,40924,'blocks_7_split_5050_video',''),(211932,40924,'_blocks_7_split_5050_video','field_6239f3160848a'),(211933,40924,'blocks_7_split_5050_content_title',''),(211934,40924,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(211935,40924,'blocks_7_split_5050_content_heading','Why Study This Course?'),(211936,40924,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(211937,40924,'blocks_7_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(211938,40924,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(211939,40924,'blocks_7_split_5050_content_actions',''),(211940,40924,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(211941,40924,'blocks_7_split_5050_content',''),(211942,40924,'_blocks_7_split_5050_content','field_61767afceb8ba'),(211943,39254,'blocks_8_acfe_flexible_toggle',''),(211944,39254,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(211945,39254,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(211946,39254,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(211947,39254,'blocks_8_options_theme','#f5f5f5'),(211948,39254,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(211949,39254,'blocks_8_options_reverse','0'),(211950,39254,'_blocks_8_options_reverse','field_61768049bb8ac'),(211951,39254,'blocks_8_options',''),(211952,39254,'_blocks_8_options','field_617682517c334'),(211953,39254,'blocks_8_split_5050_image','40920'),(211954,39254,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(211955,39254,'blocks_8_split_5050_video',''),(211956,39254,'_blocks_8_split_5050_video','field_6239f3160848a'),(211957,39254,'blocks_8_split_5050_content_title',''),(211958,39254,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(211959,39254,'blocks_8_split_5050_content_heading','Why study this course ?'),(211960,39254,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(211961,39254,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(211962,39254,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(211963,39254,'blocks_8_split_5050_content_actions',''),(211964,39254,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(211965,39254,'blocks_8_split_5050_content',''),(211966,39254,'_blocks_8_split_5050_content','field_61767afceb8ba'),(211967,40925,'hide_hero','0'),(211968,40925,'_hide_hero','field_66a2380fcda39'),(211969,40925,'hero_title','Biomechanics and S&C coaches'),(211970,40925,'_hero_title','field_617571fe285e8'),(211971,40925,'hero_text','Gain a deeper understanding of anatomy and client movement and level up your Strength and Conditioning practice through intrinsic biomechanics.'),(211972,40925,'_hero_text','field_6175723c285e9'),(211973,40925,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39254-3\";s:6:\"target\";s:0:\"\";}'),(211974,40925,'_hero_actions_0_button','field_61757281285eb'),(211975,40925,'hero_actions','1'),(211976,40925,'_hero_actions','field_61757270285ea'),(211977,40925,'hero_style','default'),(211978,40925,'_hero_style','field_62051d9dc5324'),(211979,40925,'_thumbnail_id','39256'),(211980,40925,'__thumbnail_id','field_617570855ddaf'),(211981,40925,'hero_image_pos_x','right'),(211982,40925,'_hero_image_pos_x','field_62ec3d05390bb'),(211983,40925,'hero_image_pos_y','top'),(211984,40925,'_hero_image_pos_y','field_62ec3d05390bc'),(211985,40925,'hero_image_pos',''),(211986,40925,'_hero_image_pos','field_62ec3d05390ba'),(211987,40925,'fft_hide_from_listings','0'),(211988,40925,'_fft_hide_from_listings','field_61f1320446ab2'),(211989,40925,'fft_page_format','default'),(211990,40925,'_fft_page_format','field_61ae213f1f218'),(211991,40925,'fft_hide_nav','0'),(211992,40925,'_fft_hide_nav','field_635bd5e43527c'),(211993,40925,'fft_hide_header_call_to_action','0'),(211994,40925,'_fft_hide_header_call_to_action','field_635bd6723527d'),(211995,40925,'fft_page_sitemap','0'),(211996,40925,'_fft_page_sitemap','field_61af9b34e8181'),(211997,40925,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(211998,40925,'_blocks','field_6176696113096'),(211999,40925,'blocks_0_acfe_flexible_toggle',''),(212000,40925,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(212001,40925,'blocks_0_acfe_flexible_layout_title','Template'),(212002,40925,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(212003,40925,'blocks_0_template','39087'),(212004,40925,'_blocks_0_template','field_617bdd570fe01'),(212005,40925,'blocks_9_acfe_flexible_toggle',''),(212006,40925,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(212007,40925,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(212008,40925,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(212009,40925,'blocks_9_testimonial_slider_content_title',''),(212010,40925,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(212011,40925,'blocks_9_testimonial_slider_content_heading','Testimonials'),(212012,40925,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(212013,40925,'blocks_9_testimonial_slider_content_text',''),(212014,40925,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(212015,40925,'blocks_9_testimonial_slider_content_actions',''),(212016,40925,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(212017,40925,'blocks_9_testimonial_slider_content',''),(212018,40925,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(212019,40925,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(212020,40925,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(212021,40925,'blocks_9_testimonial_slider_ambassador_bool','0'),(212022,40925,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(212023,40925,'blocks_10_acfe_flexible_toggle',''),(212024,40925,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(212025,40925,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(212026,40925,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(212027,40925,'blocks_10_options_theme','#ffffff'),(212028,40925,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(212029,40925,'blocks_10_options_state','0'),(212030,40925,'_blocks_10_options_state','field_6239fcb7508c5'),(212031,40925,'blocks_10_options',''),(212032,40925,'_blocks_10_options','field_6177e2991ac44'),(212033,40925,'blocks_10_content_title',''),(212034,40925,'_blocks_10_content_title','field_64d237e8bb1e2'),(212035,40925,'blocks_10_content_heading','Frequently asked questions '),(212036,40925,'_blocks_10_content_heading','field_64d237e8bb1e3'),(212037,40925,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(212038,40925,'_blocks_10_content_text','field_64d237e8bb1e4'),(212039,40925,'blocks_10_content_actions',''),(212040,40925,'_blocks_10_content_actions','field_64d237e8bb1e5'),(212041,40925,'blocks_10_content_align','left'),(212042,40925,'_blocks_10_content_align','field_64d2443e6b6aa'),(212043,40925,'blocks_10_content',''),(212044,40925,'_blocks_10_content','field_64d237e8bb1e1'),(212045,40925,'blocks_10_accordion_content','faqs'),(212046,40925,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(212047,40925,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(212048,40925,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(212049,40925,'blocks_10_actions',''),(212050,40925,'_blocks_10_actions','field_61a746a817f7a'),(212051,40925,'blocks_1_acfe_flexible_toggle',''),(212052,40925,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(212053,40925,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(212054,40925,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(212055,40925,'blocks_1_options_theme','#ffffff'),(212056,40925,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(212057,40925,'blocks_1_options_reverse','0'),(212058,40925,'_blocks_1_options_reverse','field_61768049bb8ac'),(212059,40925,'blocks_1_options',''),(212060,40925,'_blocks_1_options','field_617682517c334'),(212061,40925,'blocks_1_split_5050_image','39257'),(212062,40925,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(212063,40925,'blocks_1_split_5050_video',''),(212064,40925,'_blocks_1_split_5050_video','field_6239f3160848a'),(212065,40925,'blocks_1_split_5050_content_title',''),(212066,40925,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(212067,40925,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(212068,40925,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(212069,40925,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(212070,40925,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(212071,40925,'blocks_1_split_5050_content_actions',''),(212072,40925,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(212073,40925,'blocks_1_split_5050_content',''),(212074,40925,'_blocks_1_split_5050_content','field_61767afceb8ba'),(212075,40925,'blocks_4_acfe_flexible_toggle',''),(212076,40925,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(212077,40925,'blocks_4_acfe_flexible_layout_title','Tabs'),(212078,40925,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(212079,40925,'blocks_4_options_theme','#ffffff'),(212080,40925,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(212081,40925,'blocks_4_options',''),(212082,40925,'_blocks_4_options','field_6177cfcd8140f'),(212083,40925,'blocks_4_tabs_0_tab_label','What will I learn ?'),(212084,40925,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(212085,40925,'blocks_4_tabs_0_tab_content_title',''),(212086,40925,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(212087,40925,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(212088,40925,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(212089,40925,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(212090,40925,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(212091,40925,'blocks_4_tabs_0_tab_content_actions',''),(212092,40925,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(212093,40925,'blocks_4_tabs_0_tab_content',''),(212094,40925,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(212095,40925,'blocks_4_tabs_0_tab_image','39076'),(212096,40925,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(212097,40925,'blocks_4_tabs_1_tab_label','What do I need ?'),(212098,40925,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(212099,40925,'blocks_4_tabs_1_tab_content_title',''),(212100,40925,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(212101,40925,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(212102,40925,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(212103,40925,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(212104,40925,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(212105,40925,'blocks_4_tabs_1_tab_content_actions',''),(212106,40925,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(212107,40925,'blocks_4_tabs_1_tab_content',''),(212108,40925,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(212109,40925,'blocks_4_tabs_1_tab_image','39223'),(212110,40925,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(212111,40925,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(212112,40925,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(212113,40925,'blocks_4_tabs_2_tab_content_title',''),(212114,40925,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(212115,40925,'blocks_4_tabs_2_tab_content_heading','Locations'),(212116,40925,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(212117,40925,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(212118,40925,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(212119,40925,'blocks_4_tabs_2_tab_content_actions',''),(212120,40925,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(212121,40925,'blocks_4_tabs_2_tab_content',''),(212122,40925,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(212123,40925,'blocks_4_tabs_2_tab_image','39224'),(212124,40925,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(212125,40925,'blocks_4_tabs','3'),(212126,40925,'_blocks_4_tabs','field_6177cff281419'),(212127,40925,'blocks_5_acfe_flexible_toggle',''),(212128,40925,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(212129,40925,'blocks_5_acfe_flexible_layout_title','Text Block'),(212130,40925,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(212131,40925,'blocks_5_options_theme','#b61234'),(212132,40925,'_blocks_5_options_theme','field_6176830e2ad17'),(212133,40925,'blocks_5_options',''),(212134,40925,'_blocks_5_options','field_6176830e2ad16'),(212135,40925,'blocks_5_text_block_heading','Fees & Funding Options'),(212136,40925,'_blocks_5_text_block_heading','field_617669d413097'),(212137,40925,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(212138,40925,'_blocks_5_text_block_content','field_617669ec13098'),(212139,40925,'blocks_6_acfe_flexible_toggle',''),(212140,40925,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(212141,40925,'blocks_6_acfe_flexible_layout_title','Icons'),(212142,40925,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(212143,40925,'blocks_6_options_theme','#b61234'),(212144,40925,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(212145,40925,'blocks_6_options_format','row'),(212146,40925,'_blocks_6_options_format','field_64bfde9a90690'),(212147,40925,'blocks_6_options',''),(212148,40925,'_blocks_6_options','field_64bfdd9b90684'),(212149,40925,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(212150,40925,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(212151,40925,'blocks_6_icon_row_items_0_label','Pay in Full'),(212152,40925,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(212153,40925,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(212154,40925,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(212155,40925,'blocks_6_icon_row_items_1_icon','finance.svg'),(212156,40925,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(212157,40925,'blocks_6_icon_row_items_1_label','0% finance'),(212158,40925,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(212159,40925,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(212160,40925,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(212161,40925,'blocks_6_icon_row_items_2_icon','deposit.svg'),(212162,40925,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(212163,40925,'blocks_6_icon_row_items_2_label','Deposit & balance'),(212164,40925,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(212165,40925,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(212166,40925,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(212167,40925,'blocks_6_icon_row_items','3'),(212168,40925,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(212169,40925,'blocks_7_acfe_flexible_toggle',''),(212170,40925,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(212171,40925,'blocks_7_acfe_flexible_layout_title','Steps'),(212172,40925,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(212173,40925,'blocks_7_row_content_title',''),(212174,40925,'_blocks_7_row_content_title','field_64888cd1e26e0'),(212175,40925,'blocks_7_row_content_heading','Benefits of training with us'),(212176,40925,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(212177,40925,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(212178,40925,'_blocks_7_row_content_text','field_64888ce2e26e2'),(212179,40925,'blocks_7_row_content_actions',''),(212180,40925,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(212181,40925,'blocks_7_row_content',''),(212182,40925,'_blocks_7_row_content','field_64888cb0e26df'),(212183,40925,'blocks_7_steps_0_icon','progression.svg'),(212184,40925,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(212185,40925,'blocks_7_steps_0_title','Attract new clients'),(212186,40925,'_blocks_7_steps_0_title','field_64888d94e26e7'),(212187,40925,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(212188,40925,'_blocks_7_steps_0_text','field_64888d99e26e8'),(212189,40925,'blocks_7_steps_1_icon','support.svg'),(212190,40925,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(212191,40925,'blocks_7_steps_1_title','Lifetime Learning Promise'),(212192,40925,'_blocks_7_steps_1_title','field_64888d94e26e7'),(212193,40925,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(212194,40925,'_blocks_7_steps_1_text','field_64888d99e26e8'),(212195,40925,'blocks_7_steps_2_icon','qualification.svg'),(212196,40925,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(212197,40925,'blocks_7_steps_2_title','Evidence based hands on learning'),(212198,40925,'_blocks_7_steps_2_title','field_64888d94e26e7'),(212199,40925,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You will learn how to test and screen, and learn methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(212200,40925,'_blocks_7_steps_2_text','field_64888d99e26e8'),(212201,40925,'blocks_7_steps_3_icon','leaders.svg'),(212202,40925,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(212203,40925,'blocks_7_steps_3_title','Stand out from the crowd'),(212204,40925,'_blocks_7_steps_3_title','field_64888d94e26e7'),(212205,40925,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(212206,40925,'_blocks_7_steps_3_text','field_64888d99e26e8'),(212207,40925,'blocks_7_steps','4'),(212208,40925,'_blocks_7_steps','field_64888d44e26e5'),(212209,40925,'blocks_2_acfe_flexible_toggle',''),(212210,40925,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(212211,40925,'blocks_2_acfe_flexible_layout_title','Form'),(212212,40925,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(212213,40925,'blocks_2_row_content_format','standard'),(212214,40925,'_blocks_2_row_content_format','field_6481ead962881'),(212215,40925,'blocks_2_row_content_title',''),(212216,40925,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(212217,40925,'blocks_2_row_content_heading','Enquire Today'),(212218,40925,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(212219,40925,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(212220,40925,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(212221,40925,'blocks_2_row_content_actions',''),(212222,40925,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(212223,40925,'blocks_2_row_content',''),(212224,40925,'_blocks_2_row_content','field_61a0f5f5b3db0'),(212225,40925,'blocks_2_row_form','40394'),(212226,40925,'_blocks_2_row_form','field_61a4ff2c0b08e'),(212227,40925,'blocks_2_row_form_button_label',''),(212228,40925,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(212229,40925,'blocks_3_acfe_flexible_toggle',''),(212230,40925,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(212231,40925,'blocks_3_acfe_flexible_layout_title','Video'),(212232,40925,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(212233,40925,'blocks_3_size','large'),(212234,40925,'_blocks_3_size','field_6487038f297c1'),(212235,40925,'blocks_3_row_content_title',''),(212236,40925,'_blocks_3_row_content_title','field_64870132a865d'),(212237,40925,'blocks_3_row_content_heading',''),(212238,40925,'_blocks_3_row_content_heading','field_64870142a865e'),(212239,40925,'blocks_3_row_content_text',''),(212240,40925,'_blocks_3_row_content_text','field_64870148a865f'),(212241,40925,'blocks_3_row_content',''),(212242,40925,'_blocks_3_row_content','field_6487008ba865c'),(212243,40925,'blocks_3_video_src',''),(212244,40925,'_blocks_3_video_src','field_6193c4a98ec07'),(212245,40925,'blocks_3_video_thumbnail',''),(212246,40925,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(212247,40925,'blocks_8_acfe_flexible_toggle',''),(212248,40925,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(212249,40925,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(212250,40925,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(212251,40925,'blocks_8_options_theme','#f5f5f5'),(212252,40925,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(212253,40925,'blocks_8_options_reverse','0'),(212254,40925,'_blocks_8_options_reverse','field_61768049bb8ac'),(212255,40925,'blocks_8_options',''),(212256,40925,'_blocks_8_options','field_617682517c334'),(212257,40925,'blocks_8_split_5050_image','40920'),(212258,40925,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(212259,40925,'blocks_8_split_5050_video',''),(212260,40925,'_blocks_8_split_5050_video','field_6239f3160848a'),(212261,40925,'blocks_8_split_5050_content_title',''),(212262,40925,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(212263,40925,'blocks_8_split_5050_content_heading','Why study this course ?'),(212264,40925,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(212265,40925,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(212266,40925,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(212267,40925,'blocks_8_split_5050_content_actions',''),(212268,40925,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(212269,40925,'blocks_8_split_5050_content',''),(212270,40925,'_blocks_8_split_5050_content','field_61767afceb8ba'),(212271,39263,'blocks_9_acfe_flexible_toggle',''),(212272,39263,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(212273,39263,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(212274,39263,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(212275,39263,'blocks_9_options_theme','#f5f5f5'),(212276,39263,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(212277,39263,'blocks_9_options_reverse','0'),(212278,39263,'_blocks_9_options_reverse','field_61768049bb8ac'),(212279,39263,'blocks_9_options',''),(212280,39263,'_blocks_9_options','field_617682517c334'),(212281,39263,'blocks_9_split_5050_image','41307'),(212282,39263,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(212283,39263,'blocks_9_split_5050_video',''),(212284,39263,'_blocks_9_split_5050_video','field_6239f3160848a'),(212285,39263,'blocks_9_split_5050_content_title',''),(212286,39263,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(212287,39263,'blocks_9_split_5050_content_heading','Why study this course ?'),(212288,39263,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(212289,39263,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(212290,39263,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(212291,39263,'blocks_9_split_5050_content_actions',''),(212292,39263,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(212293,39263,'blocks_9_split_5050_content',''),(212294,39263,'_blocks_9_split_5050_content','field_61767afceb8ba'),(212295,39263,'blocks_10_acfe_flexible_toggle',''),(212296,39263,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(212297,39263,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(212298,39263,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(212299,39263,'blocks_10_testimonial_slider_content_title',''),(212300,39263,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(212301,39263,'blocks_10_testimonial_slider_content_heading','Testimonials'),(212302,39263,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(212303,39263,'blocks_10_testimonial_slider_content_text',''),(212304,39263,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(212305,39263,'blocks_10_testimonial_slider_content_actions',''),(212306,39263,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(212307,39263,'blocks_10_testimonial_slider_content',''),(212308,39263,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(212309,39263,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(212310,39263,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(212311,39263,'blocks_10_testimonial_slider_ambassador_bool','0'),(212312,39263,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(212313,39263,'blocks_11_acfe_flexible_toggle',''),(212314,39263,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(212315,39263,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(212316,39263,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(212317,39263,'blocks_11_options_theme','#ffffff'),(212318,39263,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(212319,39263,'blocks_11_options_state','0'),(212320,39263,'_blocks_11_options_state','field_6239fcb7508c5'),(212321,39263,'blocks_11_options',''),(212322,39263,'_blocks_11_options','field_6177e2991ac44'),(212323,39263,'blocks_11_content_title',''),(212324,39263,'_blocks_11_content_title','field_64d237e8bb1e2'),(212325,39263,'blocks_11_content_heading','Frequently asked questions '),(212326,39263,'_blocks_11_content_heading','field_64d237e8bb1e3');
INSERT INTO `6m7_postmeta` VALUES (212327,39263,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(212328,39263,'_blocks_11_content_text','field_64d237e8bb1e4'),(212329,39263,'blocks_11_content_actions',''),(212330,39263,'_blocks_11_content_actions','field_64d237e8bb1e5'),(212331,39263,'blocks_11_content_align','left'),(212332,39263,'_blocks_11_content_align','field_64d2443e6b6aa'),(212333,39263,'blocks_11_content',''),(212334,39263,'_blocks_11_content','field_64d237e8bb1e1'),(212335,39263,'blocks_11_accordion_content','faqs'),(212336,39263,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(212337,39263,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(212338,39263,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(212339,39263,'blocks_11_actions',''),(212340,39263,'_blocks_11_actions','field_61a746a817f7a'),(212341,40926,'hide_hero','0'),(212342,40926,'_hide_hero','field_66a2380fcda39'),(212343,40926,'hero_title','How to Become a Biomechanics Coach'),(212344,40926,'_hero_title','field_617571fe285e8'),(212345,40926,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(212346,40926,'_hero_text','field_6175723c285e9'),(212347,40926,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39263-3\";s:6:\"target\";s:0:\"\";}'),(212348,40926,'_hero_actions_0_button','field_61757281285eb'),(212349,40926,'hero_actions','1'),(212350,40926,'_hero_actions','field_61757270285ea'),(212351,40926,'hero_style','default'),(212352,40926,'_hero_style','field_62051d9dc5324'),(212353,40926,'_thumbnail_id','39454'),(212354,40926,'__thumbnail_id','field_617570855ddaf'),(212355,40926,'hero_image_pos_x','right'),(212356,40926,'_hero_image_pos_x','field_62ec3d05390bb'),(212357,40926,'hero_image_pos_y','top'),(212358,40926,'_hero_image_pos_y','field_62ec3d05390bc'),(212359,40926,'hero_image_pos',''),(212360,40926,'_hero_image_pos','field_62ec3d05390ba'),(212361,40926,'fft_hide_from_listings','0'),(212362,40926,'_fft_hide_from_listings','field_61f1320446ab2'),(212363,40926,'fft_page_format','default'),(212364,40926,'_fft_page_format','field_61ae213f1f218'),(212365,40926,'fft_hide_nav','0'),(212366,40926,'_fft_hide_nav','field_635bd5e43527c'),(212367,40926,'fft_hide_header_call_to_action','0'),(212368,40926,'_fft_hide_header_call_to_action','field_635bd6723527d'),(212369,40926,'fft_page_sitemap','0'),(212370,40926,'_fft_page_sitemap','field_61af9b34e8181'),(212371,40926,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(212372,40926,'_blocks','field_6176696113096'),(212373,40926,'blocks_0_acfe_flexible_toggle',''),(212374,40926,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(212375,40926,'blocks_0_acfe_flexible_layout_title','Template'),(212376,40926,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(212377,40926,'blocks_0_template','39087'),(212378,40926,'_blocks_0_template','field_617bdd570fe01'),(212379,40926,'blocks_8_acfe_flexible_toggle','1'),(212380,40926,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(212381,40926,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(212382,40926,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(212383,40926,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(212384,40926,'_blocks_8_content','field_6193c9b5eac84'),(212385,40926,'blocks_1_acfe_flexible_toggle',''),(212386,40926,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(212387,40926,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(212388,40926,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(212389,40926,'blocks_1_options_theme','#ffffff'),(212390,40926,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(212391,40926,'blocks_1_options_reverse','0'),(212392,40926,'_blocks_1_options_reverse','field_61768049bb8ac'),(212393,40926,'blocks_1_options',''),(212394,40926,'_blocks_1_options','field_617682517c334'),(212395,40926,'blocks_1_split_5050_image','39623'),(212396,40926,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(212397,40926,'blocks_1_split_5050_video',''),(212398,40926,'_blocks_1_split_5050_video','field_6239f3160848a'),(212399,40926,'blocks_1_split_5050_content_title',''),(212400,40926,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(212401,40926,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(212402,40926,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(212403,40926,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of numerous injuries within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(212404,40926,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(212405,40926,'blocks_1_split_5050_content_actions',''),(212406,40926,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(212407,40926,'blocks_1_split_5050_content',''),(212408,40926,'_blocks_1_split_5050_content','field_61767afceb8ba'),(212409,40926,'blocks_4_acfe_flexible_toggle',''),(212410,40926,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(212411,40926,'blocks_4_acfe_flexible_layout_title','Tabs'),(212412,40926,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(212413,40926,'blocks_4_options_theme','#ffffff'),(212414,40926,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(212415,40926,'blocks_4_options',''),(212416,40926,'_blocks_4_options','field_6177cfcd8140f'),(212417,40926,'blocks_4_tabs_0_tab_label','What will I learn ?'),(212418,40926,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(212419,40926,'blocks_4_tabs_0_tab_content_title',''),(212420,40926,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(212421,40926,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(212422,40926,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(212423,40926,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(212424,40926,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(212425,40926,'blocks_4_tabs_0_tab_content_actions',''),(212426,40926,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(212427,40926,'blocks_4_tabs_0_tab_content',''),(212428,40926,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(212429,40926,'blocks_4_tabs_0_tab_image','39076'),(212430,40926,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(212431,40926,'blocks_4_tabs_1_tab_label','What do I need ?'),(212432,40926,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(212433,40926,'blocks_4_tabs_1_tab_content_title',''),(212434,40926,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(212435,40926,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(212436,40926,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(212437,40926,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(212438,40926,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(212439,40926,'blocks_4_tabs_1_tab_content_actions',''),(212440,40926,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(212441,40926,'blocks_4_tabs_1_tab_content',''),(212442,40926,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(212443,40926,'blocks_4_tabs_1_tab_image','39223'),(212444,40926,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(212445,40926,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(212446,40926,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(212447,40926,'blocks_4_tabs_2_tab_content_title',''),(212448,40926,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(212449,40926,'blocks_4_tabs_2_tab_content_heading','Locations'),(212450,40926,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(212451,40926,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(212452,40926,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(212453,40926,'blocks_4_tabs_2_tab_content_actions',''),(212454,40926,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(212455,40926,'blocks_4_tabs_2_tab_content',''),(212456,40926,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(212457,40926,'blocks_4_tabs_2_tab_image','39224'),(212458,40926,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(212459,40926,'blocks_4_tabs','3'),(212460,40926,'_blocks_4_tabs','field_6177cff281419'),(212461,40926,'blocks_5_acfe_flexible_toggle',''),(212462,40926,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(212463,40926,'blocks_5_acfe_flexible_layout_title','Text Block'),(212464,40926,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(212465,40926,'blocks_5_options_theme','#b61234'),(212466,40926,'_blocks_5_options_theme','field_6176830e2ad17'),(212467,40926,'blocks_5_options',''),(212468,40926,'_blocks_5_options','field_6176830e2ad16'),(212469,40926,'blocks_5_text_block_heading','Fees & Funding Options'),(212470,40926,'_blocks_5_text_block_heading','field_617669d413097'),(212471,40926,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(212472,40926,'_blocks_5_text_block_content','field_617669ec13098'),(212473,40926,'blocks_6_acfe_flexible_toggle',''),(212474,40926,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(212475,40926,'blocks_6_acfe_flexible_layout_title','Icons'),(212476,40926,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(212477,40926,'blocks_6_options_theme','#b61234'),(212478,40926,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(212479,40926,'blocks_6_options_format','row'),(212480,40926,'_blocks_6_options_format','field_64bfde9a90690'),(212481,40926,'blocks_6_options',''),(212482,40926,'_blocks_6_options','field_64bfdd9b90684'),(212483,40926,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(212484,40926,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(212485,40926,'blocks_6_icon_row_items_0_label','Pay in Full'),(212486,40926,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(212487,40926,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(212488,40926,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(212489,40926,'blocks_6_icon_row_items_1_icon','finance.svg'),(212490,40926,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(212491,40926,'blocks_6_icon_row_items_1_label','0% finance'),(212492,40926,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(212493,40926,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(212494,40926,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(212495,40926,'blocks_6_icon_row_items_2_icon','deposit.svg'),(212496,40926,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(212497,40926,'blocks_6_icon_row_items_2_label','Deposit & balance'),(212498,40926,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(212499,40926,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(212500,40926,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(212501,40926,'blocks_6_icon_row_items','3'),(212502,40926,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(212503,40926,'blocks_7_acfe_flexible_toggle',''),(212504,40926,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(212505,40926,'blocks_7_acfe_flexible_layout_title','Steps'),(212506,40926,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(212507,40926,'blocks_7_row_content_title',''),(212508,40926,'_blocks_7_row_content_title','field_64888cd1e26e0'),(212509,40926,'blocks_7_row_content_heading','Benefits of training with us'),(212510,40926,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(212511,40926,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(212512,40926,'_blocks_7_row_content_text','field_64888ce2e26e2'),(212513,40926,'blocks_7_row_content_actions',''),(212514,40926,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(212515,40926,'blocks_7_row_content',''),(212516,40926,'_blocks_7_row_content','field_64888cb0e26df'),(212517,40926,'blocks_7_steps_0_icon','progression.svg'),(212518,40926,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(212519,40926,'blocks_7_steps_0_title','Earning potential'),(212520,40926,'_blocks_7_steps_0_title','field_64888d94e26e7'),(212521,40926,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(212522,40926,'_blocks_7_steps_0_text','field_64888d99e26e8'),(212523,40926,'blocks_7_steps_1_icon','support.svg'),(212524,40926,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(212525,40926,'blocks_7_steps_1_title','Lifetime Learning Promise'),(212526,40926,'_blocks_7_steps_1_title','field_64888d94e26e7'),(212527,40926,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(212528,40926,'_blocks_7_steps_1_text','field_64888d99e26e8'),(212529,40926,'blocks_7_steps_2_icon','qualification.svg'),(212530,40926,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(212531,40926,'blocks_7_steps_2_title','Evidence based hands on learning'),(212532,40926,'_blocks_7_steps_2_title','field_64888d94e26e7'),(212533,40926,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(212534,40926,'_blocks_7_steps_2_text','field_64888d99e26e8'),(212535,40926,'blocks_7_steps_3_icon','leaders.svg'),(212536,40926,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(212537,40926,'blocks_7_steps_3_title','Stand out from the crowd'),(212538,40926,'_blocks_7_steps_3_title','field_64888d94e26e7'),(212539,40926,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(212540,40926,'_blocks_7_steps_3_text','field_64888d99e26e8'),(212541,40926,'blocks_7_steps','4'),(212542,40926,'_blocks_7_steps','field_64888d44e26e5'),(212543,40926,'blocks_2_acfe_flexible_toggle',''),(212544,40926,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(212545,40926,'blocks_2_acfe_flexible_layout_title','Form'),(212546,40926,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(212547,40926,'blocks_2_row_content_format','standard'),(212548,40926,'_blocks_2_row_content_format','field_6481ead962881'),(212549,40926,'blocks_2_row_content_title','Ready to get started?'),(212550,40926,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(212551,40926,'blocks_2_row_content_heading','Enquire Today!'),(212552,40926,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(212553,40926,'blocks_2_row_content_text','When you fill out the form you\'ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(212554,40926,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(212555,40926,'blocks_2_row_content_actions',''),(212556,40926,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(212557,40926,'blocks_2_row_content',''),(212558,40926,'_blocks_2_row_content','field_61a0f5f5b3db0'),(212559,40926,'blocks_2_row_form','40417'),(212560,40926,'_blocks_2_row_form','field_61a4ff2c0b08e'),(212561,40926,'blocks_2_row_form_button_label',''),(212562,40926,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(212563,40926,'blocks_3_acfe_flexible_toggle',''),(212564,40926,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(212565,40926,'blocks_3_acfe_flexible_layout_title','Video'),(212566,40926,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(212567,40926,'blocks_3_size','large'),(212568,40926,'_blocks_3_size','field_6487038f297c1'),(212569,40926,'blocks_3_row_content_title',''),(212570,40926,'_blocks_3_row_content_title','field_64870132a865d'),(212571,40926,'blocks_3_row_content_heading',''),(212572,40926,'_blocks_3_row_content_heading','field_64870142a865e'),(212573,40926,'blocks_3_row_content_text',''),(212574,40926,'_blocks_3_row_content_text','field_64870148a865f'),(212575,40926,'blocks_3_row_content',''),(212576,40926,'_blocks_3_row_content','field_6487008ba865c'),(212577,40926,'blocks_3_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(212578,40926,'_blocks_3_video_src','field_6193c4a98ec07'),(212579,40926,'blocks_3_video_thumbnail',''),(212580,40926,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(212581,40926,'blocks_9_acfe_flexible_toggle',''),(212582,40926,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(212583,40926,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(212584,40926,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(212585,40926,'blocks_9_options_theme','#f5f5f5'),(212586,40926,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(212587,40926,'blocks_9_options_reverse','0'),(212588,40926,'_blocks_9_options_reverse','field_61768049bb8ac'),(212589,40926,'blocks_9_options',''),(212590,40926,'_blocks_9_options','field_617682517c334'),(212591,40926,'blocks_9_split_5050_image','40920'),(212592,40926,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(212593,40926,'blocks_9_split_5050_video',''),(212594,40926,'_blocks_9_split_5050_video','field_6239f3160848a'),(212595,40926,'blocks_9_split_5050_content_title',''),(212596,40926,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(212597,40926,'blocks_9_split_5050_content_heading','Why study this course ?'),(212598,40926,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(212599,40926,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(212600,40926,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(212601,40926,'blocks_9_split_5050_content_actions',''),(212602,40926,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(212603,40926,'blocks_9_split_5050_content',''),(212604,40926,'_blocks_9_split_5050_content','field_61767afceb8ba'),(212605,40926,'blocks_10_acfe_flexible_toggle',''),(212606,40926,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(212607,40926,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(212608,40926,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(212609,40926,'blocks_10_testimonial_slider_content_title',''),(212610,40926,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(212611,40926,'blocks_10_testimonial_slider_content_heading','Testimonials'),(212612,40926,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(212613,40926,'blocks_10_testimonial_slider_content_text',''),(212614,40926,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(212615,40926,'blocks_10_testimonial_slider_content_actions',''),(212616,40926,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(212617,40926,'blocks_10_testimonial_slider_content',''),(212618,40926,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(212619,40926,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(212620,40926,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(212621,40926,'blocks_10_testimonial_slider_ambassador_bool','0'),(212622,40926,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(212623,40926,'blocks_11_acfe_flexible_toggle',''),(212624,40926,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(212625,40926,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(212626,40926,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(212627,40926,'blocks_11_options_theme','#ffffff'),(212628,40926,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(212629,40926,'blocks_11_options_state','0'),(212630,40926,'_blocks_11_options_state','field_6239fcb7508c5'),(212631,40926,'blocks_11_options',''),(212632,40926,'_blocks_11_options','field_6177e2991ac44'),(212633,40926,'blocks_11_content_title',''),(212634,40926,'_blocks_11_content_title','field_64d237e8bb1e2'),(212635,40926,'blocks_11_content_heading','Frequently asked questions '),(212636,40926,'_blocks_11_content_heading','field_64d237e8bb1e3'),(212637,40926,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(212638,40926,'_blocks_11_content_text','field_64d237e8bb1e4'),(212639,40926,'blocks_11_content_actions',''),(212640,40926,'_blocks_11_content_actions','field_64d237e8bb1e5'),(212641,40926,'blocks_11_content_align','left'),(212642,40926,'_blocks_11_content_align','field_64d2443e6b6aa'),(212643,40926,'blocks_11_content',''),(212644,40926,'_blocks_11_content','field_64d237e8bb1e1'),(212645,40926,'blocks_11_accordion_content','faqs'),(212646,40926,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(212647,40926,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(212648,40926,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(212649,40926,'blocks_11_actions',''),(212650,40926,'_blocks_11_actions','field_61a746a817f7a'),(212651,13299,'_edit_lock','1728477330:5'),(212652,40927,'hide_hero','0'),(212653,40927,'_hide_hero','field_66a2380fcda39'),(212654,40927,'hero_title',''),(212655,40927,'_hero_title','field_617571fe285e8'),(212656,40927,'hero_text',''),(212657,40927,'_hero_text','field_6175723c285e9'),(212658,40927,'hero_actions',''),(212659,40927,'_hero_actions','field_61757270285ea'),(212660,40927,'hero_style','default'),(212661,40927,'_hero_style','field_62051d9dc5324'),(212662,40927,'_thumbnail_id','13440'),(212663,40927,'__thumbnail_id','field_617570855ddaf'),(212664,40927,'hero_image_pos_x','right'),(212665,40927,'_hero_image_pos_x','field_62ec3d05390bb'),(212666,40927,'hero_image_pos_y','top'),(212667,40927,'_hero_image_pos_y','field_62ec3d05390bc'),(212668,40927,'hero_image_pos',''),(212669,40927,'_hero_image_pos','field_62ec3d05390ba'),(212670,40927,'fft_hide_from_listings','0'),(212671,40927,'_fft_hide_from_listings','field_61f1320446ab2'),(212672,40927,'post_format',''),(212673,40927,'_post_format','field_61756bfb51898'),(212674,40927,'post_author',''),(212675,40927,'_post_author','field_62ec389d22113'),(212676,40927,'post_reviewer',''),(212677,40927,'_post_reviewer','field_627140a2a9800'),(212678,40927,'post_table_of_contents','0'),(212679,40927,'_post_table_of_contents','field_65c503bc846a6'),(212680,13299,'_yoast_wpseo_content_score','60'),(212681,13299,'_yoast_wpseo_estimated-reading-time-minutes','6'),(212683,13299,'hide_hero','0'),(212684,13299,'_hide_hero','field_66a2380fcda39'),(212685,13299,'hero_title',''),(212686,13299,'_hero_title','field_617571fe285e8'),(212687,13299,'hero_text',''),(212688,13299,'_hero_text','field_6175723c285e9'),(212689,13299,'hero_actions',''),(212690,13299,'_hero_actions','field_61757270285ea'),(212691,13299,'hero_style','default'),(212692,13299,'_hero_style','field_62051d9dc5324'),(212693,13299,'__thumbnail_id','field_617570855ddaf'),(212694,13299,'hero_image_pos_x','right'),(212695,13299,'_hero_image_pos_x','field_62ec3d05390bb'),(212696,13299,'hero_image_pos_y','top'),(212697,13299,'_hero_image_pos_y','field_62ec3d05390bc'),(212698,13299,'hero_image_pos',''),(212699,13299,'_hero_image_pos','field_62ec3d05390ba'),(212700,13299,'fft_hide_from_listings','0'),(212701,13299,'_fft_hide_from_listings','field_61f1320446ab2'),(212702,13299,'post_format',''),(212703,13299,'_post_format','field_61756bfb51898'),(212704,13299,'post_author',''),(212705,13299,'_post_author','field_62ec389d22113'),(212706,13299,'post_reviewer',''),(212707,13299,'_post_reviewer','field_627140a2a9800'),(212708,13299,'post_table_of_contents','0'),(212709,13299,'_post_table_of_contents','field_65c503bc846a6'),(212710,13299,'_yoast_wpseo_primary_category',''),(212711,13299,'_yoast_wpseo_primary_blog-format',''),(212712,40928,'_thumbnail_id','13440'),(212713,40928,'__thumbnail_id','field_617570855ddaf'),(212714,40928,'hide_hero','0'),(212715,40928,'_hide_hero','field_66a2380fcda39'),(212716,40928,'hero_title',''),(212717,40928,'_hero_title','field_617571fe285e8'),(212718,40928,'hero_text',''),(212719,40928,'_hero_text','field_6175723c285e9'),(212720,40928,'hero_actions',''),(212721,40928,'_hero_actions','field_61757270285ea'),(212722,40928,'hero_style','default'),(212723,40928,'_hero_style','field_62051d9dc5324'),(212724,40928,'hero_image_pos_x','right'),(212725,40928,'_hero_image_pos_x','field_62ec3d05390bb'),(212726,40928,'hero_image_pos_y','top'),(212727,40928,'_hero_image_pos_y','field_62ec3d05390bc'),(212728,40928,'hero_image_pos',''),(212729,40928,'_hero_image_pos','field_62ec3d05390ba'),(212730,40928,'fft_hide_from_listings','0'),(212731,40928,'_fft_hide_from_listings','field_61f1320446ab2'),(212732,40928,'post_format',''),(212733,40928,'_post_format','field_61756bfb51898'),(212734,40928,'post_author',''),(212735,40928,'_post_author','field_62ec389d22113'),(212736,40928,'post_reviewer',''),(212737,40928,'_post_reviewer','field_627140a2a9800'),(212738,40928,'post_table_of_contents','0'),(212739,40928,'_post_table_of_contents','field_65c503bc846a6'),(212740,15602,'_edit_lock','1728476932:5'),(212742,15602,'hide_hero','0'),(212743,15602,'_hide_hero','field_66a2380fcda39'),(212744,15602,'hero_title',''),(212745,15602,'_hero_title','field_617571fe285e8'),(212746,15602,'hero_text',''),(212747,15602,'_hero_text','field_6175723c285e9'),(212748,15602,'hero_actions',''),(212749,15602,'_hero_actions','field_61757270285ea'),(212750,15602,'hero_style','default'),(212751,15602,'_hero_style','field_62051d9dc5324'),(212752,15602,'__thumbnail_id','field_617570855ddaf'),(212753,15602,'hero_image_pos_x','right'),(212754,15602,'_hero_image_pos_x','field_62ec3d05390bb'),(212755,15602,'hero_image_pos_y','top'),(212756,15602,'_hero_image_pos_y','field_62ec3d05390bc'),(212757,15602,'hero_image_pos',''),(212758,15602,'_hero_image_pos','field_62ec3d05390ba'),(212759,15602,'fft_hide_from_listings','0'),(212760,15602,'_fft_hide_from_listings','field_61f1320446ab2'),(212761,15602,'post_format',''),(212762,15602,'_post_format','field_61756bfb51898'),(212763,15602,'post_author',''),(212764,15602,'_post_author','field_62ec389d22113'),(212765,15602,'post_reviewer',''),(212766,15602,'_post_reviewer','field_627140a2a9800'),(212767,15602,'post_table_of_contents','0'),(212768,15602,'_post_table_of_contents','field_65c503bc846a6'),(212769,15602,'_yoast_wpseo_primary_category',''),(212770,15602,'_yoast_wpseo_primary_blog-format',''),(212771,15602,'_yoast_wpseo_content_score','60'),(212772,15602,'_yoast_wpseo_estimated-reading-time-minutes','4'),(212773,40930,'_thumbnail_id','15609'),(212774,40930,'__thumbnail_id','field_617570855ddaf'),(212775,40930,'hide_hero','0'),(212776,40930,'_hide_hero','field_66a2380fcda39'),(212777,40930,'hero_title',''),(212778,40930,'_hero_title','field_617571fe285e8'),(212779,40930,'hero_text',''),(212780,40930,'_hero_text','field_6175723c285e9'),(212781,40930,'hero_actions',''),(212782,40930,'_hero_actions','field_61757270285ea'),(212783,40930,'hero_style','default'),(212784,40930,'_hero_style','field_62051d9dc5324'),(212785,40930,'hero_image_pos_x','right'),(212786,40930,'_hero_image_pos_x','field_62ec3d05390bb'),(212787,40930,'hero_image_pos_y','top'),(212788,40930,'_hero_image_pos_y','field_62ec3d05390bc'),(212789,40930,'hero_image_pos',''),(212790,40930,'_hero_image_pos','field_62ec3d05390ba'),(212791,40930,'fft_hide_from_listings','0'),(212792,40930,'_fft_hide_from_listings','field_61f1320446ab2'),(212793,40930,'post_format',''),(212794,40930,'_post_format','field_61756bfb51898'),(212795,40930,'post_author',''),(212796,40930,'_post_author','field_62ec389d22113'),(212797,40930,'post_reviewer',''),(212798,40930,'_post_reviewer','field_627140a2a9800'),(212799,40930,'post_table_of_contents','0'),(212800,40930,'_post_table_of_contents','field_65c503bc846a6'),(212801,40929,'hide_hero','0'),(212802,40929,'_hide_hero','field_66a2380fcda39'),(212803,40929,'hero_title',''),(212804,40929,'_hero_title','field_617571fe285e8'),(212805,40929,'hero_text',''),(212806,40929,'_hero_text','field_6175723c285e9'),(212807,40929,'hero_actions',''),(212808,40929,'_hero_actions','field_61757270285ea'),(212809,40929,'hero_style','default'),(212810,40929,'_hero_style','field_62051d9dc5324'),(212811,40929,'_thumbnail_id','15609'),(212812,40929,'__thumbnail_id','field_617570855ddaf'),(212813,40929,'hero_image_pos_x','right'),(212814,40929,'_hero_image_pos_x','field_62ec3d05390bb'),(212815,40929,'hero_image_pos_y','top'),(212816,40929,'_hero_image_pos_y','field_62ec3d05390bc'),(212817,40929,'hero_image_pos',''),(212818,40929,'_hero_image_pos','field_62ec3d05390ba'),(212819,40929,'fft_hide_from_listings','0'),(212820,40929,'_fft_hide_from_listings','field_61f1320446ab2'),(212821,40929,'post_format',''),(212822,40929,'_post_format','field_61756bfb51898'),(212823,40929,'post_author',''),(212824,40929,'_post_author','field_62ec389d22113'),(212825,40929,'post_reviewer',''),(212826,40929,'_post_reviewer','field_627140a2a9800'),(212827,40929,'post_table_of_contents','0'),(212828,40929,'_post_table_of_contents','field_65c503bc846a6'),(212829,40931,'_wp_attached_file','2019/07/The-Gait-Cycle-Foot-Biomechanics-768x487-1.png'),(212830,40931,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:768;s:6:\"height\";i:487;s:4:\"file\";s:54:\"2019/07/The-Gait-Cycle-Foot-Biomechanics-768x487-1.png\";s:8:\"filesize\";i:159427;s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"The-Gait-Cycle-Foot-Biomechanics-768x487-1-400x254.png\";s:5:\"width\";i:400;s:6:\"height\";i:254;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45275;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:54:\"The-Gait-Cycle-Foot-Biomechanics-768x487-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:66426;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:54:\"The-Gait-Cycle-Foot-Biomechanics-768x487-1-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:48583;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:54:\"The-Gait-Cycle-Foot-Biomechanics-768x487-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52599;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:54:\"The-Gait-Cycle-Foot-Biomechanics-768x487-1-675x487.png\";s:5:\"width\";i:675;s:6:\"height\";i:487;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139213;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:54:\"The-Gait-Cycle-Foot-Biomechanics-768x487-1-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52177;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:54:\"The-Gait-Cycle-Foot-Biomechanics-768x487-1-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42050;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(212831,40931,'_wp_attachment_image_alt','Diagram of the gait cycle'),(212832,40932,'_wp_attached_file','2019/07/Pronation-of-the-foot-Foot-Biomechanics-104x300-1.png'),(212833,40932,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:104;s:6:\"height\";i:300;s:4:\"file\";s:61:\"2019/07/Pronation-of-the-foot-Foot-Biomechanics-104x300-1.png\";s:8:\"filesize\";i:28346;s:5:\"sizes\";a:2:{s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:61:\"Pronation-of-the-foot-Foot-Biomechanics-104x300-1-104x266.png\";s:5:\"width\";i:104;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24301;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:61:\"Pronation-of-the-foot-Foot-Biomechanics-104x300-1-104x225.png\";s:5:\"width\";i:104;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20904;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(212834,40933,'_wp_attached_file','2019/07/Supination-of-the-foot-Foot-Biomechanics-110x300-1.png'),(212835,40933,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:110;s:6:\"height\";i:300;s:4:\"file\";s:62:\"2019/07/Supination-of-the-foot-Foot-Biomechanics-110x300-1.png\";s:8:\"filesize\";i:33530;s:5:\"sizes\";a:2:{s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:62:\"Supination-of-the-foot-Foot-Biomechanics-110x300-1-110x266.png\";s:5:\"width\";i:110;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29314;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:62:\"Supination-of-the-foot-Foot-Biomechanics-110x300-1-110x225.png\";s:5:\"width\";i:110;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24646;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(212836,40933,'_wp_attachment_image_alt','Image of supination of the foot'),(212837,40932,'_wp_attachment_image_alt','Pronation-of-the-foot-Foot-Biomechanics-'),(212839,40934,'_thumbnail_id','15609'),(212840,40934,'__thumbnail_id','field_617570855ddaf'),(212841,40934,'hide_hero','0'),(212842,40934,'_hide_hero','field_66a2380fcda39'),(212843,40934,'hero_title',''),(212844,40934,'_hero_title','field_617571fe285e8'),(212845,40934,'hero_text',''),(212846,40934,'_hero_text','field_6175723c285e9'),(212847,40934,'hero_actions',''),(212848,40934,'_hero_actions','field_61757270285ea'),(212849,40934,'hero_style','default'),(212850,40934,'_hero_style','field_62051d9dc5324'),(212851,40934,'hero_image_pos_x','right'),(212852,40934,'_hero_image_pos_x','field_62ec3d05390bb'),(212853,40934,'hero_image_pos_y','top'),(212854,40934,'_hero_image_pos_y','field_62ec3d05390bc'),(212855,40934,'hero_image_pos',''),(212856,40934,'_hero_image_pos','field_62ec3d05390ba'),(212857,40934,'fft_hide_from_listings','0'),(212858,40934,'_fft_hide_from_listings','field_61f1320446ab2'),(212859,40934,'post_format',''),(212860,40934,'_post_format','field_61756bfb51898'),(212861,40934,'post_author',''),(212862,40934,'_post_author','field_62ec389d22113'),(212863,40934,'post_reviewer',''),(212864,40934,'_post_reviewer','field_627140a2a9800'),(212865,40934,'post_table_of_contents','0'),(212866,40934,'_post_table_of_contents','field_65c503bc846a6'),(212869,40935,'_thumbnail_id','15609'),(212870,40935,'__thumbnail_id','field_617570855ddaf'),(212871,40935,'hide_hero','0'),(212872,40935,'_hide_hero','field_66a2380fcda39'),(212873,40935,'hero_title',''),(212874,40935,'_hero_title','field_617571fe285e8'),(212875,40935,'hero_text',''),(212876,40935,'_hero_text','field_6175723c285e9'),(212877,40935,'hero_actions',''),(212878,40935,'_hero_actions','field_61757270285ea'),(212879,40935,'hero_style','default'),(212880,40935,'_hero_style','field_62051d9dc5324'),(212881,40935,'hero_image_pos_x','right'),(212882,40935,'_hero_image_pos_x','field_62ec3d05390bb'),(212883,40935,'hero_image_pos_y','top'),(212884,40935,'_hero_image_pos_y','field_62ec3d05390bc'),(212885,40935,'hero_image_pos',''),(212886,40935,'_hero_image_pos','field_62ec3d05390ba'),(212887,40935,'fft_hide_from_listings','0'),(212888,40935,'_fft_hide_from_listings','field_61f1320446ab2'),(212889,40935,'post_format',''),(212890,40935,'_post_format','field_61756bfb51898'),(212891,40935,'post_author',''),(212892,40935,'_post_author','field_62ec389d22113'),(212893,40935,'post_reviewer',''),(212894,40935,'_post_reviewer','field_627140a2a9800'),(212895,40935,'post_table_of_contents','0'),(212896,40935,'_post_table_of_contents','field_65c503bc846a6'),(212897,30719,'_edit_lock','1728477070:5'),(212899,30719,'hide_hero','0'),(212900,30719,'_hide_hero','field_66a2380fcda39'),(212901,30719,'hero_title',''),(212902,30719,'_hero_title','field_617571fe285e8'),(212903,30719,'hero_text',''),(212904,30719,'_hero_text','field_6175723c285e9'),(212905,30719,'hero_actions',''),(212906,30719,'_hero_actions','field_61757270285ea'),(212907,30719,'hero_style','default'),(212908,30719,'_hero_style','field_62051d9dc5324'),(212909,30719,'__thumbnail_id','field_617570855ddaf'),(212910,30719,'hero_image_pos_x','right'),(212911,30719,'_hero_image_pos_x','field_62ec3d05390bb'),(212912,30719,'hero_image_pos_y','top'),(212913,30719,'_hero_image_pos_y','field_62ec3d05390bc'),(212914,30719,'hero_image_pos',''),(212915,30719,'_hero_image_pos','field_62ec3d05390ba'),(212916,30719,'fft_hide_from_listings','0'),(212917,30719,'_fft_hide_from_listings','field_61f1320446ab2'),(212918,30719,'post_format',''),(212919,30719,'_post_format','field_61756bfb51898'),(212920,30719,'post_author',''),(212921,30719,'_post_author','field_62ec389d22113'),(212922,30719,'post_reviewer',''),(212923,30719,'_post_reviewer','field_627140a2a9800'),(212924,30719,'post_table_of_contents','0'),(212925,30719,'_post_table_of_contents','field_65c503bc846a6'),(212926,30719,'_yoast_wpseo_primary_category',''),(212927,30719,'_yoast_wpseo_primary_blog-format',''),(212928,30719,'_yoast_wpseo_content_score','90'),(212929,30719,'_yoast_wpseo_estimated-reading-time-minutes','3'),(212930,40937,'_thumbnail_id','30721'),(212931,40937,'__thumbnail_id','field_617570855ddaf'),(212932,40937,'hide_hero','0'),(212933,40937,'_hide_hero','field_66a2380fcda39'),(212934,40937,'hero_title',''),(212935,40937,'_hero_title','field_617571fe285e8'),(212936,40937,'hero_text',''),(212937,40937,'_hero_text','field_6175723c285e9'),(212938,40937,'hero_actions',''),(212939,40937,'_hero_actions','field_61757270285ea'),(212940,40937,'hero_style','default'),(212941,40937,'_hero_style','field_62051d9dc5324'),(212942,40937,'hero_image_pos_x','right'),(212943,40937,'_hero_image_pos_x','field_62ec3d05390bb'),(212944,40937,'hero_image_pos_y','top'),(212945,40937,'_hero_image_pos_y','field_62ec3d05390bc'),(212946,40937,'hero_image_pos',''),(212947,40937,'_hero_image_pos','field_62ec3d05390ba'),(212948,40937,'fft_hide_from_listings','0'),(212949,40937,'_fft_hide_from_listings','field_61f1320446ab2'),(212950,40937,'post_format',''),(212951,40937,'_post_format','field_61756bfb51898'),(212952,40937,'post_author',''),(212953,40937,'_post_author','field_62ec389d22113'),(212954,40937,'post_reviewer',''),(212955,40937,'_post_reviewer','field_627140a2a9800'),(212956,40937,'post_table_of_contents','0'),(212957,40937,'_post_table_of_contents','field_65c503bc846a6'),(212958,40936,'hide_hero','0'),(212959,40936,'_hide_hero','field_66a2380fcda39'),(212960,40936,'hero_title',''),(212961,40936,'_hero_title','field_617571fe285e8'),(212962,40936,'hero_text',''),(212963,40936,'_hero_text','field_6175723c285e9'),(212964,40936,'hero_actions',''),(212965,40936,'_hero_actions','field_61757270285ea'),(212966,40936,'hero_style','default'),(212967,40936,'_hero_style','field_62051d9dc5324'),(212968,40936,'_thumbnail_id','30721'),(212969,40936,'__thumbnail_id','field_617570855ddaf'),(212970,40936,'hero_image_pos_x','right'),(212971,40936,'_hero_image_pos_x','field_62ec3d05390bb'),(212972,40936,'hero_image_pos_y','top'),(212973,40936,'_hero_image_pos_y','field_62ec3d05390bc'),(212974,40936,'hero_image_pos',''),(212975,40936,'_hero_image_pos','field_62ec3d05390ba'),(212976,40936,'fft_hide_from_listings','0'),(212977,40936,'_fft_hide_from_listings','field_61f1320446ab2'),(212978,40936,'post_format',''),(212979,40936,'_post_format','field_61756bfb51898'),(212980,40936,'post_author',''),(212981,40936,'_post_author','field_62ec389d22113'),(212982,40936,'post_reviewer',''),(212983,40936,'_post_reviewer','field_627140a2a9800'),(212984,40936,'post_table_of_contents','0'),(212985,40936,'_post_table_of_contents','field_65c503bc846a6'),(212987,40938,'_thumbnail_id','30721'),(212988,40938,'__thumbnail_id','field_617570855ddaf'),(212989,40938,'hide_hero','0'),(212990,40938,'_hide_hero','field_66a2380fcda39'),(212991,40938,'hero_title',''),(212992,40938,'_hero_title','field_617571fe285e8'),(212993,40938,'hero_text',''),(212994,40938,'_hero_text','field_6175723c285e9'),(212995,40938,'hero_actions',''),(212996,40938,'_hero_actions','field_61757270285ea'),(212997,40938,'hero_style','default'),(212998,40938,'_hero_style','field_62051d9dc5324'),(212999,40938,'hero_image_pos_x','right'),(213000,40938,'_hero_image_pos_x','field_62ec3d05390bb'),(213001,40938,'hero_image_pos_y','top'),(213002,40938,'_hero_image_pos_y','field_62ec3d05390bc'),(213003,40938,'hero_image_pos',''),(213004,40938,'_hero_image_pos','field_62ec3d05390ba'),(213005,40938,'fft_hide_from_listings','0'),(213006,40938,'_fft_hide_from_listings','field_61f1320446ab2'),(213007,40938,'post_format',''),(213008,40938,'_post_format','field_61756bfb51898'),(213009,40938,'post_author',''),(213010,40938,'_post_author','field_62ec389d22113'),(213011,40938,'post_reviewer',''),(213012,40938,'_post_reviewer','field_627140a2a9800'),(213013,40938,'post_table_of_contents','0'),(213014,40938,'_post_table_of_contents','field_65c503bc846a6'),(213015,18628,'_edit_lock','1726758694:13'),(213017,18628,'hide_hero','0'),(213018,18628,'_hide_hero','field_66a2380fcda39'),(213019,18628,'hero_title',''),(213020,18628,'_hero_title','field_617571fe285e8'),(213021,18628,'hero_text',''),(213022,18628,'_hero_text','field_6175723c285e9'),(213023,18628,'hero_actions',''),(213024,18628,'_hero_actions','field_61757270285ea'),(213025,18628,'hero_style','default'),(213026,18628,'_hero_style','field_62051d9dc5324'),(213027,18628,'__thumbnail_id','field_617570855ddaf'),(213028,18628,'hero_image_pos_x','right'),(213029,18628,'_hero_image_pos_x','field_62ec3d05390bb'),(213030,18628,'hero_image_pos_y','top'),(213031,18628,'_hero_image_pos_y','field_62ec3d05390bc'),(213032,18628,'hero_image_pos',''),(213033,18628,'_hero_image_pos','field_62ec3d05390ba'),(213034,18628,'fft_hide_from_listings','0'),(213035,18628,'_fft_hide_from_listings','field_61f1320446ab2'),(213036,18628,'post_format',''),(213037,18628,'_post_format','field_61756bfb51898'),(213038,18628,'post_author',''),(213039,18628,'_post_author','field_62ec389d22113'),(213040,18628,'post_reviewer',''),(213041,18628,'_post_reviewer','field_627140a2a9800'),(213042,18628,'post_table_of_contents','0'),(213043,18628,'_post_table_of_contents','field_65c503bc846a6'),(213044,18628,'_yoast_wpseo_primary_category',''),(213045,18628,'_yoast_wpseo_primary_blog-format',''),(213046,18628,'_yoast_wpseo_content_score','90'),(213047,18628,'_yoast_wpseo_estimated-reading-time-minutes','2'),(213048,40940,'_thumbnail_id','18633'),(213049,40940,'__thumbnail_id','field_617570855ddaf'),(213050,40940,'hide_hero','0'),(213051,40940,'_hide_hero','field_66a2380fcda39'),(213052,40940,'hero_title',''),(213053,40940,'_hero_title','field_617571fe285e8'),(213054,40940,'hero_text',''),(213055,40940,'_hero_text','field_6175723c285e9'),(213056,40940,'hero_actions',''),(213057,40940,'_hero_actions','field_61757270285ea'),(213058,40940,'hero_style','default'),(213059,40940,'_hero_style','field_62051d9dc5324'),(213060,40940,'hero_image_pos_x','right'),(213061,40940,'_hero_image_pos_x','field_62ec3d05390bb'),(213062,40940,'hero_image_pos_y','top'),(213063,40940,'_hero_image_pos_y','field_62ec3d05390bc'),(213064,40940,'hero_image_pos',''),(213065,40940,'_hero_image_pos','field_62ec3d05390ba'),(213066,40940,'fft_hide_from_listings','0'),(213067,40940,'_fft_hide_from_listings','field_61f1320446ab2'),(213068,40940,'post_format',''),(213069,40940,'_post_format','field_61756bfb51898'),(213070,40940,'post_author',''),(213071,40940,'_post_author','field_62ec389d22113'),(213072,40940,'post_reviewer',''),(213073,40940,'_post_reviewer','field_627140a2a9800'),(213074,40940,'post_table_of_contents','0'),(213075,40940,'_post_table_of_contents','field_65c503bc846a6'),(213076,40939,'hide_hero','0'),(213077,40939,'_hide_hero','field_66a2380fcda39'),(213078,40939,'hero_title',''),(213079,40939,'_hero_title','field_617571fe285e8'),(213080,40939,'hero_text',''),(213081,40939,'_hero_text','field_6175723c285e9'),(213082,40939,'hero_actions',''),(213083,40939,'_hero_actions','field_61757270285ea'),(213084,40939,'hero_style','default'),(213085,40939,'_hero_style','field_62051d9dc5324'),(213086,40939,'_thumbnail_id','18633'),(213087,40939,'__thumbnail_id','field_617570855ddaf'),(213088,40939,'hero_image_pos_x','right'),(213089,40939,'_hero_image_pos_x','field_62ec3d05390bb'),(213090,40939,'hero_image_pos_y','top'),(213091,40939,'_hero_image_pos_y','field_62ec3d05390bc'),(213092,40939,'hero_image_pos',''),(213093,40939,'_hero_image_pos','field_62ec3d05390ba'),(213094,40939,'fft_hide_from_listings','0'),(213095,40939,'_fft_hide_from_listings','field_61f1320446ab2'),(213096,40939,'post_format',''),(213097,40939,'_post_format','field_61756bfb51898'),(213098,40939,'post_author',''),(213099,40939,'_post_author','field_62ec389d22113'),(213100,40939,'post_reviewer',''),(213101,40939,'_post_reviewer','field_627140a2a9800'),(213102,40939,'post_table_of_contents','0'),(213103,40939,'_post_table_of_contents','field_65c503bc846a6'),(213104,40941,'_thumbnail_id','18633'),(213105,40941,'__thumbnail_id','field_617570855ddaf'),(213106,40941,'hide_hero','0'),(213107,40941,'_hide_hero','field_66a2380fcda39'),(213108,40941,'hero_title',''),(213109,40941,'_hero_title','field_617571fe285e8'),(213110,40941,'hero_text',''),(213111,40941,'_hero_text','field_6175723c285e9'),(213112,40941,'hero_actions',''),(213113,40941,'_hero_actions','field_61757270285ea'),(213114,40941,'hero_style','default'),(213115,40941,'_hero_style','field_62051d9dc5324'),(213116,40941,'hero_image_pos_x','right'),(213117,40941,'_hero_image_pos_x','field_62ec3d05390bb'),(213118,40941,'hero_image_pos_y','top'),(213119,40941,'_hero_image_pos_y','field_62ec3d05390bc'),(213120,40941,'hero_image_pos',''),(213121,40941,'_hero_image_pos','field_62ec3d05390ba'),(213122,40941,'fft_hide_from_listings','0'),(213123,40941,'_fft_hide_from_listings','field_61f1320446ab2'),(213124,40941,'post_format',''),(213125,40941,'_post_format','field_61756bfb51898'),(213126,40941,'post_author',''),(213127,40941,'_post_author','field_62ec389d22113'),(213128,40941,'post_reviewer',''),(213129,40941,'_post_reviewer','field_627140a2a9800'),(213130,40941,'post_table_of_contents','0'),(213131,40941,'_post_table_of_contents','field_65c503bc846a6'),(213133,33066,'hide_hero','0'),(213134,33066,'_hide_hero','field_66a2380fcda39'),(213135,33066,'hero_title',''),(213136,33066,'_hero_title','field_617571fe285e8'),(213137,33066,'hero_text',''),(213138,33066,'_hero_text','field_6175723c285e9'),(213139,33066,'hero_actions',''),(213140,33066,'_hero_actions','field_61757270285ea'),(213141,33066,'hero_style','default'),(213142,33066,'_hero_style','field_62051d9dc5324'),(213143,33066,'__thumbnail_id','field_617570855ddaf'),(213144,33066,'hero_image_pos_x','right'),(213145,33066,'_hero_image_pos_x','field_62ec3d05390bb'),(213146,33066,'hero_image_pos_y','top'),(213147,33066,'_hero_image_pos_y','field_62ec3d05390bc'),(213148,33066,'hero_image_pos',''),(213149,33066,'_hero_image_pos','field_62ec3d05390ba'),(213150,33066,'fft_hide_from_listings','0'),(213151,33066,'_fft_hide_from_listings','field_61f1320446ab2'),(213152,33066,'post_format',''),(213153,33066,'_post_format','field_61756bfb51898'),(213154,33066,'post_author',''),(213155,33066,'_post_author','field_62ec389d22113'),(213156,33066,'post_reviewer',''),(213157,33066,'_post_reviewer','field_627140a2a9800'),(213158,33066,'post_table_of_contents','0'),(213159,33066,'_post_table_of_contents','field_65c503bc846a6'),(213160,33066,'_yoast_wpseo_primary_category',''),(213161,33066,'_yoast_wpseo_primary_blog-format',''),(213162,33066,'_yoast_wpseo_content_score','90'),(213163,33066,'_yoast_wpseo_estimated-reading-time-minutes','4'),(213164,40943,'_thumbnail_id','23145'),(213165,40943,'__thumbnail_id','field_617570855ddaf'),(213166,40943,'hide_hero','0'),(213167,40943,'_hide_hero','field_66a2380fcda39'),(213168,40943,'hero_title',''),(213169,40943,'_hero_title','field_617571fe285e8'),(213170,40943,'hero_text',''),(213171,40943,'_hero_text','field_6175723c285e9'),(213172,40943,'hero_actions',''),(213173,40943,'_hero_actions','field_61757270285ea'),(213174,40943,'hero_style','default'),(213175,40943,'_hero_style','field_62051d9dc5324'),(213176,40943,'hero_image_pos_x','right'),(213177,40943,'_hero_image_pos_x','field_62ec3d05390bb'),(213178,40943,'hero_image_pos_y','top'),(213179,40943,'_hero_image_pos_y','field_62ec3d05390bc'),(213180,40943,'hero_image_pos',''),(213181,40943,'_hero_image_pos','field_62ec3d05390ba'),(213182,40943,'fft_hide_from_listings','0'),(213183,40943,'_fft_hide_from_listings','field_61f1320446ab2'),(213184,40943,'post_format',''),(213185,40943,'_post_format','field_61756bfb51898'),(213186,40943,'post_author',''),(213187,40943,'_post_author','field_62ec389d22113'),(213188,40943,'post_reviewer',''),(213189,40943,'_post_reviewer','field_627140a2a9800'),(213190,40943,'post_table_of_contents','0'),(213191,40943,'_post_table_of_contents','field_65c503bc846a6'),(213192,40942,'hide_hero','0'),(213193,40942,'_hide_hero','field_66a2380fcda39'),(213194,40942,'hero_title',''),(213195,40942,'_hero_title','field_617571fe285e8'),(213196,40942,'hero_text',''),(213197,40942,'_hero_text','field_6175723c285e9'),(213198,40942,'hero_actions',''),(213199,40942,'_hero_actions','field_61757270285ea'),(213200,40942,'hero_style','default'),(213201,40942,'_hero_style','field_62051d9dc5324'),(213202,40942,'_thumbnail_id','23145'),(213203,40942,'__thumbnail_id','field_617570855ddaf'),(213204,40942,'hero_image_pos_x','right'),(213205,40942,'_hero_image_pos_x','field_62ec3d05390bb'),(213206,40942,'hero_image_pos_y','top'),(213207,40942,'_hero_image_pos_y','field_62ec3d05390bc'),(213208,40942,'hero_image_pos',''),(213209,40942,'_hero_image_pos','field_62ec3d05390ba'),(213210,40942,'fft_hide_from_listings','0'),(213211,40942,'_fft_hide_from_listings','field_61f1320446ab2'),(213212,40942,'post_format',''),(213213,40942,'_post_format','field_61756bfb51898'),(213214,40942,'post_author',''),(213215,40942,'_post_author','field_62ec389d22113'),(213216,40942,'post_reviewer',''),(213217,40942,'_post_reviewer','field_627140a2a9800'),(213218,40942,'post_table_of_contents','0'),(213219,40942,'_post_table_of_contents','field_65c503bc846a6'),(213221,40944,'_thumbnail_id','23145'),(213222,40944,'__thumbnail_id','field_617570855ddaf'),(213223,40944,'hide_hero','0'),(213224,40944,'_hide_hero','field_66a2380fcda39'),(213225,40944,'hero_title',''),(213226,40944,'_hero_title','field_617571fe285e8'),(213227,40944,'hero_text',''),(213228,40944,'_hero_text','field_6175723c285e9'),(213229,40944,'hero_actions',''),(213230,40944,'_hero_actions','field_61757270285ea'),(213231,40944,'hero_style','default'),(213232,40944,'_hero_style','field_62051d9dc5324'),(213233,40944,'hero_image_pos_x','right'),(213234,40944,'_hero_image_pos_x','field_62ec3d05390bb'),(213235,40944,'hero_image_pos_y','top'),(213236,40944,'_hero_image_pos_y','field_62ec3d05390bc'),(213237,40944,'hero_image_pos',''),(213238,40944,'_hero_image_pos','field_62ec3d05390ba'),(213239,40944,'fft_hide_from_listings','0'),(213240,40944,'_fft_hide_from_listings','field_61f1320446ab2'),(213241,40944,'post_format',''),(213242,40944,'_post_format','field_61756bfb51898'),(213243,40944,'post_author',''),(213244,40944,'_post_author','field_62ec389d22113'),(213245,40944,'post_reviewer',''),(213246,40944,'_post_reviewer','field_627140a2a9800'),(213247,40944,'post_table_of_contents','0'),(213248,40944,'_post_table_of_contents','field_65c503bc846a6'),(213249,2283,'_edit_lock','1726843772:13'),(213250,40946,'hide_hero','0'),(213251,40946,'_hide_hero','field_66a2380fcda39'),(213252,40946,'hero_title',''),(213253,40946,'_hero_title','field_617571fe285e8'),(213254,40946,'hero_text',''),(213255,40946,'_hero_text','field_6175723c285e9'),(213256,40946,'hero_actions',''),(213257,40946,'_hero_actions','field_61757270285ea'),(213258,40946,'hero_style','default'),(213259,40946,'_hero_style','field_62051d9dc5324'),(213260,40946,'_thumbnail_id','2237'),(213261,40946,'__thumbnail_id','field_617570855ddaf'),(213262,40946,'hero_image_pos_x','right'),(213263,40946,'_hero_image_pos_x','field_62ec3d05390bb'),(213264,40946,'hero_image_pos_y','top'),(213265,40946,'_hero_image_pos_y','field_62ec3d05390bc'),(213266,40946,'hero_image_pos',''),(213267,40946,'_hero_image_pos','field_62ec3d05390ba'),(213268,40946,'fft_hide_from_listings','0'),(213269,40946,'_fft_hide_from_listings','field_61f1320446ab2'),(213270,40946,'post_format',''),(213271,40946,'_post_format','field_61756bfb51898'),(213272,40946,'post_author',''),(213273,40946,'_post_author','field_62ec389d22113'),(213274,40946,'post_reviewer',''),(213275,40946,'_post_reviewer','field_627140a2a9800'),(213276,40946,'post_table_of_contents','0'),(213277,40946,'_post_table_of_contents','field_65c503bc846a6'),(213278,2283,'_yoast_wpseo_content_score','90'),(213279,2283,'_yoast_wpseo_estimated-reading-time-minutes','4'),(213281,2283,'hide_hero','0'),(213282,2283,'_hide_hero','field_66a2380fcda39'),(213283,2283,'hero_title',''),(213284,2283,'_hero_title','field_617571fe285e8'),(213285,2283,'hero_text',''),(213286,2283,'_hero_text','field_6175723c285e9'),(213287,2283,'hero_actions',''),(213288,2283,'_hero_actions','field_61757270285ea'),(213289,2283,'hero_style','default'),(213290,2283,'_hero_style','field_62051d9dc5324'),(213291,2283,'__thumbnail_id','field_617570855ddaf'),(213292,2283,'hero_image_pos_x','right'),(213293,2283,'_hero_image_pos_x','field_62ec3d05390bb'),(213294,2283,'hero_image_pos_y','top'),(213295,2283,'_hero_image_pos_y','field_62ec3d05390bc'),(213296,2283,'hero_image_pos',''),(213297,2283,'_hero_image_pos','field_62ec3d05390ba'),(213298,2283,'fft_hide_from_listings','0'),(213299,2283,'_fft_hide_from_listings','field_61f1320446ab2'),(213300,2283,'post_format',''),(213301,2283,'_post_format','field_61756bfb51898'),(213302,2283,'post_author',''),(213303,2283,'_post_author','field_62ec389d22113'),(213304,2283,'post_reviewer',''),(213305,2283,'_post_reviewer','field_627140a2a9800'),(213306,2283,'post_table_of_contents','0'),(213307,2283,'_post_table_of_contents','field_65c503bc846a6'),(213308,2283,'_yoast_wpseo_primary_category',''),(213309,2283,'_yoast_wpseo_primary_blog-format',''),(213310,2283,'_yoast_wpseo_metadesc','How to Alleviate Back Pain: A Guide for Rugby Players. Back pain is a widespread issue, affecting up to 80% of people at some point in their lives, including rugby players. Read more on our blog...'),(213311,40947,'_thumbnail_id','2237'),(213312,40947,'__thumbnail_id','field_617570855ddaf'),(213313,40947,'contact_text',''),(213314,40947,'_contact_text','field_56ab78a159605'),(213315,40947,'contact_number',''),(213316,40947,'_contact_number','field_56ab78cc59606'),(213317,40947,'hide_hero','0'),(213318,40947,'_hide_hero','field_66a2380fcda39'),(213319,40947,'hero_title',''),(213320,40947,'_hero_title','field_617571fe285e8'),(213321,40947,'hero_text',''),(213322,40947,'_hero_text','field_6175723c285e9'),(213323,40947,'hero_actions',''),(213324,40947,'_hero_actions','field_61757270285ea'),(213325,40947,'hero_style','default'),(213326,40947,'_hero_style','field_62051d9dc5324'),(213327,40947,'hero_image_pos_x','right'),(213328,40947,'_hero_image_pos_x','field_62ec3d05390bb'),(213329,40947,'hero_image_pos_y','top'),(213330,40947,'_hero_image_pos_y','field_62ec3d05390bc'),(213331,40947,'hero_image_pos',''),(213332,40947,'_hero_image_pos','field_62ec3d05390ba'),(213333,40947,'fft_hide_from_listings','0'),(213334,40947,'_fft_hide_from_listings','field_61f1320446ab2'),(213335,40947,'post_format',''),(213336,40947,'_post_format','field_61756bfb51898'),(213337,40947,'post_author',''),(213338,40947,'_post_author','field_62ec389d22113'),(213339,40947,'post_reviewer',''),(213340,40947,'_post_reviewer','field_627140a2a9800'),(213341,40947,'post_table_of_contents','0'),(213342,40947,'_post_table_of_contents','field_65c503bc846a6'),(213343,25092,'_edit_lock','1728478044:5'),(213345,25092,'hide_hero','0'),(213346,25092,'_hide_hero','field_66a2380fcda39'),(213347,25092,'hero_title',''),(213348,25092,'_hero_title','field_617571fe285e8'),(213349,25092,'hero_text',''),(213350,25092,'_hero_text','field_6175723c285e9'),(213351,25092,'hero_actions',''),(213352,25092,'_hero_actions','field_61757270285ea'),(213353,25092,'hero_style','default'),(213354,25092,'_hero_style','field_62051d9dc5324'),(213355,25092,'__thumbnail_id','field_617570855ddaf'),(213356,25092,'hero_image_pos_x','right'),(213357,25092,'_hero_image_pos_x','field_62ec3d05390bb'),(213358,25092,'hero_image_pos_y','top'),(213359,25092,'_hero_image_pos_y','field_62ec3d05390bc'),(213360,25092,'hero_image_pos',''),(213361,25092,'_hero_image_pos','field_62ec3d05390ba'),(213362,25092,'fft_hide_from_listings','0'),(213363,25092,'_fft_hide_from_listings','field_61f1320446ab2'),(213364,25092,'post_format',''),(213365,25092,'_post_format','field_61756bfb51898'),(213366,25092,'post_author',''),(213367,25092,'_post_author','field_62ec389d22113'),(213368,25092,'post_reviewer',''),(213369,25092,'_post_reviewer','field_627140a2a9800'),(213370,25092,'post_table_of_contents','0'),(213371,25092,'_post_table_of_contents','field_65c503bc846a6'),(213372,25092,'_yoast_wpseo_primary_category',''),(213373,25092,'_yoast_wpseo_primary_blog-format',''),(213374,25092,'_yoast_wpseo_content_score','90'),(213375,25092,'_yoast_wpseo_estimated-reading-time-minutes','8'),(213376,40949,'_thumbnail_id','25128'),(213377,40949,'__thumbnail_id','field_617570855ddaf'),(213378,40949,'hide_hero','0'),(213379,40949,'_hide_hero','field_66a2380fcda39'),(213380,40949,'hero_title',''),(213381,40949,'_hero_title','field_617571fe285e8'),(213382,40949,'hero_text',''),(213383,40949,'_hero_text','field_6175723c285e9'),(213384,40949,'hero_actions',''),(213385,40949,'_hero_actions','field_61757270285ea'),(213386,40949,'hero_style','default'),(213387,40949,'_hero_style','field_62051d9dc5324'),(213388,40949,'hero_image_pos_x','right'),(213389,40949,'_hero_image_pos_x','field_62ec3d05390bb'),(213390,40949,'hero_image_pos_y','top'),(213391,40949,'_hero_image_pos_y','field_62ec3d05390bc'),(213392,40949,'hero_image_pos',''),(213393,40949,'_hero_image_pos','field_62ec3d05390ba'),(213394,40949,'fft_hide_from_listings','0'),(213395,40949,'_fft_hide_from_listings','field_61f1320446ab2'),(213396,40949,'post_format',''),(213397,40949,'_post_format','field_61756bfb51898'),(213398,40949,'post_author',''),(213399,40949,'_post_author','field_62ec389d22113'),(213400,40949,'post_reviewer',''),(213401,40949,'_post_reviewer','field_627140a2a9800'),(213402,40949,'post_table_of_contents','0'),(213403,40949,'_post_table_of_contents','field_65c503bc846a6'),(213404,40948,'hide_hero','0'),(213405,40948,'_hide_hero','field_66a2380fcda39'),(213406,40948,'hero_title',''),(213407,40948,'_hero_title','field_617571fe285e8'),(213408,40948,'hero_text',''),(213409,40948,'_hero_text','field_6175723c285e9'),(213410,40948,'hero_actions',''),(213411,40948,'_hero_actions','field_61757270285ea'),(213412,40948,'hero_style','default'),(213413,40948,'_hero_style','field_62051d9dc5324'),(213414,40948,'_thumbnail_id','25128'),(213415,40948,'__thumbnail_id','field_617570855ddaf'),(213416,40948,'hero_image_pos_x','right'),(213417,40948,'_hero_image_pos_x','field_62ec3d05390bb'),(213418,40948,'hero_image_pos_y','top'),(213419,40948,'_hero_image_pos_y','field_62ec3d05390bc'),(213420,40948,'hero_image_pos',''),(213421,40948,'_hero_image_pos','field_62ec3d05390ba'),(213422,40948,'fft_hide_from_listings','0'),(213423,40948,'_fft_hide_from_listings','field_61f1320446ab2'),(213424,40948,'post_format',''),(213425,40948,'_post_format','field_61756bfb51898'),(213426,40948,'post_author',''),(213427,40948,'_post_author','field_62ec389d22113'),(213428,40948,'post_reviewer',''),(213429,40948,'_post_reviewer','field_627140a2a9800'),(213430,40948,'post_table_of_contents','0'),(213431,40948,'_post_table_of_contents','field_65c503bc846a6'),(213433,40950,'_thumbnail_id','25128'),(213434,40950,'__thumbnail_id','field_617570855ddaf'),(213435,40950,'hide_hero','0'),(213436,40950,'_hide_hero','field_66a2380fcda39'),(213437,40950,'hero_title',''),(213438,40950,'_hero_title','field_617571fe285e8'),(213439,40950,'hero_text',''),(213440,40950,'_hero_text','field_6175723c285e9'),(213441,40950,'hero_actions',''),(213442,40950,'_hero_actions','field_61757270285ea'),(213443,40950,'hero_style','default'),(213444,40950,'_hero_style','field_62051d9dc5324'),(213445,40950,'hero_image_pos_x','right'),(213446,40950,'_hero_image_pos_x','field_62ec3d05390bb'),(213447,40950,'hero_image_pos_y','top'),(213448,40950,'_hero_image_pos_y','field_62ec3d05390bc'),(213449,40950,'hero_image_pos',''),(213450,40950,'_hero_image_pos','field_62ec3d05390ba'),(213451,40950,'fft_hide_from_listings','0'),(213452,40950,'_fft_hide_from_listings','field_61f1320446ab2'),(213453,40950,'post_format',''),(213454,40950,'_post_format','field_61756bfb51898'),(213455,40950,'post_author',''),(213456,40950,'_post_author','field_62ec389d22113'),(213457,40950,'post_reviewer',''),(213458,40950,'_post_reviewer','field_627140a2a9800'),(213459,40950,'post_table_of_contents','0'),(213460,40950,'_post_table_of_contents','field_65c503bc846a6'),(213461,27321,'_edit_lock','1726845017:13'),(213463,27321,'hide_hero','0'),(213464,27321,'_hide_hero','field_66a2380fcda39'),(213465,27321,'hero_title',''),(213466,27321,'_hero_title','field_617571fe285e8'),(213467,27321,'hero_text',''),(213468,27321,'_hero_text','field_6175723c285e9'),(213469,27321,'hero_actions',''),(213470,27321,'_hero_actions','field_61757270285ea'),(213471,27321,'hero_style','default'),(213472,27321,'_hero_style','field_62051d9dc5324'),(213473,27321,'__thumbnail_id','field_617570855ddaf'),(213474,27321,'hero_image_pos_x','right'),(213475,27321,'_hero_image_pos_x','field_62ec3d05390bb'),(213476,27321,'hero_image_pos_y','top'),(213477,27321,'_hero_image_pos_y','field_62ec3d05390bc'),(213478,27321,'hero_image_pos',''),(213479,27321,'_hero_image_pos','field_62ec3d05390ba'),(213480,27321,'fft_hide_from_listings','0'),(213481,27321,'_fft_hide_from_listings','field_61f1320446ab2'),(213482,27321,'post_format',''),(213483,27321,'_post_format','field_61756bfb51898'),(213484,27321,'post_author',''),(213485,27321,'_post_author','field_62ec389d22113'),(213486,27321,'post_reviewer',''),(213487,27321,'_post_reviewer','field_627140a2a9800'),(213488,27321,'post_table_of_contents','0'),(213489,27321,'_post_table_of_contents','field_65c503bc846a6'),(213490,27321,'_yoast_wpseo_primary_category',''),(213491,27321,'_yoast_wpseo_primary_blog-format',''),(213492,27321,'_yoast_wpseo_content_score','90'),(213493,27321,'_yoast_wpseo_estimated-reading-time-minutes','10'),(213494,40952,'_thumbnail_id','27335'),(213495,40952,'__thumbnail_id','field_617570855ddaf'),(213496,40952,'hide_hero','0'),(213497,40952,'_hide_hero','field_66a2380fcda39'),(213498,40952,'hero_title',''),(213499,40952,'_hero_title','field_617571fe285e8'),(213500,40952,'hero_text',''),(213501,40952,'_hero_text','field_6175723c285e9'),(213502,40952,'hero_actions',''),(213503,40952,'_hero_actions','field_61757270285ea'),(213504,40952,'hero_style','default'),(213505,40952,'_hero_style','field_62051d9dc5324'),(213506,40952,'hero_image_pos_x','right'),(213507,40952,'_hero_image_pos_x','field_62ec3d05390bb'),(213508,40952,'hero_image_pos_y','top'),(213509,40952,'_hero_image_pos_y','field_62ec3d05390bc'),(213510,40952,'hero_image_pos',''),(213511,40952,'_hero_image_pos','field_62ec3d05390ba'),(213512,40952,'fft_hide_from_listings','0'),(213513,40952,'_fft_hide_from_listings','field_61f1320446ab2'),(213514,40952,'post_format',''),(213515,40952,'_post_format','field_61756bfb51898'),(213516,40952,'post_author',''),(213517,40952,'_post_author','field_62ec389d22113'),(213518,40952,'post_reviewer',''),(213519,40952,'_post_reviewer','field_627140a2a9800'),(213520,40952,'post_table_of_contents','0'),(213521,40952,'_post_table_of_contents','field_65c503bc846a6'),(213522,40951,'hide_hero','0'),(213523,40951,'_hide_hero','field_66a2380fcda39'),(213524,40951,'hero_title',''),(213525,40951,'_hero_title','field_617571fe285e8'),(213526,40951,'hero_text',''),(213527,40951,'_hero_text','field_6175723c285e9'),(213528,40951,'hero_actions',''),(213529,40951,'_hero_actions','field_61757270285ea'),(213530,40951,'hero_style','default'),(213531,40951,'_hero_style','field_62051d9dc5324'),(213532,40951,'_thumbnail_id','27335'),(213533,40951,'__thumbnail_id','field_617570855ddaf'),(213534,40951,'hero_image_pos_x','right'),(213535,40951,'_hero_image_pos_x','field_62ec3d05390bb'),(213536,40951,'hero_image_pos_y','top'),(213537,40951,'_hero_image_pos_y','field_62ec3d05390bc'),(213538,40951,'hero_image_pos',''),(213539,40951,'_hero_image_pos','field_62ec3d05390ba'),(213540,40951,'fft_hide_from_listings','0'),(213541,40951,'_fft_hide_from_listings','field_61f1320446ab2'),(213542,40951,'post_format',''),(213543,40951,'_post_format','field_61756bfb51898'),(213544,40951,'post_author',''),(213545,40951,'_post_author','field_62ec389d22113'),(213546,40951,'post_reviewer',''),(213547,40951,'_post_reviewer','field_627140a2a9800'),(213548,40951,'post_table_of_contents','0'),(213549,40951,'_post_table_of_contents','field_65c503bc846a6'),(213551,27321,'_yoast_wpseo_metadesc','Foot Biomechanics - Learn all about the Muscles of the Foot and Ankle on our blog. read more...'),(213552,16935,'_edit_lock','1738158578:3'),(213554,16935,'hide_hero','0'),(213555,16935,'_hide_hero','field_66a2380fcda39'),(213556,16935,'hero_title',''),(213557,16935,'_hero_title','field_617571fe285e8'),(213558,16935,'hero_text',''),(213559,16935,'_hero_text','field_6175723c285e9'),(213560,16935,'hero_actions',''),(213561,16935,'_hero_actions','field_61757270285ea'),(213562,16935,'hero_style','default'),(213563,16935,'_hero_style','field_62051d9dc5324'),(213564,16935,'__thumbnail_id','field_617570855ddaf'),(213565,16935,'hero_image_pos_x','right'),(213566,16935,'_hero_image_pos_x','field_62ec3d05390bb'),(213567,16935,'hero_image_pos_y','top'),(213568,16935,'_hero_image_pos_y','field_62ec3d05390bc'),(213569,16935,'hero_image_pos',''),(213570,16935,'_hero_image_pos','field_62ec3d05390ba'),(213571,16935,'fft_hide_from_listings','0'),(213572,16935,'_fft_hide_from_listings','field_61f1320446ab2'),(213573,16935,'post_format',''),(213574,16935,'_post_format','field_61756bfb51898'),(213575,16935,'post_author',''),(213576,16935,'_post_author','field_62ec389d22113'),(213577,16935,'post_reviewer',''),(213578,16935,'_post_reviewer','field_627140a2a9800'),(213579,16935,'post_table_of_contents','0'),(213580,16935,'_post_table_of_contents','field_65c503bc846a6'),(213581,16935,'_yoast_wpseo_primary_category',''),(213582,16935,'_yoast_wpseo_primary_blog-format',''),(213583,16935,'_yoast_wpseo_content_score','90'),(213584,16935,'_yoast_wpseo_estimated-reading-time-minutes','3'),(213585,40954,'_thumbnail_id','11156'),(213586,40954,'__thumbnail_id','field_617570855ddaf'),(213587,40954,'hide_hero','0'),(213588,40954,'_hide_hero','field_66a2380fcda39'),(213589,40954,'hero_title',''),(213590,40954,'_hero_title','field_617571fe285e8'),(213591,40954,'hero_text',''),(213592,40954,'_hero_text','field_6175723c285e9'),(213593,40954,'hero_actions',''),(213594,40954,'_hero_actions','field_61757270285ea'),(213595,40954,'hero_style','default'),(213596,40954,'_hero_style','field_62051d9dc5324'),(213597,40954,'hero_image_pos_x','right'),(213598,40954,'_hero_image_pos_x','field_62ec3d05390bb'),(213599,40954,'hero_image_pos_y','top'),(213600,40954,'_hero_image_pos_y','field_62ec3d05390bc'),(213601,40954,'hero_image_pos',''),(213602,40954,'_hero_image_pos','field_62ec3d05390ba'),(213603,40954,'fft_hide_from_listings','0'),(213604,40954,'_fft_hide_from_listings','field_61f1320446ab2'),(213605,40954,'post_format',''),(213606,40954,'_post_format','field_61756bfb51898'),(213607,40954,'post_author',''),(213608,40954,'_post_author','field_62ec389d22113'),(213609,40954,'post_reviewer',''),(213610,40954,'_post_reviewer','field_627140a2a9800'),(213611,40954,'post_table_of_contents','0'),(213612,40954,'_post_table_of_contents','field_65c503bc846a6'),(213613,17661,'_edit_lock','1737388956:17'),(213615,17661,'hide_hero','0'),(213616,17661,'_hide_hero','field_66a2380fcda39'),(213617,17661,'hero_title',''),(213618,17661,'_hero_title','field_617571fe285e8'),(213619,17661,'hero_text',''),(213620,17661,'_hero_text','field_6175723c285e9'),(213621,17661,'hero_actions',''),(213622,17661,'_hero_actions','field_61757270285ea'),(213623,17661,'hero_style','default'),(213624,17661,'_hero_style','field_62051d9dc5324'),(213625,17661,'__thumbnail_id','field_617570855ddaf'),(213626,17661,'hero_image_pos_x','right'),(213627,17661,'_hero_image_pos_x','field_62ec3d05390bb'),(213628,17661,'hero_image_pos_y','top'),(213629,17661,'_hero_image_pos_y','field_62ec3d05390bc'),(213630,17661,'hero_image_pos',''),(213631,17661,'_hero_image_pos','field_62ec3d05390ba'),(213632,17661,'fft_hide_from_listings','0'),(213633,17661,'_fft_hide_from_listings','field_61f1320446ab2'),(213634,17661,'post_format',''),(213635,17661,'_post_format','field_61756bfb51898'),(213636,17661,'post_author',''),(213637,17661,'_post_author','field_62ec389d22113'),(213638,17661,'post_reviewer',''),(213639,17661,'_post_reviewer','field_627140a2a9800'),(213640,17661,'post_table_of_contents','0'),(213641,17661,'_post_table_of_contents','field_65c503bc846a6'),(213642,17661,'_yoast_wpseo_primary_category',''),(213643,17661,'_yoast_wpseo_primary_blog-format',''),(213644,17661,'_yoast_wpseo_content_score','90'),(213645,17661,'_yoast_wpseo_estimated-reading-time-minutes','5'),(213646,40956,'_thumbnail_id','17664'),(213647,40956,'__thumbnail_id','field_617570855ddaf'),(213648,40956,'hide_hero','0'),(213649,40956,'_hide_hero','field_66a2380fcda39'),(213650,40956,'hero_title',''),(213651,40956,'_hero_title','field_617571fe285e8'),(213652,40956,'hero_text',''),(213653,40956,'_hero_text','field_6175723c285e9'),(213654,40956,'hero_actions',''),(213655,40956,'_hero_actions','field_61757270285ea'),(213656,40956,'hero_style','default'),(213657,40956,'_hero_style','field_62051d9dc5324'),(213658,40956,'hero_image_pos_x','right'),(213659,40956,'_hero_image_pos_x','field_62ec3d05390bb'),(213660,40956,'hero_image_pos_y','top'),(213661,40956,'_hero_image_pos_y','field_62ec3d05390bc'),(213662,40956,'hero_image_pos',''),(213663,40956,'_hero_image_pos','field_62ec3d05390ba'),(213664,40956,'fft_hide_from_listings','0'),(213665,40956,'_fft_hide_from_listings','field_61f1320446ab2'),(213666,40956,'post_format',''),(213667,40956,'_post_format','field_61756bfb51898'),(213668,40956,'post_author',''),(213669,40956,'_post_author','field_62ec389d22113'),(213670,40956,'post_reviewer',''),(213671,40956,'_post_reviewer','field_627140a2a9800'),(213672,40956,'post_table_of_contents','0'),(213673,40956,'_post_table_of_contents','field_65c503bc846a6'),(213675,17661,'_yoast_wpseo_metadesc','Guide To Communication Skills For The Fitness Industry. How can we improve them? Read more on the blog...'),(213676,40957,'_wp_attached_file','2024/09/3-1.png'),(213677,40957,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:15:\"2024/09/3-1.png\";s:8:\"filesize\";i:964768;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"3-1-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:597024;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"3-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157050;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"3-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:462374;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:15:\"3-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157050;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:15:\"3-1-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:597024;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:15:\"3-1-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104392;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:15:\"3-1-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:386809;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:16:\"3-1-1080x800.png\";s:5:\"width\";i:1080;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:642007;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:15:\"3-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120555;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:15:\"3-1-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:452955;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:16:\"3-1-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:745816;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:15:\"3-1-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:118027;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:15:\"3-1-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:437008;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:16:\"3-1-1080x900.png\";s:5:\"width\";i:1080;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:731972;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:15:\"3-1-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87804;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:15:\"3-1-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:322896;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:16:\"3-1-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:537232;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213678,40958,'_wp_attached_file','2024/09/4-1.png'),(213679,40958,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:15:\"2024/09/4-1.png\";s:8:\"filesize\";i:959839;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"4-1-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:493712;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"4-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120467;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:15:\"4-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:375034;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:15:\"4-1-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120467;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:15:\"4-1-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:493712;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:15:\"4-1-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87412;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:15:\"4-1-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:353762;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:16:\"4-1-1080x800.png\";s:5:\"width\";i:1080;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:681205;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:15:\"4-1-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92463;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:15:\"4-1-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:376632;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:16:\"4-1-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:737334;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:15:\"4-1-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95910;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:15:\"4-1-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:389977;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213680,40959,'_wp_attached_file','2024/09/5.png'),(213681,40959,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:13:\"2024/09/5.png\";s:8:\"filesize\";i:1062921;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"5-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:675706;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"5-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166152;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"5-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:521052;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:13:\"5-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166152;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:13:\"5-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:675706;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:13:\"5-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117223;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:13:\"5-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:478181;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:14:\"5-1080x800.png\";s:5:\"width\";i:1080;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:766167;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:13:\"5-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124411;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:13:\"5-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:508305;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:14:\"5-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:829212;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:13:\"5-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:129178;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:13:\"5-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:525954;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:14:\"5-1080x900.png\";s:5:\"width\";i:1080;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:846256;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:13:\"5-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102425;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:13:\"5-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:414849;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:14:\"5-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:666115;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213682,40960,'_wp_attached_file','2024/09/6.png'),(213683,40960,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:13:\"2024/09/6.png\";s:8:\"filesize\";i:910762;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"6-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:503139;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"6-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124777;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"6-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:386394;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:13:\"6-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124777;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:13:\"6-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:503139;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:13:\"6-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93614;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:13:\"6-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:384801;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:14:\"6-1080x800.png\";s:5:\"width\";i:1080;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:679300;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:13:\"6-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99397;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:13:\"6-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:401583;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:14:\"6-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:721518;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:13:\"6-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103314;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:13:\"6-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:422050;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:14:\"6-1080x900.png\";s:5:\"width\";i:1080;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:737924;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:13:\"6-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81790;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:13:\"6-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:336314;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213684,40961,'_wp_attached_file','2024/09/7.png'),(213685,40961,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:13:\"2024/09/7.png\";s:8:\"filesize\";i:899347;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"7-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:570246;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"7-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139207;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"7-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:437615;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:13:\"7-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139207;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:13:\"7-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:570246;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:13:\"7-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:96680;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:13:\"7-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:378791;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:14:\"7-1080x800.png\";s:5:\"width\";i:1080;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:613495;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:13:\"7-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110525;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:13:\"7-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:451424;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:14:\"7-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:737044;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:13:\"7-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106654;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:13:\"7-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:422444;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:14:\"7-1080x900.png\";s:5:\"width\";i:1080;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:704417;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:13:\"7-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79627;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:13:\"7-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:305028;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:14:\"7-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:511010;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213686,40962,'_wp_attached_file','2024/09/8.png'),(213687,40962,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:13:\"2024/09/8.png\";s:8:\"filesize\";i:1151734;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"8-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:664030;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"8-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161600;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"8-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:506562;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:13:\"8-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161600;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:13:\"8-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:664030;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:13:\"8-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:115977;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:13:\"8-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:466512;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:14:\"8-1080x800.png\";s:5:\"width\";i:1080;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:811092;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:13:\"8-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122607;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:13:\"8-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:500679;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:14:\"8-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:898703;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:13:\"8-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127925;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:13:\"8-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:515816;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:14:\"8-1080x900.png\";s:5:\"width\";i:1080;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:903541;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:13:\"8-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100297;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:13:\"8-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:400468;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:14:\"8-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:694784;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213688,40963,'_wp_attached_file','2024/09/9.png'),(213689,40963,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:13:\"2024/09/9.png\";s:8:\"filesize\";i:1190132;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:13:\"9-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:687453;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:13:\"9-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164904;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:13:\"9-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:521457;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:13:\"9-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164904;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:13:\"9-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:687453;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:13:\"9-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:105086;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:13:\"9-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:417911;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:14:\"9-1080x800.png\";s:5:\"width\";i:1080;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:767688;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:13:\"9-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121962;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:13:\"9-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:504649;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:14:\"9-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:934738;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:13:\"9-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120285;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:13:\"9-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:481650;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:14:\"9-1080x900.png\";s:5:\"width\";i:1080;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:895179;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:13:\"9-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90912;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:13:\"9-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:359293;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:14:\"9-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:637780;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213690,40964,'_wp_attached_file','2024/09/10.png'),(213691,40964,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:14:\"2024/09/10.png\";s:8:\"filesize\";i:1301517;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"10-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:760049;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"10-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:170863;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"10-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:567997;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:14:\"10-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:170863;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:14:\"10-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:760049;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:14:\"10-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125901;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:14:\"10-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:569414;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:15:\"10-1080x800.png\";s:5:\"width\";i:1080;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1013220;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:14:\"10-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127434;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:14:\"10-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:566192;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:15:\"10-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1026313;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:14:\"10-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138957;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:14:\"10-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:622100;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:15:\"10-1080x900.png\";s:5:\"width\";i:1080;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1102109;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:14:\"10-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108845;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:14:\"10-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:496475;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:15:\"10-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:889898;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213692,40965,'_wp_attached_file','2024/09/11.png'),(213693,40965,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:14:\"2024/09/11.png\";s:8:\"filesize\";i:912837;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"11-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:542965;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"11-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139019;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"11-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:419281;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:14:\"11-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139019;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:14:\"11-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:542965;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:14:\"11-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95769;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:14:\"11-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:370641;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:15:\"11-1080x800.png\";s:5:\"width\";i:1080;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:629415;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:14:\"11-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103360;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:14:\"11-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:402748;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:15:\"11-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:694806;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:14:\"11-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106836;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:14:\"11-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:413257;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:15:\"11-1080x900.png\";s:5:\"width\";i:1080;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:704362;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:14:\"11-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81435;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:14:\"11-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:313465;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:15:\"11-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:533726;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213694,40966,'_wp_attached_file','2024/09/12.png'),(213695,40966,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:14:\"2024/09/12.png\";s:8:\"filesize\";i:735025;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"12-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:488771;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"12-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143471;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"12-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:388035;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:14:\"12-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143471;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:14:\"12-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:488771;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:14:\"12-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112076;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:14:\"12-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:388396;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:15:\"12-1080x800.png\";s:5:\"width\";i:1080;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:561075;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:14:\"12-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107297;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:14:\"12-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:366162;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:15:\"12-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:553666;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:14:\"12-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120746;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:14:\"12-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:417006;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:15:\"12-1080x900.png\";s:5:\"width\";i:1080;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:602363;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:14:\"12-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98791;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:14:\"12-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:342854;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:15:\"12-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:505536;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213696,40967,'_wp_attached_file','2024/09/13.png'),(213697,40967,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:14:\"2024/09/13.png\";s:8:\"filesize\";i:833623;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"13-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:514254;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"13-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139372;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"13-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:402565;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:14:\"13-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139372;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:14:\"13-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:514254;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:14:\"13-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94150;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:14:\"13-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:338591;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:15:\"13-1080x800.png\";s:5:\"width\";i:1080;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:562293;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:14:\"13-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107838;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:14:\"13-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:402662;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:15:\"13-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:651337;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:14:\"13-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106796;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:14:\"13-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:386093;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:15:\"13-1080x900.png\";s:5:\"width\";i:1080;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:635446;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:14:\"13-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78018;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:14:\"13-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:278534;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213698,40957,'_wp_attachment_image_alt','woman treating another woman on a massage table, lifting her leg to a bent position and manipulating it gently.'),(213699,40968,'_wp_attached_file','2024/09/14.png'),(213700,40968,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:14:\"2024/09/14.png\";s:8:\"filesize\";i:1148269;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"14-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:660830;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"14-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153463;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"14-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:497629;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:14:\"14-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:153463;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:14:\"14-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:660830;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:14:\"14-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117298;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:14:\"14-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:505889;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:15:\"14-1080x800.png\";s:5:\"width\";i:1080;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:885449;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:14:\"14-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116143;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:14:\"14-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:503349;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:15:\"14-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:918689;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:14:\"14-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127577;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:14:\"14-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:548844;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:15:\"14-1080x900.png\";s:5:\"width\";i:1080;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:958713;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:14:\"14-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102999;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:14:\"14-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:441777;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:15:\"14-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:780094;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213701,40969,'_wp_attached_file','2024/09/15.png'),(213702,40969,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:4:\"file\";s:14:\"2024/09/15.png\";s:8:\"filesize\";i:1018212;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"15-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:558168;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"15-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138313;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"15-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:425541;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:14:\"15-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138313;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:14:\"15-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:558168;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:14:\"15-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95139;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:14:\"15-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:385135;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:15:\"15-1080x800.png\";s:5:\"width\";i:1080;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:717903;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:14:\"15-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102864;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:14:\"15-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:413153;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:15:\"15-900x1080.png\";s:5:\"width\";i:900;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:785302;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:14:\"15-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:107137;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:14:\"15-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:432053;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:15:\"15-1080x900.png\";s:5:\"width\";i:1080;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:801505;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:14:\"15-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82406;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:14:\"15-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:332383;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213704,40845,'_yoast_wpseo_focuskw','Testimonials'),(213705,40845,'_yoast_wpseo_linkdex','20'),(213706,40845,'_wp_old_slug','40845'),(213708,40845,'_yoast_wpseo_metadesc','The team were good fun, and knowledgeable! Read more...'),(213709,40843,'_wp_old_slug','40843'),(213711,40843,'_yoast_wpseo_metadesc','Find out what other people think about our courses here. Read more...'),(213712,40958,'_wp_attachment_image_alt','woman talking to a man about biomechanics education'),(213714,40843,'_yoast_wpseo_focuskw','Testimonials | Biomechanics Education'),(213715,40843,'_yoast_wpseo_linkdex','30'),(213716,40843,'_thumbnail_id',''),(213717,40959,'_wp_attachment_image_alt','Rcahel demonstrating a Biomechanics Move at a conference to many people'),(213718,40841,'_wp_old_slug','milan-pun'),(213720,40841,'_yoast_wpseo_focuskw','Testimonials | Biomechanics Education'),(213721,40841,'_yoast_wpseo_metadesc','Read more about what people have to say about our course here...'),(213722,40841,'_yoast_wpseo_linkdex','26'),(213724,39278,'_wp_old_date','2024-09-19'),(213725,40906,'_wp_old_date','2024-09-19'),(213726,40858,'_wp_old_date','2024-09-19'),(213727,39348,'_wp_old_date','2024-09-19'),(213728,39486,'_wp_old_date','2024-09-19'),(213729,39485,'_wp_old_date','2024-09-19'),(213730,39487,'_wp_old_date','2024-09-19'),(213731,39279,'_wp_old_date','2024-09-19'),(213732,39325,'_wp_old_date','2024-09-19'),(213733,39324,'_wp_old_date','2024-09-19'),(213734,39323,'_wp_old_date','2024-09-19'),(213735,39322,'_wp_old_date','2024-09-19'),(213736,39321,'_wp_old_date','2024-09-19'),(213737,39320,'_wp_old_date','2024-09-19'),(213738,39319,'_wp_old_date','2024-09-19'),(213739,39280,'_wp_old_date','2024-09-19'),(213740,39522,'_wp_old_date','2024-09-19'),(213741,39281,'_wp_old_date','2024-09-19'),(213742,39344,'_wp_old_date','2024-09-19'),(213743,39318,'_wp_old_date','2024-09-19'),(213747,40960,'_wp_attachment_image_alt','testimonial - person manipulating a mans arm in a biomechanics course'),(213748,39170,'_wp_old_slug','after-about-3-days-my-wrist-freed-up'),(213749,39170,'hide_hero','0'),(213750,39170,'_hide_hero','field_66a2380fcda39'),(213752,39170,'_yoast_wpseo_focuskw','Testimonial | Biomechanics Education'),(213753,39170,'_yoast_wpseo_metadesc','I cannot thank you enough for opening my eyes... Read more about what our learners have to say here...'),(213754,39170,'_yoast_wpseo_linkdex','30'),(213755,40961,'_wp_attachment_image_alt','Man and woman in a class learnering about biomechanics. Man is staning, woman is behind him, he has his arm out straight and she is looking at his arm whilst holding it.'),(213756,39169,'_wp_old_slug','you-are-amazing-at-what-you-do'),(213757,39169,'hide_hero','0'),(213758,39169,'_hide_hero','field_66a2380fcda39'),(213760,39169,'_yoast_wpseo_focuskw','Testimonials'),(213761,39169,'_yoast_wpseo_metadesc','You are amazing at what you do! Find out what our learners have to say here...'),(213762,39169,'_yoast_wpseo_linkdex','20'),(213763,40962,'_wp_attachment_image_alt','group shot of biomechanics coach leaners and rachel - director of biomechanics Education'),(213764,39168,'_wp_old_slug','the-course-has-opened-up-my-mind-in-so-many-ways-and-has-totally-changed-my-business-model'),(213766,39168,'_yoast_wpseo_focuskw','Testimonials'),(213767,39168,'_yoast_wpseo_metadesc','This course has opened my mind! Read more about what our learners think here...'),(213768,39168,'_yoast_wpseo_linkdex','20'),(213769,40963,'_wp_attachment_image_alt','man on massage table on all fours with one leg bent in the air.'),(213770,38965,'_wp_old_slug','testimonial-3'),(213772,38965,'_yoast_wpseo_focuskw','Testimonials'),(213773,38965,'_yoast_wpseo_metadesc','I loved every aspect of the Diploma in Biomechanics Coaching Course! Read more about what our learners have to say here...'),(213774,38965,'_yoast_wpseo_linkdex','23'),(213775,40964,'_wp_attachment_image_alt','Rcahel conducting a class - 10 people on the floor with one leg folded over the other.'),(213776,38964,'_wp_old_slug','testimonial-2'),(213778,38964,'_yoast_wpseo_focuskw','Testimonials'),(213779,38964,'_yoast_wpseo_metadesc','Thanks again for providing a fantastic course. I am really looking forward to the next courses. Read more about our courses here...'),(213780,38964,'_yoast_wpseo_linkdex','23'),(213783,40972,'hide_hero','0'),(213784,40972,'_hide_hero','field_66a2380fcda39'),(213785,40972,'fft_hide_from_listings','0'),(213786,40972,'_fft_hide_from_listings','field_61f1320446ab2'),(213787,40972,'fft_page_format','default'),(213788,40972,'_fft_page_format','field_61ae213f1f218'),(213789,40972,'fft_hide_nav','0'),(213790,40972,'_fft_hide_nav','field_635bd5e43527c'),(213791,40972,'fft_hide_header_call_to_action','0'),(213792,40972,'_fft_hide_header_call_to_action','field_635bd6723527d'),(213793,40972,'fft_page_sitemap','0'),(213794,40972,'_fft_page_sitemap','field_61af9b34e8181'),(213795,40972,'blocks_0_acfe_flexible_toggle',''),(213796,40972,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(213797,40972,'blocks_0_acfe_flexible_layout_title','Text Block'),(213798,40972,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(213799,40972,'blocks_0_options_theme','#ffffff'),(213800,40972,'_blocks_0_options_theme','field_6176830e2ad17'),(213801,40972,'blocks_0_options',''),(213802,40972,'_blocks_0_options','field_6176830e2ad16'),(213803,40972,'blocks_0_text_block_heading','Get in Touch'),(213804,40972,'_blocks_0_text_block_heading','field_617669d413097'),(213805,40972,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support you. Whether you’re interested in courses, or looking for a bespoke solution, or you\'re part of an organisation that wants a bespoke service, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(213806,40972,'_blocks_0_text_block_content','field_617669ec13098'),(213807,40972,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:4:\"form\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";}'),(213808,40972,'_blocks','field_6176696113096'),(213809,40972,'hero_title','Contact us'),(213810,40972,'_hero_title','field_617571fe285e8'),(213811,40972,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in biomechanics coaching.'),(213812,40972,'_hero_text','field_6175723c285e9'),(213813,40972,'hero_actions','1'),(213814,40972,'_hero_actions','field_61757270285ea'),(213815,40972,'hero_style','default'),(213816,40972,'_hero_style','field_62051d9dc5324'),(213817,40972,'hero_icon','lines'),(213818,40972,'_hero_icon','field_61a6182199d03'),(213819,40972,'_thumbnail_id','40339'),(213820,40972,'__thumbnail_id','field_617570855ddaf'),(213821,40972,'hero_image_pos_x','right'),(213822,40972,'_hero_image_pos_x','field_62ec3d05390bb'),(213823,40972,'hero_image_pos_y','top'),(213824,40972,'_hero_image_pos_y','field_62ec3d05390bc'),(213825,40972,'hero_image_pos',''),(213826,40972,'_hero_image_pos','field_62ec3d05390ba'),(213827,40972,'blocks_2_acfe_flexible_toggle',''),(213828,40972,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(213829,40972,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(213830,40972,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(213831,40972,'blocks_2_options_theme','#ffffff'),(213832,40972,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(213833,40972,'blocks_2_options_reverse','0'),(213834,40972,'_blocks_2_options_reverse','field_61768049bb8ac'),(213835,40972,'blocks_2_options',''),(213836,40972,'_blocks_2_options','field_617682517c334'),(213837,40972,'blocks_2_split_5050_image','40342'),(213838,40972,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(213839,40972,'blocks_2_split_5050_video',''),(213840,40972,'_blocks_2_split_5050_video','field_6239f3160848a'),(213841,40972,'blocks_2_split_5050_content_title',''),(213842,40972,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(213843,40972,'blocks_2_split_5050_content_heading','Let\'s connect!'),(213844,40972,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(213845,40972,'blocks_2_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(213846,40972,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(213847,40972,'blocks_2_split_5050_content_actions',''),(213848,40972,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(213849,40972,'blocks_2_split_5050_content',''),(213850,40972,'_blocks_2_split_5050_content','field_61767afceb8ba'),(213851,40972,'blocks_1_acfe_flexible_toggle',''),(213852,40972,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(213853,40972,'blocks_1_acfe_flexible_layout_title','Form'),(213854,40972,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(213855,40972,'blocks_1_row_content_format','standard'),(213856,40972,'_blocks_1_row_content_format','field_6481ead962881'),(213857,40972,'blocks_1_row_content_title',''),(213858,40972,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(213859,40972,'blocks_1_row_content_heading','Let\'s get started'),(213860,40972,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(213861,40972,'blocks_1_row_content_text','<span data-contrast=\"none\">Please fill in your details for no obligation support and advice. One of our in-house Career Advisors will give you a call to discuss your enquiry – don\'t worry if you are not available, we can call back at a convenient time for you.  </span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\"> </span>\r\n\r\n<strong>By completing the form you will also gain access to our Information and Price Guide.</strong>'),(213862,40972,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(213863,40972,'blocks_1_row_content_actions',''),(213864,40972,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(213865,40972,'blocks_1_row_content',''),(213866,40972,'_blocks_1_row_content','field_61a0f5f5b3db0'),(213867,40972,'blocks_1_row_form','40394'),(213868,40972,'_blocks_1_row_form','field_61a4ff2c0b08e'),(213869,40972,'blocks_1_row_form_button_label',''),(213870,40972,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(213871,40972,'blocks_3_acfe_flexible_toggle',''),(213872,40972,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(213873,40972,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(213874,40972,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(213875,40972,'blocks_3_options_theme','#ffffff'),(213876,40972,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(213877,40972,'blocks_3_options_reverse','1'),(213878,40972,'_blocks_3_options_reverse','field_61768049bb8ac'),(213879,40972,'blocks_3_options',''),(213880,40972,'_blocks_3_options','field_617682517c334'),(213881,40972,'blocks_3_split_5050_image','40349'),(213882,40972,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(213883,40972,'blocks_3_split_5050_video',''),(213884,40972,'_blocks_3_split_5050_video','field_6239f3160848a'),(213885,40972,'blocks_3_split_5050_content_title',''),(213886,40972,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(213887,40972,'blocks_3_split_5050_content_heading','Find a Biomechanics Coach in your area'),(213888,40972,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(213889,40972,'blocks_3_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(213890,40972,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(213891,40972,'blocks_3_split_5050_content_actions',''),(213892,40972,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(213893,40972,'blocks_3_split_5050_content',''),(213894,40972,'_blocks_3_split_5050_content','field_61767afceb8ba'),(213895,40972,'hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in Touch\";s:3:\"url\";s:12:\"#row-39196-2\";s:6:\"target\";s:0:\"\";}'),(213896,40972,'_hero_actions_0_button','field_61757281285eb'),(213897,40973,'hide_hero','0'),(213898,40973,'_hide_hero','field_66a2380fcda39'),(213899,40973,'hero_title','Find a Biomechanics Coach in Your Area'),(213900,40973,'_hero_title','field_617571fe285e8'),(213901,40973,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(213902,40973,'_hero_text','field_6175723c285e9'),(213903,40973,'hero_actions','1'),(213904,40973,'_hero_actions','field_61757270285ea'),(213905,40973,'hero_style','default'),(213906,40973,'_hero_style','field_62051d9dc5324'),(213907,40973,'hero_image_pos_x','right'),(213908,40973,'_hero_image_pos_x','field_62ec3d05390bb'),(213909,40973,'hero_image_pos_y','top'),(213910,40973,'_hero_image_pos_y','field_62ec3d05390bc'),(213911,40973,'hero_image_pos',''),(213912,40973,'_hero_image_pos','field_62ec3d05390ba'),(213913,40973,'fft_hide_from_listings','0'),(213914,40973,'_fft_hide_from_listings','field_61f1320446ab2'),(213915,40973,'fft_page_format','default'),(213916,40973,'_fft_page_format','field_61ae213f1f218'),(213917,40973,'fft_hide_nav','0'),(213918,40973,'_fft_hide_nav','field_635bd5e43527c'),(213919,40973,'fft_hide_header_call_to_action','0'),(213920,40973,'_fft_hide_header_call_to_action','field_635bd6723527d'),(213921,40973,'fft_page_sitemap','0'),(213922,40973,'_fft_page_sitemap','field_61af9b34e8181'),(213923,40973,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(213924,40973,'_blocks','field_6176696113096'),(213925,40973,'blocks_0_acfe_flexible_toggle',''),(213926,40973,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(213927,40973,'blocks_0_acfe_flexible_layout_title','Text Block'),(213928,40973,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(213929,40973,'blocks_0_options_theme','#ffffff'),(213930,40973,'_blocks_0_options_theme','field_6176830e2ad17'),(213931,40973,'blocks_0_options',''),(213932,40973,'_blocks_0_options','field_6176830e2ad16'),(213933,40973,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(213934,40973,'_blocks_0_text_block_heading','field_617669d413097'),(213935,40973,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(213936,40973,'_blocks_0_text_block_content','field_617669ec13098'),(213937,40973,'blocks_1_acfe_flexible_toggle',''),(213938,40973,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(213939,40973,'blocks_1_acfe_flexible_layout_title','Venues'),(213940,40973,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(213941,40973,'blocks_1_category','a:1:{i:0;s:3:\"417\";}'),(213942,40973,'_blocks_1_category','field_6361407e17657'),(213943,40973,'blocks_1_region',''),(213944,40973,'_blocks_1_region','field_636140bd17659'),(213945,40973,'_thumbnail_id','40915'),(213946,40973,'__thumbnail_id','field_617570855ddaf'),(213947,40973,'hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Find a Coach\";s:3:\"url\";s:12:\"#row-39493-2\";s:6:\"target\";s:0:\"\";}'),(213948,40973,'_hero_actions_0_button','field_61757281285eb'),(213949,39493,'_thumbnail_id','40893'),(214054,39214,'blocks_1_acfe_flexible_toggle',''),(214055,39214,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(214056,39214,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(214057,39214,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(214058,39214,'blocks_1_options_theme','#ffffff'),(214059,39214,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(214060,39214,'blocks_1_options_reverse','0'),(214061,39214,'_blocks_1_options_reverse','field_61768049bb8ac'),(214062,39214,'blocks_1_options',''),(214063,39214,'_blocks_1_options','field_617682517c334'),(214064,39214,'blocks_1_split_5050_image','39220'),(214065,39214,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(214066,39214,'blocks_1_split_5050_video',''),(214067,39214,'_blocks_1_split_5050_video','field_6239f3160848a'),(214068,39214,'blocks_1_split_5050_content_title',''),(214069,39214,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(214070,39214,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(214071,39214,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(214072,39214,'blocks_1_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(214073,39214,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(214074,39214,'blocks_1_split_5050_content_actions',''),(214075,39214,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(214076,39214,'blocks_1_split_5050_content',''),(214077,39214,'_blocks_1_split_5050_content','field_61767afceb8ba'),(214156,40976,'hide_hero','0'),(214157,40976,'_hide_hero','field_66a2380fcda39'),(214158,40976,'hero_title','Biomechanics and Personal Training'),(214159,40976,'_hero_title','field_617571fe285e8'),(214160,40976,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(214161,40976,'_hero_text','field_6175723c285e9'),(214162,40976,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(214163,40976,'_hero_actions_0_button','field_61757281285eb'),(214164,40976,'hero_actions','1'),(214165,40976,'_hero_actions','field_61757270285ea'),(214166,40976,'hero_style','default'),(214167,40976,'_hero_style','field_62051d9dc5324'),(214168,40976,'_thumbnail_id','39215'),(214169,40976,'__thumbnail_id','field_617570855ddaf'),(214170,40976,'hero_image_pos_x','right'),(214171,40976,'_hero_image_pos_x','field_62ec3d05390bb'),(214172,40976,'hero_image_pos_y','top'),(214173,40976,'_hero_image_pos_y','field_62ec3d05390bc'),(214174,40976,'hero_image_pos',''),(214175,40976,'_hero_image_pos','field_62ec3d05390ba'),(214176,40976,'fft_hide_from_listings','0'),(214177,40976,'_fft_hide_from_listings','field_61f1320446ab2'),(214178,40976,'fft_page_format','default'),(214179,40976,'_fft_page_format','field_61ae213f1f218'),(214180,40976,'fft_hide_nav','0'),(214181,40976,'_fft_hide_nav','field_635bd5e43527c'),(214182,40976,'fft_hide_header_call_to_action','0'),(214183,40976,'_fft_hide_header_call_to_action','field_635bd6723527d'),(214184,40976,'fft_page_sitemap','0'),(214185,40976,'_fft_page_sitemap','field_61af9b34e8181'),(214186,40976,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"steps\";i:3;s:4:\"form\";i:4;s:5:\"video\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(214187,40976,'_blocks','field_6176696113096'),(214188,40976,'blocks_0_acfe_flexible_toggle',''),(214189,40976,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(214190,40976,'blocks_0_acfe_flexible_layout_title','Template'),(214191,40976,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(214192,40976,'blocks_0_template','39087'),(214193,40976,'_blocks_0_template','field_617bdd570fe01'),(214194,40976,'blocks_5_acfe_flexible_toggle',''),(214195,40976,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(214196,40976,'blocks_5_acfe_flexible_layout_title','Tabs'),(214197,40976,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(214198,40976,'blocks_5_options_theme','#ffffff'),(214199,40976,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(214200,40976,'blocks_5_options',''),(214201,40976,'_blocks_5_options','field_6177cfcd8140f'),(214202,40976,'blocks_5_tabs_0_tab_label','What will I learn?'),(214203,40976,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(214204,40976,'blocks_5_tabs_0_tab_content_title',''),(214205,40976,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(214206,40976,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(214207,40976,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(214208,40976,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(214209,40976,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(214210,40976,'blocks_5_tabs_0_tab_content_actions',''),(214211,40976,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(214212,40976,'blocks_5_tabs_0_tab_content',''),(214213,40976,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(214214,40976,'blocks_5_tabs_0_tab_image','39076'),(214215,40976,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(214216,40976,'blocks_5_tabs_1_tab_label','What do I need?'),(214217,40976,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(214218,40976,'blocks_5_tabs_1_tab_content_title',''),(214219,40976,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(214220,40976,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(214221,40976,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(214222,40976,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(214223,40976,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(214224,40976,'blocks_5_tabs_1_tab_content_actions',''),(214225,40976,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(214226,40976,'blocks_5_tabs_1_tab_content',''),(214227,40976,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(214228,40976,'blocks_5_tabs_1_tab_image','39223'),(214229,40976,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(214230,40976,'blocks_5_tabs_2_tab_label','Where can I learn?'),(214231,40976,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(214232,40976,'blocks_5_tabs_2_tab_content_title',''),(214233,40976,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(214234,40976,'blocks_5_tabs_2_tab_content_heading','Locations'),(214235,40976,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(214236,40976,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(214237,40976,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(214238,40976,'blocks_5_tabs_2_tab_content_actions',''),(214239,40976,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(214240,40976,'blocks_5_tabs_2_tab_content',''),(214241,40976,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(214242,40976,'blocks_5_tabs_2_tab_image','39224'),(214243,40976,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(214244,40976,'blocks_5_tabs','3'),(214245,40976,'_blocks_5_tabs','field_6177cff281419'),(214246,40976,'blocks_6_acfe_flexible_toggle',''),(214247,40976,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(214248,40976,'blocks_6_acfe_flexible_layout_title','Text Block'),(214249,40976,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(214250,40976,'blocks_6_options_theme','#b61234'),(214251,40976,'_blocks_6_options_theme','field_6176830e2ad17'),(214252,40976,'blocks_6_options',''),(214253,40976,'_blocks_6_options','field_6176830e2ad16'),(214254,40976,'blocks_6_text_block_heading','Fees & Funding Options'),(214255,40976,'_blocks_6_text_block_heading','field_617669d413097'),(214256,40976,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(214257,40976,'_blocks_6_text_block_content','field_617669ec13098'),(214258,40976,'blocks_7_acfe_flexible_toggle',''),(214259,40976,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(214260,40976,'blocks_7_acfe_flexible_layout_title','Icons'),(214261,40976,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(214262,40976,'blocks_7_options_theme','#b61234'),(214263,40976,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(214264,40976,'blocks_7_options_format','row'),(214265,40976,'_blocks_7_options_format','field_64bfde9a90690'),(214266,40976,'blocks_7_options',''),(214267,40976,'_blocks_7_options','field_64bfdd9b90684'),(214268,40976,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(214269,40976,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(214270,40976,'blocks_7_icon_row_items_0_label','Pay in Full'),(214271,40976,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(214272,40976,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(214273,40976,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(214274,40976,'blocks_7_icon_row_items_1_icon','finance.svg'),(214275,40976,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(214276,40976,'blocks_7_icon_row_items_1_label','0% finance'),(214277,40976,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(214278,40976,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(214279,40976,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(214280,40976,'blocks_7_icon_row_items_2_icon','deposit.svg'),(214281,40976,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(214282,40976,'blocks_7_icon_row_items_2_label','Deposit & balance'),(214283,40976,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(214284,40976,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(214285,40976,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(214286,40976,'blocks_7_icon_row_items','3'),(214287,40976,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(214288,40976,'blocks_9_acfe_flexible_toggle',''),(214289,40976,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(214290,40976,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(214291,40976,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(214292,40976,'blocks_9_testimonial_slider_content_title',''),(214293,40976,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(214294,40976,'blocks_9_testimonial_slider_content_heading','Testimonials'),(214295,40976,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(214296,40976,'blocks_9_testimonial_slider_content_text',''),(214297,40976,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(214298,40976,'blocks_9_testimonial_slider_content_actions',''),(214299,40976,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(214300,40976,'blocks_9_testimonial_slider_content',''),(214301,40976,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(214302,40976,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(214303,40976,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(214304,40976,'blocks_9_testimonial_slider_ambassador_bool','0'),(214305,40976,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(214306,40976,'blocks_10_acfe_flexible_toggle',''),(214307,40976,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(214308,40976,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(214309,40976,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(214310,40976,'blocks_10_options_theme','#ffffff'),(214311,40976,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(214312,40976,'blocks_10_options_state','0'),(214313,40976,'_blocks_10_options_state','field_6239fcb7508c5'),(214314,40976,'blocks_10_options',''),(214315,40976,'_blocks_10_options','field_6177e2991ac44'),(214316,40976,'blocks_10_content_title',''),(214317,40976,'_blocks_10_content_title','field_64d237e8bb1e2'),(214318,40976,'blocks_10_content_heading','Frequently asked questions '),(214319,40976,'_blocks_10_content_heading','field_64d237e8bb1e3'),(214320,40976,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(214321,40976,'_blocks_10_content_text','field_64d237e8bb1e4'),(214322,40976,'blocks_10_content_actions',''),(214323,40976,'_blocks_10_content_actions','field_64d237e8bb1e5'),(214324,40976,'blocks_10_content_align','left'),(214325,40976,'_blocks_10_content_align','field_64d2443e6b6aa'),(214326,40976,'blocks_10_content',''),(214327,40976,'_blocks_10_content','field_64d237e8bb1e1'),(214328,40976,'blocks_10_accordion_content','faqs'),(214329,40976,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(214330,40976,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(214331,40976,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(214332,40976,'blocks_10_actions',''),(214333,40976,'_blocks_10_actions','field_61a746a817f7a'),(214334,40976,'blocks_8_acfe_flexible_toggle',''),(214335,40976,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(214336,40976,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(214337,40976,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(214338,40976,'blocks_8_options_theme','#f5f5f5'),(214339,40976,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(214340,40976,'blocks_8_options_reverse','0'),(214341,40976,'_blocks_8_options_reverse','field_61768049bb8ac'),(214342,40976,'blocks_8_options',''),(214343,40976,'_blocks_8_options','field_617682517c334'),(214344,40976,'blocks_8_split_5050_image','40920'),(214345,40976,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(214346,40976,'blocks_8_split_5050_video',''),(214347,40976,'_blocks_8_split_5050_video','field_6239f3160848a'),(214348,40976,'blocks_8_split_5050_content_title',''),(214349,40976,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(214350,40976,'blocks_8_split_5050_content_heading','Why Study This Course?'),(214351,40976,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(214352,40976,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(214353,40976,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(214354,40976,'blocks_8_split_5050_content_actions',''),(214355,40976,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(214356,40976,'blocks_8_split_5050_content',''),(214357,40976,'_blocks_8_split_5050_content','field_61767afceb8ba'),(214358,40976,'blocks_1_acfe_flexible_toggle',''),(214359,40976,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(214360,40976,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(214361,40976,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(214362,40976,'blocks_1_options_theme','#ffffff'),(214363,40976,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(214364,40976,'blocks_1_options_reverse','0'),(214365,40976,'_blocks_1_options_reverse','field_61768049bb8ac'),(214366,40976,'blocks_1_options',''),(214367,40976,'_blocks_1_options','field_617682517c334'),(214368,40976,'blocks_1_split_5050_image','39220'),(214369,40976,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(214370,40976,'blocks_1_split_5050_video',''),(214371,40976,'_blocks_1_split_5050_video','field_6239f3160848a'),(214372,40976,'blocks_1_split_5050_content_title',''),(214373,40976,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(214374,40976,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(214375,40976,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(214376,40976,'blocks_1_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(214377,40976,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(214378,40976,'blocks_1_split_5050_content_actions',''),(214379,40976,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(214380,40976,'blocks_1_split_5050_content',''),(214381,40976,'_blocks_1_split_5050_content','field_61767afceb8ba'),(214382,40976,'blocks_2_acfe_flexible_toggle',''),(214383,40976,'_blocks_2_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(214384,40976,'blocks_2_acfe_flexible_layout_title','Steps'),(214385,40976,'_blocks_2_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(214386,40976,'blocks_2_row_content_title',''),(214387,40976,'_blocks_2_row_content_title','field_64888cd1e26e0'),(214388,40976,'blocks_2_row_content_heading','Benefits of training with us'),(214389,40976,'_blocks_2_row_content_heading','field_64888cd9e26e1'),(214390,40976,'blocks_2_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(214391,40976,'_blocks_2_row_content_text','field_64888ce2e26e2'),(214392,40976,'blocks_2_row_content_actions',''),(214393,40976,'_blocks_2_row_content_actions','field_64888cf5e26e3'),(214394,40976,'blocks_2_row_content',''),(214395,40976,'_blocks_2_row_content','field_64888cb0e26df'),(214396,40976,'blocks_2_steps_0_icon','progression.svg'),(214397,40976,'_blocks_2_steps_0_icon','field_64888d53e26e6'),(214398,40976,'blocks_2_steps_0_title','Earning Potential'),(214399,40976,'_blocks_2_steps_0_title','field_64888d94e26e7'),(214400,40976,'blocks_2_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(214401,40976,'_blocks_2_steps_0_text','field_64888d99e26e8'),(214402,40976,'blocks_2_steps_1_icon','support.svg'),(214403,40976,'_blocks_2_steps_1_icon','field_64888d53e26e6'),(214404,40976,'blocks_2_steps_1_title','Lifetime Learning Promise'),(214405,40976,'_blocks_2_steps_1_title','field_64888d94e26e7'),(214406,40976,'blocks_2_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(214407,40976,'_blocks_2_steps_1_text','field_64888d99e26e8'),(214408,40976,'blocks_2_steps_2_icon','qualification.svg'),(214409,40976,'_blocks_2_steps_2_icon','field_64888d53e26e6'),(214410,40976,'blocks_2_steps_2_title','Evidence Based Hands on Learning'),(214411,40976,'_blocks_2_steps_2_title','field_64888d94e26e7'),(214412,40976,'blocks_2_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(214413,40976,'_blocks_2_steps_2_text','field_64888d99e26e8'),(214414,40976,'blocks_2_steps_3_icon','leaders.svg'),(214415,40976,'_blocks_2_steps_3_icon','field_64888d53e26e6'),(214416,40976,'blocks_2_steps_3_title','Stand Out From the Crowd'),(214417,40976,'_blocks_2_steps_3_title','field_64888d94e26e7'),(214418,40976,'blocks_2_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(214419,40976,'_blocks_2_steps_3_text','field_64888d99e26e8'),(214420,40976,'blocks_2_steps','4'),(214421,40976,'_blocks_2_steps','field_64888d44e26e5'),(214422,40976,'blocks_3_acfe_flexible_toggle',''),(214423,40976,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(214424,40976,'blocks_3_acfe_flexible_layout_title','Form'),(214425,40976,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(214426,40976,'blocks_3_row_content_format','standard'),(214427,40976,'_blocks_3_row_content_format','field_6481ead962881'),(214428,40976,'blocks_3_row_content_title',''),(214429,40976,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(214430,40976,'blocks_3_row_content_heading','Enquire Today'),(214431,40976,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(214432,40976,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(214433,40976,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(214434,40976,'blocks_3_row_content_actions',''),(214435,40976,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(214436,40976,'blocks_3_row_content',''),(214437,40976,'_blocks_3_row_content','field_61a0f5f5b3db0'),(214438,40976,'blocks_3_row_form','40394'),(214439,40976,'_blocks_3_row_form','field_61a4ff2c0b08e'),(214440,40976,'blocks_3_row_form_button_label',''),(214441,40976,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(214442,40976,'blocks_4_acfe_flexible_toggle',''),(214443,40976,'_blocks_4_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(214444,40976,'blocks_4_acfe_flexible_layout_title','Video'),(214445,40976,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(214446,40976,'blocks_4_size','large'),(214447,40976,'_blocks_4_size','field_6487038f297c1'),(214448,40976,'blocks_4_row_content_title',''),(214449,40976,'_blocks_4_row_content_title','field_64870132a865d'),(214450,40976,'blocks_4_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(214451,40976,'_blocks_4_row_content_heading','field_64870142a865e'),(214452,40976,'blocks_4_row_content_text',''),(214453,40976,'_blocks_4_row_content_text','field_64870148a865f'),(214454,40976,'blocks_4_row_content',''),(214455,40976,'_blocks_4_row_content','field_6487008ba865c'),(214456,40976,'blocks_4_video_src','https://youtu.be/kLVekt6aqrI'),(214457,40976,'_blocks_4_video_src','field_6193c4a98ec07'),(214458,40976,'blocks_4_video_thumbnail','39186'),(214459,40976,'_blocks_4_video_thumbnail','field_6193c4a08ec06'),(214460,40977,'hide_hero','0'),(214461,40977,'_hide_hero','field_66a2380fcda39'),(214462,40977,'hero_title','Biomechanics and Personal Training'),(214463,40977,'_hero_title','field_617571fe285e8'),(214464,40977,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(214465,40977,'_hero_text','field_6175723c285e9'),(214466,40977,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(214467,40977,'_hero_actions_0_button','field_61757281285eb'),(214468,40977,'hero_actions','1'),(214469,40977,'_hero_actions','field_61757270285ea'),(214470,40977,'hero_style','default'),(214471,40977,'_hero_style','field_62051d9dc5324'),(214472,40977,'_thumbnail_id','39215'),(214473,40977,'__thumbnail_id','field_617570855ddaf'),(214474,40977,'hero_image_pos_x','right'),(214475,40977,'_hero_image_pos_x','field_62ec3d05390bb'),(214476,40977,'hero_image_pos_y','top'),(214477,40977,'_hero_image_pos_y','field_62ec3d05390bc'),(214478,40977,'hero_image_pos',''),(214479,40977,'_hero_image_pos','field_62ec3d05390ba'),(214480,40977,'fft_hide_from_listings','0'),(214481,40977,'_fft_hide_from_listings','field_61f1320446ab2'),(214482,40977,'fft_page_format','default'),(214483,40977,'_fft_page_format','field_61ae213f1f218'),(214484,40977,'fft_hide_nav','0'),(214485,40977,'_fft_hide_nav','field_635bd5e43527c'),(214486,40977,'fft_hide_header_call_to_action','0'),(214487,40977,'_fft_hide_header_call_to_action','field_635bd6723527d'),(214488,40977,'fft_page_sitemap','0'),(214489,40977,'_fft_page_sitemap','field_61af9b34e8181'),(214490,40977,'blocks_0_acfe_flexible_toggle',''),(214491,40977,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(214492,40977,'blocks_0_acfe_flexible_layout_title','Template'),(214493,40977,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(214494,40977,'blocks_0_template','39087'),(214495,40977,'_blocks_0_template','field_617bdd570fe01'),(214496,40977,'blocks_1_acfe_flexible_toggle',''),(214497,40977,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(214498,40977,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(214499,40977,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(214500,40977,'blocks_1_options_theme','#ffffff'),(214501,40977,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(214502,40977,'blocks_1_options_reverse','0'),(214503,40977,'_blocks_1_options_reverse','field_61768049bb8ac'),(214504,40977,'blocks_1_options',''),(214505,40977,'_blocks_1_options','field_617682517c334'),(214506,40977,'blocks_1_split_5050_image','39220'),(214507,40977,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(214508,40977,'blocks_1_split_5050_video',''),(214509,40977,'_blocks_1_split_5050_video','field_6239f3160848a'),(214510,40977,'blocks_1_split_5050_content_title',''),(214511,40977,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(214512,40977,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(214513,40977,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(214514,40977,'blocks_1_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(214515,40977,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(214516,40977,'blocks_1_split_5050_content_actions',''),(214517,40977,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(214518,40977,'blocks_1_split_5050_content',''),(214519,40977,'_blocks_1_split_5050_content','field_61767afceb8ba'),(214520,40977,'blocks_2_acfe_flexible_toggle',''),(214521,40977,'_blocks_2_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(214522,40977,'blocks_2_acfe_flexible_layout_title','Steps'),(214523,40977,'_blocks_2_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(214524,40977,'blocks_2_row_content_title',''),(214525,40977,'_blocks_2_row_content_title','field_64888cd1e26e0'),(214526,40977,'blocks_2_row_content_heading','Benefits of training with us'),(214527,40977,'_blocks_2_row_content_heading','field_64888cd9e26e1'),(214528,40977,'blocks_2_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(214529,40977,'_blocks_2_row_content_text','field_64888ce2e26e2'),(214530,40977,'blocks_2_row_content_actions',''),(214531,40977,'_blocks_2_row_content_actions','field_64888cf5e26e3'),(214532,40977,'blocks_2_row_content',''),(214533,40977,'_blocks_2_row_content','field_64888cb0e26df'),(214534,40977,'blocks_2_steps_0_icon','progression.svg'),(214535,40977,'_blocks_2_steps_0_icon','field_64888d53e26e6'),(214536,40977,'blocks_2_steps_0_title','Earning Potential'),(214537,40977,'_blocks_2_steps_0_title','field_64888d94e26e7'),(214538,40977,'blocks_2_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(214539,40977,'_blocks_2_steps_0_text','field_64888d99e26e8'),(214540,40977,'blocks_2_steps_1_icon','support.svg'),(214541,40977,'_blocks_2_steps_1_icon','field_64888d53e26e6'),(214542,40977,'blocks_2_steps_1_title','Lifetime Learning Promise'),(214543,40977,'_blocks_2_steps_1_title','field_64888d94e26e7'),(214544,40977,'blocks_2_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(214545,40977,'_blocks_2_steps_1_text','field_64888d99e26e8'),(214546,40977,'blocks_2_steps_2_icon','qualification.svg'),(214547,40977,'_blocks_2_steps_2_icon','field_64888d53e26e6'),(214548,40977,'blocks_2_steps_2_title','Evidence Based Hands on Learning'),(214549,40977,'_blocks_2_steps_2_title','field_64888d94e26e7'),(214550,40977,'blocks_2_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(214551,40977,'_blocks_2_steps_2_text','field_64888d99e26e8'),(214552,40977,'blocks_2_steps_3_icon','leaders.svg'),(214553,40977,'_blocks_2_steps_3_icon','field_64888d53e26e6'),(214554,40977,'blocks_2_steps_3_title','Stand Out From the Crowd'),(214555,40977,'_blocks_2_steps_3_title','field_64888d94e26e7'),(214556,40977,'blocks_2_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(214557,40977,'_blocks_2_steps_3_text','field_64888d99e26e8'),(214558,40977,'blocks_2_steps','4'),(214559,40977,'_blocks_2_steps','field_64888d44e26e5'),(214560,40977,'blocks_3_acfe_flexible_toggle',''),(214561,40977,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(214562,40977,'blocks_3_acfe_flexible_layout_title','Form'),(214563,40977,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(214564,40977,'blocks_3_row_content_format','standard'),(214565,40977,'_blocks_3_row_content_format','field_6481ead962881'),(214566,40977,'blocks_3_row_content_title',''),(214567,40977,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(214568,40977,'blocks_3_row_content_heading','Enquire Today'),(214569,40977,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(214570,40977,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(214571,40977,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(214572,40977,'blocks_3_row_content_actions',''),(214573,40977,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(214574,40977,'blocks_3_row_content',''),(214575,40977,'_blocks_3_row_content','field_61a0f5f5b3db0'),(214576,40977,'blocks_3_row_form','40394'),(214577,40977,'_blocks_3_row_form','field_61a4ff2c0b08e'),(214578,40977,'blocks_3_row_form_button_label',''),(214579,40977,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(214580,40977,'blocks_4_acfe_flexible_toggle',''),(214581,40977,'_blocks_4_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(214582,40977,'blocks_4_acfe_flexible_layout_title','Video'),(214583,40977,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(214584,40977,'blocks_4_size','large'),(214585,40977,'_blocks_4_size','field_6487038f297c1'),(214586,40977,'blocks_4_row_content_title',''),(214587,40977,'_blocks_4_row_content_title','field_64870132a865d'),(214588,40977,'blocks_4_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(214589,40977,'_blocks_4_row_content_heading','field_64870142a865e'),(214590,40977,'blocks_4_row_content_text',''),(214591,40977,'_blocks_4_row_content_text','field_64870148a865f'),(214592,40977,'blocks_4_row_content',''),(214593,40977,'_blocks_4_row_content','field_6487008ba865c'),(214594,40977,'blocks_4_video_src','https://youtu.be/kLVekt6aqrI'),(214595,40977,'_blocks_4_video_src','field_6193c4a98ec07'),(214596,40977,'blocks_4_video_thumbnail','39186'),(214597,40977,'_blocks_4_video_thumbnail','field_6193c4a08ec06'),(214598,40977,'blocks_5_acfe_flexible_toggle',''),(214599,40977,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(214600,40977,'blocks_5_acfe_flexible_layout_title','Tabs'),(214601,40977,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(214602,40977,'blocks_5_options_theme','#ffffff'),(214603,40977,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(214604,40977,'blocks_5_options',''),(214605,40977,'_blocks_5_options','field_6177cfcd8140f'),(214606,40977,'blocks_5_tabs_0_tab_label','What will I learn?'),(214607,40977,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(214608,40977,'blocks_5_tabs_0_tab_content_title',''),(214609,40977,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(214610,40977,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(214611,40977,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(214612,40977,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(214613,40977,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(214614,40977,'blocks_5_tabs_0_tab_content_actions',''),(214615,40977,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(214616,40977,'blocks_5_tabs_0_tab_content',''),(214617,40977,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(214618,40977,'blocks_5_tabs_0_tab_image','39076'),(214619,40977,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(214620,40977,'blocks_5_tabs_1_tab_label','What do I need?'),(214621,40977,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(214622,40977,'blocks_5_tabs_1_tab_content_title',''),(214623,40977,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(214624,40977,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(214625,40977,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(214626,40977,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(214627,40977,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(214628,40977,'blocks_5_tabs_1_tab_content_actions',''),(214629,40977,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(214630,40977,'blocks_5_tabs_1_tab_content',''),(214631,40977,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(214632,40977,'blocks_5_tabs_1_tab_image','39223'),(214633,40977,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(214634,40977,'blocks_5_tabs_2_tab_label','Where can I learn?'),(214635,40977,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(214636,40977,'blocks_5_tabs_2_tab_content_title',''),(214637,40977,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(214638,40977,'blocks_5_tabs_2_tab_content_heading','Locations'),(214639,40977,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(214640,40977,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(214641,40977,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(214642,40977,'blocks_5_tabs_2_tab_content_actions',''),(214643,40977,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(214644,40977,'blocks_5_tabs_2_tab_content',''),(214645,40977,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(214646,40977,'blocks_5_tabs_2_tab_image','39224'),(214647,40977,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(214648,40977,'blocks_5_tabs','3'),(214649,40977,'_blocks_5_tabs','field_6177cff281419'),(214650,40977,'blocks_6_acfe_flexible_toggle',''),(214651,40977,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(214652,40977,'blocks_6_acfe_flexible_layout_title','Text Block'),(214653,40977,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(214654,40977,'blocks_6_options_theme','#b61234'),(214655,40977,'_blocks_6_options_theme','field_6176830e2ad17'),(214656,40977,'blocks_6_options',''),(214657,40977,'_blocks_6_options','field_6176830e2ad16'),(214658,40977,'blocks_6_text_block_heading','Fees & Funding Options'),(214659,40977,'_blocks_6_text_block_heading','field_617669d413097'),(214660,40977,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(214661,40977,'_blocks_6_text_block_content','field_617669ec13098'),(214662,40977,'blocks_7_acfe_flexible_toggle',''),(214663,40977,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(214664,40977,'blocks_7_acfe_flexible_layout_title','Icons'),(214665,40977,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(214666,40977,'blocks_7_options_theme','#b61234'),(214667,40977,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(214668,40977,'blocks_7_options_format','row'),(214669,40977,'_blocks_7_options_format','field_64bfde9a90690'),(214670,40977,'blocks_7_options',''),(214671,40977,'_blocks_7_options','field_64bfdd9b90684'),(214672,40977,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(214673,40977,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(214674,40977,'blocks_7_icon_row_items_0_label','Pay in Full'),(214675,40977,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(214676,40977,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(214677,40977,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(214678,40977,'blocks_7_icon_row_items_1_icon','finance.svg'),(214679,40977,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(214680,40977,'blocks_7_icon_row_items_1_label','0% finance'),(214681,40977,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(214682,40977,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(214683,40977,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(214684,40977,'blocks_7_icon_row_items_2_icon','deposit.svg'),(214685,40977,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(214686,40977,'blocks_7_icon_row_items_2_label','Deposit & balance'),(214687,40977,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(214688,40977,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(214689,40977,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(214690,40977,'blocks_7_icon_row_items','3'),(214691,40977,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(214692,40977,'blocks_8_acfe_flexible_toggle',''),(214693,40977,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(214694,40977,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(214695,40977,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(214696,40977,'blocks_8_options_theme','#f5f5f5'),(214697,40977,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(214698,40977,'blocks_8_options_reverse','0'),(214699,40977,'_blocks_8_options_reverse','field_61768049bb8ac'),(214700,40977,'blocks_8_options',''),(214701,40977,'_blocks_8_options','field_617682517c334'),(214702,40977,'blocks_8_split_5050_image','40920'),(214703,40977,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(214704,40977,'blocks_8_split_5050_video',''),(214705,40977,'_blocks_8_split_5050_video','field_6239f3160848a'),(214706,40977,'blocks_8_split_5050_content_title',''),(214707,40977,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(214708,40977,'blocks_8_split_5050_content_heading','Why Study This Course?'),(214709,40977,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(214710,40977,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(214711,40977,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(214712,40977,'blocks_8_split_5050_content_actions',''),(214713,40977,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(214714,40977,'blocks_8_split_5050_content',''),(214715,40977,'_blocks_8_split_5050_content','field_61767afceb8ba'),(214716,40977,'blocks_9_acfe_flexible_toggle',''),(214717,40977,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(214718,40977,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(214719,40977,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(214720,40977,'blocks_9_testimonial_slider_content_title',''),(214721,40977,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(214722,40977,'blocks_9_testimonial_slider_content_heading','Testimonials'),(214723,40977,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(214724,40977,'blocks_9_testimonial_slider_content_text',''),(214725,40977,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(214726,40977,'blocks_9_testimonial_slider_content_actions',''),(214727,40977,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(214728,40977,'blocks_9_testimonial_slider_content',''),(214729,40977,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(214730,40977,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(214731,40977,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(214732,40977,'blocks_9_testimonial_slider_ambassador_bool','0'),(214733,40977,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(214734,40977,'blocks_10_acfe_flexible_toggle',''),(214735,40977,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(214736,40977,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(214737,40977,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(214738,40977,'blocks_10_options_theme','#ffffff'),(214739,40977,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(214740,40977,'blocks_10_options_state','0'),(214741,40977,'_blocks_10_options_state','field_6239fcb7508c5'),(214742,40977,'blocks_10_options',''),(214743,40977,'_blocks_10_options','field_6177e2991ac44'),(214744,40977,'blocks_10_content_title',''),(214745,40977,'_blocks_10_content_title','field_64d237e8bb1e2'),(214746,40977,'blocks_10_content_heading','Frequently asked questions '),(214747,40977,'_blocks_10_content_heading','field_64d237e8bb1e3'),(214748,40977,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(214749,40977,'_blocks_10_content_text','field_64d237e8bb1e4'),(214750,40977,'blocks_10_content_actions',''),(214751,40977,'_blocks_10_content_actions','field_64d237e8bb1e5'),(214752,40977,'blocks_10_content_align','left'),(214753,40977,'_blocks_10_content_align','field_64d2443e6b6aa'),(214754,40977,'blocks_10_content',''),(214755,40977,'_blocks_10_content','field_64d237e8bb1e1'),(214756,40977,'blocks_10_accordion_content','faqs'),(214757,40977,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(214758,40977,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(214759,40977,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(214760,40977,'blocks_10_actions',''),(214761,40977,'_blocks_10_actions','field_61a746a817f7a'),(214762,40977,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"steps\";i:3;s:4:\"form\";i:4;s:5:\"video\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(214763,40977,'_blocks','field_6176696113096'),(214764,39214,'blocks_2_acfe_flexible_toggle',''),(214765,39214,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(214766,39214,'blocks_2_acfe_flexible_layout_title','Form'),(214767,39214,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(214768,39214,'blocks_2_row_content_format','standard'),(214769,39214,'_blocks_2_row_content_format','field_6481ead962881'),(214770,39214,'blocks_2_row_content_title',''),(214771,39214,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(214772,39214,'blocks_2_row_content_heading','Enquire Today'),(214773,39214,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(214774,39214,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(214775,39214,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(214776,39214,'blocks_2_row_content_actions',''),(214777,39214,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(214778,39214,'blocks_2_row_content',''),(214779,39214,'_blocks_2_row_content','field_61a0f5f5b3db0'),(214780,39214,'blocks_2_row_form','40394'),(214781,39214,'_blocks_2_row_form','field_61a4ff2c0b08e'),(214782,39214,'blocks_2_row_form_button_label',''),(214783,39214,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(214784,39214,'blocks_3_acfe_flexible_toggle',''),(214785,39214,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(214786,39214,'blocks_3_acfe_flexible_layout_title','Video'),(214787,39214,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(214788,39214,'blocks_3_size','large'),(214789,39214,'_blocks_3_size','field_6487038f297c1'),(214790,39214,'blocks_3_row_content_title',''),(214791,39214,'_blocks_3_row_content_title','field_64870132a865d'),(214792,39214,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(214793,39214,'_blocks_3_row_content_heading','field_64870142a865e'),(214794,39214,'blocks_3_row_content_text',''),(214795,39214,'_blocks_3_row_content_text','field_64870148a865f'),(214796,39214,'blocks_3_row_content',''),(214797,39214,'_blocks_3_row_content','field_6487008ba865c'),(214798,39214,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(214799,39214,'_blocks_3_video_src','field_6193c4a98ec07'),(214800,39214,'blocks_3_video_thumbnail','39186'),(214801,39214,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(214802,39214,'blocks_4_acfe_flexible_toggle',''),(214803,39214,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(214804,39214,'blocks_4_acfe_flexible_layout_title','Steps'),(214805,39214,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(214806,39214,'blocks_4_row_content_title',''),(214807,39214,'_blocks_4_row_content_title','field_64888cd1e26e0'),(214808,39214,'blocks_4_row_content_heading','Benefits of training with us'),(214809,39214,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(214810,39214,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(214811,39214,'_blocks_4_row_content_text','field_64888ce2e26e2'),(214812,39214,'blocks_4_row_content_actions',''),(214813,39214,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(214814,39214,'blocks_4_row_content',''),(214815,39214,'_blocks_4_row_content','field_64888cb0e26df'),(214816,39214,'blocks_4_steps_0_icon','progression.svg'),(214817,39214,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(214818,39214,'blocks_4_steps_0_title','Earning Potential'),(214819,39214,'_blocks_4_steps_0_title','field_64888d94e26e7'),(214820,39214,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(214821,39214,'_blocks_4_steps_0_text','field_64888d99e26e8'),(214822,39214,'blocks_4_steps_1_icon','support.svg'),(214823,39214,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(214824,39214,'blocks_4_steps_1_title','Lifetime Learning Promise'),(214825,39214,'_blocks_4_steps_1_title','field_64888d94e26e7'),(214826,39214,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(214827,39214,'_blocks_4_steps_1_text','field_64888d99e26e8'),(214828,39214,'blocks_4_steps_2_icon','qualification.svg'),(214829,39214,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(214830,39214,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(214831,39214,'_blocks_4_steps_2_title','field_64888d94e26e7'),(214832,39214,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(214833,39214,'_blocks_4_steps_2_text','field_64888d99e26e8'),(214834,39214,'blocks_4_steps_3_icon','leaders.svg'),(214835,39214,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(214836,39214,'blocks_4_steps_3_title','Stand Out From the Crowd'),(214837,39214,'_blocks_4_steps_3_title','field_64888d94e26e7'),(214838,39214,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(214839,39214,'_blocks_4_steps_3_text','field_64888d99e26e8'),(214840,39214,'blocks_4_steps','4'),(214841,39214,'_blocks_4_steps','field_64888d44e26e5'),(214842,40978,'hide_hero','0'),(214843,40978,'_hide_hero','field_66a2380fcda39'),(214844,40978,'hero_title','Biomechanics and Personal Training'),(214845,40978,'_hero_title','field_617571fe285e8'),(214846,40978,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(214847,40978,'_hero_text','field_6175723c285e9'),(214848,40978,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(214849,40978,'_hero_actions_0_button','field_61757281285eb'),(214850,40978,'hero_actions','1'),(214851,40978,'_hero_actions','field_61757270285ea'),(214852,40978,'hero_style','default'),(214853,40978,'_hero_style','field_62051d9dc5324'),(214854,40978,'_thumbnail_id','39215'),(214855,40978,'__thumbnail_id','field_617570855ddaf'),(214856,40978,'hero_image_pos_x','right'),(214857,40978,'_hero_image_pos_x','field_62ec3d05390bb'),(214858,40978,'hero_image_pos_y','top'),(214859,40978,'_hero_image_pos_y','field_62ec3d05390bc'),(214860,40978,'hero_image_pos',''),(214861,40978,'_hero_image_pos','field_62ec3d05390ba'),(214862,40978,'fft_hide_from_listings','0'),(214863,40978,'_fft_hide_from_listings','field_61f1320446ab2'),(214864,40978,'fft_page_format','default'),(214865,40978,'_fft_page_format','field_61ae213f1f218'),(214866,40978,'fft_hide_nav','0'),(214867,40978,'_fft_hide_nav','field_635bd5e43527c'),(214868,40978,'fft_hide_header_call_to_action','0'),(214869,40978,'_fft_hide_header_call_to_action','field_635bd6723527d'),(214870,40978,'fft_page_sitemap','0'),(214871,40978,'_fft_page_sitemap','field_61af9b34e8181'),(214872,40978,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(214873,40978,'_blocks','field_6176696113096'),(214874,40978,'blocks_0_acfe_flexible_toggle',''),(214875,40978,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(214876,40978,'blocks_0_acfe_flexible_layout_title','Template'),(214877,40978,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(214878,40978,'blocks_0_template','39087'),(214879,40978,'_blocks_0_template','field_617bdd570fe01'),(214880,40978,'blocks_5_acfe_flexible_toggle',''),(214881,40978,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(214882,40978,'blocks_5_acfe_flexible_layout_title','Tabs'),(214883,40978,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(214884,40978,'blocks_5_options_theme','#ffffff'),(214885,40978,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(214886,40978,'blocks_5_options',''),(214887,40978,'_blocks_5_options','field_6177cfcd8140f'),(214888,40978,'blocks_5_tabs_0_tab_label','What will I learn?'),(214889,40978,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(214890,40978,'blocks_5_tabs_0_tab_content_title',''),(214891,40978,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(214892,40978,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(214893,40978,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(214894,40978,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(214895,40978,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(214896,40978,'blocks_5_tabs_0_tab_content_actions',''),(214897,40978,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(214898,40978,'blocks_5_tabs_0_tab_content',''),(214899,40978,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(214900,40978,'blocks_5_tabs_0_tab_image','39076'),(214901,40978,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(214902,40978,'blocks_5_tabs_1_tab_label','What do I need?'),(214903,40978,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(214904,40978,'blocks_5_tabs_1_tab_content_title',''),(214905,40978,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(214906,40978,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(214907,40978,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(214908,40978,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(214909,40978,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(214910,40978,'blocks_5_tabs_1_tab_content_actions',''),(214911,40978,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(214912,40978,'blocks_5_tabs_1_tab_content',''),(214913,40978,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(214914,40978,'blocks_5_tabs_1_tab_image','39223'),(214915,40978,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(214916,40978,'blocks_5_tabs_2_tab_label','Where can I learn?'),(214917,40978,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(214918,40978,'blocks_5_tabs_2_tab_content_title',''),(214919,40978,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(214920,40978,'blocks_5_tabs_2_tab_content_heading','Locations'),(214921,40978,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(214922,40978,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(214923,40978,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(214924,40978,'blocks_5_tabs_2_tab_content_actions',''),(214925,40978,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(214926,40978,'blocks_5_tabs_2_tab_content',''),(214927,40978,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(214928,40978,'blocks_5_tabs_2_tab_image','39224'),(214929,40978,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(214930,40978,'blocks_5_tabs','3'),(214931,40978,'_blocks_5_tabs','field_6177cff281419'),(214932,40978,'blocks_6_acfe_flexible_toggle',''),(214933,40978,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(214934,40978,'blocks_6_acfe_flexible_layout_title','Text Block'),(214935,40978,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(214936,40978,'blocks_6_options_theme','#b61234'),(214937,40978,'_blocks_6_options_theme','field_6176830e2ad17'),(214938,40978,'blocks_6_options',''),(214939,40978,'_blocks_6_options','field_6176830e2ad16'),(214940,40978,'blocks_6_text_block_heading','Fees & Funding Options'),(214941,40978,'_blocks_6_text_block_heading','field_617669d413097'),(214942,40978,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(214943,40978,'_blocks_6_text_block_content','field_617669ec13098'),(214944,40978,'blocks_7_acfe_flexible_toggle',''),(214945,40978,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(214946,40978,'blocks_7_acfe_flexible_layout_title','Icons'),(214947,40978,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(214948,40978,'blocks_7_options_theme','#b61234'),(214949,40978,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(214950,40978,'blocks_7_options_format','row'),(214951,40978,'_blocks_7_options_format','field_64bfde9a90690'),(214952,40978,'blocks_7_options',''),(214953,40978,'_blocks_7_options','field_64bfdd9b90684'),(214954,40978,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(214955,40978,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(214956,40978,'blocks_7_icon_row_items_0_label','Pay in Full'),(214957,40978,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(214958,40978,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(214959,40978,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(214960,40978,'blocks_7_icon_row_items_1_icon','finance.svg'),(214961,40978,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(214962,40978,'blocks_7_icon_row_items_1_label','0% finance'),(214963,40978,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(214964,40978,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(214965,40978,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(214966,40978,'blocks_7_icon_row_items_2_icon','deposit.svg'),(214967,40978,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(214968,40978,'blocks_7_icon_row_items_2_label','Deposit & balance'),(214969,40978,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(214970,40978,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(214971,40978,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(214972,40978,'blocks_7_icon_row_items','3'),(214973,40978,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(214974,40978,'blocks_9_acfe_flexible_toggle',''),(214975,40978,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(214976,40978,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(214977,40978,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(214978,40978,'blocks_9_testimonial_slider_content_title',''),(214979,40978,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(214980,40978,'blocks_9_testimonial_slider_content_heading','Testimonials'),(214981,40978,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(214982,40978,'blocks_9_testimonial_slider_content_text',''),(214983,40978,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(214984,40978,'blocks_9_testimonial_slider_content_actions',''),(214985,40978,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(214986,40978,'blocks_9_testimonial_slider_content',''),(214987,40978,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(214988,40978,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(214989,40978,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(214990,40978,'blocks_9_testimonial_slider_ambassador_bool','0'),(214991,40978,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(214992,40978,'blocks_10_acfe_flexible_toggle',''),(214993,40978,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(214994,40978,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(214995,40978,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(214996,40978,'blocks_10_options_theme','#ffffff'),(214997,40978,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(214998,40978,'blocks_10_options_state','0'),(214999,40978,'_blocks_10_options_state','field_6239fcb7508c5'),(215000,40978,'blocks_10_options',''),(215001,40978,'_blocks_10_options','field_6177e2991ac44'),(215002,40978,'blocks_10_content_title',''),(215003,40978,'_blocks_10_content_title','field_64d237e8bb1e2'),(215004,40978,'blocks_10_content_heading','Frequently asked questions '),(215005,40978,'_blocks_10_content_heading','field_64d237e8bb1e3'),(215006,40978,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(215007,40978,'_blocks_10_content_text','field_64d237e8bb1e4'),(215008,40978,'blocks_10_content_actions',''),(215009,40978,'_blocks_10_content_actions','field_64d237e8bb1e5'),(215010,40978,'blocks_10_content_align','left'),(215011,40978,'_blocks_10_content_align','field_64d2443e6b6aa'),(215012,40978,'blocks_10_content',''),(215013,40978,'_blocks_10_content','field_64d237e8bb1e1'),(215014,40978,'blocks_10_accordion_content','faqs'),(215015,40978,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(215016,40978,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(215017,40978,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(215018,40978,'blocks_10_actions',''),(215019,40978,'_blocks_10_actions','field_61a746a817f7a'),(215020,40978,'blocks_8_acfe_flexible_toggle',''),(215021,40978,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(215022,40978,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(215023,40978,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(215024,40978,'blocks_8_options_theme','#f5f5f5'),(215025,40978,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(215026,40978,'blocks_8_options_reverse','0'),(215027,40978,'_blocks_8_options_reverse','field_61768049bb8ac'),(215028,40978,'blocks_8_options',''),(215029,40978,'_blocks_8_options','field_617682517c334'),(215030,40978,'blocks_8_split_5050_image','40920'),(215031,40978,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(215032,40978,'blocks_8_split_5050_video',''),(215033,40978,'_blocks_8_split_5050_video','field_6239f3160848a'),(215034,40978,'blocks_8_split_5050_content_title',''),(215035,40978,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(215036,40978,'blocks_8_split_5050_content_heading','Why Study This Course?'),(215037,40978,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(215038,40978,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(215039,40978,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(215040,40978,'blocks_8_split_5050_content_actions',''),(215041,40978,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(215042,40978,'blocks_8_split_5050_content',''),(215043,40978,'_blocks_8_split_5050_content','field_61767afceb8ba'),(215044,40978,'blocks_1_acfe_flexible_toggle',''),(215045,40978,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(215046,40978,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(215047,40978,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(215048,40978,'blocks_1_options_theme','#ffffff'),(215049,40978,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(215050,40978,'blocks_1_options_reverse','0'),(215051,40978,'_blocks_1_options_reverse','field_61768049bb8ac'),(215052,40978,'blocks_1_options',''),(215053,40978,'_blocks_1_options','field_617682517c334'),(215054,40978,'blocks_1_split_5050_image','39220'),(215055,40978,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(215056,40978,'blocks_1_split_5050_video',''),(215057,40978,'_blocks_1_split_5050_video','field_6239f3160848a'),(215058,40978,'blocks_1_split_5050_content_title',''),(215059,40978,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(215060,40978,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(215061,40978,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(215062,40978,'blocks_1_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(215063,40978,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(215064,40978,'blocks_1_split_5050_content_actions',''),(215065,40978,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(215066,40978,'blocks_1_split_5050_content',''),(215067,40978,'_blocks_1_split_5050_content','field_61767afceb8ba'),(215068,40978,'blocks_2_acfe_flexible_toggle',''),(215069,40978,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(215070,40978,'blocks_2_acfe_flexible_layout_title','Form'),(215071,40978,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(215072,40978,'blocks_2_row_content_format','standard'),(215073,40978,'_blocks_2_row_content_format','field_6481ead962881'),(215074,40978,'blocks_2_row_content_title',''),(215075,40978,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(215076,40978,'blocks_2_row_content_heading','Enquire Today'),(215077,40978,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(215078,40978,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(215079,40978,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(215080,40978,'blocks_2_row_content_actions',''),(215081,40978,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(215082,40978,'blocks_2_row_content',''),(215083,40978,'_blocks_2_row_content','field_61a0f5f5b3db0'),(215084,40978,'blocks_2_row_form','40394'),(215085,40978,'_blocks_2_row_form','field_61a4ff2c0b08e'),(215086,40978,'blocks_2_row_form_button_label',''),(215087,40978,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(215088,40978,'blocks_3_acfe_flexible_toggle',''),(215089,40978,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(215090,40978,'blocks_3_acfe_flexible_layout_title','Video'),(215091,40978,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(215092,40978,'blocks_3_size','large'),(215093,40978,'_blocks_3_size','field_6487038f297c1'),(215094,40978,'blocks_3_row_content_title',''),(215095,40978,'_blocks_3_row_content_title','field_64870132a865d'),(215096,40978,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(215097,40978,'_blocks_3_row_content_heading','field_64870142a865e'),(215098,40978,'blocks_3_row_content_text',''),(215099,40978,'_blocks_3_row_content_text','field_64870148a865f'),(215100,40978,'blocks_3_row_content',''),(215101,40978,'_blocks_3_row_content','field_6487008ba865c'),(215102,40978,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(215103,40978,'_blocks_3_video_src','field_6193c4a98ec07'),(215104,40978,'blocks_3_video_thumbnail','39186'),(215105,40978,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(215106,40978,'blocks_4_acfe_flexible_toggle',''),(215107,40978,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(215108,40978,'blocks_4_acfe_flexible_layout_title','Steps'),(215109,40978,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(215110,40978,'blocks_4_row_content_title',''),(215111,40978,'_blocks_4_row_content_title','field_64888cd1e26e0'),(215112,40978,'blocks_4_row_content_heading','Benefits of training with us'),(215113,40978,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(215114,40978,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(215115,40978,'_blocks_4_row_content_text','field_64888ce2e26e2'),(215116,40978,'blocks_4_row_content_actions',''),(215117,40978,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(215118,40978,'blocks_4_row_content',''),(215119,40978,'_blocks_4_row_content','field_64888cb0e26df'),(215120,40978,'blocks_4_steps_0_icon','progression.svg'),(215121,40978,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(215122,40978,'blocks_4_steps_0_title','Earning Potential'),(215123,40978,'_blocks_4_steps_0_title','field_64888d94e26e7'),(215124,40978,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(215125,40978,'_blocks_4_steps_0_text','field_64888d99e26e8'),(215126,40978,'blocks_4_steps_1_icon','support.svg'),(215127,40978,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(215128,40978,'blocks_4_steps_1_title','Lifetime Learning Promise'),(215129,40978,'_blocks_4_steps_1_title','field_64888d94e26e7'),(215130,40978,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(215131,40978,'_blocks_4_steps_1_text','field_64888d99e26e8'),(215132,40978,'blocks_4_steps_2_icon','qualification.svg'),(215133,40978,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(215134,40978,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(215135,40978,'_blocks_4_steps_2_title','field_64888d94e26e7'),(215136,40978,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(215137,40978,'_blocks_4_steps_2_text','field_64888d99e26e8'),(215138,40978,'blocks_4_steps_3_icon','leaders.svg'),(215139,40978,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(215140,40978,'blocks_4_steps_3_title','Stand Out From the Crowd'),(215141,40978,'_blocks_4_steps_3_title','field_64888d94e26e7'),(215142,40978,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(215143,40978,'_blocks_4_steps_3_text','field_64888d99e26e8'),(215144,40978,'blocks_4_steps','4'),(215145,40978,'_blocks_4_steps','field_64888d44e26e5'),(215197,39170,'_thumbnail_id',''),(215198,39169,'_thumbnail_id',''),(215199,40780,'blocks_1_acfe_flexible_toggle',''),(215200,40780,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(215201,40780,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(215202,40780,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(215203,40780,'blocks_1_options_theme','#ffffff'),(215204,40780,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(215205,40780,'blocks_1_options_reverse','0'),(215206,40780,'_blocks_1_options_reverse','field_61768049bb8ac'),(215207,40780,'blocks_1_options',''),(215208,40780,'_blocks_1_options','field_617682517c334'),(215209,40780,'blocks_1_split_5050_image','40785'),(215210,40780,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(215211,40780,'blocks_1_split_5050_video',''),(215212,40780,'_blocks_1_split_5050_video','field_6239f3160848a'),(215213,40780,'blocks_1_split_5050_content_title',''),(215214,40780,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(215215,40780,'blocks_1_split_5050_content_heading','Course Overview'),(215216,40780,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(215217,40780,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases a 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(215218,40780,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(215219,40780,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(215220,40780,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(215221,40780,'blocks_1_split_5050_content_actions','1'),(215222,40780,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(215223,40780,'blocks_1_split_5050_content',''),(215224,40780,'_blocks_1_split_5050_content','field_61767afceb8ba'),(215269,40982,'hide_hero','0'),(215270,40982,'_hide_hero','field_66a2380fcda39'),(215271,40982,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(215272,40982,'_hero_title','field_617571fe285e8'),(215273,40982,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(215274,40982,'_hero_text','field_6175723c285e9'),(215275,40982,'hero_actions','1'),(215276,40982,'_hero_actions','field_61757270285ea'),(215277,40982,'hero_style','default'),(215278,40982,'_hero_style','field_62051d9dc5324'),(215279,40982,'_thumbnail_id','40848'),(215280,40982,'__thumbnail_id','field_617570855ddaf'),(215281,40982,'hero_image_pos_x','right'),(215282,40982,'_hero_image_pos_x','field_62ec3d05390bb'),(215283,40982,'hero_image_pos_y','top'),(215284,40982,'_hero_image_pos_y','field_62ec3d05390bc'),(215285,40982,'hero_image_pos',''),(215286,40982,'_hero_image_pos','field_62ec3d05390ba'),(215287,40982,'fft_hide_from_listings','0'),(215288,40982,'_fft_hide_from_listings','field_61f1320446ab2'),(215289,40982,'fft_page_format','default'),(215290,40982,'_fft_page_format','field_61ae213f1f218'),(215291,40982,'fft_hide_nav','0'),(215292,40982,'_fft_hide_nav','field_635bd5e43527c'),(215293,40982,'fft_hide_header_call_to_action','0'),(215294,40982,'_fft_hide_header_call_to_action','field_635bd6723527d'),(215295,40982,'fft_page_sitemap','0'),(215296,40982,'_fft_page_sitemap','field_61af9b34e8181'),(215297,40982,'blocks','a:15:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:4:\"form\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"accordions\";}'),(215298,40982,'_blocks','field_6176696113096'),(215299,40982,'course_label_text',''),(215300,40982,'_course_label_text','field_61e17babf71fa'),(215301,40982,'course_label',''),(215302,40982,'_course_label','field_61e12f92749a7'),(215303,40982,'course_description',''),(215304,40982,'_course_description','field_617ac5788e5e1'),(215305,40982,'course_key_info',''),(215306,40982,'_course_key_info','field_617ac6ad8e5e2'),(215307,40982,'course_included',''),(215308,40982,'_course_included','field_617ac6f08e5e4'),(215309,40982,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(215310,40982,'_hero_actions_0_button','field_61757281285eb'),(215311,40982,'blocks_0_acfe_flexible_toggle',''),(215312,40982,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(215313,40982,'blocks_0_acfe_flexible_layout_title','Icons'),(215314,40982,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(215315,40982,'blocks_0_options_theme','#b61234'),(215316,40982,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(215317,40982,'blocks_0_options_format','row'),(215318,40982,'_blocks_0_options_format','field_64bfde9a90690'),(215319,40982,'blocks_0_options',''),(215320,40982,'_blocks_0_options','field_64bfdd9b90684'),(215321,40982,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(215322,40982,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(215323,40982,'blocks_0_icon_row_items_0_label','Accreditation'),(215324,40982,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(215325,40982,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(215326,40982,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(215327,40982,'blocks_0_icon_row_items_1_icon','finance.svg'),(215328,40982,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(215329,40982,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(215330,40982,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(215331,40982,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(215332,40982,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(215333,40982,'blocks_0_icon_row_items_2_icon','progression.svg'),(215334,40982,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(215335,40982,'blocks_0_icon_row_items_2_label','Earning Potential'),(215336,40982,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(215337,40982,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(215338,40982,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(215339,40982,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(215340,40982,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(215341,40982,'blocks_0_icon_row_items_3_label','Qualification'),(215342,40982,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(215343,40982,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(215344,40982,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(215345,40982,'blocks_0_icon_row_items','4'),(215346,40982,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(215347,40982,'blocks_5_acfe_flexible_toggle','1'),(215348,40982,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(215349,40982,'blocks_5_acfe_flexible_layout_title','Tabs'),(215350,40982,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(215351,40982,'blocks_5_options_theme','#ffffff'),(215352,40982,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(215353,40982,'blocks_5_options',''),(215354,40982,'_blocks_5_options','field_6177cfcd8140f'),(215355,40982,'blocks_5_tabs_0_tab_label','Entry requirements'),(215356,40982,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(215357,40982,'blocks_5_tabs_0_tab_content_title',''),(215358,40982,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(215359,40982,'blocks_5_tabs_0_tab_content_heading',''),(215360,40982,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(215361,40982,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(215362,40982,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(215363,40982,'blocks_5_tabs_0_tab_content_actions',''),(215364,40982,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(215365,40982,'blocks_5_tabs_0_tab_content',''),(215366,40982,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(215367,40982,'blocks_5_tabs_0_tab_image',''),(215368,40982,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(215369,40982,'blocks_5_tabs_1_tab_label','Learning format'),(215370,40982,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(215371,40982,'blocks_5_tabs_1_tab_content_title',''),(215372,40982,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(215373,40982,'blocks_5_tabs_1_tab_content_heading',''),(215374,40982,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(215375,40982,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(215376,40982,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(215377,40982,'blocks_5_tabs_1_tab_content_actions',''),(215378,40982,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(215379,40982,'blocks_5_tabs_1_tab_content',''),(215380,40982,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(215381,40982,'blocks_5_tabs_1_tab_image',''),(215382,40982,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(215383,40982,'blocks_5_tabs_2_tab_label','Qualifications included'),(215384,40982,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(215385,40982,'blocks_5_tabs_2_tab_content_title',''),(215386,40982,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(215387,40982,'blocks_5_tabs_2_tab_content_heading',''),(215388,40982,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(215389,40982,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(215390,40982,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(215391,40982,'blocks_5_tabs_2_tab_content_actions',''),(215392,40982,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(215393,40982,'blocks_5_tabs_2_tab_content',''),(215394,40982,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(215395,40982,'blocks_5_tabs_2_tab_image',''),(215396,40982,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(215397,40982,'blocks_5_tabs','3'),(215398,40982,'_blocks_5_tabs','field_6177cff281419'),(215399,40982,'blocks_4_acfe_flexible_toggle',''),(215400,40982,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(215401,40982,'blocks_4_acfe_flexible_layout_title','Template'),(215402,40982,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(215403,40982,'blocks_4_template','39207'),(215404,40982,'_blocks_4_template','field_617bdd570fe01'),(215405,40982,'blocks_6_acfe_flexible_toggle',''),(215406,40982,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(215407,40982,'blocks_6_acfe_flexible_layout_title','Icons'),(215408,40982,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(215409,40982,'blocks_6_options_theme','#f5f5f5'),(215410,40982,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(215411,40982,'blocks_6_options_format','stacked'),(215412,40982,'_blocks_6_options_format','field_64bfde9a90690'),(215413,40982,'blocks_6_options',''),(215414,40982,'_blocks_6_options','field_64bfdd9b90684'),(215415,40982,'blocks_6_row_content_title','Options available to pay for your course'),(215416,40982,'_blocks_6_row_content_title','field_64bfdd9b90687'),(215417,40982,'blocks_6_row_content_heading','Payment Options'),(215418,40982,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(215419,40982,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(215420,40982,'_blocks_6_row_content_text','field_64bfdd9b90689'),(215421,40982,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(215422,40982,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(215423,40982,'blocks_6_row_content_actions','1'),(215424,40982,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(215425,40982,'blocks_6_row_content',''),(215426,40982,'_blocks_6_row_content','field_64bfdd9b90686'),(215427,40982,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(215428,40982,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(215429,40982,'blocks_6_icon_row_items_0_label','Pay your course in full'),(215430,40982,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(215431,40982,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(215432,40982,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(215433,40982,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(215434,40982,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(215435,40982,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(215436,40982,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(215437,40982,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(215438,40982,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(215439,40982,'blocks_6_icon_row_items','2'),(215440,40982,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(215441,40982,'blocks_7_acfe_flexible_toggle',''),(215442,40982,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(215443,40982,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(215444,40982,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(215445,40982,'blocks_7_options_theme','#ffffff'),(215446,40982,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(215447,40982,'blocks_7_options_reverse','0'),(215448,40982,'_blocks_7_options_reverse','field_61768049bb8ac'),(215449,40982,'blocks_7_options',''),(215450,40982,'_blocks_7_options','field_617682517c334'),(215451,40982,'blocks_7_split_5050_image','40817'),(215452,40982,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(215453,40982,'blocks_7_split_5050_video',''),(215454,40982,'_blocks_7_split_5050_video','field_6239f3160848a'),(215455,40982,'blocks_7_split_5050_content_title',''),(215456,40982,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(215457,40982,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(215458,40982,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(215459,40982,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(215460,40982,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(215461,40982,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(215462,40982,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(215463,40982,'blocks_7_split_5050_content_actions','1'),(215464,40982,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(215465,40982,'blocks_7_split_5050_content',''),(215466,40982,'_blocks_7_split_5050_content','field_61767afceb8ba'),(215467,40982,'blocks_8_acfe_flexible_toggle',''),(215468,40982,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(215469,40982,'blocks_8_acfe_flexible_layout_title','Icons'),(215470,40982,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(215471,40982,'blocks_8_options_theme','#f5f5f5'),(215472,40982,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(215473,40982,'blocks_8_options_format','row'),(215474,40982,'_blocks_8_options_format','field_64bfde9a90690'),(215475,40982,'blocks_8_options',''),(215476,40982,'_blocks_8_options','field_64bfdd9b90684'),(215477,40982,'blocks_8_icon_row_items_0_icon','qualification.svg'),(215478,40982,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(215479,40982,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(215480,40982,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(215481,40982,'blocks_8_icon_row_items_0_text',''),(215482,40982,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(215483,40982,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(215484,40982,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(215485,40982,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(215486,40982,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(215487,40982,'blocks_8_icon_row_items_1_text',''),(215488,40982,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(215489,40982,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(215490,40982,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(215491,40982,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(215492,40982,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(215493,40982,'blocks_8_icon_row_items_2_text',''),(215494,40982,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(215495,40982,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(215496,40982,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(215497,40982,'blocks_8_icon_row_items_3_label','Flexible funding options'),(215498,40982,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(215499,40982,'blocks_8_icon_row_items_3_text',''),(215500,40982,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(215501,40982,'blocks_8_icon_row_items','4'),(215502,40982,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(215503,40982,'blocks_9_acfe_flexible_toggle',''),(215504,40982,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(215505,40982,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(215506,40982,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(215507,40982,'blocks_9_options_theme','#ffffff'),(215508,40982,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(215509,40982,'blocks_9_options_reverse','1'),(215510,40982,'_blocks_9_options_reverse','field_61768049bb8ac'),(215511,40982,'blocks_9_options',''),(215512,40982,'_blocks_9_options','field_617682517c334'),(215513,40982,'blocks_9_split_5050_image','39224'),(215514,40982,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(215515,40982,'blocks_9_split_5050_video',''),(215516,40982,'_blocks_9_split_5050_video','field_6239f3160848a'),(215517,40982,'blocks_9_split_5050_content_title','Locations'),(215518,40982,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(215519,40982,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(215520,40982,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(215521,40982,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(215522,40982,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(215523,40982,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(215524,40982,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(215525,40982,'blocks_9_split_5050_content_actions','1'),(215526,40982,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(215527,40982,'blocks_9_split_5050_content',''),(215528,40982,'_blocks_9_split_5050_content','field_61767afceb8ba'),(215529,40982,'blocks_10_acfe_flexible_toggle',''),(215530,40982,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(215531,40982,'blocks_10_acfe_flexible_layout_title','Text Block'),(215532,40982,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(215533,40982,'blocks_10_options_theme','#ffffff'),(215534,40982,'_blocks_10_options_theme','field_6176830e2ad17'),(215535,40982,'blocks_10_options',''),(215536,40982,'_blocks_10_options','field_6176830e2ad16'),(215537,40982,'blocks_10_text_block_heading','Check out other relevant courses'),(215538,40982,'_blocks_10_text_block_heading','field_617669d413097'),(215539,40982,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(215540,40982,'_blocks_10_text_block_content','field_617669ec13098'),(215541,40982,'blocks_11_acfe_flexible_toggle',''),(215542,40982,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(215543,40982,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(215544,40982,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(215545,40982,'blocks_11_options_theme','#ffffff'),(215546,40982,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(215547,40982,'blocks_11_options',''),(215548,40982,'_blocks_11_options','field_617ac0b7f6c08'),(215549,40982,'blocks_11_show','selection'),(215550,40982,'_blocks_11_show','field_61a49cba9d946'),(215551,40982,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(215552,40982,'_blocks_11_courses','field_61b244781ee0a'),(215553,40982,'blocks_12_acfe_flexible_toggle',''),(215554,40982,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(215555,40982,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(215556,40982,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(215557,40982,'blocks_12_options_theme','#ffffff'),(215558,40982,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(215559,40982,'blocks_12_options_reverse','0'),(215560,40982,'_blocks_12_options_reverse','field_61768049bb8ac'),(215561,40982,'blocks_12_options',''),(215562,40982,'_blocks_12_options','field_617682517c334'),(215563,40982,'blocks_12_split_5050_image','40812'),(215564,40982,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(215565,40982,'blocks_12_split_5050_video',''),(215566,40982,'_blocks_12_split_5050_video','field_6239f3160848a'),(215567,40982,'blocks_12_split_5050_content_title','Optimise Performance '),(215568,40982,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(215569,40982,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(215570,40982,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(215571,40982,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(215572,40982,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(215573,40982,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(215574,40982,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(215575,40982,'blocks_12_split_5050_content_actions','1'),(215576,40982,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(215577,40982,'blocks_12_split_5050_content',''),(215578,40982,'_blocks_12_split_5050_content','field_61767afceb8ba'),(215579,40982,'blocks_13_acfe_flexible_toggle',''),(215580,40982,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(215581,40982,'blocks_13_acfe_flexible_layout_title','50/50 Split'),(215582,40982,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(215583,40982,'blocks_13_options_theme','#f5f5f5'),(215584,40982,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(215585,40982,'blocks_13_options_reverse','1'),(215586,40982,'_blocks_13_options_reverse','field_61768049bb8ac'),(215587,40982,'blocks_13_options',''),(215588,40982,'_blocks_13_options','field_617682517c334'),(215589,40982,'blocks_13_split_5050_image','40844'),(215590,40982,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(215591,40982,'blocks_13_split_5050_video',''),(215592,40982,'_blocks_13_split_5050_video','field_6239f3160848a'),(215593,40982,'blocks_13_split_5050_content_title','BIOMECHANICS EDUCATION & FUTURE FIT'),(215594,40982,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(215595,40982,'blocks_13_split_5050_content_heading','Working In Partnership'),(215596,40982,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(215597,40982,'blocks_13_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners and our network and will help us in our mission as we continue to look for new ways to make positive changes to the way we not only train our students but how we help shape the health and fitness industry.\r\n\r\nAs a combined force, both Future Fit and Biomechanics Education offer multiple benefits to you as the learner, including (but not exclusive to):\r\n\r\nAccess to Future Fit Student Zone for support and information\r\n\r\nDiscounts on businesses and brands you love\r\n\r\nOur learning management system\r\n\r\nIndustry recognised training\r\n\r\nOngoing support during and after qualification'),(215598,40982,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(215599,40982,'blocks_13_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(215600,40982,'_blocks_13_split_5050_content_actions_0_button','field_61767b72eb8be'),(215601,40982,'blocks_13_split_5050_content_actions','1'),(215602,40982,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(215603,40982,'blocks_13_split_5050_content',''),(215604,40982,'_blocks_13_split_5050_content','field_61767afceb8ba'),(215605,40982,'blocks_14_acfe_flexible_toggle',''),(215606,40982,'_blocks_14_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(215607,40982,'blocks_14_acfe_flexible_layout_title','Accordions / FAQs'),(215608,40982,'_blocks_14_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(215609,40982,'blocks_14_options_theme','#f5f5f5'),(215610,40982,'_blocks_14_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(215611,40982,'blocks_14_options_state','0'),(215612,40982,'_blocks_14_options_state','field_6239fcb7508c5'),(215613,40982,'blocks_14_options',''),(215614,40982,'_blocks_14_options','field_6177e2991ac44'),(215615,40982,'blocks_14_content_title',''),(215616,40982,'_blocks_14_content_title','field_64d237e8bb1e2'),(215617,40982,'blocks_14_content_heading','FAQ\'s'),(215618,40982,'_blocks_14_content_heading','field_64d237e8bb1e3'),(215619,40982,'blocks_14_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(215620,40982,'_blocks_14_content_text','field_64d237e8bb1e4'),(215621,40982,'blocks_14_content_actions',''),(215622,40982,'_blocks_14_content_actions','field_64d237e8bb1e5'),(215623,40982,'blocks_14_content_align','left'),(215624,40982,'_blocks_14_content_align','field_64d2443e6b6aa'),(215625,40982,'blocks_14_content',''),(215626,40982,'_blocks_14_content','field_64d237e8bb1e1'),(215627,40982,'blocks_14_accordion_content','faqs'),(215628,40982,'_blocks_14_accordion_content','field_6177e2c81ac4f'),(215629,40982,'blocks_14_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(215630,40982,'_blocks_14_accordion_faqs_select','field_6177e5f3633dd'),(215631,40982,'blocks_14_actions',''),(215632,40982,'_blocks_14_actions','field_61a746a817f7a'),(215633,40982,'blocks_1_acfe_flexible_toggle',''),(215634,40982,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(215635,40982,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(215636,40982,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(215637,40982,'blocks_1_options_theme','#ffffff'),(215638,40982,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(215639,40982,'blocks_1_options_reverse','0'),(215640,40982,'_blocks_1_options_reverse','field_61768049bb8ac'),(215641,40982,'blocks_1_options',''),(215642,40982,'_blocks_1_options','field_617682517c334'),(215643,40982,'blocks_1_split_5050_image','40785'),(215644,40982,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(215645,40982,'blocks_1_split_5050_video',''),(215646,40982,'_blocks_1_split_5050_video','field_6239f3160848a'),(215647,40982,'blocks_1_split_5050_content_title',''),(215648,40982,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(215649,40982,'blocks_1_split_5050_content_heading','Course Overview'),(215650,40982,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(215651,40982,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(215652,40982,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(215653,40982,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(215654,40982,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(215655,40982,'blocks_1_split_5050_content_actions','1'),(215656,40982,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(215657,40982,'blocks_1_split_5050_content',''),(215658,40982,'_blocks_1_split_5050_content','field_61767afceb8ba'),(215659,40982,'blocks_2_acfe_flexible_toggle',''),(215660,40982,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(215661,40982,'blocks_2_acfe_flexible_layout_title','Video'),(215662,40982,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(215663,40982,'blocks_2_size','large'),(215664,40982,'_blocks_2_size','field_6487038f297c1'),(215665,40982,'blocks_2_row_content_title',''),(215666,40982,'_blocks_2_row_content_title','field_64870132a865d'),(215667,40982,'blocks_2_row_content_heading','Become a Biomechanics Coach'),(215668,40982,'_blocks_2_row_content_heading','field_64870142a865e'),(215669,40982,'blocks_2_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(215670,40982,'_blocks_2_row_content_text','field_64870148a865f'),(215671,40982,'blocks_2_row_content',''),(215672,40982,'_blocks_2_row_content','field_6487008ba865c'),(215673,40982,'blocks_2_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(215674,40982,'_blocks_2_video_src','field_6193c4a98ec07'),(215675,40982,'blocks_2_video_thumbnail',''),(215676,40982,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(215677,40982,'blocks_3_acfe_flexible_toggle',''),(215678,40982,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(215679,40982,'blocks_3_acfe_flexible_layout_title','Form'),(215680,40982,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(215681,40982,'blocks_3_row_content_format','standard'),(215682,40982,'_blocks_3_row_content_format','field_6481ead962881'),(215683,40982,'blocks_3_row_content_title',''),(215684,40982,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(215685,40982,'blocks_3_row_content_heading','Enquire Today'),(215686,40982,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(215687,40982,'blocks_3_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(215688,40982,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(215689,40982,'blocks_3_row_content_actions',''),(215690,40982,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(215691,40982,'blocks_3_row_content',''),(215692,40982,'_blocks_3_row_content','field_61a0f5f5b3db0'),(215693,40982,'blocks_3_row_form','40394'),(215694,40982,'_blocks_3_row_form','field_61a4ff2c0b08e'),(215695,40982,'blocks_3_row_form_button_label',''),(215696,40982,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(215697,40982,'blocks_11_open_whats_included','1'),(215698,40982,'_blocks_11_open_whats_included','field_66ebfd679450c'),(215699,40982,'blocks_11_open_key_information','0'),(215700,40982,'_blocks_11_open_key_information','field_66ebfd7f9450d'),(215701,40982,'blocks_11_open',''),(215702,40982,'_blocks_11_open','field_66ebfd009450b'),(216137,40780,'blocks_2_acfe_flexible_toggle',''),(216138,40780,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(216139,40780,'blocks_2_acfe_flexible_layout_title','Form'),(216140,40780,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(216141,40780,'blocks_2_row_content_format','standard'),(216142,40780,'_blocks_2_row_content_format','field_6481ead962881'),(216143,40780,'blocks_2_row_content_title',''),(216144,40780,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(216145,40780,'blocks_2_row_content_heading','Enquire Today'),(216146,40780,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(216147,40780,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(216148,40780,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(216149,40780,'blocks_2_row_content_actions',''),(216150,40780,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(216151,40780,'blocks_2_row_content',''),(216152,40780,'_blocks_2_row_content','field_61a0f5f5b3db0'),(216153,40780,'blocks_2_row_form','40394'),(216154,40780,'_blocks_2_row_form','field_61a4ff2c0b08e'),(216155,40780,'blocks_2_row_form_button_label',''),(216156,40780,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(216157,40780,'blocks_3_acfe_flexible_toggle',''),(216158,40780,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(216159,40780,'blocks_3_acfe_flexible_layout_title','Video'),(216160,40780,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(216161,40780,'blocks_3_size','large'),(216162,40780,'_blocks_3_size','field_6487038f297c1'),(216163,40780,'blocks_3_row_content_title',''),(216164,40780,'_blocks_3_row_content_title','field_64870132a865d'),(216165,40780,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(216166,40780,'_blocks_3_row_content_heading','field_64870142a865e'),(216167,40780,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(216168,40780,'_blocks_3_row_content_text','field_64870148a865f'),(216169,40780,'blocks_3_row_content',''),(216170,40780,'_blocks_3_row_content','field_6487008ba865c'),(216171,40780,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(216172,40780,'_blocks_3_video_src','field_6193c4a98ec07'),(216173,40780,'blocks_3_video_thumbnail',''),(216174,40780,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(216175,40984,'hide_hero','0'),(216176,40984,'_hide_hero','field_66a2380fcda39'),(216177,40984,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(216178,40984,'_hero_title','field_617571fe285e8'),(216179,40984,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(216180,40984,'_hero_text','field_6175723c285e9'),(216181,40984,'hero_actions','1'),(216182,40984,'_hero_actions','field_61757270285ea'),(216183,40984,'hero_style','default'),(216184,40984,'_hero_style','field_62051d9dc5324'),(216185,40984,'_thumbnail_id','40848'),(216186,40984,'__thumbnail_id','field_617570855ddaf'),(216187,40984,'hero_image_pos_x','right'),(216188,40984,'_hero_image_pos_x','field_62ec3d05390bb'),(216189,40984,'hero_image_pos_y','top'),(216190,40984,'_hero_image_pos_y','field_62ec3d05390bc'),(216191,40984,'hero_image_pos',''),(216192,40984,'_hero_image_pos','field_62ec3d05390ba'),(216193,40984,'fft_hide_from_listings','0'),(216194,40984,'_fft_hide_from_listings','field_61f1320446ab2'),(216195,40984,'fft_page_format','default'),(216196,40984,'_fft_page_format','field_61ae213f1f218'),(216197,40984,'fft_hide_nav','0'),(216198,40984,'_fft_hide_nav','field_635bd5e43527c'),(216199,40984,'fft_hide_header_call_to_action','0'),(216200,40984,'_fft_hide_header_call_to_action','field_635bd6723527d'),(216201,40984,'fft_page_sitemap','0'),(216202,40984,'_fft_page_sitemap','field_61af9b34e8181'),(216203,40984,'blocks','a:15:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"accordions\";}'),(216204,40984,'_blocks','field_6176696113096'),(216205,40984,'course_label_text',''),(216206,40984,'_course_label_text','field_61e17babf71fa'),(216207,40984,'course_label',''),(216208,40984,'_course_label','field_61e12f92749a7'),(216209,40984,'course_description',''),(216210,40984,'_course_description','field_617ac5788e5e1'),(216211,40984,'course_key_info',''),(216212,40984,'_course_key_info','field_617ac6ad8e5e2'),(216213,40984,'course_included',''),(216214,40984,'_course_included','field_617ac6f08e5e4'),(216215,40984,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(216216,40984,'_hero_actions_0_button','field_61757281285eb'),(216217,40984,'blocks_0_acfe_flexible_toggle',''),(216218,40984,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(216219,40984,'blocks_0_acfe_flexible_layout_title','Icons'),(216220,40984,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(216221,40984,'blocks_0_options_theme','#b61234'),(216222,40984,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(216223,40984,'blocks_0_options_format','row'),(216224,40984,'_blocks_0_options_format','field_64bfde9a90690'),(216225,40984,'blocks_0_options',''),(216226,40984,'_blocks_0_options','field_64bfdd9b90684'),(216227,40984,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(216228,40984,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(216229,40984,'blocks_0_icon_row_items_0_label','Accreditation'),(216230,40984,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(216231,40984,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(216232,40984,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(216233,40984,'blocks_0_icon_row_items_1_icon','finance.svg'),(216234,40984,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(216235,40984,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(216236,40984,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(216237,40984,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(216238,40984,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(216239,40984,'blocks_0_icon_row_items_2_icon','progression.svg'),(216240,40984,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(216241,40984,'blocks_0_icon_row_items_2_label','Earning Potential'),(216242,40984,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(216243,40984,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(216244,40984,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(216245,40984,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(216246,40984,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(216247,40984,'blocks_0_icon_row_items_3_label','Qualification'),(216248,40984,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(216249,40984,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(216250,40984,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(216251,40984,'blocks_0_icon_row_items','4'),(216252,40984,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(216253,40984,'blocks_5_acfe_flexible_toggle','1'),(216254,40984,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(216255,40984,'blocks_5_acfe_flexible_layout_title','Tabs'),(216256,40984,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(216257,40984,'blocks_5_options_theme','#ffffff'),(216258,40984,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(216259,40984,'blocks_5_options',''),(216260,40984,'_blocks_5_options','field_6177cfcd8140f'),(216261,40984,'blocks_5_tabs_0_tab_label','Entry requirements'),(216262,40984,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(216263,40984,'blocks_5_tabs_0_tab_content_title',''),(216264,40984,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(216265,40984,'blocks_5_tabs_0_tab_content_heading',''),(216266,40984,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(216267,40984,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(216268,40984,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(216269,40984,'blocks_5_tabs_0_tab_content_actions',''),(216270,40984,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(216271,40984,'blocks_5_tabs_0_tab_content',''),(216272,40984,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(216273,40984,'blocks_5_tabs_0_tab_image',''),(216274,40984,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(216275,40984,'blocks_5_tabs_1_tab_label','Learning format'),(216276,40984,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(216277,40984,'blocks_5_tabs_1_tab_content_title',''),(216278,40984,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(216279,40984,'blocks_5_tabs_1_tab_content_heading',''),(216280,40984,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(216281,40984,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(216282,40984,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(216283,40984,'blocks_5_tabs_1_tab_content_actions',''),(216284,40984,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(216285,40984,'blocks_5_tabs_1_tab_content',''),(216286,40984,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(216287,40984,'blocks_5_tabs_1_tab_image',''),(216288,40984,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(216289,40984,'blocks_5_tabs_2_tab_label','Qualifications included'),(216290,40984,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(216291,40984,'blocks_5_tabs_2_tab_content_title',''),(216292,40984,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(216293,40984,'blocks_5_tabs_2_tab_content_heading',''),(216294,40984,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(216295,40984,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(216296,40984,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(216297,40984,'blocks_5_tabs_2_tab_content_actions',''),(216298,40984,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(216299,40984,'blocks_5_tabs_2_tab_content',''),(216300,40984,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(216301,40984,'blocks_5_tabs_2_tab_image',''),(216302,40984,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(216303,40984,'blocks_5_tabs','3'),(216304,40984,'_blocks_5_tabs','field_6177cff281419'),(216305,40984,'blocks_4_acfe_flexible_toggle',''),(216306,40984,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(216307,40984,'blocks_4_acfe_flexible_layout_title','Template'),(216308,40984,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(216309,40984,'blocks_4_template','39207'),(216310,40984,'_blocks_4_template','field_617bdd570fe01'),(216311,40984,'blocks_6_acfe_flexible_toggle',''),(216312,40984,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(216313,40984,'blocks_6_acfe_flexible_layout_title','Icons'),(216314,40984,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(216315,40984,'blocks_6_options_theme','#f5f5f5'),(216316,40984,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(216317,40984,'blocks_6_options_format','stacked'),(216318,40984,'_blocks_6_options_format','field_64bfde9a90690'),(216319,40984,'blocks_6_options',''),(216320,40984,'_blocks_6_options','field_64bfdd9b90684'),(216321,40984,'blocks_6_row_content_title','Options available to pay for your course'),(216322,40984,'_blocks_6_row_content_title','field_64bfdd9b90687'),(216323,40984,'blocks_6_row_content_heading','Payment Options'),(216324,40984,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(216325,40984,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(216326,40984,'_blocks_6_row_content_text','field_64bfdd9b90689'),(216327,40984,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(216328,40984,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(216329,40984,'blocks_6_row_content_actions','1'),(216330,40984,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(216331,40984,'blocks_6_row_content',''),(216332,40984,'_blocks_6_row_content','field_64bfdd9b90686'),(216333,40984,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(216334,40984,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(216335,40984,'blocks_6_icon_row_items_0_label','Pay your course in full'),(216336,40984,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(216337,40984,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(216338,40984,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(216339,40984,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(216340,40984,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(216341,40984,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(216342,40984,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(216343,40984,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(216344,40984,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(216345,40984,'blocks_6_icon_row_items','2'),(216346,40984,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(216347,40984,'blocks_7_acfe_flexible_toggle',''),(216348,40984,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(216349,40984,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(216350,40984,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(216351,40984,'blocks_7_options_theme','#ffffff'),(216352,40984,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(216353,40984,'blocks_7_options_reverse','0'),(216354,40984,'_blocks_7_options_reverse','field_61768049bb8ac'),(216355,40984,'blocks_7_options',''),(216356,40984,'_blocks_7_options','field_617682517c334'),(216357,40984,'blocks_7_split_5050_image','40817'),(216358,40984,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(216359,40984,'blocks_7_split_5050_video',''),(216360,40984,'_blocks_7_split_5050_video','field_6239f3160848a'),(216361,40984,'blocks_7_split_5050_content_title',''),(216362,40984,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(216363,40984,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(216364,40984,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(216365,40984,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(216366,40984,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(216367,40984,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(216368,40984,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(216369,40984,'blocks_7_split_5050_content_actions','1'),(216370,40984,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(216371,40984,'blocks_7_split_5050_content',''),(216372,40984,'_blocks_7_split_5050_content','field_61767afceb8ba'),(216373,40984,'blocks_8_acfe_flexible_toggle',''),(216374,40984,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(216375,40984,'blocks_8_acfe_flexible_layout_title','Icons'),(216376,40984,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(216377,40984,'blocks_8_options_theme','#f5f5f5'),(216378,40984,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(216379,40984,'blocks_8_options_format','row'),(216380,40984,'_blocks_8_options_format','field_64bfde9a90690'),(216381,40984,'blocks_8_options',''),(216382,40984,'_blocks_8_options','field_64bfdd9b90684'),(216383,40984,'blocks_8_icon_row_items_0_icon','qualification.svg'),(216384,40984,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(216385,40984,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(216386,40984,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(216387,40984,'blocks_8_icon_row_items_0_text',''),(216388,40984,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(216389,40984,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(216390,40984,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(216391,40984,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(216392,40984,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(216393,40984,'blocks_8_icon_row_items_1_text',''),(216394,40984,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(216395,40984,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(216396,40984,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(216397,40984,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(216398,40984,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(216399,40984,'blocks_8_icon_row_items_2_text',''),(216400,40984,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(216401,40984,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(216402,40984,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(216403,40984,'blocks_8_icon_row_items_3_label','Flexible funding options'),(216404,40984,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(216405,40984,'blocks_8_icon_row_items_3_text',''),(216406,40984,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(216407,40984,'blocks_8_icon_row_items','4'),(216408,40984,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(216409,40984,'blocks_9_acfe_flexible_toggle',''),(216410,40984,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(216411,40984,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(216412,40984,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(216413,40984,'blocks_9_options_theme','#ffffff'),(216414,40984,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(216415,40984,'blocks_9_options_reverse','1'),(216416,40984,'_blocks_9_options_reverse','field_61768049bb8ac'),(216417,40984,'blocks_9_options',''),(216418,40984,'_blocks_9_options','field_617682517c334'),(216419,40984,'blocks_9_split_5050_image','39224'),(216420,40984,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(216421,40984,'blocks_9_split_5050_video',''),(216422,40984,'_blocks_9_split_5050_video','field_6239f3160848a'),(216423,40984,'blocks_9_split_5050_content_title','Locations'),(216424,40984,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(216425,40984,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(216426,40984,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(216427,40984,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(216428,40984,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(216429,40984,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(216430,40984,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(216431,40984,'blocks_9_split_5050_content_actions','1'),(216432,40984,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(216433,40984,'blocks_9_split_5050_content',''),(216434,40984,'_blocks_9_split_5050_content','field_61767afceb8ba'),(216435,40984,'blocks_10_acfe_flexible_toggle',''),(216436,40984,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(216437,40984,'blocks_10_acfe_flexible_layout_title','Text Block'),(216438,40984,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(216439,40984,'blocks_10_options_theme','#ffffff'),(216440,40984,'_blocks_10_options_theme','field_6176830e2ad17'),(216441,40984,'blocks_10_options',''),(216442,40984,'_blocks_10_options','field_6176830e2ad16'),(216443,40984,'blocks_10_text_block_heading','Check out other relevant courses'),(216444,40984,'_blocks_10_text_block_heading','field_617669d413097'),(216445,40984,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(216446,40984,'_blocks_10_text_block_content','field_617669ec13098'),(216447,40984,'blocks_11_acfe_flexible_toggle',''),(216448,40984,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(216449,40984,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(216450,40984,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(216451,40984,'blocks_11_options_theme','#ffffff'),(216452,40984,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(216453,40984,'blocks_11_options',''),(216454,40984,'_blocks_11_options','field_617ac0b7f6c08'),(216455,40984,'blocks_11_show','selection'),(216456,40984,'_blocks_11_show','field_61a49cba9d946'),(216457,40984,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(216458,40984,'_blocks_11_courses','field_61b244781ee0a'),(216459,40984,'blocks_12_acfe_flexible_toggle',''),(216460,40984,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(216461,40984,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(216462,40984,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(216463,40984,'blocks_12_options_theme','#ffffff'),(216464,40984,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(216465,40984,'blocks_12_options_reverse','0'),(216466,40984,'_blocks_12_options_reverse','field_61768049bb8ac'),(216467,40984,'blocks_12_options',''),(216468,40984,'_blocks_12_options','field_617682517c334'),(216469,40984,'blocks_12_split_5050_image','40812'),(216470,40984,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(216471,40984,'blocks_12_split_5050_video',''),(216472,40984,'_blocks_12_split_5050_video','field_6239f3160848a'),(216473,40984,'blocks_12_split_5050_content_title','Optimise Performance '),(216474,40984,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(216475,40984,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(216476,40984,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(216477,40984,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(216478,40984,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(216479,40984,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(216480,40984,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(216481,40984,'blocks_12_split_5050_content_actions','1'),(216482,40984,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(216483,40984,'blocks_12_split_5050_content',''),(216484,40984,'_blocks_12_split_5050_content','field_61767afceb8ba'),(216485,40984,'blocks_13_acfe_flexible_toggle',''),(216486,40984,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(216487,40984,'blocks_13_acfe_flexible_layout_title','50/50 Split'),(216488,40984,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(216489,40984,'blocks_13_options_theme','#f5f5f5'),(216490,40984,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(216491,40984,'blocks_13_options_reverse','1'),(216492,40984,'_blocks_13_options_reverse','field_61768049bb8ac'),(216493,40984,'blocks_13_options',''),(216494,40984,'_blocks_13_options','field_617682517c334'),(216495,40984,'blocks_13_split_5050_image','40844'),(216496,40984,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(216497,40984,'blocks_13_split_5050_video',''),(216498,40984,'_blocks_13_split_5050_video','field_6239f3160848a'),(216499,40984,'blocks_13_split_5050_content_title','BIOMECHANICS EDUCATION & FUTURE FIT'),(216500,40984,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(216501,40984,'blocks_13_split_5050_content_heading','Working In Partnership'),(216502,40984,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(216503,40984,'blocks_13_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners and our network and will help us in our mission as we continue to look for new ways to make positive changes to the way we not only train our students but how we help shape the health and fitness industry.\r\n\r\nAs a combined force, both Future Fit and Biomechanics Education offer multiple benefits to you as the learner, including (but not exclusive to):\r\n\r\nAccess to Future Fit Student Zone for support and information\r\n\r\nDiscounts on businesses and brands you love\r\n\r\nOur learning management system\r\n\r\nIndustry recognised training\r\n\r\nOngoing support during and after qualification'),(216504,40984,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(216505,40984,'blocks_13_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(216506,40984,'_blocks_13_split_5050_content_actions_0_button','field_61767b72eb8be'),(216507,40984,'blocks_13_split_5050_content_actions','1'),(216508,40984,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(216509,40984,'blocks_13_split_5050_content',''),(216510,40984,'_blocks_13_split_5050_content','field_61767afceb8ba'),(216511,40984,'blocks_14_acfe_flexible_toggle',''),(216512,40984,'_blocks_14_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(216513,40984,'blocks_14_acfe_flexible_layout_title','Accordions / FAQs'),(216514,40984,'_blocks_14_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(216515,40984,'blocks_14_options_theme','#f5f5f5'),(216516,40984,'_blocks_14_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(216517,40984,'blocks_14_options_state','0'),(216518,40984,'_blocks_14_options_state','field_6239fcb7508c5'),(216519,40984,'blocks_14_options',''),(216520,40984,'_blocks_14_options','field_6177e2991ac44'),(216521,40984,'blocks_14_content_title',''),(216522,40984,'_blocks_14_content_title','field_64d237e8bb1e2'),(216523,40984,'blocks_14_content_heading','FAQ\'s'),(216524,40984,'_blocks_14_content_heading','field_64d237e8bb1e3'),(216525,40984,'blocks_14_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(216526,40984,'_blocks_14_content_text','field_64d237e8bb1e4'),(216527,40984,'blocks_14_content_actions',''),(216528,40984,'_blocks_14_content_actions','field_64d237e8bb1e5'),(216529,40984,'blocks_14_content_align','left'),(216530,40984,'_blocks_14_content_align','field_64d2443e6b6aa'),(216531,40984,'blocks_14_content',''),(216532,40984,'_blocks_14_content','field_64d237e8bb1e1'),(216533,40984,'blocks_14_accordion_content','faqs'),(216534,40984,'_blocks_14_accordion_content','field_6177e2c81ac4f'),(216535,40984,'blocks_14_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(216536,40984,'_blocks_14_accordion_faqs_select','field_6177e5f3633dd'),(216537,40984,'blocks_14_actions',''),(216538,40984,'_blocks_14_actions','field_61a746a817f7a'),(216539,40984,'blocks_1_acfe_flexible_toggle',''),(216540,40984,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(216541,40984,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(216542,40984,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(216543,40984,'blocks_1_options_theme','#ffffff'),(216544,40984,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(216545,40984,'blocks_1_options_reverse','0'),(216546,40984,'_blocks_1_options_reverse','field_61768049bb8ac'),(216547,40984,'blocks_1_options',''),(216548,40984,'_blocks_1_options','field_617682517c334'),(216549,40984,'blocks_1_split_5050_image','40785'),(216550,40984,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(216551,40984,'blocks_1_split_5050_video',''),(216552,40984,'_blocks_1_split_5050_video','field_6239f3160848a'),(216553,40984,'blocks_1_split_5050_content_title',''),(216554,40984,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(216555,40984,'blocks_1_split_5050_content_heading','Course Overview'),(216556,40984,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(216557,40984,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(216558,40984,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(216559,40984,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(216560,40984,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(216561,40984,'blocks_1_split_5050_content_actions','1'),(216562,40984,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(216563,40984,'blocks_1_split_5050_content',''),(216564,40984,'_blocks_1_split_5050_content','field_61767afceb8ba'),(216565,40984,'blocks_11_open_whats_included','1'),(216566,40984,'_blocks_11_open_whats_included','field_66ebfd679450c'),(216567,40984,'blocks_11_open_key_information','0'),(216568,40984,'_blocks_11_open_key_information','field_66ebfd7f9450d'),(216569,40984,'blocks_11_open',''),(216570,40984,'_blocks_11_open','field_66ebfd009450b'),(216571,40984,'blocks_2_acfe_flexible_toggle',''),(216572,40984,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(216573,40984,'blocks_2_acfe_flexible_layout_title','Form'),(216574,40984,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(216575,40984,'blocks_2_row_content_format','standard'),(216576,40984,'_blocks_2_row_content_format','field_6481ead962881'),(216577,40984,'blocks_2_row_content_title',''),(216578,40984,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(216579,40984,'blocks_2_row_content_heading','Enquire Today'),(216580,40984,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(216581,40984,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(216582,40984,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(216583,40984,'blocks_2_row_content_actions',''),(216584,40984,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(216585,40984,'blocks_2_row_content',''),(216586,40984,'_blocks_2_row_content','field_61a0f5f5b3db0'),(216587,40984,'blocks_2_row_form','40394'),(216588,40984,'_blocks_2_row_form','field_61a4ff2c0b08e'),(216589,40984,'blocks_2_row_form_button_label',''),(216590,40984,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(216591,40984,'blocks_3_acfe_flexible_toggle',''),(216592,40984,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(216593,40984,'blocks_3_acfe_flexible_layout_title','Video'),(216594,40984,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(216595,40984,'blocks_3_size','large'),(216596,40984,'_blocks_3_size','field_6487038f297c1'),(216597,40984,'blocks_3_row_content_title',''),(216598,40984,'_blocks_3_row_content_title','field_64870132a865d'),(216599,40984,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(216600,40984,'_blocks_3_row_content_heading','field_64870142a865e'),(216601,40984,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(216602,40984,'_blocks_3_row_content_text','field_64870148a865f'),(216603,40984,'blocks_3_row_content',''),(216604,40984,'_blocks_3_row_content','field_6487008ba865c'),(216605,40984,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(216606,40984,'_blocks_3_video_src','field_6193c4a98ec07'),(216607,40984,'blocks_3_video_thumbnail',''),(216608,40984,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(216609,40985,'hero_style','default'),(216610,40985,'_hero_style','field_62051d9dc5324'),(216611,40985,'hero_image_pos_x','right'),(216612,40985,'_hero_image_pos_x','field_62ec3d05390bb'),(216613,40985,'hero_image_pos_y','top'),(216614,40985,'_hero_image_pos_y','field_62ec3d05390bc'),(216615,40985,'hero_image_pos',''),(216616,40985,'_hero_image_pos','field_62ec3d05390ba'),(216617,40985,'hero_title','Biomechanics Education'),(216618,40985,'_hero_title','field_617571fe285e8'),(216619,40985,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(216620,40985,'_hero_text','field_6175723c285e9'),(216621,40985,'hero_actions','1'),(216622,40985,'_hero_actions','field_61757270285ea'),(216623,40985,'hero_icon',''),(216624,40985,'_hero_icon','field_61a6182199d03'),(216625,40985,'fft_hide_from_listings','0'),(216626,40985,'_fft_hide_from_listings','field_61f1320446ab2'),(216627,40985,'fft_page_format','default'),(216628,40985,'_fft_page_format','field_61ae213f1f218'),(216629,40985,'fft_hide_nav','0'),(216630,40985,'_fft_hide_nav','field_635bd5e43527c'),(216631,40985,'fft_hide_header_call_to_action','0'),(216632,40985,'_fft_hide_header_call_to_action','field_635bd6723527d'),(216633,40985,'fft_page_sitemap','0'),(216634,40985,'_fft_page_sitemap','field_61af9b34e8181'),(216635,40985,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:8:\"template\";i:7;s:18:\"testimonial_slider\";}'),(216636,40985,'_blocks','field_6176696113096'),(216637,40985,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(216638,40985,'_hero_actions_0_button','field_61757281285eb'),(216639,40985,'_thumbnail_id','38951'),(216640,40985,'__thumbnail_id','field_617570855ddaf'),(216641,40985,'hide_hero','0'),(216642,40985,'_hide_hero','field_66a2380fcda39'),(216643,40985,'blocks_3_acfe_flexible_toggle',''),(216644,40985,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(216645,40985,'blocks_3_acfe_flexible_layout_title','Text Block'),(216646,40985,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(216647,40985,'blocks_3_options_theme','#ffffff'),(216648,40985,'_blocks_3_options_theme','field_6176830e2ad17'),(216649,40985,'blocks_3_options',''),(216650,40985,'_blocks_3_options','field_6176830e2ad16'),(216651,40985,'blocks_3_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines '),(216652,40985,'_blocks_3_text_block_heading','field_617669d413097'),(216653,40985,'blocks_3_text_block_content',''),(216654,40985,'_blocks_3_text_block_content','field_617669ec13098'),(216655,40985,'blocks_4_acfe_flexible_toggle',''),(216656,40985,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(216657,40985,'blocks_4_acfe_flexible_layout_title','Cards'),(216658,40985,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(216659,40985,'blocks_4_options_theme','#ffffff'),(216660,40985,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(216661,40985,'blocks_4_options_format','carousel'),(216662,40985,'_blocks_4_options_format','field_617a7b15245b5'),(216663,40985,'blocks_4_options_style','default'),(216664,40985,'_blocks_4_options_style','field_6278ffb63484a'),(216665,40985,'blocks_4_options_cards_current_listing','0'),(216666,40985,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(216667,40985,'blocks_4_options_cards_content','custom'),(216668,40985,'_blocks_4_options_cards_content','field_617aba6122688'),(216669,40985,'blocks_4_options',''),(216670,40985,'_blocks_4_options','field_617a7b15245b3'),(216671,40985,'blocks_4_cards_custom_0_image','39215'),(216672,40985,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(216673,40985,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(216674,40985,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(216675,40985,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(216676,40985,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(216677,40985,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(216678,40985,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(216679,40985,'blocks_4_cards_custom_1_image','39243'),(216680,40985,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(216681,40985,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(216682,40985,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(216683,40985,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(216684,40985,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(216685,40985,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(216686,40985,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(216687,40985,'blocks_4_cards_custom_2_image','39247'),(216688,40985,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(216689,40985,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(216690,40985,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(216691,40985,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(216692,40985,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(216693,40985,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(216694,40985,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(216695,40985,'blocks_4_cards_custom_3_image','39256'),(216696,40985,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(216697,40985,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(216698,40985,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(216699,40985,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(216700,40985,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(216701,40985,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(216702,40985,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(216703,40985,'blocks_4_cards_custom_4_image','39251'),(216704,40985,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(216705,40985,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(216706,40985,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(216707,40985,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(216708,40985,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(216709,40985,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(216710,40985,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(216711,40985,'blocks_4_cards_custom_5_image','39240'),(216712,40985,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(216713,40985,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(216714,40985,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(216715,40985,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(216716,40985,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(216717,40985,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(216718,40985,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(216719,40985,'blocks_4_cards_custom_6_image','39454'),(216720,40985,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(216721,40985,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(216722,40985,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(216723,40985,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(216724,40985,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(216725,40985,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(216726,40985,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(216727,40985,'blocks_4_cards_custom','7'),(216728,40985,'_blocks_4_cards_custom','field_6194cbf84d386'),(216729,40985,'blocks_5_acfe_flexible_toggle',''),(216730,40985,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(216731,40985,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(216732,40985,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(216733,40985,'blocks_5_options_theme','#f5f5f5'),(216734,40985,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(216735,40985,'blocks_5_options_reverse','1'),(216736,40985,'_blocks_5_options_reverse','field_61768049bb8ac'),(216737,40985,'blocks_5_options',''),(216738,40985,'_blocks_5_options','field_617682517c334'),(216739,40985,'blocks_5_split_5050_image','38960'),(216740,40985,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(216741,40985,'blocks_5_split_5050_video',''),(216742,40985,'_blocks_5_split_5050_video','field_6239f3160848a'),(216743,40985,'blocks_5_split_5050_content_title',''),(216744,40985,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(216745,40985,'blocks_5_split_5050_content_heading','Biomechanics Education & Future Fit'),(216746,40985,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(216747,40985,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(216748,40985,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(216749,40985,'blocks_5_split_5050_content_actions','1'),(216750,40985,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(216751,40985,'blocks_5_split_5050_content',''),(216752,40985,'_blocks_5_split_5050_content','field_61767afceb8ba'),(216753,40985,'blocks_6_acfe_flexible_toggle',''),(216754,40985,'_blocks_6_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(216755,40985,'blocks_6_acfe_flexible_layout_title','Template'),(216756,40985,'_blocks_6_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(216757,40985,'blocks_6_template','39207'),(216758,40985,'_blocks_6_template','field_617bdd570fe01'),(216759,40985,'blocks_7_acfe_flexible_toggle',''),(216760,40985,'_blocks_7_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(216761,40985,'blocks_7_acfe_flexible_layout_title','Testimonial Slider'),(216762,40985,'_blocks_7_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(216763,40985,'blocks_7_testimonial_slider_content_title',''),(216764,40985,'_blocks_7_testimonial_slider_content_title','field_617c033b39a60'),(216765,40985,'blocks_7_testimonial_slider_content_heading','Testimonials'),(216766,40985,'_blocks_7_testimonial_slider_content_heading','field_617c033b39a61'),(216767,40985,'blocks_7_testimonial_slider_content_text',''),(216768,40985,'_blocks_7_testimonial_slider_content_text','field_617c033b39a62'),(216769,40985,'blocks_7_testimonial_slider_content_actions',''),(216770,40985,'_blocks_7_testimonial_slider_content_actions','field_617c033b39a63'),(216771,40985,'blocks_7_testimonial_slider_content',''),(216772,40985,'_blocks_7_testimonial_slider_content','field_617c033b39a5f'),(216773,40985,'blocks_7_testimonial_slider_items','a:5:{i:0;s:5:\"38964\";i:1;s:5:\"38965\";i:2;s:5:\"39168\";i:3;s:5:\"39170\";i:4;s:5:\"39169\";}'),(216774,40985,'_blocks_7_testimonial_slider_items','field_61812eaeb20eb'),(216775,40985,'blocks_7_testimonial_slider_ambassador_bool','0'),(216776,40985,'_blocks_7_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(216777,40985,'blocks_1_acfe_flexible_toggle',''),(216778,40985,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(216779,40985,'blocks_1_acfe_flexible_layout_title','Video'),(216780,40985,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(216781,40985,'blocks_1_size','large'),(216782,40985,'_blocks_1_size','field_6487038f297c1'),(216783,40985,'blocks_1_row_content_title',''),(216784,40985,'_blocks_1_row_content_title','field_64870132a865d'),(216785,40985,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(216786,40985,'_blocks_1_row_content_heading','field_64870142a865e'),(216787,40985,'blocks_1_row_content_text',''),(216788,40985,'_blocks_1_row_content_text','field_64870148a865f'),(216789,40985,'blocks_1_row_content',''),(216790,40985,'_blocks_1_row_content','field_6487008ba865c'),(216791,40985,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(216792,40985,'_blocks_1_video_src','field_6193c4a98ec07'),(216793,40985,'blocks_1_video_thumbnail','39175'),(216794,40985,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(216795,40985,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(216796,40985,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(216797,40985,'blocks_0_acfe_flexible_toggle',''),(216798,40985,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(216799,40985,'blocks_0_acfe_flexible_layout_title','Template'),(216800,40985,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(216801,40985,'blocks_0_template','39087'),(216802,40985,'_blocks_0_template','field_617bdd570fe01'),(216803,40985,'blocks_2_acfe_flexible_toggle',''),(216804,40985,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(216805,40985,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(216806,40985,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(216807,40985,'blocks_2_options_theme','#b61234'),(216808,40985,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(216809,40985,'blocks_2_options_reverse','0'),(216810,40985,'_blocks_2_options_reverse','field_61768049bb8ac'),(216811,40985,'blocks_2_options',''),(216812,40985,'_blocks_2_options','field_617682517c334'),(216813,40985,'blocks_2_split_5050_image',''),(216814,40985,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(216815,40985,'blocks_2_split_5050_video','https://www.youtube.com/watch?v=x_yYzgAqcbY'),(216816,40985,'_blocks_2_split_5050_video','field_6239f3160848a'),(216817,40985,'blocks_2_split_5050_content_title',''),(216818,40985,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(216819,40985,'blocks_2_split_5050_content_heading','What is Biomechanics Education?'),(216820,40985,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(216821,40985,'blocks_2_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(216822,40985,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(216823,40985,'blocks_2_split_5050_content_actions',''),(216824,40985,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(216825,40985,'blocks_2_split_5050_content',''),(216826,40985,'_blocks_2_split_5050_content','field_61767afceb8ba'),(216827,40986,'hero_style','default'),(216828,40986,'_hero_style','field_62051d9dc5324'),(216829,40986,'hero_image_pos_x','right'),(216830,40986,'_hero_image_pos_x','field_62ec3d05390bb'),(216831,40986,'hero_image_pos_y','top'),(216832,40986,'_hero_image_pos_y','field_62ec3d05390bc'),(216833,40986,'hero_image_pos',''),(216834,40986,'_hero_image_pos','field_62ec3d05390ba'),(216835,40986,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(216836,40986,'_hero_title','field_617571fe285e8'),(216837,40986,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(216838,40986,'_hero_text','field_6175723c285e9'),(216839,40986,'hero_actions','1'),(216840,40986,'_hero_actions','field_61757270285ea'),(216841,40986,'hero_icon',''),(216842,40986,'_hero_icon','field_61a6182199d03'),(216843,40986,'fft_hide_from_listings','0'),(216844,40986,'_fft_hide_from_listings','field_61f1320446ab2'),(216845,40986,'fft_page_format','default'),(216846,40986,'_fft_page_format','field_61ae213f1f218'),(216847,40986,'fft_hide_nav','1'),(216848,40986,'_fft_hide_nav','field_635bd5e43527c'),(216849,40986,'fft_hide_header_call_to_action','0'),(216850,40986,'_fft_hide_header_call_to_action','field_635bd6723527d'),(216851,40986,'fft_page_sitemap','1'),(216852,40986,'_fft_page_sitemap','field_61af9b34e8181'),(216853,40986,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:10:\"split_5050\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(216854,40986,'_blocks','field_6176696113096'),(216855,40986,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39043-3\";s:6:\"target\";s:6:\"_blank\";}'),(216856,40986,'_hero_actions_0_button','field_61757281285eb'),(216857,40986,'_thumbnail_id','40310'),(216858,40986,'__thumbnail_id','field_617570855ddaf'),(216859,40986,'blocks_0_acfe_flexible_toggle',''),(216860,40986,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(216861,40986,'blocks_0_acfe_flexible_layout_title','Icons'),(216862,40986,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(216863,40986,'blocks_0_options_theme','#ffffff'),(216864,40986,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(216865,40986,'blocks_0_options_format','row'),(216866,40986,'_blocks_0_options_format','field_64bfde9a90690'),(216867,40986,'blocks_0_options',''),(216868,40986,'_blocks_0_options','field_64bfdd9b90684'),(216869,40986,'blocks_0_icon_row_items_0_icon','qualification.svg'),(216870,40986,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(216871,40986,'blocks_0_icon_row_items_0_label','Course Type'),(216872,40986,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(216873,40986,'blocks_0_icon_row_items_0_text','Blended Learning'),(216874,40986,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(216875,40986,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(216876,40986,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(216877,40986,'blocks_0_icon_row_items_1_label','Qualification'),(216878,40986,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(216879,40986,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(216880,40986,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(216881,40986,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(216882,40986,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(216883,40986,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(216884,40986,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(216885,40986,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(216886,40986,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(216887,40986,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(216888,40986,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(216889,40986,'blocks_0_icon_row_items_3_label','IBA Registered'),(216890,40986,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(216891,40986,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(216892,40986,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(216893,40986,'blocks_0_icon_row_items','4'),(216894,40986,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(216895,40986,'blocks_1_acfe_flexible_toggle',''),(216896,40986,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(216897,40986,'blocks_1_acfe_flexible_layout_title','Form'),(216898,40986,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(216899,40986,'blocks_1_row_content_format','promotion'),(216900,40986,'_blocks_1_row_content_format','field_6481ead962881'),(216901,40986,'blocks_1_row_content_title',''),(216902,40986,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(216903,40986,'blocks_1_row_content_heading',''),(216904,40986,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(216905,40986,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(216906,40986,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(216907,40986,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(216908,40986,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(216909,40986,'blocks_1_row_content_actions','1'),(216910,40986,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(216911,40986,'blocks_1_row_content',''),(216912,40986,'_blocks_1_row_content','field_61a0f5f5b3db0'),(216913,40986,'blocks_1_row_form','40416'),(216914,40986,'_blocks_1_row_form','field_61a4ff2c0b08e'),(216915,40986,'blocks_1_row_form_button_label',''),(216916,40986,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(216917,40986,'blocks_1_row_content_promotion_label',''),(216918,40986,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(216919,40986,'blocks_1_row_content_promotion_heading','Up to 10% Off For Event Attendees '),(216920,40986,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(216921,40986,'blocks_1_row_content_promotion_value','10%'),(216922,40986,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(216923,40986,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(216924,40986,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(216925,40986,'blocks_1_row_content_promotion',''),(216926,40986,'_blocks_1_row_content_promotion','field_6481eb3962882'),(216927,40986,'blocks_1_row_form_title','EMD UK Referral'),(216928,40986,'_blocks_1_row_form_title','field_64872db5127af'),(216929,40986,'blocks_2_acfe_flexible_toggle',''),(216930,40986,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(216931,40986,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(216932,40986,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(216933,40986,'blocks_2_size','large'),(216934,40986,'_blocks_2_size','field_6487038f297c1'),(216935,40986,'blocks_2_row_content_title',''),(216936,40986,'_blocks_2_row_content_title','field_64870132a865d'),(216937,40986,'blocks_2_row_content_heading','Course Overview'),(216938,40986,'_blocks_2_row_content_heading','field_64870142a865e'),(216939,40986,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(216940,40986,'_blocks_2_row_content_text','field_64870148a865f'),(216941,40986,'blocks_2_row_content',''),(216942,40986,'_blocks_2_row_content','field_6487008ba865c'),(216943,40986,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(216944,40986,'_blocks_2_video_src','field_6193c4a98ec07'),(216945,40986,'blocks_2_video_thumbnail','38998'),(216946,40986,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(216947,40986,'blocks_3_acfe_flexible_toggle',''),(216948,40986,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(216949,40986,'blocks_3_acfe_flexible_layout_title','Partnership section'),(216950,40986,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(216951,40986,'blocks_3_options_theme','#ffffff'),(216952,40986,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(216953,40986,'blocks_3_options_reverse','0'),(216954,40986,'_blocks_3_options_reverse','field_61768049bb8ac'),(216955,40986,'blocks_3_options',''),(216956,40986,'_blocks_3_options','field_617682517c334'),(216957,40986,'blocks_3_split_5050_image','39051'),(216958,40986,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(216959,40986,'blocks_3_split_5050_video',''),(216960,40986,'_blocks_3_split_5050_video','field_6239f3160848a'),(216961,40986,'blocks_3_split_5050_content_title',''),(216962,40986,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(216963,40986,'blocks_3_split_5050_content_heading','Working in Partnership'),(216964,40986,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(216965,40986,'blocks_3_split_5050_content_text','Did you know that in 2022 Biomechanics Education was welcomed into the Future Fit Group? This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry. The Diploma in Biomechanics Coaching raises the bar again – expanding the skills and knowledge of Personal Trainers, Pilates Instructors, Sports therapists, and other fitness experts to broaden their scope of practice, and better serve their clients.'),(216966,40986,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(216967,40986,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(216968,40986,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(216969,40986,'blocks_3_split_5050_content_actions','1'),(216970,40986,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(216971,40986,'blocks_3_split_5050_content',''),(216972,40986,'_blocks_3_split_5050_content','field_61767afceb8ba'),(216973,40986,'blocks_4_acfe_flexible_toggle',''),(216974,40986,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(216975,40986,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(216976,40986,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(216977,40986,'blocks_4_content','<h2 style=\"text-align: center;\">Learn More About the Course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics Coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(216978,40986,'_blocks_4_content','field_6193c9b5eac84'),(216979,40986,'blocks_5_acfe_flexible_toggle',''),(216980,40986,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(216981,40986,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(216982,40986,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(216983,40986,'blocks_5_options_theme','#ffffff'),(216984,40986,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(216985,40986,'blocks_5_options',''),(216986,40986,'_blocks_5_options','field_6177cfcd8140f'),(216987,40986,'blocks_5_tabs_0_tab_label','What\'s Included'),(216988,40986,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(216989,40986,'blocks_5_tabs_0_tab_content_title',''),(216990,40986,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(216991,40986,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(216992,40986,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(216993,40986,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(216994,40986,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(216995,40986,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(216996,40986,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(216997,40986,'blocks_5_tabs_0_tab_content_actions','1'),(216998,40986,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(216999,40986,'blocks_5_tabs_0_tab_content',''),(217000,40986,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(217001,40986,'blocks_5_tabs_0_tab_image','39009'),(217002,40986,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(217003,40986,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(217004,40986,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(217005,40986,'blocks_5_tabs_1_tab_content_title',''),(217006,40986,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(217007,40986,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(217008,40986,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(217009,40986,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(217010,40986,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(217011,40986,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(217012,40986,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(217013,40986,'blocks_5_tabs_1_tab_content_actions','1'),(217014,40986,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(217015,40986,'blocks_5_tabs_1_tab_content',''),(217016,40986,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(217017,40986,'blocks_5_tabs_1_tab_image','31067'),(217018,40986,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(217019,40986,'blocks_5_tabs','2'),(217020,40986,'_blocks_5_tabs','field_6177cff281419'),(217021,40986,'blocks_6_acfe_flexible_toggle',''),(217022,40986,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(217023,40986,'blocks_6_acfe_flexible_layout_title','About Rachel'),(217024,40986,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(217025,40986,'blocks_6_options_theme','#ffffff'),(217026,40986,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(217027,40986,'blocks_6_options_reverse','0'),(217028,40986,'_blocks_6_options_reverse','field_61768049bb8ac'),(217029,40986,'blocks_6_options',''),(217030,40986,'_blocks_6_options','field_617682517c334'),(217031,40986,'blocks_6_split_5050_image','39052'),(217032,40986,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(217033,40986,'blocks_6_split_5050_video',''),(217034,40986,'_blocks_6_split_5050_video','field_6239f3160848a'),(217035,40986,'blocks_6_split_5050_content_title',''),(217036,40986,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(217037,40986,'blocks_6_split_5050_content_heading','Rachel Frances Thomson'),(217038,40986,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(217039,40986,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(217040,40986,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(217041,40986,'blocks_6_split_5050_content_actions',''),(217042,40986,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(217043,40986,'blocks_6_split_5050_content',''),(217044,40986,'_blocks_6_split_5050_content','field_61767afceb8ba'),(217045,40986,'blocks_7_acfe_flexible_toggle',''),(217046,40986,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(217047,40986,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(217048,40986,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(217049,40986,'blocks_7_options_theme','#ffffff'),(217050,40986,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(217051,40986,'blocks_7_options_state','0'),(217052,40986,'_blocks_7_options_state','field_6239fcb7508c5'),(217053,40986,'blocks_7_options',''),(217054,40986,'_blocks_7_options','field_6177e2991ac44'),(217055,40986,'blocks_7_content_title',''),(217056,40986,'_blocks_7_content_title','field_64d237e8bb1e2'),(217057,40986,'blocks_7_content_heading','Frequently asked questions'),(217058,40986,'_blocks_7_content_heading','field_64d237e8bb1e3'),(217059,40986,'blocks_7_content_text',''),(217060,40986,'_blocks_7_content_text','field_64d237e8bb1e4'),(217061,40986,'blocks_7_content_actions',''),(217062,40986,'_blocks_7_content_actions','field_64d237e8bb1e5'),(217063,40986,'blocks_7_content_align','left'),(217064,40986,'_blocks_7_content_align','field_64d2443e6b6aa'),(217065,40986,'blocks_7_content',''),(217066,40986,'_blocks_7_content','field_64d237e8bb1e1'),(217067,40986,'blocks_7_accordion_content','faqs'),(217068,40986,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(217069,40986,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(217070,40986,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(217071,40986,'blocks_7_actions',''),(217072,40986,'_blocks_7_actions','field_61a746a817f7a'),(217073,40986,'blocks_8_acfe_flexible_toggle',''),(217074,40986,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(217075,40986,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(217076,40986,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(217077,40986,'blocks_8_options_alignment','center'),(217078,40986,'_blocks_8_options_alignment','field_61769449f5490'),(217079,40986,'blocks_8_options',''),(217080,40986,'_blocks_8_options','field_617693e1428f0'),(217081,40986,'blocks_8_promo_panel_image','39035'),(217082,40986,'_blocks_8_promo_panel_image','field_617693e1428f3'),(217083,40986,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(217084,40986,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(217085,40986,'blocks_8_promo_panel_content_text','Download a price guide today to receive an exclusive 10% off for all David Lloyd Personal Trainers.'),(217086,40986,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(217087,40986,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(217088,40986,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(217089,40986,'blocks_8_promo_panel_content_actions','1'),(217090,40986,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(217091,40986,'blocks_8_promo_panel_content',''),(217092,40986,'_blocks_8_promo_panel_content','field_617693e1428f4'),(217093,40986,'hide_hero','0'),(217094,40986,'_hide_hero','field_66a2380fcda39'),(217095,40987,'_edit_lock','1727101137:5'),(217096,40987,'_edit_last','5'),(217097,40987,'blocks_0_acfe_flexible_toggle',''),(217098,40987,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(217099,40987,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(217100,40987,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(217101,40987,'blocks_0_options_theme','#f5f5f5'),(217102,40987,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(217103,40987,'blocks_0_options_reverse','0'),(217104,40987,'_blocks_0_options_reverse','field_61768049bb8ac'),(217105,40987,'blocks_0_options',''),(217106,40987,'_blocks_0_options','field_617682517c334'),(217107,40987,'blocks_0_split_5050_image','39051'),(217108,40987,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(217109,40987,'blocks_0_split_5050_video',''),(217110,40987,'_blocks_0_split_5050_video','field_6239f3160848a'),(217111,40987,'blocks_0_split_5050_content_title',''),(217112,40987,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(217113,40987,'blocks_0_split_5050_content_heading','Biomechanics Education & Future Fit'),(217114,40987,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(217115,40987,'blocks_0_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(217116,40987,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(217117,40987,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(217118,40987,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(217119,40987,'blocks_0_split_5050_content_actions','1'),(217120,40987,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(217121,40987,'blocks_0_split_5050_content',''),(217122,40987,'_blocks_0_split_5050_content','field_61767afceb8ba'),(217123,40987,'blocks','a:1:{i:0;s:10:\"split_5050\";}'),(217124,40987,'_blocks','field_6176696113096'),(217125,39043,'blocks_3_acfe_flexible_toggle',''),(217126,39043,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(217127,39043,'blocks_3_acfe_flexible_layout_title','Template'),(217128,39043,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(217129,39043,'blocks_3_template','40987'),(217130,39043,'_blocks_3_template','field_617bdd570fe01'),(217131,40988,'hero_style','default'),(217132,40988,'_hero_style','field_62051d9dc5324'),(217133,40988,'hero_image_pos_x','right'),(217134,40988,'_hero_image_pos_x','field_62ec3d05390bb'),(217135,40988,'hero_image_pos_y','top'),(217136,40988,'_hero_image_pos_y','field_62ec3d05390bc'),(217137,40988,'hero_image_pos',''),(217138,40988,'_hero_image_pos','field_62ec3d05390ba'),(217139,40988,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(217140,40988,'_hero_title','field_617571fe285e8'),(217141,40988,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(217142,40988,'_hero_text','field_6175723c285e9'),(217143,40988,'hero_actions','1'),(217144,40988,'_hero_actions','field_61757270285ea'),(217145,40988,'hero_icon',''),(217146,40988,'_hero_icon','field_61a6182199d03'),(217147,40988,'fft_hide_from_listings','0'),(217148,40988,'_fft_hide_from_listings','field_61f1320446ab2'),(217149,40988,'fft_page_format','default'),(217150,40988,'_fft_page_format','field_61ae213f1f218'),(217151,40988,'fft_hide_nav','1'),(217152,40988,'_fft_hide_nav','field_635bd5e43527c'),(217153,40988,'fft_hide_header_call_to_action','0'),(217154,40988,'_fft_hide_header_call_to_action','field_635bd6723527d'),(217155,40988,'fft_page_sitemap','1'),(217156,40988,'_fft_page_sitemap','field_61af9b34e8181'),(217157,40988,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:8:\"template\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(217158,40988,'_blocks','field_6176696113096'),(217159,40988,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39043-3\";s:6:\"target\";s:6:\"_blank\";}'),(217160,40988,'_hero_actions_0_button','field_61757281285eb'),(217161,40988,'_thumbnail_id','40310'),(217162,40988,'__thumbnail_id','field_617570855ddaf'),(217163,40988,'blocks_0_acfe_flexible_toggle',''),(217164,40988,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(217165,40988,'blocks_0_acfe_flexible_layout_title','Icons'),(217166,40988,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(217167,40988,'blocks_0_options_theme','#ffffff'),(217168,40988,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(217169,40988,'blocks_0_options_format','row'),(217170,40988,'_blocks_0_options_format','field_64bfde9a90690'),(217171,40988,'blocks_0_options',''),(217172,40988,'_blocks_0_options','field_64bfdd9b90684'),(217173,40988,'blocks_0_icon_row_items_0_icon','qualification.svg'),(217174,40988,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(217175,40988,'blocks_0_icon_row_items_0_label','Course Type'),(217176,40988,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(217177,40988,'blocks_0_icon_row_items_0_text','Blended Learning'),(217178,40988,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(217179,40988,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(217180,40988,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(217181,40988,'blocks_0_icon_row_items_1_label','Qualification'),(217182,40988,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(217183,40988,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(217184,40988,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(217185,40988,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(217186,40988,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(217187,40988,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(217188,40988,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(217189,40988,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(217190,40988,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(217191,40988,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(217192,40988,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(217193,40988,'blocks_0_icon_row_items_3_label','IBA Registered'),(217194,40988,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(217195,40988,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(217196,40988,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(217197,40988,'blocks_0_icon_row_items','4'),(217198,40988,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(217199,40988,'blocks_1_acfe_flexible_toggle',''),(217200,40988,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(217201,40988,'blocks_1_acfe_flexible_layout_title','Form'),(217202,40988,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(217203,40988,'blocks_1_row_content_format','promotion'),(217204,40988,'_blocks_1_row_content_format','field_6481ead962881'),(217205,40988,'blocks_1_row_content_title',''),(217206,40988,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(217207,40988,'blocks_1_row_content_heading',''),(217208,40988,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(217209,40988,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(217210,40988,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(217211,40988,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(217212,40988,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(217213,40988,'blocks_1_row_content_actions','1'),(217214,40988,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(217215,40988,'blocks_1_row_content',''),(217216,40988,'_blocks_1_row_content','field_61a0f5f5b3db0'),(217217,40988,'blocks_1_row_form','40416'),(217218,40988,'_blocks_1_row_form','field_61a4ff2c0b08e'),(217219,40988,'blocks_1_row_form_button_label',''),(217220,40988,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(217221,40988,'blocks_1_row_content_promotion_label',''),(217222,40988,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(217223,40988,'blocks_1_row_content_promotion_heading','Up to 10% Off For Event Attendees '),(217224,40988,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(217225,40988,'blocks_1_row_content_promotion_value','10%'),(217226,40988,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(217227,40988,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(217228,40988,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(217229,40988,'blocks_1_row_content_promotion',''),(217230,40988,'_blocks_1_row_content_promotion','field_6481eb3962882'),(217231,40988,'blocks_1_row_form_title','EMD UK Referral'),(217232,40988,'_blocks_1_row_form_title','field_64872db5127af'),(217233,40988,'blocks_2_acfe_flexible_toggle',''),(217234,40988,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(217235,40988,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(217236,40988,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(217237,40988,'blocks_2_size','large'),(217238,40988,'_blocks_2_size','field_6487038f297c1'),(217239,40988,'blocks_2_row_content_title',''),(217240,40988,'_blocks_2_row_content_title','field_64870132a865d'),(217241,40988,'blocks_2_row_content_heading','Course Overview'),(217242,40988,'_blocks_2_row_content_heading','field_64870142a865e'),(217243,40988,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(217244,40988,'_blocks_2_row_content_text','field_64870148a865f'),(217245,40988,'blocks_2_row_content',''),(217246,40988,'_blocks_2_row_content','field_6487008ba865c'),(217247,40988,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(217248,40988,'_blocks_2_video_src','field_6193c4a98ec07'),(217249,40988,'blocks_2_video_thumbnail','38998'),(217250,40988,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(217251,40988,'blocks_4_acfe_flexible_toggle',''),(217252,40988,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(217253,40988,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(217254,40988,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(217255,40988,'blocks_4_content','<h2 style=\"text-align: center;\">Learn More About the Course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics Coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(217256,40988,'_blocks_4_content','field_6193c9b5eac84'),(217257,40988,'blocks_5_acfe_flexible_toggle',''),(217258,40988,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(217259,40988,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(217260,40988,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(217261,40988,'blocks_5_options_theme','#ffffff'),(217262,40988,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(217263,40988,'blocks_5_options',''),(217264,40988,'_blocks_5_options','field_6177cfcd8140f'),(217265,40988,'blocks_5_tabs_0_tab_label','What\'s Included'),(217266,40988,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(217267,40988,'blocks_5_tabs_0_tab_content_title',''),(217268,40988,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(217269,40988,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(217270,40988,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(217271,40988,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(217272,40988,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(217273,40988,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(217274,40988,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(217275,40988,'blocks_5_tabs_0_tab_content_actions','1'),(217276,40988,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(217277,40988,'blocks_5_tabs_0_tab_content',''),(217278,40988,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(217279,40988,'blocks_5_tabs_0_tab_image','39009'),(217280,40988,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(217281,40988,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(217282,40988,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(217283,40988,'blocks_5_tabs_1_tab_content_title',''),(217284,40988,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(217285,40988,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(217286,40988,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(217287,40988,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(217288,40988,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(217289,40988,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(217290,40988,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(217291,40988,'blocks_5_tabs_1_tab_content_actions','1'),(217292,40988,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(217293,40988,'blocks_5_tabs_1_tab_content',''),(217294,40988,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(217295,40988,'blocks_5_tabs_1_tab_image','31067'),(217296,40988,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(217297,40988,'blocks_5_tabs','2'),(217298,40988,'_blocks_5_tabs','field_6177cff281419'),(217299,40988,'blocks_6_acfe_flexible_toggle',''),(217300,40988,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(217301,40988,'blocks_6_acfe_flexible_layout_title','About Rachel'),(217302,40988,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(217303,40988,'blocks_6_options_theme','#ffffff'),(217304,40988,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(217305,40988,'blocks_6_options_reverse','0'),(217306,40988,'_blocks_6_options_reverse','field_61768049bb8ac'),(217307,40988,'blocks_6_options',''),(217308,40988,'_blocks_6_options','field_617682517c334'),(217309,40988,'blocks_6_split_5050_image','39052'),(217310,40988,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(217311,40988,'blocks_6_split_5050_video',''),(217312,40988,'_blocks_6_split_5050_video','field_6239f3160848a'),(217313,40988,'blocks_6_split_5050_content_title',''),(217314,40988,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(217315,40988,'blocks_6_split_5050_content_heading','Rachel Frances Thomson'),(217316,40988,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(217317,40988,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(217318,40988,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(217319,40988,'blocks_6_split_5050_content_actions',''),(217320,40988,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(217321,40988,'blocks_6_split_5050_content',''),(217322,40988,'_blocks_6_split_5050_content','field_61767afceb8ba'),(217323,40988,'blocks_7_acfe_flexible_toggle',''),(217324,40988,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(217325,40988,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(217326,40988,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(217327,40988,'blocks_7_options_theme','#ffffff'),(217328,40988,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(217329,40988,'blocks_7_options_state','0'),(217330,40988,'_blocks_7_options_state','field_6239fcb7508c5'),(217331,40988,'blocks_7_options',''),(217332,40988,'_blocks_7_options','field_6177e2991ac44'),(217333,40988,'blocks_7_content_title',''),(217334,40988,'_blocks_7_content_title','field_64d237e8bb1e2'),(217335,40988,'blocks_7_content_heading','Frequently asked questions'),(217336,40988,'_blocks_7_content_heading','field_64d237e8bb1e3'),(217337,40988,'blocks_7_content_text',''),(217338,40988,'_blocks_7_content_text','field_64d237e8bb1e4'),(217339,40988,'blocks_7_content_actions',''),(217340,40988,'_blocks_7_content_actions','field_64d237e8bb1e5'),(217341,40988,'blocks_7_content_align','left'),(217342,40988,'_blocks_7_content_align','field_64d2443e6b6aa'),(217343,40988,'blocks_7_content',''),(217344,40988,'_blocks_7_content','field_64d237e8bb1e1'),(217345,40988,'blocks_7_accordion_content','faqs'),(217346,40988,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(217347,40988,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(217348,40988,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(217349,40988,'blocks_7_actions',''),(217350,40988,'_blocks_7_actions','field_61a746a817f7a'),(217351,40988,'blocks_8_acfe_flexible_toggle',''),(217352,40988,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(217353,40988,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(217354,40988,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(217355,40988,'blocks_8_options_alignment','center'),(217356,40988,'_blocks_8_options_alignment','field_61769449f5490'),(217357,40988,'blocks_8_options',''),(217358,40988,'_blocks_8_options','field_617693e1428f0'),(217359,40988,'blocks_8_promo_panel_image','39035'),(217360,40988,'_blocks_8_promo_panel_image','field_617693e1428f3'),(217361,40988,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(217362,40988,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(217363,40988,'blocks_8_promo_panel_content_text','Download a price guide today to receive an exclusive 10% off for all David Lloyd Personal Trainers.'),(217364,40988,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(217365,40988,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(217366,40988,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(217367,40988,'blocks_8_promo_panel_content_actions','1'),(217368,40988,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(217369,40988,'blocks_8_promo_panel_content',''),(217370,40988,'_blocks_8_promo_panel_content','field_617693e1428f4'),(217371,40988,'hide_hero','0'),(217372,40988,'_hide_hero','field_66a2380fcda39'),(217373,40988,'blocks_3_acfe_flexible_toggle',''),(217374,40988,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(217375,40988,'blocks_3_acfe_flexible_layout_title','Template'),(217376,40988,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(217377,40988,'blocks_3_template','40987'),(217378,40988,'_blocks_3_template','field_617bdd570fe01'),(217379,39066,'blocks_0_acfe_flexible_toggle',''),(217380,39066,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(217381,39066,'blocks_0_acfe_flexible_layout_title','Template'),(217382,39066,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(217383,39066,'blocks_0_template','39087'),(217384,39066,'_blocks_0_template','field_617bdd570fe01'),(217385,40989,'hero_style','default'),(217386,40989,'_hero_style','field_62051d9dc5324'),(217387,40989,'_thumbnail_id','39067'),(217388,40989,'__thumbnail_id','field_617570855ddaf'),(217389,40989,'hero_image_pos_x','right'),(217390,40989,'_hero_image_pos_x','field_62ec3d05390bb'),(217391,40989,'hero_image_pos_y','top'),(217392,40989,'_hero_image_pos_y','field_62ec3d05390bc'),(217393,40989,'hero_image_pos',''),(217394,40989,'_hero_image_pos','field_62ec3d05390ba'),(217395,40989,'hero_title','Courses'),(217396,40989,'_hero_title','field_617571fe285e8'),(217397,40989,'hero_text','Explore Industry-Leading Biomechanics Courses for Fitness Professionals'),(217398,40989,'_hero_text','field_6175723c285e9'),(217399,40989,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39066-2\";s:6:\"target\";s:0:\"\";}'),(217400,40989,'_hero_actions_0_button','field_61757281285eb'),(217401,40989,'hero_actions','1'),(217402,40989,'_hero_actions','field_61757270285ea'),(217403,40989,'hero_icon',''),(217404,40989,'_hero_icon','field_61a6182199d03'),(217405,40989,'fft_hide_from_listings','0'),(217406,40989,'_fft_hide_from_listings','field_61f1320446ab2'),(217407,40989,'fft_page_format','default'),(217408,40989,'_fft_page_format','field_61ae213f1f218'),(217409,40989,'fft_hide_nav','0'),(217410,40989,'_fft_hide_nav','field_635bd5e43527c'),(217411,40989,'fft_hide_header_call_to_action','0'),(217412,40989,'_fft_hide_header_call_to_action','field_635bd6723527d'),(217413,40989,'fft_page_sitemap','0'),(217414,40989,'_fft_page_sitemap','field_61af9b34e8181'),(217415,40989,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"cards\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:8:\"template\";}'),(217416,40989,'_blocks','field_6176696113096'),(217417,40989,'hide_hero','0'),(217418,40989,'_hide_hero','field_66a2380fcda39'),(217419,40989,'blocks_1_acfe_flexible_toggle',''),(217420,40989,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(217421,40989,'blocks_1_acfe_flexible_layout_title','Text Block'),(217422,40989,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(217423,40989,'blocks_1_options_theme','#ffffff'),(217424,40989,'_blocks_1_options_theme','field_6176830e2ad17'),(217425,40989,'blocks_1_options',''),(217426,40989,'_blocks_1_options','field_6176830e2ad16'),(217427,40989,'blocks_1_text_block_heading','Overview'),(217428,40989,'_blocks_1_text_block_heading','field_617669d413097'),(217429,40989,'blocks_1_text_block_content','Explore our diverse courses in biomechanics coaching to discover cutting-edge education. Enhance your skills with a choice of in-person and online CPDs. Opt for our comprehensive Diploma in Biomechanics Coaching, or elevate your career further with our Level 4 Personal Trainer and Biomechanics Coaching Diploma bundle. Biomechanics Education: Empowering your journey in fitness and coaching.'),(217430,40989,'_blocks_1_text_block_content','field_617669ec13098'),(217431,40989,'blocks_2_acfe_flexible_toggle',''),(217432,40989,'_blocks_2_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(217433,40989,'blocks_2_acfe_flexible_layout_title','Cards'),(217434,40989,'_blocks_2_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(217435,40989,'blocks_2_options_theme','#ffffff'),(217436,40989,'_blocks_2_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(217437,40989,'blocks_2_options_format','carousel'),(217438,40989,'_blocks_2_options_format','field_617a7b15245b5'),(217439,40989,'blocks_2_options_style','default'),(217440,40989,'_blocks_2_options_style','field_6278ffb63484a'),(217441,40989,'blocks_2_options_cards_current_listing','0'),(217442,40989,'_blocks_2_options_cards_current_listing','field_6193d7effb7a4'),(217443,40989,'blocks_2_options_cards_content','custom'),(217444,40989,'_blocks_2_options_cards_content','field_617aba6122688'),(217445,40989,'blocks_2_options',''),(217446,40989,'_blocks_2_options','field_617a7b15245b3'),(217447,40989,'blocks_2_cards_custom_0_image','38321'),(217448,40989,'_blocks_2_cards_custom_0_image','field_6194cc284d387'),(217449,40989,'blocks_2_cards_custom_0_title','CPD Courses'),(217450,40989,'_blocks_2_cards_custom_0_title','field_6194cc454d388'),(217451,40989,'blocks_2_cards_custom_0_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(217452,40989,'_blocks_2_cards_custom_0_text','field_6194cc4a4d389'),(217453,40989,'blocks_2_cards_custom_0_link','a:3:{s:5:\"title\";s:17:\"Find a CPD Course\";s:3:\"url\";s:54:\"https://biomechanicseducation.com/courses/cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(217454,40989,'_blocks_2_cards_custom_0_link','field_6194cc534d38a'),(217455,40989,'blocks_2_cards_custom_1_image','39047'),(217456,40989,'_blocks_2_cards_custom_1_image','field_6194cc284d387'),(217457,40989,'blocks_2_cards_custom_1_title','Diploma in Biomechanics Coaching'),(217458,40989,'_blocks_2_cards_custom_1_title','field_6194cc454d388'),(217459,40989,'blocks_2_cards_custom_1_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(217460,40989,'_blocks_2_cards_custom_1_text','field_6194cc4a4d389'),(217461,40989,'blocks_2_cards_custom_1_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:81:\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\";s:6:\"target\";s:0:\"\";}'),(217462,40989,'_blocks_2_cards_custom_1_link','field_6194cc534d38a'),(217463,40989,'blocks_2_cards_custom_2_image','39437'),(217464,40989,'_blocks_2_cards_custom_2_image','field_6194cc284d387'),(217465,40989,'blocks_2_cards_custom_2_title','Lvl 4 Personal Trainer with Biomechanics Diploma'),(217466,40989,'_blocks_2_cards_custom_2_title','field_6194cc454d388'),(217467,40989,'blocks_2_cards_custom_2_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(217468,40989,'_blocks_2_cards_custom_2_text','field_6194cc4a4d389'),(217469,40989,'blocks_2_cards_custom_2_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:87:\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\";s:6:\"target\";s:0:\"\";}'),(217470,40989,'_blocks_2_cards_custom_2_link','field_6194cc534d38a'),(217471,40989,'blocks_2_cards_custom','3'),(217472,40989,'_blocks_2_cards_custom','field_6194cbf84d386'),(217473,40989,'blocks_3_acfe_flexible_toggle',''),(217474,40989,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(217475,40989,'blocks_3_acfe_flexible_layout_title','Text Block'),(217476,40989,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(217477,40989,'blocks_3_options_theme','#ffffff'),(217478,40989,'_blocks_3_options_theme','field_6176830e2ad17'),(217479,40989,'blocks_3_options',''),(217480,40989,'_blocks_3_options','field_6176830e2ad16'),(217481,40989,'blocks_3_text_block_heading','Check Out Some of Our CPD Courses'),(217482,40989,'_blocks_3_text_block_heading','field_617669d413097'),(217483,40989,'blocks_3_text_block_content',''),(217484,40989,'_blocks_3_text_block_content','field_617669ec13098'),(217485,40989,'blocks_4_acfe_flexible_toggle',''),(217486,40989,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(217487,40989,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(217488,40989,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(217489,40989,'blocks_4_options_theme','#ffffff'),(217490,40989,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(217491,40989,'blocks_4_options',''),(217492,40989,'_blocks_4_options','field_617ac0b7f6c08'),(217493,40989,'blocks_4_show','category'),(217494,40989,'_blocks_4_show','field_61a49cba9d946'),(217495,40989,'blocks_4_category','403'),(217496,40989,'_blocks_4_category','field_61a49cd79d947'),(217497,40989,'blocks_5_acfe_flexible_toggle',''),(217498,40989,'_blocks_5_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(217499,40989,'blocks_5_acfe_flexible_layout_title','Template'),(217500,40989,'_blocks_5_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(217501,40989,'blocks_5_template','39207'),(217502,40989,'_blocks_5_template','field_617bdd570fe01'),(217503,40989,'blocks_4_open_whats_included','1'),(217504,40989,'_blocks_4_open_whats_included','field_66ebfd679450c'),(217505,40989,'blocks_4_open_key_information','0'),(217506,40989,'_blocks_4_open_key_information','field_66ebfd7f9450d'),(217507,40989,'blocks_4_open',''),(217508,40989,'_blocks_4_open','field_66ebfd009450b'),(217509,40989,'blocks_0_acfe_flexible_toggle',''),(217510,40989,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(217511,40989,'blocks_0_acfe_flexible_layout_title','Template'),(217512,40989,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(217513,40989,'blocks_0_template','39087'),(217514,40989,'_blocks_0_template','field_617bdd570fe01'),(217515,40778,'blocks_7_acfe_flexible_toggle',''),(217516,40778,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(217517,40778,'blocks_7_acfe_flexible_layout_title','Template'),(217518,40778,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(217519,40778,'blocks_7_template','40987'),(217520,40778,'_blocks_7_template','field_617bdd570fe01'),(217521,40990,'hide_hero','0'),(217522,40990,'_hide_hero','field_66a2380fcda39'),(217523,40990,'hero_title','Diploma in Biomechanics Coaching'),(217524,40990,'_hero_title','field_617571fe285e8'),(217525,40990,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(217526,40990,'_hero_text','field_6175723c285e9'),(217527,40990,'hero_actions','1'),(217528,40990,'_hero_actions','field_61757270285ea'),(217529,40990,'hero_style','default'),(217530,40990,'_hero_style','field_62051d9dc5324'),(217531,40990,'hero_image_pos_x','right'),(217532,40990,'_hero_image_pos_x','field_62ec3d05390bb'),(217533,40990,'hero_image_pos_y','top'),(217534,40990,'_hero_image_pos_y','field_62ec3d05390bc'),(217535,40990,'hero_image_pos',''),(217536,40990,'_hero_image_pos','field_62ec3d05390ba'),(217537,40990,'fft_hide_from_listings','0'),(217538,40990,'_fft_hide_from_listings','field_61f1320446ab2'),(217539,40990,'fft_page_format','default'),(217540,40990,'_fft_page_format','field_61ae213f1f218'),(217541,40990,'fft_hide_nav','0'),(217542,40990,'_fft_hide_nav','field_635bd5e43527c'),(217543,40990,'fft_hide_header_call_to_action','0'),(217544,40990,'_fft_hide_header_call_to_action','field_635bd6723527d'),(217545,40990,'fft_page_sitemap','0'),(217546,40990,'_fft_page_sitemap','field_61af9b34e8181'),(217547,40990,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:5:\"icons\";i:6;s:10:\"split_5050\";i:7;s:8:\"template\";i:8;s:10:\"accordions\";}'),(217548,40990,'_blocks','field_6176696113096'),(217549,40990,'course_label_text',''),(217550,40990,'_course_label_text','field_61e17babf71fa'),(217551,40990,'course_label',''),(217552,40990,'_course_label','field_61e12f92749a7'),(217553,40990,'course_description',''),(217554,40990,'_course_description','field_617ac5788e5e1'),(217555,40990,'course_key_info',''),(217556,40990,'_course_key_info','field_617ac6ad8e5e2'),(217557,40990,'course_included',''),(217558,40990,'_course_included','field_617ac6f08e5e4'),(217559,40990,'_thumbnail_id','40863'),(217560,40990,'__thumbnail_id','field_617570855ddaf'),(217561,40990,'blocks_0_acfe_flexible_toggle',''),(217562,40990,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(217563,40990,'blocks_0_acfe_flexible_layout_title','Template'),(217564,40990,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(217565,40990,'blocks_0_template','39087'),(217566,40990,'_blocks_0_template','field_617bdd570fe01'),(217567,40990,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(217568,40990,'_hero_actions_0_button','field_61757281285eb'),(217569,40990,'blocks_1_acfe_flexible_toggle',''),(217570,40990,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(217571,40990,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(217572,40990,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(217573,40990,'blocks_1_options_theme','#ffffff'),(217574,40990,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(217575,40990,'blocks_1_options_reverse','0'),(217576,40990,'_blocks_1_options_reverse','field_61768049bb8ac'),(217577,40990,'blocks_1_options',''),(217578,40990,'_blocks_1_options','field_617682517c334'),(217579,40990,'blocks_1_split_5050_image','40866'),(217580,40990,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(217581,40990,'blocks_1_split_5050_video',''),(217582,40990,'_blocks_1_split_5050_video','field_6239f3160848a'),(217583,40990,'blocks_1_split_5050_content_title',''),(217584,40990,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(217585,40990,'blocks_1_split_5050_content_heading','Course Overview'),(217586,40990,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(217587,40990,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(217588,40990,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(217589,40990,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(217590,40990,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(217591,40990,'blocks_1_split_5050_content_actions','1'),(217592,40990,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(217593,40990,'blocks_1_split_5050_content',''),(217594,40990,'_blocks_1_split_5050_content','field_61767afceb8ba'),(217595,40990,'blocks_2_acfe_flexible_toggle',''),(217596,40990,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(217597,40990,'blocks_2_acfe_flexible_layout_title','Form'),(217598,40990,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(217599,40990,'blocks_2_row_content_format','standard'),(217600,40990,'_blocks_2_row_content_format','field_6481ead962881'),(217601,40990,'blocks_2_row_content_title',''),(217602,40990,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(217603,40990,'blocks_2_row_content_heading','Enquire Today'),(217604,40990,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(217605,40990,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(217606,40990,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(217607,40990,'blocks_2_row_content_actions',''),(217608,40990,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(217609,40990,'blocks_2_row_content',''),(217610,40990,'_blocks_2_row_content','field_61a0f5f5b3db0'),(217611,40990,'blocks_2_row_form','40394'),(217612,40990,'_blocks_2_row_form','field_61a4ff2c0b08e'),(217613,40990,'blocks_2_row_form_button_label',''),(217614,40990,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(217615,40990,'blocks_3_acfe_flexible_toggle',''),(217616,40990,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(217617,40990,'blocks_3_acfe_flexible_layout_title','Video'),(217618,40990,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(217619,40990,'blocks_3_size','large'),(217620,40990,'_blocks_3_size','field_6487038f297c1'),(217621,40990,'blocks_3_row_content_title',''),(217622,40990,'_blocks_3_row_content_title','field_64870132a865d'),(217623,40990,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(217624,40990,'_blocks_3_row_content_heading','field_64870142a865e'),(217625,40990,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(217626,40990,'_blocks_3_row_content_text','field_64870148a865f'),(217627,40990,'blocks_3_row_content',''),(217628,40990,'_blocks_3_row_content','field_6487008ba865c'),(217629,40990,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(217630,40990,'_blocks_3_video_src','field_6193c4a98ec07'),(217631,40990,'blocks_3_video_thumbnail',''),(217632,40990,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(217633,40990,'blocks_4_acfe_flexible_toggle',''),(217634,40990,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(217635,40990,'blocks_4_acfe_flexible_layout_title','Tabs'),(217636,40990,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(217637,40990,'blocks_4_options_theme','#ffffff'),(217638,40990,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(217639,40990,'blocks_4_options',''),(217640,40990,'_blocks_4_options','field_6177cfcd8140f'),(217641,40990,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(217642,40990,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(217643,40990,'blocks_4_tabs_0_tab_content_title',''),(217644,40990,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(217645,40990,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(217646,40990,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(217647,40990,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(217648,40990,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(217649,40990,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(217650,40990,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(217651,40990,'blocks_4_tabs_0_tab_content_actions','1'),(217652,40990,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(217653,40990,'blocks_4_tabs_0_tab_content',''),(217654,40990,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(217655,40990,'blocks_4_tabs_0_tab_image','40869'),(217656,40990,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(217657,40990,'blocks_4_tabs_1_tab_label','Entry requirements'),(217658,40990,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(217659,40990,'blocks_4_tabs_1_tab_content_title',''),(217660,40990,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(217661,40990,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(217662,40990,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(217663,40990,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(217664,40990,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(217665,40990,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(217666,40990,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(217667,40990,'blocks_4_tabs_1_tab_content_actions','1'),(217668,40990,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(217669,40990,'blocks_4_tabs_1_tab_content',''),(217670,40990,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(217671,40990,'blocks_4_tabs_1_tab_image','40870'),(217672,40990,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(217673,40990,'blocks_4_tabs','2'),(217674,40990,'_blocks_4_tabs','field_6177cff281419'),(217675,40990,'blocks_5_acfe_flexible_toggle',''),(217676,40990,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(217677,40990,'blocks_5_acfe_flexible_layout_title','Icons'),(217678,40990,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(217679,40990,'blocks_5_options_theme','#b61234'),(217680,40990,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(217681,40990,'blocks_5_options_format','stacked'),(217682,40990,'_blocks_5_options_format','field_64bfde9a90690'),(217683,40990,'blocks_5_options',''),(217684,40990,'_blocks_5_options','field_64bfdd9b90684'),(217685,40990,'blocks_5_row_content_title',''),(217686,40990,'_blocks_5_row_content_title','field_64bfdd9b90687'),(217687,40990,'blocks_5_row_content_heading','Fees & Funding Options '),(217688,40990,'_blocks_5_row_content_heading','field_64bfdd9b90688'),(217689,40990,'blocks_5_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(217690,40990,'_blocks_5_row_content_text','field_64bfdd9b90689'),(217691,40990,'blocks_5_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(217692,40990,'_blocks_5_row_content_actions_0_button','field_64bfdd9b9068b'),(217693,40990,'blocks_5_row_content_actions','1'),(217694,40990,'_blocks_5_row_content_actions','field_64bfdd9b9068a'),(217695,40990,'blocks_5_row_content',''),(217696,40990,'_blocks_5_row_content','field_64bfdd9b90686'),(217697,40990,'blocks_5_icon_row_items_0_icon','finance.svg'),(217698,40990,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(217699,40990,'blocks_5_icon_row_items_0_label','Pay in full'),(217700,40990,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(217701,40990,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(217702,40990,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(217703,40990,'blocks_5_icon_row_items_1_icon','pass-rate.svg'),(217704,40990,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(217705,40990,'blocks_5_icon_row_items_1_label','0% finance'),(217706,40990,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(217707,40990,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(217708,40990,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(217709,40990,'blocks_5_icon_row_items_2_icon','28-years.svg'),(217710,40990,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(217711,40990,'blocks_5_icon_row_items_2_label','Deposit & balance'),(217712,40990,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(217713,40990,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(217714,40990,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(217715,40990,'blocks_5_icon_row_items','3'),(217716,40990,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(217717,40990,'blocks_6_acfe_flexible_toggle',''),(217718,40990,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(217719,40990,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(217720,40990,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(217721,40990,'blocks_6_options_theme','#ffffff'),(217722,40990,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(217723,40990,'blocks_6_options_reverse','0'),(217724,40990,'_blocks_6_options_reverse','field_61768049bb8ac'),(217725,40990,'blocks_6_options',''),(217726,40990,'_blocks_6_options','field_617682517c334'),(217727,40990,'blocks_6_split_5050_image','39224'),(217728,40990,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(217729,40990,'blocks_6_split_5050_video',''),(217730,40990,'_blocks_6_split_5050_video','field_6239f3160848a'),(217731,40990,'blocks_6_split_5050_content_title',''),(217732,40990,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(217733,40990,'blocks_6_split_5050_content_heading','Locations'),(217734,40990,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(217735,40990,'blocks_6_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(217736,40990,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(217737,40990,'blocks_6_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(217738,40990,'_blocks_6_split_5050_content_actions_0_button','field_61767b72eb8be'),(217739,40990,'blocks_6_split_5050_content_actions','1'),(217740,40990,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(217741,40990,'blocks_6_split_5050_content',''),(217742,40990,'_blocks_6_split_5050_content','field_61767afceb8ba'),(217743,40990,'blocks_8_acfe_flexible_toggle',''),(217744,40990,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(217745,40990,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(217746,40990,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(217747,40990,'blocks_8_options_theme','#ffffff'),(217748,40990,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(217749,40990,'blocks_8_options_state','0'),(217750,40990,'_blocks_8_options_state','field_6239fcb7508c5'),(217751,40990,'blocks_8_options',''),(217752,40990,'_blocks_8_options','field_6177e2991ac44'),(217753,40990,'blocks_8_content_title',''),(217754,40990,'_blocks_8_content_title','field_64d237e8bb1e2'),(217755,40990,'blocks_8_content_heading','FAQ\'s'),(217756,40990,'_blocks_8_content_heading','field_64d237e8bb1e3'),(217757,40990,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 01329 829444'),(217758,40990,'_blocks_8_content_text','field_64d237e8bb1e4'),(217759,40990,'blocks_8_content_actions',''),(217760,40990,'_blocks_8_content_actions','field_64d237e8bb1e5'),(217761,40990,'blocks_8_content_align','left'),(217762,40990,'_blocks_8_content_align','field_64d2443e6b6aa'),(217763,40990,'blocks_8_content',''),(217764,40990,'_blocks_8_content','field_64d237e8bb1e1'),(217765,40990,'blocks_8_accordion_content','faqs'),(217766,40990,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(217767,40990,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(217768,40990,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(217769,40990,'blocks_8_actions',''),(217770,40990,'_blocks_8_actions','field_61a746a817f7a'),(217771,40990,'blocks_7_acfe_flexible_toggle',''),(217772,40990,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(217773,40990,'blocks_7_acfe_flexible_layout_title','Template'),(217774,40990,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(217775,40990,'blocks_7_template','40987'),(217776,40990,'_blocks_7_template','field_617bdd570fe01'),(217777,40991,'hide_hero','0'),(217778,40991,'_hide_hero','field_66a2380fcda39'),(217779,40991,'hero_title','Diploma in Biomechanics Coaching'),(217780,40991,'_hero_title','field_617571fe285e8'),(217781,40991,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(217782,40991,'_hero_text','field_6175723c285e9'),(217783,40991,'hero_actions','1'),(217784,40991,'_hero_actions','field_61757270285ea'),(217785,40991,'hero_style','default'),(217786,40991,'_hero_style','field_62051d9dc5324'),(217787,40991,'hero_image_pos_x','right'),(217788,40991,'_hero_image_pos_x','field_62ec3d05390bb'),(217789,40991,'hero_image_pos_y','top'),(217790,40991,'_hero_image_pos_y','field_62ec3d05390bc'),(217791,40991,'hero_image_pos',''),(217792,40991,'_hero_image_pos','field_62ec3d05390ba'),(217793,40991,'fft_hide_from_listings','0'),(217794,40991,'_fft_hide_from_listings','field_61f1320446ab2'),(217795,40991,'fft_page_format','default'),(217796,40991,'_fft_page_format','field_61ae213f1f218'),(217797,40991,'fft_hide_nav','0'),(217798,40991,'_fft_hide_nav','field_635bd5e43527c'),(217799,40991,'fft_hide_header_call_to_action','0'),(217800,40991,'_fft_hide_header_call_to_action','field_635bd6723527d'),(217801,40991,'fft_page_sitemap','0'),(217802,40991,'_fft_page_sitemap','field_61af9b34e8181'),(217803,40991,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:5:\"icons\";i:6;s:10:\"split_5050\";i:7;s:8:\"template\";i:8;s:10:\"accordions\";}'),(217804,40991,'_blocks','field_6176696113096'),(217805,40991,'course_label_text',''),(217806,40991,'_course_label_text','field_61e17babf71fa'),(217807,40991,'course_label',''),(217808,40991,'_course_label','field_61e12f92749a7'),(217809,40991,'course_description',''),(217810,40991,'_course_description','field_617ac5788e5e1'),(217811,40991,'course_key_info',''),(217812,40991,'_course_key_info','field_617ac6ad8e5e2'),(217813,40991,'course_included',''),(217814,40991,'_course_included','field_617ac6f08e5e4'),(217815,40991,'_thumbnail_id','40863'),(217816,40991,'__thumbnail_id','field_617570855ddaf'),(217817,40991,'blocks_0_acfe_flexible_toggle',''),(217818,40991,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(217819,40991,'blocks_0_acfe_flexible_layout_title','Template'),(217820,40991,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(217821,40991,'blocks_0_template','39087'),(217822,40991,'_blocks_0_template','field_617bdd570fe01'),(217823,40991,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(217824,40991,'_hero_actions_0_button','field_61757281285eb'),(217825,40991,'blocks_1_acfe_flexible_toggle',''),(217826,40991,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(217827,40991,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(217828,40991,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(217829,40991,'blocks_1_options_theme','#ffffff'),(217830,40991,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(217831,40991,'blocks_1_options_reverse','0'),(217832,40991,'_blocks_1_options_reverse','field_61768049bb8ac'),(217833,40991,'blocks_1_options',''),(217834,40991,'_blocks_1_options','field_617682517c334'),(217835,40991,'blocks_1_split_5050_image','40866'),(217836,40991,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(217837,40991,'blocks_1_split_5050_video',''),(217838,40991,'_blocks_1_split_5050_video','field_6239f3160848a'),(217839,40991,'blocks_1_split_5050_content_title',''),(217840,40991,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(217841,40991,'blocks_1_split_5050_content_heading','Course Overview'),(217842,40991,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(217843,40991,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(217844,40991,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(217845,40991,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(217846,40991,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(217847,40991,'blocks_1_split_5050_content_actions','1'),(217848,40991,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(217849,40991,'blocks_1_split_5050_content',''),(217850,40991,'_blocks_1_split_5050_content','field_61767afceb8ba'),(217851,40991,'blocks_2_acfe_flexible_toggle',''),(217852,40991,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(217853,40991,'blocks_2_acfe_flexible_layout_title','Form'),(217854,40991,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(217855,40991,'blocks_2_row_content_format','standard'),(217856,40991,'_blocks_2_row_content_format','field_6481ead962881'),(217857,40991,'blocks_2_row_content_title',''),(217858,40991,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(217859,40991,'blocks_2_row_content_heading','Enquire Today'),(217860,40991,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(217861,40991,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(217862,40991,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(217863,40991,'blocks_2_row_content_actions',''),(217864,40991,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(217865,40991,'blocks_2_row_content',''),(217866,40991,'_blocks_2_row_content','field_61a0f5f5b3db0'),(217867,40991,'blocks_2_row_form','40394'),(217868,40991,'_blocks_2_row_form','field_61a4ff2c0b08e'),(217869,40991,'blocks_2_row_form_button_label',''),(217870,40991,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(217871,40991,'blocks_3_acfe_flexible_toggle',''),(217872,40991,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(217873,40991,'blocks_3_acfe_flexible_layout_title','Video'),(217874,40991,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(217875,40991,'blocks_3_size','large'),(217876,40991,'_blocks_3_size','field_6487038f297c1'),(217877,40991,'blocks_3_row_content_title',''),(217878,40991,'_blocks_3_row_content_title','field_64870132a865d'),(217879,40991,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(217880,40991,'_blocks_3_row_content_heading','field_64870142a865e'),(217881,40991,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(217882,40991,'_blocks_3_row_content_text','field_64870148a865f'),(217883,40991,'blocks_3_row_content',''),(217884,40991,'_blocks_3_row_content','field_6487008ba865c'),(217885,40991,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(217886,40991,'_blocks_3_video_src','field_6193c4a98ec07'),(217887,40991,'blocks_3_video_thumbnail',''),(217888,40991,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(217889,40991,'blocks_4_acfe_flexible_toggle',''),(217890,40991,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(217891,40991,'blocks_4_acfe_flexible_layout_title','Tabs'),(217892,40991,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(217893,40991,'blocks_4_options_theme','#ffffff'),(217894,40991,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(217895,40991,'blocks_4_options',''),(217896,40991,'_blocks_4_options','field_6177cfcd8140f'),(217897,40991,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(217898,40991,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(217899,40991,'blocks_4_tabs_0_tab_content_title',''),(217900,40991,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(217901,40991,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(217902,40991,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(217903,40991,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(217904,40991,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(217905,40991,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(217906,40991,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(217907,40991,'blocks_4_tabs_0_tab_content_actions','1'),(217908,40991,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(217909,40991,'blocks_4_tabs_0_tab_content',''),(217910,40991,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(217911,40991,'blocks_4_tabs_0_tab_image','40869'),(217912,40991,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(217913,40991,'blocks_4_tabs_1_tab_label','Entry requirements'),(217914,40991,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(217915,40991,'blocks_4_tabs_1_tab_content_title',''),(217916,40991,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(217917,40991,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(217918,40991,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(217919,40991,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(217920,40991,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(217921,40991,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(217922,40991,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(217923,40991,'blocks_4_tabs_1_tab_content_actions','1'),(217924,40991,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(217925,40991,'blocks_4_tabs_1_tab_content',''),(217926,40991,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(217927,40991,'blocks_4_tabs_1_tab_image','40870'),(217928,40991,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(217929,40991,'blocks_4_tabs','2'),(217930,40991,'_blocks_4_tabs','field_6177cff281419'),(217931,40991,'blocks_5_acfe_flexible_toggle',''),(217932,40991,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(217933,40991,'blocks_5_acfe_flexible_layout_title','Icons'),(217934,40991,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(217935,40991,'blocks_5_options_theme','#b61234'),(217936,40991,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(217937,40991,'blocks_5_options_format','stacked'),(217938,40991,'_blocks_5_options_format','field_64bfde9a90690'),(217939,40991,'blocks_5_options',''),(217940,40991,'_blocks_5_options','field_64bfdd9b90684'),(217941,40991,'blocks_5_row_content_title',''),(217942,40991,'_blocks_5_row_content_title','field_64bfdd9b90687'),(217943,40991,'blocks_5_row_content_heading','Fees & Funding Options '),(217944,40991,'_blocks_5_row_content_heading','field_64bfdd9b90688'),(217945,40991,'blocks_5_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(217946,40991,'_blocks_5_row_content_text','field_64bfdd9b90689'),(217947,40991,'blocks_5_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(217948,40991,'_blocks_5_row_content_actions_0_button','field_64bfdd9b9068b'),(217949,40991,'blocks_5_row_content_actions','1'),(217950,40991,'_blocks_5_row_content_actions','field_64bfdd9b9068a'),(217951,40991,'blocks_5_row_content',''),(217952,40991,'_blocks_5_row_content','field_64bfdd9b90686'),(217953,40991,'blocks_5_icon_row_items_0_icon','finance.svg'),(217954,40991,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(217955,40991,'blocks_5_icon_row_items_0_label','Pay in full'),(217956,40991,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(217957,40991,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(217958,40991,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(217959,40991,'blocks_5_icon_row_items_1_icon','pass-rate.svg'),(217960,40991,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(217961,40991,'blocks_5_icon_row_items_1_label','0% finance'),(217962,40991,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(217963,40991,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(217964,40991,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(217965,40991,'blocks_5_icon_row_items_2_icon','28-years.svg'),(217966,40991,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(217967,40991,'blocks_5_icon_row_items_2_label','Deposit & balance'),(217968,40991,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(217969,40991,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(217970,40991,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(217971,40991,'blocks_5_icon_row_items','3'),(217972,40991,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(217973,40991,'blocks_6_acfe_flexible_toggle',''),(217974,40991,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(217975,40991,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(217976,40991,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(217977,40991,'blocks_6_options_theme','#ffffff'),(217978,40991,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(217979,40991,'blocks_6_options_reverse','0'),(217980,40991,'_blocks_6_options_reverse','field_61768049bb8ac'),(217981,40991,'blocks_6_options',''),(217982,40991,'_blocks_6_options','field_617682517c334'),(217983,40991,'blocks_6_split_5050_image','39224'),(217984,40991,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(217985,40991,'blocks_6_split_5050_video',''),(217986,40991,'_blocks_6_split_5050_video','field_6239f3160848a'),(217987,40991,'blocks_6_split_5050_content_title',''),(217988,40991,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(217989,40991,'blocks_6_split_5050_content_heading','Locations'),(217990,40991,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(217991,40991,'blocks_6_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(217992,40991,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(217993,40991,'blocks_6_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(217994,40991,'_blocks_6_split_5050_content_actions_0_button','field_61767b72eb8be'),(217995,40991,'blocks_6_split_5050_content_actions','1'),(217996,40991,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(217997,40991,'blocks_6_split_5050_content',''),(217998,40991,'_blocks_6_split_5050_content','field_61767afceb8ba'),(217999,40991,'blocks_8_acfe_flexible_toggle',''),(218000,40991,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(218001,40991,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(218002,40991,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(218003,40991,'blocks_8_options_theme','#ffffff'),(218004,40991,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(218005,40991,'blocks_8_options_state','0'),(218006,40991,'_blocks_8_options_state','field_6239fcb7508c5'),(218007,40991,'blocks_8_options',''),(218008,40991,'_blocks_8_options','field_6177e2991ac44'),(218009,40991,'blocks_8_content_title',''),(218010,40991,'_blocks_8_content_title','field_64d237e8bb1e2'),(218011,40991,'blocks_8_content_heading','FAQ\'s'),(218012,40991,'_blocks_8_content_heading','field_64d237e8bb1e3'),(218013,40991,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(218014,40991,'_blocks_8_content_text','field_64d237e8bb1e4'),(218015,40991,'blocks_8_content_actions',''),(218016,40991,'_blocks_8_content_actions','field_64d237e8bb1e5'),(218017,40991,'blocks_8_content_align','left'),(218018,40991,'_blocks_8_content_align','field_64d2443e6b6aa'),(218019,40991,'blocks_8_content',''),(218020,40991,'_blocks_8_content','field_64d237e8bb1e1'),(218021,40991,'blocks_8_accordion_content','faqs'),(218022,40991,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(218023,40991,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(218024,40991,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(218025,40991,'blocks_8_actions',''),(218026,40991,'_blocks_8_actions','field_61a746a817f7a'),(218027,40991,'blocks_7_acfe_flexible_toggle',''),(218028,40991,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(218029,40991,'blocks_7_acfe_flexible_layout_title','Template'),(218030,40991,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(218031,40991,'blocks_7_template','40987'),(218032,40991,'_blocks_7_template','field_617bdd570fe01'),(218039,40992,'hide_hero','0'),(218040,40992,'_hide_hero','field_66a2380fcda39'),(218041,40992,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(218042,40992,'_hero_title','field_617571fe285e8'),(218043,40992,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(218044,40992,'_hero_text','field_6175723c285e9'),(218045,40992,'hero_actions','1'),(218046,40992,'_hero_actions','field_61757270285ea'),(218047,40992,'hero_style','default'),(218048,40992,'_hero_style','field_62051d9dc5324'),(218049,40992,'_thumbnail_id','40848'),(218050,40992,'__thumbnail_id','field_617570855ddaf'),(218051,40992,'hero_image_pos_x','right'),(218052,40992,'_hero_image_pos_x','field_62ec3d05390bb'),(218053,40992,'hero_image_pos_y','top'),(218054,40992,'_hero_image_pos_y','field_62ec3d05390bc'),(218055,40992,'hero_image_pos',''),(218056,40992,'_hero_image_pos','field_62ec3d05390ba'),(218057,40992,'fft_hide_from_listings','0'),(218058,40992,'_fft_hide_from_listings','field_61f1320446ab2'),(218059,40992,'fft_page_format','default'),(218060,40992,'_fft_page_format','field_61ae213f1f218'),(218061,40992,'fft_hide_nav','0'),(218062,40992,'_fft_hide_nav','field_635bd5e43527c'),(218063,40992,'fft_hide_header_call_to_action','0'),(218064,40992,'_fft_hide_header_call_to_action','field_635bd6723527d'),(218065,40992,'fft_page_sitemap','0'),(218066,40992,'_fft_page_sitemap','field_61af9b34e8181'),(218067,40992,'blocks','a:15:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";i:13;s:8:\"template\";i:14;s:10:\"accordions\";}'),(218068,40992,'_blocks','field_6176696113096'),(218069,40992,'course_label_text',''),(218070,40992,'_course_label_text','field_61e17babf71fa'),(218071,40992,'course_label',''),(218072,40992,'_course_label','field_61e12f92749a7'),(218073,40992,'course_description',''),(218074,40992,'_course_description','field_617ac5788e5e1'),(218075,40992,'course_key_info',''),(218076,40992,'_course_key_info','field_617ac6ad8e5e2'),(218077,40992,'course_included',''),(218078,40992,'_course_included','field_617ac6f08e5e4'),(218079,40992,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(218080,40992,'_hero_actions_0_button','field_61757281285eb'),(218081,40992,'blocks_0_acfe_flexible_toggle',''),(218082,40992,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(218083,40992,'blocks_0_acfe_flexible_layout_title','Icons'),(218084,40992,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(218085,40992,'blocks_0_options_theme','#b61234'),(218086,40992,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(218087,40992,'blocks_0_options_format','row'),(218088,40992,'_blocks_0_options_format','field_64bfde9a90690'),(218089,40992,'blocks_0_options',''),(218090,40992,'_blocks_0_options','field_64bfdd9b90684'),(218091,40992,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(218092,40992,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(218093,40992,'blocks_0_icon_row_items_0_label','Accreditation'),(218094,40992,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(218095,40992,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(218096,40992,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(218097,40992,'blocks_0_icon_row_items_1_icon','finance.svg'),(218098,40992,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(218099,40992,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(218100,40992,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(218101,40992,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(218102,40992,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(218103,40992,'blocks_0_icon_row_items_2_icon','progression.svg'),(218104,40992,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(218105,40992,'blocks_0_icon_row_items_2_label','Earning Potential'),(218106,40992,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(218107,40992,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(218108,40992,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(218109,40992,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(218110,40992,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(218111,40992,'blocks_0_icon_row_items_3_label','Qualification'),(218112,40992,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(218113,40992,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(218114,40992,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(218115,40992,'blocks_0_icon_row_items','4'),(218116,40992,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(218117,40992,'blocks_5_acfe_flexible_toggle','1'),(218118,40992,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(218119,40992,'blocks_5_acfe_flexible_layout_title','Tabs'),(218120,40992,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(218121,40992,'blocks_5_options_theme','#ffffff'),(218122,40992,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(218123,40992,'blocks_5_options',''),(218124,40992,'_blocks_5_options','field_6177cfcd8140f'),(218125,40992,'blocks_5_tabs_0_tab_label','Entry requirements'),(218126,40992,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(218127,40992,'blocks_5_tabs_0_tab_content_title',''),(218128,40992,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(218129,40992,'blocks_5_tabs_0_tab_content_heading',''),(218130,40992,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(218131,40992,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(218132,40992,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(218133,40992,'blocks_5_tabs_0_tab_content_actions',''),(218134,40992,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(218135,40992,'blocks_5_tabs_0_tab_content',''),(218136,40992,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(218137,40992,'blocks_5_tabs_0_tab_image',''),(218138,40992,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(218139,40992,'blocks_5_tabs_1_tab_label','Learning format'),(218140,40992,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(218141,40992,'blocks_5_tabs_1_tab_content_title',''),(218142,40992,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(218143,40992,'blocks_5_tabs_1_tab_content_heading',''),(218144,40992,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(218145,40992,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(218146,40992,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(218147,40992,'blocks_5_tabs_1_tab_content_actions',''),(218148,40992,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(218149,40992,'blocks_5_tabs_1_tab_content',''),(218150,40992,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(218151,40992,'blocks_5_tabs_1_tab_image',''),(218152,40992,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(218153,40992,'blocks_5_tabs_2_tab_label','Qualifications included'),(218154,40992,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(218155,40992,'blocks_5_tabs_2_tab_content_title',''),(218156,40992,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(218157,40992,'blocks_5_tabs_2_tab_content_heading',''),(218158,40992,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(218159,40992,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(218160,40992,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(218161,40992,'blocks_5_tabs_2_tab_content_actions',''),(218162,40992,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(218163,40992,'blocks_5_tabs_2_tab_content',''),(218164,40992,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(218165,40992,'blocks_5_tabs_2_tab_image',''),(218166,40992,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(218167,40992,'blocks_5_tabs','3'),(218168,40992,'_blocks_5_tabs','field_6177cff281419'),(218169,40992,'blocks_4_acfe_flexible_toggle',''),(218170,40992,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(218171,40992,'blocks_4_acfe_flexible_layout_title','Template'),(218172,40992,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(218173,40992,'blocks_4_template','39207'),(218174,40992,'_blocks_4_template','field_617bdd570fe01'),(218175,40992,'blocks_6_acfe_flexible_toggle',''),(218176,40992,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(218177,40992,'blocks_6_acfe_flexible_layout_title','Icons'),(218178,40992,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(218179,40992,'blocks_6_options_theme','#f5f5f5'),(218180,40992,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(218181,40992,'blocks_6_options_format','stacked'),(218182,40992,'_blocks_6_options_format','field_64bfde9a90690'),(218183,40992,'blocks_6_options',''),(218184,40992,'_blocks_6_options','field_64bfdd9b90684'),(218185,40992,'blocks_6_row_content_title','Options available to pay for your course'),(218186,40992,'_blocks_6_row_content_title','field_64bfdd9b90687'),(218187,40992,'blocks_6_row_content_heading','Payment Options'),(218188,40992,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(218189,40992,'blocks_6_row_content_text','Training for a new career is a big investment and with all things, in life, you tend to get what you pay for.\r\n\r\nAt Biomechanics Education, we make it easy and affordable for you to achieve your dream career without comprising the quality of your learning experience or more importantly, your future career! We offer a variety of payment options to start including'),(218190,40992,'_blocks_6_row_content_text','field_64bfdd9b90689'),(218191,40992,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(218192,40992,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(218193,40992,'blocks_6_row_content_actions','1'),(218194,40992,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(218195,40992,'blocks_6_row_content',''),(218196,40992,'_blocks_6_row_content','field_64bfdd9b90686'),(218197,40992,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(218198,40992,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(218199,40992,'blocks_6_icon_row_items_0_label','Pay your course in full'),(218200,40992,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(218201,40992,'blocks_6_icon_row_items_0_text',' all our CPD courses can be purchased through in full'),(218202,40992,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(218203,40992,'blocks_6_icon_row_items_1_icon','pass-rate.svg'),(218204,40992,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(218205,40992,'blocks_6_icon_row_items_1_label','Flexible payment schemes'),(218206,40992,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(218207,40992,'blocks_6_icon_row_items_1_text','pay a deposit and then the balance, pay as you learn, pay by company invoice or finance through OMNI (only available on selected courses)'),(218208,40992,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(218209,40992,'blocks_6_icon_row_items','2'),(218210,40992,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(218211,40992,'blocks_7_acfe_flexible_toggle',''),(218212,40992,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(218213,40992,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(218214,40992,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(218215,40992,'blocks_7_options_theme','#ffffff'),(218216,40992,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(218217,40992,'blocks_7_options_reverse','0'),(218218,40992,'_blocks_7_options_reverse','field_61768049bb8ac'),(218219,40992,'blocks_7_options',''),(218220,40992,'_blocks_7_options','field_617682517c334'),(218221,40992,'blocks_7_split_5050_image','40817'),(218222,40992,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(218223,40992,'blocks_7_split_5050_video',''),(218224,40992,'_blocks_7_split_5050_video','field_6239f3160848a'),(218225,40992,'blocks_7_split_5050_content_title',''),(218226,40992,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(218227,40992,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(218228,40992,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(218229,40992,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(218230,40992,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(218231,40992,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(218232,40992,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(218233,40992,'blocks_7_split_5050_content_actions','1'),(218234,40992,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(218235,40992,'blocks_7_split_5050_content',''),(218236,40992,'_blocks_7_split_5050_content','field_61767afceb8ba'),(218237,40992,'blocks_8_acfe_flexible_toggle',''),(218238,40992,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(218239,40992,'blocks_8_acfe_flexible_layout_title','Icons'),(218240,40992,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(218241,40992,'blocks_8_options_theme','#f5f5f5'),(218242,40992,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(218243,40992,'blocks_8_options_format','row'),(218244,40992,'_blocks_8_options_format','field_64bfde9a90690'),(218245,40992,'blocks_8_options',''),(218246,40992,'_blocks_8_options','field_64bfdd9b90684'),(218247,40992,'blocks_8_icon_row_items_0_icon','qualification.svg'),(218248,40992,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(218249,40992,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(218250,40992,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(218251,40992,'blocks_8_icon_row_items_0_text',''),(218252,40992,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(218253,40992,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(218254,40992,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(218255,40992,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(218256,40992,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(218257,40992,'blocks_8_icon_row_items_1_text',''),(218258,40992,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(218259,40992,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(218260,40992,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(218261,40992,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(218262,40992,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(218263,40992,'blocks_8_icon_row_items_2_text',''),(218264,40992,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(218265,40992,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(218266,40992,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(218267,40992,'blocks_8_icon_row_items_3_label','Flexible funding options'),(218268,40992,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(218269,40992,'blocks_8_icon_row_items_3_text',''),(218270,40992,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(218271,40992,'blocks_8_icon_row_items','4'),(218272,40992,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(218273,40992,'blocks_9_acfe_flexible_toggle',''),(218274,40992,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(218275,40992,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(218276,40992,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(218277,40992,'blocks_9_options_theme','#ffffff'),(218278,40992,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(218279,40992,'blocks_9_options_reverse','1'),(218280,40992,'_blocks_9_options_reverse','field_61768049bb8ac'),(218281,40992,'blocks_9_options',''),(218282,40992,'_blocks_9_options','field_617682517c334'),(218283,40992,'blocks_9_split_5050_image','39224'),(218284,40992,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(218285,40992,'blocks_9_split_5050_video',''),(218286,40992,'_blocks_9_split_5050_video','field_6239f3160848a'),(218287,40992,'blocks_9_split_5050_content_title','Locations'),(218288,40992,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(218289,40992,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(218290,40992,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(218291,40992,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(218292,40992,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(218293,40992,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(218294,40992,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(218295,40992,'blocks_9_split_5050_content_actions','1'),(218296,40992,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(218297,40992,'blocks_9_split_5050_content',''),(218298,40992,'_blocks_9_split_5050_content','field_61767afceb8ba'),(218299,40992,'blocks_10_acfe_flexible_toggle',''),(218300,40992,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(218301,40992,'blocks_10_acfe_flexible_layout_title','Text Block'),(218302,40992,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(218303,40992,'blocks_10_options_theme','#ffffff'),(218304,40992,'_blocks_10_options_theme','field_6176830e2ad17'),(218305,40992,'blocks_10_options',''),(218306,40992,'_blocks_10_options','field_6176830e2ad16'),(218307,40992,'blocks_10_text_block_heading','Check out other relevant courses'),(218308,40992,'_blocks_10_text_block_heading','field_617669d413097'),(218309,40992,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(218310,40992,'_blocks_10_text_block_content','field_617669ec13098'),(218311,40992,'blocks_11_acfe_flexible_toggle',''),(218312,40992,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(218313,40992,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(218314,40992,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(218315,40992,'blocks_11_options_theme','#ffffff'),(218316,40992,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(218317,40992,'blocks_11_options',''),(218318,40992,'_blocks_11_options','field_617ac0b7f6c08'),(218319,40992,'blocks_11_show','selection'),(218320,40992,'_blocks_11_show','field_61a49cba9d946'),(218321,40992,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(218322,40992,'_blocks_11_courses','field_61b244781ee0a'),(218323,40992,'blocks_12_acfe_flexible_toggle',''),(218324,40992,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(218325,40992,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(218326,40992,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(218327,40992,'blocks_12_options_theme','#ffffff'),(218328,40992,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(218329,40992,'blocks_12_options_reverse','0'),(218330,40992,'_blocks_12_options_reverse','field_61768049bb8ac'),(218331,40992,'blocks_12_options',''),(218332,40992,'_blocks_12_options','field_617682517c334'),(218333,40992,'blocks_12_split_5050_image','40812'),(218334,40992,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(218335,40992,'blocks_12_split_5050_video',''),(218336,40992,'_blocks_12_split_5050_video','field_6239f3160848a'),(218337,40992,'blocks_12_split_5050_content_title','Optimise Performance '),(218338,40992,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(218339,40992,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(218340,40992,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(218341,40992,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(218342,40992,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(218343,40992,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(218344,40992,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(218345,40992,'blocks_12_split_5050_content_actions','1'),(218346,40992,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(218347,40992,'blocks_12_split_5050_content',''),(218348,40992,'_blocks_12_split_5050_content','field_61767afceb8ba'),(218349,40992,'blocks_14_acfe_flexible_toggle',''),(218350,40992,'_blocks_14_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(218351,40992,'blocks_14_acfe_flexible_layout_title','Accordions / FAQs'),(218352,40992,'_blocks_14_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(218353,40992,'blocks_14_options_theme','#f5f5f5'),(218354,40992,'_blocks_14_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(218355,40992,'blocks_14_options_state','0'),(218356,40992,'_blocks_14_options_state','field_6239fcb7508c5'),(218357,40992,'blocks_14_options',''),(218358,40992,'_blocks_14_options','field_6177e2991ac44'),(218359,40992,'blocks_14_content_title',''),(218360,40992,'_blocks_14_content_title','field_64d237e8bb1e2'),(218361,40992,'blocks_14_content_heading','FAQ\'s'),(218362,40992,'_blocks_14_content_heading','field_64d237e8bb1e3'),(218363,40992,'blocks_14_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(218364,40992,'_blocks_14_content_text','field_64d237e8bb1e4'),(218365,40992,'blocks_14_content_actions',''),(218366,40992,'_blocks_14_content_actions','field_64d237e8bb1e5'),(218367,40992,'blocks_14_content_align','left'),(218368,40992,'_blocks_14_content_align','field_64d2443e6b6aa'),(218369,40992,'blocks_14_content',''),(218370,40992,'_blocks_14_content','field_64d237e8bb1e1'),(218371,40992,'blocks_14_accordion_content','faqs'),(218372,40992,'_blocks_14_accordion_content','field_6177e2c81ac4f'),(218373,40992,'blocks_14_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(218374,40992,'_blocks_14_accordion_faqs_select','field_6177e5f3633dd'),(218375,40992,'blocks_14_actions',''),(218376,40992,'_blocks_14_actions','field_61a746a817f7a'),(218377,40992,'blocks_1_acfe_flexible_toggle',''),(218378,40992,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(218379,40992,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(218380,40992,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(218381,40992,'blocks_1_options_theme','#ffffff'),(218382,40992,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(218383,40992,'blocks_1_options_reverse','0'),(218384,40992,'_blocks_1_options_reverse','field_61768049bb8ac'),(218385,40992,'blocks_1_options',''),(218386,40992,'_blocks_1_options','field_617682517c334'),(218387,40992,'blocks_1_split_5050_image','40785'),(218388,40992,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(218389,40992,'blocks_1_split_5050_video',''),(218390,40992,'_blocks_1_split_5050_video','field_6239f3160848a'),(218391,40992,'blocks_1_split_5050_content_title',''),(218392,40992,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(218393,40992,'blocks_1_split_5050_content_heading','Course Overview'),(218394,40992,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(218395,40992,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(218396,40992,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(218397,40992,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(218398,40992,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(218399,40992,'blocks_1_split_5050_content_actions','1'),(218400,40992,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(218401,40992,'blocks_1_split_5050_content',''),(218402,40992,'_blocks_1_split_5050_content','field_61767afceb8ba'),(218403,40992,'blocks_11_open_whats_included','1'),(218404,40992,'_blocks_11_open_whats_included','field_66ebfd679450c'),(218405,40992,'blocks_11_open_key_information','0'),(218406,40992,'_blocks_11_open_key_information','field_66ebfd7f9450d'),(218407,40992,'blocks_11_open',''),(218408,40992,'_blocks_11_open','field_66ebfd009450b'),(218409,40992,'blocks_2_acfe_flexible_toggle',''),(218410,40992,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(218411,40992,'blocks_2_acfe_flexible_layout_title','Form'),(218412,40992,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(218413,40992,'blocks_2_row_content_format','standard'),(218414,40992,'_blocks_2_row_content_format','field_6481ead962881'),(218415,40992,'blocks_2_row_content_title',''),(218416,40992,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(218417,40992,'blocks_2_row_content_heading','Enquire Today'),(218418,40992,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(218419,40992,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(218420,40992,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(218421,40992,'blocks_2_row_content_actions',''),(218422,40992,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(218423,40992,'blocks_2_row_content',''),(218424,40992,'_blocks_2_row_content','field_61a0f5f5b3db0'),(218425,40992,'blocks_2_row_form','40394'),(218426,40992,'_blocks_2_row_form','field_61a4ff2c0b08e'),(218427,40992,'blocks_2_row_form_button_label',''),(218428,40992,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(218429,40992,'blocks_3_acfe_flexible_toggle',''),(218430,40992,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(218431,40992,'blocks_3_acfe_flexible_layout_title','Video'),(218432,40992,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(218433,40992,'blocks_3_size','large'),(218434,40992,'_blocks_3_size','field_6487038f297c1'),(218435,40992,'blocks_3_row_content_title',''),(218436,40992,'_blocks_3_row_content_title','field_64870132a865d'),(218437,40992,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(218438,40992,'_blocks_3_row_content_heading','field_64870142a865e'),(218439,40992,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(218440,40992,'_blocks_3_row_content_text','field_64870148a865f'),(218441,40992,'blocks_3_row_content',''),(218442,40992,'_blocks_3_row_content','field_6487008ba865c'),(218443,40992,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(218444,40992,'_blocks_3_video_src','field_6193c4a98ec07'),(218445,40992,'blocks_3_video_thumbnail',''),(218446,40992,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(218447,40992,'blocks_13_acfe_flexible_toggle',''),(218448,40992,'_blocks_13_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(218449,40992,'blocks_13_acfe_flexible_layout_title','Template'),(218450,40992,'_blocks_13_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(218451,40992,'blocks_13_template','40987'),(218452,40992,'_blocks_13_template','field_617bdd570fe01'),(218453,40993,'hide_hero','0'),(218454,40993,'_hide_hero','field_66a2380fcda39'),(218455,40993,'hero_title','Diploma in Biomechanics Coaching'),(218456,40993,'_hero_title','field_617571fe285e8'),(218457,40993,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(218458,40993,'_hero_text','field_6175723c285e9'),(218459,40993,'hero_actions','1'),(218460,40993,'_hero_actions','field_61757270285ea'),(218461,40993,'hero_style','default'),(218462,40993,'_hero_style','field_62051d9dc5324'),(218463,40993,'hero_image_pos_x','right'),(218464,40993,'_hero_image_pos_x','field_62ec3d05390bb'),(218465,40993,'hero_image_pos_y','top'),(218466,40993,'_hero_image_pos_y','field_62ec3d05390bc'),(218467,40993,'hero_image_pos',''),(218468,40993,'_hero_image_pos','field_62ec3d05390ba'),(218469,40993,'fft_hide_from_listings','0'),(218470,40993,'_fft_hide_from_listings','field_61f1320446ab2'),(218471,40993,'fft_page_format','default'),(218472,40993,'_fft_page_format','field_61ae213f1f218'),(218473,40993,'fft_hide_nav','0'),(218474,40993,'_fft_hide_nav','field_635bd5e43527c'),(218475,40993,'fft_hide_header_call_to_action','0'),(218476,40993,'_fft_hide_header_call_to_action','field_635bd6723527d'),(218477,40993,'fft_page_sitemap','0'),(218478,40993,'_fft_page_sitemap','field_61af9b34e8181'),(218479,40993,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:5:\"icons\";i:6;s:10:\"split_5050\";i:7;s:8:\"template\";i:8;s:10:\"accordions\";}'),(218480,40993,'_blocks','field_6176696113096'),(218481,40993,'course_label_text',''),(218482,40993,'_course_label_text','field_61e17babf71fa'),(218483,40993,'course_label',''),(218484,40993,'_course_label','field_61e12f92749a7'),(218485,40993,'course_description',''),(218486,40993,'_course_description','field_617ac5788e5e1'),(218487,40993,'course_key_info',''),(218488,40993,'_course_key_info','field_617ac6ad8e5e2'),(218489,40993,'course_included',''),(218490,40993,'_course_included','field_617ac6f08e5e4'),(218491,40993,'_thumbnail_id','40863'),(218492,40993,'__thumbnail_id','field_617570855ddaf'),(218493,40993,'blocks_0_acfe_flexible_toggle',''),(218494,40993,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(218495,40993,'blocks_0_acfe_flexible_layout_title','Template'),(218496,40993,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(218497,40993,'blocks_0_template','39087'),(218498,40993,'_blocks_0_template','field_617bdd570fe01'),(218499,40993,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(218500,40993,'_hero_actions_0_button','field_61757281285eb'),(218501,40993,'blocks_1_acfe_flexible_toggle',''),(218502,40993,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(218503,40993,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(218504,40993,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(218505,40993,'blocks_1_options_theme','#ffffff'),(218506,40993,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(218507,40993,'blocks_1_options_reverse','0'),(218508,40993,'_blocks_1_options_reverse','field_61768049bb8ac'),(218509,40993,'blocks_1_options',''),(218510,40993,'_blocks_1_options','field_617682517c334'),(218511,40993,'blocks_1_split_5050_image','40866'),(218512,40993,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(218513,40993,'blocks_1_split_5050_video',''),(218514,40993,'_blocks_1_split_5050_video','field_6239f3160848a'),(218515,40993,'blocks_1_split_5050_content_title',''),(218516,40993,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(218517,40993,'blocks_1_split_5050_content_heading','Course Overview'),(218518,40993,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(218519,40993,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(218520,40993,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(218521,40993,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(218522,40993,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(218523,40993,'blocks_1_split_5050_content_actions','1'),(218524,40993,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(218525,40993,'blocks_1_split_5050_content',''),(218526,40993,'_blocks_1_split_5050_content','field_61767afceb8ba'),(218527,40993,'blocks_2_acfe_flexible_toggle',''),(218528,40993,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(218529,40993,'blocks_2_acfe_flexible_layout_title','Form'),(218530,40993,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(218531,40993,'blocks_2_row_content_format','standard'),(218532,40993,'_blocks_2_row_content_format','field_6481ead962881'),(218533,40993,'blocks_2_row_content_title',''),(218534,40993,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(218535,40993,'blocks_2_row_content_heading','Enquire Today'),(218536,40993,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(218537,40993,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(218538,40993,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(218539,40993,'blocks_2_row_content_actions',''),(218540,40993,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(218541,40993,'blocks_2_row_content',''),(218542,40993,'_blocks_2_row_content','field_61a0f5f5b3db0'),(218543,40993,'blocks_2_row_form','40394'),(218544,40993,'_blocks_2_row_form','field_61a4ff2c0b08e'),(218545,40993,'blocks_2_row_form_button_label',''),(218546,40993,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(218547,40993,'blocks_3_acfe_flexible_toggle',''),(218548,40993,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(218549,40993,'blocks_3_acfe_flexible_layout_title','Video'),(218550,40993,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(218551,40993,'blocks_3_size','large'),(218552,40993,'_blocks_3_size','field_6487038f297c1'),(218553,40993,'blocks_3_row_content_title',''),(218554,40993,'_blocks_3_row_content_title','field_64870132a865d'),(218555,40993,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(218556,40993,'_blocks_3_row_content_heading','field_64870142a865e'),(218557,40993,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(218558,40993,'_blocks_3_row_content_text','field_64870148a865f'),(218559,40993,'blocks_3_row_content',''),(218560,40993,'_blocks_3_row_content','field_6487008ba865c'),(218561,40993,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(218562,40993,'_blocks_3_video_src','field_6193c4a98ec07'),(218563,40993,'blocks_3_video_thumbnail',''),(218564,40993,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(218565,40993,'blocks_4_acfe_flexible_toggle',''),(218566,40993,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(218567,40993,'blocks_4_acfe_flexible_layout_title','Tabs'),(218568,40993,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(218569,40993,'blocks_4_options_theme','#ffffff'),(218570,40993,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(218571,40993,'blocks_4_options',''),(218572,40993,'_blocks_4_options','field_6177cfcd8140f'),(218573,40993,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(218574,40993,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(218575,40993,'blocks_4_tabs_0_tab_content_title',''),(218576,40993,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(218577,40993,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(218578,40993,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(218579,40993,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(218580,40993,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(218581,40993,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(218582,40993,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(218583,40993,'blocks_4_tabs_0_tab_content_actions','1'),(218584,40993,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(218585,40993,'blocks_4_tabs_0_tab_content',''),(218586,40993,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(218587,40993,'blocks_4_tabs_0_tab_image','40869'),(218588,40993,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(218589,40993,'blocks_4_tabs_1_tab_label','Entry requirements'),(218590,40993,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(218591,40993,'blocks_4_tabs_1_tab_content_title',''),(218592,40993,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(218593,40993,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(218594,40993,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(218595,40993,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(218596,40993,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(218597,40993,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(218598,40993,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(218599,40993,'blocks_4_tabs_1_tab_content_actions','1'),(218600,40993,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(218601,40993,'blocks_4_tabs_1_tab_content',''),(218602,40993,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(218603,40993,'blocks_4_tabs_1_tab_image','40870'),(218604,40993,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(218605,40993,'blocks_4_tabs','2'),(218606,40993,'_blocks_4_tabs','field_6177cff281419'),(218607,40993,'blocks_5_acfe_flexible_toggle',''),(218608,40993,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(218609,40993,'blocks_5_acfe_flexible_layout_title','Icons'),(218610,40993,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(218611,40993,'blocks_5_options_theme','#b61234'),(218612,40993,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(218613,40993,'blocks_5_options_format','stacked'),(218614,40993,'_blocks_5_options_format','field_64bfde9a90690'),(218615,40993,'blocks_5_options',''),(218616,40993,'_blocks_5_options','field_64bfdd9b90684'),(218617,40993,'blocks_5_row_content_title',''),(218618,40993,'_blocks_5_row_content_title','field_64bfdd9b90687'),(218619,40993,'blocks_5_row_content_heading','Fees & Funding Options '),(218620,40993,'_blocks_5_row_content_heading','field_64bfdd9b90688'),(218621,40993,'blocks_5_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(218622,40993,'_blocks_5_row_content_text','field_64bfdd9b90689'),(218623,40993,'blocks_5_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(218624,40993,'_blocks_5_row_content_actions_0_button','field_64bfdd9b9068b'),(218625,40993,'blocks_5_row_content_actions','1'),(218626,40993,'_blocks_5_row_content_actions','field_64bfdd9b9068a'),(218627,40993,'blocks_5_row_content',''),(218628,40993,'_blocks_5_row_content','field_64bfdd9b90686'),(218629,40993,'blocks_5_icon_row_items_0_icon','pay-as-you-learn.svg'),(218630,40993,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(218631,40993,'blocks_5_icon_row_items_0_label','Pay in full'),(218632,40993,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(218633,40993,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(218634,40993,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(218635,40993,'blocks_5_icon_row_items_1_icon','finance.svg'),(218636,40993,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(218637,40993,'blocks_5_icon_row_items_1_label','0% finance'),(218638,40993,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(218639,40993,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(218640,40993,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(218641,40993,'blocks_5_icon_row_items_2_icon','pass-rate.svg'),(218642,40993,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(218643,40993,'blocks_5_icon_row_items_2_label','Deposit & balance'),(218644,40993,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(218645,40993,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(218646,40993,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(218647,40993,'blocks_5_icon_row_items','3'),(218648,40993,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(218649,40993,'blocks_6_acfe_flexible_toggle',''),(218650,40993,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(218651,40993,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(218652,40993,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(218653,40993,'blocks_6_options_theme','#ffffff'),(218654,40993,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(218655,40993,'blocks_6_options_reverse','0'),(218656,40993,'_blocks_6_options_reverse','field_61768049bb8ac'),(218657,40993,'blocks_6_options',''),(218658,40993,'_blocks_6_options','field_617682517c334'),(218659,40993,'blocks_6_split_5050_image','39224'),(218660,40993,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(218661,40993,'blocks_6_split_5050_video',''),(218662,40993,'_blocks_6_split_5050_video','field_6239f3160848a'),(218663,40993,'blocks_6_split_5050_content_title',''),(218664,40993,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(218665,40993,'blocks_6_split_5050_content_heading','Locations'),(218666,40993,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(218667,40993,'blocks_6_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(218668,40993,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(218669,40993,'blocks_6_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(218670,40993,'_blocks_6_split_5050_content_actions_0_button','field_61767b72eb8be'),(218671,40993,'blocks_6_split_5050_content_actions','1'),(218672,40993,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(218673,40993,'blocks_6_split_5050_content',''),(218674,40993,'_blocks_6_split_5050_content','field_61767afceb8ba'),(218675,40993,'blocks_8_acfe_flexible_toggle',''),(218676,40993,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(218677,40993,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(218678,40993,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(218679,40993,'blocks_8_options_theme','#ffffff'),(218680,40993,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(218681,40993,'blocks_8_options_state','0'),(218682,40993,'_blocks_8_options_state','field_6239fcb7508c5'),(218683,40993,'blocks_8_options',''),(218684,40993,'_blocks_8_options','field_6177e2991ac44'),(218685,40993,'blocks_8_content_title',''),(218686,40993,'_blocks_8_content_title','field_64d237e8bb1e2'),(218687,40993,'blocks_8_content_heading','FAQ\'s'),(218688,40993,'_blocks_8_content_heading','field_64d237e8bb1e3'),(218689,40993,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(218690,40993,'_blocks_8_content_text','field_64d237e8bb1e4'),(218691,40993,'blocks_8_content_actions',''),(218692,40993,'_blocks_8_content_actions','field_64d237e8bb1e5'),(218693,40993,'blocks_8_content_align','left'),(218694,40993,'_blocks_8_content_align','field_64d2443e6b6aa'),(218695,40993,'blocks_8_content',''),(218696,40993,'_blocks_8_content','field_64d237e8bb1e1'),(218697,40993,'blocks_8_accordion_content','faqs'),(218698,40993,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(218699,40993,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(218700,40993,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(218701,40993,'blocks_8_actions',''),(218702,40993,'_blocks_8_actions','field_61a746a817f7a'),(218703,40993,'blocks_7_acfe_flexible_toggle',''),(218704,40993,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(218705,40993,'blocks_7_acfe_flexible_layout_title','Template'),(218706,40993,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(218707,40993,'blocks_7_template','40987'),(218708,40993,'_blocks_7_template','field_617bdd570fe01'),(218709,40780,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(218710,40780,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(218711,40780,'blocks_6_icon_row_items_2_label','Deposit & balance'),(218712,40780,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(218713,40780,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(218714,40780,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(218715,40994,'hide_hero','0'),(218716,40994,'_hide_hero','field_66a2380fcda39'),(218717,40994,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(218718,40994,'_hero_title','field_617571fe285e8'),(218719,40994,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(218720,40994,'_hero_text','field_6175723c285e9'),(218721,40994,'hero_actions','1'),(218722,40994,'_hero_actions','field_61757270285ea'),(218723,40994,'hero_style','default'),(218724,40994,'_hero_style','field_62051d9dc5324'),(218725,40994,'_thumbnail_id','40848'),(218726,40994,'__thumbnail_id','field_617570855ddaf'),(218727,40994,'hero_image_pos_x','right'),(218728,40994,'_hero_image_pos_x','field_62ec3d05390bb'),(218729,40994,'hero_image_pos_y','top'),(218730,40994,'_hero_image_pos_y','field_62ec3d05390bc'),(218731,40994,'hero_image_pos',''),(218732,40994,'_hero_image_pos','field_62ec3d05390ba'),(218733,40994,'fft_hide_from_listings','0'),(218734,40994,'_fft_hide_from_listings','field_61f1320446ab2'),(218735,40994,'fft_page_format','default'),(218736,40994,'_fft_page_format','field_61ae213f1f218'),(218737,40994,'fft_hide_nav','0'),(218738,40994,'_fft_hide_nav','field_635bd5e43527c'),(218739,40994,'fft_hide_header_call_to_action','0'),(218740,40994,'_fft_hide_header_call_to_action','field_635bd6723527d'),(218741,40994,'fft_page_sitemap','0'),(218742,40994,'_fft_page_sitemap','field_61af9b34e8181'),(218743,40994,'blocks','a:15:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:10:\"split_5050\";i:13;s:8:\"template\";i:14;s:10:\"accordions\";}'),(218744,40994,'_blocks','field_6176696113096'),(218745,40994,'course_label_text',''),(218746,40994,'_course_label_text','field_61e17babf71fa'),(218747,40994,'course_label',''),(218748,40994,'_course_label','field_61e12f92749a7'),(218749,40994,'course_description',''),(218750,40994,'_course_description','field_617ac5788e5e1'),(218751,40994,'course_key_info',''),(218752,40994,'_course_key_info','field_617ac6ad8e5e2'),(218753,40994,'course_included',''),(218754,40994,'_course_included','field_617ac6f08e5e4'),(218755,40994,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(218756,40994,'_hero_actions_0_button','field_61757281285eb'),(218757,40994,'blocks_0_acfe_flexible_toggle',''),(218758,40994,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(218759,40994,'blocks_0_acfe_flexible_layout_title','Icons'),(218760,40994,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(218761,40994,'blocks_0_options_theme','#b61234'),(218762,40994,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(218763,40994,'blocks_0_options_format','row'),(218764,40994,'_blocks_0_options_format','field_64bfde9a90690'),(218765,40994,'blocks_0_options',''),(218766,40994,'_blocks_0_options','field_64bfdd9b90684'),(218767,40994,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(218768,40994,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(218769,40994,'blocks_0_icon_row_items_0_label','Accreditation'),(218770,40994,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(218771,40994,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(218772,40994,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(218773,40994,'blocks_0_icon_row_items_1_icon','finance.svg'),(218774,40994,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(218775,40994,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(218776,40994,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(218777,40994,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(218778,40994,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(218779,40994,'blocks_0_icon_row_items_2_icon','progression.svg'),(218780,40994,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(218781,40994,'blocks_0_icon_row_items_2_label','Earning Potential'),(218782,40994,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(218783,40994,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(218784,40994,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(218785,40994,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(218786,40994,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(218787,40994,'blocks_0_icon_row_items_3_label','Qualification'),(218788,40994,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(218789,40994,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(218790,40994,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(218791,40994,'blocks_0_icon_row_items','4'),(218792,40994,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(218793,40994,'blocks_5_acfe_flexible_toggle','1'),(218794,40994,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(218795,40994,'blocks_5_acfe_flexible_layout_title','Tabs'),(218796,40994,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(218797,40994,'blocks_5_options_theme','#ffffff'),(218798,40994,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(218799,40994,'blocks_5_options',''),(218800,40994,'_blocks_5_options','field_6177cfcd8140f'),(218801,40994,'blocks_5_tabs_0_tab_label','Entry requirements'),(218802,40994,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(218803,40994,'blocks_5_tabs_0_tab_content_title',''),(218804,40994,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(218805,40994,'blocks_5_tabs_0_tab_content_heading',''),(218806,40994,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(218807,40994,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(218808,40994,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(218809,40994,'blocks_5_tabs_0_tab_content_actions',''),(218810,40994,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(218811,40994,'blocks_5_tabs_0_tab_content',''),(218812,40994,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(218813,40994,'blocks_5_tabs_0_tab_image',''),(218814,40994,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(218815,40994,'blocks_5_tabs_1_tab_label','Learning format'),(218816,40994,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(218817,40994,'blocks_5_tabs_1_tab_content_title',''),(218818,40994,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(218819,40994,'blocks_5_tabs_1_tab_content_heading',''),(218820,40994,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(218821,40994,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(218822,40994,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(218823,40994,'blocks_5_tabs_1_tab_content_actions',''),(218824,40994,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(218825,40994,'blocks_5_tabs_1_tab_content',''),(218826,40994,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(218827,40994,'blocks_5_tabs_1_tab_image',''),(218828,40994,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(218829,40994,'blocks_5_tabs_2_tab_label','Qualifications included'),(218830,40994,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(218831,40994,'blocks_5_tabs_2_tab_content_title',''),(218832,40994,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(218833,40994,'blocks_5_tabs_2_tab_content_heading',''),(218834,40994,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(218835,40994,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(218836,40994,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(218837,40994,'blocks_5_tabs_2_tab_content_actions',''),(218838,40994,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(218839,40994,'blocks_5_tabs_2_tab_content',''),(218840,40994,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(218841,40994,'blocks_5_tabs_2_tab_image',''),(218842,40994,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(218843,40994,'blocks_5_tabs','3'),(218844,40994,'_blocks_5_tabs','field_6177cff281419'),(218845,40994,'blocks_4_acfe_flexible_toggle',''),(218846,40994,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(218847,40994,'blocks_4_acfe_flexible_layout_title','Template'),(218848,40994,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(218849,40994,'blocks_4_template','39207'),(218850,40994,'_blocks_4_template','field_617bdd570fe01'),(218851,40994,'blocks_6_acfe_flexible_toggle',''),(218852,40994,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(218853,40994,'blocks_6_acfe_flexible_layout_title','Icons'),(218854,40994,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(218855,40994,'blocks_6_options_theme','#f5f5f5'),(218856,40994,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(218857,40994,'blocks_6_options_format','stacked'),(218858,40994,'_blocks_6_options_format','field_64bfde9a90690'),(218859,40994,'blocks_6_options',''),(218860,40994,'_blocks_6_options','field_64bfdd9b90684'),(218861,40994,'blocks_6_row_content_title','Options available to pay for your course'),(218862,40994,'_blocks_6_row_content_title','field_64bfdd9b90687'),(218863,40994,'blocks_6_row_content_heading','Fees & Funding Options '),(218864,40994,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(218865,40994,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(218866,40994,'_blocks_6_row_content_text','field_64bfdd9b90689'),(218867,40994,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(218868,40994,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(218869,40994,'blocks_6_row_content_actions','1'),(218870,40994,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(218871,40994,'blocks_6_row_content',''),(218872,40994,'_blocks_6_row_content','field_64bfdd9b90686'),(218873,40994,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(218874,40994,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(218875,40994,'blocks_6_icon_row_items_0_label','Pay in full'),(218876,40994,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(218877,40994,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(218878,40994,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(218879,40994,'blocks_6_icon_row_items_1_icon','finance.svg'),(218880,40994,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(218881,40994,'blocks_6_icon_row_items_1_label','0% finance'),(218882,40994,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(218883,40994,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(218884,40994,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(218885,40994,'blocks_6_icon_row_items','3'),(218886,40994,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(218887,40994,'blocks_7_acfe_flexible_toggle',''),(218888,40994,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(218889,40994,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(218890,40994,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(218891,40994,'blocks_7_options_theme','#ffffff'),(218892,40994,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(218893,40994,'blocks_7_options_reverse','0'),(218894,40994,'_blocks_7_options_reverse','field_61768049bb8ac'),(218895,40994,'blocks_7_options',''),(218896,40994,'_blocks_7_options','field_617682517c334'),(218897,40994,'blocks_7_split_5050_image','40817'),(218898,40994,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(218899,40994,'blocks_7_split_5050_video',''),(218900,40994,'_blocks_7_split_5050_video','field_6239f3160848a'),(218901,40994,'blocks_7_split_5050_content_title',''),(218902,40994,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(218903,40994,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(218904,40994,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(218905,40994,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(218906,40994,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(218907,40994,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(218908,40994,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(218909,40994,'blocks_7_split_5050_content_actions','1'),(218910,40994,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(218911,40994,'blocks_7_split_5050_content',''),(218912,40994,'_blocks_7_split_5050_content','field_61767afceb8ba'),(218913,40994,'blocks_8_acfe_flexible_toggle',''),(218914,40994,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(218915,40994,'blocks_8_acfe_flexible_layout_title','Icons'),(218916,40994,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(218917,40994,'blocks_8_options_theme','#f5f5f5'),(218918,40994,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(218919,40994,'blocks_8_options_format','row'),(218920,40994,'_blocks_8_options_format','field_64bfde9a90690'),(218921,40994,'blocks_8_options',''),(218922,40994,'_blocks_8_options','field_64bfdd9b90684'),(218923,40994,'blocks_8_icon_row_items_0_icon','qualification.svg'),(218924,40994,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(218925,40994,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(218926,40994,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(218927,40994,'blocks_8_icon_row_items_0_text',''),(218928,40994,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(218929,40994,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(218930,40994,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(218931,40994,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(218932,40994,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(218933,40994,'blocks_8_icon_row_items_1_text',''),(218934,40994,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(218935,40994,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(218936,40994,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(218937,40994,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(218938,40994,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(218939,40994,'blocks_8_icon_row_items_2_text',''),(218940,40994,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(218941,40994,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(218942,40994,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(218943,40994,'blocks_8_icon_row_items_3_label','Flexible funding options'),(218944,40994,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(218945,40994,'blocks_8_icon_row_items_3_text',''),(218946,40994,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(218947,40994,'blocks_8_icon_row_items','4'),(218948,40994,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(218949,40994,'blocks_9_acfe_flexible_toggle',''),(218950,40994,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(218951,40994,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(218952,40994,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(218953,40994,'blocks_9_options_theme','#ffffff'),(218954,40994,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(218955,40994,'blocks_9_options_reverse','1'),(218956,40994,'_blocks_9_options_reverse','field_61768049bb8ac'),(218957,40994,'blocks_9_options',''),(218958,40994,'_blocks_9_options','field_617682517c334'),(218959,40994,'blocks_9_split_5050_image','39224'),(218960,40994,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(218961,40994,'blocks_9_split_5050_video',''),(218962,40994,'_blocks_9_split_5050_video','field_6239f3160848a'),(218963,40994,'blocks_9_split_5050_content_title','Locations'),(218964,40994,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(218965,40994,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(218966,40994,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(218967,40994,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(218968,40994,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(218969,40994,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(218970,40994,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(218971,40994,'blocks_9_split_5050_content_actions','1'),(218972,40994,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(218973,40994,'blocks_9_split_5050_content',''),(218974,40994,'_blocks_9_split_5050_content','field_61767afceb8ba'),(218975,40994,'blocks_10_acfe_flexible_toggle',''),(218976,40994,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(218977,40994,'blocks_10_acfe_flexible_layout_title','Text Block'),(218978,40994,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(218979,40994,'blocks_10_options_theme','#ffffff'),(218980,40994,'_blocks_10_options_theme','field_6176830e2ad17'),(218981,40994,'blocks_10_options',''),(218982,40994,'_blocks_10_options','field_6176830e2ad16'),(218983,40994,'blocks_10_text_block_heading','Check out other relevant courses'),(218984,40994,'_blocks_10_text_block_heading','field_617669d413097'),(218985,40994,'blocks_10_text_block_content','Take a look at more of our CPD courses that are frequently purchased'),(218986,40994,'_blocks_10_text_block_content','field_617669ec13098'),(218987,40994,'blocks_11_acfe_flexible_toggle',''),(218988,40994,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(218989,40994,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(218990,40994,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(218991,40994,'blocks_11_options_theme','#ffffff'),(218992,40994,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(218993,40994,'blocks_11_options',''),(218994,40994,'_blocks_11_options','field_617ac0b7f6c08'),(218995,40994,'blocks_11_show','selection'),(218996,40994,'_blocks_11_show','field_61a49cba9d946'),(218997,40994,'blocks_11_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(218998,40994,'_blocks_11_courses','field_61b244781ee0a'),(218999,40994,'blocks_12_acfe_flexible_toggle',''),(219000,40994,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(219001,40994,'blocks_12_acfe_flexible_layout_title','50/50 Split'),(219002,40994,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(219003,40994,'blocks_12_options_theme','#ffffff'),(219004,40994,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(219005,40994,'blocks_12_options_reverse','0'),(219006,40994,'_blocks_12_options_reverse','field_61768049bb8ac'),(219007,40994,'blocks_12_options',''),(219008,40994,'_blocks_12_options','field_617682517c334'),(219009,40994,'blocks_12_split_5050_image','40812'),(219010,40994,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(219011,40994,'blocks_12_split_5050_video',''),(219012,40994,'_blocks_12_split_5050_video','field_6239f3160848a'),(219013,40994,'blocks_12_split_5050_content_title','Optimise Performance '),(219014,40994,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(219015,40994,'blocks_12_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(219016,40994,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(219017,40994,'blocks_12_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(219018,40994,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(219019,40994,'blocks_12_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(219020,40994,'_blocks_12_split_5050_content_actions_0_button','field_61767b72eb8be'),(219021,40994,'blocks_12_split_5050_content_actions','1'),(219022,40994,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(219023,40994,'blocks_12_split_5050_content',''),(219024,40994,'_blocks_12_split_5050_content','field_61767afceb8ba'),(219025,40994,'blocks_14_acfe_flexible_toggle',''),(219026,40994,'_blocks_14_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(219027,40994,'blocks_14_acfe_flexible_layout_title','Accordions / FAQs'),(219028,40994,'_blocks_14_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(219029,40994,'blocks_14_options_theme','#f5f5f5'),(219030,40994,'_blocks_14_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(219031,40994,'blocks_14_options_state','0'),(219032,40994,'_blocks_14_options_state','field_6239fcb7508c5'),(219033,40994,'blocks_14_options',''),(219034,40994,'_blocks_14_options','field_6177e2991ac44'),(219035,40994,'blocks_14_content_title',''),(219036,40994,'_blocks_14_content_title','field_64d237e8bb1e2'),(219037,40994,'blocks_14_content_heading','FAQ\'s'),(219038,40994,'_blocks_14_content_heading','field_64d237e8bb1e3'),(219039,40994,'blocks_14_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(219040,40994,'_blocks_14_content_text','field_64d237e8bb1e4'),(219041,40994,'blocks_14_content_actions',''),(219042,40994,'_blocks_14_content_actions','field_64d237e8bb1e5'),(219043,40994,'blocks_14_content_align','left'),(219044,40994,'_blocks_14_content_align','field_64d2443e6b6aa'),(219045,40994,'blocks_14_content',''),(219046,40994,'_blocks_14_content','field_64d237e8bb1e1'),(219047,40994,'blocks_14_accordion_content','faqs'),(219048,40994,'_blocks_14_accordion_content','field_6177e2c81ac4f'),(219049,40994,'blocks_14_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(219050,40994,'_blocks_14_accordion_faqs_select','field_6177e5f3633dd'),(219051,40994,'blocks_14_actions',''),(219052,40994,'_blocks_14_actions','field_61a746a817f7a'),(219053,40994,'blocks_1_acfe_flexible_toggle',''),(219054,40994,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(219055,40994,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(219056,40994,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(219057,40994,'blocks_1_options_theme','#ffffff'),(219058,40994,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(219059,40994,'blocks_1_options_reverse','0'),(219060,40994,'_blocks_1_options_reverse','field_61768049bb8ac'),(219061,40994,'blocks_1_options',''),(219062,40994,'_blocks_1_options','field_617682517c334'),(219063,40994,'blocks_1_split_5050_image','40785'),(219064,40994,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(219065,40994,'blocks_1_split_5050_video',''),(219066,40994,'_blocks_1_split_5050_video','field_6239f3160848a'),(219067,40994,'blocks_1_split_5050_content_title',''),(219068,40994,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(219069,40994,'blocks_1_split_5050_content_heading','Course Overview'),(219070,40994,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(219071,40994,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(219072,40994,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(219073,40994,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(219074,40994,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(219075,40994,'blocks_1_split_5050_content_actions','1'),(219076,40994,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(219077,40994,'blocks_1_split_5050_content',''),(219078,40994,'_blocks_1_split_5050_content','field_61767afceb8ba'),(219079,40994,'blocks_11_open_whats_included','1'),(219080,40994,'_blocks_11_open_whats_included','field_66ebfd679450c'),(219081,40994,'blocks_11_open_key_information','0'),(219082,40994,'_blocks_11_open_key_information','field_66ebfd7f9450d'),(219083,40994,'blocks_11_open',''),(219084,40994,'_blocks_11_open','field_66ebfd009450b'),(219085,40994,'blocks_2_acfe_flexible_toggle',''),(219086,40994,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(219087,40994,'blocks_2_acfe_flexible_layout_title','Form'),(219088,40994,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(219089,40994,'blocks_2_row_content_format','standard'),(219090,40994,'_blocks_2_row_content_format','field_6481ead962881'),(219091,40994,'blocks_2_row_content_title',''),(219092,40994,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(219093,40994,'blocks_2_row_content_heading','Enquire Today'),(219094,40994,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(219095,40994,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(219096,40994,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(219097,40994,'blocks_2_row_content_actions',''),(219098,40994,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(219099,40994,'blocks_2_row_content',''),(219100,40994,'_blocks_2_row_content','field_61a0f5f5b3db0'),(219101,40994,'blocks_2_row_form','40394'),(219102,40994,'_blocks_2_row_form','field_61a4ff2c0b08e'),(219103,40994,'blocks_2_row_form_button_label',''),(219104,40994,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(219105,40994,'blocks_3_acfe_flexible_toggle',''),(219106,40994,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(219107,40994,'blocks_3_acfe_flexible_layout_title','Video'),(219108,40994,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(219109,40994,'blocks_3_size','large'),(219110,40994,'_blocks_3_size','field_6487038f297c1'),(219111,40994,'blocks_3_row_content_title',''),(219112,40994,'_blocks_3_row_content_title','field_64870132a865d'),(219113,40994,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(219114,40994,'_blocks_3_row_content_heading','field_64870142a865e'),(219115,40994,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(219116,40994,'_blocks_3_row_content_text','field_64870148a865f'),(219117,40994,'blocks_3_row_content',''),(219118,40994,'_blocks_3_row_content','field_6487008ba865c'),(219119,40994,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(219120,40994,'_blocks_3_video_src','field_6193c4a98ec07'),(219121,40994,'blocks_3_video_thumbnail',''),(219122,40994,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(219123,40994,'blocks_13_acfe_flexible_toggle',''),(219124,40994,'_blocks_13_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(219125,40994,'blocks_13_acfe_flexible_layout_title','Template'),(219126,40994,'_blocks_13_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(219127,40994,'blocks_13_template','40987'),(219128,40994,'_blocks_13_template','field_617bdd570fe01'),(219129,40994,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(219130,40994,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(219131,40994,'blocks_6_icon_row_items_2_label','Deposit & balance'),(219132,40994,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(219133,40994,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(219134,40994,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(219135,40780,'blocks_10_acfe_flexible_toggle','1'),(219136,40780,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(219137,40780,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(219138,40780,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(219139,40780,'blocks_10_options_theme','#ffffff'),(219140,40780,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(219141,40780,'blocks_10_options',''),(219142,40780,'_blocks_10_options','field_617ac0b7f6c08'),(219143,40780,'blocks_10_show','selection'),(219144,40780,'_blocks_10_show','field_61a49cba9d946'),(219145,40780,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(219146,40780,'_blocks_10_courses','field_61b244781ee0a'),(219147,40780,'blocks_10_open_whats_included','1'),(219148,40780,'_blocks_10_open_whats_included','field_66ebfd679450c'),(219149,40780,'blocks_10_open_key_information','0'),(219150,40780,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(219151,40780,'blocks_10_open',''),(219152,40780,'_blocks_10_open','field_66ebfd009450b'),(219153,40780,'blocks_11_acfe_flexible_toggle',''),(219154,40780,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(219155,40780,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(219156,40780,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(219157,40780,'blocks_11_options_theme','#ffffff'),(219158,40780,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(219159,40780,'blocks_11_options_reverse','0'),(219160,40780,'_blocks_11_options_reverse','field_61768049bb8ac'),(219161,40780,'blocks_11_options',''),(219162,40780,'_blocks_11_options','field_617682517c334'),(219163,40780,'blocks_11_split_5050_image','40812'),(219164,40780,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(219165,40780,'blocks_11_split_5050_video',''),(219166,40780,'_blocks_11_split_5050_video','field_6239f3160848a'),(219167,40780,'blocks_11_split_5050_content_title','Optimise Performance '),(219168,40780,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(219169,40780,'blocks_11_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(219170,40780,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(219171,40780,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(219172,40780,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(219173,40780,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(219174,40780,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(219175,40780,'blocks_11_split_5050_content_actions','1'),(219176,40780,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(219177,40780,'blocks_11_split_5050_content',''),(219178,40780,'_blocks_11_split_5050_content','field_61767afceb8ba'),(219179,40780,'blocks_12_acfe_flexible_toggle',''),(219180,40780,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(219181,40780,'blocks_12_acfe_flexible_layout_title','Template'),(219182,40780,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(219183,40780,'blocks_12_template','40987'),(219184,40780,'_blocks_12_template','field_617bdd570fe01'),(219185,40780,'blocks_13_acfe_flexible_toggle',''),(219186,40780,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(219187,40780,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(219188,40780,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(219189,40780,'blocks_13_options_theme','#f5f5f5'),(219190,40780,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(219191,40780,'blocks_13_options_state','0'),(219192,40780,'_blocks_13_options_state','field_6239fcb7508c5'),(219193,40780,'blocks_13_options',''),(219194,40780,'_blocks_13_options','field_6177e2991ac44'),(219195,40780,'blocks_13_content_title',''),(219196,40780,'_blocks_13_content_title','field_64d237e8bb1e2'),(219197,40780,'blocks_13_content_heading','FAQ\'s'),(219198,40780,'_blocks_13_content_heading','field_64d237e8bb1e3'),(219199,40780,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(219200,40780,'_blocks_13_content_text','field_64d237e8bb1e4'),(219201,40780,'blocks_13_content_actions',''),(219202,40780,'_blocks_13_content_actions','field_64d237e8bb1e5'),(219203,40780,'blocks_13_content_align','left'),(219204,40780,'_blocks_13_content_align','field_64d2443e6b6aa'),(219205,40780,'blocks_13_content',''),(219206,40780,'_blocks_13_content','field_64d237e8bb1e1'),(219207,40780,'blocks_13_accordion_content','faqs'),(219208,40780,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(219209,40780,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(219210,40780,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(219211,40780,'blocks_13_actions',''),(219212,40780,'_blocks_13_actions','field_61a746a817f7a'),(219213,40995,'hide_hero','0'),(219214,40995,'_hide_hero','field_66a2380fcda39'),(219215,40995,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(219216,40995,'_hero_title','field_617571fe285e8'),(219217,40995,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(219218,40995,'_hero_text','field_6175723c285e9'),(219219,40995,'hero_actions','1'),(219220,40995,'_hero_actions','field_61757270285ea'),(219221,40995,'hero_style','default'),(219222,40995,'_hero_style','field_62051d9dc5324'),(219223,40995,'_thumbnail_id','40848'),(219224,40995,'__thumbnail_id','field_617570855ddaf'),(219225,40995,'hero_image_pos_x','right'),(219226,40995,'_hero_image_pos_x','field_62ec3d05390bb'),(219227,40995,'hero_image_pos_y','top'),(219228,40995,'_hero_image_pos_y','field_62ec3d05390bc'),(219229,40995,'hero_image_pos',''),(219230,40995,'_hero_image_pos','field_62ec3d05390ba'),(219231,40995,'fft_hide_from_listings','0'),(219232,40995,'_fft_hide_from_listings','field_61f1320446ab2'),(219233,40995,'fft_page_format','default'),(219234,40995,'_fft_page_format','field_61ae213f1f218'),(219235,40995,'fft_hide_nav','0'),(219236,40995,'_fft_hide_nav','field_635bd5e43527c'),(219237,40995,'fft_hide_header_call_to_action','0'),(219238,40995,'_fft_hide_header_call_to_action','field_635bd6723527d'),(219239,40995,'fft_page_sitemap','0'),(219240,40995,'_fft_page_sitemap','field_61af9b34e8181'),(219241,40995,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(219242,40995,'_blocks','field_6176696113096'),(219243,40995,'course_label_text',''),(219244,40995,'_course_label_text','field_61e17babf71fa'),(219245,40995,'course_label',''),(219246,40995,'_course_label','field_61e12f92749a7'),(219247,40995,'course_description',''),(219248,40995,'_course_description','field_617ac5788e5e1'),(219249,40995,'course_key_info',''),(219250,40995,'_course_key_info','field_617ac6ad8e5e2'),(219251,40995,'course_included',''),(219252,40995,'_course_included','field_617ac6f08e5e4'),(219253,40995,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(219254,40995,'_hero_actions_0_button','field_61757281285eb'),(219255,40995,'blocks_0_acfe_flexible_toggle',''),(219256,40995,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(219257,40995,'blocks_0_acfe_flexible_layout_title','Icons'),(219258,40995,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(219259,40995,'blocks_0_options_theme','#b61234'),(219260,40995,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(219261,40995,'blocks_0_options_format','row'),(219262,40995,'_blocks_0_options_format','field_64bfde9a90690'),(219263,40995,'blocks_0_options',''),(219264,40995,'_blocks_0_options','field_64bfdd9b90684'),(219265,40995,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(219266,40995,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(219267,40995,'blocks_0_icon_row_items_0_label','Accreditation'),(219268,40995,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(219269,40995,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(219270,40995,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(219271,40995,'blocks_0_icon_row_items_1_icon','finance.svg'),(219272,40995,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(219273,40995,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(219274,40995,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(219275,40995,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(219276,40995,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(219277,40995,'blocks_0_icon_row_items_2_icon','progression.svg'),(219278,40995,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(219279,40995,'blocks_0_icon_row_items_2_label','Earning Potential'),(219280,40995,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(219281,40995,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(219282,40995,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(219283,40995,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(219284,40995,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(219285,40995,'blocks_0_icon_row_items_3_label','Qualification'),(219286,40995,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(219287,40995,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(219288,40995,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(219289,40995,'blocks_0_icon_row_items','4'),(219290,40995,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(219291,40995,'blocks_5_acfe_flexible_toggle','1'),(219292,40995,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(219293,40995,'blocks_5_acfe_flexible_layout_title','Tabs'),(219294,40995,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(219295,40995,'blocks_5_options_theme','#ffffff'),(219296,40995,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(219297,40995,'blocks_5_options',''),(219298,40995,'_blocks_5_options','field_6177cfcd8140f'),(219299,40995,'blocks_5_tabs_0_tab_label','Entry requirements'),(219300,40995,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(219301,40995,'blocks_5_tabs_0_tab_content_title',''),(219302,40995,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(219303,40995,'blocks_5_tabs_0_tab_content_heading',''),(219304,40995,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(219305,40995,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(219306,40995,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(219307,40995,'blocks_5_tabs_0_tab_content_actions',''),(219308,40995,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(219309,40995,'blocks_5_tabs_0_tab_content',''),(219310,40995,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(219311,40995,'blocks_5_tabs_0_tab_image',''),(219312,40995,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(219313,40995,'blocks_5_tabs_1_tab_label','Learning format'),(219314,40995,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(219315,40995,'blocks_5_tabs_1_tab_content_title',''),(219316,40995,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(219317,40995,'blocks_5_tabs_1_tab_content_heading',''),(219318,40995,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(219319,40995,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(219320,40995,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(219321,40995,'blocks_5_tabs_1_tab_content_actions',''),(219322,40995,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(219323,40995,'blocks_5_tabs_1_tab_content',''),(219324,40995,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(219325,40995,'blocks_5_tabs_1_tab_image',''),(219326,40995,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(219327,40995,'blocks_5_tabs_2_tab_label','Qualifications included'),(219328,40995,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(219329,40995,'blocks_5_tabs_2_tab_content_title',''),(219330,40995,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(219331,40995,'blocks_5_tabs_2_tab_content_heading',''),(219332,40995,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(219333,40995,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(219334,40995,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(219335,40995,'blocks_5_tabs_2_tab_content_actions',''),(219336,40995,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(219337,40995,'blocks_5_tabs_2_tab_content',''),(219338,40995,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(219339,40995,'blocks_5_tabs_2_tab_image',''),(219340,40995,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(219341,40995,'blocks_5_tabs','3'),(219342,40995,'_blocks_5_tabs','field_6177cff281419'),(219343,40995,'blocks_4_acfe_flexible_toggle',''),(219344,40995,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(219345,40995,'blocks_4_acfe_flexible_layout_title','Template'),(219346,40995,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(219347,40995,'blocks_4_template','39207'),(219348,40995,'_blocks_4_template','field_617bdd570fe01'),(219349,40995,'blocks_6_acfe_flexible_toggle',''),(219350,40995,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(219351,40995,'blocks_6_acfe_flexible_layout_title','Icons'),(219352,40995,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(219353,40995,'blocks_6_options_theme','#f5f5f5'),(219354,40995,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(219355,40995,'blocks_6_options_format','stacked'),(219356,40995,'_blocks_6_options_format','field_64bfde9a90690'),(219357,40995,'blocks_6_options',''),(219358,40995,'_blocks_6_options','field_64bfdd9b90684'),(219359,40995,'blocks_6_row_content_title','Options available to pay for your course'),(219360,40995,'_blocks_6_row_content_title','field_64bfdd9b90687'),(219361,40995,'blocks_6_row_content_heading','Fees & Funding Options '),(219362,40995,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(219363,40995,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(219364,40995,'_blocks_6_row_content_text','field_64bfdd9b90689'),(219365,40995,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(219366,40995,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(219367,40995,'blocks_6_row_content_actions','1'),(219368,40995,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(219369,40995,'blocks_6_row_content',''),(219370,40995,'_blocks_6_row_content','field_64bfdd9b90686'),(219371,40995,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(219372,40995,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(219373,40995,'blocks_6_icon_row_items_0_label','Pay in full'),(219374,40995,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(219375,40995,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(219376,40995,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(219377,40995,'blocks_6_icon_row_items_1_icon','finance.svg'),(219378,40995,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(219379,40995,'blocks_6_icon_row_items_1_label','0% finance'),(219380,40995,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(219381,40995,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(219382,40995,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(219383,40995,'blocks_6_icon_row_items','3'),(219384,40995,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(219385,40995,'blocks_7_acfe_flexible_toggle',''),(219386,40995,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(219387,40995,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(219388,40995,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(219389,40995,'blocks_7_options_theme','#ffffff'),(219390,40995,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(219391,40995,'blocks_7_options_reverse','0'),(219392,40995,'_blocks_7_options_reverse','field_61768049bb8ac'),(219393,40995,'blocks_7_options',''),(219394,40995,'_blocks_7_options','field_617682517c334'),(219395,40995,'blocks_7_split_5050_image','40817'),(219396,40995,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(219397,40995,'blocks_7_split_5050_video',''),(219398,40995,'_blocks_7_split_5050_video','field_6239f3160848a'),(219399,40995,'blocks_7_split_5050_content_title',''),(219400,40995,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(219401,40995,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(219402,40995,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(219403,40995,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(219404,40995,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(219405,40995,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(219406,40995,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(219407,40995,'blocks_7_split_5050_content_actions','1'),(219408,40995,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(219409,40995,'blocks_7_split_5050_content',''),(219410,40995,'_blocks_7_split_5050_content','field_61767afceb8ba'),(219411,40995,'blocks_8_acfe_flexible_toggle',''),(219412,40995,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(219413,40995,'blocks_8_acfe_flexible_layout_title','Icons'),(219414,40995,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(219415,40995,'blocks_8_options_theme','#f5f5f5'),(219416,40995,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(219417,40995,'blocks_8_options_format','row'),(219418,40995,'_blocks_8_options_format','field_64bfde9a90690'),(219419,40995,'blocks_8_options',''),(219420,40995,'_blocks_8_options','field_64bfdd9b90684'),(219421,40995,'blocks_8_icon_row_items_0_icon','qualification.svg'),(219422,40995,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(219423,40995,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(219424,40995,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(219425,40995,'blocks_8_icon_row_items_0_text',''),(219426,40995,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(219427,40995,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(219428,40995,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(219429,40995,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(219430,40995,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(219431,40995,'blocks_8_icon_row_items_1_text',''),(219432,40995,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(219433,40995,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(219434,40995,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(219435,40995,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(219436,40995,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(219437,40995,'blocks_8_icon_row_items_2_text',''),(219438,40995,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(219439,40995,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(219440,40995,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(219441,40995,'blocks_8_icon_row_items_3_label','Flexible funding options'),(219442,40995,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(219443,40995,'blocks_8_icon_row_items_3_text',''),(219444,40995,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(219445,40995,'blocks_8_icon_row_items','4'),(219446,40995,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(219447,40995,'blocks_9_acfe_flexible_toggle',''),(219448,40995,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(219449,40995,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(219450,40995,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(219451,40995,'blocks_9_options_theme','#ffffff'),(219452,40995,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(219453,40995,'blocks_9_options_reverse','1'),(219454,40995,'_blocks_9_options_reverse','field_61768049bb8ac'),(219455,40995,'blocks_9_options',''),(219456,40995,'_blocks_9_options','field_617682517c334'),(219457,40995,'blocks_9_split_5050_image','39224'),(219458,40995,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(219459,40995,'blocks_9_split_5050_video',''),(219460,40995,'_blocks_9_split_5050_video','field_6239f3160848a'),(219461,40995,'blocks_9_split_5050_content_title','Locations'),(219462,40995,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(219463,40995,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(219464,40995,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(219465,40995,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(219466,40995,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(219467,40995,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(219468,40995,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(219469,40995,'blocks_9_split_5050_content_actions','1'),(219470,40995,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(219471,40995,'blocks_9_split_5050_content',''),(219472,40995,'_blocks_9_split_5050_content','field_61767afceb8ba'),(219473,40995,'blocks_1_acfe_flexible_toggle',''),(219474,40995,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(219475,40995,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(219476,40995,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(219477,40995,'blocks_1_options_theme','#ffffff'),(219478,40995,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(219479,40995,'blocks_1_options_reverse','0'),(219480,40995,'_blocks_1_options_reverse','field_61768049bb8ac'),(219481,40995,'blocks_1_options',''),(219482,40995,'_blocks_1_options','field_617682517c334'),(219483,40995,'blocks_1_split_5050_image','40785'),(219484,40995,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(219485,40995,'blocks_1_split_5050_video',''),(219486,40995,'_blocks_1_split_5050_video','field_6239f3160848a'),(219487,40995,'blocks_1_split_5050_content_title',''),(219488,40995,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(219489,40995,'blocks_1_split_5050_content_heading','Course Overview'),(219490,40995,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(219491,40995,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(219492,40995,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(219493,40995,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(219494,40995,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(219495,40995,'blocks_1_split_5050_content_actions','1'),(219496,40995,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(219497,40995,'blocks_1_split_5050_content',''),(219498,40995,'_blocks_1_split_5050_content','field_61767afceb8ba'),(219499,40995,'blocks_2_acfe_flexible_toggle',''),(219500,40995,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(219501,40995,'blocks_2_acfe_flexible_layout_title','Form'),(219502,40995,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(219503,40995,'blocks_2_row_content_format','standard'),(219504,40995,'_blocks_2_row_content_format','field_6481ead962881'),(219505,40995,'blocks_2_row_content_title',''),(219506,40995,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(219507,40995,'blocks_2_row_content_heading','Enquire Today'),(219508,40995,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(219509,40995,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(219510,40995,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(219511,40995,'blocks_2_row_content_actions',''),(219512,40995,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(219513,40995,'blocks_2_row_content',''),(219514,40995,'_blocks_2_row_content','field_61a0f5f5b3db0'),(219515,40995,'blocks_2_row_form','40394'),(219516,40995,'_blocks_2_row_form','field_61a4ff2c0b08e'),(219517,40995,'blocks_2_row_form_button_label',''),(219518,40995,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(219519,40995,'blocks_3_acfe_flexible_toggle',''),(219520,40995,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(219521,40995,'blocks_3_acfe_flexible_layout_title','Video'),(219522,40995,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(219523,40995,'blocks_3_size','large'),(219524,40995,'_blocks_3_size','field_6487038f297c1'),(219525,40995,'blocks_3_row_content_title',''),(219526,40995,'_blocks_3_row_content_title','field_64870132a865d'),(219527,40995,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(219528,40995,'_blocks_3_row_content_heading','field_64870142a865e'),(219529,40995,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(219530,40995,'_blocks_3_row_content_text','field_64870148a865f'),(219531,40995,'blocks_3_row_content',''),(219532,40995,'_blocks_3_row_content','field_6487008ba865c'),(219533,40995,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(219534,40995,'_blocks_3_video_src','field_6193c4a98ec07'),(219535,40995,'blocks_3_video_thumbnail',''),(219536,40995,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(219537,40995,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(219538,40995,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(219539,40995,'blocks_6_icon_row_items_2_label','Deposit & balance'),(219540,40995,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(219541,40995,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(219542,40995,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(219543,40995,'blocks_10_acfe_flexible_toggle','1'),(219544,40995,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(219545,40995,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(219546,40995,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(219547,40995,'blocks_10_options_theme','#ffffff'),(219548,40995,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(219549,40995,'blocks_10_options',''),(219550,40995,'_blocks_10_options','field_617ac0b7f6c08'),(219551,40995,'blocks_10_show','selection'),(219552,40995,'_blocks_10_show','field_61a49cba9d946'),(219553,40995,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(219554,40995,'_blocks_10_courses','field_61b244781ee0a'),(219555,40995,'blocks_10_open_whats_included','1'),(219556,40995,'_blocks_10_open_whats_included','field_66ebfd679450c'),(219557,40995,'blocks_10_open_key_information','0'),(219558,40995,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(219559,40995,'blocks_10_open',''),(219560,40995,'_blocks_10_open','field_66ebfd009450b'),(219561,40995,'blocks_11_acfe_flexible_toggle',''),(219562,40995,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(219563,40995,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(219564,40995,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(219565,40995,'blocks_11_options_theme','#ffffff'),(219566,40995,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(219567,40995,'blocks_11_options_reverse','0'),(219568,40995,'_blocks_11_options_reverse','field_61768049bb8ac'),(219569,40995,'blocks_11_options',''),(219570,40995,'_blocks_11_options','field_617682517c334'),(219571,40995,'blocks_11_split_5050_image','40812'),(219572,40995,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(219573,40995,'blocks_11_split_5050_video',''),(219574,40995,'_blocks_11_split_5050_video','field_6239f3160848a'),(219575,40995,'blocks_11_split_5050_content_title','Optimise Performance '),(219576,40995,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(219577,40995,'blocks_11_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(219578,40995,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(219579,40995,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(219580,40995,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(219581,40995,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(219582,40995,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(219583,40995,'blocks_11_split_5050_content_actions','1'),(219584,40995,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(219585,40995,'blocks_11_split_5050_content',''),(219586,40995,'_blocks_11_split_5050_content','field_61767afceb8ba'),(219587,40995,'blocks_12_acfe_flexible_toggle',''),(219588,40995,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(219589,40995,'blocks_12_acfe_flexible_layout_title','Template'),(219590,40995,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(219591,40995,'blocks_12_template','40987'),(219592,40995,'_blocks_12_template','field_617bdd570fe01'),(219593,40995,'blocks_13_acfe_flexible_toggle',''),(219594,40995,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(219595,40995,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(219596,40995,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(219597,40995,'blocks_13_options_theme','#f5f5f5'),(219598,40995,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(219599,40995,'blocks_13_options_state','0'),(219600,40995,'_blocks_13_options_state','field_6239fcb7508c5'),(219601,40995,'blocks_13_options',''),(219602,40995,'_blocks_13_options','field_6177e2991ac44'),(219603,40995,'blocks_13_content_title',''),(219604,40995,'_blocks_13_content_title','field_64d237e8bb1e2'),(219605,40995,'blocks_13_content_heading','FAQ\'s'),(219606,40995,'_blocks_13_content_heading','field_64d237e8bb1e3'),(219607,40995,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 01329 829444\">01329 829444</a>'),(219608,40995,'_blocks_13_content_text','field_64d237e8bb1e4'),(219609,40995,'blocks_13_content_actions',''),(219610,40995,'_blocks_13_content_actions','field_64d237e8bb1e5'),(219611,40995,'blocks_13_content_align','left'),(219612,40995,'_blocks_13_content_align','field_64d2443e6b6aa'),(219613,40995,'blocks_13_content',''),(219614,40995,'_blocks_13_content','field_64d237e8bb1e1'),(219615,40995,'blocks_13_accordion_content','faqs'),(219616,40995,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(219617,40995,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(219618,40995,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(219619,40995,'blocks_13_actions',''),(219620,40995,'_blocks_13_actions','field_61a746a817f7a'),(219621,40996,'hide_hero','0'),(219622,40996,'_hide_hero','field_66a2380fcda39'),(219623,40996,'hero_title','Funding Your Course'),(219624,40996,'_hero_title','field_617571fe285e8'),(219625,40996,'hero_text','Discover the various options available for funding and paying for your course with us.'),(219626,40996,'_hero_text','field_6175723c285e9'),(219627,40996,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(219628,40996,'_hero_actions_0_button','field_61757281285eb'),(219629,40996,'hero_actions','1'),(219630,40996,'_hero_actions','field_61757270285ea'),(219631,40996,'hero_style','default'),(219632,40996,'_hero_style','field_62051d9dc5324'),(219633,40996,'hero_image_pos_x','right'),(219634,40996,'_hero_image_pos_x','field_62ec3d05390bb'),(219635,40996,'hero_image_pos_y','top'),(219636,40996,'_hero_image_pos_y','field_62ec3d05390bc'),(219637,40996,'hero_image_pos',''),(219638,40996,'_hero_image_pos','field_62ec3d05390ba'),(219639,40996,'fft_hide_from_listings','0'),(219640,40996,'_fft_hide_from_listings','field_61f1320446ab2'),(219641,40996,'fft_page_format','default'),(219642,40996,'_fft_page_format','field_61ae213f1f218'),(219643,40996,'fft_hide_nav','0'),(219644,40996,'_fft_hide_nav','field_635bd5e43527c'),(219645,40996,'fft_hide_header_call_to_action','0'),(219646,40996,'_fft_hide_header_call_to_action','field_635bd6723527d'),(219647,40996,'fft_page_sitemap','0'),(219648,40996,'_fft_page_sitemap','field_61af9b34e8181'),(219649,40996,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(219650,40996,'_blocks','field_6176696113096'),(219651,40996,'_thumbnail_id','39334'),(219652,40996,'__thumbnail_id','field_617570855ddaf'),(219653,40996,'blocks_0_acfe_flexible_toggle',''),(219654,40996,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(219655,40996,'blocks_0_acfe_flexible_layout_title','Icons'),(219656,40996,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(219657,40996,'blocks_0_options_theme','#ffffff'),(219658,40996,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(219659,40996,'blocks_0_options_format','grid'),(219660,40996,'_blocks_0_options_format','field_64bfde9a90690'),(219661,40996,'blocks_0_options',''),(219662,40996,'_blocks_0_options','field_64bfdd9b90684'),(219663,40996,'blocks_0_row_content_title',''),(219664,40996,'_blocks_0_row_content_title','field_64bfdd9b90687'),(219665,40996,'blocks_0_row_content_heading','Fees & Funding Options'),(219666,40996,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(219667,40996,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(219668,40996,'_blocks_0_row_content_text','field_64bfdd9b90689'),(219669,40996,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(219670,40996,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(219671,40996,'blocks_0_row_content_actions','1'),(219672,40996,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(219673,40996,'blocks_0_row_content',''),(219674,40996,'_blocks_0_row_content','field_64bfdd9b90686'),(219675,40996,'blocks_0_icon_row_items_0_icon','pay-as-you-learn.svg'),(219676,40996,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(219677,40996,'blocks_0_icon_row_items_0_label','Pay in full'),(219678,40996,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(219679,40996,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(219680,40996,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(219681,40996,'blocks_0_icon_row_items_1_icon','finance.svg'),(219682,40996,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(219683,40996,'blocks_0_icon_row_items_1_label','0% finance*'),(219684,40996,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(219685,40996,'blocks_0_icon_row_items_1_text','Put down a deposit and spread the cost of your training with 0% finance.'),(219686,40996,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(219687,40996,'blocks_0_icon_row_items_2_icon','deposit.svg'),(219688,40996,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(219689,40996,'blocks_0_icon_row_items_2_label','Deposit & balance'),(219690,40996,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(219691,40996,'blocks_0_icon_row_items_2_text','Put down a deposit and pay the remaining balance in one lump sum later.'),(219692,40996,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(219693,40996,'blocks_0_icon_row_items_3_icon','pay-as-you-learn.svg'),(219694,40996,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(219695,40996,'blocks_0_icon_row_items_3_label','FlexPay'),(219696,40996,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(219697,40996,'blocks_0_icon_row_items_3_text','Put down a deposit and then pay for the rest of your training in monthly payments.'),(219698,40996,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(219699,40996,'blocks_0_icon_row_items','4'),(219700,40996,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(219701,40996,'blocks_1_acfe_flexible_toggle',''),(219702,40996,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(219703,40996,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(219704,40996,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(219705,40996,'blocks_1_options_theme','#ffffff'),(219706,40996,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(219707,40996,'blocks_1_options_reverse','0'),(219708,40996,'_blocks_1_options_reverse','field_61768049bb8ac'),(219709,40996,'blocks_1_options',''),(219710,40996,'_blocks_1_options','field_617682517c334'),(219711,40996,'blocks_1_split_5050_image','39335'),(219712,40996,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(219713,40996,'blocks_1_split_5050_video',''),(219714,40996,'_blocks_1_split_5050_video','field_6239f3160848a'),(219715,40996,'blocks_1_split_5050_content_title',''),(219716,40996,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(219717,40996,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(219718,40996,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(219719,40996,'blocks_1_split_5050_content_text','Training for a new career is a big investment, and as with all things in life, you tend to get what you pay for.\r\n\r\nWhen you invest in training from Future Fit, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 20 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(219720,40996,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(219721,40996,'blocks_1_split_5050_content_actions',''),(219722,40996,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(219723,40996,'blocks_1_split_5050_content',''),(219724,40996,'_blocks_1_split_5050_content','field_61767afceb8ba'),(219725,40996,'blocks_2_acfe_flexible_toggle',''),(219726,40996,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(219727,40996,'blocks_2_acfe_flexible_layout_title','Form'),(219728,40996,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(219729,40996,'blocks_2_row_content_format','standard'),(219730,40996,'_blocks_2_row_content_format','field_6481ead962881'),(219731,40996,'blocks_2_row_content_title',''),(219732,40996,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(219733,40996,'blocks_2_row_content_heading','We\'re here to help you succeed'),(219734,40996,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(219735,40996,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that best suits their needs.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to offer no-obligation advice and help you create a payment plan that suits you.'),(219736,40996,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(219737,40996,'blocks_2_row_content_actions',''),(219738,40996,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(219739,40996,'blocks_2_row_content',''),(219740,40996,'_blocks_2_row_content','field_61a0f5f5b3db0'),(219741,40996,'blocks_2_row_form',''),(219742,40996,'_blocks_2_row_form','field_61a4ff2c0b08e'),(219743,40996,'blocks_2_row_form_button_label',''),(219744,40996,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(219745,40996,'blocks_3_acfe_flexible_toggle',''),(219746,40996,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(219747,40996,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(219748,40996,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(219749,40996,'blocks_3_testimonial_slider_content_title',''),(219750,40996,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(219751,40996,'blocks_3_testimonial_slider_content_heading','Testimonials'),(219752,40996,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(219753,40996,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(219754,40996,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(219755,40996,'blocks_3_testimonial_slider_content_actions',''),(219756,40996,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(219757,40996,'blocks_3_testimonial_slider_content',''),(219758,40996,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(219759,40996,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(219760,40996,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(219761,40996,'blocks_3_testimonial_slider_ambassador_bool','0'),(219762,40996,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(219763,40997,'hide_hero','0'),(219764,40997,'_hide_hero','field_66a2380fcda39'),(219765,40997,'hero_title','Funding Your Course'),(219766,40997,'_hero_title','field_617571fe285e8'),(219767,40997,'hero_text','Discover the various options available for funding and paying for your course with us.'),(219768,40997,'_hero_text','field_6175723c285e9'),(219769,40997,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:57:\"https://biomechanicseducation.com/download-price-guide-2/\";s:6:\"target\";s:0:\"\";}'),(219770,40997,'_hero_actions_0_button','field_61757281285eb'),(219771,40997,'hero_actions','1'),(219772,40997,'_hero_actions','field_61757270285ea'),(219773,40997,'hero_style','default'),(219774,40997,'_hero_style','field_62051d9dc5324'),(219775,40997,'hero_image_pos_x','right'),(219776,40997,'_hero_image_pos_x','field_62ec3d05390bb'),(219777,40997,'hero_image_pos_y','top'),(219778,40997,'_hero_image_pos_y','field_62ec3d05390bc'),(219779,40997,'hero_image_pos',''),(219780,40997,'_hero_image_pos','field_62ec3d05390ba'),(219781,40997,'fft_hide_from_listings','0'),(219782,40997,'_fft_hide_from_listings','field_61f1320446ab2'),(219783,40997,'fft_page_format','default'),(219784,40997,'_fft_page_format','field_61ae213f1f218'),(219785,40997,'fft_hide_nav','0'),(219786,40997,'_fft_hide_nav','field_635bd5e43527c'),(219787,40997,'fft_hide_header_call_to_action','0'),(219788,40997,'_fft_hide_header_call_to_action','field_635bd6723527d'),(219789,40997,'fft_page_sitemap','0'),(219790,40997,'_fft_page_sitemap','field_61af9b34e8181'),(219791,40997,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(219792,40997,'_blocks','field_6176696113096'),(219793,40997,'_thumbnail_id','39334'),(219794,40997,'__thumbnail_id','field_617570855ddaf'),(219795,40997,'blocks_0_acfe_flexible_toggle',''),(219796,40997,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(219797,40997,'blocks_0_acfe_flexible_layout_title','Icons'),(219798,40997,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(219799,40997,'blocks_0_options_theme','#ffffff'),(219800,40997,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(219801,40997,'blocks_0_options_format','grid'),(219802,40997,'_blocks_0_options_format','field_64bfde9a90690'),(219803,40997,'blocks_0_options',''),(219804,40997,'_blocks_0_options','field_64bfdd9b90684'),(219805,40997,'blocks_0_row_content_title',''),(219806,40997,'_blocks_0_row_content_title','field_64bfdd9b90687'),(219807,40997,'blocks_0_row_content_heading','Fees & Funding Options'),(219808,40997,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(219809,40997,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(219810,40997,'_blocks_0_row_content_text','field_64bfdd9b90689'),(219811,40997,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(219812,40997,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(219813,40997,'blocks_0_row_content_actions','1'),(219814,40997,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(219815,40997,'blocks_0_row_content',''),(219816,40997,'_blocks_0_row_content','field_64bfdd9b90686'),(219817,40997,'blocks_0_icon_row_items_0_icon','pay-as-you-learn.svg'),(219818,40997,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(219819,40997,'blocks_0_icon_row_items_0_label','Pay in full'),(219820,40997,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(219821,40997,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(219822,40997,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(219823,40997,'blocks_0_icon_row_items_1_icon','finance.svg'),(219824,40997,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(219825,40997,'blocks_0_icon_row_items_1_label','0% finance*'),(219826,40997,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(219827,40997,'blocks_0_icon_row_items_1_text','Put down a deposit and spread the cost of your training with 0% finance.'),(219828,40997,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(219829,40997,'blocks_0_icon_row_items_2_icon','deposit.svg'),(219830,40997,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(219831,40997,'blocks_0_icon_row_items_2_label','Deposit & balance'),(219832,40997,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(219833,40997,'blocks_0_icon_row_items_2_text','Put down a deposit and pay the remaining balance in one lump sum later.'),(219834,40997,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(219835,40997,'blocks_0_icon_row_items','3'),(219836,40997,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(219837,40997,'blocks_1_acfe_flexible_toggle',''),(219838,40997,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(219839,40997,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(219840,40997,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(219841,40997,'blocks_1_options_theme','#ffffff'),(219842,40997,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(219843,40997,'blocks_1_options_reverse','0'),(219844,40997,'_blocks_1_options_reverse','field_61768049bb8ac'),(219845,40997,'blocks_1_options',''),(219846,40997,'_blocks_1_options','field_617682517c334'),(219847,40997,'blocks_1_split_5050_image','39335'),(219848,40997,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(219849,40997,'blocks_1_split_5050_video',''),(219850,40997,'_blocks_1_split_5050_video','field_6239f3160848a'),(219851,40997,'blocks_1_split_5050_content_title',''),(219852,40997,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(219853,40997,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(219854,40997,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(219855,40997,'blocks_1_split_5050_content_text','Training for a new career is a big investment, and as with all things in life, you tend to get what you pay for.\r\n\r\nWhen you invest in training from Biomechanics Education, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 20 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(219856,40997,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(219857,40997,'blocks_1_split_5050_content_actions',''),(219858,40997,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(219859,40997,'blocks_1_split_5050_content',''),(219860,40997,'_blocks_1_split_5050_content','field_61767afceb8ba'),(219861,40997,'blocks_2_acfe_flexible_toggle',''),(219862,40997,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(219863,40997,'blocks_2_acfe_flexible_layout_title','Form'),(219864,40997,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(219865,40997,'blocks_2_row_content_format','standard'),(219866,40997,'_blocks_2_row_content_format','field_6481ead962881'),(219867,40997,'blocks_2_row_content_title',''),(219868,40997,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(219869,40997,'blocks_2_row_content_heading','We\'re here to help you succeed'),(219870,40997,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(219871,40997,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that best suits their needs.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to offer no-obligation advice and help you create a payment plan that suits you.'),(219872,40997,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(219873,40997,'blocks_2_row_content_actions',''),(219874,40997,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(219875,40997,'blocks_2_row_content',''),(219876,40997,'_blocks_2_row_content','field_61a0f5f5b3db0'),(219877,40997,'blocks_2_row_form',''),(219878,40997,'_blocks_2_row_form','field_61a4ff2c0b08e'),(219879,40997,'blocks_2_row_form_button_label',''),(219880,40997,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(219881,40997,'blocks_3_acfe_flexible_toggle',''),(219882,40997,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(219883,40997,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(219884,40997,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(219885,40997,'blocks_3_testimonial_slider_content_title',''),(219886,40997,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(219887,40997,'blocks_3_testimonial_slider_content_heading','Testimonials'),(219888,40997,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(219889,40997,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(219890,40997,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(219891,40997,'blocks_3_testimonial_slider_content_actions',''),(219892,40997,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(219893,40997,'blocks_3_testimonial_slider_content',''),(219894,40997,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(219895,40997,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(219896,40997,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(219897,40997,'blocks_3_testimonial_slider_ambassador_bool','0'),(219898,40997,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(219899,40998,'hide_hero','0'),(219900,40998,'_hide_hero','field_66a2380fcda39'),(219901,40998,'hero_title','Download your price guide'),(219902,40998,'_hero_title','field_617571fe285e8'),(219903,40998,'hero_text',''),(219904,40998,'_hero_text','field_6175723c285e9'),(219905,40998,'hero_actions',''),(219906,40998,'_hero_actions','field_61757270285ea'),(219907,40998,'hero_style','default'),(219908,40998,'_hero_style','field_62051d9dc5324'),(219909,40998,'hero_image_pos_x','right'),(219910,40998,'_hero_image_pos_x','field_62ec3d05390bb'),(219911,40998,'hero_image_pos_y','top'),(219912,40998,'_hero_image_pos_y','field_62ec3d05390bc'),(219913,40998,'hero_image_pos',''),(219914,40998,'_hero_image_pos','field_62ec3d05390ba'),(219915,40998,'fft_hide_from_listings','0'),(219916,40998,'_fft_hide_from_listings','field_61f1320446ab2'),(219917,40998,'fft_page_format','default'),(219918,40998,'_fft_page_format','field_61ae213f1f218'),(219919,40998,'fft_hide_nav','0'),(219920,40998,'_fft_hide_nav','field_635bd5e43527c'),(219921,40998,'fft_hide_header_call_to_action','0'),(219922,40998,'_fft_hide_header_call_to_action','field_635bd6723527d'),(219923,40998,'fft_page_sitemap','0'),(219924,40998,'_fft_page_sitemap','field_61af9b34e8181'),(219925,40998,'blocks','a:6:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:5:\"quote\";i:4;s:10:\"link_stack\";i:5;s:18:\"testimonial_slider\";}'),(219926,40998,'_blocks','field_6176696113096'),(219927,40998,'_thumbnail_id','40294'),(219928,40998,'__thumbnail_id','field_617570855ddaf'),(219929,40998,'blocks_0_acfe_flexible_toggle',''),(219930,40998,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(219931,40998,'blocks_0_acfe_flexible_layout_title','Form'),(219932,40998,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(219933,40998,'blocks_0_row_content_format','standard'),(219934,40998,'_blocks_0_row_content_format','field_6481ead962881'),(219935,40998,'blocks_0_row_content_title','Enquire Now'),(219936,40998,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(219937,40998,'blocks_0_row_content_heading','Course Information and Price Guide'),(219938,40998,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(219939,40998,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain an overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(219940,40998,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(219941,40998,'blocks_0_row_content_actions',''),(219942,40998,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(219943,40998,'blocks_0_row_content',''),(219944,40998,'_blocks_0_row_content','field_61a0f5f5b3db0'),(219945,40998,'blocks_0_row_form','40394'),(219946,40998,'_blocks_0_row_form','field_61a4ff2c0b08e'),(219947,40998,'blocks_0_row_form_button_label',''),(219948,40998,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(219949,40998,'blocks_1_acfe_flexible_toggle','1'),(219950,40998,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(219951,40998,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(219952,40998,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(219953,40998,'blocks_1_options_theme','#ffffff'),(219954,40998,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(219955,40998,'blocks_1_options_reverse','0'),(219956,40998,'_blocks_1_options_reverse','field_61768049bb8ac'),(219957,40998,'blocks_1_options',''),(219958,40998,'_blocks_1_options','field_617682517c334'),(219959,40998,'blocks_1_split_5050_image','39271'),(219960,40998,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(219961,40998,'blocks_1_split_5050_video',''),(219962,40998,'_blocks_1_split_5050_video','field_6239f3160848a'),(219963,40998,'blocks_1_split_5050_content_title',''),(219964,40998,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(219965,40998,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(219966,40998,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(219967,40998,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(219968,40998,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(219969,40998,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(219970,40998,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(219971,40998,'blocks_1_split_5050_content_actions','1'),(219972,40998,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(219973,40998,'blocks_1_split_5050_content',''),(219974,40998,'_blocks_1_split_5050_content','field_61767afceb8ba'),(219975,40998,'blocks_2_acfe_flexible_toggle',''),(219976,40998,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(219977,40998,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(219978,40998,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(219979,40998,'blocks_2_options_theme','#ffffff'),(219980,40998,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(219981,40998,'blocks_2_options_reverse','0'),(219982,40998,'_blocks_2_options_reverse','field_61768049bb8ac'),(219983,40998,'blocks_2_options',''),(219984,40998,'_blocks_2_options','field_617682517c334'),(219985,40998,'blocks_2_split_5050_image','39271'),(219986,40998,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(219987,40998,'blocks_2_split_5050_video',''),(219988,40998,'_blocks_2_split_5050_video','field_6239f3160848a'),(219989,40998,'blocks_2_split_5050_content_title',''),(219990,40998,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(219991,40998,'blocks_2_split_5050_content_heading','What\'s included in this guide?'),(219992,40998,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(219993,40998,'blocks_2_split_5050_content_text','[accordion title=\"Understand our prices\" content=\"we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\"]\r\n\r\n[accordion title=\"Get to know our courses\" content=\"Access a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you’ll receive, awarding bodies and accreditations.\"]\r\n\r\n[accordion title=\"Learn about us as a business\" content=\"Get valuable information about Biomechanics Education and Future Fit Group. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.\"]'),(219994,40998,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(219995,40998,'blocks_2_split_5050_content_actions','1'),(219996,40998,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(219997,40998,'blocks_2_split_5050_content',''),(219998,40998,'_blocks_2_split_5050_content','field_61767afceb8ba'),(219999,40998,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(220000,40998,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(220001,40998,'blocks_3_acfe_flexible_toggle',''),(220002,40998,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(220003,40998,'blocks_3_acfe_flexible_layout_title','Quote'),(220004,40998,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(220005,40998,'blocks_3_quote_content','I just wanted to say thank you for transforming my knowledge. Without the Biomechanics Coaching Diploma, I would have been lost, but now I feel like I\'m not only giving clients a better understanding of their body but also further education is making more sense to me.  '),(220006,40998,'_blocks_3_quote_content','field_6177cdacdd67a'),(220007,40998,'blocks_3_quote_author',''),(220008,40998,'_blocks_3_quote_author','field_6177cdc6dd67b'),(220009,40998,'blocks_4_acfe_flexible_toggle',''),(220010,40998,'_blocks_4_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(220011,40998,'blocks_4_acfe_flexible_layout_title','Link Stack'),(220012,40998,'_blocks_4_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(220013,40998,'blocks_4_options_theme','#ffffff'),(220014,40998,'_blocks_4_options_theme','field_6177b758246af_field_6176830e2ad17'),(220015,40998,'blocks_4_options',''),(220016,40998,'_blocks_4_options','field_6177b758246ae'),(220017,40998,'blocks_4_link_stack_content_title',''),(220018,40998,'_blocks_4_link_stack_content_title','field_6177b7b600cf9'),(220019,40998,'blocks_4_link_stack_content_heading','Discover our expertise'),(220020,40998,'_blocks_4_link_stack_content_heading','field_6177b7b600cfa'),(220021,40998,'blocks_4_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(220022,40998,'_blocks_4_link_stack_content_text','field_6177b7b600cfb'),(220023,40998,'blocks_4_link_stack_content_actions',''),(220024,40998,'_blocks_4_link_stack_content_actions','field_6177b7b600cfc'),(220025,40998,'blocks_4_link_stack_content',''),(220026,40998,'_blocks_4_link_stack_content','field_6177b7b600cf8'),(220027,40998,'blocks_4_link_stack_0_label','Personal Training'),(220028,40998,'_blocks_4_link_stack_0_label','field_6177b80900d00'),(220029,40998,'blocks_4_link_stack_0_title','Discover Biomechanics in Personal Training'),(220030,40998,'_blocks_4_link_stack_0_title','field_6177b80f00d01'),(220031,40998,'blocks_4_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(220032,40998,'_blocks_4_link_stack_0_url','field_6177b82200d02'),(220033,40998,'blocks_4_link_stack_1_label','Pilates'),(220034,40998,'_blocks_4_link_stack_1_label','field_6177b80900d00'),(220035,40998,'blocks_4_link_stack_1_title','Discover Biomechanics in Pilates'),(220036,40998,'_blocks_4_link_stack_1_title','field_6177b80f00d01'),(220037,40998,'blocks_4_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(220038,40998,'_blocks_4_link_stack_1_url','field_6177b82200d02'),(220039,40998,'blocks_4_link_stack_2_label','Sports Coaches'),(220040,40998,'_blocks_4_link_stack_2_label','field_6177b80900d00'),(220041,40998,'blocks_4_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(220042,40998,'_blocks_4_link_stack_2_title','field_6177b80f00d01'),(220043,40998,'blocks_4_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(220044,40998,'_blocks_4_link_stack_2_url','field_6177b82200d02'),(220045,40998,'blocks_4_link_stack_3_label','SMT'),(220046,40998,'_blocks_4_link_stack_3_label','field_6177b80900d00'),(220047,40998,'blocks_4_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(220048,40998,'_blocks_4_link_stack_3_title','field_6177b80f00d01'),(220049,40998,'blocks_4_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(220050,40998,'_blocks_4_link_stack_3_url','field_6177b82200d02'),(220051,40998,'blocks_4_link_stack_4_label','Podiatrists'),(220052,40998,'_blocks_4_link_stack_4_label','field_6177b80900d00'),(220053,40998,'blocks_4_link_stack_4_title','Discover Biomechanics in Podiatry'),(220054,40998,'_blocks_4_link_stack_4_title','field_6177b80f00d01'),(220055,40998,'blocks_4_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(220056,40998,'_blocks_4_link_stack_4_url','field_6177b82200d02'),(220057,40998,'blocks_4_link_stack_5_label','Biomechanics Coach'),(220058,40998,'_blocks_4_link_stack_5_label','field_6177b80900d00'),(220059,40998,'blocks_4_link_stack_5_title','How to Become a Biomechanics Coach'),(220060,40998,'_blocks_4_link_stack_5_title','field_6177b80f00d01'),(220061,40998,'blocks_4_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(220062,40998,'_blocks_4_link_stack_5_url','field_6177b82200d02'),(220063,40998,'blocks_4_link_stack','6'),(220064,40998,'_blocks_4_link_stack','field_6177b7f600cff'),(220065,40998,'blocks_5_acfe_flexible_toggle','1'),(220066,40998,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(220067,40998,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(220068,40998,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(220069,40998,'blocks_5_testimonial_slider_content_title',''),(220070,40998,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(220071,40998,'blocks_5_testimonial_slider_content_heading','Testimonials'),(220072,40998,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(220073,40998,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(220074,40998,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(220075,40998,'blocks_5_testimonial_slider_content_actions',''),(220076,40998,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(220077,40998,'blocks_5_testimonial_slider_content',''),(220078,40998,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(220079,40998,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(220080,40998,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(220081,40998,'blocks_5_testimonial_slider_ambassador_bool','0'),(220082,40998,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(220083,40394,'form_fields_4_acfe_layout_col','12'),(220084,40394,'_form_fields_4_acfe_layout_col','field_layout_634558b91d0f6_col'),(220085,40394,'form_fields_4_layout_settings',''),(220086,40394,'_form_fields_4_layout_settings','field_layout_634558b91d0f6_settings'),(220087,40394,'form_fields_4_acfe_flexible_layout_title','Dropdown'),(220088,40394,'_form_fields_4_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(220089,40394,'form_fields_4_name','interestedinbiomechanics'),(220090,40394,'_form_fields_4_name','field_634558b91d0f8'),(220091,40394,'form_fields_4_label','I\'m Interested In'),(220092,40394,'_form_fields_4_label','field_634558b91d0f7'),(220093,40394,'form_fields_4_description',''),(220094,40394,'_form_fields_4_description','field_638904adb4657'),(220095,40394,'form_fields_4_options','Biomechanics Coaching'),(220096,40394,'_form_fields_4_options','field_634558c91d0fa'),(220097,39278,'_wp_old_date','2024-09-23'),(220098,40906,'_wp_old_date','2024-09-23'),(220099,40858,'_wp_old_date','2024-09-23'),(220100,39348,'_wp_old_date','2024-09-23'),(220101,39486,'_wp_old_date','2024-09-23'),(220102,39485,'_wp_old_date','2024-09-23'),(220103,39487,'_wp_old_date','2024-09-23'),(220104,39279,'_wp_old_date','2024-09-23'),(220105,39325,'_wp_old_date','2024-09-23'),(220106,39324,'_wp_old_date','2024-09-23'),(220107,39323,'_wp_old_date','2024-09-23'),(220108,39322,'_wp_old_date','2024-09-23'),(220109,39321,'_wp_old_date','2024-09-23'),(220110,39320,'_wp_old_date','2024-09-23'),(220111,39319,'_wp_old_date','2024-09-23'),(220112,39281,'_wp_old_date','2024-09-23'),(220113,39344,'_wp_old_date','2024-09-23'),(220114,39318,'_wp_old_date','2024-09-23'),(220115,39522,'_wp_old_date','2024-09-23'),(220119,39280,'_wp_old_date','2024-09-23'),(220176,41002,'_wp_attached_file','2024/09/Disability-Confidence-Badge-Future-Fit-Training.png'),(220177,41002,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:241;s:4:\"file\";s:59:\"2024/09/Disability-Confidence-Badge-Future-Fit-Training.png\";s:8:\"filesize\";i:22106;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:59:\"Disability-Confidence-Badge-Future-Fit-Training-400x193.png\";s:5:\"width\";i:400;s:6:\"height\";i:193;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25058;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:59:\"Disability-Confidence-Badge-Future-Fit-Training-400x241.png\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20577;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:59:\"Disability-Confidence-Badge-Future-Fit-Training-400x241.png\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20577;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:59:\"Disability-Confidence-Badge-Future-Fit-Training-300x241.png\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16380;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:59:\"Disability-Confidence-Badge-Future-Fit-Training-400x241.png\";s:5:\"width\";i:400;s:6:\"height\";i:241;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20577;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:59:\"Disability-Confidence-Badge-Future-Fit-Training-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28022;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(220178,41003,'hide_hero','1'),(220179,41003,'_hide_hero','field_66a2380fcda39'),(220180,41003,'hero_title','IMoveFreely Instructor Programme Workshop'),(220181,41003,'_hero_title','field_617571fe285e8'),(220182,41003,'hero_text',''),(220183,41003,'_hero_text','field_6175723c285e9'),(220184,41003,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(220185,41003,'_hero_actions_0_button','field_61757281285eb'),(220186,41003,'hero_actions','1'),(220187,41003,'_hero_actions','field_61757270285ea'),(220188,41003,'hero_style','default'),(220189,41003,'_hero_style','field_62051d9dc5324'),(220190,41003,'_thumbnail_id','40893'),(220191,41003,'__thumbnail_id','field_617570855ddaf'),(220192,41003,'hero_image_pos_x','right'),(220193,41003,'_hero_image_pos_x','field_62ec3d05390bb'),(220194,41003,'hero_image_pos_y','top'),(220195,41003,'_hero_image_pos_y','field_62ec3d05390bc'),(220196,41003,'hero_image_pos',''),(220197,41003,'_hero_image_pos','field_62ec3d05390ba'),(220198,41003,'fft_hide_from_listings','0'),(220199,41003,'_fft_hide_from_listings','field_61f1320446ab2'),(220200,41003,'fft_page_format','default'),(220201,41003,'_fft_page_format','field_61ae213f1f218'),(220202,41003,'fft_hide_nav','0'),(220203,41003,'_fft_hide_nav','field_635bd5e43527c'),(220204,41003,'fft_hide_header_call_to_action','0'),(220205,41003,'_fft_hide_header_call_to_action','field_635bd6723527d'),(220206,41003,'fft_page_sitemap','0'),(220207,41003,'_fft_page_sitemap','field_61af9b34e8181'),(220208,41003,'blocks_0_acfe_flexible_toggle',''),(220209,41003,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(220210,41003,'blocks_0_acfe_flexible_layout_title','Template'),(220211,41003,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(220212,41003,'blocks_0_template','39087'),(220213,41003,'_blocks_0_template','field_617bdd570fe01'),(220214,41003,'blocks_1_acfe_flexible_toggle',''),(220215,41003,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(220216,41003,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(220217,41003,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(220218,41003,'blocks_1_options_theme','#ffffff'),(220219,41003,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(220220,41003,'blocks_1_options_reverse','0'),(220221,41003,'_blocks_1_options_reverse','field_61768049bb8ac'),(220222,41003,'blocks_1_options',''),(220223,41003,'_blocks_1_options','field_617682517c334'),(220224,41003,'blocks_1_split_5050_image','40615'),(220225,41003,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(220226,41003,'blocks_1_split_5050_video',''),(220227,41003,'_blocks_1_split_5050_video','field_6239f3160848a'),(220228,41003,'blocks_1_split_5050_content_title',''),(220229,41003,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(220230,41003,'blocks_1_split_5050_content_heading','Overview'),(220231,41003,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(220232,41003,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(220233,41003,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(220234,41003,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(220235,41003,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(220236,41003,'blocks_1_split_5050_content_actions','1'),(220237,41003,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(220238,41003,'blocks_1_split_5050_content',''),(220239,41003,'_blocks_1_split_5050_content','field_61767afceb8ba'),(220240,41003,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:13:\"step_timeline\";i:4;s:11:\"promo_panel\";i:5;s:10:\"accordions\";}'),(220241,41003,'_blocks','field_6176696113096'),(220242,41003,'course_label_text','IMoveFreely Instructor programme workshop'),(220243,41003,'_course_label_text','field_61e17babf71fa'),(220244,41003,'course_label',''),(220245,41003,'_course_label','field_61e12f92749a7'),(220246,41003,'course_description','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants.'),(220247,41003,'_course_description','field_617ac5788e5e1'),(220248,41003,'course_key_info','2'),(220249,41003,'_course_key_info','field_617ac6ad8e5e2'),(220250,41003,'course_included','Profound effects on movement issues \r\n\r\nIdeal for injury prevention, rehabilitation, and activity preparation \r\n\r\nEvidence-based techniques for improved performance \r\n\r\nFlexible integration into existing classes '),(220251,41003,'_course_included','field_617ac6f08e5e4'),(220252,41003,'blocks_2_acfe_flexible_toggle',''),(220253,41003,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(220254,41003,'blocks_2_acfe_flexible_layout_title','Video'),(220255,41003,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(220256,41003,'blocks_2_size','large'),(220257,41003,'_blocks_2_size','field_6487038f297c1'),(220258,41003,'blocks_2_row_content_title',''),(220259,41003,'_blocks_2_row_content_title','field_64870132a865d'),(220260,41003,'blocks_2_row_content_heading','Intro to IMoveFreely Instructor workshop'),(220261,41003,'_blocks_2_row_content_heading','field_64870142a865e'),(220262,41003,'blocks_2_row_content_text',''),(220263,41003,'_blocks_2_row_content_text','field_64870148a865f'),(220264,41003,'blocks_2_row_content',''),(220265,41003,'_blocks_2_row_content','field_6487008ba865c'),(220266,41003,'blocks_2_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(220267,41003,'_blocks_2_video_src','field_6193c4a98ec07'),(220268,41003,'blocks_2_video_thumbnail',''),(220269,41003,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(220270,41003,'blocks_3_acfe_flexible_toggle',''),(220271,41003,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(220272,41003,'blocks_3_acfe_flexible_layout_title','Timeline'),(220273,41003,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(220274,41003,'blocks_3_options_theme','#ffffff'),(220275,41003,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(220276,41003,'blocks_3_options',''),(220277,41003,'_blocks_3_options','field_6177de53d1195'),(220278,41003,'blocks_3_timeline_content_title',''),(220279,41003,'_blocks_3_timeline_content_title','field_6177de53d1198'),(220280,41003,'blocks_3_timeline_content_heading','Who is the course suitable for? '),(220281,41003,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(220282,41003,'blocks_3_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(220283,41003,'_blocks_3_timeline_content_text','field_6177de53d119a'),(220284,41003,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(220285,41003,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(220286,41003,'blocks_3_timeline_content_actions','1'),(220287,41003,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(220288,41003,'blocks_3_timeline_content',''),(220289,41003,'_blocks_3_timeline_content','field_6177de53d1197'),(220290,41003,'blocks_3_timeline_items_0_title','Benefits'),(220291,41003,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(220292,41003,'blocks_3_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(220293,41003,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(220294,41003,'blocks_3_timeline_items_1_title','Curriculum Highlights'),(220295,41003,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(220296,41003,'blocks_3_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(220297,41003,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(220298,41003,'blocks_3_timeline_items_2_title','What pre-qualifications are required?'),(220299,41003,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(220300,41003,'blocks_3_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(220301,41003,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(220302,41003,'blocks_3_timeline_items','3'),(220303,41003,'_blocks_3_timeline_items','field_6177de53d119d'),(220304,41003,'blocks_4_acfe_flexible_toggle',''),(220305,41003,'_blocks_4_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(220306,41003,'blocks_4_acfe_flexible_layout_title','Promo Panel'),(220307,41003,'_blocks_4_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(220308,41003,'blocks_4_options_alignment','center'),(220309,41003,'_blocks_4_options_alignment','field_61769449f5490'),(220310,41003,'blocks_4_options',''),(220311,41003,'_blocks_4_options','field_617693e1428f0'),(220312,41003,'blocks_4_promo_panel_image','40615'),(220313,41003,'_blocks_4_promo_panel_image','field_617693e1428f3'),(220314,41003,'blocks_4_promo_panel_content_heading','Testimonial'),(220315,41003,'_blocks_4_promo_panel_content_heading','field_617693e1428f6'),(220316,41003,'blocks_4_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!” Jayne Nicholls Director Group X Training Ltd.\"'),(220317,41003,'_blocks_4_promo_panel_content_text','field_617693e1428f7'),(220318,41003,'blocks_4_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(220319,41003,'_blocks_4_promo_panel_content_actions_0_button','field_617693e1428f9'),(220320,41003,'blocks_4_promo_panel_content_actions','1'),(220321,41003,'_blocks_4_promo_panel_content_actions','field_617693e1428f8'),(220322,41003,'blocks_4_promo_panel_content',''),(220323,41003,'_blocks_4_promo_panel_content','field_617693e1428f4'),(220324,41003,'blocks_5_acfe_flexible_toggle',''),(220325,41003,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(220326,41003,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(220327,41003,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(220328,41003,'blocks_5_options_theme','#ffffff'),(220329,41003,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(220330,41003,'blocks_5_options_state','0'),(220331,41003,'_blocks_5_options_state','field_6239fcb7508c5'),(220332,41003,'blocks_5_options',''),(220333,41003,'_blocks_5_options','field_6177e2991ac44'),(220334,41003,'blocks_5_content_title',''),(220335,41003,'_blocks_5_content_title','field_64d237e8bb1e2'),(220336,41003,'blocks_5_content_heading','FAQ\'s'),(220337,41003,'_blocks_5_content_heading','field_64d237e8bb1e3'),(220338,41003,'blocks_5_content_text',''),(220339,41003,'_blocks_5_content_text','field_64d237e8bb1e4'),(220340,41003,'blocks_5_content_actions',''),(220341,41003,'_blocks_5_content_actions','field_64d237e8bb1e5'),(220342,41003,'blocks_5_content_align','left'),(220343,41003,'_blocks_5_content_align','field_64d2443e6b6aa'),(220344,41003,'blocks_5_content',''),(220345,41003,'_blocks_5_content','field_64d237e8bb1e1'),(220346,41003,'blocks_5_accordion_content','faqs'),(220347,41003,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(220348,41003,'blocks_5_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(220349,41003,'_blocks_5_accordion_faqs_select','field_6177e5f3633dd'),(220350,41003,'blocks_5_actions',''),(220351,41003,'_blocks_5_actions','field_61a746a817f7a'),(220352,41003,'course_label_label_theme','#0d1f73'),(220353,41003,'_course_label_label_theme','field_61e17bb8f71fb'),(220354,41003,'course_key_info_0_text','In-person Workshop'),(220355,41003,'_course_key_info_0_text','field_617ac6c38e5e3'),(220356,41003,'course_key_info_1_text','CPD Course'),(220357,41003,'_course_key_info_1_text','field_617ac6c38e5e3'),(220358,41005,'hide_hero','0'),(220359,41005,'_hide_hero','field_66a2380fcda39'),(220360,41005,'hero_title','Blogs'),(220361,41005,'_hero_title','field_617571fe285e8'),(220362,41005,'hero_text','Explore Insights and Expert Tips on Everything Biomechanics, Including Movement, Performance and Injury Prevention'),(220363,41005,'_hero_text','field_6175723c285e9'),(220364,41005,'hero_actions',''),(220365,41005,'_hero_actions','field_61757270285ea'),(220366,41005,'hero_style','default'),(220367,41005,'_hero_style','field_62051d9dc5324'),(220368,41005,'hero_image_pos_x','right'),(220369,41005,'_hero_image_pos_x','field_62ec3d05390bb'),(220370,41005,'hero_image_pos_y','top'),(220371,41005,'_hero_image_pos_y','field_62ec3d05390bc'),(220372,41005,'hero_image_pos',''),(220373,41005,'_hero_image_pos','field_62ec3d05390ba'),(220374,41005,'fft_hide_from_listings','0'),(220375,41005,'_fft_hide_from_listings','field_61f1320446ab2'),(220376,41005,'fft_page_format','default'),(220377,41005,'_fft_page_format','field_61ae213f1f218'),(220378,41005,'fft_hide_nav','0'),(220379,41005,'_fft_hide_nav','field_635bd5e43527c'),(220380,41005,'fft_hide_header_call_to_action','0'),(220381,41005,'_fft_hide_header_call_to_action','field_635bd6723527d'),(220382,41005,'fft_page_sitemap','0'),(220383,41005,'_fft_page_sitemap','field_61af9b34e8181'),(220384,41005,'blocks','a:1:{i:0;s:5:\"cards\";}'),(220385,41005,'_blocks','field_6176696113096'),(220386,41005,'blocks_0_acfe_flexible_toggle',''),(220387,41005,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(220388,41005,'blocks_0_acfe_flexible_layout_title','Cards'),(220389,41005,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(220390,41005,'blocks_0_options_theme','#ffffff'),(220391,41005,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(220392,41005,'blocks_0_options_format','grid'),(220393,41005,'_blocks_0_options_format','field_617a7b15245b5'),(220394,41005,'blocks_0_options_style','default'),(220395,41005,'_blocks_0_options_style','field_6278ffb63484a'),(220396,41005,'blocks_0_options_cards_current_listing','0'),(220397,41005,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(220398,41005,'blocks_0_options_cards_content','post_type'),(220399,41005,'_blocks_0_options_cards_content','field_617aba6122688'),(220400,41005,'blocks_0_options_cards_post_type','post'),(220401,41005,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(220402,41005,'blocks_0_options_cards_posts_per_page','6'),(220403,41005,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(220404,41005,'blocks_0_options',''),(220405,41005,'_blocks_0_options','field_617a7b15245b3'),(220406,41005,'blocks_0_options_cards_term','5'),(220407,41005,'_blocks_0_options_cards_term','field_6193f7c180895'),(220408,41005,'blocks_0_options_cards_pagination','1'),(220409,41005,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(220410,41005,'blocks_0_options_cards_filter_taxonomy','category'),(220411,41005,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(220412,41005,'_thumbnail_id','40918'),(220413,41005,'__thumbnail_id','field_617570855ddaf'),(220414,41006,'hide_hero','0'),(220415,41006,'_hide_hero','field_66a2380fcda39'),(220416,41006,'hero_title','Blogs'),(220417,41006,'_hero_title','field_617571fe285e8'),(220418,41006,'hero_text','Explore Insights and Expert Tips on Everything Biomechanics, Including Movement, Performance and Injury Prevention'),(220419,41006,'_hero_text','field_6175723c285e9'),(220420,41006,'hero_actions',''),(220421,41006,'_hero_actions','field_61757270285ea'),(220422,41006,'hero_style','default'),(220423,41006,'_hero_style','field_62051d9dc5324'),(220424,41006,'_thumbnail_id','40918'),(220425,41006,'__thumbnail_id','field_617570855ddaf'),(220426,41006,'hero_image_pos_x','right'),(220427,41006,'_hero_image_pos_x','field_62ec3d05390bb'),(220428,41006,'hero_image_pos_y','top'),(220429,41006,'_hero_image_pos_y','field_62ec3d05390bc'),(220430,41006,'hero_image_pos',''),(220431,41006,'_hero_image_pos','field_62ec3d05390ba'),(220432,41006,'fft_hide_from_listings','0'),(220433,41006,'_fft_hide_from_listings','field_61f1320446ab2'),(220434,41006,'fft_page_format','default'),(220435,41006,'_fft_page_format','field_61ae213f1f218'),(220436,41006,'fft_hide_nav','0'),(220437,41006,'_fft_hide_nav','field_635bd5e43527c'),(220438,41006,'fft_hide_header_call_to_action','0'),(220439,41006,'_fft_hide_header_call_to_action','field_635bd6723527d'),(220440,41006,'fft_page_sitemap','0'),(220441,41006,'_fft_page_sitemap','field_61af9b34e8181'),(220442,41006,'blocks_0_acfe_flexible_toggle',''),(220443,41006,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(220444,41006,'blocks_0_acfe_flexible_layout_title','Cards'),(220445,41006,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(220446,41006,'blocks_0_options_theme','#ffffff'),(220447,41006,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(220448,41006,'blocks_0_options_format','grid'),(220449,41006,'_blocks_0_options_format','field_617a7b15245b5'),(220450,41006,'blocks_0_options_style','default'),(220451,41006,'_blocks_0_options_style','field_6278ffb63484a'),(220452,41006,'blocks_0_options_cards_current_listing','0'),(220453,41006,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(220454,41006,'blocks_0_options_cards_content','post_type'),(220455,41006,'_blocks_0_options_cards_content','field_617aba6122688'),(220456,41006,'blocks_0_options_cards_post_type','post'),(220457,41006,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(220458,41006,'blocks_0_options_cards_posts_per_page','6'),(220459,41006,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(220460,41006,'blocks_0_options_cards_pagination','1'),(220461,41006,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(220462,41006,'blocks_0_options_cards_filter_taxonomy','category'),(220463,41006,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(220464,41006,'blocks_0_options',''),(220465,41006,'_blocks_0_options','field_617a7b15245b3'),(220466,41006,'blocks','a:1:{i:0;s:5:\"cards\";}'),(220467,41006,'_blocks','field_6176696113096'),(220468,41006,'blocks_0_options_cards_term','5'),(220469,41006,'_blocks_0_options_cards_term','field_6193f7c180895'),(220470,41007,'hide_hero','0'),(220471,41007,'_hide_hero','field_66a2380fcda39'),(220472,41007,'hero_title','Blogs'),(220473,41007,'_hero_title','field_617571fe285e8'),(220474,41007,'hero_text','Explore Insights and Expert Tips on Everything Biomechanics, Including Movement, Performance and Injury Prevention'),(220475,41007,'_hero_text','field_6175723c285e9'),(220476,41007,'hero_actions',''),(220477,41007,'_hero_actions','field_61757270285ea'),(220478,41007,'hero_style','default'),(220479,41007,'_hero_style','field_62051d9dc5324'),(220480,41007,'hero_image_pos_x','right'),(220481,41007,'_hero_image_pos_x','field_62ec3d05390bb'),(220482,41007,'hero_image_pos_y','top'),(220483,41007,'_hero_image_pos_y','field_62ec3d05390bc'),(220484,41007,'hero_image_pos',''),(220485,41007,'_hero_image_pos','field_62ec3d05390ba'),(220486,41007,'fft_hide_from_listings','0'),(220487,41007,'_fft_hide_from_listings','field_61f1320446ab2'),(220488,41007,'fft_page_format','default'),(220489,41007,'_fft_page_format','field_61ae213f1f218'),(220490,41007,'fft_hide_nav','0'),(220491,41007,'_fft_hide_nav','field_635bd5e43527c'),(220492,41007,'fft_hide_header_call_to_action','0'),(220493,41007,'_fft_hide_header_call_to_action','field_635bd6723527d'),(220494,41007,'fft_page_sitemap','0'),(220495,41007,'_fft_page_sitemap','field_61af9b34e8181'),(220496,41007,'blocks','a:1:{i:0;s:5:\"cards\";}'),(220497,41007,'_blocks','field_6176696113096'),(220498,41007,'blocks_0_acfe_flexible_toggle',''),(220499,41007,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(220500,41007,'blocks_0_acfe_flexible_layout_title','Cards'),(220501,41007,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(220502,41007,'blocks_0_options_theme','#ffffff'),(220503,41007,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(220504,41007,'blocks_0_options_format','grid'),(220505,41007,'_blocks_0_options_format','field_617a7b15245b5'),(220506,41007,'blocks_0_options_style','default'),(220507,41007,'_blocks_0_options_style','field_6278ffb63484a'),(220508,41007,'blocks_0_options_cards_current_listing','0'),(220509,41007,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(220510,41007,'blocks_0_options_cards_content','term'),(220511,41007,'_blocks_0_options_cards_content','field_617aba6122688'),(220512,41007,'blocks_0_options_cards_post_type','post'),(220513,41007,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(220514,41007,'blocks_0_options_cards_posts_per_page','6'),(220515,41007,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(220516,41007,'blocks_0_options',''),(220517,41007,'_blocks_0_options','field_617a7b15245b3'),(220518,41007,'blocks_0_options_cards_term','5'),(220519,41007,'_blocks_0_options_cards_term','field_6193f7c180895'),(220520,41007,'blocks_0_options_cards_pagination','1'),(220521,41007,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(220522,41007,'blocks_0_options_cards_filter_taxonomy','category'),(220523,41007,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(220524,41007,'_thumbnail_id','40918'),(220525,41007,'__thumbnail_id','field_617570855ddaf'),(220526,41008,'hide_hero','0'),(220527,41008,'_hide_hero','field_66a2380fcda39'),(220528,41008,'hero_title','Blogs'),(220529,41008,'_hero_title','field_617571fe285e8'),(220530,41008,'hero_text','Explore Insights and Expert Tips on Everything Biomechanics, Including Movement, Performance and Injury Prevention'),(220531,41008,'_hero_text','field_6175723c285e9'),(220532,41008,'hero_actions',''),(220533,41008,'_hero_actions','field_61757270285ea'),(220534,41008,'hero_style','default'),(220535,41008,'_hero_style','field_62051d9dc5324'),(220536,41008,'hero_image_pos_x','right'),(220537,41008,'_hero_image_pos_x','field_62ec3d05390bb'),(220538,41008,'hero_image_pos_y','top'),(220539,41008,'_hero_image_pos_y','field_62ec3d05390bc'),(220540,41008,'hero_image_pos',''),(220541,41008,'_hero_image_pos','field_62ec3d05390ba'),(220542,41008,'fft_hide_from_listings','0'),(220543,41008,'_fft_hide_from_listings','field_61f1320446ab2'),(220544,41008,'fft_page_format','default'),(220545,41008,'_fft_page_format','field_61ae213f1f218'),(220546,41008,'fft_hide_nav','0'),(220547,41008,'_fft_hide_nav','field_635bd5e43527c'),(220548,41008,'fft_hide_header_call_to_action','0'),(220549,41008,'_fft_hide_header_call_to_action','field_635bd6723527d'),(220550,41008,'fft_page_sitemap','0'),(220551,41008,'_fft_page_sitemap','field_61af9b34e8181'),(220552,41008,'blocks','a:1:{i:0;s:5:\"cards\";}'),(220553,41008,'_blocks','field_6176696113096'),(220554,41008,'blocks_0_acfe_flexible_toggle',''),(220555,41008,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(220556,41008,'blocks_0_acfe_flexible_layout_title','Cards'),(220557,41008,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(220558,41008,'blocks_0_options_theme','#ffffff'),(220559,41008,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(220560,41008,'blocks_0_options_format','carousel'),(220561,41008,'_blocks_0_options_format','field_617a7b15245b5'),(220562,41008,'blocks_0_options_style','default'),(220563,41008,'_blocks_0_options_style','field_6278ffb63484a'),(220564,41008,'blocks_0_options_cards_current_listing','0'),(220565,41008,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(220566,41008,'blocks_0_options_cards_content','term'),(220567,41008,'_blocks_0_options_cards_content','field_617aba6122688'),(220568,41008,'blocks_0_options_cards_post_type','post'),(220569,41008,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(220570,41008,'blocks_0_options_cards_posts_per_page','4'),(220571,41008,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(220572,41008,'blocks_0_options',''),(220573,41008,'_blocks_0_options','field_617a7b15245b3'),(220574,41008,'blocks_0_options_cards_term','5'),(220575,41008,'_blocks_0_options_cards_term','field_6193f7c180895'),(220576,41008,'blocks_0_options_cards_pagination','1'),(220577,41008,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(220578,41008,'blocks_0_options_cards_filter_taxonomy','category'),(220579,41008,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(220580,41008,'_thumbnail_id','40918'),(220581,41008,'__thumbnail_id','field_617570855ddaf'),(220582,41009,'hide_hero','0'),(220583,41009,'_hide_hero','field_66a2380fcda39'),(220584,41009,'hero_title','Blogs'),(220585,41009,'_hero_title','field_617571fe285e8'),(220586,41009,'hero_text','Explore Insights and Expert Tips on Everything Biomechanics, Including Movement, Performance and Injury Prevention'),(220587,41009,'_hero_text','field_6175723c285e9'),(220588,41009,'hero_actions',''),(220589,41009,'_hero_actions','field_61757270285ea'),(220590,41009,'hero_style','default'),(220591,41009,'_hero_style','field_62051d9dc5324'),(220592,41009,'hero_image_pos_x','right'),(220593,41009,'_hero_image_pos_x','field_62ec3d05390bb'),(220594,41009,'hero_image_pos_y','top'),(220595,41009,'_hero_image_pos_y','field_62ec3d05390bc'),(220596,41009,'hero_image_pos',''),(220597,41009,'_hero_image_pos','field_62ec3d05390ba'),(220598,41009,'fft_hide_from_listings','0'),(220599,41009,'_fft_hide_from_listings','field_61f1320446ab2'),(220600,41009,'fft_page_format','default'),(220601,41009,'_fft_page_format','field_61ae213f1f218'),(220602,41009,'fft_hide_nav','0'),(220603,41009,'_fft_hide_nav','field_635bd5e43527c'),(220604,41009,'fft_hide_header_call_to_action','0'),(220605,41009,'_fft_hide_header_call_to_action','field_635bd6723527d'),(220606,41009,'fft_page_sitemap','0'),(220607,41009,'_fft_page_sitemap','field_61af9b34e8181'),(220608,41009,'blocks','a:1:{i:0;s:5:\"cards\";}'),(220609,41009,'_blocks','field_6176696113096'),(220610,41009,'blocks_0_acfe_flexible_toggle',''),(220611,41009,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(220612,41009,'blocks_0_acfe_flexible_layout_title','Cards'),(220613,41009,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(220614,41009,'blocks_0_options_theme','#ffffff'),(220615,41009,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(220616,41009,'blocks_0_options_format','grid'),(220617,41009,'_blocks_0_options_format','field_617a7b15245b5'),(220618,41009,'blocks_0_options_style','default'),(220619,41009,'_blocks_0_options_style','field_6278ffb63484a'),(220620,41009,'blocks_0_options_cards_current_listing','0'),(220621,41009,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(220622,41009,'blocks_0_options_cards_content','term'),(220623,41009,'_blocks_0_options_cards_content','field_617aba6122688'),(220624,41009,'blocks_0_options_cards_post_type','post'),(220625,41009,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(220626,41009,'blocks_0_options_cards_posts_per_page','4'),(220627,41009,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(220628,41009,'blocks_0_options',''),(220629,41009,'_blocks_0_options','field_617a7b15245b3'),(220630,41009,'blocks_0_options_cards_term','5'),(220631,41009,'_blocks_0_options_cards_term','field_6193f7c180895'),(220632,41009,'blocks_0_options_cards_pagination','1'),(220633,41009,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(220634,41009,'blocks_0_options_cards_filter_taxonomy','category'),(220635,41009,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(220636,41009,'_thumbnail_id','40918'),(220637,41009,'__thumbnail_id','field_617570855ddaf'),(220638,41010,'hide_hero','0'),(220639,41010,'_hide_hero','field_66a2380fcda39'),(220640,41010,'hero_title','Blogs'),(220641,41010,'_hero_title','field_617571fe285e8'),(220642,41010,'hero_text','Explore Insights and Expert Tips on Everything Biomechanics, Including Movement, Performance and Injury Prevention'),(220643,41010,'_hero_text','field_6175723c285e9'),(220644,41010,'hero_actions',''),(220645,41010,'_hero_actions','field_61757270285ea'),(220646,41010,'hero_style','default'),(220647,41010,'_hero_style','field_62051d9dc5324'),(220648,41010,'hero_image_pos_x','right'),(220649,41010,'_hero_image_pos_x','field_62ec3d05390bb'),(220650,41010,'hero_image_pos_y','top'),(220651,41010,'_hero_image_pos_y','field_62ec3d05390bc'),(220652,41010,'hero_image_pos',''),(220653,41010,'_hero_image_pos','field_62ec3d05390ba'),(220654,41010,'fft_hide_from_listings','0'),(220655,41010,'_fft_hide_from_listings','field_61f1320446ab2'),(220656,41010,'fft_page_format','default'),(220657,41010,'_fft_page_format','field_61ae213f1f218'),(220658,41010,'fft_hide_nav','0'),(220659,41010,'_fft_hide_nav','field_635bd5e43527c'),(220660,41010,'fft_hide_header_call_to_action','0'),(220661,41010,'_fft_hide_header_call_to_action','field_635bd6723527d'),(220662,41010,'fft_page_sitemap','0'),(220663,41010,'_fft_page_sitemap','field_61af9b34e8181'),(220664,41010,'blocks','a:1:{i:0;s:5:\"cards\";}'),(220665,41010,'_blocks','field_6176696113096'),(220666,41010,'blocks_0_acfe_flexible_toggle',''),(220667,41010,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(220668,41010,'blocks_0_acfe_flexible_layout_title','Cards'),(220669,41010,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(220670,41010,'blocks_0_options_theme','#ffffff'),(220671,41010,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(220672,41010,'blocks_0_options_format','grid'),(220673,41010,'_blocks_0_options_format','field_617a7b15245b5'),(220674,41010,'blocks_0_options_style','default'),(220675,41010,'_blocks_0_options_style','field_6278ffb63484a'),(220676,41010,'blocks_0_options_cards_current_listing','0'),(220677,41010,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(220678,41010,'blocks_0_options_cards_content','term'),(220679,41010,'_blocks_0_options_cards_content','field_617aba6122688'),(220680,41010,'blocks_0_options_cards_post_type','post'),(220681,41010,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(220682,41010,'blocks_0_options_cards_posts_per_page','4'),(220683,41010,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(220684,41010,'blocks_0_options',''),(220685,41010,'_blocks_0_options','field_617a7b15245b3'),(220686,41010,'blocks_0_options_cards_term','5'),(220687,41010,'_blocks_0_options_cards_term','field_6193f7c180895'),(220688,41010,'blocks_0_options_cards_pagination','1'),(220689,41010,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(220690,41010,'blocks_0_options_cards_filter_taxonomy','post_tag'),(220691,41010,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(220692,41010,'_thumbnail_id','40918'),(220693,41010,'__thumbnail_id','field_617570855ddaf'),(220694,41011,'hide_hero','0'),(220695,41011,'_hide_hero','field_66a2380fcda39'),(220696,41011,'hero_title','Blogs'),(220697,41011,'_hero_title','field_617571fe285e8'),(220698,41011,'hero_text','Explore Insights and Expert Tips on Everything Biomechanics, Including Movement, Performance and Injury Prevention'),(220699,41011,'_hero_text','field_6175723c285e9'),(220700,41011,'hero_actions',''),(220701,41011,'_hero_actions','field_61757270285ea'),(220702,41011,'hero_style','default'),(220703,41011,'_hero_style','field_62051d9dc5324'),(220704,41011,'hero_image_pos_x','right'),(220705,41011,'_hero_image_pos_x','field_62ec3d05390bb'),(220706,41011,'hero_image_pos_y','top'),(220707,41011,'_hero_image_pos_y','field_62ec3d05390bc'),(220708,41011,'hero_image_pos',''),(220709,41011,'_hero_image_pos','field_62ec3d05390ba'),(220710,41011,'fft_hide_from_listings','0'),(220711,41011,'_fft_hide_from_listings','field_61f1320446ab2'),(220712,41011,'fft_page_format','default'),(220713,41011,'_fft_page_format','field_61ae213f1f218'),(220714,41011,'fft_hide_nav','0'),(220715,41011,'_fft_hide_nav','field_635bd5e43527c'),(220716,41011,'fft_hide_header_call_to_action','0'),(220717,41011,'_fft_hide_header_call_to_action','field_635bd6723527d'),(220718,41011,'fft_page_sitemap','0'),(220719,41011,'_fft_page_sitemap','field_61af9b34e8181'),(220720,41011,'blocks','a:1:{i:0;s:5:\"cards\";}'),(220721,41011,'_blocks','field_6176696113096'),(220722,41011,'blocks_0_acfe_flexible_toggle',''),(220723,41011,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(220724,41011,'blocks_0_acfe_flexible_layout_title','Cards'),(220725,41011,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(220726,41011,'blocks_0_options_theme','#ffffff'),(220727,41011,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(220728,41011,'blocks_0_options_format','grid'),(220729,41011,'_blocks_0_options_format','field_617a7b15245b5'),(220730,41011,'blocks_0_options_style','default'),(220731,41011,'_blocks_0_options_style','field_6278ffb63484a'),(220732,41011,'blocks_0_options_cards_current_listing','0'),(220733,41011,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(220734,41011,'blocks_0_options_cards_content','term'),(220735,41011,'_blocks_0_options_cards_content','field_617aba6122688'),(220736,41011,'blocks_0_options_cards_post_type','post'),(220737,41011,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(220738,41011,'blocks_0_options_cards_posts_per_page','4'),(220739,41011,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(220740,41011,'blocks_0_options',''),(220741,41011,'_blocks_0_options','field_617a7b15245b3'),(220742,41011,'blocks_0_options_cards_term','5'),(220743,41011,'_blocks_0_options_cards_term','field_6193f7c180895'),(220744,41011,'blocks_0_options_cards_pagination','1'),(220745,41011,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(220746,41011,'blocks_0_options_cards_filter_taxonomy','course-level'),(220747,41011,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(220748,41011,'_thumbnail_id','40918'),(220749,41011,'__thumbnail_id','field_617570855ddaf'),(220750,41012,'hide_hero','0'),(220751,41012,'_hide_hero','field_66a2380fcda39'),(220752,41012,'hero_title','Blogs'),(220753,41012,'_hero_title','field_617571fe285e8'),(220754,41012,'hero_text','Explore Insights and Expert Tips on Everything Biomechanics, Including Movement, Performance and Injury Prevention'),(220755,41012,'_hero_text','field_6175723c285e9'),(220756,41012,'hero_actions',''),(220757,41012,'_hero_actions','field_61757270285ea'),(220758,41012,'hero_style','default'),(220759,41012,'_hero_style','field_62051d9dc5324'),(220760,41012,'hero_image_pos_x','right'),(220761,41012,'_hero_image_pos_x','field_62ec3d05390bb'),(220762,41012,'hero_image_pos_y','top'),(220763,41012,'_hero_image_pos_y','field_62ec3d05390bc'),(220764,41012,'hero_image_pos',''),(220765,41012,'_hero_image_pos','field_62ec3d05390ba'),(220766,41012,'fft_hide_from_listings','0'),(220767,41012,'_fft_hide_from_listings','field_61f1320446ab2'),(220768,41012,'fft_page_format','default'),(220769,41012,'_fft_page_format','field_61ae213f1f218'),(220770,41012,'fft_hide_nav','0'),(220771,41012,'_fft_hide_nav','field_635bd5e43527c'),(220772,41012,'fft_hide_header_call_to_action','0'),(220773,41012,'_fft_hide_header_call_to_action','field_635bd6723527d'),(220774,41012,'fft_page_sitemap','0'),(220775,41012,'_fft_page_sitemap','field_61af9b34e8181'),(220776,41012,'blocks','a:1:{i:0;s:5:\"cards\";}'),(220777,41012,'_blocks','field_6176696113096'),(220778,41012,'blocks_0_acfe_flexible_toggle',''),(220779,41012,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(220780,41012,'blocks_0_acfe_flexible_layout_title','Cards'),(220781,41012,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(220782,41012,'blocks_0_options_theme','#ffffff'),(220783,41012,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(220784,41012,'blocks_0_options_format','grid'),(220785,41012,'_blocks_0_options_format','field_617a7b15245b5'),(220786,41012,'blocks_0_options_style','default'),(220787,41012,'_blocks_0_options_style','field_6278ffb63484a'),(220788,41012,'blocks_0_options_cards_current_listing','0'),(220789,41012,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(220790,41012,'blocks_0_options_cards_content','term'),(220791,41012,'_blocks_0_options_cards_content','field_617aba6122688'),(220792,41012,'blocks_0_options_cards_post_type','post'),(220793,41012,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(220794,41012,'blocks_0_options_cards_posts_per_page','4'),(220795,41012,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(220796,41012,'blocks_0_options',''),(220797,41012,'_blocks_0_options','field_617a7b15245b3'),(220798,41012,'blocks_0_options_cards_term','5'),(220799,41012,'_blocks_0_options_cards_term','field_6193f7c180895'),(220800,41012,'blocks_0_options_cards_pagination','1'),(220801,41012,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(220802,41012,'blocks_0_options_cards_filter_taxonomy','category'),(220803,41012,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(220804,41012,'_thumbnail_id','40918'),(220805,41012,'__thumbnail_id','field_617570855ddaf'),(220806,41014,'hide_hero','0'),(220807,41014,'_hide_hero','field_66a2380fcda39'),(220808,41014,'hero_title','Introduction to Intrinsic Biomechanics'),(220809,41014,'_hero_title','field_617571fe285e8'),(220810,41014,'hero_text','Welcome to the Intrinsic Biomechanics Online CPD Training – Gain a deeper level of understanding of the body and human movement.'),(220811,41014,'_hero_text','field_6175723c285e9'),(220812,41014,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Add To Basket - Free\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(220813,41014,'_hero_actions_0_button','field_61757281285eb'),(220814,41014,'hero_actions','1'),(220815,41014,'_hero_actions','field_61757270285ea'),(220816,41014,'hero_style','default'),(220817,41014,'_hero_style','field_62051d9dc5324'),(220818,41014,'_thumbnail_id','40628'),(220819,41014,'__thumbnail_id','field_617570855ddaf'),(220820,41014,'hero_image_pos_x','right'),(220821,41014,'_hero_image_pos_x','field_62ec3d05390bb'),(220822,41014,'hero_image_pos_y','top'),(220823,41014,'_hero_image_pos_y','field_62ec3d05390bc'),(220824,41014,'hero_image_pos',''),(220825,41014,'_hero_image_pos','field_62ec3d05390ba'),(220826,41014,'fft_hide_from_listings','0'),(220827,41014,'_fft_hide_from_listings','field_61f1320446ab2'),(220828,41014,'fft_page_format','default'),(220829,41014,'_fft_page_format','field_61ae213f1f218'),(220830,41014,'fft_hide_nav','0'),(220831,41014,'_fft_hide_nav','field_635bd5e43527c'),(220832,41014,'fft_hide_header_call_to_action','0'),(220833,41014,'_fft_hide_header_call_to_action','field_635bd6723527d'),(220834,41014,'fft_page_sitemap','0'),(220835,41014,'_fft_page_sitemap','field_61af9b34e8181'),(220836,41014,'blocks_0_acfe_flexible_toggle',''),(220837,41014,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(220838,41014,'blocks_0_acfe_flexible_layout_title','Text Block'),(220839,41014,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(220840,41014,'blocks_0_options_theme','#ffffff'),(220841,41014,'_blocks_0_options_theme','field_6176830e2ad17'),(220842,41014,'blocks_0_options',''),(220843,41014,'_blocks_0_options','field_6176830e2ad16'),(220844,41014,'blocks_0_text_block_heading','Overview'),(220845,41014,'_blocks_0_text_block_heading','field_617669d413097'),(220846,41014,'blocks_0_text_block_content','Unlock a profound comprehension of the human body and movement patterns with our 2-hour online virtual classroom recording, complete with a comprehensive handout available for immediate download.\r\n\r\nAre your clients grappling with limited squat range or struggling to press overhead due to shoulder issues? Perhaps they avoid certain exercises due to physical constraints or pain. Witness transformative improvements in their movement and address your own mobility goals.'),(220847,41014,'_blocks_0_text_block_content','field_617669ec13098'),(220848,41014,'blocks_1_acfe_flexible_toggle',''),(220849,41014,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(220850,41014,'blocks_1_acfe_flexible_layout_title','Timeline'),(220851,41014,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(220852,41014,'blocks_1_options_theme','#f5f5f5'),(220853,41014,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(220854,41014,'blocks_1_options',''),(220855,41014,'_blocks_1_options','field_6177de53d1195'),(220856,41014,'blocks_1_timeline_content_title',''),(220857,41014,'_blocks_1_timeline_content_title','field_6177de53d1198'),(220858,41014,'blocks_1_timeline_content_heading','Course Information'),(220859,41014,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(220860,41014,'blocks_1_timeline_content_text','<strong>Discover how to:</strong>\r\n<ul>\r\n 	<li>Conduct evidence-based screenings to pinpoint movement limitations.</li>\r\n 	<li>Master techniques enhancing the functionality of the pelvis, spine, and shoulder.</li>\r\n</ul>'),(220861,41014,'_blocks_1_timeline_content_text','field_6177de53d119a'),(220862,41014,'blocks_1_timeline_content_actions',''),(220863,41014,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(220864,41014,'blocks_1_timeline_content',''),(220865,41014,'_blocks_1_timeline_content','field_6177de53d1197'),(220866,41014,'blocks_1_timeline_items_0_title','Explore Pelvic Biomechanics'),(220867,41014,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(220868,41014,'blocks_1_timeline_items_0_text','Uncover evidence-based assessments, identify sub-clinical muscle spasms, discern between structural and functional leg length discrepancies, and implement exercises to enhance pelvic function.'),(220869,41014,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(220870,41014,'blocks_1_timeline_items_1_title','Dive into Spine Biomechanics'),(220871,41014,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(220872,41014,'blocks_1_timeline_items_1_text','Learn how to assess and correct thoracic rotation – a game-changing skill with far-reaching effects.'),(220873,41014,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(220874,41014,'blocks_1_timeline_items_2_title','Delve into Shoulder Biomechanics'),(220875,41014,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(220876,41014,'blocks_1_timeline_items_2_text','Assess and correct shoulder function, focusing on key muscles influencing posture and movement right down to the feet.'),(220877,41014,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(220878,41014,'blocks_1_timeline_items','3'),(220879,41014,'_blocks_1_timeline_items','field_6177de53d119d'),(220880,41014,'blocks_2_acfe_flexible_toggle',''),(220881,41014,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(220882,41014,'blocks_2_acfe_flexible_layout_title','Text Block'),(220883,41014,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(220884,41014,'blocks_2_options_theme','#ffffff'),(220885,41014,'_blocks_2_options_theme','field_6176830e2ad17'),(220886,41014,'blocks_2_options',''),(220887,41014,'_blocks_2_options','field_6176830e2ad16'),(220888,41014,'blocks_2_text_block_heading','Please note'),(220889,41014,'_blocks_2_text_block_heading','field_617669d413097'),(220890,41014,'blocks_2_text_block_content','This online training aims to inform and enrich the understanding of fitness and exercise instructors through Continuing Professional Development (CPD). For an attendance certificate, face-to-face participation is required. Upon payment, access the video link and instantly download the handout PDF. Revisit using your registered email to access all purchases.\r\n\r\nOpt to attend the face-to-face Intrinsic Biomechanics Workshop, and not only will you receive a refund for the online training, but you\'ll also secure your attendance certificate.'),(220891,41014,'_blocks_2_text_block_content','field_617669ec13098'),(220892,41014,'blocks_3_acfe_flexible_toggle',''),(220893,41014,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(220894,41014,'blocks_3_acfe_flexible_layout_title','Button(s)'),(220895,41014,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(220896,41014,'blocks_3_options_theme','#ffffff'),(220897,41014,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(220898,41014,'blocks_3_options',''),(220899,41014,'_blocks_3_options','field_623b03edb6e65'),(220900,41014,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:20:\"Add To Basket - Free\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(220901,41014,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(220902,41014,'blocks_3_actions','1'),(220903,41014,'_blocks_3_actions','field_623b03edb6e6e'),(220904,41014,'blocks_4_acfe_flexible_toggle',''),(220905,41014,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(220906,41014,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(220907,41014,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(220908,41014,'blocks_4_options_theme','#ffffff'),(220909,41014,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(220910,41014,'blocks_4_options_state','0'),(220911,41014,'_blocks_4_options_state','field_6239fcb7508c5'),(220912,41014,'blocks_4_options',''),(220913,41014,'_blocks_4_options','field_6177e2991ac44'),(220914,41014,'blocks_4_content_title',''),(220915,41014,'_blocks_4_content_title','field_64d237e8bb1e2'),(220916,41014,'blocks_4_content_heading',''),(220917,41014,'_blocks_4_content_heading','field_64d237e8bb1e3'),(220918,41014,'blocks_4_content_text',''),(220919,41014,'_blocks_4_content_text','field_64d237e8bb1e4'),(220920,41014,'blocks_4_content_actions',''),(220921,41014,'_blocks_4_content_actions','field_64d237e8bb1e5'),(220922,41014,'blocks_4_content_align','left'),(220923,41014,'_blocks_4_content_align','field_64d2443e6b6aa'),(220924,41014,'blocks_4_content',''),(220925,41014,'_blocks_4_content','field_64d237e8bb1e1'),(220926,41014,'blocks_4_accordion_content','custom'),(220927,41014,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(220928,41014,'blocks_4_accordion_items',''),(220929,41014,'_blocks_4_accordion_items','field_6177e2991ac4c'),(220930,41014,'blocks_4_actions',''),(220931,41014,'_blocks_4_actions','field_61a746a817f7a'),(220932,41014,'blocks','a:5:{i:0;s:10:\"text_block\";i:1;s:13:\"step_timeline\";i:2;s:10:\"text_block\";i:3;s:7:\"buttons\";i:4;s:10:\"accordions\";}'),(220933,41014,'_blocks','field_6176696113096'),(220934,41014,'course_label_text','Introduction to Intrinsic Biomechanics'),(220935,41014,'_course_label_text','field_61e17babf71fa'),(220936,41014,'course_label',''),(220937,41014,'_course_label','field_61e12f92749a7'),(220938,41014,'course_description','Welcome to the Intrinsic Biomechanics Online CPD Training – Gain a deeper level of understanding of the body and human movement.'),(220939,41014,'_course_description','field_617ac5788e5e1'),(220940,41014,'course_key_info','3'),(220941,41014,'_course_key_info','field_617ac6ad8e5e2'),(220942,41014,'course_included','Conduct evidence-based screenings to pinpoint movement limitations.\r\nMaster techniques enhancing the functionality of the pelvis, spine, and shoulder.'),(220943,41014,'_course_included','field_617ac6f08e5e4'),(220944,41014,'course_label_label_theme','#0d1f73'),(220945,41014,'_course_label_label_theme','field_61e17bb8f71fb'),(220946,41014,'course_key_info_0_text','Online CPD'),(220947,41014,'_course_key_info_0_text','field_617ac6c38e5e3'),(220948,41014,'course_key_info_1_text','CIMSPA'),(220949,41014,'_course_key_info_1_text','field_617ac6c38e5e3'),(220950,41014,'course_key_info_2_text','Online Learning'),(220951,41014,'_course_key_info_2_text','field_617ac6c38e5e3'),(220952,40417,'form_fields_4_acfe_layout_col','12'),(220953,40417,'_form_fields_4_acfe_layout_col','field_layout_634558b91d0f6_col'),(220954,40417,'form_fields_4_layout_settings',''),(220955,40417,'_form_fields_4_layout_settings','field_layout_634558b91d0f6_settings'),(220956,40417,'form_fields_4_acfe_flexible_layout_title','Dropdown'),(220957,40417,'_form_fields_4_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(220958,40417,'form_fields_4_name','interestedinbiomechanics'),(220959,40417,'_form_fields_4_name','field_634558b91d0f8'),(220960,40417,'form_fields_4_label','I\'m Interested In'),(220961,40417,'_form_fields_4_label','field_634558b91d0f7'),(220962,40417,'form_fields_4_description',''),(220963,40417,'_form_fields_4_description','field_638904adb4657'),(220964,40417,'form_fields_4_options','Biomechanics Coaching'),(220965,40417,'_form_fields_4_options','field_634558c91d0fa'),(220966,40416,'form_fields_4_acfe_layout_col','12'),(220967,40416,'_form_fields_4_acfe_layout_col','field_layout_634558b91d0f6_col'),(220968,40416,'form_fields_4_layout_settings',''),(220969,40416,'_form_fields_4_layout_settings','field_layout_634558b91d0f6_settings'),(220970,40416,'form_fields_4_acfe_flexible_layout_title','Dropdown'),(220971,40416,'_form_fields_4_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(220972,40416,'form_fields_4_name','interestedinbiomechanics'),(220973,40416,'_form_fields_4_name','field_634558b91d0f8'),(220974,40416,'form_fields_4_label','I\'m Interested In'),(220975,40416,'_form_fields_4_label','field_634558b91d0f7'),(220976,40416,'form_fields_4_description',''),(220977,40416,'_form_fields_4_description','field_638904adb4657'),(220978,40416,'form_fields_4_options','Biomechanics Coaching'),(220979,40416,'_form_fields_4_options','field_634558c91d0fa'),(220980,40414,'form_fields_4_acfe_layout_col','12'),(220981,40414,'_form_fields_4_acfe_layout_col','field_layout_634558b91d0f6_col'),(220982,40414,'form_fields_4_layout_settings',''),(220983,40414,'_form_fields_4_layout_settings','field_layout_634558b91d0f6_settings'),(220984,40414,'form_fields_4_acfe_flexible_layout_title','Dropdown'),(220985,40414,'_form_fields_4_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(220986,40414,'form_fields_4_name','interestedinbiomechanics'),(220987,40414,'_form_fields_4_name','field_634558b91d0f8'),(220988,40414,'form_fields_4_label','I\'m Interested In'),(220989,40414,'_form_fields_4_label','field_634558b91d0f7'),(220990,40414,'form_fields_4_description',''),(220991,40414,'_form_fields_4_description','field_638904adb4657'),(220992,40414,'form_fields_4_options','Biomechanics Coaching'),(220993,40414,'_form_fields_4_options','field_634558c91d0fa'),(220994,40413,'form_fields_4_acfe_layout_col','12'),(220995,40413,'_form_fields_4_acfe_layout_col','field_layout_634558b91d0f6_col'),(220996,40413,'form_fields_4_layout_settings',''),(220997,40413,'_form_fields_4_layout_settings','field_layout_634558b91d0f6_settings'),(220998,40413,'form_fields_4_acfe_flexible_layout_title','Dropdown'),(220999,40413,'_form_fields_4_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(221000,40413,'form_fields_4_name','interestedinbiomechanics'),(221001,40413,'_form_fields_4_name','field_634558b91d0f8'),(221002,40413,'form_fields_4_label','I\'m Interested In'),(221003,40413,'_form_fields_4_label','field_634558b91d0f7'),(221004,40413,'form_fields_4_description',''),(221005,40413,'_form_fields_4_description','field_638904adb4657'),(221006,40413,'form_fields_4_options','Biomechanics Coaching'),(221007,40413,'_form_fields_4_options','field_634558c91d0fa'),(221008,41018,'hide_hero','0'),(221009,41018,'_hide_hero','field_66a2380fcda39'),(221010,41018,'hero_title',''),(221011,41018,'_hero_title','field_617571fe285e8'),(221012,41018,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(221013,41018,'_hero_text','field_6175723c285e9'),(221014,41018,'hero_actions','1'),(221015,41018,'_hero_actions','field_61757270285ea'),(221016,41018,'hero_style','default'),(221017,41018,'_hero_style','field_62051d9dc5324'),(221018,41018,'_thumbnail_id','40288'),(221019,41018,'__thumbnail_id','field_617570855ddaf'),(221020,41018,'hero_image_pos_x','right'),(221021,41018,'_hero_image_pos_x','field_62ec3d05390bb'),(221022,41018,'hero_image_pos_y','top'),(221023,41018,'_hero_image_pos_y','field_62ec3d05390bc'),(221024,41018,'hero_image_pos',''),(221025,41018,'_hero_image_pos','field_62ec3d05390ba'),(221026,41018,'fft_hide_from_listings','0'),(221027,41018,'_fft_hide_from_listings','field_61f1320446ab2'),(221028,41018,'fft_page_format','default'),(221029,41018,'_fft_page_format','field_61ae213f1f218'),(221030,41018,'fft_hide_nav','0'),(221031,41018,'_fft_hide_nav','field_635bd5e43527c'),(221032,41018,'fft_hide_header_call_to_action','0'),(221033,41018,'_fft_hide_header_call_to_action','field_635bd6723527d'),(221034,41018,'fft_page_sitemap','0'),(221035,41018,'_fft_page_sitemap','field_61af9b34e8181'),(221036,41018,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(221037,41018,'_blocks','field_6176696113096'),(221038,41018,'course_label_text','Womens Health - Menopause and Programming'),(221039,41018,'_course_label_text','field_61e17babf71fa'),(221040,41018,'course_label',''),(221041,41018,'_course_label','field_61e12f92749a7'),(221042,41018,'course_description','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(221043,41018,'_course_description','field_617ac5788e5e1'),(221044,41018,'course_key_info','3'),(221045,41018,'_course_key_info','field_617ac6ad8e5e2'),(221046,41018,'course_included','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(221047,41018,'_course_included','field_617ac6f08e5e4'),(221048,41018,'blocks_0_acfe_flexible_toggle',''),(221049,41018,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(221050,41018,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(221051,41018,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(221052,41018,'blocks_0_options_theme','#ffffff'),(221053,41018,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(221054,41018,'blocks_0_options_reverse','0'),(221055,41018,'_blocks_0_options_reverse','field_61768049bb8ac'),(221056,41018,'blocks_0_options',''),(221057,41018,'_blocks_0_options','field_617682517c334'),(221058,41018,'blocks_0_split_5050_image','40290'),(221059,41018,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(221060,41018,'blocks_0_split_5050_video',''),(221061,41018,'_blocks_0_split_5050_video','field_6239f3160848a'),(221062,41018,'blocks_0_split_5050_content_title',''),(221063,41018,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(221064,41018,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(221065,41018,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(221066,41018,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(221067,41018,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(221068,41018,'blocks_0_split_5050_content_actions',''),(221069,41018,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(221070,41018,'blocks_0_split_5050_content',''),(221071,41018,'_blocks_0_split_5050_content','field_61767afceb8ba'),(221072,41018,'blocks_1_acfe_flexible_toggle',''),(221073,41018,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(221074,41018,'blocks_1_acfe_flexible_layout_title','Icons'),(221075,41018,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(221076,41018,'blocks_1_options_theme','#b61234'),(221077,41018,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(221078,41018,'blocks_1_options_format','grid'),(221079,41018,'_blocks_1_options_format','field_64bfde9a90690'),(221080,41018,'blocks_1_options',''),(221081,41018,'_blocks_1_options','field_64bfdd9b90684'),(221082,41018,'blocks_1_row_content_title',''),(221083,41018,'_blocks_1_row_content_title','field_64bfdd9b90687'),(221084,41018,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(221085,41018,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(221086,41018,'blocks_1_row_content_text',''),(221087,41018,'_blocks_1_row_content_text','field_64bfdd9b90689'),(221088,41018,'blocks_1_row_content_actions',''),(221089,41018,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(221090,41018,'blocks_1_row_content',''),(221091,41018,'_blocks_1_row_content','field_64bfdd9b90686'),(221092,41018,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(221093,41018,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(221094,41018,'blocks_1_icon_row_items_0_label',''),(221095,41018,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(221096,41018,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(221097,41018,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(221098,41018,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(221099,41018,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(221100,41018,'blocks_1_icon_row_items_1_label',''),(221101,41018,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(221102,41018,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(221103,41018,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(221104,41018,'blocks_1_icon_row_items_2_icon','referrals.svg'),(221105,41018,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(221106,41018,'blocks_1_icon_row_items_2_label',''),(221107,41018,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(221108,41018,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(221109,41018,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(221110,41018,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(221111,41018,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(221112,41018,'blocks_1_icon_row_items_3_label',''),(221113,41018,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(221114,41018,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(221115,41018,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(221116,41018,'blocks_1_icon_row_items','4'),(221117,41018,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(221118,41018,'blocks_2_acfe_flexible_toggle',''),(221119,41018,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(221120,41018,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(221121,41018,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(221122,41018,'blocks_2_options_theme','#ffffff'),(221123,41018,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(221124,41018,'blocks_2_options_reverse','1'),(221125,41018,'_blocks_2_options_reverse','field_61768049bb8ac'),(221126,41018,'blocks_2_options',''),(221127,41018,'_blocks_2_options','field_617682517c334'),(221128,41018,'blocks_2_split_5050_image','40294'),(221129,41018,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(221130,41018,'blocks_2_split_5050_video',''),(221131,41018,'_blocks_2_split_5050_video','field_6239f3160848a'),(221132,41018,'blocks_2_split_5050_content_title',''),(221133,41018,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(221134,41018,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(221135,41018,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(221136,41018,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(221137,41018,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(221138,41018,'blocks_2_split_5050_content_actions',''),(221139,41018,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(221140,41018,'blocks_2_split_5050_content',''),(221141,41018,'_blocks_2_split_5050_content','field_61767afceb8ba'),(221142,41018,'blocks_3_acfe_flexible_toggle',''),(221143,41018,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(221144,41018,'blocks_3_acfe_flexible_layout_title','Tabs'),(221145,41018,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(221146,41018,'blocks_3_options_theme','#ffffff'),(221147,41018,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(221148,41018,'blocks_3_options',''),(221149,41018,'_blocks_3_options','field_6177cfcd8140f'),(221150,41018,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(221151,41018,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(221152,41018,'blocks_3_tabs_0_tab_content_title',''),(221153,41018,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(221154,41018,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(221155,41018,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(221156,41018,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(221157,41018,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(221158,41018,'blocks_3_tabs_0_tab_content_actions','1'),(221159,41018,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(221160,41018,'blocks_3_tabs_0_tab_content',''),(221161,41018,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(221162,41018,'blocks_3_tabs_0_tab_image',''),(221163,41018,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(221164,41018,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(221165,41018,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(221166,41018,'blocks_3_tabs_1_tab_content_title',''),(221167,41018,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(221168,41018,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(221169,41018,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(221170,41018,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(221171,41018,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(221172,41018,'blocks_3_tabs_1_tab_content_actions','1'),(221173,41018,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(221174,41018,'blocks_3_tabs_1_tab_content',''),(221175,41018,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(221176,41018,'blocks_3_tabs_1_tab_image',''),(221177,41018,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(221178,41018,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(221179,41018,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(221180,41018,'blocks_3_tabs_2_tab_content_title',''),(221181,41018,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(221182,41018,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(221183,41018,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(221184,41018,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(221185,41018,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(221186,41018,'blocks_3_tabs_2_tab_content_actions','1'),(221187,41018,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(221188,41018,'blocks_3_tabs_2_tab_content',''),(221189,41018,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(221190,41018,'blocks_3_tabs_2_tab_image',''),(221191,41018,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(221192,41018,'blocks_3_tabs','3'),(221193,41018,'_blocks_3_tabs','field_6177cff281419'),(221194,41018,'blocks_3_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(221195,41018,'_blocks_3_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(221196,41018,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(221197,41018,'_hero_actions_0_button','field_61757281285eb'),(221198,41018,'blocks_3_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(221199,41018,'_blocks_3_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(221200,41018,'blocks_3_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(221201,41018,'_blocks_3_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(221202,41018,'course_label_label_theme','#0d1f73'),(221203,41018,'_course_label_label_theme','field_61e17bb8f71fb'),(221204,41018,'course_key_info_0_text','Online CPD'),(221205,41018,'_course_key_info_0_text','field_617ac6c38e5e3'),(221206,41018,'course_key_info_1_text','Online Learning'),(221207,41018,'_course_key_info_1_text','field_617ac6c38e5e3'),(221208,41018,'course_key_info_2_text','No Entry Requirements'),(221209,41018,'_course_key_info_2_text','field_617ac6c38e5e3'),(221210,40277,'blocks_4_open_whats_included','1'),(221211,40277,'_blocks_4_open_whats_included','field_66ebfd679450c'),(221212,40277,'blocks_4_open_key_information','0'),(221213,40277,'_blocks_4_open_key_information','field_66ebfd7f9450d'),(221214,40277,'blocks_4_open',''),(221215,40277,'_blocks_4_open','field_66ebfd009450b'),(221216,41028,'hide_hero','0'),(221217,41028,'_hide_hero','field_66a2380fcda39'),(221218,41028,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(221219,41028,'_hero_title','field_617571fe285e8'),(221220,41028,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(221221,41028,'_hero_text','field_6175723c285e9'),(221222,41028,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(221223,41028,'_hero_actions_0_button','field_61757281285eb'),(221224,41028,'hero_actions','1'),(221225,41028,'_hero_actions','field_61757270285ea'),(221226,41028,'hero_style','default'),(221227,41028,'_hero_style','field_62051d9dc5324'),(221228,41028,'_thumbnail_id','40615'),(221229,41028,'__thumbnail_id','field_617570855ddaf'),(221230,41028,'hero_image_pos_x','right'),(221231,41028,'_hero_image_pos_x','field_62ec3d05390bb'),(221232,41028,'hero_image_pos_y','top'),(221233,41028,'_hero_image_pos_y','field_62ec3d05390bc'),(221234,41028,'hero_image_pos',''),(221235,41028,'_hero_image_pos','field_62ec3d05390ba'),(221236,41028,'fft_hide_from_listings','0'),(221237,41028,'_fft_hide_from_listings','field_61f1320446ab2'),(221238,41028,'fft_page_format','default'),(221239,41028,'_fft_page_format','field_61ae213f1f218'),(221240,41028,'fft_hide_nav','0'),(221241,41028,'_fft_hide_nav','field_635bd5e43527c'),(221242,41028,'fft_hide_header_call_to_action','0'),(221243,41028,'_fft_hide_header_call_to_action','field_635bd6723527d'),(221244,41028,'fft_page_sitemap','0'),(221245,41028,'_fft_page_sitemap','field_61af9b34e8181'),(221246,41028,'blocks_0_acfe_flexible_toggle',''),(221247,41028,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(221248,41028,'blocks_0_acfe_flexible_layout_title','Text Block'),(221249,41028,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(221250,41028,'blocks_0_options_theme','#f5f5f5'),(221251,41028,'_blocks_0_options_theme','field_6176830e2ad17'),(221252,41028,'blocks_0_options',''),(221253,41028,'_blocks_0_options','field_6176830e2ad16'),(221254,41028,'blocks_0_text_block_heading','Overview'),(221255,41028,'_blocks_0_text_block_heading','field_617669d413097'),(221256,41028,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(221257,41028,'_blocks_0_text_block_content','field_617669ec13098'),(221258,41028,'blocks_1_acfe_flexible_toggle',''),(221259,41028,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(221260,41028,'blocks_1_acfe_flexible_layout_title','Logos'),(221261,41028,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(221262,41028,'blocks_1_options_theme','#ffffff'),(221263,41028,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(221264,41028,'blocks_1_options_format','grid'),(221265,41028,'_blocks_1_options_format','field_61782964ee971'),(221266,41028,'blocks_1_options',''),(221267,41028,'_blocks_1_options','field_61782954ee965'),(221268,41028,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(221269,41028,'_blocks_1_logos','field_61782954ee96d'),(221270,41028,'blocks_1_title',''),(221271,41028,'_blocks_1_title','field_668fbfdc2daa1'),(221272,41028,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:18:\"testimonial_slider\";i:6;s:10:\"accordions\";}'),(221273,41028,'_blocks','field_6176696113096'),(221274,41028,'course_label_text','iMoveFreely Online CPD'),(221275,41028,'_course_label_text','field_61e17babf71fa'),(221276,41028,'course_label',''),(221277,41028,'_course_label','field_61e12f92749a7'),(221278,41028,'course_description','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(221279,41028,'_course_description','field_617ac5788e5e1'),(221280,41028,'course_key_info','1'),(221281,41028,'_course_key_info','field_617ac6ad8e5e2'),(221282,41028,'course_included','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.'),(221283,41028,'_course_included','field_617ac6f08e5e4'),(221284,41028,'blocks_2_acfe_flexible_toggle',''),(221285,41028,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(221286,41028,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(221287,41028,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(221288,41028,'blocks_2_options_theme','#b61234'),(221289,41028,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(221290,41028,'blocks_2_options_reverse','0'),(221291,41028,'_blocks_2_options_reverse','field_61768049bb8ac'),(221292,41028,'blocks_2_options',''),(221293,41028,'_blocks_2_options','field_617682517c334'),(221294,41028,'blocks_2_split_5050_image','40618'),(221295,41028,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(221296,41028,'blocks_2_split_5050_video',''),(221297,41028,'_blocks_2_split_5050_video','field_6239f3160848a'),(221298,41028,'blocks_2_split_5050_content_title',''),(221299,41028,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(221300,41028,'blocks_2_split_5050_content_heading','Course Overview'),(221301,41028,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(221302,41028,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.\r\n\r\nInstructors through Continuing Professional Development (CPD). To obtain your iMoveFreely Instructor certificate, face-to-face attendance is required.\r\n\r\nUpon payment, access the recorded workshop and instantly download the comprehensive handout PDF. For future access, simply log in using your registered email.'),(221303,41028,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(221304,41028,'blocks_2_split_5050_content_actions','1'),(221305,41028,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(221306,41028,'blocks_2_split_5050_content',''),(221307,41028,'_blocks_2_split_5050_content','field_61767afceb8ba'),(221308,41028,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(221309,41028,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(221310,41028,'blocks_3_acfe_flexible_toggle',''),(221311,41028,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(221312,41028,'blocks_3_acfe_flexible_layout_title','Text Block'),(221313,41028,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(221314,41028,'blocks_3_options_theme','#ffffff'),(221315,41028,'_blocks_3_options_theme','field_6176830e2ad17'),(221316,41028,'blocks_3_options',''),(221317,41028,'_blocks_3_options','field_6176830e2ad16'),(221318,41028,'blocks_3_text_block_heading','Other Courses'),(221319,41028,'_blocks_3_text_block_heading','field_617669d413097'),(221320,41028,'blocks_3_text_block_content','Check out a range of other courses that are frequently purchased'),(221321,41028,'_blocks_3_text_block_content','field_617669ec13098'),(221322,41028,'blocks_4_acfe_flexible_toggle',''),(221323,41028,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(221324,41028,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(221325,41028,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(221326,41028,'blocks_4_options_theme','#ffffff'),(221327,41028,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(221328,41028,'blocks_4_options',''),(221329,41028,'_blocks_4_options','field_617ac0b7f6c08'),(221330,41028,'blocks_4_show','category'),(221331,41028,'_blocks_4_show','field_61a49cba9d946'),(221332,41028,'blocks_4_category','403'),(221333,41028,'_blocks_4_category','field_61a49cd79d947'),(221334,41028,'blocks_5_acfe_flexible_toggle',''),(221335,41028,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(221336,41028,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(221337,41028,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(221338,41028,'blocks_5_testimonial_slider_content_title',''),(221339,41028,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(221340,41028,'blocks_5_testimonial_slider_content_heading','Testimonials'),(221341,41028,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(221342,41028,'blocks_5_testimonial_slider_content_text',''),(221343,41028,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(221344,41028,'blocks_5_testimonial_slider_content_actions',''),(221345,41028,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(221346,41028,'blocks_5_testimonial_slider_content',''),(221347,41028,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(221348,41028,'blocks_5_testimonial_slider_items',''),(221349,41028,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(221350,41028,'blocks_5_testimonial_slider_ambassador_bool','0'),(221351,41028,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(221352,41028,'blocks_6_acfe_flexible_toggle',''),(221353,41028,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(221354,41028,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(221355,41028,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(221356,41028,'blocks_6_options_theme','#ffffff'),(221357,41028,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(221358,41028,'blocks_6_options_state','0'),(221359,41028,'_blocks_6_options_state','field_6239fcb7508c5'),(221360,41028,'blocks_6_options',''),(221361,41028,'_blocks_6_options','field_6177e2991ac44'),(221362,41028,'blocks_6_content_title',''),(221363,41028,'_blocks_6_content_title','field_64d237e8bb1e2'),(221364,41028,'blocks_6_content_heading',''),(221365,41028,'_blocks_6_content_heading','field_64d237e8bb1e3'),(221366,41028,'blocks_6_content_text',''),(221367,41028,'_blocks_6_content_text','field_64d237e8bb1e4'),(221368,41028,'blocks_6_content_actions',''),(221369,41028,'_blocks_6_content_actions','field_64d237e8bb1e5'),(221370,41028,'blocks_6_content_align','left'),(221371,41028,'_blocks_6_content_align','field_64d2443e6b6aa'),(221372,41028,'blocks_6_content',''),(221373,41028,'_blocks_6_content','field_64d237e8bb1e1'),(221374,41028,'blocks_6_accordion_content','custom'),(221375,41028,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(221376,41028,'blocks_6_accordion_items',''),(221377,41028,'_blocks_6_accordion_items','field_6177e2991ac4c'),(221378,41028,'blocks_6_actions',''),(221379,41028,'_blocks_6_actions','field_61a746a817f7a'),(221380,41028,'course_label_label_theme','#0d1f73'),(221381,41028,'_course_label_label_theme','field_61e17bb8f71fb'),(221382,41028,'course_key_info_0_text','Online Learning CPD'),(221383,41028,'_course_key_info_0_text','field_617ac6c38e5e3'),(221384,41028,'blocks_4_open_whats_included','1'),(221385,41028,'_blocks_4_open_whats_included','field_66ebfd679450c'),(221386,41028,'blocks_4_open_key_information','0'),(221387,41028,'_blocks_4_open_key_information','field_66ebfd7f9450d'),(221388,41028,'blocks_4_open',''),(221389,41028,'_blocks_4_open','field_66ebfd009450b'),(221390,40281,'blocks_6_open_whats_included','1'),(221391,40281,'_blocks_6_open_whats_included','field_66ebfd679450c'),(221392,40281,'blocks_6_open_key_information','0'),(221393,40281,'_blocks_6_open_key_information','field_66ebfd7f9450d'),(221394,40281,'blocks_6_open',''),(221395,40281,'_blocks_6_open','field_66ebfd009450b'),(221396,41029,'hide_hero','0'),(221397,41029,'_hide_hero','field_66a2380fcda39'),(221398,41029,'hero_title','Introduction To Running Biomechanics'),(221399,41029,'_hero_title','field_617571fe285e8'),(221400,41029,'hero_text','Discover the Secrets of Optimal Running Styles in this Comprehensive 3hr 15min Classroom Recording & Handout Session! '),(221401,41029,'_hero_text','field_6175723c285e9'),(221402,41029,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(221403,41029,'_hero_actions_0_button','field_61757281285eb'),(221404,41029,'hero_actions','1'),(221405,41029,'_hero_actions','field_61757270285ea'),(221406,41029,'hero_style','default'),(221407,41029,'_hero_style','field_62051d9dc5324'),(221408,41029,'_thumbnail_id','40611'),(221409,41029,'__thumbnail_id','field_617570855ddaf'),(221410,41029,'hero_image_pos_x','right'),(221411,41029,'_hero_image_pos_x','field_62ec3d05390bb'),(221412,41029,'hero_image_pos_y','top'),(221413,41029,'_hero_image_pos_y','field_62ec3d05390bc'),(221414,41029,'hero_image_pos',''),(221415,41029,'_hero_image_pos','field_62ec3d05390ba'),(221416,41029,'fft_hide_from_listings','0'),(221417,41029,'_fft_hide_from_listings','field_61f1320446ab2'),(221418,41029,'fft_page_format','default'),(221419,41029,'_fft_page_format','field_61ae213f1f218'),(221420,41029,'fft_hide_nav','0'),(221421,41029,'_fft_hide_nav','field_635bd5e43527c'),(221422,41029,'fft_hide_header_call_to_action','0'),(221423,41029,'_fft_hide_header_call_to_action','field_635bd6723527d'),(221424,41029,'fft_page_sitemap','0'),(221425,41029,'_fft_page_sitemap','field_61af9b34e8181'),(221426,41029,'blocks_0_acfe_flexible_toggle',''),(221427,41029,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(221428,41029,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(221429,41029,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(221430,41029,'blocks_0_options_theme','#ffffff'),(221431,41029,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(221432,41029,'blocks_0_options_reverse','0'),(221433,41029,'_blocks_0_options_reverse','field_61768049bb8ac'),(221434,41029,'blocks_0_options',''),(221435,41029,'_blocks_0_options','field_617682517c334'),(221436,41029,'blocks_0_split_5050_image','40612'),(221437,41029,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(221438,41029,'blocks_0_split_5050_video',''),(221439,41029,'_blocks_0_split_5050_video','field_6239f3160848a'),(221440,41029,'blocks_0_split_5050_content_title',''),(221441,41029,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(221442,41029,'blocks_0_split_5050_content_heading','Course Overview'),(221443,41029,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(221444,41029,'blocks_0_split_5050_content_text','<strong>Embrace the Essence of Running</strong>\r\n\r\nRunning is a cornerstone of fitness, yet the ongoing debate on the best running style can be confusing. Simplify the complexity with our Introduction to Running Biomechanics Online Training.\r\n\r\n<strong>Tailored for You</strong>\r\n\r\nNo one-size-fits-all approach here. This workshop dissects the evidence supporting various running styles, empowering you to make informed choices for you and your clients.\r\n\r\n<strong>What You\'ll Gain</strong>\r\n<ul>\r\n 	<li>Master running club terminology.</li>\r\n 	<li>Grasp the mechanics and sequencing of different running gaits.</li>\r\n 	<li>Explore extrinsic influences and identify intrinsic restrictions.</li>\r\n</ul>'),(221445,41029,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(221446,41029,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(221447,41029,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(221448,41029,'blocks_0_split_5050_content_actions','1'),(221449,41029,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(221450,41029,'blocks_0_split_5050_content',''),(221451,41029,'_blocks_0_split_5050_content','field_61767afceb8ba'),(221452,41029,'blocks_1_acfe_flexible_toggle',''),(221453,41029,'_blocks_1_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(221454,41029,'blocks_1_acfe_flexible_layout_title','Tabs'),(221455,41029,'_blocks_1_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(221456,41029,'blocks_1_options_theme','#f5f5f5'),(221457,41029,'_blocks_1_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(221458,41029,'blocks_1_options',''),(221459,41029,'_blocks_1_options','field_6177cfcd8140f'),(221460,41029,'blocks_1_tabs_0_tab_label','Elevate Your Expertise '),(221461,41029,'_blocks_1_tabs_0_tab_label','field_6177d0068141a'),(221462,41029,'blocks_1_tabs_0_tab_content_title',''),(221463,41029,'_blocks_1_tabs_0_tab_content_title','field_6177cfcd81414'),(221464,41029,'blocks_1_tabs_0_tab_content_heading',''),(221465,41029,'_blocks_1_tabs_0_tab_content_heading','field_6177cfcd81415'),(221466,41029,'blocks_1_tabs_0_tab_content_text','Crafted for fitness and exercise instructors seeking CPD, this online training enhances your understanding of both intrinsic and extrinsic biomechanics.\r\n\r\n<em>Note: A face-to-face attendance option is available for an attendance certificate.</em>'),(221467,41029,'_blocks_1_tabs_0_tab_content_text','field_6177cfcd81416'),(221468,41029,'blocks_1_tabs_0_tab_content_actions',''),(221469,41029,'_blocks_1_tabs_0_tab_content_actions','field_6177cfcd81417'),(221470,41029,'blocks_1_tabs_0_tab_content',''),(221471,41029,'_blocks_1_tabs_0_tab_content','field_6177cfcd81413'),(221472,41029,'blocks_1_tabs_0_tab_image',''),(221473,41029,'_blocks_1_tabs_0_tab_image','field_6177cfcd81412'),(221474,41029,'blocks_1_tabs_1_tab_label','Seamless Access '),(221475,41029,'_blocks_1_tabs_1_tab_label','field_6177d0068141a'),(221476,41029,'blocks_1_tabs_1_tab_content_title',''),(221477,41029,'_blocks_1_tabs_1_tab_content_title','field_6177cfcd81414'),(221478,41029,'blocks_1_tabs_1_tab_content_heading',''),(221479,41029,'_blocks_1_tabs_1_tab_content_heading','field_6177cfcd81415'),(221480,41029,'blocks_1_tabs_1_tab_content_text','Upon payment, promptly access the video link and download your handout PDF. For future access, log in with your email.'),(221481,41029,'_blocks_1_tabs_1_tab_content_text','field_6177cfcd81416'),(221482,41029,'blocks_1_tabs_1_tab_content_actions',''),(221483,41029,'_blocks_1_tabs_1_tab_content_actions','field_6177cfcd81417'),(221484,41029,'blocks_1_tabs_1_tab_content',''),(221485,41029,'_blocks_1_tabs_1_tab_content','field_6177cfcd81413'),(221486,41029,'blocks_1_tabs_1_tab_image',''),(221487,41029,'_blocks_1_tabs_1_tab_image','field_6177cfcd81412'),(221488,41029,'blocks_1_tabs_2_tab_label','Exclusive Workshop Option! '),(221489,41029,'_blocks_1_tabs_2_tab_label','field_6177d0068141a'),(221490,41029,'blocks_1_tabs_2_tab_content_title',''),(221491,41029,'_blocks_1_tabs_2_tab_content_title','field_6177cfcd81414'),(221492,41029,'blocks_1_tabs_2_tab_content_heading',''),(221493,41029,'_blocks_1_tabs_2_tab_content_heading','field_6177cfcd81415'),(221494,41029,'blocks_1_tabs_2_tab_content_text','Opt for the face-to-face Running Biomechanics Workshop, receive a refund on the online training, and secure your attendance certificate.'),(221495,41029,'_blocks_1_tabs_2_tab_content_text','field_6177cfcd81416'),(221496,41029,'blocks_1_tabs_2_tab_content_actions',''),(221497,41029,'_blocks_1_tabs_2_tab_content_actions','field_6177cfcd81417'),(221498,41029,'blocks_1_tabs_2_tab_content',''),(221499,41029,'_blocks_1_tabs_2_tab_content','field_6177cfcd81413'),(221500,41029,'blocks_1_tabs_2_tab_image',''),(221501,41029,'_blocks_1_tabs_2_tab_image','field_6177cfcd81412'),(221502,41029,'blocks_1_tabs_3_tab_label','Elevate Your Run Today '),(221503,41029,'_blocks_1_tabs_3_tab_label','field_6177d0068141a'),(221504,41029,'blocks_1_tabs_3_tab_content_title',''),(221505,41029,'_blocks_1_tabs_3_tab_content_title','field_6177cfcd81414'),(221506,41029,'blocks_1_tabs_3_tab_content_heading',''),(221507,41029,'_blocks_1_tabs_3_tab_content_heading','field_6177cfcd81415'),(221508,41029,'blocks_1_tabs_3_tab_content_text','Revolutionise your running journey with Introduction to Running Biomechanics. Enrol now for a transformative learning experience!'),(221509,41029,'_blocks_1_tabs_3_tab_content_text','field_6177cfcd81416'),(221510,41029,'blocks_1_tabs_3_tab_content_actions',''),(221511,41029,'_blocks_1_tabs_3_tab_content_actions','field_6177cfcd81417'),(221512,41029,'blocks_1_tabs_3_tab_content',''),(221513,41029,'_blocks_1_tabs_3_tab_content','field_6177cfcd81413'),(221514,41029,'blocks_1_tabs_3_tab_image',''),(221515,41029,'_blocks_1_tabs_3_tab_image','field_6177cfcd81412'),(221516,41029,'blocks_1_tabs','4'),(221517,41029,'_blocks_1_tabs','field_6177cff281419'),(221518,41029,'blocks_2_acfe_flexible_toggle',''),(221519,41029,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(221520,41029,'blocks_2_acfe_flexible_layout_title','Button(s)'),(221521,41029,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(221522,41029,'blocks_2_options_theme','#ffffff'),(221523,41029,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(221524,41029,'blocks_2_options',''),(221525,41029,'_blocks_2_options','field_623b03edb6e65'),(221526,41029,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(221527,41029,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(221528,41029,'blocks_2_actions','1'),(221529,41029,'_blocks_2_actions','field_623b03edb6e6e'),(221530,41029,'blocks_3_acfe_flexible_toggle',''),(221531,41029,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(221532,41029,'blocks_3_acfe_flexible_layout_title','Text Block'),(221533,41029,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(221534,41029,'blocks_3_options_theme','#ffffff'),(221535,41029,'_blocks_3_options_theme','field_6176830e2ad17'),(221536,41029,'blocks_3_options',''),(221537,41029,'_blocks_3_options','field_6176830e2ad16'),(221538,41029,'blocks_3_text_block_heading','Please Note'),(221539,41029,'_blocks_3_text_block_heading','field_617669d413097'),(221540,41029,'blocks_3_text_block_content','This online training is designed to inform &amp; enhance understanding for fitness and exercise instructors through CPD. However, to gain an attendance certificate face to face attendance is required. Once you make your payment, please see the video link and DOWNLOAD your handout pdf immediately for instant access. Otherwise, you simply need to log back in using the email you signed in with to access all purchases.'),(221541,41029,'_blocks_3_text_block_content','field_617669ec13098'),(221542,41029,'blocks_4_acfe_flexible_toggle',''),(221543,41029,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(221544,41029,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(221545,41029,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(221546,41029,'blocks_4_options_theme','#ffffff'),(221547,41029,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(221548,41029,'blocks_4_options_state','0'),(221549,41029,'_blocks_4_options_state','field_6239fcb7508c5'),(221550,41029,'blocks_4_options',''),(221551,41029,'_blocks_4_options','field_6177e2991ac44'),(221552,41029,'blocks_4_content_title',''),(221553,41029,'_blocks_4_content_title','field_64d237e8bb1e2'),(221554,41029,'blocks_4_content_heading',''),(221555,41029,'_blocks_4_content_heading','field_64d237e8bb1e3'),(221556,41029,'blocks_4_content_text',''),(221557,41029,'_blocks_4_content_text','field_64d237e8bb1e4'),(221558,41029,'blocks_4_content_actions',''),(221559,41029,'_blocks_4_content_actions','field_64d237e8bb1e5'),(221560,41029,'blocks_4_content_align','left'),(221561,41029,'_blocks_4_content_align','field_64d2443e6b6aa'),(221562,41029,'blocks_4_content',''),(221563,41029,'_blocks_4_content','field_64d237e8bb1e1'),(221564,41029,'blocks_4_accordion_content','custom'),(221565,41029,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(221566,41029,'blocks_4_accordion_items',''),(221567,41029,'_blocks_4_accordion_items','field_6177e2991ac4c'),(221568,41029,'blocks_4_actions',''),(221569,41029,'_blocks_4_actions','field_61a746a817f7a'),(221570,41029,'blocks_5_acfe_flexible_toggle',''),(221571,41029,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(221572,41029,'blocks_5_acfe_flexible_layout_title','Text Block'),(221573,41029,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(221574,41029,'blocks_5_options_theme','#ffffff'),(221575,41029,'_blocks_5_options_theme','field_6176830e2ad17'),(221576,41029,'blocks_5_options',''),(221577,41029,'_blocks_5_options','field_6176830e2ad16'),(221578,41029,'blocks_5_text_block_heading','See Our Other CPD Courses'),(221579,41029,'_blocks_5_text_block_heading','field_617669d413097'),(221580,41029,'blocks_5_text_block_content','Check out our other frequently purchased CPD courses'),(221581,41029,'_blocks_5_text_block_content','field_617669ec13098'),(221582,41029,'blocks_6_acfe_flexible_toggle',''),(221583,41029,'_blocks_6_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(221584,41029,'blocks_6_acfe_flexible_layout_title','Course Comparison'),(221585,41029,'_blocks_6_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(221586,41029,'blocks_6_options_theme','#ffffff'),(221587,41029,'_blocks_6_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(221588,41029,'blocks_6_options',''),(221589,41029,'_blocks_6_options','field_617ac0b7f6c08'),(221590,41029,'blocks_6_show','category'),(221591,41029,'_blocks_6_show','field_61a49cba9d946'),(221592,41029,'blocks_6_category','403'),(221593,41029,'_blocks_6_category','field_61a49cd79d947'),(221594,41029,'blocks','a:7:{i:0;s:10:\"split_5050\";i:1;s:4:\"tabs\";i:2;s:7:\"buttons\";i:3;s:10:\"text_block\";i:4;s:10:\"accordions\";i:5;s:10:\"text_block\";i:6;s:14:\"course_compare\";}'),(221595,41029,'_blocks','field_6176696113096'),(221596,41029,'course_label_text','Introduction To Running Biomechanics'),(221597,41029,'_course_label_text','field_61e17babf71fa'),(221598,41029,'course_label',''),(221599,41029,'_course_label','field_61e12f92749a7'),(221600,41029,'course_description','Discover the Secrets of Optimal Running Styles in this Comprehensive 3hr 15min Classroom Recording & Handout Session! '),(221601,41029,'_course_description','field_617ac5788e5e1'),(221602,41029,'course_key_info','2'),(221603,41029,'_course_key_info','field_617ac6ad8e5e2'),(221604,41029,'course_included','Master running club terminology.\r\nGrasp the mechanics and sequencing of different running gaits.\r\nExplore extrinsic influences and identify intrinsic restrictions.'),(221605,41029,'_course_included','field_617ac6f08e5e4'),(221606,41029,'course_label_label_theme','#0d1f73'),(221607,41029,'_course_label_label_theme','field_61e17bb8f71fb'),(221608,41029,'course_key_info_0_text','Online Learning'),(221609,41029,'_course_key_info_0_text','field_617ac6c38e5e3'),(221610,41029,'course_key_info_1_text','CPD'),(221611,41029,'_course_key_info_1_text','field_617ac6c38e5e3'),(221612,41029,'blocks_6_open_whats_included','1'),(221613,41029,'_blocks_6_open_whats_included','field_66ebfd679450c'),(221614,41029,'blocks_6_open_key_information','0'),(221615,41029,'_blocks_6_open_key_information','field_66ebfd7f9450d'),(221616,41029,'blocks_6_open',''),(221617,41029,'_blocks_6_open','field_66ebfd009450b'),(221618,40778,'course_label_label_theme','#0d1f73'),(221619,40778,'_course_label_label_theme','field_61e17bb8f71fb'),(221620,40778,'course_key_info_0_text','Entry requirements: Qualification in either Personal Trainer, Pilates, Yoga Instructor'),(221621,40778,'_course_key_info_0_text','field_617ac6c38e5e3'),(221622,41030,'hide_hero','0'),(221623,41030,'_hide_hero','field_66a2380fcda39'),(221624,41030,'hero_title','Diploma in Biomechanics Coaching'),(221625,41030,'_hero_title','field_617571fe285e8'),(221626,41030,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(221627,41030,'_hero_text','field_6175723c285e9'),(221628,41030,'hero_actions','1'),(221629,41030,'_hero_actions','field_61757270285ea'),(221630,41030,'hero_style','default'),(221631,41030,'_hero_style','field_62051d9dc5324'),(221632,41030,'hero_image_pos_x','right'),(221633,41030,'_hero_image_pos_x','field_62ec3d05390bb'),(221634,41030,'hero_image_pos_y','top'),(221635,41030,'_hero_image_pos_y','field_62ec3d05390bc'),(221636,41030,'hero_image_pos',''),(221637,41030,'_hero_image_pos','field_62ec3d05390ba'),(221638,41030,'fft_hide_from_listings','0'),(221639,41030,'_fft_hide_from_listings','field_61f1320446ab2'),(221640,41030,'fft_page_format','default'),(221641,41030,'_fft_page_format','field_61ae213f1f218'),(221642,41030,'fft_hide_nav','0'),(221643,41030,'_fft_hide_nav','field_635bd5e43527c'),(221644,41030,'fft_hide_header_call_to_action','0'),(221645,41030,'_fft_hide_header_call_to_action','field_635bd6723527d'),(221646,41030,'fft_page_sitemap','0'),(221647,41030,'_fft_page_sitemap','field_61af9b34e8181'),(221648,41030,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:5:\"icons\";i:6;s:10:\"split_5050\";i:7;s:8:\"template\";i:8;s:10:\"accordions\";}'),(221649,41030,'_blocks','field_6176696113096'),(221650,41030,'course_label_text','Biomechanics Coach Course'),(221651,41030,'_course_label_text','field_61e17babf71fa'),(221652,41030,'course_label',''),(221653,41030,'_course_label','field_61e12f92749a7'),(221654,41030,'course_description','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(221655,41030,'_course_description','field_617ac5788e5e1'),(221656,41030,'course_key_info','1'),(221657,41030,'_course_key_info','field_617ac6ad8e5e2'),(221658,41030,'course_included','Diploma in Biomechanics Coaching'),(221659,41030,'_course_included','field_617ac6f08e5e4'),(221660,41030,'_thumbnail_id','40863'),(221661,41030,'__thumbnail_id','field_617570855ddaf'),(221662,41030,'blocks_0_acfe_flexible_toggle',''),(221663,41030,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(221664,41030,'blocks_0_acfe_flexible_layout_title','Template'),(221665,41030,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(221666,41030,'blocks_0_template','39087'),(221667,41030,'_blocks_0_template','field_617bdd570fe01'),(221668,41030,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(221669,41030,'_hero_actions_0_button','field_61757281285eb'),(221670,41030,'blocks_1_acfe_flexible_toggle',''),(221671,41030,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(221672,41030,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(221673,41030,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(221674,41030,'blocks_1_options_theme','#ffffff'),(221675,41030,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(221676,41030,'blocks_1_options_reverse','0'),(221677,41030,'_blocks_1_options_reverse','field_61768049bb8ac'),(221678,41030,'blocks_1_options',''),(221679,41030,'_blocks_1_options','field_617682517c334'),(221680,41030,'blocks_1_split_5050_image','40866'),(221681,41030,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(221682,41030,'blocks_1_split_5050_video',''),(221683,41030,'_blocks_1_split_5050_video','field_6239f3160848a'),(221684,41030,'blocks_1_split_5050_content_title',''),(221685,41030,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(221686,41030,'blocks_1_split_5050_content_heading','Course Overview'),(221687,41030,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(221688,41030,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(221689,41030,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(221690,41030,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(221691,41030,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(221692,41030,'blocks_1_split_5050_content_actions','1'),(221693,41030,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(221694,41030,'blocks_1_split_5050_content',''),(221695,41030,'_blocks_1_split_5050_content','field_61767afceb8ba'),(221696,41030,'blocks_2_acfe_flexible_toggle',''),(221697,41030,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(221698,41030,'blocks_2_acfe_flexible_layout_title','Form'),(221699,41030,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(221700,41030,'blocks_2_row_content_format','standard'),(221701,41030,'_blocks_2_row_content_format','field_6481ead962881'),(221702,41030,'blocks_2_row_content_title',''),(221703,41030,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(221704,41030,'blocks_2_row_content_heading','Enquire Today'),(221705,41030,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(221706,41030,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(221707,41030,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(221708,41030,'blocks_2_row_content_actions',''),(221709,41030,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(221710,41030,'blocks_2_row_content',''),(221711,41030,'_blocks_2_row_content','field_61a0f5f5b3db0'),(221712,41030,'blocks_2_row_form','40394'),(221713,41030,'_blocks_2_row_form','field_61a4ff2c0b08e'),(221714,41030,'blocks_2_row_form_button_label',''),(221715,41030,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(221716,41030,'blocks_3_acfe_flexible_toggle',''),(221717,41030,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(221718,41030,'blocks_3_acfe_flexible_layout_title','Video'),(221719,41030,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(221720,41030,'blocks_3_size','large'),(221721,41030,'_blocks_3_size','field_6487038f297c1'),(221722,41030,'blocks_3_row_content_title',''),(221723,41030,'_blocks_3_row_content_title','field_64870132a865d'),(221724,41030,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(221725,41030,'_blocks_3_row_content_heading','field_64870142a865e'),(221726,41030,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(221727,41030,'_blocks_3_row_content_text','field_64870148a865f'),(221728,41030,'blocks_3_row_content',''),(221729,41030,'_blocks_3_row_content','field_6487008ba865c'),(221730,41030,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(221731,41030,'_blocks_3_video_src','field_6193c4a98ec07'),(221732,41030,'blocks_3_video_thumbnail',''),(221733,41030,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(221734,41030,'blocks_4_acfe_flexible_toggle',''),(221735,41030,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(221736,41030,'blocks_4_acfe_flexible_layout_title','Tabs'),(221737,41030,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(221738,41030,'blocks_4_options_theme','#ffffff'),(221739,41030,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(221740,41030,'blocks_4_options',''),(221741,41030,'_blocks_4_options','field_6177cfcd8140f'),(221742,41030,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(221743,41030,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(221744,41030,'blocks_4_tabs_0_tab_content_title',''),(221745,41030,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(221746,41030,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(221747,41030,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(221748,41030,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(221749,41030,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(221750,41030,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(221751,41030,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(221752,41030,'blocks_4_tabs_0_tab_content_actions','1'),(221753,41030,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(221754,41030,'blocks_4_tabs_0_tab_content',''),(221755,41030,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(221756,41030,'blocks_4_tabs_0_tab_image','40869'),(221757,41030,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(221758,41030,'blocks_4_tabs_1_tab_label','Entry requirements'),(221759,41030,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(221760,41030,'blocks_4_tabs_1_tab_content_title',''),(221761,41030,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(221762,41030,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(221763,41030,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(221764,41030,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(221765,41030,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(221766,41030,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(221767,41030,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(221768,41030,'blocks_4_tabs_1_tab_content_actions','1'),(221769,41030,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(221770,41030,'blocks_4_tabs_1_tab_content',''),(221771,41030,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(221772,41030,'blocks_4_tabs_1_tab_image','40870'),(221773,41030,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(221774,41030,'blocks_4_tabs','2'),(221775,41030,'_blocks_4_tabs','field_6177cff281419'),(221776,41030,'blocks_5_acfe_flexible_toggle',''),(221777,41030,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(221778,41030,'blocks_5_acfe_flexible_layout_title','Icons'),(221779,41030,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(221780,41030,'blocks_5_options_theme','#b61234'),(221781,41030,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(221782,41030,'blocks_5_options_format','stacked'),(221783,41030,'_blocks_5_options_format','field_64bfde9a90690'),(221784,41030,'blocks_5_options',''),(221785,41030,'_blocks_5_options','field_64bfdd9b90684'),(221786,41030,'blocks_5_row_content_title',''),(221787,41030,'_blocks_5_row_content_title','field_64bfdd9b90687'),(221788,41030,'blocks_5_row_content_heading','Fees & Funding Options '),(221789,41030,'_blocks_5_row_content_heading','field_64bfdd9b90688'),(221790,41030,'blocks_5_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(221791,41030,'_blocks_5_row_content_text','field_64bfdd9b90689'),(221792,41030,'blocks_5_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(221793,41030,'_blocks_5_row_content_actions_0_button','field_64bfdd9b9068b'),(221794,41030,'blocks_5_row_content_actions','1'),(221795,41030,'_blocks_5_row_content_actions','field_64bfdd9b9068a'),(221796,41030,'blocks_5_row_content',''),(221797,41030,'_blocks_5_row_content','field_64bfdd9b90686'),(221798,41030,'blocks_5_icon_row_items_0_icon','pay-as-you-learn.svg'),(221799,41030,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(221800,41030,'blocks_5_icon_row_items_0_label','Pay in full'),(221801,41030,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(221802,41030,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(221803,41030,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(221804,41030,'blocks_5_icon_row_items_1_icon','finance.svg'),(221805,41030,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(221806,41030,'blocks_5_icon_row_items_1_label','0% finance'),(221807,41030,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(221808,41030,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(221809,41030,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(221810,41030,'blocks_5_icon_row_items_2_icon','pass-rate.svg'),(221811,41030,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(221812,41030,'blocks_5_icon_row_items_2_label','Deposit & balance'),(221813,41030,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(221814,41030,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(221815,41030,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(221816,41030,'blocks_5_icon_row_items','3'),(221817,41030,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(221818,41030,'blocks_6_acfe_flexible_toggle',''),(221819,41030,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(221820,41030,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(221821,41030,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(221822,41030,'blocks_6_options_theme','#ffffff'),(221823,41030,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(221824,41030,'blocks_6_options_reverse','0'),(221825,41030,'_blocks_6_options_reverse','field_61768049bb8ac'),(221826,41030,'blocks_6_options',''),(221827,41030,'_blocks_6_options','field_617682517c334'),(221828,41030,'blocks_6_split_5050_image','39224'),(221829,41030,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(221830,41030,'blocks_6_split_5050_video',''),(221831,41030,'_blocks_6_split_5050_video','field_6239f3160848a'),(221832,41030,'blocks_6_split_5050_content_title',''),(221833,41030,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(221834,41030,'blocks_6_split_5050_content_heading','Locations'),(221835,41030,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(221836,41030,'blocks_6_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(221837,41030,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(221838,41030,'blocks_6_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(221839,41030,'_blocks_6_split_5050_content_actions_0_button','field_61767b72eb8be'),(221840,41030,'blocks_6_split_5050_content_actions','1'),(221841,41030,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(221842,41030,'blocks_6_split_5050_content',''),(221843,41030,'_blocks_6_split_5050_content','field_61767afceb8ba'),(221844,41030,'blocks_8_acfe_flexible_toggle',''),(221845,41030,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(221846,41030,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(221847,41030,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(221848,41030,'blocks_8_options_theme','#ffffff'),(221849,41030,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(221850,41030,'blocks_8_options_state','0'),(221851,41030,'_blocks_8_options_state','field_6239fcb7508c5'),(221852,41030,'blocks_8_options',''),(221853,41030,'_blocks_8_options','field_6177e2991ac44'),(221854,41030,'blocks_8_content_title',''),(221855,41030,'_blocks_8_content_title','field_64d237e8bb1e2'),(221856,41030,'blocks_8_content_heading','FAQ\'s'),(221857,41030,'_blocks_8_content_heading','field_64d237e8bb1e3'),(221858,41030,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(221859,41030,'_blocks_8_content_text','field_64d237e8bb1e4'),(221860,41030,'blocks_8_content_actions',''),(221861,41030,'_blocks_8_content_actions','field_64d237e8bb1e5'),(221862,41030,'blocks_8_content_align','left'),(221863,41030,'_blocks_8_content_align','field_64d2443e6b6aa'),(221864,41030,'blocks_8_content',''),(221865,41030,'_blocks_8_content','field_64d237e8bb1e1'),(221866,41030,'blocks_8_accordion_content','faqs'),(221867,41030,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(221868,41030,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(221869,41030,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(221870,41030,'blocks_8_actions',''),(221871,41030,'_blocks_8_actions','field_61a746a817f7a'),(221872,41030,'blocks_7_acfe_flexible_toggle',''),(221873,41030,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(221874,41030,'blocks_7_acfe_flexible_layout_title','Template'),(221875,41030,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(221876,41030,'blocks_7_template','40987'),(221877,41030,'_blocks_7_template','field_617bdd570fe01'),(221878,41030,'course_label_label_theme','#0d1f73'),(221879,41030,'_course_label_label_theme','field_61e17bb8f71fb'),(221880,41030,'course_key_info_0_text','Entry requirements: Qualification in either Personal Trainer, Pilates, Yoga Instructor'),(221881,41030,'_course_key_info_0_text','field_617ac6c38e5e3'),(221882,40780,'_yoast_wpseo_focuskw','Personal Trainer course'),(221883,40780,'_yoast_wpseo_title','Lvl 4 PT + Biomechanics Diploma Bundle %%sep%% Biomechanics Education'),(221884,40780,'_yoast_wpseo_metadesc','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists.'),(221885,40780,'_yoast_wpseo_linkdex','35'),(221886,41031,'hide_hero','0'),(221887,41031,'_hide_hero','field_66a2380fcda39'),(221888,41031,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(221889,41031,'_hero_title','field_617571fe285e8'),(221890,41031,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(221891,41031,'_hero_text','field_6175723c285e9'),(221892,41031,'hero_actions','1'),(221893,41031,'_hero_actions','field_61757270285ea'),(221894,41031,'hero_style','default'),(221895,41031,'_hero_style','field_62051d9dc5324'),(221896,41031,'_thumbnail_id','40848'),(221897,41031,'__thumbnail_id','field_617570855ddaf'),(221898,41031,'hero_image_pos_x','right'),(221899,41031,'_hero_image_pos_x','field_62ec3d05390bb'),(221900,41031,'hero_image_pos_y','top'),(221901,41031,'_hero_image_pos_y','field_62ec3d05390bc'),(221902,41031,'hero_image_pos',''),(221903,41031,'_hero_image_pos','field_62ec3d05390ba'),(221904,41031,'fft_hide_from_listings','0'),(221905,41031,'_fft_hide_from_listings','field_61f1320446ab2'),(221906,41031,'fft_page_format','default'),(221907,41031,'_fft_page_format','field_61ae213f1f218'),(221908,41031,'fft_hide_nav','0'),(221909,41031,'_fft_hide_nav','field_635bd5e43527c'),(221910,41031,'fft_hide_header_call_to_action','0'),(221911,41031,'_fft_hide_header_call_to_action','field_635bd6723527d'),(221912,41031,'fft_page_sitemap','0'),(221913,41031,'_fft_page_sitemap','field_61af9b34e8181'),(221914,41031,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(221915,41031,'_blocks','field_6176696113096'),(221916,41031,'course_label_text',''),(221917,41031,'_course_label_text','field_61e17babf71fa'),(221918,41031,'course_label',''),(221919,41031,'_course_label','field_61e12f92749a7'),(221920,41031,'course_description',''),(221921,41031,'_course_description','field_617ac5788e5e1'),(221922,41031,'course_key_info',''),(221923,41031,'_course_key_info','field_617ac6ad8e5e2'),(221924,41031,'course_included',''),(221925,41031,'_course_included','field_617ac6f08e5e4'),(221926,41031,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(221927,41031,'_hero_actions_0_button','field_61757281285eb'),(221928,41031,'blocks_0_acfe_flexible_toggle',''),(221929,41031,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(221930,41031,'blocks_0_acfe_flexible_layout_title','Icons'),(221931,41031,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(221932,41031,'blocks_0_options_theme','#b61234'),(221933,41031,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(221934,41031,'blocks_0_options_format','row'),(221935,41031,'_blocks_0_options_format','field_64bfde9a90690'),(221936,41031,'blocks_0_options',''),(221937,41031,'_blocks_0_options','field_64bfdd9b90684'),(221938,41031,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(221939,41031,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(221940,41031,'blocks_0_icon_row_items_0_label','Accreditation'),(221941,41031,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(221942,41031,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(221943,41031,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(221944,41031,'blocks_0_icon_row_items_1_icon','finance.svg'),(221945,41031,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(221946,41031,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(221947,41031,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(221948,41031,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(221949,41031,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(221950,41031,'blocks_0_icon_row_items_2_icon','progression.svg'),(221951,41031,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(221952,41031,'blocks_0_icon_row_items_2_label','Earning Potential'),(221953,41031,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(221954,41031,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(221955,41031,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(221956,41031,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(221957,41031,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(221958,41031,'blocks_0_icon_row_items_3_label','Qualification'),(221959,41031,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(221960,41031,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(221961,41031,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(221962,41031,'blocks_0_icon_row_items','4'),(221963,41031,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(221964,41031,'blocks_5_acfe_flexible_toggle','1'),(221965,41031,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(221966,41031,'blocks_5_acfe_flexible_layout_title','Tabs'),(221967,41031,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(221968,41031,'blocks_5_options_theme','#ffffff'),(221969,41031,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(221970,41031,'blocks_5_options',''),(221971,41031,'_blocks_5_options','field_6177cfcd8140f'),(221972,41031,'blocks_5_tabs_0_tab_label','Entry requirements'),(221973,41031,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(221974,41031,'blocks_5_tabs_0_tab_content_title',''),(221975,41031,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(221976,41031,'blocks_5_tabs_0_tab_content_heading',''),(221977,41031,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(221978,41031,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(221979,41031,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(221980,41031,'blocks_5_tabs_0_tab_content_actions',''),(221981,41031,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(221982,41031,'blocks_5_tabs_0_tab_content',''),(221983,41031,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(221984,41031,'blocks_5_tabs_0_tab_image',''),(221985,41031,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(221986,41031,'blocks_5_tabs_1_tab_label','Learning format'),(221987,41031,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(221988,41031,'blocks_5_tabs_1_tab_content_title',''),(221989,41031,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(221990,41031,'blocks_5_tabs_1_tab_content_heading',''),(221991,41031,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(221992,41031,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(221993,41031,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(221994,41031,'blocks_5_tabs_1_tab_content_actions',''),(221995,41031,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(221996,41031,'blocks_5_tabs_1_tab_content',''),(221997,41031,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(221998,41031,'blocks_5_tabs_1_tab_image',''),(221999,41031,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(222000,41031,'blocks_5_tabs_2_tab_label','Qualifications included'),(222001,41031,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(222002,41031,'blocks_5_tabs_2_tab_content_title',''),(222003,41031,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(222004,41031,'blocks_5_tabs_2_tab_content_heading',''),(222005,41031,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(222006,41031,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(222007,41031,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(222008,41031,'blocks_5_tabs_2_tab_content_actions',''),(222009,41031,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(222010,41031,'blocks_5_tabs_2_tab_content',''),(222011,41031,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(222012,41031,'blocks_5_tabs_2_tab_image',''),(222013,41031,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(222014,41031,'blocks_5_tabs','3'),(222015,41031,'_blocks_5_tabs','field_6177cff281419'),(222016,41031,'blocks_4_acfe_flexible_toggle',''),(222017,41031,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(222018,41031,'blocks_4_acfe_flexible_layout_title','Template'),(222019,41031,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(222020,41031,'blocks_4_template','39207'),(222021,41031,'_blocks_4_template','field_617bdd570fe01'),(222022,41031,'blocks_6_acfe_flexible_toggle',''),(222023,41031,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(222024,41031,'blocks_6_acfe_flexible_layout_title','Icons'),(222025,41031,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(222026,41031,'blocks_6_options_theme','#f5f5f5'),(222027,41031,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(222028,41031,'blocks_6_options_format','stacked'),(222029,41031,'_blocks_6_options_format','field_64bfde9a90690'),(222030,41031,'blocks_6_options',''),(222031,41031,'_blocks_6_options','field_64bfdd9b90684'),(222032,41031,'blocks_6_row_content_title','Options available to pay for your course'),(222033,41031,'_blocks_6_row_content_title','field_64bfdd9b90687'),(222034,41031,'blocks_6_row_content_heading','Fees & Funding Options '),(222035,41031,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(222036,41031,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(222037,41031,'_blocks_6_row_content_text','field_64bfdd9b90689'),(222038,41031,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(222039,41031,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(222040,41031,'blocks_6_row_content_actions','1'),(222041,41031,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(222042,41031,'blocks_6_row_content',''),(222043,41031,'_blocks_6_row_content','field_64bfdd9b90686'),(222044,41031,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(222045,41031,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(222046,41031,'blocks_6_icon_row_items_0_label','Pay in full'),(222047,41031,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(222048,41031,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(222049,41031,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(222050,41031,'blocks_6_icon_row_items_1_icon','finance.svg'),(222051,41031,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(222052,41031,'blocks_6_icon_row_items_1_label','0% finance'),(222053,41031,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(222054,41031,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(222055,41031,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(222056,41031,'blocks_6_icon_row_items','3'),(222057,41031,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(222058,41031,'blocks_7_acfe_flexible_toggle',''),(222059,41031,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(222060,41031,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(222061,41031,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(222062,41031,'blocks_7_options_theme','#ffffff'),(222063,41031,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(222064,41031,'blocks_7_options_reverse','0'),(222065,41031,'_blocks_7_options_reverse','field_61768049bb8ac'),(222066,41031,'blocks_7_options',''),(222067,41031,'_blocks_7_options','field_617682517c334'),(222068,41031,'blocks_7_split_5050_image','40817'),(222069,41031,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(222070,41031,'blocks_7_split_5050_video',''),(222071,41031,'_blocks_7_split_5050_video','field_6239f3160848a'),(222072,41031,'blocks_7_split_5050_content_title',''),(222073,41031,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(222074,41031,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(222075,41031,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(222076,41031,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(222077,41031,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(222078,41031,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(222079,41031,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(222080,41031,'blocks_7_split_5050_content_actions','1'),(222081,41031,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(222082,41031,'blocks_7_split_5050_content',''),(222083,41031,'_blocks_7_split_5050_content','field_61767afceb8ba'),(222084,41031,'blocks_8_acfe_flexible_toggle',''),(222085,41031,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(222086,41031,'blocks_8_acfe_flexible_layout_title','Icons'),(222087,41031,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(222088,41031,'blocks_8_options_theme','#f5f5f5'),(222089,41031,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(222090,41031,'blocks_8_options_format','row'),(222091,41031,'_blocks_8_options_format','field_64bfde9a90690'),(222092,41031,'blocks_8_options',''),(222093,41031,'_blocks_8_options','field_64bfdd9b90684'),(222094,41031,'blocks_8_icon_row_items_0_icon','qualification.svg'),(222095,41031,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(222096,41031,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(222097,41031,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(222098,41031,'blocks_8_icon_row_items_0_text',''),(222099,41031,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(222100,41031,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(222101,41031,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(222102,41031,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(222103,41031,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(222104,41031,'blocks_8_icon_row_items_1_text',''),(222105,41031,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(222106,41031,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(222107,41031,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(222108,41031,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(222109,41031,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(222110,41031,'blocks_8_icon_row_items_2_text',''),(222111,41031,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(222112,41031,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(222113,41031,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(222114,41031,'blocks_8_icon_row_items_3_label','Flexible funding options'),(222115,41031,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(222116,41031,'blocks_8_icon_row_items_3_text',''),(222117,41031,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(222118,41031,'blocks_8_icon_row_items','4'),(222119,41031,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(222120,41031,'blocks_9_acfe_flexible_toggle',''),(222121,41031,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(222122,41031,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(222123,41031,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(222124,41031,'blocks_9_options_theme','#ffffff'),(222125,41031,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(222126,41031,'blocks_9_options_reverse','1'),(222127,41031,'_blocks_9_options_reverse','field_61768049bb8ac'),(222128,41031,'blocks_9_options',''),(222129,41031,'_blocks_9_options','field_617682517c334'),(222130,41031,'blocks_9_split_5050_image','39224'),(222131,41031,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(222132,41031,'blocks_9_split_5050_video',''),(222133,41031,'_blocks_9_split_5050_video','field_6239f3160848a'),(222134,41031,'blocks_9_split_5050_content_title','Locations'),(222135,41031,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(222136,41031,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(222137,41031,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(222138,41031,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(222139,41031,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(222140,41031,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(222141,41031,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(222142,41031,'blocks_9_split_5050_content_actions','1'),(222143,41031,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(222144,41031,'blocks_9_split_5050_content',''),(222145,41031,'_blocks_9_split_5050_content','field_61767afceb8ba'),(222146,41031,'blocks_1_acfe_flexible_toggle',''),(222147,41031,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(222148,41031,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(222149,41031,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(222150,41031,'blocks_1_options_theme','#ffffff'),(222151,41031,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(222152,41031,'blocks_1_options_reverse','0'),(222153,41031,'_blocks_1_options_reverse','field_61768049bb8ac'),(222154,41031,'blocks_1_options',''),(222155,41031,'_blocks_1_options','field_617682517c334'),(222156,41031,'blocks_1_split_5050_image','40785'),(222157,41031,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(222158,41031,'blocks_1_split_5050_video',''),(222159,41031,'_blocks_1_split_5050_video','field_6239f3160848a'),(222160,41031,'blocks_1_split_5050_content_title',''),(222161,41031,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(222162,41031,'blocks_1_split_5050_content_heading','Course Overview'),(222163,41031,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(222164,41031,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(222165,41031,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(222166,41031,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(222167,41031,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(222168,41031,'blocks_1_split_5050_content_actions','1'),(222169,41031,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(222170,41031,'blocks_1_split_5050_content',''),(222171,41031,'_blocks_1_split_5050_content','field_61767afceb8ba'),(222172,41031,'blocks_2_acfe_flexible_toggle',''),(222173,41031,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(222174,41031,'blocks_2_acfe_flexible_layout_title','Form'),(222175,41031,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(222176,41031,'blocks_2_row_content_format','standard'),(222177,41031,'_blocks_2_row_content_format','field_6481ead962881'),(222178,41031,'blocks_2_row_content_title',''),(222179,41031,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(222180,41031,'blocks_2_row_content_heading','Enquire Today'),(222181,41031,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(222182,41031,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(222183,41031,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(222184,41031,'blocks_2_row_content_actions',''),(222185,41031,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(222186,41031,'blocks_2_row_content',''),(222187,41031,'_blocks_2_row_content','field_61a0f5f5b3db0'),(222188,41031,'blocks_2_row_form','40394'),(222189,41031,'_blocks_2_row_form','field_61a4ff2c0b08e'),(222190,41031,'blocks_2_row_form_button_label',''),(222191,41031,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(222192,41031,'blocks_3_acfe_flexible_toggle',''),(222193,41031,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(222194,41031,'blocks_3_acfe_flexible_layout_title','Video'),(222195,41031,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(222196,41031,'blocks_3_size','large'),(222197,41031,'_blocks_3_size','field_6487038f297c1'),(222198,41031,'blocks_3_row_content_title',''),(222199,41031,'_blocks_3_row_content_title','field_64870132a865d'),(222200,41031,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(222201,41031,'_blocks_3_row_content_heading','field_64870142a865e'),(222202,41031,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(222203,41031,'_blocks_3_row_content_text','field_64870148a865f'),(222204,41031,'blocks_3_row_content',''),(222205,41031,'_blocks_3_row_content','field_6487008ba865c'),(222206,41031,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(222207,41031,'_blocks_3_video_src','field_6193c4a98ec07'),(222208,41031,'blocks_3_video_thumbnail',''),(222209,41031,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(222210,41031,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(222211,41031,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(222212,41031,'blocks_6_icon_row_items_2_label','Deposit & balance'),(222213,41031,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(222214,41031,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(222215,41031,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(222216,41031,'blocks_10_acfe_flexible_toggle','1'),(222217,41031,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(222218,41031,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(222219,41031,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(222220,41031,'blocks_10_options_theme','#ffffff'),(222221,41031,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(222222,41031,'blocks_10_options',''),(222223,41031,'_blocks_10_options','field_617ac0b7f6c08'),(222224,41031,'blocks_10_show','selection'),(222225,41031,'_blocks_10_show','field_61a49cba9d946'),(222226,41031,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(222227,41031,'_blocks_10_courses','field_61b244781ee0a'),(222228,41031,'blocks_10_open_whats_included','1'),(222229,41031,'_blocks_10_open_whats_included','field_66ebfd679450c'),(222230,41031,'blocks_10_open_key_information','0'),(222231,41031,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(222232,41031,'blocks_10_open',''),(222233,41031,'_blocks_10_open','field_66ebfd009450b'),(222234,41031,'blocks_11_acfe_flexible_toggle',''),(222235,41031,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(222236,41031,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(222237,41031,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(222238,41031,'blocks_11_options_theme','#ffffff'),(222239,41031,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(222240,41031,'blocks_11_options_reverse','0'),(222241,41031,'_blocks_11_options_reverse','field_61768049bb8ac'),(222242,41031,'blocks_11_options',''),(222243,41031,'_blocks_11_options','field_617682517c334'),(222244,41031,'blocks_11_split_5050_image','40812'),(222245,41031,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(222246,41031,'blocks_11_split_5050_video',''),(222247,41031,'_blocks_11_split_5050_video','field_6239f3160848a'),(222248,41031,'blocks_11_split_5050_content_title','Optimise Performance '),(222249,41031,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(222250,41031,'blocks_11_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(222251,41031,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(222252,41031,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(222253,41031,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(222254,41031,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(222255,41031,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(222256,41031,'blocks_11_split_5050_content_actions','1'),(222257,41031,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(222258,41031,'blocks_11_split_5050_content',''),(222259,41031,'_blocks_11_split_5050_content','field_61767afceb8ba'),(222260,41031,'blocks_12_acfe_flexible_toggle',''),(222261,41031,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(222262,41031,'blocks_12_acfe_flexible_layout_title','Template'),(222263,41031,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(222264,41031,'blocks_12_template','40987'),(222265,41031,'_blocks_12_template','field_617bdd570fe01'),(222266,41031,'blocks_13_acfe_flexible_toggle',''),(222267,41031,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(222268,41031,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(222269,41031,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(222270,41031,'blocks_13_options_theme','#f5f5f5'),(222271,41031,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(222272,41031,'blocks_13_options_state','0'),(222273,41031,'_blocks_13_options_state','field_6239fcb7508c5'),(222274,41031,'blocks_13_options',''),(222275,41031,'_blocks_13_options','field_6177e2991ac44'),(222276,41031,'blocks_13_content_title',''),(222277,41031,'_blocks_13_content_title','field_64d237e8bb1e2'),(222278,41031,'blocks_13_content_heading','FAQ\'s'),(222279,41031,'_blocks_13_content_heading','field_64d237e8bb1e3'),(222280,41031,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(222281,41031,'_blocks_13_content_text','field_64d237e8bb1e4'),(222282,41031,'blocks_13_content_actions',''),(222283,41031,'_blocks_13_content_actions','field_64d237e8bb1e5'),(222284,41031,'blocks_13_content_align','left'),(222285,41031,'_blocks_13_content_align','field_64d2443e6b6aa'),(222286,41031,'blocks_13_content',''),(222287,41031,'_blocks_13_content','field_64d237e8bb1e1'),(222288,41031,'blocks_13_accordion_content','faqs'),(222289,41031,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(222290,41031,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(222291,41031,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(222292,41031,'blocks_13_actions',''),(222293,41031,'_blocks_13_actions','field_61a746a817f7a'),(222294,41032,'hide_hero','0'),(222295,41032,'_hide_hero','field_66a2380fcda39'),(222296,41032,'hero_title','Biomechanics and Personal Training'),(222297,41032,'_hero_title','field_617571fe285e8'),(222298,41032,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(222299,41032,'_hero_text','field_6175723c285e9'),(222300,41032,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(222301,41032,'_hero_actions_0_button','field_61757281285eb'),(222302,41032,'hero_actions','1'),(222303,41032,'_hero_actions','field_61757270285ea'),(222304,41032,'hero_style','default'),(222305,41032,'_hero_style','field_62051d9dc5324'),(222306,41032,'_thumbnail_id','39215'),(222307,41032,'__thumbnail_id','field_617570855ddaf'),(222308,41032,'hero_image_pos_x','right'),(222309,41032,'_hero_image_pos_x','field_62ec3d05390bb'),(222310,41032,'hero_image_pos_y','top'),(222311,41032,'_hero_image_pos_y','field_62ec3d05390bc'),(222312,41032,'hero_image_pos',''),(222313,41032,'_hero_image_pos','field_62ec3d05390ba'),(222314,41032,'fft_hide_from_listings','0'),(222315,41032,'_fft_hide_from_listings','field_61f1320446ab2'),(222316,41032,'fft_page_format','default'),(222317,41032,'_fft_page_format','field_61ae213f1f218'),(222318,41032,'fft_hide_nav','0'),(222319,41032,'_fft_hide_nav','field_635bd5e43527c'),(222320,41032,'fft_hide_header_call_to_action','0'),(222321,41032,'_fft_hide_header_call_to_action','field_635bd6723527d'),(222322,41032,'fft_page_sitemap','0'),(222323,41032,'_fft_page_sitemap','field_61af9b34e8181'),(222324,41032,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(222325,41032,'_blocks','field_6176696113096'),(222326,41032,'blocks_0_acfe_flexible_toggle',''),(222327,41032,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(222328,41032,'blocks_0_acfe_flexible_layout_title','Template'),(222329,41032,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(222330,41032,'blocks_0_template','39087'),(222331,41032,'_blocks_0_template','field_617bdd570fe01'),(222332,41032,'blocks_5_acfe_flexible_toggle',''),(222333,41032,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(222334,41032,'blocks_5_acfe_flexible_layout_title','Tabs'),(222335,41032,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(222336,41032,'blocks_5_options_theme','#ffffff'),(222337,41032,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(222338,41032,'blocks_5_options',''),(222339,41032,'_blocks_5_options','field_6177cfcd8140f'),(222340,41032,'blocks_5_tabs_0_tab_label','What will I learn?'),(222341,41032,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(222342,41032,'blocks_5_tabs_0_tab_content_title',''),(222343,41032,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(222344,41032,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(222345,41032,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(222346,41032,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(222347,41032,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(222348,41032,'blocks_5_tabs_0_tab_content_actions',''),(222349,41032,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(222350,41032,'blocks_5_tabs_0_tab_content',''),(222351,41032,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(222352,41032,'blocks_5_tabs_0_tab_image','39076'),(222353,41032,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(222354,41032,'blocks_5_tabs_1_tab_label','What do I need?'),(222355,41032,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(222356,41032,'blocks_5_tabs_1_tab_content_title',''),(222357,41032,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(222358,41032,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(222359,41032,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(222360,41032,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(222361,41032,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(222362,41032,'blocks_5_tabs_1_tab_content_actions',''),(222363,41032,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(222364,41032,'blocks_5_tabs_1_tab_content',''),(222365,41032,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(222366,41032,'blocks_5_tabs_1_tab_image','39223'),(222367,41032,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(222368,41032,'blocks_5_tabs_2_tab_label','Where can I learn?'),(222369,41032,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(222370,41032,'blocks_5_tabs_2_tab_content_title',''),(222371,41032,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(222372,41032,'blocks_5_tabs_2_tab_content_heading','Locations'),(222373,41032,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(222374,41032,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(222375,41032,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(222376,41032,'blocks_5_tabs_2_tab_content_actions',''),(222377,41032,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(222378,41032,'blocks_5_tabs_2_tab_content',''),(222379,41032,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(222380,41032,'blocks_5_tabs_2_tab_image','39224'),(222381,41032,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(222382,41032,'blocks_5_tabs','3'),(222383,41032,'_blocks_5_tabs','field_6177cff281419'),(222384,41032,'blocks_6_acfe_flexible_toggle',''),(222385,41032,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(222386,41032,'blocks_6_acfe_flexible_layout_title','Text Block'),(222387,41032,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(222388,41032,'blocks_6_options_theme','#b61234'),(222389,41032,'_blocks_6_options_theme','field_6176830e2ad17'),(222390,41032,'blocks_6_options',''),(222391,41032,'_blocks_6_options','field_6176830e2ad16'),(222392,41032,'blocks_6_text_block_heading','Fees & Funding Options'),(222393,41032,'_blocks_6_text_block_heading','field_617669d413097'),(222394,41032,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(222395,41032,'_blocks_6_text_block_content','field_617669ec13098'),(222396,41032,'blocks_7_acfe_flexible_toggle',''),(222397,41032,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(222398,41032,'blocks_7_acfe_flexible_layout_title','Icons'),(222399,41032,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(222400,41032,'blocks_7_options_theme','#b61234'),(222401,41032,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(222402,41032,'blocks_7_options_format','row'),(222403,41032,'_blocks_7_options_format','field_64bfde9a90690'),(222404,41032,'blocks_7_options',''),(222405,41032,'_blocks_7_options','field_64bfdd9b90684'),(222406,41032,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(222407,41032,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(222408,41032,'blocks_7_icon_row_items_0_label','Pay in Full'),(222409,41032,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(222410,41032,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(222411,41032,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(222412,41032,'blocks_7_icon_row_items_1_icon','finance.svg'),(222413,41032,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(222414,41032,'blocks_7_icon_row_items_1_label','0% finance'),(222415,41032,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(222416,41032,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(222417,41032,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(222418,41032,'blocks_7_icon_row_items_2_icon','deposit.svg'),(222419,41032,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(222420,41032,'blocks_7_icon_row_items_2_label','Deposit & balance'),(222421,41032,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(222422,41032,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(222423,41032,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(222424,41032,'blocks_7_icon_row_items','3'),(222425,41032,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(222426,41032,'blocks_9_acfe_flexible_toggle',''),(222427,41032,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(222428,41032,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(222429,41032,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(222430,41032,'blocks_9_testimonial_slider_content_title',''),(222431,41032,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(222432,41032,'blocks_9_testimonial_slider_content_heading','Testimonials'),(222433,41032,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(222434,41032,'blocks_9_testimonial_slider_content_text',''),(222435,41032,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(222436,41032,'blocks_9_testimonial_slider_content_actions',''),(222437,41032,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(222438,41032,'blocks_9_testimonial_slider_content',''),(222439,41032,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(222440,41032,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(222441,41032,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(222442,41032,'blocks_9_testimonial_slider_ambassador_bool','0'),(222443,41032,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(222444,41032,'blocks_10_acfe_flexible_toggle',''),(222445,41032,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(222446,41032,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(222447,41032,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(222448,41032,'blocks_10_options_theme','#ffffff'),(222449,41032,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(222450,41032,'blocks_10_options_state','0'),(222451,41032,'_blocks_10_options_state','field_6239fcb7508c5'),(222452,41032,'blocks_10_options',''),(222453,41032,'_blocks_10_options','field_6177e2991ac44'),(222454,41032,'blocks_10_content_title',''),(222455,41032,'_blocks_10_content_title','field_64d237e8bb1e2'),(222456,41032,'blocks_10_content_heading','Frequently asked questions '),(222457,41032,'_blocks_10_content_heading','field_64d237e8bb1e3'),(222458,41032,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(222459,41032,'_blocks_10_content_text','field_64d237e8bb1e4'),(222460,41032,'blocks_10_content_actions',''),(222461,41032,'_blocks_10_content_actions','field_64d237e8bb1e5'),(222462,41032,'blocks_10_content_align','left'),(222463,41032,'_blocks_10_content_align','field_64d2443e6b6aa'),(222464,41032,'blocks_10_content',''),(222465,41032,'_blocks_10_content','field_64d237e8bb1e1'),(222466,41032,'blocks_10_accordion_content','faqs'),(222467,41032,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(222468,41032,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(222469,41032,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(222470,41032,'blocks_10_actions',''),(222471,41032,'_blocks_10_actions','field_61a746a817f7a'),(222472,41032,'blocks_8_acfe_flexible_toggle',''),(222473,41032,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(222474,41032,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(222475,41032,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(222476,41032,'blocks_8_options_theme','#f5f5f5'),(222477,41032,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(222478,41032,'blocks_8_options_reverse','0'),(222479,41032,'_blocks_8_options_reverse','field_61768049bb8ac'),(222480,41032,'blocks_8_options',''),(222481,41032,'_blocks_8_options','field_617682517c334'),(222482,41032,'blocks_8_split_5050_image','40920'),(222483,41032,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(222484,41032,'blocks_8_split_5050_video',''),(222485,41032,'_blocks_8_split_5050_video','field_6239f3160848a'),(222486,41032,'blocks_8_split_5050_content_title',''),(222487,41032,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(222488,41032,'blocks_8_split_5050_content_heading','Why Study This Course?'),(222489,41032,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(222490,41032,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(222491,41032,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(222492,41032,'blocks_8_split_5050_content_actions',''),(222493,41032,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(222494,41032,'blocks_8_split_5050_content',''),(222495,41032,'_blocks_8_split_5050_content','field_61767afceb8ba'),(222496,41032,'blocks_1_acfe_flexible_toggle',''),(222497,41032,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(222498,41032,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(222499,41032,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(222500,41032,'blocks_1_options_theme','#ffffff'),(222501,41032,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(222502,41032,'blocks_1_options_reverse','0'),(222503,41032,'_blocks_1_options_reverse','field_61768049bb8ac'),(222504,41032,'blocks_1_options',''),(222505,41032,'_blocks_1_options','field_617682517c334'),(222506,41032,'blocks_1_split_5050_image','39220'),(222507,41032,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(222508,41032,'blocks_1_split_5050_video',''),(222509,41032,'_blocks_1_split_5050_video','field_6239f3160848a'),(222510,41032,'blocks_1_split_5050_content_title',''),(222511,41032,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(222512,41032,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(222513,41032,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(222514,41032,'blocks_1_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(222515,41032,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(222516,41032,'blocks_1_split_5050_content_actions',''),(222517,41032,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(222518,41032,'blocks_1_split_5050_content',''),(222519,41032,'_blocks_1_split_5050_content','field_61767afceb8ba'),(222520,41032,'blocks_2_acfe_flexible_toggle',''),(222521,41032,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(222522,41032,'blocks_2_acfe_flexible_layout_title','Form'),(222523,41032,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(222524,41032,'blocks_2_row_content_format','standard'),(222525,41032,'_blocks_2_row_content_format','field_6481ead962881'),(222526,41032,'blocks_2_row_content_title',''),(222527,41032,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(222528,41032,'blocks_2_row_content_heading','Enquire Today'),(222529,41032,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(222530,41032,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(222531,41032,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(222532,41032,'blocks_2_row_content_actions',''),(222533,41032,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(222534,41032,'blocks_2_row_content',''),(222535,41032,'_blocks_2_row_content','field_61a0f5f5b3db0'),(222536,41032,'blocks_2_row_form','40394'),(222537,41032,'_blocks_2_row_form','field_61a4ff2c0b08e'),(222538,41032,'blocks_2_row_form_button_label',''),(222539,41032,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(222540,41032,'blocks_3_acfe_flexible_toggle',''),(222541,41032,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(222542,41032,'blocks_3_acfe_flexible_layout_title','Video'),(222543,41032,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(222544,41032,'blocks_3_size','large'),(222545,41032,'_blocks_3_size','field_6487038f297c1'),(222546,41032,'blocks_3_row_content_title',''),(222547,41032,'_blocks_3_row_content_title','field_64870132a865d'),(222548,41032,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(222549,41032,'_blocks_3_row_content_heading','field_64870142a865e'),(222550,41032,'blocks_3_row_content_text',''),(222551,41032,'_blocks_3_row_content_text','field_64870148a865f'),(222552,41032,'blocks_3_row_content',''),(222553,41032,'_blocks_3_row_content','field_6487008ba865c'),(222554,41032,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(222555,41032,'_blocks_3_video_src','field_6193c4a98ec07'),(222556,41032,'blocks_3_video_thumbnail','39186'),(222557,41032,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(222558,41032,'blocks_4_acfe_flexible_toggle',''),(222559,41032,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(222560,41032,'blocks_4_acfe_flexible_layout_title','Steps'),(222561,41032,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(222562,41032,'blocks_4_row_content_title',''),(222563,41032,'_blocks_4_row_content_title','field_64888cd1e26e0'),(222564,41032,'blocks_4_row_content_heading','Benefits of training with us'),(222565,41032,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(222566,41032,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(222567,41032,'_blocks_4_row_content_text','field_64888ce2e26e2'),(222568,41032,'blocks_4_row_content_actions',''),(222569,41032,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(222570,41032,'blocks_4_row_content',''),(222571,41032,'_blocks_4_row_content','field_64888cb0e26df'),(222572,41032,'blocks_4_steps_0_icon','progression.svg'),(222573,41032,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(222574,41032,'blocks_4_steps_0_title','Earning Potential'),(222575,41032,'_blocks_4_steps_0_title','field_64888d94e26e7'),(222576,41032,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(222577,41032,'_blocks_4_steps_0_text','field_64888d99e26e8'),(222578,41032,'blocks_4_steps_1_icon','support.svg'),(222579,41032,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(222580,41032,'blocks_4_steps_1_title','Lifetime Learning Promise'),(222581,41032,'_blocks_4_steps_1_title','field_64888d94e26e7'),(222582,41032,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(222583,41032,'_blocks_4_steps_1_text','field_64888d99e26e8'),(222584,41032,'blocks_4_steps_2_icon','qualification.svg'),(222585,41032,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(222586,41032,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(222587,41032,'_blocks_4_steps_2_title','field_64888d94e26e7'),(222588,41032,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(222589,41032,'_blocks_4_steps_2_text','field_64888d99e26e8'),(222590,41032,'blocks_4_steps_3_icon','leaders.svg'),(222591,41032,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(222592,41032,'blocks_4_steps_3_title','Stand Out From the Crowd'),(222593,41032,'_blocks_4_steps_3_title','field_64888d94e26e7'),(222594,41032,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(222595,41032,'_blocks_4_steps_3_text','field_64888d99e26e8'),(222596,41032,'blocks_4_steps','4'),(222597,41032,'_blocks_4_steps','field_64888d44e26e5'),(222598,41033,'hide_hero','0'),(222599,41033,'_hide_hero','field_66a2380fcda39'),(222600,41033,'hero_title','Biomechanics and Pilates'),(222601,41033,'_hero_title','field_617571fe285e8'),(222602,41033,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(222603,41033,'_hero_text','field_6175723c285e9'),(222604,41033,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39231-3\";s:6:\"target\";s:0:\"\";}'),(222605,41033,'_hero_actions_0_button','field_61757281285eb'),(222606,41033,'hero_actions','1'),(222607,41033,'_hero_actions','field_61757270285ea'),(222608,41033,'hero_style','default'),(222609,41033,'_hero_style','field_62051d9dc5324'),(222610,41033,'_thumbnail_id','39243'),(222611,41033,'__thumbnail_id','field_617570855ddaf'),(222612,41033,'hero_image_pos_x','right'),(222613,41033,'_hero_image_pos_x','field_62ec3d05390bb'),(222614,41033,'hero_image_pos_y','top'),(222615,41033,'_hero_image_pos_y','field_62ec3d05390bc'),(222616,41033,'hero_image_pos',''),(222617,41033,'_hero_image_pos','field_62ec3d05390ba'),(222618,41033,'fft_hide_from_listings','0'),(222619,41033,'_fft_hide_from_listings','field_61f1320446ab2'),(222620,41033,'fft_page_format','default'),(222621,41033,'_fft_page_format','field_61ae213f1f218'),(222622,41033,'fft_hide_nav','0'),(222623,41033,'_fft_hide_nav','field_635bd5e43527c'),(222624,41033,'fft_hide_header_call_to_action','0'),(222625,41033,'_fft_hide_header_call_to_action','field_635bd6723527d'),(222626,41033,'fft_page_sitemap','0'),(222627,41033,'_fft_page_sitemap','field_61af9b34e8181'),(222628,41033,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:18:\"testimonial_slider\";}'),(222629,41033,'_blocks','field_6176696113096'),(222630,41033,'blocks_0_acfe_flexible_toggle',''),(222631,41033,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(222632,41033,'blocks_0_acfe_flexible_layout_title','Icons'),(222633,41033,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(222634,41033,'blocks_0_options_theme','#b61234'),(222635,41033,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(222636,41033,'blocks_0_options_format','row'),(222637,41033,'_blocks_0_options_format','field_64bfde9a90690'),(222638,41033,'blocks_0_options',''),(222639,41033,'_blocks_0_options','field_64bfdd9b90684'),(222640,41033,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(222641,41033,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(222642,41033,'blocks_0_icon_row_items_0_label','Accreditation'),(222643,41033,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(222644,41033,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(222645,41033,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(222646,41033,'blocks_0_icon_row_items_1_icon','finance.svg'),(222647,41033,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(222648,41033,'blocks_0_icon_row_items_1_label','Flexible payment options'),(222649,41033,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(222650,41033,'blocks_0_icon_row_items_1_text','Including 0% finance'),(222651,41033,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(222652,41033,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(222653,41033,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(222654,41033,'blocks_0_icon_row_items_2_label','Earning potential'),(222655,41033,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(222656,41033,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(222657,41033,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(222658,41033,'blocks_0_icon_row_items','3'),(222659,41033,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(222660,41033,'blocks_1_acfe_flexible_toggle',''),(222661,41033,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(222662,41033,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(222663,41033,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(222664,41033,'blocks_1_options_theme','#ffffff'),(222665,41033,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(222666,41033,'blocks_1_options_reverse','0'),(222667,41033,'_blocks_1_options_reverse','field_61768049bb8ac'),(222668,41033,'blocks_1_options',''),(222669,41033,'_blocks_1_options','field_617682517c334'),(222670,41033,'blocks_1_split_5050_image','38037'),(222671,41033,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(222672,41033,'blocks_1_split_5050_video',''),(222673,41033,'_blocks_1_split_5050_video','field_6239f3160848a'),(222674,41033,'blocks_1_split_5050_content_title',''),(222675,41033,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(222676,41033,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(222677,41033,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(222678,41033,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(222679,41033,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(222680,41033,'blocks_1_split_5050_content_actions',''),(222681,41033,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(222682,41033,'blocks_1_split_5050_content',''),(222683,41033,'_blocks_1_split_5050_content','field_61767afceb8ba'),(222684,41033,'blocks_2_acfe_flexible_toggle',''),(222685,41033,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(222686,41033,'blocks_2_acfe_flexible_layout_title','Form'),(222687,41033,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(222688,41033,'blocks_2_row_content_format','standard'),(222689,41033,'_blocks_2_row_content_format','field_6481ead962881'),(222690,41033,'blocks_2_row_content_title',''),(222691,41033,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(222692,41033,'blocks_2_row_content_heading','Enquire Today'),(222693,41033,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(222694,41033,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(222695,41033,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(222696,41033,'blocks_2_row_content_actions',''),(222697,41033,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(222698,41033,'blocks_2_row_content',''),(222699,41033,'_blocks_2_row_content','field_61a0f5f5b3db0'),(222700,41033,'blocks_2_row_form','40394'),(222701,41033,'_blocks_2_row_form','field_61a4ff2c0b08e'),(222702,41033,'blocks_2_row_form_button_label',''),(222703,41033,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(222704,41033,'blocks_3_acfe_flexible_toggle',''),(222705,41033,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(222706,41033,'blocks_3_acfe_flexible_layout_title','Video'),(222707,41033,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(222708,41033,'blocks_3_size','large'),(222709,41033,'_blocks_3_size','field_6487038f297c1'),(222710,41033,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(222711,41033,'_blocks_3_row_content_title','field_64870132a865d'),(222712,41033,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(222713,41033,'_blocks_3_row_content_heading','field_64870142a865e'),(222714,41033,'blocks_3_row_content_text',''),(222715,41033,'_blocks_3_row_content_text','field_64870148a865f'),(222716,41033,'blocks_3_row_content',''),(222717,41033,'_blocks_3_row_content','field_6487008ba865c'),(222718,41033,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(222719,41033,'_blocks_3_video_src','field_6193c4a98ec07'),(222720,41033,'blocks_3_video_thumbnail',''),(222721,41033,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(222722,41033,'blocks_4_acfe_flexible_toggle',''),(222723,41033,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(222724,41033,'blocks_4_acfe_flexible_layout_title','Steps'),(222725,41033,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(222726,41033,'blocks_4_row_content_title',''),(222727,41033,'_blocks_4_row_content_title','field_64888cd1e26e0'),(222728,41033,'blocks_4_row_content_heading','Benefits of training with us'),(222729,41033,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(222730,41033,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(222731,41033,'_blocks_4_row_content_text','field_64888ce2e26e2'),(222732,41033,'blocks_4_row_content_actions',''),(222733,41033,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(222734,41033,'blocks_4_row_content',''),(222735,41033,'_blocks_4_row_content','field_64888cb0e26df'),(222736,41033,'blocks_4_steps_0_icon','progression.svg'),(222737,41033,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(222738,41033,'blocks_4_steps_0_title','Earning potential'),(222739,41033,'_blocks_4_steps_0_title','field_64888d94e26e7'),(222740,41033,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(222741,41033,'_blocks_4_steps_0_text','field_64888d99e26e8'),(222742,41033,'blocks_4_steps_1_icon','support.svg'),(222743,41033,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(222744,41033,'blocks_4_steps_1_title','Lifetime Learning Promise'),(222745,41033,'_blocks_4_steps_1_title','field_64888d94e26e7'),(222746,41033,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(222747,41033,'_blocks_4_steps_1_text','field_64888d99e26e8'),(222748,41033,'blocks_4_steps_2_icon','qualification.svg'),(222749,41033,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(222750,41033,'blocks_4_steps_2_title','Evidence based hands on learning'),(222751,41033,'_blocks_4_steps_2_title','field_64888d94e26e7'),(222752,41033,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(222753,41033,'_blocks_4_steps_2_text','field_64888d99e26e8'),(222754,41033,'blocks_4_steps_3_icon','leaders.svg'),(222755,41033,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(222756,41033,'blocks_4_steps_3_title','Stand out from the crowd'),(222757,41033,'_blocks_4_steps_3_title','field_64888d94e26e7'),(222758,41033,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(222759,41033,'_blocks_4_steps_3_text','field_64888d99e26e8'),(222760,41033,'blocks_4_steps','4'),(222761,41033,'_blocks_4_steps','field_64888d44e26e5'),(222762,41033,'blocks_5_acfe_flexible_toggle',''),(222763,41033,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(222764,41033,'blocks_5_acfe_flexible_layout_title','Tabs'),(222765,41033,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(222766,41033,'blocks_5_options_theme','#ffffff'),(222767,41033,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(222768,41033,'blocks_5_options',''),(222769,41033,'_blocks_5_options','field_6177cfcd8140f'),(222770,41033,'blocks_5_tabs_0_tab_label','What will I learn?'),(222771,41033,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(222772,41033,'blocks_5_tabs_0_tab_content_title',''),(222773,41033,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(222774,41033,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(222775,41033,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(222776,41033,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients:\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(222777,41033,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(222778,41033,'blocks_5_tabs_0_tab_content_actions',''),(222779,41033,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(222780,41033,'blocks_5_tabs_0_tab_content',''),(222781,41033,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(222782,41033,'blocks_5_tabs_0_tab_image','39076'),(222783,41033,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(222784,41033,'blocks_5_tabs_1_tab_label','What do I need?'),(222785,41033,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(222786,41033,'blocks_5_tabs_1_tab_content_title',''),(222787,41033,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(222788,41033,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(222789,41033,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(222790,41033,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(222791,41033,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(222792,41033,'blocks_5_tabs_1_tab_content_actions',''),(222793,41033,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(222794,41033,'blocks_5_tabs_1_tab_content',''),(222795,41033,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(222796,41033,'blocks_5_tabs_1_tab_image','40487'),(222797,41033,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(222798,41033,'blocks_5_tabs_2_tab_label','Where can I learn?'),(222799,41033,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(222800,41033,'blocks_5_tabs_2_tab_content_title',''),(222801,41033,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(222802,41033,'blocks_5_tabs_2_tab_content_heading','Locations'),(222803,41033,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(222804,41033,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(222805,41033,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(222806,41033,'blocks_5_tabs_2_tab_content_actions',''),(222807,41033,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(222808,41033,'blocks_5_tabs_2_tab_content',''),(222809,41033,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(222810,41033,'blocks_5_tabs_2_tab_image','39224'),(222811,41033,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(222812,41033,'blocks_5_tabs','3'),(222813,41033,'_blocks_5_tabs','field_6177cff281419'),(222814,41033,'blocks_6_acfe_flexible_toggle',''),(222815,41033,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(222816,41033,'blocks_6_acfe_flexible_layout_title','Text Block'),(222817,41033,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(222818,41033,'blocks_6_options_theme','#b61234'),(222819,41033,'_blocks_6_options_theme','field_6176830e2ad17'),(222820,41033,'blocks_6_options',''),(222821,41033,'_blocks_6_options','field_6176830e2ad16'),(222822,41033,'blocks_6_text_block_heading','Fees & Funding Options'),(222823,41033,'_blocks_6_text_block_heading','field_617669d413097'),(222824,41033,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(222825,41033,'_blocks_6_text_block_content','field_617669ec13098'),(222826,41033,'blocks_8_acfe_flexible_toggle',''),(222827,41033,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(222828,41033,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(222829,41033,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(222830,41033,'blocks_8_options_theme','#ffffff'),(222831,41033,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(222832,41033,'blocks_8_options_reverse','0'),(222833,41033,'_blocks_8_options_reverse','field_61768049bb8ac'),(222834,41033,'blocks_8_options',''),(222835,41033,'_blocks_8_options','field_617682517c334'),(222836,41033,'blocks_8_split_5050_image','40484'),(222837,41033,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(222838,41033,'blocks_8_split_5050_video',''),(222839,41033,'_blocks_8_split_5050_video','field_6239f3160848a'),(222840,41033,'blocks_8_split_5050_content_title',''),(222841,41033,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(222842,41033,'blocks_8_split_5050_content_heading','Why study this course?'),(222843,41033,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(222844,41033,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(222845,41033,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(222846,41033,'blocks_8_split_5050_content_actions',''),(222847,41033,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(222848,41033,'blocks_8_split_5050_content',''),(222849,41033,'_blocks_8_split_5050_content','field_61767afceb8ba'),(222850,41033,'blocks_7_acfe_flexible_toggle',''),(222851,41033,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(222852,41033,'blocks_7_acfe_flexible_layout_title','Icons'),(222853,41033,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(222854,41033,'blocks_7_options_theme','#b61234'),(222855,41033,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(222856,41033,'blocks_7_options_format','row'),(222857,41033,'_blocks_7_options_format','field_64bfde9a90690'),(222858,41033,'blocks_7_options',''),(222859,41033,'_blocks_7_options','field_64bfdd9b90684'),(222860,41033,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(222861,41033,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(222862,41033,'blocks_7_icon_row_items_0_label','Pay in full '),(222863,41033,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(222864,41033,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(222865,41033,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(222866,41033,'blocks_7_icon_row_items_1_icon','finance.svg'),(222867,41033,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(222868,41033,'blocks_7_icon_row_items_1_label','0% finance'),(222869,41033,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(222870,41033,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(222871,41033,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(222872,41033,'blocks_7_icon_row_items_2_icon','deposit.svg'),(222873,41033,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(222874,41033,'blocks_7_icon_row_items_2_label','Deposit & balance'),(222875,41033,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(222876,41033,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(222877,41033,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(222878,41033,'blocks_7_icon_row_items','3'),(222879,41033,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(222880,41033,'blocks_9_acfe_flexible_toggle',''),(222881,41033,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(222882,41033,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(222883,41033,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(222884,41033,'blocks_9_options_theme','#ffffff'),(222885,41033,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(222886,41033,'blocks_9_options_state','0'),(222887,41033,'_blocks_9_options_state','field_6239fcb7508c5'),(222888,41033,'blocks_9_options',''),(222889,41033,'_blocks_9_options','field_6177e2991ac44'),(222890,41033,'blocks_9_content_title',''),(222891,41033,'_blocks_9_content_title','field_64d237e8bb1e2'),(222892,41033,'blocks_9_content_heading','Frequently asked questions '),(222893,41033,'_blocks_9_content_heading','field_64d237e8bb1e3'),(222894,41033,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(222895,41033,'_blocks_9_content_text','field_64d237e8bb1e4'),(222896,41033,'blocks_9_content_actions',''),(222897,41033,'_blocks_9_content_actions','field_64d237e8bb1e5'),(222898,41033,'blocks_9_content_align','left'),(222899,41033,'_blocks_9_content_align','field_64d2443e6b6aa'),(222900,41033,'blocks_9_content',''),(222901,41033,'_blocks_9_content','field_64d237e8bb1e1'),(222902,41033,'blocks_9_accordion_content','faqs'),(222903,41033,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(222904,41033,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(222905,41033,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(222906,41033,'blocks_9_actions',''),(222907,41033,'_blocks_9_actions','field_61a746a817f7a'),(222908,41033,'blocks_10_acfe_flexible_toggle',''),(222909,41033,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(222910,41033,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(222911,41033,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(222912,41033,'blocks_10_testimonial_slider_content_title',''),(222913,41033,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(222914,41033,'blocks_10_testimonial_slider_content_heading','Testimonials'),(222915,41033,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(222916,41033,'blocks_10_testimonial_slider_content_text',''),(222917,41033,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(222918,41033,'blocks_10_testimonial_slider_content_actions',''),(222919,41033,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(222920,41033,'blocks_10_testimonial_slider_content',''),(222921,41033,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(222922,41033,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(222923,41033,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(222924,41033,'blocks_10_testimonial_slider_ambassador_bool','0'),(222925,41033,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(222926,41034,'hide_hero','0'),(222927,41034,'_hide_hero','field_66a2380fcda39'),(222928,41034,'hero_title','Biomechanics and Sports Massage Therapy'),(222929,41034,'_hero_title','field_617571fe285e8'),(222930,41034,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(222931,41034,'_hero_text','field_6175723c285e9'),(222932,41034,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39238-3\";s:6:\"target\";s:0:\"\";}'),(222933,41034,'_hero_actions_0_button','field_61757281285eb'),(222934,41034,'hero_actions','1'),(222935,41034,'_hero_actions','field_61757270285ea'),(222936,41034,'hero_style','default'),(222937,41034,'_hero_style','field_62051d9dc5324'),(222938,41034,'_thumbnail_id','39240'),(222939,41034,'__thumbnail_id','field_617570855ddaf'),(222940,41034,'hero_image_pos_x','right'),(222941,41034,'_hero_image_pos_x','field_62ec3d05390bb'),(222942,41034,'hero_image_pos_y','top'),(222943,41034,'_hero_image_pos_y','field_62ec3d05390bc'),(222944,41034,'hero_image_pos',''),(222945,41034,'_hero_image_pos','field_62ec3d05390ba'),(222946,41034,'fft_hide_from_listings','0'),(222947,41034,'_fft_hide_from_listings','field_61f1320446ab2'),(222948,41034,'fft_page_format','default'),(222949,41034,'_fft_page_format','field_61ae213f1f218'),(222950,41034,'fft_hide_nav','0'),(222951,41034,'_fft_hide_nav','field_635bd5e43527c'),(222952,41034,'fft_hide_header_call_to_action','0'),(222953,41034,'_fft_hide_header_call_to_action','field_635bd6723527d'),(222954,41034,'fft_page_sitemap','0'),(222955,41034,'_fft_page_sitemap','field_61af9b34e8181'),(222956,41034,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:10:\"split_5050\";i:9;s:16:\"standard_content\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(222957,41034,'_blocks','field_6176696113096'),(222958,41034,'blocks_0_acfe_flexible_toggle',''),(222959,41034,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(222960,41034,'blocks_0_acfe_flexible_layout_title','Template'),(222961,41034,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(222962,41034,'blocks_0_template','39087'),(222963,41034,'_blocks_0_template','field_617bdd570fe01'),(222964,41034,'blocks_4_acfe_flexible_toggle',''),(222965,41034,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(222966,41034,'blocks_4_acfe_flexible_layout_title','Tabs'),(222967,41034,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(222968,41034,'blocks_4_options_theme','#ffffff'),(222969,41034,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(222970,41034,'blocks_4_options',''),(222971,41034,'_blocks_4_options','field_6177cfcd8140f'),(222972,41034,'blocks_4_tabs_0_tab_label','What will I learn ?'),(222973,41034,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(222974,41034,'blocks_4_tabs_0_tab_content_title',''),(222975,41034,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(222976,41034,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(222977,41034,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(222978,41034,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(222979,41034,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(222980,41034,'blocks_4_tabs_0_tab_content_actions',''),(222981,41034,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(222982,41034,'blocks_4_tabs_0_tab_content',''),(222983,41034,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(222984,41034,'blocks_4_tabs_0_tab_image','39076'),(222985,41034,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(222986,41034,'blocks_4_tabs_1_tab_label','What do I need ?'),(222987,41034,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(222988,41034,'blocks_4_tabs_1_tab_content_title',''),(222989,41034,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(222990,41034,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(222991,41034,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(222992,41034,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(222993,41034,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(222994,41034,'blocks_4_tabs_1_tab_content_actions',''),(222995,41034,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(222996,41034,'blocks_4_tabs_1_tab_content',''),(222997,41034,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(222998,41034,'blocks_4_tabs_1_tab_image','39223'),(222999,41034,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(223000,41034,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(223001,41034,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(223002,41034,'blocks_4_tabs_2_tab_content_title',''),(223003,41034,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(223004,41034,'blocks_4_tabs_2_tab_content_heading','Locations'),(223005,41034,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(223006,41034,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(223007,41034,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(223008,41034,'blocks_4_tabs_2_tab_content_actions',''),(223009,41034,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(223010,41034,'blocks_4_tabs_2_tab_content',''),(223011,41034,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(223012,41034,'blocks_4_tabs_2_tab_image','39224'),(223013,41034,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(223014,41034,'blocks_4_tabs','3'),(223015,41034,'_blocks_4_tabs','field_6177cff281419'),(223016,41034,'blocks_5_acfe_flexible_toggle',''),(223017,41034,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(223018,41034,'blocks_5_acfe_flexible_layout_title','Text Block'),(223019,41034,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(223020,41034,'blocks_5_options_theme','#b61234'),(223021,41034,'_blocks_5_options_theme','field_6176830e2ad17'),(223022,41034,'blocks_5_options',''),(223023,41034,'_blocks_5_options','field_6176830e2ad16'),(223024,41034,'blocks_5_text_block_heading','Fees & Funding Options'),(223025,41034,'_blocks_5_text_block_heading','field_617669d413097'),(223026,41034,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(223027,41034,'_blocks_5_text_block_content','field_617669ec13098'),(223028,41034,'blocks_1_acfe_flexible_toggle',''),(223029,41034,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(223030,41034,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(223031,41034,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(223032,41034,'blocks_1_options_theme','#ffffff'),(223033,41034,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(223034,41034,'blocks_1_options_reverse','0'),(223035,41034,'_blocks_1_options_reverse','field_61768049bb8ac'),(223036,41034,'blocks_1_options',''),(223037,41034,'_blocks_1_options','field_617682517c334'),(223038,41034,'blocks_1_split_5050_image','39241'),(223039,41034,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(223040,41034,'blocks_1_split_5050_video',''),(223041,41034,'_blocks_1_split_5050_video','field_6239f3160848a'),(223042,41034,'blocks_1_split_5050_content_title',''),(223043,41034,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(223044,41034,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(223045,41034,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(223046,41034,'blocks_1_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(223047,41034,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(223048,41034,'blocks_1_split_5050_content_actions',''),(223049,41034,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(223050,41034,'blocks_1_split_5050_content',''),(223051,41034,'_blocks_1_split_5050_content','field_61767afceb8ba'),(223052,41034,'blocks_6_acfe_flexible_toggle',''),(223053,41034,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(223054,41034,'blocks_6_acfe_flexible_layout_title','Icons'),(223055,41034,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(223056,41034,'blocks_6_options_theme','#b61234'),(223057,41034,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(223058,41034,'blocks_6_options_format','row'),(223059,41034,'_blocks_6_options_format','field_64bfde9a90690'),(223060,41034,'blocks_6_options',''),(223061,41034,'_blocks_6_options','field_64bfdd9b90684'),(223062,41034,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(223063,41034,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(223064,41034,'blocks_6_icon_row_items_0_label','Pay in Full'),(223065,41034,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(223066,41034,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(223067,41034,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(223068,41034,'blocks_6_icon_row_items_1_icon','finance.svg'),(223069,41034,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(223070,41034,'blocks_6_icon_row_items_1_label','0% Finance'),(223071,41034,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(223072,41034,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(223073,41034,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(223074,41034,'blocks_6_icon_row_items_2_icon','deposit.svg'),(223075,41034,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(223076,41034,'blocks_6_icon_row_items_2_label','Deposit & balance'),(223077,41034,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(223078,41034,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(223079,41034,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(223080,41034,'blocks_6_icon_row_items','3'),(223081,41034,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(223082,41034,'blocks_7_acfe_flexible_toggle',''),(223083,41034,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(223084,41034,'blocks_7_acfe_flexible_layout_title','Steps'),(223085,41034,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(223086,41034,'blocks_7_row_content_title',''),(223087,41034,'_blocks_7_row_content_title','field_64888cd1e26e0'),(223088,41034,'blocks_7_row_content_heading','Benefits of Training with Us'),(223089,41034,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(223090,41034,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(223091,41034,'_blocks_7_row_content_text','field_64888ce2e26e2'),(223092,41034,'blocks_7_row_content_actions',''),(223093,41034,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(223094,41034,'blocks_7_row_content',''),(223095,41034,'_blocks_7_row_content','field_64888cb0e26df'),(223096,41034,'blocks_7_steps_0_icon','progression.svg'),(223097,41034,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(223098,41034,'blocks_7_steps_0_title','Earning potential'),(223099,41034,'_blocks_7_steps_0_title','field_64888d94e26e7'),(223100,41034,'blocks_7_steps_0_text','Attract new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(223101,41034,'_blocks_7_steps_0_text','field_64888d99e26e8'),(223102,41034,'blocks_7_steps_1_icon','support.svg'),(223103,41034,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(223104,41034,'blocks_7_steps_1_title','Lifetime learning promise'),(223105,41034,'_blocks_7_steps_1_title','field_64888d94e26e7'),(223106,41034,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(223107,41034,'_blocks_7_steps_1_text','field_64888d99e26e8'),(223108,41034,'blocks_7_steps_2_icon','qualification.svg'),(223109,41034,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(223110,41034,'blocks_7_steps_2_title','Evidence based hands on learning'),(223111,41034,'_blocks_7_steps_2_title','field_64888d94e26e7'),(223112,41034,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn how to screen and test to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(223113,41034,'_blocks_7_steps_2_text','field_64888d99e26e8'),(223114,41034,'blocks_7_steps_3_icon','leaders.svg'),(223115,41034,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(223116,41034,'blocks_7_steps_3_title','Stand out from the crowd'),(223117,41034,'_blocks_7_steps_3_title','field_64888d94e26e7'),(223118,41034,'blocks_7_steps_3_text','As a Sports Massage Therapist through the Biomechanics Coaching Diploma we will give you the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course can also enhance your relationship with other healthcare providers because you will have confidence in a common language'),(223119,41034,'_blocks_7_steps_3_text','field_64888d99e26e8'),(223120,41034,'blocks_7_steps','4'),(223121,41034,'_blocks_7_steps','field_64888d44e26e5'),(223122,41034,'blocks_2_acfe_flexible_toggle',''),(223123,41034,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(223124,41034,'blocks_2_acfe_flexible_layout_title','Form'),(223125,41034,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(223126,41034,'blocks_2_row_content_format','standard'),(223127,41034,'_blocks_2_row_content_format','field_6481ead962881'),(223128,41034,'blocks_2_row_content_title',''),(223129,41034,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(223130,41034,'blocks_2_row_content_heading','Enquire Today'),(223131,41034,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(223132,41034,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(223133,41034,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(223134,41034,'blocks_2_row_content_actions',''),(223135,41034,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(223136,41034,'blocks_2_row_content',''),(223137,41034,'_blocks_2_row_content','field_61a0f5f5b3db0'),(223138,41034,'blocks_2_row_form','40394'),(223139,41034,'_blocks_2_row_form','field_61a4ff2c0b08e'),(223140,41034,'blocks_2_row_form_button_label',''),(223141,41034,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(223142,41034,'blocks_3_acfe_flexible_toggle',''),(223143,41034,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(223144,41034,'blocks_3_acfe_flexible_layout_title','Video'),(223145,41034,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(223146,41034,'blocks_3_size','large'),(223147,41034,'_blocks_3_size','field_6487038f297c1'),(223148,41034,'blocks_3_row_content_title',''),(223149,41034,'_blocks_3_row_content_title','field_64870132a865d'),(223150,41034,'blocks_3_row_content_heading',''),(223151,41034,'_blocks_3_row_content_heading','field_64870142a865e'),(223152,41034,'blocks_3_row_content_text',''),(223153,41034,'_blocks_3_row_content_text','field_64870148a865f'),(223154,41034,'blocks_3_row_content',''),(223155,41034,'_blocks_3_row_content','field_6487008ba865c'),(223156,41034,'blocks_3_video_src',''),(223157,41034,'_blocks_3_video_src','field_6193c4a98ec07'),(223158,41034,'blocks_3_video_thumbnail',''),(223159,41034,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(223160,41034,'blocks_8_acfe_flexible_toggle',''),(223161,41034,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(223162,41034,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(223163,41034,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(223164,41034,'blocks_8_options_theme','#f5f5f5'),(223165,41034,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(223166,41034,'blocks_8_options_reverse','0'),(223167,41034,'_blocks_8_options_reverse','field_61768049bb8ac'),(223168,41034,'blocks_8_options',''),(223169,41034,'_blocks_8_options','field_617682517c334'),(223170,41034,'blocks_8_split_5050_image','40920'),(223171,41034,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(223172,41034,'blocks_8_split_5050_video',''),(223173,41034,'_blocks_8_split_5050_video','field_6239f3160848a'),(223174,41034,'blocks_8_split_5050_content_title',''),(223175,41034,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(223176,41034,'blocks_8_split_5050_content_heading','Why study this course ?'),(223177,41034,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(223178,41034,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(223179,41034,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(223180,41034,'blocks_8_split_5050_content_actions',''),(223181,41034,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(223182,41034,'blocks_8_split_5050_content',''),(223183,41034,'_blocks_8_split_5050_content','field_61767afceb8ba'),(223184,41034,'blocks_9_acfe_flexible_toggle','1'),(223185,41034,'_blocks_9_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(223186,41034,'blocks_9_acfe_flexible_layout_title','Standard/Editorial Content'),(223187,41034,'_blocks_9_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(223188,41034,'blocks_9_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(223189,41034,'_blocks_9_content','field_6193c9b5eac84'),(223190,41034,'blocks_10_acfe_flexible_toggle',''),(223191,41034,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(223192,41034,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(223193,41034,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(223194,41034,'blocks_10_testimonial_slider_content_title',''),(223195,41034,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(223196,41034,'blocks_10_testimonial_slider_content_heading','Testimonials'),(223197,41034,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(223198,41034,'blocks_10_testimonial_slider_content_text',''),(223199,41034,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(223200,41034,'blocks_10_testimonial_slider_content_actions',''),(223201,41034,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(223202,41034,'blocks_10_testimonial_slider_content',''),(223203,41034,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(223204,41034,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(223205,41034,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(223206,41034,'blocks_10_testimonial_slider_ambassador_bool','0'),(223207,41034,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(223208,41034,'blocks_11_acfe_flexible_toggle',''),(223209,41034,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(223210,41034,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(223211,41034,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(223212,41034,'blocks_11_options_theme','#ffffff'),(223213,41034,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(223214,41034,'blocks_11_options_state','0'),(223215,41034,'_blocks_11_options_state','field_6239fcb7508c5'),(223216,41034,'blocks_11_options',''),(223217,41034,'_blocks_11_options','field_6177e2991ac44'),(223218,41034,'blocks_11_content_title',''),(223219,41034,'_blocks_11_content_title','field_64d237e8bb1e2'),(223220,41034,'blocks_11_content_heading','Frequently Asked Questions '),(223221,41034,'_blocks_11_content_heading','field_64d237e8bb1e3'),(223222,41034,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(223223,41034,'_blocks_11_content_text','field_64d237e8bb1e4'),(223224,41034,'blocks_11_content_actions',''),(223225,41034,'_blocks_11_content_actions','field_64d237e8bb1e5'),(223226,41034,'blocks_11_content_align','left'),(223227,41034,'_blocks_11_content_align','field_64d2443e6b6aa'),(223228,41034,'blocks_11_content',''),(223229,41034,'_blocks_11_content','field_64d237e8bb1e1'),(223230,41034,'blocks_11_accordion_content','faqs'),(223231,41034,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(223232,41034,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(223233,41034,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(223234,41034,'blocks_11_actions',''),(223235,41034,'_blocks_11_actions','field_61a746a817f7a'),(223236,41035,'hide_hero','0'),(223237,41035,'_hide_hero','field_66a2380fcda39'),(223238,41035,'hero_title','Biomechanics and Podiatrists'),(223239,41035,'_hero_title','field_617571fe285e8'),(223240,41035,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(223241,41035,'_hero_text','field_6175723c285e9'),(223242,41035,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(223243,41035,'_hero_actions_0_button','field_61757281285eb'),(223244,41035,'hero_actions','1'),(223245,41035,'_hero_actions','field_61757270285ea'),(223246,41035,'hero_style','default'),(223247,41035,'_hero_style','field_62051d9dc5324'),(223248,41035,'_thumbnail_id','39247'),(223249,41035,'__thumbnail_id','field_617570855ddaf'),(223250,41035,'hero_image_pos_x','right'),(223251,41035,'_hero_image_pos_x','field_62ec3d05390bb'),(223252,41035,'hero_image_pos_y','top'),(223253,41035,'_hero_image_pos_y','field_62ec3d05390bc'),(223254,41035,'hero_image_pos',''),(223255,41035,'_hero_image_pos','field_62ec3d05390ba'),(223256,41035,'fft_hide_from_listings','0'),(223257,41035,'_fft_hide_from_listings','field_61f1320446ab2'),(223258,41035,'fft_page_format','default'),(223259,41035,'_fft_page_format','field_61ae213f1f218'),(223260,41035,'fft_hide_nav','0'),(223261,41035,'_fft_hide_nav','field_635bd5e43527c'),(223262,41035,'fft_hide_header_call_to_action','0'),(223263,41035,'_fft_hide_header_call_to_action','field_635bd6723527d'),(223264,41035,'fft_page_sitemap','0'),(223265,41035,'_fft_page_sitemap','field_61af9b34e8181'),(223266,41035,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(223267,41035,'_blocks','field_6176696113096'),(223268,41035,'blocks_2_acfe_flexible_toggle',''),(223269,41035,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(223270,41035,'blocks_2_acfe_flexible_layout_title','Form'),(223271,41035,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(223272,41035,'blocks_2_row_content_format','standard'),(223273,41035,'_blocks_2_row_content_format','field_6481ead962881'),(223274,41035,'blocks_2_row_content_title',''),(223275,41035,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(223276,41035,'blocks_2_row_content_heading','Enquire Today'),(223277,41035,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(223278,41035,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(223279,41035,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(223280,41035,'blocks_2_row_content_actions',''),(223281,41035,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(223282,41035,'blocks_2_row_content',''),(223283,41035,'_blocks_2_row_content','field_61a0f5f5b3db0'),(223284,41035,'blocks_2_row_form','40394'),(223285,41035,'_blocks_2_row_form','field_61a4ff2c0b08e'),(223286,41035,'blocks_2_row_form_button_label',''),(223287,41035,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(223288,41035,'blocks_0_acfe_flexible_toggle',''),(223289,41035,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(223290,41035,'blocks_0_acfe_flexible_layout_title','Template'),(223291,41035,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(223292,41035,'blocks_0_template','39087'),(223293,41035,'_blocks_0_template','field_617bdd570fe01'),(223294,41035,'blocks_1_acfe_flexible_toggle',''),(223295,41035,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(223296,41035,'blocks_1_acfe_flexible_layout_title','Steps'),(223297,41035,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(223298,41035,'blocks_1_row_content_title',''),(223299,41035,'_blocks_1_row_content_title','field_64888cd1e26e0'),(223300,41035,'blocks_1_row_content_heading','Benefits of training with us'),(223301,41035,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(223302,41035,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(223303,41035,'_blocks_1_row_content_text','field_64888ce2e26e2'),(223304,41035,'blocks_1_row_content_actions',''),(223305,41035,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(223306,41035,'blocks_1_row_content',''),(223307,41035,'_blocks_1_row_content','field_64888cb0e26df'),(223308,41035,'blocks_1_steps_0_icon','progression.svg'),(223309,41035,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(223310,41035,'blocks_1_steps_0_title','Earning Potential'),(223311,41035,'_blocks_1_steps_0_title','field_64888d94e26e7'),(223312,41035,'blocks_1_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(223313,41035,'_blocks_1_steps_0_text','field_64888d99e26e8'),(223314,41035,'blocks_1_steps_1_icon','support.svg'),(223315,41035,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(223316,41035,'blocks_1_steps_1_title','Lifetime Learning Promise'),(223317,41035,'_blocks_1_steps_1_title','field_64888d94e26e7'),(223318,41035,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(223319,41035,'_blocks_1_steps_1_text','field_64888d99e26e8'),(223320,41035,'blocks_1_steps_2_icon','qualification.svg'),(223321,41035,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(223322,41035,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(223323,41035,'_blocks_1_steps_2_title','field_64888d94e26e7'),(223324,41035,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(223325,41035,'_blocks_1_steps_2_text','field_64888d99e26e8'),(223326,41035,'blocks_1_steps_3_icon','leaders.svg'),(223327,41035,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(223328,41035,'blocks_1_steps_3_title','Stand Out From the Crowd'),(223329,41035,'_blocks_1_steps_3_title','field_64888d94e26e7'),(223330,41035,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(223331,41035,'_blocks_1_steps_3_text','field_64888d99e26e8'),(223332,41035,'blocks_1_steps','4'),(223333,41035,'_blocks_1_steps','field_64888d44e26e5'),(223334,41035,'blocks_3_acfe_flexible_toggle',''),(223335,41035,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(223336,41035,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(223337,41035,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(223338,41035,'blocks_3_options_theme','#ffffff'),(223339,41035,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(223340,41035,'blocks_3_options_reverse','0'),(223341,41035,'_blocks_3_options_reverse','field_61768049bb8ac'),(223342,41035,'blocks_3_options',''),(223343,41035,'_blocks_3_options','field_617682517c334'),(223344,41035,'blocks_3_split_5050_image','39617'),(223345,41035,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(223346,41035,'blocks_3_split_5050_video',''),(223347,41035,'_blocks_3_split_5050_video','field_6239f3160848a'),(223348,41035,'blocks_3_split_5050_content_title',''),(223349,41035,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(223350,41035,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(223351,41035,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(223352,41035,'blocks_3_split_5050_content_text','This integrated system is enabling podiatrists to find solutions to foot problems through understanding the upper body and shoulders. By assessing the entire body, this unique approach gives podiatrists the ability to retain clients longer and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(223353,41035,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(223354,41035,'blocks_3_split_5050_content_actions',''),(223355,41035,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(223356,41035,'blocks_3_split_5050_content',''),(223357,41035,'_blocks_3_split_5050_content','field_61767afceb8ba'),(223358,41035,'blocks_4_acfe_flexible_toggle',''),(223359,41035,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(223360,41035,'blocks_4_acfe_flexible_layout_title','Tabs'),(223361,41035,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(223362,41035,'blocks_4_options_theme','#ffffff'),(223363,41035,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(223364,41035,'blocks_4_options',''),(223365,41035,'_blocks_4_options','field_6177cfcd8140f'),(223366,41035,'blocks_4_tabs_0_tab_label','What will I learn?'),(223367,41035,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(223368,41035,'blocks_4_tabs_0_tab_content_title',''),(223369,41035,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(223370,41035,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(223371,41035,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(223372,41035,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(223373,41035,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(223374,41035,'blocks_4_tabs_0_tab_content_actions',''),(223375,41035,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(223376,41035,'blocks_4_tabs_0_tab_content',''),(223377,41035,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(223378,41035,'blocks_4_tabs_0_tab_image','39076'),(223379,41035,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(223380,41035,'blocks_4_tabs_1_tab_label','What do I need?'),(223381,41035,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(223382,41035,'blocks_4_tabs_1_tab_content_title',''),(223383,41035,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(223384,41035,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(223385,41035,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(223386,41035,'blocks_4_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(223387,41035,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(223388,41035,'blocks_4_tabs_1_tab_content_actions',''),(223389,41035,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(223390,41035,'blocks_4_tabs_1_tab_content',''),(223391,41035,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(223392,41035,'blocks_4_tabs_1_tab_image','39223'),(223393,41035,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(223394,41035,'blocks_4_tabs_2_tab_label','Where can I learn?'),(223395,41035,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(223396,41035,'blocks_4_tabs_2_tab_content_title',''),(223397,41035,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(223398,41035,'blocks_4_tabs_2_tab_content_heading','Locations'),(223399,41035,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(223400,41035,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(223401,41035,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(223402,41035,'blocks_4_tabs_2_tab_content_actions',''),(223403,41035,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(223404,41035,'blocks_4_tabs_2_tab_content',''),(223405,41035,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(223406,41035,'blocks_4_tabs_2_tab_image','39224'),(223407,41035,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(223408,41035,'blocks_4_tabs','3'),(223409,41035,'_blocks_4_tabs','field_6177cff281419'),(223410,41035,'blocks_5_acfe_flexible_toggle',''),(223411,41035,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(223412,41035,'blocks_5_acfe_flexible_layout_title','Text Block'),(223413,41035,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(223414,41035,'blocks_5_options_theme','#b61234'),(223415,41035,'_blocks_5_options_theme','field_6176830e2ad17'),(223416,41035,'blocks_5_options',''),(223417,41035,'_blocks_5_options','field_6176830e2ad16'),(223418,41035,'blocks_5_text_block_heading','Fees & Funding Options'),(223419,41035,'_blocks_5_text_block_heading','field_617669d413097'),(223420,41035,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(223421,41035,'_blocks_5_text_block_content','field_617669ec13098'),(223422,41035,'blocks_6_acfe_flexible_toggle',''),(223423,41035,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(223424,41035,'blocks_6_acfe_flexible_layout_title','Icons'),(223425,41035,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(223426,41035,'blocks_6_options_theme','#b61234'),(223427,41035,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(223428,41035,'blocks_6_options_format','row'),(223429,41035,'_blocks_6_options_format','field_64bfde9a90690'),(223430,41035,'blocks_6_options',''),(223431,41035,'_blocks_6_options','field_64bfdd9b90684'),(223432,41035,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(223433,41035,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(223434,41035,'blocks_6_icon_row_items_0_label','Pay in Full'),(223435,41035,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(223436,41035,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(223437,41035,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(223438,41035,'blocks_6_icon_row_items_1_icon','finance.svg'),(223439,41035,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(223440,41035,'blocks_6_icon_row_items_1_label','0% finance'),(223441,41035,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(223442,41035,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(223443,41035,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(223444,41035,'blocks_6_icon_row_items_2_icon','deposit.svg'),(223445,41035,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(223446,41035,'blocks_6_icon_row_items_2_label','Deposit & balance'),(223447,41035,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(223448,41035,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(223449,41035,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(223450,41035,'blocks_6_icon_row_items','3'),(223451,41035,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(223452,41035,'blocks_8_acfe_flexible_toggle',''),(223453,41035,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(223454,41035,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(223455,41035,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(223456,41035,'blocks_8_testimonial_slider_content_title',''),(223457,41035,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(223458,41035,'blocks_8_testimonial_slider_content_heading','Testimonials'),(223459,41035,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(223460,41035,'blocks_8_testimonial_slider_content_text',''),(223461,41035,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(223462,41035,'blocks_8_testimonial_slider_content_actions',''),(223463,41035,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(223464,41035,'blocks_8_testimonial_slider_content',''),(223465,41035,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(223466,41035,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(223467,41035,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(223468,41035,'blocks_8_testimonial_slider_ambassador_bool','0'),(223469,41035,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(223470,41035,'blocks_9_acfe_flexible_toggle',''),(223471,41035,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(223472,41035,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(223473,41035,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(223474,41035,'blocks_9_options_theme','#ffffff'),(223475,41035,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(223476,41035,'blocks_9_options_state','0'),(223477,41035,'_blocks_9_options_state','field_6239fcb7508c5'),(223478,41035,'blocks_9_options',''),(223479,41035,'_blocks_9_options','field_6177e2991ac44'),(223480,41035,'blocks_9_content_title',''),(223481,41035,'_blocks_9_content_title','field_64d237e8bb1e2'),(223482,41035,'blocks_9_content_heading','Frequently asked questions '),(223483,41035,'_blocks_9_content_heading','field_64d237e8bb1e3'),(223484,41035,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(223485,41035,'_blocks_9_content_text','field_64d237e8bb1e4'),(223486,41035,'blocks_9_content_actions',''),(223487,41035,'_blocks_9_content_actions','field_64d237e8bb1e5'),(223488,41035,'blocks_9_content_align','left'),(223489,41035,'_blocks_9_content_align','field_64d2443e6b6aa'),(223490,41035,'blocks_9_content',''),(223491,41035,'_blocks_9_content','field_64d237e8bb1e1'),(223492,41035,'blocks_9_accordion_content','faqs'),(223493,41035,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(223494,41035,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(223495,41035,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(223496,41035,'blocks_9_actions',''),(223497,41035,'_blocks_9_actions','field_61a746a817f7a'),(223498,41035,'blocks_7_acfe_flexible_toggle',''),(223499,41035,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(223500,41035,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(223501,41035,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(223502,41035,'blocks_7_options_theme','#f5f5f5'),(223503,41035,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(223504,41035,'blocks_7_options_reverse','0'),(223505,41035,'_blocks_7_options_reverse','field_61768049bb8ac'),(223506,41035,'blocks_7_options',''),(223507,41035,'_blocks_7_options','field_617682517c334'),(223508,41035,'blocks_7_split_5050_image','40920'),(223509,41035,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(223510,41035,'blocks_7_split_5050_video',''),(223511,41035,'_blocks_7_split_5050_video','field_6239f3160848a'),(223512,41035,'blocks_7_split_5050_content_title',''),(223513,41035,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(223514,41035,'blocks_7_split_5050_content_heading','Why Study This Course?'),(223515,41035,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(223516,41035,'blocks_7_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(223517,41035,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(223518,41035,'blocks_7_split_5050_content_actions',''),(223519,41035,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(223520,41035,'blocks_7_split_5050_content',''),(223521,41035,'_blocks_7_split_5050_content','field_61767afceb8ba'),(223522,41036,'hide_hero','0'),(223523,41036,'_hide_hero','field_66a2380fcda39'),(223524,41036,'hero_title','Biomechanics and Sports Coaches '),(223525,41036,'_hero_title','field_617571fe285e8'),(223526,41036,'hero_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(223527,41036,'_hero_text','field_6175723c285e9'),(223528,41036,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39249-3\";s:6:\"target\";s:0:\"\";}'),(223529,41036,'_hero_actions_0_button','field_61757281285eb'),(223530,41036,'hero_actions','1'),(223531,41036,'_hero_actions','field_61757270285ea'),(223532,41036,'hero_style','default'),(223533,41036,'_hero_style','field_62051d9dc5324'),(223534,41036,'_thumbnail_id','39251'),(223535,41036,'__thumbnail_id','field_617570855ddaf'),(223536,41036,'hero_image_pos_x','right'),(223537,41036,'_hero_image_pos_x','field_62ec3d05390bb'),(223538,41036,'hero_image_pos_y','top'),(223539,41036,'_hero_image_pos_y','field_62ec3d05390bc'),(223540,41036,'hero_image_pos',''),(223541,41036,'_hero_image_pos','field_62ec3d05390ba'),(223542,41036,'fft_hide_from_listings','0'),(223543,41036,'_fft_hide_from_listings','field_61f1320446ab2'),(223544,41036,'fft_page_format','default'),(223545,41036,'_fft_page_format','field_61ae213f1f218'),(223546,41036,'fft_hide_nav','0'),(223547,41036,'_fft_hide_nav','field_635bd5e43527c'),(223548,41036,'fft_hide_header_call_to_action','0'),(223549,41036,'_fft_hide_header_call_to_action','field_635bd6723527d'),(223550,41036,'fft_page_sitemap','0'),(223551,41036,'_fft_page_sitemap','field_61af9b34e8181'),(223552,41036,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"steps\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:10:\"accordions\";i:9;s:18:\"testimonial_slider\";}'),(223553,41036,'_blocks','field_6176696113096'),(223554,41036,'blocks_0_acfe_flexible_toggle',''),(223555,41036,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(223556,41036,'blocks_0_acfe_flexible_layout_title','Template'),(223557,41036,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(223558,41036,'blocks_0_template','39087'),(223559,41036,'_blocks_0_template','field_617bdd570fe01'),(223560,41036,'blocks_4_acfe_flexible_toggle',''),(223561,41036,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(223562,41036,'blocks_4_acfe_flexible_layout_title','Tabs'),(223563,41036,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(223564,41036,'blocks_4_options_theme','#ffffff'),(223565,41036,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(223566,41036,'blocks_4_options',''),(223567,41036,'_blocks_4_options','field_6177cfcd8140f'),(223568,41036,'blocks_4_tabs_0_tab_label','What will I learn ?'),(223569,41036,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(223570,41036,'blocks_4_tabs_0_tab_content_title',''),(223571,41036,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(223572,41036,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(223573,41036,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(223574,41036,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(223575,41036,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(223576,41036,'blocks_4_tabs_0_tab_content_actions',''),(223577,41036,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(223578,41036,'blocks_4_tabs_0_tab_content',''),(223579,41036,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(223580,41036,'blocks_4_tabs_0_tab_image','39076'),(223581,41036,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(223582,41036,'blocks_4_tabs_1_tab_label','What do I need ?'),(223583,41036,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(223584,41036,'blocks_4_tabs_1_tab_content_title',''),(223585,41036,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(223586,41036,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(223587,41036,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(223588,41036,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(223589,41036,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(223590,41036,'blocks_4_tabs_1_tab_content_actions',''),(223591,41036,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(223592,41036,'blocks_4_tabs_1_tab_content',''),(223593,41036,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(223594,41036,'blocks_4_tabs_1_tab_image','39223'),(223595,41036,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(223596,41036,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(223597,41036,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(223598,41036,'blocks_4_tabs_2_tab_content_title',''),(223599,41036,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(223600,41036,'blocks_4_tabs_2_tab_content_heading','Locations'),(223601,41036,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(223602,41036,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(223603,41036,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(223604,41036,'blocks_4_tabs_2_tab_content_actions',''),(223605,41036,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(223606,41036,'blocks_4_tabs_2_tab_content',''),(223607,41036,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(223608,41036,'blocks_4_tabs_2_tab_image','39224'),(223609,41036,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(223610,41036,'blocks_4_tabs','3'),(223611,41036,'_blocks_4_tabs','field_6177cff281419'),(223612,41036,'blocks_5_acfe_flexible_toggle',''),(223613,41036,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(223614,41036,'blocks_5_acfe_flexible_layout_title','Text Block'),(223615,41036,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(223616,41036,'blocks_5_options_theme','#b61234'),(223617,41036,'_blocks_5_options_theme','field_6176830e2ad17'),(223618,41036,'blocks_5_options',''),(223619,41036,'_blocks_5_options','field_6176830e2ad16'),(223620,41036,'blocks_5_text_block_heading','Fees & Funding Options'),(223621,41036,'_blocks_5_text_block_heading','field_617669d413097'),(223622,41036,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(223623,41036,'_blocks_5_text_block_content','field_617669ec13098'),(223624,41036,'blocks_6_acfe_flexible_toggle',''),(223625,41036,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(223626,41036,'blocks_6_acfe_flexible_layout_title','Icons'),(223627,41036,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(223628,41036,'blocks_6_options_theme','#b61234'),(223629,41036,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(223630,41036,'blocks_6_options_format','row'),(223631,41036,'_blocks_6_options_format','field_64bfde9a90690'),(223632,41036,'blocks_6_options',''),(223633,41036,'_blocks_6_options','field_64bfdd9b90684'),(223634,41036,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(223635,41036,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(223636,41036,'blocks_6_icon_row_items_0_label','Pay in Full'),(223637,41036,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(223638,41036,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(223639,41036,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(223640,41036,'blocks_6_icon_row_items_1_icon','finance.svg'),(223641,41036,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(223642,41036,'blocks_6_icon_row_items_1_label','0% finance'),(223643,41036,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(223644,41036,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(223645,41036,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(223646,41036,'blocks_6_icon_row_items_2_icon','deposit.svg'),(223647,41036,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(223648,41036,'blocks_6_icon_row_items_2_label','Deposit & balance'),(223649,41036,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(223650,41036,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(223651,41036,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(223652,41036,'blocks_6_icon_row_items','3'),(223653,41036,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(223654,41036,'blocks_1_acfe_flexible_toggle',''),(223655,41036,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(223656,41036,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(223657,41036,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(223658,41036,'blocks_1_options_theme','#ffffff'),(223659,41036,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(223660,41036,'blocks_1_options_reverse','0'),(223661,41036,'_blocks_1_options_reverse','field_61768049bb8ac'),(223662,41036,'blocks_1_options',''),(223663,41036,'_blocks_1_options','field_617682517c334'),(223664,41036,'blocks_1_split_5050_image','39252'),(223665,41036,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(223666,41036,'blocks_1_split_5050_video',''),(223667,41036,'_blocks_1_split_5050_video','field_6239f3160848a'),(223668,41036,'blocks_1_split_5050_content_title',''),(223669,41036,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(223670,41036,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports coach'),(223671,41036,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(223672,41036,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from, injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(223673,41036,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(223674,41036,'blocks_1_split_5050_content_actions',''),(223675,41036,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(223676,41036,'blocks_1_split_5050_content',''),(223677,41036,'_blocks_1_split_5050_content','field_61767afceb8ba'),(223678,41036,'blocks_2_acfe_flexible_toggle',''),(223679,41036,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(223680,41036,'blocks_2_acfe_flexible_layout_title','Form'),(223681,41036,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(223682,41036,'blocks_2_row_content_format','standard'),(223683,41036,'_blocks_2_row_content_format','field_6481ead962881'),(223684,41036,'blocks_2_row_content_title',''),(223685,41036,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(223686,41036,'blocks_2_row_content_heading','Enquire Today'),(223687,41036,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(223688,41036,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(223689,41036,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(223690,41036,'blocks_2_row_content_actions',''),(223691,41036,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(223692,41036,'blocks_2_row_content',''),(223693,41036,'_blocks_2_row_content','field_61a0f5f5b3db0'),(223694,41036,'blocks_2_row_form','40394'),(223695,41036,'_blocks_2_row_form','field_61a4ff2c0b08e'),(223696,41036,'blocks_2_row_form_button_label',''),(223697,41036,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(223698,41036,'blocks_3_acfe_flexible_toggle',''),(223699,41036,'_blocks_3_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(223700,41036,'blocks_3_acfe_flexible_layout_title','Steps'),(223701,41036,'_blocks_3_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(223702,41036,'blocks_3_row_content_title',''),(223703,41036,'_blocks_3_row_content_title','field_64888cd1e26e0'),(223704,41036,'blocks_3_row_content_heading','Benefits of training with us'),(223705,41036,'_blocks_3_row_content_heading','field_64888cd9e26e1'),(223706,41036,'blocks_3_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(223707,41036,'_blocks_3_row_content_text','field_64888ce2e26e2'),(223708,41036,'blocks_3_row_content_actions',''),(223709,41036,'_blocks_3_row_content_actions','field_64888cf5e26e3'),(223710,41036,'blocks_3_row_content',''),(223711,41036,'_blocks_3_row_content','field_64888cb0e26df'),(223712,41036,'blocks_3_steps_0_icon','progression.svg'),(223713,41036,'_blocks_3_steps_0_icon','field_64888d53e26e6'),(223714,41036,'blocks_3_steps_0_title','Earning potential'),(223715,41036,'_blocks_3_steps_0_title','field_64888d94e26e7'),(223716,41036,'blocks_3_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(223717,41036,'_blocks_3_steps_0_text','field_64888d99e26e8'),(223718,41036,'blocks_3_steps_1_icon','support.svg'),(223719,41036,'_blocks_3_steps_1_icon','field_64888d53e26e6'),(223720,41036,'blocks_3_steps_1_title','Lifetime Learning Promise'),(223721,41036,'_blocks_3_steps_1_title','field_64888d94e26e7'),(223722,41036,'blocks_3_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(223723,41036,'_blocks_3_steps_1_text','field_64888d99e26e8'),(223724,41036,'blocks_3_steps_2_icon','qualification.svg'),(223725,41036,'_blocks_3_steps_2_icon','field_64888d53e26e6'),(223726,41036,'blocks_3_steps_2_title','Evidence based hands on learning'),(223727,41036,'_blocks_3_steps_2_title','field_64888d94e26e7'),(223728,41036,'blocks_3_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(223729,41036,'_blocks_3_steps_2_text','field_64888d99e26e8'),(223730,41036,'blocks_3_steps_3_icon','leaders.svg'),(223731,41036,'_blocks_3_steps_3_icon','field_64888d53e26e6'),(223732,41036,'blocks_3_steps_3_title','Stand out from the crowd'),(223733,41036,'_blocks_3_steps_3_title','field_64888d94e26e7'),(223734,41036,'blocks_3_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(223735,41036,'_blocks_3_steps_3_text','field_64888d99e26e8'),(223736,41036,'blocks_3_steps','4'),(223737,41036,'_blocks_3_steps','field_64888d44e26e5'),(223738,41036,'blocks_7_acfe_flexible_toggle',''),(223739,41036,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(223740,41036,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(223741,41036,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(223742,41036,'blocks_7_options_theme','#ffffff'),(223743,41036,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(223744,41036,'blocks_7_options_reverse','0'),(223745,41036,'_blocks_7_options_reverse','field_61768049bb8ac'),(223746,41036,'blocks_7_options',''),(223747,41036,'_blocks_7_options','field_617682517c334'),(223748,41036,'blocks_7_split_5050_image','40491'),(223749,41036,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(223750,41036,'blocks_7_split_5050_video',''),(223751,41036,'_blocks_7_split_5050_video','field_6239f3160848a'),(223752,41036,'blocks_7_split_5050_content_title',''),(223753,41036,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(223754,41036,'blocks_7_split_5050_content_heading','Why study this course ?'),(223755,41036,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(223756,41036,'blocks_7_split_5050_content_text','<ul>\r\n 	<li style=\"text-align: left;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: left;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: left;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: left;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: left;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(223757,41036,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(223758,41036,'blocks_7_split_5050_content_actions',''),(223759,41036,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(223760,41036,'blocks_7_split_5050_content',''),(223761,41036,'_blocks_7_split_5050_content','field_61767afceb8ba'),(223762,41036,'blocks_8_acfe_flexible_toggle',''),(223763,41036,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(223764,41036,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(223765,41036,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(223766,41036,'blocks_8_options_theme','#ffffff'),(223767,41036,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(223768,41036,'blocks_8_options_state','0'),(223769,41036,'_blocks_8_options_state','field_6239fcb7508c5'),(223770,41036,'blocks_8_options',''),(223771,41036,'_blocks_8_options','field_6177e2991ac44'),(223772,41036,'blocks_8_content_title',''),(223773,41036,'_blocks_8_content_title','field_64d237e8bb1e2'),(223774,41036,'blocks_8_content_heading','Frequently asked questions '),(223775,41036,'_blocks_8_content_heading','field_64d237e8bb1e3'),(223776,41036,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(223777,41036,'_blocks_8_content_text','field_64d237e8bb1e4'),(223778,41036,'blocks_8_content_actions',''),(223779,41036,'_blocks_8_content_actions','field_64d237e8bb1e5'),(223780,41036,'blocks_8_content_align','left'),(223781,41036,'_blocks_8_content_align','field_64d2443e6b6aa'),(223782,41036,'blocks_8_content',''),(223783,41036,'_blocks_8_content','field_64d237e8bb1e1'),(223784,41036,'blocks_8_accordion_content','faqs'),(223785,41036,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(223786,41036,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(223787,41036,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(223788,41036,'blocks_8_actions',''),(223789,41036,'_blocks_8_actions','field_61a746a817f7a'),(223790,41036,'blocks_9_acfe_flexible_toggle',''),(223791,41036,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(223792,41036,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(223793,41036,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(223794,41036,'blocks_9_testimonial_slider_content_title',''),(223795,41036,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(223796,41036,'blocks_9_testimonial_slider_content_heading','Testimonials'),(223797,41036,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(223798,41036,'blocks_9_testimonial_slider_content_text',''),(223799,41036,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(223800,41036,'blocks_9_testimonial_slider_content_actions',''),(223801,41036,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(223802,41036,'blocks_9_testimonial_slider_content',''),(223803,41036,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(223804,41036,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(223805,41036,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(223806,41036,'blocks_9_testimonial_slider_ambassador_bool','0'),(223807,41036,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(223808,41037,'hide_hero','0'),(223809,41037,'_hide_hero','field_66a2380fcda39'),(223810,41037,'hero_title','Biomechanics and S&C coaches'),(223811,41037,'_hero_title','field_617571fe285e8'),(223812,41037,'hero_text','Gain a deeper understanding of anatomy and client movement and level up your Strength and Conditioning practice through intrinsic biomechanics.'),(223813,41037,'_hero_text','field_6175723c285e9'),(223814,41037,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39254-3\";s:6:\"target\";s:0:\"\";}'),(223815,41037,'_hero_actions_0_button','field_61757281285eb'),(223816,41037,'hero_actions','1'),(223817,41037,'_hero_actions','field_61757270285ea'),(223818,41037,'hero_style','default'),(223819,41037,'_hero_style','field_62051d9dc5324'),(223820,41037,'_thumbnail_id','39256'),(223821,41037,'__thumbnail_id','field_617570855ddaf'),(223822,41037,'hero_image_pos_x','right'),(223823,41037,'_hero_image_pos_x','field_62ec3d05390bb'),(223824,41037,'hero_image_pos_y','top'),(223825,41037,'_hero_image_pos_y','field_62ec3d05390bc'),(223826,41037,'hero_image_pos',''),(223827,41037,'_hero_image_pos','field_62ec3d05390ba'),(223828,41037,'fft_hide_from_listings','0'),(223829,41037,'_fft_hide_from_listings','field_61f1320446ab2'),(223830,41037,'fft_page_format','default'),(223831,41037,'_fft_page_format','field_61ae213f1f218'),(223832,41037,'fft_hide_nav','0'),(223833,41037,'_fft_hide_nav','field_635bd5e43527c'),(223834,41037,'fft_hide_header_call_to_action','0'),(223835,41037,'_fft_hide_header_call_to_action','field_635bd6723527d'),(223836,41037,'fft_page_sitemap','0'),(223837,41037,'_fft_page_sitemap','field_61af9b34e8181'),(223838,41037,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(223839,41037,'_blocks','field_6176696113096'),(223840,41037,'blocks_0_acfe_flexible_toggle',''),(223841,41037,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(223842,41037,'blocks_0_acfe_flexible_layout_title','Template'),(223843,41037,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(223844,41037,'blocks_0_template','39087'),(223845,41037,'_blocks_0_template','field_617bdd570fe01'),(223846,41037,'blocks_9_acfe_flexible_toggle',''),(223847,41037,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(223848,41037,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(223849,41037,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(223850,41037,'blocks_9_testimonial_slider_content_title',''),(223851,41037,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(223852,41037,'blocks_9_testimonial_slider_content_heading','Testimonials'),(223853,41037,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(223854,41037,'blocks_9_testimonial_slider_content_text',''),(223855,41037,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(223856,41037,'blocks_9_testimonial_slider_content_actions',''),(223857,41037,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(223858,41037,'blocks_9_testimonial_slider_content',''),(223859,41037,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(223860,41037,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(223861,41037,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(223862,41037,'blocks_9_testimonial_slider_ambassador_bool','0'),(223863,41037,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(223864,41037,'blocks_10_acfe_flexible_toggle',''),(223865,41037,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(223866,41037,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(223867,41037,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(223868,41037,'blocks_10_options_theme','#ffffff'),(223869,41037,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(223870,41037,'blocks_10_options_state','0'),(223871,41037,'_blocks_10_options_state','field_6239fcb7508c5'),(223872,41037,'blocks_10_options',''),(223873,41037,'_blocks_10_options','field_6177e2991ac44'),(223874,41037,'blocks_10_content_title',''),(223875,41037,'_blocks_10_content_title','field_64d237e8bb1e2'),(223876,41037,'blocks_10_content_heading','Frequently asked questions '),(223877,41037,'_blocks_10_content_heading','field_64d237e8bb1e3'),(223878,41037,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(223879,41037,'_blocks_10_content_text','field_64d237e8bb1e4'),(223880,41037,'blocks_10_content_actions',''),(223881,41037,'_blocks_10_content_actions','field_64d237e8bb1e5'),(223882,41037,'blocks_10_content_align','left'),(223883,41037,'_blocks_10_content_align','field_64d2443e6b6aa'),(223884,41037,'blocks_10_content',''),(223885,41037,'_blocks_10_content','field_64d237e8bb1e1'),(223886,41037,'blocks_10_accordion_content','faqs'),(223887,41037,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(223888,41037,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(223889,41037,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(223890,41037,'blocks_10_actions',''),(223891,41037,'_blocks_10_actions','field_61a746a817f7a'),(223892,41037,'blocks_1_acfe_flexible_toggle',''),(223893,41037,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(223894,41037,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(223895,41037,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(223896,41037,'blocks_1_options_theme','#ffffff'),(223897,41037,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(223898,41037,'blocks_1_options_reverse','0'),(223899,41037,'_blocks_1_options_reverse','field_61768049bb8ac'),(223900,41037,'blocks_1_options',''),(223901,41037,'_blocks_1_options','field_617682517c334'),(223902,41037,'blocks_1_split_5050_image','39257'),(223903,41037,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(223904,41037,'blocks_1_split_5050_video',''),(223905,41037,'_blocks_1_split_5050_video','field_6239f3160848a'),(223906,41037,'blocks_1_split_5050_content_title',''),(223907,41037,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(223908,41037,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(223909,41037,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(223910,41037,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(223911,41037,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(223912,41037,'blocks_1_split_5050_content_actions',''),(223913,41037,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(223914,41037,'blocks_1_split_5050_content',''),(223915,41037,'_blocks_1_split_5050_content','field_61767afceb8ba'),(223916,41037,'blocks_4_acfe_flexible_toggle',''),(223917,41037,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(223918,41037,'blocks_4_acfe_flexible_layout_title','Tabs'),(223919,41037,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(223920,41037,'blocks_4_options_theme','#ffffff'),(223921,41037,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(223922,41037,'blocks_4_options',''),(223923,41037,'_blocks_4_options','field_6177cfcd8140f'),(223924,41037,'blocks_4_tabs_0_tab_label','What will I learn ?'),(223925,41037,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(223926,41037,'blocks_4_tabs_0_tab_content_title',''),(223927,41037,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(223928,41037,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(223929,41037,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(223930,41037,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(223931,41037,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(223932,41037,'blocks_4_tabs_0_tab_content_actions',''),(223933,41037,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(223934,41037,'blocks_4_tabs_0_tab_content',''),(223935,41037,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(223936,41037,'blocks_4_tabs_0_tab_image','39076'),(223937,41037,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(223938,41037,'blocks_4_tabs_1_tab_label','What do I need ?'),(223939,41037,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(223940,41037,'blocks_4_tabs_1_tab_content_title',''),(223941,41037,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(223942,41037,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(223943,41037,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(223944,41037,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(223945,41037,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(223946,41037,'blocks_4_tabs_1_tab_content_actions',''),(223947,41037,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(223948,41037,'blocks_4_tabs_1_tab_content',''),(223949,41037,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(223950,41037,'blocks_4_tabs_1_tab_image','39223'),(223951,41037,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(223952,41037,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(223953,41037,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(223954,41037,'blocks_4_tabs_2_tab_content_title',''),(223955,41037,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(223956,41037,'blocks_4_tabs_2_tab_content_heading','Locations'),(223957,41037,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(223958,41037,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(223959,41037,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(223960,41037,'blocks_4_tabs_2_tab_content_actions',''),(223961,41037,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(223962,41037,'blocks_4_tabs_2_tab_content',''),(223963,41037,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(223964,41037,'blocks_4_tabs_2_tab_image','39224'),(223965,41037,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(223966,41037,'blocks_4_tabs','3'),(223967,41037,'_blocks_4_tabs','field_6177cff281419'),(223968,41037,'blocks_5_acfe_flexible_toggle',''),(223969,41037,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(223970,41037,'blocks_5_acfe_flexible_layout_title','Text Block'),(223971,41037,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(223972,41037,'blocks_5_options_theme','#b61234'),(223973,41037,'_blocks_5_options_theme','field_6176830e2ad17'),(223974,41037,'blocks_5_options',''),(223975,41037,'_blocks_5_options','field_6176830e2ad16'),(223976,41037,'blocks_5_text_block_heading','Fees & Funding Options'),(223977,41037,'_blocks_5_text_block_heading','field_617669d413097'),(223978,41037,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(223979,41037,'_blocks_5_text_block_content','field_617669ec13098'),(223980,41037,'blocks_6_acfe_flexible_toggle',''),(223981,41037,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(223982,41037,'blocks_6_acfe_flexible_layout_title','Icons'),(223983,41037,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(223984,41037,'blocks_6_options_theme','#b61234'),(223985,41037,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(223986,41037,'blocks_6_options_format','row'),(223987,41037,'_blocks_6_options_format','field_64bfde9a90690'),(223988,41037,'blocks_6_options',''),(223989,41037,'_blocks_6_options','field_64bfdd9b90684'),(223990,41037,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(223991,41037,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(223992,41037,'blocks_6_icon_row_items_0_label','Pay in Full'),(223993,41037,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(223994,41037,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(223995,41037,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(223996,41037,'blocks_6_icon_row_items_1_icon','finance.svg'),(223997,41037,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(223998,41037,'blocks_6_icon_row_items_1_label','0% finance'),(223999,41037,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(224000,41037,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(224001,41037,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(224002,41037,'blocks_6_icon_row_items_2_icon','deposit.svg'),(224003,41037,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(224004,41037,'blocks_6_icon_row_items_2_label','Deposit & balance'),(224005,41037,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(224006,41037,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(224007,41037,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(224008,41037,'blocks_6_icon_row_items','3'),(224009,41037,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(224010,41037,'blocks_7_acfe_flexible_toggle',''),(224011,41037,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(224012,41037,'blocks_7_acfe_flexible_layout_title','Steps'),(224013,41037,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(224014,41037,'blocks_7_row_content_title',''),(224015,41037,'_blocks_7_row_content_title','field_64888cd1e26e0'),(224016,41037,'blocks_7_row_content_heading','Benefits of training with us'),(224017,41037,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(224018,41037,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(224019,41037,'_blocks_7_row_content_text','field_64888ce2e26e2'),(224020,41037,'blocks_7_row_content_actions',''),(224021,41037,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(224022,41037,'blocks_7_row_content',''),(224023,41037,'_blocks_7_row_content','field_64888cb0e26df'),(224024,41037,'blocks_7_steps_0_icon','progression.svg'),(224025,41037,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(224026,41037,'blocks_7_steps_0_title','Attract new clients'),(224027,41037,'_blocks_7_steps_0_title','field_64888d94e26e7'),(224028,41037,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(224029,41037,'_blocks_7_steps_0_text','field_64888d99e26e8'),(224030,41037,'blocks_7_steps_1_icon','support.svg'),(224031,41037,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(224032,41037,'blocks_7_steps_1_title','Lifetime Learning Promise'),(224033,41037,'_blocks_7_steps_1_title','field_64888d94e26e7'),(224034,41037,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(224035,41037,'_blocks_7_steps_1_text','field_64888d99e26e8'),(224036,41037,'blocks_7_steps_2_icon','qualification.svg'),(224037,41037,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(224038,41037,'blocks_7_steps_2_title','Evidence based hands on learning'),(224039,41037,'_blocks_7_steps_2_title','field_64888d94e26e7'),(224040,41037,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You will learn how to test and screen, and learn methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(224041,41037,'_blocks_7_steps_2_text','field_64888d99e26e8'),(224042,41037,'blocks_7_steps_3_icon','leaders.svg'),(224043,41037,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(224044,41037,'blocks_7_steps_3_title','Stand out from the crowd'),(224045,41037,'_blocks_7_steps_3_title','field_64888d94e26e7'),(224046,41037,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(224047,41037,'_blocks_7_steps_3_text','field_64888d99e26e8'),(224048,41037,'blocks_7_steps','4'),(224049,41037,'_blocks_7_steps','field_64888d44e26e5'),(224050,41037,'blocks_2_acfe_flexible_toggle',''),(224051,41037,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(224052,41037,'blocks_2_acfe_flexible_layout_title','Form'),(224053,41037,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(224054,41037,'blocks_2_row_content_format','standard'),(224055,41037,'_blocks_2_row_content_format','field_6481ead962881'),(224056,41037,'blocks_2_row_content_title',''),(224057,41037,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(224058,41037,'blocks_2_row_content_heading','Enquire Today'),(224059,41037,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(224060,41037,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(224061,41037,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(224062,41037,'blocks_2_row_content_actions',''),(224063,41037,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(224064,41037,'blocks_2_row_content',''),(224065,41037,'_blocks_2_row_content','field_61a0f5f5b3db0'),(224066,41037,'blocks_2_row_form','40394'),(224067,41037,'_blocks_2_row_form','field_61a4ff2c0b08e'),(224068,41037,'blocks_2_row_form_button_label',''),(224069,41037,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(224070,41037,'blocks_3_acfe_flexible_toggle',''),(224071,41037,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(224072,41037,'blocks_3_acfe_flexible_layout_title','Video'),(224073,41037,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(224074,41037,'blocks_3_size','large'),(224075,41037,'_blocks_3_size','field_6487038f297c1'),(224076,41037,'blocks_3_row_content_title',''),(224077,41037,'_blocks_3_row_content_title','field_64870132a865d'),(224078,41037,'blocks_3_row_content_heading',''),(224079,41037,'_blocks_3_row_content_heading','field_64870142a865e'),(224080,41037,'blocks_3_row_content_text',''),(224081,41037,'_blocks_3_row_content_text','field_64870148a865f'),(224082,41037,'blocks_3_row_content',''),(224083,41037,'_blocks_3_row_content','field_6487008ba865c'),(224084,41037,'blocks_3_video_src',''),(224085,41037,'_blocks_3_video_src','field_6193c4a98ec07'),(224086,41037,'blocks_3_video_thumbnail',''),(224087,41037,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(224088,41037,'blocks_8_acfe_flexible_toggle',''),(224089,41037,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(224090,41037,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(224091,41037,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(224092,41037,'blocks_8_options_theme','#f5f5f5'),(224093,41037,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(224094,41037,'blocks_8_options_reverse','0'),(224095,41037,'_blocks_8_options_reverse','field_61768049bb8ac'),(224096,41037,'blocks_8_options',''),(224097,41037,'_blocks_8_options','field_617682517c334'),(224098,41037,'blocks_8_split_5050_image','40920'),(224099,41037,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(224100,41037,'blocks_8_split_5050_video',''),(224101,41037,'_blocks_8_split_5050_video','field_6239f3160848a'),(224102,41037,'blocks_8_split_5050_content_title',''),(224103,41037,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(224104,41037,'blocks_8_split_5050_content_heading','Why study this course ?'),(224105,41037,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(224106,41037,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(224107,41037,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(224108,41037,'blocks_8_split_5050_content_actions',''),(224109,41037,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(224110,41037,'blocks_8_split_5050_content',''),(224111,41037,'_blocks_8_split_5050_content','field_61767afceb8ba'),(224112,41038,'hide_hero','0'),(224113,41038,'_hide_hero','field_66a2380fcda39'),(224114,41038,'hero_title','How to Become a Biomechanics Coach'),(224115,41038,'_hero_title','field_617571fe285e8'),(224116,41038,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(224117,41038,'_hero_text','field_6175723c285e9'),(224118,41038,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39263-3\";s:6:\"target\";s:0:\"\";}'),(224119,41038,'_hero_actions_0_button','field_61757281285eb'),(224120,41038,'hero_actions','1'),(224121,41038,'_hero_actions','field_61757270285ea'),(224122,41038,'hero_style','default'),(224123,41038,'_hero_style','field_62051d9dc5324'),(224124,41038,'_thumbnail_id','39454'),(224125,41038,'__thumbnail_id','field_617570855ddaf'),(224126,41038,'hero_image_pos_x','right'),(224127,41038,'_hero_image_pos_x','field_62ec3d05390bb'),(224128,41038,'hero_image_pos_y','top'),(224129,41038,'_hero_image_pos_y','field_62ec3d05390bc'),(224130,41038,'hero_image_pos',''),(224131,41038,'_hero_image_pos','field_62ec3d05390ba'),(224132,41038,'fft_hide_from_listings','0'),(224133,41038,'_fft_hide_from_listings','field_61f1320446ab2'),(224134,41038,'fft_page_format','default'),(224135,41038,'_fft_page_format','field_61ae213f1f218'),(224136,41038,'fft_hide_nav','0'),(224137,41038,'_fft_hide_nav','field_635bd5e43527c'),(224138,41038,'fft_hide_header_call_to_action','0'),(224139,41038,'_fft_hide_header_call_to_action','field_635bd6723527d'),(224140,41038,'fft_page_sitemap','0'),(224141,41038,'_fft_page_sitemap','field_61af9b34e8181'),(224142,41038,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(224143,41038,'_blocks','field_6176696113096'),(224144,41038,'blocks_0_acfe_flexible_toggle',''),(224145,41038,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(224146,41038,'blocks_0_acfe_flexible_layout_title','Template'),(224147,41038,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(224148,41038,'blocks_0_template','39087'),(224149,41038,'_blocks_0_template','field_617bdd570fe01'),(224150,41038,'blocks_8_acfe_flexible_toggle','1'),(224151,41038,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(224152,41038,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(224153,41038,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(224154,41038,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(224155,41038,'_blocks_8_content','field_6193c9b5eac84'),(224156,41038,'blocks_1_acfe_flexible_toggle',''),(224157,41038,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(224158,41038,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(224159,41038,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(224160,41038,'blocks_1_options_theme','#ffffff'),(224161,41038,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(224162,41038,'blocks_1_options_reverse','0'),(224163,41038,'_blocks_1_options_reverse','field_61768049bb8ac'),(224164,41038,'blocks_1_options',''),(224165,41038,'_blocks_1_options','field_617682517c334'),(224166,41038,'blocks_1_split_5050_image','39623'),(224167,41038,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(224168,41038,'blocks_1_split_5050_video',''),(224169,41038,'_blocks_1_split_5050_video','field_6239f3160848a'),(224170,41038,'blocks_1_split_5050_content_title',''),(224171,41038,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(224172,41038,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(224173,41038,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(224174,41038,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of numerous injuries within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(224175,41038,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(224176,41038,'blocks_1_split_5050_content_actions',''),(224177,41038,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(224178,41038,'blocks_1_split_5050_content',''),(224179,41038,'_blocks_1_split_5050_content','field_61767afceb8ba'),(224180,41038,'blocks_4_acfe_flexible_toggle',''),(224181,41038,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(224182,41038,'blocks_4_acfe_flexible_layout_title','Tabs'),(224183,41038,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(224184,41038,'blocks_4_options_theme','#ffffff'),(224185,41038,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(224186,41038,'blocks_4_options',''),(224187,41038,'_blocks_4_options','field_6177cfcd8140f'),(224188,41038,'blocks_4_tabs_0_tab_label','What will I learn ?'),(224189,41038,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(224190,41038,'blocks_4_tabs_0_tab_content_title',''),(224191,41038,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(224192,41038,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(224193,41038,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(224194,41038,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(224195,41038,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(224196,41038,'blocks_4_tabs_0_tab_content_actions',''),(224197,41038,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(224198,41038,'blocks_4_tabs_0_tab_content',''),(224199,41038,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(224200,41038,'blocks_4_tabs_0_tab_image','39076'),(224201,41038,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(224202,41038,'blocks_4_tabs_1_tab_label','What do I need ?'),(224203,41038,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(224204,41038,'blocks_4_tabs_1_tab_content_title',''),(224205,41038,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(224206,41038,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(224207,41038,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(224208,41038,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(224209,41038,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(224210,41038,'blocks_4_tabs_1_tab_content_actions',''),(224211,41038,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(224212,41038,'blocks_4_tabs_1_tab_content',''),(224213,41038,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(224214,41038,'blocks_4_tabs_1_tab_image','39223'),(224215,41038,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(224216,41038,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(224217,41038,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(224218,41038,'blocks_4_tabs_2_tab_content_title',''),(224219,41038,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(224220,41038,'blocks_4_tabs_2_tab_content_heading','Locations'),(224221,41038,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(224222,41038,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(224223,41038,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(224224,41038,'blocks_4_tabs_2_tab_content_actions',''),(224225,41038,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(224226,41038,'blocks_4_tabs_2_tab_content',''),(224227,41038,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(224228,41038,'blocks_4_tabs_2_tab_image','39224'),(224229,41038,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(224230,41038,'blocks_4_tabs','3'),(224231,41038,'_blocks_4_tabs','field_6177cff281419'),(224232,41038,'blocks_5_acfe_flexible_toggle',''),(224233,41038,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(224234,41038,'blocks_5_acfe_flexible_layout_title','Text Block'),(224235,41038,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(224236,41038,'blocks_5_options_theme','#b61234'),(224237,41038,'_blocks_5_options_theme','field_6176830e2ad17'),(224238,41038,'blocks_5_options',''),(224239,41038,'_blocks_5_options','field_6176830e2ad16'),(224240,41038,'blocks_5_text_block_heading','Fees & Funding Options'),(224241,41038,'_blocks_5_text_block_heading','field_617669d413097'),(224242,41038,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(224243,41038,'_blocks_5_text_block_content','field_617669ec13098'),(224244,41038,'blocks_6_acfe_flexible_toggle',''),(224245,41038,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(224246,41038,'blocks_6_acfe_flexible_layout_title','Icons'),(224247,41038,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(224248,41038,'blocks_6_options_theme','#b61234'),(224249,41038,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(224250,41038,'blocks_6_options_format','row'),(224251,41038,'_blocks_6_options_format','field_64bfde9a90690'),(224252,41038,'blocks_6_options',''),(224253,41038,'_blocks_6_options','field_64bfdd9b90684'),(224254,41038,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(224255,41038,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(224256,41038,'blocks_6_icon_row_items_0_label','Pay in Full'),(224257,41038,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(224258,41038,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(224259,41038,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(224260,41038,'blocks_6_icon_row_items_1_icon','finance.svg'),(224261,41038,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(224262,41038,'blocks_6_icon_row_items_1_label','0% finance'),(224263,41038,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(224264,41038,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(224265,41038,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(224266,41038,'blocks_6_icon_row_items_2_icon','deposit.svg'),(224267,41038,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(224268,41038,'blocks_6_icon_row_items_2_label','Deposit & balance'),(224269,41038,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(224270,41038,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(224271,41038,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(224272,41038,'blocks_6_icon_row_items','3'),(224273,41038,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(224274,41038,'blocks_7_acfe_flexible_toggle',''),(224275,41038,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(224276,41038,'blocks_7_acfe_flexible_layout_title','Steps'),(224277,41038,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(224278,41038,'blocks_7_row_content_title',''),(224279,41038,'_blocks_7_row_content_title','field_64888cd1e26e0'),(224280,41038,'blocks_7_row_content_heading','Benefits of training with us'),(224281,41038,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(224282,41038,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(224283,41038,'_blocks_7_row_content_text','field_64888ce2e26e2'),(224284,41038,'blocks_7_row_content_actions',''),(224285,41038,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(224286,41038,'blocks_7_row_content',''),(224287,41038,'_blocks_7_row_content','field_64888cb0e26df'),(224288,41038,'blocks_7_steps_0_icon','progression.svg'),(224289,41038,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(224290,41038,'blocks_7_steps_0_title','Earning potential'),(224291,41038,'_blocks_7_steps_0_title','field_64888d94e26e7'),(224292,41038,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(224293,41038,'_blocks_7_steps_0_text','field_64888d99e26e8'),(224294,41038,'blocks_7_steps_1_icon','support.svg'),(224295,41038,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(224296,41038,'blocks_7_steps_1_title','Lifetime Learning Promise'),(224297,41038,'_blocks_7_steps_1_title','field_64888d94e26e7'),(224298,41038,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(224299,41038,'_blocks_7_steps_1_text','field_64888d99e26e8'),(224300,41038,'blocks_7_steps_2_icon','qualification.svg'),(224301,41038,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(224302,41038,'blocks_7_steps_2_title','Evidence based hands on learning'),(224303,41038,'_blocks_7_steps_2_title','field_64888d94e26e7'),(224304,41038,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(224305,41038,'_blocks_7_steps_2_text','field_64888d99e26e8'),(224306,41038,'blocks_7_steps_3_icon','leaders.svg'),(224307,41038,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(224308,41038,'blocks_7_steps_3_title','Stand out from the crowd'),(224309,41038,'_blocks_7_steps_3_title','field_64888d94e26e7'),(224310,41038,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(224311,41038,'_blocks_7_steps_3_text','field_64888d99e26e8'),(224312,41038,'blocks_7_steps','4'),(224313,41038,'_blocks_7_steps','field_64888d44e26e5'),(224314,41038,'blocks_2_acfe_flexible_toggle',''),(224315,41038,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(224316,41038,'blocks_2_acfe_flexible_layout_title','Form'),(224317,41038,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(224318,41038,'blocks_2_row_content_format','standard'),(224319,41038,'_blocks_2_row_content_format','field_6481ead962881'),(224320,41038,'blocks_2_row_content_title','Ready to get started?'),(224321,41038,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(224322,41038,'blocks_2_row_content_heading','Enquire Today!'),(224323,41038,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(224324,41038,'blocks_2_row_content_text','When you fill out the form you\'ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(224325,41038,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(224326,41038,'blocks_2_row_content_actions',''),(224327,41038,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(224328,41038,'blocks_2_row_content',''),(224329,41038,'_blocks_2_row_content','field_61a0f5f5b3db0'),(224330,41038,'blocks_2_row_form','40417'),(224331,41038,'_blocks_2_row_form','field_61a4ff2c0b08e'),(224332,41038,'blocks_2_row_form_button_label',''),(224333,41038,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(224334,41038,'blocks_3_acfe_flexible_toggle',''),(224335,41038,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(224336,41038,'blocks_3_acfe_flexible_layout_title','Video'),(224337,41038,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(224338,41038,'blocks_3_size','large'),(224339,41038,'_blocks_3_size','field_6487038f297c1'),(224340,41038,'blocks_3_row_content_title',''),(224341,41038,'_blocks_3_row_content_title','field_64870132a865d'),(224342,41038,'blocks_3_row_content_heading',''),(224343,41038,'_blocks_3_row_content_heading','field_64870142a865e'),(224344,41038,'blocks_3_row_content_text',''),(224345,41038,'_blocks_3_row_content_text','field_64870148a865f'),(224346,41038,'blocks_3_row_content',''),(224347,41038,'_blocks_3_row_content','field_6487008ba865c'),(224348,41038,'blocks_3_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(224349,41038,'_blocks_3_video_src','field_6193c4a98ec07'),(224350,41038,'blocks_3_video_thumbnail',''),(224351,41038,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(224352,41038,'blocks_9_acfe_flexible_toggle',''),(224353,41038,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(224354,41038,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(224355,41038,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(224356,41038,'blocks_9_options_theme','#f5f5f5'),(224357,41038,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(224358,41038,'blocks_9_options_reverse','0'),(224359,41038,'_blocks_9_options_reverse','field_61768049bb8ac'),(224360,41038,'blocks_9_options',''),(224361,41038,'_blocks_9_options','field_617682517c334'),(224362,41038,'blocks_9_split_5050_image','40920'),(224363,41038,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(224364,41038,'blocks_9_split_5050_video',''),(224365,41038,'_blocks_9_split_5050_video','field_6239f3160848a'),(224366,41038,'blocks_9_split_5050_content_title',''),(224367,41038,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(224368,41038,'blocks_9_split_5050_content_heading','Why study this course ?'),(224369,41038,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(224370,41038,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(224371,41038,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(224372,41038,'blocks_9_split_5050_content_actions',''),(224373,41038,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(224374,41038,'blocks_9_split_5050_content',''),(224375,41038,'_blocks_9_split_5050_content','field_61767afceb8ba'),(224376,41038,'blocks_10_acfe_flexible_toggle',''),(224377,41038,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(224378,41038,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(224379,41038,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(224380,41038,'blocks_10_testimonial_slider_content_title',''),(224381,41038,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(224382,41038,'blocks_10_testimonial_slider_content_heading','Testimonials'),(224383,41038,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(224384,41038,'blocks_10_testimonial_slider_content_text',''),(224385,41038,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(224386,41038,'blocks_10_testimonial_slider_content_actions',''),(224387,41038,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(224388,41038,'blocks_10_testimonial_slider_content',''),(224389,41038,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(224390,41038,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(224391,41038,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(224392,41038,'blocks_10_testimonial_slider_ambassador_bool','0'),(224393,41038,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(224394,41038,'blocks_11_acfe_flexible_toggle',''),(224395,41038,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(224396,41038,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(224397,41038,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(224398,41038,'blocks_11_options_theme','#ffffff'),(224399,41038,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(224400,41038,'blocks_11_options_state','0'),(224401,41038,'_blocks_11_options_state','field_6239fcb7508c5'),(224402,41038,'blocks_11_options',''),(224403,41038,'_blocks_11_options','field_6177e2991ac44'),(224404,41038,'blocks_11_content_title',''),(224405,41038,'_blocks_11_content_title','field_64d237e8bb1e2'),(224406,41038,'blocks_11_content_heading','Frequently asked questions '),(224407,41038,'_blocks_11_content_heading','field_64d237e8bb1e3'),(224408,41038,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(224409,41038,'_blocks_11_content_text','field_64d237e8bb1e4'),(224410,41038,'blocks_11_content_actions',''),(224411,41038,'_blocks_11_content_actions','field_64d237e8bb1e5'),(224412,41038,'blocks_11_content_align','left'),(224413,41038,'_blocks_11_content_align','field_64d2443e6b6aa'),(224414,41038,'blocks_11_content',''),(224415,41038,'_blocks_11_content','field_64d237e8bb1e1'),(224416,41038,'blocks_11_accordion_content','faqs'),(224417,41038,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(224418,41038,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(224419,41038,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(224420,41038,'blocks_11_actions',''),(224421,41038,'_blocks_11_actions','field_61a746a817f7a'),(224422,40321,'_oembed_efa6fb3ed1a1fc4f7284232cb99048be','<iframe title=\"Welcome to Biomechanics Education\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/xgRiAj1qEog?start=1&feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(224423,40321,'_oembed_time_efa6fb3ed1a1fc4f7284232cb99048be','1727285540'),(224424,40273,'course_key_info_2_text','CPD'),(224425,40273,'_course_key_info_2_text','field_617ac6c38e5e3'),(224426,41042,'hide_hero','0'),(224427,41042,'_hide_hero','field_66a2380fcda39'),(224428,41042,'hero_title','Deadlift Analysis Made Simple Recorded Online Learning'),(224429,41042,'_hero_title','field_617571fe285e8'),(224430,41042,'hero_text',''),(224431,41042,'_hero_text','field_6175723c285e9'),(224432,41042,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(224433,41042,'_hero_actions_0_button','field_61757281285eb'),(224434,41042,'hero_actions','1'),(224435,41042,'_hero_actions','field_61757270285ea'),(224436,41042,'hero_style','default'),(224437,41042,'_hero_style','field_62051d9dc5324'),(224438,41042,'_thumbnail_id','40675'),(224439,41042,'__thumbnail_id','field_617570855ddaf'),(224440,41042,'hero_image_pos_x','right'),(224441,41042,'_hero_image_pos_x','field_62ec3d05390bb'),(224442,41042,'hero_image_pos_y','top'),(224443,41042,'_hero_image_pos_y','field_62ec3d05390bc'),(224444,41042,'hero_image_pos',''),(224445,41042,'_hero_image_pos','field_62ec3d05390ba'),(224446,41042,'fft_hide_from_listings','0'),(224447,41042,'_fft_hide_from_listings','field_61f1320446ab2'),(224448,41042,'fft_page_format','default'),(224449,41042,'_fft_page_format','field_61ae213f1f218'),(224450,41042,'fft_hide_nav','0'),(224451,41042,'_fft_hide_nav','field_635bd5e43527c'),(224452,41042,'fft_hide_header_call_to_action','0'),(224453,41042,'_fft_hide_header_call_to_action','field_635bd6723527d'),(224454,41042,'fft_page_sitemap','0'),(224455,41042,'_fft_page_sitemap','field_61af9b34e8181'),(224456,41042,'blocks_0_acfe_flexible_toggle',''),(224457,41042,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(224458,41042,'blocks_0_acfe_flexible_layout_title','Template'),(224459,41042,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(224460,41042,'blocks_0_template','39087'),(224461,41042,'_blocks_0_template','field_617bdd570fe01'),(224462,41042,'blocks_1_acfe_flexible_toggle',''),(224463,41042,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(224464,41042,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(224465,41042,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(224466,41042,'blocks_1_options_theme','#ffffff'),(224467,41042,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(224468,41042,'blocks_1_options_reverse','0'),(224469,41042,'_blocks_1_options_reverse','field_61768049bb8ac'),(224470,41042,'blocks_1_options',''),(224471,41042,'_blocks_1_options','field_617682517c334'),(224472,41042,'blocks_1_split_5050_image','40676'),(224473,41042,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(224474,41042,'blocks_1_split_5050_video',''),(224475,41042,'_blocks_1_split_5050_video','field_6239f3160848a'),(224476,41042,'blocks_1_split_5050_content_title',''),(224477,41042,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(224478,41042,'blocks_1_split_5050_content_heading','Course Overview'),(224479,41042,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(224480,41042,'blocks_1_split_5050_content_text','This webinar will elevate your form and help guide your clients on yet fitness journey. designed for personal trainers and therapists, discover straightforward, equipment-free movement analysis methods that will enhance your understanding of the deadlift and its crucial role in any fitness program.'),(224481,41042,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(224482,41042,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(224483,41042,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(224484,41042,'blocks_1_split_5050_content_actions','1'),(224485,41042,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(224486,41042,'blocks_1_split_5050_content',''),(224487,41042,'_blocks_1_split_5050_content','field_61767afceb8ba'),(224488,41042,'blocks_2_acfe_flexible_toggle',''),(224489,41042,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(224490,41042,'blocks_2_acfe_flexible_layout_title','Timeline'),(224491,41042,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(224492,41042,'blocks_2_options_theme','#ffffff'),(224493,41042,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(224494,41042,'blocks_2_options',''),(224495,41042,'_blocks_2_options','field_6177de53d1195'),(224496,41042,'blocks_2_timeline_content_title',''),(224497,41042,'_blocks_2_timeline_content_title','field_6177de53d1198'),(224498,41042,'blocks_2_timeline_content_heading','What is included?'),(224499,41042,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(224500,41042,'blocks_2_timeline_content_text','Join us for this enlightening webinar where simplicity meets effectiveness in deadlift analysis. Elevate your training and therapy game with practical insights that make a difference.'),(224501,41042,'_blocks_2_timeline_content_text','field_6177de53d119a'),(224502,41042,'blocks_2_timeline_content_actions',''),(224503,41042,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(224504,41042,'blocks_2_timeline_content',''),(224505,41042,'_blocks_2_timeline_content','field_6177de53d1197'),(224506,41042,'blocks_2_timeline_items_0_title','Why Analyse the Deadlift? '),(224507,41042,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(224508,41042,'blocks_2_timeline_items_0_text','Uncover the importance of dissecting the deadlift and how it contributes to overall fitness programs. '),(224509,41042,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(224510,41042,'blocks_2_timeline_items_1_title','The Deadlift\'s Offerings: A Deep Dive '),(224511,41042,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(224512,41042,'blocks_2_timeline_items_1_text','Explore the myriad benefits the deadlift brings to the table for individuals seeking a well-rounded fitness routine. '),(224513,41042,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(224514,41042,'blocks_2_timeline_items_2_title','Decoding the Movement '),(224515,41042,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(224516,41042,'blocks_2_timeline_items_2_text','Get to the core of the deadlift by understanding its mechanics and nuances. '),(224517,41042,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(224518,41042,'blocks_2_timeline_items_3_title','Exploring Deadlift Styles '),(224519,41042,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(224520,41042,'blocks_2_timeline_items_3_text','Discuss the various deadlift styles and their unique advantages, providing a comprehensive view for trainers and therapists. '),(224521,41042,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(224522,41042,'blocks_2_timeline_items_4_title','Interactive Session: Analysing the Movement – So What?'),(224523,41042,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(224524,41042,'blocks_2_timeline_items_4_text','Engage in a dynamic Q&A session to delve deeper into the practical aspects of deadlift analysis. '),(224525,41042,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(224526,41042,'blocks_2_timeline_items_5_title','Choosing the Right Style for Reduced Risk & Peak Performance '),(224527,41042,'_blocks_2_timeline_items_5_title','field_6177de53d119f'),(224528,41042,'blocks_2_timeline_items_5_text','Learn how to tailor deadlift styles to individual needs, ensuring optimal performance and minimizing the risk of injury. '),(224529,41042,'_blocks_2_timeline_items_5_text','field_6177de53d11a0'),(224530,41042,'blocks_2_timeline_items_6_title','Crucial Insights: Understanding Tissue Tolerance and Load Management '),(224531,41042,'_blocks_2_timeline_items_6_title','field_6177de53d119f'),(224532,41042,'blocks_2_timeline_items_6_text','Gain invaluable knowledge on managing tissue tolerance and optimizing load for better long-term results. '),(224533,41042,'_blocks_2_timeline_items_6_text','field_6177de53d11a0'),(224534,41042,'blocks_2_timeline_items','7'),(224535,41042,'_blocks_2_timeline_items','field_6177de53d119d'),(224536,41042,'blocks','a:8:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:7:\"buttons\";i:4;s:8:\"template\";i:5;s:10:\"accordions\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";}'),(224537,41042,'_blocks','field_6176696113096'),(224538,41042,'course_label_text','Deadlift Analysis Made Simple'),(224539,41042,'_course_label_text','field_61e17babf71fa'),(224540,41042,'course_label',''),(224541,41042,'_course_label','field_61e12f92749a7'),(224542,41042,'course_description','This webinar will elevate your form and help guide your clients on yet fitness journey.'),(224543,41042,'_course_description','field_617ac5788e5e1'),(224544,41042,'course_key_info','3'),(224545,41042,'_course_key_info','field_617ac6ad8e5e2'),(224546,41042,'course_included','Why Analyse the Deadlift? \r\n\r\nThe Deadlift\'s Offerings: A Deep Dive \r\n\r\nDecoding the Movement \r\n\r\nExploring Deadlift Styles \r\n\r\nInteractive Session: Analysing the Movement – So What? \r\n\r\nChoosing the Right Style for Reduced Risk & Peak Performance \r\n\r\nCrucial Insights: Understanding Tissue Tolerance and Load Management '),(224547,41042,'_course_included','field_617ac6f08e5e4'),(224548,41042,'blocks_3_acfe_flexible_toggle',''),(224549,41042,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(224550,41042,'blocks_3_acfe_flexible_layout_title','Button(s)'),(224551,41042,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(224552,41042,'blocks_3_options_theme','#ffffff'),(224553,41042,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(224554,41042,'blocks_3_options',''),(224555,41042,'_blocks_3_options','field_623b03edb6e65'),(224556,41042,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(224557,41042,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(224558,41042,'blocks_3_actions','1'),(224559,41042,'_blocks_3_actions','field_623b03edb6e6e'),(224560,41042,'blocks_4_acfe_flexible_toggle',''),(224561,41042,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(224562,41042,'blocks_4_acfe_flexible_layout_title','Template'),(224563,41042,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(224564,41042,'blocks_4_template','39401'),(224565,41042,'_blocks_4_template','field_617bdd570fe01'),(224566,41042,'blocks_5_acfe_flexible_toggle',''),(224567,41042,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(224568,41042,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(224569,41042,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(224570,41042,'blocks_5_options_theme','#ffffff'),(224571,41042,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(224572,41042,'blocks_5_options_state','0'),(224573,41042,'_blocks_5_options_state','field_6239fcb7508c5'),(224574,41042,'blocks_5_options',''),(224575,41042,'_blocks_5_options','field_6177e2991ac44'),(224576,41042,'blocks_5_content_title',''),(224577,41042,'_blocks_5_content_title','field_64d237e8bb1e2'),(224578,41042,'blocks_5_content_heading','FAQ\'s'),(224579,41042,'_blocks_5_content_heading','field_64d237e8bb1e3'),(224580,41042,'blocks_5_content_text',''),(224581,41042,'_blocks_5_content_text','field_64d237e8bb1e4'),(224582,41042,'blocks_5_content_actions',''),(224583,41042,'_blocks_5_content_actions','field_64d237e8bb1e5'),(224584,41042,'blocks_5_content_align','left'),(224585,41042,'_blocks_5_content_align','field_64d2443e6b6aa'),(224586,41042,'blocks_5_content',''),(224587,41042,'_blocks_5_content','field_64d237e8bb1e1'),(224588,41042,'blocks_5_accordion_content','custom'),(224589,41042,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(224590,41042,'blocks_5_accordion_items',''),(224591,41042,'_blocks_5_accordion_items','field_6177e2991ac4c'),(224592,41042,'blocks_5_actions',''),(224593,41042,'_blocks_5_actions','field_61a746a817f7a'),(224594,41042,'blocks_6_acfe_flexible_toggle',''),(224595,41042,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(224596,41042,'blocks_6_acfe_flexible_layout_title','Text Block'),(224597,41042,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(224598,41042,'blocks_6_options_theme','#ffffff'),(224599,41042,'_blocks_6_options_theme','field_6176830e2ad17'),(224600,41042,'blocks_6_options',''),(224601,41042,'_blocks_6_options','field_6176830e2ad16'),(224602,41042,'blocks_6_text_block_heading','Other Courses'),(224603,41042,'_blocks_6_text_block_heading','field_617669d413097'),(224604,41042,'blocks_6_text_block_content','Discover our range of frequently purchased courses.'),(224605,41042,'_blocks_6_text_block_content','field_617669ec13098'),(224606,41042,'blocks_7_acfe_flexible_toggle',''),(224607,41042,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(224608,41042,'blocks_7_acfe_flexible_layout_title','Cards'),(224609,41042,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(224610,41042,'blocks_7_options_theme','#ffffff'),(224611,41042,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(224612,41042,'blocks_7_options_format','carousel'),(224613,41042,'_blocks_7_options_format','field_617a7b15245b5'),(224614,41042,'blocks_7_options_style','default'),(224615,41042,'_blocks_7_options_style','field_6278ffb63484a'),(224616,41042,'blocks_7_options_cards_current_listing','0'),(224617,41042,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(224618,41042,'blocks_7_options_cards_content','term'),(224619,41042,'_blocks_7_options_cards_content','field_617aba6122688'),(224620,41042,'blocks_7_options_cards_term','409'),(224621,41042,'_blocks_7_options_cards_term','field_6193f7c180895'),(224622,41042,'blocks_7_options_cards_posts_per_page',''),(224623,41042,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(224624,41042,'blocks_7_options',''),(224625,41042,'_blocks_7_options','field_617a7b15245b3'),(224626,41042,'course_label_label_theme','#0d1f73'),(224627,41042,'_course_label_label_theme','field_61e17bb8f71fb'),(224628,41042,'course_key_info_0_text','Online Learning'),(224629,41042,'_course_key_info_0_text','field_617ac6c38e5e3'),(224630,41042,'course_key_info_1_text','Webinar'),(224631,41042,'_course_key_info_1_text','field_617ac6c38e5e3'),(224632,41042,'course_key_info_2_text','CPD'),(224633,41042,'_course_key_info_2_text','field_617ac6c38e5e3'),(224634,41043,'hide_hero','0'),(224635,41043,'_hide_hero','field_66a2380fcda39'),(224636,41043,'hero_title','Foot Biomechanics Made Simple: Recorded Webinar'),(224637,41043,'_hero_title','field_617571fe285e8'),(224638,41043,'hero_text',''),(224639,41043,'_hero_text','field_6175723c285e9'),(224640,41043,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(224641,41043,'_hero_actions_0_button','field_61757281285eb'),(224642,41043,'hero_actions','1'),(224643,41043,'_hero_actions','field_61757270285ea'),(224644,41043,'hero_style','default'),(224645,41043,'_hero_style','field_62051d9dc5324'),(224646,41043,'_thumbnail_id','40667'),(224647,41043,'__thumbnail_id','field_617570855ddaf'),(224648,41043,'hero_image_pos_x','right'),(224649,41043,'_hero_image_pos_x','field_62ec3d05390bb'),(224650,41043,'hero_image_pos_y','top'),(224651,41043,'_hero_image_pos_y','field_62ec3d05390bc'),(224652,41043,'hero_image_pos',''),(224653,41043,'_hero_image_pos','field_62ec3d05390ba'),(224654,41043,'fft_hide_from_listings','0'),(224655,41043,'_fft_hide_from_listings','field_61f1320446ab2'),(224656,41043,'fft_page_format','default'),(224657,41043,'_fft_page_format','field_61ae213f1f218'),(224658,41043,'fft_hide_nav','0'),(224659,41043,'_fft_hide_nav','field_635bd5e43527c'),(224660,41043,'fft_hide_header_call_to_action','0'),(224661,41043,'_fft_hide_header_call_to_action','field_635bd6723527d'),(224662,41043,'fft_page_sitemap','0'),(224663,41043,'_fft_page_sitemap','field_61af9b34e8181'),(224664,41043,'blocks_0_acfe_flexible_toggle',''),(224665,41043,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(224666,41043,'blocks_0_acfe_flexible_layout_title','Template'),(224667,41043,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(224668,41043,'blocks_0_template','39087'),(224669,41043,'_blocks_0_template','field_617bdd570fe01'),(224670,41043,'blocks_1_acfe_flexible_toggle',''),(224671,41043,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(224672,41043,'blocks_1_acfe_flexible_layout_title','Text Block'),(224673,41043,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(224674,41043,'blocks_1_options_theme','#ffffff'),(224675,41043,'_blocks_1_options_theme','field_6176830e2ad17'),(224676,41043,'blocks_1_options',''),(224677,41043,'_blocks_1_options','field_6176830e2ad16'),(224678,41043,'blocks_1_text_block_heading','Overview'),(224679,41043,'_blocks_1_text_block_heading','field_617669d413097'),(224680,41043,'blocks_1_text_block_content','Grasping the basics of foot biomechanics is fundamental for anyone involved in prescribing movement training, especially considering that nearly every client relies on their feet for various activities. Our goal is to simplify the complexities of foot biomechanics, equipping you with practical knowledge to better assist your clients. This webinar is not just about theory; it\'s a hands-on, insightful experience that will elevate your understanding and approach to foot health.'),(224681,41043,'_blocks_1_text_block_content','field_617669ec13098'),(224682,41043,'blocks_2_acfe_flexible_toggle',''),(224683,41043,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(224684,41043,'blocks_2_acfe_flexible_layout_title','Button(s)'),(224685,41043,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(224686,41043,'blocks_2_options_theme','#ffffff'),(224687,41043,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(224688,41043,'blocks_2_options',''),(224689,41043,'_blocks_2_options','field_623b03edb6e65'),(224690,41043,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(224691,41043,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(224692,41043,'blocks_2_actions','1'),(224693,41043,'_blocks_2_actions','field_623b03edb6e6e'),(224694,41043,'blocks_3_acfe_flexible_toggle',''),(224695,41043,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(224696,41043,'blocks_3_acfe_flexible_layout_title','Timeline'),(224697,41043,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(224698,41043,'blocks_3_options_theme','#ffffff'),(224699,41043,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(224700,41043,'blocks_3_options',''),(224701,41043,'_blocks_3_options','field_6177de53d1195'),(224702,41043,'blocks_3_timeline_content_title','What You\'ll Explore'),(224703,41043,'_blocks_3_timeline_content_title','field_6177de53d1198'),(224704,41043,'blocks_3_timeline_content_heading','Why Focus on Foot Biomechanics? '),(224705,41043,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(224706,41043,'blocks_3_timeline_content_text','Our feet bear the weight of our movements - from walking and running to jumping and turning. With a multitude of joints, the foot is designed for simultaneous action in various planes, making its function both fascinating and potentially problematic. Understanding the forces at play is crucial for effective training and injury prevention.\r\n\r\nRegister now to gain actionable insights and embark on a journey to unravel the subtleties of Foot Biomechanics.'),(224707,41043,'_blocks_3_timeline_content_text','field_6177de53d119a'),(224708,41043,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(224709,41043,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(224710,41043,'blocks_3_timeline_content_actions','1'),(224711,41043,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(224712,41043,'blocks_3_timeline_content',''),(224713,41043,'_blocks_3_timeline_content','field_6177de53d1197'),(224714,41043,'blocks_3_timeline_items_0_title','Functions of Pronation and Supination '),(224715,41043,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(224716,41043,'blocks_3_timeline_items_0_text','Learn about the pivotal roles of pronation and supination in foot biomechanics. Understand how these movements contribute to the overall gait cycle. '),(224717,41043,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(224718,41043,'blocks_3_timeline_items_1_title','Timing and Occurrence in the Gait Cycle '),(224719,41043,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(224720,41043,'blocks_3_timeline_items_1_text','Explore when and why pronation and supination naturally occur during the gait cycle. Gain insights into the intricacies of these movements in real-life scenarios. '),(224721,41043,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(224722,41043,'blocks_3_timeline_items_2_title','Practical Tests for Understanding Client Function '),(224723,41043,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(224724,41043,'blocks_3_timeline_items_2_text','Witness the demonstration of two practical tests designed to enhance your understanding of your client\'s foot function. These tests provide actionable insights for tailoring your approach to each individual.'),(224725,41043,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(224726,41043,'blocks_3_timeline_items_3_title','Biomechanical Intervention Strategies '),(224727,41043,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(224728,41043,'blocks_3_timeline_items_3_text','Establish a clear strategy for biomechanical interventions focused on the foot. Learn how to address potential issues and optimize foot function for better overall movement. '),(224729,41043,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(224730,41043,'blocks_3_timeline_items','4'),(224731,41043,'_blocks_3_timeline_items','field_6177de53d119d'),(224732,41043,'blocks_4_acfe_flexible_toggle',''),(224733,41043,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(224734,41043,'blocks_4_acfe_flexible_layout_title','Text Block'),(224735,41043,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(224736,41043,'blocks_4_options_theme','#f5f5f5'),(224737,41043,'_blocks_4_options_theme','field_6176830e2ad17'),(224738,41043,'blocks_4_options',''),(224739,41043,'_blocks_4_options','field_6176830e2ad16'),(224740,41043,'blocks_4_text_block_heading','Other Courses'),(224741,41043,'_blocks_4_text_block_heading','field_617669d413097'),(224742,41043,'blocks_4_text_block_content','Discover our range of courses that are frequently purchased'),(224743,41043,'_blocks_4_text_block_content','field_617669ec13098'),(224744,41043,'blocks_5_acfe_flexible_toggle',''),(224745,41043,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(224746,41043,'blocks_5_acfe_flexible_layout_title','Cards'),(224747,41043,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(224748,41043,'blocks_5_options_theme','#ffffff'),(224749,41043,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(224750,41043,'blocks_5_options_format','carousel'),(224751,41043,'_blocks_5_options_format','field_617a7b15245b5'),(224752,41043,'blocks_5_options_style','default'),(224753,41043,'_blocks_5_options_style','field_6278ffb63484a'),(224754,41043,'blocks_5_options_cards_current_listing','0'),(224755,41043,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(224756,41043,'blocks_5_options_cards_content','term'),(224757,41043,'_blocks_5_options_cards_content','field_617aba6122688'),(224758,41043,'blocks_5_options_cards_term','409'),(224759,41043,'_blocks_5_options_cards_term','field_6193f7c180895'),(224760,41043,'blocks_5_options_cards_posts_per_page',''),(224761,41043,'_blocks_5_options_cards_posts_per_page','field_61a7565b1a0f2'),(224762,41043,'blocks_5_options',''),(224763,41043,'_blocks_5_options','field_617a7b15245b3'),(224764,41043,'blocks_6_acfe_flexible_toggle',''),(224765,41043,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(224766,41043,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(224767,41043,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(224768,41043,'blocks_6_options_theme','#ffffff'),(224769,41043,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(224770,41043,'blocks_6_options_state','0'),(224771,41043,'_blocks_6_options_state','field_6239fcb7508c5'),(224772,41043,'blocks_6_options',''),(224773,41043,'_blocks_6_options','field_6177e2991ac44'),(224774,41043,'blocks_6_content_title',''),(224775,41043,'_blocks_6_content_title','field_64d237e8bb1e2'),(224776,41043,'blocks_6_content_heading','FAQ\'s'),(224777,41043,'_blocks_6_content_heading','field_64d237e8bb1e3'),(224778,41043,'blocks_6_content_text',''),(224779,41043,'_blocks_6_content_text','field_64d237e8bb1e4'),(224780,41043,'blocks_6_content_actions',''),(224781,41043,'_blocks_6_content_actions','field_64d237e8bb1e5'),(224782,41043,'blocks_6_content_align','left'),(224783,41043,'_blocks_6_content_align','field_64d2443e6b6aa'),(224784,41043,'blocks_6_content',''),(224785,41043,'_blocks_6_content','field_64d237e8bb1e1'),(224786,41043,'blocks_6_accordion_content','custom'),(224787,41043,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(224788,41043,'blocks_6_accordion_items',''),(224789,41043,'_blocks_6_accordion_items','field_6177e2991ac4c'),(224790,41043,'blocks_6_actions',''),(224791,41043,'_blocks_6_actions','field_61a746a817f7a'),(224792,41043,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:10:\"accordions\";}'),(224793,41043,'_blocks','field_6176696113096'),(224794,41043,'course_label_text','Foot Biomechanics Made Simple Webinar'),(224795,41043,'_course_label_text','field_61e17babf71fa'),(224796,41043,'course_label',''),(224797,41043,'_course_label','field_61e12f92749a7'),(224798,41043,'course_description','Grasping the basics of foot biomechanics is fundamental for anyone involved in prescribing movement training, especially considering that nearly every client relies on their feet for various activities.'),(224799,41043,'_course_description','field_617ac5788e5e1'),(224800,41043,'course_key_info','3'),(224801,41043,'_course_key_info','field_617ac6ad8e5e2'),(224802,41043,'course_included','Functions of Pronation and Supination \r\n\r\nTiming and Occurrence in the Gait Cycle \r\n\r\nPractical Tests for Understanding Client Function \r\n\r\nBiomechanical Intervention Strategies '),(224803,41043,'_course_included','field_617ac6f08e5e4'),(224804,41043,'course_label_label_theme','#0d1f73'),(224805,41043,'_course_label_label_theme','field_61e17bb8f71fb'),(224806,41043,'course_key_info_0_text','Online Learning'),(224807,41043,'_course_key_info_0_text','field_617ac6c38e5e3'),(224808,41043,'course_key_info_1_text','Webinar'),(224809,41043,'_course_key_info_1_text','field_617ac6c38e5e3'),(224810,41043,'course_key_info_2_text','CPD'),(224811,41043,'_course_key_info_2_text','field_617ac6c38e5e3'),(224812,41044,'hide_hero','0'),(224813,41044,'_hide_hero','field_66a2380fcda39'),(224814,41044,'hero_title','Pain Science Made Simple - Recorded Webinar'),(224815,41044,'_hero_title','field_617571fe285e8'),(224816,41044,'hero_text',''),(224817,41044,'_hero_text','field_6175723c285e9'),(224818,41044,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(224819,41044,'_hero_actions_0_button','field_61757281285eb'),(224820,41044,'hero_actions','1'),(224821,41044,'_hero_actions','field_61757270285ea'),(224822,41044,'hero_style','default'),(224823,41044,'_hero_style','field_62051d9dc5324'),(224824,41044,'_thumbnail_id','40650'),(224825,41044,'__thumbnail_id','field_617570855ddaf'),(224826,41044,'hero_image_pos_x','right'),(224827,41044,'_hero_image_pos_x','field_62ec3d05390bb'),(224828,41044,'hero_image_pos_y','top'),(224829,41044,'_hero_image_pos_y','field_62ec3d05390bc'),(224830,41044,'hero_image_pos',''),(224831,41044,'_hero_image_pos','field_62ec3d05390ba'),(224832,41044,'fft_hide_from_listings','0'),(224833,41044,'_fft_hide_from_listings','field_61f1320446ab2'),(224834,41044,'fft_page_format','default'),(224835,41044,'_fft_page_format','field_61ae213f1f218'),(224836,41044,'fft_hide_nav','0'),(224837,41044,'_fft_hide_nav','field_635bd5e43527c'),(224838,41044,'fft_hide_header_call_to_action','0'),(224839,41044,'_fft_hide_header_call_to_action','field_635bd6723527d'),(224840,41044,'fft_page_sitemap','0'),(224841,41044,'_fft_page_sitemap','field_61af9b34e8181'),(224842,41044,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:5:\"quote\";i:4;s:10:\"split_5050\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";}'),(224843,41044,'_blocks','field_6176696113096'),(224844,41044,'course_label_text','Pain Science Made Simple'),(224845,41044,'_course_label_text','field_61e17babf71fa'),(224846,41044,'course_label',''),(224847,41044,'_course_label','field_61e12f92749a7'),(224848,41044,'course_description','Explore the intricate world of pain science in our recorded webinar, \"Pain Science Made Simple \" In this 1-hour live interactive session, we delve into the latest insights from leading neuroscientists, providing you with valuable guidance on addressing clients who experience aches, niggles, and pains; and giving you the confidence to address these issues and give appropriate advice for each individual.'),(224849,41044,'_course_description','field_617ac5788e5e1'),(224850,41044,'course_key_info','3'),(224851,41044,'_course_key_info','field_617ac6ad8e5e2'),(224852,41044,'course_included','What is pain, and how does it manifest in the body?\r\nHow does the mechanism of pain work, and is it solely a physical response?\r\nDispelling the myth: Is pain exclusively in the client\'s head?\r\nUnpacking the science: What does current research reveal about pain?\r\nNavigating persistent pain: What are the implications for working with such clients?\r\nPractical guidance: What steps should be taken to support individuals experiencing persistent pain?'),(224853,41044,'_course_included','field_617ac6f08e5e4'),(224854,41044,'blocks_0_acfe_flexible_toggle',''),(224855,41044,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(224856,41044,'blocks_0_acfe_flexible_layout_title','Template'),(224857,41044,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(224858,41044,'blocks_0_template','39087'),(224859,41044,'_blocks_0_template','field_617bdd570fe01'),(224860,41044,'blocks_1_acfe_flexible_toggle',''),(224861,41044,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(224862,41044,'blocks_1_acfe_flexible_layout_title','Text Block'),(224863,41044,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(224864,41044,'blocks_1_options_theme','#ffffff'),(224865,41044,'_blocks_1_options_theme','field_6176830e2ad17'),(224866,41044,'blocks_1_options',''),(224867,41044,'_blocks_1_options','field_6176830e2ad16'),(224868,41044,'blocks_1_text_block_heading','Overview'),(224869,41044,'_blocks_1_text_block_heading','field_617669d413097'),(224870,41044,'blocks_1_text_block_content','Explore the intricate world of pain science in our recorded webinar, \"Pain Science Made Simple \" In this 1-hour live interactive session, we delve into the latest insights from leading neuroscientists, providing you with valuable guidance on addressing clients who experience aches, niggles, and pains; and giving you the confidence to address these issues and give appropriate advice for each individual.\r\n\r\n<strong>Key Questions Explored</strong>\r\n<ul>\r\n 	<li>What is pain, and how does it manifest in the body?</li>\r\n 	<li>How does the mechanism of pain work, and is it solely a physical response?</li>\r\n 	<li>Dispelling the myth: Is pain exclusively in the client\'s head?</li>\r\n 	<li>Unpacking the science: What does current research reveal about pain?</li>\r\n 	<li>Navigating persistent pain: What are the implications for working with such clients?</li>\r\n 	<li>Practical guidance: What steps should be taken to support individuals experiencing persistent pain?</li>\r\n</ul>'),(224871,41044,'_blocks_1_text_block_content','field_617669ec13098'),(224872,41044,'blocks_5_acfe_flexible_toggle',''),(224873,41044,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(224874,41044,'blocks_5_acfe_flexible_layout_title','Button(s)'),(224875,41044,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(224876,41044,'blocks_5_options_theme','#ffffff'),(224877,41044,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(224878,41044,'blocks_5_options',''),(224879,41044,'_blocks_5_options','field_623b03edb6e65'),(224880,41044,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(224881,41044,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(224882,41044,'blocks_5_actions','1'),(224883,41044,'_blocks_5_actions','field_623b03edb6e6e'),(224884,41044,'blocks_6_acfe_flexible_toggle',''),(224885,41044,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(224886,41044,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(224887,41044,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(224888,41044,'blocks_6_options_theme','#ffffff'),(224889,41044,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(224890,41044,'blocks_6_options_state','0'),(224891,41044,'_blocks_6_options_state','field_6239fcb7508c5'),(224892,41044,'blocks_6_options',''),(224893,41044,'_blocks_6_options','field_6177e2991ac44'),(224894,41044,'blocks_6_content_title',''),(224895,41044,'_blocks_6_content_title','field_64d237e8bb1e2'),(224896,41044,'blocks_6_content_heading',''),(224897,41044,'_blocks_6_content_heading','field_64d237e8bb1e3'),(224898,41044,'blocks_6_content_text',''),(224899,41044,'_blocks_6_content_text','field_64d237e8bb1e4'),(224900,41044,'blocks_6_content_actions',''),(224901,41044,'_blocks_6_content_actions','field_64d237e8bb1e5'),(224902,41044,'blocks_6_content_align','left'),(224903,41044,'_blocks_6_content_align','field_64d2443e6b6aa'),(224904,41044,'blocks_6_content',''),(224905,41044,'_blocks_6_content','field_64d237e8bb1e1'),(224906,41044,'blocks_6_accordion_content','custom'),(224907,41044,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(224908,41044,'blocks_6_accordion_items',''),(224909,41044,'_blocks_6_accordion_items','field_6177e2991ac4c'),(224910,41044,'blocks_6_actions',''),(224911,41044,'_blocks_6_actions','field_61a746a817f7a'),(224912,41044,'blocks_4_acfe_flexible_toggle',''),(224913,41044,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(224914,41044,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(224915,41044,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(224916,41044,'blocks_4_options_theme','#f5f5f5'),(224917,41044,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(224918,41044,'blocks_4_options_reverse','0'),(224919,41044,'_blocks_4_options_reverse','field_61768049bb8ac'),(224920,41044,'blocks_4_options',''),(224921,41044,'_blocks_4_options','field_617682517c334'),(224922,41044,'blocks_4_split_5050_image','40652'),(224923,41044,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(224924,41044,'blocks_4_split_5050_video',''),(224925,41044,'_blocks_4_split_5050_video','field_6239f3160848a'),(224926,41044,'blocks_4_split_5050_content_title',''),(224927,41044,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(224928,41044,'blocks_4_split_5050_content_heading','What you’ll gain'),(224929,41044,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(224930,41044,'blocks_4_split_5050_content_text','Gain a deeper understanding of pain by adopting the perspective of leading neuroscientists. Challenge traditional notions by acknowledging that pain is not merely a measure of tissue damage but a complex and sophisticated protective mechanism.\r\n\r\nJoin us on this enlightening journey as we simplify pain science and equip you with the knowledge to confidently address your clients\' concerns.'),(224931,41044,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(224932,41044,'blocks_4_split_5050_content_actions',''),(224933,41044,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(224934,41044,'blocks_4_split_5050_content',''),(224935,41044,'_blocks_4_split_5050_content','field_61767afceb8ba'),(224936,41044,'blocks_2_acfe_flexible_toggle',''),(224937,41044,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(224938,41044,'blocks_2_acfe_flexible_layout_title','Button(s)'),(224939,41044,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(224940,41044,'blocks_2_options_theme','#ffffff'),(224941,41044,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(224942,41044,'blocks_2_options',''),(224943,41044,'_blocks_2_options','field_623b03edb6e65'),(224944,41044,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(224945,41044,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(224946,41044,'blocks_2_actions','1'),(224947,41044,'_blocks_2_actions','field_623b03edb6e6e'),(224948,41044,'blocks_3_acfe_flexible_toggle',''),(224949,41044,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(224950,41044,'blocks_3_acfe_flexible_layout_title','Quote'),(224951,41044,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(224952,41044,'blocks_3_quote_content','Pain scientists are reasonably agreed that pain is an unpleasant feeling in our body that makes us want to stop and change our behaviour.\" Benefits et al. (2022)'),(224953,41044,'_blocks_3_quote_content','field_6177cdacdd67a'),(224954,41044,'blocks_3_quote_author',''),(224955,41044,'_blocks_3_quote_author','field_6177cdc6dd67b'),(224956,41044,'course_label_label_theme','#0d1f73'),(224957,41044,'_course_label_label_theme','field_61e17bb8f71fb'),(224958,41044,'course_key_info_0_text','Online Learning'),(224959,41044,'_course_key_info_0_text','field_617ac6c38e5e3'),(224960,41044,'course_key_info_1_text','Webinar'),(224961,41044,'_course_key_info_1_text','field_617ac6c38e5e3'),(224962,41044,'course_key_info_2_text','CPD'),(224963,41044,'_course_key_info_2_text','field_617ac6c38e5e3'),(224964,41045,'hide_hero','0'),(224965,41045,'_hide_hero','field_66a2380fcda39'),(224966,41045,'hero_title','The Foot Posture Index Webinar'),(224967,41045,'_hero_title','field_617571fe285e8'),(224968,41045,'hero_text',''),(224969,41045,'_hero_text','field_6175723c285e9'),(224970,41045,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(224971,41045,'_hero_actions_0_button','field_61757281285eb'),(224972,41045,'hero_actions','1'),(224973,41045,'_hero_actions','field_61757270285ea'),(224974,41045,'hero_style','default'),(224975,41045,'_hero_style','field_62051d9dc5324'),(224976,41045,'_thumbnail_id','40670'),(224977,41045,'__thumbnail_id','field_617570855ddaf'),(224978,41045,'hero_image_pos_x','right'),(224979,41045,'_hero_image_pos_x','field_62ec3d05390bb'),(224980,41045,'hero_image_pos_y','top'),(224981,41045,'_hero_image_pos_y','field_62ec3d05390bc'),(224982,41045,'hero_image_pos',''),(224983,41045,'_hero_image_pos','field_62ec3d05390ba'),(224984,41045,'fft_hide_from_listings','0'),(224985,41045,'_fft_hide_from_listings','field_61f1320446ab2'),(224986,41045,'fft_page_format','default'),(224987,41045,'_fft_page_format','field_61ae213f1f218'),(224988,41045,'fft_hide_nav','0'),(224989,41045,'_fft_hide_nav','field_635bd5e43527c'),(224990,41045,'fft_hide_header_call_to_action','0'),(224991,41045,'_fft_hide_header_call_to_action','field_635bd6723527d'),(224992,41045,'fft_page_sitemap','0'),(224993,41045,'_fft_page_sitemap','field_61af9b34e8181'),(224994,41045,'blocks_0_acfe_flexible_toggle',''),(224995,41045,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(224996,41045,'blocks_0_acfe_flexible_layout_title','Template'),(224997,41045,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(224998,41045,'blocks_0_template','39087'),(224999,41045,'_blocks_0_template','field_617bdd570fe01'),(225000,41045,'blocks_1_acfe_flexible_toggle',''),(225001,41045,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(225002,41045,'blocks_1_acfe_flexible_layout_title','Text Block'),(225003,41045,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(225004,41045,'blocks_1_options_theme','#ffffff'),(225005,41045,'_blocks_1_options_theme','field_6176830e2ad17'),(225006,41045,'blocks_1_options',''),(225007,41045,'_blocks_1_options','field_6176830e2ad16'),(225008,41045,'blocks_1_text_block_heading','Overview'),(225009,41045,'_blocks_1_text_block_heading','field_617669d413097'),(225010,41045,'blocks_1_text_block_content','Explore the world of evidence-based foot and ankle biomechanics assessment with our comprehensive webinar, \"The Foot Posture Index.\" This one-hour recorded session, coupled with a downloadable slide PDF, equips personal trainers, sports coaches and therapists, and Pilates instructors with a cost-effective evaluation tool to enhance their understanding of foot biomechanics.\r\n\r\nIdeal for those seeking simplicity without the need for expensive equipment, this online CPD delves into the Foot Posture Index, covering essential tests such as Talar head position, Supra and infra lateral malleolus curve, Calcaneal frontal plane position, Prominence of the talonavicular joint, Congruence of the medial longitudinal arch, and Abduction/adduction of the forefoot on the rearfoot (Dr. Anthony Redmond from the University of Leeds (2005, 2008, 2010)).\r\n\r\nJoin us in exploring not only the assessment methods but also effective exercise interventions to enhance foot and lower leg biomechanics. Elevate your practice with evidence-based insights and practical tools that you can out to practice with your clients straight away.'),(225011,41045,'_blocks_1_text_block_content','field_617669ec13098'),(225012,41045,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:8:\"template\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"accordions\";}'),(225013,41045,'_blocks','field_6176696113096'),(225014,41045,'course_label_text','The Foot Posture Index'),(225015,41045,'_course_label_text','field_61e17babf71fa'),(225016,41045,'course_label',''),(225017,41045,'_course_label','field_61e12f92749a7'),(225018,41045,'course_description','Explore the world of evidence-based foot and ankle biomechanics assessment with our comprehensive webinar, \"The Foot Posture Index.\"'),(225019,41045,'_course_description','field_617ac5788e5e1'),(225020,41045,'course_key_info','3'),(225021,41045,'_course_key_info','field_617ac6ad8e5e2'),(225022,41045,'course_included','Ideal for those seeking simplicity without the need for expensive equipment, this online CPD delves into the Foot Posture Index, covering essential tests such as Talar head position, Supra and infra lateral malleolus curve, Calcaneal frontal plane position, Prominence of the talonavicular joint, Congruence of the medial longitudinal arch, and Abduction/adduction of the forefoot on the rearfoot'),(225023,41045,'_course_included','field_617ac6f08e5e4'),(225024,41045,'blocks_2_acfe_flexible_toggle',''),(225025,41045,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(225026,41045,'blocks_2_acfe_flexible_layout_title','Template'),(225027,41045,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(225028,41045,'blocks_2_template','39401'),(225029,41045,'_blocks_2_template','field_617bdd570fe01'),(225030,41045,'blocks_3_acfe_flexible_toggle',''),(225031,41045,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(225032,41045,'blocks_3_acfe_flexible_layout_title','Text Block'),(225033,41045,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(225034,41045,'blocks_3_options_theme','#ffffff'),(225035,41045,'_blocks_3_options_theme','field_6176830e2ad17'),(225036,41045,'blocks_3_options',''),(225037,41045,'_blocks_3_options','field_6176830e2ad16'),(225038,41045,'blocks_3_text_block_heading','Other Courses'),(225039,41045,'_blocks_3_text_block_heading','field_617669d413097'),(225040,41045,'blocks_3_text_block_content','Discover our range of frequently purchased courses'),(225041,41045,'_blocks_3_text_block_content','field_617669ec13098'),(225042,41045,'blocks_4_acfe_flexible_toggle',''),(225043,41045,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(225044,41045,'blocks_4_acfe_flexible_layout_title','Cards'),(225045,41045,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(225046,41045,'blocks_4_options_theme','#ffffff'),(225047,41045,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(225048,41045,'blocks_4_options_format','carousel'),(225049,41045,'_blocks_4_options_format','field_617a7b15245b5'),(225050,41045,'blocks_4_options_style','default'),(225051,41045,'_blocks_4_options_style','field_6278ffb63484a'),(225052,41045,'blocks_4_options_cards_current_listing','0'),(225053,41045,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(225054,41045,'blocks_4_options_cards_content','term'),(225055,41045,'_blocks_4_options_cards_content','field_617aba6122688'),(225056,41045,'blocks_4_options_cards_term','403'),(225057,41045,'_blocks_4_options_cards_term','field_6193f7c180895'),(225058,41045,'blocks_4_options_cards_posts_per_page','6'),(225059,41045,'_blocks_4_options_cards_posts_per_page','field_61a7565b1a0f2'),(225060,41045,'blocks_4_options',''),(225061,41045,'_blocks_4_options','field_617a7b15245b3'),(225062,41045,'blocks_5_acfe_flexible_toggle',''),(225063,41045,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(225064,41045,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(225065,41045,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(225066,41045,'blocks_5_options_theme','#ffffff'),(225067,41045,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(225068,41045,'blocks_5_options_state','0'),(225069,41045,'_blocks_5_options_state','field_6239fcb7508c5'),(225070,41045,'blocks_5_options',''),(225071,41045,'_blocks_5_options','field_6177e2991ac44'),(225072,41045,'blocks_5_content_title',''),(225073,41045,'_blocks_5_content_title','field_64d237e8bb1e2'),(225074,41045,'blocks_5_content_heading','FAQ\'s'),(225075,41045,'_blocks_5_content_heading','field_64d237e8bb1e3'),(225076,41045,'blocks_5_content_text',''),(225077,41045,'_blocks_5_content_text','field_64d237e8bb1e4'),(225078,41045,'blocks_5_content_actions',''),(225079,41045,'_blocks_5_content_actions','field_64d237e8bb1e5'),(225080,41045,'blocks_5_content_align','left'),(225081,41045,'_blocks_5_content_align','field_64d2443e6b6aa'),(225082,41045,'blocks_5_content',''),(225083,41045,'_blocks_5_content','field_64d237e8bb1e1'),(225084,41045,'blocks_5_accordion_content','custom'),(225085,41045,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(225086,41045,'blocks_5_accordion_items',''),(225087,41045,'_blocks_5_accordion_items','field_6177e2991ac4c'),(225088,41045,'blocks_5_actions',''),(225089,41045,'_blocks_5_actions','field_61a746a817f7a'),(225090,41045,'course_label_label_theme','#0d1f73'),(225091,41045,'_course_label_label_theme','field_61e17bb8f71fb'),(225092,41045,'course_key_info_0_text','Online Learning'),(225093,41045,'_course_key_info_0_text','field_617ac6c38e5e3'),(225094,41045,'course_key_info_1_text','Webinar'),(225095,41045,'_course_key_info_1_text','field_617ac6c38e5e3'),(225096,41045,'course_key_info_2_text','CPD'),(225097,41045,'_course_key_info_2_text','field_617ac6c38e5e3'),(225098,41046,'hide_hero','0'),(225099,41046,'_hide_hero','field_66a2380fcda39'),(225100,41046,'hero_title','Understanding Nerves – Recorded Webinar'),(225101,41046,'_hero_title','field_617571fe285e8'),(225102,41046,'hero_text',''),(225103,41046,'_hero_text','field_6175723c285e9'),(225104,41046,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(225105,41046,'_hero_actions_0_button','field_61757281285eb'),(225106,41046,'hero_actions','1'),(225107,41046,'_hero_actions','field_61757270285ea'),(225108,41046,'hero_style','default'),(225109,41046,'_hero_style','field_62051d9dc5324'),(225110,41046,'_thumbnail_id','40665'),(225111,41046,'__thumbnail_id','field_617570855ddaf'),(225112,41046,'hero_image_pos_x','right'),(225113,41046,'_hero_image_pos_x','field_62ec3d05390bb'),(225114,41046,'hero_image_pos_y','top'),(225115,41046,'_hero_image_pos_y','field_62ec3d05390bc'),(225116,41046,'hero_image_pos',''),(225117,41046,'_hero_image_pos','field_62ec3d05390ba'),(225118,41046,'fft_hide_from_listings','0'),(225119,41046,'_fft_hide_from_listings','field_61f1320446ab2'),(225120,41046,'fft_page_format','default'),(225121,41046,'_fft_page_format','field_61ae213f1f218'),(225122,41046,'fft_hide_nav','0'),(225123,41046,'_fft_hide_nav','field_635bd5e43527c'),(225124,41046,'fft_hide_header_call_to_action','0'),(225125,41046,'_fft_hide_header_call_to_action','field_635bd6723527d'),(225126,41046,'fft_page_sitemap','0'),(225127,41046,'_fft_page_sitemap','field_61af9b34e8181'),(225128,41046,'blocks_0_acfe_flexible_toggle',''),(225129,41046,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(225130,41046,'blocks_0_acfe_flexible_layout_title','Template'),(225131,41046,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(225132,41046,'blocks_0_template','39087'),(225133,41046,'_blocks_0_template','field_617bdd570fe01'),(225134,41046,'blocks_1_acfe_flexible_toggle',''),(225135,41046,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(225136,41046,'blocks_1_acfe_flexible_layout_title','Text Block'),(225137,41046,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(225138,41046,'blocks_1_options_theme','#ffffff'),(225139,41046,'_blocks_1_options_theme','field_6176830e2ad17'),(225140,41046,'blocks_1_options',''),(225141,41046,'_blocks_1_options','field_6176830e2ad16'),(225142,41046,'blocks_1_text_block_heading','Course Overview'),(225143,41046,'_blocks_1_text_block_heading','field_617669d413097'),(225144,41046,'blocks_1_text_block_content','This live webinar is for non-clinicians seeking solutions to modern ailments of their clients with a proactive approach to assessment &amp; improvement of movement.\r\n\r\nKey Objectives:\r\n<ul>\r\n 	<li>Delve into the integrated system</li>\r\n 	<li>Gain a comprehensive understanding of the 3 subsystems</li>\r\n 	<li>Explore the pivotal role of nerves and examine supporting evidence</li>\r\n 	<li>Engage in hands-on practice to assess the nerves</li>\r\n 	<li>Learn effective techniques to mobilize the nervous system, enhancing performance and reducing the risk of complications.</li>\r\n</ul>'),(225145,41046,'_blocks_1_text_block_content','field_617669ec13098'),(225146,41046,'blocks_2_acfe_flexible_toggle',''),(225147,41046,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(225148,41046,'blocks_2_acfe_flexible_layout_title','Button(s)'),(225149,41046,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(225150,41046,'blocks_2_options_theme','#ffffff'),(225151,41046,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(225152,41046,'blocks_2_options',''),(225153,41046,'_blocks_2_options','field_623b03edb6e65'),(225154,41046,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(225155,41046,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(225156,41046,'blocks_2_actions','1'),(225157,41046,'_blocks_2_actions','field_623b03edb6e6e'),(225158,41046,'blocks_3_acfe_flexible_toggle',''),(225159,41046,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(225160,41046,'blocks_3_acfe_flexible_layout_title','Text Block'),(225161,41046,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(225162,41046,'blocks_3_options_theme','#ffffff'),(225163,41046,'_blocks_3_options_theme','field_6176830e2ad17'),(225164,41046,'blocks_3_options',''),(225165,41046,'_blocks_3_options','field_6176830e2ad16'),(225166,41046,'blocks_3_text_block_heading','More Courses'),(225167,41046,'_blocks_3_text_block_heading','field_617669d413097'),(225168,41046,'blocks_3_text_block_content','Discover our range of courses that are frequently purchased'),(225169,41046,'_blocks_3_text_block_content','field_617669ec13098'),(225170,41046,'blocks_4_acfe_flexible_toggle',''),(225171,41046,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(225172,41046,'blocks_4_acfe_flexible_layout_title','Cards'),(225173,41046,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(225174,41046,'blocks_4_options_theme','#ffffff'),(225175,41046,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(225176,41046,'blocks_4_options_format','carousel'),(225177,41046,'_blocks_4_options_format','field_617a7b15245b5'),(225178,41046,'blocks_4_options_style','default'),(225179,41046,'_blocks_4_options_style','field_6278ffb63484a'),(225180,41046,'blocks_4_options_cards_current_listing','0'),(225181,41046,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(225182,41046,'blocks_4_options_cards_content','post_type'),(225183,41046,'_blocks_4_options_cards_content','field_617aba6122688'),(225184,41046,'blocks_4_options_cards_post_type','course'),(225185,41046,'_blocks_4_options_cards_post_type','field_6194cc744d38b'),(225186,41046,'blocks_4_options_cards_posts_per_page','6'),(225187,41046,'_blocks_4_options_cards_posts_per_page','field_61a7565b1a0f2'),(225188,41046,'blocks_4_options',''),(225189,41046,'_blocks_4_options','field_617a7b15245b3'),(225190,41046,'blocks_5_acfe_flexible_toggle',''),(225191,41046,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(225192,41046,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(225193,41046,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(225194,41046,'blocks_5_options_theme','#ffffff'),(225195,41046,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(225196,41046,'blocks_5_options_state','0'),(225197,41046,'_blocks_5_options_state','field_6239fcb7508c5'),(225198,41046,'blocks_5_options',''),(225199,41046,'_blocks_5_options','field_6177e2991ac44'),(225200,41046,'blocks_5_content_title',''),(225201,41046,'_blocks_5_content_title','field_64d237e8bb1e2'),(225202,41046,'blocks_5_content_heading','FAQ\'s'),(225203,41046,'_blocks_5_content_heading','field_64d237e8bb1e3'),(225204,41046,'blocks_5_content_text',''),(225205,41046,'_blocks_5_content_text','field_64d237e8bb1e4'),(225206,41046,'blocks_5_content_actions',''),(225207,41046,'_blocks_5_content_actions','field_64d237e8bb1e5'),(225208,41046,'blocks_5_content_align','left'),(225209,41046,'_blocks_5_content_align','field_64d2443e6b6aa'),(225210,41046,'blocks_5_content',''),(225211,41046,'_blocks_5_content','field_64d237e8bb1e1'),(225212,41046,'blocks_5_accordion_content','custom'),(225213,41046,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(225214,41046,'blocks_5_accordion_items',''),(225215,41046,'_blocks_5_accordion_items','field_6177e2991ac4c'),(225216,41046,'blocks_5_actions',''),(225217,41046,'_blocks_5_actions','field_61a746a817f7a'),(225218,41046,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"accordions\";}'),(225219,41046,'_blocks','field_6176696113096'),(225220,41046,'course_label_text','Understanding Nerves Webinar'),(225221,41046,'_course_label_text','field_61e17babf71fa'),(225222,41046,'course_label',''),(225223,41046,'_course_label','field_61e12f92749a7'),(225224,41046,'course_description','This live webinar is for non-clinicians seeking solutions to modern ailments of their clients with a proactive approach to assessment & improvement of movement.'),(225225,41046,'_course_description','field_617ac5788e5e1'),(225226,41046,'course_key_info','3'),(225227,41046,'_course_key_info','field_617ac6ad8e5e2'),(225228,41046,'course_included','Delve into the integrated system\r\n\r\nGain a comprehensive understanding of the 3 subsystems\r\n\r\nExplore the pivotal role of nerves and examine supporting evidence\r\n\r\nEngage in hands-on practice to assess the nerves\r\n\r\nLearn effective techniques to mobilize the nervous system, enhancing performance and reducing the risk of complications.'),(225229,41046,'_course_included','field_617ac6f08e5e4'),(225230,41046,'course_label_label_theme','#0d1f73'),(225231,41046,'_course_label_label_theme','field_61e17bb8f71fb'),(225232,41046,'course_key_info_0_text','Online Learning'),(225233,41046,'_course_key_info_0_text','field_617ac6c38e5e3'),(225234,41046,'course_key_info_1_text','Webinar'),(225235,41046,'_course_key_info_1_text','field_617ac6c38e5e3'),(225236,41046,'course_key_info_2_text','CPD'),(225237,41046,'_course_key_info_2_text','field_617ac6c38e5e3'),(225238,40284,'blocks_8_open_whats_included','1'),(225239,40284,'_blocks_8_open_whats_included','field_66ebfd679450c'),(225240,40284,'blocks_8_open_key_information','0'),(225241,40284,'_blocks_8_open_key_information','field_66ebfd7f9450d'),(225242,40284,'blocks_8_open',''),(225243,40284,'_blocks_8_open','field_66ebfd009450b'),(225244,41047,'hide_hero','0'),(225245,41047,'_hide_hero','field_66a2380fcda39'),(225246,41047,'hero_title','Weak Glutes Online Learning'),(225247,41047,'_hero_title','field_617571fe285e8'),(225248,41047,'hero_text','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class '),(225249,41047,'_hero_text','field_6175723c285e9'),(225250,41047,'hero_actions','1'),(225251,41047,'_hero_actions','field_61757270285ea'),(225252,41047,'hero_style','default'),(225253,41047,'_hero_style','field_62051d9dc5324'),(225254,41047,'_thumbnail_id','40638'),(225255,41047,'__thumbnail_id','field_617570855ddaf'),(225256,41047,'hero_image_pos_x','right'),(225257,41047,'_hero_image_pos_x','field_62ec3d05390bb'),(225258,41047,'hero_image_pos_y','top'),(225259,41047,'_hero_image_pos_y','field_62ec3d05390bc'),(225260,41047,'hero_image_pos',''),(225261,41047,'_hero_image_pos','field_62ec3d05390ba'),(225262,41047,'fft_hide_from_listings','0'),(225263,41047,'_fft_hide_from_listings','field_61f1320446ab2'),(225264,41047,'fft_page_format','default'),(225265,41047,'_fft_page_format','field_61ae213f1f218'),(225266,41047,'fft_hide_nav','0'),(225267,41047,'_fft_hide_nav','field_635bd5e43527c'),(225268,41047,'fft_hide_header_call_to_action','0'),(225269,41047,'_fft_hide_header_call_to_action','field_635bd6723527d'),(225270,41047,'fft_page_sitemap','0'),(225271,41047,'_fft_page_sitemap','field_61af9b34e8181'),(225272,41047,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:7:\"buttons\";i:6;s:10:\"accordions\";i:7;s:10:\"text_block\";i:8;s:14:\"course_compare\";}'),(225273,41047,'_blocks','field_6176696113096'),(225274,41047,'course_label_text','Weak Glutes Webinar'),(225275,41047,'_course_label_text','field_61e17babf71fa'),(225276,41047,'course_label',''),(225277,41047,'_course_label','field_61e12f92749a7'),(225278,41047,'course_description','Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class'),(225279,41047,'_course_description','field_617ac5788e5e1'),(225280,41047,'course_key_info','3'),(225281,41047,'_course_key_info','field_617ac6ad8e5e2'),(225282,41047,'course_included','Explore the Anatomy\r\n\r\nPractical Assessment\r\n\r\nUnveiling the Culprits\r\n\r\nTargeted Interventions\r\n\r\nKinetic Chain Exploration'),(225283,41047,'_course_included','field_617ac6f08e5e4'),(225284,41047,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(225285,41047,'_hero_actions_0_button','field_61757281285eb'),(225286,41047,'blocks_0_acfe_flexible_toggle',''),(225287,41047,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(225288,41047,'blocks_0_acfe_flexible_layout_title','Template'),(225289,41047,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(225290,41047,'blocks_0_template','39087'),(225291,41047,'_blocks_0_template','field_617bdd570fe01'),(225292,41047,'blocks_1_acfe_flexible_toggle',''),(225293,41047,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(225294,41047,'blocks_1_acfe_flexible_layout_title','Text Block'),(225295,41047,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(225296,41047,'blocks_1_options_theme','#ffffff'),(225297,41047,'_blocks_1_options_theme','field_6176830e2ad17'),(225298,41047,'blocks_1_options',''),(225299,41047,'_blocks_1_options','field_6176830e2ad16'),(225300,41047,'blocks_1_text_block_heading','Overview'),(225301,41047,'_blocks_1_text_block_heading','field_617669d413097'),(225302,41047,'blocks_1_text_block_content','<strong>Uncover the Truth Behind \'Weak Glutes\' in this Exclusive Master Class</strong>\r\n\r\n\'Weak Glutes\' may not be what you\'ve always believed. Join our comprehensive webinar to delve deep into the intricacies of glute strength, debunk common myths, and equip yourself with effective solutions for both your clients and personal fitness journey.\r\n\r\nLearn to recognise when the conventional approaches to strength training miss the mark. Our webinar addresses the crucial question: What if your intervention isn\'t yielding the desired results? We\'ll guide you through identifying the root causes and unveil powerful strategies to overcome the elusive issue often misunderstood as \'Weak Glutes.\''),(225303,41047,'_blocks_1_text_block_content','field_617669ec13098'),(225304,41047,'blocks_2_acfe_flexible_toggle',''),(225305,41047,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(225306,41047,'blocks_2_acfe_flexible_layout_title','Button(s)'),(225307,41047,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(225308,41047,'blocks_2_options_theme','#ffffff'),(225309,41047,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(225310,41047,'blocks_2_options',''),(225311,41047,'_blocks_2_options','field_623b03edb6e65'),(225312,41047,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(225313,41047,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(225314,41047,'blocks_2_actions','1'),(225315,41047,'_blocks_2_actions','field_623b03edb6e6e'),(225316,41047,'blocks_3_acfe_flexible_toggle',''),(225317,41047,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(225318,41047,'blocks_3_acfe_flexible_layout_title','Timeline'),(225319,41047,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(225320,41047,'blocks_3_options_theme','#ffffff'),(225321,41047,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(225322,41047,'blocks_3_options',''),(225323,41047,'_blocks_3_options','field_6177de53d1195'),(225324,41047,'blocks_3_timeline_content_title',''),(225325,41047,'_blocks_3_timeline_content_title','field_6177de53d1198'),(225326,41047,'blocks_3_timeline_content_heading','What’s inside the masterclass? '),(225327,41047,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(225328,41047,'blocks_3_timeline_content_text',''),(225329,41047,'_blocks_3_timeline_content_text','field_6177de53d119a'),(225330,41047,'blocks_3_timeline_content_actions',''),(225331,41047,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(225332,41047,'blocks_3_timeline_content',''),(225333,41047,'_blocks_3_timeline_content','field_6177de53d1197'),(225334,41047,'blocks_3_timeline_items_0_title','Explore the Anatomy'),(225335,41047,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(225336,41047,'blocks_3_timeline_items_0_text','Unravel the mysteries of the glutes, understanding the unique contribution each muscle makes to fundamental movements.'),(225337,41047,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(225338,41047,'blocks_3_timeline_items_1_title','Practical Assessment'),(225339,41047,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(225340,41047,'blocks_3_timeline_items_1_text','Acquire a straightforward method to assess glute function tailored to your client\'s anatomy and movement patterns.'),(225341,41047,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(225342,41047,'blocks_3_timeline_items_2_title','Unveiling the Culprits'),(225343,41047,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(225344,41047,'blocks_3_timeline_items_2_text','Dive into the top 5 common causes of glute dysfunction, including antagonist dysfunction, nerve tension, lack of mobility, \'tension\' from other body parts, or a combination of these factors.'),(225345,41047,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(225346,41047,'blocks_3_timeline_items_3_title','Targeted Interventions'),(225347,41047,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(225348,41047,'blocks_3_timeline_items_3_text','Gain a toolkit of interventions for programming that addresses each identified cause. Learn the skills to test, intervene, and re-test effectively.'),(225349,41047,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(225350,41047,'blocks_3_timeline_items_4_title','Kinetic Chain Exploration'),(225351,41047,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(225352,41047,'blocks_3_timeline_items_4_text','Understand the integrated system of our kinetic chain, distinguishing between high-quality and poor-quality movement patterns.'),(225353,41047,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(225354,41047,'blocks_3_timeline_items','5'),(225355,41047,'_blocks_3_timeline_items','field_6177de53d119d'),(225356,41047,'blocks_4_acfe_flexible_toggle',''),(225357,41047,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(225358,41047,'blocks_4_acfe_flexible_layout_title','Text Block'),(225359,41047,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(225360,41047,'blocks_4_options_theme','#f5f5f5'),(225361,41047,'_blocks_4_options_theme','field_6176830e2ad17'),(225362,41047,'blocks_4_options',''),(225363,41047,'_blocks_4_options','field_6176830e2ad16'),(225364,41047,'blocks_4_text_block_heading','Key Takeaways'),(225365,41047,'_blocks_4_text_block_heading','field_617669d413097'),(225366,41047,'blocks_4_text_block_content','<ul>\r\n 	<li>Master the art of testing for glute dysfunction.</li>\r\n 	<li>Identify and address the 5 most prevalent causes of dysfunction.</li>\r\n 	<li>Implement targeted interventions to restore optimal glute function.</li>\r\n</ul>\r\nElevate your understanding of \'Weak Glutes\' and empower yourself with actionable insights.'),(225367,41047,'_blocks_4_text_block_content','field_617669ec13098'),(225368,41047,'blocks_5_acfe_flexible_toggle',''),(225369,41047,'_blocks_5_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(225370,41047,'blocks_5_acfe_flexible_layout_title','Button(s)'),(225371,41047,'_blocks_5_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(225372,41047,'blocks_5_options_theme','#ffffff'),(225373,41047,'_blocks_5_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(225374,41047,'blocks_5_options',''),(225375,41047,'_blocks_5_options','field_623b03edb6e65'),(225376,41047,'blocks_5_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(225377,41047,'_blocks_5_actions_0_button','field_623b03edb6e6f'),(225378,41047,'blocks_5_actions','1'),(225379,41047,'_blocks_5_actions','field_623b03edb6e6e'),(225380,41047,'blocks_6_acfe_flexible_toggle',''),(225381,41047,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(225382,41047,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(225383,41047,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(225384,41047,'blocks_6_options_theme','#ffffff'),(225385,41047,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(225386,41047,'blocks_6_options_state','0'),(225387,41047,'_blocks_6_options_state','field_6239fcb7508c5'),(225388,41047,'blocks_6_options',''),(225389,41047,'_blocks_6_options','field_6177e2991ac44'),(225390,41047,'blocks_6_content_title',''),(225391,41047,'_blocks_6_content_title','field_64d237e8bb1e2'),(225392,41047,'blocks_6_content_heading',''),(225393,41047,'_blocks_6_content_heading','field_64d237e8bb1e3'),(225394,41047,'blocks_6_content_text',''),(225395,41047,'_blocks_6_content_text','field_64d237e8bb1e4'),(225396,41047,'blocks_6_content_actions',''),(225397,41047,'_blocks_6_content_actions','field_64d237e8bb1e5'),(225398,41047,'blocks_6_content_align','left'),(225399,41047,'_blocks_6_content_align','field_64d2443e6b6aa'),(225400,41047,'blocks_6_content',''),(225401,41047,'_blocks_6_content','field_64d237e8bb1e1'),(225402,41047,'blocks_6_accordion_content','custom'),(225403,41047,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(225404,41047,'blocks_6_accordion_items',''),(225405,41047,'_blocks_6_accordion_items','field_6177e2991ac4c'),(225406,41047,'blocks_6_actions',''),(225407,41047,'_blocks_6_actions','field_61a746a817f7a'),(225408,41047,'blocks_7_acfe_flexible_toggle',''),(225409,41047,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(225410,41047,'blocks_7_acfe_flexible_layout_title','Text Block'),(225411,41047,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(225412,41047,'blocks_7_options_theme','#b61234'),(225413,41047,'_blocks_7_options_theme','field_6176830e2ad17'),(225414,41047,'blocks_7_options',''),(225415,41047,'_blocks_7_options','field_6176830e2ad16'),(225416,41047,'blocks_7_text_block_heading','Other CPD Courses'),(225417,41047,'_blocks_7_text_block_heading','field_617669d413097'),(225418,41047,'blocks_7_text_block_content','Other frequently purchased CPD courses'),(225419,41047,'_blocks_7_text_block_content','field_617669ec13098'),(225420,41047,'blocks_8_acfe_flexible_toggle',''),(225421,41047,'_blocks_8_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(225422,41047,'blocks_8_acfe_flexible_layout_title','Course Comparison'),(225423,41047,'_blocks_8_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(225424,41047,'blocks_8_options_theme','#b61234'),(225425,41047,'_blocks_8_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(225426,41047,'blocks_8_options',''),(225427,41047,'_blocks_8_options','field_617ac0b7f6c08'),(225428,41047,'blocks_8_show','category'),(225429,41047,'_blocks_8_show','field_61a49cba9d946'),(225430,41047,'blocks_8_category','403'),(225431,41047,'_blocks_8_category','field_61a49cd79d947'),(225432,41047,'course_label_label_theme','#0d1f73'),(225433,41047,'_course_label_label_theme','field_61e17bb8f71fb'),(225434,41047,'course_key_info_0_text','Online Learning'),(225435,41047,'_course_key_info_0_text','field_617ac6c38e5e3'),(225436,41047,'course_key_info_1_text','CPD'),(225437,41047,'_course_key_info_1_text','field_617ac6c38e5e3'),(225438,41047,'course_key_info_2_text','Webinar'),(225439,41047,'_course_key_info_2_text','field_617ac6c38e5e3'),(225440,41047,'blocks_8_open_whats_included','1'),(225441,41047,'_blocks_8_open_whats_included','field_66ebfd679450c'),(225442,41047,'blocks_8_open_key_information','0'),(225443,41047,'_blocks_8_open_key_information','field_66ebfd7f9450d'),(225444,41047,'blocks_8_open',''),(225445,41047,'_blocks_8_open','field_66ebfd009450b'),(225446,41048,'hide_hero','0'),(225447,41048,'_hide_hero','field_66a2380fcda39'),(225448,41048,'hero_title','What the hell is ‘functional training’ anyway? Recorded Webinar'),(225449,41048,'_hero_title','field_617571fe285e8'),(225450,41048,'hero_text',''),(225451,41048,'_hero_text','field_6175723c285e9'),(225452,41048,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(225453,41048,'_hero_actions_0_button','field_61757281285eb'),(225454,41048,'hero_actions','1'),(225455,41048,'_hero_actions','field_61757270285ea'),(225456,41048,'hero_style','default'),(225457,41048,'_hero_style','field_62051d9dc5324'),(225458,41048,'_thumbnail_id','40659'),(225459,41048,'__thumbnail_id','field_617570855ddaf'),(225460,41048,'hero_image_pos_x','right'),(225461,41048,'_hero_image_pos_x','field_62ec3d05390bb'),(225462,41048,'hero_image_pos_y','top'),(225463,41048,'_hero_image_pos_y','field_62ec3d05390bc'),(225464,41048,'hero_image_pos',''),(225465,41048,'_hero_image_pos','field_62ec3d05390ba'),(225466,41048,'fft_hide_from_listings','0'),(225467,41048,'_fft_hide_from_listings','field_61f1320446ab2'),(225468,41048,'fft_page_format','default'),(225469,41048,'_fft_page_format','field_61ae213f1f218'),(225470,41048,'fft_hide_nav','0'),(225471,41048,'_fft_hide_nav','field_635bd5e43527c'),(225472,41048,'fft_hide_header_call_to_action','0'),(225473,41048,'_fft_hide_header_call_to_action','field_635bd6723527d'),(225474,41048,'fft_page_sitemap','0'),(225475,41048,'_fft_page_sitemap','field_61af9b34e8181'),(225476,41048,'blocks_0_acfe_flexible_toggle',''),(225477,41048,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(225478,41048,'blocks_0_acfe_flexible_layout_title','Template'),(225479,41048,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(225480,41048,'blocks_0_template','39087'),(225481,41048,'_blocks_0_template','field_617bdd570fe01'),(225482,41048,'blocks_1_acfe_flexible_toggle',''),(225483,41048,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(225484,41048,'blocks_1_acfe_flexible_layout_title','Text Block'),(225485,41048,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(225486,41048,'blocks_1_options_theme','#ffffff'),(225487,41048,'_blocks_1_options_theme','field_6176830e2ad17'),(225488,41048,'blocks_1_options',''),(225489,41048,'_blocks_1_options','field_6176830e2ad16'),(225490,41048,'blocks_1_text_block_heading','Overview'),(225491,41048,'_blocks_1_text_block_heading','field_617669d413097'),(225492,41048,'blocks_1_text_block_content','In this enlightening webinar, we embark on a journey to demystify the concept of \'functional training,\' a term that has firmly entrenched itself in the fitness industry. Gray Cook, the creator of the Functional Movement Screen (FMS), rightly points out, \"Everyone has a different definition of function.\" So, what exactly is functional training, and why has it become a ubiquitous aspect of fitness culture?\r\n\r\nOur expert, Biomechanics Coach Rachel Thomson (Biomechanics Education), delves into the scientific foundations, insights from global leaders, and the potential need for a paradigm shift to truly understand functional training. Rather than accepting it as a universal norm, let\'s explore the multifaceted aspects of this training methodology.'),(225493,41048,'_blocks_1_text_block_content','field_617669ec13098'),(225494,41048,'blocks_2_acfe_flexible_toggle',''),(225495,41048,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(225496,41048,'blocks_2_acfe_flexible_layout_title','Button(s)'),(225497,41048,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(225498,41048,'blocks_2_options_theme','#ffffff'),(225499,41048,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(225500,41048,'blocks_2_options',''),(225501,41048,'_blocks_2_options','field_623b03edb6e65'),(225502,41048,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(225503,41048,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(225504,41048,'blocks_2_actions','1'),(225505,41048,'_blocks_2_actions','field_623b03edb6e6e'),(225506,41048,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:7:\"buttons\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:10:\"accordions\";}'),(225507,41048,'_blocks','field_6176696113096'),(225508,41048,'course_label_text','What the hell is Functional Training anyway?'),(225509,41048,'_course_label_text','field_61e17babf71fa'),(225510,41048,'course_label',''),(225511,41048,'_course_label','field_61e12f92749a7'),(225512,41048,'course_description','In this enlightening webinar, we embark on a journey to demystify the concept of \'functional training,\' a term that has firmly entrenched itself in the fitness industry.'),(225513,41048,'_course_description','field_617ac5788e5e1'),(225514,41048,'course_key_info','3'),(225515,41048,'_course_key_info','field_617ac6ad8e5e2'),(225516,41048,'course_included','Diverse Definitions of Functional Training\r\n\r\nEvaluating the Current Paradigm\r\n\r\nRevolutionising Client Preparation\r\n\r\nMeeting Evolving Client Expectations\r\n\r\nExpanding Trainer Skills Amidst Changing Expectations\r\n\r\nNavigating the Shifting Fitness Landscape\r\n\r\nPreparing for Future Challenges'),(225517,41048,'_course_included','field_617ac6f08e5e4'),(225518,41048,'blocks_3_acfe_flexible_toggle',''),(225519,41048,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(225520,41048,'blocks_3_acfe_flexible_layout_title','Timeline'),(225521,41048,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(225522,41048,'blocks_3_options_theme','#ffffff'),(225523,41048,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(225524,41048,'blocks_3_options',''),(225525,41048,'_blocks_3_options','field_6177de53d1195'),(225526,41048,'blocks_3_timeline_content_title',''),(225527,41048,'_blocks_3_timeline_content_title','field_6177de53d1198'),(225528,41048,'blocks_3_timeline_content_heading','Key webinar highlights'),(225529,41048,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(225530,41048,'blocks_3_timeline_content_text','This recorded webinar provides valuable insights for fitness professionals looking to enhance their understanding of functional training and adapt to the evolving needs of their clients. Access the recording by adding this product to your basket and stay ahead in the dynamic world of fitness.'),(225531,41048,'_blocks_3_timeline_content_text','field_6177de53d119a'),(225532,41048,'blocks_3_timeline_content_actions',''),(225533,41048,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(225534,41048,'blocks_3_timeline_content',''),(225535,41048,'_blocks_3_timeline_content','field_6177de53d1197'),(225536,41048,'blocks_3_timeline_items_0_title','Diverse Definitions of Functional Training'),(225537,41048,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(225538,41048,'blocks_3_timeline_items_0_text','Examine the various interpretations of functional training, recognising the multitude of perspectives within the fitness community. '),(225539,41048,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(225540,41048,'blocks_3_timeline_items_1_title','Evaluating the Current Paradigm'),(225541,41048,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(225542,41048,'blocks_3_timeline_items_1_text','Understand the strengths and weaknesses inherent in the existing functional training concept, prompting a critical evaluation of its present paradigm. '),(225543,41048,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(225544,41048,'blocks_3_timeline_items_2_title','Revolutionising Client Preparation'),(225545,41048,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(225546,41048,'blocks_3_timeline_items_2_text','Explore innovative approaches to preparing clients for exercise, focusing on mitigating the risk of injury and promoting a holistic training experience. '),(225547,41048,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(225548,41048,'blocks_3_timeline_items_3_title','Meeting Evolving Client Expectations'),(225549,41048,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(225550,41048,'blocks_3_timeline_items_3_text','Recognize the evolving needs of personal training clients, shaped by a more educated and health-conscious consumer base. Discover how personal trainers can adapt to address issues beyond traditional fitness goals. '),(225551,41048,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(225552,41048,'blocks_3_timeline_items_4_title','Expanding Trainer Skills Amidst Changing Expectations'),(225553,41048,'_blocks_3_timeline_items_4_title','field_6177de53d119f'),(225554,41048,'blocks_3_timeline_items_4_text','Acknowledge the expanded role of personal trainers, who are now sought after for advice on various ailments and issues. Gain insights into the changing landscape of health clubs, transforming into comprehensive health and wellness facilities. '),(225555,41048,'_blocks_3_timeline_items_4_text','field_6177de53d11a0'),(225556,41048,'blocks_3_timeline_items_5_title','Navigating the Shifting Fitness Landscape'),(225557,41048,'_blocks_3_timeline_items_5_title','field_6177de53d119f'),(225558,41048,'blocks_3_timeline_items_5_text','Discuss the transformative impact of client expectations on the fitness industry, where health clubs are repositioned as holistic wellness facilities. Understand the nuanced health status of members between illness and wellness. '),(225559,41048,'_blocks_3_timeline_items_5_text','field_6177de53d11a0'),(225560,41048,'blocks_3_timeline_items_6_title','Preparing for Future Challenges'),(225561,41048,'_blocks_3_timeline_items_6_title','field_6177de53d119f'),(225562,41048,'blocks_3_timeline_items_6_text','Anticipate the increasing demand for personal trainers as individuals seek fitness guidance for minor issues. Explore the role of new screening methods, such as biomechanical and functional screening, in maintaining professional identity while avoiding the pitfalls of pseudo-therapy. '),(225563,41048,'_blocks_3_timeline_items_6_text','field_6177de53d11a0'),(225564,41048,'blocks_3_timeline_items','7'),(225565,41048,'_blocks_3_timeline_items','field_6177de53d119d'),(225566,41048,'blocks_4_acfe_flexible_toggle',''),(225567,41048,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(225568,41048,'blocks_4_acfe_flexible_layout_title','Text Block'),(225569,41048,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(225570,41048,'blocks_4_options_theme','#f5f5f5'),(225571,41048,'_blocks_4_options_theme','field_6176830e2ad17'),(225572,41048,'blocks_4_options',''),(225573,41048,'_blocks_4_options','field_6176830e2ad16'),(225574,41048,'blocks_4_text_block_heading','Related Courses'),(225575,41048,'_blocks_4_text_block_heading','field_617669d413097'),(225576,41048,'blocks_4_text_block_content','Check out our other commonly purchased CPD courses'),(225577,41048,'_blocks_4_text_block_content','field_617669ec13098'),(225578,41048,'blocks_6_acfe_flexible_toggle',''),(225579,41048,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(225580,41048,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(225581,41048,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(225582,41048,'blocks_6_options_theme','#ffffff'),(225583,41048,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(225584,41048,'blocks_6_options_state','0'),(225585,41048,'_blocks_6_options_state','field_6239fcb7508c5'),(225586,41048,'blocks_6_options',''),(225587,41048,'_blocks_6_options','field_6177e2991ac44'),(225588,41048,'blocks_6_content_title',''),(225589,41048,'_blocks_6_content_title','field_64d237e8bb1e2'),(225590,41048,'blocks_6_content_heading',''),(225591,41048,'_blocks_6_content_heading','field_64d237e8bb1e3'),(225592,41048,'blocks_6_content_text',''),(225593,41048,'_blocks_6_content_text','field_64d237e8bb1e4'),(225594,41048,'blocks_6_content_actions',''),(225595,41048,'_blocks_6_content_actions','field_64d237e8bb1e5'),(225596,41048,'blocks_6_content_align','left'),(225597,41048,'_blocks_6_content_align','field_64d2443e6b6aa'),(225598,41048,'blocks_6_content',''),(225599,41048,'_blocks_6_content','field_64d237e8bb1e1'),(225600,41048,'blocks_6_accordion_content','custom'),(225601,41048,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(225602,41048,'blocks_6_accordion_items',''),(225603,41048,'_blocks_6_accordion_items','field_6177e2991ac4c'),(225604,41048,'blocks_6_actions',''),(225605,41048,'_blocks_6_actions','field_61a746a817f7a'),(225606,41048,'blocks_5_acfe_flexible_toggle',''),(225607,41048,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(225608,41048,'blocks_5_acfe_flexible_layout_title','Cards'),(225609,41048,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(225610,41048,'blocks_5_options_theme','#ffffff'),(225611,41048,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(225612,41048,'blocks_5_options_format','carousel'),(225613,41048,'_blocks_5_options_format','field_617a7b15245b5'),(225614,41048,'blocks_5_options_style','default'),(225615,41048,'_blocks_5_options_style','field_6278ffb63484a'),(225616,41048,'blocks_5_options_cards_current_listing','0'),(225617,41048,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(225618,41048,'blocks_5_options_cards_content','post_type'),(225619,41048,'_blocks_5_options_cards_content','field_617aba6122688'),(225620,41048,'blocks_5_options_cards_post_type','course'),(225621,41048,'_blocks_5_options_cards_post_type','field_6194cc744d38b'),(225622,41048,'blocks_5_options_cards_posts_per_page','6'),(225623,41048,'_blocks_5_options_cards_posts_per_page','field_61a7565b1a0f2'),(225624,41048,'blocks_5_options',''),(225625,41048,'_blocks_5_options','field_617a7b15245b3'),(225626,41048,'course_label_label_theme','#0d1f73'),(225627,41048,'_course_label_label_theme','field_61e17bb8f71fb'),(225628,41048,'course_key_info_0_text','Online Learning'),(225629,41048,'_course_key_info_0_text','field_617ac6c38e5e3'),(225630,41048,'course_key_info_1_text','CPD'),(225631,41048,'_course_key_info_1_text','field_617ac6c38e5e3'),(225632,41048,'course_key_info_2_text','Webinar'),(225633,41048,'_course_key_info_2_text','field_617ac6c38e5e3'),(225634,40270,'blocks_9_open_whats_included','1'),(225635,40270,'_blocks_9_open_whats_included','field_66ebfd679450c'),(225636,40270,'blocks_9_open_key_information','0'),(225637,40270,'_blocks_9_open_key_information','field_66ebfd7f9450d'),(225638,40270,'blocks_9_open',''),(225639,40270,'_blocks_9_open','field_66ebfd009450b'),(225640,41049,'hide_hero','0'),(225641,41049,'_hide_hero','field_66a2380fcda39'),(225642,41049,'hero_title','Building Your Fitness Business'),(225643,41049,'_hero_title','field_617571fe285e8'),(225644,41049,'hero_text','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(225645,41049,'_hero_text','field_6175723c285e9'),(225646,41049,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(225647,41049,'_hero_actions_0_button','field_61757281285eb'),(225648,41049,'hero_actions','1'),(225649,41049,'_hero_actions','field_61757270285ea'),(225650,41049,'hero_style','default'),(225651,41049,'_hero_style','field_62051d9dc5324'),(225652,41049,'_thumbnail_id','40576'),(225653,41049,'__thumbnail_id','field_617570855ddaf'),(225654,41049,'hero_image_pos_x','right'),(225655,41049,'_hero_image_pos_x','field_62ec3d05390bb'),(225656,41049,'hero_image_pos_y','top'),(225657,41049,'_hero_image_pos_y','field_62ec3d05390bc'),(225658,41049,'hero_image_pos',''),(225659,41049,'_hero_image_pos','field_62ec3d05390ba'),(225660,41049,'fft_hide_from_listings','0'),(225661,41049,'_fft_hide_from_listings','field_61f1320446ab2'),(225662,41049,'fft_page_format','default'),(225663,41049,'_fft_page_format','field_61ae213f1f218'),(225664,41049,'fft_hide_nav','0'),(225665,41049,'_fft_hide_nav','field_635bd5e43527c'),(225666,41049,'fft_hide_header_call_to_action','0'),(225667,41049,'_fft_hide_header_call_to_action','field_635bd6723527d'),(225668,41049,'fft_page_sitemap','0'),(225669,41049,'_fft_page_sitemap','field_61af9b34e8181'),(225670,41049,'blocks_0_acfe_flexible_toggle',''),(225671,41049,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(225672,41049,'blocks_0_acfe_flexible_layout_title','Template'),(225673,41049,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(225674,41049,'blocks_0_template','39087'),(225675,41049,'_blocks_0_template','field_617bdd570fe01'),(225676,41049,'blocks_1_acfe_flexible_toggle',''),(225677,41049,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(225678,41049,'blocks_1_acfe_flexible_layout_title','Text Block'),(225679,41049,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(225680,41049,'blocks_1_options_theme','#ffffff'),(225681,41049,'_blocks_1_options_theme','field_6176830e2ad17'),(225682,41049,'blocks_1_options',''),(225683,41049,'_blocks_1_options','field_6176830e2ad16'),(225684,41049,'blocks_1_text_block_heading','Benefits of training with us'),(225685,41049,'_blocks_1_text_block_heading','field_617669d413097'),(225686,41049,'blocks_1_text_block_content','Train with Biomechanics Education, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own knowledge and learn how to Build your Fitness Business.'),(225687,41049,'_blocks_1_text_block_content','field_617669ec13098'),(225688,41049,'blocks_2_acfe_flexible_toggle',''),(225689,41049,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(225690,41049,'blocks_2_acfe_flexible_layout_title','Logos'),(225691,41049,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(225692,41049,'blocks_2_options_theme','#ffffff'),(225693,41049,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(225694,41049,'blocks_2_options_format','grid'),(225695,41049,'_blocks_2_options_format','field_61782964ee971'),(225696,41049,'blocks_2_options',''),(225697,41049,'_blocks_2_options','field_61782954ee965'),(225698,41049,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(225699,41049,'_blocks_2_logos','field_61782954ee96d'),(225700,41049,'blocks_2_title',''),(225701,41049,'_blocks_2_title','field_668fbfdc2daa1'),(225702,41049,'blocks_3_acfe_flexible_toggle',''),(225703,41049,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(225704,41049,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(225705,41049,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(225706,41049,'blocks_3_options_theme','#f5f5f5'),(225707,41049,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(225708,41049,'blocks_3_options_reverse','0'),(225709,41049,'_blocks_3_options_reverse','field_61768049bb8ac'),(225710,41049,'blocks_3_options',''),(225711,41049,'_blocks_3_options','field_617682517c334'),(225712,41049,'blocks_3_split_5050_image','40577'),(225713,41049,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(225714,41049,'blocks_3_split_5050_video',''),(225715,41049,'_blocks_3_split_5050_video','field_6239f3160848a'),(225716,41049,'blocks_3_split_5050_content_title',''),(225717,41049,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(225718,41049,'blocks_3_split_5050_content_heading','Course Overview'),(225719,41049,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(225720,41049,'blocks_3_split_5050_content_text','In order to become a successful fitness professional you not only need knowledge and skills relating to exercise, nutrition and behaviour change, but also business and marketing. No matter how knowledgeable and competent you are, you are unlikely to be successful if potential clients are unaware of your business or the services you offer.\r\n\r\nWhether you are a Personal Trainer, Group Exercise Instructor or Pilates Instructor, this course will provide you with the skills and knowledge you need to build a business and market yourself to be successful.\r\n\r\nIt applies the established principles of not only sales and marketing but also other vital elements of building a business – such as tax, social media, branding and business planning – to help you confidently and efficiently build a profitable fitness business. The format is a step-by-step process with templates, tasks and activities to guide you through each element of setting up and running a business.'),(225721,41049,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(225722,41049,'blocks_3_split_5050_content_actions',''),(225723,41049,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(225724,41049,'blocks_3_split_5050_content',''),(225725,41049,'_blocks_3_split_5050_content','field_61767afceb8ba'),(225726,41049,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:13:\"step_timeline\";i:7;s:8:\"template\";i:8;s:10:\"text_block\";i:9;s:14:\"course_compare\";i:10;s:10:\"accordions\";}'),(225727,41049,'_blocks','field_6176696113096'),(225728,41049,'course_label_text','Building Your Fitness Business'),(225729,41049,'_course_label_text','field_61e17babf71fa'),(225730,41049,'course_label',''),(225731,41049,'_course_label','field_61e12f92749a7'),(225732,41049,'course_description','Learn Invaluable Business Skills for Personal Trainers with a CPD Accreditation. This is an online e-learning course that is endorsed by CIMSPA. '),(225733,41049,'_course_description','field_617ac5788e5e1'),(225734,41049,'course_key_info','3'),(225735,41049,'_course_key_info','field_617ac6ad8e5e2'),(225736,41049,'course_included','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(225737,41049,'_course_included','field_617ac6f08e5e4'),(225738,41049,'blocks_4_acfe_flexible_toggle',''),(225739,41049,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(225740,41049,'blocks_4_acfe_flexible_layout_title','Text Block'),(225741,41049,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(225742,41049,'blocks_4_options_theme','#ffffff'),(225743,41049,'_blocks_4_options_theme','field_6176830e2ad17'),(225744,41049,'blocks_4_options',''),(225745,41049,'_blocks_4_options','field_6176830e2ad16'),(225746,41049,'blocks_4_text_block_heading','Learn more about this course'),(225747,41049,'_blocks_4_text_block_heading','field_617669d413097'),(225748,41049,'blocks_4_text_block_content','This highly engaging course will enable you to leap from being a qualified personal trainer to a successful fitness professional with a profitable business as a real entrepreneur. Learn how to use promotional tools to your advantage and gain and retain clients using effective sales techniques, as well as advice on key business administration regarding tax and data protection requirements.'),(225749,41049,'_blocks_4_text_block_content','field_617669ec13098'),(225750,41049,'blocks_5_acfe_flexible_toggle',''),(225751,41049,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(225752,41049,'blocks_5_acfe_flexible_layout_title','Tabs'),(225753,41049,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(225754,41049,'blocks_5_options_theme','#ffffff'),(225755,41049,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(225756,41049,'blocks_5_options',''),(225757,41049,'_blocks_5_options','field_6177cfcd8140f'),(225758,41049,'blocks_5_tabs_0_tab_label','E-learning '),(225759,41049,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(225760,41049,'blocks_5_tabs_0_tab_content_title',''),(225761,41049,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(225762,41049,'blocks_5_tabs_0_tab_content_heading',''),(225763,41049,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(225764,41049,'blocks_5_tabs_0_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(225765,41049,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(225766,41049,'blocks_5_tabs_0_tab_content_actions','1'),(225767,41049,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(225768,41049,'blocks_5_tabs_0_tab_content',''),(225769,41049,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(225770,41049,'blocks_5_tabs_0_tab_image',''),(225771,41049,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(225772,41049,'blocks_5_tabs_1_tab_label','Content '),(225773,41049,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(225774,41049,'blocks_5_tabs_1_tab_content_title',''),(225775,41049,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(225776,41049,'blocks_5_tabs_1_tab_content_heading',''),(225777,41049,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(225778,41049,'blocks_5_tabs_1_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(225779,41049,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(225780,41049,'blocks_5_tabs_1_tab_content_actions','1'),(225781,41049,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(225782,41049,'blocks_5_tabs_1_tab_content',''),(225783,41049,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(225784,41049,'blocks_5_tabs_1_tab_image',''),(225785,41049,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(225786,41049,'blocks_5_tabs_2_tab_label','Assessment '),(225787,41049,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(225788,41049,'blocks_5_tabs_2_tab_content_title',''),(225789,41049,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(225790,41049,'blocks_5_tabs_2_tab_content_heading',''),(225791,41049,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(225792,41049,'blocks_5_tabs_2_tab_content_text','There is no assessment for this course.'),(225793,41049,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(225794,41049,'blocks_5_tabs_2_tab_content_actions','1'),(225795,41049,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(225796,41049,'blocks_5_tabs_2_tab_content',''),(225797,41049,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(225798,41049,'blocks_5_tabs_2_tab_image',''),(225799,41049,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(225800,41049,'blocks_5_tabs','4'),(225801,41049,'_blocks_5_tabs','field_6177cff281419'),(225802,41049,'blocks_6_acfe_flexible_toggle',''),(225803,41049,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(225804,41049,'blocks_6_acfe_flexible_layout_title','Timeline'),(225805,41049,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(225806,41049,'blocks_6_options_theme','#f5f5f5'),(225807,41049,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(225808,41049,'blocks_6_options',''),(225809,41049,'_blocks_6_options','field_6177de53d1195'),(225810,41049,'blocks_6_timeline_content_title',''),(225811,41049,'_blocks_6_timeline_content_title','field_6177de53d1198'),(225812,41049,'blocks_6_timeline_content_heading','Course details'),(225813,41049,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(225814,41049,'blocks_6_timeline_content_text',''),(225815,41049,'_blocks_6_timeline_content_text','field_6177de53d119a'),(225816,41049,'blocks_6_timeline_content_actions',''),(225817,41049,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(225818,41049,'blocks_6_timeline_content',''),(225819,41049,'_blocks_6_timeline_content','field_6177de53d1197'),(225820,41049,'blocks_6_timeline_items_0_title','First Steps '),(225821,41049,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(225822,41049,'blocks_6_timeline_items_0_text','This first section is all about defining the types of people you want to work with – your ideal client. Doing this provides the context for all the other decisions you make as part of your business. '),(225823,41049,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(225824,41049,'blocks_6_timeline_items_1_title','Business Set Up '),(225825,41049,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(225826,41049,'blocks_6_timeline_items_1_text','This section covers the administrative side of your business, including the legal structure, financial management and GDPR. '),(225827,41049,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(225828,41049,'blocks_6_timeline_items_2_title','Business Planning '),(225829,41049,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(225830,41049,'blocks_6_timeline_items_2_text','In this section, we look at how to do a SWOT and PEST analysis, as well as market research to provide the information you need to plan your business and for product development. '),(225831,41049,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(225832,41049,'blocks_6_timeline_items_3_title','Product Development '),(225833,41049,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(225834,41049,'blocks_6_timeline_items_3_text','One of the most critical stages in the process is product development. Personal training is not a tangible ‘thing’ like cars, shoes or food, so in this section, you’ll learn how to put together packages and services that clients understand and are attracted to. '),(225835,41049,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(225836,41049,'blocks_6_timeline_items_4_title','Marketing '),(225837,41049,'_blocks_6_timeline_items_4_title','field_6177de53d119f'),(225838,41049,'blocks_6_timeline_items_4_text','In this section, you’ll learn about the marketing funnel, as well as offline and online marketing approaches, with specific techniques you can use immediately '),(225839,41049,'_blocks_6_timeline_items_4_text','field_6177de53d11a0'),(225840,41049,'blocks_6_timeline_items_5_title','Sales '),(225841,41049,'_blocks_6_timeline_items_5_title','field_6177de53d119f'),(225842,41049,'blocks_6_timeline_items_5_text','Sales skills are crucial to success as a personal trainer. This section covers the ‘principles of persuasion’ as well as strategies to handle common objections from potential clients. '),(225843,41049,'_blocks_6_timeline_items_5_text','field_6177de53d11a0'),(225844,41049,'blocks_6_timeline_items_6_title','Running Your Business '),(225845,41049,'_blocks_6_timeline_items_6_title','field_6177de53d119f'),(225846,41049,'blocks_6_timeline_items_6_text','As your client base expands you need to develop systems and processes to enable things to run smoothly and for your business to grow in a sustainable way. This final section provides the resources to help you do that.  '),(225847,41049,'_blocks_6_timeline_items_6_text','field_6177de53d11a0'),(225848,41049,'blocks_6_timeline_items','7'),(225849,41049,'_blocks_6_timeline_items','field_6177de53d119d'),(225850,41049,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(225851,41049,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(225852,41049,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(225853,41049,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(225854,41049,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(225855,41049,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(225856,41049,'blocks_5_tabs_3_tab_label','Entry requirements'),(225857,41049,'_blocks_5_tabs_3_tab_label','field_6177d0068141a'),(225858,41049,'blocks_5_tabs_3_tab_content_title',''),(225859,41049,'_blocks_5_tabs_3_tab_content_title','field_6177cfcd81414'),(225860,41049,'blocks_5_tabs_3_tab_content_heading','To do this course, you will need'),(225861,41049,'_blocks_5_tabs_3_tab_content_heading','field_6177cfcd81415'),(225862,41049,'blocks_5_tabs_3_tab_content_text','<ul>\r\n 	<li>There are no entry requirements for this course.</li>\r\n 	<li>If you are completing this course as part of your overall qualification, we recommend that you complete our Nutrition and Weight Management course before starting this course.</li>\r\n</ul>'),(225863,41049,'_blocks_5_tabs_3_tab_content_text','field_6177cfcd81416'),(225864,41049,'blocks_5_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(225865,41049,'_blocks_5_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(225866,41049,'blocks_5_tabs_3_tab_content_actions','1'),(225867,41049,'_blocks_5_tabs_3_tab_content_actions','field_6177cfcd81417'),(225868,41049,'blocks_5_tabs_3_tab_content',''),(225869,41049,'_blocks_5_tabs_3_tab_content','field_6177cfcd81413'),(225870,41049,'blocks_5_tabs_3_tab_image',''),(225871,41049,'_blocks_5_tabs_3_tab_image','field_6177cfcd81412'),(225872,41049,'blocks_7_acfe_flexible_toggle',''),(225873,41049,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(225874,41049,'blocks_7_acfe_flexible_layout_title','Template'),(225875,41049,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(225876,41049,'blocks_7_template','39401'),(225877,41049,'_blocks_7_template','field_617bdd570fe01'),(225878,41049,'blocks_8_acfe_flexible_toggle',''),(225879,41049,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(225880,41049,'blocks_8_acfe_flexible_layout_title','Text Block'),(225881,41049,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(225882,41049,'blocks_8_options_theme','#b61234'),(225883,41049,'_blocks_8_options_theme','field_6176830e2ad17'),(225884,41049,'blocks_8_options',''),(225885,41049,'_blocks_8_options','field_6176830e2ad16'),(225886,41049,'blocks_8_text_block_heading','Frequently Bought Together'),(225887,41049,'_blocks_8_text_block_heading','field_617669d413097'),(225888,41049,'blocks_8_text_block_content','Check out some other courses that are frequently purchased with this one.'),(225889,41049,'_blocks_8_text_block_content','field_617669ec13098'),(225890,41049,'blocks_9_acfe_flexible_toggle',''),(225891,41049,'_blocks_9_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(225892,41049,'blocks_9_acfe_flexible_layout_title','Course Comparison'),(225893,41049,'_blocks_9_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(225894,41049,'blocks_9_options_theme','#b61234'),(225895,41049,'_blocks_9_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(225896,41049,'blocks_9_options',''),(225897,41049,'_blocks_9_options','field_617ac0b7f6c08'),(225898,41049,'blocks_9_show','selection'),(225899,41049,'_blocks_9_show','field_61a49cba9d946'),(225900,41049,'blocks_9_category','403'),(225901,41049,'_blocks_9_category','field_61a49cd79d947'),(225902,41049,'blocks_10_acfe_flexible_toggle',''),(225903,41049,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(225904,41049,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(225905,41049,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(225906,41049,'blocks_10_options_theme','#f5f5f5'),(225907,41049,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(225908,41049,'blocks_10_options_state','0'),(225909,41049,'_blocks_10_options_state','field_6239fcb7508c5'),(225910,41049,'blocks_10_options',''),(225911,41049,'_blocks_10_options','field_6177e2991ac44'),(225912,41049,'blocks_10_content_title',''),(225913,41049,'_blocks_10_content_title','field_64d237e8bb1e2'),(225914,41049,'blocks_10_content_heading','FAQ\'s'),(225915,41049,'_blocks_10_content_heading','field_64d237e8bb1e3'),(225916,41049,'blocks_10_content_text','Check out our FAQ\'s to further your understanding of this course and help you make a decision that\'s best for you.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today:<a href=\"tel:01329 829444\"> 01329 829444</a>'),(225917,41049,'_blocks_10_content_text','field_64d237e8bb1e4'),(225918,41049,'blocks_10_content_actions',''),(225919,41049,'_blocks_10_content_actions','field_64d237e8bb1e5'),(225920,41049,'blocks_10_content_align','left'),(225921,41049,'_blocks_10_content_align','field_64d2443e6b6aa'),(225922,41049,'blocks_10_content',''),(225923,41049,'_blocks_10_content','field_64d237e8bb1e1'),(225924,41049,'blocks_10_accordion_content','faqs'),(225925,41049,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(225926,41049,'blocks_10_accordion_faqs_select','a:5:{i:0;s:5:\"39403\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(225927,41049,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(225928,41049,'blocks_10_actions',''),(225929,41049,'_blocks_10_actions','field_61a746a817f7a'),(225930,41049,'blocks_9_courses','a:1:{i:0;s:5:\"40263\";}'),(225931,41049,'_blocks_9_courses','field_61b244781ee0a'),(225932,41049,'course_label_label_theme','#0d1f73'),(225933,41049,'_course_label_label_theme','field_61e17bb8f71fb'),(225934,41049,'course_key_info_0_text','Online CPD'),(225935,41049,'_course_key_info_0_text','field_617ac6c38e5e3'),(225936,41049,'course_key_info_1_text','CIMSPA Endorsed'),(225937,41049,'_course_key_info_1_text','field_617ac6c38e5e3'),(225938,41049,'course_key_info_2_text','No Entry Requirements'),(225939,41049,'_course_key_info_2_text','field_617ac6c38e5e3'),(225940,41049,'blocks_9_open_whats_included','1'),(225941,41049,'_blocks_9_open_whats_included','field_66ebfd679450c'),(225942,41049,'blocks_9_open_key_information','0'),(225943,41049,'_blocks_9_open_key_information','field_66ebfd7f9450d'),(225944,41049,'blocks_9_open',''),(225945,41049,'_blocks_9_open','field_66ebfd009450b'),(225946,40271,'_thumbnail_id',''),(225947,40271,'blocks_11_open_whats_included','1'),(225948,40271,'_blocks_11_open_whats_included','field_66ebfd679450c'),(225949,40271,'blocks_11_open_key_information','0'),(225950,40271,'_blocks_11_open_key_information','field_66ebfd7f9450d'),(225951,40271,'blocks_11_open',''),(225952,40271,'_blocks_11_open','field_66ebfd009450b'),(225953,41050,'hide_hero','0'),(225954,41050,'_hide_hero','field_66a2380fcda39'),(225955,41050,'hero_title','Coaching Fitness Online'),(225956,41050,'_hero_title','field_617571fe285e8'),(225957,41050,'hero_text','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(225958,41050,'_hero_text','field_6175723c285e9'),(225959,41050,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(225960,41050,'_hero_actions_0_button','field_61757281285eb'),(225961,41050,'hero_actions','1'),(225962,41050,'_hero_actions','field_61757270285ea'),(225963,41050,'hero_style','default'),(225964,41050,'_hero_style','field_62051d9dc5324'),(225965,41050,'hero_image_pos_x','right'),(225966,41050,'_hero_image_pos_x','field_62ec3d05390bb'),(225967,41050,'hero_image_pos_y','top'),(225968,41050,'_hero_image_pos_y','field_62ec3d05390bc'),(225969,41050,'hero_image_pos',''),(225970,41050,'_hero_image_pos','field_62ec3d05390ba'),(225971,41050,'fft_hide_from_listings','0'),(225972,41050,'_fft_hide_from_listings','field_61f1320446ab2'),(225973,41050,'fft_page_format','default'),(225974,41050,'_fft_page_format','field_61ae213f1f218'),(225975,41050,'fft_hide_nav','0'),(225976,41050,'_fft_hide_nav','field_635bd5e43527c'),(225977,41050,'fft_hide_header_call_to_action','0'),(225978,41050,'_fft_hide_header_call_to_action','field_635bd6723527d'),(225979,41050,'fft_page_sitemap','0'),(225980,41050,'_fft_page_sitemap','field_61af9b34e8181'),(225981,41050,'blocks_0_acfe_flexible_toggle',''),(225982,41050,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(225983,41050,'blocks_0_acfe_flexible_layout_title','Template'),(225984,41050,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(225985,41050,'blocks_0_template','39087'),(225986,41050,'_blocks_0_template','field_617bdd570fe01'),(225987,41050,'blocks_1_acfe_flexible_toggle',''),(225988,41050,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(225989,41050,'blocks_1_acfe_flexible_layout_title','Text Block'),(225990,41050,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(225991,41050,'blocks_1_options_theme','#f5f5f5'),(225992,41050,'_blocks_1_options_theme','field_6176830e2ad17'),(225993,41050,'blocks_1_options',''),(225994,41050,'_blocks_1_options','field_6176830e2ad16'),(225995,41050,'blocks_1_text_block_heading','Course Overview'),(225996,41050,'_blocks_1_text_block_heading','field_617669d413097'),(225997,41050,'blocks_1_text_block_content','Developed by PT Master Trainer, Mark Laws and in partnership with My PT Hub this course is an in-depth and essential look at how to effectively deliver a variety of fitness coaching and personal training online. Covering essential skills from Marketing and Sales, to delivery techniques, legalities, equipment and assessments, this course will equip any fitness professional with the knowledge and tools to successfully launch some, or all, of their business online.'),(225998,41050,'_blocks_1_text_block_content','field_617669ec13098'),(225999,41050,'blocks_2_acfe_flexible_toggle',''),(226000,41050,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(226001,41050,'blocks_2_acfe_flexible_layout_title','Logos'),(226002,41050,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(226003,41050,'blocks_2_options_theme','#ffffff'),(226004,41050,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(226005,41050,'blocks_2_options_format','grid'),(226006,41050,'_blocks_2_options_format','field_61782964ee971'),(226007,41050,'blocks_2_options',''),(226008,41050,'_blocks_2_options','field_61782954ee965'),(226009,41050,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(226010,41050,'_blocks_2_logos','field_61782954ee96d'),(226011,41050,'blocks_2_title',''),(226012,41050,'_blocks_2_title','field_668fbfdc2daa1'),(226013,41050,'blocks_3_acfe_flexible_toggle',''),(226014,41050,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(226015,41050,'blocks_3_acfe_flexible_layout_title','Timeline'),(226016,41050,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(226017,41050,'blocks_3_options_theme','#b61234'),(226018,41050,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(226019,41050,'blocks_3_options',''),(226020,41050,'_blocks_3_options','field_6177de53d1195'),(226021,41050,'blocks_3_timeline_content_title',''),(226022,41050,'_blocks_3_timeline_content_title','field_6177de53d1198'),(226023,41050,'blocks_3_timeline_content_heading','Course overview'),(226024,41050,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(226025,41050,'blocks_3_timeline_content_text','The Coaching Fitness Online Course has been produced in partnership with My PT Hub, the creators of the hugely successful app currently used by over 80,000 fitness professionals across the world.\r\n\r\nThroughout this course, you will have free access to a variety of accompanying material directly from My PT Hub, such as; downloadable PDFs, video tutorials, cases studies, and engaging podcasts, each designed perfectly to give you the tools to deliver your fitness coaching online.\r\n\r\nThis e-learning course has been developed to align to CIMSPA’s Delivering Sport and Physical Activity Online policy, with every detail created to support Personal Trainers in confidently taking their business, fully or partly, online. While many of us are geared up and ready to jump back into the gym, it has been forecasted that many fitness professionals and gym-goers alike will continue to operate online, meaning the demand for highly-trained online coaches is set to soar.'),(226026,41050,'_blocks_3_timeline_content_text','field_6177de53d119a'),(226027,41050,'blocks_3_timeline_content_actions',''),(226028,41050,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(226029,41050,'blocks_3_timeline_content',''),(226030,41050,'_blocks_3_timeline_content','field_6177de53d1197'),(226031,41050,'blocks_3_timeline_items_0_title','CIMSPA'),(226032,41050,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(226033,41050,'blocks_3_timeline_items_0_text','Aligned to CIMSPA\'s Delivering Sport and Physical Activity Online policy'),(226034,41050,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(226035,41050,'blocks_3_timeline_items_1_title','Course Type'),(226036,41050,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(226037,41050,'blocks_3_timeline_items_1_text','100% Online Learning'),(226038,41050,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(226039,41050,'blocks_3_timeline_items_2_title','CPD points'),(226040,41050,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(226041,41050,'blocks_3_timeline_items_2_text','7 CIMPSA CPD Points'),(226042,41050,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(226043,41050,'blocks_3_timeline_items_3_title','Learning'),(226044,41050,'_blocks_3_timeline_items_3_title','field_6177de53d119f'),(226045,41050,'blocks_3_timeline_items_3_text','5-7 Hours '),(226046,41050,'_blocks_3_timeline_items_3_text','field_6177de53d11a0'),(226047,41050,'blocks_3_timeline_items','4'),(226048,41050,'_blocks_3_timeline_items','field_6177de53d119d'),(226049,41050,'blocks','a:15:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:13:\"step_timeline\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"cards\";i:8;s:8:\"template\";i:9;s:10:\"text_block\";i:10;s:10:\"text_block\";i:11;s:14:\"course_compare\";i:12;s:18:\"testimonial_slider\";i:13;s:5:\"video\";i:14;s:13:\"step_timeline\";}'),(226050,41050,'_blocks','field_6176696113096'),(226051,41050,'course_label_text','Coaching Fitness Online'),(226052,41050,'_course_label_text','field_61e17babf71fa'),(226053,41050,'course_label',''),(226054,41050,'_course_label','field_61e12f92749a7'),(226055,41050,'course_description','Coaching Fitness Online covers every element that a fitness professional needs to successfully run all, or part of, their business online. '),(226056,41050,'_course_description','field_617ac5788e5e1'),(226057,41050,'course_key_info','3'),(226058,41050,'_course_key_info','field_617ac6ad8e5e2'),(226059,41050,'course_included','Marketing your business\r\nMarketing for new clients\r\nSales structure & management\r\nCoaching clients online\r\nLegalities of running a business\r\nEast – to- implement strategies\r\nInsurance help & guidance'),(226060,41050,'_course_included','field_617ac6f08e5e4'),(226061,41050,'blocks_4_acfe_flexible_toggle',''),(226062,41050,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(226063,41050,'blocks_4_acfe_flexible_layout_title','Text Block'),(226064,41050,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(226065,41050,'blocks_4_options_theme','#ffffff'),(226066,41050,'_blocks_4_options_theme','field_6176830e2ad17'),(226067,41050,'blocks_4_options',''),(226068,41050,'_blocks_4_options','field_6176830e2ad16'),(226069,41050,'blocks_4_text_block_heading','Learn more about this course'),(226070,41050,'_blocks_4_text_block_heading','field_617669d413097'),(226071,41050,'blocks_4_text_block_content','Understand how to start an online coaching fitness business by learning from the experts on essential marketing and business need to knows to successfully start your business online. This course is perfect for those looking to adapt their current approach as any coach, by learning how to manage clients online and make a business from doing this. This course will provide all the resources you need to start online coaching by providing you with help, advice and guidance on making this work for your clients.'),(226072,41050,'_blocks_4_text_block_content','field_617669ec13098'),(226073,41050,'blocks_5_acfe_flexible_toggle',''),(226074,41050,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(226075,41050,'blocks_5_acfe_flexible_layout_title','Tabs'),(226076,41050,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(226077,41050,'blocks_5_options_theme','#ffffff'),(226078,41050,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(226079,41050,'blocks_5_options',''),(226080,41050,'_blocks_5_options','field_6177cfcd8140f'),(226081,41050,'blocks_5_tabs_0_tab_label','What’s included'),(226082,41050,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(226083,41050,'blocks_5_tabs_0_tab_content_title',''),(226084,41050,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(226085,41050,'blocks_5_tabs_0_tab_content_heading',''),(226086,41050,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(226087,41050,'blocks_5_tabs_0_tab_content_text','This course will teach you vital skills in running your business online, by exploring marketing, legalisations, sales, online assessments, coaching and insurance. Prevent your services from being restricted by location as you get clients from several locations which will enhance your earning potential and even improve time efficiency in your client management.'),(226088,41050,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(226089,41050,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226090,41050,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(226091,41050,'blocks_5_tabs_0_tab_content_actions','1'),(226092,41050,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(226093,41050,'blocks_5_tabs_0_tab_content',''),(226094,41050,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(226095,41050,'blocks_5_tabs_0_tab_image',''),(226096,41050,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(226097,41050,'blocks_5_tabs_1_tab_label','Course details'),(226098,41050,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(226099,41050,'blocks_5_tabs_1_tab_content_title',''),(226100,41050,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(226101,41050,'blocks_5_tabs_1_tab_content_heading',''),(226102,41050,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(226103,41050,'blocks_5_tabs_1_tab_content_text','Developed by PT Master Trainer Mark Laws and in partnership with My PT Hub, a leading PT software business.\r\n<ul>\r\n 	<li>Marketing your business</li>\r\n 	<li>Marketing for new clients</li>\r\n 	<li>Sales structure &amp; management</li>\r\n 	<li>Coaching clients online</li>\r\n 	<li>Legalities of running a business</li>\r\n 	<li>East – to- implement strategies</li>\r\n 	<li>Insurance help &amp; guidance</li>\r\n</ul>'),(226104,41050,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(226105,41050,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226106,41050,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(226107,41050,'blocks_5_tabs_1_tab_content_actions','1'),(226108,41050,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(226109,41050,'blocks_5_tabs_1_tab_content',''),(226110,41050,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(226111,41050,'blocks_5_tabs_1_tab_image',''),(226112,41050,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(226113,41050,'blocks_5_tabs_2_tab_label','Entry requirements'),(226114,41050,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(226115,41050,'blocks_5_tabs_2_tab_content_title',''),(226116,41050,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(226117,41050,'blocks_5_tabs_2_tab_content_heading',''),(226118,41050,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(226119,41050,'blocks_5_tabs_2_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>There are no formal requirements for this course.</li>\r\n 	<li>However, we do recommend those studying this course are qualified instructors or personal trainers.</li>\r\n</ul>'),(226120,41050,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(226121,41050,'blocks_5_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226122,41050,'_blocks_5_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(226123,41050,'blocks_5_tabs_2_tab_content_actions','1'),(226124,41050,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(226125,41050,'blocks_5_tabs_2_tab_content',''),(226126,41050,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(226127,41050,'blocks_5_tabs_2_tab_image',''),(226128,41050,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(226129,41050,'blocks_5_tabs','3'),(226130,41050,'_blocks_5_tabs','field_6177cff281419'),(226131,41050,'blocks_6_acfe_flexible_toggle',''),(226132,41050,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(226133,41050,'blocks_6_acfe_flexible_layout_title','Text Block'),(226134,41050,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(226135,41050,'blocks_6_options_theme','#ffffff'),(226136,41050,'_blocks_6_options_theme','field_6176830e2ad17'),(226137,41050,'blocks_6_options',''),(226138,41050,'_blocks_6_options','field_6176830e2ad16'),(226139,41050,'blocks_6_text_block_heading','Blogs'),(226140,41050,'_blocks_6_text_block_heading','field_617669d413097'),(226141,41050,'blocks_6_text_block_content','Why not read some of our blogs on personal training, pilates, nutrition and health and well being before starting the course? We provide valuable business information in all areas to help cement your understanding. Read them here:'),(226142,41050,'_blocks_6_text_block_content','field_617669ec13098'),(226143,41050,'blocks_7_acfe_flexible_toggle',''),(226144,41050,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(226145,41050,'blocks_7_acfe_flexible_layout_title','Cards'),(226146,41050,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(226147,41050,'blocks_7_options_theme','#ffffff'),(226148,41050,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(226149,41050,'blocks_7_options_format','carousel'),(226150,41050,'_blocks_7_options_format','field_617a7b15245b5'),(226151,41050,'blocks_7_options_style','featured'),(226152,41050,'_blocks_7_options_style','field_6278ffb63484a'),(226153,41050,'blocks_7_options_cards_current_listing','0'),(226154,41050,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(226155,41050,'blocks_7_options_cards_content','term'),(226156,41050,'_blocks_7_options_cards_content','field_617aba6122688'),(226157,41050,'blocks_7_options_cards_term','5'),(226158,41050,'_blocks_7_options_cards_term','field_6193f7c180895'),(226159,41050,'blocks_7_options_cards_posts_per_page','6'),(226160,41050,'_blocks_7_options_cards_posts_per_page','field_61a7565b1a0f2'),(226161,41050,'blocks_7_options',''),(226162,41050,'_blocks_7_options','field_617a7b15245b3'),(226163,41050,'blocks_8_acfe_flexible_toggle',''),(226164,41050,'_blocks_8_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(226165,41050,'blocks_8_acfe_flexible_layout_title','Template'),(226166,41050,'_blocks_8_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(226167,41050,'blocks_8_template','39401'),(226168,41050,'_blocks_8_template','field_617bdd570fe01'),(226169,41050,'blocks_9_acfe_flexible_toggle',''),(226170,41050,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(226171,41050,'blocks_9_acfe_flexible_layout_title','Text Block'),(226172,41050,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(226173,41050,'blocks_9_options_theme','#f5f5f5'),(226174,41050,'_blocks_9_options_theme','field_6176830e2ad17'),(226175,41050,'blocks_9_options',''),(226176,41050,'_blocks_9_options','field_6176830e2ad16'),(226177,41050,'blocks_9_text_block_heading','Job Opportunities '),(226178,41050,'_blocks_9_text_block_heading','field_617669d413097'),(226179,41050,'blocks_9_text_block_content','As an online coaching fitness professional, you will be able to successfully deliver a Personal Training Business online with the skills and knowledge needed to lead effective sessions.\r\n<ul>\r\n 	<li>Work as a fully remote as an Online Personal Trainer.</li>\r\n 	<li>Split in gym PT sessions with Online PT sessions giving you more scope to be flexible with your time and the clients.</li>\r\n</ul>\r\nWhichever route you take, online coaching has become increasingly popular amongst clientele; being able to operate online creates a new audience and new opportunities.'),(226180,41050,'_blocks_9_text_block_content','field_617669ec13098'),(226181,41050,'blocks_10_acfe_flexible_toggle',''),(226182,41050,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(226183,41050,'blocks_10_acfe_flexible_layout_title','Text Block'),(226184,41050,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(226185,41050,'blocks_10_options_theme','#ffffff'),(226186,41050,'_blocks_10_options_theme','field_6176830e2ad17'),(226187,41050,'blocks_10_options',''),(226188,41050,'_blocks_10_options','field_6176830e2ad16'),(226189,41050,'blocks_10_text_block_heading','Frequently Bought Together'),(226190,41050,'_blocks_10_text_block_heading','field_617669d413097'),(226191,41050,'blocks_10_text_block_content','Check out other courses we offer that are frequently bought together'),(226192,41050,'_blocks_10_text_block_content','field_617669ec13098'),(226193,41050,'blocks_11_acfe_flexible_toggle',''),(226194,41050,'_blocks_11_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(226195,41050,'blocks_11_acfe_flexible_layout_title','Course Comparison'),(226196,41050,'_blocks_11_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(226197,41050,'blocks_11_options_theme','#ffffff'),(226198,41050,'_blocks_11_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(226199,41050,'blocks_11_options',''),(226200,41050,'_blocks_11_options','field_617ac0b7f6c08'),(226201,41050,'blocks_11_show','category'),(226202,41050,'_blocks_11_show','field_61a49cba9d946'),(226203,41050,'blocks_11_category','403'),(226204,41050,'_blocks_11_category','field_61a49cd79d947'),(226205,41050,'blocks_12_acfe_flexible_toggle',''),(226206,41050,'_blocks_12_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(226207,41050,'blocks_12_acfe_flexible_layout_title','Testimonial Slider'),(226208,41050,'_blocks_12_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(226209,41050,'blocks_12_testimonial_slider_content_title',''),(226210,41050,'_blocks_12_testimonial_slider_content_title','field_617c033b39a60'),(226211,41050,'blocks_12_testimonial_slider_content_heading','Testimonials'),(226212,41050,'_blocks_12_testimonial_slider_content_heading','field_617c033b39a61'),(226213,41050,'blocks_12_testimonial_slider_content_text','Read testimonials from people who have purchased this course before.'),(226214,41050,'_blocks_12_testimonial_slider_content_text','field_617c033b39a62'),(226215,41050,'blocks_12_testimonial_slider_content_actions',''),(226216,41050,'_blocks_12_testimonial_slider_content_actions','field_617c033b39a63'),(226217,41050,'blocks_12_testimonial_slider_content',''),(226218,41050,'_blocks_12_testimonial_slider_content','field_617c033b39a5f'),(226219,41050,'blocks_12_testimonial_slider_items',''),(226220,41050,'_blocks_12_testimonial_slider_items','field_61812eaeb20eb'),(226221,41050,'blocks_12_testimonial_slider_ambassador_bool','0'),(226222,41050,'_blocks_12_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(226223,41050,'blocks_13_acfe_flexible_toggle',''),(226224,41050,'_blocks_13_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(226225,41050,'blocks_13_acfe_flexible_layout_title','Video'),(226226,41050,'_blocks_13_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(226227,41050,'blocks_13_size','large'),(226228,41050,'_blocks_13_size','field_6487038f297c1'),(226229,41050,'blocks_13_row_content_title',''),(226230,41050,'_blocks_13_row_content_title','field_64870132a865d'),(226231,41050,'blocks_13_row_content_heading','Coaching Fitness Online '),(226232,41050,'_blocks_13_row_content_heading','field_64870142a865e'),(226233,41050,'blocks_13_row_content_text',''),(226234,41050,'_blocks_13_row_content_text','field_64870148a865f'),(226235,41050,'blocks_13_row_content',''),(226236,41050,'_blocks_13_row_content','field_6487008ba865c'),(226237,41050,'blocks_13_video_src','https://www.youtube.com/watch?v=whTK4-PJ_DA&t=1s'),(226238,41050,'_blocks_13_video_src','field_6193c4a98ec07'),(226239,41050,'blocks_13_video_thumbnail',''),(226240,41050,'_blocks_13_video_thumbnail','field_6193c4a08ec06'),(226241,41050,'blocks_14_acfe_flexible_toggle',''),(226242,41050,'_blocks_14_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(226243,41050,'blocks_14_acfe_flexible_layout_title','Timeline'),(226244,41050,'_blocks_14_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(226245,41050,'blocks_14_options_theme','#ffffff'),(226246,41050,'_blocks_14_options_theme','field_6177de53d1196_field_6176830e2ad17'),(226247,41050,'blocks_14_options',''),(226248,41050,'_blocks_14_options','field_6177de53d1195'),(226249,41050,'blocks_14_timeline_content_title',''),(226250,41050,'_blocks_14_timeline_content_title','field_6177de53d1198'),(226251,41050,'blocks_14_timeline_content_heading','Why should I study this course?'),(226252,41050,'_blocks_14_timeline_content_heading','field_6177de53d1199'),(226253,41050,'blocks_14_timeline_content_text',''),(226254,41050,'_blocks_14_timeline_content_text','field_6177de53d119a'),(226255,41050,'blocks_14_timeline_content_actions',''),(226256,41050,'_blocks_14_timeline_content_actions','field_6177de53d119b'),(226257,41050,'blocks_14_timeline_content',''),(226258,41050,'_blocks_14_timeline_content','field_6177de53d1197'),(226259,41050,'blocks_14_timeline_items_0_title','Keep up with demand '),(226260,41050,'_blocks_14_timeline_items_0_title','field_6177de53d119f'),(226261,41050,'blocks_14_timeline_items_0_text','The demand for online Personal Trainers and classes is at an all time high. You can be at the forefront of that offering! '),(226262,41050,'_blocks_14_timeline_items_0_text','field_6177de53d11a0'),(226263,41050,'blocks_14_timeline_items_1_title','Boost your client base '),(226264,41050,'_blocks_14_timeline_items_1_title','field_6177de53d119f'),(226265,41050,'blocks_14_timeline_items_1_text','When providing your training online you aren\'t restricted by location, so you can reach a wider audience in different areas and expand your client base beyond belief. '),(226266,41050,'_blocks_14_timeline_items_1_text','field_6177de53d11a0'),(226267,41050,'blocks_14_timeline_items_2_title','Open up new opportunities '),(226268,41050,'_blocks_14_timeline_items_2_title','field_6177de53d119f'),(226269,41050,'blocks_14_timeline_items_2_text','Having the flexibility to take your fitness business online will open the door to new opportunities, including new styles of training, being able to deliver even more and reach potential clients in a variety of locations. '),(226270,41050,'_blocks_14_timeline_items_2_text','field_6177de53d11a0'),(226271,41050,'blocks_14_timeline_items_3_title','Gain vital skills '),(226272,41050,'_blocks_14_timeline_items_3_title','field_6177de53d119f'),(226273,41050,'blocks_14_timeline_items_3_text','Covering the absolute vital fundamentals such as Marketing, Sales, Assessment, Coaching, Insurance, Legalities and more, you will be heads and shoulders above the rest whether you are offering your training face-to-face, online or a combination of the two! '),(226274,41050,'_blocks_14_timeline_items_3_text','field_6177de53d11a0'),(226275,41050,'blocks_14_timeline_items','4'),(226276,41050,'_blocks_14_timeline_items','field_6177de53d119d'),(226277,41050,'course_label_label_theme','#0d1f73'),(226278,41050,'_course_label_label_theme','field_61e17bb8f71fb'),(226279,41050,'course_key_info_0_text','No Entry Requirements'),(226280,41050,'_course_key_info_0_text','field_617ac6c38e5e3'),(226281,41050,'course_key_info_1_text','Online Learning'),(226282,41050,'_course_key_info_1_text','field_617ac6c38e5e3'),(226283,41050,'course_key_info_2_text','CPD'),(226284,41050,'_course_key_info_2_text','field_617ac6c38e5e3'),(226285,41050,'_thumbnail_id',''),(226286,41050,'__thumbnail_id','field_617570855ddaf'),(226287,41050,'blocks_11_open_whats_included','1'),(226288,41050,'_blocks_11_open_whats_included','field_66ebfd679450c'),(226289,41050,'blocks_11_open_key_information','0'),(226290,41050,'_blocks_11_open_key_information','field_66ebfd7f9450d'),(226291,41050,'blocks_11_open',''),(226292,41050,'_blocks_11_open','field_66ebfd009450b'),(226293,40272,'blocks_8_open_whats_included','1'),(226294,40272,'_blocks_8_open_whats_included','field_66ebfd679450c'),(226295,40272,'blocks_8_open_key_information','0'),(226296,40272,'_blocks_8_open_key_information','field_66ebfd7f9450d'),(226297,40272,'blocks_8_open',''),(226298,40272,'_blocks_8_open','field_66ebfd009450b'),(226299,41051,'hide_hero','0'),(226300,41051,'_hide_hero','field_66a2380fcda39'),(226301,41051,'hero_title','Core Training'),(226302,41051,'_hero_title','field_617571fe285e8'),(226303,41051,'hero_text','Build on your skill set and get to the Core of Fitness with a CPD Accreditation in Core Training. '),(226304,41051,'_hero_text','field_6175723c285e9'),(226305,41051,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226306,41051,'_hero_actions_0_button','field_61757281285eb'),(226307,41051,'hero_actions','1'),(226308,41051,'_hero_actions','field_61757270285ea'),(226309,41051,'hero_style','default'),(226310,41051,'_hero_style','field_62051d9dc5324'),(226311,41051,'_thumbnail_id','40604'),(226312,41051,'__thumbnail_id','field_617570855ddaf'),(226313,41051,'hero_image_pos_x','right'),(226314,41051,'_hero_image_pos_x','field_62ec3d05390bb'),(226315,41051,'hero_image_pos_y','top'),(226316,41051,'_hero_image_pos_y','field_62ec3d05390bc'),(226317,41051,'hero_image_pos',''),(226318,41051,'_hero_image_pos','field_62ec3d05390ba'),(226319,41051,'fft_hide_from_listings','0'),(226320,41051,'_fft_hide_from_listings','field_61f1320446ab2'),(226321,41051,'fft_page_format','default'),(226322,41051,'_fft_page_format','field_61ae213f1f218'),(226323,41051,'fft_hide_nav','0'),(226324,41051,'_fft_hide_nav','field_635bd5e43527c'),(226325,41051,'fft_hide_header_call_to_action','0'),(226326,41051,'_fft_hide_header_call_to_action','field_635bd6723527d'),(226327,41051,'fft_page_sitemap','0'),(226328,41051,'_fft_page_sitemap','field_61af9b34e8181'),(226329,41051,'blocks_0_acfe_flexible_toggle',''),(226330,41051,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(226331,41051,'blocks_0_acfe_flexible_layout_title','Template'),(226332,41051,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(226333,41051,'blocks_0_template','39087'),(226334,41051,'_blocks_0_template','field_617bdd570fe01'),(226335,41051,'blocks_1_acfe_flexible_toggle',''),(226336,41051,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(226337,41051,'blocks_1_acfe_flexible_layout_title','Text Block'),(226338,41051,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(226339,41051,'blocks_1_options_theme','#f5f5f5'),(226340,41051,'_blocks_1_options_theme','field_6176830e2ad17'),(226341,41051,'blocks_1_options',''),(226342,41051,'_blocks_1_options','field_6176830e2ad16'),(226343,41051,'blocks_1_text_block_heading','Overview'),(226344,41051,'_blocks_1_text_block_heading','field_617669d413097'),(226345,41051,'blocks_1_text_block_content','Train with Future Fit, together with all the support and industry expertise you need to help your fitness career take flight. Invest into your own training, to stand out from the crowd with advanced knowledge.'),(226346,41051,'_blocks_1_text_block_content','field_617669ec13098'),(226347,41051,'blocks_2_acfe_flexible_toggle',''),(226348,41051,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(226349,41051,'blocks_2_acfe_flexible_layout_title','Logos'),(226350,41051,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(226351,41051,'blocks_2_options_theme','#ffffff'),(226352,41051,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(226353,41051,'blocks_2_options_format','grid'),(226354,41051,'_blocks_2_options_format','field_61782964ee971'),(226355,41051,'blocks_2_options',''),(226356,41051,'_blocks_2_options','field_61782954ee965'),(226357,41051,'blocks_2_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(226358,41051,'_blocks_2_logos','field_61782954ee96d'),(226359,41051,'blocks_2_title',''),(226360,41051,'_blocks_2_title','field_668fbfdc2daa1'),(226361,41051,'blocks_3_acfe_flexible_toggle',''),(226362,41051,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(226363,41051,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(226364,41051,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(226365,41051,'blocks_3_options_theme','#f5f5f5'),(226366,41051,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(226367,41051,'blocks_3_options_reverse','0'),(226368,41051,'_blocks_3_options_reverse','field_61768049bb8ac'),(226369,41051,'blocks_3_options',''),(226370,41051,'_blocks_3_options','field_617682517c334'),(226371,41051,'blocks_3_split_5050_image','40605'),(226372,41051,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(226373,41051,'blocks_3_split_5050_video',''),(226374,41051,'_blocks_3_split_5050_video','field_6239f3160848a'),(226375,41051,'blocks_3_split_5050_content_title',''),(226376,41051,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(226377,41051,'blocks_3_split_5050_content_heading','Course Overview '),(226378,41051,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(226379,41051,'blocks_3_split_5050_content_text','This workshop provides you with the knowledge and skills you’ll need to prescribe safe, effective and challenging core exercises for your clients across a wide range of needs and abilities.'),(226380,41051,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(226381,41051,'blocks_3_split_5050_content_actions',''),(226382,41051,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(226383,41051,'blocks_3_split_5050_content',''),(226384,41051,'_blocks_3_split_5050_content','field_61767afceb8ba'),(226385,41051,'blocks_4_acfe_flexible_toggle',''),(226386,41051,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(226387,41051,'blocks_4_acfe_flexible_layout_title','Tabs'),(226388,41051,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(226389,41051,'blocks_4_options_theme','#ffffff'),(226390,41051,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(226391,41051,'blocks_4_options',''),(226392,41051,'_blocks_4_options','field_6177cfcd8140f'),(226393,41051,'blocks_4_tabs_0_tab_label','Learning Type'),(226394,41051,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(226395,41051,'blocks_4_tabs_0_tab_content_title',''),(226396,41051,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(226397,41051,'blocks_4_tabs_0_tab_content_heading',''),(226398,41051,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(226399,41051,'blocks_4_tabs_0_tab_content_text','This core Training CPD course is taught through a 1-day online course. Learn from anywhere in the world.'),(226400,41051,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(226401,41051,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226402,41051,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(226403,41051,'blocks_4_tabs_0_tab_content_actions','1'),(226404,41051,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(226405,41051,'blocks_4_tabs_0_tab_content',''),(226406,41051,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(226407,41051,'blocks_4_tabs_0_tab_image',''),(226408,41051,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(226409,41051,'blocks_4_tabs_1_tab_label','Content covered '),(226410,41051,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(226411,41051,'blocks_4_tabs_1_tab_content_title',''),(226412,41051,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(226413,41051,'blocks_4_tabs_1_tab_content_heading',''),(226414,41051,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(226415,41051,'blocks_4_tabs_1_tab_content_text','<ul>\r\n 	<li>Anatomy and kinesiology of the torso</li>\r\n 	<li>Exercise and its role in muscle balance and posture</li>\r\n 	<li>Core strength and stability exercises and their practical application</li>\r\n 	<li>Techniques for developing a client’s body awareness</li>\r\n 	<li>Techniques of adaptation and progression in core training</li>\r\n 	<li>The use of equipment such as stability balls, medicine balls, free weights, resistance machines and resistance bands</li>\r\n</ul>'),(226416,41051,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(226417,41051,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226418,41051,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(226419,41051,'blocks_4_tabs_1_tab_content_actions','1'),(226420,41051,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(226421,41051,'blocks_4_tabs_1_tab_content',''),(226422,41051,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(226423,41051,'blocks_4_tabs_1_tab_image',''),(226424,41051,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(226425,41051,'blocks_4_tabs_2_tab_label','Assessment '),(226426,41051,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(226427,41051,'blocks_4_tabs_2_tab_content_title',''),(226428,41051,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(226429,41051,'blocks_4_tabs_2_tab_content_heading',''),(226430,41051,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(226431,41051,'blocks_4_tabs_2_tab_content_text','An online multiple choice knowledge check'),(226432,41051,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(226433,41051,'blocks_4_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226434,41051,'_blocks_4_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(226435,41051,'blocks_4_tabs_2_tab_content_actions','1'),(226436,41051,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(226437,41051,'blocks_4_tabs_2_tab_content',''),(226438,41051,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(226439,41051,'blocks_4_tabs_2_tab_image',''),(226440,41051,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(226441,41051,'blocks_4_tabs_3_tab_label','E-learning '),(226442,41051,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(226443,41051,'blocks_4_tabs_3_tab_content_title',''),(226444,41051,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(226445,41051,'blocks_4_tabs_3_tab_content_heading',''),(226446,41051,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(226447,41051,'blocks_4_tabs_3_tab_content_text','An interactive e-learning course. We recommend you work through the course more than once. There is a demonstration of the course available (look for the “Course Demo” tab).'),(226448,41051,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416');
INSERT INTO `6m7_postmeta` VALUES (226449,41051,'blocks_4_tabs_3_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226450,41051,'_blocks_4_tabs_3_tab_content_actions_0_button','field_6177cfcd81418'),(226451,41051,'blocks_4_tabs_3_tab_content_actions','1'),(226452,41051,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(226453,41051,'blocks_4_tabs_3_tab_content',''),(226454,41051,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(226455,41051,'blocks_4_tabs_3_tab_image',''),(226456,41051,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(226457,41051,'blocks_4_tabs_4_tab_label','Content '),(226458,41051,'_blocks_4_tabs_4_tab_label','field_6177d0068141a'),(226459,41051,'blocks_4_tabs_4_tab_content_title',''),(226460,41051,'_blocks_4_tabs_4_tab_content_title','field_6177cfcd81414'),(226461,41051,'blocks_4_tabs_4_tab_content_heading',''),(226462,41051,'_blocks_4_tabs_4_tab_content_heading','field_6177cfcd81415'),(226463,41051,'blocks_4_tabs_4_tab_content_text','Gain an understanding of all elements required to establish a fitness business. from legal requirements to planning, marketing, sales and customer management.'),(226464,41051,'_blocks_4_tabs_4_tab_content_text','field_6177cfcd81416'),(226465,41051,'blocks_4_tabs_4_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226466,41051,'_blocks_4_tabs_4_tab_content_actions_0_button','field_6177cfcd81418'),(226467,41051,'blocks_4_tabs_4_tab_content_actions','1'),(226468,41051,'_blocks_4_tabs_4_tab_content_actions','field_6177cfcd81417'),(226469,41051,'blocks_4_tabs_4_tab_content',''),(226470,41051,'_blocks_4_tabs_4_tab_content','field_6177cfcd81413'),(226471,41051,'blocks_4_tabs_4_tab_image',''),(226472,41051,'_blocks_4_tabs_4_tab_image','field_6177cfcd81412'),(226473,41051,'blocks_4_tabs_5_tab_label','Assessment '),(226474,41051,'_blocks_4_tabs_5_tab_label','field_6177d0068141a'),(226475,41051,'blocks_4_tabs_5_tab_content_title',''),(226476,41051,'_blocks_4_tabs_5_tab_content_title','field_6177cfcd81414'),(226477,41051,'blocks_4_tabs_5_tab_content_heading',''),(226478,41051,'_blocks_4_tabs_5_tab_content_heading','field_6177cfcd81415'),(226479,41051,'blocks_4_tabs_5_tab_content_text','There is no assessment for this course.'),(226480,41051,'_blocks_4_tabs_5_tab_content_text','field_6177cfcd81416'),(226481,41051,'blocks_4_tabs_5_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226482,41051,'_blocks_4_tabs_5_tab_content_actions_0_button','field_6177cfcd81418'),(226483,41051,'blocks_4_tabs_5_tab_content_actions','1'),(226484,41051,'_blocks_4_tabs_5_tab_content_actions','field_6177cfcd81417'),(226485,41051,'blocks_4_tabs_5_tab_content',''),(226486,41051,'_blocks_4_tabs_5_tab_content','field_6177cfcd81413'),(226487,41051,'blocks_4_tabs_5_tab_image',''),(226488,41051,'_blocks_4_tabs_5_tab_image','field_6177cfcd81412'),(226489,41051,'blocks_4_tabs_6_tab_label','Entry requirements'),(226490,41051,'_blocks_4_tabs_6_tab_label','field_6177d0068141a'),(226491,41051,'blocks_4_tabs_6_tab_content_title',''),(226492,41051,'_blocks_4_tabs_6_tab_content_title','field_6177cfcd81414'),(226493,41051,'blocks_4_tabs_6_tab_content_heading',''),(226494,41051,'_blocks_4_tabs_6_tab_content_heading','field_6177cfcd81415'),(226495,41051,'blocks_4_tabs_6_tab_content_text','To do this course, you will need:\r\n<ul>\r\n 	<li>Level 2 Gym Instructor.</li>\r\n</ul>\r\nIf you don’t have this qualification, why not find out more about our Level 2 Gym Instructor certificate.\r\n\r\nWe also recommend reading our personal training blog posts before starting the course. There is loads of useful material to help cement your understanding of personal training! Read them here:\r\n<ul>\r\n 	<li>Newly qualified personal trainer? The 5 skills you need to learn now</li>\r\n 	<li>Personal training: expectations | costs | benefits | skills</li>\r\n</ul>'),(226496,41051,'_blocks_4_tabs_6_tab_content_text','field_6177cfcd81416'),(226497,41051,'blocks_4_tabs_6_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226498,41051,'_blocks_4_tabs_6_tab_content_actions_0_button','field_6177cfcd81418'),(226499,41051,'blocks_4_tabs_6_tab_content_actions','1'),(226500,41051,'_blocks_4_tabs_6_tab_content_actions','field_6177cfcd81417'),(226501,41051,'blocks_4_tabs_6_tab_content',''),(226502,41051,'_blocks_4_tabs_6_tab_content','field_6177cfcd81413'),(226503,41051,'blocks_4_tabs_6_tab_image',''),(226504,41051,'_blocks_4_tabs_6_tab_image','field_6177cfcd81412'),(226505,41051,'blocks_4_tabs','7'),(226506,41051,'_blocks_4_tabs','field_6177cff281419'),(226507,41051,'blocks_5_acfe_flexible_toggle',''),(226508,41051,'_blocks_5_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(226509,41051,'blocks_5_acfe_flexible_layout_title','Template'),(226510,41051,'_blocks_5_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(226511,41051,'blocks_5_template','39401'),(226512,41051,'_blocks_5_template','field_617bdd570fe01'),(226513,41051,'blocks_6_acfe_flexible_toggle',''),(226514,41051,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(226515,41051,'blocks_6_acfe_flexible_layout_title','Text Block'),(226516,41051,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(226517,41051,'blocks_6_options_theme','#b61234'),(226518,41051,'_blocks_6_options_theme','field_6176830e2ad17'),(226519,41051,'blocks_6_options',''),(226520,41051,'_blocks_6_options','field_6176830e2ad16'),(226521,41051,'blocks_6_text_block_heading','Why study this core training course?  '),(226522,41051,'_blocks_6_text_block_heading','field_617669d413097'),(226523,41051,'blocks_6_text_block_content','Studying this core training course will help you have a better understanding of helping people develop core stability and core strength. You will find out the best ways to incorporate core training into your client’s workouts to provide them with a valuable and enjoyable session.\r\n\r\nAs a fitness coach or instructor, having a good understanding of core strength is fundamental to all clients or group classes, having this knowledge will teach you how to ensure your clients are using their core strength and stability where they can. Having good core stability and strength can improve other factors such as exercise form and mobility, therefore this is valuable to all clients as a trainer.'),(226524,41051,'_blocks_6_text_block_content','field_617669ec13098'),(226525,41051,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:5:\"logos\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:8:\"template\";i:6;s:10:\"text_block\";i:7;s:10:\"text_block\";i:8;s:14:\"course_compare\";i:9;s:10:\"accordions\";}'),(226526,41051,'_blocks','field_6176696113096'),(226527,41051,'course_label_text','Core Training'),(226528,41051,'_course_label_text','field_61e17babf71fa'),(226529,41051,'course_label',''),(226530,41051,'_course_label','field_61e12f92749a7'),(226531,41051,'course_description','Build on your skill set and get to the Core of Fitness with a CPD Accreditation in Core Training. '),(226532,41051,'_course_description','field_617ac5788e5e1'),(226533,41051,'course_key_info','2'),(226534,41051,'_course_key_info','field_617ac6ad8e5e2'),(226535,41051,'course_included','Anatomy and kinesiology of the torso\r\nExercise and its role in muscle balance and posture\r\nCore strength and stability exercises and their practical application\r\nTechniques for developing a client’s body awareness\r\nTechniques of adaptation and progression in core training\r\nThe use of equipment such as stability balls, medicine balls, free weights, resistance machines and resistance bands'),(226536,41051,'_course_included','field_617ac6f08e5e4'),(226537,41051,'blocks_7_acfe_flexible_toggle',''),(226538,41051,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(226539,41051,'blocks_7_acfe_flexible_layout_title','Text Block'),(226540,41051,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(226541,41051,'blocks_7_options_theme','#ffffff'),(226542,41051,'_blocks_7_options_theme','field_6176830e2ad17'),(226543,41051,'blocks_7_options',''),(226544,41051,'_blocks_7_options','field_6176830e2ad16'),(226545,41051,'blocks_7_text_block_heading','Frequently Bought Together'),(226546,41051,'_blocks_7_text_block_heading','field_617669d413097'),(226547,41051,'blocks_7_text_block_content','Check out more of our courses that are frequently purchased together'),(226548,41051,'_blocks_7_text_block_content','field_617669ec13098'),(226549,41051,'blocks_8_acfe_flexible_toggle',''),(226550,41051,'_blocks_8_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(226551,41051,'blocks_8_acfe_flexible_layout_title','Course Comparison'),(226552,41051,'_blocks_8_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(226553,41051,'blocks_8_options_theme','#ffffff'),(226554,41051,'_blocks_8_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(226555,41051,'blocks_8_options',''),(226556,41051,'_blocks_8_options','field_617ac0b7f6c08'),(226557,41051,'blocks_8_show','category'),(226558,41051,'_blocks_8_show','field_61a49cba9d946'),(226559,41051,'blocks_8_category','403'),(226560,41051,'_blocks_8_category','field_61a49cd79d947'),(226561,41051,'blocks_9_acfe_flexible_toggle',''),(226562,41051,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(226563,41051,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(226564,41051,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(226565,41051,'blocks_9_options_theme','#ffffff'),(226566,41051,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(226567,41051,'blocks_9_options_state','0'),(226568,41051,'_blocks_9_options_state','field_6239fcb7508c5'),(226569,41051,'blocks_9_options',''),(226570,41051,'_blocks_9_options','field_6177e2991ac44'),(226571,41051,'blocks_9_content_title',''),(226572,41051,'_blocks_9_content_title','field_64d237e8bb1e2'),(226573,41051,'blocks_9_content_heading','FAQ\'s'),(226574,41051,'_blocks_9_content_heading','field_64d237e8bb1e3'),(226575,41051,'blocks_9_content_text',''),(226576,41051,'_blocks_9_content_text','field_64d237e8bb1e4'),(226577,41051,'blocks_9_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226578,41051,'_blocks_9_content_actions_0_button','field_64d237e8bb1e6'),(226579,41051,'blocks_9_content_actions','1'),(226580,41051,'_blocks_9_content_actions','field_64d237e8bb1e5'),(226581,41051,'blocks_9_content_align','left'),(226582,41051,'_blocks_9_content_align','field_64d2443e6b6aa'),(226583,41051,'blocks_9_content',''),(226584,41051,'_blocks_9_content','field_64d237e8bb1e1'),(226585,41051,'blocks_9_accordion_content','faqs'),(226586,41051,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(226587,41051,'blocks_9_accordion_faqs_select','a:5:{i:0;s:5:\"39422\";i:1;s:5:\"39135\";i:2;s:5:\"39137\";i:3;s:5:\"39138\";i:4;s:5:\"39139\";}'),(226588,41051,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(226589,41051,'blocks_9_actions',''),(226590,41051,'_blocks_9_actions','field_61a746a817f7a'),(226591,41051,'course_label_label_theme','#0d1f73'),(226592,41051,'_course_label_label_theme','field_61e17bb8f71fb'),(226593,41051,'course_key_info_0_text','Online CPD'),(226594,41051,'_course_key_info_0_text','field_617ac6c38e5e3'),(226595,41051,'course_key_info_1_text','CIMSPA Endorsed'),(226596,41051,'_course_key_info_1_text','field_617ac6c38e5e3'),(226597,41051,'blocks_8_open_whats_included','1'),(226598,41051,'_blocks_8_open_whats_included','field_66ebfd679450c'),(226599,41051,'blocks_8_open_key_information','0'),(226600,41051,'_blocks_8_open_key_information','field_66ebfd7f9450d'),(226601,41051,'blocks_8_open',''),(226602,41051,'_blocks_8_open','field_66ebfd009450b'),(226603,40275,'blocks_4_open_whats_included','1'),(226604,40275,'_blocks_4_open_whats_included','field_66ebfd679450c'),(226605,40275,'blocks_4_open_key_information','0'),(226606,40275,'_blocks_4_open_key_information','field_66ebfd7f9450d'),(226607,40275,'blocks_4_open',''),(226608,40275,'_blocks_4_open','field_66ebfd009450b'),(226609,40275,'course_key_info_2_text','No Entry Requirements'),(226610,40275,'_course_key_info_2_text','field_617ac6c38e5e3'),(226611,41052,'hide_hero','0'),(226612,41052,'_hide_hero','field_66a2380fcda39'),(226613,41052,'hero_title','Fundamental Principles of Movement'),(226614,41052,'_hero_title','field_617571fe285e8'),(226615,41052,'hero_text','Explore the Fundamental Principles of Movement Analysis'),(226616,41052,'_hero_text','field_6175723c285e9'),(226617,41052,'hero_actions',''),(226618,41052,'_hero_actions','field_61757270285ea'),(226619,41052,'hero_style','default'),(226620,41052,'_hero_style','field_62051d9dc5324'),(226621,41052,'_thumbnail_id','40630'),(226622,41052,'__thumbnail_id','field_617570855ddaf'),(226623,41052,'hero_image_pos_x','right'),(226624,41052,'_hero_image_pos_x','field_62ec3d05390bb'),(226625,41052,'hero_image_pos_y','top'),(226626,41052,'_hero_image_pos_y','field_62ec3d05390bc'),(226627,41052,'hero_image_pos',''),(226628,41052,'_hero_image_pos','field_62ec3d05390ba'),(226629,41052,'fft_hide_from_listings','0'),(226630,41052,'_fft_hide_from_listings','field_61f1320446ab2'),(226631,41052,'fft_page_format','default'),(226632,41052,'_fft_page_format','field_61ae213f1f218'),(226633,41052,'fft_hide_nav','0'),(226634,41052,'_fft_hide_nav','field_635bd5e43527c'),(226635,41052,'fft_hide_header_call_to_action','0'),(226636,41052,'_fft_hide_header_call_to_action','field_635bd6723527d'),(226637,41052,'fft_page_sitemap','0'),(226638,41052,'_fft_page_sitemap','field_61af9b34e8181'),(226639,41052,'blocks_0_acfe_flexible_toggle',''),(226640,41052,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(226641,41052,'blocks_0_acfe_flexible_layout_title','Text Block'),(226642,41052,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(226643,41052,'blocks_0_options_theme','#ffffff'),(226644,41052,'_blocks_0_options_theme','field_6176830e2ad17'),(226645,41052,'blocks_0_options',''),(226646,41052,'_blocks_0_options','field_6176830e2ad16'),(226647,41052,'blocks_0_text_block_heading','Overview'),(226648,41052,'_blocks_0_text_block_heading','field_617669d413097'),(226649,41052,'blocks_0_text_block_content','Are you looking to deepen your understanding of the human body and the principles of movement? We are pleased to introduce our fundamental principles of movement analysis course, offering insights into comprehending, and analysing human movement.\r\n\r\nOur online course simplifies the complex subject of human movement analysis, providing practitioners with a practical understanding to assess their clients\' movement quality. With this knowledge, you can refine your exercise prescriptions to improve movement quality effectively.'),(226650,41052,'_blocks_0_text_block_content','field_617669ec13098'),(226651,41052,'blocks_1_acfe_flexible_toggle',''),(226652,41052,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(226653,41052,'blocks_1_acfe_flexible_layout_title','Timeline'),(226654,41052,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(226655,41052,'blocks_1_options_theme','#f5f5f5'),(226656,41052,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(226657,41052,'blocks_1_options',''),(226658,41052,'_blocks_1_options','field_6177de53d1195'),(226659,41052,'blocks_1_timeline_content_title',''),(226660,41052,'_blocks_1_timeline_content_title','field_6177de53d1198'),(226661,41052,'blocks_1_timeline_content_heading','Fundamental Principles of Movement Analysis'),(226662,41052,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(226663,41052,'blocks_1_timeline_content_text','Explore the Fundamental Principles of Movement Analysis, divided into four parts'),(226664,41052,'_blocks_1_timeline_content_text','field_6177de53d119a'),(226665,41052,'blocks_1_timeline_content_actions',''),(226666,41052,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(226667,41052,'blocks_1_timeline_content',''),(226668,41052,'_blocks_1_timeline_content','field_6177de53d1197'),(226669,41052,'blocks_1_timeline_items_0_title','Part 1: Principles of Movement Analysis '),(226670,41052,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(226671,41052,'blocks_1_timeline_items_0_text','Understand the foundational principles of human movement. '),(226672,41052,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(226673,41052,'blocks_1_timeline_items_1_title','Part 2: Equilibrium '),(226674,41052,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(226675,41052,'blocks_1_timeline_items_1_text','Learn about maintaining balance and equilibrium within the human body. '),(226676,41052,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(226677,41052,'blocks_1_timeline_items_2_title','Part 3: Levers '),(226678,41052,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(226679,41052,'blocks_1_timeline_items_2_text','Explore the mechanical principles of levers and their role in human movement. '),(226680,41052,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(226681,41052,'blocks_1_timeline_items_3_title','Part 4: Turning Forces '),(226682,41052,'_blocks_1_timeline_items_3_title','field_6177de53d119f'),(226683,41052,'blocks_1_timeline_items_3_text','Understand the dynamics of turning forces and their impact on human movement. '),(226684,41052,'_blocks_1_timeline_items_3_text','field_6177de53d11a0'),(226685,41052,'blocks_1_timeline_items','4'),(226686,41052,'_blocks_1_timeline_items','field_6177de53d119d'),(226687,41052,'blocks_2_acfe_flexible_toggle',''),(226688,41052,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(226689,41052,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(226690,41052,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(226691,41052,'blocks_2_options_theme','#b61234'),(226692,41052,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(226693,41052,'blocks_2_options_reverse','0'),(226694,41052,'_blocks_2_options_reverse','field_61768049bb8ac'),(226695,41052,'blocks_2_options',''),(226696,41052,'_blocks_2_options','field_617682517c334'),(226697,41052,'blocks_2_split_5050_image','40631'),(226698,41052,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(226699,41052,'blocks_2_split_5050_video',''),(226700,41052,'_blocks_2_split_5050_video','field_6239f3160848a'),(226701,41052,'blocks_2_split_5050_content_title',''),(226702,41052,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(226703,41052,'blocks_2_split_5050_content_heading','Ready to Get Started? '),(226704,41052,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(226705,41052,'blocks_2_split_5050_content_text','This downloadable course, accompanied by a quiz, aims to inform, and enhance the skills of human movement practitioners in both intrinsic and extrinsic biomechanics.\r\n\r\nReady to get started? After payment, download your course instantly for immediate access. Refine your understanding of movement analysis!'),(226706,41052,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(226707,41052,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226708,41052,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(226709,41052,'blocks_2_split_5050_content_actions','1'),(226710,41052,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(226711,41052,'blocks_2_split_5050_content',''),(226712,41052,'_blocks_2_split_5050_content','field_61767afceb8ba'),(226713,41052,'blocks_3_acfe_flexible_toggle',''),(226714,41052,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(226715,41052,'blocks_3_acfe_flexible_layout_title','Text Block'),(226716,41052,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(226717,41052,'blocks_3_options_theme','#ffffff'),(226718,41052,'_blocks_3_options_theme','field_6176830e2ad17'),(226719,41052,'blocks_3_options',''),(226720,41052,'_blocks_3_options','field_6176830e2ad16'),(226721,41052,'blocks_3_text_block_heading','Other Courses'),(226722,41052,'_blocks_3_text_block_heading','field_617669d413097'),(226723,41052,'blocks_3_text_block_content','Check out other courses that are frequently purchased'),(226724,41052,'_blocks_3_text_block_content','field_617669ec13098'),(226725,41052,'blocks_4_acfe_flexible_toggle',''),(226726,41052,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(226727,41052,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(226728,41052,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(226729,41052,'blocks_4_options_theme','#ffffff'),(226730,41052,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(226731,41052,'blocks_4_options',''),(226732,41052,'_blocks_4_options','field_617ac0b7f6c08'),(226733,41052,'blocks_4_show','category'),(226734,41052,'_blocks_4_show','field_61a49cba9d946'),(226735,41052,'blocks_4_category','403'),(226736,41052,'_blocks_4_category','field_61a49cd79d947'),(226737,41052,'blocks_5_acfe_flexible_toggle',''),(226738,41052,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(226739,41052,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(226740,41052,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(226741,41052,'blocks_5_options_theme','#ffffff'),(226742,41052,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(226743,41052,'blocks_5_options_state','0'),(226744,41052,'_blocks_5_options_state','field_6239fcb7508c5'),(226745,41052,'blocks_5_options',''),(226746,41052,'_blocks_5_options','field_6177e2991ac44'),(226747,41052,'blocks_5_content_title',''),(226748,41052,'_blocks_5_content_title','field_64d237e8bb1e2'),(226749,41052,'blocks_5_content_heading','FAQ\'s'),(226750,41052,'_blocks_5_content_heading','field_64d237e8bb1e3'),(226751,41052,'blocks_5_content_text',''),(226752,41052,'_blocks_5_content_text','field_64d237e8bb1e4'),(226753,41052,'blocks_5_content_actions',''),(226754,41052,'_blocks_5_content_actions','field_64d237e8bb1e5'),(226755,41052,'blocks_5_content_align','left'),(226756,41052,'_blocks_5_content_align','field_64d2443e6b6aa'),(226757,41052,'blocks_5_content',''),(226758,41052,'_blocks_5_content','field_64d237e8bb1e1'),(226759,41052,'blocks_5_accordion_content','custom'),(226760,41052,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(226761,41052,'blocks_5_accordion_items',''),(226762,41052,'_blocks_5_accordion_items','field_6177e2991ac4c'),(226763,41052,'blocks_5_actions',''),(226764,41052,'_blocks_5_actions','field_61a746a817f7a'),(226765,41052,'blocks','a:6:{i:0;s:10:\"text_block\";i:1;s:13:\"step_timeline\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:10:\"accordions\";}'),(226766,41052,'_blocks','field_6176696113096'),(226767,41052,'course_label_text','Fundamental Principles of Movement'),(226768,41052,'_course_label_text','field_61e17babf71fa'),(226769,41052,'course_label',''),(226770,41052,'_course_label','field_61e12f92749a7'),(226771,41052,'course_description','Are you looking to deepen your understanding of the human body and movement? We are pleased to introduce our fundamental principles of movement analysis course, offering insights into comprehending, and analysing human movement.'),(226772,41052,'_course_description','field_617ac5788e5e1'),(226773,41052,'course_key_info','3'),(226774,41052,'_course_key_info','field_617ac6ad8e5e2'),(226775,41052,'course_included','Part 1: Principles of Movement Analysis \r\nPart 2: Equilibrium \r\nPart 3: Levers \r\nPart 4: Turning Forces '),(226776,41052,'_course_included','field_617ac6f08e5e4'),(226777,41052,'course_label_label_theme','#0d1f73'),(226778,41052,'_course_label_label_theme','field_61e17bb8f71fb'),(226779,41052,'course_key_info_0_text','CPD'),(226780,41052,'_course_key_info_0_text','field_617ac6c38e5e3'),(226781,41052,'course_key_info_1_text','Online Learning'),(226782,41052,'_course_key_info_1_text','field_617ac6c38e5e3'),(226783,41052,'blocks_4_open_whats_included','1'),(226784,41052,'_blocks_4_open_whats_included','field_66ebfd679450c'),(226785,41052,'blocks_4_open_key_information','0'),(226786,41052,'_blocks_4_open_key_information','field_66ebfd7f9450d'),(226787,41052,'blocks_4_open',''),(226788,41052,'_blocks_4_open','field_66ebfd009450b'),(226789,41052,'course_key_info_2_text','No Entry Requirements'),(226790,41052,'_course_key_info_2_text','field_617ac6c38e5e3'),(226791,40277,'course_key_info_1_text','CPD'),(226792,40277,'_course_key_info_1_text','field_617ac6c38e5e3'),(226793,40277,'course_key_info_2_text','No Entry Requirements'),(226794,40277,'_course_key_info_2_text','field_617ac6c38e5e3'),(226795,41053,'hide_hero','0'),(226796,41053,'_hide_hero','field_66a2380fcda39'),(226797,41053,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(226798,41053,'_hero_title','field_617571fe285e8'),(226799,41053,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(226800,41053,'_hero_text','field_6175723c285e9'),(226801,41053,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226802,41053,'_hero_actions_0_button','field_61757281285eb'),(226803,41053,'hero_actions','1'),(226804,41053,'_hero_actions','field_61757270285ea'),(226805,41053,'hero_style','default'),(226806,41053,'_hero_style','field_62051d9dc5324'),(226807,41053,'_thumbnail_id','40615'),(226808,41053,'__thumbnail_id','field_617570855ddaf'),(226809,41053,'hero_image_pos_x','right'),(226810,41053,'_hero_image_pos_x','field_62ec3d05390bb'),(226811,41053,'hero_image_pos_y','top'),(226812,41053,'_hero_image_pos_y','field_62ec3d05390bc'),(226813,41053,'hero_image_pos',''),(226814,41053,'_hero_image_pos','field_62ec3d05390ba'),(226815,41053,'fft_hide_from_listings','0'),(226816,41053,'_fft_hide_from_listings','field_61f1320446ab2'),(226817,41053,'fft_page_format','default'),(226818,41053,'_fft_page_format','field_61ae213f1f218'),(226819,41053,'fft_hide_nav','0'),(226820,41053,'_fft_hide_nav','field_635bd5e43527c'),(226821,41053,'fft_hide_header_call_to_action','0'),(226822,41053,'_fft_hide_header_call_to_action','field_635bd6723527d'),(226823,41053,'fft_page_sitemap','0'),(226824,41053,'_fft_page_sitemap','field_61af9b34e8181'),(226825,41053,'blocks_0_acfe_flexible_toggle',''),(226826,41053,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(226827,41053,'blocks_0_acfe_flexible_layout_title','Text Block'),(226828,41053,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(226829,41053,'blocks_0_options_theme','#f5f5f5'),(226830,41053,'_blocks_0_options_theme','field_6176830e2ad17'),(226831,41053,'blocks_0_options',''),(226832,41053,'_blocks_0_options','field_6176830e2ad16'),(226833,41053,'blocks_0_text_block_heading','Overview'),(226834,41053,'_blocks_0_text_block_heading','field_617669d413097'),(226835,41053,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(226836,41053,'_blocks_0_text_block_content','field_617669ec13098'),(226837,41053,'blocks_1_acfe_flexible_toggle',''),(226838,41053,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(226839,41053,'blocks_1_acfe_flexible_layout_title','Logos'),(226840,41053,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(226841,41053,'blocks_1_options_theme','#ffffff'),(226842,41053,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(226843,41053,'blocks_1_options_format','grid'),(226844,41053,'_blocks_1_options_format','field_61782964ee971'),(226845,41053,'blocks_1_options',''),(226846,41053,'_blocks_1_options','field_61782954ee965'),(226847,41053,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(226848,41053,'_blocks_1_logos','field_61782954ee96d'),(226849,41053,'blocks_1_title',''),(226850,41053,'_blocks_1_title','field_668fbfdc2daa1'),(226851,41053,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:18:\"testimonial_slider\";i:6;s:10:\"accordions\";}'),(226852,41053,'_blocks','field_6176696113096'),(226853,41053,'course_label_text','iMoveFreely Online CPD'),(226854,41053,'_course_label_text','field_61e17babf71fa'),(226855,41053,'course_label',''),(226856,41053,'_course_label','field_61e12f92749a7'),(226857,41053,'course_description','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(226858,41053,'_course_description','field_617ac5788e5e1'),(226859,41053,'course_key_info','3'),(226860,41053,'_course_key_info','field_617ac6ad8e5e2'),(226861,41053,'course_included','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.'),(226862,41053,'_course_included','field_617ac6f08e5e4'),(226863,41053,'blocks_2_acfe_flexible_toggle',''),(226864,41053,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(226865,41053,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(226866,41053,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(226867,41053,'blocks_2_options_theme','#b61234'),(226868,41053,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(226869,41053,'blocks_2_options_reverse','0'),(226870,41053,'_blocks_2_options_reverse','field_61768049bb8ac'),(226871,41053,'blocks_2_options',''),(226872,41053,'_blocks_2_options','field_617682517c334'),(226873,41053,'blocks_2_split_5050_image','40618'),(226874,41053,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(226875,41053,'blocks_2_split_5050_video',''),(226876,41053,'_blocks_2_split_5050_video','field_6239f3160848a'),(226877,41053,'blocks_2_split_5050_content_title',''),(226878,41053,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(226879,41053,'blocks_2_split_5050_content_heading','Course Overview'),(226880,41053,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(226881,41053,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.\r\n\r\nInstructors through Continuing Professional Development (CPD). To obtain your iMoveFreely Instructor certificate, face-to-face attendance is required.\r\n\r\nUpon payment, access the recorded workshop and instantly download the comprehensive handout PDF. For future access, simply log in using your registered email.'),(226882,41053,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(226883,41053,'blocks_2_split_5050_content_actions','1'),(226884,41053,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(226885,41053,'blocks_2_split_5050_content',''),(226886,41053,'_blocks_2_split_5050_content','field_61767afceb8ba'),(226887,41053,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226888,41053,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(226889,41053,'blocks_3_acfe_flexible_toggle',''),(226890,41053,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(226891,41053,'blocks_3_acfe_flexible_layout_title','Text Block'),(226892,41053,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(226893,41053,'blocks_3_options_theme','#ffffff'),(226894,41053,'_blocks_3_options_theme','field_6176830e2ad17'),(226895,41053,'blocks_3_options',''),(226896,41053,'_blocks_3_options','field_6176830e2ad16'),(226897,41053,'blocks_3_text_block_heading','Other Courses'),(226898,41053,'_blocks_3_text_block_heading','field_617669d413097'),(226899,41053,'blocks_3_text_block_content','Check out a range of other courses that are frequently purchased'),(226900,41053,'_blocks_3_text_block_content','field_617669ec13098'),(226901,41053,'blocks_4_acfe_flexible_toggle',''),(226902,41053,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(226903,41053,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(226904,41053,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(226905,41053,'blocks_4_options_theme','#ffffff'),(226906,41053,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(226907,41053,'blocks_4_options',''),(226908,41053,'_blocks_4_options','field_617ac0b7f6c08'),(226909,41053,'blocks_4_show','category'),(226910,41053,'_blocks_4_show','field_61a49cba9d946'),(226911,41053,'blocks_4_category','403'),(226912,41053,'_blocks_4_category','field_61a49cd79d947'),(226913,41053,'blocks_5_acfe_flexible_toggle',''),(226914,41053,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(226915,41053,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(226916,41053,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(226917,41053,'blocks_5_testimonial_slider_content_title',''),(226918,41053,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(226919,41053,'blocks_5_testimonial_slider_content_heading','Testimonials'),(226920,41053,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(226921,41053,'blocks_5_testimonial_slider_content_text',''),(226922,41053,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(226923,41053,'blocks_5_testimonial_slider_content_actions',''),(226924,41053,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(226925,41053,'blocks_5_testimonial_slider_content',''),(226926,41053,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(226927,41053,'blocks_5_testimonial_slider_items',''),(226928,41053,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(226929,41053,'blocks_5_testimonial_slider_ambassador_bool','0'),(226930,41053,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(226931,41053,'blocks_6_acfe_flexible_toggle',''),(226932,41053,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(226933,41053,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(226934,41053,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(226935,41053,'blocks_6_options_theme','#ffffff'),(226936,41053,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(226937,41053,'blocks_6_options_state','0'),(226938,41053,'_blocks_6_options_state','field_6239fcb7508c5'),(226939,41053,'blocks_6_options',''),(226940,41053,'_blocks_6_options','field_6177e2991ac44'),(226941,41053,'blocks_6_content_title',''),(226942,41053,'_blocks_6_content_title','field_64d237e8bb1e2'),(226943,41053,'blocks_6_content_heading',''),(226944,41053,'_blocks_6_content_heading','field_64d237e8bb1e3'),(226945,41053,'blocks_6_content_text',''),(226946,41053,'_blocks_6_content_text','field_64d237e8bb1e4'),(226947,41053,'blocks_6_content_actions',''),(226948,41053,'_blocks_6_content_actions','field_64d237e8bb1e5'),(226949,41053,'blocks_6_content_align','left'),(226950,41053,'_blocks_6_content_align','field_64d2443e6b6aa'),(226951,41053,'blocks_6_content',''),(226952,41053,'_blocks_6_content','field_64d237e8bb1e1'),(226953,41053,'blocks_6_accordion_content','custom'),(226954,41053,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(226955,41053,'blocks_6_accordion_items',''),(226956,41053,'_blocks_6_accordion_items','field_6177e2991ac4c'),(226957,41053,'blocks_6_actions',''),(226958,41053,'_blocks_6_actions','field_61a746a817f7a'),(226959,41053,'course_label_label_theme','#0d1f73'),(226960,41053,'_course_label_label_theme','field_61e17bb8f71fb'),(226961,41053,'course_key_info_0_text','Online Learning'),(226962,41053,'_course_key_info_0_text','field_617ac6c38e5e3'),(226963,41053,'blocks_4_open_whats_included','1'),(226964,41053,'_blocks_4_open_whats_included','field_66ebfd679450c'),(226965,41053,'blocks_4_open_key_information','0'),(226966,41053,'_blocks_4_open_key_information','field_66ebfd7f9450d'),(226967,41053,'blocks_4_open',''),(226968,41053,'_blocks_4_open','field_66ebfd009450b'),(226969,41053,'course_key_info_1_text','CPD'),(226970,41053,'_course_key_info_1_text','field_617ac6c38e5e3'),(226971,41053,'course_key_info_2_text','No Entry Requirements'),(226972,41053,'_course_key_info_2_text','field_617ac6c38e5e3'),(226973,41054,'hide_hero','0'),(226974,41054,'_hide_hero','field_66a2380fcda39'),(226975,41054,'hero_title','Introduction to Intrinsic Biomechanics'),(226976,41054,'_hero_title','field_617571fe285e8'),(226977,41054,'hero_text','Welcome to the Intrinsic Biomechanics Online CPD Training – Gain a deeper level of understanding of the body and human movement.'),(226978,41054,'_hero_text','field_6175723c285e9'),(226979,41054,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Add To Basket - Free\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(226980,41054,'_hero_actions_0_button','field_61757281285eb'),(226981,41054,'hero_actions','1'),(226982,41054,'_hero_actions','field_61757270285ea'),(226983,41054,'hero_style','default'),(226984,41054,'_hero_style','field_62051d9dc5324'),(226985,41054,'_thumbnail_id','40628'),(226986,41054,'__thumbnail_id','field_617570855ddaf'),(226987,41054,'hero_image_pos_x','right'),(226988,41054,'_hero_image_pos_x','field_62ec3d05390bb'),(226989,41054,'hero_image_pos_y','top'),(226990,41054,'_hero_image_pos_y','field_62ec3d05390bc'),(226991,41054,'hero_image_pos',''),(226992,41054,'_hero_image_pos','field_62ec3d05390ba'),(226993,41054,'fft_hide_from_listings','0'),(226994,41054,'_fft_hide_from_listings','field_61f1320446ab2'),(226995,41054,'fft_page_format','default'),(226996,41054,'_fft_page_format','field_61ae213f1f218'),(226997,41054,'fft_hide_nav','0'),(226998,41054,'_fft_hide_nav','field_635bd5e43527c'),(226999,41054,'fft_hide_header_call_to_action','0'),(227000,41054,'_fft_hide_header_call_to_action','field_635bd6723527d'),(227001,41054,'fft_page_sitemap','0'),(227002,41054,'_fft_page_sitemap','field_61af9b34e8181'),(227003,41054,'blocks_0_acfe_flexible_toggle',''),(227004,41054,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(227005,41054,'blocks_0_acfe_flexible_layout_title','Text Block'),(227006,41054,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(227007,41054,'blocks_0_options_theme','#ffffff'),(227008,41054,'_blocks_0_options_theme','field_6176830e2ad17'),(227009,41054,'blocks_0_options',''),(227010,41054,'_blocks_0_options','field_6176830e2ad16'),(227011,41054,'blocks_0_text_block_heading','Overview'),(227012,41054,'_blocks_0_text_block_heading','field_617669d413097'),(227013,41054,'blocks_0_text_block_content','Unlock a profound comprehension of the human body and movement patterns with our 2-hour online virtual classroom recording, complete with a comprehensive handout available for immediate download.\r\n\r\nAre your clients grappling with limited squat range or struggling to press overhead due to shoulder issues? Perhaps they avoid certain exercises due to physical constraints or pain. Witness transformative improvements in their movement and address your own mobility goals.'),(227014,41054,'_blocks_0_text_block_content','field_617669ec13098'),(227015,41054,'blocks_1_acfe_flexible_toggle',''),(227016,41054,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(227017,41054,'blocks_1_acfe_flexible_layout_title','Timeline'),(227018,41054,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(227019,41054,'blocks_1_options_theme','#f5f5f5'),(227020,41054,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(227021,41054,'blocks_1_options',''),(227022,41054,'_blocks_1_options','field_6177de53d1195'),(227023,41054,'blocks_1_timeline_content_title',''),(227024,41054,'_blocks_1_timeline_content_title','field_6177de53d1198'),(227025,41054,'blocks_1_timeline_content_heading','Course Information'),(227026,41054,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(227027,41054,'blocks_1_timeline_content_text','<strong>Discover how to:</strong>\r\n<ul>\r\n 	<li>Conduct evidence-based screenings to pinpoint movement limitations.</li>\r\n 	<li>Master techniques enhancing the functionality of the pelvis, spine, and shoulder.</li>\r\n</ul>'),(227028,41054,'_blocks_1_timeline_content_text','field_6177de53d119a'),(227029,41054,'blocks_1_timeline_content_actions',''),(227030,41054,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(227031,41054,'blocks_1_timeline_content',''),(227032,41054,'_blocks_1_timeline_content','field_6177de53d1197'),(227033,41054,'blocks_1_timeline_items_0_title','Explore Pelvic Biomechanics'),(227034,41054,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(227035,41054,'blocks_1_timeline_items_0_text','Uncover evidence-based assessments, identify sub-clinical muscle spasms, discern between structural and functional leg length discrepancies, and implement exercises to enhance pelvic function.'),(227036,41054,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(227037,41054,'blocks_1_timeline_items_1_title','Dive into Spine Biomechanics'),(227038,41054,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(227039,41054,'blocks_1_timeline_items_1_text','Learn how to assess and correct thoracic rotation – a game-changing skill with far-reaching effects.'),(227040,41054,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(227041,41054,'blocks_1_timeline_items_2_title','Delve into Shoulder Biomechanics'),(227042,41054,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(227043,41054,'blocks_1_timeline_items_2_text','Assess and correct shoulder function, focusing on key muscles influencing posture and movement right down to the feet.'),(227044,41054,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(227045,41054,'blocks_1_timeline_items','3'),(227046,41054,'_blocks_1_timeline_items','field_6177de53d119d'),(227047,41054,'blocks_2_acfe_flexible_toggle',''),(227048,41054,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(227049,41054,'blocks_2_acfe_flexible_layout_title','Text Block'),(227050,41054,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(227051,41054,'blocks_2_options_theme','#ffffff'),(227052,41054,'_blocks_2_options_theme','field_6176830e2ad17'),(227053,41054,'blocks_2_options',''),(227054,41054,'_blocks_2_options','field_6176830e2ad16'),(227055,41054,'blocks_2_text_block_heading','Please note'),(227056,41054,'_blocks_2_text_block_heading','field_617669d413097'),(227057,41054,'blocks_2_text_block_content','This online training aims to inform and enrich the understanding of fitness and exercise instructors through Continuing Professional Development (CPD). For an attendance certificate, face-to-face participation is required. Upon payment, access the video link and instantly download the handout PDF. Revisit using your registered email to access all purchases.\r\n\r\nOpt to attend the face-to-face Intrinsic Biomechanics Workshop, and not only will you receive a refund for the online training, but you\'ll also secure your attendance certificate.'),(227058,41054,'_blocks_2_text_block_content','field_617669ec13098'),(227059,41054,'blocks_3_acfe_flexible_toggle',''),(227060,41054,'_blocks_3_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(227061,41054,'blocks_3_acfe_flexible_layout_title','Button(s)'),(227062,41054,'_blocks_3_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(227063,41054,'blocks_3_options_theme','#ffffff'),(227064,41054,'_blocks_3_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(227065,41054,'blocks_3_options',''),(227066,41054,'_blocks_3_options','field_623b03edb6e65'),(227067,41054,'blocks_3_actions_0_button','a:3:{s:5:\"title\";s:20:\"Add To Basket - Free\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(227068,41054,'_blocks_3_actions_0_button','field_623b03edb6e6f'),(227069,41054,'blocks_3_actions','1'),(227070,41054,'_blocks_3_actions','field_623b03edb6e6e'),(227071,41054,'blocks_4_acfe_flexible_toggle',''),(227072,41054,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(227073,41054,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(227074,41054,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(227075,41054,'blocks_4_options_theme','#ffffff'),(227076,41054,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(227077,41054,'blocks_4_options_state','0'),(227078,41054,'_blocks_4_options_state','field_6239fcb7508c5'),(227079,41054,'blocks_4_options',''),(227080,41054,'_blocks_4_options','field_6177e2991ac44'),(227081,41054,'blocks_4_content_title',''),(227082,41054,'_blocks_4_content_title','field_64d237e8bb1e2'),(227083,41054,'blocks_4_content_heading',''),(227084,41054,'_blocks_4_content_heading','field_64d237e8bb1e3'),(227085,41054,'blocks_4_content_text',''),(227086,41054,'_blocks_4_content_text','field_64d237e8bb1e4'),(227087,41054,'blocks_4_content_actions',''),(227088,41054,'_blocks_4_content_actions','field_64d237e8bb1e5'),(227089,41054,'blocks_4_content_align','left'),(227090,41054,'_blocks_4_content_align','field_64d2443e6b6aa'),(227091,41054,'blocks_4_content',''),(227092,41054,'_blocks_4_content','field_64d237e8bb1e1'),(227093,41054,'blocks_4_accordion_content','custom'),(227094,41054,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(227095,41054,'blocks_4_accordion_items',''),(227096,41054,'_blocks_4_accordion_items','field_6177e2991ac4c'),(227097,41054,'blocks_4_actions',''),(227098,41054,'_blocks_4_actions','field_61a746a817f7a'),(227099,41054,'blocks','a:5:{i:0;s:10:\"text_block\";i:1;s:13:\"step_timeline\";i:2;s:10:\"text_block\";i:3;s:7:\"buttons\";i:4;s:10:\"accordions\";}'),(227100,41054,'_blocks','field_6176696113096'),(227101,41054,'course_label_text','Introduction to Intrinsic Biomechanics'),(227102,41054,'_course_label_text','field_61e17babf71fa'),(227103,41054,'course_label',''),(227104,41054,'_course_label','field_61e12f92749a7'),(227105,41054,'course_description','Welcome to the Intrinsic Biomechanics Online CPD Training – Gain a deeper level of understanding of the body and human movement.'),(227106,41054,'_course_description','field_617ac5788e5e1'),(227107,41054,'course_key_info','3'),(227108,41054,'_course_key_info','field_617ac6ad8e5e2'),(227109,41054,'course_included','Conduct evidence-based screenings to pinpoint movement limitations.\r\nMaster techniques enhancing the functionality of the pelvis, spine, and shoulder.'),(227110,41054,'_course_included','field_617ac6f08e5e4'),(227111,41054,'course_label_label_theme','#0d1f73'),(227112,41054,'_course_label_label_theme','field_61e17bb8f71fb'),(227113,41054,'course_key_info_0_text','CPD'),(227114,41054,'_course_key_info_0_text','field_617ac6c38e5e3'),(227115,41054,'course_key_info_1_text','CIMSPA Endorsed'),(227116,41054,'_course_key_info_1_text','field_617ac6c38e5e3'),(227117,41054,'course_key_info_2_text','Online Learning'),(227118,41054,'_course_key_info_2_text','field_617ac6c38e5e3'),(227119,40280,'course_key_info_3_text','Recorded Classrooms'),(227120,40280,'_course_key_info_3_text','field_617ac6c38e5e3'),(227121,41055,'hide_hero','0'),(227122,41055,'_hide_hero','field_66a2380fcda39'),(227123,41055,'hero_title','The Practical Anatomy Series'),(227124,41055,'_hero_title','field_617571fe285e8'),(227125,41055,'hero_text',''),(227126,41055,'_hero_text','field_6175723c285e9'),(227127,41055,'hero_actions',''),(227128,41055,'_hero_actions','field_61757270285ea'),(227129,41055,'hero_style','default'),(227130,41055,'_hero_style','field_62051d9dc5324'),(227131,41055,'_thumbnail_id','40634'),(227132,41055,'__thumbnail_id','field_617570855ddaf'),(227133,41055,'hero_image_pos_x','right'),(227134,41055,'_hero_image_pos_x','field_62ec3d05390bb'),(227135,41055,'hero_image_pos_y','top'),(227136,41055,'_hero_image_pos_y','field_62ec3d05390bc'),(227137,41055,'hero_image_pos',''),(227138,41055,'_hero_image_pos','field_62ec3d05390ba'),(227139,41055,'fft_hide_from_listings','0'),(227140,41055,'_fft_hide_from_listings','field_61f1320446ab2'),(227141,41055,'fft_page_format','default'),(227142,41055,'_fft_page_format','field_61ae213f1f218'),(227143,41055,'fft_hide_nav','0'),(227144,41055,'_fft_hide_nav','field_635bd5e43527c'),(227145,41055,'fft_hide_header_call_to_action','0'),(227146,41055,'_fft_hide_header_call_to_action','field_635bd6723527d'),(227147,41055,'fft_page_sitemap','0'),(227148,41055,'_fft_page_sitemap','field_61af9b34e8181'),(227149,41055,'blocks_0_acfe_flexible_toggle',''),(227150,41055,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(227151,41055,'blocks_0_acfe_flexible_layout_title','Template'),(227152,41055,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(227153,41055,'blocks_0_template','39087'),(227154,41055,'_blocks_0_template','field_617bdd570fe01'),(227155,41055,'blocks_1_acfe_flexible_toggle',''),(227156,41055,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(227157,41055,'blocks_1_acfe_flexible_layout_title','Text Block'),(227158,41055,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(227159,41055,'blocks_1_options_theme','#f5f5f5'),(227160,41055,'_blocks_1_options_theme','field_6176830e2ad17'),(227161,41055,'blocks_1_options',''),(227162,41055,'_blocks_1_options','field_6176830e2ad16'),(227163,41055,'blocks_1_text_block_heading','Overview'),(227164,41055,'_blocks_1_text_block_heading','field_617669d413097'),(227165,41055,'blocks_1_text_block_content','Discover the Practical Anatomy Series – a comprehensive learning experience comprising of five Online Recorded Classrooms and five E-Zines. If you\'ve been feeling a gap in your anatomy training or wish to simplify your learning process, this series is designed to support your journey into practical anatomy and intrinsic biomechanics.'),(227166,41055,'_blocks_1_text_block_content','field_617669ec13098'),(227167,41055,'blocks_2_acfe_flexible_toggle',''),(227168,41055,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(227169,41055,'blocks_2_acfe_flexible_layout_title','Timeline'),(227170,41055,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(227171,41055,'blocks_2_options_theme','#ffffff'),(227172,41055,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(227173,41055,'blocks_2_options',''),(227174,41055,'_blocks_2_options','field_6177de53d1195'),(227175,41055,'blocks_2_timeline_content_title',''),(227176,41055,'_blocks_2_timeline_content_title','field_6177de53d1198'),(227177,41055,'blocks_2_timeline_content_heading','Course Info'),(227178,41055,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(227179,41055,'blocks_2_timeline_content_text','Practical anatomy is more than memorisation; it\'s about applying your knowledge to understand your clients\' bodies and implementing practical solutions. Dive into the series for simplified anatomy learning, fun facts, and visual/memory tactics that enhance your understanding. The five online recorded classrooms and accompanying E-Zines provide a holistic approach to practical anatomy and intrinsic biomechanics.'),(227180,41055,'_blocks_2_timeline_content_text','field_6177de53d119a'),(227181,41055,'blocks_2_timeline_content_actions',''),(227182,41055,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(227183,41055,'blocks_2_timeline_content',''),(227184,41055,'_blocks_2_timeline_content','field_6177de53d1197'),(227185,41055,'blocks_2_timeline_items_0_title','CIMSPA Points'),(227186,41055,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(227187,41055,'blocks_2_timeline_items_0_text','Each of the five practical anatomy online webinars included in this series is worth one CPD, contributing to a total of five CIMSPA CPD points with this purchase. Elevate your professional development and enhance your practical skills in anatomy. '),(227188,41055,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(227189,41055,'blocks_2_timeline_items_1_title','Are you ready? '),(227190,41055,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(227191,41055,'blocks_2_timeline_items_1_text','Ready to enhance your anatomy knowledge and practical skills? Upon purchase, you not only gain access to the 5 online recorded classrooms and 5 E-Zines, but also set yourself on a path to deduct the series cost from the full price of our Diploma in Biomechanics Coaching if you choose to enrol.  '),(227192,41055,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(227193,41055,'blocks_2_timeline_items','2'),(227194,41055,'_blocks_2_timeline_items','field_6177de53d119d'),(227195,41055,'blocks_3_acfe_flexible_toggle',''),(227196,41055,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(227197,41055,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(227198,41055,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(227199,41055,'blocks_3_options_theme','#b61234'),(227200,41055,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(227201,41055,'blocks_3_options_reverse','0'),(227202,41055,'_blocks_3_options_reverse','field_61768049bb8ac'),(227203,41055,'blocks_3_options',''),(227204,41055,'_blocks_3_options','field_617682517c334'),(227205,41055,'blocks_3_split_5050_image','40635'),(227206,41055,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(227207,41055,'blocks_3_split_5050_video',''),(227208,41055,'_blocks_3_split_5050_video','field_6239f3160848a'),(227209,41055,'blocks_3_split_5050_content_title',''),(227210,41055,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(227211,41055,'blocks_3_split_5050_content_heading','Invest in your learning journey'),(227212,41055,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(227213,41055,'blocks_3_split_5050_content_text','Invest in your learning journey and take the first step towards a deeper understanding of your clients\' bodies.'),(227214,41055,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(227215,41055,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(227216,41055,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(227217,41055,'blocks_3_split_5050_content_actions','1'),(227218,41055,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(227219,41055,'blocks_3_split_5050_content',''),(227220,41055,'_blocks_3_split_5050_content','field_61767afceb8ba'),(227221,41055,'blocks_4_acfe_flexible_toggle',''),(227222,41055,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(227223,41055,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(227224,41055,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(227225,41055,'blocks_4_options_theme','#ffffff'),(227226,41055,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(227227,41055,'blocks_4_options_state','0'),(227228,41055,'_blocks_4_options_state','field_6239fcb7508c5'),(227229,41055,'blocks_4_options',''),(227230,41055,'_blocks_4_options','field_6177e2991ac44'),(227231,41055,'blocks_4_content_title',''),(227232,41055,'_blocks_4_content_title','field_64d237e8bb1e2'),(227233,41055,'blocks_4_content_heading','FAQ\'s'),(227234,41055,'_blocks_4_content_heading','field_64d237e8bb1e3'),(227235,41055,'blocks_4_content_text',''),(227236,41055,'_blocks_4_content_text','field_64d237e8bb1e4'),(227237,41055,'blocks_4_content_actions',''),(227238,41055,'_blocks_4_content_actions','field_64d237e8bb1e5'),(227239,41055,'blocks_4_content_align','left'),(227240,41055,'_blocks_4_content_align','field_64d2443e6b6aa'),(227241,41055,'blocks_4_content',''),(227242,41055,'_blocks_4_content','field_64d237e8bb1e1'),(227243,41055,'blocks_4_accordion_content','custom'),(227244,41055,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(227245,41055,'blocks_4_accordion_items',''),(227246,41055,'_blocks_4_accordion_items','field_6177e2991ac4c'),(227247,41055,'blocks_4_actions',''),(227248,41055,'_blocks_4_actions','field_61a746a817f7a'),(227249,41055,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:10:\"accordions\";}'),(227250,41055,'_blocks','field_6176696113096'),(227251,41055,'course_label_text','Practical Anatomy Series'),(227252,41055,'_course_label_text','field_61e17babf71fa'),(227253,41055,'course_label',''),(227254,41055,'_course_label','field_61e12f92749a7'),(227255,41055,'course_description','Discover the Practical Anatomy Series – a comprehensive learning experience comprising of five Online Recorded Classrooms and five E-Zines'),(227256,41055,'_course_description','field_617ac5788e5e1'),(227257,41055,'course_key_info','4'),(227258,41055,'_course_key_info','field_617ac6ad8e5e2'),(227259,41055,'course_included','5 x Recorded Classrooms\r\n5 x E-zines'),(227260,41055,'_course_included','field_617ac6f08e5e4'),(227261,41055,'course_label_label_theme','#0d1f73'),(227262,41055,'_course_label_label_theme','field_61e17bb8f71fb'),(227263,41055,'course_key_info_0_text','CPD'),(227264,41055,'_course_key_info_0_text','field_617ac6c38e5e3'),(227265,41055,'course_key_info_1_text','E-Zines '),(227266,41055,'_course_key_info_1_text','field_617ac6c38e5e3'),(227267,41055,'course_key_info_2_text','Online Learning'),(227268,41055,'_course_key_info_2_text','field_617ac6c38e5e3'),(227269,41055,'course_key_info_3_text','Recorded Classrooms'),(227270,41055,'_course_key_info_3_text','field_617ac6c38e5e3'),(227271,40281,'course_key_info_2_text','No Entry Requirements'),(227272,40281,'_course_key_info_2_text','field_617ac6c38e5e3'),(227273,41056,'hide_hero','0'),(227274,41056,'_hide_hero','field_66a2380fcda39'),(227275,41056,'hero_title','Introduction To Running Biomechanics'),(227276,41056,'_hero_title','field_617571fe285e8'),(227277,41056,'hero_text','Discover the Secrets of Optimal Running Styles in this Comprehensive 3hr 15min Classroom Recording & Handout Session! '),(227278,41056,'_hero_text','field_6175723c285e9'),(227279,41056,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(227280,41056,'_hero_actions_0_button','field_61757281285eb'),(227281,41056,'hero_actions','1'),(227282,41056,'_hero_actions','field_61757270285ea'),(227283,41056,'hero_style','default'),(227284,41056,'_hero_style','field_62051d9dc5324'),(227285,41056,'_thumbnail_id','40611'),(227286,41056,'__thumbnail_id','field_617570855ddaf'),(227287,41056,'hero_image_pos_x','right'),(227288,41056,'_hero_image_pos_x','field_62ec3d05390bb'),(227289,41056,'hero_image_pos_y','top'),(227290,41056,'_hero_image_pos_y','field_62ec3d05390bc'),(227291,41056,'hero_image_pos',''),(227292,41056,'_hero_image_pos','field_62ec3d05390ba'),(227293,41056,'fft_hide_from_listings','0'),(227294,41056,'_fft_hide_from_listings','field_61f1320446ab2'),(227295,41056,'fft_page_format','default'),(227296,41056,'_fft_page_format','field_61ae213f1f218'),(227297,41056,'fft_hide_nav','0'),(227298,41056,'_fft_hide_nav','field_635bd5e43527c'),(227299,41056,'fft_hide_header_call_to_action','0'),(227300,41056,'_fft_hide_header_call_to_action','field_635bd6723527d'),(227301,41056,'fft_page_sitemap','0'),(227302,41056,'_fft_page_sitemap','field_61af9b34e8181'),(227303,41056,'blocks_0_acfe_flexible_toggle',''),(227304,41056,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(227305,41056,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(227306,41056,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(227307,41056,'blocks_0_options_theme','#ffffff'),(227308,41056,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(227309,41056,'blocks_0_options_reverse','0'),(227310,41056,'_blocks_0_options_reverse','field_61768049bb8ac'),(227311,41056,'blocks_0_options',''),(227312,41056,'_blocks_0_options','field_617682517c334'),(227313,41056,'blocks_0_split_5050_image','40612'),(227314,41056,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(227315,41056,'blocks_0_split_5050_video',''),(227316,41056,'_blocks_0_split_5050_video','field_6239f3160848a'),(227317,41056,'blocks_0_split_5050_content_title',''),(227318,41056,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(227319,41056,'blocks_0_split_5050_content_heading','Course Overview'),(227320,41056,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(227321,41056,'blocks_0_split_5050_content_text','<strong>Embrace the Essence of Running</strong>\r\n\r\nRunning is a cornerstone of fitness, yet the ongoing debate on the best running style can be confusing. Simplify the complexity with our Introduction to Running Biomechanics Online Training.\r\n\r\n<strong>Tailored for You</strong>\r\n\r\nNo one-size-fits-all approach here. This workshop dissects the evidence supporting various running styles, empowering you to make informed choices for you and your clients.\r\n\r\n<strong>What You\'ll Gain</strong>\r\n<ul>\r\n 	<li>Master running club terminology.</li>\r\n 	<li>Grasp the mechanics and sequencing of different running gaits.</li>\r\n 	<li>Explore extrinsic influences and identify intrinsic restrictions.</li>\r\n</ul>'),(227322,41056,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(227323,41056,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(227324,41056,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(227325,41056,'blocks_0_split_5050_content_actions','1'),(227326,41056,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(227327,41056,'blocks_0_split_5050_content',''),(227328,41056,'_blocks_0_split_5050_content','field_61767afceb8ba'),(227329,41056,'blocks_1_acfe_flexible_toggle',''),(227330,41056,'_blocks_1_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(227331,41056,'blocks_1_acfe_flexible_layout_title','Tabs'),(227332,41056,'_blocks_1_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(227333,41056,'blocks_1_options_theme','#f5f5f5'),(227334,41056,'_blocks_1_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(227335,41056,'blocks_1_options',''),(227336,41056,'_blocks_1_options','field_6177cfcd8140f'),(227337,41056,'blocks_1_tabs_0_tab_label','Elevate Your Expertise '),(227338,41056,'_blocks_1_tabs_0_tab_label','field_6177d0068141a'),(227339,41056,'blocks_1_tabs_0_tab_content_title',''),(227340,41056,'_blocks_1_tabs_0_tab_content_title','field_6177cfcd81414'),(227341,41056,'blocks_1_tabs_0_tab_content_heading',''),(227342,41056,'_blocks_1_tabs_0_tab_content_heading','field_6177cfcd81415'),(227343,41056,'blocks_1_tabs_0_tab_content_text','Crafted for fitness and exercise instructors seeking CPD, this online training enhances your understanding of both intrinsic and extrinsic biomechanics.\r\n\r\n<em>Note: A face-to-face attendance option is available for an attendance certificate.</em>'),(227344,41056,'_blocks_1_tabs_0_tab_content_text','field_6177cfcd81416'),(227345,41056,'blocks_1_tabs_0_tab_content_actions',''),(227346,41056,'_blocks_1_tabs_0_tab_content_actions','field_6177cfcd81417'),(227347,41056,'blocks_1_tabs_0_tab_content',''),(227348,41056,'_blocks_1_tabs_0_tab_content','field_6177cfcd81413'),(227349,41056,'blocks_1_tabs_0_tab_image',''),(227350,41056,'_blocks_1_tabs_0_tab_image','field_6177cfcd81412'),(227351,41056,'blocks_1_tabs_1_tab_label','Seamless Access '),(227352,41056,'_blocks_1_tabs_1_tab_label','field_6177d0068141a'),(227353,41056,'blocks_1_tabs_1_tab_content_title',''),(227354,41056,'_blocks_1_tabs_1_tab_content_title','field_6177cfcd81414'),(227355,41056,'blocks_1_tabs_1_tab_content_heading',''),(227356,41056,'_blocks_1_tabs_1_tab_content_heading','field_6177cfcd81415'),(227357,41056,'blocks_1_tabs_1_tab_content_text','Upon payment, promptly access the video link and download your handout PDF. For future access, log in with your email.'),(227358,41056,'_blocks_1_tabs_1_tab_content_text','field_6177cfcd81416'),(227359,41056,'blocks_1_tabs_1_tab_content_actions',''),(227360,41056,'_blocks_1_tabs_1_tab_content_actions','field_6177cfcd81417'),(227361,41056,'blocks_1_tabs_1_tab_content',''),(227362,41056,'_blocks_1_tabs_1_tab_content','field_6177cfcd81413'),(227363,41056,'blocks_1_tabs_1_tab_image',''),(227364,41056,'_blocks_1_tabs_1_tab_image','field_6177cfcd81412'),(227365,41056,'blocks_1_tabs_2_tab_label','Exclusive Workshop Option! '),(227366,41056,'_blocks_1_tabs_2_tab_label','field_6177d0068141a'),(227367,41056,'blocks_1_tabs_2_tab_content_title',''),(227368,41056,'_blocks_1_tabs_2_tab_content_title','field_6177cfcd81414'),(227369,41056,'blocks_1_tabs_2_tab_content_heading',''),(227370,41056,'_blocks_1_tabs_2_tab_content_heading','field_6177cfcd81415'),(227371,41056,'blocks_1_tabs_2_tab_content_text','Opt for the face-to-face Running Biomechanics Workshop, receive a refund on the online training, and secure your attendance certificate.'),(227372,41056,'_blocks_1_tabs_2_tab_content_text','field_6177cfcd81416'),(227373,41056,'blocks_1_tabs_2_tab_content_actions',''),(227374,41056,'_blocks_1_tabs_2_tab_content_actions','field_6177cfcd81417'),(227375,41056,'blocks_1_tabs_2_tab_content',''),(227376,41056,'_blocks_1_tabs_2_tab_content','field_6177cfcd81413'),(227377,41056,'blocks_1_tabs_2_tab_image',''),(227378,41056,'_blocks_1_tabs_2_tab_image','field_6177cfcd81412'),(227379,41056,'blocks_1_tabs_3_tab_label','Elevate Your Run Today '),(227380,41056,'_blocks_1_tabs_3_tab_label','field_6177d0068141a'),(227381,41056,'blocks_1_tabs_3_tab_content_title',''),(227382,41056,'_blocks_1_tabs_3_tab_content_title','field_6177cfcd81414'),(227383,41056,'blocks_1_tabs_3_tab_content_heading',''),(227384,41056,'_blocks_1_tabs_3_tab_content_heading','field_6177cfcd81415'),(227385,41056,'blocks_1_tabs_3_tab_content_text','Revolutionise your running journey with Introduction to Running Biomechanics. Enrol now for a transformative learning experience!'),(227386,41056,'_blocks_1_tabs_3_tab_content_text','field_6177cfcd81416'),(227387,41056,'blocks_1_tabs_3_tab_content_actions',''),(227388,41056,'_blocks_1_tabs_3_tab_content_actions','field_6177cfcd81417'),(227389,41056,'blocks_1_tabs_3_tab_content',''),(227390,41056,'_blocks_1_tabs_3_tab_content','field_6177cfcd81413'),(227391,41056,'blocks_1_tabs_3_tab_image',''),(227392,41056,'_blocks_1_tabs_3_tab_image','field_6177cfcd81412'),(227393,41056,'blocks_1_tabs','4'),(227394,41056,'_blocks_1_tabs','field_6177cff281419'),(227395,41056,'blocks_2_acfe_flexible_toggle',''),(227396,41056,'_blocks_2_acfe_flexible_toggle','field_layout_623b03edb6e64_toggle'),(227397,41056,'blocks_2_acfe_flexible_layout_title','Button(s)'),(227398,41056,'_blocks_2_acfe_flexible_layout_title','field_layout_623b03edb6e64_title'),(227399,41056,'blocks_2_options_theme','#ffffff'),(227400,41056,'_blocks_2_options_theme','field_623b03edb6e66_field_6176830e2ad17'),(227401,41056,'blocks_2_options',''),(227402,41056,'_blocks_2_options','field_623b03edb6e65'),(227403,41056,'blocks_2_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(227404,41056,'_blocks_2_actions_0_button','field_623b03edb6e6f'),(227405,41056,'blocks_2_actions','1'),(227406,41056,'_blocks_2_actions','field_623b03edb6e6e'),(227407,41056,'blocks_3_acfe_flexible_toggle',''),(227408,41056,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(227409,41056,'blocks_3_acfe_flexible_layout_title','Text Block'),(227410,41056,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(227411,41056,'blocks_3_options_theme','#ffffff'),(227412,41056,'_blocks_3_options_theme','field_6176830e2ad17'),(227413,41056,'blocks_3_options',''),(227414,41056,'_blocks_3_options','field_6176830e2ad16'),(227415,41056,'blocks_3_text_block_heading','Please Note'),(227416,41056,'_blocks_3_text_block_heading','field_617669d413097'),(227417,41056,'blocks_3_text_block_content','This online training is designed to inform &amp; enhance understanding for fitness and exercise instructors through CPD. However, to gain an attendance certificate face to face attendance is required. Once you make your payment, please see the video link and DOWNLOAD your handout pdf immediately for instant access. Otherwise, you simply need to log back in using the email you signed in with to access all purchases.'),(227418,41056,'_blocks_3_text_block_content','field_617669ec13098'),(227419,41056,'blocks_4_acfe_flexible_toggle',''),(227420,41056,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(227421,41056,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(227422,41056,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(227423,41056,'blocks_4_options_theme','#ffffff'),(227424,41056,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(227425,41056,'blocks_4_options_state','0'),(227426,41056,'_blocks_4_options_state','field_6239fcb7508c5'),(227427,41056,'blocks_4_options',''),(227428,41056,'_blocks_4_options','field_6177e2991ac44'),(227429,41056,'blocks_4_content_title',''),(227430,41056,'_blocks_4_content_title','field_64d237e8bb1e2'),(227431,41056,'blocks_4_content_heading',''),(227432,41056,'_blocks_4_content_heading','field_64d237e8bb1e3'),(227433,41056,'blocks_4_content_text',''),(227434,41056,'_blocks_4_content_text','field_64d237e8bb1e4'),(227435,41056,'blocks_4_content_actions',''),(227436,41056,'_blocks_4_content_actions','field_64d237e8bb1e5'),(227437,41056,'blocks_4_content_align','left'),(227438,41056,'_blocks_4_content_align','field_64d2443e6b6aa'),(227439,41056,'blocks_4_content',''),(227440,41056,'_blocks_4_content','field_64d237e8bb1e1'),(227441,41056,'blocks_4_accordion_content','custom'),(227442,41056,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(227443,41056,'blocks_4_accordion_items',''),(227444,41056,'_blocks_4_accordion_items','field_6177e2991ac4c'),(227445,41056,'blocks_4_actions',''),(227446,41056,'_blocks_4_actions','field_61a746a817f7a'),(227447,41056,'blocks_5_acfe_flexible_toggle',''),(227448,41056,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(227449,41056,'blocks_5_acfe_flexible_layout_title','Text Block'),(227450,41056,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(227451,41056,'blocks_5_options_theme','#ffffff'),(227452,41056,'_blocks_5_options_theme','field_6176830e2ad17'),(227453,41056,'blocks_5_options',''),(227454,41056,'_blocks_5_options','field_6176830e2ad16'),(227455,41056,'blocks_5_text_block_heading','See Our Other CPD Courses'),(227456,41056,'_blocks_5_text_block_heading','field_617669d413097'),(227457,41056,'blocks_5_text_block_content','Check out our other frequently purchased CPD courses'),(227458,41056,'_blocks_5_text_block_content','field_617669ec13098'),(227459,41056,'blocks_6_acfe_flexible_toggle',''),(227460,41056,'_blocks_6_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(227461,41056,'blocks_6_acfe_flexible_layout_title','Course Comparison'),(227462,41056,'_blocks_6_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(227463,41056,'blocks_6_options_theme','#ffffff'),(227464,41056,'_blocks_6_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(227465,41056,'blocks_6_options',''),(227466,41056,'_blocks_6_options','field_617ac0b7f6c08'),(227467,41056,'blocks_6_show','category'),(227468,41056,'_blocks_6_show','field_61a49cba9d946'),(227469,41056,'blocks_6_category','403'),(227470,41056,'_blocks_6_category','field_61a49cd79d947'),(227471,41056,'blocks','a:7:{i:0;s:10:\"split_5050\";i:1;s:4:\"tabs\";i:2;s:7:\"buttons\";i:3;s:10:\"text_block\";i:4;s:10:\"accordions\";i:5;s:10:\"text_block\";i:6;s:14:\"course_compare\";}'),(227472,41056,'_blocks','field_6176696113096'),(227473,41056,'course_label_text','Introduction To Running Biomechanics'),(227474,41056,'_course_label_text','field_61e17babf71fa'),(227475,41056,'course_label',''),(227476,41056,'_course_label','field_61e12f92749a7'),(227477,41056,'course_description','Discover the Secrets of Optimal Running Styles in this Comprehensive 3hr 15min Classroom Recording & Handout Session! '),(227478,41056,'_course_description','field_617ac5788e5e1'),(227479,41056,'course_key_info','3'),(227480,41056,'_course_key_info','field_617ac6ad8e5e2'),(227481,41056,'course_included','Master running club terminology.\r\nGrasp the mechanics and sequencing of different running gaits.\r\nExplore extrinsic influences and identify intrinsic restrictions.'),(227482,41056,'_course_included','field_617ac6f08e5e4'),(227483,41056,'course_label_label_theme','#0d1f73'),(227484,41056,'_course_label_label_theme','field_61e17bb8f71fb'),(227485,41056,'course_key_info_0_text','Online Learning'),(227486,41056,'_course_key_info_0_text','field_617ac6c38e5e3'),(227487,41056,'course_key_info_1_text','CPD'),(227488,41056,'_course_key_info_1_text','field_617ac6c38e5e3'),(227489,41056,'blocks_6_open_whats_included','1'),(227490,41056,'_blocks_6_open_whats_included','field_66ebfd679450c'),(227491,41056,'blocks_6_open_key_information','0'),(227492,41056,'_blocks_6_open_key_information','field_66ebfd7f9450d'),(227493,41056,'blocks_6_open',''),(227494,41056,'_blocks_6_open','field_66ebfd009450b'),(227495,41056,'course_key_info_2_text','No Entry Requirements'),(227496,41056,'_course_key_info_2_text','field_617ac6c38e5e3'),(227497,41057,'hide_hero','0'),(227498,41057,'_hide_hero','field_66a2380fcda39'),(227499,41057,'hero_title',''),(227500,41057,'_hero_title','field_617571fe285e8'),(227501,41057,'hero_text','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(227502,41057,'_hero_text','field_6175723c285e9'),(227503,41057,'hero_actions','1'),(227504,41057,'_hero_actions','field_61757270285ea'),(227505,41057,'hero_style','default'),(227506,41057,'_hero_style','field_62051d9dc5324'),(227507,41057,'_thumbnail_id','40288'),(227508,41057,'__thumbnail_id','field_617570855ddaf'),(227509,41057,'hero_image_pos_x','right'),(227510,41057,'_hero_image_pos_x','field_62ec3d05390bb'),(227511,41057,'hero_image_pos_y','top'),(227512,41057,'_hero_image_pos_y','field_62ec3d05390bc'),(227513,41057,'hero_image_pos',''),(227514,41057,'_hero_image_pos','field_62ec3d05390ba'),(227515,41057,'fft_hide_from_listings','0'),(227516,41057,'_fft_hide_from_listings','field_61f1320446ab2'),(227517,41057,'fft_page_format','default'),(227518,41057,'_fft_page_format','field_61ae213f1f218'),(227519,41057,'fft_hide_nav','0'),(227520,41057,'_fft_hide_nav','field_635bd5e43527c'),(227521,41057,'fft_hide_header_call_to_action','0'),(227522,41057,'_fft_hide_header_call_to_action','field_635bd6723527d'),(227523,41057,'fft_page_sitemap','0'),(227524,41057,'_fft_page_sitemap','field_61af9b34e8181'),(227525,41057,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:5:\"icons\";i:2;s:10:\"split_5050\";i:3;s:4:\"tabs\";}'),(227526,41057,'_blocks','field_6176696113096'),(227527,41057,'course_label_text','Womens Health - Menopause and Programming'),(227528,41057,'_course_label_text','field_61e17babf71fa'),(227529,41057,'course_label',''),(227530,41057,'_course_label','field_61e12f92749a7'),(227531,41057,'course_description','Empower your fitness career with specialized knowledge in women\'s health and menopause.'),(227532,41057,'_course_description','field_617ac5788e5e1'),(227533,41057,'course_key_info','3'),(227534,41057,'_course_key_info','field_617ac6ad8e5e2'),(227535,41057,'course_included','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(227536,41057,'_course_included','field_617ac6f08e5e4'),(227537,41057,'blocks_0_acfe_flexible_toggle',''),(227538,41057,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(227539,41057,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(227540,41057,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(227541,41057,'blocks_0_options_theme','#ffffff'),(227542,41057,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(227543,41057,'blocks_0_options_reverse','0'),(227544,41057,'_blocks_0_options_reverse','field_61768049bb8ac'),(227545,41057,'blocks_0_options',''),(227546,41057,'_blocks_0_options','field_617682517c334'),(227547,41057,'blocks_0_split_5050_image','40290'),(227548,41057,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(227549,41057,'blocks_0_split_5050_video',''),(227550,41057,'_blocks_0_split_5050_video','field_6239f3160848a'),(227551,41057,'blocks_0_split_5050_content_title',''),(227552,41057,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(227553,41057,'blocks_0_split_5050_content_heading','Optimize Women\'s Health & Fitness'),(227554,41057,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(227555,41057,'blocks_0_split_5050_content_text','Enhance your expertise in women’s health and fitness. Learn to effectively support clients through the menstrual cycle and menopause, optimizing their well-being and performance with tailored nutritional and exercise programming.'),(227556,41057,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(227557,41057,'blocks_0_split_5050_content_actions',''),(227558,41057,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(227559,41057,'blocks_0_split_5050_content',''),(227560,41057,'_blocks_0_split_5050_content','field_61767afceb8ba'),(227561,41057,'blocks_1_acfe_flexible_toggle',''),(227562,41057,'_blocks_1_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(227563,41057,'blocks_1_acfe_flexible_layout_title','Icons'),(227564,41057,'_blocks_1_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(227565,41057,'blocks_1_options_theme','#b61234'),(227566,41057,'_blocks_1_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(227567,41057,'blocks_1_options_format','grid'),(227568,41057,'_blocks_1_options_format','field_64bfde9a90690'),(227569,41057,'blocks_1_options',''),(227570,41057,'_blocks_1_options','field_64bfdd9b90684'),(227571,41057,'blocks_1_row_content_title',''),(227572,41057,'_blocks_1_row_content_title','field_64bfdd9b90687'),(227573,41057,'blocks_1_row_content_heading','Here\'s what you\'ll gain'),(227574,41057,'_blocks_1_row_content_heading','field_64bfdd9b90688'),(227575,41057,'blocks_1_row_content_text',''),(227576,41057,'_blocks_1_row_content_text','field_64bfdd9b90689'),(227577,41057,'blocks_1_row_content_actions',''),(227578,41057,'_blocks_1_row_content_actions','field_64bfdd9b9068a'),(227579,41057,'blocks_1_row_content',''),(227580,41057,'_blocks_1_row_content','field_64bfdd9b90686'),(227581,41057,'blocks_1_icon_row_items_0_icon','benchmark.svg'),(227582,41057,'_blocks_1_icon_row_items_0_icon','field_64bfdd9b9068d'),(227583,41057,'blocks_1_icon_row_items_0_label',''),(227584,41057,'_blocks_1_icon_row_items_0_label','field_64bfdd9c9068e'),(227585,41057,'blocks_1_icon_row_items_0_text','Comprehensive understanding of the menstrual cycle.'),(227586,41057,'_blocks_1_icon_row_items_0_text','field_64bfdd9c9068f'),(227587,41057,'blocks_1_icon_row_items_1_icon','lifetime-course-access.svg'),(227588,41057,'_blocks_1_icon_row_items_1_icon','field_64bfdd9b9068d'),(227589,41057,'blocks_1_icon_row_items_1_label',''),(227590,41057,'_blocks_1_icon_row_items_1_label','field_64bfdd9c9068e'),(227591,41057,'blocks_1_icon_row_items_1_text','Effective training and nutritional strategies.'),(227592,41057,'_blocks_1_icon_row_items_1_text','field_64bfdd9c9068f'),(227593,41057,'blocks_1_icon_row_items_2_icon','referrals.svg'),(227594,41057,'_blocks_1_icon_row_items_2_icon','field_64bfdd9b9068d'),(227595,41057,'blocks_1_icon_row_items_2_label',''),(227596,41057,'_blocks_1_icon_row_items_2_label','field_64bfdd9c9068e'),(227597,41057,'blocks_1_icon_row_items_2_text','Insights into menopause stages and impacts.'),(227598,41057,'_blocks_1_icon_row_items_2_text','field_64bfdd9c9068f'),(227599,41057,'blocks_1_icon_row_items_3_icon','face-to-face.svg'),(227600,41057,'_blocks_1_icon_row_items_3_icon','field_64bfdd9b9068d'),(227601,41057,'blocks_1_icon_row_items_3_label',''),(227602,41057,'_blocks_1_icon_row_items_3_label','field_64bfdd9c9068e'),(227603,41057,'blocks_1_icon_row_items_3_text','Specialised coaching skills for female clients.'),(227604,41057,'_blocks_1_icon_row_items_3_text','field_64bfdd9c9068f'),(227605,41057,'blocks_1_icon_row_items','4'),(227606,41057,'_blocks_1_icon_row_items','field_64bfdd9b9068c'),(227607,41057,'blocks_2_acfe_flexible_toggle',''),(227608,41057,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(227609,41057,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(227610,41057,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(227611,41057,'blocks_2_options_theme','#ffffff'),(227612,41057,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(227613,41057,'blocks_2_options_reverse','1'),(227614,41057,'_blocks_2_options_reverse','field_61768049bb8ac'),(227615,41057,'blocks_2_options',''),(227616,41057,'_blocks_2_options','field_617682517c334'),(227617,41057,'blocks_2_split_5050_image','40294'),(227618,41057,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(227619,41057,'blocks_2_split_5050_video',''),(227620,41057,'_blocks_2_split_5050_video','field_6239f3160848a'),(227621,41057,'blocks_2_split_5050_content_title',''),(227622,41057,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(227623,41057,'blocks_2_split_5050_content_heading','Master Women\'s Health Coaching'),(227624,41057,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(227625,41057,'blocks_2_split_5050_content_text','This unique course covers essential topics on women’s health, focusing on the menstrual cycle and menopause. It provides practical training techniques and nutritional advice, ensuring fitness professionals can confidently work with this demographic. Enhance your coaching skills to better serve female clients through various life stages.'),(227626,41057,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(227627,41057,'blocks_2_split_5050_content_actions',''),(227628,41057,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(227629,41057,'blocks_2_split_5050_content',''),(227630,41057,'_blocks_2_split_5050_content','field_61767afceb8ba'),(227631,41057,'blocks_3_acfe_flexible_toggle',''),(227632,41057,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(227633,41057,'blocks_3_acfe_flexible_layout_title','Tabs'),(227634,41057,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(227635,41057,'blocks_3_options_theme','#ffffff'),(227636,41057,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(227637,41057,'blocks_3_options',''),(227638,41057,'_blocks_3_options','field_6177cfcd8140f'),(227639,41057,'blocks_3_tabs_0_tab_label','How Will I Learn ?'),(227640,41057,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(227641,41057,'blocks_3_tabs_0_tab_content_title',''),(227642,41057,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(227643,41057,'blocks_3_tabs_0_tab_content_heading','Learning Format'),(227644,41057,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(227645,41057,'blocks_3_tabs_0_tab_content_text','Interactive online e-learning with quizzes, videos, and downloadable resources. The course takes approximately 2 hours to complete.'),(227646,41057,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(227647,41057,'blocks_3_tabs_0_tab_content_actions','1'),(227648,41057,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(227649,41057,'blocks_3_tabs_0_tab_content',''),(227650,41057,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(227651,41057,'blocks_3_tabs_0_tab_image',''),(227652,41057,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(227653,41057,'blocks_3_tabs_1_tab_label','Is There an Assessment ?'),(227654,41057,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(227655,41057,'blocks_3_tabs_1_tab_content_title',''),(227656,41057,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(227657,41057,'blocks_3_tabs_1_tab_content_heading','Assessment Format'),(227658,41057,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(227659,41057,'blocks_3_tabs_1_tab_content_text','Multiple-choice questions at the end of the course.'),(227660,41057,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(227661,41057,'blocks_3_tabs_1_tab_content_actions','1'),(227662,41057,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(227663,41057,'blocks_3_tabs_1_tab_content',''),(227664,41057,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(227665,41057,'blocks_3_tabs_1_tab_image',''),(227666,41057,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(227667,41057,'blocks_3_tabs_2_tab_label','Is This Course For me ?'),(227668,41057,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(227669,41057,'blocks_3_tabs_2_tab_content_title',''),(227670,41057,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(227671,41057,'blocks_3_tabs_2_tab_content_heading','Why Study This Course'),(227672,41057,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(227673,41057,'blocks_3_tabs_2_tab_content_text','Studying this course equips you with specialised knowledge crucial for addressing the unique needs of female clients. You\'ll be able to provide informed, empathetic, and effective support, making you a sought-after professional in women\'s health and fitness.'),(227674,41057,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(227675,41057,'blocks_3_tabs_2_tab_content_actions','1'),(227676,41057,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(227677,41057,'blocks_3_tabs_2_tab_content',''),(227678,41057,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(227679,41057,'blocks_3_tabs_2_tab_image',''),(227680,41057,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(227681,41057,'blocks_3_tabs','3'),(227682,41057,'_blocks_3_tabs','field_6177cff281419'),(227683,41057,'blocks_3_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(227684,41057,'_blocks_3_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(227685,41057,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(227686,41057,'_hero_actions_0_button','field_61757281285eb'),(227687,41057,'blocks_3_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(227688,41057,'_blocks_3_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(227689,41057,'blocks_3_tabs_2_tab_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(227690,41057,'_blocks_3_tabs_2_tab_content_actions_0_button','field_6177cfcd81418'),(227691,41057,'course_label_label_theme','#0d1f73'),(227692,41057,'_course_label_label_theme','field_61e17bb8f71fb'),(227693,41057,'course_key_info_0_text','CPD'),(227694,41057,'_course_key_info_0_text','field_617ac6c38e5e3'),(227695,41057,'course_key_info_1_text','Online Learning'),(227696,41057,'_course_key_info_1_text','field_617ac6c38e5e3'),(227697,41057,'course_key_info_2_text','No Entry Requirements'),(227698,41057,'_course_key_info_2_text','field_617ac6c38e5e3'),(227699,39493,'blocks_1_label','Find a Coach'),(227700,39493,'_blocks_1_label','field_66ec2c3f65a77'),(227701,39493,'blocks_1_title','Find a Biomechanics Coach in Your Area'),(227702,39493,'_blocks_1_title','field_66ec2c5e65a78'),(227703,41058,'hide_hero','0'),(227704,41058,'_hide_hero','field_66a2380fcda39'),(227705,41058,'hero_title','Find a Biomechanics Coach in Your Area'),(227706,41058,'_hero_title','field_617571fe285e8'),(227707,41058,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(227708,41058,'_hero_text','field_6175723c285e9'),(227709,41058,'hero_actions','1'),(227710,41058,'_hero_actions','field_61757270285ea'),(227711,41058,'hero_style','default'),(227712,41058,'_hero_style','field_62051d9dc5324'),(227713,41058,'hero_image_pos_x','right'),(227714,41058,'_hero_image_pos_x','field_62ec3d05390bb'),(227715,41058,'hero_image_pos_y','top'),(227716,41058,'_hero_image_pos_y','field_62ec3d05390bc'),(227717,41058,'hero_image_pos',''),(227718,41058,'_hero_image_pos','field_62ec3d05390ba'),(227719,41058,'fft_hide_from_listings','0'),(227720,41058,'_fft_hide_from_listings','field_61f1320446ab2'),(227721,41058,'fft_page_format','default'),(227722,41058,'_fft_page_format','field_61ae213f1f218'),(227723,41058,'fft_hide_nav','0'),(227724,41058,'_fft_hide_nav','field_635bd5e43527c'),(227725,41058,'fft_hide_header_call_to_action','0'),(227726,41058,'_fft_hide_header_call_to_action','field_635bd6723527d'),(227727,41058,'fft_page_sitemap','0'),(227728,41058,'_fft_page_sitemap','field_61af9b34e8181'),(227729,41058,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(227730,41058,'_blocks','field_6176696113096'),(227731,41058,'blocks_0_acfe_flexible_toggle',''),(227732,41058,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(227733,41058,'blocks_0_acfe_flexible_layout_title','Text Block'),(227734,41058,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(227735,41058,'blocks_0_options_theme','#ffffff'),(227736,41058,'_blocks_0_options_theme','field_6176830e2ad17'),(227737,41058,'blocks_0_options',''),(227738,41058,'_blocks_0_options','field_6176830e2ad16'),(227739,41058,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(227740,41058,'_blocks_0_text_block_heading','field_617669d413097'),(227741,41058,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(227742,41058,'_blocks_0_text_block_content','field_617669ec13098'),(227743,41058,'blocks_1_acfe_flexible_toggle',''),(227744,41058,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(227745,41058,'blocks_1_acfe_flexible_layout_title','Venues'),(227746,41058,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(227747,41058,'blocks_1_category','a:1:{i:0;s:3:\"417\";}'),(227748,41058,'_blocks_1_category','field_6361407e17657'),(227749,41058,'blocks_1_region',''),(227750,41058,'_blocks_1_region','field_636140bd17659'),(227751,41058,'hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Find a Coach\";s:3:\"url\";s:12:\"#row-39493-2\";s:6:\"target\";s:0:\"\";}'),(227752,41058,'_hero_actions_0_button','field_61757281285eb'),(227753,41058,'_thumbnail_id','40915'),(227754,41058,'__thumbnail_id','field_617570855ddaf'),(227755,41058,'blocks_1_label','Find a Coach'),(227756,41058,'_blocks_1_label','field_66ec2c3f65a77'),(227757,41058,'blocks_1_title','Find a Biomechanics Coach in Your Area'),(227758,41058,'_blocks_1_title','field_66ec2c5e65a78'),(227759,3,'_wp_suggested_privacy_policy_content','a:3:{s:11:\"plugin_name\";s:9:\"WordPress\";s:11:\"policy_text\";s:4477:\"<h2 class=\"wp-block-heading\">Who we are</h2><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://biomechanicseducation.com.</p><h2 class=\"wp-block-heading\">Comments</h2><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><p>An anonymised string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service Privacy Policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><h2 class=\"wp-block-heading\">Media</h2><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><h2 class=\"wp-block-heading\">Cookies</h2><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><h2 class=\"wp-block-heading\">Embedded content from other websites</h2><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><h2 class=\"wp-block-heading\">Who we share your data with</h2><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><h2 class=\"wp-block-heading\">How long we retain your data</h2><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognise and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><h2 class=\"wp-block-heading\">What rights you have over your data</h2><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><h2 class=\"wp-block-heading\">Where your data is sent</h2><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\";s:5:\"added\";i:1727345126;}'),(227763,7,'_oembed_405cc898b55b2c7255f0a7c58a511477','<iframe title=\"Welcome to Biomechanics Education\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/xgRiAj1qEog?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(227764,7,'_oembed_time_405cc898b55b2c7255f0a7c58a511477','1727773313'),(227765,39493,'_yoast_wpseo_inclusive_language_score','90'),(227766,39038,'_yoast_wpseo_inclusive_language_score','90'),(227767,40278,'_yoast_wpseo_inclusive_language_score','90'),(227768,41115,'_edit_lock','1733222441:17'),(227769,41115,'_edit_last','5'),(227770,41115,'hide_hero','0'),(227771,41115,'_hide_hero','field_66a2380fcda39'),(227772,41115,'hero_title','Biomechanics Coaching Diploma for Personal Trainers'),(227773,41115,'_hero_title','field_617571fe285e8'),(227774,41115,'hero_text','Boost Your Personal Training Career with Our Industry-Leading Biomechanics Coaching Diploma'),(227775,41115,'_hero_text','field_6175723c285e9'),(227776,41115,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-41115-3\";s:6:\"target\";s:0:\"\";}'),(227777,41115,'_hero_actions_0_button','field_61757281285eb'),(227778,41115,'hero_actions','1'),(227779,41115,'_hero_actions','field_61757270285ea'),(227780,41115,'hero_style','default'),(227781,41115,'_hero_style','field_62051d9dc5324'),(227782,41115,'_thumbnail_id','39215'),(227783,41115,'__thumbnail_id','field_617570855ddaf'),(227784,41115,'hero_image_pos_x','right'),(227785,41115,'_hero_image_pos_x','field_62ec3d05390bb'),(227786,41115,'hero_image_pos_y','top'),(227787,41115,'_hero_image_pos_y','field_62ec3d05390bc'),(227788,41115,'hero_image_pos',''),(227789,41115,'_hero_image_pos','field_62ec3d05390ba'),(227790,41115,'fft_hide_from_listings','0'),(227791,41115,'_fft_hide_from_listings','field_61f1320446ab2'),(227792,41115,'fft_page_format','ppc'),(227793,41115,'_fft_page_format','field_61ae213f1f218'),(227794,41115,'fft_hide_nav','0'),(227795,41115,'_fft_hide_nav','field_635bd5e43527c'),(227796,41115,'fft_hide_header_call_to_action','0'),(227797,41115,'_fft_hide_header_call_to_action','field_635bd6723527d'),(227798,41115,'fft_page_sitemap','0'),(227799,41115,'_fft_page_sitemap','field_61af9b34e8181'),(227800,41115,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(227801,41115,'_blocks','field_6176696113096'),(227802,41115,'_yoast_wpseo_focuskw','Biomechanics Coaching Diploma for Personal Trainers'),(227803,41115,'_yoast_wpseo_title','Personal Training | Biomechanics Education'),(227804,41115,'_yoast_wpseo_linkdex','33'),(227805,41115,'_yoast_wpseo_estimated-reading-time-minutes','1'),(227806,41115,'_yoast_wpseo_metadesc','Boost Your Personal Training Career with Our Industry-Leading Biomechanics Coaching Diploma.'),(227807,41115,'blocks_0_acfe_flexible_toggle',''),(227808,41115,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(227809,41115,'blocks_0_acfe_flexible_layout_title','Template'),(227810,41115,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(227811,41115,'blocks_0_template','39087'),(227812,41115,'_blocks_0_template','field_617bdd570fe01'),(227813,41115,'blocks_5_acfe_flexible_toggle',''),(227814,41115,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(227815,41115,'blocks_5_acfe_flexible_layout_title','Tabs'),(227816,41115,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(227817,41115,'blocks_5_options_theme','#ffffff'),(227818,41115,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(227819,41115,'blocks_5_options',''),(227820,41115,'_blocks_5_options','field_6177cfcd8140f'),(227821,41115,'blocks_5_tabs_0_tab_label','What will I learn?'),(227822,41115,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(227823,41115,'blocks_5_tabs_0_tab_content_title',''),(227824,41115,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(227825,41115,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(227826,41115,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(227827,41115,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(227828,41115,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(227829,41115,'blocks_5_tabs_0_tab_content_actions',''),(227830,41115,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(227831,41115,'blocks_5_tabs_0_tab_content',''),(227832,41115,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(227833,41115,'blocks_5_tabs_0_tab_image','39076'),(227834,41115,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(227835,41115,'blocks_5_tabs_1_tab_label','What do I need?'),(227836,41115,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(227837,41115,'blocks_5_tabs_1_tab_content_title',''),(227838,41115,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(227839,41115,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(227840,41115,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(227841,41115,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(227842,41115,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(227843,41115,'blocks_5_tabs_1_tab_content_actions',''),(227844,41115,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(227845,41115,'blocks_5_tabs_1_tab_content',''),(227846,41115,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(227847,41115,'blocks_5_tabs_1_tab_image','39223'),(227848,41115,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(227849,41115,'blocks_5_tabs_2_tab_label','Where can I learn?'),(227850,41115,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(227851,41115,'blocks_5_tabs_2_tab_content_title',''),(227852,41115,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(227853,41115,'blocks_5_tabs_2_tab_content_heading','Locations'),(227854,41115,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(227855,41115,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(227856,41115,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(227857,41115,'blocks_5_tabs_2_tab_content_actions',''),(227858,41115,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(227859,41115,'blocks_5_tabs_2_tab_content',''),(227860,41115,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(227861,41115,'blocks_5_tabs_2_tab_image','39224'),(227862,41115,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(227863,41115,'blocks_5_tabs','3'),(227864,41115,'_blocks_5_tabs','field_6177cff281419'),(227865,41115,'blocks_6_acfe_flexible_toggle',''),(227866,41115,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(227867,41115,'blocks_6_acfe_flexible_layout_title','Text Block'),(227868,41115,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(227869,41115,'blocks_6_options_theme','#b61234'),(227870,41115,'_blocks_6_options_theme','field_6176830e2ad17'),(227871,41115,'blocks_6_options',''),(227872,41115,'_blocks_6_options','field_6176830e2ad16'),(227873,41115,'blocks_6_text_block_heading','Fees & Funding Options'),(227874,41115,'_blocks_6_text_block_heading','field_617669d413097'),(227875,41115,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(227876,41115,'_blocks_6_text_block_content','field_617669ec13098'),(227877,41115,'blocks_7_acfe_flexible_toggle',''),(227878,41115,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(227879,41115,'blocks_7_acfe_flexible_layout_title','Icons'),(227880,41115,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(227881,41115,'blocks_7_options_theme','#b61234'),(227882,41115,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(227883,41115,'blocks_7_options_format','row'),(227884,41115,'_blocks_7_options_format','field_64bfde9a90690'),(227885,41115,'blocks_7_options',''),(227886,41115,'_blocks_7_options','field_64bfdd9b90684'),(227887,41115,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(227888,41115,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(227889,41115,'blocks_7_icon_row_items_0_label','Pay in Full'),(227890,41115,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(227891,41115,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(227892,41115,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(227893,41115,'blocks_7_icon_row_items_1_icon','finance.svg'),(227894,41115,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(227895,41115,'blocks_7_icon_row_items_1_label','0% finance'),(227896,41115,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(227897,41115,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(227898,41115,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(227899,41115,'blocks_7_icon_row_items_2_icon','deposit.svg'),(227900,41115,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(227901,41115,'blocks_7_icon_row_items_2_label','Deposit & balance'),(227902,41115,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(227903,41115,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(227904,41115,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(227905,41115,'blocks_7_icon_row_items','3'),(227906,41115,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(227907,41115,'blocks_9_acfe_flexible_toggle',''),(227908,41115,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(227909,41115,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(227910,41115,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(227911,41115,'blocks_9_testimonial_slider_content_title',''),(227912,41115,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(227913,41115,'blocks_9_testimonial_slider_content_heading','Testimonials'),(227914,41115,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(227915,41115,'blocks_9_testimonial_slider_content_text',''),(227916,41115,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(227917,41115,'blocks_9_testimonial_slider_content_actions',''),(227918,41115,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(227919,41115,'blocks_9_testimonial_slider_content',''),(227920,41115,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(227921,41115,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(227922,41115,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(227923,41115,'blocks_9_testimonial_slider_ambassador_bool','0'),(227924,41115,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(227925,41115,'blocks_10_acfe_flexible_toggle',''),(227926,41115,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(227927,41115,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(227928,41115,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(227929,41115,'blocks_10_options_theme','#ffffff'),(227930,41115,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(227931,41115,'blocks_10_options_state','0'),(227932,41115,'_blocks_10_options_state','field_6239fcb7508c5'),(227933,41115,'blocks_10_options',''),(227934,41115,'_blocks_10_options','field_6177e2991ac44'),(227935,41115,'blocks_10_content_title',''),(227936,41115,'_blocks_10_content_title','field_64d237e8bb1e2'),(227937,41115,'blocks_10_content_heading','Frequently asked questions '),(227938,41115,'_blocks_10_content_heading','field_64d237e8bb1e3'),(227939,41115,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(227940,41115,'_blocks_10_content_text','field_64d237e8bb1e4'),(227941,41115,'blocks_10_content_actions',''),(227942,41115,'_blocks_10_content_actions','field_64d237e8bb1e5'),(227943,41115,'blocks_10_content_align','left'),(227944,41115,'_blocks_10_content_align','field_64d2443e6b6aa'),(227945,41115,'blocks_10_content',''),(227946,41115,'_blocks_10_content','field_64d237e8bb1e1'),(227947,41115,'blocks_10_accordion_content','faqs'),(227948,41115,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(227949,41115,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(227950,41115,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(227951,41115,'blocks_10_actions',''),(227952,41115,'_blocks_10_actions','field_61a746a817f7a'),(227953,41115,'blocks_8_acfe_flexible_toggle',''),(227954,41115,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(227955,41115,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(227956,41115,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(227957,41115,'blocks_8_options_theme','#f5f5f5'),(227958,41115,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(227959,41115,'blocks_8_options_reverse','0'),(227960,41115,'_blocks_8_options_reverse','field_61768049bb8ac'),(227961,41115,'blocks_8_options',''),(227962,41115,'_blocks_8_options','field_617682517c334'),(227963,41115,'blocks_8_split_5050_image','40920'),(227964,41115,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(227965,41115,'blocks_8_split_5050_video',''),(227966,41115,'_blocks_8_split_5050_video','field_6239f3160848a'),(227967,41115,'blocks_8_split_5050_content_title',''),(227968,41115,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(227969,41115,'blocks_8_split_5050_content_heading','Why Study This Course?'),(227970,41115,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(227971,41115,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(227972,41115,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(227973,41115,'blocks_8_split_5050_content_actions',''),(227974,41115,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(227975,41115,'blocks_8_split_5050_content',''),(227976,41115,'_blocks_8_split_5050_content','field_61767afceb8ba'),(227977,41115,'blocks_1_acfe_flexible_toggle',''),(227978,41115,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(227979,41115,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(227980,41115,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(227981,41115,'blocks_1_options_theme','#ffffff'),(227982,41115,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(227983,41115,'blocks_1_options_reverse','0'),(227984,41115,'_blocks_1_options_reverse','field_61768049bb8ac'),(227985,41115,'blocks_1_options',''),(227986,41115,'_blocks_1_options','field_617682517c334'),(227987,41115,'blocks_1_split_5050_image','39220'),(227988,41115,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(227989,41115,'blocks_1_split_5050_video',''),(227990,41115,'_blocks_1_split_5050_video','field_6239f3160848a'),(227991,41115,'blocks_1_split_5050_content_title',''),(227992,41115,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(227993,41115,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(227994,41115,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(227995,41115,'blocks_1_split_5050_content_text','Our Diploma in Biomechanics Coaching leads the industry, empowering Level 3+ Personal Trainers to grow their client base, offer specialized services, and achieve higher incomes through evidence-based training and advanced assessments.\r\n\r\nEnhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(227996,41115,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(227997,41115,'blocks_1_split_5050_content_actions',''),(227998,41115,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(227999,41115,'blocks_1_split_5050_content',''),(228000,41115,'_blocks_1_split_5050_content','field_61767afceb8ba'),(228001,41115,'blocks_2_acfe_flexible_toggle',''),(228002,41115,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(228003,41115,'blocks_2_acfe_flexible_layout_title','Form'),(228004,41115,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(228005,41115,'blocks_2_row_content_format','standard'),(228006,41115,'_blocks_2_row_content_format','field_6481ead962881'),(228007,41115,'blocks_2_row_content_title',''),(228008,41115,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(228009,41115,'blocks_2_row_content_heading','Enquire Today'),(228010,41115,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(228011,41115,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(228012,41115,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(228013,41115,'blocks_2_row_content_actions',''),(228014,41115,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(228015,41115,'blocks_2_row_content',''),(228016,41115,'_blocks_2_row_content','field_61a0f5f5b3db0'),(228017,41115,'blocks_2_row_form','40394'),(228018,41115,'_blocks_2_row_form','field_61a4ff2c0b08e'),(228019,41115,'blocks_2_row_form_button_label',''),(228020,41115,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(228021,41115,'blocks_3_acfe_flexible_toggle',''),(228022,41115,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(228023,41115,'blocks_3_acfe_flexible_layout_title','Video'),(228024,41115,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(228025,41115,'blocks_3_size','large'),(228026,41115,'_blocks_3_size','field_6487038f297c1'),(228027,41115,'blocks_3_row_content_title',''),(228028,41115,'_blocks_3_row_content_title','field_64870132a865d'),(228029,41115,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(228030,41115,'_blocks_3_row_content_heading','field_64870142a865e'),(228031,41115,'blocks_3_row_content_text',''),(228032,41115,'_blocks_3_row_content_text','field_64870148a865f'),(228033,41115,'blocks_3_row_content',''),(228034,41115,'_blocks_3_row_content','field_6487008ba865c'),(228035,41115,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(228036,41115,'_blocks_3_video_src','field_6193c4a98ec07'),(228037,41115,'blocks_3_video_thumbnail','39186'),(228038,41115,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(228039,41115,'blocks_4_acfe_flexible_toggle',''),(228040,41115,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(228041,41115,'blocks_4_acfe_flexible_layout_title','Steps'),(228042,41115,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(228043,41115,'blocks_4_row_content_title',''),(228044,41115,'_blocks_4_row_content_title','field_64888cd1e26e0'),(228045,41115,'blocks_4_row_content_heading','Benefits of training with us'),(228046,41115,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(228047,41115,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(228048,41115,'_blocks_4_row_content_text','field_64888ce2e26e2'),(228049,41115,'blocks_4_row_content_actions',''),(228050,41115,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(228051,41115,'blocks_4_row_content',''),(228052,41115,'_blocks_4_row_content','field_64888cb0e26df'),(228053,41115,'blocks_4_steps_0_icon','progression.svg'),(228054,41115,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(228055,41115,'blocks_4_steps_0_title','Earning Potential'),(228056,41115,'_blocks_4_steps_0_title','field_64888d94e26e7'),(228057,41115,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(228058,41115,'_blocks_4_steps_0_text','field_64888d99e26e8'),(228059,41115,'blocks_4_steps_1_icon','support.svg'),(228060,41115,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(228061,41115,'blocks_4_steps_1_title','Lifetime Learning Promise'),(228062,41115,'_blocks_4_steps_1_title','field_64888d94e26e7'),(228063,41115,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(228064,41115,'_blocks_4_steps_1_text','field_64888d99e26e8'),(228065,41115,'blocks_4_steps_2_icon','qualification.svg'),(228066,41115,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(228067,41115,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(228068,41115,'_blocks_4_steps_2_title','field_64888d94e26e7'),(228069,41115,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(228070,41115,'_blocks_4_steps_2_text','field_64888d99e26e8'),(228071,41115,'blocks_4_steps_3_icon','leaders.svg'),(228072,41115,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(228073,41115,'blocks_4_steps_3_title','Stand Out From the Crowd'),(228074,41115,'_blocks_4_steps_3_title','field_64888d94e26e7'),(228075,41115,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(228076,41115,'_blocks_4_steps_3_text','field_64888d99e26e8'),(228077,41115,'blocks_4_steps','4'),(228078,41115,'_blocks_4_steps','field_64888d44e26e5'),(228079,41115,'_yoast_wpseo_inclusive_language_score','90'),(228080,41117,'hide_hero','0'),(228081,41117,'_hide_hero','field_66a2380fcda39'),(228082,41117,'hero_title','Biomechanics Coaching Diploma for Personal Trainers'),(228083,41117,'_hero_title','field_617571fe285e8'),(228084,41117,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(228085,41117,'_hero_text','field_6175723c285e9'),(228086,41117,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(228087,41117,'_hero_actions_0_button','field_61757281285eb'),(228088,41117,'hero_actions','1'),(228089,41117,'_hero_actions','field_61757270285ea'),(228090,41117,'hero_style','default'),(228091,41117,'_hero_style','field_62051d9dc5324'),(228092,41117,'_thumbnail_id','39215'),(228093,41117,'__thumbnail_id','field_617570855ddaf'),(228094,41117,'hero_image_pos_x','right'),(228095,41117,'_hero_image_pos_x','field_62ec3d05390bb'),(228096,41117,'hero_image_pos_y','top'),(228097,41117,'_hero_image_pos_y','field_62ec3d05390bc'),(228098,41117,'hero_image_pos',''),(228099,41117,'_hero_image_pos','field_62ec3d05390ba'),(228100,41117,'fft_hide_from_listings','0'),(228101,41117,'_fft_hide_from_listings','field_61f1320446ab2'),(228102,41117,'fft_page_format','default'),(228103,41117,'_fft_page_format','field_61ae213f1f218'),(228104,41117,'fft_hide_nav','0'),(228105,41117,'_fft_hide_nav','field_635bd5e43527c'),(228106,41117,'fft_hide_header_call_to_action','0'),(228107,41117,'_fft_hide_header_call_to_action','field_635bd6723527d'),(228108,41117,'fft_page_sitemap','0'),(228109,41117,'_fft_page_sitemap','field_61af9b34e8181'),(228110,41117,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(228111,41117,'_blocks','field_6176696113096'),(228112,41117,'blocks_0_acfe_flexible_toggle',''),(228113,41117,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(228114,41117,'blocks_0_acfe_flexible_layout_title','Template'),(228115,41117,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(228116,41117,'blocks_0_template','39087'),(228117,41117,'_blocks_0_template','field_617bdd570fe01'),(228118,41117,'blocks_5_acfe_flexible_toggle',''),(228119,41117,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(228120,41117,'blocks_5_acfe_flexible_layout_title','Tabs'),(228121,41117,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(228122,41117,'blocks_5_options_theme','#ffffff'),(228123,41117,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(228124,41117,'blocks_5_options',''),(228125,41117,'_blocks_5_options','field_6177cfcd8140f'),(228126,41117,'blocks_5_tabs_0_tab_label','What will I learn?'),(228127,41117,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(228128,41117,'blocks_5_tabs_0_tab_content_title',''),(228129,41117,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(228130,41117,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(228131,41117,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(228132,41117,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(228133,41117,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(228134,41117,'blocks_5_tabs_0_tab_content_actions',''),(228135,41117,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(228136,41117,'blocks_5_tabs_0_tab_content',''),(228137,41117,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(228138,41117,'blocks_5_tabs_0_tab_image','39076'),(228139,41117,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(228140,41117,'blocks_5_tabs_1_tab_label','What do I need?'),(228141,41117,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(228142,41117,'blocks_5_tabs_1_tab_content_title',''),(228143,41117,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(228144,41117,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(228145,41117,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(228146,41117,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(228147,41117,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(228148,41117,'blocks_5_tabs_1_tab_content_actions',''),(228149,41117,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(228150,41117,'blocks_5_tabs_1_tab_content',''),(228151,41117,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(228152,41117,'blocks_5_tabs_1_tab_image','39223'),(228153,41117,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(228154,41117,'blocks_5_tabs_2_tab_label','Where can I learn?'),(228155,41117,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(228156,41117,'blocks_5_tabs_2_tab_content_title',''),(228157,41117,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(228158,41117,'blocks_5_tabs_2_tab_content_heading','Locations'),(228159,41117,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(228160,41117,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(228161,41117,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(228162,41117,'blocks_5_tabs_2_tab_content_actions',''),(228163,41117,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(228164,41117,'blocks_5_tabs_2_tab_content',''),(228165,41117,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(228166,41117,'blocks_5_tabs_2_tab_image','39224'),(228167,41117,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(228168,41117,'blocks_5_tabs','3'),(228169,41117,'_blocks_5_tabs','field_6177cff281419'),(228170,41117,'blocks_6_acfe_flexible_toggle',''),(228171,41117,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(228172,41117,'blocks_6_acfe_flexible_layout_title','Text Block'),(228173,41117,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(228174,41117,'blocks_6_options_theme','#b61234'),(228175,41117,'_blocks_6_options_theme','field_6176830e2ad17'),(228176,41117,'blocks_6_options',''),(228177,41117,'_blocks_6_options','field_6176830e2ad16'),(228178,41117,'blocks_6_text_block_heading','Fees & Funding Options'),(228179,41117,'_blocks_6_text_block_heading','field_617669d413097'),(228180,41117,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(228181,41117,'_blocks_6_text_block_content','field_617669ec13098'),(228182,41117,'blocks_7_acfe_flexible_toggle',''),(228183,41117,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(228184,41117,'blocks_7_acfe_flexible_layout_title','Icons'),(228185,41117,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(228186,41117,'blocks_7_options_theme','#b61234'),(228187,41117,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(228188,41117,'blocks_7_options_format','row'),(228189,41117,'_blocks_7_options_format','field_64bfde9a90690'),(228190,41117,'blocks_7_options',''),(228191,41117,'_blocks_7_options','field_64bfdd9b90684'),(228192,41117,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(228193,41117,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(228194,41117,'blocks_7_icon_row_items_0_label','Pay in Full'),(228195,41117,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(228196,41117,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(228197,41117,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(228198,41117,'blocks_7_icon_row_items_1_icon','finance.svg'),(228199,41117,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(228200,41117,'blocks_7_icon_row_items_1_label','0% finance'),(228201,41117,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(228202,41117,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(228203,41117,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(228204,41117,'blocks_7_icon_row_items_2_icon','deposit.svg'),(228205,41117,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(228206,41117,'blocks_7_icon_row_items_2_label','Deposit & balance'),(228207,41117,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(228208,41117,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(228209,41117,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(228210,41117,'blocks_7_icon_row_items','3'),(228211,41117,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(228212,41117,'blocks_9_acfe_flexible_toggle',''),(228213,41117,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(228214,41117,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(228215,41117,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(228216,41117,'blocks_9_testimonial_slider_content_title',''),(228217,41117,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(228218,41117,'blocks_9_testimonial_slider_content_heading','Testimonials'),(228219,41117,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(228220,41117,'blocks_9_testimonial_slider_content_text',''),(228221,41117,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(228222,41117,'blocks_9_testimonial_slider_content_actions',''),(228223,41117,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(228224,41117,'blocks_9_testimonial_slider_content',''),(228225,41117,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(228226,41117,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(228227,41117,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(228228,41117,'blocks_9_testimonial_slider_ambassador_bool','0'),(228229,41117,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(228230,41117,'blocks_10_acfe_flexible_toggle',''),(228231,41117,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(228232,41117,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(228233,41117,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(228234,41117,'blocks_10_options_theme','#ffffff'),(228235,41117,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(228236,41117,'blocks_10_options_state','0'),(228237,41117,'_blocks_10_options_state','field_6239fcb7508c5'),(228238,41117,'blocks_10_options',''),(228239,41117,'_blocks_10_options','field_6177e2991ac44'),(228240,41117,'blocks_10_content_title',''),(228241,41117,'_blocks_10_content_title','field_64d237e8bb1e2'),(228242,41117,'blocks_10_content_heading','Frequently asked questions '),(228243,41117,'_blocks_10_content_heading','field_64d237e8bb1e3'),(228244,41117,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(228245,41117,'_blocks_10_content_text','field_64d237e8bb1e4'),(228246,41117,'blocks_10_content_actions',''),(228247,41117,'_blocks_10_content_actions','field_64d237e8bb1e5'),(228248,41117,'blocks_10_content_align','left'),(228249,41117,'_blocks_10_content_align','field_64d2443e6b6aa'),(228250,41117,'blocks_10_content',''),(228251,41117,'_blocks_10_content','field_64d237e8bb1e1'),(228252,41117,'blocks_10_accordion_content','faqs'),(228253,41117,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(228254,41117,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(228255,41117,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(228256,41117,'blocks_10_actions',''),(228257,41117,'_blocks_10_actions','field_61a746a817f7a'),(228258,41117,'blocks_8_acfe_flexible_toggle',''),(228259,41117,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(228260,41117,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(228261,41117,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(228262,41117,'blocks_8_options_theme','#f5f5f5'),(228263,41117,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(228264,41117,'blocks_8_options_reverse','0'),(228265,41117,'_blocks_8_options_reverse','field_61768049bb8ac'),(228266,41117,'blocks_8_options',''),(228267,41117,'_blocks_8_options','field_617682517c334'),(228268,41117,'blocks_8_split_5050_image','40920'),(228269,41117,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(228270,41117,'blocks_8_split_5050_video',''),(228271,41117,'_blocks_8_split_5050_video','field_6239f3160848a'),(228272,41117,'blocks_8_split_5050_content_title',''),(228273,41117,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(228274,41117,'blocks_8_split_5050_content_heading','Why Study This Course?'),(228275,41117,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(228276,41117,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(228277,41117,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(228278,41117,'blocks_8_split_5050_content_actions',''),(228279,41117,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(228280,41117,'blocks_8_split_5050_content',''),(228281,41117,'_blocks_8_split_5050_content','field_61767afceb8ba'),(228282,41117,'blocks_1_acfe_flexible_toggle',''),(228283,41117,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(228284,41117,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(228285,41117,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(228286,41117,'blocks_1_options_theme','#ffffff'),(228287,41117,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(228288,41117,'blocks_1_options_reverse','0'),(228289,41117,'_blocks_1_options_reverse','field_61768049bb8ac'),(228290,41117,'blocks_1_options',''),(228291,41117,'_blocks_1_options','field_617682517c334'),(228292,41117,'blocks_1_split_5050_image','39220'),(228293,41117,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(228294,41117,'blocks_1_split_5050_video',''),(228295,41117,'_blocks_1_split_5050_video','field_6239f3160848a'),(228296,41117,'blocks_1_split_5050_content_title',''),(228297,41117,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(228298,41117,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(228299,41117,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(228300,41117,'blocks_1_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(228301,41117,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(228302,41117,'blocks_1_split_5050_content_actions',''),(228303,41117,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(228304,41117,'blocks_1_split_5050_content',''),(228305,41117,'_blocks_1_split_5050_content','field_61767afceb8ba'),(228306,41117,'blocks_2_acfe_flexible_toggle',''),(228307,41117,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(228308,41117,'blocks_2_acfe_flexible_layout_title','Form'),(228309,41117,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(228310,41117,'blocks_2_row_content_format','standard'),(228311,41117,'_blocks_2_row_content_format','field_6481ead962881'),(228312,41117,'blocks_2_row_content_title',''),(228313,41117,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(228314,41117,'blocks_2_row_content_heading','Enquire Today'),(228315,41117,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(228316,41117,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(228317,41117,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(228318,41117,'blocks_2_row_content_actions',''),(228319,41117,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(228320,41117,'blocks_2_row_content',''),(228321,41117,'_blocks_2_row_content','field_61a0f5f5b3db0'),(228322,41117,'blocks_2_row_form','40394'),(228323,41117,'_blocks_2_row_form','field_61a4ff2c0b08e'),(228324,41117,'blocks_2_row_form_button_label',''),(228325,41117,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(228326,41117,'blocks_3_acfe_flexible_toggle',''),(228327,41117,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(228328,41117,'blocks_3_acfe_flexible_layout_title','Video'),(228329,41117,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(228330,41117,'blocks_3_size','large'),(228331,41117,'_blocks_3_size','field_6487038f297c1'),(228332,41117,'blocks_3_row_content_title',''),(228333,41117,'_blocks_3_row_content_title','field_64870132a865d'),(228334,41117,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(228335,41117,'_blocks_3_row_content_heading','field_64870142a865e'),(228336,41117,'blocks_3_row_content_text',''),(228337,41117,'_blocks_3_row_content_text','field_64870148a865f'),(228338,41117,'blocks_3_row_content',''),(228339,41117,'_blocks_3_row_content','field_6487008ba865c'),(228340,41117,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(228341,41117,'_blocks_3_video_src','field_6193c4a98ec07'),(228342,41117,'blocks_3_video_thumbnail','39186'),(228343,41117,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(228344,41117,'blocks_4_acfe_flexible_toggle',''),(228345,41117,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(228346,41117,'blocks_4_acfe_flexible_layout_title','Steps'),(228347,41117,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(228348,41117,'blocks_4_row_content_title',''),(228349,41117,'_blocks_4_row_content_title','field_64888cd1e26e0'),(228350,41117,'blocks_4_row_content_heading','Benefits of training with us'),(228351,41117,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(228352,41117,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(228353,41117,'_blocks_4_row_content_text','field_64888ce2e26e2'),(228354,41117,'blocks_4_row_content_actions',''),(228355,41117,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(228356,41117,'blocks_4_row_content',''),(228357,41117,'_blocks_4_row_content','field_64888cb0e26df'),(228358,41117,'blocks_4_steps_0_icon','progression.svg'),(228359,41117,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(228360,41117,'blocks_4_steps_0_title','Earning Potential'),(228361,41117,'_blocks_4_steps_0_title','field_64888d94e26e7'),(228362,41117,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(228363,41117,'_blocks_4_steps_0_text','field_64888d99e26e8'),(228364,41117,'blocks_4_steps_1_icon','support.svg'),(228365,41117,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(228366,41117,'blocks_4_steps_1_title','Lifetime Learning Promise'),(228367,41117,'_blocks_4_steps_1_title','field_64888d94e26e7'),(228368,41117,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(228369,41117,'_blocks_4_steps_1_text','field_64888d99e26e8'),(228370,41117,'blocks_4_steps_2_icon','qualification.svg'),(228371,41117,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(228372,41117,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(228373,41117,'_blocks_4_steps_2_title','field_64888d94e26e7'),(228374,41117,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(228375,41117,'_blocks_4_steps_2_text','field_64888d99e26e8'),(228376,41117,'blocks_4_steps_3_icon','leaders.svg'),(228377,41117,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(228378,41117,'blocks_4_steps_3_title','Stand Out From the Crowd'),(228379,41117,'_blocks_4_steps_3_title','field_64888d94e26e7'),(228380,41117,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(228381,41117,'_blocks_4_steps_3_text','field_64888d99e26e8'),(228382,41117,'blocks_4_steps','4'),(228383,41117,'_blocks_4_steps','field_64888d44e26e5'),(228384,41118,'hide_hero','0'),(228385,41118,'_hide_hero','field_66a2380fcda39'),(228386,41118,'hero_title','Biomechanics Coaching Diploma for Personal Trainers'),(228387,41118,'_hero_title','field_617571fe285e8'),(228388,41118,'hero_text','Boost Your Personal Training Career with Our Industry-Leading Biomechanics Coaching Diploma'),(228389,41118,'_hero_text','field_6175723c285e9'),(228390,41118,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(228391,41118,'_hero_actions_0_button','field_61757281285eb'),(228392,41118,'hero_actions','1'),(228393,41118,'_hero_actions','field_61757270285ea'),(228394,41118,'hero_style','default'),(228395,41118,'_hero_style','field_62051d9dc5324'),(228396,41118,'_thumbnail_id','39215'),(228397,41118,'__thumbnail_id','field_617570855ddaf'),(228398,41118,'hero_image_pos_x','right'),(228399,41118,'_hero_image_pos_x','field_62ec3d05390bb'),(228400,41118,'hero_image_pos_y','top'),(228401,41118,'_hero_image_pos_y','field_62ec3d05390bc'),(228402,41118,'hero_image_pos',''),(228403,41118,'_hero_image_pos','field_62ec3d05390ba'),(228404,41118,'fft_hide_from_listings','0'),(228405,41118,'_fft_hide_from_listings','field_61f1320446ab2'),(228406,41118,'fft_page_format','ppc'),(228407,41118,'_fft_page_format','field_61ae213f1f218'),(228408,41118,'fft_hide_nav','0'),(228409,41118,'_fft_hide_nav','field_635bd5e43527c'),(228410,41118,'fft_hide_header_call_to_action','0'),(228411,41118,'_fft_hide_header_call_to_action','field_635bd6723527d'),(228412,41118,'fft_page_sitemap','0'),(228413,41118,'_fft_page_sitemap','field_61af9b34e8181'),(228414,41118,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(228415,41118,'_blocks','field_6176696113096'),(228416,41118,'blocks_0_acfe_flexible_toggle',''),(228417,41118,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(228418,41118,'blocks_0_acfe_flexible_layout_title','Template'),(228419,41118,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(228420,41118,'blocks_0_template','39087'),(228421,41118,'_blocks_0_template','field_617bdd570fe01'),(228422,41118,'blocks_5_acfe_flexible_toggle',''),(228423,41118,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(228424,41118,'blocks_5_acfe_flexible_layout_title','Tabs'),(228425,41118,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(228426,41118,'blocks_5_options_theme','#ffffff'),(228427,41118,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(228428,41118,'blocks_5_options',''),(228429,41118,'_blocks_5_options','field_6177cfcd8140f'),(228430,41118,'blocks_5_tabs_0_tab_label','What will I learn?'),(228431,41118,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(228432,41118,'blocks_5_tabs_0_tab_content_title',''),(228433,41118,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(228434,41118,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(228435,41118,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(228436,41118,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(228437,41118,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(228438,41118,'blocks_5_tabs_0_tab_content_actions',''),(228439,41118,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(228440,41118,'blocks_5_tabs_0_tab_content',''),(228441,41118,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(228442,41118,'blocks_5_tabs_0_tab_image','39076'),(228443,41118,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(228444,41118,'blocks_5_tabs_1_tab_label','What do I need?'),(228445,41118,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(228446,41118,'blocks_5_tabs_1_tab_content_title',''),(228447,41118,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(228448,41118,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(228449,41118,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(228450,41118,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(228451,41118,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(228452,41118,'blocks_5_tabs_1_tab_content_actions',''),(228453,41118,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(228454,41118,'blocks_5_tabs_1_tab_content',''),(228455,41118,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(228456,41118,'blocks_5_tabs_1_tab_image','39223'),(228457,41118,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(228458,41118,'blocks_5_tabs_2_tab_label','Where can I learn?'),(228459,41118,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(228460,41118,'blocks_5_tabs_2_tab_content_title',''),(228461,41118,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(228462,41118,'blocks_5_tabs_2_tab_content_heading','Locations'),(228463,41118,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(228464,41118,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(228465,41118,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(228466,41118,'blocks_5_tabs_2_tab_content_actions',''),(228467,41118,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(228468,41118,'blocks_5_tabs_2_tab_content',''),(228469,41118,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(228470,41118,'blocks_5_tabs_2_tab_image','39224'),(228471,41118,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(228472,41118,'blocks_5_tabs','3'),(228473,41118,'_blocks_5_tabs','field_6177cff281419'),(228474,41118,'blocks_6_acfe_flexible_toggle',''),(228475,41118,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(228476,41118,'blocks_6_acfe_flexible_layout_title','Text Block'),(228477,41118,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(228478,41118,'blocks_6_options_theme','#b61234'),(228479,41118,'_blocks_6_options_theme','field_6176830e2ad17'),(228480,41118,'blocks_6_options',''),(228481,41118,'_blocks_6_options','field_6176830e2ad16'),(228482,41118,'blocks_6_text_block_heading','Fees & Funding Options'),(228483,41118,'_blocks_6_text_block_heading','field_617669d413097'),(228484,41118,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(228485,41118,'_blocks_6_text_block_content','field_617669ec13098'),(228486,41118,'blocks_7_acfe_flexible_toggle',''),(228487,41118,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(228488,41118,'blocks_7_acfe_flexible_layout_title','Icons'),(228489,41118,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(228490,41118,'blocks_7_options_theme','#b61234'),(228491,41118,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(228492,41118,'blocks_7_options_format','row'),(228493,41118,'_blocks_7_options_format','field_64bfde9a90690'),(228494,41118,'blocks_7_options',''),(228495,41118,'_blocks_7_options','field_64bfdd9b90684'),(228496,41118,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(228497,41118,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(228498,41118,'blocks_7_icon_row_items_0_label','Pay in Full'),(228499,41118,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(228500,41118,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(228501,41118,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(228502,41118,'blocks_7_icon_row_items_1_icon','finance.svg'),(228503,41118,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(228504,41118,'blocks_7_icon_row_items_1_label','0% finance'),(228505,41118,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(228506,41118,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(228507,41118,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(228508,41118,'blocks_7_icon_row_items_2_icon','deposit.svg'),(228509,41118,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(228510,41118,'blocks_7_icon_row_items_2_label','Deposit & balance'),(228511,41118,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(228512,41118,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(228513,41118,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(228514,41118,'blocks_7_icon_row_items','3'),(228515,41118,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(228516,41118,'blocks_9_acfe_flexible_toggle',''),(228517,41118,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(228518,41118,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(228519,41118,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(228520,41118,'blocks_9_testimonial_slider_content_title',''),(228521,41118,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(228522,41118,'blocks_9_testimonial_slider_content_heading','Testimonials'),(228523,41118,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(228524,41118,'blocks_9_testimonial_slider_content_text',''),(228525,41118,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(228526,41118,'blocks_9_testimonial_slider_content_actions',''),(228527,41118,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(228528,41118,'blocks_9_testimonial_slider_content',''),(228529,41118,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(228530,41118,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(228531,41118,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(228532,41118,'blocks_9_testimonial_slider_ambassador_bool','0'),(228533,41118,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(228534,41118,'blocks_10_acfe_flexible_toggle',''),(228535,41118,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(228536,41118,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(228537,41118,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(228538,41118,'blocks_10_options_theme','#ffffff'),(228539,41118,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(228540,41118,'blocks_10_options_state','0'),(228541,41118,'_blocks_10_options_state','field_6239fcb7508c5'),(228542,41118,'blocks_10_options',''),(228543,41118,'_blocks_10_options','field_6177e2991ac44'),(228544,41118,'blocks_10_content_title',''),(228545,41118,'_blocks_10_content_title','field_64d237e8bb1e2'),(228546,41118,'blocks_10_content_heading','Frequently asked questions '),(228547,41118,'_blocks_10_content_heading','field_64d237e8bb1e3'),(228548,41118,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(228549,41118,'_blocks_10_content_text','field_64d237e8bb1e4'),(228550,41118,'blocks_10_content_actions',''),(228551,41118,'_blocks_10_content_actions','field_64d237e8bb1e5'),(228552,41118,'blocks_10_content_align','left'),(228553,41118,'_blocks_10_content_align','field_64d2443e6b6aa'),(228554,41118,'blocks_10_content',''),(228555,41118,'_blocks_10_content','field_64d237e8bb1e1'),(228556,41118,'blocks_10_accordion_content','faqs'),(228557,41118,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(228558,41118,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(228559,41118,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(228560,41118,'blocks_10_actions',''),(228561,41118,'_blocks_10_actions','field_61a746a817f7a'),(228562,41118,'blocks_8_acfe_flexible_toggle',''),(228563,41118,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(228564,41118,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(228565,41118,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(228566,41118,'blocks_8_options_theme','#f5f5f5'),(228567,41118,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(228568,41118,'blocks_8_options_reverse','0'),(228569,41118,'_blocks_8_options_reverse','field_61768049bb8ac'),(228570,41118,'blocks_8_options',''),(228571,41118,'_blocks_8_options','field_617682517c334'),(228572,41118,'blocks_8_split_5050_image','40920'),(228573,41118,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(228574,41118,'blocks_8_split_5050_video',''),(228575,41118,'_blocks_8_split_5050_video','field_6239f3160848a'),(228576,41118,'blocks_8_split_5050_content_title',''),(228577,41118,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(228578,41118,'blocks_8_split_5050_content_heading','Why Study This Course?'),(228579,41118,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(228580,41118,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(228581,41118,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(228582,41118,'blocks_8_split_5050_content_actions',''),(228583,41118,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(228584,41118,'blocks_8_split_5050_content',''),(228585,41118,'_blocks_8_split_5050_content','field_61767afceb8ba'),(228586,41118,'blocks_1_acfe_flexible_toggle',''),(228587,41118,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(228588,41118,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(228589,41118,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(228590,41118,'blocks_1_options_theme','#ffffff'),(228591,41118,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(228592,41118,'blocks_1_options_reverse','0'),(228593,41118,'_blocks_1_options_reverse','field_61768049bb8ac'),(228594,41118,'blocks_1_options',''),(228595,41118,'_blocks_1_options','field_617682517c334'),(228596,41118,'blocks_1_split_5050_image','39220'),(228597,41118,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(228598,41118,'blocks_1_split_5050_video',''),(228599,41118,'_blocks_1_split_5050_video','field_6239f3160848a'),(228600,41118,'blocks_1_split_5050_content_title',''),(228601,41118,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(228602,41118,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(228603,41118,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(228604,41118,'blocks_1_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(228605,41118,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(228606,41118,'blocks_1_split_5050_content_actions',''),(228607,41118,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(228608,41118,'blocks_1_split_5050_content',''),(228609,41118,'_blocks_1_split_5050_content','field_61767afceb8ba'),(228610,41118,'blocks_2_acfe_flexible_toggle',''),(228611,41118,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(228612,41118,'blocks_2_acfe_flexible_layout_title','Form'),(228613,41118,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(228614,41118,'blocks_2_row_content_format','standard'),(228615,41118,'_blocks_2_row_content_format','field_6481ead962881'),(228616,41118,'blocks_2_row_content_title',''),(228617,41118,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(228618,41118,'blocks_2_row_content_heading','Enquire Today'),(228619,41118,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(228620,41118,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(228621,41118,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(228622,41118,'blocks_2_row_content_actions',''),(228623,41118,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(228624,41118,'blocks_2_row_content',''),(228625,41118,'_blocks_2_row_content','field_61a0f5f5b3db0'),(228626,41118,'blocks_2_row_form','40394'),(228627,41118,'_blocks_2_row_form','field_61a4ff2c0b08e'),(228628,41118,'blocks_2_row_form_button_label',''),(228629,41118,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(228630,41118,'blocks_3_acfe_flexible_toggle',''),(228631,41118,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(228632,41118,'blocks_3_acfe_flexible_layout_title','Video'),(228633,41118,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(228634,41118,'blocks_3_size','large'),(228635,41118,'_blocks_3_size','field_6487038f297c1'),(228636,41118,'blocks_3_row_content_title',''),(228637,41118,'_blocks_3_row_content_title','field_64870132a865d'),(228638,41118,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(228639,41118,'_blocks_3_row_content_heading','field_64870142a865e'),(228640,41118,'blocks_3_row_content_text',''),(228641,41118,'_blocks_3_row_content_text','field_64870148a865f'),(228642,41118,'blocks_3_row_content',''),(228643,41118,'_blocks_3_row_content','field_6487008ba865c'),(228644,41118,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(228645,41118,'_blocks_3_video_src','field_6193c4a98ec07'),(228646,41118,'blocks_3_video_thumbnail','39186'),(228647,41118,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(228648,41118,'blocks_4_acfe_flexible_toggle',''),(228649,41118,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(228650,41118,'blocks_4_acfe_flexible_layout_title','Steps'),(228651,41118,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(228652,41118,'blocks_4_row_content_title',''),(228653,41118,'_blocks_4_row_content_title','field_64888cd1e26e0'),(228654,41118,'blocks_4_row_content_heading','Benefits of training with us'),(228655,41118,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(228656,41118,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(228657,41118,'_blocks_4_row_content_text','field_64888ce2e26e2'),(228658,41118,'blocks_4_row_content_actions',''),(228659,41118,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(228660,41118,'blocks_4_row_content',''),(228661,41118,'_blocks_4_row_content','field_64888cb0e26df'),(228662,41118,'blocks_4_steps_0_icon','progression.svg'),(228663,41118,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(228664,41118,'blocks_4_steps_0_title','Earning Potential'),(228665,41118,'_blocks_4_steps_0_title','field_64888d94e26e7'),(228666,41118,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(228667,41118,'_blocks_4_steps_0_text','field_64888d99e26e8'),(228668,41118,'blocks_4_steps_1_icon','support.svg'),(228669,41118,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(228670,41118,'blocks_4_steps_1_title','Lifetime Learning Promise'),(228671,41118,'_blocks_4_steps_1_title','field_64888d94e26e7'),(228672,41118,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(228673,41118,'_blocks_4_steps_1_text','field_64888d99e26e8'),(228674,41118,'blocks_4_steps_2_icon','qualification.svg'),(228675,41118,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(228676,41118,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(228677,41118,'_blocks_4_steps_2_title','field_64888d94e26e7'),(228678,41118,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(228679,41118,'_blocks_4_steps_2_text','field_64888d99e26e8'),(228680,41118,'blocks_4_steps_3_icon','leaders.svg'),(228681,41118,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(228682,41118,'blocks_4_steps_3_title','Stand Out From the Crowd'),(228683,41118,'_blocks_4_steps_3_title','field_64888d94e26e7'),(228684,41118,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(228685,41118,'_blocks_4_steps_3_text','field_64888d99e26e8'),(228686,41118,'blocks_4_steps','4'),(228687,41118,'_blocks_4_steps','field_64888d44e26e5'),(228688,41119,'hide_hero','0'),(228689,41119,'_hide_hero','field_66a2380fcda39'),(228690,41119,'hero_title','Biomechanics Coaching Diploma for Personal Trainers'),(228691,41119,'_hero_title','field_617571fe285e8'),(228692,41119,'hero_text','Boost Your Personal Training Career with Our Industry-Leading Biomechanics Coaching Diploma'),(228693,41119,'_hero_text','field_6175723c285e9'),(228694,41119,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(228695,41119,'_hero_actions_0_button','field_61757281285eb'),(228696,41119,'hero_actions','1'),(228697,41119,'_hero_actions','field_61757270285ea'),(228698,41119,'hero_style','default'),(228699,41119,'_hero_style','field_62051d9dc5324'),(228700,41119,'_thumbnail_id','39215'),(228701,41119,'__thumbnail_id','field_617570855ddaf'),(228702,41119,'hero_image_pos_x','right'),(228703,41119,'_hero_image_pos_x','field_62ec3d05390bb'),(228704,41119,'hero_image_pos_y','top'),(228705,41119,'_hero_image_pos_y','field_62ec3d05390bc'),(228706,41119,'hero_image_pos',''),(228707,41119,'_hero_image_pos','field_62ec3d05390ba'),(228708,41119,'fft_hide_from_listings','0'),(228709,41119,'_fft_hide_from_listings','field_61f1320446ab2'),(228710,41119,'fft_page_format','ppc'),(228711,41119,'_fft_page_format','field_61ae213f1f218'),(228712,41119,'fft_hide_nav','0'),(228713,41119,'_fft_hide_nav','field_635bd5e43527c'),(228714,41119,'fft_hide_header_call_to_action','0'),(228715,41119,'_fft_hide_header_call_to_action','field_635bd6723527d'),(228716,41119,'fft_page_sitemap','0'),(228717,41119,'_fft_page_sitemap','field_61af9b34e8181'),(228718,41119,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(228719,41119,'_blocks','field_6176696113096'),(228720,41119,'blocks_0_acfe_flexible_toggle',''),(228721,41119,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(228722,41119,'blocks_0_acfe_flexible_layout_title','Template'),(228723,41119,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(228724,41119,'blocks_0_template','39087'),(228725,41119,'_blocks_0_template','field_617bdd570fe01'),(228726,41119,'blocks_5_acfe_flexible_toggle',''),(228727,41119,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(228728,41119,'blocks_5_acfe_flexible_layout_title','Tabs'),(228729,41119,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(228730,41119,'blocks_5_options_theme','#ffffff'),(228731,41119,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(228732,41119,'blocks_5_options',''),(228733,41119,'_blocks_5_options','field_6177cfcd8140f'),(228734,41119,'blocks_5_tabs_0_tab_label','What will I learn?'),(228735,41119,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(228736,41119,'blocks_5_tabs_0_tab_content_title',''),(228737,41119,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(228738,41119,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(228739,41119,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(228740,41119,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(228741,41119,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(228742,41119,'blocks_5_tabs_0_tab_content_actions',''),(228743,41119,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(228744,41119,'blocks_5_tabs_0_tab_content',''),(228745,41119,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(228746,41119,'blocks_5_tabs_0_tab_image','39076'),(228747,41119,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(228748,41119,'blocks_5_tabs_1_tab_label','What do I need?'),(228749,41119,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(228750,41119,'blocks_5_tabs_1_tab_content_title',''),(228751,41119,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(228752,41119,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(228753,41119,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(228754,41119,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(228755,41119,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(228756,41119,'blocks_5_tabs_1_tab_content_actions',''),(228757,41119,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(228758,41119,'blocks_5_tabs_1_tab_content',''),(228759,41119,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(228760,41119,'blocks_5_tabs_1_tab_image','39223'),(228761,41119,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(228762,41119,'blocks_5_tabs_2_tab_label','Where can I learn?'),(228763,41119,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(228764,41119,'blocks_5_tabs_2_tab_content_title',''),(228765,41119,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(228766,41119,'blocks_5_tabs_2_tab_content_heading','Locations'),(228767,41119,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(228768,41119,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(228769,41119,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(228770,41119,'blocks_5_tabs_2_tab_content_actions',''),(228771,41119,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(228772,41119,'blocks_5_tabs_2_tab_content',''),(228773,41119,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(228774,41119,'blocks_5_tabs_2_tab_image','39224'),(228775,41119,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(228776,41119,'blocks_5_tabs','3'),(228777,41119,'_blocks_5_tabs','field_6177cff281419'),(228778,41119,'blocks_6_acfe_flexible_toggle',''),(228779,41119,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(228780,41119,'blocks_6_acfe_flexible_layout_title','Text Block'),(228781,41119,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(228782,41119,'blocks_6_options_theme','#b61234'),(228783,41119,'_blocks_6_options_theme','field_6176830e2ad17'),(228784,41119,'blocks_6_options',''),(228785,41119,'_blocks_6_options','field_6176830e2ad16'),(228786,41119,'blocks_6_text_block_heading','Fees & Funding Options'),(228787,41119,'_blocks_6_text_block_heading','field_617669d413097'),(228788,41119,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(228789,41119,'_blocks_6_text_block_content','field_617669ec13098'),(228790,41119,'blocks_7_acfe_flexible_toggle',''),(228791,41119,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(228792,41119,'blocks_7_acfe_flexible_layout_title','Icons'),(228793,41119,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(228794,41119,'blocks_7_options_theme','#b61234'),(228795,41119,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(228796,41119,'blocks_7_options_format','row'),(228797,41119,'_blocks_7_options_format','field_64bfde9a90690'),(228798,41119,'blocks_7_options',''),(228799,41119,'_blocks_7_options','field_64bfdd9b90684'),(228800,41119,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(228801,41119,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(228802,41119,'blocks_7_icon_row_items_0_label','Pay in Full'),(228803,41119,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(228804,41119,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(228805,41119,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(228806,41119,'blocks_7_icon_row_items_1_icon','finance.svg'),(228807,41119,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(228808,41119,'blocks_7_icon_row_items_1_label','0% finance'),(228809,41119,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(228810,41119,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(228811,41119,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(228812,41119,'blocks_7_icon_row_items_2_icon','deposit.svg'),(228813,41119,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(228814,41119,'blocks_7_icon_row_items_2_label','Deposit & balance'),(228815,41119,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(228816,41119,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(228817,41119,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(228818,41119,'blocks_7_icon_row_items','3'),(228819,41119,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(228820,41119,'blocks_9_acfe_flexible_toggle',''),(228821,41119,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(228822,41119,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(228823,41119,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(228824,41119,'blocks_9_testimonial_slider_content_title',''),(228825,41119,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(228826,41119,'blocks_9_testimonial_slider_content_heading','Testimonials'),(228827,41119,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(228828,41119,'blocks_9_testimonial_slider_content_text',''),(228829,41119,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(228830,41119,'blocks_9_testimonial_slider_content_actions',''),(228831,41119,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(228832,41119,'blocks_9_testimonial_slider_content',''),(228833,41119,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(228834,41119,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(228835,41119,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(228836,41119,'blocks_9_testimonial_slider_ambassador_bool','0'),(228837,41119,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(228838,41119,'blocks_10_acfe_flexible_toggle',''),(228839,41119,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(228840,41119,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(228841,41119,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(228842,41119,'blocks_10_options_theme','#ffffff'),(228843,41119,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(228844,41119,'blocks_10_options_state','0'),(228845,41119,'_blocks_10_options_state','field_6239fcb7508c5'),(228846,41119,'blocks_10_options',''),(228847,41119,'_blocks_10_options','field_6177e2991ac44'),(228848,41119,'blocks_10_content_title',''),(228849,41119,'_blocks_10_content_title','field_64d237e8bb1e2'),(228850,41119,'blocks_10_content_heading','Frequently asked questions '),(228851,41119,'_blocks_10_content_heading','field_64d237e8bb1e3'),(228852,41119,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(228853,41119,'_blocks_10_content_text','field_64d237e8bb1e4'),(228854,41119,'blocks_10_content_actions',''),(228855,41119,'_blocks_10_content_actions','field_64d237e8bb1e5'),(228856,41119,'blocks_10_content_align','left'),(228857,41119,'_blocks_10_content_align','field_64d2443e6b6aa'),(228858,41119,'blocks_10_content',''),(228859,41119,'_blocks_10_content','field_64d237e8bb1e1'),(228860,41119,'blocks_10_accordion_content','faqs'),(228861,41119,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(228862,41119,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(228863,41119,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(228864,41119,'blocks_10_actions',''),(228865,41119,'_blocks_10_actions','field_61a746a817f7a'),(228866,41119,'blocks_8_acfe_flexible_toggle',''),(228867,41119,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(228868,41119,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(228869,41119,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(228870,41119,'blocks_8_options_theme','#f5f5f5'),(228871,41119,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(228872,41119,'blocks_8_options_reverse','0'),(228873,41119,'_blocks_8_options_reverse','field_61768049bb8ac'),(228874,41119,'blocks_8_options',''),(228875,41119,'_blocks_8_options','field_617682517c334'),(228876,41119,'blocks_8_split_5050_image','40920'),(228877,41119,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(228878,41119,'blocks_8_split_5050_video',''),(228879,41119,'_blocks_8_split_5050_video','field_6239f3160848a'),(228880,41119,'blocks_8_split_5050_content_title',''),(228881,41119,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(228882,41119,'blocks_8_split_5050_content_heading','Why Study This Course?'),(228883,41119,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(228884,41119,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(228885,41119,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(228886,41119,'blocks_8_split_5050_content_actions',''),(228887,41119,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(228888,41119,'blocks_8_split_5050_content',''),(228889,41119,'_blocks_8_split_5050_content','field_61767afceb8ba'),(228890,41119,'blocks_1_acfe_flexible_toggle',''),(228891,41119,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(228892,41119,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(228893,41119,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(228894,41119,'blocks_1_options_theme','#ffffff'),(228895,41119,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(228896,41119,'blocks_1_options_reverse','0'),(228897,41119,'_blocks_1_options_reverse','field_61768049bb8ac'),(228898,41119,'blocks_1_options',''),(228899,41119,'_blocks_1_options','field_617682517c334'),(228900,41119,'blocks_1_split_5050_image','39220'),(228901,41119,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(228902,41119,'blocks_1_split_5050_video',''),(228903,41119,'_blocks_1_split_5050_video','field_6239f3160848a'),(228904,41119,'blocks_1_split_5050_content_title',''),(228905,41119,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(228906,41119,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(228907,41119,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(228908,41119,'blocks_1_split_5050_content_text','Our Diploma in Biomechanics Coaching leads the industry, empowering Level 3+ Personal Trainers to grow their client base, offer specialized services, and achieve higher incomes through evidence-based training and advanced assessments.\r\n\r\nEnhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(228909,41119,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(228910,41119,'blocks_1_split_5050_content_actions',''),(228911,41119,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(228912,41119,'blocks_1_split_5050_content',''),(228913,41119,'_blocks_1_split_5050_content','field_61767afceb8ba'),(228914,41119,'blocks_2_acfe_flexible_toggle',''),(228915,41119,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(228916,41119,'blocks_2_acfe_flexible_layout_title','Form'),(228917,41119,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(228918,41119,'blocks_2_row_content_format','standard'),(228919,41119,'_blocks_2_row_content_format','field_6481ead962881'),(228920,41119,'blocks_2_row_content_title',''),(228921,41119,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(228922,41119,'blocks_2_row_content_heading','Enquire Today'),(228923,41119,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(228924,41119,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(228925,41119,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(228926,41119,'blocks_2_row_content_actions',''),(228927,41119,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(228928,41119,'blocks_2_row_content',''),(228929,41119,'_blocks_2_row_content','field_61a0f5f5b3db0'),(228930,41119,'blocks_2_row_form','40394'),(228931,41119,'_blocks_2_row_form','field_61a4ff2c0b08e'),(228932,41119,'blocks_2_row_form_button_label',''),(228933,41119,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(228934,41119,'blocks_3_acfe_flexible_toggle',''),(228935,41119,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(228936,41119,'blocks_3_acfe_flexible_layout_title','Video'),(228937,41119,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(228938,41119,'blocks_3_size','large'),(228939,41119,'_blocks_3_size','field_6487038f297c1'),(228940,41119,'blocks_3_row_content_title',''),(228941,41119,'_blocks_3_row_content_title','field_64870132a865d'),(228942,41119,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(228943,41119,'_blocks_3_row_content_heading','field_64870142a865e'),(228944,41119,'blocks_3_row_content_text',''),(228945,41119,'_blocks_3_row_content_text','field_64870148a865f'),(228946,41119,'blocks_3_row_content',''),(228947,41119,'_blocks_3_row_content','field_6487008ba865c'),(228948,41119,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(228949,41119,'_blocks_3_video_src','field_6193c4a98ec07'),(228950,41119,'blocks_3_video_thumbnail','39186'),(228951,41119,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(228952,41119,'blocks_4_acfe_flexible_toggle',''),(228953,41119,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(228954,41119,'blocks_4_acfe_flexible_layout_title','Steps'),(228955,41119,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(228956,41119,'blocks_4_row_content_title',''),(228957,41119,'_blocks_4_row_content_title','field_64888cd1e26e0'),(228958,41119,'blocks_4_row_content_heading','Benefits of training with us'),(228959,41119,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(228960,41119,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(228961,41119,'_blocks_4_row_content_text','field_64888ce2e26e2'),(228962,41119,'blocks_4_row_content_actions',''),(228963,41119,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(228964,41119,'blocks_4_row_content',''),(228965,41119,'_blocks_4_row_content','field_64888cb0e26df'),(228966,41119,'blocks_4_steps_0_icon','progression.svg'),(228967,41119,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(228968,41119,'blocks_4_steps_0_title','Earning Potential'),(228969,41119,'_blocks_4_steps_0_title','field_64888d94e26e7'),(228970,41119,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(228971,41119,'_blocks_4_steps_0_text','field_64888d99e26e8'),(228972,41119,'blocks_4_steps_1_icon','support.svg'),(228973,41119,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(228974,41119,'blocks_4_steps_1_title','Lifetime Learning Promise'),(228975,41119,'_blocks_4_steps_1_title','field_64888d94e26e7'),(228976,41119,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(228977,41119,'_blocks_4_steps_1_text','field_64888d99e26e8'),(228978,41119,'blocks_4_steps_2_icon','qualification.svg'),(228979,41119,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(228980,41119,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(228981,41119,'_blocks_4_steps_2_title','field_64888d94e26e7'),(228982,41119,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(228983,41119,'_blocks_4_steps_2_text','field_64888d99e26e8'),(228984,41119,'blocks_4_steps_3_icon','leaders.svg'),(228985,41119,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(228986,41119,'blocks_4_steps_3_title','Stand Out From the Crowd'),(228987,41119,'_blocks_4_steps_3_title','field_64888d94e26e7'),(228988,41119,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(228989,41119,'_blocks_4_steps_3_text','field_64888d99e26e8'),(228990,41119,'blocks_4_steps','4'),(228991,41119,'_blocks_4_steps','field_64888d44e26e5'),(228992,41120,'hide_hero','0'),(228993,41120,'_hide_hero','field_66a2380fcda39'),(228994,41120,'hero_title','Biomechanics Coaching Diploma for Personal Trainers'),(228995,41120,'_hero_title','field_617571fe285e8'),(228996,41120,'hero_text','Boost Your Personal Training Career with Our Industry-Leading Biomechanics Coaching Diploma'),(228997,41120,'_hero_text','field_6175723c285e9'),(228998,41120,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-41115-3\";s:6:\"target\";s:0:\"\";}'),(228999,41120,'_hero_actions_0_button','field_61757281285eb'),(229000,41120,'hero_actions','1'),(229001,41120,'_hero_actions','field_61757270285ea'),(229002,41120,'hero_style','default'),(229003,41120,'_hero_style','field_62051d9dc5324'),(229004,41120,'_thumbnail_id','39215'),(229005,41120,'__thumbnail_id','field_617570855ddaf'),(229006,41120,'hero_image_pos_x','right'),(229007,41120,'_hero_image_pos_x','field_62ec3d05390bb'),(229008,41120,'hero_image_pos_y','top'),(229009,41120,'_hero_image_pos_y','field_62ec3d05390bc'),(229010,41120,'hero_image_pos',''),(229011,41120,'_hero_image_pos','field_62ec3d05390ba'),(229012,41120,'fft_hide_from_listings','0'),(229013,41120,'_fft_hide_from_listings','field_61f1320446ab2'),(229014,41120,'fft_page_format','ppc'),(229015,41120,'_fft_page_format','field_61ae213f1f218'),(229016,41120,'fft_hide_nav','0'),(229017,41120,'_fft_hide_nav','field_635bd5e43527c'),(229018,41120,'fft_hide_header_call_to_action','0'),(229019,41120,'_fft_hide_header_call_to_action','field_635bd6723527d'),(229020,41120,'fft_page_sitemap','0'),(229021,41120,'_fft_page_sitemap','field_61af9b34e8181'),(229022,41120,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(229023,41120,'_blocks','field_6176696113096'),(229024,41120,'blocks_0_acfe_flexible_toggle',''),(229025,41120,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(229026,41120,'blocks_0_acfe_flexible_layout_title','Template'),(229027,41120,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(229028,41120,'blocks_0_template','39087'),(229029,41120,'_blocks_0_template','field_617bdd570fe01'),(229030,41120,'blocks_5_acfe_flexible_toggle',''),(229031,41120,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(229032,41120,'blocks_5_acfe_flexible_layout_title','Tabs'),(229033,41120,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(229034,41120,'blocks_5_options_theme','#ffffff'),(229035,41120,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(229036,41120,'blocks_5_options',''),(229037,41120,'_blocks_5_options','field_6177cfcd8140f'),(229038,41120,'blocks_5_tabs_0_tab_label','What will I learn?'),(229039,41120,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(229040,41120,'blocks_5_tabs_0_tab_content_title',''),(229041,41120,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(229042,41120,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(229043,41120,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(229044,41120,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(229045,41120,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(229046,41120,'blocks_5_tabs_0_tab_content_actions',''),(229047,41120,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(229048,41120,'blocks_5_tabs_0_tab_content',''),(229049,41120,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(229050,41120,'blocks_5_tabs_0_tab_image','39076'),(229051,41120,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(229052,41120,'blocks_5_tabs_1_tab_label','What do I need?'),(229053,41120,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(229054,41120,'blocks_5_tabs_1_tab_content_title',''),(229055,41120,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(229056,41120,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(229057,41120,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(229058,41120,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(229059,41120,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(229060,41120,'blocks_5_tabs_1_tab_content_actions',''),(229061,41120,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(229062,41120,'blocks_5_tabs_1_tab_content',''),(229063,41120,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(229064,41120,'blocks_5_tabs_1_tab_image','39223'),(229065,41120,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(229066,41120,'blocks_5_tabs_2_tab_label','Where can I learn?'),(229067,41120,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(229068,41120,'blocks_5_tabs_2_tab_content_title',''),(229069,41120,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(229070,41120,'blocks_5_tabs_2_tab_content_heading','Locations'),(229071,41120,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(229072,41120,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(229073,41120,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(229074,41120,'blocks_5_tabs_2_tab_content_actions',''),(229075,41120,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(229076,41120,'blocks_5_tabs_2_tab_content',''),(229077,41120,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(229078,41120,'blocks_5_tabs_2_tab_image','39224'),(229079,41120,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(229080,41120,'blocks_5_tabs','3'),(229081,41120,'_blocks_5_tabs','field_6177cff281419'),(229082,41120,'blocks_6_acfe_flexible_toggle',''),(229083,41120,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(229084,41120,'blocks_6_acfe_flexible_layout_title','Text Block'),(229085,41120,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(229086,41120,'blocks_6_options_theme','#b61234'),(229087,41120,'_blocks_6_options_theme','field_6176830e2ad17'),(229088,41120,'blocks_6_options',''),(229089,41120,'_blocks_6_options','field_6176830e2ad16'),(229090,41120,'blocks_6_text_block_heading','Fees & Funding Options'),(229091,41120,'_blocks_6_text_block_heading','field_617669d413097'),(229092,41120,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(229093,41120,'_blocks_6_text_block_content','field_617669ec13098'),(229094,41120,'blocks_7_acfe_flexible_toggle',''),(229095,41120,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(229096,41120,'blocks_7_acfe_flexible_layout_title','Icons'),(229097,41120,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(229098,41120,'blocks_7_options_theme','#b61234'),(229099,41120,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(229100,41120,'blocks_7_options_format','row'),(229101,41120,'_blocks_7_options_format','field_64bfde9a90690'),(229102,41120,'blocks_7_options',''),(229103,41120,'_blocks_7_options','field_64bfdd9b90684'),(229104,41120,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(229105,41120,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(229106,41120,'blocks_7_icon_row_items_0_label','Pay in Full'),(229107,41120,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(229108,41120,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(229109,41120,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(229110,41120,'blocks_7_icon_row_items_1_icon','finance.svg'),(229111,41120,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(229112,41120,'blocks_7_icon_row_items_1_label','0% finance'),(229113,41120,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(229114,41120,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(229115,41120,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(229116,41120,'blocks_7_icon_row_items_2_icon','deposit.svg'),(229117,41120,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(229118,41120,'blocks_7_icon_row_items_2_label','Deposit & balance'),(229119,41120,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(229120,41120,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(229121,41120,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(229122,41120,'blocks_7_icon_row_items','3'),(229123,41120,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(229124,41120,'blocks_9_acfe_flexible_toggle',''),(229125,41120,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(229126,41120,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(229127,41120,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(229128,41120,'blocks_9_testimonial_slider_content_title',''),(229129,41120,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(229130,41120,'blocks_9_testimonial_slider_content_heading','Testimonials'),(229131,41120,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(229132,41120,'blocks_9_testimonial_slider_content_text',''),(229133,41120,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(229134,41120,'blocks_9_testimonial_slider_content_actions',''),(229135,41120,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(229136,41120,'blocks_9_testimonial_slider_content',''),(229137,41120,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(229138,41120,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(229139,41120,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(229140,41120,'blocks_9_testimonial_slider_ambassador_bool','0'),(229141,41120,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(229142,41120,'blocks_10_acfe_flexible_toggle',''),(229143,41120,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(229144,41120,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(229145,41120,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(229146,41120,'blocks_10_options_theme','#ffffff'),(229147,41120,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(229148,41120,'blocks_10_options_state','0'),(229149,41120,'_blocks_10_options_state','field_6239fcb7508c5'),(229150,41120,'blocks_10_options',''),(229151,41120,'_blocks_10_options','field_6177e2991ac44'),(229152,41120,'blocks_10_content_title',''),(229153,41120,'_blocks_10_content_title','field_64d237e8bb1e2'),(229154,41120,'blocks_10_content_heading','Frequently asked questions '),(229155,41120,'_blocks_10_content_heading','field_64d237e8bb1e3'),(229156,41120,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(229157,41120,'_blocks_10_content_text','field_64d237e8bb1e4'),(229158,41120,'blocks_10_content_actions',''),(229159,41120,'_blocks_10_content_actions','field_64d237e8bb1e5'),(229160,41120,'blocks_10_content_align','left'),(229161,41120,'_blocks_10_content_align','field_64d2443e6b6aa'),(229162,41120,'blocks_10_content',''),(229163,41120,'_blocks_10_content','field_64d237e8bb1e1'),(229164,41120,'blocks_10_accordion_content','faqs'),(229165,41120,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(229166,41120,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(229167,41120,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(229168,41120,'blocks_10_actions',''),(229169,41120,'_blocks_10_actions','field_61a746a817f7a'),(229170,41120,'blocks_8_acfe_flexible_toggle',''),(229171,41120,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(229172,41120,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(229173,41120,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(229174,41120,'blocks_8_options_theme','#f5f5f5'),(229175,41120,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(229176,41120,'blocks_8_options_reverse','0'),(229177,41120,'_blocks_8_options_reverse','field_61768049bb8ac'),(229178,41120,'blocks_8_options',''),(229179,41120,'_blocks_8_options','field_617682517c334'),(229180,41120,'blocks_8_split_5050_image','40920'),(229181,41120,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(229182,41120,'blocks_8_split_5050_video',''),(229183,41120,'_blocks_8_split_5050_video','field_6239f3160848a'),(229184,41120,'blocks_8_split_5050_content_title',''),(229185,41120,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(229186,41120,'blocks_8_split_5050_content_heading','Why Study This Course?'),(229187,41120,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(229188,41120,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(229189,41120,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(229190,41120,'blocks_8_split_5050_content_actions',''),(229191,41120,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(229192,41120,'blocks_8_split_5050_content',''),(229193,41120,'_blocks_8_split_5050_content','field_61767afceb8ba'),(229194,41120,'blocks_1_acfe_flexible_toggle',''),(229195,41120,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(229196,41120,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(229197,41120,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(229198,41120,'blocks_1_options_theme','#ffffff'),(229199,41120,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(229200,41120,'blocks_1_options_reverse','0'),(229201,41120,'_blocks_1_options_reverse','field_61768049bb8ac'),(229202,41120,'blocks_1_options',''),(229203,41120,'_blocks_1_options','field_617682517c334'),(229204,41120,'blocks_1_split_5050_image','39220'),(229205,41120,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(229206,41120,'blocks_1_split_5050_video',''),(229207,41120,'_blocks_1_split_5050_video','field_6239f3160848a'),(229208,41120,'blocks_1_split_5050_content_title',''),(229209,41120,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(229210,41120,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(229211,41120,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(229212,41120,'blocks_1_split_5050_content_text','Our Diploma in Biomechanics Coaching leads the industry, empowering Level 3+ Personal Trainers to grow their client base, offer specialized services, and achieve higher incomes through evidence-based training and advanced assessments.\r\n\r\nEnhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(229213,41120,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(229214,41120,'blocks_1_split_5050_content_actions',''),(229215,41120,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(229216,41120,'blocks_1_split_5050_content',''),(229217,41120,'_blocks_1_split_5050_content','field_61767afceb8ba'),(229218,41120,'blocks_2_acfe_flexible_toggle',''),(229219,41120,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(229220,41120,'blocks_2_acfe_flexible_layout_title','Form'),(229221,41120,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(229222,41120,'blocks_2_row_content_format','standard'),(229223,41120,'_blocks_2_row_content_format','field_6481ead962881'),(229224,41120,'blocks_2_row_content_title',''),(229225,41120,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(229226,41120,'blocks_2_row_content_heading','Enquire Today'),(229227,41120,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(229228,41120,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(229229,41120,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(229230,41120,'blocks_2_row_content_actions',''),(229231,41120,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(229232,41120,'blocks_2_row_content',''),(229233,41120,'_blocks_2_row_content','field_61a0f5f5b3db0'),(229234,41120,'blocks_2_row_form','40394'),(229235,41120,'_blocks_2_row_form','field_61a4ff2c0b08e'),(229236,41120,'blocks_2_row_form_button_label',''),(229237,41120,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(229238,41120,'blocks_3_acfe_flexible_toggle',''),(229239,41120,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(229240,41120,'blocks_3_acfe_flexible_layout_title','Video'),(229241,41120,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(229242,41120,'blocks_3_size','large'),(229243,41120,'_blocks_3_size','field_6487038f297c1'),(229244,41120,'blocks_3_row_content_title',''),(229245,41120,'_blocks_3_row_content_title','field_64870132a865d'),(229246,41120,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(229247,41120,'_blocks_3_row_content_heading','field_64870142a865e'),(229248,41120,'blocks_3_row_content_text',''),(229249,41120,'_blocks_3_row_content_text','field_64870148a865f'),(229250,41120,'blocks_3_row_content',''),(229251,41120,'_blocks_3_row_content','field_6487008ba865c'),(229252,41120,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(229253,41120,'_blocks_3_video_src','field_6193c4a98ec07'),(229254,41120,'blocks_3_video_thumbnail','39186'),(229255,41120,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(229256,41120,'blocks_4_acfe_flexible_toggle',''),(229257,41120,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(229258,41120,'blocks_4_acfe_flexible_layout_title','Steps'),(229259,41120,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(229260,41120,'blocks_4_row_content_title',''),(229261,41120,'_blocks_4_row_content_title','field_64888cd1e26e0'),(229262,41120,'blocks_4_row_content_heading','Benefits of training with us'),(229263,41120,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(229264,41120,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(229265,41120,'_blocks_4_row_content_text','field_64888ce2e26e2'),(229266,41120,'blocks_4_row_content_actions',''),(229267,41120,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(229268,41120,'blocks_4_row_content',''),(229269,41120,'_blocks_4_row_content','field_64888cb0e26df'),(229270,41120,'blocks_4_steps_0_icon','progression.svg'),(229271,41120,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(229272,41120,'blocks_4_steps_0_title','Earning Potential'),(229273,41120,'_blocks_4_steps_0_title','field_64888d94e26e7'),(229274,41120,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(229275,41120,'_blocks_4_steps_0_text','field_64888d99e26e8'),(229276,41120,'blocks_4_steps_1_icon','support.svg'),(229277,41120,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(229278,41120,'blocks_4_steps_1_title','Lifetime Learning Promise'),(229279,41120,'_blocks_4_steps_1_title','field_64888d94e26e7'),(229280,41120,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(229281,41120,'_blocks_4_steps_1_text','field_64888d99e26e8'),(229282,41120,'blocks_4_steps_2_icon','qualification.svg'),(229283,41120,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(229284,41120,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(229285,41120,'_blocks_4_steps_2_title','field_64888d94e26e7'),(229286,41120,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(229287,41120,'_blocks_4_steps_2_text','field_64888d99e26e8'),(229288,41120,'blocks_4_steps_3_icon','leaders.svg'),(229289,41120,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(229290,41120,'blocks_4_steps_3_title','Stand Out From the Crowd'),(229291,41120,'_blocks_4_steps_3_title','field_64888d94e26e7'),(229292,41120,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(229293,41120,'_blocks_4_steps_3_text','field_64888d99e26e8'),(229294,41120,'blocks_4_steps','4'),(229295,41120,'_blocks_4_steps','field_64888d44e26e5'),(229296,41121,'hide_hero','0'),(229297,41121,'_hide_hero','field_66a2380fcda39'),(229298,41121,'hero_title','Biomechanics Coaching Diploma for Personal Trainers'),(229299,41121,'_hero_title','field_617571fe285e8'),(229300,41121,'hero_text','Boost Your Personal Training Career with Our Industry-Leading Biomechanics Coaching Diploma'),(229301,41121,'_hero_text','field_6175723c285e9'),(229302,41121,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-41115-3\";s:6:\"target\";s:0:\"\";}'),(229303,41121,'_hero_actions_0_button','field_61757281285eb'),(229304,41121,'hero_actions','1'),(229305,41121,'_hero_actions','field_61757270285ea'),(229306,41121,'hero_style','default'),(229307,41121,'_hero_style','field_62051d9dc5324'),(229308,41121,'_thumbnail_id','39215'),(229309,41121,'__thumbnail_id','field_617570855ddaf'),(229310,41121,'hero_image_pos_x','right'),(229311,41121,'_hero_image_pos_x','field_62ec3d05390bb'),(229312,41121,'hero_image_pos_y','top'),(229313,41121,'_hero_image_pos_y','field_62ec3d05390bc'),(229314,41121,'hero_image_pos',''),(229315,41121,'_hero_image_pos','field_62ec3d05390ba'),(229316,41121,'fft_hide_from_listings','0'),(229317,41121,'_fft_hide_from_listings','field_61f1320446ab2'),(229318,41121,'fft_page_format','default'),(229319,41121,'_fft_page_format','field_61ae213f1f218'),(229320,41121,'fft_hide_nav','0'),(229321,41121,'_fft_hide_nav','field_635bd5e43527c'),(229322,41121,'fft_hide_header_call_to_action','0'),(229323,41121,'_fft_hide_header_call_to_action','field_635bd6723527d'),(229324,41121,'fft_page_sitemap','0'),(229325,41121,'_fft_page_sitemap','field_61af9b34e8181'),(229326,41121,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(229327,41121,'_blocks','field_6176696113096'),(229328,41121,'blocks_0_acfe_flexible_toggle',''),(229329,41121,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(229330,41121,'blocks_0_acfe_flexible_layout_title','Template'),(229331,41121,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(229332,41121,'blocks_0_template','39087'),(229333,41121,'_blocks_0_template','field_617bdd570fe01'),(229334,41121,'blocks_5_acfe_flexible_toggle',''),(229335,41121,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(229336,41121,'blocks_5_acfe_flexible_layout_title','Tabs'),(229337,41121,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(229338,41121,'blocks_5_options_theme','#ffffff'),(229339,41121,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(229340,41121,'blocks_5_options',''),(229341,41121,'_blocks_5_options','field_6177cfcd8140f'),(229342,41121,'blocks_5_tabs_0_tab_label','What will I learn?'),(229343,41121,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(229344,41121,'blocks_5_tabs_0_tab_content_title',''),(229345,41121,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(229346,41121,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(229347,41121,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(229348,41121,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(229349,41121,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(229350,41121,'blocks_5_tabs_0_tab_content_actions',''),(229351,41121,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(229352,41121,'blocks_5_tabs_0_tab_content',''),(229353,41121,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(229354,41121,'blocks_5_tabs_0_tab_image','39076'),(229355,41121,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(229356,41121,'blocks_5_tabs_1_tab_label','What do I need?'),(229357,41121,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(229358,41121,'blocks_5_tabs_1_tab_content_title',''),(229359,41121,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(229360,41121,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(229361,41121,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(229362,41121,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(229363,41121,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(229364,41121,'blocks_5_tabs_1_tab_content_actions',''),(229365,41121,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(229366,41121,'blocks_5_tabs_1_tab_content',''),(229367,41121,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(229368,41121,'blocks_5_tabs_1_tab_image','39223'),(229369,41121,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(229370,41121,'blocks_5_tabs_2_tab_label','Where can I learn?'),(229371,41121,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(229372,41121,'blocks_5_tabs_2_tab_content_title',''),(229373,41121,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(229374,41121,'blocks_5_tabs_2_tab_content_heading','Locations'),(229375,41121,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(229376,41121,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(229377,41121,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(229378,41121,'blocks_5_tabs_2_tab_content_actions',''),(229379,41121,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(229380,41121,'blocks_5_tabs_2_tab_content',''),(229381,41121,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(229382,41121,'blocks_5_tabs_2_tab_image','39224'),(229383,41121,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(229384,41121,'blocks_5_tabs','3'),(229385,41121,'_blocks_5_tabs','field_6177cff281419'),(229386,41121,'blocks_6_acfe_flexible_toggle',''),(229387,41121,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(229388,41121,'blocks_6_acfe_flexible_layout_title','Text Block'),(229389,41121,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(229390,41121,'blocks_6_options_theme','#b61234'),(229391,41121,'_blocks_6_options_theme','field_6176830e2ad17'),(229392,41121,'blocks_6_options',''),(229393,41121,'_blocks_6_options','field_6176830e2ad16'),(229394,41121,'blocks_6_text_block_heading','Fees & Funding Options'),(229395,41121,'_blocks_6_text_block_heading','field_617669d413097'),(229396,41121,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(229397,41121,'_blocks_6_text_block_content','field_617669ec13098'),(229398,41121,'blocks_7_acfe_flexible_toggle',''),(229399,41121,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(229400,41121,'blocks_7_acfe_flexible_layout_title','Icons'),(229401,41121,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(229402,41121,'blocks_7_options_theme','#b61234'),(229403,41121,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(229404,41121,'blocks_7_options_format','row'),(229405,41121,'_blocks_7_options_format','field_64bfde9a90690'),(229406,41121,'blocks_7_options',''),(229407,41121,'_blocks_7_options','field_64bfdd9b90684'),(229408,41121,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(229409,41121,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(229410,41121,'blocks_7_icon_row_items_0_label','Pay in Full'),(229411,41121,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(229412,41121,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(229413,41121,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(229414,41121,'blocks_7_icon_row_items_1_icon','finance.svg'),(229415,41121,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(229416,41121,'blocks_7_icon_row_items_1_label','0% finance'),(229417,41121,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(229418,41121,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(229419,41121,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(229420,41121,'blocks_7_icon_row_items_2_icon','deposit.svg'),(229421,41121,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(229422,41121,'blocks_7_icon_row_items_2_label','Deposit & balance'),(229423,41121,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(229424,41121,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(229425,41121,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(229426,41121,'blocks_7_icon_row_items','3'),(229427,41121,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(229428,41121,'blocks_9_acfe_flexible_toggle',''),(229429,41121,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(229430,41121,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(229431,41121,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(229432,41121,'blocks_9_testimonial_slider_content_title',''),(229433,41121,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(229434,41121,'blocks_9_testimonial_slider_content_heading','Testimonials'),(229435,41121,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(229436,41121,'blocks_9_testimonial_slider_content_text',''),(229437,41121,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(229438,41121,'blocks_9_testimonial_slider_content_actions',''),(229439,41121,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(229440,41121,'blocks_9_testimonial_slider_content',''),(229441,41121,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(229442,41121,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(229443,41121,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(229444,41121,'blocks_9_testimonial_slider_ambassador_bool','0'),(229445,41121,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(229446,41121,'blocks_10_acfe_flexible_toggle',''),(229447,41121,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(229448,41121,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(229449,41121,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(229450,41121,'blocks_10_options_theme','#ffffff'),(229451,41121,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(229452,41121,'blocks_10_options_state','0'),(229453,41121,'_blocks_10_options_state','field_6239fcb7508c5'),(229454,41121,'blocks_10_options',''),(229455,41121,'_blocks_10_options','field_6177e2991ac44'),(229456,41121,'blocks_10_content_title',''),(229457,41121,'_blocks_10_content_title','field_64d237e8bb1e2'),(229458,41121,'blocks_10_content_heading','Frequently asked questions '),(229459,41121,'_blocks_10_content_heading','field_64d237e8bb1e3'),(229460,41121,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(229461,41121,'_blocks_10_content_text','field_64d237e8bb1e4'),(229462,41121,'blocks_10_content_actions',''),(229463,41121,'_blocks_10_content_actions','field_64d237e8bb1e5'),(229464,41121,'blocks_10_content_align','left'),(229465,41121,'_blocks_10_content_align','field_64d2443e6b6aa'),(229466,41121,'blocks_10_content',''),(229467,41121,'_blocks_10_content','field_64d237e8bb1e1'),(229468,41121,'blocks_10_accordion_content','faqs'),(229469,41121,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(229470,41121,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(229471,41121,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(229472,41121,'blocks_10_actions',''),(229473,41121,'_blocks_10_actions','field_61a746a817f7a'),(229474,41121,'blocks_8_acfe_flexible_toggle',''),(229475,41121,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(229476,41121,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(229477,41121,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(229478,41121,'blocks_8_options_theme','#f5f5f5'),(229479,41121,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(229480,41121,'blocks_8_options_reverse','0'),(229481,41121,'_blocks_8_options_reverse','field_61768049bb8ac'),(229482,41121,'blocks_8_options',''),(229483,41121,'_blocks_8_options','field_617682517c334'),(229484,41121,'blocks_8_split_5050_image','40920'),(229485,41121,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(229486,41121,'blocks_8_split_5050_video',''),(229487,41121,'_blocks_8_split_5050_video','field_6239f3160848a'),(229488,41121,'blocks_8_split_5050_content_title',''),(229489,41121,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(229490,41121,'blocks_8_split_5050_content_heading','Why Study This Course?'),(229491,41121,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(229492,41121,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(229493,41121,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(229494,41121,'blocks_8_split_5050_content_actions',''),(229495,41121,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(229496,41121,'blocks_8_split_5050_content',''),(229497,41121,'_blocks_8_split_5050_content','field_61767afceb8ba'),(229498,41121,'blocks_1_acfe_flexible_toggle',''),(229499,41121,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(229500,41121,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(229501,41121,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(229502,41121,'blocks_1_options_theme','#ffffff'),(229503,41121,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(229504,41121,'blocks_1_options_reverse','0'),(229505,41121,'_blocks_1_options_reverse','field_61768049bb8ac'),(229506,41121,'blocks_1_options',''),(229507,41121,'_blocks_1_options','field_617682517c334'),(229508,41121,'blocks_1_split_5050_image','39220'),(229509,41121,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(229510,41121,'blocks_1_split_5050_video',''),(229511,41121,'_blocks_1_split_5050_video','field_6239f3160848a'),(229512,41121,'blocks_1_split_5050_content_title',''),(229513,41121,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(229514,41121,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(229515,41121,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(229516,41121,'blocks_1_split_5050_content_text','Our Diploma in Biomechanics Coaching leads the industry, empowering Level 3+ Personal Trainers to grow their client base, offer specialized services, and achieve higher incomes through evidence-based training and advanced assessments.\r\n\r\nEnhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(229517,41121,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(229518,41121,'blocks_1_split_5050_content_actions',''),(229519,41121,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(229520,41121,'blocks_1_split_5050_content',''),(229521,41121,'_blocks_1_split_5050_content','field_61767afceb8ba'),(229522,41121,'blocks_2_acfe_flexible_toggle',''),(229523,41121,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(229524,41121,'blocks_2_acfe_flexible_layout_title','Form'),(229525,41121,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(229526,41121,'blocks_2_row_content_format','standard'),(229527,41121,'_blocks_2_row_content_format','field_6481ead962881'),(229528,41121,'blocks_2_row_content_title',''),(229529,41121,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(229530,41121,'blocks_2_row_content_heading','Enquire Today'),(229531,41121,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(229532,41121,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(229533,41121,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(229534,41121,'blocks_2_row_content_actions',''),(229535,41121,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(229536,41121,'blocks_2_row_content',''),(229537,41121,'_blocks_2_row_content','field_61a0f5f5b3db0'),(229538,41121,'blocks_2_row_form','40394'),(229539,41121,'_blocks_2_row_form','field_61a4ff2c0b08e'),(229540,41121,'blocks_2_row_form_button_label',''),(229541,41121,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(229542,41121,'blocks_3_acfe_flexible_toggle',''),(229543,41121,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(229544,41121,'blocks_3_acfe_flexible_layout_title','Video'),(229545,41121,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(229546,41121,'blocks_3_size','large'),(229547,41121,'_blocks_3_size','field_6487038f297c1'),(229548,41121,'blocks_3_row_content_title',''),(229549,41121,'_blocks_3_row_content_title','field_64870132a865d'),(229550,41121,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(229551,41121,'_blocks_3_row_content_heading','field_64870142a865e'),(229552,41121,'blocks_3_row_content_text',''),(229553,41121,'_blocks_3_row_content_text','field_64870148a865f'),(229554,41121,'blocks_3_row_content',''),(229555,41121,'_blocks_3_row_content','field_6487008ba865c'),(229556,41121,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(229557,41121,'_blocks_3_video_src','field_6193c4a98ec07'),(229558,41121,'blocks_3_video_thumbnail','39186'),(229559,41121,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(229560,41121,'blocks_4_acfe_flexible_toggle',''),(229561,41121,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(229562,41121,'blocks_4_acfe_flexible_layout_title','Steps'),(229563,41121,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(229564,41121,'blocks_4_row_content_title',''),(229565,41121,'_blocks_4_row_content_title','field_64888cd1e26e0'),(229566,41121,'blocks_4_row_content_heading','Benefits of training with us'),(229567,41121,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(229568,41121,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(229569,41121,'_blocks_4_row_content_text','field_64888ce2e26e2'),(229570,41121,'blocks_4_row_content_actions',''),(229571,41121,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(229572,41121,'blocks_4_row_content',''),(229573,41121,'_blocks_4_row_content','field_64888cb0e26df'),(229574,41121,'blocks_4_steps_0_icon','progression.svg'),(229575,41121,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(229576,41121,'blocks_4_steps_0_title','Earning Potential'),(229577,41121,'_blocks_4_steps_0_title','field_64888d94e26e7'),(229578,41121,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(229579,41121,'_blocks_4_steps_0_text','field_64888d99e26e8'),(229580,41121,'blocks_4_steps_1_icon','support.svg'),(229581,41121,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(229582,41121,'blocks_4_steps_1_title','Lifetime Learning Promise'),(229583,41121,'_blocks_4_steps_1_title','field_64888d94e26e7'),(229584,41121,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(229585,41121,'_blocks_4_steps_1_text','field_64888d99e26e8'),(229586,41121,'blocks_4_steps_2_icon','qualification.svg'),(229587,41121,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(229588,41121,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(229589,41121,'_blocks_4_steps_2_title','field_64888d94e26e7'),(229590,41121,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(229591,41121,'_blocks_4_steps_2_text','field_64888d99e26e8'),(229592,41121,'blocks_4_steps_3_icon','leaders.svg'),(229593,41121,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(229594,41121,'blocks_4_steps_3_title','Stand Out From the Crowd'),(229595,41121,'_blocks_4_steps_3_title','field_64888d94e26e7'),(229596,41121,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(229597,41121,'_blocks_4_steps_3_text','field_64888d99e26e8'),(229598,41121,'blocks_4_steps','4'),(229599,41121,'_blocks_4_steps','field_64888d44e26e5'),(229600,41122,'hide_hero','0'),(229601,41122,'_hide_hero','field_66a2380fcda39'),(229602,41122,'hero_title','Biomechanics Coaching Diploma for Personal Trainers'),(229603,41122,'_hero_title','field_617571fe285e8'),(229604,41122,'hero_text','Boost Your Personal Training Career with Our Industry-Leading Biomechanics Coaching Diploma'),(229605,41122,'_hero_text','field_6175723c285e9'),(229606,41122,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-41115-3\";s:6:\"target\";s:0:\"\";}'),(229607,41122,'_hero_actions_0_button','field_61757281285eb'),(229608,41122,'hero_actions','1'),(229609,41122,'_hero_actions','field_61757270285ea'),(229610,41122,'hero_style','default'),(229611,41122,'_hero_style','field_62051d9dc5324'),(229612,41122,'_thumbnail_id','39215'),(229613,41122,'__thumbnail_id','field_617570855ddaf'),(229614,41122,'hero_image_pos_x','right'),(229615,41122,'_hero_image_pos_x','field_62ec3d05390bb'),(229616,41122,'hero_image_pos_y','top'),(229617,41122,'_hero_image_pos_y','field_62ec3d05390bc'),(229618,41122,'hero_image_pos',''),(229619,41122,'_hero_image_pos','field_62ec3d05390ba'),(229620,41122,'fft_hide_from_listings','0'),(229621,41122,'_fft_hide_from_listings','field_61f1320446ab2'),(229622,41122,'fft_page_format','ppc'),(229623,41122,'_fft_page_format','field_61ae213f1f218'),(229624,41122,'fft_hide_nav','0'),(229625,41122,'_fft_hide_nav','field_635bd5e43527c'),(229626,41122,'fft_hide_header_call_to_action','0'),(229627,41122,'_fft_hide_header_call_to_action','field_635bd6723527d'),(229628,41122,'fft_page_sitemap','0'),(229629,41122,'_fft_page_sitemap','field_61af9b34e8181'),(229630,41122,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(229631,41122,'_blocks','field_6176696113096'),(229632,41122,'blocks_0_acfe_flexible_toggle',''),(229633,41122,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(229634,41122,'blocks_0_acfe_flexible_layout_title','Template'),(229635,41122,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(229636,41122,'blocks_0_template','39087'),(229637,41122,'_blocks_0_template','field_617bdd570fe01'),(229638,41122,'blocks_5_acfe_flexible_toggle',''),(229639,41122,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(229640,41122,'blocks_5_acfe_flexible_layout_title','Tabs'),(229641,41122,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(229642,41122,'blocks_5_options_theme','#ffffff'),(229643,41122,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(229644,41122,'blocks_5_options',''),(229645,41122,'_blocks_5_options','field_6177cfcd8140f'),(229646,41122,'blocks_5_tabs_0_tab_label','What will I learn?'),(229647,41122,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(229648,41122,'blocks_5_tabs_0_tab_content_title',''),(229649,41122,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(229650,41122,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(229651,41122,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(229652,41122,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(229653,41122,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(229654,41122,'blocks_5_tabs_0_tab_content_actions',''),(229655,41122,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(229656,41122,'blocks_5_tabs_0_tab_content',''),(229657,41122,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(229658,41122,'blocks_5_tabs_0_tab_image','39076'),(229659,41122,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(229660,41122,'blocks_5_tabs_1_tab_label','What do I need?'),(229661,41122,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(229662,41122,'blocks_5_tabs_1_tab_content_title',''),(229663,41122,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(229664,41122,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(229665,41122,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(229666,41122,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(229667,41122,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(229668,41122,'blocks_5_tabs_1_tab_content_actions',''),(229669,41122,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(229670,41122,'blocks_5_tabs_1_tab_content',''),(229671,41122,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(229672,41122,'blocks_5_tabs_1_tab_image','39223'),(229673,41122,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(229674,41122,'blocks_5_tabs_2_tab_label','Where can I learn?'),(229675,41122,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(229676,41122,'blocks_5_tabs_2_tab_content_title',''),(229677,41122,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(229678,41122,'blocks_5_tabs_2_tab_content_heading','Locations'),(229679,41122,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(229680,41122,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(229681,41122,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(229682,41122,'blocks_5_tabs_2_tab_content_actions',''),(229683,41122,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(229684,41122,'blocks_5_tabs_2_tab_content',''),(229685,41122,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(229686,41122,'blocks_5_tabs_2_tab_image','39224'),(229687,41122,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(229688,41122,'blocks_5_tabs','3'),(229689,41122,'_blocks_5_tabs','field_6177cff281419'),(229690,41122,'blocks_6_acfe_flexible_toggle',''),(229691,41122,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(229692,41122,'blocks_6_acfe_flexible_layout_title','Text Block'),(229693,41122,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(229694,41122,'blocks_6_options_theme','#b61234'),(229695,41122,'_blocks_6_options_theme','field_6176830e2ad17'),(229696,41122,'blocks_6_options',''),(229697,41122,'_blocks_6_options','field_6176830e2ad16'),(229698,41122,'blocks_6_text_block_heading','Fees & Funding Options'),(229699,41122,'_blocks_6_text_block_heading','field_617669d413097'),(229700,41122,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(229701,41122,'_blocks_6_text_block_content','field_617669ec13098'),(229702,41122,'blocks_7_acfe_flexible_toggle',''),(229703,41122,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(229704,41122,'blocks_7_acfe_flexible_layout_title','Icons'),(229705,41122,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(229706,41122,'blocks_7_options_theme','#b61234'),(229707,41122,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(229708,41122,'blocks_7_options_format','row'),(229709,41122,'_blocks_7_options_format','field_64bfde9a90690'),(229710,41122,'blocks_7_options',''),(229711,41122,'_blocks_7_options','field_64bfdd9b90684'),(229712,41122,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(229713,41122,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(229714,41122,'blocks_7_icon_row_items_0_label','Pay in Full'),(229715,41122,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(229716,41122,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(229717,41122,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(229718,41122,'blocks_7_icon_row_items_1_icon','finance.svg'),(229719,41122,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(229720,41122,'blocks_7_icon_row_items_1_label','0% finance'),(229721,41122,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(229722,41122,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(229723,41122,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(229724,41122,'blocks_7_icon_row_items_2_icon','deposit.svg'),(229725,41122,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(229726,41122,'blocks_7_icon_row_items_2_label','Deposit & balance'),(229727,41122,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(229728,41122,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(229729,41122,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(229730,41122,'blocks_7_icon_row_items','3'),(229731,41122,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(229732,41122,'blocks_9_acfe_flexible_toggle',''),(229733,41122,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(229734,41122,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(229735,41122,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(229736,41122,'blocks_9_testimonial_slider_content_title',''),(229737,41122,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(229738,41122,'blocks_9_testimonial_slider_content_heading','Testimonials'),(229739,41122,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(229740,41122,'blocks_9_testimonial_slider_content_text',''),(229741,41122,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(229742,41122,'blocks_9_testimonial_slider_content_actions',''),(229743,41122,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(229744,41122,'blocks_9_testimonial_slider_content',''),(229745,41122,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(229746,41122,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(229747,41122,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(229748,41122,'blocks_9_testimonial_slider_ambassador_bool','0'),(229749,41122,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(229750,41122,'blocks_10_acfe_flexible_toggle',''),(229751,41122,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(229752,41122,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(229753,41122,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(229754,41122,'blocks_10_options_theme','#ffffff'),(229755,41122,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(229756,41122,'blocks_10_options_state','0'),(229757,41122,'_blocks_10_options_state','field_6239fcb7508c5'),(229758,41122,'blocks_10_options',''),(229759,41122,'_blocks_10_options','field_6177e2991ac44'),(229760,41122,'blocks_10_content_title',''),(229761,41122,'_blocks_10_content_title','field_64d237e8bb1e2'),(229762,41122,'blocks_10_content_heading','Frequently asked questions '),(229763,41122,'_blocks_10_content_heading','field_64d237e8bb1e3'),(229764,41122,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(229765,41122,'_blocks_10_content_text','field_64d237e8bb1e4'),(229766,41122,'blocks_10_content_actions',''),(229767,41122,'_blocks_10_content_actions','field_64d237e8bb1e5'),(229768,41122,'blocks_10_content_align','left'),(229769,41122,'_blocks_10_content_align','field_64d2443e6b6aa'),(229770,41122,'blocks_10_content',''),(229771,41122,'_blocks_10_content','field_64d237e8bb1e1'),(229772,41122,'blocks_10_accordion_content','faqs'),(229773,41122,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(229774,41122,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(229775,41122,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(229776,41122,'blocks_10_actions',''),(229777,41122,'_blocks_10_actions','field_61a746a817f7a'),(229778,41122,'blocks_8_acfe_flexible_toggle',''),(229779,41122,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(229780,41122,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(229781,41122,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(229782,41122,'blocks_8_options_theme','#f5f5f5'),(229783,41122,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(229784,41122,'blocks_8_options_reverse','0'),(229785,41122,'_blocks_8_options_reverse','field_61768049bb8ac'),(229786,41122,'blocks_8_options',''),(229787,41122,'_blocks_8_options','field_617682517c334'),(229788,41122,'blocks_8_split_5050_image','40920'),(229789,41122,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(229790,41122,'blocks_8_split_5050_video',''),(229791,41122,'_blocks_8_split_5050_video','field_6239f3160848a'),(229792,41122,'blocks_8_split_5050_content_title',''),(229793,41122,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(229794,41122,'blocks_8_split_5050_content_heading','Why Study This Course?'),(229795,41122,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(229796,41122,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(229797,41122,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(229798,41122,'blocks_8_split_5050_content_actions',''),(229799,41122,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(229800,41122,'blocks_8_split_5050_content',''),(229801,41122,'_blocks_8_split_5050_content','field_61767afceb8ba'),(229802,41122,'blocks_1_acfe_flexible_toggle',''),(229803,41122,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(229804,41122,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(229805,41122,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(229806,41122,'blocks_1_options_theme','#ffffff'),(229807,41122,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(229808,41122,'blocks_1_options_reverse','0'),(229809,41122,'_blocks_1_options_reverse','field_61768049bb8ac'),(229810,41122,'blocks_1_options',''),(229811,41122,'_blocks_1_options','field_617682517c334'),(229812,41122,'blocks_1_split_5050_image','39220'),(229813,41122,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(229814,41122,'blocks_1_split_5050_video',''),(229815,41122,'_blocks_1_split_5050_video','field_6239f3160848a'),(229816,41122,'blocks_1_split_5050_content_title',''),(229817,41122,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(229818,41122,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(229819,41122,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(229820,41122,'blocks_1_split_5050_content_text','Our Diploma in Biomechanics Coaching leads the industry, empowering Level 3+ Personal Trainers to grow their client base, offer specialized services, and achieve higher incomes through evidence-based training and advanced assessments.\r\n\r\nEnhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(229821,41122,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(229822,41122,'blocks_1_split_5050_content_actions',''),(229823,41122,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(229824,41122,'blocks_1_split_5050_content',''),(229825,41122,'_blocks_1_split_5050_content','field_61767afceb8ba'),(229826,41122,'blocks_2_acfe_flexible_toggle',''),(229827,41122,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(229828,41122,'blocks_2_acfe_flexible_layout_title','Form'),(229829,41122,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(229830,41122,'blocks_2_row_content_format','standard'),(229831,41122,'_blocks_2_row_content_format','field_6481ead962881'),(229832,41122,'blocks_2_row_content_title',''),(229833,41122,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(229834,41122,'blocks_2_row_content_heading','Enquire Today'),(229835,41122,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(229836,41122,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(229837,41122,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(229838,41122,'blocks_2_row_content_actions',''),(229839,41122,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(229840,41122,'blocks_2_row_content',''),(229841,41122,'_blocks_2_row_content','field_61a0f5f5b3db0'),(229842,41122,'blocks_2_row_form','40394'),(229843,41122,'_blocks_2_row_form','field_61a4ff2c0b08e'),(229844,41122,'blocks_2_row_form_button_label',''),(229845,41122,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(229846,41122,'blocks_3_acfe_flexible_toggle',''),(229847,41122,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(229848,41122,'blocks_3_acfe_flexible_layout_title','Video'),(229849,41122,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(229850,41122,'blocks_3_size','large'),(229851,41122,'_blocks_3_size','field_6487038f297c1'),(229852,41122,'blocks_3_row_content_title',''),(229853,41122,'_blocks_3_row_content_title','field_64870132a865d'),(229854,41122,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(229855,41122,'_blocks_3_row_content_heading','field_64870142a865e'),(229856,41122,'blocks_3_row_content_text',''),(229857,41122,'_blocks_3_row_content_text','field_64870148a865f'),(229858,41122,'blocks_3_row_content',''),(229859,41122,'_blocks_3_row_content','field_6487008ba865c'),(229860,41122,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(229861,41122,'_blocks_3_video_src','field_6193c4a98ec07'),(229862,41122,'blocks_3_video_thumbnail','39186'),(229863,41122,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(229864,41122,'blocks_4_acfe_flexible_toggle',''),(229865,41122,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(229866,41122,'blocks_4_acfe_flexible_layout_title','Steps'),(229867,41122,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(229868,41122,'blocks_4_row_content_title',''),(229869,41122,'_blocks_4_row_content_title','field_64888cd1e26e0'),(229870,41122,'blocks_4_row_content_heading','Benefits of training with us'),(229871,41122,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(229872,41122,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(229873,41122,'_blocks_4_row_content_text','field_64888ce2e26e2'),(229874,41122,'blocks_4_row_content_actions',''),(229875,41122,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(229876,41122,'blocks_4_row_content',''),(229877,41122,'_blocks_4_row_content','field_64888cb0e26df'),(229878,41122,'blocks_4_steps_0_icon','progression.svg'),(229879,41122,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(229880,41122,'blocks_4_steps_0_title','Earning Potential'),(229881,41122,'_blocks_4_steps_0_title','field_64888d94e26e7'),(229882,41122,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(229883,41122,'_blocks_4_steps_0_text','field_64888d99e26e8'),(229884,41122,'blocks_4_steps_1_icon','support.svg'),(229885,41122,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(229886,41122,'blocks_4_steps_1_title','Lifetime Learning Promise'),(229887,41122,'_blocks_4_steps_1_title','field_64888d94e26e7'),(229888,41122,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(229889,41122,'_blocks_4_steps_1_text','field_64888d99e26e8'),(229890,41122,'blocks_4_steps_2_icon','qualification.svg'),(229891,41122,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(229892,41122,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(229893,41122,'_blocks_4_steps_2_title','field_64888d94e26e7'),(229894,41122,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(229895,41122,'_blocks_4_steps_2_text','field_64888d99e26e8'),(229896,41122,'blocks_4_steps_3_icon','leaders.svg'),(229897,41122,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(229898,41122,'blocks_4_steps_3_title','Stand Out From the Crowd'),(229899,41122,'_blocks_4_steps_3_title','field_64888d94e26e7'),(229900,41122,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(229901,41122,'_blocks_4_steps_3_text','field_64888d99e26e8'),(229902,41122,'blocks_4_steps','4'),(229903,41122,'_blocks_4_steps','field_64888d44e26e5'),(229904,38973,'_yoast_wpseo_inclusive_language_score','90'),(229905,41133,'hero_style','default'),(229906,41133,'_hero_style','field_62051d9dc5324'),(229907,41133,'hero_image_pos_x','right'),(229908,41133,'_hero_image_pos_x','field_62ec3d05390bb'),(229909,41133,'hero_image_pos_y','top'),(229910,41133,'_hero_image_pos_y','field_62ec3d05390bc'),(229911,41133,'hero_image_pos',''),(229912,41133,'_hero_image_pos','field_62ec3d05390ba'),(229913,41133,'hero_title','Biomechanics Coach Course - David Lloyd'),(229914,41133,'_hero_title','field_617571fe285e8'),(229915,41133,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a David Lloyd Personal Trainer.'),(229916,41133,'_hero_text','field_6175723c285e9'),(229917,41133,'hero_actions','1'),(229918,41133,'_hero_actions','field_61757270285ea'),(229919,41133,'hero_icon',''),(229920,41133,'_hero_icon','field_61a6182199d03'),(229921,41133,'fft_hide_from_listings','0'),(229922,41133,'_fft_hide_from_listings','field_61f1320446ab2'),(229923,41133,'fft_page_format','default'),(229924,41133,'_fft_page_format','field_61ae213f1f218'),(229925,41133,'fft_hide_nav','1'),(229926,41133,'_fft_hide_nav','field_635bd5e43527c'),(229927,41133,'fft_hide_header_call_to_action','0'),(229928,41133,'_fft_hide_header_call_to_action','field_635bd6723527d'),(229929,41133,'fft_page_sitemap','1'),(229930,41133,'_fft_page_sitemap','field_61af9b34e8181'),(229931,41133,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(229932,41133,'_blocks','field_6176696113096'),(229933,41133,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-38973-6\";s:6:\"target\";s:6:\"_blank\";}'),(229934,41133,'_hero_actions_0_button','field_61757281285eb'),(229935,41133,'_thumbnail_id','38977'),(229936,41133,'__thumbnail_id','field_617570855ddaf'),(229937,41133,'blocks_0_acfe_flexible_toggle',''),(229938,41133,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(229939,41133,'blocks_0_acfe_flexible_layout_title','Icons'),(229940,41133,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(229941,41133,'blocks_0_options_theme','#ffffff'),(229942,41133,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(229943,41133,'blocks_0_options_format','row'),(229944,41133,'_blocks_0_options_format','field_64bfde9a90690'),(229945,41133,'blocks_0_options',''),(229946,41133,'_blocks_0_options','field_64bfdd9b90684'),(229947,41133,'blocks_0_icon_row_items_0_icon','qualification.svg'),(229948,41133,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(229949,41133,'blocks_0_icon_row_items_0_label','Course Type'),(229950,41133,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(229951,41133,'blocks_0_icon_row_items_0_text','Blended Learning'),(229952,41133,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(229953,41133,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(229954,41133,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(229955,41133,'blocks_0_icon_row_items_1_label','Qualification'),(229956,41133,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(229957,41133,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(229958,41133,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(229959,41133,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(229960,41133,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(229961,41133,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(229962,41133,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(229963,41133,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(229964,41133,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(229965,41133,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(229966,41133,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(229967,41133,'blocks_0_icon_row_items_3_label','IBA Registered'),(229968,41133,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(229969,41133,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(229970,41133,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(229971,41133,'blocks_0_icon_row_items','4'),(229972,41133,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(229973,41133,'blocks_1_acfe_flexible_toggle',''),(229974,41133,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(229975,41133,'blocks_1_acfe_flexible_layout_title','Form'),(229976,41133,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(229977,41133,'blocks_1_row_content_format','promotion'),(229978,41133,'_blocks_1_row_content_format','field_6481ead962881'),(229979,41133,'blocks_1_row_content_title',''),(229980,41133,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(229981,41133,'blocks_1_row_content_heading',''),(229982,41133,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(229983,41133,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(229984,41133,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(229985,41133,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(229986,41133,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(229987,41133,'blocks_1_row_content_actions','1'),(229988,41133,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(229989,41133,'blocks_1_row_content',''),(229990,41133,'_blocks_1_row_content','field_61a0f5f5b3db0'),(229991,41133,'blocks_1_row_form','40414'),(229992,41133,'_blocks_1_row_form','field_61a4ff2c0b08e'),(229993,41133,'blocks_1_row_form_button_label',''),(229994,41133,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(229995,41133,'blocks_1_row_content_promotion_label','Up to 10% Off'),(229996,41133,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(229997,41133,'blocks_1_row_content_promotion_heading','Diploma in Biomechanics Coaching'),(229998,41133,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(229999,41133,'blocks_1_row_content_promotion_value','Up to 10% Off'),(230000,41133,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(230001,41133,'blocks_1_row_content_promotion_terms','Receive 10% off the Diploma in Biomechanics Coaching as a David Lloyd Personal Trainer'),(230002,41133,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(230003,41133,'blocks_1_row_content_promotion',''),(230004,41133,'_blocks_1_row_content_promotion','field_6481eb3962882'),(230005,41133,'blocks_1_row_form_title','David Lloyd Referral'),(230006,41133,'_blocks_1_row_form_title','field_64872db5127af'),(230007,41133,'blocks_2_acfe_flexible_toggle',''),(230008,41133,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(230009,41133,'blocks_2_acfe_flexible_layout_title','Logos'),(230010,41133,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(230011,41133,'blocks_2_options_theme','#ffffff'),(230012,41133,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(230013,41133,'blocks_2_options_format','grid'),(230014,41133,'_blocks_2_options_format','field_61782964ee971'),(230015,41133,'blocks_2_options',''),(230016,41133,'_blocks_2_options','field_61782954ee965'),(230017,41133,'blocks_2_logos','a:2:{i:0;s:5:\"39004\";i:1;s:5:\"38587\";}'),(230018,41133,'_blocks_2_logos','field_61782954ee96d'),(230019,41133,'blocks_2_title',''),(230020,41133,'_blocks_2_title','field_668fbfdc2daa1'),(230021,41133,'blocks_3_acfe_flexible_toggle',''),(230022,41133,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(230023,41133,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(230024,41133,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(230025,41133,'blocks_3_size','large'),(230026,41133,'_blocks_3_size','field_6487038f297c1'),(230027,41133,'blocks_3_row_content_title',''),(230028,41133,'_blocks_3_row_content_title','field_64870132a865d'),(230029,41133,'blocks_3_row_content_heading','Course Overview'),(230030,41133,'_blocks_3_row_content_heading','field_64870142a865e'),(230031,41133,'blocks_3_row_content_text','This Diploma in Biomechanics Coaching will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring learners a system that pulls their skills together.'),(230032,41133,'_blocks_3_row_content_text','field_64870148a865f'),(230033,41133,'blocks_3_row_content',''),(230034,41133,'_blocks_3_row_content','field_6487008ba865c'),(230035,41133,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(230036,41133,'_blocks_3_video_src','field_6193c4a98ec07'),(230037,41133,'blocks_3_video_thumbnail','38998'),(230038,41133,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(230039,41133,'blocks_4_acfe_flexible_toggle',''),(230040,41133,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(230041,41133,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(230042,41133,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(230043,41133,'blocks_4_options_theme','#ffffff'),(230044,41133,'_blocks_4_options_theme','field_6176830e2ad17'),(230045,41133,'blocks_4_options',''),(230046,41133,'_blocks_4_options','field_6176830e2ad16'),(230047,41133,'blocks_4_text_block_heading','Learn more about the course'),(230048,41133,'_blocks_4_text_block_heading','field_617669d413097'),(230049,41133,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching learners will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(230050,41133,'_blocks_4_text_block_content','field_617669ec13098'),(230051,41133,'blocks_5_acfe_flexible_toggle',''),(230052,41133,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(230053,41133,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(230054,41133,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(230055,41133,'blocks_5_options_theme','#ffffff'),(230056,41133,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(230057,41133,'blocks_5_options',''),(230058,41133,'_blocks_5_options','field_6177cfcd8140f'),(230059,41133,'blocks_5_tabs_0_tab_label','What\'s Included'),(230060,41133,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(230061,41133,'blocks_5_tabs_0_tab_content_title',''),(230062,41133,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(230063,41133,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(230064,41133,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(230065,41133,'blocks_5_tabs_0_tab_content_text','This Diploma in Biomechanics Coaching will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(230066,41133,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(230067,41133,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(230068,41133,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(230069,41133,'blocks_5_tabs_0_tab_content_actions','1'),(230070,41133,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(230071,41133,'blocks_5_tabs_0_tab_content',''),(230072,41133,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(230073,41133,'blocks_5_tabs_0_tab_image','39009'),(230074,41133,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(230075,41133,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(230076,41133,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(230077,41133,'blocks_5_tabs_1_tab_content_title',''),(230078,41133,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(230079,41133,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(230080,41133,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(230081,41133,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(230082,41133,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(230083,41133,'blocks_5_tabs_1_tab_content_actions','1'),(230084,41133,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(230085,41133,'blocks_5_tabs_1_tab_content',''),(230086,41133,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(230087,41133,'blocks_5_tabs_1_tab_image','39010'),(230088,41133,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(230089,41133,'blocks_5_tabs','2'),(230090,41133,'_blocks_5_tabs','field_6177cff281419'),(230091,41133,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(230092,41133,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(230093,41133,'blocks_6_acfe_flexible_toggle',''),(230094,41133,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(230095,41133,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(230096,41133,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(230097,41133,'blocks_6_options_theme','#ffffff'),(230098,41133,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(230099,41133,'blocks_6_options_state','0'),(230100,41133,'_blocks_6_options_state','field_6239fcb7508c5'),(230101,41133,'blocks_6_options',''),(230102,41133,'_blocks_6_options','field_6177e2991ac44'),(230103,41133,'blocks_6_accordion_content','faqs'),(230104,41133,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(230105,41133,'blocks_6_actions',''),(230106,41133,'_blocks_6_actions','field_61a746a817f7a'),(230107,41133,'blocks_6_content_title',''),(230108,41133,'_blocks_6_content_title','field_64d237e8bb1e2'),(230109,41133,'blocks_6_content_heading','Frequently asked questions'),(230110,41133,'_blocks_6_content_heading','field_64d237e8bb1e3'),(230111,41133,'blocks_6_content_text',''),(230112,41133,'_blocks_6_content_text','field_64d237e8bb1e4'),(230113,41133,'blocks_6_content_actions',''),(230114,41133,'_blocks_6_content_actions','field_64d237e8bb1e5'),(230115,41133,'blocks_6_content_align','left'),(230116,41133,'_blocks_6_content_align','field_64d2443e6b6aa'),(230117,41133,'blocks_6_content',''),(230118,41133,'_blocks_6_content','field_64d237e8bb1e1'),(230119,41133,'blocks_6_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(230120,41133,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(230121,41133,'blocks_7_acfe_flexible_toggle',''),(230122,41133,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(230123,41133,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(230124,41133,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(230125,41133,'blocks_7_options_alignment','center'),(230126,41133,'_blocks_7_options_alignment','field_61769449f5490'),(230127,41133,'blocks_7_options',''),(230128,41133,'_blocks_7_options','field_617693e1428f0'),(230129,41133,'blocks_7_promo_panel_image','39035'),(230130,41133,'_blocks_7_promo_panel_image','field_617693e1428f3'),(230131,41133,'blocks_7_promo_panel_content_heading','Ready to level up your exercise career?'),(230132,41133,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(230133,41133,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(230134,41133,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(230135,41133,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-2\";s:6:\"target\";s:0:\"\";}'),(230136,41133,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(230137,41133,'blocks_7_promo_panel_content_actions','1'),(230138,41133,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(230139,41133,'blocks_7_promo_panel_content',''),(230140,41133,'_blocks_7_promo_panel_content','field_617693e1428f4'),(230141,41133,'hide_hero','0'),(230142,41133,'_hide_hero','field_66a2380fcda39'),(230143,41134,'hero_style','default'),(230144,41134,'_hero_style','field_62051d9dc5324'),(230145,41134,'hero_image_pos_x','right'),(230146,41134,'_hero_image_pos_x','field_62ec3d05390bb'),(230147,41134,'hero_image_pos_y','top'),(230148,41134,'_hero_image_pos_y','field_62ec3d05390bc'),(230149,41134,'hero_image_pos',''),(230150,41134,'_hero_image_pos','field_62ec3d05390ba'),(230151,41134,'hero_title','Biomechanics Coach Course - EMD UK'),(230152,41134,'_hero_title','field_617571fe285e8'),(230153,41134,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a EMD UK member. '),(230154,41134,'_hero_text','field_6175723c285e9'),(230155,41134,'hero_actions','1'),(230156,41134,'_hero_actions','field_61757270285ea'),(230157,41134,'hero_icon',''),(230158,41134,'_hero_icon','field_61a6182199d03'),(230159,41134,'fft_hide_from_listings','0'),(230160,41134,'_fft_hide_from_listings','field_61f1320446ab2'),(230161,41134,'fft_page_format','default'),(230162,41134,'_fft_page_format','field_61ae213f1f218'),(230163,41134,'fft_hide_nav','1'),(230164,41134,'_fft_hide_nav','field_635bd5e43527c'),(230165,41134,'fft_hide_header_call_to_action','0'),(230166,41134,'_fft_hide_header_call_to_action','field_635bd6723527d'),(230167,41134,'fft_page_sitemap','1'),(230168,41134,'_fft_page_sitemap','field_61af9b34e8181'),(230169,41134,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(230170,41134,'_blocks','field_6176696113096'),(230171,41134,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(230172,41134,'_hero_actions_0_button','field_61757281285eb'),(230173,41134,'_thumbnail_id','38977'),(230174,41134,'__thumbnail_id','field_617570855ddaf'),(230175,41134,'blocks_0_acfe_flexible_toggle',''),(230176,41134,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(230177,41134,'blocks_0_acfe_flexible_layout_title','Icons'),(230178,41134,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(230179,41134,'blocks_0_options_theme','#ffffff'),(230180,41134,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(230181,41134,'blocks_0_options_format','row'),(230182,41134,'_blocks_0_options_format','field_64bfde9a90690'),(230183,41134,'blocks_0_options',''),(230184,41134,'_blocks_0_options','field_64bfdd9b90684'),(230185,41134,'blocks_0_icon_row_items_0_icon','qualification.svg'),(230186,41134,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(230187,41134,'blocks_0_icon_row_items_0_label','Course Type'),(230188,41134,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(230189,41134,'blocks_0_icon_row_items_0_text','Blended Learning'),(230190,41134,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(230191,41134,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(230192,41134,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(230193,41134,'blocks_0_icon_row_items_1_label','Qualification'),(230194,41134,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(230195,41134,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(230196,41134,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(230197,41134,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(230198,41134,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(230199,41134,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(230200,41134,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(230201,41134,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(230202,41134,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(230203,41134,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(230204,41134,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(230205,41134,'blocks_0_icon_row_items_3_label','IBA Registered'),(230206,41134,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(230207,41134,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(230208,41134,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(230209,41134,'blocks_0_icon_row_items','4'),(230210,41134,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(230211,41134,'blocks_1_acfe_flexible_toggle',''),(230212,41134,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(230213,41134,'blocks_1_acfe_flexible_layout_title','Form'),(230214,41134,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(230215,41134,'blocks_1_row_content_format','promotion'),(230216,41134,'_blocks_1_row_content_format','field_6481ead962881'),(230217,41134,'blocks_1_row_content_title',''),(230218,41134,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(230219,41134,'blocks_1_row_content_heading',''),(230220,41134,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(230221,41134,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(230222,41134,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(230223,41134,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(230224,41134,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(230225,41134,'blocks_1_row_content_actions','1'),(230226,41134,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(230227,41134,'blocks_1_row_content',''),(230228,41134,'_blocks_1_row_content','field_61a0f5f5b3db0'),(230229,41134,'blocks_1_row_form','40413'),(230230,41134,'_blocks_1_row_form','field_61a4ff2c0b08e'),(230231,41134,'blocks_1_row_form_button_label',''),(230232,41134,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(230233,41134,'blocks_1_row_content_promotion_label','Biomechanics Coach Course'),(230234,41134,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(230235,41134,'blocks_1_row_content_promotion_heading','Up to 10% Off'),(230236,41134,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(230237,41134,'blocks_1_row_content_promotion_value','Up to 10% Off'),(230238,41134,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(230239,41134,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an EMD UK member'),(230240,41134,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(230241,41134,'blocks_1_row_content_promotion',''),(230242,41134,'_blocks_1_row_content_promotion','field_6481eb3962882'),(230243,41134,'blocks_1_row_form_title','EMD UK Referral'),(230244,41134,'_blocks_1_row_form_title','field_64872db5127af'),(230245,41134,'blocks_2_acfe_flexible_toggle',''),(230246,41134,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(230247,41134,'blocks_2_acfe_flexible_layout_title','Logos'),(230248,41134,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(230249,41134,'blocks_2_options_theme','#ffffff'),(230250,41134,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(230251,41134,'blocks_2_options_format','grid'),(230252,41134,'_blocks_2_options_format','field_61782964ee971'),(230253,41134,'blocks_2_options',''),(230254,41134,'_blocks_2_options','field_61782954ee965'),(230255,41134,'blocks_2_logos','a:2:{i:0;s:5:\"38587\";i:1;s:5:\"39040\";}'),(230256,41134,'_blocks_2_logos','field_61782954ee96d'),(230257,41134,'blocks_2_title',''),(230258,41134,'_blocks_2_title','field_668fbfdc2daa1'),(230259,41134,'blocks_3_acfe_flexible_toggle',''),(230260,41134,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(230261,41134,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(230262,41134,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(230263,41134,'blocks_3_size','large'),(230264,41134,'_blocks_3_size','field_6487038f297c1'),(230265,41134,'blocks_3_row_content_title',''),(230266,41134,'_blocks_3_row_content_title','field_64870132a865d'),(230267,41134,'blocks_3_row_content_heading','Course Overview'),(230268,41134,'_blocks_3_row_content_heading','field_64870142a865e'),(230269,41134,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(230270,41134,'_blocks_3_row_content_text','field_64870148a865f'),(230271,41134,'blocks_3_row_content',''),(230272,41134,'_blocks_3_row_content','field_6487008ba865c'),(230273,41134,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(230274,41134,'_blocks_3_video_src','field_6193c4a98ec07'),(230275,41134,'blocks_3_video_thumbnail','38998'),(230276,41134,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(230277,41134,'blocks_4_acfe_flexible_toggle',''),(230278,41134,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(230279,41134,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(230280,41134,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(230281,41134,'blocks_4_options_theme','#ffffff'),(230282,41134,'_blocks_4_options_theme','field_6176830e2ad17'),(230283,41134,'blocks_4_options',''),(230284,41134,'_blocks_4_options','field_6176830e2ad16'),(230285,41134,'blocks_4_text_block_heading','Learn more about the course'),(230286,41134,'_blocks_4_text_block_heading','field_617669d413097'),(230287,41134,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(230288,41134,'_blocks_4_text_block_content','field_617669ec13098'),(230289,41134,'blocks_5_acfe_flexible_toggle',''),(230290,41134,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(230291,41134,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(230292,41134,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(230293,41134,'blocks_5_options_theme','#ffffff'),(230294,41134,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(230295,41134,'blocks_5_options',''),(230296,41134,'_blocks_5_options','field_6177cfcd8140f'),(230297,41134,'blocks_5_tabs_0_tab_label','What\'s Included'),(230298,41134,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(230299,41134,'blocks_5_tabs_0_tab_content_title',''),(230300,41134,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(230301,41134,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(230302,41134,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(230303,41134,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(230304,41134,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(230305,41134,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(230306,41134,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(230307,41134,'blocks_5_tabs_0_tab_content_actions','1'),(230308,41134,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(230309,41134,'blocks_5_tabs_0_tab_content',''),(230310,41134,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(230311,41134,'blocks_5_tabs_0_tab_image','39009'),(230312,41134,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(230313,41134,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(230314,41134,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(230315,41134,'blocks_5_tabs_1_tab_content_title',''),(230316,41134,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(230317,41134,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(230318,41134,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(230319,41134,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(230320,41134,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(230321,41134,'blocks_5_tabs_1_tab_content_actions','1'),(230322,41134,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(230323,41134,'blocks_5_tabs_1_tab_content',''),(230324,41134,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(230325,41134,'blocks_5_tabs_1_tab_image','39010'),(230326,41134,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(230327,41134,'blocks_5_tabs','2'),(230328,41134,'_blocks_5_tabs','field_6177cff281419'),(230329,41134,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(230330,41134,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(230331,41134,'blocks_6_acfe_flexible_toggle',''),(230332,41134,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(230333,41134,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(230334,41134,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(230335,41134,'blocks_6_options_theme','#ffffff'),(230336,41134,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(230337,41134,'blocks_6_options_state','0'),(230338,41134,'_blocks_6_options_state','field_6239fcb7508c5'),(230339,41134,'blocks_6_options',''),(230340,41134,'_blocks_6_options','field_6177e2991ac44'),(230341,41134,'blocks_6_accordion_content','faqs'),(230342,41134,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(230343,41134,'blocks_6_actions',''),(230344,41134,'_blocks_6_actions','field_61a746a817f7a'),(230345,41134,'blocks_6_content_title',''),(230346,41134,'_blocks_6_content_title','field_64d237e8bb1e2'),(230347,41134,'blocks_6_content_heading','Frequently asked questions'),(230348,41134,'_blocks_6_content_heading','field_64d237e8bb1e3'),(230349,41134,'blocks_6_content_text',''),(230350,41134,'_blocks_6_content_text','field_64d237e8bb1e4'),(230351,41134,'blocks_6_content_actions',''),(230352,41134,'_blocks_6_content_actions','field_64d237e8bb1e5'),(230353,41134,'blocks_6_content_align','left'),(230354,41134,'_blocks_6_content_align','field_64d2443e6b6aa'),(230355,41134,'blocks_6_content',''),(230356,41134,'_blocks_6_content','field_64d237e8bb1e1'),(230357,41134,'blocks_6_accordion_faqs_select','a:13:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";i:12;s:5:\"39023\";}'),(230358,41134,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(230359,41134,'blocks_7_acfe_flexible_toggle',''),(230360,41134,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(230361,41134,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(230362,41134,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(230363,41134,'blocks_7_options_alignment','center'),(230364,41134,'_blocks_7_options_alignment','field_61769449f5490'),(230365,41134,'blocks_7_options',''),(230366,41134,'_blocks_7_options','field_617693e1428f0'),(230367,41134,'blocks_7_promo_panel_image','39035'),(230368,41134,'_blocks_7_promo_panel_image','field_617693e1428f3'),(230369,41134,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(230370,41134,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(230371,41134,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(230372,41134,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(230373,41134,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(230374,41134,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(230375,41134,'blocks_7_promo_panel_content_actions','1'),(230376,41134,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(230377,41134,'blocks_7_promo_panel_content',''),(230378,41134,'_blocks_7_promo_panel_content','field_617693e1428f4'),(230379,41134,'hide_hero','0'),(230380,41134,'_hide_hero','field_66a2380fcda39'),(230381,39329,'_yoast_wpseo_inclusive_language_score','90'),(230382,41135,'hide_hero','0'),(230383,41135,'_hide_hero','field_66a2380fcda39'),(230384,41135,'hero_title','Funding Your Course'),(230385,41135,'_hero_title','field_617571fe285e8'),(230386,41135,'hero_text','Discover the various options available for funding and paying for your course with us.'),(230387,41135,'_hero_text','field_6175723c285e9'),(230388,41135,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(230389,41135,'_hero_actions_0_button','field_61757281285eb'),(230390,41135,'hero_actions','1'),(230391,41135,'_hero_actions','field_61757270285ea'),(230392,41135,'hero_style','default'),(230393,41135,'_hero_style','field_62051d9dc5324'),(230394,41135,'hero_image_pos_x','right'),(230395,41135,'_hero_image_pos_x','field_62ec3d05390bb'),(230396,41135,'hero_image_pos_y','top'),(230397,41135,'_hero_image_pos_y','field_62ec3d05390bc'),(230398,41135,'hero_image_pos',''),(230399,41135,'_hero_image_pos','field_62ec3d05390ba'),(230400,41135,'fft_hide_from_listings','0'),(230401,41135,'_fft_hide_from_listings','field_61f1320446ab2'),(230402,41135,'fft_page_format','default'),(230403,41135,'_fft_page_format','field_61ae213f1f218'),(230404,41135,'fft_hide_nav','0'),(230405,41135,'_fft_hide_nav','field_635bd5e43527c'),(230406,41135,'fft_hide_header_call_to_action','0'),(230407,41135,'_fft_hide_header_call_to_action','field_635bd6723527d'),(230408,41135,'fft_page_sitemap','0'),(230409,41135,'_fft_page_sitemap','field_61af9b34e8181'),(230410,41135,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(230411,41135,'_blocks','field_6176696113096'),(230412,41135,'_thumbnail_id','39334'),(230413,41135,'__thumbnail_id','field_617570855ddaf'),(230414,41135,'blocks_0_acfe_flexible_toggle',''),(230415,41135,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(230416,41135,'blocks_0_acfe_flexible_layout_title','Icons'),(230417,41135,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(230418,41135,'blocks_0_options_theme','#ffffff'),(230419,41135,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(230420,41135,'blocks_0_options_format','grid'),(230421,41135,'_blocks_0_options_format','field_64bfde9a90690'),(230422,41135,'blocks_0_options',''),(230423,41135,'_blocks_0_options','field_64bfdd9b90684'),(230424,41135,'blocks_0_row_content_title',''),(230425,41135,'_blocks_0_row_content_title','field_64bfdd9b90687'),(230426,41135,'blocks_0_row_content_heading','Fees & Funding Options'),(230427,41135,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(230428,41135,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(230429,41135,'_blocks_0_row_content_text','field_64bfdd9b90689'),(230430,41135,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:4:\"#row\";s:6:\"target\";s:0:\"\";}'),(230431,41135,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(230432,41135,'blocks_0_row_content_actions','1'),(230433,41135,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(230434,41135,'blocks_0_row_content',''),(230435,41135,'_blocks_0_row_content','field_64bfdd9b90686'),(230436,41135,'blocks_0_icon_row_items_0_icon','pay-as-you-learn.svg'),(230437,41135,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(230438,41135,'blocks_0_icon_row_items_0_label','Pay in full'),(230439,41135,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(230440,41135,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(230441,41135,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(230442,41135,'blocks_0_icon_row_items_1_icon','finance.svg'),(230443,41135,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(230444,41135,'blocks_0_icon_row_items_1_label','0% finance*'),(230445,41135,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(230446,41135,'blocks_0_icon_row_items_1_text','Put down a deposit and spread the cost of your training with 0% finance.'),(230447,41135,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(230448,41135,'blocks_0_icon_row_items_2_icon','deposit.svg'),(230449,41135,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(230450,41135,'blocks_0_icon_row_items_2_label','Deposit & balance'),(230451,41135,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(230452,41135,'blocks_0_icon_row_items_2_text','Put down a deposit and pay the remaining balance in one lump sum later.'),(230453,41135,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(230454,41135,'blocks_0_icon_row_items','3'),(230455,41135,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(230456,41135,'blocks_1_acfe_flexible_toggle',''),(230457,41135,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(230458,41135,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(230459,41135,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(230460,41135,'blocks_1_options_theme','#ffffff'),(230461,41135,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(230462,41135,'blocks_1_options_reverse','0'),(230463,41135,'_blocks_1_options_reverse','field_61768049bb8ac'),(230464,41135,'blocks_1_options',''),(230465,41135,'_blocks_1_options','field_617682517c334'),(230466,41135,'blocks_1_split_5050_image','39335'),(230467,41135,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(230468,41135,'blocks_1_split_5050_video',''),(230469,41135,'_blocks_1_split_5050_video','field_6239f3160848a'),(230470,41135,'blocks_1_split_5050_content_title',''),(230471,41135,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(230472,41135,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(230473,41135,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(230474,41135,'blocks_1_split_5050_content_text','Training for a new career is a big investment, and as with all things in life, you tend to get what you pay for.\r\n\r\nWhen you invest in training from Biomechanics Education, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 20 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(230475,41135,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(230476,41135,'blocks_1_split_5050_content_actions',''),(230477,41135,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(230478,41135,'blocks_1_split_5050_content',''),(230479,41135,'_blocks_1_split_5050_content','field_61767afceb8ba'),(230480,41135,'blocks_2_acfe_flexible_toggle',''),(230481,41135,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(230482,41135,'blocks_2_acfe_flexible_layout_title','Form'),(230483,41135,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(230484,41135,'blocks_2_row_content_format','standard'),(230485,41135,'_blocks_2_row_content_format','field_6481ead962881'),(230486,41135,'blocks_2_row_content_title',''),(230487,41135,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(230488,41135,'blocks_2_row_content_heading','We\'re here to help you succeed'),(230489,41135,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(230490,41135,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that best suits their needs.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to offer no-obligation advice and help you create a payment plan that suits you.'),(230491,41135,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(230492,41135,'blocks_2_row_content_actions',''),(230493,41135,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(230494,41135,'blocks_2_row_content',''),(230495,41135,'_blocks_2_row_content','field_61a0f5f5b3db0'),(230496,41135,'blocks_2_row_form',''),(230497,41135,'_blocks_2_row_form','field_61a4ff2c0b08e'),(230498,41135,'blocks_2_row_form_button_label',''),(230499,41135,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(230500,41135,'blocks_3_acfe_flexible_toggle',''),(230501,41135,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(230502,41135,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(230503,41135,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(230504,41135,'blocks_3_testimonial_slider_content_title',''),(230505,41135,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(230506,41135,'blocks_3_testimonial_slider_content_heading','Testimonials'),(230507,41135,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(230508,41135,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(230509,41135,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(230510,41135,'blocks_3_testimonial_slider_content_actions',''),(230511,41135,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(230512,41135,'blocks_3_testimonial_slider_content',''),(230513,41135,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(230514,41135,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(230515,41135,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(230516,41135,'blocks_3_testimonial_slider_ambassador_bool','0'),(230517,41135,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(230518,41136,'hide_hero','0'),(230519,41136,'_hide_hero','field_66a2380fcda39'),(230520,41136,'hero_title','Funding Your Course'),(230521,41136,'_hero_title','field_617571fe285e8'),(230522,41136,'hero_text','Discover the various options available for funding and paying for your course with us.'),(230523,41136,'_hero_text','field_6175723c285e9'),(230524,41136,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:0:\"\";}'),(230525,41136,'_hero_actions_0_button','field_61757281285eb'),(230526,41136,'hero_actions','1'),(230527,41136,'_hero_actions','field_61757270285ea'),(230528,41136,'hero_style','default'),(230529,41136,'_hero_style','field_62051d9dc5324'),(230530,41136,'hero_image_pos_x','right'),(230531,41136,'_hero_image_pos_x','field_62ec3d05390bb'),(230532,41136,'hero_image_pos_y','top'),(230533,41136,'_hero_image_pos_y','field_62ec3d05390bc'),(230534,41136,'hero_image_pos',''),(230535,41136,'_hero_image_pos','field_62ec3d05390ba'),(230536,41136,'fft_hide_from_listings','0'),(230537,41136,'_fft_hide_from_listings','field_61f1320446ab2'),(230538,41136,'fft_page_format','default'),(230539,41136,'_fft_page_format','field_61ae213f1f218'),(230540,41136,'fft_hide_nav','0'),(230541,41136,'_fft_hide_nav','field_635bd5e43527c'),(230542,41136,'fft_hide_header_call_to_action','0'),(230543,41136,'_fft_hide_header_call_to_action','field_635bd6723527d'),(230544,41136,'fft_page_sitemap','0'),(230545,41136,'_fft_page_sitemap','field_61af9b34e8181'),(230546,41136,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:18:\"testimonial_slider\";}'),(230547,41136,'_blocks','field_6176696113096'),(230548,41136,'_thumbnail_id','39334'),(230549,41136,'__thumbnail_id','field_617570855ddaf'),(230550,41136,'blocks_0_acfe_flexible_toggle',''),(230551,41136,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(230552,41136,'blocks_0_acfe_flexible_layout_title','Icons'),(230553,41136,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(230554,41136,'blocks_0_options_theme','#ffffff'),(230555,41136,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(230556,41136,'blocks_0_options_format','grid'),(230557,41136,'_blocks_0_options_format','field_64bfde9a90690'),(230558,41136,'blocks_0_options',''),(230559,41136,'_blocks_0_options','field_64bfdd9b90684'),(230560,41136,'blocks_0_row_content_title',''),(230561,41136,'_blocks_0_row_content_title','field_64bfdd9b90687'),(230562,41136,'blocks_0_row_content_heading','Fees & Funding Options'),(230563,41136,'_blocks_0_row_content_heading','field_64bfdd9b90688'),(230564,41136,'blocks_0_row_content_text','When it comes to funding your course there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(230565,41136,'_blocks_0_row_content_text','field_64bfdd9b90689'),(230566,41136,'blocks_0_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(230567,41136,'_blocks_0_row_content_actions_0_button','field_64bfdd9b9068b'),(230568,41136,'blocks_0_row_content_actions','1'),(230569,41136,'_blocks_0_row_content_actions','field_64bfdd9b9068a'),(230570,41136,'blocks_0_row_content',''),(230571,41136,'_blocks_0_row_content','field_64bfdd9b90686'),(230572,41136,'blocks_0_icon_row_items_0_icon','pay-as-you-learn.svg'),(230573,41136,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(230574,41136,'blocks_0_icon_row_items_0_label','Pay in full'),(230575,41136,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(230576,41136,'blocks_0_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple.'),(230577,41136,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(230578,41136,'blocks_0_icon_row_items_1_icon','finance.svg'),(230579,41136,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(230580,41136,'blocks_0_icon_row_items_1_label','0% finance*'),(230581,41136,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(230582,41136,'blocks_0_icon_row_items_1_text','Put down a deposit and spread the cost of your training with 0% finance.'),(230583,41136,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(230584,41136,'blocks_0_icon_row_items_2_icon','deposit.svg'),(230585,41136,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(230586,41136,'blocks_0_icon_row_items_2_label','Deposit & balance'),(230587,41136,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(230588,41136,'blocks_0_icon_row_items_2_text','Put down a deposit and pay the remaining balance in one lump sum later.'),(230589,41136,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(230590,41136,'blocks_0_icon_row_items','3'),(230591,41136,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(230592,41136,'blocks_1_acfe_flexible_toggle',''),(230593,41136,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(230594,41136,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(230595,41136,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(230596,41136,'blocks_1_options_theme','#ffffff'),(230597,41136,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(230598,41136,'blocks_1_options_reverse','0'),(230599,41136,'_blocks_1_options_reverse','field_61768049bb8ac'),(230600,41136,'blocks_1_options',''),(230601,41136,'_blocks_1_options','field_617682517c334'),(230602,41136,'blocks_1_split_5050_image','39335'),(230603,41136,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(230604,41136,'blocks_1_split_5050_video',''),(230605,41136,'_blocks_1_split_5050_video','field_6239f3160848a'),(230606,41136,'blocks_1_split_5050_content_title',''),(230607,41136,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(230608,41136,'blocks_1_split_5050_content_heading','What you\'ll get when you invest in our training'),(230609,41136,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(230610,41136,'blocks_1_split_5050_content_text','Training for a new career is a big investment, and as with all things in life, you tend to get what you pay for.\r\n\r\nWhen you invest in training from Biomechanics Education, you are investing in a lifelong career. Your training will set you up for a career, not merely a certificate.\r\n\r\nUnlike other providers, our training isn’t simply a collection of online videos. It’s a comprehensive blend of interactive e-learning and face-to-face practical workshops, which we customise for each student based on their circumstances, time commitments and career goals.\r\n<ul>\r\n 	<li>Invaluable practical experience</li>\r\n 	<li>Lifetime course access</li>\r\n 	<li>Respected and recognised accreditations</li>\r\n 	<li>A blend of face-to-face and online learning</li>\r\n 	<li>Over 20 years of industry experience &amp; knowledge</li>\r\n 	<li>Unwavering support during and after your course</li>\r\n</ul>'),(230611,41136,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(230612,41136,'blocks_1_split_5050_content_actions',''),(230613,41136,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(230614,41136,'blocks_1_split_5050_content',''),(230615,41136,'_blocks_1_split_5050_content','field_61767afceb8ba'),(230616,41136,'blocks_2_acfe_flexible_toggle',''),(230617,41136,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(230618,41136,'blocks_2_acfe_flexible_layout_title','Form'),(230619,41136,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(230620,41136,'blocks_2_row_content_format','standard'),(230621,41136,'_blocks_2_row_content_format','field_6481ead962881'),(230622,41136,'blocks_2_row_content_title',''),(230623,41136,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(230624,41136,'blocks_2_row_content_heading','We\'re here to help you succeed'),(230625,41136,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(230626,41136,'blocks_2_row_content_text','We’re dedicated to helping passionate individuals succeed in a way that best suits their needs.\r\n<h2>Fill in this form to download your Course information and Price Guide.</h2>\r\nNot quite ready yet? No worries, fill in your details and one of our friendly career advisors will be in touch to offer no-obligation advice and help you create a payment plan that suits you.'),(230627,41136,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(230628,41136,'blocks_2_row_content_actions',''),(230629,41136,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(230630,41136,'blocks_2_row_content',''),(230631,41136,'_blocks_2_row_content','field_61a0f5f5b3db0'),(230632,41136,'blocks_2_row_form',''),(230633,41136,'_blocks_2_row_form','field_61a4ff2c0b08e'),(230634,41136,'blocks_2_row_form_button_label',''),(230635,41136,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(230636,41136,'blocks_3_acfe_flexible_toggle',''),(230637,41136,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(230638,41136,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(230639,41136,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(230640,41136,'blocks_3_testimonial_slider_content_title',''),(230641,41136,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(230642,41136,'blocks_3_testimonial_slider_content_heading','Testimonials'),(230643,41136,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(230644,41136,'blocks_3_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(230645,41136,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(230646,41136,'blocks_3_testimonial_slider_content_actions',''),(230647,41136,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(230648,41136,'blocks_3_testimonial_slider_content',''),(230649,41136,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(230650,41136,'blocks_3_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(230651,41136,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(230652,41136,'blocks_3_testimonial_slider_ambassador_bool','0'),(230653,41136,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(230655,14386,'_yoast_wpseo_inclusive_language_score','90'),(230656,41137,'_thumbnail_id','14387'),(230657,41137,'__thumbnail_id','field_617570855ddaf'),(230658,41137,'hide_hero','0'),(230659,41137,'_hide_hero','field_66a2380fcda39'),(230660,41137,'hero_title',''),(230661,41137,'_hero_title','field_617571fe285e8'),(230662,41137,'hero_text',''),(230663,41137,'_hero_text','field_6175723c285e9'),(230664,41137,'hero_actions',''),(230665,41137,'_hero_actions','field_61757270285ea'),(230666,41137,'hero_style','default'),(230667,41137,'_hero_style','field_62051d9dc5324'),(230668,41137,'hero_image_pos_x','right'),(230669,41137,'_hero_image_pos_x','field_62ec3d05390bb'),(230670,41137,'hero_image_pos_y','top'),(230671,41137,'_hero_image_pos_y','field_62ec3d05390bc'),(230672,41137,'hero_image_pos',''),(230673,41137,'_hero_image_pos','field_62ec3d05390ba'),(230674,41137,'fft_hide_from_listings','0'),(230675,41137,'_fft_hide_from_listings','field_61f1320446ab2'),(230676,41137,'post_format',''),(230677,41137,'_post_format','field_61756bfb51898'),(230678,41137,'post_author',''),(230679,41137,'_post_author','field_62ec389d22113'),(230680,41137,'post_reviewer',''),(230681,41137,'_post_reviewer','field_627140a2a9800'),(230682,41137,'post_table_of_contents','0'),(230683,41137,'_post_table_of_contents','field_65c503bc846a6'),(230685,24544,'_yoast_wpseo_inclusive_language_score','90'),(230686,41138,'_thumbnail_id','24642'),(230687,41138,'__thumbnail_id','field_617570855ddaf'),(230688,41138,'hide_hero','0'),(230689,41138,'_hide_hero','field_66a2380fcda39'),(230690,41138,'hero_title',''),(230691,41138,'_hero_title','field_617571fe285e8'),(230692,41138,'hero_text',''),(230693,41138,'_hero_text','field_6175723c285e9'),(230694,41138,'hero_actions',''),(230695,41138,'_hero_actions','field_61757270285ea'),(230696,41138,'hero_style','default'),(230697,41138,'_hero_style','field_62051d9dc5324'),(230698,41138,'hero_image_pos_x','right'),(230699,41138,'_hero_image_pos_x','field_62ec3d05390bb'),(230700,41138,'hero_image_pos_y','top'),(230701,41138,'_hero_image_pos_y','field_62ec3d05390bc'),(230702,41138,'hero_image_pos',''),(230703,41138,'_hero_image_pos','field_62ec3d05390ba'),(230704,41138,'fft_hide_from_listings','0'),(230705,41138,'_fft_hide_from_listings','field_61f1320446ab2'),(230706,41138,'post_format',''),(230707,41138,'_post_format','field_61756bfb51898'),(230708,41138,'post_author',''),(230709,41138,'_post_author','field_62ec389d22113'),(230710,41138,'post_reviewer',''),(230711,41138,'_post_reviewer','field_627140a2a9800'),(230712,41138,'post_table_of_contents','0'),(230713,41138,'_post_table_of_contents','field_65c503bc846a6'),(230715,4106,'_yoast_wpseo_inclusive_language_score','90'),(230716,41139,'hide_hero','0'),(230717,41139,'_hide_hero','field_66a2380fcda39'),(230718,41139,'hero_title',''),(230719,41139,'_hero_title','field_617571fe285e8'),(230720,41139,'hero_text',''),(230721,41139,'_hero_text','field_6175723c285e9'),(230722,41139,'hero_actions',''),(230723,41139,'_hero_actions','field_61757270285ea'),(230724,41139,'hero_style','default'),(230725,41139,'_hero_style','field_62051d9dc5324'),(230726,41139,'hero_image_pos_x','right'),(230727,41139,'_hero_image_pos_x','field_62ec3d05390bb'),(230728,41139,'hero_image_pos_y','top'),(230729,41139,'_hero_image_pos_y','field_62ec3d05390bc'),(230730,41139,'hero_image_pos',''),(230731,41139,'_hero_image_pos','field_62ec3d05390ba'),(230732,41139,'fft_hide_from_listings','0'),(230733,41139,'_fft_hide_from_listings','field_61f1320446ab2'),(230734,41139,'post_format',''),(230735,41139,'_post_format','field_61756bfb51898'),(230736,41139,'post_author',''),(230737,41139,'_post_author','field_62ec389d22113'),(230738,41139,'post_reviewer',''),(230739,41139,'_post_reviewer','field_627140a2a9800'),(230740,41139,'post_table_of_contents','0'),(230741,41139,'_post_table_of_contents','field_65c503bc846a6'),(230742,41139,'_thumbnail_id','4108'),(230743,41139,'__thumbnail_id','field_617570855ddaf'),(230745,13299,'_yoast_wpseo_inclusive_language_score','90'),(230746,41140,'_thumbnail_id','13440'),(230747,41140,'__thumbnail_id','field_617570855ddaf'),(230748,41140,'hide_hero','0'),(230749,41140,'_hide_hero','field_66a2380fcda39'),(230750,41140,'hero_title',''),(230751,41140,'_hero_title','field_617571fe285e8'),(230752,41140,'hero_text',''),(230753,41140,'_hero_text','field_6175723c285e9'),(230754,41140,'hero_actions',''),(230755,41140,'_hero_actions','field_61757270285ea'),(230756,41140,'hero_style','default'),(230757,41140,'_hero_style','field_62051d9dc5324'),(230758,41140,'hero_image_pos_x','right'),(230759,41140,'_hero_image_pos_x','field_62ec3d05390bb'),(230760,41140,'hero_image_pos_y','top'),(230761,41140,'_hero_image_pos_y','field_62ec3d05390bc'),(230762,41140,'hero_image_pos',''),(230763,41140,'_hero_image_pos','field_62ec3d05390ba'),(230764,41140,'fft_hide_from_listings','0'),(230765,41140,'_fft_hide_from_listings','field_61f1320446ab2'),(230766,41140,'post_format',''),(230767,41140,'_post_format','field_61756bfb51898'),(230768,41140,'post_author',''),(230769,41140,'_post_author','field_62ec389d22113'),(230770,41140,'post_reviewer',''),(230771,41140,'_post_reviewer','field_627140a2a9800'),(230772,41140,'post_table_of_contents','0'),(230773,41140,'_post_table_of_contents','field_65c503bc846a6'),(230775,3,'_yoast_wpseo_inclusive_language_score','90'),(230776,40778,'_yoast_wpseo_focuskw','Biomechanics Coach Course'),(230777,40778,'_yoast_wpseo_metadesc','Comprehensive biomechanics education for fitness professionals, simplifying intricate concepts into digestible sections.'),(230778,40778,'_yoast_wpseo_linkdex','42'),(230779,40778,'_yoast_wpseo_inclusive_language_score','90'),(230780,40277,'_yoast_wpseo_focuskw','ImoveFreely CPD course'),(230781,40277,'_yoast_wpseo_title','%%title%% %%page%% CPD %%sep%% %%sitename%%'),(230782,40277,'_yoast_wpseo_metadesc','Become an iMoveFreely instructor with our online workshop. Gain the skills to deliver effective mobility and flexibility training in a virtual format.'),(230783,40277,'_yoast_wpseo_linkdex','33'),(230784,40277,'_yoast_wpseo_inclusive_language_score','90'),(230786,15602,'_yoast_wpseo_focuskw','Foot biomechanics'),(230787,15602,'_yoast_wpseo_metadesc','Debunk the over-pronation myth with this simple guide to foot biomechanics. Learn how foot motion really works!'),(230788,15602,'_yoast_wpseo_linkdex','76'),(230789,15602,'_yoast_wpseo_inclusive_language_score','90'),(230791,16935,'_wp_old_slug','foot-width-in-the-squat-and-its-affect-on-quadricep-growth'),(230792,16935,'_yoast_wpseo_focuskw','quadricep muscles'),(230793,16935,'_yoast_wpseo_metadesc','Discover how foot width in squats impacts quadricep growth and find the optimal stance for your fitness goals.'),(230794,16935,'_yoast_wpseo_linkdex','62'),(230795,16935,'_yoast_wpseo_inclusive_language_score','90'),(230796,16935,'_yoast_wpseo_title','Foot Position and The Quadricep - Biomechanics Education'),(230798,30719,'_yoast_wpseo_focuskw','The Deadlift'),(230799,30719,'_yoast_wpseo_metadesc','Master the deadlift with this comprehensive guide on form, biomechanics, and tips for strength and injury prevention.'),(230800,30719,'_yoast_wpseo_linkdex','74'),(230801,30719,'_yoast_wpseo_inclusive_language_score','90'),(230803,33066,'_yoast_wpseo_focuskw','What is Biomechanics'),(230804,33066,'_yoast_wpseo_metadesc','Learn what a biomechanics coach does and how they improve movement, performance, and injury prevention in athletes.'),(230805,33066,'_yoast_wpseo_linkdex','63'),(230806,33066,'_yoast_wpseo_inclusive_language_score','90'),(230807,4106,'_yoast_wpseo_focuskw','Intrinsic Biomehanics'),(230808,4106,'_yoast_wpseo_metadesc','Explore intrinsic biomechanics and its role in optimizing movement efficiency, injury prevention, and athletic performance.'),(230809,4106,'_yoast_wpseo_linkdex','57'),(230810,13299,'_yoast_wpseo_focuskw','Turkish Get-up'),(230811,13299,'_yoast_wpseo_title','The Turkish Get-up - Biomechanics Education'),(230812,13299,'_yoast_wpseo_metadesc','Discover the value of the Turkish Get-Up in personal training programs for enhancing strength, mobility, and client engagement.'),(230813,13299,'_yoast_wpseo_linkdex','75'),(230815,25092,'_yoast_wpseo_focuskw','Spine Biomechanics'),(230816,25092,'_yoast_wpseo_title','Spine Biomechanics Part-4 %%sep%% %%sitename%%'),(230817,25092,'_yoast_wpseo_metadesc','Delve into spine biomechanics with an overview of the spine\'s muscles, their functions, and their impact on movement.'),(230818,25092,'_yoast_wpseo_linkdex','67'),(230819,25092,'_yoast_wpseo_inclusive_language_score','90'),(230820,3,'_thumbnail_id',''),(230821,41141,'hero_style','default'),(230822,41141,'_hero_style','field_62051d9dc5324'),(230823,41141,'hero_image_pos_x','right'),(230824,41141,'_hero_image_pos_x','field_62ec3d05390bb'),(230825,41141,'hero_image_pos_y','top'),(230826,41141,'_hero_image_pos_y','field_62ec3d05390bc'),(230827,41141,'hero_image_pos',''),(230828,41141,'_hero_image_pos','field_62ec3d05390ba'),(230829,41141,'hero_title','Privacy Policy'),(230830,41141,'_hero_title','field_617571fe285e8'),(230831,41141,'hero_text','Our privacy policy details how we handle your data responsibly, keeping your information secure and confidential.'),(230832,41141,'_hero_text','field_6175723c285e9'),(230833,41141,'hero_actions',''),(230834,41141,'_hero_actions','field_61757270285ea'),(230835,41141,'hero_icon',''),(230836,41141,'_hero_icon','field_61a6182199d03'),(230837,41141,'fft_hide_from_listings','0'),(230838,41141,'_fft_hide_from_listings','field_61f1320446ab2'),(230839,41141,'fft_page_format','default'),(230840,41141,'_fft_page_format','field_61ae213f1f218'),(230841,41141,'fft_hide_nav','0'),(230842,41141,'_fft_hide_nav','field_635bd5e43527c'),(230843,41141,'fft_hide_header_call_to_action','0'),(230844,41141,'_fft_hide_header_call_to_action','field_635bd6723527d'),(230845,41141,'fft_page_sitemap','0'),(230846,41141,'_fft_page_sitemap','field_61af9b34e8181'),(230847,41141,'blocks','a:1:{i:0;s:10:\"text_block\";}'),(230848,41141,'_blocks','field_6176696113096'),(230849,41141,'hide_hero','0'),(230850,41141,'_hide_hero','field_66a2380fcda39'),(230851,41141,'blocks_0_acfe_flexible_toggle',''),(230852,41141,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(230853,41141,'blocks_0_acfe_flexible_layout_title','Text Block'),(230854,41141,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(230855,41141,'blocks_0_options_theme','#ffffff'),(230856,41141,'_blocks_0_options_theme','field_6176830e2ad17'),(230857,41141,'blocks_0_options',''),(230858,41141,'_blocks_0_options','field_6176830e2ad16'),(230859,41141,'blocks_0_text_block_heading',''),(230860,41141,'_blocks_0_text_block_heading','field_617669d413097'),(230861,41141,'blocks_0_text_block_content','We are FUTURE FIT TRAINING LIMITED. We’re a company registered in England and Wales with company number 04381540, whose registered address is C/O Azets Carnac Place, Cams Hall Estate, Fareham, Hampshire, United Kingdom, PO16 8UY. In this privacy notice we will refer to ourselves as ‘<strong>we</strong>’, ‘<strong>us</strong>’ or ‘<strong>our</strong>’. We are the Data Controller of the Personal Information we collect, hold, and use about you, as explained in this notice.\r\n\r\nYou can contact us in any of the following ways:\r\n\r\n<a href=\"mailto:info@futurefit.co.uk\" target=\"_blank\" rel=\"noopener\">a. by emailing us at </a>info@futurefit.co.uk; or\r\n\r\nb. by writing to us at Future Fit Training, C/O Azets Carnac Place, Cams Hall Estate, Fareham, Hampshire, United Kingdom, PO16 8UY.\r\n\r\nWe take the privacy, including the security, of Personal Information we hold about you seriously. This privacy notice tells you how we collect Personal Information about you and how we use that Personal Information. You should read this privacy notice carefully so that you know and can understand why and how we use the Personal Information we collect and hold about you.\r\n\r\nWe have appointed Sian Roberts as our Data Protection Officer. You can contact them using the details set out above.\r\n\r\nWe may issue you with other privacy notices from time to time, including when we collect Personal Information from you. This privacy notice is intended to supplement these and does not override them.\r\n\r\nWe may update this privacy notice from time to time. This version was last updated on 21st March 2024.\r\n<ol>\r\n 	<li data-list-text=\"1.\"><strong><a name=\"bookmark1\"></a>‌Key definitions</strong>\r\n<ol>\r\n 	<li data-list-text=\"1.1.\">The Key terms that we use throughout this privacy notice are defined below, for ease:</li>\r\n 	<li data-list-text=\"1.2.\">Data Controller: under UK data protection law, this is the organisation or person responsible for deciding how Personal Information is collected and stored and how it is used.</li>\r\n 	<li data-list-text=\"1.3.\">Data Processor: a Data Controller may appoint another organisation or person to carry out certain tasks on its behalf in relation to the Personal Information. (This may include hosting of a site containing Personal Information, for example, or providing an email marketing service that facilitates mass distribution of marketing material to a Data Controller’s customer base).</li>\r\n 	<li data-list-text=\"1.4.\">Personal Information: any information from which a living individual can be identified. It does not apply to information that has been anonymised.</li>\r\n 	<li data-list-text=\"1.5.\">Special Information: certain very sensitive Personal Information requires extra protection under data protection law. Sensitive data includes information relating to health, racial and ethnic origin, political opinions, religious and similar beliefs, trade union membership, sex life, and sexual orientation. It also includes genetic information and biometric information.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"2.\"><strong><a name=\"bookmark2\"></a>‌Details of Personal Information that we collect and hold about you</strong>\r\n<ol>\r\n 	<li data-list-text=\"2.1.\">Set out in the table below are the general categories and details of retention periods in relation to those categories and, in each case, the types of Personal Information that we collect, use, and hold about you.\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>General category</td>\r\n<td>Types of Personal Information in that category</td>\r\n</tr>\r\n<tr>\r\n<td>Identity information</td>\r\n<td>This is information relating to your identity such as your name (including any previous names and any titles you use), gender, marital status, and date of birth.</td>\r\n</tr>\r\n<tr>\r\n<td>Contact information</td>\r\n<td>This is information relating to your contact details such as email address, addresses, phone numbers.</td>\r\n</tr>\r\n<tr>\r\n<td>Account information</td>\r\n<td>This is information relating to your account with us (including username and password).</td>\r\n</tr>\r\n<tr>\r\n<td>Payment information</td>\r\n<td>This is information relating to the methods by which you provide payment to us such as bank account details, credit or debit card details and details of any payments (including amounts and dates) that are made between us.</td>\r\n</tr>\r\n<tr>\r\n<td>Transaction information</td>\r\n<td>This is information relating to transactions between us such as details of the services, and/or digital content provided to you as well as any returns details.</td>\r\n</tr>\r\n<tr>\r\n<td>Survey information</td>\r\n<td>This is information that we have collected from you or that you have provided to us in respect of surveys and feedback.</td>\r\n</tr>\r\n<tr>\r\n<td>Marketing information</td>\r\n<td>This is information relating to your marketing and communications preferences.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Website, device and technical information</td>\r\n<td>This is information about your use of our website and technical data which we collect (including your IP address, the type of browser you are using and the version, the operating system you are using, details about the time zone and location settings on the device, and other information we receive about your device).</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</li>\r\n 	<li data-list-text=\"2.2.\">You can contact us (using the details at the beginning of this notice) to request a copy of our retention policy, which sets out how long different types of Personal Information will be kept for.</li>\r\n 	<li data-list-text=\"2.3.\">The types of Personal Information we collect about you may differ from person to person, depending on who you are and the relationship between us.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"3.\"><strong><a name=\"bookmark3\"></a>‌Details of Special Information that we collect and hold about you</strong>\r\n<ol>\r\n 	<li data-list-text=\"3.1.\">Special Information is explained in Section 1 above. We may collect and hold the following types of special information about you when you voluntarily provide this to us, to ensure we can offer you the necessary support and/or adjustments to fully benefit from our services:a. ethnic origin b. religion;c. health;</li>\r\n 	<li data-list-text=\"3.2.\">We do not collect information from you relating to criminal convictions or offences.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"4.\"><strong><a name=\"bookmark4\"></a>‌Details of how and why we use Personal Information</strong>\r\n<ol>\r\n 	<li data-list-text=\"4.1.\">We are only able to use your Personal Information for certain legal reasons set out in data protection law. There are legal reasons under data protection law other than those listed below; but, in most cases, we will use your Personal Information for the following legal reasons:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Contract Reason: this is in order to perform our obligations to you under a contract we have entered into with you;</li>\r\n 	<li data-list-text=\"b.\">Legitimate Interests Reason: this is where the use of your Personal Information is necessary for our (or a third party’s) legitimate interests, so long as that legitimate interest does not override your fundamental rights, freedoms, or interests;</li>\r\n 	<li data-list-text=\"c.\">Legal Obligation Reason: this is where we must use your Personal Information in order to perform a legal obligation by which we are bound; and</li>\r\n 	<li data-list-text=\"d.\">Consent Reason: this is where you have given us your consent to use your Personal Information for a specific reason or specific reasons.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"4.2.\">As explained in Section 3 above, there are more sensitive types of Personal Information that require higher levels of protection. If we process such sensitive types of Personal Information, we will usually do so in the following circumstances:</li>\r\n 	<li data-list-text=\"4.2.\">a. we have your explicit consent;b. where it is necessary in relation to legal claims;\r\n\r\nc. where you have made the Personal Information public.</li>\r\n 	<li data-list-text=\"4.3.\">So that we are able to provide you with services, we will need your Personal Information. If you do not provide us with the required Personal Information, we may be prevented from supplying the services to you.</li>\r\n 	<li data-list-text=\"4.4.\">It is important that you keep your Personal Information up to date. If any of your Personal Information changes, please contact us as soon as possible to let us know. If you do not contact us to keep your information updated, we may be prevented from supplying the services to you. (For example, if you change address and do not tell us, your goods may be delivered to the wrong address).</li>\r\n 	<li data-list-text=\"4.5.\">Where we rely on consent for a specific purpose as the legal reason for processing your Personal Information, you have the right under data protection law to withdraw your consent at any time. If you wish to withdraw your consent, please contact us using the details set out at the beginning of this notice. If we receive a request from you withdrawing your consent to a specific purpose, we will stop processing your Personal Information for that purpose unless we have another legal reason for processing your Personal Information, in which case we will confirm that reason to you.</li>\r\n 	<li data-list-text=\"4.6.\">We explain in the table below the different purposes for which we use your Personal Information and, in each case, the legal reason(s) allowing us to use your Personal Information. Please also note the following:\r\n<ol>\r\n 	<li data-list-text=\"a.\">if we use the Legitimate Interests Reason as the legal reason for which we can use your Personal Information, we have also explained what that legitimate interest is; and</li>\r\n 	<li data-list-text=\"b.\">for some of the purposes, we may have listed more than one legal reason on which we can use your Personal Information, because the legal reason may be different in different circumstances. If you need confirmation of the specific legal reason that we are relying on to use your Personal Information for that purpose, please contact us using the contact details set out at the start of this privacy notice.\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Purpose</td>\r\n<td>Legal reason(s) for using the Personal Information</td>\r\n</tr>\r\n<tr>\r\n<td>To register you as a customer</td>\r\n<td>Contract Reason\r\n\r\nLegitimate Interests Reason (in order to offer you other goods, services, and/or digital content which helps us to develop our business)</td>\r\n</tr>\r\n<tr>\r\n<td>To process your order, which includes taking payment from you, advising you of any updates in relation to your order, or any enforcement action against you to recover payment</td>\r\n<td>Contract Reason\r\n\r\nLegitimate Interests Reason (in order to recover money that you owe us)</td>\r\n</tr>\r\n<tr>\r\n<td>To manage our contract with you and to notify you of any changes</td>\r\n<td>Contract Reason\r\n\r\nLegal Obligation Reason</td>\r\n</tr>\r\n<tr>\r\n<td>To comply with audit and accounting matters</td>\r\n<td>Legal Obligation Reason</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>For record-keeping, including in relation to any guarantees or warranties provided as part of the sale of goods, services, and/or digital content</td>\r\n<td>Contract Reason\r\n\r\nLegal Obligation Reason</td>\r\n</tr>\r\n<tr>\r\n<td>To improve the goods, services, and/or digital content that we supply</td>\r\n<td>Legitimate Interests Reason (in order to improve the goods, services, and/or digital content for future customers and to grow our business)</td>\r\n</tr>\r\n<tr>\r\n<td>To recommend and send communications to you about goods, services, and/or digital content that you may be interested in. (More details about marketing are set out in section 11 below).</td>\r\n<td>Legitimate Interests Reason (in order to grow our business) Consent Reason</td>\r\n</tr>\r\n<tr>\r\n<td>To ensure the smooth running and correct operation of our website</td>\r\n<td>Legitimate Interests Reason (to ensure our website runs correctly)</td>\r\n</tr>\r\n<tr>\r\n<td>To understand how customers and visitors to our website use the website and interact with it via data analysis</td>\r\n<td>Legitimate Interests Reason (to improve and grow our business, including our website, and to understand our customers\' needs, desires, and requirements)</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"4.7.\">Sometimes we may anonymise Personal Information you provide to us so that you can no longer be identified from it and use this for our own purposes. In addition, sometimes we may use some of the information you provide to us together with other people’s information to give us statistical data for our own purposes. Because this is grouped together with other information and you are not identifiable from that combined data, we are able to use this.</li>\r\n 	<li data-list-text=\"4.8.\">Under data protection law, we can only use your Personal Information for the purposes we have told you about unless we consider that the new purpose is compatible with the purpose(s) we told you about. If we want to use your Personal Information for a different purpose that we do not think is compatible with the purpose(s) we told you about, we will contact you to explain this and provide you with a supplementary privacy notice.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"5.\"><strong><a name=\"bookmark5\"></a>‌Details of how we collect Personal Information and Special Information</strong>\r\n<ol>\r\n 	<li data-list-text=\"5.1.\">We usually collect identity information, contact information, payment information, transaction information, survey information, marketing information, special Information; directly from you when you fill out a form, survey or questionnaire, purchase services, and/or digital content from us, contact us by email, phone, in writing, or otherwise. This includes the Personal Information that you provide to us when you subscribe to our mailing list or enter a competition or survey.</li>\r\n 	<li data-list-text=\"5.2.\">We may receive some of your Personal Information from third parties or publicly available sources. This includes:\r\n<ol>\r\n 	<li data-list-text=\"a.\">contact information and payment information from our other companies under Future Fit Group such as Future Fit For Business, iCareiMove, Biomechanics Education or Future Fit Group;</li>\r\n 	<li data-list-text=\"b.\">identity information and contact information from our contracted partnerships such as your employer or organisation contracting us to provide services to you;</li>\r\n 	<li data-list-text=\"c.\">website, device and technical information from third parties such as analytics providers (e.g. Google);</li>\r\n 	<li data-list-text=\"d.\">any other methods by which you collect personal information.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"5.3.\">We may also receive website, device, and technical information automatically from technologies such as cookies that are installed on our website. To find out more about these, please see our cookie policy, which is available on our website.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"6.\"><strong><a name=\"bookmark6\"></a>‌Details about who Personal Information may be shared with</strong>\r\n<ol>\r\n 	<li data-list-text=\"6.1.\">We may need to share your Personal Information with other organisations or people. These organisations include:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Other companies in our group (who may act as joint Data Controllers or as Data Processors on our behalf) and who describe the services they provide that require them to have access to Personal Information, e.g. IT services, or describe the reasons it may be shared with them, e.g. for management reporting.</li>\r\n 	<li data-list-text=\"b.\">Third parties who are not part of our group. These may include:\r\n<ol>\r\n 	<li data-list-text=\"i.\">Suppliers, such as IT support services, payment providers, administration providers, marketing agencies, who are based in UK;</li>\r\n 	<li data-list-text=\"ii.\">Government bodies and regulatory bodies, such as HMRC, fraud prevention agencies, who are based in UK;</li>\r\n 	<li data-list-text=\"iii.\">Our advisers: such as lawyers, accountants, auditors, insurance companies who are based in UK;</li>\r\n 	<li data-list-text=\"iv.\">Our bankers who are based in UK;</li>\r\n 	<li data-list-text=\"v.\">Credit reference agencies who are based in UK;</li>\r\n 	<li data-list-text=\"vi.\">Email platforms which are based in UK;</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"c.\">Any organisations that propose to purchase our business and assets, in which case we may disclose your Personal Information to the potential purchaser.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"6.2.\">Depending on the circumstances, the organisations, or people who we share your Personal Information with will be acting as either Data Processors or Data Controllers. Where we share your Personal Information with a Data Processor, we will ensure that we have in place contracts that set out the responsibilities and obligations of us and them, including in respect of security of Personal Information.</li>\r\n 	<li data-list-text=\"6.3.\">We do not sell or trade any of the Personal Information that you have provided to us.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"7.\"><strong><a name=\"bookmark7\"></a>‌Details about transfers to countries outside of the EEA</strong>\r\n<ol>\r\n 	<li data-list-text=\"7.1.\">If any transfer of Personal Information by us will mean that your Personal Information is transferred outside of the EEA, we will ensure that safeguards are in place so that a similar degree of protection is given to your Personal Information as is given to it within the EEA. We will also ensure that the transfer is made in compliance with data protection laws (including, where relevant, any exceptionsto the general rules on transferring Personal Information outside of the EEA that are available to us – these are known as ‘derogations’ under data protection laws). We may need to transfer personal information outside of the EEA to other organisations within our group or to the third parties listed above in Section 6 who may be located outside of the EEA.</li>\r\n 	<li data-list-text=\"7.2.\">The safeguards set out in data protection laws for transferring Personal Information outside of the EEA include:</li>\r\n 	<li data-list-text=\"7.2.\">a. where the transfer is to a country or territory that the EU Commission has approved as ensuring an adequate level of protection;\r\n<ol>\r\n 	<li data-list-text=\"b.\">where Personal Information is transferred to another organisation within our group, under an agreement covering this situation, which is known as \'binding corporate rules\';</li>\r\n 	<li data-list-text=\"c.\">having in place a standard set of clauses that have been approved by the EU Commission;</li>\r\n 	<li data-list-text=\"d.\">compliance with an approved code of conduct by a relevant data protection supervisory authority (in the UK, this is the Information Commissioner’s Office (<strong>ICO</strong>);</li>\r\n 	<li data-list-text=\"e.\">certification with an approved certification mechanism;</li>\r\n 	<li data-list-text=\"f.\">where the EU Commission has approved specific arrangements in respect of certain countries, such as the Data Privacy Framework arrangement (or any successor arrangements, if applicable) in place with the US.</li>\r\n</ol>\r\n</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"8.\"><strong><a name=\"bookmark8\"></a>‌Automated decision-making</strong>\r\n<ol>\r\n 	<li data-list-text=\"8.1.\">‘Automated decision making’ is where a decision is automatically made without any human involvement. Under data protection laws, this includes profiling. ‘Profiling’ is the automated processing of Personal Information to evaluate or analyse certain personal aspects of a person (such as their behaviour, characteristics, interests or preferences).</li>\r\n 	<li data-list-text=\"8.2.\">Data protection laws place restrictions upon us if we carry out any automated decision-making (including profiling) that produces a legal effect or similarly significant effect on you.</li>\r\n 	<li data-list-text=\"8.3.\">We do not carry out any automated decision making (including profiling) that produces a legal effect or similarly significant effect on you. If we decide to do this, we will notify you and we will inform you of the legal reason we are able to do this.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"9.\"><strong><a name=\"bookmark9\"></a>‌Your rights under data protection law</strong>\r\n<ol>\r\n 	<li data-list-text=\"9.1.\">Under data protection laws you have certain rights in relation to your Personal Information, as follows:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Right to request access: (this is often called ‘subject access’). This is the right to obtain from us a copy of the Personal Information that we hold about you. We must also provide you with certain other information in response to these requests to help you understand how your Personal Information is being used.</li>\r\n 	<li data-list-text=\"b.\">Right to correction: this is the right to request that any incorrect Personal Information is corrected, and that any incomplete Personal Information is completed.</li>\r\n 	<li data-list-text=\"c.\">Right to erasure: (this is often called the \'right to be forgotten\'). This right only applies in certain circumstances. Where it does apply, you have the right to request that we erase all of your Personal Information.</li>\r\n 	<li data-list-text=\"d.\">Right to restrict processing: this right only applies in certain circumstances. Where it applies, you have the right to request that we restrict the processing of your Personal Information.</li>\r\n 	<li data-list-text=\"e.\">Right to data portability: this right allows you to request that we transfer your Personal Information to someone else.</li>\r\n 	<li data-list-text=\"f.\">Right to object: you have the right to object to us processing your Personal Information for direct marketing purposes. You also have the right to object to us processing Personal Information where our legal reason for doing so is the Legitimate Interests Reason (see Section 4 above) and there is something about your particular situation that means that you want to object to us processing your Personal Information. In certain circumstances you have the right to object to processing where such processing consists of profiling (including profiling for direct marketing).</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"9.2.\">In addition to the rights set out in Section 9, where we rely on consent as the legal reason for using your Personal Information, you have the right to withdraw your consent. Further details about this are set out in Section 4.</li>\r\n 	<li data-list-text=\"9.3.\">If you want to exercise any of the above rights in relation to your Personal Information, please contact us using the details set out at the beginning of this notice. If you make a request, please note:</li>\r\n 	<li data-list-text=\"9.3.\">a. we may need certain information from you so that we can verify your identity;b. we do not charge a fee for exercising your rights unless your request is unfounded or excessive; and\r\n\r\nc. if your request is unfounded or excessive, we may refuse to deal with your request.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"10.\"><strong><a name=\"bookmark10\"></a>‌Marketing</strong>\r\n<ol>\r\n 	<li data-list-text=\"10.1.\">You may receive marketing from us about similar goods and services, where either you have consented to this, or we have another legal reason by which we can contact you for marketing purposes.</li>\r\n 	<li data-list-text=\"10.2.\">However, we will give you the opportunity to manage how or if we market to you. In any email we send you, we provide a link to either unsubscribe or opt out, or to change your marketing preferences. To change your marketing preferences and/or to request that we stop processing your Personal Information for marketing purposes, you can always contact us on the details set out at the beginning of this notice.</li>\r\n 	<li data-list-text=\"10.3.\">If you request that we stop marketing to you, this will not prevent us from sending communications to you that are not to do with marketing, for example in relation to services that you have purchased from us.</li>\r\n 	<li data-list-text=\"10.4.\">We do not pass your Personal Information on to any third parties for marketing purposes.</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"11.\"><strong><a name=\"bookmark11\"></a>‌Complaints</strong>\r\n<ol>\r\n 	<li data-list-text=\"11.1.\">If you are unhappy about the way that we have handled or used your Personal Information, you have the right to complain to the UK supervisory authority for data protection, which is the Information Commissioner’s Office (<strong>ICO</strong>). Please contact us in the first instance if you wish to raise any queries or make a complaint in respect of our handling or use of your Personal Information, so that we have the opportunity to discuss this with you and to take steps to resolve the position. You<img src=\"FFfB%20new%20privacy%20policy_files/Image_002.png\" alt=\"image\" width=\"2\" height=\"45\" />Future Fit Group is the holding company for Future Fit Training, Future Fit for Business, Biomechanics Education Ltd, iCareiMove Ltd and Future Fit Technologies. Registered Office Address: C/O Azets, Carnac Place, Cams Hall Estate,\r\n\r\nFareham, Hampshire, United Kingdom, PO16 8UY. Company number: 13442367\r\n\r\nWebsite privacy policy\r\n\r\n8\r\n\r\nLast Edit: 16/05/2024 15:12:00\r\n\r\nRevision Number: 1 Author: Future Fit\r\n\r\ncan contact us using the details set out at the beginning of this privacy notice</li>\r\n</ol>\r\n</li>\r\n 	<li data-list-text=\"12.\"><strong><a name=\"bookmark12\"></a>‌Third-party websites</strong>Our website may contain links to third-party websites. If you click and follow those links, they will take you to the third-party website. Those third-party websites may collect Personal Information from you, and you will need to check their privacy notices to understand how your Personal Information is collected and used by them.</li>\r\n 	<li data-list-text=\"13.\"><strong>Cookies</strong></li>\r\n</ol>\r\nWe use cookies on our website. You’ll find a notice about this on our homepage as well, which also links back to this policy. We last updated our policy on 7th May 2024.\r\n\r\nInformation about cookies\r\n\r\nA cookie is a small text file that is placed onto your computer (or other electronic device) when you access our website. There are 4 different types of cookies:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Strictly necessary cookies (required for the website to run). These allow you to do things like log in securely.</li>\r\n 	<li data-list-text=\"b.\">Performance cookies (which measure how many visitors use our site, which pages they visit and how they interact with the site). These help us to improve our website.</li>\r\n 	<li data-list-text=\"c.\">Functionality cookies (which remember specific visitor’s preferences for the way they use our site, e.g. language settings or font size).</li>\r\n 	<li data-list-text=\"d.\">Targeting/advertising cookies (these collect information about individual visitors that enable us, or third parties, to provide relevant advertisements to those who have visited our site)</li>\r\n</ol>\r\nOur website may use each type of cookie in order to:\r\n<ol>\r\n 	<li data-list-text=\"a.\">Make your online experience more efficient and enjoyable</li>\r\n 	<li data-list-text=\"b.\">Improve our services</li>\r\n 	<li data-list-text=\"c.\">Recognise you whenever you visit this website and distinguish you from other users of our site</li>\r\n 	<li data-list-text=\"d.\">Obtain information about your preferences and use of our site</li>\r\n 	<li data-list-text=\"e.\">Provide you with advertising that is tailored to your interests</li>\r\n 	<li data-list-text=\"f.\">Carry out research and data analysis to help us to improve our content and services and to better understand our customer preferences and interests</li>\r\n</ol>\r\nYour web browser places cookies on your hard drive for record-keeping purposes and sometimes to track information about you. We have set out specific details of the cookies we use on our site in the table below.\r\n\r\nThird-party cookies\r\n\r\nLike many other websites, third parties may also set cookies on our website. These third parties are responsible for the cookies they set on our site and we have no control over them. For further information on how their cookies policies work, please visit their websites.\r\n\r\nManaging cookies\r\n\r\nYou can manage cookies yourself.\r\n\r\nYou can set your web browser to refuse cookies, delete cookies, or to alert you when cookies are being sent.\r\n\r\nYou will need to visit the web browser’s site to manage, but for ease we have provided links to popular browsers below:\r\n\r\nGoogle Chrome:\r\n\r\nhttps://support.google.com/accounts/answer/61416?co=GENIE.Platform%3DDesktop&amp;hl=en\r\n\r\nMicrosoft Firefox: https://support.mozilla.org/en-US/kb/enable-and-disable-cookies-website-preferences Microsoft Internet Explorer: https://support.microsoft.com/en-gb/help/17442/windows-internet- explorer-delete-manage-cookies\r\n\r\nApple Safari: https://support.apple.com/kb/ph21411?locale=en_US\r\n\r\n<a href=\"http://www.aboutcookies.org/\" target=\"_blank\" rel=\"noopener\">For further information about cookies and how to manage or disable them please go to: </a><a href=\"http://www.aboutcookies.org/\" target=\"_blank\" rel=\"noopener\">www.aboutcookies.org.</a>\r\n\r\nPlease also note that if you change/block cookies then:\r\n<ul>\r\n 	<li>some parts of our website may not function properly or as well as they otherwise might;</li>\r\n 	<li>changes will apply across all websites that you visit (unless you choose to block cookies only from particular websites); and</li>\r\n 	<li>the settlings that you change will only apply on the device on which you change the settings and will not apply across all other devices that you use.</li>\r\n</ul>\r\nSpecific details\r\n\r\nWe have set out in the table below details of each of the cookies on our site, a description of what they do and, where relevant, external links that provide more information about them:\r\n<table cellspacing=\"0\">\r\n<tbody>\r\n<tr>\r\n<td>Cookie Name</td>\r\n<td>Description</td>\r\n<td>External Information (if relevant)</td>\r\n</tr>\r\n<tr>\r\n<td>Google Analytics</td>\r\n<td>We use Google Analytics to analyse the use of this website. Google Analytics generates statistical and other information about website use by means of cookies, which are stored on users\' computers. The information generated relating to our website is used to create reports about the use of the website. Google will store\r\n\r\nthis information.</td>\r\n<td><a href=\"http://www.google.com/privacypolicy.html\" target=\"_blank\" rel=\"noopener\">Google\'s privacy policy is available at: http://www.google.com/privacypolicy.html.</a></td>\r\n</tr>\r\n</tbody>\r\n</table>'),(230862,41141,'_blocks_0_text_block_content','field_617669ec13098'),(230863,41141,'_thumbnail_id',''),(230864,41141,'__thumbnail_id','field_617570855ddaf'),(230865,39043,'_yoast_wpseo_inclusive_language_score','90'),(230866,41142,'hero_style','default'),(230867,41142,'_hero_style','field_62051d9dc5324'),(230868,41142,'hero_image_pos_x','right'),(230869,41142,'_hero_image_pos_x','field_62ec3d05390bb'),(230870,41142,'hero_image_pos_y','top'),(230871,41142,'_hero_image_pos_y','field_62ec3d05390bc'),(230872,41142,'hero_image_pos',''),(230873,41142,'_hero_image_pos','field_62ec3d05390ba'),(230874,41142,'hero_title','Biomechanics Education - Event Attendees Exclusive Offer'),(230875,41142,'_hero_title','field_617571fe285e8'),(230876,41142,'hero_text','Exclusive Event Deals for Biomechanics Education Attendees'),(230877,41142,'_hero_text','field_6175723c285e9'),(230878,41142,'hero_actions','1'),(230879,41142,'_hero_actions','field_61757270285ea'),(230880,41142,'hero_icon',''),(230881,41142,'_hero_icon','field_61a6182199d03'),(230882,41142,'fft_hide_from_listings','0'),(230883,41142,'_fft_hide_from_listings','field_61f1320446ab2'),(230884,41142,'fft_page_format','default'),(230885,41142,'_fft_page_format','field_61ae213f1f218'),(230886,41142,'fft_hide_nav','1'),(230887,41142,'_fft_hide_nav','field_635bd5e43527c'),(230888,41142,'fft_hide_header_call_to_action','0'),(230889,41142,'_fft_hide_header_call_to_action','field_635bd6723527d'),(230890,41142,'fft_page_sitemap','1'),(230891,41142,'_fft_page_sitemap','field_61af9b34e8181'),(230892,41142,'blocks','a:9:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"video\";i:3;s:8:\"template\";i:4;s:16:\"standard_content\";i:5;s:4:\"tabs\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:11:\"promo_panel\";}'),(230893,41142,'_blocks','field_6176696113096'),(230894,41142,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39043-3\";s:6:\"target\";s:6:\"_blank\";}'),(230895,41142,'_hero_actions_0_button','field_61757281285eb'),(230896,41142,'_thumbnail_id','40310'),(230897,41142,'__thumbnail_id','field_617570855ddaf'),(230898,41142,'blocks_0_acfe_flexible_toggle',''),(230899,41142,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(230900,41142,'blocks_0_acfe_flexible_layout_title','Icons'),(230901,41142,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(230902,41142,'blocks_0_options_theme','#ffffff'),(230903,41142,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(230904,41142,'blocks_0_options_format','row'),(230905,41142,'_blocks_0_options_format','field_64bfde9a90690'),(230906,41142,'blocks_0_options',''),(230907,41142,'_blocks_0_options','field_64bfdd9b90684'),(230908,41142,'blocks_0_icon_row_items_0_icon','qualification.svg'),(230909,41142,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(230910,41142,'blocks_0_icon_row_items_0_label','Course Type'),(230911,41142,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(230912,41142,'blocks_0_icon_row_items_0_text','Blended Learning'),(230913,41142,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(230914,41142,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(230915,41142,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(230916,41142,'blocks_0_icon_row_items_1_label','Qualification'),(230917,41142,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(230918,41142,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(230919,41142,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(230920,41142,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(230921,41142,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(230922,41142,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(230923,41142,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(230924,41142,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(230925,41142,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(230926,41142,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(230927,41142,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(230928,41142,'blocks_0_icon_row_items_3_label','IBA Registered'),(230929,41142,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(230930,41142,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(230931,41142,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(230932,41142,'blocks_0_icon_row_items','4'),(230933,41142,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(230934,41142,'blocks_1_acfe_flexible_toggle',''),(230935,41142,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(230936,41142,'blocks_1_acfe_flexible_layout_title','Form'),(230937,41142,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(230938,41142,'blocks_1_row_content_format','promotion'),(230939,41142,'_blocks_1_row_content_format','field_6481ead962881'),(230940,41142,'blocks_1_row_content_title',''),(230941,41142,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(230942,41142,'blocks_1_row_content_heading',''),(230943,41142,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(230944,41142,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(230945,41142,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(230946,41142,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(230947,41142,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(230948,41142,'blocks_1_row_content_actions','1'),(230949,41142,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(230950,41142,'blocks_1_row_content',''),(230951,41142,'_blocks_1_row_content','field_61a0f5f5b3db0'),(230952,41142,'blocks_1_row_form','40416'),(230953,41142,'_blocks_1_row_form','field_61a4ff2c0b08e'),(230954,41142,'blocks_1_row_form_button_label',''),(230955,41142,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(230956,41142,'blocks_1_row_content_promotion_label',''),(230957,41142,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(230958,41142,'blocks_1_row_content_promotion_heading','Up to 10% Off For Event Attendees '),(230959,41142,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(230960,41142,'blocks_1_row_content_promotion_value','10%'),(230961,41142,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(230962,41142,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an event attendee'),(230963,41142,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(230964,41142,'blocks_1_row_content_promotion',''),(230965,41142,'_blocks_1_row_content_promotion','field_6481eb3962882'),(230966,41142,'blocks_1_row_form_title','Event Referral'),(230967,41142,'_blocks_1_row_form_title','field_64872db5127af'),(230968,41142,'blocks_2_acfe_flexible_toggle',''),(230969,41142,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(230970,41142,'blocks_2_acfe_flexible_layout_title','Course Overview and Video'),(230971,41142,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(230972,41142,'blocks_2_size','large'),(230973,41142,'_blocks_2_size','field_6487038f297c1'),(230974,41142,'blocks_2_row_content_title',''),(230975,41142,'_blocks_2_row_content_title','field_64870132a865d'),(230976,41142,'blocks_2_row_content_heading','Course Overview'),(230977,41142,'_blocks_2_row_content_heading','field_64870142a865e'),(230978,41142,'blocks_2_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring learners a movement assessment programme that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(230979,41142,'_blocks_2_row_content_text','field_64870148a865f'),(230980,41142,'blocks_2_row_content',''),(230981,41142,'_blocks_2_row_content','field_6487008ba865c'),(230982,41142,'blocks_2_video_src','https://youtu.be/9V5OgVeLLKA'),(230983,41142,'_blocks_2_video_src','field_6193c4a98ec07'),(230984,41142,'blocks_2_video_thumbnail','38998'),(230985,41142,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(230986,41142,'blocks_4_acfe_flexible_toggle',''),(230987,41142,'_blocks_4_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(230988,41142,'blocks_4_acfe_flexible_layout_title','Learn more heading text'),(230989,41142,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(230990,41142,'blocks_4_content','<h2 style=\"text-align: center;\">Learn More About the Course</h2>\r\n<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics Coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(230991,41142,'_blocks_4_content','field_6193c9b5eac84'),(230992,41142,'blocks_5_acfe_flexible_toggle',''),(230993,41142,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(230994,41142,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(230995,41142,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(230996,41142,'blocks_5_options_theme','#ffffff'),(230997,41142,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(230998,41142,'blocks_5_options',''),(230999,41142,'_blocks_5_options','field_6177cfcd8140f'),(231000,41142,'blocks_5_tabs_0_tab_label','What\'s Included'),(231001,41142,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(231002,41142,'blocks_5_tabs_0_tab_content_title',''),(231003,41142,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(231004,41142,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(231005,41142,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(231006,41142,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(231007,41142,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(231008,41142,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(231009,41142,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(231010,41142,'blocks_5_tabs_0_tab_content_actions','1'),(231011,41142,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(231012,41142,'blocks_5_tabs_0_tab_content',''),(231013,41142,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(231014,41142,'blocks_5_tabs_0_tab_image','39009'),(231015,41142,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(231016,41142,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(231017,41142,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(231018,41142,'blocks_5_tabs_1_tab_content_title',''),(231019,41142,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(231020,41142,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(231021,41142,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(231022,41142,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(231023,41142,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(231024,41142,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(231025,41142,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(231026,41142,'blocks_5_tabs_1_tab_content_actions','1'),(231027,41142,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(231028,41142,'blocks_5_tabs_1_tab_content',''),(231029,41142,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(231030,41142,'blocks_5_tabs_1_tab_image','31067'),(231031,41142,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(231032,41142,'blocks_5_tabs','2'),(231033,41142,'_blocks_5_tabs','field_6177cff281419'),(231034,41142,'blocks_6_acfe_flexible_toggle',''),(231035,41142,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(231036,41142,'blocks_6_acfe_flexible_layout_title','About Rachel'),(231037,41142,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(231038,41142,'blocks_6_options_theme','#ffffff'),(231039,41142,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(231040,41142,'blocks_6_options_reverse','0'),(231041,41142,'_blocks_6_options_reverse','field_61768049bb8ac'),(231042,41142,'blocks_6_options',''),(231043,41142,'_blocks_6_options','field_617682517c334'),(231044,41142,'blocks_6_split_5050_image','39052'),(231045,41142,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(231046,41142,'blocks_6_split_5050_video',''),(231047,41142,'_blocks_6_split_5050_video','field_6239f3160848a'),(231048,41142,'blocks_6_split_5050_content_title',''),(231049,41142,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(231050,41142,'blocks_6_split_5050_content_heading','Rachel Frances Thomson'),(231051,41142,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(231052,41142,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel’s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(231053,41142,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(231054,41142,'blocks_6_split_5050_content_actions',''),(231055,41142,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(231056,41142,'blocks_6_split_5050_content',''),(231057,41142,'_blocks_6_split_5050_content','field_61767afceb8ba'),(231058,41142,'blocks_7_acfe_flexible_toggle',''),(231059,41142,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(231060,41142,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(231061,41142,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(231062,41142,'blocks_7_options_theme','#ffffff'),(231063,41142,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(231064,41142,'blocks_7_options_state','0'),(231065,41142,'_blocks_7_options_state','field_6239fcb7508c5'),(231066,41142,'blocks_7_options',''),(231067,41142,'_blocks_7_options','field_6177e2991ac44'),(231068,41142,'blocks_7_content_title',''),(231069,41142,'_blocks_7_content_title','field_64d237e8bb1e2'),(231070,41142,'blocks_7_content_heading','Frequently asked questions'),(231071,41142,'_blocks_7_content_heading','field_64d237e8bb1e3'),(231072,41142,'blocks_7_content_text',''),(231073,41142,'_blocks_7_content_text','field_64d237e8bb1e4'),(231074,41142,'blocks_7_content_actions',''),(231075,41142,'_blocks_7_content_actions','field_64d237e8bb1e5'),(231076,41142,'blocks_7_content_align','left'),(231077,41142,'_blocks_7_content_align','field_64d2443e6b6aa'),(231078,41142,'blocks_7_content',''),(231079,41142,'_blocks_7_content','field_64d237e8bb1e1'),(231080,41142,'blocks_7_accordion_content','faqs'),(231081,41142,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(231082,41142,'blocks_7_accordion_faqs_select','a:12:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";}'),(231083,41142,'_blocks_7_accordion_faqs_select','field_6177e5f3633dd'),(231084,41142,'blocks_7_actions',''),(231085,41142,'_blocks_7_actions','field_61a746a817f7a'),(231086,41142,'blocks_8_acfe_flexible_toggle',''),(231087,41142,'_blocks_8_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(231088,41142,'blocks_8_acfe_flexible_layout_title','Promo Panel'),(231089,41142,'_blocks_8_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(231090,41142,'blocks_8_options_alignment','center'),(231091,41142,'_blocks_8_options_alignment','field_61769449f5490'),(231092,41142,'blocks_8_options',''),(231093,41142,'_blocks_8_options','field_617693e1428f0'),(231094,41142,'blocks_8_promo_panel_image','39035'),(231095,41142,'_blocks_8_promo_panel_image','field_617693e1428f3'),(231096,41142,'blocks_8_promo_panel_content_heading','Ready to level up your fitness career ?'),(231097,41142,'_blocks_8_promo_panel_content_heading','field_617693e1428f6'),(231098,41142,'blocks_8_promo_panel_content_text','Download a price guide today to receive an exclusive 10% off for all David Lloyd Personal Trainers.'),(231099,41142,'_blocks_8_promo_panel_content_text','field_617693e1428f7'),(231100,41142,'blocks_8_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39043-2\";s:6:\"target\";s:0:\"\";}'),(231101,41142,'_blocks_8_promo_panel_content_actions_0_button','field_617693e1428f9'),(231102,41142,'blocks_8_promo_panel_content_actions','1'),(231103,41142,'_blocks_8_promo_panel_content_actions','field_617693e1428f8'),(231104,41142,'blocks_8_promo_panel_content',''),(231105,41142,'_blocks_8_promo_panel_content','field_617693e1428f4'),(231106,41142,'hide_hero','0'),(231107,41142,'_hide_hero','field_66a2380fcda39'),(231108,41142,'blocks_3_acfe_flexible_toggle',''),(231109,41142,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(231110,41142,'blocks_3_acfe_flexible_layout_title','Template'),(231111,41142,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(231112,41142,'blocks_3_template','40987'),(231113,41142,'_blocks_3_template','field_617bdd570fe01'),(231114,3,'_oembed_39c747a066b81ad0cb89b0893f792b53','{{unknown}}'),(231115,41179,'_edit_lock','1730196880:13'),(231116,41179,'_edit_last','13'),(231117,41179,'hide_hero','0'),(231118,41179,'_hide_hero','field_66a2380fcda39'),(231119,41179,'fft_hide_from_listings','0'),(231120,41179,'_fft_hide_from_listings','field_61f1320446ab2'),(231121,41179,'fft_page_format','default'),(231122,41179,'_fft_page_format','field_61ae213f1f218'),(231123,41179,'fft_hide_nav','0'),(231124,41179,'_fft_hide_nav','field_635bd5e43527c'),(231125,41179,'fft_hide_header_call_to_action','0'),(231126,41179,'_fft_hide_header_call_to_action','field_635bd6723527d'),(231127,41179,'fft_page_sitemap','0'),(231128,41179,'_fft_page_sitemap','field_61af9b34e8181'),(231129,41179,'blocks','a:6:{i:0;s:10:\"split_5050\";i:1;s:10:\"text_block\";i:2;s:4:\"tabs\";i:3;s:4:\"form\";i:4;s:13:\"step_timeline\";i:5;s:10:\"accordions\";}'),(231130,41179,'_blocks','field_6176696113096'),(231131,41179,'_yoast_wpseo_focuskw','ECLAS courses'),(231132,41179,'_yoast_wpseo_linkdex','35'),(231133,41179,'_yoast_wpseo_inclusive_language_score','90'),(231134,41179,'_yoast_wpseo_estimated-reading-time-minutes','1'),(231135,41180,'hide_hero','1'),(231136,41180,'_hide_hero','field_66a2380fcda39'),(231137,41180,'fft_hide_from_listings','0'),(231138,41180,'_fft_hide_from_listings','field_61f1320446ab2'),(231139,41180,'fft_page_format','default'),(231140,41180,'_fft_page_format','field_61ae213f1f218'),(231141,41180,'fft_hide_nav','0'),(231142,41180,'_fft_hide_nav','field_635bd5e43527c'),(231143,41180,'fft_hide_header_call_to_action','0'),(231144,41180,'_fft_hide_header_call_to_action','field_635bd6723527d'),(231145,41180,'fft_page_sitemap','0'),(231146,41180,'_fft_page_sitemap','field_61af9b34e8181'),(231147,41180,'blocks',''),(231148,41180,'_blocks','field_6176696113096'),(231169,41179,'_yoast_wpseo_metadesc','ELCAS Courses - Training for the Armed Forces. Biomechanics Education is proud to be an approved ELCAS training provider.'),(231170,41181,'hide_hero','1'),(231171,41181,'_hide_hero','field_66a2380fcda39'),(231172,41181,'fft_hide_from_listings','0'),(231173,41181,'_fft_hide_from_listings','field_61f1320446ab2'),(231174,41181,'fft_page_format','default'),(231175,41181,'_fft_page_format','field_61ae213f1f218'),(231176,41181,'fft_hide_nav','0'),(231177,41181,'_fft_hide_nav','field_635bd5e43527c'),(231178,41181,'fft_hide_header_call_to_action','0'),(231179,41181,'_fft_hide_header_call_to_action','field_635bd6723527d'),(231180,41181,'fft_page_sitemap','0'),(231181,41181,'_fft_page_sitemap','field_61af9b34e8181'),(231182,41181,'blocks','a:1:{i:0;s:4:\"form\";}'),(231183,41181,'_blocks','field_6176696113096'),(231184,41181,'blocks_0_acfe_flexible_toggle',''),(231185,41181,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(231186,41181,'blocks_0_acfe_flexible_layout_title','Form'),(231187,41181,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(231188,41181,'blocks_0_row_content_format','standard'),(231189,41181,'_blocks_0_row_content_format','field_6481ead962881'),(231190,41181,'blocks_0_row_content_title',''),(231191,41181,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(231192,41181,'blocks_0_row_content_heading',''),(231193,41181,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(231194,41181,'blocks_0_row_content_text',''),(231195,41181,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(231196,41181,'blocks_0_row_content_actions',''),(231197,41181,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(231198,41181,'blocks_0_row_content',''),(231199,41181,'_blocks_0_row_content','field_61a0f5f5b3db0'),(231200,41181,'blocks_0_row_form',''),(231201,41181,'_blocks_0_row_form','field_61a4ff2c0b08e'),(231202,41181,'blocks_0_row_form_button_label',''),(231203,41181,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(231204,41182,'hide_hero','1'),(231205,41182,'_hide_hero','field_66a2380fcda39'),(231206,41182,'fft_hide_from_listings','0'),(231207,41182,'_fft_hide_from_listings','field_61f1320446ab2'),(231208,41182,'fft_page_format','default'),(231209,41182,'_fft_page_format','field_61ae213f1f218'),(231210,41182,'fft_hide_nav','0'),(231211,41182,'_fft_hide_nav','field_635bd5e43527c'),(231212,41182,'fft_hide_header_call_to_action','0'),(231213,41182,'_fft_hide_header_call_to_action','field_635bd6723527d'),(231214,41182,'fft_page_sitemap','0'),(231215,41182,'_fft_page_sitemap','field_61af9b34e8181'),(231216,41182,'blocks','a:1:{i:0;s:4:\"form\";}'),(231217,41182,'_blocks','field_6176696113096'),(231218,41182,'blocks_0_acfe_flexible_toggle',''),(231219,41182,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(231220,41182,'blocks_0_acfe_flexible_layout_title','Form'),(231221,41182,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(231222,41182,'blocks_0_row_content_format','standard'),(231223,41182,'_blocks_0_row_content_format','field_6481ead962881'),(231224,41182,'blocks_0_row_content_title',''),(231225,41182,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(231226,41182,'blocks_0_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(231227,41182,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(231228,41182,'blocks_0_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.'),(231229,41182,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(231230,41182,'blocks_0_row_content_actions',''),(231231,41182,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(231232,41182,'blocks_0_row_content',''),(231233,41182,'_blocks_0_row_content','field_61a0f5f5b3db0'),(231234,41182,'blocks_0_row_form','40394'),(231235,41182,'_blocks_0_row_form','field_61a4ff2c0b08e'),(231236,41182,'blocks_0_row_form_button_label',''),(231237,41182,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(231238,41183,'_wp_attached_file','2024/10/BE_Worshop_30thAug-8-scaled.jpg'),(231239,41183,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/10/BE_Worshop_30thAug-8-scaled.jpg\";s:8:\"filesize\";i:611849;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128016;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-8-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193431;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43762;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102443;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-8-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:277005;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-8-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:428571;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56548;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171253;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-8-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259278;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43674;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127264;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-8-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192366;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47385;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137020;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-8-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206910;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47231;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139505;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-8-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210747;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40205;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114616;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-8-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172067;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725012689\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_30thAug-8.jpg\";}'),(231240,41183,'_wp_attachment_image_alt','Two men in a biomechanics workshop setting'),(231241,41179,'_thumbnail_id','41183'),(231242,41184,'hide_hero','1'),(231243,41184,'_hide_hero','field_66a2380fcda39'),(231244,41184,'fft_hide_from_listings','0'),(231245,41184,'_fft_hide_from_listings','field_61f1320446ab2'),(231246,41184,'fft_page_format','default'),(231247,41184,'_fft_page_format','field_61ae213f1f218'),(231248,41184,'fft_hide_nav','0'),(231249,41184,'_fft_hide_nav','field_635bd5e43527c'),(231250,41184,'fft_hide_header_call_to_action','0'),(231251,41184,'_fft_hide_header_call_to_action','field_635bd6723527d'),(231252,41184,'fft_page_sitemap','0'),(231253,41184,'_fft_page_sitemap','field_61af9b34e8181'),(231254,41184,'blocks','a:1:{i:0;s:4:\"form\";}'),(231255,41184,'_blocks','field_6176696113096'),(231256,41184,'blocks_0_acfe_flexible_toggle',''),(231257,41184,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(231258,41184,'blocks_0_acfe_flexible_layout_title','Form'),(231259,41184,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(231260,41184,'blocks_0_row_content_format','standard'),(231261,41184,'_blocks_0_row_content_format','field_6481ead962881'),(231262,41184,'blocks_0_row_content_title',''),(231263,41184,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(231264,41184,'blocks_0_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(231265,41184,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(231266,41184,'blocks_0_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.'),(231267,41184,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(231268,41184,'blocks_0_row_content_actions',''),(231269,41184,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(231270,41184,'blocks_0_row_content',''),(231271,41184,'_blocks_0_row_content','field_61a0f5f5b3db0'),(231272,41184,'blocks_0_row_form','40394'),(231273,41184,'_blocks_0_row_form','field_61a4ff2c0b08e'),(231274,41184,'blocks_0_row_form_button_label',''),(231275,41184,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(231276,41179,'hero_title',''),(231277,41179,'_hero_title','field_617571fe285e8'),(231278,41179,'hero_text',''),(231279,41179,'_hero_text','field_6175723c285e9'),(231280,41179,'hero_actions',''),(231281,41179,'_hero_actions','field_61757270285ea'),(231282,41179,'hero_style','default'),(231283,41179,'_hero_style','field_62051d9dc5324'),(231284,41179,'__thumbnail_id','field_617570855ddaf'),(231285,41179,'hero_image_pos_x','right'),(231286,41179,'_hero_image_pos_x','field_62ec3d05390bb'),(231287,41179,'hero_image_pos_y','top'),(231288,41179,'_hero_image_pos_y','field_62ec3d05390bc'),(231289,41179,'hero_image_pos',''),(231290,41179,'_hero_image_pos','field_62ec3d05390ba'),(231291,41185,'hide_hero','0'),(231292,41185,'_hide_hero','field_66a2380fcda39'),(231293,41185,'fft_hide_from_listings','0'),(231294,41185,'_fft_hide_from_listings','field_61f1320446ab2'),(231295,41185,'fft_page_format','default'),(231296,41185,'_fft_page_format','field_61ae213f1f218'),(231297,41185,'fft_hide_nav','0'),(231298,41185,'_fft_hide_nav','field_635bd5e43527c'),(231299,41185,'fft_hide_header_call_to_action','0'),(231300,41185,'_fft_hide_header_call_to_action','field_635bd6723527d'),(231301,41185,'fft_page_sitemap','0'),(231302,41185,'_fft_page_sitemap','field_61af9b34e8181'),(231303,41185,'blocks','a:1:{i:0;s:4:\"form\";}'),(231304,41185,'_blocks','field_6176696113096'),(231305,41185,'blocks_0_acfe_flexible_toggle',''),(231306,41185,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(231307,41185,'blocks_0_acfe_flexible_layout_title','Form'),(231308,41185,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(231309,41185,'blocks_0_row_content_format','standard'),(231310,41185,'_blocks_0_row_content_format','field_6481ead962881'),(231311,41185,'blocks_0_row_content_title',''),(231312,41185,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(231313,41185,'blocks_0_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(231314,41185,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(231315,41185,'blocks_0_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.'),(231316,41185,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(231317,41185,'blocks_0_row_content_actions',''),(231318,41185,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(231319,41185,'blocks_0_row_content',''),(231320,41185,'_blocks_0_row_content','field_61a0f5f5b3db0'),(231321,41185,'blocks_0_row_form','40394'),(231322,41185,'_blocks_0_row_form','field_61a4ff2c0b08e'),(231323,41185,'blocks_0_row_form_button_label',''),(231324,41185,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(231325,41185,'_thumbnail_id',''),(231326,41185,'__thumbnail_id','field_617570855ddaf'),(231327,41185,'hero_title',''),(231328,41185,'_hero_title','field_617571fe285e8'),(231329,41185,'hero_text',''),(231330,41185,'_hero_text','field_6175723c285e9'),(231331,41185,'hero_actions',''),(231332,41185,'_hero_actions','field_61757270285ea'),(231333,41185,'hero_style','default'),(231334,41185,'_hero_style','field_62051d9dc5324'),(231335,41185,'hero_image_pos_x','right'),(231336,41185,'_hero_image_pos_x','field_62ec3d05390bb'),(231337,41185,'hero_image_pos_y','top'),(231338,41185,'_hero_image_pos_y','field_62ec3d05390bc'),(231339,41185,'hero_image_pos',''),(231340,41185,'_hero_image_pos','field_62ec3d05390ba'),(231341,41186,'hide_hero','0'),(231342,41186,'_hide_hero','field_66a2380fcda39'),(231343,41186,'fft_hide_from_listings','0'),(231344,41186,'_fft_hide_from_listings','field_61f1320446ab2'),(231345,41186,'fft_page_format','default'),(231346,41186,'_fft_page_format','field_61ae213f1f218'),(231347,41186,'fft_hide_nav','0'),(231348,41186,'_fft_hide_nav','field_635bd5e43527c'),(231349,41186,'fft_hide_header_call_to_action','0'),(231350,41186,'_fft_hide_header_call_to_action','field_635bd6723527d'),(231351,41186,'fft_page_sitemap','0'),(231352,41186,'_fft_page_sitemap','field_61af9b34e8181'),(231353,41186,'blocks','a:1:{i:0;s:4:\"form\";}'),(231354,41186,'_blocks','field_6176696113096'),(231355,41186,'blocks_0_acfe_flexible_toggle',''),(231356,41186,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(231357,41186,'blocks_0_acfe_flexible_layout_title','Form'),(231358,41186,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(231359,41186,'blocks_0_row_content_format','standard'),(231360,41186,'_blocks_0_row_content_format','field_6481ead962881'),(231361,41186,'blocks_0_row_content_title',''),(231362,41186,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(231363,41186,'blocks_0_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(231364,41186,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(231365,41186,'blocks_0_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.'),(231366,41186,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(231367,41186,'blocks_0_row_content_actions',''),(231368,41186,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(231369,41186,'blocks_0_row_content',''),(231370,41186,'_blocks_0_row_content','field_61a0f5f5b3db0'),(231371,41186,'blocks_0_row_form','40394'),(231372,41186,'_blocks_0_row_form','field_61a4ff2c0b08e'),(231373,41186,'blocks_0_row_form_button_label',''),(231374,41186,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(231375,41186,'_thumbnail_id','41183'),(231376,41186,'__thumbnail_id','field_617570855ddaf'),(231377,41186,'hero_title',''),(231378,41186,'_hero_title','field_617571fe285e8'),(231379,41186,'hero_text',''),(231380,41186,'_hero_text','field_6175723c285e9'),(231381,41186,'hero_actions',''),(231382,41186,'_hero_actions','field_61757270285ea'),(231383,41186,'hero_style','default'),(231384,41186,'_hero_style','field_62051d9dc5324'),(231385,41186,'hero_image_pos_x','right'),(231386,41186,'_hero_image_pos_x','field_62ec3d05390bb'),(231387,41186,'hero_image_pos_y','top'),(231388,41186,'_hero_image_pos_y','field_62ec3d05390bc'),(231389,41186,'hero_image_pos',''),(231390,41186,'_hero_image_pos','field_62ec3d05390ba'),(231391,41187,'hide_hero','0'),(231392,41187,'_hide_hero','field_66a2380fcda39'),(231393,41187,'hero_title','Running Biomechanics Workshop'),(231394,41187,'_hero_title','field_617571fe285e8'),(231395,41187,'hero_text','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(231396,41187,'_hero_text','field_6175723c285e9'),(231397,41187,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(231398,41187,'_hero_actions_0_button','field_61757281285eb'),(231399,41187,'hero_actions','1'),(231400,41187,'_hero_actions','field_61757270285ea'),(231401,41187,'hero_style','default'),(231402,41187,'_hero_style','field_62051d9dc5324'),(231403,41187,'_thumbnail_id','40877'),(231404,41187,'__thumbnail_id','field_617570855ddaf'),(231405,41187,'hero_image_pos_x','right'),(231406,41187,'_hero_image_pos_x','field_62ec3d05390bb'),(231407,41187,'hero_image_pos_y','top'),(231408,41187,'_hero_image_pos_y','field_62ec3d05390bc'),(231409,41187,'hero_image_pos',''),(231410,41187,'_hero_image_pos','field_62ec3d05390ba'),(231411,41187,'fft_hide_from_listings','0'),(231412,41187,'_fft_hide_from_listings','field_61f1320446ab2'),(231413,41187,'fft_page_format','default'),(231414,41187,'_fft_page_format','field_61ae213f1f218'),(231415,41187,'fft_hide_nav','0'),(231416,41187,'_fft_hide_nav','field_635bd5e43527c'),(231417,41187,'fft_hide_header_call_to_action','0'),(231418,41187,'_fft_hide_header_call_to_action','field_635bd6723527d'),(231419,41187,'fft_page_sitemap','0'),(231420,41187,'_fft_page_sitemap','field_61af9b34e8181'),(231421,41187,'blocks_0_acfe_flexible_toggle',''),(231422,41187,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(231423,41187,'blocks_0_acfe_flexible_layout_title','Template'),(231424,41187,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(231425,41187,'blocks_0_template','39087'),(231426,41187,'_blocks_0_template','field_617bdd570fe01'),(231427,41187,'blocks_1_acfe_flexible_toggle',''),(231428,41187,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(231429,41187,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(231430,41187,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(231431,41187,'blocks_1_options_theme','#ffffff'),(231432,41187,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(231433,41187,'blocks_1_options_reverse','0'),(231434,41187,'_blocks_1_options_reverse','field_61768049bb8ac'),(231435,41187,'blocks_1_options',''),(231436,41187,'_blocks_1_options','field_617682517c334'),(231437,41187,'blocks_1_split_5050_image','40612'),(231438,41187,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(231439,41187,'blocks_1_split_5050_video',''),(231440,41187,'_blocks_1_split_5050_video','field_6239f3160848a'),(231441,41187,'blocks_1_split_5050_content_title',''),(231442,41187,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(231443,41187,'blocks_1_split_5050_content_heading','Course Overview'),(231444,41187,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(231445,41187,'blocks_1_split_5050_content_text','Running, a fundamental aspect of many fitness programs, demands a nuanced understanding of biomechanics. With an ever-growing array of running styles, it can be challenging to discern the most suitable approach for you or your clients.\r\n\r\nOur in-person workshop is built on the principle that there\'s no one-size-fits-all running style. Delve into the evidence supporting various techniques and gain practical methods to determine the most effective running style for your clients. We also provide insights into preparation exercises that can aid your clients in adapting to their chosen method.'),(231446,41187,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(231447,41187,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(231448,41187,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(231449,41187,'blocks_1_split_5050_content_actions','1'),(231450,41187,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(231451,41187,'blocks_1_split_5050_content',''),(231452,41187,'_blocks_1_split_5050_content','field_61767afceb8ba'),(231453,41187,'blocks_2_acfe_flexible_toggle',''),(231454,41187,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(231455,41187,'blocks_2_acfe_flexible_layout_title','Timeline'),(231456,41187,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(231457,41187,'blocks_2_options_theme','#ffffff'),(231458,41187,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(231459,41187,'blocks_2_options',''),(231460,41187,'_blocks_2_options','field_6177de53d1195'),(231461,41187,'blocks_2_timeline_content_title',''),(231462,41187,'_blocks_2_timeline_content_title','field_6177de53d1198'),(231463,41187,'blocks_2_timeline_content_heading','What You\'ll Learn in this One-Day Workshop'),(231464,41187,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(231465,41187,'blocks_2_timeline_content_text','<ul>\r\n 	<li>The correct terminology to engage with local running clubs</li>\r\n 	<li>Understanding the mechanics and sequencing of running gaits</li>\r\n 	<li>Extrinsically examining different styles or idiosyncrasies and intrinsically evaluating restrictions and dysfunctions</li>\r\n 	<li>Discussing screenings and key exercise interventions to prepare runners for their chosen style</li>\r\n</ul>'),(231466,41187,'_blocks_2_timeline_content_text','field_6177de53d119a'),(231467,41187,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(231468,41187,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(231469,41187,'blocks_2_timeline_content_actions','1'),(231470,41187,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(231471,41187,'blocks_2_timeline_content',''),(231472,41187,'_blocks_2_timeline_content','field_6177de53d1197'),(231473,41187,'blocks_2_timeline_items_0_title','Workshop Duration'),(231474,41187,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(231475,41187,'blocks_2_timeline_items_0_text','1. Pre-course recorded classroom for pre & post-learning enhancement \r\n\r\n2. 1-day attendance for 7 hours '),(231476,41187,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(231477,41187,'blocks_2_timeline_items_1_title','Who Should Attend? '),(231478,41187,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(231479,41187,'blocks_2_timeline_items_1_text','1. Running coaches and practitioners aiming to elevate their skills \r\n\r\n2. Any professionals seeking a comprehensive understanding of running biomechanics '),(231480,41187,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(231481,41187,'blocks_2_timeline_items_2_title','Prerequisites'),(231482,41187,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(231483,41187,'blocks_2_timeline_items_2_text','1. Suitable for running coaches, athletics coaches, Level 3 PT, and Level 3 manual therapists '),(231484,41187,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(231485,41187,'blocks_2_timeline_items_3_title','Assessment'),(231486,41187,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(231487,41187,'blocks_2_timeline_items_3_text','1. Continuous assessment during the attendance day '),(231488,41187,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(231489,41187,'blocks_2_timeline_items_4_title','Materials Needed'),(231490,41187,'_blocks_2_timeline_items_4_title','field_6177de53d119f'),(231491,41187,'blocks_2_timeline_items_4_text','1. A link to the downloadable workshop manual will be sent in advance of attendance, created by Martin Haines, Founder of Brytespark'),(231492,41187,'_blocks_2_timeline_items_4_text','field_6177de53d11a0'),(231493,41187,'blocks_2_timeline_items','5'),(231494,41187,'_blocks_2_timeline_items','field_6177de53d119d'),(231495,41187,'blocks_3_acfe_flexible_toggle',''),(231496,41187,'_blocks_3_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(231497,41187,'blocks_3_acfe_flexible_layout_title','Promo Panel'),(231498,41187,'_blocks_3_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(231499,41187,'blocks_3_options_alignment','center'),(231500,41187,'_blocks_3_options_alignment','field_61769449f5490'),(231501,41187,'blocks_3_options',''),(231502,41187,'_blocks_3_options','field_617693e1428f0'),(231503,41187,'blocks_3_promo_panel_image','40820'),(231504,41187,'_blocks_3_promo_panel_image','field_617693e1428f3'),(231505,41187,'blocks_3_promo_panel_content_heading','Tom Waldron, Master Trainer '),(231506,41187,'_blocks_3_promo_panel_content_heading','field_617693e1428f6'),(231507,41187,'blocks_3_promo_panel_content_text','\"Rachel was one of my first mentors both professionally and personally. She introduced to me the concept of critical thinking as well as the ability to respectfully question everything. She’s an expert in human movement, and if you’re lucky enough to have Rachel as a teacher, you gain much more than just knowledge about the human body.\"'),(231508,41187,'_blocks_3_promo_panel_content_text','field_617693e1428f7'),(231509,41187,'blocks_3_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(231510,41187,'_blocks_3_promo_panel_content_actions_0_button','field_617693e1428f9'),(231511,41187,'blocks_3_promo_panel_content_actions','1'),(231512,41187,'_blocks_3_promo_panel_content_actions','field_617693e1428f8'),(231513,41187,'blocks_3_promo_panel_content',''),(231514,41187,'_blocks_3_promo_panel_content','field_617693e1428f4'),(231515,41187,'blocks_4_acfe_flexible_toggle',''),(231516,41187,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(231517,41187,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(231518,41187,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(231519,41187,'blocks_4_options_theme','#ffffff'),(231520,41187,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(231521,41187,'blocks_4_options_state','0'),(231522,41187,'_blocks_4_options_state','field_6239fcb7508c5'),(231523,41187,'blocks_4_options',''),(231524,41187,'_blocks_4_options','field_6177e2991ac44'),(231525,41187,'blocks_4_content_title',''),(231526,41187,'_blocks_4_content_title','field_64d237e8bb1e2'),(231527,41187,'blocks_4_content_heading','FAQ\'s'),(231528,41187,'_blocks_4_content_heading','field_64d237e8bb1e3'),(231529,41187,'blocks_4_content_text',''),(231530,41187,'_blocks_4_content_text','field_64d237e8bb1e4'),(231531,41187,'blocks_4_content_actions',''),(231532,41187,'_blocks_4_content_actions','field_64d237e8bb1e5'),(231533,41187,'blocks_4_content_align','left'),(231534,41187,'_blocks_4_content_align','field_64d2443e6b6aa'),(231535,41187,'blocks_4_content',''),(231536,41187,'_blocks_4_content','field_64d237e8bb1e1'),(231537,41187,'blocks_4_accordion_content','faqs'),(231538,41187,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(231539,41187,'blocks_4_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(231540,41187,'_blocks_4_accordion_faqs_select','field_6177e5f3633dd'),(231541,41187,'blocks_4_actions',''),(231542,41187,'_blocks_4_actions','field_61a746a817f7a'),(231543,41187,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:11:\"promo_panel\";i:4;s:10:\"accordions\";}'),(231544,41187,'_blocks','field_6176696113096'),(231545,41187,'course_label_text','Running Biomechanics Workshop'),(231546,41187,'_course_label_text','field_61e17babf71fa'),(231547,41187,'course_label_label_theme','#0d1f73'),(231548,41187,'_course_label_label_theme','field_61e17bb8f71fb'),(231549,41187,'course_label',''),(231550,41187,'_course_label','field_61e12f92749a7'),(231551,41187,'course_description','Enhance your running coaching skills with our comprehensive Running Biomechanics Workshop.'),(231552,41187,'_course_description','field_617ac5788e5e1'),(231553,41187,'course_key_info_0_text','In-person Workshop'),(231554,41187,'_course_key_info_0_text','field_617ac6c38e5e3'),(231555,41187,'course_key_info_1_text','CPD Course'),(231556,41187,'_course_key_info_1_text','field_617ac6c38e5e3'),(231557,41187,'course_key_info','2'),(231558,41187,'_course_key_info','field_617ac6ad8e5e2'),(231559,41187,'course_included','Pre-course recorded classroom for pre & post-learning enhancement \r\n\r\n1-day attendance for 7 hours '),(231560,41187,'_course_included','field_617ac6f08e5e4'),(231561,40781,'_yoast_wpseo_inclusive_language_score','90'),(231598,41188,'hide_hero','0'),(231599,41188,'_hide_hero','field_66a2380fcda39'),(231600,41188,'fft_hide_from_listings','0'),(231601,41188,'_fft_hide_from_listings','field_61f1320446ab2'),(231602,41188,'fft_page_format','default'),(231603,41188,'_fft_page_format','field_61ae213f1f218'),(231604,41188,'fft_hide_nav','0'),(231605,41188,'_fft_hide_nav','field_635bd5e43527c'),(231606,41188,'fft_hide_header_call_to_action','0'),(231607,41188,'_fft_hide_header_call_to_action','field_635bd6723527d'),(231608,41188,'fft_page_sitemap','0'),(231609,41188,'_fft_page_sitemap','field_61af9b34e8181'),(231610,41188,'blocks','a:2:{i:0;s:4:\"form\";i:1;s:13:\"step_timeline\";}'),(231611,41188,'_blocks','field_6176696113096'),(231612,41188,'blocks_0_acfe_flexible_toggle',''),(231613,41188,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(231614,41188,'blocks_0_acfe_flexible_layout_title','Form'),(231615,41188,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(231616,41188,'blocks_0_row_content_format','standard'),(231617,41188,'_blocks_0_row_content_format','field_6481ead962881'),(231618,41188,'blocks_0_row_content_title',''),(231619,41188,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(231620,41188,'blocks_0_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(231621,41188,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(231622,41188,'blocks_0_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(231623,41188,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(231624,41188,'blocks_0_row_content_actions',''),(231625,41188,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(231626,41188,'blocks_0_row_content',''),(231627,41188,'_blocks_0_row_content','field_61a0f5f5b3db0'),(231628,41188,'blocks_0_row_form','40394'),(231629,41188,'_blocks_0_row_form','field_61a4ff2c0b08e'),(231630,41188,'blocks_0_row_form_button_label',''),(231631,41188,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(231632,41188,'_thumbnail_id','41183'),(231633,41188,'__thumbnail_id','field_617570855ddaf'),(231634,41188,'hero_title',''),(231635,41188,'_hero_title','field_617571fe285e8'),(231636,41188,'hero_text',''),(231637,41188,'_hero_text','field_6175723c285e9'),(231638,41188,'hero_actions',''),(231639,41188,'_hero_actions','field_61757270285ea'),(231640,41188,'hero_style','default'),(231641,41188,'_hero_style','field_62051d9dc5324'),(231642,41188,'hero_image_pos_x','right'),(231643,41188,'_hero_image_pos_x','field_62ec3d05390bb'),(231644,41188,'hero_image_pos_y','top'),(231645,41188,'_hero_image_pos_y','field_62ec3d05390bc'),(231646,41188,'hero_image_pos',''),(231647,41188,'_hero_image_pos','field_62ec3d05390ba'),(231648,41188,'blocks_1_acfe_flexible_toggle',''),(231649,41188,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(231650,41188,'blocks_1_acfe_flexible_layout_title','Timeline'),(231651,41188,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(231652,41188,'blocks_1_options_theme','#ffffff'),(231653,41188,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(231654,41188,'blocks_1_options',''),(231655,41188,'_blocks_1_options','field_6177de53d1195'),(231656,41188,'blocks_1_timeline_content_title',''),(231657,41188,'_blocks_1_timeline_content_title','field_6177de53d1198'),(231658,41188,'blocks_1_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(231659,41188,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(231660,41188,'blocks_1_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELC application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date)</li>\r\n 	<li>Proof of your current address (A utility bill is fine)</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELC claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(231661,41188,'_blocks_1_timeline_content_text','field_6177de53d119a'),(231662,41188,'blocks_1_timeline_content_actions',''),(231663,41188,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(231664,41188,'blocks_1_timeline_content',''),(231665,41188,'_blocks_1_timeline_content','field_6177de53d1197'),(231666,41188,'blocks_1_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(231667,41188,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(231668,41188,'blocks_1_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(231669,41188,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(231670,41188,'blocks_1_timeline_items_1_title','Send your fully completed form to ELCAS'),(231671,41188,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(231672,41188,'blocks_1_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(231673,41188,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(231674,41188,'blocks_1_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(231675,41188,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(231676,41188,'blocks_1_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(231677,41188,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(231678,41188,'blocks_1_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(231679,41188,'_blocks_1_timeline_items_3_title','field_6177de53d119f'),(231680,41188,'blocks_1_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(231681,41188,'_blocks_1_timeline_items_3_text','field_6177de53d11a0'),(231682,41188,'blocks_1_timeline_items','4'),(231683,41188,'_blocks_1_timeline_items','field_6177de53d119d'),(231684,41189,'_wp_attached_file','2024/10/BE_Worshop_30thAug-28-scaled.jpg'),(231685,41189,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/10/BE_Worshop_30thAug-28-scaled.jpg\";s:8:\"filesize\";i:524380;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105143;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-28-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158680;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37732;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84665;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-28-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229036;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-28-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:359276;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43806;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127096;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-28-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193511;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37763;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104546;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-28-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157820;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37584;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104950;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-28-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158544;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39182;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109307;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-28-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164725;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34866;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94374;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-28-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141305;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725019815\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-28.jpg\";}'),(231686,41190,'_wp_attached_file','2024/10/BE_Worshop_30thAug-1-scaled.jpg'),(231687,41190,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/10/BE_Worshop_30thAug-1-scaled.jpg\";s:8:\"filesize\";i:417502;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-1-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92555;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-1-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134841;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35659;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75200;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-1-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190538;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-1-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:292574;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41974;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115439;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173049;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35769;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92083;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134391;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37204;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98742;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146329;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37287;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97545;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143873;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33277;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84792;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123287;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725011710\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_30thAug-1.jpg\";}'),(231712,41191,'hide_hero','0'),(231713,41191,'_hide_hero','field_66a2380fcda39'),(231714,41191,'fft_hide_from_listings','0'),(231715,41191,'_fft_hide_from_listings','field_61f1320446ab2'),(231716,41191,'fft_page_format','default'),(231717,41191,'_fft_page_format','field_61ae213f1f218'),(231718,41191,'fft_hide_nav','0'),(231719,41191,'_fft_hide_nav','field_635bd5e43527c'),(231720,41191,'fft_hide_header_call_to_action','0'),(231721,41191,'_fft_hide_header_call_to_action','field_635bd6723527d'),(231722,41191,'fft_page_sitemap','0'),(231723,41191,'_fft_page_sitemap','field_61af9b34e8181'),(231724,41191,'blocks','a:3:{i:0;s:4:\"form\";i:1;s:13:\"step_timeline\";i:2;s:10:\"split_5050\";}'),(231725,41191,'_blocks','field_6176696113096'),(231726,41191,'blocks_0_acfe_flexible_toggle',''),(231727,41191,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(231728,41191,'blocks_0_acfe_flexible_layout_title','Form'),(231729,41191,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(231730,41191,'blocks_0_row_content_format','standard'),(231731,41191,'_blocks_0_row_content_format','field_6481ead962881'),(231732,41191,'blocks_0_row_content_title',''),(231733,41191,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(231734,41191,'blocks_0_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(231735,41191,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(231736,41191,'blocks_0_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(231737,41191,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(231738,41191,'blocks_0_row_content_actions',''),(231739,41191,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(231740,41191,'blocks_0_row_content',''),(231741,41191,'_blocks_0_row_content','field_61a0f5f5b3db0'),(231742,41191,'blocks_0_row_form','40394'),(231743,41191,'_blocks_0_row_form','field_61a4ff2c0b08e'),(231744,41191,'blocks_0_row_form_button_label',''),(231745,41191,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(231746,41191,'_thumbnail_id','41183'),(231747,41191,'__thumbnail_id','field_617570855ddaf'),(231748,41191,'hero_title',''),(231749,41191,'_hero_title','field_617571fe285e8'),(231750,41191,'hero_text',''),(231751,41191,'_hero_text','field_6175723c285e9'),(231752,41191,'hero_actions',''),(231753,41191,'_hero_actions','field_61757270285ea'),(231754,41191,'hero_style','default'),(231755,41191,'_hero_style','field_62051d9dc5324'),(231756,41191,'hero_image_pos_x','right'),(231757,41191,'_hero_image_pos_x','field_62ec3d05390bb'),(231758,41191,'hero_image_pos_y','top'),(231759,41191,'_hero_image_pos_y','field_62ec3d05390bc'),(231760,41191,'hero_image_pos',''),(231761,41191,'_hero_image_pos','field_62ec3d05390ba'),(231762,41191,'blocks_1_acfe_flexible_toggle',''),(231763,41191,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(231764,41191,'blocks_1_acfe_flexible_layout_title','Timeline'),(231765,41191,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(231766,41191,'blocks_1_options_theme','#ffffff'),(231767,41191,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(231768,41191,'blocks_1_options',''),(231769,41191,'_blocks_1_options','field_6177de53d1195'),(231770,41191,'blocks_1_timeline_content_title',''),(231771,41191,'_blocks_1_timeline_content_title','field_6177de53d1198'),(231772,41191,'blocks_1_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(231773,41191,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(231774,41191,'blocks_1_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELC application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date)</li>\r\n 	<li>Proof of your current address (A utility bill is fine)</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELC claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(231775,41191,'_blocks_1_timeline_content_text','field_6177de53d119a'),(231776,41191,'blocks_1_timeline_content_actions',''),(231777,41191,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(231778,41191,'blocks_1_timeline_content',''),(231779,41191,'_blocks_1_timeline_content','field_6177de53d1197'),(231780,41191,'blocks_1_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(231781,41191,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(231782,41191,'blocks_1_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(231783,41191,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(231784,41191,'blocks_1_timeline_items_1_title','Send your fully completed form to ELCAS'),(231785,41191,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(231786,41191,'blocks_1_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(231787,41191,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(231788,41191,'blocks_1_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(231789,41191,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(231790,41191,'blocks_1_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(231791,41191,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(231792,41191,'blocks_1_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(231793,41191,'_blocks_1_timeline_items_3_title','field_6177de53d119f'),(231794,41191,'blocks_1_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(231795,41191,'_blocks_1_timeline_items_3_text','field_6177de53d11a0'),(231796,41191,'blocks_1_timeline_items','4'),(231797,41191,'_blocks_1_timeline_items','field_6177de53d119d'),(231798,41191,'blocks_2_acfe_flexible_toggle',''),(231799,41191,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(231800,41191,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(231801,41191,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(231802,41191,'blocks_2_options_theme','#ffffff'),(231803,41191,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(231804,41191,'blocks_2_options_reverse','0'),(231805,41191,'_blocks_2_options_reverse','field_61768049bb8ac'),(231806,41191,'blocks_2_options',''),(231807,41191,'_blocks_2_options','field_617682517c334'),(231808,41191,'blocks_2_split_5050_image','41190'),(231809,41191,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(231810,41191,'blocks_2_split_5050_video',''),(231811,41191,'_blocks_2_split_5050_video','field_6239f3160848a'),(231812,41191,'blocks_2_split_5050_content_title',''),(231813,41191,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(231814,41191,'blocks_2_split_5050_content_heading','Become a Biomechanisc Coach with ELCAS'),(231815,41191,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(231816,41191,'blocks_2_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(231817,41191,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(231818,41191,'blocks_2_split_5050_content_actions',''),(231819,41191,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(231820,41191,'blocks_2_split_5050_content',''),(231821,41191,'_blocks_2_split_5050_content','field_61767afceb8ba'),(231822,41179,'blocks_0_acfe_flexible_toggle',''),(231823,41179,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(231824,41179,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(231825,41179,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(231826,41179,'blocks_0_options_theme','#ffffff'),(231827,41179,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(231828,41179,'blocks_0_options_reverse','0'),(231829,41179,'_blocks_0_options_reverse','field_61768049bb8ac'),(231830,41179,'blocks_0_options',''),(231831,41179,'_blocks_0_options','field_617682517c334'),(231832,41179,'blocks_0_split_5050_image','41190'),(231833,41179,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(231834,41179,'blocks_0_split_5050_video',''),(231835,41179,'_blocks_0_split_5050_video','field_6239f3160848a'),(231836,41179,'blocks_0_split_5050_content_title',''),(231837,41179,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(231838,41179,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(231839,41179,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(231840,41179,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(231841,41179,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(231842,41179,'blocks_0_split_5050_content_actions',''),(231843,41179,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(231844,41179,'blocks_0_split_5050_content',''),(231845,41179,'_blocks_0_split_5050_content','field_61767afceb8ba'),(231902,41192,'hide_hero','0'),(231903,41192,'_hide_hero','field_66a2380fcda39'),(231904,41192,'fft_hide_from_listings','0'),(231905,41192,'_fft_hide_from_listings','field_61f1320446ab2'),(231906,41192,'fft_page_format','default'),(231907,41192,'_fft_page_format','field_61ae213f1f218'),(231908,41192,'fft_hide_nav','0'),(231909,41192,'_fft_hide_nav','field_635bd5e43527c'),(231910,41192,'fft_hide_header_call_to_action','0'),(231911,41192,'_fft_hide_header_call_to_action','field_635bd6723527d'),(231912,41192,'fft_page_sitemap','0'),(231913,41192,'_fft_page_sitemap','field_61af9b34e8181'),(231914,41192,'blocks','a:3:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:13:\"step_timeline\";}'),(231915,41192,'_blocks','field_6176696113096'),(231916,41192,'_thumbnail_id','41183'),(231917,41192,'__thumbnail_id','field_617570855ddaf'),(231918,41192,'hero_title',''),(231919,41192,'_hero_title','field_617571fe285e8'),(231920,41192,'hero_text',''),(231921,41192,'_hero_text','field_6175723c285e9'),(231922,41192,'hero_actions',''),(231923,41192,'_hero_actions','field_61757270285ea'),(231924,41192,'hero_style','default'),(231925,41192,'_hero_style','field_62051d9dc5324'),(231926,41192,'hero_image_pos_x','right'),(231927,41192,'_hero_image_pos_x','field_62ec3d05390bb'),(231928,41192,'hero_image_pos_y','top'),(231929,41192,'_hero_image_pos_y','field_62ec3d05390bc'),(231930,41192,'hero_image_pos',''),(231931,41192,'_hero_image_pos','field_62ec3d05390ba'),(231932,41192,'blocks_0_acfe_flexible_toggle',''),(231933,41192,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(231934,41192,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(231935,41192,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(231936,41192,'blocks_0_options_theme','#ffffff'),(231937,41192,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(231938,41192,'blocks_0_options_reverse','0'),(231939,41192,'_blocks_0_options_reverse','field_61768049bb8ac'),(231940,41192,'blocks_0_options',''),(231941,41192,'_blocks_0_options','field_617682517c334'),(231942,41192,'blocks_0_split_5050_image','41190'),(231943,41192,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(231944,41192,'blocks_0_split_5050_video',''),(231945,41192,'_blocks_0_split_5050_video','field_6239f3160848a'),(231946,41192,'blocks_0_split_5050_content_title',''),(231947,41192,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(231948,41192,'blocks_0_split_5050_content_heading','Become a Biomechanisc Coach with ELCAS'),(231949,41192,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(231950,41192,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(231951,41192,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(231952,41192,'blocks_0_split_5050_content_actions',''),(231953,41192,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(231954,41192,'blocks_0_split_5050_content',''),(231955,41192,'_blocks_0_split_5050_content','field_61767afceb8ba'),(231956,41192,'blocks_1_acfe_flexible_toggle',''),(231957,41192,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(231958,41192,'blocks_1_acfe_flexible_layout_title','Form'),(231959,41192,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(231960,41192,'blocks_1_row_content_format','standard'),(231961,41192,'_blocks_1_row_content_format','field_6481ead962881'),(231962,41192,'blocks_1_row_content_title',''),(231963,41192,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(231964,41192,'blocks_1_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(231965,41192,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(231966,41192,'blocks_1_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(231967,41192,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(231968,41192,'blocks_1_row_content_actions',''),(231969,41192,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(231970,41192,'blocks_1_row_content',''),(231971,41192,'_blocks_1_row_content','field_61a0f5f5b3db0'),(231972,41192,'blocks_1_row_form','40394'),(231973,41192,'_blocks_1_row_form','field_61a4ff2c0b08e'),(231974,41192,'blocks_1_row_form_button_label',''),(231975,41192,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(231976,41192,'blocks_2_acfe_flexible_toggle',''),(231977,41192,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(231978,41192,'blocks_2_acfe_flexible_layout_title','Timeline'),(231979,41192,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(231980,41192,'blocks_2_options_theme','#ffffff'),(231981,41192,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(231982,41192,'blocks_2_options',''),(231983,41192,'_blocks_2_options','field_6177de53d1195'),(231984,41192,'blocks_2_timeline_content_title',''),(231985,41192,'_blocks_2_timeline_content_title','field_6177de53d1198'),(231986,41192,'blocks_2_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(231987,41192,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(231988,41192,'blocks_2_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELC application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date)</li>\r\n 	<li>Proof of your current address (A utility bill is fine)</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELC claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(231989,41192,'_blocks_2_timeline_content_text','field_6177de53d119a'),(231990,41192,'blocks_2_timeline_content_actions',''),(231991,41192,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(231992,41192,'blocks_2_timeline_content',''),(231993,41192,'_blocks_2_timeline_content','field_6177de53d1197'),(231994,41192,'blocks_2_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(231995,41192,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(231996,41192,'blocks_2_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(231997,41192,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(231998,41192,'blocks_2_timeline_items_1_title','Send your fully completed form to ELCAS'),(231999,41192,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(232000,41192,'blocks_2_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(232001,41192,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(232002,41192,'blocks_2_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(232003,41192,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(232004,41192,'blocks_2_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(232005,41192,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(232006,41192,'blocks_2_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(232007,41192,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(232008,41192,'blocks_2_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(232009,41192,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(232010,41192,'blocks_2_timeline_items','4'),(232011,41192,'_blocks_2_timeline_items','field_6177de53d119d'),(232036,41193,'hide_hero','0'),(232037,41193,'_hide_hero','field_66a2380fcda39'),(232038,41193,'fft_hide_from_listings','0'),(232039,41193,'_fft_hide_from_listings','field_61f1320446ab2'),(232040,41193,'fft_page_format','default'),(232041,41193,'_fft_page_format','field_61ae213f1f218'),(232042,41193,'fft_hide_nav','0'),(232043,41193,'_fft_hide_nav','field_635bd5e43527c'),(232044,41193,'fft_hide_header_call_to_action','0'),(232045,41193,'_fft_hide_header_call_to_action','field_635bd6723527d'),(232046,41193,'fft_page_sitemap','0'),(232047,41193,'_fft_page_sitemap','field_61af9b34e8181'),(232048,41193,'blocks','a:4:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";}'),(232049,41193,'_blocks','field_6176696113096'),(232050,41193,'_thumbnail_id','41183'),(232051,41193,'__thumbnail_id','field_617570855ddaf'),(232052,41193,'hero_title',''),(232053,41193,'_hero_title','field_617571fe285e8'),(232054,41193,'hero_text',''),(232055,41193,'_hero_text','field_6175723c285e9'),(232056,41193,'hero_actions',''),(232057,41193,'_hero_actions','field_61757270285ea'),(232058,41193,'hero_style','default'),(232059,41193,'_hero_style','field_62051d9dc5324'),(232060,41193,'hero_image_pos_x','right'),(232061,41193,'_hero_image_pos_x','field_62ec3d05390bb'),(232062,41193,'hero_image_pos_y','top'),(232063,41193,'_hero_image_pos_y','field_62ec3d05390bc'),(232064,41193,'hero_image_pos',''),(232065,41193,'_hero_image_pos','field_62ec3d05390ba'),(232066,41193,'blocks_0_acfe_flexible_toggle',''),(232067,41193,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(232068,41193,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(232069,41193,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(232070,41193,'blocks_0_options_theme','#ffffff'),(232071,41193,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(232072,41193,'blocks_0_options_reverse','0'),(232073,41193,'_blocks_0_options_reverse','field_61768049bb8ac'),(232074,41193,'blocks_0_options',''),(232075,41193,'_blocks_0_options','field_617682517c334'),(232076,41193,'blocks_0_split_5050_image','41190'),(232077,41193,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(232078,41193,'blocks_0_split_5050_video',''),(232079,41193,'_blocks_0_split_5050_video','field_6239f3160848a'),(232080,41193,'blocks_0_split_5050_content_title',''),(232081,41193,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(232082,41193,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(232083,41193,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(232084,41193,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(232085,41193,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(232086,41193,'blocks_0_split_5050_content_actions',''),(232087,41193,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(232088,41193,'blocks_0_split_5050_content',''),(232089,41193,'_blocks_0_split_5050_content','field_61767afceb8ba'),(232090,41193,'blocks_1_acfe_flexible_toggle',''),(232091,41193,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(232092,41193,'blocks_1_acfe_flexible_layout_title','Form'),(232093,41193,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(232094,41193,'blocks_1_row_content_format','standard'),(232095,41193,'_blocks_1_row_content_format','field_6481ead962881'),(232096,41193,'blocks_1_row_content_title',''),(232097,41193,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(232098,41193,'blocks_1_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(232099,41193,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(232100,41193,'blocks_1_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(232101,41193,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(232102,41193,'blocks_1_row_content_actions',''),(232103,41193,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(232104,41193,'blocks_1_row_content',''),(232105,41193,'_blocks_1_row_content','field_61a0f5f5b3db0'),(232106,41193,'blocks_1_row_form','40394'),(232107,41193,'_blocks_1_row_form','field_61a4ff2c0b08e'),(232108,41193,'blocks_1_row_form_button_label',''),(232109,41193,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(232110,41193,'blocks_2_acfe_flexible_toggle',''),(232111,41193,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(232112,41193,'blocks_2_acfe_flexible_layout_title','Timeline'),(232113,41193,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(232114,41193,'blocks_2_options_theme','#ffffff'),(232115,41193,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(232116,41193,'blocks_2_options',''),(232117,41193,'_blocks_2_options','field_6177de53d1195'),(232118,41193,'blocks_2_timeline_content_title',''),(232119,41193,'_blocks_2_timeline_content_title','field_6177de53d1198'),(232120,41193,'blocks_2_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(232121,41193,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(232122,41193,'blocks_2_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELC application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date)</li>\r\n 	<li>Proof of your current address (A utility bill is fine)</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELC claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(232123,41193,'_blocks_2_timeline_content_text','field_6177de53d119a'),(232124,41193,'blocks_2_timeline_content_actions',''),(232125,41193,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(232126,41193,'blocks_2_timeline_content',''),(232127,41193,'_blocks_2_timeline_content','field_6177de53d1197'),(232128,41193,'blocks_2_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(232129,41193,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(232130,41193,'blocks_2_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(232131,41193,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(232132,41193,'blocks_2_timeline_items_1_title','Send your fully completed form to ELCAS'),(232133,41193,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(232134,41193,'blocks_2_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(232135,41193,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(232136,41193,'blocks_2_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(232137,41193,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(232138,41193,'blocks_2_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(232139,41193,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(232140,41193,'blocks_2_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(232141,41193,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(232142,41193,'blocks_2_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(232143,41193,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(232144,41193,'blocks_2_timeline_items','4'),(232145,41193,'_blocks_2_timeline_items','field_6177de53d119d'),(232146,41193,'blocks_3_acfe_flexible_toggle',''),(232147,41193,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(232148,41193,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(232149,41193,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(232150,41193,'blocks_3_options_theme','#ffffff'),(232151,41193,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(232152,41193,'blocks_3_options_reverse','1'),(232153,41193,'_blocks_3_options_reverse','field_61768049bb8ac'),(232154,41193,'blocks_3_options',''),(232155,41193,'_blocks_3_options','field_617682517c334'),(232156,41193,'blocks_3_split_5050_image','41189'),(232157,41193,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(232158,41193,'blocks_3_split_5050_video',''),(232159,41193,'_blocks_3_split_5050_video','field_6239f3160848a'),(232160,41193,'blocks_3_split_5050_content_title',''),(232161,41193,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(232162,41193,'blocks_3_split_5050_content_heading','Why choose Biomechanics Education'),(232163,41193,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(232164,41193,'blocks_3_split_5050_content_text','<ul>\r\n 	<li>Specialist Training: Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.</li>\r\n 	<li>Career Flexibility: As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.</li>\r\n 	<li>Recognised Qualification: Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.</li>\r\n 	<li>Funding Available: Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.</li>\r\n</ul>\r\nJoin the growing number of armed forces personnel who have successfully transitioned into the biomechanics field and continue to serve others by promoting health, movement, and performance.'),(232165,41193,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(232166,41193,'blocks_3_split_5050_content_actions',''),(232167,41193,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(232168,41193,'blocks_3_split_5050_content',''),(232169,41193,'_blocks_3_split_5050_content','field_61767afceb8ba'),(232202,41194,'hide_hero','0'),(232203,41194,'_hide_hero','field_66a2380fcda39'),(232204,41194,'fft_hide_from_listings','0'),(232205,41194,'_fft_hide_from_listings','field_61f1320446ab2'),(232206,41194,'fft_page_format','default'),(232207,41194,'_fft_page_format','field_61ae213f1f218'),(232208,41194,'fft_hide_nav','0'),(232209,41194,'_fft_hide_nav','field_635bd5e43527c'),(232210,41194,'fft_hide_header_call_to_action','0'),(232211,41194,'_fft_hide_header_call_to_action','field_635bd6723527d'),(232212,41194,'fft_page_sitemap','0'),(232213,41194,'_fft_page_sitemap','field_61af9b34e8181'),(232214,41194,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:10:\"accordions\";}'),(232215,41194,'_blocks','field_6176696113096'),(232216,41194,'_thumbnail_id','41183'),(232217,41194,'__thumbnail_id','field_617570855ddaf'),(232218,41194,'hero_title',''),(232219,41194,'_hero_title','field_617571fe285e8'),(232220,41194,'hero_text',''),(232221,41194,'_hero_text','field_6175723c285e9'),(232222,41194,'hero_actions',''),(232223,41194,'_hero_actions','field_61757270285ea'),(232224,41194,'hero_style','default'),(232225,41194,'_hero_style','field_62051d9dc5324'),(232226,41194,'hero_image_pos_x','right'),(232227,41194,'_hero_image_pos_x','field_62ec3d05390bb'),(232228,41194,'hero_image_pos_y','top'),(232229,41194,'_hero_image_pos_y','field_62ec3d05390bc'),(232230,41194,'hero_image_pos',''),(232231,41194,'_hero_image_pos','field_62ec3d05390ba'),(232232,41194,'blocks_0_acfe_flexible_toggle',''),(232233,41194,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(232234,41194,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(232235,41194,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(232236,41194,'blocks_0_options_theme','#ffffff'),(232237,41194,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(232238,41194,'blocks_0_options_reverse','0'),(232239,41194,'_blocks_0_options_reverse','field_61768049bb8ac'),(232240,41194,'blocks_0_options',''),(232241,41194,'_blocks_0_options','field_617682517c334'),(232242,41194,'blocks_0_split_5050_image','41190'),(232243,41194,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(232244,41194,'blocks_0_split_5050_video',''),(232245,41194,'_blocks_0_split_5050_video','field_6239f3160848a'),(232246,41194,'blocks_0_split_5050_content_title',''),(232247,41194,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(232248,41194,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(232249,41194,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(232250,41194,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(232251,41194,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(232252,41194,'blocks_0_split_5050_content_actions',''),(232253,41194,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(232254,41194,'blocks_0_split_5050_content',''),(232255,41194,'_blocks_0_split_5050_content','field_61767afceb8ba'),(232256,41194,'blocks_1_acfe_flexible_toggle',''),(232257,41194,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(232258,41194,'blocks_1_acfe_flexible_layout_title','Form'),(232259,41194,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(232260,41194,'blocks_1_row_content_format','standard'),(232261,41194,'_blocks_1_row_content_format','field_6481ead962881'),(232262,41194,'blocks_1_row_content_title',''),(232263,41194,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(232264,41194,'blocks_1_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(232265,41194,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(232266,41194,'blocks_1_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(232267,41194,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(232268,41194,'blocks_1_row_content_actions',''),(232269,41194,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(232270,41194,'blocks_1_row_content',''),(232271,41194,'_blocks_1_row_content','field_61a0f5f5b3db0'),(232272,41194,'blocks_1_row_form','40394'),(232273,41194,'_blocks_1_row_form','field_61a4ff2c0b08e'),(232274,41194,'blocks_1_row_form_button_label',''),(232275,41194,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(232276,41194,'blocks_2_acfe_flexible_toggle',''),(232277,41194,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(232278,41194,'blocks_2_acfe_flexible_layout_title','Timeline'),(232279,41194,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(232280,41194,'blocks_2_options_theme','#ffffff'),(232281,41194,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(232282,41194,'blocks_2_options',''),(232283,41194,'_blocks_2_options','field_6177de53d1195'),(232284,41194,'blocks_2_timeline_content_title',''),(232285,41194,'_blocks_2_timeline_content_title','field_6177de53d1198'),(232286,41194,'blocks_2_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(232287,41194,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(232288,41194,'blocks_2_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELC application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date)</li>\r\n 	<li>Proof of your current address (A utility bill is fine)</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELC claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(232289,41194,'_blocks_2_timeline_content_text','field_6177de53d119a'),(232290,41194,'blocks_2_timeline_content_actions',''),(232291,41194,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(232292,41194,'blocks_2_timeline_content',''),(232293,41194,'_blocks_2_timeline_content','field_6177de53d1197'),(232294,41194,'blocks_2_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(232295,41194,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(232296,41194,'blocks_2_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(232297,41194,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(232298,41194,'blocks_2_timeline_items_1_title','Send your fully completed form to ELCAS'),(232299,41194,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(232300,41194,'blocks_2_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(232301,41194,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(232302,41194,'blocks_2_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(232303,41194,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(232304,41194,'blocks_2_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(232305,41194,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(232306,41194,'blocks_2_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(232307,41194,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(232308,41194,'blocks_2_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(232309,41194,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(232310,41194,'blocks_2_timeline_items','4'),(232311,41194,'_blocks_2_timeline_items','field_6177de53d119d'),(232312,41194,'blocks_3_acfe_flexible_toggle',''),(232313,41194,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(232314,41194,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(232315,41194,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(232316,41194,'blocks_3_options_theme','#ffffff'),(232317,41194,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(232318,41194,'blocks_3_options_reverse','1'),(232319,41194,'_blocks_3_options_reverse','field_61768049bb8ac'),(232320,41194,'blocks_3_options',''),(232321,41194,'_blocks_3_options','field_617682517c334'),(232322,41194,'blocks_3_split_5050_image','41189'),(232323,41194,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(232324,41194,'blocks_3_split_5050_video',''),(232325,41194,'_blocks_3_split_5050_video','field_6239f3160848a'),(232326,41194,'blocks_3_split_5050_content_title',''),(232327,41194,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(232328,41194,'blocks_3_split_5050_content_heading','Why choose Biomechanics Education'),(232329,41194,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(232330,41194,'blocks_3_split_5050_content_text','<ul>\r\n 	<li>Specialist Training: Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.</li>\r\n 	<li>Career Flexibility: As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.</li>\r\n 	<li>Recognised Qualification: Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.</li>\r\n 	<li>Funding Available: Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.</li>\r\n</ul>\r\nJoin the growing number of armed forces personnel who have successfully transitioned into the biomechanics field and continue to serve others by promoting health, movement, and performance.'),(232331,41194,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(232332,41194,'blocks_3_split_5050_content_actions',''),(232333,41194,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(232334,41194,'blocks_3_split_5050_content',''),(232335,41194,'_blocks_3_split_5050_content','field_61767afceb8ba'),(232336,41194,'blocks_4_acfe_flexible_toggle',''),(232337,41194,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(232338,41194,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(232339,41194,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(232340,41194,'blocks_4_options_theme','#ffffff'),(232341,41194,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(232342,41194,'blocks_4_options_state','0'),(232343,41194,'_blocks_4_options_state','field_6239fcb7508c5'),(232344,41194,'blocks_4_options',''),(232345,41194,'_blocks_4_options','field_6177e2991ac44'),(232346,41194,'blocks_4_content_title',''),(232347,41194,'_blocks_4_content_title','field_64d237e8bb1e2'),(232348,41194,'blocks_4_content_heading','FAQ\'s'),(232349,41194,'_blocks_4_content_heading','field_64d237e8bb1e3'),(232350,41194,'blocks_4_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(232351,41194,'_blocks_4_content_text','field_64d237e8bb1e4'),(232352,41194,'blocks_4_content_actions',''),(232353,41194,'_blocks_4_content_actions','field_64d237e8bb1e5'),(232354,41194,'blocks_4_content_align','left'),(232355,41194,'_blocks_4_content_align','field_64d2443e6b6aa'),(232356,41194,'blocks_4_content',''),(232357,41194,'_blocks_4_content','field_64d237e8bb1e1'),(232358,41194,'blocks_4_accordion_content','custom'),(232359,41194,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(232360,41194,'blocks_4_accordion_items_0_title','What is ELCAS?'),(232361,41194,'_blocks_4_accordion_items_0_title','field_6177e2991ac4d'),(232362,41194,'blocks_4_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(232363,41194,'_blocks_4_accordion_items_0_text','field_6177e2991ac4e'),(232364,41194,'blocks_4_accordion_items','1'),(232365,41194,'_blocks_4_accordion_items','field_6177e2991ac4c'),(232366,41194,'blocks_4_actions',''),(232367,41194,'_blocks_4_actions','field_61a746a817f7a'),(232384,41195,'hide_hero','0'),(232385,41195,'_hide_hero','field_66a2380fcda39'),(232386,41195,'fft_hide_from_listings','0'),(232387,41195,'_fft_hide_from_listings','field_61f1320446ab2'),(232388,41195,'fft_page_format','default'),(232389,41195,'_fft_page_format','field_61ae213f1f218'),(232390,41195,'fft_hide_nav','0'),(232391,41195,'_fft_hide_nav','field_635bd5e43527c'),(232392,41195,'fft_hide_header_call_to_action','0'),(232393,41195,'_fft_hide_header_call_to_action','field_635bd6723527d'),(232394,41195,'fft_page_sitemap','0'),(232395,41195,'_fft_page_sitemap','field_61af9b34e8181'),(232396,41195,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:10:\"accordions\";}'),(232397,41195,'_blocks','field_6176696113096'),(232398,41195,'_thumbnail_id','41183'),(232399,41195,'__thumbnail_id','field_617570855ddaf'),(232400,41195,'hero_title',''),(232401,41195,'_hero_title','field_617571fe285e8'),(232402,41195,'hero_text',''),(232403,41195,'_hero_text','field_6175723c285e9'),(232404,41195,'hero_actions',''),(232405,41195,'_hero_actions','field_61757270285ea'),(232406,41195,'hero_style','default'),(232407,41195,'_hero_style','field_62051d9dc5324'),(232408,41195,'hero_image_pos_x','right'),(232409,41195,'_hero_image_pos_x','field_62ec3d05390bb'),(232410,41195,'hero_image_pos_y','top'),(232411,41195,'_hero_image_pos_y','field_62ec3d05390bc'),(232412,41195,'hero_image_pos',''),(232413,41195,'_hero_image_pos','field_62ec3d05390ba'),(232414,41195,'blocks_0_acfe_flexible_toggle',''),(232415,41195,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(232416,41195,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(232417,41195,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(232418,41195,'blocks_0_options_theme','#ffffff'),(232419,41195,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(232420,41195,'blocks_0_options_reverse','0'),(232421,41195,'_blocks_0_options_reverse','field_61768049bb8ac'),(232422,41195,'blocks_0_options',''),(232423,41195,'_blocks_0_options','field_617682517c334'),(232424,41195,'blocks_0_split_5050_image','41190'),(232425,41195,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(232426,41195,'blocks_0_split_5050_video',''),(232427,41195,'_blocks_0_split_5050_video','field_6239f3160848a'),(232428,41195,'blocks_0_split_5050_content_title',''),(232429,41195,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(232430,41195,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(232431,41195,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(232432,41195,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(232433,41195,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(232434,41195,'blocks_0_split_5050_content_actions',''),(232435,41195,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(232436,41195,'blocks_0_split_5050_content',''),(232437,41195,'_blocks_0_split_5050_content','field_61767afceb8ba'),(232438,41195,'blocks_1_acfe_flexible_toggle',''),(232439,41195,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(232440,41195,'blocks_1_acfe_flexible_layout_title','Form'),(232441,41195,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(232442,41195,'blocks_1_row_content_format','standard'),(232443,41195,'_blocks_1_row_content_format','field_6481ead962881'),(232444,41195,'blocks_1_row_content_title',''),(232445,41195,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(232446,41195,'blocks_1_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(232447,41195,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(232448,41195,'blocks_1_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(232449,41195,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(232450,41195,'blocks_1_row_content_actions',''),(232451,41195,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(232452,41195,'blocks_1_row_content',''),(232453,41195,'_blocks_1_row_content','field_61a0f5f5b3db0'),(232454,41195,'blocks_1_row_form','40394'),(232455,41195,'_blocks_1_row_form','field_61a4ff2c0b08e'),(232456,41195,'blocks_1_row_form_button_label',''),(232457,41195,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(232458,41195,'blocks_2_acfe_flexible_toggle',''),(232459,41195,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(232460,41195,'blocks_2_acfe_flexible_layout_title','Timeline'),(232461,41195,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(232462,41195,'blocks_2_options_theme','#ffffff'),(232463,41195,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(232464,41195,'blocks_2_options',''),(232465,41195,'_blocks_2_options','field_6177de53d1195'),(232466,41195,'blocks_2_timeline_content_title',''),(232467,41195,'_blocks_2_timeline_content_title','field_6177de53d1198'),(232468,41195,'blocks_2_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(232469,41195,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(232470,41195,'blocks_2_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELC application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date)</li>\r\n 	<li>Proof of your current address (A utility bill is fine)</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELC claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(232471,41195,'_blocks_2_timeline_content_text','field_6177de53d119a'),(232472,41195,'blocks_2_timeline_content_actions',''),(232473,41195,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(232474,41195,'blocks_2_timeline_content',''),(232475,41195,'_blocks_2_timeline_content','field_6177de53d1197'),(232476,41195,'blocks_2_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(232477,41195,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(232478,41195,'blocks_2_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(232479,41195,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(232480,41195,'blocks_2_timeline_items_1_title','Send your fully completed form to ELCAS'),(232481,41195,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(232482,41195,'blocks_2_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(232483,41195,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(232484,41195,'blocks_2_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(232485,41195,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(232486,41195,'blocks_2_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(232487,41195,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(232488,41195,'blocks_2_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(232489,41195,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(232490,41195,'blocks_2_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(232491,41195,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(232492,41195,'blocks_2_timeline_items','4'),(232493,41195,'_blocks_2_timeline_items','field_6177de53d119d'),(232494,41195,'blocks_3_acfe_flexible_toggle',''),(232495,41195,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(232496,41195,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(232497,41195,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(232498,41195,'blocks_3_options_theme','#ffffff'),(232499,41195,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(232500,41195,'blocks_3_options_reverse','1'),(232501,41195,'_blocks_3_options_reverse','field_61768049bb8ac'),(232502,41195,'blocks_3_options',''),(232503,41195,'_blocks_3_options','field_617682517c334'),(232504,41195,'blocks_3_split_5050_image','41189'),(232505,41195,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(232506,41195,'blocks_3_split_5050_video',''),(232507,41195,'_blocks_3_split_5050_video','field_6239f3160848a'),(232508,41195,'blocks_3_split_5050_content_title',''),(232509,41195,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(232510,41195,'blocks_3_split_5050_content_heading','Why choose Biomechanics Education'),(232511,41195,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(232512,41195,'blocks_3_split_5050_content_text','<ul>\r\n 	<li>Specialist Training: Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.</li>\r\n 	<li>Career Flexibility: As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.</li>\r\n 	<li>Recognised Qualification: Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.</li>\r\n 	<li>Funding Available: Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.</li>\r\n</ul>\r\nJoin the growing number of armed forces personnel who have successfully transitioned into the biomechanics field and continue to serve others by promoting health, movement, and performance.'),(232513,41195,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(232514,41195,'blocks_3_split_5050_content_actions',''),(232515,41195,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(232516,41195,'blocks_3_split_5050_content',''),(232517,41195,'_blocks_3_split_5050_content','field_61767afceb8ba'),(232518,41195,'blocks_4_acfe_flexible_toggle',''),(232519,41195,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(232520,41195,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(232521,41195,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(232522,41195,'blocks_4_options_theme','#ffffff'),(232523,41195,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(232524,41195,'blocks_4_options_state','0'),(232525,41195,'_blocks_4_options_state','field_6239fcb7508c5'),(232526,41195,'blocks_4_options',''),(232527,41195,'_blocks_4_options','field_6177e2991ac44'),(232528,41195,'blocks_4_content_title',''),(232529,41195,'_blocks_4_content_title','field_64d237e8bb1e2'),(232530,41195,'blocks_4_content_heading','FAQ\'s'),(232531,41195,'_blocks_4_content_heading','field_64d237e8bb1e3'),(232532,41195,'blocks_4_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(232533,41195,'_blocks_4_content_text','field_64d237e8bb1e4'),(232534,41195,'blocks_4_content_actions',''),(232535,41195,'_blocks_4_content_actions','field_64d237e8bb1e5'),(232536,41195,'blocks_4_content_align','left'),(232537,41195,'_blocks_4_content_align','field_64d2443e6b6aa'),(232538,41195,'blocks_4_content',''),(232539,41195,'_blocks_4_content','field_64d237e8bb1e1'),(232540,41195,'blocks_4_accordion_content','custom'),(232541,41195,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(232542,41195,'blocks_4_accordion_items_0_title','What is ELCAS?'),(232543,41195,'_blocks_4_accordion_items_0_title','field_6177e2991ac4d'),(232544,41195,'blocks_4_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(232545,41195,'_blocks_4_accordion_items_0_text','field_6177e2991ac4e'),(232546,41195,'blocks_4_accordion_items','5'),(232547,41195,'_blocks_4_accordion_items','field_6177e2991ac4c'),(232548,41195,'blocks_4_actions',''),(232549,41195,'_blocks_4_actions','field_61a746a817f7a'),(232550,41195,'blocks_4_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(232551,41195,'_blocks_4_accordion_items_1_title','field_6177e2991ac4d'),(232552,41195,'blocks_4_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(232553,41195,'_blocks_4_accordion_items_1_text','field_6177e2991ac4e'),(232554,41195,'blocks_4_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(232555,41195,'_blocks_4_accordion_items_2_title','field_6177e2991ac4d'),(232556,41195,'blocks_4_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(232557,41195,'_blocks_4_accordion_items_2_text','field_6177e2991ac4e'),(232558,41195,'blocks_4_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(232559,41195,'_blocks_4_accordion_items_3_title','field_6177e2991ac4d'),(232560,41195,'blocks_4_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(232561,41195,'_blocks_4_accordion_items_3_text','field_6177e2991ac4e'),(232562,41195,'blocks_4_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(232563,41195,'_blocks_4_accordion_items_4_title','field_6177e2991ac4d'),(232564,41195,'blocks_4_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(232565,41195,'_blocks_4_accordion_items_4_text','field_6177e2991ac4e'),(232566,41196,'hide_hero','0'),(232567,41196,'_hide_hero','field_66a2380fcda39'),(232568,41196,'fft_hide_from_listings','0'),(232569,41196,'_fft_hide_from_listings','field_61f1320446ab2'),(232570,41196,'fft_page_format','default'),(232571,41196,'_fft_page_format','field_61ae213f1f218'),(232572,41196,'fft_hide_nav','0'),(232573,41196,'_fft_hide_nav','field_635bd5e43527c'),(232574,41196,'fft_hide_header_call_to_action','0'),(232575,41196,'_fft_hide_header_call_to_action','field_635bd6723527d'),(232576,41196,'fft_page_sitemap','0'),(232577,41196,'_fft_page_sitemap','field_61af9b34e8181'),(232578,41196,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:10:\"accordions\";}'),(232579,41196,'_blocks','field_6176696113096'),(232580,41196,'_thumbnail_id','41183'),(232581,41196,'__thumbnail_id','field_617570855ddaf'),(232582,41196,'hero_title',''),(232583,41196,'_hero_title','field_617571fe285e8'),(232584,41196,'hero_text',''),(232585,41196,'_hero_text','field_6175723c285e9'),(232586,41196,'hero_actions',''),(232587,41196,'_hero_actions','field_61757270285ea'),(232588,41196,'hero_style','default'),(232589,41196,'_hero_style','field_62051d9dc5324'),(232590,41196,'hero_image_pos_x','right'),(232591,41196,'_hero_image_pos_x','field_62ec3d05390bb'),(232592,41196,'hero_image_pos_y','top'),(232593,41196,'_hero_image_pos_y','field_62ec3d05390bc'),(232594,41196,'hero_image_pos',''),(232595,41196,'_hero_image_pos','field_62ec3d05390ba'),(232596,41196,'blocks_0_acfe_flexible_toggle',''),(232597,41196,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(232598,41196,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(232599,41196,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(232600,41196,'blocks_0_options_theme','#ffffff'),(232601,41196,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(232602,41196,'blocks_0_options_reverse','0'),(232603,41196,'_blocks_0_options_reverse','field_61768049bb8ac'),(232604,41196,'blocks_0_options',''),(232605,41196,'_blocks_0_options','field_617682517c334'),(232606,41196,'blocks_0_split_5050_image','41190'),(232607,41196,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(232608,41196,'blocks_0_split_5050_video',''),(232609,41196,'_blocks_0_split_5050_video','field_6239f3160848a'),(232610,41196,'blocks_0_split_5050_content_title',''),(232611,41196,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(232612,41196,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(232613,41196,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(232614,41196,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(232615,41196,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(232616,41196,'blocks_0_split_5050_content_actions',''),(232617,41196,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(232618,41196,'blocks_0_split_5050_content',''),(232619,41196,'_blocks_0_split_5050_content','field_61767afceb8ba'),(232620,41196,'blocks_1_acfe_flexible_toggle',''),(232621,41196,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(232622,41196,'blocks_1_acfe_flexible_layout_title','Form'),(232623,41196,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(232624,41196,'blocks_1_row_content_format','standard'),(232625,41196,'_blocks_1_row_content_format','field_6481ead962881'),(232626,41196,'blocks_1_row_content_title',''),(232627,41196,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(232628,41196,'blocks_1_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(232629,41196,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(232630,41196,'blocks_1_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(232631,41196,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(232632,41196,'blocks_1_row_content_actions',''),(232633,41196,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(232634,41196,'blocks_1_row_content',''),(232635,41196,'_blocks_1_row_content','field_61a0f5f5b3db0'),(232636,41196,'blocks_1_row_form','40394'),(232637,41196,'_blocks_1_row_form','field_61a4ff2c0b08e'),(232638,41196,'blocks_1_row_form_button_label',''),(232639,41196,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(232640,41196,'blocks_2_acfe_flexible_toggle',''),(232641,41196,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(232642,41196,'blocks_2_acfe_flexible_layout_title','Timeline'),(232643,41196,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(232644,41196,'blocks_2_options_theme','#ffffff'),(232645,41196,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(232646,41196,'blocks_2_options',''),(232647,41196,'_blocks_2_options','field_6177de53d1195'),(232648,41196,'blocks_2_timeline_content_title',''),(232649,41196,'_blocks_2_timeline_content_title','field_6177de53d1198'),(232650,41196,'blocks_2_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(232651,41196,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(232652,41196,'blocks_2_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELC application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date)</li>\r\n 	<li>Proof of your current address (A utility bill is fine)</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELC claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(232653,41196,'_blocks_2_timeline_content_text','field_6177de53d119a'),(232654,41196,'blocks_2_timeline_content_actions',''),(232655,41196,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(232656,41196,'blocks_2_timeline_content',''),(232657,41196,'_blocks_2_timeline_content','field_6177de53d1197'),(232658,41196,'blocks_2_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(232659,41196,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(232660,41196,'blocks_2_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(232661,41196,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(232662,41196,'blocks_2_timeline_items_1_title','Send your fully completed form to ELCAS'),(232663,41196,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(232664,41196,'blocks_2_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(232665,41196,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(232666,41196,'blocks_2_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(232667,41196,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(232668,41196,'blocks_2_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(232669,41196,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(232670,41196,'blocks_2_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(232671,41196,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(232672,41196,'blocks_2_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(232673,41196,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(232674,41196,'blocks_2_timeline_items','4'),(232675,41196,'_blocks_2_timeline_items','field_6177de53d119d'),(232676,41196,'blocks_3_acfe_flexible_toggle',''),(232677,41196,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(232678,41196,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(232679,41196,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(232680,41196,'blocks_3_options_theme','#ffffff'),(232681,41196,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(232682,41196,'blocks_3_options_reverse','1'),(232683,41196,'_blocks_3_options_reverse','field_61768049bb8ac'),(232684,41196,'blocks_3_options',''),(232685,41196,'_blocks_3_options','field_617682517c334'),(232686,41196,'blocks_3_split_5050_image','41189'),(232687,41196,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(232688,41196,'blocks_3_split_5050_video',''),(232689,41196,'_blocks_3_split_5050_video','field_6239f3160848a'),(232690,41196,'blocks_3_split_5050_content_title',''),(232691,41196,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(232692,41196,'blocks_3_split_5050_content_heading','Why choose Biomechanics Education'),(232693,41196,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(232694,41196,'blocks_3_split_5050_content_text','<ul>\r\n 	<li>Specialist Training: Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.</li>\r\n 	<li>Career Flexibility: As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.</li>\r\n 	<li>Recognised Qualification: Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.</li>\r\n 	<li>Funding Available: Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.</li>\r\n</ul>\r\nJoin the growing number of armed forces personnel who have successfully transitioned into the biomechanics field and continue to serve others by promoting health, movement, and performance.'),(232695,41196,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(232696,41196,'blocks_3_split_5050_content_actions',''),(232697,41196,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(232698,41196,'blocks_3_split_5050_content',''),(232699,41196,'_blocks_3_split_5050_content','field_61767afceb8ba'),(232700,41196,'blocks_4_acfe_flexible_toggle',''),(232701,41196,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(232702,41196,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(232703,41196,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(232704,41196,'blocks_4_options_theme','#ffffff'),(232705,41196,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(232706,41196,'blocks_4_options_state','0'),(232707,41196,'_blocks_4_options_state','field_6239fcb7508c5'),(232708,41196,'blocks_4_options',''),(232709,41196,'_blocks_4_options','field_6177e2991ac44'),(232710,41196,'blocks_4_content_title',''),(232711,41196,'_blocks_4_content_title','field_64d237e8bb1e2'),(232712,41196,'blocks_4_content_heading','FAQ\'s'),(232713,41196,'_blocks_4_content_heading','field_64d237e8bb1e3'),(232714,41196,'blocks_4_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(232715,41196,'_blocks_4_content_text','field_64d237e8bb1e4'),(232716,41196,'blocks_4_content_actions',''),(232717,41196,'_blocks_4_content_actions','field_64d237e8bb1e5'),(232718,41196,'blocks_4_content_align','left'),(232719,41196,'_blocks_4_content_align','field_64d2443e6b6aa'),(232720,41196,'blocks_4_content',''),(232721,41196,'_blocks_4_content','field_64d237e8bb1e1'),(232722,41196,'blocks_4_accordion_content','custom'),(232723,41196,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(232724,41196,'blocks_4_accordion_items_0_title','What is ELCAS?'),(232725,41196,'_blocks_4_accordion_items_0_title','field_6177e2991ac4d'),(232726,41196,'blocks_4_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(232727,41196,'_blocks_4_accordion_items_0_text','field_6177e2991ac4e'),(232728,41196,'blocks_4_accordion_items','5'),(232729,41196,'_blocks_4_accordion_items','field_6177e2991ac4c'),(232730,41196,'blocks_4_actions',''),(232731,41196,'_blocks_4_actions','field_61a746a817f7a'),(232732,41196,'blocks_4_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(232733,41196,'_blocks_4_accordion_items_1_title','field_6177e2991ac4d'),(232734,41196,'blocks_4_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(232735,41196,'_blocks_4_accordion_items_1_text','field_6177e2991ac4e'),(232736,41196,'blocks_4_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(232737,41196,'_blocks_4_accordion_items_2_title','field_6177e2991ac4d'),(232738,41196,'blocks_4_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(232739,41196,'_blocks_4_accordion_items_2_text','field_6177e2991ac4e'),(232740,41196,'blocks_4_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(232741,41196,'_blocks_4_accordion_items_3_title','field_6177e2991ac4d'),(232742,41196,'blocks_4_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(232743,41196,'_blocks_4_accordion_items_3_text','field_6177e2991ac4e'),(232744,41196,'blocks_4_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(232745,41196,'_blocks_4_accordion_items_4_title','field_6177e2991ac4d'),(232746,41196,'blocks_4_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(232747,41196,'_blocks_4_accordion_items_4_text','field_6177e2991ac4e'),(232780,41201,'_edit_lock','1739291334:17'),(232781,41201,'_edit_last','17'),(232782,41201,'venue_region','430'),(232783,41201,'_venue_region','field_62ea283e4cc28'),(232784,41201,'venue_address_company_address_1',''),(232785,41201,'_venue_address_company_address_1','field_62e24deabfef9'),(232786,41201,'venue_address_company_address_2',''),(232787,41201,'_venue_address_company_address_2','field_62e24deabfefa'),(232788,41201,'venue_address_company_address_street',''),(232789,41201,'_venue_address_company_address_street','field_62e24deabfefb'),(232790,41201,'venue_address_company_address_locality','Netherseal'),(232791,41201,'_venue_address_company_address_locality','field_62e24deabfefc'),(232792,41201,'venue_address_company_address_region','Derbyshire'),(232793,41201,'_venue_address_company_address_region','field_62e24deabfefd'),(232794,41201,'venue_address_company_address_postcode',''),(232795,41201,'_venue_address_company_address_postcode','field_62e24deabfefe'),(232796,41201,'venue_address',''),(232797,41201,'_venue_address','field_62e24de9bfef8'),(232798,41201,'venue_location','a:10:{s:7:\"address\";s:27:\"Netherseal, Swadlincote, UK\";s:3:\"lat\";d:52.7151596;s:3:\"lng\";d:-1.577998;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJ9dEjVCAAekgR2s-p5ukSqNo\";s:4:\"name\";s:10:\"Netherseal\";s:4:\"city\";s:11:\"Swadlincote\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(232799,41201,'_venue_location','field_62e24e36a82f4'),(232800,41201,'venue_tel','07539726674'),(232801,41201,'_venue_tel','field_62e26ee1005e5'),(232802,41201,'venue_is_popup','0'),(232803,41201,'_venue_is_popup','field_63c66ffc50d7e'),(232804,41219,'hide_hero','0'),(232805,41219,'_hide_hero','field_66a2380fcda39'),(232806,41219,'fft_hide_from_listings','0'),(232807,41219,'_fft_hide_from_listings','field_61f1320446ab2'),(232808,41219,'fft_page_format','default'),(232809,41219,'_fft_page_format','field_61ae213f1f218'),(232810,41219,'fft_hide_nav','0'),(232811,41219,'_fft_hide_nav','field_635bd5e43527c'),(232812,41219,'fft_hide_header_call_to_action','0'),(232813,41219,'_fft_hide_header_call_to_action','field_635bd6723527d'),(232814,41219,'fft_page_sitemap','0'),(232815,41219,'_fft_page_sitemap','field_61af9b34e8181'),(232816,41219,'blocks','a:5:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:10:\"accordions\";}'),(232817,41219,'_blocks','field_6176696113096'),(232818,41219,'_thumbnail_id','41183'),(232819,41219,'__thumbnail_id','field_617570855ddaf'),(232820,41219,'hero_title',''),(232821,41219,'_hero_title','field_617571fe285e8'),(232822,41219,'hero_text',''),(232823,41219,'_hero_text','field_6175723c285e9'),(232824,41219,'hero_actions',''),(232825,41219,'_hero_actions','field_61757270285ea'),(232826,41219,'hero_style','default'),(232827,41219,'_hero_style','field_62051d9dc5324'),(232828,41219,'hero_image_pos_x','right'),(232829,41219,'_hero_image_pos_x','field_62ec3d05390bb'),(232830,41219,'hero_image_pos_y','top'),(232831,41219,'_hero_image_pos_y','field_62ec3d05390bc'),(232832,41219,'hero_image_pos',''),(232833,41219,'_hero_image_pos','field_62ec3d05390ba'),(232834,41219,'blocks_0_acfe_flexible_toggle',''),(232835,41219,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(232836,41219,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(232837,41219,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(232838,41219,'blocks_0_options_theme','#ffffff'),(232839,41219,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(232840,41219,'blocks_0_options_reverse','0'),(232841,41219,'_blocks_0_options_reverse','field_61768049bb8ac'),(232842,41219,'blocks_0_options',''),(232843,41219,'_blocks_0_options','field_617682517c334'),(232844,41219,'blocks_0_split_5050_image','41190'),(232845,41219,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(232846,41219,'blocks_0_split_5050_video',''),(232847,41219,'_blocks_0_split_5050_video','field_6239f3160848a'),(232848,41219,'blocks_0_split_5050_content_title',''),(232849,41219,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(232850,41219,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(232851,41219,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(232852,41219,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(232853,41219,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(232854,41219,'blocks_0_split_5050_content_actions',''),(232855,41219,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(232856,41219,'blocks_0_split_5050_content',''),(232857,41219,'_blocks_0_split_5050_content','field_61767afceb8ba'),(232858,41219,'blocks_1_acfe_flexible_toggle',''),(232859,41219,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(232860,41219,'blocks_1_acfe_flexible_layout_title','Form'),(232861,41219,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(232862,41219,'blocks_1_row_content_format','standard'),(232863,41219,'_blocks_1_row_content_format','field_6481ead962881'),(232864,41219,'blocks_1_row_content_title',''),(232865,41219,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(232866,41219,'blocks_1_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(232867,41219,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(232868,41219,'blocks_1_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(232869,41219,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(232870,41219,'blocks_1_row_content_actions',''),(232871,41219,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(232872,41219,'blocks_1_row_content',''),(232873,41219,'_blocks_1_row_content','field_61a0f5f5b3db0'),(232874,41219,'blocks_1_row_form','40394'),(232875,41219,'_blocks_1_row_form','field_61a4ff2c0b08e'),(232876,41219,'blocks_1_row_form_button_label',''),(232877,41219,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(232878,41219,'blocks_2_acfe_flexible_toggle',''),(232879,41219,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(232880,41219,'blocks_2_acfe_flexible_layout_title','Timeline'),(232881,41219,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(232882,41219,'blocks_2_options_theme','#ffffff'),(232883,41219,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(232884,41219,'blocks_2_options',''),(232885,41219,'_blocks_2_options','field_6177de53d1195'),(232886,41219,'blocks_2_timeline_content_title',''),(232887,41219,'_blocks_2_timeline_content_title','field_6177de53d1198'),(232888,41219,'blocks_2_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(232889,41219,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(232890,41219,'blocks_2_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(232891,41219,'_blocks_2_timeline_content_text','field_6177de53d119a'),(232892,41219,'blocks_2_timeline_content_actions',''),(232893,41219,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(232894,41219,'blocks_2_timeline_content',''),(232895,41219,'_blocks_2_timeline_content','field_6177de53d1197'),(232896,41219,'blocks_2_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(232897,41219,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(232898,41219,'blocks_2_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(232899,41219,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(232900,41219,'blocks_2_timeline_items_1_title','Send your fully completed form to ELCAS'),(232901,41219,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(232902,41219,'blocks_2_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(232903,41219,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(232904,41219,'blocks_2_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(232905,41219,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(232906,41219,'blocks_2_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(232907,41219,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(232908,41219,'blocks_2_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(232909,41219,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(232910,41219,'blocks_2_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(232911,41219,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(232912,41219,'blocks_2_timeline_items','4'),(232913,41219,'_blocks_2_timeline_items','field_6177de53d119d'),(232914,41219,'blocks_3_acfe_flexible_toggle',''),(232915,41219,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(232916,41219,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(232917,41219,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(232918,41219,'blocks_3_options_theme','#ffffff'),(232919,41219,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(232920,41219,'blocks_3_options_reverse','1'),(232921,41219,'_blocks_3_options_reverse','field_61768049bb8ac'),(232922,41219,'blocks_3_options',''),(232923,41219,'_blocks_3_options','field_617682517c334'),(232924,41219,'blocks_3_split_5050_image','41189'),(232925,41219,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(232926,41219,'blocks_3_split_5050_video',''),(232927,41219,'_blocks_3_split_5050_video','field_6239f3160848a'),(232928,41219,'blocks_3_split_5050_content_title',''),(232929,41219,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(232930,41219,'blocks_3_split_5050_content_heading','Why choose Biomechanics Education'),(232931,41219,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(232932,41219,'blocks_3_split_5050_content_text','<ul>\r\n 	<li>Specialist Training: Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.</li>\r\n 	<li>Career Flexibility: As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.</li>\r\n 	<li>Recognised Qualification: Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.</li>\r\n 	<li>Funding Available: Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.</li>\r\n</ul>\r\nJoin the growing number of armed forces personnel who have successfully transitioned into the biomechanics field and continue to serve others by promoting health, movement, and performance.'),(232933,41219,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(232934,41219,'blocks_3_split_5050_content_actions',''),(232935,41219,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(232936,41219,'blocks_3_split_5050_content',''),(232937,41219,'_blocks_3_split_5050_content','field_61767afceb8ba'),(232938,41219,'blocks_4_acfe_flexible_toggle',''),(232939,41219,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(232940,41219,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(232941,41219,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(232942,41219,'blocks_4_options_theme','#ffffff'),(232943,41219,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(232944,41219,'blocks_4_options_state','0'),(232945,41219,'_blocks_4_options_state','field_6239fcb7508c5'),(232946,41219,'blocks_4_options',''),(232947,41219,'_blocks_4_options','field_6177e2991ac44'),(232948,41219,'blocks_4_content_title',''),(232949,41219,'_blocks_4_content_title','field_64d237e8bb1e2'),(232950,41219,'blocks_4_content_heading','FAQ\'s'),(232951,41219,'_blocks_4_content_heading','field_64d237e8bb1e3'),(232952,41219,'blocks_4_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(232953,41219,'_blocks_4_content_text','field_64d237e8bb1e4'),(232954,41219,'blocks_4_content_actions',''),(232955,41219,'_blocks_4_content_actions','field_64d237e8bb1e5'),(232956,41219,'blocks_4_content_align','left'),(232957,41219,'_blocks_4_content_align','field_64d2443e6b6aa'),(232958,41219,'blocks_4_content',''),(232959,41219,'_blocks_4_content','field_64d237e8bb1e1'),(232960,41219,'blocks_4_accordion_content','custom'),(232961,41219,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(232962,41219,'blocks_4_accordion_items_0_title','What is ELCAS?'),(232963,41219,'_blocks_4_accordion_items_0_title','field_6177e2991ac4d'),(232964,41219,'blocks_4_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(232965,41219,'_blocks_4_accordion_items_0_text','field_6177e2991ac4e'),(232966,41219,'blocks_4_accordion_items','5'),(232967,41219,'_blocks_4_accordion_items','field_6177e2991ac4c'),(232968,41219,'blocks_4_actions',''),(232969,41219,'_blocks_4_actions','field_61a746a817f7a'),(232970,41219,'blocks_4_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(232971,41219,'_blocks_4_accordion_items_1_title','field_6177e2991ac4d'),(232972,41219,'blocks_4_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(232973,41219,'_blocks_4_accordion_items_1_text','field_6177e2991ac4e'),(232974,41219,'blocks_4_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(232975,41219,'_blocks_4_accordion_items_2_title','field_6177e2991ac4d'),(232976,41219,'blocks_4_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(232977,41219,'_blocks_4_accordion_items_2_text','field_6177e2991ac4e'),(232978,41219,'blocks_4_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(232979,41219,'_blocks_4_accordion_items_3_title','field_6177e2991ac4d'),(232980,41219,'blocks_4_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(232981,41219,'_blocks_4_accordion_items_3_text','field_6177e2991ac4e'),(232982,41219,'blocks_4_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(232983,41219,'_blocks_4_accordion_items_4_title','field_6177e2991ac4d'),(232984,41219,'blocks_4_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(232985,41219,'_blocks_4_accordion_items_4_text','field_6177e2991ac4e'),(233168,7,'_oembed_a5e335f397621bf100630fdc987ed761','<iframe title=\"What is Biomechanics?\" width=\"640\" height=\"360\" src=\"https://www.youtube.com/embed/x_yYzgAqcbY?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(233169,7,'_oembed_time_a5e335f397621bf100630fdc987ed761','1729596433'),(233170,41228,'_wp_attached_file','2024/09/into-to-be-pilates-header-image.jpg'),(233171,41228,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:675;s:4:\"file\";s:43:\"2024/09/into-to-be-pilates-header-image.jpg\";s:8:\"filesize\";i:102307;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66315;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25753;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53198;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33410;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88031;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28171;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76758;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27553;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-675x675.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67676;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88031;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29737;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88031;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25753;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:43:\"into-to-be-pilates-header-image-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66315;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(233172,41229,'hide_hero','0'),(233173,41229,'_hide_hero','field_66a2380fcda39'),(233174,41229,'hero_title','Diploma in Biomechanics Coaching'),(233175,41229,'_hero_title','field_617571fe285e8'),(233176,41229,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and gym-goers. Gathering data to develop a course that educates practitioners to a high level of understanding movement.'),(233177,41229,'_hero_text','field_6175723c285e9'),(233178,41229,'hero_actions','1'),(233179,41229,'_hero_actions','field_61757270285ea'),(233180,41229,'hero_style','default'),(233181,41229,'_hero_style','field_62051d9dc5324'),(233182,41229,'hero_image_pos_x','right'),(233183,41229,'_hero_image_pos_x','field_62ec3d05390bb'),(233184,41229,'hero_image_pos_y','top'),(233185,41229,'_hero_image_pos_y','field_62ec3d05390bc'),(233186,41229,'hero_image_pos',''),(233187,41229,'_hero_image_pos','field_62ec3d05390ba'),(233188,41229,'fft_hide_from_listings','0'),(233189,41229,'_fft_hide_from_listings','field_61f1320446ab2'),(233190,41229,'fft_page_format','default'),(233191,41229,'_fft_page_format','field_61ae213f1f218'),(233192,41229,'fft_hide_nav','0'),(233193,41229,'_fft_hide_nav','field_635bd5e43527c'),(233194,41229,'fft_hide_header_call_to_action','0'),(233195,41229,'_fft_hide_header_call_to_action','field_635bd6723527d'),(233196,41229,'fft_page_sitemap','0'),(233197,41229,'_fft_page_sitemap','field_61af9b34e8181'),(233198,41229,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:5:\"icons\";i:6;s:10:\"split_5050\";i:7;s:8:\"template\";i:8;s:10:\"accordions\";}'),(233199,41229,'_blocks','field_6176696113096'),(233200,41229,'course_label_text','Biomechanics Coach Course'),(233201,41229,'_course_label_text','field_61e17babf71fa'),(233202,41229,'course_label',''),(233203,41229,'_course_label','field_61e12f92749a7'),(233204,41229,'course_description','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(233205,41229,'_course_description','field_617ac5788e5e1'),(233206,41229,'course_key_info','1'),(233207,41229,'_course_key_info','field_617ac6ad8e5e2'),(233208,41229,'course_included','Diploma in Biomechanics Coaching'),(233209,41229,'_course_included','field_617ac6f08e5e4'),(233210,41229,'_thumbnail_id','40863'),(233211,41229,'__thumbnail_id','field_617570855ddaf'),(233212,41229,'blocks_0_acfe_flexible_toggle',''),(233213,41229,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(233214,41229,'blocks_0_acfe_flexible_layout_title','Template'),(233215,41229,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(233216,41229,'blocks_0_template','39087'),(233217,41229,'_blocks_0_template','field_617bdd570fe01'),(233218,41229,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(233219,41229,'_hero_actions_0_button','field_61757281285eb'),(233220,41229,'blocks_1_acfe_flexible_toggle',''),(233221,41229,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(233222,41229,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(233223,41229,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(233224,41229,'blocks_1_options_theme','#ffffff'),(233225,41229,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(233226,41229,'blocks_1_options_reverse','0'),(233227,41229,'_blocks_1_options_reverse','field_61768049bb8ac'),(233228,41229,'blocks_1_options',''),(233229,41229,'_blocks_1_options','field_617682517c334'),(233230,41229,'blocks_1_split_5050_image','40866'),(233231,41229,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(233232,41229,'blocks_1_split_5050_video',''),(233233,41229,'_blocks_1_split_5050_video','field_6239f3160848a'),(233234,41229,'blocks_1_split_5050_content_title',''),(233235,41229,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(233236,41229,'blocks_1_split_5050_content_heading','Course Overview'),(233237,41229,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(233238,41229,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing, including comparisons with isokinetic machines, has shown up to 97% accuracy in identifying bodily conditions. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(233239,41229,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(233240,41229,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(233241,41229,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(233242,41229,'blocks_1_split_5050_content_actions','1'),(233243,41229,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(233244,41229,'blocks_1_split_5050_content',''),(233245,41229,'_blocks_1_split_5050_content','field_61767afceb8ba'),(233246,41229,'blocks_2_acfe_flexible_toggle',''),(233247,41229,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(233248,41229,'blocks_2_acfe_flexible_layout_title','Form'),(233249,41229,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(233250,41229,'blocks_2_row_content_format','standard'),(233251,41229,'_blocks_2_row_content_format','field_6481ead962881'),(233252,41229,'blocks_2_row_content_title',''),(233253,41229,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(233254,41229,'blocks_2_row_content_heading','Enquire Today'),(233255,41229,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(233256,41229,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(233257,41229,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(233258,41229,'blocks_2_row_content_actions',''),(233259,41229,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(233260,41229,'blocks_2_row_content',''),(233261,41229,'_blocks_2_row_content','field_61a0f5f5b3db0'),(233262,41229,'blocks_2_row_form','40394'),(233263,41229,'_blocks_2_row_form','field_61a4ff2c0b08e'),(233264,41229,'blocks_2_row_form_button_label',''),(233265,41229,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(233266,41229,'blocks_3_acfe_flexible_toggle',''),(233267,41229,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(233268,41229,'blocks_3_acfe_flexible_layout_title','Video'),(233269,41229,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(233270,41229,'blocks_3_size','large'),(233271,41229,'_blocks_3_size','field_6487038f297c1'),(233272,41229,'blocks_3_row_content_title',''),(233273,41229,'_blocks_3_row_content_title','field_64870132a865d'),(233274,41229,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(233275,41229,'_blocks_3_row_content_heading','field_64870142a865e'),(233276,41229,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(233277,41229,'_blocks_3_row_content_text','field_64870148a865f'),(233278,41229,'blocks_3_row_content',''),(233279,41229,'_blocks_3_row_content','field_6487008ba865c'),(233280,41229,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(233281,41229,'_blocks_3_video_src','field_6193c4a98ec07'),(233282,41229,'blocks_3_video_thumbnail',''),(233283,41229,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(233284,41229,'blocks_4_acfe_flexible_toggle',''),(233285,41229,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(233286,41229,'blocks_4_acfe_flexible_layout_title','Tabs'),(233287,41229,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(233288,41229,'blocks_4_options_theme','#ffffff'),(233289,41229,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(233290,41229,'blocks_4_options',''),(233291,41229,'_blocks_4_options','field_6177cfcd8140f'),(233292,41229,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(233293,41229,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(233294,41229,'blocks_4_tabs_0_tab_content_title',''),(233295,41229,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(233296,41229,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(233297,41229,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(233298,41229,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(233299,41229,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(233300,41229,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(233301,41229,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(233302,41229,'blocks_4_tabs_0_tab_content_actions','1'),(233303,41229,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(233304,41229,'blocks_4_tabs_0_tab_content',''),(233305,41229,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(233306,41229,'blocks_4_tabs_0_tab_image','40869'),(233307,41229,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(233308,41229,'blocks_4_tabs_1_tab_label','Entry requirements'),(233309,41229,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(233310,41229,'blocks_4_tabs_1_tab_content_title',''),(233311,41229,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(233312,41229,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(233313,41229,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(233314,41229,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(233315,41229,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(233316,41229,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(233317,41229,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(233318,41229,'blocks_4_tabs_1_tab_content_actions','1'),(233319,41229,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(233320,41229,'blocks_4_tabs_1_tab_content',''),(233321,41229,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(233322,41229,'blocks_4_tabs_1_tab_image','40870'),(233323,41229,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(233324,41229,'blocks_4_tabs','2'),(233325,41229,'_blocks_4_tabs','field_6177cff281419'),(233326,41229,'blocks_5_acfe_flexible_toggle',''),(233327,41229,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(233328,41229,'blocks_5_acfe_flexible_layout_title','Icons'),(233329,41229,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(233330,41229,'blocks_5_options_theme','#b61234'),(233331,41229,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(233332,41229,'blocks_5_options_format','stacked'),(233333,41229,'_blocks_5_options_format','field_64bfde9a90690'),(233334,41229,'blocks_5_options',''),(233335,41229,'_blocks_5_options','field_64bfdd9b90684'),(233336,41229,'blocks_5_row_content_title',''),(233337,41229,'_blocks_5_row_content_title','field_64bfdd9b90687'),(233338,41229,'blocks_5_row_content_heading','Fees & Funding Options '),(233339,41229,'_blocks_5_row_content_heading','field_64bfdd9b90688'),(233340,41229,'blocks_5_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(233341,41229,'_blocks_5_row_content_text','field_64bfdd9b90689'),(233342,41229,'blocks_5_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(233343,41229,'_blocks_5_row_content_actions_0_button','field_64bfdd9b9068b'),(233344,41229,'blocks_5_row_content_actions','1'),(233345,41229,'_blocks_5_row_content_actions','field_64bfdd9b9068a'),(233346,41229,'blocks_5_row_content',''),(233347,41229,'_blocks_5_row_content','field_64bfdd9b90686'),(233348,41229,'blocks_5_icon_row_items_0_icon','pay-as-you-learn.svg'),(233349,41229,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(233350,41229,'blocks_5_icon_row_items_0_label','Pay in full'),(233351,41229,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(233352,41229,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(233353,41229,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(233354,41229,'blocks_5_icon_row_items_1_icon','finance.svg'),(233355,41229,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(233356,41229,'blocks_5_icon_row_items_1_label','0% finance'),(233357,41229,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(233358,41229,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(233359,41229,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(233360,41229,'blocks_5_icon_row_items_2_icon','pass-rate.svg'),(233361,41229,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(233362,41229,'blocks_5_icon_row_items_2_label','Deposit & balance'),(233363,41229,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(233364,41229,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(233365,41229,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(233366,41229,'blocks_5_icon_row_items','3'),(233367,41229,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(233368,41229,'blocks_6_acfe_flexible_toggle',''),(233369,41229,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(233370,41229,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(233371,41229,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(233372,41229,'blocks_6_options_theme','#ffffff'),(233373,41229,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(233374,41229,'blocks_6_options_reverse','0'),(233375,41229,'_blocks_6_options_reverse','field_61768049bb8ac'),(233376,41229,'blocks_6_options',''),(233377,41229,'_blocks_6_options','field_617682517c334'),(233378,41229,'blocks_6_split_5050_image','39224'),(233379,41229,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(233380,41229,'blocks_6_split_5050_video',''),(233381,41229,'_blocks_6_split_5050_video','field_6239f3160848a'),(233382,41229,'blocks_6_split_5050_content_title',''),(233383,41229,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(233384,41229,'blocks_6_split_5050_content_heading','Locations'),(233385,41229,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(233386,41229,'blocks_6_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(233387,41229,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(233388,41229,'blocks_6_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(233389,41229,'_blocks_6_split_5050_content_actions_0_button','field_61767b72eb8be'),(233390,41229,'blocks_6_split_5050_content_actions','1'),(233391,41229,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(233392,41229,'blocks_6_split_5050_content',''),(233393,41229,'_blocks_6_split_5050_content','field_61767afceb8ba'),(233394,41229,'blocks_8_acfe_flexible_toggle',''),(233395,41229,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(233396,41229,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(233397,41229,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(233398,41229,'blocks_8_options_theme','#ffffff'),(233399,41229,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(233400,41229,'blocks_8_options_state','0'),(233401,41229,'_blocks_8_options_state','field_6239fcb7508c5'),(233402,41229,'blocks_8_options',''),(233403,41229,'_blocks_8_options','field_6177e2991ac44'),(233404,41229,'blocks_8_content_title',''),(233405,41229,'_blocks_8_content_title','field_64d237e8bb1e2'),(233406,41229,'blocks_8_content_heading','FAQ\'s'),(233407,41229,'_blocks_8_content_heading','field_64d237e8bb1e3'),(233408,41229,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(233409,41229,'_blocks_8_content_text','field_64d237e8bb1e4'),(233410,41229,'blocks_8_content_actions',''),(233411,41229,'_blocks_8_content_actions','field_64d237e8bb1e5'),(233412,41229,'blocks_8_content_align','left'),(233413,41229,'_blocks_8_content_align','field_64d2443e6b6aa'),(233414,41229,'blocks_8_content',''),(233415,41229,'_blocks_8_content','field_64d237e8bb1e1'),(233416,41229,'blocks_8_accordion_content','faqs'),(233417,41229,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(233418,41229,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(233419,41229,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(233420,41229,'blocks_8_actions',''),(233421,41229,'_blocks_8_actions','field_61a746a817f7a'),(233422,41229,'blocks_7_acfe_flexible_toggle',''),(233423,41229,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(233424,41229,'blocks_7_acfe_flexible_layout_title','Template'),(233425,41229,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(233426,41229,'blocks_7_template','40987'),(233427,41229,'_blocks_7_template','field_617bdd570fe01'),(233428,41229,'course_label_label_theme','#0d1f73'),(233429,41229,'_course_label_label_theme','field_61e17bb8f71fb'),(233430,41229,'course_key_info_0_text','Entry requirements: Qualification in either Personal Trainer, Pilates, Yoga Instructor'),(233431,41229,'_course_key_info_0_text','field_617ac6c38e5e3'),(233432,41230,'hide_hero','0'),(233433,41230,'_hide_hero','field_66a2380fcda39'),(233434,41230,'hero_title','Diploma in Biomechanics Coaching'),(233435,41230,'_hero_title','field_617571fe285e8'),(233436,41230,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and gym-goers. Gathering data to develop a course that educates practitioners to a high level of understanding movement.'),(233437,41230,'_hero_text','field_6175723c285e9'),(233438,41230,'hero_actions','1'),(233439,41230,'_hero_actions','field_61757270285ea'),(233440,41230,'hero_style','default'),(233441,41230,'_hero_style','field_62051d9dc5324'),(233442,41230,'hero_image_pos_x','right'),(233443,41230,'_hero_image_pos_x','field_62ec3d05390bb'),(233444,41230,'hero_image_pos_y','top'),(233445,41230,'_hero_image_pos_y','field_62ec3d05390bc'),(233446,41230,'hero_image_pos',''),(233447,41230,'_hero_image_pos','field_62ec3d05390ba'),(233448,41230,'fft_hide_from_listings','0'),(233449,41230,'_fft_hide_from_listings','field_61f1320446ab2'),(233450,41230,'fft_page_format','default'),(233451,41230,'_fft_page_format','field_61ae213f1f218'),(233452,41230,'fft_hide_nav','0'),(233453,41230,'_fft_hide_nav','field_635bd5e43527c'),(233454,41230,'fft_hide_header_call_to_action','0'),(233455,41230,'_fft_hide_header_call_to_action','field_635bd6723527d'),(233456,41230,'fft_page_sitemap','0'),(233457,41230,'_fft_page_sitemap','field_61af9b34e8181'),(233458,41230,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:5:\"icons\";i:6;s:10:\"split_5050\";i:7;s:8:\"template\";i:8;s:10:\"accordions\";}'),(233459,41230,'_blocks','field_6176696113096'),(233460,41230,'course_label_text','Biomechanics Coach Course'),(233461,41230,'_course_label_text','field_61e17babf71fa'),(233462,41230,'course_label',''),(233463,41230,'_course_label','field_61e12f92749a7'),(233464,41230,'course_description','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(233465,41230,'_course_description','field_617ac5788e5e1'),(233466,41230,'course_key_info','1'),(233467,41230,'_course_key_info','field_617ac6ad8e5e2'),(233468,41230,'course_included','Diploma in Biomechanics Coaching'),(233469,41230,'_course_included','field_617ac6f08e5e4'),(233470,41230,'_thumbnail_id','40863'),(233471,41230,'__thumbnail_id','field_617570855ddaf'),(233472,41230,'blocks_0_acfe_flexible_toggle',''),(233473,41230,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(233474,41230,'blocks_0_acfe_flexible_layout_title','Template'),(233475,41230,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(233476,41230,'blocks_0_template','39087'),(233477,41230,'_blocks_0_template','field_617bdd570fe01'),(233478,41230,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(233479,41230,'_hero_actions_0_button','field_61757281285eb'),(233480,41230,'blocks_1_acfe_flexible_toggle',''),(233481,41230,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(233482,41230,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(233483,41230,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(233484,41230,'blocks_1_options_theme','#ffffff'),(233485,41230,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(233486,41230,'blocks_1_options_reverse','0'),(233487,41230,'_blocks_1_options_reverse','field_61768049bb8ac'),(233488,41230,'blocks_1_options',''),(233489,41230,'_blocks_1_options','field_617682517c334'),(233490,41230,'blocks_1_split_5050_image','40866'),(233491,41230,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(233492,41230,'blocks_1_split_5050_video',''),(233493,41230,'_blocks_1_split_5050_video','field_6239f3160848a'),(233494,41230,'blocks_1_split_5050_content_title',''),(233495,41230,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(233496,41230,'blocks_1_split_5050_content_heading','Course Overview'),(233497,41230,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(233498,41230,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(233499,41230,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(233500,41230,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(233501,41230,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(233502,41230,'blocks_1_split_5050_content_actions','1'),(233503,41230,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(233504,41230,'blocks_1_split_5050_content',''),(233505,41230,'_blocks_1_split_5050_content','field_61767afceb8ba'),(233506,41230,'blocks_2_acfe_flexible_toggle',''),(233507,41230,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(233508,41230,'blocks_2_acfe_flexible_layout_title','Form'),(233509,41230,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(233510,41230,'blocks_2_row_content_format','standard'),(233511,41230,'_blocks_2_row_content_format','field_6481ead962881'),(233512,41230,'blocks_2_row_content_title',''),(233513,41230,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(233514,41230,'blocks_2_row_content_heading','Enquire Today'),(233515,41230,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(233516,41230,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(233517,41230,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(233518,41230,'blocks_2_row_content_actions',''),(233519,41230,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(233520,41230,'blocks_2_row_content',''),(233521,41230,'_blocks_2_row_content','field_61a0f5f5b3db0'),(233522,41230,'blocks_2_row_form','40394'),(233523,41230,'_blocks_2_row_form','field_61a4ff2c0b08e'),(233524,41230,'blocks_2_row_form_button_label',''),(233525,41230,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(233526,41230,'blocks_3_acfe_flexible_toggle',''),(233527,41230,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(233528,41230,'blocks_3_acfe_flexible_layout_title','Video'),(233529,41230,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(233530,41230,'blocks_3_size','large'),(233531,41230,'_blocks_3_size','field_6487038f297c1'),(233532,41230,'blocks_3_row_content_title',''),(233533,41230,'_blocks_3_row_content_title','field_64870132a865d'),(233534,41230,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(233535,41230,'_blocks_3_row_content_heading','field_64870142a865e'),(233536,41230,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(233537,41230,'_blocks_3_row_content_text','field_64870148a865f'),(233538,41230,'blocks_3_row_content',''),(233539,41230,'_blocks_3_row_content','field_6487008ba865c'),(233540,41230,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(233541,41230,'_blocks_3_video_src','field_6193c4a98ec07'),(233542,41230,'blocks_3_video_thumbnail',''),(233543,41230,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(233544,41230,'blocks_4_acfe_flexible_toggle',''),(233545,41230,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(233546,41230,'blocks_4_acfe_flexible_layout_title','Tabs'),(233547,41230,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(233548,41230,'blocks_4_options_theme','#ffffff'),(233549,41230,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(233550,41230,'blocks_4_options',''),(233551,41230,'_blocks_4_options','field_6177cfcd8140f'),(233552,41230,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(233553,41230,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(233554,41230,'blocks_4_tabs_0_tab_content_title',''),(233555,41230,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(233556,41230,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(233557,41230,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(233558,41230,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(233559,41230,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(233560,41230,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(233561,41230,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(233562,41230,'blocks_4_tabs_0_tab_content_actions','1'),(233563,41230,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(233564,41230,'blocks_4_tabs_0_tab_content',''),(233565,41230,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(233566,41230,'blocks_4_tabs_0_tab_image','40869'),(233567,41230,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(233568,41230,'blocks_4_tabs_1_tab_label','Entry requirements'),(233569,41230,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(233570,41230,'blocks_4_tabs_1_tab_content_title',''),(233571,41230,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(233572,41230,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(233573,41230,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(233574,41230,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(233575,41230,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(233576,41230,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(233577,41230,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(233578,41230,'blocks_4_tabs_1_tab_content_actions','1'),(233579,41230,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(233580,41230,'blocks_4_tabs_1_tab_content',''),(233581,41230,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(233582,41230,'blocks_4_tabs_1_tab_image','40870'),(233583,41230,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(233584,41230,'blocks_4_tabs','2'),(233585,41230,'_blocks_4_tabs','field_6177cff281419'),(233586,41230,'blocks_5_acfe_flexible_toggle',''),(233587,41230,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(233588,41230,'blocks_5_acfe_flexible_layout_title','Icons'),(233589,41230,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(233590,41230,'blocks_5_options_theme','#b61234'),(233591,41230,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(233592,41230,'blocks_5_options_format','stacked'),(233593,41230,'_blocks_5_options_format','field_64bfde9a90690'),(233594,41230,'blocks_5_options',''),(233595,41230,'_blocks_5_options','field_64bfdd9b90684'),(233596,41230,'blocks_5_row_content_title',''),(233597,41230,'_blocks_5_row_content_title','field_64bfdd9b90687'),(233598,41230,'blocks_5_row_content_heading','Fees & Funding Options '),(233599,41230,'_blocks_5_row_content_heading','field_64bfdd9b90688'),(233600,41230,'blocks_5_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(233601,41230,'_blocks_5_row_content_text','field_64bfdd9b90689'),(233602,41230,'blocks_5_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(233603,41230,'_blocks_5_row_content_actions_0_button','field_64bfdd9b9068b'),(233604,41230,'blocks_5_row_content_actions','1'),(233605,41230,'_blocks_5_row_content_actions','field_64bfdd9b9068a'),(233606,41230,'blocks_5_row_content',''),(233607,41230,'_blocks_5_row_content','field_64bfdd9b90686'),(233608,41230,'blocks_5_icon_row_items_0_icon','pay-as-you-learn.svg'),(233609,41230,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(233610,41230,'blocks_5_icon_row_items_0_label','Pay in full'),(233611,41230,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(233612,41230,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(233613,41230,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(233614,41230,'blocks_5_icon_row_items_1_icon','finance.svg'),(233615,41230,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(233616,41230,'blocks_5_icon_row_items_1_label','0% finance'),(233617,41230,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(233618,41230,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(233619,41230,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(233620,41230,'blocks_5_icon_row_items_2_icon','pass-rate.svg'),(233621,41230,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(233622,41230,'blocks_5_icon_row_items_2_label','Deposit & balance'),(233623,41230,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(233624,41230,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(233625,41230,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(233626,41230,'blocks_5_icon_row_items','3'),(233627,41230,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(233628,41230,'blocks_6_acfe_flexible_toggle',''),(233629,41230,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(233630,41230,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(233631,41230,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(233632,41230,'blocks_6_options_theme','#ffffff'),(233633,41230,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(233634,41230,'blocks_6_options_reverse','0'),(233635,41230,'_blocks_6_options_reverse','field_61768049bb8ac'),(233636,41230,'blocks_6_options',''),(233637,41230,'_blocks_6_options','field_617682517c334'),(233638,41230,'blocks_6_split_5050_image','39224'),(233639,41230,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(233640,41230,'blocks_6_split_5050_video',''),(233641,41230,'_blocks_6_split_5050_video','field_6239f3160848a'),(233642,41230,'blocks_6_split_5050_content_title',''),(233643,41230,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(233644,41230,'blocks_6_split_5050_content_heading','Locations'),(233645,41230,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(233646,41230,'blocks_6_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(233647,41230,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(233648,41230,'blocks_6_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(233649,41230,'_blocks_6_split_5050_content_actions_0_button','field_61767b72eb8be'),(233650,41230,'blocks_6_split_5050_content_actions','1'),(233651,41230,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(233652,41230,'blocks_6_split_5050_content',''),(233653,41230,'_blocks_6_split_5050_content','field_61767afceb8ba'),(233654,41230,'blocks_8_acfe_flexible_toggle',''),(233655,41230,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(233656,41230,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(233657,41230,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(233658,41230,'blocks_8_options_theme','#ffffff'),(233659,41230,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(233660,41230,'blocks_8_options_state','0'),(233661,41230,'_blocks_8_options_state','field_6239fcb7508c5'),(233662,41230,'blocks_8_options',''),(233663,41230,'_blocks_8_options','field_6177e2991ac44'),(233664,41230,'blocks_8_content_title',''),(233665,41230,'_blocks_8_content_title','field_64d237e8bb1e2'),(233666,41230,'blocks_8_content_heading','FAQ\'s'),(233667,41230,'_blocks_8_content_heading','field_64d237e8bb1e3'),(233668,41230,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(233669,41230,'_blocks_8_content_text','field_64d237e8bb1e4'),(233670,41230,'blocks_8_content_actions',''),(233671,41230,'_blocks_8_content_actions','field_64d237e8bb1e5'),(233672,41230,'blocks_8_content_align','left'),(233673,41230,'_blocks_8_content_align','field_64d2443e6b6aa'),(233674,41230,'blocks_8_content',''),(233675,41230,'_blocks_8_content','field_64d237e8bb1e1'),(233676,41230,'blocks_8_accordion_content','faqs'),(233677,41230,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(233678,41230,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(233679,41230,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(233680,41230,'blocks_8_actions',''),(233681,41230,'_blocks_8_actions','field_61a746a817f7a'),(233682,41230,'blocks_7_acfe_flexible_toggle',''),(233683,41230,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(233684,41230,'blocks_7_acfe_flexible_layout_title','Template'),(233685,41230,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(233686,41230,'blocks_7_template','40987'),(233687,41230,'_blocks_7_template','field_617bdd570fe01'),(233688,41230,'course_label_label_theme','#0d1f73'),(233689,41230,'_course_label_label_theme','field_61e17bb8f71fb'),(233690,41230,'course_key_info_0_text','Entry requirements: Qualification in either Personal Trainer, Pilates, Yoga Instructor'),(233691,41230,'_course_key_info_0_text','field_617ac6c38e5e3'),(233692,40780,'_yoast_wpseo_inclusive_language_score','90'),(233693,41231,'hide_hero','0'),(233694,41231,'_hide_hero','field_66a2380fcda39'),(233695,41231,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(233696,41231,'_hero_title','field_617571fe285e8'),(233697,41231,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(233698,41231,'_hero_text','field_6175723c285e9'),(233699,41231,'hero_actions','1'),(233700,41231,'_hero_actions','field_61757270285ea'),(233701,41231,'hero_style','default'),(233702,41231,'_hero_style','field_62051d9dc5324'),(233703,41231,'_thumbnail_id','40848'),(233704,41231,'__thumbnail_id','field_617570855ddaf'),(233705,41231,'hero_image_pos_x','right'),(233706,41231,'_hero_image_pos_x','field_62ec3d05390bb'),(233707,41231,'hero_image_pos_y','top'),(233708,41231,'_hero_image_pos_y','field_62ec3d05390bc'),(233709,41231,'hero_image_pos',''),(233710,41231,'_hero_image_pos','field_62ec3d05390ba'),(233711,41231,'fft_hide_from_listings','0'),(233712,41231,'_fft_hide_from_listings','field_61f1320446ab2'),(233713,41231,'fft_page_format','default'),(233714,41231,'_fft_page_format','field_61ae213f1f218'),(233715,41231,'fft_hide_nav','0'),(233716,41231,'_fft_hide_nav','field_635bd5e43527c'),(233717,41231,'fft_hide_header_call_to_action','0'),(233718,41231,'_fft_hide_header_call_to_action','field_635bd6723527d'),(233719,41231,'fft_page_sitemap','0'),(233720,41231,'_fft_page_sitemap','field_61af9b34e8181'),(233721,41231,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(233722,41231,'_blocks','field_6176696113096'),(233723,41231,'course_label_text',''),(233724,41231,'_course_label_text','field_61e17babf71fa'),(233725,41231,'course_label',''),(233726,41231,'_course_label','field_61e12f92749a7'),(233727,41231,'course_description',''),(233728,41231,'_course_description','field_617ac5788e5e1'),(233729,41231,'course_key_info',''),(233730,41231,'_course_key_info','field_617ac6ad8e5e2'),(233731,41231,'course_included',''),(233732,41231,'_course_included','field_617ac6f08e5e4'),(233733,41231,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(233734,41231,'_hero_actions_0_button','field_61757281285eb'),(233735,41231,'blocks_0_acfe_flexible_toggle',''),(233736,41231,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(233737,41231,'blocks_0_acfe_flexible_layout_title','Icons'),(233738,41231,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(233739,41231,'blocks_0_options_theme','#b61234'),(233740,41231,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(233741,41231,'blocks_0_options_format','row'),(233742,41231,'_blocks_0_options_format','field_64bfde9a90690'),(233743,41231,'blocks_0_options',''),(233744,41231,'_blocks_0_options','field_64bfdd9b90684'),(233745,41231,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(233746,41231,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(233747,41231,'blocks_0_icon_row_items_0_label','Accreditation'),(233748,41231,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(233749,41231,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(233750,41231,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(233751,41231,'blocks_0_icon_row_items_1_icon','finance.svg'),(233752,41231,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(233753,41231,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(233754,41231,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(233755,41231,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(233756,41231,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(233757,41231,'blocks_0_icon_row_items_2_icon','progression.svg'),(233758,41231,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(233759,41231,'blocks_0_icon_row_items_2_label','Earning Potential'),(233760,41231,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(233761,41231,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(233762,41231,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(233763,41231,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(233764,41231,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(233765,41231,'blocks_0_icon_row_items_3_label','Qualification'),(233766,41231,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(233767,41231,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(233768,41231,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(233769,41231,'blocks_0_icon_row_items','4'),(233770,41231,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(233771,41231,'blocks_5_acfe_flexible_toggle','1'),(233772,41231,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(233773,41231,'blocks_5_acfe_flexible_layout_title','Tabs'),(233774,41231,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(233775,41231,'blocks_5_options_theme','#ffffff'),(233776,41231,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(233777,41231,'blocks_5_options',''),(233778,41231,'_blocks_5_options','field_6177cfcd8140f'),(233779,41231,'blocks_5_tabs_0_tab_label','Entry requirements'),(233780,41231,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(233781,41231,'blocks_5_tabs_0_tab_content_title',''),(233782,41231,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(233783,41231,'blocks_5_tabs_0_tab_content_heading',''),(233784,41231,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(233785,41231,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(233786,41231,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(233787,41231,'blocks_5_tabs_0_tab_content_actions',''),(233788,41231,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(233789,41231,'blocks_5_tabs_0_tab_content',''),(233790,41231,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(233791,41231,'blocks_5_tabs_0_tab_image',''),(233792,41231,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(233793,41231,'blocks_5_tabs_1_tab_label','Learning format'),(233794,41231,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(233795,41231,'blocks_5_tabs_1_tab_content_title',''),(233796,41231,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(233797,41231,'blocks_5_tabs_1_tab_content_heading',''),(233798,41231,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(233799,41231,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(233800,41231,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(233801,41231,'blocks_5_tabs_1_tab_content_actions',''),(233802,41231,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(233803,41231,'blocks_5_tabs_1_tab_content',''),(233804,41231,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(233805,41231,'blocks_5_tabs_1_tab_image',''),(233806,41231,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(233807,41231,'blocks_5_tabs_2_tab_label','Qualifications included'),(233808,41231,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(233809,41231,'blocks_5_tabs_2_tab_content_title',''),(233810,41231,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(233811,41231,'blocks_5_tabs_2_tab_content_heading',''),(233812,41231,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(233813,41231,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(233814,41231,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(233815,41231,'blocks_5_tabs_2_tab_content_actions',''),(233816,41231,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(233817,41231,'blocks_5_tabs_2_tab_content',''),(233818,41231,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(233819,41231,'blocks_5_tabs_2_tab_image',''),(233820,41231,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(233821,41231,'blocks_5_tabs','3'),(233822,41231,'_blocks_5_tabs','field_6177cff281419'),(233823,41231,'blocks_4_acfe_flexible_toggle',''),(233824,41231,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(233825,41231,'blocks_4_acfe_flexible_layout_title','Template'),(233826,41231,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(233827,41231,'blocks_4_template','39207'),(233828,41231,'_blocks_4_template','field_617bdd570fe01'),(233829,41231,'blocks_6_acfe_flexible_toggle',''),(233830,41231,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(233831,41231,'blocks_6_acfe_flexible_layout_title','Icons'),(233832,41231,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(233833,41231,'blocks_6_options_theme','#f5f5f5'),(233834,41231,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(233835,41231,'blocks_6_options_format','stacked'),(233836,41231,'_blocks_6_options_format','field_64bfde9a90690'),(233837,41231,'blocks_6_options',''),(233838,41231,'_blocks_6_options','field_64bfdd9b90684'),(233839,41231,'blocks_6_row_content_title','Options available to pay for your course'),(233840,41231,'_blocks_6_row_content_title','field_64bfdd9b90687'),(233841,41231,'blocks_6_row_content_heading','Fees & Funding Options '),(233842,41231,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(233843,41231,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(233844,41231,'_blocks_6_row_content_text','field_64bfdd9b90689'),(233845,41231,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(233846,41231,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(233847,41231,'blocks_6_row_content_actions','1'),(233848,41231,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(233849,41231,'blocks_6_row_content',''),(233850,41231,'_blocks_6_row_content','field_64bfdd9b90686'),(233851,41231,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(233852,41231,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(233853,41231,'blocks_6_icon_row_items_0_label','Pay in full'),(233854,41231,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(233855,41231,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(233856,41231,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(233857,41231,'blocks_6_icon_row_items_1_icon','finance.svg'),(233858,41231,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(233859,41231,'blocks_6_icon_row_items_1_label','0% finance'),(233860,41231,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(233861,41231,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(233862,41231,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(233863,41231,'blocks_6_icon_row_items','3'),(233864,41231,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(233865,41231,'blocks_7_acfe_flexible_toggle',''),(233866,41231,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(233867,41231,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(233868,41231,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(233869,41231,'blocks_7_options_theme','#ffffff'),(233870,41231,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(233871,41231,'blocks_7_options_reverse','0'),(233872,41231,'_blocks_7_options_reverse','field_61768049bb8ac'),(233873,41231,'blocks_7_options',''),(233874,41231,'_blocks_7_options','field_617682517c334'),(233875,41231,'blocks_7_split_5050_image','40817'),(233876,41231,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(233877,41231,'blocks_7_split_5050_video',''),(233878,41231,'_blocks_7_split_5050_video','field_6239f3160848a'),(233879,41231,'blocks_7_split_5050_content_title',''),(233880,41231,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(233881,41231,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(233882,41231,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(233883,41231,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(233884,41231,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(233885,41231,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(233886,41231,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(233887,41231,'blocks_7_split_5050_content_actions','1'),(233888,41231,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(233889,41231,'blocks_7_split_5050_content',''),(233890,41231,'_blocks_7_split_5050_content','field_61767afceb8ba'),(233891,41231,'blocks_8_acfe_flexible_toggle',''),(233892,41231,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(233893,41231,'blocks_8_acfe_flexible_layout_title','Icons'),(233894,41231,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(233895,41231,'blocks_8_options_theme','#f5f5f5'),(233896,41231,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(233897,41231,'blocks_8_options_format','row'),(233898,41231,'_blocks_8_options_format','field_64bfde9a90690'),(233899,41231,'blocks_8_options',''),(233900,41231,'_blocks_8_options','field_64bfdd9b90684'),(233901,41231,'blocks_8_icon_row_items_0_icon','qualification.svg'),(233902,41231,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(233903,41231,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(233904,41231,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(233905,41231,'blocks_8_icon_row_items_0_text',''),(233906,41231,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(233907,41231,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(233908,41231,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(233909,41231,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(233910,41231,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(233911,41231,'blocks_8_icon_row_items_1_text',''),(233912,41231,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(233913,41231,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(233914,41231,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(233915,41231,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(233916,41231,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(233917,41231,'blocks_8_icon_row_items_2_text',''),(233918,41231,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(233919,41231,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(233920,41231,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(233921,41231,'blocks_8_icon_row_items_3_label','Flexible funding options'),(233922,41231,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(233923,41231,'blocks_8_icon_row_items_3_text',''),(233924,41231,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(233925,41231,'blocks_8_icon_row_items','4'),(233926,41231,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(233927,41231,'blocks_9_acfe_flexible_toggle',''),(233928,41231,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(233929,41231,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(233930,41231,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(233931,41231,'blocks_9_options_theme','#ffffff'),(233932,41231,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(233933,41231,'blocks_9_options_reverse','1'),(233934,41231,'_blocks_9_options_reverse','field_61768049bb8ac'),(233935,41231,'blocks_9_options',''),(233936,41231,'_blocks_9_options','field_617682517c334'),(233937,41231,'blocks_9_split_5050_image','39224'),(233938,41231,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(233939,41231,'blocks_9_split_5050_video',''),(233940,41231,'_blocks_9_split_5050_video','field_6239f3160848a'),(233941,41231,'blocks_9_split_5050_content_title','Locations'),(233942,41231,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(233943,41231,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(233944,41231,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(233945,41231,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(233946,41231,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(233947,41231,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(233948,41231,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(233949,41231,'blocks_9_split_5050_content_actions','1'),(233950,41231,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(233951,41231,'blocks_9_split_5050_content',''),(233952,41231,'_blocks_9_split_5050_content','field_61767afceb8ba'),(233953,41231,'blocks_1_acfe_flexible_toggle',''),(233954,41231,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(233955,41231,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(233956,41231,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(233957,41231,'blocks_1_options_theme','#ffffff'),(233958,41231,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(233959,41231,'blocks_1_options_reverse','0'),(233960,41231,'_blocks_1_options_reverse','field_61768049bb8ac'),(233961,41231,'blocks_1_options',''),(233962,41231,'_blocks_1_options','field_617682517c334'),(233963,41231,'blocks_1_split_5050_image','40785'),(233964,41231,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(233965,41231,'blocks_1_split_5050_video',''),(233966,41231,'_blocks_1_split_5050_video','field_6239f3160848a'),(233967,41231,'blocks_1_split_5050_content_title',''),(233968,41231,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(233969,41231,'blocks_1_split_5050_content_heading','Course Overview'),(233970,41231,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(233971,41231,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases a 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(233972,41231,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(233973,41231,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(233974,41231,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(233975,41231,'blocks_1_split_5050_content_actions','1'),(233976,41231,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(233977,41231,'blocks_1_split_5050_content',''),(233978,41231,'_blocks_1_split_5050_content','field_61767afceb8ba'),(233979,41231,'blocks_2_acfe_flexible_toggle',''),(233980,41231,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(233981,41231,'blocks_2_acfe_flexible_layout_title','Form'),(233982,41231,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(233983,41231,'blocks_2_row_content_format','standard'),(233984,41231,'_blocks_2_row_content_format','field_6481ead962881'),(233985,41231,'blocks_2_row_content_title',''),(233986,41231,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(233987,41231,'blocks_2_row_content_heading','Enquire Today'),(233988,41231,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(233989,41231,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(233990,41231,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(233991,41231,'blocks_2_row_content_actions',''),(233992,41231,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(233993,41231,'blocks_2_row_content',''),(233994,41231,'_blocks_2_row_content','field_61a0f5f5b3db0'),(233995,41231,'blocks_2_row_form','40394'),(233996,41231,'_blocks_2_row_form','field_61a4ff2c0b08e'),(233997,41231,'blocks_2_row_form_button_label',''),(233998,41231,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(233999,41231,'blocks_3_acfe_flexible_toggle',''),(234000,41231,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(234001,41231,'blocks_3_acfe_flexible_layout_title','Video'),(234002,41231,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(234003,41231,'blocks_3_size','large'),(234004,41231,'_blocks_3_size','field_6487038f297c1'),(234005,41231,'blocks_3_row_content_title',''),(234006,41231,'_blocks_3_row_content_title','field_64870132a865d'),(234007,41231,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(234008,41231,'_blocks_3_row_content_heading','field_64870142a865e'),(234009,41231,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(234010,41231,'_blocks_3_row_content_text','field_64870148a865f'),(234011,41231,'blocks_3_row_content',''),(234012,41231,'_blocks_3_row_content','field_6487008ba865c'),(234013,41231,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(234014,41231,'_blocks_3_video_src','field_6193c4a98ec07'),(234015,41231,'blocks_3_video_thumbnail',''),(234016,41231,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(234017,41231,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(234018,41231,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(234019,41231,'blocks_6_icon_row_items_2_label','Deposit & balance'),(234020,41231,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(234021,41231,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(234022,41231,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(234023,41231,'blocks_10_acfe_flexible_toggle','1'),(234024,41231,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(234025,41231,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(234026,41231,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(234027,41231,'blocks_10_options_theme','#ffffff'),(234028,41231,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(234029,41231,'blocks_10_options',''),(234030,41231,'_blocks_10_options','field_617ac0b7f6c08'),(234031,41231,'blocks_10_show','selection'),(234032,41231,'_blocks_10_show','field_61a49cba9d946'),(234033,41231,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(234034,41231,'_blocks_10_courses','field_61b244781ee0a'),(234035,41231,'blocks_10_open_whats_included','1'),(234036,41231,'_blocks_10_open_whats_included','field_66ebfd679450c'),(234037,41231,'blocks_10_open_key_information','0'),(234038,41231,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(234039,41231,'blocks_10_open',''),(234040,41231,'_blocks_10_open','field_66ebfd009450b'),(234041,41231,'blocks_11_acfe_flexible_toggle',''),(234042,41231,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(234043,41231,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(234044,41231,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(234045,41231,'blocks_11_options_theme','#ffffff'),(234046,41231,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(234047,41231,'blocks_11_options_reverse','0'),(234048,41231,'_blocks_11_options_reverse','field_61768049bb8ac'),(234049,41231,'blocks_11_options',''),(234050,41231,'_blocks_11_options','field_617682517c334'),(234051,41231,'blocks_11_split_5050_image','40812'),(234052,41231,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(234053,41231,'blocks_11_split_5050_video',''),(234054,41231,'_blocks_11_split_5050_video','field_6239f3160848a'),(234055,41231,'blocks_11_split_5050_content_title','Optimise Performance '),(234056,41231,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(234057,41231,'blocks_11_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(234058,41231,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(234059,41231,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(234060,41231,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(234061,41231,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(234062,41231,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(234063,41231,'blocks_11_split_5050_content_actions','1'),(234064,41231,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(234065,41231,'blocks_11_split_5050_content',''),(234066,41231,'_blocks_11_split_5050_content','field_61767afceb8ba'),(234067,41231,'blocks_12_acfe_flexible_toggle',''),(234068,41231,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(234069,41231,'blocks_12_acfe_flexible_layout_title','Template'),(234070,41231,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(234071,41231,'blocks_12_template','40987'),(234072,41231,'_blocks_12_template','field_617bdd570fe01'),(234073,41231,'blocks_13_acfe_flexible_toggle',''),(234074,41231,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(234075,41231,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(234076,41231,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(234077,41231,'blocks_13_options_theme','#f5f5f5'),(234078,41231,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(234079,41231,'blocks_13_options_state','0'),(234080,41231,'_blocks_13_options_state','field_6239fcb7508c5'),(234081,41231,'blocks_13_options',''),(234082,41231,'_blocks_13_options','field_6177e2991ac44'),(234083,41231,'blocks_13_content_title',''),(234084,41231,'_blocks_13_content_title','field_64d237e8bb1e2'),(234085,41231,'blocks_13_content_heading','FAQ\'s'),(234086,41231,'_blocks_13_content_heading','field_64d237e8bb1e3'),(234087,41231,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(234088,41231,'_blocks_13_content_text','field_64d237e8bb1e4'),(234089,41231,'blocks_13_content_actions',''),(234090,41231,'_blocks_13_content_actions','field_64d237e8bb1e5'),(234091,41231,'blocks_13_content_align','left'),(234092,41231,'_blocks_13_content_align','field_64d2443e6b6aa'),(234093,41231,'blocks_13_content',''),(234094,41231,'_blocks_13_content','field_64d237e8bb1e1'),(234095,41231,'blocks_13_accordion_content','faqs'),(234096,41231,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(234097,41231,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(234098,41231,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(234099,41231,'blocks_13_actions',''),(234100,41231,'_blocks_13_actions','field_61a746a817f7a'),(234101,39245,'_yoast_wpseo_inclusive_language_score','90'),(234102,41232,'hide_hero','0'),(234103,41232,'_hide_hero','field_66a2380fcda39'),(234104,41232,'hero_title','Biomechanics and Podiatrists'),(234105,41232,'_hero_title','field_617571fe285e8'),(234106,41232,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(234107,41232,'_hero_text','field_6175723c285e9'),(234108,41232,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(234109,41232,'_hero_actions_0_button','field_61757281285eb'),(234110,41232,'hero_actions','1'),(234111,41232,'_hero_actions','field_61757270285ea'),(234112,41232,'hero_style','default'),(234113,41232,'_hero_style','field_62051d9dc5324'),(234114,41232,'_thumbnail_id','39247'),(234115,41232,'__thumbnail_id','field_617570855ddaf'),(234116,41232,'hero_image_pos_x','right'),(234117,41232,'_hero_image_pos_x','field_62ec3d05390bb'),(234118,41232,'hero_image_pos_y','top'),(234119,41232,'_hero_image_pos_y','field_62ec3d05390bc'),(234120,41232,'hero_image_pos',''),(234121,41232,'_hero_image_pos','field_62ec3d05390ba'),(234122,41232,'fft_hide_from_listings','0'),(234123,41232,'_fft_hide_from_listings','field_61f1320446ab2'),(234124,41232,'fft_page_format','default'),(234125,41232,'_fft_page_format','field_61ae213f1f218'),(234126,41232,'fft_hide_nav','0'),(234127,41232,'_fft_hide_nav','field_635bd5e43527c'),(234128,41232,'fft_hide_header_call_to_action','0'),(234129,41232,'_fft_hide_header_call_to_action','field_635bd6723527d'),(234130,41232,'fft_page_sitemap','0'),(234131,41232,'_fft_page_sitemap','field_61af9b34e8181'),(234132,41232,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(234133,41232,'_blocks','field_6176696113096'),(234134,41232,'blocks_2_acfe_flexible_toggle',''),(234135,41232,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(234136,41232,'blocks_2_acfe_flexible_layout_title','Form'),(234137,41232,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(234138,41232,'blocks_2_row_content_format','standard'),(234139,41232,'_blocks_2_row_content_format','field_6481ead962881'),(234140,41232,'blocks_2_row_content_title',''),(234141,41232,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(234142,41232,'blocks_2_row_content_heading','Enquire Today'),(234143,41232,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(234144,41232,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(234145,41232,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(234146,41232,'blocks_2_row_content_actions',''),(234147,41232,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(234148,41232,'blocks_2_row_content',''),(234149,41232,'_blocks_2_row_content','field_61a0f5f5b3db0'),(234150,41232,'blocks_2_row_form','40394'),(234151,41232,'_blocks_2_row_form','field_61a4ff2c0b08e'),(234152,41232,'blocks_2_row_form_button_label',''),(234153,41232,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(234154,41232,'blocks_0_acfe_flexible_toggle',''),(234155,41232,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(234156,41232,'blocks_0_acfe_flexible_layout_title','Template'),(234157,41232,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(234158,41232,'blocks_0_template','39087'),(234159,41232,'_blocks_0_template','field_617bdd570fe01'),(234160,41232,'blocks_1_acfe_flexible_toggle',''),(234161,41232,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(234162,41232,'blocks_1_acfe_flexible_layout_title','Steps'),(234163,41232,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(234164,41232,'blocks_1_row_content_title',''),(234165,41232,'_blocks_1_row_content_title','field_64888cd1e26e0'),(234166,41232,'blocks_1_row_content_heading','Benefits of training with us'),(234167,41232,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(234168,41232,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(234169,41232,'_blocks_1_row_content_text','field_64888ce2e26e2'),(234170,41232,'blocks_1_row_content_actions',''),(234171,41232,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(234172,41232,'blocks_1_row_content',''),(234173,41232,'_blocks_1_row_content','field_64888cb0e26df'),(234174,41232,'blocks_1_steps_0_icon','progression.svg'),(234175,41232,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(234176,41232,'blocks_1_steps_0_title','Earning Potential'),(234177,41232,'_blocks_1_steps_0_title','field_64888d94e26e7'),(234178,41232,'blocks_1_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(234179,41232,'_blocks_1_steps_0_text','field_64888d99e26e8'),(234180,41232,'blocks_1_steps_1_icon','support.svg'),(234181,41232,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(234182,41232,'blocks_1_steps_1_title','Lifetime Learning Promise'),(234183,41232,'_blocks_1_steps_1_title','field_64888d94e26e7'),(234184,41232,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(234185,41232,'_blocks_1_steps_1_text','field_64888d99e26e8'),(234186,41232,'blocks_1_steps_2_icon','qualification.svg'),(234187,41232,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(234188,41232,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(234189,41232,'_blocks_1_steps_2_title','field_64888d94e26e7'),(234190,41232,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(234191,41232,'_blocks_1_steps_2_text','field_64888d99e26e8'),(234192,41232,'blocks_1_steps_3_icon','leaders.svg'),(234193,41232,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(234194,41232,'blocks_1_steps_3_title','Stand Out From the Crowd'),(234195,41232,'_blocks_1_steps_3_title','field_64888d94e26e7'),(234196,41232,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(234197,41232,'_blocks_1_steps_3_text','field_64888d99e26e8'),(234198,41232,'blocks_1_steps','4'),(234199,41232,'_blocks_1_steps','field_64888d44e26e5'),(234200,41232,'blocks_3_acfe_flexible_toggle',''),(234201,41232,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(234202,41232,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(234203,41232,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(234204,41232,'blocks_3_options_theme','#ffffff'),(234205,41232,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(234206,41232,'blocks_3_options_reverse','0'),(234207,41232,'_blocks_3_options_reverse','field_61768049bb8ac'),(234208,41232,'blocks_3_options',''),(234209,41232,'_blocks_3_options','field_617682517c334'),(234210,41232,'blocks_3_split_5050_image','39617'),(234211,41232,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(234212,41232,'blocks_3_split_5050_video',''),(234213,41232,'_blocks_3_split_5050_video','field_6239f3160848a'),(234214,41232,'blocks_3_split_5050_content_title',''),(234215,41232,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(234216,41232,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(234217,41232,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(234218,41232,'blocks_3_split_5050_content_text','This integrated system takes on a full-body approach including the pelvis, spine, shoulder, knee, and foot biomechanical assessment programme. Helping podiatrists to find solutions to foot problems through understanding the entire body. By assessing in this way using this unique approach gives podiatrists the ability to retain clients longer, and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(234219,41232,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(234220,41232,'blocks_3_split_5050_content_actions',''),(234221,41232,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(234222,41232,'blocks_3_split_5050_content',''),(234223,41232,'_blocks_3_split_5050_content','field_61767afceb8ba'),(234224,41232,'blocks_4_acfe_flexible_toggle',''),(234225,41232,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(234226,41232,'blocks_4_acfe_flexible_layout_title','Tabs'),(234227,41232,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(234228,41232,'blocks_4_options_theme','#ffffff'),(234229,41232,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(234230,41232,'blocks_4_options',''),(234231,41232,'_blocks_4_options','field_6177cfcd8140f'),(234232,41232,'blocks_4_tabs_0_tab_label','What will I learn?'),(234233,41232,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(234234,41232,'blocks_4_tabs_0_tab_content_title',''),(234235,41232,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(234236,41232,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(234237,41232,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(234238,41232,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(234239,41232,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(234240,41232,'blocks_4_tabs_0_tab_content_actions',''),(234241,41232,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(234242,41232,'blocks_4_tabs_0_tab_content',''),(234243,41232,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(234244,41232,'blocks_4_tabs_0_tab_image','39076'),(234245,41232,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(234246,41232,'blocks_4_tabs_1_tab_label','What do I need?'),(234247,41232,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(234248,41232,'blocks_4_tabs_1_tab_content_title',''),(234249,41232,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(234250,41232,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(234251,41232,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(234252,41232,'blocks_4_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(234253,41232,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(234254,41232,'blocks_4_tabs_1_tab_content_actions',''),(234255,41232,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(234256,41232,'blocks_4_tabs_1_tab_content',''),(234257,41232,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(234258,41232,'blocks_4_tabs_1_tab_image','39223'),(234259,41232,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(234260,41232,'blocks_4_tabs_2_tab_label','Where can I learn?'),(234261,41232,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(234262,41232,'blocks_4_tabs_2_tab_content_title',''),(234263,41232,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(234264,41232,'blocks_4_tabs_2_tab_content_heading','Locations'),(234265,41232,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(234266,41232,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(234267,41232,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(234268,41232,'blocks_4_tabs_2_tab_content_actions',''),(234269,41232,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(234270,41232,'blocks_4_tabs_2_tab_content',''),(234271,41232,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(234272,41232,'blocks_4_tabs_2_tab_image','39224'),(234273,41232,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(234274,41232,'blocks_4_tabs','3'),(234275,41232,'_blocks_4_tabs','field_6177cff281419'),(234276,41232,'blocks_5_acfe_flexible_toggle',''),(234277,41232,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(234278,41232,'blocks_5_acfe_flexible_layout_title','Text Block'),(234279,41232,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(234280,41232,'blocks_5_options_theme','#b61234'),(234281,41232,'_blocks_5_options_theme','field_6176830e2ad17'),(234282,41232,'blocks_5_options',''),(234283,41232,'_blocks_5_options','field_6176830e2ad16'),(234284,41232,'blocks_5_text_block_heading','Fees & Funding Options'),(234285,41232,'_blocks_5_text_block_heading','field_617669d413097'),(234286,41232,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(234287,41232,'_blocks_5_text_block_content','field_617669ec13098'),(234288,41232,'blocks_6_acfe_flexible_toggle',''),(234289,41232,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(234290,41232,'blocks_6_acfe_flexible_layout_title','Icons'),(234291,41232,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(234292,41232,'blocks_6_options_theme','#b61234'),(234293,41232,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(234294,41232,'blocks_6_options_format','row'),(234295,41232,'_blocks_6_options_format','field_64bfde9a90690'),(234296,41232,'blocks_6_options',''),(234297,41232,'_blocks_6_options','field_64bfdd9b90684'),(234298,41232,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(234299,41232,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(234300,41232,'blocks_6_icon_row_items_0_label','Pay in Full'),(234301,41232,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(234302,41232,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(234303,41232,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(234304,41232,'blocks_6_icon_row_items_1_icon','finance.svg'),(234305,41232,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(234306,41232,'blocks_6_icon_row_items_1_label','0% finance'),(234307,41232,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(234308,41232,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(234309,41232,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(234310,41232,'blocks_6_icon_row_items_2_icon','deposit.svg'),(234311,41232,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(234312,41232,'blocks_6_icon_row_items_2_label','Deposit & balance'),(234313,41232,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(234314,41232,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(234315,41232,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(234316,41232,'blocks_6_icon_row_items','3'),(234317,41232,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(234318,41232,'blocks_8_acfe_flexible_toggle',''),(234319,41232,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(234320,41232,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(234321,41232,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(234322,41232,'blocks_8_testimonial_slider_content_title',''),(234323,41232,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(234324,41232,'blocks_8_testimonial_slider_content_heading','Testimonials'),(234325,41232,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(234326,41232,'blocks_8_testimonial_slider_content_text',''),(234327,41232,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(234328,41232,'blocks_8_testimonial_slider_content_actions',''),(234329,41232,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(234330,41232,'blocks_8_testimonial_slider_content',''),(234331,41232,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(234332,41232,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(234333,41232,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(234334,41232,'blocks_8_testimonial_slider_ambassador_bool','0'),(234335,41232,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(234336,41232,'blocks_9_acfe_flexible_toggle',''),(234337,41232,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(234338,41232,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(234339,41232,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(234340,41232,'blocks_9_options_theme','#ffffff'),(234341,41232,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(234342,41232,'blocks_9_options_state','0'),(234343,41232,'_blocks_9_options_state','field_6239fcb7508c5'),(234344,41232,'blocks_9_options',''),(234345,41232,'_blocks_9_options','field_6177e2991ac44'),(234346,41232,'blocks_9_content_title',''),(234347,41232,'_blocks_9_content_title','field_64d237e8bb1e2'),(234348,41232,'blocks_9_content_heading','Frequently asked questions '),(234349,41232,'_blocks_9_content_heading','field_64d237e8bb1e3'),(234350,41232,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(234351,41232,'_blocks_9_content_text','field_64d237e8bb1e4'),(234352,41232,'blocks_9_content_actions',''),(234353,41232,'_blocks_9_content_actions','field_64d237e8bb1e5'),(234354,41232,'blocks_9_content_align','left'),(234355,41232,'_blocks_9_content_align','field_64d2443e6b6aa'),(234356,41232,'blocks_9_content',''),(234357,41232,'_blocks_9_content','field_64d237e8bb1e1'),(234358,41232,'blocks_9_accordion_content','faqs'),(234359,41232,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(234360,41232,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(234361,41232,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(234362,41232,'blocks_9_actions',''),(234363,41232,'_blocks_9_actions','field_61a746a817f7a'),(234364,41232,'blocks_7_acfe_flexible_toggle',''),(234365,41232,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(234366,41232,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(234367,41232,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(234368,41232,'blocks_7_options_theme','#f5f5f5'),(234369,41232,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(234370,41232,'blocks_7_options_reverse','0'),(234371,41232,'_blocks_7_options_reverse','field_61768049bb8ac'),(234372,41232,'blocks_7_options',''),(234373,41232,'_blocks_7_options','field_617682517c334'),(234374,41232,'blocks_7_split_5050_image','40920'),(234375,41232,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(234376,41232,'blocks_7_split_5050_video',''),(234377,41232,'_blocks_7_split_5050_video','field_6239f3160848a'),(234378,41232,'blocks_7_split_5050_content_title',''),(234379,41232,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(234380,41232,'blocks_7_split_5050_content_heading','Why Study This Course?'),(234381,41232,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(234382,41232,'blocks_7_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(234383,41232,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(234384,41232,'blocks_7_split_5050_content_actions',''),(234385,41232,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(234386,41232,'blocks_7_split_5050_content',''),(234387,41232,'_blocks_7_split_5050_content','field_61767afceb8ba'),(234388,40265,'_edit_last','13'),(234389,40265,'_wp_old_date','2024-09-10'),(234390,40265,'hide_hero','0'),(234391,40265,'_hide_hero','field_66a2380fcda39'),(234392,40265,'hero_title','Introduction to Biomechanics Education Course'),(234393,40265,'_hero_title','field_617571fe285e8'),(234394,40265,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!\r\n'),(234395,40265,'_hero_text','field_6175723c285e9'),(234396,40265,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(234397,40265,'_hero_actions_0_button','field_61757281285eb'),(234398,40265,'hero_actions','1'),(234399,40265,'_hero_actions','field_61757270285ea'),(234400,40265,'hero_style','default'),(234401,40265,'_hero_style','field_62051d9dc5324'),(234402,40265,'_thumbnail_id','41400'),(234403,40265,'__thumbnail_id','field_617570855ddaf'),(234404,40265,'hero_image_pos_x','right'),(234405,40265,'_hero_image_pos_x','field_62ec3d05390bb'),(234406,40265,'hero_image_pos_y','top'),(234407,40265,'_hero_image_pos_y','field_62ec3d05390bc'),(234408,40265,'hero_image_pos',''),(234409,40265,'_hero_image_pos','field_62ec3d05390ba'),(234410,40265,'fft_hide_from_listings','0'),(234411,40265,'_fft_hide_from_listings','field_61f1320446ab2'),(234412,40265,'fft_page_format','default'),(234413,40265,'_fft_page_format','field_61ae213f1f218'),(234414,40265,'fft_hide_nav','0'),(234415,40265,'_fft_hide_nav','field_635bd5e43527c'),(234416,40265,'fft_hide_header_call_to_action','0'),(234417,40265,'_fft_hide_header_call_to_action','field_635bd6723527d'),(234418,40265,'fft_page_sitemap','0'),(234419,40265,'_fft_page_sitemap','field_61af9b34e8181'),(234420,40265,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(234421,40265,'_blocks','field_6176696113096'),(234422,40265,'course_label_text','Introduction to Biomechanics Education Course'),(234423,40265,'_course_label_text','field_61e17babf71fa'),(234424,40265,'course_label',''),(234425,40265,'_course_label','field_61e12f92749a7'),(234426,40265,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(234427,40265,'_course_description','field_617ac5788e5e1'),(234428,40265,'course_key_info',''),(234429,40265,'_course_key_info','field_617ac6ad8e5e2'),(234430,40265,'course_included',''),(234431,40265,'_course_included','field_617ac6f08e5e4'),(234432,40265,'_yoast_wpseo_primary_course-cat','406'),(234433,40265,'_yoast_wpseo_inclusive_language_score','90'),(234434,40265,'_yoast_wpseo_estimated-reading-time-minutes','1'),(234435,41233,'hide_hero','0'),(234436,41233,'_hide_hero','field_66a2380fcda39'),(234437,41233,'hero_title',''),(234438,41233,'_hero_title','field_617571fe285e8'),(234439,41233,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!\r\n'),(234440,41233,'_hero_text','field_6175723c285e9'),(234441,41233,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(234442,41233,'_hero_actions_0_button','field_61757281285eb'),(234443,41233,'hero_actions','1'),(234444,41233,'_hero_actions','field_61757270285ea'),(234445,41233,'hero_style','default'),(234446,41233,'_hero_style','field_62051d9dc5324'),(234447,41233,'_thumbnail_id','41228'),(234448,41233,'__thumbnail_id','field_617570855ddaf'),(234449,41233,'hero_image_pos_x','right'),(234450,41233,'_hero_image_pos_x','field_62ec3d05390bb'),(234451,41233,'hero_image_pos_y','top'),(234452,41233,'_hero_image_pos_y','field_62ec3d05390bc'),(234453,41233,'hero_image_pos',''),(234454,41233,'_hero_image_pos','field_62ec3d05390ba'),(234455,41233,'fft_hide_from_listings','0'),(234456,41233,'_fft_hide_from_listings','field_61f1320446ab2'),(234457,41233,'fft_page_format','default'),(234458,41233,'_fft_page_format','field_61ae213f1f218'),(234459,41233,'fft_hide_nav','0'),(234460,41233,'_fft_hide_nav','field_635bd5e43527c'),(234461,41233,'fft_hide_header_call_to_action','0'),(234462,41233,'_fft_hide_header_call_to_action','field_635bd6723527d'),(234463,41233,'fft_page_sitemap','0'),(234464,41233,'_fft_page_sitemap','field_61af9b34e8181'),(234465,41233,'blocks',''),(234466,41233,'_blocks','field_6176696113096'),(234467,41233,'course_label_text',''),(234468,41233,'_course_label_text','field_61e17babf71fa'),(234469,41233,'course_label',''),(234470,41233,'_course_label','field_61e12f92749a7'),(234471,41233,'course_description',''),(234472,41233,'_course_description','field_617ac5788e5e1'),(234473,41233,'course_key_info',''),(234474,41233,'_course_key_info','field_617ac6ad8e5e2'),(234475,41233,'course_included',''),(234476,41233,'_course_included','field_617ac6f08e5e4'),(234519,41235,'hide_hero','0'),(234520,41235,'_hide_hero','field_66a2380fcda39'),(234521,41235,'hero_title','Introduction to Biomechanics Education Course'),(234522,41235,'_hero_title','field_617571fe285e8'),(234523,41235,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!\r\n'),(234524,41235,'_hero_text','field_6175723c285e9'),(234525,41235,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(234526,41235,'_hero_actions_0_button','field_61757281285eb'),(234527,41235,'hero_actions','1'),(234528,41235,'_hero_actions','field_61757270285ea'),(234529,41235,'hero_style','default'),(234530,41235,'_hero_style','field_62051d9dc5324'),(234531,41235,'_thumbnail_id','41228'),(234532,41235,'__thumbnail_id','field_617570855ddaf'),(234533,41235,'hero_image_pos_x','right'),(234534,41235,'_hero_image_pos_x','field_62ec3d05390bb'),(234535,41235,'hero_image_pos_y','top'),(234536,41235,'_hero_image_pos_y','field_62ec3d05390bc'),(234537,41235,'hero_image_pos',''),(234538,41235,'_hero_image_pos','field_62ec3d05390ba'),(234539,41235,'fft_hide_from_listings','0'),(234540,41235,'_fft_hide_from_listings','field_61f1320446ab2'),(234541,41235,'fft_page_format','default'),(234542,41235,'_fft_page_format','field_61ae213f1f218'),(234543,41235,'fft_hide_nav','0'),(234544,41235,'_fft_hide_nav','field_635bd5e43527c'),(234545,41235,'fft_hide_header_call_to_action','0'),(234546,41235,'_fft_hide_header_call_to_action','field_635bd6723527d'),(234547,41235,'fft_page_sitemap','0'),(234548,41235,'_fft_page_sitemap','field_61af9b34e8181'),(234549,41235,'blocks',''),(234550,41235,'_blocks','field_6176696113096'),(234551,41235,'course_label_text',''),(234552,41235,'_course_label_text','field_61e17babf71fa'),(234553,41235,'course_label',''),(234554,41235,'_course_label','field_61e12f92749a7'),(234555,41235,'course_description',''),(234556,41235,'_course_description','field_617ac5788e5e1'),(234557,41235,'course_key_info',''),(234558,41235,'_course_key_info','field_617ac6ad8e5e2'),(234559,41235,'course_included',''),(234560,41235,'_course_included','field_617ac6f08e5e4'),(234603,40265,'blocks_0_acfe_flexible_toggle',''),(234604,40265,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(234605,40265,'blocks_0_acfe_flexible_layout_title','Icons'),(234606,40265,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(234607,40265,'blocks_0_options_theme','#ffffff'),(234608,40265,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(234609,40265,'blocks_0_options_format','row'),(234610,40265,'_blocks_0_options_format','field_64bfde9a90690'),(234611,40265,'blocks_0_options',''),(234612,40265,'_blocks_0_options','field_64bfdd9b90684'),(234613,40265,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(234614,40265,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(234615,40265,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(234616,40265,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(234617,40265,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(234618,40265,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(234619,40265,'blocks_0_icon_row_items_1_icon','build-career.svg'),(234620,40265,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(234621,40265,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(234622,40265,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(234623,40265,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(234624,40265,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(234625,40265,'blocks_0_icon_row_items_2_icon','diversify.svg'),(234626,40265,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(234627,40265,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(234628,40265,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(234629,40265,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(234630,40265,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(234631,40265,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(234632,40265,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(234633,40265,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(234634,40265,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(234635,40265,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(234636,40265,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(234637,40265,'blocks_0_icon_row_items','4'),(234638,40265,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(234639,41237,'hide_hero','0'),(234640,41237,'_hide_hero','field_66a2380fcda39'),(234641,41237,'hero_title','Introduction to Biomechanics Education Course'),(234642,41237,'_hero_title','field_617571fe285e8'),(234643,41237,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!\r\n'),(234644,41237,'_hero_text','field_6175723c285e9'),(234645,41237,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(234646,41237,'_hero_actions_0_button','field_61757281285eb'),(234647,41237,'hero_actions','1'),(234648,41237,'_hero_actions','field_61757270285ea'),(234649,41237,'hero_style','default'),(234650,41237,'_hero_style','field_62051d9dc5324'),(234651,41237,'_thumbnail_id','41228'),(234652,41237,'__thumbnail_id','field_617570855ddaf'),(234653,41237,'hero_image_pos_x','right'),(234654,41237,'_hero_image_pos_x','field_62ec3d05390bb'),(234655,41237,'hero_image_pos_y','top'),(234656,41237,'_hero_image_pos_y','field_62ec3d05390bc'),(234657,41237,'hero_image_pos',''),(234658,41237,'_hero_image_pos','field_62ec3d05390ba'),(234659,41237,'fft_hide_from_listings','0'),(234660,41237,'_fft_hide_from_listings','field_61f1320446ab2'),(234661,41237,'fft_page_format','default'),(234662,41237,'_fft_page_format','field_61ae213f1f218'),(234663,41237,'fft_hide_nav','0'),(234664,41237,'_fft_hide_nav','field_635bd5e43527c'),(234665,41237,'fft_hide_header_call_to_action','0'),(234666,41237,'_fft_hide_header_call_to_action','field_635bd6723527d'),(234667,41237,'fft_page_sitemap','0'),(234668,41237,'_fft_page_sitemap','field_61af9b34e8181'),(234669,41237,'blocks','a:1:{i:0;s:5:\"icons\";}'),(234670,41237,'_blocks','field_6176696113096'),(234671,41237,'course_label_text',''),(234672,41237,'_course_label_text','field_61e17babf71fa'),(234673,41237,'course_label',''),(234674,41237,'_course_label','field_61e12f92749a7'),(234675,41237,'course_description',''),(234676,41237,'_course_description','field_617ac5788e5e1'),(234677,41237,'course_key_info',''),(234678,41237,'_course_key_info','field_617ac6ad8e5e2'),(234679,41237,'course_included',''),(234680,41237,'_course_included','field_617ac6f08e5e4'),(234681,41237,'blocks_0_acfe_flexible_toggle',''),(234682,41237,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(234683,41237,'blocks_0_acfe_flexible_layout_title','Icons'),(234684,41237,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(234685,41237,'blocks_0_options_theme','#ffffff'),(234686,41237,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(234687,41237,'blocks_0_options_format','row'),(234688,41237,'_blocks_0_options_format','field_64bfde9a90690'),(234689,41237,'blocks_0_options',''),(234690,41237,'_blocks_0_options','field_64bfdd9b90684'),(234691,41237,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(234692,41237,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(234693,41237,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU BUY'),(234694,41237,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(234695,41237,'blocks_0_icon_row_items_0_text','Get to know Biomechanics Education training for free'),(234696,41237,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(234697,41237,'blocks_0_icon_row_items_1_icon','build-career.svg'),(234698,41237,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(234699,41237,'blocks_0_icon_row_items_1_label','EXPLORE SKILLS PROGRESSION'),(234700,41237,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(234701,41237,'blocks_0_icon_row_items_1_text','Understand the different ways that a Biomechanics Education course could elevate your career'),(234702,41237,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(234703,41237,'blocks_0_icon_row_items_2_icon','diversify.svg'),(234704,41237,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(234705,41237,'blocks_0_icon_row_items_2_label','CAREER OPTIONS'),(234706,41237,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(234707,41237,'blocks_0_icon_row_items_2_text','Understand where a Diploma in Biomechanics Education can take you'),(234708,41237,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(234709,41237,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(234710,41237,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(234711,41237,'blocks_0_icon_row_items_3_label','60 MINUTES ONLINE LEARNING'),(234712,41237,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(234713,41237,'blocks_0_icon_row_items_3_text','Easily accessible and full of information'),(234714,41237,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(234715,41237,'blocks_0_icon_row_items','4'),(234716,41237,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(234717,40265,'blocks_1_acfe_flexible_toggle',''),(234718,40265,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(234719,40265,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(234720,40265,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(234721,40265,'blocks_1_options_theme','#ffffff'),(234722,40265,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(234723,40265,'blocks_1_options_reverse','0'),(234724,40265,'_blocks_1_options_reverse','field_61768049bb8ac'),(234725,40265,'blocks_1_options',''),(234726,40265,'_blocks_1_options','field_617682517c334'),(234727,40265,'blocks_1_split_5050_image','41239'),(234728,40265,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(234729,40265,'blocks_1_split_5050_video',''),(234730,40265,'_blocks_1_split_5050_video','field_6239f3160848a'),(234731,40265,'blocks_1_split_5050_content_title',''),(234732,40265,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(234733,40265,'blocks_1_split_5050_content_heading','Course Overview'),(234734,40265,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(234735,40265,'blocks_1_split_5050_content_text','Unlock the secrets of intrinsic biomechanics and elevate your Pilates programming and coaching. By mastering these concepts, you\'ll become a sought-after expert in the field, gaining unique skills that set you apart in the market.\r\n\r\nStart your journey with this 60-minute course and become an Intrinsic Biomechanics Coach. Join us in promoting active well-being and improving health on a broader scale!\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access this course for free.\r\n\r\n​'),(234736,40265,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(234737,40265,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(234738,40265,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(234739,40265,'blocks_1_split_5050_content_actions','1'),(234740,40265,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(234741,40265,'blocks_1_split_5050_content',''),(234742,40265,'_blocks_1_split_5050_content','field_61767afceb8ba'),(234743,41238,'hide_hero','0'),(234744,41238,'_hide_hero','field_66a2380fcda39'),(234745,41238,'hero_title','Introduction to Biomechanics Education Course'),(234746,41238,'_hero_title','field_617571fe285e8'),(234747,41238,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!\r\n'),(234748,41238,'_hero_text','field_6175723c285e9'),(234749,41238,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(234750,41238,'_hero_actions_0_button','field_61757281285eb'),(234751,41238,'hero_actions','1'),(234752,41238,'_hero_actions','field_61757270285ea'),(234753,41238,'hero_style','default'),(234754,41238,'_hero_style','field_62051d9dc5324'),(234755,41238,'_thumbnail_id','41228'),(234756,41238,'__thumbnail_id','field_617570855ddaf'),(234757,41238,'hero_image_pos_x','right'),(234758,41238,'_hero_image_pos_x','field_62ec3d05390bb'),(234759,41238,'hero_image_pos_y','top'),(234760,41238,'_hero_image_pos_y','field_62ec3d05390bc'),(234761,41238,'hero_image_pos',''),(234762,41238,'_hero_image_pos','field_62ec3d05390ba'),(234763,41238,'fft_hide_from_listings','0'),(234764,41238,'_fft_hide_from_listings','field_61f1320446ab2'),(234765,41238,'fft_page_format','default'),(234766,41238,'_fft_page_format','field_61ae213f1f218'),(234767,41238,'fft_hide_nav','0'),(234768,41238,'_fft_hide_nav','field_635bd5e43527c'),(234769,41238,'fft_hide_header_call_to_action','0'),(234770,41238,'_fft_hide_header_call_to_action','field_635bd6723527d'),(234771,41238,'fft_page_sitemap','0'),(234772,41238,'_fft_page_sitemap','field_61af9b34e8181'),(234773,41238,'blocks','a:2:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";}'),(234774,41238,'_blocks','field_6176696113096'),(234775,41238,'course_label_text',''),(234776,41238,'_course_label_text','field_61e17babf71fa'),(234777,41238,'course_label',''),(234778,41238,'_course_label','field_61e12f92749a7'),(234779,41238,'course_description',''),(234780,41238,'_course_description','field_617ac5788e5e1'),(234781,41238,'course_key_info',''),(234782,41238,'_course_key_info','field_617ac6ad8e5e2'),(234783,41238,'course_included',''),(234784,41238,'_course_included','field_617ac6f08e5e4'),(234785,41238,'blocks_0_acfe_flexible_toggle',''),(234786,41238,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(234787,41238,'blocks_0_acfe_flexible_layout_title','Icons'),(234788,41238,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(234789,41238,'blocks_0_options_theme','#ffffff'),(234790,41238,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(234791,41238,'blocks_0_options_format','row'),(234792,41238,'_blocks_0_options_format','field_64bfde9a90690'),(234793,41238,'blocks_0_options',''),(234794,41238,'_blocks_0_options','field_64bfdd9b90684'),(234795,41238,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(234796,41238,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(234797,41238,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU BUY'),(234798,41238,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(234799,41238,'blocks_0_icon_row_items_0_text','Get to know Biomechanics Education training for free'),(234800,41238,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(234801,41238,'blocks_0_icon_row_items_1_icon','build-career.svg'),(234802,41238,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(234803,41238,'blocks_0_icon_row_items_1_label','EXPLORE SKILLS PROGRESSION'),(234804,41238,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(234805,41238,'blocks_0_icon_row_items_1_text','Understand the different ways that a Biomechanics Education course could elevate your career'),(234806,41238,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(234807,41238,'blocks_0_icon_row_items_2_icon','diversify.svg'),(234808,41238,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(234809,41238,'blocks_0_icon_row_items_2_label','CAREER OPTIONS'),(234810,41238,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(234811,41238,'blocks_0_icon_row_items_2_text','Understand where a Diploma in Biomechanics Education can take you'),(234812,41238,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(234813,41238,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(234814,41238,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(234815,41238,'blocks_0_icon_row_items_3_label','60 MINUTES ONLINE LEARNING'),(234816,41238,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(234817,41238,'blocks_0_icon_row_items_3_text','Easily accessible and full of information'),(234818,41238,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(234819,41238,'blocks_0_icon_row_items','4'),(234820,41238,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(234821,41238,'blocks_1_acfe_flexible_toggle',''),(234822,41238,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(234823,41238,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(234824,41238,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(234825,41238,'blocks_1_options_theme','#ffffff'),(234826,41238,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(234827,41238,'blocks_1_options_reverse','0'),(234828,41238,'_blocks_1_options_reverse','field_61768049bb8ac'),(234829,41238,'blocks_1_options',''),(234830,41238,'_blocks_1_options','field_617682517c334'),(234831,41238,'blocks_1_split_5050_image',''),(234832,41238,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(234833,41238,'blocks_1_split_5050_video',''),(234834,41238,'_blocks_1_split_5050_video','field_6239f3160848a'),(234835,41238,'blocks_1_split_5050_content_title',''),(234836,41238,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(234837,41238,'blocks_1_split_5050_content_heading','Course Overview'),(234838,41238,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(234839,41238,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nGet started on this 60 minute course to begin your journey towards becoming an Intrinsic Biomechanics Coach and join the movement towards active well-being and improve health at a population level!\r\n\r\nUse code intro at check out to get this course for free.\r\n\r\n​'),(234840,41238,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(234841,41238,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(234842,41238,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(234843,41238,'blocks_1_split_5050_content_actions','1'),(234844,41238,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(234845,41238,'blocks_1_split_5050_content',''),(234846,41238,'_blocks_1_split_5050_content','field_61767afceb8ba'),(234847,41239,'_wp_attached_file','2024/10/BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1.jpg'),(234848,41239,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:69:\"2024/10/BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1.jpg\";s:8:\"filesize\";i:138613;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87662;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25790;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69237;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33135;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-900x800.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116259;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25383;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87662;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23595;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-675x800.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83894;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-900x800.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116259;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28350;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96869;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22357;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:69:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78116;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:70:\"BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125760;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(234849,40265,'blocks_2_acfe_flexible_toggle',''),(234850,40265,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(234851,40265,'blocks_2_acfe_flexible_layout_title','Timeline'),(234852,40265,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(234853,40265,'blocks_2_options_theme','#ffffff'),(234854,40265,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(234855,40265,'blocks_2_options',''),(234856,40265,'_blocks_2_options','field_6177de53d1195'),(234857,40265,'blocks_2_timeline_content_title',''),(234858,40265,'_blocks_2_timeline_content_title','field_6177de53d1198'),(234859,40265,'blocks_2_timeline_content_heading','How to enrol on this course'),(234860,40265,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(234861,40265,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(234862,40265,'_blocks_2_timeline_content_text','field_6177de53d119a'),(234863,40265,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(234864,40265,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(234865,40265,'blocks_2_timeline_content_actions','1'),(234866,40265,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(234867,40265,'blocks_2_timeline_content',''),(234868,40265,'_blocks_2_timeline_content','field_6177de53d1197'),(234869,40265,'blocks_2_timeline_items_0_title','Enrol Now'),(234870,40265,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(234871,40265,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(234872,40265,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(234873,40265,'blocks_2_timeline_items_1_title','Progress to Checkout'),(234874,40265,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(234875,40265,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(234876,40265,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(234877,40265,'blocks_2_timeline_items_2_title','Get Access'),(234878,40265,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(234879,40265,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(234880,40265,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(234881,40265,'blocks_2_timeline_items_3_title','Complete the Course'),(234882,40265,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(234883,40265,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(234884,40265,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(234885,40265,'blocks_2_timeline_items','4'),(234886,40265,'_blocks_2_timeline_items','field_6177de53d119d'),(234887,41240,'hide_hero','0'),(234888,41240,'_hide_hero','field_66a2380fcda39'),(234889,41240,'hero_title','Introduction to Biomechanics Education Course'),(234890,41240,'_hero_title','field_617571fe285e8'),(234891,41240,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!\r\n'),(234892,41240,'_hero_text','field_6175723c285e9'),(234893,41240,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(234894,41240,'_hero_actions_0_button','field_61757281285eb'),(234895,41240,'hero_actions','1'),(234896,41240,'_hero_actions','field_61757270285ea'),(234897,41240,'hero_style','default'),(234898,41240,'_hero_style','field_62051d9dc5324'),(234899,41240,'_thumbnail_id','41228'),(234900,41240,'__thumbnail_id','field_617570855ddaf'),(234901,41240,'hero_image_pos_x','right'),(234902,41240,'_hero_image_pos_x','field_62ec3d05390bb'),(234903,41240,'hero_image_pos_y','top'),(234904,41240,'_hero_image_pos_y','field_62ec3d05390bc'),(234905,41240,'hero_image_pos',''),(234906,41240,'_hero_image_pos','field_62ec3d05390ba'),(234907,41240,'fft_hide_from_listings','0'),(234908,41240,'_fft_hide_from_listings','field_61f1320446ab2'),(234909,41240,'fft_page_format','default'),(234910,41240,'_fft_page_format','field_61ae213f1f218'),(234911,41240,'fft_hide_nav','0'),(234912,41240,'_fft_hide_nav','field_635bd5e43527c'),(234913,41240,'fft_hide_header_call_to_action','0'),(234914,41240,'_fft_hide_header_call_to_action','field_635bd6723527d'),(234915,41240,'fft_page_sitemap','0'),(234916,41240,'_fft_page_sitemap','field_61af9b34e8181'),(234917,41240,'blocks','a:3:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";}'),(234918,41240,'_blocks','field_6176696113096'),(234919,41240,'course_label_text',''),(234920,41240,'_course_label_text','field_61e17babf71fa'),(234921,41240,'course_label',''),(234922,41240,'_course_label','field_61e12f92749a7'),(234923,41240,'course_description',''),(234924,41240,'_course_description','field_617ac5788e5e1'),(234925,41240,'course_key_info',''),(234926,41240,'_course_key_info','field_617ac6ad8e5e2'),(234927,41240,'course_included',''),(234928,41240,'_course_included','field_617ac6f08e5e4'),(234929,41240,'blocks_0_acfe_flexible_toggle',''),(234930,41240,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(234931,41240,'blocks_0_acfe_flexible_layout_title','Icons'),(234932,41240,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(234933,41240,'blocks_0_options_theme','#ffffff'),(234934,41240,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(234935,41240,'blocks_0_options_format','row'),(234936,41240,'_blocks_0_options_format','field_64bfde9a90690'),(234937,41240,'blocks_0_options',''),(234938,41240,'_blocks_0_options','field_64bfdd9b90684'),(234939,41240,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(234940,41240,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(234941,41240,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU BUY'),(234942,41240,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(234943,41240,'blocks_0_icon_row_items_0_text','Get to know Biomechanics Education training for free'),(234944,41240,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(234945,41240,'blocks_0_icon_row_items_1_icon','build-career.svg'),(234946,41240,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(234947,41240,'blocks_0_icon_row_items_1_label','EXPLORE SKILLS PROGRESSION'),(234948,41240,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(234949,41240,'blocks_0_icon_row_items_1_text','Understand the different ways that a Biomechanics Education course could elevate your career'),(234950,41240,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(234951,41240,'blocks_0_icon_row_items_2_icon','diversify.svg'),(234952,41240,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(234953,41240,'blocks_0_icon_row_items_2_label','CAREER OPTIONS'),(234954,41240,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(234955,41240,'blocks_0_icon_row_items_2_text','Understand where a Diploma in Biomechanics Education can take you'),(234956,41240,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(234957,41240,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(234958,41240,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(234959,41240,'blocks_0_icon_row_items_3_label','60 MINUTES ONLINE LEARNING'),(234960,41240,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(234961,41240,'blocks_0_icon_row_items_3_text','Easily accessible and full of information'),(234962,41240,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(234963,41240,'blocks_0_icon_row_items','4'),(234964,41240,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(234965,41240,'blocks_1_acfe_flexible_toggle',''),(234966,41240,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(234967,41240,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(234968,41240,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(234969,41240,'blocks_1_options_theme','#ffffff'),(234970,41240,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(234971,41240,'blocks_1_options_reverse','0'),(234972,41240,'_blocks_1_options_reverse','field_61768049bb8ac'),(234973,41240,'blocks_1_options',''),(234974,41240,'_blocks_1_options','field_617682517c334'),(234975,41240,'blocks_1_split_5050_image','41239'),(234976,41240,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(234977,41240,'blocks_1_split_5050_video',''),(234978,41240,'_blocks_1_split_5050_video','field_6239f3160848a'),(234979,41240,'blocks_1_split_5050_content_title',''),(234980,41240,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(234981,41240,'blocks_1_split_5050_content_heading','Course Overview'),(234982,41240,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(234983,41240,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nGet started on this 60 minute course to begin your journey towards becoming an Intrinsic Biomechanics Coach and join the movement towards active well-being and improve health at a population level!\r\n\r\nUse code intro at check out to get this course for free.\r\n\r\n​'),(234984,41240,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(234985,41240,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(234986,41240,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(234987,41240,'blocks_1_split_5050_content_actions','1'),(234988,41240,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(234989,41240,'blocks_1_split_5050_content',''),(234990,41240,'_blocks_1_split_5050_content','field_61767afceb8ba'),(234991,41240,'blocks_2_acfe_flexible_toggle',''),(234992,41240,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(234993,41240,'blocks_2_acfe_flexible_layout_title','Timeline'),(234994,41240,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(234995,41240,'blocks_2_options_theme','#ffffff'),(234996,41240,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(234997,41240,'blocks_2_options',''),(234998,41240,'_blocks_2_options','field_6177de53d1195'),(234999,41240,'blocks_2_timeline_content_title',''),(235000,41240,'_blocks_2_timeline_content_title','field_6177de53d1198'),(235001,41240,'blocks_2_timeline_content_heading','How to enrol on this course'),(235002,41240,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(235003,41240,'blocks_2_timeline_content_text','Signing up for this course is as easy as 1, 2, 3! ​\r\n\r\nFollow these steps and get instant access to our online e-learning platform.\r\n\r\n<strong>Don’t forget to use code intro at check out to get this course for free.</strong>'),(235004,41240,'_blocks_2_timeline_content_text','field_6177de53d119a'),(235005,41240,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(235006,41240,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(235007,41240,'blocks_2_timeline_content_actions','1'),(235008,41240,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(235009,41240,'blocks_2_timeline_content',''),(235010,41240,'_blocks_2_timeline_content','field_6177de53d1197'),(235011,41240,'blocks_2_timeline_items_0_title','Enrol Now'),(235012,41240,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(235013,41240,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(235014,41240,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(235015,41240,'blocks_2_timeline_items_1_title','Progress to Checkout'),(235016,41240,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(235017,41240,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(235018,41240,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(235019,41240,'blocks_2_timeline_items_2_title','Get Access'),(235020,41240,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(235021,41240,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(235022,41240,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(235023,41240,'blocks_2_timeline_items_3_title','Complete the Course'),(235024,41240,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(235025,41240,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(235026,41240,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(235027,41240,'blocks_2_timeline_items','4'),(235028,41240,'_blocks_2_timeline_items','field_6177de53d119d'),(235029,41241,'_wp_attached_file','2024/10/BiomechanicsEducation_Workshop_Fareham_web-4-400x225-1.webp'),(235030,41241,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:400;s:6:\"height\";i:225;s:4:\"file\";s:67:\"2024/10/BiomechanicsEducation_Workshop_Fareham_web-4-400x225-1.webp\";s:8:\"filesize\";i:13144;s:5:\"sizes\";a:1:{s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:67:\"BiomechanicsEducation_Workshop_Fareham_web-4-400x225-1-300x225.webp\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:15880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(235031,41242,'_wp_attached_file','2024/10/fullsizeoutput_540b-900x506-1.webp'),(235032,41242,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:900;s:6:\"height\";i:506;s:4:\"file\";s:42:\"2024/10/fullsizeoutput_540b-900x506-1.webp\";s:8:\"filesize\";i:22354;s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"fullsizeoutput_540b-900x506-1-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11462;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:42:\"fullsizeoutput_540b-900x506-1-768x432.webp\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:24082;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:42:\"fullsizeoutput_540b-900x506-1-400x400.webp\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13090;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:42:\"fullsizeoutput_540b-900x506-1-400x266.webp\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:12924;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:42:\"fullsizeoutput_540b-900x506-1-300x400.webp\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:10076;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:42:\"fullsizeoutput_540b-900x506-1-675x506.webp\";s:5:\"width\";i:675;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:22262;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:42:\"fullsizeoutput_540b-900x506-1-400x300.webp\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:13440;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:42:\"fullsizeoutput_540b-900x506-1-400x225.webp\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:11462;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(235033,40265,'blocks_3_acfe_flexible_toggle',''),(235034,40265,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(235035,40265,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(235036,40265,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(235037,40265,'blocks_3_options_theme','#ffffff'),(235038,40265,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(235039,40265,'blocks_3_options_reverse','0'),(235040,40265,'_blocks_3_options_reverse','field_61768049bb8ac'),(235041,40265,'blocks_3_options',''),(235042,40265,'_blocks_3_options','field_617682517c334'),(235043,40265,'blocks_3_split_5050_image',''),(235044,40265,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(235045,40265,'blocks_3_split_5050_video','https://youtu.be/crqXrpFsDyw'),(235046,40265,'_blocks_3_split_5050_video','field_6239f3160848a'),(235047,40265,'blocks_3_split_5050_content_title',''),(235048,40265,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(235049,40265,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(235050,40265,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(235051,40265,'blocks_3_split_5050_content_text','As a Pilates instructor, you understand movement’s potential - but imagine taking it even further. The Biomechanics Coaching Diploma is designed to deepen your knowledge of human movement, helping you assess and enhance your clients’ biomechanics for better outcomes.\r\n\r\nTom Waldron, a Pilates Instructor and Biomechanics Coach (International Master Trainer), describes it as a game-changer:\r\n\r\n<em>\"The diploma taught me to view the body as an integrated system. I now have the tools to address movement restrictions holistically, helping my clients move more freely, prevent injuries, and reduce pain. It has truly elevated my practice.\"</em>\r\n\r\nReady to explore? Use code <strong>INTRO</strong> at checkout to access our introductory course for free and begin your journey to deeper expertise.'),(235052,40265,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(235053,40265,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(235054,40265,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(235055,40265,'blocks_3_split_5050_content_actions','1'),(235056,40265,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(235057,40265,'blocks_3_split_5050_content',''),(235058,40265,'_blocks_3_split_5050_content','field_61767afceb8ba'),(235059,40265,'blocks_4_acfe_flexible_toggle',''),(235060,40265,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(235061,40265,'blocks_4_acfe_flexible_layout_title','Icons'),(235062,40265,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(235063,40265,'blocks_4_options_theme','#ffffff'),(235064,40265,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(235065,40265,'blocks_4_options_format','grid'),(235066,40265,'_blocks_4_options_format','field_64bfde9a90690'),(235067,40265,'blocks_4_options',''),(235068,40265,'_blocks_4_options','field_64bfdd9b90684'),(235069,40265,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(235070,40265,'_blocks_4_row_content_title','field_64bfdd9b90687'),(235071,40265,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(235072,40265,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(235073,40265,'blocks_4_row_content_text',''),(235074,40265,'_blocks_4_row_content_text','field_64bfdd9b90689'),(235075,40265,'blocks_4_row_content_actions',''),(235076,40265,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(235077,40265,'blocks_4_row_content',''),(235078,40265,'_blocks_4_row_content','field_64bfdd9b90686'),(235079,40265,'blocks_4_icon_row_items_0_icon','build-career.svg'),(235080,40265,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(235081,40265,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(235082,40265,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(235083,40265,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(235084,40265,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(235085,40265,'blocks_4_icon_row_items_1_icon','qualification.svg'),(235086,40265,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(235087,40265,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(235088,40265,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(235089,40265,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(235090,40265,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(235091,40265,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(235092,40265,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(235093,40265,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(235094,40265,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(235095,40265,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(235096,40265,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(235097,40265,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(235098,40265,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(235099,40265,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(235100,40265,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(235101,40265,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(235102,40265,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(235103,40265,'blocks_4_icon_row_items','4'),(235104,40265,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(235105,40265,'blocks_5_acfe_flexible_toggle',''),(235106,40265,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(235107,40265,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(235108,40265,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(235109,40265,'blocks_5_options_theme','#ffffff'),(235110,40265,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(235111,40265,'blocks_5_options_reverse','0'),(235112,40265,'_blocks_5_options_reverse','field_61768049bb8ac'),(235113,40265,'blocks_5_options',''),(235114,40265,'_blocks_5_options','field_617682517c334'),(235115,40265,'blocks_5_split_5050_image','41241'),(235116,40265,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(235117,40265,'blocks_5_split_5050_video',''),(235118,40265,'_blocks_5_split_5050_video','field_6239f3160848a'),(235119,40265,'blocks_5_split_5050_content_title',''),(235120,40265,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(235121,40265,'blocks_5_split_5050_content_heading','What\'s included?'),(235122,40265,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(235123,40265,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a Pilates Instructor</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(235124,40265,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(235125,40265,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(235126,40265,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(235127,40265,'blocks_5_split_5050_content_actions','1'),(235128,40265,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(235129,40265,'blocks_5_split_5050_content',''),(235130,40265,'_blocks_5_split_5050_content','field_61767afceb8ba'),(235131,40265,'blocks_6_acfe_flexible_toggle',''),(235132,40265,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(235133,40265,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(235134,40265,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(235135,40265,'blocks_6_options_alignment','left'),(235136,40265,'_blocks_6_options_alignment','field_61769449f5490'),(235137,40265,'blocks_6_options',''),(235138,40265,'_blocks_6_options','field_617693e1428f0'),(235139,40265,'blocks_6_promo_panel_image','41242'),(235140,40265,'_blocks_6_promo_panel_image','field_617693e1428f3'),(235141,40265,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(235142,40265,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(235143,40265,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(235144,40265,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(235145,40265,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(235146,40265,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(235147,40265,'blocks_6_promo_panel_content_actions','1'),(235148,40265,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(235149,40265,'blocks_6_promo_panel_content',''),(235150,40265,'_blocks_6_promo_panel_content','field_617693e1428f4'),(235151,40265,'course_label_label_theme','#0d1f73'),(235152,40265,'_course_label_label_theme','field_61e17bb8f71fb'),(235153,40265,'_yoast_wpseo_focuskw','Introduction to Biomechanics Education Course'),(235154,40265,'_yoast_wpseo_metadesc','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(235155,40265,'_yoast_wpseo_linkdex','31'),(235156,41243,'hide_hero','0'),(235157,41243,'_hide_hero','field_66a2380fcda39'),(235158,41243,'hero_title','Introduction to Biomechanics Education Course'),(235159,41243,'_hero_title','field_617571fe285e8'),(235160,41243,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!\r\n'),(235161,41243,'_hero_text','field_6175723c285e9'),(235162,41243,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(235163,41243,'_hero_actions_0_button','field_61757281285eb'),(235164,41243,'hero_actions','1'),(235165,41243,'_hero_actions','field_61757270285ea'),(235166,41243,'hero_style','default'),(235167,41243,'_hero_style','field_62051d9dc5324'),(235168,41243,'_thumbnail_id','41228'),(235169,41243,'__thumbnail_id','field_617570855ddaf'),(235170,41243,'hero_image_pos_x','right'),(235171,41243,'_hero_image_pos_x','field_62ec3d05390bb'),(235172,41243,'hero_image_pos_y','top'),(235173,41243,'_hero_image_pos_y','field_62ec3d05390bc'),(235174,41243,'hero_image_pos',''),(235175,41243,'_hero_image_pos','field_62ec3d05390ba'),(235176,41243,'fft_hide_from_listings','0'),(235177,41243,'_fft_hide_from_listings','field_61f1320446ab2'),(235178,41243,'fft_page_format','default'),(235179,41243,'_fft_page_format','field_61ae213f1f218'),(235180,41243,'fft_hide_nav','0'),(235181,41243,'_fft_hide_nav','field_635bd5e43527c'),(235182,41243,'fft_hide_header_call_to_action','0'),(235183,41243,'_fft_hide_header_call_to_action','field_635bd6723527d'),(235184,41243,'fft_page_sitemap','0'),(235185,41243,'_fft_page_sitemap','field_61af9b34e8181'),(235186,41243,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(235187,41243,'_blocks','field_6176696113096'),(235188,41243,'course_label_text','Introduction to Biomechanics Education Course'),(235189,41243,'_course_label_text','field_61e17babf71fa'),(235190,41243,'course_label',''),(235191,41243,'_course_label','field_61e12f92749a7'),(235192,41243,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(235193,41243,'_course_description','field_617ac5788e5e1'),(235194,41243,'course_key_info',''),(235195,41243,'_course_key_info','field_617ac6ad8e5e2'),(235196,41243,'course_included',''),(235197,41243,'_course_included','field_617ac6f08e5e4'),(235198,41243,'blocks_0_acfe_flexible_toggle',''),(235199,41243,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(235200,41243,'blocks_0_acfe_flexible_layout_title','Icons'),(235201,41243,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(235202,41243,'blocks_0_options_theme','#ffffff'),(235203,41243,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(235204,41243,'blocks_0_options_format','row'),(235205,41243,'_blocks_0_options_format','field_64bfde9a90690'),(235206,41243,'blocks_0_options',''),(235207,41243,'_blocks_0_options','field_64bfdd9b90684'),(235208,41243,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(235209,41243,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(235210,41243,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU BUY'),(235211,41243,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(235212,41243,'blocks_0_icon_row_items_0_text','Get to know Biomechanics Education training for free'),(235213,41243,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(235214,41243,'blocks_0_icon_row_items_1_icon','build-career.svg'),(235215,41243,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(235216,41243,'blocks_0_icon_row_items_1_label','EXPLORE SKILLS PROGRESSION'),(235217,41243,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(235218,41243,'blocks_0_icon_row_items_1_text','Understand the different ways that a Biomechanics Education course could elevate your career'),(235219,41243,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(235220,41243,'blocks_0_icon_row_items_2_icon','diversify.svg'),(235221,41243,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(235222,41243,'blocks_0_icon_row_items_2_label','CAREER OPTIONS'),(235223,41243,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(235224,41243,'blocks_0_icon_row_items_2_text','Understand where a Diploma in Biomechanics Education can take you'),(235225,41243,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(235226,41243,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(235227,41243,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(235228,41243,'blocks_0_icon_row_items_3_label','60 MINUTES ONLINE LEARNING'),(235229,41243,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(235230,41243,'blocks_0_icon_row_items_3_text','Easily accessible and full of information'),(235231,41243,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(235232,41243,'blocks_0_icon_row_items','4'),(235233,41243,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(235234,41243,'blocks_1_acfe_flexible_toggle',''),(235235,41243,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(235236,41243,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(235237,41243,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(235238,41243,'blocks_1_options_theme','#ffffff'),(235239,41243,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(235240,41243,'blocks_1_options_reverse','0'),(235241,41243,'_blocks_1_options_reverse','field_61768049bb8ac'),(235242,41243,'blocks_1_options',''),(235243,41243,'_blocks_1_options','field_617682517c334'),(235244,41243,'blocks_1_split_5050_image','41239'),(235245,41243,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(235246,41243,'blocks_1_split_5050_video',''),(235247,41243,'_blocks_1_split_5050_video','field_6239f3160848a'),(235248,41243,'blocks_1_split_5050_content_title',''),(235249,41243,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(235250,41243,'blocks_1_split_5050_content_heading','Course Overview'),(235251,41243,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(235252,41243,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nGet started on this 60 minute course to begin your journey towards becoming an Intrinsic Biomechanics Coach and join the movement towards active well-being and improve health at a population level!\r\n\r\nUse code intro at check out to get this course for free.\r\n\r\n​'),(235253,41243,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(235254,41243,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(235255,41243,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(235256,41243,'blocks_1_split_5050_content_actions','1'),(235257,41243,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(235258,41243,'blocks_1_split_5050_content',''),(235259,41243,'_blocks_1_split_5050_content','field_61767afceb8ba'),(235260,41243,'blocks_2_acfe_flexible_toggle',''),(235261,41243,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(235262,41243,'blocks_2_acfe_flexible_layout_title','Timeline'),(235263,41243,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(235264,41243,'blocks_2_options_theme','#ffffff'),(235265,41243,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(235266,41243,'blocks_2_options',''),(235267,41243,'_blocks_2_options','field_6177de53d1195'),(235268,41243,'blocks_2_timeline_content_title',''),(235269,41243,'_blocks_2_timeline_content_title','field_6177de53d1198'),(235270,41243,'blocks_2_timeline_content_heading','How to enrol on this course'),(235271,41243,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(235272,41243,'blocks_2_timeline_content_text','Signing up for this course is as easy as 1, 2, 3! ​\r\n\r\nFollow these steps and get instant access to our online e-learning platform.\r\n\r\n<strong>Don’t forget to use code intro at check out to get this course for free.</strong>'),(235273,41243,'_blocks_2_timeline_content_text','field_6177de53d119a'),(235274,41243,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(235275,41243,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(235276,41243,'blocks_2_timeline_content_actions','1'),(235277,41243,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(235278,41243,'blocks_2_timeline_content',''),(235279,41243,'_blocks_2_timeline_content','field_6177de53d1197'),(235280,41243,'blocks_2_timeline_items_0_title','Enrol Now'),(235281,41243,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(235282,41243,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(235283,41243,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(235284,41243,'blocks_2_timeline_items_1_title','Progress to Checkout'),(235285,41243,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(235286,41243,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(235287,41243,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(235288,41243,'blocks_2_timeline_items_2_title','Get Access'),(235289,41243,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(235290,41243,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(235291,41243,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(235292,41243,'blocks_2_timeline_items_3_title','Complete the Course'),(235293,41243,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(235294,41243,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(235295,41243,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(235296,41243,'blocks_2_timeline_items','4'),(235297,41243,'_blocks_2_timeline_items','field_6177de53d119d'),(235298,41243,'blocks_3_acfe_flexible_toggle',''),(235299,41243,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(235300,41243,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(235301,41243,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(235302,41243,'blocks_3_options_theme','#ffffff'),(235303,41243,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(235304,41243,'blocks_3_options_reverse','0'),(235305,41243,'_blocks_3_options_reverse','field_61768049bb8ac'),(235306,41243,'blocks_3_options',''),(235307,41243,'_blocks_3_options','field_617682517c334'),(235308,41243,'blocks_3_split_5050_image',''),(235309,41243,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(235310,41243,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA'),(235311,41243,'_blocks_3_split_5050_video','field_6239f3160848a'),(235312,41243,'blocks_3_split_5050_content_title',''),(235313,41243,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(235314,41243,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(235315,41243,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(235316,41243,'blocks_3_split_5050_content_text','\"You cannot solve the problems of today, with the thinking that created them\"\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you\'re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.\r\n\r\nReady to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free.'),(235317,41243,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(235318,41243,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(235319,41243,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(235320,41243,'blocks_3_split_5050_content_actions','1'),(235321,41243,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(235322,41243,'blocks_3_split_5050_content',''),(235323,41243,'_blocks_3_split_5050_content','field_61767afceb8ba'),(235324,41243,'blocks_4_acfe_flexible_toggle',''),(235325,41243,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(235326,41243,'blocks_4_acfe_flexible_layout_title','Icons'),(235327,41243,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(235328,41243,'blocks_4_options_theme','#ffffff'),(235329,41243,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(235330,41243,'blocks_4_options_format','grid'),(235331,41243,'_blocks_4_options_format','field_64bfde9a90690'),(235332,41243,'blocks_4_options',''),(235333,41243,'_blocks_4_options','field_64bfdd9b90684'),(235334,41243,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(235335,41243,'_blocks_4_row_content_title','field_64bfdd9b90687'),(235336,41243,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(235337,41243,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(235338,41243,'blocks_4_row_content_text',''),(235339,41243,'_blocks_4_row_content_text','field_64bfdd9b90689'),(235340,41243,'blocks_4_row_content_actions',''),(235341,41243,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(235342,41243,'blocks_4_row_content',''),(235343,41243,'_blocks_4_row_content','field_64bfdd9b90686'),(235344,41243,'blocks_4_icon_row_items_0_icon','build-career.svg'),(235345,41243,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(235346,41243,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(235347,41243,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(235348,41243,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(235349,41243,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(235350,41243,'blocks_4_icon_row_items_1_icon','qualification.svg'),(235351,41243,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(235352,41243,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(235353,41243,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(235354,41243,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(235355,41243,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(235356,41243,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(235357,41243,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(235358,41243,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(235359,41243,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(235360,41243,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(235361,41243,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(235362,41243,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(235363,41243,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(235364,41243,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(235365,41243,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(235366,41243,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(235367,41243,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(235368,41243,'blocks_4_icon_row_items','4'),(235369,41243,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(235370,41243,'blocks_5_acfe_flexible_toggle',''),(235371,41243,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(235372,41243,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(235373,41243,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(235374,41243,'blocks_5_options_theme','#ffffff'),(235375,41243,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(235376,41243,'blocks_5_options_reverse','0'),(235377,41243,'_blocks_5_options_reverse','field_61768049bb8ac'),(235378,41243,'blocks_5_options',''),(235379,41243,'_blocks_5_options','field_617682517c334'),(235380,41243,'blocks_5_split_5050_image','41241'),(235381,41243,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(235382,41243,'blocks_5_split_5050_video',''),(235383,41243,'_blocks_5_split_5050_video','field_6239f3160848a'),(235384,41243,'blocks_5_split_5050_content_title',''),(235385,41243,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(235386,41243,'blocks_5_split_5050_content_heading','What\'s included?'),(235387,41243,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(235388,41243,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(235389,41243,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(235390,41243,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(235391,41243,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(235392,41243,'blocks_5_split_5050_content_actions','1'),(235393,41243,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(235394,41243,'blocks_5_split_5050_content',''),(235395,41243,'_blocks_5_split_5050_content','field_61767afceb8ba'),(235396,41243,'blocks_6_acfe_flexible_toggle',''),(235397,41243,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(235398,41243,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(235399,41243,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(235400,41243,'blocks_6_options_alignment','left'),(235401,41243,'_blocks_6_options_alignment','field_61769449f5490'),(235402,41243,'blocks_6_options',''),(235403,41243,'_blocks_6_options','field_617693e1428f0'),(235404,41243,'blocks_6_promo_panel_image','41242'),(235405,41243,'_blocks_6_promo_panel_image','field_617693e1428f3'),(235406,41243,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(235407,41243,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(235408,41243,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(235409,41243,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(235410,41243,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(235411,41243,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(235412,41243,'blocks_6_promo_panel_content_actions','1'),(235413,41243,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(235414,41243,'blocks_6_promo_panel_content',''),(235415,41243,'_blocks_6_promo_panel_content','field_617693e1428f4'),(235416,41243,'course_label_label_theme','#0d1f73'),(235417,41243,'_course_label_label_theme','field_61e17bb8f71fb'),(235680,40265,'_fft_show','1'),(235681,40265,'_fft_plan',NULL),(235682,41261,'hide_hero','0'),(235683,41261,'_hide_hero','field_66a2380fcda39'),(235684,41261,'hero_title','Biomechanics and Podiatrists'),(235685,41261,'_hero_title','field_617571fe285e8'),(235686,41261,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(235687,41261,'_hero_text','field_6175723c285e9'),(235688,41261,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(235689,41261,'_hero_actions_0_button','field_61757281285eb'),(235690,41261,'hero_actions','1'),(235691,41261,'_hero_actions','field_61757270285ea'),(235692,41261,'hero_style','default'),(235693,41261,'_hero_style','field_62051d9dc5324'),(235694,41261,'_thumbnail_id','39247'),(235695,41261,'__thumbnail_id','field_617570855ddaf'),(235696,41261,'hero_image_pos_x','right'),(235697,41261,'_hero_image_pos_x','field_62ec3d05390bb'),(235698,41261,'hero_image_pos_y','top'),(235699,41261,'_hero_image_pos_y','field_62ec3d05390bc'),(235700,41261,'hero_image_pos',''),(235701,41261,'_hero_image_pos','field_62ec3d05390ba'),(235702,41261,'fft_hide_from_listings','0'),(235703,41261,'_fft_hide_from_listings','field_61f1320446ab2'),(235704,41261,'fft_page_format','default'),(235705,41261,'_fft_page_format','field_61ae213f1f218'),(235706,41261,'fft_hide_nav','0'),(235707,41261,'_fft_hide_nav','field_635bd5e43527c'),(235708,41261,'fft_hide_header_call_to_action','0'),(235709,41261,'_fft_hide_header_call_to_action','field_635bd6723527d'),(235710,41261,'fft_page_sitemap','0'),(235711,41261,'_fft_page_sitemap','field_61af9b34e8181'),(235712,41261,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(235713,41261,'_blocks','field_6176696113096'),(235714,41261,'blocks_2_acfe_flexible_toggle',''),(235715,41261,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(235716,41261,'blocks_2_acfe_flexible_layout_title','Form'),(235717,41261,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(235718,41261,'blocks_2_row_content_format','standard'),(235719,41261,'_blocks_2_row_content_format','field_6481ead962881'),(235720,41261,'blocks_2_row_content_title',''),(235721,41261,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(235722,41261,'blocks_2_row_content_heading','Enquire Today'),(235723,41261,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(235724,41261,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(235725,41261,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(235726,41261,'blocks_2_row_content_actions',''),(235727,41261,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(235728,41261,'blocks_2_row_content',''),(235729,41261,'_blocks_2_row_content','field_61a0f5f5b3db0'),(235730,41261,'blocks_2_row_form','40394'),(235731,41261,'_blocks_2_row_form','field_61a4ff2c0b08e'),(235732,41261,'blocks_2_row_form_button_label',''),(235733,41261,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(235734,41261,'blocks_0_acfe_flexible_toggle',''),(235735,41261,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(235736,41261,'blocks_0_acfe_flexible_layout_title','Template'),(235737,41261,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(235738,41261,'blocks_0_template','39087'),(235739,41261,'_blocks_0_template','field_617bdd570fe01'),(235740,41261,'blocks_1_acfe_flexible_toggle',''),(235741,41261,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(235742,41261,'blocks_1_acfe_flexible_layout_title','Steps'),(235743,41261,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(235744,41261,'blocks_1_row_content_title',''),(235745,41261,'_blocks_1_row_content_title','field_64888cd1e26e0'),(235746,41261,'blocks_1_row_content_heading','Benefits of training with us'),(235747,41261,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(235748,41261,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(235749,41261,'_blocks_1_row_content_text','field_64888ce2e26e2'),(235750,41261,'blocks_1_row_content_actions',''),(235751,41261,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(235752,41261,'blocks_1_row_content',''),(235753,41261,'_blocks_1_row_content','field_64888cb0e26df'),(235754,41261,'blocks_1_steps_0_icon','progression.svg'),(235755,41261,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(235756,41261,'blocks_1_steps_0_title','Earning Potential'),(235757,41261,'_blocks_1_steps_0_title','field_64888d94e26e7'),(235758,41261,'blocks_1_steps_0_text','Attract new clients, retain current ones, and increase your rates with the Diploma in Biomechanics Coaching. This programme gives you a system to reach new clients and work more effectively with existing ones. Full body screenings may also require extra sessions, providing clients with thorough support and helping you build stronger, long-term relationships.'),(235759,41261,'_blocks_1_steps_0_text','field_64888d99e26e8'),(235760,41261,'blocks_1_steps_1_icon','support.svg'),(235761,41261,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(235762,41261,'blocks_1_steps_1_title','Lifetime Learning Promise'),(235763,41261,'_blocks_1_steps_1_title','field_64888d94e26e7'),(235764,41261,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(235765,41261,'_blocks_1_steps_1_text','field_64888d99e26e8'),(235766,41261,'blocks_1_steps_2_icon','qualification.svg'),(235767,41261,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(235768,41261,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(235769,41261,'_blocks_1_steps_2_title','field_64888d94e26e7'),(235770,41261,'blocks_1_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(235771,41261,'_blocks_1_steps_2_text','field_64888d99e26e8'),(235772,41261,'blocks_1_steps_3_icon','leaders.svg'),(235773,41261,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(235774,41261,'blocks_1_steps_3_title','Stand Out From the Crowd'),(235775,41261,'_blocks_1_steps_3_title','field_64888d94e26e7'),(235776,41261,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(235777,41261,'_blocks_1_steps_3_text','field_64888d99e26e8'),(235778,41261,'blocks_1_steps','4'),(235779,41261,'_blocks_1_steps','field_64888d44e26e5'),(235780,41261,'blocks_3_acfe_flexible_toggle',''),(235781,41261,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(235782,41261,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(235783,41261,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(235784,41261,'blocks_3_options_theme','#ffffff'),(235785,41261,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(235786,41261,'blocks_3_options_reverse','0'),(235787,41261,'_blocks_3_options_reverse','field_61768049bb8ac'),(235788,41261,'blocks_3_options',''),(235789,41261,'_blocks_3_options','field_617682517c334'),(235790,41261,'blocks_3_split_5050_image','39617'),(235791,41261,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(235792,41261,'blocks_3_split_5050_video',''),(235793,41261,'_blocks_3_split_5050_video','field_6239f3160848a'),(235794,41261,'blocks_3_split_5050_content_title',''),(235795,41261,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(235796,41261,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(235797,41261,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(235798,41261,'blocks_3_split_5050_content_text','This integrated system takes on a full-body approach including the pelvis, spine, shoulder, knee, and foot biomechanical assessment programme. Helping podiatrists to find solutions to foot problems through understanding the entire body. By assessing in this way using this unique approach gives podiatrists the ability to retain clients longer, and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(235799,41261,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(235800,41261,'blocks_3_split_5050_content_actions',''),(235801,41261,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(235802,41261,'blocks_3_split_5050_content',''),(235803,41261,'_blocks_3_split_5050_content','field_61767afceb8ba'),(235804,41261,'blocks_4_acfe_flexible_toggle',''),(235805,41261,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(235806,41261,'blocks_4_acfe_flexible_layout_title','Tabs'),(235807,41261,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(235808,41261,'blocks_4_options_theme','#ffffff'),(235809,41261,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(235810,41261,'blocks_4_options',''),(235811,41261,'_blocks_4_options','field_6177cfcd8140f'),(235812,41261,'blocks_4_tabs_0_tab_label','What will I learn?'),(235813,41261,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(235814,41261,'blocks_4_tabs_0_tab_content_title',''),(235815,41261,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(235816,41261,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(235817,41261,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(235818,41261,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(235819,41261,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(235820,41261,'blocks_4_tabs_0_tab_content_actions',''),(235821,41261,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(235822,41261,'blocks_4_tabs_0_tab_content',''),(235823,41261,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(235824,41261,'blocks_4_tabs_0_tab_image','39076'),(235825,41261,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(235826,41261,'blocks_4_tabs_1_tab_label','What do I need?'),(235827,41261,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(235828,41261,'blocks_4_tabs_1_tab_content_title',''),(235829,41261,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(235830,41261,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(235831,41261,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(235832,41261,'blocks_4_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(235833,41261,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(235834,41261,'blocks_4_tabs_1_tab_content_actions',''),(235835,41261,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(235836,41261,'blocks_4_tabs_1_tab_content',''),(235837,41261,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(235838,41261,'blocks_4_tabs_1_tab_image','39223'),(235839,41261,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(235840,41261,'blocks_4_tabs_2_tab_label','Where can I learn?'),(235841,41261,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(235842,41261,'blocks_4_tabs_2_tab_content_title',''),(235843,41261,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(235844,41261,'blocks_4_tabs_2_tab_content_heading','Locations'),(235845,41261,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(235846,41261,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(235847,41261,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(235848,41261,'blocks_4_tabs_2_tab_content_actions',''),(235849,41261,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(235850,41261,'blocks_4_tabs_2_tab_content',''),(235851,41261,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(235852,41261,'blocks_4_tabs_2_tab_image','39224'),(235853,41261,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(235854,41261,'blocks_4_tabs','3'),(235855,41261,'_blocks_4_tabs','field_6177cff281419'),(235856,41261,'blocks_5_acfe_flexible_toggle',''),(235857,41261,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(235858,41261,'blocks_5_acfe_flexible_layout_title','Text Block'),(235859,41261,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(235860,41261,'blocks_5_options_theme','#b61234'),(235861,41261,'_blocks_5_options_theme','field_6176830e2ad17'),(235862,41261,'blocks_5_options',''),(235863,41261,'_blocks_5_options','field_6176830e2ad16'),(235864,41261,'blocks_5_text_block_heading','Fees & Funding Options'),(235865,41261,'_blocks_5_text_block_heading','field_617669d413097'),(235866,41261,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(235867,41261,'_blocks_5_text_block_content','field_617669ec13098'),(235868,41261,'blocks_6_acfe_flexible_toggle',''),(235869,41261,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(235870,41261,'blocks_6_acfe_flexible_layout_title','Icons'),(235871,41261,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(235872,41261,'blocks_6_options_theme','#b61234'),(235873,41261,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(235874,41261,'blocks_6_options_format','row'),(235875,41261,'_blocks_6_options_format','field_64bfde9a90690'),(235876,41261,'blocks_6_options',''),(235877,41261,'_blocks_6_options','field_64bfdd9b90684'),(235878,41261,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(235879,41261,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(235880,41261,'blocks_6_icon_row_items_0_label','Pay in Full'),(235881,41261,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(235882,41261,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(235883,41261,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(235884,41261,'blocks_6_icon_row_items_1_icon','finance.svg'),(235885,41261,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(235886,41261,'blocks_6_icon_row_items_1_label','0% finance'),(235887,41261,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(235888,41261,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(235889,41261,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(235890,41261,'blocks_6_icon_row_items_2_icon','deposit.svg'),(235891,41261,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(235892,41261,'blocks_6_icon_row_items_2_label','Deposit & balance'),(235893,41261,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(235894,41261,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(235895,41261,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(235896,41261,'blocks_6_icon_row_items','3'),(235897,41261,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(235898,41261,'blocks_8_acfe_flexible_toggle',''),(235899,41261,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(235900,41261,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(235901,41261,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(235902,41261,'blocks_8_testimonial_slider_content_title',''),(235903,41261,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(235904,41261,'blocks_8_testimonial_slider_content_heading','Testimonials'),(235905,41261,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(235906,41261,'blocks_8_testimonial_slider_content_text',''),(235907,41261,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(235908,41261,'blocks_8_testimonial_slider_content_actions',''),(235909,41261,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(235910,41261,'blocks_8_testimonial_slider_content',''),(235911,41261,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(235912,41261,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(235913,41261,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(235914,41261,'blocks_8_testimonial_slider_ambassador_bool','0'),(235915,41261,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(235916,41261,'blocks_9_acfe_flexible_toggle',''),(235917,41261,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(235918,41261,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(235919,41261,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(235920,41261,'blocks_9_options_theme','#ffffff'),(235921,41261,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(235922,41261,'blocks_9_options_state','0'),(235923,41261,'_blocks_9_options_state','field_6239fcb7508c5'),(235924,41261,'blocks_9_options',''),(235925,41261,'_blocks_9_options','field_6177e2991ac44'),(235926,41261,'blocks_9_content_title',''),(235927,41261,'_blocks_9_content_title','field_64d237e8bb1e2'),(235928,41261,'blocks_9_content_heading','Frequently asked questions '),(235929,41261,'_blocks_9_content_heading','field_64d237e8bb1e3'),(235930,41261,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(235931,41261,'_blocks_9_content_text','field_64d237e8bb1e4'),(235932,41261,'blocks_9_content_actions',''),(235933,41261,'_blocks_9_content_actions','field_64d237e8bb1e5'),(235934,41261,'blocks_9_content_align','left'),(235935,41261,'_blocks_9_content_align','field_64d2443e6b6aa'),(235936,41261,'blocks_9_content',''),(235937,41261,'_blocks_9_content','field_64d237e8bb1e1'),(235938,41261,'blocks_9_accordion_content','faqs'),(235939,41261,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(235940,41261,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(235941,41261,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(235942,41261,'blocks_9_actions',''),(235943,41261,'_blocks_9_actions','field_61a746a817f7a'),(235944,41261,'blocks_7_acfe_flexible_toggle',''),(235945,41261,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(235946,41261,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(235947,41261,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(235948,41261,'blocks_7_options_theme','#f5f5f5'),(235949,41261,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(235950,41261,'blocks_7_options_reverse','0'),(235951,41261,'_blocks_7_options_reverse','field_61768049bb8ac'),(235952,41261,'blocks_7_options',''),(235953,41261,'_blocks_7_options','field_617682517c334'),(235954,41261,'blocks_7_split_5050_image','40920'),(235955,41261,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(235956,41261,'blocks_7_split_5050_video',''),(235957,41261,'_blocks_7_split_5050_video','field_6239f3160848a'),(235958,41261,'blocks_7_split_5050_content_title',''),(235959,41261,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(235960,41261,'blocks_7_split_5050_content_heading','Why Study This Course?'),(235961,41261,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(235962,41261,'blocks_7_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(235963,41261,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(235964,41261,'blocks_7_split_5050_content_actions',''),(235965,41261,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(235966,41261,'blocks_7_split_5050_content',''),(235967,41261,'_blocks_7_split_5050_content','field_61767afceb8ba'),(235968,41262,'hide_hero','0'),(235969,41262,'_hide_hero','field_66a2380fcda39'),(235970,41262,'hero_title','Biomechanics and Podiatrists'),(235971,41262,'_hero_title','field_617571fe285e8'),(235972,41262,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(235973,41262,'_hero_text','field_6175723c285e9'),(235974,41262,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(235975,41262,'_hero_actions_0_button','field_61757281285eb'),(235976,41262,'hero_actions','1'),(235977,41262,'_hero_actions','field_61757270285ea'),(235978,41262,'hero_style','default'),(235979,41262,'_hero_style','field_62051d9dc5324'),(235980,41262,'_thumbnail_id','39247'),(235981,41262,'__thumbnail_id','field_617570855ddaf'),(235982,41262,'hero_image_pos_x','right'),(235983,41262,'_hero_image_pos_x','field_62ec3d05390bb'),(235984,41262,'hero_image_pos_y','top'),(235985,41262,'_hero_image_pos_y','field_62ec3d05390bc'),(235986,41262,'hero_image_pos',''),(235987,41262,'_hero_image_pos','field_62ec3d05390ba'),(235988,41262,'fft_hide_from_listings','0'),(235989,41262,'_fft_hide_from_listings','field_61f1320446ab2'),(235990,41262,'fft_page_format','default'),(235991,41262,'_fft_page_format','field_61ae213f1f218'),(235992,41262,'fft_hide_nav','0'),(235993,41262,'_fft_hide_nav','field_635bd5e43527c'),(235994,41262,'fft_hide_header_call_to_action','0'),(235995,41262,'_fft_hide_header_call_to_action','field_635bd6723527d'),(235996,41262,'fft_page_sitemap','0'),(235997,41262,'_fft_page_sitemap','field_61af9b34e8181'),(235998,41262,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(235999,41262,'_blocks','field_6176696113096'),(236000,41262,'blocks_2_acfe_flexible_toggle',''),(236001,41262,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(236002,41262,'blocks_2_acfe_flexible_layout_title','Form'),(236003,41262,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(236004,41262,'blocks_2_row_content_format','standard'),(236005,41262,'_blocks_2_row_content_format','field_6481ead962881'),(236006,41262,'blocks_2_row_content_title',''),(236007,41262,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(236008,41262,'blocks_2_row_content_heading','Enquire Today'),(236009,41262,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(236010,41262,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(236011,41262,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(236012,41262,'blocks_2_row_content_actions',''),(236013,41262,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(236014,41262,'blocks_2_row_content',''),(236015,41262,'_blocks_2_row_content','field_61a0f5f5b3db0'),(236016,41262,'blocks_2_row_form','40394'),(236017,41262,'_blocks_2_row_form','field_61a4ff2c0b08e'),(236018,41262,'blocks_2_row_form_button_label',''),(236019,41262,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(236020,41262,'blocks_0_acfe_flexible_toggle',''),(236021,41262,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(236022,41262,'blocks_0_acfe_flexible_layout_title','Template'),(236023,41262,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(236024,41262,'blocks_0_template','39087'),(236025,41262,'_blocks_0_template','field_617bdd570fe01'),(236026,41262,'blocks_1_acfe_flexible_toggle',''),(236027,41262,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(236028,41262,'blocks_1_acfe_flexible_layout_title','Steps'),(236029,41262,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(236030,41262,'blocks_1_row_content_title',''),(236031,41262,'_blocks_1_row_content_title','field_64888cd1e26e0'),(236032,41262,'blocks_1_row_content_heading','Benefits of training with us'),(236033,41262,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(236034,41262,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(236035,41262,'_blocks_1_row_content_text','field_64888ce2e26e2'),(236036,41262,'blocks_1_row_content_actions',''),(236037,41262,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(236038,41262,'blocks_1_row_content',''),(236039,41262,'_blocks_1_row_content','field_64888cb0e26df'),(236040,41262,'blocks_1_steps_0_icon','progression.svg'),(236041,41262,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(236042,41262,'blocks_1_steps_0_title','Earning Potential'),(236043,41262,'_blocks_1_steps_0_title','field_64888d94e26e7'),(236044,41262,'blocks_1_steps_0_text','Attract new clients, retain current ones, and increase your rates with the Diploma in Biomechanics Coaching. This programme gives you a system to reach new clients and work more effectively with existing ones. Full body screenings may also require extra sessions, providing clients with thorough support and helping you build stronger, long-term relationships.'),(236045,41262,'_blocks_1_steps_0_text','field_64888d99e26e8'),(236046,41262,'blocks_1_steps_1_icon','support.svg'),(236047,41262,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(236048,41262,'blocks_1_steps_1_title','Lifetime Learning Promise'),(236049,41262,'_blocks_1_steps_1_title','field_64888d94e26e7'),(236050,41262,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(236051,41262,'_blocks_1_steps_1_text','field_64888d99e26e8'),(236052,41262,'blocks_1_steps_2_icon','qualification.svg'),(236053,41262,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(236054,41262,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(236055,41262,'_blocks_1_steps_2_title','field_64888d94e26e7'),(236056,41262,'blocks_1_steps_2_text','Developed through over 20 years of research with 4,000 participants - from those recovering from injury to active individuals - is a comprehensive, evidence-backed programme for mastering movement assessments. Through a blend of online learning and hands-on workshops, you’ll learn specific tests and screens to understand the roles of the pelvis, spine, and upper body in lower limb function, particularly foot mechanics. This approach equips you with the insights needed for effective orthotic prescription and tailored movement strategies, helping you optimise outcomes for every client.'),(236057,41262,'_blocks_1_steps_2_text','field_64888d99e26e8'),(236058,41262,'blocks_1_steps_3_icon','leaders.svg'),(236059,41262,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(236060,41262,'blocks_1_steps_3_title','Stand Out From the Crowd'),(236061,41262,'_blocks_1_steps_3_title','field_64888d94e26e7'),(236062,41262,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(236063,41262,'_blocks_1_steps_3_text','field_64888d99e26e8'),(236064,41262,'blocks_1_steps','4'),(236065,41262,'_blocks_1_steps','field_64888d44e26e5'),(236066,41262,'blocks_3_acfe_flexible_toggle',''),(236067,41262,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(236068,41262,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(236069,41262,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(236070,41262,'blocks_3_options_theme','#ffffff'),(236071,41262,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(236072,41262,'blocks_3_options_reverse','0'),(236073,41262,'_blocks_3_options_reverse','field_61768049bb8ac'),(236074,41262,'blocks_3_options',''),(236075,41262,'_blocks_3_options','field_617682517c334'),(236076,41262,'blocks_3_split_5050_image','39617'),(236077,41262,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(236078,41262,'blocks_3_split_5050_video',''),(236079,41262,'_blocks_3_split_5050_video','field_6239f3160848a'),(236080,41262,'blocks_3_split_5050_content_title',''),(236081,41262,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(236082,41262,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(236083,41262,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(236084,41262,'blocks_3_split_5050_content_text','This integrated system takes on a full-body approach including the pelvis, spine, shoulder, knee, and foot biomechanical assessment programme. Helping podiatrists to find solutions to foot problems through understanding the entire body. By assessing in this way using this unique approach gives podiatrists the ability to retain clients longer, and identify missing links previously unavailable to them. Understanding upper body biomechanics could be a crucial missing link for podiatrists.\r\n\r\nOur model offers a prevention-focused method rather than a reactionary one, providing a system-led service instead of a symptom-led approach. This allows you to develop a broader client base and work on risk reduction, ensuring longer client retention using exercise prescription. Additionally, this could help you build a diverse approach and team for comprehensive care before, during, and after injury.'),(236085,41262,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(236086,41262,'blocks_3_split_5050_content_actions',''),(236087,41262,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(236088,41262,'blocks_3_split_5050_content',''),(236089,41262,'_blocks_3_split_5050_content','field_61767afceb8ba'),(236090,41262,'blocks_4_acfe_flexible_toggle',''),(236091,41262,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(236092,41262,'blocks_4_acfe_flexible_layout_title','Tabs'),(236093,41262,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(236094,41262,'blocks_4_options_theme','#ffffff'),(236095,41262,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(236096,41262,'blocks_4_options',''),(236097,41262,'_blocks_4_options','field_6177cfcd8140f'),(236098,41262,'blocks_4_tabs_0_tab_label','What will I learn?'),(236099,41262,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(236100,41262,'blocks_4_tabs_0_tab_content_title',''),(236101,41262,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(236102,41262,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(236103,41262,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(236104,41262,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(236105,41262,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(236106,41262,'blocks_4_tabs_0_tab_content_actions',''),(236107,41262,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(236108,41262,'blocks_4_tabs_0_tab_content',''),(236109,41262,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(236110,41262,'blocks_4_tabs_0_tab_image','39076'),(236111,41262,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(236112,41262,'blocks_4_tabs_1_tab_label','What do I need?'),(236113,41262,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(236114,41262,'blocks_4_tabs_1_tab_content_title',''),(236115,41262,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(236116,41262,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(236117,41262,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(236118,41262,'blocks_4_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(236119,41262,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(236120,41262,'blocks_4_tabs_1_tab_content_actions',''),(236121,41262,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(236122,41262,'blocks_4_tabs_1_tab_content',''),(236123,41262,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(236124,41262,'blocks_4_tabs_1_tab_image','39223'),(236125,41262,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(236126,41262,'blocks_4_tabs_2_tab_label','Where can I learn?'),(236127,41262,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(236128,41262,'blocks_4_tabs_2_tab_content_title',''),(236129,41262,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(236130,41262,'blocks_4_tabs_2_tab_content_heading','Locations'),(236131,41262,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(236132,41262,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(236133,41262,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(236134,41262,'blocks_4_tabs_2_tab_content_actions',''),(236135,41262,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(236136,41262,'blocks_4_tabs_2_tab_content',''),(236137,41262,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(236138,41262,'blocks_4_tabs_2_tab_image','39224'),(236139,41262,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(236140,41262,'blocks_4_tabs','3'),(236141,41262,'_blocks_4_tabs','field_6177cff281419'),(236142,41262,'blocks_5_acfe_flexible_toggle',''),(236143,41262,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(236144,41262,'blocks_5_acfe_flexible_layout_title','Text Block'),(236145,41262,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(236146,41262,'blocks_5_options_theme','#b61234'),(236147,41262,'_blocks_5_options_theme','field_6176830e2ad17'),(236148,41262,'blocks_5_options',''),(236149,41262,'_blocks_5_options','field_6176830e2ad16'),(236150,41262,'blocks_5_text_block_heading','Fees & Funding Options'),(236151,41262,'_blocks_5_text_block_heading','field_617669d413097'),(236152,41262,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(236153,41262,'_blocks_5_text_block_content','field_617669ec13098'),(236154,41262,'blocks_6_acfe_flexible_toggle',''),(236155,41262,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(236156,41262,'blocks_6_acfe_flexible_layout_title','Icons'),(236157,41262,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(236158,41262,'blocks_6_options_theme','#b61234'),(236159,41262,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(236160,41262,'blocks_6_options_format','row'),(236161,41262,'_blocks_6_options_format','field_64bfde9a90690'),(236162,41262,'blocks_6_options',''),(236163,41262,'_blocks_6_options','field_64bfdd9b90684'),(236164,41262,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(236165,41262,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(236166,41262,'blocks_6_icon_row_items_0_label','Pay in Full'),(236167,41262,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(236168,41262,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(236169,41262,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(236170,41262,'blocks_6_icon_row_items_1_icon','finance.svg'),(236171,41262,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(236172,41262,'blocks_6_icon_row_items_1_label','0% finance'),(236173,41262,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(236174,41262,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(236175,41262,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(236176,41262,'blocks_6_icon_row_items_2_icon','deposit.svg'),(236177,41262,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(236178,41262,'blocks_6_icon_row_items_2_label','Deposit & balance'),(236179,41262,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(236180,41262,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(236181,41262,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(236182,41262,'blocks_6_icon_row_items','3'),(236183,41262,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(236184,41262,'blocks_8_acfe_flexible_toggle',''),(236185,41262,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(236186,41262,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(236187,41262,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(236188,41262,'blocks_8_testimonial_slider_content_title',''),(236189,41262,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(236190,41262,'blocks_8_testimonial_slider_content_heading','Testimonials'),(236191,41262,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(236192,41262,'blocks_8_testimonial_slider_content_text',''),(236193,41262,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(236194,41262,'blocks_8_testimonial_slider_content_actions',''),(236195,41262,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(236196,41262,'blocks_8_testimonial_slider_content',''),(236197,41262,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(236198,41262,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(236199,41262,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(236200,41262,'blocks_8_testimonial_slider_ambassador_bool','0'),(236201,41262,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(236202,41262,'blocks_9_acfe_flexible_toggle',''),(236203,41262,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(236204,41262,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(236205,41262,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(236206,41262,'blocks_9_options_theme','#ffffff'),(236207,41262,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(236208,41262,'blocks_9_options_state','0'),(236209,41262,'_blocks_9_options_state','field_6239fcb7508c5'),(236210,41262,'blocks_9_options',''),(236211,41262,'_blocks_9_options','field_6177e2991ac44'),(236212,41262,'blocks_9_content_title',''),(236213,41262,'_blocks_9_content_title','field_64d237e8bb1e2'),(236214,41262,'blocks_9_content_heading','Frequently asked questions '),(236215,41262,'_blocks_9_content_heading','field_64d237e8bb1e3'),(236216,41262,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(236217,41262,'_blocks_9_content_text','field_64d237e8bb1e4'),(236218,41262,'blocks_9_content_actions',''),(236219,41262,'_blocks_9_content_actions','field_64d237e8bb1e5'),(236220,41262,'blocks_9_content_align','left'),(236221,41262,'_blocks_9_content_align','field_64d2443e6b6aa'),(236222,41262,'blocks_9_content',''),(236223,41262,'_blocks_9_content','field_64d237e8bb1e1'),(236224,41262,'blocks_9_accordion_content','faqs'),(236225,41262,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(236226,41262,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(236227,41262,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(236228,41262,'blocks_9_actions',''),(236229,41262,'_blocks_9_actions','field_61a746a817f7a'),(236230,41262,'blocks_7_acfe_flexible_toggle',''),(236231,41262,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(236232,41262,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(236233,41262,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(236234,41262,'blocks_7_options_theme','#f5f5f5'),(236235,41262,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(236236,41262,'blocks_7_options_reverse','0'),(236237,41262,'_blocks_7_options_reverse','field_61768049bb8ac'),(236238,41262,'blocks_7_options',''),(236239,41262,'_blocks_7_options','field_617682517c334'),(236240,41262,'blocks_7_split_5050_image','40920'),(236241,41262,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(236242,41262,'blocks_7_split_5050_video',''),(236243,41262,'_blocks_7_split_5050_video','field_6239f3160848a'),(236244,41262,'blocks_7_split_5050_content_title',''),(236245,41262,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(236246,41262,'blocks_7_split_5050_content_heading','Why Study This Course?'),(236247,41262,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(236248,41262,'blocks_7_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(236249,41262,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(236250,41262,'blocks_7_split_5050_content_actions',''),(236251,41262,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(236252,41262,'blocks_7_split_5050_content',''),(236253,41262,'_blocks_7_split_5050_content','field_61767afceb8ba'),(236254,41263,'hide_hero','0'),(236255,41263,'_hide_hero','field_66a2380fcda39'),(236256,41263,'hero_title','Biomechanics and Podiatrists'),(236257,41263,'_hero_title','field_617571fe285e8'),(236258,41263,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(236259,41263,'_hero_text','field_6175723c285e9'),(236260,41263,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(236261,41263,'_hero_actions_0_button','field_61757281285eb'),(236262,41263,'hero_actions','1'),(236263,41263,'_hero_actions','field_61757270285ea'),(236264,41263,'hero_style','default'),(236265,41263,'_hero_style','field_62051d9dc5324'),(236266,41263,'_thumbnail_id','39247'),(236267,41263,'__thumbnail_id','field_617570855ddaf'),(236268,41263,'hero_image_pos_x','right'),(236269,41263,'_hero_image_pos_x','field_62ec3d05390bb'),(236270,41263,'hero_image_pos_y','top'),(236271,41263,'_hero_image_pos_y','field_62ec3d05390bc'),(236272,41263,'hero_image_pos',''),(236273,41263,'_hero_image_pos','field_62ec3d05390ba'),(236274,41263,'fft_hide_from_listings','0'),(236275,41263,'_fft_hide_from_listings','field_61f1320446ab2'),(236276,41263,'fft_page_format','default'),(236277,41263,'_fft_page_format','field_61ae213f1f218'),(236278,41263,'fft_hide_nav','0'),(236279,41263,'_fft_hide_nav','field_635bd5e43527c'),(236280,41263,'fft_hide_header_call_to_action','0'),(236281,41263,'_fft_hide_header_call_to_action','field_635bd6723527d'),(236282,41263,'fft_page_sitemap','0'),(236283,41263,'_fft_page_sitemap','field_61af9b34e8181'),(236284,41263,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(236285,41263,'_blocks','field_6176696113096'),(236286,41263,'blocks_2_acfe_flexible_toggle',''),(236287,41263,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(236288,41263,'blocks_2_acfe_flexible_layout_title','Form'),(236289,41263,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(236290,41263,'blocks_2_row_content_format','standard'),(236291,41263,'_blocks_2_row_content_format','field_6481ead962881'),(236292,41263,'blocks_2_row_content_title',''),(236293,41263,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(236294,41263,'blocks_2_row_content_heading','Enquire Today'),(236295,41263,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(236296,41263,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(236297,41263,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(236298,41263,'blocks_2_row_content_actions',''),(236299,41263,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(236300,41263,'blocks_2_row_content',''),(236301,41263,'_blocks_2_row_content','field_61a0f5f5b3db0'),(236302,41263,'blocks_2_row_form','40394'),(236303,41263,'_blocks_2_row_form','field_61a4ff2c0b08e'),(236304,41263,'blocks_2_row_form_button_label',''),(236305,41263,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(236306,41263,'blocks_0_acfe_flexible_toggle',''),(236307,41263,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(236308,41263,'blocks_0_acfe_flexible_layout_title','Template'),(236309,41263,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(236310,41263,'blocks_0_template','39087'),(236311,41263,'_blocks_0_template','field_617bdd570fe01'),(236312,41263,'blocks_1_acfe_flexible_toggle',''),(236313,41263,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(236314,41263,'blocks_1_acfe_flexible_layout_title','Steps'),(236315,41263,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(236316,41263,'blocks_1_row_content_title',''),(236317,41263,'_blocks_1_row_content_title','field_64888cd1e26e0'),(236318,41263,'blocks_1_row_content_heading','Benefits of training with us'),(236319,41263,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(236320,41263,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(236321,41263,'_blocks_1_row_content_text','field_64888ce2e26e2'),(236322,41263,'blocks_1_row_content_actions',''),(236323,41263,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(236324,41263,'blocks_1_row_content',''),(236325,41263,'_blocks_1_row_content','field_64888cb0e26df'),(236326,41263,'blocks_1_steps_0_icon','progression.svg'),(236327,41263,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(236328,41263,'blocks_1_steps_0_title','Earning Potential'),(236329,41263,'_blocks_1_steps_0_title','field_64888d94e26e7'),(236330,41263,'blocks_1_steps_0_text','Attract new clients, retain current ones, and increase your rates with the Diploma in Biomechanics Coaching. This programme gives you a system to reach new clients and work more effectively with existing ones. Full body screenings may also require extra sessions, providing clients with thorough support and helping you build stronger, long-term relationships.'),(236331,41263,'_blocks_1_steps_0_text','field_64888d99e26e8'),(236332,41263,'blocks_1_steps_1_icon','support.svg'),(236333,41263,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(236334,41263,'blocks_1_steps_1_title','Lifetime Learning Promise'),(236335,41263,'_blocks_1_steps_1_title','field_64888d94e26e7'),(236336,41263,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(236337,41263,'_blocks_1_steps_1_text','field_64888d99e26e8'),(236338,41263,'blocks_1_steps_2_icon','qualification.svg'),(236339,41263,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(236340,41263,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(236341,41263,'_blocks_1_steps_2_title','field_64888d94e26e7'),(236342,41263,'blocks_1_steps_2_text','Developed through over 20 years of research with 4,000 participants - from those recovering from injury to active individuals - is a comprehensive, evidence-backed programme for mastering movement assessments. Through a blend of online learning and hands-on workshops, you’ll learn specific tests and screens to understand the roles of the pelvis, spine, and upper body in lower limb function, particularly foot mechanics. This approach equips you with the insights needed for effective orthotic prescription and tailored movement strategies, helping you optimise outcomes for every client.'),(236343,41263,'_blocks_1_steps_2_text','field_64888d99e26e8'),(236344,41263,'blocks_1_steps_3_icon','leaders.svg'),(236345,41263,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(236346,41263,'blocks_1_steps_3_title','Stand Out From the Crowd'),(236347,41263,'_blocks_1_steps_3_title','field_64888d94e26e7'),(236348,41263,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(236349,41263,'_blocks_1_steps_3_text','field_64888d99e26e8'),(236350,41263,'blocks_1_steps','4'),(236351,41263,'_blocks_1_steps','field_64888d44e26e5'),(236352,41263,'blocks_3_acfe_flexible_toggle',''),(236353,41263,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(236354,41263,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(236355,41263,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(236356,41263,'blocks_3_options_theme','#ffffff'),(236357,41263,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(236358,41263,'blocks_3_options_reverse','0'),(236359,41263,'_blocks_3_options_reverse','field_61768049bb8ac'),(236360,41263,'blocks_3_options',''),(236361,41263,'_blocks_3_options','field_617682517c334'),(236362,41263,'blocks_3_split_5050_image','39617'),(236363,41263,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(236364,41263,'blocks_3_split_5050_video',''),(236365,41263,'_blocks_3_split_5050_video','field_6239f3160848a'),(236366,41263,'blocks_3_split_5050_content_title',''),(236367,41263,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(236368,41263,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(236369,41263,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(236370,41263,'blocks_3_split_5050_content_text','This integrated system offers a full-body approach, covering the pelvis, spine, shoulders, knees, and feet in a comprehensive biomechanical assessment programme. By understanding how the upper body affects lower limb mechanics, podiatrists can address foot issues with a more holistic perspective. This unique assessment method enables you to uncover connections and solutions that traditional approaches may overlook, helping to improve client retention and build trust over time.\r\n\r\nOur model promotes a prevention-focused, system-led approach rather than just responding to symptoms. This proactive method allows you to expand your client base while reducing risks through exercise prescription, supporting clients before, during, and after injuries. It also empowers you with exercise prescription skills that complement your existing expertise, allowing for informed orthotic prescriptions and an integrated care approach to foot health.'),(236371,41263,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(236372,41263,'blocks_3_split_5050_content_actions',''),(236373,41263,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(236374,41263,'blocks_3_split_5050_content',''),(236375,41263,'_blocks_3_split_5050_content','field_61767afceb8ba'),(236376,41263,'blocks_4_acfe_flexible_toggle',''),(236377,41263,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(236378,41263,'blocks_4_acfe_flexible_layout_title','Tabs'),(236379,41263,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(236380,41263,'blocks_4_options_theme','#ffffff'),(236381,41263,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(236382,41263,'blocks_4_options',''),(236383,41263,'_blocks_4_options','field_6177cfcd8140f'),(236384,41263,'blocks_4_tabs_0_tab_label','What will I learn?'),(236385,41263,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(236386,41263,'blocks_4_tabs_0_tab_content_title',''),(236387,41263,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(236388,41263,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(236389,41263,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(236390,41263,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(236391,41263,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(236392,41263,'blocks_4_tabs_0_tab_content_actions',''),(236393,41263,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(236394,41263,'blocks_4_tabs_0_tab_content',''),(236395,41263,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(236396,41263,'blocks_4_tabs_0_tab_image','39076'),(236397,41263,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(236398,41263,'blocks_4_tabs_1_tab_label','What do I need?'),(236399,41263,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(236400,41263,'blocks_4_tabs_1_tab_content_title',''),(236401,41263,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(236402,41263,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(236403,41263,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(236404,41263,'blocks_4_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(236405,41263,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(236406,41263,'blocks_4_tabs_1_tab_content_actions',''),(236407,41263,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(236408,41263,'blocks_4_tabs_1_tab_content',''),(236409,41263,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(236410,41263,'blocks_4_tabs_1_tab_image','39223'),(236411,41263,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(236412,41263,'blocks_4_tabs_2_tab_label','Where can I learn?'),(236413,41263,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(236414,41263,'blocks_4_tabs_2_tab_content_title',''),(236415,41263,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(236416,41263,'blocks_4_tabs_2_tab_content_heading','Locations'),(236417,41263,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(236418,41263,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(236419,41263,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(236420,41263,'blocks_4_tabs_2_tab_content_actions',''),(236421,41263,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(236422,41263,'blocks_4_tabs_2_tab_content',''),(236423,41263,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(236424,41263,'blocks_4_tabs_2_tab_image','39224'),(236425,41263,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(236426,41263,'blocks_4_tabs','3'),(236427,41263,'_blocks_4_tabs','field_6177cff281419'),(236428,41263,'blocks_5_acfe_flexible_toggle',''),(236429,41263,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(236430,41263,'blocks_5_acfe_flexible_layout_title','Text Block'),(236431,41263,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(236432,41263,'blocks_5_options_theme','#b61234'),(236433,41263,'_blocks_5_options_theme','field_6176830e2ad17'),(236434,41263,'blocks_5_options',''),(236435,41263,'_blocks_5_options','field_6176830e2ad16'),(236436,41263,'blocks_5_text_block_heading','Fees & Funding Options'),(236437,41263,'_blocks_5_text_block_heading','field_617669d413097'),(236438,41263,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(236439,41263,'_blocks_5_text_block_content','field_617669ec13098'),(236440,41263,'blocks_6_acfe_flexible_toggle',''),(236441,41263,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(236442,41263,'blocks_6_acfe_flexible_layout_title','Icons'),(236443,41263,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(236444,41263,'blocks_6_options_theme','#b61234'),(236445,41263,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(236446,41263,'blocks_6_options_format','row'),(236447,41263,'_blocks_6_options_format','field_64bfde9a90690'),(236448,41263,'blocks_6_options',''),(236449,41263,'_blocks_6_options','field_64bfdd9b90684'),(236450,41263,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(236451,41263,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(236452,41263,'blocks_6_icon_row_items_0_label','Pay in Full'),(236453,41263,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(236454,41263,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(236455,41263,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(236456,41263,'blocks_6_icon_row_items_1_icon','finance.svg'),(236457,41263,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(236458,41263,'blocks_6_icon_row_items_1_label','0% finance'),(236459,41263,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(236460,41263,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(236461,41263,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(236462,41263,'blocks_6_icon_row_items_2_icon','deposit.svg'),(236463,41263,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(236464,41263,'blocks_6_icon_row_items_2_label','Deposit & balance'),(236465,41263,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(236466,41263,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(236467,41263,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(236468,41263,'blocks_6_icon_row_items','3'),(236469,41263,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(236470,41263,'blocks_8_acfe_flexible_toggle',''),(236471,41263,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(236472,41263,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(236473,41263,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(236474,41263,'blocks_8_testimonial_slider_content_title',''),(236475,41263,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(236476,41263,'blocks_8_testimonial_slider_content_heading','Testimonials'),(236477,41263,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(236478,41263,'blocks_8_testimonial_slider_content_text',''),(236479,41263,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(236480,41263,'blocks_8_testimonial_slider_content_actions',''),(236481,41263,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(236482,41263,'blocks_8_testimonial_slider_content',''),(236483,41263,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(236484,41263,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(236485,41263,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(236486,41263,'blocks_8_testimonial_slider_ambassador_bool','0'),(236487,41263,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(236488,41263,'blocks_9_acfe_flexible_toggle',''),(236489,41263,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(236490,41263,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(236491,41263,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(236492,41263,'blocks_9_options_theme','#ffffff'),(236493,41263,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(236494,41263,'blocks_9_options_state','0'),(236495,41263,'_blocks_9_options_state','field_6239fcb7508c5'),(236496,41263,'blocks_9_options',''),(236497,41263,'_blocks_9_options','field_6177e2991ac44'),(236498,41263,'blocks_9_content_title',''),(236499,41263,'_blocks_9_content_title','field_64d237e8bb1e2'),(236500,41263,'blocks_9_content_heading','Frequently asked questions '),(236501,41263,'_blocks_9_content_heading','field_64d237e8bb1e3'),(236502,41263,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(236503,41263,'_blocks_9_content_text','field_64d237e8bb1e4'),(236504,41263,'blocks_9_content_actions',''),(236505,41263,'_blocks_9_content_actions','field_64d237e8bb1e5'),(236506,41263,'blocks_9_content_align','left'),(236507,41263,'_blocks_9_content_align','field_64d2443e6b6aa'),(236508,41263,'blocks_9_content',''),(236509,41263,'_blocks_9_content','field_64d237e8bb1e1'),(236510,41263,'blocks_9_accordion_content','faqs'),(236511,41263,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(236512,41263,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(236513,41263,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(236514,41263,'blocks_9_actions',''),(236515,41263,'_blocks_9_actions','field_61a746a817f7a'),(236516,41263,'blocks_7_acfe_flexible_toggle',''),(236517,41263,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(236518,41263,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(236519,41263,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(236520,41263,'blocks_7_options_theme','#f5f5f5'),(236521,41263,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(236522,41263,'blocks_7_options_reverse','0'),(236523,41263,'_blocks_7_options_reverse','field_61768049bb8ac'),(236524,41263,'blocks_7_options',''),(236525,41263,'_blocks_7_options','field_617682517c334'),(236526,41263,'blocks_7_split_5050_image','40920'),(236527,41263,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(236528,41263,'blocks_7_split_5050_video',''),(236529,41263,'_blocks_7_split_5050_video','field_6239f3160848a'),(236530,41263,'blocks_7_split_5050_content_title',''),(236531,41263,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(236532,41263,'blocks_7_split_5050_content_heading','Why Study This Course?'),(236533,41263,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(236534,41263,'blocks_7_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(236535,41263,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(236536,41263,'blocks_7_split_5050_content_actions',''),(236537,41263,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(236538,41263,'blocks_7_split_5050_content',''),(236539,41263,'_blocks_7_split_5050_content','field_61767afceb8ba'),(236540,41264,'hide_hero','0'),(236541,41264,'_hide_hero','field_66a2380fcda39'),(236542,41264,'hero_title','Biomechanics and Podiatrists'),(236543,41264,'_hero_title','field_617571fe285e8'),(236544,41264,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(236545,41264,'_hero_text','field_6175723c285e9'),(236546,41264,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(236547,41264,'_hero_actions_0_button','field_61757281285eb'),(236548,41264,'hero_actions','1'),(236549,41264,'_hero_actions','field_61757270285ea'),(236550,41264,'hero_style','default'),(236551,41264,'_hero_style','field_62051d9dc5324'),(236552,41264,'_thumbnail_id','39247'),(236553,41264,'__thumbnail_id','field_617570855ddaf'),(236554,41264,'hero_image_pos_x','right'),(236555,41264,'_hero_image_pos_x','field_62ec3d05390bb'),(236556,41264,'hero_image_pos_y','top'),(236557,41264,'_hero_image_pos_y','field_62ec3d05390bc'),(236558,41264,'hero_image_pos',''),(236559,41264,'_hero_image_pos','field_62ec3d05390ba'),(236560,41264,'fft_hide_from_listings','0'),(236561,41264,'_fft_hide_from_listings','field_61f1320446ab2'),(236562,41264,'fft_page_format','default'),(236563,41264,'_fft_page_format','field_61ae213f1f218'),(236564,41264,'fft_hide_nav','0'),(236565,41264,'_fft_hide_nav','field_635bd5e43527c'),(236566,41264,'fft_hide_header_call_to_action','0'),(236567,41264,'_fft_hide_header_call_to_action','field_635bd6723527d'),(236568,41264,'fft_page_sitemap','0'),(236569,41264,'_fft_page_sitemap','field_61af9b34e8181'),(236570,41264,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(236571,41264,'_blocks','field_6176696113096'),(236572,41264,'blocks_2_acfe_flexible_toggle',''),(236573,41264,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(236574,41264,'blocks_2_acfe_flexible_layout_title','Form'),(236575,41264,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(236576,41264,'blocks_2_row_content_format','standard'),(236577,41264,'_blocks_2_row_content_format','field_6481ead962881'),(236578,41264,'blocks_2_row_content_title',''),(236579,41264,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(236580,41264,'blocks_2_row_content_heading','Enquire Today'),(236581,41264,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(236582,41264,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(236583,41264,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(236584,41264,'blocks_2_row_content_actions',''),(236585,41264,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(236586,41264,'blocks_2_row_content',''),(236587,41264,'_blocks_2_row_content','field_61a0f5f5b3db0'),(236588,41264,'blocks_2_row_form','40394'),(236589,41264,'_blocks_2_row_form','field_61a4ff2c0b08e'),(236590,41264,'blocks_2_row_form_button_label',''),(236591,41264,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(236592,41264,'blocks_0_acfe_flexible_toggle',''),(236593,41264,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(236594,41264,'blocks_0_acfe_flexible_layout_title','Template'),(236595,41264,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(236596,41264,'blocks_0_template','39087'),(236597,41264,'_blocks_0_template','field_617bdd570fe01'),(236598,41264,'blocks_1_acfe_flexible_toggle',''),(236599,41264,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(236600,41264,'blocks_1_acfe_flexible_layout_title','Steps'),(236601,41264,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(236602,41264,'blocks_1_row_content_title',''),(236603,41264,'_blocks_1_row_content_title','field_64888cd1e26e0'),(236604,41264,'blocks_1_row_content_heading','Benefits of training with us'),(236605,41264,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(236606,41264,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(236607,41264,'_blocks_1_row_content_text','field_64888ce2e26e2'),(236608,41264,'blocks_1_row_content_actions',''),(236609,41264,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(236610,41264,'blocks_1_row_content',''),(236611,41264,'_blocks_1_row_content','field_64888cb0e26df'),(236612,41264,'blocks_1_steps_0_icon','progression.svg'),(236613,41264,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(236614,41264,'blocks_1_steps_0_title','Earning Potential'),(236615,41264,'_blocks_1_steps_0_title','field_64888d94e26e7'),(236616,41264,'blocks_1_steps_0_text','Attract new clients, retain current ones, and increase your rates with the Diploma in Biomechanics Coaching. This programme gives you a system to reach new clients and work more effectively with existing ones. Full body screenings may also require extra sessions, providing clients with thorough support and helping you build stronger, long-term relationships.'),(236617,41264,'_blocks_1_steps_0_text','field_64888d99e26e8'),(236618,41264,'blocks_1_steps_1_icon','support.svg'),(236619,41264,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(236620,41264,'blocks_1_steps_1_title','Lifetime Learning Promise'),(236621,41264,'_blocks_1_steps_1_title','field_64888d94e26e7'),(236622,41264,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(236623,41264,'_blocks_1_steps_1_text','field_64888d99e26e8'),(236624,41264,'blocks_1_steps_2_icon','qualification.svg'),(236625,41264,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(236626,41264,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(236627,41264,'_blocks_1_steps_2_title','field_64888d94e26e7'),(236628,41264,'blocks_1_steps_2_text','Developed through over 20 years of research with 4,000 participants - from those recovering from injury to active individuals - is a comprehensive, evidence-backed programme for mastering movement assessments. Through a blend of online learning and hands-on workshops, you’ll learn specific tests and screens to understand the roles of the pelvis, spine, and upper body in lower limb function, particularly foot mechanics. This approach equips you with the insights needed for effective orthotic prescription and tailored movement strategies, helping you optimise outcomes for every client.'),(236629,41264,'_blocks_1_steps_2_text','field_64888d99e26e8'),(236630,41264,'blocks_1_steps_3_icon','leaders.svg'),(236631,41264,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(236632,41264,'blocks_1_steps_3_title','Stand Out From the Crowd'),(236633,41264,'_blocks_1_steps_3_title','field_64888d94e26e7'),(236634,41264,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(236635,41264,'_blocks_1_steps_3_text','field_64888d99e26e8'),(236636,41264,'blocks_1_steps','4'),(236637,41264,'_blocks_1_steps','field_64888d44e26e5'),(236638,41264,'blocks_3_acfe_flexible_toggle',''),(236639,41264,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(236640,41264,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(236641,41264,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(236642,41264,'blocks_3_options_theme','#ffffff'),(236643,41264,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(236644,41264,'blocks_3_options_reverse','0'),(236645,41264,'_blocks_3_options_reverse','field_61768049bb8ac'),(236646,41264,'blocks_3_options',''),(236647,41264,'_blocks_3_options','field_617682517c334'),(236648,41264,'blocks_3_split_5050_image','39617'),(236649,41264,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(236650,41264,'blocks_3_split_5050_video',''),(236651,41264,'_blocks_3_split_5050_video','field_6239f3160848a'),(236652,41264,'blocks_3_split_5050_content_title',''),(236653,41264,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(236654,41264,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(236655,41264,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(236656,41264,'blocks_3_split_5050_content_text','This integrated system offers a full-body approach, covering the pelvis, spine, shoulders, knees, and feet in a comprehensive biomechanical assessment programme. By understanding how the upper body affects lower limb mechanics, podiatrists can address foot issues with a more holistic perspective. This unique assessment method enables you to uncover connections and solutions that traditional approaches may overlook, helping to improve client retention and build trust over time.\r\n\r\nOur model promotes a prevention-focused, system-led approach rather than just responding to symptoms. This proactive method allows you to expand your client base while reducing risks through exercise prescription, supporting clients before, during, and after injuries. It also empowers you with exercise prescription skills that complement your existing expertise, allowing for informed orthotic prescriptions and an integrated care approach to foot health.'),(236657,41264,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(236658,41264,'blocks_3_split_5050_content_actions',''),(236659,41264,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(236660,41264,'blocks_3_split_5050_content',''),(236661,41264,'_blocks_3_split_5050_content','field_61767afceb8ba'),(236662,41264,'blocks_4_acfe_flexible_toggle',''),(236663,41264,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(236664,41264,'blocks_4_acfe_flexible_layout_title','Tabs'),(236665,41264,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(236666,41264,'blocks_4_options_theme','#ffffff'),(236667,41264,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(236668,41264,'blocks_4_options',''),(236669,41264,'_blocks_4_options','field_6177cfcd8140f'),(236670,41264,'blocks_4_tabs_0_tab_label','What will I learn?'),(236671,41264,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(236672,41264,'blocks_4_tabs_0_tab_content_title',''),(236673,41264,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(236674,41264,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(236675,41264,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(236676,41264,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n 	<li>Screening system that informs orthotic prescription</li>\r\n 	<li>Provide exercise prescription skills</li>\r\n</ul>'),(236677,41264,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(236678,41264,'blocks_4_tabs_0_tab_content_actions',''),(236679,41264,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(236680,41264,'blocks_4_tabs_0_tab_content',''),(236681,41264,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(236682,41264,'blocks_4_tabs_0_tab_image','39076'),(236683,41264,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(236684,41264,'blocks_4_tabs_1_tab_label','What do I need?'),(236685,41264,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(236686,41264,'blocks_4_tabs_1_tab_content_title',''),(236687,41264,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(236688,41264,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(236689,41264,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(236690,41264,'blocks_4_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(236691,41264,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(236692,41264,'blocks_4_tabs_1_tab_content_actions',''),(236693,41264,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(236694,41264,'blocks_4_tabs_1_tab_content',''),(236695,41264,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(236696,41264,'blocks_4_tabs_1_tab_image','39223'),(236697,41264,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(236698,41264,'blocks_4_tabs_2_tab_label','Where can I learn?'),(236699,41264,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(236700,41264,'blocks_4_tabs_2_tab_content_title',''),(236701,41264,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(236702,41264,'blocks_4_tabs_2_tab_content_heading','Locations'),(236703,41264,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(236704,41264,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(236705,41264,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(236706,41264,'blocks_4_tabs_2_tab_content_actions',''),(236707,41264,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(236708,41264,'blocks_4_tabs_2_tab_content',''),(236709,41264,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(236710,41264,'blocks_4_tabs_2_tab_image','39224'),(236711,41264,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(236712,41264,'blocks_4_tabs','3'),(236713,41264,'_blocks_4_tabs','field_6177cff281419'),(236714,41264,'blocks_5_acfe_flexible_toggle',''),(236715,41264,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(236716,41264,'blocks_5_acfe_flexible_layout_title','Text Block'),(236717,41264,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(236718,41264,'blocks_5_options_theme','#b61234'),(236719,41264,'_blocks_5_options_theme','field_6176830e2ad17'),(236720,41264,'blocks_5_options',''),(236721,41264,'_blocks_5_options','field_6176830e2ad16'),(236722,41264,'blocks_5_text_block_heading','Fees & Funding Options'),(236723,41264,'_blocks_5_text_block_heading','field_617669d413097'),(236724,41264,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(236725,41264,'_blocks_5_text_block_content','field_617669ec13098'),(236726,41264,'blocks_6_acfe_flexible_toggle',''),(236727,41264,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(236728,41264,'blocks_6_acfe_flexible_layout_title','Icons'),(236729,41264,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(236730,41264,'blocks_6_options_theme','#b61234'),(236731,41264,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(236732,41264,'blocks_6_options_format','row'),(236733,41264,'_blocks_6_options_format','field_64bfde9a90690'),(236734,41264,'blocks_6_options',''),(236735,41264,'_blocks_6_options','field_64bfdd9b90684'),(236736,41264,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(236737,41264,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(236738,41264,'blocks_6_icon_row_items_0_label','Pay in Full'),(236739,41264,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(236740,41264,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(236741,41264,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(236742,41264,'blocks_6_icon_row_items_1_icon','finance.svg'),(236743,41264,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(236744,41264,'blocks_6_icon_row_items_1_label','0% finance'),(236745,41264,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(236746,41264,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(236747,41264,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(236748,41264,'blocks_6_icon_row_items_2_icon','deposit.svg'),(236749,41264,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(236750,41264,'blocks_6_icon_row_items_2_label','Deposit & balance'),(236751,41264,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(236752,41264,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(236753,41264,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(236754,41264,'blocks_6_icon_row_items','3'),(236755,41264,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(236756,41264,'blocks_8_acfe_flexible_toggle',''),(236757,41264,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(236758,41264,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(236759,41264,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(236760,41264,'blocks_8_testimonial_slider_content_title',''),(236761,41264,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(236762,41264,'blocks_8_testimonial_slider_content_heading','Testimonials'),(236763,41264,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(236764,41264,'blocks_8_testimonial_slider_content_text',''),(236765,41264,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(236766,41264,'blocks_8_testimonial_slider_content_actions',''),(236767,41264,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(236768,41264,'blocks_8_testimonial_slider_content',''),(236769,41264,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(236770,41264,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(236771,41264,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(236772,41264,'blocks_8_testimonial_slider_ambassador_bool','0'),(236773,41264,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(236774,41264,'blocks_9_acfe_flexible_toggle',''),(236775,41264,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(236776,41264,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(236777,41264,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(236778,41264,'blocks_9_options_theme','#ffffff'),(236779,41264,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(236780,41264,'blocks_9_options_state','0'),(236781,41264,'_blocks_9_options_state','field_6239fcb7508c5'),(236782,41264,'blocks_9_options',''),(236783,41264,'_blocks_9_options','field_6177e2991ac44'),(236784,41264,'blocks_9_content_title',''),(236785,41264,'_blocks_9_content_title','field_64d237e8bb1e2'),(236786,41264,'blocks_9_content_heading','Frequently asked questions '),(236787,41264,'_blocks_9_content_heading','field_64d237e8bb1e3'),(236788,41264,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(236789,41264,'_blocks_9_content_text','field_64d237e8bb1e4'),(236790,41264,'blocks_9_content_actions',''),(236791,41264,'_blocks_9_content_actions','field_64d237e8bb1e5'),(236792,41264,'blocks_9_content_align','left'),(236793,41264,'_blocks_9_content_align','field_64d2443e6b6aa'),(236794,41264,'blocks_9_content',''),(236795,41264,'_blocks_9_content','field_64d237e8bb1e1'),(236796,41264,'blocks_9_accordion_content','faqs'),(236797,41264,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(236798,41264,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(236799,41264,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(236800,41264,'blocks_9_actions',''),(236801,41264,'_blocks_9_actions','field_61a746a817f7a'),(236802,41264,'blocks_7_acfe_flexible_toggle',''),(236803,41264,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(236804,41264,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(236805,41264,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(236806,41264,'blocks_7_options_theme','#f5f5f5'),(236807,41264,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(236808,41264,'blocks_7_options_reverse','0'),(236809,41264,'_blocks_7_options_reverse','field_61768049bb8ac'),(236810,41264,'blocks_7_options',''),(236811,41264,'_blocks_7_options','field_617682517c334'),(236812,41264,'blocks_7_split_5050_image','40920'),(236813,41264,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(236814,41264,'blocks_7_split_5050_video',''),(236815,41264,'_blocks_7_split_5050_video','field_6239f3160848a'),(236816,41264,'blocks_7_split_5050_content_title',''),(236817,41264,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(236818,41264,'blocks_7_split_5050_content_heading','Why Study This Course?'),(236819,41264,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(236820,41264,'blocks_7_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(236821,41264,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(236822,41264,'blocks_7_split_5050_content_actions',''),(236823,41264,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(236824,41264,'blocks_7_split_5050_content',''),(236825,41264,'_blocks_7_split_5050_content','field_61767afceb8ba'),(236826,41265,'hide_hero','0'),(236827,41265,'_hide_hero','field_66a2380fcda39'),(236828,41265,'hero_title','Biomechanics and Podiatrists'),(236829,41265,'_hero_title','field_617571fe285e8'),(236830,41265,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(236831,41265,'_hero_text','field_6175723c285e9'),(236832,41265,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(236833,41265,'_hero_actions_0_button','field_61757281285eb'),(236834,41265,'hero_actions','1'),(236835,41265,'_hero_actions','field_61757270285ea'),(236836,41265,'hero_style','default'),(236837,41265,'_hero_style','field_62051d9dc5324'),(236838,41265,'_thumbnail_id','39247'),(236839,41265,'__thumbnail_id','field_617570855ddaf'),(236840,41265,'hero_image_pos_x','right'),(236841,41265,'_hero_image_pos_x','field_62ec3d05390bb'),(236842,41265,'hero_image_pos_y','top'),(236843,41265,'_hero_image_pos_y','field_62ec3d05390bc'),(236844,41265,'hero_image_pos',''),(236845,41265,'_hero_image_pos','field_62ec3d05390ba'),(236846,41265,'fft_hide_from_listings','0'),(236847,41265,'_fft_hide_from_listings','field_61f1320446ab2'),(236848,41265,'fft_page_format','default'),(236849,41265,'_fft_page_format','field_61ae213f1f218'),(236850,41265,'fft_hide_nav','0'),(236851,41265,'_fft_hide_nav','field_635bd5e43527c'),(236852,41265,'fft_hide_header_call_to_action','0'),(236853,41265,'_fft_hide_header_call_to_action','field_635bd6723527d'),(236854,41265,'fft_page_sitemap','0'),(236855,41265,'_fft_page_sitemap','field_61af9b34e8181'),(236856,41265,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(236857,41265,'_blocks','field_6176696113096'),(236858,41265,'blocks_2_acfe_flexible_toggle',''),(236859,41265,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(236860,41265,'blocks_2_acfe_flexible_layout_title','Form'),(236861,41265,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(236862,41265,'blocks_2_row_content_format','standard'),(236863,41265,'_blocks_2_row_content_format','field_6481ead962881'),(236864,41265,'blocks_2_row_content_title',''),(236865,41265,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(236866,41265,'blocks_2_row_content_heading','Enquire Today'),(236867,41265,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(236868,41265,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(236869,41265,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(236870,41265,'blocks_2_row_content_actions',''),(236871,41265,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(236872,41265,'blocks_2_row_content',''),(236873,41265,'_blocks_2_row_content','field_61a0f5f5b3db0'),(236874,41265,'blocks_2_row_form','40394'),(236875,41265,'_blocks_2_row_form','field_61a4ff2c0b08e'),(236876,41265,'blocks_2_row_form_button_label',''),(236877,41265,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(236878,41265,'blocks_0_acfe_flexible_toggle',''),(236879,41265,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(236880,41265,'blocks_0_acfe_flexible_layout_title','Template'),(236881,41265,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(236882,41265,'blocks_0_template','39087'),(236883,41265,'_blocks_0_template','field_617bdd570fe01'),(236884,41265,'blocks_1_acfe_flexible_toggle',''),(236885,41265,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(236886,41265,'blocks_1_acfe_flexible_layout_title','Steps'),(236887,41265,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(236888,41265,'blocks_1_row_content_title',''),(236889,41265,'_blocks_1_row_content_title','field_64888cd1e26e0'),(236890,41265,'blocks_1_row_content_heading','Benefits of training with us'),(236891,41265,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(236892,41265,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(236893,41265,'_blocks_1_row_content_text','field_64888ce2e26e2'),(236894,41265,'blocks_1_row_content_actions',''),(236895,41265,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(236896,41265,'blocks_1_row_content',''),(236897,41265,'_blocks_1_row_content','field_64888cb0e26df'),(236898,41265,'blocks_1_steps_0_icon','progression.svg'),(236899,41265,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(236900,41265,'blocks_1_steps_0_title','Earning Potential'),(236901,41265,'_blocks_1_steps_0_title','field_64888d94e26e7'),(236902,41265,'blocks_1_steps_0_text','Attract new clients, retain current ones, and increase your rates with the Diploma in Biomechanics Coaching. This programme gives you a system to reach new clients and work more effectively with existing ones. Full body screenings may also require extra sessions, providing clients with thorough support and helping you build stronger, long-term relationships.'),(236903,41265,'_blocks_1_steps_0_text','field_64888d99e26e8'),(236904,41265,'blocks_1_steps_1_icon','support.svg'),(236905,41265,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(236906,41265,'blocks_1_steps_1_title','Lifetime Learning Promise'),(236907,41265,'_blocks_1_steps_1_title','field_64888d94e26e7'),(236908,41265,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(236909,41265,'_blocks_1_steps_1_text','field_64888d99e26e8'),(236910,41265,'blocks_1_steps_2_icon','qualification.svg'),(236911,41265,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(236912,41265,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(236913,41265,'_blocks_1_steps_2_title','field_64888d94e26e7'),(236914,41265,'blocks_1_steps_2_text','Developed through over 20 years of research with 4,000 participants - from those recovering from injury to active individuals - is a comprehensive, evidence-backed programme for mastering movement assessments. Through a blend of online learning and hands-on workshops, you’ll learn specific tests and screens to understand the roles of the pelvis, spine, and upper body in lower limb function, particularly foot mechanics. This approach equips you with the insights needed for effective orthotic prescription and tailored movement strategies, helping you optimise outcomes for every client.'),(236915,41265,'_blocks_1_steps_2_text','field_64888d99e26e8'),(236916,41265,'blocks_1_steps_3_icon','leaders.svg'),(236917,41265,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(236918,41265,'blocks_1_steps_3_title','Stand Out From the Crowd'),(236919,41265,'_blocks_1_steps_3_title','field_64888d94e26e7'),(236920,41265,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(236921,41265,'_blocks_1_steps_3_text','field_64888d99e26e8'),(236922,41265,'blocks_1_steps','4'),(236923,41265,'_blocks_1_steps','field_64888d44e26e5'),(236924,41265,'blocks_3_acfe_flexible_toggle',''),(236925,41265,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(236926,41265,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(236927,41265,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(236928,41265,'blocks_3_options_theme','#ffffff'),(236929,41265,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(236930,41265,'blocks_3_options_reverse','0'),(236931,41265,'_blocks_3_options_reverse','field_61768049bb8ac'),(236932,41265,'blocks_3_options',''),(236933,41265,'_blocks_3_options','field_617682517c334'),(236934,41265,'blocks_3_split_5050_image','39617'),(236935,41265,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(236936,41265,'blocks_3_split_5050_video',''),(236937,41265,'_blocks_3_split_5050_video','field_6239f3160848a'),(236938,41265,'blocks_3_split_5050_content_title',''),(236939,41265,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(236940,41265,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(236941,41265,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(236942,41265,'blocks_3_split_5050_content_text','This integrated system offers a full-body approach, covering the pelvis, spine, shoulders, knees, and feet in a comprehensive biomechanical assessment programme. By understanding how the upper body affects lower limb mechanics, podiatrists can address foot issues with a more holistic perspective. This unique assessment method enables you to uncover connections and solutions that traditional approaches may overlook, helping to improve client retention and build trust over time.\r\n\r\nOur model promotes a prevention-focused, system-led approach rather than just responding to symptoms. This proactive method allows you to expand your client base while reducing risks through exercise prescription, supporting clients before, during, and after injuries. It also empowers you with exercise prescription skills that complement your existing expertise, allowing for informed orthotic prescriptions and an integrated care approach to foot health.'),(236943,41265,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(236944,41265,'blocks_3_split_5050_content_actions',''),(236945,41265,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(236946,41265,'blocks_3_split_5050_content',''),(236947,41265,'_blocks_3_split_5050_content','field_61767afceb8ba'),(236948,41265,'blocks_4_acfe_flexible_toggle',''),(236949,41265,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(236950,41265,'blocks_4_acfe_flexible_layout_title','Tabs'),(236951,41265,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(236952,41265,'blocks_4_options_theme','#ffffff'),(236953,41265,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(236954,41265,'blocks_4_options',''),(236955,41265,'_blocks_4_options','field_6177cfcd8140f'),(236956,41265,'blocks_4_tabs_0_tab_label','What will I learn?'),(236957,41265,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(236958,41265,'blocks_4_tabs_0_tab_content_title',''),(236959,41265,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(236960,41265,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(236961,41265,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(236962,41265,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n 	<li>Screening system that informs orthotic prescription</li>\r\n 	<li>Provide exercise prescription skills</li>\r\n</ul>'),(236963,41265,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(236964,41265,'blocks_4_tabs_0_tab_content_actions',''),(236965,41265,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(236966,41265,'blocks_4_tabs_0_tab_content',''),(236967,41265,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(236968,41265,'blocks_4_tabs_0_tab_image','39076'),(236969,41265,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(236970,41265,'blocks_4_tabs_1_tab_label','What do I need?'),(236971,41265,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(236972,41265,'blocks_4_tabs_1_tab_content_title',''),(236973,41265,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(236974,41265,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(236975,41265,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(236976,41265,'blocks_4_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Podiatry Qualification</li>\r\n 	<li>Chiropodist Qualification</li>\r\n 	<li>Orthotist Qualification</li>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(236977,41265,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(236978,41265,'blocks_4_tabs_1_tab_content_actions',''),(236979,41265,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(236980,41265,'blocks_4_tabs_1_tab_content',''),(236981,41265,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(236982,41265,'blocks_4_tabs_1_tab_image','39223'),(236983,41265,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(236984,41265,'blocks_4_tabs_2_tab_label','Where can I learn?'),(236985,41265,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(236986,41265,'blocks_4_tabs_2_tab_content_title',''),(236987,41265,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(236988,41265,'blocks_4_tabs_2_tab_content_heading','Locations'),(236989,41265,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(236990,41265,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(236991,41265,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(236992,41265,'blocks_4_tabs_2_tab_content_actions',''),(236993,41265,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(236994,41265,'blocks_4_tabs_2_tab_content',''),(236995,41265,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(236996,41265,'blocks_4_tabs_2_tab_image','39224'),(236997,41265,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(236998,41265,'blocks_4_tabs','3'),(236999,41265,'_blocks_4_tabs','field_6177cff281419'),(237000,41265,'blocks_5_acfe_flexible_toggle',''),(237001,41265,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(237002,41265,'blocks_5_acfe_flexible_layout_title','Text Block'),(237003,41265,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(237004,41265,'blocks_5_options_theme','#b61234'),(237005,41265,'_blocks_5_options_theme','field_6176830e2ad17'),(237006,41265,'blocks_5_options',''),(237007,41265,'_blocks_5_options','field_6176830e2ad16'),(237008,41265,'blocks_5_text_block_heading','Fees & Funding Options'),(237009,41265,'_blocks_5_text_block_heading','field_617669d413097'),(237010,41265,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(237011,41265,'_blocks_5_text_block_content','field_617669ec13098'),(237012,41265,'blocks_6_acfe_flexible_toggle',''),(237013,41265,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(237014,41265,'blocks_6_acfe_flexible_layout_title','Icons'),(237015,41265,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(237016,41265,'blocks_6_options_theme','#b61234'),(237017,41265,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(237018,41265,'blocks_6_options_format','row'),(237019,41265,'_blocks_6_options_format','field_64bfde9a90690'),(237020,41265,'blocks_6_options',''),(237021,41265,'_blocks_6_options','field_64bfdd9b90684'),(237022,41265,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(237023,41265,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(237024,41265,'blocks_6_icon_row_items_0_label','Pay in Full'),(237025,41265,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(237026,41265,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(237027,41265,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(237028,41265,'blocks_6_icon_row_items_1_icon','finance.svg'),(237029,41265,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(237030,41265,'blocks_6_icon_row_items_1_label','0% finance'),(237031,41265,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(237032,41265,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(237033,41265,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(237034,41265,'blocks_6_icon_row_items_2_icon','deposit.svg'),(237035,41265,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(237036,41265,'blocks_6_icon_row_items_2_label','Deposit & balance'),(237037,41265,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(237038,41265,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(237039,41265,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(237040,41265,'blocks_6_icon_row_items','3'),(237041,41265,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(237042,41265,'blocks_8_acfe_flexible_toggle',''),(237043,41265,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(237044,41265,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(237045,41265,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(237046,41265,'blocks_8_testimonial_slider_content_title',''),(237047,41265,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(237048,41265,'blocks_8_testimonial_slider_content_heading','Testimonials'),(237049,41265,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(237050,41265,'blocks_8_testimonial_slider_content_text',''),(237051,41265,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(237052,41265,'blocks_8_testimonial_slider_content_actions',''),(237053,41265,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(237054,41265,'blocks_8_testimonial_slider_content',''),(237055,41265,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(237056,41265,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(237057,41265,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(237058,41265,'blocks_8_testimonial_slider_ambassador_bool','0'),(237059,41265,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(237060,41265,'blocks_9_acfe_flexible_toggle',''),(237061,41265,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(237062,41265,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(237063,41265,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(237064,41265,'blocks_9_options_theme','#ffffff'),(237065,41265,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(237066,41265,'blocks_9_options_state','0'),(237067,41265,'_blocks_9_options_state','field_6239fcb7508c5'),(237068,41265,'blocks_9_options',''),(237069,41265,'_blocks_9_options','field_6177e2991ac44'),(237070,41265,'blocks_9_content_title',''),(237071,41265,'_blocks_9_content_title','field_64d237e8bb1e2'),(237072,41265,'blocks_9_content_heading','Frequently asked questions '),(237073,41265,'_blocks_9_content_heading','field_64d237e8bb1e3'),(237074,41265,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(237075,41265,'_blocks_9_content_text','field_64d237e8bb1e4'),(237076,41265,'blocks_9_content_actions',''),(237077,41265,'_blocks_9_content_actions','field_64d237e8bb1e5'),(237078,41265,'blocks_9_content_align','left'),(237079,41265,'_blocks_9_content_align','field_64d2443e6b6aa'),(237080,41265,'blocks_9_content',''),(237081,41265,'_blocks_9_content','field_64d237e8bb1e1'),(237082,41265,'blocks_9_accordion_content','faqs'),(237083,41265,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(237084,41265,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(237085,41265,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(237086,41265,'blocks_9_actions',''),(237087,41265,'_blocks_9_actions','field_61a746a817f7a'),(237088,41265,'blocks_7_acfe_flexible_toggle',''),(237089,41265,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(237090,41265,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(237091,41265,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(237092,41265,'blocks_7_options_theme','#f5f5f5'),(237093,41265,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(237094,41265,'blocks_7_options_reverse','0'),(237095,41265,'_blocks_7_options_reverse','field_61768049bb8ac'),(237096,41265,'blocks_7_options',''),(237097,41265,'_blocks_7_options','field_617682517c334'),(237098,41265,'blocks_7_split_5050_image','40920'),(237099,41265,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(237100,41265,'blocks_7_split_5050_video',''),(237101,41265,'_blocks_7_split_5050_video','field_6239f3160848a'),(237102,41265,'blocks_7_split_5050_content_title',''),(237103,41265,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(237104,41265,'blocks_7_split_5050_content_heading','Why Study This Course?'),(237105,41265,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(237106,41265,'blocks_7_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(237107,41265,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(237108,41265,'blocks_7_split_5050_content_actions',''),(237109,41265,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(237110,41265,'blocks_7_split_5050_content',''),(237111,41265,'_blocks_7_split_5050_content','field_61767afceb8ba'),(237112,41280,'_edit_lock','1730734734:13'),(237113,41280,'_edit_last','5'),(237114,41280,'hide_hero','0'),(237115,41280,'_hide_hero','field_66a2380fcda39'),(237116,41280,'hero_title','IBA Membership Info'),(237117,41280,'_hero_title','field_617571fe285e8'),(237118,41280,'hero_text','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities.'),(237119,41280,'_hero_text','field_6175723c285e9'),(237120,41280,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:12:\"#row-41280-2\";s:6:\"target\";s:0:\"\";}'),(237121,41280,'_hero_actions_0_button','field_61757281285eb'),(237122,41280,'hero_actions','1'),(237123,41280,'_hero_actions','field_61757270285ea'),(237124,41280,'hero_style','default'),(237125,41280,'_hero_style','field_62051d9dc5324'),(237126,41280,'_thumbnail_id','40503'),(237127,41280,'__thumbnail_id','field_617570855ddaf'),(237128,41280,'hero_image_pos_x','right'),(237129,41280,'_hero_image_pos_x','field_62ec3d05390bb'),(237130,41280,'hero_image_pos_y','top'),(237131,41280,'_hero_image_pos_y','field_62ec3d05390bc'),(237132,41280,'hero_image_pos',''),(237133,41280,'_hero_image_pos','field_62ec3d05390ba'),(237134,41280,'fft_hide_from_listings','0'),(237135,41280,'_fft_hide_from_listings','field_61f1320446ab2'),(237136,41280,'fft_page_format','default'),(237137,41280,'_fft_page_format','field_61ae213f1f218'),(237138,41280,'fft_hide_nav','0'),(237139,41280,'_fft_hide_nav','field_635bd5e43527c'),(237140,41280,'fft_hide_header_call_to_action','0'),(237141,41280,'_fft_hide_header_call_to_action','field_635bd6723527d'),(237142,41280,'fft_page_sitemap','0'),(237143,41280,'_fft_page_sitemap','field_61af9b34e8181'),(237144,41280,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:18:\"testimonial_slider\";}'),(237145,41280,'_blocks','field_6176696113096'),(237146,41280,'_yoast_wpseo_inclusive_language_score','90'),(237147,41280,'_yoast_wpseo_estimated-reading-time-minutes','1'),(237148,41281,'hide_hero','0'),(237149,41281,'_hide_hero','field_66a2380fcda39'),(237150,41281,'hero_title','IBA Membership Info'),(237151,41281,'_hero_title','field_617571fe285e8'),(237152,41281,'hero_text','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities.'),(237153,41281,'_hero_text','field_6175723c285e9'),(237154,41281,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"http://d\";s:6:\"target\";s:0:\"\";}'),(237155,41281,'_hero_actions_0_button','field_61757281285eb'),(237156,41281,'hero_actions','1'),(237157,41281,'_hero_actions','field_61757270285ea'),(237158,41281,'hero_style','default'),(237159,41281,'_hero_style','field_62051d9dc5324'),(237160,41281,'_thumbnail_id','40503'),(237161,41281,'__thumbnail_id','field_617570855ddaf'),(237162,41281,'hero_image_pos_x','right'),(237163,41281,'_hero_image_pos_x','field_62ec3d05390bb'),(237164,41281,'hero_image_pos_y','top'),(237165,41281,'_hero_image_pos_y','field_62ec3d05390bc'),(237166,41281,'hero_image_pos',''),(237167,41281,'_hero_image_pos','field_62ec3d05390ba'),(237168,41281,'fft_hide_from_listings','0'),(237169,41281,'_fft_hide_from_listings','field_61f1320446ab2'),(237170,41281,'fft_page_format','default'),(237171,41281,'_fft_page_format','field_61ae213f1f218'),(237172,41281,'fft_hide_nav','0'),(237173,41281,'_fft_hide_nav','field_635bd5e43527c'),(237174,41281,'fft_hide_header_call_to_action','0'),(237175,41281,'_fft_hide_header_call_to_action','field_635bd6723527d'),(237176,41281,'fft_page_sitemap','0'),(237177,41281,'_fft_page_sitemap','field_61af9b34e8181'),(237178,41281,'blocks',''),(237179,41281,'_blocks','field_6176696113096'),(237180,41280,'blocks_0_acfe_flexible_toggle',''),(237181,41280,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(237182,41280,'blocks_0_acfe_flexible_layout_title','Text Block'),(237183,41280,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(237184,41280,'blocks_0_options_theme','#ffffff'),(237185,41280,'_blocks_0_options_theme','field_6176830e2ad17'),(237186,41280,'blocks_0_options',''),(237187,41280,'_blocks_0_options','field_6176830e2ad16'),(237188,41280,'blocks_0_text_block_heading','Discover the IBA'),(237189,41280,'_blocks_0_text_block_heading','field_617669d413097'),(237190,41280,'blocks_0_text_block_content','Discover the Intrinsic Biomechanics Association (IBA), your gateway to a supportive community and invaluable resources for Biomechanics Trainers™ &amp; Coaches™. Managed by Biomechanics Education Limited, the IBA offers networking opportunities, standardised practices, and ongoing education in all things that relate to being a Biomechanics Coach. Membership benefits include exclusive workshops, discounts on courses and products, mentorship, and access to a vibrant professional network. Join today to enhance your practice and stay at the forefront of biomechanical advancements.'),(237191,41280,'_blocks_0_text_block_content','field_617669ec13098'),(237192,41280,'blocks_1_acfe_flexible_toggle',''),(237193,41280,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(237194,41280,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(237195,41280,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(237196,41280,'blocks_1_options_theme','#b61234'),(237197,41280,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(237198,41280,'blocks_1_options_reverse','0'),(237199,41280,'_blocks_1_options_reverse','field_61768049bb8ac'),(237200,41280,'blocks_1_options',''),(237201,41280,'_blocks_1_options','field_617682517c334'),(237202,41280,'blocks_1_split_5050_image','40819'),(237203,41280,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(237204,41280,'blocks_1_split_5050_video',''),(237205,41280,'_blocks_1_split_5050_video','field_6239f3160848a'),(237206,41280,'blocks_1_split_5050_content_title',''),(237207,41280,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(237208,41280,'blocks_1_split_5050_content_heading','Benefits'),(237209,41280,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(237210,41280,'blocks_1_split_5050_content_text','<h2>Benefits</h2>\r\n<ul>\r\n 	<li>FREE 6 Online IBA Discovery Days per annum</li>\r\n 	<li>10% off all face to face workshops</li>\r\n 	<li>FREE 12-week online business accountability course</li>\r\n 	<li>FREE Branded T Shirt / Vest top – every year</li>\r\n 	<li>Eligibility for the IBA Register of Biomechanics Coaches</li>\r\n 	<li>Eligibility for the FIND A COACH map locator</li>\r\n 	<li>Mentor support from the Master Trainer team</li>\r\n 	<li>Support from professionals across the UK &amp; overseas</li>\r\n 	<li>Discounts on partner courses, products, and equipment</li>\r\n 	<li>Discounts on CIMSPA Membership</li>\r\n 	<li>Discounts &amp; BENEFITS of BGi Insurance</li>\r\n 	<li>Access to ProZone</li>\r\n</ul>'),(237211,41280,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(237212,41280,'blocks_1_split_5050_content_actions',''),(237213,41280,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(237214,41280,'blocks_1_split_5050_content',''),(237215,41280,'_blocks_1_split_5050_content','field_61767afceb8ba'),(237216,41282,'hide_hero','0'),(237217,41282,'_hide_hero','field_66a2380fcda39'),(237218,41282,'hero_title','IBA Membership Info'),(237219,41282,'_hero_title','field_617571fe285e8'),(237220,41282,'hero_text','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities.'),(237221,41282,'_hero_text','field_6175723c285e9'),(237222,41282,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:12:\"#row-41280-3\";s:6:\"target\";s:0:\"\";}'),(237223,41282,'_hero_actions_0_button','field_61757281285eb'),(237224,41282,'hero_actions','1'),(237225,41282,'_hero_actions','field_61757270285ea'),(237226,41282,'hero_style','default'),(237227,41282,'_hero_style','field_62051d9dc5324'),(237228,41282,'_thumbnail_id','40503'),(237229,41282,'__thumbnail_id','field_617570855ddaf'),(237230,41282,'hero_image_pos_x','right'),(237231,41282,'_hero_image_pos_x','field_62ec3d05390bb'),(237232,41282,'hero_image_pos_y','top'),(237233,41282,'_hero_image_pos_y','field_62ec3d05390bc'),(237234,41282,'hero_image_pos',''),(237235,41282,'_hero_image_pos','field_62ec3d05390ba'),(237236,41282,'fft_hide_from_listings','0'),(237237,41282,'_fft_hide_from_listings','field_61f1320446ab2'),(237238,41282,'fft_page_format','default'),(237239,41282,'_fft_page_format','field_61ae213f1f218'),(237240,41282,'fft_hide_nav','0'),(237241,41282,'_fft_hide_nav','field_635bd5e43527c'),(237242,41282,'fft_hide_header_call_to_action','0'),(237243,41282,'_fft_hide_header_call_to_action','field_635bd6723527d'),(237244,41282,'fft_page_sitemap','0'),(237245,41282,'_fft_page_sitemap','field_61af9b34e8181'),(237246,41282,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";}'),(237247,41282,'_blocks','field_6176696113096'),(237248,41282,'blocks_0_acfe_flexible_toggle',''),(237249,41282,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(237250,41282,'blocks_0_acfe_flexible_layout_title','Text Block'),(237251,41282,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(237252,41282,'blocks_0_options_theme','#ffffff'),(237253,41282,'_blocks_0_options_theme','field_6176830e2ad17'),(237254,41282,'blocks_0_options',''),(237255,41282,'_blocks_0_options','field_6176830e2ad16'),(237256,41282,'blocks_0_text_block_heading','Discover the IBA'),(237257,41282,'_blocks_0_text_block_heading','field_617669d413097'),(237258,41282,'blocks_0_text_block_content','Discover the Intrinsic Biomechanics Association (IBA), your gateway to a supportive community and invaluable resources for Biomechanics Trainers™ &amp; Coaches™. Managed by Biomechanics Education Limited, the IBA offers networking opportunities, standardised practices, and ongoing education in all things that relate to being a Biomechanics Coach. Membership benefits include exclusive workshops, discounts on courses and products, mentorship, and access to a vibrant professional network. Join today to enhance your practice and stay at the forefront of biomechanical advancements.'),(237259,41282,'_blocks_0_text_block_content','field_617669ec13098'),(237260,41282,'blocks_1_acfe_flexible_toggle',''),(237261,41282,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(237262,41282,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(237263,41282,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(237264,41282,'blocks_1_options_theme','#b61234'),(237265,41282,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(237266,41282,'blocks_1_options_reverse','0'),(237267,41282,'_blocks_1_options_reverse','field_61768049bb8ac'),(237268,41282,'blocks_1_options',''),(237269,41282,'_blocks_1_options','field_617682517c334'),(237270,41282,'blocks_1_split_5050_image','40819'),(237271,41282,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(237272,41282,'blocks_1_split_5050_video',''),(237273,41282,'_blocks_1_split_5050_video','field_6239f3160848a'),(237274,41282,'blocks_1_split_5050_content_title',''),(237275,41282,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(237276,41282,'blocks_1_split_5050_content_heading','Benefits'),(237277,41282,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(237278,41282,'blocks_1_split_5050_content_text','<h2>Benefits</h2>\r\n<ul>\r\n 	<li>FREE 6 Online IBA Discovery Days per annum</li>\r\n 	<li>10% off all face to face workshops</li>\r\n 	<li>FREE 12-week online business accountability course</li>\r\n 	<li>FREE Branded T Shirt / Vest top – every year</li>\r\n 	<li>Eligibility for the IBA Register of Biomechanics Coaches</li>\r\n 	<li>Eligibility for the FIND A COACH map locator</li>\r\n 	<li>Mentor support from the Master Trainer team</li>\r\n 	<li>Support from professionals across the UK &amp; overseas</li>\r\n 	<li>Discounts on partner courses, products, and equipment</li>\r\n 	<li>Discounts on CIMSPA Membership</li>\r\n 	<li>Discounts &amp; BENEFITS of BGi Insurance</li>\r\n 	<li>Access to ProZone</li>\r\n</ul>'),(237279,41282,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(237280,41282,'blocks_1_split_5050_content_actions',''),(237281,41282,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(237282,41282,'blocks_1_split_5050_content',''),(237283,41282,'_blocks_1_split_5050_content','field_61767afceb8ba'),(237284,41280,'blocks_2_acfe_flexible_toggle',''),(237285,41280,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(237286,41280,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(237287,41280,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(237288,41280,'blocks_2_options_theme','#ffffff'),(237289,41280,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(237290,41280,'blocks_2_options_reverse','0'),(237291,41280,'_blocks_2_options_reverse','field_61768049bb8ac'),(237292,41280,'blocks_2_options',''),(237293,41280,'_blocks_2_options','field_617682517c334'),(237294,41280,'blocks_2_split_5050_image','39165'),(237295,41280,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(237296,41280,'blocks_2_split_5050_video',''),(237297,41280,'_blocks_2_split_5050_video','field_6239f3160848a'),(237298,41280,'blocks_2_split_5050_content_title',''),(237299,41280,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(237300,41280,'blocks_2_split_5050_content_heading','Reserve Your Place'),(237301,41280,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(237302,41280,'blocks_2_split_5050_content_text','Join our monthly IBA Member workshops, conducted online for convenience and accessibility. These engaging sessions offer Biomechanics Trainers™ &amp; Coaches™ valuable insights, networking opportunities, and practical knowledge in biomechanics. Secure your virtual seat today to enhance your expertise from anywhere in the world.'),(237303,41280,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(237304,41280,'blocks_2_split_5050_content_actions',''),(237305,41280,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(237306,41280,'blocks_2_split_5050_content',''),(237307,41280,'_blocks_2_split_5050_content','field_61767afceb8ba'),(237308,41280,'blocks_3_acfe_flexible_toggle',''),(237309,41280,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(237310,41280,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(237311,41280,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(237312,41280,'blocks_3_testimonial_slider_content_title',''),(237313,41280,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(237314,41280,'blocks_3_testimonial_slider_content_heading','Testimonials'),(237315,41280,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(237316,41280,'blocks_3_testimonial_slider_content_text','Discover testimonials from people currently subscribed as an IBA member'),(237317,41280,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(237318,41280,'blocks_3_testimonial_slider_content_actions',''),(237319,41280,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(237320,41280,'blocks_3_testimonial_slider_content',''),(237321,41280,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(237322,41280,'blocks_3_testimonial_slider_items','a:4:{i:0;s:5:\"38965\";i:1;s:5:\"38964\";i:2;s:5:\"39168\";i:3;s:5:\"39169\";}'),(237323,41280,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(237324,41280,'blocks_3_testimonial_slider_ambassador_bool','1'),(237325,41280,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(237326,41280,'blocks_3_testimonial_slider_ambassador',''),(237327,41280,'_blocks_3_testimonial_slider_ambassador','field_61a4a3c0704d0'),(237328,41283,'hide_hero','0'),(237329,41283,'_hide_hero','field_66a2380fcda39'),(237330,41283,'hero_title','IBA Membership Info'),(237331,41283,'_hero_title','field_617571fe285e8'),(237332,41283,'hero_text','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities.'),(237333,41283,'_hero_text','field_6175723c285e9'),(237334,41283,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:12:\"#row-41280-3\";s:6:\"target\";s:0:\"\";}'),(237335,41283,'_hero_actions_0_button','field_61757281285eb'),(237336,41283,'hero_actions','1'),(237337,41283,'_hero_actions','field_61757270285ea'),(237338,41283,'hero_style','default'),(237339,41283,'_hero_style','field_62051d9dc5324'),(237340,41283,'_thumbnail_id','40503'),(237341,41283,'__thumbnail_id','field_617570855ddaf'),(237342,41283,'hero_image_pos_x','right'),(237343,41283,'_hero_image_pos_x','field_62ec3d05390bb'),(237344,41283,'hero_image_pos_y','top'),(237345,41283,'_hero_image_pos_y','field_62ec3d05390bc'),(237346,41283,'hero_image_pos',''),(237347,41283,'_hero_image_pos','field_62ec3d05390ba'),(237348,41283,'fft_hide_from_listings','0'),(237349,41283,'_fft_hide_from_listings','field_61f1320446ab2'),(237350,41283,'fft_page_format','default'),(237351,41283,'_fft_page_format','field_61ae213f1f218'),(237352,41283,'fft_hide_nav','0'),(237353,41283,'_fft_hide_nav','field_635bd5e43527c'),(237354,41283,'fft_hide_header_call_to_action','0'),(237355,41283,'_fft_hide_header_call_to_action','field_635bd6723527d'),(237356,41283,'fft_page_sitemap','0'),(237357,41283,'_fft_page_sitemap','field_61af9b34e8181'),(237358,41283,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:18:\"testimonial_slider\";}'),(237359,41283,'_blocks','field_6176696113096'),(237360,41283,'blocks_0_acfe_flexible_toggle',''),(237361,41283,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(237362,41283,'blocks_0_acfe_flexible_layout_title','Text Block'),(237363,41283,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(237364,41283,'blocks_0_options_theme','#ffffff'),(237365,41283,'_blocks_0_options_theme','field_6176830e2ad17'),(237366,41283,'blocks_0_options',''),(237367,41283,'_blocks_0_options','field_6176830e2ad16'),(237368,41283,'blocks_0_text_block_heading','Discover the IBA'),(237369,41283,'_blocks_0_text_block_heading','field_617669d413097'),(237370,41283,'blocks_0_text_block_content','Discover the Intrinsic Biomechanics Association (IBA), your gateway to a supportive community and invaluable resources for Biomechanics Trainers™ &amp; Coaches™. Managed by Biomechanics Education Limited, the IBA offers networking opportunities, standardised practices, and ongoing education in all things that relate to being a Biomechanics Coach. Membership benefits include exclusive workshops, discounts on courses and products, mentorship, and access to a vibrant professional network. Join today to enhance your practice and stay at the forefront of biomechanical advancements.'),(237371,41283,'_blocks_0_text_block_content','field_617669ec13098'),(237372,41283,'blocks_1_acfe_flexible_toggle',''),(237373,41283,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(237374,41283,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(237375,41283,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(237376,41283,'blocks_1_options_theme','#b61234'),(237377,41283,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(237378,41283,'blocks_1_options_reverse','0'),(237379,41283,'_blocks_1_options_reverse','field_61768049bb8ac'),(237380,41283,'blocks_1_options',''),(237381,41283,'_blocks_1_options','field_617682517c334'),(237382,41283,'blocks_1_split_5050_image','40819'),(237383,41283,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(237384,41283,'blocks_1_split_5050_video',''),(237385,41283,'_blocks_1_split_5050_video','field_6239f3160848a'),(237386,41283,'blocks_1_split_5050_content_title',''),(237387,41283,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(237388,41283,'blocks_1_split_5050_content_heading','Benefits'),(237389,41283,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(237390,41283,'blocks_1_split_5050_content_text','<h2>Benefits</h2>\r\n<ul>\r\n 	<li>FREE 6 Online IBA Discovery Days per annum</li>\r\n 	<li>10% off all face to face workshops</li>\r\n 	<li>FREE 12-week online business accountability course</li>\r\n 	<li>FREE Branded T Shirt / Vest top – every year</li>\r\n 	<li>Eligibility for the IBA Register of Biomechanics Coaches</li>\r\n 	<li>Eligibility for the FIND A COACH map locator</li>\r\n 	<li>Mentor support from the Master Trainer team</li>\r\n 	<li>Support from professionals across the UK &amp; overseas</li>\r\n 	<li>Discounts on partner courses, products, and equipment</li>\r\n 	<li>Discounts on CIMSPA Membership</li>\r\n 	<li>Discounts &amp; BENEFITS of BGi Insurance</li>\r\n 	<li>Access to ProZone</li>\r\n</ul>'),(237391,41283,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(237392,41283,'blocks_1_split_5050_content_actions',''),(237393,41283,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(237394,41283,'blocks_1_split_5050_content',''),(237395,41283,'_blocks_1_split_5050_content','field_61767afceb8ba'),(237396,41283,'blocks_2_acfe_flexible_toggle',''),(237397,41283,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(237398,41283,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(237399,41283,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(237400,41283,'blocks_2_options_theme','#ffffff'),(237401,41283,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(237402,41283,'blocks_2_options_reverse','0'),(237403,41283,'_blocks_2_options_reverse','field_61768049bb8ac'),(237404,41283,'blocks_2_options',''),(237405,41283,'_blocks_2_options','field_617682517c334'),(237406,41283,'blocks_2_split_5050_image','39165'),(237407,41283,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(237408,41283,'blocks_2_split_5050_video',''),(237409,41283,'_blocks_2_split_5050_video','field_6239f3160848a'),(237410,41283,'blocks_2_split_5050_content_title',''),(237411,41283,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(237412,41283,'blocks_2_split_5050_content_heading','Reserve Your Place'),(237413,41283,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(237414,41283,'blocks_2_split_5050_content_text','Join our monthly IBA Member workshops, conducted online for convenience and accessibility. These engaging sessions offer Biomechanics Trainers™ &amp; Coaches™ valuable insights, networking opportunities, and practical knowledge in biomechanics. Secure your virtual seat today to enhance your expertise from anywhere in the world.'),(237415,41283,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(237416,41283,'blocks_2_split_5050_content_actions',''),(237417,41283,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(237418,41283,'blocks_2_split_5050_content',''),(237419,41283,'_blocks_2_split_5050_content','field_61767afceb8ba'),(237420,41283,'blocks_3_acfe_flexible_toggle',''),(237421,41283,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(237422,41283,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(237423,41283,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(237424,41283,'blocks_3_testimonial_slider_content_title',''),(237425,41283,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(237426,41283,'blocks_3_testimonial_slider_content_heading','Testimonials'),(237427,41283,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(237428,41283,'blocks_3_testimonial_slider_content_text','Discover testimonials from people currently subscribed as an IBA member'),(237429,41283,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(237430,41283,'blocks_3_testimonial_slider_content_actions',''),(237431,41283,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(237432,41283,'blocks_3_testimonial_slider_content',''),(237433,41283,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(237434,41283,'blocks_3_testimonial_slider_items','a:4:{i:0;s:5:\"38965\";i:1;s:5:\"38964\";i:2;s:5:\"39168\";i:3;s:5:\"39169\";}'),(237435,41283,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(237436,41283,'blocks_3_testimonial_slider_ambassador_bool','1'),(237437,41283,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(237438,41283,'blocks_3_testimonial_slider_ambassador',''),(237439,41283,'_blocks_3_testimonial_slider_ambassador','field_61a4a3c0704d0'),(237440,41284,'hide_hero','0'),(237441,41284,'_hide_hero','field_66a2380fcda39'),(237442,41284,'hero_title','IBA Membership Info'),(237443,41284,'_hero_title','field_617571fe285e8'),(237444,41284,'hero_text','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities.'),(237445,41284,'_hero_text','field_6175723c285e9'),(237446,41284,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:12:\"#row-41280-3\";s:6:\"target\";s:0:\"\";}'),(237447,41284,'_hero_actions_0_button','field_61757281285eb'),(237448,41284,'hero_actions','1'),(237449,41284,'_hero_actions','field_61757270285ea'),(237450,41284,'hero_style','default'),(237451,41284,'_hero_style','field_62051d9dc5324'),(237452,41284,'_thumbnail_id','40503'),(237453,41284,'__thumbnail_id','field_617570855ddaf'),(237454,41284,'hero_image_pos_x','right'),(237455,41284,'_hero_image_pos_x','field_62ec3d05390bb'),(237456,41284,'hero_image_pos_y','top'),(237457,41284,'_hero_image_pos_y','field_62ec3d05390bc'),(237458,41284,'hero_image_pos',''),(237459,41284,'_hero_image_pos','field_62ec3d05390ba'),(237460,41284,'fft_hide_from_listings','0'),(237461,41284,'_fft_hide_from_listings','field_61f1320446ab2'),(237462,41284,'fft_page_format','default'),(237463,41284,'_fft_page_format','field_61ae213f1f218'),(237464,41284,'fft_hide_nav','0'),(237465,41284,'_fft_hide_nav','field_635bd5e43527c'),(237466,41284,'fft_hide_header_call_to_action','0'),(237467,41284,'_fft_hide_header_call_to_action','field_635bd6723527d'),(237468,41284,'fft_page_sitemap','0'),(237469,41284,'_fft_page_sitemap','field_61af9b34e8181'),(237470,41284,'blocks_0_acfe_flexible_toggle',''),(237471,41284,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(237472,41284,'blocks_0_acfe_flexible_layout_title','Text Block'),(237473,41284,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(237474,41284,'blocks_0_options_theme','#ffffff'),(237475,41284,'_blocks_0_options_theme','field_6176830e2ad17'),(237476,41284,'blocks_0_options',''),(237477,41284,'_blocks_0_options','field_6176830e2ad16'),(237478,41284,'blocks_0_text_block_heading','Discover the IBA'),(237479,41284,'_blocks_0_text_block_heading','field_617669d413097'),(237480,41284,'blocks_0_text_block_content','Discover the Intrinsic Biomechanics Association (IBA), your gateway to a supportive community and invaluable resources for Biomechanics Trainers™ &amp; Coaches™. Managed by Biomechanics Education Limited, the IBA offers networking opportunities, standardised practices, and ongoing education in all things that relate to being a Biomechanics Coach. Membership benefits include exclusive workshops, discounts on courses and products, mentorship, and access to a vibrant professional network. Join today to enhance your practice and stay at the forefront of biomechanical advancements.'),(237481,41284,'_blocks_0_text_block_content','field_617669ec13098'),(237482,41284,'blocks_1_acfe_flexible_toggle',''),(237483,41284,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(237484,41284,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(237485,41284,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(237486,41284,'blocks_1_options_theme','#b61234'),(237487,41284,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(237488,41284,'blocks_1_options_reverse','0'),(237489,41284,'_blocks_1_options_reverse','field_61768049bb8ac'),(237490,41284,'blocks_1_options',''),(237491,41284,'_blocks_1_options','field_617682517c334'),(237492,41284,'blocks_1_split_5050_image','40819'),(237493,41284,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(237494,41284,'blocks_1_split_5050_video',''),(237495,41284,'_blocks_1_split_5050_video','field_6239f3160848a'),(237496,41284,'blocks_1_split_5050_content_title',''),(237497,41284,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(237498,41284,'blocks_1_split_5050_content_heading','Benefits'),(237499,41284,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(237500,41284,'blocks_1_split_5050_content_text','<h2>Benefits</h2>\r\n<ul>\r\n 	<li>FREE 6 Online IBA Discovery Days per annum</li>\r\n 	<li>10% off all face to face workshops</li>\r\n 	<li>FREE 12-week online business accountability course</li>\r\n 	<li>FREE Branded T Shirt / Vest top – every year</li>\r\n 	<li>Eligibility for the IBA Register of Biomechanics Coaches</li>\r\n 	<li>Eligibility for the FIND A COACH map locator</li>\r\n 	<li>Mentor support from the Master Trainer team</li>\r\n 	<li>Support from professionals across the UK &amp; overseas</li>\r\n 	<li>Discounts on partner courses, products, and equipment</li>\r\n 	<li>Discounts on CIMSPA Membership</li>\r\n 	<li>Discounts &amp; BENEFITS of BGi Insurance</li>\r\n 	<li>Access to ProZone</li>\r\n</ul>'),(237501,41284,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(237502,41284,'blocks_1_split_5050_content_actions',''),(237503,41284,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(237504,41284,'blocks_1_split_5050_content',''),(237505,41284,'_blocks_1_split_5050_content','field_61767afceb8ba'),(237506,41284,'blocks_2_acfe_flexible_toggle',''),(237507,41284,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(237508,41284,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(237509,41284,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(237510,41284,'blocks_2_options_theme','#ffffff'),(237511,41284,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(237512,41284,'blocks_2_options_reverse','0'),(237513,41284,'_blocks_2_options_reverse','field_61768049bb8ac'),(237514,41284,'blocks_2_options',''),(237515,41284,'_blocks_2_options','field_617682517c334'),(237516,41284,'blocks_2_split_5050_image','39165'),(237517,41284,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(237518,41284,'blocks_2_split_5050_video',''),(237519,41284,'_blocks_2_split_5050_video','field_6239f3160848a'),(237520,41284,'blocks_2_split_5050_content_title',''),(237521,41284,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(237522,41284,'blocks_2_split_5050_content_heading','Reserve Your Place'),(237523,41284,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(237524,41284,'blocks_2_split_5050_content_text','Join our monthly IBA Member workshops, conducted online for convenience and accessibility. These engaging sessions offer Biomechanics Trainers™ &amp; Coaches™ valuable insights, networking opportunities, and practical knowledge in biomechanics. Secure your virtual seat today to enhance your expertise from anywhere in the world.'),(237525,41284,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(237526,41284,'blocks_2_split_5050_content_actions',''),(237527,41284,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(237528,41284,'blocks_2_split_5050_content',''),(237529,41284,'_blocks_2_split_5050_content','field_61767afceb8ba'),(237530,41284,'blocks_3_acfe_flexible_toggle',''),(237531,41284,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(237532,41284,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(237533,41284,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(237534,41284,'blocks_3_testimonial_slider_content_title',''),(237535,41284,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(237536,41284,'blocks_3_testimonial_slider_content_heading','Testimonials'),(237537,41284,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(237538,41284,'blocks_3_testimonial_slider_content_text','Discover testimonials from people currently subscribed as an IBA member'),(237539,41284,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(237540,41284,'blocks_3_testimonial_slider_content_actions',''),(237541,41284,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(237542,41284,'blocks_3_testimonial_slider_content',''),(237543,41284,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(237544,41284,'blocks_3_testimonial_slider_items','a:4:{i:0;s:5:\"38965\";i:1;s:5:\"38964\";i:2;s:5:\"39168\";i:3;s:5:\"39169\";}'),(237545,41284,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(237546,41284,'blocks_3_testimonial_slider_ambassador_bool','1'),(237547,41284,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(237548,41284,'blocks_3_testimonial_slider_ambassador',''),(237549,41284,'_blocks_3_testimonial_slider_ambassador','field_61a4a3c0704d0'),(237550,41284,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:18:\"testimonial_slider\";}'),(237551,41284,'_blocks','field_6176696113096'),(237552,41285,'hide_hero','0'),(237553,41285,'_hide_hero','field_66a2380fcda39'),(237554,41285,'hero_title','IBA Membership Info'),(237555,41285,'_hero_title','field_617571fe285e8'),(237556,41285,'hero_text','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities.'),(237557,41285,'_hero_text','field_6175723c285e9'),(237558,41285,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:12:\"#row-41280-2\";s:6:\"target\";s:0:\"\";}'),(237559,41285,'_hero_actions_0_button','field_61757281285eb'),(237560,41285,'hero_actions','1'),(237561,41285,'_hero_actions','field_61757270285ea'),(237562,41285,'hero_style','default'),(237563,41285,'_hero_style','field_62051d9dc5324'),(237564,41285,'_thumbnail_id','40503'),(237565,41285,'__thumbnail_id','field_617570855ddaf'),(237566,41285,'hero_image_pos_x','right'),(237567,41285,'_hero_image_pos_x','field_62ec3d05390bb'),(237568,41285,'hero_image_pos_y','top'),(237569,41285,'_hero_image_pos_y','field_62ec3d05390bc'),(237570,41285,'hero_image_pos',''),(237571,41285,'_hero_image_pos','field_62ec3d05390ba'),(237572,41285,'fft_hide_from_listings','0'),(237573,41285,'_fft_hide_from_listings','field_61f1320446ab2'),(237574,41285,'fft_page_format','default'),(237575,41285,'_fft_page_format','field_61ae213f1f218'),(237576,41285,'fft_hide_nav','0'),(237577,41285,'_fft_hide_nav','field_635bd5e43527c'),(237578,41285,'fft_hide_header_call_to_action','0'),(237579,41285,'_fft_hide_header_call_to_action','field_635bd6723527d'),(237580,41285,'fft_page_sitemap','0'),(237581,41285,'_fft_page_sitemap','field_61af9b34e8181'),(237582,41285,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:18:\"testimonial_slider\";}'),(237583,41285,'_blocks','field_6176696113096'),(237584,41285,'blocks_0_acfe_flexible_toggle',''),(237585,41285,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(237586,41285,'blocks_0_acfe_flexible_layout_title','Text Block'),(237587,41285,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(237588,41285,'blocks_0_options_theme','#ffffff'),(237589,41285,'_blocks_0_options_theme','field_6176830e2ad17'),(237590,41285,'blocks_0_options',''),(237591,41285,'_blocks_0_options','field_6176830e2ad16'),(237592,41285,'blocks_0_text_block_heading','Discover the IBA'),(237593,41285,'_blocks_0_text_block_heading','field_617669d413097'),(237594,41285,'blocks_0_text_block_content','Discover the Intrinsic Biomechanics Association (IBA), your gateway to a supportive community and invaluable resources for Biomechanics Trainers™ &amp; Coaches™. Managed by Biomechanics Education Limited, the IBA offers networking opportunities, standardised practices, and ongoing education in all things that relate to being a Biomechanics Coach. Membership benefits include exclusive workshops, discounts on courses and products, mentorship, and access to a vibrant professional network. Join today to enhance your practice and stay at the forefront of biomechanical advancements.'),(237595,41285,'_blocks_0_text_block_content','field_617669ec13098'),(237596,41285,'blocks_1_acfe_flexible_toggle',''),(237597,41285,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(237598,41285,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(237599,41285,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(237600,41285,'blocks_1_options_theme','#b61234'),(237601,41285,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(237602,41285,'blocks_1_options_reverse','0'),(237603,41285,'_blocks_1_options_reverse','field_61768049bb8ac'),(237604,41285,'blocks_1_options',''),(237605,41285,'_blocks_1_options','field_617682517c334'),(237606,41285,'blocks_1_split_5050_image','40819'),(237607,41285,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(237608,41285,'blocks_1_split_5050_video',''),(237609,41285,'_blocks_1_split_5050_video','field_6239f3160848a'),(237610,41285,'blocks_1_split_5050_content_title',''),(237611,41285,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(237612,41285,'blocks_1_split_5050_content_heading','Benefits'),(237613,41285,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(237614,41285,'blocks_1_split_5050_content_text','<h2>Benefits</h2>\r\n<ul>\r\n 	<li>FREE 6 Online IBA Discovery Days per annum</li>\r\n 	<li>10% off all face to face workshops</li>\r\n 	<li>FREE 12-week online business accountability course</li>\r\n 	<li>FREE Branded T Shirt / Vest top – every year</li>\r\n 	<li>Eligibility for the IBA Register of Biomechanics Coaches</li>\r\n 	<li>Eligibility for the FIND A COACH map locator</li>\r\n 	<li>Mentor support from the Master Trainer team</li>\r\n 	<li>Support from professionals across the UK &amp; overseas</li>\r\n 	<li>Discounts on partner courses, products, and equipment</li>\r\n 	<li>Discounts on CIMSPA Membership</li>\r\n 	<li>Discounts &amp; BENEFITS of BGi Insurance</li>\r\n 	<li>Access to ProZone</li>\r\n</ul>'),(237615,41285,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(237616,41285,'blocks_1_split_5050_content_actions',''),(237617,41285,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(237618,41285,'blocks_1_split_5050_content',''),(237619,41285,'_blocks_1_split_5050_content','field_61767afceb8ba'),(237620,41285,'blocks_2_acfe_flexible_toggle',''),(237621,41285,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(237622,41285,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(237623,41285,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(237624,41285,'blocks_2_options_theme','#ffffff'),(237625,41285,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(237626,41285,'blocks_2_options_reverse','0'),(237627,41285,'_blocks_2_options_reverse','field_61768049bb8ac'),(237628,41285,'blocks_2_options',''),(237629,41285,'_blocks_2_options','field_617682517c334'),(237630,41285,'blocks_2_split_5050_image','39165'),(237631,41285,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(237632,41285,'blocks_2_split_5050_video',''),(237633,41285,'_blocks_2_split_5050_video','field_6239f3160848a'),(237634,41285,'blocks_2_split_5050_content_title',''),(237635,41285,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(237636,41285,'blocks_2_split_5050_content_heading','Reserve Your Place'),(237637,41285,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(237638,41285,'blocks_2_split_5050_content_text','Join our monthly IBA Member workshops, conducted online for convenience and accessibility. These engaging sessions offer Biomechanics Trainers™ &amp; Coaches™ valuable insights, networking opportunities, and practical knowledge in biomechanics. Secure your virtual seat today to enhance your expertise from anywhere in the world.'),(237639,41285,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(237640,41285,'blocks_2_split_5050_content_actions',''),(237641,41285,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(237642,41285,'blocks_2_split_5050_content',''),(237643,41285,'_blocks_2_split_5050_content','field_61767afceb8ba'),(237644,41285,'blocks_3_acfe_flexible_toggle',''),(237645,41285,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(237646,41285,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(237647,41285,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(237648,41285,'blocks_3_testimonial_slider_content_title',''),(237649,41285,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(237650,41285,'blocks_3_testimonial_slider_content_heading','Testimonials'),(237651,41285,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(237652,41285,'blocks_3_testimonial_slider_content_text','Discover testimonials from people currently subscribed as an IBA member'),(237653,41285,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(237654,41285,'blocks_3_testimonial_slider_content_actions',''),(237655,41285,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(237656,41285,'blocks_3_testimonial_slider_content',''),(237657,41285,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(237658,41285,'blocks_3_testimonial_slider_items','a:4:{i:0;s:5:\"38965\";i:1;s:5:\"38964\";i:2;s:5:\"39168\";i:3;s:5:\"39169\";}'),(237659,41285,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(237660,41285,'blocks_3_testimonial_slider_ambassador_bool','1'),(237661,41285,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(237662,41285,'blocks_3_testimonial_slider_ambassador',''),(237663,41285,'_blocks_3_testimonial_slider_ambassador','field_61a4a3c0704d0'),(237664,41286,'_menu_item_type','post_type'),(237665,41286,'_menu_item_menu_item_parent','0'),(237666,41286,'_menu_item_object_id','41280'),(237667,41286,'_menu_item_object','page'),(237668,41286,'_menu_item_target',''),(237669,41286,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(237670,41286,'_menu_item_xfn',''),(237671,41286,'_menu_item_url',''),(237673,41286,'menu_item_card_image',''),(237674,41286,'_menu_item_card_image','field_618cf50fb8716'),(237675,41286,'menu_item_card_title',''),(237676,41286,'_menu_item_card_title','field_618cf51cb8717'),(237677,41286,'menu_item_card_text',''),(237678,41286,'_menu_item_card_text','field_618cf521b8718'),(237679,41286,'menu_item_card_link',''),(237680,41286,'_menu_item_card_link','field_618cf52eb8719'),(237681,41286,'menu_item_card',''),(237682,41286,'_menu_item_card','field_618cf506b8715'),(237683,39278,'_wp_old_date','2024-09-24'),(237684,40906,'_wp_old_date','2024-09-24'),(237685,40858,'_wp_old_date','2024-09-24'),(237686,39348,'_wp_old_date','2024-09-24'),(237687,39486,'_wp_old_date','2024-09-24'),(237688,39485,'_wp_old_date','2024-09-24'),(237689,39487,'_wp_old_date','2024-09-24'),(237690,39279,'_wp_old_date','2024-09-24'),(237691,39325,'_wp_old_date','2024-09-24'),(237692,39324,'_wp_old_date','2024-09-24'),(237693,39323,'_wp_old_date','2024-09-24'),(237694,39322,'_wp_old_date','2024-09-24'),(237695,39321,'_wp_old_date','2024-09-24'),(237696,39320,'_wp_old_date','2024-09-24'),(237697,39319,'_wp_old_date','2024-09-24'),(237698,39281,'_wp_old_date','2024-09-24'),(237699,39344,'_wp_old_date','2024-09-24'),(237700,39318,'_wp_old_date','2024-09-24'),(237701,39522,'_wp_old_date','2024-09-24'),(237704,39280,'_wp_old_date','2024-09-24'),(237705,40276,'_yoast_wpseo_inclusive_language_score','90'),(237950,41294,'hide_hero','0'),(237951,41294,'_hide_hero','field_66a2380fcda39'),(237952,41294,'fft_hide_from_listings','0'),(237953,41294,'_fft_hide_from_listings','field_61f1320446ab2'),(237954,41294,'fft_page_format','default'),(237955,41294,'_fft_page_format','field_61ae213f1f218'),(237956,41294,'fft_hide_nav','0'),(237957,41294,'_fft_hide_nav','field_635bd5e43527c'),(237958,41294,'fft_hide_header_call_to_action','0'),(237959,41294,'_fft_hide_header_call_to_action','field_635bd6723527d'),(237960,41294,'fft_page_sitemap','0'),(237961,41294,'_fft_page_sitemap','field_61af9b34e8181'),(237962,41294,'blocks','a:7:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:10:\"accordions\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(237963,41294,'_blocks','field_6176696113096'),(237964,41294,'_thumbnail_id','41183'),(237965,41294,'__thumbnail_id','field_617570855ddaf'),(237966,41294,'hero_title',''),(237967,41294,'_hero_title','field_617571fe285e8'),(237968,41294,'hero_text',''),(237969,41294,'_hero_text','field_6175723c285e9'),(237970,41294,'hero_actions',''),(237971,41294,'_hero_actions','field_61757270285ea'),(237972,41294,'hero_style','default'),(237973,41294,'_hero_style','field_62051d9dc5324'),(237974,41294,'hero_image_pos_x','right'),(237975,41294,'_hero_image_pos_x','field_62ec3d05390bb'),(237976,41294,'hero_image_pos_y','top'),(237977,41294,'_hero_image_pos_y','field_62ec3d05390bc'),(237978,41294,'hero_image_pos',''),(237979,41294,'_hero_image_pos','field_62ec3d05390ba'),(237980,41294,'blocks_0_acfe_flexible_toggle',''),(237981,41294,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(237982,41294,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(237983,41294,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(237984,41294,'blocks_0_options_theme','#ffffff'),(237985,41294,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(237986,41294,'blocks_0_options_reverse','0'),(237987,41294,'_blocks_0_options_reverse','field_61768049bb8ac'),(237988,41294,'blocks_0_options',''),(237989,41294,'_blocks_0_options','field_617682517c334'),(237990,41294,'blocks_0_split_5050_image','41190'),(237991,41294,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(237992,41294,'blocks_0_split_5050_video',''),(237993,41294,'_blocks_0_split_5050_video','field_6239f3160848a'),(237994,41294,'blocks_0_split_5050_content_title',''),(237995,41294,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(237996,41294,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(237997,41294,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(237998,41294,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(237999,41294,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(238000,41294,'blocks_0_split_5050_content_actions',''),(238001,41294,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(238002,41294,'blocks_0_split_5050_content',''),(238003,41294,'_blocks_0_split_5050_content','field_61767afceb8ba'),(238004,41294,'blocks_1_acfe_flexible_toggle',''),(238005,41294,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(238006,41294,'blocks_1_acfe_flexible_layout_title','Form'),(238007,41294,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(238008,41294,'blocks_1_row_content_format','standard'),(238009,41294,'_blocks_1_row_content_format','field_6481ead962881'),(238010,41294,'blocks_1_row_content_title',''),(238011,41294,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(238012,41294,'blocks_1_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(238013,41294,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(238014,41294,'blocks_1_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(238015,41294,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(238016,41294,'blocks_1_row_content_actions',''),(238017,41294,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(238018,41294,'blocks_1_row_content',''),(238019,41294,'_blocks_1_row_content','field_61a0f5f5b3db0'),(238020,41294,'blocks_1_row_form','40394'),(238021,41294,'_blocks_1_row_form','field_61a4ff2c0b08e'),(238022,41294,'blocks_1_row_form_button_label',''),(238023,41294,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(238024,41294,'blocks_2_acfe_flexible_toggle',''),(238025,41294,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(238026,41294,'blocks_2_acfe_flexible_layout_title','Timeline'),(238027,41294,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(238028,41294,'blocks_2_options_theme','#ffffff'),(238029,41294,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(238030,41294,'blocks_2_options',''),(238031,41294,'_blocks_2_options','field_6177de53d1195'),(238032,41294,'blocks_2_timeline_content_title',''),(238033,41294,'_blocks_2_timeline_content_title','field_6177de53d1198'),(238034,41294,'blocks_2_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(238035,41294,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(238036,41294,'blocks_2_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(238037,41294,'_blocks_2_timeline_content_text','field_6177de53d119a'),(238038,41294,'blocks_2_timeline_content_actions',''),(238039,41294,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(238040,41294,'blocks_2_timeline_content',''),(238041,41294,'_blocks_2_timeline_content','field_6177de53d1197'),(238042,41294,'blocks_2_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(238043,41294,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(238044,41294,'blocks_2_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(238045,41294,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(238046,41294,'blocks_2_timeline_items_1_title','Send your fully completed form to ELCAS'),(238047,41294,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(238048,41294,'blocks_2_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(238049,41294,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(238050,41294,'blocks_2_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(238051,41294,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(238052,41294,'blocks_2_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(238053,41294,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(238054,41294,'blocks_2_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(238055,41294,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(238056,41294,'blocks_2_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(238057,41294,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(238058,41294,'blocks_2_timeline_items','4'),(238059,41294,'_blocks_2_timeline_items','field_6177de53d119d'),(238060,41294,'blocks_3_acfe_flexible_toggle',''),(238061,41294,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(238062,41294,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(238063,41294,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(238064,41294,'blocks_3_options_theme','#ffffff'),(238065,41294,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(238066,41294,'blocks_3_options_reverse','1'),(238067,41294,'_blocks_3_options_reverse','field_61768049bb8ac'),(238068,41294,'blocks_3_options',''),(238069,41294,'_blocks_3_options','field_617682517c334'),(238070,41294,'blocks_3_split_5050_image','41189'),(238071,41294,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(238072,41294,'blocks_3_split_5050_video',''),(238073,41294,'_blocks_3_split_5050_video','field_6239f3160848a'),(238074,41294,'blocks_3_split_5050_content_title',''),(238075,41294,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(238076,41294,'blocks_3_split_5050_content_heading','Why choose Biomechanics Education'),(238077,41294,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(238078,41294,'blocks_3_split_5050_content_text','<ul>\r\n 	<li>Specialist Training: Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.</li>\r\n 	<li>Career Flexibility: As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.</li>\r\n 	<li>Recognised Qualification: Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.</li>\r\n 	<li>Funding Available: Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.</li>\r\n</ul>\r\nJoin the growing number of armed forces personnel who have successfully transitioned into the biomechanics field and continue to serve others by promoting health, movement, and performance.'),(238079,41294,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(238080,41294,'blocks_3_split_5050_content_actions',''),(238081,41294,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(238082,41294,'blocks_3_split_5050_content',''),(238083,41294,'_blocks_3_split_5050_content','field_61767afceb8ba'),(238084,41294,'blocks_4_acfe_flexible_toggle',''),(238085,41294,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(238086,41294,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(238087,41294,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(238088,41294,'blocks_4_options_theme','#ffffff'),(238089,41294,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(238090,41294,'blocks_4_options_state','0'),(238091,41294,'_blocks_4_options_state','field_6239fcb7508c5'),(238092,41294,'blocks_4_options',''),(238093,41294,'_blocks_4_options','field_6177e2991ac44'),(238094,41294,'blocks_4_content_title',''),(238095,41294,'_blocks_4_content_title','field_64d237e8bb1e2'),(238096,41294,'blocks_4_content_heading','FAQ\'s'),(238097,41294,'_blocks_4_content_heading','field_64d237e8bb1e3'),(238098,41294,'blocks_4_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(238099,41294,'_blocks_4_content_text','field_64d237e8bb1e4'),(238100,41294,'blocks_4_content_actions',''),(238101,41294,'_blocks_4_content_actions','field_64d237e8bb1e5'),(238102,41294,'blocks_4_content_align','left'),(238103,41294,'_blocks_4_content_align','field_64d2443e6b6aa'),(238104,41294,'blocks_4_content',''),(238105,41294,'_blocks_4_content','field_64d237e8bb1e1'),(238106,41294,'blocks_4_accordion_content','custom'),(238107,41294,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(238108,41294,'blocks_4_accordion_items_0_title','What is ELCAS?'),(238109,41294,'_blocks_4_accordion_items_0_title','field_6177e2991ac4d'),(238110,41294,'blocks_4_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(238111,41294,'_blocks_4_accordion_items_0_text','field_6177e2991ac4e'),(238112,41294,'blocks_4_accordion_items','5'),(238113,41294,'_blocks_4_accordion_items','field_6177e2991ac4c'),(238114,41294,'blocks_4_actions',''),(238115,41294,'_blocks_4_actions','field_61a746a817f7a'),(238116,41294,'blocks_4_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(238117,41294,'_blocks_4_accordion_items_1_title','field_6177e2991ac4d'),(238118,41294,'blocks_4_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(238119,41294,'_blocks_4_accordion_items_1_text','field_6177e2991ac4e'),(238120,41294,'blocks_4_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(238121,41294,'_blocks_4_accordion_items_2_title','field_6177e2991ac4d'),(238122,41294,'blocks_4_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(238123,41294,'_blocks_4_accordion_items_2_text','field_6177e2991ac4e'),(238124,41294,'blocks_4_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(238125,41294,'_blocks_4_accordion_items_3_title','field_6177e2991ac4d'),(238126,41294,'blocks_4_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(238127,41294,'_blocks_4_accordion_items_3_text','field_6177e2991ac4e'),(238128,41294,'blocks_4_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(238129,41294,'_blocks_4_accordion_items_4_title','field_6177e2991ac4d'),(238130,41294,'blocks_4_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(238131,41294,'_blocks_4_accordion_items_4_text','field_6177e2991ac4e'),(238132,41294,'blocks_5_acfe_flexible_toggle',''),(238133,41294,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(238134,41294,'blocks_5_acfe_flexible_layout_title','Text Block'),(238135,41294,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(238136,41294,'blocks_5_options_theme','#ffffff'),(238137,41294,'_blocks_5_options_theme','field_6176830e2ad17'),(238138,41294,'blocks_5_options',''),(238139,41294,'_blocks_5_options','field_6176830e2ad16'),(238140,41294,'blocks_5_text_block_heading','Why choose Biomechanics Education'),(238141,41294,'_blocks_5_text_block_heading','field_617669d413097'),(238142,41294,'blocks_5_text_block_content',''),(238143,41294,'_blocks_5_text_block_content','field_617669ec13098'),(238144,41294,'blocks_6_acfe_flexible_toggle',''),(238145,41294,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(238146,41294,'blocks_6_acfe_flexible_layout_title','Cards'),(238147,41294,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(238148,41294,'blocks_6_options_theme','#ffffff'),(238149,41294,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(238150,41294,'blocks_6_options_format','carousel'),(238151,41294,'_blocks_6_options_format','field_617a7b15245b5'),(238152,41294,'blocks_6_options_style','default'),(238153,41294,'_blocks_6_options_style','field_6278ffb63484a'),(238154,41294,'blocks_6_options_cards_current_listing','0'),(238155,41294,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(238156,41294,'blocks_6_options_cards_content','custom'),(238157,41294,'_blocks_6_options_cards_content','field_617aba6122688'),(238158,41294,'blocks_6_options',''),(238159,41294,'_blocks_6_options','field_617a7b15245b3'),(238160,41294,'blocks_6_cards_custom_0_image',''),(238161,41294,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(238162,41294,'blocks_6_cards_custom_0_title','Specialist Training'),(238163,41294,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(238164,41294,'blocks_6_cards_custom_0_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(238165,41294,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(238166,41294,'blocks_6_cards_custom_0_link',''),(238167,41294,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(238168,41294,'blocks_6_cards_custom_1_image',''),(238169,41294,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(238170,41294,'blocks_6_cards_custom_1_title','Career Flexibility'),(238171,41294,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(238172,41294,'blocks_6_cards_custom_1_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(238173,41294,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(238174,41294,'blocks_6_cards_custom_1_link',''),(238175,41294,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(238176,41294,'blocks_6_cards_custom_2_image',''),(238177,41294,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(238178,41294,'blocks_6_cards_custom_2_title','Recognised Qualification'),(238179,41294,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(238180,41294,'blocks_6_cards_custom_2_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(238181,41294,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(238182,41294,'blocks_6_cards_custom_2_link',''),(238183,41294,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(238184,41294,'blocks_6_cards_custom_3_image',''),(238185,41294,'_blocks_6_cards_custom_3_image','field_6194cc284d387'),(238186,41294,'blocks_6_cards_custom_3_title','Funding Available'),(238187,41294,'_blocks_6_cards_custom_3_title','field_6194cc454d388'),(238188,41294,'blocks_6_cards_custom_3_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(238189,41294,'_blocks_6_cards_custom_3_text','field_6194cc4a4d389'),(238190,41294,'blocks_6_cards_custom_3_link',''),(238191,41294,'_blocks_6_cards_custom_3_link','field_6194cc534d38a'),(238192,41294,'blocks_6_cards_custom','4'),(238193,41294,'_blocks_6_cards_custom','field_6194cbf84d386'),(238194,41295,'hide_hero','0'),(238195,41295,'_hide_hero','field_66a2380fcda39'),(238196,41295,'hero_title',''),(238197,41295,'_hero_title','field_617571fe285e8'),(238198,41295,'hero_text',''),(238199,41295,'_hero_text','field_6175723c285e9'),(238200,41295,'hero_actions',''),(238201,41295,'_hero_actions','field_61757270285ea'),(238202,41295,'hero_style','default'),(238203,41295,'_hero_style','field_62051d9dc5324'),(238204,41295,'_thumbnail_id','41183'),(238205,41295,'__thumbnail_id','field_617570855ddaf'),(238206,41295,'hero_image_pos_x','right'),(238207,41295,'_hero_image_pos_x','field_62ec3d05390bb'),(238208,41295,'hero_image_pos_y','top'),(238209,41295,'_hero_image_pos_y','field_62ec3d05390bc'),(238210,41295,'hero_image_pos',''),(238211,41295,'_hero_image_pos','field_62ec3d05390ba'),(238212,41295,'fft_hide_from_listings','0'),(238213,41295,'_fft_hide_from_listings','field_61f1320446ab2'),(238214,41295,'fft_page_format','default'),(238215,41295,'_fft_page_format','field_61ae213f1f218'),(238216,41295,'fft_hide_nav','0'),(238217,41295,'_fft_hide_nav','field_635bd5e43527c'),(238218,41295,'fft_hide_header_call_to_action','0'),(238219,41295,'_fft_hide_header_call_to_action','field_635bd6723527d'),(238220,41295,'fft_page_sitemap','0'),(238221,41295,'_fft_page_sitemap','field_61af9b34e8181'),(238222,41295,'blocks_0_acfe_flexible_toggle',''),(238223,41295,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(238224,41295,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(238225,41295,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(238226,41295,'blocks_0_options_theme','#ffffff'),(238227,41295,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(238228,41295,'blocks_0_options_reverse','0'),(238229,41295,'_blocks_0_options_reverse','field_61768049bb8ac'),(238230,41295,'blocks_0_options',''),(238231,41295,'_blocks_0_options','field_617682517c334'),(238232,41295,'blocks_0_split_5050_image','41190'),(238233,41295,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(238234,41295,'blocks_0_split_5050_video',''),(238235,41295,'_blocks_0_split_5050_video','field_6239f3160848a'),(238236,41295,'blocks_0_split_5050_content_title',''),(238237,41295,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(238238,41295,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(238239,41295,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(238240,41295,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(238241,41295,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(238242,41295,'blocks_0_split_5050_content_actions',''),(238243,41295,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(238244,41295,'blocks_0_split_5050_content',''),(238245,41295,'_blocks_0_split_5050_content','field_61767afceb8ba'),(238246,41295,'blocks_1_acfe_flexible_toggle',''),(238247,41295,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(238248,41295,'blocks_1_acfe_flexible_layout_title','Form'),(238249,41295,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(238250,41295,'blocks_1_row_content_format','standard'),(238251,41295,'_blocks_1_row_content_format','field_6481ead962881'),(238252,41295,'blocks_1_row_content_title',''),(238253,41295,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(238254,41295,'blocks_1_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(238255,41295,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(238256,41295,'blocks_1_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(238257,41295,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(238258,41295,'blocks_1_row_content_actions',''),(238259,41295,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(238260,41295,'blocks_1_row_content',''),(238261,41295,'_blocks_1_row_content','field_61a0f5f5b3db0'),(238262,41295,'blocks_1_row_form','40394'),(238263,41295,'_blocks_1_row_form','field_61a4ff2c0b08e'),(238264,41295,'blocks_1_row_form_button_label',''),(238265,41295,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(238266,41295,'blocks_2_acfe_flexible_toggle',''),(238267,41295,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(238268,41295,'blocks_2_acfe_flexible_layout_title','Timeline'),(238269,41295,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(238270,41295,'blocks_2_options_theme','#ffffff'),(238271,41295,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(238272,41295,'blocks_2_options',''),(238273,41295,'_blocks_2_options','field_6177de53d1195'),(238274,41295,'blocks_2_timeline_content_title',''),(238275,41295,'_blocks_2_timeline_content_title','field_6177de53d1198'),(238276,41295,'blocks_2_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(238277,41295,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(238278,41295,'blocks_2_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(238279,41295,'_blocks_2_timeline_content_text','field_6177de53d119a'),(238280,41295,'blocks_2_timeline_content_actions',''),(238281,41295,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(238282,41295,'blocks_2_timeline_content',''),(238283,41295,'_blocks_2_timeline_content','field_6177de53d1197'),(238284,41295,'blocks_2_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(238285,41295,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(238286,41295,'blocks_2_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(238287,41295,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(238288,41295,'blocks_2_timeline_items_1_title','Send your fully completed form to ELCAS'),(238289,41295,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(238290,41295,'blocks_2_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(238291,41295,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(238292,41295,'blocks_2_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(238293,41295,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(238294,41295,'blocks_2_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(238295,41295,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(238296,41295,'blocks_2_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(238297,41295,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(238298,41295,'blocks_2_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(238299,41295,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(238300,41295,'blocks_2_timeline_items','4'),(238301,41295,'_blocks_2_timeline_items','field_6177de53d119d'),(238302,41295,'blocks_3_acfe_flexible_toggle',''),(238303,41295,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(238304,41295,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(238305,41295,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(238306,41295,'blocks_3_options_theme','#ffffff'),(238307,41295,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(238308,41295,'blocks_3_options_reverse','1'),(238309,41295,'_blocks_3_options_reverse','field_61768049bb8ac'),(238310,41295,'blocks_3_options',''),(238311,41295,'_blocks_3_options','field_617682517c334'),(238312,41295,'blocks_3_split_5050_image','41189'),(238313,41295,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(238314,41295,'blocks_3_split_5050_video',''),(238315,41295,'_blocks_3_split_5050_video','field_6239f3160848a'),(238316,41295,'blocks_3_split_5050_content_title',''),(238317,41295,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(238318,41295,'blocks_3_split_5050_content_heading','Why choose Biomechanics Education'),(238319,41295,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(238320,41295,'blocks_3_split_5050_content_text','<ul>\r\n 	<li>Specialist Training: Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.</li>\r\n 	<li>Career Flexibility: As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.</li>\r\n 	<li>Recognised Qualification: Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.</li>\r\n 	<li>Funding Available: Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.</li>\r\n</ul>\r\nJoin the growing number of armed forces personnel who have successfully transitioned into the biomechanics field and continue to serve others by promoting health, movement, and performance.'),(238321,41295,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(238322,41295,'blocks_3_split_5050_content_actions',''),(238323,41295,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(238324,41295,'blocks_3_split_5050_content',''),(238325,41295,'_blocks_3_split_5050_content','field_61767afceb8ba'),(238326,41295,'blocks_4_acfe_flexible_toggle',''),(238327,41295,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(238328,41295,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(238329,41295,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(238330,41295,'blocks_4_options_theme','#ffffff'),(238331,41295,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(238332,41295,'blocks_4_options_state','0'),(238333,41295,'_blocks_4_options_state','field_6239fcb7508c5'),(238334,41295,'blocks_4_options',''),(238335,41295,'_blocks_4_options','field_6177e2991ac44'),(238336,41295,'blocks_4_content_title',''),(238337,41295,'_blocks_4_content_title','field_64d237e8bb1e2'),(238338,41295,'blocks_4_content_heading','FAQ\'s'),(238339,41295,'_blocks_4_content_heading','field_64d237e8bb1e3'),(238340,41295,'blocks_4_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(238341,41295,'_blocks_4_content_text','field_64d237e8bb1e4'),(238342,41295,'blocks_4_content_actions',''),(238343,41295,'_blocks_4_content_actions','field_64d237e8bb1e5'),(238344,41295,'blocks_4_content_align','left'),(238345,41295,'_blocks_4_content_align','field_64d2443e6b6aa'),(238346,41295,'blocks_4_content',''),(238347,41295,'_blocks_4_content','field_64d237e8bb1e1'),(238348,41295,'blocks_4_accordion_content','custom'),(238349,41295,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(238350,41295,'blocks_4_accordion_items_0_title','What is ELCAS?'),(238351,41295,'_blocks_4_accordion_items_0_title','field_6177e2991ac4d'),(238352,41295,'blocks_4_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(238353,41295,'_blocks_4_accordion_items_0_text','field_6177e2991ac4e'),(238354,41295,'blocks_4_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(238355,41295,'_blocks_4_accordion_items_1_title','field_6177e2991ac4d'),(238356,41295,'blocks_4_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(238357,41295,'_blocks_4_accordion_items_1_text','field_6177e2991ac4e'),(238358,41295,'blocks_4_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(238359,41295,'_blocks_4_accordion_items_2_title','field_6177e2991ac4d'),(238360,41295,'blocks_4_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(238361,41295,'_blocks_4_accordion_items_2_text','field_6177e2991ac4e'),(238362,41295,'blocks_4_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(238363,41295,'_blocks_4_accordion_items_3_title','field_6177e2991ac4d'),(238364,41295,'blocks_4_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(238365,41295,'_blocks_4_accordion_items_3_text','field_6177e2991ac4e'),(238366,41295,'blocks_4_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(238367,41295,'_blocks_4_accordion_items_4_title','field_6177e2991ac4d'),(238368,41295,'blocks_4_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(238369,41295,'_blocks_4_accordion_items_4_text','field_6177e2991ac4e'),(238370,41295,'blocks_4_accordion_items','5'),(238371,41295,'_blocks_4_accordion_items','field_6177e2991ac4c'),(238372,41295,'blocks_4_actions',''),(238373,41295,'_blocks_4_actions','field_61a746a817f7a'),(238374,41295,'blocks_5_acfe_flexible_toggle',''),(238375,41295,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(238376,41295,'blocks_5_acfe_flexible_layout_title','Text Block'),(238377,41295,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(238378,41295,'blocks_5_options_theme','#ffffff'),(238379,41295,'_blocks_5_options_theme','field_6176830e2ad17'),(238380,41295,'blocks_5_options',''),(238381,41295,'_blocks_5_options','field_6176830e2ad16'),(238382,41295,'blocks_5_text_block_heading','Why choose Biomechanics Education'),(238383,41295,'_blocks_5_text_block_heading','field_617669d413097'),(238384,41295,'blocks_5_text_block_content',''),(238385,41295,'_blocks_5_text_block_content','field_617669ec13098'),(238386,41295,'blocks_6_acfe_flexible_toggle',''),(238387,41295,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(238388,41295,'blocks_6_acfe_flexible_layout_title','Cards'),(238389,41295,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(238390,41295,'blocks_6_options_theme','#ffffff'),(238391,41295,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(238392,41295,'blocks_6_options_format','carousel'),(238393,41295,'_blocks_6_options_format','field_617a7b15245b5'),(238394,41295,'blocks_6_options_style','default'),(238395,41295,'_blocks_6_options_style','field_6278ffb63484a'),(238396,41295,'blocks_6_options_cards_current_listing','0'),(238397,41295,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(238398,41295,'blocks_6_options_cards_content','custom'),(238399,41295,'_blocks_6_options_cards_content','field_617aba6122688'),(238400,41295,'blocks_6_options',''),(238401,41295,'_blocks_6_options','field_617a7b15245b3'),(238402,41295,'blocks_6_cards_custom_0_image',''),(238403,41295,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(238404,41295,'blocks_6_cards_custom_0_title','Specialist Training'),(238405,41295,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(238406,41295,'blocks_6_cards_custom_0_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(238407,41295,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(238408,41295,'blocks_6_cards_custom_0_link',''),(238409,41295,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(238410,41295,'blocks_6_cards_custom_1_image',''),(238411,41295,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(238412,41295,'blocks_6_cards_custom_1_title','Career Flexibility'),(238413,41295,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(238414,41295,'blocks_6_cards_custom_1_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(238415,41295,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(238416,41295,'blocks_6_cards_custom_1_link',''),(238417,41295,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(238418,41295,'blocks_6_cards_custom_2_image',''),(238419,41295,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(238420,41295,'blocks_6_cards_custom_2_title','Recognised Qualification'),(238421,41295,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(238422,41295,'blocks_6_cards_custom_2_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(238423,41295,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(238424,41295,'blocks_6_cards_custom_2_link',''),(238425,41295,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(238426,41295,'blocks_6_cards_custom_3_image',''),(238427,41295,'_blocks_6_cards_custom_3_image','field_6194cc284d387'),(238428,41295,'blocks_6_cards_custom_3_title','Funding Available'),(238429,41295,'_blocks_6_cards_custom_3_title','field_6194cc454d388'),(238430,41295,'blocks_6_cards_custom_3_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(238431,41295,'_blocks_6_cards_custom_3_text','field_6194cc4a4d389'),(238432,41295,'blocks_6_cards_custom_3_link',''),(238433,41295,'_blocks_6_cards_custom_3_link','field_6194cc534d38a'),(238434,41295,'blocks_6_cards_custom','4'),(238435,41295,'_blocks_6_cards_custom','field_6194cbf84d386'),(238436,41295,'blocks','a:7:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:10:\"accordions\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(238437,41295,'_blocks','field_6176696113096'),(238566,41296,'hide_hero','0'),(238567,41296,'_hide_hero','field_66a2380fcda39'),(238568,41296,'fft_hide_from_listings','0'),(238569,41296,'_fft_hide_from_listings','field_61f1320446ab2'),(238570,41296,'fft_page_format','default'),(238571,41296,'_fft_page_format','field_61ae213f1f218'),(238572,41296,'fft_hide_nav','0'),(238573,41296,'_fft_hide_nav','field_635bd5e43527c'),(238574,41296,'fft_hide_header_call_to_action','0'),(238575,41296,'_fft_hide_header_call_to_action','field_635bd6723527d'),(238576,41296,'fft_page_sitemap','0'),(238577,41296,'_fft_page_sitemap','field_61af9b34e8181'),(238578,41296,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:10:\"accordions\";i:5;s:5:\"cards\";i:6;s:10:\"text_block\";i:7;s:4:\"tabs\";}'),(238579,41296,'_blocks','field_6176696113096'),(238580,41296,'_thumbnail_id','41183'),(238581,41296,'__thumbnail_id','field_617570855ddaf'),(238582,41296,'hero_title',''),(238583,41296,'_hero_title','field_617571fe285e8'),(238584,41296,'hero_text',''),(238585,41296,'_hero_text','field_6175723c285e9'),(238586,41296,'hero_actions',''),(238587,41296,'_hero_actions','field_61757270285ea'),(238588,41296,'hero_style','default'),(238589,41296,'_hero_style','field_62051d9dc5324'),(238590,41296,'hero_image_pos_x','right'),(238591,41296,'_hero_image_pos_x','field_62ec3d05390bb'),(238592,41296,'hero_image_pos_y','top'),(238593,41296,'_hero_image_pos_y','field_62ec3d05390bc'),(238594,41296,'hero_image_pos',''),(238595,41296,'_hero_image_pos','field_62ec3d05390ba'),(238596,41296,'blocks_0_acfe_flexible_toggle',''),(238597,41296,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(238598,41296,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(238599,41296,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(238600,41296,'blocks_0_options_theme','#ffffff'),(238601,41296,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(238602,41296,'blocks_0_options_reverse','0'),(238603,41296,'_blocks_0_options_reverse','field_61768049bb8ac'),(238604,41296,'blocks_0_options',''),(238605,41296,'_blocks_0_options','field_617682517c334'),(238606,41296,'blocks_0_split_5050_image','41190'),(238607,41296,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(238608,41296,'blocks_0_split_5050_video',''),(238609,41296,'_blocks_0_split_5050_video','field_6239f3160848a'),(238610,41296,'blocks_0_split_5050_content_title',''),(238611,41296,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(238612,41296,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(238613,41296,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(238614,41296,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(238615,41296,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(238616,41296,'blocks_0_split_5050_content_actions',''),(238617,41296,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(238618,41296,'blocks_0_split_5050_content',''),(238619,41296,'_blocks_0_split_5050_content','field_61767afceb8ba'),(238620,41296,'blocks_1_acfe_flexible_toggle',''),(238621,41296,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(238622,41296,'blocks_1_acfe_flexible_layout_title','Form'),(238623,41296,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(238624,41296,'blocks_1_row_content_format','standard'),(238625,41296,'_blocks_1_row_content_format','field_6481ead962881'),(238626,41296,'blocks_1_row_content_title',''),(238627,41296,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(238628,41296,'blocks_1_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(238629,41296,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(238630,41296,'blocks_1_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(238631,41296,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(238632,41296,'blocks_1_row_content_actions',''),(238633,41296,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(238634,41296,'blocks_1_row_content',''),(238635,41296,'_blocks_1_row_content','field_61a0f5f5b3db0'),(238636,41296,'blocks_1_row_form','40394'),(238637,41296,'_blocks_1_row_form','field_61a4ff2c0b08e'),(238638,41296,'blocks_1_row_form_button_label',''),(238639,41296,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(238640,41296,'blocks_2_acfe_flexible_toggle',''),(238641,41296,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(238642,41296,'blocks_2_acfe_flexible_layout_title','Timeline'),(238643,41296,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(238644,41296,'blocks_2_options_theme','#ffffff'),(238645,41296,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(238646,41296,'blocks_2_options',''),(238647,41296,'_blocks_2_options','field_6177de53d1195'),(238648,41296,'blocks_2_timeline_content_title',''),(238649,41296,'_blocks_2_timeline_content_title','field_6177de53d1198'),(238650,41296,'blocks_2_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(238651,41296,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(238652,41296,'blocks_2_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(238653,41296,'_blocks_2_timeline_content_text','field_6177de53d119a'),(238654,41296,'blocks_2_timeline_content_actions',''),(238655,41296,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(238656,41296,'blocks_2_timeline_content',''),(238657,41296,'_blocks_2_timeline_content','field_6177de53d1197'),(238658,41296,'blocks_2_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(238659,41296,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(238660,41296,'blocks_2_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(238661,41296,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(238662,41296,'blocks_2_timeline_items_1_title','Send your fully completed form to ELCAS'),(238663,41296,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(238664,41296,'blocks_2_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(238665,41296,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(238666,41296,'blocks_2_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(238667,41296,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(238668,41296,'blocks_2_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(238669,41296,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(238670,41296,'blocks_2_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(238671,41296,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(238672,41296,'blocks_2_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(238673,41296,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(238674,41296,'blocks_2_timeline_items','4'),(238675,41296,'_blocks_2_timeline_items','field_6177de53d119d'),(238676,41296,'blocks_3_acfe_flexible_toggle',''),(238677,41296,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(238678,41296,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(238679,41296,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(238680,41296,'blocks_3_options_theme','#ffffff'),(238681,41296,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(238682,41296,'blocks_3_options_reverse','1'),(238683,41296,'_blocks_3_options_reverse','field_61768049bb8ac'),(238684,41296,'blocks_3_options',''),(238685,41296,'_blocks_3_options','field_617682517c334'),(238686,41296,'blocks_3_split_5050_image','41189'),(238687,41296,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(238688,41296,'blocks_3_split_5050_video',''),(238689,41296,'_blocks_3_split_5050_video','field_6239f3160848a'),(238690,41296,'blocks_3_split_5050_content_title',''),(238691,41296,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(238692,41296,'blocks_3_split_5050_content_heading','Why choose Biomechanics Education'),(238693,41296,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(238694,41296,'blocks_3_split_5050_content_text','<ul>\r\n 	<li>Specialist Training: Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.</li>\r\n 	<li>Career Flexibility: As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.</li>\r\n 	<li>Recognised Qualification: Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.</li>\r\n 	<li>Funding Available: Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.</li>\r\n</ul>\r\nJoin the growing number of armed forces personnel who have successfully transitioned into the biomechanics field and continue to serve others by promoting health, movement, and performance.'),(238695,41296,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(238696,41296,'blocks_3_split_5050_content_actions',''),(238697,41296,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(238698,41296,'blocks_3_split_5050_content',''),(238699,41296,'_blocks_3_split_5050_content','field_61767afceb8ba'),(238700,41296,'blocks_4_acfe_flexible_toggle',''),(238701,41296,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(238702,41296,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(238703,41296,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(238704,41296,'blocks_4_options_theme','#ffffff'),(238705,41296,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(238706,41296,'blocks_4_options_state','0'),(238707,41296,'_blocks_4_options_state','field_6239fcb7508c5'),(238708,41296,'blocks_4_options',''),(238709,41296,'_blocks_4_options','field_6177e2991ac44'),(238710,41296,'blocks_4_content_title',''),(238711,41296,'_blocks_4_content_title','field_64d237e8bb1e2'),(238712,41296,'blocks_4_content_heading','FAQ\'s'),(238713,41296,'_blocks_4_content_heading','field_64d237e8bb1e3'),(238714,41296,'blocks_4_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(238715,41296,'_blocks_4_content_text','field_64d237e8bb1e4'),(238716,41296,'blocks_4_content_actions',''),(238717,41296,'_blocks_4_content_actions','field_64d237e8bb1e5'),(238718,41296,'blocks_4_content_align','left'),(238719,41296,'_blocks_4_content_align','field_64d2443e6b6aa'),(238720,41296,'blocks_4_content',''),(238721,41296,'_blocks_4_content','field_64d237e8bb1e1'),(238722,41296,'blocks_4_accordion_content','custom'),(238723,41296,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(238724,41296,'blocks_4_accordion_items_0_title','What is ELCAS?'),(238725,41296,'_blocks_4_accordion_items_0_title','field_6177e2991ac4d'),(238726,41296,'blocks_4_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(238727,41296,'_blocks_4_accordion_items_0_text','field_6177e2991ac4e'),(238728,41296,'blocks_4_accordion_items','5'),(238729,41296,'_blocks_4_accordion_items','field_6177e2991ac4c'),(238730,41296,'blocks_4_actions',''),(238731,41296,'_blocks_4_actions','field_61a746a817f7a'),(238732,41296,'blocks_4_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(238733,41296,'_blocks_4_accordion_items_1_title','field_6177e2991ac4d'),(238734,41296,'blocks_4_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(238735,41296,'_blocks_4_accordion_items_1_text','field_6177e2991ac4e'),(238736,41296,'blocks_4_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(238737,41296,'_blocks_4_accordion_items_2_title','field_6177e2991ac4d'),(238738,41296,'blocks_4_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(238739,41296,'_blocks_4_accordion_items_2_text','field_6177e2991ac4e'),(238740,41296,'blocks_4_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(238741,41296,'_blocks_4_accordion_items_3_title','field_6177e2991ac4d'),(238742,41296,'blocks_4_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(238743,41296,'_blocks_4_accordion_items_3_text','field_6177e2991ac4e'),(238744,41296,'blocks_4_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(238745,41296,'_blocks_4_accordion_items_4_title','field_6177e2991ac4d'),(238746,41296,'blocks_4_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(238747,41296,'_blocks_4_accordion_items_4_text','field_6177e2991ac4e'),(238748,41296,'blocks_5_acfe_flexible_toggle',''),(238749,41296,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(238750,41296,'blocks_5_acfe_flexible_layout_title','Cards'),(238751,41296,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(238752,41296,'blocks_5_options_theme','#ffffff'),(238753,41296,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(238754,41296,'blocks_5_options_format','carousel'),(238755,41296,'_blocks_5_options_format','field_617a7b15245b5'),(238756,41296,'blocks_5_options_style','default'),(238757,41296,'_blocks_5_options_style','field_6278ffb63484a'),(238758,41296,'blocks_5_options_cards_current_listing','0'),(238759,41296,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(238760,41296,'blocks_5_options_cards_content','custom'),(238761,41296,'_blocks_5_options_cards_content','field_617aba6122688'),(238762,41296,'blocks_5_options',''),(238763,41296,'_blocks_5_options','field_617a7b15245b3'),(238764,41296,'blocks_5_cards_custom_0_image',''),(238765,41296,'_blocks_5_cards_custom_0_image','field_6194cc284d387'),(238766,41296,'blocks_5_cards_custom_0_title','Specialist Training'),(238767,41296,'_blocks_5_cards_custom_0_title','field_6194cc454d388'),(238768,41296,'blocks_5_cards_custom_0_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(238769,41296,'_blocks_5_cards_custom_0_text','field_6194cc4a4d389'),(238770,41296,'blocks_5_cards_custom_0_link',''),(238771,41296,'_blocks_5_cards_custom_0_link','field_6194cc534d38a'),(238772,41296,'blocks_5_cards_custom_1_image',''),(238773,41296,'_blocks_5_cards_custom_1_image','field_6194cc284d387'),(238774,41296,'blocks_5_cards_custom_1_title','Career Flexibility'),(238775,41296,'_blocks_5_cards_custom_1_title','field_6194cc454d388'),(238776,41296,'blocks_5_cards_custom_1_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(238777,41296,'_blocks_5_cards_custom_1_text','field_6194cc4a4d389'),(238778,41296,'blocks_5_cards_custom_1_link',''),(238779,41296,'_blocks_5_cards_custom_1_link','field_6194cc534d38a'),(238780,41296,'blocks_5_cards_custom_2_image',''),(238781,41296,'_blocks_5_cards_custom_2_image','field_6194cc284d387'),(238782,41296,'blocks_5_cards_custom_2_title','Recognised Qualification'),(238783,41296,'_blocks_5_cards_custom_2_title','field_6194cc454d388'),(238784,41296,'blocks_5_cards_custom_2_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(238785,41296,'_blocks_5_cards_custom_2_text','field_6194cc4a4d389'),(238786,41296,'blocks_5_cards_custom_2_link',''),(238787,41296,'_blocks_5_cards_custom_2_link','field_6194cc534d38a'),(238788,41296,'blocks_5_cards_custom_3_image',''),(238789,41296,'_blocks_5_cards_custom_3_image','field_6194cc284d387'),(238790,41296,'blocks_5_cards_custom_3_title','Funding Available'),(238791,41296,'_blocks_5_cards_custom_3_title','field_6194cc454d388'),(238792,41296,'blocks_5_cards_custom_3_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(238793,41296,'_blocks_5_cards_custom_3_text','field_6194cc4a4d389'),(238794,41296,'blocks_5_cards_custom_3_link',''),(238795,41296,'_blocks_5_cards_custom_3_link','field_6194cc534d38a'),(238796,41296,'blocks_5_cards_custom','4'),(238797,41296,'_blocks_5_cards_custom','field_6194cbf84d386'),(238798,41296,'blocks_6_acfe_flexible_toggle',''),(238799,41296,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(238800,41296,'blocks_6_acfe_flexible_layout_title','Text Block'),(238801,41296,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(238802,41296,'blocks_6_options_theme','#ffffff'),(238803,41296,'_blocks_6_options_theme','field_6176830e2ad17'),(238804,41296,'blocks_6_options',''),(238805,41296,'_blocks_6_options','field_6176830e2ad16'),(238806,41296,'blocks_6_text_block_heading','Why choose Biomechanics Education'),(238807,41296,'_blocks_6_text_block_heading','field_617669d413097'),(238808,41296,'blocks_6_text_block_content',''),(238809,41296,'_blocks_6_text_block_content','field_617669ec13098'),(238810,41296,'blocks_7_acfe_flexible_toggle',''),(238811,41296,'_blocks_7_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(238812,41296,'blocks_7_acfe_flexible_layout_title','Tabs'),(238813,41296,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(238814,41296,'blocks_7_options_theme','#ffffff'),(238815,41296,'_blocks_7_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(238816,41296,'blocks_7_options',''),(238817,41296,'_blocks_7_options','field_6177cfcd8140f'),(238818,41296,'blocks_7_tabs_0_tab_label','Specialist Training'),(238819,41296,'_blocks_7_tabs_0_tab_label','field_6177d0068141a'),(238820,41296,'blocks_7_tabs_0_tab_content_title',''),(238821,41296,'_blocks_7_tabs_0_tab_content_title','field_6177cfcd81414'),(238822,41296,'blocks_7_tabs_0_tab_content_heading','Specialist Training'),(238823,41296,'_blocks_7_tabs_0_tab_content_heading','field_6177cfcd81415'),(238824,41296,'blocks_7_tabs_0_tab_content_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(238825,41296,'_blocks_7_tabs_0_tab_content_text','field_6177cfcd81416'),(238826,41296,'blocks_7_tabs_0_tab_content_actions',''),(238827,41296,'_blocks_7_tabs_0_tab_content_actions','field_6177cfcd81417'),(238828,41296,'blocks_7_tabs_0_tab_content',''),(238829,41296,'_blocks_7_tabs_0_tab_content','field_6177cfcd81413'),(238830,41296,'blocks_7_tabs_0_tab_image','7025'),(238831,41296,'_blocks_7_tabs_0_tab_image','field_6177cfcd81412'),(238832,41296,'blocks_7_tabs_1_tab_label','Career Flexibility'),(238833,41296,'_blocks_7_tabs_1_tab_label','field_6177d0068141a'),(238834,41296,'blocks_7_tabs_1_tab_content_title',''),(238835,41296,'_blocks_7_tabs_1_tab_content_title','field_6177cfcd81414'),(238836,41296,'blocks_7_tabs_1_tab_content_heading','Career Flexibility'),(238837,41296,'_blocks_7_tabs_1_tab_content_heading','field_6177cfcd81415'),(238838,41296,'blocks_7_tabs_1_tab_content_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(238839,41296,'_blocks_7_tabs_1_tab_content_text','field_6177cfcd81416'),(238840,41296,'blocks_7_tabs_1_tab_content_actions',''),(238841,41296,'_blocks_7_tabs_1_tab_content_actions','field_6177cfcd81417'),(238842,41296,'blocks_7_tabs_1_tab_content',''),(238843,41296,'_blocks_7_tabs_1_tab_content','field_6177cfcd81413'),(238844,41296,'blocks_7_tabs_1_tab_image','40839'),(238845,41296,'_blocks_7_tabs_1_tab_image','field_6177cfcd81412'),(238846,41296,'blocks_7_tabs_2_tab_label','Recognised Qualification'),(238847,41296,'_blocks_7_tabs_2_tab_label','field_6177d0068141a'),(238848,41296,'blocks_7_tabs_2_tab_content_title',''),(238849,41296,'_blocks_7_tabs_2_tab_content_title','field_6177cfcd81414'),(238850,41296,'blocks_7_tabs_2_tab_content_heading','Recognised Qualification'),(238851,41296,'_blocks_7_tabs_2_tab_content_heading','field_6177cfcd81415'),(238852,41296,'blocks_7_tabs_2_tab_content_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(238853,41296,'_blocks_7_tabs_2_tab_content_text','field_6177cfcd81416'),(238854,41296,'blocks_7_tabs_2_tab_content_actions',''),(238855,41296,'_blocks_7_tabs_2_tab_content_actions','field_6177cfcd81417'),(238856,41296,'blocks_7_tabs_2_tab_content',''),(238857,41296,'_blocks_7_tabs_2_tab_content','field_6177cfcd81413'),(238858,41296,'blocks_7_tabs_2_tab_image','40799'),(238859,41296,'_blocks_7_tabs_2_tab_image','field_6177cfcd81412'),(238860,41296,'blocks_7_tabs_3_tab_label','Funding Available'),(238861,41296,'_blocks_7_tabs_3_tab_label','field_6177d0068141a'),(238862,41296,'blocks_7_tabs_3_tab_content_title',''),(238863,41296,'_blocks_7_tabs_3_tab_content_title','field_6177cfcd81414'),(238864,41296,'blocks_7_tabs_3_tab_content_heading','Funding Available'),(238865,41296,'_blocks_7_tabs_3_tab_content_heading','field_6177cfcd81415'),(238866,41296,'blocks_7_tabs_3_tab_content_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(238867,41296,'_blocks_7_tabs_3_tab_content_text','field_6177cfcd81416'),(238868,41296,'blocks_7_tabs_3_tab_content_actions',''),(238869,41296,'_blocks_7_tabs_3_tab_content_actions','field_6177cfcd81417'),(238870,41296,'blocks_7_tabs_3_tab_content',''),(238871,41296,'_blocks_7_tabs_3_tab_content','field_6177cfcd81413'),(238872,41296,'blocks_7_tabs_3_tab_image','39334'),(238873,41296,'_blocks_7_tabs_3_tab_image','field_6177cfcd81412'),(238874,41296,'blocks_7_tabs','4'),(238875,41296,'_blocks_7_tabs','field_6177cff281419'),(238954,41179,'blocks_5_acfe_flexible_toggle',''),(238955,41179,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(238956,41179,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(238957,41179,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(238958,41179,'blocks_5_options_theme','#ffffff'),(238959,41179,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(238960,41179,'blocks_5_options_state','0'),(238961,41179,'_blocks_5_options_state','field_6239fcb7508c5'),(238962,41179,'blocks_5_options',''),(238963,41179,'_blocks_5_options','field_6177e2991ac44'),(238964,41179,'blocks_5_content_title',''),(238965,41179,'_blocks_5_content_title','field_64d237e8bb1e2'),(238966,41179,'blocks_5_content_heading','FAQ\'s'),(238967,41179,'_blocks_5_content_heading','field_64d237e8bb1e3'),(238968,41179,'blocks_5_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(238969,41179,'_blocks_5_content_text','field_64d237e8bb1e4'),(238970,41179,'blocks_5_content_actions',''),(238971,41179,'_blocks_5_content_actions','field_64d237e8bb1e5'),(238972,41179,'blocks_5_content_align','left'),(238973,41179,'_blocks_5_content_align','field_64d2443e6b6aa'),(238974,41179,'blocks_5_content',''),(238975,41179,'_blocks_5_content','field_64d237e8bb1e1'),(238976,41179,'blocks_5_accordion_content','custom'),(238977,41179,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(238978,41179,'blocks_5_accordion_items_0_title','What is ELCAS?'),(238979,41179,'_blocks_5_accordion_items_0_title','field_6177e2991ac4d'),(238980,41179,'blocks_5_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(238981,41179,'_blocks_5_accordion_items_0_text','field_6177e2991ac4e'),(238982,41179,'blocks_5_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(238983,41179,'_blocks_5_accordion_items_1_title','field_6177e2991ac4d'),(238984,41179,'blocks_5_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(238985,41179,'_blocks_5_accordion_items_1_text','field_6177e2991ac4e'),(238986,41179,'blocks_5_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(238987,41179,'_blocks_5_accordion_items_2_title','field_6177e2991ac4d'),(238988,41179,'blocks_5_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(238989,41179,'_blocks_5_accordion_items_2_text','field_6177e2991ac4e'),(238990,41179,'blocks_5_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(238991,41179,'_blocks_5_accordion_items_3_title','field_6177e2991ac4d'),(238992,41179,'blocks_5_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(238993,41179,'_blocks_5_accordion_items_3_text','field_6177e2991ac4e'),(238994,41179,'blocks_5_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(238995,41179,'_blocks_5_accordion_items_4_title','field_6177e2991ac4d'),(238996,41179,'blocks_5_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(238997,41179,'_blocks_5_accordion_items_4_text','field_6177e2991ac4e'),(238998,41179,'blocks_5_accordion_items','5'),(238999,41179,'_blocks_5_accordion_items','field_6177e2991ac4c'),(239000,41179,'blocks_5_actions',''),(239001,41179,'_blocks_5_actions','field_61a746a817f7a'),(239002,41297,'hide_hero','0'),(239003,41297,'_hide_hero','field_66a2380fcda39'),(239004,41297,'fft_hide_from_listings','0'),(239005,41297,'_fft_hide_from_listings','field_61f1320446ab2'),(239006,41297,'fft_page_format','default'),(239007,41297,'_fft_page_format','field_61ae213f1f218'),(239008,41297,'fft_hide_nav','0'),(239009,41297,'_fft_hide_nav','field_635bd5e43527c'),(239010,41297,'fft_hide_header_call_to_action','0'),(239011,41297,'_fft_hide_header_call_to_action','field_635bd6723527d'),(239012,41297,'fft_page_sitemap','0'),(239013,41297,'_fft_page_sitemap','field_61af9b34e8181'),(239014,41297,'blocks','a:6:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:13:\"step_timeline\";i:3;s:10:\"text_block\";i:4;s:4:\"tabs\";i:5;s:10:\"accordions\";}'),(239015,41297,'_blocks','field_6176696113096'),(239016,41297,'_thumbnail_id','41183'),(239017,41297,'__thumbnail_id','field_617570855ddaf'),(239018,41297,'hero_title',''),(239019,41297,'_hero_title','field_617571fe285e8'),(239020,41297,'hero_text',''),(239021,41297,'_hero_text','field_6175723c285e9'),(239022,41297,'hero_actions',''),(239023,41297,'_hero_actions','field_61757270285ea'),(239024,41297,'hero_style','default'),(239025,41297,'_hero_style','field_62051d9dc5324'),(239026,41297,'hero_image_pos_x','right'),(239027,41297,'_hero_image_pos_x','field_62ec3d05390bb'),(239028,41297,'hero_image_pos_y','top'),(239029,41297,'_hero_image_pos_y','field_62ec3d05390bc'),(239030,41297,'hero_image_pos',''),(239031,41297,'_hero_image_pos','field_62ec3d05390ba'),(239032,41297,'blocks_0_acfe_flexible_toggle',''),(239033,41297,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(239034,41297,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(239035,41297,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(239036,41297,'blocks_0_options_theme','#ffffff'),(239037,41297,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(239038,41297,'blocks_0_options_reverse','0'),(239039,41297,'_blocks_0_options_reverse','field_61768049bb8ac'),(239040,41297,'blocks_0_options',''),(239041,41297,'_blocks_0_options','field_617682517c334'),(239042,41297,'blocks_0_split_5050_image','41190'),(239043,41297,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(239044,41297,'blocks_0_split_5050_video',''),(239045,41297,'_blocks_0_split_5050_video','field_6239f3160848a'),(239046,41297,'blocks_0_split_5050_content_title',''),(239047,41297,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(239048,41297,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(239049,41297,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(239050,41297,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(239051,41297,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(239052,41297,'blocks_0_split_5050_content_actions',''),(239053,41297,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(239054,41297,'blocks_0_split_5050_content',''),(239055,41297,'_blocks_0_split_5050_content','field_61767afceb8ba'),(239056,41297,'blocks_1_acfe_flexible_toggle',''),(239057,41297,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(239058,41297,'blocks_1_acfe_flexible_layout_title','Form'),(239059,41297,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(239060,41297,'blocks_1_row_content_format','standard'),(239061,41297,'_blocks_1_row_content_format','field_6481ead962881'),(239062,41297,'blocks_1_row_content_title',''),(239063,41297,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(239064,41297,'blocks_1_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(239065,41297,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(239066,41297,'blocks_1_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(239067,41297,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(239068,41297,'blocks_1_row_content_actions',''),(239069,41297,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(239070,41297,'blocks_1_row_content',''),(239071,41297,'_blocks_1_row_content','field_61a0f5f5b3db0'),(239072,41297,'blocks_1_row_form','40394'),(239073,41297,'_blocks_1_row_form','field_61a4ff2c0b08e'),(239074,41297,'blocks_1_row_form_button_label',''),(239075,41297,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(239076,41297,'blocks_2_acfe_flexible_toggle',''),(239077,41297,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(239078,41297,'blocks_2_acfe_flexible_layout_title','Timeline'),(239079,41297,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(239080,41297,'blocks_2_options_theme','#ffffff'),(239081,41297,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(239082,41297,'blocks_2_options',''),(239083,41297,'_blocks_2_options','field_6177de53d1195'),(239084,41297,'blocks_2_timeline_content_title',''),(239085,41297,'_blocks_2_timeline_content_title','field_6177de53d1198'),(239086,41297,'blocks_2_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(239087,41297,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(239088,41297,'blocks_2_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(239089,41297,'_blocks_2_timeline_content_text','field_6177de53d119a'),(239090,41297,'blocks_2_timeline_content_actions',''),(239091,41297,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(239092,41297,'blocks_2_timeline_content',''),(239093,41297,'_blocks_2_timeline_content','field_6177de53d1197'),(239094,41297,'blocks_2_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(239095,41297,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(239096,41297,'blocks_2_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(239097,41297,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(239098,41297,'blocks_2_timeline_items_1_title','Send your fully completed form to ELCAS'),(239099,41297,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(239100,41297,'blocks_2_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(239101,41297,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(239102,41297,'blocks_2_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(239103,41297,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(239104,41297,'blocks_2_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(239105,41297,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(239106,41297,'blocks_2_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(239107,41297,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(239108,41297,'blocks_2_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(239109,41297,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(239110,41297,'blocks_2_timeline_items','4'),(239111,41297,'_blocks_2_timeline_items','field_6177de53d119d'),(239112,41297,'blocks_3_acfe_flexible_toggle',''),(239113,41297,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(239114,41297,'blocks_3_acfe_flexible_layout_title','Text Block'),(239115,41297,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(239116,41297,'blocks_3_options_theme','#ffffff'),(239117,41297,'_blocks_3_options_theme','field_6176830e2ad17'),(239118,41297,'blocks_3_options',''),(239119,41297,'_blocks_3_options','field_6176830e2ad16'),(239120,41297,'blocks_3_text_block_heading','Why choose Biomechanics Education'),(239121,41297,'_blocks_3_text_block_heading','field_617669d413097'),(239122,41297,'blocks_3_text_block_content',''),(239123,41297,'_blocks_3_text_block_content','field_617669ec13098'),(239124,41297,'blocks_4_acfe_flexible_toggle',''),(239125,41297,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(239126,41297,'blocks_4_acfe_flexible_layout_title','Tabs'),(239127,41297,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(239128,41297,'blocks_4_options_theme','#ffffff'),(239129,41297,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(239130,41297,'blocks_4_options',''),(239131,41297,'_blocks_4_options','field_6177cfcd8140f'),(239132,41297,'blocks_4_tabs_0_tab_label','Specialist Training'),(239133,41297,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(239134,41297,'blocks_4_tabs_0_tab_content_title',''),(239135,41297,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(239136,41297,'blocks_4_tabs_0_tab_content_heading','Specialist Training'),(239137,41297,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(239138,41297,'blocks_4_tabs_0_tab_content_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(239139,41297,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(239140,41297,'blocks_4_tabs_0_tab_content_actions',''),(239141,41297,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(239142,41297,'blocks_4_tabs_0_tab_content',''),(239143,41297,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(239144,41297,'blocks_4_tabs_0_tab_image','7025'),(239145,41297,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(239146,41297,'blocks_4_tabs_1_tab_label','Career Flexibility'),(239147,41297,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(239148,41297,'blocks_4_tabs_1_tab_content_title',''),(239149,41297,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(239150,41297,'blocks_4_tabs_1_tab_content_heading','Career Flexibility'),(239151,41297,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(239152,41297,'blocks_4_tabs_1_tab_content_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(239153,41297,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(239154,41297,'blocks_4_tabs_1_tab_content_actions',''),(239155,41297,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(239156,41297,'blocks_4_tabs_1_tab_content',''),(239157,41297,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(239158,41297,'blocks_4_tabs_1_tab_image','40839'),(239159,41297,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(239160,41297,'blocks_4_tabs_2_tab_label','Recognised Qualification'),(239161,41297,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(239162,41297,'blocks_4_tabs_2_tab_content_title',''),(239163,41297,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(239164,41297,'blocks_4_tabs_2_tab_content_heading','Recognised Qualification'),(239165,41297,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(239166,41297,'blocks_4_tabs_2_tab_content_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(239167,41297,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(239168,41297,'blocks_4_tabs_2_tab_content_actions',''),(239169,41297,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(239170,41297,'blocks_4_tabs_2_tab_content',''),(239171,41297,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(239172,41297,'blocks_4_tabs_2_tab_image','40799'),(239173,41297,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(239174,41297,'blocks_4_tabs_3_tab_label','Funding Available'),(239175,41297,'_blocks_4_tabs_3_tab_label','field_6177d0068141a'),(239176,41297,'blocks_4_tabs_3_tab_content_title',''),(239177,41297,'_blocks_4_tabs_3_tab_content_title','field_6177cfcd81414'),(239178,41297,'blocks_4_tabs_3_tab_content_heading','Funding Available'),(239179,41297,'_blocks_4_tabs_3_tab_content_heading','field_6177cfcd81415'),(239180,41297,'blocks_4_tabs_3_tab_content_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(239181,41297,'_blocks_4_tabs_3_tab_content_text','field_6177cfcd81416'),(239182,41297,'blocks_4_tabs_3_tab_content_actions',''),(239183,41297,'_blocks_4_tabs_3_tab_content_actions','field_6177cfcd81417'),(239184,41297,'blocks_4_tabs_3_tab_content',''),(239185,41297,'_blocks_4_tabs_3_tab_content','field_6177cfcd81413'),(239186,41297,'blocks_4_tabs_3_tab_image','39334'),(239187,41297,'_blocks_4_tabs_3_tab_image','field_6177cfcd81412'),(239188,41297,'blocks_4_tabs','4'),(239189,41297,'_blocks_4_tabs','field_6177cff281419'),(239190,41297,'blocks_5_acfe_flexible_toggle',''),(239191,41297,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(239192,41297,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(239193,41297,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(239194,41297,'blocks_5_options_theme','#ffffff'),(239195,41297,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(239196,41297,'blocks_5_options_state','0'),(239197,41297,'_blocks_5_options_state','field_6239fcb7508c5'),(239198,41297,'blocks_5_options',''),(239199,41297,'_blocks_5_options','field_6177e2991ac44'),(239200,41297,'blocks_5_content_title',''),(239201,41297,'_blocks_5_content_title','field_64d237e8bb1e2'),(239202,41297,'blocks_5_content_heading','FAQ\'s'),(239203,41297,'_blocks_5_content_heading','field_64d237e8bb1e3'),(239204,41297,'blocks_5_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(239205,41297,'_blocks_5_content_text','field_64d237e8bb1e4'),(239206,41297,'blocks_5_content_actions',''),(239207,41297,'_blocks_5_content_actions','field_64d237e8bb1e5'),(239208,41297,'blocks_5_content_align','left'),(239209,41297,'_blocks_5_content_align','field_64d2443e6b6aa'),(239210,41297,'blocks_5_content',''),(239211,41297,'_blocks_5_content','field_64d237e8bb1e1'),(239212,41297,'blocks_5_accordion_content','custom'),(239213,41297,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(239214,41297,'blocks_5_accordion_items_0_title','What is ELCAS?'),(239215,41297,'_blocks_5_accordion_items_0_title','field_6177e2991ac4d'),(239216,41297,'blocks_5_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(239217,41297,'_blocks_5_accordion_items_0_text','field_6177e2991ac4e'),(239218,41297,'blocks_5_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(239219,41297,'_blocks_5_accordion_items_1_title','field_6177e2991ac4d'),(239220,41297,'blocks_5_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(239221,41297,'_blocks_5_accordion_items_1_text','field_6177e2991ac4e'),(239222,41297,'blocks_5_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(239223,41297,'_blocks_5_accordion_items_2_title','field_6177e2991ac4d'),(239224,41297,'blocks_5_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(239225,41297,'_blocks_5_accordion_items_2_text','field_6177e2991ac4e'),(239226,41297,'blocks_5_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(239227,41297,'_blocks_5_accordion_items_3_title','field_6177e2991ac4d'),(239228,41297,'blocks_5_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(239229,41297,'_blocks_5_accordion_items_3_text','field_6177e2991ac4e'),(239230,41297,'blocks_5_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(239231,41297,'_blocks_5_accordion_items_4_title','field_6177e2991ac4d'),(239232,41297,'blocks_5_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(239233,41297,'_blocks_5_accordion_items_4_text','field_6177e2991ac4e'),(239234,41297,'blocks_5_accordion_items','5'),(239235,41297,'_blocks_5_accordion_items','field_6177e2991ac4c'),(239236,41297,'blocks_5_actions',''),(239237,41297,'_blocks_5_actions','field_61a746a817f7a'),(239238,41179,'blocks_1_acfe_flexible_toggle',''),(239239,41179,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(239240,41179,'blocks_1_acfe_flexible_layout_title','Text Block'),(239241,41179,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(239242,41179,'blocks_1_options_theme','#ffffff'),(239243,41179,'_blocks_1_options_theme','field_6176830e2ad17'),(239244,41179,'blocks_1_options',''),(239245,41179,'_blocks_1_options','field_6176830e2ad16'),(239246,41179,'blocks_1_text_block_heading','Why choose Biomechanics Education'),(239247,41179,'_blocks_1_text_block_heading','field_617669d413097'),(239248,41179,'blocks_1_text_block_content',''),(239249,41179,'_blocks_1_text_block_content','field_617669ec13098'),(239250,41179,'blocks_2_acfe_flexible_toggle',''),(239251,41179,'_blocks_2_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(239252,41179,'blocks_2_acfe_flexible_layout_title','Tabs'),(239253,41179,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(239254,41179,'blocks_2_options_theme','#ffffff'),(239255,41179,'_blocks_2_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(239256,41179,'blocks_2_options',''),(239257,41179,'_blocks_2_options','field_6177cfcd8140f'),(239258,41179,'blocks_2_tabs_0_tab_label','Specialist Training'),(239259,41179,'_blocks_2_tabs_0_tab_label','field_6177d0068141a'),(239260,41179,'blocks_2_tabs_0_tab_content_title',''),(239261,41179,'_blocks_2_tabs_0_tab_content_title','field_6177cfcd81414'),(239262,41179,'blocks_2_tabs_0_tab_content_heading','Specialist Training'),(239263,41179,'_blocks_2_tabs_0_tab_content_heading','field_6177cfcd81415'),(239264,41179,'blocks_2_tabs_0_tab_content_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(239265,41179,'_blocks_2_tabs_0_tab_content_text','field_6177cfcd81416'),(239266,41179,'blocks_2_tabs_0_tab_content_actions',''),(239267,41179,'_blocks_2_tabs_0_tab_content_actions','field_6177cfcd81417'),(239268,41179,'blocks_2_tabs_0_tab_content',''),(239269,41179,'_blocks_2_tabs_0_tab_content','field_6177cfcd81413'),(239270,41179,'blocks_2_tabs_0_tab_image','41301'),(239271,41179,'_blocks_2_tabs_0_tab_image','field_6177cfcd81412'),(239272,41179,'blocks_2_tabs_1_tab_label','Career Flexibility'),(239273,41179,'_blocks_2_tabs_1_tab_label','field_6177d0068141a'),(239274,41179,'blocks_2_tabs_1_tab_content_title',''),(239275,41179,'_blocks_2_tabs_1_tab_content_title','field_6177cfcd81414'),(239276,41179,'blocks_2_tabs_1_tab_content_heading','Career Flexibility'),(239277,41179,'_blocks_2_tabs_1_tab_content_heading','field_6177cfcd81415'),(239278,41179,'blocks_2_tabs_1_tab_content_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(239279,41179,'_blocks_2_tabs_1_tab_content_text','field_6177cfcd81416'),(239280,41179,'blocks_2_tabs_1_tab_content_actions',''),(239281,41179,'_blocks_2_tabs_1_tab_content_actions','field_6177cfcd81417'),(239282,41179,'blocks_2_tabs_1_tab_content',''),(239283,41179,'_blocks_2_tabs_1_tab_content','field_6177cfcd81413'),(239284,41179,'blocks_2_tabs_1_tab_image','40839'),(239285,41179,'_blocks_2_tabs_1_tab_image','field_6177cfcd81412'),(239286,41179,'blocks_2_tabs_2_tab_label','Recognised Qualification'),(239287,41179,'_blocks_2_tabs_2_tab_label','field_6177d0068141a'),(239288,41179,'blocks_2_tabs_2_tab_content_title',''),(239289,41179,'_blocks_2_tabs_2_tab_content_title','field_6177cfcd81414'),(239290,41179,'blocks_2_tabs_2_tab_content_heading','Recognised Qualification'),(239291,41179,'_blocks_2_tabs_2_tab_content_heading','field_6177cfcd81415'),(239292,41179,'blocks_2_tabs_2_tab_content_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(239293,41179,'_blocks_2_tabs_2_tab_content_text','field_6177cfcd81416'),(239294,41179,'blocks_2_tabs_2_tab_content_actions',''),(239295,41179,'_blocks_2_tabs_2_tab_content_actions','field_6177cfcd81417'),(239296,41179,'blocks_2_tabs_2_tab_content',''),(239297,41179,'_blocks_2_tabs_2_tab_content','field_6177cfcd81413'),(239298,41179,'blocks_2_tabs_2_tab_image','41300'),(239299,41179,'_blocks_2_tabs_2_tab_image','field_6177cfcd81412'),(239300,41179,'blocks_2_tabs_3_tab_label','Funding Available'),(239301,41179,'_blocks_2_tabs_3_tab_label','field_6177d0068141a'),(239302,41179,'blocks_2_tabs_3_tab_content_title',''),(239303,41179,'_blocks_2_tabs_3_tab_content_title','field_6177cfcd81414'),(239304,41179,'blocks_2_tabs_3_tab_content_heading','Funding Available'),(239305,41179,'_blocks_2_tabs_3_tab_content_heading','field_6177cfcd81415'),(239306,41179,'blocks_2_tabs_3_tab_content_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(239307,41179,'_blocks_2_tabs_3_tab_content_text','field_6177cfcd81416'),(239308,41179,'blocks_2_tabs_3_tab_content_actions',''),(239309,41179,'_blocks_2_tabs_3_tab_content_actions','field_6177cfcd81417'),(239310,41179,'blocks_2_tabs_3_tab_content',''),(239311,41179,'_blocks_2_tabs_3_tab_content','field_6177cfcd81413'),(239312,41179,'blocks_2_tabs_3_tab_image','41299'),(239313,41179,'_blocks_2_tabs_3_tab_image','field_6177cfcd81412'),(239314,41179,'blocks_2_tabs','4'),(239315,41179,'_blocks_2_tabs','field_6177cff281419'),(239316,41179,'blocks_3_acfe_flexible_toggle',''),(239317,41179,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(239318,41179,'blocks_3_acfe_flexible_layout_title','Form'),(239319,41179,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(239320,41179,'blocks_3_row_content_format','standard'),(239321,41179,'_blocks_3_row_content_format','field_6481ead962881'),(239322,41179,'blocks_3_row_content_title',''),(239323,41179,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(239324,41179,'blocks_3_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(239325,41179,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(239326,41179,'blocks_3_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(239327,41179,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(239328,41179,'blocks_3_row_content_actions',''),(239329,41179,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(239330,41179,'blocks_3_row_content',''),(239331,41179,'_blocks_3_row_content','field_61a0f5f5b3db0'),(239332,41179,'blocks_3_row_form','40394'),(239333,41179,'_blocks_3_row_form','field_61a4ff2c0b08e'),(239334,41179,'blocks_3_row_form_button_label',''),(239335,41179,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(239336,41179,'blocks_4_acfe_flexible_toggle',''),(239337,41179,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(239338,41179,'blocks_4_acfe_flexible_layout_title','Timeline'),(239339,41179,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(239340,41179,'blocks_4_options_theme','#ffffff'),(239341,41179,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(239342,41179,'blocks_4_options',''),(239343,41179,'_blocks_4_options','field_6177de53d1195'),(239344,41179,'blocks_4_timeline_content_title',''),(239345,41179,'_blocks_4_timeline_content_title','field_6177de53d1198'),(239346,41179,'blocks_4_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(239347,41179,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(239348,41179,'blocks_4_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(239349,41179,'_blocks_4_timeline_content_text','field_6177de53d119a'),(239350,41179,'blocks_4_timeline_content_actions',''),(239351,41179,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(239352,41179,'blocks_4_timeline_content',''),(239353,41179,'_blocks_4_timeline_content','field_6177de53d1197'),(239354,41179,'blocks_4_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(239355,41179,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(239356,41179,'blocks_4_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(239357,41179,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(239358,41179,'blocks_4_timeline_items_1_title','Send your fully completed form to ELCAS'),(239359,41179,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(239360,41179,'blocks_4_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(239361,41179,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(239362,41179,'blocks_4_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(239363,41179,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(239364,41179,'blocks_4_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(239365,41179,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(239366,41179,'blocks_4_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(239367,41179,'_blocks_4_timeline_items_3_title','field_6177de53d119f'),(239368,41179,'blocks_4_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(239369,41179,'_blocks_4_timeline_items_3_text','field_6177de53d11a0'),(239370,41179,'blocks_4_timeline_items','4'),(239371,41179,'_blocks_4_timeline_items','field_6177de53d119d'),(239372,41298,'hide_hero','0'),(239373,41298,'_hide_hero','field_66a2380fcda39'),(239374,41298,'fft_hide_from_listings','0'),(239375,41298,'_fft_hide_from_listings','field_61f1320446ab2'),(239376,41298,'fft_page_format','default'),(239377,41298,'_fft_page_format','field_61ae213f1f218'),(239378,41298,'fft_hide_nav','0'),(239379,41298,'_fft_hide_nav','field_635bd5e43527c'),(239380,41298,'fft_hide_header_call_to_action','0'),(239381,41298,'_fft_hide_header_call_to_action','field_635bd6723527d'),(239382,41298,'fft_page_sitemap','0'),(239383,41298,'_fft_page_sitemap','field_61af9b34e8181'),(239384,41298,'blocks','a:6:{i:0;s:10:\"split_5050\";i:1;s:10:\"text_block\";i:2;s:4:\"tabs\";i:3;s:4:\"form\";i:4;s:13:\"step_timeline\";i:5;s:10:\"accordions\";}'),(239385,41298,'_blocks','field_6176696113096'),(239386,41298,'_thumbnail_id','41183'),(239387,41298,'__thumbnail_id','field_617570855ddaf'),(239388,41298,'hero_title',''),(239389,41298,'_hero_title','field_617571fe285e8'),(239390,41298,'hero_text',''),(239391,41298,'_hero_text','field_6175723c285e9'),(239392,41298,'hero_actions',''),(239393,41298,'_hero_actions','field_61757270285ea'),(239394,41298,'hero_style','default'),(239395,41298,'_hero_style','field_62051d9dc5324'),(239396,41298,'hero_image_pos_x','right'),(239397,41298,'_hero_image_pos_x','field_62ec3d05390bb'),(239398,41298,'hero_image_pos_y','top'),(239399,41298,'_hero_image_pos_y','field_62ec3d05390bc'),(239400,41298,'hero_image_pos',''),(239401,41298,'_hero_image_pos','field_62ec3d05390ba'),(239402,41298,'blocks_0_acfe_flexible_toggle',''),(239403,41298,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(239404,41298,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(239405,41298,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(239406,41298,'blocks_0_options_theme','#ffffff'),(239407,41298,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(239408,41298,'blocks_0_options_reverse','0'),(239409,41298,'_blocks_0_options_reverse','field_61768049bb8ac'),(239410,41298,'blocks_0_options',''),(239411,41298,'_blocks_0_options','field_617682517c334'),(239412,41298,'blocks_0_split_5050_image','41190'),(239413,41298,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(239414,41298,'blocks_0_split_5050_video',''),(239415,41298,'_blocks_0_split_5050_video','field_6239f3160848a'),(239416,41298,'blocks_0_split_5050_content_title',''),(239417,41298,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(239418,41298,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(239419,41298,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(239420,41298,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(239421,41298,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(239422,41298,'blocks_0_split_5050_content_actions',''),(239423,41298,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(239424,41298,'blocks_0_split_5050_content',''),(239425,41298,'_blocks_0_split_5050_content','field_61767afceb8ba'),(239426,41298,'blocks_5_acfe_flexible_toggle',''),(239427,41298,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(239428,41298,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(239429,41298,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(239430,41298,'blocks_5_options_theme','#ffffff'),(239431,41298,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(239432,41298,'blocks_5_options_state','0'),(239433,41298,'_blocks_5_options_state','field_6239fcb7508c5'),(239434,41298,'blocks_5_options',''),(239435,41298,'_blocks_5_options','field_6177e2991ac44'),(239436,41298,'blocks_5_content_title',''),(239437,41298,'_blocks_5_content_title','field_64d237e8bb1e2'),(239438,41298,'blocks_5_content_heading','FAQ\'s'),(239439,41298,'_blocks_5_content_heading','field_64d237e8bb1e3'),(239440,41298,'blocks_5_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(239441,41298,'_blocks_5_content_text','field_64d237e8bb1e4'),(239442,41298,'blocks_5_content_actions',''),(239443,41298,'_blocks_5_content_actions','field_64d237e8bb1e5'),(239444,41298,'blocks_5_content_align','left'),(239445,41298,'_blocks_5_content_align','field_64d2443e6b6aa'),(239446,41298,'blocks_5_content',''),(239447,41298,'_blocks_5_content','field_64d237e8bb1e1'),(239448,41298,'blocks_5_accordion_content','custom'),(239449,41298,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(239450,41298,'blocks_5_accordion_items_0_title','What is ELCAS?'),(239451,41298,'_blocks_5_accordion_items_0_title','field_6177e2991ac4d'),(239452,41298,'blocks_5_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(239453,41298,'_blocks_5_accordion_items_0_text','field_6177e2991ac4e'),(239454,41298,'blocks_5_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(239455,41298,'_blocks_5_accordion_items_1_title','field_6177e2991ac4d'),(239456,41298,'blocks_5_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(239457,41298,'_blocks_5_accordion_items_1_text','field_6177e2991ac4e'),(239458,41298,'blocks_5_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(239459,41298,'_blocks_5_accordion_items_2_title','field_6177e2991ac4d'),(239460,41298,'blocks_5_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(239461,41298,'_blocks_5_accordion_items_2_text','field_6177e2991ac4e'),(239462,41298,'blocks_5_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(239463,41298,'_blocks_5_accordion_items_3_title','field_6177e2991ac4d'),(239464,41298,'blocks_5_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(239465,41298,'_blocks_5_accordion_items_3_text','field_6177e2991ac4e'),(239466,41298,'blocks_5_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(239467,41298,'_blocks_5_accordion_items_4_title','field_6177e2991ac4d'),(239468,41298,'blocks_5_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(239469,41298,'_blocks_5_accordion_items_4_text','field_6177e2991ac4e'),(239470,41298,'blocks_5_accordion_items','5'),(239471,41298,'_blocks_5_accordion_items','field_6177e2991ac4c'),(239472,41298,'blocks_5_actions',''),(239473,41298,'_blocks_5_actions','field_61a746a817f7a'),(239474,41298,'blocks_1_acfe_flexible_toggle',''),(239475,41298,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(239476,41298,'blocks_1_acfe_flexible_layout_title','Text Block'),(239477,41298,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(239478,41298,'blocks_1_options_theme','#ffffff'),(239479,41298,'_blocks_1_options_theme','field_6176830e2ad17'),(239480,41298,'blocks_1_options',''),(239481,41298,'_blocks_1_options','field_6176830e2ad16'),(239482,41298,'blocks_1_text_block_heading','Why choose Biomechanics Education'),(239483,41298,'_blocks_1_text_block_heading','field_617669d413097'),(239484,41298,'blocks_1_text_block_content',''),(239485,41298,'_blocks_1_text_block_content','field_617669ec13098'),(239486,41298,'blocks_2_acfe_flexible_toggle',''),(239487,41298,'_blocks_2_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(239488,41298,'blocks_2_acfe_flexible_layout_title','Tabs'),(239489,41298,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(239490,41298,'blocks_2_options_theme','#ffffff'),(239491,41298,'_blocks_2_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(239492,41298,'blocks_2_options',''),(239493,41298,'_blocks_2_options','field_6177cfcd8140f'),(239494,41298,'blocks_2_tabs_0_tab_label','Specialist Training'),(239495,41298,'_blocks_2_tabs_0_tab_label','field_6177d0068141a'),(239496,41298,'blocks_2_tabs_0_tab_content_title',''),(239497,41298,'_blocks_2_tabs_0_tab_content_title','field_6177cfcd81414'),(239498,41298,'blocks_2_tabs_0_tab_content_heading','Specialist Training'),(239499,41298,'_blocks_2_tabs_0_tab_content_heading','field_6177cfcd81415'),(239500,41298,'blocks_2_tabs_0_tab_content_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(239501,41298,'_blocks_2_tabs_0_tab_content_text','field_6177cfcd81416'),(239502,41298,'blocks_2_tabs_0_tab_content_actions',''),(239503,41298,'_blocks_2_tabs_0_tab_content_actions','field_6177cfcd81417'),(239504,41298,'blocks_2_tabs_0_tab_content',''),(239505,41298,'_blocks_2_tabs_0_tab_content','field_6177cfcd81413'),(239506,41298,'blocks_2_tabs_0_tab_image','7025'),(239507,41298,'_blocks_2_tabs_0_tab_image','field_6177cfcd81412'),(239508,41298,'blocks_2_tabs_1_tab_label','Career Flexibility'),(239509,41298,'_blocks_2_tabs_1_tab_label','field_6177d0068141a'),(239510,41298,'blocks_2_tabs_1_tab_content_title',''),(239511,41298,'_blocks_2_tabs_1_tab_content_title','field_6177cfcd81414'),(239512,41298,'blocks_2_tabs_1_tab_content_heading','Career Flexibility'),(239513,41298,'_blocks_2_tabs_1_tab_content_heading','field_6177cfcd81415'),(239514,41298,'blocks_2_tabs_1_tab_content_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(239515,41298,'_blocks_2_tabs_1_tab_content_text','field_6177cfcd81416'),(239516,41298,'blocks_2_tabs_1_tab_content_actions',''),(239517,41298,'_blocks_2_tabs_1_tab_content_actions','field_6177cfcd81417'),(239518,41298,'blocks_2_tabs_1_tab_content',''),(239519,41298,'_blocks_2_tabs_1_tab_content','field_6177cfcd81413'),(239520,41298,'blocks_2_tabs_1_tab_image','40839'),(239521,41298,'_blocks_2_tabs_1_tab_image','field_6177cfcd81412'),(239522,41298,'blocks_2_tabs_2_tab_label','Recognised Qualification'),(239523,41298,'_blocks_2_tabs_2_tab_label','field_6177d0068141a'),(239524,41298,'blocks_2_tabs_2_tab_content_title',''),(239525,41298,'_blocks_2_tabs_2_tab_content_title','field_6177cfcd81414'),(239526,41298,'blocks_2_tabs_2_tab_content_heading','Recognised Qualification'),(239527,41298,'_blocks_2_tabs_2_tab_content_heading','field_6177cfcd81415'),(239528,41298,'blocks_2_tabs_2_tab_content_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(239529,41298,'_blocks_2_tabs_2_tab_content_text','field_6177cfcd81416'),(239530,41298,'blocks_2_tabs_2_tab_content_actions',''),(239531,41298,'_blocks_2_tabs_2_tab_content_actions','field_6177cfcd81417'),(239532,41298,'blocks_2_tabs_2_tab_content',''),(239533,41298,'_blocks_2_tabs_2_tab_content','field_6177cfcd81413'),(239534,41298,'blocks_2_tabs_2_tab_image','40799'),(239535,41298,'_blocks_2_tabs_2_tab_image','field_6177cfcd81412'),(239536,41298,'blocks_2_tabs_3_tab_label','Funding Available'),(239537,41298,'_blocks_2_tabs_3_tab_label','field_6177d0068141a'),(239538,41298,'blocks_2_tabs_3_tab_content_title',''),(239539,41298,'_blocks_2_tabs_3_tab_content_title','field_6177cfcd81414'),(239540,41298,'blocks_2_tabs_3_tab_content_heading','Funding Available'),(239541,41298,'_blocks_2_tabs_3_tab_content_heading','field_6177cfcd81415'),(239542,41298,'blocks_2_tabs_3_tab_content_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(239543,41298,'_blocks_2_tabs_3_tab_content_text','field_6177cfcd81416'),(239544,41298,'blocks_2_tabs_3_tab_content_actions',''),(239545,41298,'_blocks_2_tabs_3_tab_content_actions','field_6177cfcd81417'),(239546,41298,'blocks_2_tabs_3_tab_content',''),(239547,41298,'_blocks_2_tabs_3_tab_content','field_6177cfcd81413'),(239548,41298,'blocks_2_tabs_3_tab_image','39334'),(239549,41298,'_blocks_2_tabs_3_tab_image','field_6177cfcd81412'),(239550,41298,'blocks_2_tabs','4'),(239551,41298,'_blocks_2_tabs','field_6177cff281419'),(239552,41298,'blocks_3_acfe_flexible_toggle',''),(239553,41298,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(239554,41298,'blocks_3_acfe_flexible_layout_title','Form'),(239555,41298,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(239556,41298,'blocks_3_row_content_format','standard'),(239557,41298,'_blocks_3_row_content_format','field_6481ead962881'),(239558,41298,'blocks_3_row_content_title',''),(239559,41298,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(239560,41298,'blocks_3_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(239561,41298,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(239562,41298,'blocks_3_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(239563,41298,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(239564,41298,'blocks_3_row_content_actions',''),(239565,41298,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(239566,41298,'blocks_3_row_content',''),(239567,41298,'_blocks_3_row_content','field_61a0f5f5b3db0'),(239568,41298,'blocks_3_row_form','40394'),(239569,41298,'_blocks_3_row_form','field_61a4ff2c0b08e'),(239570,41298,'blocks_3_row_form_button_label',''),(239571,41298,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(239572,41298,'blocks_4_acfe_flexible_toggle',''),(239573,41298,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(239574,41298,'blocks_4_acfe_flexible_layout_title','Timeline'),(239575,41298,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(239576,41298,'blocks_4_options_theme','#ffffff'),(239577,41298,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(239578,41298,'blocks_4_options',''),(239579,41298,'_blocks_4_options','field_6177de53d1195'),(239580,41298,'blocks_4_timeline_content_title',''),(239581,41298,'_blocks_4_timeline_content_title','field_6177de53d1198'),(239582,41298,'blocks_4_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(239583,41298,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(239584,41298,'blocks_4_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(239585,41298,'_blocks_4_timeline_content_text','field_6177de53d119a'),(239586,41298,'blocks_4_timeline_content_actions',''),(239587,41298,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(239588,41298,'blocks_4_timeline_content',''),(239589,41298,'_blocks_4_timeline_content','field_6177de53d1197'),(239590,41298,'blocks_4_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(239591,41298,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(239592,41298,'blocks_4_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(239593,41298,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(239594,41298,'blocks_4_timeline_items_1_title','Send your fully completed form to ELCAS'),(239595,41298,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(239596,41298,'blocks_4_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(239597,41298,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(239598,41298,'blocks_4_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(239599,41298,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(239600,41298,'blocks_4_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(239601,41298,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(239602,41298,'blocks_4_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(239603,41298,'_blocks_4_timeline_items_3_title','field_6177de53d119f'),(239604,41298,'blocks_4_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(239605,41298,'_blocks_4_timeline_items_3_text','field_6177de53d11a0'),(239606,41298,'blocks_4_timeline_items','4'),(239607,41298,'_blocks_4_timeline_items','field_6177de53d119d'),(239608,41299,'_wp_attached_file','2024/10/BE_Worshop_24thAug-1-scaled.jpg'),(239609,41299,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/10/BE_Worshop_24thAug-1-scaled.jpg\";s:8:\"filesize\";i:579206;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130132;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-1-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193084;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45973;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104734;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-1-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274057;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-1-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:416223;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56619;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163858;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245811;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45849;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129683;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192207;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47163;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131781;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196112;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48582;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137781;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205062;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43627;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122285;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181041;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1724494906\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_24thAug-1.jpg\";}'),(239610,41299,'_wp_attachment_image_alt','Rachel teaching three people all sat on the floor and talking.'),(239611,41300,'_wp_attached_file','2024/10/BE_Worshop_30thAug-21-scaled.jpg'),(239612,41300,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/10/BE_Worshop_30thAug-21-scaled.jpg\";s:8:\"filesize\";i:551747;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107944;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-21-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39078;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86778;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-21-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:234756;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-21-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:372514;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48184;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138509;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-21-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211068;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39030;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106909;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-21-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161157;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42511;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117408;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-21-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178744;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41859;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117704;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-21-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177688;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35897;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97469;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-21-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146079;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725016953\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-21.jpg\";}'),(239613,41301,'_wp_attached_file','2024/10/BE_Worshop_30thAug-22-scaled.jpg'),(239614,41301,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/10/BE_Worshop_30thAug-22-scaled.jpg\";s:8:\"filesize\";i:512626;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104497;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-22-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155603;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38517;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84463;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-22-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222476;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-22-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:348079;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49195;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143265;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-22-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218793;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38462;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103399;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-22-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154395;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41331;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114740;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-22-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173799;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41198;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113407;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-22-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169997;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34616;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90756;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-22-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135112;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725016978\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-22.jpg\";}'),(239615,41302,'hide_hero','0'),(239616,41302,'_hide_hero','field_66a2380fcda39'),(239617,41302,'fft_hide_from_listings','0'),(239618,41302,'_fft_hide_from_listings','field_61f1320446ab2'),(239619,41302,'fft_page_format','default'),(239620,41302,'_fft_page_format','field_61ae213f1f218'),(239621,41302,'fft_hide_nav','0'),(239622,41302,'_fft_hide_nav','field_635bd5e43527c'),(239623,41302,'fft_hide_header_call_to_action','0'),(239624,41302,'_fft_hide_header_call_to_action','field_635bd6723527d'),(239625,41302,'fft_page_sitemap','0'),(239626,41302,'_fft_page_sitemap','field_61af9b34e8181'),(239627,41302,'blocks','a:6:{i:0;s:10:\"split_5050\";i:1;s:10:\"text_block\";i:2;s:4:\"tabs\";i:3;s:4:\"form\";i:4;s:13:\"step_timeline\";i:5;s:10:\"accordions\";}'),(239628,41302,'_blocks','field_6176696113096'),(239629,41302,'_thumbnail_id','41183'),(239630,41302,'__thumbnail_id','field_617570855ddaf'),(239631,41302,'hero_title',''),(239632,41302,'_hero_title','field_617571fe285e8'),(239633,41302,'hero_text',''),(239634,41302,'_hero_text','field_6175723c285e9'),(239635,41302,'hero_actions',''),(239636,41302,'_hero_actions','field_61757270285ea'),(239637,41302,'hero_style','default'),(239638,41302,'_hero_style','field_62051d9dc5324'),(239639,41302,'hero_image_pos_x','right'),(239640,41302,'_hero_image_pos_x','field_62ec3d05390bb'),(239641,41302,'hero_image_pos_y','top'),(239642,41302,'_hero_image_pos_y','field_62ec3d05390bc'),(239643,41302,'hero_image_pos',''),(239644,41302,'_hero_image_pos','field_62ec3d05390ba'),(239645,41302,'blocks_0_acfe_flexible_toggle',''),(239646,41302,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle');
INSERT INTO `6m7_postmeta` VALUES (239647,41302,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(239648,41302,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(239649,41302,'blocks_0_options_theme','#ffffff'),(239650,41302,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(239651,41302,'blocks_0_options_reverse','0'),(239652,41302,'_blocks_0_options_reverse','field_61768049bb8ac'),(239653,41302,'blocks_0_options',''),(239654,41302,'_blocks_0_options','field_617682517c334'),(239655,41302,'blocks_0_split_5050_image','41190'),(239656,41302,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(239657,41302,'blocks_0_split_5050_video',''),(239658,41302,'_blocks_0_split_5050_video','field_6239f3160848a'),(239659,41302,'blocks_0_split_5050_content_title',''),(239660,41302,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(239661,41302,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(239662,41302,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(239663,41302,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(239664,41302,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(239665,41302,'blocks_0_split_5050_content_actions',''),(239666,41302,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(239667,41302,'blocks_0_split_5050_content',''),(239668,41302,'_blocks_0_split_5050_content','field_61767afceb8ba'),(239669,41302,'blocks_5_acfe_flexible_toggle',''),(239670,41302,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(239671,41302,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(239672,41302,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(239673,41302,'blocks_5_options_theme','#ffffff'),(239674,41302,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(239675,41302,'blocks_5_options_state','0'),(239676,41302,'_blocks_5_options_state','field_6239fcb7508c5'),(239677,41302,'blocks_5_options',''),(239678,41302,'_blocks_5_options','field_6177e2991ac44'),(239679,41302,'blocks_5_content_title',''),(239680,41302,'_blocks_5_content_title','field_64d237e8bb1e2'),(239681,41302,'blocks_5_content_heading','FAQ\'s'),(239682,41302,'_blocks_5_content_heading','field_64d237e8bb1e3'),(239683,41302,'blocks_5_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(239684,41302,'_blocks_5_content_text','field_64d237e8bb1e4'),(239685,41302,'blocks_5_content_actions',''),(239686,41302,'_blocks_5_content_actions','field_64d237e8bb1e5'),(239687,41302,'blocks_5_content_align','left'),(239688,41302,'_blocks_5_content_align','field_64d2443e6b6aa'),(239689,41302,'blocks_5_content',''),(239690,41302,'_blocks_5_content','field_64d237e8bb1e1'),(239691,41302,'blocks_5_accordion_content','custom'),(239692,41302,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(239693,41302,'blocks_5_accordion_items_0_title','What is ELCAS?'),(239694,41302,'_blocks_5_accordion_items_0_title','field_6177e2991ac4d'),(239695,41302,'blocks_5_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(239696,41302,'_blocks_5_accordion_items_0_text','field_6177e2991ac4e'),(239697,41302,'blocks_5_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(239698,41302,'_blocks_5_accordion_items_1_title','field_6177e2991ac4d'),(239699,41302,'blocks_5_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(239700,41302,'_blocks_5_accordion_items_1_text','field_6177e2991ac4e'),(239701,41302,'blocks_5_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(239702,41302,'_blocks_5_accordion_items_2_title','field_6177e2991ac4d'),(239703,41302,'blocks_5_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(239704,41302,'_blocks_5_accordion_items_2_text','field_6177e2991ac4e'),(239705,41302,'blocks_5_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(239706,41302,'_blocks_5_accordion_items_3_title','field_6177e2991ac4d'),(239707,41302,'blocks_5_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(239708,41302,'_blocks_5_accordion_items_3_text','field_6177e2991ac4e'),(239709,41302,'blocks_5_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(239710,41302,'_blocks_5_accordion_items_4_title','field_6177e2991ac4d'),(239711,41302,'blocks_5_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(239712,41302,'_blocks_5_accordion_items_4_text','field_6177e2991ac4e'),(239713,41302,'blocks_5_accordion_items','5'),(239714,41302,'_blocks_5_accordion_items','field_6177e2991ac4c'),(239715,41302,'blocks_5_actions',''),(239716,41302,'_blocks_5_actions','field_61a746a817f7a'),(239717,41302,'blocks_1_acfe_flexible_toggle',''),(239718,41302,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(239719,41302,'blocks_1_acfe_flexible_layout_title','Text Block'),(239720,41302,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(239721,41302,'blocks_1_options_theme','#ffffff'),(239722,41302,'_blocks_1_options_theme','field_6176830e2ad17'),(239723,41302,'blocks_1_options',''),(239724,41302,'_blocks_1_options','field_6176830e2ad16'),(239725,41302,'blocks_1_text_block_heading','Why choose Biomechanics Education'),(239726,41302,'_blocks_1_text_block_heading','field_617669d413097'),(239727,41302,'blocks_1_text_block_content',''),(239728,41302,'_blocks_1_text_block_content','field_617669ec13098'),(239729,41302,'blocks_2_acfe_flexible_toggle',''),(239730,41302,'_blocks_2_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(239731,41302,'blocks_2_acfe_flexible_layout_title','Tabs'),(239732,41302,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(239733,41302,'blocks_2_options_theme','#ffffff'),(239734,41302,'_blocks_2_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(239735,41302,'blocks_2_options',''),(239736,41302,'_blocks_2_options','field_6177cfcd8140f'),(239737,41302,'blocks_2_tabs_0_tab_label','Specialist Training'),(239738,41302,'_blocks_2_tabs_0_tab_label','field_6177d0068141a'),(239739,41302,'blocks_2_tabs_0_tab_content_title',''),(239740,41302,'_blocks_2_tabs_0_tab_content_title','field_6177cfcd81414'),(239741,41302,'blocks_2_tabs_0_tab_content_heading','Specialist Training'),(239742,41302,'_blocks_2_tabs_0_tab_content_heading','field_6177cfcd81415'),(239743,41302,'blocks_2_tabs_0_tab_content_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(239744,41302,'_blocks_2_tabs_0_tab_content_text','field_6177cfcd81416'),(239745,41302,'blocks_2_tabs_0_tab_content_actions',''),(239746,41302,'_blocks_2_tabs_0_tab_content_actions','field_6177cfcd81417'),(239747,41302,'blocks_2_tabs_0_tab_content',''),(239748,41302,'_blocks_2_tabs_0_tab_content','field_6177cfcd81413'),(239749,41302,'blocks_2_tabs_0_tab_image','41301'),(239750,41302,'_blocks_2_tabs_0_tab_image','field_6177cfcd81412'),(239751,41302,'blocks_2_tabs_1_tab_label','Career Flexibility'),(239752,41302,'_blocks_2_tabs_1_tab_label','field_6177d0068141a'),(239753,41302,'blocks_2_tabs_1_tab_content_title',''),(239754,41302,'_blocks_2_tabs_1_tab_content_title','field_6177cfcd81414'),(239755,41302,'blocks_2_tabs_1_tab_content_heading','Career Flexibility'),(239756,41302,'_blocks_2_tabs_1_tab_content_heading','field_6177cfcd81415'),(239757,41302,'blocks_2_tabs_1_tab_content_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(239758,41302,'_blocks_2_tabs_1_tab_content_text','field_6177cfcd81416'),(239759,41302,'blocks_2_tabs_1_tab_content_actions',''),(239760,41302,'_blocks_2_tabs_1_tab_content_actions','field_6177cfcd81417'),(239761,41302,'blocks_2_tabs_1_tab_content',''),(239762,41302,'_blocks_2_tabs_1_tab_content','field_6177cfcd81413'),(239763,41302,'blocks_2_tabs_1_tab_image','40839'),(239764,41302,'_blocks_2_tabs_1_tab_image','field_6177cfcd81412'),(239765,41302,'blocks_2_tabs_2_tab_label','Recognised Qualification'),(239766,41302,'_blocks_2_tabs_2_tab_label','field_6177d0068141a'),(239767,41302,'blocks_2_tabs_2_tab_content_title',''),(239768,41302,'_blocks_2_tabs_2_tab_content_title','field_6177cfcd81414'),(239769,41302,'blocks_2_tabs_2_tab_content_heading','Recognised Qualification'),(239770,41302,'_blocks_2_tabs_2_tab_content_heading','field_6177cfcd81415'),(239771,41302,'blocks_2_tabs_2_tab_content_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(239772,41302,'_blocks_2_tabs_2_tab_content_text','field_6177cfcd81416'),(239773,41302,'blocks_2_tabs_2_tab_content_actions',''),(239774,41302,'_blocks_2_tabs_2_tab_content_actions','field_6177cfcd81417'),(239775,41302,'blocks_2_tabs_2_tab_content',''),(239776,41302,'_blocks_2_tabs_2_tab_content','field_6177cfcd81413'),(239777,41302,'blocks_2_tabs_2_tab_image','41300'),(239778,41302,'_blocks_2_tabs_2_tab_image','field_6177cfcd81412'),(239779,41302,'blocks_2_tabs_3_tab_label','Funding Available'),(239780,41302,'_blocks_2_tabs_3_tab_label','field_6177d0068141a'),(239781,41302,'blocks_2_tabs_3_tab_content_title',''),(239782,41302,'_blocks_2_tabs_3_tab_content_title','field_6177cfcd81414'),(239783,41302,'blocks_2_tabs_3_tab_content_heading','Funding Available'),(239784,41302,'_blocks_2_tabs_3_tab_content_heading','field_6177cfcd81415'),(239785,41302,'blocks_2_tabs_3_tab_content_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(239786,41302,'_blocks_2_tabs_3_tab_content_text','field_6177cfcd81416'),(239787,41302,'blocks_2_tabs_3_tab_content_actions',''),(239788,41302,'_blocks_2_tabs_3_tab_content_actions','field_6177cfcd81417'),(239789,41302,'blocks_2_tabs_3_tab_content',''),(239790,41302,'_blocks_2_tabs_3_tab_content','field_6177cfcd81413'),(239791,41302,'blocks_2_tabs_3_tab_image','41299'),(239792,41302,'_blocks_2_tabs_3_tab_image','field_6177cfcd81412'),(239793,41302,'blocks_2_tabs','4'),(239794,41302,'_blocks_2_tabs','field_6177cff281419'),(239795,41302,'blocks_3_acfe_flexible_toggle',''),(239796,41302,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(239797,41302,'blocks_3_acfe_flexible_layout_title','Form'),(239798,41302,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(239799,41302,'blocks_3_row_content_format','standard'),(239800,41302,'_blocks_3_row_content_format','field_6481ead962881'),(239801,41302,'blocks_3_row_content_title',''),(239802,41302,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(239803,41302,'blocks_3_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(239804,41302,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(239805,41302,'blocks_3_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(239806,41302,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(239807,41302,'blocks_3_row_content_actions',''),(239808,41302,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(239809,41302,'blocks_3_row_content',''),(239810,41302,'_blocks_3_row_content','field_61a0f5f5b3db0'),(239811,41302,'blocks_3_row_form','40394'),(239812,41302,'_blocks_3_row_form','field_61a4ff2c0b08e'),(239813,41302,'blocks_3_row_form_button_label',''),(239814,41302,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(239815,41302,'blocks_4_acfe_flexible_toggle',''),(239816,41302,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(239817,41302,'blocks_4_acfe_flexible_layout_title','Timeline'),(239818,41302,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(239819,41302,'blocks_4_options_theme','#ffffff'),(239820,41302,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(239821,41302,'blocks_4_options',''),(239822,41302,'_blocks_4_options','field_6177de53d1195'),(239823,41302,'blocks_4_timeline_content_title',''),(239824,41302,'_blocks_4_timeline_content_title','field_6177de53d1198'),(239825,41302,'blocks_4_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(239826,41302,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(239827,41302,'blocks_4_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(239828,41302,'_blocks_4_timeline_content_text','field_6177de53d119a'),(239829,41302,'blocks_4_timeline_content_actions',''),(239830,41302,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(239831,41302,'blocks_4_timeline_content',''),(239832,41302,'_blocks_4_timeline_content','field_6177de53d1197'),(239833,41302,'blocks_4_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(239834,41302,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(239835,41302,'blocks_4_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(239836,41302,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(239837,41302,'blocks_4_timeline_items_1_title','Send your fully completed form to ELCAS'),(239838,41302,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(239839,41302,'blocks_4_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(239840,41302,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(239841,41302,'blocks_4_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(239842,41302,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(239843,41302,'blocks_4_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(239844,41302,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(239845,41302,'blocks_4_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(239846,41302,'_blocks_4_timeline_items_3_title','field_6177de53d119f'),(239847,41302,'blocks_4_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(239848,41302,'_blocks_4_timeline_items_3_text','field_6177de53d11a0'),(239849,41302,'blocks_4_timeline_items','4'),(239850,41302,'_blocks_4_timeline_items','field_6177de53d119d'),(239851,41303,'hide_hero','0'),(239852,41303,'_hide_hero','field_66a2380fcda39'),(239853,41303,'hero_title',''),(239854,41303,'_hero_title','field_617571fe285e8'),(239855,41303,'hero_text',''),(239856,41303,'_hero_text','field_6175723c285e9'),(239857,41303,'hero_actions',''),(239858,41303,'_hero_actions','field_61757270285ea'),(239859,41303,'hero_style','default'),(239860,41303,'_hero_style','field_62051d9dc5324'),(239861,41303,'_thumbnail_id','41183'),(239862,41303,'__thumbnail_id','field_617570855ddaf'),(239863,41303,'hero_image_pos_x','right'),(239864,41303,'_hero_image_pos_x','field_62ec3d05390bb'),(239865,41303,'hero_image_pos_y','top'),(239866,41303,'_hero_image_pos_y','field_62ec3d05390bc'),(239867,41303,'hero_image_pos',''),(239868,41303,'_hero_image_pos','field_62ec3d05390ba'),(239869,41303,'fft_hide_from_listings','0'),(239870,41303,'_fft_hide_from_listings','field_61f1320446ab2'),(239871,41303,'fft_page_format','default'),(239872,41303,'_fft_page_format','field_61ae213f1f218'),(239873,41303,'fft_hide_nav','0'),(239874,41303,'_fft_hide_nav','field_635bd5e43527c'),(239875,41303,'fft_hide_header_call_to_action','0'),(239876,41303,'_fft_hide_header_call_to_action','field_635bd6723527d'),(239877,41303,'fft_page_sitemap','0'),(239878,41303,'_fft_page_sitemap','field_61af9b34e8181'),(239879,41303,'blocks_0_acfe_flexible_toggle',''),(239880,41303,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(239881,41303,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(239882,41303,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(239883,41303,'blocks_0_options_theme','#ffffff'),(239884,41303,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(239885,41303,'blocks_0_options_reverse','0'),(239886,41303,'_blocks_0_options_reverse','field_61768049bb8ac'),(239887,41303,'blocks_0_options',''),(239888,41303,'_blocks_0_options','field_617682517c334'),(239889,41303,'blocks_0_split_5050_image','41190'),(239890,41303,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(239891,41303,'blocks_0_split_5050_video',''),(239892,41303,'_blocks_0_split_5050_video','field_6239f3160848a'),(239893,41303,'blocks_0_split_5050_content_title',''),(239894,41303,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(239895,41303,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(239896,41303,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(239897,41303,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(239898,41303,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(239899,41303,'blocks_0_split_5050_content_actions',''),(239900,41303,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(239901,41303,'blocks_0_split_5050_content',''),(239902,41303,'_blocks_0_split_5050_content','field_61767afceb8ba'),(239903,41303,'blocks_1_acfe_flexible_toggle',''),(239904,41303,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(239905,41303,'blocks_1_acfe_flexible_layout_title','Text Block'),(239906,41303,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(239907,41303,'blocks_1_options_theme','#ffffff'),(239908,41303,'_blocks_1_options_theme','field_6176830e2ad17'),(239909,41303,'blocks_1_options',''),(239910,41303,'_blocks_1_options','field_6176830e2ad16'),(239911,41303,'blocks_1_text_block_heading','Why choose Biomechanics Education'),(239912,41303,'_blocks_1_text_block_heading','field_617669d413097'),(239913,41303,'blocks_1_text_block_content',''),(239914,41303,'_blocks_1_text_block_content','field_617669ec13098'),(239915,41303,'blocks_2_acfe_flexible_toggle',''),(239916,41303,'_blocks_2_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(239917,41303,'blocks_2_acfe_flexible_layout_title','Tabs'),(239918,41303,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(239919,41303,'blocks_2_options_theme','#ffffff'),(239920,41303,'_blocks_2_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(239921,41303,'blocks_2_options',''),(239922,41303,'_blocks_2_options','field_6177cfcd8140f'),(239923,41303,'blocks_2_tabs_0_tab_label','Specialist Training'),(239924,41303,'_blocks_2_tabs_0_tab_label','field_6177d0068141a'),(239925,41303,'blocks_2_tabs_0_tab_content_title',''),(239926,41303,'_blocks_2_tabs_0_tab_content_title','field_6177cfcd81414'),(239927,41303,'blocks_2_tabs_0_tab_content_heading','Specialist Training'),(239928,41303,'_blocks_2_tabs_0_tab_content_heading','field_6177cfcd81415'),(239929,41303,'blocks_2_tabs_0_tab_content_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(239930,41303,'_blocks_2_tabs_0_tab_content_text','field_6177cfcd81416'),(239931,41303,'blocks_2_tabs_0_tab_content_actions',''),(239932,41303,'_blocks_2_tabs_0_tab_content_actions','field_6177cfcd81417'),(239933,41303,'blocks_2_tabs_0_tab_content',''),(239934,41303,'_blocks_2_tabs_0_tab_content','field_6177cfcd81413'),(239935,41303,'blocks_2_tabs_0_tab_image','41301'),(239936,41303,'_blocks_2_tabs_0_tab_image','field_6177cfcd81412'),(239937,41303,'blocks_2_tabs_1_tab_label','Career Flexibility'),(239938,41303,'_blocks_2_tabs_1_tab_label','field_6177d0068141a'),(239939,41303,'blocks_2_tabs_1_tab_content_title',''),(239940,41303,'_blocks_2_tabs_1_tab_content_title','field_6177cfcd81414'),(239941,41303,'blocks_2_tabs_1_tab_content_heading','Career Flexibility'),(239942,41303,'_blocks_2_tabs_1_tab_content_heading','field_6177cfcd81415'),(239943,41303,'blocks_2_tabs_1_tab_content_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(239944,41303,'_blocks_2_tabs_1_tab_content_text','field_6177cfcd81416'),(239945,41303,'blocks_2_tabs_1_tab_content_actions',''),(239946,41303,'_blocks_2_tabs_1_tab_content_actions','field_6177cfcd81417'),(239947,41303,'blocks_2_tabs_1_tab_content',''),(239948,41303,'_blocks_2_tabs_1_tab_content','field_6177cfcd81413'),(239949,41303,'blocks_2_tabs_1_tab_image','40839'),(239950,41303,'_blocks_2_tabs_1_tab_image','field_6177cfcd81412'),(239951,41303,'blocks_2_tabs_2_tab_label','Recognised Qualification'),(239952,41303,'_blocks_2_tabs_2_tab_label','field_6177d0068141a'),(239953,41303,'blocks_2_tabs_2_tab_content_title',''),(239954,41303,'_blocks_2_tabs_2_tab_content_title','field_6177cfcd81414'),(239955,41303,'blocks_2_tabs_2_tab_content_heading','Recognised Qualification'),(239956,41303,'_blocks_2_tabs_2_tab_content_heading','field_6177cfcd81415'),(239957,41303,'blocks_2_tabs_2_tab_content_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(239958,41303,'_blocks_2_tabs_2_tab_content_text','field_6177cfcd81416'),(239959,41303,'blocks_2_tabs_2_tab_content_actions',''),(239960,41303,'_blocks_2_tabs_2_tab_content_actions','field_6177cfcd81417'),(239961,41303,'blocks_2_tabs_2_tab_content',''),(239962,41303,'_blocks_2_tabs_2_tab_content','field_6177cfcd81413'),(239963,41303,'blocks_2_tabs_2_tab_image','41300'),(239964,41303,'_blocks_2_tabs_2_tab_image','field_6177cfcd81412'),(239965,41303,'blocks_2_tabs_3_tab_label','Funding Available'),(239966,41303,'_blocks_2_tabs_3_tab_label','field_6177d0068141a'),(239967,41303,'blocks_2_tabs_3_tab_content_title',''),(239968,41303,'_blocks_2_tabs_3_tab_content_title','field_6177cfcd81414'),(239969,41303,'blocks_2_tabs_3_tab_content_heading','Funding Available'),(239970,41303,'_blocks_2_tabs_3_tab_content_heading','field_6177cfcd81415'),(239971,41303,'blocks_2_tabs_3_tab_content_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(239972,41303,'_blocks_2_tabs_3_tab_content_text','field_6177cfcd81416'),(239973,41303,'blocks_2_tabs_3_tab_content_actions',''),(239974,41303,'_blocks_2_tabs_3_tab_content_actions','field_6177cfcd81417'),(239975,41303,'blocks_2_tabs_3_tab_content',''),(239976,41303,'_blocks_2_tabs_3_tab_content','field_6177cfcd81413'),(239977,41303,'blocks_2_tabs_3_tab_image','41299'),(239978,41303,'_blocks_2_tabs_3_tab_image','field_6177cfcd81412'),(239979,41303,'blocks_2_tabs','4'),(239980,41303,'_blocks_2_tabs','field_6177cff281419'),(239981,41303,'blocks_3_acfe_flexible_toggle',''),(239982,41303,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(239983,41303,'blocks_3_acfe_flexible_layout_title','Form'),(239984,41303,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(239985,41303,'blocks_3_row_content_format','standard'),(239986,41303,'_blocks_3_row_content_format','field_6481ead962881'),(239987,41303,'blocks_3_row_content_title',''),(239988,41303,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(239989,41303,'blocks_3_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(239990,41303,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(239991,41303,'blocks_3_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(239992,41303,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(239993,41303,'blocks_3_row_content_actions',''),(239994,41303,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(239995,41303,'blocks_3_row_content',''),(239996,41303,'_blocks_3_row_content','field_61a0f5f5b3db0'),(239997,41303,'blocks_3_row_form','40394'),(239998,41303,'_blocks_3_row_form','field_61a4ff2c0b08e'),(239999,41303,'blocks_3_row_form_button_label',''),(240000,41303,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(240001,41303,'blocks_4_acfe_flexible_toggle',''),(240002,41303,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(240003,41303,'blocks_4_acfe_flexible_layout_title','Timeline'),(240004,41303,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(240005,41303,'blocks_4_options_theme','#ffffff'),(240006,41303,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(240007,41303,'blocks_4_options',''),(240008,41303,'_blocks_4_options','field_6177de53d1195'),(240009,41303,'blocks_4_timeline_content_title',''),(240010,41303,'_blocks_4_timeline_content_title','field_6177de53d1198'),(240011,41303,'blocks_4_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(240012,41303,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(240013,41303,'blocks_4_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(240014,41303,'_blocks_4_timeline_content_text','field_6177de53d119a'),(240015,41303,'blocks_4_timeline_content_actions',''),(240016,41303,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(240017,41303,'blocks_4_timeline_content',''),(240018,41303,'_blocks_4_timeline_content','field_6177de53d1197'),(240019,41303,'blocks_4_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(240020,41303,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(240021,41303,'blocks_4_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(240022,41303,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(240023,41303,'blocks_4_timeline_items_1_title','Send your fully completed form to ELCAS'),(240024,41303,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(240025,41303,'blocks_4_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(240026,41303,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(240027,41303,'blocks_4_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(240028,41303,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(240029,41303,'blocks_4_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(240030,41303,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(240031,41303,'blocks_4_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(240032,41303,'_blocks_4_timeline_items_3_title','field_6177de53d119f'),(240033,41303,'blocks_4_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(240034,41303,'_blocks_4_timeline_items_3_text','field_6177de53d11a0'),(240035,41303,'blocks_4_timeline_items','4'),(240036,41303,'_blocks_4_timeline_items','field_6177de53d119d'),(240037,41303,'blocks_5_acfe_flexible_toggle',''),(240038,41303,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(240039,41303,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(240040,41303,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(240041,41303,'blocks_5_options_theme','#ffffff'),(240042,41303,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(240043,41303,'blocks_5_options_state','0'),(240044,41303,'_blocks_5_options_state','field_6239fcb7508c5'),(240045,41303,'blocks_5_options',''),(240046,41303,'_blocks_5_options','field_6177e2991ac44'),(240047,41303,'blocks_5_content_title',''),(240048,41303,'_blocks_5_content_title','field_64d237e8bb1e2'),(240049,41303,'blocks_5_content_heading','FAQ\'s'),(240050,41303,'_blocks_5_content_heading','field_64d237e8bb1e3'),(240051,41303,'blocks_5_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(240052,41303,'_blocks_5_content_text','field_64d237e8bb1e4'),(240053,41303,'blocks_5_content_actions',''),(240054,41303,'_blocks_5_content_actions','field_64d237e8bb1e5'),(240055,41303,'blocks_5_content_align','left'),(240056,41303,'_blocks_5_content_align','field_64d2443e6b6aa'),(240057,41303,'blocks_5_content',''),(240058,41303,'_blocks_5_content','field_64d237e8bb1e1'),(240059,41303,'blocks_5_accordion_content','custom'),(240060,41303,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(240061,41303,'blocks_5_accordion_items_0_title','What is ELCAS?'),(240062,41303,'_blocks_5_accordion_items_0_title','field_6177e2991ac4d'),(240063,41303,'blocks_5_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(240064,41303,'_blocks_5_accordion_items_0_text','field_6177e2991ac4e'),(240065,41303,'blocks_5_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(240066,41303,'_blocks_5_accordion_items_1_title','field_6177e2991ac4d'),(240067,41303,'blocks_5_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(240068,41303,'_blocks_5_accordion_items_1_text','field_6177e2991ac4e'),(240069,41303,'blocks_5_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(240070,41303,'_blocks_5_accordion_items_2_title','field_6177e2991ac4d'),(240071,41303,'blocks_5_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(240072,41303,'_blocks_5_accordion_items_2_text','field_6177e2991ac4e'),(240073,41303,'blocks_5_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(240074,41303,'_blocks_5_accordion_items_3_title','field_6177e2991ac4d'),(240075,41303,'blocks_5_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(240076,41303,'_blocks_5_accordion_items_3_text','field_6177e2991ac4e'),(240077,41303,'blocks_5_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(240078,41303,'_blocks_5_accordion_items_4_title','field_6177e2991ac4d'),(240079,41303,'blocks_5_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(240080,41303,'_blocks_5_accordion_items_4_text','field_6177e2991ac4e'),(240081,41303,'blocks_5_accordion_items','5'),(240082,41303,'_blocks_5_accordion_items','field_6177e2991ac4c'),(240083,41303,'blocks_5_actions',''),(240084,41303,'_blocks_5_actions','field_61a746a817f7a'),(240085,41303,'blocks','a:6:{i:0;s:10:\"split_5050\";i:1;s:10:\"text_block\";i:2;s:4:\"tabs\";i:3;s:4:\"form\";i:4;s:13:\"step_timeline\";i:5;s:10:\"accordions\";}'),(240086,41303,'_blocks','field_6176696113096'),(240087,39263,'_yoast_wpseo_inclusive_language_score','90'),(240088,41304,'hide_hero','0'),(240089,41304,'_hide_hero','field_66a2380fcda39'),(240090,41304,'hero_title','How to Become a Biomechanics Coach'),(240091,41304,'_hero_title','field_617571fe285e8'),(240092,41304,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(240093,41304,'_hero_text','field_6175723c285e9'),(240094,41304,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39263-3\";s:6:\"target\";s:0:\"\";}'),(240095,41304,'_hero_actions_0_button','field_61757281285eb'),(240096,41304,'hero_actions','1'),(240097,41304,'_hero_actions','field_61757270285ea'),(240098,41304,'hero_style','default'),(240099,41304,'_hero_style','field_62051d9dc5324'),(240100,41304,'_thumbnail_id','39454'),(240101,41304,'__thumbnail_id','field_617570855ddaf'),(240102,41304,'hero_image_pos_x','right'),(240103,41304,'_hero_image_pos_x','field_62ec3d05390bb'),(240104,41304,'hero_image_pos_y','top'),(240105,41304,'_hero_image_pos_y','field_62ec3d05390bc'),(240106,41304,'hero_image_pos',''),(240107,41304,'_hero_image_pos','field_62ec3d05390ba'),(240108,41304,'fft_hide_from_listings','0'),(240109,41304,'_fft_hide_from_listings','field_61f1320446ab2'),(240110,41304,'fft_page_format','default'),(240111,41304,'_fft_page_format','field_61ae213f1f218'),(240112,41304,'fft_hide_nav','0'),(240113,41304,'_fft_hide_nav','field_635bd5e43527c'),(240114,41304,'fft_hide_header_call_to_action','0'),(240115,41304,'_fft_hide_header_call_to_action','field_635bd6723527d'),(240116,41304,'fft_page_sitemap','0'),(240117,41304,'_fft_page_sitemap','field_61af9b34e8181'),(240118,41304,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(240119,41304,'_blocks','field_6176696113096'),(240120,41304,'blocks_0_acfe_flexible_toggle',''),(240121,41304,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(240122,41304,'blocks_0_acfe_flexible_layout_title','Template'),(240123,41304,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(240124,41304,'blocks_0_template','39087'),(240125,41304,'_blocks_0_template','field_617bdd570fe01'),(240126,41304,'blocks_8_acfe_flexible_toggle','1'),(240127,41304,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(240128,41304,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(240129,41304,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(240130,41304,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(240131,41304,'_blocks_8_content','field_6193c9b5eac84'),(240132,41304,'blocks_1_acfe_flexible_toggle',''),(240133,41304,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(240134,41304,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(240135,41304,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(240136,41304,'blocks_1_options_theme','#ffffff'),(240137,41304,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(240138,41304,'blocks_1_options_reverse','0'),(240139,41304,'_blocks_1_options_reverse','field_61768049bb8ac'),(240140,41304,'blocks_1_options',''),(240141,41304,'_blocks_1_options','field_617682517c334'),(240142,41304,'blocks_1_split_5050_image','39623'),(240143,41304,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(240144,41304,'blocks_1_split_5050_video',''),(240145,41304,'_blocks_1_split_5050_video','field_6239f3160848a'),(240146,41304,'blocks_1_split_5050_content_title',''),(240147,41304,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(240148,41304,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(240149,41304,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(240150,41304,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of common modern ailments within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(240151,41304,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(240152,41304,'blocks_1_split_5050_content_actions',''),(240153,41304,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(240154,41304,'blocks_1_split_5050_content',''),(240155,41304,'_blocks_1_split_5050_content','field_61767afceb8ba'),(240156,41304,'blocks_4_acfe_flexible_toggle',''),(240157,41304,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(240158,41304,'blocks_4_acfe_flexible_layout_title','Tabs'),(240159,41304,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(240160,41304,'blocks_4_options_theme','#ffffff'),(240161,41304,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(240162,41304,'blocks_4_options',''),(240163,41304,'_blocks_4_options','field_6177cfcd8140f'),(240164,41304,'blocks_4_tabs_0_tab_label','What will I learn ?'),(240165,41304,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(240166,41304,'blocks_4_tabs_0_tab_content_title',''),(240167,41304,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(240168,41304,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(240169,41304,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(240170,41304,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(240171,41304,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(240172,41304,'blocks_4_tabs_0_tab_content_actions',''),(240173,41304,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(240174,41304,'blocks_4_tabs_0_tab_content',''),(240175,41304,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(240176,41304,'blocks_4_tabs_0_tab_image','39076'),(240177,41304,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(240178,41304,'blocks_4_tabs_1_tab_label','What do I need ?'),(240179,41304,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(240180,41304,'blocks_4_tabs_1_tab_content_title',''),(240181,41304,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(240182,41304,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(240183,41304,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(240184,41304,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(240185,41304,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(240186,41304,'blocks_4_tabs_1_tab_content_actions',''),(240187,41304,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(240188,41304,'blocks_4_tabs_1_tab_content',''),(240189,41304,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(240190,41304,'blocks_4_tabs_1_tab_image','39223'),(240191,41304,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(240192,41304,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(240193,41304,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(240194,41304,'blocks_4_tabs_2_tab_content_title',''),(240195,41304,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(240196,41304,'blocks_4_tabs_2_tab_content_heading','Locations'),(240197,41304,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(240198,41304,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(240199,41304,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(240200,41304,'blocks_4_tabs_2_tab_content_actions',''),(240201,41304,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(240202,41304,'blocks_4_tabs_2_tab_content',''),(240203,41304,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(240204,41304,'blocks_4_tabs_2_tab_image','39224'),(240205,41304,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(240206,41304,'blocks_4_tabs','3'),(240207,41304,'_blocks_4_tabs','field_6177cff281419'),(240208,41304,'blocks_5_acfe_flexible_toggle',''),(240209,41304,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(240210,41304,'blocks_5_acfe_flexible_layout_title','Text Block'),(240211,41304,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(240212,41304,'blocks_5_options_theme','#b61234'),(240213,41304,'_blocks_5_options_theme','field_6176830e2ad17'),(240214,41304,'blocks_5_options',''),(240215,41304,'_blocks_5_options','field_6176830e2ad16'),(240216,41304,'blocks_5_text_block_heading','Fees & Funding Options'),(240217,41304,'_blocks_5_text_block_heading','field_617669d413097'),(240218,41304,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(240219,41304,'_blocks_5_text_block_content','field_617669ec13098'),(240220,41304,'blocks_6_acfe_flexible_toggle',''),(240221,41304,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(240222,41304,'blocks_6_acfe_flexible_layout_title','Icons'),(240223,41304,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(240224,41304,'blocks_6_options_theme','#b61234'),(240225,41304,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(240226,41304,'blocks_6_options_format','row'),(240227,41304,'_blocks_6_options_format','field_64bfde9a90690'),(240228,41304,'blocks_6_options',''),(240229,41304,'_blocks_6_options','field_64bfdd9b90684'),(240230,41304,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(240231,41304,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(240232,41304,'blocks_6_icon_row_items_0_label','Pay in Full'),(240233,41304,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(240234,41304,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(240235,41304,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(240236,41304,'blocks_6_icon_row_items_1_icon','finance.svg'),(240237,41304,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(240238,41304,'blocks_6_icon_row_items_1_label','0% finance'),(240239,41304,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(240240,41304,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(240241,41304,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(240242,41304,'blocks_6_icon_row_items_2_icon','deposit.svg'),(240243,41304,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(240244,41304,'blocks_6_icon_row_items_2_label','Deposit & balance'),(240245,41304,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(240246,41304,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(240247,41304,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(240248,41304,'blocks_6_icon_row_items','3'),(240249,41304,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(240250,41304,'blocks_7_acfe_flexible_toggle',''),(240251,41304,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(240252,41304,'blocks_7_acfe_flexible_layout_title','Steps'),(240253,41304,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(240254,41304,'blocks_7_row_content_title',''),(240255,41304,'_blocks_7_row_content_title','field_64888cd1e26e0'),(240256,41304,'blocks_7_row_content_heading','Benefits of training with us'),(240257,41304,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(240258,41304,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(240259,41304,'_blocks_7_row_content_text','field_64888ce2e26e2'),(240260,41304,'blocks_7_row_content_actions',''),(240261,41304,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(240262,41304,'blocks_7_row_content',''),(240263,41304,'_blocks_7_row_content','field_64888cb0e26df'),(240264,41304,'blocks_7_steps_0_icon','progression.svg'),(240265,41304,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(240266,41304,'blocks_7_steps_0_title','Earning potential'),(240267,41304,'_blocks_7_steps_0_title','field_64888d94e26e7'),(240268,41304,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(240269,41304,'_blocks_7_steps_0_text','field_64888d99e26e8'),(240270,41304,'blocks_7_steps_1_icon','support.svg'),(240271,41304,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(240272,41304,'blocks_7_steps_1_title','Lifetime Learning Promise'),(240273,41304,'_blocks_7_steps_1_title','field_64888d94e26e7'),(240274,41304,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(240275,41304,'_blocks_7_steps_1_text','field_64888d99e26e8'),(240276,41304,'blocks_7_steps_2_icon','qualification.svg'),(240277,41304,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(240278,41304,'blocks_7_steps_2_title','Evidence based hands on learning'),(240279,41304,'_blocks_7_steps_2_title','field_64888d94e26e7'),(240280,41304,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(240281,41304,'_blocks_7_steps_2_text','field_64888d99e26e8'),(240282,41304,'blocks_7_steps_3_icon','leaders.svg'),(240283,41304,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(240284,41304,'blocks_7_steps_3_title','Stand out from the crowd'),(240285,41304,'_blocks_7_steps_3_title','field_64888d94e26e7'),(240286,41304,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(240287,41304,'_blocks_7_steps_3_text','field_64888d99e26e8'),(240288,41304,'blocks_7_steps','4'),(240289,41304,'_blocks_7_steps','field_64888d44e26e5'),(240290,41304,'blocks_2_acfe_flexible_toggle',''),(240291,41304,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(240292,41304,'blocks_2_acfe_flexible_layout_title','Form'),(240293,41304,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(240294,41304,'blocks_2_row_content_format','standard'),(240295,41304,'_blocks_2_row_content_format','field_6481ead962881'),(240296,41304,'blocks_2_row_content_title','Ready to get started?'),(240297,41304,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(240298,41304,'blocks_2_row_content_heading','Enquire Today!'),(240299,41304,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(240300,41304,'blocks_2_row_content_text','When you fill out the form you\'ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(240301,41304,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(240302,41304,'blocks_2_row_content_actions',''),(240303,41304,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(240304,41304,'blocks_2_row_content',''),(240305,41304,'_blocks_2_row_content','field_61a0f5f5b3db0'),(240306,41304,'blocks_2_row_form','40417'),(240307,41304,'_blocks_2_row_form','field_61a4ff2c0b08e'),(240308,41304,'blocks_2_row_form_button_label',''),(240309,41304,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(240310,41304,'blocks_3_acfe_flexible_toggle',''),(240311,41304,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(240312,41304,'blocks_3_acfe_flexible_layout_title','Video'),(240313,41304,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(240314,41304,'blocks_3_size','large'),(240315,41304,'_blocks_3_size','field_6487038f297c1'),(240316,41304,'blocks_3_row_content_title',''),(240317,41304,'_blocks_3_row_content_title','field_64870132a865d'),(240318,41304,'blocks_3_row_content_heading',''),(240319,41304,'_blocks_3_row_content_heading','field_64870142a865e'),(240320,41304,'blocks_3_row_content_text',''),(240321,41304,'_blocks_3_row_content_text','field_64870148a865f'),(240322,41304,'blocks_3_row_content',''),(240323,41304,'_blocks_3_row_content','field_6487008ba865c'),(240324,41304,'blocks_3_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(240325,41304,'_blocks_3_video_src','field_6193c4a98ec07'),(240326,41304,'blocks_3_video_thumbnail',''),(240327,41304,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(240328,41304,'blocks_9_acfe_flexible_toggle',''),(240329,41304,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(240330,41304,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(240331,41304,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(240332,41304,'blocks_9_options_theme','#f5f5f5'),(240333,41304,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(240334,41304,'blocks_9_options_reverse','0'),(240335,41304,'_blocks_9_options_reverse','field_61768049bb8ac'),(240336,41304,'blocks_9_options',''),(240337,41304,'_blocks_9_options','field_617682517c334'),(240338,41304,'blocks_9_split_5050_image','40920'),(240339,41304,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(240340,41304,'blocks_9_split_5050_video',''),(240341,41304,'_blocks_9_split_5050_video','field_6239f3160848a'),(240342,41304,'blocks_9_split_5050_content_title',''),(240343,41304,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(240344,41304,'blocks_9_split_5050_content_heading','Why study this course ?'),(240345,41304,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(240346,41304,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(240347,41304,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(240348,41304,'blocks_9_split_5050_content_actions',''),(240349,41304,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(240350,41304,'blocks_9_split_5050_content',''),(240351,41304,'_blocks_9_split_5050_content','field_61767afceb8ba'),(240352,41304,'blocks_10_acfe_flexible_toggle',''),(240353,41304,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(240354,41304,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(240355,41304,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(240356,41304,'blocks_10_testimonial_slider_content_title',''),(240357,41304,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(240358,41304,'blocks_10_testimonial_slider_content_heading','Testimonials'),(240359,41304,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(240360,41304,'blocks_10_testimonial_slider_content_text',''),(240361,41304,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(240362,41304,'blocks_10_testimonial_slider_content_actions',''),(240363,41304,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(240364,41304,'blocks_10_testimonial_slider_content',''),(240365,41304,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(240366,41304,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(240367,41304,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(240368,41304,'blocks_10_testimonial_slider_ambassador_bool','0'),(240369,41304,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(240370,41304,'blocks_11_acfe_flexible_toggle',''),(240371,41304,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(240372,41304,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(240373,41304,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(240374,41304,'blocks_11_options_theme','#ffffff'),(240375,41304,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(240376,41304,'blocks_11_options_state','0'),(240377,41304,'_blocks_11_options_state','field_6239fcb7508c5'),(240378,41304,'blocks_11_options',''),(240379,41304,'_blocks_11_options','field_6177e2991ac44'),(240380,41304,'blocks_11_content_title',''),(240381,41304,'_blocks_11_content_title','field_64d237e8bb1e2'),(240382,41304,'blocks_11_content_heading','Frequently asked questions '),(240383,41304,'_blocks_11_content_heading','field_64d237e8bb1e3'),(240384,41304,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(240385,41304,'_blocks_11_content_text','field_64d237e8bb1e4'),(240386,41304,'blocks_11_content_actions',''),(240387,41304,'_blocks_11_content_actions','field_64d237e8bb1e5'),(240388,41304,'blocks_11_content_align','left'),(240389,41304,'_blocks_11_content_align','field_64d2443e6b6aa'),(240390,41304,'blocks_11_content',''),(240391,41304,'_blocks_11_content','field_64d237e8bb1e1'),(240392,41304,'blocks_11_accordion_content','faqs'),(240393,41304,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(240394,41304,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(240395,41304,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(240396,41304,'blocks_11_actions',''),(240397,41304,'_blocks_11_actions','field_61a746a817f7a'),(240398,41305,'hide_hero','0'),(240399,41305,'_hide_hero','field_66a2380fcda39'),(240400,41305,'hero_title','How to Become a Biomechanics Coach'),(240401,41305,'_hero_title','field_617571fe285e8'),(240402,41305,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(240403,41305,'_hero_text','field_6175723c285e9'),(240404,41305,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39263-3\";s:6:\"target\";s:0:\"\";}'),(240405,41305,'_hero_actions_0_button','field_61757281285eb'),(240406,41305,'hero_actions','1'),(240407,41305,'_hero_actions','field_61757270285ea'),(240408,41305,'hero_style','default'),(240409,41305,'_hero_style','field_62051d9dc5324'),(240410,41305,'_thumbnail_id','39454'),(240411,41305,'__thumbnail_id','field_617570855ddaf'),(240412,41305,'hero_image_pos_x','right'),(240413,41305,'_hero_image_pos_x','field_62ec3d05390bb'),(240414,41305,'hero_image_pos_y','top'),(240415,41305,'_hero_image_pos_y','field_62ec3d05390bc'),(240416,41305,'hero_image_pos',''),(240417,41305,'_hero_image_pos','field_62ec3d05390ba'),(240418,41305,'fft_hide_from_listings','0'),(240419,41305,'_fft_hide_from_listings','field_61f1320446ab2'),(240420,41305,'fft_page_format','default'),(240421,41305,'_fft_page_format','field_61ae213f1f218'),(240422,41305,'fft_hide_nav','0'),(240423,41305,'_fft_hide_nav','field_635bd5e43527c'),(240424,41305,'fft_hide_header_call_to_action','0'),(240425,41305,'_fft_hide_header_call_to_action','field_635bd6723527d'),(240426,41305,'fft_page_sitemap','0'),(240427,41305,'_fft_page_sitemap','field_61af9b34e8181'),(240428,41305,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(240429,41305,'_blocks','field_6176696113096'),(240430,41305,'blocks_0_acfe_flexible_toggle',''),(240431,41305,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(240432,41305,'blocks_0_acfe_flexible_layout_title','Template'),(240433,41305,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(240434,41305,'blocks_0_template','39087'),(240435,41305,'_blocks_0_template','field_617bdd570fe01'),(240436,41305,'blocks_8_acfe_flexible_toggle','1'),(240437,41305,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(240438,41305,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(240439,41305,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(240440,41305,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(240441,41305,'_blocks_8_content','field_6193c9b5eac84'),(240442,41305,'blocks_1_acfe_flexible_toggle',''),(240443,41305,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(240444,41305,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(240445,41305,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(240446,41305,'blocks_1_options_theme','#ffffff'),(240447,41305,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(240448,41305,'blocks_1_options_reverse','0'),(240449,41305,'_blocks_1_options_reverse','field_61768049bb8ac'),(240450,41305,'blocks_1_options',''),(240451,41305,'_blocks_1_options','field_617682517c334'),(240452,41305,'blocks_1_split_5050_image','39623'),(240453,41305,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(240454,41305,'blocks_1_split_5050_video',''),(240455,41305,'_blocks_1_split_5050_video','field_6239f3160848a'),(240456,41305,'blocks_1_split_5050_content_title',''),(240457,41305,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(240458,41305,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(240459,41305,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(240460,41305,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of common modern ailments within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(240461,41305,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(240462,41305,'blocks_1_split_5050_content_actions',''),(240463,41305,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(240464,41305,'blocks_1_split_5050_content',''),(240465,41305,'_blocks_1_split_5050_content','field_61767afceb8ba'),(240466,41305,'blocks_4_acfe_flexible_toggle',''),(240467,41305,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(240468,41305,'blocks_4_acfe_flexible_layout_title','Tabs'),(240469,41305,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(240470,41305,'blocks_4_options_theme','#ffffff'),(240471,41305,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(240472,41305,'blocks_4_options',''),(240473,41305,'_blocks_4_options','field_6177cfcd8140f'),(240474,41305,'blocks_4_tabs_0_tab_label','What will I learn ?'),(240475,41305,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(240476,41305,'blocks_4_tabs_0_tab_content_title',''),(240477,41305,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(240478,41305,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(240479,41305,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(240480,41305,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health</li>\r\n</ul>'),(240481,41305,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(240482,41305,'blocks_4_tabs_0_tab_content_actions',''),(240483,41305,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(240484,41305,'blocks_4_tabs_0_tab_content',''),(240485,41305,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(240486,41305,'blocks_4_tabs_0_tab_image','39076'),(240487,41305,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(240488,41305,'blocks_4_tabs_1_tab_label','What do I need ?'),(240489,41305,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(240490,41305,'blocks_4_tabs_1_tab_content_title',''),(240491,41305,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(240492,41305,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(240493,41305,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(240494,41305,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(240495,41305,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(240496,41305,'blocks_4_tabs_1_tab_content_actions',''),(240497,41305,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(240498,41305,'blocks_4_tabs_1_tab_content',''),(240499,41305,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(240500,41305,'blocks_4_tabs_1_tab_image','39223'),(240501,41305,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(240502,41305,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(240503,41305,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(240504,41305,'blocks_4_tabs_2_tab_content_title',''),(240505,41305,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(240506,41305,'blocks_4_tabs_2_tab_content_heading','Locations'),(240507,41305,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(240508,41305,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(240509,41305,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(240510,41305,'blocks_4_tabs_2_tab_content_actions',''),(240511,41305,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(240512,41305,'blocks_4_tabs_2_tab_content',''),(240513,41305,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(240514,41305,'blocks_4_tabs_2_tab_image','39224'),(240515,41305,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(240516,41305,'blocks_4_tabs','3'),(240517,41305,'_blocks_4_tabs','field_6177cff281419'),(240518,41305,'blocks_5_acfe_flexible_toggle',''),(240519,41305,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(240520,41305,'blocks_5_acfe_flexible_layout_title','Text Block'),(240521,41305,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(240522,41305,'blocks_5_options_theme','#b61234'),(240523,41305,'_blocks_5_options_theme','field_6176830e2ad17'),(240524,41305,'blocks_5_options',''),(240525,41305,'_blocks_5_options','field_6176830e2ad16'),(240526,41305,'blocks_5_text_block_heading','Fees & Funding Options'),(240527,41305,'_blocks_5_text_block_heading','field_617669d413097'),(240528,41305,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(240529,41305,'_blocks_5_text_block_content','field_617669ec13098'),(240530,41305,'blocks_6_acfe_flexible_toggle',''),(240531,41305,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(240532,41305,'blocks_6_acfe_flexible_layout_title','Icons'),(240533,41305,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(240534,41305,'blocks_6_options_theme','#b61234'),(240535,41305,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(240536,41305,'blocks_6_options_format','row'),(240537,41305,'_blocks_6_options_format','field_64bfde9a90690'),(240538,41305,'blocks_6_options',''),(240539,41305,'_blocks_6_options','field_64bfdd9b90684'),(240540,41305,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(240541,41305,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(240542,41305,'blocks_6_icon_row_items_0_label','Pay in Full'),(240543,41305,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(240544,41305,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(240545,41305,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(240546,41305,'blocks_6_icon_row_items_1_icon','finance.svg'),(240547,41305,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(240548,41305,'blocks_6_icon_row_items_1_label','0% finance'),(240549,41305,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(240550,41305,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(240551,41305,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(240552,41305,'blocks_6_icon_row_items_2_icon','deposit.svg'),(240553,41305,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(240554,41305,'blocks_6_icon_row_items_2_label','Deposit & balance'),(240555,41305,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(240556,41305,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(240557,41305,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(240558,41305,'blocks_6_icon_row_items','3'),(240559,41305,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(240560,41305,'blocks_7_acfe_flexible_toggle',''),(240561,41305,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(240562,41305,'blocks_7_acfe_flexible_layout_title','Steps'),(240563,41305,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(240564,41305,'blocks_7_row_content_title',''),(240565,41305,'_blocks_7_row_content_title','field_64888cd1e26e0'),(240566,41305,'blocks_7_row_content_heading','Benefits of training with us'),(240567,41305,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(240568,41305,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(240569,41305,'_blocks_7_row_content_text','field_64888ce2e26e2'),(240570,41305,'blocks_7_row_content_actions',''),(240571,41305,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(240572,41305,'blocks_7_row_content',''),(240573,41305,'_blocks_7_row_content','field_64888cb0e26df'),(240574,41305,'blocks_7_steps_0_icon','progression.svg'),(240575,41305,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(240576,41305,'blocks_7_steps_0_title','Earning potential'),(240577,41305,'_blocks_7_steps_0_title','field_64888d94e26e7'),(240578,41305,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(240579,41305,'_blocks_7_steps_0_text','field_64888d99e26e8'),(240580,41305,'blocks_7_steps_1_icon','support.svg'),(240581,41305,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(240582,41305,'blocks_7_steps_1_title','Lifetime Learning Promise'),(240583,41305,'_blocks_7_steps_1_title','field_64888d94e26e7'),(240584,41305,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(240585,41305,'_blocks_7_steps_1_text','field_64888d99e26e8'),(240586,41305,'blocks_7_steps_2_icon','qualification.svg'),(240587,41305,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(240588,41305,'blocks_7_steps_2_title','Evidence based hands on learning'),(240589,41305,'_blocks_7_steps_2_title','field_64888d94e26e7'),(240590,41305,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(240591,41305,'_blocks_7_steps_2_text','field_64888d99e26e8'),(240592,41305,'blocks_7_steps_3_icon','leaders.svg'),(240593,41305,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(240594,41305,'blocks_7_steps_3_title','Stand out from the crowd'),(240595,41305,'_blocks_7_steps_3_title','field_64888d94e26e7'),(240596,41305,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(240597,41305,'_blocks_7_steps_3_text','field_64888d99e26e8'),(240598,41305,'blocks_7_steps','4'),(240599,41305,'_blocks_7_steps','field_64888d44e26e5'),(240600,41305,'blocks_2_acfe_flexible_toggle',''),(240601,41305,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(240602,41305,'blocks_2_acfe_flexible_layout_title','Form'),(240603,41305,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(240604,41305,'blocks_2_row_content_format','standard'),(240605,41305,'_blocks_2_row_content_format','field_6481ead962881'),(240606,41305,'blocks_2_row_content_title','Ready to get started?'),(240607,41305,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(240608,41305,'blocks_2_row_content_heading','Enquire Today!'),(240609,41305,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(240610,41305,'blocks_2_row_content_text','When you fill out the form you\'ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(240611,41305,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(240612,41305,'blocks_2_row_content_actions',''),(240613,41305,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(240614,41305,'blocks_2_row_content',''),(240615,41305,'_blocks_2_row_content','field_61a0f5f5b3db0'),(240616,41305,'blocks_2_row_form','40417'),(240617,41305,'_blocks_2_row_form','field_61a4ff2c0b08e'),(240618,41305,'blocks_2_row_form_button_label',''),(240619,41305,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(240620,41305,'blocks_3_acfe_flexible_toggle',''),(240621,41305,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(240622,41305,'blocks_3_acfe_flexible_layout_title','Video'),(240623,41305,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(240624,41305,'blocks_3_size','large'),(240625,41305,'_blocks_3_size','field_6487038f297c1'),(240626,41305,'blocks_3_row_content_title',''),(240627,41305,'_blocks_3_row_content_title','field_64870132a865d'),(240628,41305,'blocks_3_row_content_heading',''),(240629,41305,'_blocks_3_row_content_heading','field_64870142a865e'),(240630,41305,'blocks_3_row_content_text',''),(240631,41305,'_blocks_3_row_content_text','field_64870148a865f'),(240632,41305,'blocks_3_row_content',''),(240633,41305,'_blocks_3_row_content','field_6487008ba865c'),(240634,41305,'blocks_3_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(240635,41305,'_blocks_3_video_src','field_6193c4a98ec07'),(240636,41305,'blocks_3_video_thumbnail',''),(240637,41305,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(240638,41305,'blocks_9_acfe_flexible_toggle',''),(240639,41305,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(240640,41305,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(240641,41305,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(240642,41305,'blocks_9_options_theme','#f5f5f5'),(240643,41305,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(240644,41305,'blocks_9_options_reverse','0'),(240645,41305,'_blocks_9_options_reverse','field_61768049bb8ac'),(240646,41305,'blocks_9_options',''),(240647,41305,'_blocks_9_options','field_617682517c334'),(240648,41305,'blocks_9_split_5050_image','40920'),(240649,41305,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(240650,41305,'blocks_9_split_5050_video',''),(240651,41305,'_blocks_9_split_5050_video','field_6239f3160848a'),(240652,41305,'blocks_9_split_5050_content_title',''),(240653,41305,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(240654,41305,'blocks_9_split_5050_content_heading','Why study this course ?'),(240655,41305,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(240656,41305,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(240657,41305,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(240658,41305,'blocks_9_split_5050_content_actions',''),(240659,41305,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(240660,41305,'blocks_9_split_5050_content',''),(240661,41305,'_blocks_9_split_5050_content','field_61767afceb8ba'),(240662,41305,'blocks_10_acfe_flexible_toggle',''),(240663,41305,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(240664,41305,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(240665,41305,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(240666,41305,'blocks_10_testimonial_slider_content_title',''),(240667,41305,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(240668,41305,'blocks_10_testimonial_slider_content_heading','Testimonials'),(240669,41305,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(240670,41305,'blocks_10_testimonial_slider_content_text',''),(240671,41305,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(240672,41305,'blocks_10_testimonial_slider_content_actions',''),(240673,41305,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(240674,41305,'blocks_10_testimonial_slider_content',''),(240675,41305,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(240676,41305,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(240677,41305,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(240678,41305,'blocks_10_testimonial_slider_ambassador_bool','0'),(240679,41305,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(240680,41305,'blocks_11_acfe_flexible_toggle',''),(240681,41305,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(240682,41305,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(240683,41305,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(240684,41305,'blocks_11_options_theme','#ffffff'),(240685,41305,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(240686,41305,'blocks_11_options_state','0'),(240687,41305,'_blocks_11_options_state','field_6239fcb7508c5'),(240688,41305,'blocks_11_options',''),(240689,41305,'_blocks_11_options','field_6177e2991ac44'),(240690,41305,'blocks_11_content_title',''),(240691,41305,'_blocks_11_content_title','field_64d237e8bb1e2'),(240692,41305,'blocks_11_content_heading','Frequently asked questions '),(240693,41305,'_blocks_11_content_heading','field_64d237e8bb1e3'),(240694,41305,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(240695,41305,'_blocks_11_content_text','field_64d237e8bb1e4'),(240696,41305,'blocks_11_content_actions',''),(240697,41305,'_blocks_11_content_actions','field_64d237e8bb1e5'),(240698,41305,'blocks_11_content_align','left'),(240699,41305,'_blocks_11_content_align','field_64d2443e6b6aa'),(240700,41305,'blocks_11_content',''),(240701,41305,'_blocks_11_content','field_64d237e8bb1e1'),(240702,41305,'blocks_11_accordion_content','faqs'),(240703,41305,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(240704,41305,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(240705,41305,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(240706,41305,'blocks_11_actions',''),(240707,41305,'_blocks_11_actions','field_61a746a817f7a'),(240708,41306,'hide_hero','0'),(240709,41306,'_hide_hero','field_66a2380fcda39'),(240710,41306,'hero_title','How to Become a Biomechanics Coach'),(240711,41306,'_hero_title','field_617571fe285e8'),(240712,41306,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(240713,41306,'_hero_text','field_6175723c285e9'),(240714,41306,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39263-3\";s:6:\"target\";s:0:\"\";}'),(240715,41306,'_hero_actions_0_button','field_61757281285eb'),(240716,41306,'hero_actions','1'),(240717,41306,'_hero_actions','field_61757270285ea'),(240718,41306,'hero_style','default'),(240719,41306,'_hero_style','field_62051d9dc5324'),(240720,41306,'_thumbnail_id','39454'),(240721,41306,'__thumbnail_id','field_617570855ddaf'),(240722,41306,'hero_image_pos_x','right'),(240723,41306,'_hero_image_pos_x','field_62ec3d05390bb'),(240724,41306,'hero_image_pos_y','top'),(240725,41306,'_hero_image_pos_y','field_62ec3d05390bc'),(240726,41306,'hero_image_pos',''),(240727,41306,'_hero_image_pos','field_62ec3d05390ba'),(240728,41306,'fft_hide_from_listings','0'),(240729,41306,'_fft_hide_from_listings','field_61f1320446ab2'),(240730,41306,'fft_page_format','default'),(240731,41306,'_fft_page_format','field_61ae213f1f218'),(240732,41306,'fft_hide_nav','0'),(240733,41306,'_fft_hide_nav','field_635bd5e43527c'),(240734,41306,'fft_hide_header_call_to_action','0'),(240735,41306,'_fft_hide_header_call_to_action','field_635bd6723527d'),(240736,41306,'fft_page_sitemap','0'),(240737,41306,'_fft_page_sitemap','field_61af9b34e8181'),(240738,41306,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(240739,41306,'_blocks','field_6176696113096'),(240740,41306,'blocks_0_acfe_flexible_toggle',''),(240741,41306,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(240742,41306,'blocks_0_acfe_flexible_layout_title','Template'),(240743,41306,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(240744,41306,'blocks_0_template','39087'),(240745,41306,'_blocks_0_template','field_617bdd570fe01'),(240746,41306,'blocks_8_acfe_flexible_toggle','1'),(240747,41306,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(240748,41306,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(240749,41306,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(240750,41306,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(240751,41306,'_blocks_8_content','field_6193c9b5eac84'),(240752,41306,'blocks_1_acfe_flexible_toggle',''),(240753,41306,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(240754,41306,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(240755,41306,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(240756,41306,'blocks_1_options_theme','#ffffff'),(240757,41306,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(240758,41306,'blocks_1_options_reverse','0'),(240759,41306,'_blocks_1_options_reverse','field_61768049bb8ac'),(240760,41306,'blocks_1_options',''),(240761,41306,'_blocks_1_options','field_617682517c334'),(240762,41306,'blocks_1_split_5050_image','39623'),(240763,41306,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(240764,41306,'blocks_1_split_5050_video',''),(240765,41306,'_blocks_1_split_5050_video','field_6239f3160848a'),(240766,41306,'blocks_1_split_5050_content_title',''),(240767,41306,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(240768,41306,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(240769,41306,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(240770,41306,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of common modern ailments within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(240771,41306,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(240772,41306,'blocks_1_split_5050_content_actions',''),(240773,41306,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(240774,41306,'blocks_1_split_5050_content',''),(240775,41306,'_blocks_1_split_5050_content','field_61767afceb8ba'),(240776,41306,'blocks_4_acfe_flexible_toggle',''),(240777,41306,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(240778,41306,'blocks_4_acfe_flexible_layout_title','Tabs'),(240779,41306,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(240780,41306,'blocks_4_options_theme','#ffffff'),(240781,41306,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(240782,41306,'blocks_4_options',''),(240783,41306,'_blocks_4_options','field_6177cfcd8140f'),(240784,41306,'blocks_4_tabs_0_tab_label','What will I learn ?'),(240785,41306,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(240786,41306,'blocks_4_tabs_0_tab_content_title',''),(240787,41306,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(240788,41306,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(240789,41306,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(240790,41306,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health</li>\r\n</ul>'),(240791,41306,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(240792,41306,'blocks_4_tabs_0_tab_content_actions',''),(240793,41306,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(240794,41306,'blocks_4_tabs_0_tab_content',''),(240795,41306,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(240796,41306,'blocks_4_tabs_0_tab_image','39076'),(240797,41306,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(240798,41306,'blocks_4_tabs_1_tab_label','What do I need ?'),(240799,41306,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(240800,41306,'blocks_4_tabs_1_tab_content_title',''),(240801,41306,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(240802,41306,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(240803,41306,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(240804,41306,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(240805,41306,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(240806,41306,'blocks_4_tabs_1_tab_content_actions',''),(240807,41306,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(240808,41306,'blocks_4_tabs_1_tab_content',''),(240809,41306,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(240810,41306,'blocks_4_tabs_1_tab_image','41183'),(240811,41306,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(240812,41306,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(240813,41306,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(240814,41306,'blocks_4_tabs_2_tab_content_title',''),(240815,41306,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(240816,41306,'blocks_4_tabs_2_tab_content_heading','Locations'),(240817,41306,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(240818,41306,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(240819,41306,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(240820,41306,'blocks_4_tabs_2_tab_content_actions',''),(240821,41306,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(240822,41306,'blocks_4_tabs_2_tab_content',''),(240823,41306,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(240824,41306,'blocks_4_tabs_2_tab_image','39224'),(240825,41306,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(240826,41306,'blocks_4_tabs','3'),(240827,41306,'_blocks_4_tabs','field_6177cff281419'),(240828,41306,'blocks_5_acfe_flexible_toggle',''),(240829,41306,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(240830,41306,'blocks_5_acfe_flexible_layout_title','Text Block'),(240831,41306,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(240832,41306,'blocks_5_options_theme','#b61234'),(240833,41306,'_blocks_5_options_theme','field_6176830e2ad17'),(240834,41306,'blocks_5_options',''),(240835,41306,'_blocks_5_options','field_6176830e2ad16'),(240836,41306,'blocks_5_text_block_heading','Fees & Funding Options'),(240837,41306,'_blocks_5_text_block_heading','field_617669d413097'),(240838,41306,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(240839,41306,'_blocks_5_text_block_content','field_617669ec13098'),(240840,41306,'blocks_6_acfe_flexible_toggle',''),(240841,41306,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(240842,41306,'blocks_6_acfe_flexible_layout_title','Icons'),(240843,41306,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(240844,41306,'blocks_6_options_theme','#b61234'),(240845,41306,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(240846,41306,'blocks_6_options_format','row'),(240847,41306,'_blocks_6_options_format','field_64bfde9a90690'),(240848,41306,'blocks_6_options',''),(240849,41306,'_blocks_6_options','field_64bfdd9b90684'),(240850,41306,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(240851,41306,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(240852,41306,'blocks_6_icon_row_items_0_label','Pay in Full'),(240853,41306,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(240854,41306,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(240855,41306,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(240856,41306,'blocks_6_icon_row_items_1_icon','finance.svg'),(240857,41306,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(240858,41306,'blocks_6_icon_row_items_1_label','0% finance'),(240859,41306,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(240860,41306,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(240861,41306,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(240862,41306,'blocks_6_icon_row_items_2_icon','deposit.svg'),(240863,41306,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(240864,41306,'blocks_6_icon_row_items_2_label','Deposit & balance'),(240865,41306,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(240866,41306,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(240867,41306,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(240868,41306,'blocks_6_icon_row_items','3'),(240869,41306,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(240870,41306,'blocks_7_acfe_flexible_toggle',''),(240871,41306,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(240872,41306,'blocks_7_acfe_flexible_layout_title','Steps'),(240873,41306,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(240874,41306,'blocks_7_row_content_title',''),(240875,41306,'_blocks_7_row_content_title','field_64888cd1e26e0'),(240876,41306,'blocks_7_row_content_heading','Benefits of training with us'),(240877,41306,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(240878,41306,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(240879,41306,'_blocks_7_row_content_text','field_64888ce2e26e2'),(240880,41306,'blocks_7_row_content_actions',''),(240881,41306,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(240882,41306,'blocks_7_row_content',''),(240883,41306,'_blocks_7_row_content','field_64888cb0e26df'),(240884,41306,'blocks_7_steps_0_icon','progression.svg'),(240885,41306,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(240886,41306,'blocks_7_steps_0_title','Earning potential'),(240887,41306,'_blocks_7_steps_0_title','field_64888d94e26e7'),(240888,41306,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(240889,41306,'_blocks_7_steps_0_text','field_64888d99e26e8'),(240890,41306,'blocks_7_steps_1_icon','support.svg'),(240891,41306,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(240892,41306,'blocks_7_steps_1_title','Lifetime Learning Promise'),(240893,41306,'_blocks_7_steps_1_title','field_64888d94e26e7'),(240894,41306,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(240895,41306,'_blocks_7_steps_1_text','field_64888d99e26e8'),(240896,41306,'blocks_7_steps_2_icon','qualification.svg'),(240897,41306,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(240898,41306,'blocks_7_steps_2_title','Evidence based hands on learning'),(240899,41306,'_blocks_7_steps_2_title','field_64888d94e26e7'),(240900,41306,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(240901,41306,'_blocks_7_steps_2_text','field_64888d99e26e8'),(240902,41306,'blocks_7_steps_3_icon','leaders.svg'),(240903,41306,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(240904,41306,'blocks_7_steps_3_title','Stand out from the crowd'),(240905,41306,'_blocks_7_steps_3_title','field_64888d94e26e7'),(240906,41306,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(240907,41306,'_blocks_7_steps_3_text','field_64888d99e26e8'),(240908,41306,'blocks_7_steps','4'),(240909,41306,'_blocks_7_steps','field_64888d44e26e5'),(240910,41306,'blocks_2_acfe_flexible_toggle',''),(240911,41306,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(240912,41306,'blocks_2_acfe_flexible_layout_title','Form'),(240913,41306,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(240914,41306,'blocks_2_row_content_format','standard'),(240915,41306,'_blocks_2_row_content_format','field_6481ead962881'),(240916,41306,'blocks_2_row_content_title','Ready to get started?'),(240917,41306,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(240918,41306,'blocks_2_row_content_heading','Enquire Today!'),(240919,41306,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(240920,41306,'blocks_2_row_content_text','When you fill out the form you\'ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(240921,41306,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(240922,41306,'blocks_2_row_content_actions',''),(240923,41306,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(240924,41306,'blocks_2_row_content',''),(240925,41306,'_blocks_2_row_content','field_61a0f5f5b3db0'),(240926,41306,'blocks_2_row_form','40417'),(240927,41306,'_blocks_2_row_form','field_61a4ff2c0b08e'),(240928,41306,'blocks_2_row_form_button_label',''),(240929,41306,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(240930,41306,'blocks_3_acfe_flexible_toggle',''),(240931,41306,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(240932,41306,'blocks_3_acfe_flexible_layout_title','Video'),(240933,41306,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(240934,41306,'blocks_3_size','large'),(240935,41306,'_blocks_3_size','field_6487038f297c1'),(240936,41306,'blocks_3_row_content_title',''),(240937,41306,'_blocks_3_row_content_title','field_64870132a865d'),(240938,41306,'blocks_3_row_content_heading',''),(240939,41306,'_blocks_3_row_content_heading','field_64870142a865e'),(240940,41306,'blocks_3_row_content_text',''),(240941,41306,'_blocks_3_row_content_text','field_64870148a865f'),(240942,41306,'blocks_3_row_content',''),(240943,41306,'_blocks_3_row_content','field_6487008ba865c'),(240944,41306,'blocks_3_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(240945,41306,'_blocks_3_video_src','field_6193c4a98ec07'),(240946,41306,'blocks_3_video_thumbnail',''),(240947,41306,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(240948,41306,'blocks_9_acfe_flexible_toggle',''),(240949,41306,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(240950,41306,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(240951,41306,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(240952,41306,'blocks_9_options_theme','#f5f5f5'),(240953,41306,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(240954,41306,'blocks_9_options_reverse','0'),(240955,41306,'_blocks_9_options_reverse','field_61768049bb8ac'),(240956,41306,'blocks_9_options',''),(240957,41306,'_blocks_9_options','field_617682517c334'),(240958,41306,'blocks_9_split_5050_image','40920'),(240959,41306,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(240960,41306,'blocks_9_split_5050_video',''),(240961,41306,'_blocks_9_split_5050_video','field_6239f3160848a'),(240962,41306,'blocks_9_split_5050_content_title',''),(240963,41306,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(240964,41306,'blocks_9_split_5050_content_heading','Why study this course ?'),(240965,41306,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(240966,41306,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(240967,41306,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(240968,41306,'blocks_9_split_5050_content_actions',''),(240969,41306,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(240970,41306,'blocks_9_split_5050_content',''),(240971,41306,'_blocks_9_split_5050_content','field_61767afceb8ba'),(240972,41306,'blocks_10_acfe_flexible_toggle',''),(240973,41306,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(240974,41306,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(240975,41306,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(240976,41306,'blocks_10_testimonial_slider_content_title',''),(240977,41306,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(240978,41306,'blocks_10_testimonial_slider_content_heading','Testimonials'),(240979,41306,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(240980,41306,'blocks_10_testimonial_slider_content_text',''),(240981,41306,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(240982,41306,'blocks_10_testimonial_slider_content_actions',''),(240983,41306,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(240984,41306,'blocks_10_testimonial_slider_content',''),(240985,41306,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(240986,41306,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(240987,41306,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(240988,41306,'blocks_10_testimonial_slider_ambassador_bool','0'),(240989,41306,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(240990,41306,'blocks_11_acfe_flexible_toggle',''),(240991,41306,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(240992,41306,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(240993,41306,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(240994,41306,'blocks_11_options_theme','#ffffff'),(240995,41306,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(240996,41306,'blocks_11_options_state','0'),(240997,41306,'_blocks_11_options_state','field_6239fcb7508c5'),(240998,41306,'blocks_11_options',''),(240999,41306,'_blocks_11_options','field_6177e2991ac44'),(241000,41306,'blocks_11_content_title',''),(241001,41306,'_blocks_11_content_title','field_64d237e8bb1e2'),(241002,41306,'blocks_11_content_heading','Frequently asked questions '),(241003,41306,'_blocks_11_content_heading','field_64d237e8bb1e3'),(241004,41306,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(241005,41306,'_blocks_11_content_text','field_64d237e8bb1e4'),(241006,41306,'blocks_11_content_actions',''),(241007,41306,'_blocks_11_content_actions','field_64d237e8bb1e5'),(241008,41306,'blocks_11_content_align','left'),(241009,41306,'_blocks_11_content_align','field_64d2443e6b6aa'),(241010,41306,'blocks_11_content',''),(241011,41306,'_blocks_11_content','field_64d237e8bb1e1'),(241012,41306,'blocks_11_accordion_content','faqs'),(241013,41306,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(241014,41306,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(241015,41306,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(241016,41306,'blocks_11_actions',''),(241017,41306,'_blocks_11_actions','field_61a746a817f7a'),(241018,41307,'_wp_attached_file','2024/10/BE_Worshop_30thAug-5-scaled.jpg'),(241019,41307,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/10/BE_Worshop_30thAug-5-scaled.jpg\";s:8:\"filesize\";i:590683;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102792;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-5-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159556;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35618;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81615;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-5-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237942;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-5-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:391038;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44938;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141420;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-5-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223725;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35552;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102408;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-5-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158900;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37868;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113180;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-5-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175937;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38219;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113593;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-5-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177848;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32771;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93107;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-5-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144737;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725012641\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"66\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_30thAug-5.jpg\";}'),(241020,41307,'_wp_attachment_image_alt','PHOTO OF HANDS ON A SHEET OF PAPER, WITH A DIAGRMA OF THE BODY AND MAKRING OUT AREAS OF BIOMECHANICS'),(241021,41308,'hide_hero','0'),(241022,41308,'_hide_hero','field_66a2380fcda39'),(241023,41308,'hero_title','How to Become a Biomechanics Coach'),(241024,41308,'_hero_title','field_617571fe285e8'),(241025,41308,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(241026,41308,'_hero_text','field_6175723c285e9'),(241027,41308,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39263-3\";s:6:\"target\";s:0:\"\";}'),(241028,41308,'_hero_actions_0_button','field_61757281285eb'),(241029,41308,'hero_actions','1'),(241030,41308,'_hero_actions','field_61757270285ea'),(241031,41308,'hero_style','default'),(241032,41308,'_hero_style','field_62051d9dc5324'),(241033,41308,'_thumbnail_id','39454'),(241034,41308,'__thumbnail_id','field_617570855ddaf'),(241035,41308,'hero_image_pos_x','right'),(241036,41308,'_hero_image_pos_x','field_62ec3d05390bb'),(241037,41308,'hero_image_pos_y','top'),(241038,41308,'_hero_image_pos_y','field_62ec3d05390bc'),(241039,41308,'hero_image_pos',''),(241040,41308,'_hero_image_pos','field_62ec3d05390ba'),(241041,41308,'fft_hide_from_listings','0'),(241042,41308,'_fft_hide_from_listings','field_61f1320446ab2'),(241043,41308,'fft_page_format','default'),(241044,41308,'_fft_page_format','field_61ae213f1f218'),(241045,41308,'fft_hide_nav','0'),(241046,41308,'_fft_hide_nav','field_635bd5e43527c'),(241047,41308,'fft_hide_header_call_to_action','0'),(241048,41308,'_fft_hide_header_call_to_action','field_635bd6723527d'),(241049,41308,'fft_page_sitemap','0'),(241050,41308,'_fft_page_sitemap','field_61af9b34e8181'),(241051,41308,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(241052,41308,'_blocks','field_6176696113096'),(241053,41308,'blocks_0_acfe_flexible_toggle',''),(241054,41308,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(241055,41308,'blocks_0_acfe_flexible_layout_title','Template'),(241056,41308,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(241057,41308,'blocks_0_template','39087'),(241058,41308,'_blocks_0_template','field_617bdd570fe01'),(241059,41308,'blocks_8_acfe_flexible_toggle','1'),(241060,41308,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(241061,41308,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(241062,41308,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(241063,41308,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(241064,41308,'_blocks_8_content','field_6193c9b5eac84'),(241065,41308,'blocks_1_acfe_flexible_toggle',''),(241066,41308,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(241067,41308,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(241068,41308,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(241069,41308,'blocks_1_options_theme','#ffffff'),(241070,41308,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(241071,41308,'blocks_1_options_reverse','0'),(241072,41308,'_blocks_1_options_reverse','field_61768049bb8ac'),(241073,41308,'blocks_1_options',''),(241074,41308,'_blocks_1_options','field_617682517c334'),(241075,41308,'blocks_1_split_5050_image','39623'),(241076,41308,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(241077,41308,'blocks_1_split_5050_video',''),(241078,41308,'_blocks_1_split_5050_video','field_6239f3160848a'),(241079,41308,'blocks_1_split_5050_content_title',''),(241080,41308,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(241081,41308,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(241082,41308,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(241083,41308,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of common modern ailments within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(241084,41308,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(241085,41308,'blocks_1_split_5050_content_actions',''),(241086,41308,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(241087,41308,'blocks_1_split_5050_content',''),(241088,41308,'_blocks_1_split_5050_content','field_61767afceb8ba'),(241089,41308,'blocks_4_acfe_flexible_toggle',''),(241090,41308,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(241091,41308,'blocks_4_acfe_flexible_layout_title','Tabs'),(241092,41308,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(241093,41308,'blocks_4_options_theme','#ffffff'),(241094,41308,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(241095,41308,'blocks_4_options',''),(241096,41308,'_blocks_4_options','field_6177cfcd8140f'),(241097,41308,'blocks_4_tabs_0_tab_label','What will I learn ?'),(241098,41308,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(241099,41308,'blocks_4_tabs_0_tab_content_title',''),(241100,41308,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(241101,41308,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(241102,41308,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(241103,41308,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health</li>\r\n</ul>'),(241104,41308,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(241105,41308,'blocks_4_tabs_0_tab_content_actions',''),(241106,41308,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(241107,41308,'blocks_4_tabs_0_tab_content',''),(241108,41308,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(241109,41308,'blocks_4_tabs_0_tab_image','39076'),(241110,41308,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(241111,41308,'blocks_4_tabs_1_tab_label','What do I need ?'),(241112,41308,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(241113,41308,'blocks_4_tabs_1_tab_content_title',''),(241114,41308,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(241115,41308,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(241116,41308,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(241117,41308,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(241118,41308,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(241119,41308,'blocks_4_tabs_1_tab_content_actions',''),(241120,41308,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(241121,41308,'blocks_4_tabs_1_tab_content',''),(241122,41308,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(241123,41308,'blocks_4_tabs_1_tab_image','41183'),(241124,41308,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(241125,41308,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(241126,41308,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(241127,41308,'blocks_4_tabs_2_tab_content_title',''),(241128,41308,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(241129,41308,'blocks_4_tabs_2_tab_content_heading','Locations'),(241130,41308,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(241131,41308,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(241132,41308,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(241133,41308,'blocks_4_tabs_2_tab_content_actions',''),(241134,41308,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(241135,41308,'blocks_4_tabs_2_tab_content',''),(241136,41308,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(241137,41308,'blocks_4_tabs_2_tab_image','39224'),(241138,41308,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(241139,41308,'blocks_4_tabs','3'),(241140,41308,'_blocks_4_tabs','field_6177cff281419'),(241141,41308,'blocks_5_acfe_flexible_toggle',''),(241142,41308,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(241143,41308,'blocks_5_acfe_flexible_layout_title','Text Block'),(241144,41308,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(241145,41308,'blocks_5_options_theme','#b61234'),(241146,41308,'_blocks_5_options_theme','field_6176830e2ad17'),(241147,41308,'blocks_5_options',''),(241148,41308,'_blocks_5_options','field_6176830e2ad16'),(241149,41308,'blocks_5_text_block_heading','Fees & Funding Options'),(241150,41308,'_blocks_5_text_block_heading','field_617669d413097'),(241151,41308,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(241152,41308,'_blocks_5_text_block_content','field_617669ec13098'),(241153,41308,'blocks_6_acfe_flexible_toggle',''),(241154,41308,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(241155,41308,'blocks_6_acfe_flexible_layout_title','Icons'),(241156,41308,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(241157,41308,'blocks_6_options_theme','#b61234'),(241158,41308,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(241159,41308,'blocks_6_options_format','row'),(241160,41308,'_blocks_6_options_format','field_64bfde9a90690'),(241161,41308,'blocks_6_options',''),(241162,41308,'_blocks_6_options','field_64bfdd9b90684'),(241163,41308,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(241164,41308,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(241165,41308,'blocks_6_icon_row_items_0_label','Pay in Full'),(241166,41308,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(241167,41308,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(241168,41308,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(241169,41308,'blocks_6_icon_row_items_1_icon','finance.svg'),(241170,41308,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(241171,41308,'blocks_6_icon_row_items_1_label','0% finance'),(241172,41308,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(241173,41308,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(241174,41308,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(241175,41308,'blocks_6_icon_row_items_2_icon','deposit.svg'),(241176,41308,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(241177,41308,'blocks_6_icon_row_items_2_label','Deposit & balance'),(241178,41308,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(241179,41308,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(241180,41308,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(241181,41308,'blocks_6_icon_row_items','3'),(241182,41308,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(241183,41308,'blocks_7_acfe_flexible_toggle',''),(241184,41308,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(241185,41308,'blocks_7_acfe_flexible_layout_title','Steps'),(241186,41308,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(241187,41308,'blocks_7_row_content_title',''),(241188,41308,'_blocks_7_row_content_title','field_64888cd1e26e0'),(241189,41308,'blocks_7_row_content_heading','Benefits of training with us'),(241190,41308,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(241191,41308,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(241192,41308,'_blocks_7_row_content_text','field_64888ce2e26e2'),(241193,41308,'blocks_7_row_content_actions',''),(241194,41308,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(241195,41308,'blocks_7_row_content',''),(241196,41308,'_blocks_7_row_content','field_64888cb0e26df'),(241197,41308,'blocks_7_steps_0_icon','progression.svg'),(241198,41308,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(241199,41308,'blocks_7_steps_0_title','Earning potential'),(241200,41308,'_blocks_7_steps_0_title','field_64888d94e26e7'),(241201,41308,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(241202,41308,'_blocks_7_steps_0_text','field_64888d99e26e8'),(241203,41308,'blocks_7_steps_1_icon','support.svg'),(241204,41308,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(241205,41308,'blocks_7_steps_1_title','Lifetime Learning Promise'),(241206,41308,'_blocks_7_steps_1_title','field_64888d94e26e7'),(241207,41308,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(241208,41308,'_blocks_7_steps_1_text','field_64888d99e26e8'),(241209,41308,'blocks_7_steps_2_icon','qualification.svg'),(241210,41308,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(241211,41308,'blocks_7_steps_2_title','Evidence based hands on learning'),(241212,41308,'_blocks_7_steps_2_title','field_64888d94e26e7'),(241213,41308,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(241214,41308,'_blocks_7_steps_2_text','field_64888d99e26e8'),(241215,41308,'blocks_7_steps_3_icon','leaders.svg'),(241216,41308,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(241217,41308,'blocks_7_steps_3_title','Stand out from the crowd'),(241218,41308,'_blocks_7_steps_3_title','field_64888d94e26e7'),(241219,41308,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(241220,41308,'_blocks_7_steps_3_text','field_64888d99e26e8'),(241221,41308,'blocks_7_steps','4'),(241222,41308,'_blocks_7_steps','field_64888d44e26e5'),(241223,41308,'blocks_2_acfe_flexible_toggle',''),(241224,41308,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(241225,41308,'blocks_2_acfe_flexible_layout_title','Form'),(241226,41308,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(241227,41308,'blocks_2_row_content_format','standard'),(241228,41308,'_blocks_2_row_content_format','field_6481ead962881'),(241229,41308,'blocks_2_row_content_title','Ready to get started?'),(241230,41308,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(241231,41308,'blocks_2_row_content_heading','Enquire Today!'),(241232,41308,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(241233,41308,'blocks_2_row_content_text','When you fill out the form you\'ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(241234,41308,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(241235,41308,'blocks_2_row_content_actions',''),(241236,41308,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(241237,41308,'blocks_2_row_content',''),(241238,41308,'_blocks_2_row_content','field_61a0f5f5b3db0'),(241239,41308,'blocks_2_row_form','40417'),(241240,41308,'_blocks_2_row_form','field_61a4ff2c0b08e'),(241241,41308,'blocks_2_row_form_button_label',''),(241242,41308,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(241243,41308,'blocks_3_acfe_flexible_toggle',''),(241244,41308,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(241245,41308,'blocks_3_acfe_flexible_layout_title','Video'),(241246,41308,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(241247,41308,'blocks_3_size','large'),(241248,41308,'_blocks_3_size','field_6487038f297c1'),(241249,41308,'blocks_3_row_content_title',''),(241250,41308,'_blocks_3_row_content_title','field_64870132a865d'),(241251,41308,'blocks_3_row_content_heading',''),(241252,41308,'_blocks_3_row_content_heading','field_64870142a865e'),(241253,41308,'blocks_3_row_content_text',''),(241254,41308,'_blocks_3_row_content_text','field_64870148a865f'),(241255,41308,'blocks_3_row_content',''),(241256,41308,'_blocks_3_row_content','field_6487008ba865c'),(241257,41308,'blocks_3_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(241258,41308,'_blocks_3_video_src','field_6193c4a98ec07'),(241259,41308,'blocks_3_video_thumbnail',''),(241260,41308,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(241261,41308,'blocks_9_acfe_flexible_toggle',''),(241262,41308,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(241263,41308,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(241264,41308,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(241265,41308,'blocks_9_options_theme','#f5f5f5'),(241266,41308,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(241267,41308,'blocks_9_options_reverse','0'),(241268,41308,'_blocks_9_options_reverse','field_61768049bb8ac'),(241269,41308,'blocks_9_options',''),(241270,41308,'_blocks_9_options','field_617682517c334'),(241271,41308,'blocks_9_split_5050_image','41307'),(241272,41308,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(241273,41308,'blocks_9_split_5050_video',''),(241274,41308,'_blocks_9_split_5050_video','field_6239f3160848a'),(241275,41308,'blocks_9_split_5050_content_title',''),(241276,41308,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(241277,41308,'blocks_9_split_5050_content_heading','Why study this course ?'),(241278,41308,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(241279,41308,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(241280,41308,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(241281,41308,'blocks_9_split_5050_content_actions',''),(241282,41308,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(241283,41308,'blocks_9_split_5050_content',''),(241284,41308,'_blocks_9_split_5050_content','field_61767afceb8ba'),(241285,41308,'blocks_10_acfe_flexible_toggle',''),(241286,41308,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(241287,41308,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(241288,41308,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(241289,41308,'blocks_10_testimonial_slider_content_title',''),(241290,41308,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(241291,41308,'blocks_10_testimonial_slider_content_heading','Testimonials'),(241292,41308,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(241293,41308,'blocks_10_testimonial_slider_content_text',''),(241294,41308,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(241295,41308,'blocks_10_testimonial_slider_content_actions',''),(241296,41308,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(241297,41308,'blocks_10_testimonial_slider_content',''),(241298,41308,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(241299,41308,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(241300,41308,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(241301,41308,'blocks_10_testimonial_slider_ambassador_bool','0'),(241302,41308,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(241303,41308,'blocks_11_acfe_flexible_toggle',''),(241304,41308,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(241305,41308,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(241306,41308,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(241307,41308,'blocks_11_options_theme','#ffffff'),(241308,41308,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(241309,41308,'blocks_11_options_state','0'),(241310,41308,'_blocks_11_options_state','field_6239fcb7508c5'),(241311,41308,'blocks_11_options',''),(241312,41308,'_blocks_11_options','field_6177e2991ac44'),(241313,41308,'blocks_11_content_title',''),(241314,41308,'_blocks_11_content_title','field_64d237e8bb1e2'),(241315,41308,'blocks_11_content_heading','Frequently asked questions '),(241316,41308,'_blocks_11_content_heading','field_64d237e8bb1e3'),(241317,41308,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(241318,41308,'_blocks_11_content_text','field_64d237e8bb1e4'),(241319,41308,'blocks_11_content_actions',''),(241320,41308,'_blocks_11_content_actions','field_64d237e8bb1e5'),(241321,41308,'blocks_11_content_align','left'),(241322,41308,'_blocks_11_content_align','field_64d2443e6b6aa'),(241323,41308,'blocks_11_content',''),(241324,41308,'_blocks_11_content','field_64d237e8bb1e1'),(241325,41308,'blocks_11_accordion_content','faqs'),(241326,41308,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(241327,41308,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(241328,41308,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(241329,41308,'blocks_11_actions',''),(241330,41308,'_blocks_11_actions','field_61a746a817f7a'),(241331,41309,'hide_hero','0'),(241332,41309,'_hide_hero','field_66a2380fcda39'),(241333,41309,'hero_title','How to Become a Biomechanics Coach'),(241334,41309,'_hero_title','field_617571fe285e8'),(241335,41309,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(241336,41309,'_hero_text','field_6175723c285e9'),(241337,41309,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39263-3\";s:6:\"target\";s:0:\"\";}'),(241338,41309,'_hero_actions_0_button','field_61757281285eb'),(241339,41309,'hero_actions','1'),(241340,41309,'_hero_actions','field_61757270285ea'),(241341,41309,'hero_style','default'),(241342,41309,'_hero_style','field_62051d9dc5324'),(241343,41309,'_thumbnail_id','39454'),(241344,41309,'__thumbnail_id','field_617570855ddaf'),(241345,41309,'hero_image_pos_x','right'),(241346,41309,'_hero_image_pos_x','field_62ec3d05390bb'),(241347,41309,'hero_image_pos_y','top'),(241348,41309,'_hero_image_pos_y','field_62ec3d05390bc'),(241349,41309,'hero_image_pos',''),(241350,41309,'_hero_image_pos','field_62ec3d05390ba'),(241351,41309,'fft_hide_from_listings','0'),(241352,41309,'_fft_hide_from_listings','field_61f1320446ab2'),(241353,41309,'fft_page_format','default'),(241354,41309,'_fft_page_format','field_61ae213f1f218'),(241355,41309,'fft_hide_nav','0'),(241356,41309,'_fft_hide_nav','field_635bd5e43527c'),(241357,41309,'fft_hide_header_call_to_action','0'),(241358,41309,'_fft_hide_header_call_to_action','field_635bd6723527d'),(241359,41309,'fft_page_sitemap','0'),(241360,41309,'_fft_page_sitemap','field_61af9b34e8181'),(241361,41309,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(241362,41309,'_blocks','field_6176696113096'),(241363,41309,'blocks_0_acfe_flexible_toggle',''),(241364,41309,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(241365,41309,'blocks_0_acfe_flexible_layout_title','Template'),(241366,41309,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(241367,41309,'blocks_0_template','39087'),(241368,41309,'_blocks_0_template','field_617bdd570fe01'),(241369,41309,'blocks_8_acfe_flexible_toggle','1'),(241370,41309,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(241371,41309,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(241372,41309,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(241373,41309,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(241374,41309,'_blocks_8_content','field_6193c9b5eac84'),(241375,41309,'blocks_1_acfe_flexible_toggle',''),(241376,41309,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(241377,41309,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(241378,41309,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(241379,41309,'blocks_1_options_theme','#ffffff'),(241380,41309,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(241381,41309,'blocks_1_options_reverse','0'),(241382,41309,'_blocks_1_options_reverse','field_61768049bb8ac'),(241383,41309,'blocks_1_options',''),(241384,41309,'_blocks_1_options','field_617682517c334'),(241385,41309,'blocks_1_split_5050_image','39623'),(241386,41309,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(241387,41309,'blocks_1_split_5050_video',''),(241388,41309,'_blocks_1_split_5050_video','field_6239f3160848a'),(241389,41309,'blocks_1_split_5050_content_title',''),(241390,41309,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(241391,41309,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(241392,41309,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(241393,41309,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of common modern ailments within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(241394,41309,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(241395,41309,'blocks_1_split_5050_content_actions',''),(241396,41309,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(241397,41309,'blocks_1_split_5050_content',''),(241398,41309,'_blocks_1_split_5050_content','field_61767afceb8ba'),(241399,41309,'blocks_4_acfe_flexible_toggle',''),(241400,41309,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(241401,41309,'blocks_4_acfe_flexible_layout_title','Tabs'),(241402,41309,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(241403,41309,'blocks_4_options_theme','#ffffff'),(241404,41309,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(241405,41309,'blocks_4_options',''),(241406,41309,'_blocks_4_options','field_6177cfcd8140f'),(241407,41309,'blocks_4_tabs_0_tab_label','What will I learn ?'),(241408,41309,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(241409,41309,'blocks_4_tabs_0_tab_content_title',''),(241410,41309,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(241411,41309,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(241412,41309,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(241413,41309,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health</li>\r\n</ul>'),(241414,41309,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(241415,41309,'blocks_4_tabs_0_tab_content_actions',''),(241416,41309,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(241417,41309,'blocks_4_tabs_0_tab_content',''),(241418,41309,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(241419,41309,'blocks_4_tabs_0_tab_image','39076'),(241420,41309,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(241421,41309,'blocks_4_tabs_1_tab_label','What do I need ?'),(241422,41309,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(241423,41309,'blocks_4_tabs_1_tab_content_title',''),(241424,41309,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(241425,41309,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(241426,41309,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(241427,41309,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(241428,41309,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(241429,41309,'blocks_4_tabs_1_tab_content_actions',''),(241430,41309,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(241431,41309,'blocks_4_tabs_1_tab_content',''),(241432,41309,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(241433,41309,'blocks_4_tabs_1_tab_image','41183'),(241434,41309,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(241435,41309,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(241436,41309,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(241437,41309,'blocks_4_tabs_2_tab_content_title',''),(241438,41309,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(241439,41309,'blocks_4_tabs_2_tab_content_heading','Locations'),(241440,41309,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(241441,41309,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(241442,41309,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(241443,41309,'blocks_4_tabs_2_tab_content_actions',''),(241444,41309,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(241445,41309,'blocks_4_tabs_2_tab_content',''),(241446,41309,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(241447,41309,'blocks_4_tabs_2_tab_image','39224'),(241448,41309,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(241449,41309,'blocks_4_tabs','3'),(241450,41309,'_blocks_4_tabs','field_6177cff281419'),(241451,41309,'blocks_5_acfe_flexible_toggle',''),(241452,41309,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(241453,41309,'blocks_5_acfe_flexible_layout_title','Text Block'),(241454,41309,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(241455,41309,'blocks_5_options_theme','#b61234'),(241456,41309,'_blocks_5_options_theme','field_6176830e2ad17'),(241457,41309,'blocks_5_options',''),(241458,41309,'_blocks_5_options','field_6176830e2ad16'),(241459,41309,'blocks_5_text_block_heading','Fees & Funding Options'),(241460,41309,'_blocks_5_text_block_heading','field_617669d413097'),(241461,41309,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(241462,41309,'_blocks_5_text_block_content','field_617669ec13098'),(241463,41309,'blocks_6_acfe_flexible_toggle',''),(241464,41309,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(241465,41309,'blocks_6_acfe_flexible_layout_title','Icons'),(241466,41309,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(241467,41309,'blocks_6_options_theme','#b61234'),(241468,41309,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(241469,41309,'blocks_6_options_format','row'),(241470,41309,'_blocks_6_options_format','field_64bfde9a90690'),(241471,41309,'blocks_6_options',''),(241472,41309,'_blocks_6_options','field_64bfdd9b90684'),(241473,41309,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(241474,41309,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(241475,41309,'blocks_6_icon_row_items_0_label','Pay in Full'),(241476,41309,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(241477,41309,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(241478,41309,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(241479,41309,'blocks_6_icon_row_items_1_icon','finance.svg'),(241480,41309,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(241481,41309,'blocks_6_icon_row_items_1_label','0% finance'),(241482,41309,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(241483,41309,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(241484,41309,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(241485,41309,'blocks_6_icon_row_items_2_icon','deposit.svg'),(241486,41309,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(241487,41309,'blocks_6_icon_row_items_2_label','Deposit & balance'),(241488,41309,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(241489,41309,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(241490,41309,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(241491,41309,'blocks_6_icon_row_items','3'),(241492,41309,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(241493,41309,'blocks_7_acfe_flexible_toggle',''),(241494,41309,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(241495,41309,'blocks_7_acfe_flexible_layout_title','Steps'),(241496,41309,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(241497,41309,'blocks_7_row_content_title',''),(241498,41309,'_blocks_7_row_content_title','field_64888cd1e26e0'),(241499,41309,'blocks_7_row_content_heading','Benefits of training with us'),(241500,41309,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(241501,41309,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(241502,41309,'_blocks_7_row_content_text','field_64888ce2e26e2'),(241503,41309,'blocks_7_row_content_actions',''),(241504,41309,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(241505,41309,'blocks_7_row_content',''),(241506,41309,'_blocks_7_row_content','field_64888cb0e26df'),(241507,41309,'blocks_7_steps_0_icon','progression.svg'),(241508,41309,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(241509,41309,'blocks_7_steps_0_title','Earning potential'),(241510,41309,'_blocks_7_steps_0_title','field_64888d94e26e7'),(241511,41309,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(241512,41309,'_blocks_7_steps_0_text','field_64888d99e26e8'),(241513,41309,'blocks_7_steps_1_icon','support.svg'),(241514,41309,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(241515,41309,'blocks_7_steps_1_title','Lifetime Learning Promise'),(241516,41309,'_blocks_7_steps_1_title','field_64888d94e26e7'),(241517,41309,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(241518,41309,'_blocks_7_steps_1_text','field_64888d99e26e8'),(241519,41309,'blocks_7_steps_2_icon','qualification.svg'),(241520,41309,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(241521,41309,'blocks_7_steps_2_title','Evidence based hands on learning'),(241522,41309,'_blocks_7_steps_2_title','field_64888d94e26e7'),(241523,41309,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(241524,41309,'_blocks_7_steps_2_text','field_64888d99e26e8'),(241525,41309,'blocks_7_steps_3_icon','leaders.svg'),(241526,41309,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(241527,41309,'blocks_7_steps_3_title','Stand out from the crowd'),(241528,41309,'_blocks_7_steps_3_title','field_64888d94e26e7'),(241529,41309,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(241530,41309,'_blocks_7_steps_3_text','field_64888d99e26e8'),(241531,41309,'blocks_7_steps','4'),(241532,41309,'_blocks_7_steps','field_64888d44e26e5'),(241533,41309,'blocks_2_acfe_flexible_toggle',''),(241534,41309,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(241535,41309,'blocks_2_acfe_flexible_layout_title','Form'),(241536,41309,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(241537,41309,'blocks_2_row_content_format','standard'),(241538,41309,'_blocks_2_row_content_format','field_6481ead962881'),(241539,41309,'blocks_2_row_content_title','Ready to get started?'),(241540,41309,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(241541,41309,'blocks_2_row_content_heading','Enquire Today!'),(241542,41309,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(241543,41309,'blocks_2_row_content_text','When you fill out the form you\'ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(241544,41309,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(241545,41309,'blocks_2_row_content_actions',''),(241546,41309,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(241547,41309,'blocks_2_row_content',''),(241548,41309,'_blocks_2_row_content','field_61a0f5f5b3db0'),(241549,41309,'blocks_2_row_form','40417'),(241550,41309,'_blocks_2_row_form','field_61a4ff2c0b08e'),(241551,41309,'blocks_2_row_form_button_label',''),(241552,41309,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(241553,41309,'blocks_3_acfe_flexible_toggle',''),(241554,41309,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(241555,41309,'blocks_3_acfe_flexible_layout_title','Video'),(241556,41309,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(241557,41309,'blocks_3_size','large'),(241558,41309,'_blocks_3_size','field_6487038f297c1'),(241559,41309,'blocks_3_row_content_title',''),(241560,41309,'_blocks_3_row_content_title','field_64870132a865d'),(241561,41309,'blocks_3_row_content_heading',''),(241562,41309,'_blocks_3_row_content_heading','field_64870142a865e'),(241563,41309,'blocks_3_row_content_text',''),(241564,41309,'_blocks_3_row_content_text','field_64870148a865f'),(241565,41309,'blocks_3_row_content',''),(241566,41309,'_blocks_3_row_content','field_6487008ba865c'),(241567,41309,'blocks_3_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(241568,41309,'_blocks_3_video_src','field_6193c4a98ec07'),(241569,41309,'blocks_3_video_thumbnail',''),(241570,41309,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(241571,41309,'blocks_9_acfe_flexible_toggle',''),(241572,41309,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(241573,41309,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(241574,41309,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(241575,41309,'blocks_9_options_theme','#f5f5f5'),(241576,41309,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(241577,41309,'blocks_9_options_reverse','0'),(241578,41309,'_blocks_9_options_reverse','field_61768049bb8ac'),(241579,41309,'blocks_9_options',''),(241580,41309,'_blocks_9_options','field_617682517c334'),(241581,41309,'blocks_9_split_5050_image','41307'),(241582,41309,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(241583,41309,'blocks_9_split_5050_video',''),(241584,41309,'_blocks_9_split_5050_video','field_6239f3160848a'),(241585,41309,'blocks_9_split_5050_content_title',''),(241586,41309,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(241587,41309,'blocks_9_split_5050_content_heading','Why study this course ?'),(241588,41309,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(241589,41309,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(241590,41309,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(241591,41309,'blocks_9_split_5050_content_actions',''),(241592,41309,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(241593,41309,'blocks_9_split_5050_content',''),(241594,41309,'_blocks_9_split_5050_content','field_61767afceb8ba'),(241595,41309,'blocks_10_acfe_flexible_toggle',''),(241596,41309,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(241597,41309,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(241598,41309,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(241599,41309,'blocks_10_testimonial_slider_content_title',''),(241600,41309,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(241601,41309,'blocks_10_testimonial_slider_content_heading','Testimonials'),(241602,41309,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(241603,41309,'blocks_10_testimonial_slider_content_text',''),(241604,41309,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(241605,41309,'blocks_10_testimonial_slider_content_actions',''),(241606,41309,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(241607,41309,'blocks_10_testimonial_slider_content',''),(241608,41309,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(241609,41309,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(241610,41309,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(241611,41309,'blocks_10_testimonial_slider_ambassador_bool','0'),(241612,41309,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(241613,41309,'blocks_11_acfe_flexible_toggle',''),(241614,41309,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(241615,41309,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(241616,41309,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(241617,41309,'blocks_11_options_theme','#ffffff'),(241618,41309,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(241619,41309,'blocks_11_options_state','0'),(241620,41309,'_blocks_11_options_state','field_6239fcb7508c5'),(241621,41309,'blocks_11_options',''),(241622,41309,'_blocks_11_options','field_6177e2991ac44'),(241623,41309,'blocks_11_content_title',''),(241624,41309,'_blocks_11_content_title','field_64d237e8bb1e2'),(241625,41309,'blocks_11_content_heading','Frequently asked questions '),(241626,41309,'_blocks_11_content_heading','field_64d237e8bb1e3'),(241627,41309,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(241628,41309,'_blocks_11_content_text','field_64d237e8bb1e4'),(241629,41309,'blocks_11_content_actions',''),(241630,41309,'_blocks_11_content_actions','field_64d237e8bb1e5'),(241631,41309,'blocks_11_content_align','left'),(241632,41309,'_blocks_11_content_align','field_64d2443e6b6aa'),(241633,41309,'blocks_11_content',''),(241634,41309,'_blocks_11_content','field_64d237e8bb1e1'),(241635,41309,'blocks_11_accordion_content','faqs'),(241636,41309,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(241637,41309,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(241638,41309,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(241639,41309,'blocks_11_actions',''),(241640,41309,'_blocks_11_actions','field_61a746a817f7a'),(241641,39284,'_yoast_wpseo_inclusive_language_score','90'),(241642,41311,'hide_hero','0'),(241643,41311,'_hide_hero','field_66a2380fcda39'),(241644,41311,'hero_title','Our Partners'),(241645,41311,'_hero_title','field_617571fe285e8'),(241646,41311,'hero_text',''),(241647,41311,'_hero_text','field_6175723c285e9'),(241648,41311,'hero_actions','1'),(241649,41311,'_hero_actions','field_61757270285ea'),(241650,41311,'hero_style','default'),(241651,41311,'_hero_style','field_62051d9dc5324'),(241652,41311,'hero_image_pos_x','right'),(241653,41311,'_hero_image_pos_x','field_62ec3d05390bb'),(241654,41311,'hero_image_pos_y','top'),(241655,41311,'_hero_image_pos_y','field_62ec3d05390bc'),(241656,41311,'hero_image_pos',''),(241657,41311,'_hero_image_pos','field_62ec3d05390ba'),(241658,41311,'fft_hide_from_listings','0'),(241659,41311,'_fft_hide_from_listings','field_61f1320446ab2'),(241660,41311,'fft_page_format','default'),(241661,41311,'_fft_page_format','field_61ae213f1f218'),(241662,41311,'fft_hide_nav','0'),(241663,41311,'_fft_hide_nav','field_635bd5e43527c'),(241664,41311,'fft_hide_header_call_to_action','0'),(241665,41311,'_fft_hide_header_call_to_action','field_635bd6723527d'),(241666,41311,'fft_page_sitemap','0'),(241667,41311,'_fft_page_sitemap','field_61af9b34e8181'),(241668,41311,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:16:\"standard_content\";i:2;s:10:\"text_block\";i:3;s:5:\"logos\";i:4;s:10:\"split_5050\";i:5;s:16:\"standard_content\";i:6;s:18:\"testimonial_slider\";i:7;s:11:\"promo_panel\";}'),(241669,41311,'_blocks','field_6176696113096'),(241670,41311,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Discover More\";s:3:\"url\";s:12:\"#row-39284-1\";s:6:\"target\";s:0:\"\";}'),(241671,41311,'_hero_actions_0_button','field_61757281285eb'),(241672,41311,'_thumbnail_id','40503'),(241673,41311,'__thumbnail_id','field_617570855ddaf'),(241674,41311,'blocks_0_acfe_flexible_toggle',''),(241675,41311,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(241676,41311,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(241677,41311,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(241678,41311,'blocks_0_options_theme','#ffffff'),(241679,41311,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(241680,41311,'blocks_0_options_reverse','0'),(241681,41311,'_blocks_0_options_reverse','field_61768049bb8ac'),(241682,41311,'blocks_0_options',''),(241683,41311,'_blocks_0_options','field_617682517c334'),(241684,41311,'blocks_0_split_5050_image','36390'),(241685,41311,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(241686,41311,'blocks_0_split_5050_video',''),(241687,41311,'_blocks_0_split_5050_video','field_6239f3160848a'),(241688,41311,'blocks_0_split_5050_content_title','Working in Partnership'),(241689,41311,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(241690,41311,'blocks_0_split_5050_content_heading',''),(241691,41311,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(241692,41311,'blocks_0_split_5050_content_text','At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our learners, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.'),(241693,41311,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(241694,41311,'blocks_0_split_5050_content_actions','1'),(241695,41311,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(241696,41311,'blocks_0_split_5050_content',''),(241697,41311,'_blocks_0_split_5050_content','field_61767afceb8ba'),(241698,41311,'blocks_1_acfe_flexible_toggle','1'),(241699,41311,'_blocks_1_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(241700,41311,'blocks_1_acfe_flexible_layout_title','Standard/Editorial Content'),(241701,41311,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(241702,41311,'blocks_1_content','<h2 style=\"text-align: center;\">Welcome to our Partnerships page!</h2>\r\n<p style=\"text-align: left;\">At Biomechanics Education, we proudly collaborate with industry-leading organisations to enhance our training and resources. These collaborations allow us to offer exclusive benefits and discounts to our students, further enriching their educational journey. Join us in exploring the innovative contributions each partner brings to our community.</p>\r\n<p style=\"text-align: center;\">Click on any of the logos below to visit their sites!</p>'),(241703,41311,'_blocks_1_content','field_6193c9b5eac84'),(241704,41311,'blocks_2_acfe_flexible_toggle',''),(241705,41311,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(241706,41311,'blocks_2_acfe_flexible_layout_title','Text Block'),(241707,41311,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(241708,41311,'blocks_2_options_theme','#b61234'),(241709,41311,'_blocks_2_options_theme','field_6176830e2ad17'),(241710,41311,'blocks_2_options',''),(241711,41311,'_blocks_2_options','field_6176830e2ad16'),(241712,41311,'blocks_2_text_block_heading','Proudly introducing our partners'),(241713,41311,'_blocks_2_text_block_heading','field_617669d413097'),(241714,41311,'blocks_2_text_block_content',''),(241715,41311,'_blocks_2_text_block_content','field_617669ec13098'),(241716,41311,'blocks_3_acfe_flexible_toggle',''),(241717,41311,'_blocks_3_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(241718,41311,'blocks_3_acfe_flexible_layout_title','Logos'),(241719,41311,'_blocks_3_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(241720,41311,'blocks_3_options_theme','#ffffff'),(241721,41311,'_blocks_3_options_theme','field_61782954ee966_field_6176830e2ad17'),(241722,41311,'blocks_3_options_format','grid'),(241723,41311,'_blocks_3_options_format','field_61782964ee971'),(241724,41311,'blocks_3_options',''),(241725,41311,'_blocks_3_options','field_61782954ee965'),(241726,41311,'blocks_3_logos','a:9:{i:0;s:5:\"39290\";i:1;s:5:\"39291\";i:2;s:5:\"39293\";i:3;s:5:\"39294\";i:4;s:5:\"39295\";i:5;s:5:\"39297\";i:6;s:5:\"39300\";i:7;s:5:\"39304\";i:8;s:5:\"39306\";}'),(241727,41311,'_blocks_3_logos','field_61782954ee96d'),(241728,41311,'blocks_3_title',''),(241729,41311,'_blocks_3_title','field_668fbfdc2daa1'),(241730,41311,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in touch\";s:3:\"url\";s:12:\"#row-39284-5\";s:6:\"target\";s:0:\"\";}'),(241731,41311,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(241732,41311,'blocks_4_acfe_flexible_toggle',''),(241733,41311,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(241734,41311,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(241735,41311,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(241736,41311,'blocks_4_options_theme','#ffffff'),(241737,41311,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(241738,41311,'blocks_4_options_reverse','0'),(241739,41311,'_blocks_4_options_reverse','field_61768049bb8ac'),(241740,41311,'blocks_4_options',''),(241741,41311,'_blocks_4_options','field_617682517c334'),(241742,41311,'blocks_4_split_5050_image','38323'),(241743,41311,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(241744,41311,'blocks_4_split_5050_video',''),(241745,41311,'_blocks_4_split_5050_video','field_6239f3160848a'),(241746,41311,'blocks_4_split_5050_content_title','Imagine elevating your gym chain’s fitness programmes to a whole new level of effectiveness and safety.'),(241747,41311,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(241748,41311,'blocks_4_split_5050_content_heading',''),(241749,41311,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(241750,41311,'blocks_4_split_5050_content_text','We offer specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.'),(241751,41311,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(241752,41311,'blocks_4_split_5050_content_actions',''),(241753,41311,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(241754,41311,'blocks_4_split_5050_content',''),(241755,41311,'_blocks_4_split_5050_content','field_61767afceb8ba'),(241756,41311,'blocks_5_acfe_flexible_toggle','1'),(241757,41311,'_blocks_5_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(241758,41311,'blocks_5_acfe_flexible_layout_title','Standard/Editorial Content'),(241759,41311,'_blocks_5_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(241760,41311,'blocks_5_content','Imagine elevating your gym chain\'s fitness programmes to a whole new level of effectiveness and safety. Biomechanics Education offers specialised training that delves deep into the science of human movement. By integrating these cutting-edge techniques, your staff will not only deliver safer workouts but also maximise results for every member. This means reduced injury risks, enhanced member satisfaction, and a clear edge in the competitive fitness industry. With Biomechanics Education, your gym can lead the way in innovation and evidence-based fitness practices, ensuring your members get the best possible experience every time they walk through your doors.<!--more-->\r\n<h2>Get in Touch</h2>\r\nGet in touch with us today to discuss your business solutions:\r\n\r\nEmail – <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call us on <a href=\"http://Href=tel:020 3841 6151\">020 3841 6151</a>'),(241761,41311,'_blocks_5_content','field_6193c9b5eac84'),(241762,41311,'blocks_6_acfe_flexible_toggle','1'),(241763,41311,'_blocks_6_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(241764,41311,'blocks_6_acfe_flexible_layout_title','Testimonial Slider'),(241765,41311,'_blocks_6_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(241766,41311,'blocks_6_testimonial_slider_content_title',''),(241767,41311,'_blocks_6_testimonial_slider_content_title','field_617c033b39a60'),(241768,41311,'blocks_6_testimonial_slider_content_heading','Testimonials'),(241769,41311,'_blocks_6_testimonial_slider_content_heading','field_617c033b39a61'),(241770,41311,'blocks_6_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(241771,41311,'_blocks_6_testimonial_slider_content_text','field_617c033b39a62'),(241772,41311,'blocks_6_testimonial_slider_content_actions',''),(241773,41311,'_blocks_6_testimonial_slider_content_actions','field_617c033b39a63'),(241774,41311,'blocks_6_testimonial_slider_content',''),(241775,41311,'_blocks_6_testimonial_slider_content','field_617c033b39a5f'),(241776,41311,'blocks_6_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(241777,41311,'_blocks_6_testimonial_slider_items','field_61812eaeb20eb'),(241778,41311,'blocks_6_testimonial_slider_ambassador_bool','0'),(241779,41311,'_blocks_6_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(241780,41311,'blocks_7_acfe_flexible_toggle',''),(241781,41311,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(241782,41311,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(241783,41311,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(241784,41311,'blocks_7_options_alignment','center'),(241785,41311,'_blocks_7_options_alignment','field_61769449f5490'),(241786,41311,'blocks_7_options',''),(241787,41311,'_blocks_7_options','field_617693e1428f0'),(241788,41311,'blocks_7_promo_panel_image','39637'),(241789,41311,'_blocks_7_promo_panel_image','field_617693e1428f3'),(241790,41311,'blocks_7_promo_panel_content_heading','Get in touch'),(241791,41311,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(241792,41311,'blocks_7_promo_panel_content_text','Get in touch with us today to discuss how we can work together to better our sector. '),(241793,41311,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(241794,41311,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:5:\"Email\";s:3:\"url\";s:37:\"mailto:info@biomechanicseducation.com\";s:6:\"target\";s:0:\"\";}'),(241795,41311,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(241796,41311,'blocks_7_promo_panel_content_actions_1_button','a:3:{s:5:\"title\";s:8:\"Call now\";s:3:\"url\";s:15:\"tel:02038416151\";s:6:\"target\";s:0:\"\";}'),(241797,41311,'_blocks_7_promo_panel_content_actions_1_button','field_617693e1428f9'),(241798,41311,'blocks_7_promo_panel_content_actions','2'),(241799,41311,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(241800,41311,'blocks_7_promo_panel_content',''),(241801,41311,'_blocks_7_promo_panel_content','field_617693e1428f4'),(241802,41312,'_wp_attached_file','2024/10/BiomechanicsEducation_Workshop_Fareham_web-23.jpg'),(241803,41312,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:4:\"file\";s:57:\"2024/10/BiomechanicsEducation_Workshop_Fareham_web-23.jpg\";s:8:\"filesize\";i:2466234;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-23-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122514;}s:5:\"large\";a:5:{s:4:\"file\";s:58:\"BiomechanicsEducation_Workshop_Fareham_web-23-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-23-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40880;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-23-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96790;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:59:\"BiomechanicsEducation_Workshop_Fareham_web-23-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:284074;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-23-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55889;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-23-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183901;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:59:\"BiomechanicsEducation_Workshop_Fareham_web-23-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:288142;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-23-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40748;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-23-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121576;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:58:\"BiomechanicsEducation_Workshop_Fareham_web-23-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189943;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-23-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47455;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-23-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149793;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:58:\"BiomechanicsEducation_Workshop_Fareham_web-23-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:234272;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-23-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45303;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-23-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139937;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:58:\"BiomechanicsEducation_Workshop_Fareham_web-23-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219069;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-23-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38043;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:57:\"BiomechanicsEducation_Workshop_Fareham_web-23-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109414;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:58:\"BiomechanicsEducation_Workshop_Fareham_web-23-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:168938;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1686319973\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(241804,41313,'hide_hero','0'),(241805,41313,'_hide_hero','field_66a2380fcda39'),(241806,41313,'hero_title','Find a Biomechanics Coach in Your Area'),(241807,41313,'_hero_title','field_617571fe285e8'),(241808,41313,'hero_text','Unlock your peak performance with expert Biomechanics Coaches near you. Explore our interactive map below to find the perfect coach in your area'),(241809,41313,'_hero_text','field_6175723c285e9'),(241810,41313,'hero_actions','1'),(241811,41313,'_hero_actions','field_61757270285ea'),(241812,41313,'hero_style','default'),(241813,41313,'_hero_style','field_62051d9dc5324'),(241814,41313,'hero_image_pos_x','right'),(241815,41313,'_hero_image_pos_x','field_62ec3d05390bb'),(241816,41313,'hero_image_pos_y','top'),(241817,41313,'_hero_image_pos_y','field_62ec3d05390bc'),(241818,41313,'hero_image_pos',''),(241819,41313,'_hero_image_pos','field_62ec3d05390ba'),(241820,41313,'fft_hide_from_listings','0'),(241821,41313,'_fft_hide_from_listings','field_61f1320446ab2'),(241822,41313,'fft_page_format','default'),(241823,41313,'_fft_page_format','field_61ae213f1f218'),(241824,41313,'fft_hide_nav','0'),(241825,41313,'_fft_hide_nav','field_635bd5e43527c'),(241826,41313,'fft_hide_header_call_to_action','0'),(241827,41313,'_fft_hide_header_call_to_action','field_635bd6723527d'),(241828,41313,'fft_page_sitemap','0'),(241829,41313,'_fft_page_sitemap','field_61af9b34e8181'),(241830,41313,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:6:\"venues\";}'),(241831,41313,'_blocks','field_6176696113096'),(241832,41313,'blocks_0_acfe_flexible_toggle',''),(241833,41313,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(241834,41313,'blocks_0_acfe_flexible_layout_title','Text Block'),(241835,41313,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(241836,41313,'blocks_0_options_theme','#ffffff'),(241837,41313,'_blocks_0_options_theme','field_6176830e2ad17'),(241838,41313,'blocks_0_options',''),(241839,41313,'_blocks_0_options','field_6176830e2ad16'),(241840,41313,'blocks_0_text_block_heading','Can’t Find What You’re looking for?'),(241841,41313,'_blocks_0_text_block_heading','field_617669d413097'),(241842,41313,'blocks_0_text_block_content','Get in touch with us at:\r\n\r\n<a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>\r\n\r\nor call on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>.'),(241843,41313,'_blocks_0_text_block_content','field_617669ec13098'),(241844,41313,'blocks_1_acfe_flexible_toggle',''),(241845,41313,'_blocks_1_acfe_flexible_toggle','field_layout_62e25564629e7_toggle'),(241846,41313,'blocks_1_acfe_flexible_layout_title','Venues'),(241847,41313,'_blocks_1_acfe_flexible_layout_title','field_layout_62e25564629e7_title'),(241848,41313,'blocks_1_category','a:1:{i:0;s:3:\"417\";}'),(241849,41313,'_blocks_1_category','field_6361407e17657'),(241850,41313,'blocks_1_region',''),(241851,41313,'_blocks_1_region','field_636140bd17659'),(241852,41313,'hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Find a Coach\";s:3:\"url\";s:12:\"#row-39493-2\";s:6:\"target\";s:0:\"\";}'),(241853,41313,'_hero_actions_0_button','field_61757281285eb'),(241854,41313,'_thumbnail_id','40893'),(241855,41313,'__thumbnail_id','field_617570855ddaf'),(241856,41313,'blocks_1_label','Find a Coach'),(241857,41313,'_blocks_1_label','field_66ec2c3f65a77'),(241858,41313,'blocks_1_title','Find a Biomechanics Coach in Your Area'),(241859,41313,'_blocks_1_title','field_66ec2c5e65a78'),(241860,39497,'_yoast_wpseo_inclusive_language_score','90'),(241861,41314,'hide_hero','0'),(241862,41314,'_hide_hero','field_66a2380fcda39'),(241863,41314,'hero_title','Blogs'),(241864,41314,'_hero_title','field_617571fe285e8'),(241865,41314,'hero_text','Explore Insights and Expert Tips on Everything Intrinsic Biomechanics, Including Movement, Performance and Risk Reduction.'),(241866,41314,'_hero_text','field_6175723c285e9'),(241867,41314,'hero_actions',''),(241868,41314,'_hero_actions','field_61757270285ea'),(241869,41314,'hero_style','default'),(241870,41314,'_hero_style','field_62051d9dc5324'),(241871,41314,'hero_image_pos_x','right'),(241872,41314,'_hero_image_pos_x','field_62ec3d05390bb'),(241873,41314,'hero_image_pos_y','top'),(241874,41314,'_hero_image_pos_y','field_62ec3d05390bc'),(241875,41314,'hero_image_pos',''),(241876,41314,'_hero_image_pos','field_62ec3d05390ba'),(241877,41314,'fft_hide_from_listings','0'),(241878,41314,'_fft_hide_from_listings','field_61f1320446ab2'),(241879,41314,'fft_page_format','default'),(241880,41314,'_fft_page_format','field_61ae213f1f218'),(241881,41314,'fft_hide_nav','0'),(241882,41314,'_fft_hide_nav','field_635bd5e43527c'),(241883,41314,'fft_hide_header_call_to_action','0'),(241884,41314,'_fft_hide_header_call_to_action','field_635bd6723527d'),(241885,41314,'fft_page_sitemap','0'),(241886,41314,'_fft_page_sitemap','field_61af9b34e8181'),(241887,41314,'blocks','a:1:{i:0;s:5:\"cards\";}'),(241888,41314,'_blocks','field_6176696113096'),(241889,41314,'blocks_0_acfe_flexible_toggle',''),(241890,41314,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(241891,41314,'blocks_0_acfe_flexible_layout_title','Cards'),(241892,41314,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(241893,41314,'blocks_0_options_theme','#ffffff'),(241894,41314,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(241895,41314,'blocks_0_options_format','grid'),(241896,41314,'_blocks_0_options_format','field_617a7b15245b5'),(241897,41314,'blocks_0_options_style','default'),(241898,41314,'_blocks_0_options_style','field_6278ffb63484a'),(241899,41314,'blocks_0_options_cards_current_listing','0'),(241900,41314,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(241901,41314,'blocks_0_options_cards_content','term'),(241902,41314,'_blocks_0_options_cards_content','field_617aba6122688'),(241903,41314,'blocks_0_options_cards_post_type','post'),(241904,41314,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(241905,41314,'blocks_0_options_cards_posts_per_page','4'),(241906,41314,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(241907,41314,'blocks_0_options',''),(241908,41314,'_blocks_0_options','field_617a7b15245b3'),(241909,41314,'blocks_0_options_cards_term','5'),(241910,41314,'_blocks_0_options_cards_term','field_6193f7c180895'),(241911,41314,'blocks_0_options_cards_pagination','1'),(241912,41314,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(241913,41314,'blocks_0_options_cards_filter_taxonomy','category'),(241914,41314,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(241915,41314,'_thumbnail_id','40918'),(241916,41314,'__thumbnail_id','field_617570855ddaf'),(241917,41315,'hide_hero','0'),(241918,41315,'_hide_hero','field_66a2380fcda39'),(241919,41315,'hero_title','Intrinsic Biomechanics Association (IBA)'),(241920,41315,'_hero_title','field_617571fe285e8'),(241921,41315,'hero_text','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities. '),(241922,41315,'_hero_text','field_6175723c285e9'),(241923,41315,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(241924,41315,'_hero_actions_0_button','field_61757281285eb'),(241925,41315,'hero_actions','1'),(241926,41315,'_hero_actions','field_61757270285ea'),(241927,41315,'hero_style','default'),(241928,41315,'_hero_style','field_62051d9dc5324'),(241929,41315,'_thumbnail_id','40503'),(241930,41315,'__thumbnail_id','field_617570855ddaf'),(241931,41315,'hero_image_pos_x','right'),(241932,41315,'_hero_image_pos_x','field_62ec3d05390bb'),(241933,41315,'hero_image_pos_y','top'),(241934,41315,'_hero_image_pos_y','field_62ec3d05390bc'),(241935,41315,'hero_image_pos',''),(241936,41315,'_hero_image_pos','field_62ec3d05390ba'),(241937,41315,'fft_hide_from_listings','0'),(241938,41315,'_fft_hide_from_listings','field_61f1320446ab2'),(241939,41315,'fft_page_format','default'),(241940,41315,'_fft_page_format','field_61ae213f1f218'),(241941,41315,'fft_hide_nav','0'),(241942,41315,'_fft_hide_nav','field_635bd5e43527c'),(241943,41315,'fft_hide_header_call_to_action','0'),(241944,41315,'_fft_hide_header_call_to_action','field_635bd6723527d'),(241945,41315,'fft_page_sitemap','0'),(241946,41315,'_fft_page_sitemap','field_61af9b34e8181'),(241947,41315,'blocks_0_acfe_flexible_toggle',''),(241948,41315,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(241949,41315,'blocks_0_acfe_flexible_layout_title','Text Block'),(241950,41315,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(241951,41315,'blocks_0_options_theme','#ffffff'),(241952,41315,'_blocks_0_options_theme','field_6176830e2ad17'),(241953,41315,'blocks_0_options',''),(241954,41315,'_blocks_0_options','field_6176830e2ad16'),(241955,41315,'blocks_0_text_block_heading','Discover the IBA'),(241956,41315,'_blocks_0_text_block_heading','field_617669d413097'),(241957,41315,'blocks_0_text_block_content','Discover the Intrinsic Biomechanics Association (IBA), your gateway to a supportive community and invaluable resources for Biomechanics Trainers™ &amp; Coaches™. Managed by Biomechanics Education Limited, the IBA offers networking opportunities, standardised practices, and ongoing education in all things that relate to being a Biomechanics Coach. Membership benefits include exclusive workshops, discounts on courses and products, mentorship, and access to a vibrant professional network. Join today to enhance your practice and stay at the forefront of biomechanical advancements.'),(241958,41315,'_blocks_0_text_block_content','field_617669ec13098'),(241959,41315,'blocks_1_acfe_flexible_toggle',''),(241960,41315,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(241961,41315,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(241962,41315,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(241963,41315,'blocks_1_options_theme','#b61234'),(241964,41315,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(241965,41315,'blocks_1_options_reverse','0'),(241966,41315,'_blocks_1_options_reverse','field_61768049bb8ac'),(241967,41315,'blocks_1_options',''),(241968,41315,'_blocks_1_options','field_617682517c334'),(241969,41315,'blocks_1_split_5050_image','40819'),(241970,41315,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(241971,41315,'blocks_1_split_5050_video',''),(241972,41315,'_blocks_1_split_5050_video','field_6239f3160848a'),(241973,41315,'blocks_1_split_5050_content_title',''),(241974,41315,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(241975,41315,'blocks_1_split_5050_content_heading','Benefits'),(241976,41315,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(241977,41315,'blocks_1_split_5050_content_text','<ul>\r\n 	<li><strong>FREE 6 Online IBA Discovery Days per annum</strong></li>\r\n 	<li><strong>10% off all face to face workshops</strong></li>\r\n 	<li>FREE 12-week online business accountability course</li>\r\n 	<li>FREE Branded T Shirt / Vest top – every year</li>\r\n 	<li>Eligibility for the IBA Register of Biomechanics Coaches</li>\r\n 	<li>Eligibility for the FIND A COACH map locator</li>\r\n 	<li>Mentor support from the Master Trainer team</li>\r\n 	<li>Support from professionals across the UK &amp; overseas</li>\r\n 	<li>Discounts on partner courses, products, and equipment</li>\r\n 	<li>Discounts on CIMSPA Membership</li>\r\n 	<li>Discounts &amp; BENEFITS of BGi Insurance</li>\r\n 	<li>Access to ProZone</li>\r\n</ul>\r\n<h5>Join today to enhance your practice and stay at the forefront of intrinsic biomechanics.</h5>'),(241978,41315,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(241979,41315,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(241980,41315,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(241981,41315,'blocks_1_split_5050_content_actions','1'),(241982,41315,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(241983,41315,'blocks_1_split_5050_content',''),(241984,41315,'_blocks_1_split_5050_content','field_61767afceb8ba'),(241985,41315,'blocks_2_acfe_flexible_toggle',''),(241986,41315,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(241987,41315,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(241988,41315,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(241989,41315,'blocks_2_options_theme','#ffffff'),(241990,41315,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(241991,41315,'blocks_2_options_reverse','1'),(241992,41315,'_blocks_2_options_reverse','field_61768049bb8ac'),(241993,41315,'blocks_2_options',''),(241994,41315,'_blocks_2_options','field_617682517c334'),(241995,41315,'blocks_2_split_5050_image','40505'),(241996,41315,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(241997,41315,'blocks_2_split_5050_video',''),(241998,41315,'_blocks_2_split_5050_video','field_6239f3160848a'),(241999,41315,'blocks_2_split_5050_content_title',''),(242000,41315,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(242001,41315,'blocks_2_split_5050_content_heading','Reserve Your Place'),(242002,41315,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(242003,41315,'blocks_2_split_5050_content_text','Join our monthly IBA Member workshops, conducted online for convenience and accessibility. These engaging sessions offer Biomechanics Trainers™ &amp; Coaches™ valuable insights, networking opportunities, and practical knowledge in Intrinsic biomechanics. Secure your virtual seat today to enhance your expertise from anywhere in the world.'),(242004,41315,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(242005,41315,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(242006,41315,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(242007,41315,'blocks_2_split_5050_content_actions','1'),(242008,41315,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(242009,41315,'blocks_2_split_5050_content',''),(242010,41315,'_blocks_2_split_5050_content','field_61767afceb8ba'),(242011,41315,'blocks_3_acfe_flexible_toggle',''),(242012,41315,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(242013,41315,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(242014,41315,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(242015,41315,'blocks_3_testimonial_slider_content_title',''),(242016,41315,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(242017,41315,'blocks_3_testimonial_slider_content_heading','Testimonials'),(242018,41315,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(242019,41315,'blocks_3_testimonial_slider_content_text','Discover testimonials from people currently subscribed as an IBA member'),(242020,41315,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(242021,41315,'blocks_3_testimonial_slider_content_actions',''),(242022,41315,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(242023,41315,'blocks_3_testimonial_slider_content',''),(242024,41315,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(242025,41315,'blocks_3_testimonial_slider_items',''),(242026,41315,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(242027,41315,'blocks_3_testimonial_slider_ambassador_bool','0'),(242028,41315,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(242029,41315,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:18:\"testimonial_slider\";}'),(242030,41315,'_blocks','field_6176696113096'),(242031,41315,'course_label_text','IBA Membership'),(242032,41315,'_course_label_text','field_61e17babf71fa'),(242033,41315,'course_label_label_theme','#0d1f73'),(242034,41315,'_course_label_label_theme','field_61e17bb8f71fb'),(242035,41315,'course_label',''),(242036,41315,'_course_label','field_61e12f92749a7'),(242037,41315,'course_description','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities.'),(242038,41315,'_course_description','field_617ac5788e5e1'),(242039,41315,'course_key_info','1'),(242040,41315,'_course_key_info','field_617ac6ad8e5e2'),(242041,41315,'course_included','FREE 6 Online IBA Discovery Days per annum\r\n10% off all face to face workshops\r\nFREE 12-week online business accountability course\r\nFREE Branded T Shirt / Vest top – every year\r\nEligibility for the IBA Register of Biomechanics Coaches\r\nEligibility for the FIND A COACH map locator\r\nMentor support from the Master Trainer team\r\nSupport from professionals across the UK & overseas\r\nDiscounts on partner courses, products, and equipment\r\nDiscounts on CIMSPA Membership\r\nDiscounts & BENEFITS of BGi Insurance\r\nAccess to ProZone'),(242042,41315,'_course_included','field_617ac6f08e5e4'),(242043,41315,'course_key_info_0_text','Join our monthly IBA Member workshops, conducted online for convenience and accessibility. These engaging sessions offer Biomechanics Trainers™ & Coaches™ valuable insights, networking opportunities, and practical knowledge in biomechanics. Secure your virtual seat today to enhance your expertise from anywhere in the world.'),(242044,41315,'_course_key_info_0_text','field_617ac6c38e5e3'),(242045,39196,'_yoast_wpseo_inclusive_language_score','90'),(242046,41316,'hide_hero','0'),(242047,41316,'_hide_hero','field_66a2380fcda39'),(242048,41316,'fft_hide_from_listings','0'),(242049,41316,'_fft_hide_from_listings','field_61f1320446ab2'),(242050,41316,'fft_page_format','default'),(242051,41316,'_fft_page_format','field_61ae213f1f218'),(242052,41316,'fft_hide_nav','0'),(242053,41316,'_fft_hide_nav','field_635bd5e43527c'),(242054,41316,'fft_hide_header_call_to_action','0'),(242055,41316,'_fft_hide_header_call_to_action','field_635bd6723527d'),(242056,41316,'fft_page_sitemap','0'),(242057,41316,'_fft_page_sitemap','field_61af9b34e8181'),(242058,41316,'blocks_0_acfe_flexible_toggle',''),(242059,41316,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(242060,41316,'blocks_0_acfe_flexible_layout_title','Text Block'),(242061,41316,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(242062,41316,'blocks_0_options_theme','#ffffff'),(242063,41316,'_blocks_0_options_theme','field_6176830e2ad17'),(242064,41316,'blocks_0_options',''),(242065,41316,'_blocks_0_options','field_6176830e2ad16'),(242066,41316,'blocks_0_text_block_heading','Get in Touch'),(242067,41316,'_blocks_0_text_block_heading','field_617669d413097'),(242068,41316,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support you. Whether you’re interested in courses, or looking for a bespoke solution, or you\'re part of an organisation that wants a bespoke service, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(242069,41316,'_blocks_0_text_block_content','field_617669ec13098'),(242070,41316,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:4:\"form\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";}'),(242071,41316,'_blocks','field_6176696113096'),(242072,41316,'hero_title','Contact us'),(242073,41316,'_hero_title','field_617571fe285e8'),(242074,41316,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your Intrinsic biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in Biomechanics Coaching.'),(242075,41316,'_hero_text','field_6175723c285e9'),(242076,41316,'hero_actions','1'),(242077,41316,'_hero_actions','field_61757270285ea'),(242078,41316,'hero_style','default'),(242079,41316,'_hero_style','field_62051d9dc5324'),(242080,41316,'hero_icon','lines'),(242081,41316,'_hero_icon','field_61a6182199d03'),(242082,41316,'_thumbnail_id','40339'),(242083,41316,'__thumbnail_id','field_617570855ddaf'),(242084,41316,'hero_image_pos_x','right'),(242085,41316,'_hero_image_pos_x','field_62ec3d05390bb'),(242086,41316,'hero_image_pos_y','top'),(242087,41316,'_hero_image_pos_y','field_62ec3d05390bc'),(242088,41316,'hero_image_pos',''),(242089,41316,'_hero_image_pos','field_62ec3d05390ba'),(242090,41316,'blocks_2_acfe_flexible_toggle',''),(242091,41316,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(242092,41316,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(242093,41316,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(242094,41316,'blocks_2_options_theme','#ffffff'),(242095,41316,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(242096,41316,'blocks_2_options_reverse','0'),(242097,41316,'_blocks_2_options_reverse','field_61768049bb8ac'),(242098,41316,'blocks_2_options',''),(242099,41316,'_blocks_2_options','field_617682517c334'),(242100,41316,'blocks_2_split_5050_image','40342'),(242101,41316,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(242102,41316,'blocks_2_split_5050_video',''),(242103,41316,'_blocks_2_split_5050_video','field_6239f3160848a'),(242104,41316,'blocks_2_split_5050_content_title',''),(242105,41316,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(242106,41316,'blocks_2_split_5050_content_heading','Let\'s connect!'),(242107,41316,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(242108,41316,'blocks_2_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/in/rachel-frances-thomson-dipits-dipbe-qtls-ibam-mcimspa-0059ab15/\">LinkedIn</a>'),(242109,41316,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(242110,41316,'blocks_2_split_5050_content_actions',''),(242111,41316,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(242112,41316,'blocks_2_split_5050_content',''),(242113,41316,'_blocks_2_split_5050_content','field_61767afceb8ba'),(242114,41316,'blocks_1_acfe_flexible_toggle',''),(242115,41316,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(242116,41316,'blocks_1_acfe_flexible_layout_title','Form'),(242117,41316,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(242118,41316,'blocks_1_row_content_format','standard'),(242119,41316,'_blocks_1_row_content_format','field_6481ead962881'),(242120,41316,'blocks_1_row_content_title',''),(242121,41316,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(242122,41316,'blocks_1_row_content_heading','Let\'s get started'),(242123,41316,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(242124,41316,'blocks_1_row_content_text','<span data-contrast=\"none\">Please fill in your details for no obligation support and advice. One of our in-house Career Advisors will give you a call to discuss your enquiry – don\'t worry if you are not available, we can call back at a convenient time for you.  </span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\"> </span>\r\n\r\n<strong>By completing the form you will also gain access to our Information and Price Guide.</strong>'),(242125,41316,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(242126,41316,'blocks_1_row_content_actions',''),(242127,41316,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(242128,41316,'blocks_1_row_content',''),(242129,41316,'_blocks_1_row_content','field_61a0f5f5b3db0'),(242130,41316,'blocks_1_row_form','40394'),(242131,41316,'_blocks_1_row_form','field_61a4ff2c0b08e'),(242132,41316,'blocks_1_row_form_button_label',''),(242133,41316,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(242134,41316,'blocks_3_acfe_flexible_toggle',''),(242135,41316,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(242136,41316,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(242137,41316,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(242138,41316,'blocks_3_options_theme','#ffffff'),(242139,41316,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(242140,41316,'blocks_3_options_reverse','1'),(242141,41316,'_blocks_3_options_reverse','field_61768049bb8ac'),(242142,41316,'blocks_3_options',''),(242143,41316,'_blocks_3_options','field_617682517c334'),(242144,41316,'blocks_3_split_5050_image','40349'),(242145,41316,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(242146,41316,'blocks_3_split_5050_video',''),(242147,41316,'_blocks_3_split_5050_video','field_6239f3160848a'),(242148,41316,'blocks_3_split_5050_content_title',''),(242149,41316,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(242150,41316,'blocks_3_split_5050_content_heading','Find a Biomechanics Coach in your area'),(242151,41316,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(242152,41316,'blocks_3_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(242153,41316,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(242154,41316,'blocks_3_split_5050_content_actions',''),(242155,41316,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(242156,41316,'blocks_3_split_5050_content',''),(242157,41316,'_blocks_3_split_5050_content','field_61767afceb8ba'),(242158,41316,'hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in Touch\";s:3:\"url\";s:12:\"#row-39196-2\";s:6:\"target\";s:0:\"\";}'),(242159,41316,'_hero_actions_0_button','field_61757281285eb'),(242422,41318,'_wp_attached_file','2024/10/FutureFitRebrand-Images-Pilates-OnlineRes-18-scaled.jpg'),(242423,41318,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:63:\"2024/10/FutureFitRebrand-Images-Pilates-OnlineRes-18-scaled.jpg\";s:8:\"filesize\";i:459529;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100459;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148455;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38769;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81407;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:58:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211610;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:58:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:325249;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:56:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47853;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:56:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133301;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:58:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200265;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:56:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38721;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:56:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100459;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:57:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148455;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:56:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39993;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:56:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103951;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:57:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154265;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:56:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41190;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:56:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108546;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:57:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161429;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:56:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36089;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:56:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90373;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:57:\"FutureFitRebrand-Images-Pilates-OnlineRes-18-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132841;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 90D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1631441954\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:48:\"FutureFitRebrand-Images-Pilates-OnlineRes-18.jpg\";}'),(242424,39231,'_yoast_wpseo_inclusive_language_score','90'),(242425,41319,'hide_hero','0'),(242426,41319,'_hide_hero','field_66a2380fcda39'),(242427,41319,'hero_title','Biomechanics and Pilates'),(242428,41319,'_hero_title','field_617571fe285e8'),(242429,41319,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(242430,41319,'_hero_text','field_6175723c285e9'),(242431,41319,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39231-3\";s:6:\"target\";s:0:\"\";}'),(242432,41319,'_hero_actions_0_button','field_61757281285eb'),(242433,41319,'hero_actions','1'),(242434,41319,'_hero_actions','field_61757270285ea'),(242435,41319,'hero_style','default'),(242436,41319,'_hero_style','field_62051d9dc5324'),(242437,41319,'_thumbnail_id','39243'),(242438,41319,'__thumbnail_id','field_617570855ddaf'),(242439,41319,'hero_image_pos_x','right'),(242440,41319,'_hero_image_pos_x','field_62ec3d05390bb'),(242441,41319,'hero_image_pos_y','top'),(242442,41319,'_hero_image_pos_y','field_62ec3d05390bc'),(242443,41319,'hero_image_pos',''),(242444,41319,'_hero_image_pos','field_62ec3d05390ba'),(242445,41319,'fft_hide_from_listings','0'),(242446,41319,'_fft_hide_from_listings','field_61f1320446ab2'),(242447,41319,'fft_page_format','default'),(242448,41319,'_fft_page_format','field_61ae213f1f218'),(242449,41319,'fft_hide_nav','0'),(242450,41319,'_fft_hide_nav','field_635bd5e43527c'),(242451,41319,'fft_hide_header_call_to_action','0'),(242452,41319,'_fft_hide_header_call_to_action','field_635bd6723527d'),(242453,41319,'fft_page_sitemap','0'),(242454,41319,'_fft_page_sitemap','field_61af9b34e8181'),(242455,41319,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:18:\"testimonial_slider\";}'),(242456,41319,'_blocks','field_6176696113096'),(242457,41319,'blocks_0_acfe_flexible_toggle',''),(242458,41319,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(242459,41319,'blocks_0_acfe_flexible_layout_title','Icons'),(242460,41319,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(242461,41319,'blocks_0_options_theme','#b61234'),(242462,41319,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(242463,41319,'blocks_0_options_format','row'),(242464,41319,'_blocks_0_options_format','field_64bfde9a90690'),(242465,41319,'blocks_0_options',''),(242466,41319,'_blocks_0_options','field_64bfdd9b90684'),(242467,41319,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(242468,41319,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(242469,41319,'blocks_0_icon_row_items_0_label','Accreditation'),(242470,41319,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(242471,41319,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(242472,41319,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(242473,41319,'blocks_0_icon_row_items_1_icon','finance.svg'),(242474,41319,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(242475,41319,'blocks_0_icon_row_items_1_label','Flexible payment options'),(242476,41319,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(242477,41319,'blocks_0_icon_row_items_1_text','Including 0% finance'),(242478,41319,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(242479,41319,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(242480,41319,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(242481,41319,'blocks_0_icon_row_items_2_label','Earning potential'),(242482,41319,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(242483,41319,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(242484,41319,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(242485,41319,'blocks_0_icon_row_items','3'),(242486,41319,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(242487,41319,'blocks_1_acfe_flexible_toggle',''),(242488,41319,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(242489,41319,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(242490,41319,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(242491,41319,'blocks_1_options_theme','#ffffff'),(242492,41319,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(242493,41319,'blocks_1_options_reverse','0'),(242494,41319,'_blocks_1_options_reverse','field_61768049bb8ac'),(242495,41319,'blocks_1_options',''),(242496,41319,'_blocks_1_options','field_617682517c334'),(242497,41319,'blocks_1_split_5050_image','41318'),(242498,41319,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(242499,41319,'blocks_1_split_5050_video',''),(242500,41319,'_blocks_1_split_5050_video','field_6239f3160848a'),(242501,41319,'blocks_1_split_5050_content_title',''),(242502,41319,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(242503,41319,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(242504,41319,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(242505,41319,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(242506,41319,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(242507,41319,'blocks_1_split_5050_content_actions',''),(242508,41319,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(242509,41319,'blocks_1_split_5050_content',''),(242510,41319,'_blocks_1_split_5050_content','field_61767afceb8ba'),(242511,41319,'blocks_2_acfe_flexible_toggle',''),(242512,41319,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(242513,41319,'blocks_2_acfe_flexible_layout_title','Form'),(242514,41319,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(242515,41319,'blocks_2_row_content_format','standard'),(242516,41319,'_blocks_2_row_content_format','field_6481ead962881'),(242517,41319,'blocks_2_row_content_title',''),(242518,41319,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(242519,41319,'blocks_2_row_content_heading','Enquire Today'),(242520,41319,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(242521,41319,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(242522,41319,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(242523,41319,'blocks_2_row_content_actions',''),(242524,41319,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(242525,41319,'blocks_2_row_content',''),(242526,41319,'_blocks_2_row_content','field_61a0f5f5b3db0'),(242527,41319,'blocks_2_row_form','40394'),(242528,41319,'_blocks_2_row_form','field_61a4ff2c0b08e'),(242529,41319,'blocks_2_row_form_button_label',''),(242530,41319,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(242531,41319,'blocks_3_acfe_flexible_toggle',''),(242532,41319,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(242533,41319,'blocks_3_acfe_flexible_layout_title','Video'),(242534,41319,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(242535,41319,'blocks_3_size','large'),(242536,41319,'_blocks_3_size','field_6487038f297c1'),(242537,41319,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(242538,41319,'_blocks_3_row_content_title','field_64870132a865d'),(242539,41319,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(242540,41319,'_blocks_3_row_content_heading','field_64870142a865e'),(242541,41319,'blocks_3_row_content_text',''),(242542,41319,'_blocks_3_row_content_text','field_64870148a865f'),(242543,41319,'blocks_3_row_content',''),(242544,41319,'_blocks_3_row_content','field_6487008ba865c'),(242545,41319,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(242546,41319,'_blocks_3_video_src','field_6193c4a98ec07'),(242547,41319,'blocks_3_video_thumbnail',''),(242548,41319,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(242549,41319,'blocks_4_acfe_flexible_toggle',''),(242550,41319,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(242551,41319,'blocks_4_acfe_flexible_layout_title','Steps'),(242552,41319,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(242553,41319,'blocks_4_row_content_title',''),(242554,41319,'_blocks_4_row_content_title','field_64888cd1e26e0'),(242555,41319,'blocks_4_row_content_heading','Benefits of training with us'),(242556,41319,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(242557,41319,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(242558,41319,'_blocks_4_row_content_text','field_64888ce2e26e2'),(242559,41319,'blocks_4_row_content_actions',''),(242560,41319,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(242561,41319,'blocks_4_row_content',''),(242562,41319,'_blocks_4_row_content','field_64888cb0e26df'),(242563,41319,'blocks_4_steps_0_icon','progression.svg'),(242564,41319,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(242565,41319,'blocks_4_steps_0_title','Earning potential'),(242566,41319,'_blocks_4_steps_0_title','field_64888d94e26e7'),(242567,41319,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(242568,41319,'_blocks_4_steps_0_text','field_64888d99e26e8'),(242569,41319,'blocks_4_steps_1_icon','support.svg'),(242570,41319,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(242571,41319,'blocks_4_steps_1_title','Lifetime Learning Promise'),(242572,41319,'_blocks_4_steps_1_title','field_64888d94e26e7'),(242573,41319,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(242574,41319,'_blocks_4_steps_1_text','field_64888d99e26e8'),(242575,41319,'blocks_4_steps_2_icon','qualification.svg'),(242576,41319,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(242577,41319,'blocks_4_steps_2_title','Evidence based hands on learning'),(242578,41319,'_blocks_4_steps_2_title','field_64888d94e26e7'),(242579,41319,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(242580,41319,'_blocks_4_steps_2_text','field_64888d99e26e8'),(242581,41319,'blocks_4_steps_3_icon','leaders.svg'),(242582,41319,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(242583,41319,'blocks_4_steps_3_title','Stand out from the crowd'),(242584,41319,'_blocks_4_steps_3_title','field_64888d94e26e7'),(242585,41319,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(242586,41319,'_blocks_4_steps_3_text','field_64888d99e26e8'),(242587,41319,'blocks_4_steps','4'),(242588,41319,'_blocks_4_steps','field_64888d44e26e5'),(242589,41319,'blocks_5_acfe_flexible_toggle',''),(242590,41319,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(242591,41319,'blocks_5_acfe_flexible_layout_title','Tabs'),(242592,41319,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(242593,41319,'blocks_5_options_theme','#ffffff'),(242594,41319,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(242595,41319,'blocks_5_options',''),(242596,41319,'_blocks_5_options','field_6177cfcd8140f'),(242597,41319,'blocks_5_tabs_0_tab_label','What will I learn?'),(242598,41319,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(242599,41319,'blocks_5_tabs_0_tab_content_title',''),(242600,41319,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(242601,41319,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(242602,41319,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(242603,41319,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients:\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(242604,41319,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(242605,41319,'blocks_5_tabs_0_tab_content_actions',''),(242606,41319,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(242607,41319,'blocks_5_tabs_0_tab_content',''),(242608,41319,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(242609,41319,'blocks_5_tabs_0_tab_image','39076'),(242610,41319,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(242611,41319,'blocks_5_tabs_1_tab_label','What do I need?'),(242612,41319,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(242613,41319,'blocks_5_tabs_1_tab_content_title',''),(242614,41319,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(242615,41319,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(242616,41319,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(242617,41319,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(242618,41319,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(242619,41319,'blocks_5_tabs_1_tab_content_actions',''),(242620,41319,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(242621,41319,'blocks_5_tabs_1_tab_content',''),(242622,41319,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(242623,41319,'blocks_5_tabs_1_tab_image','40487'),(242624,41319,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(242625,41319,'blocks_5_tabs_2_tab_label','Where can I learn?'),(242626,41319,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(242627,41319,'blocks_5_tabs_2_tab_content_title',''),(242628,41319,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(242629,41319,'blocks_5_tabs_2_tab_content_heading','Locations'),(242630,41319,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(242631,41319,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(242632,41319,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(242633,41319,'blocks_5_tabs_2_tab_content_actions',''),(242634,41319,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(242635,41319,'blocks_5_tabs_2_tab_content',''),(242636,41319,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(242637,41319,'blocks_5_tabs_2_tab_image','39224'),(242638,41319,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(242639,41319,'blocks_5_tabs','3'),(242640,41319,'_blocks_5_tabs','field_6177cff281419'),(242641,41319,'blocks_6_acfe_flexible_toggle',''),(242642,41319,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(242643,41319,'blocks_6_acfe_flexible_layout_title','Text Block'),(242644,41319,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(242645,41319,'blocks_6_options_theme','#b61234'),(242646,41319,'_blocks_6_options_theme','field_6176830e2ad17'),(242647,41319,'blocks_6_options',''),(242648,41319,'_blocks_6_options','field_6176830e2ad16'),(242649,41319,'blocks_6_text_block_heading','Fees & Funding Options'),(242650,41319,'_blocks_6_text_block_heading','field_617669d413097'),(242651,41319,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(242652,41319,'_blocks_6_text_block_content','field_617669ec13098'),(242653,41319,'blocks_8_acfe_flexible_toggle',''),(242654,41319,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(242655,41319,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(242656,41319,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(242657,41319,'blocks_8_options_theme','#ffffff'),(242658,41319,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(242659,41319,'blocks_8_options_reverse','0'),(242660,41319,'_blocks_8_options_reverse','field_61768049bb8ac'),(242661,41319,'blocks_8_options',''),(242662,41319,'_blocks_8_options','field_617682517c334'),(242663,41319,'blocks_8_split_5050_image','40484'),(242664,41319,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(242665,41319,'blocks_8_split_5050_video',''),(242666,41319,'_blocks_8_split_5050_video','field_6239f3160848a'),(242667,41319,'blocks_8_split_5050_content_title',''),(242668,41319,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(242669,41319,'blocks_8_split_5050_content_heading','Why study this course?'),(242670,41319,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(242671,41319,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(242672,41319,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(242673,41319,'blocks_8_split_5050_content_actions',''),(242674,41319,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(242675,41319,'blocks_8_split_5050_content',''),(242676,41319,'_blocks_8_split_5050_content','field_61767afceb8ba'),(242677,41319,'blocks_7_acfe_flexible_toggle',''),(242678,41319,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(242679,41319,'blocks_7_acfe_flexible_layout_title','Icons'),(242680,41319,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(242681,41319,'blocks_7_options_theme','#b61234'),(242682,41319,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(242683,41319,'blocks_7_options_format','row'),(242684,41319,'_blocks_7_options_format','field_64bfde9a90690'),(242685,41319,'blocks_7_options',''),(242686,41319,'_blocks_7_options','field_64bfdd9b90684'),(242687,41319,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(242688,41319,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(242689,41319,'blocks_7_icon_row_items_0_label','Pay in full '),(242690,41319,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(242691,41319,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(242692,41319,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(242693,41319,'blocks_7_icon_row_items_1_icon','finance.svg'),(242694,41319,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(242695,41319,'blocks_7_icon_row_items_1_label','0% finance'),(242696,41319,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(242697,41319,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(242698,41319,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(242699,41319,'blocks_7_icon_row_items_2_icon','deposit.svg'),(242700,41319,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(242701,41319,'blocks_7_icon_row_items_2_label','Deposit & balance'),(242702,41319,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(242703,41319,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(242704,41319,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(242705,41319,'blocks_7_icon_row_items','3'),(242706,41319,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(242707,41319,'blocks_9_acfe_flexible_toggle',''),(242708,41319,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(242709,41319,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(242710,41319,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(242711,41319,'blocks_9_options_theme','#ffffff'),(242712,41319,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(242713,41319,'blocks_9_options_state','0'),(242714,41319,'_blocks_9_options_state','field_6239fcb7508c5'),(242715,41319,'blocks_9_options',''),(242716,41319,'_blocks_9_options','field_6177e2991ac44'),(242717,41319,'blocks_9_content_title',''),(242718,41319,'_blocks_9_content_title','field_64d237e8bb1e2'),(242719,41319,'blocks_9_content_heading','Frequently asked questions '),(242720,41319,'_blocks_9_content_heading','field_64d237e8bb1e3'),(242721,41319,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(242722,41319,'_blocks_9_content_text','field_64d237e8bb1e4'),(242723,41319,'blocks_9_content_actions',''),(242724,41319,'_blocks_9_content_actions','field_64d237e8bb1e5'),(242725,41319,'blocks_9_content_align','left'),(242726,41319,'_blocks_9_content_align','field_64d2443e6b6aa'),(242727,41319,'blocks_9_content',''),(242728,41319,'_blocks_9_content','field_64d237e8bb1e1'),(242729,41319,'blocks_9_accordion_content','faqs'),(242730,41319,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(242731,41319,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(242732,41319,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(242733,41319,'blocks_9_actions',''),(242734,41319,'_blocks_9_actions','field_61a746a817f7a'),(242735,41319,'blocks_10_acfe_flexible_toggle',''),(242736,41319,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(242737,41319,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(242738,41319,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(242739,41319,'blocks_10_testimonial_slider_content_title',''),(242740,41319,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(242741,41319,'blocks_10_testimonial_slider_content_heading','Testimonials'),(242742,41319,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(242743,41319,'blocks_10_testimonial_slider_content_text',''),(242744,41319,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(242745,41319,'blocks_10_testimonial_slider_content_actions',''),(242746,41319,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(242747,41319,'blocks_10_testimonial_slider_content',''),(242748,41319,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(242749,41319,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(242750,41319,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(242751,41319,'blocks_10_testimonial_slider_ambassador_bool','0'),(242752,41319,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(242753,39238,'_yoast_wpseo_inclusive_language_score','90'),(242754,41320,'hide_hero','0'),(242755,41320,'_hide_hero','field_66a2380fcda39'),(242756,41320,'hero_title','Biomechanics and Sports Massage Therapy'),(242757,41320,'_hero_title','field_617571fe285e8'),(242758,41320,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(242759,41320,'_hero_text','field_6175723c285e9'),(242760,41320,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39238-3\";s:6:\"target\";s:0:\"\";}'),(242761,41320,'_hero_actions_0_button','field_61757281285eb'),(242762,41320,'hero_actions','1'),(242763,41320,'_hero_actions','field_61757270285ea'),(242764,41320,'hero_style','default'),(242765,41320,'_hero_style','field_62051d9dc5324'),(242766,41320,'_thumbnail_id','39240'),(242767,41320,'__thumbnail_id','field_617570855ddaf'),(242768,41320,'hero_image_pos_x','right'),(242769,41320,'_hero_image_pos_x','field_62ec3d05390bb'),(242770,41320,'hero_image_pos_y','top'),(242771,41320,'_hero_image_pos_y','field_62ec3d05390bc'),(242772,41320,'hero_image_pos',''),(242773,41320,'_hero_image_pos','field_62ec3d05390ba'),(242774,41320,'fft_hide_from_listings','0'),(242775,41320,'_fft_hide_from_listings','field_61f1320446ab2'),(242776,41320,'fft_page_format','default'),(242777,41320,'_fft_page_format','field_61ae213f1f218'),(242778,41320,'fft_hide_nav','0'),(242779,41320,'_fft_hide_nav','field_635bd5e43527c'),(242780,41320,'fft_hide_header_call_to_action','0'),(242781,41320,'_fft_hide_header_call_to_action','field_635bd6723527d'),(242782,41320,'fft_page_sitemap','0'),(242783,41320,'_fft_page_sitemap','field_61af9b34e8181'),(242784,41320,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:10:\"split_5050\";i:9;s:16:\"standard_content\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(242785,41320,'_blocks','field_6176696113096'),(242786,41320,'blocks_0_acfe_flexible_toggle',''),(242787,41320,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(242788,41320,'blocks_0_acfe_flexible_layout_title','Template'),(242789,41320,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(242790,41320,'blocks_0_template','39087'),(242791,41320,'_blocks_0_template','field_617bdd570fe01'),(242792,41320,'blocks_4_acfe_flexible_toggle',''),(242793,41320,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(242794,41320,'blocks_4_acfe_flexible_layout_title','Tabs'),(242795,41320,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(242796,41320,'blocks_4_options_theme','#ffffff'),(242797,41320,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(242798,41320,'blocks_4_options',''),(242799,41320,'_blocks_4_options','field_6177cfcd8140f'),(242800,41320,'blocks_4_tabs_0_tab_label','What will I learn ?'),(242801,41320,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(242802,41320,'blocks_4_tabs_0_tab_content_title',''),(242803,41320,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(242804,41320,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(242805,41320,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(242806,41320,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>'),(242807,41320,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(242808,41320,'blocks_4_tabs_0_tab_content_actions',''),(242809,41320,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(242810,41320,'blocks_4_tabs_0_tab_content',''),(242811,41320,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(242812,41320,'blocks_4_tabs_0_tab_image','39076'),(242813,41320,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(242814,41320,'blocks_4_tabs_1_tab_label','What do I need ?'),(242815,41320,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(242816,41320,'blocks_4_tabs_1_tab_content_title',''),(242817,41320,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(242818,41320,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(242819,41320,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(242820,41320,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(242821,41320,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(242822,41320,'blocks_4_tabs_1_tab_content_actions',''),(242823,41320,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(242824,41320,'blocks_4_tabs_1_tab_content',''),(242825,41320,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(242826,41320,'blocks_4_tabs_1_tab_image','39223'),(242827,41320,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(242828,41320,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(242829,41320,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(242830,41320,'blocks_4_tabs_2_tab_content_title',''),(242831,41320,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(242832,41320,'blocks_4_tabs_2_tab_content_heading','Locations'),(242833,41320,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(242834,41320,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(242835,41320,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(242836,41320,'blocks_4_tabs_2_tab_content_actions',''),(242837,41320,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(242838,41320,'blocks_4_tabs_2_tab_content',''),(242839,41320,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(242840,41320,'blocks_4_tabs_2_tab_image','39224'),(242841,41320,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(242842,41320,'blocks_4_tabs','3'),(242843,41320,'_blocks_4_tabs','field_6177cff281419'),(242844,41320,'blocks_5_acfe_flexible_toggle',''),(242845,41320,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(242846,41320,'blocks_5_acfe_flexible_layout_title','Text Block'),(242847,41320,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(242848,41320,'blocks_5_options_theme','#b61234'),(242849,41320,'_blocks_5_options_theme','field_6176830e2ad17'),(242850,41320,'blocks_5_options',''),(242851,41320,'_blocks_5_options','field_6176830e2ad16'),(242852,41320,'blocks_5_text_block_heading','Fees & Funding Options'),(242853,41320,'_blocks_5_text_block_heading','field_617669d413097'),(242854,41320,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(242855,41320,'_blocks_5_text_block_content','field_617669ec13098'),(242856,41320,'blocks_1_acfe_flexible_toggle',''),(242857,41320,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(242858,41320,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(242859,41320,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(242860,41320,'blocks_1_options_theme','#ffffff'),(242861,41320,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(242862,41320,'blocks_1_options_reverse','0'),(242863,41320,'_blocks_1_options_reverse','field_61768049bb8ac'),(242864,41320,'blocks_1_options',''),(242865,41320,'_blocks_1_options','field_617682517c334'),(242866,41320,'blocks_1_split_5050_image','39241'),(242867,41320,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(242868,41320,'blocks_1_split_5050_video',''),(242869,41320,'_blocks_1_split_5050_video','field_6239f3160848a'),(242870,41320,'blocks_1_split_5050_content_title',''),(242871,41320,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(242872,41320,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(242873,41320,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(242874,41320,'blocks_1_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(242875,41320,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(242876,41320,'blocks_1_split_5050_content_actions',''),(242877,41320,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(242878,41320,'blocks_1_split_5050_content',''),(242879,41320,'_blocks_1_split_5050_content','field_61767afceb8ba'),(242880,41320,'blocks_6_acfe_flexible_toggle',''),(242881,41320,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(242882,41320,'blocks_6_acfe_flexible_layout_title','Icons'),(242883,41320,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(242884,41320,'blocks_6_options_theme','#b61234'),(242885,41320,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(242886,41320,'blocks_6_options_format','row'),(242887,41320,'_blocks_6_options_format','field_64bfde9a90690'),(242888,41320,'blocks_6_options',''),(242889,41320,'_blocks_6_options','field_64bfdd9b90684'),(242890,41320,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(242891,41320,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(242892,41320,'blocks_6_icon_row_items_0_label','Pay in Full'),(242893,41320,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(242894,41320,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(242895,41320,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(242896,41320,'blocks_6_icon_row_items_1_icon','finance.svg'),(242897,41320,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(242898,41320,'blocks_6_icon_row_items_1_label','0% Finance'),(242899,41320,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(242900,41320,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(242901,41320,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(242902,41320,'blocks_6_icon_row_items_2_icon','deposit.svg'),(242903,41320,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(242904,41320,'blocks_6_icon_row_items_2_label','Deposit & balance'),(242905,41320,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(242906,41320,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(242907,41320,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(242908,41320,'blocks_6_icon_row_items','3'),(242909,41320,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(242910,41320,'blocks_7_acfe_flexible_toggle',''),(242911,41320,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(242912,41320,'blocks_7_acfe_flexible_layout_title','Steps'),(242913,41320,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(242914,41320,'blocks_7_row_content_title',''),(242915,41320,'_blocks_7_row_content_title','field_64888cd1e26e0'),(242916,41320,'blocks_7_row_content_heading','Benefits of Training with Us'),(242917,41320,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(242918,41320,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(242919,41320,'_blocks_7_row_content_text','field_64888ce2e26e2'),(242920,41320,'blocks_7_row_content_actions',''),(242921,41320,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(242922,41320,'blocks_7_row_content',''),(242923,41320,'_blocks_7_row_content','field_64888cb0e26df'),(242924,41320,'blocks_7_steps_0_icon','progression.svg'),(242925,41320,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(242926,41320,'blocks_7_steps_0_title','Earning potential'),(242927,41320,'_blocks_7_steps_0_title','field_64888d94e26e7'),(242928,41320,'blocks_7_steps_0_text','Attract new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(242929,41320,'_blocks_7_steps_0_text','field_64888d99e26e8'),(242930,41320,'blocks_7_steps_1_icon','support.svg'),(242931,41320,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(242932,41320,'blocks_7_steps_1_title','Lifetime learning promise'),(242933,41320,'_blocks_7_steps_1_title','field_64888d94e26e7'),(242934,41320,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(242935,41320,'_blocks_7_steps_1_text','field_64888d99e26e8'),(242936,41320,'blocks_7_steps_2_icon','qualification.svg'),(242937,41320,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(242938,41320,'blocks_7_steps_2_title','Evidence based hands on learning'),(242939,41320,'_blocks_7_steps_2_title','field_64888d94e26e7'),(242940,41320,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn how to screen and test to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(242941,41320,'_blocks_7_steps_2_text','field_64888d99e26e8'),(242942,41320,'blocks_7_steps_3_icon','leaders.svg'),(242943,41320,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(242944,41320,'blocks_7_steps_3_title','Stand out from the crowd'),(242945,41320,'_blocks_7_steps_3_title','field_64888d94e26e7'),(242946,41320,'blocks_7_steps_3_text','As a Sports Massage Therapist through the Biomechanics Coaching Diploma we will give you the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course can also enhance your relationship with other healthcare providers because you will have confidence in a common language'),(242947,41320,'_blocks_7_steps_3_text','field_64888d99e26e8'),(242948,41320,'blocks_7_steps','4'),(242949,41320,'_blocks_7_steps','field_64888d44e26e5'),(242950,41320,'blocks_2_acfe_flexible_toggle',''),(242951,41320,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(242952,41320,'blocks_2_acfe_flexible_layout_title','Form'),(242953,41320,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(242954,41320,'blocks_2_row_content_format','standard'),(242955,41320,'_blocks_2_row_content_format','field_6481ead962881'),(242956,41320,'blocks_2_row_content_title',''),(242957,41320,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(242958,41320,'blocks_2_row_content_heading','Enquire Today'),(242959,41320,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(242960,41320,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(242961,41320,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(242962,41320,'blocks_2_row_content_actions',''),(242963,41320,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(242964,41320,'blocks_2_row_content',''),(242965,41320,'_blocks_2_row_content','field_61a0f5f5b3db0'),(242966,41320,'blocks_2_row_form','40394'),(242967,41320,'_blocks_2_row_form','field_61a4ff2c0b08e'),(242968,41320,'blocks_2_row_form_button_label',''),(242969,41320,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(242970,41320,'blocks_3_acfe_flexible_toggle','1'),(242971,41320,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(242972,41320,'blocks_3_acfe_flexible_layout_title','Video'),(242973,41320,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(242974,41320,'blocks_3_size','large'),(242975,41320,'_blocks_3_size','field_6487038f297c1'),(242976,41320,'blocks_3_row_content_title',''),(242977,41320,'_blocks_3_row_content_title','field_64870132a865d'),(242978,41320,'blocks_3_row_content_heading',''),(242979,41320,'_blocks_3_row_content_heading','field_64870142a865e'),(242980,41320,'blocks_3_row_content_text',''),(242981,41320,'_blocks_3_row_content_text','field_64870148a865f'),(242982,41320,'blocks_3_row_content',''),(242983,41320,'_blocks_3_row_content','field_6487008ba865c'),(242984,41320,'blocks_3_video_src',''),(242985,41320,'_blocks_3_video_src','field_6193c4a98ec07'),(242986,41320,'blocks_3_video_thumbnail',''),(242987,41320,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(242988,41320,'blocks_8_acfe_flexible_toggle',''),(242989,41320,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(242990,41320,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(242991,41320,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(242992,41320,'blocks_8_options_theme','#f5f5f5'),(242993,41320,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(242994,41320,'blocks_8_options_reverse','0'),(242995,41320,'_blocks_8_options_reverse','field_61768049bb8ac'),(242996,41320,'blocks_8_options',''),(242997,41320,'_blocks_8_options','field_617682517c334'),(242998,41320,'blocks_8_split_5050_image','40920'),(242999,41320,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(243000,41320,'blocks_8_split_5050_video',''),(243001,41320,'_blocks_8_split_5050_video','field_6239f3160848a'),(243002,41320,'blocks_8_split_5050_content_title',''),(243003,41320,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(243004,41320,'blocks_8_split_5050_content_heading','Why study this course ?'),(243005,41320,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(243006,41320,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(243007,41320,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(243008,41320,'blocks_8_split_5050_content_actions',''),(243009,41320,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(243010,41320,'blocks_8_split_5050_content',''),(243011,41320,'_blocks_8_split_5050_content','field_61767afceb8ba'),(243012,41320,'blocks_9_acfe_flexible_toggle','1'),(243013,41320,'_blocks_9_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(243014,41320,'blocks_9_acfe_flexible_layout_title','Standard/Editorial Content'),(243015,41320,'_blocks_9_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(243016,41320,'blocks_9_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(243017,41320,'_blocks_9_content','field_6193c9b5eac84'),(243018,41320,'blocks_10_acfe_flexible_toggle',''),(243019,41320,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(243020,41320,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(243021,41320,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(243022,41320,'blocks_10_testimonial_slider_content_title',''),(243023,41320,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(243024,41320,'blocks_10_testimonial_slider_content_heading','Testimonials'),(243025,41320,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(243026,41320,'blocks_10_testimonial_slider_content_text',''),(243027,41320,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(243028,41320,'blocks_10_testimonial_slider_content_actions',''),(243029,41320,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(243030,41320,'blocks_10_testimonial_slider_content',''),(243031,41320,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(243032,41320,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(243033,41320,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(243034,41320,'blocks_10_testimonial_slider_ambassador_bool','0'),(243035,41320,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(243036,41320,'blocks_11_acfe_flexible_toggle',''),(243037,41320,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(243038,41320,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(243039,41320,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(243040,41320,'blocks_11_options_theme','#ffffff'),(243041,41320,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(243042,41320,'blocks_11_options_state','0'),(243043,41320,'_blocks_11_options_state','field_6239fcb7508c5'),(243044,41320,'blocks_11_options',''),(243045,41320,'_blocks_11_options','field_6177e2991ac44'),(243046,41320,'blocks_11_content_title',''),(243047,41320,'_blocks_11_content_title','field_64d237e8bb1e2'),(243048,41320,'blocks_11_content_heading','Frequently Asked Questions '),(243049,41320,'_blocks_11_content_heading','field_64d237e8bb1e3'),(243050,41320,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(243051,41320,'_blocks_11_content_text','field_64d237e8bb1e4'),(243052,41320,'blocks_11_content_actions',''),(243053,41320,'_blocks_11_content_actions','field_64d237e8bb1e5'),(243054,41320,'blocks_11_content_align','left'),(243055,41320,'_blocks_11_content_align','field_64d2443e6b6aa'),(243056,41320,'blocks_11_content',''),(243057,41320,'_blocks_11_content','field_64d237e8bb1e1'),(243058,41320,'blocks_11_accordion_content','faqs'),(243059,41320,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(243060,41320,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(243061,41320,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(243062,41320,'blocks_11_actions',''),(243063,41320,'_blocks_11_actions','field_61a746a817f7a'),(243064,41321,'hide_hero','0'),(243065,41321,'_hide_hero','field_66a2380fcda39'),(243066,41321,'hero_title','Biomechanics and Pilates'),(243067,41321,'_hero_title','field_617571fe285e8'),(243068,41321,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(243069,41321,'_hero_text','field_6175723c285e9'),(243070,41321,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39231-3\";s:6:\"target\";s:0:\"\";}'),(243071,41321,'_hero_actions_0_button','field_61757281285eb'),(243072,41321,'hero_actions','1'),(243073,41321,'_hero_actions','field_61757270285ea'),(243074,41321,'hero_style','default'),(243075,41321,'_hero_style','field_62051d9dc5324'),(243076,41321,'_thumbnail_id','39243'),(243077,41321,'__thumbnail_id','field_617570855ddaf'),(243078,41321,'hero_image_pos_x','right'),(243079,41321,'_hero_image_pos_x','field_62ec3d05390bb'),(243080,41321,'hero_image_pos_y','top'),(243081,41321,'_hero_image_pos_y','field_62ec3d05390bc'),(243082,41321,'hero_image_pos',''),(243083,41321,'_hero_image_pos','field_62ec3d05390ba'),(243084,41321,'fft_hide_from_listings','0'),(243085,41321,'_fft_hide_from_listings','field_61f1320446ab2'),(243086,41321,'fft_page_format','default'),(243087,41321,'_fft_page_format','field_61ae213f1f218'),(243088,41321,'fft_hide_nav','0'),(243089,41321,'_fft_hide_nav','field_635bd5e43527c'),(243090,41321,'fft_hide_header_call_to_action','0'),(243091,41321,'_fft_hide_header_call_to_action','field_635bd6723527d'),(243092,41321,'fft_page_sitemap','0'),(243093,41321,'_fft_page_sitemap','field_61af9b34e8181'),(243094,41321,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:18:\"testimonial_slider\";}'),(243095,41321,'_blocks','field_6176696113096'),(243096,41321,'blocks_0_acfe_flexible_toggle',''),(243097,41321,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(243098,41321,'blocks_0_acfe_flexible_layout_title','Icons'),(243099,41321,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(243100,41321,'blocks_0_options_theme','#b61234'),(243101,41321,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(243102,41321,'blocks_0_options_format','row'),(243103,41321,'_blocks_0_options_format','field_64bfde9a90690'),(243104,41321,'blocks_0_options',''),(243105,41321,'_blocks_0_options','field_64bfdd9b90684'),(243106,41321,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(243107,41321,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(243108,41321,'blocks_0_icon_row_items_0_label','Accreditation'),(243109,41321,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(243110,41321,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(243111,41321,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(243112,41321,'blocks_0_icon_row_items_1_icon','finance.svg'),(243113,41321,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(243114,41321,'blocks_0_icon_row_items_1_label','Flexible payment options'),(243115,41321,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(243116,41321,'blocks_0_icon_row_items_1_text','Including 0% finance'),(243117,41321,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(243118,41321,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(243119,41321,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(243120,41321,'blocks_0_icon_row_items_2_label','Earning potential'),(243121,41321,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(243122,41321,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(243123,41321,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(243124,41321,'blocks_0_icon_row_items','3'),(243125,41321,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(243126,41321,'blocks_1_acfe_flexible_toggle',''),(243127,41321,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(243128,41321,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(243129,41321,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(243130,41321,'blocks_1_options_theme','#ffffff'),(243131,41321,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(243132,41321,'blocks_1_options_reverse','0'),(243133,41321,'_blocks_1_options_reverse','field_61768049bb8ac'),(243134,41321,'blocks_1_options',''),(243135,41321,'_blocks_1_options','field_617682517c334'),(243136,41321,'blocks_1_split_5050_image','41318'),(243137,41321,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(243138,41321,'blocks_1_split_5050_video',''),(243139,41321,'_blocks_1_split_5050_video','field_6239f3160848a'),(243140,41321,'blocks_1_split_5050_content_title',''),(243141,41321,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(243142,41321,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(243143,41321,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(243144,41321,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(243145,41321,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(243146,41321,'blocks_1_split_5050_content_actions',''),(243147,41321,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(243148,41321,'blocks_1_split_5050_content',''),(243149,41321,'_blocks_1_split_5050_content','field_61767afceb8ba'),(243150,41321,'blocks_2_acfe_flexible_toggle',''),(243151,41321,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(243152,41321,'blocks_2_acfe_flexible_layout_title','Form'),(243153,41321,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(243154,41321,'blocks_2_row_content_format','standard'),(243155,41321,'_blocks_2_row_content_format','field_6481ead962881'),(243156,41321,'blocks_2_row_content_title',''),(243157,41321,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(243158,41321,'blocks_2_row_content_heading','Enquire Today'),(243159,41321,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(243160,41321,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(243161,41321,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(243162,41321,'blocks_2_row_content_actions',''),(243163,41321,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(243164,41321,'blocks_2_row_content',''),(243165,41321,'_blocks_2_row_content','field_61a0f5f5b3db0'),(243166,41321,'blocks_2_row_form','40394'),(243167,41321,'_blocks_2_row_form','field_61a4ff2c0b08e'),(243168,41321,'blocks_2_row_form_button_label',''),(243169,41321,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(243170,41321,'blocks_3_acfe_flexible_toggle',''),(243171,41321,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(243172,41321,'blocks_3_acfe_flexible_layout_title','Video'),(243173,41321,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(243174,41321,'blocks_3_size','large'),(243175,41321,'_blocks_3_size','field_6487038f297c1'),(243176,41321,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(243177,41321,'_blocks_3_row_content_title','field_64870132a865d'),(243178,41321,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(243179,41321,'_blocks_3_row_content_heading','field_64870142a865e'),(243180,41321,'blocks_3_row_content_text',''),(243181,41321,'_blocks_3_row_content_text','field_64870148a865f'),(243182,41321,'blocks_3_row_content',''),(243183,41321,'_blocks_3_row_content','field_6487008ba865c'),(243184,41321,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(243185,41321,'_blocks_3_video_src','field_6193c4a98ec07'),(243186,41321,'blocks_3_video_thumbnail',''),(243187,41321,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(243188,41321,'blocks_4_acfe_flexible_toggle',''),(243189,41321,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(243190,41321,'blocks_4_acfe_flexible_layout_title','Steps'),(243191,41321,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(243192,41321,'blocks_4_row_content_title',''),(243193,41321,'_blocks_4_row_content_title','field_64888cd1e26e0'),(243194,41321,'blocks_4_row_content_heading','Benefits of training with us'),(243195,41321,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(243196,41321,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(243197,41321,'_blocks_4_row_content_text','field_64888ce2e26e2'),(243198,41321,'blocks_4_row_content_actions',''),(243199,41321,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(243200,41321,'blocks_4_row_content',''),(243201,41321,'_blocks_4_row_content','field_64888cb0e26df'),(243202,41321,'blocks_4_steps_0_icon','progression.svg'),(243203,41321,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(243204,41321,'blocks_4_steps_0_title','Earning potential'),(243205,41321,'_blocks_4_steps_0_title','field_64888d94e26e7'),(243206,41321,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(243207,41321,'_blocks_4_steps_0_text','field_64888d99e26e8'),(243208,41321,'blocks_4_steps_1_icon','support.svg'),(243209,41321,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(243210,41321,'blocks_4_steps_1_title','Lifetime Learning Promise'),(243211,41321,'_blocks_4_steps_1_title','field_64888d94e26e7'),(243212,41321,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(243213,41321,'_blocks_4_steps_1_text','field_64888d99e26e8'),(243214,41321,'blocks_4_steps_2_icon','qualification.svg'),(243215,41321,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(243216,41321,'blocks_4_steps_2_title','Evidence based hands on learning'),(243217,41321,'_blocks_4_steps_2_title','field_64888d94e26e7'),(243218,41321,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(243219,41321,'_blocks_4_steps_2_text','field_64888d99e26e8'),(243220,41321,'blocks_4_steps_3_icon','leaders.svg'),(243221,41321,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(243222,41321,'blocks_4_steps_3_title','Stand out from the crowd'),(243223,41321,'_blocks_4_steps_3_title','field_64888d94e26e7'),(243224,41321,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(243225,41321,'_blocks_4_steps_3_text','field_64888d99e26e8'),(243226,41321,'blocks_4_steps','4'),(243227,41321,'_blocks_4_steps','field_64888d44e26e5'),(243228,41321,'blocks_5_acfe_flexible_toggle',''),(243229,41321,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(243230,41321,'blocks_5_acfe_flexible_layout_title','Tabs'),(243231,41321,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(243232,41321,'blocks_5_options_theme','#ffffff'),(243233,41321,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(243234,41321,'blocks_5_options',''),(243235,41321,'_blocks_5_options','field_6177cfcd8140f'),(243236,41321,'blocks_5_tabs_0_tab_label','What will I learn?'),(243237,41321,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(243238,41321,'blocks_5_tabs_0_tab_content_title',''),(243239,41321,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(243240,41321,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(243241,41321,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(243242,41321,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients:\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>'),(243243,41321,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(243244,41321,'blocks_5_tabs_0_tab_content_actions',''),(243245,41321,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(243246,41321,'blocks_5_tabs_0_tab_content',''),(243247,41321,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(243248,41321,'blocks_5_tabs_0_tab_image','39076'),(243249,41321,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(243250,41321,'blocks_5_tabs_1_tab_label','What do I need?'),(243251,41321,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(243252,41321,'blocks_5_tabs_1_tab_content_title',''),(243253,41321,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(243254,41321,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(243255,41321,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(243256,41321,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(243257,41321,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(243258,41321,'blocks_5_tabs_1_tab_content_actions',''),(243259,41321,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(243260,41321,'blocks_5_tabs_1_tab_content',''),(243261,41321,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(243262,41321,'blocks_5_tabs_1_tab_image','40487'),(243263,41321,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(243264,41321,'blocks_5_tabs_2_tab_label','Where can I learn?'),(243265,41321,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(243266,41321,'blocks_5_tabs_2_tab_content_title',''),(243267,41321,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(243268,41321,'blocks_5_tabs_2_tab_content_heading','Locations'),(243269,41321,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(243270,41321,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(243271,41321,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(243272,41321,'blocks_5_tabs_2_tab_content_actions',''),(243273,41321,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(243274,41321,'blocks_5_tabs_2_tab_content',''),(243275,41321,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(243276,41321,'blocks_5_tabs_2_tab_image','39224'),(243277,41321,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(243278,41321,'blocks_5_tabs','3'),(243279,41321,'_blocks_5_tabs','field_6177cff281419'),(243280,41321,'blocks_6_acfe_flexible_toggle',''),(243281,41321,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(243282,41321,'blocks_6_acfe_flexible_layout_title','Text Block'),(243283,41321,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(243284,41321,'blocks_6_options_theme','#b61234'),(243285,41321,'_blocks_6_options_theme','field_6176830e2ad17'),(243286,41321,'blocks_6_options',''),(243287,41321,'_blocks_6_options','field_6176830e2ad16'),(243288,41321,'blocks_6_text_block_heading','Fees & Funding Options'),(243289,41321,'_blocks_6_text_block_heading','field_617669d413097'),(243290,41321,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(243291,41321,'_blocks_6_text_block_content','field_617669ec13098'),(243292,41321,'blocks_8_acfe_flexible_toggle',''),(243293,41321,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(243294,41321,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(243295,41321,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(243296,41321,'blocks_8_options_theme','#ffffff'),(243297,41321,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(243298,41321,'blocks_8_options_reverse','0'),(243299,41321,'_blocks_8_options_reverse','field_61768049bb8ac'),(243300,41321,'blocks_8_options',''),(243301,41321,'_blocks_8_options','field_617682517c334'),(243302,41321,'blocks_8_split_5050_image','40484'),(243303,41321,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(243304,41321,'blocks_8_split_5050_video',''),(243305,41321,'_blocks_8_split_5050_video','field_6239f3160848a'),(243306,41321,'blocks_8_split_5050_content_title',''),(243307,41321,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(243308,41321,'blocks_8_split_5050_content_heading','Why study this course?'),(243309,41321,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(243310,41321,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(243311,41321,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(243312,41321,'blocks_8_split_5050_content_actions',''),(243313,41321,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(243314,41321,'blocks_8_split_5050_content',''),(243315,41321,'_blocks_8_split_5050_content','field_61767afceb8ba'),(243316,41321,'blocks_7_acfe_flexible_toggle',''),(243317,41321,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(243318,41321,'blocks_7_acfe_flexible_layout_title','Icons'),(243319,41321,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(243320,41321,'blocks_7_options_theme','#b61234'),(243321,41321,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(243322,41321,'blocks_7_options_format','row'),(243323,41321,'_blocks_7_options_format','field_64bfde9a90690'),(243324,41321,'blocks_7_options',''),(243325,41321,'_blocks_7_options','field_64bfdd9b90684'),(243326,41321,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(243327,41321,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(243328,41321,'blocks_7_icon_row_items_0_label','Pay in full '),(243329,41321,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(243330,41321,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(243331,41321,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(243332,41321,'blocks_7_icon_row_items_1_icon','finance.svg'),(243333,41321,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(243334,41321,'blocks_7_icon_row_items_1_label','0% finance'),(243335,41321,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(243336,41321,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(243337,41321,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(243338,41321,'blocks_7_icon_row_items_2_icon','deposit.svg'),(243339,41321,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(243340,41321,'blocks_7_icon_row_items_2_label','Deposit & balance'),(243341,41321,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(243342,41321,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(243343,41321,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(243344,41321,'blocks_7_icon_row_items','3'),(243345,41321,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(243346,41321,'blocks_9_acfe_flexible_toggle',''),(243347,41321,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(243348,41321,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(243349,41321,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(243350,41321,'blocks_9_options_theme','#ffffff'),(243351,41321,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(243352,41321,'blocks_9_options_state','0'),(243353,41321,'_blocks_9_options_state','field_6239fcb7508c5'),(243354,41321,'blocks_9_options',''),(243355,41321,'_blocks_9_options','field_6177e2991ac44'),(243356,41321,'blocks_9_content_title',''),(243357,41321,'_blocks_9_content_title','field_64d237e8bb1e2'),(243358,41321,'blocks_9_content_heading','Frequently asked questions '),(243359,41321,'_blocks_9_content_heading','field_64d237e8bb1e3'),(243360,41321,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(243361,41321,'_blocks_9_content_text','field_64d237e8bb1e4'),(243362,41321,'blocks_9_content_actions',''),(243363,41321,'_blocks_9_content_actions','field_64d237e8bb1e5'),(243364,41321,'blocks_9_content_align','left'),(243365,41321,'_blocks_9_content_align','field_64d2443e6b6aa'),(243366,41321,'blocks_9_content',''),(243367,41321,'_blocks_9_content','field_64d237e8bb1e1'),(243368,41321,'blocks_9_accordion_content','faqs'),(243369,41321,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(243370,41321,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(243371,41321,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(243372,41321,'blocks_9_actions',''),(243373,41321,'_blocks_9_actions','field_61a746a817f7a'),(243374,41321,'blocks_10_acfe_flexible_toggle',''),(243375,41321,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(243376,41321,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(243377,41321,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(243378,41321,'blocks_10_testimonial_slider_content_title',''),(243379,41321,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(243380,41321,'blocks_10_testimonial_slider_content_heading','Testimonials'),(243381,41321,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(243382,41321,'blocks_10_testimonial_slider_content_text',''),(243383,41321,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(243384,41321,'blocks_10_testimonial_slider_content_actions',''),(243385,41321,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(243386,41321,'blocks_10_testimonial_slider_content',''),(243387,41321,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(243388,41321,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(243389,41321,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(243390,41321,'blocks_10_testimonial_slider_ambassador_bool','0'),(243391,41321,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(243392,39214,'_yoast_wpseo_inclusive_language_score','90'),(243393,41322,'hide_hero','0'),(243394,41322,'_hide_hero','field_66a2380fcda39'),(243395,41322,'hero_title','Biomechanics and Personal Training'),(243396,41322,'_hero_title','field_617571fe285e8'),(243397,41322,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(243398,41322,'_hero_text','field_6175723c285e9'),(243399,41322,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(243400,41322,'_hero_actions_0_button','field_61757281285eb'),(243401,41322,'hero_actions','1'),(243402,41322,'_hero_actions','field_61757270285ea'),(243403,41322,'hero_style','default'),(243404,41322,'_hero_style','field_62051d9dc5324'),(243405,41322,'_thumbnail_id','39215'),(243406,41322,'__thumbnail_id','field_617570855ddaf'),(243407,41322,'hero_image_pos_x','right'),(243408,41322,'_hero_image_pos_x','field_62ec3d05390bb'),(243409,41322,'hero_image_pos_y','top'),(243410,41322,'_hero_image_pos_y','field_62ec3d05390bc'),(243411,41322,'hero_image_pos',''),(243412,41322,'_hero_image_pos','field_62ec3d05390ba'),(243413,41322,'fft_hide_from_listings','0'),(243414,41322,'_fft_hide_from_listings','field_61f1320446ab2'),(243415,41322,'fft_page_format','default'),(243416,41322,'_fft_page_format','field_61ae213f1f218'),(243417,41322,'fft_hide_nav','0'),(243418,41322,'_fft_hide_nav','field_635bd5e43527c'),(243419,41322,'fft_hide_header_call_to_action','0'),(243420,41322,'_fft_hide_header_call_to_action','field_635bd6723527d'),(243421,41322,'fft_page_sitemap','0'),(243422,41322,'_fft_page_sitemap','field_61af9b34e8181'),(243423,41322,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(243424,41322,'_blocks','field_6176696113096'),(243425,41322,'blocks_0_acfe_flexible_toggle',''),(243426,41322,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(243427,41322,'blocks_0_acfe_flexible_layout_title','Template'),(243428,41322,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(243429,41322,'blocks_0_template','39087'),(243430,41322,'_blocks_0_template','field_617bdd570fe01'),(243431,41322,'blocks_5_acfe_flexible_toggle',''),(243432,41322,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(243433,41322,'blocks_5_acfe_flexible_layout_title','Tabs'),(243434,41322,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(243435,41322,'blocks_5_options_theme','#ffffff'),(243436,41322,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(243437,41322,'blocks_5_options',''),(243438,41322,'_blocks_5_options','field_6177cfcd8140f'),(243439,41322,'blocks_5_tabs_0_tab_label','What will I learn?'),(243440,41322,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(243441,41322,'blocks_5_tabs_0_tab_content_title',''),(243442,41322,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(243443,41322,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(243444,41322,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(243445,41322,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>'),(243446,41322,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(243447,41322,'blocks_5_tabs_0_tab_content_actions',''),(243448,41322,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(243449,41322,'blocks_5_tabs_0_tab_content',''),(243450,41322,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(243451,41322,'blocks_5_tabs_0_tab_image','39076'),(243452,41322,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(243453,41322,'blocks_5_tabs_1_tab_label','What do I need?'),(243454,41322,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(243455,41322,'blocks_5_tabs_1_tab_content_title',''),(243456,41322,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(243457,41322,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(243458,41322,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(243459,41322,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(243460,41322,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(243461,41322,'blocks_5_tabs_1_tab_content_actions',''),(243462,41322,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(243463,41322,'blocks_5_tabs_1_tab_content',''),(243464,41322,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(243465,41322,'blocks_5_tabs_1_tab_image','39223'),(243466,41322,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(243467,41322,'blocks_5_tabs_2_tab_label','Where can I learn?'),(243468,41322,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(243469,41322,'blocks_5_tabs_2_tab_content_title',''),(243470,41322,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(243471,41322,'blocks_5_tabs_2_tab_content_heading','Locations'),(243472,41322,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(243473,41322,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(243474,41322,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(243475,41322,'blocks_5_tabs_2_tab_content_actions',''),(243476,41322,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(243477,41322,'blocks_5_tabs_2_tab_content',''),(243478,41322,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(243479,41322,'blocks_5_tabs_2_tab_image','39224'),(243480,41322,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(243481,41322,'blocks_5_tabs','3'),(243482,41322,'_blocks_5_tabs','field_6177cff281419'),(243483,41322,'blocks_6_acfe_flexible_toggle',''),(243484,41322,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(243485,41322,'blocks_6_acfe_flexible_layout_title','Text Block'),(243486,41322,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(243487,41322,'blocks_6_options_theme','#b61234'),(243488,41322,'_blocks_6_options_theme','field_6176830e2ad17'),(243489,41322,'blocks_6_options',''),(243490,41322,'_blocks_6_options','field_6176830e2ad16'),(243491,41322,'blocks_6_text_block_heading','Fees & Funding Options'),(243492,41322,'_blocks_6_text_block_heading','field_617669d413097'),(243493,41322,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(243494,41322,'_blocks_6_text_block_content','field_617669ec13098'),(243495,41322,'blocks_7_acfe_flexible_toggle',''),(243496,41322,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(243497,41322,'blocks_7_acfe_flexible_layout_title','Icons'),(243498,41322,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(243499,41322,'blocks_7_options_theme','#b61234'),(243500,41322,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(243501,41322,'blocks_7_options_format','row'),(243502,41322,'_blocks_7_options_format','field_64bfde9a90690'),(243503,41322,'blocks_7_options',''),(243504,41322,'_blocks_7_options','field_64bfdd9b90684'),(243505,41322,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(243506,41322,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(243507,41322,'blocks_7_icon_row_items_0_label','Pay in Full'),(243508,41322,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(243509,41322,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(243510,41322,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(243511,41322,'blocks_7_icon_row_items_1_icon','finance.svg'),(243512,41322,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(243513,41322,'blocks_7_icon_row_items_1_label','0% finance'),(243514,41322,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(243515,41322,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(243516,41322,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(243517,41322,'blocks_7_icon_row_items_2_icon','deposit.svg'),(243518,41322,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(243519,41322,'blocks_7_icon_row_items_2_label','Deposit & balance'),(243520,41322,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(243521,41322,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(243522,41322,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(243523,41322,'blocks_7_icon_row_items','3'),(243524,41322,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(243525,41322,'blocks_9_acfe_flexible_toggle',''),(243526,41322,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(243527,41322,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(243528,41322,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(243529,41322,'blocks_9_testimonial_slider_content_title',''),(243530,41322,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(243531,41322,'blocks_9_testimonial_slider_content_heading','Testimonials'),(243532,41322,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(243533,41322,'blocks_9_testimonial_slider_content_text',''),(243534,41322,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(243535,41322,'blocks_9_testimonial_slider_content_actions',''),(243536,41322,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(243537,41322,'blocks_9_testimonial_slider_content',''),(243538,41322,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(243539,41322,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(243540,41322,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(243541,41322,'blocks_9_testimonial_slider_ambassador_bool','0'),(243542,41322,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(243543,41322,'blocks_10_acfe_flexible_toggle',''),(243544,41322,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(243545,41322,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(243546,41322,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(243547,41322,'blocks_10_options_theme','#ffffff'),(243548,41322,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(243549,41322,'blocks_10_options_state','0'),(243550,41322,'_blocks_10_options_state','field_6239fcb7508c5'),(243551,41322,'blocks_10_options',''),(243552,41322,'_blocks_10_options','field_6177e2991ac44'),(243553,41322,'blocks_10_content_title',''),(243554,41322,'_blocks_10_content_title','field_64d237e8bb1e2'),(243555,41322,'blocks_10_content_heading','Frequently asked questions '),(243556,41322,'_blocks_10_content_heading','field_64d237e8bb1e3'),(243557,41322,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(243558,41322,'_blocks_10_content_text','field_64d237e8bb1e4'),(243559,41322,'blocks_10_content_actions',''),(243560,41322,'_blocks_10_content_actions','field_64d237e8bb1e5'),(243561,41322,'blocks_10_content_align','left'),(243562,41322,'_blocks_10_content_align','field_64d2443e6b6aa'),(243563,41322,'blocks_10_content',''),(243564,41322,'_blocks_10_content','field_64d237e8bb1e1'),(243565,41322,'blocks_10_accordion_content','faqs'),(243566,41322,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(243567,41322,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(243568,41322,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(243569,41322,'blocks_10_actions',''),(243570,41322,'_blocks_10_actions','field_61a746a817f7a'),(243571,41322,'blocks_8_acfe_flexible_toggle',''),(243572,41322,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(243573,41322,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(243574,41322,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(243575,41322,'blocks_8_options_theme','#f5f5f5'),(243576,41322,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(243577,41322,'blocks_8_options_reverse','0'),(243578,41322,'_blocks_8_options_reverse','field_61768049bb8ac'),(243579,41322,'blocks_8_options',''),(243580,41322,'_blocks_8_options','field_617682517c334'),(243581,41322,'blocks_8_split_5050_image','40920'),(243582,41322,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(243583,41322,'blocks_8_split_5050_video',''),(243584,41322,'_blocks_8_split_5050_video','field_6239f3160848a'),(243585,41322,'blocks_8_split_5050_content_title',''),(243586,41322,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(243587,41322,'blocks_8_split_5050_content_heading','Why Study This Course?'),(243588,41322,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(243589,41322,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(243590,41322,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(243591,41322,'blocks_8_split_5050_content_actions',''),(243592,41322,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(243593,41322,'blocks_8_split_5050_content',''),(243594,41322,'_blocks_8_split_5050_content','field_61767afceb8ba'),(243595,41322,'blocks_1_acfe_flexible_toggle',''),(243596,41322,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(243597,41322,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(243598,41322,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(243599,41322,'blocks_1_options_theme','#ffffff'),(243600,41322,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(243601,41322,'blocks_1_options_reverse','0'),(243602,41322,'_blocks_1_options_reverse','field_61768049bb8ac'),(243603,41322,'blocks_1_options',''),(243604,41322,'_blocks_1_options','field_617682517c334'),(243605,41322,'blocks_1_split_5050_image','39220'),(243606,41322,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(243607,41322,'blocks_1_split_5050_video',''),(243608,41322,'_blocks_1_split_5050_video','field_6239f3160848a'),(243609,41322,'blocks_1_split_5050_content_title',''),(243610,41322,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(243611,41322,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(243612,41322,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(243613,41322,'blocks_1_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(243614,41322,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(243615,41322,'blocks_1_split_5050_content_actions',''),(243616,41322,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(243617,41322,'blocks_1_split_5050_content',''),(243618,41322,'_blocks_1_split_5050_content','field_61767afceb8ba'),(243619,41322,'blocks_2_acfe_flexible_toggle',''),(243620,41322,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(243621,41322,'blocks_2_acfe_flexible_layout_title','Form'),(243622,41322,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(243623,41322,'blocks_2_row_content_format','standard'),(243624,41322,'_blocks_2_row_content_format','field_6481ead962881'),(243625,41322,'blocks_2_row_content_title',''),(243626,41322,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(243627,41322,'blocks_2_row_content_heading','Enquire Today'),(243628,41322,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(243629,41322,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(243630,41322,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(243631,41322,'blocks_2_row_content_actions',''),(243632,41322,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(243633,41322,'blocks_2_row_content',''),(243634,41322,'_blocks_2_row_content','field_61a0f5f5b3db0'),(243635,41322,'blocks_2_row_form','40394'),(243636,41322,'_blocks_2_row_form','field_61a4ff2c0b08e'),(243637,41322,'blocks_2_row_form_button_label',''),(243638,41322,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(243639,41322,'blocks_3_acfe_flexible_toggle',''),(243640,41322,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(243641,41322,'blocks_3_acfe_flexible_layout_title','Video'),(243642,41322,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(243643,41322,'blocks_3_size','large'),(243644,41322,'_blocks_3_size','field_6487038f297c1'),(243645,41322,'blocks_3_row_content_title',''),(243646,41322,'_blocks_3_row_content_title','field_64870132a865d'),(243647,41322,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(243648,41322,'_blocks_3_row_content_heading','field_64870142a865e'),(243649,41322,'blocks_3_row_content_text',''),(243650,41322,'_blocks_3_row_content_text','field_64870148a865f'),(243651,41322,'blocks_3_row_content',''),(243652,41322,'_blocks_3_row_content','field_6487008ba865c'),(243653,41322,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(243654,41322,'_blocks_3_video_src','field_6193c4a98ec07'),(243655,41322,'blocks_3_video_thumbnail','39186'),(243656,41322,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(243657,41322,'blocks_4_acfe_flexible_toggle',''),(243658,41322,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(243659,41322,'blocks_4_acfe_flexible_layout_title','Steps'),(243660,41322,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(243661,41322,'blocks_4_row_content_title',''),(243662,41322,'_blocks_4_row_content_title','field_64888cd1e26e0'),(243663,41322,'blocks_4_row_content_heading','Benefits of training with us'),(243664,41322,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(243665,41322,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(243666,41322,'_blocks_4_row_content_text','field_64888ce2e26e2'),(243667,41322,'blocks_4_row_content_actions',''),(243668,41322,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(243669,41322,'blocks_4_row_content',''),(243670,41322,'_blocks_4_row_content','field_64888cb0e26df'),(243671,41322,'blocks_4_steps_0_icon','progression.svg'),(243672,41322,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(243673,41322,'blocks_4_steps_0_title','Earning Potential'),(243674,41322,'_blocks_4_steps_0_title','field_64888d94e26e7'),(243675,41322,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(243676,41322,'_blocks_4_steps_0_text','field_64888d99e26e8'),(243677,41322,'blocks_4_steps_1_icon','support.svg'),(243678,41322,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(243679,41322,'blocks_4_steps_1_title','Lifetime Learning Promise'),(243680,41322,'_blocks_4_steps_1_title','field_64888d94e26e7'),(243681,41322,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(243682,41322,'_blocks_4_steps_1_text','field_64888d99e26e8'),(243683,41322,'blocks_4_steps_2_icon','qualification.svg'),(243684,41322,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(243685,41322,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(243686,41322,'_blocks_4_steps_2_title','field_64888d94e26e7'),(243687,41322,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(243688,41322,'_blocks_4_steps_2_text','field_64888d99e26e8'),(243689,41322,'blocks_4_steps_3_icon','leaders.svg'),(243690,41322,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(243691,41322,'blocks_4_steps_3_title','Stand Out From the Crowd'),(243692,41322,'_blocks_4_steps_3_title','field_64888d94e26e7'),(243693,41322,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(243694,41322,'_blocks_4_steps_3_text','field_64888d99e26e8'),(243695,41322,'blocks_4_steps','4'),(243696,41322,'_blocks_4_steps','field_64888d44e26e5'),(243697,41323,'hide_hero','0'),(243698,41323,'_hide_hero','field_66a2380fcda39'),(243699,41323,'hero_title','Biomechanics and Podiatrists'),(243700,41323,'_hero_title','field_617571fe285e8'),(243701,41323,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(243702,41323,'_hero_text','field_6175723c285e9'),(243703,41323,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(243704,41323,'_hero_actions_0_button','field_61757281285eb'),(243705,41323,'hero_actions','1'),(243706,41323,'_hero_actions','field_61757270285ea'),(243707,41323,'hero_style','default'),(243708,41323,'_hero_style','field_62051d9dc5324'),(243709,41323,'_thumbnail_id','39247'),(243710,41323,'__thumbnail_id','field_617570855ddaf'),(243711,41323,'hero_image_pos_x','right'),(243712,41323,'_hero_image_pos_x','field_62ec3d05390bb'),(243713,41323,'hero_image_pos_y','top'),(243714,41323,'_hero_image_pos_y','field_62ec3d05390bc'),(243715,41323,'hero_image_pos',''),(243716,41323,'_hero_image_pos','field_62ec3d05390ba'),(243717,41323,'fft_hide_from_listings','0'),(243718,41323,'_fft_hide_from_listings','field_61f1320446ab2'),(243719,41323,'fft_page_format','default'),(243720,41323,'_fft_page_format','field_61ae213f1f218'),(243721,41323,'fft_hide_nav','0'),(243722,41323,'_fft_hide_nav','field_635bd5e43527c'),(243723,41323,'fft_hide_header_call_to_action','0'),(243724,41323,'_fft_hide_header_call_to_action','field_635bd6723527d'),(243725,41323,'fft_page_sitemap','0'),(243726,41323,'_fft_page_sitemap','field_61af9b34e8181'),(243727,41323,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:18:\"testimonial_slider\";i:9;s:10:\"accordions\";}'),(243728,41323,'_blocks','field_6176696113096'),(243729,41323,'blocks_2_acfe_flexible_toggle',''),(243730,41323,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(243731,41323,'blocks_2_acfe_flexible_layout_title','Form'),(243732,41323,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(243733,41323,'blocks_2_row_content_format','standard'),(243734,41323,'_blocks_2_row_content_format','field_6481ead962881'),(243735,41323,'blocks_2_row_content_title',''),(243736,41323,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(243737,41323,'blocks_2_row_content_heading','Enquire Today'),(243738,41323,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(243739,41323,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(243740,41323,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(243741,41323,'blocks_2_row_content_actions',''),(243742,41323,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(243743,41323,'blocks_2_row_content',''),(243744,41323,'_blocks_2_row_content','field_61a0f5f5b3db0'),(243745,41323,'blocks_2_row_form','40394'),(243746,41323,'_blocks_2_row_form','field_61a4ff2c0b08e'),(243747,41323,'blocks_2_row_form_button_label',''),(243748,41323,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(243749,41323,'blocks_0_acfe_flexible_toggle',''),(243750,41323,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(243751,41323,'blocks_0_acfe_flexible_layout_title','Template'),(243752,41323,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(243753,41323,'blocks_0_template','39087'),(243754,41323,'_blocks_0_template','field_617bdd570fe01'),(243755,41323,'blocks_1_acfe_flexible_toggle',''),(243756,41323,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(243757,41323,'blocks_1_acfe_flexible_layout_title','Steps'),(243758,41323,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(243759,41323,'blocks_1_row_content_title',''),(243760,41323,'_blocks_1_row_content_title','field_64888cd1e26e0'),(243761,41323,'blocks_1_row_content_heading','Benefits of training with us'),(243762,41323,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(243763,41323,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(243764,41323,'_blocks_1_row_content_text','field_64888ce2e26e2'),(243765,41323,'blocks_1_row_content_actions',''),(243766,41323,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(243767,41323,'blocks_1_row_content',''),(243768,41323,'_blocks_1_row_content','field_64888cb0e26df'),(243769,41323,'blocks_1_steps_0_icon','progression.svg'),(243770,41323,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(243771,41323,'blocks_1_steps_0_title','Earning Potential'),(243772,41323,'_blocks_1_steps_0_title','field_64888d94e26e7'),(243773,41323,'blocks_1_steps_0_text','Attract new clients, retain current ones, and increase your rates with the Diploma in Biomechanics Coaching. This programme gives you a system to reach new clients and work more effectively with existing ones. Full body screenings may also require extra sessions, providing clients with thorough support and helping you build stronger, long-term relationships.'),(243774,41323,'_blocks_1_steps_0_text','field_64888d99e26e8'),(243775,41323,'blocks_1_steps_1_icon','support.svg'),(243776,41323,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(243777,41323,'blocks_1_steps_1_title','Lifetime Learning Promise'),(243778,41323,'_blocks_1_steps_1_title','field_64888d94e26e7'),(243779,41323,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(243780,41323,'_blocks_1_steps_1_text','field_64888d99e26e8'),(243781,41323,'blocks_1_steps_2_icon','qualification.svg'),(243782,41323,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(243783,41323,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(243784,41323,'_blocks_1_steps_2_title','field_64888d94e26e7'),(243785,41323,'blocks_1_steps_2_text','Developed through over 20 years of research with 4,000 participants - from those recovering from injury to active individuals - is a comprehensive, evidence-backed programme for mastering movement assessments. Through a blend of online learning and hands-on workshops, you’ll learn specific tests and screens to understand the roles of the pelvis, spine, and upper body in lower limb function, particularly foot mechanics. This approach equips you with the insights needed for effective orthotic prescription and tailored movement strategies, helping you optimise outcomes for every client.'),(243786,41323,'_blocks_1_steps_2_text','field_64888d99e26e8'),(243787,41323,'blocks_1_steps_3_icon','leaders.svg'),(243788,41323,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(243789,41323,'blocks_1_steps_3_title','Stand Out From the Crowd'),(243790,41323,'_blocks_1_steps_3_title','field_64888d94e26e7'),(243791,41323,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(243792,41323,'_blocks_1_steps_3_text','field_64888d99e26e8'),(243793,41323,'blocks_1_steps','4'),(243794,41323,'_blocks_1_steps','field_64888d44e26e5'),(243795,41323,'blocks_3_acfe_flexible_toggle',''),(243796,41323,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(243797,41323,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(243798,41323,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(243799,41323,'blocks_3_options_theme','#ffffff'),(243800,41323,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(243801,41323,'blocks_3_options_reverse','0'),(243802,41323,'_blocks_3_options_reverse','field_61768049bb8ac'),(243803,41323,'blocks_3_options',''),(243804,41323,'_blocks_3_options','field_617682517c334'),(243805,41323,'blocks_3_split_5050_image','39617'),(243806,41323,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(243807,41323,'blocks_3_split_5050_video',''),(243808,41323,'_blocks_3_split_5050_video','field_6239f3160848a'),(243809,41323,'blocks_3_split_5050_content_title',''),(243810,41323,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(243811,41323,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(243812,41323,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(243813,41323,'blocks_3_split_5050_content_text','This integrated system offers a full-body approach, covering the pelvis, spine, shoulders, knees, and feet in a comprehensive biomechanical assessment programme. By understanding how the upper body affects lower limb mechanics, podiatrists can address foot issues with a more holistic perspective. This unique assessment method enables you to uncover connections and solutions that traditional approaches may overlook, helping to improve client retention and build trust over time.\r\n\r\nOur model promotes a prevention-focused, system-led approach rather than just responding to symptoms. This proactive method allows you to expand your client base while reducing risks through exercise prescription, supporting clients before, during, and after injuries. It also empowers you with exercise prescription skills that complement your existing expertise, allowing for informed orthotic prescriptions and an integrated care approach to foot health.'),(243814,41323,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(243815,41323,'blocks_3_split_5050_content_actions',''),(243816,41323,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(243817,41323,'blocks_3_split_5050_content',''),(243818,41323,'_blocks_3_split_5050_content','field_61767afceb8ba'),(243819,41323,'blocks_4_acfe_flexible_toggle',''),(243820,41323,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(243821,41323,'blocks_4_acfe_flexible_layout_title','Tabs'),(243822,41323,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(243823,41323,'blocks_4_options_theme','#ffffff'),(243824,41323,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(243825,41323,'blocks_4_options',''),(243826,41323,'_blocks_4_options','field_6177cfcd8140f'),(243827,41323,'blocks_4_tabs_0_tab_label','What will I learn?'),(243828,41323,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(243829,41323,'blocks_4_tabs_0_tab_content_title',''),(243830,41323,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(243831,41323,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(243832,41323,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(243833,41323,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n 	<li>Screening System that Informs Orthotic Prescription</li>\r\n 	<li>Provide Exercise Prescription Skills</li>\r\n</ul>'),(243834,41323,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(243835,41323,'blocks_4_tabs_0_tab_content_actions',''),(243836,41323,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(243837,41323,'blocks_4_tabs_0_tab_content',''),(243838,41323,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(243839,41323,'blocks_4_tabs_0_tab_image','39076'),(243840,41323,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(243841,41323,'blocks_4_tabs_1_tab_label','What do I need?'),(243842,41323,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(243843,41323,'blocks_4_tabs_1_tab_content_title',''),(243844,41323,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(243845,41323,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(243846,41323,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(243847,41323,'blocks_4_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Podiatry Qualification</li>\r\n 	<li>Chiropodist Qualification</li>\r\n 	<li>Orthotist Qualification</li>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(243848,41323,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(243849,41323,'blocks_4_tabs_1_tab_content_actions',''),(243850,41323,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(243851,41323,'blocks_4_tabs_1_tab_content',''),(243852,41323,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(243853,41323,'blocks_4_tabs_1_tab_image','39223'),(243854,41323,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(243855,41323,'blocks_4_tabs_2_tab_label','Where can I learn?'),(243856,41323,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(243857,41323,'blocks_4_tabs_2_tab_content_title',''),(243858,41323,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(243859,41323,'blocks_4_tabs_2_tab_content_heading','Locations'),(243860,41323,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(243861,41323,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(243862,41323,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(243863,41323,'blocks_4_tabs_2_tab_content_actions',''),(243864,41323,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(243865,41323,'blocks_4_tabs_2_tab_content',''),(243866,41323,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(243867,41323,'blocks_4_tabs_2_tab_image','39224'),(243868,41323,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(243869,41323,'blocks_4_tabs','3'),(243870,41323,'_blocks_4_tabs','field_6177cff281419'),(243871,41323,'blocks_5_acfe_flexible_toggle',''),(243872,41323,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(243873,41323,'blocks_5_acfe_flexible_layout_title','Text Block'),(243874,41323,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(243875,41323,'blocks_5_options_theme','#b61234'),(243876,41323,'_blocks_5_options_theme','field_6176830e2ad17'),(243877,41323,'blocks_5_options',''),(243878,41323,'_blocks_5_options','field_6176830e2ad16'),(243879,41323,'blocks_5_text_block_heading','Fees & Funding Options'),(243880,41323,'_blocks_5_text_block_heading','field_617669d413097'),(243881,41323,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(243882,41323,'_blocks_5_text_block_content','field_617669ec13098'),(243883,41323,'blocks_6_acfe_flexible_toggle',''),(243884,41323,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(243885,41323,'blocks_6_acfe_flexible_layout_title','Icons'),(243886,41323,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(243887,41323,'blocks_6_options_theme','#b61234'),(243888,41323,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(243889,41323,'blocks_6_options_format','row'),(243890,41323,'_blocks_6_options_format','field_64bfde9a90690'),(243891,41323,'blocks_6_options',''),(243892,41323,'_blocks_6_options','field_64bfdd9b90684'),(243893,41323,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(243894,41323,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(243895,41323,'blocks_6_icon_row_items_0_label','Pay in Full'),(243896,41323,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(243897,41323,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(243898,41323,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(243899,41323,'blocks_6_icon_row_items_1_icon','finance.svg'),(243900,41323,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(243901,41323,'blocks_6_icon_row_items_1_label','0% finance'),(243902,41323,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(243903,41323,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(243904,41323,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(243905,41323,'blocks_6_icon_row_items_2_icon','deposit.svg'),(243906,41323,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(243907,41323,'blocks_6_icon_row_items_2_label','Deposit & balance'),(243908,41323,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(243909,41323,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(243910,41323,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(243911,41323,'blocks_6_icon_row_items','3'),(243912,41323,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(243913,41323,'blocks_8_acfe_flexible_toggle',''),(243914,41323,'_blocks_8_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(243915,41323,'blocks_8_acfe_flexible_layout_title','Testimonial Slider'),(243916,41323,'_blocks_8_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(243917,41323,'blocks_8_testimonial_slider_content_title',''),(243918,41323,'_blocks_8_testimonial_slider_content_title','field_617c033b39a60'),(243919,41323,'blocks_8_testimonial_slider_content_heading','Testimonials'),(243920,41323,'_blocks_8_testimonial_slider_content_heading','field_617c033b39a61'),(243921,41323,'blocks_8_testimonial_slider_content_text',''),(243922,41323,'_blocks_8_testimonial_slider_content_text','field_617c033b39a62'),(243923,41323,'blocks_8_testimonial_slider_content_actions',''),(243924,41323,'_blocks_8_testimonial_slider_content_actions','field_617c033b39a63'),(243925,41323,'blocks_8_testimonial_slider_content',''),(243926,41323,'_blocks_8_testimonial_slider_content','field_617c033b39a5f'),(243927,41323,'blocks_8_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(243928,41323,'_blocks_8_testimonial_slider_items','field_61812eaeb20eb'),(243929,41323,'blocks_8_testimonial_slider_ambassador_bool','0'),(243930,41323,'_blocks_8_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(243931,41323,'blocks_9_acfe_flexible_toggle',''),(243932,41323,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(243933,41323,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(243934,41323,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(243935,41323,'blocks_9_options_theme','#ffffff'),(243936,41323,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(243937,41323,'blocks_9_options_state','0'),(243938,41323,'_blocks_9_options_state','field_6239fcb7508c5'),(243939,41323,'blocks_9_options',''),(243940,41323,'_blocks_9_options','field_6177e2991ac44'),(243941,41323,'blocks_9_content_title',''),(243942,41323,'_blocks_9_content_title','field_64d237e8bb1e2'),(243943,41323,'blocks_9_content_heading','Frequently asked questions '),(243944,41323,'_blocks_9_content_heading','field_64d237e8bb1e3'),(243945,41323,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(243946,41323,'_blocks_9_content_text','field_64d237e8bb1e4'),(243947,41323,'blocks_9_content_actions',''),(243948,41323,'_blocks_9_content_actions','field_64d237e8bb1e5'),(243949,41323,'blocks_9_content_align','left'),(243950,41323,'_blocks_9_content_align','field_64d2443e6b6aa'),(243951,41323,'blocks_9_content',''),(243952,41323,'_blocks_9_content','field_64d237e8bb1e1'),(243953,41323,'blocks_9_accordion_content','faqs'),(243954,41323,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(243955,41323,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(243956,41323,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(243957,41323,'blocks_9_actions',''),(243958,41323,'_blocks_9_actions','field_61a746a817f7a'),(243959,41323,'blocks_7_acfe_flexible_toggle',''),(243960,41323,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(243961,41323,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(243962,41323,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(243963,41323,'blocks_7_options_theme','#f5f5f5'),(243964,41323,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(243965,41323,'blocks_7_options_reverse','0'),(243966,41323,'_blocks_7_options_reverse','field_61768049bb8ac'),(243967,41323,'blocks_7_options',''),(243968,41323,'_blocks_7_options','field_617682517c334'),(243969,41323,'blocks_7_split_5050_image','40920'),(243970,41323,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(243971,41323,'blocks_7_split_5050_video',''),(243972,41323,'_blocks_7_split_5050_video','field_6239f3160848a'),(243973,41323,'blocks_7_split_5050_content_title',''),(243974,41323,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(243975,41323,'blocks_7_split_5050_content_heading','Why Study This Course?'),(243976,41323,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(243977,41323,'blocks_7_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(243978,41323,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(243979,41323,'blocks_7_split_5050_content_actions',''),(243980,41323,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(243981,41323,'blocks_7_split_5050_content',''),(243982,41323,'_blocks_7_split_5050_content','field_61767afceb8ba'),(243983,39249,'_yoast_wpseo_inclusive_language_score','90'),(243984,41324,'hide_hero','0'),(243985,41324,'_hide_hero','field_66a2380fcda39'),(243986,41324,'hero_title','Biomechanics and Sports Coaches '),(243987,41324,'_hero_title','field_617571fe285e8'),(243988,41324,'hero_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(243989,41324,'_hero_text','field_6175723c285e9'),(243990,41324,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39249-3\";s:6:\"target\";s:0:\"\";}'),(243991,41324,'_hero_actions_0_button','field_61757281285eb'),(243992,41324,'hero_actions','1'),(243993,41324,'_hero_actions','field_61757270285ea'),(243994,41324,'hero_style','default'),(243995,41324,'_hero_style','field_62051d9dc5324'),(243996,41324,'_thumbnail_id','39251'),(243997,41324,'__thumbnail_id','field_617570855ddaf'),(243998,41324,'hero_image_pos_x','right'),(243999,41324,'_hero_image_pos_x','field_62ec3d05390bb'),(244000,41324,'hero_image_pos_y','top'),(244001,41324,'_hero_image_pos_y','field_62ec3d05390bc'),(244002,41324,'hero_image_pos',''),(244003,41324,'_hero_image_pos','field_62ec3d05390ba'),(244004,41324,'fft_hide_from_listings','0'),(244005,41324,'_fft_hide_from_listings','field_61f1320446ab2'),(244006,41324,'fft_page_format','default'),(244007,41324,'_fft_page_format','field_61ae213f1f218'),(244008,41324,'fft_hide_nav','0'),(244009,41324,'_fft_hide_nav','field_635bd5e43527c'),(244010,41324,'fft_hide_header_call_to_action','0'),(244011,41324,'_fft_hide_header_call_to_action','field_635bd6723527d'),(244012,41324,'fft_page_sitemap','0'),(244013,41324,'_fft_page_sitemap','field_61af9b34e8181'),(244014,41324,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"steps\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:10:\"accordions\";i:9;s:18:\"testimonial_slider\";}'),(244015,41324,'_blocks','field_6176696113096'),(244016,41324,'blocks_0_acfe_flexible_toggle',''),(244017,41324,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(244018,41324,'blocks_0_acfe_flexible_layout_title','Template'),(244019,41324,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(244020,41324,'blocks_0_template','39087'),(244021,41324,'_blocks_0_template','field_617bdd570fe01'),(244022,41324,'blocks_4_acfe_flexible_toggle',''),(244023,41324,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(244024,41324,'blocks_4_acfe_flexible_layout_title','Tabs'),(244025,41324,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(244026,41324,'blocks_4_options_theme','#ffffff'),(244027,41324,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(244028,41324,'blocks_4_options',''),(244029,41324,'_blocks_4_options','field_6177cfcd8140f'),(244030,41324,'blocks_4_tabs_0_tab_label','What will I learn ?'),(244031,41324,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(244032,41324,'blocks_4_tabs_0_tab_content_title',''),(244033,41324,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(244034,41324,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(244035,41324,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(244036,41324,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>'),(244037,41324,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(244038,41324,'blocks_4_tabs_0_tab_content_actions',''),(244039,41324,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(244040,41324,'blocks_4_tabs_0_tab_content',''),(244041,41324,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(244042,41324,'blocks_4_tabs_0_tab_image','39076'),(244043,41324,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(244044,41324,'blocks_4_tabs_1_tab_label','What do I need ?'),(244045,41324,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(244046,41324,'blocks_4_tabs_1_tab_content_title',''),(244047,41324,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(244048,41324,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(244049,41324,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(244050,41324,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(244051,41324,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(244052,41324,'blocks_4_tabs_1_tab_content_actions',''),(244053,41324,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(244054,41324,'blocks_4_tabs_1_tab_content',''),(244055,41324,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(244056,41324,'blocks_4_tabs_1_tab_image','39223'),(244057,41324,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(244058,41324,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(244059,41324,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(244060,41324,'blocks_4_tabs_2_tab_content_title',''),(244061,41324,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(244062,41324,'blocks_4_tabs_2_tab_content_heading','Locations'),(244063,41324,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(244064,41324,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(244065,41324,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(244066,41324,'blocks_4_tabs_2_tab_content_actions',''),(244067,41324,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(244068,41324,'blocks_4_tabs_2_tab_content',''),(244069,41324,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(244070,41324,'blocks_4_tabs_2_tab_image','39224'),(244071,41324,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(244072,41324,'blocks_4_tabs','3'),(244073,41324,'_blocks_4_tabs','field_6177cff281419'),(244074,41324,'blocks_5_acfe_flexible_toggle',''),(244075,41324,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(244076,41324,'blocks_5_acfe_flexible_layout_title','Text Block'),(244077,41324,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(244078,41324,'blocks_5_options_theme','#b61234'),(244079,41324,'_blocks_5_options_theme','field_6176830e2ad17'),(244080,41324,'blocks_5_options',''),(244081,41324,'_blocks_5_options','field_6176830e2ad16'),(244082,41324,'blocks_5_text_block_heading','Fees & Funding Options'),(244083,41324,'_blocks_5_text_block_heading','field_617669d413097'),(244084,41324,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(244085,41324,'_blocks_5_text_block_content','field_617669ec13098'),(244086,41324,'blocks_6_acfe_flexible_toggle',''),(244087,41324,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(244088,41324,'blocks_6_acfe_flexible_layout_title','Icons'),(244089,41324,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(244090,41324,'blocks_6_options_theme','#b61234'),(244091,41324,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(244092,41324,'blocks_6_options_format','row'),(244093,41324,'_blocks_6_options_format','field_64bfde9a90690'),(244094,41324,'blocks_6_options',''),(244095,41324,'_blocks_6_options','field_64bfdd9b90684'),(244096,41324,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(244097,41324,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(244098,41324,'blocks_6_icon_row_items_0_label','Pay in Full'),(244099,41324,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(244100,41324,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(244101,41324,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(244102,41324,'blocks_6_icon_row_items_1_icon','finance.svg'),(244103,41324,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(244104,41324,'blocks_6_icon_row_items_1_label','0% finance'),(244105,41324,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(244106,41324,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(244107,41324,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(244108,41324,'blocks_6_icon_row_items_2_icon','deposit.svg'),(244109,41324,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(244110,41324,'blocks_6_icon_row_items_2_label','Deposit & balance'),(244111,41324,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(244112,41324,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(244113,41324,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(244114,41324,'blocks_6_icon_row_items','3'),(244115,41324,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(244116,41324,'blocks_1_acfe_flexible_toggle',''),(244117,41324,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(244118,41324,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(244119,41324,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(244120,41324,'blocks_1_options_theme','#ffffff'),(244121,41324,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(244122,41324,'blocks_1_options_reverse','0'),(244123,41324,'_blocks_1_options_reverse','field_61768049bb8ac'),(244124,41324,'blocks_1_options',''),(244125,41324,'_blocks_1_options','field_617682517c334'),(244126,41324,'blocks_1_split_5050_image','39252'),(244127,41324,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(244128,41324,'blocks_1_split_5050_video',''),(244129,41324,'_blocks_1_split_5050_video','field_6239f3160848a'),(244130,41324,'blocks_1_split_5050_content_title',''),(244131,41324,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(244132,41324,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports coach'),(244133,41324,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(244134,41324,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from, injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(244135,41324,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(244136,41324,'blocks_1_split_5050_content_actions',''),(244137,41324,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(244138,41324,'blocks_1_split_5050_content',''),(244139,41324,'_blocks_1_split_5050_content','field_61767afceb8ba'),(244140,41324,'blocks_2_acfe_flexible_toggle',''),(244141,41324,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(244142,41324,'blocks_2_acfe_flexible_layout_title','Form'),(244143,41324,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(244144,41324,'blocks_2_row_content_format','standard'),(244145,41324,'_blocks_2_row_content_format','field_6481ead962881'),(244146,41324,'blocks_2_row_content_title',''),(244147,41324,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(244148,41324,'blocks_2_row_content_heading','Enquire Today'),(244149,41324,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(244150,41324,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(244151,41324,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(244152,41324,'blocks_2_row_content_actions',''),(244153,41324,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(244154,41324,'blocks_2_row_content',''),(244155,41324,'_blocks_2_row_content','field_61a0f5f5b3db0'),(244156,41324,'blocks_2_row_form','40394'),(244157,41324,'_blocks_2_row_form','field_61a4ff2c0b08e'),(244158,41324,'blocks_2_row_form_button_label',''),(244159,41324,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(244160,41324,'blocks_3_acfe_flexible_toggle',''),(244161,41324,'_blocks_3_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(244162,41324,'blocks_3_acfe_flexible_layout_title','Steps'),(244163,41324,'_blocks_3_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(244164,41324,'blocks_3_row_content_title',''),(244165,41324,'_blocks_3_row_content_title','field_64888cd1e26e0'),(244166,41324,'blocks_3_row_content_heading','Benefits of training with us'),(244167,41324,'_blocks_3_row_content_heading','field_64888cd9e26e1'),(244168,41324,'blocks_3_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(244169,41324,'_blocks_3_row_content_text','field_64888ce2e26e2'),(244170,41324,'blocks_3_row_content_actions',''),(244171,41324,'_blocks_3_row_content_actions','field_64888cf5e26e3'),(244172,41324,'blocks_3_row_content',''),(244173,41324,'_blocks_3_row_content','field_64888cb0e26df'),(244174,41324,'blocks_3_steps_0_icon','progression.svg'),(244175,41324,'_blocks_3_steps_0_icon','field_64888d53e26e6'),(244176,41324,'blocks_3_steps_0_title','Earning potential'),(244177,41324,'_blocks_3_steps_0_title','field_64888d94e26e7'),(244178,41324,'blocks_3_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(244179,41324,'_blocks_3_steps_0_text','field_64888d99e26e8'),(244180,41324,'blocks_3_steps_1_icon','support.svg'),(244181,41324,'_blocks_3_steps_1_icon','field_64888d53e26e6'),(244182,41324,'blocks_3_steps_1_title','Lifetime Learning Promise'),(244183,41324,'_blocks_3_steps_1_title','field_64888d94e26e7'),(244184,41324,'blocks_3_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(244185,41324,'_blocks_3_steps_1_text','field_64888d99e26e8'),(244186,41324,'blocks_3_steps_2_icon','qualification.svg'),(244187,41324,'_blocks_3_steps_2_icon','field_64888d53e26e6'),(244188,41324,'blocks_3_steps_2_title','Evidence based hands on learning'),(244189,41324,'_blocks_3_steps_2_title','field_64888d94e26e7'),(244190,41324,'blocks_3_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(244191,41324,'_blocks_3_steps_2_text','field_64888d99e26e8'),(244192,41324,'blocks_3_steps_3_icon','leaders.svg'),(244193,41324,'_blocks_3_steps_3_icon','field_64888d53e26e6'),(244194,41324,'blocks_3_steps_3_title','Stand out from the crowd'),(244195,41324,'_blocks_3_steps_3_title','field_64888d94e26e7'),(244196,41324,'blocks_3_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(244197,41324,'_blocks_3_steps_3_text','field_64888d99e26e8'),(244198,41324,'blocks_3_steps','4'),(244199,41324,'_blocks_3_steps','field_64888d44e26e5'),(244200,41324,'blocks_7_acfe_flexible_toggle',''),(244201,41324,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(244202,41324,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(244203,41324,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(244204,41324,'blocks_7_options_theme','#ffffff'),(244205,41324,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(244206,41324,'blocks_7_options_reverse','0'),(244207,41324,'_blocks_7_options_reverse','field_61768049bb8ac'),(244208,41324,'blocks_7_options',''),(244209,41324,'_blocks_7_options','field_617682517c334'),(244210,41324,'blocks_7_split_5050_image','40491'),(244211,41324,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(244212,41324,'blocks_7_split_5050_video',''),(244213,41324,'_blocks_7_split_5050_video','field_6239f3160848a'),(244214,41324,'blocks_7_split_5050_content_title',''),(244215,41324,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(244216,41324,'blocks_7_split_5050_content_heading','Why study this course ?'),(244217,41324,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(244218,41324,'blocks_7_split_5050_content_text','<ul>\r\n 	<li style=\"text-align: left;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: left;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: left;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: left;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: left;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(244219,41324,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(244220,41324,'blocks_7_split_5050_content_actions',''),(244221,41324,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(244222,41324,'blocks_7_split_5050_content',''),(244223,41324,'_blocks_7_split_5050_content','field_61767afceb8ba'),(244224,41324,'blocks_8_acfe_flexible_toggle',''),(244225,41324,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(244226,41324,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(244227,41324,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(244228,41324,'blocks_8_options_theme','#ffffff'),(244229,41324,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(244230,41324,'blocks_8_options_state','0'),(244231,41324,'_blocks_8_options_state','field_6239fcb7508c5'),(244232,41324,'blocks_8_options',''),(244233,41324,'_blocks_8_options','field_6177e2991ac44'),(244234,41324,'blocks_8_content_title',''),(244235,41324,'_blocks_8_content_title','field_64d237e8bb1e2'),(244236,41324,'blocks_8_content_heading','Frequently asked questions '),(244237,41324,'_blocks_8_content_heading','field_64d237e8bb1e3'),(244238,41324,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(244239,41324,'_blocks_8_content_text','field_64d237e8bb1e4'),(244240,41324,'blocks_8_content_actions',''),(244241,41324,'_blocks_8_content_actions','field_64d237e8bb1e5'),(244242,41324,'blocks_8_content_align','left'),(244243,41324,'_blocks_8_content_align','field_64d2443e6b6aa'),(244244,41324,'blocks_8_content',''),(244245,41324,'_blocks_8_content','field_64d237e8bb1e1'),(244246,41324,'blocks_8_accordion_content','faqs'),(244247,41324,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(244248,41324,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(244249,41324,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(244250,41324,'blocks_8_actions',''),(244251,41324,'_blocks_8_actions','field_61a746a817f7a'),(244252,41324,'blocks_9_acfe_flexible_toggle',''),(244253,41324,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(244254,41324,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(244255,41324,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(244256,41324,'blocks_9_testimonial_slider_content_title',''),(244257,41324,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(244258,41324,'blocks_9_testimonial_slider_content_heading','Testimonials'),(244259,41324,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(244260,41324,'blocks_9_testimonial_slider_content_text',''),(244261,41324,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(244262,41324,'blocks_9_testimonial_slider_content_actions',''),(244263,41324,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(244264,41324,'blocks_9_testimonial_slider_content',''),(244265,41324,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(244266,41324,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(244267,41324,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(244268,41324,'blocks_9_testimonial_slider_ambassador_bool','0'),(244269,41324,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(244270,39254,'_yoast_wpseo_inclusive_language_score','90'),(244271,41325,'hide_hero','0'),(244272,41325,'_hide_hero','field_66a2380fcda39'),(244273,41325,'hero_title','Biomechanics and S&C coaches'),(244274,41325,'_hero_title','field_617571fe285e8'),(244275,41325,'hero_text','Gain a deeper understanding of anatomy and client movement and level up your Strength and Conditioning practice through intrinsic biomechanics.'),(244276,41325,'_hero_text','field_6175723c285e9'),(244277,41325,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39254-3\";s:6:\"target\";s:0:\"\";}'),(244278,41325,'_hero_actions_0_button','field_61757281285eb'),(244279,41325,'hero_actions','1'),(244280,41325,'_hero_actions','field_61757270285ea'),(244281,41325,'hero_style','default'),(244282,41325,'_hero_style','field_62051d9dc5324'),(244283,41325,'_thumbnail_id','39256'),(244284,41325,'__thumbnail_id','field_617570855ddaf'),(244285,41325,'hero_image_pos_x','right'),(244286,41325,'_hero_image_pos_x','field_62ec3d05390bb'),(244287,41325,'hero_image_pos_y','top'),(244288,41325,'_hero_image_pos_y','field_62ec3d05390bc'),(244289,41325,'hero_image_pos',''),(244290,41325,'_hero_image_pos','field_62ec3d05390ba'),(244291,41325,'fft_hide_from_listings','0'),(244292,41325,'_fft_hide_from_listings','field_61f1320446ab2'),(244293,41325,'fft_page_format','default'),(244294,41325,'_fft_page_format','field_61ae213f1f218'),(244295,41325,'fft_hide_nav','0'),(244296,41325,'_fft_hide_nav','field_635bd5e43527c'),(244297,41325,'fft_hide_header_call_to_action','0'),(244298,41325,'_fft_hide_header_call_to_action','field_635bd6723527d'),(244299,41325,'fft_page_sitemap','0'),(244300,41325,'_fft_page_sitemap','field_61af9b34e8181'),(244301,41325,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(244302,41325,'_blocks','field_6176696113096'),(244303,41325,'blocks_0_acfe_flexible_toggle',''),(244304,41325,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(244305,41325,'blocks_0_acfe_flexible_layout_title','Template'),(244306,41325,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(244307,41325,'blocks_0_template','39087'),(244308,41325,'_blocks_0_template','field_617bdd570fe01'),(244309,41325,'blocks_9_acfe_flexible_toggle',''),(244310,41325,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(244311,41325,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(244312,41325,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(244313,41325,'blocks_9_testimonial_slider_content_title',''),(244314,41325,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(244315,41325,'blocks_9_testimonial_slider_content_heading','Testimonials'),(244316,41325,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(244317,41325,'blocks_9_testimonial_slider_content_text',''),(244318,41325,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(244319,41325,'blocks_9_testimonial_slider_content_actions',''),(244320,41325,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(244321,41325,'blocks_9_testimonial_slider_content',''),(244322,41325,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(244323,41325,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(244324,41325,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(244325,41325,'blocks_9_testimonial_slider_ambassador_bool','0'),(244326,41325,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(244327,41325,'blocks_10_acfe_flexible_toggle',''),(244328,41325,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(244329,41325,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(244330,41325,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(244331,41325,'blocks_10_options_theme','#ffffff'),(244332,41325,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(244333,41325,'blocks_10_options_state','0'),(244334,41325,'_blocks_10_options_state','field_6239fcb7508c5'),(244335,41325,'blocks_10_options',''),(244336,41325,'_blocks_10_options','field_6177e2991ac44'),(244337,41325,'blocks_10_content_title',''),(244338,41325,'_blocks_10_content_title','field_64d237e8bb1e2'),(244339,41325,'blocks_10_content_heading','Frequently asked questions '),(244340,41325,'_blocks_10_content_heading','field_64d237e8bb1e3'),(244341,41325,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(244342,41325,'_blocks_10_content_text','field_64d237e8bb1e4'),(244343,41325,'blocks_10_content_actions',''),(244344,41325,'_blocks_10_content_actions','field_64d237e8bb1e5'),(244345,41325,'blocks_10_content_align','left'),(244346,41325,'_blocks_10_content_align','field_64d2443e6b6aa'),(244347,41325,'blocks_10_content',''),(244348,41325,'_blocks_10_content','field_64d237e8bb1e1'),(244349,41325,'blocks_10_accordion_content','faqs'),(244350,41325,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(244351,41325,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(244352,41325,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(244353,41325,'blocks_10_actions',''),(244354,41325,'_blocks_10_actions','field_61a746a817f7a'),(244355,41325,'blocks_1_acfe_flexible_toggle',''),(244356,41325,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(244357,41325,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(244358,41325,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(244359,41325,'blocks_1_options_theme','#ffffff'),(244360,41325,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(244361,41325,'blocks_1_options_reverse','0'),(244362,41325,'_blocks_1_options_reverse','field_61768049bb8ac'),(244363,41325,'blocks_1_options',''),(244364,41325,'_blocks_1_options','field_617682517c334'),(244365,41325,'blocks_1_split_5050_image','39257'),(244366,41325,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(244367,41325,'blocks_1_split_5050_video',''),(244368,41325,'_blocks_1_split_5050_video','field_6239f3160848a'),(244369,41325,'blocks_1_split_5050_content_title',''),(244370,41325,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(244371,41325,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(244372,41325,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(244373,41325,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(244374,41325,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(244375,41325,'blocks_1_split_5050_content_actions',''),(244376,41325,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(244377,41325,'blocks_1_split_5050_content',''),(244378,41325,'_blocks_1_split_5050_content','field_61767afceb8ba'),(244379,41325,'blocks_4_acfe_flexible_toggle',''),(244380,41325,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(244381,41325,'blocks_4_acfe_flexible_layout_title','Tabs'),(244382,41325,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(244383,41325,'blocks_4_options_theme','#ffffff'),(244384,41325,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(244385,41325,'blocks_4_options',''),(244386,41325,'_blocks_4_options','field_6177cfcd8140f'),(244387,41325,'blocks_4_tabs_0_tab_label','What will I learn ?'),(244388,41325,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(244389,41325,'blocks_4_tabs_0_tab_content_title',''),(244390,41325,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(244391,41325,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(244392,41325,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(244393,41325,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>'),(244394,41325,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(244395,41325,'blocks_4_tabs_0_tab_content_actions',''),(244396,41325,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(244397,41325,'blocks_4_tabs_0_tab_content',''),(244398,41325,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(244399,41325,'blocks_4_tabs_0_tab_image','39076'),(244400,41325,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(244401,41325,'blocks_4_tabs_1_tab_label','What do I need ?'),(244402,41325,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(244403,41325,'blocks_4_tabs_1_tab_content_title',''),(244404,41325,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(244405,41325,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(244406,41325,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(244407,41325,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(244408,41325,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(244409,41325,'blocks_4_tabs_1_tab_content_actions',''),(244410,41325,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(244411,41325,'blocks_4_tabs_1_tab_content',''),(244412,41325,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(244413,41325,'blocks_4_tabs_1_tab_image','39223'),(244414,41325,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(244415,41325,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(244416,41325,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(244417,41325,'blocks_4_tabs_2_tab_content_title',''),(244418,41325,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(244419,41325,'blocks_4_tabs_2_tab_content_heading','Locations'),(244420,41325,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(244421,41325,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(244422,41325,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(244423,41325,'blocks_4_tabs_2_tab_content_actions',''),(244424,41325,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(244425,41325,'blocks_4_tabs_2_tab_content',''),(244426,41325,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(244427,41325,'blocks_4_tabs_2_tab_image','39224'),(244428,41325,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(244429,41325,'blocks_4_tabs','3'),(244430,41325,'_blocks_4_tabs','field_6177cff281419'),(244431,41325,'blocks_5_acfe_flexible_toggle',''),(244432,41325,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(244433,41325,'blocks_5_acfe_flexible_layout_title','Text Block'),(244434,41325,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(244435,41325,'blocks_5_options_theme','#b61234'),(244436,41325,'_blocks_5_options_theme','field_6176830e2ad17'),(244437,41325,'blocks_5_options',''),(244438,41325,'_blocks_5_options','field_6176830e2ad16'),(244439,41325,'blocks_5_text_block_heading','Fees & Funding Options'),(244440,41325,'_blocks_5_text_block_heading','field_617669d413097'),(244441,41325,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(244442,41325,'_blocks_5_text_block_content','field_617669ec13098'),(244443,41325,'blocks_6_acfe_flexible_toggle',''),(244444,41325,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(244445,41325,'blocks_6_acfe_flexible_layout_title','Icons'),(244446,41325,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(244447,41325,'blocks_6_options_theme','#b61234'),(244448,41325,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(244449,41325,'blocks_6_options_format','row'),(244450,41325,'_blocks_6_options_format','field_64bfde9a90690'),(244451,41325,'blocks_6_options',''),(244452,41325,'_blocks_6_options','field_64bfdd9b90684'),(244453,41325,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(244454,41325,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(244455,41325,'blocks_6_icon_row_items_0_label','Pay in Full'),(244456,41325,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(244457,41325,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(244458,41325,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(244459,41325,'blocks_6_icon_row_items_1_icon','finance.svg'),(244460,41325,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(244461,41325,'blocks_6_icon_row_items_1_label','0% finance'),(244462,41325,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(244463,41325,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(244464,41325,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(244465,41325,'blocks_6_icon_row_items_2_icon','deposit.svg'),(244466,41325,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(244467,41325,'blocks_6_icon_row_items_2_label','Deposit & balance'),(244468,41325,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(244469,41325,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(244470,41325,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(244471,41325,'blocks_6_icon_row_items','3'),(244472,41325,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(244473,41325,'blocks_7_acfe_flexible_toggle',''),(244474,41325,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(244475,41325,'blocks_7_acfe_flexible_layout_title','Steps'),(244476,41325,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(244477,41325,'blocks_7_row_content_title',''),(244478,41325,'_blocks_7_row_content_title','field_64888cd1e26e0'),(244479,41325,'blocks_7_row_content_heading','Benefits of training with us'),(244480,41325,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(244481,41325,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(244482,41325,'_blocks_7_row_content_text','field_64888ce2e26e2'),(244483,41325,'blocks_7_row_content_actions',''),(244484,41325,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(244485,41325,'blocks_7_row_content',''),(244486,41325,'_blocks_7_row_content','field_64888cb0e26df'),(244487,41325,'blocks_7_steps_0_icon','progression.svg'),(244488,41325,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(244489,41325,'blocks_7_steps_0_title','Attract new clients'),(244490,41325,'_blocks_7_steps_0_title','field_64888d94e26e7'),(244491,41325,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(244492,41325,'_blocks_7_steps_0_text','field_64888d99e26e8'),(244493,41325,'blocks_7_steps_1_icon','support.svg'),(244494,41325,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(244495,41325,'blocks_7_steps_1_title','Lifetime Learning Promise'),(244496,41325,'_blocks_7_steps_1_title','field_64888d94e26e7'),(244497,41325,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(244498,41325,'_blocks_7_steps_1_text','field_64888d99e26e8'),(244499,41325,'blocks_7_steps_2_icon','qualification.svg'),(244500,41325,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(244501,41325,'blocks_7_steps_2_title','Evidence based hands on learning'),(244502,41325,'_blocks_7_steps_2_title','field_64888d94e26e7'),(244503,41325,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You will learn how to test and screen, and learn methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(244504,41325,'_blocks_7_steps_2_text','field_64888d99e26e8'),(244505,41325,'blocks_7_steps_3_icon','leaders.svg'),(244506,41325,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(244507,41325,'blocks_7_steps_3_title','Stand out from the crowd'),(244508,41325,'_blocks_7_steps_3_title','field_64888d94e26e7'),(244509,41325,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(244510,41325,'_blocks_7_steps_3_text','field_64888d99e26e8'),(244511,41325,'blocks_7_steps','4'),(244512,41325,'_blocks_7_steps','field_64888d44e26e5'),(244513,41325,'blocks_2_acfe_flexible_toggle',''),(244514,41325,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(244515,41325,'blocks_2_acfe_flexible_layout_title','Form'),(244516,41325,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(244517,41325,'blocks_2_row_content_format','standard'),(244518,41325,'_blocks_2_row_content_format','field_6481ead962881'),(244519,41325,'blocks_2_row_content_title',''),(244520,41325,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(244521,41325,'blocks_2_row_content_heading','Enquire Today'),(244522,41325,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(244523,41325,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(244524,41325,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(244525,41325,'blocks_2_row_content_actions',''),(244526,41325,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(244527,41325,'blocks_2_row_content',''),(244528,41325,'_blocks_2_row_content','field_61a0f5f5b3db0'),(244529,41325,'blocks_2_row_form','40394'),(244530,41325,'_blocks_2_row_form','field_61a4ff2c0b08e'),(244531,41325,'blocks_2_row_form_button_label',''),(244532,41325,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(244533,41325,'blocks_3_acfe_flexible_toggle',''),(244534,41325,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(244535,41325,'blocks_3_acfe_flexible_layout_title','Video'),(244536,41325,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(244537,41325,'blocks_3_size','large'),(244538,41325,'_blocks_3_size','field_6487038f297c1'),(244539,41325,'blocks_3_row_content_title',''),(244540,41325,'_blocks_3_row_content_title','field_64870132a865d'),(244541,41325,'blocks_3_row_content_heading',''),(244542,41325,'_blocks_3_row_content_heading','field_64870142a865e'),(244543,41325,'blocks_3_row_content_text',''),(244544,41325,'_blocks_3_row_content_text','field_64870148a865f'),(244545,41325,'blocks_3_row_content',''),(244546,41325,'_blocks_3_row_content','field_6487008ba865c'),(244547,41325,'blocks_3_video_src',''),(244548,41325,'_blocks_3_video_src','field_6193c4a98ec07'),(244549,41325,'blocks_3_video_thumbnail',''),(244550,41325,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(244551,41325,'blocks_8_acfe_flexible_toggle',''),(244552,41325,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(244553,41325,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(244554,41325,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(244555,41325,'blocks_8_options_theme','#f5f5f5'),(244556,41325,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(244557,41325,'blocks_8_options_reverse','0'),(244558,41325,'_blocks_8_options_reverse','field_61768049bb8ac'),(244559,41325,'blocks_8_options',''),(244560,41325,'_blocks_8_options','field_617682517c334'),(244561,41325,'blocks_8_split_5050_image','40920'),(244562,41325,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(244563,41325,'blocks_8_split_5050_video',''),(244564,41325,'_blocks_8_split_5050_video','field_6239f3160848a'),(244565,41325,'blocks_8_split_5050_content_title',''),(244566,41325,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(244567,41325,'blocks_8_split_5050_content_heading','Why study this course ?'),(244568,41325,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(244569,41325,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(244570,41325,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(244571,41325,'blocks_8_split_5050_content_actions',''),(244572,41325,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(244573,41325,'blocks_8_split_5050_content',''),(244574,41325,'_blocks_8_split_5050_content','field_61767afceb8ba'),(244575,41326,'_wp_attached_file','2024/10/shutterstock_2168498877-scaled.jpg'),(244576,41326,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:42:\"2024/10/shutterstock_2168498877-scaled.jpg\";s:8:\"filesize\";i:495256;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"shutterstock_2168498877-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92369;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"shutterstock_2168498877-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145359;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"shutterstock_2168498877-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27779;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"shutterstock_2168498877-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71489;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:37:\"shutterstock_2168498877-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215297;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:37:\"shutterstock_2168498877-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:344646;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2168498877-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35958;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2168498877-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125637;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:37:\"shutterstock_2168498877-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195043;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2168498877-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27728;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2168498877-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92369;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:36:\"shutterstock_2168498877-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145359;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2168498877-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28286;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2168498877-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94502;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:36:\"shutterstock_2168498877-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146140;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2168498877-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30190;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2168498877-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101853;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:36:\"shutterstock_2168498877-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159327;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:35:\"shutterstock_2168498877-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24415;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:35:\"shutterstock_2168498877-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76559;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:36:\"shutterstock_2168498877-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118115;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:12:\"Shutterstock\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:86:\"Copyright (c) 2022 PeopleImages.com - Yuri A/Shutterstock.  No use without permission.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:48:\"Running,Fast,And,Free.,Low,Angle,Shot,Of,A,Group\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:1:{i:0;s:347:\"competition,run,fit,fitness,casual,runner,day,moving,sporty,group,marathon,natural,athlete,active,real,runners,outside,person,looking,adult,athletic,male,jog,young,adults,jogging,exercise,training,exercising,summer,running,low,men,angle,man,race,sports,nature,copyspace,health,sportswear,lifestyle,outdoor,outdoors,20s,workout,healthy,jogger,sport\";}}s:14:\"original_image\";s:27:\"shutterstock_2168498877.jpg\";}'),(244577,41326,'_wp_attachment_image_alt','photo of people in a running race'),(244578,41327,'_edit_lock','1739291334:17'),(244579,41327,'_edit_last','17'),(244580,41327,'venue_region','442'),(244581,41327,'_venue_region','field_62ea283e4cc28'),(244582,41327,'venue_address_company_address_1','Fit Thru Life'),(244583,41327,'_venue_address_company_address_1','field_62e24deabfef9'),(244584,41327,'venue_address_company_address_2','Campsie Glen Golf Club'),(244585,41327,'_venue_address_company_address_2','field_62e24deabfefa'),(244586,41327,'venue_address_company_address_street','Crow Road'),(244587,41327,'_venue_address_company_address_street','field_62e24deabfefb'),(244588,41327,'venue_address_company_address_locality','Lennoxtown'),(244589,41327,'_venue_address_company_address_locality','field_62e24deabfefc'),(244590,41327,'venue_address_company_address_region','Stirlingshire'),(244591,41327,'_venue_address_company_address_region','field_62e24deabfefd'),(244592,41327,'venue_address_company_address_postcode','G66 7HX'),(244593,41327,'_venue_address_company_address_postcode','field_62e24deabfefe'),(244594,41327,'venue_address',''),(244595,41327,'_venue_address','field_62e24de9bfef8'),(244596,41327,'venue_location','a:10:{s:7:\"address\";s:27:\"Netherseal, Swadlincote, UK\";s:3:\"lat\";d:52.7151596;s:3:\"lng\";d:-1.577998;s:4:\"zoom\";i:4;s:8:\"place_id\";s:27:\"ChIJ9dEjVCAAekgR2s-p5ukSqNo\";s:4:\"name\";s:10:\"Netherseal\";s:4:\"city\";s:11:\"Swadlincote\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(244597,41327,'_venue_location','field_62e24e36a82f4'),(244598,41327,'venue_tel','07501734416'),(244599,41327,'_venue_tel','field_62e26ee1005e5'),(244600,41327,'venue_is_popup','0'),(244601,41327,'_venue_is_popup','field_63c66ffc50d7e'),(244602,41329,'_wp_attached_file','2024/10/BE_Worshop_30thAug-19-scaled.jpg'),(244603,41329,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/10/BE_Worshop_30thAug-19-scaled.jpg\";s:8:\"filesize\";i:571514;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116834;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-19-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176015;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40656;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93460;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-19-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253620;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-19-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:394424;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53548;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161649;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-19-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:246727;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40562;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115889;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-19-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174807;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45938;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134756;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-19-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204788;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43817;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127512;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-19-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192730;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36981;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104514;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-19-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156904;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725016663\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"62\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-19.jpg\";}'),(244604,41330,'_wp_attached_file','2024/10/BE_Worshop_24thAug-2-scaled.jpg'),(244605,41330,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/10/BE_Worshop_24thAug-2-scaled.jpg\";s:8:\"filesize\";i:433644;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98695;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-2-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144521;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38320;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80404;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-2-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204299;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-2-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:308623;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44740;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123889;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-2-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184513;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38355;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98057;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143842;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36228;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93399;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-2-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138599;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40157;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105219;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-2-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155064;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35234;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88125;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-2-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128512;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1724495723\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_24thAug-2.jpg\";}'),(244606,41331,'_wp_attached_file','2024/10/BE_Worshop_24thAug-7-scaled.jpg'),(244607,41331,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/10/BE_Worshop_24thAug-7-scaled.jpg\";s:8:\"filesize\";i:579595;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-7-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130012;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-7-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192258;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-7-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47286;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-7-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105016;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-7-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:272254;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-7-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:413398;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-7-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56014;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-7-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157895;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-7-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235769;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-7-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47201;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-7-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129519;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-7-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191333;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-7-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45706;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-7-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122105;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-7-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181137;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-7-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49844;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-7-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137493;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-7-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202906;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-7-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43536;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-7-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117691;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-7-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173328;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1724498616\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"41\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_24thAug-7.jpg\";}'),(244608,41332,'_wp_attached_file','2024/10/BE_Worshop_24thAug-6-scaled.jpg'),(244609,41332,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/10/BE_Worshop_24thAug-6-scaled.jpg\";s:8:\"filesize\";i:431497;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-6-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95767;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-6-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139802;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-6-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36639;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-6-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77699;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-6-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198721;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-6-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:303826;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-6-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47333;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-6-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133789;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-6-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200698;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-6-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36538;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-6-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95261;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-6-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139061;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-6-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41808;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-6-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113888;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-6-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170337;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-6-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39042;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-6-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103890;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-6-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153548;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-6-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33384;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-6-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85012;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-6-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123613;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1724498558\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"67\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_24thAug-6.jpg\";}'),(244610,41333,'_wp_attached_file','2024/10/BE_Worshop_30thAug-20-scaled.jpg'),(244611,41333,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/10/BE_Worshop_30thAug-20-scaled.jpg\";s:8:\"filesize\";i:546436;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111493;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-20-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167008;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40954;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89852;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-20-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:240514;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-20-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:375644;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48596;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140139;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-20-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:213040;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40937;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110835;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-20-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166097;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41702;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115096;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-20-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174239;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43274;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120195;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-20-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179524;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37679;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100952;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-20-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150828;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725016776\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-20.jpg\";}'),(244612,41334,'_edit_lock','1739291332:17'),(244613,41334,'_edit_last','17'),(244614,41334,'venue_region','427'),(244615,41334,'_venue_region','field_62ea283e4cc28'),(244616,41334,'venue_address_company_address_1','David Lloyd Birmingham'),(244617,41334,'_venue_address_company_address_1','field_62e24deabfef9'),(244618,41334,'venue_address_company_address_2','Shady Lane'),(244619,41334,'_venue_address_company_address_2','field_62e24deabfefa'),(244620,41334,'venue_address_company_address_street','Great Barr'),(244621,41334,'_venue_address_company_address_street','field_62e24deabfefb'),(244622,41334,'venue_address_company_address_locality','Birmingham'),(244623,41334,'_venue_address_company_address_locality','field_62e24deabfefc'),(244624,41334,'venue_address_company_address_region','West Midlands'),(244625,41334,'_venue_address_company_address_region','field_62e24deabfefd'),(244626,41334,'venue_address_company_address_postcode','B44 9ER'),(244627,41334,'_venue_address_company_address_postcode','field_62e24deabfefe'),(244628,41334,'venue_address',''),(244629,41334,'_venue_address','field_62e24de9bfef8'),(244630,41334,'venue_location','a:13:{s:7:\"address\";s:62:\"David Lloyd Birmingham, Shady Lane, Great Barr, Birmingham, UK\";s:3:\"lat\";d:52.5531431;s:3:\"lng\";d:-1.8965649;s:4:\"zoom\";i:7;s:8:\"place_id\";s:27:\"ChIJhQ4LRnqjcEgRGeyWk5MqFyM\";s:4:\"name\";s:22:\"David Lloyd Birmingham\";s:11:\"street_name\";s:10:\"Shady Lane\";s:17:\"street_name_short\";s:9:\"Shady Ln.\";s:4:\"city\";s:10:\"Birmingham\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:7:\"B44 9ER\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(244631,41334,'_venue_location','field_62e24e36a82f4'),(244632,41334,'venue_tel','07746299991'),(244633,41334,'_venue_tel','field_62e26ee1005e5'),(244634,41334,'venue_is_popup','0'),(244635,41334,'_venue_is_popup','field_63c66ffc50d7e'),(244636,41370,'_edit_lock','1747661399:18'),(244637,41370,'_edit_last','13'),(244638,41370,'hide_hero','0'),(244639,41370,'_hide_hero','field_66a2380fcda39'),(244640,41370,'hero_title','Martin Haines - Expert Consultant'),(244641,41370,'_hero_title','field_617571fe285e8'),(244642,41370,'hero_text',''),(244643,41370,'_hero_text','field_6175723c285e9'),(244644,41370,'hero_actions',''),(244645,41370,'_hero_actions','field_61757270285ea'),(244646,41370,'hero_style','default'),(244647,41370,'_hero_style','field_62051d9dc5324'),(244648,41370,'__thumbnail_id','field_617570855ddaf'),(244649,41370,'hero_image_pos_x','top'),(244650,41370,'_hero_image_pos_x','field_62ec3d05390bb'),(244651,41370,'hero_image_pos_y','centre'),(244652,41370,'_hero_image_pos_y','field_62ec3d05390bc'),(244653,41370,'hero_image_pos',''),(244654,41370,'_hero_image_pos','field_62ec3d05390ba'),(244655,41370,'fft_hide_from_listings','0'),(244656,41370,'_fft_hide_from_listings','field_61f1320446ab2'),(244657,41370,'fft_page_format','default'),(244658,41370,'_fft_page_format','field_61ae213f1f218'),(244659,41370,'fft_hide_nav','0'),(244660,41370,'_fft_hide_nav','field_635bd5e43527c'),(244661,41370,'fft_hide_header_call_to_action','0'),(244662,41370,'_fft_hide_header_call_to_action','field_635bd6723527d'),(244663,41370,'fft_page_sitemap','0'),(244664,41370,'_fft_page_sitemap','field_61af9b34e8181'),(244665,41370,'blocks_0_acfe_flexible_toggle',''),(244666,41370,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(244667,41370,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(244668,41370,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(244669,41370,'blocks_0_content','<h2>Martin Haines</h2>\r\nMartin has been the Lead Physiotherapist at Crystal Palace FC and Arsenal FC, as well treating professional rugby players from the England rugby team and Premiership as well as professional footballers from Premiership Teams. He has been the Clinical Director at 4 clinics in the UK and lead consultant for clinics in Sweden and USA. He has been on the PGA Performance Institute and has worked with 5 Olympic Champions. He has also been involved with McLaren F1, working with their drivers to help prevent and manage injury as well as helping design their cars.\r\n\r\nMartin has worked with the Biomechanics Education Team to develop the content for their courses and workshops and consults to help future courses. He has a particular interest in developing biomechanics courses for medical professionals including the Podiatry workshop/course\r\n\r\nPersonally, Martin is an accomplished author and his work has been presented at scientific congresses across the world, including the IOC World Congress on Illness and Injury in Sport. He is a former Honorary Senior Lecturer at Salford University and former chair of the UK Biomechanics Coaching Association.'),(244670,41370,'_blocks_0_content','field_6193c9b5eac84'),(244671,41370,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(244672,41370,'_blocks','field_6176696113096'),(244673,41370,'_yoast_wpseo_title','Martin Haines | Biomechanics Education'),(244674,41370,'_yoast_wpseo_estimated-reading-time-minutes','1'),(244676,41370,'_yoast_wpseo_focuskw','Tom Waldron'),(244677,41370,'_yoast_wpseo_metadesc','Learn about Martin Haines, Biomechanics Coach and Chartered Physiotherapist. Read more...'),(244678,41370,'_yoast_wpseo_linkdex','26'),(244679,41371,'_wp_attached_file','2024/11/Martin-Side-on_-scaled.jpg'),(244680,41371,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1920;s:4:\"file\";s:34:\"2024/11/Martin-Side-on_-scaled.jpg\";s:8:\"filesize\";i:314991;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Martin-Side-on_-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43244;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"Martin-Side-on_-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71924;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Martin-Side-on_-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12299;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Martin-Side-on_-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33349;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"Martin-Side-on_-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114988;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"Martin-Side-on_-2048x1536.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200366;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:27:\"Martin-Side-on_-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17350;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:27:\"Martin-Side-on_-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66500;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:29:\"Martin-Side-on_-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115235;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:27:\"Martin-Side-on_-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11300;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:27:\"Martin-Side-on_-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39355;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:28:\"Martin-Side-on_-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65158;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:27:\"Martin-Side-on_-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15840;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:27:\"Martin-Side-on_-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60822;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:28:\"Martin-Side-on_-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104503;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:27:\"Martin-Side-on_-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12298;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:27:\"Martin-Side-on_-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43260;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:28:\"Martin-Side-on_-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71836;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:27:\"Martin-Side-on_-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10071;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:27:\"Martin-Side-on_-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34975;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:28:\"Martin-Side-on_-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56973;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:19:\"Martin-Side-on_.jpg\";}'),(244681,41371,'_wp_attachment_image_alt','Martin Haines, wearing a light blue shirt, smilng at the camera, white/grey hair, black rimmed glasses, white older male.'),(244682,41370,'_yoast_wpseo_inclusive_language_score','90'),(244683,41372,'hide_hero','0'),(244684,41372,'_hide_hero','field_66a2380fcda39'),(244685,41372,'hero_title','Martin Haines - Expert Consultant'),(244686,41372,'_hero_title','field_617571fe285e8'),(244687,41372,'hero_text',''),(244688,41372,'_hero_text','field_6175723c285e9'),(244689,41372,'hero_actions',''),(244690,41372,'_hero_actions','field_61757270285ea'),(244691,41372,'hero_style','default'),(244692,41372,'_hero_style','field_62051d9dc5324'),(244693,41372,'hero_image_pos_x','top'),(244694,41372,'_hero_image_pos_x','field_62ec3d05390bb'),(244695,41372,'hero_image_pos_y','centre'),(244696,41372,'_hero_image_pos_y','field_62ec3d05390bc'),(244697,41372,'hero_image_pos',''),(244698,41372,'_hero_image_pos','field_62ec3d05390ba'),(244699,41372,'fft_hide_from_listings','0'),(244700,41372,'_fft_hide_from_listings','field_61f1320446ab2'),(244701,41372,'fft_page_format','default'),(244702,41372,'_fft_page_format','field_61ae213f1f218'),(244703,41372,'fft_hide_nav','0'),(244704,41372,'_fft_hide_nav','field_635bd5e43527c'),(244705,41372,'fft_hide_header_call_to_action','0'),(244706,41372,'_fft_hide_header_call_to_action','field_635bd6723527d'),(244707,41372,'fft_page_sitemap','0'),(244708,41372,'_fft_page_sitemap','field_61af9b34e8181'),(244709,41372,'blocks_0_acfe_flexible_toggle',''),(244710,41372,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(244711,41372,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(244712,41372,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(244713,41372,'blocks_0_content','<h2>Tom Waldron</h2>\r\nTom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance &amp; freedom of movement are described by Tom as ‘incredible!’ He has been a Biomechanics Coach™ since Mar 2016 &amp; it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts &amp; it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(244714,41372,'_blocks_0_content','field_6193c9b5eac84'),(244715,41372,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(244716,41372,'_blocks','field_6176696113096'),(244717,41372,'_thumbnail_id','39366'),(244718,41372,'__thumbnail_id','field_617570855ddaf'),(244755,41370,'_thumbnail_id','41371'),(244756,41374,'hide_hero','0'),(244757,41374,'_hide_hero','field_66a2380fcda39'),(244758,41374,'hero_title','Martin Haines - Expert Consultant'),(244759,41374,'_hero_title','field_617571fe285e8'),(244760,41374,'hero_text',''),(244761,41374,'_hero_text','field_6175723c285e9'),(244762,41374,'hero_actions',''),(244763,41374,'_hero_actions','field_61757270285ea'),(244764,41374,'hero_style','default'),(244765,41374,'_hero_style','field_62051d9dc5324'),(244766,41374,'hero_image_pos_x','top'),(244767,41374,'_hero_image_pos_x','field_62ec3d05390bb'),(244768,41374,'hero_image_pos_y','centre'),(244769,41374,'_hero_image_pos_y','field_62ec3d05390bc'),(244770,41374,'hero_image_pos',''),(244771,41374,'_hero_image_pos','field_62ec3d05390ba'),(244772,41374,'fft_hide_from_listings','0'),(244773,41374,'_fft_hide_from_listings','field_61f1320446ab2'),(244774,41374,'fft_page_format','default'),(244775,41374,'_fft_page_format','field_61ae213f1f218'),(244776,41374,'fft_hide_nav','0'),(244777,41374,'_fft_hide_nav','field_635bd5e43527c'),(244778,41374,'fft_hide_header_call_to_action','0'),(244779,41374,'_fft_hide_header_call_to_action','field_635bd6723527d'),(244780,41374,'fft_page_sitemap','0'),(244781,41374,'_fft_page_sitemap','field_61af9b34e8181'),(244782,41374,'blocks_0_acfe_flexible_toggle',''),(244783,41374,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(244784,41374,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(244785,41374,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(244786,41374,'blocks_0_content','<h2>Martin Haines</h2>\r\nMartin has been the Lead Physiotherapist at Crystal Palace FC and Arsenal FC, as well treating professional rugby players from the England rugby team and Premiership as well as professional footballers from Premiership Teams. He has been the Clinical Director at 4 clinics in the UK and lead consultant for clinics in Sweden and USA. He has been on the PGA Performance Institute and has worked with 5 Olympic Champions. He has also been involved with McLaren F1, working with their drivers to help prevent and manage injury as well as helping design their cars.\r\n\r\nMartin has worked with the Biomechanics Education Team to develop the content for their courses and workshops and consults to help future courses. He has a particular interest in developing biomechanics courses for medical professionals including the Podiatry workshop/course\r\n\r\nPersonally, Martin is an accomplished author and his work has been presented at scientific congresses across the world, including the IOC World Congress on Illness and Injury in Sport. He is a former Honorary Senior Lecturer at Salford University and former chair of the UK Biomechanics Coaching Association.'),(244787,41374,'_blocks_0_content','field_6193c9b5eac84'),(244788,41374,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(244789,41374,'_blocks','field_6176696113096'),(244790,41374,'_thumbnail_id','39366'),(244791,41374,'__thumbnail_id','field_617570855ddaf'),(244828,41376,'hide_hero','0'),(244829,41376,'_hide_hero','field_66a2380fcda39'),(244830,41376,'hero_title','Martin Haines - Expert Consultant'),(244831,41376,'_hero_title','field_617571fe285e8'),(244832,41376,'hero_text',''),(244833,41376,'_hero_text','field_6175723c285e9'),(244834,41376,'hero_actions',''),(244835,41376,'_hero_actions','field_61757270285ea'),(244836,41376,'hero_style','default'),(244837,41376,'_hero_style','field_62051d9dc5324'),(244838,41376,'hero_image_pos_x','top'),(244839,41376,'_hero_image_pos_x','field_62ec3d05390bb'),(244840,41376,'hero_image_pos_y','centre'),(244841,41376,'_hero_image_pos_y','field_62ec3d05390bc'),(244842,41376,'hero_image_pos',''),(244843,41376,'_hero_image_pos','field_62ec3d05390ba'),(244844,41376,'fft_hide_from_listings','0'),(244845,41376,'_fft_hide_from_listings','field_61f1320446ab2'),(244846,41376,'fft_page_format','default'),(244847,41376,'_fft_page_format','field_61ae213f1f218'),(244848,41376,'fft_hide_nav','0'),(244849,41376,'_fft_hide_nav','field_635bd5e43527c'),(244850,41376,'fft_hide_header_call_to_action','0'),(244851,41376,'_fft_hide_header_call_to_action','field_635bd6723527d'),(244852,41376,'fft_page_sitemap','0'),(244853,41376,'_fft_page_sitemap','field_61af9b34e8181'),(244854,41376,'blocks_0_acfe_flexible_toggle',''),(244855,41376,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(244856,41376,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(244857,41376,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(244858,41376,'blocks_0_content','<h2>Martin Haines</h2>\r\nMartin has been the Lead Physiotherapist at Crystal Palace FC and Arsenal FC, as well treating professional rugby players from the England rugby team and Premiership as well as professional footballers from Premiership Teams. He has been the Clinical Director at 4 clinics in the UK and lead consultant for clinics in Sweden and USA. He has been on the PGA Performance Institute and has worked with 5 Olympic Champions. He has also been involved with McLaren F1, working with their drivers to help prevent and manage injury as well as helping design their cars.\r\n\r\nMartin has worked with the Biomechanics Education Team to develop the content for their courses and workshops and consults to help future courses. He has a particular interest in developing biomechanics courses for medical professionals including the Podiatry workshop/course\r\n\r\nPersonally, Martin is an accomplished author and his work has been presented at scientific congresses across the world, including the IOC World Congress on Illness and Injury in Sport. He is a former Honorary Senior Lecturer at Salford University and former chair of the UK Biomechanics Coaching Association.'),(244859,41376,'_blocks_0_content','field_6193c9b5eac84'),(244860,41376,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(244861,41376,'_blocks','field_6176696113096'),(244862,41376,'_thumbnail_id','41371'),(244863,41376,'__thumbnail_id','field_617570855ddaf'),(244900,39172,'blocks_6_cards_custom_5_image','41371'),(244901,39172,'_blocks_6_cards_custom_5_image','field_6194cc284d387'),(244902,39172,'blocks_6_cards_custom_5_title','Martin Haines - Expert consultant'),(244903,39172,'_blocks_6_cards_custom_5_title','field_6194cc454d388'),(244904,39172,'blocks_6_cards_custom_5_text','Martin has been the Lead Physiotherapist at Crystal Palace FC and Arsenal FC, as well treating professional rugby players from the England rugby team and Premiership as well as professional footballers from Premiership Teams.  He has been the Clinical Director at 4 clinics in the UK and lead consultant for clinics in Sweden and USA.  He has been on the PGA Performance Institute and has worked with 5 Olympic Champions.  He has also been involved with McLaren F1, working with their drivers to help prevent and manage injury as well as helping design their cars.  \r\n\r\nMartin has worked with the Biomechanics Education Team to develop the content for their courses and workshops and consults to help future courses.  He has a particular interest in developing biomechanics courses for medical professionals including the Podiatry workshop/course\r\n\r\nPersonally, Martin is an accomplished author and his work has been presented at scientific congresses across the world, including the IOC World Congress on Illness and Injury in Sport. He is a former Honorary Senior Lecturer at Salford University and former chair of the UK Biomechanics Coaching Association.'),(244905,39172,'_blocks_6_cards_custom_5_text','field_6194cc4a4d389'),(244906,39172,'blocks_6_cards_custom_5_link',''),(244907,39172,'_blocks_6_cards_custom_5_link','field_6194cc534d38a'),(244908,39172,'_yoast_wpseo_inclusive_language_score','90'),(244909,41378,'hero_style','default'),(244910,41378,'_hero_style','field_62051d9dc5324'),(244911,41378,'hero_image_pos_x','right'),(244912,41378,'_hero_image_pos_x','field_62ec3d05390bb'),(244913,41378,'hero_image_pos_y','top'),(244914,41378,'_hero_image_pos_y','field_62ec3d05390bc'),(244915,41378,'hero_image_pos',''),(244916,41378,'_hero_image_pos','field_62ec3d05390ba'),(244917,41378,'hero_title','About Us'),(244918,41378,'_hero_title','field_617571fe285e8'),(244919,41378,'hero_text','Learn more about our dedicated team, our organisational expertise, and the industry partners we work with.'),(244920,41378,'_hero_text','field_6175723c285e9'),(244921,41378,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39172-4\";s:6:\"target\";s:0:\"\";}'),(244922,41378,'_hero_actions_0_button','field_61757281285eb'),(244923,41378,'hero_actions','1'),(244924,41378,'_hero_actions','field_61757270285ea'),(244925,41378,'hero_icon',''),(244926,41378,'_hero_icon','field_61a6182199d03'),(244927,41378,'fft_hide_from_listings','0'),(244928,41378,'_fft_hide_from_listings','field_61f1320446ab2'),(244929,41378,'fft_page_format','default'),(244930,41378,'_fft_page_format','field_61ae213f1f218'),(244931,41378,'fft_hide_nav','0'),(244932,41378,'_fft_hide_nav','field_635bd5e43527c'),(244933,41378,'fft_hide_header_call_to_action','0'),(244934,41378,'_fft_hide_header_call_to_action','field_635bd6723527d'),(244935,41378,'fft_page_sitemap','0'),(244936,41378,'_fft_page_sitemap','field_61af9b34e8181'),(244937,41378,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:5:\"cards\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";}'),(244938,41378,'_blocks','field_6176696113096'),(244939,41378,'_thumbnail_id','40408'),(244940,41378,'__thumbnail_id','field_617570855ddaf'),(244941,41378,'hide_hero','0'),(244942,41378,'_hide_hero','field_66a2380fcda39'),(244943,41378,'blocks_0_acfe_flexible_toggle',''),(244944,41378,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(244945,41378,'blocks_0_acfe_flexible_layout_title','Text Block'),(244946,41378,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(244947,41378,'blocks_0_options_theme','#f5f5f5'),(244948,41378,'_blocks_0_options_theme','field_6176830e2ad17'),(244949,41378,'blocks_0_options',''),(244950,41378,'_blocks_0_options','field_6176830e2ad16'),(244951,41378,'blocks_0_text_block_heading','Who is Biomechanics Education?'),(244952,41378,'_blocks_0_text_block_heading','field_617669d413097'),(244953,41378,'blocks_0_text_block_content','In 2022, Biomechanics Education partnered with Future Fit Group, integrating their expertise in evidence-based musculoskeletal assessment and performance optimisation. Our programmes equip professionals with practical tools to enhance client outcomes and elevate industry standards in the education of intrinsic biomechanics.'),(244954,41378,'_blocks_0_text_block_content','field_617669ec13098'),(244955,41378,'blocks_1_acfe_flexible_toggle',''),(244956,41378,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(244957,41378,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(244958,41378,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(244959,41378,'blocks_1_options_theme','#b61234'),(244960,41378,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(244961,41378,'blocks_1_options_reverse','0'),(244962,41378,'_blocks_1_options_reverse','field_61768049bb8ac'),(244963,41378,'blocks_1_options',''),(244964,41378,'_blocks_1_options','field_617682517c334'),(244965,41378,'blocks_1_split_5050_image','35276'),(244966,41378,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(244967,41378,'blocks_1_split_5050_video',''),(244968,41378,'_blocks_1_split_5050_video','field_6239f3160848a'),(244969,41378,'blocks_1_split_5050_content_title',''),(244970,41378,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(244971,41378,'blocks_1_split_5050_content_heading','What we do'),(244972,41378,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(244973,41378,'blocks_1_split_5050_content_text','Biomechanics Education provides a comprehensive Diploma in Biomechanics Coaching, emphasising evidence-based methodologies to assess and enhance movement quality in clients. Drawing on over 20 years of data from elite athletes and gym-goers, the programme integrates skills like intrinsic biomechanics, spine and pelvic biomechanics, and more. Graduates gain the ability to systematically assess body mechanics, identify risks, and optimise performance. With flexible payment options and accreditation as an IBA Registered Biomechanics Coach, the course aims to empower movement practitioners and fitness professionals to excel in their careers.'),(244974,41378,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(244975,41378,'blocks_1_split_5050_content_actions',''),(244976,41378,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(244977,41378,'blocks_1_split_5050_content',''),(244978,41378,'_blocks_1_split_5050_content','field_61767afceb8ba'),(244979,41378,'blocks_2_acfe_flexible_toggle',''),(244980,41378,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(244981,41378,'blocks_2_acfe_flexible_layout_title','Video'),(244982,41378,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(244983,41378,'blocks_2_size','large'),(244984,41378,'_blocks_2_size','field_6487038f297c1'),(244985,41378,'blocks_2_row_content_title',''),(244986,41378,'_blocks_2_row_content_title','field_64870132a865d'),(244987,41378,'blocks_2_row_content_heading',''),(244988,41378,'_blocks_2_row_content_heading','field_64870142a865e'),(244989,41378,'blocks_2_row_content_text',''),(244990,41378,'_blocks_2_row_content_text','field_64870148a865f'),(244991,41378,'blocks_2_row_content',''),(244992,41378,'_blocks_2_row_content','field_6487008ba865c'),(244993,41378,'blocks_2_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(244994,41378,'_blocks_2_video_src','field_6193c4a98ec07'),(244995,41378,'blocks_2_video_thumbnail','39175'),(244996,41378,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(244997,41378,'blocks_3_acfe_flexible_toggle','1'),(244998,41378,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(244999,41378,'blocks_3_acfe_flexible_layout_title','Cards'),(245000,41378,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(245001,41378,'blocks_3_options_theme','#ffffff'),(245002,41378,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(245003,41378,'blocks_3_options_format','carousel'),(245004,41378,'_blocks_3_options_format','field_617a7b15245b5'),(245005,41378,'blocks_3_options_style','default'),(245006,41378,'_blocks_3_options_style','field_6278ffb63484a'),(245007,41378,'blocks_3_options_cards_current_listing','0'),(245008,41378,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(245009,41378,'blocks_3_options_cards_content','custom'),(245010,41378,'_blocks_3_options_cards_content','field_617aba6122688'),(245011,41378,'blocks_3_options',''),(245012,41378,'_blocks_3_options','field_617a7b15245b3'),(245013,41378,'blocks_3_cards_custom_0_image','39504'),(245014,41378,'_blocks_3_cards_custom_0_image','field_6194cc284d387'),(245015,41378,'blocks_3_cards_custom_0_title','Our Partners'),(245016,41378,'_blocks_3_cards_custom_0_title','field_6194cc454d388'),(245017,41378,'blocks_3_cards_custom_0_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(245018,41378,'_blocks_3_cards_custom_0_text','field_6194cc4a4d389'),(245019,41378,'blocks_3_cards_custom_0_link','a:3:{s:5:\"title\";s:19:\"View our Partners !\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(245020,41378,'_blocks_3_cards_custom_0_link','field_6194cc534d38a'),(245021,41378,'blocks_3_cards_custom','1'),(245022,41378,'_blocks_3_cards_custom','field_6194cbf84d386'),(245023,41378,'blocks_4_acfe_flexible_toggle',''),(245024,41378,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(245025,41378,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(245026,41378,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(245027,41378,'blocks_4_options_theme','#ffffff'),(245028,41378,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(245029,41378,'blocks_4_options_reverse','0'),(245030,41378,'_blocks_4_options_reverse','field_61768049bb8ac'),(245031,41378,'blocks_4_options',''),(245032,41378,'_blocks_4_options','field_617682517c334'),(245033,41378,'blocks_4_split_5050_image','39501'),(245034,41378,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(245035,41378,'blocks_4_split_5050_video',''),(245036,41378,'_blocks_4_split_5050_video','field_6239f3160848a'),(245037,41378,'blocks_4_split_5050_content_title',''),(245038,41378,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(245039,41378,'blocks_4_split_5050_content_heading','Our Partners'),(245040,41378,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(245041,41378,'blocks_4_split_5050_content_text','We work with some fantastic partners such as David Lloyd Leisure, EMD UK, and more.'),(245042,41378,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(245043,41378,'blocks_4_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"View our Partner Page\";s:3:\"url\";s:56:\"https://biomechanicseducation.com/about-us/our-partners/\";s:6:\"target\";s:0:\"\";}'),(245044,41378,'_blocks_4_split_5050_content_actions_0_button','field_61767b72eb8be'),(245045,41378,'blocks_4_split_5050_content_actions','1'),(245046,41378,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(245047,41378,'blocks_4_split_5050_content',''),(245048,41378,'_blocks_4_split_5050_content','field_61767afceb8ba'),(245049,41378,'blocks_5_acfe_flexible_toggle',''),(245050,41378,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(245051,41378,'blocks_5_acfe_flexible_layout_title','Text Block'),(245052,41378,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(245053,41378,'blocks_5_options_theme','#ffffff'),(245054,41378,'_blocks_5_options_theme','field_6176830e2ad17'),(245055,41378,'blocks_5_options',''),(245056,41378,'_blocks_5_options','field_6176830e2ad16'),(245057,41378,'blocks_5_text_block_heading','Our Team'),(245058,41378,'_blocks_5_text_block_heading','field_617669d413097'),(245059,41378,'blocks_5_text_block_content',''),(245060,41378,'_blocks_5_text_block_content','field_617669ec13098'),(245061,41378,'blocks_6_acfe_flexible_toggle',''),(245062,41378,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(245063,41378,'blocks_6_acfe_flexible_layout_title','Cards'),(245064,41378,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(245065,41378,'blocks_6_options_theme','#ffffff'),(245066,41378,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(245067,41378,'blocks_6_options_format','carousel'),(245068,41378,'_blocks_6_options_format','field_617a7b15245b5'),(245069,41378,'blocks_6_options_style','default'),(245070,41378,'_blocks_6_options_style','field_6278ffb63484a'),(245071,41378,'blocks_6_options_cards_current_listing','0'),(245072,41378,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(245073,41378,'blocks_6_options_cards_content','custom'),(245074,41378,'_blocks_6_options_cards_content','field_617aba6122688'),(245075,41378,'blocks_6_options',''),(245076,41378,'_blocks_6_options','field_617a7b15245b3'),(245077,41378,'blocks_6_cards_custom_0_image','39353'),(245078,41378,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(245079,41378,'blocks_6_cards_custom_0_title','Rachel Frances Thomson - Founder'),(245080,41378,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(245081,41378,'blocks_6_cards_custom_0_text','Rachel’s professional career in the health & fitness industry spans more than 2 decades, originally as a professional dancer travelling across Europe & Asia. Her professional qualifications range from British Weightlifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor & IQA. Rachel is deeply passionate about her role as Managing Director of Biomechanics Education Ltd & so frequently lectures, presents & teaches at events both UK & Internationally about the benefits of the intrinsic biomechanics\' methods.'),(245082,41378,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(245083,41378,'blocks_6_cards_custom_0_link',''),(245084,41378,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(245085,41378,'blocks_6_cards_custom_1_image','39366'),(245086,41378,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(245087,41378,'blocks_6_cards_custom_1_title','Tom Waldron - Master Trainer'),(245088,41378,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(245089,41378,'blocks_6_cards_custom_1_text','Tom attended the Biomechanics Coach™ Diploma Sept 2015. From day one he begun to implement the skills taught by the Master Trainers, the results in performance & freedom of movement are described by Tom as ‘incredible!’  He has been a Biomechanics Coach™ since Mar 2016 & it’s something he implements into all his sessions with clients. Tom has been traveling all over the world since 2014 to learning how to move without pain or discomfort. These days Tom never experiences any physical discomforts & it’s his mission to help educate others on how they can facilitate their own positive change in their bodies and minds.'),(245090,41378,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(245091,41378,'blocks_6_cards_custom_1_link',''),(245092,41378,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(245093,41378,'blocks_6_cards_custom_2_image','39598'),(245094,41378,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(245095,41378,'blocks_6_cards_custom_2_title','Kim Tomlin - Master Trainer'),(245096,41378,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(245097,41378,'blocks_6_cards_custom_2_text','Kim is the owner of Primal Flow, a Personal Trainer, Biomechanics Coach and Master Trainer. Kim has been passionate about exploring movement ever since becoming a Primal Flow Instructor in 2012, now combining her skills to help people to improve their movement quality and capacity, whilst enjoying the freedom of their own individual movement capabilities. As well as teaching the Biomechanics Coaching Diploma (for Biomechanics Education), Kim is a Training Provider Partner with CIMSPA and delivers her own Train the Trainer courses, including the Primal Flow Instructor Course. '),(245098,41378,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(245099,41378,'blocks_6_cards_custom_2_link',''),(245100,41378,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(245101,41378,'blocks_6_cards_custom_3_image','39593'),(245102,41378,'_blocks_6_cards_custom_3_image','field_6194cc284d387'),(245103,41378,'blocks_6_cards_custom_3_title','Morgan Hanness - Sales Lead'),(245104,41378,'_blocks_6_cards_custom_3_title','field_6194cc454d388'),(245105,41378,'blocks_6_cards_custom_3_text','Morgan Hanness has a background in personal training, nutrition coaching, and integrative nutrition health coaching, and has always been passionate about helping people achieve their goals. At Biomechanics Education, Morgan also helps others develop their careers in the health and fitness industry, enabling them to assist even more people. Living with Hypermobility Syndrome, Morgan deeply understands the value of proper movement, which aligns perfectly with Biomechanics Education’s core values. Morgan is passionate about sports, especially snowboarding, surfing, rock climbing, and other outdoor activities, and is grateful for pain-free movement. '),(245106,41378,'_blocks_6_cards_custom_3_text','field_6194cc4a4d389'),(245107,41378,'blocks_6_cards_custom_3_link',''),(245108,41378,'_blocks_6_cards_custom_3_link','field_6194cc534d38a'),(245109,41378,'blocks_6_cards_custom_4_image','40406'),(245110,41378,'_blocks_6_cards_custom_4_image','field_6194cc284d387'),(245111,41378,'blocks_6_cards_custom_4_title','Fiona Jones - Assessor '),(245112,41378,'_blocks_6_cards_custom_4_title','field_6194cc454d388'),(245113,41378,'blocks_6_cards_custom_4_text','Fiona began her career in the fitness industry in 2006 as a Gym and Group Exercise Instructor and Personal Trainer. In 2010, she transitioned to assessing Fitness Apprenticeships, expanding her expertise in the field. After experiencing the transformative effects of a coaching programme firsthand, Fiona pursued a Low Back Specialist Biomechanics Diploma and a qualification in Remedial Massage. Since then, she has successfully combined her role as an assessor with maintaining her own client base in the UK and overseas, including on Ascension Island and in the United States. \r\n\r\nWhile abroad, Fiona joined the team as a course advisor and became an integral part of the support team. Upon returning to the UK during the 2020 lockdown, she continued her work, assessing for Biomechanics Education both inside and outside the classroom. Fiona is passionate about guiding people through their journeys of discovery, helping them achieve their fitness and health goals with confidence and understanding. '),(245114,41378,'_blocks_6_cards_custom_4_text','field_6194cc4a4d389'),(245115,41378,'blocks_6_cards_custom_4_link',''),(245116,41378,'_blocks_6_cards_custom_4_link','field_6194cc534d38a'),(245117,41378,'blocks_6_cards_custom','6'),(245118,41378,'_blocks_6_cards_custom','field_6194cbf84d386'),(245119,41378,'blocks_6_cards_custom_5_image','41371'),(245120,41378,'_blocks_6_cards_custom_5_image','field_6194cc284d387'),(245121,41378,'blocks_6_cards_custom_5_title','Martin Haines - Expert consultant'),(245122,41378,'_blocks_6_cards_custom_5_title','field_6194cc454d388'),(245123,41378,'blocks_6_cards_custom_5_text','Martin has been the Lead Physiotherapist at Crystal Palace FC and Arsenal FC, as well treating professional rugby players from the England rugby team and Premiership as well as professional footballers from Premiership Teams.  He has been the Clinical Director at 4 clinics in the UK and lead consultant for clinics in Sweden and USA.  He has been on the PGA Performance Institute and has worked with 5 Olympic Champions.  He has also been involved with McLaren F1, working with their drivers to help prevent and manage injury as well as helping design their cars.  \r\n\r\nMartin has worked with the Biomechanics Education Team to develop the content for their courses and workshops and consults to help future courses.  He has a particular interest in developing biomechanics courses for medical professionals including the Podiatry workshop/course\r\n\r\nPersonally, Martin is an accomplished author and his work has been presented at scientific congresses across the world, including the IOC World Congress on Illness and Injury in Sport. He is a former Honorary Senior Lecturer at Salford University and former chair of the UK Biomechanics Coaching Association.'),(245124,41378,'_blocks_6_cards_custom_5_text','field_6194cc4a4d389'),(245125,41378,'blocks_6_cards_custom_5_link',''),(245126,41378,'_blocks_6_cards_custom_5_link','field_6194cc534d38a'),(245345,39245,'blocks_4_acfe_flexible_toggle',''),(245346,39245,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(245347,39245,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(245348,39245,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(245349,39245,'blocks_4_options_theme','#ffffff'),(245350,39245,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(245351,39245,'blocks_4_options_reverse','1'),(245352,39245,'_blocks_4_options_reverse','field_61768049bb8ac'),(245353,39245,'blocks_4_options',''),(245354,39245,'_blocks_4_options','field_617682517c334'),(245355,39245,'blocks_4_split_5050_image','41371'),(245356,39245,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(245357,39245,'blocks_4_split_5050_video',''),(245358,39245,'_blocks_4_split_5050_video','field_6239f3160848a'),(245359,39245,'blocks_4_split_5050_content_title',''),(245360,39245,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(245361,39245,'blocks_4_split_5050_content_heading','Backed by experts in the field'),(245362,39245,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(245363,39245,'blocks_4_split_5050_content_text','Martin Haines RGRT MCSP SRP IBAM, has been the Lead Physiotherapist at Crystal Palace FC and Arsenal FC, as well treating professional rugby players from the England rugby team and Premiership as well as professional footballers from Premiership Teams. He has been the Clinical Director at 4 clinics in the UK and lead consultant for clinics in Sweden and USA. He has been on the PGA Performance Institute and has worked with 5 Olympic Champions. He has also been involved with McLaren F1, working with their drivers to help prevent and manage injury as well as helping design their cars.\r\n\r\nMartin has worked with the Biomechanics Education Team to develop the content for their courses and workshops and consults to help future courses. He has a particular interest in developing biomechanics courses for medical professionals including the Podiatry workshop/course\r\n\r\nPersonally, Martin is an accomplished author and his work has been presented at scientific congresses across the world, including the IOC World Congress on Illness and Injury in Sport. He is a former Honorary Senior Lecturer at Salford University and former chair of the UK Biomechanics Coaching Association.'),(245364,39245,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(245365,39245,'blocks_4_split_5050_content_actions',''),(245366,39245,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(245367,39245,'blocks_4_split_5050_content',''),(245368,39245,'_blocks_4_split_5050_content','field_61767afceb8ba'),(245533,41380,'hide_hero','0'),(245534,41380,'_hide_hero','field_66a2380fcda39'),(245535,41380,'hero_title','Biomechanics and Podiatrists'),(245536,41380,'_hero_title','field_617571fe285e8'),(245537,41380,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(245538,41380,'_hero_text','field_6175723c285e9'),(245539,41380,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(245540,41380,'_hero_actions_0_button','field_61757281285eb'),(245541,41380,'hero_actions','1'),(245542,41380,'_hero_actions','field_61757270285ea'),(245543,41380,'hero_style','default'),(245544,41380,'_hero_style','field_62051d9dc5324'),(245545,41380,'_thumbnail_id','39247'),(245546,41380,'__thumbnail_id','field_617570855ddaf'),(245547,41380,'hero_image_pos_x','right'),(245548,41380,'_hero_image_pos_x','field_62ec3d05390bb'),(245549,41380,'hero_image_pos_y','top'),(245550,41380,'_hero_image_pos_y','field_62ec3d05390bc'),(245551,41380,'hero_image_pos',''),(245552,41380,'_hero_image_pos','field_62ec3d05390ba'),(245553,41380,'fft_hide_from_listings','0'),(245554,41380,'_fft_hide_from_listings','field_61f1320446ab2'),(245555,41380,'fft_page_format','default'),(245556,41380,'_fft_page_format','field_61ae213f1f218'),(245557,41380,'fft_hide_nav','0'),(245558,41380,'_fft_hide_nav','field_635bd5e43527c'),(245559,41380,'fft_hide_header_call_to_action','0'),(245560,41380,'_fft_hide_header_call_to_action','field_635bd6723527d'),(245561,41380,'fft_page_sitemap','0'),(245562,41380,'_fft_page_sitemap','field_61af9b34e8181'),(245563,41380,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(245564,41380,'_blocks','field_6176696113096'),(245565,41380,'blocks_2_acfe_flexible_toggle',''),(245566,41380,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(245567,41380,'blocks_2_acfe_flexible_layout_title','Form'),(245568,41380,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(245569,41380,'blocks_2_row_content_format','standard'),(245570,41380,'_blocks_2_row_content_format','field_6481ead962881'),(245571,41380,'blocks_2_row_content_title',''),(245572,41380,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(245573,41380,'blocks_2_row_content_heading','Enquire Today'),(245574,41380,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(245575,41380,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(245576,41380,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(245577,41380,'blocks_2_row_content_actions',''),(245578,41380,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(245579,41380,'blocks_2_row_content',''),(245580,41380,'_blocks_2_row_content','field_61a0f5f5b3db0'),(245581,41380,'blocks_2_row_form','40394'),(245582,41380,'_blocks_2_row_form','field_61a4ff2c0b08e'),(245583,41380,'blocks_2_row_form_button_label',''),(245584,41380,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(245585,41380,'blocks_0_acfe_flexible_toggle',''),(245586,41380,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(245587,41380,'blocks_0_acfe_flexible_layout_title','Template'),(245588,41380,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(245589,41380,'blocks_0_template','39087'),(245590,41380,'_blocks_0_template','field_617bdd570fe01'),(245591,41380,'blocks_1_acfe_flexible_toggle',''),(245592,41380,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(245593,41380,'blocks_1_acfe_flexible_layout_title','Steps'),(245594,41380,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(245595,41380,'blocks_1_row_content_title',''),(245596,41380,'_blocks_1_row_content_title','field_64888cd1e26e0'),(245597,41380,'blocks_1_row_content_heading','Benefits of training with us'),(245598,41380,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(245599,41380,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(245600,41380,'_blocks_1_row_content_text','field_64888ce2e26e2'),(245601,41380,'blocks_1_row_content_actions',''),(245602,41380,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(245603,41380,'blocks_1_row_content',''),(245604,41380,'_blocks_1_row_content','field_64888cb0e26df'),(245605,41380,'blocks_1_steps_0_icon','progression.svg'),(245606,41380,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(245607,41380,'blocks_1_steps_0_title','Earning Potential'),(245608,41380,'_blocks_1_steps_0_title','field_64888d94e26e7'),(245609,41380,'blocks_1_steps_0_text','Attract new clients, retain current ones, and increase your rates with the Diploma in Biomechanics Coaching. This programme gives you a system to reach new clients and work more effectively with existing ones. Full body screenings may also require extra sessions, providing clients with thorough support and helping you build stronger, long-term relationships.'),(245610,41380,'_blocks_1_steps_0_text','field_64888d99e26e8'),(245611,41380,'blocks_1_steps_1_icon','support.svg'),(245612,41380,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(245613,41380,'blocks_1_steps_1_title','Lifetime Learning Promise'),(245614,41380,'_blocks_1_steps_1_title','field_64888d94e26e7'),(245615,41380,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(245616,41380,'_blocks_1_steps_1_text','field_64888d99e26e8'),(245617,41380,'blocks_1_steps_2_icon','qualification.svg'),(245618,41380,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(245619,41380,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(245620,41380,'_blocks_1_steps_2_title','field_64888d94e26e7'),(245621,41380,'blocks_1_steps_2_text','Developed through over 20 years of research with 4,000 participants - from those recovering from injury to active individuals - is a comprehensive, evidence-backed programme for mastering movement assessments. Through a blend of online learning and hands-on workshops, you’ll learn specific tests and screens to understand the roles of the pelvis, spine, and upper body in lower limb function, particularly foot mechanics. This approach equips you with the insights needed for effective orthotic prescription and tailored movement strategies, helping you optimise outcomes for every client.'),(245622,41380,'_blocks_1_steps_2_text','field_64888d99e26e8'),(245623,41380,'blocks_1_steps_3_icon','leaders.svg'),(245624,41380,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(245625,41380,'blocks_1_steps_3_title','Stand Out From the Crowd'),(245626,41380,'_blocks_1_steps_3_title','field_64888d94e26e7'),(245627,41380,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(245628,41380,'_blocks_1_steps_3_text','field_64888d99e26e8'),(245629,41380,'blocks_1_steps','4'),(245630,41380,'_blocks_1_steps','field_64888d44e26e5'),(245631,41380,'blocks_3_acfe_flexible_toggle',''),(245632,41380,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(245633,41380,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(245634,41380,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(245635,41380,'blocks_3_options_theme','#ffffff'),(245636,41380,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(245637,41380,'blocks_3_options_reverse','0'),(245638,41380,'_blocks_3_options_reverse','field_61768049bb8ac'),(245639,41380,'blocks_3_options',''),(245640,41380,'_blocks_3_options','field_617682517c334'),(245641,41380,'blocks_3_split_5050_image','39617'),(245642,41380,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(245643,41380,'blocks_3_split_5050_video',''),(245644,41380,'_blocks_3_split_5050_video','field_6239f3160848a'),(245645,41380,'blocks_3_split_5050_content_title',''),(245646,41380,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(245647,41380,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(245648,41380,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(245649,41380,'blocks_3_split_5050_content_text','This integrated system offers a full-body approach, covering the pelvis, spine, shoulders, knees, and feet in a comprehensive biomechanical assessment programme. By understanding how the upper body affects lower limb mechanics, podiatrists can address foot issues with a more holistic perspective. This unique assessment method enables you to uncover connections and solutions that traditional approaches may overlook, helping to improve client retention and build trust over time.\r\n\r\nOur model promotes a prevention-focused, system-led approach rather than just responding to symptoms. This proactive method allows you to expand your client base while reducing risks through exercise prescription, supporting clients before, during, and after injuries. It also empowers you with exercise prescription skills that complement your existing expertise, allowing for informed orthotic prescriptions and an integrated care approach to foot health.'),(245650,41380,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(245651,41380,'blocks_3_split_5050_content_actions',''),(245652,41380,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(245653,41380,'blocks_3_split_5050_content',''),(245654,41380,'_blocks_3_split_5050_content','field_61767afceb8ba'),(245655,41380,'blocks_4_acfe_flexible_toggle',''),(245656,41380,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(245657,41380,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(245658,41380,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(245659,41380,'blocks_4_options_theme','#ffffff'),(245660,41380,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(245661,41380,'blocks_4_options_reverse','0'),(245662,41380,'_blocks_4_options_reverse','field_61768049bb8ac'),(245663,41380,'blocks_4_options',''),(245664,41380,'_blocks_4_options','field_617682517c334'),(245665,41380,'blocks_4_split_5050_image','41371'),(245666,41380,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(245667,41380,'blocks_4_split_5050_video',''),(245668,41380,'_blocks_4_split_5050_video','field_6239f3160848a'),(245669,41380,'blocks_4_split_5050_content_title',''),(245670,41380,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(245671,41380,'blocks_4_split_5050_content_heading','Backed by experts in the field'),(245672,41380,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(245673,41380,'blocks_4_split_5050_content_text','Martin Haines RGRT MCSP SRP IBAM, has been the Lead Physiotherapist at Crystal Palace FC and Arsenal FC, as well treating professional rugby players from the England rugby team and Premiership as well as professional footballers from Premiership Teams. He has been the Clinical Director at 4 clinics in the UK and lead consultant for clinics in Sweden and USA. He has been on the PGA Performance Institute and has worked with 5 Olympic Champions. He has also been involved with McLaren F1, working with their drivers to help prevent and manage injury as well as helping design their cars.\r\n\r\nMartin has worked with the Biomechanics Education Team to develop the content for their courses and workshops and consults to help future courses. He has a particular interest in developing biomechanics courses for medical professionals including the Podiatry workshop/course\r\n\r\nPersonally, Martin is an accomplished author and his work has been presented at scientific congresses across the world, including the IOC World Congress on Illness and Injury in Sport. He is a former Honorary Senior Lecturer at Salford University and former chair of the UK Biomechanics Coaching Association.'),(245674,41380,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(245675,41380,'blocks_4_split_5050_content_actions',''),(245676,41380,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(245677,41380,'blocks_4_split_5050_content',''),(245678,41380,'_blocks_4_split_5050_content','field_61767afceb8ba'),(245679,41380,'blocks_5_acfe_flexible_toggle',''),(245680,41380,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(245681,41380,'blocks_5_acfe_flexible_layout_title','Tabs'),(245682,41380,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(245683,41380,'blocks_5_options_theme','#ffffff'),(245684,41380,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(245685,41380,'blocks_5_options',''),(245686,41380,'_blocks_5_options','field_6177cfcd8140f'),(245687,41380,'blocks_5_tabs_0_tab_label','What will I learn?'),(245688,41380,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(245689,41380,'blocks_5_tabs_0_tab_content_title',''),(245690,41380,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(245691,41380,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(245692,41380,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(245693,41380,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n 	<li>Screening System that Informs Orthotic Prescription</li>\r\n 	<li>Provide Exercise Prescription Skills</li>\r\n</ul>'),(245694,41380,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(245695,41380,'blocks_5_tabs_0_tab_content_actions',''),(245696,41380,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(245697,41380,'blocks_5_tabs_0_tab_content',''),(245698,41380,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(245699,41380,'blocks_5_tabs_0_tab_image','39076'),(245700,41380,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(245701,41380,'blocks_5_tabs_1_tab_label','What do I need?'),(245702,41380,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(245703,41380,'blocks_5_tabs_1_tab_content_title',''),(245704,41380,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(245705,41380,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(245706,41380,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(245707,41380,'blocks_5_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Podiatry Qualification</li>\r\n 	<li>Chiropodist Qualification</li>\r\n 	<li>Orthotist Qualification</li>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(245708,41380,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(245709,41380,'blocks_5_tabs_1_tab_content_actions',''),(245710,41380,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(245711,41380,'blocks_5_tabs_1_tab_content',''),(245712,41380,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(245713,41380,'blocks_5_tabs_1_tab_image','39223'),(245714,41380,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(245715,41380,'blocks_5_tabs_2_tab_label','Where can I learn?'),(245716,41380,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(245717,41380,'blocks_5_tabs_2_tab_content_title',''),(245718,41380,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(245719,41380,'blocks_5_tabs_2_tab_content_heading','Locations'),(245720,41380,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(245721,41380,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(245722,41380,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(245723,41380,'blocks_5_tabs_2_tab_content_actions',''),(245724,41380,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(245725,41380,'blocks_5_tabs_2_tab_content',''),(245726,41380,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(245727,41380,'blocks_5_tabs_2_tab_image','39224'),(245728,41380,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(245729,41380,'blocks_5_tabs','3'),(245730,41380,'_blocks_5_tabs','field_6177cff281419'),(245731,41380,'blocks_6_acfe_flexible_toggle',''),(245732,41380,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(245733,41380,'blocks_6_acfe_flexible_layout_title','Text Block'),(245734,41380,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(245735,41380,'blocks_6_options_theme','#b61234'),(245736,41380,'_blocks_6_options_theme','field_6176830e2ad17'),(245737,41380,'blocks_6_options',''),(245738,41380,'_blocks_6_options','field_6176830e2ad16'),(245739,41380,'blocks_6_text_block_heading','Fees & Funding Options'),(245740,41380,'_blocks_6_text_block_heading','field_617669d413097'),(245741,41380,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(245742,41380,'_blocks_6_text_block_content','field_617669ec13098'),(245743,41380,'blocks_7_acfe_flexible_toggle',''),(245744,41380,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(245745,41380,'blocks_7_acfe_flexible_layout_title','Icons'),(245746,41380,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(245747,41380,'blocks_7_options_theme','#b61234'),(245748,41380,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(245749,41380,'blocks_7_options_format','row'),(245750,41380,'_blocks_7_options_format','field_64bfde9a90690'),(245751,41380,'blocks_7_options',''),(245752,41380,'_blocks_7_options','field_64bfdd9b90684'),(245753,41380,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(245754,41380,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(245755,41380,'blocks_7_icon_row_items_0_label','Pay in Full'),(245756,41380,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(245757,41380,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(245758,41380,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(245759,41380,'blocks_7_icon_row_items_1_icon','finance.svg'),(245760,41380,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(245761,41380,'blocks_7_icon_row_items_1_label','0% finance'),(245762,41380,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(245763,41380,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(245764,41380,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(245765,41380,'blocks_7_icon_row_items_2_icon','deposit.svg'),(245766,41380,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(245767,41380,'blocks_7_icon_row_items_2_label','Deposit & balance'),(245768,41380,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(245769,41380,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(245770,41380,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(245771,41380,'blocks_7_icon_row_items','3'),(245772,41380,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(245773,41380,'blocks_8_acfe_flexible_toggle',''),(245774,41380,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(245775,41380,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(245776,41380,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(245777,41380,'blocks_8_options_theme','#f5f5f5'),(245778,41380,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(245779,41380,'blocks_8_options_reverse','0'),(245780,41380,'_blocks_8_options_reverse','field_61768049bb8ac'),(245781,41380,'blocks_8_options',''),(245782,41380,'_blocks_8_options','field_617682517c334'),(245783,41380,'blocks_8_split_5050_image','40920'),(245784,41380,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(245785,41380,'blocks_8_split_5050_video',''),(245786,41380,'_blocks_8_split_5050_video','field_6239f3160848a'),(245787,41380,'blocks_8_split_5050_content_title',''),(245788,41380,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(245789,41380,'blocks_8_split_5050_content_heading','Why Study This Course?'),(245790,41380,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(245791,41380,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(245792,41380,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(245793,41380,'blocks_8_split_5050_content_actions',''),(245794,41380,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(245795,41380,'blocks_8_split_5050_content',''),(245796,41380,'_blocks_8_split_5050_content','field_61767afceb8ba'),(245797,41380,'blocks_9_acfe_flexible_toggle',''),(245798,41380,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(245799,41380,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(245800,41380,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(245801,41380,'blocks_9_testimonial_slider_content_title',''),(245802,41380,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(245803,41380,'blocks_9_testimonial_slider_content_heading','Testimonials'),(245804,41380,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(245805,41380,'blocks_9_testimonial_slider_content_text',''),(245806,41380,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(245807,41380,'blocks_9_testimonial_slider_content_actions',''),(245808,41380,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(245809,41380,'blocks_9_testimonial_slider_content',''),(245810,41380,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(245811,41380,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(245812,41380,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(245813,41380,'blocks_9_testimonial_slider_ambassador_bool','0'),(245814,41380,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(245815,41380,'blocks_10_acfe_flexible_toggle',''),(245816,41380,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(245817,41380,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(245818,41380,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(245819,41380,'blocks_10_options_theme','#ffffff'),(245820,41380,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(245821,41380,'blocks_10_options_state','0'),(245822,41380,'_blocks_10_options_state','field_6239fcb7508c5'),(245823,41380,'blocks_10_options',''),(245824,41380,'_blocks_10_options','field_6177e2991ac44'),(245825,41380,'blocks_10_content_title',''),(245826,41380,'_blocks_10_content_title','field_64d237e8bb1e2'),(245827,41380,'blocks_10_content_heading','Frequently asked questions '),(245828,41380,'_blocks_10_content_heading','field_64d237e8bb1e3'),(245829,41380,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(245830,41380,'_blocks_10_content_text','field_64d237e8bb1e4'),(245831,41380,'blocks_10_content_actions',''),(245832,41380,'_blocks_10_content_actions','field_64d237e8bb1e5'),(245833,41380,'blocks_10_content_align','left'),(245834,41380,'_blocks_10_content_align','field_64d2443e6b6aa'),(245835,41380,'blocks_10_content',''),(245836,41380,'_blocks_10_content','field_64d237e8bb1e1'),(245837,41380,'blocks_10_accordion_content','faqs'),(245838,41380,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(245839,41380,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(245840,41380,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(245841,41380,'blocks_10_actions',''),(245842,41380,'_blocks_10_actions','field_61a746a817f7a'),(245843,41381,'hide_hero','0'),(245844,41381,'_hide_hero','field_66a2380fcda39'),(245845,41381,'hero_title','Biomechanics and Podiatrists'),(245846,41381,'_hero_title','field_617571fe285e8'),(245847,41381,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(245848,41381,'_hero_text','field_6175723c285e9'),(245849,41381,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(245850,41381,'_hero_actions_0_button','field_61757281285eb'),(245851,41381,'hero_actions','1'),(245852,41381,'_hero_actions','field_61757270285ea'),(245853,41381,'hero_style','default'),(245854,41381,'_hero_style','field_62051d9dc5324'),(245855,41381,'_thumbnail_id','39247'),(245856,41381,'__thumbnail_id','field_617570855ddaf'),(245857,41381,'hero_image_pos_x','right'),(245858,41381,'_hero_image_pos_x','field_62ec3d05390bb'),(245859,41381,'hero_image_pos_y','top'),(245860,41381,'_hero_image_pos_y','field_62ec3d05390bc'),(245861,41381,'hero_image_pos',''),(245862,41381,'_hero_image_pos','field_62ec3d05390ba'),(245863,41381,'fft_hide_from_listings','0'),(245864,41381,'_fft_hide_from_listings','field_61f1320446ab2'),(245865,41381,'fft_page_format','default'),(245866,41381,'_fft_page_format','field_61ae213f1f218'),(245867,41381,'fft_hide_nav','0'),(245868,41381,'_fft_hide_nav','field_635bd5e43527c'),(245869,41381,'fft_hide_header_call_to_action','0'),(245870,41381,'_fft_hide_header_call_to_action','field_635bd6723527d'),(245871,41381,'fft_page_sitemap','0'),(245872,41381,'_fft_page_sitemap','field_61af9b34e8181'),(245873,41381,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(245874,41381,'_blocks','field_6176696113096'),(245875,41381,'blocks_2_acfe_flexible_toggle',''),(245876,41381,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(245877,41381,'blocks_2_acfe_flexible_layout_title','Form'),(245878,41381,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(245879,41381,'blocks_2_row_content_format','standard'),(245880,41381,'_blocks_2_row_content_format','field_6481ead962881'),(245881,41381,'blocks_2_row_content_title',''),(245882,41381,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(245883,41381,'blocks_2_row_content_heading','Enquire Today'),(245884,41381,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(245885,41381,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(245886,41381,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(245887,41381,'blocks_2_row_content_actions',''),(245888,41381,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(245889,41381,'blocks_2_row_content',''),(245890,41381,'_blocks_2_row_content','field_61a0f5f5b3db0'),(245891,41381,'blocks_2_row_form','40394'),(245892,41381,'_blocks_2_row_form','field_61a4ff2c0b08e'),(245893,41381,'blocks_2_row_form_button_label',''),(245894,41381,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(245895,41381,'blocks_0_acfe_flexible_toggle',''),(245896,41381,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(245897,41381,'blocks_0_acfe_flexible_layout_title','Template'),(245898,41381,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(245899,41381,'blocks_0_template','39087'),(245900,41381,'_blocks_0_template','field_617bdd570fe01'),(245901,41381,'blocks_1_acfe_flexible_toggle',''),(245902,41381,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(245903,41381,'blocks_1_acfe_flexible_layout_title','Steps'),(245904,41381,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(245905,41381,'blocks_1_row_content_title',''),(245906,41381,'_blocks_1_row_content_title','field_64888cd1e26e0'),(245907,41381,'blocks_1_row_content_heading','Benefits of training with us'),(245908,41381,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(245909,41381,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(245910,41381,'_blocks_1_row_content_text','field_64888ce2e26e2'),(245911,41381,'blocks_1_row_content_actions',''),(245912,41381,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(245913,41381,'blocks_1_row_content',''),(245914,41381,'_blocks_1_row_content','field_64888cb0e26df'),(245915,41381,'blocks_1_steps_0_icon','progression.svg'),(245916,41381,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(245917,41381,'blocks_1_steps_0_title','Earning Potential'),(245918,41381,'_blocks_1_steps_0_title','field_64888d94e26e7'),(245919,41381,'blocks_1_steps_0_text','Attract new clients, retain current ones, and increase your rates with the Diploma in Biomechanics Coaching. This programme gives you a system to reach new clients and work more effectively with existing ones. Full body screenings may also require extra sessions, providing clients with thorough support and helping you build stronger, long-term relationships.'),(245920,41381,'_blocks_1_steps_0_text','field_64888d99e26e8'),(245921,41381,'blocks_1_steps_1_icon','support.svg'),(245922,41381,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(245923,41381,'blocks_1_steps_1_title','Lifetime Learning Promise'),(245924,41381,'_blocks_1_steps_1_title','field_64888d94e26e7'),(245925,41381,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(245926,41381,'_blocks_1_steps_1_text','field_64888d99e26e8'),(245927,41381,'blocks_1_steps_2_icon','qualification.svg'),(245928,41381,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(245929,41381,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(245930,41381,'_blocks_1_steps_2_title','field_64888d94e26e7'),(245931,41381,'blocks_1_steps_2_text','Developed through over 20 years of research with 4,000 participants - from those recovering from injury to active individuals - is a comprehensive, evidence-backed programme for mastering movement assessments. Through a blend of online learning and hands-on workshops, you’ll learn specific tests and screens to understand the roles of the pelvis, spine, and upper body in lower limb function, particularly foot mechanics. This approach equips you with the insights needed for effective orthotic prescription and tailored movement strategies, helping you optimise outcomes for every client.'),(245932,41381,'_blocks_1_steps_2_text','field_64888d99e26e8'),(245933,41381,'blocks_1_steps_3_icon','leaders.svg'),(245934,41381,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(245935,41381,'blocks_1_steps_3_title','Stand Out From the Crowd'),(245936,41381,'_blocks_1_steps_3_title','field_64888d94e26e7'),(245937,41381,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(245938,41381,'_blocks_1_steps_3_text','field_64888d99e26e8'),(245939,41381,'blocks_1_steps','4'),(245940,41381,'_blocks_1_steps','field_64888d44e26e5'),(245941,41381,'blocks_3_acfe_flexible_toggle',''),(245942,41381,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(245943,41381,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(245944,41381,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(245945,41381,'blocks_3_options_theme','#ffffff'),(245946,41381,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(245947,41381,'blocks_3_options_reverse','0'),(245948,41381,'_blocks_3_options_reverse','field_61768049bb8ac'),(245949,41381,'blocks_3_options',''),(245950,41381,'_blocks_3_options','field_617682517c334'),(245951,41381,'blocks_3_split_5050_image','39617'),(245952,41381,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(245953,41381,'blocks_3_split_5050_video',''),(245954,41381,'_blocks_3_split_5050_video','field_6239f3160848a'),(245955,41381,'blocks_3_split_5050_content_title',''),(245956,41381,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(245957,41381,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(245958,41381,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(245959,41381,'blocks_3_split_5050_content_text','This integrated system offers a full-body approach, covering the pelvis, spine, shoulders, knees, and feet in a comprehensive biomechanical assessment programme. By understanding how the upper body affects lower limb mechanics, podiatrists can address foot issues with a more holistic perspective. This unique assessment method enables you to uncover connections and solutions that traditional approaches may overlook, helping to improve client retention and build trust over time.\r\n\r\nOur model promotes a prevention-focused, system-led approach rather than just responding to symptoms. This proactive method allows you to expand your client base while reducing risks through exercise prescription, supporting clients before, during, and after injuries. It also empowers you with exercise prescription skills that complement your existing expertise, allowing for informed orthotic prescriptions and an integrated care approach to foot health.'),(245960,41381,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(245961,41381,'blocks_3_split_5050_content_actions',''),(245962,41381,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(245963,41381,'blocks_3_split_5050_content',''),(245964,41381,'_blocks_3_split_5050_content','field_61767afceb8ba'),(245965,41381,'blocks_4_acfe_flexible_toggle',''),(245966,41381,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(245967,41381,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(245968,41381,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(245969,41381,'blocks_4_options_theme','#ffffff'),(245970,41381,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(245971,41381,'blocks_4_options_reverse','1'),(245972,41381,'_blocks_4_options_reverse','field_61768049bb8ac'),(245973,41381,'blocks_4_options',''),(245974,41381,'_blocks_4_options','field_617682517c334'),(245975,41381,'blocks_4_split_5050_image','41371'),(245976,41381,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(245977,41381,'blocks_4_split_5050_video',''),(245978,41381,'_blocks_4_split_5050_video','field_6239f3160848a'),(245979,41381,'blocks_4_split_5050_content_title',''),(245980,41381,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(245981,41381,'blocks_4_split_5050_content_heading','Backed by experts in the field'),(245982,41381,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(245983,41381,'blocks_4_split_5050_content_text','Martin Haines RGRT MCSP SRP IBAM, has been the Lead Physiotherapist at Crystal Palace FC and Arsenal FC, as well treating professional rugby players from the England rugby team and Premiership as well as professional footballers from Premiership Teams. He has been the Clinical Director at 4 clinics in the UK and lead consultant for clinics in Sweden and USA. He has been on the PGA Performance Institute and has worked with 5 Olympic Champions. He has also been involved with McLaren F1, working with their drivers to help prevent and manage injury as well as helping design their cars.\r\n\r\nMartin has worked with the Biomechanics Education Team to develop the content for their courses and workshops and consults to help future courses. He has a particular interest in developing biomechanics courses for medical professionals including the Podiatry workshop/course\r\n\r\nPersonally, Martin is an accomplished author and his work has been presented at scientific congresses across the world, including the IOC World Congress on Illness and Injury in Sport. He is a former Honorary Senior Lecturer at Salford University and former chair of the UK Biomechanics Coaching Association.'),(245984,41381,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(245985,41381,'blocks_4_split_5050_content_actions',''),(245986,41381,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(245987,41381,'blocks_4_split_5050_content',''),(245988,41381,'_blocks_4_split_5050_content','field_61767afceb8ba'),(245989,41381,'blocks_5_acfe_flexible_toggle',''),(245990,41381,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(245991,41381,'blocks_5_acfe_flexible_layout_title','Tabs'),(245992,41381,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(245993,41381,'blocks_5_options_theme','#ffffff'),(245994,41381,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(245995,41381,'blocks_5_options',''),(245996,41381,'_blocks_5_options','field_6177cfcd8140f'),(245997,41381,'blocks_5_tabs_0_tab_label','What will I learn?'),(245998,41381,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(245999,41381,'blocks_5_tabs_0_tab_content_title',''),(246000,41381,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(246001,41381,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(246002,41381,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(246003,41381,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n 	<li>Screening System that Informs Orthotic Prescription</li>\r\n 	<li>Provide Exercise Prescription Skills</li>\r\n</ul>'),(246004,41381,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(246005,41381,'blocks_5_tabs_0_tab_content_actions',''),(246006,41381,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(246007,41381,'blocks_5_tabs_0_tab_content',''),(246008,41381,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(246009,41381,'blocks_5_tabs_0_tab_image','39076'),(246010,41381,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(246011,41381,'blocks_5_tabs_1_tab_label','What do I need?'),(246012,41381,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(246013,41381,'blocks_5_tabs_1_tab_content_title',''),(246014,41381,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(246015,41381,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(246016,41381,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(246017,41381,'blocks_5_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Podiatry Qualification</li>\r\n 	<li>Chiropodist Qualification</li>\r\n 	<li>Orthotist Qualification</li>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(246018,41381,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(246019,41381,'blocks_5_tabs_1_tab_content_actions',''),(246020,41381,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(246021,41381,'blocks_5_tabs_1_tab_content',''),(246022,41381,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(246023,41381,'blocks_5_tabs_1_tab_image','39223'),(246024,41381,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(246025,41381,'blocks_5_tabs_2_tab_label','Where can I learn?'),(246026,41381,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(246027,41381,'blocks_5_tabs_2_tab_content_title',''),(246028,41381,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(246029,41381,'blocks_5_tabs_2_tab_content_heading','Locations'),(246030,41381,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(246031,41381,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(246032,41381,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(246033,41381,'blocks_5_tabs_2_tab_content_actions',''),(246034,41381,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(246035,41381,'blocks_5_tabs_2_tab_content',''),(246036,41381,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(246037,41381,'blocks_5_tabs_2_tab_image','39224'),(246038,41381,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(246039,41381,'blocks_5_tabs','3'),(246040,41381,'_blocks_5_tabs','field_6177cff281419'),(246041,41381,'blocks_6_acfe_flexible_toggle',''),(246042,41381,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(246043,41381,'blocks_6_acfe_flexible_layout_title','Text Block'),(246044,41381,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(246045,41381,'blocks_6_options_theme','#b61234'),(246046,41381,'_blocks_6_options_theme','field_6176830e2ad17'),(246047,41381,'blocks_6_options',''),(246048,41381,'_blocks_6_options','field_6176830e2ad16'),(246049,41381,'blocks_6_text_block_heading','Fees & Funding Options'),(246050,41381,'_blocks_6_text_block_heading','field_617669d413097'),(246051,41381,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(246052,41381,'_blocks_6_text_block_content','field_617669ec13098'),(246053,41381,'blocks_7_acfe_flexible_toggle',''),(246054,41381,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(246055,41381,'blocks_7_acfe_flexible_layout_title','Icons'),(246056,41381,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(246057,41381,'blocks_7_options_theme','#b61234'),(246058,41381,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(246059,41381,'blocks_7_options_format','row'),(246060,41381,'_blocks_7_options_format','field_64bfde9a90690'),(246061,41381,'blocks_7_options',''),(246062,41381,'_blocks_7_options','field_64bfdd9b90684'),(246063,41381,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(246064,41381,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(246065,41381,'blocks_7_icon_row_items_0_label','Pay in Full'),(246066,41381,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(246067,41381,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(246068,41381,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(246069,41381,'blocks_7_icon_row_items_1_icon','finance.svg'),(246070,41381,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(246071,41381,'blocks_7_icon_row_items_1_label','0% finance'),(246072,41381,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(246073,41381,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(246074,41381,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(246075,41381,'blocks_7_icon_row_items_2_icon','deposit.svg'),(246076,41381,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(246077,41381,'blocks_7_icon_row_items_2_label','Deposit & balance'),(246078,41381,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(246079,41381,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(246080,41381,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(246081,41381,'blocks_7_icon_row_items','3'),(246082,41381,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(246083,41381,'blocks_8_acfe_flexible_toggle',''),(246084,41381,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(246085,41381,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(246086,41381,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(246087,41381,'blocks_8_options_theme','#f5f5f5'),(246088,41381,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(246089,41381,'blocks_8_options_reverse','0'),(246090,41381,'_blocks_8_options_reverse','field_61768049bb8ac'),(246091,41381,'blocks_8_options',''),(246092,41381,'_blocks_8_options','field_617682517c334'),(246093,41381,'blocks_8_split_5050_image','40920'),(246094,41381,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(246095,41381,'blocks_8_split_5050_video',''),(246096,41381,'_blocks_8_split_5050_video','field_6239f3160848a'),(246097,41381,'blocks_8_split_5050_content_title',''),(246098,41381,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(246099,41381,'blocks_8_split_5050_content_heading','Why Study This Course?'),(246100,41381,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(246101,41381,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(246102,41381,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(246103,41381,'blocks_8_split_5050_content_actions',''),(246104,41381,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(246105,41381,'blocks_8_split_5050_content',''),(246106,41381,'_blocks_8_split_5050_content','field_61767afceb8ba'),(246107,41381,'blocks_9_acfe_flexible_toggle',''),(246108,41381,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(246109,41381,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(246110,41381,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(246111,41381,'blocks_9_testimonial_slider_content_title',''),(246112,41381,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(246113,41381,'blocks_9_testimonial_slider_content_heading','Testimonials'),(246114,41381,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(246115,41381,'blocks_9_testimonial_slider_content_text',''),(246116,41381,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(246117,41381,'blocks_9_testimonial_slider_content_actions',''),(246118,41381,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(246119,41381,'blocks_9_testimonial_slider_content',''),(246120,41381,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(246121,41381,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(246122,41381,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(246123,41381,'blocks_9_testimonial_slider_ambassador_bool','0'),(246124,41381,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(246125,41381,'blocks_10_acfe_flexible_toggle',''),(246126,41381,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(246127,41381,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(246128,41381,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(246129,41381,'blocks_10_options_theme','#ffffff'),(246130,41381,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(246131,41381,'blocks_10_options_state','0'),(246132,41381,'_blocks_10_options_state','field_6239fcb7508c5'),(246133,41381,'blocks_10_options',''),(246134,41381,'_blocks_10_options','field_6177e2991ac44'),(246135,41381,'blocks_10_content_title',''),(246136,41381,'_blocks_10_content_title','field_64d237e8bb1e2'),(246137,41381,'blocks_10_content_heading','Frequently asked questions '),(246138,41381,'_blocks_10_content_heading','field_64d237e8bb1e3'),(246139,41381,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(246140,41381,'_blocks_10_content_text','field_64d237e8bb1e4'),(246141,41381,'blocks_10_content_actions',''),(246142,41381,'_blocks_10_content_actions','field_64d237e8bb1e5'),(246143,41381,'blocks_10_content_align','left'),(246144,41381,'_blocks_10_content_align','field_64d2443e6b6aa'),(246145,41381,'blocks_10_content',''),(246146,41381,'_blocks_10_content','field_64d237e8bb1e1'),(246147,41381,'blocks_10_accordion_content','faqs'),(246148,41381,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(246149,41381,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(246150,41381,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(246151,41381,'blocks_10_actions',''),(246152,41381,'_blocks_10_actions','field_61a746a817f7a'),(246153,41383,'hide_hero','0'),(246154,41383,'_hide_hero','field_66a2380fcda39'),(246155,41383,'hero_title','IBA Membership Info'),(246156,41383,'_hero_title','field_617571fe285e8'),(246157,41383,'hero_text','Join the Intrinsic Biomechanics Association (IBA) for exclusive benefits and networking opportunities.'),(246158,41383,'_hero_text','field_6175723c285e9'),(246159,41383,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:12:\"#row-41280-2\";s:6:\"target\";s:0:\"\";}'),(246160,41383,'_hero_actions_0_button','field_61757281285eb'),(246161,41383,'hero_actions','1'),(246162,41383,'_hero_actions','field_61757270285ea'),(246163,41383,'hero_style','default'),(246164,41383,'_hero_style','field_62051d9dc5324'),(246165,41383,'_thumbnail_id','40503'),(246166,41383,'__thumbnail_id','field_617570855ddaf'),(246167,41383,'hero_image_pos_x','right'),(246168,41383,'_hero_image_pos_x','field_62ec3d05390bb'),(246169,41383,'hero_image_pos_y','top'),(246170,41383,'_hero_image_pos_y','field_62ec3d05390bc'),(246171,41383,'hero_image_pos',''),(246172,41383,'_hero_image_pos','field_62ec3d05390ba'),(246173,41383,'fft_hide_from_listings','0'),(246174,41383,'_fft_hide_from_listings','field_61f1320446ab2'),(246175,41383,'fft_page_format','default'),(246176,41383,'_fft_page_format','field_61ae213f1f218'),(246177,41383,'fft_hide_nav','0'),(246178,41383,'_fft_hide_nav','field_635bd5e43527c'),(246179,41383,'fft_hide_header_call_to_action','0'),(246180,41383,'_fft_hide_header_call_to_action','field_635bd6723527d'),(246181,41383,'fft_page_sitemap','0'),(246182,41383,'_fft_page_sitemap','field_61af9b34e8181'),(246183,41383,'blocks_0_acfe_flexible_toggle',''),(246184,41383,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(246185,41383,'blocks_0_acfe_flexible_layout_title','Text Block'),(246186,41383,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(246187,41383,'blocks_0_options_theme','#ffffff'),(246188,41383,'_blocks_0_options_theme','field_6176830e2ad17'),(246189,41383,'blocks_0_options',''),(246190,41383,'_blocks_0_options','field_6176830e2ad16'),(246191,41383,'blocks_0_text_block_heading','Discover the IBA'),(246192,41383,'_blocks_0_text_block_heading','field_617669d413097'),(246193,41383,'blocks_0_text_block_content','Discover the Intrinsic Biomechanics Association (IBA), your gateway to a supportive community and invaluable resources for Biomechanics Trainers™ &amp; Coaches™. Managed by Biomechanics Education Limited, the IBA offers networking opportunities, standardised practices, and ongoing education in all things that relate to being a Biomechanics Coach. Membership benefits include exclusive workshops, discounts on courses and products, mentorship, and access to a vibrant professional network. Join today to enhance your practice and stay at the forefront of biomechanical advancements.'),(246194,41383,'_blocks_0_text_block_content','field_617669ec13098'),(246195,41383,'blocks_1_acfe_flexible_toggle',''),(246196,41383,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(246197,41383,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(246198,41383,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(246199,41383,'blocks_1_options_theme','#b61234'),(246200,41383,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(246201,41383,'blocks_1_options_reverse','0'),(246202,41383,'_blocks_1_options_reverse','field_61768049bb8ac'),(246203,41383,'blocks_1_options',''),(246204,41383,'_blocks_1_options','field_617682517c334'),(246205,41383,'blocks_1_split_5050_image','40819'),(246206,41383,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(246207,41383,'blocks_1_split_5050_video',''),(246208,41383,'_blocks_1_split_5050_video','field_6239f3160848a'),(246209,41383,'blocks_1_split_5050_content_title',''),(246210,41383,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(246211,41383,'blocks_1_split_5050_content_heading','Benefits'),(246212,41383,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(246213,41383,'blocks_1_split_5050_content_text','<h2>Benefits</h2>\r\n<ul>\r\n 	<li>FREE 6 Online IBA Discovery Days per annum</li>\r\n 	<li>10% off all face to face workshops</li>\r\n 	<li>FREE 12-week online business accountability course</li>\r\n 	<li>FREE Branded T Shirt / Vest top – every year</li>\r\n 	<li>Eligibility for the IBA Register of Biomechanics Coaches</li>\r\n 	<li>Eligibility for the FIND A COACH map locator</li>\r\n 	<li>Mentor support from the Master Trainer team</li>\r\n 	<li>Support from professionals across the UK &amp; overseas</li>\r\n 	<li>Discounts on partner courses, products, and equipment</li>\r\n 	<li>Discounts on CIMSPA Membership</li>\r\n 	<li>Discounts &amp; BENEFITS of BGi Insurance</li>\r\n 	<li>Access to ProZone</li>\r\n</ul>'),(246214,41383,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(246215,41383,'blocks_1_split_5050_content_actions',''),(246216,41383,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(246217,41383,'blocks_1_split_5050_content',''),(246218,41383,'_blocks_1_split_5050_content','field_61767afceb8ba'),(246219,41383,'blocks_2_acfe_flexible_toggle',''),(246220,41383,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(246221,41383,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(246222,41383,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(246223,41383,'blocks_2_options_theme','#ffffff'),(246224,41383,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(246225,41383,'blocks_2_options_reverse','0'),(246226,41383,'_blocks_2_options_reverse','field_61768049bb8ac'),(246227,41383,'blocks_2_options',''),(246228,41383,'_blocks_2_options','field_617682517c334'),(246229,41383,'blocks_2_split_5050_image','39165'),(246230,41383,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(246231,41383,'blocks_2_split_5050_video',''),(246232,41383,'_blocks_2_split_5050_video','field_6239f3160848a'),(246233,41383,'blocks_2_split_5050_content_title',''),(246234,41383,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(246235,41383,'blocks_2_split_5050_content_heading','Reserve Your Place'),(246236,41383,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(246237,41383,'blocks_2_split_5050_content_text','Join our monthly IBA Member workshops, conducted online for convenience and accessibility. These engaging sessions offer Biomechanics Trainers™ &amp; Coaches™ valuable insights, networking opportunities, and practical knowledge in biomechanics. Secure your virtual seat today to enhance your expertise from anywhere in the world.'),(246238,41383,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(246239,41383,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:14:\"IBA Membership\";s:3:\"url\";s:70:\"https://biomechanicseducation.com/courses/biomechanics/iba-membership/\";s:6:\"target\";s:0:\"\";}'),(246240,41383,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(246241,41383,'blocks_2_split_5050_content_actions','1'),(246242,41383,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(246243,41383,'blocks_2_split_5050_content',''),(246244,41383,'_blocks_2_split_5050_content','field_61767afceb8ba'),(246245,41383,'blocks_3_acfe_flexible_toggle',''),(246246,41383,'_blocks_3_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(246247,41383,'blocks_3_acfe_flexible_layout_title','Testimonial Slider'),(246248,41383,'_blocks_3_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(246249,41383,'blocks_3_testimonial_slider_content_title',''),(246250,41383,'_blocks_3_testimonial_slider_content_title','field_617c033b39a60'),(246251,41383,'blocks_3_testimonial_slider_content_heading','Testimonials'),(246252,41383,'_blocks_3_testimonial_slider_content_heading','field_617c033b39a61'),(246253,41383,'blocks_3_testimonial_slider_content_text','Discover testimonials from people currently subscribed as an IBA member'),(246254,41383,'_blocks_3_testimonial_slider_content_text','field_617c033b39a62'),(246255,41383,'blocks_3_testimonial_slider_content_actions',''),(246256,41383,'_blocks_3_testimonial_slider_content_actions','field_617c033b39a63'),(246257,41383,'blocks_3_testimonial_slider_content',''),(246258,41383,'_blocks_3_testimonial_slider_content','field_617c033b39a5f'),(246259,41383,'blocks_3_testimonial_slider_items','a:4:{i:0;s:5:\"38965\";i:1;s:5:\"38964\";i:2;s:5:\"39168\";i:3;s:5:\"39169\";}'),(246260,41383,'_blocks_3_testimonial_slider_items','field_61812eaeb20eb'),(246261,41383,'blocks_3_testimonial_slider_ambassador_bool','1'),(246262,41383,'_blocks_3_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(246263,41383,'blocks_3_testimonial_slider_ambassador',''),(246264,41383,'_blocks_3_testimonial_slider_ambassador','field_61a4a3c0704d0'),(246265,41383,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:18:\"testimonial_slider\";}'),(246266,41383,'_blocks','field_6176696113096'),(246267,41383,'_acf_changed','1'),(246268,41395,'hide_hero','0'),(246269,41395,'_hide_hero','field_66a2380fcda39'),(246270,41395,'hero_title','Introduction to Biomechanics Education Course'),(246271,41395,'_hero_title','field_617571fe285e8'),(246272,41395,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!\r\n'),(246273,41395,'_hero_text','field_6175723c285e9'),(246274,41395,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246275,41395,'_hero_actions_0_button','field_61757281285eb'),(246276,41395,'hero_actions','1'),(246277,41395,'_hero_actions','field_61757270285ea'),(246278,41395,'hero_style','default'),(246279,41395,'_hero_style','field_62051d9dc5324'),(246280,41395,'_thumbnail_id','41228'),(246281,41395,'__thumbnail_id','field_617570855ddaf'),(246282,41395,'hero_image_pos_x','right'),(246283,41395,'_hero_image_pos_x','field_62ec3d05390bb'),(246284,41395,'hero_image_pos_y','top'),(246285,41395,'_hero_image_pos_y','field_62ec3d05390bc'),(246286,41395,'hero_image_pos',''),(246287,41395,'_hero_image_pos','field_62ec3d05390ba'),(246288,41395,'fft_hide_from_listings','0'),(246289,41395,'_fft_hide_from_listings','field_61f1320446ab2'),(246290,41395,'fft_page_format','default'),(246291,41395,'_fft_page_format','field_61ae213f1f218'),(246292,41395,'fft_hide_nav','0'),(246293,41395,'_fft_hide_nav','field_635bd5e43527c'),(246294,41395,'fft_hide_header_call_to_action','0'),(246295,41395,'_fft_hide_header_call_to_action','field_635bd6723527d'),(246296,41395,'fft_page_sitemap','0'),(246297,41395,'_fft_page_sitemap','field_61af9b34e8181'),(246298,41395,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(246299,41395,'_blocks','field_6176696113096'),(246300,41395,'course_label_text','Introduction to Biomechanics Education Course'),(246301,41395,'_course_label_text','field_61e17babf71fa'),(246302,41395,'course_label',''),(246303,41395,'_course_label','field_61e12f92749a7'),(246304,41395,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(246305,41395,'_course_description','field_617ac5788e5e1'),(246306,41395,'course_key_info',''),(246307,41395,'_course_key_info','field_617ac6ad8e5e2'),(246308,41395,'course_included',''),(246309,41395,'_course_included','field_617ac6f08e5e4'),(246310,41395,'blocks_0_acfe_flexible_toggle',''),(246311,41395,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(246312,41395,'blocks_0_acfe_flexible_layout_title','Icons'),(246313,41395,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(246314,41395,'blocks_0_options_theme','#ffffff'),(246315,41395,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(246316,41395,'blocks_0_options_format','row'),(246317,41395,'_blocks_0_options_format','field_64bfde9a90690'),(246318,41395,'blocks_0_options',''),(246319,41395,'_blocks_0_options','field_64bfdd9b90684'),(246320,41395,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(246321,41395,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(246322,41395,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(246323,41395,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(246324,41395,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(246325,41395,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(246326,41395,'blocks_0_icon_row_items_1_icon','build-career.svg'),(246327,41395,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(246328,41395,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(246329,41395,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(246330,41395,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(246331,41395,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(246332,41395,'blocks_0_icon_row_items_2_icon','diversify.svg'),(246333,41395,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(246334,41395,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(246335,41395,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(246336,41395,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(246337,41395,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(246338,41395,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(246339,41395,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(246340,41395,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(246341,41395,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(246342,41395,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(246343,41395,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(246344,41395,'blocks_0_icon_row_items','4'),(246345,41395,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(246346,41395,'blocks_1_acfe_flexible_toggle',''),(246347,41395,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(246348,41395,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(246349,41395,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(246350,41395,'blocks_1_options_theme','#ffffff'),(246351,41395,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(246352,41395,'blocks_1_options_reverse','0'),(246353,41395,'_blocks_1_options_reverse','field_61768049bb8ac'),(246354,41395,'blocks_1_options',''),(246355,41395,'_blocks_1_options','field_617682517c334'),(246356,41395,'blocks_1_split_5050_image','41239'),(246357,41395,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(246358,41395,'blocks_1_split_5050_video',''),(246359,41395,'_blocks_1_split_5050_video','field_6239f3160848a'),(246360,41395,'blocks_1_split_5050_content_title',''),(246361,41395,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(246362,41395,'blocks_1_split_5050_content_heading','Course Overview'),(246363,41395,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(246364,41395,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nGet started on this 60 minute course to begin your journey towards becoming an Intrinsic Biomechanics Coach and join the movement towards active well-being and improve health at a population level!\r\n\r\nUse code intro at check out to get this course for free.\r\n\r\n​'),(246365,41395,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(246366,41395,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246367,41395,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(246368,41395,'blocks_1_split_5050_content_actions','1'),(246369,41395,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(246370,41395,'blocks_1_split_5050_content',''),(246371,41395,'_blocks_1_split_5050_content','field_61767afceb8ba'),(246372,41395,'blocks_2_acfe_flexible_toggle',''),(246373,41395,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(246374,41395,'blocks_2_acfe_flexible_layout_title','Timeline'),(246375,41395,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(246376,41395,'blocks_2_options_theme','#ffffff'),(246377,41395,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(246378,41395,'blocks_2_options',''),(246379,41395,'_blocks_2_options','field_6177de53d1195'),(246380,41395,'blocks_2_timeline_content_title',''),(246381,41395,'_blocks_2_timeline_content_title','field_6177de53d1198'),(246382,41395,'blocks_2_timeline_content_heading','How to enrol on this course'),(246383,41395,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(246384,41395,'blocks_2_timeline_content_text','Signing up for this course is as easy as 1, 2, 3! ​\r\n\r\nFollow these steps and get instant access to our online e-learning platform.\r\n\r\n<strong>Don’t forget to use code intro at check out to get this course for free.</strong>'),(246385,41395,'_blocks_2_timeline_content_text','field_6177de53d119a'),(246386,41395,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246387,41395,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(246388,41395,'blocks_2_timeline_content_actions','1'),(246389,41395,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(246390,41395,'blocks_2_timeline_content',''),(246391,41395,'_blocks_2_timeline_content','field_6177de53d1197'),(246392,41395,'blocks_2_timeline_items_0_title','Enrol Now'),(246393,41395,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(246394,41395,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(246395,41395,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(246396,41395,'blocks_2_timeline_items_1_title','Progress to Checkout'),(246397,41395,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(246398,41395,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(246399,41395,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(246400,41395,'blocks_2_timeline_items_2_title','Get Access'),(246401,41395,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(246402,41395,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(246403,41395,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(246404,41395,'blocks_2_timeline_items_3_title','Complete the Course'),(246405,41395,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(246406,41395,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(246407,41395,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(246408,41395,'blocks_2_timeline_items','4'),(246409,41395,'_blocks_2_timeline_items','field_6177de53d119d'),(246410,41395,'blocks_3_acfe_flexible_toggle',''),(246411,41395,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(246412,41395,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(246413,41395,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(246414,41395,'blocks_3_options_theme','#ffffff'),(246415,41395,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(246416,41395,'blocks_3_options_reverse','0'),(246417,41395,'_blocks_3_options_reverse','field_61768049bb8ac'),(246418,41395,'blocks_3_options',''),(246419,41395,'_blocks_3_options','field_617682517c334'),(246420,41395,'blocks_3_split_5050_image',''),(246421,41395,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(246422,41395,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA'),(246423,41395,'_blocks_3_split_5050_video','field_6239f3160848a'),(246424,41395,'blocks_3_split_5050_content_title',''),(246425,41395,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(246426,41395,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(246427,41395,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(246428,41395,'blocks_3_split_5050_content_text','\"You cannot solve the problems of today, with the thinking that created them\"\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you\'re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.\r\n\r\nReady to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free.'),(246429,41395,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(246430,41395,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246431,41395,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(246432,41395,'blocks_3_split_5050_content_actions','1'),(246433,41395,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(246434,41395,'blocks_3_split_5050_content',''),(246435,41395,'_blocks_3_split_5050_content','field_61767afceb8ba'),(246436,41395,'blocks_4_acfe_flexible_toggle',''),(246437,41395,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(246438,41395,'blocks_4_acfe_flexible_layout_title','Icons'),(246439,41395,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(246440,41395,'blocks_4_options_theme','#ffffff'),(246441,41395,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(246442,41395,'blocks_4_options_format','grid'),(246443,41395,'_blocks_4_options_format','field_64bfde9a90690'),(246444,41395,'blocks_4_options',''),(246445,41395,'_blocks_4_options','field_64bfdd9b90684'),(246446,41395,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(246447,41395,'_blocks_4_row_content_title','field_64bfdd9b90687'),(246448,41395,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(246449,41395,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(246450,41395,'blocks_4_row_content_text',''),(246451,41395,'_blocks_4_row_content_text','field_64bfdd9b90689'),(246452,41395,'blocks_4_row_content_actions',''),(246453,41395,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(246454,41395,'blocks_4_row_content',''),(246455,41395,'_blocks_4_row_content','field_64bfdd9b90686'),(246456,41395,'blocks_4_icon_row_items_0_icon','build-career.svg'),(246457,41395,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(246458,41395,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(246459,41395,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(246460,41395,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(246461,41395,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(246462,41395,'blocks_4_icon_row_items_1_icon','qualification.svg'),(246463,41395,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(246464,41395,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(246465,41395,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(246466,41395,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(246467,41395,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(246468,41395,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(246469,41395,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(246470,41395,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(246471,41395,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(246472,41395,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(246473,41395,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(246474,41395,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(246475,41395,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(246476,41395,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(246477,41395,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(246478,41395,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(246479,41395,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(246480,41395,'blocks_4_icon_row_items','4'),(246481,41395,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(246482,41395,'blocks_5_acfe_flexible_toggle',''),(246483,41395,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(246484,41395,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(246485,41395,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(246486,41395,'blocks_5_options_theme','#ffffff'),(246487,41395,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(246488,41395,'blocks_5_options_reverse','0'),(246489,41395,'_blocks_5_options_reverse','field_61768049bb8ac'),(246490,41395,'blocks_5_options',''),(246491,41395,'_blocks_5_options','field_617682517c334'),(246492,41395,'blocks_5_split_5050_image','41241'),(246493,41395,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(246494,41395,'blocks_5_split_5050_video',''),(246495,41395,'_blocks_5_split_5050_video','field_6239f3160848a'),(246496,41395,'blocks_5_split_5050_content_title',''),(246497,41395,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(246498,41395,'blocks_5_split_5050_content_heading','What\'s included?'),(246499,41395,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(246500,41395,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(246501,41395,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(246502,41395,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246503,41395,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(246504,41395,'blocks_5_split_5050_content_actions','1'),(246505,41395,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(246506,41395,'blocks_5_split_5050_content',''),(246507,41395,'_blocks_5_split_5050_content','field_61767afceb8ba'),(246508,41395,'blocks_6_acfe_flexible_toggle',''),(246509,41395,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(246510,41395,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(246511,41395,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(246512,41395,'blocks_6_options_alignment','left'),(246513,41395,'_blocks_6_options_alignment','field_61769449f5490'),(246514,41395,'blocks_6_options',''),(246515,41395,'_blocks_6_options','field_617693e1428f0'),(246516,41395,'blocks_6_promo_panel_image','41242'),(246517,41395,'_blocks_6_promo_panel_image','field_617693e1428f3'),(246518,41395,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(246519,41395,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(246520,41395,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(246521,41395,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(246522,41395,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246523,41395,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(246524,41395,'blocks_6_promo_panel_content_actions','1'),(246525,41395,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(246526,41395,'blocks_6_promo_panel_content',''),(246527,41395,'_blocks_6_promo_panel_content','field_617693e1428f4'),(246528,41395,'course_label_label_theme','#0d1f73'),(246529,41395,'_course_label_label_theme','field_61e17bb8f71fb'),(246530,41396,'hide_hero','0'),(246531,41396,'_hide_hero','field_66a2380fcda39'),(246532,41396,'hero_title','Introduction to Biomechanics Education Course'),(246533,41396,'_hero_title','field_617571fe285e8'),(246534,41396,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!\r\n'),(246535,41396,'_hero_text','field_6175723c285e9'),(246536,41396,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246537,41396,'_hero_actions_0_button','field_61757281285eb'),(246538,41396,'hero_actions','1'),(246539,41396,'_hero_actions','field_61757270285ea'),(246540,41396,'hero_style','default'),(246541,41396,'_hero_style','field_62051d9dc5324'),(246542,41396,'_thumbnail_id','41228'),(246543,41396,'__thumbnail_id','field_617570855ddaf'),(246544,41396,'hero_image_pos_x','right'),(246545,41396,'_hero_image_pos_x','field_62ec3d05390bb'),(246546,41396,'hero_image_pos_y','top'),(246547,41396,'_hero_image_pos_y','field_62ec3d05390bc'),(246548,41396,'hero_image_pos',''),(246549,41396,'_hero_image_pos','field_62ec3d05390ba'),(246550,41396,'fft_hide_from_listings','0'),(246551,41396,'_fft_hide_from_listings','field_61f1320446ab2'),(246552,41396,'fft_page_format','default'),(246553,41396,'_fft_page_format','field_61ae213f1f218'),(246554,41396,'fft_hide_nav','0'),(246555,41396,'_fft_hide_nav','field_635bd5e43527c'),(246556,41396,'fft_hide_header_call_to_action','0'),(246557,41396,'_fft_hide_header_call_to_action','field_635bd6723527d'),(246558,41396,'fft_page_sitemap','0'),(246559,41396,'_fft_page_sitemap','field_61af9b34e8181'),(246560,41396,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(246561,41396,'_blocks','field_6176696113096'),(246562,41396,'course_label_text','Introduction to Biomechanics Education Course'),(246563,41396,'_course_label_text','field_61e17babf71fa'),(246564,41396,'course_label',''),(246565,41396,'_course_label','field_61e12f92749a7'),(246566,41396,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(246567,41396,'_course_description','field_617ac5788e5e1'),(246568,41396,'course_key_info',''),(246569,41396,'_course_key_info','field_617ac6ad8e5e2'),(246570,41396,'course_included',''),(246571,41396,'_course_included','field_617ac6f08e5e4'),(246572,41396,'blocks_0_acfe_flexible_toggle',''),(246573,41396,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(246574,41396,'blocks_0_acfe_flexible_layout_title','Icons'),(246575,41396,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(246576,41396,'blocks_0_options_theme','#ffffff'),(246577,41396,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(246578,41396,'blocks_0_options_format','row'),(246579,41396,'_blocks_0_options_format','field_64bfde9a90690'),(246580,41396,'blocks_0_options',''),(246581,41396,'_blocks_0_options','field_64bfdd9b90684'),(246582,41396,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(246583,41396,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(246584,41396,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(246585,41396,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(246586,41396,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(246587,41396,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(246588,41396,'blocks_0_icon_row_items_1_icon','build-career.svg'),(246589,41396,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(246590,41396,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(246591,41396,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(246592,41396,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(246593,41396,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(246594,41396,'blocks_0_icon_row_items_2_icon','diversify.svg'),(246595,41396,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(246596,41396,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(246597,41396,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(246598,41396,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(246599,41396,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(246600,41396,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(246601,41396,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(246602,41396,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(246603,41396,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(246604,41396,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(246605,41396,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(246606,41396,'blocks_0_icon_row_items','4'),(246607,41396,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(246608,41396,'blocks_1_acfe_flexible_toggle',''),(246609,41396,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(246610,41396,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(246611,41396,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(246612,41396,'blocks_1_options_theme','#ffffff'),(246613,41396,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(246614,41396,'blocks_1_options_reverse','0'),(246615,41396,'_blocks_1_options_reverse','field_61768049bb8ac'),(246616,41396,'blocks_1_options',''),(246617,41396,'_blocks_1_options','field_617682517c334'),(246618,41396,'blocks_1_split_5050_image','41239'),(246619,41396,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(246620,41396,'blocks_1_split_5050_video',''),(246621,41396,'_blocks_1_split_5050_video','field_6239f3160848a'),(246622,41396,'blocks_1_split_5050_content_title',''),(246623,41396,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(246624,41396,'blocks_1_split_5050_content_heading','Course Overview'),(246625,41396,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(246626,41396,'blocks_1_split_5050_content_text','Unlock the secrets of intrinsic biomechanics and elevate your Pilates programming and coaching. By mastering these concepts, you\'ll become a sought-after expert in the field, gaining unique skills that set you apart in the market.\r\n\r\nStart your journey with this 60-minute course and become an Intrinsic Biomechanics Coach. Join us in promoting active well-being and improving health on a broader scale!\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access this course for free.\r\n\r\n​'),(246627,41396,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(246628,41396,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246629,41396,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(246630,41396,'blocks_1_split_5050_content_actions','1'),(246631,41396,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(246632,41396,'blocks_1_split_5050_content',''),(246633,41396,'_blocks_1_split_5050_content','field_61767afceb8ba'),(246634,41396,'blocks_2_acfe_flexible_toggle',''),(246635,41396,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(246636,41396,'blocks_2_acfe_flexible_layout_title','Timeline'),(246637,41396,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(246638,41396,'blocks_2_options_theme','#ffffff'),(246639,41396,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(246640,41396,'blocks_2_options',''),(246641,41396,'_blocks_2_options','field_6177de53d1195'),(246642,41396,'blocks_2_timeline_content_title',''),(246643,41396,'_blocks_2_timeline_content_title','field_6177de53d1198'),(246644,41396,'blocks_2_timeline_content_heading','How to enrol on this course'),(246645,41396,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(246646,41396,'blocks_2_timeline_content_text','Signing up for this course is as easy as 1, 2, 3! ​\r\n\r\nFollow these steps and get instant access to our online e-learning platform.\r\n\r\n<strong>Don’t forget to use code intro at check out to get this course for free.</strong>'),(246647,41396,'_blocks_2_timeline_content_text','field_6177de53d119a'),(246648,41396,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246649,41396,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(246650,41396,'blocks_2_timeline_content_actions','1'),(246651,41396,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(246652,41396,'blocks_2_timeline_content',''),(246653,41396,'_blocks_2_timeline_content','field_6177de53d1197'),(246654,41396,'blocks_2_timeline_items_0_title','Enrol Now'),(246655,41396,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(246656,41396,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(246657,41396,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(246658,41396,'blocks_2_timeline_items_1_title','Progress to Checkout'),(246659,41396,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(246660,41396,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(246661,41396,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(246662,41396,'blocks_2_timeline_items_2_title','Get Access'),(246663,41396,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(246664,41396,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(246665,41396,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(246666,41396,'blocks_2_timeline_items_3_title','Complete the Course'),(246667,41396,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(246668,41396,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(246669,41396,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(246670,41396,'blocks_2_timeline_items','4'),(246671,41396,'_blocks_2_timeline_items','field_6177de53d119d'),(246672,41396,'blocks_3_acfe_flexible_toggle',''),(246673,41396,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(246674,41396,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(246675,41396,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(246676,41396,'blocks_3_options_theme','#ffffff'),(246677,41396,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(246678,41396,'blocks_3_options_reverse','0'),(246679,41396,'_blocks_3_options_reverse','field_61768049bb8ac'),(246680,41396,'blocks_3_options',''),(246681,41396,'_blocks_3_options','field_617682517c334'),(246682,41396,'blocks_3_split_5050_image',''),(246683,41396,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(246684,41396,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA'),(246685,41396,'_blocks_3_split_5050_video','field_6239f3160848a'),(246686,41396,'blocks_3_split_5050_content_title',''),(246687,41396,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(246688,41396,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(246689,41396,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(246690,41396,'blocks_3_split_5050_content_text','\"You cannot solve the problems of today, with the thinking that created them\"\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you\'re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.\r\n\r\nReady to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free.'),(246691,41396,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(246692,41396,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246693,41396,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(246694,41396,'blocks_3_split_5050_content_actions','1'),(246695,41396,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(246696,41396,'blocks_3_split_5050_content',''),(246697,41396,'_blocks_3_split_5050_content','field_61767afceb8ba'),(246698,41396,'blocks_4_acfe_flexible_toggle',''),(246699,41396,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(246700,41396,'blocks_4_acfe_flexible_layout_title','Icons'),(246701,41396,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(246702,41396,'blocks_4_options_theme','#ffffff'),(246703,41396,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(246704,41396,'blocks_4_options_format','grid'),(246705,41396,'_blocks_4_options_format','field_64bfde9a90690'),(246706,41396,'blocks_4_options',''),(246707,41396,'_blocks_4_options','field_64bfdd9b90684'),(246708,41396,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(246709,41396,'_blocks_4_row_content_title','field_64bfdd9b90687'),(246710,41396,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(246711,41396,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(246712,41396,'blocks_4_row_content_text',''),(246713,41396,'_blocks_4_row_content_text','field_64bfdd9b90689'),(246714,41396,'blocks_4_row_content_actions',''),(246715,41396,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(246716,41396,'blocks_4_row_content',''),(246717,41396,'_blocks_4_row_content','field_64bfdd9b90686'),(246718,41396,'blocks_4_icon_row_items_0_icon','build-career.svg'),(246719,41396,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(246720,41396,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(246721,41396,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(246722,41396,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(246723,41396,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(246724,41396,'blocks_4_icon_row_items_1_icon','qualification.svg'),(246725,41396,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(246726,41396,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(246727,41396,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(246728,41396,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(246729,41396,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(246730,41396,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(246731,41396,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(246732,41396,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(246733,41396,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(246734,41396,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(246735,41396,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(246736,41396,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(246737,41396,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(246738,41396,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(246739,41396,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(246740,41396,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(246741,41396,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(246742,41396,'blocks_4_icon_row_items','4'),(246743,41396,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(246744,41396,'blocks_5_acfe_flexible_toggle',''),(246745,41396,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(246746,41396,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(246747,41396,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(246748,41396,'blocks_5_options_theme','#ffffff'),(246749,41396,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(246750,41396,'blocks_5_options_reverse','0'),(246751,41396,'_blocks_5_options_reverse','field_61768049bb8ac'),(246752,41396,'blocks_5_options',''),(246753,41396,'_blocks_5_options','field_617682517c334'),(246754,41396,'blocks_5_split_5050_image','41241'),(246755,41396,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(246756,41396,'blocks_5_split_5050_video',''),(246757,41396,'_blocks_5_split_5050_video','field_6239f3160848a'),(246758,41396,'blocks_5_split_5050_content_title',''),(246759,41396,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(246760,41396,'blocks_5_split_5050_content_heading','What\'s included?'),(246761,41396,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(246762,41396,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(246763,41396,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(246764,41396,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246765,41396,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(246766,41396,'blocks_5_split_5050_content_actions','1'),(246767,41396,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(246768,41396,'blocks_5_split_5050_content',''),(246769,41396,'_blocks_5_split_5050_content','field_61767afceb8ba'),(246770,41396,'blocks_6_acfe_flexible_toggle',''),(246771,41396,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(246772,41396,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(246773,41396,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(246774,41396,'blocks_6_options_alignment','left'),(246775,41396,'_blocks_6_options_alignment','field_61769449f5490'),(246776,41396,'blocks_6_options',''),(246777,41396,'_blocks_6_options','field_617693e1428f0'),(246778,41396,'blocks_6_promo_panel_image','41242'),(246779,41396,'_blocks_6_promo_panel_image','field_617693e1428f3'),(246780,41396,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(246781,41396,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(246782,41396,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(246783,41396,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(246784,41396,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246785,41396,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(246786,41396,'blocks_6_promo_panel_content_actions','1'),(246787,41396,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(246788,41396,'blocks_6_promo_panel_content',''),(246789,41396,'_blocks_6_promo_panel_content','field_617693e1428f4'),(246790,41396,'course_label_label_theme','#0d1f73'),(246791,41396,'_course_label_label_theme','field_61e17bb8f71fb'),(246792,41397,'hide_hero','0'),(246793,41397,'_hide_hero','field_66a2380fcda39'),(246794,41397,'hero_title','Introduction to Biomechanics Education Course'),(246795,41397,'_hero_title','field_617571fe285e8'),(246796,41397,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!\r\n'),(246797,41397,'_hero_text','field_6175723c285e9'),(246798,41397,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246799,41397,'_hero_actions_0_button','field_61757281285eb'),(246800,41397,'hero_actions','1'),(246801,41397,'_hero_actions','field_61757270285ea'),(246802,41397,'hero_style','default'),(246803,41397,'_hero_style','field_62051d9dc5324'),(246804,41397,'_thumbnail_id','41228'),(246805,41397,'__thumbnail_id','field_617570855ddaf'),(246806,41397,'hero_image_pos_x','right'),(246807,41397,'_hero_image_pos_x','field_62ec3d05390bb'),(246808,41397,'hero_image_pos_y','top'),(246809,41397,'_hero_image_pos_y','field_62ec3d05390bc'),(246810,41397,'hero_image_pos',''),(246811,41397,'_hero_image_pos','field_62ec3d05390ba'),(246812,41397,'fft_hide_from_listings','0'),(246813,41397,'_fft_hide_from_listings','field_61f1320446ab2'),(246814,41397,'fft_page_format','default'),(246815,41397,'_fft_page_format','field_61ae213f1f218'),(246816,41397,'fft_hide_nav','0'),(246817,41397,'_fft_hide_nav','field_635bd5e43527c'),(246818,41397,'fft_hide_header_call_to_action','0'),(246819,41397,'_fft_hide_header_call_to_action','field_635bd6723527d'),(246820,41397,'fft_page_sitemap','0'),(246821,41397,'_fft_page_sitemap','field_61af9b34e8181'),(246822,41397,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(246823,41397,'_blocks','field_6176696113096'),(246824,41397,'course_label_text','Introduction to Biomechanics Education Course'),(246825,41397,'_course_label_text','field_61e17babf71fa'),(246826,41397,'course_label',''),(246827,41397,'_course_label','field_61e12f92749a7'),(246828,41397,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(246829,41397,'_course_description','field_617ac5788e5e1'),(246830,41397,'course_key_info',''),(246831,41397,'_course_key_info','field_617ac6ad8e5e2'),(246832,41397,'course_included',''),(246833,41397,'_course_included','field_617ac6f08e5e4'),(246834,41397,'blocks_0_acfe_flexible_toggle',''),(246835,41397,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(246836,41397,'blocks_0_acfe_flexible_layout_title','Icons'),(246837,41397,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(246838,41397,'blocks_0_options_theme','#ffffff'),(246839,41397,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(246840,41397,'blocks_0_options_format','row'),(246841,41397,'_blocks_0_options_format','field_64bfde9a90690'),(246842,41397,'blocks_0_options',''),(246843,41397,'_blocks_0_options','field_64bfdd9b90684'),(246844,41397,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(246845,41397,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(246846,41397,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(246847,41397,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(246848,41397,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(246849,41397,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(246850,41397,'blocks_0_icon_row_items_1_icon','build-career.svg'),(246851,41397,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(246852,41397,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(246853,41397,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(246854,41397,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(246855,41397,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(246856,41397,'blocks_0_icon_row_items_2_icon','diversify.svg'),(246857,41397,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(246858,41397,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(246859,41397,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(246860,41397,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(246861,41397,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(246862,41397,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(246863,41397,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(246864,41397,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(246865,41397,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(246866,41397,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(246867,41397,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(246868,41397,'blocks_0_icon_row_items','4'),(246869,41397,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(246870,41397,'blocks_1_acfe_flexible_toggle',''),(246871,41397,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(246872,41397,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(246873,41397,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(246874,41397,'blocks_1_options_theme','#ffffff'),(246875,41397,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(246876,41397,'blocks_1_options_reverse','0'),(246877,41397,'_blocks_1_options_reverse','field_61768049bb8ac'),(246878,41397,'blocks_1_options',''),(246879,41397,'_blocks_1_options','field_617682517c334'),(246880,41397,'blocks_1_split_5050_image','41239'),(246881,41397,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(246882,41397,'blocks_1_split_5050_video',''),(246883,41397,'_blocks_1_split_5050_video','field_6239f3160848a'),(246884,41397,'blocks_1_split_5050_content_title',''),(246885,41397,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(246886,41397,'blocks_1_split_5050_content_heading','Course Overview'),(246887,41397,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(246888,41397,'blocks_1_split_5050_content_text','Unlock the secrets of intrinsic biomechanics and elevate your Pilates programming and coaching. By mastering these concepts, you\'ll become a sought-after expert in the field, gaining unique skills that set you apart in the market.\r\n\r\nStart your journey with this 60-minute course and become an Intrinsic Biomechanics Coach. Join us in promoting active well-being and improving health on a broader scale!\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access this course for free.\r\n\r\n​'),(246889,41397,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(246890,41397,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246891,41397,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(246892,41397,'blocks_1_split_5050_content_actions','1'),(246893,41397,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(246894,41397,'blocks_1_split_5050_content',''),(246895,41397,'_blocks_1_split_5050_content','field_61767afceb8ba'),(246896,41397,'blocks_2_acfe_flexible_toggle',''),(246897,41397,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(246898,41397,'blocks_2_acfe_flexible_layout_title','Timeline'),(246899,41397,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(246900,41397,'blocks_2_options_theme','#ffffff'),(246901,41397,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(246902,41397,'blocks_2_options',''),(246903,41397,'_blocks_2_options','field_6177de53d1195'),(246904,41397,'blocks_2_timeline_content_title',''),(246905,41397,'_blocks_2_timeline_content_title','field_6177de53d1198'),(246906,41397,'blocks_2_timeline_content_heading','How to enrol on this course'),(246907,41397,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(246908,41397,'blocks_2_timeline_content_text','Signing up for this course is as easy as 1, 2, 3! ​\r\n\r\nFollow these steps and get instant access to our online e-learning platform.\r\n\r\n<strong>Don’t forget to use code intro at check out to get this course for free.</strong>'),(246909,41397,'_blocks_2_timeline_content_text','field_6177de53d119a'),(246910,41397,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246911,41397,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(246912,41397,'blocks_2_timeline_content_actions','1'),(246913,41397,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(246914,41397,'blocks_2_timeline_content',''),(246915,41397,'_blocks_2_timeline_content','field_6177de53d1197'),(246916,41397,'blocks_2_timeline_items_0_title','Enrol Now'),(246917,41397,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(246918,41397,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(246919,41397,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(246920,41397,'blocks_2_timeline_items_1_title','Progress to Checkout'),(246921,41397,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(246922,41397,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(246923,41397,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(246924,41397,'blocks_2_timeline_items_2_title','Get Access'),(246925,41397,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(246926,41397,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(246927,41397,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(246928,41397,'blocks_2_timeline_items_3_title','Complete the Course'),(246929,41397,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(246930,41397,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(246931,41397,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(246932,41397,'blocks_2_timeline_items','4'),(246933,41397,'_blocks_2_timeline_items','field_6177de53d119d'),(246934,41397,'blocks_3_acfe_flexible_toggle',''),(246935,41397,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(246936,41397,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(246937,41397,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(246938,41397,'blocks_3_options_theme','#ffffff'),(246939,41397,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(246940,41397,'blocks_3_options_reverse','0'),(246941,41397,'_blocks_3_options_reverse','field_61768049bb8ac'),(246942,41397,'blocks_3_options',''),(246943,41397,'_blocks_3_options','field_617682517c334'),(246944,41397,'blocks_3_split_5050_image',''),(246945,41397,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(246946,41397,'blocks_3_split_5050_video','https://youtu.be/crqXrpFsDyw'),(246947,41397,'_blocks_3_split_5050_video','field_6239f3160848a'),(246948,41397,'blocks_3_split_5050_content_title',''),(246949,41397,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(246950,41397,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(246951,41397,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(246952,41397,'blocks_3_split_5050_content_text','As a Pilates instructor, you understand movement’s potential - but imagine taking it even further. The Biomechanics Coaching Diploma is designed to deepen your knowledge of human movement, helping you assess and enhance your clients’ biomechanics for better outcomes.\r\n\r\nTom Waldron, a Pilates Instructor and Biomechanics Coach (International Master Trainer), describes it as a game-changer:\r\n\r\n<em>\"The diploma taught me to view the body as an integrated system. I now have the tools to address movement restrictions holistically, helping my clients move more freely, prevent injuries, and reduce pain. It has truly elevated my practice.\"</em>\r\n\r\nReady to explore? Use code <strong>INTRO</strong> at checkout to access our introductory course for free and begin your journey to deeper expertise.'),(246953,41397,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(246954,41397,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(246955,41397,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(246956,41397,'blocks_3_split_5050_content_actions','1'),(246957,41397,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(246958,41397,'blocks_3_split_5050_content',''),(246959,41397,'_blocks_3_split_5050_content','field_61767afceb8ba'),(246960,41397,'blocks_4_acfe_flexible_toggle',''),(246961,41397,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(246962,41397,'blocks_4_acfe_flexible_layout_title','Icons'),(246963,41397,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(246964,41397,'blocks_4_options_theme','#ffffff'),(246965,41397,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(246966,41397,'blocks_4_options_format','grid'),(246967,41397,'_blocks_4_options_format','field_64bfde9a90690'),(246968,41397,'blocks_4_options',''),(246969,41397,'_blocks_4_options','field_64bfdd9b90684'),(246970,41397,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(246971,41397,'_blocks_4_row_content_title','field_64bfdd9b90687'),(246972,41397,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(246973,41397,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(246974,41397,'blocks_4_row_content_text',''),(246975,41397,'_blocks_4_row_content_text','field_64bfdd9b90689'),(246976,41397,'blocks_4_row_content_actions',''),(246977,41397,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(246978,41397,'blocks_4_row_content',''),(246979,41397,'_blocks_4_row_content','field_64bfdd9b90686'),(246980,41397,'blocks_4_icon_row_items_0_icon','build-career.svg'),(246981,41397,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(246982,41397,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(246983,41397,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(246984,41397,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(246985,41397,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(246986,41397,'blocks_4_icon_row_items_1_icon','qualification.svg'),(246987,41397,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(246988,41397,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(246989,41397,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(246990,41397,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(246991,41397,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(246992,41397,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(246993,41397,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(246994,41397,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(246995,41397,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(246996,41397,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(246997,41397,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(246998,41397,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(246999,41397,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(247000,41397,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(247001,41397,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(247002,41397,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(247003,41397,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(247004,41397,'blocks_4_icon_row_items','4'),(247005,41397,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(247006,41397,'blocks_5_acfe_flexible_toggle',''),(247007,41397,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(247008,41397,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(247009,41397,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(247010,41397,'blocks_5_options_theme','#ffffff'),(247011,41397,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(247012,41397,'blocks_5_options_reverse','0'),(247013,41397,'_blocks_5_options_reverse','field_61768049bb8ac'),(247014,41397,'blocks_5_options',''),(247015,41397,'_blocks_5_options','field_617682517c334'),(247016,41397,'blocks_5_split_5050_image','41241'),(247017,41397,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(247018,41397,'blocks_5_split_5050_video',''),(247019,41397,'_blocks_5_split_5050_video','field_6239f3160848a'),(247020,41397,'blocks_5_split_5050_content_title',''),(247021,41397,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(247022,41397,'blocks_5_split_5050_content_heading','What\'s included?'),(247023,41397,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(247024,41397,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(247025,41397,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(247026,41397,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247027,41397,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(247028,41397,'blocks_5_split_5050_content_actions','1'),(247029,41397,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(247030,41397,'blocks_5_split_5050_content',''),(247031,41397,'_blocks_5_split_5050_content','field_61767afceb8ba'),(247032,41397,'blocks_6_acfe_flexible_toggle',''),(247033,41397,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(247034,41397,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(247035,41397,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(247036,41397,'blocks_6_options_alignment','left'),(247037,41397,'_blocks_6_options_alignment','field_61769449f5490'),(247038,41397,'blocks_6_options',''),(247039,41397,'_blocks_6_options','field_617693e1428f0'),(247040,41397,'blocks_6_promo_panel_image','41242'),(247041,41397,'_blocks_6_promo_panel_image','field_617693e1428f3'),(247042,41397,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(247043,41397,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(247044,41397,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(247045,41397,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(247046,41397,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247047,41397,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(247048,41397,'blocks_6_promo_panel_content_actions','1'),(247049,41397,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(247050,41397,'blocks_6_promo_panel_content',''),(247051,41397,'_blocks_6_promo_panel_content','field_617693e1428f4'),(247052,41397,'course_label_label_theme','#0d1f73'),(247053,41397,'_course_label_label_theme','field_61e17bb8f71fb'),(247316,41399,'hide_hero','0'),(247317,41399,'_hide_hero','field_66a2380fcda39'),(247318,41399,'hero_title','Introduction to Biomechanics Education Course'),(247319,41399,'_hero_title','field_617571fe285e8'),(247320,41399,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!\r\n'),(247321,41399,'_hero_text','field_6175723c285e9'),(247322,41399,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247323,41399,'_hero_actions_0_button','field_61757281285eb'),(247324,41399,'hero_actions','1'),(247325,41399,'_hero_actions','field_61757270285ea'),(247326,41399,'hero_style','default'),(247327,41399,'_hero_style','field_62051d9dc5324'),(247328,41399,'_thumbnail_id','41228'),(247329,41399,'__thumbnail_id','field_617570855ddaf'),(247330,41399,'hero_image_pos_x','right'),(247331,41399,'_hero_image_pos_x','field_62ec3d05390bb'),(247332,41399,'hero_image_pos_y','top'),(247333,41399,'_hero_image_pos_y','field_62ec3d05390bc'),(247334,41399,'hero_image_pos',''),(247335,41399,'_hero_image_pos','field_62ec3d05390ba'),(247336,41399,'fft_hide_from_listings','0'),(247337,41399,'_fft_hide_from_listings','field_61f1320446ab2'),(247338,41399,'fft_page_format','default'),(247339,41399,'_fft_page_format','field_61ae213f1f218'),(247340,41399,'fft_hide_nav','0'),(247341,41399,'_fft_hide_nav','field_635bd5e43527c'),(247342,41399,'fft_hide_header_call_to_action','0'),(247343,41399,'_fft_hide_header_call_to_action','field_635bd6723527d'),(247344,41399,'fft_page_sitemap','0'),(247345,41399,'_fft_page_sitemap','field_61af9b34e8181'),(247346,41399,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(247347,41399,'_blocks','field_6176696113096'),(247348,41399,'course_label_text','Introduction to Biomechanics Education Course'),(247349,41399,'_course_label_text','field_61e17babf71fa'),(247350,41399,'course_label',''),(247351,41399,'_course_label','field_61e12f92749a7'),(247352,41399,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(247353,41399,'_course_description','field_617ac5788e5e1'),(247354,41399,'course_key_info',''),(247355,41399,'_course_key_info','field_617ac6ad8e5e2'),(247356,41399,'course_included',''),(247357,41399,'_course_included','field_617ac6f08e5e4'),(247358,41399,'blocks_0_acfe_flexible_toggle',''),(247359,41399,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(247360,41399,'blocks_0_acfe_flexible_layout_title','Icons'),(247361,41399,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(247362,41399,'blocks_0_options_theme','#ffffff'),(247363,41399,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(247364,41399,'blocks_0_options_format','row'),(247365,41399,'_blocks_0_options_format','field_64bfde9a90690'),(247366,41399,'blocks_0_options',''),(247367,41399,'_blocks_0_options','field_64bfdd9b90684'),(247368,41399,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(247369,41399,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(247370,41399,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(247371,41399,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(247372,41399,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(247373,41399,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(247374,41399,'blocks_0_icon_row_items_1_icon','build-career.svg'),(247375,41399,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(247376,41399,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(247377,41399,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(247378,41399,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(247379,41399,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(247380,41399,'blocks_0_icon_row_items_2_icon','diversify.svg'),(247381,41399,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(247382,41399,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(247383,41399,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(247384,41399,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(247385,41399,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(247386,41399,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(247387,41399,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(247388,41399,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(247389,41399,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(247390,41399,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(247391,41399,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(247392,41399,'blocks_0_icon_row_items','4'),(247393,41399,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(247394,41399,'blocks_1_acfe_flexible_toggle',''),(247395,41399,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(247396,41399,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(247397,41399,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(247398,41399,'blocks_1_options_theme','#ffffff'),(247399,41399,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(247400,41399,'blocks_1_options_reverse','0'),(247401,41399,'_blocks_1_options_reverse','field_61768049bb8ac'),(247402,41399,'blocks_1_options',''),(247403,41399,'_blocks_1_options','field_617682517c334'),(247404,41399,'blocks_1_split_5050_image','41239'),(247405,41399,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(247406,41399,'blocks_1_split_5050_video',''),(247407,41399,'_blocks_1_split_5050_video','field_6239f3160848a'),(247408,41399,'blocks_1_split_5050_content_title',''),(247409,41399,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(247410,41399,'blocks_1_split_5050_content_heading','Course Overview'),(247411,41399,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(247412,41399,'blocks_1_split_5050_content_text','Unlock the secrets of intrinsic biomechanics and elevate your Pilates programming and coaching. By mastering these concepts, you\'ll become a sought-after expert in the field, gaining unique skills that set you apart in the market.\r\n\r\nStart your journey with this 60-minute course and become an Intrinsic Biomechanics Coach. Join us in promoting active well-being and improving health on a broader scale!\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access this course for free.\r\n\r\n​'),(247413,41399,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(247414,41399,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247415,41399,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(247416,41399,'blocks_1_split_5050_content_actions','1'),(247417,41399,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(247418,41399,'blocks_1_split_5050_content',''),(247419,41399,'_blocks_1_split_5050_content','field_61767afceb8ba'),(247420,41399,'blocks_2_acfe_flexible_toggle',''),(247421,41399,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(247422,41399,'blocks_2_acfe_flexible_layout_title','Timeline'),(247423,41399,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(247424,41399,'blocks_2_options_theme','#ffffff'),(247425,41399,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(247426,41399,'blocks_2_options',''),(247427,41399,'_blocks_2_options','field_6177de53d1195'),(247428,41399,'blocks_2_timeline_content_title',''),(247429,41399,'_blocks_2_timeline_content_title','field_6177de53d1198'),(247430,41399,'blocks_2_timeline_content_heading','How to enrol on this course'),(247431,41399,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(247432,41399,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(247433,41399,'_blocks_2_timeline_content_text','field_6177de53d119a'),(247434,41399,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247435,41399,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(247436,41399,'blocks_2_timeline_content_actions','1'),(247437,41399,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(247438,41399,'blocks_2_timeline_content',''),(247439,41399,'_blocks_2_timeline_content','field_6177de53d1197'),(247440,41399,'blocks_2_timeline_items_0_title','Enrol Now'),(247441,41399,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(247442,41399,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(247443,41399,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(247444,41399,'blocks_2_timeline_items_1_title','Progress to Checkout'),(247445,41399,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(247446,41399,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(247447,41399,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(247448,41399,'blocks_2_timeline_items_2_title','Get Access'),(247449,41399,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(247450,41399,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(247451,41399,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(247452,41399,'blocks_2_timeline_items_3_title','Complete the Course'),(247453,41399,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(247454,41399,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(247455,41399,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(247456,41399,'blocks_2_timeline_items','4'),(247457,41399,'_blocks_2_timeline_items','field_6177de53d119d'),(247458,41399,'blocks_3_acfe_flexible_toggle',''),(247459,41399,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(247460,41399,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(247461,41399,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(247462,41399,'blocks_3_options_theme','#ffffff'),(247463,41399,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(247464,41399,'blocks_3_options_reverse','0'),(247465,41399,'_blocks_3_options_reverse','field_61768049bb8ac'),(247466,41399,'blocks_3_options',''),(247467,41399,'_blocks_3_options','field_617682517c334'),(247468,41399,'blocks_3_split_5050_image',''),(247469,41399,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(247470,41399,'blocks_3_split_5050_video','https://youtu.be/crqXrpFsDyw'),(247471,41399,'_blocks_3_split_5050_video','field_6239f3160848a'),(247472,41399,'blocks_3_split_5050_content_title',''),(247473,41399,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(247474,41399,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(247475,41399,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(247476,41399,'blocks_3_split_5050_content_text','As a Pilates instructor, you understand movement’s potential - but imagine taking it even further. The Biomechanics Coaching Diploma is designed to deepen your knowledge of human movement, helping you assess and enhance your clients’ biomechanics for better outcomes.\r\n\r\nTom Waldron, a Pilates Instructor and Biomechanics Coach (International Master Trainer), describes it as a game-changer:\r\n\r\n<em>\"The diploma taught me to view the body as an integrated system. I now have the tools to address movement restrictions holistically, helping my clients move more freely, prevent injuries, and reduce pain. It has truly elevated my practice.\"</em>\r\n\r\nReady to explore? Use code <strong>INTRO</strong> at checkout to access our introductory course for free and begin your journey to deeper expertise.'),(247477,41399,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(247478,41399,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247479,41399,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(247480,41399,'blocks_3_split_5050_content_actions','1'),(247481,41399,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(247482,41399,'blocks_3_split_5050_content',''),(247483,41399,'_blocks_3_split_5050_content','field_61767afceb8ba'),(247484,41399,'blocks_4_acfe_flexible_toggle',''),(247485,41399,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(247486,41399,'blocks_4_acfe_flexible_layout_title','Icons'),(247487,41399,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(247488,41399,'blocks_4_options_theme','#ffffff'),(247489,41399,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(247490,41399,'blocks_4_options_format','grid'),(247491,41399,'_blocks_4_options_format','field_64bfde9a90690'),(247492,41399,'blocks_4_options',''),(247493,41399,'_blocks_4_options','field_64bfdd9b90684'),(247494,41399,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(247495,41399,'_blocks_4_row_content_title','field_64bfdd9b90687'),(247496,41399,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(247497,41399,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(247498,41399,'blocks_4_row_content_text',''),(247499,41399,'_blocks_4_row_content_text','field_64bfdd9b90689'),(247500,41399,'blocks_4_row_content_actions',''),(247501,41399,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(247502,41399,'blocks_4_row_content',''),(247503,41399,'_blocks_4_row_content','field_64bfdd9b90686'),(247504,41399,'blocks_4_icon_row_items_0_icon','build-career.svg'),(247505,41399,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(247506,41399,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(247507,41399,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(247508,41399,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(247509,41399,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(247510,41399,'blocks_4_icon_row_items_1_icon','qualification.svg'),(247511,41399,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(247512,41399,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(247513,41399,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(247514,41399,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(247515,41399,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(247516,41399,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(247517,41399,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(247518,41399,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(247519,41399,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(247520,41399,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(247521,41399,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(247522,41399,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(247523,41399,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(247524,41399,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(247525,41399,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(247526,41399,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(247527,41399,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(247528,41399,'blocks_4_icon_row_items','4'),(247529,41399,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(247530,41399,'blocks_5_acfe_flexible_toggle',''),(247531,41399,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(247532,41399,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(247533,41399,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(247534,41399,'blocks_5_options_theme','#ffffff'),(247535,41399,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(247536,41399,'blocks_5_options_reverse','0'),(247537,41399,'_blocks_5_options_reverse','field_61768049bb8ac'),(247538,41399,'blocks_5_options',''),(247539,41399,'_blocks_5_options','field_617682517c334'),(247540,41399,'blocks_5_split_5050_image','41241'),(247541,41399,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(247542,41399,'blocks_5_split_5050_video',''),(247543,41399,'_blocks_5_split_5050_video','field_6239f3160848a'),(247544,41399,'blocks_5_split_5050_content_title',''),(247545,41399,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(247546,41399,'blocks_5_split_5050_content_heading','What\'s included?'),(247547,41399,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(247548,41399,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(247549,41399,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(247550,41399,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247551,41399,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(247552,41399,'blocks_5_split_5050_content_actions','1'),(247553,41399,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(247554,41399,'blocks_5_split_5050_content',''),(247555,41399,'_blocks_5_split_5050_content','field_61767afceb8ba'),(247556,41399,'blocks_6_acfe_flexible_toggle',''),(247557,41399,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(247558,41399,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(247559,41399,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(247560,41399,'blocks_6_options_alignment','left'),(247561,41399,'_blocks_6_options_alignment','field_61769449f5490'),(247562,41399,'blocks_6_options',''),(247563,41399,'_blocks_6_options','field_617693e1428f0'),(247564,41399,'blocks_6_promo_panel_image','41242'),(247565,41399,'_blocks_6_promo_panel_image','field_617693e1428f3'),(247566,41399,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(247567,41399,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(247568,41399,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(247569,41399,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(247570,41399,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247571,41399,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(247572,41399,'blocks_6_promo_panel_content_actions','1'),(247573,41399,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(247574,41399,'blocks_6_promo_panel_content',''),(247575,41399,'_blocks_6_promo_panel_content','field_617693e1428f4'),(247576,41399,'course_label_label_theme','#0d1f73'),(247577,41399,'_course_label_label_theme','field_61e17bb8f71fb'),(247578,41400,'_wp_attached_file','2024/10/CourtX_Pilates_Web-47.jpg'),(247579,41400,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:33:\"2024/10/CourtX_Pilates_Web-47.jpg\";s:8:\"filesize\";i:458971;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-47-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100238;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-47-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148637;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-47-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38306;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-47-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81974;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-47-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:213837;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-47-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45631;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-47-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128884;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-47-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196463;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-47-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38118;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-47-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100238;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-47-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148637;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-47-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38841;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-47-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104495;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-47-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158383;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-47-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40040;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-47-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107975;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-47-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161150;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-47-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35363;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-47-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91934;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-47-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135257;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(247580,41401,'hide_hero','0'),(247581,41401,'_hide_hero','field_66a2380fcda39'),(247582,41401,'hero_title','Introduction to Biomechanics Education Course'),(247583,41401,'_hero_title','field_617571fe285e8'),(247584,41401,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!\r\n'),(247585,41401,'_hero_text','field_6175723c285e9'),(247586,41401,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247587,41401,'_hero_actions_0_button','field_61757281285eb'),(247588,41401,'hero_actions','1'),(247589,41401,'_hero_actions','field_61757270285ea'),(247590,41401,'hero_style','default'),(247591,41401,'_hero_style','field_62051d9dc5324'),(247592,41401,'_thumbnail_id','41400'),(247593,41401,'__thumbnail_id','field_617570855ddaf'),(247594,41401,'hero_image_pos_x','right'),(247595,41401,'_hero_image_pos_x','field_62ec3d05390bb'),(247596,41401,'hero_image_pos_y','top'),(247597,41401,'_hero_image_pos_y','field_62ec3d05390bc'),(247598,41401,'hero_image_pos',''),(247599,41401,'_hero_image_pos','field_62ec3d05390ba'),(247600,41401,'fft_hide_from_listings','0'),(247601,41401,'_fft_hide_from_listings','field_61f1320446ab2'),(247602,41401,'fft_page_format','default'),(247603,41401,'_fft_page_format','field_61ae213f1f218'),(247604,41401,'fft_hide_nav','0'),(247605,41401,'_fft_hide_nav','field_635bd5e43527c'),(247606,41401,'fft_hide_header_call_to_action','0'),(247607,41401,'_fft_hide_header_call_to_action','field_635bd6723527d'),(247608,41401,'fft_page_sitemap','0'),(247609,41401,'_fft_page_sitemap','field_61af9b34e8181'),(247610,41401,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(247611,41401,'_blocks','field_6176696113096'),(247612,41401,'course_label_text','Introduction to Biomechanics Education Course'),(247613,41401,'_course_label_text','field_61e17babf71fa'),(247614,41401,'course_label',''),(247615,41401,'_course_label','field_61e12f92749a7'),(247616,41401,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(247617,41401,'_course_description','field_617ac5788e5e1'),(247618,41401,'course_key_info',''),(247619,41401,'_course_key_info','field_617ac6ad8e5e2'),(247620,41401,'course_included',''),(247621,41401,'_course_included','field_617ac6f08e5e4'),(247622,41401,'blocks_0_acfe_flexible_toggle',''),(247623,41401,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(247624,41401,'blocks_0_acfe_flexible_layout_title','Icons'),(247625,41401,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(247626,41401,'blocks_0_options_theme','#ffffff'),(247627,41401,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(247628,41401,'blocks_0_options_format','row'),(247629,41401,'_blocks_0_options_format','field_64bfde9a90690'),(247630,41401,'blocks_0_options',''),(247631,41401,'_blocks_0_options','field_64bfdd9b90684'),(247632,41401,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(247633,41401,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(247634,41401,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(247635,41401,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(247636,41401,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(247637,41401,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(247638,41401,'blocks_0_icon_row_items_1_icon','build-career.svg'),(247639,41401,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(247640,41401,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(247641,41401,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(247642,41401,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(247643,41401,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(247644,41401,'blocks_0_icon_row_items_2_icon','diversify.svg'),(247645,41401,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(247646,41401,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(247647,41401,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(247648,41401,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(247649,41401,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(247650,41401,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(247651,41401,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(247652,41401,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(247653,41401,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(247654,41401,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(247655,41401,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(247656,41401,'blocks_0_icon_row_items','4'),(247657,41401,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(247658,41401,'blocks_1_acfe_flexible_toggle',''),(247659,41401,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(247660,41401,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(247661,41401,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(247662,41401,'blocks_1_options_theme','#ffffff'),(247663,41401,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(247664,41401,'blocks_1_options_reverse','0'),(247665,41401,'_blocks_1_options_reverse','field_61768049bb8ac'),(247666,41401,'blocks_1_options',''),(247667,41401,'_blocks_1_options','field_617682517c334'),(247668,41401,'blocks_1_split_5050_image','41239'),(247669,41401,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(247670,41401,'blocks_1_split_5050_video',''),(247671,41401,'_blocks_1_split_5050_video','field_6239f3160848a'),(247672,41401,'blocks_1_split_5050_content_title',''),(247673,41401,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(247674,41401,'blocks_1_split_5050_content_heading','Course Overview'),(247675,41401,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(247676,41401,'blocks_1_split_5050_content_text','Unlock the secrets of intrinsic biomechanics and elevate your Pilates programming and coaching. By mastering these concepts, you\'ll become a sought-after expert in the field, gaining unique skills that set you apart in the market.\r\n\r\nStart your journey with this 60-minute course and become an Intrinsic Biomechanics Coach. Join us in promoting active well-being and improving health on a broader scale!\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access this course for free.\r\n\r\n​'),(247677,41401,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(247678,41401,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247679,41401,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(247680,41401,'blocks_1_split_5050_content_actions','1'),(247681,41401,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(247682,41401,'blocks_1_split_5050_content',''),(247683,41401,'_blocks_1_split_5050_content','field_61767afceb8ba'),(247684,41401,'blocks_2_acfe_flexible_toggle',''),(247685,41401,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(247686,41401,'blocks_2_acfe_flexible_layout_title','Timeline'),(247687,41401,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(247688,41401,'blocks_2_options_theme','#ffffff'),(247689,41401,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(247690,41401,'blocks_2_options',''),(247691,41401,'_blocks_2_options','field_6177de53d1195'),(247692,41401,'blocks_2_timeline_content_title',''),(247693,41401,'_blocks_2_timeline_content_title','field_6177de53d1198'),(247694,41401,'blocks_2_timeline_content_heading','How to enrol on this course'),(247695,41401,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(247696,41401,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(247697,41401,'_blocks_2_timeline_content_text','field_6177de53d119a'),(247698,41401,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247699,41401,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(247700,41401,'blocks_2_timeline_content_actions','1'),(247701,41401,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(247702,41401,'blocks_2_timeline_content',''),(247703,41401,'_blocks_2_timeline_content','field_6177de53d1197'),(247704,41401,'blocks_2_timeline_items_0_title','Enrol Now'),(247705,41401,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(247706,41401,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(247707,41401,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(247708,41401,'blocks_2_timeline_items_1_title','Progress to Checkout'),(247709,41401,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(247710,41401,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(247711,41401,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(247712,41401,'blocks_2_timeline_items_2_title','Get Access'),(247713,41401,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(247714,41401,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(247715,41401,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(247716,41401,'blocks_2_timeline_items_3_title','Complete the Course'),(247717,41401,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(247718,41401,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(247719,41401,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(247720,41401,'blocks_2_timeline_items','4'),(247721,41401,'_blocks_2_timeline_items','field_6177de53d119d'),(247722,41401,'blocks_3_acfe_flexible_toggle',''),(247723,41401,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(247724,41401,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(247725,41401,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(247726,41401,'blocks_3_options_theme','#ffffff'),(247727,41401,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(247728,41401,'blocks_3_options_reverse','0'),(247729,41401,'_blocks_3_options_reverse','field_61768049bb8ac'),(247730,41401,'blocks_3_options',''),(247731,41401,'_blocks_3_options','field_617682517c334'),(247732,41401,'blocks_3_split_5050_image',''),(247733,41401,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(247734,41401,'blocks_3_split_5050_video','https://youtu.be/crqXrpFsDyw'),(247735,41401,'_blocks_3_split_5050_video','field_6239f3160848a'),(247736,41401,'blocks_3_split_5050_content_title',''),(247737,41401,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(247738,41401,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(247739,41401,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(247740,41401,'blocks_3_split_5050_content_text','As a Pilates instructor, you understand movement’s potential - but imagine taking it even further. The Biomechanics Coaching Diploma is designed to deepen your knowledge of human movement, helping you assess and enhance your clients’ biomechanics for better outcomes.\r\n\r\nTom Waldron, a Pilates Instructor and Biomechanics Coach (International Master Trainer), describes it as a game-changer:\r\n\r\n<em>\"The diploma taught me to view the body as an integrated system. I now have the tools to address movement restrictions holistically, helping my clients move more freely, prevent injuries, and reduce pain. It has truly elevated my practice.\"</em>\r\n\r\nReady to explore? Use code <strong>INTRO</strong> at checkout to access our introductory course for free and begin your journey to deeper expertise.'),(247741,41401,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(247742,41401,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247743,41401,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(247744,41401,'blocks_3_split_5050_content_actions','1'),(247745,41401,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(247746,41401,'blocks_3_split_5050_content',''),(247747,41401,'_blocks_3_split_5050_content','field_61767afceb8ba'),(247748,41401,'blocks_4_acfe_flexible_toggle',''),(247749,41401,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(247750,41401,'blocks_4_acfe_flexible_layout_title','Icons'),(247751,41401,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(247752,41401,'blocks_4_options_theme','#ffffff'),(247753,41401,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(247754,41401,'blocks_4_options_format','grid'),(247755,41401,'_blocks_4_options_format','field_64bfde9a90690'),(247756,41401,'blocks_4_options',''),(247757,41401,'_blocks_4_options','field_64bfdd9b90684'),(247758,41401,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(247759,41401,'_blocks_4_row_content_title','field_64bfdd9b90687'),(247760,41401,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(247761,41401,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(247762,41401,'blocks_4_row_content_text',''),(247763,41401,'_blocks_4_row_content_text','field_64bfdd9b90689'),(247764,41401,'blocks_4_row_content_actions',''),(247765,41401,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(247766,41401,'blocks_4_row_content',''),(247767,41401,'_blocks_4_row_content','field_64bfdd9b90686'),(247768,41401,'blocks_4_icon_row_items_0_icon','build-career.svg'),(247769,41401,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(247770,41401,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(247771,41401,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(247772,41401,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(247773,41401,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(247774,41401,'blocks_4_icon_row_items_1_icon','qualification.svg'),(247775,41401,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(247776,41401,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(247777,41401,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(247778,41401,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(247779,41401,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(247780,41401,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(247781,41401,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(247782,41401,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(247783,41401,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(247784,41401,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(247785,41401,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(247786,41401,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(247787,41401,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(247788,41401,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(247789,41401,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(247790,41401,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(247791,41401,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(247792,41401,'blocks_4_icon_row_items','4'),(247793,41401,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(247794,41401,'blocks_5_acfe_flexible_toggle',''),(247795,41401,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(247796,41401,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(247797,41401,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(247798,41401,'blocks_5_options_theme','#ffffff'),(247799,41401,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(247800,41401,'blocks_5_options_reverse','0'),(247801,41401,'_blocks_5_options_reverse','field_61768049bb8ac'),(247802,41401,'blocks_5_options',''),(247803,41401,'_blocks_5_options','field_617682517c334'),(247804,41401,'blocks_5_split_5050_image','41241'),(247805,41401,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(247806,41401,'blocks_5_split_5050_video',''),(247807,41401,'_blocks_5_split_5050_video','field_6239f3160848a'),(247808,41401,'blocks_5_split_5050_content_title',''),(247809,41401,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(247810,41401,'blocks_5_split_5050_content_heading','What\'s included?'),(247811,41401,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(247812,41401,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(247813,41401,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(247814,41401,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247815,41401,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(247816,41401,'blocks_5_split_5050_content_actions','1'),(247817,41401,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(247818,41401,'blocks_5_split_5050_content',''),(247819,41401,'_blocks_5_split_5050_content','field_61767afceb8ba'),(247820,41401,'blocks_6_acfe_flexible_toggle',''),(247821,41401,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(247822,41401,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(247823,41401,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(247824,41401,'blocks_6_options_alignment','left'),(247825,41401,'_blocks_6_options_alignment','field_61769449f5490'),(247826,41401,'blocks_6_options',''),(247827,41401,'_blocks_6_options','field_617693e1428f0'),(247828,41401,'blocks_6_promo_panel_image','41242'),(247829,41401,'_blocks_6_promo_panel_image','field_617693e1428f3'),(247830,41401,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(247831,41401,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(247832,41401,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(247833,41401,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(247834,41401,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247835,41401,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(247836,41401,'blocks_6_promo_panel_content_actions','1'),(247837,41401,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(247838,41401,'blocks_6_promo_panel_content',''),(247839,41401,'_blocks_6_promo_panel_content','field_617693e1428f4'),(247840,41401,'course_label_label_theme','#0d1f73'),(247841,41401,'_course_label_label_theme','field_61e17bb8f71fb'),(247842,41402,'hide_hero','0'),(247843,41402,'_hide_hero','field_66a2380fcda39'),(247844,41402,'hero_title','Introduction to Biomechanics Education Course'),(247845,41402,'_hero_title','field_617571fe285e8'),(247846,41402,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!\r\n'),(247847,41402,'_hero_text','field_6175723c285e9'),(247848,41402,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247849,41402,'_hero_actions_0_button','field_61757281285eb'),(247850,41402,'hero_actions','1'),(247851,41402,'_hero_actions','field_61757270285ea'),(247852,41402,'hero_style','default'),(247853,41402,'_hero_style','field_62051d9dc5324'),(247854,41402,'_thumbnail_id','41400'),(247855,41402,'__thumbnail_id','field_617570855ddaf'),(247856,41402,'hero_image_pos_x','right'),(247857,41402,'_hero_image_pos_x','field_62ec3d05390bb'),(247858,41402,'hero_image_pos_y','top'),(247859,41402,'_hero_image_pos_y','field_62ec3d05390bc'),(247860,41402,'hero_image_pos',''),(247861,41402,'_hero_image_pos','field_62ec3d05390ba'),(247862,41402,'fft_hide_from_listings','0'),(247863,41402,'_fft_hide_from_listings','field_61f1320446ab2'),(247864,41402,'fft_page_format','default'),(247865,41402,'_fft_page_format','field_61ae213f1f218'),(247866,41402,'fft_hide_nav','0'),(247867,41402,'_fft_hide_nav','field_635bd5e43527c'),(247868,41402,'fft_hide_header_call_to_action','0'),(247869,41402,'_fft_hide_header_call_to_action','field_635bd6723527d'),(247870,41402,'fft_page_sitemap','0'),(247871,41402,'_fft_page_sitemap','field_61af9b34e8181'),(247872,41402,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(247873,41402,'_blocks','field_6176696113096'),(247874,41402,'course_label_text','Introduction to Biomechanics Education Course'),(247875,41402,'_course_label_text','field_61e17babf71fa'),(247876,41402,'course_label',''),(247877,41402,'_course_label','field_61e12f92749a7'),(247878,41402,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(247879,41402,'_course_description','field_617ac5788e5e1'),(247880,41402,'course_key_info',''),(247881,41402,'_course_key_info','field_617ac6ad8e5e2'),(247882,41402,'course_included',''),(247883,41402,'_course_included','field_617ac6f08e5e4'),(247884,41402,'blocks_0_acfe_flexible_toggle',''),(247885,41402,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(247886,41402,'blocks_0_acfe_flexible_layout_title','Icons'),(247887,41402,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(247888,41402,'blocks_0_options_theme','#ffffff'),(247889,41402,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(247890,41402,'blocks_0_options_format','row'),(247891,41402,'_blocks_0_options_format','field_64bfde9a90690'),(247892,41402,'blocks_0_options',''),(247893,41402,'_blocks_0_options','field_64bfdd9b90684'),(247894,41402,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(247895,41402,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(247896,41402,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(247897,41402,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(247898,41402,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(247899,41402,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(247900,41402,'blocks_0_icon_row_items_1_icon','build-career.svg'),(247901,41402,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(247902,41402,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(247903,41402,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(247904,41402,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(247905,41402,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(247906,41402,'blocks_0_icon_row_items_2_icon','diversify.svg'),(247907,41402,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(247908,41402,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(247909,41402,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(247910,41402,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(247911,41402,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(247912,41402,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(247913,41402,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(247914,41402,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(247915,41402,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(247916,41402,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(247917,41402,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(247918,41402,'blocks_0_icon_row_items','4'),(247919,41402,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(247920,41402,'blocks_1_acfe_flexible_toggle',''),(247921,41402,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(247922,41402,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(247923,41402,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(247924,41402,'blocks_1_options_theme','#ffffff'),(247925,41402,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(247926,41402,'blocks_1_options_reverse','0'),(247927,41402,'_blocks_1_options_reverse','field_61768049bb8ac'),(247928,41402,'blocks_1_options',''),(247929,41402,'_blocks_1_options','field_617682517c334'),(247930,41402,'blocks_1_split_5050_image','41239'),(247931,41402,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(247932,41402,'blocks_1_split_5050_video',''),(247933,41402,'_blocks_1_split_5050_video','field_6239f3160848a'),(247934,41402,'blocks_1_split_5050_content_title',''),(247935,41402,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(247936,41402,'blocks_1_split_5050_content_heading','Course Overview'),(247937,41402,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(247938,41402,'blocks_1_split_5050_content_text','Unlock the secrets of intrinsic biomechanics and elevate your Pilates programming and coaching. By mastering these concepts, you\'ll become a sought-after expert in the field, gaining unique skills that set you apart in the market.\r\n\r\nStart your journey with this 60-minute course and become an Intrinsic Biomechanics Coach. Join us in promoting active well-being and improving health on a broader scale!\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access this course for free.\r\n\r\n​'),(247939,41402,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(247940,41402,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247941,41402,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(247942,41402,'blocks_1_split_5050_content_actions','1'),(247943,41402,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(247944,41402,'blocks_1_split_5050_content',''),(247945,41402,'_blocks_1_split_5050_content','field_61767afceb8ba'),(247946,41402,'blocks_2_acfe_flexible_toggle',''),(247947,41402,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(247948,41402,'blocks_2_acfe_flexible_layout_title','Timeline'),(247949,41402,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(247950,41402,'blocks_2_options_theme','#ffffff'),(247951,41402,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(247952,41402,'blocks_2_options',''),(247953,41402,'_blocks_2_options','field_6177de53d1195'),(247954,41402,'blocks_2_timeline_content_title',''),(247955,41402,'_blocks_2_timeline_content_title','field_6177de53d1198'),(247956,41402,'blocks_2_timeline_content_heading','How to enrol on this course'),(247957,41402,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(247958,41402,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(247959,41402,'_blocks_2_timeline_content_text','field_6177de53d119a'),(247960,41402,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(247961,41402,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(247962,41402,'blocks_2_timeline_content_actions','1'),(247963,41402,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(247964,41402,'blocks_2_timeline_content',''),(247965,41402,'_blocks_2_timeline_content','field_6177de53d1197'),(247966,41402,'blocks_2_timeline_items_0_title','Enrol Now'),(247967,41402,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(247968,41402,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(247969,41402,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(247970,41402,'blocks_2_timeline_items_1_title','Progress to Checkout'),(247971,41402,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(247972,41402,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(247973,41402,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(247974,41402,'blocks_2_timeline_items_2_title','Get Access'),(247975,41402,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(247976,41402,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(247977,41402,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(247978,41402,'blocks_2_timeline_items_3_title','Complete the Course'),(247979,41402,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(247980,41402,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(247981,41402,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(247982,41402,'blocks_2_timeline_items','4'),(247983,41402,'_blocks_2_timeline_items','field_6177de53d119d'),(247984,41402,'blocks_3_acfe_flexible_toggle',''),(247985,41402,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(247986,41402,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(247987,41402,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(247988,41402,'blocks_3_options_theme','#ffffff'),(247989,41402,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(247990,41402,'blocks_3_options_reverse','0'),(247991,41402,'_blocks_3_options_reverse','field_61768049bb8ac'),(247992,41402,'blocks_3_options',''),(247993,41402,'_blocks_3_options','field_617682517c334'),(247994,41402,'blocks_3_split_5050_image',''),(247995,41402,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(247996,41402,'blocks_3_split_5050_video','https://youtu.be/crqXrpFsDyw'),(247997,41402,'_blocks_3_split_5050_video','field_6239f3160848a'),(247998,41402,'blocks_3_split_5050_content_title',''),(247999,41402,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(248000,41402,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(248001,41402,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(248002,41402,'blocks_3_split_5050_content_text','As a Pilates instructor, you understand movement’s potential - but imagine taking it even further. The Biomechanics Coaching Diploma is designed to deepen your knowledge of human movement, helping you assess and enhance your clients’ biomechanics for better outcomes.\r\n\r\nTom Waldron, a Pilates Instructor and Biomechanics Coach (International Master Trainer), describes it as a game-changer:\r\n\r\n<em>\"The diploma taught me to view the body as an integrated system. I now have the tools to address movement restrictions holistically, helping my clients move more freely, prevent injuries, and reduce pain. It has truly elevated my practice.\"</em>\r\n\r\nReady to explore? Use code <strong>INTRO</strong> at checkout to access our introductory course for free and begin your journey to deeper expertise.'),(248003,41402,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(248004,41402,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248005,41402,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(248006,41402,'blocks_3_split_5050_content_actions','1'),(248007,41402,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(248008,41402,'blocks_3_split_5050_content',''),(248009,41402,'_blocks_3_split_5050_content','field_61767afceb8ba'),(248010,41402,'blocks_4_acfe_flexible_toggle',''),(248011,41402,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(248012,41402,'blocks_4_acfe_flexible_layout_title','Icons'),(248013,41402,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(248014,41402,'blocks_4_options_theme','#ffffff'),(248015,41402,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(248016,41402,'blocks_4_options_format','grid'),(248017,41402,'_blocks_4_options_format','field_64bfde9a90690'),(248018,41402,'blocks_4_options',''),(248019,41402,'_blocks_4_options','field_64bfdd9b90684'),(248020,41402,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(248021,41402,'_blocks_4_row_content_title','field_64bfdd9b90687'),(248022,41402,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(248023,41402,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(248024,41402,'blocks_4_row_content_text',''),(248025,41402,'_blocks_4_row_content_text','field_64bfdd9b90689'),(248026,41402,'blocks_4_row_content_actions',''),(248027,41402,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(248028,41402,'blocks_4_row_content',''),(248029,41402,'_blocks_4_row_content','field_64bfdd9b90686'),(248030,41402,'blocks_4_icon_row_items_0_icon','build-career.svg'),(248031,41402,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(248032,41402,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(248033,41402,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(248034,41402,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(248035,41402,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(248036,41402,'blocks_4_icon_row_items_1_icon','qualification.svg'),(248037,41402,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(248038,41402,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(248039,41402,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(248040,41402,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(248041,41402,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(248042,41402,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(248043,41402,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(248044,41402,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(248045,41402,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(248046,41402,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(248047,41402,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(248048,41402,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(248049,41402,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(248050,41402,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(248051,41402,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(248052,41402,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(248053,41402,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(248054,41402,'blocks_4_icon_row_items','4'),(248055,41402,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(248056,41402,'blocks_5_acfe_flexible_toggle',''),(248057,41402,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(248058,41402,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(248059,41402,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(248060,41402,'blocks_5_options_theme','#ffffff'),(248061,41402,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(248062,41402,'blocks_5_options_reverse','0'),(248063,41402,'_blocks_5_options_reverse','field_61768049bb8ac'),(248064,41402,'blocks_5_options',''),(248065,41402,'_blocks_5_options','field_617682517c334'),(248066,41402,'blocks_5_split_5050_image','41241'),(248067,41402,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(248068,41402,'blocks_5_split_5050_video',''),(248069,41402,'_blocks_5_split_5050_video','field_6239f3160848a'),(248070,41402,'blocks_5_split_5050_content_title',''),(248071,41402,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(248072,41402,'blocks_5_split_5050_content_heading','What\'s included?'),(248073,41402,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(248074,41402,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(248075,41402,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(248076,41402,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248077,41402,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(248078,41402,'blocks_5_split_5050_content_actions','1'),(248079,41402,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(248080,41402,'blocks_5_split_5050_content',''),(248081,41402,'_blocks_5_split_5050_content','field_61767afceb8ba'),(248082,41402,'blocks_6_acfe_flexible_toggle',''),(248083,41402,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(248084,41402,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(248085,41402,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(248086,41402,'blocks_6_options_alignment','left'),(248087,41402,'_blocks_6_options_alignment','field_61769449f5490'),(248088,41402,'blocks_6_options',''),(248089,41402,'_blocks_6_options','field_617693e1428f0'),(248090,41402,'blocks_6_promo_panel_image','41242'),(248091,41402,'_blocks_6_promo_panel_image','field_617693e1428f3'),(248092,41402,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(248093,41402,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(248094,41402,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(248095,41402,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(248096,41402,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248097,41402,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(248098,41402,'blocks_6_promo_panel_content_actions','1'),(248099,41402,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(248100,41402,'blocks_6_promo_panel_content',''),(248101,41402,'_blocks_6_promo_panel_content','field_617693e1428f4'),(248102,41402,'course_label_label_theme','#0d1f73'),(248103,41402,'_course_label_label_theme','field_61e17bb8f71fb'),(248104,41403,'_fft_id','191'),(248105,41403,'_fft_catalogue_id','f719efce-190d-ef11-9f89-7c1e521d5cd3'),(248106,41403,'_fft_code','BMFSMT'),(248107,41403,'_fft_name','Biomechanics for Sports Massage Therapists'),(248108,41403,'_fft_description',NULL),(248109,41403,'_fft_metadata_school','biomechanics'),(248110,41403,'_fft_metadata_flex_id','1230'),(248111,41403,'_fft_metadata_type_id','100000000'),(248112,41403,'_fft_metadata_flex_type','collection'),(248113,41403,'_fft_metadata_type_label','Course'),(248114,41403,'_fft_metadata_course_type_id','100000002'),(248115,41403,'_fft_metadata_course_type_label','Online Learning'),(248116,41403,'_fft_metadata_productstructure_id','1'),(248117,41403,'_fft_metadata_productstructure_label','Product'),(248118,41403,'_fft_taxable','1'),(248119,41403,'_fft_created_at','1724086111'),(248120,41403,'_fft_updated_at','1743078580'),(248121,41403,'_fft_price_id','194'),(248122,41403,'_fft_price_value','115.83'),(248123,41403,'_fft_price_begins_at',NULL),(248124,41403,'_fft_price_expires_at',NULL),(248125,41403,'_fft_price_value_inc_tax','139'),(248126,41403,'_fft_error',''),(248127,41403,'_fft_saved_at','1751618582'),(248128,41403,'_edit_lock','1734369018:11'),(248129,41403,'_edit_last','13'),(248130,41403,'_wp_old_date','2024-09-10'),(248131,41403,'hide_hero','0'),(248132,41403,'_hide_hero','field_66a2380fcda39'),(248133,41403,'hero_title','Introduction to Biomechanics Education Course'),(248134,41403,'_hero_title','field_617571fe285e8'),(248135,41403,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education course. Use code \'intro\' at checkout to get the course for free!\r\n'),(248136,41403,'_hero_text','field_6175723c285e9'),(248137,41403,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248138,41403,'_hero_actions_0_button','field_61757281285eb'),(248139,41403,'hero_actions','1'),(248140,41403,'_hero_actions','field_61757270285ea'),(248141,41403,'hero_style','default'),(248142,41403,'_hero_style','field_62051d9dc5324'),(248143,41403,'_thumbnail_id','41412'),(248144,41403,'__thumbnail_id','field_617570855ddaf'),(248145,41403,'hero_image_pos_x','right'),(248146,41403,'_hero_image_pos_x','field_62ec3d05390bb'),(248147,41403,'hero_image_pos_y','top'),(248148,41403,'_hero_image_pos_y','field_62ec3d05390bc'),(248149,41403,'hero_image_pos',''),(248150,41403,'_hero_image_pos','field_62ec3d05390ba'),(248151,41403,'fft_hide_from_listings','0'),(248152,41403,'_fft_hide_from_listings','field_61f1320446ab2'),(248153,41403,'fft_page_format','default'),(248154,41403,'_fft_page_format','field_61ae213f1f218'),(248155,41403,'fft_hide_nav','0'),(248156,41403,'_fft_hide_nav','field_635bd5e43527c'),(248157,41403,'fft_hide_header_call_to_action','0'),(248158,41403,'_fft_hide_header_call_to_action','field_635bd6723527d'),(248159,41403,'fft_page_sitemap','0'),(248160,41403,'_fft_page_sitemap','field_61af9b34e8181'),(248161,41403,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(248162,41403,'_blocks','field_6176696113096'),(248163,41403,'course_label_text','Introduction to Biomechanics Education Course'),(248164,41403,'_course_label_text','field_61e17babf71fa'),(248165,41403,'course_label',''),(248166,41403,'_course_label','field_61e12f92749a7'),(248167,41403,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(248168,41403,'_course_description','field_617ac5788e5e1'),(248169,41403,'course_key_info',''),(248170,41403,'_course_key_info','field_617ac6ad8e5e2'),(248171,41403,'course_included',''),(248172,41403,'_course_included','field_617ac6f08e5e4'),(248173,41403,'_yoast_wpseo_primary_course-cat','406'),(248174,41403,'_yoast_wpseo_inclusive_language_score','90'),(248175,41403,'_yoast_wpseo_estimated-reading-time-minutes','1'),(248176,41403,'blocks_0_acfe_flexible_toggle',''),(248177,41403,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(248178,41403,'blocks_0_acfe_flexible_layout_title','Icons'),(248179,41403,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(248180,41403,'blocks_0_options_theme','#ffffff'),(248181,41403,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(248182,41403,'blocks_0_options_format','row'),(248183,41403,'_blocks_0_options_format','field_64bfde9a90690'),(248184,41403,'blocks_0_options',''),(248185,41403,'_blocks_0_options','field_64bfdd9b90684'),(248186,41403,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(248187,41403,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(248188,41403,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(248189,41403,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(248190,41403,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(248191,41403,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(248192,41403,'blocks_0_icon_row_items_1_icon','build-career.svg'),(248193,41403,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(248194,41403,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(248195,41403,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(248196,41403,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(248197,41403,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(248198,41403,'blocks_0_icon_row_items_2_icon','diversify.svg'),(248199,41403,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(248200,41403,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(248201,41403,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(248202,41403,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(248203,41403,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(248204,41403,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(248205,41403,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(248206,41403,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(248207,41403,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(248208,41403,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(248209,41403,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(248210,41403,'blocks_0_icon_row_items','4'),(248211,41403,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(248212,41403,'blocks_1_acfe_flexible_toggle',''),(248213,41403,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(248214,41403,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(248215,41403,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(248216,41403,'blocks_1_options_theme','#ffffff'),(248217,41403,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(248218,41403,'blocks_1_options_reverse','0'),(248219,41403,'_blocks_1_options_reverse','field_61768049bb8ac'),(248220,41403,'blocks_1_options',''),(248221,41403,'_blocks_1_options','field_617682517c334'),(248222,41403,'blocks_1_split_5050_image','41300'),(248223,41403,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(248224,41403,'blocks_1_split_5050_video',''),(248225,41403,'_blocks_1_split_5050_video','field_6239f3160848a'),(248226,41403,'blocks_1_split_5050_content_title',''),(248227,41403,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(248228,41403,'blocks_1_split_5050_content_heading','Course Overview'),(248229,41403,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(248230,41403,'blocks_1_split_5050_content_text','Unlock the secrets of intrinsic biomechanics and elevate your sports massage therapy and coaching. By mastering these concepts, you\'ll become a sought-after expert in the field, gaining unique skills that set you apart in the market.\r\n\r\nStart your journey with this 60-minute course and become an Intrinsic Biomechanics Coach. Join us in promoting active well-being and improving health on a broader scale!\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access this course for free.\r\n\r\n​'),(248231,41403,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(248232,41403,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248233,41403,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(248234,41403,'blocks_1_split_5050_content_actions','1'),(248235,41403,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(248236,41403,'blocks_1_split_5050_content',''),(248237,41403,'_blocks_1_split_5050_content','field_61767afceb8ba'),(248238,41403,'blocks_2_acfe_flexible_toggle',''),(248239,41403,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(248240,41403,'blocks_2_acfe_flexible_layout_title','Timeline'),(248241,41403,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(248242,41403,'blocks_2_options_theme','#ffffff'),(248243,41403,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(248244,41403,'blocks_2_options',''),(248245,41403,'_blocks_2_options','field_6177de53d1195'),(248246,41403,'blocks_2_timeline_content_title',''),(248247,41403,'_blocks_2_timeline_content_title','field_6177de53d1198'),(248248,41403,'blocks_2_timeline_content_heading','How to enrol on this course'),(248249,41403,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(248250,41403,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(248251,41403,'_blocks_2_timeline_content_text','field_6177de53d119a'),(248252,41403,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248253,41403,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(248254,41403,'blocks_2_timeline_content_actions','1'),(248255,41403,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(248256,41403,'blocks_2_timeline_content',''),(248257,41403,'_blocks_2_timeline_content','field_6177de53d1197'),(248258,41403,'blocks_2_timeline_items_0_title','Enrol Now'),(248259,41403,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(248260,41403,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(248261,41403,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(248262,41403,'blocks_2_timeline_items_1_title','Progress to Checkout'),(248263,41403,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(248264,41403,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(248265,41403,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(248266,41403,'blocks_2_timeline_items_2_title','Get Access'),(248267,41403,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(248268,41403,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(248269,41403,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(248270,41403,'blocks_2_timeline_items_3_title','Complete the Course'),(248271,41403,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(248272,41403,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(248273,41403,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(248274,41403,'blocks_2_timeline_items','4'),(248275,41403,'_blocks_2_timeline_items','field_6177de53d119d'),(248276,41403,'blocks_3_acfe_flexible_toggle',''),(248277,41403,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(248278,41403,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(248279,41403,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(248280,41403,'blocks_3_options_theme','#ffffff'),(248281,41403,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(248282,41403,'blocks_3_options_reverse','0'),(248283,41403,'_blocks_3_options_reverse','field_61768049bb8ac'),(248284,41403,'blocks_3_options',''),(248285,41403,'_blocks_3_options','field_617682517c334'),(248286,41403,'blocks_3_split_5050_image',''),(248287,41403,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(248288,41403,'blocks_3_split_5050_video','https://youtu.be/xgRiAj1qEog'),(248289,41403,'_blocks_3_split_5050_video','field_6239f3160848a'),(248290,41403,'blocks_3_split_5050_content_title',''),(248291,41403,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(248292,41403,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(248293,41403,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(248294,41403,'blocks_3_split_5050_content_text','As a sports massage therapist, you already know how movement and muscle health go hand in hand – but what if you could take that understanding to a new level? The Biomechanics Coaching Diploma is crafted to broaden your expertise, giving you advanced tools to assess and improve your clients\' intrinsic biomechanics for more effective treatments and lasting results.\r\n\r\nThis free, 1-hour introductory course is a perfect first step, offering insights that may shift how you approach movement and body mechanics in your practice. By learning to view the body as an integrated system, you’ll gain techniques to address movement restrictions holistically, helping clients not only feel relief but achieve better functional movement and reduce risk of future issues.\r\n\r\nReady to get started? Use code <strong>INTRO</strong> at checkout to access this introductory course for free and take the first step toward deeper expertise.'),(248295,41403,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(248296,41403,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248297,41403,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(248298,41403,'blocks_3_split_5050_content_actions','1'),(248299,41403,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(248300,41403,'blocks_3_split_5050_content',''),(248301,41403,'_blocks_3_split_5050_content','field_61767afceb8ba'),(248302,41403,'blocks_4_acfe_flexible_toggle',''),(248303,41403,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(248304,41403,'blocks_4_acfe_flexible_layout_title','Icons'),(248305,41403,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(248306,41403,'blocks_4_options_theme','#ffffff'),(248307,41403,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(248308,41403,'blocks_4_options_format','grid'),(248309,41403,'_blocks_4_options_format','field_64bfde9a90690'),(248310,41403,'blocks_4_options',''),(248311,41403,'_blocks_4_options','field_64bfdd9b90684'),(248312,41403,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(248313,41403,'_blocks_4_row_content_title','field_64bfdd9b90687'),(248314,41403,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(248315,41403,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(248316,41403,'blocks_4_row_content_text',''),(248317,41403,'_blocks_4_row_content_text','field_64bfdd9b90689'),(248318,41403,'blocks_4_row_content_actions',''),(248319,41403,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(248320,41403,'blocks_4_row_content',''),(248321,41403,'_blocks_4_row_content','field_64bfdd9b90686'),(248322,41403,'blocks_4_icon_row_items_0_icon','build-career.svg'),(248323,41403,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(248324,41403,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(248325,41403,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(248326,41403,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(248327,41403,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(248328,41403,'blocks_4_icon_row_items_1_icon','qualification.svg'),(248329,41403,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(248330,41403,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(248331,41403,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(248332,41403,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(248333,41403,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(248334,41403,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(248335,41403,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(248336,41403,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(248337,41403,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(248338,41403,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(248339,41403,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(248340,41403,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(248341,41403,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(248342,41403,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(248343,41403,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(248344,41403,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(248345,41403,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(248346,41403,'blocks_4_icon_row_items','4'),(248347,41403,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(248348,41403,'blocks_5_acfe_flexible_toggle',''),(248349,41403,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(248350,41403,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(248351,41403,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(248352,41403,'blocks_5_options_theme','#ffffff'),(248353,41403,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(248354,41403,'blocks_5_options_reverse','0'),(248355,41403,'_blocks_5_options_reverse','field_61768049bb8ac'),(248356,41403,'blocks_5_options',''),(248357,41403,'_blocks_5_options','field_617682517c334'),(248358,41403,'blocks_5_split_5050_image','41241'),(248359,41403,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(248360,41403,'blocks_5_split_5050_video',''),(248361,41403,'_blocks_5_split_5050_video','field_6239f3160848a'),(248362,41403,'blocks_5_split_5050_content_title',''),(248363,41403,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(248364,41403,'blocks_5_split_5050_content_heading','What\'s included?'),(248365,41403,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(248366,41403,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(248367,41403,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(248368,41403,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248369,41403,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(248370,41403,'blocks_5_split_5050_content_actions','1'),(248371,41403,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(248372,41403,'blocks_5_split_5050_content',''),(248373,41403,'_blocks_5_split_5050_content','field_61767afceb8ba'),(248374,41403,'blocks_6_acfe_flexible_toggle',''),(248375,41403,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(248376,41403,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(248377,41403,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(248378,41403,'blocks_6_options_alignment','left'),(248379,41403,'_blocks_6_options_alignment','field_61769449f5490'),(248380,41403,'blocks_6_options',''),(248381,41403,'_blocks_6_options','field_617693e1428f0'),(248382,41403,'blocks_6_promo_panel_image','41242'),(248383,41403,'_blocks_6_promo_panel_image','field_617693e1428f3'),(248384,41403,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(248385,41403,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(248386,41403,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(248387,41403,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(248388,41403,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248389,41403,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(248390,41403,'blocks_6_promo_panel_content_actions','1'),(248391,41403,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(248392,41403,'blocks_6_promo_panel_content',''),(248393,41403,'_blocks_6_promo_panel_content','field_617693e1428f4'),(248394,41403,'course_label_label_theme','#0d1f73'),(248395,41403,'_course_label_label_theme','field_61e17bb8f71fb'),(248396,41403,'_yoast_wpseo_focuskw','Introduction to Biomechanics Education Course'),(248397,41403,'_yoast_wpseo_metadesc','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(248398,41403,'_yoast_wpseo_linkdex','31'),(248399,41403,'_fft_show','1'),(248400,41403,'_fft_plan',NULL),(248401,41405,'hide_hero','0'),(248402,41405,'_hide_hero','field_66a2380fcda39'),(248403,41405,'hero_title','Introduction to Biomechanics Education Course'),(248404,41405,'_hero_title','field_617571fe285e8'),(248405,41405,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!\r\n'),(248406,41405,'_hero_text','field_6175723c285e9'),(248407,41405,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248408,41405,'_hero_actions_0_button','field_61757281285eb'),(248409,41405,'hero_actions','1'),(248410,41405,'_hero_actions','field_61757270285ea'),(248411,41405,'hero_style','default'),(248412,41405,'_hero_style','field_62051d9dc5324'),(248413,41405,'_thumbnail_id','41400'),(248414,41405,'__thumbnail_id','field_617570855ddaf'),(248415,41405,'hero_image_pos_x','right'),(248416,41405,'_hero_image_pos_x','field_62ec3d05390bb'),(248417,41405,'hero_image_pos_y','top'),(248418,41405,'_hero_image_pos_y','field_62ec3d05390bc'),(248419,41405,'hero_image_pos',''),(248420,41405,'_hero_image_pos','field_62ec3d05390ba'),(248421,41405,'fft_hide_from_listings','0'),(248422,41405,'_fft_hide_from_listings','field_61f1320446ab2'),(248423,41405,'fft_page_format','default'),(248424,41405,'_fft_page_format','field_61ae213f1f218'),(248425,41405,'fft_hide_nav','0'),(248426,41405,'_fft_hide_nav','field_635bd5e43527c'),(248427,41405,'fft_hide_header_call_to_action','0'),(248428,41405,'_fft_hide_header_call_to_action','field_635bd6723527d'),(248429,41405,'fft_page_sitemap','0'),(248430,41405,'_fft_page_sitemap','field_61af9b34e8181'),(248431,41405,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(248432,41405,'_blocks','field_6176696113096'),(248433,41405,'course_label_text','Introduction to Biomechanics Education Course'),(248434,41405,'_course_label_text','field_61e17babf71fa'),(248435,41405,'course_label',''),(248436,41405,'_course_label','field_61e12f92749a7'),(248437,41405,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(248438,41405,'_course_description','field_617ac5788e5e1'),(248439,41405,'course_key_info',''),(248440,41405,'_course_key_info','field_617ac6ad8e5e2'),(248441,41405,'course_included',''),(248442,41405,'_course_included','field_617ac6f08e5e4'),(248443,41405,'blocks_0_acfe_flexible_toggle',''),(248444,41405,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(248445,41405,'blocks_0_acfe_flexible_layout_title','Icons'),(248446,41405,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(248447,41405,'blocks_0_options_theme','#ffffff'),(248448,41405,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(248449,41405,'blocks_0_options_format','row'),(248450,41405,'_blocks_0_options_format','field_64bfde9a90690'),(248451,41405,'blocks_0_options',''),(248452,41405,'_blocks_0_options','field_64bfdd9b90684'),(248453,41405,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(248454,41405,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(248455,41405,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(248456,41405,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(248457,41405,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(248458,41405,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(248459,41405,'blocks_0_icon_row_items_1_icon','build-career.svg'),(248460,41405,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(248461,41405,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(248462,41405,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(248463,41405,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(248464,41405,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(248465,41405,'blocks_0_icon_row_items_2_icon','diversify.svg'),(248466,41405,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(248467,41405,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(248468,41405,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(248469,41405,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(248470,41405,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(248471,41405,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(248472,41405,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(248473,41405,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(248474,41405,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(248475,41405,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(248476,41405,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(248477,41405,'blocks_0_icon_row_items','4'),(248478,41405,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(248479,41405,'blocks_1_acfe_flexible_toggle',''),(248480,41405,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(248481,41405,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(248482,41405,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(248483,41405,'blocks_1_options_theme','#ffffff'),(248484,41405,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(248485,41405,'blocks_1_options_reverse','0'),(248486,41405,'_blocks_1_options_reverse','field_61768049bb8ac'),(248487,41405,'blocks_1_options',''),(248488,41405,'_blocks_1_options','field_617682517c334'),(248489,41405,'blocks_1_split_5050_image','41239'),(248490,41405,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(248491,41405,'blocks_1_split_5050_video',''),(248492,41405,'_blocks_1_split_5050_video','field_6239f3160848a'),(248493,41405,'blocks_1_split_5050_content_title',''),(248494,41405,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(248495,41405,'blocks_1_split_5050_content_heading','Course Overview'),(248496,41405,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(248497,41405,'blocks_1_split_5050_content_text','Unlock the secrets of intrinsic biomechanics and elevate your Pilates programming and coaching. By mastering these concepts, you\'ll become a sought-after expert in the field, gaining unique skills that set you apart in the market.\r\n\r\nStart your journey with this 60-minute course and become an Intrinsic Biomechanics Coach. Join us in promoting active well-being and improving health on a broader scale!\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access this course for free.\r\n\r\n​'),(248498,41405,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(248499,41405,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248500,41405,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(248501,41405,'blocks_1_split_5050_content_actions','1'),(248502,41405,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(248503,41405,'blocks_1_split_5050_content',''),(248504,41405,'_blocks_1_split_5050_content','field_61767afceb8ba'),(248505,41405,'blocks_2_acfe_flexible_toggle',''),(248506,41405,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(248507,41405,'blocks_2_acfe_flexible_layout_title','Timeline'),(248508,41405,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(248509,41405,'blocks_2_options_theme','#ffffff'),(248510,41405,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(248511,41405,'blocks_2_options',''),(248512,41405,'_blocks_2_options','field_6177de53d1195'),(248513,41405,'blocks_2_timeline_content_title',''),(248514,41405,'_blocks_2_timeline_content_title','field_6177de53d1198'),(248515,41405,'blocks_2_timeline_content_heading','How to enrol on this course'),(248516,41405,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(248517,41405,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(248518,41405,'_blocks_2_timeline_content_text','field_6177de53d119a'),(248519,41405,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248520,41405,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(248521,41405,'blocks_2_timeline_content_actions','1'),(248522,41405,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(248523,41405,'blocks_2_timeline_content',''),(248524,41405,'_blocks_2_timeline_content','field_6177de53d1197'),(248525,41405,'blocks_2_timeline_items_0_title','Enrol Now'),(248526,41405,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(248527,41405,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(248528,41405,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(248529,41405,'blocks_2_timeline_items_1_title','Progress to Checkout'),(248530,41405,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(248531,41405,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(248532,41405,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(248533,41405,'blocks_2_timeline_items_2_title','Get Access'),(248534,41405,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(248535,41405,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(248536,41405,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(248537,41405,'blocks_2_timeline_items_3_title','Complete the Course'),(248538,41405,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(248539,41405,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(248540,41405,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(248541,41405,'blocks_2_timeline_items','4'),(248542,41405,'_blocks_2_timeline_items','field_6177de53d119d'),(248543,41405,'blocks_3_acfe_flexible_toggle',''),(248544,41405,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(248545,41405,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(248546,41405,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(248547,41405,'blocks_3_options_theme','#ffffff'),(248548,41405,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(248549,41405,'blocks_3_options_reverse','0'),(248550,41405,'_blocks_3_options_reverse','field_61768049bb8ac'),(248551,41405,'blocks_3_options',''),(248552,41405,'_blocks_3_options','field_617682517c334'),(248553,41405,'blocks_3_split_5050_image',''),(248554,41405,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(248555,41405,'blocks_3_split_5050_video','https://youtu.be/crqXrpFsDyw'),(248556,41405,'_blocks_3_split_5050_video','field_6239f3160848a'),(248557,41405,'blocks_3_split_5050_content_title',''),(248558,41405,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(248559,41405,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(248560,41405,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(248561,41405,'blocks_3_split_5050_content_text','As a Pilates instructor, you understand movement’s potential - but imagine taking it even further. The Biomechanics Coaching Diploma is designed to deepen your knowledge of human movement, helping you assess and enhance your clients’ biomechanics for better outcomes.\r\n\r\nTom Waldron, a Pilates Instructor and Biomechanics Coach (International Master Trainer), describes it as a game-changer:\r\n\r\n<em>\"The diploma taught me to view the body as an integrated system. I now have the tools to address movement restrictions holistically, helping my clients move more freely, prevent injuries, and reduce pain. It has truly elevated my practice.\"</em>\r\n\r\nReady to explore? Use code <strong>INTRO</strong> at checkout to access our introductory course for free and begin your journey to deeper expertise.'),(248562,41405,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(248563,41405,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248564,41405,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(248565,41405,'blocks_3_split_5050_content_actions','1'),(248566,41405,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(248567,41405,'blocks_3_split_5050_content',''),(248568,41405,'_blocks_3_split_5050_content','field_61767afceb8ba'),(248569,41405,'blocks_4_acfe_flexible_toggle',''),(248570,41405,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(248571,41405,'blocks_4_acfe_flexible_layout_title','Icons'),(248572,41405,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(248573,41405,'blocks_4_options_theme','#ffffff'),(248574,41405,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(248575,41405,'blocks_4_options_format','grid'),(248576,41405,'_blocks_4_options_format','field_64bfde9a90690'),(248577,41405,'blocks_4_options',''),(248578,41405,'_blocks_4_options','field_64bfdd9b90684'),(248579,41405,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(248580,41405,'_blocks_4_row_content_title','field_64bfdd9b90687'),(248581,41405,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(248582,41405,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(248583,41405,'blocks_4_row_content_text',''),(248584,41405,'_blocks_4_row_content_text','field_64bfdd9b90689'),(248585,41405,'blocks_4_row_content_actions',''),(248586,41405,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(248587,41405,'blocks_4_row_content',''),(248588,41405,'_blocks_4_row_content','field_64bfdd9b90686'),(248589,41405,'blocks_4_icon_row_items_0_icon','build-career.svg'),(248590,41405,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(248591,41405,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(248592,41405,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(248593,41405,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(248594,41405,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(248595,41405,'blocks_4_icon_row_items_1_icon','qualification.svg'),(248596,41405,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(248597,41405,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(248598,41405,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(248599,41405,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(248600,41405,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(248601,41405,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(248602,41405,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(248603,41405,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(248604,41405,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(248605,41405,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(248606,41405,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(248607,41405,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(248608,41405,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(248609,41405,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(248610,41405,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(248611,41405,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(248612,41405,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(248613,41405,'blocks_4_icon_row_items','4'),(248614,41405,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(248615,41405,'blocks_5_acfe_flexible_toggle',''),(248616,41405,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(248617,41405,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(248618,41405,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(248619,41405,'blocks_5_options_theme','#ffffff'),(248620,41405,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(248621,41405,'blocks_5_options_reverse','0'),(248622,41405,'_blocks_5_options_reverse','field_61768049bb8ac'),(248623,41405,'blocks_5_options',''),(248624,41405,'_blocks_5_options','field_617682517c334'),(248625,41405,'blocks_5_split_5050_image','41241'),(248626,41405,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(248627,41405,'blocks_5_split_5050_video',''),(248628,41405,'_blocks_5_split_5050_video','field_6239f3160848a'),(248629,41405,'blocks_5_split_5050_content_title',''),(248630,41405,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(248631,41405,'blocks_5_split_5050_content_heading','What\'s included?'),(248632,41405,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(248633,41405,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(248634,41405,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(248635,41405,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248636,41405,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(248637,41405,'blocks_5_split_5050_content_actions','1'),(248638,41405,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(248639,41405,'blocks_5_split_5050_content',''),(248640,41405,'_blocks_5_split_5050_content','field_61767afceb8ba'),(248641,41405,'blocks_6_acfe_flexible_toggle',''),(248642,41405,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(248643,41405,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(248644,41405,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(248645,41405,'blocks_6_options_alignment','left'),(248646,41405,'_blocks_6_options_alignment','field_61769449f5490'),(248647,41405,'blocks_6_options',''),(248648,41405,'_blocks_6_options','field_617693e1428f0'),(248649,41405,'blocks_6_promo_panel_image','41242'),(248650,41405,'_blocks_6_promo_panel_image','field_617693e1428f3'),(248651,41405,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(248652,41405,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(248653,41405,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(248654,41405,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(248655,41405,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248656,41405,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(248657,41405,'blocks_6_promo_panel_content_actions','1'),(248658,41405,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(248659,41405,'blocks_6_promo_panel_content',''),(248660,41405,'_blocks_6_promo_panel_content','field_617693e1428f4'),(248661,41405,'course_label_label_theme','#0d1f73'),(248662,41405,'_course_label_label_theme','field_61e17bb8f71fb'),(248663,41406,'hide_hero','0'),(248664,41406,'_hide_hero','field_66a2380fcda39'),(248665,41406,'hero_title','Introduction to Biomechanics Education Course'),(248666,41406,'_hero_title','field_617571fe285e8'),(248667,41406,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!\r\n'),(248668,41406,'_hero_text','field_6175723c285e9'),(248669,41406,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248670,41406,'_hero_actions_0_button','field_61757281285eb'),(248671,41406,'hero_actions','1'),(248672,41406,'_hero_actions','field_61757270285ea'),(248673,41406,'hero_style','default'),(248674,41406,'_hero_style','field_62051d9dc5324'),(248675,41406,'_thumbnail_id','41400'),(248676,41406,'__thumbnail_id','field_617570855ddaf'),(248677,41406,'hero_image_pos_x','right'),(248678,41406,'_hero_image_pos_x','field_62ec3d05390bb'),(248679,41406,'hero_image_pos_y','top'),(248680,41406,'_hero_image_pos_y','field_62ec3d05390bc'),(248681,41406,'hero_image_pos',''),(248682,41406,'_hero_image_pos','field_62ec3d05390ba'),(248683,41406,'fft_hide_from_listings','0'),(248684,41406,'_fft_hide_from_listings','field_61f1320446ab2'),(248685,41406,'fft_page_format','default'),(248686,41406,'_fft_page_format','field_61ae213f1f218'),(248687,41406,'fft_hide_nav','0'),(248688,41406,'_fft_hide_nav','field_635bd5e43527c'),(248689,41406,'fft_hide_header_call_to_action','0'),(248690,41406,'_fft_hide_header_call_to_action','field_635bd6723527d'),(248691,41406,'fft_page_sitemap','0'),(248692,41406,'_fft_page_sitemap','field_61af9b34e8181'),(248693,41406,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(248694,41406,'_blocks','field_6176696113096'),(248695,41406,'course_label_text','Introduction to Biomechanics Education Course'),(248696,41406,'_course_label_text','field_61e17babf71fa'),(248697,41406,'course_label',''),(248698,41406,'_course_label','field_61e12f92749a7'),(248699,41406,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(248700,41406,'_course_description','field_617ac5788e5e1'),(248701,41406,'course_key_info',''),(248702,41406,'_course_key_info','field_617ac6ad8e5e2'),(248703,41406,'course_included',''),(248704,41406,'_course_included','field_617ac6f08e5e4'),(248705,41406,'blocks_0_acfe_flexible_toggle',''),(248706,41406,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(248707,41406,'blocks_0_acfe_flexible_layout_title','Icons'),(248708,41406,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(248709,41406,'blocks_0_options_theme','#ffffff'),(248710,41406,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(248711,41406,'blocks_0_options_format','row'),(248712,41406,'_blocks_0_options_format','field_64bfde9a90690'),(248713,41406,'blocks_0_options',''),(248714,41406,'_blocks_0_options','field_64bfdd9b90684'),(248715,41406,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(248716,41406,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(248717,41406,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(248718,41406,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(248719,41406,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(248720,41406,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(248721,41406,'blocks_0_icon_row_items_1_icon','build-career.svg'),(248722,41406,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(248723,41406,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(248724,41406,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(248725,41406,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(248726,41406,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(248727,41406,'blocks_0_icon_row_items_2_icon','diversify.svg'),(248728,41406,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(248729,41406,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(248730,41406,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(248731,41406,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(248732,41406,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(248733,41406,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(248734,41406,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(248735,41406,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(248736,41406,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(248737,41406,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(248738,41406,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(248739,41406,'blocks_0_icon_row_items','4'),(248740,41406,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(248741,41406,'blocks_1_acfe_flexible_toggle',''),(248742,41406,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(248743,41406,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(248744,41406,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(248745,41406,'blocks_1_options_theme','#ffffff'),(248746,41406,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(248747,41406,'blocks_1_options_reverse','0'),(248748,41406,'_blocks_1_options_reverse','field_61768049bb8ac'),(248749,41406,'blocks_1_options',''),(248750,41406,'_blocks_1_options','field_617682517c334'),(248751,41406,'blocks_1_split_5050_image','41239'),(248752,41406,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(248753,41406,'blocks_1_split_5050_video',''),(248754,41406,'_blocks_1_split_5050_video','field_6239f3160848a'),(248755,41406,'blocks_1_split_5050_content_title',''),(248756,41406,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(248757,41406,'blocks_1_split_5050_content_heading','Course Overview'),(248758,41406,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(248759,41406,'blocks_1_split_5050_content_text','Unlock the secrets of intrinsic biomechanics and elevate your Pilates programming and coaching. By mastering these concepts, you\'ll become a sought-after expert in the field, gaining unique skills that set you apart in the market.\r\n\r\nStart your journey with this 60-minute course and become an Intrinsic Biomechanics Coach. Join us in promoting active well-being and improving health on a broader scale!\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access this course for free.\r\n\r\n​'),(248760,41406,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(248761,41406,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248762,41406,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(248763,41406,'blocks_1_split_5050_content_actions','1'),(248764,41406,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(248765,41406,'blocks_1_split_5050_content',''),(248766,41406,'_blocks_1_split_5050_content','field_61767afceb8ba'),(248767,41406,'blocks_2_acfe_flexible_toggle',''),(248768,41406,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(248769,41406,'blocks_2_acfe_flexible_layout_title','Timeline'),(248770,41406,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(248771,41406,'blocks_2_options_theme','#ffffff'),(248772,41406,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(248773,41406,'blocks_2_options',''),(248774,41406,'_blocks_2_options','field_6177de53d1195'),(248775,41406,'blocks_2_timeline_content_title',''),(248776,41406,'_blocks_2_timeline_content_title','field_6177de53d1198'),(248777,41406,'blocks_2_timeline_content_heading','How to enrol on this course'),(248778,41406,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(248779,41406,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(248780,41406,'_blocks_2_timeline_content_text','field_6177de53d119a'),(248781,41406,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248782,41406,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(248783,41406,'blocks_2_timeline_content_actions','1'),(248784,41406,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(248785,41406,'blocks_2_timeline_content',''),(248786,41406,'_blocks_2_timeline_content','field_6177de53d1197'),(248787,41406,'blocks_2_timeline_items_0_title','Enrol Now'),(248788,41406,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(248789,41406,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(248790,41406,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(248791,41406,'blocks_2_timeline_items_1_title','Progress to Checkout'),(248792,41406,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(248793,41406,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(248794,41406,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(248795,41406,'blocks_2_timeline_items_2_title','Get Access'),(248796,41406,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(248797,41406,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(248798,41406,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(248799,41406,'blocks_2_timeline_items_3_title','Complete the Course'),(248800,41406,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(248801,41406,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(248802,41406,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(248803,41406,'blocks_2_timeline_items','4'),(248804,41406,'_blocks_2_timeline_items','field_6177de53d119d'),(248805,41406,'blocks_3_acfe_flexible_toggle',''),(248806,41406,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(248807,41406,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(248808,41406,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(248809,41406,'blocks_3_options_theme','#ffffff'),(248810,41406,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(248811,41406,'blocks_3_options_reverse','0'),(248812,41406,'_blocks_3_options_reverse','field_61768049bb8ac'),(248813,41406,'blocks_3_options',''),(248814,41406,'_blocks_3_options','field_617682517c334'),(248815,41406,'blocks_3_split_5050_image',''),(248816,41406,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(248817,41406,'blocks_3_split_5050_video','https://youtu.be/crqXrpFsDyw'),(248818,41406,'_blocks_3_split_5050_video','field_6239f3160848a'),(248819,41406,'blocks_3_split_5050_content_title',''),(248820,41406,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(248821,41406,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(248822,41406,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(248823,41406,'blocks_3_split_5050_content_text','As a Pilates instructor, you understand movement’s potential - but imagine taking it even further. The Biomechanics Coaching Diploma is designed to deepen your knowledge of human movement, helping you assess and enhance your clients’ biomechanics for better outcomes.\r\n\r\nTom Waldron, a Pilates Instructor and Biomechanics Coach (International Master Trainer), describes it as a game-changer:\r\n\r\n<em>\"The diploma taught me to view the body as an integrated system. I now have the tools to address movement restrictions holistically, helping my clients move more freely, prevent injuries, and reduce pain. It has truly elevated my practice.\"</em>\r\n\r\nReady to explore? Use code <strong>INTRO</strong> at checkout to access our introductory course for free and begin your journey to deeper expertise.'),(248824,41406,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(248825,41406,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248826,41406,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(248827,41406,'blocks_3_split_5050_content_actions','1'),(248828,41406,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(248829,41406,'blocks_3_split_5050_content',''),(248830,41406,'_blocks_3_split_5050_content','field_61767afceb8ba'),(248831,41406,'blocks_4_acfe_flexible_toggle',''),(248832,41406,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(248833,41406,'blocks_4_acfe_flexible_layout_title','Icons'),(248834,41406,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(248835,41406,'blocks_4_options_theme','#ffffff'),(248836,41406,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(248837,41406,'blocks_4_options_format','grid'),(248838,41406,'_blocks_4_options_format','field_64bfde9a90690'),(248839,41406,'blocks_4_options',''),(248840,41406,'_blocks_4_options','field_64bfdd9b90684'),(248841,41406,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(248842,41406,'_blocks_4_row_content_title','field_64bfdd9b90687'),(248843,41406,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(248844,41406,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(248845,41406,'blocks_4_row_content_text',''),(248846,41406,'_blocks_4_row_content_text','field_64bfdd9b90689'),(248847,41406,'blocks_4_row_content_actions',''),(248848,41406,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(248849,41406,'blocks_4_row_content',''),(248850,41406,'_blocks_4_row_content','field_64bfdd9b90686'),(248851,41406,'blocks_4_icon_row_items_0_icon','build-career.svg'),(248852,41406,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(248853,41406,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(248854,41406,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(248855,41406,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(248856,41406,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(248857,41406,'blocks_4_icon_row_items_1_icon','qualification.svg'),(248858,41406,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(248859,41406,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(248860,41406,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(248861,41406,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(248862,41406,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(248863,41406,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(248864,41406,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(248865,41406,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(248866,41406,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(248867,41406,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(248868,41406,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(248869,41406,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(248870,41406,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(248871,41406,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(248872,41406,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(248873,41406,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(248874,41406,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(248875,41406,'blocks_4_icon_row_items','4'),(248876,41406,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(248877,41406,'blocks_5_acfe_flexible_toggle',''),(248878,41406,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(248879,41406,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(248880,41406,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(248881,41406,'blocks_5_options_theme','#ffffff'),(248882,41406,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(248883,41406,'blocks_5_options_reverse','0'),(248884,41406,'_blocks_5_options_reverse','field_61768049bb8ac'),(248885,41406,'blocks_5_options',''),(248886,41406,'_blocks_5_options','field_617682517c334'),(248887,41406,'blocks_5_split_5050_image','41241'),(248888,41406,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(248889,41406,'blocks_5_split_5050_video',''),(248890,41406,'_blocks_5_split_5050_video','field_6239f3160848a'),(248891,41406,'blocks_5_split_5050_content_title',''),(248892,41406,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(248893,41406,'blocks_5_split_5050_content_heading','What\'s included?'),(248894,41406,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(248895,41406,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a Pilates Instructor</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(248896,41406,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(248897,41406,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248898,41406,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(248899,41406,'blocks_5_split_5050_content_actions','1'),(248900,41406,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(248901,41406,'blocks_5_split_5050_content',''),(248902,41406,'_blocks_5_split_5050_content','field_61767afceb8ba'),(248903,41406,'blocks_6_acfe_flexible_toggle',''),(248904,41406,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(248905,41406,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(248906,41406,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(248907,41406,'blocks_6_options_alignment','left'),(248908,41406,'_blocks_6_options_alignment','field_61769449f5490'),(248909,41406,'blocks_6_options',''),(248910,41406,'_blocks_6_options','field_617693e1428f0'),(248911,41406,'blocks_6_promo_panel_image','41242'),(248912,41406,'_blocks_6_promo_panel_image','field_617693e1428f3'),(248913,41406,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(248914,41406,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(248915,41406,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(248916,41406,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(248917,41406,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248918,41406,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(248919,41406,'blocks_6_promo_panel_content_actions','1'),(248920,41406,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(248921,41406,'blocks_6_promo_panel_content',''),(248922,41406,'_blocks_6_promo_panel_content','field_617693e1428f4'),(248923,41406,'course_label_label_theme','#0d1f73'),(248924,41406,'_course_label_label_theme','field_61e17bb8f71fb'),(248925,41403,'_wp_old_slug','biomechanics-for-pilates-teachers-copy'),(248926,41411,'hide_hero','0'),(248927,41411,'_hide_hero','field_66a2380fcda39'),(248928,41411,'hero_title','Introduction to Biomechanics Education Course'),(248929,41411,'_hero_title','field_617571fe285e8'),(248930,41411,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education course. Use code \'intro\' at checkout to get the course for free!\r\n'),(248931,41411,'_hero_text','field_6175723c285e9'),(248932,41411,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(248933,41411,'_hero_actions_0_button','field_61757281285eb'),(248934,41411,'hero_actions','1'),(248935,41411,'_hero_actions','field_61757270285ea'),(248936,41411,'hero_style','default'),(248937,41411,'_hero_style','field_62051d9dc5324'),(248938,41411,'_thumbnail_id','41400'),(248939,41411,'__thumbnail_id','field_617570855ddaf'),(248940,41411,'hero_image_pos_x','right'),(248941,41411,'_hero_image_pos_x','field_62ec3d05390bb'),(248942,41411,'hero_image_pos_y','top'),(248943,41411,'_hero_image_pos_y','field_62ec3d05390bc'),(248944,41411,'hero_image_pos',''),(248945,41411,'_hero_image_pos','field_62ec3d05390ba'),(248946,41411,'fft_hide_from_listings','0'),(248947,41411,'_fft_hide_from_listings','field_61f1320446ab2'),(248948,41411,'fft_page_format','default'),(248949,41411,'_fft_page_format','field_61ae213f1f218'),(248950,41411,'fft_hide_nav','0'),(248951,41411,'_fft_hide_nav','field_635bd5e43527c'),(248952,41411,'fft_hide_header_call_to_action','0'),(248953,41411,'_fft_hide_header_call_to_action','field_635bd6723527d'),(248954,41411,'fft_page_sitemap','0'),(248955,41411,'_fft_page_sitemap','field_61af9b34e8181'),(248956,41411,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(248957,41411,'_blocks','field_6176696113096'),(248958,41411,'course_label_text','Introduction to Biomechanics Education Course'),(248959,41411,'_course_label_text','field_61e17babf71fa'),(248960,41411,'course_label',''),(248961,41411,'_course_label','field_61e12f92749a7'),(248962,41411,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(248963,41411,'_course_description','field_617ac5788e5e1'),(248964,41411,'course_key_info',''),(248965,41411,'_course_key_info','field_617ac6ad8e5e2'),(248966,41411,'course_included',''),(248967,41411,'_course_included','field_617ac6f08e5e4'),(248968,41411,'blocks_0_acfe_flexible_toggle',''),(248969,41411,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(248970,41411,'blocks_0_acfe_flexible_layout_title','Icons'),(248971,41411,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(248972,41411,'blocks_0_options_theme','#ffffff'),(248973,41411,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(248974,41411,'blocks_0_options_format','row'),(248975,41411,'_blocks_0_options_format','field_64bfde9a90690'),(248976,41411,'blocks_0_options',''),(248977,41411,'_blocks_0_options','field_64bfdd9b90684'),(248978,41411,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(248979,41411,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(248980,41411,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(248981,41411,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(248982,41411,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(248983,41411,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(248984,41411,'blocks_0_icon_row_items_1_icon','build-career.svg'),(248985,41411,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(248986,41411,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(248987,41411,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(248988,41411,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(248989,41411,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(248990,41411,'blocks_0_icon_row_items_2_icon','diversify.svg'),(248991,41411,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(248992,41411,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(248993,41411,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(248994,41411,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(248995,41411,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(248996,41411,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(248997,41411,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(248998,41411,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(248999,41411,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(249000,41411,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(249001,41411,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(249002,41411,'blocks_0_icon_row_items','4'),(249003,41411,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(249004,41411,'blocks_1_acfe_flexible_toggle',''),(249005,41411,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(249006,41411,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(249007,41411,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(249008,41411,'blocks_1_options_theme','#ffffff'),(249009,41411,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(249010,41411,'blocks_1_options_reverse','0'),(249011,41411,'_blocks_1_options_reverse','field_61768049bb8ac'),(249012,41411,'blocks_1_options',''),(249013,41411,'_blocks_1_options','field_617682517c334'),(249014,41411,'blocks_1_split_5050_image','41300'),(249015,41411,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(249016,41411,'blocks_1_split_5050_video',''),(249017,41411,'_blocks_1_split_5050_video','field_6239f3160848a'),(249018,41411,'blocks_1_split_5050_content_title',''),(249019,41411,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(249020,41411,'blocks_1_split_5050_content_heading','Course Overview'),(249021,41411,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(249022,41411,'blocks_1_split_5050_content_text','Unlock the secrets of intrinsic biomechanics and elevate your sports massage therapy and coaching. By mastering these concepts, you\'ll become a sought-after expert in the field, gaining unique skills that set you apart in the market.\r\n\r\nStart your journey with this 60-minute course and become an Intrinsic Biomechanics Coach. Join us in promoting active well-being and improving health on a broader scale!\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access this course for free.\r\n\r\n​'),(249023,41411,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(249024,41411,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249025,41411,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(249026,41411,'blocks_1_split_5050_content_actions','1'),(249027,41411,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(249028,41411,'blocks_1_split_5050_content',''),(249029,41411,'_blocks_1_split_5050_content','field_61767afceb8ba'),(249030,41411,'blocks_2_acfe_flexible_toggle',''),(249031,41411,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(249032,41411,'blocks_2_acfe_flexible_layout_title','Timeline'),(249033,41411,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(249034,41411,'blocks_2_options_theme','#ffffff'),(249035,41411,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(249036,41411,'blocks_2_options',''),(249037,41411,'_blocks_2_options','field_6177de53d1195'),(249038,41411,'blocks_2_timeline_content_title',''),(249039,41411,'_blocks_2_timeline_content_title','field_6177de53d1198'),(249040,41411,'blocks_2_timeline_content_heading','How to enrol on this course'),(249041,41411,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(249042,41411,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(249043,41411,'_blocks_2_timeline_content_text','field_6177de53d119a'),(249044,41411,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249045,41411,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(249046,41411,'blocks_2_timeline_content_actions','1'),(249047,41411,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(249048,41411,'blocks_2_timeline_content',''),(249049,41411,'_blocks_2_timeline_content','field_6177de53d1197'),(249050,41411,'blocks_2_timeline_items_0_title','Enrol Now'),(249051,41411,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(249052,41411,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(249053,41411,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(249054,41411,'blocks_2_timeline_items_1_title','Progress to Checkout'),(249055,41411,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(249056,41411,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(249057,41411,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(249058,41411,'blocks_2_timeline_items_2_title','Get Access'),(249059,41411,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(249060,41411,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(249061,41411,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(249062,41411,'blocks_2_timeline_items_3_title','Complete the Course'),(249063,41411,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(249064,41411,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(249065,41411,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(249066,41411,'blocks_2_timeline_items','4'),(249067,41411,'_blocks_2_timeline_items','field_6177de53d119d'),(249068,41411,'blocks_3_acfe_flexible_toggle',''),(249069,41411,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(249070,41411,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(249071,41411,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(249072,41411,'blocks_3_options_theme','#ffffff'),(249073,41411,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(249074,41411,'blocks_3_options_reverse','0'),(249075,41411,'_blocks_3_options_reverse','field_61768049bb8ac'),(249076,41411,'blocks_3_options',''),(249077,41411,'_blocks_3_options','field_617682517c334'),(249078,41411,'blocks_3_split_5050_image',''),(249079,41411,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(249080,41411,'blocks_3_split_5050_video','https://youtu.be/xgRiAj1qEog'),(249081,41411,'_blocks_3_split_5050_video','field_6239f3160848a'),(249082,41411,'blocks_3_split_5050_content_title',''),(249083,41411,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(249084,41411,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(249085,41411,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(249086,41411,'blocks_3_split_5050_content_text','As a sports massage therapist, you already know how movement and muscle health go hand in hand – but what if you could take that understanding to a new level? The Biomechanics Coaching Diploma is crafted to broaden your expertise, giving you advanced tools to assess and improve your clients\' intrinsic biomechanics for more effective treatments and lasting results.\r\n\r\nThis free, 1-hour introductory course is a perfect first step, offering insights that may shift how you approach movement and body mechanics in your practice. By learning to view the body as an integrated system, you’ll gain techniques to address movement restrictions holistically, helping clients not only feel relief but achieve better functional movement and reduce risk of future issues.\r\n\r\nReady to get started? Use code <strong>INTRO</strong> at checkout to access this introductory course for free and take the first step toward deeper expertise.'),(249087,41411,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(249088,41411,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249089,41411,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(249090,41411,'blocks_3_split_5050_content_actions','1'),(249091,41411,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(249092,41411,'blocks_3_split_5050_content',''),(249093,41411,'_blocks_3_split_5050_content','field_61767afceb8ba'),(249094,41411,'blocks_4_acfe_flexible_toggle',''),(249095,41411,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(249096,41411,'blocks_4_acfe_flexible_layout_title','Icons'),(249097,41411,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(249098,41411,'blocks_4_options_theme','#ffffff'),(249099,41411,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(249100,41411,'blocks_4_options_format','grid'),(249101,41411,'_blocks_4_options_format','field_64bfde9a90690'),(249102,41411,'blocks_4_options',''),(249103,41411,'_blocks_4_options','field_64bfdd9b90684'),(249104,41411,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(249105,41411,'_blocks_4_row_content_title','field_64bfdd9b90687'),(249106,41411,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(249107,41411,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(249108,41411,'blocks_4_row_content_text',''),(249109,41411,'_blocks_4_row_content_text','field_64bfdd9b90689'),(249110,41411,'blocks_4_row_content_actions',''),(249111,41411,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(249112,41411,'blocks_4_row_content',''),(249113,41411,'_blocks_4_row_content','field_64bfdd9b90686'),(249114,41411,'blocks_4_icon_row_items_0_icon','build-career.svg'),(249115,41411,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(249116,41411,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(249117,41411,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(249118,41411,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(249119,41411,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(249120,41411,'blocks_4_icon_row_items_1_icon','qualification.svg'),(249121,41411,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(249122,41411,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(249123,41411,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(249124,41411,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(249125,41411,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(249126,41411,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(249127,41411,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(249128,41411,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(249129,41411,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(249130,41411,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(249131,41411,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(249132,41411,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(249133,41411,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(249134,41411,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(249135,41411,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(249136,41411,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(249137,41411,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(249138,41411,'blocks_4_icon_row_items','4'),(249139,41411,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(249140,41411,'blocks_5_acfe_flexible_toggle',''),(249141,41411,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(249142,41411,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(249143,41411,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(249144,41411,'blocks_5_options_theme','#ffffff'),(249145,41411,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(249146,41411,'blocks_5_options_reverse','0'),(249147,41411,'_blocks_5_options_reverse','field_61768049bb8ac'),(249148,41411,'blocks_5_options',''),(249149,41411,'_blocks_5_options','field_617682517c334'),(249150,41411,'blocks_5_split_5050_image','41241'),(249151,41411,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(249152,41411,'blocks_5_split_5050_video',''),(249153,41411,'_blocks_5_split_5050_video','field_6239f3160848a'),(249154,41411,'blocks_5_split_5050_content_title',''),(249155,41411,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(249156,41411,'blocks_5_split_5050_content_heading','What\'s included?'),(249157,41411,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(249158,41411,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(249159,41411,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(249160,41411,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249161,41411,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(249162,41411,'blocks_5_split_5050_content_actions','1'),(249163,41411,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(249164,41411,'blocks_5_split_5050_content',''),(249165,41411,'_blocks_5_split_5050_content','field_61767afceb8ba'),(249166,41411,'blocks_6_acfe_flexible_toggle',''),(249167,41411,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(249168,41411,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(249169,41411,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(249170,41411,'blocks_6_options_alignment','left'),(249171,41411,'_blocks_6_options_alignment','field_61769449f5490'),(249172,41411,'blocks_6_options',''),(249173,41411,'_blocks_6_options','field_617693e1428f0'),(249174,41411,'blocks_6_promo_panel_image','41242'),(249175,41411,'_blocks_6_promo_panel_image','field_617693e1428f3'),(249176,41411,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(249177,41411,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(249178,41411,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(249179,41411,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(249180,41411,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249181,41411,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(249182,41411,'blocks_6_promo_panel_content_actions','1'),(249183,41411,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(249184,41411,'blocks_6_promo_panel_content',''),(249185,41411,'_blocks_6_promo_panel_content','field_617693e1428f4'),(249186,41411,'course_label_label_theme','#0d1f73'),(249187,41411,'_course_label_label_theme','field_61e17bb8f71fb'),(249188,41412,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-53.jpg'),(249189,41412,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-53.jpg\";s:8:\"filesize\";i:1857091;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-53-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81732;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-53-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121681;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-53-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32262;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-53-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66505;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176415;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-53-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40665;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-53-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115338;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178958;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-53-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32145;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-53-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81732;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-53-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121681;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-53-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35868;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-53-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97815;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-53-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150524;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-53-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34721;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-53-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91086;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-53-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137406;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-53-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29777;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-53-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73708;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-53-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109433;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109109\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"61\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(249190,41413,'hide_hero','0'),(249191,41413,'_hide_hero','field_66a2380fcda39'),(249192,41413,'hero_title','Introduction to Biomechanics Education Course'),(249193,41413,'_hero_title','field_617571fe285e8'),(249194,41413,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education course. Use code \'intro\' at checkout to get the course for free!\r\n'),(249195,41413,'_hero_text','field_6175723c285e9'),(249196,41413,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249197,41413,'_hero_actions_0_button','field_61757281285eb'),(249198,41413,'hero_actions','1'),(249199,41413,'_hero_actions','field_61757270285ea'),(249200,41413,'hero_style','default'),(249201,41413,'_hero_style','field_62051d9dc5324'),(249202,41413,'_thumbnail_id','41412'),(249203,41413,'__thumbnail_id','field_617570855ddaf'),(249204,41413,'hero_image_pos_x','right'),(249205,41413,'_hero_image_pos_x','field_62ec3d05390bb'),(249206,41413,'hero_image_pos_y','top'),(249207,41413,'_hero_image_pos_y','field_62ec3d05390bc'),(249208,41413,'hero_image_pos',''),(249209,41413,'_hero_image_pos','field_62ec3d05390ba'),(249210,41413,'fft_hide_from_listings','0'),(249211,41413,'_fft_hide_from_listings','field_61f1320446ab2'),(249212,41413,'fft_page_format','default'),(249213,41413,'_fft_page_format','field_61ae213f1f218'),(249214,41413,'fft_hide_nav','0'),(249215,41413,'_fft_hide_nav','field_635bd5e43527c'),(249216,41413,'fft_hide_header_call_to_action','0'),(249217,41413,'_fft_hide_header_call_to_action','field_635bd6723527d'),(249218,41413,'fft_page_sitemap','0'),(249219,41413,'_fft_page_sitemap','field_61af9b34e8181'),(249220,41413,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(249221,41413,'_blocks','field_6176696113096'),(249222,41413,'course_label_text','Introduction to Biomechanics Education Course'),(249223,41413,'_course_label_text','field_61e17babf71fa'),(249224,41413,'course_label',''),(249225,41413,'_course_label','field_61e12f92749a7'),(249226,41413,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(249227,41413,'_course_description','field_617ac5788e5e1'),(249228,41413,'course_key_info',''),(249229,41413,'_course_key_info','field_617ac6ad8e5e2'),(249230,41413,'course_included',''),(249231,41413,'_course_included','field_617ac6f08e5e4'),(249232,41413,'blocks_0_acfe_flexible_toggle',''),(249233,41413,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(249234,41413,'blocks_0_acfe_flexible_layout_title','Icons'),(249235,41413,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(249236,41413,'blocks_0_options_theme','#ffffff'),(249237,41413,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(249238,41413,'blocks_0_options_format','row'),(249239,41413,'_blocks_0_options_format','field_64bfde9a90690'),(249240,41413,'blocks_0_options',''),(249241,41413,'_blocks_0_options','field_64bfdd9b90684'),(249242,41413,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(249243,41413,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(249244,41413,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(249245,41413,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(249246,41413,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(249247,41413,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(249248,41413,'blocks_0_icon_row_items_1_icon','build-career.svg'),(249249,41413,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(249250,41413,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(249251,41413,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(249252,41413,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(249253,41413,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(249254,41413,'blocks_0_icon_row_items_2_icon','diversify.svg'),(249255,41413,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(249256,41413,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(249257,41413,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(249258,41413,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(249259,41413,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(249260,41413,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(249261,41413,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(249262,41413,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(249263,41413,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(249264,41413,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(249265,41413,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(249266,41413,'blocks_0_icon_row_items','4'),(249267,41413,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(249268,41413,'blocks_1_acfe_flexible_toggle',''),(249269,41413,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(249270,41413,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(249271,41413,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(249272,41413,'blocks_1_options_theme','#ffffff'),(249273,41413,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(249274,41413,'blocks_1_options_reverse','0'),(249275,41413,'_blocks_1_options_reverse','field_61768049bb8ac'),(249276,41413,'blocks_1_options',''),(249277,41413,'_blocks_1_options','field_617682517c334'),(249278,41413,'blocks_1_split_5050_image','41300'),(249279,41413,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(249280,41413,'blocks_1_split_5050_video',''),(249281,41413,'_blocks_1_split_5050_video','field_6239f3160848a'),(249282,41413,'blocks_1_split_5050_content_title',''),(249283,41413,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(249284,41413,'blocks_1_split_5050_content_heading','Course Overview'),(249285,41413,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(249286,41413,'blocks_1_split_5050_content_text','Unlock the secrets of intrinsic biomechanics and elevate your sports massage therapy and coaching. By mastering these concepts, you\'ll become a sought-after expert in the field, gaining unique skills that set you apart in the market.\r\n\r\nStart your journey with this 60-minute course and become an Intrinsic Biomechanics Coach. Join us in promoting active well-being and improving health on a broader scale!\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access this course for free.\r\n\r\n​'),(249287,41413,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(249288,41413,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249289,41413,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(249290,41413,'blocks_1_split_5050_content_actions','1'),(249291,41413,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(249292,41413,'blocks_1_split_5050_content',''),(249293,41413,'_blocks_1_split_5050_content','field_61767afceb8ba'),(249294,41413,'blocks_2_acfe_flexible_toggle',''),(249295,41413,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(249296,41413,'blocks_2_acfe_flexible_layout_title','Timeline'),(249297,41413,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(249298,41413,'blocks_2_options_theme','#ffffff'),(249299,41413,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(249300,41413,'blocks_2_options',''),(249301,41413,'_blocks_2_options','field_6177de53d1195'),(249302,41413,'blocks_2_timeline_content_title',''),(249303,41413,'_blocks_2_timeline_content_title','field_6177de53d1198'),(249304,41413,'blocks_2_timeline_content_heading','How to enrol on this course'),(249305,41413,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(249306,41413,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(249307,41413,'_blocks_2_timeline_content_text','field_6177de53d119a'),(249308,41413,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249309,41413,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(249310,41413,'blocks_2_timeline_content_actions','1'),(249311,41413,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(249312,41413,'blocks_2_timeline_content',''),(249313,41413,'_blocks_2_timeline_content','field_6177de53d1197'),(249314,41413,'blocks_2_timeline_items_0_title','Enrol Now'),(249315,41413,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(249316,41413,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(249317,41413,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(249318,41413,'blocks_2_timeline_items_1_title','Progress to Checkout'),(249319,41413,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(249320,41413,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(249321,41413,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(249322,41413,'blocks_2_timeline_items_2_title','Get Access'),(249323,41413,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(249324,41413,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(249325,41413,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(249326,41413,'blocks_2_timeline_items_3_title','Complete the Course'),(249327,41413,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(249328,41413,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(249329,41413,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(249330,41413,'blocks_2_timeline_items','4'),(249331,41413,'_blocks_2_timeline_items','field_6177de53d119d'),(249332,41413,'blocks_3_acfe_flexible_toggle',''),(249333,41413,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(249334,41413,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(249335,41413,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(249336,41413,'blocks_3_options_theme','#ffffff'),(249337,41413,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(249338,41413,'blocks_3_options_reverse','0'),(249339,41413,'_blocks_3_options_reverse','field_61768049bb8ac'),(249340,41413,'blocks_3_options',''),(249341,41413,'_blocks_3_options','field_617682517c334'),(249342,41413,'blocks_3_split_5050_image',''),(249343,41413,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(249344,41413,'blocks_3_split_5050_video','https://youtu.be/xgRiAj1qEog'),(249345,41413,'_blocks_3_split_5050_video','field_6239f3160848a'),(249346,41413,'blocks_3_split_5050_content_title',''),(249347,41413,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(249348,41413,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(249349,41413,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(249350,41413,'blocks_3_split_5050_content_text','As a sports massage therapist, you already know how movement and muscle health go hand in hand – but what if you could take that understanding to a new level? The Biomechanics Coaching Diploma is crafted to broaden your expertise, giving you advanced tools to assess and improve your clients\' intrinsic biomechanics for more effective treatments and lasting results.\r\n\r\nThis free, 1-hour introductory course is a perfect first step, offering insights that may shift how you approach movement and body mechanics in your practice. By learning to view the body as an integrated system, you’ll gain techniques to address movement restrictions holistically, helping clients not only feel relief but achieve better functional movement and reduce risk of future issues.\r\n\r\nReady to get started? Use code <strong>INTRO</strong> at checkout to access this introductory course for free and take the first step toward deeper expertise.'),(249351,41413,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(249352,41413,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249353,41413,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(249354,41413,'blocks_3_split_5050_content_actions','1'),(249355,41413,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(249356,41413,'blocks_3_split_5050_content',''),(249357,41413,'_blocks_3_split_5050_content','field_61767afceb8ba'),(249358,41413,'blocks_4_acfe_flexible_toggle',''),(249359,41413,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(249360,41413,'blocks_4_acfe_flexible_layout_title','Icons'),(249361,41413,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(249362,41413,'blocks_4_options_theme','#ffffff'),(249363,41413,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(249364,41413,'blocks_4_options_format','grid'),(249365,41413,'_blocks_4_options_format','field_64bfde9a90690'),(249366,41413,'blocks_4_options',''),(249367,41413,'_blocks_4_options','field_64bfdd9b90684'),(249368,41413,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(249369,41413,'_blocks_4_row_content_title','field_64bfdd9b90687'),(249370,41413,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(249371,41413,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(249372,41413,'blocks_4_row_content_text',''),(249373,41413,'_blocks_4_row_content_text','field_64bfdd9b90689'),(249374,41413,'blocks_4_row_content_actions',''),(249375,41413,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(249376,41413,'blocks_4_row_content',''),(249377,41413,'_blocks_4_row_content','field_64bfdd9b90686'),(249378,41413,'blocks_4_icon_row_items_0_icon','build-career.svg'),(249379,41413,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(249380,41413,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(249381,41413,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(249382,41413,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(249383,41413,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(249384,41413,'blocks_4_icon_row_items_1_icon','qualification.svg'),(249385,41413,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(249386,41413,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(249387,41413,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(249388,41413,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(249389,41413,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(249390,41413,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(249391,41413,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(249392,41413,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(249393,41413,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(249394,41413,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(249395,41413,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(249396,41413,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(249397,41413,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(249398,41413,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(249399,41413,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(249400,41413,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(249401,41413,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(249402,41413,'blocks_4_icon_row_items','4'),(249403,41413,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(249404,41413,'blocks_5_acfe_flexible_toggle',''),(249405,41413,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(249406,41413,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(249407,41413,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(249408,41413,'blocks_5_options_theme','#ffffff'),(249409,41413,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(249410,41413,'blocks_5_options_reverse','0'),(249411,41413,'_blocks_5_options_reverse','field_61768049bb8ac'),(249412,41413,'blocks_5_options',''),(249413,41413,'_blocks_5_options','field_617682517c334'),(249414,41413,'blocks_5_split_5050_image','41241'),(249415,41413,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(249416,41413,'blocks_5_split_5050_video',''),(249417,41413,'_blocks_5_split_5050_video','field_6239f3160848a'),(249418,41413,'blocks_5_split_5050_content_title',''),(249419,41413,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(249420,41413,'blocks_5_split_5050_content_heading','What\'s included?'),(249421,41413,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(249422,41413,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(249423,41413,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(249424,41413,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249425,41413,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(249426,41413,'blocks_5_split_5050_content_actions','1'),(249427,41413,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(249428,41413,'blocks_5_split_5050_content',''),(249429,41413,'_blocks_5_split_5050_content','field_61767afceb8ba'),(249430,41413,'blocks_6_acfe_flexible_toggle',''),(249431,41413,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(249432,41413,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(249433,41413,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(249434,41413,'blocks_6_options_alignment','left'),(249435,41413,'_blocks_6_options_alignment','field_61769449f5490'),(249436,41413,'blocks_6_options',''),(249437,41413,'_blocks_6_options','field_617693e1428f0'),(249438,41413,'blocks_6_promo_panel_image','41242'),(249439,41413,'_blocks_6_promo_panel_image','field_617693e1428f3'),(249440,41413,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(249441,41413,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(249442,41413,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(249443,41413,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(249444,41413,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249445,41413,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(249446,41413,'blocks_6_promo_panel_content_actions','1'),(249447,41413,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(249448,41413,'blocks_6_promo_panel_content',''),(249449,41413,'_blocks_6_promo_panel_content','field_617693e1428f4'),(249450,41413,'course_label_label_theme','#0d1f73'),(249451,41413,'_course_label_label_theme','field_61e17bb8f71fb'),(249828,41409,'_edit_lock','1731503648:1'),(249829,41408,'_edit_lock','1731061791:1'),(249830,41407,'_edit_lock','1730909022:1'),(249831,41390,'_edit_lock','1730909029:1'),(249832,41393,'_edit_lock','1731060752:1'),(249833,41367,'_edit_lock','1730909049:1'),(249834,41364,'_edit_lock','1731503699:1'),(249835,41391,'_edit_lock','1731503681:1'),(249836,41368,'_edit_lock','1730909099:1'),(249837,41366,'_edit_lock','1730909105:1'),(249838,41357,'_edit_lock','1731503715:1'),(249839,41362,'_edit_lock','1731061457:1'),(249840,41351,'_edit_lock','1731061473:1'),(249841,41347,'_edit_lock','1731503726:1'),(249842,41344,'_edit_lock','1730909490:1'),(249843,41341,'_edit_lock','1730909521:1'),(249844,41287,'_edit_lock','1730909537:1'),(249845,41288,'_edit_lock','1730909543:1'),(249846,41274,'_edit_lock','1730909551:1'),(249847,41416,'_wp_attached_file','2024/11/AFC_POSITIVE_RGB.jpg'),(249848,41416,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:598;s:6:\"height\";i:908;s:4:\"file\";s:28:\"2024/11/AFC_POSITIVE_RGB.jpg\";s:8:\"filesize\";i:121149;s:5:\"sizes\";a:14:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-400x607.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:607;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38072;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26199;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-598x900.jpg\";s:5:\"width\";i:598;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70594;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15460;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-598x600.jpg\";s:5:\"width\";i:598;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49150;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-598x800.jpg\";s:5:\"width\";i:598;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66713;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24373;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-598x900.jpg\";s:5:\"width\";i:598;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70594;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16289;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-598x675.jpg\";s:5:\"width\";i:598;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55087;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-598x900.jpg\";s:5:\"width\";i:598;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70594;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12523;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-598x506.jpg\";s:5:\"width\";i:598;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38498;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:28:\"AFC_POSITIVE_RGB-598x675.jpg\";s:5:\"width\";i:598;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55087;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(249849,41421,'hide_hero','0'),(249850,41421,'_hide_hero','field_66a2380fcda39'),(249851,41421,'hero_title','Introduction to Biomechanics Education Course'),(249852,41421,'_hero_title','field_617571fe285e8'),(249853,41421,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education course. Use code \'intro\' at checkout to get the course for free!\r\n'),(249854,41421,'_hero_text','field_6175723c285e9'),(249855,41421,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249856,41421,'_hero_actions_0_button','field_61757281285eb'),(249857,41421,'hero_actions','1'),(249858,41421,'_hero_actions','field_61757270285ea'),(249859,41421,'hero_style','default'),(249860,41421,'_hero_style','field_62051d9dc5324'),(249861,41421,'_thumbnail_id','41412'),(249862,41421,'__thumbnail_id','field_617570855ddaf'),(249863,41421,'hero_image_pos_x','right'),(249864,41421,'_hero_image_pos_x','field_62ec3d05390bb'),(249865,41421,'hero_image_pos_y','top'),(249866,41421,'_hero_image_pos_y','field_62ec3d05390bc'),(249867,41421,'hero_image_pos',''),(249868,41421,'_hero_image_pos','field_62ec3d05390ba'),(249869,41421,'fft_hide_from_listings','0'),(249870,41421,'_fft_hide_from_listings','field_61f1320446ab2'),(249871,41421,'fft_page_format','default'),(249872,41421,'_fft_page_format','field_61ae213f1f218'),(249873,41421,'fft_hide_nav','0'),(249874,41421,'_fft_hide_nav','field_635bd5e43527c'),(249875,41421,'fft_hide_header_call_to_action','0'),(249876,41421,'_fft_hide_header_call_to_action','field_635bd6723527d'),(249877,41421,'fft_page_sitemap','0'),(249878,41421,'_fft_page_sitemap','field_61af9b34e8181'),(249879,41421,'blocks_0_acfe_flexible_toggle',''),(249880,41421,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(249881,41421,'blocks_0_acfe_flexible_layout_title','Icons'),(249882,41421,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(249883,41421,'blocks_0_options_theme','#ffffff'),(249884,41421,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(249885,41421,'blocks_0_options_format','row'),(249886,41421,'_blocks_0_options_format','field_64bfde9a90690'),(249887,41421,'blocks_0_options',''),(249888,41421,'_blocks_0_options','field_64bfdd9b90684'),(249889,41421,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(249890,41421,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(249891,41421,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(249892,41421,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(249893,41421,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(249894,41421,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(249895,41421,'blocks_0_icon_row_items_1_icon','build-career.svg'),(249896,41421,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(249897,41421,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(249898,41421,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(249899,41421,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(249900,41421,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(249901,41421,'blocks_0_icon_row_items_2_icon','diversify.svg'),(249902,41421,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(249903,41421,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(249904,41421,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(249905,41421,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(249906,41421,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(249907,41421,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(249908,41421,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(249909,41421,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(249910,41421,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(249911,41421,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(249912,41421,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(249913,41421,'blocks_0_icon_row_items','4'),(249914,41421,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(249915,41421,'blocks_1_acfe_flexible_toggle',''),(249916,41421,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(249917,41421,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(249918,41421,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(249919,41421,'blocks_1_options_theme','#ffffff'),(249920,41421,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(249921,41421,'blocks_1_options_reverse','0'),(249922,41421,'_blocks_1_options_reverse','field_61768049bb8ac'),(249923,41421,'blocks_1_options',''),(249924,41421,'_blocks_1_options','field_617682517c334'),(249925,41421,'blocks_1_split_5050_image','41300'),(249926,41421,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(249927,41421,'blocks_1_split_5050_video',''),(249928,41421,'_blocks_1_split_5050_video','field_6239f3160848a'),(249929,41421,'blocks_1_split_5050_content_title',''),(249930,41421,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(249931,41421,'blocks_1_split_5050_content_heading','Course Overview'),(249932,41421,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(249933,41421,'blocks_1_split_5050_content_text','Unlock the secrets of intrinsic biomechanics and elevate your sports massage therapy and coaching. By mastering these concepts, you\'ll become a sought-after expert in the field, gaining unique skills that set you apart in the market.\r\n\r\nStart your journey with this 60-minute course and become an Intrinsic Biomechanics Coach. Join us in promoting active well-being and improving health on a broader scale!\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access this course for free.\r\n\r\n​'),(249934,41421,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(249935,41421,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249936,41421,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(249937,41421,'blocks_1_split_5050_content_actions','1'),(249938,41421,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(249939,41421,'blocks_1_split_5050_content',''),(249940,41421,'_blocks_1_split_5050_content','field_61767afceb8ba'),(249941,41421,'blocks_2_acfe_flexible_toggle',''),(249942,41421,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(249943,41421,'blocks_2_acfe_flexible_layout_title','Timeline'),(249944,41421,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(249945,41421,'blocks_2_options_theme','#ffffff'),(249946,41421,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(249947,41421,'blocks_2_options',''),(249948,41421,'_blocks_2_options','field_6177de53d1195'),(249949,41421,'blocks_2_timeline_content_title',''),(249950,41421,'_blocks_2_timeline_content_title','field_6177de53d1198'),(249951,41421,'blocks_2_timeline_content_heading','How to enrol on this course'),(249952,41421,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(249953,41421,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(249954,41421,'_blocks_2_timeline_content_text','field_6177de53d119a'),(249955,41421,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(249956,41421,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(249957,41421,'blocks_2_timeline_content_actions','1'),(249958,41421,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(249959,41421,'blocks_2_timeline_content',''),(249960,41421,'_blocks_2_timeline_content','field_6177de53d1197'),(249961,41421,'blocks_2_timeline_items_0_title','Enrol Now'),(249962,41421,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(249963,41421,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(249964,41421,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(249965,41421,'blocks_2_timeline_items_1_title','Progress to Checkout'),(249966,41421,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(249967,41421,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(249968,41421,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(249969,41421,'blocks_2_timeline_items_2_title','Get Access'),(249970,41421,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(249971,41421,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(249972,41421,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(249973,41421,'blocks_2_timeline_items_3_title','Complete the Course'),(249974,41421,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(249975,41421,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(249976,41421,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(249977,41421,'blocks_2_timeline_items','4'),(249978,41421,'_blocks_2_timeline_items','field_6177de53d119d'),(249979,41421,'blocks_3_acfe_flexible_toggle',''),(249980,41421,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(249981,41421,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(249982,41421,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(249983,41421,'blocks_3_options_theme','#ffffff'),(249984,41421,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(249985,41421,'blocks_3_options_reverse','0'),(249986,41421,'_blocks_3_options_reverse','field_61768049bb8ac'),(249987,41421,'blocks_3_options',''),(249988,41421,'_blocks_3_options','field_617682517c334'),(249989,41421,'blocks_3_split_5050_image',''),(249990,41421,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(249991,41421,'blocks_3_split_5050_video','https://youtu.be/xgRiAj1qEog'),(249992,41421,'_blocks_3_split_5050_video','field_6239f3160848a'),(249993,41421,'blocks_3_split_5050_content_title',''),(249994,41421,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(249995,41421,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(249996,41421,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(249997,41421,'blocks_3_split_5050_content_text','As a sports massage therapist, you already know how movement and muscle health go hand in hand – but what if you could take that understanding to a new level? The Biomechanics Coaching Diploma is crafted to broaden your expertise, giving you advanced tools to assess and improve your clients\' intrinsic biomechanics for more effective treatments and lasting results.\r\n\r\nThis free, 1-hour introductory course is a perfect first step, offering insights that may shift how you approach movement and body mechanics in your practice. By learning to view the body as an integrated system, you’ll gain techniques to address movement restrictions holistically, helping clients not only feel relief but achieve better functional movement and reduce risk of future issues.\r\n\r\nReady to get started? Use code <strong>INTRO</strong> at checkout to access this introductory course for free and take the first step toward deeper expertise.'),(249998,41421,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(249999,41421,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(250000,41421,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(250001,41421,'blocks_3_split_5050_content_actions','1'),(250002,41421,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(250003,41421,'blocks_3_split_5050_content',''),(250004,41421,'_blocks_3_split_5050_content','field_61767afceb8ba'),(250005,41421,'blocks_4_acfe_flexible_toggle',''),(250006,41421,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(250007,41421,'blocks_4_acfe_flexible_layout_title','Icons'),(250008,41421,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(250009,41421,'blocks_4_options_theme','#ffffff'),(250010,41421,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(250011,41421,'blocks_4_options_format','grid'),(250012,41421,'_blocks_4_options_format','field_64bfde9a90690'),(250013,41421,'blocks_4_options',''),(250014,41421,'_blocks_4_options','field_64bfdd9b90684'),(250015,41421,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(250016,41421,'_blocks_4_row_content_title','field_64bfdd9b90687'),(250017,41421,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(250018,41421,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(250019,41421,'blocks_4_row_content_text',''),(250020,41421,'_blocks_4_row_content_text','field_64bfdd9b90689'),(250021,41421,'blocks_4_row_content_actions',''),(250022,41421,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(250023,41421,'blocks_4_row_content',''),(250024,41421,'_blocks_4_row_content','field_64bfdd9b90686'),(250025,41421,'blocks_4_icon_row_items_0_icon','build-career.svg'),(250026,41421,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(250027,41421,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(250028,41421,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(250029,41421,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(250030,41421,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(250031,41421,'blocks_4_icon_row_items_1_icon','qualification.svg'),(250032,41421,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(250033,41421,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(250034,41421,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(250035,41421,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(250036,41421,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(250037,41421,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(250038,41421,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(250039,41421,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(250040,41421,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(250041,41421,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(250042,41421,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(250043,41421,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(250044,41421,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(250045,41421,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(250046,41421,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(250047,41421,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(250048,41421,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(250049,41421,'blocks_4_icon_row_items','4'),(250050,41421,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(250051,41421,'blocks_5_acfe_flexible_toggle',''),(250052,41421,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(250053,41421,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(250054,41421,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(250055,41421,'blocks_5_options_theme','#ffffff'),(250056,41421,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(250057,41421,'blocks_5_options_reverse','0'),(250058,41421,'_blocks_5_options_reverse','field_61768049bb8ac'),(250059,41421,'blocks_5_options',''),(250060,41421,'_blocks_5_options','field_617682517c334'),(250061,41421,'blocks_5_split_5050_image','41241'),(250062,41421,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(250063,41421,'blocks_5_split_5050_video',''),(250064,41421,'_blocks_5_split_5050_video','field_6239f3160848a'),(250065,41421,'blocks_5_split_5050_content_title',''),(250066,41421,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(250067,41421,'blocks_5_split_5050_content_heading','What\'s included?'),(250068,41421,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(250069,41421,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(250070,41421,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(250071,41421,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(250072,41421,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(250073,41421,'blocks_5_split_5050_content_actions','1'),(250074,41421,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(250075,41421,'blocks_5_split_5050_content',''),(250076,41421,'_blocks_5_split_5050_content','field_61767afceb8ba'),(250077,41421,'blocks_6_acfe_flexible_toggle',''),(250078,41421,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(250079,41421,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(250080,41421,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(250081,41421,'blocks_6_options_alignment','left'),(250082,41421,'_blocks_6_options_alignment','field_61769449f5490'),(250083,41421,'blocks_6_options',''),(250084,41421,'_blocks_6_options','field_617693e1428f0'),(250085,41421,'blocks_6_promo_panel_image','41242'),(250086,41421,'_blocks_6_promo_panel_image','field_617693e1428f3'),(250087,41421,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(250088,41421,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(250089,41421,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(250090,41421,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(250091,41421,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(250092,41421,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(250093,41421,'blocks_6_promo_panel_content_actions','1'),(250094,41421,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(250095,41421,'blocks_6_promo_panel_content',''),(250096,41421,'_blocks_6_promo_panel_content','field_617693e1428f4'),(250097,41421,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(250098,41421,'_blocks','field_6176696113096'),(250099,41421,'course_label_text','Introduction to Biomechanics Education Course'),(250100,41421,'_course_label_text','field_61e17babf71fa'),(250101,41421,'course_label_label_theme','#0d1f73'),(250102,41421,'_course_label_label_theme','field_61e17bb8f71fb'),(250103,41421,'course_label',''),(250104,41421,'_course_label','field_61e12f92749a7'),(250105,41421,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(250106,41421,'_course_description','field_617ac5788e5e1'),(250107,41421,'course_key_info',''),(250108,41421,'_course_key_info','field_617ac6ad8e5e2'),(250109,41421,'course_included',''),(250110,41421,'_course_included','field_617ac6f08e5e4'),(250113,41425,'_fft_id','215'),(250114,41425,'_fft_catalogue_id','914abd45-c14d-ef11-a316-00224841342c'),(250115,41425,'_fft_code','L3SM v3.0'),(250116,41425,'_fft_name','Level 3 Sports Massage'),(250117,41425,'_fft_description',NULL),(250118,41425,'_fft_metadata_school','biomechanics'),(250119,41425,'_fft_metadata_flex_id','538'),(250120,41425,'_fft_metadata_type_id','100000002'),(250121,41425,'_fft_metadata_flex_type','collection'),(250122,41425,'_fft_metadata_type_label','Diploma'),(250123,41425,'_fft_metadata_course_type_id',NULL),(250124,41425,'_fft_metadata_course_type_label','Online Learning'),(250125,41425,'_fft_metadata_productstructure_id','3'),(250126,41425,'_fft_metadata_productstructure_label','Product Bundle'),(250127,41425,'_fft_taxable','1'),(250128,41425,'_fft_show','1'),(250129,41425,'_fft_created_at','1731399823'),(250130,41425,'_fft_updated_at','1743078587'),(250131,41425,'_fft_plan',NULL),(250132,41425,'_fft_price_id','218'),(250133,41425,'_fft_price_value','0'),(250134,41425,'_fft_price_begins_at',NULL),(250135,41425,'_fft_price_expires_at',NULL),(250136,41425,'_fft_price_value_inc_tax','0'),(250137,41425,'_fft_error',''),(250138,41425,'_fft_saved_at','1751618583'),(250139,41425,'_edit_lock','1741944650:18'),(250140,41425,'_edit_last','18'),(250141,41425,'hide_hero','0'),(250142,41425,'_hide_hero','field_66a2380fcda39'),(250143,41425,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(250144,41425,'_hero_title','field_617571fe285e8'),(250145,41425,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(250146,41425,'_hero_text','field_6175723c285e9'),(250147,41425,'hero_actions','1'),(250148,41425,'_hero_actions','field_61757270285ea'),(250149,41425,'hero_style','default'),(250150,41425,'_hero_style','field_62051d9dc5324'),(250151,41425,'_thumbnail_id','41428'),(250152,41425,'__thumbnail_id','field_617570855ddaf'),(250153,41425,'hero_image_pos_x','right'),(250154,41425,'_hero_image_pos_x','field_62ec3d05390bb'),(250155,41425,'hero_image_pos_y','top'),(250156,41425,'_hero_image_pos_y','field_62ec3d05390bc'),(250157,41425,'hero_image_pos',''),(250158,41425,'_hero_image_pos','field_62ec3d05390ba'),(250159,41425,'fft_hide_from_listings','0'),(250160,41425,'_fft_hide_from_listings','field_61f1320446ab2'),(250161,41425,'fft_page_format','default'),(250162,41425,'_fft_page_format','field_61ae213f1f218'),(250163,41425,'fft_hide_nav','0'),(250164,41425,'_fft_hide_nav','field_635bd5e43527c'),(250165,41425,'fft_hide_header_call_to_action','0'),(250166,41425,'_fft_hide_header_call_to_action','field_635bd6723527d'),(250167,41425,'fft_page_sitemap','0'),(250168,41425,'_fft_page_sitemap','field_61af9b34e8181'),(250169,41425,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(250170,41425,'_blocks','field_6176696113096'),(250171,41425,'course_label_text',''),(250172,41425,'_course_label_text','field_61e17babf71fa'),(250173,41425,'course_label',''),(250174,41425,'_course_label','field_61e12f92749a7'),(250175,41425,'course_description',''),(250176,41425,'_course_description','field_617ac5788e5e1'),(250177,41425,'course_key_info',''),(250178,41425,'_course_key_info','field_617ac6ad8e5e2'),(250179,41425,'course_included',''),(250180,41425,'_course_included','field_617ac6f08e5e4'),(250181,41425,'_yoast_wpseo_primary_course-cat','406'),(250182,41425,'_yoast_wpseo_estimated-reading-time-minutes','1'),(250183,41425,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-41425-4\";s:6:\"target\";s:0:\"\";}'),(250184,41425,'_hero_actions_0_button','field_61757281285eb'),(250185,41425,'blocks_0_acfe_flexible_toggle',''),(250186,41425,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(250187,41425,'blocks_0_acfe_flexible_layout_title','Icons'),(250188,41425,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(250189,41425,'blocks_0_options_theme','#b61234'),(250190,41425,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(250191,41425,'blocks_0_options_format','row'),(250192,41425,'_blocks_0_options_format','field_64bfde9a90690'),(250193,41425,'blocks_0_options',''),(250194,41425,'_blocks_0_options','field_64bfdd9b90684'),(250195,41425,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(250196,41425,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(250197,41425,'blocks_0_icon_row_items_0_label','Accreditation'),(250198,41425,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(250199,41425,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(250200,41425,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(250201,41425,'blocks_0_icon_row_items_1_icon','finance.svg'),(250202,41425,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(250203,41425,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(250204,41425,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(250205,41425,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(250206,41425,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(250207,41425,'blocks_0_icon_row_items_2_icon','progression.svg'),(250208,41425,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(250209,41425,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(250210,41425,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(250211,41425,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(250212,41425,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(250213,41425,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(250214,41425,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(250215,41425,'blocks_0_icon_row_items_3_label','Qualification'),(250216,41425,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(250217,41425,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(250218,41425,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(250219,41425,'blocks_0_icon_row_items','4'),(250220,41425,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(250221,41425,'blocks_5_acfe_flexible_toggle','1'),(250222,41425,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(250223,41425,'blocks_5_acfe_flexible_layout_title','Tabs'),(250224,41425,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(250225,41425,'blocks_5_options_theme','#ffffff'),(250226,41425,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(250227,41425,'blocks_5_options',''),(250228,41425,'_blocks_5_options','field_6177cfcd8140f'),(250229,41425,'blocks_5_tabs_0_tab_label','Entry requirements'),(250230,41425,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(250231,41425,'blocks_5_tabs_0_tab_content_title',''),(250232,41425,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(250233,41425,'blocks_5_tabs_0_tab_content_heading',''),(250234,41425,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(250235,41425,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(250236,41425,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(250237,41425,'blocks_5_tabs_0_tab_content_actions',''),(250238,41425,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(250239,41425,'blocks_5_tabs_0_tab_content',''),(250240,41425,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(250241,41425,'blocks_5_tabs_0_tab_image',''),(250242,41425,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(250243,41425,'blocks_5_tabs_1_tab_label','Learning format'),(250244,41425,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(250245,41425,'blocks_5_tabs_1_tab_content_title',''),(250246,41425,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(250247,41425,'blocks_5_tabs_1_tab_content_heading',''),(250248,41425,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(250249,41425,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(250250,41425,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(250251,41425,'blocks_5_tabs_1_tab_content_actions',''),(250252,41425,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(250253,41425,'blocks_5_tabs_1_tab_content',''),(250254,41425,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(250255,41425,'blocks_5_tabs_1_tab_image',''),(250256,41425,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(250257,41425,'blocks_5_tabs_2_tab_label','Qualifications included'),(250258,41425,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(250259,41425,'blocks_5_tabs_2_tab_content_title',''),(250260,41425,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(250261,41425,'blocks_5_tabs_2_tab_content_heading',''),(250262,41425,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(250263,41425,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(250264,41425,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(250265,41425,'blocks_5_tabs_2_tab_content_actions',''),(250266,41425,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(250267,41425,'blocks_5_tabs_2_tab_content',''),(250268,41425,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(250269,41425,'blocks_5_tabs_2_tab_image',''),(250270,41425,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(250271,41425,'blocks_5_tabs','3'),(250272,41425,'_blocks_5_tabs','field_6177cff281419'),(250273,41425,'blocks_4_acfe_flexible_toggle',''),(250274,41425,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(250275,41425,'blocks_4_acfe_flexible_layout_title','Template'),(250276,41425,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(250277,41425,'blocks_4_template','39207'),(250278,41425,'_blocks_4_template','field_617bdd570fe01'),(250279,41425,'blocks_6_acfe_flexible_toggle',''),(250280,41425,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(250281,41425,'blocks_6_acfe_flexible_layout_title','Icons'),(250282,41425,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(250283,41425,'blocks_6_options_theme','#f5f5f5'),(250284,41425,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(250285,41425,'blocks_6_options_format','stacked'),(250286,41425,'_blocks_6_options_format','field_64bfde9a90690'),(250287,41425,'blocks_6_options',''),(250288,41425,'_blocks_6_options','field_64bfdd9b90684'),(250289,41425,'blocks_6_row_content_title','Options available to pay for your course'),(250290,41425,'_blocks_6_row_content_title','field_64bfdd9b90687'),(250291,41425,'blocks_6_row_content_heading','Fees & Funding Options '),(250292,41425,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(250293,41425,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(250294,41425,'_blocks_6_row_content_text','field_64bfdd9b90689'),(250295,41425,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(250296,41425,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(250297,41425,'blocks_6_row_content_actions','1'),(250298,41425,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(250299,41425,'blocks_6_row_content',''),(250300,41425,'_blocks_6_row_content','field_64bfdd9b90686'),(250301,41425,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(250302,41425,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(250303,41425,'blocks_6_icon_row_items_0_label','Pay in full'),(250304,41425,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(250305,41425,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(250306,41425,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(250307,41425,'blocks_6_icon_row_items_1_icon','finance.svg'),(250308,41425,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(250309,41425,'blocks_6_icon_row_items_1_label','0% finance'),(250310,41425,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(250311,41425,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(250312,41425,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(250313,41425,'blocks_6_icon_row_items','3'),(250314,41425,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(250315,41425,'blocks_7_acfe_flexible_toggle',''),(250316,41425,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(250317,41425,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(250318,41425,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(250319,41425,'blocks_7_options_theme','#ffffff'),(250320,41425,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(250321,41425,'blocks_7_options_reverse','0'),(250322,41425,'_blocks_7_options_reverse','field_61768049bb8ac'),(250323,41425,'blocks_7_options',''),(250324,41425,'_blocks_7_options','field_617682517c334'),(250325,41425,'blocks_7_split_5050_image','41333'),(250326,41425,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(250327,41425,'blocks_7_split_5050_video',''),(250328,41425,'_blocks_7_split_5050_video','field_6239f3160848a'),(250329,41425,'blocks_7_split_5050_content_title',''),(250330,41425,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(250331,41425,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(250332,41425,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(250333,41425,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(250334,41425,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(250335,41425,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(250336,41425,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(250337,41425,'blocks_7_split_5050_content_actions','1'),(250338,41425,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(250339,41425,'blocks_7_split_5050_content',''),(250340,41425,'_blocks_7_split_5050_content','field_61767afceb8ba'),(250341,41425,'blocks_8_acfe_flexible_toggle',''),(250342,41425,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(250343,41425,'blocks_8_acfe_flexible_layout_title','Icons'),(250344,41425,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(250345,41425,'blocks_8_options_theme','#f5f5f5'),(250346,41425,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(250347,41425,'blocks_8_options_format','row'),(250348,41425,'_blocks_8_options_format','field_64bfde9a90690'),(250349,41425,'blocks_8_options',''),(250350,41425,'_blocks_8_options','field_64bfdd9b90684'),(250351,41425,'blocks_8_icon_row_items_0_icon','qualification.svg'),(250352,41425,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(250353,41425,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(250354,41425,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(250355,41425,'blocks_8_icon_row_items_0_text',''),(250356,41425,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(250357,41425,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(250358,41425,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(250359,41425,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(250360,41425,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(250361,41425,'blocks_8_icon_row_items_1_text',''),(250362,41425,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(250363,41425,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(250364,41425,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(250365,41425,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(250366,41425,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(250367,41425,'blocks_8_icon_row_items_2_text',''),(250368,41425,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(250369,41425,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(250370,41425,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(250371,41425,'blocks_8_icon_row_items_3_label','Flexible funding options'),(250372,41425,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(250373,41425,'blocks_8_icon_row_items_3_text',''),(250374,41425,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(250375,41425,'blocks_8_icon_row_items','4'),(250376,41425,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(250377,41425,'blocks_9_acfe_flexible_toggle',''),(250378,41425,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(250379,41425,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(250380,41425,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(250381,41425,'blocks_9_options_theme','#ffffff'),(250382,41425,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(250383,41425,'blocks_9_options_reverse','1'),(250384,41425,'_blocks_9_options_reverse','field_61768049bb8ac'),(250385,41425,'blocks_9_options',''),(250386,41425,'_blocks_9_options','field_617682517c334'),(250387,41425,'blocks_9_split_5050_image','39224'),(250388,41425,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(250389,41425,'blocks_9_split_5050_video',''),(250390,41425,'_blocks_9_split_5050_video','field_6239f3160848a'),(250391,41425,'blocks_9_split_5050_content_title','Locations'),(250392,41425,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(250393,41425,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(250394,41425,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(250395,41425,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(250396,41425,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(250397,41425,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(250398,41425,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(250399,41425,'blocks_9_split_5050_content_actions','1'),(250400,41425,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(250401,41425,'blocks_9_split_5050_content',''),(250402,41425,'_blocks_9_split_5050_content','field_61767afceb8ba'),(250403,41425,'blocks_1_acfe_flexible_toggle',''),(250404,41425,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(250405,41425,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(250406,41425,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(250407,41425,'blocks_1_options_theme','#ffffff'),(250408,41425,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(250409,41425,'blocks_1_options_reverse','0'),(250410,41425,'_blocks_1_options_reverse','field_61768049bb8ac'),(250411,41425,'blocks_1_options',''),(250412,41425,'_blocks_1_options','field_617682517c334'),(250413,41425,'blocks_1_split_5050_image','41430'),(250414,41425,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(250415,41425,'blocks_1_split_5050_video',''),(250416,41425,'_blocks_1_split_5050_video','field_6239f3160848a'),(250417,41425,'blocks_1_split_5050_content_title',''),(250418,41425,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(250419,41425,'blocks_1_split_5050_content_heading','Course Overview'),(250420,41425,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(250421,41425,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(250422,41425,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(250423,41425,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(250424,41425,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(250425,41425,'blocks_1_split_5050_content_actions','1'),(250426,41425,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(250427,41425,'blocks_1_split_5050_content',''),(250428,41425,'_blocks_1_split_5050_content','field_61767afceb8ba'),(250429,41425,'blocks_2_acfe_flexible_toggle',''),(250430,41425,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(250431,41425,'blocks_2_acfe_flexible_layout_title','Form'),(250432,41425,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(250433,41425,'blocks_2_row_content_format','standard'),(250434,41425,'_blocks_2_row_content_format','field_6481ead962881'),(250435,41425,'blocks_2_row_content_title',''),(250436,41425,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(250437,41425,'blocks_2_row_content_heading','Enquire Today'),(250438,41425,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(250439,41425,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(250440,41425,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(250441,41425,'blocks_2_row_content_actions',''),(250442,41425,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(250443,41425,'blocks_2_row_content',''),(250444,41425,'_blocks_2_row_content','field_61a0f5f5b3db0'),(250445,41425,'blocks_2_row_form','40394'),(250446,41425,'_blocks_2_row_form','field_61a4ff2c0b08e'),(250447,41425,'blocks_2_row_form_button_label',''),(250448,41425,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(250449,41425,'blocks_3_acfe_flexible_toggle',''),(250450,41425,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(250451,41425,'blocks_3_acfe_flexible_layout_title','Video'),(250452,41425,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(250453,41425,'blocks_3_size','large'),(250454,41425,'_blocks_3_size','field_6487038f297c1'),(250455,41425,'blocks_3_row_content_title',''),(250456,41425,'_blocks_3_row_content_title','field_64870132a865d'),(250457,41425,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(250458,41425,'_blocks_3_row_content_heading','field_64870142a865e'),(250459,41425,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(250460,41425,'_blocks_3_row_content_text','field_64870148a865f'),(250461,41425,'blocks_3_row_content',''),(250462,41425,'_blocks_3_row_content','field_6487008ba865c'),(250463,41425,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(250464,41425,'_blocks_3_video_src','field_6193c4a98ec07'),(250465,41425,'blocks_3_video_thumbnail',''),(250466,41425,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(250467,41425,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(250468,41425,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(250469,41425,'blocks_6_icon_row_items_2_label','Deposit & balance'),(250470,41425,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(250471,41425,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(250472,41425,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(250473,41425,'blocks_10_acfe_flexible_toggle','1'),(250474,41425,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(250475,41425,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(250476,41425,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(250477,41425,'blocks_10_options_theme','#ffffff'),(250478,41425,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(250479,41425,'blocks_10_options',''),(250480,41425,'_blocks_10_options','field_617ac0b7f6c08'),(250481,41425,'blocks_10_show','selection'),(250482,41425,'_blocks_10_show','field_61a49cba9d946'),(250483,41425,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(250484,41425,'_blocks_10_courses','field_61b244781ee0a'),(250485,41425,'blocks_10_open_whats_included','1'),(250486,41425,'_blocks_10_open_whats_included','field_66ebfd679450c'),(250487,41425,'blocks_10_open_key_information','0'),(250488,41425,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(250489,41425,'blocks_10_open',''),(250490,41425,'_blocks_10_open','field_66ebfd009450b'),(250491,41425,'blocks_11_acfe_flexible_toggle',''),(250492,41425,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(250493,41425,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(250494,41425,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(250495,41425,'blocks_11_options_theme','#ffffff'),(250496,41425,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(250497,41425,'blocks_11_options_reverse','0'),(250498,41425,'_blocks_11_options_reverse','field_61768049bb8ac'),(250499,41425,'blocks_11_options',''),(250500,41425,'_blocks_11_options','field_617682517c334'),(250501,41425,'blocks_11_split_5050_image','41299'),(250502,41425,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(250503,41425,'blocks_11_split_5050_video',''),(250504,41425,'_blocks_11_split_5050_video','field_6239f3160848a'),(250505,41425,'blocks_11_split_5050_content_title','Optimise Performance '),(250506,41425,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(250507,41425,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(250508,41425,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(250509,41425,'blocks_11_split_5050_content_text','This course is built and taught by industry experts and is the perfect springboard into the industry of Sports Massage. You will be armed with the knowledge and skills to plan, deliver and evaluate sports massage treatments for the general public and for athletes alike.\r\n\r\nThis is a full package course that will set you up to start a career in Sports Massage. With the learning and practical experience you will gain and a complimentary massage couch included in the course, you are truly set up to build your business.\r\n\r\nLevel 3 Sports Massage includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(250510,41425,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(250511,41425,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(250512,41425,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(250513,41425,'blocks_11_split_5050_content_actions','1'),(250514,41425,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(250515,41425,'blocks_11_split_5050_content',''),(250516,41425,'_blocks_11_split_5050_content','field_61767afceb8ba'),(250517,41425,'blocks_12_acfe_flexible_toggle',''),(250518,41425,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(250519,41425,'blocks_12_acfe_flexible_layout_title','Template'),(250520,41425,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(250521,41425,'blocks_12_template','40987'),(250522,41425,'_blocks_12_template','field_617bdd570fe01'),(250523,41425,'blocks_13_acfe_flexible_toggle',''),(250524,41425,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(250525,41425,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(250526,41425,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(250527,41425,'blocks_13_options_theme','#f5f5f5'),(250528,41425,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(250529,41425,'blocks_13_options_state','0'),(250530,41425,'_blocks_13_options_state','field_6239fcb7508c5'),(250531,41425,'blocks_13_options',''),(250532,41425,'_blocks_13_options','field_6177e2991ac44'),(250533,41425,'blocks_13_content_title',''),(250534,41425,'_blocks_13_content_title','field_64d237e8bb1e2'),(250535,41425,'blocks_13_content_heading','FAQ\'s'),(250536,41425,'_blocks_13_content_heading','field_64d237e8bb1e3'),(250537,41425,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(250538,41425,'_blocks_13_content_text','field_64d237e8bb1e4'),(250539,41425,'blocks_13_content_actions',''),(250540,41425,'_blocks_13_content_actions','field_64d237e8bb1e5'),(250541,41425,'blocks_13_content_align','left'),(250542,41425,'_blocks_13_content_align','field_64d2443e6b6aa'),(250543,41425,'blocks_13_content',''),(250544,41425,'_blocks_13_content','field_64d237e8bb1e1'),(250545,41425,'blocks_13_accordion_content','faqs'),(250546,41425,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(250547,41425,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(250548,41425,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(250549,41425,'blocks_13_actions',''),(250550,41425,'_blocks_13_actions','field_61a746a817f7a'),(250551,41425,'_yoast_wpseo_focuskw','Sports Massage Therapist Course'),(250552,41425,'_yoast_wpseo_title','Level 3 SMT + Biomechanics Coaching Bundle %%sep%% Biomechanics Education'),(250553,41425,'_yoast_wpseo_metadesc','Enhance your skills with our advanced Sports Massage and Intrinsic Biomechanics course, designed to support athletic performance and improve movement quality through evidence-based assessment techniques.'),(250554,41425,'_yoast_wpseo_linkdex','27'),(250555,41425,'_yoast_wpseo_inclusive_language_score','90'),(250964,41425,'_wp_old_slug','level-4-personal-trainer-course-copy'),(250965,41427,'hide_hero','0'),(250966,41427,'_hide_hero','field_66a2380fcda39'),(250967,41427,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(250968,41427,'_hero_title','field_617571fe285e8'),(250969,41427,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(250970,41427,'_hero_text','field_6175723c285e9'),(250971,41427,'hero_actions','1'),(250972,41427,'_hero_actions','field_61757270285ea'),(250973,41427,'hero_style','default'),(250974,41427,'_hero_style','field_62051d9dc5324'),(250975,41427,'_thumbnail_id','40848'),(250976,41427,'__thumbnail_id','field_617570855ddaf'),(250977,41427,'hero_image_pos_x','right'),(250978,41427,'_hero_image_pos_x','field_62ec3d05390bb'),(250979,41427,'hero_image_pos_y','top'),(250980,41427,'_hero_image_pos_y','field_62ec3d05390bc'),(250981,41427,'hero_image_pos',''),(250982,41427,'_hero_image_pos','field_62ec3d05390ba'),(250983,41427,'fft_hide_from_listings','0'),(250984,41427,'_fft_hide_from_listings','field_61f1320446ab2'),(250985,41427,'fft_page_format','default'),(250986,41427,'_fft_page_format','field_61ae213f1f218'),(250987,41427,'fft_hide_nav','0'),(250988,41427,'_fft_hide_nav','field_635bd5e43527c'),(250989,41427,'fft_hide_header_call_to_action','0'),(250990,41427,'_fft_hide_header_call_to_action','field_635bd6723527d'),(250991,41427,'fft_page_sitemap','0'),(250992,41427,'_fft_page_sitemap','field_61af9b34e8181'),(250993,41427,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(250994,41427,'_blocks','field_6176696113096'),(250995,41427,'course_label_text',''),(250996,41427,'_course_label_text','field_61e17babf71fa'),(250997,41427,'course_label',''),(250998,41427,'_course_label','field_61e12f92749a7'),(250999,41427,'course_description',''),(251000,41427,'_course_description','field_617ac5788e5e1'),(251001,41427,'course_key_info',''),(251002,41427,'_course_key_info','field_617ac6ad8e5e2'),(251003,41427,'course_included',''),(251004,41427,'_course_included','field_617ac6f08e5e4'),(251005,41427,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251006,41427,'_hero_actions_0_button','field_61757281285eb'),(251007,41427,'blocks_0_acfe_flexible_toggle',''),(251008,41427,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(251009,41427,'blocks_0_acfe_flexible_layout_title','Icons'),(251010,41427,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(251011,41427,'blocks_0_options_theme','#b61234'),(251012,41427,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(251013,41427,'blocks_0_options_format','row'),(251014,41427,'_blocks_0_options_format','field_64bfde9a90690'),(251015,41427,'blocks_0_options',''),(251016,41427,'_blocks_0_options','field_64bfdd9b90684'),(251017,41427,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(251018,41427,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(251019,41427,'blocks_0_icon_row_items_0_label','Accreditation'),(251020,41427,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(251021,41427,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(251022,41427,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(251023,41427,'blocks_0_icon_row_items_1_icon','finance.svg'),(251024,41427,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(251025,41427,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(251026,41427,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(251027,41427,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(251028,41427,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(251029,41427,'blocks_0_icon_row_items_2_icon','progression.svg'),(251030,41427,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(251031,41427,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(251032,41427,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(251033,41427,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(251034,41427,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(251035,41427,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(251036,41427,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(251037,41427,'blocks_0_icon_row_items_3_label','Qualification'),(251038,41427,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(251039,41427,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(251040,41427,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(251041,41427,'blocks_0_icon_row_items','4'),(251042,41427,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(251043,41427,'blocks_5_acfe_flexible_toggle','1'),(251044,41427,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(251045,41427,'blocks_5_acfe_flexible_layout_title','Tabs'),(251046,41427,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(251047,41427,'blocks_5_options_theme','#ffffff'),(251048,41427,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(251049,41427,'blocks_5_options',''),(251050,41427,'_blocks_5_options','field_6177cfcd8140f'),(251051,41427,'blocks_5_tabs_0_tab_label','Entry requirements'),(251052,41427,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(251053,41427,'blocks_5_tabs_0_tab_content_title',''),(251054,41427,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(251055,41427,'blocks_5_tabs_0_tab_content_heading',''),(251056,41427,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(251057,41427,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(251058,41427,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(251059,41427,'blocks_5_tabs_0_tab_content_actions',''),(251060,41427,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(251061,41427,'blocks_5_tabs_0_tab_content',''),(251062,41427,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(251063,41427,'blocks_5_tabs_0_tab_image',''),(251064,41427,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(251065,41427,'blocks_5_tabs_1_tab_label','Learning format'),(251066,41427,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(251067,41427,'blocks_5_tabs_1_tab_content_title',''),(251068,41427,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(251069,41427,'blocks_5_tabs_1_tab_content_heading',''),(251070,41427,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(251071,41427,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(251072,41427,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(251073,41427,'blocks_5_tabs_1_tab_content_actions',''),(251074,41427,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(251075,41427,'blocks_5_tabs_1_tab_content',''),(251076,41427,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(251077,41427,'blocks_5_tabs_1_tab_image',''),(251078,41427,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(251079,41427,'blocks_5_tabs_2_tab_label','Qualifications included'),(251080,41427,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(251081,41427,'blocks_5_tabs_2_tab_content_title',''),(251082,41427,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(251083,41427,'blocks_5_tabs_2_tab_content_heading',''),(251084,41427,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(251085,41427,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(251086,41427,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(251087,41427,'blocks_5_tabs_2_tab_content_actions',''),(251088,41427,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(251089,41427,'blocks_5_tabs_2_tab_content',''),(251090,41427,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(251091,41427,'blocks_5_tabs_2_tab_image',''),(251092,41427,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(251093,41427,'blocks_5_tabs','3'),(251094,41427,'_blocks_5_tabs','field_6177cff281419'),(251095,41427,'blocks_4_acfe_flexible_toggle',''),(251096,41427,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(251097,41427,'blocks_4_acfe_flexible_layout_title','Template'),(251098,41427,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(251099,41427,'blocks_4_template','39207'),(251100,41427,'_blocks_4_template','field_617bdd570fe01'),(251101,41427,'blocks_6_acfe_flexible_toggle',''),(251102,41427,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(251103,41427,'blocks_6_acfe_flexible_layout_title','Icons'),(251104,41427,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(251105,41427,'blocks_6_options_theme','#f5f5f5'),(251106,41427,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(251107,41427,'blocks_6_options_format','stacked'),(251108,41427,'_blocks_6_options_format','field_64bfde9a90690'),(251109,41427,'blocks_6_options',''),(251110,41427,'_blocks_6_options','field_64bfdd9b90684'),(251111,41427,'blocks_6_row_content_title','Options available to pay for your course'),(251112,41427,'_blocks_6_row_content_title','field_64bfdd9b90687'),(251113,41427,'blocks_6_row_content_heading','Fees & Funding Options '),(251114,41427,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(251115,41427,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(251116,41427,'_blocks_6_row_content_text','field_64bfdd9b90689'),(251117,41427,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251118,41427,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(251119,41427,'blocks_6_row_content_actions','1'),(251120,41427,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(251121,41427,'blocks_6_row_content',''),(251122,41427,'_blocks_6_row_content','field_64bfdd9b90686'),(251123,41427,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(251124,41427,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(251125,41427,'blocks_6_icon_row_items_0_label','Pay in full'),(251126,41427,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(251127,41427,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(251128,41427,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(251129,41427,'blocks_6_icon_row_items_1_icon','finance.svg'),(251130,41427,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(251131,41427,'blocks_6_icon_row_items_1_label','0% finance'),(251132,41427,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(251133,41427,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(251134,41427,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(251135,41427,'blocks_6_icon_row_items','3'),(251136,41427,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(251137,41427,'blocks_7_acfe_flexible_toggle',''),(251138,41427,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(251139,41427,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(251140,41427,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(251141,41427,'blocks_7_options_theme','#ffffff'),(251142,41427,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(251143,41427,'blocks_7_options_reverse','0'),(251144,41427,'_blocks_7_options_reverse','field_61768049bb8ac'),(251145,41427,'blocks_7_options',''),(251146,41427,'_blocks_7_options','field_617682517c334'),(251147,41427,'blocks_7_split_5050_image','40817'),(251148,41427,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(251149,41427,'blocks_7_split_5050_video',''),(251150,41427,'_blocks_7_split_5050_video','field_6239f3160848a'),(251151,41427,'blocks_7_split_5050_content_title',''),(251152,41427,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(251153,41427,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(251154,41427,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(251155,41427,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(251156,41427,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(251157,41427,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251158,41427,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(251159,41427,'blocks_7_split_5050_content_actions','1'),(251160,41427,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(251161,41427,'blocks_7_split_5050_content',''),(251162,41427,'_blocks_7_split_5050_content','field_61767afceb8ba'),(251163,41427,'blocks_8_acfe_flexible_toggle',''),(251164,41427,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(251165,41427,'blocks_8_acfe_flexible_layout_title','Icons'),(251166,41427,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(251167,41427,'blocks_8_options_theme','#f5f5f5'),(251168,41427,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(251169,41427,'blocks_8_options_format','row'),(251170,41427,'_blocks_8_options_format','field_64bfde9a90690'),(251171,41427,'blocks_8_options',''),(251172,41427,'_blocks_8_options','field_64bfdd9b90684'),(251173,41427,'blocks_8_icon_row_items_0_icon','qualification.svg'),(251174,41427,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(251175,41427,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(251176,41427,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(251177,41427,'blocks_8_icon_row_items_0_text',''),(251178,41427,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(251179,41427,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(251180,41427,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(251181,41427,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(251182,41427,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(251183,41427,'blocks_8_icon_row_items_1_text',''),(251184,41427,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(251185,41427,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(251186,41427,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(251187,41427,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(251188,41427,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(251189,41427,'blocks_8_icon_row_items_2_text',''),(251190,41427,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(251191,41427,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(251192,41427,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(251193,41427,'blocks_8_icon_row_items_3_label','Flexible funding options'),(251194,41427,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(251195,41427,'blocks_8_icon_row_items_3_text',''),(251196,41427,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(251197,41427,'blocks_8_icon_row_items','4'),(251198,41427,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(251199,41427,'blocks_9_acfe_flexible_toggle',''),(251200,41427,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(251201,41427,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(251202,41427,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(251203,41427,'blocks_9_options_theme','#ffffff'),(251204,41427,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(251205,41427,'blocks_9_options_reverse','1'),(251206,41427,'_blocks_9_options_reverse','field_61768049bb8ac'),(251207,41427,'blocks_9_options',''),(251208,41427,'_blocks_9_options','field_617682517c334'),(251209,41427,'blocks_9_split_5050_image','39224'),(251210,41427,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(251211,41427,'blocks_9_split_5050_video',''),(251212,41427,'_blocks_9_split_5050_video','field_6239f3160848a'),(251213,41427,'blocks_9_split_5050_content_title','Locations'),(251214,41427,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(251215,41427,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(251216,41427,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(251217,41427,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(251218,41427,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(251219,41427,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251220,41427,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(251221,41427,'blocks_9_split_5050_content_actions','1'),(251222,41427,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(251223,41427,'blocks_9_split_5050_content',''),(251224,41427,'_blocks_9_split_5050_content','field_61767afceb8ba'),(251225,41427,'blocks_1_acfe_flexible_toggle',''),(251226,41427,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(251227,41427,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(251228,41427,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(251229,41427,'blocks_1_options_theme','#ffffff'),(251230,41427,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(251231,41427,'blocks_1_options_reverse','0'),(251232,41427,'_blocks_1_options_reverse','field_61768049bb8ac'),(251233,41427,'blocks_1_options',''),(251234,41427,'_blocks_1_options','field_617682517c334'),(251235,41427,'blocks_1_split_5050_image','40785'),(251236,41427,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(251237,41427,'blocks_1_split_5050_video',''),(251238,41427,'_blocks_1_split_5050_video','field_6239f3160848a'),(251239,41427,'blocks_1_split_5050_content_title',''),(251240,41427,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(251241,41427,'blocks_1_split_5050_content_heading','Course Overview'),(251242,41427,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(251243,41427,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases a 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(251244,41427,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(251245,41427,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251246,41427,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(251247,41427,'blocks_1_split_5050_content_actions','1'),(251248,41427,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(251249,41427,'blocks_1_split_5050_content',''),(251250,41427,'_blocks_1_split_5050_content','field_61767afceb8ba'),(251251,41427,'blocks_2_acfe_flexible_toggle',''),(251252,41427,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(251253,41427,'blocks_2_acfe_flexible_layout_title','Form'),(251254,41427,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(251255,41427,'blocks_2_row_content_format','standard'),(251256,41427,'_blocks_2_row_content_format','field_6481ead962881'),(251257,41427,'blocks_2_row_content_title',''),(251258,41427,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(251259,41427,'blocks_2_row_content_heading','Enquire Today'),(251260,41427,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(251261,41427,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(251262,41427,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(251263,41427,'blocks_2_row_content_actions',''),(251264,41427,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(251265,41427,'blocks_2_row_content',''),(251266,41427,'_blocks_2_row_content','field_61a0f5f5b3db0'),(251267,41427,'blocks_2_row_form','40394'),(251268,41427,'_blocks_2_row_form','field_61a4ff2c0b08e'),(251269,41427,'blocks_2_row_form_button_label',''),(251270,41427,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(251271,41427,'blocks_3_acfe_flexible_toggle',''),(251272,41427,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(251273,41427,'blocks_3_acfe_flexible_layout_title','Video'),(251274,41427,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(251275,41427,'blocks_3_size','large'),(251276,41427,'_blocks_3_size','field_6487038f297c1'),(251277,41427,'blocks_3_row_content_title',''),(251278,41427,'_blocks_3_row_content_title','field_64870132a865d'),(251279,41427,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(251280,41427,'_blocks_3_row_content_heading','field_64870142a865e'),(251281,41427,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(251282,41427,'_blocks_3_row_content_text','field_64870148a865f'),(251283,41427,'blocks_3_row_content',''),(251284,41427,'_blocks_3_row_content','field_6487008ba865c'),(251285,41427,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(251286,41427,'_blocks_3_video_src','field_6193c4a98ec07'),(251287,41427,'blocks_3_video_thumbnail',''),(251288,41427,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(251289,41427,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(251290,41427,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(251291,41427,'blocks_6_icon_row_items_2_label','Deposit & balance'),(251292,41427,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(251293,41427,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(251294,41427,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(251295,41427,'blocks_10_acfe_flexible_toggle','1'),(251296,41427,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(251297,41427,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(251298,41427,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(251299,41427,'blocks_10_options_theme','#ffffff'),(251300,41427,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(251301,41427,'blocks_10_options',''),(251302,41427,'_blocks_10_options','field_617ac0b7f6c08'),(251303,41427,'blocks_10_show','selection'),(251304,41427,'_blocks_10_show','field_61a49cba9d946'),(251305,41427,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(251306,41427,'_blocks_10_courses','field_61b244781ee0a'),(251307,41427,'blocks_10_open_whats_included','1'),(251308,41427,'_blocks_10_open_whats_included','field_66ebfd679450c'),(251309,41427,'blocks_10_open_key_information','0'),(251310,41427,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(251311,41427,'blocks_10_open',''),(251312,41427,'_blocks_10_open','field_66ebfd009450b'),(251313,41427,'blocks_11_acfe_flexible_toggle',''),(251314,41427,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(251315,41427,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(251316,41427,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(251317,41427,'blocks_11_options_theme','#ffffff'),(251318,41427,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(251319,41427,'blocks_11_options_reverse','0'),(251320,41427,'_blocks_11_options_reverse','field_61768049bb8ac'),(251321,41427,'blocks_11_options',''),(251322,41427,'_blocks_11_options','field_617682517c334'),(251323,41427,'blocks_11_split_5050_image','40812'),(251324,41427,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(251325,41427,'blocks_11_split_5050_video',''),(251326,41427,'_blocks_11_split_5050_video','field_6239f3160848a'),(251327,41427,'blocks_11_split_5050_content_title','Optimise Performance '),(251328,41427,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(251329,41427,'blocks_11_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(251330,41427,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(251331,41427,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(251332,41427,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(251333,41427,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251334,41427,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(251335,41427,'blocks_11_split_5050_content_actions','1'),(251336,41427,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(251337,41427,'blocks_11_split_5050_content',''),(251338,41427,'_blocks_11_split_5050_content','field_61767afceb8ba'),(251339,41427,'blocks_12_acfe_flexible_toggle',''),(251340,41427,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(251341,41427,'blocks_12_acfe_flexible_layout_title','Template'),(251342,41427,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(251343,41427,'blocks_12_template','40987'),(251344,41427,'_blocks_12_template','field_617bdd570fe01'),(251345,41427,'blocks_13_acfe_flexible_toggle',''),(251346,41427,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(251347,41427,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(251348,41427,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(251349,41427,'blocks_13_options_theme','#f5f5f5'),(251350,41427,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(251351,41427,'blocks_13_options_state','0'),(251352,41427,'_blocks_13_options_state','field_6239fcb7508c5'),(251353,41427,'blocks_13_options',''),(251354,41427,'_blocks_13_options','field_6177e2991ac44'),(251355,41427,'blocks_13_content_title',''),(251356,41427,'_blocks_13_content_title','field_64d237e8bb1e2'),(251357,41427,'blocks_13_content_heading','FAQ\'s'),(251358,41427,'_blocks_13_content_heading','field_64d237e8bb1e3'),(251359,41427,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(251360,41427,'_blocks_13_content_text','field_64d237e8bb1e4'),(251361,41427,'blocks_13_content_actions',''),(251362,41427,'_blocks_13_content_actions','field_64d237e8bb1e5'),(251363,41427,'blocks_13_content_align','left'),(251364,41427,'_blocks_13_content_align','field_64d2443e6b6aa'),(251365,41427,'blocks_13_content',''),(251366,41427,'_blocks_13_content','field_64d237e8bb1e1'),(251367,41427,'blocks_13_accordion_content','faqs'),(251368,41427,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(251369,41427,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(251370,41427,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(251371,41427,'blocks_13_actions',''),(251372,41427,'_blocks_13_actions','field_61a746a817f7a'),(251373,41428,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-45.jpg'),(251374,41428,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-45.jpg\";s:8:\"filesize\";i:2022563;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-45-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84922;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-45-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127364;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-45-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33524;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-45-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68416;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-45-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188032;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-45-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40933;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-45-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118279;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-45-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188745;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-45-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33535;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-45-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84922;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-45-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127364;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-45-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34986;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-45-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96151;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-45-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152070;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-45-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35410;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-45-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92958;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-45-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141723;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-45-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30812;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-45-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76716;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-45-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114626;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664108116\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"44\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(251375,41429,'hide_hero','0'),(251376,41429,'_hide_hero','field_66a2380fcda39'),(251377,41429,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(251378,41429,'_hero_title','field_617571fe285e8'),(251379,41429,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(251380,41429,'_hero_text','field_6175723c285e9'),(251381,41429,'hero_actions','1'),(251382,41429,'_hero_actions','field_61757270285ea'),(251383,41429,'hero_style','default'),(251384,41429,'_hero_style','field_62051d9dc5324'),(251385,41429,'_thumbnail_id','41428'),(251386,41429,'__thumbnail_id','field_617570855ddaf'),(251387,41429,'hero_image_pos_x','right'),(251388,41429,'_hero_image_pos_x','field_62ec3d05390bb'),(251389,41429,'hero_image_pos_y','top'),(251390,41429,'_hero_image_pos_y','field_62ec3d05390bc'),(251391,41429,'hero_image_pos',''),(251392,41429,'_hero_image_pos','field_62ec3d05390ba'),(251393,41429,'fft_hide_from_listings','0'),(251394,41429,'_fft_hide_from_listings','field_61f1320446ab2'),(251395,41429,'fft_page_format','default'),(251396,41429,'_fft_page_format','field_61ae213f1f218'),(251397,41429,'fft_hide_nav','0'),(251398,41429,'_fft_hide_nav','field_635bd5e43527c'),(251399,41429,'fft_hide_header_call_to_action','0'),(251400,41429,'_fft_hide_header_call_to_action','field_635bd6723527d'),(251401,41429,'fft_page_sitemap','0'),(251402,41429,'_fft_page_sitemap','field_61af9b34e8181'),(251403,41429,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(251404,41429,'_blocks','field_6176696113096'),(251405,41429,'course_label_text',''),(251406,41429,'_course_label_text','field_61e17babf71fa'),(251407,41429,'course_label',''),(251408,41429,'_course_label','field_61e12f92749a7'),(251409,41429,'course_description',''),(251410,41429,'_course_description','field_617ac5788e5e1'),(251411,41429,'course_key_info',''),(251412,41429,'_course_key_info','field_617ac6ad8e5e2'),(251413,41429,'course_included',''),(251414,41429,'_course_included','field_617ac6f08e5e4'),(251415,41429,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251416,41429,'_hero_actions_0_button','field_61757281285eb'),(251417,41429,'blocks_0_acfe_flexible_toggle',''),(251418,41429,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(251419,41429,'blocks_0_acfe_flexible_layout_title','Icons'),(251420,41429,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(251421,41429,'blocks_0_options_theme','#b61234'),(251422,41429,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(251423,41429,'blocks_0_options_format','row'),(251424,41429,'_blocks_0_options_format','field_64bfde9a90690'),(251425,41429,'blocks_0_options',''),(251426,41429,'_blocks_0_options','field_64bfdd9b90684'),(251427,41429,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(251428,41429,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(251429,41429,'blocks_0_icon_row_items_0_label','Accreditation'),(251430,41429,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(251431,41429,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(251432,41429,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(251433,41429,'blocks_0_icon_row_items_1_icon','finance.svg'),(251434,41429,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(251435,41429,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(251436,41429,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(251437,41429,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(251438,41429,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(251439,41429,'blocks_0_icon_row_items_2_icon','progression.svg'),(251440,41429,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(251441,41429,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(251442,41429,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(251443,41429,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(251444,41429,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(251445,41429,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(251446,41429,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(251447,41429,'blocks_0_icon_row_items_3_label','Qualification'),(251448,41429,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(251449,41429,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(251450,41429,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(251451,41429,'blocks_0_icon_row_items','4'),(251452,41429,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(251453,41429,'blocks_5_acfe_flexible_toggle','1'),(251454,41429,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(251455,41429,'blocks_5_acfe_flexible_layout_title','Tabs'),(251456,41429,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(251457,41429,'blocks_5_options_theme','#ffffff'),(251458,41429,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(251459,41429,'blocks_5_options',''),(251460,41429,'_blocks_5_options','field_6177cfcd8140f'),(251461,41429,'blocks_5_tabs_0_tab_label','Entry requirements'),(251462,41429,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(251463,41429,'blocks_5_tabs_0_tab_content_title',''),(251464,41429,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(251465,41429,'blocks_5_tabs_0_tab_content_heading',''),(251466,41429,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(251467,41429,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(251468,41429,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(251469,41429,'blocks_5_tabs_0_tab_content_actions',''),(251470,41429,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(251471,41429,'blocks_5_tabs_0_tab_content',''),(251472,41429,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(251473,41429,'blocks_5_tabs_0_tab_image',''),(251474,41429,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(251475,41429,'blocks_5_tabs_1_tab_label','Learning format'),(251476,41429,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(251477,41429,'blocks_5_tabs_1_tab_content_title',''),(251478,41429,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(251479,41429,'blocks_5_tabs_1_tab_content_heading',''),(251480,41429,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(251481,41429,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(251482,41429,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(251483,41429,'blocks_5_tabs_1_tab_content_actions',''),(251484,41429,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(251485,41429,'blocks_5_tabs_1_tab_content',''),(251486,41429,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(251487,41429,'blocks_5_tabs_1_tab_image',''),(251488,41429,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(251489,41429,'blocks_5_tabs_2_tab_label','Qualifications included'),(251490,41429,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(251491,41429,'blocks_5_tabs_2_tab_content_title',''),(251492,41429,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(251493,41429,'blocks_5_tabs_2_tab_content_heading',''),(251494,41429,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(251495,41429,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(251496,41429,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(251497,41429,'blocks_5_tabs_2_tab_content_actions',''),(251498,41429,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(251499,41429,'blocks_5_tabs_2_tab_content',''),(251500,41429,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(251501,41429,'blocks_5_tabs_2_tab_image',''),(251502,41429,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(251503,41429,'blocks_5_tabs','3'),(251504,41429,'_blocks_5_tabs','field_6177cff281419'),(251505,41429,'blocks_4_acfe_flexible_toggle',''),(251506,41429,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(251507,41429,'blocks_4_acfe_flexible_layout_title','Template'),(251508,41429,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(251509,41429,'blocks_4_template','39207'),(251510,41429,'_blocks_4_template','field_617bdd570fe01'),(251511,41429,'blocks_6_acfe_flexible_toggle',''),(251512,41429,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(251513,41429,'blocks_6_acfe_flexible_layout_title','Icons'),(251514,41429,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(251515,41429,'blocks_6_options_theme','#f5f5f5'),(251516,41429,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(251517,41429,'blocks_6_options_format','stacked'),(251518,41429,'_blocks_6_options_format','field_64bfde9a90690'),(251519,41429,'blocks_6_options',''),(251520,41429,'_blocks_6_options','field_64bfdd9b90684'),(251521,41429,'blocks_6_row_content_title','Options available to pay for your course'),(251522,41429,'_blocks_6_row_content_title','field_64bfdd9b90687'),(251523,41429,'blocks_6_row_content_heading','Fees & Funding Options '),(251524,41429,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(251525,41429,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(251526,41429,'_blocks_6_row_content_text','field_64bfdd9b90689'),(251527,41429,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251528,41429,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(251529,41429,'blocks_6_row_content_actions','1'),(251530,41429,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(251531,41429,'blocks_6_row_content',''),(251532,41429,'_blocks_6_row_content','field_64bfdd9b90686'),(251533,41429,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(251534,41429,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(251535,41429,'blocks_6_icon_row_items_0_label','Pay in full'),(251536,41429,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(251537,41429,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(251538,41429,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(251539,41429,'blocks_6_icon_row_items_1_icon','finance.svg'),(251540,41429,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(251541,41429,'blocks_6_icon_row_items_1_label','0% finance'),(251542,41429,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(251543,41429,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(251544,41429,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(251545,41429,'blocks_6_icon_row_items','3'),(251546,41429,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(251547,41429,'blocks_7_acfe_flexible_toggle',''),(251548,41429,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(251549,41429,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(251550,41429,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(251551,41429,'blocks_7_options_theme','#ffffff'),(251552,41429,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(251553,41429,'blocks_7_options_reverse','0'),(251554,41429,'_blocks_7_options_reverse','field_61768049bb8ac'),(251555,41429,'blocks_7_options',''),(251556,41429,'_blocks_7_options','field_617682517c334'),(251557,41429,'blocks_7_split_5050_image','40817'),(251558,41429,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(251559,41429,'blocks_7_split_5050_video',''),(251560,41429,'_blocks_7_split_5050_video','field_6239f3160848a'),(251561,41429,'blocks_7_split_5050_content_title',''),(251562,41429,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(251563,41429,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(251564,41429,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(251565,41429,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(251566,41429,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(251567,41429,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251568,41429,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(251569,41429,'blocks_7_split_5050_content_actions','1'),(251570,41429,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(251571,41429,'blocks_7_split_5050_content',''),(251572,41429,'_blocks_7_split_5050_content','field_61767afceb8ba'),(251573,41429,'blocks_8_acfe_flexible_toggle',''),(251574,41429,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(251575,41429,'blocks_8_acfe_flexible_layout_title','Icons'),(251576,41429,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(251577,41429,'blocks_8_options_theme','#f5f5f5'),(251578,41429,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(251579,41429,'blocks_8_options_format','row'),(251580,41429,'_blocks_8_options_format','field_64bfde9a90690'),(251581,41429,'blocks_8_options',''),(251582,41429,'_blocks_8_options','field_64bfdd9b90684'),(251583,41429,'blocks_8_icon_row_items_0_icon','qualification.svg'),(251584,41429,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(251585,41429,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(251586,41429,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(251587,41429,'blocks_8_icon_row_items_0_text',''),(251588,41429,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(251589,41429,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(251590,41429,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(251591,41429,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(251592,41429,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(251593,41429,'blocks_8_icon_row_items_1_text',''),(251594,41429,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(251595,41429,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(251596,41429,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(251597,41429,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(251598,41429,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(251599,41429,'blocks_8_icon_row_items_2_text',''),(251600,41429,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(251601,41429,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(251602,41429,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(251603,41429,'blocks_8_icon_row_items_3_label','Flexible funding options'),(251604,41429,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(251605,41429,'blocks_8_icon_row_items_3_text',''),(251606,41429,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(251607,41429,'blocks_8_icon_row_items','4'),(251608,41429,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(251609,41429,'blocks_9_acfe_flexible_toggle',''),(251610,41429,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(251611,41429,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(251612,41429,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(251613,41429,'blocks_9_options_theme','#ffffff'),(251614,41429,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(251615,41429,'blocks_9_options_reverse','1'),(251616,41429,'_blocks_9_options_reverse','field_61768049bb8ac'),(251617,41429,'blocks_9_options',''),(251618,41429,'_blocks_9_options','field_617682517c334'),(251619,41429,'blocks_9_split_5050_image','39224'),(251620,41429,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(251621,41429,'blocks_9_split_5050_video',''),(251622,41429,'_blocks_9_split_5050_video','field_6239f3160848a'),(251623,41429,'blocks_9_split_5050_content_title','Locations'),(251624,41429,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(251625,41429,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(251626,41429,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(251627,41429,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(251628,41429,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(251629,41429,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251630,41429,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(251631,41429,'blocks_9_split_5050_content_actions','1'),(251632,41429,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(251633,41429,'blocks_9_split_5050_content',''),(251634,41429,'_blocks_9_split_5050_content','field_61767afceb8ba'),(251635,41429,'blocks_1_acfe_flexible_toggle',''),(251636,41429,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(251637,41429,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(251638,41429,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(251639,41429,'blocks_1_options_theme','#ffffff'),(251640,41429,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(251641,41429,'blocks_1_options_reverse','0'),(251642,41429,'_blocks_1_options_reverse','field_61768049bb8ac'),(251643,41429,'blocks_1_options',''),(251644,41429,'_blocks_1_options','field_617682517c334'),(251645,41429,'blocks_1_split_5050_image','40785'),(251646,41429,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(251647,41429,'blocks_1_split_5050_video',''),(251648,41429,'_blocks_1_split_5050_video','field_6239f3160848a'),(251649,41429,'blocks_1_split_5050_content_title',''),(251650,41429,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(251651,41429,'blocks_1_split_5050_content_heading','Course Overview'),(251652,41429,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(251653,41429,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases a 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(251654,41429,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(251655,41429,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251656,41429,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(251657,41429,'blocks_1_split_5050_content_actions','1'),(251658,41429,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(251659,41429,'blocks_1_split_5050_content',''),(251660,41429,'_blocks_1_split_5050_content','field_61767afceb8ba'),(251661,41429,'blocks_2_acfe_flexible_toggle',''),(251662,41429,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(251663,41429,'blocks_2_acfe_flexible_layout_title','Form'),(251664,41429,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(251665,41429,'blocks_2_row_content_format','standard'),(251666,41429,'_blocks_2_row_content_format','field_6481ead962881'),(251667,41429,'blocks_2_row_content_title',''),(251668,41429,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(251669,41429,'blocks_2_row_content_heading','Enquire Today'),(251670,41429,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(251671,41429,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(251672,41429,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(251673,41429,'blocks_2_row_content_actions',''),(251674,41429,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(251675,41429,'blocks_2_row_content',''),(251676,41429,'_blocks_2_row_content','field_61a0f5f5b3db0'),(251677,41429,'blocks_2_row_form','40394'),(251678,41429,'_blocks_2_row_form','field_61a4ff2c0b08e'),(251679,41429,'blocks_2_row_form_button_label',''),(251680,41429,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(251681,41429,'blocks_3_acfe_flexible_toggle',''),(251682,41429,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(251683,41429,'blocks_3_acfe_flexible_layout_title','Video'),(251684,41429,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(251685,41429,'blocks_3_size','large'),(251686,41429,'_blocks_3_size','field_6487038f297c1'),(251687,41429,'blocks_3_row_content_title',''),(251688,41429,'_blocks_3_row_content_title','field_64870132a865d'),(251689,41429,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(251690,41429,'_blocks_3_row_content_heading','field_64870142a865e'),(251691,41429,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(251692,41429,'_blocks_3_row_content_text','field_64870148a865f'),(251693,41429,'blocks_3_row_content',''),(251694,41429,'_blocks_3_row_content','field_6487008ba865c'),(251695,41429,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(251696,41429,'_blocks_3_video_src','field_6193c4a98ec07'),(251697,41429,'blocks_3_video_thumbnail',''),(251698,41429,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(251699,41429,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(251700,41429,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(251701,41429,'blocks_6_icon_row_items_2_label','Deposit & balance'),(251702,41429,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(251703,41429,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(251704,41429,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(251705,41429,'blocks_10_acfe_flexible_toggle','1'),(251706,41429,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(251707,41429,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(251708,41429,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(251709,41429,'blocks_10_options_theme','#ffffff'),(251710,41429,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(251711,41429,'blocks_10_options',''),(251712,41429,'_blocks_10_options','field_617ac0b7f6c08'),(251713,41429,'blocks_10_show','selection'),(251714,41429,'_blocks_10_show','field_61a49cba9d946'),(251715,41429,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(251716,41429,'_blocks_10_courses','field_61b244781ee0a'),(251717,41429,'blocks_10_open_whats_included','1'),(251718,41429,'_blocks_10_open_whats_included','field_66ebfd679450c'),(251719,41429,'blocks_10_open_key_information','0'),(251720,41429,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(251721,41429,'blocks_10_open',''),(251722,41429,'_blocks_10_open','field_66ebfd009450b'),(251723,41429,'blocks_11_acfe_flexible_toggle',''),(251724,41429,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(251725,41429,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(251726,41429,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(251727,41429,'blocks_11_options_theme','#ffffff'),(251728,41429,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(251729,41429,'blocks_11_options_reverse','0'),(251730,41429,'_blocks_11_options_reverse','field_61768049bb8ac'),(251731,41429,'blocks_11_options',''),(251732,41429,'_blocks_11_options','field_617682517c334'),(251733,41429,'blocks_11_split_5050_image','40812'),(251734,41429,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(251735,41429,'blocks_11_split_5050_video',''),(251736,41429,'_blocks_11_split_5050_video','field_6239f3160848a'),(251737,41429,'blocks_11_split_5050_content_title','Optimise Performance '),(251738,41429,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(251739,41429,'blocks_11_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(251740,41429,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(251741,41429,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(251742,41429,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(251743,41429,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251744,41429,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(251745,41429,'blocks_11_split_5050_content_actions','1'),(251746,41429,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(251747,41429,'blocks_11_split_5050_content',''),(251748,41429,'_blocks_11_split_5050_content','field_61767afceb8ba'),(251749,41429,'blocks_12_acfe_flexible_toggle',''),(251750,41429,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(251751,41429,'blocks_12_acfe_flexible_layout_title','Template'),(251752,41429,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(251753,41429,'blocks_12_template','40987'),(251754,41429,'_blocks_12_template','field_617bdd570fe01'),(251755,41429,'blocks_13_acfe_flexible_toggle',''),(251756,41429,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(251757,41429,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(251758,41429,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(251759,41429,'blocks_13_options_theme','#f5f5f5'),(251760,41429,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(251761,41429,'blocks_13_options_state','0'),(251762,41429,'_blocks_13_options_state','field_6239fcb7508c5'),(251763,41429,'blocks_13_options',''),(251764,41429,'_blocks_13_options','field_6177e2991ac44'),(251765,41429,'blocks_13_content_title',''),(251766,41429,'_blocks_13_content_title','field_64d237e8bb1e2'),(251767,41429,'blocks_13_content_heading','FAQ\'s'),(251768,41429,'_blocks_13_content_heading','field_64d237e8bb1e3'),(251769,41429,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(251770,41429,'_blocks_13_content_text','field_64d237e8bb1e4'),(251771,41429,'blocks_13_content_actions',''),(251772,41429,'_blocks_13_content_actions','field_64d237e8bb1e5'),(251773,41429,'blocks_13_content_align','left'),(251774,41429,'_blocks_13_content_align','field_64d2443e6b6aa'),(251775,41429,'blocks_13_content',''),(251776,41429,'_blocks_13_content','field_64d237e8bb1e1'),(251777,41429,'blocks_13_accordion_content','faqs'),(251778,41429,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(251779,41429,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(251780,41429,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(251781,41429,'blocks_13_actions',''),(251782,41429,'_blocks_13_actions','field_61a746a817f7a'),(251783,41430,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-62.jpg'),(251784,41430,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-62.jpg\";s:8:\"filesize\";i:1855197;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-62-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76765;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-62-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113533;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-62-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31051;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-62-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62620;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164134;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-62-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36506;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-62-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101421;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156425;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-62-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31036;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-62-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76765;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-62-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113533;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-62-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31118;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-62-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81820;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-62-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124940;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-62-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32226;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-62-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83068;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-62-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123884;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-62-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28851;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-62-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69681;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-62-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102394;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109491\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(251785,41431,'hide_hero','0'),(251786,41431,'_hide_hero','field_66a2380fcda39'),(251787,41431,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(251788,41431,'_hero_title','field_617571fe285e8'),(251789,41431,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(251790,41431,'_hero_text','field_6175723c285e9'),(251791,41431,'hero_actions','1'),(251792,41431,'_hero_actions','field_61757270285ea'),(251793,41431,'hero_style','default'),(251794,41431,'_hero_style','field_62051d9dc5324'),(251795,41431,'_thumbnail_id','41428'),(251796,41431,'__thumbnail_id','field_617570855ddaf'),(251797,41431,'hero_image_pos_x','right'),(251798,41431,'_hero_image_pos_x','field_62ec3d05390bb'),(251799,41431,'hero_image_pos_y','top'),(251800,41431,'_hero_image_pos_y','field_62ec3d05390bc'),(251801,41431,'hero_image_pos',''),(251802,41431,'_hero_image_pos','field_62ec3d05390ba'),(251803,41431,'fft_hide_from_listings','0'),(251804,41431,'_fft_hide_from_listings','field_61f1320446ab2'),(251805,41431,'fft_page_format','default'),(251806,41431,'_fft_page_format','field_61ae213f1f218'),(251807,41431,'fft_hide_nav','0'),(251808,41431,'_fft_hide_nav','field_635bd5e43527c'),(251809,41431,'fft_hide_header_call_to_action','0'),(251810,41431,'_fft_hide_header_call_to_action','field_635bd6723527d'),(251811,41431,'fft_page_sitemap','0'),(251812,41431,'_fft_page_sitemap','field_61af9b34e8181'),(251813,41431,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(251814,41431,'_blocks','field_6176696113096'),(251815,41431,'course_label_text',''),(251816,41431,'_course_label_text','field_61e17babf71fa'),(251817,41431,'course_label',''),(251818,41431,'_course_label','field_61e12f92749a7'),(251819,41431,'course_description',''),(251820,41431,'_course_description','field_617ac5788e5e1'),(251821,41431,'course_key_info',''),(251822,41431,'_course_key_info','field_617ac6ad8e5e2'),(251823,41431,'course_included',''),(251824,41431,'_course_included','field_617ac6f08e5e4'),(251825,41431,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251826,41431,'_hero_actions_0_button','field_61757281285eb'),(251827,41431,'blocks_0_acfe_flexible_toggle',''),(251828,41431,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(251829,41431,'blocks_0_acfe_flexible_layout_title','Icons'),(251830,41431,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(251831,41431,'blocks_0_options_theme','#b61234'),(251832,41431,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(251833,41431,'blocks_0_options_format','row'),(251834,41431,'_blocks_0_options_format','field_64bfde9a90690'),(251835,41431,'blocks_0_options',''),(251836,41431,'_blocks_0_options','field_64bfdd9b90684'),(251837,41431,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(251838,41431,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(251839,41431,'blocks_0_icon_row_items_0_label','Accreditation'),(251840,41431,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(251841,41431,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(251842,41431,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(251843,41431,'blocks_0_icon_row_items_1_icon','finance.svg'),(251844,41431,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(251845,41431,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(251846,41431,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(251847,41431,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(251848,41431,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(251849,41431,'blocks_0_icon_row_items_2_icon','progression.svg'),(251850,41431,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(251851,41431,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(251852,41431,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(251853,41431,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(251854,41431,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(251855,41431,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(251856,41431,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(251857,41431,'blocks_0_icon_row_items_3_label','Qualification'),(251858,41431,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(251859,41431,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(251860,41431,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(251861,41431,'blocks_0_icon_row_items','4'),(251862,41431,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(251863,41431,'blocks_5_acfe_flexible_toggle','1'),(251864,41431,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(251865,41431,'blocks_5_acfe_flexible_layout_title','Tabs'),(251866,41431,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(251867,41431,'blocks_5_options_theme','#ffffff'),(251868,41431,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(251869,41431,'blocks_5_options',''),(251870,41431,'_blocks_5_options','field_6177cfcd8140f'),(251871,41431,'blocks_5_tabs_0_tab_label','Entry requirements'),(251872,41431,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(251873,41431,'blocks_5_tabs_0_tab_content_title',''),(251874,41431,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(251875,41431,'blocks_5_tabs_0_tab_content_heading',''),(251876,41431,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(251877,41431,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(251878,41431,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(251879,41431,'blocks_5_tabs_0_tab_content_actions',''),(251880,41431,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(251881,41431,'blocks_5_tabs_0_tab_content',''),(251882,41431,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(251883,41431,'blocks_5_tabs_0_tab_image',''),(251884,41431,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(251885,41431,'blocks_5_tabs_1_tab_label','Learning format'),(251886,41431,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(251887,41431,'blocks_5_tabs_1_tab_content_title',''),(251888,41431,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(251889,41431,'blocks_5_tabs_1_tab_content_heading',''),(251890,41431,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(251891,41431,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(251892,41431,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(251893,41431,'blocks_5_tabs_1_tab_content_actions',''),(251894,41431,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(251895,41431,'blocks_5_tabs_1_tab_content',''),(251896,41431,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(251897,41431,'blocks_5_tabs_1_tab_image',''),(251898,41431,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(251899,41431,'blocks_5_tabs_2_tab_label','Qualifications included'),(251900,41431,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(251901,41431,'blocks_5_tabs_2_tab_content_title',''),(251902,41431,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(251903,41431,'blocks_5_tabs_2_tab_content_heading',''),(251904,41431,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(251905,41431,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(251906,41431,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(251907,41431,'blocks_5_tabs_2_tab_content_actions',''),(251908,41431,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(251909,41431,'blocks_5_tabs_2_tab_content',''),(251910,41431,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(251911,41431,'blocks_5_tabs_2_tab_image',''),(251912,41431,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(251913,41431,'blocks_5_tabs','3'),(251914,41431,'_blocks_5_tabs','field_6177cff281419'),(251915,41431,'blocks_4_acfe_flexible_toggle',''),(251916,41431,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(251917,41431,'blocks_4_acfe_flexible_layout_title','Template'),(251918,41431,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(251919,41431,'blocks_4_template','39207'),(251920,41431,'_blocks_4_template','field_617bdd570fe01'),(251921,41431,'blocks_6_acfe_flexible_toggle',''),(251922,41431,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(251923,41431,'blocks_6_acfe_flexible_layout_title','Icons'),(251924,41431,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(251925,41431,'blocks_6_options_theme','#f5f5f5'),(251926,41431,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(251927,41431,'blocks_6_options_format','stacked'),(251928,41431,'_blocks_6_options_format','field_64bfde9a90690'),(251929,41431,'blocks_6_options',''),(251930,41431,'_blocks_6_options','field_64bfdd9b90684'),(251931,41431,'blocks_6_row_content_title','Options available to pay for your course'),(251932,41431,'_blocks_6_row_content_title','field_64bfdd9b90687'),(251933,41431,'blocks_6_row_content_heading','Fees & Funding Options '),(251934,41431,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(251935,41431,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(251936,41431,'_blocks_6_row_content_text','field_64bfdd9b90689'),(251937,41431,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251938,41431,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(251939,41431,'blocks_6_row_content_actions','1'),(251940,41431,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(251941,41431,'blocks_6_row_content',''),(251942,41431,'_blocks_6_row_content','field_64bfdd9b90686'),(251943,41431,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(251944,41431,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(251945,41431,'blocks_6_icon_row_items_0_label','Pay in full'),(251946,41431,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(251947,41431,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(251948,41431,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(251949,41431,'blocks_6_icon_row_items_1_icon','finance.svg'),(251950,41431,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(251951,41431,'blocks_6_icon_row_items_1_label','0% finance'),(251952,41431,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(251953,41431,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(251954,41431,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(251955,41431,'blocks_6_icon_row_items','3'),(251956,41431,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(251957,41431,'blocks_7_acfe_flexible_toggle',''),(251958,41431,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(251959,41431,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(251960,41431,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(251961,41431,'blocks_7_options_theme','#ffffff'),(251962,41431,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(251963,41431,'blocks_7_options_reverse','0'),(251964,41431,'_blocks_7_options_reverse','field_61768049bb8ac'),(251965,41431,'blocks_7_options',''),(251966,41431,'_blocks_7_options','field_617682517c334'),(251967,41431,'blocks_7_split_5050_image','40817'),(251968,41431,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(251969,41431,'blocks_7_split_5050_video',''),(251970,41431,'_blocks_7_split_5050_video','field_6239f3160848a'),(251971,41431,'blocks_7_split_5050_content_title',''),(251972,41431,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(251973,41431,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(251974,41431,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(251975,41431,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(251976,41431,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(251977,41431,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(251978,41431,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(251979,41431,'blocks_7_split_5050_content_actions','1'),(251980,41431,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(251981,41431,'blocks_7_split_5050_content',''),(251982,41431,'_blocks_7_split_5050_content','field_61767afceb8ba'),(251983,41431,'blocks_8_acfe_flexible_toggle',''),(251984,41431,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(251985,41431,'blocks_8_acfe_flexible_layout_title','Icons'),(251986,41431,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(251987,41431,'blocks_8_options_theme','#f5f5f5'),(251988,41431,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(251989,41431,'blocks_8_options_format','row'),(251990,41431,'_blocks_8_options_format','field_64bfde9a90690'),(251991,41431,'blocks_8_options',''),(251992,41431,'_blocks_8_options','field_64bfdd9b90684'),(251993,41431,'blocks_8_icon_row_items_0_icon','qualification.svg'),(251994,41431,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(251995,41431,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(251996,41431,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(251997,41431,'blocks_8_icon_row_items_0_text',''),(251998,41431,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(251999,41431,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(252000,41431,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(252001,41431,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(252002,41431,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(252003,41431,'blocks_8_icon_row_items_1_text',''),(252004,41431,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(252005,41431,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(252006,41431,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(252007,41431,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(252008,41431,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(252009,41431,'blocks_8_icon_row_items_2_text',''),(252010,41431,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(252011,41431,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(252012,41431,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(252013,41431,'blocks_8_icon_row_items_3_label','Flexible funding options'),(252014,41431,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(252015,41431,'blocks_8_icon_row_items_3_text',''),(252016,41431,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(252017,41431,'blocks_8_icon_row_items','4'),(252018,41431,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(252019,41431,'blocks_9_acfe_flexible_toggle',''),(252020,41431,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(252021,41431,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(252022,41431,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(252023,41431,'blocks_9_options_theme','#ffffff'),(252024,41431,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(252025,41431,'blocks_9_options_reverse','1'),(252026,41431,'_blocks_9_options_reverse','field_61768049bb8ac'),(252027,41431,'blocks_9_options',''),(252028,41431,'_blocks_9_options','field_617682517c334'),(252029,41431,'blocks_9_split_5050_image','39224'),(252030,41431,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(252031,41431,'blocks_9_split_5050_video',''),(252032,41431,'_blocks_9_split_5050_video','field_6239f3160848a'),(252033,41431,'blocks_9_split_5050_content_title','Locations'),(252034,41431,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(252035,41431,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(252036,41431,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(252037,41431,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(252038,41431,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(252039,41431,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252040,41431,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(252041,41431,'blocks_9_split_5050_content_actions','1'),(252042,41431,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(252043,41431,'blocks_9_split_5050_content',''),(252044,41431,'_blocks_9_split_5050_content','field_61767afceb8ba'),(252045,41431,'blocks_1_acfe_flexible_toggle',''),(252046,41431,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(252047,41431,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(252048,41431,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(252049,41431,'blocks_1_options_theme','#ffffff'),(252050,41431,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(252051,41431,'blocks_1_options_reverse','0'),(252052,41431,'_blocks_1_options_reverse','field_61768049bb8ac'),(252053,41431,'blocks_1_options',''),(252054,41431,'_blocks_1_options','field_617682517c334'),(252055,41431,'blocks_1_split_5050_image','41430'),(252056,41431,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(252057,41431,'blocks_1_split_5050_video',''),(252058,41431,'_blocks_1_split_5050_video','field_6239f3160848a'),(252059,41431,'blocks_1_split_5050_content_title',''),(252060,41431,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(252061,41431,'blocks_1_split_5050_content_heading','Course Overview'),(252062,41431,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(252063,41431,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(252064,41431,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(252065,41431,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252066,41431,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(252067,41431,'blocks_1_split_5050_content_actions','1'),(252068,41431,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(252069,41431,'blocks_1_split_5050_content',''),(252070,41431,'_blocks_1_split_5050_content','field_61767afceb8ba'),(252071,41431,'blocks_2_acfe_flexible_toggle',''),(252072,41431,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(252073,41431,'blocks_2_acfe_flexible_layout_title','Form'),(252074,41431,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(252075,41431,'blocks_2_row_content_format','standard'),(252076,41431,'_blocks_2_row_content_format','field_6481ead962881'),(252077,41431,'blocks_2_row_content_title',''),(252078,41431,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(252079,41431,'blocks_2_row_content_heading','Enquire Today'),(252080,41431,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(252081,41431,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(252082,41431,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(252083,41431,'blocks_2_row_content_actions',''),(252084,41431,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(252085,41431,'blocks_2_row_content',''),(252086,41431,'_blocks_2_row_content','field_61a0f5f5b3db0'),(252087,41431,'blocks_2_row_form','40394'),(252088,41431,'_blocks_2_row_form','field_61a4ff2c0b08e'),(252089,41431,'blocks_2_row_form_button_label',''),(252090,41431,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(252091,41431,'blocks_3_acfe_flexible_toggle',''),(252092,41431,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(252093,41431,'blocks_3_acfe_flexible_layout_title','Video'),(252094,41431,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(252095,41431,'blocks_3_size','large'),(252096,41431,'_blocks_3_size','field_6487038f297c1'),(252097,41431,'blocks_3_row_content_title',''),(252098,41431,'_blocks_3_row_content_title','field_64870132a865d'),(252099,41431,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(252100,41431,'_blocks_3_row_content_heading','field_64870142a865e'),(252101,41431,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(252102,41431,'_blocks_3_row_content_text','field_64870148a865f'),(252103,41431,'blocks_3_row_content',''),(252104,41431,'_blocks_3_row_content','field_6487008ba865c'),(252105,41431,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(252106,41431,'_blocks_3_video_src','field_6193c4a98ec07'),(252107,41431,'blocks_3_video_thumbnail',''),(252108,41431,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(252109,41431,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(252110,41431,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(252111,41431,'blocks_6_icon_row_items_2_label','Deposit & balance'),(252112,41431,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(252113,41431,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(252114,41431,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(252115,41431,'blocks_10_acfe_flexible_toggle','1'),(252116,41431,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(252117,41431,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(252118,41431,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(252119,41431,'blocks_10_options_theme','#ffffff'),(252120,41431,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(252121,41431,'blocks_10_options',''),(252122,41431,'_blocks_10_options','field_617ac0b7f6c08'),(252123,41431,'blocks_10_show','selection'),(252124,41431,'_blocks_10_show','field_61a49cba9d946'),(252125,41431,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(252126,41431,'_blocks_10_courses','field_61b244781ee0a'),(252127,41431,'blocks_10_open_whats_included','1'),(252128,41431,'_blocks_10_open_whats_included','field_66ebfd679450c'),(252129,41431,'blocks_10_open_key_information','0'),(252130,41431,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(252131,41431,'blocks_10_open',''),(252132,41431,'_blocks_10_open','field_66ebfd009450b'),(252133,41431,'blocks_11_acfe_flexible_toggle',''),(252134,41431,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(252135,41431,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(252136,41431,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(252137,41431,'blocks_11_options_theme','#ffffff'),(252138,41431,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(252139,41431,'blocks_11_options_reverse','0'),(252140,41431,'_blocks_11_options_reverse','field_61768049bb8ac'),(252141,41431,'blocks_11_options',''),(252142,41431,'_blocks_11_options','field_617682517c334'),(252143,41431,'blocks_11_split_5050_image','40812'),(252144,41431,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(252145,41431,'blocks_11_split_5050_video',''),(252146,41431,'_blocks_11_split_5050_video','field_6239f3160848a'),(252147,41431,'blocks_11_split_5050_content_title','Optimise Performance '),(252148,41431,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(252149,41431,'blocks_11_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(252150,41431,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(252151,41431,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(252152,41431,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(252153,41431,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252154,41431,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(252155,41431,'blocks_11_split_5050_content_actions','1'),(252156,41431,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(252157,41431,'blocks_11_split_5050_content',''),(252158,41431,'_blocks_11_split_5050_content','field_61767afceb8ba'),(252159,41431,'blocks_12_acfe_flexible_toggle',''),(252160,41431,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(252161,41431,'blocks_12_acfe_flexible_layout_title','Template'),(252162,41431,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(252163,41431,'blocks_12_template','40987'),(252164,41431,'_blocks_12_template','field_617bdd570fe01'),(252165,41431,'blocks_13_acfe_flexible_toggle',''),(252166,41431,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(252167,41431,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(252168,41431,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(252169,41431,'blocks_13_options_theme','#f5f5f5'),(252170,41431,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(252171,41431,'blocks_13_options_state','0'),(252172,41431,'_blocks_13_options_state','field_6239fcb7508c5'),(252173,41431,'blocks_13_options',''),(252174,41431,'_blocks_13_options','field_6177e2991ac44'),(252175,41431,'blocks_13_content_title',''),(252176,41431,'_blocks_13_content_title','field_64d237e8bb1e2'),(252177,41431,'blocks_13_content_heading','FAQ\'s'),(252178,41431,'_blocks_13_content_heading','field_64d237e8bb1e3'),(252179,41431,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(252180,41431,'_blocks_13_content_text','field_64d237e8bb1e4'),(252181,41431,'blocks_13_content_actions',''),(252182,41431,'_blocks_13_content_actions','field_64d237e8bb1e5'),(252183,41431,'blocks_13_content_align','left'),(252184,41431,'_blocks_13_content_align','field_64d2443e6b6aa'),(252185,41431,'blocks_13_content',''),(252186,41431,'_blocks_13_content','field_64d237e8bb1e1'),(252187,41431,'blocks_13_accordion_content','faqs'),(252188,41431,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(252189,41431,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(252190,41431,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(252191,41431,'blocks_13_actions',''),(252192,41431,'_blocks_13_actions','field_61a746a817f7a'),(252193,41432,'hide_hero','0'),(252194,41432,'_hide_hero','field_66a2380fcda39'),(252195,41432,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(252196,41432,'_hero_title','field_617571fe285e8'),(252197,41432,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(252198,41432,'_hero_text','field_6175723c285e9'),(252199,41432,'hero_actions','1'),(252200,41432,'_hero_actions','field_61757270285ea'),(252201,41432,'hero_style','default'),(252202,41432,'_hero_style','field_62051d9dc5324'),(252203,41432,'_thumbnail_id','41428'),(252204,41432,'__thumbnail_id','field_617570855ddaf'),(252205,41432,'hero_image_pos_x','right'),(252206,41432,'_hero_image_pos_x','field_62ec3d05390bb'),(252207,41432,'hero_image_pos_y','top'),(252208,41432,'_hero_image_pos_y','field_62ec3d05390bc'),(252209,41432,'hero_image_pos',''),(252210,41432,'_hero_image_pos','field_62ec3d05390ba'),(252211,41432,'fft_hide_from_listings','0'),(252212,41432,'_fft_hide_from_listings','field_61f1320446ab2'),(252213,41432,'fft_page_format','default'),(252214,41432,'_fft_page_format','field_61ae213f1f218'),(252215,41432,'fft_hide_nav','0'),(252216,41432,'_fft_hide_nav','field_635bd5e43527c'),(252217,41432,'fft_hide_header_call_to_action','0'),(252218,41432,'_fft_hide_header_call_to_action','field_635bd6723527d'),(252219,41432,'fft_page_sitemap','0'),(252220,41432,'_fft_page_sitemap','field_61af9b34e8181'),(252221,41432,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(252222,41432,'_blocks','field_6176696113096'),(252223,41432,'course_label_text',''),(252224,41432,'_course_label_text','field_61e17babf71fa'),(252225,41432,'course_label',''),(252226,41432,'_course_label','field_61e12f92749a7'),(252227,41432,'course_description',''),(252228,41432,'_course_description','field_617ac5788e5e1'),(252229,41432,'course_key_info',''),(252230,41432,'_course_key_info','field_617ac6ad8e5e2'),(252231,41432,'course_included',''),(252232,41432,'_course_included','field_617ac6f08e5e4'),(252233,41432,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252234,41432,'_hero_actions_0_button','field_61757281285eb'),(252235,41432,'blocks_0_acfe_flexible_toggle',''),(252236,41432,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(252237,41432,'blocks_0_acfe_flexible_layout_title','Icons'),(252238,41432,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(252239,41432,'blocks_0_options_theme','#b61234'),(252240,41432,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(252241,41432,'blocks_0_options_format','row'),(252242,41432,'_blocks_0_options_format','field_64bfde9a90690'),(252243,41432,'blocks_0_options',''),(252244,41432,'_blocks_0_options','field_64bfdd9b90684'),(252245,41432,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(252246,41432,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(252247,41432,'blocks_0_icon_row_items_0_label','Accreditation'),(252248,41432,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(252249,41432,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(252250,41432,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(252251,41432,'blocks_0_icon_row_items_1_icon','finance.svg'),(252252,41432,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(252253,41432,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(252254,41432,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(252255,41432,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(252256,41432,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(252257,41432,'blocks_0_icon_row_items_2_icon','progression.svg'),(252258,41432,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(252259,41432,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(252260,41432,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(252261,41432,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(252262,41432,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(252263,41432,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(252264,41432,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(252265,41432,'blocks_0_icon_row_items_3_label','Qualification'),(252266,41432,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(252267,41432,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(252268,41432,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(252269,41432,'blocks_0_icon_row_items','4'),(252270,41432,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(252271,41432,'blocks_5_acfe_flexible_toggle','1'),(252272,41432,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(252273,41432,'blocks_5_acfe_flexible_layout_title','Tabs'),(252274,41432,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(252275,41432,'blocks_5_options_theme','#ffffff'),(252276,41432,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(252277,41432,'blocks_5_options',''),(252278,41432,'_blocks_5_options','field_6177cfcd8140f'),(252279,41432,'blocks_5_tabs_0_tab_label','Entry requirements'),(252280,41432,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(252281,41432,'blocks_5_tabs_0_tab_content_title',''),(252282,41432,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(252283,41432,'blocks_5_tabs_0_tab_content_heading',''),(252284,41432,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(252285,41432,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(252286,41432,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(252287,41432,'blocks_5_tabs_0_tab_content_actions',''),(252288,41432,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(252289,41432,'blocks_5_tabs_0_tab_content',''),(252290,41432,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(252291,41432,'blocks_5_tabs_0_tab_image',''),(252292,41432,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(252293,41432,'blocks_5_tabs_1_tab_label','Learning format'),(252294,41432,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(252295,41432,'blocks_5_tabs_1_tab_content_title',''),(252296,41432,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(252297,41432,'blocks_5_tabs_1_tab_content_heading',''),(252298,41432,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(252299,41432,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(252300,41432,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(252301,41432,'blocks_5_tabs_1_tab_content_actions',''),(252302,41432,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(252303,41432,'blocks_5_tabs_1_tab_content',''),(252304,41432,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(252305,41432,'blocks_5_tabs_1_tab_image',''),(252306,41432,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(252307,41432,'blocks_5_tabs_2_tab_label','Qualifications included'),(252308,41432,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(252309,41432,'blocks_5_tabs_2_tab_content_title',''),(252310,41432,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(252311,41432,'blocks_5_tabs_2_tab_content_heading',''),(252312,41432,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(252313,41432,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(252314,41432,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(252315,41432,'blocks_5_tabs_2_tab_content_actions',''),(252316,41432,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(252317,41432,'blocks_5_tabs_2_tab_content',''),(252318,41432,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(252319,41432,'blocks_5_tabs_2_tab_image',''),(252320,41432,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(252321,41432,'blocks_5_tabs','3'),(252322,41432,'_blocks_5_tabs','field_6177cff281419'),(252323,41432,'blocks_4_acfe_flexible_toggle',''),(252324,41432,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(252325,41432,'blocks_4_acfe_flexible_layout_title','Template'),(252326,41432,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(252327,41432,'blocks_4_template','39207'),(252328,41432,'_blocks_4_template','field_617bdd570fe01'),(252329,41432,'blocks_6_acfe_flexible_toggle',''),(252330,41432,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(252331,41432,'blocks_6_acfe_flexible_layout_title','Icons'),(252332,41432,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(252333,41432,'blocks_6_options_theme','#f5f5f5'),(252334,41432,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(252335,41432,'blocks_6_options_format','stacked'),(252336,41432,'_blocks_6_options_format','field_64bfde9a90690'),(252337,41432,'blocks_6_options',''),(252338,41432,'_blocks_6_options','field_64bfdd9b90684'),(252339,41432,'blocks_6_row_content_title','Options available to pay for your course'),(252340,41432,'_blocks_6_row_content_title','field_64bfdd9b90687'),(252341,41432,'blocks_6_row_content_heading','Fees & Funding Options '),(252342,41432,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(252343,41432,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(252344,41432,'_blocks_6_row_content_text','field_64bfdd9b90689'),(252345,41432,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252346,41432,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(252347,41432,'blocks_6_row_content_actions','1'),(252348,41432,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(252349,41432,'blocks_6_row_content',''),(252350,41432,'_blocks_6_row_content','field_64bfdd9b90686'),(252351,41432,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(252352,41432,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(252353,41432,'blocks_6_icon_row_items_0_label','Pay in full'),(252354,41432,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(252355,41432,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(252356,41432,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(252357,41432,'blocks_6_icon_row_items_1_icon','finance.svg'),(252358,41432,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(252359,41432,'blocks_6_icon_row_items_1_label','0% finance'),(252360,41432,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(252361,41432,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(252362,41432,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(252363,41432,'blocks_6_icon_row_items','3'),(252364,41432,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(252365,41432,'blocks_7_acfe_flexible_toggle',''),(252366,41432,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(252367,41432,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(252368,41432,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(252369,41432,'blocks_7_options_theme','#ffffff'),(252370,41432,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(252371,41432,'blocks_7_options_reverse','0'),(252372,41432,'_blocks_7_options_reverse','field_61768049bb8ac'),(252373,41432,'blocks_7_options',''),(252374,41432,'_blocks_7_options','field_617682517c334'),(252375,41432,'blocks_7_split_5050_image','41333'),(252376,41432,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(252377,41432,'blocks_7_split_5050_video',''),(252378,41432,'_blocks_7_split_5050_video','field_6239f3160848a'),(252379,41432,'blocks_7_split_5050_content_title',''),(252380,41432,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(252381,41432,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(252382,41432,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(252383,41432,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(252384,41432,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(252385,41432,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252386,41432,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(252387,41432,'blocks_7_split_5050_content_actions','1'),(252388,41432,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(252389,41432,'blocks_7_split_5050_content',''),(252390,41432,'_blocks_7_split_5050_content','field_61767afceb8ba'),(252391,41432,'blocks_8_acfe_flexible_toggle',''),(252392,41432,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(252393,41432,'blocks_8_acfe_flexible_layout_title','Icons'),(252394,41432,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(252395,41432,'blocks_8_options_theme','#f5f5f5'),(252396,41432,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(252397,41432,'blocks_8_options_format','row'),(252398,41432,'_blocks_8_options_format','field_64bfde9a90690'),(252399,41432,'blocks_8_options',''),(252400,41432,'_blocks_8_options','field_64bfdd9b90684'),(252401,41432,'blocks_8_icon_row_items_0_icon','qualification.svg'),(252402,41432,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(252403,41432,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(252404,41432,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(252405,41432,'blocks_8_icon_row_items_0_text',''),(252406,41432,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(252407,41432,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(252408,41432,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(252409,41432,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(252410,41432,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(252411,41432,'blocks_8_icon_row_items_1_text',''),(252412,41432,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(252413,41432,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(252414,41432,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(252415,41432,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(252416,41432,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(252417,41432,'blocks_8_icon_row_items_2_text',''),(252418,41432,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(252419,41432,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(252420,41432,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(252421,41432,'blocks_8_icon_row_items_3_label','Flexible funding options'),(252422,41432,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(252423,41432,'blocks_8_icon_row_items_3_text',''),(252424,41432,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(252425,41432,'blocks_8_icon_row_items','4'),(252426,41432,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(252427,41432,'blocks_9_acfe_flexible_toggle',''),(252428,41432,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(252429,41432,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(252430,41432,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(252431,41432,'blocks_9_options_theme','#ffffff'),(252432,41432,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(252433,41432,'blocks_9_options_reverse','1'),(252434,41432,'_blocks_9_options_reverse','field_61768049bb8ac'),(252435,41432,'blocks_9_options',''),(252436,41432,'_blocks_9_options','field_617682517c334'),(252437,41432,'blocks_9_split_5050_image','39224'),(252438,41432,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(252439,41432,'blocks_9_split_5050_video',''),(252440,41432,'_blocks_9_split_5050_video','field_6239f3160848a'),(252441,41432,'blocks_9_split_5050_content_title','Locations'),(252442,41432,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(252443,41432,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(252444,41432,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(252445,41432,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(252446,41432,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(252447,41432,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252448,41432,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(252449,41432,'blocks_9_split_5050_content_actions','1'),(252450,41432,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(252451,41432,'blocks_9_split_5050_content',''),(252452,41432,'_blocks_9_split_5050_content','field_61767afceb8ba'),(252453,41432,'blocks_1_acfe_flexible_toggle',''),(252454,41432,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(252455,41432,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(252456,41432,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(252457,41432,'blocks_1_options_theme','#ffffff'),(252458,41432,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(252459,41432,'blocks_1_options_reverse','0'),(252460,41432,'_blocks_1_options_reverse','field_61768049bb8ac'),(252461,41432,'blocks_1_options',''),(252462,41432,'_blocks_1_options','field_617682517c334'),(252463,41432,'blocks_1_split_5050_image','41430'),(252464,41432,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(252465,41432,'blocks_1_split_5050_video',''),(252466,41432,'_blocks_1_split_5050_video','field_6239f3160848a'),(252467,41432,'blocks_1_split_5050_content_title',''),(252468,41432,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(252469,41432,'blocks_1_split_5050_content_heading','Course Overview'),(252470,41432,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(252471,41432,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(252472,41432,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(252473,41432,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252474,41432,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(252475,41432,'blocks_1_split_5050_content_actions','1'),(252476,41432,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(252477,41432,'blocks_1_split_5050_content',''),(252478,41432,'_blocks_1_split_5050_content','field_61767afceb8ba'),(252479,41432,'blocks_2_acfe_flexible_toggle',''),(252480,41432,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(252481,41432,'blocks_2_acfe_flexible_layout_title','Form'),(252482,41432,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(252483,41432,'blocks_2_row_content_format','standard'),(252484,41432,'_blocks_2_row_content_format','field_6481ead962881'),(252485,41432,'blocks_2_row_content_title',''),(252486,41432,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(252487,41432,'blocks_2_row_content_heading','Enquire Today'),(252488,41432,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(252489,41432,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(252490,41432,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(252491,41432,'blocks_2_row_content_actions',''),(252492,41432,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(252493,41432,'blocks_2_row_content',''),(252494,41432,'_blocks_2_row_content','field_61a0f5f5b3db0'),(252495,41432,'blocks_2_row_form','40394'),(252496,41432,'_blocks_2_row_form','field_61a4ff2c0b08e'),(252497,41432,'blocks_2_row_form_button_label',''),(252498,41432,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(252499,41432,'blocks_3_acfe_flexible_toggle',''),(252500,41432,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(252501,41432,'blocks_3_acfe_flexible_layout_title','Video'),(252502,41432,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(252503,41432,'blocks_3_size','large'),(252504,41432,'_blocks_3_size','field_6487038f297c1'),(252505,41432,'blocks_3_row_content_title',''),(252506,41432,'_blocks_3_row_content_title','field_64870132a865d'),(252507,41432,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(252508,41432,'_blocks_3_row_content_heading','field_64870142a865e'),(252509,41432,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(252510,41432,'_blocks_3_row_content_text','field_64870148a865f'),(252511,41432,'blocks_3_row_content',''),(252512,41432,'_blocks_3_row_content','field_6487008ba865c'),(252513,41432,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(252514,41432,'_blocks_3_video_src','field_6193c4a98ec07'),(252515,41432,'blocks_3_video_thumbnail',''),(252516,41432,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(252517,41432,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(252518,41432,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(252519,41432,'blocks_6_icon_row_items_2_label','Deposit & balance'),(252520,41432,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(252521,41432,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(252522,41432,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(252523,41432,'blocks_10_acfe_flexible_toggle','1'),(252524,41432,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(252525,41432,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(252526,41432,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(252527,41432,'blocks_10_options_theme','#ffffff'),(252528,41432,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(252529,41432,'blocks_10_options',''),(252530,41432,'_blocks_10_options','field_617ac0b7f6c08'),(252531,41432,'blocks_10_show','selection'),(252532,41432,'_blocks_10_show','field_61a49cba9d946'),(252533,41432,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(252534,41432,'_blocks_10_courses','field_61b244781ee0a'),(252535,41432,'blocks_10_open_whats_included','1'),(252536,41432,'_blocks_10_open_whats_included','field_66ebfd679450c'),(252537,41432,'blocks_10_open_key_information','0'),(252538,41432,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(252539,41432,'blocks_10_open',''),(252540,41432,'_blocks_10_open','field_66ebfd009450b'),(252541,41432,'blocks_11_acfe_flexible_toggle',''),(252542,41432,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(252543,41432,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(252544,41432,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(252545,41432,'blocks_11_options_theme','#ffffff'),(252546,41432,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(252547,41432,'blocks_11_options_reverse','0'),(252548,41432,'_blocks_11_options_reverse','field_61768049bb8ac'),(252549,41432,'blocks_11_options',''),(252550,41432,'_blocks_11_options','field_617682517c334'),(252551,41432,'blocks_11_split_5050_image','41299'),(252552,41432,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(252553,41432,'blocks_11_split_5050_video',''),(252554,41432,'_blocks_11_split_5050_video','field_6239f3160848a'),(252555,41432,'blocks_11_split_5050_content_title','Optimise Performance '),(252556,41432,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(252557,41432,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(252558,41432,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(252559,41432,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(252560,41432,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(252561,41432,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252562,41432,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(252563,41432,'blocks_11_split_5050_content_actions','1'),(252564,41432,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(252565,41432,'blocks_11_split_5050_content',''),(252566,41432,'_blocks_11_split_5050_content','field_61767afceb8ba'),(252567,41432,'blocks_12_acfe_flexible_toggle',''),(252568,41432,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(252569,41432,'blocks_12_acfe_flexible_layout_title','Template'),(252570,41432,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(252571,41432,'blocks_12_template','40987'),(252572,41432,'_blocks_12_template','field_617bdd570fe01'),(252573,41432,'blocks_13_acfe_flexible_toggle',''),(252574,41432,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(252575,41432,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(252576,41432,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(252577,41432,'blocks_13_options_theme','#f5f5f5'),(252578,41432,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(252579,41432,'blocks_13_options_state','0'),(252580,41432,'_blocks_13_options_state','field_6239fcb7508c5'),(252581,41432,'blocks_13_options',''),(252582,41432,'_blocks_13_options','field_6177e2991ac44'),(252583,41432,'blocks_13_content_title',''),(252584,41432,'_blocks_13_content_title','field_64d237e8bb1e2'),(252585,41432,'blocks_13_content_heading','FAQ\'s'),(252586,41432,'_blocks_13_content_heading','field_64d237e8bb1e3'),(252587,41432,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(252588,41432,'_blocks_13_content_text','field_64d237e8bb1e4'),(252589,41432,'blocks_13_content_actions',''),(252590,41432,'_blocks_13_content_actions','field_64d237e8bb1e5'),(252591,41432,'blocks_13_content_align','left'),(252592,41432,'_blocks_13_content_align','field_64d2443e6b6aa'),(252593,41432,'blocks_13_content',''),(252594,41432,'_blocks_13_content','field_64d237e8bb1e1'),(252595,41432,'blocks_13_accordion_content','faqs'),(252596,41432,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(252597,41432,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(252598,41432,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(252599,41432,'blocks_13_actions',''),(252600,41432,'_blocks_13_actions','field_61a746a817f7a'),(252601,41433,'hide_hero','0'),(252602,41433,'_hide_hero','field_66a2380fcda39'),(252603,41433,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(252604,41433,'_hero_title','field_617571fe285e8'),(252605,41433,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(252606,41433,'_hero_text','field_6175723c285e9'),(252607,41433,'hero_actions','1'),(252608,41433,'_hero_actions','field_61757270285ea'),(252609,41433,'hero_style','default'),(252610,41433,'_hero_style','field_62051d9dc5324'),(252611,41433,'_thumbnail_id','41428'),(252612,41433,'__thumbnail_id','field_617570855ddaf'),(252613,41433,'hero_image_pos_x','right'),(252614,41433,'_hero_image_pos_x','field_62ec3d05390bb'),(252615,41433,'hero_image_pos_y','top'),(252616,41433,'_hero_image_pos_y','field_62ec3d05390bc'),(252617,41433,'hero_image_pos',''),(252618,41433,'_hero_image_pos','field_62ec3d05390ba'),(252619,41433,'fft_hide_from_listings','0'),(252620,41433,'_fft_hide_from_listings','field_61f1320446ab2'),(252621,41433,'fft_page_format','default'),(252622,41433,'_fft_page_format','field_61ae213f1f218'),(252623,41433,'fft_hide_nav','0'),(252624,41433,'_fft_hide_nav','field_635bd5e43527c'),(252625,41433,'fft_hide_header_call_to_action','0'),(252626,41433,'_fft_hide_header_call_to_action','field_635bd6723527d'),(252627,41433,'fft_page_sitemap','0'),(252628,41433,'_fft_page_sitemap','field_61af9b34e8181'),(252629,41433,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(252630,41433,'_blocks','field_6176696113096'),(252631,41433,'course_label_text',''),(252632,41433,'_course_label_text','field_61e17babf71fa'),(252633,41433,'course_label',''),(252634,41433,'_course_label','field_61e12f92749a7'),(252635,41433,'course_description',''),(252636,41433,'_course_description','field_617ac5788e5e1'),(252637,41433,'course_key_info',''),(252638,41433,'_course_key_info','field_617ac6ad8e5e2'),(252639,41433,'course_included',''),(252640,41433,'_course_included','field_617ac6f08e5e4'),(252641,41433,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252642,41433,'_hero_actions_0_button','field_61757281285eb'),(252643,41433,'blocks_0_acfe_flexible_toggle',''),(252644,41433,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(252645,41433,'blocks_0_acfe_flexible_layout_title','Icons'),(252646,41433,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(252647,41433,'blocks_0_options_theme','#b61234'),(252648,41433,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(252649,41433,'blocks_0_options_format','row'),(252650,41433,'_blocks_0_options_format','field_64bfde9a90690'),(252651,41433,'blocks_0_options',''),(252652,41433,'_blocks_0_options','field_64bfdd9b90684'),(252653,41433,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(252654,41433,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(252655,41433,'blocks_0_icon_row_items_0_label','Accreditation'),(252656,41433,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(252657,41433,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(252658,41433,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(252659,41433,'blocks_0_icon_row_items_1_icon','finance.svg'),(252660,41433,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(252661,41433,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(252662,41433,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(252663,41433,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(252664,41433,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(252665,41433,'blocks_0_icon_row_items_2_icon','progression.svg'),(252666,41433,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(252667,41433,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(252668,41433,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(252669,41433,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(252670,41433,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(252671,41433,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(252672,41433,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(252673,41433,'blocks_0_icon_row_items_3_label','Qualification'),(252674,41433,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(252675,41433,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(252676,41433,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(252677,41433,'blocks_0_icon_row_items','4'),(252678,41433,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(252679,41433,'blocks_5_acfe_flexible_toggle','1'),(252680,41433,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(252681,41433,'blocks_5_acfe_flexible_layout_title','Tabs'),(252682,41433,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(252683,41433,'blocks_5_options_theme','#ffffff'),(252684,41433,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(252685,41433,'blocks_5_options',''),(252686,41433,'_blocks_5_options','field_6177cfcd8140f'),(252687,41433,'blocks_5_tabs_0_tab_label','Entry requirements'),(252688,41433,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(252689,41433,'blocks_5_tabs_0_tab_content_title',''),(252690,41433,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(252691,41433,'blocks_5_tabs_0_tab_content_heading',''),(252692,41433,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(252693,41433,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(252694,41433,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(252695,41433,'blocks_5_tabs_0_tab_content_actions',''),(252696,41433,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(252697,41433,'blocks_5_tabs_0_tab_content',''),(252698,41433,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(252699,41433,'blocks_5_tabs_0_tab_image',''),(252700,41433,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(252701,41433,'blocks_5_tabs_1_tab_label','Learning format'),(252702,41433,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(252703,41433,'blocks_5_tabs_1_tab_content_title',''),(252704,41433,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(252705,41433,'blocks_5_tabs_1_tab_content_heading',''),(252706,41433,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(252707,41433,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(252708,41433,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(252709,41433,'blocks_5_tabs_1_tab_content_actions',''),(252710,41433,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(252711,41433,'blocks_5_tabs_1_tab_content',''),(252712,41433,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(252713,41433,'blocks_5_tabs_1_tab_image',''),(252714,41433,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(252715,41433,'blocks_5_tabs_2_tab_label','Qualifications included'),(252716,41433,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(252717,41433,'blocks_5_tabs_2_tab_content_title',''),(252718,41433,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(252719,41433,'blocks_5_tabs_2_tab_content_heading',''),(252720,41433,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(252721,41433,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(252722,41433,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(252723,41433,'blocks_5_tabs_2_tab_content_actions',''),(252724,41433,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(252725,41433,'blocks_5_tabs_2_tab_content',''),(252726,41433,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(252727,41433,'blocks_5_tabs_2_tab_image',''),(252728,41433,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(252729,41433,'blocks_5_tabs','3'),(252730,41433,'_blocks_5_tabs','field_6177cff281419'),(252731,41433,'blocks_4_acfe_flexible_toggle',''),(252732,41433,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(252733,41433,'blocks_4_acfe_flexible_layout_title','Template'),(252734,41433,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(252735,41433,'blocks_4_template','39207'),(252736,41433,'_blocks_4_template','field_617bdd570fe01'),(252737,41433,'blocks_6_acfe_flexible_toggle',''),(252738,41433,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(252739,41433,'blocks_6_acfe_flexible_layout_title','Icons'),(252740,41433,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(252741,41433,'blocks_6_options_theme','#f5f5f5'),(252742,41433,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(252743,41433,'blocks_6_options_format','stacked'),(252744,41433,'_blocks_6_options_format','field_64bfde9a90690'),(252745,41433,'blocks_6_options',''),(252746,41433,'_blocks_6_options','field_64bfdd9b90684'),(252747,41433,'blocks_6_row_content_title','Options available to pay for your course'),(252748,41433,'_blocks_6_row_content_title','field_64bfdd9b90687'),(252749,41433,'blocks_6_row_content_heading','Fees & Funding Options '),(252750,41433,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(252751,41433,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(252752,41433,'_blocks_6_row_content_text','field_64bfdd9b90689'),(252753,41433,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252754,41433,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(252755,41433,'blocks_6_row_content_actions','1'),(252756,41433,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(252757,41433,'blocks_6_row_content',''),(252758,41433,'_blocks_6_row_content','field_64bfdd9b90686'),(252759,41433,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(252760,41433,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(252761,41433,'blocks_6_icon_row_items_0_label','Pay in full'),(252762,41433,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(252763,41433,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(252764,41433,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(252765,41433,'blocks_6_icon_row_items_1_icon','finance.svg'),(252766,41433,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(252767,41433,'blocks_6_icon_row_items_1_label','0% finance'),(252768,41433,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(252769,41433,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(252770,41433,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(252771,41433,'blocks_6_icon_row_items','3'),(252772,41433,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(252773,41433,'blocks_7_acfe_flexible_toggle',''),(252774,41433,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(252775,41433,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(252776,41433,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(252777,41433,'blocks_7_options_theme','#ffffff'),(252778,41433,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(252779,41433,'blocks_7_options_reverse','0'),(252780,41433,'_blocks_7_options_reverse','field_61768049bb8ac'),(252781,41433,'blocks_7_options',''),(252782,41433,'_blocks_7_options','field_617682517c334'),(252783,41433,'blocks_7_split_5050_image','41333'),(252784,41433,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(252785,41433,'blocks_7_split_5050_video',''),(252786,41433,'_blocks_7_split_5050_video','field_6239f3160848a'),(252787,41433,'blocks_7_split_5050_content_title',''),(252788,41433,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(252789,41433,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(252790,41433,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(252791,41433,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(252792,41433,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(252793,41433,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252794,41433,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(252795,41433,'blocks_7_split_5050_content_actions','1'),(252796,41433,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(252797,41433,'blocks_7_split_5050_content',''),(252798,41433,'_blocks_7_split_5050_content','field_61767afceb8ba'),(252799,41433,'blocks_8_acfe_flexible_toggle',''),(252800,41433,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(252801,41433,'blocks_8_acfe_flexible_layout_title','Icons'),(252802,41433,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(252803,41433,'blocks_8_options_theme','#f5f5f5'),(252804,41433,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(252805,41433,'blocks_8_options_format','row'),(252806,41433,'_blocks_8_options_format','field_64bfde9a90690'),(252807,41433,'blocks_8_options',''),(252808,41433,'_blocks_8_options','field_64bfdd9b90684'),(252809,41433,'blocks_8_icon_row_items_0_icon','qualification.svg'),(252810,41433,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(252811,41433,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(252812,41433,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(252813,41433,'blocks_8_icon_row_items_0_text',''),(252814,41433,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(252815,41433,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(252816,41433,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(252817,41433,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(252818,41433,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(252819,41433,'blocks_8_icon_row_items_1_text',''),(252820,41433,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(252821,41433,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(252822,41433,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(252823,41433,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(252824,41433,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(252825,41433,'blocks_8_icon_row_items_2_text',''),(252826,41433,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(252827,41433,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(252828,41433,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(252829,41433,'blocks_8_icon_row_items_3_label','Flexible funding options'),(252830,41433,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(252831,41433,'blocks_8_icon_row_items_3_text',''),(252832,41433,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(252833,41433,'blocks_8_icon_row_items','4'),(252834,41433,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(252835,41433,'blocks_9_acfe_flexible_toggle',''),(252836,41433,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(252837,41433,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(252838,41433,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(252839,41433,'blocks_9_options_theme','#ffffff'),(252840,41433,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(252841,41433,'blocks_9_options_reverse','1'),(252842,41433,'_blocks_9_options_reverse','field_61768049bb8ac'),(252843,41433,'blocks_9_options',''),(252844,41433,'_blocks_9_options','field_617682517c334'),(252845,41433,'blocks_9_split_5050_image','39224'),(252846,41433,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(252847,41433,'blocks_9_split_5050_video',''),(252848,41433,'_blocks_9_split_5050_video','field_6239f3160848a'),(252849,41433,'blocks_9_split_5050_content_title','Locations'),(252850,41433,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(252851,41433,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(252852,41433,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(252853,41433,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(252854,41433,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(252855,41433,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252856,41433,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(252857,41433,'blocks_9_split_5050_content_actions','1'),(252858,41433,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(252859,41433,'blocks_9_split_5050_content',''),(252860,41433,'_blocks_9_split_5050_content','field_61767afceb8ba'),(252861,41433,'blocks_1_acfe_flexible_toggle',''),(252862,41433,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(252863,41433,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(252864,41433,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(252865,41433,'blocks_1_options_theme','#ffffff'),(252866,41433,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(252867,41433,'blocks_1_options_reverse','0'),(252868,41433,'_blocks_1_options_reverse','field_61768049bb8ac'),(252869,41433,'blocks_1_options',''),(252870,41433,'_blocks_1_options','field_617682517c334'),(252871,41433,'blocks_1_split_5050_image','41430'),(252872,41433,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(252873,41433,'blocks_1_split_5050_video',''),(252874,41433,'_blocks_1_split_5050_video','field_6239f3160848a'),(252875,41433,'blocks_1_split_5050_content_title',''),(252876,41433,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(252877,41433,'blocks_1_split_5050_content_heading','Course Overview'),(252878,41433,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(252879,41433,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(252880,41433,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(252881,41433,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252882,41433,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(252883,41433,'blocks_1_split_5050_content_actions','1'),(252884,41433,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(252885,41433,'blocks_1_split_5050_content',''),(252886,41433,'_blocks_1_split_5050_content','field_61767afceb8ba'),(252887,41433,'blocks_2_acfe_flexible_toggle',''),(252888,41433,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(252889,41433,'blocks_2_acfe_flexible_layout_title','Form'),(252890,41433,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(252891,41433,'blocks_2_row_content_format','standard'),(252892,41433,'_blocks_2_row_content_format','field_6481ead962881'),(252893,41433,'blocks_2_row_content_title',''),(252894,41433,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(252895,41433,'blocks_2_row_content_heading','Enquire Today'),(252896,41433,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(252897,41433,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(252898,41433,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(252899,41433,'blocks_2_row_content_actions',''),(252900,41433,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(252901,41433,'blocks_2_row_content',''),(252902,41433,'_blocks_2_row_content','field_61a0f5f5b3db0'),(252903,41433,'blocks_2_row_form','40394'),(252904,41433,'_blocks_2_row_form','field_61a4ff2c0b08e'),(252905,41433,'blocks_2_row_form_button_label',''),(252906,41433,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(252907,41433,'blocks_3_acfe_flexible_toggle',''),(252908,41433,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(252909,41433,'blocks_3_acfe_flexible_layout_title','Video'),(252910,41433,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(252911,41433,'blocks_3_size','large'),(252912,41433,'_blocks_3_size','field_6487038f297c1'),(252913,41433,'blocks_3_row_content_title',''),(252914,41433,'_blocks_3_row_content_title','field_64870132a865d'),(252915,41433,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(252916,41433,'_blocks_3_row_content_heading','field_64870142a865e'),(252917,41433,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(252918,41433,'_blocks_3_row_content_text','field_64870148a865f'),(252919,41433,'blocks_3_row_content',''),(252920,41433,'_blocks_3_row_content','field_6487008ba865c'),(252921,41433,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(252922,41433,'_blocks_3_video_src','field_6193c4a98ec07'),(252923,41433,'blocks_3_video_thumbnail',''),(252924,41433,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(252925,41433,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(252926,41433,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(252927,41433,'blocks_6_icon_row_items_2_label','Deposit & balance'),(252928,41433,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(252929,41433,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(252930,41433,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(252931,41433,'blocks_10_acfe_flexible_toggle','1'),(252932,41433,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(252933,41433,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(252934,41433,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(252935,41433,'blocks_10_options_theme','#ffffff'),(252936,41433,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(252937,41433,'blocks_10_options',''),(252938,41433,'_blocks_10_options','field_617ac0b7f6c08'),(252939,41433,'blocks_10_show','selection'),(252940,41433,'_blocks_10_show','field_61a49cba9d946'),(252941,41433,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(252942,41433,'_blocks_10_courses','field_61b244781ee0a'),(252943,41433,'blocks_10_open_whats_included','1'),(252944,41433,'_blocks_10_open_whats_included','field_66ebfd679450c'),(252945,41433,'blocks_10_open_key_information','0'),(252946,41433,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(252947,41433,'blocks_10_open',''),(252948,41433,'_blocks_10_open','field_66ebfd009450b'),(252949,41433,'blocks_11_acfe_flexible_toggle',''),(252950,41433,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(252951,41433,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(252952,41433,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(252953,41433,'blocks_11_options_theme','#ffffff'),(252954,41433,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(252955,41433,'blocks_11_options_reverse','0'),(252956,41433,'_blocks_11_options_reverse','field_61768049bb8ac'),(252957,41433,'blocks_11_options',''),(252958,41433,'_blocks_11_options','field_617682517c334'),(252959,41433,'blocks_11_split_5050_image','41299'),(252960,41433,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(252961,41433,'blocks_11_split_5050_video',''),(252962,41433,'_blocks_11_split_5050_video','field_6239f3160848a'),(252963,41433,'blocks_11_split_5050_content_title','Optimise Performance '),(252964,41433,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(252965,41433,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(252966,41433,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(252967,41433,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(252968,41433,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(252969,41433,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(252970,41433,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(252971,41433,'blocks_11_split_5050_content_actions','1'),(252972,41433,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(252973,41433,'blocks_11_split_5050_content',''),(252974,41433,'_blocks_11_split_5050_content','field_61767afceb8ba'),(252975,41433,'blocks_12_acfe_flexible_toggle',''),(252976,41433,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(252977,41433,'blocks_12_acfe_flexible_layout_title','Template'),(252978,41433,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(252979,41433,'blocks_12_template','40987'),(252980,41433,'_blocks_12_template','field_617bdd570fe01'),(252981,41433,'blocks_13_acfe_flexible_toggle',''),(252982,41433,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(252983,41433,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(252984,41433,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(252985,41433,'blocks_13_options_theme','#f5f5f5'),(252986,41433,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(252987,41433,'blocks_13_options_state','0'),(252988,41433,'_blocks_13_options_state','field_6239fcb7508c5'),(252989,41433,'blocks_13_options',''),(252990,41433,'_blocks_13_options','field_6177e2991ac44'),(252991,41433,'blocks_13_content_title',''),(252992,41433,'_blocks_13_content_title','field_64d237e8bb1e2'),(252993,41433,'blocks_13_content_heading','FAQ\'s'),(252994,41433,'_blocks_13_content_heading','field_64d237e8bb1e3'),(252995,41433,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(252996,41433,'_blocks_13_content_text','field_64d237e8bb1e4'),(252997,41433,'blocks_13_content_actions',''),(252998,41433,'_blocks_13_content_actions','field_64d237e8bb1e5'),(252999,41433,'blocks_13_content_align','left'),(253000,41433,'_blocks_13_content_align','field_64d2443e6b6aa'),(253001,41433,'blocks_13_content',''),(253002,41433,'_blocks_13_content','field_64d237e8bb1e1'),(253003,41433,'blocks_13_accordion_content','faqs'),(253004,41433,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(253005,41433,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(253006,41433,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(253007,41433,'blocks_13_actions',''),(253008,41433,'_blocks_13_actions','field_61a746a817f7a'),(253009,41434,'_edit_lock','1730996574:13'),(253010,41434,'_edit_last','13'),(253011,41435,'hide_hero','0'),(253012,41435,'_hide_hero','field_66a2380fcda39'),(253013,41435,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(253014,41435,'_hero_title','field_617571fe285e8'),(253015,41435,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(253016,41435,'_hero_text','field_6175723c285e9'),(253017,41435,'hero_actions','1'),(253018,41435,'_hero_actions','field_61757270285ea'),(253019,41435,'hero_style','default'),(253020,41435,'_hero_style','field_62051d9dc5324'),(253021,41435,'_thumbnail_id','41428'),(253022,41435,'__thumbnail_id','field_617570855ddaf'),(253023,41435,'hero_image_pos_x','right'),(253024,41435,'_hero_image_pos_x','field_62ec3d05390bb'),(253025,41435,'hero_image_pos_y','top'),(253026,41435,'_hero_image_pos_y','field_62ec3d05390bc'),(253027,41435,'hero_image_pos',''),(253028,41435,'_hero_image_pos','field_62ec3d05390ba'),(253029,41435,'fft_hide_from_listings','0'),(253030,41435,'_fft_hide_from_listings','field_61f1320446ab2'),(253031,41435,'fft_page_format','default'),(253032,41435,'_fft_page_format','field_61ae213f1f218'),(253033,41435,'fft_hide_nav','0'),(253034,41435,'_fft_hide_nav','field_635bd5e43527c'),(253035,41435,'fft_hide_header_call_to_action','0'),(253036,41435,'_fft_hide_header_call_to_action','field_635bd6723527d'),(253037,41435,'fft_page_sitemap','0'),(253038,41435,'_fft_page_sitemap','field_61af9b34e8181'),(253039,41435,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(253040,41435,'_blocks','field_6176696113096'),(253041,41435,'course_label_text',''),(253042,41435,'_course_label_text','field_61e17babf71fa'),(253043,41435,'course_label',''),(253044,41435,'_course_label','field_61e12f92749a7'),(253045,41435,'course_description',''),(253046,41435,'_course_description','field_617ac5788e5e1'),(253047,41435,'course_key_info',''),(253048,41435,'_course_key_info','field_617ac6ad8e5e2'),(253049,41435,'course_included',''),(253050,41435,'_course_included','field_617ac6f08e5e4'),(253051,41435,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(253052,41435,'_hero_actions_0_button','field_61757281285eb'),(253053,41435,'blocks_0_acfe_flexible_toggle',''),(253054,41435,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(253055,41435,'blocks_0_acfe_flexible_layout_title','Icons'),(253056,41435,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(253057,41435,'blocks_0_options_theme','#b61234'),(253058,41435,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(253059,41435,'blocks_0_options_format','row'),(253060,41435,'_blocks_0_options_format','field_64bfde9a90690'),(253061,41435,'blocks_0_options',''),(253062,41435,'_blocks_0_options','field_64bfdd9b90684'),(253063,41435,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(253064,41435,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(253065,41435,'blocks_0_icon_row_items_0_label','Accreditation'),(253066,41435,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(253067,41435,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(253068,41435,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(253069,41435,'blocks_0_icon_row_items_1_icon','finance.svg'),(253070,41435,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(253071,41435,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(253072,41435,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(253073,41435,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(253074,41435,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(253075,41435,'blocks_0_icon_row_items_2_icon','progression.svg'),(253076,41435,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(253077,41435,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(253078,41435,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(253079,41435,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(253080,41435,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(253081,41435,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(253082,41435,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(253083,41435,'blocks_0_icon_row_items_3_label','Qualification'),(253084,41435,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(253085,41435,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(253086,41435,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(253087,41435,'blocks_0_icon_row_items','4'),(253088,41435,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(253089,41435,'blocks_5_acfe_flexible_toggle','1'),(253090,41435,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(253091,41435,'blocks_5_acfe_flexible_layout_title','Tabs'),(253092,41435,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(253093,41435,'blocks_5_options_theme','#ffffff'),(253094,41435,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(253095,41435,'blocks_5_options',''),(253096,41435,'_blocks_5_options','field_6177cfcd8140f'),(253097,41435,'blocks_5_tabs_0_tab_label','Entry requirements'),(253098,41435,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(253099,41435,'blocks_5_tabs_0_tab_content_title',''),(253100,41435,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(253101,41435,'blocks_5_tabs_0_tab_content_heading',''),(253102,41435,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(253103,41435,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(253104,41435,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(253105,41435,'blocks_5_tabs_0_tab_content_actions',''),(253106,41435,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(253107,41435,'blocks_5_tabs_0_tab_content',''),(253108,41435,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(253109,41435,'blocks_5_tabs_0_tab_image',''),(253110,41435,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(253111,41435,'blocks_5_tabs_1_tab_label','Learning format'),(253112,41435,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(253113,41435,'blocks_5_tabs_1_tab_content_title',''),(253114,41435,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(253115,41435,'blocks_5_tabs_1_tab_content_heading',''),(253116,41435,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(253117,41435,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(253118,41435,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(253119,41435,'blocks_5_tabs_1_tab_content_actions',''),(253120,41435,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(253121,41435,'blocks_5_tabs_1_tab_content',''),(253122,41435,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(253123,41435,'blocks_5_tabs_1_tab_image',''),(253124,41435,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(253125,41435,'blocks_5_tabs_2_tab_label','Qualifications included'),(253126,41435,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(253127,41435,'blocks_5_tabs_2_tab_content_title',''),(253128,41435,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(253129,41435,'blocks_5_tabs_2_tab_content_heading',''),(253130,41435,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(253131,41435,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(253132,41435,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(253133,41435,'blocks_5_tabs_2_tab_content_actions',''),(253134,41435,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(253135,41435,'blocks_5_tabs_2_tab_content',''),(253136,41435,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(253137,41435,'blocks_5_tabs_2_tab_image',''),(253138,41435,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(253139,41435,'blocks_5_tabs','3'),(253140,41435,'_blocks_5_tabs','field_6177cff281419'),(253141,41435,'blocks_4_acfe_flexible_toggle',''),(253142,41435,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(253143,41435,'blocks_4_acfe_flexible_layout_title','Template'),(253144,41435,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(253145,41435,'blocks_4_template','39207'),(253146,41435,'_blocks_4_template','field_617bdd570fe01'),(253147,41435,'blocks_6_acfe_flexible_toggle',''),(253148,41435,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(253149,41435,'blocks_6_acfe_flexible_layout_title','Icons'),(253150,41435,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(253151,41435,'blocks_6_options_theme','#f5f5f5'),(253152,41435,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(253153,41435,'blocks_6_options_format','stacked'),(253154,41435,'_blocks_6_options_format','field_64bfde9a90690'),(253155,41435,'blocks_6_options',''),(253156,41435,'_blocks_6_options','field_64bfdd9b90684'),(253157,41435,'blocks_6_row_content_title','Options available to pay for your course'),(253158,41435,'_blocks_6_row_content_title','field_64bfdd9b90687'),(253159,41435,'blocks_6_row_content_heading','Fees & Funding Options '),(253160,41435,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(253161,41435,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(253162,41435,'_blocks_6_row_content_text','field_64bfdd9b90689');
INSERT INTO `6m7_postmeta` VALUES (253163,41435,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(253164,41435,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(253165,41435,'blocks_6_row_content_actions','1'),(253166,41435,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(253167,41435,'blocks_6_row_content',''),(253168,41435,'_blocks_6_row_content','field_64bfdd9b90686'),(253169,41435,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(253170,41435,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(253171,41435,'blocks_6_icon_row_items_0_label','Pay in full'),(253172,41435,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(253173,41435,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(253174,41435,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(253175,41435,'blocks_6_icon_row_items_1_icon','finance.svg'),(253176,41435,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(253177,41435,'blocks_6_icon_row_items_1_label','0% finance'),(253178,41435,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(253179,41435,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(253180,41435,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(253181,41435,'blocks_6_icon_row_items','3'),(253182,41435,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(253183,41435,'blocks_7_acfe_flexible_toggle',''),(253184,41435,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(253185,41435,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(253186,41435,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(253187,41435,'blocks_7_options_theme','#ffffff'),(253188,41435,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(253189,41435,'blocks_7_options_reverse','0'),(253190,41435,'_blocks_7_options_reverse','field_61768049bb8ac'),(253191,41435,'blocks_7_options',''),(253192,41435,'_blocks_7_options','field_617682517c334'),(253193,41435,'blocks_7_split_5050_image','41333'),(253194,41435,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(253195,41435,'blocks_7_split_5050_video',''),(253196,41435,'_blocks_7_split_5050_video','field_6239f3160848a'),(253197,41435,'blocks_7_split_5050_content_title',''),(253198,41435,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(253199,41435,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(253200,41435,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(253201,41435,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(253202,41435,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(253203,41435,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(253204,41435,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(253205,41435,'blocks_7_split_5050_content_actions','1'),(253206,41435,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(253207,41435,'blocks_7_split_5050_content',''),(253208,41435,'_blocks_7_split_5050_content','field_61767afceb8ba'),(253209,41435,'blocks_8_acfe_flexible_toggle',''),(253210,41435,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(253211,41435,'blocks_8_acfe_flexible_layout_title','Icons'),(253212,41435,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(253213,41435,'blocks_8_options_theme','#f5f5f5'),(253214,41435,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(253215,41435,'blocks_8_options_format','row'),(253216,41435,'_blocks_8_options_format','field_64bfde9a90690'),(253217,41435,'blocks_8_options',''),(253218,41435,'_blocks_8_options','field_64bfdd9b90684'),(253219,41435,'blocks_8_icon_row_items_0_icon','qualification.svg'),(253220,41435,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(253221,41435,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(253222,41435,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(253223,41435,'blocks_8_icon_row_items_0_text',''),(253224,41435,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(253225,41435,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(253226,41435,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(253227,41435,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(253228,41435,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(253229,41435,'blocks_8_icon_row_items_1_text',''),(253230,41435,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(253231,41435,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(253232,41435,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(253233,41435,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(253234,41435,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(253235,41435,'blocks_8_icon_row_items_2_text',''),(253236,41435,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(253237,41435,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(253238,41435,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(253239,41435,'blocks_8_icon_row_items_3_label','Flexible funding options'),(253240,41435,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(253241,41435,'blocks_8_icon_row_items_3_text',''),(253242,41435,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(253243,41435,'blocks_8_icon_row_items','4'),(253244,41435,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(253245,41435,'blocks_9_acfe_flexible_toggle',''),(253246,41435,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(253247,41435,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(253248,41435,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(253249,41435,'blocks_9_options_theme','#ffffff'),(253250,41435,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(253251,41435,'blocks_9_options_reverse','1'),(253252,41435,'_blocks_9_options_reverse','field_61768049bb8ac'),(253253,41435,'blocks_9_options',''),(253254,41435,'_blocks_9_options','field_617682517c334'),(253255,41435,'blocks_9_split_5050_image','39224'),(253256,41435,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(253257,41435,'blocks_9_split_5050_video',''),(253258,41435,'_blocks_9_split_5050_video','field_6239f3160848a'),(253259,41435,'blocks_9_split_5050_content_title','Locations'),(253260,41435,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(253261,41435,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(253262,41435,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(253263,41435,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(253264,41435,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(253265,41435,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(253266,41435,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(253267,41435,'blocks_9_split_5050_content_actions','1'),(253268,41435,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(253269,41435,'blocks_9_split_5050_content',''),(253270,41435,'_blocks_9_split_5050_content','field_61767afceb8ba'),(253271,41435,'blocks_1_acfe_flexible_toggle',''),(253272,41435,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(253273,41435,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(253274,41435,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(253275,41435,'blocks_1_options_theme','#ffffff'),(253276,41435,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(253277,41435,'blocks_1_options_reverse','0'),(253278,41435,'_blocks_1_options_reverse','field_61768049bb8ac'),(253279,41435,'blocks_1_options',''),(253280,41435,'_blocks_1_options','field_617682517c334'),(253281,41435,'blocks_1_split_5050_image','41430'),(253282,41435,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(253283,41435,'blocks_1_split_5050_video',''),(253284,41435,'_blocks_1_split_5050_video','field_6239f3160848a'),(253285,41435,'blocks_1_split_5050_content_title',''),(253286,41435,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(253287,41435,'blocks_1_split_5050_content_heading','Course Overview'),(253288,41435,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(253289,41435,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(253290,41435,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(253291,41435,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(253292,41435,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(253293,41435,'blocks_1_split_5050_content_actions','1'),(253294,41435,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(253295,41435,'blocks_1_split_5050_content',''),(253296,41435,'_blocks_1_split_5050_content','field_61767afceb8ba'),(253297,41435,'blocks_2_acfe_flexible_toggle',''),(253298,41435,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(253299,41435,'blocks_2_acfe_flexible_layout_title','Form'),(253300,41435,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(253301,41435,'blocks_2_row_content_format','standard'),(253302,41435,'_blocks_2_row_content_format','field_6481ead962881'),(253303,41435,'blocks_2_row_content_title',''),(253304,41435,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(253305,41435,'blocks_2_row_content_heading','Enquire Today'),(253306,41435,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(253307,41435,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(253308,41435,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(253309,41435,'blocks_2_row_content_actions',''),(253310,41435,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(253311,41435,'blocks_2_row_content',''),(253312,41435,'_blocks_2_row_content','field_61a0f5f5b3db0'),(253313,41435,'blocks_2_row_form','40394'),(253314,41435,'_blocks_2_row_form','field_61a4ff2c0b08e'),(253315,41435,'blocks_2_row_form_button_label',''),(253316,41435,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(253317,41435,'blocks_3_acfe_flexible_toggle',''),(253318,41435,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(253319,41435,'blocks_3_acfe_flexible_layout_title','Video'),(253320,41435,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(253321,41435,'blocks_3_size','large'),(253322,41435,'_blocks_3_size','field_6487038f297c1'),(253323,41435,'blocks_3_row_content_title',''),(253324,41435,'_blocks_3_row_content_title','field_64870132a865d'),(253325,41435,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(253326,41435,'_blocks_3_row_content_heading','field_64870142a865e'),(253327,41435,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(253328,41435,'_blocks_3_row_content_text','field_64870148a865f'),(253329,41435,'blocks_3_row_content',''),(253330,41435,'_blocks_3_row_content','field_6487008ba865c'),(253331,41435,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(253332,41435,'_blocks_3_video_src','field_6193c4a98ec07'),(253333,41435,'blocks_3_video_thumbnail',''),(253334,41435,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(253335,41435,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(253336,41435,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(253337,41435,'blocks_6_icon_row_items_2_label','Deposit & balance'),(253338,41435,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(253339,41435,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(253340,41435,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(253341,41435,'blocks_10_acfe_flexible_toggle','1'),(253342,41435,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(253343,41435,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(253344,41435,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(253345,41435,'blocks_10_options_theme','#ffffff'),(253346,41435,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(253347,41435,'blocks_10_options',''),(253348,41435,'_blocks_10_options','field_617ac0b7f6c08'),(253349,41435,'blocks_10_show','selection'),(253350,41435,'_blocks_10_show','field_61a49cba9d946'),(253351,41435,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(253352,41435,'_blocks_10_courses','field_61b244781ee0a'),(253353,41435,'blocks_10_open_whats_included','1'),(253354,41435,'_blocks_10_open_whats_included','field_66ebfd679450c'),(253355,41435,'blocks_10_open_key_information','0'),(253356,41435,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(253357,41435,'blocks_10_open',''),(253358,41435,'_blocks_10_open','field_66ebfd009450b'),(253359,41435,'blocks_11_acfe_flexible_toggle',''),(253360,41435,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(253361,41435,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(253362,41435,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(253363,41435,'blocks_11_options_theme','#ffffff'),(253364,41435,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(253365,41435,'blocks_11_options_reverse','0'),(253366,41435,'_blocks_11_options_reverse','field_61768049bb8ac'),(253367,41435,'blocks_11_options',''),(253368,41435,'_blocks_11_options','field_617682517c334'),(253369,41435,'blocks_11_split_5050_image','41299'),(253370,41435,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(253371,41435,'blocks_11_split_5050_video',''),(253372,41435,'_blocks_11_split_5050_video','field_6239f3160848a'),(253373,41435,'blocks_11_split_5050_content_title','Optimise Performance '),(253374,41435,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(253375,41435,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(253376,41435,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(253377,41435,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(253378,41435,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(253379,41435,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(253380,41435,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(253381,41435,'blocks_11_split_5050_content_actions','1'),(253382,41435,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(253383,41435,'blocks_11_split_5050_content',''),(253384,41435,'_blocks_11_split_5050_content','field_61767afceb8ba'),(253385,41435,'blocks_12_acfe_flexible_toggle',''),(253386,41435,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(253387,41435,'blocks_12_acfe_flexible_layout_title','Template'),(253388,41435,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(253389,41435,'blocks_12_template','40987'),(253390,41435,'_blocks_12_template','field_617bdd570fe01'),(253391,41435,'blocks_13_acfe_flexible_toggle',''),(253392,41435,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(253393,41435,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(253394,41435,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(253395,41435,'blocks_13_options_theme','#f5f5f5'),(253396,41435,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(253397,41435,'blocks_13_options_state','0'),(253398,41435,'_blocks_13_options_state','field_6239fcb7508c5'),(253399,41435,'blocks_13_options',''),(253400,41435,'_blocks_13_options','field_6177e2991ac44'),(253401,41435,'blocks_13_content_title',''),(253402,41435,'_blocks_13_content_title','field_64d237e8bb1e2'),(253403,41435,'blocks_13_content_heading','FAQ\'s'),(253404,41435,'_blocks_13_content_heading','field_64d237e8bb1e3'),(253405,41435,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(253406,41435,'_blocks_13_content_text','field_64d237e8bb1e4'),(253407,41435,'blocks_13_content_actions',''),(253408,41435,'_blocks_13_content_actions','field_64d237e8bb1e5'),(253409,41435,'blocks_13_content_align','left'),(253410,41435,'_blocks_13_content_align','field_64d2443e6b6aa'),(253411,41435,'blocks_13_content',''),(253412,41435,'_blocks_13_content','field_64d237e8bb1e1'),(253413,41435,'blocks_13_accordion_content','faqs'),(253414,41435,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(253415,41435,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(253416,41435,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(253417,41435,'blocks_13_actions',''),(253418,41435,'_blocks_13_actions','field_61a746a817f7a'),(253419,41437,'hide_hero','0'),(253420,41437,'_hide_hero','field_66a2380fcda39'),(253421,41437,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(253422,41437,'_hero_title','field_617571fe285e8'),(253423,41437,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(253424,41437,'_hero_text','field_6175723c285e9'),(253425,41437,'hero_actions','1'),(253426,41437,'_hero_actions','field_61757270285ea'),(253427,41437,'hero_style','default'),(253428,41437,'_hero_style','field_62051d9dc5324'),(253429,41437,'_thumbnail_id','41428'),(253430,41437,'__thumbnail_id','field_617570855ddaf'),(253431,41437,'hero_image_pos_x','right'),(253432,41437,'_hero_image_pos_x','field_62ec3d05390bb'),(253433,41437,'hero_image_pos_y','top'),(253434,41437,'_hero_image_pos_y','field_62ec3d05390bc'),(253435,41437,'hero_image_pos',''),(253436,41437,'_hero_image_pos','field_62ec3d05390ba'),(253437,41437,'fft_hide_from_listings','0'),(253438,41437,'_fft_hide_from_listings','field_61f1320446ab2'),(253439,41437,'fft_page_format','default'),(253440,41437,'_fft_page_format','field_61ae213f1f218'),(253441,41437,'fft_hide_nav','0'),(253442,41437,'_fft_hide_nav','field_635bd5e43527c'),(253443,41437,'fft_hide_header_call_to_action','0'),(253444,41437,'_fft_hide_header_call_to_action','field_635bd6723527d'),(253445,41437,'fft_page_sitemap','0'),(253446,41437,'_fft_page_sitemap','field_61af9b34e8181'),(253447,41437,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(253448,41437,'_blocks','field_6176696113096'),(253449,41437,'course_label_text',''),(253450,41437,'_course_label_text','field_61e17babf71fa'),(253451,41437,'course_label',''),(253452,41437,'_course_label','field_61e12f92749a7'),(253453,41437,'course_description',''),(253454,41437,'_course_description','field_617ac5788e5e1'),(253455,41437,'course_key_info',''),(253456,41437,'_course_key_info','field_617ac6ad8e5e2'),(253457,41437,'course_included',''),(253458,41437,'_course_included','field_617ac6f08e5e4'),(253459,41437,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(253460,41437,'_hero_actions_0_button','field_61757281285eb'),(253461,41437,'blocks_0_acfe_flexible_toggle',''),(253462,41437,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(253463,41437,'blocks_0_acfe_flexible_layout_title','Icons'),(253464,41437,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(253465,41437,'blocks_0_options_theme','#b61234'),(253466,41437,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(253467,41437,'blocks_0_options_format','row'),(253468,41437,'_blocks_0_options_format','field_64bfde9a90690'),(253469,41437,'blocks_0_options',''),(253470,41437,'_blocks_0_options','field_64bfdd9b90684'),(253471,41437,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(253472,41437,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(253473,41437,'blocks_0_icon_row_items_0_label','Accreditation'),(253474,41437,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(253475,41437,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(253476,41437,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(253477,41437,'blocks_0_icon_row_items_1_icon','finance.svg'),(253478,41437,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(253479,41437,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(253480,41437,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(253481,41437,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(253482,41437,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(253483,41437,'blocks_0_icon_row_items_2_icon','progression.svg'),(253484,41437,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(253485,41437,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(253486,41437,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(253487,41437,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(253488,41437,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(253489,41437,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(253490,41437,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(253491,41437,'blocks_0_icon_row_items_3_label','Qualification'),(253492,41437,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(253493,41437,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(253494,41437,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(253495,41437,'blocks_0_icon_row_items','4'),(253496,41437,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(253497,41437,'blocks_5_acfe_flexible_toggle','1'),(253498,41437,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(253499,41437,'blocks_5_acfe_flexible_layout_title','Tabs'),(253500,41437,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(253501,41437,'blocks_5_options_theme','#ffffff'),(253502,41437,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(253503,41437,'blocks_5_options',''),(253504,41437,'_blocks_5_options','field_6177cfcd8140f'),(253505,41437,'blocks_5_tabs_0_tab_label','Entry requirements'),(253506,41437,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(253507,41437,'blocks_5_tabs_0_tab_content_title',''),(253508,41437,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(253509,41437,'blocks_5_tabs_0_tab_content_heading',''),(253510,41437,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(253511,41437,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(253512,41437,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(253513,41437,'blocks_5_tabs_0_tab_content_actions',''),(253514,41437,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(253515,41437,'blocks_5_tabs_0_tab_content',''),(253516,41437,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(253517,41437,'blocks_5_tabs_0_tab_image',''),(253518,41437,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(253519,41437,'blocks_5_tabs_1_tab_label','Learning format'),(253520,41437,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(253521,41437,'blocks_5_tabs_1_tab_content_title',''),(253522,41437,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(253523,41437,'blocks_5_tabs_1_tab_content_heading',''),(253524,41437,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(253525,41437,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(253526,41437,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(253527,41437,'blocks_5_tabs_1_tab_content_actions',''),(253528,41437,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(253529,41437,'blocks_5_tabs_1_tab_content',''),(253530,41437,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(253531,41437,'blocks_5_tabs_1_tab_image',''),(253532,41437,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(253533,41437,'blocks_5_tabs_2_tab_label','Qualifications included'),(253534,41437,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(253535,41437,'blocks_5_tabs_2_tab_content_title',''),(253536,41437,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(253537,41437,'blocks_5_tabs_2_tab_content_heading',''),(253538,41437,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(253539,41437,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(253540,41437,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(253541,41437,'blocks_5_tabs_2_tab_content_actions',''),(253542,41437,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(253543,41437,'blocks_5_tabs_2_tab_content',''),(253544,41437,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(253545,41437,'blocks_5_tabs_2_tab_image',''),(253546,41437,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(253547,41437,'blocks_5_tabs','3'),(253548,41437,'_blocks_5_tabs','field_6177cff281419'),(253549,41437,'blocks_4_acfe_flexible_toggle',''),(253550,41437,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(253551,41437,'blocks_4_acfe_flexible_layout_title','Template'),(253552,41437,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(253553,41437,'blocks_4_template','39207'),(253554,41437,'_blocks_4_template','field_617bdd570fe01'),(253555,41437,'blocks_6_acfe_flexible_toggle',''),(253556,41437,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(253557,41437,'blocks_6_acfe_flexible_layout_title','Icons'),(253558,41437,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(253559,41437,'blocks_6_options_theme','#f5f5f5'),(253560,41437,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(253561,41437,'blocks_6_options_format','stacked'),(253562,41437,'_blocks_6_options_format','field_64bfde9a90690'),(253563,41437,'blocks_6_options',''),(253564,41437,'_blocks_6_options','field_64bfdd9b90684'),(253565,41437,'blocks_6_row_content_title','Options available to pay for your course'),(253566,41437,'_blocks_6_row_content_title','field_64bfdd9b90687'),(253567,41437,'blocks_6_row_content_heading','Fees & Funding Options '),(253568,41437,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(253569,41437,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(253570,41437,'_blocks_6_row_content_text','field_64bfdd9b90689'),(253571,41437,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(253572,41437,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(253573,41437,'blocks_6_row_content_actions','1'),(253574,41437,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(253575,41437,'blocks_6_row_content',''),(253576,41437,'_blocks_6_row_content','field_64bfdd9b90686'),(253577,41437,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(253578,41437,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(253579,41437,'blocks_6_icon_row_items_0_label','Pay in full'),(253580,41437,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(253581,41437,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(253582,41437,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(253583,41437,'blocks_6_icon_row_items_1_icon','finance.svg'),(253584,41437,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(253585,41437,'blocks_6_icon_row_items_1_label','0% finance'),(253586,41437,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(253587,41437,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(253588,41437,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(253589,41437,'blocks_6_icon_row_items','3'),(253590,41437,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(253591,41437,'blocks_7_acfe_flexible_toggle',''),(253592,41437,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(253593,41437,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(253594,41437,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(253595,41437,'blocks_7_options_theme','#ffffff'),(253596,41437,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(253597,41437,'blocks_7_options_reverse','0'),(253598,41437,'_blocks_7_options_reverse','field_61768049bb8ac'),(253599,41437,'blocks_7_options',''),(253600,41437,'_blocks_7_options','field_617682517c334'),(253601,41437,'blocks_7_split_5050_image','41333'),(253602,41437,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(253603,41437,'blocks_7_split_5050_video',''),(253604,41437,'_blocks_7_split_5050_video','field_6239f3160848a'),(253605,41437,'blocks_7_split_5050_content_title',''),(253606,41437,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(253607,41437,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(253608,41437,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(253609,41437,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(253610,41437,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(253611,41437,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(253612,41437,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(253613,41437,'blocks_7_split_5050_content_actions','1'),(253614,41437,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(253615,41437,'blocks_7_split_5050_content',''),(253616,41437,'_blocks_7_split_5050_content','field_61767afceb8ba'),(253617,41437,'blocks_8_acfe_flexible_toggle',''),(253618,41437,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(253619,41437,'blocks_8_acfe_flexible_layout_title','Icons'),(253620,41437,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(253621,41437,'blocks_8_options_theme','#f5f5f5'),(253622,41437,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(253623,41437,'blocks_8_options_format','row'),(253624,41437,'_blocks_8_options_format','field_64bfde9a90690'),(253625,41437,'blocks_8_options',''),(253626,41437,'_blocks_8_options','field_64bfdd9b90684'),(253627,41437,'blocks_8_icon_row_items_0_icon','qualification.svg'),(253628,41437,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(253629,41437,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(253630,41437,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(253631,41437,'blocks_8_icon_row_items_0_text',''),(253632,41437,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(253633,41437,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(253634,41437,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(253635,41437,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(253636,41437,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(253637,41437,'blocks_8_icon_row_items_1_text',''),(253638,41437,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(253639,41437,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(253640,41437,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(253641,41437,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(253642,41437,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(253643,41437,'blocks_8_icon_row_items_2_text',''),(253644,41437,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(253645,41437,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(253646,41437,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(253647,41437,'blocks_8_icon_row_items_3_label','Flexible funding options'),(253648,41437,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(253649,41437,'blocks_8_icon_row_items_3_text',''),(253650,41437,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(253651,41437,'blocks_8_icon_row_items','4'),(253652,41437,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(253653,41437,'blocks_9_acfe_flexible_toggle',''),(253654,41437,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(253655,41437,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(253656,41437,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(253657,41437,'blocks_9_options_theme','#ffffff'),(253658,41437,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(253659,41437,'blocks_9_options_reverse','1'),(253660,41437,'_blocks_9_options_reverse','field_61768049bb8ac'),(253661,41437,'blocks_9_options',''),(253662,41437,'_blocks_9_options','field_617682517c334'),(253663,41437,'blocks_9_split_5050_image','39224'),(253664,41437,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(253665,41437,'blocks_9_split_5050_video',''),(253666,41437,'_blocks_9_split_5050_video','field_6239f3160848a'),(253667,41437,'blocks_9_split_5050_content_title','Locations'),(253668,41437,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(253669,41437,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(253670,41437,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(253671,41437,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(253672,41437,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(253673,41437,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(253674,41437,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(253675,41437,'blocks_9_split_5050_content_actions','1'),(253676,41437,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(253677,41437,'blocks_9_split_5050_content',''),(253678,41437,'_blocks_9_split_5050_content','field_61767afceb8ba'),(253679,41437,'blocks_1_acfe_flexible_toggle',''),(253680,41437,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(253681,41437,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(253682,41437,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(253683,41437,'blocks_1_options_theme','#ffffff'),(253684,41437,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(253685,41437,'blocks_1_options_reverse','0'),(253686,41437,'_blocks_1_options_reverse','field_61768049bb8ac'),(253687,41437,'blocks_1_options',''),(253688,41437,'_blocks_1_options','field_617682517c334'),(253689,41437,'blocks_1_split_5050_image','41430'),(253690,41437,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(253691,41437,'blocks_1_split_5050_video',''),(253692,41437,'_blocks_1_split_5050_video','field_6239f3160848a'),(253693,41437,'blocks_1_split_5050_content_title',''),(253694,41437,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(253695,41437,'blocks_1_split_5050_content_heading','Course Overview'),(253696,41437,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(253697,41437,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(253698,41437,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(253699,41437,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(253700,41437,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(253701,41437,'blocks_1_split_5050_content_actions','1'),(253702,41437,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(253703,41437,'blocks_1_split_5050_content',''),(253704,41437,'_blocks_1_split_5050_content','field_61767afceb8ba'),(253705,41437,'blocks_2_acfe_flexible_toggle',''),(253706,41437,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(253707,41437,'blocks_2_acfe_flexible_layout_title','Form'),(253708,41437,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(253709,41437,'blocks_2_row_content_format','standard'),(253710,41437,'_blocks_2_row_content_format','field_6481ead962881'),(253711,41437,'blocks_2_row_content_title',''),(253712,41437,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(253713,41437,'blocks_2_row_content_heading','Enquire Today'),(253714,41437,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(253715,41437,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(253716,41437,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(253717,41437,'blocks_2_row_content_actions',''),(253718,41437,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(253719,41437,'blocks_2_row_content',''),(253720,41437,'_blocks_2_row_content','field_61a0f5f5b3db0'),(253721,41437,'blocks_2_row_form','40394'),(253722,41437,'_blocks_2_row_form','field_61a4ff2c0b08e'),(253723,41437,'blocks_2_row_form_button_label',''),(253724,41437,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(253725,41437,'blocks_3_acfe_flexible_toggle',''),(253726,41437,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(253727,41437,'blocks_3_acfe_flexible_layout_title','Video'),(253728,41437,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(253729,41437,'blocks_3_size','large'),(253730,41437,'_blocks_3_size','field_6487038f297c1'),(253731,41437,'blocks_3_row_content_title',''),(253732,41437,'_blocks_3_row_content_title','field_64870132a865d'),(253733,41437,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(253734,41437,'_blocks_3_row_content_heading','field_64870142a865e'),(253735,41437,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(253736,41437,'_blocks_3_row_content_text','field_64870148a865f'),(253737,41437,'blocks_3_row_content',''),(253738,41437,'_blocks_3_row_content','field_6487008ba865c'),(253739,41437,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(253740,41437,'_blocks_3_video_src','field_6193c4a98ec07'),(253741,41437,'blocks_3_video_thumbnail',''),(253742,41437,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(253743,41437,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(253744,41437,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(253745,41437,'blocks_6_icon_row_items_2_label','Deposit & balance'),(253746,41437,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(253747,41437,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(253748,41437,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(253749,41437,'blocks_10_acfe_flexible_toggle','1'),(253750,41437,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(253751,41437,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(253752,41437,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(253753,41437,'blocks_10_options_theme','#ffffff'),(253754,41437,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(253755,41437,'blocks_10_options',''),(253756,41437,'_blocks_10_options','field_617ac0b7f6c08'),(253757,41437,'blocks_10_show','selection'),(253758,41437,'_blocks_10_show','field_61a49cba9d946'),(253759,41437,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(253760,41437,'_blocks_10_courses','field_61b244781ee0a'),(253761,41437,'blocks_10_open_whats_included','1'),(253762,41437,'_blocks_10_open_whats_included','field_66ebfd679450c'),(253763,41437,'blocks_10_open_key_information','0'),(253764,41437,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(253765,41437,'blocks_10_open',''),(253766,41437,'_blocks_10_open','field_66ebfd009450b'),(253767,41437,'blocks_11_acfe_flexible_toggle',''),(253768,41437,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(253769,41437,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(253770,41437,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(253771,41437,'blocks_11_options_theme','#ffffff'),(253772,41437,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(253773,41437,'blocks_11_options_reverse','0'),(253774,41437,'_blocks_11_options_reverse','field_61768049bb8ac'),(253775,41437,'blocks_11_options',''),(253776,41437,'_blocks_11_options','field_617682517c334'),(253777,41437,'blocks_11_split_5050_image','41299'),(253778,41437,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(253779,41437,'blocks_11_split_5050_video',''),(253780,41437,'_blocks_11_split_5050_video','field_6239f3160848a'),(253781,41437,'blocks_11_split_5050_content_title','Optimise Performance '),(253782,41437,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(253783,41437,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(253784,41437,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(253785,41437,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(253786,41437,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(253787,41437,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(253788,41437,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(253789,41437,'blocks_11_split_5050_content_actions','1'),(253790,41437,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(253791,41437,'blocks_11_split_5050_content',''),(253792,41437,'_blocks_11_split_5050_content','field_61767afceb8ba'),(253793,41437,'blocks_12_acfe_flexible_toggle',''),(253794,41437,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(253795,41437,'blocks_12_acfe_flexible_layout_title','Template'),(253796,41437,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(253797,41437,'blocks_12_template','40987'),(253798,41437,'_blocks_12_template','field_617bdd570fe01'),(253799,41437,'blocks_13_acfe_flexible_toggle',''),(253800,41437,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(253801,41437,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(253802,41437,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(253803,41437,'blocks_13_options_theme','#f5f5f5'),(253804,41437,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(253805,41437,'blocks_13_options_state','0'),(253806,41437,'_blocks_13_options_state','field_6239fcb7508c5'),(253807,41437,'blocks_13_options',''),(253808,41437,'_blocks_13_options','field_6177e2991ac44'),(253809,41437,'blocks_13_content_title',''),(253810,41437,'_blocks_13_content_title','field_64d237e8bb1e2'),(253811,41437,'blocks_13_content_heading','FAQ\'s'),(253812,41437,'_blocks_13_content_heading','field_64d237e8bb1e3'),(253813,41437,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(253814,41437,'_blocks_13_content_text','field_64d237e8bb1e4'),(253815,41437,'blocks_13_content_actions',''),(253816,41437,'_blocks_13_content_actions','field_64d237e8bb1e5'),(253817,41437,'blocks_13_content_align','left'),(253818,41437,'_blocks_13_content_align','field_64d2443e6b6aa'),(253819,41437,'blocks_13_content',''),(253820,41437,'_blocks_13_content','field_64d237e8bb1e1'),(253821,41437,'blocks_13_accordion_content','faqs'),(253822,41437,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(253823,41437,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(253824,41437,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(253825,41437,'blocks_13_actions',''),(253826,41437,'_blocks_13_actions','field_61a746a817f7a'),(253827,41438,'hide_hero','0'),(253828,41438,'_hide_hero','field_66a2380fcda39'),(253829,41438,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(253830,41438,'_hero_title','field_617571fe285e8'),(253831,41438,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(253832,41438,'_hero_text','field_6175723c285e9'),(253833,41438,'hero_actions','1'),(253834,41438,'_hero_actions','field_61757270285ea'),(253835,41438,'hero_style','default'),(253836,41438,'_hero_style','field_62051d9dc5324'),(253837,41438,'_thumbnail_id','41428'),(253838,41438,'__thumbnail_id','field_617570855ddaf'),(253839,41438,'hero_image_pos_x','right'),(253840,41438,'_hero_image_pos_x','field_62ec3d05390bb'),(253841,41438,'hero_image_pos_y','top'),(253842,41438,'_hero_image_pos_y','field_62ec3d05390bc'),(253843,41438,'hero_image_pos',''),(253844,41438,'_hero_image_pos','field_62ec3d05390ba'),(253845,41438,'fft_hide_from_listings','0'),(253846,41438,'_fft_hide_from_listings','field_61f1320446ab2'),(253847,41438,'fft_page_format','default'),(253848,41438,'_fft_page_format','field_61ae213f1f218'),(253849,41438,'fft_hide_nav','0'),(253850,41438,'_fft_hide_nav','field_635bd5e43527c'),(253851,41438,'fft_hide_header_call_to_action','0'),(253852,41438,'_fft_hide_header_call_to_action','field_635bd6723527d'),(253853,41438,'fft_page_sitemap','0'),(253854,41438,'_fft_page_sitemap','field_61af9b34e8181'),(253855,41438,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(253856,41438,'_blocks','field_6176696113096'),(253857,41438,'course_label_text',''),(253858,41438,'_course_label_text','field_61e17babf71fa'),(253859,41438,'course_label',''),(253860,41438,'_course_label','field_61e12f92749a7'),(253861,41438,'course_description',''),(253862,41438,'_course_description','field_617ac5788e5e1'),(253863,41438,'course_key_info',''),(253864,41438,'_course_key_info','field_617ac6ad8e5e2'),(253865,41438,'course_included',''),(253866,41438,'_course_included','field_617ac6f08e5e4'),(253867,41438,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(253868,41438,'_hero_actions_0_button','field_61757281285eb'),(253869,41438,'blocks_0_acfe_flexible_toggle',''),(253870,41438,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(253871,41438,'blocks_0_acfe_flexible_layout_title','Icons'),(253872,41438,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(253873,41438,'blocks_0_options_theme','#b61234'),(253874,41438,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(253875,41438,'blocks_0_options_format','row'),(253876,41438,'_blocks_0_options_format','field_64bfde9a90690'),(253877,41438,'blocks_0_options',''),(253878,41438,'_blocks_0_options','field_64bfdd9b90684'),(253879,41438,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(253880,41438,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(253881,41438,'blocks_0_icon_row_items_0_label','Accreditation'),(253882,41438,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(253883,41438,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(253884,41438,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(253885,41438,'blocks_0_icon_row_items_1_icon','finance.svg'),(253886,41438,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(253887,41438,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(253888,41438,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(253889,41438,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(253890,41438,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(253891,41438,'blocks_0_icon_row_items_2_icon','progression.svg'),(253892,41438,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(253893,41438,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(253894,41438,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(253895,41438,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(253896,41438,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(253897,41438,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(253898,41438,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(253899,41438,'blocks_0_icon_row_items_3_label','Qualification'),(253900,41438,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(253901,41438,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(253902,41438,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(253903,41438,'blocks_0_icon_row_items','4'),(253904,41438,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(253905,41438,'blocks_5_acfe_flexible_toggle','1'),(253906,41438,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(253907,41438,'blocks_5_acfe_flexible_layout_title','Tabs'),(253908,41438,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(253909,41438,'blocks_5_options_theme','#ffffff'),(253910,41438,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(253911,41438,'blocks_5_options',''),(253912,41438,'_blocks_5_options','field_6177cfcd8140f'),(253913,41438,'blocks_5_tabs_0_tab_label','Entry requirements'),(253914,41438,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(253915,41438,'blocks_5_tabs_0_tab_content_title',''),(253916,41438,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(253917,41438,'blocks_5_tabs_0_tab_content_heading',''),(253918,41438,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(253919,41438,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(253920,41438,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(253921,41438,'blocks_5_tabs_0_tab_content_actions',''),(253922,41438,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(253923,41438,'blocks_5_tabs_0_tab_content',''),(253924,41438,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(253925,41438,'blocks_5_tabs_0_tab_image',''),(253926,41438,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(253927,41438,'blocks_5_tabs_1_tab_label','Learning format'),(253928,41438,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(253929,41438,'blocks_5_tabs_1_tab_content_title',''),(253930,41438,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(253931,41438,'blocks_5_tabs_1_tab_content_heading',''),(253932,41438,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(253933,41438,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(253934,41438,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(253935,41438,'blocks_5_tabs_1_tab_content_actions',''),(253936,41438,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(253937,41438,'blocks_5_tabs_1_tab_content',''),(253938,41438,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(253939,41438,'blocks_5_tabs_1_tab_image',''),(253940,41438,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(253941,41438,'blocks_5_tabs_2_tab_label','Qualifications included'),(253942,41438,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(253943,41438,'blocks_5_tabs_2_tab_content_title',''),(253944,41438,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(253945,41438,'blocks_5_tabs_2_tab_content_heading',''),(253946,41438,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(253947,41438,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(253948,41438,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(253949,41438,'blocks_5_tabs_2_tab_content_actions',''),(253950,41438,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(253951,41438,'blocks_5_tabs_2_tab_content',''),(253952,41438,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(253953,41438,'blocks_5_tabs_2_tab_image',''),(253954,41438,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(253955,41438,'blocks_5_tabs','3'),(253956,41438,'_blocks_5_tabs','field_6177cff281419'),(253957,41438,'blocks_4_acfe_flexible_toggle',''),(253958,41438,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(253959,41438,'blocks_4_acfe_flexible_layout_title','Template'),(253960,41438,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(253961,41438,'blocks_4_template','39207'),(253962,41438,'_blocks_4_template','field_617bdd570fe01'),(253963,41438,'blocks_6_acfe_flexible_toggle',''),(253964,41438,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(253965,41438,'blocks_6_acfe_flexible_layout_title','Icons'),(253966,41438,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(253967,41438,'blocks_6_options_theme','#f5f5f5'),(253968,41438,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(253969,41438,'blocks_6_options_format','stacked'),(253970,41438,'_blocks_6_options_format','field_64bfde9a90690'),(253971,41438,'blocks_6_options',''),(253972,41438,'_blocks_6_options','field_64bfdd9b90684'),(253973,41438,'blocks_6_row_content_title','Options available to pay for your course'),(253974,41438,'_blocks_6_row_content_title','field_64bfdd9b90687'),(253975,41438,'blocks_6_row_content_heading','Fees & Funding Options '),(253976,41438,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(253977,41438,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(253978,41438,'_blocks_6_row_content_text','field_64bfdd9b90689'),(253979,41438,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(253980,41438,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(253981,41438,'blocks_6_row_content_actions','1'),(253982,41438,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(253983,41438,'blocks_6_row_content',''),(253984,41438,'_blocks_6_row_content','field_64bfdd9b90686'),(253985,41438,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(253986,41438,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(253987,41438,'blocks_6_icon_row_items_0_label','Pay in full'),(253988,41438,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(253989,41438,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(253990,41438,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(253991,41438,'blocks_6_icon_row_items_1_icon','finance.svg'),(253992,41438,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(253993,41438,'blocks_6_icon_row_items_1_label','0% finance'),(253994,41438,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(253995,41438,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(253996,41438,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(253997,41438,'blocks_6_icon_row_items','3'),(253998,41438,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(253999,41438,'blocks_7_acfe_flexible_toggle',''),(254000,41438,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(254001,41438,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(254002,41438,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(254003,41438,'blocks_7_options_theme','#ffffff'),(254004,41438,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(254005,41438,'blocks_7_options_reverse','0'),(254006,41438,'_blocks_7_options_reverse','field_61768049bb8ac'),(254007,41438,'blocks_7_options',''),(254008,41438,'_blocks_7_options','field_617682517c334'),(254009,41438,'blocks_7_split_5050_image','41333'),(254010,41438,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(254011,41438,'blocks_7_split_5050_video',''),(254012,41438,'_blocks_7_split_5050_video','field_6239f3160848a'),(254013,41438,'blocks_7_split_5050_content_title',''),(254014,41438,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(254015,41438,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(254016,41438,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(254017,41438,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(254018,41438,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(254019,41438,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(254020,41438,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(254021,41438,'blocks_7_split_5050_content_actions','1'),(254022,41438,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(254023,41438,'blocks_7_split_5050_content',''),(254024,41438,'_blocks_7_split_5050_content','field_61767afceb8ba'),(254025,41438,'blocks_8_acfe_flexible_toggle',''),(254026,41438,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(254027,41438,'blocks_8_acfe_flexible_layout_title','Icons'),(254028,41438,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(254029,41438,'blocks_8_options_theme','#f5f5f5'),(254030,41438,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(254031,41438,'blocks_8_options_format','row'),(254032,41438,'_blocks_8_options_format','field_64bfde9a90690'),(254033,41438,'blocks_8_options',''),(254034,41438,'_blocks_8_options','field_64bfdd9b90684'),(254035,41438,'blocks_8_icon_row_items_0_icon','qualification.svg'),(254036,41438,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(254037,41438,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(254038,41438,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(254039,41438,'blocks_8_icon_row_items_0_text',''),(254040,41438,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(254041,41438,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(254042,41438,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(254043,41438,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(254044,41438,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(254045,41438,'blocks_8_icon_row_items_1_text',''),(254046,41438,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(254047,41438,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(254048,41438,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(254049,41438,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(254050,41438,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(254051,41438,'blocks_8_icon_row_items_2_text',''),(254052,41438,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(254053,41438,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(254054,41438,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(254055,41438,'blocks_8_icon_row_items_3_label','Flexible funding options'),(254056,41438,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(254057,41438,'blocks_8_icon_row_items_3_text',''),(254058,41438,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(254059,41438,'blocks_8_icon_row_items','4'),(254060,41438,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(254061,41438,'blocks_9_acfe_flexible_toggle',''),(254062,41438,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(254063,41438,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(254064,41438,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(254065,41438,'blocks_9_options_theme','#ffffff'),(254066,41438,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(254067,41438,'blocks_9_options_reverse','1'),(254068,41438,'_blocks_9_options_reverse','field_61768049bb8ac'),(254069,41438,'blocks_9_options',''),(254070,41438,'_blocks_9_options','field_617682517c334'),(254071,41438,'blocks_9_split_5050_image','39224'),(254072,41438,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(254073,41438,'blocks_9_split_5050_video',''),(254074,41438,'_blocks_9_split_5050_video','field_6239f3160848a'),(254075,41438,'blocks_9_split_5050_content_title','Locations'),(254076,41438,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(254077,41438,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(254078,41438,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(254079,41438,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(254080,41438,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(254081,41438,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(254082,41438,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(254083,41438,'blocks_9_split_5050_content_actions','1'),(254084,41438,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(254085,41438,'blocks_9_split_5050_content',''),(254086,41438,'_blocks_9_split_5050_content','field_61767afceb8ba'),(254087,41438,'blocks_1_acfe_flexible_toggle',''),(254088,41438,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(254089,41438,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(254090,41438,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(254091,41438,'blocks_1_options_theme','#ffffff'),(254092,41438,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(254093,41438,'blocks_1_options_reverse','0'),(254094,41438,'_blocks_1_options_reverse','field_61768049bb8ac'),(254095,41438,'blocks_1_options',''),(254096,41438,'_blocks_1_options','field_617682517c334'),(254097,41438,'blocks_1_split_5050_image','41430'),(254098,41438,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(254099,41438,'blocks_1_split_5050_video',''),(254100,41438,'_blocks_1_split_5050_video','field_6239f3160848a'),(254101,41438,'blocks_1_split_5050_content_title',''),(254102,41438,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(254103,41438,'blocks_1_split_5050_content_heading','Course Overview'),(254104,41438,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(254105,41438,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(254106,41438,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(254107,41438,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(254108,41438,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(254109,41438,'blocks_1_split_5050_content_actions','1'),(254110,41438,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(254111,41438,'blocks_1_split_5050_content',''),(254112,41438,'_blocks_1_split_5050_content','field_61767afceb8ba'),(254113,41438,'blocks_2_acfe_flexible_toggle',''),(254114,41438,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(254115,41438,'blocks_2_acfe_flexible_layout_title','Form'),(254116,41438,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(254117,41438,'blocks_2_row_content_format','standard'),(254118,41438,'_blocks_2_row_content_format','field_6481ead962881'),(254119,41438,'blocks_2_row_content_title',''),(254120,41438,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(254121,41438,'blocks_2_row_content_heading','Enquire Today'),(254122,41438,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(254123,41438,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(254124,41438,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(254125,41438,'blocks_2_row_content_actions',''),(254126,41438,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(254127,41438,'blocks_2_row_content',''),(254128,41438,'_blocks_2_row_content','field_61a0f5f5b3db0'),(254129,41438,'blocks_2_row_form','40394'),(254130,41438,'_blocks_2_row_form','field_61a4ff2c0b08e'),(254131,41438,'blocks_2_row_form_button_label',''),(254132,41438,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(254133,41438,'blocks_3_acfe_flexible_toggle',''),(254134,41438,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(254135,41438,'blocks_3_acfe_flexible_layout_title','Video'),(254136,41438,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(254137,41438,'blocks_3_size','large'),(254138,41438,'_blocks_3_size','field_6487038f297c1'),(254139,41438,'blocks_3_row_content_title',''),(254140,41438,'_blocks_3_row_content_title','field_64870132a865d'),(254141,41438,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(254142,41438,'_blocks_3_row_content_heading','field_64870142a865e'),(254143,41438,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(254144,41438,'_blocks_3_row_content_text','field_64870148a865f'),(254145,41438,'blocks_3_row_content',''),(254146,41438,'_blocks_3_row_content','field_6487008ba865c'),(254147,41438,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(254148,41438,'_blocks_3_video_src','field_6193c4a98ec07'),(254149,41438,'blocks_3_video_thumbnail',''),(254150,41438,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(254151,41438,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(254152,41438,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(254153,41438,'blocks_6_icon_row_items_2_label','Deposit & balance'),(254154,41438,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(254155,41438,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(254156,41438,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(254157,41438,'blocks_10_acfe_flexible_toggle','1'),(254158,41438,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(254159,41438,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(254160,41438,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(254161,41438,'blocks_10_options_theme','#ffffff'),(254162,41438,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(254163,41438,'blocks_10_options',''),(254164,41438,'_blocks_10_options','field_617ac0b7f6c08'),(254165,41438,'blocks_10_show','selection'),(254166,41438,'_blocks_10_show','field_61a49cba9d946'),(254167,41438,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(254168,41438,'_blocks_10_courses','field_61b244781ee0a'),(254169,41438,'blocks_10_open_whats_included','1'),(254170,41438,'_blocks_10_open_whats_included','field_66ebfd679450c'),(254171,41438,'blocks_10_open_key_information','0'),(254172,41438,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(254173,41438,'blocks_10_open',''),(254174,41438,'_blocks_10_open','field_66ebfd009450b'),(254175,41438,'blocks_11_acfe_flexible_toggle',''),(254176,41438,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(254177,41438,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(254178,41438,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(254179,41438,'blocks_11_options_theme','#ffffff'),(254180,41438,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(254181,41438,'blocks_11_options_reverse','0'),(254182,41438,'_blocks_11_options_reverse','field_61768049bb8ac'),(254183,41438,'blocks_11_options',''),(254184,41438,'_blocks_11_options','field_617682517c334'),(254185,41438,'blocks_11_split_5050_image','41299'),(254186,41438,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(254187,41438,'blocks_11_split_5050_video',''),(254188,41438,'_blocks_11_split_5050_video','field_6239f3160848a'),(254189,41438,'blocks_11_split_5050_content_title','Optimise Performance '),(254190,41438,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(254191,41438,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(254192,41438,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(254193,41438,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(254194,41438,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(254195,41438,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(254196,41438,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(254197,41438,'blocks_11_split_5050_content_actions','1'),(254198,41438,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(254199,41438,'blocks_11_split_5050_content',''),(254200,41438,'_blocks_11_split_5050_content','field_61767afceb8ba'),(254201,41438,'blocks_12_acfe_flexible_toggle',''),(254202,41438,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(254203,41438,'blocks_12_acfe_flexible_layout_title','Template'),(254204,41438,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(254205,41438,'blocks_12_template','40987'),(254206,41438,'_blocks_12_template','field_617bdd570fe01'),(254207,41438,'blocks_13_acfe_flexible_toggle',''),(254208,41438,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(254209,41438,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(254210,41438,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(254211,41438,'blocks_13_options_theme','#f5f5f5'),(254212,41438,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(254213,41438,'blocks_13_options_state','0'),(254214,41438,'_blocks_13_options_state','field_6239fcb7508c5'),(254215,41438,'blocks_13_options',''),(254216,41438,'_blocks_13_options','field_6177e2991ac44'),(254217,41438,'blocks_13_content_title',''),(254218,41438,'_blocks_13_content_title','field_64d237e8bb1e2'),(254219,41438,'blocks_13_content_heading','FAQ\'s'),(254220,41438,'_blocks_13_content_heading','field_64d237e8bb1e3'),(254221,41438,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(254222,41438,'_blocks_13_content_text','field_64d237e8bb1e4'),(254223,41438,'blocks_13_content_actions',''),(254224,41438,'_blocks_13_content_actions','field_64d237e8bb1e5'),(254225,41438,'blocks_13_content_align','left'),(254226,41438,'_blocks_13_content_align','field_64d2443e6b6aa'),(254227,41438,'blocks_13_content',''),(254228,41438,'_blocks_13_content','field_64d237e8bb1e1'),(254229,41438,'blocks_13_accordion_content','faqs'),(254230,41438,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(254231,41438,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(254232,41438,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(254233,41438,'blocks_13_actions',''),(254234,41438,'_blocks_13_actions','field_61a746a817f7a'),(254235,41439,'hide_hero','0'),(254236,41439,'_hide_hero','field_66a2380fcda39'),(254237,41439,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(254238,41439,'_hero_title','field_617571fe285e8'),(254239,41439,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(254240,41439,'_hero_text','field_6175723c285e9'),(254241,41439,'hero_actions','1'),(254242,41439,'_hero_actions','field_61757270285ea'),(254243,41439,'hero_style','default'),(254244,41439,'_hero_style','field_62051d9dc5324'),(254245,41439,'_thumbnail_id','41428'),(254246,41439,'__thumbnail_id','field_617570855ddaf'),(254247,41439,'hero_image_pos_x','right'),(254248,41439,'_hero_image_pos_x','field_62ec3d05390bb'),(254249,41439,'hero_image_pos_y','top'),(254250,41439,'_hero_image_pos_y','field_62ec3d05390bc'),(254251,41439,'hero_image_pos',''),(254252,41439,'_hero_image_pos','field_62ec3d05390ba'),(254253,41439,'fft_hide_from_listings','0'),(254254,41439,'_fft_hide_from_listings','field_61f1320446ab2'),(254255,41439,'fft_page_format','default'),(254256,41439,'_fft_page_format','field_61ae213f1f218'),(254257,41439,'fft_hide_nav','0'),(254258,41439,'_fft_hide_nav','field_635bd5e43527c'),(254259,41439,'fft_hide_header_call_to_action','0'),(254260,41439,'_fft_hide_header_call_to_action','field_635bd6723527d'),(254261,41439,'fft_page_sitemap','0'),(254262,41439,'_fft_page_sitemap','field_61af9b34e8181'),(254263,41439,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(254264,41439,'_blocks','field_6176696113096'),(254265,41439,'course_label_text',''),(254266,41439,'_course_label_text','field_61e17babf71fa'),(254267,41439,'course_label',''),(254268,41439,'_course_label','field_61e12f92749a7'),(254269,41439,'course_description',''),(254270,41439,'_course_description','field_617ac5788e5e1'),(254271,41439,'course_key_info',''),(254272,41439,'_course_key_info','field_617ac6ad8e5e2'),(254273,41439,'course_included',''),(254274,41439,'_course_included','field_617ac6f08e5e4'),(254275,41439,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(254276,41439,'_hero_actions_0_button','field_61757281285eb'),(254277,41439,'blocks_0_acfe_flexible_toggle',''),(254278,41439,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(254279,41439,'blocks_0_acfe_flexible_layout_title','Icons'),(254280,41439,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(254281,41439,'blocks_0_options_theme','#b61234'),(254282,41439,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(254283,41439,'blocks_0_options_format','row'),(254284,41439,'_blocks_0_options_format','field_64bfde9a90690'),(254285,41439,'blocks_0_options',''),(254286,41439,'_blocks_0_options','field_64bfdd9b90684'),(254287,41439,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(254288,41439,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(254289,41439,'blocks_0_icon_row_items_0_label','Accreditation'),(254290,41439,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(254291,41439,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(254292,41439,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(254293,41439,'blocks_0_icon_row_items_1_icon','finance.svg'),(254294,41439,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(254295,41439,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(254296,41439,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(254297,41439,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(254298,41439,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(254299,41439,'blocks_0_icon_row_items_2_icon','progression.svg'),(254300,41439,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(254301,41439,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(254302,41439,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(254303,41439,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(254304,41439,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(254305,41439,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(254306,41439,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(254307,41439,'blocks_0_icon_row_items_3_label','Qualification'),(254308,41439,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(254309,41439,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(254310,41439,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(254311,41439,'blocks_0_icon_row_items','4'),(254312,41439,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(254313,41439,'blocks_5_acfe_flexible_toggle','1'),(254314,41439,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(254315,41439,'blocks_5_acfe_flexible_layout_title','Tabs'),(254316,41439,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(254317,41439,'blocks_5_options_theme','#ffffff'),(254318,41439,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(254319,41439,'blocks_5_options',''),(254320,41439,'_blocks_5_options','field_6177cfcd8140f'),(254321,41439,'blocks_5_tabs_0_tab_label','Entry requirements'),(254322,41439,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(254323,41439,'blocks_5_tabs_0_tab_content_title',''),(254324,41439,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(254325,41439,'blocks_5_tabs_0_tab_content_heading',''),(254326,41439,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(254327,41439,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(254328,41439,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(254329,41439,'blocks_5_tabs_0_tab_content_actions',''),(254330,41439,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(254331,41439,'blocks_5_tabs_0_tab_content',''),(254332,41439,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(254333,41439,'blocks_5_tabs_0_tab_image',''),(254334,41439,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(254335,41439,'blocks_5_tabs_1_tab_label','Learning format'),(254336,41439,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(254337,41439,'blocks_5_tabs_1_tab_content_title',''),(254338,41439,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(254339,41439,'blocks_5_tabs_1_tab_content_heading',''),(254340,41439,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(254341,41439,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(254342,41439,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(254343,41439,'blocks_5_tabs_1_tab_content_actions',''),(254344,41439,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(254345,41439,'blocks_5_tabs_1_tab_content',''),(254346,41439,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(254347,41439,'blocks_5_tabs_1_tab_image',''),(254348,41439,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(254349,41439,'blocks_5_tabs_2_tab_label','Qualifications included'),(254350,41439,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(254351,41439,'blocks_5_tabs_2_tab_content_title',''),(254352,41439,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(254353,41439,'blocks_5_tabs_2_tab_content_heading',''),(254354,41439,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(254355,41439,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(254356,41439,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(254357,41439,'blocks_5_tabs_2_tab_content_actions',''),(254358,41439,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(254359,41439,'blocks_5_tabs_2_tab_content',''),(254360,41439,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(254361,41439,'blocks_5_tabs_2_tab_image',''),(254362,41439,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(254363,41439,'blocks_5_tabs','3'),(254364,41439,'_blocks_5_tabs','field_6177cff281419'),(254365,41439,'blocks_4_acfe_flexible_toggle',''),(254366,41439,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(254367,41439,'blocks_4_acfe_flexible_layout_title','Template'),(254368,41439,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(254369,41439,'blocks_4_template','39207'),(254370,41439,'_blocks_4_template','field_617bdd570fe01'),(254371,41439,'blocks_6_acfe_flexible_toggle',''),(254372,41439,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(254373,41439,'blocks_6_acfe_flexible_layout_title','Icons'),(254374,41439,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(254375,41439,'blocks_6_options_theme','#f5f5f5'),(254376,41439,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(254377,41439,'blocks_6_options_format','stacked'),(254378,41439,'_blocks_6_options_format','field_64bfde9a90690'),(254379,41439,'blocks_6_options',''),(254380,41439,'_blocks_6_options','field_64bfdd9b90684'),(254381,41439,'blocks_6_row_content_title','Options available to pay for your course'),(254382,41439,'_blocks_6_row_content_title','field_64bfdd9b90687'),(254383,41439,'blocks_6_row_content_heading','Fees & Funding Options '),(254384,41439,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(254385,41439,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(254386,41439,'_blocks_6_row_content_text','field_64bfdd9b90689'),(254387,41439,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(254388,41439,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(254389,41439,'blocks_6_row_content_actions','1'),(254390,41439,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(254391,41439,'blocks_6_row_content',''),(254392,41439,'_blocks_6_row_content','field_64bfdd9b90686'),(254393,41439,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(254394,41439,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(254395,41439,'blocks_6_icon_row_items_0_label','Pay in full'),(254396,41439,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(254397,41439,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(254398,41439,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(254399,41439,'blocks_6_icon_row_items_1_icon','finance.svg'),(254400,41439,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(254401,41439,'blocks_6_icon_row_items_1_label','0% finance'),(254402,41439,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(254403,41439,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(254404,41439,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(254405,41439,'blocks_6_icon_row_items','3'),(254406,41439,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(254407,41439,'blocks_7_acfe_flexible_toggle',''),(254408,41439,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(254409,41439,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(254410,41439,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(254411,41439,'blocks_7_options_theme','#ffffff'),(254412,41439,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(254413,41439,'blocks_7_options_reverse','0'),(254414,41439,'_blocks_7_options_reverse','field_61768049bb8ac'),(254415,41439,'blocks_7_options',''),(254416,41439,'_blocks_7_options','field_617682517c334'),(254417,41439,'blocks_7_split_5050_image','41333'),(254418,41439,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(254419,41439,'blocks_7_split_5050_video',''),(254420,41439,'_blocks_7_split_5050_video','field_6239f3160848a'),(254421,41439,'blocks_7_split_5050_content_title',''),(254422,41439,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(254423,41439,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(254424,41439,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(254425,41439,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(254426,41439,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(254427,41439,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(254428,41439,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(254429,41439,'blocks_7_split_5050_content_actions','1'),(254430,41439,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(254431,41439,'blocks_7_split_5050_content',''),(254432,41439,'_blocks_7_split_5050_content','field_61767afceb8ba'),(254433,41439,'blocks_8_acfe_flexible_toggle',''),(254434,41439,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(254435,41439,'blocks_8_acfe_flexible_layout_title','Icons'),(254436,41439,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(254437,41439,'blocks_8_options_theme','#f5f5f5'),(254438,41439,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(254439,41439,'blocks_8_options_format','row'),(254440,41439,'_blocks_8_options_format','field_64bfde9a90690'),(254441,41439,'blocks_8_options',''),(254442,41439,'_blocks_8_options','field_64bfdd9b90684'),(254443,41439,'blocks_8_icon_row_items_0_icon','qualification.svg'),(254444,41439,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(254445,41439,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(254446,41439,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(254447,41439,'blocks_8_icon_row_items_0_text',''),(254448,41439,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(254449,41439,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(254450,41439,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(254451,41439,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(254452,41439,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(254453,41439,'blocks_8_icon_row_items_1_text',''),(254454,41439,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(254455,41439,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(254456,41439,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(254457,41439,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(254458,41439,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(254459,41439,'blocks_8_icon_row_items_2_text',''),(254460,41439,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(254461,41439,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(254462,41439,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(254463,41439,'blocks_8_icon_row_items_3_label','Flexible funding options'),(254464,41439,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(254465,41439,'blocks_8_icon_row_items_3_text',''),(254466,41439,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(254467,41439,'blocks_8_icon_row_items','4'),(254468,41439,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(254469,41439,'blocks_9_acfe_flexible_toggle',''),(254470,41439,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(254471,41439,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(254472,41439,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(254473,41439,'blocks_9_options_theme','#ffffff'),(254474,41439,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(254475,41439,'blocks_9_options_reverse','1'),(254476,41439,'_blocks_9_options_reverse','field_61768049bb8ac'),(254477,41439,'blocks_9_options',''),(254478,41439,'_blocks_9_options','field_617682517c334'),(254479,41439,'blocks_9_split_5050_image','39224'),(254480,41439,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(254481,41439,'blocks_9_split_5050_video',''),(254482,41439,'_blocks_9_split_5050_video','field_6239f3160848a'),(254483,41439,'blocks_9_split_5050_content_title','Locations'),(254484,41439,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(254485,41439,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(254486,41439,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(254487,41439,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(254488,41439,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(254489,41439,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(254490,41439,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(254491,41439,'blocks_9_split_5050_content_actions','1'),(254492,41439,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(254493,41439,'blocks_9_split_5050_content',''),(254494,41439,'_blocks_9_split_5050_content','field_61767afceb8ba'),(254495,41439,'blocks_1_acfe_flexible_toggle',''),(254496,41439,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(254497,41439,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(254498,41439,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(254499,41439,'blocks_1_options_theme','#ffffff'),(254500,41439,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(254501,41439,'blocks_1_options_reverse','0'),(254502,41439,'_blocks_1_options_reverse','field_61768049bb8ac'),(254503,41439,'blocks_1_options',''),(254504,41439,'_blocks_1_options','field_617682517c334'),(254505,41439,'blocks_1_split_5050_image','41430'),(254506,41439,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(254507,41439,'blocks_1_split_5050_video',''),(254508,41439,'_blocks_1_split_5050_video','field_6239f3160848a'),(254509,41439,'blocks_1_split_5050_content_title',''),(254510,41439,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(254511,41439,'blocks_1_split_5050_content_heading','Course Overview'),(254512,41439,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(254513,41439,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(254514,41439,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(254515,41439,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(254516,41439,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(254517,41439,'blocks_1_split_5050_content_actions','1'),(254518,41439,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(254519,41439,'blocks_1_split_5050_content',''),(254520,41439,'_blocks_1_split_5050_content','field_61767afceb8ba'),(254521,41439,'blocks_2_acfe_flexible_toggle',''),(254522,41439,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(254523,41439,'blocks_2_acfe_flexible_layout_title','Form'),(254524,41439,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(254525,41439,'blocks_2_row_content_format','standard'),(254526,41439,'_blocks_2_row_content_format','field_6481ead962881'),(254527,41439,'blocks_2_row_content_title',''),(254528,41439,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(254529,41439,'blocks_2_row_content_heading','Enquire Today'),(254530,41439,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(254531,41439,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(254532,41439,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(254533,41439,'blocks_2_row_content_actions',''),(254534,41439,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(254535,41439,'blocks_2_row_content',''),(254536,41439,'_blocks_2_row_content','field_61a0f5f5b3db0'),(254537,41439,'blocks_2_row_form','40394'),(254538,41439,'_blocks_2_row_form','field_61a4ff2c0b08e'),(254539,41439,'blocks_2_row_form_button_label',''),(254540,41439,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(254541,41439,'blocks_3_acfe_flexible_toggle',''),(254542,41439,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(254543,41439,'blocks_3_acfe_flexible_layout_title','Video'),(254544,41439,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(254545,41439,'blocks_3_size','large'),(254546,41439,'_blocks_3_size','field_6487038f297c1'),(254547,41439,'blocks_3_row_content_title',''),(254548,41439,'_blocks_3_row_content_title','field_64870132a865d'),(254549,41439,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(254550,41439,'_blocks_3_row_content_heading','field_64870142a865e'),(254551,41439,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(254552,41439,'_blocks_3_row_content_text','field_64870148a865f'),(254553,41439,'blocks_3_row_content',''),(254554,41439,'_blocks_3_row_content','field_6487008ba865c'),(254555,41439,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(254556,41439,'_blocks_3_video_src','field_6193c4a98ec07'),(254557,41439,'blocks_3_video_thumbnail',''),(254558,41439,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(254559,41439,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(254560,41439,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(254561,41439,'blocks_6_icon_row_items_2_label','Deposit & balance'),(254562,41439,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(254563,41439,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(254564,41439,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(254565,41439,'blocks_10_acfe_flexible_toggle','1'),(254566,41439,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(254567,41439,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(254568,41439,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(254569,41439,'blocks_10_options_theme','#ffffff'),(254570,41439,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(254571,41439,'blocks_10_options',''),(254572,41439,'_blocks_10_options','field_617ac0b7f6c08'),(254573,41439,'blocks_10_show','selection'),(254574,41439,'_blocks_10_show','field_61a49cba9d946'),(254575,41439,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(254576,41439,'_blocks_10_courses','field_61b244781ee0a'),(254577,41439,'blocks_10_open_whats_included','1'),(254578,41439,'_blocks_10_open_whats_included','field_66ebfd679450c'),(254579,41439,'blocks_10_open_key_information','0'),(254580,41439,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(254581,41439,'blocks_10_open',''),(254582,41439,'_blocks_10_open','field_66ebfd009450b'),(254583,41439,'blocks_11_acfe_flexible_toggle',''),(254584,41439,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(254585,41439,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(254586,41439,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(254587,41439,'blocks_11_options_theme','#ffffff'),(254588,41439,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(254589,41439,'blocks_11_options_reverse','0'),(254590,41439,'_blocks_11_options_reverse','field_61768049bb8ac'),(254591,41439,'blocks_11_options',''),(254592,41439,'_blocks_11_options','field_617682517c334'),(254593,41439,'blocks_11_split_5050_image','41299'),(254594,41439,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(254595,41439,'blocks_11_split_5050_video',''),(254596,41439,'_blocks_11_split_5050_video','field_6239f3160848a'),(254597,41439,'blocks_11_split_5050_content_title','Optimise Performance '),(254598,41439,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(254599,41439,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(254600,41439,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(254601,41439,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(254602,41439,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(254603,41439,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(254604,41439,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(254605,41439,'blocks_11_split_5050_content_actions','1'),(254606,41439,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(254607,41439,'blocks_11_split_5050_content',''),(254608,41439,'_blocks_11_split_5050_content','field_61767afceb8ba'),(254609,41439,'blocks_12_acfe_flexible_toggle',''),(254610,41439,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(254611,41439,'blocks_12_acfe_flexible_layout_title','Template'),(254612,41439,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(254613,41439,'blocks_12_template','40987'),(254614,41439,'_blocks_12_template','field_617bdd570fe01'),(254615,41439,'blocks_13_acfe_flexible_toggle',''),(254616,41439,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(254617,41439,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(254618,41439,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(254619,41439,'blocks_13_options_theme','#f5f5f5'),(254620,41439,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(254621,41439,'blocks_13_options_state','0'),(254622,41439,'_blocks_13_options_state','field_6239fcb7508c5'),(254623,41439,'blocks_13_options',''),(254624,41439,'_blocks_13_options','field_6177e2991ac44'),(254625,41439,'blocks_13_content_title',''),(254626,41439,'_blocks_13_content_title','field_64d237e8bb1e2'),(254627,41439,'blocks_13_content_heading','FAQ\'s'),(254628,41439,'_blocks_13_content_heading','field_64d237e8bb1e3'),(254629,41439,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(254630,41439,'_blocks_13_content_text','field_64d237e8bb1e4'),(254631,41439,'blocks_13_content_actions',''),(254632,41439,'_blocks_13_content_actions','field_64d237e8bb1e5'),(254633,41439,'blocks_13_content_align','left'),(254634,41439,'_blocks_13_content_align','field_64d2443e6b6aa'),(254635,41439,'blocks_13_content',''),(254636,41439,'_blocks_13_content','field_64d237e8bb1e1'),(254637,41439,'blocks_13_accordion_content','faqs'),(254638,41439,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(254639,41439,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(254640,41439,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(254641,41439,'blocks_13_actions',''),(254642,41439,'_blocks_13_actions','field_61a746a817f7a'),(254643,41440,'hide_hero','0'),(254644,41440,'_hide_hero','field_66a2380fcda39'),(254645,41440,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(254646,41440,'_hero_title','field_617571fe285e8'),(254647,41440,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(254648,41440,'_hero_text','field_6175723c285e9'),(254649,41440,'hero_actions','1'),(254650,41440,'_hero_actions','field_61757270285ea'),(254651,41440,'hero_style','default'),(254652,41440,'_hero_style','field_62051d9dc5324'),(254653,41440,'_thumbnail_id','41428'),(254654,41440,'__thumbnail_id','field_617570855ddaf'),(254655,41440,'hero_image_pos_x','right'),(254656,41440,'_hero_image_pos_x','field_62ec3d05390bb'),(254657,41440,'hero_image_pos_y','top'),(254658,41440,'_hero_image_pos_y','field_62ec3d05390bc'),(254659,41440,'hero_image_pos',''),(254660,41440,'_hero_image_pos','field_62ec3d05390ba'),(254661,41440,'fft_hide_from_listings','0'),(254662,41440,'_fft_hide_from_listings','field_61f1320446ab2'),(254663,41440,'fft_page_format','default'),(254664,41440,'_fft_page_format','field_61ae213f1f218'),(254665,41440,'fft_hide_nav','0'),(254666,41440,'_fft_hide_nav','field_635bd5e43527c'),(254667,41440,'fft_hide_header_call_to_action','0'),(254668,41440,'_fft_hide_header_call_to_action','field_635bd6723527d'),(254669,41440,'fft_page_sitemap','0'),(254670,41440,'_fft_page_sitemap','field_61af9b34e8181'),(254671,41440,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(254672,41440,'_blocks','field_6176696113096'),(254673,41440,'course_label_text',''),(254674,41440,'_course_label_text','field_61e17babf71fa'),(254675,41440,'course_label',''),(254676,41440,'_course_label','field_61e12f92749a7'),(254677,41440,'course_description',''),(254678,41440,'_course_description','field_617ac5788e5e1'),(254679,41440,'course_key_info',''),(254680,41440,'_course_key_info','field_617ac6ad8e5e2'),(254681,41440,'course_included',''),(254682,41440,'_course_included','field_617ac6f08e5e4'),(254683,41440,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(254684,41440,'_hero_actions_0_button','field_61757281285eb'),(254685,41440,'blocks_0_acfe_flexible_toggle',''),(254686,41440,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(254687,41440,'blocks_0_acfe_flexible_layout_title','Icons'),(254688,41440,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(254689,41440,'blocks_0_options_theme','#b61234'),(254690,41440,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(254691,41440,'blocks_0_options_format','row'),(254692,41440,'_blocks_0_options_format','field_64bfde9a90690'),(254693,41440,'blocks_0_options',''),(254694,41440,'_blocks_0_options','field_64bfdd9b90684'),(254695,41440,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(254696,41440,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(254697,41440,'blocks_0_icon_row_items_0_label','Accreditation'),(254698,41440,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(254699,41440,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(254700,41440,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(254701,41440,'blocks_0_icon_row_items_1_icon','finance.svg'),(254702,41440,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(254703,41440,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(254704,41440,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(254705,41440,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(254706,41440,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(254707,41440,'blocks_0_icon_row_items_2_icon','progression.svg'),(254708,41440,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(254709,41440,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(254710,41440,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(254711,41440,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(254712,41440,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(254713,41440,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(254714,41440,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(254715,41440,'blocks_0_icon_row_items_3_label','Qualification'),(254716,41440,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(254717,41440,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(254718,41440,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(254719,41440,'blocks_0_icon_row_items','4'),(254720,41440,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(254721,41440,'blocks_5_acfe_flexible_toggle','1'),(254722,41440,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(254723,41440,'blocks_5_acfe_flexible_layout_title','Tabs'),(254724,41440,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(254725,41440,'blocks_5_options_theme','#ffffff'),(254726,41440,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(254727,41440,'blocks_5_options',''),(254728,41440,'_blocks_5_options','field_6177cfcd8140f'),(254729,41440,'blocks_5_tabs_0_tab_label','Entry requirements'),(254730,41440,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(254731,41440,'blocks_5_tabs_0_tab_content_title',''),(254732,41440,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(254733,41440,'blocks_5_tabs_0_tab_content_heading',''),(254734,41440,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(254735,41440,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(254736,41440,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(254737,41440,'blocks_5_tabs_0_tab_content_actions',''),(254738,41440,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(254739,41440,'blocks_5_tabs_0_tab_content',''),(254740,41440,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(254741,41440,'blocks_5_tabs_0_tab_image',''),(254742,41440,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(254743,41440,'blocks_5_tabs_1_tab_label','Learning format'),(254744,41440,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(254745,41440,'blocks_5_tabs_1_tab_content_title',''),(254746,41440,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(254747,41440,'blocks_5_tabs_1_tab_content_heading',''),(254748,41440,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(254749,41440,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(254750,41440,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(254751,41440,'blocks_5_tabs_1_tab_content_actions',''),(254752,41440,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(254753,41440,'blocks_5_tabs_1_tab_content',''),(254754,41440,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(254755,41440,'blocks_5_tabs_1_tab_image',''),(254756,41440,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(254757,41440,'blocks_5_tabs_2_tab_label','Qualifications included'),(254758,41440,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(254759,41440,'blocks_5_tabs_2_tab_content_title',''),(254760,41440,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(254761,41440,'blocks_5_tabs_2_tab_content_heading',''),(254762,41440,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(254763,41440,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(254764,41440,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(254765,41440,'blocks_5_tabs_2_tab_content_actions',''),(254766,41440,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(254767,41440,'blocks_5_tabs_2_tab_content',''),(254768,41440,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(254769,41440,'blocks_5_tabs_2_tab_image',''),(254770,41440,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(254771,41440,'blocks_5_tabs','3'),(254772,41440,'_blocks_5_tabs','field_6177cff281419'),(254773,41440,'blocks_4_acfe_flexible_toggle',''),(254774,41440,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(254775,41440,'blocks_4_acfe_flexible_layout_title','Template'),(254776,41440,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(254777,41440,'blocks_4_template','39207'),(254778,41440,'_blocks_4_template','field_617bdd570fe01'),(254779,41440,'blocks_6_acfe_flexible_toggle',''),(254780,41440,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(254781,41440,'blocks_6_acfe_flexible_layout_title','Icons'),(254782,41440,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(254783,41440,'blocks_6_options_theme','#f5f5f5'),(254784,41440,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(254785,41440,'blocks_6_options_format','stacked'),(254786,41440,'_blocks_6_options_format','field_64bfde9a90690'),(254787,41440,'blocks_6_options',''),(254788,41440,'_blocks_6_options','field_64bfdd9b90684'),(254789,41440,'blocks_6_row_content_title','Options available to pay for your course'),(254790,41440,'_blocks_6_row_content_title','field_64bfdd9b90687'),(254791,41440,'blocks_6_row_content_heading','Fees & Funding Options '),(254792,41440,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(254793,41440,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(254794,41440,'_blocks_6_row_content_text','field_64bfdd9b90689'),(254795,41440,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(254796,41440,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(254797,41440,'blocks_6_row_content_actions','1'),(254798,41440,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(254799,41440,'blocks_6_row_content',''),(254800,41440,'_blocks_6_row_content','field_64bfdd9b90686'),(254801,41440,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(254802,41440,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(254803,41440,'blocks_6_icon_row_items_0_label','Pay in full'),(254804,41440,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(254805,41440,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(254806,41440,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(254807,41440,'blocks_6_icon_row_items_1_icon','finance.svg'),(254808,41440,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(254809,41440,'blocks_6_icon_row_items_1_label','0% finance'),(254810,41440,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(254811,41440,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(254812,41440,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(254813,41440,'blocks_6_icon_row_items','3'),(254814,41440,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(254815,41440,'blocks_7_acfe_flexible_toggle',''),(254816,41440,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(254817,41440,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(254818,41440,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(254819,41440,'blocks_7_options_theme','#ffffff'),(254820,41440,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(254821,41440,'blocks_7_options_reverse','0'),(254822,41440,'_blocks_7_options_reverse','field_61768049bb8ac'),(254823,41440,'blocks_7_options',''),(254824,41440,'_blocks_7_options','field_617682517c334'),(254825,41440,'blocks_7_split_5050_image','41333'),(254826,41440,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(254827,41440,'blocks_7_split_5050_video',''),(254828,41440,'_blocks_7_split_5050_video','field_6239f3160848a'),(254829,41440,'blocks_7_split_5050_content_title',''),(254830,41440,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(254831,41440,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(254832,41440,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(254833,41440,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(254834,41440,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(254835,41440,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(254836,41440,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(254837,41440,'blocks_7_split_5050_content_actions','1'),(254838,41440,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(254839,41440,'blocks_7_split_5050_content',''),(254840,41440,'_blocks_7_split_5050_content','field_61767afceb8ba'),(254841,41440,'blocks_8_acfe_flexible_toggle',''),(254842,41440,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(254843,41440,'blocks_8_acfe_flexible_layout_title','Icons'),(254844,41440,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(254845,41440,'blocks_8_options_theme','#f5f5f5'),(254846,41440,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(254847,41440,'blocks_8_options_format','row'),(254848,41440,'_blocks_8_options_format','field_64bfde9a90690'),(254849,41440,'blocks_8_options',''),(254850,41440,'_blocks_8_options','field_64bfdd9b90684'),(254851,41440,'blocks_8_icon_row_items_0_icon','qualification.svg'),(254852,41440,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(254853,41440,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(254854,41440,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(254855,41440,'blocks_8_icon_row_items_0_text',''),(254856,41440,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(254857,41440,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(254858,41440,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(254859,41440,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(254860,41440,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(254861,41440,'blocks_8_icon_row_items_1_text',''),(254862,41440,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(254863,41440,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(254864,41440,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(254865,41440,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(254866,41440,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(254867,41440,'blocks_8_icon_row_items_2_text',''),(254868,41440,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(254869,41440,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(254870,41440,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(254871,41440,'blocks_8_icon_row_items_3_label','Flexible funding options'),(254872,41440,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(254873,41440,'blocks_8_icon_row_items_3_text',''),(254874,41440,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(254875,41440,'blocks_8_icon_row_items','4'),(254876,41440,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(254877,41440,'blocks_9_acfe_flexible_toggle',''),(254878,41440,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(254879,41440,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(254880,41440,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(254881,41440,'blocks_9_options_theme','#ffffff'),(254882,41440,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(254883,41440,'blocks_9_options_reverse','1'),(254884,41440,'_blocks_9_options_reverse','field_61768049bb8ac'),(254885,41440,'blocks_9_options',''),(254886,41440,'_blocks_9_options','field_617682517c334'),(254887,41440,'blocks_9_split_5050_image','39224'),(254888,41440,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(254889,41440,'blocks_9_split_5050_video',''),(254890,41440,'_blocks_9_split_5050_video','field_6239f3160848a'),(254891,41440,'blocks_9_split_5050_content_title','Locations'),(254892,41440,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(254893,41440,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(254894,41440,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(254895,41440,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(254896,41440,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(254897,41440,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(254898,41440,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(254899,41440,'blocks_9_split_5050_content_actions','1'),(254900,41440,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(254901,41440,'blocks_9_split_5050_content',''),(254902,41440,'_blocks_9_split_5050_content','field_61767afceb8ba'),(254903,41440,'blocks_1_acfe_flexible_toggle',''),(254904,41440,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(254905,41440,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(254906,41440,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(254907,41440,'blocks_1_options_theme','#ffffff'),(254908,41440,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(254909,41440,'blocks_1_options_reverse','0'),(254910,41440,'_blocks_1_options_reverse','field_61768049bb8ac'),(254911,41440,'blocks_1_options',''),(254912,41440,'_blocks_1_options','field_617682517c334'),(254913,41440,'blocks_1_split_5050_image','41430'),(254914,41440,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(254915,41440,'blocks_1_split_5050_video',''),(254916,41440,'_blocks_1_split_5050_video','field_6239f3160848a'),(254917,41440,'blocks_1_split_5050_content_title',''),(254918,41440,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(254919,41440,'blocks_1_split_5050_content_heading','Course Overview'),(254920,41440,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(254921,41440,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(254922,41440,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(254923,41440,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:0:\"\";}'),(254924,41440,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(254925,41440,'blocks_1_split_5050_content_actions','1'),(254926,41440,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(254927,41440,'blocks_1_split_5050_content',''),(254928,41440,'_blocks_1_split_5050_content','field_61767afceb8ba'),(254929,41440,'blocks_2_acfe_flexible_toggle',''),(254930,41440,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(254931,41440,'blocks_2_acfe_flexible_layout_title','Form'),(254932,41440,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(254933,41440,'blocks_2_row_content_format','standard'),(254934,41440,'_blocks_2_row_content_format','field_6481ead962881'),(254935,41440,'blocks_2_row_content_title',''),(254936,41440,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(254937,41440,'blocks_2_row_content_heading','Enquire Today'),(254938,41440,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(254939,41440,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(254940,41440,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(254941,41440,'blocks_2_row_content_actions',''),(254942,41440,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(254943,41440,'blocks_2_row_content',''),(254944,41440,'_blocks_2_row_content','field_61a0f5f5b3db0'),(254945,41440,'blocks_2_row_form','40394'),(254946,41440,'_blocks_2_row_form','field_61a4ff2c0b08e'),(254947,41440,'blocks_2_row_form_button_label',''),(254948,41440,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(254949,41440,'blocks_3_acfe_flexible_toggle',''),(254950,41440,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(254951,41440,'blocks_3_acfe_flexible_layout_title','Video'),(254952,41440,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(254953,41440,'blocks_3_size','large'),(254954,41440,'_blocks_3_size','field_6487038f297c1'),(254955,41440,'blocks_3_row_content_title',''),(254956,41440,'_blocks_3_row_content_title','field_64870132a865d'),(254957,41440,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(254958,41440,'_blocks_3_row_content_heading','field_64870142a865e'),(254959,41440,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(254960,41440,'_blocks_3_row_content_text','field_64870148a865f'),(254961,41440,'blocks_3_row_content',''),(254962,41440,'_blocks_3_row_content','field_6487008ba865c'),(254963,41440,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(254964,41440,'_blocks_3_video_src','field_6193c4a98ec07'),(254965,41440,'blocks_3_video_thumbnail',''),(254966,41440,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(254967,41440,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(254968,41440,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(254969,41440,'blocks_6_icon_row_items_2_label','Deposit & balance'),(254970,41440,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(254971,41440,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(254972,41440,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(254973,41440,'blocks_10_acfe_flexible_toggle','1'),(254974,41440,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(254975,41440,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(254976,41440,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(254977,41440,'blocks_10_options_theme','#ffffff'),(254978,41440,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(254979,41440,'blocks_10_options',''),(254980,41440,'_blocks_10_options','field_617ac0b7f6c08'),(254981,41440,'blocks_10_show','selection'),(254982,41440,'_blocks_10_show','field_61a49cba9d946'),(254983,41440,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(254984,41440,'_blocks_10_courses','field_61b244781ee0a'),(254985,41440,'blocks_10_open_whats_included','1'),(254986,41440,'_blocks_10_open_whats_included','field_66ebfd679450c'),(254987,41440,'blocks_10_open_key_information','0'),(254988,41440,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(254989,41440,'blocks_10_open',''),(254990,41440,'_blocks_10_open','field_66ebfd009450b'),(254991,41440,'blocks_11_acfe_flexible_toggle',''),(254992,41440,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(254993,41440,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(254994,41440,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(254995,41440,'blocks_11_options_theme','#ffffff'),(254996,41440,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(254997,41440,'blocks_11_options_reverse','0'),(254998,41440,'_blocks_11_options_reverse','field_61768049bb8ac'),(254999,41440,'blocks_11_options',''),(255000,41440,'_blocks_11_options','field_617682517c334'),(255001,41440,'blocks_11_split_5050_image','41299'),(255002,41440,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(255003,41440,'blocks_11_split_5050_video',''),(255004,41440,'_blocks_11_split_5050_video','field_6239f3160848a'),(255005,41440,'blocks_11_split_5050_content_title','Optimise Performance '),(255006,41440,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(255007,41440,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(255008,41440,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(255009,41440,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(255010,41440,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(255011,41440,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(255012,41440,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(255013,41440,'blocks_11_split_5050_content_actions','1'),(255014,41440,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(255015,41440,'blocks_11_split_5050_content',''),(255016,41440,'_blocks_11_split_5050_content','field_61767afceb8ba'),(255017,41440,'blocks_12_acfe_flexible_toggle',''),(255018,41440,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(255019,41440,'blocks_12_acfe_flexible_layout_title','Template'),(255020,41440,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(255021,41440,'blocks_12_template','40987'),(255022,41440,'_blocks_12_template','field_617bdd570fe01'),(255023,41440,'blocks_13_acfe_flexible_toggle',''),(255024,41440,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(255025,41440,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(255026,41440,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(255027,41440,'blocks_13_options_theme','#f5f5f5'),(255028,41440,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(255029,41440,'blocks_13_options_state','0'),(255030,41440,'_blocks_13_options_state','field_6239fcb7508c5'),(255031,41440,'blocks_13_options',''),(255032,41440,'_blocks_13_options','field_6177e2991ac44'),(255033,41440,'blocks_13_content_title',''),(255034,41440,'_blocks_13_content_title','field_64d237e8bb1e2'),(255035,41440,'blocks_13_content_heading','FAQ\'s'),(255036,41440,'_blocks_13_content_heading','field_64d237e8bb1e3'),(255037,41440,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(255038,41440,'_blocks_13_content_text','field_64d237e8bb1e4'),(255039,41440,'blocks_13_content_actions',''),(255040,41440,'_blocks_13_content_actions','field_64d237e8bb1e5'),(255041,41440,'blocks_13_content_align','left'),(255042,41440,'_blocks_13_content_align','field_64d2443e6b6aa'),(255043,41440,'blocks_13_content',''),(255044,41440,'_blocks_13_content','field_64d237e8bb1e1'),(255045,41440,'blocks_13_accordion_content','faqs'),(255046,41440,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(255047,41440,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(255048,41440,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(255049,41440,'blocks_13_actions',''),(255050,41440,'_blocks_13_actions','field_61a746a817f7a'),(255459,41442,'hide_hero','0'),(255460,41442,'_hide_hero','field_66a2380fcda39'),(255461,41442,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(255462,41442,'_hero_title','field_617571fe285e8'),(255463,41442,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(255464,41442,'_hero_text','field_6175723c285e9'),(255465,41442,'hero_actions','1'),(255466,41442,'_hero_actions','field_61757270285ea'),(255467,41442,'hero_style','default'),(255468,41442,'_hero_style','field_62051d9dc5324'),(255469,41442,'_thumbnail_id','41428'),(255470,41442,'__thumbnail_id','field_617570855ddaf'),(255471,41442,'hero_image_pos_x','right'),(255472,41442,'_hero_image_pos_x','field_62ec3d05390bb'),(255473,41442,'hero_image_pos_y','top'),(255474,41442,'_hero_image_pos_y','field_62ec3d05390bc'),(255475,41442,'hero_image_pos',''),(255476,41442,'_hero_image_pos','field_62ec3d05390ba'),(255477,41442,'fft_hide_from_listings','0'),(255478,41442,'_fft_hide_from_listings','field_61f1320446ab2'),(255479,41442,'fft_page_format','default'),(255480,41442,'_fft_page_format','field_61ae213f1f218'),(255481,41442,'fft_hide_nav','0'),(255482,41442,'_fft_hide_nav','field_635bd5e43527c'),(255483,41442,'fft_hide_header_call_to_action','0'),(255484,41442,'_fft_hide_header_call_to_action','field_635bd6723527d'),(255485,41442,'fft_page_sitemap','0'),(255486,41442,'_fft_page_sitemap','field_61af9b34e8181'),(255487,41442,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(255488,41442,'_blocks','field_6176696113096'),(255489,41442,'course_label_text',''),(255490,41442,'_course_label_text','field_61e17babf71fa'),(255491,41442,'course_label',''),(255492,41442,'_course_label','field_61e12f92749a7'),(255493,41442,'course_description',''),(255494,41442,'_course_description','field_617ac5788e5e1'),(255495,41442,'course_key_info',''),(255496,41442,'_course_key_info','field_617ac6ad8e5e2'),(255497,41442,'course_included',''),(255498,41442,'_course_included','field_617ac6f08e5e4'),(255499,41442,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(255500,41442,'_hero_actions_0_button','field_61757281285eb'),(255501,41442,'blocks_0_acfe_flexible_toggle',''),(255502,41442,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(255503,41442,'blocks_0_acfe_flexible_layout_title','Icons'),(255504,41442,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(255505,41442,'blocks_0_options_theme','#b61234'),(255506,41442,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(255507,41442,'blocks_0_options_format','row'),(255508,41442,'_blocks_0_options_format','field_64bfde9a90690'),(255509,41442,'blocks_0_options',''),(255510,41442,'_blocks_0_options','field_64bfdd9b90684'),(255511,41442,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(255512,41442,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(255513,41442,'blocks_0_icon_row_items_0_label','Accreditation'),(255514,41442,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(255515,41442,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(255516,41442,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(255517,41442,'blocks_0_icon_row_items_1_icon','finance.svg'),(255518,41442,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(255519,41442,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(255520,41442,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(255521,41442,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(255522,41442,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(255523,41442,'blocks_0_icon_row_items_2_icon','progression.svg'),(255524,41442,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(255525,41442,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(255526,41442,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(255527,41442,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(255528,41442,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(255529,41442,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(255530,41442,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(255531,41442,'blocks_0_icon_row_items_3_label','Qualification'),(255532,41442,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(255533,41442,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(255534,41442,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(255535,41442,'blocks_0_icon_row_items','4'),(255536,41442,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(255537,41442,'blocks_5_acfe_flexible_toggle','1'),(255538,41442,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(255539,41442,'blocks_5_acfe_flexible_layout_title','Tabs'),(255540,41442,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(255541,41442,'blocks_5_options_theme','#ffffff'),(255542,41442,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(255543,41442,'blocks_5_options',''),(255544,41442,'_blocks_5_options','field_6177cfcd8140f'),(255545,41442,'blocks_5_tabs_0_tab_label','Entry requirements'),(255546,41442,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(255547,41442,'blocks_5_tabs_0_tab_content_title',''),(255548,41442,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(255549,41442,'blocks_5_tabs_0_tab_content_heading',''),(255550,41442,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(255551,41442,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(255552,41442,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(255553,41442,'blocks_5_tabs_0_tab_content_actions',''),(255554,41442,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(255555,41442,'blocks_5_tabs_0_tab_content',''),(255556,41442,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(255557,41442,'blocks_5_tabs_0_tab_image',''),(255558,41442,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(255559,41442,'blocks_5_tabs_1_tab_label','Learning format'),(255560,41442,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(255561,41442,'blocks_5_tabs_1_tab_content_title',''),(255562,41442,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(255563,41442,'blocks_5_tabs_1_tab_content_heading',''),(255564,41442,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(255565,41442,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(255566,41442,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(255567,41442,'blocks_5_tabs_1_tab_content_actions',''),(255568,41442,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(255569,41442,'blocks_5_tabs_1_tab_content',''),(255570,41442,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(255571,41442,'blocks_5_tabs_1_tab_image',''),(255572,41442,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(255573,41442,'blocks_5_tabs_2_tab_label','Qualifications included'),(255574,41442,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(255575,41442,'blocks_5_tabs_2_tab_content_title',''),(255576,41442,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(255577,41442,'blocks_5_tabs_2_tab_content_heading',''),(255578,41442,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(255579,41442,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(255580,41442,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(255581,41442,'blocks_5_tabs_2_tab_content_actions',''),(255582,41442,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(255583,41442,'blocks_5_tabs_2_tab_content',''),(255584,41442,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(255585,41442,'blocks_5_tabs_2_tab_image',''),(255586,41442,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(255587,41442,'blocks_5_tabs','3'),(255588,41442,'_blocks_5_tabs','field_6177cff281419'),(255589,41442,'blocks_4_acfe_flexible_toggle',''),(255590,41442,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(255591,41442,'blocks_4_acfe_flexible_layout_title','Template'),(255592,41442,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(255593,41442,'blocks_4_template','39207'),(255594,41442,'_blocks_4_template','field_617bdd570fe01'),(255595,41442,'blocks_6_acfe_flexible_toggle',''),(255596,41442,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(255597,41442,'blocks_6_acfe_flexible_layout_title','Icons'),(255598,41442,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(255599,41442,'blocks_6_options_theme','#f5f5f5'),(255600,41442,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(255601,41442,'blocks_6_options_format','stacked'),(255602,41442,'_blocks_6_options_format','field_64bfde9a90690'),(255603,41442,'blocks_6_options',''),(255604,41442,'_blocks_6_options','field_64bfdd9b90684'),(255605,41442,'blocks_6_row_content_title','Options available to pay for your course'),(255606,41442,'_blocks_6_row_content_title','field_64bfdd9b90687'),(255607,41442,'blocks_6_row_content_heading','Fees & Funding Options '),(255608,41442,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(255609,41442,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(255610,41442,'_blocks_6_row_content_text','field_64bfdd9b90689'),(255611,41442,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(255612,41442,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(255613,41442,'blocks_6_row_content_actions','1'),(255614,41442,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(255615,41442,'blocks_6_row_content',''),(255616,41442,'_blocks_6_row_content','field_64bfdd9b90686'),(255617,41442,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(255618,41442,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(255619,41442,'blocks_6_icon_row_items_0_label','Pay in full'),(255620,41442,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(255621,41442,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(255622,41442,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(255623,41442,'blocks_6_icon_row_items_1_icon','finance.svg'),(255624,41442,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(255625,41442,'blocks_6_icon_row_items_1_label','0% finance'),(255626,41442,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(255627,41442,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(255628,41442,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(255629,41442,'blocks_6_icon_row_items','3'),(255630,41442,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(255631,41442,'blocks_7_acfe_flexible_toggle',''),(255632,41442,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(255633,41442,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(255634,41442,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(255635,41442,'blocks_7_options_theme','#ffffff'),(255636,41442,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(255637,41442,'blocks_7_options_reverse','0'),(255638,41442,'_blocks_7_options_reverse','field_61768049bb8ac'),(255639,41442,'blocks_7_options',''),(255640,41442,'_blocks_7_options','field_617682517c334'),(255641,41442,'blocks_7_split_5050_image','41333'),(255642,41442,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(255643,41442,'blocks_7_split_5050_video',''),(255644,41442,'_blocks_7_split_5050_video','field_6239f3160848a'),(255645,41442,'blocks_7_split_5050_content_title',''),(255646,41442,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(255647,41442,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(255648,41442,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(255649,41442,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(255650,41442,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(255651,41442,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(255652,41442,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(255653,41442,'blocks_7_split_5050_content_actions','1'),(255654,41442,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(255655,41442,'blocks_7_split_5050_content',''),(255656,41442,'_blocks_7_split_5050_content','field_61767afceb8ba'),(255657,41442,'blocks_8_acfe_flexible_toggle',''),(255658,41442,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(255659,41442,'blocks_8_acfe_flexible_layout_title','Icons'),(255660,41442,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(255661,41442,'blocks_8_options_theme','#f5f5f5'),(255662,41442,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(255663,41442,'blocks_8_options_format','row'),(255664,41442,'_blocks_8_options_format','field_64bfde9a90690'),(255665,41442,'blocks_8_options',''),(255666,41442,'_blocks_8_options','field_64bfdd9b90684'),(255667,41442,'blocks_8_icon_row_items_0_icon','qualification.svg'),(255668,41442,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(255669,41442,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(255670,41442,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(255671,41442,'blocks_8_icon_row_items_0_text',''),(255672,41442,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(255673,41442,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(255674,41442,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(255675,41442,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(255676,41442,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(255677,41442,'blocks_8_icon_row_items_1_text',''),(255678,41442,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(255679,41442,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(255680,41442,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(255681,41442,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(255682,41442,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(255683,41442,'blocks_8_icon_row_items_2_text',''),(255684,41442,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(255685,41442,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(255686,41442,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(255687,41442,'blocks_8_icon_row_items_3_label','Flexible funding options'),(255688,41442,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(255689,41442,'blocks_8_icon_row_items_3_text',''),(255690,41442,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(255691,41442,'blocks_8_icon_row_items','4'),(255692,41442,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(255693,41442,'blocks_9_acfe_flexible_toggle',''),(255694,41442,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(255695,41442,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(255696,41442,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(255697,41442,'blocks_9_options_theme','#ffffff'),(255698,41442,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(255699,41442,'blocks_9_options_reverse','1'),(255700,41442,'_blocks_9_options_reverse','field_61768049bb8ac'),(255701,41442,'blocks_9_options',''),(255702,41442,'_blocks_9_options','field_617682517c334'),(255703,41442,'blocks_9_split_5050_image','39224'),(255704,41442,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(255705,41442,'blocks_9_split_5050_video',''),(255706,41442,'_blocks_9_split_5050_video','field_6239f3160848a'),(255707,41442,'blocks_9_split_5050_content_title','Locations'),(255708,41442,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(255709,41442,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(255710,41442,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(255711,41442,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(255712,41442,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(255713,41442,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(255714,41442,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(255715,41442,'blocks_9_split_5050_content_actions','1'),(255716,41442,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(255717,41442,'blocks_9_split_5050_content',''),(255718,41442,'_blocks_9_split_5050_content','field_61767afceb8ba'),(255719,41442,'blocks_1_acfe_flexible_toggle',''),(255720,41442,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(255721,41442,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(255722,41442,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(255723,41442,'blocks_1_options_theme','#ffffff'),(255724,41442,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(255725,41442,'blocks_1_options_reverse','0'),(255726,41442,'_blocks_1_options_reverse','field_61768049bb8ac'),(255727,41442,'blocks_1_options',''),(255728,41442,'_blocks_1_options','field_617682517c334'),(255729,41442,'blocks_1_split_5050_image','41430'),(255730,41442,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(255731,41442,'blocks_1_split_5050_video',''),(255732,41442,'_blocks_1_split_5050_video','field_6239f3160848a'),(255733,41442,'blocks_1_split_5050_content_title',''),(255734,41442,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(255735,41442,'blocks_1_split_5050_content_heading','Course Overview'),(255736,41442,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(255737,41442,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(255738,41442,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(255739,41442,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(255740,41442,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(255741,41442,'blocks_1_split_5050_content_actions','1'),(255742,41442,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(255743,41442,'blocks_1_split_5050_content',''),(255744,41442,'_blocks_1_split_5050_content','field_61767afceb8ba'),(255745,41442,'blocks_2_acfe_flexible_toggle',''),(255746,41442,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(255747,41442,'blocks_2_acfe_flexible_layout_title','Form'),(255748,41442,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(255749,41442,'blocks_2_row_content_format','standard'),(255750,41442,'_blocks_2_row_content_format','field_6481ead962881'),(255751,41442,'blocks_2_row_content_title',''),(255752,41442,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(255753,41442,'blocks_2_row_content_heading','Enquire Today'),(255754,41442,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(255755,41442,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(255756,41442,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(255757,41442,'blocks_2_row_content_actions',''),(255758,41442,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(255759,41442,'blocks_2_row_content',''),(255760,41442,'_blocks_2_row_content','field_61a0f5f5b3db0'),(255761,41442,'blocks_2_row_form','40394'),(255762,41442,'_blocks_2_row_form','field_61a4ff2c0b08e'),(255763,41442,'blocks_2_row_form_button_label',''),(255764,41442,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(255765,41442,'blocks_3_acfe_flexible_toggle',''),(255766,41442,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(255767,41442,'blocks_3_acfe_flexible_layout_title','Video'),(255768,41442,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(255769,41442,'blocks_3_size','large'),(255770,41442,'_blocks_3_size','field_6487038f297c1'),(255771,41442,'blocks_3_row_content_title',''),(255772,41442,'_blocks_3_row_content_title','field_64870132a865d'),(255773,41442,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(255774,41442,'_blocks_3_row_content_heading','field_64870142a865e'),(255775,41442,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(255776,41442,'_blocks_3_row_content_text','field_64870148a865f'),(255777,41442,'blocks_3_row_content',''),(255778,41442,'_blocks_3_row_content','field_6487008ba865c'),(255779,41442,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(255780,41442,'_blocks_3_video_src','field_6193c4a98ec07'),(255781,41442,'blocks_3_video_thumbnail',''),(255782,41442,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(255783,41442,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(255784,41442,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(255785,41442,'blocks_6_icon_row_items_2_label','Deposit & balance'),(255786,41442,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(255787,41442,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(255788,41442,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(255789,41442,'blocks_10_acfe_flexible_toggle','1'),(255790,41442,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(255791,41442,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(255792,41442,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(255793,41442,'blocks_10_options_theme','#ffffff'),(255794,41442,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(255795,41442,'blocks_10_options',''),(255796,41442,'_blocks_10_options','field_617ac0b7f6c08'),(255797,41442,'blocks_10_show','selection'),(255798,41442,'_blocks_10_show','field_61a49cba9d946'),(255799,41442,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(255800,41442,'_blocks_10_courses','field_61b244781ee0a'),(255801,41442,'blocks_10_open_whats_included','1'),(255802,41442,'_blocks_10_open_whats_included','field_66ebfd679450c'),(255803,41442,'blocks_10_open_key_information','0'),(255804,41442,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(255805,41442,'blocks_10_open',''),(255806,41442,'_blocks_10_open','field_66ebfd009450b'),(255807,41442,'blocks_11_acfe_flexible_toggle',''),(255808,41442,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(255809,41442,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(255810,41442,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(255811,41442,'blocks_11_options_theme','#ffffff'),(255812,41442,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(255813,41442,'blocks_11_options_reverse','0'),(255814,41442,'_blocks_11_options_reverse','field_61768049bb8ac'),(255815,41442,'blocks_11_options',''),(255816,41442,'_blocks_11_options','field_617682517c334'),(255817,41442,'blocks_11_split_5050_image','41299'),(255818,41442,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(255819,41442,'blocks_11_split_5050_video',''),(255820,41442,'_blocks_11_split_5050_video','field_6239f3160848a'),(255821,41442,'blocks_11_split_5050_content_title','Optimise Performance '),(255822,41442,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(255823,41442,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(255824,41442,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(255825,41442,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(255826,41442,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(255827,41442,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(255828,41442,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(255829,41442,'blocks_11_split_5050_content_actions','1'),(255830,41442,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(255831,41442,'blocks_11_split_5050_content',''),(255832,41442,'_blocks_11_split_5050_content','field_61767afceb8ba'),(255833,41442,'blocks_12_acfe_flexible_toggle',''),(255834,41442,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(255835,41442,'blocks_12_acfe_flexible_layout_title','Template'),(255836,41442,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(255837,41442,'blocks_12_template','40987'),(255838,41442,'_blocks_12_template','field_617bdd570fe01'),(255839,41442,'blocks_13_acfe_flexible_toggle',''),(255840,41442,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(255841,41442,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(255842,41442,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(255843,41442,'blocks_13_options_theme','#f5f5f5'),(255844,41442,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(255845,41442,'blocks_13_options_state','0'),(255846,41442,'_blocks_13_options_state','field_6239fcb7508c5'),(255847,41442,'blocks_13_options',''),(255848,41442,'_blocks_13_options','field_6177e2991ac44'),(255849,41442,'blocks_13_content_title',''),(255850,41442,'_blocks_13_content_title','field_64d237e8bb1e2'),(255851,41442,'blocks_13_content_heading','FAQ\'s'),(255852,41442,'_blocks_13_content_heading','field_64d237e8bb1e3'),(255853,41442,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(255854,41442,'_blocks_13_content_text','field_64d237e8bb1e4'),(255855,41442,'blocks_13_content_actions',''),(255856,41442,'_blocks_13_content_actions','field_64d237e8bb1e5'),(255857,41442,'blocks_13_content_align','left'),(255858,41442,'_blocks_13_content_align','field_64d2443e6b6aa'),(255859,41442,'blocks_13_content',''),(255860,41442,'_blocks_13_content','field_64d237e8bb1e1'),(255861,41442,'blocks_13_accordion_content','faqs'),(255862,41442,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(255863,41442,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(255864,41442,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(255865,41442,'blocks_13_actions',''),(255866,41442,'_blocks_13_actions','field_61a746a817f7a'),(255867,41444,'hide_hero','0'),(255868,41444,'_hide_hero','field_66a2380fcda39'),(255869,41444,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(255870,41444,'_hero_title','field_617571fe285e8'),(255871,41444,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(255872,41444,'_hero_text','field_6175723c285e9'),(255873,41444,'hero_actions','1'),(255874,41444,'_hero_actions','field_61757270285ea'),(255875,41444,'hero_style','default'),(255876,41444,'_hero_style','field_62051d9dc5324'),(255877,41444,'_thumbnail_id','41428'),(255878,41444,'__thumbnail_id','field_617570855ddaf'),(255879,41444,'hero_image_pos_x','right'),(255880,41444,'_hero_image_pos_x','field_62ec3d05390bb'),(255881,41444,'hero_image_pos_y','top'),(255882,41444,'_hero_image_pos_y','field_62ec3d05390bc'),(255883,41444,'hero_image_pos',''),(255884,41444,'_hero_image_pos','field_62ec3d05390ba'),(255885,41444,'fft_hide_from_listings','0'),(255886,41444,'_fft_hide_from_listings','field_61f1320446ab2'),(255887,41444,'fft_page_format','default'),(255888,41444,'_fft_page_format','field_61ae213f1f218'),(255889,41444,'fft_hide_nav','0'),(255890,41444,'_fft_hide_nav','field_635bd5e43527c'),(255891,41444,'fft_hide_header_call_to_action','0'),(255892,41444,'_fft_hide_header_call_to_action','field_635bd6723527d'),(255893,41444,'fft_page_sitemap','0'),(255894,41444,'_fft_page_sitemap','field_61af9b34e8181'),(255895,41444,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(255896,41444,'_blocks','field_6176696113096'),(255897,41444,'course_label_text',''),(255898,41444,'_course_label_text','field_61e17babf71fa'),(255899,41444,'course_label',''),(255900,41444,'_course_label','field_61e12f92749a7'),(255901,41444,'course_description',''),(255902,41444,'_course_description','field_617ac5788e5e1'),(255903,41444,'course_key_info',''),(255904,41444,'_course_key_info','field_617ac6ad8e5e2'),(255905,41444,'course_included',''),(255906,41444,'_course_included','field_617ac6f08e5e4'),(255907,41444,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(255908,41444,'_hero_actions_0_button','field_61757281285eb'),(255909,41444,'blocks_0_acfe_flexible_toggle',''),(255910,41444,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(255911,41444,'blocks_0_acfe_flexible_layout_title','Icons'),(255912,41444,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(255913,41444,'blocks_0_options_theme','#b61234'),(255914,41444,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(255915,41444,'blocks_0_options_format','row'),(255916,41444,'_blocks_0_options_format','field_64bfde9a90690'),(255917,41444,'blocks_0_options',''),(255918,41444,'_blocks_0_options','field_64bfdd9b90684'),(255919,41444,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(255920,41444,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(255921,41444,'blocks_0_icon_row_items_0_label','Accreditation'),(255922,41444,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(255923,41444,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(255924,41444,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(255925,41444,'blocks_0_icon_row_items_1_icon','finance.svg'),(255926,41444,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(255927,41444,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(255928,41444,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(255929,41444,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(255930,41444,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(255931,41444,'blocks_0_icon_row_items_2_icon','progression.svg'),(255932,41444,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(255933,41444,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(255934,41444,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(255935,41444,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(255936,41444,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(255937,41444,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(255938,41444,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(255939,41444,'blocks_0_icon_row_items_3_label','Qualification'),(255940,41444,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(255941,41444,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(255942,41444,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(255943,41444,'blocks_0_icon_row_items','4'),(255944,41444,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(255945,41444,'blocks_5_acfe_flexible_toggle','1'),(255946,41444,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(255947,41444,'blocks_5_acfe_flexible_layout_title','Tabs'),(255948,41444,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(255949,41444,'blocks_5_options_theme','#ffffff'),(255950,41444,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(255951,41444,'blocks_5_options',''),(255952,41444,'_blocks_5_options','field_6177cfcd8140f'),(255953,41444,'blocks_5_tabs_0_tab_label','Entry requirements'),(255954,41444,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(255955,41444,'blocks_5_tabs_0_tab_content_title',''),(255956,41444,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(255957,41444,'blocks_5_tabs_0_tab_content_heading',''),(255958,41444,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(255959,41444,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(255960,41444,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(255961,41444,'blocks_5_tabs_0_tab_content_actions',''),(255962,41444,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(255963,41444,'blocks_5_tabs_0_tab_content',''),(255964,41444,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(255965,41444,'blocks_5_tabs_0_tab_image',''),(255966,41444,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(255967,41444,'blocks_5_tabs_1_tab_label','Learning format'),(255968,41444,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(255969,41444,'blocks_5_tabs_1_tab_content_title',''),(255970,41444,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(255971,41444,'blocks_5_tabs_1_tab_content_heading',''),(255972,41444,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(255973,41444,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(255974,41444,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(255975,41444,'blocks_5_tabs_1_tab_content_actions',''),(255976,41444,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(255977,41444,'blocks_5_tabs_1_tab_content',''),(255978,41444,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(255979,41444,'blocks_5_tabs_1_tab_image',''),(255980,41444,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(255981,41444,'blocks_5_tabs_2_tab_label','Qualifications included'),(255982,41444,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(255983,41444,'blocks_5_tabs_2_tab_content_title',''),(255984,41444,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(255985,41444,'blocks_5_tabs_2_tab_content_heading',''),(255986,41444,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(255987,41444,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(255988,41444,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(255989,41444,'blocks_5_tabs_2_tab_content_actions',''),(255990,41444,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(255991,41444,'blocks_5_tabs_2_tab_content',''),(255992,41444,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(255993,41444,'blocks_5_tabs_2_tab_image',''),(255994,41444,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(255995,41444,'blocks_5_tabs','3'),(255996,41444,'_blocks_5_tabs','field_6177cff281419'),(255997,41444,'blocks_4_acfe_flexible_toggle',''),(255998,41444,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(255999,41444,'blocks_4_acfe_flexible_layout_title','Template'),(256000,41444,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(256001,41444,'blocks_4_template','39207'),(256002,41444,'_blocks_4_template','field_617bdd570fe01'),(256003,41444,'blocks_6_acfe_flexible_toggle',''),(256004,41444,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(256005,41444,'blocks_6_acfe_flexible_layout_title','Icons'),(256006,41444,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(256007,41444,'blocks_6_options_theme','#f5f5f5'),(256008,41444,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(256009,41444,'blocks_6_options_format','stacked'),(256010,41444,'_blocks_6_options_format','field_64bfde9a90690'),(256011,41444,'blocks_6_options',''),(256012,41444,'_blocks_6_options','field_64bfdd9b90684'),(256013,41444,'blocks_6_row_content_title','Options available to pay for your course'),(256014,41444,'_blocks_6_row_content_title','field_64bfdd9b90687'),(256015,41444,'blocks_6_row_content_heading','Fees & Funding Options '),(256016,41444,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(256017,41444,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(256018,41444,'_blocks_6_row_content_text','field_64bfdd9b90689'),(256019,41444,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(256020,41444,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(256021,41444,'blocks_6_row_content_actions','1'),(256022,41444,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(256023,41444,'blocks_6_row_content',''),(256024,41444,'_blocks_6_row_content','field_64bfdd9b90686'),(256025,41444,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(256026,41444,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(256027,41444,'blocks_6_icon_row_items_0_label','Pay in full'),(256028,41444,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(256029,41444,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(256030,41444,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(256031,41444,'blocks_6_icon_row_items_1_icon','finance.svg'),(256032,41444,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(256033,41444,'blocks_6_icon_row_items_1_label','0% finance'),(256034,41444,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(256035,41444,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(256036,41444,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(256037,41444,'blocks_6_icon_row_items','3'),(256038,41444,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(256039,41444,'blocks_7_acfe_flexible_toggle',''),(256040,41444,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(256041,41444,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(256042,41444,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(256043,41444,'blocks_7_options_theme','#ffffff'),(256044,41444,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(256045,41444,'blocks_7_options_reverse','0'),(256046,41444,'_blocks_7_options_reverse','field_61768049bb8ac'),(256047,41444,'blocks_7_options',''),(256048,41444,'_blocks_7_options','field_617682517c334'),(256049,41444,'blocks_7_split_5050_image','41333'),(256050,41444,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(256051,41444,'blocks_7_split_5050_video',''),(256052,41444,'_blocks_7_split_5050_video','field_6239f3160848a'),(256053,41444,'blocks_7_split_5050_content_title',''),(256054,41444,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(256055,41444,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(256056,41444,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(256057,41444,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(256058,41444,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(256059,41444,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(256060,41444,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(256061,41444,'blocks_7_split_5050_content_actions','1'),(256062,41444,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(256063,41444,'blocks_7_split_5050_content',''),(256064,41444,'_blocks_7_split_5050_content','field_61767afceb8ba'),(256065,41444,'blocks_8_acfe_flexible_toggle',''),(256066,41444,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(256067,41444,'blocks_8_acfe_flexible_layout_title','Icons'),(256068,41444,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(256069,41444,'blocks_8_options_theme','#f5f5f5'),(256070,41444,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(256071,41444,'blocks_8_options_format','row'),(256072,41444,'_blocks_8_options_format','field_64bfde9a90690'),(256073,41444,'blocks_8_options',''),(256074,41444,'_blocks_8_options','field_64bfdd9b90684'),(256075,41444,'blocks_8_icon_row_items_0_icon','qualification.svg'),(256076,41444,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(256077,41444,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(256078,41444,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(256079,41444,'blocks_8_icon_row_items_0_text',''),(256080,41444,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(256081,41444,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(256082,41444,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(256083,41444,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(256084,41444,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(256085,41444,'blocks_8_icon_row_items_1_text',''),(256086,41444,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(256087,41444,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(256088,41444,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(256089,41444,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(256090,41444,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(256091,41444,'blocks_8_icon_row_items_2_text',''),(256092,41444,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(256093,41444,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(256094,41444,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(256095,41444,'blocks_8_icon_row_items_3_label','Flexible funding options'),(256096,41444,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(256097,41444,'blocks_8_icon_row_items_3_text',''),(256098,41444,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(256099,41444,'blocks_8_icon_row_items','4'),(256100,41444,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(256101,41444,'blocks_9_acfe_flexible_toggle',''),(256102,41444,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(256103,41444,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(256104,41444,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(256105,41444,'blocks_9_options_theme','#ffffff'),(256106,41444,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(256107,41444,'blocks_9_options_reverse','1'),(256108,41444,'_blocks_9_options_reverse','field_61768049bb8ac'),(256109,41444,'blocks_9_options',''),(256110,41444,'_blocks_9_options','field_617682517c334'),(256111,41444,'blocks_9_split_5050_image','39224'),(256112,41444,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(256113,41444,'blocks_9_split_5050_video',''),(256114,41444,'_blocks_9_split_5050_video','field_6239f3160848a'),(256115,41444,'blocks_9_split_5050_content_title','Locations'),(256116,41444,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(256117,41444,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(256118,41444,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(256119,41444,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(256120,41444,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(256121,41444,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(256122,41444,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(256123,41444,'blocks_9_split_5050_content_actions','1'),(256124,41444,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(256125,41444,'blocks_9_split_5050_content',''),(256126,41444,'_blocks_9_split_5050_content','field_61767afceb8ba'),(256127,41444,'blocks_1_acfe_flexible_toggle',''),(256128,41444,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(256129,41444,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(256130,41444,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(256131,41444,'blocks_1_options_theme','#ffffff'),(256132,41444,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(256133,41444,'blocks_1_options_reverse','0'),(256134,41444,'_blocks_1_options_reverse','field_61768049bb8ac'),(256135,41444,'blocks_1_options',''),(256136,41444,'_blocks_1_options','field_617682517c334'),(256137,41444,'blocks_1_split_5050_image','41430'),(256138,41444,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(256139,41444,'blocks_1_split_5050_video',''),(256140,41444,'_blocks_1_split_5050_video','field_6239f3160848a'),(256141,41444,'blocks_1_split_5050_content_title',''),(256142,41444,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(256143,41444,'blocks_1_split_5050_content_heading','Course Overview'),(256144,41444,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(256145,41444,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(256146,41444,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(256147,41444,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(256148,41444,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(256149,41444,'blocks_1_split_5050_content_actions','1'),(256150,41444,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(256151,41444,'blocks_1_split_5050_content',''),(256152,41444,'_blocks_1_split_5050_content','field_61767afceb8ba'),(256153,41444,'blocks_2_acfe_flexible_toggle',''),(256154,41444,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(256155,41444,'blocks_2_acfe_flexible_layout_title','Form'),(256156,41444,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(256157,41444,'blocks_2_row_content_format','standard'),(256158,41444,'_blocks_2_row_content_format','field_6481ead962881'),(256159,41444,'blocks_2_row_content_title',''),(256160,41444,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(256161,41444,'blocks_2_row_content_heading','Enquire Today'),(256162,41444,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(256163,41444,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(256164,41444,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(256165,41444,'blocks_2_row_content_actions',''),(256166,41444,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(256167,41444,'blocks_2_row_content',''),(256168,41444,'_blocks_2_row_content','field_61a0f5f5b3db0'),(256169,41444,'blocks_2_row_form','40394'),(256170,41444,'_blocks_2_row_form','field_61a4ff2c0b08e'),(256171,41444,'blocks_2_row_form_button_label',''),(256172,41444,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(256173,41444,'blocks_3_acfe_flexible_toggle',''),(256174,41444,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(256175,41444,'blocks_3_acfe_flexible_layout_title','Video'),(256176,41444,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(256177,41444,'blocks_3_size','large'),(256178,41444,'_blocks_3_size','field_6487038f297c1'),(256179,41444,'blocks_3_row_content_title',''),(256180,41444,'_blocks_3_row_content_title','field_64870132a865d'),(256181,41444,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(256182,41444,'_blocks_3_row_content_heading','field_64870142a865e'),(256183,41444,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(256184,41444,'_blocks_3_row_content_text','field_64870148a865f'),(256185,41444,'blocks_3_row_content',''),(256186,41444,'_blocks_3_row_content','field_6487008ba865c'),(256187,41444,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(256188,41444,'_blocks_3_video_src','field_6193c4a98ec07'),(256189,41444,'blocks_3_video_thumbnail',''),(256190,41444,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(256191,41444,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(256192,41444,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(256193,41444,'blocks_6_icon_row_items_2_label','Deposit & balance'),(256194,41444,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(256195,41444,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(256196,41444,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(256197,41444,'blocks_10_acfe_flexible_toggle','1'),(256198,41444,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(256199,41444,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(256200,41444,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(256201,41444,'blocks_10_options_theme','#ffffff'),(256202,41444,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(256203,41444,'blocks_10_options',''),(256204,41444,'_blocks_10_options','field_617ac0b7f6c08'),(256205,41444,'blocks_10_show','selection'),(256206,41444,'_blocks_10_show','field_61a49cba9d946'),(256207,41444,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(256208,41444,'_blocks_10_courses','field_61b244781ee0a'),(256209,41444,'blocks_10_open_whats_included','1'),(256210,41444,'_blocks_10_open_whats_included','field_66ebfd679450c'),(256211,41444,'blocks_10_open_key_information','0'),(256212,41444,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(256213,41444,'blocks_10_open',''),(256214,41444,'_blocks_10_open','field_66ebfd009450b'),(256215,41444,'blocks_11_acfe_flexible_toggle',''),(256216,41444,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(256217,41444,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(256218,41444,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(256219,41444,'blocks_11_options_theme','#ffffff'),(256220,41444,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(256221,41444,'blocks_11_options_reverse','0'),(256222,41444,'_blocks_11_options_reverse','field_61768049bb8ac'),(256223,41444,'blocks_11_options',''),(256224,41444,'_blocks_11_options','field_617682517c334'),(256225,41444,'blocks_11_split_5050_image','41299'),(256226,41444,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(256227,41444,'blocks_11_split_5050_video',''),(256228,41444,'_blocks_11_split_5050_video','field_6239f3160848a'),(256229,41444,'blocks_11_split_5050_content_title','Optimise Performance '),(256230,41444,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(256231,41444,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(256232,41444,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(256233,41444,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(256234,41444,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(256235,41444,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(256236,41444,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(256237,41444,'blocks_11_split_5050_content_actions','1'),(256238,41444,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(256239,41444,'blocks_11_split_5050_content',''),(256240,41444,'_blocks_11_split_5050_content','field_61767afceb8ba'),(256241,41444,'blocks_12_acfe_flexible_toggle',''),(256242,41444,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(256243,41444,'blocks_12_acfe_flexible_layout_title','Template'),(256244,41444,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(256245,41444,'blocks_12_template','40987'),(256246,41444,'_blocks_12_template','field_617bdd570fe01'),(256247,41444,'blocks_13_acfe_flexible_toggle',''),(256248,41444,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(256249,41444,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(256250,41444,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(256251,41444,'blocks_13_options_theme','#f5f5f5'),(256252,41444,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(256253,41444,'blocks_13_options_state','0'),(256254,41444,'_blocks_13_options_state','field_6239fcb7508c5'),(256255,41444,'blocks_13_options',''),(256256,41444,'_blocks_13_options','field_6177e2991ac44'),(256257,41444,'blocks_13_content_title',''),(256258,41444,'_blocks_13_content_title','field_64d237e8bb1e2'),(256259,41444,'blocks_13_content_heading','FAQ\'s'),(256260,41444,'_blocks_13_content_heading','field_64d237e8bb1e3'),(256261,41444,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(256262,41444,'_blocks_13_content_text','field_64d237e8bb1e4'),(256263,41444,'blocks_13_content_actions',''),(256264,41444,'_blocks_13_content_actions','field_64d237e8bb1e5'),(256265,41444,'blocks_13_content_align','left'),(256266,41444,'_blocks_13_content_align','field_64d2443e6b6aa'),(256267,41444,'blocks_13_content',''),(256268,41444,'_blocks_13_content','field_64d237e8bb1e1'),(256269,41444,'blocks_13_accordion_content','faqs'),(256270,41444,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(256271,41444,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(256272,41444,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(256273,41444,'blocks_13_actions',''),(256274,41444,'_blocks_13_actions','field_61a746a817f7a'),(256275,41445,'hide_hero','0'),(256276,41445,'_hide_hero','field_66a2380fcda39'),(256277,41445,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(256278,41445,'_hero_title','field_617571fe285e8'),(256279,41445,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(256280,41445,'_hero_text','field_6175723c285e9'),(256281,41445,'hero_actions','1'),(256282,41445,'_hero_actions','field_61757270285ea'),(256283,41445,'hero_style','default'),(256284,41445,'_hero_style','field_62051d9dc5324'),(256285,41445,'_thumbnail_id','41428'),(256286,41445,'__thumbnail_id','field_617570855ddaf'),(256287,41445,'hero_image_pos_x','right'),(256288,41445,'_hero_image_pos_x','field_62ec3d05390bb'),(256289,41445,'hero_image_pos_y','top'),(256290,41445,'_hero_image_pos_y','field_62ec3d05390bc'),(256291,41445,'hero_image_pos',''),(256292,41445,'_hero_image_pos','field_62ec3d05390ba'),(256293,41445,'fft_hide_from_listings','0'),(256294,41445,'_fft_hide_from_listings','field_61f1320446ab2'),(256295,41445,'fft_page_format','default'),(256296,41445,'_fft_page_format','field_61ae213f1f218'),(256297,41445,'fft_hide_nav','0'),(256298,41445,'_fft_hide_nav','field_635bd5e43527c'),(256299,41445,'fft_hide_header_call_to_action','0'),(256300,41445,'_fft_hide_header_call_to_action','field_635bd6723527d'),(256301,41445,'fft_page_sitemap','0'),(256302,41445,'_fft_page_sitemap','field_61af9b34e8181'),(256303,41445,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(256304,41445,'_blocks','field_6176696113096'),(256305,41445,'course_label_text',''),(256306,41445,'_course_label_text','field_61e17babf71fa'),(256307,41445,'course_label',''),(256308,41445,'_course_label','field_61e12f92749a7'),(256309,41445,'course_description',''),(256310,41445,'_course_description','field_617ac5788e5e1'),(256311,41445,'course_key_info',''),(256312,41445,'_course_key_info','field_617ac6ad8e5e2'),(256313,41445,'course_included',''),(256314,41445,'_course_included','field_617ac6f08e5e4'),(256315,41445,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(256316,41445,'_hero_actions_0_button','field_61757281285eb'),(256317,41445,'blocks_0_acfe_flexible_toggle',''),(256318,41445,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(256319,41445,'blocks_0_acfe_flexible_layout_title','Icons'),(256320,41445,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(256321,41445,'blocks_0_options_theme','#b61234'),(256322,41445,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(256323,41445,'blocks_0_options_format','row'),(256324,41445,'_blocks_0_options_format','field_64bfde9a90690'),(256325,41445,'blocks_0_options',''),(256326,41445,'_blocks_0_options','field_64bfdd9b90684'),(256327,41445,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(256328,41445,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(256329,41445,'blocks_0_icon_row_items_0_label','Accreditation'),(256330,41445,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(256331,41445,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(256332,41445,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(256333,41445,'blocks_0_icon_row_items_1_icon','finance.svg'),(256334,41445,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(256335,41445,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(256336,41445,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(256337,41445,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(256338,41445,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(256339,41445,'blocks_0_icon_row_items_2_icon','progression.svg'),(256340,41445,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(256341,41445,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(256342,41445,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(256343,41445,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(256344,41445,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(256345,41445,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(256346,41445,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(256347,41445,'blocks_0_icon_row_items_3_label','Qualification'),(256348,41445,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(256349,41445,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(256350,41445,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(256351,41445,'blocks_0_icon_row_items','4'),(256352,41445,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(256353,41445,'blocks_5_acfe_flexible_toggle','1'),(256354,41445,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(256355,41445,'blocks_5_acfe_flexible_layout_title','Tabs'),(256356,41445,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(256357,41445,'blocks_5_options_theme','#ffffff'),(256358,41445,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(256359,41445,'blocks_5_options',''),(256360,41445,'_blocks_5_options','field_6177cfcd8140f'),(256361,41445,'blocks_5_tabs_0_tab_label','Entry requirements'),(256362,41445,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(256363,41445,'blocks_5_tabs_0_tab_content_title',''),(256364,41445,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(256365,41445,'blocks_5_tabs_0_tab_content_heading',''),(256366,41445,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(256367,41445,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(256368,41445,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(256369,41445,'blocks_5_tabs_0_tab_content_actions',''),(256370,41445,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(256371,41445,'blocks_5_tabs_0_tab_content',''),(256372,41445,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(256373,41445,'blocks_5_tabs_0_tab_image',''),(256374,41445,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(256375,41445,'blocks_5_tabs_1_tab_label','Learning format'),(256376,41445,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(256377,41445,'blocks_5_tabs_1_tab_content_title',''),(256378,41445,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(256379,41445,'blocks_5_tabs_1_tab_content_heading',''),(256380,41445,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(256381,41445,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(256382,41445,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(256383,41445,'blocks_5_tabs_1_tab_content_actions',''),(256384,41445,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(256385,41445,'blocks_5_tabs_1_tab_content',''),(256386,41445,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(256387,41445,'blocks_5_tabs_1_tab_image',''),(256388,41445,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(256389,41445,'blocks_5_tabs_2_tab_label','Qualifications included'),(256390,41445,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(256391,41445,'blocks_5_tabs_2_tab_content_title',''),(256392,41445,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(256393,41445,'blocks_5_tabs_2_tab_content_heading',''),(256394,41445,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(256395,41445,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(256396,41445,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(256397,41445,'blocks_5_tabs_2_tab_content_actions',''),(256398,41445,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(256399,41445,'blocks_5_tabs_2_tab_content',''),(256400,41445,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(256401,41445,'blocks_5_tabs_2_tab_image',''),(256402,41445,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(256403,41445,'blocks_5_tabs','3'),(256404,41445,'_blocks_5_tabs','field_6177cff281419'),(256405,41445,'blocks_4_acfe_flexible_toggle',''),(256406,41445,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(256407,41445,'blocks_4_acfe_flexible_layout_title','Template'),(256408,41445,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(256409,41445,'blocks_4_template','39207'),(256410,41445,'_blocks_4_template','field_617bdd570fe01'),(256411,41445,'blocks_6_acfe_flexible_toggle',''),(256412,41445,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(256413,41445,'blocks_6_acfe_flexible_layout_title','Icons'),(256414,41445,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(256415,41445,'blocks_6_options_theme','#f5f5f5'),(256416,41445,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(256417,41445,'blocks_6_options_format','stacked'),(256418,41445,'_blocks_6_options_format','field_64bfde9a90690'),(256419,41445,'blocks_6_options',''),(256420,41445,'_blocks_6_options','field_64bfdd9b90684'),(256421,41445,'blocks_6_row_content_title','Options available to pay for your course'),(256422,41445,'_blocks_6_row_content_title','field_64bfdd9b90687'),(256423,41445,'blocks_6_row_content_heading','Fees & Funding Options '),(256424,41445,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(256425,41445,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(256426,41445,'_blocks_6_row_content_text','field_64bfdd9b90689'),(256427,41445,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(256428,41445,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(256429,41445,'blocks_6_row_content_actions','1'),(256430,41445,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(256431,41445,'blocks_6_row_content',''),(256432,41445,'_blocks_6_row_content','field_64bfdd9b90686'),(256433,41445,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(256434,41445,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(256435,41445,'blocks_6_icon_row_items_0_label','Pay in full'),(256436,41445,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(256437,41445,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(256438,41445,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(256439,41445,'blocks_6_icon_row_items_1_icon','finance.svg'),(256440,41445,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(256441,41445,'blocks_6_icon_row_items_1_label','0% finance'),(256442,41445,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(256443,41445,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(256444,41445,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(256445,41445,'blocks_6_icon_row_items','3'),(256446,41445,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(256447,41445,'blocks_7_acfe_flexible_toggle',''),(256448,41445,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(256449,41445,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(256450,41445,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(256451,41445,'blocks_7_options_theme','#ffffff'),(256452,41445,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(256453,41445,'blocks_7_options_reverse','0'),(256454,41445,'_blocks_7_options_reverse','field_61768049bb8ac'),(256455,41445,'blocks_7_options',''),(256456,41445,'_blocks_7_options','field_617682517c334'),(256457,41445,'blocks_7_split_5050_image','41333'),(256458,41445,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(256459,41445,'blocks_7_split_5050_video',''),(256460,41445,'_blocks_7_split_5050_video','field_6239f3160848a'),(256461,41445,'blocks_7_split_5050_content_title',''),(256462,41445,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(256463,41445,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(256464,41445,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(256465,41445,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(256466,41445,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(256467,41445,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(256468,41445,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(256469,41445,'blocks_7_split_5050_content_actions','1'),(256470,41445,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(256471,41445,'blocks_7_split_5050_content',''),(256472,41445,'_blocks_7_split_5050_content','field_61767afceb8ba'),(256473,41445,'blocks_8_acfe_flexible_toggle',''),(256474,41445,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(256475,41445,'blocks_8_acfe_flexible_layout_title','Icons'),(256476,41445,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(256477,41445,'blocks_8_options_theme','#f5f5f5'),(256478,41445,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(256479,41445,'blocks_8_options_format','row'),(256480,41445,'_blocks_8_options_format','field_64bfde9a90690'),(256481,41445,'blocks_8_options',''),(256482,41445,'_blocks_8_options','field_64bfdd9b90684'),(256483,41445,'blocks_8_icon_row_items_0_icon','qualification.svg'),(256484,41445,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(256485,41445,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(256486,41445,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(256487,41445,'blocks_8_icon_row_items_0_text',''),(256488,41445,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(256489,41445,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(256490,41445,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(256491,41445,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(256492,41445,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(256493,41445,'blocks_8_icon_row_items_1_text',''),(256494,41445,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(256495,41445,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(256496,41445,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(256497,41445,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(256498,41445,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(256499,41445,'blocks_8_icon_row_items_2_text',''),(256500,41445,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(256501,41445,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(256502,41445,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(256503,41445,'blocks_8_icon_row_items_3_label','Flexible funding options'),(256504,41445,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(256505,41445,'blocks_8_icon_row_items_3_text',''),(256506,41445,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(256507,41445,'blocks_8_icon_row_items','4'),(256508,41445,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(256509,41445,'blocks_9_acfe_flexible_toggle',''),(256510,41445,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(256511,41445,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(256512,41445,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(256513,41445,'blocks_9_options_theme','#ffffff'),(256514,41445,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(256515,41445,'blocks_9_options_reverse','1'),(256516,41445,'_blocks_9_options_reverse','field_61768049bb8ac'),(256517,41445,'blocks_9_options',''),(256518,41445,'_blocks_9_options','field_617682517c334'),(256519,41445,'blocks_9_split_5050_image','39224'),(256520,41445,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(256521,41445,'blocks_9_split_5050_video',''),(256522,41445,'_blocks_9_split_5050_video','field_6239f3160848a'),(256523,41445,'blocks_9_split_5050_content_title','Locations'),(256524,41445,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(256525,41445,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(256526,41445,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(256527,41445,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(256528,41445,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(256529,41445,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(256530,41445,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(256531,41445,'blocks_9_split_5050_content_actions','1'),(256532,41445,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(256533,41445,'blocks_9_split_5050_content',''),(256534,41445,'_blocks_9_split_5050_content','field_61767afceb8ba'),(256535,41445,'blocks_1_acfe_flexible_toggle',''),(256536,41445,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(256537,41445,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(256538,41445,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(256539,41445,'blocks_1_options_theme','#ffffff'),(256540,41445,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(256541,41445,'blocks_1_options_reverse','0'),(256542,41445,'_blocks_1_options_reverse','field_61768049bb8ac'),(256543,41445,'blocks_1_options',''),(256544,41445,'_blocks_1_options','field_617682517c334'),(256545,41445,'blocks_1_split_5050_image','41430'),(256546,41445,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(256547,41445,'blocks_1_split_5050_video',''),(256548,41445,'_blocks_1_split_5050_video','field_6239f3160848a'),(256549,41445,'blocks_1_split_5050_content_title',''),(256550,41445,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(256551,41445,'blocks_1_split_5050_content_heading','Course Overview'),(256552,41445,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(256553,41445,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(256554,41445,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(256555,41445,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(256556,41445,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(256557,41445,'blocks_1_split_5050_content_actions','1'),(256558,41445,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(256559,41445,'blocks_1_split_5050_content',''),(256560,41445,'_blocks_1_split_5050_content','field_61767afceb8ba'),(256561,41445,'blocks_2_acfe_flexible_toggle',''),(256562,41445,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(256563,41445,'blocks_2_acfe_flexible_layout_title','Form'),(256564,41445,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(256565,41445,'blocks_2_row_content_format','standard'),(256566,41445,'_blocks_2_row_content_format','field_6481ead962881'),(256567,41445,'blocks_2_row_content_title',''),(256568,41445,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(256569,41445,'blocks_2_row_content_heading','Enquire Today'),(256570,41445,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(256571,41445,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(256572,41445,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(256573,41445,'blocks_2_row_content_actions',''),(256574,41445,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(256575,41445,'blocks_2_row_content',''),(256576,41445,'_blocks_2_row_content','field_61a0f5f5b3db0'),(256577,41445,'blocks_2_row_form','40394'),(256578,41445,'_blocks_2_row_form','field_61a4ff2c0b08e'),(256579,41445,'blocks_2_row_form_button_label',''),(256580,41445,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(256581,41445,'blocks_3_acfe_flexible_toggle',''),(256582,41445,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(256583,41445,'blocks_3_acfe_flexible_layout_title','Video'),(256584,41445,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(256585,41445,'blocks_3_size','large'),(256586,41445,'_blocks_3_size','field_6487038f297c1'),(256587,41445,'blocks_3_row_content_title',''),(256588,41445,'_blocks_3_row_content_title','field_64870132a865d'),(256589,41445,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(256590,41445,'_blocks_3_row_content_heading','field_64870142a865e'),(256591,41445,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(256592,41445,'_blocks_3_row_content_text','field_64870148a865f'),(256593,41445,'blocks_3_row_content',''),(256594,41445,'_blocks_3_row_content','field_6487008ba865c'),(256595,41445,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(256596,41445,'_blocks_3_video_src','field_6193c4a98ec07'),(256597,41445,'blocks_3_video_thumbnail',''),(256598,41445,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(256599,41445,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(256600,41445,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(256601,41445,'blocks_6_icon_row_items_2_label','Deposit & balance'),(256602,41445,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(256603,41445,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(256604,41445,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(256605,41445,'blocks_10_acfe_flexible_toggle','1'),(256606,41445,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(256607,41445,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(256608,41445,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(256609,41445,'blocks_10_options_theme','#ffffff'),(256610,41445,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(256611,41445,'blocks_10_options',''),(256612,41445,'_blocks_10_options','field_617ac0b7f6c08'),(256613,41445,'blocks_10_show','selection'),(256614,41445,'_blocks_10_show','field_61a49cba9d946'),(256615,41445,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(256616,41445,'_blocks_10_courses','field_61b244781ee0a'),(256617,41445,'blocks_10_open_whats_included','1'),(256618,41445,'_blocks_10_open_whats_included','field_66ebfd679450c'),(256619,41445,'blocks_10_open_key_information','0'),(256620,41445,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(256621,41445,'blocks_10_open',''),(256622,41445,'_blocks_10_open','field_66ebfd009450b'),(256623,41445,'blocks_11_acfe_flexible_toggle',''),(256624,41445,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(256625,41445,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(256626,41445,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(256627,41445,'blocks_11_options_theme','#ffffff'),(256628,41445,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(256629,41445,'blocks_11_options_reverse','0'),(256630,41445,'_blocks_11_options_reverse','field_61768049bb8ac'),(256631,41445,'blocks_11_options',''),(256632,41445,'_blocks_11_options','field_617682517c334'),(256633,41445,'blocks_11_split_5050_image','41299'),(256634,41445,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(256635,41445,'blocks_11_split_5050_video',''),(256636,41445,'_blocks_11_split_5050_video','field_6239f3160848a'),(256637,41445,'blocks_11_split_5050_content_title','Optimise Performance '),(256638,41445,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(256639,41445,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(256640,41445,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(256641,41445,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(256642,41445,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(256643,41445,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(256644,41445,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(256645,41445,'blocks_11_split_5050_content_actions','1'),(256646,41445,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(256647,41445,'blocks_11_split_5050_content',''),(256648,41445,'_blocks_11_split_5050_content','field_61767afceb8ba'),(256649,41445,'blocks_12_acfe_flexible_toggle',''),(256650,41445,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(256651,41445,'blocks_12_acfe_flexible_layout_title','Template'),(256652,41445,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(256653,41445,'blocks_12_template','40987'),(256654,41445,'_blocks_12_template','field_617bdd570fe01'),(256655,41445,'blocks_13_acfe_flexible_toggle',''),(256656,41445,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(256657,41445,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(256658,41445,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(256659,41445,'blocks_13_options_theme','#f5f5f5'),(256660,41445,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(256661,41445,'blocks_13_options_state','0'),(256662,41445,'_blocks_13_options_state','field_6239fcb7508c5'),(256663,41445,'blocks_13_options',''),(256664,41445,'_blocks_13_options','field_6177e2991ac44'),(256665,41445,'blocks_13_content_title',''),(256666,41445,'_blocks_13_content_title','field_64d237e8bb1e2'),(256667,41445,'blocks_13_content_heading','FAQ\'s'),(256668,41445,'_blocks_13_content_heading','field_64d237e8bb1e3'),(256669,41445,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(256670,41445,'_blocks_13_content_text','field_64d237e8bb1e4'),(256671,41445,'blocks_13_content_actions',''),(256672,41445,'_blocks_13_content_actions','field_64d237e8bb1e5'),(256673,41445,'blocks_13_content_align','left'),(256674,41445,'_blocks_13_content_align','field_64d2443e6b6aa'),(256675,41445,'blocks_13_content',''),(256676,41445,'_blocks_13_content','field_64d237e8bb1e1'),(256677,41445,'blocks_13_accordion_content','faqs'),(256678,41445,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(256679,41445,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(256680,41445,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(256681,41445,'blocks_13_actions',''),(256682,41445,'_blocks_13_actions','field_61a746a817f7a'),(256683,41446,'hide_hero','0'),(256684,41446,'_hide_hero','field_66a2380fcda39'),(256685,41446,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(256686,41446,'_hero_title','field_617571fe285e8'),(256687,41446,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(256688,41446,'_hero_text','field_6175723c285e9'),(256689,41446,'hero_actions','1'),(256690,41446,'_hero_actions','field_61757270285ea'),(256691,41446,'hero_style','default'),(256692,41446,'_hero_style','field_62051d9dc5324'),(256693,41446,'_thumbnail_id','41428'),(256694,41446,'__thumbnail_id','field_617570855ddaf'),(256695,41446,'hero_image_pos_x','right'),(256696,41446,'_hero_image_pos_x','field_62ec3d05390bb'),(256697,41446,'hero_image_pos_y','top'),(256698,41446,'_hero_image_pos_y','field_62ec3d05390bc'),(256699,41446,'hero_image_pos',''),(256700,41446,'_hero_image_pos','field_62ec3d05390ba'),(256701,41446,'fft_hide_from_listings','0'),(256702,41446,'_fft_hide_from_listings','field_61f1320446ab2'),(256703,41446,'fft_page_format','default'),(256704,41446,'_fft_page_format','field_61ae213f1f218'),(256705,41446,'fft_hide_nav','0'),(256706,41446,'_fft_hide_nav','field_635bd5e43527c'),(256707,41446,'fft_hide_header_call_to_action','0'),(256708,41446,'_fft_hide_header_call_to_action','field_635bd6723527d'),(256709,41446,'fft_page_sitemap','0'),(256710,41446,'_fft_page_sitemap','field_61af9b34e8181'),(256711,41446,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(256712,41446,'_blocks','field_6176696113096'),(256713,41446,'course_label_text',''),(256714,41446,'_course_label_text','field_61e17babf71fa'),(256715,41446,'course_label',''),(256716,41446,'_course_label','field_61e12f92749a7'),(256717,41446,'course_description',''),(256718,41446,'_course_description','field_617ac5788e5e1'),(256719,41446,'course_key_info',''),(256720,41446,'_course_key_info','field_617ac6ad8e5e2'),(256721,41446,'course_included',''),(256722,41446,'_course_included','field_617ac6f08e5e4'),(256723,41446,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:8:\"#40780-4\";s:6:\"target\";s:0:\"\";}'),(256724,41446,'_hero_actions_0_button','field_61757281285eb'),(256725,41446,'blocks_0_acfe_flexible_toggle',''),(256726,41446,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(256727,41446,'blocks_0_acfe_flexible_layout_title','Icons'),(256728,41446,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(256729,41446,'blocks_0_options_theme','#b61234'),(256730,41446,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(256731,41446,'blocks_0_options_format','row'),(256732,41446,'_blocks_0_options_format','field_64bfde9a90690'),(256733,41446,'blocks_0_options',''),(256734,41446,'_blocks_0_options','field_64bfdd9b90684'),(256735,41446,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(256736,41446,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(256737,41446,'blocks_0_icon_row_items_0_label','Accreditation'),(256738,41446,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(256739,41446,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(256740,41446,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(256741,41446,'blocks_0_icon_row_items_1_icon','finance.svg'),(256742,41446,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(256743,41446,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(256744,41446,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(256745,41446,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(256746,41446,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(256747,41446,'blocks_0_icon_row_items_2_icon','progression.svg'),(256748,41446,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(256749,41446,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(256750,41446,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(256751,41446,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(256752,41446,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(256753,41446,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(256754,41446,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(256755,41446,'blocks_0_icon_row_items_3_label','Qualification'),(256756,41446,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(256757,41446,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(256758,41446,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(256759,41446,'blocks_0_icon_row_items','4'),(256760,41446,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(256761,41446,'blocks_5_acfe_flexible_toggle','1'),(256762,41446,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(256763,41446,'blocks_5_acfe_flexible_layout_title','Tabs'),(256764,41446,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(256765,41446,'blocks_5_options_theme','#ffffff'),(256766,41446,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(256767,41446,'blocks_5_options',''),(256768,41446,'_blocks_5_options','field_6177cfcd8140f'),(256769,41446,'blocks_5_tabs_0_tab_label','Entry requirements'),(256770,41446,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(256771,41446,'blocks_5_tabs_0_tab_content_title',''),(256772,41446,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(256773,41446,'blocks_5_tabs_0_tab_content_heading',''),(256774,41446,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(256775,41446,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(256776,41446,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(256777,41446,'blocks_5_tabs_0_tab_content_actions',''),(256778,41446,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(256779,41446,'blocks_5_tabs_0_tab_content',''),(256780,41446,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(256781,41446,'blocks_5_tabs_0_tab_image',''),(256782,41446,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(256783,41446,'blocks_5_tabs_1_tab_label','Learning format'),(256784,41446,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(256785,41446,'blocks_5_tabs_1_tab_content_title',''),(256786,41446,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(256787,41446,'blocks_5_tabs_1_tab_content_heading',''),(256788,41446,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(256789,41446,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(256790,41446,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(256791,41446,'blocks_5_tabs_1_tab_content_actions',''),(256792,41446,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(256793,41446,'blocks_5_tabs_1_tab_content',''),(256794,41446,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(256795,41446,'blocks_5_tabs_1_tab_image',''),(256796,41446,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(256797,41446,'blocks_5_tabs_2_tab_label','Qualifications included'),(256798,41446,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(256799,41446,'blocks_5_tabs_2_tab_content_title',''),(256800,41446,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(256801,41446,'blocks_5_tabs_2_tab_content_heading',''),(256802,41446,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(256803,41446,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(256804,41446,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(256805,41446,'blocks_5_tabs_2_tab_content_actions',''),(256806,41446,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(256807,41446,'blocks_5_tabs_2_tab_content',''),(256808,41446,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(256809,41446,'blocks_5_tabs_2_tab_image',''),(256810,41446,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(256811,41446,'blocks_5_tabs','3'),(256812,41446,'_blocks_5_tabs','field_6177cff281419'),(256813,41446,'blocks_4_acfe_flexible_toggle',''),(256814,41446,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(256815,41446,'blocks_4_acfe_flexible_layout_title','Template'),(256816,41446,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(256817,41446,'blocks_4_template','39207'),(256818,41446,'_blocks_4_template','field_617bdd570fe01'),(256819,41446,'blocks_6_acfe_flexible_toggle',''),(256820,41446,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(256821,41446,'blocks_6_acfe_flexible_layout_title','Icons'),(256822,41446,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(256823,41446,'blocks_6_options_theme','#f5f5f5'),(256824,41446,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(256825,41446,'blocks_6_options_format','stacked'),(256826,41446,'_blocks_6_options_format','field_64bfde9a90690'),(256827,41446,'blocks_6_options',''),(256828,41446,'_blocks_6_options','field_64bfdd9b90684'),(256829,41446,'blocks_6_row_content_title','Options available to pay for your course'),(256830,41446,'_blocks_6_row_content_title','field_64bfdd9b90687'),(256831,41446,'blocks_6_row_content_heading','Fees & Funding Options '),(256832,41446,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(256833,41446,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(256834,41446,'_blocks_6_row_content_text','field_64bfdd9b90689'),(256835,41446,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(256836,41446,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(256837,41446,'blocks_6_row_content_actions','1'),(256838,41446,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(256839,41446,'blocks_6_row_content',''),(256840,41446,'_blocks_6_row_content','field_64bfdd9b90686'),(256841,41446,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(256842,41446,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(256843,41446,'blocks_6_icon_row_items_0_label','Pay in full'),(256844,41446,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(256845,41446,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(256846,41446,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(256847,41446,'blocks_6_icon_row_items_1_icon','finance.svg'),(256848,41446,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(256849,41446,'blocks_6_icon_row_items_1_label','0% finance'),(256850,41446,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(256851,41446,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(256852,41446,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(256853,41446,'blocks_6_icon_row_items','3'),(256854,41446,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(256855,41446,'blocks_7_acfe_flexible_toggle',''),(256856,41446,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(256857,41446,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(256858,41446,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(256859,41446,'blocks_7_options_theme','#ffffff'),(256860,41446,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(256861,41446,'blocks_7_options_reverse','0'),(256862,41446,'_blocks_7_options_reverse','field_61768049bb8ac'),(256863,41446,'blocks_7_options',''),(256864,41446,'_blocks_7_options','field_617682517c334'),(256865,41446,'blocks_7_split_5050_image','41333'),(256866,41446,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(256867,41446,'blocks_7_split_5050_video',''),(256868,41446,'_blocks_7_split_5050_video','field_6239f3160848a'),(256869,41446,'blocks_7_split_5050_content_title',''),(256870,41446,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(256871,41446,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(256872,41446,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(256873,41446,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(256874,41446,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(256875,41446,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(256876,41446,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(256877,41446,'blocks_7_split_5050_content_actions','1'),(256878,41446,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(256879,41446,'blocks_7_split_5050_content',''),(256880,41446,'_blocks_7_split_5050_content','field_61767afceb8ba'),(256881,41446,'blocks_8_acfe_flexible_toggle',''),(256882,41446,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(256883,41446,'blocks_8_acfe_flexible_layout_title','Icons'),(256884,41446,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(256885,41446,'blocks_8_options_theme','#f5f5f5'),(256886,41446,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(256887,41446,'blocks_8_options_format','row'),(256888,41446,'_blocks_8_options_format','field_64bfde9a90690'),(256889,41446,'blocks_8_options',''),(256890,41446,'_blocks_8_options','field_64bfdd9b90684'),(256891,41446,'blocks_8_icon_row_items_0_icon','qualification.svg'),(256892,41446,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(256893,41446,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(256894,41446,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(256895,41446,'blocks_8_icon_row_items_0_text',''),(256896,41446,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(256897,41446,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(256898,41446,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(256899,41446,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(256900,41446,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(256901,41446,'blocks_8_icon_row_items_1_text',''),(256902,41446,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(256903,41446,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(256904,41446,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(256905,41446,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(256906,41446,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(256907,41446,'blocks_8_icon_row_items_2_text',''),(256908,41446,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(256909,41446,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(256910,41446,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(256911,41446,'blocks_8_icon_row_items_3_label','Flexible funding options'),(256912,41446,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(256913,41446,'blocks_8_icon_row_items_3_text',''),(256914,41446,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(256915,41446,'blocks_8_icon_row_items','4'),(256916,41446,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(256917,41446,'blocks_9_acfe_flexible_toggle',''),(256918,41446,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(256919,41446,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(256920,41446,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(256921,41446,'blocks_9_options_theme','#ffffff'),(256922,41446,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(256923,41446,'blocks_9_options_reverse','1'),(256924,41446,'_blocks_9_options_reverse','field_61768049bb8ac'),(256925,41446,'blocks_9_options',''),(256926,41446,'_blocks_9_options','field_617682517c334'),(256927,41446,'blocks_9_split_5050_image','39224'),(256928,41446,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(256929,41446,'blocks_9_split_5050_video',''),(256930,41446,'_blocks_9_split_5050_video','field_6239f3160848a'),(256931,41446,'blocks_9_split_5050_content_title','Locations'),(256932,41446,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(256933,41446,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(256934,41446,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(256935,41446,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(256936,41446,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(256937,41446,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(256938,41446,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(256939,41446,'blocks_9_split_5050_content_actions','1'),(256940,41446,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(256941,41446,'blocks_9_split_5050_content',''),(256942,41446,'_blocks_9_split_5050_content','field_61767afceb8ba'),(256943,41446,'blocks_1_acfe_flexible_toggle',''),(256944,41446,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(256945,41446,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(256946,41446,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(256947,41446,'blocks_1_options_theme','#ffffff'),(256948,41446,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(256949,41446,'blocks_1_options_reverse','0'),(256950,41446,'_blocks_1_options_reverse','field_61768049bb8ac'),(256951,41446,'blocks_1_options',''),(256952,41446,'_blocks_1_options','field_617682517c334'),(256953,41446,'blocks_1_split_5050_image','41430'),(256954,41446,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(256955,41446,'blocks_1_split_5050_video',''),(256956,41446,'_blocks_1_split_5050_video','field_6239f3160848a'),(256957,41446,'blocks_1_split_5050_content_title',''),(256958,41446,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(256959,41446,'blocks_1_split_5050_content_heading','Course Overview'),(256960,41446,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(256961,41446,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(256962,41446,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(256963,41446,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(256964,41446,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(256965,41446,'blocks_1_split_5050_content_actions','1'),(256966,41446,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(256967,41446,'blocks_1_split_5050_content',''),(256968,41446,'_blocks_1_split_5050_content','field_61767afceb8ba'),(256969,41446,'blocks_2_acfe_flexible_toggle',''),(256970,41446,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(256971,41446,'blocks_2_acfe_flexible_layout_title','Form'),(256972,41446,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(256973,41446,'blocks_2_row_content_format','standard'),(256974,41446,'_blocks_2_row_content_format','field_6481ead962881'),(256975,41446,'blocks_2_row_content_title',''),(256976,41446,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(256977,41446,'blocks_2_row_content_heading','Enquire Today'),(256978,41446,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(256979,41446,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(256980,41446,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(256981,41446,'blocks_2_row_content_actions',''),(256982,41446,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(256983,41446,'blocks_2_row_content',''),(256984,41446,'_blocks_2_row_content','field_61a0f5f5b3db0'),(256985,41446,'blocks_2_row_form','40394'),(256986,41446,'_blocks_2_row_form','field_61a4ff2c0b08e'),(256987,41446,'blocks_2_row_form_button_label',''),(256988,41446,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(256989,41446,'blocks_3_acfe_flexible_toggle',''),(256990,41446,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(256991,41446,'blocks_3_acfe_flexible_layout_title','Video'),(256992,41446,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(256993,41446,'blocks_3_size','large'),(256994,41446,'_blocks_3_size','field_6487038f297c1'),(256995,41446,'blocks_3_row_content_title',''),(256996,41446,'_blocks_3_row_content_title','field_64870132a865d'),(256997,41446,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(256998,41446,'_blocks_3_row_content_heading','field_64870142a865e'),(256999,41446,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(257000,41446,'_blocks_3_row_content_text','field_64870148a865f'),(257001,41446,'blocks_3_row_content',''),(257002,41446,'_blocks_3_row_content','field_6487008ba865c'),(257003,41446,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(257004,41446,'_blocks_3_video_src','field_6193c4a98ec07'),(257005,41446,'blocks_3_video_thumbnail',''),(257006,41446,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(257007,41446,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(257008,41446,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(257009,41446,'blocks_6_icon_row_items_2_label','Deposit & balance'),(257010,41446,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(257011,41446,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(257012,41446,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(257013,41446,'blocks_10_acfe_flexible_toggle','1'),(257014,41446,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(257015,41446,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(257016,41446,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(257017,41446,'blocks_10_options_theme','#ffffff'),(257018,41446,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(257019,41446,'blocks_10_options',''),(257020,41446,'_blocks_10_options','field_617ac0b7f6c08'),(257021,41446,'blocks_10_show','selection'),(257022,41446,'_blocks_10_show','field_61a49cba9d946'),(257023,41446,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(257024,41446,'_blocks_10_courses','field_61b244781ee0a'),(257025,41446,'blocks_10_open_whats_included','1'),(257026,41446,'_blocks_10_open_whats_included','field_66ebfd679450c'),(257027,41446,'blocks_10_open_key_information','0'),(257028,41446,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(257029,41446,'blocks_10_open',''),(257030,41446,'_blocks_10_open','field_66ebfd009450b'),(257031,41446,'blocks_11_acfe_flexible_toggle',''),(257032,41446,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(257033,41446,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(257034,41446,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(257035,41446,'blocks_11_options_theme','#ffffff'),(257036,41446,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(257037,41446,'blocks_11_options_reverse','0'),(257038,41446,'_blocks_11_options_reverse','field_61768049bb8ac'),(257039,41446,'blocks_11_options',''),(257040,41446,'_blocks_11_options','field_617682517c334'),(257041,41446,'blocks_11_split_5050_image','41299'),(257042,41446,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(257043,41446,'blocks_11_split_5050_video',''),(257044,41446,'_blocks_11_split_5050_video','field_6239f3160848a'),(257045,41446,'blocks_11_split_5050_content_title','Optimise Performance '),(257046,41446,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(257047,41446,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(257048,41446,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(257049,41446,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(257050,41446,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(257051,41446,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(257052,41446,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(257053,41446,'blocks_11_split_5050_content_actions','1'),(257054,41446,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(257055,41446,'blocks_11_split_5050_content',''),(257056,41446,'_blocks_11_split_5050_content','field_61767afceb8ba'),(257057,41446,'blocks_12_acfe_flexible_toggle',''),(257058,41446,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(257059,41446,'blocks_12_acfe_flexible_layout_title','Template'),(257060,41446,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(257061,41446,'blocks_12_template','40987'),(257062,41446,'_blocks_12_template','field_617bdd570fe01'),(257063,41446,'blocks_13_acfe_flexible_toggle',''),(257064,41446,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(257065,41446,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(257066,41446,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(257067,41446,'blocks_13_options_theme','#f5f5f5'),(257068,41446,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(257069,41446,'blocks_13_options_state','0'),(257070,41446,'_blocks_13_options_state','field_6239fcb7508c5'),(257071,41446,'blocks_13_options',''),(257072,41446,'_blocks_13_options','field_6177e2991ac44'),(257073,41446,'blocks_13_content_title',''),(257074,41446,'_blocks_13_content_title','field_64d237e8bb1e2'),(257075,41446,'blocks_13_content_heading','FAQ\'s'),(257076,41446,'_blocks_13_content_heading','field_64d237e8bb1e3'),(257077,41446,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(257078,41446,'_blocks_13_content_text','field_64d237e8bb1e4'),(257079,41446,'blocks_13_content_actions',''),(257080,41446,'_blocks_13_content_actions','field_64d237e8bb1e5'),(257081,41446,'blocks_13_content_align','left'),(257082,41446,'_blocks_13_content_align','field_64d2443e6b6aa'),(257083,41446,'blocks_13_content',''),(257084,41446,'_blocks_13_content','field_64d237e8bb1e1'),(257085,41446,'blocks_13_accordion_content','faqs'),(257086,41446,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(257087,41446,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(257088,41446,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(257089,41446,'blocks_13_actions',''),(257090,41446,'_blocks_13_actions','field_61a746a817f7a'),(257091,41447,'hide_hero','0'),(257092,41447,'_hide_hero','field_66a2380fcda39'),(257093,41447,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(257094,41447,'_hero_title','field_617571fe285e8'),(257095,41447,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(257096,41447,'_hero_text','field_6175723c285e9'),(257097,41447,'hero_actions','1'),(257098,41447,'_hero_actions','field_61757270285ea'),(257099,41447,'hero_style','default'),(257100,41447,'_hero_style','field_62051d9dc5324'),(257101,41447,'_thumbnail_id','41428'),(257102,41447,'__thumbnail_id','field_617570855ddaf'),(257103,41447,'hero_image_pos_x','right'),(257104,41447,'_hero_image_pos_x','field_62ec3d05390bb'),(257105,41447,'hero_image_pos_y','top'),(257106,41447,'_hero_image_pos_y','field_62ec3d05390bc'),(257107,41447,'hero_image_pos',''),(257108,41447,'_hero_image_pos','field_62ec3d05390ba'),(257109,41447,'fft_hide_from_listings','0'),(257110,41447,'_fft_hide_from_listings','field_61f1320446ab2'),(257111,41447,'fft_page_format','default'),(257112,41447,'_fft_page_format','field_61ae213f1f218'),(257113,41447,'fft_hide_nav','0'),(257114,41447,'_fft_hide_nav','field_635bd5e43527c'),(257115,41447,'fft_hide_header_call_to_action','0'),(257116,41447,'_fft_hide_header_call_to_action','field_635bd6723527d'),(257117,41447,'fft_page_sitemap','0'),(257118,41447,'_fft_page_sitemap','field_61af9b34e8181'),(257119,41447,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(257120,41447,'_blocks','field_6176696113096'),(257121,41447,'course_label_text',''),(257122,41447,'_course_label_text','field_61e17babf71fa'),(257123,41447,'course_label',''),(257124,41447,'_course_label','field_61e12f92749a7'),(257125,41447,'course_description',''),(257126,41447,'_course_description','field_617ac5788e5e1'),(257127,41447,'course_key_info',''),(257128,41447,'_course_key_info','field_617ac6ad8e5e2'),(257129,41447,'course_included',''),(257130,41447,'_course_included','field_617ac6f08e5e4'),(257131,41447,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(257132,41447,'_hero_actions_0_button','field_61757281285eb'),(257133,41447,'blocks_0_acfe_flexible_toggle',''),(257134,41447,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(257135,41447,'blocks_0_acfe_flexible_layout_title','Icons'),(257136,41447,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(257137,41447,'blocks_0_options_theme','#b61234'),(257138,41447,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(257139,41447,'blocks_0_options_format','row'),(257140,41447,'_blocks_0_options_format','field_64bfde9a90690'),(257141,41447,'blocks_0_options',''),(257142,41447,'_blocks_0_options','field_64bfdd9b90684'),(257143,41447,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(257144,41447,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(257145,41447,'blocks_0_icon_row_items_0_label','Accreditation'),(257146,41447,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(257147,41447,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(257148,41447,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(257149,41447,'blocks_0_icon_row_items_1_icon','finance.svg'),(257150,41447,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(257151,41447,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(257152,41447,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(257153,41447,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(257154,41447,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(257155,41447,'blocks_0_icon_row_items_2_icon','progression.svg'),(257156,41447,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(257157,41447,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(257158,41447,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(257159,41447,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(257160,41447,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(257161,41447,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(257162,41447,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(257163,41447,'blocks_0_icon_row_items_3_label','Qualification'),(257164,41447,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(257165,41447,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(257166,41447,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(257167,41447,'blocks_0_icon_row_items','4'),(257168,41447,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(257169,41447,'blocks_5_acfe_flexible_toggle','1'),(257170,41447,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(257171,41447,'blocks_5_acfe_flexible_layout_title','Tabs'),(257172,41447,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(257173,41447,'blocks_5_options_theme','#ffffff'),(257174,41447,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(257175,41447,'blocks_5_options',''),(257176,41447,'_blocks_5_options','field_6177cfcd8140f'),(257177,41447,'blocks_5_tabs_0_tab_label','Entry requirements'),(257178,41447,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(257179,41447,'blocks_5_tabs_0_tab_content_title',''),(257180,41447,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(257181,41447,'blocks_5_tabs_0_tab_content_heading',''),(257182,41447,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(257183,41447,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(257184,41447,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(257185,41447,'blocks_5_tabs_0_tab_content_actions',''),(257186,41447,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(257187,41447,'blocks_5_tabs_0_tab_content',''),(257188,41447,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(257189,41447,'blocks_5_tabs_0_tab_image',''),(257190,41447,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(257191,41447,'blocks_5_tabs_1_tab_label','Learning format'),(257192,41447,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(257193,41447,'blocks_5_tabs_1_tab_content_title',''),(257194,41447,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(257195,41447,'blocks_5_tabs_1_tab_content_heading',''),(257196,41447,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(257197,41447,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(257198,41447,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(257199,41447,'blocks_5_tabs_1_tab_content_actions',''),(257200,41447,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(257201,41447,'blocks_5_tabs_1_tab_content',''),(257202,41447,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(257203,41447,'blocks_5_tabs_1_tab_image',''),(257204,41447,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(257205,41447,'blocks_5_tabs_2_tab_label','Qualifications included'),(257206,41447,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(257207,41447,'blocks_5_tabs_2_tab_content_title',''),(257208,41447,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(257209,41447,'blocks_5_tabs_2_tab_content_heading',''),(257210,41447,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(257211,41447,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(257212,41447,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(257213,41447,'blocks_5_tabs_2_tab_content_actions',''),(257214,41447,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(257215,41447,'blocks_5_tabs_2_tab_content',''),(257216,41447,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(257217,41447,'blocks_5_tabs_2_tab_image',''),(257218,41447,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(257219,41447,'blocks_5_tabs','3'),(257220,41447,'_blocks_5_tabs','field_6177cff281419'),(257221,41447,'blocks_4_acfe_flexible_toggle',''),(257222,41447,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(257223,41447,'blocks_4_acfe_flexible_layout_title','Template'),(257224,41447,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(257225,41447,'blocks_4_template','39207'),(257226,41447,'_blocks_4_template','field_617bdd570fe01'),(257227,41447,'blocks_6_acfe_flexible_toggle',''),(257228,41447,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(257229,41447,'blocks_6_acfe_flexible_layout_title','Icons'),(257230,41447,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(257231,41447,'blocks_6_options_theme','#f5f5f5'),(257232,41447,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(257233,41447,'blocks_6_options_format','stacked'),(257234,41447,'_blocks_6_options_format','field_64bfde9a90690'),(257235,41447,'blocks_6_options',''),(257236,41447,'_blocks_6_options','field_64bfdd9b90684'),(257237,41447,'blocks_6_row_content_title','Options available to pay for your course'),(257238,41447,'_blocks_6_row_content_title','field_64bfdd9b90687'),(257239,41447,'blocks_6_row_content_heading','Fees & Funding Options '),(257240,41447,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(257241,41447,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(257242,41447,'_blocks_6_row_content_text','field_64bfdd9b90689'),(257243,41447,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(257244,41447,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(257245,41447,'blocks_6_row_content_actions','1'),(257246,41447,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(257247,41447,'blocks_6_row_content',''),(257248,41447,'_blocks_6_row_content','field_64bfdd9b90686'),(257249,41447,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(257250,41447,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(257251,41447,'blocks_6_icon_row_items_0_label','Pay in full'),(257252,41447,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(257253,41447,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(257254,41447,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(257255,41447,'blocks_6_icon_row_items_1_icon','finance.svg'),(257256,41447,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(257257,41447,'blocks_6_icon_row_items_1_label','0% finance'),(257258,41447,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(257259,41447,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(257260,41447,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(257261,41447,'blocks_6_icon_row_items','3'),(257262,41447,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(257263,41447,'blocks_7_acfe_flexible_toggle',''),(257264,41447,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(257265,41447,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(257266,41447,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(257267,41447,'blocks_7_options_theme','#ffffff'),(257268,41447,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(257269,41447,'blocks_7_options_reverse','0'),(257270,41447,'_blocks_7_options_reverse','field_61768049bb8ac'),(257271,41447,'blocks_7_options',''),(257272,41447,'_blocks_7_options','field_617682517c334'),(257273,41447,'blocks_7_split_5050_image','41333'),(257274,41447,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(257275,41447,'blocks_7_split_5050_video',''),(257276,41447,'_blocks_7_split_5050_video','field_6239f3160848a'),(257277,41447,'blocks_7_split_5050_content_title',''),(257278,41447,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(257279,41447,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(257280,41447,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(257281,41447,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(257282,41447,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(257283,41447,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(257284,41447,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(257285,41447,'blocks_7_split_5050_content_actions','1'),(257286,41447,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(257287,41447,'blocks_7_split_5050_content',''),(257288,41447,'_blocks_7_split_5050_content','field_61767afceb8ba'),(257289,41447,'blocks_8_acfe_flexible_toggle',''),(257290,41447,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(257291,41447,'blocks_8_acfe_flexible_layout_title','Icons'),(257292,41447,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(257293,41447,'blocks_8_options_theme','#f5f5f5'),(257294,41447,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(257295,41447,'blocks_8_options_format','row'),(257296,41447,'_blocks_8_options_format','field_64bfde9a90690'),(257297,41447,'blocks_8_options',''),(257298,41447,'_blocks_8_options','field_64bfdd9b90684'),(257299,41447,'blocks_8_icon_row_items_0_icon','qualification.svg'),(257300,41447,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(257301,41447,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(257302,41447,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(257303,41447,'blocks_8_icon_row_items_0_text',''),(257304,41447,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(257305,41447,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(257306,41447,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(257307,41447,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(257308,41447,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(257309,41447,'blocks_8_icon_row_items_1_text',''),(257310,41447,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(257311,41447,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(257312,41447,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(257313,41447,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(257314,41447,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(257315,41447,'blocks_8_icon_row_items_2_text',''),(257316,41447,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(257317,41447,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(257318,41447,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(257319,41447,'blocks_8_icon_row_items_3_label','Flexible funding options'),(257320,41447,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(257321,41447,'blocks_8_icon_row_items_3_text',''),(257322,41447,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(257323,41447,'blocks_8_icon_row_items','4'),(257324,41447,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(257325,41447,'blocks_9_acfe_flexible_toggle',''),(257326,41447,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(257327,41447,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(257328,41447,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(257329,41447,'blocks_9_options_theme','#ffffff'),(257330,41447,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(257331,41447,'blocks_9_options_reverse','1'),(257332,41447,'_blocks_9_options_reverse','field_61768049bb8ac'),(257333,41447,'blocks_9_options',''),(257334,41447,'_blocks_9_options','field_617682517c334'),(257335,41447,'blocks_9_split_5050_image','39224'),(257336,41447,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(257337,41447,'blocks_9_split_5050_video',''),(257338,41447,'_blocks_9_split_5050_video','field_6239f3160848a'),(257339,41447,'blocks_9_split_5050_content_title','Locations'),(257340,41447,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(257341,41447,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(257342,41447,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(257343,41447,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(257344,41447,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(257345,41447,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(257346,41447,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(257347,41447,'blocks_9_split_5050_content_actions','1'),(257348,41447,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(257349,41447,'blocks_9_split_5050_content',''),(257350,41447,'_blocks_9_split_5050_content','field_61767afceb8ba'),(257351,41447,'blocks_1_acfe_flexible_toggle',''),(257352,41447,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(257353,41447,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(257354,41447,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(257355,41447,'blocks_1_options_theme','#ffffff'),(257356,41447,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(257357,41447,'blocks_1_options_reverse','0'),(257358,41447,'_blocks_1_options_reverse','field_61768049bb8ac'),(257359,41447,'blocks_1_options',''),(257360,41447,'_blocks_1_options','field_617682517c334'),(257361,41447,'blocks_1_split_5050_image','41430'),(257362,41447,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(257363,41447,'blocks_1_split_5050_video',''),(257364,41447,'_blocks_1_split_5050_video','field_6239f3160848a'),(257365,41447,'blocks_1_split_5050_content_title',''),(257366,41447,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(257367,41447,'blocks_1_split_5050_content_heading','Course Overview'),(257368,41447,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(257369,41447,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(257370,41447,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(257371,41447,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(257372,41447,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(257373,41447,'blocks_1_split_5050_content_actions','1'),(257374,41447,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(257375,41447,'blocks_1_split_5050_content',''),(257376,41447,'_blocks_1_split_5050_content','field_61767afceb8ba'),(257377,41447,'blocks_2_acfe_flexible_toggle',''),(257378,41447,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(257379,41447,'blocks_2_acfe_flexible_layout_title','Form'),(257380,41447,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(257381,41447,'blocks_2_row_content_format','standard'),(257382,41447,'_blocks_2_row_content_format','field_6481ead962881'),(257383,41447,'blocks_2_row_content_title',''),(257384,41447,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(257385,41447,'blocks_2_row_content_heading','Enquire Today'),(257386,41447,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(257387,41447,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(257388,41447,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(257389,41447,'blocks_2_row_content_actions',''),(257390,41447,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(257391,41447,'blocks_2_row_content',''),(257392,41447,'_blocks_2_row_content','field_61a0f5f5b3db0'),(257393,41447,'blocks_2_row_form','40394'),(257394,41447,'_blocks_2_row_form','field_61a4ff2c0b08e'),(257395,41447,'blocks_2_row_form_button_label',''),(257396,41447,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(257397,41447,'blocks_3_acfe_flexible_toggle',''),(257398,41447,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(257399,41447,'blocks_3_acfe_flexible_layout_title','Video'),(257400,41447,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(257401,41447,'blocks_3_size','large'),(257402,41447,'_blocks_3_size','field_6487038f297c1'),(257403,41447,'blocks_3_row_content_title',''),(257404,41447,'_blocks_3_row_content_title','field_64870132a865d'),(257405,41447,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(257406,41447,'_blocks_3_row_content_heading','field_64870142a865e'),(257407,41447,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(257408,41447,'_blocks_3_row_content_text','field_64870148a865f'),(257409,41447,'blocks_3_row_content',''),(257410,41447,'_blocks_3_row_content','field_6487008ba865c'),(257411,41447,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(257412,41447,'_blocks_3_video_src','field_6193c4a98ec07'),(257413,41447,'blocks_3_video_thumbnail',''),(257414,41447,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(257415,41447,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(257416,41447,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(257417,41447,'blocks_6_icon_row_items_2_label','Deposit & balance'),(257418,41447,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(257419,41447,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(257420,41447,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(257421,41447,'blocks_10_acfe_flexible_toggle','1'),(257422,41447,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(257423,41447,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(257424,41447,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(257425,41447,'blocks_10_options_theme','#ffffff'),(257426,41447,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(257427,41447,'blocks_10_options',''),(257428,41447,'_blocks_10_options','field_617ac0b7f6c08'),(257429,41447,'blocks_10_show','selection'),(257430,41447,'_blocks_10_show','field_61a49cba9d946'),(257431,41447,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(257432,41447,'_blocks_10_courses','field_61b244781ee0a'),(257433,41447,'blocks_10_open_whats_included','1'),(257434,41447,'_blocks_10_open_whats_included','field_66ebfd679450c'),(257435,41447,'blocks_10_open_key_information','0'),(257436,41447,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(257437,41447,'blocks_10_open',''),(257438,41447,'_blocks_10_open','field_66ebfd009450b'),(257439,41447,'blocks_11_acfe_flexible_toggle',''),(257440,41447,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(257441,41447,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(257442,41447,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(257443,41447,'blocks_11_options_theme','#ffffff'),(257444,41447,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(257445,41447,'blocks_11_options_reverse','0'),(257446,41447,'_blocks_11_options_reverse','field_61768049bb8ac'),(257447,41447,'blocks_11_options',''),(257448,41447,'_blocks_11_options','field_617682517c334'),(257449,41447,'blocks_11_split_5050_image','41299'),(257450,41447,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(257451,41447,'blocks_11_split_5050_video',''),(257452,41447,'_blocks_11_split_5050_video','field_6239f3160848a'),(257453,41447,'blocks_11_split_5050_content_title','Optimise Performance '),(257454,41447,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(257455,41447,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(257456,41447,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(257457,41447,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(257458,41447,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(257459,41447,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(257460,41447,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(257461,41447,'blocks_11_split_5050_content_actions','1'),(257462,41447,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(257463,41447,'blocks_11_split_5050_content',''),(257464,41447,'_blocks_11_split_5050_content','field_61767afceb8ba'),(257465,41447,'blocks_12_acfe_flexible_toggle',''),(257466,41447,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(257467,41447,'blocks_12_acfe_flexible_layout_title','Template'),(257468,41447,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(257469,41447,'blocks_12_template','40987'),(257470,41447,'_blocks_12_template','field_617bdd570fe01'),(257471,41447,'blocks_13_acfe_flexible_toggle',''),(257472,41447,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(257473,41447,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(257474,41447,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(257475,41447,'blocks_13_options_theme','#f5f5f5'),(257476,41447,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(257477,41447,'blocks_13_options_state','0'),(257478,41447,'_blocks_13_options_state','field_6239fcb7508c5'),(257479,41447,'blocks_13_options',''),(257480,41447,'_blocks_13_options','field_6177e2991ac44'),(257481,41447,'blocks_13_content_title',''),(257482,41447,'_blocks_13_content_title','field_64d237e8bb1e2'),(257483,41447,'blocks_13_content_heading','FAQ\'s'),(257484,41447,'_blocks_13_content_heading','field_64d237e8bb1e3'),(257485,41447,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(257486,41447,'_blocks_13_content_text','field_64d237e8bb1e4'),(257487,41447,'blocks_13_content_actions',''),(257488,41447,'_blocks_13_content_actions','field_64d237e8bb1e5'),(257489,41447,'blocks_13_content_align','left'),(257490,41447,'_blocks_13_content_align','field_64d2443e6b6aa'),(257491,41447,'blocks_13_content',''),(257492,41447,'_blocks_13_content','field_64d237e8bb1e1'),(257493,41447,'blocks_13_accordion_content','faqs'),(257494,41447,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(257495,41447,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(257496,41447,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(257497,41447,'blocks_13_actions',''),(257498,41447,'_blocks_13_actions','field_61a746a817f7a'),(257499,41449,'hide_hero','0'),(257500,41449,'_hide_hero','field_66a2380fcda39'),(257501,41449,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(257502,41449,'_hero_title','field_617571fe285e8'),(257503,41449,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(257504,41449,'_hero_text','field_6175723c285e9'),(257505,41449,'hero_actions','1'),(257506,41449,'_hero_actions','field_61757270285ea'),(257507,41449,'hero_style','default'),(257508,41449,'_hero_style','field_62051d9dc5324'),(257509,41449,'_thumbnail_id','41428'),(257510,41449,'__thumbnail_id','field_617570855ddaf'),(257511,41449,'hero_image_pos_x','right'),(257512,41449,'_hero_image_pos_x','field_62ec3d05390bb'),(257513,41449,'hero_image_pos_y','top'),(257514,41449,'_hero_image_pos_y','field_62ec3d05390bc'),(257515,41449,'hero_image_pos',''),(257516,41449,'_hero_image_pos','field_62ec3d05390ba'),(257517,41449,'fft_hide_from_listings','0'),(257518,41449,'_fft_hide_from_listings','field_61f1320446ab2'),(257519,41449,'fft_page_format','default'),(257520,41449,'_fft_page_format','field_61ae213f1f218'),(257521,41449,'fft_hide_nav','0'),(257522,41449,'_fft_hide_nav','field_635bd5e43527c'),(257523,41449,'fft_hide_header_call_to_action','0'),(257524,41449,'_fft_hide_header_call_to_action','field_635bd6723527d'),(257525,41449,'fft_page_sitemap','0'),(257526,41449,'_fft_page_sitemap','field_61af9b34e8181'),(257527,41449,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(257528,41449,'_blocks','field_6176696113096'),(257529,41449,'course_label_text',''),(257530,41449,'_course_label_text','field_61e17babf71fa'),(257531,41449,'course_label',''),(257532,41449,'_course_label','field_61e12f92749a7'),(257533,41449,'course_description',''),(257534,41449,'_course_description','field_617ac5788e5e1'),(257535,41449,'course_key_info',''),(257536,41449,'_course_key_info','field_617ac6ad8e5e2'),(257537,41449,'course_included',''),(257538,41449,'_course_included','field_617ac6f08e5e4'),(257539,41449,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-41425-4\";s:6:\"target\";s:0:\"\";}'),(257540,41449,'_hero_actions_0_button','field_61757281285eb'),(257541,41449,'blocks_0_acfe_flexible_toggle',''),(257542,41449,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(257543,41449,'blocks_0_acfe_flexible_layout_title','Icons'),(257544,41449,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(257545,41449,'blocks_0_options_theme','#b61234'),(257546,41449,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(257547,41449,'blocks_0_options_format','row'),(257548,41449,'_blocks_0_options_format','field_64bfde9a90690'),(257549,41449,'blocks_0_options',''),(257550,41449,'_blocks_0_options','field_64bfdd9b90684'),(257551,41449,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(257552,41449,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(257553,41449,'blocks_0_icon_row_items_0_label','Accreditation'),(257554,41449,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(257555,41449,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(257556,41449,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(257557,41449,'blocks_0_icon_row_items_1_icon','finance.svg'),(257558,41449,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(257559,41449,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(257560,41449,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(257561,41449,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(257562,41449,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(257563,41449,'blocks_0_icon_row_items_2_icon','progression.svg'),(257564,41449,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(257565,41449,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(257566,41449,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(257567,41449,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(257568,41449,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(257569,41449,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(257570,41449,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(257571,41449,'blocks_0_icon_row_items_3_label','Qualification'),(257572,41449,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(257573,41449,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(257574,41449,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(257575,41449,'blocks_0_icon_row_items','4'),(257576,41449,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(257577,41449,'blocks_5_acfe_flexible_toggle','1'),(257578,41449,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(257579,41449,'blocks_5_acfe_flexible_layout_title','Tabs'),(257580,41449,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(257581,41449,'blocks_5_options_theme','#ffffff'),(257582,41449,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(257583,41449,'blocks_5_options',''),(257584,41449,'_blocks_5_options','field_6177cfcd8140f'),(257585,41449,'blocks_5_tabs_0_tab_label','Entry requirements'),(257586,41449,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(257587,41449,'blocks_5_tabs_0_tab_content_title',''),(257588,41449,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(257589,41449,'blocks_5_tabs_0_tab_content_heading',''),(257590,41449,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(257591,41449,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(257592,41449,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(257593,41449,'blocks_5_tabs_0_tab_content_actions',''),(257594,41449,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(257595,41449,'blocks_5_tabs_0_tab_content',''),(257596,41449,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(257597,41449,'blocks_5_tabs_0_tab_image',''),(257598,41449,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(257599,41449,'blocks_5_tabs_1_tab_label','Learning format'),(257600,41449,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(257601,41449,'blocks_5_tabs_1_tab_content_title',''),(257602,41449,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(257603,41449,'blocks_5_tabs_1_tab_content_heading',''),(257604,41449,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(257605,41449,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(257606,41449,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(257607,41449,'blocks_5_tabs_1_tab_content_actions',''),(257608,41449,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(257609,41449,'blocks_5_tabs_1_tab_content',''),(257610,41449,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(257611,41449,'blocks_5_tabs_1_tab_image',''),(257612,41449,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(257613,41449,'blocks_5_tabs_2_tab_label','Qualifications included'),(257614,41449,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(257615,41449,'blocks_5_tabs_2_tab_content_title',''),(257616,41449,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(257617,41449,'blocks_5_tabs_2_tab_content_heading',''),(257618,41449,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(257619,41449,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(257620,41449,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(257621,41449,'blocks_5_tabs_2_tab_content_actions',''),(257622,41449,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(257623,41449,'blocks_5_tabs_2_tab_content',''),(257624,41449,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(257625,41449,'blocks_5_tabs_2_tab_image',''),(257626,41449,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(257627,41449,'blocks_5_tabs','3'),(257628,41449,'_blocks_5_tabs','field_6177cff281419'),(257629,41449,'blocks_4_acfe_flexible_toggle',''),(257630,41449,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(257631,41449,'blocks_4_acfe_flexible_layout_title','Template'),(257632,41449,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(257633,41449,'blocks_4_template','39207'),(257634,41449,'_blocks_4_template','field_617bdd570fe01'),(257635,41449,'blocks_6_acfe_flexible_toggle',''),(257636,41449,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(257637,41449,'blocks_6_acfe_flexible_layout_title','Icons'),(257638,41449,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(257639,41449,'blocks_6_options_theme','#f5f5f5'),(257640,41449,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(257641,41449,'blocks_6_options_format','stacked'),(257642,41449,'_blocks_6_options_format','field_64bfde9a90690'),(257643,41449,'blocks_6_options',''),(257644,41449,'_blocks_6_options','field_64bfdd9b90684'),(257645,41449,'blocks_6_row_content_title','Options available to pay for your course'),(257646,41449,'_blocks_6_row_content_title','field_64bfdd9b90687'),(257647,41449,'blocks_6_row_content_heading','Fees & Funding Options '),(257648,41449,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(257649,41449,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(257650,41449,'_blocks_6_row_content_text','field_64bfdd9b90689'),(257651,41449,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(257652,41449,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(257653,41449,'blocks_6_row_content_actions','1'),(257654,41449,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(257655,41449,'blocks_6_row_content',''),(257656,41449,'_blocks_6_row_content','field_64bfdd9b90686'),(257657,41449,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(257658,41449,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(257659,41449,'blocks_6_icon_row_items_0_label','Pay in full'),(257660,41449,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(257661,41449,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(257662,41449,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(257663,41449,'blocks_6_icon_row_items_1_icon','finance.svg'),(257664,41449,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(257665,41449,'blocks_6_icon_row_items_1_label','0% finance'),(257666,41449,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(257667,41449,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(257668,41449,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(257669,41449,'blocks_6_icon_row_items','3'),(257670,41449,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(257671,41449,'blocks_7_acfe_flexible_toggle',''),(257672,41449,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(257673,41449,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(257674,41449,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(257675,41449,'blocks_7_options_theme','#ffffff'),(257676,41449,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(257677,41449,'blocks_7_options_reverse','0'),(257678,41449,'_blocks_7_options_reverse','field_61768049bb8ac'),(257679,41449,'blocks_7_options',''),(257680,41449,'_blocks_7_options','field_617682517c334'),(257681,41449,'blocks_7_split_5050_image','41333'),(257682,41449,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(257683,41449,'blocks_7_split_5050_video',''),(257684,41449,'_blocks_7_split_5050_video','field_6239f3160848a'),(257685,41449,'blocks_7_split_5050_content_title',''),(257686,41449,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(257687,41449,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(257688,41449,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(257689,41449,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(257690,41449,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(257691,41449,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(257692,41449,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(257693,41449,'blocks_7_split_5050_content_actions','1'),(257694,41449,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(257695,41449,'blocks_7_split_5050_content',''),(257696,41449,'_blocks_7_split_5050_content','field_61767afceb8ba'),(257697,41449,'blocks_8_acfe_flexible_toggle',''),(257698,41449,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(257699,41449,'blocks_8_acfe_flexible_layout_title','Icons'),(257700,41449,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(257701,41449,'blocks_8_options_theme','#f5f5f5'),(257702,41449,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(257703,41449,'blocks_8_options_format','row'),(257704,41449,'_blocks_8_options_format','field_64bfde9a90690'),(257705,41449,'blocks_8_options',''),(257706,41449,'_blocks_8_options','field_64bfdd9b90684'),(257707,41449,'blocks_8_icon_row_items_0_icon','qualification.svg'),(257708,41449,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(257709,41449,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(257710,41449,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(257711,41449,'blocks_8_icon_row_items_0_text',''),(257712,41449,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(257713,41449,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(257714,41449,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(257715,41449,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(257716,41449,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(257717,41449,'blocks_8_icon_row_items_1_text',''),(257718,41449,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(257719,41449,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(257720,41449,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(257721,41449,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(257722,41449,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(257723,41449,'blocks_8_icon_row_items_2_text',''),(257724,41449,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(257725,41449,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(257726,41449,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(257727,41449,'blocks_8_icon_row_items_3_label','Flexible funding options'),(257728,41449,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(257729,41449,'blocks_8_icon_row_items_3_text',''),(257730,41449,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(257731,41449,'blocks_8_icon_row_items','4'),(257732,41449,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(257733,41449,'blocks_9_acfe_flexible_toggle',''),(257734,41449,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(257735,41449,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(257736,41449,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(257737,41449,'blocks_9_options_theme','#ffffff'),(257738,41449,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(257739,41449,'blocks_9_options_reverse','1'),(257740,41449,'_blocks_9_options_reverse','field_61768049bb8ac'),(257741,41449,'blocks_9_options',''),(257742,41449,'_blocks_9_options','field_617682517c334'),(257743,41449,'blocks_9_split_5050_image','39224'),(257744,41449,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(257745,41449,'blocks_9_split_5050_video',''),(257746,41449,'_blocks_9_split_5050_video','field_6239f3160848a'),(257747,41449,'blocks_9_split_5050_content_title','Locations'),(257748,41449,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(257749,41449,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(257750,41449,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(257751,41449,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(257752,41449,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(257753,41449,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(257754,41449,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(257755,41449,'blocks_9_split_5050_content_actions','1'),(257756,41449,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(257757,41449,'blocks_9_split_5050_content',''),(257758,41449,'_blocks_9_split_5050_content','field_61767afceb8ba'),(257759,41449,'blocks_1_acfe_flexible_toggle',''),(257760,41449,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(257761,41449,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(257762,41449,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(257763,41449,'blocks_1_options_theme','#ffffff'),(257764,41449,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(257765,41449,'blocks_1_options_reverse','0'),(257766,41449,'_blocks_1_options_reverse','field_61768049bb8ac'),(257767,41449,'blocks_1_options',''),(257768,41449,'_blocks_1_options','field_617682517c334'),(257769,41449,'blocks_1_split_5050_image','41430'),(257770,41449,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(257771,41449,'blocks_1_split_5050_video',''),(257772,41449,'_blocks_1_split_5050_video','field_6239f3160848a'),(257773,41449,'blocks_1_split_5050_content_title',''),(257774,41449,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(257775,41449,'blocks_1_split_5050_content_heading','Course Overview'),(257776,41449,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(257777,41449,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(257778,41449,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(257779,41449,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(257780,41449,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(257781,41449,'blocks_1_split_5050_content_actions','1'),(257782,41449,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(257783,41449,'blocks_1_split_5050_content',''),(257784,41449,'_blocks_1_split_5050_content','field_61767afceb8ba'),(257785,41449,'blocks_2_acfe_flexible_toggle',''),(257786,41449,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(257787,41449,'blocks_2_acfe_flexible_layout_title','Form'),(257788,41449,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(257789,41449,'blocks_2_row_content_format','standard'),(257790,41449,'_blocks_2_row_content_format','field_6481ead962881'),(257791,41449,'blocks_2_row_content_title',''),(257792,41449,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(257793,41449,'blocks_2_row_content_heading','Enquire Today'),(257794,41449,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(257795,41449,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(257796,41449,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(257797,41449,'blocks_2_row_content_actions',''),(257798,41449,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(257799,41449,'blocks_2_row_content',''),(257800,41449,'_blocks_2_row_content','field_61a0f5f5b3db0'),(257801,41449,'blocks_2_row_form','40394'),(257802,41449,'_blocks_2_row_form','field_61a4ff2c0b08e'),(257803,41449,'blocks_2_row_form_button_label',''),(257804,41449,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(257805,41449,'blocks_3_acfe_flexible_toggle',''),(257806,41449,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(257807,41449,'blocks_3_acfe_flexible_layout_title','Video'),(257808,41449,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(257809,41449,'blocks_3_size','large'),(257810,41449,'_blocks_3_size','field_6487038f297c1'),(257811,41449,'blocks_3_row_content_title',''),(257812,41449,'_blocks_3_row_content_title','field_64870132a865d'),(257813,41449,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(257814,41449,'_blocks_3_row_content_heading','field_64870142a865e'),(257815,41449,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(257816,41449,'_blocks_3_row_content_text','field_64870148a865f'),(257817,41449,'blocks_3_row_content',''),(257818,41449,'_blocks_3_row_content','field_6487008ba865c'),(257819,41449,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(257820,41449,'_blocks_3_video_src','field_6193c4a98ec07'),(257821,41449,'blocks_3_video_thumbnail',''),(257822,41449,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(257823,41449,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(257824,41449,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(257825,41449,'blocks_6_icon_row_items_2_label','Deposit & balance'),(257826,41449,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(257827,41449,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(257828,41449,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(257829,41449,'blocks_10_acfe_flexible_toggle','1'),(257830,41449,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(257831,41449,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(257832,41449,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(257833,41449,'blocks_10_options_theme','#ffffff'),(257834,41449,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(257835,41449,'blocks_10_options',''),(257836,41449,'_blocks_10_options','field_617ac0b7f6c08'),(257837,41449,'blocks_10_show','selection'),(257838,41449,'_blocks_10_show','field_61a49cba9d946'),(257839,41449,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(257840,41449,'_blocks_10_courses','field_61b244781ee0a'),(257841,41449,'blocks_10_open_whats_included','1'),(257842,41449,'_blocks_10_open_whats_included','field_66ebfd679450c'),(257843,41449,'blocks_10_open_key_information','0'),(257844,41449,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(257845,41449,'blocks_10_open',''),(257846,41449,'_blocks_10_open','field_66ebfd009450b'),(257847,41449,'blocks_11_acfe_flexible_toggle',''),(257848,41449,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(257849,41449,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(257850,41449,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(257851,41449,'blocks_11_options_theme','#ffffff'),(257852,41449,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(257853,41449,'blocks_11_options_reverse','0'),(257854,41449,'_blocks_11_options_reverse','field_61768049bb8ac'),(257855,41449,'blocks_11_options',''),(257856,41449,'_blocks_11_options','field_617682517c334'),(257857,41449,'blocks_11_split_5050_image','41299'),(257858,41449,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(257859,41449,'blocks_11_split_5050_video',''),(257860,41449,'_blocks_11_split_5050_video','field_6239f3160848a'),(257861,41449,'blocks_11_split_5050_content_title','Optimise Performance '),(257862,41449,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(257863,41449,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(257864,41449,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(257865,41449,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(257866,41449,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(257867,41449,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(257868,41449,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(257869,41449,'blocks_11_split_5050_content_actions','1'),(257870,41449,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(257871,41449,'blocks_11_split_5050_content',''),(257872,41449,'_blocks_11_split_5050_content','field_61767afceb8ba'),(257873,41449,'blocks_12_acfe_flexible_toggle',''),(257874,41449,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(257875,41449,'blocks_12_acfe_flexible_layout_title','Template'),(257876,41449,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(257877,41449,'blocks_12_template','40987'),(257878,41449,'_blocks_12_template','field_617bdd570fe01'),(257879,41449,'blocks_13_acfe_flexible_toggle',''),(257880,41449,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(257881,41449,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(257882,41449,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(257883,41449,'blocks_13_options_theme','#f5f5f5'),(257884,41449,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(257885,41449,'blocks_13_options_state','0'),(257886,41449,'_blocks_13_options_state','field_6239fcb7508c5'),(257887,41449,'blocks_13_options',''),(257888,41449,'_blocks_13_options','field_6177e2991ac44'),(257889,41449,'blocks_13_content_title',''),(257890,41449,'_blocks_13_content_title','field_64d237e8bb1e2'),(257891,41449,'blocks_13_content_heading','FAQ\'s'),(257892,41449,'_blocks_13_content_heading','field_64d237e8bb1e3'),(257893,41449,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(257894,41449,'_blocks_13_content_text','field_64d237e8bb1e4'),(257895,41449,'blocks_13_content_actions',''),(257896,41449,'_blocks_13_content_actions','field_64d237e8bb1e5'),(257897,41449,'blocks_13_content_align','left'),(257898,41449,'_blocks_13_content_align','field_64d2443e6b6aa'),(257899,41449,'blocks_13_content',''),(257900,41449,'_blocks_13_content','field_64d237e8bb1e1'),(257901,41449,'blocks_13_accordion_content','faqs'),(257902,41449,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(257903,41449,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(257904,41449,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(257905,41449,'blocks_13_actions',''),(257906,41449,'_blocks_13_actions','field_61a746a817f7a'),(257907,41455,'_fft_id','216'),(257908,41455,'_fft_catalogue_id','ffdddfaf-cb19-ef11-9f89-6045bdcfac0e'),(257909,41455,'_fft_code','L4SMC'),(257910,41455,'_fft_name','Level 4 Sports Massage'),(257911,41455,'_fft_description',NULL),(257912,41455,'_fft_metadata_school','biomechanics'),(257913,41455,'_fft_metadata_flex_id','1224'),(257914,41455,'_fft_metadata_type_id','100000002'),(257915,41455,'_fft_metadata_flex_type','collection'),(257916,41455,'_fft_metadata_type_label','Diploma'),(257917,41455,'_fft_metadata_course_type_id',NULL),(257918,41455,'_fft_metadata_course_type_label','Online Learning'),(257919,41455,'_fft_metadata_productstructure_id','3'),(257920,41455,'_fft_metadata_productstructure_label','Product Bundle'),(257921,41455,'_fft_taxable','1'),(257922,41455,'_fft_show','1'),(257923,41455,'_fft_created_at','1731399823'),(257924,41455,'_fft_updated_at','1743078588'),(257925,41455,'_fft_plan',NULL),(257926,41455,'_fft_price_id','219'),(257927,41455,'_fft_price_value','0'),(257928,41455,'_fft_price_begins_at',NULL),(257929,41455,'_fft_price_expires_at',NULL),(257930,41455,'_fft_price_value_inc_tax','0'),(257931,41455,'_fft_error',''),(257932,41455,'_fft_saved_at','1751618583'),(257933,41455,'_edit_lock','1741944122:18'),(257934,41455,'_edit_last','18'),(257935,41455,'hide_hero','0'),(257936,41455,'_hide_hero','field_66a2380fcda39'),(257937,41455,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(257938,41455,'_hero_title','field_617571fe285e8'),(257939,41455,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(257940,41455,'_hero_text','field_6175723c285e9'),(257941,41455,'hero_actions','1'),(257942,41455,'_hero_actions','field_61757270285ea'),(257943,41455,'hero_style','default'),(257944,41455,'_hero_style','field_62051d9dc5324'),(257945,41455,'_thumbnail_id','41473'),(257946,41455,'__thumbnail_id','field_617570855ddaf'),(257947,41455,'hero_image_pos_x','right'),(257948,41455,'_hero_image_pos_x','field_62ec3d05390bb'),(257949,41455,'hero_image_pos_y','top'),(257950,41455,'_hero_image_pos_y','field_62ec3d05390bc'),(257951,41455,'hero_image_pos',''),(257952,41455,'_hero_image_pos','field_62ec3d05390ba'),(257953,41455,'fft_hide_from_listings','0'),(257954,41455,'_fft_hide_from_listings','field_61f1320446ab2'),(257955,41455,'fft_page_format','default'),(257956,41455,'_fft_page_format','field_61ae213f1f218'),(257957,41455,'fft_hide_nav','0'),(257958,41455,'_fft_hide_nav','field_635bd5e43527c'),(257959,41455,'fft_hide_header_call_to_action','0'),(257960,41455,'_fft_hide_header_call_to_action','field_635bd6723527d'),(257961,41455,'fft_page_sitemap','0'),(257962,41455,'_fft_page_sitemap','field_61af9b34e8181'),(257963,41455,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(257964,41455,'_blocks','field_6176696113096'),(257965,41455,'course_label_text',''),(257966,41455,'_course_label_text','field_61e17babf71fa'),(257967,41455,'course_label',''),(257968,41455,'_course_label','field_61e12f92749a7'),(257969,41455,'course_description',''),(257970,41455,'_course_description','field_617ac5788e5e1'),(257971,41455,'course_key_info',''),(257972,41455,'_course_key_info','field_617ac6ad8e5e2'),(257973,41455,'course_included',''),(257974,41455,'_course_included','field_617ac6f08e5e4'),(257975,41455,'_yoast_wpseo_primary_course-cat','406'),(257976,41455,'_yoast_wpseo_estimated-reading-time-minutes','1'),(257977,41455,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41455-4\";s:6:\"target\";s:0:\"\";}'),(257978,41455,'_hero_actions_0_button','field_61757281285eb'),(257979,41455,'blocks_0_acfe_flexible_toggle',''),(257980,41455,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(257981,41455,'blocks_0_acfe_flexible_layout_title','Icons'),(257982,41455,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(257983,41455,'blocks_0_options_theme','#b61234'),(257984,41455,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(257985,41455,'blocks_0_options_format','row'),(257986,41455,'_blocks_0_options_format','field_64bfde9a90690'),(257987,41455,'blocks_0_options',''),(257988,41455,'_blocks_0_options','field_64bfdd9b90684'),(257989,41455,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(257990,41455,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(257991,41455,'blocks_0_icon_row_items_0_label','Accreditation'),(257992,41455,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(257993,41455,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(257994,41455,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(257995,41455,'blocks_0_icon_row_items_1_icon','finance.svg'),(257996,41455,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(257997,41455,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(257998,41455,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(257999,41455,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(258000,41455,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(258001,41455,'blocks_0_icon_row_items_2_icon','progression.svg'),(258002,41455,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(258003,41455,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(258004,41455,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(258005,41455,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(258006,41455,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(258007,41455,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(258008,41455,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(258009,41455,'blocks_0_icon_row_items_3_label','Qualification'),(258010,41455,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(258011,41455,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(258012,41455,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(258013,41455,'blocks_0_icon_row_items','4'),(258014,41455,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(258015,41455,'blocks_5_acfe_flexible_toggle','1'),(258016,41455,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(258017,41455,'blocks_5_acfe_flexible_layout_title','Tabs'),(258018,41455,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(258019,41455,'blocks_5_options_theme','#ffffff'),(258020,41455,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(258021,41455,'blocks_5_options',''),(258022,41455,'_blocks_5_options','field_6177cfcd8140f'),(258023,41455,'blocks_5_tabs_0_tab_label','Entry requirements'),(258024,41455,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(258025,41455,'blocks_5_tabs_0_tab_content_title',''),(258026,41455,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(258027,41455,'blocks_5_tabs_0_tab_content_heading',''),(258028,41455,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(258029,41455,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(258030,41455,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(258031,41455,'blocks_5_tabs_0_tab_content_actions',''),(258032,41455,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(258033,41455,'blocks_5_tabs_0_tab_content',''),(258034,41455,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(258035,41455,'blocks_5_tabs_0_tab_image',''),(258036,41455,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(258037,41455,'blocks_5_tabs_1_tab_label','Learning format'),(258038,41455,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(258039,41455,'blocks_5_tabs_1_tab_content_title',''),(258040,41455,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(258041,41455,'blocks_5_tabs_1_tab_content_heading',''),(258042,41455,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(258043,41455,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(258044,41455,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(258045,41455,'blocks_5_tabs_1_tab_content_actions',''),(258046,41455,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(258047,41455,'blocks_5_tabs_1_tab_content',''),(258048,41455,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(258049,41455,'blocks_5_tabs_1_tab_image',''),(258050,41455,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(258051,41455,'blocks_5_tabs_2_tab_label','Qualifications included'),(258052,41455,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(258053,41455,'blocks_5_tabs_2_tab_content_title',''),(258054,41455,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(258055,41455,'blocks_5_tabs_2_tab_content_heading',''),(258056,41455,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(258057,41455,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(258058,41455,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(258059,41455,'blocks_5_tabs_2_tab_content_actions',''),(258060,41455,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(258061,41455,'blocks_5_tabs_2_tab_content',''),(258062,41455,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(258063,41455,'blocks_5_tabs_2_tab_image',''),(258064,41455,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(258065,41455,'blocks_5_tabs','3'),(258066,41455,'_blocks_5_tabs','field_6177cff281419'),(258067,41455,'blocks_4_acfe_flexible_toggle',''),(258068,41455,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(258069,41455,'blocks_4_acfe_flexible_layout_title','Template'),(258070,41455,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(258071,41455,'blocks_4_template','39207'),(258072,41455,'_blocks_4_template','field_617bdd570fe01'),(258073,41455,'blocks_6_acfe_flexible_toggle',''),(258074,41455,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(258075,41455,'blocks_6_acfe_flexible_layout_title','Icons'),(258076,41455,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(258077,41455,'blocks_6_options_theme','#f5f5f5'),(258078,41455,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(258079,41455,'blocks_6_options_format','stacked'),(258080,41455,'_blocks_6_options_format','field_64bfde9a90690'),(258081,41455,'blocks_6_options',''),(258082,41455,'_blocks_6_options','field_64bfdd9b90684'),(258083,41455,'blocks_6_row_content_title','Options available to pay for your course'),(258084,41455,'_blocks_6_row_content_title','field_64bfdd9b90687'),(258085,41455,'blocks_6_row_content_heading','Fees & Funding Options '),(258086,41455,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(258087,41455,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(258088,41455,'_blocks_6_row_content_text','field_64bfdd9b90689'),(258089,41455,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(258090,41455,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(258091,41455,'blocks_6_row_content_actions','1'),(258092,41455,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(258093,41455,'blocks_6_row_content',''),(258094,41455,'_blocks_6_row_content','field_64bfdd9b90686'),(258095,41455,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(258096,41455,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(258097,41455,'blocks_6_icon_row_items_0_label','Pay in full'),(258098,41455,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(258099,41455,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(258100,41455,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(258101,41455,'blocks_6_icon_row_items_1_icon','finance.svg'),(258102,41455,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(258103,41455,'blocks_6_icon_row_items_1_label','0% finance'),(258104,41455,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(258105,41455,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(258106,41455,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(258107,41455,'blocks_6_icon_row_items','3'),(258108,41455,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(258109,41455,'blocks_7_acfe_flexible_toggle',''),(258110,41455,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(258111,41455,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(258112,41455,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(258113,41455,'blocks_7_options_theme','#ffffff'),(258114,41455,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(258115,41455,'blocks_7_options_reverse','0'),(258116,41455,'_blocks_7_options_reverse','field_61768049bb8ac'),(258117,41455,'blocks_7_options',''),(258118,41455,'_blocks_7_options','field_617682517c334'),(258119,41455,'blocks_7_split_5050_image','41483'),(258120,41455,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(258121,41455,'blocks_7_split_5050_video',''),(258122,41455,'_blocks_7_split_5050_video','field_6239f3160848a'),(258123,41455,'blocks_7_split_5050_content_title',''),(258124,41455,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(258125,41455,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(258126,41455,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(258127,41455,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(258128,41455,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(258129,41455,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(258130,41455,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(258131,41455,'blocks_7_split_5050_content_actions','1'),(258132,41455,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(258133,41455,'blocks_7_split_5050_content',''),(258134,41455,'_blocks_7_split_5050_content','field_61767afceb8ba'),(258135,41455,'blocks_8_acfe_flexible_toggle',''),(258136,41455,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(258137,41455,'blocks_8_acfe_flexible_layout_title','Icons'),(258138,41455,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(258139,41455,'blocks_8_options_theme','#f5f5f5'),(258140,41455,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(258141,41455,'blocks_8_options_format','row'),(258142,41455,'_blocks_8_options_format','field_64bfde9a90690'),(258143,41455,'blocks_8_options',''),(258144,41455,'_blocks_8_options','field_64bfdd9b90684'),(258145,41455,'blocks_8_icon_row_items_0_icon','qualification.svg'),(258146,41455,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(258147,41455,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(258148,41455,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(258149,41455,'blocks_8_icon_row_items_0_text',''),(258150,41455,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(258151,41455,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(258152,41455,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(258153,41455,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(258154,41455,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(258155,41455,'blocks_8_icon_row_items_1_text',''),(258156,41455,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(258157,41455,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(258158,41455,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(258159,41455,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(258160,41455,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(258161,41455,'blocks_8_icon_row_items_2_text',''),(258162,41455,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(258163,41455,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(258164,41455,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(258165,41455,'blocks_8_icon_row_items_3_label','Flexible funding options'),(258166,41455,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(258167,41455,'blocks_8_icon_row_items_3_text',''),(258168,41455,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(258169,41455,'blocks_8_icon_row_items','4'),(258170,41455,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(258171,41455,'blocks_9_acfe_flexible_toggle',''),(258172,41455,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(258173,41455,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(258174,41455,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(258175,41455,'blocks_9_options_theme','#ffffff'),(258176,41455,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(258177,41455,'blocks_9_options_reverse','1'),(258178,41455,'_blocks_9_options_reverse','field_61768049bb8ac'),(258179,41455,'blocks_9_options',''),(258180,41455,'_blocks_9_options','field_617682517c334'),(258181,41455,'blocks_9_split_5050_image','39224'),(258182,41455,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(258183,41455,'blocks_9_split_5050_video',''),(258184,41455,'_blocks_9_split_5050_video','field_6239f3160848a'),(258185,41455,'blocks_9_split_5050_content_title','Locations'),(258186,41455,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(258187,41455,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(258188,41455,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(258189,41455,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(258190,41455,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(258191,41455,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(258192,41455,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(258193,41455,'blocks_9_split_5050_content_actions','1'),(258194,41455,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(258195,41455,'blocks_9_split_5050_content',''),(258196,41455,'_blocks_9_split_5050_content','field_61767afceb8ba'),(258197,41455,'blocks_1_acfe_flexible_toggle',''),(258198,41455,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(258199,41455,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(258200,41455,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(258201,41455,'blocks_1_options_theme','#ffffff'),(258202,41455,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(258203,41455,'blocks_1_options_reverse','0'),(258204,41455,'_blocks_1_options_reverse','field_61768049bb8ac'),(258205,41455,'blocks_1_options',''),(258206,41455,'_blocks_1_options','field_617682517c334'),(258207,41455,'blocks_1_split_5050_image','41484'),(258208,41455,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(258209,41455,'blocks_1_split_5050_video',''),(258210,41455,'_blocks_1_split_5050_video','field_6239f3160848a'),(258211,41455,'blocks_1_split_5050_content_title',''),(258212,41455,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(258213,41455,'blocks_1_split_5050_content_heading','Course Overview'),(258214,41455,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(258215,41455,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(258216,41455,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(258217,41455,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(258218,41455,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(258219,41455,'blocks_1_split_5050_content_actions','1'),(258220,41455,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(258221,41455,'blocks_1_split_5050_content',''),(258222,41455,'_blocks_1_split_5050_content','field_61767afceb8ba'),(258223,41455,'blocks_2_acfe_flexible_toggle',''),(258224,41455,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(258225,41455,'blocks_2_acfe_flexible_layout_title','Form'),(258226,41455,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(258227,41455,'blocks_2_row_content_format','standard'),(258228,41455,'_blocks_2_row_content_format','field_6481ead962881'),(258229,41455,'blocks_2_row_content_title',''),(258230,41455,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(258231,41455,'blocks_2_row_content_heading','Enquire Today'),(258232,41455,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(258233,41455,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(258234,41455,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(258235,41455,'blocks_2_row_content_actions',''),(258236,41455,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(258237,41455,'blocks_2_row_content',''),(258238,41455,'_blocks_2_row_content','field_61a0f5f5b3db0'),(258239,41455,'blocks_2_row_form','40394'),(258240,41455,'_blocks_2_row_form','field_61a4ff2c0b08e'),(258241,41455,'blocks_2_row_form_button_label',''),(258242,41455,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(258243,41455,'blocks_3_acfe_flexible_toggle',''),(258244,41455,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(258245,41455,'blocks_3_acfe_flexible_layout_title','Video'),(258246,41455,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(258247,41455,'blocks_3_size','large'),(258248,41455,'_blocks_3_size','field_6487038f297c1'),(258249,41455,'blocks_3_row_content_title',''),(258250,41455,'_blocks_3_row_content_title','field_64870132a865d'),(258251,41455,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(258252,41455,'_blocks_3_row_content_heading','field_64870142a865e'),(258253,41455,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(258254,41455,'_blocks_3_row_content_text','field_64870148a865f'),(258255,41455,'blocks_3_row_content',''),(258256,41455,'_blocks_3_row_content','field_6487008ba865c'),(258257,41455,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(258258,41455,'_blocks_3_video_src','field_6193c4a98ec07'),(258259,41455,'blocks_3_video_thumbnail',''),(258260,41455,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(258261,41455,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(258262,41455,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(258263,41455,'blocks_6_icon_row_items_2_label','Deposit & balance'),(258264,41455,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(258265,41455,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(258266,41455,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(258267,41455,'blocks_10_acfe_flexible_toggle','1'),(258268,41455,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(258269,41455,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(258270,41455,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(258271,41455,'blocks_10_options_theme','#ffffff'),(258272,41455,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(258273,41455,'blocks_10_options',''),(258274,41455,'_blocks_10_options','field_617ac0b7f6c08'),(258275,41455,'blocks_10_show','selection'),(258276,41455,'_blocks_10_show','field_61a49cba9d946'),(258277,41455,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(258278,41455,'_blocks_10_courses','field_61b244781ee0a'),(258279,41455,'blocks_10_open_whats_included','1'),(258280,41455,'_blocks_10_open_whats_included','field_66ebfd679450c'),(258281,41455,'blocks_10_open_key_information','0'),(258282,41455,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(258283,41455,'blocks_10_open',''),(258284,41455,'_blocks_10_open','field_66ebfd009450b'),(258285,41455,'blocks_11_acfe_flexible_toggle',''),(258286,41455,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(258287,41455,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(258288,41455,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(258289,41455,'blocks_11_options_theme','#ffffff'),(258290,41455,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(258291,41455,'blocks_11_options_reverse','0'),(258292,41455,'_blocks_11_options_reverse','field_61768049bb8ac'),(258293,41455,'blocks_11_options',''),(258294,41455,'_blocks_11_options','field_617682517c334'),(258295,41455,'blocks_11_split_5050_image','41495'),(258296,41455,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(258297,41455,'blocks_11_split_5050_video',''),(258298,41455,'_blocks_11_split_5050_video','field_6239f3160848a'),(258299,41455,'blocks_11_split_5050_content_title','Optimise Performance '),(258300,41455,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(258301,41455,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(258302,41455,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(258303,41455,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(258304,41455,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(258305,41455,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(258306,41455,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(258307,41455,'blocks_11_split_5050_content_actions','1'),(258308,41455,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(258309,41455,'blocks_11_split_5050_content',''),(258310,41455,'_blocks_11_split_5050_content','field_61767afceb8ba'),(258311,41455,'blocks_12_acfe_flexible_toggle',''),(258312,41455,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(258313,41455,'blocks_12_acfe_flexible_layout_title','Template'),(258314,41455,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(258315,41455,'blocks_12_template','40987'),(258316,41455,'_blocks_12_template','field_617bdd570fe01'),(258317,41455,'blocks_13_acfe_flexible_toggle',''),(258318,41455,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(258319,41455,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(258320,41455,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(258321,41455,'blocks_13_options_theme','#f5f5f5'),(258322,41455,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(258323,41455,'blocks_13_options_state','0'),(258324,41455,'_blocks_13_options_state','field_6239fcb7508c5'),(258325,41455,'blocks_13_options',''),(258326,41455,'_blocks_13_options','field_6177e2991ac44'),(258327,41455,'blocks_13_content_title',''),(258328,41455,'_blocks_13_content_title','field_64d237e8bb1e2'),(258329,41455,'blocks_13_content_heading','FAQ\'s'),(258330,41455,'_blocks_13_content_heading','field_64d237e8bb1e3'),(258331,41455,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(258332,41455,'_blocks_13_content_text','field_64d237e8bb1e4'),(258333,41455,'blocks_13_content_actions',''),(258334,41455,'_blocks_13_content_actions','field_64d237e8bb1e5'),(258335,41455,'blocks_13_content_align','left'),(258336,41455,'_blocks_13_content_align','field_64d2443e6b6aa'),(258337,41455,'blocks_13_content',''),(258338,41455,'_blocks_13_content','field_64d237e8bb1e1'),(258339,41455,'blocks_13_accordion_content','faqs'),(258340,41455,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(258341,41455,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41458\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(258342,41455,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(258343,41455,'blocks_13_actions',''),(258344,41455,'_blocks_13_actions','field_61a746a817f7a'),(258345,41455,'_yoast_wpseo_focuskw','Sports Massage Therapist Course'),(258346,41455,'_yoast_wpseo_title','Level 4 SMT + Biomechanics Coaching Bundle %%sep%% Biomechanics Education'),(258347,41455,'_yoast_wpseo_metadesc','Enhance your skills with our Level 4 Sports Massage and Intrinsic Biomechanics course, designed to support performance and improve movement quality through evidence-based assessment techniques.'),(258348,41455,'_yoast_wpseo_linkdex','27'),(258349,41455,'_yoast_wpseo_inclusive_language_score','90'),(258350,41455,'_wp_old_slug','level-4-personal-trainer-course-copy'),(258351,41454,'_edit_lock','1731060654:1'),(258352,41453,'_edit_lock','1731503653:1'),(258353,41422,'_edit_lock','1731060668:1'),(258354,41419,'_edit_lock','1731060677:1'),(258355,41417,'_edit_lock','1731060682:1'),(258356,41458,'_edit_lock','1731060806:13'),(258357,41458,'_edit_last','13'),(258358,41455,'_wp_old_slug','level-3-sports-massage-diploma-in-biomechanics-coaching-copy'),(258359,41459,'hide_hero','0'),(258360,41459,'_hide_hero','field_66a2380fcda39'),(258361,41459,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(258362,41459,'_hero_title','field_617571fe285e8'),(258363,41459,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(258364,41459,'_hero_text','field_6175723c285e9'),(258365,41459,'hero_actions','1'),(258366,41459,'_hero_actions','field_61757270285ea'),(258367,41459,'hero_style','default'),(258368,41459,'_hero_style','field_62051d9dc5324'),(258369,41459,'_thumbnail_id','41428'),(258370,41459,'__thumbnail_id','field_617570855ddaf'),(258371,41459,'hero_image_pos_x','right'),(258372,41459,'_hero_image_pos_x','field_62ec3d05390bb'),(258373,41459,'hero_image_pos_y','top'),(258374,41459,'_hero_image_pos_y','field_62ec3d05390bc'),(258375,41459,'hero_image_pos',''),(258376,41459,'_hero_image_pos','field_62ec3d05390ba'),(258377,41459,'fft_hide_from_listings','0'),(258378,41459,'_fft_hide_from_listings','field_61f1320446ab2'),(258379,41459,'fft_page_format','default'),(258380,41459,'_fft_page_format','field_61ae213f1f218'),(258381,41459,'fft_hide_nav','0'),(258382,41459,'_fft_hide_nav','field_635bd5e43527c'),(258383,41459,'fft_hide_header_call_to_action','0'),(258384,41459,'_fft_hide_header_call_to_action','field_635bd6723527d'),(258385,41459,'fft_page_sitemap','0'),(258386,41459,'_fft_page_sitemap','field_61af9b34e8181'),(258387,41459,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(258388,41459,'_blocks','field_6176696113096'),(258389,41459,'course_label_text',''),(258390,41459,'_course_label_text','field_61e17babf71fa'),(258391,41459,'course_label',''),(258392,41459,'_course_label','field_61e12f92749a7'),(258393,41459,'course_description',''),(258394,41459,'_course_description','field_617ac5788e5e1'),(258395,41459,'course_key_info',''),(258396,41459,'_course_key_info','field_617ac6ad8e5e2'),(258397,41459,'course_included',''),(258398,41459,'_course_included','field_617ac6f08e5e4'),(258399,41459,'hero_actions_0_button',''),(258400,41459,'_hero_actions_0_button','field_61757281285eb'),(258401,41459,'blocks_0_acfe_flexible_toggle',''),(258402,41459,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(258403,41459,'blocks_0_acfe_flexible_layout_title','Icons'),(258404,41459,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(258405,41459,'blocks_0_options_theme','#b61234'),(258406,41459,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(258407,41459,'blocks_0_options_format','row'),(258408,41459,'_blocks_0_options_format','field_64bfde9a90690'),(258409,41459,'blocks_0_options',''),(258410,41459,'_blocks_0_options','field_64bfdd9b90684'),(258411,41459,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(258412,41459,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(258413,41459,'blocks_0_icon_row_items_0_label','Accreditation'),(258414,41459,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(258415,41459,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(258416,41459,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(258417,41459,'blocks_0_icon_row_items_1_icon','finance.svg'),(258418,41459,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(258419,41459,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(258420,41459,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(258421,41459,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(258422,41459,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(258423,41459,'blocks_0_icon_row_items_2_icon','progression.svg'),(258424,41459,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(258425,41459,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(258426,41459,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(258427,41459,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(258428,41459,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(258429,41459,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(258430,41459,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(258431,41459,'blocks_0_icon_row_items_3_label','Qualification'),(258432,41459,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(258433,41459,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(258434,41459,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(258435,41459,'blocks_0_icon_row_items','4'),(258436,41459,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(258437,41459,'blocks_5_acfe_flexible_toggle','1'),(258438,41459,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(258439,41459,'blocks_5_acfe_flexible_layout_title','Tabs'),(258440,41459,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(258441,41459,'blocks_5_options_theme','#ffffff'),(258442,41459,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(258443,41459,'blocks_5_options',''),(258444,41459,'_blocks_5_options','field_6177cfcd8140f'),(258445,41459,'blocks_5_tabs_0_tab_label','Entry requirements'),(258446,41459,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(258447,41459,'blocks_5_tabs_0_tab_content_title',''),(258448,41459,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(258449,41459,'blocks_5_tabs_0_tab_content_heading',''),(258450,41459,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(258451,41459,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(258452,41459,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(258453,41459,'blocks_5_tabs_0_tab_content_actions',''),(258454,41459,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(258455,41459,'blocks_5_tabs_0_tab_content',''),(258456,41459,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(258457,41459,'blocks_5_tabs_0_tab_image',''),(258458,41459,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(258459,41459,'blocks_5_tabs_1_tab_label','Learning format'),(258460,41459,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(258461,41459,'blocks_5_tabs_1_tab_content_title',''),(258462,41459,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(258463,41459,'blocks_5_tabs_1_tab_content_heading',''),(258464,41459,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(258465,41459,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(258466,41459,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(258467,41459,'blocks_5_tabs_1_tab_content_actions',''),(258468,41459,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(258469,41459,'blocks_5_tabs_1_tab_content',''),(258470,41459,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(258471,41459,'blocks_5_tabs_1_tab_image',''),(258472,41459,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(258473,41459,'blocks_5_tabs_2_tab_label','Qualifications included'),(258474,41459,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(258475,41459,'blocks_5_tabs_2_tab_content_title',''),(258476,41459,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(258477,41459,'blocks_5_tabs_2_tab_content_heading',''),(258478,41459,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(258479,41459,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(258480,41459,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(258481,41459,'blocks_5_tabs_2_tab_content_actions',''),(258482,41459,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(258483,41459,'blocks_5_tabs_2_tab_content',''),(258484,41459,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(258485,41459,'blocks_5_tabs_2_tab_image',''),(258486,41459,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(258487,41459,'blocks_5_tabs','3'),(258488,41459,'_blocks_5_tabs','field_6177cff281419'),(258489,41459,'blocks_4_acfe_flexible_toggle',''),(258490,41459,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(258491,41459,'blocks_4_acfe_flexible_layout_title','Template'),(258492,41459,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(258493,41459,'blocks_4_template','39207'),(258494,41459,'_blocks_4_template','field_617bdd570fe01'),(258495,41459,'blocks_6_acfe_flexible_toggle',''),(258496,41459,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(258497,41459,'blocks_6_acfe_flexible_layout_title','Icons'),(258498,41459,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(258499,41459,'blocks_6_options_theme','#f5f5f5'),(258500,41459,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(258501,41459,'blocks_6_options_format','stacked'),(258502,41459,'_blocks_6_options_format','field_64bfde9a90690'),(258503,41459,'blocks_6_options',''),(258504,41459,'_blocks_6_options','field_64bfdd9b90684'),(258505,41459,'blocks_6_row_content_title','Options available to pay for your course'),(258506,41459,'_blocks_6_row_content_title','field_64bfdd9b90687'),(258507,41459,'blocks_6_row_content_heading','Fees & Funding Options '),(258508,41459,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(258509,41459,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(258510,41459,'_blocks_6_row_content_text','field_64bfdd9b90689'),(258511,41459,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(258512,41459,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(258513,41459,'blocks_6_row_content_actions','1'),(258514,41459,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(258515,41459,'blocks_6_row_content',''),(258516,41459,'_blocks_6_row_content','field_64bfdd9b90686'),(258517,41459,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(258518,41459,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(258519,41459,'blocks_6_icon_row_items_0_label','Pay in full'),(258520,41459,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(258521,41459,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(258522,41459,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(258523,41459,'blocks_6_icon_row_items_1_icon','finance.svg'),(258524,41459,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(258525,41459,'blocks_6_icon_row_items_1_label','0% finance'),(258526,41459,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(258527,41459,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(258528,41459,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(258529,41459,'blocks_6_icon_row_items','3'),(258530,41459,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(258531,41459,'blocks_7_acfe_flexible_toggle',''),(258532,41459,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(258533,41459,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(258534,41459,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(258535,41459,'blocks_7_options_theme','#ffffff'),(258536,41459,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(258537,41459,'blocks_7_options_reverse','0'),(258538,41459,'_blocks_7_options_reverse','field_61768049bb8ac'),(258539,41459,'blocks_7_options',''),(258540,41459,'_blocks_7_options','field_617682517c334'),(258541,41459,'blocks_7_split_5050_image','41333'),(258542,41459,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(258543,41459,'blocks_7_split_5050_video',''),(258544,41459,'_blocks_7_split_5050_video','field_6239f3160848a'),(258545,41459,'blocks_7_split_5050_content_title',''),(258546,41459,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(258547,41459,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(258548,41459,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(258549,41459,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(258550,41459,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(258551,41459,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(258552,41459,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(258553,41459,'blocks_7_split_5050_content_actions','1'),(258554,41459,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(258555,41459,'blocks_7_split_5050_content',''),(258556,41459,'_blocks_7_split_5050_content','field_61767afceb8ba'),(258557,41459,'blocks_8_acfe_flexible_toggle',''),(258558,41459,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(258559,41459,'blocks_8_acfe_flexible_layout_title','Icons'),(258560,41459,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(258561,41459,'blocks_8_options_theme','#f5f5f5'),(258562,41459,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(258563,41459,'blocks_8_options_format','row'),(258564,41459,'_blocks_8_options_format','field_64bfde9a90690'),(258565,41459,'blocks_8_options',''),(258566,41459,'_blocks_8_options','field_64bfdd9b90684'),(258567,41459,'blocks_8_icon_row_items_0_icon','qualification.svg'),(258568,41459,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(258569,41459,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(258570,41459,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(258571,41459,'blocks_8_icon_row_items_0_text',''),(258572,41459,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(258573,41459,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(258574,41459,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(258575,41459,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(258576,41459,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(258577,41459,'blocks_8_icon_row_items_1_text',''),(258578,41459,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(258579,41459,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(258580,41459,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(258581,41459,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(258582,41459,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(258583,41459,'blocks_8_icon_row_items_2_text',''),(258584,41459,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(258585,41459,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(258586,41459,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(258587,41459,'blocks_8_icon_row_items_3_label','Flexible funding options'),(258588,41459,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(258589,41459,'blocks_8_icon_row_items_3_text',''),(258590,41459,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(258591,41459,'blocks_8_icon_row_items','4'),(258592,41459,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(258593,41459,'blocks_9_acfe_flexible_toggle',''),(258594,41459,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(258595,41459,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(258596,41459,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(258597,41459,'blocks_9_options_theme','#ffffff'),(258598,41459,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(258599,41459,'blocks_9_options_reverse','1'),(258600,41459,'_blocks_9_options_reverse','field_61768049bb8ac'),(258601,41459,'blocks_9_options',''),(258602,41459,'_blocks_9_options','field_617682517c334'),(258603,41459,'blocks_9_split_5050_image','39224'),(258604,41459,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(258605,41459,'blocks_9_split_5050_video',''),(258606,41459,'_blocks_9_split_5050_video','field_6239f3160848a'),(258607,41459,'blocks_9_split_5050_content_title','Locations'),(258608,41459,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(258609,41459,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(258610,41459,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(258611,41459,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(258612,41459,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(258613,41459,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(258614,41459,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(258615,41459,'blocks_9_split_5050_content_actions','1'),(258616,41459,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(258617,41459,'blocks_9_split_5050_content',''),(258618,41459,'_blocks_9_split_5050_content','field_61767afceb8ba'),(258619,41459,'blocks_1_acfe_flexible_toggle',''),(258620,41459,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(258621,41459,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(258622,41459,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(258623,41459,'blocks_1_options_theme','#ffffff'),(258624,41459,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(258625,41459,'blocks_1_options_reverse','0'),(258626,41459,'_blocks_1_options_reverse','field_61768049bb8ac'),(258627,41459,'blocks_1_options',''),(258628,41459,'_blocks_1_options','field_617682517c334'),(258629,41459,'blocks_1_split_5050_image','41430'),(258630,41459,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(258631,41459,'blocks_1_split_5050_video',''),(258632,41459,'_blocks_1_split_5050_video','field_6239f3160848a'),(258633,41459,'blocks_1_split_5050_content_title',''),(258634,41459,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(258635,41459,'blocks_1_split_5050_content_heading','Course Overview'),(258636,41459,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(258637,41459,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(258638,41459,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(258639,41459,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(258640,41459,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(258641,41459,'blocks_1_split_5050_content_actions','1'),(258642,41459,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(258643,41459,'blocks_1_split_5050_content',''),(258644,41459,'_blocks_1_split_5050_content','field_61767afceb8ba'),(258645,41459,'blocks_2_acfe_flexible_toggle',''),(258646,41459,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(258647,41459,'blocks_2_acfe_flexible_layout_title','Form'),(258648,41459,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(258649,41459,'blocks_2_row_content_format','standard'),(258650,41459,'_blocks_2_row_content_format','field_6481ead962881'),(258651,41459,'blocks_2_row_content_title',''),(258652,41459,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(258653,41459,'blocks_2_row_content_heading','Enquire Today'),(258654,41459,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(258655,41459,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(258656,41459,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(258657,41459,'blocks_2_row_content_actions',''),(258658,41459,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(258659,41459,'blocks_2_row_content',''),(258660,41459,'_blocks_2_row_content','field_61a0f5f5b3db0'),(258661,41459,'blocks_2_row_form','40394'),(258662,41459,'_blocks_2_row_form','field_61a4ff2c0b08e'),(258663,41459,'blocks_2_row_form_button_label',''),(258664,41459,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(258665,41459,'blocks_3_acfe_flexible_toggle',''),(258666,41459,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(258667,41459,'blocks_3_acfe_flexible_layout_title','Video'),(258668,41459,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(258669,41459,'blocks_3_size','large'),(258670,41459,'_blocks_3_size','field_6487038f297c1'),(258671,41459,'blocks_3_row_content_title',''),(258672,41459,'_blocks_3_row_content_title','field_64870132a865d'),(258673,41459,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(258674,41459,'_blocks_3_row_content_heading','field_64870142a865e'),(258675,41459,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(258676,41459,'_blocks_3_row_content_text','field_64870148a865f'),(258677,41459,'blocks_3_row_content',''),(258678,41459,'_blocks_3_row_content','field_6487008ba865c'),(258679,41459,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(258680,41459,'_blocks_3_video_src','field_6193c4a98ec07'),(258681,41459,'blocks_3_video_thumbnail',''),(258682,41459,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(258683,41459,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(258684,41459,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(258685,41459,'blocks_6_icon_row_items_2_label','Deposit & balance'),(258686,41459,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(258687,41459,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(258688,41459,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(258689,41459,'blocks_10_acfe_flexible_toggle','1'),(258690,41459,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(258691,41459,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(258692,41459,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(258693,41459,'blocks_10_options_theme','#ffffff'),(258694,41459,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(258695,41459,'blocks_10_options',''),(258696,41459,'_blocks_10_options','field_617ac0b7f6c08'),(258697,41459,'blocks_10_show','selection'),(258698,41459,'_blocks_10_show','field_61a49cba9d946'),(258699,41459,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(258700,41459,'_blocks_10_courses','field_61b244781ee0a'),(258701,41459,'blocks_10_open_whats_included','1'),(258702,41459,'_blocks_10_open_whats_included','field_66ebfd679450c'),(258703,41459,'blocks_10_open_key_information','0'),(258704,41459,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(258705,41459,'blocks_10_open',''),(258706,41459,'_blocks_10_open','field_66ebfd009450b'),(258707,41459,'blocks_11_acfe_flexible_toggle',''),(258708,41459,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(258709,41459,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(258710,41459,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(258711,41459,'blocks_11_options_theme','#ffffff'),(258712,41459,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(258713,41459,'blocks_11_options_reverse','0'),(258714,41459,'_blocks_11_options_reverse','field_61768049bb8ac'),(258715,41459,'blocks_11_options',''),(258716,41459,'_blocks_11_options','field_617682517c334'),(258717,41459,'blocks_11_split_5050_image','41299'),(258718,41459,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(258719,41459,'blocks_11_split_5050_video',''),(258720,41459,'_blocks_11_split_5050_video','field_6239f3160848a'),(258721,41459,'blocks_11_split_5050_content_title','Optimise Performance '),(258722,41459,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(258723,41459,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(258724,41459,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(258725,41459,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(258726,41459,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(258727,41459,'blocks_11_split_5050_content_actions_0_button',''),(258728,41459,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(258729,41459,'blocks_11_split_5050_content_actions','1'),(258730,41459,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(258731,41459,'blocks_11_split_5050_content',''),(258732,41459,'_blocks_11_split_5050_content','field_61767afceb8ba'),(258733,41459,'blocks_12_acfe_flexible_toggle',''),(258734,41459,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(258735,41459,'blocks_12_acfe_flexible_layout_title','Template'),(258736,41459,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(258737,41459,'blocks_12_template','40987'),(258738,41459,'_blocks_12_template','field_617bdd570fe01'),(258739,41459,'blocks_13_acfe_flexible_toggle',''),(258740,41459,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(258741,41459,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(258742,41459,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(258743,41459,'blocks_13_options_theme','#f5f5f5'),(258744,41459,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(258745,41459,'blocks_13_options_state','0'),(258746,41459,'_blocks_13_options_state','field_6239fcb7508c5'),(258747,41459,'blocks_13_options',''),(258748,41459,'_blocks_13_options','field_6177e2991ac44'),(258749,41459,'blocks_13_content_title',''),(258750,41459,'_blocks_13_content_title','field_64d237e8bb1e2'),(258751,41459,'blocks_13_content_heading','FAQ\'s'),(258752,41459,'_blocks_13_content_heading','field_64d237e8bb1e3'),(258753,41459,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(258754,41459,'_blocks_13_content_text','field_64d237e8bb1e4'),(258755,41459,'blocks_13_content_actions',''),(258756,41459,'_blocks_13_content_actions','field_64d237e8bb1e5'),(258757,41459,'blocks_13_content_align','left'),(258758,41459,'_blocks_13_content_align','field_64d2443e6b6aa'),(258759,41459,'blocks_13_content',''),(258760,41459,'_blocks_13_content','field_64d237e8bb1e1'),(258761,41459,'blocks_13_accordion_content','faqs'),(258762,41459,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(258763,41459,'blocks_13_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(258764,41459,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(258765,41459,'blocks_13_actions',''),(258766,41459,'_blocks_13_actions','field_61a746a817f7a'),(258767,41460,'hide_hero','0'),(258768,41460,'_hide_hero','field_66a2380fcda39'),(258769,41460,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(258770,41460,'_hero_title','field_617571fe285e8'),(258771,41460,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(258772,41460,'_hero_text','field_6175723c285e9'),(258773,41460,'hero_actions','1'),(258774,41460,'_hero_actions','field_61757270285ea'),(258775,41460,'hero_style','default'),(258776,41460,'_hero_style','field_62051d9dc5324'),(258777,41460,'_thumbnail_id','41428'),(258778,41460,'__thumbnail_id','field_617570855ddaf'),(258779,41460,'hero_image_pos_x','right'),(258780,41460,'_hero_image_pos_x','field_62ec3d05390bb'),(258781,41460,'hero_image_pos_y','top'),(258782,41460,'_hero_image_pos_y','field_62ec3d05390bc'),(258783,41460,'hero_image_pos',''),(258784,41460,'_hero_image_pos','field_62ec3d05390ba'),(258785,41460,'fft_hide_from_listings','0'),(258786,41460,'_fft_hide_from_listings','field_61f1320446ab2'),(258787,41460,'fft_page_format','default'),(258788,41460,'_fft_page_format','field_61ae213f1f218'),(258789,41460,'fft_hide_nav','0'),(258790,41460,'_fft_hide_nav','field_635bd5e43527c'),(258791,41460,'fft_hide_header_call_to_action','0'),(258792,41460,'_fft_hide_header_call_to_action','field_635bd6723527d'),(258793,41460,'fft_page_sitemap','0'),(258794,41460,'_fft_page_sitemap','field_61af9b34e8181'),(258795,41460,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(258796,41460,'_blocks','field_6176696113096'),(258797,41460,'course_label_text',''),(258798,41460,'_course_label_text','field_61e17babf71fa'),(258799,41460,'course_label',''),(258800,41460,'_course_label','field_61e12f92749a7'),(258801,41460,'course_description',''),(258802,41460,'_course_description','field_617ac5788e5e1'),(258803,41460,'course_key_info',''),(258804,41460,'_course_key_info','field_617ac6ad8e5e2'),(258805,41460,'course_included',''),(258806,41460,'_course_included','field_617ac6f08e5e4'),(258807,41460,'hero_actions_0_button',''),(258808,41460,'_hero_actions_0_button','field_61757281285eb'),(258809,41460,'blocks_0_acfe_flexible_toggle',''),(258810,41460,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(258811,41460,'blocks_0_acfe_flexible_layout_title','Icons'),(258812,41460,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(258813,41460,'blocks_0_options_theme','#b61234'),(258814,41460,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(258815,41460,'blocks_0_options_format','row'),(258816,41460,'_blocks_0_options_format','field_64bfde9a90690'),(258817,41460,'blocks_0_options',''),(258818,41460,'_blocks_0_options','field_64bfdd9b90684'),(258819,41460,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(258820,41460,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(258821,41460,'blocks_0_icon_row_items_0_label','Accreditation'),(258822,41460,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(258823,41460,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(258824,41460,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(258825,41460,'blocks_0_icon_row_items_1_icon','finance.svg'),(258826,41460,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(258827,41460,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(258828,41460,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(258829,41460,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(258830,41460,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(258831,41460,'blocks_0_icon_row_items_2_icon','progression.svg'),(258832,41460,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(258833,41460,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(258834,41460,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(258835,41460,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(258836,41460,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(258837,41460,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(258838,41460,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(258839,41460,'blocks_0_icon_row_items_3_label','Qualification'),(258840,41460,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(258841,41460,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(258842,41460,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(258843,41460,'blocks_0_icon_row_items','4'),(258844,41460,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(258845,41460,'blocks_5_acfe_flexible_toggle','1'),(258846,41460,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(258847,41460,'blocks_5_acfe_flexible_layout_title','Tabs'),(258848,41460,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(258849,41460,'blocks_5_options_theme','#ffffff'),(258850,41460,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(258851,41460,'blocks_5_options',''),(258852,41460,'_blocks_5_options','field_6177cfcd8140f'),(258853,41460,'blocks_5_tabs_0_tab_label','Entry requirements'),(258854,41460,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(258855,41460,'blocks_5_tabs_0_tab_content_title',''),(258856,41460,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(258857,41460,'blocks_5_tabs_0_tab_content_heading',''),(258858,41460,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(258859,41460,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(258860,41460,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(258861,41460,'blocks_5_tabs_0_tab_content_actions',''),(258862,41460,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(258863,41460,'blocks_5_tabs_0_tab_content',''),(258864,41460,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(258865,41460,'blocks_5_tabs_0_tab_image',''),(258866,41460,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(258867,41460,'blocks_5_tabs_1_tab_label','Learning format'),(258868,41460,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(258869,41460,'blocks_5_tabs_1_tab_content_title',''),(258870,41460,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(258871,41460,'blocks_5_tabs_1_tab_content_heading',''),(258872,41460,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(258873,41460,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(258874,41460,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(258875,41460,'blocks_5_tabs_1_tab_content_actions',''),(258876,41460,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(258877,41460,'blocks_5_tabs_1_tab_content',''),(258878,41460,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(258879,41460,'blocks_5_tabs_1_tab_image',''),(258880,41460,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(258881,41460,'blocks_5_tabs_2_tab_label','Qualifications included'),(258882,41460,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(258883,41460,'blocks_5_tabs_2_tab_content_title',''),(258884,41460,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(258885,41460,'blocks_5_tabs_2_tab_content_heading',''),(258886,41460,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(258887,41460,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(258888,41460,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(258889,41460,'blocks_5_tabs_2_tab_content_actions',''),(258890,41460,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(258891,41460,'blocks_5_tabs_2_tab_content',''),(258892,41460,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(258893,41460,'blocks_5_tabs_2_tab_image',''),(258894,41460,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(258895,41460,'blocks_5_tabs','3'),(258896,41460,'_blocks_5_tabs','field_6177cff281419'),(258897,41460,'blocks_4_acfe_flexible_toggle',''),(258898,41460,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(258899,41460,'blocks_4_acfe_flexible_layout_title','Template'),(258900,41460,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(258901,41460,'blocks_4_template','39207'),(258902,41460,'_blocks_4_template','field_617bdd570fe01'),(258903,41460,'blocks_6_acfe_flexible_toggle',''),(258904,41460,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(258905,41460,'blocks_6_acfe_flexible_layout_title','Icons'),(258906,41460,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(258907,41460,'blocks_6_options_theme','#f5f5f5'),(258908,41460,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(258909,41460,'blocks_6_options_format','stacked'),(258910,41460,'_blocks_6_options_format','field_64bfde9a90690'),(258911,41460,'blocks_6_options',''),(258912,41460,'_blocks_6_options','field_64bfdd9b90684'),(258913,41460,'blocks_6_row_content_title','Options available to pay for your course'),(258914,41460,'_blocks_6_row_content_title','field_64bfdd9b90687'),(258915,41460,'blocks_6_row_content_heading','Fees & Funding Options '),(258916,41460,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(258917,41460,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(258918,41460,'_blocks_6_row_content_text','field_64bfdd9b90689'),(258919,41460,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(258920,41460,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(258921,41460,'blocks_6_row_content_actions','1'),(258922,41460,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(258923,41460,'blocks_6_row_content',''),(258924,41460,'_blocks_6_row_content','field_64bfdd9b90686'),(258925,41460,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(258926,41460,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(258927,41460,'blocks_6_icon_row_items_0_label','Pay in full'),(258928,41460,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(258929,41460,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(258930,41460,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(258931,41460,'blocks_6_icon_row_items_1_icon','finance.svg'),(258932,41460,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(258933,41460,'blocks_6_icon_row_items_1_label','0% finance'),(258934,41460,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(258935,41460,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(258936,41460,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(258937,41460,'blocks_6_icon_row_items','3'),(258938,41460,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(258939,41460,'blocks_7_acfe_flexible_toggle',''),(258940,41460,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(258941,41460,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(258942,41460,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(258943,41460,'blocks_7_options_theme','#ffffff'),(258944,41460,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(258945,41460,'blocks_7_options_reverse','0'),(258946,41460,'_blocks_7_options_reverse','field_61768049bb8ac'),(258947,41460,'blocks_7_options',''),(258948,41460,'_blocks_7_options','field_617682517c334'),(258949,41460,'blocks_7_split_5050_image','41333'),(258950,41460,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(258951,41460,'blocks_7_split_5050_video',''),(258952,41460,'_blocks_7_split_5050_video','field_6239f3160848a'),(258953,41460,'blocks_7_split_5050_content_title',''),(258954,41460,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(258955,41460,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(258956,41460,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(258957,41460,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(258958,41460,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(258959,41460,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(258960,41460,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(258961,41460,'blocks_7_split_5050_content_actions','1'),(258962,41460,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(258963,41460,'blocks_7_split_5050_content',''),(258964,41460,'_blocks_7_split_5050_content','field_61767afceb8ba'),(258965,41460,'blocks_8_acfe_flexible_toggle',''),(258966,41460,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(258967,41460,'blocks_8_acfe_flexible_layout_title','Icons'),(258968,41460,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(258969,41460,'blocks_8_options_theme','#f5f5f5'),(258970,41460,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(258971,41460,'blocks_8_options_format','row'),(258972,41460,'_blocks_8_options_format','field_64bfde9a90690'),(258973,41460,'blocks_8_options',''),(258974,41460,'_blocks_8_options','field_64bfdd9b90684'),(258975,41460,'blocks_8_icon_row_items_0_icon','qualification.svg'),(258976,41460,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(258977,41460,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(258978,41460,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(258979,41460,'blocks_8_icon_row_items_0_text',''),(258980,41460,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(258981,41460,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(258982,41460,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(258983,41460,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(258984,41460,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(258985,41460,'blocks_8_icon_row_items_1_text',''),(258986,41460,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(258987,41460,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(258988,41460,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(258989,41460,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(258990,41460,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(258991,41460,'blocks_8_icon_row_items_2_text',''),(258992,41460,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(258993,41460,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(258994,41460,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(258995,41460,'blocks_8_icon_row_items_3_label','Flexible funding options'),(258996,41460,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(258997,41460,'blocks_8_icon_row_items_3_text',''),(258998,41460,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(258999,41460,'blocks_8_icon_row_items','4'),(259000,41460,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(259001,41460,'blocks_9_acfe_flexible_toggle',''),(259002,41460,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(259003,41460,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(259004,41460,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(259005,41460,'blocks_9_options_theme','#ffffff'),(259006,41460,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(259007,41460,'blocks_9_options_reverse','1'),(259008,41460,'_blocks_9_options_reverse','field_61768049bb8ac'),(259009,41460,'blocks_9_options',''),(259010,41460,'_blocks_9_options','field_617682517c334'),(259011,41460,'blocks_9_split_5050_image','39224'),(259012,41460,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(259013,41460,'blocks_9_split_5050_video',''),(259014,41460,'_blocks_9_split_5050_video','field_6239f3160848a'),(259015,41460,'blocks_9_split_5050_content_title','Locations'),(259016,41460,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(259017,41460,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(259018,41460,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(259019,41460,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(259020,41460,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(259021,41460,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(259022,41460,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(259023,41460,'blocks_9_split_5050_content_actions','1'),(259024,41460,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(259025,41460,'blocks_9_split_5050_content',''),(259026,41460,'_blocks_9_split_5050_content','field_61767afceb8ba'),(259027,41460,'blocks_1_acfe_flexible_toggle',''),(259028,41460,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(259029,41460,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(259030,41460,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(259031,41460,'blocks_1_options_theme','#ffffff'),(259032,41460,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(259033,41460,'blocks_1_options_reverse','0'),(259034,41460,'_blocks_1_options_reverse','field_61768049bb8ac'),(259035,41460,'blocks_1_options',''),(259036,41460,'_blocks_1_options','field_617682517c334'),(259037,41460,'blocks_1_split_5050_image','41430'),(259038,41460,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(259039,41460,'blocks_1_split_5050_video',''),(259040,41460,'_blocks_1_split_5050_video','field_6239f3160848a'),(259041,41460,'blocks_1_split_5050_content_title',''),(259042,41460,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(259043,41460,'blocks_1_split_5050_content_heading','Course Overview'),(259044,41460,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(259045,41460,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(259046,41460,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(259047,41460,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(259048,41460,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(259049,41460,'blocks_1_split_5050_content_actions','1'),(259050,41460,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(259051,41460,'blocks_1_split_5050_content',''),(259052,41460,'_blocks_1_split_5050_content','field_61767afceb8ba'),(259053,41460,'blocks_2_acfe_flexible_toggle',''),(259054,41460,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(259055,41460,'blocks_2_acfe_flexible_layout_title','Form'),(259056,41460,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(259057,41460,'blocks_2_row_content_format','standard'),(259058,41460,'_blocks_2_row_content_format','field_6481ead962881'),(259059,41460,'blocks_2_row_content_title',''),(259060,41460,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(259061,41460,'blocks_2_row_content_heading','Enquire Today'),(259062,41460,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(259063,41460,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(259064,41460,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(259065,41460,'blocks_2_row_content_actions',''),(259066,41460,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(259067,41460,'blocks_2_row_content',''),(259068,41460,'_blocks_2_row_content','field_61a0f5f5b3db0'),(259069,41460,'blocks_2_row_form','40394'),(259070,41460,'_blocks_2_row_form','field_61a4ff2c0b08e'),(259071,41460,'blocks_2_row_form_button_label',''),(259072,41460,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(259073,41460,'blocks_3_acfe_flexible_toggle',''),(259074,41460,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(259075,41460,'blocks_3_acfe_flexible_layout_title','Video'),(259076,41460,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(259077,41460,'blocks_3_size','large'),(259078,41460,'_blocks_3_size','field_6487038f297c1'),(259079,41460,'blocks_3_row_content_title',''),(259080,41460,'_blocks_3_row_content_title','field_64870132a865d'),(259081,41460,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(259082,41460,'_blocks_3_row_content_heading','field_64870142a865e'),(259083,41460,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(259084,41460,'_blocks_3_row_content_text','field_64870148a865f'),(259085,41460,'blocks_3_row_content',''),(259086,41460,'_blocks_3_row_content','field_6487008ba865c'),(259087,41460,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(259088,41460,'_blocks_3_video_src','field_6193c4a98ec07'),(259089,41460,'blocks_3_video_thumbnail',''),(259090,41460,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(259091,41460,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(259092,41460,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(259093,41460,'blocks_6_icon_row_items_2_label','Deposit & balance'),(259094,41460,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(259095,41460,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(259096,41460,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(259097,41460,'blocks_10_acfe_flexible_toggle','1'),(259098,41460,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(259099,41460,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(259100,41460,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(259101,41460,'blocks_10_options_theme','#ffffff'),(259102,41460,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(259103,41460,'blocks_10_options',''),(259104,41460,'_blocks_10_options','field_617ac0b7f6c08'),(259105,41460,'blocks_10_show','selection'),(259106,41460,'_blocks_10_show','field_61a49cba9d946'),(259107,41460,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(259108,41460,'_blocks_10_courses','field_61b244781ee0a'),(259109,41460,'blocks_10_open_whats_included','1'),(259110,41460,'_blocks_10_open_whats_included','field_66ebfd679450c'),(259111,41460,'blocks_10_open_key_information','0'),(259112,41460,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(259113,41460,'blocks_10_open',''),(259114,41460,'_blocks_10_open','field_66ebfd009450b'),(259115,41460,'blocks_11_acfe_flexible_toggle',''),(259116,41460,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(259117,41460,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(259118,41460,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(259119,41460,'blocks_11_options_theme','#ffffff'),(259120,41460,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(259121,41460,'blocks_11_options_reverse','0'),(259122,41460,'_blocks_11_options_reverse','field_61768049bb8ac'),(259123,41460,'blocks_11_options',''),(259124,41460,'_blocks_11_options','field_617682517c334'),(259125,41460,'blocks_11_split_5050_image','41299'),(259126,41460,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(259127,41460,'blocks_11_split_5050_video',''),(259128,41460,'_blocks_11_split_5050_video','field_6239f3160848a'),(259129,41460,'blocks_11_split_5050_content_title','Optimise Performance '),(259130,41460,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(259131,41460,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(259132,41460,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(259133,41460,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(259134,41460,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(259135,41460,'blocks_11_split_5050_content_actions_0_button',''),(259136,41460,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(259137,41460,'blocks_11_split_5050_content_actions','1'),(259138,41460,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(259139,41460,'blocks_11_split_5050_content',''),(259140,41460,'_blocks_11_split_5050_content','field_61767afceb8ba'),(259141,41460,'blocks_12_acfe_flexible_toggle',''),(259142,41460,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(259143,41460,'blocks_12_acfe_flexible_layout_title','Template'),(259144,41460,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(259145,41460,'blocks_12_template','40987'),(259146,41460,'_blocks_12_template','field_617bdd570fe01'),(259147,41460,'blocks_13_acfe_flexible_toggle',''),(259148,41460,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(259149,41460,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(259150,41460,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(259151,41460,'blocks_13_options_theme','#f5f5f5'),(259152,41460,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(259153,41460,'blocks_13_options_state','0'),(259154,41460,'_blocks_13_options_state','field_6239fcb7508c5'),(259155,41460,'blocks_13_options',''),(259156,41460,'_blocks_13_options','field_6177e2991ac44'),(259157,41460,'blocks_13_content_title',''),(259158,41460,'_blocks_13_content_title','field_64d237e8bb1e2'),(259159,41460,'blocks_13_content_heading','FAQ\'s'),(259160,41460,'_blocks_13_content_heading','field_64d237e8bb1e3'),(259161,41460,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(259162,41460,'_blocks_13_content_text','field_64d237e8bb1e4'),(259163,41460,'blocks_13_content_actions',''),(259164,41460,'_blocks_13_content_actions','field_64d237e8bb1e5'),(259165,41460,'blocks_13_content_align','left'),(259166,41460,'_blocks_13_content_align','field_64d2443e6b6aa'),(259167,41460,'blocks_13_content',''),(259168,41460,'_blocks_13_content','field_64d237e8bb1e1'),(259169,41460,'blocks_13_accordion_content','faqs'),(259170,41460,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(259171,41460,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"41458\";i:14;s:5:\"39027\";}'),(259172,41460,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(259173,41460,'blocks_13_actions',''),(259174,41460,'_blocks_13_actions','field_61a746a817f7a'),(259175,41443,'_edit_lock','1731503641:1'),(259176,41389,'_edit_lock','1731503707:1'),(259177,41382,'_edit_lock','1731503690:1'),(259178,41363,'_edit_lock','1731503703:1'),(259179,41345,'_edit_lock','1731503730:1'),(259180,41337,'_edit_lock','1731061535:1'),(259181,41452,'_edit_lock','1731503433:1'),(259182,41384,'_edit_lock','1731061802:1'),(259183,41354,'_edit_lock','1731061807:1'),(259184,41461,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-6.jpg'),(259185,41461,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:40:\"2024/11/Sports_Massage_Therapy_Web-6.jpg\";s:8:\"filesize\";i:2132664;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-6-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85972;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-6-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136084;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-6-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29662;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-6-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67641;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-6-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205720;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-6-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38461;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-6-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128052;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-6-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206859;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-6-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29622;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-6-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85972;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-6-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136084;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-6-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32077;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-6-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102832;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-6-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166238;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-6-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32161;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-6-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97530;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-6-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155184;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-6-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27273;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-6-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75262;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-6-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117914;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664106247\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259186,41462,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-7.jpg'),(259187,41462,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:40:\"2024/11/Sports_Massage_Therapy_Web-7.jpg\";s:8:\"filesize\";i:1425894;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-7-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53272;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-7-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76138;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-7-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23952;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-7-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44109;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-7-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107655;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-7-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27758;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-7-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68129;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-7-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102102;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-7-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23951;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-7-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53272;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-7-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76138;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-7-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24701;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-7-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55851;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-7-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81792;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-7-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24653;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-7-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56391;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-7-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81574;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-7-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22116;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-7-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47543;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-7-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67106;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664106302\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"43\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259188,41463,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-8.jpg'),(259189,41463,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:40:\"2024/11/Sports_Massage_Therapy_Web-8.jpg\";s:8:\"filesize\";i:2093786;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-8-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101442;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-8-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156791;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-8-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34525;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-8-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80207;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-8-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230762;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-8-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44253;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-8-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142925;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-8-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222739;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-8-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34461;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-8-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101442;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-8-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156791;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-8-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37265;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-8-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114151;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-8-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176742;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-8-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37123;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-8-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113050;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-8-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175132;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-8-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31532;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-8-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90240;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-8-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138308;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664106305\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"43\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259190,41464,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-9.jpg'),(259191,41464,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:40:\"2024/11/Sports_Massage_Therapy_Web-9.jpg\";s:8:\"filesize\";i:1553818;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-9-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57026;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-9-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83244;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-9-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24814;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-9-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47047;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-9-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119916;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-9-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29122;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-9-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74570;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-9-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113974;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-9-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24751;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-9-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57026;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-9-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83244;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-9-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24769;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-9-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57439;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-9-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85633;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-9-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25853;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-9-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61549;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-9-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90828;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-9-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23057;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-9-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51029;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-9-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73265;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664106315\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259192,41465,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-53-1.jpg'),(259193,41465,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:43:\"2024/11/Sports_Massage_Therapy_Web-53-1.jpg\";s:8:\"filesize\";i:1857091;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81732;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"Sports_Massage_Therapy_Web-53-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121681;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32262;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66505;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"Sports_Massage_Therapy_Web-53-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176415;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40665;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115338;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:45:\"Sports_Massage_Therapy_Web-53-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178958;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32145;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81732;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:44:\"Sports_Massage_Therapy_Web-53-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121681;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35868;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97815;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:44:\"Sports_Massage_Therapy_Web-53-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150524;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34721;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91086;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:44:\"Sports_Massage_Therapy_Web-53-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137406;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29777;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-53-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73708;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:44:\"Sports_Massage_Therapy_Web-53-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109433;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109109\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"61\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259194,41466,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-54.jpg'),(259195,41466,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-54.jpg\";s:8:\"filesize\";i:1871502;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-54-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71855;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-54-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109067;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-54-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28032;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-54-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57753;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-54-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162167;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-54-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36411;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-54-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105995;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-54-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165842;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-54-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27939;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-54-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71855;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-54-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109067;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-54-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31475;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-54-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86627;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-54-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133954;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-54-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30086;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-54-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80305;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-54-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123425;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-54-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25755;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-54-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64393;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-54-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97849;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109178\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259196,41467,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-55.jpg'),(259197,41467,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-55.jpg\";s:8:\"filesize\";i:1671526;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-55-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58034;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-55-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88285;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-55-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23974;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-55-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47150;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-55-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130653;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-55-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30099;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-55-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85061;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-55-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133778;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-55-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23886;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-55-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58034;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-55-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88285;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-55-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26776;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-55-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72253;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-55-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112180;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-55-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25391;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-55-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64644;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-55-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99341;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-55-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22404;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-55-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52828;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-55-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79912;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109178\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259198,41468,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-56.jpg'),(259199,41468,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-56.jpg\";s:8:\"filesize\";i:1581092;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-56-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57119;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-56-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81873;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-56-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26203;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-56-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47783;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-56-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116267;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-56-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29067;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-56-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70715;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-56-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107840;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-56-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26137;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-56-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57119;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-56-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81873;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-56-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24663;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-56-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55655;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-56-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83302;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-56-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27186;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-56-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61362;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-56-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89169;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-56-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24448;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-56-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51860;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-56-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73481;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109185\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259200,41469,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-57.jpg'),(259201,41469,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-57.jpg\";s:8:\"filesize\";i:1420216;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-57-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45781;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-57-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65872;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-57-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21471;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-57-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38204;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-57-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94708;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-57-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25616;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-57-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62750;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-57-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96120;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-57-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21507;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-57-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45781;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-57-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65872;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-57-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23237;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-57-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53314;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-57-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80598;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-57-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22535;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-57-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50094;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-57-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73179;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-57-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20623;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-57-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42983;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-57-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61170;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109201\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259202,41470,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-58.jpg'),(259203,41470,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-58.jpg\";s:8:\"filesize\";i:1449109;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-58-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58139;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-58-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83199;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-58-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25846;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-58-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48182;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-58-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116646;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-58-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31310;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-58-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78153;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-58-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115673;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-58-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25777;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-58-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58139;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-58-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83199;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-58-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28247;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-58-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67871;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-58-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98983;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-58-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27062;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-58-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62862;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-58-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90465;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-58-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23410;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-58-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50184;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-58-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70934;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109212\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259204,41471,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-59.jpg'),(259205,41471,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-59.jpg\";s:8:\"filesize\";i:1701102;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-59-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64554;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-59-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94320;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-59-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27557;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-59-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53058;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-59-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135399;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-59-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33652;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-59-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88448;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-59-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135343;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-59-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27466;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-59-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64554;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-59-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94320;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-59-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29777;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-59-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75074;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-59-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113527;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-59-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28907;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-59-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70142;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-59-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103210;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-59-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24819;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-59-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55967;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-59-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80527;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109260\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"49\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259206,41472,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-60.jpg'),(259207,41472,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-60.jpg\";s:8:\"filesize\";i:1930156;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-60-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82903;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-60-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125052;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-60-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31234;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-60-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66720;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-60-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183011;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-60-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39352;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-60-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116305;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-60-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181142;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-60-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31204;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-60-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82903;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-60-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125052;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-60-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33894;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-60-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94197;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-60-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145097;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-60-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33418;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-60-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92056;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-60-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139865;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-60-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28479;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-60-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73263;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-60-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109849;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109371\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259208,41473,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-61.jpg'),(259209,41473,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-61.jpg\";s:8:\"filesize\";i:2113103;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-61-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101779;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-61-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153891;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-61-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37926;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-61-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81915;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-61-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223146;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-61-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45613;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-61-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132899;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-61-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:203664;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-61-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37800;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-61-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101779;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-61-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153891;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-61-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39750;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-61-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109634;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-61-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166847;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-61-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40475;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-61-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111868;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-61-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169213;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-61-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33651;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-61-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86060;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-61-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127410;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109422\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259210,41474,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-62-1.jpg'),(259211,41474,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:43:\"2024/11/Sports_Massage_Therapy_Web-62-1.jpg\";s:8:\"filesize\";i:1855197;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76765;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"Sports_Massage_Therapy_Web-62-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113533;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31051;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62620;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"Sports_Massage_Therapy_Web-62-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164134;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36506;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101421;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:45:\"Sports_Massage_Therapy_Web-62-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156425;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31036;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76765;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:44:\"Sports_Massage_Therapy_Web-62-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113533;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31118;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81820;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:44:\"Sports_Massage_Therapy_Web-62-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124940;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32226;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83068;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:44:\"Sports_Massage_Therapy_Web-62-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123884;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28851;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-62-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69681;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:44:\"Sports_Massage_Therapy_Web-62-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102394;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664109491\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259212,41475,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-63.jpg'),(259213,41475,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-63.jpg\";s:8:\"filesize\";i:1794263;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-63-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62943;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-63-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96357;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-63-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25788;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-63-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50832;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-63-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143556;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-63-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32296;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-63-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94708;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-63-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152299;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-63-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25721;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-63-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62943;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-63-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96357;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-63-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28238;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-63-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79320;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-63-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126869;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-63-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27577;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-63-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71211;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-63-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110393;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-63-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24261;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-63-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57877;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-63-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87769;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664110356\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"51\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259214,41476,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-64.jpg'),(259215,41476,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-64.jpg\";s:8:\"filesize\";i:2017973;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-64-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62066;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-64-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106994;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-64-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20417;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-64-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46122;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-64-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171987;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-64-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24933;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-64-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100774;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-64-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173616;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-64-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20416;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-64-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62066;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-64-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106994;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-64-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21607;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-64-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79298;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-64-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135111;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-64-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21450;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-64-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72112;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-64-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123864;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-64-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19081;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-64-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57937;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-64-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99904;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664105958\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259216,41477,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web.jpg'),(259217,41477,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:38:\"2024/11/Sports_Massage_Therapy_Web.jpg\";s:8:\"filesize\";i:1740069;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:38:\"Sports_Massage_Therapy_Web-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79119;}s:5:\"large\";a:5:{s:4:\"file\";s:39:\"Sports_Massage_Therapy_Web-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113968;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:38:\"Sports_Massage_Therapy_Web-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33144;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:38:\"Sports_Massage_Therapy_Web-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65360;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159942;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:38:\"Sports_Massage_Therapy_Web-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38343;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:38:\"Sports_Massage_Therapy_Web-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97999;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145751;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:38:\"Sports_Massage_Therapy_Web-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33132;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:38:\"Sports_Massage_Therapy_Web-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79119;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:39:\"Sports_Massage_Therapy_Web-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113968;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:38:\"Sports_Massage_Therapy_Web-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32473;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:38:\"Sports_Massage_Therapy_Web-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77378;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:39:\"Sports_Massage_Therapy_Web-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112913;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:38:\"Sports_Massage_Therapy_Web-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34444;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:38:\"Sports_Massage_Therapy_Web-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84327;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:39:\"Sports_Massage_Therapy_Web-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122215;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:38:\"Sports_Massage_Therapy_Web-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30346;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:38:\"Sports_Massage_Therapy_Web-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70836;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:39:\"Sports_Massage_Therapy_Web-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100913;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664105949\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"58\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259218,41478,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-4.jpg'),(259219,41478,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:40:\"2024/11/Sports_Massage_Therapy_Web-4.jpg\";s:8:\"filesize\";i:2311250;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-4-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104636;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-4-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173309;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-4-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30312;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-4-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79423;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-4-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:268161;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-4-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40197;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-4-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149868;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-4-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:244108;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-4-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30257;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-4-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104636;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-4-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173309;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-4-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32983;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-4-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112435;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-4-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181081;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-4-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32837;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-4-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118723;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-4-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195421;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-4-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27351;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-4-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93524;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-4-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154601;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664106124\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"39\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259220,41479,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-5.jpg'),(259221,41479,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:40:\"2024/11/Sports_Massage_Therapy_Web-5.jpg\";s:8:\"filesize\";i:2250925;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-5-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99012;}s:5:\"large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-5-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162691;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-5-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29154;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-5-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75383;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-5-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:250666;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-5-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38079;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-5-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140787;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-5-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228420;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-5-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29184;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-5-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99012;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-5-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162691;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-5-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31987;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-5-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110425;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-5-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178430;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-5-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31691;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-5-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111753;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-5-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182772;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-5-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26921;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:40:\"Sports_Massage_Therapy_Web-5-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89815;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-5-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147301;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664106241\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"37\";s:3:\"iso\";s:4:\"3200\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259222,41480,'hide_hero','0'),(259223,41480,'_hide_hero','field_66a2380fcda39'),(259224,41480,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(259225,41480,'_hero_title','field_617571fe285e8'),(259226,41480,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(259227,41480,'_hero_text','field_6175723c285e9'),(259228,41480,'hero_actions','1'),(259229,41480,'_hero_actions','field_61757270285ea'),(259230,41480,'hero_style','default'),(259231,41480,'_hero_style','field_62051d9dc5324'),(259232,41480,'_thumbnail_id','41473'),(259233,41480,'__thumbnail_id','field_617570855ddaf'),(259234,41480,'hero_image_pos_x','right'),(259235,41480,'_hero_image_pos_x','field_62ec3d05390bb'),(259236,41480,'hero_image_pos_y','top'),(259237,41480,'_hero_image_pos_y','field_62ec3d05390bc'),(259238,41480,'hero_image_pos',''),(259239,41480,'_hero_image_pos','field_62ec3d05390ba'),(259240,41480,'fft_hide_from_listings','0'),(259241,41480,'_fft_hide_from_listings','field_61f1320446ab2'),(259242,41480,'fft_page_format','default'),(259243,41480,'_fft_page_format','field_61ae213f1f218'),(259244,41480,'fft_hide_nav','0'),(259245,41480,'_fft_hide_nav','field_635bd5e43527c'),(259246,41480,'fft_hide_header_call_to_action','0'),(259247,41480,'_fft_hide_header_call_to_action','field_635bd6723527d'),(259248,41480,'fft_page_sitemap','0'),(259249,41480,'_fft_page_sitemap','field_61af9b34e8181'),(259250,41480,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(259251,41480,'_blocks','field_6176696113096'),(259252,41480,'course_label_text',''),(259253,41480,'_course_label_text','field_61e17babf71fa'),(259254,41480,'course_label',''),(259255,41480,'_course_label','field_61e12f92749a7'),(259256,41480,'course_description',''),(259257,41480,'_course_description','field_617ac5788e5e1'),(259258,41480,'course_key_info',''),(259259,41480,'_course_key_info','field_617ac6ad8e5e2'),(259260,41480,'course_included',''),(259261,41480,'_course_included','field_617ac6f08e5e4'),(259262,41480,'hero_actions_0_button',''),(259263,41480,'_hero_actions_0_button','field_61757281285eb'),(259264,41480,'blocks_0_acfe_flexible_toggle',''),(259265,41480,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(259266,41480,'blocks_0_acfe_flexible_layout_title','Icons'),(259267,41480,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(259268,41480,'blocks_0_options_theme','#b61234'),(259269,41480,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(259270,41480,'blocks_0_options_format','row'),(259271,41480,'_blocks_0_options_format','field_64bfde9a90690'),(259272,41480,'blocks_0_options',''),(259273,41480,'_blocks_0_options','field_64bfdd9b90684'),(259274,41480,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(259275,41480,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(259276,41480,'blocks_0_icon_row_items_0_label','Accreditation'),(259277,41480,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(259278,41480,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(259279,41480,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(259280,41480,'blocks_0_icon_row_items_1_icon','finance.svg'),(259281,41480,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(259282,41480,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(259283,41480,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(259284,41480,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(259285,41480,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(259286,41480,'blocks_0_icon_row_items_2_icon','progression.svg'),(259287,41480,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(259288,41480,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(259289,41480,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(259290,41480,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(259291,41480,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(259292,41480,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(259293,41480,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(259294,41480,'blocks_0_icon_row_items_3_label','Qualification'),(259295,41480,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(259296,41480,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(259297,41480,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(259298,41480,'blocks_0_icon_row_items','4'),(259299,41480,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(259300,41480,'blocks_5_acfe_flexible_toggle','1'),(259301,41480,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(259302,41480,'blocks_5_acfe_flexible_layout_title','Tabs'),(259303,41480,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(259304,41480,'blocks_5_options_theme','#ffffff'),(259305,41480,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(259306,41480,'blocks_5_options',''),(259307,41480,'_blocks_5_options','field_6177cfcd8140f'),(259308,41480,'blocks_5_tabs_0_tab_label','Entry requirements'),(259309,41480,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(259310,41480,'blocks_5_tabs_0_tab_content_title',''),(259311,41480,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(259312,41480,'blocks_5_tabs_0_tab_content_heading',''),(259313,41480,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(259314,41480,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(259315,41480,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(259316,41480,'blocks_5_tabs_0_tab_content_actions',''),(259317,41480,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(259318,41480,'blocks_5_tabs_0_tab_content',''),(259319,41480,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(259320,41480,'blocks_5_tabs_0_tab_image',''),(259321,41480,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(259322,41480,'blocks_5_tabs_1_tab_label','Learning format'),(259323,41480,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(259324,41480,'blocks_5_tabs_1_tab_content_title',''),(259325,41480,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(259326,41480,'blocks_5_tabs_1_tab_content_heading',''),(259327,41480,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(259328,41480,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(259329,41480,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(259330,41480,'blocks_5_tabs_1_tab_content_actions',''),(259331,41480,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(259332,41480,'blocks_5_tabs_1_tab_content',''),(259333,41480,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(259334,41480,'blocks_5_tabs_1_tab_image',''),(259335,41480,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(259336,41480,'blocks_5_tabs_2_tab_label','Qualifications included'),(259337,41480,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(259338,41480,'blocks_5_tabs_2_tab_content_title',''),(259339,41480,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(259340,41480,'blocks_5_tabs_2_tab_content_heading',''),(259341,41480,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(259342,41480,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(259343,41480,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(259344,41480,'blocks_5_tabs_2_tab_content_actions',''),(259345,41480,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(259346,41480,'blocks_5_tabs_2_tab_content',''),(259347,41480,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(259348,41480,'blocks_5_tabs_2_tab_image',''),(259349,41480,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(259350,41480,'blocks_5_tabs','3'),(259351,41480,'_blocks_5_tabs','field_6177cff281419'),(259352,41480,'blocks_4_acfe_flexible_toggle',''),(259353,41480,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(259354,41480,'blocks_4_acfe_flexible_layout_title','Template'),(259355,41480,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(259356,41480,'blocks_4_template','39207'),(259357,41480,'_blocks_4_template','field_617bdd570fe01'),(259358,41480,'blocks_6_acfe_flexible_toggle',''),(259359,41480,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(259360,41480,'blocks_6_acfe_flexible_layout_title','Icons'),(259361,41480,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(259362,41480,'blocks_6_options_theme','#f5f5f5'),(259363,41480,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(259364,41480,'blocks_6_options_format','stacked'),(259365,41480,'_blocks_6_options_format','field_64bfde9a90690'),(259366,41480,'blocks_6_options',''),(259367,41480,'_blocks_6_options','field_64bfdd9b90684'),(259368,41480,'blocks_6_row_content_title','Options available to pay for your course'),(259369,41480,'_blocks_6_row_content_title','field_64bfdd9b90687'),(259370,41480,'blocks_6_row_content_heading','Fees & Funding Options '),(259371,41480,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(259372,41480,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(259373,41480,'_blocks_6_row_content_text','field_64bfdd9b90689'),(259374,41480,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(259375,41480,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(259376,41480,'blocks_6_row_content_actions','1'),(259377,41480,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(259378,41480,'blocks_6_row_content',''),(259379,41480,'_blocks_6_row_content','field_64bfdd9b90686'),(259380,41480,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(259381,41480,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(259382,41480,'blocks_6_icon_row_items_0_label','Pay in full'),(259383,41480,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(259384,41480,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(259385,41480,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(259386,41480,'blocks_6_icon_row_items_1_icon','finance.svg'),(259387,41480,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(259388,41480,'blocks_6_icon_row_items_1_label','0% finance'),(259389,41480,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(259390,41480,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(259391,41480,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(259392,41480,'blocks_6_icon_row_items','3'),(259393,41480,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(259394,41480,'blocks_7_acfe_flexible_toggle',''),(259395,41480,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(259396,41480,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(259397,41480,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(259398,41480,'blocks_7_options_theme','#ffffff'),(259399,41480,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(259400,41480,'blocks_7_options_reverse','0'),(259401,41480,'_blocks_7_options_reverse','field_61768049bb8ac'),(259402,41480,'blocks_7_options',''),(259403,41480,'_blocks_7_options','field_617682517c334'),(259404,41480,'blocks_7_split_5050_image','41333'),(259405,41480,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(259406,41480,'blocks_7_split_5050_video',''),(259407,41480,'_blocks_7_split_5050_video','field_6239f3160848a'),(259408,41480,'blocks_7_split_5050_content_title',''),(259409,41480,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(259410,41480,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(259411,41480,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(259412,41480,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(259413,41480,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(259414,41480,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(259415,41480,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(259416,41480,'blocks_7_split_5050_content_actions','1'),(259417,41480,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(259418,41480,'blocks_7_split_5050_content',''),(259419,41480,'_blocks_7_split_5050_content','field_61767afceb8ba'),(259420,41480,'blocks_8_acfe_flexible_toggle',''),(259421,41480,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(259422,41480,'blocks_8_acfe_flexible_layout_title','Icons'),(259423,41480,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(259424,41480,'blocks_8_options_theme','#f5f5f5'),(259425,41480,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(259426,41480,'blocks_8_options_format','row'),(259427,41480,'_blocks_8_options_format','field_64bfde9a90690'),(259428,41480,'blocks_8_options',''),(259429,41480,'_blocks_8_options','field_64bfdd9b90684'),(259430,41480,'blocks_8_icon_row_items_0_icon','qualification.svg'),(259431,41480,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(259432,41480,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(259433,41480,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(259434,41480,'blocks_8_icon_row_items_0_text',''),(259435,41480,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(259436,41480,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(259437,41480,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(259438,41480,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(259439,41480,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(259440,41480,'blocks_8_icon_row_items_1_text',''),(259441,41480,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(259442,41480,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(259443,41480,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(259444,41480,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(259445,41480,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(259446,41480,'blocks_8_icon_row_items_2_text',''),(259447,41480,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(259448,41480,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(259449,41480,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(259450,41480,'blocks_8_icon_row_items_3_label','Flexible funding options'),(259451,41480,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(259452,41480,'blocks_8_icon_row_items_3_text',''),(259453,41480,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(259454,41480,'blocks_8_icon_row_items','4'),(259455,41480,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(259456,41480,'blocks_9_acfe_flexible_toggle',''),(259457,41480,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(259458,41480,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(259459,41480,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(259460,41480,'blocks_9_options_theme','#ffffff'),(259461,41480,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(259462,41480,'blocks_9_options_reverse','1'),(259463,41480,'_blocks_9_options_reverse','field_61768049bb8ac'),(259464,41480,'blocks_9_options',''),(259465,41480,'_blocks_9_options','field_617682517c334'),(259466,41480,'blocks_9_split_5050_image','39224'),(259467,41480,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(259468,41480,'blocks_9_split_5050_video',''),(259469,41480,'_blocks_9_split_5050_video','field_6239f3160848a'),(259470,41480,'blocks_9_split_5050_content_title','Locations'),(259471,41480,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(259472,41480,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(259473,41480,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(259474,41480,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(259475,41480,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(259476,41480,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(259477,41480,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(259478,41480,'blocks_9_split_5050_content_actions','1'),(259479,41480,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(259480,41480,'blocks_9_split_5050_content',''),(259481,41480,'_blocks_9_split_5050_content','field_61767afceb8ba'),(259482,41480,'blocks_1_acfe_flexible_toggle',''),(259483,41480,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(259484,41480,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(259485,41480,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(259486,41480,'blocks_1_options_theme','#ffffff'),(259487,41480,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(259488,41480,'blocks_1_options_reverse','0'),(259489,41480,'_blocks_1_options_reverse','field_61768049bb8ac'),(259490,41480,'blocks_1_options',''),(259491,41480,'_blocks_1_options','field_617682517c334'),(259492,41480,'blocks_1_split_5050_image','41430'),(259493,41480,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(259494,41480,'blocks_1_split_5050_video',''),(259495,41480,'_blocks_1_split_5050_video','field_6239f3160848a'),(259496,41480,'blocks_1_split_5050_content_title',''),(259497,41480,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(259498,41480,'blocks_1_split_5050_content_heading','Course Overview'),(259499,41480,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(259500,41480,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(259501,41480,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(259502,41480,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(259503,41480,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(259504,41480,'blocks_1_split_5050_content_actions','1'),(259505,41480,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(259506,41480,'blocks_1_split_5050_content',''),(259507,41480,'_blocks_1_split_5050_content','field_61767afceb8ba'),(259508,41480,'blocks_2_acfe_flexible_toggle',''),(259509,41480,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(259510,41480,'blocks_2_acfe_flexible_layout_title','Form'),(259511,41480,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(259512,41480,'blocks_2_row_content_format','standard'),(259513,41480,'_blocks_2_row_content_format','field_6481ead962881'),(259514,41480,'blocks_2_row_content_title',''),(259515,41480,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(259516,41480,'blocks_2_row_content_heading','Enquire Today'),(259517,41480,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(259518,41480,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(259519,41480,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(259520,41480,'blocks_2_row_content_actions',''),(259521,41480,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(259522,41480,'blocks_2_row_content',''),(259523,41480,'_blocks_2_row_content','field_61a0f5f5b3db0'),(259524,41480,'blocks_2_row_form','40394'),(259525,41480,'_blocks_2_row_form','field_61a4ff2c0b08e'),(259526,41480,'blocks_2_row_form_button_label',''),(259527,41480,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(259528,41480,'blocks_3_acfe_flexible_toggle',''),(259529,41480,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(259530,41480,'blocks_3_acfe_flexible_layout_title','Video'),(259531,41480,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(259532,41480,'blocks_3_size','large'),(259533,41480,'_blocks_3_size','field_6487038f297c1'),(259534,41480,'blocks_3_row_content_title',''),(259535,41480,'_blocks_3_row_content_title','field_64870132a865d'),(259536,41480,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(259537,41480,'_blocks_3_row_content_heading','field_64870142a865e'),(259538,41480,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(259539,41480,'_blocks_3_row_content_text','field_64870148a865f'),(259540,41480,'blocks_3_row_content',''),(259541,41480,'_blocks_3_row_content','field_6487008ba865c'),(259542,41480,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(259543,41480,'_blocks_3_video_src','field_6193c4a98ec07'),(259544,41480,'blocks_3_video_thumbnail',''),(259545,41480,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(259546,41480,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(259547,41480,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(259548,41480,'blocks_6_icon_row_items_2_label','Deposit & balance'),(259549,41480,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(259550,41480,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(259551,41480,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(259552,41480,'blocks_10_acfe_flexible_toggle','1'),(259553,41480,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(259554,41480,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(259555,41480,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(259556,41480,'blocks_10_options_theme','#ffffff'),(259557,41480,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(259558,41480,'blocks_10_options',''),(259559,41480,'_blocks_10_options','field_617ac0b7f6c08'),(259560,41480,'blocks_10_show','selection'),(259561,41480,'_blocks_10_show','field_61a49cba9d946'),(259562,41480,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(259563,41480,'_blocks_10_courses','field_61b244781ee0a'),(259564,41480,'blocks_10_open_whats_included','1'),(259565,41480,'_blocks_10_open_whats_included','field_66ebfd679450c'),(259566,41480,'blocks_10_open_key_information','0'),(259567,41480,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(259568,41480,'blocks_10_open',''),(259569,41480,'_blocks_10_open','field_66ebfd009450b'),(259570,41480,'blocks_11_acfe_flexible_toggle',''),(259571,41480,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(259572,41480,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(259573,41480,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(259574,41480,'blocks_11_options_theme','#ffffff'),(259575,41480,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(259576,41480,'blocks_11_options_reverse','0'),(259577,41480,'_blocks_11_options_reverse','field_61768049bb8ac'),(259578,41480,'blocks_11_options',''),(259579,41480,'_blocks_11_options','field_617682517c334'),(259580,41480,'blocks_11_split_5050_image','41299'),(259581,41480,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(259582,41480,'blocks_11_split_5050_video',''),(259583,41480,'_blocks_11_split_5050_video','field_6239f3160848a'),(259584,41480,'blocks_11_split_5050_content_title','Optimise Performance '),(259585,41480,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(259586,41480,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(259587,41480,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(259588,41480,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(259589,41480,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(259590,41480,'blocks_11_split_5050_content_actions_0_button',''),(259591,41480,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(259592,41480,'blocks_11_split_5050_content_actions','1'),(259593,41480,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(259594,41480,'blocks_11_split_5050_content',''),(259595,41480,'_blocks_11_split_5050_content','field_61767afceb8ba'),(259596,41480,'blocks_12_acfe_flexible_toggle',''),(259597,41480,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(259598,41480,'blocks_12_acfe_flexible_layout_title','Template'),(259599,41480,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(259600,41480,'blocks_12_template','40987'),(259601,41480,'_blocks_12_template','field_617bdd570fe01'),(259602,41480,'blocks_13_acfe_flexible_toggle',''),(259603,41480,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(259604,41480,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(259605,41480,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(259606,41480,'blocks_13_options_theme','#f5f5f5'),(259607,41480,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(259608,41480,'blocks_13_options_state','0'),(259609,41480,'_blocks_13_options_state','field_6239fcb7508c5'),(259610,41480,'blocks_13_options',''),(259611,41480,'_blocks_13_options','field_6177e2991ac44'),(259612,41480,'blocks_13_content_title',''),(259613,41480,'_blocks_13_content_title','field_64d237e8bb1e2'),(259614,41480,'blocks_13_content_heading','FAQ\'s'),(259615,41480,'_blocks_13_content_heading','field_64d237e8bb1e3'),(259616,41480,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(259617,41480,'_blocks_13_content_text','field_64d237e8bb1e4'),(259618,41480,'blocks_13_content_actions',''),(259619,41480,'_blocks_13_content_actions','field_64d237e8bb1e5'),(259620,41480,'blocks_13_content_align','left'),(259621,41480,'_blocks_13_content_align','field_64d2443e6b6aa'),(259622,41480,'blocks_13_content',''),(259623,41480,'_blocks_13_content','field_64d237e8bb1e1'),(259624,41480,'blocks_13_accordion_content','faqs'),(259625,41480,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(259626,41480,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"41458\";i:14;s:5:\"39027\";}'),(259627,41480,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(259628,41480,'blocks_13_actions',''),(259629,41480,'_blocks_13_actions','field_61a746a817f7a'),(259630,41481,'_wp_attached_file','2024/11/Sports_Massage_Therapy_Web-35.jpg'),(259631,41481,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:41:\"2024/11/Sports_Massage_Therapy_Web-35.jpg\";s:8:\"filesize\";i:1552618;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-35-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54726;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-35-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79064;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-35-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24208;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-35-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45338;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-35-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113054;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-35-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28753;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-35-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71136;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:43:\"Sports_Massage_Therapy_Web-35-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107699;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-35-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24140;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-35-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54726;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-35-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79064;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-35-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25379;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-35-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58760;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-35-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87752;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-35-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25607;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-35-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59145;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-35-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86643;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-35-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23215;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:41:\"Sports_Massage_Therapy_Web-35-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50900;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:42:\"Sports_Massage_Therapy_Web-35-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72875;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1664107453\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:4:\"2500\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(259632,41483,'_wp_attached_file','2024/11/BE_Worshop_30thAug-17-scaled.jpg'),(259633,41483,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:40:\"2024/11/BE_Worshop_30thAug-17-scaled.jpg\";s:8:\"filesize\";i:559475;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-17-900x1125.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156657;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-17-1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237025;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-17-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54593;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-17-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124731;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-17-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245384;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-17-1638x2048.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:385486;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-17-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47444;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-17-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133413;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-17-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:200781;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-17-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38224;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-17-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103631;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-17-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156258;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-17-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40666;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-17-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108555;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-17-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160010;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-17-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40279;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-17-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110391;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-17-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166793;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-17-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35149;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-17-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92055;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-17-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137569;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725016350\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-17.jpg\";}'),(259634,41484,'_wp_attached_file','2024/11/BE_Worshop_30thAug-18-scaled.jpg'),(259635,41484,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/11/BE_Worshop_30thAug-18-scaled.jpg\";s:8:\"filesize\";i:511665;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-18-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108433;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-18-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161953;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-18-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39182;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-18-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87333;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-18-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:231475;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-18-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:355726;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-18-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52107;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-18-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153845;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-18-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:232691;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-18-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39145;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-18-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107677;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-18-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160764;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-18-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42086;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-18-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116820;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-18-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174641;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-18-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42328;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-18-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119673;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-18-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179371;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-18-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35504;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-18-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96167;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-18-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143019;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725016647\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-18.jpg\";}'),(259636,41485,'_wp_attached_file','2024/11/BE_Worshop_30thAug-19-scaled.jpg'),(259637,41485,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/11/BE_Worshop_30thAug-19-scaled.jpg\";s:8:\"filesize\";i:569500;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115911;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-19-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40393;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93014;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-19-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:252419;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-19-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:392376;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53677;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162172;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-19-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247274;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40371;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115020;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-19-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173688;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46075;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135373;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-19-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205070;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43708;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127198;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-19-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192085;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36604;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-19-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103708;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-19-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155981;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725016663\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"62\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-19.jpg\";}'),(259638,41486,'_wp_attached_file','2024/11/BE_Worshop_30thAug-20-scaled.jpg'),(259639,41486,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/11/BE_Worshop_30thAug-20-scaled.jpg\";s:8:\"filesize\";i:547485;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111377;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-20-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166988;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40971;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89886;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-20-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:240896;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-20-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:376104;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48622;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140272;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-20-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:213402;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40939;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110848;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-20-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166115;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41774;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115406;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-20-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174869;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43326;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120325;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-20-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179663;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37698;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-20-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100922;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-20-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:150880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725016776\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-20.jpg\";}'),(259640,41487,'_wp_attached_file','2024/11/BE_Worshop_30thAug-21-scaled.jpg'),(259641,41487,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/11/BE_Worshop_30thAug-21-scaled.jpg\";s:8:\"filesize\";i:551747;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107944;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-21-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39078;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86778;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-21-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:234756;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-21-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:372514;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48184;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138509;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-21-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211068;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39030;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106909;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-21-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161157;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42511;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117408;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-21-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:178744;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41859;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117704;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-21-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177688;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35897;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-21-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97469;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-21-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146079;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725016953\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-21.jpg\";}'),(259642,41488,'_wp_attached_file','2024/11/BE_Worshop_30thAug-22-scaled.jpg'),(259643,41488,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/11/BE_Worshop_30thAug-22-scaled.jpg\";s:8:\"filesize\";i:512626;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104497;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-22-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155603;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38517;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84463;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-22-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222476;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-22-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:348079;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49195;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143265;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-22-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218793;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38462;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103399;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-22-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154395;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41331;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114740;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-22-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173799;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41198;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113407;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-22-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169997;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34616;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-22-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90756;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-22-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135112;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725016978\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-22.jpg\";}'),(259644,41489,'_wp_attached_file','2024/11/BE_Worshop_30thAug-23-scaled.jpg'),(259645,41489,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/11/BE_Worshop_30thAug-23-scaled.jpg\";s:8:\"filesize\";i:486587;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-23-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93421;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-23-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138474;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-23-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35290;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-23-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75513;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-23-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:201032;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-23-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:323553;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-23-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42285;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-23-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120213;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-23-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184364;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-23-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35227;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-23-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92575;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-23-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137568;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-23-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34380;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-23-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91046;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-23-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137539;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-23-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36913;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-23-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99012;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-23-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148109;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-23-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32490;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-23-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82533;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-23-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120947;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725017601\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"46\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-23.jpg\";}'),(259646,41490,'_wp_attached_file','2024/11/BE_Worshop_30thAug-24-scaled.jpg'),(259647,41490,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:40:\"2024/11/BE_Worshop_30thAug-24-scaled.jpg\";s:8:\"filesize\";i:576999;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-24-900x1125.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155244;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-24-1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:235760;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-24-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54264;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-24-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123274;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-24-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245153;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-24-1638x2048.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:389692;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-24-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46722;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-24-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130211;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-24-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196302;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-24-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36844;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-24-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94484;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-24-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141543;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-24-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40756;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-24-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107358;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-24-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160240;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-24-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39134;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-24-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103070;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-24-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154884;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-24-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33637;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-24-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84312;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-24-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125928;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725018499\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-24.jpg\";}'),(259648,41491,'_wp_attached_file','2024/11/BE_Worshop_30thAug-3-scaled.jpg'),(259649,41491,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/11/BE_Worshop_30thAug-3-scaled.jpg\";s:8:\"filesize\";i:671968;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-3-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129104;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-3-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199313;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-3-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43285;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-3-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102233;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-3-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:294265;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-3-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:465658;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-3-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55886;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-3-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181644;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-3-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:284717;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-3-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43118;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-3-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127900;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-3-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197883;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-3-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46914;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-3-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147295;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-3-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:230451;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-3-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45994;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-3-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140829;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-3-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:218592;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-3-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38793;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-3-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111814;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-3-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171210;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725011770\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"36\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_30thAug-3.jpg\";}'),(259650,41492,'_wp_attached_file','2024/11/BE_Worshop_30thAug-4-scaled.jpg'),(259651,41492,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/11/BE_Worshop_30thAug-4-scaled.jpg\";s:8:\"filesize\";i:535846;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-4-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117343;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-4-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172667;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-4-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43251;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-4-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94758;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-4-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245311;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-4-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:376890;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-4-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50374;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-4-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142390;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-4-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215734;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-4-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43172;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-4-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116506;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-4-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171591;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-4-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43097;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-4-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117247;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-4-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176594;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-4-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45551;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-4-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124093;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-4-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183703;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-4-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39684;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-4-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105229;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-4-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154039;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725012633\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"47\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_30thAug-4.jpg\";}'),(259652,41493,'_wp_attached_file','2024/11/BE_Worshop_30thAug-5-scaled.jpg'),(259653,41493,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/11/BE_Worshop_30thAug-5-scaled.jpg\";s:8:\"filesize\";i:590683;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102792;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-5-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159556;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35618;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81615;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-5-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:237942;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-5-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:391038;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44938;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141420;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-5-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223725;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35552;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102408;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-5-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158900;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37868;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113180;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-5-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175937;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38219;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113593;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-5-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177848;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32771;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-5-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93107;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-5-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144737;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725012641\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"66\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_30thAug-5.jpg\";}'),(259654,41494,'_wp_attached_file','2024/11/BE_Worshop_30thAug-6-scaled.jpg'),(259655,41494,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:39:\"2024/11/BE_Worshop_30thAug-6-scaled.jpg\";s:8:\"filesize\";i:802411;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-6-900x1125.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204326;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-6-1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:328166;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-6-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61348;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-6-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157884;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-6-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:341482;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-6-1638x2048.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:553730;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-6-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55518;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-6-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179883;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-6-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:284062;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-6-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46131;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-6-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142002;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-6-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:222275;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-6-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44364;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-6-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136236;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-6-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214504;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-6-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49420;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-6-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155226;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-6-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:243213;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-6-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41146;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-6-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124228;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-6-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192172;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725012647\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"24\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_30thAug-6.jpg\";}'),(259656,41495,'_wp_attached_file','2024/11/BE_Worshop_30thAug-7-scaled.jpg'),(259657,41495,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/11/BE_Worshop_30thAug-7-scaled.jpg\";s:8:\"filesize\";i:584722;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127499;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-7-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:191793;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44561;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102401;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-7-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274341;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-7-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:417996;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52722;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156449;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-7-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:236917;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44503;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126709;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-7-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:190319;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43343;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121433;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-7-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182807;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47501;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136751;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-7-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204798;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40413;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-7-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111933;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-7-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167233;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725012668\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"31\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_30thAug-7.jpg\";}'),(259658,41496,'_wp_attached_file','2024/11/BE_Worshop_30thAug-8-scaled.jpg'),(259659,41496,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/11/BE_Worshop_30thAug-8-scaled.jpg\";s:8:\"filesize\";i:611849;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128016;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-8-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193431;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43762;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102443;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-8-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:277005;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-8-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:428571;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56548;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171253;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-8-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259278;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43674;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127264;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-8-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192366;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47385;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137020;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-8-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:206910;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47231;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139505;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-8-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:210747;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40205;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-8-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114616;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-8-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172067;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725012689\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"56\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_30thAug-8.jpg\";}'),(259660,41497,'_wp_attached_file','2024/11/BE_Worshop_30thAug-9-scaled.jpg'),(259661,41497,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:39:\"2024/11/BE_Worshop_30thAug-9-scaled.jpg\";s:8:\"filesize\";i:457387;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-9-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95479;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-9-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140742;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-9-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35866;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-9-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77029;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-9-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202148;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-9-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:314537;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-9-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45019;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-9-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129797;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-9-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198363;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-9-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35860;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-9-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94745;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-9-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139895;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-9-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38338;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-9-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105875;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-9-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161029;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-9-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38310;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-9-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104121;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-9-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156372;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-9-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33118;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug-9-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85741;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-9-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126022;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725012711\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"66\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_30thAug-9.jpg\";}'),(259662,41498,'_wp_attached_file','2024/11/BE_Worshop_30thAug-25-scaled.jpg'),(259663,41498,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/11/BE_Worshop_30thAug-25-scaled.jpg\";s:8:\"filesize\";i:398967;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-25-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76736;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-25-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112434;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-25-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31598;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-25-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62826;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-25-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160938;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-25-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:259466;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-25-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38512;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-25-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105995;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-25-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163840;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-25-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31567;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-25-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75966;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-25-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111400;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-25-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32419;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-25-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85264;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-25-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131465;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-25-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33381;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-25-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83452;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-25-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123941;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-25-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28390;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-25-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66094;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-25-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95811;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725018550\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1250\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-25.jpg\";}'),(259664,41499,'_wp_attached_file','2024/11/BE_Worshop_30thAug-26-scaled.jpg'),(259665,41499,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:40:\"2024/11/BE_Worshop_30thAug-26-scaled.jpg\";s:8:\"filesize\";i:576143;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-26-900x1125.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164399;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-26-1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247690;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-26-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57048;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-26-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131866;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-26-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:256341;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-26-1638x2048.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:399366;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-26-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51615;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-26-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145194;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-26-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:217435;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-26-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38938;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-26-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101357;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-26-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149295;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-26-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42686;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-26-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116542;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-26-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172003;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-26-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42478;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-26-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114052;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-26-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:169463;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-26-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34431;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-26-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86825;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-26-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126967;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725018693\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-26.jpg\";}'),(259666,41500,'_wp_attached_file','2024/11/BE_Worshop_30thAug-27-scaled.jpg'),(259667,41500,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/11/BE_Worshop_30thAug-27-scaled.jpg\";s:8:\"filesize\";i:333759;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-27-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71088;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-27-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102927;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-27-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29778;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-27-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58602;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-27-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144463;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-27-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225110;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-27-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35989;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-27-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93795;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-27-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140747;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-27-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29758;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-27-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70514;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-27-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102130;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-27-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31631;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-27-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79408;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-27-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117831;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-27-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31401;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-27-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77369;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-27-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112035;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-27-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27197;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-27-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63183;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-27-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90743;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725018722\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-27.jpg\";}'),(259668,41501,'_wp_attached_file','2024/11/BE_Worshop_30thAug-28-scaled.jpg'),(259669,41501,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/11/BE_Worshop_30thAug-28-scaled.jpg\";s:8:\"filesize\";i:524380;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105143;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-28-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158680;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37732;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84665;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-28-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:229036;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-28-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:359276;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43806;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:127096;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-28-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193511;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37763;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104546;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-28-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157820;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37584;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104950;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-28-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158544;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39182;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109307;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-28-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164725;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34866;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-28-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94374;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-28-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141305;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725019815\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-28.jpg\";}'),(259670,41502,'_wp_attached_file','2024/11/BE_Worshop_30thAug-29-scaled.jpg'),(259671,41502,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:40:\"2024/11/BE_Worshop_30thAug-29-scaled.jpg\";s:8:\"filesize\";i:493856;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-29-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101444;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-29-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152912;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-29-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37094;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-29-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81682;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-29-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:219254;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-29-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:340609;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-29-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42513;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-29-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120751;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"BE_Worshop_30thAug-29-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182506;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-29-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36978;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-29-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100560;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-29-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:151847;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-29-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37066;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-29-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102431;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-29-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154030;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-29-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37957;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-29-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105052;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-29-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156776;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-29-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33405;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug-29-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88645;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_30thAug-29-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133029;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725019823\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:25:\"BE_Worshop_30thAug-29.jpg\";}'),(259672,41503,'_wp_attached_file','2024/11/BE_Worshop_30thAug--scaled.jpg'),(259673,41503,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:38:\"2024/11/BE_Worshop_30thAug--scaled.jpg\";s:8:\"filesize\";i:573023;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug--900x1125.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158966;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug--1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:242575;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"BE_Worshop_30thAug--400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53416;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"BE_Worshop_30thAug--768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125527;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug--1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:251806;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug--1638x2048.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:396029;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:31:\"BE_Worshop_30thAug--400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46852;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:31:\"BE_Worshop_30thAug--900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137365;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_30thAug--1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:208637;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:31:\"BE_Worshop_30thAug--400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36728;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:31:\"BE_Worshop_30thAug--900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100873;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug--1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152771;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:31:\"BE_Worshop_30thAug--300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39438;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:31:\"BE_Worshop_30thAug--675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:109192;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug--900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164330;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:31:\"BE_Worshop_30thAug--400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39511;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:31:\"BE_Worshop_30thAug--900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112523;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug--1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170306;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:31:\"BE_Worshop_30thAug--400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33173;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:31:\"BE_Worshop_30thAug--900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87240;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_30thAug--1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130629;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1725011671\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"45\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:23:\"BE_Worshop_30thAug-.jpg\";}'),(259674,41504,'_wp_attached_file','2024/11/BE_Worshop_24thAug-1-scaled.jpg'),(259675,41504,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/11/BE_Worshop_24thAug-1-scaled.jpg\";s:8:\"filesize\";i:579206;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130132;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-1-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:193084;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45973;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104734;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-1-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:274057;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-1-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:416223;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56619;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163858;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:245811;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45849;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129683;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192207;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47163;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131781;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196112;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48582;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137781;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:205062;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43627;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122285;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:181041;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1724494906\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_24thAug-1.jpg\";}'),(259676,41505,'_wp_attached_file','2024/11/BE_Worshop_24thAug-2-scaled.jpg'),(259677,41505,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/11/BE_Worshop_24thAug-2-scaled.jpg\";s:8:\"filesize\";i:433644;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98695;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-2-1200x802.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:802;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144521;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38320;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80404;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-2-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:204299;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-2-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:308623;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44740;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123889;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-2-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184513;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38355;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98057;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-2-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143842;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36228;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93399;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-2-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138599;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40157;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105219;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-2-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155064;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35234;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-2-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88125;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-2-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128512;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1724495723\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_24thAug-2.jpg\";}'),(259678,41506,'_wp_attached_file','2024/11/BE_Worshop_24thAug-3-scaled.jpg'),(259679,41506,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1710;s:4:\"file\";s:39:\"2024/11/BE_Worshop_24thAug-3-scaled.jpg\";s:8:\"filesize\";i:581543;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-3-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118569;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-3-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:180588;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-3-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40815;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-3-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94085;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-3-1536x1026.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1026;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:263370;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-3-2048x1368.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1368;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:409684;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-3-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45404;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-3-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139803;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"BE_Worshop_24thAug-3-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:217932;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-3-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40671;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-3-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117744;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-3-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:179442;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-3-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36632;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-3-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108252;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-3-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167879;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-3-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41353;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-3-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:120481;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-3-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:184175;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-3-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37197;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"BE_Worshop_24thAug-3-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103580;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"BE_Worshop_24thAug-3-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155727;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-7SM3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1724495732\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"160\";s:13:\"shutter_speed\";s:5:\"0.025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:24:\"BE_Worshop_24thAug-3.jpg\";}'),(259680,41455,'_wp_old_slug','level-3-sports-level-4-sports-massage-diploma-in-biomechanics-coaching'),(259681,41507,'hide_hero','0'),(259682,41507,'_hide_hero','field_66a2380fcda39'),(259683,41507,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(259684,41507,'_hero_title','field_617571fe285e8'),(259685,41507,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(259686,41507,'_hero_text','field_6175723c285e9'),(259687,41507,'hero_actions','1'),(259688,41507,'_hero_actions','field_61757270285ea'),(259689,41507,'hero_style','default'),(259690,41507,'_hero_style','field_62051d9dc5324'),(259691,41507,'_thumbnail_id','41473'),(259692,41507,'__thumbnail_id','field_617570855ddaf'),(259693,41507,'hero_image_pos_x','right'),(259694,41507,'_hero_image_pos_x','field_62ec3d05390bb'),(259695,41507,'hero_image_pos_y','top'),(259696,41507,'_hero_image_pos_y','field_62ec3d05390bc'),(259697,41507,'hero_image_pos',''),(259698,41507,'_hero_image_pos','field_62ec3d05390ba'),(259699,41507,'fft_hide_from_listings','0'),(259700,41507,'_fft_hide_from_listings','field_61f1320446ab2'),(259701,41507,'fft_page_format','default'),(259702,41507,'_fft_page_format','field_61ae213f1f218'),(259703,41507,'fft_hide_nav','0'),(259704,41507,'_fft_hide_nav','field_635bd5e43527c'),(259705,41507,'fft_hide_header_call_to_action','0'),(259706,41507,'_fft_hide_header_call_to_action','field_635bd6723527d'),(259707,41507,'fft_page_sitemap','0'),(259708,41507,'_fft_page_sitemap','field_61af9b34e8181'),(259709,41507,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(259710,41507,'_blocks','field_6176696113096'),(259711,41507,'course_label_text',''),(259712,41507,'_course_label_text','field_61e17babf71fa'),(259713,41507,'course_label',''),(259714,41507,'_course_label','field_61e12f92749a7'),(259715,41507,'course_description',''),(259716,41507,'_course_description','field_617ac5788e5e1'),(259717,41507,'course_key_info',''),(259718,41507,'_course_key_info','field_617ac6ad8e5e2'),(259719,41507,'course_included',''),(259720,41507,'_course_included','field_617ac6f08e5e4'),(259721,41507,'hero_actions_0_button',''),(259722,41507,'_hero_actions_0_button','field_61757281285eb'),(259723,41507,'blocks_0_acfe_flexible_toggle',''),(259724,41507,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(259725,41507,'blocks_0_acfe_flexible_layout_title','Icons'),(259726,41507,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(259727,41507,'blocks_0_options_theme','#b61234'),(259728,41507,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(259729,41507,'blocks_0_options_format','row'),(259730,41507,'_blocks_0_options_format','field_64bfde9a90690'),(259731,41507,'blocks_0_options',''),(259732,41507,'_blocks_0_options','field_64bfdd9b90684'),(259733,41507,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(259734,41507,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(259735,41507,'blocks_0_icon_row_items_0_label','Accreditation'),(259736,41507,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(259737,41507,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(259738,41507,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(259739,41507,'blocks_0_icon_row_items_1_icon','finance.svg'),(259740,41507,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(259741,41507,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(259742,41507,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(259743,41507,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(259744,41507,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(259745,41507,'blocks_0_icon_row_items_2_icon','progression.svg'),(259746,41507,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(259747,41507,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(259748,41507,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(259749,41507,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(259750,41507,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(259751,41507,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(259752,41507,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(259753,41507,'blocks_0_icon_row_items_3_label','Qualification'),(259754,41507,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(259755,41507,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(259756,41507,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(259757,41507,'blocks_0_icon_row_items','4'),(259758,41507,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(259759,41507,'blocks_5_acfe_flexible_toggle','1'),(259760,41507,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(259761,41507,'blocks_5_acfe_flexible_layout_title','Tabs'),(259762,41507,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(259763,41507,'blocks_5_options_theme','#ffffff'),(259764,41507,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(259765,41507,'blocks_5_options',''),(259766,41507,'_blocks_5_options','field_6177cfcd8140f'),(259767,41507,'blocks_5_tabs_0_tab_label','Entry requirements'),(259768,41507,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(259769,41507,'blocks_5_tabs_0_tab_content_title',''),(259770,41507,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(259771,41507,'blocks_5_tabs_0_tab_content_heading',''),(259772,41507,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(259773,41507,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(259774,41507,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(259775,41507,'blocks_5_tabs_0_tab_content_actions',''),(259776,41507,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(259777,41507,'blocks_5_tabs_0_tab_content',''),(259778,41507,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(259779,41507,'blocks_5_tabs_0_tab_image',''),(259780,41507,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(259781,41507,'blocks_5_tabs_1_tab_label','Learning format'),(259782,41507,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(259783,41507,'blocks_5_tabs_1_tab_content_title',''),(259784,41507,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(259785,41507,'blocks_5_tabs_1_tab_content_heading',''),(259786,41507,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(259787,41507,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(259788,41507,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(259789,41507,'blocks_5_tabs_1_tab_content_actions',''),(259790,41507,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(259791,41507,'blocks_5_tabs_1_tab_content',''),(259792,41507,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(259793,41507,'blocks_5_tabs_1_tab_image',''),(259794,41507,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(259795,41507,'blocks_5_tabs_2_tab_label','Qualifications included'),(259796,41507,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(259797,41507,'blocks_5_tabs_2_tab_content_title',''),(259798,41507,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(259799,41507,'blocks_5_tabs_2_tab_content_heading',''),(259800,41507,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(259801,41507,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(259802,41507,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(259803,41507,'blocks_5_tabs_2_tab_content_actions',''),(259804,41507,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(259805,41507,'blocks_5_tabs_2_tab_content',''),(259806,41507,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(259807,41507,'blocks_5_tabs_2_tab_image',''),(259808,41507,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(259809,41507,'blocks_5_tabs','3'),(259810,41507,'_blocks_5_tabs','field_6177cff281419'),(259811,41507,'blocks_4_acfe_flexible_toggle',''),(259812,41507,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(259813,41507,'blocks_4_acfe_flexible_layout_title','Template'),(259814,41507,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(259815,41507,'blocks_4_template','39207'),(259816,41507,'_blocks_4_template','field_617bdd570fe01'),(259817,41507,'blocks_6_acfe_flexible_toggle',''),(259818,41507,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(259819,41507,'blocks_6_acfe_flexible_layout_title','Icons'),(259820,41507,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(259821,41507,'blocks_6_options_theme','#f5f5f5'),(259822,41507,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(259823,41507,'blocks_6_options_format','stacked'),(259824,41507,'_blocks_6_options_format','field_64bfde9a90690'),(259825,41507,'blocks_6_options',''),(259826,41507,'_blocks_6_options','field_64bfdd9b90684'),(259827,41507,'blocks_6_row_content_title','Options available to pay for your course'),(259828,41507,'_blocks_6_row_content_title','field_64bfdd9b90687'),(259829,41507,'blocks_6_row_content_heading','Fees & Funding Options '),(259830,41507,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(259831,41507,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(259832,41507,'_blocks_6_row_content_text','field_64bfdd9b90689'),(259833,41507,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(259834,41507,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(259835,41507,'blocks_6_row_content_actions','1'),(259836,41507,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(259837,41507,'blocks_6_row_content',''),(259838,41507,'_blocks_6_row_content','field_64bfdd9b90686'),(259839,41507,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(259840,41507,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(259841,41507,'blocks_6_icon_row_items_0_label','Pay in full'),(259842,41507,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(259843,41507,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(259844,41507,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(259845,41507,'blocks_6_icon_row_items_1_icon','finance.svg'),(259846,41507,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(259847,41507,'blocks_6_icon_row_items_1_label','0% finance'),(259848,41507,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(259849,41507,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(259850,41507,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(259851,41507,'blocks_6_icon_row_items','3'),(259852,41507,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(259853,41507,'blocks_7_acfe_flexible_toggle',''),(259854,41507,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(259855,41507,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(259856,41507,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(259857,41507,'blocks_7_options_theme','#ffffff'),(259858,41507,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(259859,41507,'blocks_7_options_reverse','0'),(259860,41507,'_blocks_7_options_reverse','field_61768049bb8ac'),(259861,41507,'blocks_7_options',''),(259862,41507,'_blocks_7_options','field_617682517c334'),(259863,41507,'blocks_7_split_5050_image','41483'),(259864,41507,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(259865,41507,'blocks_7_split_5050_video',''),(259866,41507,'_blocks_7_split_5050_video','field_6239f3160848a'),(259867,41507,'blocks_7_split_5050_content_title',''),(259868,41507,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(259869,41507,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(259870,41507,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(259871,41507,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(259872,41507,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(259873,41507,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(259874,41507,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(259875,41507,'blocks_7_split_5050_content_actions','1'),(259876,41507,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(259877,41507,'blocks_7_split_5050_content',''),(259878,41507,'_blocks_7_split_5050_content','field_61767afceb8ba'),(259879,41507,'blocks_8_acfe_flexible_toggle',''),(259880,41507,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(259881,41507,'blocks_8_acfe_flexible_layout_title','Icons'),(259882,41507,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(259883,41507,'blocks_8_options_theme','#f5f5f5'),(259884,41507,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(259885,41507,'blocks_8_options_format','row'),(259886,41507,'_blocks_8_options_format','field_64bfde9a90690'),(259887,41507,'blocks_8_options',''),(259888,41507,'_blocks_8_options','field_64bfdd9b90684'),(259889,41507,'blocks_8_icon_row_items_0_icon','qualification.svg'),(259890,41507,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(259891,41507,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(259892,41507,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(259893,41507,'blocks_8_icon_row_items_0_text',''),(259894,41507,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(259895,41507,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(259896,41507,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(259897,41507,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(259898,41507,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(259899,41507,'blocks_8_icon_row_items_1_text',''),(259900,41507,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(259901,41507,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(259902,41507,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(259903,41507,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(259904,41507,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(259905,41507,'blocks_8_icon_row_items_2_text',''),(259906,41507,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(259907,41507,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(259908,41507,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(259909,41507,'blocks_8_icon_row_items_3_label','Flexible funding options'),(259910,41507,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(259911,41507,'blocks_8_icon_row_items_3_text',''),(259912,41507,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(259913,41507,'blocks_8_icon_row_items','4'),(259914,41507,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(259915,41507,'blocks_9_acfe_flexible_toggle',''),(259916,41507,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(259917,41507,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(259918,41507,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(259919,41507,'blocks_9_options_theme','#ffffff'),(259920,41507,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(259921,41507,'blocks_9_options_reverse','1'),(259922,41507,'_blocks_9_options_reverse','field_61768049bb8ac'),(259923,41507,'blocks_9_options',''),(259924,41507,'_blocks_9_options','field_617682517c334'),(259925,41507,'blocks_9_split_5050_image','39224'),(259926,41507,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(259927,41507,'blocks_9_split_5050_video',''),(259928,41507,'_blocks_9_split_5050_video','field_6239f3160848a'),(259929,41507,'blocks_9_split_5050_content_title','Locations'),(259930,41507,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(259931,41507,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(259932,41507,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(259933,41507,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(259934,41507,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(259935,41507,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(259936,41507,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(259937,41507,'blocks_9_split_5050_content_actions','1'),(259938,41507,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(259939,41507,'blocks_9_split_5050_content',''),(259940,41507,'_blocks_9_split_5050_content','field_61767afceb8ba'),(259941,41507,'blocks_1_acfe_flexible_toggle',''),(259942,41507,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(259943,41507,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(259944,41507,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(259945,41507,'blocks_1_options_theme','#ffffff'),(259946,41507,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(259947,41507,'blocks_1_options_reverse','0'),(259948,41507,'_blocks_1_options_reverse','field_61768049bb8ac'),(259949,41507,'blocks_1_options',''),(259950,41507,'_blocks_1_options','field_617682517c334'),(259951,41507,'blocks_1_split_5050_image','41484'),(259952,41507,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(259953,41507,'blocks_1_split_5050_video',''),(259954,41507,'_blocks_1_split_5050_video','field_6239f3160848a'),(259955,41507,'blocks_1_split_5050_content_title',''),(259956,41507,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(259957,41507,'blocks_1_split_5050_content_heading','Course Overview'),(259958,41507,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(259959,41507,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(259960,41507,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(259961,41507,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(259962,41507,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(259963,41507,'blocks_1_split_5050_content_actions','1'),(259964,41507,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(259965,41507,'blocks_1_split_5050_content',''),(259966,41507,'_blocks_1_split_5050_content','field_61767afceb8ba'),(259967,41507,'blocks_2_acfe_flexible_toggle',''),(259968,41507,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(259969,41507,'blocks_2_acfe_flexible_layout_title','Form'),(259970,41507,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(259971,41507,'blocks_2_row_content_format','standard'),(259972,41507,'_blocks_2_row_content_format','field_6481ead962881'),(259973,41507,'blocks_2_row_content_title',''),(259974,41507,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(259975,41507,'blocks_2_row_content_heading','Enquire Today'),(259976,41507,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(259977,41507,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(259978,41507,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(259979,41507,'blocks_2_row_content_actions',''),(259980,41507,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(259981,41507,'blocks_2_row_content',''),(259982,41507,'_blocks_2_row_content','field_61a0f5f5b3db0'),(259983,41507,'blocks_2_row_form','40394'),(259984,41507,'_blocks_2_row_form','field_61a4ff2c0b08e'),(259985,41507,'blocks_2_row_form_button_label',''),(259986,41507,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(259987,41507,'blocks_3_acfe_flexible_toggle',''),(259988,41507,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(259989,41507,'blocks_3_acfe_flexible_layout_title','Video'),(259990,41507,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(259991,41507,'blocks_3_size','large'),(259992,41507,'_blocks_3_size','field_6487038f297c1'),(259993,41507,'blocks_3_row_content_title',''),(259994,41507,'_blocks_3_row_content_title','field_64870132a865d'),(259995,41507,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(259996,41507,'_blocks_3_row_content_heading','field_64870142a865e'),(259997,41507,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(259998,41507,'_blocks_3_row_content_text','field_64870148a865f'),(259999,41507,'blocks_3_row_content',''),(260000,41507,'_blocks_3_row_content','field_6487008ba865c'),(260001,41507,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(260002,41507,'_blocks_3_video_src','field_6193c4a98ec07'),(260003,41507,'blocks_3_video_thumbnail',''),(260004,41507,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(260005,41507,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(260006,41507,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(260007,41507,'blocks_6_icon_row_items_2_label','Deposit & balance'),(260008,41507,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(260009,41507,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(260010,41507,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(260011,41507,'blocks_10_acfe_flexible_toggle','1'),(260012,41507,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(260013,41507,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(260014,41507,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(260015,41507,'blocks_10_options_theme','#ffffff'),(260016,41507,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(260017,41507,'blocks_10_options',''),(260018,41507,'_blocks_10_options','field_617ac0b7f6c08'),(260019,41507,'blocks_10_show','selection'),(260020,41507,'_blocks_10_show','field_61a49cba9d946'),(260021,41507,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(260022,41507,'_blocks_10_courses','field_61b244781ee0a'),(260023,41507,'blocks_10_open_whats_included','1'),(260024,41507,'_blocks_10_open_whats_included','field_66ebfd679450c'),(260025,41507,'blocks_10_open_key_information','0'),(260026,41507,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(260027,41507,'blocks_10_open',''),(260028,41507,'_blocks_10_open','field_66ebfd009450b'),(260029,41507,'blocks_11_acfe_flexible_toggle',''),(260030,41507,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(260031,41507,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(260032,41507,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(260033,41507,'blocks_11_options_theme','#ffffff'),(260034,41507,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(260035,41507,'blocks_11_options_reverse','0'),(260036,41507,'_blocks_11_options_reverse','field_61768049bb8ac'),(260037,41507,'blocks_11_options',''),(260038,41507,'_blocks_11_options','field_617682517c334'),(260039,41507,'blocks_11_split_5050_image','41495'),(260040,41507,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(260041,41507,'blocks_11_split_5050_video',''),(260042,41507,'_blocks_11_split_5050_video','field_6239f3160848a'),(260043,41507,'blocks_11_split_5050_content_title','Optimise Performance '),(260044,41507,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(260045,41507,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(260046,41507,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(260047,41507,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(260048,41507,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(260049,41507,'blocks_11_split_5050_content_actions_0_button',''),(260050,41507,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(260051,41507,'blocks_11_split_5050_content_actions','1'),(260052,41507,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(260053,41507,'blocks_11_split_5050_content',''),(260054,41507,'_blocks_11_split_5050_content','field_61767afceb8ba'),(260055,41507,'blocks_12_acfe_flexible_toggle',''),(260056,41507,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(260057,41507,'blocks_12_acfe_flexible_layout_title','Template'),(260058,41507,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(260059,41507,'blocks_12_template','40987'),(260060,41507,'_blocks_12_template','field_617bdd570fe01'),(260061,41507,'blocks_13_acfe_flexible_toggle',''),(260062,41507,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(260063,41507,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(260064,41507,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(260065,41507,'blocks_13_options_theme','#f5f5f5'),(260066,41507,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(260067,41507,'blocks_13_options_state','0'),(260068,41507,'_blocks_13_options_state','field_6239fcb7508c5'),(260069,41507,'blocks_13_options',''),(260070,41507,'_blocks_13_options','field_6177e2991ac44'),(260071,41507,'blocks_13_content_title',''),(260072,41507,'_blocks_13_content_title','field_64d237e8bb1e2'),(260073,41507,'blocks_13_content_heading','FAQ\'s'),(260074,41507,'_blocks_13_content_heading','field_64d237e8bb1e3'),(260075,41507,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(260076,41507,'_blocks_13_content_text','field_64d237e8bb1e4'),(260077,41507,'blocks_13_content_actions',''),(260078,41507,'_blocks_13_content_actions','field_64d237e8bb1e5'),(260079,41507,'blocks_13_content_align','left'),(260080,41507,'_blocks_13_content_align','field_64d2443e6b6aa'),(260081,41507,'blocks_13_content',''),(260082,41507,'_blocks_13_content','field_64d237e8bb1e1'),(260083,41507,'blocks_13_accordion_content','faqs'),(260084,41507,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(260085,41507,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"41458\";i:14;s:5:\"39027\";}'),(260086,41507,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(260087,41507,'blocks_13_actions',''),(260088,41507,'_blocks_13_actions','field_61a746a817f7a'),(260089,41508,'hide_hero','0'),(260090,41508,'_hide_hero','field_66a2380fcda39'),(260091,41508,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(260092,41508,'_hero_title','field_617571fe285e8'),(260093,41508,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(260094,41508,'_hero_text','field_6175723c285e9'),(260095,41508,'hero_actions','1'),(260096,41508,'_hero_actions','field_61757270285ea'),(260097,41508,'hero_style','default'),(260098,41508,'_hero_style','field_62051d9dc5324'),(260099,41508,'_thumbnail_id','41473'),(260100,41508,'__thumbnail_id','field_617570855ddaf'),(260101,41508,'hero_image_pos_x','right'),(260102,41508,'_hero_image_pos_x','field_62ec3d05390bb'),(260103,41508,'hero_image_pos_y','top'),(260104,41508,'_hero_image_pos_y','field_62ec3d05390bc'),(260105,41508,'hero_image_pos',''),(260106,41508,'_hero_image_pos','field_62ec3d05390ba'),(260107,41508,'fft_hide_from_listings','0'),(260108,41508,'_fft_hide_from_listings','field_61f1320446ab2'),(260109,41508,'fft_page_format','default'),(260110,41508,'_fft_page_format','field_61ae213f1f218'),(260111,41508,'fft_hide_nav','0'),(260112,41508,'_fft_hide_nav','field_635bd5e43527c'),(260113,41508,'fft_hide_header_call_to_action','0'),(260114,41508,'_fft_hide_header_call_to_action','field_635bd6723527d'),(260115,41508,'fft_page_sitemap','0'),(260116,41508,'_fft_page_sitemap','field_61af9b34e8181'),(260117,41508,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(260118,41508,'_blocks','field_6176696113096'),(260119,41508,'course_label_text',''),(260120,41508,'_course_label_text','field_61e17babf71fa'),(260121,41508,'course_label',''),(260122,41508,'_course_label','field_61e12f92749a7'),(260123,41508,'course_description',''),(260124,41508,'_course_description','field_617ac5788e5e1'),(260125,41508,'course_key_info',''),(260126,41508,'_course_key_info','field_617ac6ad8e5e2'),(260127,41508,'course_included',''),(260128,41508,'_course_included','field_617ac6f08e5e4'),(260129,41508,'hero_actions_0_button',''),(260130,41508,'_hero_actions_0_button','field_61757281285eb'),(260131,41508,'blocks_0_acfe_flexible_toggle',''),(260132,41508,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(260133,41508,'blocks_0_acfe_flexible_layout_title','Icons'),(260134,41508,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(260135,41508,'blocks_0_options_theme','#b61234'),(260136,41508,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(260137,41508,'blocks_0_options_format','row'),(260138,41508,'_blocks_0_options_format','field_64bfde9a90690'),(260139,41508,'blocks_0_options',''),(260140,41508,'_blocks_0_options','field_64bfdd9b90684'),(260141,41508,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(260142,41508,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(260143,41508,'blocks_0_icon_row_items_0_label','Accreditation'),(260144,41508,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(260145,41508,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(260146,41508,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(260147,41508,'blocks_0_icon_row_items_1_icon','finance.svg'),(260148,41508,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(260149,41508,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(260150,41508,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(260151,41508,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(260152,41508,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(260153,41508,'blocks_0_icon_row_items_2_icon','progression.svg'),(260154,41508,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(260155,41508,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(260156,41508,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(260157,41508,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(260158,41508,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(260159,41508,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(260160,41508,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(260161,41508,'blocks_0_icon_row_items_3_label','Qualification'),(260162,41508,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(260163,41508,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(260164,41508,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(260165,41508,'blocks_0_icon_row_items','4'),(260166,41508,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(260167,41508,'blocks_5_acfe_flexible_toggle','1'),(260168,41508,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(260169,41508,'blocks_5_acfe_flexible_layout_title','Tabs'),(260170,41508,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(260171,41508,'blocks_5_options_theme','#ffffff'),(260172,41508,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(260173,41508,'blocks_5_options',''),(260174,41508,'_blocks_5_options','field_6177cfcd8140f'),(260175,41508,'blocks_5_tabs_0_tab_label','Entry requirements'),(260176,41508,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(260177,41508,'blocks_5_tabs_0_tab_content_title',''),(260178,41508,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(260179,41508,'blocks_5_tabs_0_tab_content_heading',''),(260180,41508,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(260181,41508,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(260182,41508,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(260183,41508,'blocks_5_tabs_0_tab_content_actions',''),(260184,41508,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(260185,41508,'blocks_5_tabs_0_tab_content',''),(260186,41508,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(260187,41508,'blocks_5_tabs_0_tab_image',''),(260188,41508,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(260189,41508,'blocks_5_tabs_1_tab_label','Learning format'),(260190,41508,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(260191,41508,'blocks_5_tabs_1_tab_content_title',''),(260192,41508,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(260193,41508,'blocks_5_tabs_1_tab_content_heading',''),(260194,41508,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(260195,41508,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(260196,41508,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(260197,41508,'blocks_5_tabs_1_tab_content_actions',''),(260198,41508,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(260199,41508,'blocks_5_tabs_1_tab_content',''),(260200,41508,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(260201,41508,'blocks_5_tabs_1_tab_image',''),(260202,41508,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(260203,41508,'blocks_5_tabs_2_tab_label','Qualifications included'),(260204,41508,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(260205,41508,'blocks_5_tabs_2_tab_content_title',''),(260206,41508,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(260207,41508,'blocks_5_tabs_2_tab_content_heading',''),(260208,41508,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(260209,41508,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(260210,41508,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(260211,41508,'blocks_5_tabs_2_tab_content_actions',''),(260212,41508,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(260213,41508,'blocks_5_tabs_2_tab_content',''),(260214,41508,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(260215,41508,'blocks_5_tabs_2_tab_image',''),(260216,41508,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(260217,41508,'blocks_5_tabs','3'),(260218,41508,'_blocks_5_tabs','field_6177cff281419'),(260219,41508,'blocks_4_acfe_flexible_toggle',''),(260220,41508,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(260221,41508,'blocks_4_acfe_flexible_layout_title','Template'),(260222,41508,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(260223,41508,'blocks_4_template','39207'),(260224,41508,'_blocks_4_template','field_617bdd570fe01'),(260225,41508,'blocks_6_acfe_flexible_toggle',''),(260226,41508,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(260227,41508,'blocks_6_acfe_flexible_layout_title','Icons'),(260228,41508,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(260229,41508,'blocks_6_options_theme','#f5f5f5'),(260230,41508,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(260231,41508,'blocks_6_options_format','stacked'),(260232,41508,'_blocks_6_options_format','field_64bfde9a90690'),(260233,41508,'blocks_6_options',''),(260234,41508,'_blocks_6_options','field_64bfdd9b90684'),(260235,41508,'blocks_6_row_content_title','Options available to pay for your course'),(260236,41508,'_blocks_6_row_content_title','field_64bfdd9b90687'),(260237,41508,'blocks_6_row_content_heading','Fees & Funding Options '),(260238,41508,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(260239,41508,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(260240,41508,'_blocks_6_row_content_text','field_64bfdd9b90689'),(260241,41508,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(260242,41508,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(260243,41508,'blocks_6_row_content_actions','1'),(260244,41508,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(260245,41508,'blocks_6_row_content',''),(260246,41508,'_blocks_6_row_content','field_64bfdd9b90686'),(260247,41508,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(260248,41508,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(260249,41508,'blocks_6_icon_row_items_0_label','Pay in full'),(260250,41508,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(260251,41508,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(260252,41508,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(260253,41508,'blocks_6_icon_row_items_1_icon','finance.svg'),(260254,41508,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(260255,41508,'blocks_6_icon_row_items_1_label','0% finance'),(260256,41508,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(260257,41508,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(260258,41508,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(260259,41508,'blocks_6_icon_row_items','3'),(260260,41508,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(260261,41508,'blocks_7_acfe_flexible_toggle',''),(260262,41508,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(260263,41508,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(260264,41508,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(260265,41508,'blocks_7_options_theme','#ffffff'),(260266,41508,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(260267,41508,'blocks_7_options_reverse','0'),(260268,41508,'_blocks_7_options_reverse','field_61768049bb8ac'),(260269,41508,'blocks_7_options',''),(260270,41508,'_blocks_7_options','field_617682517c334'),(260271,41508,'blocks_7_split_5050_image','41483'),(260272,41508,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(260273,41508,'blocks_7_split_5050_video',''),(260274,41508,'_blocks_7_split_5050_video','field_6239f3160848a'),(260275,41508,'blocks_7_split_5050_content_title',''),(260276,41508,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(260277,41508,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(260278,41508,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(260279,41508,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(260280,41508,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(260281,41508,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(260282,41508,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(260283,41508,'blocks_7_split_5050_content_actions','1'),(260284,41508,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(260285,41508,'blocks_7_split_5050_content',''),(260286,41508,'_blocks_7_split_5050_content','field_61767afceb8ba'),(260287,41508,'blocks_8_acfe_flexible_toggle',''),(260288,41508,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(260289,41508,'blocks_8_acfe_flexible_layout_title','Icons'),(260290,41508,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(260291,41508,'blocks_8_options_theme','#f5f5f5'),(260292,41508,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(260293,41508,'blocks_8_options_format','row'),(260294,41508,'_blocks_8_options_format','field_64bfde9a90690'),(260295,41508,'blocks_8_options',''),(260296,41508,'_blocks_8_options','field_64bfdd9b90684'),(260297,41508,'blocks_8_icon_row_items_0_icon','qualification.svg'),(260298,41508,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(260299,41508,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(260300,41508,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(260301,41508,'blocks_8_icon_row_items_0_text',''),(260302,41508,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(260303,41508,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(260304,41508,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(260305,41508,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(260306,41508,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(260307,41508,'blocks_8_icon_row_items_1_text',''),(260308,41508,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(260309,41508,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(260310,41508,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(260311,41508,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(260312,41508,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(260313,41508,'blocks_8_icon_row_items_2_text',''),(260314,41508,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(260315,41508,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(260316,41508,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(260317,41508,'blocks_8_icon_row_items_3_label','Flexible funding options'),(260318,41508,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(260319,41508,'blocks_8_icon_row_items_3_text',''),(260320,41508,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(260321,41508,'blocks_8_icon_row_items','4'),(260322,41508,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(260323,41508,'blocks_9_acfe_flexible_toggle',''),(260324,41508,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(260325,41508,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(260326,41508,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(260327,41508,'blocks_9_options_theme','#ffffff'),(260328,41508,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(260329,41508,'blocks_9_options_reverse','1'),(260330,41508,'_blocks_9_options_reverse','field_61768049bb8ac'),(260331,41508,'blocks_9_options',''),(260332,41508,'_blocks_9_options','field_617682517c334'),(260333,41508,'blocks_9_split_5050_image','39224'),(260334,41508,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(260335,41508,'blocks_9_split_5050_video',''),(260336,41508,'_blocks_9_split_5050_video','field_6239f3160848a'),(260337,41508,'blocks_9_split_5050_content_title','Locations'),(260338,41508,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(260339,41508,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(260340,41508,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(260341,41508,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(260342,41508,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(260343,41508,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(260344,41508,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(260345,41508,'blocks_9_split_5050_content_actions','1'),(260346,41508,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(260347,41508,'blocks_9_split_5050_content',''),(260348,41508,'_blocks_9_split_5050_content','field_61767afceb8ba'),(260349,41508,'blocks_1_acfe_flexible_toggle',''),(260350,41508,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(260351,41508,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(260352,41508,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(260353,41508,'blocks_1_options_theme','#ffffff'),(260354,41508,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(260355,41508,'blocks_1_options_reverse','0'),(260356,41508,'_blocks_1_options_reverse','field_61768049bb8ac'),(260357,41508,'blocks_1_options',''),(260358,41508,'_blocks_1_options','field_617682517c334'),(260359,41508,'blocks_1_split_5050_image','41484'),(260360,41508,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(260361,41508,'blocks_1_split_5050_video',''),(260362,41508,'_blocks_1_split_5050_video','field_6239f3160848a'),(260363,41508,'blocks_1_split_5050_content_title',''),(260364,41508,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(260365,41508,'blocks_1_split_5050_content_heading','Course Overview'),(260366,41508,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(260367,41508,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(260368,41508,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(260369,41508,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(260370,41508,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(260371,41508,'blocks_1_split_5050_content_actions','1'),(260372,41508,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(260373,41508,'blocks_1_split_5050_content',''),(260374,41508,'_blocks_1_split_5050_content','field_61767afceb8ba'),(260375,41508,'blocks_2_acfe_flexible_toggle',''),(260376,41508,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(260377,41508,'blocks_2_acfe_flexible_layout_title','Form'),(260378,41508,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(260379,41508,'blocks_2_row_content_format','standard'),(260380,41508,'_blocks_2_row_content_format','field_6481ead962881'),(260381,41508,'blocks_2_row_content_title',''),(260382,41508,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(260383,41508,'blocks_2_row_content_heading','Enquire Today'),(260384,41508,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(260385,41508,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(260386,41508,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(260387,41508,'blocks_2_row_content_actions',''),(260388,41508,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(260389,41508,'blocks_2_row_content',''),(260390,41508,'_blocks_2_row_content','field_61a0f5f5b3db0'),(260391,41508,'blocks_2_row_form','40394'),(260392,41508,'_blocks_2_row_form','field_61a4ff2c0b08e'),(260393,41508,'blocks_2_row_form_button_label',''),(260394,41508,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(260395,41508,'blocks_3_acfe_flexible_toggle',''),(260396,41508,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(260397,41508,'blocks_3_acfe_flexible_layout_title','Video'),(260398,41508,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(260399,41508,'blocks_3_size','large'),(260400,41508,'_blocks_3_size','field_6487038f297c1'),(260401,41508,'blocks_3_row_content_title',''),(260402,41508,'_blocks_3_row_content_title','field_64870132a865d'),(260403,41508,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(260404,41508,'_blocks_3_row_content_heading','field_64870142a865e'),(260405,41508,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(260406,41508,'_blocks_3_row_content_text','field_64870148a865f'),(260407,41508,'blocks_3_row_content',''),(260408,41508,'_blocks_3_row_content','field_6487008ba865c'),(260409,41508,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(260410,41508,'_blocks_3_video_src','field_6193c4a98ec07'),(260411,41508,'blocks_3_video_thumbnail',''),(260412,41508,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(260413,41508,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(260414,41508,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(260415,41508,'blocks_6_icon_row_items_2_label','Deposit & balance'),(260416,41508,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(260417,41508,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(260418,41508,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(260419,41508,'blocks_10_acfe_flexible_toggle','1'),(260420,41508,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(260421,41508,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(260422,41508,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(260423,41508,'blocks_10_options_theme','#ffffff'),(260424,41508,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(260425,41508,'blocks_10_options',''),(260426,41508,'_blocks_10_options','field_617ac0b7f6c08'),(260427,41508,'blocks_10_show','selection'),(260428,41508,'_blocks_10_show','field_61a49cba9d946'),(260429,41508,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(260430,41508,'_blocks_10_courses','field_61b244781ee0a'),(260431,41508,'blocks_10_open_whats_included','1'),(260432,41508,'_blocks_10_open_whats_included','field_66ebfd679450c'),(260433,41508,'blocks_10_open_key_information','0'),(260434,41508,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(260435,41508,'blocks_10_open',''),(260436,41508,'_blocks_10_open','field_66ebfd009450b'),(260437,41508,'blocks_11_acfe_flexible_toggle',''),(260438,41508,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(260439,41508,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(260440,41508,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(260441,41508,'blocks_11_options_theme','#ffffff'),(260442,41508,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(260443,41508,'blocks_11_options_reverse','0'),(260444,41508,'_blocks_11_options_reverse','field_61768049bb8ac'),(260445,41508,'blocks_11_options',''),(260446,41508,'_blocks_11_options','field_617682517c334'),(260447,41508,'blocks_11_split_5050_image','41495'),(260448,41508,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(260449,41508,'blocks_11_split_5050_video',''),(260450,41508,'_blocks_11_split_5050_video','field_6239f3160848a'),(260451,41508,'blocks_11_split_5050_content_title','Optimise Performance '),(260452,41508,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(260453,41508,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(260454,41508,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(260455,41508,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(260456,41508,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(260457,41508,'blocks_11_split_5050_content_actions_0_button',''),(260458,41508,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(260459,41508,'blocks_11_split_5050_content_actions','1'),(260460,41508,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(260461,41508,'blocks_11_split_5050_content',''),(260462,41508,'_blocks_11_split_5050_content','field_61767afceb8ba'),(260463,41508,'blocks_12_acfe_flexible_toggle',''),(260464,41508,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(260465,41508,'blocks_12_acfe_flexible_layout_title','Template'),(260466,41508,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(260467,41508,'blocks_12_template','40987'),(260468,41508,'_blocks_12_template','field_617bdd570fe01'),(260469,41508,'blocks_13_acfe_flexible_toggle',''),(260470,41508,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(260471,41508,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(260472,41508,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(260473,41508,'blocks_13_options_theme','#f5f5f5'),(260474,41508,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(260475,41508,'blocks_13_options_state','0'),(260476,41508,'_blocks_13_options_state','field_6239fcb7508c5'),(260477,41508,'blocks_13_options',''),(260478,41508,'_blocks_13_options','field_6177e2991ac44'),(260479,41508,'blocks_13_content_title',''),(260480,41508,'_blocks_13_content_title','field_64d237e8bb1e2'),(260481,41508,'blocks_13_content_heading','FAQ\'s'),(260482,41508,'_blocks_13_content_heading','field_64d237e8bb1e3'),(260483,41508,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(260484,41508,'_blocks_13_content_text','field_64d237e8bb1e4'),(260485,41508,'blocks_13_content_actions',''),(260486,41508,'_blocks_13_content_actions','field_64d237e8bb1e5'),(260487,41508,'blocks_13_content_align','left'),(260488,41508,'_blocks_13_content_align','field_64d2443e6b6aa'),(260489,41508,'blocks_13_content',''),(260490,41508,'_blocks_13_content','field_64d237e8bb1e1'),(260491,41508,'blocks_13_accordion_content','faqs'),(260492,41508,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(260493,41508,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"41458\";i:14;s:5:\"39027\";}'),(260494,41508,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(260495,41508,'blocks_13_actions',''),(260496,41508,'_blocks_13_actions','field_61a746a817f7a'),(260497,41509,'hide_hero','0'),(260498,41509,'_hide_hero','field_66a2380fcda39'),(260499,41509,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(260500,41509,'_hero_title','field_617571fe285e8'),(260501,41509,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(260502,41509,'_hero_text','field_6175723c285e9'),(260503,41509,'hero_actions','1'),(260504,41509,'_hero_actions','field_61757270285ea'),(260505,41509,'hero_style','default'),(260506,41509,'_hero_style','field_62051d9dc5324'),(260507,41509,'_thumbnail_id','41473'),(260508,41509,'__thumbnail_id','field_617570855ddaf'),(260509,41509,'hero_image_pos_x','right'),(260510,41509,'_hero_image_pos_x','field_62ec3d05390bb'),(260511,41509,'hero_image_pos_y','top'),(260512,41509,'_hero_image_pos_y','field_62ec3d05390bc'),(260513,41509,'hero_image_pos',''),(260514,41509,'_hero_image_pos','field_62ec3d05390ba'),(260515,41509,'fft_hide_from_listings','0'),(260516,41509,'_fft_hide_from_listings','field_61f1320446ab2'),(260517,41509,'fft_page_format','default'),(260518,41509,'_fft_page_format','field_61ae213f1f218'),(260519,41509,'fft_hide_nav','0'),(260520,41509,'_fft_hide_nav','field_635bd5e43527c'),(260521,41509,'fft_hide_header_call_to_action','0'),(260522,41509,'_fft_hide_header_call_to_action','field_635bd6723527d'),(260523,41509,'fft_page_sitemap','0'),(260524,41509,'_fft_page_sitemap','field_61af9b34e8181'),(260525,41509,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(260526,41509,'_blocks','field_6176696113096'),(260527,41509,'course_label_text',''),(260528,41509,'_course_label_text','field_61e17babf71fa'),(260529,41509,'course_label',''),(260530,41509,'_course_label','field_61e12f92749a7'),(260531,41509,'course_description',''),(260532,41509,'_course_description','field_617ac5788e5e1'),(260533,41509,'course_key_info',''),(260534,41509,'_course_key_info','field_617ac6ad8e5e2'),(260535,41509,'course_included',''),(260536,41509,'_course_included','field_617ac6f08e5e4'),(260537,41509,'hero_actions_0_button',''),(260538,41509,'_hero_actions_0_button','field_61757281285eb'),(260539,41509,'blocks_0_acfe_flexible_toggle',''),(260540,41509,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(260541,41509,'blocks_0_acfe_flexible_layout_title','Icons'),(260542,41509,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(260543,41509,'blocks_0_options_theme','#b61234'),(260544,41509,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(260545,41509,'blocks_0_options_format','row'),(260546,41509,'_blocks_0_options_format','field_64bfde9a90690'),(260547,41509,'blocks_0_options',''),(260548,41509,'_blocks_0_options','field_64bfdd9b90684'),(260549,41509,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(260550,41509,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(260551,41509,'blocks_0_icon_row_items_0_label','Accreditation'),(260552,41509,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(260553,41509,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(260554,41509,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(260555,41509,'blocks_0_icon_row_items_1_icon','finance.svg'),(260556,41509,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(260557,41509,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(260558,41509,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(260559,41509,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(260560,41509,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(260561,41509,'blocks_0_icon_row_items_2_icon','progression.svg'),(260562,41509,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(260563,41509,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(260564,41509,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(260565,41509,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(260566,41509,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(260567,41509,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(260568,41509,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(260569,41509,'blocks_0_icon_row_items_3_label','Qualification'),(260570,41509,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(260571,41509,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(260572,41509,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(260573,41509,'blocks_0_icon_row_items','4'),(260574,41509,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(260575,41509,'blocks_5_acfe_flexible_toggle','1'),(260576,41509,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(260577,41509,'blocks_5_acfe_flexible_layout_title','Tabs'),(260578,41509,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(260579,41509,'blocks_5_options_theme','#ffffff'),(260580,41509,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(260581,41509,'blocks_5_options',''),(260582,41509,'_blocks_5_options','field_6177cfcd8140f'),(260583,41509,'blocks_5_tabs_0_tab_label','Entry requirements'),(260584,41509,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(260585,41509,'blocks_5_tabs_0_tab_content_title',''),(260586,41509,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(260587,41509,'blocks_5_tabs_0_tab_content_heading',''),(260588,41509,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(260589,41509,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(260590,41509,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(260591,41509,'blocks_5_tabs_0_tab_content_actions',''),(260592,41509,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(260593,41509,'blocks_5_tabs_0_tab_content',''),(260594,41509,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(260595,41509,'blocks_5_tabs_0_tab_image',''),(260596,41509,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(260597,41509,'blocks_5_tabs_1_tab_label','Learning format'),(260598,41509,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(260599,41509,'blocks_5_tabs_1_tab_content_title',''),(260600,41509,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(260601,41509,'blocks_5_tabs_1_tab_content_heading',''),(260602,41509,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(260603,41509,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(260604,41509,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(260605,41509,'blocks_5_tabs_1_tab_content_actions',''),(260606,41509,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(260607,41509,'blocks_5_tabs_1_tab_content',''),(260608,41509,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(260609,41509,'blocks_5_tabs_1_tab_image',''),(260610,41509,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(260611,41509,'blocks_5_tabs_2_tab_label','Qualifications included'),(260612,41509,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(260613,41509,'blocks_5_tabs_2_tab_content_title',''),(260614,41509,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(260615,41509,'blocks_5_tabs_2_tab_content_heading',''),(260616,41509,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(260617,41509,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(260618,41509,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(260619,41509,'blocks_5_tabs_2_tab_content_actions',''),(260620,41509,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(260621,41509,'blocks_5_tabs_2_tab_content',''),(260622,41509,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(260623,41509,'blocks_5_tabs_2_tab_image',''),(260624,41509,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(260625,41509,'blocks_5_tabs','3'),(260626,41509,'_blocks_5_tabs','field_6177cff281419'),(260627,41509,'blocks_4_acfe_flexible_toggle',''),(260628,41509,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(260629,41509,'blocks_4_acfe_flexible_layout_title','Template'),(260630,41509,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(260631,41509,'blocks_4_template','39207'),(260632,41509,'_blocks_4_template','field_617bdd570fe01'),(260633,41509,'blocks_6_acfe_flexible_toggle',''),(260634,41509,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(260635,41509,'blocks_6_acfe_flexible_layout_title','Icons'),(260636,41509,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(260637,41509,'blocks_6_options_theme','#f5f5f5'),(260638,41509,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(260639,41509,'blocks_6_options_format','stacked'),(260640,41509,'_blocks_6_options_format','field_64bfde9a90690'),(260641,41509,'blocks_6_options',''),(260642,41509,'_blocks_6_options','field_64bfdd9b90684'),(260643,41509,'blocks_6_row_content_title','Options available to pay for your course'),(260644,41509,'_blocks_6_row_content_title','field_64bfdd9b90687'),(260645,41509,'blocks_6_row_content_heading','Fees & Funding Options '),(260646,41509,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(260647,41509,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(260648,41509,'_blocks_6_row_content_text','field_64bfdd9b90689'),(260649,41509,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(260650,41509,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(260651,41509,'blocks_6_row_content_actions','1'),(260652,41509,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(260653,41509,'blocks_6_row_content',''),(260654,41509,'_blocks_6_row_content','field_64bfdd9b90686'),(260655,41509,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(260656,41509,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(260657,41509,'blocks_6_icon_row_items_0_label','Pay in full'),(260658,41509,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(260659,41509,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(260660,41509,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(260661,41509,'blocks_6_icon_row_items_1_icon','finance.svg'),(260662,41509,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(260663,41509,'blocks_6_icon_row_items_1_label','0% finance'),(260664,41509,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(260665,41509,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(260666,41509,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(260667,41509,'blocks_6_icon_row_items','3'),(260668,41509,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(260669,41509,'blocks_7_acfe_flexible_toggle',''),(260670,41509,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(260671,41509,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(260672,41509,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(260673,41509,'blocks_7_options_theme','#ffffff'),(260674,41509,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(260675,41509,'blocks_7_options_reverse','0'),(260676,41509,'_blocks_7_options_reverse','field_61768049bb8ac'),(260677,41509,'blocks_7_options',''),(260678,41509,'_blocks_7_options','field_617682517c334'),(260679,41509,'blocks_7_split_5050_image','41483'),(260680,41509,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(260681,41509,'blocks_7_split_5050_video',''),(260682,41509,'_blocks_7_split_5050_video','field_6239f3160848a'),(260683,41509,'blocks_7_split_5050_content_title',''),(260684,41509,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(260685,41509,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(260686,41509,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(260687,41509,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(260688,41509,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(260689,41509,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(260690,41509,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(260691,41509,'blocks_7_split_5050_content_actions','1'),(260692,41509,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(260693,41509,'blocks_7_split_5050_content',''),(260694,41509,'_blocks_7_split_5050_content','field_61767afceb8ba'),(260695,41509,'blocks_8_acfe_flexible_toggle',''),(260696,41509,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(260697,41509,'blocks_8_acfe_flexible_layout_title','Icons'),(260698,41509,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(260699,41509,'blocks_8_options_theme','#f5f5f5'),(260700,41509,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(260701,41509,'blocks_8_options_format','row'),(260702,41509,'_blocks_8_options_format','field_64bfde9a90690'),(260703,41509,'blocks_8_options',''),(260704,41509,'_blocks_8_options','field_64bfdd9b90684'),(260705,41509,'blocks_8_icon_row_items_0_icon','qualification.svg'),(260706,41509,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(260707,41509,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(260708,41509,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(260709,41509,'blocks_8_icon_row_items_0_text',''),(260710,41509,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(260711,41509,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(260712,41509,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(260713,41509,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(260714,41509,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(260715,41509,'blocks_8_icon_row_items_1_text',''),(260716,41509,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(260717,41509,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(260718,41509,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(260719,41509,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(260720,41509,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(260721,41509,'blocks_8_icon_row_items_2_text',''),(260722,41509,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(260723,41509,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(260724,41509,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(260725,41509,'blocks_8_icon_row_items_3_label','Flexible funding options'),(260726,41509,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(260727,41509,'blocks_8_icon_row_items_3_text',''),(260728,41509,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(260729,41509,'blocks_8_icon_row_items','4'),(260730,41509,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(260731,41509,'blocks_9_acfe_flexible_toggle',''),(260732,41509,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(260733,41509,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(260734,41509,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(260735,41509,'blocks_9_options_theme','#ffffff'),(260736,41509,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(260737,41509,'blocks_9_options_reverse','1'),(260738,41509,'_blocks_9_options_reverse','field_61768049bb8ac'),(260739,41509,'blocks_9_options',''),(260740,41509,'_blocks_9_options','field_617682517c334'),(260741,41509,'blocks_9_split_5050_image','39224'),(260742,41509,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(260743,41509,'blocks_9_split_5050_video',''),(260744,41509,'_blocks_9_split_5050_video','field_6239f3160848a'),(260745,41509,'blocks_9_split_5050_content_title','Locations'),(260746,41509,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(260747,41509,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(260748,41509,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(260749,41509,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(260750,41509,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(260751,41509,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(260752,41509,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(260753,41509,'blocks_9_split_5050_content_actions','1'),(260754,41509,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(260755,41509,'blocks_9_split_5050_content',''),(260756,41509,'_blocks_9_split_5050_content','field_61767afceb8ba'),(260757,41509,'blocks_1_acfe_flexible_toggle',''),(260758,41509,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(260759,41509,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(260760,41509,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(260761,41509,'blocks_1_options_theme','#ffffff'),(260762,41509,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(260763,41509,'blocks_1_options_reverse','0'),(260764,41509,'_blocks_1_options_reverse','field_61768049bb8ac'),(260765,41509,'blocks_1_options',''),(260766,41509,'_blocks_1_options','field_617682517c334'),(260767,41509,'blocks_1_split_5050_image','41484'),(260768,41509,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(260769,41509,'blocks_1_split_5050_video',''),(260770,41509,'_blocks_1_split_5050_video','field_6239f3160848a'),(260771,41509,'blocks_1_split_5050_content_title',''),(260772,41509,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(260773,41509,'blocks_1_split_5050_content_heading','Course Overview'),(260774,41509,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(260775,41509,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(260776,41509,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(260777,41509,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(260778,41509,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(260779,41509,'blocks_1_split_5050_content_actions','1'),(260780,41509,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(260781,41509,'blocks_1_split_5050_content',''),(260782,41509,'_blocks_1_split_5050_content','field_61767afceb8ba'),(260783,41509,'blocks_2_acfe_flexible_toggle',''),(260784,41509,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(260785,41509,'blocks_2_acfe_flexible_layout_title','Form'),(260786,41509,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(260787,41509,'blocks_2_row_content_format','standard'),(260788,41509,'_blocks_2_row_content_format','field_6481ead962881'),(260789,41509,'blocks_2_row_content_title',''),(260790,41509,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(260791,41509,'blocks_2_row_content_heading','Enquire Today'),(260792,41509,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(260793,41509,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(260794,41509,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(260795,41509,'blocks_2_row_content_actions',''),(260796,41509,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(260797,41509,'blocks_2_row_content',''),(260798,41509,'_blocks_2_row_content','field_61a0f5f5b3db0'),(260799,41509,'blocks_2_row_form','40394'),(260800,41509,'_blocks_2_row_form','field_61a4ff2c0b08e'),(260801,41509,'blocks_2_row_form_button_label',''),(260802,41509,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(260803,41509,'blocks_3_acfe_flexible_toggle',''),(260804,41509,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(260805,41509,'blocks_3_acfe_flexible_layout_title','Video'),(260806,41509,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(260807,41509,'blocks_3_size','large'),(260808,41509,'_blocks_3_size','field_6487038f297c1'),(260809,41509,'blocks_3_row_content_title',''),(260810,41509,'_blocks_3_row_content_title','field_64870132a865d'),(260811,41509,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(260812,41509,'_blocks_3_row_content_heading','field_64870142a865e'),(260813,41509,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(260814,41509,'_blocks_3_row_content_text','field_64870148a865f'),(260815,41509,'blocks_3_row_content',''),(260816,41509,'_blocks_3_row_content','field_6487008ba865c'),(260817,41509,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(260818,41509,'_blocks_3_video_src','field_6193c4a98ec07'),(260819,41509,'blocks_3_video_thumbnail',''),(260820,41509,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(260821,41509,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(260822,41509,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(260823,41509,'blocks_6_icon_row_items_2_label','Deposit & balance'),(260824,41509,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(260825,41509,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(260826,41509,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(260827,41509,'blocks_10_acfe_flexible_toggle','1'),(260828,41509,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(260829,41509,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(260830,41509,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(260831,41509,'blocks_10_options_theme','#ffffff'),(260832,41509,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(260833,41509,'blocks_10_options',''),(260834,41509,'_blocks_10_options','field_617ac0b7f6c08'),(260835,41509,'blocks_10_show','selection'),(260836,41509,'_blocks_10_show','field_61a49cba9d946'),(260837,41509,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(260838,41509,'_blocks_10_courses','field_61b244781ee0a'),(260839,41509,'blocks_10_open_whats_included','1'),(260840,41509,'_blocks_10_open_whats_included','field_66ebfd679450c'),(260841,41509,'blocks_10_open_key_information','0'),(260842,41509,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(260843,41509,'blocks_10_open',''),(260844,41509,'_blocks_10_open','field_66ebfd009450b'),(260845,41509,'blocks_11_acfe_flexible_toggle',''),(260846,41509,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(260847,41509,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(260848,41509,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(260849,41509,'blocks_11_options_theme','#ffffff'),(260850,41509,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(260851,41509,'blocks_11_options_reverse','0'),(260852,41509,'_blocks_11_options_reverse','field_61768049bb8ac'),(260853,41509,'blocks_11_options',''),(260854,41509,'_blocks_11_options','field_617682517c334'),(260855,41509,'blocks_11_split_5050_image','41495'),(260856,41509,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(260857,41509,'blocks_11_split_5050_video',''),(260858,41509,'_blocks_11_split_5050_video','field_6239f3160848a'),(260859,41509,'blocks_11_split_5050_content_title','Optimise Performance '),(260860,41509,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(260861,41509,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(260862,41509,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(260863,41509,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(260864,41509,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(260865,41509,'blocks_11_split_5050_content_actions_0_button',''),(260866,41509,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(260867,41509,'blocks_11_split_5050_content_actions','1'),(260868,41509,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(260869,41509,'blocks_11_split_5050_content',''),(260870,41509,'_blocks_11_split_5050_content','field_61767afceb8ba'),(260871,41509,'blocks_12_acfe_flexible_toggle',''),(260872,41509,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(260873,41509,'blocks_12_acfe_flexible_layout_title','Template'),(260874,41509,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(260875,41509,'blocks_12_template','40987'),(260876,41509,'_blocks_12_template','field_617bdd570fe01'),(260877,41509,'blocks_13_acfe_flexible_toggle',''),(260878,41509,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(260879,41509,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(260880,41509,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(260881,41509,'blocks_13_options_theme','#f5f5f5'),(260882,41509,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(260883,41509,'blocks_13_options_state','0'),(260884,41509,'_blocks_13_options_state','field_6239fcb7508c5'),(260885,41509,'blocks_13_options',''),(260886,41509,'_blocks_13_options','field_6177e2991ac44'),(260887,41509,'blocks_13_content_title',''),(260888,41509,'_blocks_13_content_title','field_64d237e8bb1e2'),(260889,41509,'blocks_13_content_heading','FAQ\'s'),(260890,41509,'_blocks_13_content_heading','field_64d237e8bb1e3'),(260891,41509,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(260892,41509,'_blocks_13_content_text','field_64d237e8bb1e4'),(260893,41509,'blocks_13_content_actions',''),(260894,41509,'_blocks_13_content_actions','field_64d237e8bb1e5'),(260895,41509,'blocks_13_content_align','left'),(260896,41509,'_blocks_13_content_align','field_64d2443e6b6aa'),(260897,41509,'blocks_13_content',''),(260898,41509,'_blocks_13_content','field_64d237e8bb1e1'),(260899,41509,'blocks_13_accordion_content','faqs'),(260900,41509,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(260901,41509,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41458\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(260902,41509,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(260903,41509,'blocks_13_actions',''),(260904,41509,'_blocks_13_actions','field_61a746a817f7a'),(260905,41510,'hide_hero','0'),(260906,41510,'_hide_hero','field_66a2380fcda39'),(260907,41510,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(260908,41510,'_hero_title','field_617571fe285e8'),(260909,41510,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(260910,41510,'_hero_text','field_6175723c285e9'),(260911,41510,'hero_actions','1'),(260912,41510,'_hero_actions','field_61757270285ea'),(260913,41510,'hero_style','default'),(260914,41510,'_hero_style','field_62051d9dc5324'),(260915,41510,'_thumbnail_id','41473'),(260916,41510,'__thumbnail_id','field_617570855ddaf'),(260917,41510,'hero_image_pos_x','right'),(260918,41510,'_hero_image_pos_x','field_62ec3d05390bb'),(260919,41510,'hero_image_pos_y','top'),(260920,41510,'_hero_image_pos_y','field_62ec3d05390bc'),(260921,41510,'hero_image_pos',''),(260922,41510,'_hero_image_pos','field_62ec3d05390ba'),(260923,41510,'fft_hide_from_listings','0'),(260924,41510,'_fft_hide_from_listings','field_61f1320446ab2'),(260925,41510,'fft_page_format','default'),(260926,41510,'_fft_page_format','field_61ae213f1f218'),(260927,41510,'fft_hide_nav','0'),(260928,41510,'_fft_hide_nav','field_635bd5e43527c'),(260929,41510,'fft_hide_header_call_to_action','0'),(260930,41510,'_fft_hide_header_call_to_action','field_635bd6723527d'),(260931,41510,'fft_page_sitemap','0'),(260932,41510,'_fft_page_sitemap','field_61af9b34e8181'),(260933,41510,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(260934,41510,'_blocks','field_6176696113096'),(260935,41510,'course_label_text',''),(260936,41510,'_course_label_text','field_61e17babf71fa'),(260937,41510,'course_label',''),(260938,41510,'_course_label','field_61e12f92749a7'),(260939,41510,'course_description',''),(260940,41510,'_course_description','field_617ac5788e5e1'),(260941,41510,'course_key_info',''),(260942,41510,'_course_key_info','field_617ac6ad8e5e2'),(260943,41510,'course_included',''),(260944,41510,'_course_included','field_617ac6f08e5e4'),(260945,41510,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:10:\"#row-41455\";s:6:\"target\";s:0:\"\";}'),(260946,41510,'_hero_actions_0_button','field_61757281285eb'),(260947,41510,'blocks_0_acfe_flexible_toggle',''),(260948,41510,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(260949,41510,'blocks_0_acfe_flexible_layout_title','Icons'),(260950,41510,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(260951,41510,'blocks_0_options_theme','#b61234'),(260952,41510,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(260953,41510,'blocks_0_options_format','row'),(260954,41510,'_blocks_0_options_format','field_64bfde9a90690'),(260955,41510,'blocks_0_options',''),(260956,41510,'_blocks_0_options','field_64bfdd9b90684'),(260957,41510,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(260958,41510,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(260959,41510,'blocks_0_icon_row_items_0_label','Accreditation'),(260960,41510,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(260961,41510,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(260962,41510,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(260963,41510,'blocks_0_icon_row_items_1_icon','finance.svg'),(260964,41510,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(260965,41510,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(260966,41510,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(260967,41510,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(260968,41510,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(260969,41510,'blocks_0_icon_row_items_2_icon','progression.svg'),(260970,41510,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(260971,41510,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(260972,41510,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(260973,41510,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(260974,41510,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(260975,41510,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(260976,41510,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(260977,41510,'blocks_0_icon_row_items_3_label','Qualification'),(260978,41510,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(260979,41510,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(260980,41510,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(260981,41510,'blocks_0_icon_row_items','4'),(260982,41510,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(260983,41510,'blocks_5_acfe_flexible_toggle','1'),(260984,41510,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(260985,41510,'blocks_5_acfe_flexible_layout_title','Tabs'),(260986,41510,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(260987,41510,'blocks_5_options_theme','#ffffff'),(260988,41510,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(260989,41510,'blocks_5_options',''),(260990,41510,'_blocks_5_options','field_6177cfcd8140f'),(260991,41510,'blocks_5_tabs_0_tab_label','Entry requirements'),(260992,41510,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(260993,41510,'blocks_5_tabs_0_tab_content_title',''),(260994,41510,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(260995,41510,'blocks_5_tabs_0_tab_content_heading',''),(260996,41510,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(260997,41510,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(260998,41510,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(260999,41510,'blocks_5_tabs_0_tab_content_actions',''),(261000,41510,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(261001,41510,'blocks_5_tabs_0_tab_content',''),(261002,41510,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(261003,41510,'blocks_5_tabs_0_tab_image',''),(261004,41510,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(261005,41510,'blocks_5_tabs_1_tab_label','Learning format'),(261006,41510,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(261007,41510,'blocks_5_tabs_1_tab_content_title',''),(261008,41510,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(261009,41510,'blocks_5_tabs_1_tab_content_heading',''),(261010,41510,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(261011,41510,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(261012,41510,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(261013,41510,'blocks_5_tabs_1_tab_content_actions',''),(261014,41510,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(261015,41510,'blocks_5_tabs_1_tab_content',''),(261016,41510,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(261017,41510,'blocks_5_tabs_1_tab_image',''),(261018,41510,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(261019,41510,'blocks_5_tabs_2_tab_label','Qualifications included'),(261020,41510,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(261021,41510,'blocks_5_tabs_2_tab_content_title',''),(261022,41510,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(261023,41510,'blocks_5_tabs_2_tab_content_heading',''),(261024,41510,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(261025,41510,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(261026,41510,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(261027,41510,'blocks_5_tabs_2_tab_content_actions',''),(261028,41510,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(261029,41510,'blocks_5_tabs_2_tab_content',''),(261030,41510,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(261031,41510,'blocks_5_tabs_2_tab_image',''),(261032,41510,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(261033,41510,'blocks_5_tabs','3'),(261034,41510,'_blocks_5_tabs','field_6177cff281419'),(261035,41510,'blocks_4_acfe_flexible_toggle',''),(261036,41510,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(261037,41510,'blocks_4_acfe_flexible_layout_title','Template'),(261038,41510,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(261039,41510,'blocks_4_template','39207'),(261040,41510,'_blocks_4_template','field_617bdd570fe01'),(261041,41510,'blocks_6_acfe_flexible_toggle',''),(261042,41510,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(261043,41510,'blocks_6_acfe_flexible_layout_title','Icons'),(261044,41510,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(261045,41510,'blocks_6_options_theme','#f5f5f5'),(261046,41510,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(261047,41510,'blocks_6_options_format','stacked'),(261048,41510,'_blocks_6_options_format','field_64bfde9a90690'),(261049,41510,'blocks_6_options',''),(261050,41510,'_blocks_6_options','field_64bfdd9b90684'),(261051,41510,'blocks_6_row_content_title','Options available to pay for your course'),(261052,41510,'_blocks_6_row_content_title','field_64bfdd9b90687'),(261053,41510,'blocks_6_row_content_heading','Fees & Funding Options '),(261054,41510,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(261055,41510,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(261056,41510,'_blocks_6_row_content_text','field_64bfdd9b90689'),(261057,41510,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(261058,41510,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(261059,41510,'blocks_6_row_content_actions','1'),(261060,41510,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(261061,41510,'blocks_6_row_content',''),(261062,41510,'_blocks_6_row_content','field_64bfdd9b90686'),(261063,41510,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(261064,41510,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(261065,41510,'blocks_6_icon_row_items_0_label','Pay in full'),(261066,41510,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(261067,41510,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(261068,41510,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(261069,41510,'blocks_6_icon_row_items_1_icon','finance.svg'),(261070,41510,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(261071,41510,'blocks_6_icon_row_items_1_label','0% finance'),(261072,41510,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(261073,41510,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(261074,41510,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(261075,41510,'blocks_6_icon_row_items','3'),(261076,41510,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(261077,41510,'blocks_7_acfe_flexible_toggle',''),(261078,41510,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(261079,41510,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(261080,41510,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(261081,41510,'blocks_7_options_theme','#ffffff'),(261082,41510,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(261083,41510,'blocks_7_options_reverse','0'),(261084,41510,'_blocks_7_options_reverse','field_61768049bb8ac'),(261085,41510,'blocks_7_options',''),(261086,41510,'_blocks_7_options','field_617682517c334'),(261087,41510,'blocks_7_split_5050_image','41483'),(261088,41510,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(261089,41510,'blocks_7_split_5050_video',''),(261090,41510,'_blocks_7_split_5050_video','field_6239f3160848a'),(261091,41510,'blocks_7_split_5050_content_title',''),(261092,41510,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(261093,41510,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(261094,41510,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(261095,41510,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(261096,41510,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(261097,41510,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(261098,41510,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(261099,41510,'blocks_7_split_5050_content_actions','1'),(261100,41510,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(261101,41510,'blocks_7_split_5050_content',''),(261102,41510,'_blocks_7_split_5050_content','field_61767afceb8ba'),(261103,41510,'blocks_8_acfe_flexible_toggle',''),(261104,41510,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(261105,41510,'blocks_8_acfe_flexible_layout_title','Icons'),(261106,41510,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(261107,41510,'blocks_8_options_theme','#f5f5f5'),(261108,41510,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(261109,41510,'blocks_8_options_format','row'),(261110,41510,'_blocks_8_options_format','field_64bfde9a90690'),(261111,41510,'blocks_8_options',''),(261112,41510,'_blocks_8_options','field_64bfdd9b90684'),(261113,41510,'blocks_8_icon_row_items_0_icon','qualification.svg'),(261114,41510,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(261115,41510,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(261116,41510,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(261117,41510,'blocks_8_icon_row_items_0_text',''),(261118,41510,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(261119,41510,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(261120,41510,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(261121,41510,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(261122,41510,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(261123,41510,'blocks_8_icon_row_items_1_text',''),(261124,41510,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(261125,41510,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(261126,41510,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(261127,41510,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(261128,41510,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(261129,41510,'blocks_8_icon_row_items_2_text',''),(261130,41510,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(261131,41510,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(261132,41510,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(261133,41510,'blocks_8_icon_row_items_3_label','Flexible funding options'),(261134,41510,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(261135,41510,'blocks_8_icon_row_items_3_text',''),(261136,41510,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(261137,41510,'blocks_8_icon_row_items','4'),(261138,41510,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(261139,41510,'blocks_9_acfe_flexible_toggle',''),(261140,41510,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(261141,41510,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(261142,41510,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(261143,41510,'blocks_9_options_theme','#ffffff'),(261144,41510,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(261145,41510,'blocks_9_options_reverse','1'),(261146,41510,'_blocks_9_options_reverse','field_61768049bb8ac'),(261147,41510,'blocks_9_options',''),(261148,41510,'_blocks_9_options','field_617682517c334'),(261149,41510,'blocks_9_split_5050_image','39224'),(261150,41510,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(261151,41510,'blocks_9_split_5050_video',''),(261152,41510,'_blocks_9_split_5050_video','field_6239f3160848a'),(261153,41510,'blocks_9_split_5050_content_title','Locations'),(261154,41510,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(261155,41510,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(261156,41510,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(261157,41510,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(261158,41510,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(261159,41510,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(261160,41510,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(261161,41510,'blocks_9_split_5050_content_actions','1'),(261162,41510,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(261163,41510,'blocks_9_split_5050_content',''),(261164,41510,'_blocks_9_split_5050_content','field_61767afceb8ba'),(261165,41510,'blocks_1_acfe_flexible_toggle',''),(261166,41510,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(261167,41510,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(261168,41510,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(261169,41510,'blocks_1_options_theme','#ffffff'),(261170,41510,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(261171,41510,'blocks_1_options_reverse','0'),(261172,41510,'_blocks_1_options_reverse','field_61768049bb8ac'),(261173,41510,'blocks_1_options',''),(261174,41510,'_blocks_1_options','field_617682517c334'),(261175,41510,'blocks_1_split_5050_image','41484'),(261176,41510,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(261177,41510,'blocks_1_split_5050_video',''),(261178,41510,'_blocks_1_split_5050_video','field_6239f3160848a'),(261179,41510,'blocks_1_split_5050_content_title',''),(261180,41510,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(261181,41510,'blocks_1_split_5050_content_heading','Course Overview'),(261182,41510,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(261183,41510,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(261184,41510,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(261185,41510,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(261186,41510,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(261187,41510,'blocks_1_split_5050_content_actions','1'),(261188,41510,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(261189,41510,'blocks_1_split_5050_content',''),(261190,41510,'_blocks_1_split_5050_content','field_61767afceb8ba'),(261191,41510,'blocks_2_acfe_flexible_toggle',''),(261192,41510,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(261193,41510,'blocks_2_acfe_flexible_layout_title','Form'),(261194,41510,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(261195,41510,'blocks_2_row_content_format','standard'),(261196,41510,'_blocks_2_row_content_format','field_6481ead962881'),(261197,41510,'blocks_2_row_content_title',''),(261198,41510,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(261199,41510,'blocks_2_row_content_heading','Enquire Today'),(261200,41510,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(261201,41510,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(261202,41510,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(261203,41510,'blocks_2_row_content_actions',''),(261204,41510,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(261205,41510,'blocks_2_row_content',''),(261206,41510,'_blocks_2_row_content','field_61a0f5f5b3db0'),(261207,41510,'blocks_2_row_form','40394'),(261208,41510,'_blocks_2_row_form','field_61a4ff2c0b08e'),(261209,41510,'blocks_2_row_form_button_label',''),(261210,41510,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(261211,41510,'blocks_3_acfe_flexible_toggle',''),(261212,41510,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(261213,41510,'blocks_3_acfe_flexible_layout_title','Video'),(261214,41510,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(261215,41510,'blocks_3_size','large'),(261216,41510,'_blocks_3_size','field_6487038f297c1'),(261217,41510,'blocks_3_row_content_title',''),(261218,41510,'_blocks_3_row_content_title','field_64870132a865d'),(261219,41510,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(261220,41510,'_blocks_3_row_content_heading','field_64870142a865e'),(261221,41510,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(261222,41510,'_blocks_3_row_content_text','field_64870148a865f'),(261223,41510,'blocks_3_row_content',''),(261224,41510,'_blocks_3_row_content','field_6487008ba865c'),(261225,41510,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(261226,41510,'_blocks_3_video_src','field_6193c4a98ec07'),(261227,41510,'blocks_3_video_thumbnail',''),(261228,41510,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(261229,41510,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(261230,41510,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(261231,41510,'blocks_6_icon_row_items_2_label','Deposit & balance'),(261232,41510,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(261233,41510,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(261234,41510,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(261235,41510,'blocks_10_acfe_flexible_toggle','1'),(261236,41510,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(261237,41510,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(261238,41510,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(261239,41510,'blocks_10_options_theme','#ffffff'),(261240,41510,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(261241,41510,'blocks_10_options',''),(261242,41510,'_blocks_10_options','field_617ac0b7f6c08'),(261243,41510,'blocks_10_show','selection'),(261244,41510,'_blocks_10_show','field_61a49cba9d946'),(261245,41510,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(261246,41510,'_blocks_10_courses','field_61b244781ee0a'),(261247,41510,'blocks_10_open_whats_included','1'),(261248,41510,'_blocks_10_open_whats_included','field_66ebfd679450c'),(261249,41510,'blocks_10_open_key_information','0'),(261250,41510,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(261251,41510,'blocks_10_open',''),(261252,41510,'_blocks_10_open','field_66ebfd009450b'),(261253,41510,'blocks_11_acfe_flexible_toggle',''),(261254,41510,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(261255,41510,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(261256,41510,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(261257,41510,'blocks_11_options_theme','#ffffff'),(261258,41510,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(261259,41510,'blocks_11_options_reverse','0'),(261260,41510,'_blocks_11_options_reverse','field_61768049bb8ac'),(261261,41510,'blocks_11_options',''),(261262,41510,'_blocks_11_options','field_617682517c334'),(261263,41510,'blocks_11_split_5050_image','41495'),(261264,41510,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(261265,41510,'blocks_11_split_5050_video',''),(261266,41510,'_blocks_11_split_5050_video','field_6239f3160848a'),(261267,41510,'blocks_11_split_5050_content_title','Optimise Performance '),(261268,41510,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(261269,41510,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(261270,41510,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(261271,41510,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(261272,41510,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(261273,41510,'blocks_11_split_5050_content_actions_0_button',''),(261274,41510,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(261275,41510,'blocks_11_split_5050_content_actions','1'),(261276,41510,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(261277,41510,'blocks_11_split_5050_content',''),(261278,41510,'_blocks_11_split_5050_content','field_61767afceb8ba'),(261279,41510,'blocks_12_acfe_flexible_toggle',''),(261280,41510,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(261281,41510,'blocks_12_acfe_flexible_layout_title','Template'),(261282,41510,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(261283,41510,'blocks_12_template','40987'),(261284,41510,'_blocks_12_template','field_617bdd570fe01'),(261285,41510,'blocks_13_acfe_flexible_toggle',''),(261286,41510,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(261287,41510,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(261288,41510,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(261289,41510,'blocks_13_options_theme','#f5f5f5'),(261290,41510,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(261291,41510,'blocks_13_options_state','0'),(261292,41510,'_blocks_13_options_state','field_6239fcb7508c5'),(261293,41510,'blocks_13_options',''),(261294,41510,'_blocks_13_options','field_6177e2991ac44'),(261295,41510,'blocks_13_content_title',''),(261296,41510,'_blocks_13_content_title','field_64d237e8bb1e2'),(261297,41510,'blocks_13_content_heading','FAQ\'s'),(261298,41510,'_blocks_13_content_heading','field_64d237e8bb1e3'),(261299,41510,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(261300,41510,'_blocks_13_content_text','field_64d237e8bb1e4'),(261301,41510,'blocks_13_content_actions',''),(261302,41510,'_blocks_13_content_actions','field_64d237e8bb1e5'),(261303,41510,'blocks_13_content_align','left'),(261304,41510,'_blocks_13_content_align','field_64d2443e6b6aa'),(261305,41510,'blocks_13_content',''),(261306,41510,'_blocks_13_content','field_64d237e8bb1e1'),(261307,41510,'blocks_13_accordion_content','faqs'),(261308,41510,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(261309,41510,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41458\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(261310,41510,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(261311,41510,'blocks_13_actions',''),(261312,41510,'_blocks_13_actions','field_61a746a817f7a'),(261313,41511,'hide_hero','0'),(261314,41511,'_hide_hero','field_66a2380fcda39'),(261315,41511,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(261316,41511,'_hero_title','field_617571fe285e8'),(261317,41511,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(261318,41511,'_hero_text','field_6175723c285e9'),(261319,41511,'hero_actions','1'),(261320,41511,'_hero_actions','field_61757270285ea'),(261321,41511,'hero_style','default'),(261322,41511,'_hero_style','field_62051d9dc5324'),(261323,41511,'_thumbnail_id','41473'),(261324,41511,'__thumbnail_id','field_617570855ddaf'),(261325,41511,'hero_image_pos_x','right'),(261326,41511,'_hero_image_pos_x','field_62ec3d05390bb'),(261327,41511,'hero_image_pos_y','top'),(261328,41511,'_hero_image_pos_y','field_62ec3d05390bc'),(261329,41511,'hero_image_pos',''),(261330,41511,'_hero_image_pos','field_62ec3d05390ba'),(261331,41511,'fft_hide_from_listings','0'),(261332,41511,'_fft_hide_from_listings','field_61f1320446ab2'),(261333,41511,'fft_page_format','default'),(261334,41511,'_fft_page_format','field_61ae213f1f218'),(261335,41511,'fft_hide_nav','0'),(261336,41511,'_fft_hide_nav','field_635bd5e43527c'),(261337,41511,'fft_hide_header_call_to_action','0'),(261338,41511,'_fft_hide_header_call_to_action','field_635bd6723527d'),(261339,41511,'fft_page_sitemap','0'),(261340,41511,'_fft_page_sitemap','field_61af9b34e8181'),(261341,41511,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(261342,41511,'_blocks','field_6176696113096'),(261343,41511,'course_label_text',''),(261344,41511,'_course_label_text','field_61e17babf71fa'),(261345,41511,'course_label',''),(261346,41511,'_course_label','field_61e12f92749a7'),(261347,41511,'course_description',''),(261348,41511,'_course_description','field_617ac5788e5e1'),(261349,41511,'course_key_info',''),(261350,41511,'_course_key_info','field_617ac6ad8e5e2'),(261351,41511,'course_included',''),(261352,41511,'_course_included','field_617ac6f08e5e4'),(261353,41511,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41455-5\";s:6:\"target\";s:0:\"\";}'),(261354,41511,'_hero_actions_0_button','field_61757281285eb'),(261355,41511,'blocks_0_acfe_flexible_toggle',''),(261356,41511,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(261357,41511,'blocks_0_acfe_flexible_layout_title','Icons'),(261358,41511,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(261359,41511,'blocks_0_options_theme','#b61234'),(261360,41511,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(261361,41511,'blocks_0_options_format','row'),(261362,41511,'_blocks_0_options_format','field_64bfde9a90690'),(261363,41511,'blocks_0_options',''),(261364,41511,'_blocks_0_options','field_64bfdd9b90684'),(261365,41511,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(261366,41511,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(261367,41511,'blocks_0_icon_row_items_0_label','Accreditation'),(261368,41511,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(261369,41511,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(261370,41511,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(261371,41511,'blocks_0_icon_row_items_1_icon','finance.svg'),(261372,41511,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(261373,41511,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(261374,41511,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(261375,41511,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(261376,41511,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(261377,41511,'blocks_0_icon_row_items_2_icon','progression.svg'),(261378,41511,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(261379,41511,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(261380,41511,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(261381,41511,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(261382,41511,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(261383,41511,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(261384,41511,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(261385,41511,'blocks_0_icon_row_items_3_label','Qualification'),(261386,41511,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(261387,41511,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(261388,41511,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(261389,41511,'blocks_0_icon_row_items','4'),(261390,41511,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(261391,41511,'blocks_5_acfe_flexible_toggle','1'),(261392,41511,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(261393,41511,'blocks_5_acfe_flexible_layout_title','Tabs'),(261394,41511,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(261395,41511,'blocks_5_options_theme','#ffffff'),(261396,41511,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(261397,41511,'blocks_5_options',''),(261398,41511,'_blocks_5_options','field_6177cfcd8140f'),(261399,41511,'blocks_5_tabs_0_tab_label','Entry requirements'),(261400,41511,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(261401,41511,'blocks_5_tabs_0_tab_content_title',''),(261402,41511,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(261403,41511,'blocks_5_tabs_0_tab_content_heading',''),(261404,41511,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(261405,41511,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(261406,41511,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(261407,41511,'blocks_5_tabs_0_tab_content_actions',''),(261408,41511,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(261409,41511,'blocks_5_tabs_0_tab_content',''),(261410,41511,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(261411,41511,'blocks_5_tabs_0_tab_image',''),(261412,41511,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(261413,41511,'blocks_5_tabs_1_tab_label','Learning format'),(261414,41511,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(261415,41511,'blocks_5_tabs_1_tab_content_title',''),(261416,41511,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(261417,41511,'blocks_5_tabs_1_tab_content_heading',''),(261418,41511,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(261419,41511,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(261420,41511,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(261421,41511,'blocks_5_tabs_1_tab_content_actions',''),(261422,41511,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(261423,41511,'blocks_5_tabs_1_tab_content',''),(261424,41511,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(261425,41511,'blocks_5_tabs_1_tab_image',''),(261426,41511,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(261427,41511,'blocks_5_tabs_2_tab_label','Qualifications included'),(261428,41511,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(261429,41511,'blocks_5_tabs_2_tab_content_title',''),(261430,41511,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(261431,41511,'blocks_5_tabs_2_tab_content_heading',''),(261432,41511,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(261433,41511,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(261434,41511,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(261435,41511,'blocks_5_tabs_2_tab_content_actions',''),(261436,41511,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(261437,41511,'blocks_5_tabs_2_tab_content',''),(261438,41511,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(261439,41511,'blocks_5_tabs_2_tab_image',''),(261440,41511,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(261441,41511,'blocks_5_tabs','3'),(261442,41511,'_blocks_5_tabs','field_6177cff281419'),(261443,41511,'blocks_4_acfe_flexible_toggle',''),(261444,41511,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(261445,41511,'blocks_4_acfe_flexible_layout_title','Template'),(261446,41511,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(261447,41511,'blocks_4_template','39207'),(261448,41511,'_blocks_4_template','field_617bdd570fe01'),(261449,41511,'blocks_6_acfe_flexible_toggle',''),(261450,41511,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(261451,41511,'blocks_6_acfe_flexible_layout_title','Icons'),(261452,41511,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(261453,41511,'blocks_6_options_theme','#f5f5f5'),(261454,41511,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(261455,41511,'blocks_6_options_format','stacked'),(261456,41511,'_blocks_6_options_format','field_64bfde9a90690'),(261457,41511,'blocks_6_options',''),(261458,41511,'_blocks_6_options','field_64bfdd9b90684'),(261459,41511,'blocks_6_row_content_title','Options available to pay for your course'),(261460,41511,'_blocks_6_row_content_title','field_64bfdd9b90687'),(261461,41511,'blocks_6_row_content_heading','Fees & Funding Options '),(261462,41511,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(261463,41511,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(261464,41511,'_blocks_6_row_content_text','field_64bfdd9b90689'),(261465,41511,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(261466,41511,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(261467,41511,'blocks_6_row_content_actions','1'),(261468,41511,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(261469,41511,'blocks_6_row_content',''),(261470,41511,'_blocks_6_row_content','field_64bfdd9b90686'),(261471,41511,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(261472,41511,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(261473,41511,'blocks_6_icon_row_items_0_label','Pay in full'),(261474,41511,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(261475,41511,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(261476,41511,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(261477,41511,'blocks_6_icon_row_items_1_icon','finance.svg'),(261478,41511,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(261479,41511,'blocks_6_icon_row_items_1_label','0% finance'),(261480,41511,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(261481,41511,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(261482,41511,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(261483,41511,'blocks_6_icon_row_items','3'),(261484,41511,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(261485,41511,'blocks_7_acfe_flexible_toggle',''),(261486,41511,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(261487,41511,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(261488,41511,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(261489,41511,'blocks_7_options_theme','#ffffff'),(261490,41511,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(261491,41511,'blocks_7_options_reverse','0'),(261492,41511,'_blocks_7_options_reverse','field_61768049bb8ac'),(261493,41511,'blocks_7_options',''),(261494,41511,'_blocks_7_options','field_617682517c334'),(261495,41511,'blocks_7_split_5050_image','41483'),(261496,41511,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(261497,41511,'blocks_7_split_5050_video',''),(261498,41511,'_blocks_7_split_5050_video','field_6239f3160848a'),(261499,41511,'blocks_7_split_5050_content_title',''),(261500,41511,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(261501,41511,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(261502,41511,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(261503,41511,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(261504,41511,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(261505,41511,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(261506,41511,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(261507,41511,'blocks_7_split_5050_content_actions','1'),(261508,41511,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(261509,41511,'blocks_7_split_5050_content',''),(261510,41511,'_blocks_7_split_5050_content','field_61767afceb8ba'),(261511,41511,'blocks_8_acfe_flexible_toggle',''),(261512,41511,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(261513,41511,'blocks_8_acfe_flexible_layout_title','Icons'),(261514,41511,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(261515,41511,'blocks_8_options_theme','#f5f5f5'),(261516,41511,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(261517,41511,'blocks_8_options_format','row'),(261518,41511,'_blocks_8_options_format','field_64bfde9a90690'),(261519,41511,'blocks_8_options',''),(261520,41511,'_blocks_8_options','field_64bfdd9b90684'),(261521,41511,'blocks_8_icon_row_items_0_icon','qualification.svg'),(261522,41511,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(261523,41511,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(261524,41511,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(261525,41511,'blocks_8_icon_row_items_0_text',''),(261526,41511,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(261527,41511,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(261528,41511,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(261529,41511,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(261530,41511,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(261531,41511,'blocks_8_icon_row_items_1_text',''),(261532,41511,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(261533,41511,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(261534,41511,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(261535,41511,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(261536,41511,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(261537,41511,'blocks_8_icon_row_items_2_text',''),(261538,41511,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(261539,41511,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(261540,41511,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(261541,41511,'blocks_8_icon_row_items_3_label','Flexible funding options'),(261542,41511,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(261543,41511,'blocks_8_icon_row_items_3_text',''),(261544,41511,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(261545,41511,'blocks_8_icon_row_items','4'),(261546,41511,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(261547,41511,'blocks_9_acfe_flexible_toggle',''),(261548,41511,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(261549,41511,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(261550,41511,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(261551,41511,'blocks_9_options_theme','#ffffff'),(261552,41511,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(261553,41511,'blocks_9_options_reverse','1'),(261554,41511,'_blocks_9_options_reverse','field_61768049bb8ac'),(261555,41511,'blocks_9_options',''),(261556,41511,'_blocks_9_options','field_617682517c334'),(261557,41511,'blocks_9_split_5050_image','39224'),(261558,41511,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(261559,41511,'blocks_9_split_5050_video',''),(261560,41511,'_blocks_9_split_5050_video','field_6239f3160848a'),(261561,41511,'blocks_9_split_5050_content_title','Locations'),(261562,41511,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(261563,41511,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(261564,41511,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(261565,41511,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(261566,41511,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(261567,41511,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(261568,41511,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(261569,41511,'blocks_9_split_5050_content_actions','1'),(261570,41511,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(261571,41511,'blocks_9_split_5050_content',''),(261572,41511,'_blocks_9_split_5050_content','field_61767afceb8ba'),(261573,41511,'blocks_1_acfe_flexible_toggle',''),(261574,41511,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(261575,41511,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(261576,41511,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(261577,41511,'blocks_1_options_theme','#ffffff'),(261578,41511,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(261579,41511,'blocks_1_options_reverse','0'),(261580,41511,'_blocks_1_options_reverse','field_61768049bb8ac'),(261581,41511,'blocks_1_options',''),(261582,41511,'_blocks_1_options','field_617682517c334'),(261583,41511,'blocks_1_split_5050_image','41484'),(261584,41511,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(261585,41511,'blocks_1_split_5050_video',''),(261586,41511,'_blocks_1_split_5050_video','field_6239f3160848a'),(261587,41511,'blocks_1_split_5050_content_title',''),(261588,41511,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(261589,41511,'blocks_1_split_5050_content_heading','Course Overview'),(261590,41511,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(261591,41511,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(261592,41511,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(261593,41511,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(261594,41511,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(261595,41511,'blocks_1_split_5050_content_actions','1'),(261596,41511,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(261597,41511,'blocks_1_split_5050_content',''),(261598,41511,'_blocks_1_split_5050_content','field_61767afceb8ba'),(261599,41511,'blocks_2_acfe_flexible_toggle',''),(261600,41511,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(261601,41511,'blocks_2_acfe_flexible_layout_title','Form'),(261602,41511,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(261603,41511,'blocks_2_row_content_format','standard'),(261604,41511,'_blocks_2_row_content_format','field_6481ead962881'),(261605,41511,'blocks_2_row_content_title',''),(261606,41511,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(261607,41511,'blocks_2_row_content_heading','Enquire Today'),(261608,41511,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(261609,41511,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(261610,41511,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(261611,41511,'blocks_2_row_content_actions',''),(261612,41511,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(261613,41511,'blocks_2_row_content',''),(261614,41511,'_blocks_2_row_content','field_61a0f5f5b3db0'),(261615,41511,'blocks_2_row_form','40394'),(261616,41511,'_blocks_2_row_form','field_61a4ff2c0b08e'),(261617,41511,'blocks_2_row_form_button_label',''),(261618,41511,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(261619,41511,'blocks_3_acfe_flexible_toggle',''),(261620,41511,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(261621,41511,'blocks_3_acfe_flexible_layout_title','Video'),(261622,41511,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(261623,41511,'blocks_3_size','large'),(261624,41511,'_blocks_3_size','field_6487038f297c1'),(261625,41511,'blocks_3_row_content_title',''),(261626,41511,'_blocks_3_row_content_title','field_64870132a865d'),(261627,41511,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(261628,41511,'_blocks_3_row_content_heading','field_64870142a865e'),(261629,41511,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(261630,41511,'_blocks_3_row_content_text','field_64870148a865f'),(261631,41511,'blocks_3_row_content',''),(261632,41511,'_blocks_3_row_content','field_6487008ba865c'),(261633,41511,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(261634,41511,'_blocks_3_video_src','field_6193c4a98ec07'),(261635,41511,'blocks_3_video_thumbnail',''),(261636,41511,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(261637,41511,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(261638,41511,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(261639,41511,'blocks_6_icon_row_items_2_label','Deposit & balance'),(261640,41511,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(261641,41511,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(261642,41511,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(261643,41511,'blocks_10_acfe_flexible_toggle','1'),(261644,41511,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(261645,41511,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(261646,41511,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(261647,41511,'blocks_10_options_theme','#ffffff'),(261648,41511,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(261649,41511,'blocks_10_options',''),(261650,41511,'_blocks_10_options','field_617ac0b7f6c08'),(261651,41511,'blocks_10_show','selection'),(261652,41511,'_blocks_10_show','field_61a49cba9d946'),(261653,41511,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(261654,41511,'_blocks_10_courses','field_61b244781ee0a'),(261655,41511,'blocks_10_open_whats_included','1'),(261656,41511,'_blocks_10_open_whats_included','field_66ebfd679450c'),(261657,41511,'blocks_10_open_key_information','0'),(261658,41511,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(261659,41511,'blocks_10_open',''),(261660,41511,'_blocks_10_open','field_66ebfd009450b'),(261661,41511,'blocks_11_acfe_flexible_toggle',''),(261662,41511,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(261663,41511,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(261664,41511,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(261665,41511,'blocks_11_options_theme','#ffffff'),(261666,41511,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(261667,41511,'blocks_11_options_reverse','0'),(261668,41511,'_blocks_11_options_reverse','field_61768049bb8ac'),(261669,41511,'blocks_11_options',''),(261670,41511,'_blocks_11_options','field_617682517c334'),(261671,41511,'blocks_11_split_5050_image','41495'),(261672,41511,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(261673,41511,'blocks_11_split_5050_video',''),(261674,41511,'_blocks_11_split_5050_video','field_6239f3160848a'),(261675,41511,'blocks_11_split_5050_content_title','Optimise Performance '),(261676,41511,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(261677,41511,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(261678,41511,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(261679,41511,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(261680,41511,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(261681,41511,'blocks_11_split_5050_content_actions_0_button',''),(261682,41511,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(261683,41511,'blocks_11_split_5050_content_actions','1'),(261684,41511,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(261685,41511,'blocks_11_split_5050_content',''),(261686,41511,'_blocks_11_split_5050_content','field_61767afceb8ba'),(261687,41511,'blocks_12_acfe_flexible_toggle',''),(261688,41511,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(261689,41511,'blocks_12_acfe_flexible_layout_title','Template'),(261690,41511,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(261691,41511,'blocks_12_template','40987'),(261692,41511,'_blocks_12_template','field_617bdd570fe01'),(261693,41511,'blocks_13_acfe_flexible_toggle',''),(261694,41511,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(261695,41511,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(261696,41511,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(261697,41511,'blocks_13_options_theme','#f5f5f5'),(261698,41511,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(261699,41511,'blocks_13_options_state','0'),(261700,41511,'_blocks_13_options_state','field_6239fcb7508c5'),(261701,41511,'blocks_13_options',''),(261702,41511,'_blocks_13_options','field_6177e2991ac44'),(261703,41511,'blocks_13_content_title',''),(261704,41511,'_blocks_13_content_title','field_64d237e8bb1e2'),(261705,41511,'blocks_13_content_heading','FAQ\'s'),(261706,41511,'_blocks_13_content_heading','field_64d237e8bb1e3'),(261707,41511,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(261708,41511,'_blocks_13_content_text','field_64d237e8bb1e4'),(261709,41511,'blocks_13_content_actions',''),(261710,41511,'_blocks_13_content_actions','field_64d237e8bb1e5'),(261711,41511,'blocks_13_content_align','left'),(261712,41511,'_blocks_13_content_align','field_64d2443e6b6aa'),(261713,41511,'blocks_13_content',''),(261714,41511,'_blocks_13_content','field_64d237e8bb1e1'),(261715,41511,'blocks_13_accordion_content','faqs'),(261716,41511,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(261717,41511,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41458\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(261718,41511,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(261719,41511,'blocks_13_actions',''),(261720,41511,'_blocks_13_actions','field_61a746a817f7a'),(261721,41512,'hide_hero','0'),(261722,41512,'_hide_hero','field_66a2380fcda39'),(261723,41512,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(261724,41512,'_hero_title','field_617571fe285e8'),(261725,41512,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(261726,41512,'_hero_text','field_6175723c285e9'),(261727,41512,'hero_actions','1'),(261728,41512,'_hero_actions','field_61757270285ea'),(261729,41512,'hero_style','default'),(261730,41512,'_hero_style','field_62051d9dc5324'),(261731,41512,'_thumbnail_id','41473'),(261732,41512,'__thumbnail_id','field_617570855ddaf'),(261733,41512,'hero_image_pos_x','right'),(261734,41512,'_hero_image_pos_x','field_62ec3d05390bb'),(261735,41512,'hero_image_pos_y','top'),(261736,41512,'_hero_image_pos_y','field_62ec3d05390bc'),(261737,41512,'hero_image_pos',''),(261738,41512,'_hero_image_pos','field_62ec3d05390ba'),(261739,41512,'fft_hide_from_listings','0'),(261740,41512,'_fft_hide_from_listings','field_61f1320446ab2'),(261741,41512,'fft_page_format','default'),(261742,41512,'_fft_page_format','field_61ae213f1f218'),(261743,41512,'fft_hide_nav','0'),(261744,41512,'_fft_hide_nav','field_635bd5e43527c'),(261745,41512,'fft_hide_header_call_to_action','0'),(261746,41512,'_fft_hide_header_call_to_action','field_635bd6723527d'),(261747,41512,'fft_page_sitemap','0'),(261748,41512,'_fft_page_sitemap','field_61af9b34e8181'),(261749,41512,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(261750,41512,'_blocks','field_6176696113096'),(261751,41512,'course_label_text',''),(261752,41512,'_course_label_text','field_61e17babf71fa'),(261753,41512,'course_label',''),(261754,41512,'_course_label','field_61e12f92749a7'),(261755,41512,'course_description',''),(261756,41512,'_course_description','field_617ac5788e5e1'),(261757,41512,'course_key_info',''),(261758,41512,'_course_key_info','field_617ac6ad8e5e2'),(261759,41512,'course_included',''),(261760,41512,'_course_included','field_617ac6f08e5e4'),(261761,41512,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41455-4\";s:6:\"target\";s:0:\"\";}'),(261762,41512,'_hero_actions_0_button','field_61757281285eb'),(261763,41512,'blocks_0_acfe_flexible_toggle',''),(261764,41512,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(261765,41512,'blocks_0_acfe_flexible_layout_title','Icons'),(261766,41512,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(261767,41512,'blocks_0_options_theme','#b61234'),(261768,41512,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(261769,41512,'blocks_0_options_format','row'),(261770,41512,'_blocks_0_options_format','field_64bfde9a90690'),(261771,41512,'blocks_0_options',''),(261772,41512,'_blocks_0_options','field_64bfdd9b90684'),(261773,41512,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(261774,41512,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(261775,41512,'blocks_0_icon_row_items_0_label','Accreditation'),(261776,41512,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(261777,41512,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(261778,41512,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(261779,41512,'blocks_0_icon_row_items_1_icon','finance.svg'),(261780,41512,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(261781,41512,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(261782,41512,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(261783,41512,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(261784,41512,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(261785,41512,'blocks_0_icon_row_items_2_icon','progression.svg'),(261786,41512,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(261787,41512,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(261788,41512,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(261789,41512,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(261790,41512,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(261791,41512,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(261792,41512,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(261793,41512,'blocks_0_icon_row_items_3_label','Qualification'),(261794,41512,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(261795,41512,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(261796,41512,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(261797,41512,'blocks_0_icon_row_items','4'),(261798,41512,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(261799,41512,'blocks_5_acfe_flexible_toggle','1'),(261800,41512,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(261801,41512,'blocks_5_acfe_flexible_layout_title','Tabs'),(261802,41512,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(261803,41512,'blocks_5_options_theme','#ffffff'),(261804,41512,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(261805,41512,'blocks_5_options',''),(261806,41512,'_blocks_5_options','field_6177cfcd8140f'),(261807,41512,'blocks_5_tabs_0_tab_label','Entry requirements'),(261808,41512,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(261809,41512,'blocks_5_tabs_0_tab_content_title',''),(261810,41512,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(261811,41512,'blocks_5_tabs_0_tab_content_heading',''),(261812,41512,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(261813,41512,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(261814,41512,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(261815,41512,'blocks_5_tabs_0_tab_content_actions',''),(261816,41512,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(261817,41512,'blocks_5_tabs_0_tab_content',''),(261818,41512,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(261819,41512,'blocks_5_tabs_0_tab_image',''),(261820,41512,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(261821,41512,'blocks_5_tabs_1_tab_label','Learning format'),(261822,41512,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(261823,41512,'blocks_5_tabs_1_tab_content_title',''),(261824,41512,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(261825,41512,'blocks_5_tabs_1_tab_content_heading',''),(261826,41512,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(261827,41512,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(261828,41512,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(261829,41512,'blocks_5_tabs_1_tab_content_actions',''),(261830,41512,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(261831,41512,'blocks_5_tabs_1_tab_content',''),(261832,41512,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(261833,41512,'blocks_5_tabs_1_tab_image',''),(261834,41512,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(261835,41512,'blocks_5_tabs_2_tab_label','Qualifications included'),(261836,41512,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(261837,41512,'blocks_5_tabs_2_tab_content_title',''),(261838,41512,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(261839,41512,'blocks_5_tabs_2_tab_content_heading',''),(261840,41512,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(261841,41512,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(261842,41512,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(261843,41512,'blocks_5_tabs_2_tab_content_actions',''),(261844,41512,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(261845,41512,'blocks_5_tabs_2_tab_content',''),(261846,41512,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(261847,41512,'blocks_5_tabs_2_tab_image',''),(261848,41512,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(261849,41512,'blocks_5_tabs','3'),(261850,41512,'_blocks_5_tabs','field_6177cff281419'),(261851,41512,'blocks_4_acfe_flexible_toggle',''),(261852,41512,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(261853,41512,'blocks_4_acfe_flexible_layout_title','Template'),(261854,41512,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(261855,41512,'blocks_4_template','39207'),(261856,41512,'_blocks_4_template','field_617bdd570fe01'),(261857,41512,'blocks_6_acfe_flexible_toggle',''),(261858,41512,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(261859,41512,'blocks_6_acfe_flexible_layout_title','Icons'),(261860,41512,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(261861,41512,'blocks_6_options_theme','#f5f5f5'),(261862,41512,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(261863,41512,'blocks_6_options_format','stacked'),(261864,41512,'_blocks_6_options_format','field_64bfde9a90690'),(261865,41512,'blocks_6_options',''),(261866,41512,'_blocks_6_options','field_64bfdd9b90684'),(261867,41512,'blocks_6_row_content_title','Options available to pay for your course'),(261868,41512,'_blocks_6_row_content_title','field_64bfdd9b90687'),(261869,41512,'blocks_6_row_content_heading','Fees & Funding Options '),(261870,41512,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(261871,41512,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(261872,41512,'_blocks_6_row_content_text','field_64bfdd9b90689'),(261873,41512,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(261874,41512,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(261875,41512,'blocks_6_row_content_actions','1'),(261876,41512,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(261877,41512,'blocks_6_row_content',''),(261878,41512,'_blocks_6_row_content','field_64bfdd9b90686'),(261879,41512,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(261880,41512,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(261881,41512,'blocks_6_icon_row_items_0_label','Pay in full'),(261882,41512,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(261883,41512,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(261884,41512,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(261885,41512,'blocks_6_icon_row_items_1_icon','finance.svg'),(261886,41512,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(261887,41512,'blocks_6_icon_row_items_1_label','0% finance'),(261888,41512,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(261889,41512,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(261890,41512,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(261891,41512,'blocks_6_icon_row_items','3'),(261892,41512,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(261893,41512,'blocks_7_acfe_flexible_toggle',''),(261894,41512,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(261895,41512,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(261896,41512,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(261897,41512,'blocks_7_options_theme','#ffffff'),(261898,41512,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(261899,41512,'blocks_7_options_reverse','0'),(261900,41512,'_blocks_7_options_reverse','field_61768049bb8ac'),(261901,41512,'blocks_7_options',''),(261902,41512,'_blocks_7_options','field_617682517c334'),(261903,41512,'blocks_7_split_5050_image','41483'),(261904,41512,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(261905,41512,'blocks_7_split_5050_video',''),(261906,41512,'_blocks_7_split_5050_video','field_6239f3160848a'),(261907,41512,'blocks_7_split_5050_content_title',''),(261908,41512,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(261909,41512,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(261910,41512,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(261911,41512,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(261912,41512,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(261913,41512,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(261914,41512,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(261915,41512,'blocks_7_split_5050_content_actions','1'),(261916,41512,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(261917,41512,'blocks_7_split_5050_content',''),(261918,41512,'_blocks_7_split_5050_content','field_61767afceb8ba'),(261919,41512,'blocks_8_acfe_flexible_toggle',''),(261920,41512,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(261921,41512,'blocks_8_acfe_flexible_layout_title','Icons'),(261922,41512,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(261923,41512,'blocks_8_options_theme','#f5f5f5'),(261924,41512,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(261925,41512,'blocks_8_options_format','row'),(261926,41512,'_blocks_8_options_format','field_64bfde9a90690'),(261927,41512,'blocks_8_options',''),(261928,41512,'_blocks_8_options','field_64bfdd9b90684'),(261929,41512,'blocks_8_icon_row_items_0_icon','qualification.svg'),(261930,41512,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(261931,41512,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(261932,41512,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(261933,41512,'blocks_8_icon_row_items_0_text',''),(261934,41512,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(261935,41512,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(261936,41512,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(261937,41512,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(261938,41512,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(261939,41512,'blocks_8_icon_row_items_1_text',''),(261940,41512,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(261941,41512,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(261942,41512,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(261943,41512,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(261944,41512,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(261945,41512,'blocks_8_icon_row_items_2_text',''),(261946,41512,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(261947,41512,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(261948,41512,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(261949,41512,'blocks_8_icon_row_items_3_label','Flexible funding options'),(261950,41512,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(261951,41512,'blocks_8_icon_row_items_3_text',''),(261952,41512,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(261953,41512,'blocks_8_icon_row_items','4'),(261954,41512,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(261955,41512,'blocks_9_acfe_flexible_toggle',''),(261956,41512,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(261957,41512,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(261958,41512,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(261959,41512,'blocks_9_options_theme','#ffffff'),(261960,41512,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(261961,41512,'blocks_9_options_reverse','1'),(261962,41512,'_blocks_9_options_reverse','field_61768049bb8ac'),(261963,41512,'blocks_9_options',''),(261964,41512,'_blocks_9_options','field_617682517c334'),(261965,41512,'blocks_9_split_5050_image','39224'),(261966,41512,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(261967,41512,'blocks_9_split_5050_video',''),(261968,41512,'_blocks_9_split_5050_video','field_6239f3160848a'),(261969,41512,'blocks_9_split_5050_content_title','Locations'),(261970,41512,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(261971,41512,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(261972,41512,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(261973,41512,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(261974,41512,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(261975,41512,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(261976,41512,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(261977,41512,'blocks_9_split_5050_content_actions','1'),(261978,41512,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(261979,41512,'blocks_9_split_5050_content',''),(261980,41512,'_blocks_9_split_5050_content','field_61767afceb8ba'),(261981,41512,'blocks_1_acfe_flexible_toggle',''),(261982,41512,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(261983,41512,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(261984,41512,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(261985,41512,'blocks_1_options_theme','#ffffff'),(261986,41512,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(261987,41512,'blocks_1_options_reverse','0'),(261988,41512,'_blocks_1_options_reverse','field_61768049bb8ac'),(261989,41512,'blocks_1_options',''),(261990,41512,'_blocks_1_options','field_617682517c334'),(261991,41512,'blocks_1_split_5050_image','41484'),(261992,41512,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(261993,41512,'blocks_1_split_5050_video',''),(261994,41512,'_blocks_1_split_5050_video','field_6239f3160848a'),(261995,41512,'blocks_1_split_5050_content_title',''),(261996,41512,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(261997,41512,'blocks_1_split_5050_content_heading','Course Overview'),(261998,41512,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(261999,41512,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(262000,41512,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(262001,41512,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(262002,41512,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(262003,41512,'blocks_1_split_5050_content_actions','1'),(262004,41512,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(262005,41512,'blocks_1_split_5050_content',''),(262006,41512,'_blocks_1_split_5050_content','field_61767afceb8ba'),(262007,41512,'blocks_2_acfe_flexible_toggle',''),(262008,41512,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(262009,41512,'blocks_2_acfe_flexible_layout_title','Form'),(262010,41512,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(262011,41512,'blocks_2_row_content_format','standard'),(262012,41512,'_blocks_2_row_content_format','field_6481ead962881'),(262013,41512,'blocks_2_row_content_title',''),(262014,41512,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(262015,41512,'blocks_2_row_content_heading','Enquire Today'),(262016,41512,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(262017,41512,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(262018,41512,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(262019,41512,'blocks_2_row_content_actions',''),(262020,41512,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(262021,41512,'blocks_2_row_content',''),(262022,41512,'_blocks_2_row_content','field_61a0f5f5b3db0'),(262023,41512,'blocks_2_row_form','40394'),(262024,41512,'_blocks_2_row_form','field_61a4ff2c0b08e'),(262025,41512,'blocks_2_row_form_button_label',''),(262026,41512,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(262027,41512,'blocks_3_acfe_flexible_toggle',''),(262028,41512,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(262029,41512,'blocks_3_acfe_flexible_layout_title','Video'),(262030,41512,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(262031,41512,'blocks_3_size','large'),(262032,41512,'_blocks_3_size','field_6487038f297c1'),(262033,41512,'blocks_3_row_content_title',''),(262034,41512,'_blocks_3_row_content_title','field_64870132a865d'),(262035,41512,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(262036,41512,'_blocks_3_row_content_heading','field_64870142a865e'),(262037,41512,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(262038,41512,'_blocks_3_row_content_text','field_64870148a865f'),(262039,41512,'blocks_3_row_content',''),(262040,41512,'_blocks_3_row_content','field_6487008ba865c'),(262041,41512,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(262042,41512,'_blocks_3_video_src','field_6193c4a98ec07'),(262043,41512,'blocks_3_video_thumbnail',''),(262044,41512,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(262045,41512,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(262046,41512,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(262047,41512,'blocks_6_icon_row_items_2_label','Deposit & balance'),(262048,41512,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(262049,41512,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(262050,41512,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(262051,41512,'blocks_10_acfe_flexible_toggle','1'),(262052,41512,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(262053,41512,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(262054,41512,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(262055,41512,'blocks_10_options_theme','#ffffff'),(262056,41512,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(262057,41512,'blocks_10_options',''),(262058,41512,'_blocks_10_options','field_617ac0b7f6c08'),(262059,41512,'blocks_10_show','selection'),(262060,41512,'_blocks_10_show','field_61a49cba9d946'),(262061,41512,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(262062,41512,'_blocks_10_courses','field_61b244781ee0a'),(262063,41512,'blocks_10_open_whats_included','1'),(262064,41512,'_blocks_10_open_whats_included','field_66ebfd679450c'),(262065,41512,'blocks_10_open_key_information','0'),(262066,41512,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(262067,41512,'blocks_10_open',''),(262068,41512,'_blocks_10_open','field_66ebfd009450b'),(262069,41512,'blocks_11_acfe_flexible_toggle',''),(262070,41512,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(262071,41512,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(262072,41512,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(262073,41512,'blocks_11_options_theme','#ffffff'),(262074,41512,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(262075,41512,'blocks_11_options_reverse','0'),(262076,41512,'_blocks_11_options_reverse','field_61768049bb8ac'),(262077,41512,'blocks_11_options',''),(262078,41512,'_blocks_11_options','field_617682517c334'),(262079,41512,'blocks_11_split_5050_image','41495'),(262080,41512,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(262081,41512,'blocks_11_split_5050_video',''),(262082,41512,'_blocks_11_split_5050_video','field_6239f3160848a'),(262083,41512,'blocks_11_split_5050_content_title','Optimise Performance '),(262084,41512,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(262085,41512,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(262086,41512,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(262087,41512,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(262088,41512,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(262089,41512,'blocks_11_split_5050_content_actions_0_button',''),(262090,41512,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(262091,41512,'blocks_11_split_5050_content_actions','1'),(262092,41512,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(262093,41512,'blocks_11_split_5050_content',''),(262094,41512,'_blocks_11_split_5050_content','field_61767afceb8ba'),(262095,41512,'blocks_12_acfe_flexible_toggle',''),(262096,41512,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(262097,41512,'blocks_12_acfe_flexible_layout_title','Template'),(262098,41512,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(262099,41512,'blocks_12_template','40987'),(262100,41512,'_blocks_12_template','field_617bdd570fe01'),(262101,41512,'blocks_13_acfe_flexible_toggle',''),(262102,41512,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(262103,41512,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(262104,41512,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(262105,41512,'blocks_13_options_theme','#f5f5f5'),(262106,41512,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(262107,41512,'blocks_13_options_state','0'),(262108,41512,'_blocks_13_options_state','field_6239fcb7508c5'),(262109,41512,'blocks_13_options',''),(262110,41512,'_blocks_13_options','field_6177e2991ac44'),(262111,41512,'blocks_13_content_title',''),(262112,41512,'_blocks_13_content_title','field_64d237e8bb1e2'),(262113,41512,'blocks_13_content_heading','FAQ\'s'),(262114,41512,'_blocks_13_content_heading','field_64d237e8bb1e3'),(262115,41512,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(262116,41512,'_blocks_13_content_text','field_64d237e8bb1e4'),(262117,41512,'blocks_13_content_actions',''),(262118,41512,'_blocks_13_content_actions','field_64d237e8bb1e5'),(262119,41512,'blocks_13_content_align','left'),(262120,41512,'_blocks_13_content_align','field_64d2443e6b6aa'),(262121,41512,'blocks_13_content',''),(262122,41512,'_blocks_13_content','field_64d237e8bb1e1'),(262123,41512,'blocks_13_accordion_content','faqs'),(262124,41512,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(262125,41512,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41458\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(262126,41512,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(262127,41512,'blocks_13_actions',''),(262128,41512,'_blocks_13_actions','field_61a746a817f7a'),(262129,41513,'hide_hero','0'),(262130,41513,'_hide_hero','field_66a2380fcda39'),(262131,41513,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(262132,41513,'_hero_title','field_617571fe285e8'),(262133,41513,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(262134,41513,'_hero_text','field_6175723c285e9'),(262135,41513,'hero_actions','1'),(262136,41513,'_hero_actions','field_61757270285ea'),(262137,41513,'hero_style','default'),(262138,41513,'_hero_style','field_62051d9dc5324'),(262139,41513,'_thumbnail_id','41473'),(262140,41513,'__thumbnail_id','field_617570855ddaf'),(262141,41513,'hero_image_pos_x','right'),(262142,41513,'_hero_image_pos_x','field_62ec3d05390bb'),(262143,41513,'hero_image_pos_y','top'),(262144,41513,'_hero_image_pos_y','field_62ec3d05390bc'),(262145,41513,'hero_image_pos',''),(262146,41513,'_hero_image_pos','field_62ec3d05390ba'),(262147,41513,'fft_hide_from_listings','0'),(262148,41513,'_fft_hide_from_listings','field_61f1320446ab2'),(262149,41513,'fft_page_format','default'),(262150,41513,'_fft_page_format','field_61ae213f1f218'),(262151,41513,'fft_hide_nav','0'),(262152,41513,'_fft_hide_nav','field_635bd5e43527c'),(262153,41513,'fft_hide_header_call_to_action','0'),(262154,41513,'_fft_hide_header_call_to_action','field_635bd6723527d'),(262155,41513,'fft_page_sitemap','0'),(262156,41513,'_fft_page_sitemap','field_61af9b34e8181'),(262157,41513,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(262158,41513,'_blocks','field_6176696113096'),(262159,41513,'course_label_text',''),(262160,41513,'_course_label_text','field_61e17babf71fa'),(262161,41513,'course_label',''),(262162,41513,'_course_label','field_61e12f92749a7'),(262163,41513,'course_description',''),(262164,41513,'_course_description','field_617ac5788e5e1'),(262165,41513,'course_key_info',''),(262166,41513,'_course_key_info','field_617ac6ad8e5e2'),(262167,41513,'course_included',''),(262168,41513,'_course_included','field_617ac6f08e5e4'),(262169,41513,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41455-4\";s:6:\"target\";s:0:\"\";}'),(262170,41513,'_hero_actions_0_button','field_61757281285eb'),(262171,41513,'blocks_0_acfe_flexible_toggle',''),(262172,41513,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(262173,41513,'blocks_0_acfe_flexible_layout_title','Icons'),(262174,41513,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(262175,41513,'blocks_0_options_theme','#b61234'),(262176,41513,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(262177,41513,'blocks_0_options_format','row'),(262178,41513,'_blocks_0_options_format','field_64bfde9a90690'),(262179,41513,'blocks_0_options',''),(262180,41513,'_blocks_0_options','field_64bfdd9b90684'),(262181,41513,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(262182,41513,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(262183,41513,'blocks_0_icon_row_items_0_label','Accreditation'),(262184,41513,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(262185,41513,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(262186,41513,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(262187,41513,'blocks_0_icon_row_items_1_icon','finance.svg'),(262188,41513,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(262189,41513,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(262190,41513,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(262191,41513,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(262192,41513,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(262193,41513,'blocks_0_icon_row_items_2_icon','progression.svg'),(262194,41513,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(262195,41513,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(262196,41513,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(262197,41513,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(262198,41513,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(262199,41513,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(262200,41513,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(262201,41513,'blocks_0_icon_row_items_3_label','Qualification'),(262202,41513,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(262203,41513,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(262204,41513,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(262205,41513,'blocks_0_icon_row_items','4'),(262206,41513,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(262207,41513,'blocks_5_acfe_flexible_toggle','1'),(262208,41513,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(262209,41513,'blocks_5_acfe_flexible_layout_title','Tabs'),(262210,41513,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(262211,41513,'blocks_5_options_theme','#ffffff'),(262212,41513,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(262213,41513,'blocks_5_options',''),(262214,41513,'_blocks_5_options','field_6177cfcd8140f'),(262215,41513,'blocks_5_tabs_0_tab_label','Entry requirements'),(262216,41513,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(262217,41513,'blocks_5_tabs_0_tab_content_title',''),(262218,41513,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(262219,41513,'blocks_5_tabs_0_tab_content_heading',''),(262220,41513,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(262221,41513,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(262222,41513,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(262223,41513,'blocks_5_tabs_0_tab_content_actions',''),(262224,41513,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(262225,41513,'blocks_5_tabs_0_tab_content',''),(262226,41513,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(262227,41513,'blocks_5_tabs_0_tab_image',''),(262228,41513,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(262229,41513,'blocks_5_tabs_1_tab_label','Learning format'),(262230,41513,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(262231,41513,'blocks_5_tabs_1_tab_content_title',''),(262232,41513,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(262233,41513,'blocks_5_tabs_1_tab_content_heading',''),(262234,41513,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(262235,41513,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(262236,41513,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(262237,41513,'blocks_5_tabs_1_tab_content_actions',''),(262238,41513,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(262239,41513,'blocks_5_tabs_1_tab_content',''),(262240,41513,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(262241,41513,'blocks_5_tabs_1_tab_image',''),(262242,41513,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(262243,41513,'blocks_5_tabs_2_tab_label','Qualifications included'),(262244,41513,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(262245,41513,'blocks_5_tabs_2_tab_content_title',''),(262246,41513,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(262247,41513,'blocks_5_tabs_2_tab_content_heading',''),(262248,41513,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(262249,41513,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(262250,41513,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(262251,41513,'blocks_5_tabs_2_tab_content_actions',''),(262252,41513,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(262253,41513,'blocks_5_tabs_2_tab_content',''),(262254,41513,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(262255,41513,'blocks_5_tabs_2_tab_image',''),(262256,41513,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(262257,41513,'blocks_5_tabs','3'),(262258,41513,'_blocks_5_tabs','field_6177cff281419'),(262259,41513,'blocks_4_acfe_flexible_toggle',''),(262260,41513,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(262261,41513,'blocks_4_acfe_flexible_layout_title','Template'),(262262,41513,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(262263,41513,'blocks_4_template','39207'),(262264,41513,'_blocks_4_template','field_617bdd570fe01'),(262265,41513,'blocks_6_acfe_flexible_toggle',''),(262266,41513,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(262267,41513,'blocks_6_acfe_flexible_layout_title','Icons'),(262268,41513,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(262269,41513,'blocks_6_options_theme','#f5f5f5'),(262270,41513,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(262271,41513,'blocks_6_options_format','stacked'),(262272,41513,'_blocks_6_options_format','field_64bfde9a90690'),(262273,41513,'blocks_6_options',''),(262274,41513,'_blocks_6_options','field_64bfdd9b90684'),(262275,41513,'blocks_6_row_content_title','Options available to pay for your course'),(262276,41513,'_blocks_6_row_content_title','field_64bfdd9b90687'),(262277,41513,'blocks_6_row_content_heading','Fees & Funding Options '),(262278,41513,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(262279,41513,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(262280,41513,'_blocks_6_row_content_text','field_64bfdd9b90689'),(262281,41513,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(262282,41513,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(262283,41513,'blocks_6_row_content_actions','1'),(262284,41513,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(262285,41513,'blocks_6_row_content',''),(262286,41513,'_blocks_6_row_content','field_64bfdd9b90686'),(262287,41513,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(262288,41513,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(262289,41513,'blocks_6_icon_row_items_0_label','Pay in full'),(262290,41513,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(262291,41513,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(262292,41513,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(262293,41513,'blocks_6_icon_row_items_1_icon','finance.svg'),(262294,41513,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(262295,41513,'blocks_6_icon_row_items_1_label','0% finance'),(262296,41513,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(262297,41513,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(262298,41513,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(262299,41513,'blocks_6_icon_row_items','3'),(262300,41513,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(262301,41513,'blocks_7_acfe_flexible_toggle',''),(262302,41513,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(262303,41513,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(262304,41513,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(262305,41513,'blocks_7_options_theme','#ffffff'),(262306,41513,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(262307,41513,'blocks_7_options_reverse','0'),(262308,41513,'_blocks_7_options_reverse','field_61768049bb8ac'),(262309,41513,'blocks_7_options',''),(262310,41513,'_blocks_7_options','field_617682517c334'),(262311,41513,'blocks_7_split_5050_image','41483'),(262312,41513,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(262313,41513,'blocks_7_split_5050_video',''),(262314,41513,'_blocks_7_split_5050_video','field_6239f3160848a'),(262315,41513,'blocks_7_split_5050_content_title',''),(262316,41513,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(262317,41513,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(262318,41513,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(262319,41513,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(262320,41513,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(262321,41513,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:8:\"#41455-3\";s:6:\"target\";s:0:\"\";}'),(262322,41513,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(262323,41513,'blocks_7_split_5050_content_actions','1'),(262324,41513,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(262325,41513,'blocks_7_split_5050_content',''),(262326,41513,'_blocks_7_split_5050_content','field_61767afceb8ba'),(262327,41513,'blocks_8_acfe_flexible_toggle',''),(262328,41513,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(262329,41513,'blocks_8_acfe_flexible_layout_title','Icons'),(262330,41513,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(262331,41513,'blocks_8_options_theme','#f5f5f5'),(262332,41513,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(262333,41513,'blocks_8_options_format','row'),(262334,41513,'_blocks_8_options_format','field_64bfde9a90690'),(262335,41513,'blocks_8_options',''),(262336,41513,'_blocks_8_options','field_64bfdd9b90684'),(262337,41513,'blocks_8_icon_row_items_0_icon','qualification.svg'),(262338,41513,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(262339,41513,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(262340,41513,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(262341,41513,'blocks_8_icon_row_items_0_text',''),(262342,41513,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(262343,41513,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(262344,41513,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(262345,41513,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(262346,41513,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(262347,41513,'blocks_8_icon_row_items_1_text',''),(262348,41513,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(262349,41513,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(262350,41513,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(262351,41513,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(262352,41513,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(262353,41513,'blocks_8_icon_row_items_2_text',''),(262354,41513,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(262355,41513,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(262356,41513,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(262357,41513,'blocks_8_icon_row_items_3_label','Flexible funding options'),(262358,41513,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(262359,41513,'blocks_8_icon_row_items_3_text',''),(262360,41513,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(262361,41513,'blocks_8_icon_row_items','4'),(262362,41513,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(262363,41513,'blocks_9_acfe_flexible_toggle',''),(262364,41513,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(262365,41513,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(262366,41513,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(262367,41513,'blocks_9_options_theme','#ffffff'),(262368,41513,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(262369,41513,'blocks_9_options_reverse','1'),(262370,41513,'_blocks_9_options_reverse','field_61768049bb8ac'),(262371,41513,'blocks_9_options',''),(262372,41513,'_blocks_9_options','field_617682517c334'),(262373,41513,'blocks_9_split_5050_image','39224'),(262374,41513,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(262375,41513,'blocks_9_split_5050_video',''),(262376,41513,'_blocks_9_split_5050_video','field_6239f3160848a'),(262377,41513,'blocks_9_split_5050_content_title','Locations'),(262378,41513,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(262379,41513,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(262380,41513,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(262381,41513,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(262382,41513,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(262383,41513,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:8:\"#41455-3\";s:6:\"target\";s:0:\"\";}'),(262384,41513,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(262385,41513,'blocks_9_split_5050_content_actions','1'),(262386,41513,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(262387,41513,'blocks_9_split_5050_content',''),(262388,41513,'_blocks_9_split_5050_content','field_61767afceb8ba'),(262389,41513,'blocks_1_acfe_flexible_toggle',''),(262390,41513,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(262391,41513,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(262392,41513,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(262393,41513,'blocks_1_options_theme','#ffffff'),(262394,41513,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(262395,41513,'blocks_1_options_reverse','0'),(262396,41513,'_blocks_1_options_reverse','field_61768049bb8ac'),(262397,41513,'blocks_1_options',''),(262398,41513,'_blocks_1_options','field_617682517c334'),(262399,41513,'blocks_1_split_5050_image','41484'),(262400,41513,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(262401,41513,'blocks_1_split_5050_video',''),(262402,41513,'_blocks_1_split_5050_video','field_6239f3160848a'),(262403,41513,'blocks_1_split_5050_content_title',''),(262404,41513,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(262405,41513,'blocks_1_split_5050_content_heading','Course Overview'),(262406,41513,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(262407,41513,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(262408,41513,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(262409,41513,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(262410,41513,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(262411,41513,'blocks_1_split_5050_content_actions','1'),(262412,41513,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(262413,41513,'blocks_1_split_5050_content',''),(262414,41513,'_blocks_1_split_5050_content','field_61767afceb8ba'),(262415,41513,'blocks_2_acfe_flexible_toggle',''),(262416,41513,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(262417,41513,'blocks_2_acfe_flexible_layout_title','Form'),(262418,41513,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(262419,41513,'blocks_2_row_content_format','standard'),(262420,41513,'_blocks_2_row_content_format','field_6481ead962881'),(262421,41513,'blocks_2_row_content_title',''),(262422,41513,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(262423,41513,'blocks_2_row_content_heading','Enquire Today'),(262424,41513,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(262425,41513,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(262426,41513,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(262427,41513,'blocks_2_row_content_actions',''),(262428,41513,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(262429,41513,'blocks_2_row_content',''),(262430,41513,'_blocks_2_row_content','field_61a0f5f5b3db0'),(262431,41513,'blocks_2_row_form','40394'),(262432,41513,'_blocks_2_row_form','field_61a4ff2c0b08e'),(262433,41513,'blocks_2_row_form_button_label',''),(262434,41513,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(262435,41513,'blocks_3_acfe_flexible_toggle',''),(262436,41513,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(262437,41513,'blocks_3_acfe_flexible_layout_title','Video'),(262438,41513,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(262439,41513,'blocks_3_size','large'),(262440,41513,'_blocks_3_size','field_6487038f297c1'),(262441,41513,'blocks_3_row_content_title',''),(262442,41513,'_blocks_3_row_content_title','field_64870132a865d'),(262443,41513,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(262444,41513,'_blocks_3_row_content_heading','field_64870142a865e'),(262445,41513,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(262446,41513,'_blocks_3_row_content_text','field_64870148a865f'),(262447,41513,'blocks_3_row_content',''),(262448,41513,'_blocks_3_row_content','field_6487008ba865c'),(262449,41513,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(262450,41513,'_blocks_3_video_src','field_6193c4a98ec07'),(262451,41513,'blocks_3_video_thumbnail',''),(262452,41513,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(262453,41513,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(262454,41513,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(262455,41513,'blocks_6_icon_row_items_2_label','Deposit & balance'),(262456,41513,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(262457,41513,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(262458,41513,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(262459,41513,'blocks_10_acfe_flexible_toggle','1'),(262460,41513,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(262461,41513,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(262462,41513,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(262463,41513,'blocks_10_options_theme','#ffffff'),(262464,41513,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(262465,41513,'blocks_10_options',''),(262466,41513,'_blocks_10_options','field_617ac0b7f6c08'),(262467,41513,'blocks_10_show','selection'),(262468,41513,'_blocks_10_show','field_61a49cba9d946'),(262469,41513,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(262470,41513,'_blocks_10_courses','field_61b244781ee0a'),(262471,41513,'blocks_10_open_whats_included','1'),(262472,41513,'_blocks_10_open_whats_included','field_66ebfd679450c'),(262473,41513,'blocks_10_open_key_information','0'),(262474,41513,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(262475,41513,'blocks_10_open',''),(262476,41513,'_blocks_10_open','field_66ebfd009450b'),(262477,41513,'blocks_11_acfe_flexible_toggle',''),(262478,41513,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(262479,41513,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(262480,41513,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(262481,41513,'blocks_11_options_theme','#ffffff'),(262482,41513,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(262483,41513,'blocks_11_options_reverse','0'),(262484,41513,'_blocks_11_options_reverse','field_61768049bb8ac'),(262485,41513,'blocks_11_options',''),(262486,41513,'_blocks_11_options','field_617682517c334'),(262487,41513,'blocks_11_split_5050_image','41495'),(262488,41513,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(262489,41513,'blocks_11_split_5050_video',''),(262490,41513,'_blocks_11_split_5050_video','field_6239f3160848a'),(262491,41513,'blocks_11_split_5050_content_title','Optimise Performance '),(262492,41513,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(262493,41513,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(262494,41513,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(262495,41513,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(262496,41513,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(262497,41513,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:8:\"#41455-3\";s:6:\"target\";s:0:\"\";}'),(262498,41513,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(262499,41513,'blocks_11_split_5050_content_actions','1'),(262500,41513,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(262501,41513,'blocks_11_split_5050_content',''),(262502,41513,'_blocks_11_split_5050_content','field_61767afceb8ba'),(262503,41513,'blocks_12_acfe_flexible_toggle',''),(262504,41513,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(262505,41513,'blocks_12_acfe_flexible_layout_title','Template'),(262506,41513,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(262507,41513,'blocks_12_template','40987'),(262508,41513,'_blocks_12_template','field_617bdd570fe01'),(262509,41513,'blocks_13_acfe_flexible_toggle',''),(262510,41513,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(262511,41513,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(262512,41513,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(262513,41513,'blocks_13_options_theme','#f5f5f5'),(262514,41513,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(262515,41513,'blocks_13_options_state','0'),(262516,41513,'_blocks_13_options_state','field_6239fcb7508c5'),(262517,41513,'blocks_13_options',''),(262518,41513,'_blocks_13_options','field_6177e2991ac44'),(262519,41513,'blocks_13_content_title',''),(262520,41513,'_blocks_13_content_title','field_64d237e8bb1e2'),(262521,41513,'blocks_13_content_heading','FAQ\'s'),(262522,41513,'_blocks_13_content_heading','field_64d237e8bb1e3'),(262523,41513,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(262524,41513,'_blocks_13_content_text','field_64d237e8bb1e4'),(262525,41513,'blocks_13_content_actions',''),(262526,41513,'_blocks_13_content_actions','field_64d237e8bb1e5'),(262527,41513,'blocks_13_content_align','left'),(262528,41513,'_blocks_13_content_align','field_64d2443e6b6aa'),(262529,41513,'blocks_13_content',''),(262530,41513,'_blocks_13_content','field_64d237e8bb1e1'),(262531,41513,'blocks_13_accordion_content','faqs'),(262532,41513,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(262533,41513,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41458\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(262534,41513,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(262535,41513,'blocks_13_actions',''),(262536,41513,'_blocks_13_actions','field_61a746a817f7a'),(262537,41514,'hide_hero','0'),(262538,41514,'_hide_hero','field_66a2380fcda39'),(262539,41514,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(262540,41514,'_hero_title','field_617571fe285e8'),(262541,41514,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(262542,41514,'_hero_text','field_6175723c285e9'),(262543,41514,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41455-4\";s:6:\"target\";s:0:\"\";}'),(262544,41514,'_hero_actions_0_button','field_61757281285eb'),(262545,41514,'hero_actions','1'),(262546,41514,'_hero_actions','field_61757270285ea'),(262547,41514,'hero_style','default'),(262548,41514,'_hero_style','field_62051d9dc5324'),(262549,41514,'_thumbnail_id','41473'),(262550,41514,'__thumbnail_id','field_617570855ddaf'),(262551,41514,'hero_image_pos_x','right'),(262552,41514,'_hero_image_pos_x','field_62ec3d05390bb'),(262553,41514,'hero_image_pos_y','top'),(262554,41514,'_hero_image_pos_y','field_62ec3d05390bc'),(262555,41514,'hero_image_pos',''),(262556,41514,'_hero_image_pos','field_62ec3d05390ba'),(262557,41514,'fft_hide_from_listings','0'),(262558,41514,'_fft_hide_from_listings','field_61f1320446ab2'),(262559,41514,'fft_page_format','default'),(262560,41514,'_fft_page_format','field_61ae213f1f218'),(262561,41514,'fft_hide_nav','0'),(262562,41514,'_fft_hide_nav','field_635bd5e43527c'),(262563,41514,'fft_hide_header_call_to_action','0'),(262564,41514,'_fft_hide_header_call_to_action','field_635bd6723527d'),(262565,41514,'fft_page_sitemap','0'),(262566,41514,'_fft_page_sitemap','field_61af9b34e8181'),(262567,41514,'blocks_0_acfe_flexible_toggle',''),(262568,41514,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(262569,41514,'blocks_0_acfe_flexible_layout_title','Icons'),(262570,41514,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(262571,41514,'blocks_0_options_theme','#b61234'),(262572,41514,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(262573,41514,'blocks_0_options_format','row'),(262574,41514,'_blocks_0_options_format','field_64bfde9a90690'),(262575,41514,'blocks_0_options',''),(262576,41514,'_blocks_0_options','field_64bfdd9b90684'),(262577,41514,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(262578,41514,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(262579,41514,'blocks_0_icon_row_items_0_label','Accreditation'),(262580,41514,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(262581,41514,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(262582,41514,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(262583,41514,'blocks_0_icon_row_items_1_icon','finance.svg'),(262584,41514,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(262585,41514,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(262586,41514,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(262587,41514,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(262588,41514,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(262589,41514,'blocks_0_icon_row_items_2_icon','progression.svg'),(262590,41514,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(262591,41514,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(262592,41514,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(262593,41514,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(262594,41514,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(262595,41514,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(262596,41514,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(262597,41514,'blocks_0_icon_row_items_3_label','Qualification'),(262598,41514,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(262599,41514,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(262600,41514,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(262601,41514,'blocks_0_icon_row_items','4'),(262602,41514,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(262603,41514,'blocks_1_acfe_flexible_toggle',''),(262604,41514,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(262605,41514,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(262606,41514,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(262607,41514,'blocks_1_options_theme','#ffffff'),(262608,41514,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(262609,41514,'blocks_1_options_reverse','0'),(262610,41514,'_blocks_1_options_reverse','field_61768049bb8ac'),(262611,41514,'blocks_1_options',''),(262612,41514,'_blocks_1_options','field_617682517c334'),(262613,41514,'blocks_1_split_5050_image','41484'),(262614,41514,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(262615,41514,'blocks_1_split_5050_video',''),(262616,41514,'_blocks_1_split_5050_video','field_6239f3160848a'),(262617,41514,'blocks_1_split_5050_content_title',''),(262618,41514,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(262619,41514,'blocks_1_split_5050_content_heading','Course Overview'),(262620,41514,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(262621,41514,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(262622,41514,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(262623,41514,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(262624,41514,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(262625,41514,'blocks_1_split_5050_content_actions','1'),(262626,41514,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(262627,41514,'blocks_1_split_5050_content',''),(262628,41514,'_blocks_1_split_5050_content','field_61767afceb8ba'),(262629,41514,'blocks_2_acfe_flexible_toggle',''),(262630,41514,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(262631,41514,'blocks_2_acfe_flexible_layout_title','Form'),(262632,41514,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(262633,41514,'blocks_2_row_content_format','standard'),(262634,41514,'_blocks_2_row_content_format','field_6481ead962881'),(262635,41514,'blocks_2_row_content_title',''),(262636,41514,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(262637,41514,'blocks_2_row_content_heading','Enquire Today'),(262638,41514,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(262639,41514,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(262640,41514,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(262641,41514,'blocks_2_row_content_actions',''),(262642,41514,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(262643,41514,'blocks_2_row_content',''),(262644,41514,'_blocks_2_row_content','field_61a0f5f5b3db0'),(262645,41514,'blocks_2_row_form','40394'),(262646,41514,'_blocks_2_row_form','field_61a4ff2c0b08e'),(262647,41514,'blocks_2_row_form_button_label',''),(262648,41514,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(262649,41514,'blocks_3_acfe_flexible_toggle',''),(262650,41514,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(262651,41514,'blocks_3_acfe_flexible_layout_title','Video'),(262652,41514,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(262653,41514,'blocks_3_size','large'),(262654,41514,'_blocks_3_size','field_6487038f297c1'),(262655,41514,'blocks_3_row_content_title',''),(262656,41514,'_blocks_3_row_content_title','field_64870132a865d'),(262657,41514,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(262658,41514,'_blocks_3_row_content_heading','field_64870142a865e'),(262659,41514,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(262660,41514,'_blocks_3_row_content_text','field_64870148a865f'),(262661,41514,'blocks_3_row_content',''),(262662,41514,'_blocks_3_row_content','field_6487008ba865c'),(262663,41514,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(262664,41514,'_blocks_3_video_src','field_6193c4a98ec07'),(262665,41514,'blocks_3_video_thumbnail',''),(262666,41514,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(262667,41514,'blocks_4_acfe_flexible_toggle',''),(262668,41514,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(262669,41514,'blocks_4_acfe_flexible_layout_title','Template'),(262670,41514,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(262671,41514,'blocks_4_template','39207'),(262672,41514,'_blocks_4_template','field_617bdd570fe01'),(262673,41514,'blocks_5_acfe_flexible_toggle','1'),(262674,41514,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(262675,41514,'blocks_5_acfe_flexible_layout_title','Tabs'),(262676,41514,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(262677,41514,'blocks_5_options_theme','#ffffff'),(262678,41514,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(262679,41514,'blocks_5_options',''),(262680,41514,'_blocks_5_options','field_6177cfcd8140f'),(262681,41514,'blocks_5_tabs_0_tab_label','Entry requirements'),(262682,41514,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(262683,41514,'blocks_5_tabs_0_tab_content_title',''),(262684,41514,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(262685,41514,'blocks_5_tabs_0_tab_content_heading',''),(262686,41514,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(262687,41514,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(262688,41514,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(262689,41514,'blocks_5_tabs_0_tab_content_actions',''),(262690,41514,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(262691,41514,'blocks_5_tabs_0_tab_content',''),(262692,41514,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(262693,41514,'blocks_5_tabs_0_tab_image',''),(262694,41514,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(262695,41514,'blocks_5_tabs_1_tab_label','Learning format'),(262696,41514,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(262697,41514,'blocks_5_tabs_1_tab_content_title',''),(262698,41514,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(262699,41514,'blocks_5_tabs_1_tab_content_heading',''),(262700,41514,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(262701,41514,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(262702,41514,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(262703,41514,'blocks_5_tabs_1_tab_content_actions',''),(262704,41514,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(262705,41514,'blocks_5_tabs_1_tab_content',''),(262706,41514,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(262707,41514,'blocks_5_tabs_1_tab_image',''),(262708,41514,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(262709,41514,'blocks_5_tabs_2_tab_label','Qualifications included'),(262710,41514,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(262711,41514,'blocks_5_tabs_2_tab_content_title',''),(262712,41514,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(262713,41514,'blocks_5_tabs_2_tab_content_heading',''),(262714,41514,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(262715,41514,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(262716,41514,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(262717,41514,'blocks_5_tabs_2_tab_content_actions',''),(262718,41514,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(262719,41514,'blocks_5_tabs_2_tab_content',''),(262720,41514,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(262721,41514,'blocks_5_tabs_2_tab_image',''),(262722,41514,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(262723,41514,'blocks_5_tabs','3'),(262724,41514,'_blocks_5_tabs','field_6177cff281419'),(262725,41514,'blocks_6_acfe_flexible_toggle',''),(262726,41514,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(262727,41514,'blocks_6_acfe_flexible_layout_title','Icons'),(262728,41514,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(262729,41514,'blocks_6_options_theme','#f5f5f5'),(262730,41514,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(262731,41514,'blocks_6_options_format','stacked'),(262732,41514,'_blocks_6_options_format','field_64bfde9a90690'),(262733,41514,'blocks_6_options',''),(262734,41514,'_blocks_6_options','field_64bfdd9b90684'),(262735,41514,'blocks_6_row_content_title','Options available to pay for your course'),(262736,41514,'_blocks_6_row_content_title','field_64bfdd9b90687'),(262737,41514,'blocks_6_row_content_heading','Fees & Funding Options '),(262738,41514,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(262739,41514,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(262740,41514,'_blocks_6_row_content_text','field_64bfdd9b90689'),(262741,41514,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(262742,41514,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(262743,41514,'blocks_6_row_content_actions','1'),(262744,41514,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(262745,41514,'blocks_6_row_content',''),(262746,41514,'_blocks_6_row_content','field_64bfdd9b90686'),(262747,41514,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(262748,41514,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(262749,41514,'blocks_6_icon_row_items_0_label','Pay in full'),(262750,41514,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(262751,41514,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(262752,41514,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(262753,41514,'blocks_6_icon_row_items_1_icon','finance.svg'),(262754,41514,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(262755,41514,'blocks_6_icon_row_items_1_label','0% finance'),(262756,41514,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(262757,41514,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(262758,41514,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(262759,41514,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(262760,41514,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(262761,41514,'blocks_6_icon_row_items_2_label','Deposit & balance'),(262762,41514,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(262763,41514,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(262764,41514,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(262765,41514,'blocks_6_icon_row_items','3'),(262766,41514,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(262767,41514,'blocks_7_acfe_flexible_toggle',''),(262768,41514,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(262769,41514,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(262770,41514,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(262771,41514,'blocks_7_options_theme','#ffffff'),(262772,41514,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(262773,41514,'blocks_7_options_reverse','0'),(262774,41514,'_blocks_7_options_reverse','field_61768049bb8ac'),(262775,41514,'blocks_7_options',''),(262776,41514,'_blocks_7_options','field_617682517c334'),(262777,41514,'blocks_7_split_5050_image','41483'),(262778,41514,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(262779,41514,'blocks_7_split_5050_video',''),(262780,41514,'_blocks_7_split_5050_video','field_6239f3160848a'),(262781,41514,'blocks_7_split_5050_content_title',''),(262782,41514,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(262783,41514,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(262784,41514,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(262785,41514,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(262786,41514,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(262787,41514,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:8:\"#41455-3\";s:6:\"target\";s:0:\"\";}'),(262788,41514,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(262789,41514,'blocks_7_split_5050_content_actions','1'),(262790,41514,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(262791,41514,'blocks_7_split_5050_content',''),(262792,41514,'_blocks_7_split_5050_content','field_61767afceb8ba'),(262793,41514,'blocks_8_acfe_flexible_toggle',''),(262794,41514,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(262795,41514,'blocks_8_acfe_flexible_layout_title','Icons'),(262796,41514,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(262797,41514,'blocks_8_options_theme','#f5f5f5'),(262798,41514,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(262799,41514,'blocks_8_options_format','row'),(262800,41514,'_blocks_8_options_format','field_64bfde9a90690'),(262801,41514,'blocks_8_options',''),(262802,41514,'_blocks_8_options','field_64bfdd9b90684'),(262803,41514,'blocks_8_icon_row_items_0_icon','qualification.svg'),(262804,41514,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(262805,41514,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(262806,41514,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(262807,41514,'blocks_8_icon_row_items_0_text',''),(262808,41514,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(262809,41514,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(262810,41514,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(262811,41514,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(262812,41514,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(262813,41514,'blocks_8_icon_row_items_1_text',''),(262814,41514,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(262815,41514,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(262816,41514,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(262817,41514,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(262818,41514,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(262819,41514,'blocks_8_icon_row_items_2_text',''),(262820,41514,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(262821,41514,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(262822,41514,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(262823,41514,'blocks_8_icon_row_items_3_label','Flexible funding options'),(262824,41514,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(262825,41514,'blocks_8_icon_row_items_3_text',''),(262826,41514,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(262827,41514,'blocks_8_icon_row_items','4'),(262828,41514,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(262829,41514,'blocks_9_acfe_flexible_toggle',''),(262830,41514,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(262831,41514,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(262832,41514,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(262833,41514,'blocks_9_options_theme','#ffffff'),(262834,41514,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(262835,41514,'blocks_9_options_reverse','1'),(262836,41514,'_blocks_9_options_reverse','field_61768049bb8ac'),(262837,41514,'blocks_9_options',''),(262838,41514,'_blocks_9_options','field_617682517c334'),(262839,41514,'blocks_9_split_5050_image','39224'),(262840,41514,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(262841,41514,'blocks_9_split_5050_video',''),(262842,41514,'_blocks_9_split_5050_video','field_6239f3160848a'),(262843,41514,'blocks_9_split_5050_content_title','Locations'),(262844,41514,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(262845,41514,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(262846,41514,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(262847,41514,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(262848,41514,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(262849,41514,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:8:\"#41455-3\";s:6:\"target\";s:0:\"\";}'),(262850,41514,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(262851,41514,'blocks_9_split_5050_content_actions','1'),(262852,41514,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(262853,41514,'blocks_9_split_5050_content',''),(262854,41514,'_blocks_9_split_5050_content','field_61767afceb8ba'),(262855,41514,'blocks_10_acfe_flexible_toggle','1'),(262856,41514,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(262857,41514,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(262858,41514,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(262859,41514,'blocks_10_options_theme','#ffffff'),(262860,41514,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(262861,41514,'blocks_10_options',''),(262862,41514,'_blocks_10_options','field_617ac0b7f6c08'),(262863,41514,'blocks_10_show','selection'),(262864,41514,'_blocks_10_show','field_61a49cba9d946'),(262865,41514,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(262866,41514,'_blocks_10_courses','field_61b244781ee0a'),(262867,41514,'blocks_10_open_whats_included','1'),(262868,41514,'_blocks_10_open_whats_included','field_66ebfd679450c'),(262869,41514,'blocks_10_open_key_information','0'),(262870,41514,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(262871,41514,'blocks_10_open',''),(262872,41514,'_blocks_10_open','field_66ebfd009450b'),(262873,41514,'blocks_11_acfe_flexible_toggle',''),(262874,41514,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(262875,41514,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(262876,41514,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(262877,41514,'blocks_11_options_theme','#ffffff'),(262878,41514,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(262879,41514,'blocks_11_options_reverse','0'),(262880,41514,'_blocks_11_options_reverse','field_61768049bb8ac'),(262881,41514,'blocks_11_options',''),(262882,41514,'_blocks_11_options','field_617682517c334'),(262883,41514,'blocks_11_split_5050_image','41495'),(262884,41514,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(262885,41514,'blocks_11_split_5050_video',''),(262886,41514,'_blocks_11_split_5050_video','field_6239f3160848a'),(262887,41514,'blocks_11_split_5050_content_title','Optimise Performance '),(262888,41514,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(262889,41514,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(262890,41514,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(262891,41514,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(262892,41514,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(262893,41514,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:8:\"#41455-3\";s:6:\"target\";s:0:\"\";}'),(262894,41514,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(262895,41514,'blocks_11_split_5050_content_actions','1'),(262896,41514,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(262897,41514,'blocks_11_split_5050_content',''),(262898,41514,'_blocks_11_split_5050_content','field_61767afceb8ba'),(262899,41514,'blocks_12_acfe_flexible_toggle',''),(262900,41514,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(262901,41514,'blocks_12_acfe_flexible_layout_title','Template'),(262902,41514,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(262903,41514,'blocks_12_template','40987'),(262904,41514,'_blocks_12_template','field_617bdd570fe01'),(262905,41514,'blocks_13_acfe_flexible_toggle',''),(262906,41514,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(262907,41514,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(262908,41514,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(262909,41514,'blocks_13_options_theme','#f5f5f5'),(262910,41514,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(262911,41514,'blocks_13_options_state','0'),(262912,41514,'_blocks_13_options_state','field_6239fcb7508c5'),(262913,41514,'blocks_13_options',''),(262914,41514,'_blocks_13_options','field_6177e2991ac44'),(262915,41514,'blocks_13_content_title',''),(262916,41514,'_blocks_13_content_title','field_64d237e8bb1e2'),(262917,41514,'blocks_13_content_heading','FAQ\'s'),(262918,41514,'_blocks_13_content_heading','field_64d237e8bb1e3'),(262919,41514,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(262920,41514,'_blocks_13_content_text','field_64d237e8bb1e4'),(262921,41514,'blocks_13_content_actions',''),(262922,41514,'_blocks_13_content_actions','field_64d237e8bb1e5'),(262923,41514,'blocks_13_content_align','left'),(262924,41514,'_blocks_13_content_align','field_64d2443e6b6aa'),(262925,41514,'blocks_13_content',''),(262926,41514,'_blocks_13_content','field_64d237e8bb1e1'),(262927,41514,'blocks_13_accordion_content','faqs'),(262928,41514,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(262929,41514,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41458\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(262930,41514,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(262931,41514,'blocks_13_actions',''),(262932,41514,'_blocks_13_actions','field_61a746a817f7a'),(262933,41514,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(262934,41514,'_blocks','field_6176696113096'),(262935,41514,'course_label_text',''),(262936,41514,'_course_label_text','field_61e17babf71fa'),(262937,41514,'course_label',''),(262938,41514,'_course_label','field_61e12f92749a7'),(262939,41514,'course_description',''),(262940,41514,'_course_description','field_617ac5788e5e1'),(262941,41514,'course_key_info',''),(262942,41514,'_course_key_info','field_617ac6ad8e5e2'),(262943,41514,'course_included',''),(262944,41514,'_course_included','field_617ac6f08e5e4'),(262945,41515,'hide_hero','0'),(262946,41515,'_hide_hero','field_66a2380fcda39'),(262947,41515,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(262948,41515,'_hero_title','field_617571fe285e8'),(262949,41515,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(262950,41515,'_hero_text','field_6175723c285e9'),(262951,41515,'hero_actions','1'),(262952,41515,'_hero_actions','field_61757270285ea'),(262953,41515,'hero_style','default'),(262954,41515,'_hero_style','field_62051d9dc5324'),(262955,41515,'_thumbnail_id','41473'),(262956,41515,'__thumbnail_id','field_617570855ddaf'),(262957,41515,'hero_image_pos_x','right'),(262958,41515,'_hero_image_pos_x','field_62ec3d05390bb'),(262959,41515,'hero_image_pos_y','top'),(262960,41515,'_hero_image_pos_y','field_62ec3d05390bc'),(262961,41515,'hero_image_pos',''),(262962,41515,'_hero_image_pos','field_62ec3d05390ba'),(262963,41515,'fft_hide_from_listings','0'),(262964,41515,'_fft_hide_from_listings','field_61f1320446ab2'),(262965,41515,'fft_page_format','default'),(262966,41515,'_fft_page_format','field_61ae213f1f218'),(262967,41515,'fft_hide_nav','0'),(262968,41515,'_fft_hide_nav','field_635bd5e43527c'),(262969,41515,'fft_hide_header_call_to_action','0'),(262970,41515,'_fft_hide_header_call_to_action','field_635bd6723527d'),(262971,41515,'fft_page_sitemap','0'),(262972,41515,'_fft_page_sitemap','field_61af9b34e8181'),(262973,41515,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(262974,41515,'_blocks','field_6176696113096'),(262975,41515,'course_label_text',''),(262976,41515,'_course_label_text','field_61e17babf71fa'),(262977,41515,'course_label',''),(262978,41515,'_course_label','field_61e12f92749a7'),(262979,41515,'course_description',''),(262980,41515,'_course_description','field_617ac5788e5e1'),(262981,41515,'course_key_info',''),(262982,41515,'_course_key_info','field_617ac6ad8e5e2'),(262983,41515,'course_included',''),(262984,41515,'_course_included','field_617ac6f08e5e4'),(262985,41515,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41455-4\";s:6:\"target\";s:0:\"\";}'),(262986,41515,'_hero_actions_0_button','field_61757281285eb'),(262987,41515,'blocks_0_acfe_flexible_toggle',''),(262988,41515,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(262989,41515,'blocks_0_acfe_flexible_layout_title','Icons'),(262990,41515,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(262991,41515,'blocks_0_options_theme','#b61234'),(262992,41515,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(262993,41515,'blocks_0_options_format','row'),(262994,41515,'_blocks_0_options_format','field_64bfde9a90690'),(262995,41515,'blocks_0_options',''),(262996,41515,'_blocks_0_options','field_64bfdd9b90684'),(262997,41515,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(262998,41515,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(262999,41515,'blocks_0_icon_row_items_0_label','Accreditation'),(263000,41515,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(263001,41515,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(263002,41515,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(263003,41515,'blocks_0_icon_row_items_1_icon','finance.svg'),(263004,41515,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(263005,41515,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(263006,41515,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(263007,41515,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(263008,41515,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(263009,41515,'blocks_0_icon_row_items_2_icon','progression.svg'),(263010,41515,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(263011,41515,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(263012,41515,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(263013,41515,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(263014,41515,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(263015,41515,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(263016,41515,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(263017,41515,'blocks_0_icon_row_items_3_label','Qualification'),(263018,41515,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(263019,41515,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(263020,41515,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(263021,41515,'blocks_0_icon_row_items','4'),(263022,41515,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(263023,41515,'blocks_5_acfe_flexible_toggle','1'),(263024,41515,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(263025,41515,'blocks_5_acfe_flexible_layout_title','Tabs'),(263026,41515,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(263027,41515,'blocks_5_options_theme','#ffffff'),(263028,41515,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(263029,41515,'blocks_5_options',''),(263030,41515,'_blocks_5_options','field_6177cfcd8140f'),(263031,41515,'blocks_5_tabs_0_tab_label','Entry requirements'),(263032,41515,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(263033,41515,'blocks_5_tabs_0_tab_content_title',''),(263034,41515,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(263035,41515,'blocks_5_tabs_0_tab_content_heading',''),(263036,41515,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(263037,41515,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(263038,41515,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(263039,41515,'blocks_5_tabs_0_tab_content_actions',''),(263040,41515,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(263041,41515,'blocks_5_tabs_0_tab_content',''),(263042,41515,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(263043,41515,'blocks_5_tabs_0_tab_image',''),(263044,41515,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(263045,41515,'blocks_5_tabs_1_tab_label','Learning format'),(263046,41515,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(263047,41515,'blocks_5_tabs_1_tab_content_title',''),(263048,41515,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(263049,41515,'blocks_5_tabs_1_tab_content_heading',''),(263050,41515,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(263051,41515,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(263052,41515,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(263053,41515,'blocks_5_tabs_1_tab_content_actions',''),(263054,41515,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(263055,41515,'blocks_5_tabs_1_tab_content',''),(263056,41515,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(263057,41515,'blocks_5_tabs_1_tab_image',''),(263058,41515,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(263059,41515,'blocks_5_tabs_2_tab_label','Qualifications included'),(263060,41515,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(263061,41515,'blocks_5_tabs_2_tab_content_title',''),(263062,41515,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(263063,41515,'blocks_5_tabs_2_tab_content_heading',''),(263064,41515,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(263065,41515,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(263066,41515,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(263067,41515,'blocks_5_tabs_2_tab_content_actions',''),(263068,41515,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(263069,41515,'blocks_5_tabs_2_tab_content',''),(263070,41515,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(263071,41515,'blocks_5_tabs_2_tab_image',''),(263072,41515,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(263073,41515,'blocks_5_tabs','3');
INSERT INTO `6m7_postmeta` VALUES (263074,41515,'_blocks_5_tabs','field_6177cff281419'),(263075,41515,'blocks_4_acfe_flexible_toggle',''),(263076,41515,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(263077,41515,'blocks_4_acfe_flexible_layout_title','Template'),(263078,41515,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(263079,41515,'blocks_4_template','39207'),(263080,41515,'_blocks_4_template','field_617bdd570fe01'),(263081,41515,'blocks_6_acfe_flexible_toggle',''),(263082,41515,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(263083,41515,'blocks_6_acfe_flexible_layout_title','Icons'),(263084,41515,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(263085,41515,'blocks_6_options_theme','#f5f5f5'),(263086,41515,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(263087,41515,'blocks_6_options_format','stacked'),(263088,41515,'_blocks_6_options_format','field_64bfde9a90690'),(263089,41515,'blocks_6_options',''),(263090,41515,'_blocks_6_options','field_64bfdd9b90684'),(263091,41515,'blocks_6_row_content_title','Options available to pay for your course'),(263092,41515,'_blocks_6_row_content_title','field_64bfdd9b90687'),(263093,41515,'blocks_6_row_content_heading','Fees & Funding Options '),(263094,41515,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(263095,41515,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(263096,41515,'_blocks_6_row_content_text','field_64bfdd9b90689'),(263097,41515,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(263098,41515,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(263099,41515,'blocks_6_row_content_actions','1'),(263100,41515,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(263101,41515,'blocks_6_row_content',''),(263102,41515,'_blocks_6_row_content','field_64bfdd9b90686'),(263103,41515,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(263104,41515,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(263105,41515,'blocks_6_icon_row_items_0_label','Pay in full'),(263106,41515,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(263107,41515,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(263108,41515,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(263109,41515,'blocks_6_icon_row_items_1_icon','finance.svg'),(263110,41515,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(263111,41515,'blocks_6_icon_row_items_1_label','0% finance'),(263112,41515,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(263113,41515,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(263114,41515,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(263115,41515,'blocks_6_icon_row_items','3'),(263116,41515,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(263117,41515,'blocks_7_acfe_flexible_toggle',''),(263118,41515,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(263119,41515,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(263120,41515,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(263121,41515,'blocks_7_options_theme','#ffffff'),(263122,41515,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(263123,41515,'blocks_7_options_reverse','0'),(263124,41515,'_blocks_7_options_reverse','field_61768049bb8ac'),(263125,41515,'blocks_7_options',''),(263126,41515,'_blocks_7_options','field_617682517c334'),(263127,41515,'blocks_7_split_5050_image','41483'),(263128,41515,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(263129,41515,'blocks_7_split_5050_video',''),(263130,41515,'_blocks_7_split_5050_video','field_6239f3160848a'),(263131,41515,'blocks_7_split_5050_content_title',''),(263132,41515,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(263133,41515,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(263134,41515,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(263135,41515,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(263136,41515,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(263137,41515,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(263138,41515,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(263139,41515,'blocks_7_split_5050_content_actions','1'),(263140,41515,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(263141,41515,'blocks_7_split_5050_content',''),(263142,41515,'_blocks_7_split_5050_content','field_61767afceb8ba'),(263143,41515,'blocks_8_acfe_flexible_toggle',''),(263144,41515,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(263145,41515,'blocks_8_acfe_flexible_layout_title','Icons'),(263146,41515,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(263147,41515,'blocks_8_options_theme','#f5f5f5'),(263148,41515,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(263149,41515,'blocks_8_options_format','row'),(263150,41515,'_blocks_8_options_format','field_64bfde9a90690'),(263151,41515,'blocks_8_options',''),(263152,41515,'_blocks_8_options','field_64bfdd9b90684'),(263153,41515,'blocks_8_icon_row_items_0_icon','qualification.svg'),(263154,41515,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(263155,41515,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(263156,41515,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(263157,41515,'blocks_8_icon_row_items_0_text',''),(263158,41515,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(263159,41515,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(263160,41515,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(263161,41515,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(263162,41515,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(263163,41515,'blocks_8_icon_row_items_1_text',''),(263164,41515,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(263165,41515,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(263166,41515,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(263167,41515,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(263168,41515,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(263169,41515,'blocks_8_icon_row_items_2_text',''),(263170,41515,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(263171,41515,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(263172,41515,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(263173,41515,'blocks_8_icon_row_items_3_label','Flexible funding options'),(263174,41515,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(263175,41515,'blocks_8_icon_row_items_3_text',''),(263176,41515,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(263177,41515,'blocks_8_icon_row_items','4'),(263178,41515,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(263179,41515,'blocks_9_acfe_flexible_toggle',''),(263180,41515,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(263181,41515,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(263182,41515,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(263183,41515,'blocks_9_options_theme','#ffffff'),(263184,41515,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(263185,41515,'blocks_9_options_reverse','1'),(263186,41515,'_blocks_9_options_reverse','field_61768049bb8ac'),(263187,41515,'blocks_9_options',''),(263188,41515,'_blocks_9_options','field_617682517c334'),(263189,41515,'blocks_9_split_5050_image','39224'),(263190,41515,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(263191,41515,'blocks_9_split_5050_video',''),(263192,41515,'_blocks_9_split_5050_video','field_6239f3160848a'),(263193,41515,'blocks_9_split_5050_content_title','Locations'),(263194,41515,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(263195,41515,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(263196,41515,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(263197,41515,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(263198,41515,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(263199,41515,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:8:\"#41455-3\";s:6:\"target\";s:0:\"\";}'),(263200,41515,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(263201,41515,'blocks_9_split_5050_content_actions','1'),(263202,41515,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(263203,41515,'blocks_9_split_5050_content',''),(263204,41515,'_blocks_9_split_5050_content','field_61767afceb8ba'),(263205,41515,'blocks_1_acfe_flexible_toggle',''),(263206,41515,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(263207,41515,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(263208,41515,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(263209,41515,'blocks_1_options_theme','#ffffff'),(263210,41515,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(263211,41515,'blocks_1_options_reverse','0'),(263212,41515,'_blocks_1_options_reverse','field_61768049bb8ac'),(263213,41515,'blocks_1_options',''),(263214,41515,'_blocks_1_options','field_617682517c334'),(263215,41515,'blocks_1_split_5050_image','41484'),(263216,41515,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(263217,41515,'blocks_1_split_5050_video',''),(263218,41515,'_blocks_1_split_5050_video','field_6239f3160848a'),(263219,41515,'blocks_1_split_5050_content_title',''),(263220,41515,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(263221,41515,'blocks_1_split_5050_content_heading','Course Overview'),(263222,41515,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(263223,41515,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(263224,41515,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(263225,41515,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(263226,41515,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(263227,41515,'blocks_1_split_5050_content_actions','1'),(263228,41515,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(263229,41515,'blocks_1_split_5050_content',''),(263230,41515,'_blocks_1_split_5050_content','field_61767afceb8ba'),(263231,41515,'blocks_2_acfe_flexible_toggle',''),(263232,41515,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(263233,41515,'blocks_2_acfe_flexible_layout_title','Form'),(263234,41515,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(263235,41515,'blocks_2_row_content_format','standard'),(263236,41515,'_blocks_2_row_content_format','field_6481ead962881'),(263237,41515,'blocks_2_row_content_title',''),(263238,41515,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(263239,41515,'blocks_2_row_content_heading','Enquire Today'),(263240,41515,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(263241,41515,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(263242,41515,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(263243,41515,'blocks_2_row_content_actions',''),(263244,41515,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(263245,41515,'blocks_2_row_content',''),(263246,41515,'_blocks_2_row_content','field_61a0f5f5b3db0'),(263247,41515,'blocks_2_row_form','40394'),(263248,41515,'_blocks_2_row_form','field_61a4ff2c0b08e'),(263249,41515,'blocks_2_row_form_button_label',''),(263250,41515,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(263251,41515,'blocks_3_acfe_flexible_toggle',''),(263252,41515,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(263253,41515,'blocks_3_acfe_flexible_layout_title','Video'),(263254,41515,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(263255,41515,'blocks_3_size','large'),(263256,41515,'_blocks_3_size','field_6487038f297c1'),(263257,41515,'blocks_3_row_content_title',''),(263258,41515,'_blocks_3_row_content_title','field_64870132a865d'),(263259,41515,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(263260,41515,'_blocks_3_row_content_heading','field_64870142a865e'),(263261,41515,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(263262,41515,'_blocks_3_row_content_text','field_64870148a865f'),(263263,41515,'blocks_3_row_content',''),(263264,41515,'_blocks_3_row_content','field_6487008ba865c'),(263265,41515,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(263266,41515,'_blocks_3_video_src','field_6193c4a98ec07'),(263267,41515,'blocks_3_video_thumbnail',''),(263268,41515,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(263269,41515,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(263270,41515,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(263271,41515,'blocks_6_icon_row_items_2_label','Deposit & balance'),(263272,41515,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(263273,41515,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(263274,41515,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(263275,41515,'blocks_10_acfe_flexible_toggle','1'),(263276,41515,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(263277,41515,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(263278,41515,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(263279,41515,'blocks_10_options_theme','#ffffff'),(263280,41515,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(263281,41515,'blocks_10_options',''),(263282,41515,'_blocks_10_options','field_617ac0b7f6c08'),(263283,41515,'blocks_10_show','selection'),(263284,41515,'_blocks_10_show','field_61a49cba9d946'),(263285,41515,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(263286,41515,'_blocks_10_courses','field_61b244781ee0a'),(263287,41515,'blocks_10_open_whats_included','1'),(263288,41515,'_blocks_10_open_whats_included','field_66ebfd679450c'),(263289,41515,'blocks_10_open_key_information','0'),(263290,41515,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(263291,41515,'blocks_10_open',''),(263292,41515,'_blocks_10_open','field_66ebfd009450b'),(263293,41515,'blocks_11_acfe_flexible_toggle',''),(263294,41515,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(263295,41515,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(263296,41515,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(263297,41515,'blocks_11_options_theme','#ffffff'),(263298,41515,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(263299,41515,'blocks_11_options_reverse','0'),(263300,41515,'_blocks_11_options_reverse','field_61768049bb8ac'),(263301,41515,'blocks_11_options',''),(263302,41515,'_blocks_11_options','field_617682517c334'),(263303,41515,'blocks_11_split_5050_image','41495'),(263304,41515,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(263305,41515,'blocks_11_split_5050_video',''),(263306,41515,'_blocks_11_split_5050_video','field_6239f3160848a'),(263307,41515,'blocks_11_split_5050_content_title','Optimise Performance '),(263308,41515,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(263309,41515,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(263310,41515,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(263311,41515,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(263312,41515,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(263313,41515,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(263314,41515,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(263315,41515,'blocks_11_split_5050_content_actions','1'),(263316,41515,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(263317,41515,'blocks_11_split_5050_content',''),(263318,41515,'_blocks_11_split_5050_content','field_61767afceb8ba'),(263319,41515,'blocks_12_acfe_flexible_toggle',''),(263320,41515,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(263321,41515,'blocks_12_acfe_flexible_layout_title','Template'),(263322,41515,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(263323,41515,'blocks_12_template','40987'),(263324,41515,'_blocks_12_template','field_617bdd570fe01'),(263325,41515,'blocks_13_acfe_flexible_toggle',''),(263326,41515,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(263327,41515,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(263328,41515,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(263329,41515,'blocks_13_options_theme','#f5f5f5'),(263330,41515,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(263331,41515,'blocks_13_options_state','0'),(263332,41515,'_blocks_13_options_state','field_6239fcb7508c5'),(263333,41515,'blocks_13_options',''),(263334,41515,'_blocks_13_options','field_6177e2991ac44'),(263335,41515,'blocks_13_content_title',''),(263336,41515,'_blocks_13_content_title','field_64d237e8bb1e2'),(263337,41515,'blocks_13_content_heading','FAQ\'s'),(263338,41515,'_blocks_13_content_heading','field_64d237e8bb1e3'),(263339,41515,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(263340,41515,'_blocks_13_content_text','field_64d237e8bb1e4'),(263341,41515,'blocks_13_content_actions',''),(263342,41515,'_blocks_13_content_actions','field_64d237e8bb1e5'),(263343,41515,'blocks_13_content_align','left'),(263344,41515,'_blocks_13_content_align','field_64d2443e6b6aa'),(263345,41515,'blocks_13_content',''),(263346,41515,'_blocks_13_content','field_64d237e8bb1e1'),(263347,41515,'blocks_13_accordion_content','faqs'),(263348,41515,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(263349,41515,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41458\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(263350,41515,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(263351,41515,'blocks_13_actions',''),(263352,41515,'_blocks_13_actions','field_61a746a817f7a'),(263353,41516,'hide_hero','0'),(263354,41516,'_hide_hero','field_66a2380fcda39'),(263355,41516,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(263356,41516,'_hero_title','field_617571fe285e8'),(263357,41516,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(263358,41516,'_hero_text','field_6175723c285e9'),(263359,41516,'hero_actions','1'),(263360,41516,'_hero_actions','field_61757270285ea'),(263361,41516,'hero_style','default'),(263362,41516,'_hero_style','field_62051d9dc5324'),(263363,41516,'_thumbnail_id','41473'),(263364,41516,'__thumbnail_id','field_617570855ddaf'),(263365,41516,'hero_image_pos_x','right'),(263366,41516,'_hero_image_pos_x','field_62ec3d05390bb'),(263367,41516,'hero_image_pos_y','top'),(263368,41516,'_hero_image_pos_y','field_62ec3d05390bc'),(263369,41516,'hero_image_pos',''),(263370,41516,'_hero_image_pos','field_62ec3d05390ba'),(263371,41516,'fft_hide_from_listings','0'),(263372,41516,'_fft_hide_from_listings','field_61f1320446ab2'),(263373,41516,'fft_page_format','default'),(263374,41516,'_fft_page_format','field_61ae213f1f218'),(263375,41516,'fft_hide_nav','0'),(263376,41516,'_fft_hide_nav','field_635bd5e43527c'),(263377,41516,'fft_hide_header_call_to_action','0'),(263378,41516,'_fft_hide_header_call_to_action','field_635bd6723527d'),(263379,41516,'fft_page_sitemap','0'),(263380,41516,'_fft_page_sitemap','field_61af9b34e8181'),(263381,41516,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(263382,41516,'_blocks','field_6176696113096'),(263383,41516,'course_label_text',''),(263384,41516,'_course_label_text','field_61e17babf71fa'),(263385,41516,'course_label',''),(263386,41516,'_course_label','field_61e12f92749a7'),(263387,41516,'course_description',''),(263388,41516,'_course_description','field_617ac5788e5e1'),(263389,41516,'course_key_info',''),(263390,41516,'_course_key_info','field_617ac6ad8e5e2'),(263391,41516,'course_included',''),(263392,41516,'_course_included','field_617ac6f08e5e4'),(263393,41516,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41455-4\";s:6:\"target\";s:0:\"\";}'),(263394,41516,'_hero_actions_0_button','field_61757281285eb'),(263395,41516,'blocks_0_acfe_flexible_toggle',''),(263396,41516,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(263397,41516,'blocks_0_acfe_flexible_layout_title','Icons'),(263398,41516,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(263399,41516,'blocks_0_options_theme','#b61234'),(263400,41516,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(263401,41516,'blocks_0_options_format','row'),(263402,41516,'_blocks_0_options_format','field_64bfde9a90690'),(263403,41516,'blocks_0_options',''),(263404,41516,'_blocks_0_options','field_64bfdd9b90684'),(263405,41516,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(263406,41516,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(263407,41516,'blocks_0_icon_row_items_0_label','Accreditation'),(263408,41516,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(263409,41516,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(263410,41516,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(263411,41516,'blocks_0_icon_row_items_1_icon','finance.svg'),(263412,41516,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(263413,41516,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(263414,41516,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(263415,41516,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(263416,41516,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(263417,41516,'blocks_0_icon_row_items_2_icon','progression.svg'),(263418,41516,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(263419,41516,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(263420,41516,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(263421,41516,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(263422,41516,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(263423,41516,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(263424,41516,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(263425,41516,'blocks_0_icon_row_items_3_label','Qualification'),(263426,41516,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(263427,41516,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(263428,41516,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(263429,41516,'blocks_0_icon_row_items','4'),(263430,41516,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(263431,41516,'blocks_5_acfe_flexible_toggle','1'),(263432,41516,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(263433,41516,'blocks_5_acfe_flexible_layout_title','Tabs'),(263434,41516,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(263435,41516,'blocks_5_options_theme','#ffffff'),(263436,41516,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(263437,41516,'blocks_5_options',''),(263438,41516,'_blocks_5_options','field_6177cfcd8140f'),(263439,41516,'blocks_5_tabs_0_tab_label','Entry requirements'),(263440,41516,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(263441,41516,'blocks_5_tabs_0_tab_content_title',''),(263442,41516,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(263443,41516,'blocks_5_tabs_0_tab_content_heading',''),(263444,41516,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(263445,41516,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(263446,41516,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(263447,41516,'blocks_5_tabs_0_tab_content_actions',''),(263448,41516,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(263449,41516,'blocks_5_tabs_0_tab_content',''),(263450,41516,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(263451,41516,'blocks_5_tabs_0_tab_image',''),(263452,41516,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(263453,41516,'blocks_5_tabs_1_tab_label','Learning format'),(263454,41516,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(263455,41516,'blocks_5_tabs_1_tab_content_title',''),(263456,41516,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(263457,41516,'blocks_5_tabs_1_tab_content_heading',''),(263458,41516,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(263459,41516,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(263460,41516,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(263461,41516,'blocks_5_tabs_1_tab_content_actions',''),(263462,41516,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(263463,41516,'blocks_5_tabs_1_tab_content',''),(263464,41516,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(263465,41516,'blocks_5_tabs_1_tab_image',''),(263466,41516,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(263467,41516,'blocks_5_tabs_2_tab_label','Qualifications included'),(263468,41516,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(263469,41516,'blocks_5_tabs_2_tab_content_title',''),(263470,41516,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(263471,41516,'blocks_5_tabs_2_tab_content_heading',''),(263472,41516,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(263473,41516,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(263474,41516,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(263475,41516,'blocks_5_tabs_2_tab_content_actions',''),(263476,41516,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(263477,41516,'blocks_5_tabs_2_tab_content',''),(263478,41516,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(263479,41516,'blocks_5_tabs_2_tab_image',''),(263480,41516,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(263481,41516,'blocks_5_tabs','3'),(263482,41516,'_blocks_5_tabs','field_6177cff281419'),(263483,41516,'blocks_4_acfe_flexible_toggle',''),(263484,41516,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(263485,41516,'blocks_4_acfe_flexible_layout_title','Template'),(263486,41516,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(263487,41516,'blocks_4_template','39207'),(263488,41516,'_blocks_4_template','field_617bdd570fe01'),(263489,41516,'blocks_6_acfe_flexible_toggle',''),(263490,41516,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(263491,41516,'blocks_6_acfe_flexible_layout_title','Icons'),(263492,41516,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(263493,41516,'blocks_6_options_theme','#f5f5f5'),(263494,41516,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(263495,41516,'blocks_6_options_format','stacked'),(263496,41516,'_blocks_6_options_format','field_64bfde9a90690'),(263497,41516,'blocks_6_options',''),(263498,41516,'_blocks_6_options','field_64bfdd9b90684'),(263499,41516,'blocks_6_row_content_title','Options available to pay for your course'),(263500,41516,'_blocks_6_row_content_title','field_64bfdd9b90687'),(263501,41516,'blocks_6_row_content_heading','Fees & Funding Options '),(263502,41516,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(263503,41516,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(263504,41516,'_blocks_6_row_content_text','field_64bfdd9b90689'),(263505,41516,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(263506,41516,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(263507,41516,'blocks_6_row_content_actions','1'),(263508,41516,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(263509,41516,'blocks_6_row_content',''),(263510,41516,'_blocks_6_row_content','field_64bfdd9b90686'),(263511,41516,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(263512,41516,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(263513,41516,'blocks_6_icon_row_items_0_label','Pay in full'),(263514,41516,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(263515,41516,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(263516,41516,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(263517,41516,'blocks_6_icon_row_items_1_icon','finance.svg'),(263518,41516,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(263519,41516,'blocks_6_icon_row_items_1_label','0% finance'),(263520,41516,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(263521,41516,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(263522,41516,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(263523,41516,'blocks_6_icon_row_items','3'),(263524,41516,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(263525,41516,'blocks_7_acfe_flexible_toggle',''),(263526,41516,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(263527,41516,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(263528,41516,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(263529,41516,'blocks_7_options_theme','#ffffff'),(263530,41516,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(263531,41516,'blocks_7_options_reverse','0'),(263532,41516,'_blocks_7_options_reverse','field_61768049bb8ac'),(263533,41516,'blocks_7_options',''),(263534,41516,'_blocks_7_options','field_617682517c334'),(263535,41516,'blocks_7_split_5050_image','41483'),(263536,41516,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(263537,41516,'blocks_7_split_5050_video',''),(263538,41516,'_blocks_7_split_5050_video','field_6239f3160848a'),(263539,41516,'blocks_7_split_5050_content_title',''),(263540,41516,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(263541,41516,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(263542,41516,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(263543,41516,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(263544,41516,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(263545,41516,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(263546,41516,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(263547,41516,'blocks_7_split_5050_content_actions','1'),(263548,41516,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(263549,41516,'blocks_7_split_5050_content',''),(263550,41516,'_blocks_7_split_5050_content','field_61767afceb8ba'),(263551,41516,'blocks_8_acfe_flexible_toggle',''),(263552,41516,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(263553,41516,'blocks_8_acfe_flexible_layout_title','Icons'),(263554,41516,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(263555,41516,'blocks_8_options_theme','#f5f5f5'),(263556,41516,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(263557,41516,'blocks_8_options_format','row'),(263558,41516,'_blocks_8_options_format','field_64bfde9a90690'),(263559,41516,'blocks_8_options',''),(263560,41516,'_blocks_8_options','field_64bfdd9b90684'),(263561,41516,'blocks_8_icon_row_items_0_icon','qualification.svg'),(263562,41516,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(263563,41516,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(263564,41516,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(263565,41516,'blocks_8_icon_row_items_0_text',''),(263566,41516,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(263567,41516,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(263568,41516,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(263569,41516,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(263570,41516,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(263571,41516,'blocks_8_icon_row_items_1_text',''),(263572,41516,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(263573,41516,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(263574,41516,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(263575,41516,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(263576,41516,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(263577,41516,'blocks_8_icon_row_items_2_text',''),(263578,41516,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(263579,41516,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(263580,41516,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(263581,41516,'blocks_8_icon_row_items_3_label','Flexible funding options'),(263582,41516,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(263583,41516,'blocks_8_icon_row_items_3_text',''),(263584,41516,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(263585,41516,'blocks_8_icon_row_items','4'),(263586,41516,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(263587,41516,'blocks_9_acfe_flexible_toggle',''),(263588,41516,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(263589,41516,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(263590,41516,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(263591,41516,'blocks_9_options_theme','#ffffff'),(263592,41516,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(263593,41516,'blocks_9_options_reverse','1'),(263594,41516,'_blocks_9_options_reverse','field_61768049bb8ac'),(263595,41516,'blocks_9_options',''),(263596,41516,'_blocks_9_options','field_617682517c334'),(263597,41516,'blocks_9_split_5050_image','39224'),(263598,41516,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(263599,41516,'blocks_9_split_5050_video',''),(263600,41516,'_blocks_9_split_5050_video','field_6239f3160848a'),(263601,41516,'blocks_9_split_5050_content_title','Locations'),(263602,41516,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(263603,41516,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(263604,41516,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(263605,41516,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(263606,41516,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(263607,41516,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(263608,41516,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(263609,41516,'blocks_9_split_5050_content_actions','1'),(263610,41516,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(263611,41516,'blocks_9_split_5050_content',''),(263612,41516,'_blocks_9_split_5050_content','field_61767afceb8ba'),(263613,41516,'blocks_1_acfe_flexible_toggle',''),(263614,41516,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(263615,41516,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(263616,41516,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(263617,41516,'blocks_1_options_theme','#ffffff'),(263618,41516,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(263619,41516,'blocks_1_options_reverse','0'),(263620,41516,'_blocks_1_options_reverse','field_61768049bb8ac'),(263621,41516,'blocks_1_options',''),(263622,41516,'_blocks_1_options','field_617682517c334'),(263623,41516,'blocks_1_split_5050_image','41484'),(263624,41516,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(263625,41516,'blocks_1_split_5050_video',''),(263626,41516,'_blocks_1_split_5050_video','field_6239f3160848a'),(263627,41516,'blocks_1_split_5050_content_title',''),(263628,41516,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(263629,41516,'blocks_1_split_5050_content_heading','Course Overview'),(263630,41516,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(263631,41516,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(263632,41516,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(263633,41516,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(263634,41516,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(263635,41516,'blocks_1_split_5050_content_actions','1'),(263636,41516,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(263637,41516,'blocks_1_split_5050_content',''),(263638,41516,'_blocks_1_split_5050_content','field_61767afceb8ba'),(263639,41516,'blocks_2_acfe_flexible_toggle',''),(263640,41516,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(263641,41516,'blocks_2_acfe_flexible_layout_title','Form'),(263642,41516,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(263643,41516,'blocks_2_row_content_format','standard'),(263644,41516,'_blocks_2_row_content_format','field_6481ead962881'),(263645,41516,'blocks_2_row_content_title',''),(263646,41516,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(263647,41516,'blocks_2_row_content_heading','Enquire Today'),(263648,41516,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(263649,41516,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(263650,41516,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(263651,41516,'blocks_2_row_content_actions',''),(263652,41516,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(263653,41516,'blocks_2_row_content',''),(263654,41516,'_blocks_2_row_content','field_61a0f5f5b3db0'),(263655,41516,'blocks_2_row_form','40394'),(263656,41516,'_blocks_2_row_form','field_61a4ff2c0b08e'),(263657,41516,'blocks_2_row_form_button_label',''),(263658,41516,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(263659,41516,'blocks_3_acfe_flexible_toggle',''),(263660,41516,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(263661,41516,'blocks_3_acfe_flexible_layout_title','Video'),(263662,41516,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(263663,41516,'blocks_3_size','large'),(263664,41516,'_blocks_3_size','field_6487038f297c1'),(263665,41516,'blocks_3_row_content_title',''),(263666,41516,'_blocks_3_row_content_title','field_64870132a865d'),(263667,41516,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(263668,41516,'_blocks_3_row_content_heading','field_64870142a865e'),(263669,41516,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(263670,41516,'_blocks_3_row_content_text','field_64870148a865f'),(263671,41516,'blocks_3_row_content',''),(263672,41516,'_blocks_3_row_content','field_6487008ba865c'),(263673,41516,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(263674,41516,'_blocks_3_video_src','field_6193c4a98ec07'),(263675,41516,'blocks_3_video_thumbnail',''),(263676,41516,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(263677,41516,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(263678,41516,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(263679,41516,'blocks_6_icon_row_items_2_label','Deposit & balance'),(263680,41516,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(263681,41516,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(263682,41516,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(263683,41516,'blocks_10_acfe_flexible_toggle','1'),(263684,41516,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(263685,41516,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(263686,41516,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(263687,41516,'blocks_10_options_theme','#ffffff'),(263688,41516,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(263689,41516,'blocks_10_options',''),(263690,41516,'_blocks_10_options','field_617ac0b7f6c08'),(263691,41516,'blocks_10_show','selection'),(263692,41516,'_blocks_10_show','field_61a49cba9d946'),(263693,41516,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(263694,41516,'_blocks_10_courses','field_61b244781ee0a'),(263695,41516,'blocks_10_open_whats_included','1'),(263696,41516,'_blocks_10_open_whats_included','field_66ebfd679450c'),(263697,41516,'blocks_10_open_key_information','0'),(263698,41516,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(263699,41516,'blocks_10_open',''),(263700,41516,'_blocks_10_open','field_66ebfd009450b'),(263701,41516,'blocks_11_acfe_flexible_toggle',''),(263702,41516,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(263703,41516,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(263704,41516,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(263705,41516,'blocks_11_options_theme','#ffffff'),(263706,41516,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(263707,41516,'blocks_11_options_reverse','0'),(263708,41516,'_blocks_11_options_reverse','field_61768049bb8ac'),(263709,41516,'blocks_11_options',''),(263710,41516,'_blocks_11_options','field_617682517c334'),(263711,41516,'blocks_11_split_5050_image','41495'),(263712,41516,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(263713,41516,'blocks_11_split_5050_video',''),(263714,41516,'_blocks_11_split_5050_video','field_6239f3160848a'),(263715,41516,'blocks_11_split_5050_content_title','Optimise Performance '),(263716,41516,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(263717,41516,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(263718,41516,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(263719,41516,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(263720,41516,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(263721,41516,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(263722,41516,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(263723,41516,'blocks_11_split_5050_content_actions','1'),(263724,41516,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(263725,41516,'blocks_11_split_5050_content',''),(263726,41516,'_blocks_11_split_5050_content','field_61767afceb8ba'),(263727,41516,'blocks_12_acfe_flexible_toggle',''),(263728,41516,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(263729,41516,'blocks_12_acfe_flexible_layout_title','Template'),(263730,41516,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(263731,41516,'blocks_12_template','40987'),(263732,41516,'_blocks_12_template','field_617bdd570fe01'),(263733,41516,'blocks_13_acfe_flexible_toggle',''),(263734,41516,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(263735,41516,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(263736,41516,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(263737,41516,'blocks_13_options_theme','#f5f5f5'),(263738,41516,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(263739,41516,'blocks_13_options_state','0'),(263740,41516,'_blocks_13_options_state','field_6239fcb7508c5'),(263741,41516,'blocks_13_options',''),(263742,41516,'_blocks_13_options','field_6177e2991ac44'),(263743,41516,'blocks_13_content_title',''),(263744,41516,'_blocks_13_content_title','field_64d237e8bb1e2'),(263745,41516,'blocks_13_content_heading','FAQ\'s'),(263746,41516,'_blocks_13_content_heading','field_64d237e8bb1e3'),(263747,41516,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(263748,41516,'_blocks_13_content_text','field_64d237e8bb1e4'),(263749,41516,'blocks_13_content_actions',''),(263750,41516,'_blocks_13_content_actions','field_64d237e8bb1e5'),(263751,41516,'blocks_13_content_align','left'),(263752,41516,'_blocks_13_content_align','field_64d2443e6b6aa'),(263753,41516,'blocks_13_content',''),(263754,41516,'_blocks_13_content','field_64d237e8bb1e1'),(263755,41516,'blocks_13_accordion_content','faqs'),(263756,41516,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(263757,41516,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41458\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(263758,41516,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(263759,41516,'blocks_13_actions',''),(263760,41516,'_blocks_13_actions','field_61a746a817f7a'),(263761,41517,'_edit_lock','1731070383:13'),(263762,41517,'_edit_last','13'),(263763,41518,'hide_hero','0'),(263764,41518,'_hide_hero','field_66a2380fcda39'),(263765,41518,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(263766,41518,'_hero_title','field_617571fe285e8'),(263767,41518,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(263768,41518,'_hero_text','field_6175723c285e9'),(263769,41518,'hero_actions','1'),(263770,41518,'_hero_actions','field_61757270285ea'),(263771,41518,'hero_style','default'),(263772,41518,'_hero_style','field_62051d9dc5324'),(263773,41518,'_thumbnail_id','41428'),(263774,41518,'__thumbnail_id','field_617570855ddaf'),(263775,41518,'hero_image_pos_x','right'),(263776,41518,'_hero_image_pos_x','field_62ec3d05390bb'),(263777,41518,'hero_image_pos_y','top'),(263778,41518,'_hero_image_pos_y','field_62ec3d05390bc'),(263779,41518,'hero_image_pos',''),(263780,41518,'_hero_image_pos','field_62ec3d05390ba'),(263781,41518,'fft_hide_from_listings','0'),(263782,41518,'_fft_hide_from_listings','field_61f1320446ab2'),(263783,41518,'fft_page_format','default'),(263784,41518,'_fft_page_format','field_61ae213f1f218'),(263785,41518,'fft_hide_nav','0'),(263786,41518,'_fft_hide_nav','field_635bd5e43527c'),(263787,41518,'fft_hide_header_call_to_action','0'),(263788,41518,'_fft_hide_header_call_to_action','field_635bd6723527d'),(263789,41518,'fft_page_sitemap','0'),(263790,41518,'_fft_page_sitemap','field_61af9b34e8181'),(263791,41518,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(263792,41518,'_blocks','field_6176696113096'),(263793,41518,'course_label_text',''),(263794,41518,'_course_label_text','field_61e17babf71fa'),(263795,41518,'course_label',''),(263796,41518,'_course_label','field_61e12f92749a7'),(263797,41518,'course_description',''),(263798,41518,'_course_description','field_617ac5788e5e1'),(263799,41518,'course_key_info',''),(263800,41518,'_course_key_info','field_617ac6ad8e5e2'),(263801,41518,'course_included',''),(263802,41518,'_course_included','field_617ac6f08e5e4'),(263803,41518,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-41425-4\";s:6:\"target\";s:0:\"\";}'),(263804,41518,'_hero_actions_0_button','field_61757281285eb'),(263805,41518,'blocks_0_acfe_flexible_toggle',''),(263806,41518,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(263807,41518,'blocks_0_acfe_flexible_layout_title','Icons'),(263808,41518,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(263809,41518,'blocks_0_options_theme','#b61234'),(263810,41518,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(263811,41518,'blocks_0_options_format','row'),(263812,41518,'_blocks_0_options_format','field_64bfde9a90690'),(263813,41518,'blocks_0_options',''),(263814,41518,'_blocks_0_options','field_64bfdd9b90684'),(263815,41518,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(263816,41518,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(263817,41518,'blocks_0_icon_row_items_0_label','Accreditation'),(263818,41518,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(263819,41518,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(263820,41518,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(263821,41518,'blocks_0_icon_row_items_1_icon','finance.svg'),(263822,41518,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(263823,41518,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(263824,41518,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(263825,41518,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(263826,41518,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(263827,41518,'blocks_0_icon_row_items_2_icon','progression.svg'),(263828,41518,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(263829,41518,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(263830,41518,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(263831,41518,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(263832,41518,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(263833,41518,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(263834,41518,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(263835,41518,'blocks_0_icon_row_items_3_label','Qualification'),(263836,41518,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(263837,41518,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(263838,41518,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(263839,41518,'blocks_0_icon_row_items','4'),(263840,41518,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(263841,41518,'blocks_5_acfe_flexible_toggle','1'),(263842,41518,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(263843,41518,'blocks_5_acfe_flexible_layout_title','Tabs'),(263844,41518,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(263845,41518,'blocks_5_options_theme','#ffffff'),(263846,41518,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(263847,41518,'blocks_5_options',''),(263848,41518,'_blocks_5_options','field_6177cfcd8140f'),(263849,41518,'blocks_5_tabs_0_tab_label','Entry requirements'),(263850,41518,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(263851,41518,'blocks_5_tabs_0_tab_content_title',''),(263852,41518,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(263853,41518,'blocks_5_tabs_0_tab_content_heading',''),(263854,41518,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(263855,41518,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(263856,41518,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(263857,41518,'blocks_5_tabs_0_tab_content_actions',''),(263858,41518,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(263859,41518,'blocks_5_tabs_0_tab_content',''),(263860,41518,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(263861,41518,'blocks_5_tabs_0_tab_image',''),(263862,41518,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(263863,41518,'blocks_5_tabs_1_tab_label','Learning format'),(263864,41518,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(263865,41518,'blocks_5_tabs_1_tab_content_title',''),(263866,41518,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(263867,41518,'blocks_5_tabs_1_tab_content_heading',''),(263868,41518,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(263869,41518,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(263870,41518,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(263871,41518,'blocks_5_tabs_1_tab_content_actions',''),(263872,41518,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(263873,41518,'blocks_5_tabs_1_tab_content',''),(263874,41518,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(263875,41518,'blocks_5_tabs_1_tab_image',''),(263876,41518,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(263877,41518,'blocks_5_tabs_2_tab_label','Qualifications included'),(263878,41518,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(263879,41518,'blocks_5_tabs_2_tab_content_title',''),(263880,41518,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(263881,41518,'blocks_5_tabs_2_tab_content_heading',''),(263882,41518,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(263883,41518,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(263884,41518,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(263885,41518,'blocks_5_tabs_2_tab_content_actions',''),(263886,41518,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(263887,41518,'blocks_5_tabs_2_tab_content',''),(263888,41518,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(263889,41518,'blocks_5_tabs_2_tab_image',''),(263890,41518,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(263891,41518,'blocks_5_tabs','3'),(263892,41518,'_blocks_5_tabs','field_6177cff281419'),(263893,41518,'blocks_4_acfe_flexible_toggle',''),(263894,41518,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(263895,41518,'blocks_4_acfe_flexible_layout_title','Template'),(263896,41518,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(263897,41518,'blocks_4_template','39207'),(263898,41518,'_blocks_4_template','field_617bdd570fe01'),(263899,41518,'blocks_6_acfe_flexible_toggle',''),(263900,41518,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(263901,41518,'blocks_6_acfe_flexible_layout_title','Icons'),(263902,41518,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(263903,41518,'blocks_6_options_theme','#f5f5f5'),(263904,41518,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(263905,41518,'blocks_6_options_format','stacked'),(263906,41518,'_blocks_6_options_format','field_64bfde9a90690'),(263907,41518,'blocks_6_options',''),(263908,41518,'_blocks_6_options','field_64bfdd9b90684'),(263909,41518,'blocks_6_row_content_title','Options available to pay for your course'),(263910,41518,'_blocks_6_row_content_title','field_64bfdd9b90687'),(263911,41518,'blocks_6_row_content_heading','Fees & Funding Options '),(263912,41518,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(263913,41518,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(263914,41518,'_blocks_6_row_content_text','field_64bfdd9b90689'),(263915,41518,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(263916,41518,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(263917,41518,'blocks_6_row_content_actions','1'),(263918,41518,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(263919,41518,'blocks_6_row_content',''),(263920,41518,'_blocks_6_row_content','field_64bfdd9b90686'),(263921,41518,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(263922,41518,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(263923,41518,'blocks_6_icon_row_items_0_label','Pay in full'),(263924,41518,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(263925,41518,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(263926,41518,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(263927,41518,'blocks_6_icon_row_items_1_icon','finance.svg'),(263928,41518,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(263929,41518,'blocks_6_icon_row_items_1_label','0% finance'),(263930,41518,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(263931,41518,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(263932,41518,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(263933,41518,'blocks_6_icon_row_items','3'),(263934,41518,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(263935,41518,'blocks_7_acfe_flexible_toggle',''),(263936,41518,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(263937,41518,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(263938,41518,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(263939,41518,'blocks_7_options_theme','#ffffff'),(263940,41518,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(263941,41518,'blocks_7_options_reverse','0'),(263942,41518,'_blocks_7_options_reverse','field_61768049bb8ac'),(263943,41518,'blocks_7_options',''),(263944,41518,'_blocks_7_options','field_617682517c334'),(263945,41518,'blocks_7_split_5050_image','41333'),(263946,41518,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(263947,41518,'blocks_7_split_5050_video',''),(263948,41518,'_blocks_7_split_5050_video','field_6239f3160848a'),(263949,41518,'blocks_7_split_5050_content_title',''),(263950,41518,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(263951,41518,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(263952,41518,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(263953,41518,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(263954,41518,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(263955,41518,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(263956,41518,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(263957,41518,'blocks_7_split_5050_content_actions','1'),(263958,41518,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(263959,41518,'blocks_7_split_5050_content',''),(263960,41518,'_blocks_7_split_5050_content','field_61767afceb8ba'),(263961,41518,'blocks_8_acfe_flexible_toggle',''),(263962,41518,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(263963,41518,'blocks_8_acfe_flexible_layout_title','Icons'),(263964,41518,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(263965,41518,'blocks_8_options_theme','#f5f5f5'),(263966,41518,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(263967,41518,'blocks_8_options_format','row'),(263968,41518,'_blocks_8_options_format','field_64bfde9a90690'),(263969,41518,'blocks_8_options',''),(263970,41518,'_blocks_8_options','field_64bfdd9b90684'),(263971,41518,'blocks_8_icon_row_items_0_icon','qualification.svg'),(263972,41518,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(263973,41518,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(263974,41518,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(263975,41518,'blocks_8_icon_row_items_0_text',''),(263976,41518,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(263977,41518,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(263978,41518,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(263979,41518,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(263980,41518,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(263981,41518,'blocks_8_icon_row_items_1_text',''),(263982,41518,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(263983,41518,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(263984,41518,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(263985,41518,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(263986,41518,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(263987,41518,'blocks_8_icon_row_items_2_text',''),(263988,41518,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(263989,41518,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(263990,41518,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(263991,41518,'blocks_8_icon_row_items_3_label','Flexible funding options'),(263992,41518,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(263993,41518,'blocks_8_icon_row_items_3_text',''),(263994,41518,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(263995,41518,'blocks_8_icon_row_items','4'),(263996,41518,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(263997,41518,'blocks_9_acfe_flexible_toggle',''),(263998,41518,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(263999,41518,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(264000,41518,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(264001,41518,'blocks_9_options_theme','#ffffff'),(264002,41518,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(264003,41518,'blocks_9_options_reverse','1'),(264004,41518,'_blocks_9_options_reverse','field_61768049bb8ac'),(264005,41518,'blocks_9_options',''),(264006,41518,'_blocks_9_options','field_617682517c334'),(264007,41518,'blocks_9_split_5050_image','39224'),(264008,41518,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(264009,41518,'blocks_9_split_5050_video',''),(264010,41518,'_blocks_9_split_5050_video','field_6239f3160848a'),(264011,41518,'blocks_9_split_5050_content_title','Locations'),(264012,41518,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(264013,41518,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(264014,41518,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(264015,41518,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(264016,41518,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(264017,41518,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(264018,41518,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(264019,41518,'blocks_9_split_5050_content_actions','1'),(264020,41518,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(264021,41518,'blocks_9_split_5050_content',''),(264022,41518,'_blocks_9_split_5050_content','field_61767afceb8ba'),(264023,41518,'blocks_1_acfe_flexible_toggle',''),(264024,41518,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(264025,41518,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(264026,41518,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(264027,41518,'blocks_1_options_theme','#ffffff'),(264028,41518,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(264029,41518,'blocks_1_options_reverse','0'),(264030,41518,'_blocks_1_options_reverse','field_61768049bb8ac'),(264031,41518,'blocks_1_options',''),(264032,41518,'_blocks_1_options','field_617682517c334'),(264033,41518,'blocks_1_split_5050_image','41430'),(264034,41518,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(264035,41518,'blocks_1_split_5050_video',''),(264036,41518,'_blocks_1_split_5050_video','field_6239f3160848a'),(264037,41518,'blocks_1_split_5050_content_title',''),(264038,41518,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(264039,41518,'blocks_1_split_5050_content_heading','Course Overview'),(264040,41518,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(264041,41518,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(264042,41518,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(264043,41518,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(264044,41518,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(264045,41518,'blocks_1_split_5050_content_actions','1'),(264046,41518,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(264047,41518,'blocks_1_split_5050_content',''),(264048,41518,'_blocks_1_split_5050_content','field_61767afceb8ba'),(264049,41518,'blocks_2_acfe_flexible_toggle',''),(264050,41518,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(264051,41518,'blocks_2_acfe_flexible_layout_title','Form'),(264052,41518,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(264053,41518,'blocks_2_row_content_format','standard'),(264054,41518,'_blocks_2_row_content_format','field_6481ead962881'),(264055,41518,'blocks_2_row_content_title',''),(264056,41518,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(264057,41518,'blocks_2_row_content_heading','Enquire Today'),(264058,41518,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(264059,41518,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(264060,41518,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(264061,41518,'blocks_2_row_content_actions',''),(264062,41518,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(264063,41518,'blocks_2_row_content',''),(264064,41518,'_blocks_2_row_content','field_61a0f5f5b3db0'),(264065,41518,'blocks_2_row_form','40394'),(264066,41518,'_blocks_2_row_form','field_61a4ff2c0b08e'),(264067,41518,'blocks_2_row_form_button_label',''),(264068,41518,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(264069,41518,'blocks_3_acfe_flexible_toggle',''),(264070,41518,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(264071,41518,'blocks_3_acfe_flexible_layout_title','Video'),(264072,41518,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(264073,41518,'blocks_3_size','large'),(264074,41518,'_blocks_3_size','field_6487038f297c1'),(264075,41518,'blocks_3_row_content_title',''),(264076,41518,'_blocks_3_row_content_title','field_64870132a865d'),(264077,41518,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(264078,41518,'_blocks_3_row_content_heading','field_64870142a865e'),(264079,41518,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(264080,41518,'_blocks_3_row_content_text','field_64870148a865f'),(264081,41518,'blocks_3_row_content',''),(264082,41518,'_blocks_3_row_content','field_6487008ba865c'),(264083,41518,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(264084,41518,'_blocks_3_video_src','field_6193c4a98ec07'),(264085,41518,'blocks_3_video_thumbnail',''),(264086,41518,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(264087,41518,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(264088,41518,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(264089,41518,'blocks_6_icon_row_items_2_label','Deposit & balance'),(264090,41518,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(264091,41518,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(264092,41518,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(264093,41518,'blocks_10_acfe_flexible_toggle','1'),(264094,41518,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(264095,41518,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(264096,41518,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(264097,41518,'blocks_10_options_theme','#ffffff'),(264098,41518,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(264099,41518,'blocks_10_options',''),(264100,41518,'_blocks_10_options','field_617ac0b7f6c08'),(264101,41518,'blocks_10_show','selection'),(264102,41518,'_blocks_10_show','field_61a49cba9d946'),(264103,41518,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(264104,41518,'_blocks_10_courses','field_61b244781ee0a'),(264105,41518,'blocks_10_open_whats_included','1'),(264106,41518,'_blocks_10_open_whats_included','field_66ebfd679450c'),(264107,41518,'blocks_10_open_key_information','0'),(264108,41518,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(264109,41518,'blocks_10_open',''),(264110,41518,'_blocks_10_open','field_66ebfd009450b'),(264111,41518,'blocks_11_acfe_flexible_toggle',''),(264112,41518,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(264113,41518,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(264114,41518,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(264115,41518,'blocks_11_options_theme','#ffffff'),(264116,41518,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(264117,41518,'blocks_11_options_reverse','0'),(264118,41518,'_blocks_11_options_reverse','field_61768049bb8ac'),(264119,41518,'blocks_11_options',''),(264120,41518,'_blocks_11_options','field_617682517c334'),(264121,41518,'blocks_11_split_5050_image','41299'),(264122,41518,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(264123,41518,'blocks_11_split_5050_video',''),(264124,41518,'_blocks_11_split_5050_video','field_6239f3160848a'),(264125,41518,'blocks_11_split_5050_content_title','Optimise Performance '),(264126,41518,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(264127,41518,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(264128,41518,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(264129,41518,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(264130,41518,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(264131,41518,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(264132,41518,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(264133,41518,'blocks_11_split_5050_content_actions','1'),(264134,41518,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(264135,41518,'blocks_11_split_5050_content',''),(264136,41518,'_blocks_11_split_5050_content','field_61767afceb8ba'),(264137,41518,'blocks_12_acfe_flexible_toggle',''),(264138,41518,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(264139,41518,'blocks_12_acfe_flexible_layout_title','Template'),(264140,41518,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(264141,41518,'blocks_12_template','40987'),(264142,41518,'_blocks_12_template','field_617bdd570fe01'),(264143,41518,'blocks_13_acfe_flexible_toggle',''),(264144,41518,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(264145,41518,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(264146,41518,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(264147,41518,'blocks_13_options_theme','#f5f5f5'),(264148,41518,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(264149,41518,'blocks_13_options_state','0'),(264150,41518,'_blocks_13_options_state','field_6239fcb7508c5'),(264151,41518,'blocks_13_options',''),(264152,41518,'_blocks_13_options','field_6177e2991ac44'),(264153,41518,'blocks_13_content_title',''),(264154,41518,'_blocks_13_content_title','field_64d237e8bb1e2'),(264155,41518,'blocks_13_content_heading','FAQ\'s'),(264156,41518,'_blocks_13_content_heading','field_64d237e8bb1e3'),(264157,41518,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(264158,41518,'_blocks_13_content_text','field_64d237e8bb1e4'),(264159,41518,'blocks_13_content_actions',''),(264160,41518,'_blocks_13_content_actions','field_64d237e8bb1e5'),(264161,41518,'blocks_13_content_align','left'),(264162,41518,'_blocks_13_content_align','field_64d2443e6b6aa'),(264163,41518,'blocks_13_content',''),(264164,41518,'_blocks_13_content','field_64d237e8bb1e1'),(264165,41518,'blocks_13_accordion_content','faqs'),(264166,41518,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(264167,41518,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(264168,41518,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(264169,41518,'blocks_13_actions',''),(264170,41518,'_blocks_13_actions','field_61a746a817f7a'),(264171,41520,'_fft_id','217'),(264172,41520,'_fft_catalogue_id','70be95ed-2914-ef11-9f89-7c1e5209b8c0'),(264173,41520,'_fft_code','L4MPU v2'),(264174,41520,'_fft_name','Level 4 Mat Pilates Upgrade'),(264175,41520,'_fft_description',NULL),(264176,41520,'_fft_metadata_school','biomechanics'),(264177,41520,'_fft_metadata_flex_id','559'),(264178,41520,'_fft_metadata_type_id','100000002'),(264179,41520,'_fft_metadata_flex_type','collection'),(264180,41520,'_fft_metadata_type_label','Diploma'),(264181,41520,'_fft_metadata_course_type_id',NULL),(264182,41520,'_fft_metadata_course_type_label','Online Learning'),(264183,41520,'_fft_metadata_productstructure_id','3'),(264184,41520,'_fft_metadata_productstructure_label','Product Bundle'),(264185,41520,'_fft_taxable','1'),(264186,41520,'_fft_show','1'),(264187,41520,'_fft_created_at','1731399823'),(264188,41520,'_fft_updated_at','1743078587'),(264189,41520,'_fft_plan',NULL),(264190,41520,'_fft_price_id','220'),(264191,41520,'_fft_price_value','0'),(264192,41520,'_fft_price_begins_at',NULL),(264193,41520,'_fft_price_expires_at',NULL),(264194,41520,'_fft_price_value_inc_tax','0'),(264195,41520,'_fft_error',''),(264196,41520,'_fft_saved_at','1751618583'),(264197,41520,'_edit_lock','1741944110:18'),(264198,41520,'_edit_last','18'),(264199,41520,'hide_hero','0'),(264200,41520,'_hide_hero','field_66a2380fcda39'),(264201,41520,'hero_title','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching '),(264202,41520,'_hero_title','field_617571fe285e8'),(264203,41520,'hero_text','Elevate Your Pilates Practice with Intrinsic biomechanics and enhance your career pathways '),(264204,41520,'_hero_text','field_6175723c285e9'),(264205,41520,'hero_actions','1'),(264206,41520,'_hero_actions','field_61757270285ea'),(264207,41520,'hero_style','default'),(264208,41520,'_hero_style','field_62051d9dc5324'),(264209,41520,'_thumbnail_id','41524'),(264210,41520,'__thumbnail_id','field_617570855ddaf'),(264211,41520,'hero_image_pos_x','right'),(264212,41520,'_hero_image_pos_x','field_62ec3d05390bb'),(264213,41520,'hero_image_pos_y','top'),(264214,41520,'_hero_image_pos_y','field_62ec3d05390bc'),(264215,41520,'hero_image_pos',''),(264216,41520,'_hero_image_pos','field_62ec3d05390ba'),(264217,41520,'fft_hide_from_listings','0'),(264218,41520,'_fft_hide_from_listings','field_61f1320446ab2'),(264219,41520,'fft_page_format','default'),(264220,41520,'_fft_page_format','field_61ae213f1f218'),(264221,41520,'fft_hide_nav','0'),(264222,41520,'_fft_hide_nav','field_635bd5e43527c'),(264223,41520,'fft_hide_header_call_to_action','0'),(264224,41520,'_fft_hide_header_call_to_action','field_635bd6723527d'),(264225,41520,'fft_page_sitemap','0'),(264226,41520,'_fft_page_sitemap','field_61af9b34e8181'),(264227,41520,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(264228,41520,'_blocks','field_6176696113096'),(264229,41520,'course_label_text',''),(264230,41520,'_course_label_text','field_61e17babf71fa'),(264231,41520,'course_label',''),(264232,41520,'_course_label','field_61e12f92749a7'),(264233,41520,'course_description',''),(264234,41520,'_course_description','field_617ac5788e5e1'),(264235,41520,'course_key_info',''),(264236,41520,'_course_key_info','field_617ac6ad8e5e2'),(264237,41520,'course_included',''),(264238,41520,'_course_included','field_617ac6f08e5e4'),(264239,41520,'_yoast_wpseo_primary_course-cat','406'),(264240,41520,'_yoast_wpseo_estimated-reading-time-minutes','1'),(264241,41520,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41520-4\";s:6:\"target\";s:0:\"\";}'),(264242,41520,'_hero_actions_0_button','field_61757281285eb'),(264243,41520,'blocks_0_acfe_flexible_toggle',''),(264244,41520,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(264245,41520,'blocks_0_acfe_flexible_layout_title','Icons'),(264246,41520,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(264247,41520,'blocks_0_options_theme','#b61234'),(264248,41520,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(264249,41520,'blocks_0_options_format','row'),(264250,41520,'_blocks_0_options_format','field_64bfde9a90690'),(264251,41520,'blocks_0_options',''),(264252,41520,'_blocks_0_options','field_64bfdd9b90684'),(264253,41520,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(264254,41520,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(264255,41520,'blocks_0_icon_row_items_0_label','Accreditation'),(264256,41520,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(264257,41520,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(264258,41520,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(264259,41520,'blocks_0_icon_row_items_1_icon','finance.svg'),(264260,41520,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(264261,41520,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(264262,41520,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(264263,41520,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(264264,41520,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(264265,41520,'blocks_0_icon_row_items_2_icon','progression.svg'),(264266,41520,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(264267,41520,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(264268,41520,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(264269,41520,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(264270,41520,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(264271,41520,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(264272,41520,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(264273,41520,'blocks_0_icon_row_items_3_label','Qualification'),(264274,41520,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(264275,41520,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(264276,41520,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(264277,41520,'blocks_0_icon_row_items','4'),(264278,41520,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(264279,41520,'blocks_5_acfe_flexible_toggle','1'),(264280,41520,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(264281,41520,'blocks_5_acfe_flexible_layout_title','Tabs'),(264282,41520,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(264283,41520,'blocks_5_options_theme','#ffffff'),(264284,41520,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(264285,41520,'blocks_5_options',''),(264286,41520,'_blocks_5_options','field_6177cfcd8140f'),(264287,41520,'blocks_5_tabs_0_tab_label','Entry requirements'),(264288,41520,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(264289,41520,'blocks_5_tabs_0_tab_content_title',''),(264290,41520,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(264291,41520,'blocks_5_tabs_0_tab_content_heading',''),(264292,41520,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(264293,41520,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(264294,41520,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(264295,41520,'blocks_5_tabs_0_tab_content_actions',''),(264296,41520,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(264297,41520,'blocks_5_tabs_0_tab_content',''),(264298,41520,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(264299,41520,'blocks_5_tabs_0_tab_image',''),(264300,41520,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(264301,41520,'blocks_5_tabs_1_tab_label','Learning format'),(264302,41520,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(264303,41520,'blocks_5_tabs_1_tab_content_title',''),(264304,41520,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(264305,41520,'blocks_5_tabs_1_tab_content_heading',''),(264306,41520,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(264307,41520,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(264308,41520,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(264309,41520,'blocks_5_tabs_1_tab_content_actions',''),(264310,41520,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(264311,41520,'blocks_5_tabs_1_tab_content',''),(264312,41520,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(264313,41520,'blocks_5_tabs_1_tab_image',''),(264314,41520,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(264315,41520,'blocks_5_tabs_2_tab_label','Qualifications included'),(264316,41520,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(264317,41520,'blocks_5_tabs_2_tab_content_title',''),(264318,41520,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(264319,41520,'blocks_5_tabs_2_tab_content_heading',''),(264320,41520,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(264321,41520,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(264322,41520,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(264323,41520,'blocks_5_tabs_2_tab_content_actions',''),(264324,41520,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(264325,41520,'blocks_5_tabs_2_tab_content',''),(264326,41520,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(264327,41520,'blocks_5_tabs_2_tab_image',''),(264328,41520,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(264329,41520,'blocks_5_tabs','3'),(264330,41520,'_blocks_5_tabs','field_6177cff281419'),(264331,41520,'blocks_4_acfe_flexible_toggle',''),(264332,41520,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(264333,41520,'blocks_4_acfe_flexible_layout_title','Template'),(264334,41520,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(264335,41520,'blocks_4_template','39207'),(264336,41520,'_blocks_4_template','field_617bdd570fe01'),(264337,41520,'blocks_6_acfe_flexible_toggle',''),(264338,41520,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(264339,41520,'blocks_6_acfe_flexible_layout_title','Icons'),(264340,41520,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(264341,41520,'blocks_6_options_theme','#f5f5f5'),(264342,41520,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(264343,41520,'blocks_6_options_format','stacked'),(264344,41520,'_blocks_6_options_format','field_64bfde9a90690'),(264345,41520,'blocks_6_options',''),(264346,41520,'_blocks_6_options','field_64bfdd9b90684'),(264347,41520,'blocks_6_row_content_title','Options available to pay for your course'),(264348,41520,'_blocks_6_row_content_title','field_64bfdd9b90687'),(264349,41520,'blocks_6_row_content_heading','Fees & Funding Options '),(264350,41520,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(264351,41520,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(264352,41520,'_blocks_6_row_content_text','field_64bfdd9b90689'),(264353,41520,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(264354,41520,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(264355,41520,'blocks_6_row_content_actions','1'),(264356,41520,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(264357,41520,'blocks_6_row_content',''),(264358,41520,'_blocks_6_row_content','field_64bfdd9b90686'),(264359,41520,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(264360,41520,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(264361,41520,'blocks_6_icon_row_items_0_label','Pay in full'),(264362,41520,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(264363,41520,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(264364,41520,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(264365,41520,'blocks_6_icon_row_items_1_icon','finance.svg'),(264366,41520,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(264367,41520,'blocks_6_icon_row_items_1_label','0% finance'),(264368,41520,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(264369,41520,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(264370,41520,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(264371,41520,'blocks_6_icon_row_items','3'),(264372,41520,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(264373,41520,'blocks_7_acfe_flexible_toggle',''),(264374,41520,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(264375,41520,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(264376,41520,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(264377,41520,'blocks_7_options_theme','#ffffff'),(264378,41520,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(264379,41520,'blocks_7_options_reverse','0'),(264380,41520,'_blocks_7_options_reverse','field_61768049bb8ac'),(264381,41520,'blocks_7_options',''),(264382,41520,'_blocks_7_options','field_617682517c334'),(264383,41520,'blocks_7_split_5050_image','41526'),(264384,41520,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(264385,41520,'blocks_7_split_5050_video',''),(264386,41520,'_blocks_7_split_5050_video','field_6239f3160848a'),(264387,41520,'blocks_7_split_5050_content_title',''),(264388,41520,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(264389,41520,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(264390,41520,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(264391,41520,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(264392,41520,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(264393,41520,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(264394,41520,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(264395,41520,'blocks_7_split_5050_content_actions','1'),(264396,41520,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(264397,41520,'blocks_7_split_5050_content',''),(264398,41520,'_blocks_7_split_5050_content','field_61767afceb8ba'),(264399,41520,'blocks_8_acfe_flexible_toggle',''),(264400,41520,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(264401,41520,'blocks_8_acfe_flexible_layout_title','Icons'),(264402,41520,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(264403,41520,'blocks_8_options_theme','#f5f5f5'),(264404,41520,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(264405,41520,'blocks_8_options_format','row'),(264406,41520,'_blocks_8_options_format','field_64bfde9a90690'),(264407,41520,'blocks_8_options',''),(264408,41520,'_blocks_8_options','field_64bfdd9b90684'),(264409,41520,'blocks_8_icon_row_items_0_icon','qualification.svg'),(264410,41520,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(264411,41520,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(264412,41520,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(264413,41520,'blocks_8_icon_row_items_0_text',''),(264414,41520,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(264415,41520,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(264416,41520,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(264417,41520,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(264418,41520,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(264419,41520,'blocks_8_icon_row_items_1_text',''),(264420,41520,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(264421,41520,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(264422,41520,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(264423,41520,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(264424,41520,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(264425,41520,'blocks_8_icon_row_items_2_text',''),(264426,41520,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(264427,41520,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(264428,41520,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(264429,41520,'blocks_8_icon_row_items_3_label','Flexible funding options'),(264430,41520,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(264431,41520,'blocks_8_icon_row_items_3_text',''),(264432,41520,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(264433,41520,'blocks_8_icon_row_items','4'),(264434,41520,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(264435,41520,'blocks_9_acfe_flexible_toggle',''),(264436,41520,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(264437,41520,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(264438,41520,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(264439,41520,'blocks_9_options_theme','#ffffff'),(264440,41520,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(264441,41520,'blocks_9_options_reverse','1'),(264442,41520,'_blocks_9_options_reverse','field_61768049bb8ac'),(264443,41520,'blocks_9_options',''),(264444,41520,'_blocks_9_options','field_617682517c334'),(264445,41520,'blocks_9_split_5050_image','39224'),(264446,41520,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(264447,41520,'blocks_9_split_5050_video',''),(264448,41520,'_blocks_9_split_5050_video','field_6239f3160848a'),(264449,41520,'blocks_9_split_5050_content_title','Locations'),(264450,41520,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(264451,41520,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(264452,41520,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(264453,41520,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(264454,41520,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(264455,41520,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(264456,41520,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(264457,41520,'blocks_9_split_5050_content_actions','1'),(264458,41520,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(264459,41520,'blocks_9_split_5050_content',''),(264460,41520,'_blocks_9_split_5050_content','field_61767afceb8ba'),(264461,41520,'blocks_1_acfe_flexible_toggle',''),(264462,41520,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(264463,41520,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(264464,41520,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(264465,41520,'blocks_1_options_theme','#ffffff'),(264466,41520,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(264467,41520,'blocks_1_options_reverse','0'),(264468,41520,'_blocks_1_options_reverse','field_61768049bb8ac'),(264469,41520,'blocks_1_options',''),(264470,41520,'_blocks_1_options','field_617682517c334'),(264471,41520,'blocks_1_split_5050_image','41506'),(264472,41520,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(264473,41520,'blocks_1_split_5050_video',''),(264474,41520,'_blocks_1_split_5050_video','field_6239f3160848a'),(264475,41520,'blocks_1_split_5050_content_title',''),(264476,41520,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(264477,41520,'blocks_1_split_5050_content_heading','Course Overview'),(264478,41520,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(264479,41520,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW114645069 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW114645069 BCX8\">Enhance your</span> <span class=\"NormalTextRun SCXW114645069 BCX8\">expertise</span><span class=\"NormalTextRun SCXW114645069 BCX8\"> with our comprehensive Level 4 Pilates Instructor and Diploma in Biomechanics Coaching, a unique course designed to elevate your Pilates practice while equipping you with specialised Intrinsic biomechanics skills. This programme blends advanced Pilates methods with biomechanics principles to improve client movement, enhance posture, and support functional performance. Perfect for Pilates instructors and fitness professionals aiming to work confidently with clients facing orthopaedic or movement challenges, this dual qualification empowers you to make a lasting impact on client wellbeing through targeted analysis and </span><span class=\"NormalTextRun SCXW114645069 BCX8\">risk preventions.</span></span><span class=\"EOP SCXW114645069 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(264480,41520,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(264481,41520,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(264482,41520,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(264483,41520,'blocks_1_split_5050_content_actions','1'),(264484,41520,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(264485,41520,'blocks_1_split_5050_content',''),(264486,41520,'_blocks_1_split_5050_content','field_61767afceb8ba'),(264487,41520,'blocks_2_acfe_flexible_toggle',''),(264488,41520,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(264489,41520,'blocks_2_acfe_flexible_layout_title','Form'),(264490,41520,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(264491,41520,'blocks_2_row_content_format','standard'),(264492,41520,'_blocks_2_row_content_format','field_6481ead962881'),(264493,41520,'blocks_2_row_content_title',''),(264494,41520,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(264495,41520,'blocks_2_row_content_heading','Enquire Today'),(264496,41520,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(264497,41520,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(264498,41520,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(264499,41520,'blocks_2_row_content_actions',''),(264500,41520,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(264501,41520,'blocks_2_row_content',''),(264502,41520,'_blocks_2_row_content','field_61a0f5f5b3db0'),(264503,41520,'blocks_2_row_form','40394'),(264504,41520,'_blocks_2_row_form','field_61a4ff2c0b08e'),(264505,41520,'blocks_2_row_form_button_label',''),(264506,41520,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(264507,41520,'blocks_3_acfe_flexible_toggle',''),(264508,41520,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(264509,41520,'blocks_3_acfe_flexible_layout_title','Video'),(264510,41520,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(264511,41520,'blocks_3_size','large'),(264512,41520,'_blocks_3_size','field_6487038f297c1'),(264513,41520,'blocks_3_row_content_title',''),(264514,41520,'_blocks_3_row_content_title','field_64870132a865d'),(264515,41520,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(264516,41520,'_blocks_3_row_content_heading','field_64870142a865e'),(264517,41520,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(264518,41520,'_blocks_3_row_content_text','field_64870148a865f'),(264519,41520,'blocks_3_row_content',''),(264520,41520,'_blocks_3_row_content','field_6487008ba865c'),(264521,41520,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(264522,41520,'_blocks_3_video_src','field_6193c4a98ec07'),(264523,41520,'blocks_3_video_thumbnail',''),(264524,41520,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(264525,41520,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(264526,41520,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(264527,41520,'blocks_6_icon_row_items_2_label','Deposit & balance'),(264528,41520,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(264529,41520,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(264530,41520,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(264531,41520,'blocks_10_acfe_flexible_toggle','1'),(264532,41520,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(264533,41520,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(264534,41520,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(264535,41520,'blocks_10_options_theme','#ffffff'),(264536,41520,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(264537,41520,'blocks_10_options',''),(264538,41520,'_blocks_10_options','field_617ac0b7f6c08'),(264539,41520,'blocks_10_show','selection'),(264540,41520,'_blocks_10_show','field_61a49cba9d946'),(264541,41520,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(264542,41520,'_blocks_10_courses','field_61b244781ee0a'),(264543,41520,'blocks_10_open_whats_included','1'),(264544,41520,'_blocks_10_open_whats_included','field_66ebfd679450c'),(264545,41520,'blocks_10_open_key_information','0'),(264546,41520,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(264547,41520,'blocks_10_open',''),(264548,41520,'_blocks_10_open','field_66ebfd009450b'),(264549,41520,'blocks_11_acfe_flexible_toggle',''),(264550,41520,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(264551,41520,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(264552,41520,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(264553,41520,'blocks_11_options_theme','#ffffff'),(264554,41520,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(264555,41520,'blocks_11_options_reverse','0'),(264556,41520,'_blocks_11_options_reverse','field_61768049bb8ac'),(264557,41520,'blocks_11_options',''),(264558,41520,'_blocks_11_options','field_617682517c334'),(264559,41520,'blocks_11_split_5050_image','41504'),(264560,41520,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(264561,41520,'blocks_11_split_5050_video',''),(264562,41520,'_blocks_11_split_5050_video','field_6239f3160848a'),(264563,41520,'blocks_11_split_5050_content_title','Optimise Performance '),(264564,41520,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(264565,41520,'blocks_11_split_5050_content_heading','Level 4 Mat Pilates Instructor Qualification with your Diploma in Biomechanics Coaching'),(264566,41520,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(264567,41520,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW53757674 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW53757674 BCX8\">Advance your Pilates </span><span class=\"NormalTextRun SCXW53757674 BCX8\">expertise</span><span class=\"NormalTextRun SCXW53757674 BCX8\"> with a comprehensive Level 4 course designed to build on foundational knowledge and introduce advanced techniques to support and enhance client outcomes. Specialise in biomechanics and stand out in the fitness industry with skills that improve client performance, posture, and functional movement.</span></span><span class=\"EOP SCXW53757674 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Level 4 Pilates Includes:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26316?category=qualifications&amp;query=vtct%20postnatal\"><span data-contrast=\"none\">VTCT Level 3 Award in Adapting Physical Activity for Antenatal and Postnatal Clients.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26662?category=qualifications&amp;query=VTCT%20mat%20pilates\"><span data-contrast=\"none\">VTCT Level 3 Diploma in Instructing Mat-Based Pilates.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/48763?category=qualifications&amp;query=transcend%20pilates\"><span data-contrast=\"none\">Transcend Level 4 Certificate in Teaching Matwork Pilates</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">As a qualified level 4 Pilates instructor you will be able to: </span></b><span data-ccp-props=\"{}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own classes and work with clients on a 1-to-1 basis</span><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Teach Pilates at beginner, intermediate and advanced levels</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own weight management clinic, or offer individual consultations</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Create bespoke Pilates routines for new and expectant mothers</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Be able to create bespoke Pilates routines for clients with mobility considerations such as Arthritis or Hypermobility</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(264568,41520,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(264569,41520,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(264570,41520,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(264571,41520,'blocks_11_split_5050_content_actions','1'),(264572,41520,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(264573,41520,'blocks_11_split_5050_content',''),(264574,41520,'_blocks_11_split_5050_content','field_61767afceb8ba'),(264575,41520,'blocks_12_acfe_flexible_toggle',''),(264576,41520,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(264577,41520,'blocks_12_acfe_flexible_layout_title','Template'),(264578,41520,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(264579,41520,'blocks_12_template','40987'),(264580,41520,'_blocks_12_template','field_617bdd570fe01'),(264581,41520,'blocks_13_acfe_flexible_toggle',''),(264582,41520,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(264583,41520,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(264584,41520,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(264585,41520,'blocks_13_options_theme','#f5f5f5'),(264586,41520,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(264587,41520,'blocks_13_options_state','0'),(264588,41520,'_blocks_13_options_state','field_6239fcb7508c5'),(264589,41520,'blocks_13_options',''),(264590,41520,'_blocks_13_options','field_6177e2991ac44'),(264591,41520,'blocks_13_content_title',''),(264592,41520,'_blocks_13_content_title','field_64d237e8bb1e2'),(264593,41520,'blocks_13_content_heading','FAQ\'s'),(264594,41520,'_blocks_13_content_heading','field_64d237e8bb1e3'),(264595,41520,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(264596,41520,'_blocks_13_content_text','field_64d237e8bb1e4'),(264597,41520,'blocks_13_content_actions',''),(264598,41520,'_blocks_13_content_actions','field_64d237e8bb1e5'),(264599,41520,'blocks_13_content_align','left'),(264600,41520,'_blocks_13_content_align','field_64d2443e6b6aa'),(264601,41520,'blocks_13_content',''),(264602,41520,'_blocks_13_content','field_64d237e8bb1e1'),(264603,41520,'blocks_13_accordion_content','faqs'),(264604,41520,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(264605,41520,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41517\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(264606,41520,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(264607,41520,'blocks_13_actions',''),(264608,41520,'_blocks_13_actions','field_61a746a817f7a'),(264609,41520,'_yoast_wpseo_focuskw','Level 4 Mat Pilates Course'),(264610,41520,'_yoast_wpseo_title','Level 4 Pilates + Biomechanics Coaching Bundle %%sep%% Biomechanics Education'),(264611,41520,'_yoast_wpseo_metadesc','Enhance your skills with our Level 4 Sports Massage and Intrinsic Biomechanics course, designed to support performance and improve movement quality through evidence-based assessment techniques.'),(264612,41520,'_yoast_wpseo_linkdex','29'),(264613,41520,'_yoast_wpseo_inclusive_language_score','90'),(264614,41520,'_wp_old_slug','level-4-personal-trainer-course-copy'),(264615,41520,'_wp_old_slug','level-3-sports-massage-diploma-in-biomechanics-coaching-copy'),(264616,41520,'_wp_old_slug','level-3-sports-level-4-sports-massage-diploma-in-biomechanics-coaching'),(264617,41522,'_wp_attached_file','2024/11/CourtX_Pilates_Web-1.jpg'),(264618,41522,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:32:\"2024/11/CourtX_Pilates_Web-1.jpg\";s:8:\"filesize\";i:544607;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"CourtX_Pilates_Web-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58873;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86338;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"CourtX_Pilates_Web-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23519;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"CourtX_Pilates_Web-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47442;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:122490;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:32:\"CourtX_Pilates_Web-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28966;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:32:\"CourtX_Pilates_Web-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79247;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118887;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:32:\"CourtX_Pilates_Web-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23430;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:32:\"CourtX_Pilates_Web-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58873;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86338;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:32:\"CourtX_Pilates_Web-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24277;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:32:\"CourtX_Pilates_Web-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60258;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88911;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:32:\"CourtX_Pilates_Web-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24448;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:32:\"CourtX_Pilates_Web-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62515;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93347;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:32:\"CourtX_Pilates_Web-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19835;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:32:\"CourtX_Pilates_Web-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45154;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65236;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(264619,41523,'_wp_attached_file','2024/11/CourtX_Pilates_Web-10.jpg'),(264620,41523,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:33:\"2024/11/CourtX_Pilates_Web-10.jpg\";s:8:\"filesize\";i:595260;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-10-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119890;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-10-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185554;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-10-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39776;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-10-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94459;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-10-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:273163;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-10-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50381;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-10-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161864;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-10-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:253099;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-10-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39692;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-10-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119890;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-10-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185554;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-10-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41238;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-10-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126074;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-10-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196425;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-10-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42478;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-10-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130924;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-10-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202539;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-10-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35834;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-10-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105173;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-10-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161926;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(264621,41524,'_wp_attached_file','2024/11/CourtX_Pilates_Web-40.jpg'),(264622,41524,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:33:\"2024/11/CourtX_Pilates_Web-40.jpg\";s:8:\"filesize\";i:473973;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-40-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97374;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-40-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147317;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-40-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34856;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-40-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77763;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-40-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214483;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-40-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42637;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-40-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126485;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-40-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195684;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-40-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34822;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-40-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97374;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-40-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147317;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-40-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34128;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-40-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93114;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-40-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142395;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-40-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37085;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-40-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105303;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-40-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160130;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-40-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31650;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-40-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85142;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-40-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128469;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(264623,41525,'_wp_attached_file','2024/11/CourtX_Pilates_Web-66.jpg'),(264624,41525,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:33:\"2024/11/CourtX_Pilates_Web-66.jpg\";s:8:\"filesize\";i:499463;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-66-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95111;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-66-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145787;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-66-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35003;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-66-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76369;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-66-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:215236;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-66-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43481;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-66-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:132093;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-66-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209856;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-66-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34855;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-66-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95111;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-66-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145787;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-66-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36439;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-66-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105276;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-66-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165617;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-66-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37266;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-66-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104721;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-66-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161772;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-66-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31550;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-66-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82530;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-66-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124761;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(264625,41526,'_wp_attached_file','2024/11/CourtX_Pilates_Web-76.jpg'),(264626,41526,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:33:\"2024/11/CourtX_Pilates_Web-76.jpg\";s:8:\"filesize\";i:368566;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-76-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74532;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-76-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110221;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-76-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29989;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-76-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60632;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-76-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160546;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-76-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36776;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-76-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102476;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-76-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159270;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-76-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29970;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-76-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74532;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-76-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110221;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-76-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31799;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-76-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86267;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-76-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133487;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-76-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31999;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-76-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82490;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-76-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123678;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-76-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27527;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:33:\"CourtX_Pilates_Web-76-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66198;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-76-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97568;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(264627,41527,'_wp_attached_file','2024/11/CourtX_Pilates_Web-1-1.jpg'),(264628,41527,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:4:\"file\";s:34:\"2024/11/CourtX_Pilates_Web-1-1.jpg\";s:8:\"filesize\";i:544607;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107245;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-1-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166418;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35115;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83794;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"CourtX_Pilates_Web-1-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:247017;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46756;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154448;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:36:\"CourtX_Pilates_Web-1-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:243147;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35058;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107245;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-1-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166418;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37767;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116749;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-1-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:182497;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37395;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117165;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-1-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:183586;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31606;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:34:\"CourtX_Pilates_Web-1-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93532;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:35:\"CourtX_Pilates_Web-1-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144755;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(264629,41528,'hide_hero','0'),(264630,41528,'_hide_hero','field_66a2380fcda39'),(264631,41528,'hero_title','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching '),(264632,41528,'_hero_title','field_617571fe285e8'),(264633,41528,'hero_text','Strapline: Elevate Your Pilates Practice with Intrinsic biomechanics and enhance your career pathways '),(264634,41528,'_hero_text','field_6175723c285e9'),(264635,41528,'hero_actions','1'),(264636,41528,'_hero_actions','field_61757270285ea'),(264637,41528,'hero_style','default'),(264638,41528,'_hero_style','field_62051d9dc5324'),(264639,41528,'_thumbnail_id','41524'),(264640,41528,'__thumbnail_id','field_617570855ddaf'),(264641,41528,'hero_image_pos_x','right'),(264642,41528,'_hero_image_pos_x','field_62ec3d05390bb'),(264643,41528,'hero_image_pos_y','top'),(264644,41528,'_hero_image_pos_y','field_62ec3d05390bc'),(264645,41528,'hero_image_pos',''),(264646,41528,'_hero_image_pos','field_62ec3d05390ba'),(264647,41528,'fft_hide_from_listings','0'),(264648,41528,'_fft_hide_from_listings','field_61f1320446ab2'),(264649,41528,'fft_page_format','default'),(264650,41528,'_fft_page_format','field_61ae213f1f218'),(264651,41528,'fft_hide_nav','0'),(264652,41528,'_fft_hide_nav','field_635bd5e43527c'),(264653,41528,'fft_hide_header_call_to_action','0'),(264654,41528,'_fft_hide_header_call_to_action','field_635bd6723527d'),(264655,41528,'fft_page_sitemap','0'),(264656,41528,'_fft_page_sitemap','field_61af9b34e8181'),(264657,41528,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(264658,41528,'_blocks','field_6176696113096'),(264659,41528,'course_label_text',''),(264660,41528,'_course_label_text','field_61e17babf71fa'),(264661,41528,'course_label',''),(264662,41528,'_course_label','field_61e12f92749a7'),(264663,41528,'course_description',''),(264664,41528,'_course_description','field_617ac5788e5e1'),(264665,41528,'course_key_info',''),(264666,41528,'_course_key_info','field_617ac6ad8e5e2'),(264667,41528,'course_included',''),(264668,41528,'_course_included','field_617ac6f08e5e4'),(264669,41528,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41455-4\";s:6:\"target\";s:0:\"\";}'),(264670,41528,'_hero_actions_0_button','field_61757281285eb'),(264671,41528,'blocks_0_acfe_flexible_toggle',''),(264672,41528,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(264673,41528,'blocks_0_acfe_flexible_layout_title','Icons'),(264674,41528,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(264675,41528,'blocks_0_options_theme','#b61234'),(264676,41528,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(264677,41528,'blocks_0_options_format','row'),(264678,41528,'_blocks_0_options_format','field_64bfde9a90690'),(264679,41528,'blocks_0_options',''),(264680,41528,'_blocks_0_options','field_64bfdd9b90684'),(264681,41528,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(264682,41528,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(264683,41528,'blocks_0_icon_row_items_0_label','Accreditation'),(264684,41528,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(264685,41528,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(264686,41528,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(264687,41528,'blocks_0_icon_row_items_1_icon','finance.svg'),(264688,41528,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(264689,41528,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(264690,41528,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(264691,41528,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(264692,41528,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(264693,41528,'blocks_0_icon_row_items_2_icon','progression.svg'),(264694,41528,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(264695,41528,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(264696,41528,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(264697,41528,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(264698,41528,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(264699,41528,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(264700,41528,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(264701,41528,'blocks_0_icon_row_items_3_label','Qualification'),(264702,41528,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(264703,41528,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(264704,41528,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(264705,41528,'blocks_0_icon_row_items','4'),(264706,41528,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(264707,41528,'blocks_5_acfe_flexible_toggle','1'),(264708,41528,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(264709,41528,'blocks_5_acfe_flexible_layout_title','Tabs'),(264710,41528,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(264711,41528,'blocks_5_options_theme','#ffffff'),(264712,41528,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(264713,41528,'blocks_5_options',''),(264714,41528,'_blocks_5_options','field_6177cfcd8140f'),(264715,41528,'blocks_5_tabs_0_tab_label','Entry requirements'),(264716,41528,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(264717,41528,'blocks_5_tabs_0_tab_content_title',''),(264718,41528,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(264719,41528,'blocks_5_tabs_0_tab_content_heading',''),(264720,41528,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(264721,41528,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(264722,41528,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(264723,41528,'blocks_5_tabs_0_tab_content_actions',''),(264724,41528,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(264725,41528,'blocks_5_tabs_0_tab_content',''),(264726,41528,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(264727,41528,'blocks_5_tabs_0_tab_image',''),(264728,41528,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(264729,41528,'blocks_5_tabs_1_tab_label','Learning format'),(264730,41528,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(264731,41528,'blocks_5_tabs_1_tab_content_title',''),(264732,41528,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(264733,41528,'blocks_5_tabs_1_tab_content_heading',''),(264734,41528,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(264735,41528,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(264736,41528,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(264737,41528,'blocks_5_tabs_1_tab_content_actions',''),(264738,41528,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(264739,41528,'blocks_5_tabs_1_tab_content',''),(264740,41528,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(264741,41528,'blocks_5_tabs_1_tab_image',''),(264742,41528,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(264743,41528,'blocks_5_tabs_2_tab_label','Qualifications included'),(264744,41528,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(264745,41528,'blocks_5_tabs_2_tab_content_title',''),(264746,41528,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(264747,41528,'blocks_5_tabs_2_tab_content_heading',''),(264748,41528,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(264749,41528,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(264750,41528,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(264751,41528,'blocks_5_tabs_2_tab_content_actions',''),(264752,41528,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(264753,41528,'blocks_5_tabs_2_tab_content',''),(264754,41528,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(264755,41528,'blocks_5_tabs_2_tab_image',''),(264756,41528,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(264757,41528,'blocks_5_tabs','3'),(264758,41528,'_blocks_5_tabs','field_6177cff281419'),(264759,41528,'blocks_4_acfe_flexible_toggle',''),(264760,41528,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(264761,41528,'blocks_4_acfe_flexible_layout_title','Template'),(264762,41528,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(264763,41528,'blocks_4_template','39207'),(264764,41528,'_blocks_4_template','field_617bdd570fe01'),(264765,41528,'blocks_6_acfe_flexible_toggle',''),(264766,41528,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(264767,41528,'blocks_6_acfe_flexible_layout_title','Icons'),(264768,41528,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(264769,41528,'blocks_6_options_theme','#f5f5f5'),(264770,41528,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(264771,41528,'blocks_6_options_format','stacked'),(264772,41528,'_blocks_6_options_format','field_64bfde9a90690'),(264773,41528,'blocks_6_options',''),(264774,41528,'_blocks_6_options','field_64bfdd9b90684'),(264775,41528,'blocks_6_row_content_title','Options available to pay for your course'),(264776,41528,'_blocks_6_row_content_title','field_64bfdd9b90687'),(264777,41528,'blocks_6_row_content_heading','Fees & Funding Options '),(264778,41528,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(264779,41528,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(264780,41528,'_blocks_6_row_content_text','field_64bfdd9b90689'),(264781,41528,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(264782,41528,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(264783,41528,'blocks_6_row_content_actions','1'),(264784,41528,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(264785,41528,'blocks_6_row_content',''),(264786,41528,'_blocks_6_row_content','field_64bfdd9b90686'),(264787,41528,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(264788,41528,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(264789,41528,'blocks_6_icon_row_items_0_label','Pay in full'),(264790,41528,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(264791,41528,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(264792,41528,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(264793,41528,'blocks_6_icon_row_items_1_icon','finance.svg'),(264794,41528,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(264795,41528,'blocks_6_icon_row_items_1_label','0% finance'),(264796,41528,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(264797,41528,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(264798,41528,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(264799,41528,'blocks_6_icon_row_items','3'),(264800,41528,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(264801,41528,'blocks_7_acfe_flexible_toggle',''),(264802,41528,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(264803,41528,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(264804,41528,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(264805,41528,'blocks_7_options_theme','#ffffff'),(264806,41528,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(264807,41528,'blocks_7_options_reverse','0'),(264808,41528,'_blocks_7_options_reverse','field_61768049bb8ac'),(264809,41528,'blocks_7_options',''),(264810,41528,'_blocks_7_options','field_617682517c334'),(264811,41528,'blocks_7_split_5050_image','41526'),(264812,41528,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(264813,41528,'blocks_7_split_5050_video',''),(264814,41528,'_blocks_7_split_5050_video','field_6239f3160848a'),(264815,41528,'blocks_7_split_5050_content_title',''),(264816,41528,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(264817,41528,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(264818,41528,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(264819,41528,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(264820,41528,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(264821,41528,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(264822,41528,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(264823,41528,'blocks_7_split_5050_content_actions','1'),(264824,41528,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(264825,41528,'blocks_7_split_5050_content',''),(264826,41528,'_blocks_7_split_5050_content','field_61767afceb8ba'),(264827,41528,'blocks_8_acfe_flexible_toggle',''),(264828,41528,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(264829,41528,'blocks_8_acfe_flexible_layout_title','Icons'),(264830,41528,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(264831,41528,'blocks_8_options_theme','#f5f5f5'),(264832,41528,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(264833,41528,'blocks_8_options_format','row'),(264834,41528,'_blocks_8_options_format','field_64bfde9a90690'),(264835,41528,'blocks_8_options',''),(264836,41528,'_blocks_8_options','field_64bfdd9b90684'),(264837,41528,'blocks_8_icon_row_items_0_icon','qualification.svg'),(264838,41528,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(264839,41528,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(264840,41528,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(264841,41528,'blocks_8_icon_row_items_0_text',''),(264842,41528,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(264843,41528,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(264844,41528,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(264845,41528,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(264846,41528,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(264847,41528,'blocks_8_icon_row_items_1_text',''),(264848,41528,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(264849,41528,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(264850,41528,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(264851,41528,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(264852,41528,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(264853,41528,'blocks_8_icon_row_items_2_text',''),(264854,41528,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(264855,41528,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(264856,41528,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(264857,41528,'blocks_8_icon_row_items_3_label','Flexible funding options'),(264858,41528,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(264859,41528,'blocks_8_icon_row_items_3_text',''),(264860,41528,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(264861,41528,'blocks_8_icon_row_items','4'),(264862,41528,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(264863,41528,'blocks_9_acfe_flexible_toggle',''),(264864,41528,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(264865,41528,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(264866,41528,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(264867,41528,'blocks_9_options_theme','#ffffff'),(264868,41528,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(264869,41528,'blocks_9_options_reverse','1'),(264870,41528,'_blocks_9_options_reverse','field_61768049bb8ac'),(264871,41528,'blocks_9_options',''),(264872,41528,'_blocks_9_options','field_617682517c334'),(264873,41528,'blocks_9_split_5050_image','39224'),(264874,41528,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(264875,41528,'blocks_9_split_5050_video',''),(264876,41528,'_blocks_9_split_5050_video','field_6239f3160848a'),(264877,41528,'blocks_9_split_5050_content_title','Locations'),(264878,41528,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(264879,41528,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(264880,41528,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(264881,41528,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(264882,41528,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(264883,41528,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(264884,41528,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(264885,41528,'blocks_9_split_5050_content_actions','1'),(264886,41528,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(264887,41528,'blocks_9_split_5050_content',''),(264888,41528,'_blocks_9_split_5050_content','field_61767afceb8ba'),(264889,41528,'blocks_1_acfe_flexible_toggle',''),(264890,41528,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(264891,41528,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(264892,41528,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(264893,41528,'blocks_1_options_theme','#ffffff'),(264894,41528,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(264895,41528,'blocks_1_options_reverse','0'),(264896,41528,'_blocks_1_options_reverse','field_61768049bb8ac'),(264897,41528,'blocks_1_options',''),(264898,41528,'_blocks_1_options','field_617682517c334'),(264899,41528,'blocks_1_split_5050_image','41506'),(264900,41528,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(264901,41528,'blocks_1_split_5050_video',''),(264902,41528,'_blocks_1_split_5050_video','field_6239f3160848a'),(264903,41528,'blocks_1_split_5050_content_title',''),(264904,41528,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(264905,41528,'blocks_1_split_5050_content_heading','Course Overview'),(264906,41528,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(264907,41528,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW114645069 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW114645069 BCX8\">Enhance your</span> <span class=\"NormalTextRun SCXW114645069 BCX8\">expertise</span><span class=\"NormalTextRun SCXW114645069 BCX8\"> with our comprehensive Level 4 Pilates Instructor and Diploma in Biomechanics Coaching, a unique course designed to elevate your Pilates practice while equipping you with specialised Intrinsic biomechanics skills. This programme blends advanced Pilates methods with biomechanics principles to improve client movement, enhance posture, and support functional performance. Perfect for Pilates instructors and fitness professionals aiming to work confidently with clients facing orthopaedic or movement challenges, this dual qualification empowers you to make a lasting impact on client wellbeing through targeted analysis and </span><span class=\"NormalTextRun SCXW114645069 BCX8\">risk preventions.</span></span><span class=\"EOP SCXW114645069 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(264908,41528,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(264909,41528,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(264910,41528,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(264911,41528,'blocks_1_split_5050_content_actions','1'),(264912,41528,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(264913,41528,'blocks_1_split_5050_content',''),(264914,41528,'_blocks_1_split_5050_content','field_61767afceb8ba'),(264915,41528,'blocks_2_acfe_flexible_toggle',''),(264916,41528,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(264917,41528,'blocks_2_acfe_flexible_layout_title','Form'),(264918,41528,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(264919,41528,'blocks_2_row_content_format','standard'),(264920,41528,'_blocks_2_row_content_format','field_6481ead962881'),(264921,41528,'blocks_2_row_content_title',''),(264922,41528,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(264923,41528,'blocks_2_row_content_heading','Enquire Today'),(264924,41528,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(264925,41528,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(264926,41528,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(264927,41528,'blocks_2_row_content_actions',''),(264928,41528,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(264929,41528,'blocks_2_row_content',''),(264930,41528,'_blocks_2_row_content','field_61a0f5f5b3db0'),(264931,41528,'blocks_2_row_form','40394'),(264932,41528,'_blocks_2_row_form','field_61a4ff2c0b08e'),(264933,41528,'blocks_2_row_form_button_label',''),(264934,41528,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(264935,41528,'blocks_3_acfe_flexible_toggle',''),(264936,41528,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(264937,41528,'blocks_3_acfe_flexible_layout_title','Video'),(264938,41528,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(264939,41528,'blocks_3_size','large'),(264940,41528,'_blocks_3_size','field_6487038f297c1'),(264941,41528,'blocks_3_row_content_title',''),(264942,41528,'_blocks_3_row_content_title','field_64870132a865d'),(264943,41528,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(264944,41528,'_blocks_3_row_content_heading','field_64870142a865e'),(264945,41528,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(264946,41528,'_blocks_3_row_content_text','field_64870148a865f'),(264947,41528,'blocks_3_row_content',''),(264948,41528,'_blocks_3_row_content','field_6487008ba865c'),(264949,41528,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(264950,41528,'_blocks_3_video_src','field_6193c4a98ec07'),(264951,41528,'blocks_3_video_thumbnail',''),(264952,41528,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(264953,41528,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(264954,41528,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(264955,41528,'blocks_6_icon_row_items_2_label','Deposit & balance'),(264956,41528,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(264957,41528,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(264958,41528,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(264959,41528,'blocks_10_acfe_flexible_toggle','1'),(264960,41528,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(264961,41528,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(264962,41528,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(264963,41528,'blocks_10_options_theme','#ffffff'),(264964,41528,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(264965,41528,'blocks_10_options',''),(264966,41528,'_blocks_10_options','field_617ac0b7f6c08'),(264967,41528,'blocks_10_show','selection'),(264968,41528,'_blocks_10_show','field_61a49cba9d946'),(264969,41528,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(264970,41528,'_blocks_10_courses','field_61b244781ee0a'),(264971,41528,'blocks_10_open_whats_included','1'),(264972,41528,'_blocks_10_open_whats_included','field_66ebfd679450c'),(264973,41528,'blocks_10_open_key_information','0'),(264974,41528,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(264975,41528,'blocks_10_open',''),(264976,41528,'_blocks_10_open','field_66ebfd009450b'),(264977,41528,'blocks_11_acfe_flexible_toggle',''),(264978,41528,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(264979,41528,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(264980,41528,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(264981,41528,'blocks_11_options_theme','#ffffff'),(264982,41528,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(264983,41528,'blocks_11_options_reverse','0'),(264984,41528,'_blocks_11_options_reverse','field_61768049bb8ac'),(264985,41528,'blocks_11_options',''),(264986,41528,'_blocks_11_options','field_617682517c334'),(264987,41528,'blocks_11_split_5050_image','41504'),(264988,41528,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(264989,41528,'blocks_11_split_5050_video',''),(264990,41528,'_blocks_11_split_5050_video','field_6239f3160848a'),(264991,41528,'blocks_11_split_5050_content_title','Optimise Performance '),(264992,41528,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(264993,41528,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(264994,41528,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(264995,41528,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW53757674 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW53757674 BCX8\">Advance your Pilates </span><span class=\"NormalTextRun SCXW53757674 BCX8\">expertise</span><span class=\"NormalTextRun SCXW53757674 BCX8\"> with a comprehensive Level 4 course designed to build on foundational knowledge and introduce advanced techniques to support and enhance client outcomes. Specialise in biomechanics and stand out in the fitness industry with skills that improve client performance, posture, and functional movement.</span></span><span class=\"EOP SCXW53757674 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Level 4 Pilates Includes:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26316?category=qualifications&amp;query=vtct%20postnatal\"><span data-contrast=\"none\">VTCT Level 3 Award in Adapting Physical Activity for Antenatal and Postnatal Clients.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26662?category=qualifications&amp;query=VTCT%20mat%20pilates\"><span data-contrast=\"none\">VTCT Level 3 Diploma in Instructing Mat-Based Pilates.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/48763?category=qualifications&amp;query=transcend%20pilates\"><span data-contrast=\"none\">Transcend Level 4 Certificate in Teaching Matwork Pilates</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">As a qualified level 4 Pilates instructor you will be able to: </span></b><span data-ccp-props=\"{}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own classes and work with clients on a 1-to-1 basis</span><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Teach Pilates at beginner, intermediate and advanced levels</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own weight management clinic, or offer individual consultations</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Create bespoke Pilates routines for new and expectant mothers</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Be able to create bespoke Pilates routines for clients with mobility considerations such as Arthritis or Hypermobility</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(264996,41528,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(264997,41528,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(264998,41528,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(264999,41528,'blocks_11_split_5050_content_actions','1'),(265000,41528,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(265001,41528,'blocks_11_split_5050_content',''),(265002,41528,'_blocks_11_split_5050_content','field_61767afceb8ba'),(265003,41528,'blocks_12_acfe_flexible_toggle',''),(265004,41528,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(265005,41528,'blocks_12_acfe_flexible_layout_title','Template'),(265006,41528,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(265007,41528,'blocks_12_template','40987'),(265008,41528,'_blocks_12_template','field_617bdd570fe01'),(265009,41528,'blocks_13_acfe_flexible_toggle',''),(265010,41528,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(265011,41528,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(265012,41528,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(265013,41528,'blocks_13_options_theme','#f5f5f5'),(265014,41528,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(265015,41528,'blocks_13_options_state','0'),(265016,41528,'_blocks_13_options_state','field_6239fcb7508c5'),(265017,41528,'blocks_13_options',''),(265018,41528,'_blocks_13_options','field_6177e2991ac44'),(265019,41528,'blocks_13_content_title',''),(265020,41528,'_blocks_13_content_title','field_64d237e8bb1e2'),(265021,41528,'blocks_13_content_heading','FAQ\'s'),(265022,41528,'_blocks_13_content_heading','field_64d237e8bb1e3'),(265023,41528,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(265024,41528,'_blocks_13_content_text','field_64d237e8bb1e4'),(265025,41528,'blocks_13_content_actions',''),(265026,41528,'_blocks_13_content_actions','field_64d237e8bb1e5'),(265027,41528,'blocks_13_content_align','left'),(265028,41528,'_blocks_13_content_align','field_64d2443e6b6aa'),(265029,41528,'blocks_13_content',''),(265030,41528,'_blocks_13_content','field_64d237e8bb1e1'),(265031,41528,'blocks_13_accordion_content','faqs'),(265032,41528,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(265033,41528,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41517\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(265034,41528,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(265035,41528,'blocks_13_actions',''),(265036,41528,'_blocks_13_actions','field_61a746a817f7a'),(265037,41520,'_wp_old_slug','level-4-sports-massage-diploma-in-biomechanics-coaching-copy'),(265038,41529,'hide_hero','0'),(265039,41529,'_hide_hero','field_66a2380fcda39'),(265040,41529,'hero_title','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching '),(265041,41529,'_hero_title','field_617571fe285e8'),(265042,41529,'hero_text','Strapline: Elevate Your Pilates Practice with Intrinsic biomechanics and enhance your career pathways '),(265043,41529,'_hero_text','field_6175723c285e9'),(265044,41529,'hero_actions','1'),(265045,41529,'_hero_actions','field_61757270285ea'),(265046,41529,'hero_style','default'),(265047,41529,'_hero_style','field_62051d9dc5324'),(265048,41529,'_thumbnail_id','41524'),(265049,41529,'__thumbnail_id','field_617570855ddaf'),(265050,41529,'hero_image_pos_x','right'),(265051,41529,'_hero_image_pos_x','field_62ec3d05390bb'),(265052,41529,'hero_image_pos_y','top'),(265053,41529,'_hero_image_pos_y','field_62ec3d05390bc'),(265054,41529,'hero_image_pos',''),(265055,41529,'_hero_image_pos','field_62ec3d05390ba'),(265056,41529,'fft_hide_from_listings','0'),(265057,41529,'_fft_hide_from_listings','field_61f1320446ab2'),(265058,41529,'fft_page_format','default'),(265059,41529,'_fft_page_format','field_61ae213f1f218'),(265060,41529,'fft_hide_nav','0'),(265061,41529,'_fft_hide_nav','field_635bd5e43527c'),(265062,41529,'fft_hide_header_call_to_action','0'),(265063,41529,'_fft_hide_header_call_to_action','field_635bd6723527d'),(265064,41529,'fft_page_sitemap','0'),(265065,41529,'_fft_page_sitemap','field_61af9b34e8181'),(265066,41529,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(265067,41529,'_blocks','field_6176696113096'),(265068,41529,'course_label_text',''),(265069,41529,'_course_label_text','field_61e17babf71fa'),(265070,41529,'course_label',''),(265071,41529,'_course_label','field_61e12f92749a7'),(265072,41529,'course_description',''),(265073,41529,'_course_description','field_617ac5788e5e1'),(265074,41529,'course_key_info',''),(265075,41529,'_course_key_info','field_617ac6ad8e5e2'),(265076,41529,'course_included',''),(265077,41529,'_course_included','field_617ac6f08e5e4'),(265078,41529,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41455-4\";s:6:\"target\";s:0:\"\";}'),(265079,41529,'_hero_actions_0_button','field_61757281285eb'),(265080,41529,'blocks_0_acfe_flexible_toggle',''),(265081,41529,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(265082,41529,'blocks_0_acfe_flexible_layout_title','Icons'),(265083,41529,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(265084,41529,'blocks_0_options_theme','#b61234'),(265085,41529,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(265086,41529,'blocks_0_options_format','row'),(265087,41529,'_blocks_0_options_format','field_64bfde9a90690'),(265088,41529,'blocks_0_options',''),(265089,41529,'_blocks_0_options','field_64bfdd9b90684'),(265090,41529,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(265091,41529,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(265092,41529,'blocks_0_icon_row_items_0_label','Accreditation'),(265093,41529,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(265094,41529,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(265095,41529,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(265096,41529,'blocks_0_icon_row_items_1_icon','finance.svg'),(265097,41529,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(265098,41529,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(265099,41529,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(265100,41529,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(265101,41529,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(265102,41529,'blocks_0_icon_row_items_2_icon','progression.svg'),(265103,41529,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(265104,41529,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(265105,41529,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(265106,41529,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(265107,41529,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(265108,41529,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(265109,41529,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(265110,41529,'blocks_0_icon_row_items_3_label','Qualification'),(265111,41529,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(265112,41529,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(265113,41529,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(265114,41529,'blocks_0_icon_row_items','4'),(265115,41529,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(265116,41529,'blocks_5_acfe_flexible_toggle','1'),(265117,41529,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(265118,41529,'blocks_5_acfe_flexible_layout_title','Tabs'),(265119,41529,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(265120,41529,'blocks_5_options_theme','#ffffff'),(265121,41529,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(265122,41529,'blocks_5_options',''),(265123,41529,'_blocks_5_options','field_6177cfcd8140f'),(265124,41529,'blocks_5_tabs_0_tab_label','Entry requirements'),(265125,41529,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(265126,41529,'blocks_5_tabs_0_tab_content_title',''),(265127,41529,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(265128,41529,'blocks_5_tabs_0_tab_content_heading',''),(265129,41529,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(265130,41529,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(265131,41529,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(265132,41529,'blocks_5_tabs_0_tab_content_actions',''),(265133,41529,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(265134,41529,'blocks_5_tabs_0_tab_content',''),(265135,41529,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(265136,41529,'blocks_5_tabs_0_tab_image',''),(265137,41529,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(265138,41529,'blocks_5_tabs_1_tab_label','Learning format'),(265139,41529,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(265140,41529,'blocks_5_tabs_1_tab_content_title',''),(265141,41529,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(265142,41529,'blocks_5_tabs_1_tab_content_heading',''),(265143,41529,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(265144,41529,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(265145,41529,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(265146,41529,'blocks_5_tabs_1_tab_content_actions',''),(265147,41529,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(265148,41529,'blocks_5_tabs_1_tab_content',''),(265149,41529,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(265150,41529,'blocks_5_tabs_1_tab_image',''),(265151,41529,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(265152,41529,'blocks_5_tabs_2_tab_label','Qualifications included'),(265153,41529,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(265154,41529,'blocks_5_tabs_2_tab_content_title',''),(265155,41529,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(265156,41529,'blocks_5_tabs_2_tab_content_heading',''),(265157,41529,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(265158,41529,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(265159,41529,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(265160,41529,'blocks_5_tabs_2_tab_content_actions',''),(265161,41529,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(265162,41529,'blocks_5_tabs_2_tab_content',''),(265163,41529,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(265164,41529,'blocks_5_tabs_2_tab_image',''),(265165,41529,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(265166,41529,'blocks_5_tabs','3'),(265167,41529,'_blocks_5_tabs','field_6177cff281419'),(265168,41529,'blocks_4_acfe_flexible_toggle',''),(265169,41529,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(265170,41529,'blocks_4_acfe_flexible_layout_title','Template'),(265171,41529,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(265172,41529,'blocks_4_template','39207'),(265173,41529,'_blocks_4_template','field_617bdd570fe01'),(265174,41529,'blocks_6_acfe_flexible_toggle',''),(265175,41529,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(265176,41529,'blocks_6_acfe_flexible_layout_title','Icons'),(265177,41529,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(265178,41529,'blocks_6_options_theme','#f5f5f5'),(265179,41529,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(265180,41529,'blocks_6_options_format','stacked'),(265181,41529,'_blocks_6_options_format','field_64bfde9a90690'),(265182,41529,'blocks_6_options',''),(265183,41529,'_blocks_6_options','field_64bfdd9b90684'),(265184,41529,'blocks_6_row_content_title','Options available to pay for your course'),(265185,41529,'_blocks_6_row_content_title','field_64bfdd9b90687'),(265186,41529,'blocks_6_row_content_heading','Fees & Funding Options '),(265187,41529,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(265188,41529,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(265189,41529,'_blocks_6_row_content_text','field_64bfdd9b90689'),(265190,41529,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(265191,41529,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(265192,41529,'blocks_6_row_content_actions','1'),(265193,41529,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(265194,41529,'blocks_6_row_content',''),(265195,41529,'_blocks_6_row_content','field_64bfdd9b90686'),(265196,41529,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(265197,41529,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(265198,41529,'blocks_6_icon_row_items_0_label','Pay in full'),(265199,41529,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(265200,41529,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(265201,41529,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(265202,41529,'blocks_6_icon_row_items_1_icon','finance.svg'),(265203,41529,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(265204,41529,'blocks_6_icon_row_items_1_label','0% finance'),(265205,41529,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(265206,41529,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(265207,41529,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(265208,41529,'blocks_6_icon_row_items','3'),(265209,41529,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(265210,41529,'blocks_7_acfe_flexible_toggle',''),(265211,41529,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(265212,41529,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(265213,41529,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(265214,41529,'blocks_7_options_theme','#ffffff'),(265215,41529,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(265216,41529,'blocks_7_options_reverse','0'),(265217,41529,'_blocks_7_options_reverse','field_61768049bb8ac'),(265218,41529,'blocks_7_options',''),(265219,41529,'_blocks_7_options','field_617682517c334'),(265220,41529,'blocks_7_split_5050_image','41526'),(265221,41529,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(265222,41529,'blocks_7_split_5050_video',''),(265223,41529,'_blocks_7_split_5050_video','field_6239f3160848a'),(265224,41529,'blocks_7_split_5050_content_title',''),(265225,41529,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(265226,41529,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(265227,41529,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(265228,41529,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(265229,41529,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(265230,41529,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(265231,41529,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(265232,41529,'blocks_7_split_5050_content_actions','1'),(265233,41529,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(265234,41529,'blocks_7_split_5050_content',''),(265235,41529,'_blocks_7_split_5050_content','field_61767afceb8ba'),(265236,41529,'blocks_8_acfe_flexible_toggle',''),(265237,41529,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(265238,41529,'blocks_8_acfe_flexible_layout_title','Icons'),(265239,41529,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(265240,41529,'blocks_8_options_theme','#f5f5f5'),(265241,41529,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(265242,41529,'blocks_8_options_format','row'),(265243,41529,'_blocks_8_options_format','field_64bfde9a90690'),(265244,41529,'blocks_8_options',''),(265245,41529,'_blocks_8_options','field_64bfdd9b90684'),(265246,41529,'blocks_8_icon_row_items_0_icon','qualification.svg'),(265247,41529,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(265248,41529,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(265249,41529,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(265250,41529,'blocks_8_icon_row_items_0_text',''),(265251,41529,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(265252,41529,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(265253,41529,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(265254,41529,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(265255,41529,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(265256,41529,'blocks_8_icon_row_items_1_text',''),(265257,41529,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(265258,41529,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(265259,41529,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(265260,41529,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(265261,41529,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(265262,41529,'blocks_8_icon_row_items_2_text',''),(265263,41529,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(265264,41529,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(265265,41529,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(265266,41529,'blocks_8_icon_row_items_3_label','Flexible funding options'),(265267,41529,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(265268,41529,'blocks_8_icon_row_items_3_text',''),(265269,41529,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(265270,41529,'blocks_8_icon_row_items','4'),(265271,41529,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(265272,41529,'blocks_9_acfe_flexible_toggle',''),(265273,41529,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(265274,41529,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(265275,41529,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(265276,41529,'blocks_9_options_theme','#ffffff'),(265277,41529,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(265278,41529,'blocks_9_options_reverse','1'),(265279,41529,'_blocks_9_options_reverse','field_61768049bb8ac'),(265280,41529,'blocks_9_options',''),(265281,41529,'_blocks_9_options','field_617682517c334'),(265282,41529,'blocks_9_split_5050_image','39224'),(265283,41529,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(265284,41529,'blocks_9_split_5050_video',''),(265285,41529,'_blocks_9_split_5050_video','field_6239f3160848a'),(265286,41529,'blocks_9_split_5050_content_title','Locations'),(265287,41529,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(265288,41529,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(265289,41529,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(265290,41529,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(265291,41529,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(265292,41529,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(265293,41529,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(265294,41529,'blocks_9_split_5050_content_actions','1'),(265295,41529,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(265296,41529,'blocks_9_split_5050_content',''),(265297,41529,'_blocks_9_split_5050_content','field_61767afceb8ba'),(265298,41529,'blocks_1_acfe_flexible_toggle',''),(265299,41529,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(265300,41529,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(265301,41529,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(265302,41529,'blocks_1_options_theme','#ffffff'),(265303,41529,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(265304,41529,'blocks_1_options_reverse','0'),(265305,41529,'_blocks_1_options_reverse','field_61768049bb8ac'),(265306,41529,'blocks_1_options',''),(265307,41529,'_blocks_1_options','field_617682517c334'),(265308,41529,'blocks_1_split_5050_image','41506'),(265309,41529,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(265310,41529,'blocks_1_split_5050_video',''),(265311,41529,'_blocks_1_split_5050_video','field_6239f3160848a'),(265312,41529,'blocks_1_split_5050_content_title',''),(265313,41529,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(265314,41529,'blocks_1_split_5050_content_heading','Course Overview'),(265315,41529,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(265316,41529,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW114645069 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW114645069 BCX8\">Enhance your</span> <span class=\"NormalTextRun SCXW114645069 BCX8\">expertise</span><span class=\"NormalTextRun SCXW114645069 BCX8\"> with our comprehensive Level 4 Pilates Instructor and Diploma in Biomechanics Coaching, a unique course designed to elevate your Pilates practice while equipping you with specialised Intrinsic biomechanics skills. This programme blends advanced Pilates methods with biomechanics principles to improve client movement, enhance posture, and support functional performance. Perfect for Pilates instructors and fitness professionals aiming to work confidently with clients facing orthopaedic or movement challenges, this dual qualification empowers you to make a lasting impact on client wellbeing through targeted analysis and </span><span class=\"NormalTextRun SCXW114645069 BCX8\">risk preventions.</span></span><span class=\"EOP SCXW114645069 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(265317,41529,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(265318,41529,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(265319,41529,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(265320,41529,'blocks_1_split_5050_content_actions','1'),(265321,41529,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(265322,41529,'blocks_1_split_5050_content',''),(265323,41529,'_blocks_1_split_5050_content','field_61767afceb8ba'),(265324,41529,'blocks_2_acfe_flexible_toggle',''),(265325,41529,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(265326,41529,'blocks_2_acfe_flexible_layout_title','Form'),(265327,41529,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(265328,41529,'blocks_2_row_content_format','standard'),(265329,41529,'_blocks_2_row_content_format','field_6481ead962881'),(265330,41529,'blocks_2_row_content_title',''),(265331,41529,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(265332,41529,'blocks_2_row_content_heading','Enquire Today'),(265333,41529,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(265334,41529,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(265335,41529,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(265336,41529,'blocks_2_row_content_actions',''),(265337,41529,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(265338,41529,'blocks_2_row_content',''),(265339,41529,'_blocks_2_row_content','field_61a0f5f5b3db0'),(265340,41529,'blocks_2_row_form','40394'),(265341,41529,'_blocks_2_row_form','field_61a4ff2c0b08e'),(265342,41529,'blocks_2_row_form_button_label',''),(265343,41529,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(265344,41529,'blocks_3_acfe_flexible_toggle',''),(265345,41529,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(265346,41529,'blocks_3_acfe_flexible_layout_title','Video'),(265347,41529,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(265348,41529,'blocks_3_size','large'),(265349,41529,'_blocks_3_size','field_6487038f297c1'),(265350,41529,'blocks_3_row_content_title',''),(265351,41529,'_blocks_3_row_content_title','field_64870132a865d'),(265352,41529,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(265353,41529,'_blocks_3_row_content_heading','field_64870142a865e'),(265354,41529,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(265355,41529,'_blocks_3_row_content_text','field_64870148a865f'),(265356,41529,'blocks_3_row_content',''),(265357,41529,'_blocks_3_row_content','field_6487008ba865c'),(265358,41529,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(265359,41529,'_blocks_3_video_src','field_6193c4a98ec07'),(265360,41529,'blocks_3_video_thumbnail',''),(265361,41529,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(265362,41529,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(265363,41529,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(265364,41529,'blocks_6_icon_row_items_2_label','Deposit & balance'),(265365,41529,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(265366,41529,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(265367,41529,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(265368,41529,'blocks_10_acfe_flexible_toggle','1'),(265369,41529,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(265370,41529,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(265371,41529,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(265372,41529,'blocks_10_options_theme','#ffffff'),(265373,41529,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(265374,41529,'blocks_10_options',''),(265375,41529,'_blocks_10_options','field_617ac0b7f6c08'),(265376,41529,'blocks_10_show','selection'),(265377,41529,'_blocks_10_show','field_61a49cba9d946'),(265378,41529,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(265379,41529,'_blocks_10_courses','field_61b244781ee0a'),(265380,41529,'blocks_10_open_whats_included','1'),(265381,41529,'_blocks_10_open_whats_included','field_66ebfd679450c'),(265382,41529,'blocks_10_open_key_information','0'),(265383,41529,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(265384,41529,'blocks_10_open',''),(265385,41529,'_blocks_10_open','field_66ebfd009450b'),(265386,41529,'blocks_11_acfe_flexible_toggle',''),(265387,41529,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(265388,41529,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(265389,41529,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(265390,41529,'blocks_11_options_theme','#ffffff'),(265391,41529,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(265392,41529,'blocks_11_options_reverse','0'),(265393,41529,'_blocks_11_options_reverse','field_61768049bb8ac'),(265394,41529,'blocks_11_options',''),(265395,41529,'_blocks_11_options','field_617682517c334'),(265396,41529,'blocks_11_split_5050_image','41504'),(265397,41529,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(265398,41529,'blocks_11_split_5050_video',''),(265399,41529,'_blocks_11_split_5050_video','field_6239f3160848a'),(265400,41529,'blocks_11_split_5050_content_title','Optimise Performance '),(265401,41529,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(265402,41529,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(265403,41529,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(265404,41529,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW53757674 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW53757674 BCX8\">Advance your Pilates </span><span class=\"NormalTextRun SCXW53757674 BCX8\">expertise</span><span class=\"NormalTextRun SCXW53757674 BCX8\"> with a comprehensive Level 4 course designed to build on foundational knowledge and introduce advanced techniques to support and enhance client outcomes. Specialise in biomechanics and stand out in the fitness industry with skills that improve client performance, posture, and functional movement.</span></span><span class=\"EOP SCXW53757674 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Level 4 Pilates Includes:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26316?category=qualifications&amp;query=vtct%20postnatal\"><span data-contrast=\"none\">VTCT Level 3 Award in Adapting Physical Activity for Antenatal and Postnatal Clients.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26662?category=qualifications&amp;query=VTCT%20mat%20pilates\"><span data-contrast=\"none\">VTCT Level 3 Diploma in Instructing Mat-Based Pilates.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/48763?category=qualifications&amp;query=transcend%20pilates\"><span data-contrast=\"none\">Transcend Level 4 Certificate in Teaching Matwork Pilates</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">As a qualified level 4 Pilates instructor you will be able to: </span></b><span data-ccp-props=\"{}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own classes and work with clients on a 1-to-1 basis</span><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Teach Pilates at beginner, intermediate and advanced levels</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own weight management clinic, or offer individual consultations</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Create bespoke Pilates routines for new and expectant mothers</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Be able to create bespoke Pilates routines for clients with mobility considerations such as Arthritis or Hypermobility</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(265405,41529,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(265406,41529,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(265407,41529,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(265408,41529,'blocks_11_split_5050_content_actions','1'),(265409,41529,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(265410,41529,'blocks_11_split_5050_content',''),(265411,41529,'_blocks_11_split_5050_content','field_61767afceb8ba'),(265412,41529,'blocks_12_acfe_flexible_toggle',''),(265413,41529,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(265414,41529,'blocks_12_acfe_flexible_layout_title','Template'),(265415,41529,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(265416,41529,'blocks_12_template','40987'),(265417,41529,'_blocks_12_template','field_617bdd570fe01'),(265418,41529,'blocks_13_acfe_flexible_toggle',''),(265419,41529,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(265420,41529,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(265421,41529,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(265422,41529,'blocks_13_options_theme','#f5f5f5'),(265423,41529,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(265424,41529,'blocks_13_options_state','0'),(265425,41529,'_blocks_13_options_state','field_6239fcb7508c5'),(265426,41529,'blocks_13_options',''),(265427,41529,'_blocks_13_options','field_6177e2991ac44'),(265428,41529,'blocks_13_content_title',''),(265429,41529,'_blocks_13_content_title','field_64d237e8bb1e2'),(265430,41529,'blocks_13_content_heading','FAQ\'s'),(265431,41529,'_blocks_13_content_heading','field_64d237e8bb1e3'),(265432,41529,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(265433,41529,'_blocks_13_content_text','field_64d237e8bb1e4'),(265434,41529,'blocks_13_content_actions',''),(265435,41529,'_blocks_13_content_actions','field_64d237e8bb1e5'),(265436,41529,'blocks_13_content_align','left'),(265437,41529,'_blocks_13_content_align','field_64d2443e6b6aa'),(265438,41529,'blocks_13_content',''),(265439,41529,'_blocks_13_content','field_64d237e8bb1e1'),(265440,41529,'blocks_13_accordion_content','faqs'),(265441,41529,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(265442,41529,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41517\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(265443,41529,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(265444,41529,'blocks_13_actions',''),(265445,41529,'_blocks_13_actions','field_61a746a817f7a'),(265446,41530,'hide_hero','0'),(265447,41530,'_hide_hero','field_66a2380fcda39'),(265448,41530,'hero_title','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching '),(265449,41530,'_hero_title','field_617571fe285e8'),(265450,41530,'hero_text','Strapline: Elevate Your Pilates Practice with Intrinsic biomechanics and enhance your career pathways '),(265451,41530,'_hero_text','field_6175723c285e9'),(265452,41530,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41455-4\";s:6:\"target\";s:0:\"\";}'),(265453,41530,'_hero_actions_0_button','field_61757281285eb'),(265454,41530,'hero_actions','1'),(265455,41530,'_hero_actions','field_61757270285ea'),(265456,41530,'hero_style','default'),(265457,41530,'_hero_style','field_62051d9dc5324'),(265458,41530,'_thumbnail_id','41524'),(265459,41530,'__thumbnail_id','field_617570855ddaf'),(265460,41530,'hero_image_pos_x','right'),(265461,41530,'_hero_image_pos_x','field_62ec3d05390bb'),(265462,41530,'hero_image_pos_y','top'),(265463,41530,'_hero_image_pos_y','field_62ec3d05390bc'),(265464,41530,'hero_image_pos',''),(265465,41530,'_hero_image_pos','field_62ec3d05390ba'),(265466,41530,'fft_hide_from_listings','0'),(265467,41530,'_fft_hide_from_listings','field_61f1320446ab2'),(265468,41530,'fft_page_format','default'),(265469,41530,'_fft_page_format','field_61ae213f1f218'),(265470,41530,'fft_hide_nav','0'),(265471,41530,'_fft_hide_nav','field_635bd5e43527c'),(265472,41530,'fft_hide_header_call_to_action','0'),(265473,41530,'_fft_hide_header_call_to_action','field_635bd6723527d'),(265474,41530,'fft_page_sitemap','0'),(265475,41530,'_fft_page_sitemap','field_61af9b34e8181'),(265476,41530,'blocks_0_acfe_flexible_toggle',''),(265477,41530,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(265478,41530,'blocks_0_acfe_flexible_layout_title','Icons'),(265479,41530,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(265480,41530,'blocks_0_options_theme','#b61234'),(265481,41530,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(265482,41530,'blocks_0_options_format','row'),(265483,41530,'_blocks_0_options_format','field_64bfde9a90690'),(265484,41530,'blocks_0_options',''),(265485,41530,'_blocks_0_options','field_64bfdd9b90684'),(265486,41530,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(265487,41530,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(265488,41530,'blocks_0_icon_row_items_0_label','Accreditation'),(265489,41530,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(265490,41530,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(265491,41530,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(265492,41530,'blocks_0_icon_row_items_1_icon','finance.svg'),(265493,41530,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(265494,41530,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(265495,41530,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(265496,41530,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(265497,41530,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(265498,41530,'blocks_0_icon_row_items_2_icon','progression.svg'),(265499,41530,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(265500,41530,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(265501,41530,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(265502,41530,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(265503,41530,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(265504,41530,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(265505,41530,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(265506,41530,'blocks_0_icon_row_items_3_label','Qualification'),(265507,41530,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(265508,41530,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(265509,41530,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(265510,41530,'blocks_0_icon_row_items','4'),(265511,41530,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(265512,41530,'blocks_1_acfe_flexible_toggle',''),(265513,41530,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(265514,41530,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(265515,41530,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(265516,41530,'blocks_1_options_theme','#ffffff'),(265517,41530,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(265518,41530,'blocks_1_options_reverse','0'),(265519,41530,'_blocks_1_options_reverse','field_61768049bb8ac'),(265520,41530,'blocks_1_options',''),(265521,41530,'_blocks_1_options','field_617682517c334'),(265522,41530,'blocks_1_split_5050_image','41506'),(265523,41530,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(265524,41530,'blocks_1_split_5050_video',''),(265525,41530,'_blocks_1_split_5050_video','field_6239f3160848a'),(265526,41530,'blocks_1_split_5050_content_title',''),(265527,41530,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(265528,41530,'blocks_1_split_5050_content_heading','Course Overview'),(265529,41530,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(265530,41530,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW114645069 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW114645069 BCX8\">Enhance your</span> <span class=\"NormalTextRun SCXW114645069 BCX8\">expertise</span><span class=\"NormalTextRun SCXW114645069 BCX8\"> with our comprehensive Level 4 Pilates Instructor and Diploma in Biomechanics Coaching, a unique course designed to elevate your Pilates practice while equipping you with specialised Intrinsic biomechanics skills. This programme blends advanced Pilates methods with biomechanics principles to improve client movement, enhance posture, and support functional performance. Perfect for Pilates instructors and fitness professionals aiming to work confidently with clients facing orthopaedic or movement challenges, this dual qualification empowers you to make a lasting impact on client wellbeing through targeted analysis and </span><span class=\"NormalTextRun SCXW114645069 BCX8\">risk preventions.</span></span><span class=\"EOP SCXW114645069 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(265531,41530,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(265532,41530,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(265533,41530,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(265534,41530,'blocks_1_split_5050_content_actions','1'),(265535,41530,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(265536,41530,'blocks_1_split_5050_content',''),(265537,41530,'_blocks_1_split_5050_content','field_61767afceb8ba'),(265538,41530,'blocks_2_acfe_flexible_toggle',''),(265539,41530,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(265540,41530,'blocks_2_acfe_flexible_layout_title','Form'),(265541,41530,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(265542,41530,'blocks_2_row_content_format','standard'),(265543,41530,'_blocks_2_row_content_format','field_6481ead962881'),(265544,41530,'blocks_2_row_content_title',''),(265545,41530,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(265546,41530,'blocks_2_row_content_heading','Enquire Today'),(265547,41530,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(265548,41530,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(265549,41530,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(265550,41530,'blocks_2_row_content_actions',''),(265551,41530,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(265552,41530,'blocks_2_row_content',''),(265553,41530,'_blocks_2_row_content','field_61a0f5f5b3db0'),(265554,41530,'blocks_2_row_form','40394'),(265555,41530,'_blocks_2_row_form','field_61a4ff2c0b08e'),(265556,41530,'blocks_2_row_form_button_label',''),(265557,41530,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(265558,41530,'blocks_3_acfe_flexible_toggle',''),(265559,41530,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(265560,41530,'blocks_3_acfe_flexible_layout_title','Video'),(265561,41530,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(265562,41530,'blocks_3_size','large'),(265563,41530,'_blocks_3_size','field_6487038f297c1'),(265564,41530,'blocks_3_row_content_title',''),(265565,41530,'_blocks_3_row_content_title','field_64870132a865d'),(265566,41530,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(265567,41530,'_blocks_3_row_content_heading','field_64870142a865e'),(265568,41530,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(265569,41530,'_blocks_3_row_content_text','field_64870148a865f'),(265570,41530,'blocks_3_row_content',''),(265571,41530,'_blocks_3_row_content','field_6487008ba865c'),(265572,41530,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(265573,41530,'_blocks_3_video_src','field_6193c4a98ec07'),(265574,41530,'blocks_3_video_thumbnail',''),(265575,41530,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(265576,41530,'blocks_4_acfe_flexible_toggle',''),(265577,41530,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(265578,41530,'blocks_4_acfe_flexible_layout_title','Template'),(265579,41530,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(265580,41530,'blocks_4_template','39207'),(265581,41530,'_blocks_4_template','field_617bdd570fe01'),(265582,41530,'blocks_5_acfe_flexible_toggle','1'),(265583,41530,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(265584,41530,'blocks_5_acfe_flexible_layout_title','Tabs'),(265585,41530,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(265586,41530,'blocks_5_options_theme','#ffffff'),(265587,41530,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(265588,41530,'blocks_5_options',''),(265589,41530,'_blocks_5_options','field_6177cfcd8140f'),(265590,41530,'blocks_5_tabs_0_tab_label','Entry requirements'),(265591,41530,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(265592,41530,'blocks_5_tabs_0_tab_content_title',''),(265593,41530,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(265594,41530,'blocks_5_tabs_0_tab_content_heading',''),(265595,41530,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(265596,41530,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(265597,41530,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(265598,41530,'blocks_5_tabs_0_tab_content_actions',''),(265599,41530,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(265600,41530,'blocks_5_tabs_0_tab_content',''),(265601,41530,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(265602,41530,'blocks_5_tabs_0_tab_image',''),(265603,41530,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(265604,41530,'blocks_5_tabs_1_tab_label','Learning format'),(265605,41530,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(265606,41530,'blocks_5_tabs_1_tab_content_title',''),(265607,41530,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(265608,41530,'blocks_5_tabs_1_tab_content_heading',''),(265609,41530,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(265610,41530,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(265611,41530,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(265612,41530,'blocks_5_tabs_1_tab_content_actions',''),(265613,41530,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(265614,41530,'blocks_5_tabs_1_tab_content',''),(265615,41530,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(265616,41530,'blocks_5_tabs_1_tab_image',''),(265617,41530,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(265618,41530,'blocks_5_tabs_2_tab_label','Qualifications included'),(265619,41530,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(265620,41530,'blocks_5_tabs_2_tab_content_title',''),(265621,41530,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(265622,41530,'blocks_5_tabs_2_tab_content_heading',''),(265623,41530,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(265624,41530,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(265625,41530,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(265626,41530,'blocks_5_tabs_2_tab_content_actions',''),(265627,41530,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(265628,41530,'blocks_5_tabs_2_tab_content',''),(265629,41530,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(265630,41530,'blocks_5_tabs_2_tab_image',''),(265631,41530,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(265632,41530,'blocks_5_tabs','3'),(265633,41530,'_blocks_5_tabs','field_6177cff281419'),(265634,41530,'blocks_6_acfe_flexible_toggle',''),(265635,41530,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(265636,41530,'blocks_6_acfe_flexible_layout_title','Icons'),(265637,41530,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(265638,41530,'blocks_6_options_theme','#f5f5f5'),(265639,41530,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(265640,41530,'blocks_6_options_format','stacked'),(265641,41530,'_blocks_6_options_format','field_64bfde9a90690'),(265642,41530,'blocks_6_options',''),(265643,41530,'_blocks_6_options','field_64bfdd9b90684'),(265644,41530,'blocks_6_row_content_title','Options available to pay for your course'),(265645,41530,'_blocks_6_row_content_title','field_64bfdd9b90687'),(265646,41530,'blocks_6_row_content_heading','Fees & Funding Options '),(265647,41530,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(265648,41530,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(265649,41530,'_blocks_6_row_content_text','field_64bfdd9b90689'),(265650,41530,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(265651,41530,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(265652,41530,'blocks_6_row_content_actions','1'),(265653,41530,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(265654,41530,'blocks_6_row_content',''),(265655,41530,'_blocks_6_row_content','field_64bfdd9b90686'),(265656,41530,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(265657,41530,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(265658,41530,'blocks_6_icon_row_items_0_label','Pay in full'),(265659,41530,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(265660,41530,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(265661,41530,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(265662,41530,'blocks_6_icon_row_items_1_icon','finance.svg'),(265663,41530,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(265664,41530,'blocks_6_icon_row_items_1_label','0% finance'),(265665,41530,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(265666,41530,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(265667,41530,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(265668,41530,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(265669,41530,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(265670,41530,'blocks_6_icon_row_items_2_label','Deposit & balance'),(265671,41530,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(265672,41530,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(265673,41530,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(265674,41530,'blocks_6_icon_row_items','3'),(265675,41530,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(265676,41530,'blocks_7_acfe_flexible_toggle',''),(265677,41530,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(265678,41530,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(265679,41530,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(265680,41530,'blocks_7_options_theme','#ffffff'),(265681,41530,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(265682,41530,'blocks_7_options_reverse','0'),(265683,41530,'_blocks_7_options_reverse','field_61768049bb8ac'),(265684,41530,'blocks_7_options',''),(265685,41530,'_blocks_7_options','field_617682517c334'),(265686,41530,'blocks_7_split_5050_image','41526'),(265687,41530,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(265688,41530,'blocks_7_split_5050_video',''),(265689,41530,'_blocks_7_split_5050_video','field_6239f3160848a'),(265690,41530,'blocks_7_split_5050_content_title',''),(265691,41530,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(265692,41530,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(265693,41530,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(265694,41530,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(265695,41530,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(265696,41530,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(265697,41530,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(265698,41530,'blocks_7_split_5050_content_actions','1'),(265699,41530,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(265700,41530,'blocks_7_split_5050_content',''),(265701,41530,'_blocks_7_split_5050_content','field_61767afceb8ba'),(265702,41530,'blocks_8_acfe_flexible_toggle',''),(265703,41530,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(265704,41530,'blocks_8_acfe_flexible_layout_title','Icons'),(265705,41530,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(265706,41530,'blocks_8_options_theme','#f5f5f5'),(265707,41530,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(265708,41530,'blocks_8_options_format','row'),(265709,41530,'_blocks_8_options_format','field_64bfde9a90690'),(265710,41530,'blocks_8_options',''),(265711,41530,'_blocks_8_options','field_64bfdd9b90684'),(265712,41530,'blocks_8_icon_row_items_0_icon','qualification.svg'),(265713,41530,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(265714,41530,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(265715,41530,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(265716,41530,'blocks_8_icon_row_items_0_text',''),(265717,41530,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(265718,41530,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(265719,41530,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(265720,41530,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(265721,41530,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(265722,41530,'blocks_8_icon_row_items_1_text',''),(265723,41530,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(265724,41530,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(265725,41530,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(265726,41530,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(265727,41530,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(265728,41530,'blocks_8_icon_row_items_2_text',''),(265729,41530,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(265730,41530,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(265731,41530,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(265732,41530,'blocks_8_icon_row_items_3_label','Flexible funding options'),(265733,41530,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(265734,41530,'blocks_8_icon_row_items_3_text',''),(265735,41530,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(265736,41530,'blocks_8_icon_row_items','4'),(265737,41530,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(265738,41530,'blocks_9_acfe_flexible_toggle',''),(265739,41530,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(265740,41530,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(265741,41530,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(265742,41530,'blocks_9_options_theme','#ffffff'),(265743,41530,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(265744,41530,'blocks_9_options_reverse','1'),(265745,41530,'_blocks_9_options_reverse','field_61768049bb8ac'),(265746,41530,'blocks_9_options',''),(265747,41530,'_blocks_9_options','field_617682517c334'),(265748,41530,'blocks_9_split_5050_image','39224'),(265749,41530,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(265750,41530,'blocks_9_split_5050_video',''),(265751,41530,'_blocks_9_split_5050_video','field_6239f3160848a'),(265752,41530,'blocks_9_split_5050_content_title','Locations'),(265753,41530,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(265754,41530,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(265755,41530,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(265756,41530,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(265757,41530,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(265758,41530,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(265759,41530,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(265760,41530,'blocks_9_split_5050_content_actions','1'),(265761,41530,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(265762,41530,'blocks_9_split_5050_content',''),(265763,41530,'_blocks_9_split_5050_content','field_61767afceb8ba'),(265764,41530,'blocks_10_acfe_flexible_toggle','1'),(265765,41530,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(265766,41530,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(265767,41530,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(265768,41530,'blocks_10_options_theme','#ffffff'),(265769,41530,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(265770,41530,'blocks_10_options',''),(265771,41530,'_blocks_10_options','field_617ac0b7f6c08'),(265772,41530,'blocks_10_show','selection'),(265773,41530,'_blocks_10_show','field_61a49cba9d946'),(265774,41530,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(265775,41530,'_blocks_10_courses','field_61b244781ee0a'),(265776,41530,'blocks_10_open_whats_included','1'),(265777,41530,'_blocks_10_open_whats_included','field_66ebfd679450c'),(265778,41530,'blocks_10_open_key_information','0'),(265779,41530,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(265780,41530,'blocks_10_open',''),(265781,41530,'_blocks_10_open','field_66ebfd009450b'),(265782,41530,'blocks_11_acfe_flexible_toggle',''),(265783,41530,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(265784,41530,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(265785,41530,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(265786,41530,'blocks_11_options_theme','#ffffff'),(265787,41530,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(265788,41530,'blocks_11_options_reverse','0'),(265789,41530,'_blocks_11_options_reverse','field_61768049bb8ac'),(265790,41530,'blocks_11_options',''),(265791,41530,'_blocks_11_options','field_617682517c334'),(265792,41530,'blocks_11_split_5050_image','41504'),(265793,41530,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(265794,41530,'blocks_11_split_5050_video',''),(265795,41530,'_blocks_11_split_5050_video','field_6239f3160848a'),(265796,41530,'blocks_11_split_5050_content_title','Optimise Performance '),(265797,41530,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(265798,41530,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(265799,41530,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(265800,41530,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW53757674 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW53757674 BCX8\">Advance your Pilates </span><span class=\"NormalTextRun SCXW53757674 BCX8\">expertise</span><span class=\"NormalTextRun SCXW53757674 BCX8\"> with a comprehensive Level 4 course designed to build on foundational knowledge and introduce advanced techniques to support and enhance client outcomes. Specialise in biomechanics and stand out in the fitness industry with skills that improve client performance, posture, and functional movement.</span></span><span class=\"EOP SCXW53757674 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Level 4 Pilates Includes:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26316?category=qualifications&amp;query=vtct%20postnatal\"><span data-contrast=\"none\">VTCT Level 3 Award in Adapting Physical Activity for Antenatal and Postnatal Clients.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26662?category=qualifications&amp;query=VTCT%20mat%20pilates\"><span data-contrast=\"none\">VTCT Level 3 Diploma in Instructing Mat-Based Pilates.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/48763?category=qualifications&amp;query=transcend%20pilates\"><span data-contrast=\"none\">Transcend Level 4 Certificate in Teaching Matwork Pilates</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">As a qualified level 4 Pilates instructor you will be able to: </span></b><span data-ccp-props=\"{}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own classes and work with clients on a 1-to-1 basis</span><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Teach Pilates at beginner, intermediate and advanced levels</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own weight management clinic, or offer individual consultations</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Create bespoke Pilates routines for new and expectant mothers</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Be able to create bespoke Pilates routines for clients with mobility considerations such as Arthritis or Hypermobility</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(265801,41530,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(265802,41530,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(265803,41530,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(265804,41530,'blocks_11_split_5050_content_actions','1'),(265805,41530,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(265806,41530,'blocks_11_split_5050_content',''),(265807,41530,'_blocks_11_split_5050_content','field_61767afceb8ba'),(265808,41530,'blocks_12_acfe_flexible_toggle',''),(265809,41530,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(265810,41530,'blocks_12_acfe_flexible_layout_title','Template'),(265811,41530,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(265812,41530,'blocks_12_template','40987'),(265813,41530,'_blocks_12_template','field_617bdd570fe01'),(265814,41530,'blocks_13_acfe_flexible_toggle',''),(265815,41530,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(265816,41530,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(265817,41530,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(265818,41530,'blocks_13_options_theme','#f5f5f5'),(265819,41530,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(265820,41530,'blocks_13_options_state','0'),(265821,41530,'_blocks_13_options_state','field_6239fcb7508c5'),(265822,41530,'blocks_13_options',''),(265823,41530,'_blocks_13_options','field_6177e2991ac44'),(265824,41530,'blocks_13_content_title',''),(265825,41530,'_blocks_13_content_title','field_64d237e8bb1e2'),(265826,41530,'blocks_13_content_heading','FAQ\'s'),(265827,41530,'_blocks_13_content_heading','field_64d237e8bb1e3'),(265828,41530,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(265829,41530,'_blocks_13_content_text','field_64d237e8bb1e4'),(265830,41530,'blocks_13_content_actions',''),(265831,41530,'_blocks_13_content_actions','field_64d237e8bb1e5'),(265832,41530,'blocks_13_content_align','left'),(265833,41530,'_blocks_13_content_align','field_64d2443e6b6aa'),(265834,41530,'blocks_13_content',''),(265835,41530,'_blocks_13_content','field_64d237e8bb1e1'),(265836,41530,'blocks_13_accordion_content','faqs'),(265837,41530,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(265838,41530,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41517\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(265839,41530,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(265840,41530,'blocks_13_actions',''),(265841,41530,'_blocks_13_actions','field_61a746a817f7a'),(265842,41530,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(265843,41530,'_blocks','field_6176696113096'),(265844,41530,'course_label_text',''),(265845,41530,'_course_label_text','field_61e17babf71fa'),(265846,41530,'course_label',''),(265847,41530,'_course_label','field_61e12f92749a7'),(265848,41530,'course_description',''),(265849,41530,'_course_description','field_617ac5788e5e1'),(265850,41530,'course_key_info',''),(265851,41530,'_course_key_info','field_617ac6ad8e5e2'),(265852,41530,'course_included',''),(265853,41530,'_course_included','field_617ac6f08e5e4'),(265854,41531,'hide_hero','0'),(265855,41531,'_hide_hero','field_66a2380fcda39'),(265856,41531,'hero_title','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching '),(265857,41531,'_hero_title','field_617571fe285e8'),(265858,41531,'hero_text','Strapline: Elevate Your Pilates Practice with Intrinsic biomechanics and enhance your career pathways '),(265859,41531,'_hero_text','field_6175723c285e9'),(265860,41531,'hero_actions','1'),(265861,41531,'_hero_actions','field_61757270285ea'),(265862,41531,'hero_style','default'),(265863,41531,'_hero_style','field_62051d9dc5324'),(265864,41531,'_thumbnail_id','41524'),(265865,41531,'__thumbnail_id','field_617570855ddaf'),(265866,41531,'hero_image_pos_x','right'),(265867,41531,'_hero_image_pos_x','field_62ec3d05390bb'),(265868,41531,'hero_image_pos_y','top'),(265869,41531,'_hero_image_pos_y','field_62ec3d05390bc'),(265870,41531,'hero_image_pos',''),(265871,41531,'_hero_image_pos','field_62ec3d05390ba'),(265872,41531,'fft_hide_from_listings','0'),(265873,41531,'_fft_hide_from_listings','field_61f1320446ab2'),(265874,41531,'fft_page_format','default'),(265875,41531,'_fft_page_format','field_61ae213f1f218'),(265876,41531,'fft_hide_nav','0'),(265877,41531,'_fft_hide_nav','field_635bd5e43527c'),(265878,41531,'fft_hide_header_call_to_action','0'),(265879,41531,'_fft_hide_header_call_to_action','field_635bd6723527d'),(265880,41531,'fft_page_sitemap','0'),(265881,41531,'_fft_page_sitemap','field_61af9b34e8181'),(265882,41531,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(265883,41531,'_blocks','field_6176696113096'),(265884,41531,'course_label_text',''),(265885,41531,'_course_label_text','field_61e17babf71fa'),(265886,41531,'course_label',''),(265887,41531,'_course_label','field_61e12f92749a7'),(265888,41531,'course_description',''),(265889,41531,'_course_description','field_617ac5788e5e1'),(265890,41531,'course_key_info',''),(265891,41531,'_course_key_info','field_617ac6ad8e5e2'),(265892,41531,'course_included',''),(265893,41531,'_course_included','field_617ac6f08e5e4'),(265894,41531,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41520-4\";s:6:\"target\";s:0:\"\";}'),(265895,41531,'_hero_actions_0_button','field_61757281285eb'),(265896,41531,'blocks_0_acfe_flexible_toggle',''),(265897,41531,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(265898,41531,'blocks_0_acfe_flexible_layout_title','Icons'),(265899,41531,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(265900,41531,'blocks_0_options_theme','#b61234'),(265901,41531,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(265902,41531,'blocks_0_options_format','row'),(265903,41531,'_blocks_0_options_format','field_64bfde9a90690'),(265904,41531,'blocks_0_options',''),(265905,41531,'_blocks_0_options','field_64bfdd9b90684'),(265906,41531,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(265907,41531,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(265908,41531,'blocks_0_icon_row_items_0_label','Accreditation'),(265909,41531,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(265910,41531,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(265911,41531,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(265912,41531,'blocks_0_icon_row_items_1_icon','finance.svg'),(265913,41531,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(265914,41531,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(265915,41531,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(265916,41531,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(265917,41531,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(265918,41531,'blocks_0_icon_row_items_2_icon','progression.svg'),(265919,41531,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(265920,41531,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(265921,41531,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(265922,41531,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(265923,41531,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(265924,41531,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(265925,41531,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(265926,41531,'blocks_0_icon_row_items_3_label','Qualification'),(265927,41531,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(265928,41531,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(265929,41531,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(265930,41531,'blocks_0_icon_row_items','4'),(265931,41531,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(265932,41531,'blocks_5_acfe_flexible_toggle','1'),(265933,41531,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(265934,41531,'blocks_5_acfe_flexible_layout_title','Tabs'),(265935,41531,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(265936,41531,'blocks_5_options_theme','#ffffff'),(265937,41531,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(265938,41531,'blocks_5_options',''),(265939,41531,'_blocks_5_options','field_6177cfcd8140f'),(265940,41531,'blocks_5_tabs_0_tab_label','Entry requirements'),(265941,41531,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(265942,41531,'blocks_5_tabs_0_tab_content_title',''),(265943,41531,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(265944,41531,'blocks_5_tabs_0_tab_content_heading',''),(265945,41531,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(265946,41531,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(265947,41531,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(265948,41531,'blocks_5_tabs_0_tab_content_actions',''),(265949,41531,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(265950,41531,'blocks_5_tabs_0_tab_content',''),(265951,41531,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(265952,41531,'blocks_5_tabs_0_tab_image',''),(265953,41531,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(265954,41531,'blocks_5_tabs_1_tab_label','Learning format'),(265955,41531,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(265956,41531,'blocks_5_tabs_1_tab_content_title',''),(265957,41531,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(265958,41531,'blocks_5_tabs_1_tab_content_heading',''),(265959,41531,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(265960,41531,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(265961,41531,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(265962,41531,'blocks_5_tabs_1_tab_content_actions',''),(265963,41531,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(265964,41531,'blocks_5_tabs_1_tab_content',''),(265965,41531,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(265966,41531,'blocks_5_tabs_1_tab_image',''),(265967,41531,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(265968,41531,'blocks_5_tabs_2_tab_label','Qualifications included'),(265969,41531,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(265970,41531,'blocks_5_tabs_2_tab_content_title',''),(265971,41531,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(265972,41531,'blocks_5_tabs_2_tab_content_heading',''),(265973,41531,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(265974,41531,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(265975,41531,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(265976,41531,'blocks_5_tabs_2_tab_content_actions',''),(265977,41531,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(265978,41531,'blocks_5_tabs_2_tab_content',''),(265979,41531,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(265980,41531,'blocks_5_tabs_2_tab_image',''),(265981,41531,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(265982,41531,'blocks_5_tabs','3'),(265983,41531,'_blocks_5_tabs','field_6177cff281419'),(265984,41531,'blocks_4_acfe_flexible_toggle',''),(265985,41531,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(265986,41531,'blocks_4_acfe_flexible_layout_title','Template'),(265987,41531,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(265988,41531,'blocks_4_template','39207'),(265989,41531,'_blocks_4_template','field_617bdd570fe01'),(265990,41531,'blocks_6_acfe_flexible_toggle',''),(265991,41531,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(265992,41531,'blocks_6_acfe_flexible_layout_title','Icons'),(265993,41531,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(265994,41531,'blocks_6_options_theme','#f5f5f5'),(265995,41531,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(265996,41531,'blocks_6_options_format','stacked'),(265997,41531,'_blocks_6_options_format','field_64bfde9a90690'),(265998,41531,'blocks_6_options',''),(265999,41531,'_blocks_6_options','field_64bfdd9b90684'),(266000,41531,'blocks_6_row_content_title','Options available to pay for your course'),(266001,41531,'_blocks_6_row_content_title','field_64bfdd9b90687'),(266002,41531,'blocks_6_row_content_heading','Fees & Funding Options '),(266003,41531,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(266004,41531,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(266005,41531,'_blocks_6_row_content_text','field_64bfdd9b90689'),(266006,41531,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(266007,41531,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(266008,41531,'blocks_6_row_content_actions','1'),(266009,41531,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(266010,41531,'blocks_6_row_content',''),(266011,41531,'_blocks_6_row_content','field_64bfdd9b90686'),(266012,41531,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(266013,41531,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(266014,41531,'blocks_6_icon_row_items_0_label','Pay in full'),(266015,41531,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(266016,41531,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(266017,41531,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(266018,41531,'blocks_6_icon_row_items_1_icon','finance.svg'),(266019,41531,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(266020,41531,'blocks_6_icon_row_items_1_label','0% finance'),(266021,41531,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(266022,41531,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(266023,41531,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(266024,41531,'blocks_6_icon_row_items','3'),(266025,41531,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(266026,41531,'blocks_7_acfe_flexible_toggle',''),(266027,41531,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(266028,41531,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(266029,41531,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(266030,41531,'blocks_7_options_theme','#ffffff'),(266031,41531,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(266032,41531,'blocks_7_options_reverse','0'),(266033,41531,'_blocks_7_options_reverse','field_61768049bb8ac'),(266034,41531,'blocks_7_options',''),(266035,41531,'_blocks_7_options','field_617682517c334'),(266036,41531,'blocks_7_split_5050_image','41526'),(266037,41531,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(266038,41531,'blocks_7_split_5050_video',''),(266039,41531,'_blocks_7_split_5050_video','field_6239f3160848a'),(266040,41531,'blocks_7_split_5050_content_title',''),(266041,41531,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(266042,41531,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(266043,41531,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(266044,41531,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(266045,41531,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(266046,41531,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(266047,41531,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(266048,41531,'blocks_7_split_5050_content_actions','1'),(266049,41531,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(266050,41531,'blocks_7_split_5050_content',''),(266051,41531,'_blocks_7_split_5050_content','field_61767afceb8ba'),(266052,41531,'blocks_8_acfe_flexible_toggle',''),(266053,41531,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(266054,41531,'blocks_8_acfe_flexible_layout_title','Icons'),(266055,41531,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(266056,41531,'blocks_8_options_theme','#f5f5f5'),(266057,41531,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(266058,41531,'blocks_8_options_format','row'),(266059,41531,'_blocks_8_options_format','field_64bfde9a90690'),(266060,41531,'blocks_8_options',''),(266061,41531,'_blocks_8_options','field_64bfdd9b90684'),(266062,41531,'blocks_8_icon_row_items_0_icon','qualification.svg'),(266063,41531,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(266064,41531,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(266065,41531,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(266066,41531,'blocks_8_icon_row_items_0_text',''),(266067,41531,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(266068,41531,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(266069,41531,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(266070,41531,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(266071,41531,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(266072,41531,'blocks_8_icon_row_items_1_text',''),(266073,41531,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(266074,41531,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(266075,41531,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(266076,41531,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(266077,41531,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(266078,41531,'blocks_8_icon_row_items_2_text',''),(266079,41531,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(266080,41531,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(266081,41531,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(266082,41531,'blocks_8_icon_row_items_3_label','Flexible funding options'),(266083,41531,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(266084,41531,'blocks_8_icon_row_items_3_text',''),(266085,41531,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(266086,41531,'blocks_8_icon_row_items','4'),(266087,41531,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(266088,41531,'blocks_9_acfe_flexible_toggle',''),(266089,41531,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(266090,41531,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(266091,41531,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(266092,41531,'blocks_9_options_theme','#ffffff'),(266093,41531,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(266094,41531,'blocks_9_options_reverse','1'),(266095,41531,'_blocks_9_options_reverse','field_61768049bb8ac'),(266096,41531,'blocks_9_options',''),(266097,41531,'_blocks_9_options','field_617682517c334'),(266098,41531,'blocks_9_split_5050_image','39224'),(266099,41531,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(266100,41531,'blocks_9_split_5050_video',''),(266101,41531,'_blocks_9_split_5050_video','field_6239f3160848a'),(266102,41531,'blocks_9_split_5050_content_title','Locations'),(266103,41531,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(266104,41531,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(266105,41531,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(266106,41531,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(266107,41531,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(266108,41531,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(266109,41531,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(266110,41531,'blocks_9_split_5050_content_actions','1'),(266111,41531,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(266112,41531,'blocks_9_split_5050_content',''),(266113,41531,'_blocks_9_split_5050_content','field_61767afceb8ba'),(266114,41531,'blocks_1_acfe_flexible_toggle',''),(266115,41531,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(266116,41531,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(266117,41531,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(266118,41531,'blocks_1_options_theme','#ffffff'),(266119,41531,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(266120,41531,'blocks_1_options_reverse','0'),(266121,41531,'_blocks_1_options_reverse','field_61768049bb8ac'),(266122,41531,'blocks_1_options',''),(266123,41531,'_blocks_1_options','field_617682517c334'),(266124,41531,'blocks_1_split_5050_image','41506'),(266125,41531,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(266126,41531,'blocks_1_split_5050_video',''),(266127,41531,'_blocks_1_split_5050_video','field_6239f3160848a'),(266128,41531,'blocks_1_split_5050_content_title',''),(266129,41531,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(266130,41531,'blocks_1_split_5050_content_heading','Course Overview'),(266131,41531,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(266132,41531,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW114645069 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW114645069 BCX8\">Enhance your</span> <span class=\"NormalTextRun SCXW114645069 BCX8\">expertise</span><span class=\"NormalTextRun SCXW114645069 BCX8\"> with our comprehensive Level 4 Pilates Instructor and Diploma in Biomechanics Coaching, a unique course designed to elevate your Pilates practice while equipping you with specialised Intrinsic biomechanics skills. This programme blends advanced Pilates methods with biomechanics principles to improve client movement, enhance posture, and support functional performance. Perfect for Pilates instructors and fitness professionals aiming to work confidently with clients facing orthopaedic or movement challenges, this dual qualification empowers you to make a lasting impact on client wellbeing through targeted analysis and </span><span class=\"NormalTextRun SCXW114645069 BCX8\">risk preventions.</span></span><span class=\"EOP SCXW114645069 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(266133,41531,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(266134,41531,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(266135,41531,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(266136,41531,'blocks_1_split_5050_content_actions','1'),(266137,41531,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(266138,41531,'blocks_1_split_5050_content',''),(266139,41531,'_blocks_1_split_5050_content','field_61767afceb8ba'),(266140,41531,'blocks_2_acfe_flexible_toggle',''),(266141,41531,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(266142,41531,'blocks_2_acfe_flexible_layout_title','Form'),(266143,41531,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(266144,41531,'blocks_2_row_content_format','standard'),(266145,41531,'_blocks_2_row_content_format','field_6481ead962881'),(266146,41531,'blocks_2_row_content_title',''),(266147,41531,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(266148,41531,'blocks_2_row_content_heading','Enquire Today'),(266149,41531,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(266150,41531,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(266151,41531,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(266152,41531,'blocks_2_row_content_actions',''),(266153,41531,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(266154,41531,'blocks_2_row_content',''),(266155,41531,'_blocks_2_row_content','field_61a0f5f5b3db0'),(266156,41531,'blocks_2_row_form','40394'),(266157,41531,'_blocks_2_row_form','field_61a4ff2c0b08e'),(266158,41531,'blocks_2_row_form_button_label',''),(266159,41531,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(266160,41531,'blocks_3_acfe_flexible_toggle',''),(266161,41531,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(266162,41531,'blocks_3_acfe_flexible_layout_title','Video'),(266163,41531,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(266164,41531,'blocks_3_size','large'),(266165,41531,'_blocks_3_size','field_6487038f297c1'),(266166,41531,'blocks_3_row_content_title',''),(266167,41531,'_blocks_3_row_content_title','field_64870132a865d'),(266168,41531,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(266169,41531,'_blocks_3_row_content_heading','field_64870142a865e'),(266170,41531,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(266171,41531,'_blocks_3_row_content_text','field_64870148a865f'),(266172,41531,'blocks_3_row_content',''),(266173,41531,'_blocks_3_row_content','field_6487008ba865c'),(266174,41531,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(266175,41531,'_blocks_3_video_src','field_6193c4a98ec07'),(266176,41531,'blocks_3_video_thumbnail',''),(266177,41531,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(266178,41531,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(266179,41531,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(266180,41531,'blocks_6_icon_row_items_2_label','Deposit & balance'),(266181,41531,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(266182,41531,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(266183,41531,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(266184,41531,'blocks_10_acfe_flexible_toggle','1'),(266185,41531,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(266186,41531,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(266187,41531,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(266188,41531,'blocks_10_options_theme','#ffffff'),(266189,41531,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(266190,41531,'blocks_10_options',''),(266191,41531,'_blocks_10_options','field_617ac0b7f6c08'),(266192,41531,'blocks_10_show','selection'),(266193,41531,'_blocks_10_show','field_61a49cba9d946'),(266194,41531,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(266195,41531,'_blocks_10_courses','field_61b244781ee0a'),(266196,41531,'blocks_10_open_whats_included','1'),(266197,41531,'_blocks_10_open_whats_included','field_66ebfd679450c'),(266198,41531,'blocks_10_open_key_information','0'),(266199,41531,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(266200,41531,'blocks_10_open',''),(266201,41531,'_blocks_10_open','field_66ebfd009450b'),(266202,41531,'blocks_11_acfe_flexible_toggle',''),(266203,41531,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(266204,41531,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(266205,41531,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(266206,41531,'blocks_11_options_theme','#ffffff'),(266207,41531,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(266208,41531,'blocks_11_options_reverse','0'),(266209,41531,'_blocks_11_options_reverse','field_61768049bb8ac'),(266210,41531,'blocks_11_options',''),(266211,41531,'_blocks_11_options','field_617682517c334'),(266212,41531,'blocks_11_split_5050_image','41504'),(266213,41531,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(266214,41531,'blocks_11_split_5050_video',''),(266215,41531,'_blocks_11_split_5050_video','field_6239f3160848a'),(266216,41531,'blocks_11_split_5050_content_title','Optimise Performance '),(266217,41531,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(266218,41531,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(266219,41531,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(266220,41531,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW53757674 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW53757674 BCX8\">Advance your Pilates </span><span class=\"NormalTextRun SCXW53757674 BCX8\">expertise</span><span class=\"NormalTextRun SCXW53757674 BCX8\"> with a comprehensive Level 4 course designed to build on foundational knowledge and introduce advanced techniques to support and enhance client outcomes. Specialise in biomechanics and stand out in the fitness industry with skills that improve client performance, posture, and functional movement.</span></span><span class=\"EOP SCXW53757674 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Level 4 Pilates Includes:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26316?category=qualifications&amp;query=vtct%20postnatal\"><span data-contrast=\"none\">VTCT Level 3 Award in Adapting Physical Activity for Antenatal and Postnatal Clients.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26662?category=qualifications&amp;query=VTCT%20mat%20pilates\"><span data-contrast=\"none\">VTCT Level 3 Diploma in Instructing Mat-Based Pilates.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/48763?category=qualifications&amp;query=transcend%20pilates\"><span data-contrast=\"none\">Transcend Level 4 Certificate in Teaching Matwork Pilates</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">As a qualified level 4 Pilates instructor you will be able to: </span></b><span data-ccp-props=\"{}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own classes and work with clients on a 1-to-1 basis</span><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Teach Pilates at beginner, intermediate and advanced levels</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own weight management clinic, or offer individual consultations</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Create bespoke Pilates routines for new and expectant mothers</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Be able to create bespoke Pilates routines for clients with mobility considerations such as Arthritis or Hypermobility</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(266221,41531,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(266222,41531,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(266223,41531,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(266224,41531,'blocks_11_split_5050_content_actions','1'),(266225,41531,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(266226,41531,'blocks_11_split_5050_content',''),(266227,41531,'_blocks_11_split_5050_content','field_61767afceb8ba'),(266228,41531,'blocks_12_acfe_flexible_toggle',''),(266229,41531,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(266230,41531,'blocks_12_acfe_flexible_layout_title','Template'),(266231,41531,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(266232,41531,'blocks_12_template','40987'),(266233,41531,'_blocks_12_template','field_617bdd570fe01'),(266234,41531,'blocks_13_acfe_flexible_toggle',''),(266235,41531,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(266236,41531,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(266237,41531,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(266238,41531,'blocks_13_options_theme','#f5f5f5'),(266239,41531,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(266240,41531,'blocks_13_options_state','0'),(266241,41531,'_blocks_13_options_state','field_6239fcb7508c5'),(266242,41531,'blocks_13_options',''),(266243,41531,'_blocks_13_options','field_6177e2991ac44'),(266244,41531,'blocks_13_content_title',''),(266245,41531,'_blocks_13_content_title','field_64d237e8bb1e2'),(266246,41531,'blocks_13_content_heading','FAQ\'s'),(266247,41531,'_blocks_13_content_heading','field_64d237e8bb1e3'),(266248,41531,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(266249,41531,'_blocks_13_content_text','field_64d237e8bb1e4'),(266250,41531,'blocks_13_content_actions',''),(266251,41531,'_blocks_13_content_actions','field_64d237e8bb1e5'),(266252,41531,'blocks_13_content_align','left'),(266253,41531,'_blocks_13_content_align','field_64d2443e6b6aa'),(266254,41531,'blocks_13_content',''),(266255,41531,'_blocks_13_content','field_64d237e8bb1e1'),(266256,41531,'blocks_13_accordion_content','faqs'),(266257,41531,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(266258,41531,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41517\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(266259,41531,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(266260,41531,'blocks_13_actions',''),(266261,41531,'_blocks_13_actions','field_61a746a817f7a'),(266262,41532,'hide_hero','0'),(266263,41532,'_hide_hero','field_66a2380fcda39'),(266264,41532,'hero_title','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching '),(266265,41532,'_hero_title','field_617571fe285e8'),(266266,41532,'hero_text','Strapline: Elevate Your Pilates Practice with Intrinsic biomechanics and enhance your career pathways '),(266267,41532,'_hero_text','field_6175723c285e9'),(266268,41532,'hero_actions','1'),(266269,41532,'_hero_actions','field_61757270285ea'),(266270,41532,'hero_style','default'),(266271,41532,'_hero_style','field_62051d9dc5324'),(266272,41532,'_thumbnail_id','41524'),(266273,41532,'__thumbnail_id','field_617570855ddaf'),(266274,41532,'hero_image_pos_x','right'),(266275,41532,'_hero_image_pos_x','field_62ec3d05390bb'),(266276,41532,'hero_image_pos_y','top'),(266277,41532,'_hero_image_pos_y','field_62ec3d05390bc'),(266278,41532,'hero_image_pos',''),(266279,41532,'_hero_image_pos','field_62ec3d05390ba'),(266280,41532,'fft_hide_from_listings','0'),(266281,41532,'_fft_hide_from_listings','field_61f1320446ab2'),(266282,41532,'fft_page_format','default'),(266283,41532,'_fft_page_format','field_61ae213f1f218'),(266284,41532,'fft_hide_nav','0'),(266285,41532,'_fft_hide_nav','field_635bd5e43527c'),(266286,41532,'fft_hide_header_call_to_action','0'),(266287,41532,'_fft_hide_header_call_to_action','field_635bd6723527d'),(266288,41532,'fft_page_sitemap','0'),(266289,41532,'_fft_page_sitemap','field_61af9b34e8181'),(266290,41532,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(266291,41532,'_blocks','field_6176696113096'),(266292,41532,'course_label_text',''),(266293,41532,'_course_label_text','field_61e17babf71fa'),(266294,41532,'course_label',''),(266295,41532,'_course_label','field_61e12f92749a7'),(266296,41532,'course_description',''),(266297,41532,'_course_description','field_617ac5788e5e1'),(266298,41532,'course_key_info',''),(266299,41532,'_course_key_info','field_617ac6ad8e5e2'),(266300,41532,'course_included',''),(266301,41532,'_course_included','field_617ac6f08e5e4'),(266302,41532,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41520-4\";s:6:\"target\";s:0:\"\";}'),(266303,41532,'_hero_actions_0_button','field_61757281285eb'),(266304,41532,'blocks_0_acfe_flexible_toggle',''),(266305,41532,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(266306,41532,'blocks_0_acfe_flexible_layout_title','Icons'),(266307,41532,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(266308,41532,'blocks_0_options_theme','#b61234'),(266309,41532,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(266310,41532,'blocks_0_options_format','row'),(266311,41532,'_blocks_0_options_format','field_64bfde9a90690'),(266312,41532,'blocks_0_options',''),(266313,41532,'_blocks_0_options','field_64bfdd9b90684'),(266314,41532,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(266315,41532,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(266316,41532,'blocks_0_icon_row_items_0_label','Accreditation'),(266317,41532,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(266318,41532,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(266319,41532,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(266320,41532,'blocks_0_icon_row_items_1_icon','finance.svg'),(266321,41532,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(266322,41532,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(266323,41532,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(266324,41532,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(266325,41532,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(266326,41532,'blocks_0_icon_row_items_2_icon','progression.svg'),(266327,41532,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(266328,41532,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(266329,41532,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(266330,41532,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(266331,41532,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(266332,41532,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(266333,41532,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(266334,41532,'blocks_0_icon_row_items_3_label','Qualification'),(266335,41532,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(266336,41532,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(266337,41532,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(266338,41532,'blocks_0_icon_row_items','4'),(266339,41532,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(266340,41532,'blocks_5_acfe_flexible_toggle','1'),(266341,41532,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(266342,41532,'blocks_5_acfe_flexible_layout_title','Tabs'),(266343,41532,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(266344,41532,'blocks_5_options_theme','#ffffff'),(266345,41532,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(266346,41532,'blocks_5_options',''),(266347,41532,'_blocks_5_options','field_6177cfcd8140f'),(266348,41532,'blocks_5_tabs_0_tab_label','Entry requirements'),(266349,41532,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(266350,41532,'blocks_5_tabs_0_tab_content_title',''),(266351,41532,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(266352,41532,'blocks_5_tabs_0_tab_content_heading',''),(266353,41532,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(266354,41532,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(266355,41532,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(266356,41532,'blocks_5_tabs_0_tab_content_actions',''),(266357,41532,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(266358,41532,'blocks_5_tabs_0_tab_content',''),(266359,41532,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(266360,41532,'blocks_5_tabs_0_tab_image',''),(266361,41532,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(266362,41532,'blocks_5_tabs_1_tab_label','Learning format'),(266363,41532,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(266364,41532,'blocks_5_tabs_1_tab_content_title',''),(266365,41532,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(266366,41532,'blocks_5_tabs_1_tab_content_heading',''),(266367,41532,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(266368,41532,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(266369,41532,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(266370,41532,'blocks_5_tabs_1_tab_content_actions',''),(266371,41532,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(266372,41532,'blocks_5_tabs_1_tab_content',''),(266373,41532,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(266374,41532,'blocks_5_tabs_1_tab_image',''),(266375,41532,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(266376,41532,'blocks_5_tabs_2_tab_label','Qualifications included'),(266377,41532,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(266378,41532,'blocks_5_tabs_2_tab_content_title',''),(266379,41532,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(266380,41532,'blocks_5_tabs_2_tab_content_heading',''),(266381,41532,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(266382,41532,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(266383,41532,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(266384,41532,'blocks_5_tabs_2_tab_content_actions',''),(266385,41532,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(266386,41532,'blocks_5_tabs_2_tab_content',''),(266387,41532,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(266388,41532,'blocks_5_tabs_2_tab_image',''),(266389,41532,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(266390,41532,'blocks_5_tabs','3'),(266391,41532,'_blocks_5_tabs','field_6177cff281419'),(266392,41532,'blocks_4_acfe_flexible_toggle',''),(266393,41532,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(266394,41532,'blocks_4_acfe_flexible_layout_title','Template'),(266395,41532,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(266396,41532,'blocks_4_template','39207'),(266397,41532,'_blocks_4_template','field_617bdd570fe01'),(266398,41532,'blocks_6_acfe_flexible_toggle',''),(266399,41532,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(266400,41532,'blocks_6_acfe_flexible_layout_title','Icons'),(266401,41532,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(266402,41532,'blocks_6_options_theme','#f5f5f5'),(266403,41532,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(266404,41532,'blocks_6_options_format','stacked'),(266405,41532,'_blocks_6_options_format','field_64bfde9a90690'),(266406,41532,'blocks_6_options',''),(266407,41532,'_blocks_6_options','field_64bfdd9b90684'),(266408,41532,'blocks_6_row_content_title','Options available to pay for your course'),(266409,41532,'_blocks_6_row_content_title','field_64bfdd9b90687'),(266410,41532,'blocks_6_row_content_heading','Fees & Funding Options '),(266411,41532,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(266412,41532,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(266413,41532,'_blocks_6_row_content_text','field_64bfdd9b90689'),(266414,41532,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(266415,41532,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(266416,41532,'blocks_6_row_content_actions','1'),(266417,41532,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(266418,41532,'blocks_6_row_content',''),(266419,41532,'_blocks_6_row_content','field_64bfdd9b90686'),(266420,41532,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(266421,41532,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(266422,41532,'blocks_6_icon_row_items_0_label','Pay in full'),(266423,41532,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(266424,41532,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(266425,41532,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(266426,41532,'blocks_6_icon_row_items_1_icon','finance.svg'),(266427,41532,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(266428,41532,'blocks_6_icon_row_items_1_label','0% finance'),(266429,41532,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(266430,41532,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(266431,41532,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(266432,41532,'blocks_6_icon_row_items','3'),(266433,41532,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(266434,41532,'blocks_7_acfe_flexible_toggle',''),(266435,41532,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(266436,41532,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(266437,41532,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(266438,41532,'blocks_7_options_theme','#ffffff'),(266439,41532,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(266440,41532,'blocks_7_options_reverse','0'),(266441,41532,'_blocks_7_options_reverse','field_61768049bb8ac'),(266442,41532,'blocks_7_options',''),(266443,41532,'_blocks_7_options','field_617682517c334'),(266444,41532,'blocks_7_split_5050_image','41526'),(266445,41532,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(266446,41532,'blocks_7_split_5050_video',''),(266447,41532,'_blocks_7_split_5050_video','field_6239f3160848a'),(266448,41532,'blocks_7_split_5050_content_title',''),(266449,41532,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(266450,41532,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(266451,41532,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(266452,41532,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(266453,41532,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(266454,41532,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(266455,41532,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(266456,41532,'blocks_7_split_5050_content_actions','1'),(266457,41532,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(266458,41532,'blocks_7_split_5050_content',''),(266459,41532,'_blocks_7_split_5050_content','field_61767afceb8ba'),(266460,41532,'blocks_8_acfe_flexible_toggle',''),(266461,41532,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(266462,41532,'blocks_8_acfe_flexible_layout_title','Icons'),(266463,41532,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(266464,41532,'blocks_8_options_theme','#f5f5f5'),(266465,41532,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(266466,41532,'blocks_8_options_format','row'),(266467,41532,'_blocks_8_options_format','field_64bfde9a90690'),(266468,41532,'blocks_8_options',''),(266469,41532,'_blocks_8_options','field_64bfdd9b90684'),(266470,41532,'blocks_8_icon_row_items_0_icon','qualification.svg'),(266471,41532,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(266472,41532,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(266473,41532,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(266474,41532,'blocks_8_icon_row_items_0_text',''),(266475,41532,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(266476,41532,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(266477,41532,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(266478,41532,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(266479,41532,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(266480,41532,'blocks_8_icon_row_items_1_text',''),(266481,41532,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(266482,41532,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(266483,41532,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(266484,41532,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(266485,41532,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(266486,41532,'blocks_8_icon_row_items_2_text',''),(266487,41532,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(266488,41532,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(266489,41532,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(266490,41532,'blocks_8_icon_row_items_3_label','Flexible funding options'),(266491,41532,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(266492,41532,'blocks_8_icon_row_items_3_text',''),(266493,41532,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(266494,41532,'blocks_8_icon_row_items','4'),(266495,41532,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(266496,41532,'blocks_9_acfe_flexible_toggle',''),(266497,41532,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(266498,41532,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(266499,41532,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(266500,41532,'blocks_9_options_theme','#ffffff'),(266501,41532,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(266502,41532,'blocks_9_options_reverse','1'),(266503,41532,'_blocks_9_options_reverse','field_61768049bb8ac'),(266504,41532,'blocks_9_options',''),(266505,41532,'_blocks_9_options','field_617682517c334'),(266506,41532,'blocks_9_split_5050_image','39224'),(266507,41532,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(266508,41532,'blocks_9_split_5050_video',''),(266509,41532,'_blocks_9_split_5050_video','field_6239f3160848a'),(266510,41532,'blocks_9_split_5050_content_title','Locations'),(266511,41532,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(266512,41532,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(266513,41532,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(266514,41532,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(266515,41532,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(266516,41532,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(266517,41532,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(266518,41532,'blocks_9_split_5050_content_actions','1'),(266519,41532,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(266520,41532,'blocks_9_split_5050_content',''),(266521,41532,'_blocks_9_split_5050_content','field_61767afceb8ba'),(266522,41532,'blocks_1_acfe_flexible_toggle',''),(266523,41532,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(266524,41532,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(266525,41532,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(266526,41532,'blocks_1_options_theme','#ffffff'),(266527,41532,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(266528,41532,'blocks_1_options_reverse','0'),(266529,41532,'_blocks_1_options_reverse','field_61768049bb8ac'),(266530,41532,'blocks_1_options',''),(266531,41532,'_blocks_1_options','field_617682517c334'),(266532,41532,'blocks_1_split_5050_image','41506'),(266533,41532,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(266534,41532,'blocks_1_split_5050_video',''),(266535,41532,'_blocks_1_split_5050_video','field_6239f3160848a'),(266536,41532,'blocks_1_split_5050_content_title',''),(266537,41532,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(266538,41532,'blocks_1_split_5050_content_heading','Course Overview'),(266539,41532,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(266540,41532,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW114645069 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW114645069 BCX8\">Enhance your</span> <span class=\"NormalTextRun SCXW114645069 BCX8\">expertise</span><span class=\"NormalTextRun SCXW114645069 BCX8\"> with our comprehensive Level 4 Pilates Instructor and Diploma in Biomechanics Coaching, a unique course designed to elevate your Pilates practice while equipping you with specialised Intrinsic biomechanics skills. This programme blends advanced Pilates methods with biomechanics principles to improve client movement, enhance posture, and support functional performance. Perfect for Pilates instructors and fitness professionals aiming to work confidently with clients facing orthopaedic or movement challenges, this dual qualification empowers you to make a lasting impact on client wellbeing through targeted analysis and </span><span class=\"NormalTextRun SCXW114645069 BCX8\">risk preventions.</span></span><span class=\"EOP SCXW114645069 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(266541,41532,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(266542,41532,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(266543,41532,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(266544,41532,'blocks_1_split_5050_content_actions','1'),(266545,41532,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(266546,41532,'blocks_1_split_5050_content',''),(266547,41532,'_blocks_1_split_5050_content','field_61767afceb8ba'),(266548,41532,'blocks_2_acfe_flexible_toggle',''),(266549,41532,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(266550,41532,'blocks_2_acfe_flexible_layout_title','Form'),(266551,41532,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(266552,41532,'blocks_2_row_content_format','standard'),(266553,41532,'_blocks_2_row_content_format','field_6481ead962881'),(266554,41532,'blocks_2_row_content_title',''),(266555,41532,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(266556,41532,'blocks_2_row_content_heading','Enquire Today'),(266557,41532,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(266558,41532,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(266559,41532,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(266560,41532,'blocks_2_row_content_actions',''),(266561,41532,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(266562,41532,'blocks_2_row_content',''),(266563,41532,'_blocks_2_row_content','field_61a0f5f5b3db0'),(266564,41532,'blocks_2_row_form','40394'),(266565,41532,'_blocks_2_row_form','field_61a4ff2c0b08e'),(266566,41532,'blocks_2_row_form_button_label',''),(266567,41532,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(266568,41532,'blocks_3_acfe_flexible_toggle',''),(266569,41532,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(266570,41532,'blocks_3_acfe_flexible_layout_title','Video'),(266571,41532,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(266572,41532,'blocks_3_size','large'),(266573,41532,'_blocks_3_size','field_6487038f297c1'),(266574,41532,'blocks_3_row_content_title',''),(266575,41532,'_blocks_3_row_content_title','field_64870132a865d'),(266576,41532,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(266577,41532,'_blocks_3_row_content_heading','field_64870142a865e'),(266578,41532,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(266579,41532,'_blocks_3_row_content_text','field_64870148a865f'),(266580,41532,'blocks_3_row_content',''),(266581,41532,'_blocks_3_row_content','field_6487008ba865c'),(266582,41532,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(266583,41532,'_blocks_3_video_src','field_6193c4a98ec07'),(266584,41532,'blocks_3_video_thumbnail',''),(266585,41532,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(266586,41532,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(266587,41532,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(266588,41532,'blocks_6_icon_row_items_2_label','Deposit & balance'),(266589,41532,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(266590,41532,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(266591,41532,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(266592,41532,'blocks_10_acfe_flexible_toggle','1'),(266593,41532,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(266594,41532,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(266595,41532,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(266596,41532,'blocks_10_options_theme','#ffffff'),(266597,41532,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(266598,41532,'blocks_10_options',''),(266599,41532,'_blocks_10_options','field_617ac0b7f6c08'),(266600,41532,'blocks_10_show','selection'),(266601,41532,'_blocks_10_show','field_61a49cba9d946'),(266602,41532,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(266603,41532,'_blocks_10_courses','field_61b244781ee0a'),(266604,41532,'blocks_10_open_whats_included','1'),(266605,41532,'_blocks_10_open_whats_included','field_66ebfd679450c'),(266606,41532,'blocks_10_open_key_information','0'),(266607,41532,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(266608,41532,'blocks_10_open',''),(266609,41532,'_blocks_10_open','field_66ebfd009450b'),(266610,41532,'blocks_11_acfe_flexible_toggle',''),(266611,41532,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(266612,41532,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(266613,41532,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(266614,41532,'blocks_11_options_theme','#ffffff'),(266615,41532,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(266616,41532,'blocks_11_options_reverse','0'),(266617,41532,'_blocks_11_options_reverse','field_61768049bb8ac'),(266618,41532,'blocks_11_options',''),(266619,41532,'_blocks_11_options','field_617682517c334'),(266620,41532,'blocks_11_split_5050_image','41504'),(266621,41532,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(266622,41532,'blocks_11_split_5050_video',''),(266623,41532,'_blocks_11_split_5050_video','field_6239f3160848a'),(266624,41532,'blocks_11_split_5050_content_title','Optimise Performance '),(266625,41532,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(266626,41532,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(266627,41532,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(266628,41532,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW53757674 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW53757674 BCX8\">Advance your Pilates </span><span class=\"NormalTextRun SCXW53757674 BCX8\">expertise</span><span class=\"NormalTextRun SCXW53757674 BCX8\"> with a comprehensive Level 4 course designed to build on foundational knowledge and introduce advanced techniques to support and enhance client outcomes. Specialise in biomechanics and stand out in the fitness industry with skills that improve client performance, posture, and functional movement.</span></span><span class=\"EOP SCXW53757674 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Level 4 Pilates Includes:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26316?category=qualifications&amp;query=vtct%20postnatal\"><span data-contrast=\"none\">VTCT Level 3 Award in Adapting Physical Activity for Antenatal and Postnatal Clients.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26662?category=qualifications&amp;query=VTCT%20mat%20pilates\"><span data-contrast=\"none\">VTCT Level 3 Diploma in Instructing Mat-Based Pilates.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/48763?category=qualifications&amp;query=transcend%20pilates\"><span data-contrast=\"none\">Transcend Level 4 Certificate in Teaching Matwork Pilates</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">As a qualified level 4 Pilates instructor you will be able to: </span></b><span data-ccp-props=\"{}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own classes and work with clients on a 1-to-1 basis</span><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Teach Pilates at beginner, intermediate and advanced levels</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own weight management clinic, or offer individual consultations</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Create bespoke Pilates routines for new and expectant mothers</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Be able to create bespoke Pilates routines for clients with mobility considerations such as Arthritis or Hypermobility</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(266629,41532,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(266630,41532,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(266631,41532,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(266632,41532,'blocks_11_split_5050_content_actions','1'),(266633,41532,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(266634,41532,'blocks_11_split_5050_content',''),(266635,41532,'_blocks_11_split_5050_content','field_61767afceb8ba'),(266636,41532,'blocks_12_acfe_flexible_toggle',''),(266637,41532,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(266638,41532,'blocks_12_acfe_flexible_layout_title','Template'),(266639,41532,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(266640,41532,'blocks_12_template','40987'),(266641,41532,'_blocks_12_template','field_617bdd570fe01'),(266642,41532,'blocks_13_acfe_flexible_toggle',''),(266643,41532,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(266644,41532,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(266645,41532,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(266646,41532,'blocks_13_options_theme','#f5f5f5'),(266647,41532,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(266648,41532,'blocks_13_options_state','0'),(266649,41532,'_blocks_13_options_state','field_6239fcb7508c5'),(266650,41532,'blocks_13_options',''),(266651,41532,'_blocks_13_options','field_6177e2991ac44'),(266652,41532,'blocks_13_content_title',''),(266653,41532,'_blocks_13_content_title','field_64d237e8bb1e2'),(266654,41532,'blocks_13_content_heading','FAQ\'s'),(266655,41532,'_blocks_13_content_heading','field_64d237e8bb1e3'),(266656,41532,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(266657,41532,'_blocks_13_content_text','field_64d237e8bb1e4'),(266658,41532,'blocks_13_content_actions',''),(266659,41532,'_blocks_13_content_actions','field_64d237e8bb1e5'),(266660,41532,'blocks_13_content_align','left'),(266661,41532,'_blocks_13_content_align','field_64d2443e6b6aa'),(266662,41532,'blocks_13_content',''),(266663,41532,'_blocks_13_content','field_64d237e8bb1e1'),(266664,41532,'blocks_13_accordion_content','faqs'),(266665,41532,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(266666,41532,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41517\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(266667,41532,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(266668,41532,'blocks_13_actions',''),(266669,41532,'_blocks_13_actions','field_61a746a817f7a'),(266670,41533,'_fft_id','218'),(266671,41533,'_fft_catalogue_id','b1816b8d-c34d-ef11-a316-00224841342c'),(266672,41533,'_fft_code','L3SC v4.0'),(266673,41533,'_fft_name','Strength and Conditioning'),(266674,41533,'_fft_description',NULL),(266675,41533,'_fft_metadata_school','biomechanics'),(266676,41533,'_fft_metadata_flex_id','654'),(266677,41533,'_fft_metadata_type_id','100000002'),(266678,41533,'_fft_metadata_flex_type','collection'),(266679,41533,'_fft_metadata_type_label','Diploma'),(266680,41533,'_fft_metadata_course_type_id',NULL),(266681,41533,'_fft_metadata_course_type_label','Online Learning'),(266682,41533,'_fft_metadata_productstructure_id','3'),(266683,41533,'_fft_metadata_productstructure_label','Product Bundle'),(266684,41533,'_fft_taxable','1'),(266685,41533,'_fft_show','1'),(266686,41533,'_fft_created_at','1731399823'),(266687,41533,'_fft_updated_at','1743078594'),(266688,41533,'_fft_plan',NULL),(266689,41533,'_fft_price_id','221'),(266690,41533,'_fft_price_value','0'),(266691,41533,'_fft_price_begins_at',NULL),(266692,41533,'_fft_price_expires_at',NULL),(266693,41533,'_fft_price_value_inc_tax','0'),(266694,41533,'_fft_error',''),(266695,41533,'_fft_saved_at','1751618583'),(266696,41533,'_edit_lock','1741944139:18'),(266697,41533,'_edit_last','18'),(266698,41533,'hide_hero','0'),(266699,41533,'_hide_hero','field_66a2380fcda39'),(266700,41533,'hero_title','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching'),(266701,41533,'_hero_title','field_617571fe285e8'),(266702,41533,'hero_text','Master Strength and Conditioning with Intrinsic biomechanics expertise for optimal client performance.'),(266703,41533,'_hero_text','field_6175723c285e9'),(266704,41533,'hero_actions','1'),(266705,41533,'_hero_actions','field_61757270285ea'),(266706,41533,'hero_style','default'),(266707,41533,'_hero_style','field_62051d9dc5324'),(266708,41533,'_thumbnail_id','41538'),(266709,41533,'__thumbnail_id','field_617570855ddaf'),(266710,41533,'hero_image_pos_x','right'),(266711,41533,'_hero_image_pos_x','field_62ec3d05390bb'),(266712,41533,'hero_image_pos_y','top'),(266713,41533,'_hero_image_pos_y','field_62ec3d05390bc'),(266714,41533,'hero_image_pos',''),(266715,41533,'_hero_image_pos','field_62ec3d05390ba'),(266716,41533,'fft_hide_from_listings','0'),(266717,41533,'_fft_hide_from_listings','field_61f1320446ab2'),(266718,41533,'fft_page_format','default'),(266719,41533,'_fft_page_format','field_61ae213f1f218'),(266720,41533,'fft_hide_nav','0'),(266721,41533,'_fft_hide_nav','field_635bd5e43527c'),(266722,41533,'fft_hide_header_call_to_action','0'),(266723,41533,'_fft_hide_header_call_to_action','field_635bd6723527d'),(266724,41533,'fft_page_sitemap','0'),(266725,41533,'_fft_page_sitemap','field_61af9b34e8181'),(266726,41533,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(266727,41533,'_blocks','field_6176696113096'),(266728,41533,'course_label_text',''),(266729,41533,'_course_label_text','field_61e17babf71fa'),(266730,41533,'course_label',''),(266731,41533,'_course_label','field_61e12f92749a7'),(266732,41533,'course_description',''),(266733,41533,'_course_description','field_617ac5788e5e1'),(266734,41533,'course_key_info',''),(266735,41533,'_course_key_info','field_617ac6ad8e5e2'),(266736,41533,'course_included',''),(266737,41533,'_course_included','field_617ac6f08e5e4'),(266738,41533,'_yoast_wpseo_primary_course-cat','406'),(266739,41533,'_yoast_wpseo_estimated-reading-time-minutes','1'),(266740,41533,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41533-4\";s:6:\"target\";s:0:\"\";}'),(266741,41533,'_hero_actions_0_button','field_61757281285eb'),(266742,41533,'blocks_0_acfe_flexible_toggle',''),(266743,41533,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(266744,41533,'blocks_0_acfe_flexible_layout_title','Icons'),(266745,41533,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(266746,41533,'blocks_0_options_theme','#b61234'),(266747,41533,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(266748,41533,'blocks_0_options_format','row'),(266749,41533,'_blocks_0_options_format','field_64bfde9a90690'),(266750,41533,'blocks_0_options',''),(266751,41533,'_blocks_0_options','field_64bfdd9b90684'),(266752,41533,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(266753,41533,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(266754,41533,'blocks_0_icon_row_items_0_label','Accreditation'),(266755,41533,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(266756,41533,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(266757,41533,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(266758,41533,'blocks_0_icon_row_items_1_icon','finance.svg'),(266759,41533,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(266760,41533,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(266761,41533,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(266762,41533,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(266763,41533,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(266764,41533,'blocks_0_icon_row_items_2_icon','progression.svg'),(266765,41533,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(266766,41533,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(266767,41533,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(266768,41533,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(266769,41533,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(266770,41533,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(266771,41533,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(266772,41533,'blocks_0_icon_row_items_3_label','Qualification'),(266773,41533,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(266774,41533,'blocks_0_icon_row_items_3_text','Level 4 Strength & Conditioning + Diploma in Biomechanics Coaching '),(266775,41533,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(266776,41533,'blocks_0_icon_row_items','4'),(266777,41533,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(266778,41533,'blocks_5_acfe_flexible_toggle','1'),(266779,41533,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(266780,41533,'blocks_5_acfe_flexible_layout_title','Tabs'),(266781,41533,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(266782,41533,'blocks_5_options_theme','#ffffff'),(266783,41533,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(266784,41533,'blocks_5_options',''),(266785,41533,'_blocks_5_options','field_6177cfcd8140f'),(266786,41533,'blocks_5_tabs_0_tab_label','Entry requirements'),(266787,41533,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(266788,41533,'blocks_5_tabs_0_tab_content_title',''),(266789,41533,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(266790,41533,'blocks_5_tabs_0_tab_content_heading',''),(266791,41533,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(266792,41533,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(266793,41533,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(266794,41533,'blocks_5_tabs_0_tab_content_actions',''),(266795,41533,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(266796,41533,'blocks_5_tabs_0_tab_content',''),(266797,41533,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(266798,41533,'blocks_5_tabs_0_tab_image',''),(266799,41533,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(266800,41533,'blocks_5_tabs_1_tab_label','Learning format'),(266801,41533,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(266802,41533,'blocks_5_tabs_1_tab_content_title',''),(266803,41533,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(266804,41533,'blocks_5_tabs_1_tab_content_heading',''),(266805,41533,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(266806,41533,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(266807,41533,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(266808,41533,'blocks_5_tabs_1_tab_content_actions',''),(266809,41533,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(266810,41533,'blocks_5_tabs_1_tab_content',''),(266811,41533,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(266812,41533,'blocks_5_tabs_1_tab_image',''),(266813,41533,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(266814,41533,'blocks_5_tabs_2_tab_label','Qualifications included'),(266815,41533,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(266816,41533,'blocks_5_tabs_2_tab_content_title',''),(266817,41533,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(266818,41533,'blocks_5_tabs_2_tab_content_heading',''),(266819,41533,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(266820,41533,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(266821,41533,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(266822,41533,'blocks_5_tabs_2_tab_content_actions',''),(266823,41533,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(266824,41533,'blocks_5_tabs_2_tab_content',''),(266825,41533,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(266826,41533,'blocks_5_tabs_2_tab_image',''),(266827,41533,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(266828,41533,'blocks_5_tabs','3'),(266829,41533,'_blocks_5_tabs','field_6177cff281419'),(266830,41533,'blocks_4_acfe_flexible_toggle',''),(266831,41533,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(266832,41533,'blocks_4_acfe_flexible_layout_title','Template'),(266833,41533,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(266834,41533,'blocks_4_template','39207'),(266835,41533,'_blocks_4_template','field_617bdd570fe01'),(266836,41533,'blocks_6_acfe_flexible_toggle',''),(266837,41533,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(266838,41533,'blocks_6_acfe_flexible_layout_title','Icons'),(266839,41533,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(266840,41533,'blocks_6_options_theme','#f5f5f5'),(266841,41533,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(266842,41533,'blocks_6_options_format','stacked'),(266843,41533,'_blocks_6_options_format','field_64bfde9a90690'),(266844,41533,'blocks_6_options',''),(266845,41533,'_blocks_6_options','field_64bfdd9b90684'),(266846,41533,'blocks_6_row_content_title','Options available to pay for your course'),(266847,41533,'_blocks_6_row_content_title','field_64bfdd9b90687'),(266848,41533,'blocks_6_row_content_heading','Fees & Funding Options '),(266849,41533,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(266850,41533,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(266851,41533,'_blocks_6_row_content_text','field_64bfdd9b90689'),(266852,41533,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41533-3\";s:6:\"target\";s:0:\"\";}'),(266853,41533,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(266854,41533,'blocks_6_row_content_actions','1'),(266855,41533,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(266856,41533,'blocks_6_row_content',''),(266857,41533,'_blocks_6_row_content','field_64bfdd9b90686'),(266858,41533,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(266859,41533,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(266860,41533,'blocks_6_icon_row_items_0_label','Pay in full'),(266861,41533,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(266862,41533,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(266863,41533,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(266864,41533,'blocks_6_icon_row_items_1_icon','finance.svg'),(266865,41533,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(266866,41533,'blocks_6_icon_row_items_1_label','0% finance'),(266867,41533,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(266868,41533,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(266869,41533,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(266870,41533,'blocks_6_icon_row_items','3'),(266871,41533,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(266872,41533,'blocks_7_acfe_flexible_toggle',''),(266873,41533,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(266874,41533,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(266875,41533,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(266876,41533,'blocks_7_options_theme','#ffffff'),(266877,41533,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(266878,41533,'blocks_7_options_reverse','0'),(266879,41533,'_blocks_7_options_reverse','field_61768049bb8ac'),(266880,41533,'blocks_7_options',''),(266881,41533,'_blocks_7_options','field_617682517c334'),(266882,41533,'blocks_7_split_5050_image','41543'),(266883,41533,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(266884,41533,'blocks_7_split_5050_video',''),(266885,41533,'_blocks_7_split_5050_video','field_6239f3160848a'),(266886,41533,'blocks_7_split_5050_content_title',''),(266887,41533,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(266888,41533,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(266889,41533,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(266890,41533,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(266891,41533,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(266892,41533,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41533-3\";s:6:\"target\";s:0:\"\";}'),(266893,41533,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(266894,41533,'blocks_7_split_5050_content_actions','1'),(266895,41533,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(266896,41533,'blocks_7_split_5050_content',''),(266897,41533,'_blocks_7_split_5050_content','field_61767afceb8ba'),(266898,41533,'blocks_8_acfe_flexible_toggle',''),(266899,41533,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(266900,41533,'blocks_8_acfe_flexible_layout_title','Icons'),(266901,41533,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(266902,41533,'blocks_8_options_theme','#f5f5f5'),(266903,41533,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(266904,41533,'blocks_8_options_format','row'),(266905,41533,'_blocks_8_options_format','field_64bfde9a90690'),(266906,41533,'blocks_8_options',''),(266907,41533,'_blocks_8_options','field_64bfdd9b90684'),(266908,41533,'blocks_8_icon_row_items_0_icon','qualification.svg'),(266909,41533,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(266910,41533,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(266911,41533,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(266912,41533,'blocks_8_icon_row_items_0_text',''),(266913,41533,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(266914,41533,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(266915,41533,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(266916,41533,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(266917,41533,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(266918,41533,'blocks_8_icon_row_items_1_text',''),(266919,41533,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(266920,41533,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(266921,41533,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(266922,41533,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(266923,41533,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(266924,41533,'blocks_8_icon_row_items_2_text',''),(266925,41533,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(266926,41533,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(266927,41533,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(266928,41533,'blocks_8_icon_row_items_3_label','Flexible funding options'),(266929,41533,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(266930,41533,'blocks_8_icon_row_items_3_text',''),(266931,41533,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(266932,41533,'blocks_8_icon_row_items','4'),(266933,41533,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(266934,41533,'blocks_9_acfe_flexible_toggle',''),(266935,41533,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(266936,41533,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(266937,41533,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(266938,41533,'blocks_9_options_theme','#ffffff'),(266939,41533,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(266940,41533,'blocks_9_options_reverse','1'),(266941,41533,'_blocks_9_options_reverse','field_61768049bb8ac'),(266942,41533,'blocks_9_options',''),(266943,41533,'_blocks_9_options','field_617682517c334'),(266944,41533,'blocks_9_split_5050_image','39224'),(266945,41533,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(266946,41533,'blocks_9_split_5050_video',''),(266947,41533,'_blocks_9_split_5050_video','field_6239f3160848a'),(266948,41533,'blocks_9_split_5050_content_title','Locations'),(266949,41533,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(266950,41533,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(266951,41533,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(266952,41533,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(266953,41533,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(266954,41533,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41533-3\";s:6:\"target\";s:0:\"\";}'),(266955,41533,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(266956,41533,'blocks_9_split_5050_content_actions','1'),(266957,41533,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(266958,41533,'blocks_9_split_5050_content',''),(266959,41533,'_blocks_9_split_5050_content','field_61767afceb8ba'),(266960,41533,'blocks_1_acfe_flexible_toggle',''),(266961,41533,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(266962,41533,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(266963,41533,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(266964,41533,'blocks_1_options_theme','#ffffff'),(266965,41533,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(266966,41533,'blocks_1_options_reverse','0'),(266967,41533,'_blocks_1_options_reverse','field_61768049bb8ac'),(266968,41533,'blocks_1_options',''),(266969,41533,'_blocks_1_options','field_617682517c334'),(266970,41533,'blocks_1_split_5050_image','41498'),(266971,41533,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(266972,41533,'blocks_1_split_5050_video',''),(266973,41533,'_blocks_1_split_5050_video','field_6239f3160848a'),(266974,41533,'blocks_1_split_5050_content_title',''),(266975,41533,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(266976,41533,'blocks_1_split_5050_content_heading','Course Overview'),(266977,41533,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(266978,41533,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW194933276 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW194933276 BCX8\">Enhance your </span><span class=\"NormalTextRun SCXW194933276 BCX8\">expertise</span><span class=\"NormalTextRun SCXW194933276 BCX8\"> with a dual qualification in Biomechanics Coaching and Level 4 Strength and Conditioning. Designed for fitness professionals, coaches, and therapists, this course covers essential Intrinsic biomechanics principles alongside advanced strength and conditioning techniques, equipping you to improve performance, reduce injury risk, and provide targeted training for clients of all levels.</span></span><span class=\"EOP SCXW194933276 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(266979,41533,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(266980,41533,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(266981,41533,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(266982,41533,'blocks_1_split_5050_content_actions','1'),(266983,41533,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(266984,41533,'blocks_1_split_5050_content',''),(266985,41533,'_blocks_1_split_5050_content','field_61767afceb8ba'),(266986,41533,'blocks_2_acfe_flexible_toggle',''),(266987,41533,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(266988,41533,'blocks_2_acfe_flexible_layout_title','Form'),(266989,41533,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(266990,41533,'blocks_2_row_content_format','standard'),(266991,41533,'_blocks_2_row_content_format','field_6481ead962881'),(266992,41533,'blocks_2_row_content_title',''),(266993,41533,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(266994,41533,'blocks_2_row_content_heading','Enquire Today'),(266995,41533,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(266996,41533,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(266997,41533,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(266998,41533,'blocks_2_row_content_actions',''),(266999,41533,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(267000,41533,'blocks_2_row_content',''),(267001,41533,'_blocks_2_row_content','field_61a0f5f5b3db0'),(267002,41533,'blocks_2_row_form','40394'),(267003,41533,'_blocks_2_row_form','field_61a4ff2c0b08e'),(267004,41533,'blocks_2_row_form_button_label',''),(267005,41533,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(267006,41533,'blocks_3_acfe_flexible_toggle',''),(267007,41533,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(267008,41533,'blocks_3_acfe_flexible_layout_title','Video'),(267009,41533,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(267010,41533,'blocks_3_size','large'),(267011,41533,'_blocks_3_size','field_6487038f297c1'),(267012,41533,'blocks_3_row_content_title',''),(267013,41533,'_blocks_3_row_content_title','field_64870132a865d'),(267014,41533,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(267015,41533,'_blocks_3_row_content_heading','field_64870142a865e'),(267016,41533,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(267017,41533,'_blocks_3_row_content_text','field_64870148a865f'),(267018,41533,'blocks_3_row_content',''),(267019,41533,'_blocks_3_row_content','field_6487008ba865c'),(267020,41533,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(267021,41533,'_blocks_3_video_src','field_6193c4a98ec07'),(267022,41533,'blocks_3_video_thumbnail',''),(267023,41533,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(267024,41533,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(267025,41533,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(267026,41533,'blocks_6_icon_row_items_2_label','Deposit & balance'),(267027,41533,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(267028,41533,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(267029,41533,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(267030,41533,'blocks_10_acfe_flexible_toggle','1'),(267031,41533,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(267032,41533,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(267033,41533,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(267034,41533,'blocks_10_options_theme','#ffffff'),(267035,41533,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(267036,41533,'blocks_10_options',''),(267037,41533,'_blocks_10_options','field_617ac0b7f6c08'),(267038,41533,'blocks_10_show','selection'),(267039,41533,'_blocks_10_show','field_61a49cba9d946'),(267040,41533,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(267041,41533,'_blocks_10_courses','field_61b244781ee0a'),(267042,41533,'blocks_10_open_whats_included','1'),(267043,41533,'_blocks_10_open_whats_included','field_66ebfd679450c'),(267044,41533,'blocks_10_open_key_information','0'),(267045,41533,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(267046,41533,'blocks_10_open',''),(267047,41533,'_blocks_10_open','field_66ebfd009450b'),(267048,41533,'blocks_11_acfe_flexible_toggle',''),(267049,41533,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(267050,41533,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(267051,41533,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(267052,41533,'blocks_11_options_theme','#ffffff'),(267053,41533,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(267054,41533,'blocks_11_options_reverse','0'),(267055,41533,'_blocks_11_options_reverse','field_61768049bb8ac'),(267056,41533,'blocks_11_options',''),(267057,41533,'_blocks_11_options','field_617682517c334'),(267058,41533,'blocks_11_split_5050_image','41493'),(267059,41533,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(267060,41533,'blocks_11_split_5050_video',''),(267061,41533,'_blocks_11_split_5050_video','field_6239f3160848a'),(267062,41533,'blocks_11_split_5050_content_title','Optimise Performance '),(267063,41533,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(267064,41533,'blocks_11_split_5050_content_heading','Level 4 Strength and Conditioning Qualification with your Diploma in Biomechanics Coaching'),(267065,41533,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(267066,41533,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW125057262 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW125057262 BCX8\">Our unique programme in Biomechanics Coaching and Level 4 Strength and Conditioning offers advanced techniques that go beyond traditional training. Gain skills in biomechanics to </span><span class=\"NormalTextRun SCXW125057262 BCX8\">identify</span><span class=\"NormalTextRun SCXW125057262 BCX8\"> movement patterns, assess functional performance, and optimise training plans. Ideal for trainers and coaches, this qualification enables you to deliver scientifically backed, targeted conditioning to improve client results.</span></span><span class=\"EOP SCXW125057262 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW39222847 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW39222847 BCX8\">As a qualified level 4 </span><span class=\"NormalTextRun SCXW39222847 BCX8\">Strength &amp; Conditioning</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> expert</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> you will be able to: </span></span> </strong>\r\n<ul>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">The role of a strength and conditioning coach as part of an athlete’s support team.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Methods of carrying out performance-related needs analysis, measurements and assessments.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Strategies to analyse and evaluate assessment findings to be able to develop and </span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">agree short, medium, and long-term performance goals.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Planning, delivering and evaluating periodised, performance-related strength and conditioning programmes.</span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-ccp-props=\"{}\"> </span></li>\r\n</ul>'),(267067,41533,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(267068,41533,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41533-3\";s:6:\"target\";s:0:\"\";}'),(267069,41533,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(267070,41533,'blocks_11_split_5050_content_actions','1'),(267071,41533,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(267072,41533,'blocks_11_split_5050_content',''),(267073,41533,'_blocks_11_split_5050_content','field_61767afceb8ba'),(267074,41533,'blocks_12_acfe_flexible_toggle',''),(267075,41533,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(267076,41533,'blocks_12_acfe_flexible_layout_title','Template'),(267077,41533,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(267078,41533,'blocks_12_template','40987'),(267079,41533,'_blocks_12_template','field_617bdd570fe01'),(267080,41533,'blocks_13_acfe_flexible_toggle',''),(267081,41533,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(267082,41533,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(267083,41533,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(267084,41533,'blocks_13_options_theme','#f5f5f5'),(267085,41533,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(267086,41533,'blocks_13_options_state','0'),(267087,41533,'_blocks_13_options_state','field_6239fcb7508c5'),(267088,41533,'blocks_13_options',''),(267089,41533,'_blocks_13_options','field_6177e2991ac44'),(267090,41533,'blocks_13_content_title',''),(267091,41533,'_blocks_13_content_title','field_64d237e8bb1e2'),(267092,41533,'blocks_13_content_heading','FAQ\'s'),(267093,41533,'_blocks_13_content_heading','field_64d237e8bb1e3'),(267094,41533,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(267095,41533,'_blocks_13_content_text','field_64d237e8bb1e4'),(267096,41533,'blocks_13_content_actions',''),(267097,41533,'_blocks_13_content_actions','field_64d237e8bb1e5'),(267098,41533,'blocks_13_content_align','left'),(267099,41533,'_blocks_13_content_align','field_64d2443e6b6aa'),(267100,41533,'blocks_13_content',''),(267101,41533,'_blocks_13_content','field_64d237e8bb1e1'),(267102,41533,'blocks_13_accordion_content','faqs'),(267103,41533,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(267104,41533,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41534\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(267105,41533,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(267106,41533,'blocks_13_actions',''),(267107,41533,'_blocks_13_actions','field_61a746a817f7a'),(267108,41533,'_yoast_wpseo_focuskw','Level 4 Strength & Conditioning Course'),(267109,41533,'_yoast_wpseo_title','Level 4 Strength and Conditioning & Biomechanics Coaching Bundle %%sep%% Biomechanics Education'),(267110,41533,'_yoast_wpseo_metadesc','Enhance your skills with our Level 4 Strength & Conditioning and Intrinsic Biomechanics course. Ideal for existing PE teachers, physiotherapists, osteopaths, sports coaches, and personal trainers.'),(267111,41533,'_yoast_wpseo_linkdex','33'),(267112,41533,'_yoast_wpseo_inclusive_language_score','90'),(267113,41533,'_wp_old_slug','level-4-personal-trainer-course-copy'),(267114,41533,'_wp_old_slug','level-3-sports-massage-diploma-in-biomechanics-coaching-copy'),(267115,41533,'_wp_old_slug','level-3-sports-level-4-sports-massage-diploma-in-biomechanics-coaching'),(267116,41533,'_wp_old_slug','level-4-sports-massage-diploma-in-biomechanics-coaching-copy'),(267117,41534,'_edit_lock','1731070615:13'),(267118,41534,'_edit_last','13'),(267119,41535,'hide_hero','0'),(267120,41535,'_hide_hero','field_66a2380fcda39'),(267121,41535,'hero_title','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching'),(267122,41535,'_hero_title','field_617571fe285e8'),(267123,41535,'hero_text','Master Strength and Conditioning with Intrinsic biomechanics expertise for optimal client performance.'),(267124,41535,'_hero_text','field_6175723c285e9'),(267125,41535,'hero_actions','1'),(267126,41535,'_hero_actions','field_61757270285ea'),(267127,41535,'hero_style','default'),(267128,41535,'_hero_style','field_62051d9dc5324'),(267129,41535,'_thumbnail_id','41524'),(267130,41535,'__thumbnail_id','field_617570855ddaf'),(267131,41535,'hero_image_pos_x','right'),(267132,41535,'_hero_image_pos_x','field_62ec3d05390bb'),(267133,41535,'hero_image_pos_y','top'),(267134,41535,'_hero_image_pos_y','field_62ec3d05390bc'),(267135,41535,'hero_image_pos',''),(267136,41535,'_hero_image_pos','field_62ec3d05390ba'),(267137,41535,'fft_hide_from_listings','0'),(267138,41535,'_fft_hide_from_listings','field_61f1320446ab2'),(267139,41535,'fft_page_format','default'),(267140,41535,'_fft_page_format','field_61ae213f1f218'),(267141,41535,'fft_hide_nav','0'),(267142,41535,'_fft_hide_nav','field_635bd5e43527c'),(267143,41535,'fft_hide_header_call_to_action','0'),(267144,41535,'_fft_hide_header_call_to_action','field_635bd6723527d'),(267145,41535,'fft_page_sitemap','0'),(267146,41535,'_fft_page_sitemap','field_61af9b34e8181'),(267147,41535,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(267148,41535,'_blocks','field_6176696113096'),(267149,41535,'course_label_text',''),(267150,41535,'_course_label_text','field_61e17babf71fa'),(267151,41535,'course_label',''),(267152,41535,'_course_label','field_61e12f92749a7'),(267153,41535,'course_description',''),(267154,41535,'_course_description','field_617ac5788e5e1'),(267155,41535,'course_key_info',''),(267156,41535,'_course_key_info','field_617ac6ad8e5e2'),(267157,41535,'course_included',''),(267158,41535,'_course_included','field_617ac6f08e5e4'),(267159,41535,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41520-4\";s:6:\"target\";s:0:\"\";}'),(267160,41535,'_hero_actions_0_button','field_61757281285eb'),(267161,41535,'blocks_0_acfe_flexible_toggle',''),(267162,41535,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(267163,41535,'blocks_0_acfe_flexible_layout_title','Icons'),(267164,41535,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(267165,41535,'blocks_0_options_theme','#b61234'),(267166,41535,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(267167,41535,'blocks_0_options_format','row'),(267168,41535,'_blocks_0_options_format','field_64bfde9a90690'),(267169,41535,'blocks_0_options',''),(267170,41535,'_blocks_0_options','field_64bfdd9b90684'),(267171,41535,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(267172,41535,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(267173,41535,'blocks_0_icon_row_items_0_label','Accreditation'),(267174,41535,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(267175,41535,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(267176,41535,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(267177,41535,'blocks_0_icon_row_items_1_icon','finance.svg'),(267178,41535,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(267179,41535,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(267180,41535,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(267181,41535,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(267182,41535,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(267183,41535,'blocks_0_icon_row_items_2_icon','progression.svg'),(267184,41535,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(267185,41535,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(267186,41535,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(267187,41535,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(267188,41535,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(267189,41535,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(267190,41535,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(267191,41535,'blocks_0_icon_row_items_3_label','Qualification'),(267192,41535,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(267193,41535,'blocks_0_icon_row_items_3_text','Level 4 Strength & Conditioning + Diploma in Biomechanics Coaching '),(267194,41535,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(267195,41535,'blocks_0_icon_row_items','4'),(267196,41535,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(267197,41535,'blocks_5_acfe_flexible_toggle','1'),(267198,41535,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(267199,41535,'blocks_5_acfe_flexible_layout_title','Tabs'),(267200,41535,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(267201,41535,'blocks_5_options_theme','#ffffff'),(267202,41535,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(267203,41535,'blocks_5_options',''),(267204,41535,'_blocks_5_options','field_6177cfcd8140f'),(267205,41535,'blocks_5_tabs_0_tab_label','Entry requirements'),(267206,41535,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(267207,41535,'blocks_5_tabs_0_tab_content_title',''),(267208,41535,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(267209,41535,'blocks_5_tabs_0_tab_content_heading',''),(267210,41535,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(267211,41535,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(267212,41535,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(267213,41535,'blocks_5_tabs_0_tab_content_actions',''),(267214,41535,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(267215,41535,'blocks_5_tabs_0_tab_content',''),(267216,41535,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(267217,41535,'blocks_5_tabs_0_tab_image',''),(267218,41535,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(267219,41535,'blocks_5_tabs_1_tab_label','Learning format'),(267220,41535,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(267221,41535,'blocks_5_tabs_1_tab_content_title',''),(267222,41535,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(267223,41535,'blocks_5_tabs_1_tab_content_heading',''),(267224,41535,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(267225,41535,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(267226,41535,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(267227,41535,'blocks_5_tabs_1_tab_content_actions',''),(267228,41535,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(267229,41535,'blocks_5_tabs_1_tab_content',''),(267230,41535,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(267231,41535,'blocks_5_tabs_1_tab_image',''),(267232,41535,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(267233,41535,'blocks_5_tabs_2_tab_label','Qualifications included'),(267234,41535,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(267235,41535,'blocks_5_tabs_2_tab_content_title',''),(267236,41535,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(267237,41535,'blocks_5_tabs_2_tab_content_heading',''),(267238,41535,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(267239,41535,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(267240,41535,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(267241,41535,'blocks_5_tabs_2_tab_content_actions',''),(267242,41535,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(267243,41535,'blocks_5_tabs_2_tab_content',''),(267244,41535,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(267245,41535,'blocks_5_tabs_2_tab_image',''),(267246,41535,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(267247,41535,'blocks_5_tabs','3'),(267248,41535,'_blocks_5_tabs','field_6177cff281419'),(267249,41535,'blocks_4_acfe_flexible_toggle',''),(267250,41535,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(267251,41535,'blocks_4_acfe_flexible_layout_title','Template'),(267252,41535,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(267253,41535,'blocks_4_template','39207'),(267254,41535,'_blocks_4_template','field_617bdd570fe01'),(267255,41535,'blocks_6_acfe_flexible_toggle',''),(267256,41535,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(267257,41535,'blocks_6_acfe_flexible_layout_title','Icons'),(267258,41535,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(267259,41535,'blocks_6_options_theme','#f5f5f5'),(267260,41535,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(267261,41535,'blocks_6_options_format','stacked'),(267262,41535,'_blocks_6_options_format','field_64bfde9a90690'),(267263,41535,'blocks_6_options',''),(267264,41535,'_blocks_6_options','field_64bfdd9b90684'),(267265,41535,'blocks_6_row_content_title','Options available to pay for your course'),(267266,41535,'_blocks_6_row_content_title','field_64bfdd9b90687'),(267267,41535,'blocks_6_row_content_heading','Fees & Funding Options '),(267268,41535,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(267269,41535,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(267270,41535,'_blocks_6_row_content_text','field_64bfdd9b90689'),(267271,41535,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(267272,41535,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(267273,41535,'blocks_6_row_content_actions','1'),(267274,41535,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(267275,41535,'blocks_6_row_content',''),(267276,41535,'_blocks_6_row_content','field_64bfdd9b90686'),(267277,41535,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(267278,41535,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(267279,41535,'blocks_6_icon_row_items_0_label','Pay in full'),(267280,41535,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(267281,41535,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(267282,41535,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(267283,41535,'blocks_6_icon_row_items_1_icon','finance.svg'),(267284,41535,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(267285,41535,'blocks_6_icon_row_items_1_label','0% finance'),(267286,41535,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(267287,41535,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(267288,41535,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(267289,41535,'blocks_6_icon_row_items','3'),(267290,41535,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(267291,41535,'blocks_7_acfe_flexible_toggle',''),(267292,41535,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(267293,41535,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(267294,41535,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(267295,41535,'blocks_7_options_theme','#ffffff'),(267296,41535,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(267297,41535,'blocks_7_options_reverse','0'),(267298,41535,'_blocks_7_options_reverse','field_61768049bb8ac'),(267299,41535,'blocks_7_options',''),(267300,41535,'_blocks_7_options','field_617682517c334'),(267301,41535,'blocks_7_split_5050_image','41526'),(267302,41535,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(267303,41535,'blocks_7_split_5050_video',''),(267304,41535,'_blocks_7_split_5050_video','field_6239f3160848a'),(267305,41535,'blocks_7_split_5050_content_title',''),(267306,41535,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(267307,41535,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(267308,41535,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(267309,41535,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(267310,41535,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(267311,41535,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(267312,41535,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(267313,41535,'blocks_7_split_5050_content_actions','1'),(267314,41535,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(267315,41535,'blocks_7_split_5050_content',''),(267316,41535,'_blocks_7_split_5050_content','field_61767afceb8ba'),(267317,41535,'blocks_8_acfe_flexible_toggle',''),(267318,41535,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(267319,41535,'blocks_8_acfe_flexible_layout_title','Icons'),(267320,41535,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(267321,41535,'blocks_8_options_theme','#f5f5f5'),(267322,41535,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(267323,41535,'blocks_8_options_format','row'),(267324,41535,'_blocks_8_options_format','field_64bfde9a90690'),(267325,41535,'blocks_8_options',''),(267326,41535,'_blocks_8_options','field_64bfdd9b90684'),(267327,41535,'blocks_8_icon_row_items_0_icon','qualification.svg'),(267328,41535,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(267329,41535,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(267330,41535,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(267331,41535,'blocks_8_icon_row_items_0_text',''),(267332,41535,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(267333,41535,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(267334,41535,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(267335,41535,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(267336,41535,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(267337,41535,'blocks_8_icon_row_items_1_text',''),(267338,41535,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(267339,41535,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(267340,41535,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(267341,41535,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(267342,41535,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(267343,41535,'blocks_8_icon_row_items_2_text',''),(267344,41535,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(267345,41535,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(267346,41535,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(267347,41535,'blocks_8_icon_row_items_3_label','Flexible funding options'),(267348,41535,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(267349,41535,'blocks_8_icon_row_items_3_text',''),(267350,41535,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(267351,41535,'blocks_8_icon_row_items','4'),(267352,41535,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(267353,41535,'blocks_9_acfe_flexible_toggle',''),(267354,41535,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(267355,41535,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(267356,41535,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(267357,41535,'blocks_9_options_theme','#ffffff'),(267358,41535,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(267359,41535,'blocks_9_options_reverse','1'),(267360,41535,'_blocks_9_options_reverse','field_61768049bb8ac'),(267361,41535,'blocks_9_options',''),(267362,41535,'_blocks_9_options','field_617682517c334'),(267363,41535,'blocks_9_split_5050_image','39224'),(267364,41535,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(267365,41535,'blocks_9_split_5050_video',''),(267366,41535,'_blocks_9_split_5050_video','field_6239f3160848a'),(267367,41535,'blocks_9_split_5050_content_title','Locations'),(267368,41535,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(267369,41535,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(267370,41535,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(267371,41535,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(267372,41535,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(267373,41535,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(267374,41535,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(267375,41535,'blocks_9_split_5050_content_actions','1'),(267376,41535,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(267377,41535,'blocks_9_split_5050_content',''),(267378,41535,'_blocks_9_split_5050_content','field_61767afceb8ba'),(267379,41535,'blocks_1_acfe_flexible_toggle',''),(267380,41535,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(267381,41535,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(267382,41535,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(267383,41535,'blocks_1_options_theme','#ffffff'),(267384,41535,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(267385,41535,'blocks_1_options_reverse','0'),(267386,41535,'_blocks_1_options_reverse','field_61768049bb8ac'),(267387,41535,'blocks_1_options',''),(267388,41535,'_blocks_1_options','field_617682517c334'),(267389,41535,'blocks_1_split_5050_image','41506'),(267390,41535,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(267391,41535,'blocks_1_split_5050_video',''),(267392,41535,'_blocks_1_split_5050_video','field_6239f3160848a'),(267393,41535,'blocks_1_split_5050_content_title',''),(267394,41535,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(267395,41535,'blocks_1_split_5050_content_heading','Course Overview'),(267396,41535,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(267397,41535,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW194933276 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW194933276 BCX8\">Enhance your </span><span class=\"NormalTextRun SCXW194933276 BCX8\">expertise</span><span class=\"NormalTextRun SCXW194933276 BCX8\"> with a dual qualification in Biomechanics Coaching and Level 4 Strength and Conditioning. Designed for fitness professionals, coaches, and therapists, this course covers essential Intrinsic biomechanics principles alongside advanced strength and conditioning techniques, equipping you to improve performance, reduce injury risk, and provide targeted training for clients of all levels.</span></span><span class=\"EOP SCXW194933276 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(267398,41535,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(267399,41535,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(267400,41535,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(267401,41535,'blocks_1_split_5050_content_actions','1'),(267402,41535,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(267403,41535,'blocks_1_split_5050_content',''),(267404,41535,'_blocks_1_split_5050_content','field_61767afceb8ba'),(267405,41535,'blocks_2_acfe_flexible_toggle',''),(267406,41535,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(267407,41535,'blocks_2_acfe_flexible_layout_title','Form'),(267408,41535,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(267409,41535,'blocks_2_row_content_format','standard'),(267410,41535,'_blocks_2_row_content_format','field_6481ead962881'),(267411,41535,'blocks_2_row_content_title',''),(267412,41535,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(267413,41535,'blocks_2_row_content_heading','Enquire Today'),(267414,41535,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(267415,41535,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(267416,41535,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(267417,41535,'blocks_2_row_content_actions',''),(267418,41535,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(267419,41535,'blocks_2_row_content',''),(267420,41535,'_blocks_2_row_content','field_61a0f5f5b3db0'),(267421,41535,'blocks_2_row_form','40394'),(267422,41535,'_blocks_2_row_form','field_61a4ff2c0b08e'),(267423,41535,'blocks_2_row_form_button_label',''),(267424,41535,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(267425,41535,'blocks_3_acfe_flexible_toggle',''),(267426,41535,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(267427,41535,'blocks_3_acfe_flexible_layout_title','Video'),(267428,41535,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(267429,41535,'blocks_3_size','large'),(267430,41535,'_blocks_3_size','field_6487038f297c1'),(267431,41535,'blocks_3_row_content_title',''),(267432,41535,'_blocks_3_row_content_title','field_64870132a865d'),(267433,41535,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(267434,41535,'_blocks_3_row_content_heading','field_64870142a865e'),(267435,41535,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(267436,41535,'_blocks_3_row_content_text','field_64870148a865f'),(267437,41535,'blocks_3_row_content',''),(267438,41535,'_blocks_3_row_content','field_6487008ba865c'),(267439,41535,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(267440,41535,'_blocks_3_video_src','field_6193c4a98ec07'),(267441,41535,'blocks_3_video_thumbnail',''),(267442,41535,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(267443,41535,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(267444,41535,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(267445,41535,'blocks_6_icon_row_items_2_label','Deposit & balance'),(267446,41535,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(267447,41535,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(267448,41535,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(267449,41535,'blocks_10_acfe_flexible_toggle','1'),(267450,41535,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(267451,41535,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(267452,41535,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(267453,41535,'blocks_10_options_theme','#ffffff'),(267454,41535,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(267455,41535,'blocks_10_options',''),(267456,41535,'_blocks_10_options','field_617ac0b7f6c08'),(267457,41535,'blocks_10_show','selection'),(267458,41535,'_blocks_10_show','field_61a49cba9d946'),(267459,41535,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(267460,41535,'_blocks_10_courses','field_61b244781ee0a'),(267461,41535,'blocks_10_open_whats_included','1'),(267462,41535,'_blocks_10_open_whats_included','field_66ebfd679450c'),(267463,41535,'blocks_10_open_key_information','0'),(267464,41535,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(267465,41535,'blocks_10_open',''),(267466,41535,'_blocks_10_open','field_66ebfd009450b'),(267467,41535,'blocks_11_acfe_flexible_toggle',''),(267468,41535,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(267469,41535,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(267470,41535,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(267471,41535,'blocks_11_options_theme','#ffffff'),(267472,41535,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(267473,41535,'blocks_11_options_reverse','0'),(267474,41535,'_blocks_11_options_reverse','field_61768049bb8ac'),(267475,41535,'blocks_11_options',''),(267476,41535,'_blocks_11_options','field_617682517c334'),(267477,41535,'blocks_11_split_5050_image','41504'),(267478,41535,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(267479,41535,'blocks_11_split_5050_video',''),(267480,41535,'_blocks_11_split_5050_video','field_6239f3160848a'),(267481,41535,'blocks_11_split_5050_content_title','Optimise Performance '),(267482,41535,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(267483,41535,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(267484,41535,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(267485,41535,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW125057262 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW125057262 BCX8\">Our unique programme in Biomechanics Coaching and Level 4 Strength and Conditioning offers advanced techniques that go beyond traditional training. Gain skills in biomechanics to </span><span class=\"NormalTextRun SCXW125057262 BCX8\">identify</span><span class=\"NormalTextRun SCXW125057262 BCX8\"> movement patterns, assess functional performance, and optimise training plans. Ideal for trainers and coaches, this qualification enables you to deliver scientifically backed, targeted conditioning to improve client results.</span></span><span class=\"EOP SCXW125057262 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW39222847 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW39222847 BCX8\">As a qualified level 4 </span><span class=\"NormalTextRun SCXW39222847 BCX8\">Strength &amp; Conditioning</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> expert</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> you will be able to: </span></span> </strong>\r\n<ul>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">The role of a strength and conditioning coach as part of an athlete’s support team.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Methods of carrying out performance-related needs analysis, measurements and assessments.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Strategies to analyse and evaluate assessment findings to be able to develop and </span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">agree short, medium, and long-term performance goals.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Planning, delivering and evaluating periodised, performance-related strength and conditioning programmes.</span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-ccp-props=\"{}\"> </span></li>\r\n</ul>'),(267486,41535,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(267487,41535,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(267488,41535,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(267489,41535,'blocks_11_split_5050_content_actions','1'),(267490,41535,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(267491,41535,'blocks_11_split_5050_content',''),(267492,41535,'_blocks_11_split_5050_content','field_61767afceb8ba'),(267493,41535,'blocks_12_acfe_flexible_toggle',''),(267494,41535,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(267495,41535,'blocks_12_acfe_flexible_layout_title','Template'),(267496,41535,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(267497,41535,'blocks_12_template','40987'),(267498,41535,'_blocks_12_template','field_617bdd570fe01'),(267499,41535,'blocks_13_acfe_flexible_toggle',''),(267500,41535,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(267501,41535,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(267502,41535,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(267503,41535,'blocks_13_options_theme','#f5f5f5'),(267504,41535,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(267505,41535,'blocks_13_options_state','0'),(267506,41535,'_blocks_13_options_state','field_6239fcb7508c5'),(267507,41535,'blocks_13_options',''),(267508,41535,'_blocks_13_options','field_6177e2991ac44'),(267509,41535,'blocks_13_content_title',''),(267510,41535,'_blocks_13_content_title','field_64d237e8bb1e2'),(267511,41535,'blocks_13_content_heading','FAQ\'s'),(267512,41535,'_blocks_13_content_heading','field_64d237e8bb1e3'),(267513,41535,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(267514,41535,'_blocks_13_content_text','field_64d237e8bb1e4'),(267515,41535,'blocks_13_content_actions',''),(267516,41535,'_blocks_13_content_actions','field_64d237e8bb1e5'),(267517,41535,'blocks_13_content_align','left'),(267518,41535,'_blocks_13_content_align','field_64d2443e6b6aa'),(267519,41535,'blocks_13_content',''),(267520,41535,'_blocks_13_content','field_64d237e8bb1e1'),(267521,41535,'blocks_13_accordion_content','faqs'),(267522,41535,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(267523,41535,'blocks_13_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(267524,41535,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(267525,41535,'blocks_13_actions',''),(267526,41535,'_blocks_13_actions','field_61a746a817f7a'),(267527,41536,'hide_hero','0'),(267528,41536,'_hide_hero','field_66a2380fcda39'),(267529,41536,'hero_title','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching'),(267530,41536,'_hero_title','field_617571fe285e8'),(267531,41536,'hero_text','Master Strength and Conditioning with Intrinsic biomechanics expertise for optimal client performance.'),(267532,41536,'_hero_text','field_6175723c285e9'),(267533,41536,'hero_actions','1'),(267534,41536,'_hero_actions','field_61757270285ea'),(267535,41536,'hero_style','default'),(267536,41536,'_hero_style','field_62051d9dc5324'),(267537,41536,'_thumbnail_id','41524'),(267538,41536,'__thumbnail_id','field_617570855ddaf'),(267539,41536,'hero_image_pos_x','right'),(267540,41536,'_hero_image_pos_x','field_62ec3d05390bb'),(267541,41536,'hero_image_pos_y','top'),(267542,41536,'_hero_image_pos_y','field_62ec3d05390bc'),(267543,41536,'hero_image_pos',''),(267544,41536,'_hero_image_pos','field_62ec3d05390ba'),(267545,41536,'fft_hide_from_listings','0'),(267546,41536,'_fft_hide_from_listings','field_61f1320446ab2'),(267547,41536,'fft_page_format','default'),(267548,41536,'_fft_page_format','field_61ae213f1f218'),(267549,41536,'fft_hide_nav','0'),(267550,41536,'_fft_hide_nav','field_635bd5e43527c'),(267551,41536,'fft_hide_header_call_to_action','0'),(267552,41536,'_fft_hide_header_call_to_action','field_635bd6723527d'),(267553,41536,'fft_page_sitemap','0'),(267554,41536,'_fft_page_sitemap','field_61af9b34e8181'),(267555,41536,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(267556,41536,'_blocks','field_6176696113096'),(267557,41536,'course_label_text',''),(267558,41536,'_course_label_text','field_61e17babf71fa'),(267559,41536,'course_label',''),(267560,41536,'_course_label','field_61e12f92749a7'),(267561,41536,'course_description',''),(267562,41536,'_course_description','field_617ac5788e5e1'),(267563,41536,'course_key_info',''),(267564,41536,'_course_key_info','field_617ac6ad8e5e2'),(267565,41536,'course_included',''),(267566,41536,'_course_included','field_617ac6f08e5e4'),(267567,41536,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41520-4\";s:6:\"target\";s:0:\"\";}'),(267568,41536,'_hero_actions_0_button','field_61757281285eb'),(267569,41536,'blocks_0_acfe_flexible_toggle',''),(267570,41536,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(267571,41536,'blocks_0_acfe_flexible_layout_title','Icons'),(267572,41536,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(267573,41536,'blocks_0_options_theme','#b61234'),(267574,41536,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(267575,41536,'blocks_0_options_format','row'),(267576,41536,'_blocks_0_options_format','field_64bfde9a90690'),(267577,41536,'blocks_0_options',''),(267578,41536,'_blocks_0_options','field_64bfdd9b90684'),(267579,41536,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(267580,41536,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(267581,41536,'blocks_0_icon_row_items_0_label','Accreditation'),(267582,41536,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(267583,41536,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(267584,41536,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(267585,41536,'blocks_0_icon_row_items_1_icon','finance.svg'),(267586,41536,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(267587,41536,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(267588,41536,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(267589,41536,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(267590,41536,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(267591,41536,'blocks_0_icon_row_items_2_icon','progression.svg'),(267592,41536,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(267593,41536,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(267594,41536,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(267595,41536,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(267596,41536,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(267597,41536,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(267598,41536,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(267599,41536,'blocks_0_icon_row_items_3_label','Qualification'),(267600,41536,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(267601,41536,'blocks_0_icon_row_items_3_text','Level 4 Strength & Conditioning + Diploma in Biomechanics Coaching '),(267602,41536,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(267603,41536,'blocks_0_icon_row_items','4'),(267604,41536,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(267605,41536,'blocks_5_acfe_flexible_toggle','1'),(267606,41536,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(267607,41536,'blocks_5_acfe_flexible_layout_title','Tabs'),(267608,41536,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(267609,41536,'blocks_5_options_theme','#ffffff'),(267610,41536,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(267611,41536,'blocks_5_options',''),(267612,41536,'_blocks_5_options','field_6177cfcd8140f'),(267613,41536,'blocks_5_tabs_0_tab_label','Entry requirements'),(267614,41536,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(267615,41536,'blocks_5_tabs_0_tab_content_title',''),(267616,41536,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(267617,41536,'blocks_5_tabs_0_tab_content_heading',''),(267618,41536,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(267619,41536,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(267620,41536,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(267621,41536,'blocks_5_tabs_0_tab_content_actions',''),(267622,41536,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(267623,41536,'blocks_5_tabs_0_tab_content',''),(267624,41536,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(267625,41536,'blocks_5_tabs_0_tab_image',''),(267626,41536,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(267627,41536,'blocks_5_tabs_1_tab_label','Learning format'),(267628,41536,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(267629,41536,'blocks_5_tabs_1_tab_content_title',''),(267630,41536,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(267631,41536,'blocks_5_tabs_1_tab_content_heading',''),(267632,41536,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(267633,41536,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(267634,41536,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(267635,41536,'blocks_5_tabs_1_tab_content_actions',''),(267636,41536,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(267637,41536,'blocks_5_tabs_1_tab_content',''),(267638,41536,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(267639,41536,'blocks_5_tabs_1_tab_image',''),(267640,41536,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(267641,41536,'blocks_5_tabs_2_tab_label','Qualifications included'),(267642,41536,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(267643,41536,'blocks_5_tabs_2_tab_content_title',''),(267644,41536,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(267645,41536,'blocks_5_tabs_2_tab_content_heading',''),(267646,41536,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(267647,41536,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(267648,41536,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(267649,41536,'blocks_5_tabs_2_tab_content_actions',''),(267650,41536,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(267651,41536,'blocks_5_tabs_2_tab_content',''),(267652,41536,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(267653,41536,'blocks_5_tabs_2_tab_image',''),(267654,41536,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(267655,41536,'blocks_5_tabs','3'),(267656,41536,'_blocks_5_tabs','field_6177cff281419'),(267657,41536,'blocks_4_acfe_flexible_toggle',''),(267658,41536,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(267659,41536,'blocks_4_acfe_flexible_layout_title','Template'),(267660,41536,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(267661,41536,'blocks_4_template','39207'),(267662,41536,'_blocks_4_template','field_617bdd570fe01'),(267663,41536,'blocks_6_acfe_flexible_toggle',''),(267664,41536,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(267665,41536,'blocks_6_acfe_flexible_layout_title','Icons'),(267666,41536,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(267667,41536,'blocks_6_options_theme','#f5f5f5'),(267668,41536,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(267669,41536,'blocks_6_options_format','stacked'),(267670,41536,'_blocks_6_options_format','field_64bfde9a90690'),(267671,41536,'blocks_6_options',''),(267672,41536,'_blocks_6_options','field_64bfdd9b90684'),(267673,41536,'blocks_6_row_content_title','Options available to pay for your course'),(267674,41536,'_blocks_6_row_content_title','field_64bfdd9b90687'),(267675,41536,'blocks_6_row_content_heading','Fees & Funding Options '),(267676,41536,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(267677,41536,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(267678,41536,'_blocks_6_row_content_text','field_64bfdd9b90689'),(267679,41536,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(267680,41536,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(267681,41536,'blocks_6_row_content_actions','1'),(267682,41536,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(267683,41536,'blocks_6_row_content',''),(267684,41536,'_blocks_6_row_content','field_64bfdd9b90686'),(267685,41536,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(267686,41536,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(267687,41536,'blocks_6_icon_row_items_0_label','Pay in full'),(267688,41536,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(267689,41536,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(267690,41536,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(267691,41536,'blocks_6_icon_row_items_1_icon','finance.svg'),(267692,41536,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(267693,41536,'blocks_6_icon_row_items_1_label','0% finance'),(267694,41536,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(267695,41536,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(267696,41536,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(267697,41536,'blocks_6_icon_row_items','3'),(267698,41536,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(267699,41536,'blocks_7_acfe_flexible_toggle',''),(267700,41536,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(267701,41536,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(267702,41536,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(267703,41536,'blocks_7_options_theme','#ffffff'),(267704,41536,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(267705,41536,'blocks_7_options_reverse','0'),(267706,41536,'_blocks_7_options_reverse','field_61768049bb8ac'),(267707,41536,'blocks_7_options',''),(267708,41536,'_blocks_7_options','field_617682517c334'),(267709,41536,'blocks_7_split_5050_image','41526'),(267710,41536,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(267711,41536,'blocks_7_split_5050_video',''),(267712,41536,'_blocks_7_split_5050_video','field_6239f3160848a'),(267713,41536,'blocks_7_split_5050_content_title',''),(267714,41536,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(267715,41536,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(267716,41536,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(267717,41536,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(267718,41536,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(267719,41536,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(267720,41536,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(267721,41536,'blocks_7_split_5050_content_actions','1'),(267722,41536,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(267723,41536,'blocks_7_split_5050_content',''),(267724,41536,'_blocks_7_split_5050_content','field_61767afceb8ba'),(267725,41536,'blocks_8_acfe_flexible_toggle',''),(267726,41536,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(267727,41536,'blocks_8_acfe_flexible_layout_title','Icons'),(267728,41536,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(267729,41536,'blocks_8_options_theme','#f5f5f5'),(267730,41536,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(267731,41536,'blocks_8_options_format','row'),(267732,41536,'_blocks_8_options_format','field_64bfde9a90690'),(267733,41536,'blocks_8_options',''),(267734,41536,'_blocks_8_options','field_64bfdd9b90684'),(267735,41536,'blocks_8_icon_row_items_0_icon','qualification.svg'),(267736,41536,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(267737,41536,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(267738,41536,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(267739,41536,'blocks_8_icon_row_items_0_text',''),(267740,41536,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(267741,41536,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(267742,41536,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(267743,41536,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(267744,41536,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(267745,41536,'blocks_8_icon_row_items_1_text',''),(267746,41536,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(267747,41536,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(267748,41536,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(267749,41536,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(267750,41536,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(267751,41536,'blocks_8_icon_row_items_2_text',''),(267752,41536,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(267753,41536,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(267754,41536,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(267755,41536,'blocks_8_icon_row_items_3_label','Flexible funding options'),(267756,41536,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(267757,41536,'blocks_8_icon_row_items_3_text',''),(267758,41536,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(267759,41536,'blocks_8_icon_row_items','4'),(267760,41536,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(267761,41536,'blocks_9_acfe_flexible_toggle',''),(267762,41536,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(267763,41536,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(267764,41536,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(267765,41536,'blocks_9_options_theme','#ffffff'),(267766,41536,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(267767,41536,'blocks_9_options_reverse','1'),(267768,41536,'_blocks_9_options_reverse','field_61768049bb8ac'),(267769,41536,'blocks_9_options',''),(267770,41536,'_blocks_9_options','field_617682517c334'),(267771,41536,'blocks_9_split_5050_image','39224'),(267772,41536,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(267773,41536,'blocks_9_split_5050_video',''),(267774,41536,'_blocks_9_split_5050_video','field_6239f3160848a'),(267775,41536,'blocks_9_split_5050_content_title','Locations'),(267776,41536,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(267777,41536,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(267778,41536,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(267779,41536,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(267780,41536,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(267781,41536,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(267782,41536,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(267783,41536,'blocks_9_split_5050_content_actions','1'),(267784,41536,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(267785,41536,'blocks_9_split_5050_content',''),(267786,41536,'_blocks_9_split_5050_content','field_61767afceb8ba'),(267787,41536,'blocks_1_acfe_flexible_toggle',''),(267788,41536,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(267789,41536,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(267790,41536,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(267791,41536,'blocks_1_options_theme','#ffffff'),(267792,41536,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(267793,41536,'blocks_1_options_reverse','0'),(267794,41536,'_blocks_1_options_reverse','field_61768049bb8ac'),(267795,41536,'blocks_1_options',''),(267796,41536,'_blocks_1_options','field_617682517c334'),(267797,41536,'blocks_1_split_5050_image','41506'),(267798,41536,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(267799,41536,'blocks_1_split_5050_video',''),(267800,41536,'_blocks_1_split_5050_video','field_6239f3160848a'),(267801,41536,'blocks_1_split_5050_content_title',''),(267802,41536,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(267803,41536,'blocks_1_split_5050_content_heading','Course Overview'),(267804,41536,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(267805,41536,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW194933276 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW194933276 BCX8\">Enhance your </span><span class=\"NormalTextRun SCXW194933276 BCX8\">expertise</span><span class=\"NormalTextRun SCXW194933276 BCX8\"> with a dual qualification in Biomechanics Coaching and Level 4 Strength and Conditioning. Designed for fitness professionals, coaches, and therapists, this course covers essential Intrinsic biomechanics principles alongside advanced strength and conditioning techniques, equipping you to improve performance, reduce injury risk, and provide targeted training for clients of all levels.</span></span><span class=\"EOP SCXW194933276 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(267806,41536,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(267807,41536,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(267808,41536,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(267809,41536,'blocks_1_split_5050_content_actions','1'),(267810,41536,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(267811,41536,'blocks_1_split_5050_content',''),(267812,41536,'_blocks_1_split_5050_content','field_61767afceb8ba'),(267813,41536,'blocks_2_acfe_flexible_toggle',''),(267814,41536,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(267815,41536,'blocks_2_acfe_flexible_layout_title','Form'),(267816,41536,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(267817,41536,'blocks_2_row_content_format','standard'),(267818,41536,'_blocks_2_row_content_format','field_6481ead962881'),(267819,41536,'blocks_2_row_content_title',''),(267820,41536,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(267821,41536,'blocks_2_row_content_heading','Enquire Today'),(267822,41536,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(267823,41536,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(267824,41536,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(267825,41536,'blocks_2_row_content_actions',''),(267826,41536,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(267827,41536,'blocks_2_row_content',''),(267828,41536,'_blocks_2_row_content','field_61a0f5f5b3db0'),(267829,41536,'blocks_2_row_form','40394'),(267830,41536,'_blocks_2_row_form','field_61a4ff2c0b08e'),(267831,41536,'blocks_2_row_form_button_label',''),(267832,41536,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(267833,41536,'blocks_3_acfe_flexible_toggle',''),(267834,41536,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(267835,41536,'blocks_3_acfe_flexible_layout_title','Video'),(267836,41536,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(267837,41536,'blocks_3_size','large'),(267838,41536,'_blocks_3_size','field_6487038f297c1'),(267839,41536,'blocks_3_row_content_title',''),(267840,41536,'_blocks_3_row_content_title','field_64870132a865d'),(267841,41536,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(267842,41536,'_blocks_3_row_content_heading','field_64870142a865e'),(267843,41536,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(267844,41536,'_blocks_3_row_content_text','field_64870148a865f'),(267845,41536,'blocks_3_row_content',''),(267846,41536,'_blocks_3_row_content','field_6487008ba865c'),(267847,41536,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(267848,41536,'_blocks_3_video_src','field_6193c4a98ec07'),(267849,41536,'blocks_3_video_thumbnail',''),(267850,41536,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(267851,41536,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(267852,41536,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(267853,41536,'blocks_6_icon_row_items_2_label','Deposit & balance'),(267854,41536,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(267855,41536,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(267856,41536,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(267857,41536,'blocks_10_acfe_flexible_toggle','1'),(267858,41536,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(267859,41536,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(267860,41536,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(267861,41536,'blocks_10_options_theme','#ffffff'),(267862,41536,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(267863,41536,'blocks_10_options',''),(267864,41536,'_blocks_10_options','field_617ac0b7f6c08'),(267865,41536,'blocks_10_show','selection'),(267866,41536,'_blocks_10_show','field_61a49cba9d946'),(267867,41536,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(267868,41536,'_blocks_10_courses','field_61b244781ee0a'),(267869,41536,'blocks_10_open_whats_included','1'),(267870,41536,'_blocks_10_open_whats_included','field_66ebfd679450c'),(267871,41536,'blocks_10_open_key_information','0'),(267872,41536,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(267873,41536,'blocks_10_open',''),(267874,41536,'_blocks_10_open','field_66ebfd009450b'),(267875,41536,'blocks_11_acfe_flexible_toggle',''),(267876,41536,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(267877,41536,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(267878,41536,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(267879,41536,'blocks_11_options_theme','#ffffff'),(267880,41536,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(267881,41536,'blocks_11_options_reverse','0'),(267882,41536,'_blocks_11_options_reverse','field_61768049bb8ac'),(267883,41536,'blocks_11_options',''),(267884,41536,'_blocks_11_options','field_617682517c334'),(267885,41536,'blocks_11_split_5050_image','41504'),(267886,41536,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(267887,41536,'blocks_11_split_5050_video',''),(267888,41536,'_blocks_11_split_5050_video','field_6239f3160848a'),(267889,41536,'blocks_11_split_5050_content_title','Optimise Performance '),(267890,41536,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(267891,41536,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(267892,41536,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(267893,41536,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW125057262 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW125057262 BCX8\">Our unique programme in Biomechanics Coaching and Level 4 Strength and Conditioning offers advanced techniques that go beyond traditional training. Gain skills in biomechanics to </span><span class=\"NormalTextRun SCXW125057262 BCX8\">identify</span><span class=\"NormalTextRun SCXW125057262 BCX8\"> movement patterns, assess functional performance, and optimise training plans. Ideal for trainers and coaches, this qualification enables you to deliver scientifically backed, targeted conditioning to improve client results.</span></span><span class=\"EOP SCXW125057262 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW39222847 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW39222847 BCX8\">As a qualified level 4 </span><span class=\"NormalTextRun SCXW39222847 BCX8\">Strength &amp; Conditioning</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> expert</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> you will be able to: </span></span> </strong>\r\n<ul>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">The role of a strength and conditioning coach as part of an athlete’s support team.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Methods of carrying out performance-related needs analysis, measurements and assessments.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Strategies to analyse and evaluate assessment findings to be able to develop and </span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">agree short, medium, and long-term performance goals.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Planning, delivering and evaluating periodised, performance-related strength and conditioning programmes.</span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-ccp-props=\"{}\"> </span></li>\r\n</ul>'),(267894,41536,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(267895,41536,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(267896,41536,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(267897,41536,'blocks_11_split_5050_content_actions','1'),(267898,41536,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(267899,41536,'blocks_11_split_5050_content',''),(267900,41536,'_blocks_11_split_5050_content','field_61767afceb8ba'),(267901,41536,'blocks_12_acfe_flexible_toggle',''),(267902,41536,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(267903,41536,'blocks_12_acfe_flexible_layout_title','Template'),(267904,41536,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(267905,41536,'blocks_12_template','40987'),(267906,41536,'_blocks_12_template','field_617bdd570fe01'),(267907,41536,'blocks_13_acfe_flexible_toggle',''),(267908,41536,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(267909,41536,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(267910,41536,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(267911,41536,'blocks_13_options_theme','#f5f5f5'),(267912,41536,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(267913,41536,'blocks_13_options_state','0'),(267914,41536,'_blocks_13_options_state','field_6239fcb7508c5'),(267915,41536,'blocks_13_options',''),(267916,41536,'_blocks_13_options','field_6177e2991ac44'),(267917,41536,'blocks_13_content_title',''),(267918,41536,'_blocks_13_content_title','field_64d237e8bb1e2'),(267919,41536,'blocks_13_content_heading','FAQ\'s'),(267920,41536,'_blocks_13_content_heading','field_64d237e8bb1e3'),(267921,41536,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(267922,41536,'_blocks_13_content_text','field_64d237e8bb1e4'),(267923,41536,'blocks_13_content_actions',''),(267924,41536,'_blocks_13_content_actions','field_64d237e8bb1e5'),(267925,41536,'blocks_13_content_align','left'),(267926,41536,'_blocks_13_content_align','field_64d2443e6b6aa'),(267927,41536,'blocks_13_content',''),(267928,41536,'_blocks_13_content','field_64d237e8bb1e1'),(267929,41536,'blocks_13_accordion_content','faqs'),(267930,41536,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(267931,41536,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41534\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(267932,41536,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(267933,41536,'blocks_13_actions',''),(267934,41536,'_blocks_13_actions','field_61a746a817f7a'),(267935,41533,'_wp_old_slug','level-4-pilates-diploma-in-biomechanics-coaching-copy'),(267936,41537,'hide_hero','0'),(267937,41537,'_hide_hero','field_66a2380fcda39'),(267938,41537,'hero_title','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching'),(267939,41537,'_hero_title','field_617571fe285e8'),(267940,41537,'hero_text','Master Strength and Conditioning with Intrinsic biomechanics expertise for optimal client performance.'),(267941,41537,'_hero_text','field_6175723c285e9'),(267942,41537,'hero_actions','1'),(267943,41537,'_hero_actions','field_61757270285ea'),(267944,41537,'hero_style','default'),(267945,41537,'_hero_style','field_62051d9dc5324'),(267946,41537,'_thumbnail_id',''),(267947,41537,'__thumbnail_id','field_617570855ddaf'),(267948,41537,'hero_image_pos_x','right'),(267949,41537,'_hero_image_pos_x','field_62ec3d05390bb'),(267950,41537,'hero_image_pos_y','top'),(267951,41537,'_hero_image_pos_y','field_62ec3d05390bc'),(267952,41537,'hero_image_pos',''),(267953,41537,'_hero_image_pos','field_62ec3d05390ba'),(267954,41537,'fft_hide_from_listings','0'),(267955,41537,'_fft_hide_from_listings','field_61f1320446ab2'),(267956,41537,'fft_page_format','default'),(267957,41537,'_fft_page_format','field_61ae213f1f218'),(267958,41537,'fft_hide_nav','0'),(267959,41537,'_fft_hide_nav','field_635bd5e43527c'),(267960,41537,'fft_hide_header_call_to_action','0'),(267961,41537,'_fft_hide_header_call_to_action','field_635bd6723527d'),(267962,41537,'fft_page_sitemap','0'),(267963,41537,'_fft_page_sitemap','field_61af9b34e8181'),(267964,41537,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(267965,41537,'_blocks','field_6176696113096'),(267966,41537,'course_label_text',''),(267967,41537,'_course_label_text','field_61e17babf71fa'),(267968,41537,'course_label',''),(267969,41537,'_course_label','field_61e12f92749a7'),(267970,41537,'course_description',''),(267971,41537,'_course_description','field_617ac5788e5e1'),(267972,41537,'course_key_info',''),(267973,41537,'_course_key_info','field_617ac6ad8e5e2'),(267974,41537,'course_included',''),(267975,41537,'_course_included','field_617ac6f08e5e4'),(267976,41537,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41520-4\";s:6:\"target\";s:0:\"\";}'),(267977,41537,'_hero_actions_0_button','field_61757281285eb'),(267978,41537,'blocks_0_acfe_flexible_toggle',''),(267979,41537,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(267980,41537,'blocks_0_acfe_flexible_layout_title','Icons'),(267981,41537,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(267982,41537,'blocks_0_options_theme','#b61234'),(267983,41537,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(267984,41537,'blocks_0_options_format','row'),(267985,41537,'_blocks_0_options_format','field_64bfde9a90690'),(267986,41537,'blocks_0_options',''),(267987,41537,'_blocks_0_options','field_64bfdd9b90684'),(267988,41537,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(267989,41537,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(267990,41537,'blocks_0_icon_row_items_0_label','Accreditation'),(267991,41537,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(267992,41537,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(267993,41537,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(267994,41537,'blocks_0_icon_row_items_1_icon','finance.svg'),(267995,41537,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(267996,41537,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(267997,41537,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(267998,41537,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(267999,41537,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(268000,41537,'blocks_0_icon_row_items_2_icon','progression.svg'),(268001,41537,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(268002,41537,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(268003,41537,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(268004,41537,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(268005,41537,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(268006,41537,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(268007,41537,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(268008,41537,'blocks_0_icon_row_items_3_label','Qualification'),(268009,41537,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(268010,41537,'blocks_0_icon_row_items_3_text','Level 4 Strength & Conditioning + Diploma in Biomechanics Coaching '),(268011,41537,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(268012,41537,'blocks_0_icon_row_items','4'),(268013,41537,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(268014,41537,'blocks_5_acfe_flexible_toggle','1'),(268015,41537,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(268016,41537,'blocks_5_acfe_flexible_layout_title','Tabs'),(268017,41537,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(268018,41537,'blocks_5_options_theme','#ffffff'),(268019,41537,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(268020,41537,'blocks_5_options',''),(268021,41537,'_blocks_5_options','field_6177cfcd8140f'),(268022,41537,'blocks_5_tabs_0_tab_label','Entry requirements'),(268023,41537,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(268024,41537,'blocks_5_tabs_0_tab_content_title',''),(268025,41537,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(268026,41537,'blocks_5_tabs_0_tab_content_heading',''),(268027,41537,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(268028,41537,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(268029,41537,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(268030,41537,'blocks_5_tabs_0_tab_content_actions',''),(268031,41537,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(268032,41537,'blocks_5_tabs_0_tab_content',''),(268033,41537,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(268034,41537,'blocks_5_tabs_0_tab_image',''),(268035,41537,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(268036,41537,'blocks_5_tabs_1_tab_label','Learning format'),(268037,41537,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(268038,41537,'blocks_5_tabs_1_tab_content_title',''),(268039,41537,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(268040,41537,'blocks_5_tabs_1_tab_content_heading',''),(268041,41537,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(268042,41537,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(268043,41537,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(268044,41537,'blocks_5_tabs_1_tab_content_actions',''),(268045,41537,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(268046,41537,'blocks_5_tabs_1_tab_content',''),(268047,41537,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(268048,41537,'blocks_5_tabs_1_tab_image',''),(268049,41537,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(268050,41537,'blocks_5_tabs_2_tab_label','Qualifications included'),(268051,41537,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(268052,41537,'blocks_5_tabs_2_tab_content_title',''),(268053,41537,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(268054,41537,'blocks_5_tabs_2_tab_content_heading',''),(268055,41537,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(268056,41537,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(268057,41537,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(268058,41537,'blocks_5_tabs_2_tab_content_actions',''),(268059,41537,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(268060,41537,'blocks_5_tabs_2_tab_content',''),(268061,41537,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(268062,41537,'blocks_5_tabs_2_tab_image',''),(268063,41537,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(268064,41537,'blocks_5_tabs','3'),(268065,41537,'_blocks_5_tabs','field_6177cff281419'),(268066,41537,'blocks_4_acfe_flexible_toggle',''),(268067,41537,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(268068,41537,'blocks_4_acfe_flexible_layout_title','Template'),(268069,41537,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(268070,41537,'blocks_4_template','39207'),(268071,41537,'_blocks_4_template','field_617bdd570fe01'),(268072,41537,'blocks_6_acfe_flexible_toggle',''),(268073,41537,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(268074,41537,'blocks_6_acfe_flexible_layout_title','Icons'),(268075,41537,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(268076,41537,'blocks_6_options_theme','#f5f5f5'),(268077,41537,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(268078,41537,'blocks_6_options_format','stacked'),(268079,41537,'_blocks_6_options_format','field_64bfde9a90690'),(268080,41537,'blocks_6_options',''),(268081,41537,'_blocks_6_options','field_64bfdd9b90684'),(268082,41537,'blocks_6_row_content_title','Options available to pay for your course'),(268083,41537,'_blocks_6_row_content_title','field_64bfdd9b90687'),(268084,41537,'blocks_6_row_content_heading','Fees & Funding Options '),(268085,41537,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(268086,41537,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(268087,41537,'_blocks_6_row_content_text','field_64bfdd9b90689'),(268088,41537,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(268089,41537,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(268090,41537,'blocks_6_row_content_actions','1'),(268091,41537,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(268092,41537,'blocks_6_row_content',''),(268093,41537,'_blocks_6_row_content','field_64bfdd9b90686'),(268094,41537,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(268095,41537,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(268096,41537,'blocks_6_icon_row_items_0_label','Pay in full'),(268097,41537,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(268098,41537,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(268099,41537,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(268100,41537,'blocks_6_icon_row_items_1_icon','finance.svg'),(268101,41537,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(268102,41537,'blocks_6_icon_row_items_1_label','0% finance'),(268103,41537,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(268104,41537,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(268105,41537,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(268106,41537,'blocks_6_icon_row_items','3'),(268107,41537,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(268108,41537,'blocks_7_acfe_flexible_toggle',''),(268109,41537,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(268110,41537,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(268111,41537,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(268112,41537,'blocks_7_options_theme','#ffffff'),(268113,41537,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(268114,41537,'blocks_7_options_reverse','0'),(268115,41537,'_blocks_7_options_reverse','field_61768049bb8ac'),(268116,41537,'blocks_7_options',''),(268117,41537,'_blocks_7_options','field_617682517c334'),(268118,41537,'blocks_7_split_5050_image','41526'),(268119,41537,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(268120,41537,'blocks_7_split_5050_video',''),(268121,41537,'_blocks_7_split_5050_video','field_6239f3160848a'),(268122,41537,'blocks_7_split_5050_content_title',''),(268123,41537,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(268124,41537,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(268125,41537,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(268126,41537,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(268127,41537,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(268128,41537,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(268129,41537,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(268130,41537,'blocks_7_split_5050_content_actions','1'),(268131,41537,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(268132,41537,'blocks_7_split_5050_content',''),(268133,41537,'_blocks_7_split_5050_content','field_61767afceb8ba'),(268134,41537,'blocks_8_acfe_flexible_toggle',''),(268135,41537,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(268136,41537,'blocks_8_acfe_flexible_layout_title','Icons'),(268137,41537,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(268138,41537,'blocks_8_options_theme','#f5f5f5'),(268139,41537,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(268140,41537,'blocks_8_options_format','row'),(268141,41537,'_blocks_8_options_format','field_64bfde9a90690'),(268142,41537,'blocks_8_options',''),(268143,41537,'_blocks_8_options','field_64bfdd9b90684'),(268144,41537,'blocks_8_icon_row_items_0_icon','qualification.svg'),(268145,41537,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(268146,41537,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(268147,41537,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(268148,41537,'blocks_8_icon_row_items_0_text',''),(268149,41537,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(268150,41537,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(268151,41537,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(268152,41537,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(268153,41537,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(268154,41537,'blocks_8_icon_row_items_1_text',''),(268155,41537,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(268156,41537,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(268157,41537,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(268158,41537,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(268159,41537,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(268160,41537,'blocks_8_icon_row_items_2_text',''),(268161,41537,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(268162,41537,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(268163,41537,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(268164,41537,'blocks_8_icon_row_items_3_label','Flexible funding options'),(268165,41537,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(268166,41537,'blocks_8_icon_row_items_3_text',''),(268167,41537,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(268168,41537,'blocks_8_icon_row_items','4'),(268169,41537,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(268170,41537,'blocks_9_acfe_flexible_toggle',''),(268171,41537,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(268172,41537,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(268173,41537,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(268174,41537,'blocks_9_options_theme','#ffffff'),(268175,41537,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(268176,41537,'blocks_9_options_reverse','1'),(268177,41537,'_blocks_9_options_reverse','field_61768049bb8ac'),(268178,41537,'blocks_9_options',''),(268179,41537,'_blocks_9_options','field_617682517c334'),(268180,41537,'blocks_9_split_5050_image','39224'),(268181,41537,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(268182,41537,'blocks_9_split_5050_video',''),(268183,41537,'_blocks_9_split_5050_video','field_6239f3160848a'),(268184,41537,'blocks_9_split_5050_content_title','Locations'),(268185,41537,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(268186,41537,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(268187,41537,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(268188,41537,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(268189,41537,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(268190,41537,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(268191,41537,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(268192,41537,'blocks_9_split_5050_content_actions','1'),(268193,41537,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(268194,41537,'blocks_9_split_5050_content',''),(268195,41537,'_blocks_9_split_5050_content','field_61767afceb8ba'),(268196,41537,'blocks_1_acfe_flexible_toggle',''),(268197,41537,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(268198,41537,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(268199,41537,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(268200,41537,'blocks_1_options_theme','#ffffff'),(268201,41537,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(268202,41537,'blocks_1_options_reverse','0'),(268203,41537,'_blocks_1_options_reverse','field_61768049bb8ac'),(268204,41537,'blocks_1_options',''),(268205,41537,'_blocks_1_options','field_617682517c334'),(268206,41537,'blocks_1_split_5050_image','41506'),(268207,41537,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(268208,41537,'blocks_1_split_5050_video',''),(268209,41537,'_blocks_1_split_5050_video','field_6239f3160848a'),(268210,41537,'blocks_1_split_5050_content_title',''),(268211,41537,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(268212,41537,'blocks_1_split_5050_content_heading','Course Overview'),(268213,41537,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(268214,41537,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW194933276 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW194933276 BCX8\">Enhance your </span><span class=\"NormalTextRun SCXW194933276 BCX8\">expertise</span><span class=\"NormalTextRun SCXW194933276 BCX8\"> with a dual qualification in Biomechanics Coaching and Level 4 Strength and Conditioning. Designed for fitness professionals, coaches, and therapists, this course covers essential Intrinsic biomechanics principles alongside advanced strength and conditioning techniques, equipping you to improve performance, reduce injury risk, and provide targeted training for clients of all levels.</span></span><span class=\"EOP SCXW194933276 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(268215,41537,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(268216,41537,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(268217,41537,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(268218,41537,'blocks_1_split_5050_content_actions','1'),(268219,41537,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(268220,41537,'blocks_1_split_5050_content',''),(268221,41537,'_blocks_1_split_5050_content','field_61767afceb8ba'),(268222,41537,'blocks_2_acfe_flexible_toggle',''),(268223,41537,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(268224,41537,'blocks_2_acfe_flexible_layout_title','Form'),(268225,41537,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(268226,41537,'blocks_2_row_content_format','standard'),(268227,41537,'_blocks_2_row_content_format','field_6481ead962881'),(268228,41537,'blocks_2_row_content_title',''),(268229,41537,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(268230,41537,'blocks_2_row_content_heading','Enquire Today'),(268231,41537,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(268232,41537,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(268233,41537,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(268234,41537,'blocks_2_row_content_actions',''),(268235,41537,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(268236,41537,'blocks_2_row_content',''),(268237,41537,'_blocks_2_row_content','field_61a0f5f5b3db0'),(268238,41537,'blocks_2_row_form','40394'),(268239,41537,'_blocks_2_row_form','field_61a4ff2c0b08e'),(268240,41537,'blocks_2_row_form_button_label',''),(268241,41537,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(268242,41537,'blocks_3_acfe_flexible_toggle',''),(268243,41537,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(268244,41537,'blocks_3_acfe_flexible_layout_title','Video'),(268245,41537,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(268246,41537,'blocks_3_size','large'),(268247,41537,'_blocks_3_size','field_6487038f297c1'),(268248,41537,'blocks_3_row_content_title',''),(268249,41537,'_blocks_3_row_content_title','field_64870132a865d'),(268250,41537,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(268251,41537,'_blocks_3_row_content_heading','field_64870142a865e'),(268252,41537,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(268253,41537,'_blocks_3_row_content_text','field_64870148a865f'),(268254,41537,'blocks_3_row_content',''),(268255,41537,'_blocks_3_row_content','field_6487008ba865c'),(268256,41537,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(268257,41537,'_blocks_3_video_src','field_6193c4a98ec07'),(268258,41537,'blocks_3_video_thumbnail',''),(268259,41537,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(268260,41537,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(268261,41537,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(268262,41537,'blocks_6_icon_row_items_2_label','Deposit & balance'),(268263,41537,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(268264,41537,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(268265,41537,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(268266,41537,'blocks_10_acfe_flexible_toggle','1'),(268267,41537,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(268268,41537,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(268269,41537,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(268270,41537,'blocks_10_options_theme','#ffffff'),(268271,41537,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(268272,41537,'blocks_10_options',''),(268273,41537,'_blocks_10_options','field_617ac0b7f6c08'),(268274,41537,'blocks_10_show','selection'),(268275,41537,'_blocks_10_show','field_61a49cba9d946'),(268276,41537,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(268277,41537,'_blocks_10_courses','field_61b244781ee0a'),(268278,41537,'blocks_10_open_whats_included','1'),(268279,41537,'_blocks_10_open_whats_included','field_66ebfd679450c'),(268280,41537,'blocks_10_open_key_information','0'),(268281,41537,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(268282,41537,'blocks_10_open',''),(268283,41537,'_blocks_10_open','field_66ebfd009450b'),(268284,41537,'blocks_11_acfe_flexible_toggle',''),(268285,41537,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(268286,41537,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(268287,41537,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(268288,41537,'blocks_11_options_theme','#ffffff'),(268289,41537,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(268290,41537,'blocks_11_options_reverse','0'),(268291,41537,'_blocks_11_options_reverse','field_61768049bb8ac'),(268292,41537,'blocks_11_options',''),(268293,41537,'_blocks_11_options','field_617682517c334'),(268294,41537,'blocks_11_split_5050_image','41504'),(268295,41537,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(268296,41537,'blocks_11_split_5050_video',''),(268297,41537,'_blocks_11_split_5050_video','field_6239f3160848a'),(268298,41537,'blocks_11_split_5050_content_title','Optimise Performance '),(268299,41537,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(268300,41537,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(268301,41537,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(268302,41537,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW125057262 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW125057262 BCX8\">Our unique programme in Biomechanics Coaching and Level 4 Strength and Conditioning offers advanced techniques that go beyond traditional training. Gain skills in biomechanics to </span><span class=\"NormalTextRun SCXW125057262 BCX8\">identify</span><span class=\"NormalTextRun SCXW125057262 BCX8\"> movement patterns, assess functional performance, and optimise training plans. Ideal for trainers and coaches, this qualification enables you to deliver scientifically backed, targeted conditioning to improve client results.</span></span><span class=\"EOP SCXW125057262 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW39222847 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW39222847 BCX8\">As a qualified level 4 </span><span class=\"NormalTextRun SCXW39222847 BCX8\">Strength &amp; Conditioning</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> expert</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> you will be able to: </span></span> </strong>\r\n<ul>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">The role of a strength and conditioning coach as part of an athlete’s support team.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Methods of carrying out performance-related needs analysis, measurements and assessments.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Strategies to analyse and evaluate assessment findings to be able to develop and </span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">agree short, medium, and long-term performance goals.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Planning, delivering and evaluating periodised, performance-related strength and conditioning programmes.</span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-ccp-props=\"{}\"> </span></li>\r\n</ul>'),(268303,41537,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(268304,41537,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(268305,41537,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(268306,41537,'blocks_11_split_5050_content_actions','1'),(268307,41537,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(268308,41537,'blocks_11_split_5050_content',''),(268309,41537,'_blocks_11_split_5050_content','field_61767afceb8ba'),(268310,41537,'blocks_12_acfe_flexible_toggle',''),(268311,41537,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(268312,41537,'blocks_12_acfe_flexible_layout_title','Template'),(268313,41537,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(268314,41537,'blocks_12_template','40987'),(268315,41537,'_blocks_12_template','field_617bdd570fe01'),(268316,41537,'blocks_13_acfe_flexible_toggle',''),(268317,41537,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(268318,41537,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(268319,41537,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(268320,41537,'blocks_13_options_theme','#f5f5f5'),(268321,41537,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(268322,41537,'blocks_13_options_state','0'),(268323,41537,'_blocks_13_options_state','field_6239fcb7508c5'),(268324,41537,'blocks_13_options',''),(268325,41537,'_blocks_13_options','field_6177e2991ac44'),(268326,41537,'blocks_13_content_title',''),(268327,41537,'_blocks_13_content_title','field_64d237e8bb1e2'),(268328,41537,'blocks_13_content_heading','FAQ\'s'),(268329,41537,'_blocks_13_content_heading','field_64d237e8bb1e3'),(268330,41537,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(268331,41537,'_blocks_13_content_text','field_64d237e8bb1e4'),(268332,41537,'blocks_13_content_actions',''),(268333,41537,'_blocks_13_content_actions','field_64d237e8bb1e5'),(268334,41537,'blocks_13_content_align','left'),(268335,41537,'_blocks_13_content_align','field_64d2443e6b6aa'),(268336,41537,'blocks_13_content',''),(268337,41537,'_blocks_13_content','field_64d237e8bb1e1'),(268338,41537,'blocks_13_accordion_content','faqs'),(268339,41537,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(268340,41537,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41534\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(268341,41537,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(268342,41537,'blocks_13_actions',''),(268343,41537,'_blocks_13_actions','field_61a746a817f7a'),(268344,41538,'_wp_attached_file','2024/11/FutureFitRebrand-Images-LV3PT-1-scaled.jpg'),(268345,41538,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:50:\"2024/11/FutureFitRebrand-Images-LV3PT-1-scaled.jpg\";s:8:\"filesize\";i:571264;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"FutureFitRebrand-Images-LV3PT-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111890;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157172;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"FutureFitRebrand-Images-LV3PT-1-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55671;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"FutureFitRebrand-Images-LV3PT-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94414;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-1-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:223932;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-1-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:366683;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:43:\"FutureFitRebrand-Images-LV3PT-1-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61143;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:43:\"FutureFitRebrand-Images-LV3PT-1-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136937;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-1-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209371;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:43:\"FutureFitRebrand-Images-LV3PT-1-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55617;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:43:\"FutureFitRebrand-Images-LV3PT-1-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111890;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-1-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:157172;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:43:\"FutureFitRebrand-Images-LV3PT-1-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52263;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:43:\"FutureFitRebrand-Images-LV3PT-1-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105669;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-1-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158047;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:43:\"FutureFitRebrand-Images-LV3PT-1-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57063;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:43:\"FutureFitRebrand-Images-LV3PT-1-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116989;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-1-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167765;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:43:\"FutureFitRebrand-Images-LV3PT-1-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52954;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:43:\"FutureFitRebrand-Images-LV3PT-1-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102860;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-1-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142754;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1633769536\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:35:\"FutureFitRebrand-Images-LV3PT-1.jpg\";}'),(268346,41539,'_wp_attached_file','2024/11/FutureFitRebrand-Images-LV3PT-38-scaled.jpg'),(268347,41539,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:51:\"2024/11/FutureFitRebrand-Images-LV3PT-38-scaled.jpg\";s:8:\"filesize\";i:473593;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-38-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102411;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-38-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141194;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-38-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52655;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-38-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87536;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-38-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:196208;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-38-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:309831;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-38-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61096;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-38-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134053;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-38-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198379;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-38-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52624;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-38-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102411;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-38-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141194;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-38-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55198;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-38-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:114115;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-38-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165191;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-38-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54740;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-38-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:110075;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-38-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154837;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-38-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49854;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:44:\"FutureFitRebrand-Images-LV3PT-38-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94168;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-38-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128403;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1633771845\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:36:\"FutureFitRebrand-Images-LV3PT-38.jpg\";}'),(268348,41540,'_wp_attached_file','2024/11/FutureFitRebrand-Images-LV3PT-101.jpg'),(268349,41540,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:2500;s:4:\"file\";s:45:\"2024/11/FutureFitRebrand-Images-LV3PT-101.jpg\";s:8:\"filesize\";i:2902815;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-101-900x1125.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163028;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"FutureFitRebrand-Images-LV3PT-101-1200x1500.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:244774;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-101-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71225;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-101-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133744;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"FutureFitRebrand-Images-LV3PT-101-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:252951;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"FutureFitRebrand-Images-LV3PT-101-1638x2048.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:412026;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-101-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65397;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-101-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143556;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:47:\"FutureFitRebrand-Images-LV3PT-101-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:211430;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-101-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55699;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-101-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:108637;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-101-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155119;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-101-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59379;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-101-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121022;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-101-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:171639;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-101-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58298;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-101-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118240;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-101-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:170506;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-101-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52246;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-101-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97190;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-101-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136633;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1633779951\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"67\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(268350,41541,'_wp_attached_file','2024/11/FutureFitRebrand-Images-LV3PT-103-scaled.jpg'),(268351,41541,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:52:\"2024/11/FutureFitRebrand-Images-LV3PT-103-scaled.jpg\";s:8:\"filesize\";i:433225;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-103-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87923;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-103-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123085;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-103-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45611;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-103-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74753;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"FutureFitRebrand-Images-LV3PT-103-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174368;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"FutureFitRebrand-Images-LV3PT-103-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:282181;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-103-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49486;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-103-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107752;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:47:\"FutureFitRebrand-Images-LV3PT-103-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163020;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-103-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45528;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-103-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:87923;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-103-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123085;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-103-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43786;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-103-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86113;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-103-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126842;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-103-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46817;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-103-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93253;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-103-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:133257;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-103-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43139;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-103-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80419;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-103-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111188;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1633780840\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"58\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:37:\"FutureFitRebrand-Images-LV3PT-103.jpg\";}'),(268352,41542,'_wp_attached_file','2024/11/FutureFitRebrand-Images-LV3PT-105-scaled.jpg'),(268353,41542,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:52:\"2024/11/FutureFitRebrand-Images-LV3PT-105-scaled.jpg\";s:8:\"filesize\";i:544388;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-105-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119024;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-105-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162800;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-105-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63801;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-105-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102098;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"FutureFitRebrand-Images-LV3PT-105-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:225814;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"FutureFitRebrand-Images-LV3PT-105-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:358063;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-105-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73125;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-105-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154682;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:47:\"FutureFitRebrand-Images-LV3PT-105-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:226975;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-105-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63655;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-105-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119024;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-105-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162800;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-105-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67793;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-105-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135795;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-105-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194222;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-105-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65735;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-105-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125853;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-105-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175100;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-105-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60097;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-105-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106820;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-105-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:143516;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1633781624\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:37:\"FutureFitRebrand-Images-LV3PT-105.jpg\";}'),(268354,41543,'_wp_attached_file','2024/11/FutureFitRebrand-Images-LV3PT-116-scaled.jpg'),(268355,41543,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1706;s:4:\"file\";s:52:\"2024/11/FutureFitRebrand-Images-LV3PT-116-scaled.jpg\";s:8:\"filesize\";i:567368;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-116-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124459;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-116-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177942;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-116-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56917;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-116-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:103532;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:47:\"FutureFitRebrand-Images-LV3PT-116-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:251011;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:47:\"FutureFitRebrand-Images-LV3PT-116-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:389957;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-116-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66977;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-116-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159079;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:47:\"FutureFitRebrand-Images-LV3PT-116-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:233504;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-116-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56864;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-116-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:124459;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-116-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177942;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-116-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59684;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-116-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:131333;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-116-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:188566;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-116-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59869;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-116-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135077;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-116-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:195052;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-116-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54076;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:45:\"FutureFitRebrand-Images-LV3PT-116-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112626;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:46:\"FutureFitRebrand-Images-LV3PT-116-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:158484;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:13:\"James Grindel\";s:6:\"camera\";s:8:\"ILCE-7M3\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1633783637\";s:9:\"copyright\";s:20:\"www.jamesgrindel.com\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:37:\"FutureFitRebrand-Images-LV3PT-116.jpg\";}'),(268356,41544,'hide_hero','0'),(268357,41544,'_hide_hero','field_66a2380fcda39'),(268358,41544,'hero_title','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching'),(268359,41544,'_hero_title','field_617571fe285e8'),(268360,41544,'hero_text','Master Strength and Conditioning with Intrinsic biomechanics expertise for optimal client performance.'),(268361,41544,'_hero_text','field_6175723c285e9'),(268362,41544,'hero_actions','1'),(268363,41544,'_hero_actions','field_61757270285ea'),(268364,41544,'hero_style','default'),(268365,41544,'_hero_style','field_62051d9dc5324'),(268366,41544,'_thumbnail_id','41538'),(268367,41544,'__thumbnail_id','field_617570855ddaf'),(268368,41544,'hero_image_pos_x','right'),(268369,41544,'_hero_image_pos_x','field_62ec3d05390bb'),(268370,41544,'hero_image_pos_y','top'),(268371,41544,'_hero_image_pos_y','field_62ec3d05390bc'),(268372,41544,'hero_image_pos',''),(268373,41544,'_hero_image_pos','field_62ec3d05390ba'),(268374,41544,'fft_hide_from_listings','0'),(268375,41544,'_fft_hide_from_listings','field_61f1320446ab2'),(268376,41544,'fft_page_format','default'),(268377,41544,'_fft_page_format','field_61ae213f1f218'),(268378,41544,'fft_hide_nav','0'),(268379,41544,'_fft_hide_nav','field_635bd5e43527c'),(268380,41544,'fft_hide_header_call_to_action','0'),(268381,41544,'_fft_hide_header_call_to_action','field_635bd6723527d'),(268382,41544,'fft_page_sitemap','0'),(268383,41544,'_fft_page_sitemap','field_61af9b34e8181'),(268384,41544,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(268385,41544,'_blocks','field_6176696113096'),(268386,41544,'course_label_text',''),(268387,41544,'_course_label_text','field_61e17babf71fa'),(268388,41544,'course_label',''),(268389,41544,'_course_label','field_61e12f92749a7'),(268390,41544,'course_description',''),(268391,41544,'_course_description','field_617ac5788e5e1'),(268392,41544,'course_key_info',''),(268393,41544,'_course_key_info','field_617ac6ad8e5e2'),(268394,41544,'course_included',''),(268395,41544,'_course_included','field_617ac6f08e5e4'),(268396,41544,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41520-4\";s:6:\"target\";s:0:\"\";}'),(268397,41544,'_hero_actions_0_button','field_61757281285eb'),(268398,41544,'blocks_0_acfe_flexible_toggle',''),(268399,41544,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(268400,41544,'blocks_0_acfe_flexible_layout_title','Icons'),(268401,41544,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(268402,41544,'blocks_0_options_theme','#b61234'),(268403,41544,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(268404,41544,'blocks_0_options_format','row'),(268405,41544,'_blocks_0_options_format','field_64bfde9a90690'),(268406,41544,'blocks_0_options',''),(268407,41544,'_blocks_0_options','field_64bfdd9b90684'),(268408,41544,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(268409,41544,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(268410,41544,'blocks_0_icon_row_items_0_label','Accreditation'),(268411,41544,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(268412,41544,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(268413,41544,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(268414,41544,'blocks_0_icon_row_items_1_icon','finance.svg'),(268415,41544,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(268416,41544,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(268417,41544,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(268418,41544,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(268419,41544,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(268420,41544,'blocks_0_icon_row_items_2_icon','progression.svg'),(268421,41544,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(268422,41544,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(268423,41544,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(268424,41544,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(268425,41544,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(268426,41544,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(268427,41544,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(268428,41544,'blocks_0_icon_row_items_3_label','Qualification'),(268429,41544,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(268430,41544,'blocks_0_icon_row_items_3_text','Level 4 Strength & Conditioning + Diploma in Biomechanics Coaching '),(268431,41544,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(268432,41544,'blocks_0_icon_row_items','4'),(268433,41544,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(268434,41544,'blocks_5_acfe_flexible_toggle','1'),(268435,41544,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(268436,41544,'blocks_5_acfe_flexible_layout_title','Tabs'),(268437,41544,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(268438,41544,'blocks_5_options_theme','#ffffff'),(268439,41544,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(268440,41544,'blocks_5_options',''),(268441,41544,'_blocks_5_options','field_6177cfcd8140f'),(268442,41544,'blocks_5_tabs_0_tab_label','Entry requirements'),(268443,41544,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(268444,41544,'blocks_5_tabs_0_tab_content_title',''),(268445,41544,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(268446,41544,'blocks_5_tabs_0_tab_content_heading',''),(268447,41544,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(268448,41544,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(268449,41544,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(268450,41544,'blocks_5_tabs_0_tab_content_actions',''),(268451,41544,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(268452,41544,'blocks_5_tabs_0_tab_content',''),(268453,41544,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(268454,41544,'blocks_5_tabs_0_tab_image',''),(268455,41544,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(268456,41544,'blocks_5_tabs_1_tab_label','Learning format'),(268457,41544,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(268458,41544,'blocks_5_tabs_1_tab_content_title',''),(268459,41544,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(268460,41544,'blocks_5_tabs_1_tab_content_heading',''),(268461,41544,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(268462,41544,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(268463,41544,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(268464,41544,'blocks_5_tabs_1_tab_content_actions',''),(268465,41544,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(268466,41544,'blocks_5_tabs_1_tab_content',''),(268467,41544,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(268468,41544,'blocks_5_tabs_1_tab_image',''),(268469,41544,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(268470,41544,'blocks_5_tabs_2_tab_label','Qualifications included'),(268471,41544,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(268472,41544,'blocks_5_tabs_2_tab_content_title',''),(268473,41544,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(268474,41544,'blocks_5_tabs_2_tab_content_heading',''),(268475,41544,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(268476,41544,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(268477,41544,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(268478,41544,'blocks_5_tabs_2_tab_content_actions',''),(268479,41544,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(268480,41544,'blocks_5_tabs_2_tab_content',''),(268481,41544,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(268482,41544,'blocks_5_tabs_2_tab_image',''),(268483,41544,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(268484,41544,'blocks_5_tabs','3'),(268485,41544,'_blocks_5_tabs','field_6177cff281419'),(268486,41544,'blocks_4_acfe_flexible_toggle',''),(268487,41544,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(268488,41544,'blocks_4_acfe_flexible_layout_title','Template'),(268489,41544,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(268490,41544,'blocks_4_template','39207'),(268491,41544,'_blocks_4_template','field_617bdd570fe01'),(268492,41544,'blocks_6_acfe_flexible_toggle',''),(268493,41544,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(268494,41544,'blocks_6_acfe_flexible_layout_title','Icons'),(268495,41544,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(268496,41544,'blocks_6_options_theme','#f5f5f5'),(268497,41544,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(268498,41544,'blocks_6_options_format','stacked'),(268499,41544,'_blocks_6_options_format','field_64bfde9a90690'),(268500,41544,'blocks_6_options',''),(268501,41544,'_blocks_6_options','field_64bfdd9b90684'),(268502,41544,'blocks_6_row_content_title','Options available to pay for your course'),(268503,41544,'_blocks_6_row_content_title','field_64bfdd9b90687'),(268504,41544,'blocks_6_row_content_heading','Fees & Funding Options '),(268505,41544,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(268506,41544,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(268507,41544,'_blocks_6_row_content_text','field_64bfdd9b90689'),(268508,41544,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(268509,41544,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(268510,41544,'blocks_6_row_content_actions','1'),(268511,41544,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(268512,41544,'blocks_6_row_content',''),(268513,41544,'_blocks_6_row_content','field_64bfdd9b90686'),(268514,41544,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(268515,41544,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(268516,41544,'blocks_6_icon_row_items_0_label','Pay in full'),(268517,41544,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(268518,41544,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(268519,41544,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(268520,41544,'blocks_6_icon_row_items_1_icon','finance.svg'),(268521,41544,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(268522,41544,'blocks_6_icon_row_items_1_label','0% finance'),(268523,41544,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(268524,41544,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(268525,41544,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(268526,41544,'blocks_6_icon_row_items','3'),(268527,41544,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(268528,41544,'blocks_7_acfe_flexible_toggle',''),(268529,41544,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(268530,41544,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(268531,41544,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(268532,41544,'blocks_7_options_theme','#ffffff'),(268533,41544,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(268534,41544,'blocks_7_options_reverse','0'),(268535,41544,'_blocks_7_options_reverse','field_61768049bb8ac'),(268536,41544,'blocks_7_options',''),(268537,41544,'_blocks_7_options','field_617682517c334'),(268538,41544,'blocks_7_split_5050_image','41543'),(268539,41544,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(268540,41544,'blocks_7_split_5050_video',''),(268541,41544,'_blocks_7_split_5050_video','field_6239f3160848a'),(268542,41544,'blocks_7_split_5050_content_title',''),(268543,41544,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(268544,41544,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(268545,41544,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(268546,41544,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(268547,41544,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(268548,41544,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(268549,41544,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(268550,41544,'blocks_7_split_5050_content_actions','1'),(268551,41544,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(268552,41544,'blocks_7_split_5050_content',''),(268553,41544,'_blocks_7_split_5050_content','field_61767afceb8ba'),(268554,41544,'blocks_8_acfe_flexible_toggle',''),(268555,41544,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(268556,41544,'blocks_8_acfe_flexible_layout_title','Icons'),(268557,41544,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(268558,41544,'blocks_8_options_theme','#f5f5f5'),(268559,41544,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(268560,41544,'blocks_8_options_format','row'),(268561,41544,'_blocks_8_options_format','field_64bfde9a90690'),(268562,41544,'blocks_8_options',''),(268563,41544,'_blocks_8_options','field_64bfdd9b90684'),(268564,41544,'blocks_8_icon_row_items_0_icon','qualification.svg'),(268565,41544,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(268566,41544,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(268567,41544,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(268568,41544,'blocks_8_icon_row_items_0_text',''),(268569,41544,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(268570,41544,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(268571,41544,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(268572,41544,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(268573,41544,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(268574,41544,'blocks_8_icon_row_items_1_text',''),(268575,41544,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(268576,41544,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(268577,41544,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(268578,41544,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(268579,41544,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(268580,41544,'blocks_8_icon_row_items_2_text',''),(268581,41544,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(268582,41544,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(268583,41544,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(268584,41544,'blocks_8_icon_row_items_3_label','Flexible funding options'),(268585,41544,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(268586,41544,'blocks_8_icon_row_items_3_text',''),(268587,41544,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(268588,41544,'blocks_8_icon_row_items','4'),(268589,41544,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(268590,41544,'blocks_9_acfe_flexible_toggle',''),(268591,41544,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(268592,41544,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(268593,41544,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(268594,41544,'blocks_9_options_theme','#ffffff'),(268595,41544,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(268596,41544,'blocks_9_options_reverse','1'),(268597,41544,'_blocks_9_options_reverse','field_61768049bb8ac'),(268598,41544,'blocks_9_options',''),(268599,41544,'_blocks_9_options','field_617682517c334'),(268600,41544,'blocks_9_split_5050_image','39224'),(268601,41544,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(268602,41544,'blocks_9_split_5050_video',''),(268603,41544,'_blocks_9_split_5050_video','field_6239f3160848a'),(268604,41544,'blocks_9_split_5050_content_title','Locations'),(268605,41544,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(268606,41544,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(268607,41544,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(268608,41544,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(268609,41544,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(268610,41544,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(268611,41544,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(268612,41544,'blocks_9_split_5050_content_actions','1'),(268613,41544,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(268614,41544,'blocks_9_split_5050_content',''),(268615,41544,'_blocks_9_split_5050_content','field_61767afceb8ba'),(268616,41544,'blocks_1_acfe_flexible_toggle',''),(268617,41544,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(268618,41544,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(268619,41544,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(268620,41544,'blocks_1_options_theme','#ffffff'),(268621,41544,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(268622,41544,'blocks_1_options_reverse','0'),(268623,41544,'_blocks_1_options_reverse','field_61768049bb8ac'),(268624,41544,'blocks_1_options',''),(268625,41544,'_blocks_1_options','field_617682517c334'),(268626,41544,'blocks_1_split_5050_image','41498'),(268627,41544,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(268628,41544,'blocks_1_split_5050_video',''),(268629,41544,'_blocks_1_split_5050_video','field_6239f3160848a'),(268630,41544,'blocks_1_split_5050_content_title',''),(268631,41544,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(268632,41544,'blocks_1_split_5050_content_heading','Course Overview'),(268633,41544,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(268634,41544,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW194933276 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW194933276 BCX8\">Enhance your </span><span class=\"NormalTextRun SCXW194933276 BCX8\">expertise</span><span class=\"NormalTextRun SCXW194933276 BCX8\"> with a dual qualification in Biomechanics Coaching and Level 4 Strength and Conditioning. Designed for fitness professionals, coaches, and therapists, this course covers essential Intrinsic biomechanics principles alongside advanced strength and conditioning techniques, equipping you to improve performance, reduce injury risk, and provide targeted training for clients of all levels.</span></span><span class=\"EOP SCXW194933276 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(268635,41544,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(268636,41544,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(268637,41544,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(268638,41544,'blocks_1_split_5050_content_actions','1'),(268639,41544,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(268640,41544,'blocks_1_split_5050_content',''),(268641,41544,'_blocks_1_split_5050_content','field_61767afceb8ba'),(268642,41544,'blocks_2_acfe_flexible_toggle',''),(268643,41544,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(268644,41544,'blocks_2_acfe_flexible_layout_title','Form'),(268645,41544,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(268646,41544,'blocks_2_row_content_format','standard'),(268647,41544,'_blocks_2_row_content_format','field_6481ead962881'),(268648,41544,'blocks_2_row_content_title',''),(268649,41544,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(268650,41544,'blocks_2_row_content_heading','Enquire Today'),(268651,41544,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(268652,41544,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(268653,41544,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(268654,41544,'blocks_2_row_content_actions',''),(268655,41544,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(268656,41544,'blocks_2_row_content',''),(268657,41544,'_blocks_2_row_content','field_61a0f5f5b3db0'),(268658,41544,'blocks_2_row_form','40394'),(268659,41544,'_blocks_2_row_form','field_61a4ff2c0b08e'),(268660,41544,'blocks_2_row_form_button_label',''),(268661,41544,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(268662,41544,'blocks_3_acfe_flexible_toggle',''),(268663,41544,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(268664,41544,'blocks_3_acfe_flexible_layout_title','Video'),(268665,41544,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(268666,41544,'blocks_3_size','large'),(268667,41544,'_blocks_3_size','field_6487038f297c1'),(268668,41544,'blocks_3_row_content_title',''),(268669,41544,'_blocks_3_row_content_title','field_64870132a865d'),(268670,41544,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(268671,41544,'_blocks_3_row_content_heading','field_64870142a865e'),(268672,41544,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(268673,41544,'_blocks_3_row_content_text','field_64870148a865f'),(268674,41544,'blocks_3_row_content',''),(268675,41544,'_blocks_3_row_content','field_6487008ba865c'),(268676,41544,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(268677,41544,'_blocks_3_video_src','field_6193c4a98ec07'),(268678,41544,'blocks_3_video_thumbnail',''),(268679,41544,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(268680,41544,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(268681,41544,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(268682,41544,'blocks_6_icon_row_items_2_label','Deposit & balance'),(268683,41544,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(268684,41544,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(268685,41544,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(268686,41544,'blocks_10_acfe_flexible_toggle','1'),(268687,41544,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(268688,41544,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(268689,41544,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(268690,41544,'blocks_10_options_theme','#ffffff'),(268691,41544,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(268692,41544,'blocks_10_options',''),(268693,41544,'_blocks_10_options','field_617ac0b7f6c08'),(268694,41544,'blocks_10_show','selection'),(268695,41544,'_blocks_10_show','field_61a49cba9d946'),(268696,41544,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(268697,41544,'_blocks_10_courses','field_61b244781ee0a'),(268698,41544,'blocks_10_open_whats_included','1'),(268699,41544,'_blocks_10_open_whats_included','field_66ebfd679450c'),(268700,41544,'blocks_10_open_key_information','0'),(268701,41544,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(268702,41544,'blocks_10_open',''),(268703,41544,'_blocks_10_open','field_66ebfd009450b'),(268704,41544,'blocks_11_acfe_flexible_toggle',''),(268705,41544,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(268706,41544,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(268707,41544,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(268708,41544,'blocks_11_options_theme','#ffffff'),(268709,41544,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(268710,41544,'blocks_11_options_reverse','0'),(268711,41544,'_blocks_11_options_reverse','field_61768049bb8ac'),(268712,41544,'blocks_11_options',''),(268713,41544,'_blocks_11_options','field_617682517c334'),(268714,41544,'blocks_11_split_5050_image','41493'),(268715,41544,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(268716,41544,'blocks_11_split_5050_video',''),(268717,41544,'_blocks_11_split_5050_video','field_6239f3160848a'),(268718,41544,'blocks_11_split_5050_content_title','Optimise Performance '),(268719,41544,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(268720,41544,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(268721,41544,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(268722,41544,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW125057262 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW125057262 BCX8\">Our unique programme in Biomechanics Coaching and Level 4 Strength and Conditioning offers advanced techniques that go beyond traditional training. Gain skills in biomechanics to </span><span class=\"NormalTextRun SCXW125057262 BCX8\">identify</span><span class=\"NormalTextRun SCXW125057262 BCX8\"> movement patterns, assess functional performance, and optimise training plans. Ideal for trainers and coaches, this qualification enables you to deliver scientifically backed, targeted conditioning to improve client results.</span></span><span class=\"EOP SCXW125057262 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW39222847 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW39222847 BCX8\">As a qualified level 4 </span><span class=\"NormalTextRun SCXW39222847 BCX8\">Strength &amp; Conditioning</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> expert</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> you will be able to: </span></span> </strong>\r\n<ul>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">The role of a strength and conditioning coach as part of an athlete’s support team.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Methods of carrying out performance-related needs analysis, measurements and assessments.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Strategies to analyse and evaluate assessment findings to be able to develop and </span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">agree short, medium, and long-term performance goals.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Planning, delivering and evaluating periodised, performance-related strength and conditioning programmes.</span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-ccp-props=\"{}\"> </span></li>\r\n</ul>'),(268723,41544,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(268724,41544,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(268725,41544,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(268726,41544,'blocks_11_split_5050_content_actions','1'),(268727,41544,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(268728,41544,'blocks_11_split_5050_content',''),(268729,41544,'_blocks_11_split_5050_content','field_61767afceb8ba'),(268730,41544,'blocks_12_acfe_flexible_toggle',''),(268731,41544,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(268732,41544,'blocks_12_acfe_flexible_layout_title','Template'),(268733,41544,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(268734,41544,'blocks_12_template','40987'),(268735,41544,'_blocks_12_template','field_617bdd570fe01'),(268736,41544,'blocks_13_acfe_flexible_toggle',''),(268737,41544,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(268738,41544,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(268739,41544,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(268740,41544,'blocks_13_options_theme','#f5f5f5'),(268741,41544,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(268742,41544,'blocks_13_options_state','0'),(268743,41544,'_blocks_13_options_state','field_6239fcb7508c5'),(268744,41544,'blocks_13_options',''),(268745,41544,'_blocks_13_options','field_6177e2991ac44'),(268746,41544,'blocks_13_content_title',''),(268747,41544,'_blocks_13_content_title','field_64d237e8bb1e2'),(268748,41544,'blocks_13_content_heading','FAQ\'s'),(268749,41544,'_blocks_13_content_heading','field_64d237e8bb1e3'),(268750,41544,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(268751,41544,'_blocks_13_content_text','field_64d237e8bb1e4'),(268752,41544,'blocks_13_content_actions',''),(268753,41544,'_blocks_13_content_actions','field_64d237e8bb1e5'),(268754,41544,'blocks_13_content_align','left'),(268755,41544,'_blocks_13_content_align','field_64d2443e6b6aa'),(268756,41544,'blocks_13_content',''),(268757,41544,'_blocks_13_content','field_64d237e8bb1e1'),(268758,41544,'blocks_13_accordion_content','faqs'),(268759,41544,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(268760,41544,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41534\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(268761,41544,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(268762,41544,'blocks_13_actions',''),(268763,41544,'_blocks_13_actions','field_61a746a817f7a'),(268764,41545,'hide_hero','0'),(268765,41545,'_hide_hero','field_66a2380fcda39'),(268766,41545,'hero_title','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching'),(268767,41545,'_hero_title','field_617571fe285e8'),(268768,41545,'hero_text','Master Strength and Conditioning with Intrinsic biomechanics expertise for optimal client performance.'),(268769,41545,'_hero_text','field_6175723c285e9'),(268770,41545,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41520-4\";s:6:\"target\";s:0:\"\";}'),(268771,41545,'_hero_actions_0_button','field_61757281285eb'),(268772,41545,'hero_actions','1'),(268773,41545,'_hero_actions','field_61757270285ea'),(268774,41545,'hero_style','default'),(268775,41545,'_hero_style','field_62051d9dc5324'),(268776,41545,'_thumbnail_id','41538'),(268777,41545,'__thumbnail_id','field_617570855ddaf'),(268778,41545,'hero_image_pos_x','right'),(268779,41545,'_hero_image_pos_x','field_62ec3d05390bb'),(268780,41545,'hero_image_pos_y','top'),(268781,41545,'_hero_image_pos_y','field_62ec3d05390bc'),(268782,41545,'hero_image_pos',''),(268783,41545,'_hero_image_pos','field_62ec3d05390ba'),(268784,41545,'fft_hide_from_listings','0'),(268785,41545,'_fft_hide_from_listings','field_61f1320446ab2'),(268786,41545,'fft_page_format','default'),(268787,41545,'_fft_page_format','field_61ae213f1f218'),(268788,41545,'fft_hide_nav','0'),(268789,41545,'_fft_hide_nav','field_635bd5e43527c'),(268790,41545,'fft_hide_header_call_to_action','0'),(268791,41545,'_fft_hide_header_call_to_action','field_635bd6723527d'),(268792,41545,'fft_page_sitemap','0'),(268793,41545,'_fft_page_sitemap','field_61af9b34e8181'),(268794,41545,'blocks_0_acfe_flexible_toggle',''),(268795,41545,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(268796,41545,'blocks_0_acfe_flexible_layout_title','Icons'),(268797,41545,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(268798,41545,'blocks_0_options_theme','#b61234'),(268799,41545,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(268800,41545,'blocks_0_options_format','row'),(268801,41545,'_blocks_0_options_format','field_64bfde9a90690'),(268802,41545,'blocks_0_options',''),(268803,41545,'_blocks_0_options','field_64bfdd9b90684'),(268804,41545,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(268805,41545,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(268806,41545,'blocks_0_icon_row_items_0_label','Accreditation'),(268807,41545,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(268808,41545,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(268809,41545,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(268810,41545,'blocks_0_icon_row_items_1_icon','finance.svg'),(268811,41545,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(268812,41545,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(268813,41545,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(268814,41545,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(268815,41545,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(268816,41545,'blocks_0_icon_row_items_2_icon','progression.svg'),(268817,41545,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(268818,41545,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(268819,41545,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(268820,41545,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(268821,41545,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(268822,41545,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(268823,41545,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(268824,41545,'blocks_0_icon_row_items_3_label','Qualification'),(268825,41545,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(268826,41545,'blocks_0_icon_row_items_3_text','Level 4 Strength & Conditioning + Diploma in Biomechanics Coaching '),(268827,41545,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(268828,41545,'blocks_0_icon_row_items','4'),(268829,41545,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(268830,41545,'blocks_1_acfe_flexible_toggle',''),(268831,41545,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(268832,41545,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(268833,41545,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(268834,41545,'blocks_1_options_theme','#ffffff'),(268835,41545,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(268836,41545,'blocks_1_options_reverse','0'),(268837,41545,'_blocks_1_options_reverse','field_61768049bb8ac'),(268838,41545,'blocks_1_options',''),(268839,41545,'_blocks_1_options','field_617682517c334'),(268840,41545,'blocks_1_split_5050_image','41498'),(268841,41545,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(268842,41545,'blocks_1_split_5050_video',''),(268843,41545,'_blocks_1_split_5050_video','field_6239f3160848a'),(268844,41545,'blocks_1_split_5050_content_title',''),(268845,41545,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(268846,41545,'blocks_1_split_5050_content_heading','Course Overview'),(268847,41545,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(268848,41545,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW194933276 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW194933276 BCX8\">Enhance your </span><span class=\"NormalTextRun SCXW194933276 BCX8\">expertise</span><span class=\"NormalTextRun SCXW194933276 BCX8\"> with a dual qualification in Biomechanics Coaching and Level 4 Strength and Conditioning. Designed for fitness professionals, coaches, and therapists, this course covers essential Intrinsic biomechanics principles alongside advanced strength and conditioning techniques, equipping you to improve performance, reduce injury risk, and provide targeted training for clients of all levels.</span></span><span class=\"EOP SCXW194933276 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(268849,41545,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(268850,41545,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(268851,41545,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(268852,41545,'blocks_1_split_5050_content_actions','1'),(268853,41545,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(268854,41545,'blocks_1_split_5050_content',''),(268855,41545,'_blocks_1_split_5050_content','field_61767afceb8ba'),(268856,41545,'blocks_2_acfe_flexible_toggle',''),(268857,41545,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(268858,41545,'blocks_2_acfe_flexible_layout_title','Form'),(268859,41545,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(268860,41545,'blocks_2_row_content_format','standard'),(268861,41545,'_blocks_2_row_content_format','field_6481ead962881'),(268862,41545,'blocks_2_row_content_title',''),(268863,41545,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(268864,41545,'blocks_2_row_content_heading','Enquire Today'),(268865,41545,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(268866,41545,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(268867,41545,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(268868,41545,'blocks_2_row_content_actions',''),(268869,41545,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(268870,41545,'blocks_2_row_content',''),(268871,41545,'_blocks_2_row_content','field_61a0f5f5b3db0'),(268872,41545,'blocks_2_row_form','40394'),(268873,41545,'_blocks_2_row_form','field_61a4ff2c0b08e'),(268874,41545,'blocks_2_row_form_button_label',''),(268875,41545,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(268876,41545,'blocks_3_acfe_flexible_toggle',''),(268877,41545,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(268878,41545,'blocks_3_acfe_flexible_layout_title','Video'),(268879,41545,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(268880,41545,'blocks_3_size','large'),(268881,41545,'_blocks_3_size','field_6487038f297c1'),(268882,41545,'blocks_3_row_content_title',''),(268883,41545,'_blocks_3_row_content_title','field_64870132a865d'),(268884,41545,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(268885,41545,'_blocks_3_row_content_heading','field_64870142a865e'),(268886,41545,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(268887,41545,'_blocks_3_row_content_text','field_64870148a865f'),(268888,41545,'blocks_3_row_content',''),(268889,41545,'_blocks_3_row_content','field_6487008ba865c'),(268890,41545,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(268891,41545,'_blocks_3_video_src','field_6193c4a98ec07'),(268892,41545,'blocks_3_video_thumbnail',''),(268893,41545,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(268894,41545,'blocks_4_acfe_flexible_toggle',''),(268895,41545,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(268896,41545,'blocks_4_acfe_flexible_layout_title','Template'),(268897,41545,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(268898,41545,'blocks_4_template','39207'),(268899,41545,'_blocks_4_template','field_617bdd570fe01'),(268900,41545,'blocks_5_acfe_flexible_toggle','1'),(268901,41545,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(268902,41545,'blocks_5_acfe_flexible_layout_title','Tabs'),(268903,41545,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(268904,41545,'blocks_5_options_theme','#ffffff'),(268905,41545,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(268906,41545,'blocks_5_options',''),(268907,41545,'_blocks_5_options','field_6177cfcd8140f'),(268908,41545,'blocks_5_tabs_0_tab_label','Entry requirements'),(268909,41545,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(268910,41545,'blocks_5_tabs_0_tab_content_title',''),(268911,41545,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(268912,41545,'blocks_5_tabs_0_tab_content_heading',''),(268913,41545,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(268914,41545,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(268915,41545,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(268916,41545,'blocks_5_tabs_0_tab_content_actions',''),(268917,41545,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(268918,41545,'blocks_5_tabs_0_tab_content',''),(268919,41545,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(268920,41545,'blocks_5_tabs_0_tab_image',''),(268921,41545,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(268922,41545,'blocks_5_tabs_1_tab_label','Learning format'),(268923,41545,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(268924,41545,'blocks_5_tabs_1_tab_content_title',''),(268925,41545,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(268926,41545,'blocks_5_tabs_1_tab_content_heading',''),(268927,41545,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(268928,41545,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(268929,41545,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(268930,41545,'blocks_5_tabs_1_tab_content_actions',''),(268931,41545,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(268932,41545,'blocks_5_tabs_1_tab_content',''),(268933,41545,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(268934,41545,'blocks_5_tabs_1_tab_image',''),(268935,41545,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(268936,41545,'blocks_5_tabs_2_tab_label','Qualifications included'),(268937,41545,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(268938,41545,'blocks_5_tabs_2_tab_content_title',''),(268939,41545,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(268940,41545,'blocks_5_tabs_2_tab_content_heading',''),(268941,41545,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(268942,41545,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(268943,41545,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(268944,41545,'blocks_5_tabs_2_tab_content_actions',''),(268945,41545,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(268946,41545,'blocks_5_tabs_2_tab_content',''),(268947,41545,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(268948,41545,'blocks_5_tabs_2_tab_image',''),(268949,41545,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(268950,41545,'blocks_5_tabs','3'),(268951,41545,'_blocks_5_tabs','field_6177cff281419'),(268952,41545,'blocks_6_acfe_flexible_toggle',''),(268953,41545,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(268954,41545,'blocks_6_acfe_flexible_layout_title','Icons'),(268955,41545,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(268956,41545,'blocks_6_options_theme','#f5f5f5'),(268957,41545,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(268958,41545,'blocks_6_options_format','stacked'),(268959,41545,'_blocks_6_options_format','field_64bfde9a90690'),(268960,41545,'blocks_6_options',''),(268961,41545,'_blocks_6_options','field_64bfdd9b90684'),(268962,41545,'blocks_6_row_content_title','Options available to pay for your course'),(268963,41545,'_blocks_6_row_content_title','field_64bfdd9b90687'),(268964,41545,'blocks_6_row_content_heading','Fees & Funding Options '),(268965,41545,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(268966,41545,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(268967,41545,'_blocks_6_row_content_text','field_64bfdd9b90689'),(268968,41545,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(268969,41545,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(268970,41545,'blocks_6_row_content_actions','1'),(268971,41545,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(268972,41545,'blocks_6_row_content',''),(268973,41545,'_blocks_6_row_content','field_64bfdd9b90686'),(268974,41545,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(268975,41545,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(268976,41545,'blocks_6_icon_row_items_0_label','Pay in full'),(268977,41545,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(268978,41545,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(268979,41545,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(268980,41545,'blocks_6_icon_row_items_1_icon','finance.svg'),(268981,41545,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(268982,41545,'blocks_6_icon_row_items_1_label','0% finance'),(268983,41545,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(268984,41545,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(268985,41545,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(268986,41545,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(268987,41545,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(268988,41545,'blocks_6_icon_row_items_2_label','Deposit & balance'),(268989,41545,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(268990,41545,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(268991,41545,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(268992,41545,'blocks_6_icon_row_items','3'),(268993,41545,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(268994,41545,'blocks_7_acfe_flexible_toggle',''),(268995,41545,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(268996,41545,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(268997,41545,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(268998,41545,'blocks_7_options_theme','#ffffff'),(268999,41545,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(269000,41545,'blocks_7_options_reverse','0'),(269001,41545,'_blocks_7_options_reverse','field_61768049bb8ac'),(269002,41545,'blocks_7_options',''),(269003,41545,'_blocks_7_options','field_617682517c334'),(269004,41545,'blocks_7_split_5050_image','41543'),(269005,41545,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(269006,41545,'blocks_7_split_5050_video',''),(269007,41545,'_blocks_7_split_5050_video','field_6239f3160848a'),(269008,41545,'blocks_7_split_5050_content_title',''),(269009,41545,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(269010,41545,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(269011,41545,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(269012,41545,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(269013,41545,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(269014,41545,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(269015,41545,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(269016,41545,'blocks_7_split_5050_content_actions','1'),(269017,41545,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(269018,41545,'blocks_7_split_5050_content',''),(269019,41545,'_blocks_7_split_5050_content','field_61767afceb8ba'),(269020,41545,'blocks_8_acfe_flexible_toggle',''),(269021,41545,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(269022,41545,'blocks_8_acfe_flexible_layout_title','Icons'),(269023,41545,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(269024,41545,'blocks_8_options_theme','#f5f5f5'),(269025,41545,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(269026,41545,'blocks_8_options_format','row'),(269027,41545,'_blocks_8_options_format','field_64bfde9a90690'),(269028,41545,'blocks_8_options',''),(269029,41545,'_blocks_8_options','field_64bfdd9b90684'),(269030,41545,'blocks_8_icon_row_items_0_icon','qualification.svg'),(269031,41545,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(269032,41545,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(269033,41545,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(269034,41545,'blocks_8_icon_row_items_0_text',''),(269035,41545,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(269036,41545,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(269037,41545,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(269038,41545,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(269039,41545,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(269040,41545,'blocks_8_icon_row_items_1_text',''),(269041,41545,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(269042,41545,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(269043,41545,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(269044,41545,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(269045,41545,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(269046,41545,'blocks_8_icon_row_items_2_text',''),(269047,41545,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(269048,41545,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(269049,41545,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(269050,41545,'blocks_8_icon_row_items_3_label','Flexible funding options'),(269051,41545,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(269052,41545,'blocks_8_icon_row_items_3_text',''),(269053,41545,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(269054,41545,'blocks_8_icon_row_items','4'),(269055,41545,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(269056,41545,'blocks_9_acfe_flexible_toggle',''),(269057,41545,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(269058,41545,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(269059,41545,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(269060,41545,'blocks_9_options_theme','#ffffff'),(269061,41545,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(269062,41545,'blocks_9_options_reverse','1'),(269063,41545,'_blocks_9_options_reverse','field_61768049bb8ac'),(269064,41545,'blocks_9_options',''),(269065,41545,'_blocks_9_options','field_617682517c334'),(269066,41545,'blocks_9_split_5050_image','39224'),(269067,41545,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(269068,41545,'blocks_9_split_5050_video',''),(269069,41545,'_blocks_9_split_5050_video','field_6239f3160848a'),(269070,41545,'blocks_9_split_5050_content_title','Locations'),(269071,41545,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(269072,41545,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(269073,41545,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(269074,41545,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(269075,41545,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(269076,41545,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(269077,41545,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(269078,41545,'blocks_9_split_5050_content_actions','1'),(269079,41545,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(269080,41545,'blocks_9_split_5050_content',''),(269081,41545,'_blocks_9_split_5050_content','field_61767afceb8ba'),(269082,41545,'blocks_10_acfe_flexible_toggle','1'),(269083,41545,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(269084,41545,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(269085,41545,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(269086,41545,'blocks_10_options_theme','#ffffff'),(269087,41545,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(269088,41545,'blocks_10_options',''),(269089,41545,'_blocks_10_options','field_617ac0b7f6c08'),(269090,41545,'blocks_10_show','selection'),(269091,41545,'_blocks_10_show','field_61a49cba9d946'),(269092,41545,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(269093,41545,'_blocks_10_courses','field_61b244781ee0a'),(269094,41545,'blocks_10_open_whats_included','1'),(269095,41545,'_blocks_10_open_whats_included','field_66ebfd679450c'),(269096,41545,'blocks_10_open_key_information','0'),(269097,41545,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(269098,41545,'blocks_10_open',''),(269099,41545,'_blocks_10_open','field_66ebfd009450b'),(269100,41545,'blocks_11_acfe_flexible_toggle',''),(269101,41545,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(269102,41545,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(269103,41545,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(269104,41545,'blocks_11_options_theme','#ffffff'),(269105,41545,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(269106,41545,'blocks_11_options_reverse','0'),(269107,41545,'_blocks_11_options_reverse','field_61768049bb8ac'),(269108,41545,'blocks_11_options',''),(269109,41545,'_blocks_11_options','field_617682517c334'),(269110,41545,'blocks_11_split_5050_image','41493'),(269111,41545,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(269112,41545,'blocks_11_split_5050_video',''),(269113,41545,'_blocks_11_split_5050_video','field_6239f3160848a'),(269114,41545,'blocks_11_split_5050_content_title','Optimise Performance '),(269115,41545,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(269116,41545,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(269117,41545,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(269118,41545,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW125057262 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW125057262 BCX8\">Our unique programme in Biomechanics Coaching and Level 4 Strength and Conditioning offers advanced techniques that go beyond traditional training. Gain skills in biomechanics to </span><span class=\"NormalTextRun SCXW125057262 BCX8\">identify</span><span class=\"NormalTextRun SCXW125057262 BCX8\"> movement patterns, assess functional performance, and optimise training plans. Ideal for trainers and coaches, this qualification enables you to deliver scientifically backed, targeted conditioning to improve client results.</span></span><span class=\"EOP SCXW125057262 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW39222847 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW39222847 BCX8\">As a qualified level 4 </span><span class=\"NormalTextRun SCXW39222847 BCX8\">Strength &amp; Conditioning</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> expert</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> you will be able to: </span></span> </strong>\r\n<ul>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">The role of a strength and conditioning coach as part of an athlete’s support team.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Methods of carrying out performance-related needs analysis, measurements and assessments.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Strategies to analyse and evaluate assessment findings to be able to develop and </span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">agree short, medium, and long-term performance goals.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Planning, delivering and evaluating periodised, performance-related strength and conditioning programmes.</span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-ccp-props=\"{}\"> </span></li>\r\n</ul>'),(269119,41545,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(269120,41545,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(269121,41545,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(269122,41545,'blocks_11_split_5050_content_actions','1'),(269123,41545,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(269124,41545,'blocks_11_split_5050_content',''),(269125,41545,'_blocks_11_split_5050_content','field_61767afceb8ba'),(269126,41545,'blocks_12_acfe_flexible_toggle',''),(269127,41545,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(269128,41545,'blocks_12_acfe_flexible_layout_title','Template'),(269129,41545,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(269130,41545,'blocks_12_template','40987'),(269131,41545,'_blocks_12_template','field_617bdd570fe01'),(269132,41545,'blocks_13_acfe_flexible_toggle',''),(269133,41545,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(269134,41545,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(269135,41545,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(269136,41545,'blocks_13_options_theme','#f5f5f5'),(269137,41545,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(269138,41545,'blocks_13_options_state','0'),(269139,41545,'_blocks_13_options_state','field_6239fcb7508c5'),(269140,41545,'blocks_13_options',''),(269141,41545,'_blocks_13_options','field_6177e2991ac44'),(269142,41545,'blocks_13_content_title',''),(269143,41545,'_blocks_13_content_title','field_64d237e8bb1e2'),(269144,41545,'blocks_13_content_heading','FAQ\'s'),(269145,41545,'_blocks_13_content_heading','field_64d237e8bb1e3'),(269146,41545,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(269147,41545,'_blocks_13_content_text','field_64d237e8bb1e4'),(269148,41545,'blocks_13_content_actions',''),(269149,41545,'_blocks_13_content_actions','field_64d237e8bb1e5'),(269150,41545,'blocks_13_content_align','left'),(269151,41545,'_blocks_13_content_align','field_64d2443e6b6aa'),(269152,41545,'blocks_13_content',''),(269153,41545,'_blocks_13_content','field_64d237e8bb1e1'),(269154,41545,'blocks_13_accordion_content','faqs'),(269155,41545,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(269156,41545,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41534\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(269157,41545,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(269158,41545,'blocks_13_actions',''),(269159,41545,'_blocks_13_actions','field_61a746a817f7a'),(269160,41545,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(269161,41545,'_blocks','field_6176696113096'),(269162,41545,'course_label_text',''),(269163,41545,'_course_label_text','field_61e17babf71fa'),(269164,41545,'course_label',''),(269165,41545,'_course_label','field_61e12f92749a7'),(269166,41545,'course_description',''),(269167,41545,'_course_description','field_617ac5788e5e1'),(269168,41545,'course_key_info',''),(269169,41545,'_course_key_info','field_617ac6ad8e5e2'),(269170,41545,'course_included',''),(269171,41545,'_course_included','field_617ac6f08e5e4'),(269172,41546,'hide_hero','0'),(269173,41546,'_hide_hero','field_66a2380fcda39'),(269174,41546,'hero_title','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching'),(269175,41546,'_hero_title','field_617571fe285e8'),(269176,41546,'hero_text','Master Strength and Conditioning with Intrinsic biomechanics expertise for optimal client performance.'),(269177,41546,'_hero_text','field_6175723c285e9'),(269178,41546,'hero_actions','1'),(269179,41546,'_hero_actions','field_61757270285ea'),(269180,41546,'hero_style','default'),(269181,41546,'_hero_style','field_62051d9dc5324'),(269182,41546,'_thumbnail_id','41538'),(269183,41546,'__thumbnail_id','field_617570855ddaf'),(269184,41546,'hero_image_pos_x','right'),(269185,41546,'_hero_image_pos_x','field_62ec3d05390bb'),(269186,41546,'hero_image_pos_y','top'),(269187,41546,'_hero_image_pos_y','field_62ec3d05390bc'),(269188,41546,'hero_image_pos',''),(269189,41546,'_hero_image_pos','field_62ec3d05390ba'),(269190,41546,'fft_hide_from_listings','0'),(269191,41546,'_fft_hide_from_listings','field_61f1320446ab2'),(269192,41546,'fft_page_format','default'),(269193,41546,'_fft_page_format','field_61ae213f1f218'),(269194,41546,'fft_hide_nav','0'),(269195,41546,'_fft_hide_nav','field_635bd5e43527c'),(269196,41546,'fft_hide_header_call_to_action','0'),(269197,41546,'_fft_hide_header_call_to_action','field_635bd6723527d'),(269198,41546,'fft_page_sitemap','0'),(269199,41546,'_fft_page_sitemap','field_61af9b34e8181'),(269200,41546,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(269201,41546,'_blocks','field_6176696113096'),(269202,41546,'course_label_text',''),(269203,41546,'_course_label_text','field_61e17babf71fa'),(269204,41546,'course_label',''),(269205,41546,'_course_label','field_61e12f92749a7'),(269206,41546,'course_description',''),(269207,41546,'_course_description','field_617ac5788e5e1'),(269208,41546,'course_key_info',''),(269209,41546,'_course_key_info','field_617ac6ad8e5e2'),(269210,41546,'course_included',''),(269211,41546,'_course_included','field_617ac6f08e5e4'),(269212,41546,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41520-4\";s:6:\"target\";s:0:\"\";}'),(269213,41546,'_hero_actions_0_button','field_61757281285eb'),(269214,41546,'blocks_0_acfe_flexible_toggle',''),(269215,41546,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(269216,41546,'blocks_0_acfe_flexible_layout_title','Icons'),(269217,41546,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(269218,41546,'blocks_0_options_theme','#b61234'),(269219,41546,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(269220,41546,'blocks_0_options_format','row'),(269221,41546,'_blocks_0_options_format','field_64bfde9a90690'),(269222,41546,'blocks_0_options',''),(269223,41546,'_blocks_0_options','field_64bfdd9b90684'),(269224,41546,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(269225,41546,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(269226,41546,'blocks_0_icon_row_items_0_label','Accreditation'),(269227,41546,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(269228,41546,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(269229,41546,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(269230,41546,'blocks_0_icon_row_items_1_icon','finance.svg'),(269231,41546,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(269232,41546,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(269233,41546,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(269234,41546,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(269235,41546,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(269236,41546,'blocks_0_icon_row_items_2_icon','progression.svg'),(269237,41546,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(269238,41546,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(269239,41546,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(269240,41546,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(269241,41546,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(269242,41546,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(269243,41546,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(269244,41546,'blocks_0_icon_row_items_3_label','Qualification'),(269245,41546,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(269246,41546,'blocks_0_icon_row_items_3_text','Level 4 Strength & Conditioning + Diploma in Biomechanics Coaching '),(269247,41546,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(269248,41546,'blocks_0_icon_row_items','4'),(269249,41546,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(269250,41546,'blocks_5_acfe_flexible_toggle','1'),(269251,41546,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(269252,41546,'blocks_5_acfe_flexible_layout_title','Tabs'),(269253,41546,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(269254,41546,'blocks_5_options_theme','#ffffff'),(269255,41546,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(269256,41546,'blocks_5_options',''),(269257,41546,'_blocks_5_options','field_6177cfcd8140f'),(269258,41546,'blocks_5_tabs_0_tab_label','Entry requirements'),(269259,41546,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(269260,41546,'blocks_5_tabs_0_tab_content_title',''),(269261,41546,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(269262,41546,'blocks_5_tabs_0_tab_content_heading',''),(269263,41546,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(269264,41546,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(269265,41546,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(269266,41546,'blocks_5_tabs_0_tab_content_actions',''),(269267,41546,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(269268,41546,'blocks_5_tabs_0_tab_content',''),(269269,41546,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(269270,41546,'blocks_5_tabs_0_tab_image',''),(269271,41546,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(269272,41546,'blocks_5_tabs_1_tab_label','Learning format'),(269273,41546,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(269274,41546,'blocks_5_tabs_1_tab_content_title',''),(269275,41546,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(269276,41546,'blocks_5_tabs_1_tab_content_heading',''),(269277,41546,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(269278,41546,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(269279,41546,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(269280,41546,'blocks_5_tabs_1_tab_content_actions',''),(269281,41546,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(269282,41546,'blocks_5_tabs_1_tab_content',''),(269283,41546,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(269284,41546,'blocks_5_tabs_1_tab_image',''),(269285,41546,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(269286,41546,'blocks_5_tabs_2_tab_label','Qualifications included'),(269287,41546,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(269288,41546,'blocks_5_tabs_2_tab_content_title',''),(269289,41546,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(269290,41546,'blocks_5_tabs_2_tab_content_heading',''),(269291,41546,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(269292,41546,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(269293,41546,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(269294,41546,'blocks_5_tabs_2_tab_content_actions',''),(269295,41546,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(269296,41546,'blocks_5_tabs_2_tab_content',''),(269297,41546,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(269298,41546,'blocks_5_tabs_2_tab_image',''),(269299,41546,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(269300,41546,'blocks_5_tabs','3'),(269301,41546,'_blocks_5_tabs','field_6177cff281419'),(269302,41546,'blocks_4_acfe_flexible_toggle',''),(269303,41546,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(269304,41546,'blocks_4_acfe_flexible_layout_title','Template'),(269305,41546,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(269306,41546,'blocks_4_template','39207'),(269307,41546,'_blocks_4_template','field_617bdd570fe01'),(269308,41546,'blocks_6_acfe_flexible_toggle',''),(269309,41546,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(269310,41546,'blocks_6_acfe_flexible_layout_title','Icons'),(269311,41546,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(269312,41546,'blocks_6_options_theme','#f5f5f5'),(269313,41546,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(269314,41546,'blocks_6_options_format','stacked'),(269315,41546,'_blocks_6_options_format','field_64bfde9a90690'),(269316,41546,'blocks_6_options',''),(269317,41546,'_blocks_6_options','field_64bfdd9b90684'),(269318,41546,'blocks_6_row_content_title','Options available to pay for your course'),(269319,41546,'_blocks_6_row_content_title','field_64bfdd9b90687'),(269320,41546,'blocks_6_row_content_heading','Fees & Funding Options '),(269321,41546,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(269322,41546,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(269323,41546,'_blocks_6_row_content_text','field_64bfdd9b90689'),(269324,41546,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(269325,41546,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(269326,41546,'blocks_6_row_content_actions','1'),(269327,41546,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(269328,41546,'blocks_6_row_content',''),(269329,41546,'_blocks_6_row_content','field_64bfdd9b90686'),(269330,41546,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(269331,41546,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(269332,41546,'blocks_6_icon_row_items_0_label','Pay in full'),(269333,41546,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(269334,41546,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(269335,41546,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(269336,41546,'blocks_6_icon_row_items_1_icon','finance.svg'),(269337,41546,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(269338,41546,'blocks_6_icon_row_items_1_label','0% finance'),(269339,41546,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(269340,41546,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(269341,41546,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(269342,41546,'blocks_6_icon_row_items','3'),(269343,41546,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(269344,41546,'blocks_7_acfe_flexible_toggle',''),(269345,41546,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(269346,41546,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(269347,41546,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(269348,41546,'blocks_7_options_theme','#ffffff'),(269349,41546,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(269350,41546,'blocks_7_options_reverse','0'),(269351,41546,'_blocks_7_options_reverse','field_61768049bb8ac'),(269352,41546,'blocks_7_options',''),(269353,41546,'_blocks_7_options','field_617682517c334'),(269354,41546,'blocks_7_split_5050_image','41543'),(269355,41546,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(269356,41546,'blocks_7_split_5050_video',''),(269357,41546,'_blocks_7_split_5050_video','field_6239f3160848a'),(269358,41546,'blocks_7_split_5050_content_title',''),(269359,41546,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(269360,41546,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(269361,41546,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(269362,41546,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(269363,41546,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(269364,41546,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(269365,41546,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(269366,41546,'blocks_7_split_5050_content_actions','1'),(269367,41546,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(269368,41546,'blocks_7_split_5050_content',''),(269369,41546,'_blocks_7_split_5050_content','field_61767afceb8ba'),(269370,41546,'blocks_8_acfe_flexible_toggle',''),(269371,41546,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(269372,41546,'blocks_8_acfe_flexible_layout_title','Icons'),(269373,41546,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(269374,41546,'blocks_8_options_theme','#f5f5f5'),(269375,41546,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(269376,41546,'blocks_8_options_format','row'),(269377,41546,'_blocks_8_options_format','field_64bfde9a90690'),(269378,41546,'blocks_8_options',''),(269379,41546,'_blocks_8_options','field_64bfdd9b90684'),(269380,41546,'blocks_8_icon_row_items_0_icon','qualification.svg'),(269381,41546,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(269382,41546,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(269383,41546,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(269384,41546,'blocks_8_icon_row_items_0_text',''),(269385,41546,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(269386,41546,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(269387,41546,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(269388,41546,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(269389,41546,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(269390,41546,'blocks_8_icon_row_items_1_text',''),(269391,41546,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(269392,41546,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(269393,41546,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(269394,41546,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(269395,41546,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(269396,41546,'blocks_8_icon_row_items_2_text',''),(269397,41546,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(269398,41546,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(269399,41546,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(269400,41546,'blocks_8_icon_row_items_3_label','Flexible funding options'),(269401,41546,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(269402,41546,'blocks_8_icon_row_items_3_text',''),(269403,41546,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(269404,41546,'blocks_8_icon_row_items','4'),(269405,41546,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(269406,41546,'blocks_9_acfe_flexible_toggle',''),(269407,41546,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(269408,41546,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(269409,41546,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(269410,41546,'blocks_9_options_theme','#ffffff'),(269411,41546,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(269412,41546,'blocks_9_options_reverse','1'),(269413,41546,'_blocks_9_options_reverse','field_61768049bb8ac'),(269414,41546,'blocks_9_options',''),(269415,41546,'_blocks_9_options','field_617682517c334'),(269416,41546,'blocks_9_split_5050_image','39224'),(269417,41546,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(269418,41546,'blocks_9_split_5050_video',''),(269419,41546,'_blocks_9_split_5050_video','field_6239f3160848a'),(269420,41546,'blocks_9_split_5050_content_title','Locations'),(269421,41546,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(269422,41546,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(269423,41546,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(269424,41546,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(269425,41546,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(269426,41546,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(269427,41546,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(269428,41546,'blocks_9_split_5050_content_actions','1'),(269429,41546,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(269430,41546,'blocks_9_split_5050_content',''),(269431,41546,'_blocks_9_split_5050_content','field_61767afceb8ba'),(269432,41546,'blocks_1_acfe_flexible_toggle',''),(269433,41546,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(269434,41546,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(269435,41546,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(269436,41546,'blocks_1_options_theme','#ffffff'),(269437,41546,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(269438,41546,'blocks_1_options_reverse','0'),(269439,41546,'_blocks_1_options_reverse','field_61768049bb8ac'),(269440,41546,'blocks_1_options',''),(269441,41546,'_blocks_1_options','field_617682517c334'),(269442,41546,'blocks_1_split_5050_image','41498'),(269443,41546,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(269444,41546,'blocks_1_split_5050_video',''),(269445,41546,'_blocks_1_split_5050_video','field_6239f3160848a'),(269446,41546,'blocks_1_split_5050_content_title',''),(269447,41546,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(269448,41546,'blocks_1_split_5050_content_heading','Course Overview'),(269449,41546,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(269450,41546,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW194933276 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW194933276 BCX8\">Enhance your </span><span class=\"NormalTextRun SCXW194933276 BCX8\">expertise</span><span class=\"NormalTextRun SCXW194933276 BCX8\"> with a dual qualification in Biomechanics Coaching and Level 4 Strength and Conditioning. Designed for fitness professionals, coaches, and therapists, this course covers essential Intrinsic biomechanics principles alongside advanced strength and conditioning techniques, equipping you to improve performance, reduce injury risk, and provide targeted training for clients of all levels.</span></span><span class=\"EOP SCXW194933276 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(269451,41546,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(269452,41546,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(269453,41546,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(269454,41546,'blocks_1_split_5050_content_actions','1'),(269455,41546,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(269456,41546,'blocks_1_split_5050_content',''),(269457,41546,'_blocks_1_split_5050_content','field_61767afceb8ba'),(269458,41546,'blocks_2_acfe_flexible_toggle',''),(269459,41546,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(269460,41546,'blocks_2_acfe_flexible_layout_title','Form'),(269461,41546,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(269462,41546,'blocks_2_row_content_format','standard'),(269463,41546,'_blocks_2_row_content_format','field_6481ead962881'),(269464,41546,'blocks_2_row_content_title',''),(269465,41546,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(269466,41546,'blocks_2_row_content_heading','Enquire Today'),(269467,41546,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(269468,41546,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(269469,41546,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(269470,41546,'blocks_2_row_content_actions',''),(269471,41546,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(269472,41546,'blocks_2_row_content',''),(269473,41546,'_blocks_2_row_content','field_61a0f5f5b3db0'),(269474,41546,'blocks_2_row_form','40394'),(269475,41546,'_blocks_2_row_form','field_61a4ff2c0b08e'),(269476,41546,'blocks_2_row_form_button_label',''),(269477,41546,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(269478,41546,'blocks_3_acfe_flexible_toggle',''),(269479,41546,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(269480,41546,'blocks_3_acfe_flexible_layout_title','Video'),(269481,41546,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(269482,41546,'blocks_3_size','large'),(269483,41546,'_blocks_3_size','field_6487038f297c1'),(269484,41546,'blocks_3_row_content_title',''),(269485,41546,'_blocks_3_row_content_title','field_64870132a865d'),(269486,41546,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(269487,41546,'_blocks_3_row_content_heading','field_64870142a865e'),(269488,41546,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(269489,41546,'_blocks_3_row_content_text','field_64870148a865f'),(269490,41546,'blocks_3_row_content',''),(269491,41546,'_blocks_3_row_content','field_6487008ba865c'),(269492,41546,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(269493,41546,'_blocks_3_video_src','field_6193c4a98ec07'),(269494,41546,'blocks_3_video_thumbnail',''),(269495,41546,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(269496,41546,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(269497,41546,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(269498,41546,'blocks_6_icon_row_items_2_label','Deposit & balance'),(269499,41546,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(269500,41546,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(269501,41546,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(269502,41546,'blocks_10_acfe_flexible_toggle','1'),(269503,41546,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(269504,41546,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(269505,41546,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(269506,41546,'blocks_10_options_theme','#ffffff'),(269507,41546,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(269508,41546,'blocks_10_options',''),(269509,41546,'_blocks_10_options','field_617ac0b7f6c08'),(269510,41546,'blocks_10_show','selection'),(269511,41546,'_blocks_10_show','field_61a49cba9d946'),(269512,41546,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(269513,41546,'_blocks_10_courses','field_61b244781ee0a'),(269514,41546,'blocks_10_open_whats_included','1'),(269515,41546,'_blocks_10_open_whats_included','field_66ebfd679450c'),(269516,41546,'blocks_10_open_key_information','0'),(269517,41546,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(269518,41546,'blocks_10_open',''),(269519,41546,'_blocks_10_open','field_66ebfd009450b'),(269520,41546,'blocks_11_acfe_flexible_toggle',''),(269521,41546,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(269522,41546,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(269523,41546,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(269524,41546,'blocks_11_options_theme','#ffffff'),(269525,41546,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(269526,41546,'blocks_11_options_reverse','0'),(269527,41546,'_blocks_11_options_reverse','field_61768049bb8ac'),(269528,41546,'blocks_11_options',''),(269529,41546,'_blocks_11_options','field_617682517c334'),(269530,41546,'blocks_11_split_5050_image','41493'),(269531,41546,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(269532,41546,'blocks_11_split_5050_video',''),(269533,41546,'_blocks_11_split_5050_video','field_6239f3160848a'),(269534,41546,'blocks_11_split_5050_content_title','Optimise Performance '),(269535,41546,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(269536,41546,'blocks_11_split_5050_content_heading','Level 4 Strength and Conditioning Qualification with your Diploma in Biomechanics Coaching'),(269537,41546,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(269538,41546,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW125057262 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW125057262 BCX8\">Our unique programme in Biomechanics Coaching and Level 4 Strength and Conditioning offers advanced techniques that go beyond traditional training. Gain skills in biomechanics to </span><span class=\"NormalTextRun SCXW125057262 BCX8\">identify</span><span class=\"NormalTextRun SCXW125057262 BCX8\"> movement patterns, assess functional performance, and optimise training plans. Ideal for trainers and coaches, this qualification enables you to deliver scientifically backed, targeted conditioning to improve client results.</span></span><span class=\"EOP SCXW125057262 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW39222847 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW39222847 BCX8\">As a qualified level 4 </span><span class=\"NormalTextRun SCXW39222847 BCX8\">Strength &amp; Conditioning</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> expert</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> you will be able to: </span></span> </strong>\r\n<ul>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">The role of a strength and conditioning coach as part of an athlete’s support team.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Methods of carrying out performance-related needs analysis, measurements and assessments.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Strategies to analyse and evaluate assessment findings to be able to develop and </span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">agree short, medium, and long-term performance goals.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Planning, delivering and evaluating periodised, performance-related strength and conditioning programmes.</span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-ccp-props=\"{}\"> </span></li>\r\n</ul>'),(269539,41546,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(269540,41546,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(269541,41546,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(269542,41546,'blocks_11_split_5050_content_actions','1'),(269543,41546,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(269544,41546,'blocks_11_split_5050_content',''),(269545,41546,'_blocks_11_split_5050_content','field_61767afceb8ba'),(269546,41546,'blocks_12_acfe_flexible_toggle',''),(269547,41546,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(269548,41546,'blocks_12_acfe_flexible_layout_title','Template'),(269549,41546,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(269550,41546,'blocks_12_template','40987'),(269551,41546,'_blocks_12_template','field_617bdd570fe01'),(269552,41546,'blocks_13_acfe_flexible_toggle',''),(269553,41546,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(269554,41546,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(269555,41546,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(269556,41546,'blocks_13_options_theme','#f5f5f5'),(269557,41546,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(269558,41546,'blocks_13_options_state','0'),(269559,41546,'_blocks_13_options_state','field_6239fcb7508c5'),(269560,41546,'blocks_13_options',''),(269561,41546,'_blocks_13_options','field_6177e2991ac44'),(269562,41546,'blocks_13_content_title',''),(269563,41546,'_blocks_13_content_title','field_64d237e8bb1e2'),(269564,41546,'blocks_13_content_heading','FAQ\'s'),(269565,41546,'_blocks_13_content_heading','field_64d237e8bb1e3'),(269566,41546,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(269567,41546,'_blocks_13_content_text','field_64d237e8bb1e4'),(269568,41546,'blocks_13_content_actions',''),(269569,41546,'_blocks_13_content_actions','field_64d237e8bb1e5'),(269570,41546,'blocks_13_content_align','left'),(269571,41546,'_blocks_13_content_align','field_64d2443e6b6aa'),(269572,41546,'blocks_13_content',''),(269573,41546,'_blocks_13_content','field_64d237e8bb1e1'),(269574,41546,'blocks_13_accordion_content','faqs'),(269575,41546,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(269576,41546,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41534\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(269577,41546,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(269578,41546,'blocks_13_actions',''),(269579,41546,'_blocks_13_actions','field_61a746a817f7a'),(269580,41547,'hide_hero','0'),(269581,41547,'_hide_hero','field_66a2380fcda39'),(269582,41547,'hero_title','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching'),(269583,41547,'_hero_title','field_617571fe285e8'),(269584,41547,'hero_text','Master Strength and Conditioning with Intrinsic biomechanics expertise for optimal client performance.'),(269585,41547,'_hero_text','field_6175723c285e9'),(269586,41547,'hero_actions','1'),(269587,41547,'_hero_actions','field_61757270285ea'),(269588,41547,'hero_style','default'),(269589,41547,'_hero_style','field_62051d9dc5324'),(269590,41547,'_thumbnail_id','41538'),(269591,41547,'__thumbnail_id','field_617570855ddaf'),(269592,41547,'hero_image_pos_x','right'),(269593,41547,'_hero_image_pos_x','field_62ec3d05390bb'),(269594,41547,'hero_image_pos_y','top'),(269595,41547,'_hero_image_pos_y','field_62ec3d05390bc'),(269596,41547,'hero_image_pos',''),(269597,41547,'_hero_image_pos','field_62ec3d05390ba'),(269598,41547,'fft_hide_from_listings','0'),(269599,41547,'_fft_hide_from_listings','field_61f1320446ab2'),(269600,41547,'fft_page_format','default'),(269601,41547,'_fft_page_format','field_61ae213f1f218'),(269602,41547,'fft_hide_nav','0'),(269603,41547,'_fft_hide_nav','field_635bd5e43527c'),(269604,41547,'fft_hide_header_call_to_action','0'),(269605,41547,'_fft_hide_header_call_to_action','field_635bd6723527d'),(269606,41547,'fft_page_sitemap','0'),(269607,41547,'_fft_page_sitemap','field_61af9b34e8181'),(269608,41547,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(269609,41547,'_blocks','field_6176696113096'),(269610,41547,'course_label_text',''),(269611,41547,'_course_label_text','field_61e17babf71fa'),(269612,41547,'course_label',''),(269613,41547,'_course_label','field_61e12f92749a7'),(269614,41547,'course_description',''),(269615,41547,'_course_description','field_617ac5788e5e1'),(269616,41547,'course_key_info',''),(269617,41547,'_course_key_info','field_617ac6ad8e5e2'),(269618,41547,'course_included',''),(269619,41547,'_course_included','field_617ac6f08e5e4'),(269620,41547,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41533-4\";s:6:\"target\";s:0:\"\";}'),(269621,41547,'_hero_actions_0_button','field_61757281285eb'),(269622,41547,'blocks_0_acfe_flexible_toggle',''),(269623,41547,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(269624,41547,'blocks_0_acfe_flexible_layout_title','Icons'),(269625,41547,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(269626,41547,'blocks_0_options_theme','#b61234'),(269627,41547,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(269628,41547,'blocks_0_options_format','row'),(269629,41547,'_blocks_0_options_format','field_64bfde9a90690'),(269630,41547,'blocks_0_options',''),(269631,41547,'_blocks_0_options','field_64bfdd9b90684'),(269632,41547,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(269633,41547,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(269634,41547,'blocks_0_icon_row_items_0_label','Accreditation'),(269635,41547,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(269636,41547,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(269637,41547,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(269638,41547,'blocks_0_icon_row_items_1_icon','finance.svg'),(269639,41547,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(269640,41547,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(269641,41547,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(269642,41547,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(269643,41547,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(269644,41547,'blocks_0_icon_row_items_2_icon','progression.svg'),(269645,41547,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(269646,41547,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(269647,41547,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(269648,41547,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(269649,41547,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(269650,41547,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(269651,41547,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(269652,41547,'blocks_0_icon_row_items_3_label','Qualification'),(269653,41547,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(269654,41547,'blocks_0_icon_row_items_3_text','Level 4 Strength & Conditioning + Diploma in Biomechanics Coaching '),(269655,41547,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(269656,41547,'blocks_0_icon_row_items','4'),(269657,41547,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(269658,41547,'blocks_5_acfe_flexible_toggle','1'),(269659,41547,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(269660,41547,'blocks_5_acfe_flexible_layout_title','Tabs'),(269661,41547,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(269662,41547,'blocks_5_options_theme','#ffffff'),(269663,41547,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(269664,41547,'blocks_5_options',''),(269665,41547,'_blocks_5_options','field_6177cfcd8140f'),(269666,41547,'blocks_5_tabs_0_tab_label','Entry requirements'),(269667,41547,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(269668,41547,'blocks_5_tabs_0_tab_content_title',''),(269669,41547,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(269670,41547,'blocks_5_tabs_0_tab_content_heading',''),(269671,41547,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(269672,41547,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(269673,41547,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(269674,41547,'blocks_5_tabs_0_tab_content_actions',''),(269675,41547,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(269676,41547,'blocks_5_tabs_0_tab_content',''),(269677,41547,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(269678,41547,'blocks_5_tabs_0_tab_image',''),(269679,41547,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(269680,41547,'blocks_5_tabs_1_tab_label','Learning format'),(269681,41547,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(269682,41547,'blocks_5_tabs_1_tab_content_title',''),(269683,41547,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(269684,41547,'blocks_5_tabs_1_tab_content_heading',''),(269685,41547,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(269686,41547,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(269687,41547,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(269688,41547,'blocks_5_tabs_1_tab_content_actions',''),(269689,41547,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(269690,41547,'blocks_5_tabs_1_tab_content',''),(269691,41547,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(269692,41547,'blocks_5_tabs_1_tab_image',''),(269693,41547,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(269694,41547,'blocks_5_tabs_2_tab_label','Qualifications included'),(269695,41547,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(269696,41547,'blocks_5_tabs_2_tab_content_title',''),(269697,41547,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(269698,41547,'blocks_5_tabs_2_tab_content_heading',''),(269699,41547,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(269700,41547,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(269701,41547,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(269702,41547,'blocks_5_tabs_2_tab_content_actions',''),(269703,41547,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(269704,41547,'blocks_5_tabs_2_tab_content',''),(269705,41547,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(269706,41547,'blocks_5_tabs_2_tab_image',''),(269707,41547,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(269708,41547,'blocks_5_tabs','3'),(269709,41547,'_blocks_5_tabs','field_6177cff281419'),(269710,41547,'blocks_4_acfe_flexible_toggle',''),(269711,41547,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(269712,41547,'blocks_4_acfe_flexible_layout_title','Template'),(269713,41547,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(269714,41547,'blocks_4_template','39207'),(269715,41547,'_blocks_4_template','field_617bdd570fe01'),(269716,41547,'blocks_6_acfe_flexible_toggle',''),(269717,41547,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(269718,41547,'blocks_6_acfe_flexible_layout_title','Icons'),(269719,41547,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(269720,41547,'blocks_6_options_theme','#f5f5f5'),(269721,41547,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(269722,41547,'blocks_6_options_format','stacked'),(269723,41547,'_blocks_6_options_format','field_64bfde9a90690'),(269724,41547,'blocks_6_options',''),(269725,41547,'_blocks_6_options','field_64bfdd9b90684'),(269726,41547,'blocks_6_row_content_title','Options available to pay for your course'),(269727,41547,'_blocks_6_row_content_title','field_64bfdd9b90687'),(269728,41547,'blocks_6_row_content_heading','Fees & Funding Options '),(269729,41547,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(269730,41547,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(269731,41547,'_blocks_6_row_content_text','field_64bfdd9b90689'),(269732,41547,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41533-3\";s:6:\"target\";s:0:\"\";}'),(269733,41547,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(269734,41547,'blocks_6_row_content_actions','1'),(269735,41547,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(269736,41547,'blocks_6_row_content',''),(269737,41547,'_blocks_6_row_content','field_64bfdd9b90686'),(269738,41547,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(269739,41547,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(269740,41547,'blocks_6_icon_row_items_0_label','Pay in full'),(269741,41547,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(269742,41547,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(269743,41547,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(269744,41547,'blocks_6_icon_row_items_1_icon','finance.svg'),(269745,41547,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(269746,41547,'blocks_6_icon_row_items_1_label','0% finance'),(269747,41547,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(269748,41547,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(269749,41547,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(269750,41547,'blocks_6_icon_row_items','3'),(269751,41547,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(269752,41547,'blocks_7_acfe_flexible_toggle',''),(269753,41547,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(269754,41547,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(269755,41547,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(269756,41547,'blocks_7_options_theme','#ffffff'),(269757,41547,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(269758,41547,'blocks_7_options_reverse','0'),(269759,41547,'_blocks_7_options_reverse','field_61768049bb8ac'),(269760,41547,'blocks_7_options',''),(269761,41547,'_blocks_7_options','field_617682517c334'),(269762,41547,'blocks_7_split_5050_image','41543'),(269763,41547,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(269764,41547,'blocks_7_split_5050_video',''),(269765,41547,'_blocks_7_split_5050_video','field_6239f3160848a'),(269766,41547,'blocks_7_split_5050_content_title',''),(269767,41547,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(269768,41547,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(269769,41547,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(269770,41547,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(269771,41547,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(269772,41547,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41533-3\";s:6:\"target\";s:0:\"\";}'),(269773,41547,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(269774,41547,'blocks_7_split_5050_content_actions','1'),(269775,41547,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(269776,41547,'blocks_7_split_5050_content',''),(269777,41547,'_blocks_7_split_5050_content','field_61767afceb8ba'),(269778,41547,'blocks_8_acfe_flexible_toggle',''),(269779,41547,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(269780,41547,'blocks_8_acfe_flexible_layout_title','Icons'),(269781,41547,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(269782,41547,'blocks_8_options_theme','#f5f5f5'),(269783,41547,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(269784,41547,'blocks_8_options_format','row'),(269785,41547,'_blocks_8_options_format','field_64bfde9a90690'),(269786,41547,'blocks_8_options',''),(269787,41547,'_blocks_8_options','field_64bfdd9b90684'),(269788,41547,'blocks_8_icon_row_items_0_icon','qualification.svg'),(269789,41547,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(269790,41547,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(269791,41547,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(269792,41547,'blocks_8_icon_row_items_0_text',''),(269793,41547,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(269794,41547,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(269795,41547,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(269796,41547,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(269797,41547,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(269798,41547,'blocks_8_icon_row_items_1_text',''),(269799,41547,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(269800,41547,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(269801,41547,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(269802,41547,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(269803,41547,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(269804,41547,'blocks_8_icon_row_items_2_text',''),(269805,41547,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(269806,41547,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(269807,41547,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(269808,41547,'blocks_8_icon_row_items_3_label','Flexible funding options'),(269809,41547,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(269810,41547,'blocks_8_icon_row_items_3_text',''),(269811,41547,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(269812,41547,'blocks_8_icon_row_items','4'),(269813,41547,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(269814,41547,'blocks_9_acfe_flexible_toggle',''),(269815,41547,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(269816,41547,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(269817,41547,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(269818,41547,'blocks_9_options_theme','#ffffff'),(269819,41547,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(269820,41547,'blocks_9_options_reverse','1'),(269821,41547,'_blocks_9_options_reverse','field_61768049bb8ac'),(269822,41547,'blocks_9_options',''),(269823,41547,'_blocks_9_options','field_617682517c334'),(269824,41547,'blocks_9_split_5050_image','39224'),(269825,41547,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(269826,41547,'blocks_9_split_5050_video',''),(269827,41547,'_blocks_9_split_5050_video','field_6239f3160848a'),(269828,41547,'blocks_9_split_5050_content_title','Locations'),(269829,41547,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(269830,41547,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(269831,41547,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(269832,41547,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(269833,41547,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(269834,41547,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41533-3\";s:6:\"target\";s:0:\"\";}'),(269835,41547,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(269836,41547,'blocks_9_split_5050_content_actions','1'),(269837,41547,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(269838,41547,'blocks_9_split_5050_content',''),(269839,41547,'_blocks_9_split_5050_content','field_61767afceb8ba'),(269840,41547,'blocks_1_acfe_flexible_toggle',''),(269841,41547,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(269842,41547,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(269843,41547,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(269844,41547,'blocks_1_options_theme','#ffffff'),(269845,41547,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(269846,41547,'blocks_1_options_reverse','0'),(269847,41547,'_blocks_1_options_reverse','field_61768049bb8ac'),(269848,41547,'blocks_1_options',''),(269849,41547,'_blocks_1_options','field_617682517c334'),(269850,41547,'blocks_1_split_5050_image','41498'),(269851,41547,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(269852,41547,'blocks_1_split_5050_video',''),(269853,41547,'_blocks_1_split_5050_video','field_6239f3160848a'),(269854,41547,'blocks_1_split_5050_content_title',''),(269855,41547,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(269856,41547,'blocks_1_split_5050_content_heading','Course Overview'),(269857,41547,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(269858,41547,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW194933276 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW194933276 BCX8\">Enhance your </span><span class=\"NormalTextRun SCXW194933276 BCX8\">expertise</span><span class=\"NormalTextRun SCXW194933276 BCX8\"> with a dual qualification in Biomechanics Coaching and Level 4 Strength and Conditioning. Designed for fitness professionals, coaches, and therapists, this course covers essential Intrinsic biomechanics principles alongside advanced strength and conditioning techniques, equipping you to improve performance, reduce injury risk, and provide targeted training for clients of all levels.</span></span><span class=\"EOP SCXW194933276 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(269859,41547,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(269860,41547,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(269861,41547,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(269862,41547,'blocks_1_split_5050_content_actions','1'),(269863,41547,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(269864,41547,'blocks_1_split_5050_content',''),(269865,41547,'_blocks_1_split_5050_content','field_61767afceb8ba'),(269866,41547,'blocks_2_acfe_flexible_toggle',''),(269867,41547,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(269868,41547,'blocks_2_acfe_flexible_layout_title','Form'),(269869,41547,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(269870,41547,'blocks_2_row_content_format','standard'),(269871,41547,'_blocks_2_row_content_format','field_6481ead962881'),(269872,41547,'blocks_2_row_content_title',''),(269873,41547,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(269874,41547,'blocks_2_row_content_heading','Enquire Today'),(269875,41547,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(269876,41547,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(269877,41547,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(269878,41547,'blocks_2_row_content_actions',''),(269879,41547,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(269880,41547,'blocks_2_row_content',''),(269881,41547,'_blocks_2_row_content','field_61a0f5f5b3db0'),(269882,41547,'blocks_2_row_form','40394'),(269883,41547,'_blocks_2_row_form','field_61a4ff2c0b08e'),(269884,41547,'blocks_2_row_form_button_label',''),(269885,41547,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(269886,41547,'blocks_3_acfe_flexible_toggle',''),(269887,41547,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(269888,41547,'blocks_3_acfe_flexible_layout_title','Video'),(269889,41547,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(269890,41547,'blocks_3_size','large'),(269891,41547,'_blocks_3_size','field_6487038f297c1'),(269892,41547,'blocks_3_row_content_title',''),(269893,41547,'_blocks_3_row_content_title','field_64870132a865d'),(269894,41547,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(269895,41547,'_blocks_3_row_content_heading','field_64870142a865e'),(269896,41547,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(269897,41547,'_blocks_3_row_content_text','field_64870148a865f'),(269898,41547,'blocks_3_row_content',''),(269899,41547,'_blocks_3_row_content','field_6487008ba865c'),(269900,41547,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(269901,41547,'_blocks_3_video_src','field_6193c4a98ec07'),(269902,41547,'blocks_3_video_thumbnail',''),(269903,41547,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(269904,41547,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(269905,41547,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(269906,41547,'blocks_6_icon_row_items_2_label','Deposit & balance'),(269907,41547,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(269908,41547,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(269909,41547,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(269910,41547,'blocks_10_acfe_flexible_toggle','1'),(269911,41547,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(269912,41547,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(269913,41547,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(269914,41547,'blocks_10_options_theme','#ffffff'),(269915,41547,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(269916,41547,'blocks_10_options',''),(269917,41547,'_blocks_10_options','field_617ac0b7f6c08'),(269918,41547,'blocks_10_show','selection'),(269919,41547,'_blocks_10_show','field_61a49cba9d946'),(269920,41547,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(269921,41547,'_blocks_10_courses','field_61b244781ee0a'),(269922,41547,'blocks_10_open_whats_included','1'),(269923,41547,'_blocks_10_open_whats_included','field_66ebfd679450c'),(269924,41547,'blocks_10_open_key_information','0'),(269925,41547,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(269926,41547,'blocks_10_open',''),(269927,41547,'_blocks_10_open','field_66ebfd009450b'),(269928,41547,'blocks_11_acfe_flexible_toggle',''),(269929,41547,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(269930,41547,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(269931,41547,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(269932,41547,'blocks_11_options_theme','#ffffff'),(269933,41547,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(269934,41547,'blocks_11_options_reverse','0'),(269935,41547,'_blocks_11_options_reverse','field_61768049bb8ac'),(269936,41547,'blocks_11_options',''),(269937,41547,'_blocks_11_options','field_617682517c334'),(269938,41547,'blocks_11_split_5050_image','41493'),(269939,41547,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(269940,41547,'blocks_11_split_5050_video',''),(269941,41547,'_blocks_11_split_5050_video','field_6239f3160848a'),(269942,41547,'blocks_11_split_5050_content_title','Optimise Performance '),(269943,41547,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(269944,41547,'blocks_11_split_5050_content_heading','Level 4 Strength and Conditioning Qualification with your Diploma in Biomechanics Coaching'),(269945,41547,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(269946,41547,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW125057262 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW125057262 BCX8\">Our unique programme in Biomechanics Coaching and Level 4 Strength and Conditioning offers advanced techniques that go beyond traditional training. Gain skills in biomechanics to </span><span class=\"NormalTextRun SCXW125057262 BCX8\">identify</span><span class=\"NormalTextRun SCXW125057262 BCX8\"> movement patterns, assess functional performance, and optimise training plans. Ideal for trainers and coaches, this qualification enables you to deliver scientifically backed, targeted conditioning to improve client results.</span></span><span class=\"EOP SCXW125057262 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW39222847 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW39222847 BCX8\">As a qualified level 4 </span><span class=\"NormalTextRun SCXW39222847 BCX8\">Strength &amp; Conditioning</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> expert</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> you will be able to: </span></span> </strong>\r\n<ul>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">The role of a strength and conditioning coach as part of an athlete’s support team.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Methods of carrying out performance-related needs analysis, measurements and assessments.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Strategies to analyse and evaluate assessment findings to be able to develop and </span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">agree short, medium, and long-term performance goals.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Planning, delivering and evaluating periodised, performance-related strength and conditioning programmes.</span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-ccp-props=\"{}\"> </span></li>\r\n</ul>'),(269947,41547,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(269948,41547,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41533-3\";s:6:\"target\";s:0:\"\";}'),(269949,41547,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(269950,41547,'blocks_11_split_5050_content_actions','1'),(269951,41547,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(269952,41547,'blocks_11_split_5050_content',''),(269953,41547,'_blocks_11_split_5050_content','field_61767afceb8ba'),(269954,41547,'blocks_12_acfe_flexible_toggle',''),(269955,41547,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(269956,41547,'blocks_12_acfe_flexible_layout_title','Template'),(269957,41547,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(269958,41547,'blocks_12_template','40987'),(269959,41547,'_blocks_12_template','field_617bdd570fe01'),(269960,41547,'blocks_13_acfe_flexible_toggle',''),(269961,41547,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(269962,41547,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(269963,41547,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(269964,41547,'blocks_13_options_theme','#f5f5f5'),(269965,41547,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(269966,41547,'blocks_13_options_state','0'),(269967,41547,'_blocks_13_options_state','field_6239fcb7508c5'),(269968,41547,'blocks_13_options',''),(269969,41547,'_blocks_13_options','field_6177e2991ac44'),(269970,41547,'blocks_13_content_title',''),(269971,41547,'_blocks_13_content_title','field_64d237e8bb1e2'),(269972,41547,'blocks_13_content_heading','FAQ\'s'),(269973,41547,'_blocks_13_content_heading','field_64d237e8bb1e3'),(269974,41547,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(269975,41547,'_blocks_13_content_text','field_64d237e8bb1e4'),(269976,41547,'blocks_13_content_actions',''),(269977,41547,'_blocks_13_content_actions','field_64d237e8bb1e5'),(269978,41547,'blocks_13_content_align','left'),(269979,41547,'_blocks_13_content_align','field_64d2443e6b6aa'),(269980,41547,'blocks_13_content',''),(269981,41547,'_blocks_13_content','field_64d237e8bb1e1'),(269982,41547,'blocks_13_accordion_content','faqs'),(269983,41547,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(269984,41547,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41534\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(269985,41547,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(269986,41547,'blocks_13_actions',''),(269987,41547,'_blocks_13_actions','field_61a746a817f7a'),(270090,40858,'_wp_old_date','2024-10-28'),(270091,39348,'_wp_old_date','2024-10-28'),(270092,39486,'_wp_old_date','2024-10-28'),(270093,39485,'_wp_old_date','2024-10-28'),(270094,39487,'_wp_old_date','2024-10-28'),(270095,39279,'_wp_old_date','2024-10-28'),(270096,39325,'_wp_old_date','2024-10-28'),(270097,39324,'_wp_old_date','2024-10-28'),(270098,39323,'_wp_old_date','2024-10-28'),(270099,39322,'_wp_old_date','2024-10-28'),(270100,39321,'_wp_old_date','2024-10-28'),(270101,39320,'_wp_old_date','2024-10-28'),(270102,39319,'_wp_old_date','2024-10-28'),(270103,39281,'_wp_old_date','2024-10-28'),(270104,39344,'_wp_old_date','2024-10-28'),(270105,39318,'_wp_old_date','2024-10-28'),(270106,39522,'_wp_old_date','2024-10-28'),(270109,41286,'_wp_old_date','2024-10-28'),(270110,39280,'_wp_old_date','2024-10-28'),(270111,41573,'_menu_item_type','post_type'),(270112,41573,'_menu_item_menu_item_parent','39278'),(270113,41573,'_menu_item_object_id','41520'),(270114,41573,'_menu_item_object','course'),(270115,41573,'_menu_item_target',''),(270116,41573,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(270117,41573,'_menu_item_xfn',''),(270118,41573,'_menu_item_url',''),(270119,41574,'_menu_item_type','post_type'),(270120,41574,'_menu_item_menu_item_parent','39278'),(270121,41574,'_menu_item_object_id','41533'),(270122,41574,'_menu_item_object','course'),(270123,41574,'_menu_item_target',''),(270124,41574,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(270125,41574,'_menu_item_xfn',''),(270126,41574,'_menu_item_url',''),(270127,41575,'_menu_item_type','post_type'),(270128,41575,'_menu_item_menu_item_parent','39278'),(270129,41575,'_menu_item_object_id','41455'),(270130,41575,'_menu_item_object','course'),(270131,41575,'_menu_item_target',''),(270132,41575,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(270133,41575,'_menu_item_xfn',''),(270134,41575,'_menu_item_url',''),(270135,41576,'_menu_item_type','post_type'),(270136,41576,'_menu_item_menu_item_parent','39278'),(270137,41576,'_menu_item_object_id','41425'),(270138,41576,'_menu_item_object','course'),(270139,41576,'_menu_item_target',''),(270140,41576,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(270141,41576,'_menu_item_xfn',''),(270142,41576,'_menu_item_url',''),(270145,41578,'_edit_lock','1731503429:1'),(270146,41562,'_edit_lock','1731501943:1'),(270147,41577,'_edit_lock','1731503583:1'),(270148,41561,'_edit_lock','1731502177:1'),(270149,41564,'_edit_lock','1731503466:1'),(270150,41559,'_edit_lock','1731503509:1'),(270151,41557,'_edit_lock','1731503497:1'),(270152,41555,'_edit_lock','1731503491:1'),(270153,41550,'_edit_lock','1731502223:1'),(270154,41556,'_edit_lock','1731503579:1'),(270155,41519,'_edit_lock','1731503613:1'),(270156,41451,'_edit_lock','1731502368:1'),(270157,41558,'_edit_lock','1731503594:1'),(270158,41553,'_edit_lock','1731503418:1'),(270159,41565,'_edit_lock','1731503460:1'),(270160,41551,'_edit_lock','1731503525:1'),(270161,41549,'_edit_lock','1731503601:1'),(270162,41548,'_edit_lock','1731503609:1'),(270163,41392,'_edit_lock','1731503669:1'),(270164,41360,'_edit_lock','1731503695:1'),(270165,41353,'_edit_lock','1731503718:1'),(270166,41348,'_edit_lock','1731503722:1'),(270167,41343,'_edit_lock','1731503734:1'),(270168,41339,'_edit_lock','1731503740:1'),(270169,41338,'_edit_lock','1731503748:1'),(270170,41279,'_edit_lock','1731503908:1'),(270229,41598,'_fft_id','192'),(270230,41598,'_fft_catalogue_id','43dddea2-c93a-ef11-a316-6045bd0f452f'),(270231,41598,'_fft_code','BMFSCC'),(270232,41598,'_fft_name','Biomechanics for Strength and Conditioning Coaches'),(270233,41598,'_fft_description',NULL),(270234,41598,'_fft_metadata_school','biomechanics'),(270235,41598,'_fft_metadata_flex_id','1325'),(270236,41598,'_fft_metadata_type_id','100000000'),(270237,41598,'_fft_metadata_flex_type','collection'),(270238,41598,'_fft_metadata_type_label','Course'),(270239,41598,'_fft_metadata_course_type_id','100000002'),(270240,41598,'_fft_metadata_course_type_label','Online Learning'),(270241,41598,'_fft_metadata_productstructure_id','1'),(270242,41598,'_fft_metadata_productstructure_label','Product'),(270243,41598,'_fft_taxable','1'),(270244,41598,'_fft_created_at','1724086111'),(270245,41598,'_fft_updated_at','1743078580'),(270246,41598,'_fft_price_id','195'),(270247,41598,'_fft_price_value','115.83'),(270248,41598,'_fft_price_begins_at',NULL),(270249,41598,'_fft_price_expires_at',NULL),(270250,41598,'_fft_price_value_inc_tax','139'),(270251,41598,'_fft_error',''),(270252,41598,'_fft_saved_at','1751618582'),(270253,41598,'_edit_lock','1734369017:11'),(270254,41598,'_edit_last','13'),(270255,41598,'_wp_old_date','2024-09-10'),(270256,41598,'hide_hero','0'),(270257,41598,'_hide_hero','field_66a2380fcda39'),(270258,41598,'hero_title','Introduction to Biomechanics Education Course'),(270259,41598,'_hero_title','field_617571fe285e8'),(270260,41598,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education course. Use code \'intro\' at checkout to get the course for free!\r\n'),(270261,41598,'_hero_text','field_6175723c285e9'),(270262,41598,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(270263,41598,'_hero_actions_0_button','field_61757281285eb'),(270264,41598,'hero_actions','1'),(270265,41598,'_hero_actions','field_61757270285ea'),(270266,41598,'hero_style','default'),(270267,41598,'_hero_style','field_62051d9dc5324'),(270268,41598,'_thumbnail_id','41496'),(270269,41598,'__thumbnail_id','field_617570855ddaf'),(270270,41598,'hero_image_pos_x','right'),(270271,41598,'_hero_image_pos_x','field_62ec3d05390bb'),(270272,41598,'hero_image_pos_y','top'),(270273,41598,'_hero_image_pos_y','field_62ec3d05390bc'),(270274,41598,'hero_image_pos',''),(270275,41598,'_hero_image_pos','field_62ec3d05390ba'),(270276,41598,'fft_hide_from_listings','0'),(270277,41598,'_fft_hide_from_listings','field_61f1320446ab2'),(270278,41598,'fft_page_format','default'),(270279,41598,'_fft_page_format','field_61ae213f1f218'),(270280,41598,'fft_hide_nav','0'),(270281,41598,'_fft_hide_nav','field_635bd5e43527c'),(270282,41598,'fft_hide_header_call_to_action','0'),(270283,41598,'_fft_hide_header_call_to_action','field_635bd6723527d'),(270284,41598,'fft_page_sitemap','0'),(270285,41598,'_fft_page_sitemap','field_61af9b34e8181'),(270286,41598,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(270287,41598,'_blocks','field_6176696113096'),(270288,41598,'course_label_text','Introduction to Biomechanics Education Course'),(270289,41598,'_course_label_text','field_61e17babf71fa'),(270290,41598,'course_label',''),(270291,41598,'_course_label','field_61e12f92749a7'),(270292,41598,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(270293,41598,'_course_description','field_617ac5788e5e1'),(270294,41598,'course_key_info',''),(270295,41598,'_course_key_info','field_617ac6ad8e5e2'),(270296,41598,'course_included',''),(270297,41598,'_course_included','field_617ac6f08e5e4'),(270298,41598,'_yoast_wpseo_primary_course-cat','406'),(270299,41598,'_yoast_wpseo_inclusive_language_score','90'),(270300,41598,'_yoast_wpseo_estimated-reading-time-minutes','1'),(270301,41598,'blocks_0_acfe_flexible_toggle',''),(270302,41598,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(270303,41598,'blocks_0_acfe_flexible_layout_title','Icons'),(270304,41598,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(270305,41598,'blocks_0_options_theme','#ffffff'),(270306,41598,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(270307,41598,'blocks_0_options_format','row'),(270308,41598,'_blocks_0_options_format','field_64bfde9a90690'),(270309,41598,'blocks_0_options',''),(270310,41598,'_blocks_0_options','field_64bfdd9b90684'),(270311,41598,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(270312,41598,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(270313,41598,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(270314,41598,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(270315,41598,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(270316,41598,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(270317,41598,'blocks_0_icon_row_items_1_icon','build-career.svg'),(270318,41598,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(270319,41598,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(270320,41598,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(270321,41598,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(270322,41598,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(270323,41598,'blocks_0_icon_row_items_2_icon','diversify.svg'),(270324,41598,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(270325,41598,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(270326,41598,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(270327,41598,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(270328,41598,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(270329,41598,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(270330,41598,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(270331,41598,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(270332,41598,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(270333,41598,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(270334,41598,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(270335,41598,'blocks_0_icon_row_items','4'),(270336,41598,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(270337,41598,'blocks_1_acfe_flexible_toggle',''),(270338,41598,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(270339,41598,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(270340,41598,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(270341,41598,'blocks_1_options_theme','#ffffff'),(270342,41598,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(270343,41598,'blocks_1_options_reverse','0'),(270344,41598,'_blocks_1_options_reverse','field_61768049bb8ac'),(270345,41598,'blocks_1_options',''),(270346,41598,'_blocks_1_options','field_617682517c334'),(270347,41598,'blocks_1_split_5050_image','41539'),(270348,41598,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(270349,41598,'blocks_1_split_5050_video',''),(270350,41598,'_blocks_1_split_5050_video','field_6239f3160848a'),(270351,41598,'blocks_1_split_5050_content_title',''),(270352,41598,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(270353,41598,'blocks_1_split_5050_content_heading','Course Overview'),(270354,41598,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(270355,41598,'blocks_1_split_5050_content_text','Unlock the potential of intrinsic biomechanics to elevate your performance coaching and athlete development programmes. By mastering these evidence-based concepts, you’ll enhance your ability to assess movement quality, reduce injury risk, and optimise athletic performance - skills that will set you apart as a progressive strength and conditioning coach.\r\n\r\nThis 60-minute course introduces you to the fundamentals of Intrinsic Biomechanics Coaching, providing practical tools to incorporate into your strength and conditioning practice. Empower your athletes to move better, perform stronger, and recover more effectively.\r\n\r\nStart your journey today and become a certified Intrinsic Biomechanics Coach. Use code <strong>INTRO</strong> at checkout to access this course for <strong>free</strong>!\r\n\r\n​'),(270356,41598,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(270357,41598,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(270358,41598,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(270359,41598,'blocks_1_split_5050_content_actions','1'),(270360,41598,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(270361,41598,'blocks_1_split_5050_content',''),(270362,41598,'_blocks_1_split_5050_content','field_61767afceb8ba'),(270363,41598,'blocks_2_acfe_flexible_toggle',''),(270364,41598,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(270365,41598,'blocks_2_acfe_flexible_layout_title','Timeline'),(270366,41598,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(270367,41598,'blocks_2_options_theme','#ffffff'),(270368,41598,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(270369,41598,'blocks_2_options',''),(270370,41598,'_blocks_2_options','field_6177de53d1195'),(270371,41598,'blocks_2_timeline_content_title',''),(270372,41598,'_blocks_2_timeline_content_title','field_6177de53d1198'),(270373,41598,'blocks_2_timeline_content_heading','How to enrol on this course'),(270374,41598,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(270375,41598,'blocks_2_timeline_content_text','Enrolling is easy. Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(270376,41598,'_blocks_2_timeline_content_text','field_6177de53d119a'),(270377,41598,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(270378,41598,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(270379,41598,'blocks_2_timeline_content_actions','1'),(270380,41598,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(270381,41598,'blocks_2_timeline_content',''),(270382,41598,'_blocks_2_timeline_content','field_6177de53d1197'),(270383,41598,'blocks_2_timeline_items_0_title','Enrol Now'),(270384,41598,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(270385,41598,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(270386,41598,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(270387,41598,'blocks_2_timeline_items_1_title','Progress to Checkout'),(270388,41598,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(270389,41598,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(270390,41598,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(270391,41598,'blocks_2_timeline_items_2_title','Get Access'),(270392,41598,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(270393,41598,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(270394,41598,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(270395,41598,'blocks_2_timeline_items_3_title','Complete the Course'),(270396,41598,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(270397,41598,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(270398,41598,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(270399,41598,'blocks_2_timeline_items','4'),(270400,41598,'_blocks_2_timeline_items','field_6177de53d119d'),(270401,41598,'blocks_3_acfe_flexible_toggle',''),(270402,41598,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(270403,41598,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(270404,41598,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(270405,41598,'blocks_3_options_theme','#ffffff'),(270406,41598,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(270407,41598,'blocks_3_options_reverse','0'),(270408,41598,'_blocks_3_options_reverse','field_61768049bb8ac'),(270409,41598,'blocks_3_options',''),(270410,41598,'_blocks_3_options','field_617682517c334'),(270411,41598,'blocks_3_split_5050_image',''),(270412,41598,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(270413,41598,'blocks_3_split_5050_video','https://youtu.be/xgRiAj1qEog'),(270414,41598,'_blocks_3_split_5050_video','field_6239f3160848a'),(270415,41598,'blocks_3_split_5050_content_title',''),(270416,41598,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(270417,41598,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(270418,41598,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(270419,41598,'blocks_3_split_5050_content_text','As a strength and conditioning coach, you already understand how movement quality and athletic performance go hand in hand – but what if you could take that knowledge to a new level? The Biomechanics Coaching Diploma is designed to broaden your expertise, equipping you with advanced tools to assess and improve intrinsic biomechanics, enabling you to optimise your athletes’ performance and reduce injury risk.\r\n\r\nThis free, 1-hour introductory course is the perfect starting point, offering insights that could transform how you approach movement and body mechanics in your coaching practice. By learning to view the body as an integrated system, you’ll gain techniques to address movement restrictions holistically, helping your athletes achieve better functional movement, enhance recovery, and minimise the risk of future injuries.\r\n\r\nReady to get started? Use code <strong>INTRO</strong> at checkout to access this introductory course for <strong>free</strong> and take the first step towards advanced expertise.'),(270420,41598,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(270421,41598,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(270422,41598,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(270423,41598,'blocks_3_split_5050_content_actions','1'),(270424,41598,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(270425,41598,'blocks_3_split_5050_content',''),(270426,41598,'_blocks_3_split_5050_content','field_61767afceb8ba'),(270427,41598,'blocks_4_acfe_flexible_toggle',''),(270428,41598,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(270429,41598,'blocks_4_acfe_flexible_layout_title','Icons'),(270430,41598,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(270431,41598,'blocks_4_options_theme','#ffffff'),(270432,41598,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(270433,41598,'blocks_4_options_format','grid'),(270434,41598,'_blocks_4_options_format','field_64bfde9a90690'),(270435,41598,'blocks_4_options',''),(270436,41598,'_blocks_4_options','field_64bfdd9b90684'),(270437,41598,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(270438,41598,'_blocks_4_row_content_title','field_64bfdd9b90687'),(270439,41598,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(270440,41598,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(270441,41598,'blocks_4_row_content_text',''),(270442,41598,'_blocks_4_row_content_text','field_64bfdd9b90689'),(270443,41598,'blocks_4_row_content_actions',''),(270444,41598,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(270445,41598,'blocks_4_row_content',''),(270446,41598,'_blocks_4_row_content','field_64bfdd9b90686'),(270447,41598,'blocks_4_icon_row_items_0_icon','build-career.svg'),(270448,41598,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(270449,41598,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(270450,41598,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(270451,41598,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(270452,41598,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(270453,41598,'blocks_4_icon_row_items_1_icon','qualification.svg'),(270454,41598,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(270455,41598,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(270456,41598,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(270457,41598,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(270458,41598,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(270459,41598,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(270460,41598,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(270461,41598,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(270462,41598,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(270463,41598,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(270464,41598,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(270465,41598,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(270466,41598,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(270467,41598,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(270468,41598,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(270469,41598,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(270470,41598,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(270471,41598,'blocks_4_icon_row_items','4'),(270472,41598,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(270473,41598,'blocks_5_acfe_flexible_toggle',''),(270474,41598,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(270475,41598,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(270476,41598,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(270477,41598,'blocks_5_options_theme','#ffffff'),(270478,41598,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(270479,41598,'blocks_5_options_reverse','0'),(270480,41598,'_blocks_5_options_reverse','field_61768049bb8ac'),(270481,41598,'blocks_5_options',''),(270482,41598,'_blocks_5_options','field_617682517c334'),(270483,41598,'blocks_5_split_5050_image','41241'),(270484,41598,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(270485,41598,'blocks_5_split_5050_video',''),(270486,41598,'_blocks_5_split_5050_video','field_6239f3160848a'),(270487,41598,'blocks_5_split_5050_content_title',''),(270488,41598,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(270489,41598,'blocks_5_split_5050_content_heading','What\'s included?'),(270490,41598,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(270491,41598,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(270492,41598,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(270493,41598,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(270494,41598,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(270495,41598,'blocks_5_split_5050_content_actions','1'),(270496,41598,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(270497,41598,'blocks_5_split_5050_content',''),(270498,41598,'_blocks_5_split_5050_content','field_61767afceb8ba'),(270499,41598,'blocks_6_acfe_flexible_toggle',''),(270500,41598,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(270501,41598,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(270502,41598,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(270503,41598,'blocks_6_options_alignment','left'),(270504,41598,'_blocks_6_options_alignment','field_61769449f5490'),(270505,41598,'blocks_6_options',''),(270506,41598,'_blocks_6_options','field_617693e1428f0'),(270507,41598,'blocks_6_promo_panel_image','41242'),(270508,41598,'_blocks_6_promo_panel_image','field_617693e1428f3'),(270509,41598,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(270510,41598,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(270511,41598,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(270512,41598,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(270513,41598,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(270514,41598,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(270515,41598,'blocks_6_promo_panel_content_actions','1'),(270516,41598,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(270517,41598,'blocks_6_promo_panel_content',''),(270518,41598,'_blocks_6_promo_panel_content','field_617693e1428f4'),(270519,41598,'course_label_label_theme','#0d1f73'),(270520,41598,'_course_label_label_theme','field_61e17bb8f71fb'),(270521,41598,'_yoast_wpseo_focuskw','Introduction to Biomechanics Education Course'),(270522,41598,'_yoast_wpseo_metadesc','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(270523,41598,'_yoast_wpseo_linkdex','28'),(270524,41598,'_fft_show','1'),(270525,41598,'_fft_plan',NULL),(270526,41598,'_wp_old_slug','biomechanics-for-pilates-teachers-copy'),(270527,41599,'hide_hero','0'),(270528,41599,'_hide_hero','field_66a2380fcda39'),(270529,41599,'hero_title','Introduction to Biomechanics Education Course'),(270530,41599,'_hero_title','field_617571fe285e8'),(270531,41599,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education course. Use code \'intro\' at checkout to get the course for free!\r\n'),(270532,41599,'_hero_text','field_6175723c285e9'),(270533,41599,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(270534,41599,'_hero_actions_0_button','field_61757281285eb'),(270535,41599,'hero_actions','1'),(270536,41599,'_hero_actions','field_61757270285ea'),(270537,41599,'hero_style','default'),(270538,41599,'_hero_style','field_62051d9dc5324'),(270539,41599,'_thumbnail_id','41412'),(270540,41599,'__thumbnail_id','field_617570855ddaf'),(270541,41599,'hero_image_pos_x','right'),(270542,41599,'_hero_image_pos_x','field_62ec3d05390bb'),(270543,41599,'hero_image_pos_y','top'),(270544,41599,'_hero_image_pos_y','field_62ec3d05390bc'),(270545,41599,'hero_image_pos',''),(270546,41599,'_hero_image_pos','field_62ec3d05390ba'),(270547,41599,'fft_hide_from_listings','0'),(270548,41599,'_fft_hide_from_listings','field_61f1320446ab2'),(270549,41599,'fft_page_format','default'),(270550,41599,'_fft_page_format','field_61ae213f1f218'),(270551,41599,'fft_hide_nav','0'),(270552,41599,'_fft_hide_nav','field_635bd5e43527c'),(270553,41599,'fft_hide_header_call_to_action','0'),(270554,41599,'_fft_hide_header_call_to_action','field_635bd6723527d'),(270555,41599,'fft_page_sitemap','0'),(270556,41599,'_fft_page_sitemap','field_61af9b34e8181'),(270557,41599,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(270558,41599,'_blocks','field_6176696113096'),(270559,41599,'course_label_text','Introduction to Biomechanics Education Course'),(270560,41599,'_course_label_text','field_61e17babf71fa'),(270561,41599,'course_label',''),(270562,41599,'_course_label','field_61e12f92749a7'),(270563,41599,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(270564,41599,'_course_description','field_617ac5788e5e1'),(270565,41599,'course_key_info',''),(270566,41599,'_course_key_info','field_617ac6ad8e5e2'),(270567,41599,'course_included',''),(270568,41599,'_course_included','field_617ac6f08e5e4'),(270569,41599,'blocks_0_acfe_flexible_toggle',''),(270570,41599,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(270571,41599,'blocks_0_acfe_flexible_layout_title','Icons'),(270572,41599,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(270573,41599,'blocks_0_options_theme','#ffffff'),(270574,41599,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(270575,41599,'blocks_0_options_format','row'),(270576,41599,'_blocks_0_options_format','field_64bfde9a90690'),(270577,41599,'blocks_0_options',''),(270578,41599,'_blocks_0_options','field_64bfdd9b90684'),(270579,41599,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(270580,41599,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(270581,41599,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(270582,41599,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(270583,41599,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(270584,41599,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(270585,41599,'blocks_0_icon_row_items_1_icon','build-career.svg'),(270586,41599,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(270587,41599,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(270588,41599,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(270589,41599,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(270590,41599,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(270591,41599,'blocks_0_icon_row_items_2_icon','diversify.svg'),(270592,41599,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(270593,41599,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(270594,41599,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(270595,41599,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(270596,41599,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(270597,41599,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(270598,41599,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(270599,41599,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(270600,41599,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(270601,41599,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(270602,41599,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(270603,41599,'blocks_0_icon_row_items','4'),(270604,41599,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(270605,41599,'blocks_1_acfe_flexible_toggle',''),(270606,41599,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(270607,41599,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(270608,41599,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(270609,41599,'blocks_1_options_theme','#ffffff'),(270610,41599,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(270611,41599,'blocks_1_options_reverse','0'),(270612,41599,'_blocks_1_options_reverse','field_61768049bb8ac'),(270613,41599,'blocks_1_options',''),(270614,41599,'_blocks_1_options','field_617682517c334'),(270615,41599,'blocks_1_split_5050_image','41300'),(270616,41599,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(270617,41599,'blocks_1_split_5050_video',''),(270618,41599,'_blocks_1_split_5050_video','field_6239f3160848a'),(270619,41599,'blocks_1_split_5050_content_title',''),(270620,41599,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(270621,41599,'blocks_1_split_5050_content_heading','Course Overview'),(270622,41599,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(270623,41599,'blocks_1_split_5050_content_text','Unlock the secrets of intrinsic biomechanics and elevate your sports massage therapy and coaching. By mastering these concepts, you\'ll become a sought-after expert in the field, gaining unique skills that set you apart in the market.\r\n\r\nStart your journey with this 60-minute course and become an Intrinsic Biomechanics Coach. Join us in promoting active well-being and improving health on a broader scale!\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access this course for free.\r\n\r\n​'),(270624,41599,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(270625,41599,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(270626,41599,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(270627,41599,'blocks_1_split_5050_content_actions','1'),(270628,41599,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(270629,41599,'blocks_1_split_5050_content',''),(270630,41599,'_blocks_1_split_5050_content','field_61767afceb8ba'),(270631,41599,'blocks_2_acfe_flexible_toggle',''),(270632,41599,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(270633,41599,'blocks_2_acfe_flexible_layout_title','Timeline'),(270634,41599,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(270635,41599,'blocks_2_options_theme','#ffffff'),(270636,41599,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(270637,41599,'blocks_2_options',''),(270638,41599,'_blocks_2_options','field_6177de53d1195'),(270639,41599,'blocks_2_timeline_content_title',''),(270640,41599,'_blocks_2_timeline_content_title','field_6177de53d1198'),(270641,41599,'blocks_2_timeline_content_heading','How to enrol on this course'),(270642,41599,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(270643,41599,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(270644,41599,'_blocks_2_timeline_content_text','field_6177de53d119a'),(270645,41599,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(270646,41599,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(270647,41599,'blocks_2_timeline_content_actions','1'),(270648,41599,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(270649,41599,'blocks_2_timeline_content',''),(270650,41599,'_blocks_2_timeline_content','field_6177de53d1197'),(270651,41599,'blocks_2_timeline_items_0_title','Enrol Now'),(270652,41599,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(270653,41599,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(270654,41599,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(270655,41599,'blocks_2_timeline_items_1_title','Progress to Checkout'),(270656,41599,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(270657,41599,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(270658,41599,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(270659,41599,'blocks_2_timeline_items_2_title','Get Access'),(270660,41599,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(270661,41599,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(270662,41599,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(270663,41599,'blocks_2_timeline_items_3_title','Complete the Course'),(270664,41599,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(270665,41599,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(270666,41599,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(270667,41599,'blocks_2_timeline_items','4'),(270668,41599,'_blocks_2_timeline_items','field_6177de53d119d'),(270669,41599,'blocks_3_acfe_flexible_toggle',''),(270670,41599,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(270671,41599,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(270672,41599,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(270673,41599,'blocks_3_options_theme','#ffffff'),(270674,41599,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(270675,41599,'blocks_3_options_reverse','0'),(270676,41599,'_blocks_3_options_reverse','field_61768049bb8ac'),(270677,41599,'blocks_3_options',''),(270678,41599,'_blocks_3_options','field_617682517c334'),(270679,41599,'blocks_3_split_5050_image',''),(270680,41599,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(270681,41599,'blocks_3_split_5050_video','https://youtu.be/xgRiAj1qEog'),(270682,41599,'_blocks_3_split_5050_video','field_6239f3160848a'),(270683,41599,'blocks_3_split_5050_content_title',''),(270684,41599,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(270685,41599,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(270686,41599,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(270687,41599,'blocks_3_split_5050_content_text','As a sports massage therapist, you already know how movement and muscle health go hand in hand – but what if you could take that understanding to a new level? The Biomechanics Coaching Diploma is crafted to broaden your expertise, giving you advanced tools to assess and improve your clients\' intrinsic biomechanics for more effective treatments and lasting results.\r\n\r\nThis free, 1-hour introductory course is a perfect first step, offering insights that may shift how you approach movement and body mechanics in your practice. By learning to view the body as an integrated system, you’ll gain techniques to address movement restrictions holistically, helping clients not only feel relief but achieve better functional movement and reduce risk of future issues.\r\n\r\nReady to get started? Use code <strong>INTRO</strong> at checkout to access this introductory course for free and take the first step toward deeper expertise.'),(270688,41599,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(270689,41599,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(270690,41599,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(270691,41599,'blocks_3_split_5050_content_actions','1'),(270692,41599,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(270693,41599,'blocks_3_split_5050_content',''),(270694,41599,'_blocks_3_split_5050_content','field_61767afceb8ba'),(270695,41599,'blocks_4_acfe_flexible_toggle',''),(270696,41599,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(270697,41599,'blocks_4_acfe_flexible_layout_title','Icons'),(270698,41599,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(270699,41599,'blocks_4_options_theme','#ffffff'),(270700,41599,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(270701,41599,'blocks_4_options_format','grid'),(270702,41599,'_blocks_4_options_format','field_64bfde9a90690'),(270703,41599,'blocks_4_options',''),(270704,41599,'_blocks_4_options','field_64bfdd9b90684'),(270705,41599,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(270706,41599,'_blocks_4_row_content_title','field_64bfdd9b90687'),(270707,41599,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(270708,41599,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(270709,41599,'blocks_4_row_content_text',''),(270710,41599,'_blocks_4_row_content_text','field_64bfdd9b90689'),(270711,41599,'blocks_4_row_content_actions',''),(270712,41599,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(270713,41599,'blocks_4_row_content',''),(270714,41599,'_blocks_4_row_content','field_64bfdd9b90686'),(270715,41599,'blocks_4_icon_row_items_0_icon','build-career.svg'),(270716,41599,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(270717,41599,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(270718,41599,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(270719,41599,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(270720,41599,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(270721,41599,'blocks_4_icon_row_items_1_icon','qualification.svg'),(270722,41599,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(270723,41599,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(270724,41599,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(270725,41599,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(270726,41599,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(270727,41599,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(270728,41599,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(270729,41599,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(270730,41599,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(270731,41599,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(270732,41599,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(270733,41599,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(270734,41599,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(270735,41599,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(270736,41599,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(270737,41599,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(270738,41599,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(270739,41599,'blocks_4_icon_row_items','4'),(270740,41599,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(270741,41599,'blocks_5_acfe_flexible_toggle',''),(270742,41599,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(270743,41599,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(270744,41599,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(270745,41599,'blocks_5_options_theme','#ffffff'),(270746,41599,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(270747,41599,'blocks_5_options_reverse','0'),(270748,41599,'_blocks_5_options_reverse','field_61768049bb8ac'),(270749,41599,'blocks_5_options',''),(270750,41599,'_blocks_5_options','field_617682517c334'),(270751,41599,'blocks_5_split_5050_image','41241'),(270752,41599,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(270753,41599,'blocks_5_split_5050_video',''),(270754,41599,'_blocks_5_split_5050_video','field_6239f3160848a'),(270755,41599,'blocks_5_split_5050_content_title',''),(270756,41599,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(270757,41599,'blocks_5_split_5050_content_heading','What\'s included?'),(270758,41599,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(270759,41599,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(270760,41599,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(270761,41599,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(270762,41599,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(270763,41599,'blocks_5_split_5050_content_actions','1'),(270764,41599,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(270765,41599,'blocks_5_split_5050_content',''),(270766,41599,'_blocks_5_split_5050_content','field_61767afceb8ba'),(270767,41599,'blocks_6_acfe_flexible_toggle',''),(270768,41599,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(270769,41599,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(270770,41599,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(270771,41599,'blocks_6_options_alignment','left'),(270772,41599,'_blocks_6_options_alignment','field_61769449f5490'),(270773,41599,'blocks_6_options',''),(270774,41599,'_blocks_6_options','field_617693e1428f0'),(270775,41599,'blocks_6_promo_panel_image','41242'),(270776,41599,'_blocks_6_promo_panel_image','field_617693e1428f3'),(270777,41599,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(270778,41599,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(270779,41599,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(270780,41599,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(270781,41599,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(270782,41599,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(270783,41599,'blocks_6_promo_panel_content_actions','1'),(270784,41599,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(270785,41599,'blocks_6_promo_panel_content',''),(270786,41599,'_blocks_6_promo_panel_content','field_617693e1428f4'),(270787,41599,'course_label_label_theme','#0d1f73'),(270788,41599,'_course_label_label_theme','field_61e17bb8f71fb'),(271051,41598,'_wp_old_slug','biomechanics-for-sports-massage-therapists-copy'),(271052,41601,'hide_hero','0'),(271053,41601,'_hide_hero','field_66a2380fcda39'),(271054,41601,'hero_title','Introduction to Biomechanics Education Course'),(271055,41601,'_hero_title','field_617571fe285e8'),(271056,41601,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education course. Use code \'intro\' at checkout to get the course for free!\r\n'),(271057,41601,'_hero_text','field_6175723c285e9'),(271058,41601,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271059,41601,'_hero_actions_0_button','field_61757281285eb'),(271060,41601,'hero_actions','1'),(271061,41601,'_hero_actions','field_61757270285ea'),(271062,41601,'hero_style','default'),(271063,41601,'_hero_style','field_62051d9dc5324'),(271064,41601,'_thumbnail_id','41412'),(271065,41601,'__thumbnail_id','field_617570855ddaf'),(271066,41601,'hero_image_pos_x','right'),(271067,41601,'_hero_image_pos_x','field_62ec3d05390bb'),(271068,41601,'hero_image_pos_y','top'),(271069,41601,'_hero_image_pos_y','field_62ec3d05390bc'),(271070,41601,'hero_image_pos',''),(271071,41601,'_hero_image_pos','field_62ec3d05390ba'),(271072,41601,'fft_hide_from_listings','0'),(271073,41601,'_fft_hide_from_listings','field_61f1320446ab2'),(271074,41601,'fft_page_format','default'),(271075,41601,'_fft_page_format','field_61ae213f1f218'),(271076,41601,'fft_hide_nav','0'),(271077,41601,'_fft_hide_nav','field_635bd5e43527c'),(271078,41601,'fft_hide_header_call_to_action','0'),(271079,41601,'_fft_hide_header_call_to_action','field_635bd6723527d'),(271080,41601,'fft_page_sitemap','0'),(271081,41601,'_fft_page_sitemap','field_61af9b34e8181'),(271082,41601,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(271083,41601,'_blocks','field_6176696113096'),(271084,41601,'course_label_text','Introduction to Biomechanics Education Course'),(271085,41601,'_course_label_text','field_61e17babf71fa'),(271086,41601,'course_label',''),(271087,41601,'_course_label','field_61e12f92749a7'),(271088,41601,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(271089,41601,'_course_description','field_617ac5788e5e1'),(271090,41601,'course_key_info',''),(271091,41601,'_course_key_info','field_617ac6ad8e5e2'),(271092,41601,'course_included',''),(271093,41601,'_course_included','field_617ac6f08e5e4'),(271094,41601,'blocks_0_acfe_flexible_toggle',''),(271095,41601,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(271096,41601,'blocks_0_acfe_flexible_layout_title','Icons'),(271097,41601,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(271098,41601,'blocks_0_options_theme','#ffffff'),(271099,41601,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(271100,41601,'blocks_0_options_format','row'),(271101,41601,'_blocks_0_options_format','field_64bfde9a90690'),(271102,41601,'blocks_0_options',''),(271103,41601,'_blocks_0_options','field_64bfdd9b90684'),(271104,41601,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(271105,41601,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(271106,41601,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(271107,41601,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(271108,41601,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(271109,41601,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(271110,41601,'blocks_0_icon_row_items_1_icon','build-career.svg'),(271111,41601,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(271112,41601,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(271113,41601,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(271114,41601,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(271115,41601,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(271116,41601,'blocks_0_icon_row_items_2_icon','diversify.svg'),(271117,41601,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(271118,41601,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(271119,41601,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(271120,41601,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(271121,41601,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(271122,41601,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(271123,41601,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(271124,41601,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(271125,41601,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(271126,41601,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(271127,41601,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(271128,41601,'blocks_0_icon_row_items','4'),(271129,41601,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(271130,41601,'blocks_1_acfe_flexible_toggle',''),(271131,41601,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(271132,41601,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(271133,41601,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(271134,41601,'blocks_1_options_theme','#ffffff'),(271135,41601,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(271136,41601,'blocks_1_options_reverse','0'),(271137,41601,'_blocks_1_options_reverse','field_61768049bb8ac'),(271138,41601,'blocks_1_options',''),(271139,41601,'_blocks_1_options','field_617682517c334'),(271140,41601,'blocks_1_split_5050_image','41539'),(271141,41601,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(271142,41601,'blocks_1_split_5050_video',''),(271143,41601,'_blocks_1_split_5050_video','field_6239f3160848a'),(271144,41601,'blocks_1_split_5050_content_title',''),(271145,41601,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(271146,41601,'blocks_1_split_5050_content_heading','Course Overview'),(271147,41601,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(271148,41601,'blocks_1_split_5050_content_text','Unlock the potential of intrinsic biomechanics to elevate your performance coaching and athlete development programmes. By mastering these evidence-based concepts, you’ll enhance your ability to assess movement quality, reduce injury risk, and optimise athletic performance - skills that will set you apart as a progressive strength and conditioning coach.\r\n\r\nThis 60-minute course introduces you to the fundamentals of Intrinsic Biomechanics Coaching, providing practical tools to incorporate into your strength and conditioning practice. Empower your athletes to move better, perform stronger, and recover more effectively.\r\n\r\nStart your journey today and become a certified Intrinsic Biomechanics Coach. Use code <strong>INTRO</strong> at checkout to access this course for <strong>free</strong>!\r\n\r\n​'),(271149,41601,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(271150,41601,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271151,41601,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(271152,41601,'blocks_1_split_5050_content_actions','1'),(271153,41601,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(271154,41601,'blocks_1_split_5050_content',''),(271155,41601,'_blocks_1_split_5050_content','field_61767afceb8ba'),(271156,41601,'blocks_2_acfe_flexible_toggle',''),(271157,41601,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(271158,41601,'blocks_2_acfe_flexible_layout_title','Timeline'),(271159,41601,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(271160,41601,'blocks_2_options_theme','#ffffff'),(271161,41601,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(271162,41601,'blocks_2_options',''),(271163,41601,'_blocks_2_options','field_6177de53d1195'),(271164,41601,'blocks_2_timeline_content_title',''),(271165,41601,'_blocks_2_timeline_content_title','field_6177de53d1198'),(271166,41601,'blocks_2_timeline_content_heading','How to enrol on this course'),(271167,41601,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(271168,41601,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(271169,41601,'_blocks_2_timeline_content_text','field_6177de53d119a'),(271170,41601,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271171,41601,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(271172,41601,'blocks_2_timeline_content_actions','1'),(271173,41601,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(271174,41601,'blocks_2_timeline_content',''),(271175,41601,'_blocks_2_timeline_content','field_6177de53d1197'),(271176,41601,'blocks_2_timeline_items_0_title','Enrol Now'),(271177,41601,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(271178,41601,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(271179,41601,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(271180,41601,'blocks_2_timeline_items_1_title','Progress to Checkout'),(271181,41601,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(271182,41601,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(271183,41601,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(271184,41601,'blocks_2_timeline_items_2_title','Get Access'),(271185,41601,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(271186,41601,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(271187,41601,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(271188,41601,'blocks_2_timeline_items_3_title','Complete the Course'),(271189,41601,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(271190,41601,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(271191,41601,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(271192,41601,'blocks_2_timeline_items','4'),(271193,41601,'_blocks_2_timeline_items','field_6177de53d119d'),(271194,41601,'blocks_3_acfe_flexible_toggle',''),(271195,41601,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(271196,41601,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(271197,41601,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(271198,41601,'blocks_3_options_theme','#ffffff'),(271199,41601,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(271200,41601,'blocks_3_options_reverse','0'),(271201,41601,'_blocks_3_options_reverse','field_61768049bb8ac'),(271202,41601,'blocks_3_options',''),(271203,41601,'_blocks_3_options','field_617682517c334'),(271204,41601,'blocks_3_split_5050_image',''),(271205,41601,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(271206,41601,'blocks_3_split_5050_video','https://youtu.be/xgRiAj1qEog'),(271207,41601,'_blocks_3_split_5050_video','field_6239f3160848a'),(271208,41601,'blocks_3_split_5050_content_title',''),(271209,41601,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(271210,41601,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(271211,41601,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(271212,41601,'blocks_3_split_5050_content_text','As a sports massage therapist, you already know how movement and muscle health go hand in hand – but what if you could take that understanding to a new level? The Biomechanics Coaching Diploma is crafted to broaden your expertise, giving you advanced tools to assess and improve your clients\' intrinsic biomechanics for more effective treatments and lasting results.\r\n\r\nThis free, 1-hour introductory course is a perfect first step, offering insights that may shift how you approach movement and body mechanics in your practice. By learning to view the body as an integrated system, you’ll gain techniques to address movement restrictions holistically, helping clients not only feel relief but achieve better functional movement and reduce risk of future issues.\r\n\r\nReady to get started? Use code <strong>INTRO</strong> at checkout to access this introductory course for free and take the first step toward deeper expertise.'),(271213,41601,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(271214,41601,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271215,41601,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(271216,41601,'blocks_3_split_5050_content_actions','1'),(271217,41601,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(271218,41601,'blocks_3_split_5050_content',''),(271219,41601,'_blocks_3_split_5050_content','field_61767afceb8ba'),(271220,41601,'blocks_4_acfe_flexible_toggle',''),(271221,41601,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(271222,41601,'blocks_4_acfe_flexible_layout_title','Icons'),(271223,41601,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(271224,41601,'blocks_4_options_theme','#ffffff'),(271225,41601,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(271226,41601,'blocks_4_options_format','grid'),(271227,41601,'_blocks_4_options_format','field_64bfde9a90690'),(271228,41601,'blocks_4_options',''),(271229,41601,'_blocks_4_options','field_64bfdd9b90684'),(271230,41601,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(271231,41601,'_blocks_4_row_content_title','field_64bfdd9b90687'),(271232,41601,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(271233,41601,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(271234,41601,'blocks_4_row_content_text',''),(271235,41601,'_blocks_4_row_content_text','field_64bfdd9b90689'),(271236,41601,'blocks_4_row_content_actions',''),(271237,41601,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(271238,41601,'blocks_4_row_content',''),(271239,41601,'_blocks_4_row_content','field_64bfdd9b90686'),(271240,41601,'blocks_4_icon_row_items_0_icon','build-career.svg'),(271241,41601,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(271242,41601,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(271243,41601,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(271244,41601,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(271245,41601,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(271246,41601,'blocks_4_icon_row_items_1_icon','qualification.svg'),(271247,41601,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(271248,41601,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(271249,41601,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(271250,41601,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(271251,41601,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(271252,41601,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(271253,41601,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(271254,41601,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(271255,41601,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(271256,41601,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(271257,41601,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(271258,41601,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(271259,41601,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(271260,41601,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(271261,41601,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(271262,41601,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(271263,41601,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(271264,41601,'blocks_4_icon_row_items','4'),(271265,41601,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(271266,41601,'blocks_5_acfe_flexible_toggle',''),(271267,41601,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(271268,41601,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(271269,41601,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(271270,41601,'blocks_5_options_theme','#ffffff'),(271271,41601,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(271272,41601,'blocks_5_options_reverse','0'),(271273,41601,'_blocks_5_options_reverse','field_61768049bb8ac'),(271274,41601,'blocks_5_options',''),(271275,41601,'_blocks_5_options','field_617682517c334'),(271276,41601,'blocks_5_split_5050_image','41241'),(271277,41601,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(271278,41601,'blocks_5_split_5050_video',''),(271279,41601,'_blocks_5_split_5050_video','field_6239f3160848a'),(271280,41601,'blocks_5_split_5050_content_title',''),(271281,41601,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(271282,41601,'blocks_5_split_5050_content_heading','What\'s included?'),(271283,41601,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(271284,41601,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(271285,41601,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(271286,41601,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271287,41601,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(271288,41601,'blocks_5_split_5050_content_actions','1'),(271289,41601,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(271290,41601,'blocks_5_split_5050_content',''),(271291,41601,'_blocks_5_split_5050_content','field_61767afceb8ba'),(271292,41601,'blocks_6_acfe_flexible_toggle',''),(271293,41601,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(271294,41601,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(271295,41601,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(271296,41601,'blocks_6_options_alignment','left'),(271297,41601,'_blocks_6_options_alignment','field_61769449f5490'),(271298,41601,'blocks_6_options',''),(271299,41601,'_blocks_6_options','field_617693e1428f0'),(271300,41601,'blocks_6_promo_panel_image','41242'),(271301,41601,'_blocks_6_promo_panel_image','field_617693e1428f3'),(271302,41601,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(271303,41601,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(271304,41601,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(271305,41601,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(271306,41601,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271307,41601,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(271308,41601,'blocks_6_promo_panel_content_actions','1'),(271309,41601,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(271310,41601,'blocks_6_promo_panel_content',''),(271311,41601,'_blocks_6_promo_panel_content','field_617693e1428f4'),(271312,41601,'course_label_label_theme','#0d1f73'),(271313,41601,'_course_label_label_theme','field_61e17bb8f71fb'),(271314,41602,'hide_hero','0'),(271315,41602,'_hide_hero','field_66a2380fcda39'),(271316,41602,'hero_title','Introduction to Biomechanics Education Course'),(271317,41602,'_hero_title','field_617571fe285e8'),(271318,41602,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education course. Use code \'intro\' at checkout to get the course for free!\r\n'),(271319,41602,'_hero_text','field_6175723c285e9'),(271320,41602,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271321,41602,'_hero_actions_0_button','field_61757281285eb'),(271322,41602,'hero_actions','1'),(271323,41602,'_hero_actions','field_61757270285ea'),(271324,41602,'hero_style','default'),(271325,41602,'_hero_style','field_62051d9dc5324'),(271326,41602,'_thumbnail_id','41496'),(271327,41602,'__thumbnail_id','field_617570855ddaf'),(271328,41602,'hero_image_pos_x','right'),(271329,41602,'_hero_image_pos_x','field_62ec3d05390bb'),(271330,41602,'hero_image_pos_y','top'),(271331,41602,'_hero_image_pos_y','field_62ec3d05390bc'),(271332,41602,'hero_image_pos',''),(271333,41602,'_hero_image_pos','field_62ec3d05390ba'),(271334,41602,'fft_hide_from_listings','0'),(271335,41602,'_fft_hide_from_listings','field_61f1320446ab2'),(271336,41602,'fft_page_format','default'),(271337,41602,'_fft_page_format','field_61ae213f1f218'),(271338,41602,'fft_hide_nav','0'),(271339,41602,'_fft_hide_nav','field_635bd5e43527c'),(271340,41602,'fft_hide_header_call_to_action','0'),(271341,41602,'_fft_hide_header_call_to_action','field_635bd6723527d'),(271342,41602,'fft_page_sitemap','0'),(271343,41602,'_fft_page_sitemap','field_61af9b34e8181'),(271344,41602,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(271345,41602,'_blocks','field_6176696113096'),(271346,41602,'course_label_text','Introduction to Biomechanics Education Course'),(271347,41602,'_course_label_text','field_61e17babf71fa'),(271348,41602,'course_label',''),(271349,41602,'_course_label','field_61e12f92749a7'),(271350,41602,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(271351,41602,'_course_description','field_617ac5788e5e1'),(271352,41602,'course_key_info',''),(271353,41602,'_course_key_info','field_617ac6ad8e5e2'),(271354,41602,'course_included',''),(271355,41602,'_course_included','field_617ac6f08e5e4'),(271356,41602,'blocks_0_acfe_flexible_toggle',''),(271357,41602,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(271358,41602,'blocks_0_acfe_flexible_layout_title','Icons'),(271359,41602,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(271360,41602,'blocks_0_options_theme','#ffffff'),(271361,41602,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(271362,41602,'blocks_0_options_format','row'),(271363,41602,'_blocks_0_options_format','field_64bfde9a90690'),(271364,41602,'blocks_0_options',''),(271365,41602,'_blocks_0_options','field_64bfdd9b90684'),(271366,41602,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(271367,41602,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(271368,41602,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(271369,41602,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(271370,41602,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(271371,41602,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(271372,41602,'blocks_0_icon_row_items_1_icon','build-career.svg'),(271373,41602,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(271374,41602,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(271375,41602,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(271376,41602,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(271377,41602,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(271378,41602,'blocks_0_icon_row_items_2_icon','diversify.svg'),(271379,41602,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(271380,41602,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(271381,41602,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(271382,41602,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(271383,41602,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(271384,41602,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(271385,41602,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(271386,41602,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(271387,41602,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(271388,41602,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(271389,41602,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(271390,41602,'blocks_0_icon_row_items','4'),(271391,41602,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(271392,41602,'blocks_1_acfe_flexible_toggle',''),(271393,41602,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(271394,41602,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(271395,41602,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(271396,41602,'blocks_1_options_theme','#ffffff'),(271397,41602,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(271398,41602,'blocks_1_options_reverse','0'),(271399,41602,'_blocks_1_options_reverse','field_61768049bb8ac'),(271400,41602,'blocks_1_options',''),(271401,41602,'_blocks_1_options','field_617682517c334'),(271402,41602,'blocks_1_split_5050_image','41539'),(271403,41602,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(271404,41602,'blocks_1_split_5050_video',''),(271405,41602,'_blocks_1_split_5050_video','field_6239f3160848a'),(271406,41602,'blocks_1_split_5050_content_title',''),(271407,41602,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(271408,41602,'blocks_1_split_5050_content_heading','Course Overview'),(271409,41602,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(271410,41602,'blocks_1_split_5050_content_text','Unlock the potential of intrinsic biomechanics to elevate your performance coaching and athlete development programmes. By mastering these evidence-based concepts, you’ll enhance your ability to assess movement quality, reduce injury risk, and optimise athletic performance - skills that will set you apart as a progressive strength and conditioning coach.\r\n\r\nThis 60-minute course introduces you to the fundamentals of Intrinsic Biomechanics Coaching, providing practical tools to incorporate into your strength and conditioning practice. Empower your athletes to move better, perform stronger, and recover more effectively.\r\n\r\nStart your journey today and become a certified Intrinsic Biomechanics Coach. Use code <strong>INTRO</strong> at checkout to access this course for <strong>free</strong>!\r\n\r\n​'),(271411,41602,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(271412,41602,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271413,41602,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(271414,41602,'blocks_1_split_5050_content_actions','1'),(271415,41602,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(271416,41602,'blocks_1_split_5050_content',''),(271417,41602,'_blocks_1_split_5050_content','field_61767afceb8ba'),(271418,41602,'blocks_2_acfe_flexible_toggle',''),(271419,41602,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(271420,41602,'blocks_2_acfe_flexible_layout_title','Timeline'),(271421,41602,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(271422,41602,'blocks_2_options_theme','#ffffff'),(271423,41602,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(271424,41602,'blocks_2_options',''),(271425,41602,'_blocks_2_options','field_6177de53d1195'),(271426,41602,'blocks_2_timeline_content_title',''),(271427,41602,'_blocks_2_timeline_content_title','field_6177de53d1198'),(271428,41602,'blocks_2_timeline_content_heading','How to enrol on this course'),(271429,41602,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(271430,41602,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(271431,41602,'_blocks_2_timeline_content_text','field_6177de53d119a'),(271432,41602,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271433,41602,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(271434,41602,'blocks_2_timeline_content_actions','1'),(271435,41602,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(271436,41602,'blocks_2_timeline_content',''),(271437,41602,'_blocks_2_timeline_content','field_6177de53d1197'),(271438,41602,'blocks_2_timeline_items_0_title','Enrol Now'),(271439,41602,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(271440,41602,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(271441,41602,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(271442,41602,'blocks_2_timeline_items_1_title','Progress to Checkout'),(271443,41602,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(271444,41602,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(271445,41602,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(271446,41602,'blocks_2_timeline_items_2_title','Get Access'),(271447,41602,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(271448,41602,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(271449,41602,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(271450,41602,'blocks_2_timeline_items_3_title','Complete the Course'),(271451,41602,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(271452,41602,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(271453,41602,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(271454,41602,'blocks_2_timeline_items','4'),(271455,41602,'_blocks_2_timeline_items','field_6177de53d119d'),(271456,41602,'blocks_3_acfe_flexible_toggle',''),(271457,41602,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(271458,41602,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(271459,41602,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(271460,41602,'blocks_3_options_theme','#ffffff'),(271461,41602,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(271462,41602,'blocks_3_options_reverse','0'),(271463,41602,'_blocks_3_options_reverse','field_61768049bb8ac'),(271464,41602,'blocks_3_options',''),(271465,41602,'_blocks_3_options','field_617682517c334'),(271466,41602,'blocks_3_split_5050_image',''),(271467,41602,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(271468,41602,'blocks_3_split_5050_video','https://youtu.be/xgRiAj1qEog'),(271469,41602,'_blocks_3_split_5050_video','field_6239f3160848a'),(271470,41602,'blocks_3_split_5050_content_title',''),(271471,41602,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(271472,41602,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(271473,41602,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(271474,41602,'blocks_3_split_5050_content_text','As a sports massage therapist, you already know how movement and muscle health go hand in hand – but what if you could take that understanding to a new level? The Biomechanics Coaching Diploma is crafted to broaden your expertise, giving you advanced tools to assess and improve your clients\' intrinsic biomechanics for more effective treatments and lasting results.\r\n\r\nThis free, 1-hour introductory course is a perfect first step, offering insights that may shift how you approach movement and body mechanics in your practice. By learning to view the body as an integrated system, you’ll gain techniques to address movement restrictions holistically, helping clients not only feel relief but achieve better functional movement and reduce risk of future issues.\r\n\r\nReady to get started? Use code <strong>INTRO</strong> at checkout to access this introductory course for free and take the first step toward deeper expertise.'),(271475,41602,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(271476,41602,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271477,41602,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(271478,41602,'blocks_3_split_5050_content_actions','1'),(271479,41602,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(271480,41602,'blocks_3_split_5050_content',''),(271481,41602,'_blocks_3_split_5050_content','field_61767afceb8ba'),(271482,41602,'blocks_4_acfe_flexible_toggle',''),(271483,41602,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(271484,41602,'blocks_4_acfe_flexible_layout_title','Icons'),(271485,41602,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(271486,41602,'blocks_4_options_theme','#ffffff'),(271487,41602,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(271488,41602,'blocks_4_options_format','grid'),(271489,41602,'_blocks_4_options_format','field_64bfde9a90690'),(271490,41602,'blocks_4_options',''),(271491,41602,'_blocks_4_options','field_64bfdd9b90684'),(271492,41602,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(271493,41602,'_blocks_4_row_content_title','field_64bfdd9b90687'),(271494,41602,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(271495,41602,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(271496,41602,'blocks_4_row_content_text',''),(271497,41602,'_blocks_4_row_content_text','field_64bfdd9b90689'),(271498,41602,'blocks_4_row_content_actions',''),(271499,41602,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(271500,41602,'blocks_4_row_content',''),(271501,41602,'_blocks_4_row_content','field_64bfdd9b90686'),(271502,41602,'blocks_4_icon_row_items_0_icon','build-career.svg'),(271503,41602,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(271504,41602,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(271505,41602,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(271506,41602,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(271507,41602,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(271508,41602,'blocks_4_icon_row_items_1_icon','qualification.svg'),(271509,41602,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(271510,41602,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(271511,41602,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(271512,41602,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(271513,41602,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(271514,41602,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(271515,41602,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(271516,41602,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(271517,41602,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(271518,41602,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(271519,41602,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(271520,41602,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(271521,41602,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(271522,41602,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(271523,41602,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(271524,41602,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(271525,41602,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(271526,41602,'blocks_4_icon_row_items','4'),(271527,41602,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(271528,41602,'blocks_5_acfe_flexible_toggle',''),(271529,41602,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(271530,41602,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(271531,41602,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(271532,41602,'blocks_5_options_theme','#ffffff'),(271533,41602,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(271534,41602,'blocks_5_options_reverse','0'),(271535,41602,'_blocks_5_options_reverse','field_61768049bb8ac'),(271536,41602,'blocks_5_options',''),(271537,41602,'_blocks_5_options','field_617682517c334'),(271538,41602,'blocks_5_split_5050_image','41241'),(271539,41602,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(271540,41602,'blocks_5_split_5050_video',''),(271541,41602,'_blocks_5_split_5050_video','field_6239f3160848a'),(271542,41602,'blocks_5_split_5050_content_title',''),(271543,41602,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(271544,41602,'blocks_5_split_5050_content_heading','What\'s included?'),(271545,41602,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(271546,41602,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(271547,41602,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(271548,41602,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271549,41602,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(271550,41602,'blocks_5_split_5050_content_actions','1'),(271551,41602,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(271552,41602,'blocks_5_split_5050_content',''),(271553,41602,'_blocks_5_split_5050_content','field_61767afceb8ba'),(271554,41602,'blocks_6_acfe_flexible_toggle',''),(271555,41602,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(271556,41602,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(271557,41602,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(271558,41602,'blocks_6_options_alignment','left'),(271559,41602,'_blocks_6_options_alignment','field_61769449f5490'),(271560,41602,'blocks_6_options',''),(271561,41602,'_blocks_6_options','field_617693e1428f0'),(271562,41602,'blocks_6_promo_panel_image','41242'),(271563,41602,'_blocks_6_promo_panel_image','field_617693e1428f3'),(271564,41602,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(271565,41602,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(271566,41602,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(271567,41602,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(271568,41602,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271569,41602,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(271570,41602,'blocks_6_promo_panel_content_actions','1'),(271571,41602,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(271572,41602,'blocks_6_promo_panel_content',''),(271573,41602,'_blocks_6_promo_panel_content','field_617693e1428f4'),(271574,41602,'course_label_label_theme','#0d1f73'),(271575,41602,'_course_label_label_theme','field_61e17bb8f71fb'),(271576,41603,'hide_hero','0'),(271577,41603,'_hide_hero','field_66a2380fcda39'),(271578,41603,'hero_title','Introduction to Biomechanics Education Course'),(271579,41603,'_hero_title','field_617571fe285e8'),(271580,41603,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education course. Use code \'intro\' at checkout to get the course for free!\r\n'),(271581,41603,'_hero_text','field_6175723c285e9'),(271582,41603,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271583,41603,'_hero_actions_0_button','field_61757281285eb'),(271584,41603,'hero_actions','1'),(271585,41603,'_hero_actions','field_61757270285ea'),(271586,41603,'hero_style','default'),(271587,41603,'_hero_style','field_62051d9dc5324'),(271588,41603,'_thumbnail_id','41496'),(271589,41603,'__thumbnail_id','field_617570855ddaf'),(271590,41603,'hero_image_pos_x','right'),(271591,41603,'_hero_image_pos_x','field_62ec3d05390bb'),(271592,41603,'hero_image_pos_y','top'),(271593,41603,'_hero_image_pos_y','field_62ec3d05390bc'),(271594,41603,'hero_image_pos',''),(271595,41603,'_hero_image_pos','field_62ec3d05390ba'),(271596,41603,'fft_hide_from_listings','0'),(271597,41603,'_fft_hide_from_listings','field_61f1320446ab2'),(271598,41603,'fft_page_format','default'),(271599,41603,'_fft_page_format','field_61ae213f1f218'),(271600,41603,'fft_hide_nav','0'),(271601,41603,'_fft_hide_nav','field_635bd5e43527c'),(271602,41603,'fft_hide_header_call_to_action','0'),(271603,41603,'_fft_hide_header_call_to_action','field_635bd6723527d'),(271604,41603,'fft_page_sitemap','0'),(271605,41603,'_fft_page_sitemap','field_61af9b34e8181'),(271606,41603,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(271607,41603,'_blocks','field_6176696113096'),(271608,41603,'course_label_text','Introduction to Biomechanics Education Course'),(271609,41603,'_course_label_text','field_61e17babf71fa'),(271610,41603,'course_label',''),(271611,41603,'_course_label','field_61e12f92749a7'),(271612,41603,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(271613,41603,'_course_description','field_617ac5788e5e1'),(271614,41603,'course_key_info',''),(271615,41603,'_course_key_info','field_617ac6ad8e5e2'),(271616,41603,'course_included',''),(271617,41603,'_course_included','field_617ac6f08e5e4'),(271618,41603,'blocks_0_acfe_flexible_toggle',''),(271619,41603,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(271620,41603,'blocks_0_acfe_flexible_layout_title','Icons'),(271621,41603,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(271622,41603,'blocks_0_options_theme','#ffffff'),(271623,41603,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(271624,41603,'blocks_0_options_format','row'),(271625,41603,'_blocks_0_options_format','field_64bfde9a90690'),(271626,41603,'blocks_0_options',''),(271627,41603,'_blocks_0_options','field_64bfdd9b90684'),(271628,41603,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(271629,41603,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(271630,41603,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(271631,41603,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(271632,41603,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(271633,41603,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(271634,41603,'blocks_0_icon_row_items_1_icon','build-career.svg'),(271635,41603,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(271636,41603,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(271637,41603,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(271638,41603,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(271639,41603,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(271640,41603,'blocks_0_icon_row_items_2_icon','diversify.svg'),(271641,41603,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(271642,41603,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(271643,41603,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(271644,41603,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(271645,41603,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(271646,41603,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(271647,41603,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(271648,41603,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(271649,41603,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(271650,41603,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(271651,41603,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(271652,41603,'blocks_0_icon_row_items','4'),(271653,41603,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(271654,41603,'blocks_1_acfe_flexible_toggle',''),(271655,41603,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(271656,41603,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(271657,41603,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(271658,41603,'blocks_1_options_theme','#ffffff'),(271659,41603,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(271660,41603,'blocks_1_options_reverse','0'),(271661,41603,'_blocks_1_options_reverse','field_61768049bb8ac'),(271662,41603,'blocks_1_options',''),(271663,41603,'_blocks_1_options','field_617682517c334'),(271664,41603,'blocks_1_split_5050_image','41539'),(271665,41603,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(271666,41603,'blocks_1_split_5050_video',''),(271667,41603,'_blocks_1_split_5050_video','field_6239f3160848a'),(271668,41603,'blocks_1_split_5050_content_title',''),(271669,41603,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(271670,41603,'blocks_1_split_5050_content_heading','Course Overview'),(271671,41603,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(271672,41603,'blocks_1_split_5050_content_text','Unlock the potential of intrinsic biomechanics to elevate your performance coaching and athlete development programmes. By mastering these evidence-based concepts, you’ll enhance your ability to assess movement quality, reduce injury risk, and optimise athletic performance - skills that will set you apart as a progressive strength and conditioning coach.\r\n\r\nThis 60-minute course introduces you to the fundamentals of Intrinsic Biomechanics Coaching, providing practical tools to incorporate into your strength and conditioning practice. Empower your athletes to move better, perform stronger, and recover more effectively.\r\n\r\nStart your journey today and become a certified Intrinsic Biomechanics Coach. Use code <strong>INTRO</strong> at checkout to access this course for <strong>free</strong>!\r\n\r\n​'),(271673,41603,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(271674,41603,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271675,41603,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(271676,41603,'blocks_1_split_5050_content_actions','1'),(271677,41603,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(271678,41603,'blocks_1_split_5050_content',''),(271679,41603,'_blocks_1_split_5050_content','field_61767afceb8ba'),(271680,41603,'blocks_2_acfe_flexible_toggle',''),(271681,41603,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(271682,41603,'blocks_2_acfe_flexible_layout_title','Timeline'),(271683,41603,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(271684,41603,'blocks_2_options_theme','#ffffff'),(271685,41603,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(271686,41603,'blocks_2_options',''),(271687,41603,'_blocks_2_options','field_6177de53d1195'),(271688,41603,'blocks_2_timeline_content_title',''),(271689,41603,'_blocks_2_timeline_content_title','field_6177de53d1198'),(271690,41603,'blocks_2_timeline_content_heading','How to enrol on this course'),(271691,41603,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(271692,41603,'blocks_2_timeline_content_text','Enrolling is easy. Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(271693,41603,'_blocks_2_timeline_content_text','field_6177de53d119a'),(271694,41603,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271695,41603,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(271696,41603,'blocks_2_timeline_content_actions','1'),(271697,41603,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(271698,41603,'blocks_2_timeline_content',''),(271699,41603,'_blocks_2_timeline_content','field_6177de53d1197'),(271700,41603,'blocks_2_timeline_items_0_title','Enrol Now'),(271701,41603,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(271702,41603,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(271703,41603,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(271704,41603,'blocks_2_timeline_items_1_title','Progress to Checkout'),(271705,41603,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(271706,41603,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(271707,41603,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(271708,41603,'blocks_2_timeline_items_2_title','Get Access'),(271709,41603,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(271710,41603,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(271711,41603,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(271712,41603,'blocks_2_timeline_items_3_title','Complete the Course'),(271713,41603,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(271714,41603,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(271715,41603,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(271716,41603,'blocks_2_timeline_items','4'),(271717,41603,'_blocks_2_timeline_items','field_6177de53d119d'),(271718,41603,'blocks_3_acfe_flexible_toggle',''),(271719,41603,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(271720,41603,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(271721,41603,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(271722,41603,'blocks_3_options_theme','#ffffff'),(271723,41603,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(271724,41603,'blocks_3_options_reverse','0'),(271725,41603,'_blocks_3_options_reverse','field_61768049bb8ac'),(271726,41603,'blocks_3_options',''),(271727,41603,'_blocks_3_options','field_617682517c334'),(271728,41603,'blocks_3_split_5050_image',''),(271729,41603,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(271730,41603,'blocks_3_split_5050_video','https://youtu.be/xgRiAj1qEog'),(271731,41603,'_blocks_3_split_5050_video','field_6239f3160848a'),(271732,41603,'blocks_3_split_5050_content_title',''),(271733,41603,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(271734,41603,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(271735,41603,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(271736,41603,'blocks_3_split_5050_content_text','As a sports massage therapist, you already know how movement and muscle health go hand in hand – but what if you could take that understanding to a new level? The Biomechanics Coaching Diploma is crafted to broaden your expertise, giving you advanced tools to assess and improve your clients\' intrinsic biomechanics for more effective treatments and lasting results.\r\n\r\nThis free, 1-hour introductory course is a perfect first step, offering insights that may shift how you approach movement and body mechanics in your practice. By learning to view the body as an integrated system, you’ll gain techniques to address movement restrictions holistically, helping clients not only feel relief but achieve better functional movement and reduce risk of future issues.\r\n\r\nReady to get started? Use code <strong>INTRO</strong> at checkout to access this introductory course for free and take the first step toward deeper expertise.'),(271737,41603,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(271738,41603,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271739,41603,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(271740,41603,'blocks_3_split_5050_content_actions','1'),(271741,41603,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(271742,41603,'blocks_3_split_5050_content',''),(271743,41603,'_blocks_3_split_5050_content','field_61767afceb8ba'),(271744,41603,'blocks_4_acfe_flexible_toggle',''),(271745,41603,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(271746,41603,'blocks_4_acfe_flexible_layout_title','Icons'),(271747,41603,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(271748,41603,'blocks_4_options_theme','#ffffff'),(271749,41603,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(271750,41603,'blocks_4_options_format','grid'),(271751,41603,'_blocks_4_options_format','field_64bfde9a90690'),(271752,41603,'blocks_4_options',''),(271753,41603,'_blocks_4_options','field_64bfdd9b90684'),(271754,41603,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(271755,41603,'_blocks_4_row_content_title','field_64bfdd9b90687'),(271756,41603,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(271757,41603,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(271758,41603,'blocks_4_row_content_text',''),(271759,41603,'_blocks_4_row_content_text','field_64bfdd9b90689'),(271760,41603,'blocks_4_row_content_actions',''),(271761,41603,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(271762,41603,'blocks_4_row_content',''),(271763,41603,'_blocks_4_row_content','field_64bfdd9b90686'),(271764,41603,'blocks_4_icon_row_items_0_icon','build-career.svg'),(271765,41603,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(271766,41603,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(271767,41603,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(271768,41603,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(271769,41603,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(271770,41603,'blocks_4_icon_row_items_1_icon','qualification.svg'),(271771,41603,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(271772,41603,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(271773,41603,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(271774,41603,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(271775,41603,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(271776,41603,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(271777,41603,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(271778,41603,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(271779,41603,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(271780,41603,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(271781,41603,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(271782,41603,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(271783,41603,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(271784,41603,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(271785,41603,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(271786,41603,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(271787,41603,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(271788,41603,'blocks_4_icon_row_items','4'),(271789,41603,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(271790,41603,'blocks_5_acfe_flexible_toggle',''),(271791,41603,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(271792,41603,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(271793,41603,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(271794,41603,'blocks_5_options_theme','#ffffff'),(271795,41603,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(271796,41603,'blocks_5_options_reverse','0'),(271797,41603,'_blocks_5_options_reverse','field_61768049bb8ac'),(271798,41603,'blocks_5_options',''),(271799,41603,'_blocks_5_options','field_617682517c334'),(271800,41603,'blocks_5_split_5050_image','41241'),(271801,41603,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(271802,41603,'blocks_5_split_5050_video',''),(271803,41603,'_blocks_5_split_5050_video','field_6239f3160848a'),(271804,41603,'blocks_5_split_5050_content_title',''),(271805,41603,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(271806,41603,'blocks_5_split_5050_content_heading','What\'s included?'),(271807,41603,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(271808,41603,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(271809,41603,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(271810,41603,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271811,41603,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(271812,41603,'blocks_5_split_5050_content_actions','1'),(271813,41603,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(271814,41603,'blocks_5_split_5050_content',''),(271815,41603,'_blocks_5_split_5050_content','field_61767afceb8ba'),(271816,41603,'blocks_6_acfe_flexible_toggle',''),(271817,41603,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(271818,41603,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(271819,41603,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(271820,41603,'blocks_6_options_alignment','left'),(271821,41603,'_blocks_6_options_alignment','field_61769449f5490'),(271822,41603,'blocks_6_options',''),(271823,41603,'_blocks_6_options','field_617693e1428f0'),(271824,41603,'blocks_6_promo_panel_image','41242'),(271825,41603,'_blocks_6_promo_panel_image','field_617693e1428f3'),(271826,41603,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(271827,41603,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(271828,41603,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(271829,41603,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(271830,41603,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271831,41603,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(271832,41603,'blocks_6_promo_panel_content_actions','1'),(271833,41603,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(271834,41603,'blocks_6_promo_panel_content',''),(271835,41603,'_blocks_6_promo_panel_content','field_617693e1428f4'),(271836,41603,'course_label_label_theme','#0d1f73'),(271837,41603,'_course_label_label_theme','field_61e17bb8f71fb'),(271838,41604,'hide_hero','0'),(271839,41604,'_hide_hero','field_66a2380fcda39'),(271840,41604,'hero_title','Introduction to Biomechanics Education Course'),(271841,41604,'_hero_title','field_617571fe285e8'),(271842,41604,'hero_text','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education course. Use code \'intro\' at checkout to get the course for free!\r\n'),(271843,41604,'_hero_text','field_6175723c285e9'),(271844,41604,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271845,41604,'_hero_actions_0_button','field_61757281285eb'),(271846,41604,'hero_actions','1'),(271847,41604,'_hero_actions','field_61757270285ea'),(271848,41604,'hero_style','default'),(271849,41604,'_hero_style','field_62051d9dc5324'),(271850,41604,'_thumbnail_id','41496'),(271851,41604,'__thumbnail_id','field_617570855ddaf'),(271852,41604,'hero_image_pos_x','right'),(271853,41604,'_hero_image_pos_x','field_62ec3d05390bb'),(271854,41604,'hero_image_pos_y','top'),(271855,41604,'_hero_image_pos_y','field_62ec3d05390bc'),(271856,41604,'hero_image_pos',''),(271857,41604,'_hero_image_pos','field_62ec3d05390ba'),(271858,41604,'fft_hide_from_listings','0'),(271859,41604,'_fft_hide_from_listings','field_61f1320446ab2'),(271860,41604,'fft_page_format','default'),(271861,41604,'_fft_page_format','field_61ae213f1f218'),(271862,41604,'fft_hide_nav','0'),(271863,41604,'_fft_hide_nav','field_635bd5e43527c'),(271864,41604,'fft_hide_header_call_to_action','0'),(271865,41604,'_fft_hide_header_call_to_action','field_635bd6723527d'),(271866,41604,'fft_page_sitemap','0'),(271867,41604,'_fft_page_sitemap','field_61af9b34e8181'),(271868,41604,'blocks','a:7:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:5:\"icons\";i:5;s:10:\"split_5050\";i:6;s:11:\"promo_panel\";}'),(271869,41604,'_blocks','field_6176696113096'),(271870,41604,'course_label_text','Introduction to Biomechanics Education Course'),(271871,41604,'_course_label_text','field_61e17babf71fa'),(271872,41604,'course_label',''),(271873,41604,'_course_label','field_61e12f92749a7'),(271874,41604,'course_description','Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!'),(271875,41604,'_course_description','field_617ac5788e5e1'),(271876,41604,'course_key_info',''),(271877,41604,'_course_key_info','field_617ac6ad8e5e2'),(271878,41604,'course_included',''),(271879,41604,'_course_included','field_617ac6f08e5e4'),(271880,41604,'blocks_0_acfe_flexible_toggle',''),(271881,41604,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(271882,41604,'blocks_0_acfe_flexible_layout_title','Icons'),(271883,41604,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(271884,41604,'blocks_0_options_theme','#ffffff'),(271885,41604,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(271886,41604,'blocks_0_options_format','row'),(271887,41604,'_blocks_0_options_format','field_64bfde9a90690'),(271888,41604,'blocks_0_options',''),(271889,41604,'_blocks_0_options','field_64bfdd9b90684'),(271890,41604,'blocks_0_icon_row_items_0_icon','thumbs-up.svg'),(271891,41604,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(271892,41604,'blocks_0_icon_row_items_0_label','TRY BEFORE YOU COMMIT'),(271893,41604,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(271894,41604,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your Pilates expertise'),(271895,41604,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(271896,41604,'blocks_0_icon_row_items_1_icon','build-career.svg'),(271897,41604,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(271898,41604,'blocks_0_icon_row_items_1_label','ADVANCE YOUR SKILLS'),(271899,41604,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(271900,41604,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can elevate your teaching and broaden your impact with clients'),(271901,41604,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(271902,41604,'blocks_0_icon_row_items_2_icon','diversify.svg'),(271903,41604,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(271904,41604,'blocks_0_icon_row_items_2_label','UNLOCK NEW CAREER PATHS'),(271905,41604,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(271906,41604,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Education can open in the health and exercise industry'),(271907,41604,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(271908,41604,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(271909,41604,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(271910,41604,'blocks_0_icon_row_items_3_label','LEARN IN JUST 60-MINUTES'),(271911,41604,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(271912,41604,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(271913,41604,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(271914,41604,'blocks_0_icon_row_items','4'),(271915,41604,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(271916,41604,'blocks_1_acfe_flexible_toggle',''),(271917,41604,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(271918,41604,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(271919,41604,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(271920,41604,'blocks_1_options_theme','#ffffff'),(271921,41604,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(271922,41604,'blocks_1_options_reverse','0'),(271923,41604,'_blocks_1_options_reverse','field_61768049bb8ac'),(271924,41604,'blocks_1_options',''),(271925,41604,'_blocks_1_options','field_617682517c334'),(271926,41604,'blocks_1_split_5050_image','41539'),(271927,41604,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(271928,41604,'blocks_1_split_5050_video',''),(271929,41604,'_blocks_1_split_5050_video','field_6239f3160848a'),(271930,41604,'blocks_1_split_5050_content_title',''),(271931,41604,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(271932,41604,'blocks_1_split_5050_content_heading','Course Overview'),(271933,41604,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(271934,41604,'blocks_1_split_5050_content_text','Unlock the potential of intrinsic biomechanics to elevate your performance coaching and athlete development programmes. By mastering these evidence-based concepts, you’ll enhance your ability to assess movement quality, reduce injury risk, and optimise athletic performance - skills that will set you apart as a progressive strength and conditioning coach.\r\n\r\nThis 60-minute course introduces you to the fundamentals of Intrinsic Biomechanics Coaching, providing practical tools to incorporate into your strength and conditioning practice. Empower your athletes to move better, perform stronger, and recover more effectively.\r\n\r\nStart your journey today and become a certified Intrinsic Biomechanics Coach. Use code <strong>INTRO</strong> at checkout to access this course for <strong>free</strong>!\r\n\r\n​'),(271935,41604,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(271936,41604,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271937,41604,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(271938,41604,'blocks_1_split_5050_content_actions','1'),(271939,41604,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(271940,41604,'blocks_1_split_5050_content',''),(271941,41604,'_blocks_1_split_5050_content','field_61767afceb8ba'),(271942,41604,'blocks_2_acfe_flexible_toggle',''),(271943,41604,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(271944,41604,'blocks_2_acfe_flexible_layout_title','Timeline'),(271945,41604,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(271946,41604,'blocks_2_options_theme','#ffffff'),(271947,41604,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(271948,41604,'blocks_2_options',''),(271949,41604,'_blocks_2_options','field_6177de53d1195'),(271950,41604,'blocks_2_timeline_content_title',''),(271951,41604,'_blocks_2_timeline_content_title','field_6177de53d1198'),(271952,41604,'blocks_2_timeline_content_heading','How to enrol on this course'),(271953,41604,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(271954,41604,'blocks_2_timeline_content_text','Enrolling is easy. Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(271955,41604,'_blocks_2_timeline_content_text','field_6177de53d119a'),(271956,41604,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(271957,41604,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(271958,41604,'blocks_2_timeline_content_actions','1'),(271959,41604,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(271960,41604,'blocks_2_timeline_content',''),(271961,41604,'_blocks_2_timeline_content','field_6177de53d1197'),(271962,41604,'blocks_2_timeline_items_0_title','Enrol Now'),(271963,41604,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(271964,41604,'blocks_2_timeline_items_0_text','Click \'add to basket\' to enrol now and the course will be added to your basket (don\'t worry it\'s free)'),(271965,41604,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(271966,41604,'blocks_2_timeline_items_1_title','Progress to Checkout'),(271967,41604,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(271968,41604,'blocks_2_timeline_items_1_text','Progress through our checkout process, filling in your details to gain access to the course'),(271969,41604,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(271970,41604,'blocks_2_timeline_items_2_title','Get Access'),(271971,41604,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(271972,41604,'blocks_2_timeline_items_2_text','Once you have completed the checkout process you will receive an email with instant access to your course'),(271973,41604,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(271974,41604,'blocks_2_timeline_items_3_title','Complete the Course'),(271975,41604,'_blocks_2_timeline_items_3_title','field_6177de53d119f'),(271976,41604,'blocks_2_timeline_items_3_text','Once you have completed the course you will have the opportunity to progress to the full diploma, taking your skills to the next level'),(271977,41604,'_blocks_2_timeline_items_3_text','field_6177de53d11a0'),(271978,41604,'blocks_2_timeline_items','4'),(271979,41604,'_blocks_2_timeline_items','field_6177de53d119d'),(271980,41604,'blocks_3_acfe_flexible_toggle',''),(271981,41604,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(271982,41604,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(271983,41604,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(271984,41604,'blocks_3_options_theme','#ffffff'),(271985,41604,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(271986,41604,'blocks_3_options_reverse','0'),(271987,41604,'_blocks_3_options_reverse','field_61768049bb8ac'),(271988,41604,'blocks_3_options',''),(271989,41604,'_blocks_3_options','field_617682517c334'),(271990,41604,'blocks_3_split_5050_image',''),(271991,41604,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(271992,41604,'blocks_3_split_5050_video','https://youtu.be/xgRiAj1qEog'),(271993,41604,'_blocks_3_split_5050_video','field_6239f3160848a'),(271994,41604,'blocks_3_split_5050_content_title',''),(271995,41604,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(271996,41604,'blocks_3_split_5050_content_heading','Why Learn More About Biomechanics Education'),(271997,41604,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(271998,41604,'blocks_3_split_5050_content_text','As a strength and conditioning coach, you already understand how movement quality and athletic performance go hand in hand – but what if you could take that knowledge to a new level? The Biomechanics Coaching Diploma is designed to broaden your expertise, equipping you with advanced tools to assess and improve intrinsic biomechanics, enabling you to optimise your athletes’ performance and reduce injury risk.\r\n\r\nThis free, 1-hour introductory course is the perfect starting point, offering insights that could transform how you approach movement and body mechanics in your coaching practice. By learning to view the body as an integrated system, you’ll gain techniques to address movement restrictions holistically, helping your athletes achieve better functional movement, enhance recovery, and minimise the risk of future injuries.\r\n\r\nReady to get started? Use code <strong>INTRO</strong> at checkout to access this introductory course for <strong>free</strong> and take the first step towards advanced expertise.'),(271999,41604,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(272000,41604,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(272001,41604,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(272002,41604,'blocks_3_split_5050_content_actions','1'),(272003,41604,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(272004,41604,'blocks_3_split_5050_content',''),(272005,41604,'_blocks_3_split_5050_content','field_61767afceb8ba'),(272006,41604,'blocks_4_acfe_flexible_toggle',''),(272007,41604,'_blocks_4_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(272008,41604,'blocks_4_acfe_flexible_layout_title','Icons'),(272009,41604,'_blocks_4_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(272010,41604,'blocks_4_options_theme','#ffffff'),(272011,41604,'_blocks_4_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(272012,41604,'blocks_4_options_format','grid'),(272013,41604,'_blocks_4_options_format','field_64bfde9a90690'),(272014,41604,'blocks_4_options',''),(272015,41604,'_blocks_4_options','field_64bfdd9b90684'),(272016,41604,'blocks_4_row_content_title','WHAT IS THE BENEFIT OF UNDERTAKING A DIPLOMA IN BIOMECHANICS EDUCATION?'),(272017,41604,'_blocks_4_row_content_title','field_64bfdd9b90687'),(272018,41604,'blocks_4_row_content_heading','This free intro course will give you a taster of exciting things to come in the full diploma'),(272019,41604,'_blocks_4_row_content_heading','field_64bfdd9b90688'),(272020,41604,'blocks_4_row_content_text',''),(272021,41604,'_blocks_4_row_content_text','field_64bfdd9b90689'),(272022,41604,'blocks_4_row_content_actions',''),(272023,41604,'_blocks_4_row_content_actions','field_64bfdd9b9068a'),(272024,41604,'blocks_4_row_content',''),(272025,41604,'_blocks_4_row_content','field_64bfdd9b90686'),(272026,41604,'blocks_4_icon_row_items_0_icon','build-career.svg'),(272027,41604,'_blocks_4_icon_row_items_0_icon','field_64bfdd9b9068d'),(272028,41604,'blocks_4_icon_row_items_0_label','Take your understanding of movement to the next level'),(272029,41604,'_blocks_4_icon_row_items_0_label','field_64bfdd9c9068e'),(272030,41604,'blocks_4_icon_row_items_0_text','Optimise client performance with advanced knowledge of anatomy and movement.'),(272031,41604,'_blocks_4_icon_row_items_0_text','field_64bfdd9c9068f'),(272032,41604,'blocks_4_icon_row_items_1_icon','qualification.svg'),(272033,41604,'_blocks_4_icon_row_items_1_icon','field_64bfdd9b9068d'),(272034,41604,'blocks_4_icon_row_items_1_label','Supported by nearly 20 years of research'),(272035,41604,'_blocks_4_icon_row_items_1_label','field_64bfdd9c9068e'),(272036,41604,'blocks_4_icon_row_items_1_text','We have the most comprehensive evidence based MSK assessment programme that takes the integrated system approach allowing practitioners from any profession to follow a system instead of symptoms.'),(272037,41604,'_blocks_4_icon_row_items_1_text','field_64bfdd9c9068f'),(272038,41604,'blocks_4_icon_row_items_2_icon','user-friendly.svg'),(272039,41604,'_blocks_4_icon_row_items_2_icon','field_64bfdd9b9068d'),(272040,41604,'blocks_4_icon_row_items_2_label','Expand and retain your client base '),(272041,41604,'_blocks_4_icon_row_items_2_label','field_64bfdd9c9068e'),(272042,41604,'blocks_4_icon_row_items_2_text','With this advanced skillset in intrinsic biomechanics, you will be able to support a wider range of clients exploring movement as medicine, potentially increasing your hourly rate.'),(272043,41604,'_blocks_4_icon_row_items_2_text','field_64bfdd9c9068f'),(272044,41604,'blocks_4_icon_row_items_3_icon','accreditation.svg'),(272045,41604,'_blocks_4_icon_row_items_3_icon','field_64bfdd9b9068d'),(272046,41604,'blocks_4_icon_row_items_3_label','Add an advanced string to your bow, increasing your earning potential'),(272047,41604,'_blocks_4_icon_row_items_3_label','field_64bfdd9c9068e'),(272048,41604,'blocks_4_icon_row_items_3_text','Elevate your expertise, and unlock your earning potential with intrinsic biomechanics. Boost rates, attract clients, and master your craft.'),(272049,41604,'_blocks_4_icon_row_items_3_text','field_64bfdd9c9068f'),(272050,41604,'blocks_4_icon_row_items','4'),(272051,41604,'_blocks_4_icon_row_items','field_64bfdd9b9068c'),(272052,41604,'blocks_5_acfe_flexible_toggle',''),(272053,41604,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(272054,41604,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(272055,41604,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(272056,41604,'blocks_5_options_theme','#ffffff'),(272057,41604,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(272058,41604,'blocks_5_options_reverse','0'),(272059,41604,'_blocks_5_options_reverse','field_61768049bb8ac'),(272060,41604,'blocks_5_options',''),(272061,41604,'_blocks_5_options','field_617682517c334'),(272062,41604,'blocks_5_split_5050_image','41241'),(272063,41604,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(272064,41604,'blocks_5_split_5050_video',''),(272065,41604,'_blocks_5_split_5050_video','field_6239f3160848a'),(272066,41604,'blocks_5_split_5050_content_title',''),(272067,41604,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(272068,41604,'blocks_5_split_5050_content_heading','What\'s included?'),(272069,41604,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(272070,41604,'blocks_5_split_5050_content_text','Get a taste of the Diploma in Biomechanics Coaching with us.\r\n<ul>\r\n 	<li>Understand the principles of intrinsic biomechanics and it\'s relationship to injury risk reduction</li>\r\n 	<li>Explain how the skeletal, myofascial, and neural systems impact on intrinsic biomechanics\r\nDefine scope of practice as a Biomechanics Trainer, and how this relates to your role as a PT</li>\r\n 	<li>Perform a couple of simple tests to assess pelvic function and prescribe exercises to address dysfunction</li>\r\n 	<li>Appreciate the HUGE potential and range of opportunities that the Diploma in Biomechanics Coaching can offer to enhance your career</li>\r\n</ul>\r\n<strong>Ready to get started? Don\'t forget to use code \'intro\' at checkout to get the course for free!</strong>'),(272071,41604,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(272072,41604,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(272073,41604,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(272074,41604,'blocks_5_split_5050_content_actions','1'),(272075,41604,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(272076,41604,'blocks_5_split_5050_content',''),(272077,41604,'_blocks_5_split_5050_content','field_61767afceb8ba'),(272078,41604,'blocks_6_acfe_flexible_toggle',''),(272079,41604,'_blocks_6_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(272080,41604,'blocks_6_acfe_flexible_layout_title','Promo Panel'),(272081,41604,'_blocks_6_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(272082,41604,'blocks_6_options_alignment','left'),(272083,41604,'_blocks_6_options_alignment','field_61769449f5490'),(272084,41604,'blocks_6_options',''),(272085,41604,'_blocks_6_options','field_617693e1428f0'),(272086,41604,'blocks_6_promo_panel_image','41242'),(272087,41604,'_blocks_6_promo_panel_image','field_617693e1428f3'),(272088,41604,'blocks_6_promo_panel_content_heading','Make a start on your new skills to elevate your career today'),(272089,41604,'_blocks_6_promo_panel_content_heading','field_617693e1428f6'),(272090,41604,'blocks_6_promo_panel_content_text','Get a taste of a Diploma in Biomechanics Coaching. Use code intro at checkout to get the course for free.'),(272091,41604,'_blocks_6_promo_panel_content_text','field_617693e1428f7'),(272092,41604,'blocks_6_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(272093,41604,'_blocks_6_promo_panel_content_actions_0_button','field_617693e1428f9'),(272094,41604,'blocks_6_promo_panel_content_actions','1'),(272095,41604,'_blocks_6_promo_panel_content_actions','field_617693e1428f8'),(272096,41604,'blocks_6_promo_panel_content',''),(272097,41604,'_blocks_6_promo_panel_content','field_617693e1428f4'),(272098,41604,'course_label_label_theme','#0d1f73'),(272099,41604,'_course_label_label_theme','field_61e17bb8f71fb'),(272100,41605,'_menu_item_type','post_type'),(272101,41605,'_menu_item_menu_item_parent','39281'),(272102,41605,'_menu_item_object_id','41179'),(272103,41605,'_menu_item_object','page'),(272104,41605,'_menu_item_target',''),(272105,41605,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(272106,41605,'_menu_item_xfn',''),(272107,41605,'_menu_item_url',''),(272109,41605,'menu_item_card_image',''),(272110,41605,'_menu_item_card_image','field_618cf50fb8716'),(272111,41605,'menu_item_card_title',''),(272112,41605,'_menu_item_card_title','field_618cf51cb8717'),(272113,41605,'menu_item_card_text',''),(272114,41605,'_menu_item_card_text','field_618cf521b8718'),(272115,41605,'menu_item_card_link',''),(272116,41605,'_menu_item_card_link','field_618cf52eb8719'),(272117,41605,'menu_item_card',''),(272118,41605,'_menu_item_card','field_618cf506b8715'),(272119,39278,'_wp_old_date','2024-10-28'),(272120,40906,'_wp_old_date','2024-10-28'),(272121,40858,'_wp_old_date','2024-11-12'),(272122,41573,'_wp_old_date','2024-11-12'),(272123,41574,'_wp_old_date','2024-11-12'),(272124,41576,'_wp_old_date','2024-11-12'),(272125,41575,'_wp_old_date','2024-11-12'),(272126,39348,'_wp_old_date','2024-11-12'),(272127,39486,'_wp_old_date','2024-11-12'),(272128,39485,'_wp_old_date','2024-11-12'),(272129,39487,'_wp_old_date','2024-11-12'),(272130,39279,'_wp_old_date','2024-11-12'),(272131,39325,'_wp_old_date','2024-11-12'),(272132,39324,'_wp_old_date','2024-11-12'),(272133,39323,'_wp_old_date','2024-11-12'),(272134,39322,'_wp_old_date','2024-11-12'),(272135,39321,'_wp_old_date','2024-11-12'),(272136,39320,'_wp_old_date','2024-11-12'),(272137,39319,'_wp_old_date','2024-11-12'),(272138,39281,'_wp_old_date','2024-11-12'),(272139,39344,'_wp_old_date','2024-11-12'),(272140,39318,'_wp_old_date','2024-11-12'),(272141,39522,'_wp_old_date','2024-11-12'),(272144,41286,'_wp_old_date','2024-11-12'),(272145,39280,'_wp_old_date','2024-11-12'),(272456,41681,'_wp_attached_file','2024/11/AFC-Banner-1.png'),(272457,41681,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:635;s:6:\"height\";i:358;s:4:\"file\";s:24:\"2024/11/AFC-Banner-1.png\";s:8:\"filesize\";i:147730;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"AFC-Banner-1-400x226.png\";s:5:\"width\";i:400;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46850;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:24:\"AFC-Banner-1-400x358.png\";s:5:\"width\";i:400;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91062;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:24:\"AFC-Banner-1-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57008;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:24:\"AFC-Banner-1-300x358.png\";s:5:\"width\";i:300;s:6:\"height\";i:358;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62168;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:24:\"AFC-Banner-1-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:62041;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:24:\"AFC-Banner-1-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46777;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(272458,41707,'hide_hero','0'),(272459,41707,'_hide_hero','field_66a2380fcda39'),(272460,41707,'hero_title','Biomechanics Coaching Diploma for Personal Trainers'),(272461,41707,'_hero_title','field_617571fe285e8'),(272462,41707,'hero_text','Boost Your Personal Training Career with Our Industry-Leading Biomechanics Coaching Diploma'),(272463,41707,'_hero_text','field_6175723c285e9'),(272464,41707,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-41115-3\";s:6:\"target\";s:0:\"\";}'),(272465,41707,'_hero_actions_0_button','field_61757281285eb'),(272466,41707,'hero_actions','1'),(272467,41707,'_hero_actions','field_61757270285ea'),(272468,41707,'hero_style','default'),(272469,41707,'_hero_style','field_62051d9dc5324'),(272470,41707,'_thumbnail_id','39215'),(272471,41707,'__thumbnail_id','field_617570855ddaf'),(272472,41707,'hero_image_pos_x','right'),(272473,41707,'_hero_image_pos_x','field_62ec3d05390bb'),(272474,41707,'hero_image_pos_y','top'),(272475,41707,'_hero_image_pos_y','field_62ec3d05390bc'),(272476,41707,'hero_image_pos',''),(272477,41707,'_hero_image_pos','field_62ec3d05390ba'),(272478,41707,'fft_hide_from_listings','0'),(272479,41707,'_fft_hide_from_listings','field_61f1320446ab2'),(272480,41707,'fft_page_format','ppc'),(272481,41707,'_fft_page_format','field_61ae213f1f218'),(272482,41707,'fft_hide_nav','0'),(272483,41707,'_fft_hide_nav','field_635bd5e43527c'),(272484,41707,'fft_hide_header_call_to_action','0'),(272485,41707,'_fft_hide_header_call_to_action','field_635bd6723527d'),(272486,41707,'fft_page_sitemap','0'),(272487,41707,'_fft_page_sitemap','field_61af9b34e8181'),(272488,41707,'blocks_0_acfe_flexible_toggle',''),(272489,41707,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(272490,41707,'blocks_0_acfe_flexible_layout_title','Template'),(272491,41707,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(272492,41707,'blocks_0_template','39087'),(272493,41707,'_blocks_0_template','field_617bdd570fe01'),(272494,41707,'blocks_1_acfe_flexible_toggle',''),(272495,41707,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(272496,41707,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(272497,41707,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(272498,41707,'blocks_1_options_theme','#ffffff'),(272499,41707,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(272500,41707,'blocks_1_options_reverse','0'),(272501,41707,'_blocks_1_options_reverse','field_61768049bb8ac'),(272502,41707,'blocks_1_options',''),(272503,41707,'_blocks_1_options','field_617682517c334'),(272504,41707,'blocks_1_split_5050_image','39220'),(272505,41707,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(272506,41707,'blocks_1_split_5050_video',''),(272507,41707,'_blocks_1_split_5050_video','field_6239f3160848a'),(272508,41707,'blocks_1_split_5050_content_title',''),(272509,41707,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(272510,41707,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(272511,41707,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(272512,41707,'blocks_1_split_5050_content_text','Our Diploma in Biomechanics Coaching leads the industry, empowering Level 3+ Personal Trainers to grow their client base, offer specialized services, and achieve higher incomes through evidence-based training and advanced assessments.\r\n\r\nEnhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(272513,41707,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(272514,41707,'blocks_1_split_5050_content_actions',''),(272515,41707,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(272516,41707,'blocks_1_split_5050_content',''),(272517,41707,'_blocks_1_split_5050_content','field_61767afceb8ba'),(272518,41707,'blocks_2_acfe_flexible_toggle',''),(272519,41707,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(272520,41707,'blocks_2_acfe_flexible_layout_title','Form'),(272521,41707,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(272522,41707,'blocks_2_row_content_format','standard'),(272523,41707,'_blocks_2_row_content_format','field_6481ead962881'),(272524,41707,'blocks_2_row_content_title',''),(272525,41707,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(272526,41707,'blocks_2_row_content_heading','Enquire Today'),(272527,41707,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(272528,41707,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(272529,41707,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(272530,41707,'blocks_2_row_content_actions',''),(272531,41707,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(272532,41707,'blocks_2_row_content',''),(272533,41707,'_blocks_2_row_content','field_61a0f5f5b3db0'),(272534,41707,'blocks_2_row_form','40394'),(272535,41707,'_blocks_2_row_form','field_61a4ff2c0b08e'),(272536,41707,'blocks_2_row_form_button_label',''),(272537,41707,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(272538,41707,'blocks_3_acfe_flexible_toggle',''),(272539,41707,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(272540,41707,'blocks_3_acfe_flexible_layout_title','Video'),(272541,41707,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(272542,41707,'blocks_3_size','large'),(272543,41707,'_blocks_3_size','field_6487038f297c1'),(272544,41707,'blocks_3_row_content_title',''),(272545,41707,'_blocks_3_row_content_title','field_64870132a865d'),(272546,41707,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(272547,41707,'_blocks_3_row_content_heading','field_64870142a865e'),(272548,41707,'blocks_3_row_content_text',''),(272549,41707,'_blocks_3_row_content_text','field_64870148a865f'),(272550,41707,'blocks_3_row_content',''),(272551,41707,'_blocks_3_row_content','field_6487008ba865c'),(272552,41707,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(272553,41707,'_blocks_3_video_src','field_6193c4a98ec07'),(272554,41707,'blocks_3_video_thumbnail','39186'),(272555,41707,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(272556,41707,'blocks_4_acfe_flexible_toggle',''),(272557,41707,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(272558,41707,'blocks_4_acfe_flexible_layout_title','Steps'),(272559,41707,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(272560,41707,'blocks_4_row_content_title',''),(272561,41707,'_blocks_4_row_content_title','field_64888cd1e26e0'),(272562,41707,'blocks_4_row_content_heading','Benefits of training with us'),(272563,41707,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(272564,41707,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(272565,41707,'_blocks_4_row_content_text','field_64888ce2e26e2'),(272566,41707,'blocks_4_row_content_actions',''),(272567,41707,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(272568,41707,'blocks_4_row_content',''),(272569,41707,'_blocks_4_row_content','field_64888cb0e26df'),(272570,41707,'blocks_4_steps_0_icon','progression.svg'),(272571,41707,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(272572,41707,'blocks_4_steps_0_title','Earning Potential'),(272573,41707,'_blocks_4_steps_0_title','field_64888d94e26e7'),(272574,41707,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(272575,41707,'_blocks_4_steps_0_text','field_64888d99e26e8'),(272576,41707,'blocks_4_steps_1_icon','support.svg'),(272577,41707,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(272578,41707,'blocks_4_steps_1_title','Lifetime Learning Promise'),(272579,41707,'_blocks_4_steps_1_title','field_64888d94e26e7'),(272580,41707,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(272581,41707,'_blocks_4_steps_1_text','field_64888d99e26e8'),(272582,41707,'blocks_4_steps_2_icon','qualification.svg'),(272583,41707,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(272584,41707,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(272585,41707,'_blocks_4_steps_2_title','field_64888d94e26e7'),(272586,41707,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(272587,41707,'_blocks_4_steps_2_text','field_64888d99e26e8'),(272588,41707,'blocks_4_steps_3_icon','leaders.svg'),(272589,41707,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(272590,41707,'blocks_4_steps_3_title','Stand Out From the Crowd'),(272591,41707,'_blocks_4_steps_3_title','field_64888d94e26e7'),(272592,41707,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(272593,41707,'_blocks_4_steps_3_text','field_64888d99e26e8'),(272594,41707,'blocks_4_steps','4'),(272595,41707,'_blocks_4_steps','field_64888d44e26e5'),(272596,41707,'blocks_5_acfe_flexible_toggle',''),(272597,41707,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(272598,41707,'blocks_5_acfe_flexible_layout_title','Tabs'),(272599,41707,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(272600,41707,'blocks_5_options_theme','#ffffff'),(272601,41707,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(272602,41707,'blocks_5_options',''),(272603,41707,'_blocks_5_options','field_6177cfcd8140f'),(272604,41707,'blocks_5_tabs_0_tab_label','What will I learn?'),(272605,41707,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(272606,41707,'blocks_5_tabs_0_tab_content_title',''),(272607,41707,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(272608,41707,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(272609,41707,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(272610,41707,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n\r\nIntroduction to Intrinsic Biomechanics\r\n\r\nPelvic &amp; spine Biomechanics\r\n\r\nShoulder, knee &amp; foot Biomechanics\r\n\r\nBack health Biomechanics'),(272611,41707,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(272612,41707,'blocks_5_tabs_0_tab_content_actions',''),(272613,41707,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(272614,41707,'blocks_5_tabs_0_tab_content',''),(272615,41707,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(272616,41707,'blocks_5_tabs_0_tab_image','39076'),(272617,41707,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(272618,41707,'blocks_5_tabs_1_tab_label','What do I need?'),(272619,41707,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(272620,41707,'blocks_5_tabs_1_tab_content_title',''),(272621,41707,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(272622,41707,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(272623,41707,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(272624,41707,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(272625,41707,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(272626,41707,'blocks_5_tabs_1_tab_content_actions',''),(272627,41707,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(272628,41707,'blocks_5_tabs_1_tab_content',''),(272629,41707,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(272630,41707,'blocks_5_tabs_1_tab_image','39223'),(272631,41707,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(272632,41707,'blocks_5_tabs_2_tab_label','Where can I learn?'),(272633,41707,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(272634,41707,'blocks_5_tabs_2_tab_content_title',''),(272635,41707,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(272636,41707,'blocks_5_tabs_2_tab_content_heading','Locations'),(272637,41707,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(272638,41707,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(272639,41707,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(272640,41707,'blocks_5_tabs_2_tab_content_actions',''),(272641,41707,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(272642,41707,'blocks_5_tabs_2_tab_content',''),(272643,41707,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(272644,41707,'blocks_5_tabs_2_tab_image','39224'),(272645,41707,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(272646,41707,'blocks_5_tabs','3'),(272647,41707,'_blocks_5_tabs','field_6177cff281419'),(272648,41707,'blocks_6_acfe_flexible_toggle',''),(272649,41707,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(272650,41707,'blocks_6_acfe_flexible_layout_title','Text Block'),(272651,41707,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(272652,41707,'blocks_6_options_theme','#b61234'),(272653,41707,'_blocks_6_options_theme','field_6176830e2ad17'),(272654,41707,'blocks_6_options',''),(272655,41707,'_blocks_6_options','field_6176830e2ad16'),(272656,41707,'blocks_6_text_block_heading','Fees & Funding Options'),(272657,41707,'_blocks_6_text_block_heading','field_617669d413097'),(272658,41707,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(272659,41707,'_blocks_6_text_block_content','field_617669ec13098'),(272660,41707,'blocks_7_acfe_flexible_toggle',''),(272661,41707,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(272662,41707,'blocks_7_acfe_flexible_layout_title','Icons'),(272663,41707,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(272664,41707,'blocks_7_options_theme','#b61234'),(272665,41707,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(272666,41707,'blocks_7_options_format','row'),(272667,41707,'_blocks_7_options_format','field_64bfde9a90690'),(272668,41707,'blocks_7_options',''),(272669,41707,'_blocks_7_options','field_64bfdd9b90684'),(272670,41707,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(272671,41707,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(272672,41707,'blocks_7_icon_row_items_0_label','Pay in Full'),(272673,41707,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(272674,41707,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(272675,41707,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(272676,41707,'blocks_7_icon_row_items_1_icon','finance.svg'),(272677,41707,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(272678,41707,'blocks_7_icon_row_items_1_label','0% finance'),(272679,41707,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(272680,41707,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(272681,41707,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(272682,41707,'blocks_7_icon_row_items_2_icon','deposit.svg'),(272683,41707,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(272684,41707,'blocks_7_icon_row_items_2_label','Deposit & balance'),(272685,41707,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(272686,41707,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(272687,41707,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(272688,41707,'blocks_7_icon_row_items','3'),(272689,41707,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(272690,41707,'blocks_8_acfe_flexible_toggle',''),(272691,41707,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(272692,41707,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(272693,41707,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(272694,41707,'blocks_8_options_theme','#f5f5f5'),(272695,41707,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(272696,41707,'blocks_8_options_reverse','0'),(272697,41707,'_blocks_8_options_reverse','field_61768049bb8ac'),(272698,41707,'blocks_8_options',''),(272699,41707,'_blocks_8_options','field_617682517c334'),(272700,41707,'blocks_8_split_5050_image','40920'),(272701,41707,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(272702,41707,'blocks_8_split_5050_video',''),(272703,41707,'_blocks_8_split_5050_video','field_6239f3160848a'),(272704,41707,'blocks_8_split_5050_content_title',''),(272705,41707,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(272706,41707,'blocks_8_split_5050_content_heading','Why Study This Course?'),(272707,41707,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(272708,41707,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(272709,41707,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(272710,41707,'blocks_8_split_5050_content_actions',''),(272711,41707,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(272712,41707,'blocks_8_split_5050_content',''),(272713,41707,'_blocks_8_split_5050_content','field_61767afceb8ba'),(272714,41707,'blocks_9_acfe_flexible_toggle',''),(272715,41707,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(272716,41707,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(272717,41707,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(272718,41707,'blocks_9_testimonial_slider_content_title',''),(272719,41707,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(272720,41707,'blocks_9_testimonial_slider_content_heading','Testimonials'),(272721,41707,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(272722,41707,'blocks_9_testimonial_slider_content_text',''),(272723,41707,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(272724,41707,'blocks_9_testimonial_slider_content_actions',''),(272725,41707,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(272726,41707,'blocks_9_testimonial_slider_content',''),(272727,41707,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(272728,41707,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(272729,41707,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(272730,41707,'blocks_9_testimonial_slider_ambassador_bool','0'),(272731,41707,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(272732,41707,'blocks_10_acfe_flexible_toggle',''),(272733,41707,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(272734,41707,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(272735,41707,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(272736,41707,'blocks_10_options_theme','#ffffff'),(272737,41707,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(272738,41707,'blocks_10_options_state','0'),(272739,41707,'_blocks_10_options_state','field_6239fcb7508c5'),(272740,41707,'blocks_10_options',''),(272741,41707,'_blocks_10_options','field_6177e2991ac44'),(272742,41707,'blocks_10_content_title',''),(272743,41707,'_blocks_10_content_title','field_64d237e8bb1e2'),(272744,41707,'blocks_10_content_heading','Frequently asked questions '),(272745,41707,'_blocks_10_content_heading','field_64d237e8bb1e3'),(272746,41707,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(272747,41707,'_blocks_10_content_text','field_64d237e8bb1e4'),(272748,41707,'blocks_10_content_actions',''),(272749,41707,'_blocks_10_content_actions','field_64d237e8bb1e5'),(272750,41707,'blocks_10_content_align','left'),(272751,41707,'_blocks_10_content_align','field_64d2443e6b6aa'),(272752,41707,'blocks_10_content',''),(272753,41707,'_blocks_10_content','field_64d237e8bb1e1'),(272754,41707,'blocks_10_accordion_content','faqs'),(272755,41707,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(272756,41707,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(272757,41707,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(272758,41707,'blocks_10_actions',''),(272759,41707,'_blocks_10_actions','field_61a746a817f7a'),(272760,41707,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(272761,41707,'_blocks','field_6176696113096'),(272890,39066,'_yoast_wpseo_inclusive_language_score','90'),(272893,41716,'hide_hero','0'),(272894,41716,'_hide_hero','field_66a2380fcda39'),(272895,41716,'hero_title','Biomechanics Coach Course - EMD UK'),(272896,41716,'_hero_title','field_617571fe285e8'),(272897,41716,'hero_text','Level up your career with a Biomechanics Coach Course from Biomechanics Education and Future Fit. Use your exclusive 10% discount as a EMD UK member. '),(272898,41716,'_hero_text','field_6175723c285e9'),(272899,41716,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-39038-6\";s:6:\"target\";s:6:\"_blank\";}'),(272900,41716,'_hero_actions_0_button','field_61757281285eb'),(272901,41716,'hero_actions','1'),(272902,41716,'_hero_actions','field_61757270285ea'),(272903,41716,'hero_style','default'),(272904,41716,'_hero_style','field_62051d9dc5324'),(272905,41716,'_thumbnail_id','38977'),(272906,41716,'__thumbnail_id','field_617570855ddaf'),(272907,41716,'hero_image_pos_x','right'),(272908,41716,'_hero_image_pos_x','field_62ec3d05390bb'),(272909,41716,'hero_image_pos_y','top'),(272910,41716,'_hero_image_pos_y','field_62ec3d05390bc'),(272911,41716,'hero_image_pos',''),(272912,41716,'_hero_image_pos','field_62ec3d05390ba'),(272913,41716,'fft_hide_from_listings','0'),(272914,41716,'_fft_hide_from_listings','field_61f1320446ab2'),(272915,41716,'fft_page_format','default'),(272916,41716,'_fft_page_format','field_61ae213f1f218'),(272917,41716,'fft_hide_nav','1'),(272918,41716,'_fft_hide_nav','field_635bd5e43527c'),(272919,41716,'fft_hide_header_call_to_action','0'),(272920,41716,'_fft_hide_header_call_to_action','field_635bd6723527d'),(272921,41716,'fft_page_sitemap','1'),(272922,41716,'_fft_page_sitemap','field_61af9b34e8181'),(272923,41716,'blocks_0_acfe_flexible_toggle',''),(272924,41716,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(272925,41716,'blocks_0_acfe_flexible_layout_title','Icons'),(272926,41716,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(272927,41716,'blocks_0_options_theme','#ffffff'),(272928,41716,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(272929,41716,'blocks_0_options_format','row'),(272930,41716,'_blocks_0_options_format','field_64bfde9a90690'),(272931,41716,'blocks_0_options',''),(272932,41716,'_blocks_0_options','field_64bfdd9b90684'),(272933,41716,'blocks_0_icon_row_items_0_icon','qualification.svg'),(272934,41716,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(272935,41716,'blocks_0_icon_row_items_0_label','Course Type'),(272936,41716,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(272937,41716,'blocks_0_icon_row_items_0_text','Blended Learning'),(272938,41716,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(272939,41716,'blocks_0_icon_row_items_1_icon','pliates-stamp.svg'),(272940,41716,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(272941,41716,'blocks_0_icon_row_items_1_label','Qualification'),(272942,41716,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(272943,41716,'blocks_0_icon_row_items_1_text','Diploma in Biomechanics Coaching'),(272944,41716,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(272945,41716,'blocks_0_icon_row_items_2_icon','pay-as-you-learn.svg'),(272946,41716,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(272947,41716,'blocks_0_icon_row_items_2_label','Flexible Payment Options'),(272948,41716,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(272949,41716,'blocks_0_icon_row_items_2_text','Study Conveniently & Affordably'),(272950,41716,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(272951,41716,'blocks_0_icon_row_items_3_icon','benchmark.svg'),(272952,41716,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(272953,41716,'blocks_0_icon_row_items_3_label','IBA Registered'),(272954,41716,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(272955,41716,'blocks_0_icon_row_items_3_text','Become an IBA Registered Biomechanics Coach'),(272956,41716,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(272957,41716,'blocks_0_icon_row_items','4'),(272958,41716,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(272959,41716,'blocks_1_acfe_flexible_toggle',''),(272960,41716,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(272961,41716,'blocks_1_acfe_flexible_layout_title','Form'),(272962,41716,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(272963,41716,'blocks_1_row_content_format','promotion'),(272964,41716,'_blocks_1_row_content_format','field_6481ead962881'),(272965,41716,'blocks_1_row_content_promotion_label','Biomechanics Coach Course'),(272966,41716,'_blocks_1_row_content_promotion_label','field_6481eb6262883'),(272967,41716,'blocks_1_row_content_promotion_heading','Up to 10% Off'),(272968,41716,'_blocks_1_row_content_promotion_heading','field_6481ef9462884'),(272969,41716,'blocks_1_row_content_promotion_value','Up to 10% Off'),(272970,41716,'_blocks_1_row_content_promotion_value','field_6481efa562885'),(272971,41716,'blocks_1_row_content_promotion_terms','Receive 10% off the Biomechanics Coach Diploma as an EMD UK member'),(272972,41716,'_blocks_1_row_content_promotion_terms','field_6481efab62886'),(272973,41716,'blocks_1_row_content_promotion',''),(272974,41716,'_blocks_1_row_content_promotion','field_6481eb3962882'),(272975,41716,'blocks_1_row_form_title','EMD UK Referral'),(272976,41716,'_blocks_1_row_form_title','field_64872db5127af'),(272977,41716,'blocks_1_row_form','40413'),(272978,41716,'_blocks_1_row_form','field_61a4ff2c0b08e'),(272979,41716,'blocks_1_row_form_button_label',''),(272980,41716,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(272981,41716,'blocks_2_acfe_flexible_toggle',''),(272982,41716,'_blocks_2_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(272983,41716,'blocks_2_acfe_flexible_layout_title','Logos'),(272984,41716,'_blocks_2_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(272985,41716,'blocks_2_options_theme','#ffffff'),(272986,41716,'_blocks_2_options_theme','field_61782954ee966_field_6176830e2ad17'),(272987,41716,'blocks_2_options_format','grid'),(272988,41716,'_blocks_2_options_format','field_61782964ee971'),(272989,41716,'blocks_2_options',''),(272990,41716,'_blocks_2_options','field_61782954ee965'),(272991,41716,'blocks_2_logos','a:2:{i:0;s:5:\"38587\";i:1;s:5:\"39040\";}'),(272992,41716,'_blocks_2_logos','field_61782954ee96d'),(272993,41716,'blocks_2_title',''),(272994,41716,'_blocks_2_title','field_668fbfdc2daa1'),(272995,41716,'blocks_3_acfe_flexible_toggle',''),(272996,41716,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(272997,41716,'blocks_3_acfe_flexible_layout_title','Course Overview and Video'),(272998,41716,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(272999,41716,'blocks_3_size','large'),(273000,41716,'_blocks_3_size','field_6487038f297c1'),(273001,41716,'blocks_3_row_content_title',''),(273002,41716,'_blocks_3_row_content_title','field_64870132a865d'),(273003,41716,'blocks_3_row_content_heading','Course Overview'),(273004,41716,'_blocks_3_row_content_heading','field_64870142a865e'),(273005,41716,'blocks_3_row_content_text','This Biomechanics Coaching Diploma will introduce individuals to methods which can help movement practitioners, strength coaches, personal trainers and manual therapists to identify risks and optimise performance for clients.\r\n\r\nBiomechanics Education aims to bring students a movement assessment program that is simplified and comes from an evidence-based perspective to bring students a system that pulls their skills together.'),(273006,41716,'_blocks_3_row_content_text','field_64870148a865f'),(273007,41716,'blocks_3_row_content',''),(273008,41716,'_blocks_3_row_content','field_6487008ba865c'),(273009,41716,'blocks_3_video_src','https://youtu.be/9V5OgVeLLKA'),(273010,41716,'_blocks_3_video_src','field_6193c4a98ec07'),(273011,41716,'blocks_3_video_thumbnail','38998'),(273012,41716,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(273013,41716,'blocks_4_acfe_flexible_toggle',''),(273014,41716,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(273015,41716,'blocks_4_acfe_flexible_layout_title','Learn More Heading Text'),(273016,41716,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(273017,41716,'blocks_4_options_theme','#ffffff'),(273018,41716,'_blocks_4_options_theme','field_6176830e2ad17'),(273019,41716,'blocks_4_options',''),(273020,41716,'_blocks_4_options','field_6176830e2ad16'),(273021,41716,'blocks_4_text_block_heading','Learn more about the course'),(273022,41716,'_blocks_4_text_block_heading','field_617669d413097'),(273023,41716,'blocks_4_text_block_content','<p style=\"text-align: center;\">Once qualified with a Diploma in Biomechanics coaching students will have the skills to follow a system to assess clients and understand where there is risk or opportunity to improve.</p>'),(273024,41716,'_blocks_4_text_block_content','field_617669ec13098'),(273025,41716,'blocks_5_acfe_flexible_toggle',''),(273026,41716,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(273027,41716,'blocks_5_acfe_flexible_layout_title','Further course info, what\'s included'),(273028,41716,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(273029,41716,'blocks_5_options_theme','#ffffff'),(273030,41716,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(273031,41716,'blocks_5_options',''),(273032,41716,'_blocks_5_options','field_6177cfcd8140f'),(273033,41716,'blocks_5_tabs_0_tab_label','What\'s Included'),(273034,41716,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(273035,41716,'blocks_5_tabs_0_tab_content_title',''),(273036,41716,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(273037,41716,'blocks_5_tabs_0_tab_content_heading','Define Your Skills'),(273038,41716,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(273039,41716,'blocks_5_tabs_0_tab_content_text','This Biomechanics coaching course will use the skills you have prior to studying altogether. The aim of this course is not to replace skills but to hone them all in one place following a simple system based on your expertise, experience and knowledge.\r\n\r\nThis course will provide you with the skills you need to assess your client\'s body and understand where there is risk and where you can help them improve.\r\n\r\nThis will help you gain confidence and enhanced skills in communicating with a multi-disciplinary team that we will also support you in finding.'),(273040,41716,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(273041,41716,'blocks_5_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(273042,41716,'_blocks_5_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(273043,41716,'blocks_5_tabs_0_tab_content_actions','1'),(273044,41716,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(273045,41716,'blocks_5_tabs_0_tab_content',''),(273046,41716,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(273047,41716,'blocks_5_tabs_0_tab_image','39009'),(273048,41716,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(273049,41716,'blocks_5_tabs_1_tab_label','What You\'ll Learn'),(273050,41716,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(273051,41716,'blocks_5_tabs_1_tab_content_title',''),(273052,41716,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(273053,41716,'blocks_5_tabs_1_tab_content_heading','Included Learning'),(273054,41716,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(273055,41716,'blocks_5_tabs_1_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(273056,41716,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(273057,41716,'blocks_5_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(273058,41716,'_blocks_5_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(273059,41716,'blocks_5_tabs_1_tab_content_actions','1'),(273060,41716,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(273061,41716,'blocks_5_tabs_1_tab_content',''),(273062,41716,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(273063,41716,'blocks_5_tabs_1_tab_image','39010'),(273064,41716,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(273065,41716,'blocks_5_tabs','2'),(273066,41716,'_blocks_5_tabs','field_6177cff281419'),(273067,41716,'blocks_6_acfe_flexible_toggle',''),(273068,41716,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(273069,41716,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(273070,41716,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(273071,41716,'blocks_6_options_theme','#ffffff'),(273072,41716,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(273073,41716,'blocks_6_options_state','0'),(273074,41716,'_blocks_6_options_state','field_6239fcb7508c5'),(273075,41716,'blocks_6_options',''),(273076,41716,'_blocks_6_options','field_6177e2991ac44'),(273077,41716,'blocks_6_content_title',''),(273078,41716,'_blocks_6_content_title','field_64d237e8bb1e2'),(273079,41716,'blocks_6_content_heading','Frequently asked questions'),(273080,41716,'_blocks_6_content_heading','field_64d237e8bb1e3'),(273081,41716,'blocks_6_content_text',''),(273082,41716,'_blocks_6_content_text','field_64d237e8bb1e4'),(273083,41716,'blocks_6_content_actions',''),(273084,41716,'_blocks_6_content_actions','field_64d237e8bb1e5'),(273085,41716,'blocks_6_content_align','left'),(273086,41716,'_blocks_6_content_align','field_64d2443e6b6aa'),(273087,41716,'blocks_6_content',''),(273088,41716,'_blocks_6_content','field_64d237e8bb1e1'),(273089,41716,'blocks_6_accordion_content','faqs'),(273090,41716,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(273091,41716,'blocks_6_accordion_faqs_select','a:13:{i:0;s:5:\"39014\";i:1;s:5:\"39018\";i:2;s:5:\"39025\";i:3;s:5:\"39017\";i:4;s:5:\"39016\";i:5;s:5:\"39021\";i:6;s:5:\"39019\";i:7;s:5:\"39015\";i:8;s:5:\"39027\";i:9;s:5:\"39026\";i:10;s:5:\"39022\";i:11;s:5:\"39020\";i:12;s:5:\"39023\";}'),(273092,41716,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(273093,41716,'blocks_6_actions',''),(273094,41716,'_blocks_6_actions','field_61a746a817f7a'),(273095,41716,'blocks_7_acfe_flexible_toggle',''),(273096,41716,'_blocks_7_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(273097,41716,'blocks_7_acfe_flexible_layout_title','Promo Panel'),(273098,41716,'_blocks_7_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(273099,41716,'blocks_7_options_alignment','center'),(273100,41716,'_blocks_7_options_alignment','field_61769449f5490'),(273101,41716,'blocks_7_options',''),(273102,41716,'_blocks_7_options','field_617693e1428f0'),(273103,41716,'blocks_7_promo_panel_image','39035'),(273104,41716,'_blocks_7_promo_panel_image','field_617693e1428f3'),(273105,41716,'blocks_7_promo_panel_content_heading','Ready to level up your fitness career ?'),(273106,41716,'_blocks_7_promo_panel_content_heading','field_617693e1428f6'),(273107,41716,'blocks_7_promo_panel_content_text','Download a price guide today to receive and exclusive 10% off for all David Lloyd Personal Trainers.'),(273108,41716,'_blocks_7_promo_panel_content_text','field_617693e1428f7'),(273109,41716,'blocks_7_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-39038-2\";s:6:\"target\";s:0:\"\";}'),(273110,41716,'_blocks_7_promo_panel_content_actions_0_button','field_617693e1428f9'),(273111,41716,'blocks_7_promo_panel_content_actions','1'),(273112,41716,'_blocks_7_promo_panel_content_actions','field_617693e1428f8'),(273113,41716,'blocks_7_promo_panel_content',''),(273114,41716,'_blocks_7_promo_panel_content','field_617693e1428f4'),(273115,41716,'blocks','a:8:{i:0;s:5:\"icons\";i:1;s:4:\"form\";i:2;s:5:\"logos\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";i:6;s:10:\"accordions\";i:7;s:11:\"promo_panel\";}'),(273116,41716,'_blocks','field_6176696113096'),(273117,41716,'hero_icon',''),(273118,41716,'_hero_icon','field_61a6182199d03'),(273119,41716,'blocks_1_row_content_title',''),(273120,41716,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(273121,41716,'blocks_1_row_content_heading',''),(273122,41716,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(273123,41716,'blocks_1_row_content_text','<p style=\"text-align: left;\"><b><i>Up to 10% Off</i></b></p>\r\n<p style=\"text-align: left;\">Biomechanics Coach Course</p>\r\n<p style=\"text-align: left;\">Receive 10% off the Biomechanics Coach Diploma as a David Lloyd Personal Trainer</p>'),(273124,41716,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(273125,41716,'blocks_1_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-38973-3\";s:6:\"target\";s:0:\"\";}'),(273126,41716,'_blocks_1_row_content_actions_0_button','field_61a0f5f5b3db5'),(273127,41716,'blocks_1_row_content_actions','1'),(273128,41716,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(273129,41716,'blocks_1_row_content',''),(273130,41716,'_blocks_1_row_content','field_61a0f5f5b3db0'),(273311,40779,'_yoast_wpseo_inclusive_language_score','90'),(273924,41720,'hide_hero','0'),(273925,41720,'_hide_hero','field_66a2380fcda39'),(273926,41720,'hero_title','Biomechanics and Podiatrists'),(273927,41720,'_hero_title','field_617571fe285e8'),(273928,41720,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(273929,41720,'_hero_text','field_6175723c285e9'),(273930,41720,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(273931,41720,'_hero_actions_0_button','field_61757281285eb'),(273932,41720,'hero_actions','1'),(273933,41720,'_hero_actions','field_61757270285ea'),(273934,41720,'hero_style','default'),(273935,41720,'_hero_style','field_62051d9dc5324'),(273936,41720,'_thumbnail_id','39247'),(273937,41720,'__thumbnail_id','field_617570855ddaf'),(273938,41720,'hero_image_pos_x','right'),(273939,41720,'_hero_image_pos_x','field_62ec3d05390bb'),(273940,41720,'hero_image_pos_y','top'),(273941,41720,'_hero_image_pos_y','field_62ec3d05390bc'),(273942,41720,'hero_image_pos',''),(273943,41720,'_hero_image_pos','field_62ec3d05390ba'),(273944,41720,'fft_hide_from_listings','0'),(273945,41720,'_fft_hide_from_listings','field_61f1320446ab2'),(273946,41720,'fft_page_format','default'),(273947,41720,'_fft_page_format','field_61ae213f1f218'),(273948,41720,'fft_hide_nav','0'),(273949,41720,'_fft_hide_nav','field_635bd5e43527c'),(273950,41720,'fft_hide_header_call_to_action','0'),(273951,41720,'_fft_hide_header_call_to_action','field_635bd6723527d'),(273952,41720,'fft_page_sitemap','0'),(273953,41720,'_fft_page_sitemap','field_61af9b34e8181'),(273954,41720,'blocks_0_acfe_flexible_toggle',''),(273955,41720,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(273956,41720,'blocks_0_acfe_flexible_layout_title','Template'),(273957,41720,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(273958,41720,'blocks_0_template','39087'),(273959,41720,'_blocks_0_template','field_617bdd570fe01'),(273960,41720,'blocks_1_acfe_flexible_toggle',''),(273961,41720,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(273962,41720,'blocks_1_acfe_flexible_layout_title','Steps'),(273963,41720,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(273964,41720,'blocks_1_row_content_title',''),(273965,41720,'_blocks_1_row_content_title','field_64888cd1e26e0'),(273966,41720,'blocks_1_row_content_heading','Benefits of training with us'),(273967,41720,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(273968,41720,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(273969,41720,'_blocks_1_row_content_text','field_64888ce2e26e2'),(273970,41720,'blocks_1_row_content_actions',''),(273971,41720,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(273972,41720,'blocks_1_row_content',''),(273973,41720,'_blocks_1_row_content','field_64888cb0e26df'),(273974,41720,'blocks_1_steps_0_icon','progression.svg'),(273975,41720,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(273976,41720,'blocks_1_steps_0_title','Earning Potential'),(273977,41720,'_blocks_1_steps_0_title','field_64888d94e26e7'),(273978,41720,'blocks_1_steps_0_text','Attract new clients, retain current ones, and increase your rates with the Diploma in Biomechanics Coaching. This programme gives you a system to reach new clients and work more effectively with existing ones. Full body screenings may also require extra sessions, providing clients with thorough support and helping you build stronger, long-term relationships.'),(273979,41720,'_blocks_1_steps_0_text','field_64888d99e26e8'),(273980,41720,'blocks_1_steps_1_icon','support.svg'),(273981,41720,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(273982,41720,'blocks_1_steps_1_title','Lifetime Learning Promise'),(273983,41720,'_blocks_1_steps_1_title','field_64888d94e26e7'),(273984,41720,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(273985,41720,'_blocks_1_steps_1_text','field_64888d99e26e8'),(273986,41720,'blocks_1_steps_2_icon','qualification.svg'),(273987,41720,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(273988,41720,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(273989,41720,'_blocks_1_steps_2_title','field_64888d94e26e7'),(273990,41720,'blocks_1_steps_2_text','Developed through over 20 years of research with 4,000 participants - from those recovering from injury to active individuals - is a comprehensive, evidence-backed programme for mastering movement assessments. Through a blend of online learning and hands-on workshops, you’ll learn specific tests and screens to understand the roles of the pelvis, spine, and upper body in lower limb function, particularly foot mechanics. This approach equips you with the insights needed for effective orthotic prescription and tailored movement strategies, helping you optimise outcomes for every client.'),(273991,41720,'_blocks_1_steps_2_text','field_64888d99e26e8'),(273992,41720,'blocks_1_steps_3_icon','leaders.svg'),(273993,41720,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(273994,41720,'blocks_1_steps_3_title','Stand Out From the Crowd'),(273995,41720,'_blocks_1_steps_3_title','field_64888d94e26e7'),(273996,41720,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(273997,41720,'_blocks_1_steps_3_text','field_64888d99e26e8'),(273998,41720,'blocks_1_steps','4'),(273999,41720,'_blocks_1_steps','field_64888d44e26e5'),(274000,41720,'blocks_2_acfe_flexible_toggle',''),(274001,41720,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(274002,41720,'blocks_2_acfe_flexible_layout_title','Form'),(274003,41720,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(274004,41720,'blocks_2_row_content_format','standard'),(274005,41720,'_blocks_2_row_content_format','field_6481ead962881'),(274006,41720,'blocks_2_row_content_title',''),(274007,41720,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(274008,41720,'blocks_2_row_content_heading','Enquire Today'),(274009,41720,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(274010,41720,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(274011,41720,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(274012,41720,'blocks_2_row_content_actions',''),(274013,41720,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(274014,41720,'blocks_2_row_content',''),(274015,41720,'_blocks_2_row_content','field_61a0f5f5b3db0'),(274016,41720,'blocks_2_row_form','40394'),(274017,41720,'_blocks_2_row_form','field_61a4ff2c0b08e'),(274018,41720,'blocks_2_row_form_button_label',''),(274019,41720,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(274020,41720,'blocks_3_acfe_flexible_toggle',''),(274021,41720,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(274022,41720,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(274023,41720,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(274024,41720,'blocks_3_options_theme','#ffffff'),(274025,41720,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(274026,41720,'blocks_3_options_reverse','0'),(274027,41720,'_blocks_3_options_reverse','field_61768049bb8ac'),(274028,41720,'blocks_3_options',''),(274029,41720,'_blocks_3_options','field_617682517c334'),(274030,41720,'blocks_3_split_5050_image','39617'),(274031,41720,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(274032,41720,'blocks_3_split_5050_video',''),(274033,41720,'_blocks_3_split_5050_video','field_6239f3160848a'),(274034,41720,'blocks_3_split_5050_content_title',''),(274035,41720,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(274036,41720,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(274037,41720,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(274038,41720,'blocks_3_split_5050_content_text','This integrated system offers a full-body approach, covering the pelvis, spine, shoulders, knees, and feet in a comprehensive biomechanical assessment programme. By understanding how the upper body affects lower limb mechanics, podiatrists can address foot issues with a more holistic perspective. This unique assessment method enables you to uncover connections and solutions that traditional approaches may overlook, helping to improve client retention and build trust over time.\r\n\r\nOur model promotes a prevention-focused, system-led approach rather than just responding to symptoms. This proactive method allows you to expand your client base while reducing risks through exercise prescription, supporting clients before, during, and after injuries. It also empowers you with exercise prescription skills that complement your existing expertise, allowing for informed orthotic prescriptions and an integrated care approach to foot health.'),(274039,41720,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(274040,41720,'blocks_3_split_5050_content_actions',''),(274041,41720,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(274042,41720,'blocks_3_split_5050_content',''),(274043,41720,'_blocks_3_split_5050_content','field_61767afceb8ba'),(274044,41720,'blocks_4_acfe_flexible_toggle',''),(274045,41720,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(274046,41720,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(274047,41720,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(274048,41720,'blocks_4_options_theme','#ffffff'),(274049,41720,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(274050,41720,'blocks_4_options_reverse','1'),(274051,41720,'_blocks_4_options_reverse','field_61768049bb8ac'),(274052,41720,'blocks_4_options',''),(274053,41720,'_blocks_4_options','field_617682517c334'),(274054,41720,'blocks_4_split_5050_image','41371'),(274055,41720,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(274056,41720,'blocks_4_split_5050_video',''),(274057,41720,'_blocks_4_split_5050_video','field_6239f3160848a'),(274058,41720,'blocks_4_split_5050_content_title',''),(274059,41720,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(274060,41720,'blocks_4_split_5050_content_heading','Backed by experts in the field'),(274061,41720,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(274062,41720,'blocks_4_split_5050_content_text','Martin Haines RGRT MCSP SRP IBAM, has been the Lead Physiotherapist at Crystal Palace FC and Arsenal FC, as well treating professional rugby players from the England rugby team and Premiership as well as professional footballers from Premiership Teams. He has been the Clinical Director at 4 clinics in the UK and lead consultant for clinics in Sweden and USA. He has been on the PGA Performance Institute and has worked with 5 Olympic Champions. He has also been involved with McLaren F1, working with their drivers to help prevent and manage injury as well as helping design their cars.\r\n\r\nMartin has worked with the Biomechanics Education Team to develop the content for their courses and workshops and consults to help future courses. He has a particular interest in developing biomechanics courses for medical professionals including the Podiatry workshop/course\r\n\r\nPersonally, Martin is an accomplished author and his work has been presented at scientific congresses across the world, including the IOC World Congress on Illness and Injury in Sport. He is a former Honorary Senior Lecturer at Salford University and former chair of the UK Biomechanics Coaching Association.'),(274063,41720,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(274064,41720,'blocks_4_split_5050_content_actions',''),(274065,41720,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(274066,41720,'blocks_4_split_5050_content',''),(274067,41720,'_blocks_4_split_5050_content','field_61767afceb8ba'),(274250,41720,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:5:\"video\";i:6;s:4:\"tabs\";i:7;s:10:\"text_block\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(274251,41720,'_blocks','field_6176696113096'),(274252,41720,'_acf_changed','1'),(274253,41720,'blocks_5_acfe_flexible_toggle',''),(274254,41720,'_blocks_5_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(274255,41720,'blocks_5_acfe_flexible_layout_title','Video'),(274256,41720,'_blocks_5_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(274257,41720,'blocks_5_size','large'),(274258,41720,'_blocks_5_size','field_6487038f297c1'),(274259,41720,'blocks_5_row_content_title',''),(274260,41720,'_blocks_5_row_content_title','field_64870132a865d'),(274261,41720,'blocks_5_row_content_heading','Watch here our exciting interview with Martin Haines '),(274262,41720,'_blocks_5_row_content_heading','field_64870142a865e'),(274263,41720,'blocks_5_row_content_text',''),(274264,41720,'_blocks_5_row_content_text','field_64870148a865f'),(274265,41720,'blocks_5_row_content',''),(274266,41720,'_blocks_5_row_content','field_6487008ba865c'),(274267,41720,'blocks_5_video_src','https://youtu.be/_WP-i7QnhDA'),(274268,41720,'_blocks_5_video_src','field_6193c4a98ec07'),(274269,41720,'blocks_5_video_thumbnail',''),(274270,41720,'_blocks_5_video_thumbnail','field_6193c4a08ec06'),(274271,41720,'blocks_6_acfe_flexible_toggle',''),(274272,41720,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(274273,41720,'blocks_6_acfe_flexible_layout_title','Tabs'),(274274,41720,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(274275,41720,'blocks_6_options_theme','#ffffff'),(274276,41720,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(274277,41720,'blocks_6_options',''),(274278,41720,'_blocks_6_options','field_6177cfcd8140f'),(274279,41720,'blocks_6_tabs_0_tab_label','What will I learn?'),(274280,41720,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(274281,41720,'blocks_6_tabs_0_tab_content_title',''),(274282,41720,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(274283,41720,'blocks_6_tabs_0_tab_content_heading','What you’ll learn'),(274284,41720,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(274285,41720,'blocks_6_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n 	<li>Screening System that Informs Orthotic Prescription</li>\r\n 	<li>Provide Exercise Prescription Skills</li>\r\n</ul>'),(274286,41720,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(274287,41720,'blocks_6_tabs_0_tab_content_actions',''),(274288,41720,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(274289,41720,'blocks_6_tabs_0_tab_content',''),(274290,41720,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(274291,41720,'blocks_6_tabs_0_tab_image','39076'),(274292,41720,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(274293,41720,'blocks_6_tabs_1_tab_label','What do I need?'),(274294,41720,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(274295,41720,'blocks_6_tabs_1_tab_content_title',''),(274296,41720,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(274297,41720,'blocks_6_tabs_1_tab_content_heading','Entry requirements'),(274298,41720,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(274299,41720,'blocks_6_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Podiatry Qualification</li>\r\n 	<li>Chiropodist Qualification</li>\r\n 	<li>Orthotist Qualification</li>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(274300,41720,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(274301,41720,'blocks_6_tabs_1_tab_content_actions',''),(274302,41720,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(274303,41720,'blocks_6_tabs_1_tab_content',''),(274304,41720,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(274305,41720,'blocks_6_tabs_1_tab_image','39223'),(274306,41720,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(274307,41720,'blocks_6_tabs_2_tab_label','Where can I learn?'),(274308,41720,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(274309,41720,'blocks_6_tabs_2_tab_content_title',''),(274310,41720,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(274311,41720,'blocks_6_tabs_2_tab_content_heading','Locations'),(274312,41720,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(274313,41720,'blocks_6_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(274314,41720,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(274315,41720,'blocks_6_tabs_2_tab_content_actions',''),(274316,41720,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(274317,41720,'blocks_6_tabs_2_tab_content',''),(274318,41720,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(274319,41720,'blocks_6_tabs_2_tab_image','39224'),(274320,41720,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(274321,41720,'blocks_6_tabs','3'),(274322,41720,'_blocks_6_tabs','field_6177cff281419'),(274323,41720,'blocks_7_acfe_flexible_toggle',''),(274324,41720,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(274325,41720,'blocks_7_acfe_flexible_layout_title','Text Block'),(274326,41720,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(274327,41720,'blocks_7_options_theme','#b61234'),(274328,41720,'_blocks_7_options_theme','field_6176830e2ad17'),(274329,41720,'blocks_7_options',''),(274330,41720,'_blocks_7_options','field_6176830e2ad16'),(274331,41720,'blocks_7_text_block_heading','Fees & Funding Options'),(274332,41720,'_blocks_7_text_block_heading','field_617669d413097'),(274333,41720,'blocks_7_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(274334,41720,'_blocks_7_text_block_content','field_617669ec13098'),(274335,41720,'blocks_8_acfe_flexible_toggle',''),(274336,41720,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(274337,41720,'blocks_8_acfe_flexible_layout_title','Icons'),(274338,41720,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(274339,41720,'blocks_8_options_theme','#b61234'),(274340,41720,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(274341,41720,'blocks_8_options_format','row'),(274342,41720,'_blocks_8_options_format','field_64bfde9a90690'),(274343,41720,'blocks_8_options',''),(274344,41720,'_blocks_8_options','field_64bfdd9b90684'),(274345,41720,'blocks_8_icon_row_items_0_icon','payment-plans.svg'),(274346,41720,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(274347,41720,'blocks_8_icon_row_items_0_label','Pay in Full'),(274348,41720,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(274349,41720,'blocks_8_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(274350,41720,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(274351,41720,'blocks_8_icon_row_items_1_icon','finance.svg'),(274352,41720,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(274353,41720,'blocks_8_icon_row_items_1_label','0% finance'),(274354,41720,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(274355,41720,'blocks_8_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(274356,41720,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(274357,41720,'blocks_8_icon_row_items_2_icon','deposit.svg'),(274358,41720,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(274359,41720,'blocks_8_icon_row_items_2_label','Deposit & balance'),(274360,41720,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(274361,41720,'blocks_8_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(274362,41720,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(274363,41720,'blocks_8_icon_row_items','3'),(274364,41720,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(274365,41720,'blocks_9_acfe_flexible_toggle',''),(274366,41720,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(274367,41720,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(274368,41720,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(274369,41720,'blocks_9_options_theme','#f5f5f5'),(274370,41720,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(274371,41720,'blocks_9_options_reverse','0'),(274372,41720,'_blocks_9_options_reverse','field_61768049bb8ac'),(274373,41720,'blocks_9_options',''),(274374,41720,'_blocks_9_options','field_617682517c334'),(274375,41720,'blocks_9_split_5050_image','40920'),(274376,41720,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(274377,41720,'blocks_9_split_5050_video',''),(274378,41720,'_blocks_9_split_5050_video','field_6239f3160848a'),(274379,41720,'blocks_9_split_5050_content_title',''),(274380,41720,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(274381,41720,'blocks_9_split_5050_content_heading','Why Study This Course?'),(274382,41720,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(274383,41720,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(274384,41720,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(274385,41720,'blocks_9_split_5050_content_actions',''),(274386,41720,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(274387,41720,'blocks_9_split_5050_content',''),(274388,41720,'_blocks_9_split_5050_content','field_61767afceb8ba'),(274389,41720,'blocks_10_acfe_flexible_toggle',''),(274390,41720,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(274391,41720,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(274392,41720,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(274393,41720,'blocks_10_testimonial_slider_content_title',''),(274394,41720,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(274395,41720,'blocks_10_testimonial_slider_content_heading','Testimonials'),(274396,41720,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(274397,41720,'blocks_10_testimonial_slider_content_text',''),(274398,41720,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(274399,41720,'blocks_10_testimonial_slider_content_actions',''),(274400,41720,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(274401,41720,'blocks_10_testimonial_slider_content',''),(274402,41720,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(274403,41720,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(274404,41720,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(274405,41720,'blocks_10_testimonial_slider_ambassador_bool','0'),(274406,41720,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(274407,41720,'blocks_11_acfe_flexible_toggle',''),(274408,41720,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(274409,41720,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(274410,41720,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(274411,41720,'blocks_11_options_theme','#ffffff'),(274412,41720,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(274413,41720,'blocks_11_options_state','0'),(274414,41720,'_blocks_11_options_state','field_6239fcb7508c5'),(274415,41720,'blocks_11_options',''),(274416,41720,'_blocks_11_options','field_6177e2991ac44'),(274417,41720,'blocks_11_content_title',''),(274418,41720,'_blocks_11_content_title','field_64d237e8bb1e2'),(274419,41720,'blocks_11_content_heading','Frequently asked questions '),(274420,41720,'_blocks_11_content_heading','field_64d237e8bb1e3'),(274421,41720,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(274422,41720,'_blocks_11_content_text','field_64d237e8bb1e4'),(274423,41720,'blocks_11_content_actions',''),(274424,41720,'_blocks_11_content_actions','field_64d237e8bb1e5'),(274425,41720,'blocks_11_content_align','left'),(274426,41720,'_blocks_11_content_align','field_64d2443e6b6aa'),(274427,41720,'blocks_11_content',''),(274428,41720,'_blocks_11_content','field_64d237e8bb1e1'),(274429,41720,'blocks_11_accordion_content','faqs'),(274430,41720,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(274431,41720,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(274432,41720,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(274433,41720,'blocks_11_actions',''),(274434,41720,'_blocks_11_actions','field_61a746a817f7a'),(274435,39245,'blocks_5_acfe_flexible_toggle',''),(274436,39245,'_blocks_5_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(274437,39245,'blocks_5_acfe_flexible_layout_title','Video'),(274438,39245,'_blocks_5_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(274439,39245,'blocks_5_size','large'),(274440,39245,'_blocks_5_size','field_6487038f297c1'),(274441,39245,'blocks_5_row_content_title',''),(274442,39245,'_blocks_5_row_content_title','field_64870132a865d'),(274443,39245,'blocks_5_row_content_heading','Watch here our exciting interview with Martin Haines '),(274444,39245,'_blocks_5_row_content_heading','field_64870142a865e'),(274445,39245,'blocks_5_row_content_text',''),(274446,39245,'_blocks_5_row_content_text','field_64870148a865f'),(274447,39245,'blocks_5_row_content',''),(274448,39245,'_blocks_5_row_content','field_6487008ba865c'),(274449,39245,'blocks_5_video_src','https://youtu.be/_WP-i7QnhDA'),(274450,39245,'_blocks_5_video_src','field_6193c4a98ec07'),(274451,39245,'blocks_5_video_thumbnail',''),(274452,39245,'_blocks_5_video_thumbnail','field_6193c4a08ec06'),(274453,39245,'blocks_6_acfe_flexible_toggle',''),(274454,39245,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(274455,39245,'blocks_6_acfe_flexible_layout_title','Tabs'),(274456,39245,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(274457,39245,'blocks_6_options_theme','#ffffff'),(274458,39245,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(274459,39245,'blocks_6_options',''),(274460,39245,'_blocks_6_options','field_6177cfcd8140f'),(274461,39245,'blocks_6_tabs_0_tab_label','What will I learn?'),(274462,39245,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(274463,39245,'blocks_6_tabs_0_tab_content_title',''),(274464,39245,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(274465,39245,'blocks_6_tabs_0_tab_content_heading','What you’ll learn'),(274466,39245,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(274467,39245,'blocks_6_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n 	<li>Screening System that Informs Orthotic Prescription</li>\r\n 	<li>Provide Exercise Prescription Skills</li>\r\n</ul>'),(274468,39245,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(274469,39245,'blocks_6_tabs_0_tab_content_actions',''),(274470,39245,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(274471,39245,'blocks_6_tabs_0_tab_content',''),(274472,39245,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(274473,39245,'blocks_6_tabs_0_tab_image','39076'),(274474,39245,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(274475,39245,'blocks_6_tabs_1_tab_label','What do I need?'),(274476,39245,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(274477,39245,'blocks_6_tabs_1_tab_content_title',''),(274478,39245,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(274479,39245,'blocks_6_tabs_1_tab_content_heading','Entry requirements'),(274480,39245,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(274481,39245,'blocks_6_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Podiatry Qualification</li>\r\n 	<li>Chiropodist Qualification</li>\r\n 	<li>Orthotist Qualification</li>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(274482,39245,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(274483,39245,'blocks_6_tabs_1_tab_content_actions',''),(274484,39245,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(274485,39245,'blocks_6_tabs_1_tab_content',''),(274486,39245,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(274487,39245,'blocks_6_tabs_1_tab_image','39223'),(274488,39245,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(274489,39245,'blocks_6_tabs_2_tab_label','Where can I learn?'),(274490,39245,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(274491,39245,'blocks_6_tabs_2_tab_content_title',''),(274492,39245,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(274493,39245,'blocks_6_tabs_2_tab_content_heading','Locations'),(274494,39245,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(274495,39245,'blocks_6_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(274496,39245,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(274497,39245,'blocks_6_tabs_2_tab_content_actions',''),(274498,39245,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(274499,39245,'blocks_6_tabs_2_tab_content',''),(274500,39245,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(274501,39245,'blocks_6_tabs_2_tab_image','39224'),(274502,39245,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(274503,39245,'blocks_6_tabs','3'),(274504,39245,'_blocks_6_tabs','field_6177cff281419'),(274505,39245,'blocks_7_acfe_flexible_toggle',''),(274506,39245,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(274507,39245,'blocks_7_acfe_flexible_layout_title','Text Block'),(274508,39245,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(274509,39245,'blocks_7_options_theme','#b61234'),(274510,39245,'_blocks_7_options_theme','field_6176830e2ad17'),(274511,39245,'blocks_7_options',''),(274512,39245,'_blocks_7_options','field_6176830e2ad16'),(274513,39245,'blocks_7_text_block_heading','Fees & Funding Options'),(274514,39245,'_blocks_7_text_block_heading','field_617669d413097'),(274515,39245,'blocks_7_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(274516,39245,'_blocks_7_text_block_content','field_617669ec13098'),(274517,39245,'blocks_8_acfe_flexible_toggle',''),(274518,39245,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(274519,39245,'blocks_8_acfe_flexible_layout_title','Icons'),(274520,39245,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(274521,39245,'blocks_8_options_theme','#b61234'),(274522,39245,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(274523,39245,'blocks_8_options_format','row'),(274524,39245,'_blocks_8_options_format','field_64bfde9a90690'),(274525,39245,'blocks_8_options',''),(274526,39245,'_blocks_8_options','field_64bfdd9b90684'),(274527,39245,'blocks_8_icon_row_items_0_icon','payment-plans.svg'),(274528,39245,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(274529,39245,'blocks_8_icon_row_items_0_label','Pay in Full'),(274530,39245,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(274531,39245,'blocks_8_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(274532,39245,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(274533,39245,'blocks_8_icon_row_items_1_icon','finance.svg'),(274534,39245,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(274535,39245,'blocks_8_icon_row_items_1_label','0% finance'),(274536,39245,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(274537,39245,'blocks_8_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(274538,39245,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(274539,39245,'blocks_8_icon_row_items_2_icon','deposit.svg'),(274540,39245,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(274541,39245,'blocks_8_icon_row_items_2_label','Deposit & balance'),(274542,39245,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(274543,39245,'blocks_8_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(274544,39245,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(274545,39245,'blocks_8_icon_row_items','3'),(274546,39245,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(274547,39245,'blocks_9_acfe_flexible_toggle',''),(274548,39245,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(274549,39245,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(274550,39245,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(274551,39245,'blocks_9_options_theme','#f5f5f5'),(274552,39245,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(274553,39245,'blocks_9_options_reverse','0'),(274554,39245,'_blocks_9_options_reverse','field_61768049bb8ac'),(274555,39245,'blocks_9_options',''),(274556,39245,'_blocks_9_options','field_617682517c334'),(274557,39245,'blocks_9_split_5050_image','40920'),(274558,39245,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(274559,39245,'blocks_9_split_5050_video',''),(274560,39245,'_blocks_9_split_5050_video','field_6239f3160848a'),(274561,39245,'blocks_9_split_5050_content_title',''),(274562,39245,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(274563,39245,'blocks_9_split_5050_content_heading','Why Study This Course?'),(274564,39245,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(274565,39245,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(274566,39245,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(274567,39245,'blocks_9_split_5050_content_actions',''),(274568,39245,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(274569,39245,'blocks_9_split_5050_content',''),(274570,39245,'_blocks_9_split_5050_content','field_61767afceb8ba'),(274571,39245,'blocks_10_acfe_flexible_toggle',''),(274572,39245,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(274573,39245,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(274574,39245,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(274575,39245,'blocks_10_testimonial_slider_content_title',''),(274576,39245,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(274577,39245,'blocks_10_testimonial_slider_content_heading','Testimonials'),(274578,39245,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(274579,39245,'blocks_10_testimonial_slider_content_text',''),(274580,39245,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(274581,39245,'blocks_10_testimonial_slider_content_actions',''),(274582,39245,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(274583,39245,'blocks_10_testimonial_slider_content',''),(274584,39245,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(274585,39245,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(274586,39245,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(274587,39245,'blocks_10_testimonial_slider_ambassador_bool','0'),(274588,39245,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(274589,39245,'blocks_11_acfe_flexible_toggle',''),(274590,39245,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(274591,39245,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(274592,39245,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(274593,39245,'blocks_11_options_theme','#ffffff'),(274594,39245,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(274595,39245,'blocks_11_options_state','0'),(274596,39245,'_blocks_11_options_state','field_6239fcb7508c5'),(274597,39245,'blocks_11_options',''),(274598,39245,'_blocks_11_options','field_6177e2991ac44'),(274599,39245,'blocks_11_content_title',''),(274600,39245,'_blocks_11_content_title','field_64d237e8bb1e2'),(274601,39245,'blocks_11_content_heading','Frequently asked questions '),(274602,39245,'_blocks_11_content_heading','field_64d237e8bb1e3'),(274603,39245,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(274604,39245,'_blocks_11_content_text','field_64d237e8bb1e4'),(274605,39245,'blocks_11_content_actions',''),(274606,39245,'_blocks_11_content_actions','field_64d237e8bb1e5'),(274607,39245,'blocks_11_content_align','left'),(274608,39245,'_blocks_11_content_align','field_64d2443e6b6aa'),(274609,39245,'blocks_11_content',''),(274610,39245,'_blocks_11_content','field_64d237e8bb1e1'),(274611,39245,'blocks_11_accordion_content','faqs'),(274612,39245,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(274613,39245,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(274614,39245,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(274615,39245,'blocks_11_actions',''),(274616,39245,'_blocks_11_actions','field_61a746a817f7a'),(274617,41721,'hide_hero','0'),(274618,41721,'_hide_hero','field_66a2380fcda39'),(274619,41721,'hero_title','Biomechanics and Podiatrists'),(274620,41721,'_hero_title','field_617571fe285e8'),(274621,41721,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(274622,41721,'_hero_text','field_6175723c285e9'),(274623,41721,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(274624,41721,'_hero_actions_0_button','field_61757281285eb'),(274625,41721,'hero_actions','1'),(274626,41721,'_hero_actions','field_61757270285ea'),(274627,41721,'hero_style','default'),(274628,41721,'_hero_style','field_62051d9dc5324'),(274629,41721,'_thumbnail_id','39247'),(274630,41721,'__thumbnail_id','field_617570855ddaf'),(274631,41721,'hero_image_pos_x','right'),(274632,41721,'_hero_image_pos_x','field_62ec3d05390bb'),(274633,41721,'hero_image_pos_y','top'),(274634,41721,'_hero_image_pos_y','field_62ec3d05390bc'),(274635,41721,'hero_image_pos',''),(274636,41721,'_hero_image_pos','field_62ec3d05390ba'),(274637,41721,'fft_hide_from_listings','0'),(274638,41721,'_fft_hide_from_listings','field_61f1320446ab2'),(274639,41721,'fft_page_format','default'),(274640,41721,'_fft_page_format','field_61ae213f1f218'),(274641,41721,'fft_hide_nav','0'),(274642,41721,'_fft_hide_nav','field_635bd5e43527c'),(274643,41721,'fft_hide_header_call_to_action','0'),(274644,41721,'_fft_hide_header_call_to_action','field_635bd6723527d'),(274645,41721,'fft_page_sitemap','0'),(274646,41721,'_fft_page_sitemap','field_61af9b34e8181'),(274647,41721,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:5:\"video\";i:6;s:4:\"tabs\";i:7;s:10:\"text_block\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(274648,41721,'_blocks','field_6176696113096'),(274649,41721,'blocks_2_acfe_flexible_toggle',''),(274650,41721,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(274651,41721,'blocks_2_acfe_flexible_layout_title','Form'),(274652,41721,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(274653,41721,'blocks_2_row_content_format','standard'),(274654,41721,'_blocks_2_row_content_format','field_6481ead962881'),(274655,41721,'blocks_2_row_content_title',''),(274656,41721,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(274657,41721,'blocks_2_row_content_heading','Enquire Today'),(274658,41721,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(274659,41721,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(274660,41721,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(274661,41721,'blocks_2_row_content_actions',''),(274662,41721,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(274663,41721,'blocks_2_row_content',''),(274664,41721,'_blocks_2_row_content','field_61a0f5f5b3db0'),(274665,41721,'blocks_2_row_form','40394'),(274666,41721,'_blocks_2_row_form','field_61a4ff2c0b08e'),(274667,41721,'blocks_2_row_form_button_label',''),(274668,41721,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(274669,41721,'blocks_0_acfe_flexible_toggle',''),(274670,41721,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(274671,41721,'blocks_0_acfe_flexible_layout_title','Template'),(274672,41721,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(274673,41721,'blocks_0_template','39087'),(274674,41721,'_blocks_0_template','field_617bdd570fe01'),(274675,41721,'blocks_1_acfe_flexible_toggle',''),(274676,41721,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(274677,41721,'blocks_1_acfe_flexible_layout_title','Steps'),(274678,41721,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(274679,41721,'blocks_1_row_content_title',''),(274680,41721,'_blocks_1_row_content_title','field_64888cd1e26e0'),(274681,41721,'blocks_1_row_content_heading','Benefits of training with us'),(274682,41721,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(274683,41721,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(274684,41721,'_blocks_1_row_content_text','field_64888ce2e26e2'),(274685,41721,'blocks_1_row_content_actions',''),(274686,41721,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(274687,41721,'blocks_1_row_content',''),(274688,41721,'_blocks_1_row_content','field_64888cb0e26df'),(274689,41721,'blocks_1_steps_0_icon','progression.svg'),(274690,41721,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(274691,41721,'blocks_1_steps_0_title','Earning Potential'),(274692,41721,'_blocks_1_steps_0_title','field_64888d94e26e7'),(274693,41721,'blocks_1_steps_0_text','Attract new clients, retain current ones, and increase your rates with the Diploma in Biomechanics Coaching. This programme gives you a system to reach new clients and work more effectively with existing ones. Full body screenings may also require extra sessions, providing clients with thorough support and helping you build stronger, long-term relationships.'),(274694,41721,'_blocks_1_steps_0_text','field_64888d99e26e8'),(274695,41721,'blocks_1_steps_1_icon','support.svg'),(274696,41721,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(274697,41721,'blocks_1_steps_1_title','Lifetime Learning Promise'),(274698,41721,'_blocks_1_steps_1_title','field_64888d94e26e7'),(274699,41721,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(274700,41721,'_blocks_1_steps_1_text','field_64888d99e26e8'),(274701,41721,'blocks_1_steps_2_icon','qualification.svg'),(274702,41721,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(274703,41721,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(274704,41721,'_blocks_1_steps_2_title','field_64888d94e26e7'),(274705,41721,'blocks_1_steps_2_text','Developed through over 20 years of research with 4,000 participants - from those recovering from injury to active individuals - is a comprehensive, evidence-backed programme for mastering movement assessments. Through a blend of online learning and hands-on workshops, you’ll learn specific tests and screens to understand the roles of the pelvis, spine, and upper body in lower limb function, particularly foot mechanics. This approach equips you with the insights needed for effective orthotic prescription and tailored movement strategies, helping you optimise outcomes for every client.'),(274706,41721,'_blocks_1_steps_2_text','field_64888d99e26e8'),(274707,41721,'blocks_1_steps_3_icon','leaders.svg'),(274708,41721,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(274709,41721,'blocks_1_steps_3_title','Stand Out From the Crowd'),(274710,41721,'_blocks_1_steps_3_title','field_64888d94e26e7'),(274711,41721,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(274712,41721,'_blocks_1_steps_3_text','field_64888d99e26e8'),(274713,41721,'blocks_1_steps','4'),(274714,41721,'_blocks_1_steps','field_64888d44e26e5'),(274715,41721,'blocks_3_acfe_flexible_toggle',''),(274716,41721,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(274717,41721,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(274718,41721,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(274719,41721,'blocks_3_options_theme','#ffffff'),(274720,41721,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(274721,41721,'blocks_3_options_reverse','0'),(274722,41721,'_blocks_3_options_reverse','field_61768049bb8ac'),(274723,41721,'blocks_3_options',''),(274724,41721,'_blocks_3_options','field_617682517c334'),(274725,41721,'blocks_3_split_5050_image','39617'),(274726,41721,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(274727,41721,'blocks_3_split_5050_video',''),(274728,41721,'_blocks_3_split_5050_video','field_6239f3160848a'),(274729,41721,'blocks_3_split_5050_content_title',''),(274730,41721,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(274731,41721,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(274732,41721,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(274733,41721,'blocks_3_split_5050_content_text','This integrated system offers a full-body approach, covering the pelvis, spine, shoulders, knees, and feet in a comprehensive biomechanical assessment programme. By understanding how the upper body affects lower limb mechanics, podiatrists can address foot issues with a more holistic perspective. This unique assessment method enables you to uncover connections and solutions that traditional approaches may overlook, helping to improve client retention and build trust over time.\r\n\r\nOur model promotes a prevention-focused, system-led approach rather than just responding to symptoms. This proactive method allows you to expand your client base while reducing risks through exercise prescription, supporting clients before, during, and after injuries. It also empowers you with exercise prescription skills that complement your existing expertise, allowing for informed orthotic prescriptions and an integrated care approach to foot health.'),(274734,41721,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(274735,41721,'blocks_3_split_5050_content_actions',''),(274736,41721,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(274737,41721,'blocks_3_split_5050_content',''),(274738,41721,'_blocks_3_split_5050_content','field_61767afceb8ba'),(274739,41721,'blocks_4_acfe_flexible_toggle',''),(274740,41721,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(274741,41721,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(274742,41721,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(274743,41721,'blocks_4_options_theme','#ffffff'),(274744,41721,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(274745,41721,'blocks_4_options_reverse','1'),(274746,41721,'_blocks_4_options_reverse','field_61768049bb8ac'),(274747,41721,'blocks_4_options',''),(274748,41721,'_blocks_4_options','field_617682517c334'),(274749,41721,'blocks_4_split_5050_image','41371'),(274750,41721,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(274751,41721,'blocks_4_split_5050_video',''),(274752,41721,'_blocks_4_split_5050_video','field_6239f3160848a'),(274753,41721,'blocks_4_split_5050_content_title',''),(274754,41721,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(274755,41721,'blocks_4_split_5050_content_heading','Backed by experts in the field'),(274756,41721,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(274757,41721,'blocks_4_split_5050_content_text','Martin Haines RGRT MCSP SRP IBAM, has been the Lead Physiotherapist at Crystal Palace FC and Arsenal FC, as well treating professional rugby players from the England rugby team and Premiership as well as professional footballers from Premiership Teams. He has been the Clinical Director at 4 clinics in the UK and lead consultant for clinics in Sweden and USA. He has been on the PGA Performance Institute and has worked with 5 Olympic Champions. He has also been involved with McLaren F1, working with their drivers to help prevent and manage injury as well as helping design their cars.\r\n\r\nMartin has worked with the Biomechanics Education Team to develop the content for their courses and workshops and consults to help future courses. He has a particular interest in developing biomechanics courses for medical professionals including the Podiatry workshop/course\r\n\r\nPersonally, Martin is an accomplished author and his work has been presented at scientific congresses across the world, including the IOC World Congress on Illness and Injury in Sport. He is a former Honorary Senior Lecturer at Salford University and former chair of the UK Biomechanics Coaching Association.'),(274758,41721,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(274759,41721,'blocks_4_split_5050_content_actions',''),(274760,41721,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(274761,41721,'blocks_4_split_5050_content',''),(274762,41721,'_blocks_4_split_5050_content','field_61767afceb8ba'),(274763,41721,'blocks_5_acfe_flexible_toggle',''),(274764,41721,'_blocks_5_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(274765,41721,'blocks_5_acfe_flexible_layout_title','Video'),(274766,41721,'_blocks_5_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(274767,41721,'blocks_5_size','large'),(274768,41721,'_blocks_5_size','field_6487038f297c1'),(274769,41721,'blocks_5_row_content_title',''),(274770,41721,'_blocks_5_row_content_title','field_64870132a865d'),(274771,41721,'blocks_5_row_content_heading','Watch here our exciting interview with Martin Haines '),(274772,41721,'_blocks_5_row_content_heading','field_64870142a865e'),(274773,41721,'blocks_5_row_content_text',''),(274774,41721,'_blocks_5_row_content_text','field_64870148a865f'),(274775,41721,'blocks_5_row_content',''),(274776,41721,'_blocks_5_row_content','field_6487008ba865c'),(274777,41721,'blocks_5_video_src','https://youtu.be/_WP-i7QnhDA'),(274778,41721,'_blocks_5_video_src','field_6193c4a98ec07'),(274779,41721,'blocks_5_video_thumbnail',''),(274780,41721,'_blocks_5_video_thumbnail','field_6193c4a08ec06'),(274781,41721,'blocks_6_acfe_flexible_toggle',''),(274782,41721,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(274783,41721,'blocks_6_acfe_flexible_layout_title','Tabs'),(274784,41721,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(274785,41721,'blocks_6_options_theme','#ffffff'),(274786,41721,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(274787,41721,'blocks_6_options',''),(274788,41721,'_blocks_6_options','field_6177cfcd8140f'),(274789,41721,'blocks_6_tabs_0_tab_label','What will I learn?'),(274790,41721,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(274791,41721,'blocks_6_tabs_0_tab_content_title',''),(274792,41721,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(274793,41721,'blocks_6_tabs_0_tab_content_heading','What you’ll learn'),(274794,41721,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(274795,41721,'blocks_6_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n 	<li>Screening System that Informs Orthotic Prescription</li>\r\n 	<li>Provide Exercise Prescription Skills</li>\r\n</ul>'),(274796,41721,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(274797,41721,'blocks_6_tabs_0_tab_content_actions',''),(274798,41721,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(274799,41721,'blocks_6_tabs_0_tab_content',''),(274800,41721,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(274801,41721,'blocks_6_tabs_0_tab_image','39076'),(274802,41721,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(274803,41721,'blocks_6_tabs_1_tab_label','What do I need?'),(274804,41721,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(274805,41721,'blocks_6_tabs_1_tab_content_title',''),(274806,41721,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(274807,41721,'blocks_6_tabs_1_tab_content_heading','Entry requirements'),(274808,41721,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(274809,41721,'blocks_6_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Podiatry Qualification</li>\r\n 	<li>Chiropodist Qualification</li>\r\n 	<li>Orthotist Qualification</li>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(274810,41721,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(274811,41721,'blocks_6_tabs_1_tab_content_actions',''),(274812,41721,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(274813,41721,'blocks_6_tabs_1_tab_content',''),(274814,41721,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(274815,41721,'blocks_6_tabs_1_tab_image','39223'),(274816,41721,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(274817,41721,'blocks_6_tabs_2_tab_label','Where can I learn?'),(274818,41721,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(274819,41721,'blocks_6_tabs_2_tab_content_title',''),(274820,41721,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(274821,41721,'blocks_6_tabs_2_tab_content_heading','Locations'),(274822,41721,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(274823,41721,'blocks_6_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(274824,41721,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(274825,41721,'blocks_6_tabs_2_tab_content_actions',''),(274826,41721,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(274827,41721,'blocks_6_tabs_2_tab_content',''),(274828,41721,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(274829,41721,'blocks_6_tabs_2_tab_image','39224'),(274830,41721,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(274831,41721,'blocks_6_tabs','3'),(274832,41721,'_blocks_6_tabs','field_6177cff281419'),(274833,41721,'blocks_7_acfe_flexible_toggle',''),(274834,41721,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(274835,41721,'blocks_7_acfe_flexible_layout_title','Text Block'),(274836,41721,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(274837,41721,'blocks_7_options_theme','#b61234'),(274838,41721,'_blocks_7_options_theme','field_6176830e2ad17'),(274839,41721,'blocks_7_options',''),(274840,41721,'_blocks_7_options','field_6176830e2ad16'),(274841,41721,'blocks_7_text_block_heading','Fees & Funding Options'),(274842,41721,'_blocks_7_text_block_heading','field_617669d413097'),(274843,41721,'blocks_7_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(274844,41721,'_blocks_7_text_block_content','field_617669ec13098'),(274845,41721,'blocks_8_acfe_flexible_toggle',''),(274846,41721,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(274847,41721,'blocks_8_acfe_flexible_layout_title','Icons'),(274848,41721,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(274849,41721,'blocks_8_options_theme','#b61234'),(274850,41721,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(274851,41721,'blocks_8_options_format','row'),(274852,41721,'_blocks_8_options_format','field_64bfde9a90690'),(274853,41721,'blocks_8_options',''),(274854,41721,'_blocks_8_options','field_64bfdd9b90684'),(274855,41721,'blocks_8_icon_row_items_0_icon','payment-plans.svg'),(274856,41721,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(274857,41721,'blocks_8_icon_row_items_0_label','Pay in Full'),(274858,41721,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(274859,41721,'blocks_8_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(274860,41721,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(274861,41721,'blocks_8_icon_row_items_1_icon','finance.svg'),(274862,41721,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(274863,41721,'blocks_8_icon_row_items_1_label','0% finance'),(274864,41721,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(274865,41721,'blocks_8_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(274866,41721,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(274867,41721,'blocks_8_icon_row_items_2_icon','deposit.svg'),(274868,41721,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(274869,41721,'blocks_8_icon_row_items_2_label','Deposit & balance'),(274870,41721,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(274871,41721,'blocks_8_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(274872,41721,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(274873,41721,'blocks_8_icon_row_items','3'),(274874,41721,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(274875,41721,'blocks_9_acfe_flexible_toggle',''),(274876,41721,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(274877,41721,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(274878,41721,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(274879,41721,'blocks_9_options_theme','#f5f5f5'),(274880,41721,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(274881,41721,'blocks_9_options_reverse','0'),(274882,41721,'_blocks_9_options_reverse','field_61768049bb8ac'),(274883,41721,'blocks_9_options',''),(274884,41721,'_blocks_9_options','field_617682517c334'),(274885,41721,'blocks_9_split_5050_image','40920'),(274886,41721,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(274887,41721,'blocks_9_split_5050_video',''),(274888,41721,'_blocks_9_split_5050_video','field_6239f3160848a'),(274889,41721,'blocks_9_split_5050_content_title',''),(274890,41721,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(274891,41721,'blocks_9_split_5050_content_heading','Why Study This Course?'),(274892,41721,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(274893,41721,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(274894,41721,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(274895,41721,'blocks_9_split_5050_content_actions',''),(274896,41721,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(274897,41721,'blocks_9_split_5050_content',''),(274898,41721,'_blocks_9_split_5050_content','field_61767afceb8ba'),(274899,41721,'blocks_10_acfe_flexible_toggle',''),(274900,41721,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(274901,41721,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(274902,41721,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(274903,41721,'blocks_10_testimonial_slider_content_title',''),(274904,41721,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(274905,41721,'blocks_10_testimonial_slider_content_heading','Testimonials'),(274906,41721,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(274907,41721,'blocks_10_testimonial_slider_content_text',''),(274908,41721,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(274909,41721,'blocks_10_testimonial_slider_content_actions',''),(274910,41721,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(274911,41721,'blocks_10_testimonial_slider_content',''),(274912,41721,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(274913,41721,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(274914,41721,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(274915,41721,'blocks_10_testimonial_slider_ambassador_bool','0'),(274916,41721,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(274917,41721,'blocks_11_acfe_flexible_toggle',''),(274918,41721,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(274919,41721,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(274920,41721,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(274921,41721,'blocks_11_options_theme','#ffffff'),(274922,41721,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(274923,41721,'blocks_11_options_state','0'),(274924,41721,'_blocks_11_options_state','field_6239fcb7508c5'),(274925,41721,'blocks_11_options',''),(274926,41721,'_blocks_11_options','field_6177e2991ac44'),(274927,41721,'blocks_11_content_title',''),(274928,41721,'_blocks_11_content_title','field_64d237e8bb1e2'),(274929,41721,'blocks_11_content_heading','Frequently asked questions '),(274930,41721,'_blocks_11_content_heading','field_64d237e8bb1e3'),(274931,41721,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(274932,41721,'_blocks_11_content_text','field_64d237e8bb1e4'),(274933,41721,'blocks_11_content_actions',''),(274934,41721,'_blocks_11_content_actions','field_64d237e8bb1e5'),(274935,41721,'blocks_11_content_align','left'),(274936,41721,'_blocks_11_content_align','field_64d2443e6b6aa'),(274937,41721,'blocks_11_content',''),(274938,41721,'_blocks_11_content','field_64d237e8bb1e1'),(274939,41721,'blocks_11_accordion_content','faqs'),(274940,41721,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(274941,41721,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(274942,41721,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(274943,41721,'blocks_11_actions',''),(274944,41721,'_blocks_11_actions','field_61a746a817f7a'),(274945,41748,'_wp_attached_file','2024/12/favicon-be.png'),(274946,41748,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:169;s:6:\"height\";i:169;s:4:\"file\";s:22:\"2024/12/favicon-be.png\";s:8:\"filesize\";i:8798;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(275130,41757,'hide_hero','0'),(275131,41757,'_hide_hero','field_66a2380fcda39'),(275132,41757,'hero_title','IMoveFreely Instructor Programme Workshop'),(275133,41757,'_hero_title','field_617571fe285e8'),(275134,41757,'hero_text',''),(275135,41757,'_hero_text','field_6175723c285e9'),(275136,41757,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:12:\"#row-40779-2\";s:6:\"target\";s:0:\"\";}'),(275137,41757,'_hero_actions_0_button','field_61757281285eb'),(275138,41757,'hero_actions','1'),(275139,41757,'_hero_actions','field_61757270285ea'),(275140,41757,'hero_style','default'),(275141,41757,'_hero_style','field_62051d9dc5324'),(275142,41757,'_thumbnail_id','40893'),(275143,41757,'__thumbnail_id','field_617570855ddaf'),(275144,41757,'hero_image_pos_x','right'),(275145,41757,'_hero_image_pos_x','field_62ec3d05390bb'),(275146,41757,'hero_image_pos_y','top'),(275147,41757,'_hero_image_pos_y','field_62ec3d05390bc'),(275148,41757,'hero_image_pos',''),(275149,41757,'_hero_image_pos','field_62ec3d05390ba'),(275150,41757,'fft_hide_from_listings','0'),(275151,41757,'_fft_hide_from_listings','field_61f1320446ab2'),(275152,41757,'fft_page_format','default'),(275153,41757,'_fft_page_format','field_61ae213f1f218'),(275154,41757,'fft_hide_nav','0'),(275155,41757,'_fft_hide_nav','field_635bd5e43527c'),(275156,41757,'fft_hide_header_call_to_action','0'),(275157,41757,'_fft_hide_header_call_to_action','field_635bd6723527d'),(275158,41757,'fft_page_sitemap','0'),(275159,41757,'_fft_page_sitemap','field_61af9b34e8181'),(275160,41757,'blocks_0_acfe_flexible_toggle',''),(275161,41757,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(275162,41757,'blocks_0_acfe_flexible_layout_title','Template'),(275163,41757,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(275164,41757,'blocks_0_template','39087'),(275165,41757,'_blocks_0_template','field_617bdd570fe01'),(275166,41757,'blocks_1_acfe_flexible_toggle',''),(275167,41757,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(275168,41757,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(275169,41757,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(275170,41757,'blocks_1_options_theme','#f5f5f5'),(275171,41757,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(275172,41757,'blocks_1_options_reverse','0'),(275173,41757,'_blocks_1_options_reverse','field_61768049bb8ac'),(275174,41757,'blocks_1_options',''),(275175,41757,'_blocks_1_options','field_617682517c334'),(275176,41757,'blocks_1_split_5050_image','40615'),(275177,41757,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(275178,41757,'blocks_1_split_5050_video',''),(275179,41757,'_blocks_1_split_5050_video','field_6239f3160848a'),(275180,41757,'blocks_1_split_5050_content_title',''),(275181,41757,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(275182,41757,'blocks_1_split_5050_content_heading','Overview'),(275183,41757,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(275184,41757,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(275185,41757,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(275186,41757,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275187,41757,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(275188,41757,'blocks_1_split_5050_content_actions','1'),(275189,41757,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(275190,41757,'blocks_1_split_5050_content',''),(275191,41757,'_blocks_1_split_5050_content','field_61767afceb8ba'),(275192,41757,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:13:\"step_timeline\";i:4;s:11:\"promo_panel\";i:5;s:10:\"accordions\";}'),(275193,41757,'_blocks','field_6176696113096'),(275194,41757,'course_label_text','IMoveFreely Instructor programme workshop'),(275195,41757,'_course_label_text','field_61e17babf71fa'),(275196,41757,'course_label',''),(275197,41757,'_course_label','field_61e12f92749a7'),(275198,41757,'course_description','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants.'),(275199,41757,'_course_description','field_617ac5788e5e1'),(275200,41757,'course_key_info','2'),(275201,41757,'_course_key_info','field_617ac6ad8e5e2'),(275202,41757,'course_included','Profound effects on movement issues \r\n\r\nIdeal for injury prevention, rehabilitation, and activity preparation \r\n\r\nEvidence-based techniques for improved performance \r\n\r\nFlexible integration into existing classes '),(275203,41757,'_course_included','field_617ac6f08e5e4'),(275204,41757,'blocks_2_acfe_flexible_toggle',''),(275205,41757,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(275206,41757,'blocks_2_acfe_flexible_layout_title','Video'),(275207,41757,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(275208,41757,'blocks_2_size','large'),(275209,41757,'_blocks_2_size','field_6487038f297c1'),(275210,41757,'blocks_2_row_content_title',''),(275211,41757,'_blocks_2_row_content_title','field_64870132a865d'),(275212,41757,'blocks_2_row_content_heading','Intro to IMoveFreely Instructor workshop'),(275213,41757,'_blocks_2_row_content_heading','field_64870142a865e'),(275214,41757,'blocks_2_row_content_text',''),(275215,41757,'_blocks_2_row_content_text','field_64870148a865f'),(275216,41757,'blocks_2_row_content',''),(275217,41757,'_blocks_2_row_content','field_6487008ba865c'),(275218,41757,'blocks_2_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(275219,41757,'_blocks_2_video_src','field_6193c4a98ec07'),(275220,41757,'blocks_2_video_thumbnail',''),(275221,41757,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(275222,41757,'blocks_3_acfe_flexible_toggle',''),(275223,41757,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(275224,41757,'blocks_3_acfe_flexible_layout_title','Timeline'),(275225,41757,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(275226,41757,'blocks_3_options_theme','#ffffff'),(275227,41757,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(275228,41757,'blocks_3_options',''),(275229,41757,'_blocks_3_options','field_6177de53d1195'),(275230,41757,'blocks_3_timeline_content_title',''),(275231,41757,'_blocks_3_timeline_content_title','field_6177de53d1198'),(275232,41757,'blocks_3_timeline_content_heading','Who is the course suitable for? '),(275233,41757,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(275234,41757,'blocks_3_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(275235,41757,'_blocks_3_timeline_content_text','field_6177de53d119a'),(275236,41757,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275237,41757,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(275238,41757,'blocks_3_timeline_content_actions','1'),(275239,41757,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(275240,41757,'blocks_3_timeline_content',''),(275241,41757,'_blocks_3_timeline_content','field_6177de53d1197'),(275242,41757,'blocks_3_timeline_items_0_title','Benefits'),(275243,41757,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(275244,41757,'blocks_3_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(275245,41757,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(275246,41757,'blocks_3_timeline_items_1_title','Curriculum Highlights'),(275247,41757,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(275248,41757,'blocks_3_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(275249,41757,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(275250,41757,'blocks_3_timeline_items_2_title','What pre-qualifications are required?'),(275251,41757,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(275252,41757,'blocks_3_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(275253,41757,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(275254,41757,'blocks_3_timeline_items','3'),(275255,41757,'_blocks_3_timeline_items','field_6177de53d119d'),(275256,41757,'blocks_4_acfe_flexible_toggle',''),(275257,41757,'_blocks_4_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(275258,41757,'blocks_4_acfe_flexible_layout_title','Promo Panel'),(275259,41757,'_blocks_4_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(275260,41757,'blocks_4_options_alignment','center'),(275261,41757,'_blocks_4_options_alignment','field_61769449f5490'),(275262,41757,'blocks_4_options',''),(275263,41757,'_blocks_4_options','field_617693e1428f0'),(275264,41757,'blocks_4_promo_panel_image','41312'),(275265,41757,'_blocks_4_promo_panel_image','field_617693e1428f3'),(275266,41757,'blocks_4_promo_panel_content_heading','Testimonial'),(275267,41757,'_blocks_4_promo_panel_content_heading','field_617693e1428f6'),(275268,41757,'blocks_4_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!”\r\nJayne Nicholls Director Group X Training Ltd.'),(275269,41757,'_blocks_4_promo_panel_content_text','field_617693e1428f7'),(275270,41757,'blocks_4_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275271,41757,'_blocks_4_promo_panel_content_actions_0_button','field_617693e1428f9'),(275272,41757,'blocks_4_promo_panel_content_actions','1'),(275273,41757,'_blocks_4_promo_panel_content_actions','field_617693e1428f8'),(275274,41757,'blocks_4_promo_panel_content',''),(275275,41757,'_blocks_4_promo_panel_content','field_617693e1428f4'),(275276,41757,'blocks_5_acfe_flexible_toggle',''),(275277,41757,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(275278,41757,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(275279,41757,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(275280,41757,'blocks_5_options_theme','#b61234'),(275281,41757,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(275282,41757,'blocks_5_options_state','0'),(275283,41757,'_blocks_5_options_state','field_6239fcb7508c5'),(275284,41757,'blocks_5_options',''),(275285,41757,'_blocks_5_options','field_6177e2991ac44'),(275286,41757,'blocks_5_content_title',''),(275287,41757,'_blocks_5_content_title','field_64d237e8bb1e2'),(275288,41757,'blocks_5_content_heading','FAQ\'s'),(275289,41757,'_blocks_5_content_heading','field_64d237e8bb1e3'),(275290,41757,'blocks_5_content_text',''),(275291,41757,'_blocks_5_content_text','field_64d237e8bb1e4'),(275292,41757,'blocks_5_content_actions',''),(275293,41757,'_blocks_5_content_actions','field_64d237e8bb1e5'),(275294,41757,'blocks_5_content_align','left'),(275295,41757,'_blocks_5_content_align','field_64d2443e6b6aa'),(275296,41757,'blocks_5_content',''),(275297,41757,'_blocks_5_content','field_64d237e8bb1e1'),(275298,41757,'blocks_5_accordion_content','faqs'),(275299,41757,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(275300,41757,'blocks_5_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(275301,41757,'_blocks_5_accordion_faqs_select','field_6177e5f3633dd'),(275302,41757,'blocks_5_actions',''),(275303,41757,'_blocks_5_actions','field_61a746a817f7a'),(275304,41757,'course_label_label_theme','#0d1f73'),(275305,41757,'_course_label_label_theme','field_61e17bb8f71fb'),(275306,41757,'course_key_info_0_text','In-person Workshop'),(275307,41757,'_course_key_info_0_text','field_617ac6c38e5e3'),(275308,41757,'course_key_info_1_text','CPD Course'),(275309,41757,'_course_key_info_1_text','field_617ac6c38e5e3'),(275310,41758,'hide_hero','0'),(275311,41758,'_hide_hero','field_66a2380fcda39'),(275312,41758,'hero_title','IMoveFreely Instructor Programme Workshop'),(275313,41758,'_hero_title','field_617571fe285e8'),(275314,41758,'hero_text',''),(275315,41758,'_hero_text','field_6175723c285e9'),(275316,41758,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:12:\"#row-40779-2\";s:6:\"target\";s:0:\"\";}'),(275317,41758,'_hero_actions_0_button','field_61757281285eb'),(275318,41758,'hero_actions','1'),(275319,41758,'_hero_actions','field_61757270285ea'),(275320,41758,'hero_style','default'),(275321,41758,'_hero_style','field_62051d9dc5324'),(275322,41758,'_thumbnail_id','11708'),(275323,41758,'__thumbnail_id','field_617570855ddaf'),(275324,41758,'hero_image_pos_x','right'),(275325,41758,'_hero_image_pos_x','field_62ec3d05390bb'),(275326,41758,'hero_image_pos_y','top'),(275327,41758,'_hero_image_pos_y','field_62ec3d05390bc'),(275328,41758,'hero_image_pos',''),(275329,41758,'_hero_image_pos','field_62ec3d05390ba'),(275330,41758,'fft_hide_from_listings','0'),(275331,41758,'_fft_hide_from_listings','field_61f1320446ab2'),(275332,41758,'fft_page_format','default'),(275333,41758,'_fft_page_format','field_61ae213f1f218'),(275334,41758,'fft_hide_nav','0'),(275335,41758,'_fft_hide_nav','field_635bd5e43527c'),(275336,41758,'fft_hide_header_call_to_action','0'),(275337,41758,'_fft_hide_header_call_to_action','field_635bd6723527d'),(275338,41758,'fft_page_sitemap','0'),(275339,41758,'_fft_page_sitemap','field_61af9b34e8181'),(275340,41758,'blocks_0_acfe_flexible_toggle',''),(275341,41758,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(275342,41758,'blocks_0_acfe_flexible_layout_title','Template'),(275343,41758,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(275344,41758,'blocks_0_template','39087'),(275345,41758,'_blocks_0_template','field_617bdd570fe01'),(275346,41758,'blocks_1_acfe_flexible_toggle',''),(275347,41758,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(275348,41758,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(275349,41758,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(275350,41758,'blocks_1_options_theme','#f5f5f5'),(275351,41758,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(275352,41758,'blocks_1_options_reverse','0'),(275353,41758,'_blocks_1_options_reverse','field_61768049bb8ac'),(275354,41758,'blocks_1_options',''),(275355,41758,'_blocks_1_options','field_617682517c334'),(275356,41758,'blocks_1_split_5050_image','40615'),(275357,41758,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(275358,41758,'blocks_1_split_5050_video',''),(275359,41758,'_blocks_1_split_5050_video','field_6239f3160848a'),(275360,41758,'blocks_1_split_5050_content_title',''),(275361,41758,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(275362,41758,'blocks_1_split_5050_content_heading','Overview'),(275363,41758,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(275364,41758,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(275365,41758,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(275366,41758,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275367,41758,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(275368,41758,'blocks_1_split_5050_content_actions','1'),(275369,41758,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(275370,41758,'blocks_1_split_5050_content',''),(275371,41758,'_blocks_1_split_5050_content','field_61767afceb8ba'),(275372,41758,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:13:\"step_timeline\";i:4;s:11:\"promo_panel\";i:5;s:10:\"accordions\";}'),(275373,41758,'_blocks','field_6176696113096'),(275374,41758,'course_label_text','IMoveFreely Instructor programme workshop'),(275375,41758,'_course_label_text','field_61e17babf71fa'),(275376,41758,'course_label',''),(275377,41758,'_course_label','field_61e12f92749a7'),(275378,41758,'course_description','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants.'),(275379,41758,'_course_description','field_617ac5788e5e1'),(275380,41758,'course_key_info','2'),(275381,41758,'_course_key_info','field_617ac6ad8e5e2'),(275382,41758,'course_included','Profound effects on movement issues \r\n\r\nIdeal for injury prevention, rehabilitation, and activity preparation \r\n\r\nEvidence-based techniques for improved performance \r\n\r\nFlexible integration into existing classes '),(275383,41758,'_course_included','field_617ac6f08e5e4'),(275384,41758,'blocks_2_acfe_flexible_toggle',''),(275385,41758,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(275386,41758,'blocks_2_acfe_flexible_layout_title','Video'),(275387,41758,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(275388,41758,'blocks_2_size','large'),(275389,41758,'_blocks_2_size','field_6487038f297c1'),(275390,41758,'blocks_2_row_content_title',''),(275391,41758,'_blocks_2_row_content_title','field_64870132a865d'),(275392,41758,'blocks_2_row_content_heading','Intro to IMoveFreely Instructor workshop'),(275393,41758,'_blocks_2_row_content_heading','field_64870142a865e'),(275394,41758,'blocks_2_row_content_text',''),(275395,41758,'_blocks_2_row_content_text','field_64870148a865f'),(275396,41758,'blocks_2_row_content',''),(275397,41758,'_blocks_2_row_content','field_6487008ba865c'),(275398,41758,'blocks_2_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(275399,41758,'_blocks_2_video_src','field_6193c4a98ec07'),(275400,41758,'blocks_2_video_thumbnail',''),(275401,41758,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(275402,41758,'blocks_3_acfe_flexible_toggle',''),(275403,41758,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(275404,41758,'blocks_3_acfe_flexible_layout_title','Timeline'),(275405,41758,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(275406,41758,'blocks_3_options_theme','#ffffff'),(275407,41758,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(275408,41758,'blocks_3_options',''),(275409,41758,'_blocks_3_options','field_6177de53d1195'),(275410,41758,'blocks_3_timeline_content_title',''),(275411,41758,'_blocks_3_timeline_content_title','field_6177de53d1198'),(275412,41758,'blocks_3_timeline_content_heading','Who is the course suitable for? '),(275413,41758,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(275414,41758,'blocks_3_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(275415,41758,'_blocks_3_timeline_content_text','field_6177de53d119a'),(275416,41758,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275417,41758,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(275418,41758,'blocks_3_timeline_content_actions','1'),(275419,41758,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(275420,41758,'blocks_3_timeline_content',''),(275421,41758,'_blocks_3_timeline_content','field_6177de53d1197'),(275422,41758,'blocks_3_timeline_items_0_title','Benefits'),(275423,41758,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(275424,41758,'blocks_3_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(275425,41758,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(275426,41758,'blocks_3_timeline_items_1_title','Curriculum Highlights'),(275427,41758,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(275428,41758,'blocks_3_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(275429,41758,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(275430,41758,'blocks_3_timeline_items_2_title','What pre-qualifications are required?'),(275431,41758,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(275432,41758,'blocks_3_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(275433,41758,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(275434,41758,'blocks_3_timeline_items','3'),(275435,41758,'_blocks_3_timeline_items','field_6177de53d119d'),(275436,41758,'blocks_4_acfe_flexible_toggle',''),(275437,41758,'_blocks_4_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(275438,41758,'blocks_4_acfe_flexible_layout_title','Promo Panel'),(275439,41758,'_blocks_4_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(275440,41758,'blocks_4_options_alignment','center'),(275441,41758,'_blocks_4_options_alignment','field_61769449f5490'),(275442,41758,'blocks_4_options',''),(275443,41758,'_blocks_4_options','field_617693e1428f0'),(275444,41758,'blocks_4_promo_panel_image','41312'),(275445,41758,'_blocks_4_promo_panel_image','field_617693e1428f3'),(275446,41758,'blocks_4_promo_panel_content_heading','Testimonial'),(275447,41758,'_blocks_4_promo_panel_content_heading','field_617693e1428f6'),(275448,41758,'blocks_4_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!”\r\nJayne Nicholls Director Group X Training Ltd.'),(275449,41758,'_blocks_4_promo_panel_content_text','field_617693e1428f7'),(275450,41758,'blocks_4_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275451,41758,'_blocks_4_promo_panel_content_actions_0_button','field_617693e1428f9'),(275452,41758,'blocks_4_promo_panel_content_actions','1'),(275453,41758,'_blocks_4_promo_panel_content_actions','field_617693e1428f8'),(275454,41758,'blocks_4_promo_panel_content',''),(275455,41758,'_blocks_4_promo_panel_content','field_617693e1428f4'),(275456,41758,'blocks_5_acfe_flexible_toggle',''),(275457,41758,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(275458,41758,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(275459,41758,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(275460,41758,'blocks_5_options_theme','#b61234'),(275461,41758,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(275462,41758,'blocks_5_options_state','0'),(275463,41758,'_blocks_5_options_state','field_6239fcb7508c5'),(275464,41758,'blocks_5_options',''),(275465,41758,'_blocks_5_options','field_6177e2991ac44'),(275466,41758,'blocks_5_content_title',''),(275467,41758,'_blocks_5_content_title','field_64d237e8bb1e2'),(275468,41758,'blocks_5_content_heading','FAQ\'s'),(275469,41758,'_blocks_5_content_heading','field_64d237e8bb1e3'),(275470,41758,'blocks_5_content_text',''),(275471,41758,'_blocks_5_content_text','field_64d237e8bb1e4'),(275472,41758,'blocks_5_content_actions',''),(275473,41758,'_blocks_5_content_actions','field_64d237e8bb1e5'),(275474,41758,'blocks_5_content_align','left'),(275475,41758,'_blocks_5_content_align','field_64d2443e6b6aa'),(275476,41758,'blocks_5_content',''),(275477,41758,'_blocks_5_content','field_64d237e8bb1e1'),(275478,41758,'blocks_5_accordion_content','faqs'),(275479,41758,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(275480,41758,'blocks_5_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(275481,41758,'_blocks_5_accordion_faqs_select','field_6177e5f3633dd'),(275482,41758,'blocks_5_actions',''),(275483,41758,'_blocks_5_actions','field_61a746a817f7a'),(275484,41758,'course_label_label_theme','#0d1f73'),(275485,41758,'_course_label_label_theme','field_61e17bb8f71fb'),(275486,41758,'course_key_info_0_text','In-person Workshop'),(275487,41758,'_course_key_info_0_text','field_617ac6c38e5e3'),(275488,41758,'course_key_info_1_text','CPD Course'),(275489,41758,'_course_key_info_1_text','field_617ac6c38e5e3'),(275490,41759,'hide_hero','0'),(275491,41759,'_hide_hero','field_66a2380fcda39'),(275492,41759,'hero_title','IMoveFreely Instructor Programme Workshop'),(275493,41759,'_hero_title','field_617571fe285e8'),(275494,41759,'hero_text',''),(275495,41759,'_hero_text','field_6175723c285e9'),(275496,41759,'hero_actions_0_button','a:3:{s:5:\"title\";s:14:\"Add To Basket \";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275497,41759,'_hero_actions_0_button','field_61757281285eb'),(275498,41759,'hero_actions','1'),(275499,41759,'_hero_actions','field_61757270285ea'),(275500,41759,'hero_style','default'),(275501,41759,'_hero_style','field_62051d9dc5324'),(275502,41759,'_thumbnail_id','11708'),(275503,41759,'__thumbnail_id','field_617570855ddaf'),(275504,41759,'hero_image_pos_x','right'),(275505,41759,'_hero_image_pos_x','field_62ec3d05390bb'),(275506,41759,'hero_image_pos_y','top'),(275507,41759,'_hero_image_pos_y','field_62ec3d05390bc'),(275508,41759,'hero_image_pos',''),(275509,41759,'_hero_image_pos','field_62ec3d05390ba'),(275510,41759,'fft_hide_from_listings','0'),(275511,41759,'_fft_hide_from_listings','field_61f1320446ab2'),(275512,41759,'fft_page_format','default'),(275513,41759,'_fft_page_format','field_61ae213f1f218'),(275514,41759,'fft_hide_nav','0'),(275515,41759,'_fft_hide_nav','field_635bd5e43527c'),(275516,41759,'fft_hide_header_call_to_action','0'),(275517,41759,'_fft_hide_header_call_to_action','field_635bd6723527d'),(275518,41759,'fft_page_sitemap','0'),(275519,41759,'_fft_page_sitemap','field_61af9b34e8181'),(275520,41759,'blocks_0_acfe_flexible_toggle',''),(275521,41759,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(275522,41759,'blocks_0_acfe_flexible_layout_title','Template'),(275523,41759,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(275524,41759,'blocks_0_template','39087'),(275525,41759,'_blocks_0_template','field_617bdd570fe01'),(275526,41759,'blocks_1_acfe_flexible_toggle',''),(275527,41759,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(275528,41759,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(275529,41759,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(275530,41759,'blocks_1_options_theme','#f5f5f5'),(275531,41759,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(275532,41759,'blocks_1_options_reverse','0'),(275533,41759,'_blocks_1_options_reverse','field_61768049bb8ac'),(275534,41759,'blocks_1_options',''),(275535,41759,'_blocks_1_options','field_617682517c334'),(275536,41759,'blocks_1_split_5050_image','40615'),(275537,41759,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(275538,41759,'blocks_1_split_5050_video',''),(275539,41759,'_blocks_1_split_5050_video','field_6239f3160848a'),(275540,41759,'blocks_1_split_5050_content_title',''),(275541,41759,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(275542,41759,'blocks_1_split_5050_content_heading','Overview'),(275543,41759,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(275544,41759,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(275545,41759,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(275546,41759,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275547,41759,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(275548,41759,'blocks_1_split_5050_content_actions','1'),(275549,41759,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(275550,41759,'blocks_1_split_5050_content',''),(275551,41759,'_blocks_1_split_5050_content','field_61767afceb8ba'),(275552,41759,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:13:\"step_timeline\";i:4;s:11:\"promo_panel\";i:5;s:10:\"accordions\";}'),(275553,41759,'_blocks','field_6176696113096'),(275554,41759,'course_label_text','IMoveFreely Instructor programme workshop'),(275555,41759,'_course_label_text','field_61e17babf71fa'),(275556,41759,'course_label',''),(275557,41759,'_course_label','field_61e12f92749a7'),(275558,41759,'course_description','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants.'),(275559,41759,'_course_description','field_617ac5788e5e1'),(275560,41759,'course_key_info','2'),(275561,41759,'_course_key_info','field_617ac6ad8e5e2'),(275562,41759,'course_included','Profound effects on movement issues \r\n\r\nIdeal for injury prevention, rehabilitation, and activity preparation \r\n\r\nEvidence-based techniques for improved performance \r\n\r\nFlexible integration into existing classes '),(275563,41759,'_course_included','field_617ac6f08e5e4'),(275564,41759,'blocks_2_acfe_flexible_toggle',''),(275565,41759,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(275566,41759,'blocks_2_acfe_flexible_layout_title','Video'),(275567,41759,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(275568,41759,'blocks_2_size','large'),(275569,41759,'_blocks_2_size','field_6487038f297c1'),(275570,41759,'blocks_2_row_content_title',''),(275571,41759,'_blocks_2_row_content_title','field_64870132a865d'),(275572,41759,'blocks_2_row_content_heading','Intro to IMoveFreely Instructor workshop'),(275573,41759,'_blocks_2_row_content_heading','field_64870142a865e'),(275574,41759,'blocks_2_row_content_text',''),(275575,41759,'_blocks_2_row_content_text','field_64870148a865f'),(275576,41759,'blocks_2_row_content',''),(275577,41759,'_blocks_2_row_content','field_6487008ba865c'),(275578,41759,'blocks_2_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(275579,41759,'_blocks_2_video_src','field_6193c4a98ec07'),(275580,41759,'blocks_2_video_thumbnail',''),(275581,41759,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(275582,41759,'blocks_3_acfe_flexible_toggle',''),(275583,41759,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(275584,41759,'blocks_3_acfe_flexible_layout_title','Timeline'),(275585,41759,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(275586,41759,'blocks_3_options_theme','#ffffff'),(275587,41759,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(275588,41759,'blocks_3_options',''),(275589,41759,'_blocks_3_options','field_6177de53d1195'),(275590,41759,'blocks_3_timeline_content_title',''),(275591,41759,'_blocks_3_timeline_content_title','field_6177de53d1198'),(275592,41759,'blocks_3_timeline_content_heading','Who is the course suitable for? '),(275593,41759,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(275594,41759,'blocks_3_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(275595,41759,'_blocks_3_timeline_content_text','field_6177de53d119a'),(275596,41759,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275597,41759,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(275598,41759,'blocks_3_timeline_content_actions','1'),(275599,41759,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(275600,41759,'blocks_3_timeline_content',''),(275601,41759,'_blocks_3_timeline_content','field_6177de53d1197'),(275602,41759,'blocks_3_timeline_items_0_title','Benefits'),(275603,41759,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(275604,41759,'blocks_3_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(275605,41759,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(275606,41759,'blocks_3_timeline_items_1_title','Curriculum Highlights'),(275607,41759,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(275608,41759,'blocks_3_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(275609,41759,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(275610,41759,'blocks_3_timeline_items_2_title','What pre-qualifications are required?'),(275611,41759,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(275612,41759,'blocks_3_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(275613,41759,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(275614,41759,'blocks_3_timeline_items','3'),(275615,41759,'_blocks_3_timeline_items','field_6177de53d119d'),(275616,41759,'blocks_4_acfe_flexible_toggle',''),(275617,41759,'_blocks_4_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(275618,41759,'blocks_4_acfe_flexible_layout_title','Promo Panel'),(275619,41759,'_blocks_4_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(275620,41759,'blocks_4_options_alignment','center'),(275621,41759,'_blocks_4_options_alignment','field_61769449f5490'),(275622,41759,'blocks_4_options',''),(275623,41759,'_blocks_4_options','field_617693e1428f0'),(275624,41759,'blocks_4_promo_panel_image','41312'),(275625,41759,'_blocks_4_promo_panel_image','field_617693e1428f3'),(275626,41759,'blocks_4_promo_panel_content_heading','Testimonial'),(275627,41759,'_blocks_4_promo_panel_content_heading','field_617693e1428f6'),(275628,41759,'blocks_4_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!”\r\nJayne Nicholls Director Group X Training Ltd.'),(275629,41759,'_blocks_4_promo_panel_content_text','field_617693e1428f7'),(275630,41759,'blocks_4_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275631,41759,'_blocks_4_promo_panel_content_actions_0_button','field_617693e1428f9'),(275632,41759,'blocks_4_promo_panel_content_actions','1'),(275633,41759,'_blocks_4_promo_panel_content_actions','field_617693e1428f8'),(275634,41759,'blocks_4_promo_panel_content',''),(275635,41759,'_blocks_4_promo_panel_content','field_617693e1428f4'),(275636,41759,'blocks_5_acfe_flexible_toggle',''),(275637,41759,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(275638,41759,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(275639,41759,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(275640,41759,'blocks_5_options_theme','#b61234'),(275641,41759,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(275642,41759,'blocks_5_options_state','0'),(275643,41759,'_blocks_5_options_state','field_6239fcb7508c5'),(275644,41759,'blocks_5_options',''),(275645,41759,'_blocks_5_options','field_6177e2991ac44'),(275646,41759,'blocks_5_content_title',''),(275647,41759,'_blocks_5_content_title','field_64d237e8bb1e2'),(275648,41759,'blocks_5_content_heading','FAQ\'s'),(275649,41759,'_blocks_5_content_heading','field_64d237e8bb1e3'),(275650,41759,'blocks_5_content_text',''),(275651,41759,'_blocks_5_content_text','field_64d237e8bb1e4'),(275652,41759,'blocks_5_content_actions',''),(275653,41759,'_blocks_5_content_actions','field_64d237e8bb1e5'),(275654,41759,'blocks_5_content_align','left'),(275655,41759,'_blocks_5_content_align','field_64d2443e6b6aa'),(275656,41759,'blocks_5_content',''),(275657,41759,'_blocks_5_content','field_64d237e8bb1e1'),(275658,41759,'blocks_5_accordion_content','faqs'),(275659,41759,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(275660,41759,'blocks_5_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(275661,41759,'_blocks_5_accordion_faqs_select','field_6177e5f3633dd'),(275662,41759,'blocks_5_actions',''),(275663,41759,'_blocks_5_actions','field_61a746a817f7a'),(275664,41759,'course_label_label_theme','#0d1f73'),(275665,41759,'_course_label_label_theme','field_61e17bb8f71fb'),(275666,41759,'course_key_info_0_text','In-person Workshop'),(275667,41759,'_course_key_info_0_text','field_617ac6c38e5e3'),(275668,41759,'course_key_info_1_text','CPD Course'),(275669,41759,'_course_key_info_1_text','field_617ac6c38e5e3'),(275670,41760,'hide_hero','0'),(275671,41760,'_hide_hero','field_66a2380fcda39'),(275672,41760,'hero_title','IMoveFreely Instructor Programme Workshop'),(275673,41760,'_hero_title','field_617571fe285e8'),(275674,41760,'hero_text',''),(275675,41760,'_hero_text','field_6175723c285e9'),(275676,41760,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275677,41760,'_hero_actions_0_button','field_61757281285eb'),(275678,41760,'hero_actions','1'),(275679,41760,'_hero_actions','field_61757270285ea'),(275680,41760,'hero_style','default'),(275681,41760,'_hero_style','field_62051d9dc5324'),(275682,41760,'_thumbnail_id','11708'),(275683,41760,'__thumbnail_id','field_617570855ddaf'),(275684,41760,'hero_image_pos_x','right'),(275685,41760,'_hero_image_pos_x','field_62ec3d05390bb'),(275686,41760,'hero_image_pos_y','top'),(275687,41760,'_hero_image_pos_y','field_62ec3d05390bc'),(275688,41760,'hero_image_pos',''),(275689,41760,'_hero_image_pos','field_62ec3d05390ba'),(275690,41760,'fft_hide_from_listings','0'),(275691,41760,'_fft_hide_from_listings','field_61f1320446ab2'),(275692,41760,'fft_page_format','default'),(275693,41760,'_fft_page_format','field_61ae213f1f218'),(275694,41760,'fft_hide_nav','0'),(275695,41760,'_fft_hide_nav','field_635bd5e43527c'),(275696,41760,'fft_hide_header_call_to_action','0'),(275697,41760,'_fft_hide_header_call_to_action','field_635bd6723527d'),(275698,41760,'fft_page_sitemap','0'),(275699,41760,'_fft_page_sitemap','field_61af9b34e8181'),(275700,41760,'blocks_0_acfe_flexible_toggle',''),(275701,41760,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(275702,41760,'blocks_0_acfe_flexible_layout_title','Template'),(275703,41760,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(275704,41760,'blocks_0_template','39087'),(275705,41760,'_blocks_0_template','field_617bdd570fe01'),(275706,41760,'blocks_1_acfe_flexible_toggle',''),(275707,41760,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(275708,41760,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(275709,41760,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(275710,41760,'blocks_1_options_theme','#f5f5f5'),(275711,41760,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(275712,41760,'blocks_1_options_reverse','0'),(275713,41760,'_blocks_1_options_reverse','field_61768049bb8ac'),(275714,41760,'blocks_1_options',''),(275715,41760,'_blocks_1_options','field_617682517c334'),(275716,41760,'blocks_1_split_5050_image','40615'),(275717,41760,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(275718,41760,'blocks_1_split_5050_video',''),(275719,41760,'_blocks_1_split_5050_video','field_6239f3160848a'),(275720,41760,'blocks_1_split_5050_content_title',''),(275721,41760,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(275722,41760,'blocks_1_split_5050_content_heading','Overview'),(275723,41760,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(275724,41760,'blocks_1_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(275725,41760,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(275726,41760,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275727,41760,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(275728,41760,'blocks_1_split_5050_content_actions','1'),(275729,41760,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(275730,41760,'blocks_1_split_5050_content',''),(275731,41760,'_blocks_1_split_5050_content','field_61767afceb8ba'),(275732,41760,'blocks','a:6:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:13:\"step_timeline\";i:4;s:11:\"promo_panel\";i:5;s:10:\"accordions\";}'),(275733,41760,'_blocks','field_6176696113096'),(275734,41760,'course_label_text','IMoveFreely Instructor programme workshop'),(275735,41760,'_course_label_text','field_61e17babf71fa'),(275736,41760,'course_label',''),(275737,41760,'_course_label','field_61e12f92749a7'),(275738,41760,'course_description','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants.'),(275739,41760,'_course_description','field_617ac5788e5e1'),(275740,41760,'course_key_info','2'),(275741,41760,'_course_key_info','field_617ac6ad8e5e2'),(275742,41760,'course_included','Profound effects on movement issues \r\n\r\nIdeal for injury prevention, rehabilitation, and activity preparation \r\n\r\nEvidence-based techniques for improved performance \r\n\r\nFlexible integration into existing classes '),(275743,41760,'_course_included','field_617ac6f08e5e4'),(275744,41760,'blocks_2_acfe_flexible_toggle',''),(275745,41760,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(275746,41760,'blocks_2_acfe_flexible_layout_title','Video'),(275747,41760,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(275748,41760,'blocks_2_size','large'),(275749,41760,'_blocks_2_size','field_6487038f297c1'),(275750,41760,'blocks_2_row_content_title',''),(275751,41760,'_blocks_2_row_content_title','field_64870132a865d'),(275752,41760,'blocks_2_row_content_heading','Intro to IMoveFreely Instructor workshop'),(275753,41760,'_blocks_2_row_content_heading','field_64870142a865e'),(275754,41760,'blocks_2_row_content_text',''),(275755,41760,'_blocks_2_row_content_text','field_64870148a865f'),(275756,41760,'blocks_2_row_content',''),(275757,41760,'_blocks_2_row_content','field_6487008ba865c'),(275758,41760,'blocks_2_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(275759,41760,'_blocks_2_video_src','field_6193c4a98ec07'),(275760,41760,'blocks_2_video_thumbnail',''),(275761,41760,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(275762,41760,'blocks_3_acfe_flexible_toggle',''),(275763,41760,'_blocks_3_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(275764,41760,'blocks_3_acfe_flexible_layout_title','Timeline'),(275765,41760,'_blocks_3_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(275766,41760,'blocks_3_options_theme','#ffffff'),(275767,41760,'_blocks_3_options_theme','field_6177de53d1196_field_6176830e2ad17'),(275768,41760,'blocks_3_options',''),(275769,41760,'_blocks_3_options','field_6177de53d1195'),(275770,41760,'blocks_3_timeline_content_title',''),(275771,41760,'_blocks_3_timeline_content_title','field_6177de53d1198'),(275772,41760,'blocks_3_timeline_content_heading','Who is the course suitable for? '),(275773,41760,'_blocks_3_timeline_content_heading','field_6177de53d1199'),(275774,41760,'blocks_3_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(275775,41760,'_blocks_3_timeline_content_text','field_6177de53d119a'),(275776,41760,'blocks_3_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275777,41760,'_blocks_3_timeline_content_actions_0_button','field_6177de53d119c'),(275778,41760,'blocks_3_timeline_content_actions','1'),(275779,41760,'_blocks_3_timeline_content_actions','field_6177de53d119b'),(275780,41760,'blocks_3_timeline_content',''),(275781,41760,'_blocks_3_timeline_content','field_6177de53d1197'),(275782,41760,'blocks_3_timeline_items_0_title','Benefits'),(275783,41760,'_blocks_3_timeline_items_0_title','field_6177de53d119f'),(275784,41760,'blocks_3_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(275785,41760,'_blocks_3_timeline_items_0_text','field_6177de53d11a0'),(275786,41760,'blocks_3_timeline_items_1_title','Curriculum Highlights'),(275787,41760,'_blocks_3_timeline_items_1_title','field_6177de53d119f'),(275788,41760,'blocks_3_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(275789,41760,'_blocks_3_timeline_items_1_text','field_6177de53d11a0'),(275790,41760,'blocks_3_timeline_items_2_title','What pre-qualifications are required?'),(275791,41760,'_blocks_3_timeline_items_2_title','field_6177de53d119f'),(275792,41760,'blocks_3_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(275793,41760,'_blocks_3_timeline_items_2_text','field_6177de53d11a0'),(275794,41760,'blocks_3_timeline_items','3'),(275795,41760,'_blocks_3_timeline_items','field_6177de53d119d'),(275796,41760,'blocks_4_acfe_flexible_toggle',''),(275797,41760,'_blocks_4_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(275798,41760,'blocks_4_acfe_flexible_layout_title','Promo Panel'),(275799,41760,'_blocks_4_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(275800,41760,'blocks_4_options_alignment','center'),(275801,41760,'_blocks_4_options_alignment','field_61769449f5490'),(275802,41760,'blocks_4_options',''),(275803,41760,'_blocks_4_options','field_617693e1428f0'),(275804,41760,'blocks_4_promo_panel_image','41312'),(275805,41760,'_blocks_4_promo_panel_image','field_617693e1428f3'),(275806,41760,'blocks_4_promo_panel_content_heading','Testimonial'),(275807,41760,'_blocks_4_promo_panel_content_heading','field_617693e1428f6'),(275808,41760,'blocks_4_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!”\r\nJayne Nicholls Director Group X Training Ltd.'),(275809,41760,'_blocks_4_promo_panel_content_text','field_617693e1428f7'),(275810,41760,'blocks_4_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(275811,41760,'_blocks_4_promo_panel_content_actions_0_button','field_617693e1428f9'),(275812,41760,'blocks_4_promo_panel_content_actions','1'),(275813,41760,'_blocks_4_promo_panel_content_actions','field_617693e1428f8'),(275814,41760,'blocks_4_promo_panel_content',''),(275815,41760,'_blocks_4_promo_panel_content','field_617693e1428f4'),(275816,41760,'blocks_5_acfe_flexible_toggle',''),(275817,41760,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(275818,41760,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(275819,41760,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(275820,41760,'blocks_5_options_theme','#b61234'),(275821,41760,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(275822,41760,'blocks_5_options_state','0'),(275823,41760,'_blocks_5_options_state','field_6239fcb7508c5'),(275824,41760,'blocks_5_options',''),(275825,41760,'_blocks_5_options','field_6177e2991ac44'),(275826,41760,'blocks_5_content_title',''),(275827,41760,'_blocks_5_content_title','field_64d237e8bb1e2'),(275828,41760,'blocks_5_content_heading','FAQ\'s'),(275829,41760,'_blocks_5_content_heading','field_64d237e8bb1e3'),(275830,41760,'blocks_5_content_text',''),(275831,41760,'_blocks_5_content_text','field_64d237e8bb1e4'),(275832,41760,'blocks_5_content_actions',''),(275833,41760,'_blocks_5_content_actions','field_64d237e8bb1e5'),(275834,41760,'blocks_5_content_align','left'),(275835,41760,'_blocks_5_content_align','field_64d2443e6b6aa'),(275836,41760,'blocks_5_content',''),(275837,41760,'_blocks_5_content','field_64d237e8bb1e1'),(275838,41760,'blocks_5_accordion_content','faqs'),(275839,41760,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(275840,41760,'blocks_5_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(275841,41760,'_blocks_5_accordion_faqs_select','field_6177e5f3633dd'),(275842,41760,'blocks_5_actions',''),(275843,41760,'_blocks_5_actions','field_61a746a817f7a'),(275844,41760,'course_label_label_theme','#0d1f73'),(275845,41760,'_course_label_label_theme','field_61e17bb8f71fb'),(275846,41760,'course_key_info_0_text','In-person Workshop'),(275847,41760,'_course_key_info_0_text','field_617ac6c38e5e3'),(275848,41760,'course_key_info_1_text','CPD Course'),(275849,41760,'_course_key_info_1_text','field_617ac6c38e5e3'),(275850,40394,'form_fields_5_acfe_layout_col','12'),(275851,40394,'_form_fields_5_acfe_layout_col','field_layout_634558b91d0f6_col'),(275852,40394,'form_fields_5_layout_settings',''),(275853,40394,'_form_fields_5_layout_settings','field_layout_634558b91d0f6_settings'),(275854,40394,'form_fields_5_acfe_flexible_layout_title','Dropdown'),(275855,40394,'_form_fields_5_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(275856,40394,'form_fields_5_name','currentwork'),(275857,40394,'_form_fields_5_name','field_634558b91d0f8'),(275858,40394,'form_fields_5_label','What area do you currently work in?'),(275859,40394,'_form_fields_5_label','field_634558b91d0f7'),(275860,40394,'form_fields_5_description',''),(275861,40394,'_form_fields_5_description','field_638904adb4657'),(275862,40394,'form_fields_5_options','Personal Training\r\nPilates\r\nSports Massage\r\nPodiatrist\r\nSports Coaching\r\nStrength and Conditioning\r\nNone of the above'),(275863,40394,'_form_fields_5_options','field_634558c91d0fa'),(276048,39270,'_yoast_wpseo_inclusive_language_score','90'),(276049,40417,'form_fields_5_acfe_layout_col','12'),(276050,40417,'_form_fields_5_acfe_layout_col','field_layout_634558b91d0f6_col'),(276051,40417,'form_fields_5_layout_settings',''),(276052,40417,'_form_fields_5_layout_settings','field_layout_634558b91d0f6_settings'),(276053,40417,'form_fields_5_acfe_flexible_layout_title','Dropdown'),(276054,40417,'_form_fields_5_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(276055,40417,'form_fields_5_name','currentwork'),(276056,40417,'_form_fields_5_name','field_634558b91d0f8'),(276057,40417,'form_fields_5_label','What area do you currently work in?'),(276058,40417,'_form_fields_5_label','field_634558b91d0f7'),(276059,40417,'form_fields_5_description',''),(276060,40417,'_form_fields_5_description','field_638904adb4657'),(276061,40417,'form_fields_5_options','Personal Training\r\nPilates\r\nSports Massage\r\nPodiatrist\r\nSports Coaching\r\nStrength and Conditioning\r\nNone of the above'),(276062,40417,'_form_fields_5_options','field_634558c91d0fa'),(276063,40416,'form_fields_5_acfe_layout_col','12'),(276064,40416,'_form_fields_5_acfe_layout_col','field_layout_634558b91d0f6_col'),(276065,40416,'form_fields_5_layout_settings',''),(276066,40416,'_form_fields_5_layout_settings','field_layout_634558b91d0f6_settings'),(276067,40416,'form_fields_5_acfe_flexible_layout_title','Dropdown'),(276068,40416,'_form_fields_5_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(276069,40416,'form_fields_5_name','currentwork'),(276070,40416,'_form_fields_5_name','field_634558b91d0f8'),(276071,40416,'form_fields_5_label','What area do you currently work in?'),(276072,40416,'_form_fields_5_label','field_634558b91d0f7'),(276073,40416,'form_fields_5_description',''),(276074,40416,'_form_fields_5_description','field_638904adb4657'),(276075,40416,'form_fields_5_options','Personal Training\r\nPilates\r\nSports Massage\r\nPodiatrist\r\nSports Coaching\r\nStrength and Conditioning\r\nNone of the above'),(276076,40416,'_form_fields_5_options','field_634558c91d0fa'),(276077,40414,'form_fields_5_acfe_layout_col','12'),(276078,40414,'_form_fields_5_acfe_layout_col','field_layout_634558b91d0f6_col'),(276079,40414,'form_fields_5_layout_settings',''),(276080,40414,'_form_fields_5_layout_settings','field_layout_634558b91d0f6_settings'),(276081,40414,'form_fields_5_acfe_flexible_layout_title','Dropdown'),(276082,40414,'_form_fields_5_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(276083,40414,'form_fields_5_name','currentwork'),(276084,40414,'_form_fields_5_name','field_634558b91d0f8'),(276085,40414,'form_fields_5_label','What area do you currently work in?'),(276086,40414,'_form_fields_5_label','field_634558b91d0f7'),(276087,40414,'form_fields_5_description',''),(276088,40414,'_form_fields_5_description','field_638904adb4657'),(276089,40414,'form_fields_5_options','Personal Training\r\nPilates\r\nSports Massage\r\nPodiatrist\r\nSports Coaching\r\nStrength and Conditioning\r\nNone of the above'),(276090,40414,'_form_fields_5_options','field_634558c91d0fa'),(276091,40413,'form_fields_5_acfe_layout_col','12'),(276092,40413,'_form_fields_5_acfe_layout_col','field_layout_634558b91d0f6_col'),(276093,40413,'form_fields_5_layout_settings',''),(276094,40413,'_form_fields_5_layout_settings','field_layout_634558b91d0f6_settings'),(276095,40413,'form_fields_5_acfe_flexible_layout_title','Dropdown'),(276096,40413,'_form_fields_5_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(276097,40413,'form_fields_5_name','currentwork'),(276098,40413,'_form_fields_5_name','field_634558b91d0f8'),(276099,40413,'form_fields_5_label','What area do you currently work in?'),(276100,40413,'_form_fields_5_label','field_634558b91d0f7'),(276101,40413,'form_fields_5_description',''),(276102,40413,'_form_fields_5_description','field_638904adb4657'),(276103,40413,'form_fields_5_options','Personal Training\r\nPilates\r\nSports Massage\r\nPodiatrist\r\nSports Coaching\r\nStrength and Conditioning\r\nNone of the above'),(276104,40413,'_form_fields_5_options','field_634558c91d0fa'),(276105,40264,'_edit_lock','1735816550:11'),(276244,40264,'_yoast_wpseo_inclusive_language_score','90'),(276245,40264,'_yoast_wpseo_estimated-reading-time-minutes','1'),(276247,40264,'_edit_last','11'),(276248,40264,'hide_hero','0'),(276249,40264,'_hide_hero','field_66a2380fcda39'),(276250,40264,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers'),(276251,40264,'_hero_title','field_617571fe285e8'),(276252,40264,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(276253,40264,'_hero_text','field_6175723c285e9'),(276254,40264,'hero_actions_0_button','a:3:{s:5:\"title\";s:45:\"Add to basket (use code \'intro\' at checkout!)\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(276255,40264,'_hero_actions_0_button','field_61757281285eb'),(276256,40264,'hero_actions','1'),(276257,40264,'_hero_actions','field_61757270285ea'),(276258,40264,'hero_style','default'),(276259,40264,'_hero_style','field_62051d9dc5324'),(276260,40264,'_thumbnail_id','41505'),(276261,40264,'__thumbnail_id','field_617570855ddaf'),(276262,40264,'hero_image_pos_x','right'),(276263,40264,'_hero_image_pos_x','field_62ec3d05390bb'),(276264,40264,'hero_image_pos_y','top'),(276265,40264,'_hero_image_pos_y','field_62ec3d05390bc'),(276266,40264,'hero_image_pos',''),(276267,40264,'_hero_image_pos','field_62ec3d05390ba'),(276268,40264,'fft_hide_from_listings','0'),(276269,40264,'_fft_hide_from_listings','field_61f1320446ab2'),(276270,40264,'fft_page_format','default'),(276271,40264,'_fft_page_format','field_61ae213f1f218'),(276272,40264,'fft_hide_nav','0'),(276273,40264,'_fft_hide_nav','field_635bd5e43527c'),(276274,40264,'fft_hide_header_call_to_action','0'),(276275,40264,'_fft_hide_header_call_to_action','field_635bd6723527d'),(276276,40264,'fft_page_sitemap','0'),(276277,40264,'_fft_page_sitemap','field_61af9b34e8181'),(276278,40264,'blocks_0_acfe_flexible_toggle',''),(276279,40264,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(276280,40264,'blocks_0_acfe_flexible_layout_title','Icons'),(276281,40264,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(276282,40264,'blocks_0_options_theme','#b61234'),(276283,40264,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(276284,40264,'blocks_0_options_format','row'),(276285,40264,'_blocks_0_options_format','field_64bfde9a90690'),(276286,40264,'blocks_0_options',''),(276287,40264,'_blocks_0_options','field_64bfdd9b90684'),(276288,40264,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(276289,40264,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(276290,40264,'blocks_0_icon_row_items_0_label','Try before you buy! '),(276291,40264,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(276292,40264,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(276293,40264,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(276294,40264,'blocks_0_icon_row_items_1_icon','build-career.svg'),(276295,40264,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(276296,40264,'blocks_0_icon_row_items_1_label','Advance your skills'),(276297,40264,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(276298,40264,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(276299,40264,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(276300,40264,'blocks_0_icon_row_items_2_icon','diversify.svg'),(276301,40264,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(276302,40264,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(276303,40264,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(276304,40264,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(276305,40264,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(276306,40264,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(276307,40264,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(276308,40264,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(276309,40264,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(276310,40264,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(276311,40264,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(276312,40264,'blocks_0_icon_row_items','4'),(276313,40264,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(276374,40264,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";}'),(276375,40264,'_blocks','field_6176696113096'),(276376,40264,'course_label_text',''),(276377,40264,'_course_label_text','field_61e17babf71fa'),(276378,40264,'course_label',''),(276379,40264,'_course_label','field_61e12f92749a7'),(276380,40264,'course_description',''),(276381,40264,'_course_description','field_617ac5788e5e1'),(276382,40264,'course_key_info',''),(276383,40264,'_course_key_info','field_617ac6ad8e5e2'),(276384,40264,'course_included',''),(276385,40264,'_course_included','field_617ac6f08e5e4'),(276386,40264,'_yoast_wpseo_primary_course-cat','406'),(276387,41806,'hide_hero','0'),(276388,41806,'_hide_hero','field_66a2380fcda39'),(276389,41806,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers.'),(276390,41806,'_hero_title','field_617571fe285e8'),(276391,41806,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(276392,41806,'_hero_text','field_6175723c285e9'),(276393,41806,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(276394,41806,'_hero_actions_0_button','field_61757281285eb'),(276395,41806,'hero_actions','1'),(276396,41806,'_hero_actions','field_61757270285ea'),(276397,41806,'hero_style','default'),(276398,41806,'_hero_style','field_62051d9dc5324'),(276399,41806,'_thumbnail_id','41505'),(276400,41806,'__thumbnail_id','field_617570855ddaf'),(276401,41806,'hero_image_pos_x','right'),(276402,41806,'_hero_image_pos_x','field_62ec3d05390bb'),(276403,41806,'hero_image_pos_y','top'),(276404,41806,'_hero_image_pos_y','field_62ec3d05390bc'),(276405,41806,'hero_image_pos',''),(276406,41806,'_hero_image_pos','field_62ec3d05390ba'),(276407,41806,'fft_hide_from_listings','0'),(276408,41806,'_fft_hide_from_listings','field_61f1320446ab2'),(276409,41806,'fft_page_format','default'),(276410,41806,'_fft_page_format','field_61ae213f1f218'),(276411,41806,'fft_hide_nav','0'),(276412,41806,'_fft_hide_nav','field_635bd5e43527c'),(276413,41806,'fft_hide_header_call_to_action','0'),(276414,41806,'_fft_hide_header_call_to_action','field_635bd6723527d'),(276415,41806,'fft_page_sitemap','0'),(276416,41806,'_fft_page_sitemap','field_61af9b34e8181'),(276417,41806,'blocks_0_acfe_flexible_toggle',''),(276418,41806,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(276419,41806,'blocks_0_acfe_flexible_layout_title','Icons'),(276420,41806,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(276421,41806,'blocks_0_options_theme','#b61234'),(276422,41806,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(276423,41806,'blocks_0_options_format','row'),(276424,41806,'_blocks_0_options_format','field_64bfde9a90690'),(276425,41806,'blocks_0_options',''),(276426,41806,'_blocks_0_options','field_64bfdd9b90684'),(276427,41806,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(276428,41806,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(276429,41806,'blocks_0_icon_row_items_0_label','Try before you buy! '),(276430,41806,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(276431,41806,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(276432,41806,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(276433,41806,'blocks_0_icon_row_items_1_icon','build-career.svg'),(276434,41806,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(276435,41806,'blocks_0_icon_row_items_1_label','Advance your skills'),(276436,41806,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(276437,41806,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(276438,41806,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(276439,41806,'blocks_0_icon_row_items_2_icon','diversify.svg'),(276440,41806,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(276441,41806,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(276442,41806,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(276443,41806,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(276444,41806,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(276445,41806,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(276446,41806,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(276447,41806,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(276448,41806,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(276449,41806,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(276450,41806,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(276451,41806,'blocks_0_icon_row_items','4'),(276452,41806,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(276453,41806,'blocks_1_acfe_flexible_toggle',''),(276454,41806,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(276455,41806,'blocks_1_acfe_flexible_layout_title','Timeline'),(276456,41806,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(276457,41806,'blocks_1_options_theme','#ffffff'),(276458,41806,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(276459,41806,'blocks_1_options',''),(276460,41806,'_blocks_1_options','field_6177de53d1195'),(276461,41806,'blocks_1_timeline_content_title',''),(276462,41806,'_blocks_1_timeline_content_title','field_6177de53d1198'),(276463,41806,'blocks_1_timeline_content_heading','How to enrol on this free 50-minute course '),(276464,41806,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(276465,41806,'blocks_1_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(276466,41806,'_blocks_1_timeline_content_text','field_6177de53d119a'),(276467,41806,'blocks_1_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(276468,41806,'_blocks_1_timeline_content_actions_0_button','field_6177de53d119c'),(276469,41806,'blocks_1_timeline_content_actions','1'),(276470,41806,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(276471,41806,'blocks_1_timeline_content',''),(276472,41806,'_blocks_1_timeline_content','field_6177de53d1197'),(276473,41806,'blocks_1_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(276474,41806,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(276475,41806,'blocks_1_timeline_items_0_text','Click \'add to basket\' and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(276476,41806,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(276477,41806,'blocks_1_timeline_items_1_title','Get Access'),(276478,41806,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(276479,41806,'blocks_1_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(276480,41806,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(276481,41806,'blocks_1_timeline_items_2_title','Complete the course and unlock discount '),(276482,41806,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(276483,41806,'blocks_1_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(276484,41806,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(276485,41806,'blocks_1_timeline_items','3'),(276486,41806,'_blocks_1_timeline_items','field_6177de53d119d'),(276487,41806,'blocks_2_acfe_flexible_toggle',''),(276488,41806,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(276489,41806,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(276490,41806,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(276491,41806,'blocks_2_options_theme','#f5f5f5'),(276492,41806,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(276493,41806,'blocks_2_options_reverse','0'),(276494,41806,'_blocks_2_options_reverse','field_61768049bb8ac'),(276495,41806,'blocks_2_options',''),(276496,41806,'_blocks_2_options','field_617682517c334'),(276497,41806,'blocks_2_split_5050_image',''),(276498,41806,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(276499,41806,'blocks_2_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(276500,41806,'_blocks_2_split_5050_video','field_6239f3160848a'),(276501,41806,'blocks_2_split_5050_content_title',''),(276502,41806,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(276503,41806,'blocks_2_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(276504,41806,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(276505,41806,'blocks_2_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(276506,41806,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(276507,41806,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(276508,41806,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(276509,41806,'blocks_2_split_5050_content_actions','1'),(276510,41806,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(276511,41806,'blocks_2_split_5050_content',''),(276512,41806,'_blocks_2_split_5050_content','field_61767afceb8ba'),(276513,41806,'blocks','a:3:{i:0;s:5:\"icons\";i:1;s:13:\"step_timeline\";i:2;s:10:\"split_5050\";}'),(276514,41806,'_blocks','field_6176696113096'),(276515,41806,'course_label_text',''),(276516,41806,'_course_label_text','field_61e17babf71fa'),(276517,41806,'course_label',''),(276518,41806,'_course_label','field_61e12f92749a7'),(276519,41806,'course_description',''),(276520,41806,'_course_description','field_617ac5788e5e1'),(276521,41806,'course_key_info',''),(276522,41806,'_course_key_info','field_617ac6ad8e5e2'),(276523,41806,'course_included',''),(276524,41806,'_course_included','field_617ac6f08e5e4'),(276525,41807,'hide_hero','0'),(276526,41807,'_hide_hero','field_66a2380fcda39'),(276527,41807,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers.'),(276528,41807,'_hero_title','field_617571fe285e8'),(276529,41807,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(276530,41807,'_hero_text','field_6175723c285e9'),(276531,41807,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(276532,41807,'_hero_actions_0_button','field_61757281285eb'),(276533,41807,'hero_actions','1'),(276534,41807,'_hero_actions','field_61757270285ea'),(276535,41807,'hero_style','default'),(276536,41807,'_hero_style','field_62051d9dc5324'),(276537,41807,'_thumbnail_id','41505'),(276538,41807,'__thumbnail_id','field_617570855ddaf'),(276539,41807,'hero_image_pos_x','right'),(276540,41807,'_hero_image_pos_x','field_62ec3d05390bb'),(276541,41807,'hero_image_pos_y','top'),(276542,41807,'_hero_image_pos_y','field_62ec3d05390bc'),(276543,41807,'hero_image_pos',''),(276544,41807,'_hero_image_pos','field_62ec3d05390ba'),(276545,41807,'fft_hide_from_listings','0'),(276546,41807,'_fft_hide_from_listings','field_61f1320446ab2'),(276547,41807,'fft_page_format','default'),(276548,41807,'_fft_page_format','field_61ae213f1f218'),(276549,41807,'fft_hide_nav','0'),(276550,41807,'_fft_hide_nav','field_635bd5e43527c'),(276551,41807,'fft_hide_header_call_to_action','0'),(276552,41807,'_fft_hide_header_call_to_action','field_635bd6723527d'),(276553,41807,'fft_page_sitemap','0'),(276554,41807,'_fft_page_sitemap','field_61af9b34e8181'),(276555,41807,'blocks_0_acfe_flexible_toggle',''),(276556,41807,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(276557,41807,'blocks_0_acfe_flexible_layout_title','Icons'),(276558,41807,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(276559,41807,'blocks_0_options_theme','#b61234'),(276560,41807,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(276561,41807,'blocks_0_options_format','row'),(276562,41807,'_blocks_0_options_format','field_64bfde9a90690'),(276563,41807,'blocks_0_options',''),(276564,41807,'_blocks_0_options','field_64bfdd9b90684'),(276565,41807,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(276566,41807,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(276567,41807,'blocks_0_icon_row_items_0_label','Try before you buy! '),(276568,41807,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(276569,41807,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(276570,41807,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(276571,41807,'blocks_0_icon_row_items_1_icon','build-career.svg'),(276572,41807,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(276573,41807,'blocks_0_icon_row_items_1_label','Advance your skills'),(276574,41807,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(276575,41807,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(276576,41807,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(276577,41807,'blocks_0_icon_row_items_2_icon','diversify.svg'),(276578,41807,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(276579,41807,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(276580,41807,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(276581,41807,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(276582,41807,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(276583,41807,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(276584,41807,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(276585,41807,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(276586,41807,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(276587,41807,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(276588,41807,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(276589,41807,'blocks_0_icon_row_items','4'),(276590,41807,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(276591,41807,'blocks_1_acfe_flexible_toggle',''),(276592,41807,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(276593,41807,'blocks_1_acfe_flexible_layout_title','Timeline'),(276594,41807,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(276595,41807,'blocks_1_options_theme','#ffffff'),(276596,41807,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(276597,41807,'blocks_1_options',''),(276598,41807,'_blocks_1_options','field_6177de53d1195'),(276599,41807,'blocks_1_timeline_content_title',''),(276600,41807,'_blocks_1_timeline_content_title','field_6177de53d1198'),(276601,41807,'blocks_1_timeline_content_heading','How to enrol on this free 50-minute course '),(276602,41807,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(276603,41807,'blocks_1_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(276604,41807,'_blocks_1_timeline_content_text','field_6177de53d119a'),(276605,41807,'blocks_1_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(276606,41807,'_blocks_1_timeline_content_actions_0_button','field_6177de53d119c'),(276607,41807,'blocks_1_timeline_content_actions','1'),(276608,41807,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(276609,41807,'blocks_1_timeline_content',''),(276610,41807,'_blocks_1_timeline_content','field_6177de53d1197'),(276611,41807,'blocks_1_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(276612,41807,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(276613,41807,'blocks_1_timeline_items_0_text','Click \'add to basket\' and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(276614,41807,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(276615,41807,'blocks_1_timeline_items_1_title','Get Access'),(276616,41807,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(276617,41807,'blocks_1_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(276618,41807,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(276619,41807,'blocks_1_timeline_items_2_title','Complete the course and unlock discount '),(276620,41807,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(276621,41807,'blocks_1_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(276622,41807,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(276623,41807,'blocks_1_timeline_items','3'),(276624,41807,'_blocks_1_timeline_items','field_6177de53d119d'),(276625,41807,'blocks_2_acfe_flexible_toggle',''),(276626,41807,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(276627,41807,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(276628,41807,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(276629,41807,'blocks_2_options_theme','#b61234'),(276630,41807,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(276631,41807,'blocks_2_options_reverse','0'),(276632,41807,'_blocks_2_options_reverse','field_61768049bb8ac'),(276633,41807,'blocks_2_options',''),(276634,41807,'_blocks_2_options','field_617682517c334'),(276635,41807,'blocks_2_split_5050_image',''),(276636,41807,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(276637,41807,'blocks_2_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(276638,41807,'_blocks_2_split_5050_video','field_6239f3160848a'),(276639,41807,'blocks_2_split_5050_content_title',''),(276640,41807,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(276641,41807,'blocks_2_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(276642,41807,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(276643,41807,'blocks_2_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(276644,41807,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(276645,41807,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(276646,41807,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(276647,41807,'blocks_2_split_5050_content_actions','1'),(276648,41807,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(276649,41807,'blocks_2_split_5050_content',''),(276650,41807,'_blocks_2_split_5050_content','field_61767afceb8ba'),(276651,41807,'blocks','a:3:{i:0;s:5:\"icons\";i:1;s:13:\"step_timeline\";i:2;s:10:\"split_5050\";}'),(276652,41807,'_blocks','field_6176696113096'),(276653,41807,'course_label_text',''),(276654,41807,'_course_label_text','field_61e17babf71fa'),(276655,41807,'course_label',''),(276656,41807,'_course_label','field_61e12f92749a7'),(276657,41807,'course_description',''),(276658,41807,'_course_description','field_617ac5788e5e1'),(276659,41807,'course_key_info',''),(276660,41807,'_course_key_info','field_617ac6ad8e5e2'),(276661,41807,'course_included',''),(276662,41807,'_course_included','field_617ac6f08e5e4'),(276663,41808,'hide_hero','0'),(276664,41808,'_hide_hero','field_66a2380fcda39'),(276665,41808,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers.'),(276666,41808,'_hero_title','field_617571fe285e8'),(276667,41808,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(276668,41808,'_hero_text','field_6175723c285e9'),(276669,41808,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(276670,41808,'_hero_actions_0_button','field_61757281285eb'),(276671,41808,'hero_actions','1'),(276672,41808,'_hero_actions','field_61757270285ea'),(276673,41808,'hero_style','default'),(276674,41808,'_hero_style','field_62051d9dc5324'),(276675,41808,'_thumbnail_id','41500'),(276676,41808,'__thumbnail_id','field_617570855ddaf'),(276677,41808,'hero_image_pos_x','right'),(276678,41808,'_hero_image_pos_x','field_62ec3d05390bb'),(276679,41808,'hero_image_pos_y','top'),(276680,41808,'_hero_image_pos_y','field_62ec3d05390bc'),(276681,41808,'hero_image_pos',''),(276682,41808,'_hero_image_pos','field_62ec3d05390ba'),(276683,41808,'fft_hide_from_listings','0'),(276684,41808,'_fft_hide_from_listings','field_61f1320446ab2'),(276685,41808,'fft_page_format','default'),(276686,41808,'_fft_page_format','field_61ae213f1f218'),(276687,41808,'fft_hide_nav','0'),(276688,41808,'_fft_hide_nav','field_635bd5e43527c'),(276689,41808,'fft_hide_header_call_to_action','0'),(276690,41808,'_fft_hide_header_call_to_action','field_635bd6723527d'),(276691,41808,'fft_page_sitemap','0'),(276692,41808,'_fft_page_sitemap','field_61af9b34e8181'),(276693,41808,'blocks_0_acfe_flexible_toggle',''),(276694,41808,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(276695,41808,'blocks_0_acfe_flexible_layout_title','Icons'),(276696,41808,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(276697,41808,'blocks_0_options_theme','#b61234'),(276698,41808,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(276699,41808,'blocks_0_options_format','row'),(276700,41808,'_blocks_0_options_format','field_64bfde9a90690'),(276701,41808,'blocks_0_options',''),(276702,41808,'_blocks_0_options','field_64bfdd9b90684'),(276703,41808,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(276704,41808,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(276705,41808,'blocks_0_icon_row_items_0_label','Try before you buy! '),(276706,41808,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(276707,41808,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(276708,41808,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(276709,41808,'blocks_0_icon_row_items_1_icon','build-career.svg'),(276710,41808,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(276711,41808,'blocks_0_icon_row_items_1_label','Advance your skills'),(276712,41808,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(276713,41808,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(276714,41808,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(276715,41808,'blocks_0_icon_row_items_2_icon','diversify.svg'),(276716,41808,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(276717,41808,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(276718,41808,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(276719,41808,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(276720,41808,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(276721,41808,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(276722,41808,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(276723,41808,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(276724,41808,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(276725,41808,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(276726,41808,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(276727,41808,'blocks_0_icon_row_items','4'),(276728,41808,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(276729,41808,'blocks_1_acfe_flexible_toggle',''),(276730,41808,'_blocks_1_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(276731,41808,'blocks_1_acfe_flexible_layout_title','Timeline'),(276732,41808,'_blocks_1_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(276733,41808,'blocks_1_options_theme','#ffffff'),(276734,41808,'_blocks_1_options_theme','field_6177de53d1196_field_6176830e2ad17'),(276735,41808,'blocks_1_options',''),(276736,41808,'_blocks_1_options','field_6177de53d1195'),(276737,41808,'blocks_1_timeline_content_title',''),(276738,41808,'_blocks_1_timeline_content_title','field_6177de53d1198'),(276739,41808,'blocks_1_timeline_content_heading','How to enrol on this free 50-minute course '),(276740,41808,'_blocks_1_timeline_content_heading','field_6177de53d1199'),(276741,41808,'blocks_1_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(276742,41808,'_blocks_1_timeline_content_text','field_6177de53d119a'),(276743,41808,'blocks_1_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(276744,41808,'_blocks_1_timeline_content_actions_0_button','field_6177de53d119c'),(276745,41808,'blocks_1_timeline_content_actions','1'),(276746,41808,'_blocks_1_timeline_content_actions','field_6177de53d119b'),(276747,41808,'blocks_1_timeline_content',''),(276748,41808,'_blocks_1_timeline_content','field_6177de53d1197'),(276749,41808,'blocks_1_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(276750,41808,'_blocks_1_timeline_items_0_title','field_6177de53d119f'),(276751,41808,'blocks_1_timeline_items_0_text','Click \'add to basket\' and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(276752,41808,'_blocks_1_timeline_items_0_text','field_6177de53d11a0'),(276753,41808,'blocks_1_timeline_items_1_title','Get Access'),(276754,41808,'_blocks_1_timeline_items_1_title','field_6177de53d119f'),(276755,41808,'blocks_1_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(276756,41808,'_blocks_1_timeline_items_1_text','field_6177de53d11a0'),(276757,41808,'blocks_1_timeline_items_2_title','Complete the course and unlock discount '),(276758,41808,'_blocks_1_timeline_items_2_title','field_6177de53d119f'),(276759,41808,'blocks_1_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(276760,41808,'_blocks_1_timeline_items_2_text','field_6177de53d11a0'),(276761,41808,'blocks_1_timeline_items','3'),(276762,41808,'_blocks_1_timeline_items','field_6177de53d119d'),(276763,41808,'blocks_2_acfe_flexible_toggle',''),(276764,41808,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(276765,41808,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(276766,41808,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(276767,41808,'blocks_2_options_theme','#b61234'),(276768,41808,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(276769,41808,'blocks_2_options_reverse','0'),(276770,41808,'_blocks_2_options_reverse','field_61768049bb8ac'),(276771,41808,'blocks_2_options',''),(276772,41808,'_blocks_2_options','field_617682517c334'),(276773,41808,'blocks_2_split_5050_image',''),(276774,41808,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(276775,41808,'blocks_2_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(276776,41808,'_blocks_2_split_5050_video','field_6239f3160848a'),(276777,41808,'blocks_2_split_5050_content_title',''),(276778,41808,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(276779,41808,'blocks_2_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(276780,41808,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(276781,41808,'blocks_2_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(276782,41808,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(276783,41808,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(276784,41808,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(276785,41808,'blocks_2_split_5050_content_actions','1'),(276786,41808,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(276787,41808,'blocks_2_split_5050_content',''),(276788,41808,'_blocks_2_split_5050_content','field_61767afceb8ba'),(276789,41808,'blocks','a:3:{i:0;s:5:\"icons\";i:1;s:13:\"step_timeline\";i:2;s:10:\"split_5050\";}'),(276790,41808,'_blocks','field_6176696113096'),(276791,41808,'course_label_text',''),(276792,41808,'_course_label_text','field_61e17babf71fa'),(276793,41808,'course_label',''),(276794,41808,'_course_label','field_61e12f92749a7'),(276795,41808,'course_description',''),(276796,41808,'_course_description','field_617ac5788e5e1'),(276797,41808,'course_key_info',''),(276798,41808,'_course_key_info','field_617ac6ad8e5e2'),(276799,41808,'course_included',''),(276800,41808,'_course_included','field_617ac6f08e5e4'),(276801,40264,'blocks_1_acfe_flexible_toggle',''),(276802,40264,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(276803,40264,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(276804,40264,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(276805,40264,'blocks_1_options_theme','#ffffff'),(276806,40264,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(276807,40264,'blocks_1_options_reverse','0'),(276808,40264,'_blocks_1_options_reverse','field_61768049bb8ac'),(276809,40264,'blocks_1_options',''),(276810,40264,'_blocks_1_options','field_617682517c334'),(276811,40264,'blocks_1_split_5050_image','41504'),(276812,40264,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(276813,40264,'blocks_1_split_5050_video',''),(276814,40264,'_blocks_1_split_5050_video','field_6239f3160848a'),(276815,40264,'blocks_1_split_5050_content_title','Introducing your free 50-minute course'),(276816,40264,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(276817,40264,'blocks_1_split_5050_content_heading','Overview '),(276818,40264,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(276819,40264,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nYou can complete this course fully online in around 50 minutes, and upon completion you\'ll unlock a hidden discount to save on the full diploma.\r\n\r\nUse code \'intro\' at the checkout to get this course <strong>free </strong>(usually £139.00)'),(276820,40264,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(276821,40264,'blocks_1_split_5050_content_actions',''),(276822,40264,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(276823,40264,'blocks_1_split_5050_content',''),(276824,40264,'_blocks_1_split_5050_content','field_61767afceb8ba'),(276825,40264,'blocks_2_acfe_flexible_toggle',''),(276826,40264,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(276827,40264,'blocks_2_acfe_flexible_layout_title','Timeline'),(276828,40264,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(276829,40264,'blocks_2_options_theme','#b61234'),(276830,40264,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(276831,40264,'blocks_2_options',''),(276832,40264,'_blocks_2_options','field_6177de53d1195'),(276833,40264,'blocks_2_timeline_content_title',''),(276834,40264,'_blocks_2_timeline_content_title','field_6177de53d1198'),(276835,40264,'blocks_2_timeline_content_heading','How to enrol on this free 50-minute course '),(276836,40264,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(276837,40264,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(276838,40264,'_blocks_2_timeline_content_text','field_6177de53d119a'),(276839,40264,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(276840,40264,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(276841,40264,'blocks_2_timeline_content_actions','1'),(276842,40264,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(276843,40264,'blocks_2_timeline_content',''),(276844,40264,'_blocks_2_timeline_content','field_6177de53d1197'),(276845,40264,'blocks_2_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(276846,40264,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(276847,40264,'blocks_2_timeline_items_0_text','Click any of the checkout or add to basket buttons, and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(276848,40264,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(276849,40264,'blocks_2_timeline_items_1_title','Get Access'),(276850,40264,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(276851,40264,'blocks_2_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(276852,40264,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(276853,40264,'blocks_2_timeline_items_2_title','Complete the course and unlock discount '),(276854,40264,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(276855,40264,'blocks_2_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(276856,40264,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(276857,40264,'blocks_2_timeline_items','3'),(276858,40264,'_blocks_2_timeline_items','field_6177de53d119d'),(276859,40264,'blocks_3_acfe_flexible_toggle',''),(276860,40264,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(276861,40264,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(276862,40264,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(276863,40264,'blocks_3_options_theme','#f5f5f5'),(276864,40264,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(276865,40264,'blocks_3_options_reverse','0'),(276866,40264,'_blocks_3_options_reverse','field_61768049bb8ac'),(276867,40264,'blocks_3_options',''),(276868,40264,'_blocks_3_options','field_617682517c334'),(276869,40264,'blocks_3_split_5050_image',''),(276870,40264,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(276871,40264,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(276872,40264,'_blocks_3_split_5050_video','field_6239f3160848a'),(276873,40264,'blocks_3_split_5050_content_title',''),(276874,40264,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(276875,40264,'blocks_3_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(276876,40264,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(276877,40264,'blocks_3_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(276878,40264,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(276879,40264,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(276880,40264,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(276881,40264,'blocks_3_split_5050_content_actions','1'),(276882,40264,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(276883,40264,'blocks_3_split_5050_content',''),(276884,40264,'_blocks_3_split_5050_content','field_61767afceb8ba'),(276885,41809,'hide_hero','0'),(276886,41809,'_hide_hero','field_66a2380fcda39'),(276887,41809,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers.'),(276888,41809,'_hero_title','field_617571fe285e8'),(276889,41809,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(276890,41809,'_hero_text','field_6175723c285e9'),(276891,41809,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(276892,41809,'_hero_actions_0_button','field_61757281285eb'),(276893,41809,'hero_actions','1'),(276894,41809,'_hero_actions','field_61757270285ea'),(276895,41809,'hero_style','default'),(276896,41809,'_hero_style','field_62051d9dc5324'),(276897,41809,'_thumbnail_id','41500'),(276898,41809,'__thumbnail_id','field_617570855ddaf'),(276899,41809,'hero_image_pos_x','right'),(276900,41809,'_hero_image_pos_x','field_62ec3d05390bb'),(276901,41809,'hero_image_pos_y','top'),(276902,41809,'_hero_image_pos_y','field_62ec3d05390bc'),(276903,41809,'hero_image_pos',''),(276904,41809,'_hero_image_pos','field_62ec3d05390ba'),(276905,41809,'fft_hide_from_listings','0'),(276906,41809,'_fft_hide_from_listings','field_61f1320446ab2'),(276907,41809,'fft_page_format','default'),(276908,41809,'_fft_page_format','field_61ae213f1f218'),(276909,41809,'fft_hide_nav','0'),(276910,41809,'_fft_hide_nav','field_635bd5e43527c'),(276911,41809,'fft_hide_header_call_to_action','0'),(276912,41809,'_fft_hide_header_call_to_action','field_635bd6723527d'),(276913,41809,'fft_page_sitemap','0'),(276914,41809,'_fft_page_sitemap','field_61af9b34e8181'),(276915,41809,'blocks_0_acfe_flexible_toggle',''),(276916,41809,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(276917,41809,'blocks_0_acfe_flexible_layout_title','Icons'),(276918,41809,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(276919,41809,'blocks_0_options_theme','#b61234'),(276920,41809,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(276921,41809,'blocks_0_options_format','row'),(276922,41809,'_blocks_0_options_format','field_64bfde9a90690'),(276923,41809,'blocks_0_options',''),(276924,41809,'_blocks_0_options','field_64bfdd9b90684'),(276925,41809,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(276926,41809,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(276927,41809,'blocks_0_icon_row_items_0_label','Try before you buy! '),(276928,41809,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(276929,41809,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(276930,41809,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(276931,41809,'blocks_0_icon_row_items_1_icon','build-career.svg'),(276932,41809,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(276933,41809,'blocks_0_icon_row_items_1_label','Advance your skills'),(276934,41809,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(276935,41809,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(276936,41809,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(276937,41809,'blocks_0_icon_row_items_2_icon','diversify.svg'),(276938,41809,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(276939,41809,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(276940,41809,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(276941,41809,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(276942,41809,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(276943,41809,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(276944,41809,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(276945,41809,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(276946,41809,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(276947,41809,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(276948,41809,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(276949,41809,'blocks_0_icon_row_items','4'),(276950,41809,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(276951,41809,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";}'),(276952,41809,'_blocks','field_6176696113096'),(276953,41809,'course_label_text',''),(276954,41809,'_course_label_text','field_61e17babf71fa'),(276955,41809,'course_label',''),(276956,41809,'_course_label','field_61e12f92749a7'),(276957,41809,'course_description',''),(276958,41809,'_course_description','field_617ac5788e5e1'),(276959,41809,'course_key_info',''),(276960,41809,'_course_key_info','field_617ac6ad8e5e2'),(276961,41809,'course_included',''),(276962,41809,'_course_included','field_617ac6f08e5e4'),(276963,41809,'blocks_1_acfe_flexible_toggle',''),(276964,41809,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(276965,41809,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(276966,41809,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(276967,41809,'blocks_1_options_theme','#ffffff'),(276968,41809,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(276969,41809,'blocks_1_options_reverse','0'),(276970,41809,'_blocks_1_options_reverse','field_61768049bb8ac'),(276971,41809,'blocks_1_options',''),(276972,41809,'_blocks_1_options','field_617682517c334'),(276973,41809,'blocks_1_split_5050_image','41504'),(276974,41809,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(276975,41809,'blocks_1_split_5050_video',''),(276976,41809,'_blocks_1_split_5050_video','field_6239f3160848a'),(276977,41809,'blocks_1_split_5050_content_title','Introducing your free 50-minute course'),(276978,41809,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(276979,41809,'blocks_1_split_5050_content_heading','Overview '),(276980,41809,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(276981,41809,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nYou can complete this course fully online in around 50 minutes, and upon completion you\'ll unlock a hidden discount to save on the full diploma.\r\n\r\nUse code \'intro\' at the checkout to get this course <strong>free </strong>(usually £139.00)'),(276982,41809,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(276983,41809,'blocks_1_split_5050_content_actions',''),(276984,41809,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(276985,41809,'blocks_1_split_5050_content',''),(276986,41809,'_blocks_1_split_5050_content','field_61767afceb8ba'),(276987,41809,'blocks_2_acfe_flexible_toggle',''),(276988,41809,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(276989,41809,'blocks_2_acfe_flexible_layout_title','Timeline'),(276990,41809,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(276991,41809,'blocks_2_options_theme','#ffffff'),(276992,41809,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(276993,41809,'blocks_2_options',''),(276994,41809,'_blocks_2_options','field_6177de53d1195'),(276995,41809,'blocks_2_timeline_content_title',''),(276996,41809,'_blocks_2_timeline_content_title','field_6177de53d1198'),(276997,41809,'blocks_2_timeline_content_heading','How to enrol on this free 50-minute course '),(276998,41809,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(276999,41809,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(277000,41809,'_blocks_2_timeline_content_text','field_6177de53d119a'),(277001,41809,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277002,41809,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(277003,41809,'blocks_2_timeline_content_actions','1'),(277004,41809,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(277005,41809,'blocks_2_timeline_content',''),(277006,41809,'_blocks_2_timeline_content','field_6177de53d1197'),(277007,41809,'blocks_2_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(277008,41809,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(277009,41809,'blocks_2_timeline_items_0_text','Click \'add to basket\' and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(277010,41809,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(277011,41809,'blocks_2_timeline_items_1_title','Get Access'),(277012,41809,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(277013,41809,'blocks_2_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(277014,41809,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(277015,41809,'blocks_2_timeline_items_2_title','Complete the course and unlock discount '),(277016,41809,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(277017,41809,'blocks_2_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(277018,41809,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(277019,41809,'blocks_2_timeline_items','3'),(277020,41809,'_blocks_2_timeline_items','field_6177de53d119d'),(277021,41809,'blocks_3_acfe_flexible_toggle',''),(277022,41809,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle');
INSERT INTO `6m7_postmeta` VALUES (277023,41809,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(277024,41809,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(277025,41809,'blocks_3_options_theme','#b61234'),(277026,41809,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(277027,41809,'blocks_3_options_reverse','0'),(277028,41809,'_blocks_3_options_reverse','field_61768049bb8ac'),(277029,41809,'blocks_3_options',''),(277030,41809,'_blocks_3_options','field_617682517c334'),(277031,41809,'blocks_3_split_5050_image',''),(277032,41809,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(277033,41809,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(277034,41809,'_blocks_3_split_5050_video','field_6239f3160848a'),(277035,41809,'blocks_3_split_5050_content_title',''),(277036,41809,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(277037,41809,'blocks_3_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(277038,41809,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(277039,41809,'blocks_3_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(277040,41809,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(277041,41809,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277042,41809,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(277043,41809,'blocks_3_split_5050_content_actions','1'),(277044,41809,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(277045,41809,'blocks_3_split_5050_content',''),(277046,41809,'_blocks_3_split_5050_content','field_61767afceb8ba'),(277047,41810,'hide_hero','0'),(277048,41810,'_hide_hero','field_66a2380fcda39'),(277049,41810,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers.'),(277050,41810,'_hero_title','field_617571fe285e8'),(277051,41810,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(277052,41810,'_hero_text','field_6175723c285e9'),(277053,41810,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277054,41810,'_hero_actions_0_button','field_61757281285eb'),(277055,41810,'hero_actions','1'),(277056,41810,'_hero_actions','field_61757270285ea'),(277057,41810,'hero_style','default'),(277058,41810,'_hero_style','field_62051d9dc5324'),(277059,41810,'_thumbnail_id','41500'),(277060,41810,'__thumbnail_id','field_617570855ddaf'),(277061,41810,'hero_image_pos_x','right'),(277062,41810,'_hero_image_pos_x','field_62ec3d05390bb'),(277063,41810,'hero_image_pos_y','top'),(277064,41810,'_hero_image_pos_y','field_62ec3d05390bc'),(277065,41810,'hero_image_pos',''),(277066,41810,'_hero_image_pos','field_62ec3d05390ba'),(277067,41810,'fft_hide_from_listings','0'),(277068,41810,'_fft_hide_from_listings','field_61f1320446ab2'),(277069,41810,'fft_page_format','default'),(277070,41810,'_fft_page_format','field_61ae213f1f218'),(277071,41810,'fft_hide_nav','0'),(277072,41810,'_fft_hide_nav','field_635bd5e43527c'),(277073,41810,'fft_hide_header_call_to_action','0'),(277074,41810,'_fft_hide_header_call_to_action','field_635bd6723527d'),(277075,41810,'fft_page_sitemap','0'),(277076,41810,'_fft_page_sitemap','field_61af9b34e8181'),(277077,41810,'blocks_0_acfe_flexible_toggle',''),(277078,41810,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(277079,41810,'blocks_0_acfe_flexible_layout_title','Icons'),(277080,41810,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(277081,41810,'blocks_0_options_theme','#b61234'),(277082,41810,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(277083,41810,'blocks_0_options_format','row'),(277084,41810,'_blocks_0_options_format','field_64bfde9a90690'),(277085,41810,'blocks_0_options',''),(277086,41810,'_blocks_0_options','field_64bfdd9b90684'),(277087,41810,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(277088,41810,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(277089,41810,'blocks_0_icon_row_items_0_label','Try before you buy! '),(277090,41810,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(277091,41810,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(277092,41810,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(277093,41810,'blocks_0_icon_row_items_1_icon','build-career.svg'),(277094,41810,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(277095,41810,'blocks_0_icon_row_items_1_label','Advance your skills'),(277096,41810,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(277097,41810,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(277098,41810,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(277099,41810,'blocks_0_icon_row_items_2_icon','diversify.svg'),(277100,41810,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(277101,41810,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(277102,41810,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(277103,41810,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(277104,41810,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(277105,41810,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(277106,41810,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(277107,41810,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(277108,41810,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(277109,41810,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(277110,41810,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(277111,41810,'blocks_0_icon_row_items','4'),(277112,41810,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(277113,41810,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";}'),(277114,41810,'_blocks','field_6176696113096'),(277115,41810,'course_label_text',''),(277116,41810,'_course_label_text','field_61e17babf71fa'),(277117,41810,'course_label',''),(277118,41810,'_course_label','field_61e12f92749a7'),(277119,41810,'course_description',''),(277120,41810,'_course_description','field_617ac5788e5e1'),(277121,41810,'course_key_info',''),(277122,41810,'_course_key_info','field_617ac6ad8e5e2'),(277123,41810,'course_included',''),(277124,41810,'_course_included','field_617ac6f08e5e4'),(277125,41810,'blocks_1_acfe_flexible_toggle',''),(277126,41810,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(277127,41810,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(277128,41810,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(277129,41810,'blocks_1_options_theme','#ffffff'),(277130,41810,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(277131,41810,'blocks_1_options_reverse','0'),(277132,41810,'_blocks_1_options_reverse','field_61768049bb8ac'),(277133,41810,'blocks_1_options',''),(277134,41810,'_blocks_1_options','field_617682517c334'),(277135,41810,'blocks_1_split_5050_image','41504'),(277136,41810,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(277137,41810,'blocks_1_split_5050_video',''),(277138,41810,'_blocks_1_split_5050_video','field_6239f3160848a'),(277139,41810,'blocks_1_split_5050_content_title','Introducing your free 50-minute course'),(277140,41810,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(277141,41810,'blocks_1_split_5050_content_heading','Overview '),(277142,41810,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(277143,41810,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nYou can complete this course fully online in around 50 minutes, and upon completion you\'ll unlock a hidden discount to save on the full diploma.\r\n\r\nUse code \'intro\' at the checkout to get this course <strong>free </strong>(usually £139.00)'),(277144,41810,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(277145,41810,'blocks_1_split_5050_content_actions',''),(277146,41810,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(277147,41810,'blocks_1_split_5050_content',''),(277148,41810,'_blocks_1_split_5050_content','field_61767afceb8ba'),(277149,41810,'blocks_2_acfe_flexible_toggle',''),(277150,41810,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(277151,41810,'blocks_2_acfe_flexible_layout_title','Timeline'),(277152,41810,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(277153,41810,'blocks_2_options_theme','#b61234'),(277154,41810,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(277155,41810,'blocks_2_options',''),(277156,41810,'_blocks_2_options','field_6177de53d1195'),(277157,41810,'blocks_2_timeline_content_title',''),(277158,41810,'_blocks_2_timeline_content_title','field_6177de53d1198'),(277159,41810,'blocks_2_timeline_content_heading','How to enrol on this free 50-minute course '),(277160,41810,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(277161,41810,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(277162,41810,'_blocks_2_timeline_content_text','field_6177de53d119a'),(277163,41810,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277164,41810,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(277165,41810,'blocks_2_timeline_content_actions','1'),(277166,41810,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(277167,41810,'blocks_2_timeline_content',''),(277168,41810,'_blocks_2_timeline_content','field_6177de53d1197'),(277169,41810,'blocks_2_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(277170,41810,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(277171,41810,'blocks_2_timeline_items_0_text','Click \'add to basket\' and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(277172,41810,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(277173,41810,'blocks_2_timeline_items_1_title','Get Access'),(277174,41810,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(277175,41810,'blocks_2_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(277176,41810,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(277177,41810,'blocks_2_timeline_items_2_title','Complete the course and unlock discount '),(277178,41810,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(277179,41810,'blocks_2_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(277180,41810,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(277181,41810,'blocks_2_timeline_items','3'),(277182,41810,'_blocks_2_timeline_items','field_6177de53d119d'),(277183,41810,'blocks_3_acfe_flexible_toggle',''),(277184,41810,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(277185,41810,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(277186,41810,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(277187,41810,'blocks_3_options_theme','#f5f5f5'),(277188,41810,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(277189,41810,'blocks_3_options_reverse','0'),(277190,41810,'_blocks_3_options_reverse','field_61768049bb8ac'),(277191,41810,'blocks_3_options',''),(277192,41810,'_blocks_3_options','field_617682517c334'),(277193,41810,'blocks_3_split_5050_image',''),(277194,41810,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(277195,41810,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(277196,41810,'_blocks_3_split_5050_video','field_6239f3160848a'),(277197,41810,'blocks_3_split_5050_content_title',''),(277198,41810,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(277199,41810,'blocks_3_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(277200,41810,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(277201,41810,'blocks_3_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(277202,41810,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(277203,41810,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277204,41810,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(277205,41810,'blocks_3_split_5050_content_actions','1'),(277206,41810,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(277207,41810,'blocks_3_split_5050_content',''),(277208,41810,'_blocks_3_split_5050_content','field_61767afceb8ba'),(277209,41811,'hide_hero','0'),(277210,41811,'_hide_hero','field_66a2380fcda39'),(277211,41811,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers.'),(277212,41811,'_hero_title','field_617571fe285e8'),(277213,41811,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(277214,41811,'_hero_text','field_6175723c285e9'),(277215,41811,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277216,41811,'_hero_actions_0_button','field_61757281285eb'),(277217,41811,'hero_actions','1'),(277218,41811,'_hero_actions','field_61757270285ea'),(277219,41811,'hero_style','default'),(277220,41811,'_hero_style','field_62051d9dc5324'),(277221,41811,'_thumbnail_id','40817'),(277222,41811,'__thumbnail_id','field_617570855ddaf'),(277223,41811,'hero_image_pos_x','right'),(277224,41811,'_hero_image_pos_x','field_62ec3d05390bb'),(277225,41811,'hero_image_pos_y','top'),(277226,41811,'_hero_image_pos_y','field_62ec3d05390bc'),(277227,41811,'hero_image_pos',''),(277228,41811,'_hero_image_pos','field_62ec3d05390ba'),(277229,41811,'fft_hide_from_listings','0'),(277230,41811,'_fft_hide_from_listings','field_61f1320446ab2'),(277231,41811,'fft_page_format','default'),(277232,41811,'_fft_page_format','field_61ae213f1f218'),(277233,41811,'fft_hide_nav','0'),(277234,41811,'_fft_hide_nav','field_635bd5e43527c'),(277235,41811,'fft_hide_header_call_to_action','0'),(277236,41811,'_fft_hide_header_call_to_action','field_635bd6723527d'),(277237,41811,'fft_page_sitemap','0'),(277238,41811,'_fft_page_sitemap','field_61af9b34e8181'),(277239,41811,'blocks_0_acfe_flexible_toggle',''),(277240,41811,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(277241,41811,'blocks_0_acfe_flexible_layout_title','Icons'),(277242,41811,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(277243,41811,'blocks_0_options_theme','#b61234'),(277244,41811,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(277245,41811,'blocks_0_options_format','row'),(277246,41811,'_blocks_0_options_format','field_64bfde9a90690'),(277247,41811,'blocks_0_options',''),(277248,41811,'_blocks_0_options','field_64bfdd9b90684'),(277249,41811,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(277250,41811,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(277251,41811,'blocks_0_icon_row_items_0_label','Try before you buy! '),(277252,41811,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(277253,41811,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(277254,41811,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(277255,41811,'blocks_0_icon_row_items_1_icon','build-career.svg'),(277256,41811,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(277257,41811,'blocks_0_icon_row_items_1_label','Advance your skills'),(277258,41811,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(277259,41811,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(277260,41811,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(277261,41811,'blocks_0_icon_row_items_2_icon','diversify.svg'),(277262,41811,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(277263,41811,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(277264,41811,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(277265,41811,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(277266,41811,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(277267,41811,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(277268,41811,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(277269,41811,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(277270,41811,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(277271,41811,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(277272,41811,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(277273,41811,'blocks_0_icon_row_items','4'),(277274,41811,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(277275,41811,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";}'),(277276,41811,'_blocks','field_6176696113096'),(277277,41811,'course_label_text',''),(277278,41811,'_course_label_text','field_61e17babf71fa'),(277279,41811,'course_label',''),(277280,41811,'_course_label','field_61e12f92749a7'),(277281,41811,'course_description',''),(277282,41811,'_course_description','field_617ac5788e5e1'),(277283,41811,'course_key_info',''),(277284,41811,'_course_key_info','field_617ac6ad8e5e2'),(277285,41811,'course_included',''),(277286,41811,'_course_included','field_617ac6f08e5e4'),(277287,41811,'blocks_1_acfe_flexible_toggle',''),(277288,41811,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(277289,41811,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(277290,41811,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(277291,41811,'blocks_1_options_theme','#ffffff'),(277292,41811,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(277293,41811,'blocks_1_options_reverse','0'),(277294,41811,'_blocks_1_options_reverse','field_61768049bb8ac'),(277295,41811,'blocks_1_options',''),(277296,41811,'_blocks_1_options','field_617682517c334'),(277297,41811,'blocks_1_split_5050_image','41504'),(277298,41811,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(277299,41811,'blocks_1_split_5050_video',''),(277300,41811,'_blocks_1_split_5050_video','field_6239f3160848a'),(277301,41811,'blocks_1_split_5050_content_title','Introducing your free 50-minute course'),(277302,41811,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(277303,41811,'blocks_1_split_5050_content_heading','Overview '),(277304,41811,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(277305,41811,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nYou can complete this course fully online in around 50 minutes, and upon completion you\'ll unlock a hidden discount to save on the full diploma.\r\n\r\nUse code \'intro\' at the checkout to get this course <strong>free </strong>(usually £139.00)'),(277306,41811,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(277307,41811,'blocks_1_split_5050_content_actions',''),(277308,41811,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(277309,41811,'blocks_1_split_5050_content',''),(277310,41811,'_blocks_1_split_5050_content','field_61767afceb8ba'),(277311,41811,'blocks_2_acfe_flexible_toggle',''),(277312,41811,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(277313,41811,'blocks_2_acfe_flexible_layout_title','Timeline'),(277314,41811,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(277315,41811,'blocks_2_options_theme','#b61234'),(277316,41811,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(277317,41811,'blocks_2_options',''),(277318,41811,'_blocks_2_options','field_6177de53d1195'),(277319,41811,'blocks_2_timeline_content_title',''),(277320,41811,'_blocks_2_timeline_content_title','field_6177de53d1198'),(277321,41811,'blocks_2_timeline_content_heading','How to enrol on this free 50-minute course '),(277322,41811,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(277323,41811,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(277324,41811,'_blocks_2_timeline_content_text','field_6177de53d119a'),(277325,41811,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277326,41811,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(277327,41811,'blocks_2_timeline_content_actions','1'),(277328,41811,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(277329,41811,'blocks_2_timeline_content',''),(277330,41811,'_blocks_2_timeline_content','field_6177de53d1197'),(277331,41811,'blocks_2_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(277332,41811,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(277333,41811,'blocks_2_timeline_items_0_text','Click \'add to basket\' and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(277334,41811,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(277335,41811,'blocks_2_timeline_items_1_title','Get Access'),(277336,41811,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(277337,41811,'blocks_2_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(277338,41811,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(277339,41811,'blocks_2_timeline_items_2_title','Complete the course and unlock discount '),(277340,41811,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(277341,41811,'blocks_2_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(277342,41811,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(277343,41811,'blocks_2_timeline_items','3'),(277344,41811,'_blocks_2_timeline_items','field_6177de53d119d'),(277345,41811,'blocks_3_acfe_flexible_toggle',''),(277346,41811,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(277347,41811,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(277348,41811,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(277349,41811,'blocks_3_options_theme','#f5f5f5'),(277350,41811,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(277351,41811,'blocks_3_options_reverse','0'),(277352,41811,'_blocks_3_options_reverse','field_61768049bb8ac'),(277353,41811,'blocks_3_options',''),(277354,41811,'_blocks_3_options','field_617682517c334'),(277355,41811,'blocks_3_split_5050_image',''),(277356,41811,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(277357,41811,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(277358,41811,'_blocks_3_split_5050_video','field_6239f3160848a'),(277359,41811,'blocks_3_split_5050_content_title',''),(277360,41811,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(277361,41811,'blocks_3_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(277362,41811,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(277363,41811,'blocks_3_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(277364,41811,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(277365,41811,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277366,41811,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(277367,41811,'blocks_3_split_5050_content_actions','1'),(277368,41811,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(277369,41811,'blocks_3_split_5050_content',''),(277370,41811,'_blocks_3_split_5050_content','field_61767afceb8ba'),(277371,41812,'hide_hero','0'),(277372,41812,'_hide_hero','field_66a2380fcda39'),(277373,41812,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers.'),(277374,41812,'_hero_title','field_617571fe285e8'),(277375,41812,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(277376,41812,'_hero_text','field_6175723c285e9'),(277377,41812,'hero_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277378,41812,'_hero_actions_0_button','field_61757281285eb'),(277379,41812,'hero_actions','1'),(277380,41812,'_hero_actions','field_61757270285ea'),(277381,41812,'hero_style','default'),(277382,41812,'_hero_style','field_62051d9dc5324'),(277383,41812,'_thumbnail_id','41505'),(277384,41812,'__thumbnail_id','field_617570855ddaf'),(277385,41812,'hero_image_pos_x','right'),(277386,41812,'_hero_image_pos_x','field_62ec3d05390bb'),(277387,41812,'hero_image_pos_y','top'),(277388,41812,'_hero_image_pos_y','field_62ec3d05390bc'),(277389,41812,'hero_image_pos',''),(277390,41812,'_hero_image_pos','field_62ec3d05390ba'),(277391,41812,'fft_hide_from_listings','0'),(277392,41812,'_fft_hide_from_listings','field_61f1320446ab2'),(277393,41812,'fft_page_format','default'),(277394,41812,'_fft_page_format','field_61ae213f1f218'),(277395,41812,'fft_hide_nav','0'),(277396,41812,'_fft_hide_nav','field_635bd5e43527c'),(277397,41812,'fft_hide_header_call_to_action','0'),(277398,41812,'_fft_hide_header_call_to_action','field_635bd6723527d'),(277399,41812,'fft_page_sitemap','0'),(277400,41812,'_fft_page_sitemap','field_61af9b34e8181'),(277401,41812,'blocks_0_acfe_flexible_toggle',''),(277402,41812,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(277403,41812,'blocks_0_acfe_flexible_layout_title','Icons'),(277404,41812,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(277405,41812,'blocks_0_options_theme','#b61234'),(277406,41812,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(277407,41812,'blocks_0_options_format','row'),(277408,41812,'_blocks_0_options_format','field_64bfde9a90690'),(277409,41812,'blocks_0_options',''),(277410,41812,'_blocks_0_options','field_64bfdd9b90684'),(277411,41812,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(277412,41812,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(277413,41812,'blocks_0_icon_row_items_0_label','Try before you buy! '),(277414,41812,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(277415,41812,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(277416,41812,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(277417,41812,'blocks_0_icon_row_items_1_icon','build-career.svg'),(277418,41812,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(277419,41812,'blocks_0_icon_row_items_1_label','Advance your skills'),(277420,41812,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(277421,41812,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(277422,41812,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(277423,41812,'blocks_0_icon_row_items_2_icon','diversify.svg'),(277424,41812,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(277425,41812,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(277426,41812,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(277427,41812,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(277428,41812,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(277429,41812,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(277430,41812,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(277431,41812,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(277432,41812,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(277433,41812,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(277434,41812,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(277435,41812,'blocks_0_icon_row_items','4'),(277436,41812,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(277437,41812,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";}'),(277438,41812,'_blocks','field_6176696113096'),(277439,41812,'course_label_text',''),(277440,41812,'_course_label_text','field_61e17babf71fa'),(277441,41812,'course_label',''),(277442,41812,'_course_label','field_61e12f92749a7'),(277443,41812,'course_description',''),(277444,41812,'_course_description','field_617ac5788e5e1'),(277445,41812,'course_key_info',''),(277446,41812,'_course_key_info','field_617ac6ad8e5e2'),(277447,41812,'course_included',''),(277448,41812,'_course_included','field_617ac6f08e5e4'),(277449,41812,'blocks_1_acfe_flexible_toggle',''),(277450,41812,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(277451,41812,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(277452,41812,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(277453,41812,'blocks_1_options_theme','#ffffff'),(277454,41812,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(277455,41812,'blocks_1_options_reverse','0'),(277456,41812,'_blocks_1_options_reverse','field_61768049bb8ac'),(277457,41812,'blocks_1_options',''),(277458,41812,'_blocks_1_options','field_617682517c334'),(277459,41812,'blocks_1_split_5050_image','41504'),(277460,41812,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(277461,41812,'blocks_1_split_5050_video',''),(277462,41812,'_blocks_1_split_5050_video','field_6239f3160848a'),(277463,41812,'blocks_1_split_5050_content_title','Introducing your free 50-minute course'),(277464,41812,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(277465,41812,'blocks_1_split_5050_content_heading','Overview '),(277466,41812,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(277467,41812,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nYou can complete this course fully online in around 50 minutes, and upon completion you\'ll unlock a hidden discount to save on the full diploma.\r\n\r\nUse code \'intro\' at the checkout to get this course <strong>free </strong>(usually £139.00)'),(277468,41812,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(277469,41812,'blocks_1_split_5050_content_actions',''),(277470,41812,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(277471,41812,'blocks_1_split_5050_content',''),(277472,41812,'_blocks_1_split_5050_content','field_61767afceb8ba'),(277473,41812,'blocks_2_acfe_flexible_toggle',''),(277474,41812,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(277475,41812,'blocks_2_acfe_flexible_layout_title','Timeline'),(277476,41812,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(277477,41812,'blocks_2_options_theme','#b61234'),(277478,41812,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(277479,41812,'blocks_2_options',''),(277480,41812,'_blocks_2_options','field_6177de53d1195'),(277481,41812,'blocks_2_timeline_content_title',''),(277482,41812,'_blocks_2_timeline_content_title','field_6177de53d1198'),(277483,41812,'blocks_2_timeline_content_heading','How to enrol on this free 50-minute course '),(277484,41812,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(277485,41812,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(277486,41812,'_blocks_2_timeline_content_text','field_6177de53d119a'),(277487,41812,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277488,41812,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(277489,41812,'blocks_2_timeline_content_actions','1'),(277490,41812,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(277491,41812,'blocks_2_timeline_content',''),(277492,41812,'_blocks_2_timeline_content','field_6177de53d1197'),(277493,41812,'blocks_2_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(277494,41812,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(277495,41812,'blocks_2_timeline_items_0_text','Click \'add to basket\' and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(277496,41812,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(277497,41812,'blocks_2_timeline_items_1_title','Get Access'),(277498,41812,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(277499,41812,'blocks_2_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(277500,41812,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(277501,41812,'blocks_2_timeline_items_2_title','Complete the course and unlock discount '),(277502,41812,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(277503,41812,'blocks_2_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(277504,41812,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(277505,41812,'blocks_2_timeline_items','3'),(277506,41812,'_blocks_2_timeline_items','field_6177de53d119d'),(277507,41812,'blocks_3_acfe_flexible_toggle',''),(277508,41812,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(277509,41812,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(277510,41812,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(277511,41812,'blocks_3_options_theme','#f5f5f5'),(277512,41812,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(277513,41812,'blocks_3_options_reverse','0'),(277514,41812,'_blocks_3_options_reverse','field_61768049bb8ac'),(277515,41812,'blocks_3_options',''),(277516,41812,'_blocks_3_options','field_617682517c334'),(277517,41812,'blocks_3_split_5050_image',''),(277518,41812,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(277519,41812,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(277520,41812,'_blocks_3_split_5050_video','field_6239f3160848a'),(277521,41812,'blocks_3_split_5050_content_title',''),(277522,41812,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(277523,41812,'blocks_3_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(277524,41812,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(277525,41812,'blocks_3_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(277526,41812,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(277527,41812,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277528,41812,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(277529,41812,'blocks_3_split_5050_content_actions','1'),(277530,41812,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(277531,41812,'blocks_3_split_5050_content',''),(277532,41812,'_blocks_3_split_5050_content','field_61767afceb8ba'),(277533,41813,'hide_hero','0'),(277534,41813,'_hide_hero','field_66a2380fcda39'),(277535,41813,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers.'),(277536,41813,'_hero_title','field_617571fe285e8'),(277537,41813,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(277538,41813,'_hero_text','field_6175723c285e9'),(277539,41813,'hero_actions_0_button','a:3:{s:5:\"title\";s:45:\"Add to basket (use code \'intro\' at checkout!)\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277540,41813,'_hero_actions_0_button','field_61757281285eb'),(277541,41813,'hero_actions','1'),(277542,41813,'_hero_actions','field_61757270285ea'),(277543,41813,'hero_style','default'),(277544,41813,'_hero_style','field_62051d9dc5324'),(277545,41813,'_thumbnail_id','41505'),(277546,41813,'__thumbnail_id','field_617570855ddaf'),(277547,41813,'hero_image_pos_x','right'),(277548,41813,'_hero_image_pos_x','field_62ec3d05390bb'),(277549,41813,'hero_image_pos_y','top'),(277550,41813,'_hero_image_pos_y','field_62ec3d05390bc'),(277551,41813,'hero_image_pos',''),(277552,41813,'_hero_image_pos','field_62ec3d05390ba'),(277553,41813,'fft_hide_from_listings','0'),(277554,41813,'_fft_hide_from_listings','field_61f1320446ab2'),(277555,41813,'fft_page_format','default'),(277556,41813,'_fft_page_format','field_61ae213f1f218'),(277557,41813,'fft_hide_nav','0'),(277558,41813,'_fft_hide_nav','field_635bd5e43527c'),(277559,41813,'fft_hide_header_call_to_action','0'),(277560,41813,'_fft_hide_header_call_to_action','field_635bd6723527d'),(277561,41813,'fft_page_sitemap','0'),(277562,41813,'_fft_page_sitemap','field_61af9b34e8181'),(277563,41813,'blocks_0_acfe_flexible_toggle',''),(277564,41813,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(277565,41813,'blocks_0_acfe_flexible_layout_title','Icons'),(277566,41813,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(277567,41813,'blocks_0_options_theme','#b61234'),(277568,41813,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(277569,41813,'blocks_0_options_format','row'),(277570,41813,'_blocks_0_options_format','field_64bfde9a90690'),(277571,41813,'blocks_0_options',''),(277572,41813,'_blocks_0_options','field_64bfdd9b90684'),(277573,41813,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(277574,41813,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(277575,41813,'blocks_0_icon_row_items_0_label','Try before you buy! '),(277576,41813,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(277577,41813,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(277578,41813,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(277579,41813,'blocks_0_icon_row_items_1_icon','build-career.svg'),(277580,41813,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(277581,41813,'blocks_0_icon_row_items_1_label','Advance your skills'),(277582,41813,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(277583,41813,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(277584,41813,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(277585,41813,'blocks_0_icon_row_items_2_icon','diversify.svg'),(277586,41813,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(277587,41813,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(277588,41813,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(277589,41813,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(277590,41813,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(277591,41813,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(277592,41813,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(277593,41813,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(277594,41813,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(277595,41813,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(277596,41813,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(277597,41813,'blocks_0_icon_row_items','4'),(277598,41813,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(277599,41813,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";}'),(277600,41813,'_blocks','field_6176696113096'),(277601,41813,'course_label_text',''),(277602,41813,'_course_label_text','field_61e17babf71fa'),(277603,41813,'course_label',''),(277604,41813,'_course_label','field_61e12f92749a7'),(277605,41813,'course_description',''),(277606,41813,'_course_description','field_617ac5788e5e1'),(277607,41813,'course_key_info',''),(277608,41813,'_course_key_info','field_617ac6ad8e5e2'),(277609,41813,'course_included',''),(277610,41813,'_course_included','field_617ac6f08e5e4'),(277611,41813,'blocks_1_acfe_flexible_toggle',''),(277612,41813,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(277613,41813,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(277614,41813,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(277615,41813,'blocks_1_options_theme','#ffffff'),(277616,41813,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(277617,41813,'blocks_1_options_reverse','0'),(277618,41813,'_blocks_1_options_reverse','field_61768049bb8ac'),(277619,41813,'blocks_1_options',''),(277620,41813,'_blocks_1_options','field_617682517c334'),(277621,41813,'blocks_1_split_5050_image','41504'),(277622,41813,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(277623,41813,'blocks_1_split_5050_video',''),(277624,41813,'_blocks_1_split_5050_video','field_6239f3160848a'),(277625,41813,'blocks_1_split_5050_content_title','Introducing your free 50-minute course'),(277626,41813,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(277627,41813,'blocks_1_split_5050_content_heading','Overview '),(277628,41813,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(277629,41813,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nYou can complete this course fully online in around 50 minutes, and upon completion you\'ll unlock a hidden discount to save on the full diploma.\r\n\r\nUse code \'intro\' at the checkout to get this course <strong>free </strong>(usually £139.00)'),(277630,41813,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(277631,41813,'blocks_1_split_5050_content_actions',''),(277632,41813,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(277633,41813,'blocks_1_split_5050_content',''),(277634,41813,'_blocks_1_split_5050_content','field_61767afceb8ba'),(277635,41813,'blocks_2_acfe_flexible_toggle',''),(277636,41813,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(277637,41813,'blocks_2_acfe_flexible_layout_title','Timeline'),(277638,41813,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(277639,41813,'blocks_2_options_theme','#b61234'),(277640,41813,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(277641,41813,'blocks_2_options',''),(277642,41813,'_blocks_2_options','field_6177de53d1195'),(277643,41813,'blocks_2_timeline_content_title',''),(277644,41813,'_blocks_2_timeline_content_title','field_6177de53d1198'),(277645,41813,'blocks_2_timeline_content_heading','How to enrol on this free 50-minute course '),(277646,41813,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(277647,41813,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(277648,41813,'_blocks_2_timeline_content_text','field_6177de53d119a'),(277649,41813,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277650,41813,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(277651,41813,'blocks_2_timeline_content_actions','1'),(277652,41813,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(277653,41813,'blocks_2_timeline_content',''),(277654,41813,'_blocks_2_timeline_content','field_6177de53d1197'),(277655,41813,'blocks_2_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(277656,41813,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(277657,41813,'blocks_2_timeline_items_0_text','Click \'add to basket\' and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(277658,41813,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(277659,41813,'blocks_2_timeline_items_1_title','Get Access'),(277660,41813,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(277661,41813,'blocks_2_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(277662,41813,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(277663,41813,'blocks_2_timeline_items_2_title','Complete the course and unlock discount '),(277664,41813,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(277665,41813,'blocks_2_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(277666,41813,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(277667,41813,'blocks_2_timeline_items','3'),(277668,41813,'_blocks_2_timeline_items','field_6177de53d119d'),(277669,41813,'blocks_3_acfe_flexible_toggle',''),(277670,41813,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(277671,41813,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(277672,41813,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(277673,41813,'blocks_3_options_theme','#f5f5f5'),(277674,41813,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(277675,41813,'blocks_3_options_reverse','0'),(277676,41813,'_blocks_3_options_reverse','field_61768049bb8ac'),(277677,41813,'blocks_3_options',''),(277678,41813,'_blocks_3_options','field_617682517c334'),(277679,41813,'blocks_3_split_5050_image',''),(277680,41813,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(277681,41813,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(277682,41813,'_blocks_3_split_5050_video','field_6239f3160848a'),(277683,41813,'blocks_3_split_5050_content_title',''),(277684,41813,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(277685,41813,'blocks_3_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(277686,41813,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(277687,41813,'blocks_3_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(277688,41813,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(277689,41813,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277690,41813,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(277691,41813,'blocks_3_split_5050_content_actions','1'),(277692,41813,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(277693,41813,'blocks_3_split_5050_content',''),(277694,41813,'_blocks_3_split_5050_content','field_61767afceb8ba'),(277695,41814,'hide_hero','0'),(277696,41814,'_hide_hero','field_66a2380fcda39'),(277697,41814,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers'),(277698,41814,'_hero_title','field_617571fe285e8'),(277699,41814,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(277700,41814,'_hero_text','field_6175723c285e9'),(277701,41814,'hero_actions_0_button','a:3:{s:5:\"title\";s:45:\"Add to basket (use code \'intro\' at checkout!)\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277702,41814,'_hero_actions_0_button','field_61757281285eb'),(277703,41814,'hero_actions','1'),(277704,41814,'_hero_actions','field_61757270285ea'),(277705,41814,'hero_style','default'),(277706,41814,'_hero_style','field_62051d9dc5324'),(277707,41814,'_thumbnail_id','41505'),(277708,41814,'__thumbnail_id','field_617570855ddaf'),(277709,41814,'hero_image_pos_x','right'),(277710,41814,'_hero_image_pos_x','field_62ec3d05390bb'),(277711,41814,'hero_image_pos_y','top'),(277712,41814,'_hero_image_pos_y','field_62ec3d05390bc'),(277713,41814,'hero_image_pos',''),(277714,41814,'_hero_image_pos','field_62ec3d05390ba'),(277715,41814,'fft_hide_from_listings','0'),(277716,41814,'_fft_hide_from_listings','field_61f1320446ab2'),(277717,41814,'fft_page_format','default'),(277718,41814,'_fft_page_format','field_61ae213f1f218'),(277719,41814,'fft_hide_nav','0'),(277720,41814,'_fft_hide_nav','field_635bd5e43527c'),(277721,41814,'fft_hide_header_call_to_action','0'),(277722,41814,'_fft_hide_header_call_to_action','field_635bd6723527d'),(277723,41814,'fft_page_sitemap','0'),(277724,41814,'_fft_page_sitemap','field_61af9b34e8181'),(277725,41814,'blocks_0_acfe_flexible_toggle',''),(277726,41814,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(277727,41814,'blocks_0_acfe_flexible_layout_title','Icons'),(277728,41814,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(277729,41814,'blocks_0_options_theme','#b61234'),(277730,41814,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(277731,41814,'blocks_0_options_format','row'),(277732,41814,'_blocks_0_options_format','field_64bfde9a90690'),(277733,41814,'blocks_0_options',''),(277734,41814,'_blocks_0_options','field_64bfdd9b90684'),(277735,41814,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(277736,41814,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(277737,41814,'blocks_0_icon_row_items_0_label','Try before you buy! '),(277738,41814,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(277739,41814,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(277740,41814,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(277741,41814,'blocks_0_icon_row_items_1_icon','build-career.svg'),(277742,41814,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(277743,41814,'blocks_0_icon_row_items_1_label','Advance your skills'),(277744,41814,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(277745,41814,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(277746,41814,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(277747,41814,'blocks_0_icon_row_items_2_icon','diversify.svg'),(277748,41814,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(277749,41814,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(277750,41814,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(277751,41814,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(277752,41814,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(277753,41814,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(277754,41814,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(277755,41814,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(277756,41814,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(277757,41814,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(277758,41814,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(277759,41814,'blocks_0_icon_row_items','4'),(277760,41814,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(277761,41814,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";}'),(277762,41814,'_blocks','field_6176696113096'),(277763,41814,'course_label_text',''),(277764,41814,'_course_label_text','field_61e17babf71fa'),(277765,41814,'course_label',''),(277766,41814,'_course_label','field_61e12f92749a7'),(277767,41814,'course_description',''),(277768,41814,'_course_description','field_617ac5788e5e1'),(277769,41814,'course_key_info',''),(277770,41814,'_course_key_info','field_617ac6ad8e5e2'),(277771,41814,'course_included',''),(277772,41814,'_course_included','field_617ac6f08e5e4'),(277773,41814,'blocks_1_acfe_flexible_toggle',''),(277774,41814,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(277775,41814,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(277776,41814,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(277777,41814,'blocks_1_options_theme','#ffffff'),(277778,41814,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(277779,41814,'blocks_1_options_reverse','0'),(277780,41814,'_blocks_1_options_reverse','field_61768049bb8ac'),(277781,41814,'blocks_1_options',''),(277782,41814,'_blocks_1_options','field_617682517c334'),(277783,41814,'blocks_1_split_5050_image','41504'),(277784,41814,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(277785,41814,'blocks_1_split_5050_video',''),(277786,41814,'_blocks_1_split_5050_video','field_6239f3160848a'),(277787,41814,'blocks_1_split_5050_content_title','Introducing your free 50-minute course'),(277788,41814,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(277789,41814,'blocks_1_split_5050_content_heading','Overview '),(277790,41814,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(277791,41814,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nYou can complete this course fully online in around 50 minutes, and upon completion you\'ll unlock a hidden discount to save on the full diploma.\r\n\r\nUse code \'intro\' at the checkout to get this course <strong>free </strong>(usually £139.00)'),(277792,41814,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(277793,41814,'blocks_1_split_5050_content_actions',''),(277794,41814,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(277795,41814,'blocks_1_split_5050_content',''),(277796,41814,'_blocks_1_split_5050_content','field_61767afceb8ba'),(277797,41814,'blocks_2_acfe_flexible_toggle',''),(277798,41814,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(277799,41814,'blocks_2_acfe_flexible_layout_title','Timeline'),(277800,41814,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(277801,41814,'blocks_2_options_theme','#b61234'),(277802,41814,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(277803,41814,'blocks_2_options',''),(277804,41814,'_blocks_2_options','field_6177de53d1195'),(277805,41814,'blocks_2_timeline_content_title',''),(277806,41814,'_blocks_2_timeline_content_title','field_6177de53d1198'),(277807,41814,'blocks_2_timeline_content_heading','How to enrol on this free 50-minute course '),(277808,41814,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(277809,41814,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(277810,41814,'_blocks_2_timeline_content_text','field_6177de53d119a'),(277811,41814,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277812,41814,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(277813,41814,'blocks_2_timeline_content_actions','1'),(277814,41814,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(277815,41814,'blocks_2_timeline_content',''),(277816,41814,'_blocks_2_timeline_content','field_6177de53d1197'),(277817,41814,'blocks_2_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(277818,41814,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(277819,41814,'blocks_2_timeline_items_0_text','Click \'add to basket\' and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(277820,41814,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(277821,41814,'blocks_2_timeline_items_1_title','Get Access'),(277822,41814,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(277823,41814,'blocks_2_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(277824,41814,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(277825,41814,'blocks_2_timeline_items_2_title','Complete the course and unlock discount '),(277826,41814,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(277827,41814,'blocks_2_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(277828,41814,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(277829,41814,'blocks_2_timeline_items','3'),(277830,41814,'_blocks_2_timeline_items','field_6177de53d119d'),(277831,41814,'blocks_3_acfe_flexible_toggle',''),(277832,41814,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(277833,41814,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(277834,41814,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(277835,41814,'blocks_3_options_theme','#f5f5f5'),(277836,41814,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(277837,41814,'blocks_3_options_reverse','0'),(277838,41814,'_blocks_3_options_reverse','field_61768049bb8ac'),(277839,41814,'blocks_3_options',''),(277840,41814,'_blocks_3_options','field_617682517c334'),(277841,41814,'blocks_3_split_5050_image',''),(277842,41814,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(277843,41814,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(277844,41814,'_blocks_3_split_5050_video','field_6239f3160848a'),(277845,41814,'blocks_3_split_5050_content_title',''),(277846,41814,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(277847,41814,'blocks_3_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(277848,41814,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(277849,41814,'blocks_3_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(277850,41814,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(277851,41814,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277852,41814,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(277853,41814,'blocks_3_split_5050_content_actions','1'),(277854,41814,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(277855,41814,'blocks_3_split_5050_content',''),(277856,41814,'_blocks_3_split_5050_content','field_61767afceb8ba'),(277857,41815,'hide_hero','0'),(277858,41815,'_hide_hero','field_66a2380fcda39'),(277859,41815,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers'),(277860,41815,'_hero_title','field_617571fe285e8'),(277861,41815,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(277862,41815,'_hero_text','field_6175723c285e9'),(277863,41815,'hero_actions_0_button','a:3:{s:5:\"title\";s:45:\"Add to basket (use code \'intro\' at checkout!)\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277864,41815,'_hero_actions_0_button','field_61757281285eb'),(277865,41815,'hero_actions','1'),(277866,41815,'_hero_actions','field_61757270285ea'),(277867,41815,'hero_style','default'),(277868,41815,'_hero_style','field_62051d9dc5324'),(277869,41815,'_thumbnail_id','41505'),(277870,41815,'__thumbnail_id','field_617570855ddaf'),(277871,41815,'hero_image_pos_x','right'),(277872,41815,'_hero_image_pos_x','field_62ec3d05390bb'),(277873,41815,'hero_image_pos_y','top'),(277874,41815,'_hero_image_pos_y','field_62ec3d05390bc'),(277875,41815,'hero_image_pos',''),(277876,41815,'_hero_image_pos','field_62ec3d05390ba'),(277877,41815,'fft_hide_from_listings','0'),(277878,41815,'_fft_hide_from_listings','field_61f1320446ab2'),(277879,41815,'fft_page_format','default'),(277880,41815,'_fft_page_format','field_61ae213f1f218'),(277881,41815,'fft_hide_nav','0'),(277882,41815,'_fft_hide_nav','field_635bd5e43527c'),(277883,41815,'fft_hide_header_call_to_action','0'),(277884,41815,'_fft_hide_header_call_to_action','field_635bd6723527d'),(277885,41815,'fft_page_sitemap','0'),(277886,41815,'_fft_page_sitemap','field_61af9b34e8181'),(277887,41815,'blocks_0_acfe_flexible_toggle',''),(277888,41815,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(277889,41815,'blocks_0_acfe_flexible_layout_title','Icons'),(277890,41815,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(277891,41815,'blocks_0_options_theme','#b61234'),(277892,41815,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(277893,41815,'blocks_0_options_format','row'),(277894,41815,'_blocks_0_options_format','field_64bfde9a90690'),(277895,41815,'blocks_0_options',''),(277896,41815,'_blocks_0_options','field_64bfdd9b90684'),(277897,41815,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(277898,41815,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(277899,41815,'blocks_0_icon_row_items_0_label','Try before you buy! '),(277900,41815,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(277901,41815,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(277902,41815,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(277903,41815,'blocks_0_icon_row_items_1_icon','build-career.svg'),(277904,41815,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(277905,41815,'blocks_0_icon_row_items_1_label','Advance your skills'),(277906,41815,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(277907,41815,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(277908,41815,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(277909,41815,'blocks_0_icon_row_items_2_icon','diversify.svg'),(277910,41815,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(277911,41815,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(277912,41815,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(277913,41815,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(277914,41815,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(277915,41815,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(277916,41815,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(277917,41815,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(277918,41815,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(277919,41815,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(277920,41815,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(277921,41815,'blocks_0_icon_row_items','4'),(277922,41815,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(277923,41815,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";}'),(277924,41815,'_blocks','field_6176696113096'),(277925,41815,'course_label_text',''),(277926,41815,'_course_label_text','field_61e17babf71fa'),(277927,41815,'course_label',''),(277928,41815,'_course_label','field_61e12f92749a7'),(277929,41815,'course_description',''),(277930,41815,'_course_description','field_617ac5788e5e1'),(277931,41815,'course_key_info',''),(277932,41815,'_course_key_info','field_617ac6ad8e5e2'),(277933,41815,'course_included',''),(277934,41815,'_course_included','field_617ac6f08e5e4'),(277935,41815,'blocks_1_acfe_flexible_toggle',''),(277936,41815,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(277937,41815,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(277938,41815,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(277939,41815,'blocks_1_options_theme','#ffffff'),(277940,41815,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(277941,41815,'blocks_1_options_reverse','0'),(277942,41815,'_blocks_1_options_reverse','field_61768049bb8ac'),(277943,41815,'blocks_1_options',''),(277944,41815,'_blocks_1_options','field_617682517c334'),(277945,41815,'blocks_1_split_5050_image','41504'),(277946,41815,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(277947,41815,'blocks_1_split_5050_video',''),(277948,41815,'_blocks_1_split_5050_video','field_6239f3160848a'),(277949,41815,'blocks_1_split_5050_content_title','Introducing your free 50-minute course'),(277950,41815,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(277951,41815,'blocks_1_split_5050_content_heading','Overview '),(277952,41815,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(277953,41815,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nYou can complete this course fully online in around 50 minutes, and upon completion you\'ll unlock a hidden discount to save on the full diploma.\r\n\r\nUse code \'intro\' at the checkout to get this course <strong>free </strong>(usually £139.00)'),(277954,41815,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(277955,41815,'blocks_1_split_5050_content_actions',''),(277956,41815,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(277957,41815,'blocks_1_split_5050_content',''),(277958,41815,'_blocks_1_split_5050_content','field_61767afceb8ba'),(277959,41815,'blocks_2_acfe_flexible_toggle',''),(277960,41815,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(277961,41815,'blocks_2_acfe_flexible_layout_title','Timeline'),(277962,41815,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(277963,41815,'blocks_2_options_theme','#b61234'),(277964,41815,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(277965,41815,'blocks_2_options',''),(277966,41815,'_blocks_2_options','field_6177de53d1195'),(277967,41815,'blocks_2_timeline_content_title',''),(277968,41815,'_blocks_2_timeline_content_title','field_6177de53d1198'),(277969,41815,'blocks_2_timeline_content_heading','How to enrol on this free 50-minute course '),(277970,41815,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(277971,41815,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(277972,41815,'_blocks_2_timeline_content_text','field_6177de53d119a'),(277973,41815,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(277974,41815,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(277975,41815,'blocks_2_timeline_content_actions','1'),(277976,41815,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(277977,41815,'blocks_2_timeline_content',''),(277978,41815,'_blocks_2_timeline_content','field_6177de53d1197'),(277979,41815,'blocks_2_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(277980,41815,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(277981,41815,'blocks_2_timeline_items_0_text','Click any of the checkout or add to basket buttons, and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(277982,41815,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(277983,41815,'blocks_2_timeline_items_1_title','Get Access'),(277984,41815,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(277985,41815,'blocks_2_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(277986,41815,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(277987,41815,'blocks_2_timeline_items_2_title','Complete the course and unlock discount '),(277988,41815,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(277989,41815,'blocks_2_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(277990,41815,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(277991,41815,'blocks_2_timeline_items','3'),(277992,41815,'_blocks_2_timeline_items','field_6177de53d119d'),(277993,41815,'blocks_3_acfe_flexible_toggle',''),(277994,41815,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(277995,41815,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(277996,41815,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(277997,41815,'blocks_3_options_theme','#f5f5f5'),(277998,41815,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(277999,41815,'blocks_3_options_reverse','0'),(278000,41815,'_blocks_3_options_reverse','field_61768049bb8ac'),(278001,41815,'blocks_3_options',''),(278002,41815,'_blocks_3_options','field_617682517c334'),(278003,41815,'blocks_3_split_5050_image',''),(278004,41815,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(278005,41815,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(278006,41815,'_blocks_3_split_5050_video','field_6239f3160848a'),(278007,41815,'blocks_3_split_5050_content_title',''),(278008,41815,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(278009,41815,'blocks_3_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(278010,41815,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(278011,41815,'blocks_3_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(278012,41815,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(278013,41815,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(278014,41815,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(278015,41815,'blocks_3_split_5050_content_actions','1'),(278016,41815,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(278017,41815,'blocks_3_split_5050_content',''),(278018,41815,'_blocks_3_split_5050_content','field_61767afceb8ba'),(278025,41816,'hide_hero','0'),(278026,41816,'_hide_hero','field_66a2380fcda39'),(278027,41816,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers'),(278028,41816,'_hero_title','field_617571fe285e8'),(278029,41816,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(278030,41816,'_hero_text','field_6175723c285e9'),(278031,41816,'hero_actions_0_button','a:3:{s:5:\"title\";s:45:\"Add to basket (use code \'intro\' at checkout!)\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(278032,41816,'_hero_actions_0_button','field_61757281285eb'),(278033,41816,'hero_actions','1'),(278034,41816,'_hero_actions','field_61757270285ea'),(278035,41816,'hero_style','default'),(278036,41816,'_hero_style','field_62051d9dc5324'),(278037,41816,'_thumbnail_id','41505'),(278038,41816,'__thumbnail_id','field_617570855ddaf'),(278039,41816,'hero_image_pos_x','right'),(278040,41816,'_hero_image_pos_x','field_62ec3d05390bb'),(278041,41816,'hero_image_pos_y','top'),(278042,41816,'_hero_image_pos_y','field_62ec3d05390bc'),(278043,41816,'hero_image_pos',''),(278044,41816,'_hero_image_pos','field_62ec3d05390ba'),(278045,41816,'fft_hide_from_listings','0'),(278046,41816,'_fft_hide_from_listings','field_61f1320446ab2'),(278047,41816,'fft_page_format','default'),(278048,41816,'_fft_page_format','field_61ae213f1f218'),(278049,41816,'fft_hide_nav','0'),(278050,41816,'_fft_hide_nav','field_635bd5e43527c'),(278051,41816,'fft_hide_header_call_to_action','0'),(278052,41816,'_fft_hide_header_call_to_action','field_635bd6723527d'),(278053,41816,'fft_page_sitemap','0'),(278054,41816,'_fft_page_sitemap','field_61af9b34e8181'),(278055,41816,'blocks_0_acfe_flexible_toggle',''),(278056,41816,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(278057,41816,'blocks_0_acfe_flexible_layout_title','Icons'),(278058,41816,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(278059,41816,'blocks_0_options_theme','#b61234'),(278060,41816,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(278061,41816,'blocks_0_options_format','row'),(278062,41816,'_blocks_0_options_format','field_64bfde9a90690'),(278063,41816,'blocks_0_options',''),(278064,41816,'_blocks_0_options','field_64bfdd9b90684'),(278065,41816,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(278066,41816,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(278067,41816,'blocks_0_icon_row_items_0_label','Try before you buy! '),(278068,41816,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(278069,41816,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(278070,41816,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(278071,41816,'blocks_0_icon_row_items_1_icon','build-career.svg'),(278072,41816,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(278073,41816,'blocks_0_icon_row_items_1_label','Advance your skills'),(278074,41816,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(278075,41816,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(278076,41816,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(278077,41816,'blocks_0_icon_row_items_2_icon','diversify.svg'),(278078,41816,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(278079,41816,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(278080,41816,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(278081,41816,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(278082,41816,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(278083,41816,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(278084,41816,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(278085,41816,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(278086,41816,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(278087,41816,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(278088,41816,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(278089,41816,'blocks_0_icon_row_items','4'),(278090,41816,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(278091,41816,'blocks','a:5:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";}'),(278092,41816,'_blocks','field_6176696113096'),(278093,41816,'course_label_text',''),(278094,41816,'_course_label_text','field_61e17babf71fa'),(278095,41816,'course_label',''),(278096,41816,'_course_label','field_61e12f92749a7'),(278097,41816,'course_description',''),(278098,41816,'_course_description','field_617ac5788e5e1'),(278099,41816,'course_key_info',''),(278100,41816,'_course_key_info','field_617ac6ad8e5e2'),(278101,41816,'course_included',''),(278102,41816,'_course_included','field_617ac6f08e5e4'),(278103,41816,'blocks_1_acfe_flexible_toggle',''),(278104,41816,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(278105,41816,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(278106,41816,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(278107,41816,'blocks_1_options_theme','#ffffff'),(278108,41816,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(278109,41816,'blocks_1_options_reverse','0'),(278110,41816,'_blocks_1_options_reverse','field_61768049bb8ac'),(278111,41816,'blocks_1_options',''),(278112,41816,'_blocks_1_options','field_617682517c334'),(278113,41816,'blocks_1_split_5050_image','41504'),(278114,41816,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(278115,41816,'blocks_1_split_5050_video',''),(278116,41816,'_blocks_1_split_5050_video','field_6239f3160848a'),(278117,41816,'blocks_1_split_5050_content_title','Introducing your free 50-minute course'),(278118,41816,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(278119,41816,'blocks_1_split_5050_content_heading','Overview '),(278120,41816,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(278121,41816,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nYou can complete this course fully online in around 50 minutes, and upon completion you\'ll unlock a hidden discount to save on the full diploma.\r\n\r\nUse code \'intro\' at the checkout to get this course <strong>free </strong>(usually £139.00)'),(278122,41816,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(278123,41816,'blocks_1_split_5050_content_actions',''),(278124,41816,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(278125,41816,'blocks_1_split_5050_content',''),(278126,41816,'_blocks_1_split_5050_content','field_61767afceb8ba'),(278127,41816,'blocks_2_acfe_flexible_toggle',''),(278128,41816,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(278129,41816,'blocks_2_acfe_flexible_layout_title','Timeline'),(278130,41816,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(278131,41816,'blocks_2_options_theme','#b61234'),(278132,41816,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(278133,41816,'blocks_2_options',''),(278134,41816,'_blocks_2_options','field_6177de53d1195'),(278135,41816,'blocks_2_timeline_content_title',''),(278136,41816,'_blocks_2_timeline_content_title','field_6177de53d1198'),(278137,41816,'blocks_2_timeline_content_heading','How to enrol on this free 50-minute course '),(278138,41816,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(278139,41816,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(278140,41816,'_blocks_2_timeline_content_text','field_6177de53d119a'),(278141,41816,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(278142,41816,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(278143,41816,'blocks_2_timeline_content_actions','1'),(278144,41816,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(278145,41816,'blocks_2_timeline_content',''),(278146,41816,'_blocks_2_timeline_content','field_6177de53d1197'),(278147,41816,'blocks_2_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(278148,41816,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(278149,41816,'blocks_2_timeline_items_0_text','Click any of the checkout or add to basket buttons, and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(278150,41816,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(278151,41816,'blocks_2_timeline_items_1_title','Get Access'),(278152,41816,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(278153,41816,'blocks_2_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(278154,41816,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(278155,41816,'blocks_2_timeline_items_2_title','Complete the course and unlock discount '),(278156,41816,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(278157,41816,'blocks_2_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(278158,41816,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(278159,41816,'blocks_2_timeline_items','3'),(278160,41816,'_blocks_2_timeline_items','field_6177de53d119d'),(278161,41816,'blocks_3_acfe_flexible_toggle',''),(278162,41816,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(278163,41816,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(278164,41816,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(278165,41816,'blocks_3_options_theme','#f5f5f5'),(278166,41816,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(278167,41816,'blocks_3_options_reverse','0'),(278168,41816,'_blocks_3_options_reverse','field_61768049bb8ac'),(278169,41816,'blocks_3_options',''),(278170,41816,'_blocks_3_options','field_617682517c334'),(278171,41816,'blocks_3_split_5050_image',''),(278172,41816,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(278173,41816,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(278174,41816,'_blocks_3_split_5050_video','field_6239f3160848a'),(278175,41816,'blocks_3_split_5050_content_title',''),(278176,41816,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(278177,41816,'blocks_3_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(278178,41816,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(278179,41816,'blocks_3_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(278180,41816,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(278181,41816,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(278182,41816,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(278183,41816,'blocks_3_split_5050_content_actions','1'),(278184,41816,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(278185,41816,'blocks_3_split_5050_content',''),(278186,41816,'_blocks_3_split_5050_content','field_61767afceb8ba'),(278187,41816,'blocks_4_acfe_flexible_toggle',''),(278188,41816,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(278189,41816,'blocks_4_acfe_flexible_layout_title','Template'),(278190,41816,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(278191,41816,'blocks_4_template','39073'),(278192,41816,'_blocks_4_template','field_617bdd570fe01'),(278193,41818,'hide_hero','0'),(278194,41818,'_hide_hero','field_66a2380fcda39'),(278195,41818,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers'),(278196,41818,'_hero_title','field_617571fe285e8'),(278197,41818,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(278198,41818,'_hero_text','field_6175723c285e9'),(278199,41818,'hero_actions_0_button','a:3:{s:5:\"title\";s:45:\"Add to basket (use code \'intro\' at checkout!)\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(278200,41818,'_hero_actions_0_button','field_61757281285eb'),(278201,41818,'hero_actions','1'),(278202,41818,'_hero_actions','field_61757270285ea'),(278203,41818,'hero_style','default'),(278204,41818,'_hero_style','field_62051d9dc5324'),(278205,41818,'_thumbnail_id','41505'),(278206,41818,'__thumbnail_id','field_617570855ddaf'),(278207,41818,'hero_image_pos_x','right'),(278208,41818,'_hero_image_pos_x','field_62ec3d05390bb'),(278209,41818,'hero_image_pos_y','top'),(278210,41818,'_hero_image_pos_y','field_62ec3d05390bc'),(278211,41818,'hero_image_pos',''),(278212,41818,'_hero_image_pos','field_62ec3d05390ba'),(278213,41818,'fft_hide_from_listings','0'),(278214,41818,'_fft_hide_from_listings','field_61f1320446ab2'),(278215,41818,'fft_page_format','default'),(278216,41818,'_fft_page_format','field_61ae213f1f218'),(278217,41818,'fft_hide_nav','0'),(278218,41818,'_fft_hide_nav','field_635bd5e43527c'),(278219,41818,'fft_hide_header_call_to_action','0'),(278220,41818,'_fft_hide_header_call_to_action','field_635bd6723527d'),(278221,41818,'fft_page_sitemap','0'),(278222,41818,'_fft_page_sitemap','field_61af9b34e8181'),(278223,41818,'blocks_0_acfe_flexible_toggle',''),(278224,41818,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(278225,41818,'blocks_0_acfe_flexible_layout_title','Icons'),(278226,41818,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(278227,41818,'blocks_0_options_theme','#b61234'),(278228,41818,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(278229,41818,'blocks_0_options_format','row'),(278230,41818,'_blocks_0_options_format','field_64bfde9a90690'),(278231,41818,'blocks_0_options',''),(278232,41818,'_blocks_0_options','field_64bfdd9b90684'),(278233,41818,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(278234,41818,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(278235,41818,'blocks_0_icon_row_items_0_label','Try before you buy! '),(278236,41818,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(278237,41818,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(278238,41818,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(278239,41818,'blocks_0_icon_row_items_1_icon','build-career.svg'),(278240,41818,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(278241,41818,'blocks_0_icon_row_items_1_label','Advance your skills'),(278242,41818,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(278243,41818,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(278244,41818,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(278245,41818,'blocks_0_icon_row_items_2_icon','diversify.svg'),(278246,41818,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(278247,41818,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(278248,41818,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(278249,41818,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(278250,41818,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(278251,41818,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(278252,41818,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(278253,41818,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(278254,41818,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(278255,41818,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(278256,41818,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(278257,41818,'blocks_0_icon_row_items','4'),(278258,41818,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(278259,41818,'blocks','a:5:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";i:4;s:8:\"template\";}'),(278260,41818,'_blocks','field_6176696113096'),(278261,41818,'course_label_text',''),(278262,41818,'_course_label_text','field_61e17babf71fa'),(278263,41818,'course_label',''),(278264,41818,'_course_label','field_61e12f92749a7'),(278265,41818,'course_description',''),(278266,41818,'_course_description','field_617ac5788e5e1'),(278267,41818,'course_key_info',''),(278268,41818,'_course_key_info','field_617ac6ad8e5e2'),(278269,41818,'course_included',''),(278270,41818,'_course_included','field_617ac6f08e5e4'),(278271,41818,'blocks_1_acfe_flexible_toggle',''),(278272,41818,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(278273,41818,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(278274,41818,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(278275,41818,'blocks_1_options_theme','#ffffff'),(278276,41818,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(278277,41818,'blocks_1_options_reverse','0'),(278278,41818,'_blocks_1_options_reverse','field_61768049bb8ac'),(278279,41818,'blocks_1_options',''),(278280,41818,'_blocks_1_options','field_617682517c334'),(278281,41818,'blocks_1_split_5050_image','41504'),(278282,41818,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(278283,41818,'blocks_1_split_5050_video',''),(278284,41818,'_blocks_1_split_5050_video','field_6239f3160848a'),(278285,41818,'blocks_1_split_5050_content_title','Introducing your free 50-minute course'),(278286,41818,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(278287,41818,'blocks_1_split_5050_content_heading','Overview '),(278288,41818,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(278289,41818,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nYou can complete this course fully online in around 50 minutes, and upon completion you\'ll unlock a hidden discount to save on the full diploma.\r\n\r\nUse code \'intro\' at the checkout to get this course <strong>free </strong>(usually £139.00)'),(278290,41818,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(278291,41818,'blocks_1_split_5050_content_actions',''),(278292,41818,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(278293,41818,'blocks_1_split_5050_content',''),(278294,41818,'_blocks_1_split_5050_content','field_61767afceb8ba'),(278295,41818,'blocks_2_acfe_flexible_toggle',''),(278296,41818,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(278297,41818,'blocks_2_acfe_flexible_layout_title','Timeline'),(278298,41818,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(278299,41818,'blocks_2_options_theme','#b61234'),(278300,41818,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(278301,41818,'blocks_2_options',''),(278302,41818,'_blocks_2_options','field_6177de53d1195'),(278303,41818,'blocks_2_timeline_content_title',''),(278304,41818,'_blocks_2_timeline_content_title','field_6177de53d1198'),(278305,41818,'blocks_2_timeline_content_heading','How to enrol on this free 50-minute course '),(278306,41818,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(278307,41818,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(278308,41818,'_blocks_2_timeline_content_text','field_6177de53d119a'),(278309,41818,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(278310,41818,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(278311,41818,'blocks_2_timeline_content_actions','1'),(278312,41818,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(278313,41818,'blocks_2_timeline_content',''),(278314,41818,'_blocks_2_timeline_content','field_6177de53d1197'),(278315,41818,'blocks_2_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(278316,41818,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(278317,41818,'blocks_2_timeline_items_0_text','Click any of the checkout or add to basket buttons, and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(278318,41818,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(278319,41818,'blocks_2_timeline_items_1_title','Get Access'),(278320,41818,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(278321,41818,'blocks_2_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(278322,41818,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(278323,41818,'blocks_2_timeline_items_2_title','Complete the course and unlock discount '),(278324,41818,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(278325,41818,'blocks_2_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(278326,41818,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(278327,41818,'blocks_2_timeline_items','3'),(278328,41818,'_blocks_2_timeline_items','field_6177de53d119d'),(278329,41818,'blocks_3_acfe_flexible_toggle',''),(278330,41818,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(278331,41818,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(278332,41818,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(278333,41818,'blocks_3_options_theme','#f5f5f5'),(278334,41818,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(278335,41818,'blocks_3_options_reverse','0'),(278336,41818,'_blocks_3_options_reverse','field_61768049bb8ac'),(278337,41818,'blocks_3_options',''),(278338,41818,'_blocks_3_options','field_617682517c334'),(278339,41818,'blocks_3_split_5050_image',''),(278340,41818,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(278341,41818,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(278342,41818,'_blocks_3_split_5050_video','field_6239f3160848a'),(278343,41818,'blocks_3_split_5050_content_title',''),(278344,41818,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(278345,41818,'blocks_3_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(278346,41818,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(278347,41818,'blocks_3_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(278348,41818,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(278349,41818,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(278350,41818,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(278351,41818,'blocks_3_split_5050_content_actions','1'),(278352,41818,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(278353,41818,'blocks_3_split_5050_content',''),(278354,41818,'_blocks_3_split_5050_content','field_61767afceb8ba'),(278355,41818,'blocks_4_acfe_flexible_toggle',''),(278356,41818,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(278357,41818,'blocks_4_acfe_flexible_layout_title','Template'),(278358,41818,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(278359,41818,'blocks_4_template','40987'),(278360,41818,'_blocks_4_template','field_617bdd570fe01'),(278361,41819,'hide_hero','0'),(278362,41819,'_hide_hero','field_66a2380fcda39'),(278363,41819,'hero_title','Introduction to Intrinsic Biomechanics for Personal Trainers'),(278364,41819,'_hero_title','field_617571fe285e8'),(278365,41819,'hero_text','Discover more about elevating your skillset and career with our free online Intro to Biomechanics Education Course. Use code \'intro\' at checkout to get the course for free!'),(278366,41819,'_hero_text','field_6175723c285e9'),(278367,41819,'hero_actions_0_button','a:3:{s:5:\"title\";s:45:\"Add to basket (use code \'intro\' at checkout!)\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(278368,41819,'_hero_actions_0_button','field_61757281285eb'),(278369,41819,'hero_actions','1'),(278370,41819,'_hero_actions','field_61757270285ea'),(278371,41819,'hero_style','default'),(278372,41819,'_hero_style','field_62051d9dc5324'),(278373,41819,'_thumbnail_id','41505'),(278374,41819,'__thumbnail_id','field_617570855ddaf'),(278375,41819,'hero_image_pos_x','right'),(278376,41819,'_hero_image_pos_x','field_62ec3d05390bb'),(278377,41819,'hero_image_pos_y','top'),(278378,41819,'_hero_image_pos_y','field_62ec3d05390bc'),(278379,41819,'hero_image_pos',''),(278380,41819,'_hero_image_pos','field_62ec3d05390ba'),(278381,41819,'fft_hide_from_listings','0'),(278382,41819,'_fft_hide_from_listings','field_61f1320446ab2'),(278383,41819,'fft_page_format','default'),(278384,41819,'_fft_page_format','field_61ae213f1f218'),(278385,41819,'fft_hide_nav','0'),(278386,41819,'_fft_hide_nav','field_635bd5e43527c'),(278387,41819,'fft_hide_header_call_to_action','0'),(278388,41819,'_fft_hide_header_call_to_action','field_635bd6723527d'),(278389,41819,'fft_page_sitemap','0'),(278390,41819,'_fft_page_sitemap','field_61af9b34e8181'),(278391,41819,'blocks_0_acfe_flexible_toggle',''),(278392,41819,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(278393,41819,'blocks_0_acfe_flexible_layout_title','Icons'),(278394,41819,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(278395,41819,'blocks_0_options_theme','#b61234'),(278396,41819,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(278397,41819,'blocks_0_options_format','row'),(278398,41819,'_blocks_0_options_format','field_64bfde9a90690'),(278399,41819,'blocks_0_options',''),(278400,41819,'_blocks_0_options','field_64bfdd9b90684'),(278401,41819,'blocks_0_icon_row_items_0_icon','benchmark.svg'),(278402,41819,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(278403,41819,'blocks_0_icon_row_items_0_label','Try before you buy! '),(278404,41819,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(278405,41819,'blocks_0_icon_row_items_0_text','Experience Biomechanics Education training at no cost and see how it complements your PT or coaching practice'),(278406,41819,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(278407,41819,'blocks_0_icon_row_items_1_icon','build-career.svg'),(278408,41819,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(278409,41819,'blocks_0_icon_row_items_1_label','Advance your skills'),(278410,41819,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(278411,41819,'blocks_0_icon_row_items_1_text','Discover how Biomechanics Education can grow your client base and allow you to charge more for your services '),(278412,41819,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(278413,41819,'blocks_0_icon_row_items_2_icon','diversify.svg'),(278414,41819,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(278415,41819,'blocks_0_icon_row_items_2_label','Unlock your career potential '),(278416,41819,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(278417,41819,'blocks_0_icon_row_items_2_text','Explore the doors a Diploma in Biomechanics Coaching can open in the health and exercise industry'),(278418,41819,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(278419,41819,'blocks_0_icon_row_items_3_icon','in-person-and-online-1.svg'),(278420,41819,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(278421,41819,'blocks_0_icon_row_items_3_label','Complete this free intro course in just 50 minutes '),(278422,41819,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(278423,41819,'blocks_0_icon_row_items_3_text','Access a focused, information-rich online session designed for busy professionals'),(278424,41819,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(278425,41819,'blocks_0_icon_row_items','4'),(278426,41819,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(278427,41819,'blocks','a:4:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:13:\"step_timeline\";i:3;s:10:\"split_5050\";}'),(278428,41819,'_blocks','field_6176696113096'),(278429,41819,'course_label_text',''),(278430,41819,'_course_label_text','field_61e17babf71fa'),(278431,41819,'course_label',''),(278432,41819,'_course_label','field_61e12f92749a7'),(278433,41819,'course_description',''),(278434,41819,'_course_description','field_617ac5788e5e1'),(278435,41819,'course_key_info',''),(278436,41819,'_course_key_info','field_617ac6ad8e5e2'),(278437,41819,'course_included',''),(278438,41819,'_course_included','field_617ac6f08e5e4'),(278439,41819,'blocks_1_acfe_flexible_toggle',''),(278440,41819,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(278441,41819,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(278442,41819,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(278443,41819,'blocks_1_options_theme','#ffffff'),(278444,41819,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(278445,41819,'blocks_1_options_reverse','0'),(278446,41819,'_blocks_1_options_reverse','field_61768049bb8ac'),(278447,41819,'blocks_1_options',''),(278448,41819,'_blocks_1_options','field_617682517c334'),(278449,41819,'blocks_1_split_5050_image','41504'),(278450,41819,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(278451,41819,'blocks_1_split_5050_video',''),(278452,41819,'_blocks_1_split_5050_video','field_6239f3160848a'),(278453,41819,'blocks_1_split_5050_content_title','Introducing your free 50-minute course'),(278454,41819,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(278455,41819,'blocks_1_split_5050_content_heading','Overview '),(278456,41819,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(278457,41819,'blocks_1_split_5050_content_text','Discover how mastering intrinsic biomechanics can enhance your programming and coaching, making you a sought-after expert in the field. This will give you the opportunity to gain pioneering skills and differentiate yourself in the market.\r\n\r\nYou can complete this course fully online in around 50 minutes, and upon completion you\'ll unlock a hidden discount to save on the full diploma.\r\n\r\nUse code \'intro\' at the checkout to get this course <strong>free </strong>(usually £139.00)'),(278458,41819,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(278459,41819,'blocks_1_split_5050_content_actions',''),(278460,41819,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(278461,41819,'blocks_1_split_5050_content',''),(278462,41819,'_blocks_1_split_5050_content','field_61767afceb8ba'),(278463,41819,'blocks_2_acfe_flexible_toggle',''),(278464,41819,'_blocks_2_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(278465,41819,'blocks_2_acfe_flexible_layout_title','Timeline'),(278466,41819,'_blocks_2_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(278467,41819,'blocks_2_options_theme','#b61234'),(278468,41819,'_blocks_2_options_theme','field_6177de53d1196_field_6176830e2ad17'),(278469,41819,'blocks_2_options',''),(278470,41819,'_blocks_2_options','field_6177de53d1195'),(278471,41819,'blocks_2_timeline_content_title',''),(278472,41819,'_blocks_2_timeline_content_title','field_6177de53d1198'),(278473,41819,'blocks_2_timeline_content_heading','How to enrol on this free 50-minute course '),(278474,41819,'_blocks_2_timeline_content_heading','field_6177de53d1199'),(278475,41819,'blocks_2_timeline_content_text','Enrolling is as easy as 1, 2, 3! Simply follow the steps below to get instant access to our online learning platform.\r\n\r\nDon’t forget to use code <strong>INTRO</strong> at checkout to access the course for free!'),(278476,41819,'_blocks_2_timeline_content_text','field_6177de53d119a'),(278477,41819,'blocks_2_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(278478,41819,'_blocks_2_timeline_content_actions_0_button','field_6177de53d119c'),(278479,41819,'blocks_2_timeline_content_actions','1'),(278480,41819,'_blocks_2_timeline_content_actions','field_6177de53d119b'),(278481,41819,'blocks_2_timeline_content',''),(278482,41819,'_blocks_2_timeline_content','field_6177de53d1197'),(278483,41819,'blocks_2_timeline_items_0_title','Add the Intro to Biomechanics Education course to your basket and head to checkout '),(278484,41819,'_blocks_2_timeline_items_0_title','field_6177de53d119f'),(278485,41819,'blocks_2_timeline_items_0_text','Click any of the checkout or add to basket buttons, and head to the checkout - make sure to add \'intro\' to the promo code box to receive this course for free - enter your details and complete the checkout process.'),(278486,41819,'_blocks_2_timeline_items_0_text','field_6177de53d11a0'),(278487,41819,'blocks_2_timeline_items_1_title','Get Access'),(278488,41819,'_blocks_2_timeline_items_1_title','field_6177de53d119f'),(278489,41819,'blocks_2_timeline_items_1_text','Once you\'ve successfully checked out you will receive an email with your instant access link, so you can get learning. '),(278490,41819,'_blocks_2_timeline_items_1_text','field_6177de53d11a0'),(278491,41819,'blocks_2_timeline_items_2_title','Complete the course and unlock discount '),(278492,41819,'_blocks_2_timeline_items_2_title','field_6177de53d119f'),(278493,41819,'blocks_2_timeline_items_2_text','Once you have completed this free intro course, you will unlock a hidden discount so you can save on the full diploma, if you\'re ready to take your skills to the next level. '),(278494,41819,'_blocks_2_timeline_items_2_text','field_6177de53d11a0'),(278495,41819,'blocks_2_timeline_items','3'),(278496,41819,'_blocks_2_timeline_items','field_6177de53d119d'),(278497,41819,'blocks_3_acfe_flexible_toggle',''),(278498,41819,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(278499,41819,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(278500,41819,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(278501,41819,'blocks_3_options_theme','#f5f5f5'),(278502,41819,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(278503,41819,'blocks_3_options_reverse','0'),(278504,41819,'_blocks_3_options_reverse','field_61768049bb8ac'),(278505,41819,'blocks_3_options',''),(278506,41819,'_blocks_3_options','field_617682517c334'),(278507,41819,'blocks_3_split_5050_image',''),(278508,41819,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(278509,41819,'blocks_3_split_5050_video','https://www.youtube.com/watch?v=9V5OgVeLLKA&embeds_referring_euri=https%3A%2F%2Fwww.futurefit.co.uk%2F'),(278510,41819,'_blocks_3_split_5050_video','field_6239f3160848a'),(278511,41819,'blocks_3_split_5050_content_title',''),(278512,41819,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(278513,41819,'blocks_3_split_5050_content_heading','Why is Biomechanics Education for you, as a Personal Trainer? '),(278514,41819,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(278515,41819,'blocks_3_split_5050_content_text','“You cannot solve the problems of today, with the thinking that created them”\r\n\r\nA Diploma in Biomechanics Coaching teaches you to think outside the box and challenge current thinking about movement, analysis, and client potential. This Introduction Course will give you a taste of the full diploma, but if you’re looking to know why the diploma was created, listen to Managing Director Rachel Frances Thomson talk through the great potential to your career that a Diploma in Biomechanics Coaching creates.'),(278516,41819,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(278517,41819,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:31:\"Checkout free with code \'intro\'\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(278518,41819,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(278519,41819,'blocks_3_split_5050_content_actions','1'),(278520,41819,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(278521,41819,'blocks_3_split_5050_content',''),(278522,41819,'_blocks_3_split_5050_content','field_61767afceb8ba'),(278523,40264,'_fft_show','1'),(278524,40264,'_fft_plan',NULL),(278525,41893,'hide_hero','0'),(278526,41893,'_hide_hero','field_66a2380fcda39'),(278527,41893,'hero_title','Biomechanics and Personal Training'),(278528,41893,'_hero_title','field_617571fe285e8'),(278529,41893,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(278530,41893,'_hero_text','field_6175723c285e9'),(278531,41893,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(278532,41893,'_hero_actions_0_button','field_61757281285eb'),(278533,41893,'hero_actions','1'),(278534,41893,'_hero_actions','field_61757270285ea'),(278535,41893,'hero_style','default'),(278536,41893,'_hero_style','field_62051d9dc5324'),(278537,41893,'_thumbnail_id','39215'),(278538,41893,'__thumbnail_id','field_617570855ddaf'),(278539,41893,'hero_image_pos_x','right'),(278540,41893,'_hero_image_pos_x','field_62ec3d05390bb'),(278541,41893,'hero_image_pos_y','top'),(278542,41893,'_hero_image_pos_y','field_62ec3d05390bc'),(278543,41893,'hero_image_pos',''),(278544,41893,'_hero_image_pos','field_62ec3d05390ba'),(278545,41893,'fft_hide_from_listings','0'),(278546,41893,'_fft_hide_from_listings','field_61f1320446ab2'),(278547,41893,'fft_page_format','default'),(278548,41893,'_fft_page_format','field_61ae213f1f218'),(278549,41893,'fft_hide_nav','0'),(278550,41893,'_fft_hide_nav','field_635bd5e43527c'),(278551,41893,'fft_hide_header_call_to_action','0'),(278552,41893,'_fft_hide_header_call_to_action','field_635bd6723527d'),(278553,41893,'fft_page_sitemap','0'),(278554,41893,'_fft_page_sitemap','field_61af9b34e8181'),(278555,41893,'blocks_0_acfe_flexible_toggle',''),(278556,41893,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(278557,41893,'blocks_0_acfe_flexible_layout_title','Template'),(278558,41893,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(278559,41893,'blocks_0_template','39087'),(278560,41893,'_blocks_0_template','field_617bdd570fe01'),(278561,41893,'blocks_1_acfe_flexible_toggle',''),(278562,41893,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(278563,41893,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(278564,41893,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(278565,41893,'blocks_1_options_theme','#ffffff'),(278566,41893,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(278567,41893,'blocks_1_options_reverse','0'),(278568,41893,'_blocks_1_options_reverse','field_61768049bb8ac'),(278569,41893,'blocks_1_options',''),(278570,41893,'_blocks_1_options','field_617682517c334'),(278571,41893,'blocks_1_split_5050_image','39220'),(278572,41893,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(278573,41893,'blocks_1_split_5050_video',''),(278574,41893,'_blocks_1_split_5050_video','field_6239f3160848a'),(278575,41893,'blocks_1_split_5050_content_title',''),(278576,41893,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(278577,41893,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(278578,41893,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(278579,41893,'blocks_1_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(278580,41893,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(278581,41893,'blocks_1_split_5050_content_actions',''),(278582,41893,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(278583,41893,'blocks_1_split_5050_content',''),(278584,41893,'_blocks_1_split_5050_content','field_61767afceb8ba'),(278585,41893,'blocks_2_acfe_flexible_toggle',''),(278586,41893,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(278587,41893,'blocks_2_acfe_flexible_layout_title','Form'),(278588,41893,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(278589,41893,'blocks_2_row_content_format','standard'),(278590,41893,'_blocks_2_row_content_format','field_6481ead962881'),(278591,41893,'blocks_2_row_content_title',''),(278592,41893,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(278593,41893,'blocks_2_row_content_heading','Enquire Today'),(278594,41893,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(278595,41893,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(278596,41893,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(278597,41893,'blocks_2_row_content_actions',''),(278598,41893,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(278599,41893,'blocks_2_row_content',''),(278600,41893,'_blocks_2_row_content','field_61a0f5f5b3db0'),(278601,41893,'blocks_2_row_form','40394'),(278602,41893,'_blocks_2_row_form','field_61a4ff2c0b08e'),(278603,41893,'blocks_2_row_form_button_label',''),(278604,41893,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(278605,41893,'blocks_3_acfe_flexible_toggle',''),(278606,41893,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(278607,41893,'blocks_3_acfe_flexible_layout_title','Video'),(278608,41893,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(278609,41893,'blocks_3_size','large'),(278610,41893,'_blocks_3_size','field_6487038f297c1'),(278611,41893,'blocks_3_row_content_title',''),(278612,41893,'_blocks_3_row_content_title','field_64870132a865d'),(278613,41893,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(278614,41893,'_blocks_3_row_content_heading','field_64870142a865e'),(278615,41893,'blocks_3_row_content_text',''),(278616,41893,'_blocks_3_row_content_text','field_64870148a865f'),(278617,41893,'blocks_3_row_content',''),(278618,41893,'_blocks_3_row_content','field_6487008ba865c'),(278619,41893,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(278620,41893,'_blocks_3_video_src','field_6193c4a98ec07'),(278621,41893,'blocks_3_video_thumbnail','39186'),(278622,41893,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(278623,41893,'blocks_4_acfe_flexible_toggle',''),(278624,41893,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(278625,41893,'blocks_4_acfe_flexible_layout_title','Steps'),(278626,41893,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(278627,41893,'blocks_4_row_content_title',''),(278628,41893,'_blocks_4_row_content_title','field_64888cd1e26e0'),(278629,41893,'blocks_4_row_content_heading','Benefits of training with us'),(278630,41893,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(278631,41893,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(278632,41893,'_blocks_4_row_content_text','field_64888ce2e26e2'),(278633,41893,'blocks_4_row_content_actions',''),(278634,41893,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(278635,41893,'blocks_4_row_content',''),(278636,41893,'_blocks_4_row_content','field_64888cb0e26df'),(278637,41893,'blocks_4_steps_0_icon','progression.svg'),(278638,41893,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(278639,41893,'blocks_4_steps_0_title','Earning Potential'),(278640,41893,'_blocks_4_steps_0_title','field_64888d94e26e7'),(278641,41893,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(278642,41893,'_blocks_4_steps_0_text','field_64888d99e26e8'),(278643,41893,'blocks_4_steps_1_icon','support.svg'),(278644,41893,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(278645,41893,'blocks_4_steps_1_title','Lifetime Learning Promise'),(278646,41893,'_blocks_4_steps_1_title','field_64888d94e26e7'),(278647,41893,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(278648,41893,'_blocks_4_steps_1_text','field_64888d99e26e8'),(278649,41893,'blocks_4_steps_2_icon','qualification.svg'),(278650,41893,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(278651,41893,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(278652,41893,'_blocks_4_steps_2_title','field_64888d94e26e7'),(278653,41893,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(278654,41893,'_blocks_4_steps_2_text','field_64888d99e26e8'),(278655,41893,'blocks_4_steps_3_icon','leaders.svg'),(278656,41893,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(278657,41893,'blocks_4_steps_3_title','Stand Out From the Crowd'),(278658,41893,'_blocks_4_steps_3_title','field_64888d94e26e7'),(278659,41893,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(278660,41893,'_blocks_4_steps_3_text','field_64888d99e26e8'),(278661,41893,'blocks_4_steps','4'),(278662,41893,'_blocks_4_steps','field_64888d44e26e5'),(278663,41893,'blocks_5_acfe_flexible_toggle',''),(278664,41893,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(278665,41893,'blocks_5_acfe_flexible_layout_title','Tabs'),(278666,41893,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(278667,41893,'blocks_5_options_theme','#ffffff'),(278668,41893,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(278669,41893,'blocks_5_options',''),(278670,41893,'_blocks_5_options','field_6177cfcd8140f'),(278671,41893,'blocks_5_tabs_0_tab_label','What will I learn?'),(278672,41893,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(278673,41893,'blocks_5_tabs_0_tab_content_title',''),(278674,41893,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(278675,41893,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(278676,41893,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(278677,41893,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(278678,41893,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(278679,41893,'blocks_5_tabs_0_tab_content_actions',''),(278680,41893,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(278681,41893,'blocks_5_tabs_0_tab_content',''),(278682,41893,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(278683,41893,'blocks_5_tabs_0_tab_image','39076'),(278684,41893,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(278685,41893,'blocks_5_tabs_1_tab_label','What do I need?'),(278686,41893,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(278687,41893,'blocks_5_tabs_1_tab_content_title',''),(278688,41893,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(278689,41893,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(278690,41893,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(278691,41893,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(278692,41893,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(278693,41893,'blocks_5_tabs_1_tab_content_actions',''),(278694,41893,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(278695,41893,'blocks_5_tabs_1_tab_content',''),(278696,41893,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(278697,41893,'blocks_5_tabs_1_tab_image','39223'),(278698,41893,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(278699,41893,'blocks_5_tabs_2_tab_label','Where can I learn?'),(278700,41893,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(278701,41893,'blocks_5_tabs_2_tab_content_title',''),(278702,41893,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(278703,41893,'blocks_5_tabs_2_tab_content_heading','Locations'),(278704,41893,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(278705,41893,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(278706,41893,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(278707,41893,'blocks_5_tabs_2_tab_content_actions',''),(278708,41893,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(278709,41893,'blocks_5_tabs_2_tab_content',''),(278710,41893,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(278711,41893,'blocks_5_tabs_2_tab_image','39224'),(278712,41893,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(278713,41893,'blocks_5_tabs','3'),(278714,41893,'_blocks_5_tabs','field_6177cff281419'),(278715,41893,'blocks_6_acfe_flexible_toggle',''),(278716,41893,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(278717,41893,'blocks_6_acfe_flexible_layout_title','Text Block'),(278718,41893,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(278719,41893,'blocks_6_options_theme','#b61234'),(278720,41893,'_blocks_6_options_theme','field_6176830e2ad17'),(278721,41893,'blocks_6_options',''),(278722,41893,'_blocks_6_options','field_6176830e2ad16'),(278723,41893,'blocks_6_text_block_heading','Fees & Funding Options'),(278724,41893,'_blocks_6_text_block_heading','field_617669d413097'),(278725,41893,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(278726,41893,'_blocks_6_text_block_content','field_617669ec13098'),(278727,41893,'blocks_7_acfe_flexible_toggle',''),(278728,41893,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(278729,41893,'blocks_7_acfe_flexible_layout_title','Icons'),(278730,41893,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(278731,41893,'blocks_7_options_theme','#b61234'),(278732,41893,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(278733,41893,'blocks_7_options_format','row'),(278734,41893,'_blocks_7_options_format','field_64bfde9a90690'),(278735,41893,'blocks_7_options',''),(278736,41893,'_blocks_7_options','field_64bfdd9b90684'),(278737,41893,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(278738,41893,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(278739,41893,'blocks_7_icon_row_items_0_label','Pay in Full'),(278740,41893,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(278741,41893,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(278742,41893,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(278743,41893,'blocks_7_icon_row_items_1_icon','finance.svg'),(278744,41893,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(278745,41893,'blocks_7_icon_row_items_1_label','0% finance'),(278746,41893,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(278747,41893,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(278748,41893,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(278749,41893,'blocks_7_icon_row_items_2_icon','deposit.svg'),(278750,41893,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(278751,41893,'blocks_7_icon_row_items_2_label','Deposit & balance'),(278752,41893,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(278753,41893,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(278754,41893,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(278755,41893,'blocks_7_icon_row_items','3'),(278756,41893,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(278757,41893,'blocks_8_acfe_flexible_toggle',''),(278758,41893,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(278759,41893,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(278760,41893,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(278761,41893,'blocks_8_options_theme','#f5f5f5'),(278762,41893,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(278763,41893,'blocks_8_options_reverse','0'),(278764,41893,'_blocks_8_options_reverse','field_61768049bb8ac'),(278765,41893,'blocks_8_options',''),(278766,41893,'_blocks_8_options','field_617682517c334'),(278767,41893,'blocks_8_split_5050_image','40920'),(278768,41893,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(278769,41893,'blocks_8_split_5050_video',''),(278770,41893,'_blocks_8_split_5050_video','field_6239f3160848a'),(278771,41893,'blocks_8_split_5050_content_title',''),(278772,41893,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(278773,41893,'blocks_8_split_5050_content_heading','Why Study This Course?'),(278774,41893,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(278775,41893,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(278776,41893,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(278777,41893,'blocks_8_split_5050_content_actions',''),(278778,41893,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(278779,41893,'blocks_8_split_5050_content',''),(278780,41893,'_blocks_8_split_5050_content','field_61767afceb8ba'),(278781,41893,'blocks_9_acfe_flexible_toggle',''),(278782,41893,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(278783,41893,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(278784,41893,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(278785,41893,'blocks_9_testimonial_slider_content_title',''),(278786,41893,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(278787,41893,'blocks_9_testimonial_slider_content_heading','Testimonials'),(278788,41893,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(278789,41893,'blocks_9_testimonial_slider_content_text',''),(278790,41893,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(278791,41893,'blocks_9_testimonial_slider_content_actions',''),(278792,41893,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(278793,41893,'blocks_9_testimonial_slider_content',''),(278794,41893,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(278795,41893,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(278796,41893,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(278797,41893,'blocks_9_testimonial_slider_ambassador_bool','0'),(278798,41893,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(278799,41893,'blocks_10_acfe_flexible_toggle',''),(278800,41893,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(278801,41893,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(278802,41893,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(278803,41893,'blocks_10_options_theme','#ffffff'),(278804,41893,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(278805,41893,'blocks_10_options_state','0'),(278806,41893,'_blocks_10_options_state','field_6239fcb7508c5'),(278807,41893,'blocks_10_options',''),(278808,41893,'_blocks_10_options','field_6177e2991ac44'),(278809,41893,'blocks_10_content_title',''),(278810,41893,'_blocks_10_content_title','field_64d237e8bb1e2'),(278811,41893,'blocks_10_content_heading','Frequently asked questions '),(278812,41893,'_blocks_10_content_heading','field_64d237e8bb1e3'),(278813,41893,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(278814,41893,'_blocks_10_content_text','field_64d237e8bb1e4'),(278815,41893,'blocks_10_content_actions',''),(278816,41893,'_blocks_10_content_actions','field_64d237e8bb1e5'),(278817,41893,'blocks_10_content_align','left'),(278818,41893,'_blocks_10_content_align','field_64d2443e6b6aa'),(278819,41893,'blocks_10_content',''),(278820,41893,'_blocks_10_content','field_64d237e8bb1e1'),(278821,41893,'blocks_10_accordion_content','faqs'),(278822,41893,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(278823,41893,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(278824,41893,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(278825,41893,'blocks_10_actions',''),(278826,41893,'_blocks_10_actions','field_61a746a817f7a'),(278827,41893,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(278828,41893,'_blocks','field_6176696113096'),(278829,41893,'_acf_changed','1'),(278830,41894,'hide_hero','0'),(278831,41894,'_hide_hero','field_66a2380fcda39'),(278832,41894,'hero_title','Biomechanics and Personal Training'),(278833,41894,'_hero_title','field_617571fe285e8'),(278834,41894,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(278835,41894,'_hero_text','field_6175723c285e9'),(278836,41894,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(278837,41894,'_hero_actions_0_button','field_61757281285eb'),(278838,41894,'hero_actions','1'),(278839,41894,'_hero_actions','field_61757270285ea'),(278840,41894,'hero_style','default'),(278841,41894,'_hero_style','field_62051d9dc5324'),(278842,41894,'_thumbnail_id','39215'),(278843,41894,'__thumbnail_id','field_617570855ddaf'),(278844,41894,'hero_image_pos_x','right'),(278845,41894,'_hero_image_pos_x','field_62ec3d05390bb'),(278846,41894,'hero_image_pos_y','top'),(278847,41894,'_hero_image_pos_y','field_62ec3d05390bc'),(278848,41894,'hero_image_pos',''),(278849,41894,'_hero_image_pos','field_62ec3d05390ba'),(278850,41894,'fft_hide_from_listings','0'),(278851,41894,'_fft_hide_from_listings','field_61f1320446ab2'),(278852,41894,'fft_page_format','default'),(278853,41894,'_fft_page_format','field_61ae213f1f218'),(278854,41894,'fft_hide_nav','0'),(278855,41894,'_fft_hide_nav','field_635bd5e43527c'),(278856,41894,'fft_hide_header_call_to_action','0'),(278857,41894,'_fft_hide_header_call_to_action','field_635bd6723527d'),(278858,41894,'fft_page_sitemap','0'),(278859,41894,'_fft_page_sitemap','field_61af9b34e8181'),(278860,41894,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(278861,41894,'_blocks','field_6176696113096'),(278862,41894,'blocks_0_acfe_flexible_toggle',''),(278863,41894,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(278864,41894,'blocks_0_acfe_flexible_layout_title','Template'),(278865,41894,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(278866,41894,'blocks_0_template','39087'),(278867,41894,'_blocks_0_template','field_617bdd570fe01'),(278868,41894,'blocks_5_acfe_flexible_toggle',''),(278869,41894,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(278870,41894,'blocks_5_acfe_flexible_layout_title','Tabs'),(278871,41894,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(278872,41894,'blocks_5_options_theme','#ffffff'),(278873,41894,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(278874,41894,'blocks_5_options',''),(278875,41894,'_blocks_5_options','field_6177cfcd8140f'),(278876,41894,'blocks_5_tabs_0_tab_label','What will I learn?'),(278877,41894,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(278878,41894,'blocks_5_tabs_0_tab_content_title',''),(278879,41894,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(278880,41894,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(278881,41894,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(278882,41894,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(278883,41894,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(278884,41894,'blocks_5_tabs_0_tab_content_actions',''),(278885,41894,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(278886,41894,'blocks_5_tabs_0_tab_content',''),(278887,41894,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(278888,41894,'blocks_5_tabs_0_tab_image','39076'),(278889,41894,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(278890,41894,'blocks_5_tabs_1_tab_label','What do I need?'),(278891,41894,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(278892,41894,'blocks_5_tabs_1_tab_content_title',''),(278893,41894,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(278894,41894,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(278895,41894,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(278896,41894,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(278897,41894,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(278898,41894,'blocks_5_tabs_1_tab_content_actions',''),(278899,41894,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(278900,41894,'blocks_5_tabs_1_tab_content',''),(278901,41894,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(278902,41894,'blocks_5_tabs_1_tab_image','39223'),(278903,41894,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(278904,41894,'blocks_5_tabs_2_tab_label','Where can I learn?'),(278905,41894,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(278906,41894,'blocks_5_tabs_2_tab_content_title',''),(278907,41894,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(278908,41894,'blocks_5_tabs_2_tab_content_heading','Locations'),(278909,41894,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(278910,41894,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(278911,41894,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(278912,41894,'blocks_5_tabs_2_tab_content_actions',''),(278913,41894,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(278914,41894,'blocks_5_tabs_2_tab_content',''),(278915,41894,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(278916,41894,'blocks_5_tabs_2_tab_image','39224'),(278917,41894,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(278918,41894,'blocks_5_tabs','3'),(278919,41894,'_blocks_5_tabs','field_6177cff281419'),(278920,41894,'blocks_6_acfe_flexible_toggle',''),(278921,41894,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(278922,41894,'blocks_6_acfe_flexible_layout_title','Text Block'),(278923,41894,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(278924,41894,'blocks_6_options_theme','#b61234'),(278925,41894,'_blocks_6_options_theme','field_6176830e2ad17'),(278926,41894,'blocks_6_options',''),(278927,41894,'_blocks_6_options','field_6176830e2ad16'),(278928,41894,'blocks_6_text_block_heading','Fees & Funding Options'),(278929,41894,'_blocks_6_text_block_heading','field_617669d413097'),(278930,41894,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(278931,41894,'_blocks_6_text_block_content','field_617669ec13098'),(278932,41894,'blocks_7_acfe_flexible_toggle',''),(278933,41894,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(278934,41894,'blocks_7_acfe_flexible_layout_title','Icons'),(278935,41894,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(278936,41894,'blocks_7_options_theme','#b61234'),(278937,41894,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(278938,41894,'blocks_7_options_format','row'),(278939,41894,'_blocks_7_options_format','field_64bfde9a90690'),(278940,41894,'blocks_7_options',''),(278941,41894,'_blocks_7_options','field_64bfdd9b90684'),(278942,41894,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(278943,41894,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(278944,41894,'blocks_7_icon_row_items_0_label','Pay in Full'),(278945,41894,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(278946,41894,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(278947,41894,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(278948,41894,'blocks_7_icon_row_items_1_icon','finance.svg'),(278949,41894,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(278950,41894,'blocks_7_icon_row_items_1_label','0% finance'),(278951,41894,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(278952,41894,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(278953,41894,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(278954,41894,'blocks_7_icon_row_items_2_icon','deposit.svg'),(278955,41894,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(278956,41894,'blocks_7_icon_row_items_2_label','Deposit & balance'),(278957,41894,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(278958,41894,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(278959,41894,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(278960,41894,'blocks_7_icon_row_items','3'),(278961,41894,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(278962,41894,'blocks_9_acfe_flexible_toggle',''),(278963,41894,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(278964,41894,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(278965,41894,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(278966,41894,'blocks_9_testimonial_slider_content_title',''),(278967,41894,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(278968,41894,'blocks_9_testimonial_slider_content_heading','Testimonials'),(278969,41894,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(278970,41894,'blocks_9_testimonial_slider_content_text',''),(278971,41894,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(278972,41894,'blocks_9_testimonial_slider_content_actions',''),(278973,41894,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(278974,41894,'blocks_9_testimonial_slider_content',''),(278975,41894,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(278976,41894,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(278977,41894,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(278978,41894,'blocks_9_testimonial_slider_ambassador_bool','0'),(278979,41894,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(278980,41894,'blocks_10_acfe_flexible_toggle',''),(278981,41894,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(278982,41894,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(278983,41894,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(278984,41894,'blocks_10_options_theme','#ffffff'),(278985,41894,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(278986,41894,'blocks_10_options_state','0'),(278987,41894,'_blocks_10_options_state','field_6239fcb7508c5'),(278988,41894,'blocks_10_options',''),(278989,41894,'_blocks_10_options','field_6177e2991ac44'),(278990,41894,'blocks_10_content_title',''),(278991,41894,'_blocks_10_content_title','field_64d237e8bb1e2'),(278992,41894,'blocks_10_content_heading','Frequently asked questions '),(278993,41894,'_blocks_10_content_heading','field_64d237e8bb1e3'),(278994,41894,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(278995,41894,'_blocks_10_content_text','field_64d237e8bb1e4'),(278996,41894,'blocks_10_content_actions',''),(278997,41894,'_blocks_10_content_actions','field_64d237e8bb1e5'),(278998,41894,'blocks_10_content_align','left'),(278999,41894,'_blocks_10_content_align','field_64d2443e6b6aa'),(279000,41894,'blocks_10_content',''),(279001,41894,'_blocks_10_content','field_64d237e8bb1e1'),(279002,41894,'blocks_10_accordion_content','faqs'),(279003,41894,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(279004,41894,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(279005,41894,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(279006,41894,'blocks_10_actions',''),(279007,41894,'_blocks_10_actions','field_61a746a817f7a'),(279008,41894,'blocks_8_acfe_flexible_toggle',''),(279009,41894,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(279010,41894,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(279011,41894,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(279012,41894,'blocks_8_options_theme','#f5f5f5'),(279013,41894,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(279014,41894,'blocks_8_options_reverse','0'),(279015,41894,'_blocks_8_options_reverse','field_61768049bb8ac'),(279016,41894,'blocks_8_options',''),(279017,41894,'_blocks_8_options','field_617682517c334'),(279018,41894,'blocks_8_split_5050_image','40920'),(279019,41894,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(279020,41894,'blocks_8_split_5050_video',''),(279021,41894,'_blocks_8_split_5050_video','field_6239f3160848a'),(279022,41894,'blocks_8_split_5050_content_title',''),(279023,41894,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(279024,41894,'blocks_8_split_5050_content_heading','Why Study This Course?'),(279025,41894,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(279026,41894,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(279027,41894,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(279028,41894,'blocks_8_split_5050_content_actions',''),(279029,41894,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(279030,41894,'blocks_8_split_5050_content',''),(279031,41894,'_blocks_8_split_5050_content','field_61767afceb8ba'),(279032,41894,'blocks_1_acfe_flexible_toggle',''),(279033,41894,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(279034,41894,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(279035,41894,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(279036,41894,'blocks_1_options_theme','#ffffff'),(279037,41894,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(279038,41894,'blocks_1_options_reverse','0'),(279039,41894,'_blocks_1_options_reverse','field_61768049bb8ac'),(279040,41894,'blocks_1_options',''),(279041,41894,'_blocks_1_options','field_617682517c334'),(279042,41894,'blocks_1_split_5050_image','39220'),(279043,41894,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(279044,41894,'blocks_1_split_5050_video',''),(279045,41894,'_blocks_1_split_5050_video','field_6239f3160848a'),(279046,41894,'blocks_1_split_5050_content_title',''),(279047,41894,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(279048,41894,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(279049,41894,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(279050,41894,'blocks_1_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(279051,41894,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(279052,41894,'blocks_1_split_5050_content_actions',''),(279053,41894,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(279054,41894,'blocks_1_split_5050_content',''),(279055,41894,'_blocks_1_split_5050_content','field_61767afceb8ba'),(279056,41894,'blocks_2_acfe_flexible_toggle',''),(279057,41894,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(279058,41894,'blocks_2_acfe_flexible_layout_title','Form'),(279059,41894,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(279060,41894,'blocks_2_row_content_format','standard'),(279061,41894,'_blocks_2_row_content_format','field_6481ead962881'),(279062,41894,'blocks_2_row_content_title',''),(279063,41894,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(279064,41894,'blocks_2_row_content_heading','Enquire Today'),(279065,41894,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(279066,41894,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(279067,41894,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(279068,41894,'blocks_2_row_content_actions',''),(279069,41894,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(279070,41894,'blocks_2_row_content',''),(279071,41894,'_blocks_2_row_content','field_61a0f5f5b3db0'),(279072,41894,'blocks_2_row_form','40394'),(279073,41894,'_blocks_2_row_form','field_61a4ff2c0b08e'),(279074,41894,'blocks_2_row_form_button_label',''),(279075,41894,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(279076,41894,'blocks_3_acfe_flexible_toggle',''),(279077,41894,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(279078,41894,'blocks_3_acfe_flexible_layout_title','Video'),(279079,41894,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(279080,41894,'blocks_3_size','large'),(279081,41894,'_blocks_3_size','field_6487038f297c1'),(279082,41894,'blocks_3_row_content_title',''),(279083,41894,'_blocks_3_row_content_title','field_64870132a865d'),(279084,41894,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(279085,41894,'_blocks_3_row_content_heading','field_64870142a865e'),(279086,41894,'blocks_3_row_content_text',''),(279087,41894,'_blocks_3_row_content_text','field_64870148a865f'),(279088,41894,'blocks_3_row_content',''),(279089,41894,'_blocks_3_row_content','field_6487008ba865c'),(279090,41894,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(279091,41894,'_blocks_3_video_src','field_6193c4a98ec07'),(279092,41894,'blocks_3_video_thumbnail','39186'),(279093,41894,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(279094,41894,'blocks_4_acfe_flexible_toggle',''),(279095,41894,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(279096,41894,'blocks_4_acfe_flexible_layout_title','Steps'),(279097,41894,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(279098,41894,'blocks_4_row_content_title',''),(279099,41894,'_blocks_4_row_content_title','field_64888cd1e26e0'),(279100,41894,'blocks_4_row_content_heading','Benefits of training with us'),(279101,41894,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(279102,41894,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(279103,41894,'_blocks_4_row_content_text','field_64888ce2e26e2'),(279104,41894,'blocks_4_row_content_actions',''),(279105,41894,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(279106,41894,'blocks_4_row_content',''),(279107,41894,'_blocks_4_row_content','field_64888cb0e26df'),(279108,41894,'blocks_4_steps_0_icon','progression.svg'),(279109,41894,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(279110,41894,'blocks_4_steps_0_title','Earning Potential'),(279111,41894,'_blocks_4_steps_0_title','field_64888d94e26e7'),(279112,41894,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(279113,41894,'_blocks_4_steps_0_text','field_64888d99e26e8'),(279114,41894,'blocks_4_steps_1_icon','support.svg'),(279115,41894,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(279116,41894,'blocks_4_steps_1_title','Lifetime Learning Promise'),(279117,41894,'_blocks_4_steps_1_title','field_64888d94e26e7'),(279118,41894,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(279119,41894,'_blocks_4_steps_1_text','field_64888d99e26e8'),(279120,41894,'blocks_4_steps_2_icon','qualification.svg'),(279121,41894,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(279122,41894,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(279123,41894,'_blocks_4_steps_2_title','field_64888d94e26e7'),(279124,41894,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(279125,41894,'_blocks_4_steps_2_text','field_64888d99e26e8'),(279126,41894,'blocks_4_steps_3_icon','leaders.svg'),(279127,41894,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(279128,41894,'blocks_4_steps_3_title','Stand Out From the Crowd'),(279129,41894,'_blocks_4_steps_3_title','field_64888d94e26e7'),(279130,41894,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(279131,41894,'_blocks_4_steps_3_text','field_64888d99e26e8'),(279132,41894,'blocks_4_steps','4'),(279133,41894,'_blocks_4_steps','field_64888d44e26e5'),(279134,41895,'hide_hero','0'),(279135,41895,'_hide_hero','field_66a2380fcda39'),(279136,41895,'hero_title','Biomechanics and Pilates'),(279137,41895,'_hero_title','field_617571fe285e8'),(279138,41895,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(279139,41895,'_hero_text','field_6175723c285e9'),(279140,41895,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39231-3\";s:6:\"target\";s:0:\"\";}'),(279141,41895,'_hero_actions_0_button','field_61757281285eb'),(279142,41895,'hero_actions','1'),(279143,41895,'_hero_actions','field_61757270285ea'),(279144,41895,'hero_style','default'),(279145,41895,'_hero_style','field_62051d9dc5324'),(279146,41895,'_thumbnail_id','39243'),(279147,41895,'__thumbnail_id','field_617570855ddaf'),(279148,41895,'hero_image_pos_x','right'),(279149,41895,'_hero_image_pos_x','field_62ec3d05390bb'),(279150,41895,'hero_image_pos_y','top'),(279151,41895,'_hero_image_pos_y','field_62ec3d05390bc'),(279152,41895,'hero_image_pos',''),(279153,41895,'_hero_image_pos','field_62ec3d05390ba'),(279154,41895,'fft_hide_from_listings','0'),(279155,41895,'_fft_hide_from_listings','field_61f1320446ab2'),(279156,41895,'fft_page_format','default'),(279157,41895,'_fft_page_format','field_61ae213f1f218'),(279158,41895,'fft_hide_nav','0'),(279159,41895,'_fft_hide_nav','field_635bd5e43527c'),(279160,41895,'fft_hide_header_call_to_action','0'),(279161,41895,'_fft_hide_header_call_to_action','field_635bd6723527d'),(279162,41895,'fft_page_sitemap','0'),(279163,41895,'_fft_page_sitemap','field_61af9b34e8181'),(279164,41895,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:18:\"testimonial_slider\";}'),(279165,41895,'_blocks','field_6176696113096'),(279166,41895,'blocks_0_acfe_flexible_toggle',''),(279167,41895,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(279168,41895,'blocks_0_acfe_flexible_layout_title','Icons'),(279169,41895,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(279170,41895,'blocks_0_options_theme','#b61234'),(279171,41895,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(279172,41895,'blocks_0_options_format','row'),(279173,41895,'_blocks_0_options_format','field_64bfde9a90690'),(279174,41895,'blocks_0_options',''),(279175,41895,'_blocks_0_options','field_64bfdd9b90684'),(279176,41895,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(279177,41895,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(279178,41895,'blocks_0_icon_row_items_0_label','Accreditation'),(279179,41895,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(279180,41895,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(279181,41895,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(279182,41895,'blocks_0_icon_row_items_1_icon','finance.svg'),(279183,41895,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(279184,41895,'blocks_0_icon_row_items_1_label','Flexible payment options'),(279185,41895,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(279186,41895,'blocks_0_icon_row_items_1_text','Including 0% finance'),(279187,41895,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(279188,41895,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(279189,41895,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(279190,41895,'blocks_0_icon_row_items_2_label','Earning potential'),(279191,41895,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(279192,41895,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(279193,41895,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(279194,41895,'blocks_0_icon_row_items','3'),(279195,41895,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(279196,41895,'blocks_1_acfe_flexible_toggle',''),(279197,41895,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(279198,41895,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(279199,41895,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(279200,41895,'blocks_1_options_theme','#ffffff'),(279201,41895,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(279202,41895,'blocks_1_options_reverse','0'),(279203,41895,'_blocks_1_options_reverse','field_61768049bb8ac'),(279204,41895,'blocks_1_options',''),(279205,41895,'_blocks_1_options','field_617682517c334'),(279206,41895,'blocks_1_split_5050_image','41318'),(279207,41895,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(279208,41895,'blocks_1_split_5050_video',''),(279209,41895,'_blocks_1_split_5050_video','field_6239f3160848a'),(279210,41895,'blocks_1_split_5050_content_title',''),(279211,41895,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(279212,41895,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(279213,41895,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(279214,41895,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(279215,41895,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(279216,41895,'blocks_1_split_5050_content_actions',''),(279217,41895,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(279218,41895,'blocks_1_split_5050_content',''),(279219,41895,'_blocks_1_split_5050_content','field_61767afceb8ba'),(279220,41895,'blocks_2_acfe_flexible_toggle',''),(279221,41895,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(279222,41895,'blocks_2_acfe_flexible_layout_title','Form'),(279223,41895,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(279224,41895,'blocks_2_row_content_format','standard'),(279225,41895,'_blocks_2_row_content_format','field_6481ead962881'),(279226,41895,'blocks_2_row_content_title',''),(279227,41895,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(279228,41895,'blocks_2_row_content_heading','Enquire Today'),(279229,41895,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(279230,41895,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(279231,41895,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(279232,41895,'blocks_2_row_content_actions',''),(279233,41895,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(279234,41895,'blocks_2_row_content',''),(279235,41895,'_blocks_2_row_content','field_61a0f5f5b3db0'),(279236,41895,'blocks_2_row_form','40394'),(279237,41895,'_blocks_2_row_form','field_61a4ff2c0b08e'),(279238,41895,'blocks_2_row_form_button_label',''),(279239,41895,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(279240,41895,'blocks_3_acfe_flexible_toggle',''),(279241,41895,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(279242,41895,'blocks_3_acfe_flexible_layout_title','Video'),(279243,41895,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(279244,41895,'blocks_3_size','large'),(279245,41895,'_blocks_3_size','field_6487038f297c1'),(279246,41895,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(279247,41895,'_blocks_3_row_content_title','field_64870132a865d'),(279248,41895,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(279249,41895,'_blocks_3_row_content_heading','field_64870142a865e'),(279250,41895,'blocks_3_row_content_text',''),(279251,41895,'_blocks_3_row_content_text','field_64870148a865f'),(279252,41895,'blocks_3_row_content',''),(279253,41895,'_blocks_3_row_content','field_6487008ba865c'),(279254,41895,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(279255,41895,'_blocks_3_video_src','field_6193c4a98ec07'),(279256,41895,'blocks_3_video_thumbnail',''),(279257,41895,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(279258,41895,'blocks_4_acfe_flexible_toggle',''),(279259,41895,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(279260,41895,'blocks_4_acfe_flexible_layout_title','Steps'),(279261,41895,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(279262,41895,'blocks_4_row_content_title',''),(279263,41895,'_blocks_4_row_content_title','field_64888cd1e26e0'),(279264,41895,'blocks_4_row_content_heading','Benefits of training with us'),(279265,41895,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(279266,41895,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(279267,41895,'_blocks_4_row_content_text','field_64888ce2e26e2'),(279268,41895,'blocks_4_row_content_actions',''),(279269,41895,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(279270,41895,'blocks_4_row_content',''),(279271,41895,'_blocks_4_row_content','field_64888cb0e26df'),(279272,41895,'blocks_4_steps_0_icon','progression.svg'),(279273,41895,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(279274,41895,'blocks_4_steps_0_title','Earning potential'),(279275,41895,'_blocks_4_steps_0_title','field_64888d94e26e7'),(279276,41895,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(279277,41895,'_blocks_4_steps_0_text','field_64888d99e26e8'),(279278,41895,'blocks_4_steps_1_icon','support.svg'),(279279,41895,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(279280,41895,'blocks_4_steps_1_title','Lifetime Learning Promise'),(279281,41895,'_blocks_4_steps_1_title','field_64888d94e26e7'),(279282,41895,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(279283,41895,'_blocks_4_steps_1_text','field_64888d99e26e8'),(279284,41895,'blocks_4_steps_2_icon','qualification.svg'),(279285,41895,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(279286,41895,'blocks_4_steps_2_title','Evidence based hands on learning'),(279287,41895,'_blocks_4_steps_2_title','field_64888d94e26e7'),(279288,41895,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(279289,41895,'_blocks_4_steps_2_text','field_64888d99e26e8'),(279290,41895,'blocks_4_steps_3_icon','leaders.svg'),(279291,41895,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(279292,41895,'blocks_4_steps_3_title','Stand out from the crowd'),(279293,41895,'_blocks_4_steps_3_title','field_64888d94e26e7'),(279294,41895,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(279295,41895,'_blocks_4_steps_3_text','field_64888d99e26e8'),(279296,41895,'blocks_4_steps','4'),(279297,41895,'_blocks_4_steps','field_64888d44e26e5'),(279298,41895,'blocks_5_acfe_flexible_toggle',''),(279299,41895,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(279300,41895,'blocks_5_acfe_flexible_layout_title','Tabs'),(279301,41895,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(279302,41895,'blocks_5_options_theme','#ffffff'),(279303,41895,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(279304,41895,'blocks_5_options',''),(279305,41895,'_blocks_5_options','field_6177cfcd8140f'),(279306,41895,'blocks_5_tabs_0_tab_label','What will I learn?'),(279307,41895,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(279308,41895,'blocks_5_tabs_0_tab_content_title',''),(279309,41895,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(279310,41895,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(279311,41895,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(279312,41895,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients:\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(279313,41895,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(279314,41895,'blocks_5_tabs_0_tab_content_actions',''),(279315,41895,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(279316,41895,'blocks_5_tabs_0_tab_content',''),(279317,41895,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(279318,41895,'blocks_5_tabs_0_tab_image','39076'),(279319,41895,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(279320,41895,'blocks_5_tabs_1_tab_label','What do I need?'),(279321,41895,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(279322,41895,'blocks_5_tabs_1_tab_content_title',''),(279323,41895,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(279324,41895,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(279325,41895,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(279326,41895,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(279327,41895,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(279328,41895,'blocks_5_tabs_1_tab_content_actions',''),(279329,41895,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(279330,41895,'blocks_5_tabs_1_tab_content',''),(279331,41895,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(279332,41895,'blocks_5_tabs_1_tab_image','40487'),(279333,41895,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(279334,41895,'blocks_5_tabs_2_tab_label','Where can I learn?'),(279335,41895,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(279336,41895,'blocks_5_tabs_2_tab_content_title',''),(279337,41895,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(279338,41895,'blocks_5_tabs_2_tab_content_heading','Locations'),(279339,41895,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(279340,41895,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(279341,41895,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(279342,41895,'blocks_5_tabs_2_tab_content_actions',''),(279343,41895,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(279344,41895,'blocks_5_tabs_2_tab_content',''),(279345,41895,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(279346,41895,'blocks_5_tabs_2_tab_image','39224'),(279347,41895,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(279348,41895,'blocks_5_tabs','3'),(279349,41895,'_blocks_5_tabs','field_6177cff281419'),(279350,41895,'blocks_6_acfe_flexible_toggle',''),(279351,41895,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(279352,41895,'blocks_6_acfe_flexible_layout_title','Text Block'),(279353,41895,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(279354,41895,'blocks_6_options_theme','#b61234'),(279355,41895,'_blocks_6_options_theme','field_6176830e2ad17'),(279356,41895,'blocks_6_options',''),(279357,41895,'_blocks_6_options','field_6176830e2ad16'),(279358,41895,'blocks_6_text_block_heading','Fees & Funding Options'),(279359,41895,'_blocks_6_text_block_heading','field_617669d413097'),(279360,41895,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(279361,41895,'_blocks_6_text_block_content','field_617669ec13098'),(279362,41895,'blocks_8_acfe_flexible_toggle',''),(279363,41895,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(279364,41895,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(279365,41895,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(279366,41895,'blocks_8_options_theme','#ffffff'),(279367,41895,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(279368,41895,'blocks_8_options_reverse','0'),(279369,41895,'_blocks_8_options_reverse','field_61768049bb8ac'),(279370,41895,'blocks_8_options',''),(279371,41895,'_blocks_8_options','field_617682517c334'),(279372,41895,'blocks_8_split_5050_image','40484'),(279373,41895,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(279374,41895,'blocks_8_split_5050_video',''),(279375,41895,'_blocks_8_split_5050_video','field_6239f3160848a'),(279376,41895,'blocks_8_split_5050_content_title',''),(279377,41895,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(279378,41895,'blocks_8_split_5050_content_heading','Why study this course?'),(279379,41895,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(279380,41895,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(279381,41895,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(279382,41895,'blocks_8_split_5050_content_actions',''),(279383,41895,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(279384,41895,'blocks_8_split_5050_content',''),(279385,41895,'_blocks_8_split_5050_content','field_61767afceb8ba'),(279386,41895,'blocks_7_acfe_flexible_toggle',''),(279387,41895,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(279388,41895,'blocks_7_acfe_flexible_layout_title','Icons'),(279389,41895,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(279390,41895,'blocks_7_options_theme','#b61234'),(279391,41895,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(279392,41895,'blocks_7_options_format','row'),(279393,41895,'_blocks_7_options_format','field_64bfde9a90690'),(279394,41895,'blocks_7_options',''),(279395,41895,'_blocks_7_options','field_64bfdd9b90684'),(279396,41895,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(279397,41895,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(279398,41895,'blocks_7_icon_row_items_0_label','Pay in full '),(279399,41895,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(279400,41895,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(279401,41895,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(279402,41895,'blocks_7_icon_row_items_1_icon','finance.svg'),(279403,41895,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(279404,41895,'blocks_7_icon_row_items_1_label','0% finance'),(279405,41895,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(279406,41895,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(279407,41895,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(279408,41895,'blocks_7_icon_row_items_2_icon','deposit.svg'),(279409,41895,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(279410,41895,'blocks_7_icon_row_items_2_label','Deposit & balance'),(279411,41895,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(279412,41895,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(279413,41895,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(279414,41895,'blocks_7_icon_row_items','3'),(279415,41895,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(279416,41895,'blocks_9_acfe_flexible_toggle',''),(279417,41895,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(279418,41895,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(279419,41895,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(279420,41895,'blocks_9_options_theme','#ffffff'),(279421,41895,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(279422,41895,'blocks_9_options_state','0'),(279423,41895,'_blocks_9_options_state','field_6239fcb7508c5'),(279424,41895,'blocks_9_options',''),(279425,41895,'_blocks_9_options','field_6177e2991ac44'),(279426,41895,'blocks_9_content_title',''),(279427,41895,'_blocks_9_content_title','field_64d237e8bb1e2'),(279428,41895,'blocks_9_content_heading','Frequently asked questions '),(279429,41895,'_blocks_9_content_heading','field_64d237e8bb1e3'),(279430,41895,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(279431,41895,'_blocks_9_content_text','field_64d237e8bb1e4'),(279432,41895,'blocks_9_content_actions',''),(279433,41895,'_blocks_9_content_actions','field_64d237e8bb1e5'),(279434,41895,'blocks_9_content_align','left'),(279435,41895,'_blocks_9_content_align','field_64d2443e6b6aa'),(279436,41895,'blocks_9_content',''),(279437,41895,'_blocks_9_content','field_64d237e8bb1e1'),(279438,41895,'blocks_9_accordion_content','faqs'),(279439,41895,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(279440,41895,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(279441,41895,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(279442,41895,'blocks_9_actions',''),(279443,41895,'_blocks_9_actions','field_61a746a817f7a'),(279444,41895,'blocks_10_acfe_flexible_toggle',''),(279445,41895,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(279446,41895,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(279447,41895,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(279448,41895,'blocks_10_testimonial_slider_content_title',''),(279449,41895,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(279450,41895,'blocks_10_testimonial_slider_content_heading','Testimonials'),(279451,41895,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(279452,41895,'blocks_10_testimonial_slider_content_text',''),(279453,41895,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(279454,41895,'blocks_10_testimonial_slider_content_actions',''),(279455,41895,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(279456,41895,'blocks_10_testimonial_slider_content',''),(279457,41895,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(279458,41895,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(279459,41895,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(279460,41895,'blocks_10_testimonial_slider_ambassador_bool','0'),(279461,41895,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(279462,41896,'hide_hero','0'),(279463,41896,'_hide_hero','field_66a2380fcda39'),(279464,41896,'hero_title','Biomechanics and Sports Massage Therapy'),(279465,41896,'_hero_title','field_617571fe285e8'),(279466,41896,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(279467,41896,'_hero_text','field_6175723c285e9'),(279468,41896,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39238-3\";s:6:\"target\";s:0:\"\";}'),(279469,41896,'_hero_actions_0_button','field_61757281285eb'),(279470,41896,'hero_actions','1'),(279471,41896,'_hero_actions','field_61757270285ea'),(279472,41896,'hero_style','default'),(279473,41896,'_hero_style','field_62051d9dc5324'),(279474,41896,'_thumbnail_id','39240'),(279475,41896,'__thumbnail_id','field_617570855ddaf'),(279476,41896,'hero_image_pos_x','right'),(279477,41896,'_hero_image_pos_x','field_62ec3d05390bb'),(279478,41896,'hero_image_pos_y','top'),(279479,41896,'_hero_image_pos_y','field_62ec3d05390bc'),(279480,41896,'hero_image_pos',''),(279481,41896,'_hero_image_pos','field_62ec3d05390ba'),(279482,41896,'fft_hide_from_listings','0'),(279483,41896,'_fft_hide_from_listings','field_61f1320446ab2'),(279484,41896,'fft_page_format','default'),(279485,41896,'_fft_page_format','field_61ae213f1f218'),(279486,41896,'fft_hide_nav','0'),(279487,41896,'_fft_hide_nav','field_635bd5e43527c'),(279488,41896,'fft_hide_header_call_to_action','0'),(279489,41896,'_fft_hide_header_call_to_action','field_635bd6723527d'),(279490,41896,'fft_page_sitemap','0'),(279491,41896,'_fft_page_sitemap','field_61af9b34e8181'),(279492,41896,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:10:\"split_5050\";i:9;s:16:\"standard_content\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(279493,41896,'_blocks','field_6176696113096'),(279494,41896,'blocks_0_acfe_flexible_toggle',''),(279495,41896,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(279496,41896,'blocks_0_acfe_flexible_layout_title','Template'),(279497,41896,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(279498,41896,'blocks_0_template','39087'),(279499,41896,'_blocks_0_template','field_617bdd570fe01'),(279500,41896,'blocks_4_acfe_flexible_toggle',''),(279501,41896,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(279502,41896,'blocks_4_acfe_flexible_layout_title','Tabs'),(279503,41896,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(279504,41896,'blocks_4_options_theme','#ffffff'),(279505,41896,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(279506,41896,'blocks_4_options',''),(279507,41896,'_blocks_4_options','field_6177cfcd8140f'),(279508,41896,'blocks_4_tabs_0_tab_label','What will I learn ?'),(279509,41896,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(279510,41896,'blocks_4_tabs_0_tab_content_title',''),(279511,41896,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(279512,41896,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(279513,41896,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(279514,41896,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(279515,41896,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(279516,41896,'blocks_4_tabs_0_tab_content_actions',''),(279517,41896,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(279518,41896,'blocks_4_tabs_0_tab_content',''),(279519,41896,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(279520,41896,'blocks_4_tabs_0_tab_image','39076'),(279521,41896,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(279522,41896,'blocks_4_tabs_1_tab_label','What do I need ?'),(279523,41896,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(279524,41896,'blocks_4_tabs_1_tab_content_title',''),(279525,41896,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(279526,41896,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(279527,41896,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(279528,41896,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(279529,41896,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(279530,41896,'blocks_4_tabs_1_tab_content_actions',''),(279531,41896,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(279532,41896,'blocks_4_tabs_1_tab_content',''),(279533,41896,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(279534,41896,'blocks_4_tabs_1_tab_image','39223'),(279535,41896,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(279536,41896,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(279537,41896,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(279538,41896,'blocks_4_tabs_2_tab_content_title',''),(279539,41896,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(279540,41896,'blocks_4_tabs_2_tab_content_heading','Locations'),(279541,41896,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(279542,41896,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(279543,41896,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(279544,41896,'blocks_4_tabs_2_tab_content_actions',''),(279545,41896,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(279546,41896,'blocks_4_tabs_2_tab_content',''),(279547,41896,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(279548,41896,'blocks_4_tabs_2_tab_image','39224'),(279549,41896,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(279550,41896,'blocks_4_tabs','3'),(279551,41896,'_blocks_4_tabs','field_6177cff281419'),(279552,41896,'blocks_5_acfe_flexible_toggle',''),(279553,41896,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(279554,41896,'blocks_5_acfe_flexible_layout_title','Text Block'),(279555,41896,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(279556,41896,'blocks_5_options_theme','#b61234'),(279557,41896,'_blocks_5_options_theme','field_6176830e2ad17'),(279558,41896,'blocks_5_options',''),(279559,41896,'_blocks_5_options','field_6176830e2ad16'),(279560,41896,'blocks_5_text_block_heading','Fees & Funding Options'),(279561,41896,'_blocks_5_text_block_heading','field_617669d413097'),(279562,41896,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(279563,41896,'_blocks_5_text_block_content','field_617669ec13098'),(279564,41896,'blocks_1_acfe_flexible_toggle',''),(279565,41896,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(279566,41896,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(279567,41896,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(279568,41896,'blocks_1_options_theme','#ffffff'),(279569,41896,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(279570,41896,'blocks_1_options_reverse','0'),(279571,41896,'_blocks_1_options_reverse','field_61768049bb8ac'),(279572,41896,'blocks_1_options',''),(279573,41896,'_blocks_1_options','field_617682517c334'),(279574,41896,'blocks_1_split_5050_image','39241'),(279575,41896,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(279576,41896,'blocks_1_split_5050_video',''),(279577,41896,'_blocks_1_split_5050_video','field_6239f3160848a'),(279578,41896,'blocks_1_split_5050_content_title',''),(279579,41896,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(279580,41896,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(279581,41896,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(279582,41896,'blocks_1_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(279583,41896,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(279584,41896,'blocks_1_split_5050_content_actions',''),(279585,41896,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(279586,41896,'blocks_1_split_5050_content',''),(279587,41896,'_blocks_1_split_5050_content','field_61767afceb8ba'),(279588,41896,'blocks_6_acfe_flexible_toggle',''),(279589,41896,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(279590,41896,'blocks_6_acfe_flexible_layout_title','Icons'),(279591,41896,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(279592,41896,'blocks_6_options_theme','#b61234'),(279593,41896,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(279594,41896,'blocks_6_options_format','row'),(279595,41896,'_blocks_6_options_format','field_64bfde9a90690'),(279596,41896,'blocks_6_options',''),(279597,41896,'_blocks_6_options','field_64bfdd9b90684'),(279598,41896,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(279599,41896,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(279600,41896,'blocks_6_icon_row_items_0_label','Pay in Full'),(279601,41896,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(279602,41896,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(279603,41896,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(279604,41896,'blocks_6_icon_row_items_1_icon','finance.svg'),(279605,41896,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(279606,41896,'blocks_6_icon_row_items_1_label','0% Finance'),(279607,41896,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(279608,41896,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(279609,41896,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(279610,41896,'blocks_6_icon_row_items_2_icon','deposit.svg'),(279611,41896,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(279612,41896,'blocks_6_icon_row_items_2_label','Deposit & balance'),(279613,41896,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(279614,41896,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(279615,41896,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(279616,41896,'blocks_6_icon_row_items','3'),(279617,41896,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(279618,41896,'blocks_7_acfe_flexible_toggle',''),(279619,41896,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(279620,41896,'blocks_7_acfe_flexible_layout_title','Steps'),(279621,41896,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(279622,41896,'blocks_7_row_content_title',''),(279623,41896,'_blocks_7_row_content_title','field_64888cd1e26e0'),(279624,41896,'blocks_7_row_content_heading','Benefits of Training with Us'),(279625,41896,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(279626,41896,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(279627,41896,'_blocks_7_row_content_text','field_64888ce2e26e2'),(279628,41896,'blocks_7_row_content_actions',''),(279629,41896,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(279630,41896,'blocks_7_row_content',''),(279631,41896,'_blocks_7_row_content','field_64888cb0e26df'),(279632,41896,'blocks_7_steps_0_icon','progression.svg'),(279633,41896,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(279634,41896,'blocks_7_steps_0_title','Earning potential'),(279635,41896,'_blocks_7_steps_0_title','field_64888d94e26e7'),(279636,41896,'blocks_7_steps_0_text','Attract new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(279637,41896,'_blocks_7_steps_0_text','field_64888d99e26e8'),(279638,41896,'blocks_7_steps_1_icon','support.svg'),(279639,41896,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(279640,41896,'blocks_7_steps_1_title','Lifetime learning promise'),(279641,41896,'_blocks_7_steps_1_title','field_64888d94e26e7'),(279642,41896,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(279643,41896,'_blocks_7_steps_1_text','field_64888d99e26e8'),(279644,41896,'blocks_7_steps_2_icon','qualification.svg'),(279645,41896,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(279646,41896,'blocks_7_steps_2_title','Evidence based hands on learning'),(279647,41896,'_blocks_7_steps_2_title','field_64888d94e26e7'),(279648,41896,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn how to screen and test to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(279649,41896,'_blocks_7_steps_2_text','field_64888d99e26e8'),(279650,41896,'blocks_7_steps_3_icon','leaders.svg'),(279651,41896,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(279652,41896,'blocks_7_steps_3_title','Stand out from the crowd'),(279653,41896,'_blocks_7_steps_3_title','field_64888d94e26e7'),(279654,41896,'blocks_7_steps_3_text','As a Sports Massage Therapist through the Biomechanics Coaching Diploma we will give you the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course can also enhance your relationship with other healthcare providers because you will have confidence in a common language'),(279655,41896,'_blocks_7_steps_3_text','field_64888d99e26e8'),(279656,41896,'blocks_7_steps','4'),(279657,41896,'_blocks_7_steps','field_64888d44e26e5'),(279658,41896,'blocks_2_acfe_flexible_toggle',''),(279659,41896,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(279660,41896,'blocks_2_acfe_flexible_layout_title','Form'),(279661,41896,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(279662,41896,'blocks_2_row_content_format','standard'),(279663,41896,'_blocks_2_row_content_format','field_6481ead962881'),(279664,41896,'blocks_2_row_content_title',''),(279665,41896,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(279666,41896,'blocks_2_row_content_heading','Enquire Today'),(279667,41896,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(279668,41896,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(279669,41896,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(279670,41896,'blocks_2_row_content_actions',''),(279671,41896,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(279672,41896,'blocks_2_row_content',''),(279673,41896,'_blocks_2_row_content','field_61a0f5f5b3db0'),(279674,41896,'blocks_2_row_form','40394'),(279675,41896,'_blocks_2_row_form','field_61a4ff2c0b08e'),(279676,41896,'blocks_2_row_form_button_label',''),(279677,41896,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(279678,41896,'blocks_3_acfe_flexible_toggle','1'),(279679,41896,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(279680,41896,'blocks_3_acfe_flexible_layout_title','Video'),(279681,41896,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(279682,41896,'blocks_3_size','large'),(279683,41896,'_blocks_3_size','field_6487038f297c1'),(279684,41896,'blocks_3_row_content_title',''),(279685,41896,'_blocks_3_row_content_title','field_64870132a865d'),(279686,41896,'blocks_3_row_content_heading',''),(279687,41896,'_blocks_3_row_content_heading','field_64870142a865e'),(279688,41896,'blocks_3_row_content_text',''),(279689,41896,'_blocks_3_row_content_text','field_64870148a865f'),(279690,41896,'blocks_3_row_content',''),(279691,41896,'_blocks_3_row_content','field_6487008ba865c'),(279692,41896,'blocks_3_video_src',''),(279693,41896,'_blocks_3_video_src','field_6193c4a98ec07'),(279694,41896,'blocks_3_video_thumbnail',''),(279695,41896,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(279696,41896,'blocks_8_acfe_flexible_toggle',''),(279697,41896,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(279698,41896,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(279699,41896,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(279700,41896,'blocks_8_options_theme','#f5f5f5'),(279701,41896,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(279702,41896,'blocks_8_options_reverse','0'),(279703,41896,'_blocks_8_options_reverse','field_61768049bb8ac'),(279704,41896,'blocks_8_options',''),(279705,41896,'_blocks_8_options','field_617682517c334'),(279706,41896,'blocks_8_split_5050_image','40920'),(279707,41896,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(279708,41896,'blocks_8_split_5050_video',''),(279709,41896,'_blocks_8_split_5050_video','field_6239f3160848a'),(279710,41896,'blocks_8_split_5050_content_title',''),(279711,41896,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(279712,41896,'blocks_8_split_5050_content_heading','Why study this course ?'),(279713,41896,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(279714,41896,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(279715,41896,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(279716,41896,'blocks_8_split_5050_content_actions',''),(279717,41896,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(279718,41896,'blocks_8_split_5050_content',''),(279719,41896,'_blocks_8_split_5050_content','field_61767afceb8ba'),(279720,41896,'blocks_9_acfe_flexible_toggle','1'),(279721,41896,'_blocks_9_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(279722,41896,'blocks_9_acfe_flexible_layout_title','Standard/Editorial Content'),(279723,41896,'_blocks_9_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(279724,41896,'blocks_9_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(279725,41896,'_blocks_9_content','field_6193c9b5eac84'),(279726,41896,'blocks_10_acfe_flexible_toggle',''),(279727,41896,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(279728,41896,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(279729,41896,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(279730,41896,'blocks_10_testimonial_slider_content_title',''),(279731,41896,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(279732,41896,'blocks_10_testimonial_slider_content_heading','Testimonials'),(279733,41896,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(279734,41896,'blocks_10_testimonial_slider_content_text',''),(279735,41896,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(279736,41896,'blocks_10_testimonial_slider_content_actions',''),(279737,41896,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(279738,41896,'blocks_10_testimonial_slider_content',''),(279739,41896,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(279740,41896,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(279741,41896,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(279742,41896,'blocks_10_testimonial_slider_ambassador_bool','0'),(279743,41896,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(279744,41896,'blocks_11_acfe_flexible_toggle',''),(279745,41896,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(279746,41896,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(279747,41896,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(279748,41896,'blocks_11_options_theme','#ffffff'),(279749,41896,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(279750,41896,'blocks_11_options_state','0'),(279751,41896,'_blocks_11_options_state','field_6239fcb7508c5'),(279752,41896,'blocks_11_options',''),(279753,41896,'_blocks_11_options','field_6177e2991ac44'),(279754,41896,'blocks_11_content_title',''),(279755,41896,'_blocks_11_content_title','field_64d237e8bb1e2'),(279756,41896,'blocks_11_content_heading','Frequently Asked Questions '),(279757,41896,'_blocks_11_content_heading','field_64d237e8bb1e3'),(279758,41896,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(279759,41896,'_blocks_11_content_text','field_64d237e8bb1e4'),(279760,41896,'blocks_11_content_actions',''),(279761,41896,'_blocks_11_content_actions','field_64d237e8bb1e5'),(279762,41896,'blocks_11_content_align','left'),(279763,41896,'_blocks_11_content_align','field_64d2443e6b6aa'),(279764,41896,'blocks_11_content',''),(279765,41896,'_blocks_11_content','field_64d237e8bb1e1'),(279766,41896,'blocks_11_accordion_content','faqs'),(279767,41896,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(279768,41896,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(279769,41896,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(279770,41896,'blocks_11_actions',''),(279771,41896,'_blocks_11_actions','field_61a746a817f7a'),(279772,41897,'hide_hero','0'),(279773,41897,'_hide_hero','field_66a2380fcda39'),(279774,41897,'hero_title','Biomechanics and Podiatrists'),(279775,41897,'_hero_title','field_617571fe285e8'),(279776,41897,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(279777,41897,'_hero_text','field_6175723c285e9'),(279778,41897,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(279779,41897,'_hero_actions_0_button','field_61757281285eb'),(279780,41897,'hero_actions','1'),(279781,41897,'_hero_actions','field_61757270285ea'),(279782,41897,'hero_style','default'),(279783,41897,'_hero_style','field_62051d9dc5324'),(279784,41897,'_thumbnail_id','39247'),(279785,41897,'__thumbnail_id','field_617570855ddaf'),(279786,41897,'hero_image_pos_x','right'),(279787,41897,'_hero_image_pos_x','field_62ec3d05390bb'),(279788,41897,'hero_image_pos_y','top'),(279789,41897,'_hero_image_pos_y','field_62ec3d05390bc'),(279790,41897,'hero_image_pos',''),(279791,41897,'_hero_image_pos','field_62ec3d05390ba'),(279792,41897,'fft_hide_from_listings','0'),(279793,41897,'_fft_hide_from_listings','field_61f1320446ab2'),(279794,41897,'fft_page_format','default'),(279795,41897,'_fft_page_format','field_61ae213f1f218'),(279796,41897,'fft_hide_nav','0'),(279797,41897,'_fft_hide_nav','field_635bd5e43527c'),(279798,41897,'fft_hide_header_call_to_action','0'),(279799,41897,'_fft_hide_header_call_to_action','field_635bd6723527d'),(279800,41897,'fft_page_sitemap','0'),(279801,41897,'_fft_page_sitemap','field_61af9b34e8181'),(279802,41897,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:5:\"video\";i:6;s:4:\"tabs\";i:7;s:10:\"text_block\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(279803,41897,'_blocks','field_6176696113096'),(279804,41897,'blocks_2_acfe_flexible_toggle',''),(279805,41897,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(279806,41897,'blocks_2_acfe_flexible_layout_title','Form'),(279807,41897,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(279808,41897,'blocks_2_row_content_format','standard'),(279809,41897,'_blocks_2_row_content_format','field_6481ead962881'),(279810,41897,'blocks_2_row_content_title',''),(279811,41897,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(279812,41897,'blocks_2_row_content_heading','Enquire Today'),(279813,41897,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(279814,41897,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(279815,41897,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(279816,41897,'blocks_2_row_content_actions',''),(279817,41897,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(279818,41897,'blocks_2_row_content',''),(279819,41897,'_blocks_2_row_content','field_61a0f5f5b3db0'),(279820,41897,'blocks_2_row_form','40394'),(279821,41897,'_blocks_2_row_form','field_61a4ff2c0b08e'),(279822,41897,'blocks_2_row_form_button_label',''),(279823,41897,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(279824,41897,'blocks_0_acfe_flexible_toggle',''),(279825,41897,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(279826,41897,'blocks_0_acfe_flexible_layout_title','Template'),(279827,41897,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(279828,41897,'blocks_0_template','39087'),(279829,41897,'_blocks_0_template','field_617bdd570fe01'),(279830,41897,'blocks_1_acfe_flexible_toggle',''),(279831,41897,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(279832,41897,'blocks_1_acfe_flexible_layout_title','Steps'),(279833,41897,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(279834,41897,'blocks_1_row_content_title',''),(279835,41897,'_blocks_1_row_content_title','field_64888cd1e26e0'),(279836,41897,'blocks_1_row_content_heading','Benefits of training with us'),(279837,41897,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(279838,41897,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(279839,41897,'_blocks_1_row_content_text','field_64888ce2e26e2'),(279840,41897,'blocks_1_row_content_actions',''),(279841,41897,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(279842,41897,'blocks_1_row_content',''),(279843,41897,'_blocks_1_row_content','field_64888cb0e26df'),(279844,41897,'blocks_1_steps_0_icon','progression.svg'),(279845,41897,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(279846,41897,'blocks_1_steps_0_title','Earning Potential'),(279847,41897,'_blocks_1_steps_0_title','field_64888d94e26e7'),(279848,41897,'blocks_1_steps_0_text','Attract new clients, retain current ones, and increase your rates with the Diploma in Biomechanics Coaching. This programme gives you a system to reach new clients and work more effectively with existing ones. Full body screenings may also require extra sessions, providing clients with thorough support and helping you build stronger, long-term relationships.'),(279849,41897,'_blocks_1_steps_0_text','field_64888d99e26e8'),(279850,41897,'blocks_1_steps_1_icon','support.svg'),(279851,41897,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(279852,41897,'blocks_1_steps_1_title','Lifetime Learning Promise'),(279853,41897,'_blocks_1_steps_1_title','field_64888d94e26e7'),(279854,41897,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(279855,41897,'_blocks_1_steps_1_text','field_64888d99e26e8'),(279856,41897,'blocks_1_steps_2_icon','qualification.svg'),(279857,41897,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(279858,41897,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(279859,41897,'_blocks_1_steps_2_title','field_64888d94e26e7'),(279860,41897,'blocks_1_steps_2_text','Developed through over 20 years of research with 4,000 participants - from those recovering from injury to active individuals - is a comprehensive, evidence-backed programme for mastering movement assessments. Through a blend of online learning and hands-on workshops, you’ll learn specific tests and screens to understand the roles of the pelvis, spine, and upper body in lower limb function, particularly foot mechanics. This approach equips you with the insights needed for effective orthotic prescription and tailored movement strategies, helping you optimise outcomes for every client.'),(279861,41897,'_blocks_1_steps_2_text','field_64888d99e26e8'),(279862,41897,'blocks_1_steps_3_icon','leaders.svg'),(279863,41897,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(279864,41897,'blocks_1_steps_3_title','Stand Out From the Crowd'),(279865,41897,'_blocks_1_steps_3_title','field_64888d94e26e7'),(279866,41897,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(279867,41897,'_blocks_1_steps_3_text','field_64888d99e26e8'),(279868,41897,'blocks_1_steps','4'),(279869,41897,'_blocks_1_steps','field_64888d44e26e5'),(279870,41897,'blocks_3_acfe_flexible_toggle',''),(279871,41897,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(279872,41897,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(279873,41897,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(279874,41897,'blocks_3_options_theme','#ffffff'),(279875,41897,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(279876,41897,'blocks_3_options_reverse','0'),(279877,41897,'_blocks_3_options_reverse','field_61768049bb8ac'),(279878,41897,'blocks_3_options',''),(279879,41897,'_blocks_3_options','field_617682517c334'),(279880,41897,'blocks_3_split_5050_image','39617'),(279881,41897,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(279882,41897,'blocks_3_split_5050_video',''),(279883,41897,'_blocks_3_split_5050_video','field_6239f3160848a'),(279884,41897,'blocks_3_split_5050_content_title',''),(279885,41897,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(279886,41897,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(279887,41897,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(279888,41897,'blocks_3_split_5050_content_text','This integrated system offers a full-body approach, covering the pelvis, spine, shoulders, knees, and feet in a comprehensive biomechanical assessment programme. By understanding how the upper body affects lower limb mechanics, podiatrists can address foot issues with a more holistic perspective. This unique assessment method enables you to uncover connections and solutions that traditional approaches may overlook, helping to improve client retention and build trust over time.\r\n\r\nOur model promotes a prevention-focused, system-led approach rather than just responding to symptoms. This proactive method allows you to expand your client base while reducing risks through exercise prescription, supporting clients before, during, and after injuries. It also empowers you with exercise prescription skills that complement your existing expertise, allowing for informed orthotic prescriptions and an integrated care approach to foot health.'),(279889,41897,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(279890,41897,'blocks_3_split_5050_content_actions',''),(279891,41897,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(279892,41897,'blocks_3_split_5050_content',''),(279893,41897,'_blocks_3_split_5050_content','field_61767afceb8ba'),(279894,41897,'blocks_4_acfe_flexible_toggle',''),(279895,41897,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(279896,41897,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(279897,41897,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(279898,41897,'blocks_4_options_theme','#ffffff'),(279899,41897,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(279900,41897,'blocks_4_options_reverse','1'),(279901,41897,'_blocks_4_options_reverse','field_61768049bb8ac'),(279902,41897,'blocks_4_options',''),(279903,41897,'_blocks_4_options','field_617682517c334'),(279904,41897,'blocks_4_split_5050_image','41371'),(279905,41897,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(279906,41897,'blocks_4_split_5050_video',''),(279907,41897,'_blocks_4_split_5050_video','field_6239f3160848a'),(279908,41897,'blocks_4_split_5050_content_title',''),(279909,41897,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(279910,41897,'blocks_4_split_5050_content_heading','Backed by experts in the field'),(279911,41897,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(279912,41897,'blocks_4_split_5050_content_text','Martin Haines RGRT MCSP SRP IBAM, has been the Lead Physiotherapist at Crystal Palace FC and Arsenal FC, as well treating professional rugby players from the England rugby team and Premiership as well as professional footballers from Premiership Teams. He has been the Clinical Director at 4 clinics in the UK and lead consultant for clinics in Sweden and USA. He has been on the PGA Performance Institute and has worked with 5 Olympic Champions. He has also been involved with McLaren F1, working with their drivers to help prevent and manage injury as well as helping design their cars.\r\n\r\nMartin has worked with the Biomechanics Education Team to develop the content for their courses and workshops and consults to help future courses. He has a particular interest in developing biomechanics courses for medical professionals including the Podiatry workshop/course\r\n\r\nPersonally, Martin is an accomplished author and his work has been presented at scientific congresses across the world, including the IOC World Congress on Illness and Injury in Sport. He is a former Honorary Senior Lecturer at Salford University and former chair of the UK Biomechanics Coaching Association.'),(279913,41897,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(279914,41897,'blocks_4_split_5050_content_actions',''),(279915,41897,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(279916,41897,'blocks_4_split_5050_content',''),(279917,41897,'_blocks_4_split_5050_content','field_61767afceb8ba'),(279918,41897,'blocks_5_acfe_flexible_toggle',''),(279919,41897,'_blocks_5_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(279920,41897,'blocks_5_acfe_flexible_layout_title','Video'),(279921,41897,'_blocks_5_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(279922,41897,'blocks_5_size','large'),(279923,41897,'_blocks_5_size','field_6487038f297c1'),(279924,41897,'blocks_5_row_content_title',''),(279925,41897,'_blocks_5_row_content_title','field_64870132a865d'),(279926,41897,'blocks_5_row_content_heading','Watch here our exciting interview with Martin Haines '),(279927,41897,'_blocks_5_row_content_heading','field_64870142a865e'),(279928,41897,'blocks_5_row_content_text',''),(279929,41897,'_blocks_5_row_content_text','field_64870148a865f'),(279930,41897,'blocks_5_row_content',''),(279931,41897,'_blocks_5_row_content','field_6487008ba865c'),(279932,41897,'blocks_5_video_src','https://youtu.be/_WP-i7QnhDA'),(279933,41897,'_blocks_5_video_src','field_6193c4a98ec07'),(279934,41897,'blocks_5_video_thumbnail',''),(279935,41897,'_blocks_5_video_thumbnail','field_6193c4a08ec06'),(279936,41897,'blocks_6_acfe_flexible_toggle',''),(279937,41897,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(279938,41897,'blocks_6_acfe_flexible_layout_title','Tabs'),(279939,41897,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(279940,41897,'blocks_6_options_theme','#ffffff'),(279941,41897,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(279942,41897,'blocks_6_options',''),(279943,41897,'_blocks_6_options','field_6177cfcd8140f'),(279944,41897,'blocks_6_tabs_0_tab_label','What will I learn?'),(279945,41897,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(279946,41897,'blocks_6_tabs_0_tab_content_title',''),(279947,41897,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(279948,41897,'blocks_6_tabs_0_tab_content_heading','What you’ll learn'),(279949,41897,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(279950,41897,'blocks_6_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n 	<li>Screening System that Informs Orthotic Prescription</li>\r\n 	<li>Provide Exercise Prescription Skills</li>\r\n</ul>'),(279951,41897,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(279952,41897,'blocks_6_tabs_0_tab_content_actions',''),(279953,41897,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(279954,41897,'blocks_6_tabs_0_tab_content',''),(279955,41897,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(279956,41897,'blocks_6_tabs_0_tab_image','39076'),(279957,41897,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(279958,41897,'blocks_6_tabs_1_tab_label','What do I need?'),(279959,41897,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(279960,41897,'blocks_6_tabs_1_tab_content_title',''),(279961,41897,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(279962,41897,'blocks_6_tabs_1_tab_content_heading','Entry requirements'),(279963,41897,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(279964,41897,'blocks_6_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Podiatry Qualification</li>\r\n 	<li>Chiropodist Qualification</li>\r\n 	<li>Orthotist Qualification</li>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(279965,41897,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(279966,41897,'blocks_6_tabs_1_tab_content_actions',''),(279967,41897,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(279968,41897,'blocks_6_tabs_1_tab_content',''),(279969,41897,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(279970,41897,'blocks_6_tabs_1_tab_image','39223'),(279971,41897,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(279972,41897,'blocks_6_tabs_2_tab_label','Where can I learn?'),(279973,41897,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(279974,41897,'blocks_6_tabs_2_tab_content_title',''),(279975,41897,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(279976,41897,'blocks_6_tabs_2_tab_content_heading','Locations'),(279977,41897,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(279978,41897,'blocks_6_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(279979,41897,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(279980,41897,'blocks_6_tabs_2_tab_content_actions',''),(279981,41897,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(279982,41897,'blocks_6_tabs_2_tab_content',''),(279983,41897,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(279984,41897,'blocks_6_tabs_2_tab_image','39224'),(279985,41897,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(279986,41897,'blocks_6_tabs','3'),(279987,41897,'_blocks_6_tabs','field_6177cff281419'),(279988,41897,'blocks_7_acfe_flexible_toggle',''),(279989,41897,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(279990,41897,'blocks_7_acfe_flexible_layout_title','Text Block'),(279991,41897,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(279992,41897,'blocks_7_options_theme','#b61234'),(279993,41897,'_blocks_7_options_theme','field_6176830e2ad17'),(279994,41897,'blocks_7_options',''),(279995,41897,'_blocks_7_options','field_6176830e2ad16'),(279996,41897,'blocks_7_text_block_heading','Fees & Funding Options'),(279997,41897,'_blocks_7_text_block_heading','field_617669d413097'),(279998,41897,'blocks_7_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(279999,41897,'_blocks_7_text_block_content','field_617669ec13098'),(280000,41897,'blocks_8_acfe_flexible_toggle',''),(280001,41897,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(280002,41897,'blocks_8_acfe_flexible_layout_title','Icons'),(280003,41897,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(280004,41897,'blocks_8_options_theme','#b61234'),(280005,41897,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(280006,41897,'blocks_8_options_format','row'),(280007,41897,'_blocks_8_options_format','field_64bfde9a90690'),(280008,41897,'blocks_8_options',''),(280009,41897,'_blocks_8_options','field_64bfdd9b90684'),(280010,41897,'blocks_8_icon_row_items_0_icon','payment-plans.svg'),(280011,41897,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(280012,41897,'blocks_8_icon_row_items_0_label','Pay in Full'),(280013,41897,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(280014,41897,'blocks_8_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(280015,41897,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(280016,41897,'blocks_8_icon_row_items_1_icon','finance.svg'),(280017,41897,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(280018,41897,'blocks_8_icon_row_items_1_label','0% finance'),(280019,41897,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(280020,41897,'blocks_8_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(280021,41897,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(280022,41897,'blocks_8_icon_row_items_2_icon','deposit.svg'),(280023,41897,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(280024,41897,'blocks_8_icon_row_items_2_label','Deposit & balance'),(280025,41897,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(280026,41897,'blocks_8_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(280027,41897,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(280028,41897,'blocks_8_icon_row_items','3'),(280029,41897,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(280030,41897,'blocks_9_acfe_flexible_toggle',''),(280031,41897,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(280032,41897,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(280033,41897,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(280034,41897,'blocks_9_options_theme','#f5f5f5'),(280035,41897,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(280036,41897,'blocks_9_options_reverse','0'),(280037,41897,'_blocks_9_options_reverse','field_61768049bb8ac'),(280038,41897,'blocks_9_options',''),(280039,41897,'_blocks_9_options','field_617682517c334'),(280040,41897,'blocks_9_split_5050_image','40920'),(280041,41897,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(280042,41897,'blocks_9_split_5050_video',''),(280043,41897,'_blocks_9_split_5050_video','field_6239f3160848a'),(280044,41897,'blocks_9_split_5050_content_title',''),(280045,41897,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(280046,41897,'blocks_9_split_5050_content_heading','Why Study This Course?'),(280047,41897,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(280048,41897,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(280049,41897,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(280050,41897,'blocks_9_split_5050_content_actions',''),(280051,41897,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(280052,41897,'blocks_9_split_5050_content',''),(280053,41897,'_blocks_9_split_5050_content','field_61767afceb8ba'),(280054,41897,'blocks_10_acfe_flexible_toggle',''),(280055,41897,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(280056,41897,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(280057,41897,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(280058,41897,'blocks_10_testimonial_slider_content_title',''),(280059,41897,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(280060,41897,'blocks_10_testimonial_slider_content_heading','Testimonials'),(280061,41897,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(280062,41897,'blocks_10_testimonial_slider_content_text',''),(280063,41897,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(280064,41897,'blocks_10_testimonial_slider_content_actions',''),(280065,41897,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(280066,41897,'blocks_10_testimonial_slider_content',''),(280067,41897,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(280068,41897,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(280069,41897,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(280070,41897,'blocks_10_testimonial_slider_ambassador_bool','0'),(280071,41897,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(280072,41897,'blocks_11_acfe_flexible_toggle',''),(280073,41897,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(280074,41897,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(280075,41897,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(280076,41897,'blocks_11_options_theme','#ffffff'),(280077,41897,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(280078,41897,'blocks_11_options_state','0'),(280079,41897,'_blocks_11_options_state','field_6239fcb7508c5'),(280080,41897,'blocks_11_options',''),(280081,41897,'_blocks_11_options','field_6177e2991ac44'),(280082,41897,'blocks_11_content_title',''),(280083,41897,'_blocks_11_content_title','field_64d237e8bb1e2'),(280084,41897,'blocks_11_content_heading','Frequently asked questions '),(280085,41897,'_blocks_11_content_heading','field_64d237e8bb1e3'),(280086,41897,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(280087,41897,'_blocks_11_content_text','field_64d237e8bb1e4'),(280088,41897,'blocks_11_content_actions',''),(280089,41897,'_blocks_11_content_actions','field_64d237e8bb1e5'),(280090,41897,'blocks_11_content_align','left'),(280091,41897,'_blocks_11_content_align','field_64d2443e6b6aa'),(280092,41897,'blocks_11_content',''),(280093,41897,'_blocks_11_content','field_64d237e8bb1e1'),(280094,41897,'blocks_11_accordion_content','faqs'),(280095,41897,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(280096,41897,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(280097,41897,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(280098,41897,'blocks_11_actions',''),(280099,41897,'_blocks_11_actions','field_61a746a817f7a'),(280100,41898,'hide_hero','0'),(280101,41898,'_hide_hero','field_66a2380fcda39'),(280102,41898,'hero_title','Biomechanics and Sports Coaches '),(280103,41898,'_hero_title','field_617571fe285e8'),(280104,41898,'hero_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(280105,41898,'_hero_text','field_6175723c285e9'),(280106,41898,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39249-3\";s:6:\"target\";s:0:\"\";}'),(280107,41898,'_hero_actions_0_button','field_61757281285eb'),(280108,41898,'hero_actions','1'),(280109,41898,'_hero_actions','field_61757270285ea'),(280110,41898,'hero_style','default'),(280111,41898,'_hero_style','field_62051d9dc5324'),(280112,41898,'_thumbnail_id','39251'),(280113,41898,'__thumbnail_id','field_617570855ddaf'),(280114,41898,'hero_image_pos_x','right'),(280115,41898,'_hero_image_pos_x','field_62ec3d05390bb'),(280116,41898,'hero_image_pos_y','top'),(280117,41898,'_hero_image_pos_y','field_62ec3d05390bc'),(280118,41898,'hero_image_pos',''),(280119,41898,'_hero_image_pos','field_62ec3d05390ba'),(280120,41898,'fft_hide_from_listings','0'),(280121,41898,'_fft_hide_from_listings','field_61f1320446ab2'),(280122,41898,'fft_page_format','default'),(280123,41898,'_fft_page_format','field_61ae213f1f218'),(280124,41898,'fft_hide_nav','0'),(280125,41898,'_fft_hide_nav','field_635bd5e43527c'),(280126,41898,'fft_hide_header_call_to_action','0'),(280127,41898,'_fft_hide_header_call_to_action','field_635bd6723527d'),(280128,41898,'fft_page_sitemap','0'),(280129,41898,'_fft_page_sitemap','field_61af9b34e8181'),(280130,41898,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"steps\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:10:\"accordions\";i:9;s:18:\"testimonial_slider\";}'),(280131,41898,'_blocks','field_6176696113096'),(280132,41898,'blocks_0_acfe_flexible_toggle',''),(280133,41898,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(280134,41898,'blocks_0_acfe_flexible_layout_title','Template'),(280135,41898,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(280136,41898,'blocks_0_template','39087'),(280137,41898,'_blocks_0_template','field_617bdd570fe01'),(280138,41898,'blocks_4_acfe_flexible_toggle',''),(280139,41898,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(280140,41898,'blocks_4_acfe_flexible_layout_title','Tabs'),(280141,41898,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(280142,41898,'blocks_4_options_theme','#ffffff'),(280143,41898,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(280144,41898,'blocks_4_options',''),(280145,41898,'_blocks_4_options','field_6177cfcd8140f'),(280146,41898,'blocks_4_tabs_0_tab_label','What will I learn ?'),(280147,41898,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(280148,41898,'blocks_4_tabs_0_tab_content_title',''),(280149,41898,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(280150,41898,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(280151,41898,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(280152,41898,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(280153,41898,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(280154,41898,'blocks_4_tabs_0_tab_content_actions',''),(280155,41898,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(280156,41898,'blocks_4_tabs_0_tab_content',''),(280157,41898,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(280158,41898,'blocks_4_tabs_0_tab_image','39076'),(280159,41898,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(280160,41898,'blocks_4_tabs_1_tab_label','What do I need ?'),(280161,41898,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(280162,41898,'blocks_4_tabs_1_tab_content_title',''),(280163,41898,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(280164,41898,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(280165,41898,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(280166,41898,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(280167,41898,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(280168,41898,'blocks_4_tabs_1_tab_content_actions',''),(280169,41898,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(280170,41898,'blocks_4_tabs_1_tab_content',''),(280171,41898,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(280172,41898,'blocks_4_tabs_1_tab_image','39223'),(280173,41898,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(280174,41898,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(280175,41898,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(280176,41898,'blocks_4_tabs_2_tab_content_title',''),(280177,41898,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(280178,41898,'blocks_4_tabs_2_tab_content_heading','Locations'),(280179,41898,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(280180,41898,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(280181,41898,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(280182,41898,'blocks_4_tabs_2_tab_content_actions',''),(280183,41898,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(280184,41898,'blocks_4_tabs_2_tab_content',''),(280185,41898,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(280186,41898,'blocks_4_tabs_2_tab_image','39224'),(280187,41898,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(280188,41898,'blocks_4_tabs','3'),(280189,41898,'_blocks_4_tabs','field_6177cff281419'),(280190,41898,'blocks_5_acfe_flexible_toggle',''),(280191,41898,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(280192,41898,'blocks_5_acfe_flexible_layout_title','Text Block'),(280193,41898,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(280194,41898,'blocks_5_options_theme','#b61234'),(280195,41898,'_blocks_5_options_theme','field_6176830e2ad17'),(280196,41898,'blocks_5_options',''),(280197,41898,'_blocks_5_options','field_6176830e2ad16'),(280198,41898,'blocks_5_text_block_heading','Fees & Funding Options'),(280199,41898,'_blocks_5_text_block_heading','field_617669d413097'),(280200,41898,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(280201,41898,'_blocks_5_text_block_content','field_617669ec13098'),(280202,41898,'blocks_6_acfe_flexible_toggle',''),(280203,41898,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(280204,41898,'blocks_6_acfe_flexible_layout_title','Icons'),(280205,41898,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(280206,41898,'blocks_6_options_theme','#b61234'),(280207,41898,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(280208,41898,'blocks_6_options_format','row'),(280209,41898,'_blocks_6_options_format','field_64bfde9a90690'),(280210,41898,'blocks_6_options',''),(280211,41898,'_blocks_6_options','field_64bfdd9b90684'),(280212,41898,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(280213,41898,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(280214,41898,'blocks_6_icon_row_items_0_label','Pay in Full'),(280215,41898,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(280216,41898,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(280217,41898,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(280218,41898,'blocks_6_icon_row_items_1_icon','finance.svg'),(280219,41898,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(280220,41898,'blocks_6_icon_row_items_1_label','0% finance'),(280221,41898,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(280222,41898,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(280223,41898,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(280224,41898,'blocks_6_icon_row_items_2_icon','deposit.svg'),(280225,41898,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(280226,41898,'blocks_6_icon_row_items_2_label','Deposit & balance'),(280227,41898,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(280228,41898,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(280229,41898,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(280230,41898,'blocks_6_icon_row_items','3'),(280231,41898,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(280232,41898,'blocks_1_acfe_flexible_toggle',''),(280233,41898,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(280234,41898,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(280235,41898,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(280236,41898,'blocks_1_options_theme','#ffffff'),(280237,41898,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(280238,41898,'blocks_1_options_reverse','0'),(280239,41898,'_blocks_1_options_reverse','field_61768049bb8ac'),(280240,41898,'blocks_1_options',''),(280241,41898,'_blocks_1_options','field_617682517c334'),(280242,41898,'blocks_1_split_5050_image','39252'),(280243,41898,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(280244,41898,'blocks_1_split_5050_video',''),(280245,41898,'_blocks_1_split_5050_video','field_6239f3160848a'),(280246,41898,'blocks_1_split_5050_content_title',''),(280247,41898,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(280248,41898,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports coach'),(280249,41898,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(280250,41898,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from, injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(280251,41898,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(280252,41898,'blocks_1_split_5050_content_actions',''),(280253,41898,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(280254,41898,'blocks_1_split_5050_content',''),(280255,41898,'_blocks_1_split_5050_content','field_61767afceb8ba'),(280256,41898,'blocks_2_acfe_flexible_toggle',''),(280257,41898,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(280258,41898,'blocks_2_acfe_flexible_layout_title','Form'),(280259,41898,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(280260,41898,'blocks_2_row_content_format','standard'),(280261,41898,'_blocks_2_row_content_format','field_6481ead962881'),(280262,41898,'blocks_2_row_content_title',''),(280263,41898,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(280264,41898,'blocks_2_row_content_heading','Enquire Today'),(280265,41898,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(280266,41898,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(280267,41898,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(280268,41898,'blocks_2_row_content_actions',''),(280269,41898,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(280270,41898,'blocks_2_row_content',''),(280271,41898,'_blocks_2_row_content','field_61a0f5f5b3db0'),(280272,41898,'blocks_2_row_form','40394'),(280273,41898,'_blocks_2_row_form','field_61a4ff2c0b08e'),(280274,41898,'blocks_2_row_form_button_label',''),(280275,41898,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(280276,41898,'blocks_3_acfe_flexible_toggle',''),(280277,41898,'_blocks_3_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(280278,41898,'blocks_3_acfe_flexible_layout_title','Steps'),(280279,41898,'_blocks_3_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(280280,41898,'blocks_3_row_content_title',''),(280281,41898,'_blocks_3_row_content_title','field_64888cd1e26e0'),(280282,41898,'blocks_3_row_content_heading','Benefits of training with us'),(280283,41898,'_blocks_3_row_content_heading','field_64888cd9e26e1'),(280284,41898,'blocks_3_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(280285,41898,'_blocks_3_row_content_text','field_64888ce2e26e2'),(280286,41898,'blocks_3_row_content_actions',''),(280287,41898,'_blocks_3_row_content_actions','field_64888cf5e26e3'),(280288,41898,'blocks_3_row_content',''),(280289,41898,'_blocks_3_row_content','field_64888cb0e26df'),(280290,41898,'blocks_3_steps_0_icon','progression.svg'),(280291,41898,'_blocks_3_steps_0_icon','field_64888d53e26e6'),(280292,41898,'blocks_3_steps_0_title','Earning potential'),(280293,41898,'_blocks_3_steps_0_title','field_64888d94e26e7'),(280294,41898,'blocks_3_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(280295,41898,'_blocks_3_steps_0_text','field_64888d99e26e8'),(280296,41898,'blocks_3_steps_1_icon','support.svg'),(280297,41898,'_blocks_3_steps_1_icon','field_64888d53e26e6'),(280298,41898,'blocks_3_steps_1_title','Lifetime Learning Promise'),(280299,41898,'_blocks_3_steps_1_title','field_64888d94e26e7'),(280300,41898,'blocks_3_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(280301,41898,'_blocks_3_steps_1_text','field_64888d99e26e8'),(280302,41898,'blocks_3_steps_2_icon','qualification.svg'),(280303,41898,'_blocks_3_steps_2_icon','field_64888d53e26e6'),(280304,41898,'blocks_3_steps_2_title','Evidence based hands on learning'),(280305,41898,'_blocks_3_steps_2_title','field_64888d94e26e7'),(280306,41898,'blocks_3_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(280307,41898,'_blocks_3_steps_2_text','field_64888d99e26e8'),(280308,41898,'blocks_3_steps_3_icon','leaders.svg'),(280309,41898,'_blocks_3_steps_3_icon','field_64888d53e26e6'),(280310,41898,'blocks_3_steps_3_title','Stand out from the crowd'),(280311,41898,'_blocks_3_steps_3_title','field_64888d94e26e7'),(280312,41898,'blocks_3_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(280313,41898,'_blocks_3_steps_3_text','field_64888d99e26e8'),(280314,41898,'blocks_3_steps','4'),(280315,41898,'_blocks_3_steps','field_64888d44e26e5'),(280316,41898,'blocks_7_acfe_flexible_toggle',''),(280317,41898,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(280318,41898,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(280319,41898,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(280320,41898,'blocks_7_options_theme','#ffffff'),(280321,41898,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(280322,41898,'blocks_7_options_reverse','0'),(280323,41898,'_blocks_7_options_reverse','field_61768049bb8ac'),(280324,41898,'blocks_7_options',''),(280325,41898,'_blocks_7_options','field_617682517c334'),(280326,41898,'blocks_7_split_5050_image','40491'),(280327,41898,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(280328,41898,'blocks_7_split_5050_video',''),(280329,41898,'_blocks_7_split_5050_video','field_6239f3160848a'),(280330,41898,'blocks_7_split_5050_content_title',''),(280331,41898,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(280332,41898,'blocks_7_split_5050_content_heading','Why study this course ?'),(280333,41898,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(280334,41898,'blocks_7_split_5050_content_text','<ul>\r\n 	<li style=\"text-align: left;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: left;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: left;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: left;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: left;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(280335,41898,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(280336,41898,'blocks_7_split_5050_content_actions',''),(280337,41898,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(280338,41898,'blocks_7_split_5050_content',''),(280339,41898,'_blocks_7_split_5050_content','field_61767afceb8ba'),(280340,41898,'blocks_8_acfe_flexible_toggle',''),(280341,41898,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(280342,41898,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(280343,41898,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(280344,41898,'blocks_8_options_theme','#ffffff'),(280345,41898,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(280346,41898,'blocks_8_options_state','0'),(280347,41898,'_blocks_8_options_state','field_6239fcb7508c5'),(280348,41898,'blocks_8_options',''),(280349,41898,'_blocks_8_options','field_6177e2991ac44'),(280350,41898,'blocks_8_content_title',''),(280351,41898,'_blocks_8_content_title','field_64d237e8bb1e2'),(280352,41898,'blocks_8_content_heading','Frequently asked questions '),(280353,41898,'_blocks_8_content_heading','field_64d237e8bb1e3'),(280354,41898,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(280355,41898,'_blocks_8_content_text','field_64d237e8bb1e4'),(280356,41898,'blocks_8_content_actions',''),(280357,41898,'_blocks_8_content_actions','field_64d237e8bb1e5'),(280358,41898,'blocks_8_content_align','left'),(280359,41898,'_blocks_8_content_align','field_64d2443e6b6aa'),(280360,41898,'blocks_8_content',''),(280361,41898,'_blocks_8_content','field_64d237e8bb1e1'),(280362,41898,'blocks_8_accordion_content','faqs'),(280363,41898,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(280364,41898,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(280365,41898,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(280366,41898,'blocks_8_actions',''),(280367,41898,'_blocks_8_actions','field_61a746a817f7a'),(280368,41898,'blocks_9_acfe_flexible_toggle',''),(280369,41898,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(280370,41898,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(280371,41898,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(280372,41898,'blocks_9_testimonial_slider_content_title',''),(280373,41898,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(280374,41898,'blocks_9_testimonial_slider_content_heading','Testimonials'),(280375,41898,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(280376,41898,'blocks_9_testimonial_slider_content_text',''),(280377,41898,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(280378,41898,'blocks_9_testimonial_slider_content_actions',''),(280379,41898,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(280380,41898,'blocks_9_testimonial_slider_content',''),(280381,41898,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(280382,41898,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(280383,41898,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(280384,41898,'blocks_9_testimonial_slider_ambassador_bool','0'),(280385,41898,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(280386,41899,'hide_hero','0'),(280387,41899,'_hide_hero','field_66a2380fcda39'),(280388,41899,'hero_title','Biomechanics and S&C coaches'),(280389,41899,'_hero_title','field_617571fe285e8'),(280390,41899,'hero_text','Gain a deeper understanding of anatomy and client movement and level up your Strength and Conditioning practice through intrinsic biomechanics.'),(280391,41899,'_hero_text','field_6175723c285e9'),(280392,41899,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39254-3\";s:6:\"target\";s:0:\"\";}'),(280393,41899,'_hero_actions_0_button','field_61757281285eb'),(280394,41899,'hero_actions','1'),(280395,41899,'_hero_actions','field_61757270285ea'),(280396,41899,'hero_style','default'),(280397,41899,'_hero_style','field_62051d9dc5324'),(280398,41899,'_thumbnail_id','39256'),(280399,41899,'__thumbnail_id','field_617570855ddaf'),(280400,41899,'hero_image_pos_x','right'),(280401,41899,'_hero_image_pos_x','field_62ec3d05390bb'),(280402,41899,'hero_image_pos_y','top'),(280403,41899,'_hero_image_pos_y','field_62ec3d05390bc'),(280404,41899,'hero_image_pos',''),(280405,41899,'_hero_image_pos','field_62ec3d05390ba'),(280406,41899,'fft_hide_from_listings','0'),(280407,41899,'_fft_hide_from_listings','field_61f1320446ab2'),(280408,41899,'fft_page_format','default'),(280409,41899,'_fft_page_format','field_61ae213f1f218'),(280410,41899,'fft_hide_nav','0'),(280411,41899,'_fft_hide_nav','field_635bd5e43527c'),(280412,41899,'fft_hide_header_call_to_action','0'),(280413,41899,'_fft_hide_header_call_to_action','field_635bd6723527d'),(280414,41899,'fft_page_sitemap','0'),(280415,41899,'_fft_page_sitemap','field_61af9b34e8181'),(280416,41899,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(280417,41899,'_blocks','field_6176696113096'),(280418,41899,'blocks_0_acfe_flexible_toggle',''),(280419,41899,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(280420,41899,'blocks_0_acfe_flexible_layout_title','Template'),(280421,41899,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(280422,41899,'blocks_0_template','39087'),(280423,41899,'_blocks_0_template','field_617bdd570fe01'),(280424,41899,'blocks_9_acfe_flexible_toggle',''),(280425,41899,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(280426,41899,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(280427,41899,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(280428,41899,'blocks_9_testimonial_slider_content_title',''),(280429,41899,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(280430,41899,'blocks_9_testimonial_slider_content_heading','Testimonials'),(280431,41899,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(280432,41899,'blocks_9_testimonial_slider_content_text',''),(280433,41899,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(280434,41899,'blocks_9_testimonial_slider_content_actions',''),(280435,41899,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(280436,41899,'blocks_9_testimonial_slider_content',''),(280437,41899,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(280438,41899,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(280439,41899,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(280440,41899,'blocks_9_testimonial_slider_ambassador_bool','0'),(280441,41899,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(280442,41899,'blocks_10_acfe_flexible_toggle',''),(280443,41899,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(280444,41899,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(280445,41899,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(280446,41899,'blocks_10_options_theme','#ffffff'),(280447,41899,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(280448,41899,'blocks_10_options_state','0'),(280449,41899,'_blocks_10_options_state','field_6239fcb7508c5'),(280450,41899,'blocks_10_options',''),(280451,41899,'_blocks_10_options','field_6177e2991ac44'),(280452,41899,'blocks_10_content_title',''),(280453,41899,'_blocks_10_content_title','field_64d237e8bb1e2'),(280454,41899,'blocks_10_content_heading','Frequently asked questions '),(280455,41899,'_blocks_10_content_heading','field_64d237e8bb1e3'),(280456,41899,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(280457,41899,'_blocks_10_content_text','field_64d237e8bb1e4'),(280458,41899,'blocks_10_content_actions',''),(280459,41899,'_blocks_10_content_actions','field_64d237e8bb1e5'),(280460,41899,'blocks_10_content_align','left'),(280461,41899,'_blocks_10_content_align','field_64d2443e6b6aa'),(280462,41899,'blocks_10_content',''),(280463,41899,'_blocks_10_content','field_64d237e8bb1e1'),(280464,41899,'blocks_10_accordion_content','faqs'),(280465,41899,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(280466,41899,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(280467,41899,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(280468,41899,'blocks_10_actions',''),(280469,41899,'_blocks_10_actions','field_61a746a817f7a'),(280470,41899,'blocks_1_acfe_flexible_toggle',''),(280471,41899,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(280472,41899,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(280473,41899,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(280474,41899,'blocks_1_options_theme','#ffffff'),(280475,41899,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(280476,41899,'blocks_1_options_reverse','0'),(280477,41899,'_blocks_1_options_reverse','field_61768049bb8ac'),(280478,41899,'blocks_1_options',''),(280479,41899,'_blocks_1_options','field_617682517c334'),(280480,41899,'blocks_1_split_5050_image','39257'),(280481,41899,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(280482,41899,'blocks_1_split_5050_video',''),(280483,41899,'_blocks_1_split_5050_video','field_6239f3160848a'),(280484,41899,'blocks_1_split_5050_content_title',''),(280485,41899,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(280486,41899,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(280487,41899,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(280488,41899,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(280489,41899,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(280490,41899,'blocks_1_split_5050_content_actions',''),(280491,41899,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(280492,41899,'blocks_1_split_5050_content',''),(280493,41899,'_blocks_1_split_5050_content','field_61767afceb8ba'),(280494,41899,'blocks_4_acfe_flexible_toggle',''),(280495,41899,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(280496,41899,'blocks_4_acfe_flexible_layout_title','Tabs'),(280497,41899,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(280498,41899,'blocks_4_options_theme','#ffffff'),(280499,41899,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(280500,41899,'blocks_4_options',''),(280501,41899,'_blocks_4_options','field_6177cfcd8140f'),(280502,41899,'blocks_4_tabs_0_tab_label','What will I learn ?'),(280503,41899,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(280504,41899,'blocks_4_tabs_0_tab_content_title',''),(280505,41899,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(280506,41899,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(280507,41899,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(280508,41899,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(280509,41899,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(280510,41899,'blocks_4_tabs_0_tab_content_actions',''),(280511,41899,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(280512,41899,'blocks_4_tabs_0_tab_content',''),(280513,41899,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(280514,41899,'blocks_4_tabs_0_tab_image','39076'),(280515,41899,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(280516,41899,'blocks_4_tabs_1_tab_label','What do I need ?'),(280517,41899,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(280518,41899,'blocks_4_tabs_1_tab_content_title',''),(280519,41899,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(280520,41899,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(280521,41899,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(280522,41899,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(280523,41899,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(280524,41899,'blocks_4_tabs_1_tab_content_actions',''),(280525,41899,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(280526,41899,'blocks_4_tabs_1_tab_content',''),(280527,41899,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(280528,41899,'blocks_4_tabs_1_tab_image','39223'),(280529,41899,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(280530,41899,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(280531,41899,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(280532,41899,'blocks_4_tabs_2_tab_content_title',''),(280533,41899,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(280534,41899,'blocks_4_tabs_2_tab_content_heading','Locations'),(280535,41899,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(280536,41899,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(280537,41899,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(280538,41899,'blocks_4_tabs_2_tab_content_actions',''),(280539,41899,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(280540,41899,'blocks_4_tabs_2_tab_content',''),(280541,41899,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(280542,41899,'blocks_4_tabs_2_tab_image','39224'),(280543,41899,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(280544,41899,'blocks_4_tabs','3'),(280545,41899,'_blocks_4_tabs','field_6177cff281419'),(280546,41899,'blocks_5_acfe_flexible_toggle',''),(280547,41899,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(280548,41899,'blocks_5_acfe_flexible_layout_title','Text Block'),(280549,41899,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(280550,41899,'blocks_5_options_theme','#b61234'),(280551,41899,'_blocks_5_options_theme','field_6176830e2ad17'),(280552,41899,'blocks_5_options',''),(280553,41899,'_blocks_5_options','field_6176830e2ad16'),(280554,41899,'blocks_5_text_block_heading','Fees & Funding Options'),(280555,41899,'_blocks_5_text_block_heading','field_617669d413097'),(280556,41899,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(280557,41899,'_blocks_5_text_block_content','field_617669ec13098'),(280558,41899,'blocks_6_acfe_flexible_toggle',''),(280559,41899,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(280560,41899,'blocks_6_acfe_flexible_layout_title','Icons'),(280561,41899,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(280562,41899,'blocks_6_options_theme','#b61234'),(280563,41899,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(280564,41899,'blocks_6_options_format','row'),(280565,41899,'_blocks_6_options_format','field_64bfde9a90690'),(280566,41899,'blocks_6_options',''),(280567,41899,'_blocks_6_options','field_64bfdd9b90684'),(280568,41899,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(280569,41899,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(280570,41899,'blocks_6_icon_row_items_0_label','Pay in Full'),(280571,41899,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(280572,41899,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(280573,41899,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(280574,41899,'blocks_6_icon_row_items_1_icon','finance.svg'),(280575,41899,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(280576,41899,'blocks_6_icon_row_items_1_label','0% finance'),(280577,41899,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(280578,41899,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(280579,41899,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(280580,41899,'blocks_6_icon_row_items_2_icon','deposit.svg'),(280581,41899,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(280582,41899,'blocks_6_icon_row_items_2_label','Deposit & balance'),(280583,41899,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(280584,41899,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(280585,41899,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(280586,41899,'blocks_6_icon_row_items','3'),(280587,41899,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(280588,41899,'blocks_7_acfe_flexible_toggle',''),(280589,41899,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(280590,41899,'blocks_7_acfe_flexible_layout_title','Steps'),(280591,41899,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(280592,41899,'blocks_7_row_content_title',''),(280593,41899,'_blocks_7_row_content_title','field_64888cd1e26e0'),(280594,41899,'blocks_7_row_content_heading','Benefits of training with us'),(280595,41899,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(280596,41899,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(280597,41899,'_blocks_7_row_content_text','field_64888ce2e26e2'),(280598,41899,'blocks_7_row_content_actions',''),(280599,41899,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(280600,41899,'blocks_7_row_content',''),(280601,41899,'_blocks_7_row_content','field_64888cb0e26df'),(280602,41899,'blocks_7_steps_0_icon','progression.svg'),(280603,41899,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(280604,41899,'blocks_7_steps_0_title','Attract new clients'),(280605,41899,'_blocks_7_steps_0_title','field_64888d94e26e7'),(280606,41899,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(280607,41899,'_blocks_7_steps_0_text','field_64888d99e26e8'),(280608,41899,'blocks_7_steps_1_icon','support.svg'),(280609,41899,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(280610,41899,'blocks_7_steps_1_title','Lifetime Learning Promise'),(280611,41899,'_blocks_7_steps_1_title','field_64888d94e26e7'),(280612,41899,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(280613,41899,'_blocks_7_steps_1_text','field_64888d99e26e8'),(280614,41899,'blocks_7_steps_2_icon','qualification.svg'),(280615,41899,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(280616,41899,'blocks_7_steps_2_title','Evidence based hands on learning'),(280617,41899,'_blocks_7_steps_2_title','field_64888d94e26e7'),(280618,41899,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You will learn how to test and screen, and learn methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(280619,41899,'_blocks_7_steps_2_text','field_64888d99e26e8'),(280620,41899,'blocks_7_steps_3_icon','leaders.svg'),(280621,41899,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(280622,41899,'blocks_7_steps_3_title','Stand out from the crowd'),(280623,41899,'_blocks_7_steps_3_title','field_64888d94e26e7'),(280624,41899,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(280625,41899,'_blocks_7_steps_3_text','field_64888d99e26e8'),(280626,41899,'blocks_7_steps','4'),(280627,41899,'_blocks_7_steps','field_64888d44e26e5'),(280628,41899,'blocks_2_acfe_flexible_toggle',''),(280629,41899,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(280630,41899,'blocks_2_acfe_flexible_layout_title','Form'),(280631,41899,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(280632,41899,'blocks_2_row_content_format','standard'),(280633,41899,'_blocks_2_row_content_format','field_6481ead962881'),(280634,41899,'blocks_2_row_content_title',''),(280635,41899,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(280636,41899,'blocks_2_row_content_heading','Enquire Today'),(280637,41899,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(280638,41899,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(280639,41899,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(280640,41899,'blocks_2_row_content_actions',''),(280641,41899,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(280642,41899,'blocks_2_row_content',''),(280643,41899,'_blocks_2_row_content','field_61a0f5f5b3db0'),(280644,41899,'blocks_2_row_form','40394'),(280645,41899,'_blocks_2_row_form','field_61a4ff2c0b08e'),(280646,41899,'blocks_2_row_form_button_label',''),(280647,41899,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(280648,41899,'blocks_3_acfe_flexible_toggle',''),(280649,41899,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(280650,41899,'blocks_3_acfe_flexible_layout_title','Video'),(280651,41899,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(280652,41899,'blocks_3_size','large'),(280653,41899,'_blocks_3_size','field_6487038f297c1'),(280654,41899,'blocks_3_row_content_title',''),(280655,41899,'_blocks_3_row_content_title','field_64870132a865d'),(280656,41899,'blocks_3_row_content_heading',''),(280657,41899,'_blocks_3_row_content_heading','field_64870142a865e'),(280658,41899,'blocks_3_row_content_text',''),(280659,41899,'_blocks_3_row_content_text','field_64870148a865f'),(280660,41899,'blocks_3_row_content',''),(280661,41899,'_blocks_3_row_content','field_6487008ba865c'),(280662,41899,'blocks_3_video_src',''),(280663,41899,'_blocks_3_video_src','field_6193c4a98ec07'),(280664,41899,'blocks_3_video_thumbnail',''),(280665,41899,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(280666,41899,'blocks_8_acfe_flexible_toggle',''),(280667,41899,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(280668,41899,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(280669,41899,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(280670,41899,'blocks_8_options_theme','#f5f5f5'),(280671,41899,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(280672,41899,'blocks_8_options_reverse','0'),(280673,41899,'_blocks_8_options_reverse','field_61768049bb8ac'),(280674,41899,'blocks_8_options',''),(280675,41899,'_blocks_8_options','field_617682517c334'),(280676,41899,'blocks_8_split_5050_image','40920'),(280677,41899,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(280678,41899,'blocks_8_split_5050_video',''),(280679,41899,'_blocks_8_split_5050_video','field_6239f3160848a'),(280680,41899,'blocks_8_split_5050_content_title',''),(280681,41899,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(280682,41899,'blocks_8_split_5050_content_heading','Why study this course ?'),(280683,41899,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(280684,41899,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(280685,41899,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(280686,41899,'blocks_8_split_5050_content_actions',''),(280687,41899,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(280688,41899,'blocks_8_split_5050_content',''),(280689,41899,'_blocks_8_split_5050_content','field_61767afceb8ba'),(280690,41900,'hide_hero','0'),(280691,41900,'_hide_hero','field_66a2380fcda39'),(280692,41900,'hero_title','How to Become a Biomechanics Coach'),(280693,41900,'_hero_title','field_617571fe285e8'),(280694,41900,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(280695,41900,'_hero_text','field_6175723c285e9'),(280696,41900,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39263-3\";s:6:\"target\";s:0:\"\";}'),(280697,41900,'_hero_actions_0_button','field_61757281285eb'),(280698,41900,'hero_actions','1'),(280699,41900,'_hero_actions','field_61757270285ea'),(280700,41900,'hero_style','default'),(280701,41900,'_hero_style','field_62051d9dc5324'),(280702,41900,'_thumbnail_id','39454'),(280703,41900,'__thumbnail_id','field_617570855ddaf'),(280704,41900,'hero_image_pos_x','right'),(280705,41900,'_hero_image_pos_x','field_62ec3d05390bb'),(280706,41900,'hero_image_pos_y','top'),(280707,41900,'_hero_image_pos_y','field_62ec3d05390bc'),(280708,41900,'hero_image_pos',''),(280709,41900,'_hero_image_pos','field_62ec3d05390ba'),(280710,41900,'fft_hide_from_listings','0'),(280711,41900,'_fft_hide_from_listings','field_61f1320446ab2'),(280712,41900,'fft_page_format','default'),(280713,41900,'_fft_page_format','field_61ae213f1f218'),(280714,41900,'fft_hide_nav','0'),(280715,41900,'_fft_hide_nav','field_635bd5e43527c'),(280716,41900,'fft_hide_header_call_to_action','0'),(280717,41900,'_fft_hide_header_call_to_action','field_635bd6723527d'),(280718,41900,'fft_page_sitemap','0'),(280719,41900,'_fft_page_sitemap','field_61af9b34e8181'),(280720,41900,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(280721,41900,'_blocks','field_6176696113096'),(280722,41900,'blocks_0_acfe_flexible_toggle',''),(280723,41900,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(280724,41900,'blocks_0_acfe_flexible_layout_title','Template'),(280725,41900,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(280726,41900,'blocks_0_template','39087'),(280727,41900,'_blocks_0_template','field_617bdd570fe01'),(280728,41900,'blocks_8_acfe_flexible_toggle','1'),(280729,41900,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(280730,41900,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(280731,41900,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(280732,41900,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(280733,41900,'_blocks_8_content','field_6193c9b5eac84'),(280734,41900,'blocks_1_acfe_flexible_toggle',''),(280735,41900,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(280736,41900,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(280737,41900,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(280738,41900,'blocks_1_options_theme','#ffffff'),(280739,41900,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(280740,41900,'blocks_1_options_reverse','0'),(280741,41900,'_blocks_1_options_reverse','field_61768049bb8ac'),(280742,41900,'blocks_1_options',''),(280743,41900,'_blocks_1_options','field_617682517c334'),(280744,41900,'blocks_1_split_5050_image','39623'),(280745,41900,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(280746,41900,'blocks_1_split_5050_video',''),(280747,41900,'_blocks_1_split_5050_video','field_6239f3160848a'),(280748,41900,'blocks_1_split_5050_content_title',''),(280749,41900,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(280750,41900,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(280751,41900,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(280752,41900,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of common modern ailments within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(280753,41900,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(280754,41900,'blocks_1_split_5050_content_actions',''),(280755,41900,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(280756,41900,'blocks_1_split_5050_content',''),(280757,41900,'_blocks_1_split_5050_content','field_61767afceb8ba'),(280758,41900,'blocks_4_acfe_flexible_toggle',''),(280759,41900,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(280760,41900,'blocks_4_acfe_flexible_layout_title','Tabs'),(280761,41900,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(280762,41900,'blocks_4_options_theme','#ffffff'),(280763,41900,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(280764,41900,'blocks_4_options',''),(280765,41900,'_blocks_4_options','field_6177cfcd8140f'),(280766,41900,'blocks_4_tabs_0_tab_label','What will I learn ?'),(280767,41900,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(280768,41900,'blocks_4_tabs_0_tab_content_title',''),(280769,41900,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(280770,41900,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(280771,41900,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(280772,41900,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(280773,41900,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(280774,41900,'blocks_4_tabs_0_tab_content_actions',''),(280775,41900,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(280776,41900,'blocks_4_tabs_0_tab_content',''),(280777,41900,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(280778,41900,'blocks_4_tabs_0_tab_image','39076'),(280779,41900,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(280780,41900,'blocks_4_tabs_1_tab_label','What do I need ?'),(280781,41900,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(280782,41900,'blocks_4_tabs_1_tab_content_title',''),(280783,41900,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(280784,41900,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(280785,41900,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(280786,41900,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(280787,41900,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(280788,41900,'blocks_4_tabs_1_tab_content_actions',''),(280789,41900,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(280790,41900,'blocks_4_tabs_1_tab_content',''),(280791,41900,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(280792,41900,'blocks_4_tabs_1_tab_image','41183'),(280793,41900,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(280794,41900,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(280795,41900,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(280796,41900,'blocks_4_tabs_2_tab_content_title',''),(280797,41900,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(280798,41900,'blocks_4_tabs_2_tab_content_heading','Locations'),(280799,41900,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(280800,41900,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(280801,41900,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(280802,41900,'blocks_4_tabs_2_tab_content_actions',''),(280803,41900,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(280804,41900,'blocks_4_tabs_2_tab_content',''),(280805,41900,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(280806,41900,'blocks_4_tabs_2_tab_image','39224'),(280807,41900,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(280808,41900,'blocks_4_tabs','3'),(280809,41900,'_blocks_4_tabs','field_6177cff281419'),(280810,41900,'blocks_5_acfe_flexible_toggle',''),(280811,41900,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(280812,41900,'blocks_5_acfe_flexible_layout_title','Text Block'),(280813,41900,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(280814,41900,'blocks_5_options_theme','#b61234'),(280815,41900,'_blocks_5_options_theme','field_6176830e2ad17'),(280816,41900,'blocks_5_options',''),(280817,41900,'_blocks_5_options','field_6176830e2ad16'),(280818,41900,'blocks_5_text_block_heading','Fees & Funding Options'),(280819,41900,'_blocks_5_text_block_heading','field_617669d413097'),(280820,41900,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(280821,41900,'_blocks_5_text_block_content','field_617669ec13098'),(280822,41900,'blocks_6_acfe_flexible_toggle',''),(280823,41900,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(280824,41900,'blocks_6_acfe_flexible_layout_title','Icons'),(280825,41900,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(280826,41900,'blocks_6_options_theme','#b61234'),(280827,41900,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(280828,41900,'blocks_6_options_format','row'),(280829,41900,'_blocks_6_options_format','field_64bfde9a90690'),(280830,41900,'blocks_6_options',''),(280831,41900,'_blocks_6_options','field_64bfdd9b90684'),(280832,41900,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(280833,41900,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(280834,41900,'blocks_6_icon_row_items_0_label','Pay in Full'),(280835,41900,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(280836,41900,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(280837,41900,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(280838,41900,'blocks_6_icon_row_items_1_icon','finance.svg'),(280839,41900,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(280840,41900,'blocks_6_icon_row_items_1_label','0% finance'),(280841,41900,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(280842,41900,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(280843,41900,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(280844,41900,'blocks_6_icon_row_items_2_icon','deposit.svg'),(280845,41900,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(280846,41900,'blocks_6_icon_row_items_2_label','Deposit & balance'),(280847,41900,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(280848,41900,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(280849,41900,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(280850,41900,'blocks_6_icon_row_items','3'),(280851,41900,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(280852,41900,'blocks_7_acfe_flexible_toggle',''),(280853,41900,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(280854,41900,'blocks_7_acfe_flexible_layout_title','Steps'),(280855,41900,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(280856,41900,'blocks_7_row_content_title',''),(280857,41900,'_blocks_7_row_content_title','field_64888cd1e26e0'),(280858,41900,'blocks_7_row_content_heading','Benefits of training with us'),(280859,41900,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(280860,41900,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(280861,41900,'_blocks_7_row_content_text','field_64888ce2e26e2'),(280862,41900,'blocks_7_row_content_actions',''),(280863,41900,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(280864,41900,'blocks_7_row_content',''),(280865,41900,'_blocks_7_row_content','field_64888cb0e26df'),(280866,41900,'blocks_7_steps_0_icon','progression.svg'),(280867,41900,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(280868,41900,'blocks_7_steps_0_title','Earning potential'),(280869,41900,'_blocks_7_steps_0_title','field_64888d94e26e7'),(280870,41900,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(280871,41900,'_blocks_7_steps_0_text','field_64888d99e26e8'),(280872,41900,'blocks_7_steps_1_icon','support.svg'),(280873,41900,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(280874,41900,'blocks_7_steps_1_title','Lifetime Learning Promise'),(280875,41900,'_blocks_7_steps_1_title','field_64888d94e26e7'),(280876,41900,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(280877,41900,'_blocks_7_steps_1_text','field_64888d99e26e8'),(280878,41900,'blocks_7_steps_2_icon','qualification.svg'),(280879,41900,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(280880,41900,'blocks_7_steps_2_title','Evidence based hands on learning'),(280881,41900,'_blocks_7_steps_2_title','field_64888d94e26e7'),(280882,41900,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(280883,41900,'_blocks_7_steps_2_text','field_64888d99e26e8'),(280884,41900,'blocks_7_steps_3_icon','leaders.svg'),(280885,41900,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(280886,41900,'blocks_7_steps_3_title','Stand out from the crowd'),(280887,41900,'_blocks_7_steps_3_title','field_64888d94e26e7'),(280888,41900,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(280889,41900,'_blocks_7_steps_3_text','field_64888d99e26e8'),(280890,41900,'blocks_7_steps','4'),(280891,41900,'_blocks_7_steps','field_64888d44e26e5'),(280892,41900,'blocks_2_acfe_flexible_toggle',''),(280893,41900,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(280894,41900,'blocks_2_acfe_flexible_layout_title','Form'),(280895,41900,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(280896,41900,'blocks_2_row_content_format','standard'),(280897,41900,'_blocks_2_row_content_format','field_6481ead962881'),(280898,41900,'blocks_2_row_content_title','Ready to get started?'),(280899,41900,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(280900,41900,'blocks_2_row_content_heading','Enquire Today!'),(280901,41900,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(280902,41900,'blocks_2_row_content_text','When you fill out the form you\'ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(280903,41900,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(280904,41900,'blocks_2_row_content_actions',''),(280905,41900,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(280906,41900,'blocks_2_row_content',''),(280907,41900,'_blocks_2_row_content','field_61a0f5f5b3db0'),(280908,41900,'blocks_2_row_form','40417'),(280909,41900,'_blocks_2_row_form','field_61a4ff2c0b08e'),(280910,41900,'blocks_2_row_form_button_label',''),(280911,41900,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(280912,41900,'blocks_3_acfe_flexible_toggle',''),(280913,41900,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(280914,41900,'blocks_3_acfe_flexible_layout_title','Video'),(280915,41900,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(280916,41900,'blocks_3_size','large'),(280917,41900,'_blocks_3_size','field_6487038f297c1'),(280918,41900,'blocks_3_row_content_title',''),(280919,41900,'_blocks_3_row_content_title','field_64870132a865d'),(280920,41900,'blocks_3_row_content_heading',''),(280921,41900,'_blocks_3_row_content_heading','field_64870142a865e'),(280922,41900,'blocks_3_row_content_text',''),(280923,41900,'_blocks_3_row_content_text','field_64870148a865f'),(280924,41900,'blocks_3_row_content',''),(280925,41900,'_blocks_3_row_content','field_6487008ba865c'),(280926,41900,'blocks_3_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(280927,41900,'_blocks_3_video_src','field_6193c4a98ec07'),(280928,41900,'blocks_3_video_thumbnail',''),(280929,41900,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(280930,41900,'blocks_9_acfe_flexible_toggle',''),(280931,41900,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(280932,41900,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(280933,41900,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(280934,41900,'blocks_9_options_theme','#f5f5f5'),(280935,41900,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(280936,41900,'blocks_9_options_reverse','0'),(280937,41900,'_blocks_9_options_reverse','field_61768049bb8ac'),(280938,41900,'blocks_9_options',''),(280939,41900,'_blocks_9_options','field_617682517c334'),(280940,41900,'blocks_9_split_5050_image','41307'),(280941,41900,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(280942,41900,'blocks_9_split_5050_video',''),(280943,41900,'_blocks_9_split_5050_video','field_6239f3160848a'),(280944,41900,'blocks_9_split_5050_content_title',''),(280945,41900,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(280946,41900,'blocks_9_split_5050_content_heading','Why study this course ?'),(280947,41900,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(280948,41900,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(280949,41900,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(280950,41900,'blocks_9_split_5050_content_actions',''),(280951,41900,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(280952,41900,'blocks_9_split_5050_content',''),(280953,41900,'_blocks_9_split_5050_content','field_61767afceb8ba'),(280954,41900,'blocks_10_acfe_flexible_toggle',''),(280955,41900,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(280956,41900,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(280957,41900,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(280958,41900,'blocks_10_testimonial_slider_content_title',''),(280959,41900,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(280960,41900,'blocks_10_testimonial_slider_content_heading','Testimonials'),(280961,41900,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(280962,41900,'blocks_10_testimonial_slider_content_text',''),(280963,41900,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(280964,41900,'blocks_10_testimonial_slider_content_actions',''),(280965,41900,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(280966,41900,'blocks_10_testimonial_slider_content',''),(280967,41900,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(280968,41900,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(280969,41900,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(280970,41900,'blocks_10_testimonial_slider_ambassador_bool','0'),(280971,41900,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(280972,41900,'blocks_11_acfe_flexible_toggle',''),(280973,41900,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(280974,41900,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(280975,41900,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(280976,41900,'blocks_11_options_theme','#ffffff'),(280977,41900,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(280978,41900,'blocks_11_options_state','0'),(280979,41900,'_blocks_11_options_state','field_6239fcb7508c5'),(280980,41900,'blocks_11_options',''),(280981,41900,'_blocks_11_options','field_6177e2991ac44'),(280982,41900,'blocks_11_content_title',''),(280983,41900,'_blocks_11_content_title','field_64d237e8bb1e2'),(280984,41900,'blocks_11_content_heading','Frequently asked questions '),(280985,41900,'_blocks_11_content_heading','field_64d237e8bb1e3'),(280986,41900,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(280987,41900,'_blocks_11_content_text','field_64d237e8bb1e4'),(280988,41900,'blocks_11_content_actions',''),(280989,41900,'_blocks_11_content_actions','field_64d237e8bb1e5'),(280990,41900,'blocks_11_content_align','left'),(280991,41900,'_blocks_11_content_align','field_64d2443e6b6aa'),(280992,41900,'blocks_11_content',''),(280993,41900,'_blocks_11_content','field_64d237e8bb1e1'),(280994,41900,'blocks_11_accordion_content','faqs'),(280995,41900,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(280996,41900,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(280997,41900,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(280998,41900,'blocks_11_actions',''),(280999,41900,'_blocks_11_actions','field_61a746a817f7a'),(281000,41901,'hide_hero','0'),(281001,41901,'_hide_hero','field_66a2380fcda39'),(281002,41901,'hero_title','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching '),(281003,41901,'_hero_title','field_617571fe285e8'),(281004,41901,'hero_text','Strapline: Elevate Your Pilates Practice with Intrinsic biomechanics and enhance your career pathways '),(281005,41901,'_hero_text','field_6175723c285e9'),(281006,41901,'hero_actions','1'),(281007,41901,'_hero_actions','field_61757270285ea'),(281008,41901,'hero_style','default'),(281009,41901,'_hero_style','field_62051d9dc5324'),(281010,41901,'_thumbnail_id','41524'),(281011,41901,'__thumbnail_id','field_617570855ddaf'),(281012,41901,'hero_image_pos_x','right'),(281013,41901,'_hero_image_pos_x','field_62ec3d05390bb'),(281014,41901,'hero_image_pos_y','top'),(281015,41901,'_hero_image_pos_y','field_62ec3d05390bc'),(281016,41901,'hero_image_pos',''),(281017,41901,'_hero_image_pos','field_62ec3d05390ba'),(281018,41901,'fft_hide_from_listings','0'),(281019,41901,'_fft_hide_from_listings','field_61f1320446ab2'),(281020,41901,'fft_page_format','default'),(281021,41901,'_fft_page_format','field_61ae213f1f218'),(281022,41901,'fft_hide_nav','0'),(281023,41901,'_fft_hide_nav','field_635bd5e43527c'),(281024,41901,'fft_hide_header_call_to_action','0'),(281025,41901,'_fft_hide_header_call_to_action','field_635bd6723527d'),(281026,41901,'fft_page_sitemap','0'),(281027,41901,'_fft_page_sitemap','field_61af9b34e8181'),(281028,41901,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(281029,41901,'_blocks','field_6176696113096'),(281030,41901,'course_label_text',''),(281031,41901,'_course_label_text','field_61e17babf71fa'),(281032,41901,'course_label',''),(281033,41901,'_course_label','field_61e12f92749a7'),(281034,41901,'course_description',''),(281035,41901,'_course_description','field_617ac5788e5e1'),(281036,41901,'course_key_info',''),(281037,41901,'_course_key_info','field_617ac6ad8e5e2'),(281038,41901,'course_included',''),(281039,41901,'_course_included','field_617ac6f08e5e4'),(281040,41901,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41520-4\";s:6:\"target\";s:0:\"\";}'),(281041,41901,'_hero_actions_0_button','field_61757281285eb'),(281042,41901,'blocks_0_acfe_flexible_toggle',''),(281043,41901,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(281044,41901,'blocks_0_acfe_flexible_layout_title','Icons'),(281045,41901,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(281046,41901,'blocks_0_options_theme','#b61234'),(281047,41901,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(281048,41901,'blocks_0_options_format','row'),(281049,41901,'_blocks_0_options_format','field_64bfde9a90690'),(281050,41901,'blocks_0_options',''),(281051,41901,'_blocks_0_options','field_64bfdd9b90684'),(281052,41901,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(281053,41901,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(281054,41901,'blocks_0_icon_row_items_0_label','Accreditation'),(281055,41901,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(281056,41901,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(281057,41901,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(281058,41901,'blocks_0_icon_row_items_1_icon','finance.svg'),(281059,41901,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(281060,41901,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(281061,41901,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(281062,41901,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(281063,41901,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(281064,41901,'blocks_0_icon_row_items_2_icon','progression.svg'),(281065,41901,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(281066,41901,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(281067,41901,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(281068,41901,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(281069,41901,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(281070,41901,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(281071,41901,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(281072,41901,'blocks_0_icon_row_items_3_label','Qualification'),(281073,41901,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(281074,41901,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(281075,41901,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(281076,41901,'blocks_0_icon_row_items','4'),(281077,41901,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(281078,41901,'blocks_5_acfe_flexible_toggle','1'),(281079,41901,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(281080,41901,'blocks_5_acfe_flexible_layout_title','Tabs'),(281081,41901,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(281082,41901,'blocks_5_options_theme','#ffffff'),(281083,41901,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(281084,41901,'blocks_5_options',''),(281085,41901,'_blocks_5_options','field_6177cfcd8140f'),(281086,41901,'blocks_5_tabs_0_tab_label','Entry requirements'),(281087,41901,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(281088,41901,'blocks_5_tabs_0_tab_content_title',''),(281089,41901,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(281090,41901,'blocks_5_tabs_0_tab_content_heading',''),(281091,41901,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(281092,41901,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(281093,41901,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(281094,41901,'blocks_5_tabs_0_tab_content_actions',''),(281095,41901,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(281096,41901,'blocks_5_tabs_0_tab_content',''),(281097,41901,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(281098,41901,'blocks_5_tabs_0_tab_image',''),(281099,41901,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(281100,41901,'blocks_5_tabs_1_tab_label','Learning format'),(281101,41901,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(281102,41901,'blocks_5_tabs_1_tab_content_title',''),(281103,41901,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(281104,41901,'blocks_5_tabs_1_tab_content_heading',''),(281105,41901,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(281106,41901,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(281107,41901,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(281108,41901,'blocks_5_tabs_1_tab_content_actions',''),(281109,41901,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(281110,41901,'blocks_5_tabs_1_tab_content',''),(281111,41901,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(281112,41901,'blocks_5_tabs_1_tab_image',''),(281113,41901,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(281114,41901,'blocks_5_tabs_2_tab_label','Qualifications included'),(281115,41901,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(281116,41901,'blocks_5_tabs_2_tab_content_title',''),(281117,41901,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(281118,41901,'blocks_5_tabs_2_tab_content_heading',''),(281119,41901,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(281120,41901,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(281121,41901,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(281122,41901,'blocks_5_tabs_2_tab_content_actions',''),(281123,41901,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(281124,41901,'blocks_5_tabs_2_tab_content',''),(281125,41901,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(281126,41901,'blocks_5_tabs_2_tab_image',''),(281127,41901,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(281128,41901,'blocks_5_tabs','3'),(281129,41901,'_blocks_5_tabs','field_6177cff281419'),(281130,41901,'blocks_4_acfe_flexible_toggle',''),(281131,41901,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(281132,41901,'blocks_4_acfe_flexible_layout_title','Template'),(281133,41901,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(281134,41901,'blocks_4_template','39207'),(281135,41901,'_blocks_4_template','field_617bdd570fe01'),(281136,41901,'blocks_6_acfe_flexible_toggle',''),(281137,41901,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(281138,41901,'blocks_6_acfe_flexible_layout_title','Icons'),(281139,41901,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(281140,41901,'blocks_6_options_theme','#f5f5f5'),(281141,41901,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(281142,41901,'blocks_6_options_format','stacked'),(281143,41901,'_blocks_6_options_format','field_64bfde9a90690'),(281144,41901,'blocks_6_options',''),(281145,41901,'_blocks_6_options','field_64bfdd9b90684'),(281146,41901,'blocks_6_row_content_title','Options available to pay for your course'),(281147,41901,'_blocks_6_row_content_title','field_64bfdd9b90687'),(281148,41901,'blocks_6_row_content_heading','Fees & Funding Options '),(281149,41901,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(281150,41901,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(281151,41901,'_blocks_6_row_content_text','field_64bfdd9b90689'),(281152,41901,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(281153,41901,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(281154,41901,'blocks_6_row_content_actions','1'),(281155,41901,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(281156,41901,'blocks_6_row_content',''),(281157,41901,'_blocks_6_row_content','field_64bfdd9b90686'),(281158,41901,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(281159,41901,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(281160,41901,'blocks_6_icon_row_items_0_label','Pay in full'),(281161,41901,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(281162,41901,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(281163,41901,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(281164,41901,'blocks_6_icon_row_items_1_icon','finance.svg'),(281165,41901,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(281166,41901,'blocks_6_icon_row_items_1_label','0% finance'),(281167,41901,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(281168,41901,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(281169,41901,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(281170,41901,'blocks_6_icon_row_items','3'),(281171,41901,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(281172,41901,'blocks_7_acfe_flexible_toggle',''),(281173,41901,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(281174,41901,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(281175,41901,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(281176,41901,'blocks_7_options_theme','#ffffff'),(281177,41901,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(281178,41901,'blocks_7_options_reverse','0'),(281179,41901,'_blocks_7_options_reverse','field_61768049bb8ac'),(281180,41901,'blocks_7_options',''),(281181,41901,'_blocks_7_options','field_617682517c334'),(281182,41901,'blocks_7_split_5050_image','41526'),(281183,41901,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(281184,41901,'blocks_7_split_5050_video',''),(281185,41901,'_blocks_7_split_5050_video','field_6239f3160848a'),(281186,41901,'blocks_7_split_5050_content_title',''),(281187,41901,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(281188,41901,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(281189,41901,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(281190,41901,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(281191,41901,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(281192,41901,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(281193,41901,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(281194,41901,'blocks_7_split_5050_content_actions','1'),(281195,41901,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(281196,41901,'blocks_7_split_5050_content',''),(281197,41901,'_blocks_7_split_5050_content','field_61767afceb8ba'),(281198,41901,'blocks_8_acfe_flexible_toggle',''),(281199,41901,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(281200,41901,'blocks_8_acfe_flexible_layout_title','Icons'),(281201,41901,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(281202,41901,'blocks_8_options_theme','#f5f5f5'),(281203,41901,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(281204,41901,'blocks_8_options_format','row'),(281205,41901,'_blocks_8_options_format','field_64bfde9a90690'),(281206,41901,'blocks_8_options',''),(281207,41901,'_blocks_8_options','field_64bfdd9b90684'),(281208,41901,'blocks_8_icon_row_items_0_icon','qualification.svg'),(281209,41901,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(281210,41901,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(281211,41901,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(281212,41901,'blocks_8_icon_row_items_0_text',''),(281213,41901,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(281214,41901,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(281215,41901,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(281216,41901,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(281217,41901,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(281218,41901,'blocks_8_icon_row_items_1_text',''),(281219,41901,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(281220,41901,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(281221,41901,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(281222,41901,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(281223,41901,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(281224,41901,'blocks_8_icon_row_items_2_text',''),(281225,41901,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(281226,41901,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(281227,41901,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(281228,41901,'blocks_8_icon_row_items_3_label','Flexible funding options'),(281229,41901,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(281230,41901,'blocks_8_icon_row_items_3_text',''),(281231,41901,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(281232,41901,'blocks_8_icon_row_items','4'),(281233,41901,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(281234,41901,'blocks_9_acfe_flexible_toggle',''),(281235,41901,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(281236,41901,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(281237,41901,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(281238,41901,'blocks_9_options_theme','#ffffff'),(281239,41901,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(281240,41901,'blocks_9_options_reverse','1'),(281241,41901,'_blocks_9_options_reverse','field_61768049bb8ac'),(281242,41901,'blocks_9_options',''),(281243,41901,'_blocks_9_options','field_617682517c334'),(281244,41901,'blocks_9_split_5050_image','39224'),(281245,41901,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(281246,41901,'blocks_9_split_5050_video',''),(281247,41901,'_blocks_9_split_5050_video','field_6239f3160848a'),(281248,41901,'blocks_9_split_5050_content_title','Locations'),(281249,41901,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(281250,41901,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(281251,41901,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(281252,41901,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(281253,41901,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(281254,41901,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(281255,41901,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(281256,41901,'blocks_9_split_5050_content_actions','1'),(281257,41901,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(281258,41901,'blocks_9_split_5050_content',''),(281259,41901,'_blocks_9_split_5050_content','field_61767afceb8ba'),(281260,41901,'blocks_1_acfe_flexible_toggle',''),(281261,41901,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(281262,41901,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(281263,41901,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(281264,41901,'blocks_1_options_theme','#ffffff'),(281265,41901,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(281266,41901,'blocks_1_options_reverse','0'),(281267,41901,'_blocks_1_options_reverse','field_61768049bb8ac'),(281268,41901,'blocks_1_options',''),(281269,41901,'_blocks_1_options','field_617682517c334'),(281270,41901,'blocks_1_split_5050_image','41506'),(281271,41901,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(281272,41901,'blocks_1_split_5050_video',''),(281273,41901,'_blocks_1_split_5050_video','field_6239f3160848a'),(281274,41901,'blocks_1_split_5050_content_title',''),(281275,41901,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(281276,41901,'blocks_1_split_5050_content_heading','Course Overview'),(281277,41901,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(281278,41901,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW114645069 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW114645069 BCX8\">Enhance your</span> <span class=\"NormalTextRun SCXW114645069 BCX8\">expertise</span><span class=\"NormalTextRun SCXW114645069 BCX8\"> with our comprehensive Level 4 Pilates Instructor and Diploma in Biomechanics Coaching, a unique course designed to elevate your Pilates practice while equipping you with specialised Intrinsic biomechanics skills. This programme blends advanced Pilates methods with biomechanics principles to improve client movement, enhance posture, and support functional performance. Perfect for Pilates instructors and fitness professionals aiming to work confidently with clients facing orthopaedic or movement challenges, this dual qualification empowers you to make a lasting impact on client wellbeing through targeted analysis and </span><span class=\"NormalTextRun SCXW114645069 BCX8\">risk preventions.</span></span><span class=\"EOP SCXW114645069 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(281279,41901,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(281280,41901,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(281281,41901,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(281282,41901,'blocks_1_split_5050_content_actions','1'),(281283,41901,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(281284,41901,'blocks_1_split_5050_content',''),(281285,41901,'_blocks_1_split_5050_content','field_61767afceb8ba'),(281286,41901,'blocks_2_acfe_flexible_toggle',''),(281287,41901,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(281288,41901,'blocks_2_acfe_flexible_layout_title','Form'),(281289,41901,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(281290,41901,'blocks_2_row_content_format','standard'),(281291,41901,'_blocks_2_row_content_format','field_6481ead962881'),(281292,41901,'blocks_2_row_content_title',''),(281293,41901,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(281294,41901,'blocks_2_row_content_heading','Enquire Today'),(281295,41901,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(281296,41901,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(281297,41901,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(281298,41901,'blocks_2_row_content_actions',''),(281299,41901,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(281300,41901,'blocks_2_row_content',''),(281301,41901,'_blocks_2_row_content','field_61a0f5f5b3db0'),(281302,41901,'blocks_2_row_form','40394'),(281303,41901,'_blocks_2_row_form','field_61a4ff2c0b08e'),(281304,41901,'blocks_2_row_form_button_label',''),(281305,41901,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(281306,41901,'blocks_3_acfe_flexible_toggle',''),(281307,41901,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(281308,41901,'blocks_3_acfe_flexible_layout_title','Video'),(281309,41901,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(281310,41901,'blocks_3_size','large'),(281311,41901,'_blocks_3_size','field_6487038f297c1'),(281312,41901,'blocks_3_row_content_title',''),(281313,41901,'_blocks_3_row_content_title','field_64870132a865d'),(281314,41901,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(281315,41901,'_blocks_3_row_content_heading','field_64870142a865e'),(281316,41901,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(281317,41901,'_blocks_3_row_content_text','field_64870148a865f'),(281318,41901,'blocks_3_row_content',''),(281319,41901,'_blocks_3_row_content','field_6487008ba865c'),(281320,41901,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(281321,41901,'_blocks_3_video_src','field_6193c4a98ec07'),(281322,41901,'blocks_3_video_thumbnail',''),(281323,41901,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(281324,41901,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(281325,41901,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(281326,41901,'blocks_6_icon_row_items_2_label','Deposit & balance'),(281327,41901,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(281328,41901,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(281329,41901,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(281330,41901,'blocks_10_acfe_flexible_toggle','1'),(281331,41901,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(281332,41901,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(281333,41901,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(281334,41901,'blocks_10_options_theme','#ffffff'),(281335,41901,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(281336,41901,'blocks_10_options',''),(281337,41901,'_blocks_10_options','field_617ac0b7f6c08'),(281338,41901,'blocks_10_show','selection'),(281339,41901,'_blocks_10_show','field_61a49cba9d946'),(281340,41901,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(281341,41901,'_blocks_10_courses','field_61b244781ee0a'),(281342,41901,'blocks_10_open_whats_included','1'),(281343,41901,'_blocks_10_open_whats_included','field_66ebfd679450c'),(281344,41901,'blocks_10_open_key_information','0'),(281345,41901,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(281346,41901,'blocks_10_open',''),(281347,41901,'_blocks_10_open','field_66ebfd009450b'),(281348,41901,'blocks_11_acfe_flexible_toggle',''),(281349,41901,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(281350,41901,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(281351,41901,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(281352,41901,'blocks_11_options_theme','#ffffff'),(281353,41901,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(281354,41901,'blocks_11_options_reverse','0'),(281355,41901,'_blocks_11_options_reverse','field_61768049bb8ac'),(281356,41901,'blocks_11_options',''),(281357,41901,'_blocks_11_options','field_617682517c334'),(281358,41901,'blocks_11_split_5050_image','41504'),(281359,41901,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(281360,41901,'blocks_11_split_5050_video',''),(281361,41901,'_blocks_11_split_5050_video','field_6239f3160848a'),(281362,41901,'blocks_11_split_5050_content_title','Optimise Performance '),(281363,41901,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(281364,41901,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(281365,41901,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(281366,41901,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW53757674 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW53757674 BCX8\">Advance your Pilates </span><span class=\"NormalTextRun SCXW53757674 BCX8\">expertise</span><span class=\"NormalTextRun SCXW53757674 BCX8\"> with a comprehensive Level 4 course designed to build on foundational knowledge and introduce advanced techniques to support and enhance client outcomes. Specialise in biomechanics and stand out in the fitness industry with skills that improve client performance, posture, and functional movement.</span></span><span class=\"EOP SCXW53757674 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Level 4 Pilates Includes:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26316?category=qualifications&amp;query=vtct%20postnatal\"><span data-contrast=\"none\">VTCT Level 3 Award in Adapting Physical Activity for Antenatal and Postnatal Clients.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26662?category=qualifications&amp;query=VTCT%20mat%20pilates\"><span data-contrast=\"none\">VTCT Level 3 Diploma in Instructing Mat-Based Pilates.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/48763?category=qualifications&amp;query=transcend%20pilates\"><span data-contrast=\"none\">Transcend Level 4 Certificate in Teaching Matwork Pilates</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">As a qualified level 4 Pilates instructor you will be able to: </span></b><span data-ccp-props=\"{}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own classes and work with clients on a 1-to-1 basis</span><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Teach Pilates at beginner, intermediate and advanced levels</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own weight management clinic, or offer individual consultations</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Create bespoke Pilates routines for new and expectant mothers</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Be able to create bespoke Pilates routines for clients with mobility considerations such as Arthritis or Hypermobility</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(281367,41901,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(281368,41901,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(281369,41901,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(281370,41901,'blocks_11_split_5050_content_actions','1'),(281371,41901,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(281372,41901,'blocks_11_split_5050_content',''),(281373,41901,'_blocks_11_split_5050_content','field_61767afceb8ba'),(281374,41901,'blocks_12_acfe_flexible_toggle',''),(281375,41901,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(281376,41901,'blocks_12_acfe_flexible_layout_title','Template'),(281377,41901,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(281378,41901,'blocks_12_template','40987'),(281379,41901,'_blocks_12_template','field_617bdd570fe01'),(281380,41901,'blocks_13_acfe_flexible_toggle',''),(281381,41901,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(281382,41901,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(281383,41901,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(281384,41901,'blocks_13_options_theme','#f5f5f5'),(281385,41901,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(281386,41901,'blocks_13_options_state','0'),(281387,41901,'_blocks_13_options_state','field_6239fcb7508c5'),(281388,41901,'blocks_13_options',''),(281389,41901,'_blocks_13_options','field_6177e2991ac44'),(281390,41901,'blocks_13_content_title',''),(281391,41901,'_blocks_13_content_title','field_64d237e8bb1e2'),(281392,41901,'blocks_13_content_heading','FAQ\'s'),(281393,41901,'_blocks_13_content_heading','field_64d237e8bb1e3'),(281394,41901,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(281395,41901,'_blocks_13_content_text','field_64d237e8bb1e4'),(281396,41901,'blocks_13_content_actions',''),(281397,41901,'_blocks_13_content_actions','field_64d237e8bb1e5'),(281398,41901,'blocks_13_content_align','left'),(281399,41901,'_blocks_13_content_align','field_64d2443e6b6aa'),(281400,41901,'blocks_13_content',''),(281401,41901,'_blocks_13_content','field_64d237e8bb1e1'),(281402,41901,'blocks_13_accordion_content','faqs'),(281403,41901,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(281404,41901,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41517\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(281405,41901,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(281406,41901,'blocks_13_actions',''),(281407,41901,'_blocks_13_actions','field_61a746a817f7a'),(281408,41902,'hide_hero','0'),(281409,41902,'_hide_hero','field_66a2380fcda39'),(281410,41902,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(281411,41902,'_hero_title','field_617571fe285e8'),(281412,41902,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(281413,41902,'_hero_text','field_6175723c285e9'),(281414,41902,'hero_actions','1'),(281415,41902,'_hero_actions','field_61757270285ea'),(281416,41902,'hero_style','default'),(281417,41902,'_hero_style','field_62051d9dc5324'),(281418,41902,'_thumbnail_id','41428'),(281419,41902,'__thumbnail_id','field_617570855ddaf'),(281420,41902,'hero_image_pos_x','right'),(281421,41902,'_hero_image_pos_x','field_62ec3d05390bb'),(281422,41902,'hero_image_pos_y','top'),(281423,41902,'_hero_image_pos_y','field_62ec3d05390bc'),(281424,41902,'hero_image_pos',''),(281425,41902,'_hero_image_pos','field_62ec3d05390ba'),(281426,41902,'fft_hide_from_listings','0'),(281427,41902,'_fft_hide_from_listings','field_61f1320446ab2'),(281428,41902,'fft_page_format','default'),(281429,41902,'_fft_page_format','field_61ae213f1f218'),(281430,41902,'fft_hide_nav','0'),(281431,41902,'_fft_hide_nav','field_635bd5e43527c'),(281432,41902,'fft_hide_header_call_to_action','0'),(281433,41902,'_fft_hide_header_call_to_action','field_635bd6723527d'),(281434,41902,'fft_page_sitemap','0'),(281435,41902,'_fft_page_sitemap','field_61af9b34e8181'),(281436,41902,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(281437,41902,'_blocks','field_6176696113096'),(281438,41902,'course_label_text',''),(281439,41902,'_course_label_text','field_61e17babf71fa'),(281440,41902,'course_label',''),(281441,41902,'_course_label','field_61e12f92749a7'),(281442,41902,'course_description',''),(281443,41902,'_course_description','field_617ac5788e5e1'),(281444,41902,'course_key_info',''),(281445,41902,'_course_key_info','field_617ac6ad8e5e2'),(281446,41902,'course_included',''),(281447,41902,'_course_included','field_617ac6f08e5e4'),(281448,41902,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-41425-4\";s:6:\"target\";s:0:\"\";}'),(281449,41902,'_hero_actions_0_button','field_61757281285eb'),(281450,41902,'blocks_0_acfe_flexible_toggle',''),(281451,41902,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(281452,41902,'blocks_0_acfe_flexible_layout_title','Icons'),(281453,41902,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(281454,41902,'blocks_0_options_theme','#b61234'),(281455,41902,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(281456,41902,'blocks_0_options_format','row'),(281457,41902,'_blocks_0_options_format','field_64bfde9a90690'),(281458,41902,'blocks_0_options',''),(281459,41902,'_blocks_0_options','field_64bfdd9b90684'),(281460,41902,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(281461,41902,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(281462,41902,'blocks_0_icon_row_items_0_label','Accreditation'),(281463,41902,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(281464,41902,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(281465,41902,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(281466,41902,'blocks_0_icon_row_items_1_icon','finance.svg'),(281467,41902,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(281468,41902,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(281469,41902,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(281470,41902,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(281471,41902,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(281472,41902,'blocks_0_icon_row_items_2_icon','progression.svg'),(281473,41902,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(281474,41902,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(281475,41902,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(281476,41902,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(281477,41902,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(281478,41902,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(281479,41902,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(281480,41902,'blocks_0_icon_row_items_3_label','Qualification'),(281481,41902,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(281482,41902,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(281483,41902,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(281484,41902,'blocks_0_icon_row_items','4'),(281485,41902,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(281486,41902,'blocks_5_acfe_flexible_toggle','1'),(281487,41902,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(281488,41902,'blocks_5_acfe_flexible_layout_title','Tabs'),(281489,41902,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(281490,41902,'blocks_5_options_theme','#ffffff'),(281491,41902,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(281492,41902,'blocks_5_options',''),(281493,41902,'_blocks_5_options','field_6177cfcd8140f'),(281494,41902,'blocks_5_tabs_0_tab_label','Entry requirements'),(281495,41902,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(281496,41902,'blocks_5_tabs_0_tab_content_title',''),(281497,41902,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(281498,41902,'blocks_5_tabs_0_tab_content_heading',''),(281499,41902,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(281500,41902,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(281501,41902,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(281502,41902,'blocks_5_tabs_0_tab_content_actions',''),(281503,41902,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(281504,41902,'blocks_5_tabs_0_tab_content',''),(281505,41902,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(281506,41902,'blocks_5_tabs_0_tab_image',''),(281507,41902,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(281508,41902,'blocks_5_tabs_1_tab_label','Learning format'),(281509,41902,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(281510,41902,'blocks_5_tabs_1_tab_content_title',''),(281511,41902,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(281512,41902,'blocks_5_tabs_1_tab_content_heading',''),(281513,41902,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(281514,41902,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(281515,41902,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(281516,41902,'blocks_5_tabs_1_tab_content_actions',''),(281517,41902,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(281518,41902,'blocks_5_tabs_1_tab_content',''),(281519,41902,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(281520,41902,'blocks_5_tabs_1_tab_image',''),(281521,41902,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(281522,41902,'blocks_5_tabs_2_tab_label','Qualifications included'),(281523,41902,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(281524,41902,'blocks_5_tabs_2_tab_content_title',''),(281525,41902,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(281526,41902,'blocks_5_tabs_2_tab_content_heading',''),(281527,41902,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(281528,41902,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(281529,41902,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(281530,41902,'blocks_5_tabs_2_tab_content_actions',''),(281531,41902,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(281532,41902,'blocks_5_tabs_2_tab_content',''),(281533,41902,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(281534,41902,'blocks_5_tabs_2_tab_image',''),(281535,41902,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(281536,41902,'blocks_5_tabs','3'),(281537,41902,'_blocks_5_tabs','field_6177cff281419'),(281538,41902,'blocks_4_acfe_flexible_toggle',''),(281539,41902,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(281540,41902,'blocks_4_acfe_flexible_layout_title','Template'),(281541,41902,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(281542,41902,'blocks_4_template','39207'),(281543,41902,'_blocks_4_template','field_617bdd570fe01'),(281544,41902,'blocks_6_acfe_flexible_toggle',''),(281545,41902,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(281546,41902,'blocks_6_acfe_flexible_layout_title','Icons'),(281547,41902,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(281548,41902,'blocks_6_options_theme','#f5f5f5'),(281549,41902,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(281550,41902,'blocks_6_options_format','stacked'),(281551,41902,'_blocks_6_options_format','field_64bfde9a90690'),(281552,41902,'blocks_6_options',''),(281553,41902,'_blocks_6_options','field_64bfdd9b90684'),(281554,41902,'blocks_6_row_content_title','Options available to pay for your course'),(281555,41902,'_blocks_6_row_content_title','field_64bfdd9b90687'),(281556,41902,'blocks_6_row_content_heading','Fees & Funding Options '),(281557,41902,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(281558,41902,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(281559,41902,'_blocks_6_row_content_text','field_64bfdd9b90689'),(281560,41902,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(281561,41902,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(281562,41902,'blocks_6_row_content_actions','1'),(281563,41902,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(281564,41902,'blocks_6_row_content',''),(281565,41902,'_blocks_6_row_content','field_64bfdd9b90686'),(281566,41902,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(281567,41902,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(281568,41902,'blocks_6_icon_row_items_0_label','Pay in full'),(281569,41902,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(281570,41902,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(281571,41902,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(281572,41902,'blocks_6_icon_row_items_1_icon','finance.svg'),(281573,41902,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(281574,41902,'blocks_6_icon_row_items_1_label','0% finance'),(281575,41902,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(281576,41902,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(281577,41902,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(281578,41902,'blocks_6_icon_row_items','3'),(281579,41902,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(281580,41902,'blocks_7_acfe_flexible_toggle',''),(281581,41902,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(281582,41902,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(281583,41902,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(281584,41902,'blocks_7_options_theme','#ffffff'),(281585,41902,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(281586,41902,'blocks_7_options_reverse','0'),(281587,41902,'_blocks_7_options_reverse','field_61768049bb8ac'),(281588,41902,'blocks_7_options',''),(281589,41902,'_blocks_7_options','field_617682517c334'),(281590,41902,'blocks_7_split_5050_image','41333'),(281591,41902,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(281592,41902,'blocks_7_split_5050_video',''),(281593,41902,'_blocks_7_split_5050_video','field_6239f3160848a'),(281594,41902,'blocks_7_split_5050_content_title',''),(281595,41902,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(281596,41902,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(281597,41902,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(281598,41902,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(281599,41902,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(281600,41902,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(281601,41902,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(281602,41902,'blocks_7_split_5050_content_actions','1'),(281603,41902,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(281604,41902,'blocks_7_split_5050_content',''),(281605,41902,'_blocks_7_split_5050_content','field_61767afceb8ba'),(281606,41902,'blocks_8_acfe_flexible_toggle',''),(281607,41902,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(281608,41902,'blocks_8_acfe_flexible_layout_title','Icons'),(281609,41902,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(281610,41902,'blocks_8_options_theme','#f5f5f5'),(281611,41902,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(281612,41902,'blocks_8_options_format','row'),(281613,41902,'_blocks_8_options_format','field_64bfde9a90690'),(281614,41902,'blocks_8_options',''),(281615,41902,'_blocks_8_options','field_64bfdd9b90684'),(281616,41902,'blocks_8_icon_row_items_0_icon','qualification.svg'),(281617,41902,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(281618,41902,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(281619,41902,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(281620,41902,'blocks_8_icon_row_items_0_text',''),(281621,41902,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(281622,41902,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(281623,41902,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(281624,41902,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(281625,41902,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(281626,41902,'blocks_8_icon_row_items_1_text',''),(281627,41902,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(281628,41902,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(281629,41902,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(281630,41902,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(281631,41902,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(281632,41902,'blocks_8_icon_row_items_2_text',''),(281633,41902,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(281634,41902,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(281635,41902,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(281636,41902,'blocks_8_icon_row_items_3_label','Flexible funding options'),(281637,41902,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(281638,41902,'blocks_8_icon_row_items_3_text',''),(281639,41902,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(281640,41902,'blocks_8_icon_row_items','4'),(281641,41902,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(281642,41902,'blocks_9_acfe_flexible_toggle',''),(281643,41902,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(281644,41902,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(281645,41902,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(281646,41902,'blocks_9_options_theme','#ffffff'),(281647,41902,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(281648,41902,'blocks_9_options_reverse','1'),(281649,41902,'_blocks_9_options_reverse','field_61768049bb8ac'),(281650,41902,'blocks_9_options',''),(281651,41902,'_blocks_9_options','field_617682517c334'),(281652,41902,'blocks_9_split_5050_image','39224'),(281653,41902,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(281654,41902,'blocks_9_split_5050_video',''),(281655,41902,'_blocks_9_split_5050_video','field_6239f3160848a'),(281656,41902,'blocks_9_split_5050_content_title','Locations'),(281657,41902,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(281658,41902,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(281659,41902,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(281660,41902,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(281661,41902,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(281662,41902,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(281663,41902,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(281664,41902,'blocks_9_split_5050_content_actions','1'),(281665,41902,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(281666,41902,'blocks_9_split_5050_content',''),(281667,41902,'_blocks_9_split_5050_content','field_61767afceb8ba'),(281668,41902,'blocks_1_acfe_flexible_toggle',''),(281669,41902,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(281670,41902,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(281671,41902,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(281672,41902,'blocks_1_options_theme','#ffffff'),(281673,41902,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(281674,41902,'blocks_1_options_reverse','0'),(281675,41902,'_blocks_1_options_reverse','field_61768049bb8ac'),(281676,41902,'blocks_1_options',''),(281677,41902,'_blocks_1_options','field_617682517c334'),(281678,41902,'blocks_1_split_5050_image','41430'),(281679,41902,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(281680,41902,'blocks_1_split_5050_video',''),(281681,41902,'_blocks_1_split_5050_video','field_6239f3160848a'),(281682,41902,'blocks_1_split_5050_content_title',''),(281683,41902,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(281684,41902,'blocks_1_split_5050_content_heading','Course Overview'),(281685,41902,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(281686,41902,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(281687,41902,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(281688,41902,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(281689,41902,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(281690,41902,'blocks_1_split_5050_content_actions','1'),(281691,41902,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(281692,41902,'blocks_1_split_5050_content',''),(281693,41902,'_blocks_1_split_5050_content','field_61767afceb8ba'),(281694,41902,'blocks_2_acfe_flexible_toggle',''),(281695,41902,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(281696,41902,'blocks_2_acfe_flexible_layout_title','Form'),(281697,41902,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(281698,41902,'blocks_2_row_content_format','standard'),(281699,41902,'_blocks_2_row_content_format','field_6481ead962881'),(281700,41902,'blocks_2_row_content_title',''),(281701,41902,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(281702,41902,'blocks_2_row_content_heading','Enquire Today'),(281703,41902,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(281704,41902,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(281705,41902,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(281706,41902,'blocks_2_row_content_actions',''),(281707,41902,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(281708,41902,'blocks_2_row_content',''),(281709,41902,'_blocks_2_row_content','field_61a0f5f5b3db0'),(281710,41902,'blocks_2_row_form','40394'),(281711,41902,'_blocks_2_row_form','field_61a4ff2c0b08e'),(281712,41902,'blocks_2_row_form_button_label',''),(281713,41902,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(281714,41902,'blocks_3_acfe_flexible_toggle',''),(281715,41902,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(281716,41902,'blocks_3_acfe_flexible_layout_title','Video'),(281717,41902,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(281718,41902,'blocks_3_size','large'),(281719,41902,'_blocks_3_size','field_6487038f297c1'),(281720,41902,'blocks_3_row_content_title',''),(281721,41902,'_blocks_3_row_content_title','field_64870132a865d'),(281722,41902,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(281723,41902,'_blocks_3_row_content_heading','field_64870142a865e'),(281724,41902,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(281725,41902,'_blocks_3_row_content_text','field_64870148a865f'),(281726,41902,'blocks_3_row_content',''),(281727,41902,'_blocks_3_row_content','field_6487008ba865c'),(281728,41902,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(281729,41902,'_blocks_3_video_src','field_6193c4a98ec07'),(281730,41902,'blocks_3_video_thumbnail',''),(281731,41902,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(281732,41902,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(281733,41902,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(281734,41902,'blocks_6_icon_row_items_2_label','Deposit & balance'),(281735,41902,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(281736,41902,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(281737,41902,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(281738,41902,'blocks_10_acfe_flexible_toggle','1'),(281739,41902,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(281740,41902,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(281741,41902,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(281742,41902,'blocks_10_options_theme','#ffffff'),(281743,41902,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(281744,41902,'blocks_10_options',''),(281745,41902,'_blocks_10_options','field_617ac0b7f6c08'),(281746,41902,'blocks_10_show','selection'),(281747,41902,'_blocks_10_show','field_61a49cba9d946'),(281748,41902,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(281749,41902,'_blocks_10_courses','field_61b244781ee0a'),(281750,41902,'blocks_10_open_whats_included','1'),(281751,41902,'_blocks_10_open_whats_included','field_66ebfd679450c'),(281752,41902,'blocks_10_open_key_information','0'),(281753,41902,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(281754,41902,'blocks_10_open',''),(281755,41902,'_blocks_10_open','field_66ebfd009450b'),(281756,41902,'blocks_11_acfe_flexible_toggle',''),(281757,41902,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(281758,41902,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(281759,41902,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(281760,41902,'blocks_11_options_theme','#ffffff'),(281761,41902,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(281762,41902,'blocks_11_options_reverse','0'),(281763,41902,'_blocks_11_options_reverse','field_61768049bb8ac'),(281764,41902,'blocks_11_options',''),(281765,41902,'_blocks_11_options','field_617682517c334'),(281766,41902,'blocks_11_split_5050_image','41299'),(281767,41902,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(281768,41902,'blocks_11_split_5050_video',''),(281769,41902,'_blocks_11_split_5050_video','field_6239f3160848a'),(281770,41902,'blocks_11_split_5050_content_title','Optimise Performance '),(281771,41902,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(281772,41902,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(281773,41902,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(281774,41902,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(281775,41902,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(281776,41902,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(281777,41902,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(281778,41902,'blocks_11_split_5050_content_actions','1'),(281779,41902,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(281780,41902,'blocks_11_split_5050_content',''),(281781,41902,'_blocks_11_split_5050_content','field_61767afceb8ba'),(281782,41902,'blocks_12_acfe_flexible_toggle',''),(281783,41902,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(281784,41902,'blocks_12_acfe_flexible_layout_title','Template'),(281785,41902,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(281786,41902,'blocks_12_template','40987'),(281787,41902,'_blocks_12_template','field_617bdd570fe01'),(281788,41902,'blocks_13_acfe_flexible_toggle',''),(281789,41902,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(281790,41902,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(281791,41902,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(281792,41902,'blocks_13_options_theme','#f5f5f5'),(281793,41902,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(281794,41902,'blocks_13_options_state','0'),(281795,41902,'_blocks_13_options_state','field_6239fcb7508c5'),(281796,41902,'blocks_13_options',''),(281797,41902,'_blocks_13_options','field_6177e2991ac44'),(281798,41902,'blocks_13_content_title',''),(281799,41902,'_blocks_13_content_title','field_64d237e8bb1e2'),(281800,41902,'blocks_13_content_heading','FAQ\'s'),(281801,41902,'_blocks_13_content_heading','field_64d237e8bb1e3'),(281802,41902,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(281803,41902,'_blocks_13_content_text','field_64d237e8bb1e4'),(281804,41902,'blocks_13_content_actions',''),(281805,41902,'_blocks_13_content_actions','field_64d237e8bb1e5'),(281806,41902,'blocks_13_content_align','left'),(281807,41902,'_blocks_13_content_align','field_64d2443e6b6aa'),(281808,41902,'blocks_13_content',''),(281809,41902,'_blocks_13_content','field_64d237e8bb1e1'),(281810,41902,'blocks_13_accordion_content','faqs'),(281811,41902,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(281812,41902,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(281813,41902,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(281814,41902,'blocks_13_actions',''),(281815,41902,'_blocks_13_actions','field_61a746a817f7a'),(281816,41903,'hide_hero','0'),(281817,41903,'_hide_hero','field_66a2380fcda39'),(281818,41903,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(281819,41903,'_hero_title','field_617571fe285e8'),(281820,41903,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(281821,41903,'_hero_text','field_6175723c285e9'),(281822,41903,'hero_actions','1'),(281823,41903,'_hero_actions','field_61757270285ea'),(281824,41903,'hero_style','default'),(281825,41903,'_hero_style','field_62051d9dc5324'),(281826,41903,'_thumbnail_id','41473'),(281827,41903,'__thumbnail_id','field_617570855ddaf'),(281828,41903,'hero_image_pos_x','right'),(281829,41903,'_hero_image_pos_x','field_62ec3d05390bb'),(281830,41903,'hero_image_pos_y','top'),(281831,41903,'_hero_image_pos_y','field_62ec3d05390bc'),(281832,41903,'hero_image_pos',''),(281833,41903,'_hero_image_pos','field_62ec3d05390ba'),(281834,41903,'fft_hide_from_listings','0'),(281835,41903,'_fft_hide_from_listings','field_61f1320446ab2'),(281836,41903,'fft_page_format','default'),(281837,41903,'_fft_page_format','field_61ae213f1f218'),(281838,41903,'fft_hide_nav','0'),(281839,41903,'_fft_hide_nav','field_635bd5e43527c'),(281840,41903,'fft_hide_header_call_to_action','0'),(281841,41903,'_fft_hide_header_call_to_action','field_635bd6723527d'),(281842,41903,'fft_page_sitemap','0'),(281843,41903,'_fft_page_sitemap','field_61af9b34e8181'),(281844,41903,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(281845,41903,'_blocks','field_6176696113096'),(281846,41903,'course_label_text',''),(281847,41903,'_course_label_text','field_61e17babf71fa'),(281848,41903,'course_label',''),(281849,41903,'_course_label','field_61e12f92749a7'),(281850,41903,'course_description',''),(281851,41903,'_course_description','field_617ac5788e5e1'),(281852,41903,'course_key_info',''),(281853,41903,'_course_key_info','field_617ac6ad8e5e2'),(281854,41903,'course_included',''),(281855,41903,'_course_included','field_617ac6f08e5e4'),(281856,41903,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41455-4\";s:6:\"target\";s:0:\"\";}'),(281857,41903,'_hero_actions_0_button','field_61757281285eb'),(281858,41903,'blocks_0_acfe_flexible_toggle',''),(281859,41903,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(281860,41903,'blocks_0_acfe_flexible_layout_title','Icons'),(281861,41903,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(281862,41903,'blocks_0_options_theme','#b61234'),(281863,41903,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(281864,41903,'blocks_0_options_format','row'),(281865,41903,'_blocks_0_options_format','field_64bfde9a90690'),(281866,41903,'blocks_0_options',''),(281867,41903,'_blocks_0_options','field_64bfdd9b90684'),(281868,41903,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(281869,41903,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(281870,41903,'blocks_0_icon_row_items_0_label','Accreditation'),(281871,41903,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(281872,41903,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(281873,41903,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(281874,41903,'blocks_0_icon_row_items_1_icon','finance.svg'),(281875,41903,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(281876,41903,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(281877,41903,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(281878,41903,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(281879,41903,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(281880,41903,'blocks_0_icon_row_items_2_icon','progression.svg'),(281881,41903,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(281882,41903,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(281883,41903,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(281884,41903,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(281885,41903,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(281886,41903,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(281887,41903,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(281888,41903,'blocks_0_icon_row_items_3_label','Qualification'),(281889,41903,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(281890,41903,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(281891,41903,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(281892,41903,'blocks_0_icon_row_items','4'),(281893,41903,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(281894,41903,'blocks_5_acfe_flexible_toggle','1'),(281895,41903,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(281896,41903,'blocks_5_acfe_flexible_layout_title','Tabs'),(281897,41903,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(281898,41903,'blocks_5_options_theme','#ffffff'),(281899,41903,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(281900,41903,'blocks_5_options',''),(281901,41903,'_blocks_5_options','field_6177cfcd8140f'),(281902,41903,'blocks_5_tabs_0_tab_label','Entry requirements'),(281903,41903,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(281904,41903,'blocks_5_tabs_0_tab_content_title',''),(281905,41903,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(281906,41903,'blocks_5_tabs_0_tab_content_heading',''),(281907,41903,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(281908,41903,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(281909,41903,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(281910,41903,'blocks_5_tabs_0_tab_content_actions',''),(281911,41903,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(281912,41903,'blocks_5_tabs_0_tab_content',''),(281913,41903,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(281914,41903,'blocks_5_tabs_0_tab_image',''),(281915,41903,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(281916,41903,'blocks_5_tabs_1_tab_label','Learning format'),(281917,41903,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(281918,41903,'blocks_5_tabs_1_tab_content_title',''),(281919,41903,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(281920,41903,'blocks_5_tabs_1_tab_content_heading',''),(281921,41903,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(281922,41903,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(281923,41903,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(281924,41903,'blocks_5_tabs_1_tab_content_actions',''),(281925,41903,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(281926,41903,'blocks_5_tabs_1_tab_content',''),(281927,41903,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(281928,41903,'blocks_5_tabs_1_tab_image',''),(281929,41903,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(281930,41903,'blocks_5_tabs_2_tab_label','Qualifications included'),(281931,41903,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(281932,41903,'blocks_5_tabs_2_tab_content_title',''),(281933,41903,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(281934,41903,'blocks_5_tabs_2_tab_content_heading',''),(281935,41903,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(281936,41903,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(281937,41903,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(281938,41903,'blocks_5_tabs_2_tab_content_actions',''),(281939,41903,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(281940,41903,'blocks_5_tabs_2_tab_content',''),(281941,41903,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(281942,41903,'blocks_5_tabs_2_tab_image',''),(281943,41903,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(281944,41903,'blocks_5_tabs','3'),(281945,41903,'_blocks_5_tabs','field_6177cff281419'),(281946,41903,'blocks_4_acfe_flexible_toggle',''),(281947,41903,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(281948,41903,'blocks_4_acfe_flexible_layout_title','Template'),(281949,41903,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(281950,41903,'blocks_4_template','39207'),(281951,41903,'_blocks_4_template','field_617bdd570fe01'),(281952,41903,'blocks_6_acfe_flexible_toggle',''),(281953,41903,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(281954,41903,'blocks_6_acfe_flexible_layout_title','Icons'),(281955,41903,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(281956,41903,'blocks_6_options_theme','#f5f5f5'),(281957,41903,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(281958,41903,'blocks_6_options_format','stacked'),(281959,41903,'_blocks_6_options_format','field_64bfde9a90690'),(281960,41903,'blocks_6_options',''),(281961,41903,'_blocks_6_options','field_64bfdd9b90684'),(281962,41903,'blocks_6_row_content_title','Options available to pay for your course'),(281963,41903,'_blocks_6_row_content_title','field_64bfdd9b90687'),(281964,41903,'blocks_6_row_content_heading','Fees & Funding Options '),(281965,41903,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(281966,41903,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(281967,41903,'_blocks_6_row_content_text','field_64bfdd9b90689'),(281968,41903,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(281969,41903,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(281970,41903,'blocks_6_row_content_actions','1'),(281971,41903,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(281972,41903,'blocks_6_row_content',''),(281973,41903,'_blocks_6_row_content','field_64bfdd9b90686'),(281974,41903,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(281975,41903,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(281976,41903,'blocks_6_icon_row_items_0_label','Pay in full'),(281977,41903,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(281978,41903,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(281979,41903,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(281980,41903,'blocks_6_icon_row_items_1_icon','finance.svg'),(281981,41903,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(281982,41903,'blocks_6_icon_row_items_1_label','0% finance'),(281983,41903,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(281984,41903,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(281985,41903,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(281986,41903,'blocks_6_icon_row_items','3'),(281987,41903,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(281988,41903,'blocks_7_acfe_flexible_toggle',''),(281989,41903,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(281990,41903,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(281991,41903,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(281992,41903,'blocks_7_options_theme','#ffffff'),(281993,41903,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(281994,41903,'blocks_7_options_reverse','0'),(281995,41903,'_blocks_7_options_reverse','field_61768049bb8ac'),(281996,41903,'blocks_7_options',''),(281997,41903,'_blocks_7_options','field_617682517c334'),(281998,41903,'blocks_7_split_5050_image','41483'),(281999,41903,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(282000,41903,'blocks_7_split_5050_video',''),(282001,41903,'_blocks_7_split_5050_video','field_6239f3160848a'),(282002,41903,'blocks_7_split_5050_content_title',''),(282003,41903,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(282004,41903,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(282005,41903,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(282006,41903,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(282007,41903,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(282008,41903,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(282009,41903,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(282010,41903,'blocks_7_split_5050_content_actions','1'),(282011,41903,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(282012,41903,'blocks_7_split_5050_content',''),(282013,41903,'_blocks_7_split_5050_content','field_61767afceb8ba'),(282014,41903,'blocks_8_acfe_flexible_toggle',''),(282015,41903,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(282016,41903,'blocks_8_acfe_flexible_layout_title','Icons'),(282017,41903,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(282018,41903,'blocks_8_options_theme','#f5f5f5'),(282019,41903,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(282020,41903,'blocks_8_options_format','row'),(282021,41903,'_blocks_8_options_format','field_64bfde9a90690'),(282022,41903,'blocks_8_options',''),(282023,41903,'_blocks_8_options','field_64bfdd9b90684'),(282024,41903,'blocks_8_icon_row_items_0_icon','qualification.svg'),(282025,41903,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(282026,41903,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(282027,41903,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(282028,41903,'blocks_8_icon_row_items_0_text',''),(282029,41903,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(282030,41903,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(282031,41903,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(282032,41903,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(282033,41903,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(282034,41903,'blocks_8_icon_row_items_1_text',''),(282035,41903,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(282036,41903,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(282037,41903,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(282038,41903,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(282039,41903,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(282040,41903,'blocks_8_icon_row_items_2_text',''),(282041,41903,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(282042,41903,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(282043,41903,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(282044,41903,'blocks_8_icon_row_items_3_label','Flexible funding options'),(282045,41903,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(282046,41903,'blocks_8_icon_row_items_3_text',''),(282047,41903,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(282048,41903,'blocks_8_icon_row_items','4'),(282049,41903,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(282050,41903,'blocks_9_acfe_flexible_toggle',''),(282051,41903,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(282052,41903,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(282053,41903,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(282054,41903,'blocks_9_options_theme','#ffffff'),(282055,41903,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(282056,41903,'blocks_9_options_reverse','1'),(282057,41903,'_blocks_9_options_reverse','field_61768049bb8ac'),(282058,41903,'blocks_9_options',''),(282059,41903,'_blocks_9_options','field_617682517c334'),(282060,41903,'blocks_9_split_5050_image','39224'),(282061,41903,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(282062,41903,'blocks_9_split_5050_video',''),(282063,41903,'_blocks_9_split_5050_video','field_6239f3160848a'),(282064,41903,'blocks_9_split_5050_content_title','Locations'),(282065,41903,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(282066,41903,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(282067,41903,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(282068,41903,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(282069,41903,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(282070,41903,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(282071,41903,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(282072,41903,'blocks_9_split_5050_content_actions','1'),(282073,41903,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(282074,41903,'blocks_9_split_5050_content',''),(282075,41903,'_blocks_9_split_5050_content','field_61767afceb8ba'),(282076,41903,'blocks_1_acfe_flexible_toggle',''),(282077,41903,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(282078,41903,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(282079,41903,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(282080,41903,'blocks_1_options_theme','#ffffff'),(282081,41903,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(282082,41903,'blocks_1_options_reverse','0'),(282083,41903,'_blocks_1_options_reverse','field_61768049bb8ac'),(282084,41903,'blocks_1_options',''),(282085,41903,'_blocks_1_options','field_617682517c334'),(282086,41903,'blocks_1_split_5050_image','41484'),(282087,41903,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(282088,41903,'blocks_1_split_5050_video',''),(282089,41903,'_blocks_1_split_5050_video','field_6239f3160848a'),(282090,41903,'blocks_1_split_5050_content_title',''),(282091,41903,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(282092,41903,'blocks_1_split_5050_content_heading','Course Overview'),(282093,41903,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(282094,41903,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(282095,41903,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(282096,41903,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(282097,41903,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(282098,41903,'blocks_1_split_5050_content_actions','1'),(282099,41903,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(282100,41903,'blocks_1_split_5050_content',''),(282101,41903,'_blocks_1_split_5050_content','field_61767afceb8ba'),(282102,41903,'blocks_2_acfe_flexible_toggle',''),(282103,41903,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(282104,41903,'blocks_2_acfe_flexible_layout_title','Form'),(282105,41903,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(282106,41903,'blocks_2_row_content_format','standard'),(282107,41903,'_blocks_2_row_content_format','field_6481ead962881'),(282108,41903,'blocks_2_row_content_title',''),(282109,41903,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(282110,41903,'blocks_2_row_content_heading','Enquire Today'),(282111,41903,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(282112,41903,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(282113,41903,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(282114,41903,'blocks_2_row_content_actions',''),(282115,41903,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(282116,41903,'blocks_2_row_content',''),(282117,41903,'_blocks_2_row_content','field_61a0f5f5b3db0'),(282118,41903,'blocks_2_row_form','40394'),(282119,41903,'_blocks_2_row_form','field_61a4ff2c0b08e'),(282120,41903,'blocks_2_row_form_button_label',''),(282121,41903,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(282122,41903,'blocks_3_acfe_flexible_toggle',''),(282123,41903,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(282124,41903,'blocks_3_acfe_flexible_layout_title','Video'),(282125,41903,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(282126,41903,'blocks_3_size','large'),(282127,41903,'_blocks_3_size','field_6487038f297c1'),(282128,41903,'blocks_3_row_content_title',''),(282129,41903,'_blocks_3_row_content_title','field_64870132a865d'),(282130,41903,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(282131,41903,'_blocks_3_row_content_heading','field_64870142a865e'),(282132,41903,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(282133,41903,'_blocks_3_row_content_text','field_64870148a865f'),(282134,41903,'blocks_3_row_content',''),(282135,41903,'_blocks_3_row_content','field_6487008ba865c'),(282136,41903,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(282137,41903,'_blocks_3_video_src','field_6193c4a98ec07'),(282138,41903,'blocks_3_video_thumbnail',''),(282139,41903,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(282140,41903,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(282141,41903,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(282142,41903,'blocks_6_icon_row_items_2_label','Deposit & balance'),(282143,41903,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(282144,41903,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(282145,41903,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(282146,41903,'blocks_10_acfe_flexible_toggle','1'),(282147,41903,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(282148,41903,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(282149,41903,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(282150,41903,'blocks_10_options_theme','#ffffff'),(282151,41903,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(282152,41903,'blocks_10_options',''),(282153,41903,'_blocks_10_options','field_617ac0b7f6c08'),(282154,41903,'blocks_10_show','selection'),(282155,41903,'_blocks_10_show','field_61a49cba9d946'),(282156,41903,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(282157,41903,'_blocks_10_courses','field_61b244781ee0a'),(282158,41903,'blocks_10_open_whats_included','1'),(282159,41903,'_blocks_10_open_whats_included','field_66ebfd679450c'),(282160,41903,'blocks_10_open_key_information','0'),(282161,41903,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(282162,41903,'blocks_10_open',''),(282163,41903,'_blocks_10_open','field_66ebfd009450b'),(282164,41903,'blocks_11_acfe_flexible_toggle',''),(282165,41903,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(282166,41903,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(282167,41903,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(282168,41903,'blocks_11_options_theme','#ffffff'),(282169,41903,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(282170,41903,'blocks_11_options_reverse','0'),(282171,41903,'_blocks_11_options_reverse','field_61768049bb8ac'),(282172,41903,'blocks_11_options',''),(282173,41903,'_blocks_11_options','field_617682517c334'),(282174,41903,'blocks_11_split_5050_image','41495'),(282175,41903,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(282176,41903,'blocks_11_split_5050_video',''),(282177,41903,'_blocks_11_split_5050_video','field_6239f3160848a'),(282178,41903,'blocks_11_split_5050_content_title','Optimise Performance '),(282179,41903,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(282180,41903,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(282181,41903,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(282182,41903,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(282183,41903,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(282184,41903,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(282185,41903,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(282186,41903,'blocks_11_split_5050_content_actions','1'),(282187,41903,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(282188,41903,'blocks_11_split_5050_content',''),(282189,41903,'_blocks_11_split_5050_content','field_61767afceb8ba'),(282190,41903,'blocks_12_acfe_flexible_toggle',''),(282191,41903,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(282192,41903,'blocks_12_acfe_flexible_layout_title','Template'),(282193,41903,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(282194,41903,'blocks_12_template','40987'),(282195,41903,'_blocks_12_template','field_617bdd570fe01'),(282196,41903,'blocks_13_acfe_flexible_toggle',''),(282197,41903,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(282198,41903,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(282199,41903,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(282200,41903,'blocks_13_options_theme','#f5f5f5'),(282201,41903,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(282202,41903,'blocks_13_options_state','0'),(282203,41903,'_blocks_13_options_state','field_6239fcb7508c5'),(282204,41903,'blocks_13_options',''),(282205,41903,'_blocks_13_options','field_6177e2991ac44'),(282206,41903,'blocks_13_content_title',''),(282207,41903,'_blocks_13_content_title','field_64d237e8bb1e2'),(282208,41903,'blocks_13_content_heading','FAQ\'s'),(282209,41903,'_blocks_13_content_heading','field_64d237e8bb1e3'),(282210,41903,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(282211,41903,'_blocks_13_content_text','field_64d237e8bb1e4'),(282212,41903,'blocks_13_content_actions',''),(282213,41903,'_blocks_13_content_actions','field_64d237e8bb1e5'),(282214,41903,'blocks_13_content_align','left'),(282215,41903,'_blocks_13_content_align','field_64d2443e6b6aa'),(282216,41903,'blocks_13_content',''),(282217,41903,'_blocks_13_content','field_64d237e8bb1e1'),(282218,41903,'blocks_13_accordion_content','faqs'),(282219,41903,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(282220,41903,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41458\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(282221,41903,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(282222,41903,'blocks_13_actions',''),(282223,41903,'_blocks_13_actions','field_61a746a817f7a'),(282224,456,'_edit_lock','1735976225:3'),(282225,41905,'hide_hero','0'),(282226,41905,'_hide_hero','field_66a2380fcda39'),(282227,41905,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(282228,41905,'_hero_title','field_617571fe285e8'),(282229,41905,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(282230,41905,'_hero_text','field_6175723c285e9'),(282231,41905,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-41425-4\";s:6:\"target\";s:0:\"\";}'),(282232,41905,'_hero_actions_0_button','field_61757281285eb'),(282233,41905,'hero_actions','1'),(282234,41905,'_hero_actions','field_61757270285ea'),(282235,41905,'hero_style','default'),(282236,41905,'_hero_style','field_62051d9dc5324'),(282237,41905,'_thumbnail_id','41428'),(282238,41905,'__thumbnail_id','field_617570855ddaf'),(282239,41905,'hero_image_pos_x','right'),(282240,41905,'_hero_image_pos_x','field_62ec3d05390bb'),(282241,41905,'hero_image_pos_y','top'),(282242,41905,'_hero_image_pos_y','field_62ec3d05390bc'),(282243,41905,'hero_image_pos',''),(282244,41905,'_hero_image_pos','field_62ec3d05390ba'),(282245,41905,'fft_hide_from_listings','0'),(282246,41905,'_fft_hide_from_listings','field_61f1320446ab2'),(282247,41905,'fft_page_format','default'),(282248,41905,'_fft_page_format','field_61ae213f1f218'),(282249,41905,'fft_hide_nav','0'),(282250,41905,'_fft_hide_nav','field_635bd5e43527c'),(282251,41905,'fft_hide_header_call_to_action','0'),(282252,41905,'_fft_hide_header_call_to_action','field_635bd6723527d'),(282253,41905,'fft_page_sitemap','0'),(282254,41905,'_fft_page_sitemap','field_61af9b34e8181'),(282255,41905,'blocks_0_acfe_flexible_toggle',''),(282256,41905,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(282257,41905,'blocks_0_acfe_flexible_layout_title','Icons'),(282258,41905,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(282259,41905,'blocks_0_options_theme','#b61234'),(282260,41905,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(282261,41905,'blocks_0_options_format','row'),(282262,41905,'_blocks_0_options_format','field_64bfde9a90690'),(282263,41905,'blocks_0_options',''),(282264,41905,'_blocks_0_options','field_64bfdd9b90684'),(282265,41905,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(282266,41905,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(282267,41905,'blocks_0_icon_row_items_0_label','Accreditation'),(282268,41905,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(282269,41905,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(282270,41905,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(282271,41905,'blocks_0_icon_row_items_1_icon','finance.svg'),(282272,41905,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(282273,41905,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(282274,41905,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(282275,41905,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(282276,41905,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(282277,41905,'blocks_0_icon_row_items_2_icon','progression.svg'),(282278,41905,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(282279,41905,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(282280,41905,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(282281,41905,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(282282,41905,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(282283,41905,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(282284,41905,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(282285,41905,'blocks_0_icon_row_items_3_label','Qualification'),(282286,41905,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(282287,41905,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(282288,41905,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(282289,41905,'blocks_0_icon_row_items','4'),(282290,41905,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(282291,41905,'blocks_1_acfe_flexible_toggle',''),(282292,41905,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(282293,41905,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(282294,41905,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(282295,41905,'blocks_1_options_theme','#ffffff'),(282296,41905,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(282297,41905,'blocks_1_options_reverse','0'),(282298,41905,'_blocks_1_options_reverse','field_61768049bb8ac'),(282299,41905,'blocks_1_options',''),(282300,41905,'_blocks_1_options','field_617682517c334'),(282301,41905,'blocks_1_split_5050_image','41430'),(282302,41905,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(282303,41905,'blocks_1_split_5050_video',''),(282304,41905,'_blocks_1_split_5050_video','field_6239f3160848a'),(282305,41905,'blocks_1_split_5050_content_title',''),(282306,41905,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(282307,41905,'blocks_1_split_5050_content_heading','Course Overview'),(282308,41905,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(282309,41905,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(282310,41905,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(282311,41905,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(282312,41905,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(282313,41905,'blocks_1_split_5050_content_actions','1'),(282314,41905,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(282315,41905,'blocks_1_split_5050_content',''),(282316,41905,'_blocks_1_split_5050_content','field_61767afceb8ba'),(282317,41905,'blocks_2_acfe_flexible_toggle',''),(282318,41905,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(282319,41905,'blocks_2_acfe_flexible_layout_title','Form'),(282320,41905,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(282321,41905,'blocks_2_row_content_format','standard'),(282322,41905,'_blocks_2_row_content_format','field_6481ead962881'),(282323,41905,'blocks_2_row_content_title',''),(282324,41905,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(282325,41905,'blocks_2_row_content_heading','Enquire Today'),(282326,41905,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(282327,41905,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(282328,41905,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(282329,41905,'blocks_2_row_content_actions',''),(282330,41905,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(282331,41905,'blocks_2_row_content',''),(282332,41905,'_blocks_2_row_content','field_61a0f5f5b3db0'),(282333,41905,'blocks_2_row_form','40394'),(282334,41905,'_blocks_2_row_form','field_61a4ff2c0b08e'),(282335,41905,'blocks_2_row_form_button_label',''),(282336,41905,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(282337,41905,'blocks_3_acfe_flexible_toggle',''),(282338,41905,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(282339,41905,'blocks_3_acfe_flexible_layout_title','Video'),(282340,41905,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(282341,41905,'blocks_3_size','large'),(282342,41905,'_blocks_3_size','field_6487038f297c1'),(282343,41905,'blocks_3_row_content_title',''),(282344,41905,'_blocks_3_row_content_title','field_64870132a865d'),(282345,41905,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(282346,41905,'_blocks_3_row_content_heading','field_64870142a865e'),(282347,41905,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(282348,41905,'_blocks_3_row_content_text','field_64870148a865f'),(282349,41905,'blocks_3_row_content',''),(282350,41905,'_blocks_3_row_content','field_6487008ba865c'),(282351,41905,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(282352,41905,'_blocks_3_video_src','field_6193c4a98ec07'),(282353,41905,'blocks_3_video_thumbnail',''),(282354,41905,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(282355,41905,'blocks_4_acfe_flexible_toggle',''),(282356,41905,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(282357,41905,'blocks_4_acfe_flexible_layout_title','Template'),(282358,41905,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(282359,41905,'blocks_4_template','39207'),(282360,41905,'_blocks_4_template','field_617bdd570fe01'),(282361,41905,'blocks_5_acfe_flexible_toggle','1'),(282362,41905,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(282363,41905,'blocks_5_acfe_flexible_layout_title','Tabs'),(282364,41905,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(282365,41905,'blocks_5_options_theme','#ffffff'),(282366,41905,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(282367,41905,'blocks_5_options',''),(282368,41905,'_blocks_5_options','field_6177cfcd8140f'),(282369,41905,'blocks_5_tabs_0_tab_label','Entry requirements'),(282370,41905,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(282371,41905,'blocks_5_tabs_0_tab_content_title',''),(282372,41905,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(282373,41905,'blocks_5_tabs_0_tab_content_heading',''),(282374,41905,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(282375,41905,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(282376,41905,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(282377,41905,'blocks_5_tabs_0_tab_content_actions',''),(282378,41905,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(282379,41905,'blocks_5_tabs_0_tab_content',''),(282380,41905,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(282381,41905,'blocks_5_tabs_0_tab_image',''),(282382,41905,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(282383,41905,'blocks_5_tabs_1_tab_label','Learning format'),(282384,41905,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(282385,41905,'blocks_5_tabs_1_tab_content_title',''),(282386,41905,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(282387,41905,'blocks_5_tabs_1_tab_content_heading',''),(282388,41905,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(282389,41905,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(282390,41905,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(282391,41905,'blocks_5_tabs_1_tab_content_actions',''),(282392,41905,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(282393,41905,'blocks_5_tabs_1_tab_content',''),(282394,41905,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(282395,41905,'blocks_5_tabs_1_tab_image',''),(282396,41905,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(282397,41905,'blocks_5_tabs_2_tab_label','Qualifications included'),(282398,41905,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(282399,41905,'blocks_5_tabs_2_tab_content_title',''),(282400,41905,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(282401,41905,'blocks_5_tabs_2_tab_content_heading',''),(282402,41905,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(282403,41905,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(282404,41905,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(282405,41905,'blocks_5_tabs_2_tab_content_actions',''),(282406,41905,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(282407,41905,'blocks_5_tabs_2_tab_content',''),(282408,41905,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(282409,41905,'blocks_5_tabs_2_tab_image',''),(282410,41905,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(282411,41905,'blocks_5_tabs','3'),(282412,41905,'_blocks_5_tabs','field_6177cff281419'),(282413,41905,'blocks_6_acfe_flexible_toggle',''),(282414,41905,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(282415,41905,'blocks_6_acfe_flexible_layout_title','Icons'),(282416,41905,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(282417,41905,'blocks_6_options_theme','#f5f5f5'),(282418,41905,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(282419,41905,'blocks_6_options_format','stacked'),(282420,41905,'_blocks_6_options_format','field_64bfde9a90690'),(282421,41905,'blocks_6_options',''),(282422,41905,'_blocks_6_options','field_64bfdd9b90684'),(282423,41905,'blocks_6_row_content_title','Options available to pay for your course'),(282424,41905,'_blocks_6_row_content_title','field_64bfdd9b90687'),(282425,41905,'blocks_6_row_content_heading','Fees & Funding Options '),(282426,41905,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(282427,41905,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(282428,41905,'_blocks_6_row_content_text','field_64bfdd9b90689'),(282429,41905,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(282430,41905,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(282431,41905,'blocks_6_row_content_actions','1'),(282432,41905,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(282433,41905,'blocks_6_row_content',''),(282434,41905,'_blocks_6_row_content','field_64bfdd9b90686'),(282435,41905,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(282436,41905,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(282437,41905,'blocks_6_icon_row_items_0_label','Pay in full'),(282438,41905,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(282439,41905,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(282440,41905,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(282441,41905,'blocks_6_icon_row_items_1_icon','finance.svg'),(282442,41905,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(282443,41905,'blocks_6_icon_row_items_1_label','0% finance'),(282444,41905,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(282445,41905,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(282446,41905,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(282447,41905,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(282448,41905,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(282449,41905,'blocks_6_icon_row_items_2_label','Deposit & balance'),(282450,41905,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(282451,41905,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(282452,41905,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(282453,41905,'blocks_6_icon_row_items','3'),(282454,41905,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(282455,41905,'blocks_7_acfe_flexible_toggle',''),(282456,41905,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(282457,41905,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(282458,41905,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(282459,41905,'blocks_7_options_theme','#ffffff'),(282460,41905,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(282461,41905,'blocks_7_options_reverse','0'),(282462,41905,'_blocks_7_options_reverse','field_61768049bb8ac'),(282463,41905,'blocks_7_options',''),(282464,41905,'_blocks_7_options','field_617682517c334'),(282465,41905,'blocks_7_split_5050_image','41333'),(282466,41905,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(282467,41905,'blocks_7_split_5050_video',''),(282468,41905,'_blocks_7_split_5050_video','field_6239f3160848a'),(282469,41905,'blocks_7_split_5050_content_title',''),(282470,41905,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(282471,41905,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(282472,41905,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(282473,41905,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(282474,41905,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(282475,41905,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(282476,41905,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(282477,41905,'blocks_7_split_5050_content_actions','1'),(282478,41905,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(282479,41905,'blocks_7_split_5050_content',''),(282480,41905,'_blocks_7_split_5050_content','field_61767afceb8ba'),(282481,41905,'blocks_8_acfe_flexible_toggle',''),(282482,41905,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(282483,41905,'blocks_8_acfe_flexible_layout_title','Icons'),(282484,41905,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(282485,41905,'blocks_8_options_theme','#f5f5f5'),(282486,41905,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(282487,41905,'blocks_8_options_format','row'),(282488,41905,'_blocks_8_options_format','field_64bfde9a90690'),(282489,41905,'blocks_8_options',''),(282490,41905,'_blocks_8_options','field_64bfdd9b90684'),(282491,41905,'blocks_8_icon_row_items_0_icon','qualification.svg'),(282492,41905,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(282493,41905,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(282494,41905,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(282495,41905,'blocks_8_icon_row_items_0_text',''),(282496,41905,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(282497,41905,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(282498,41905,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(282499,41905,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(282500,41905,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(282501,41905,'blocks_8_icon_row_items_1_text',''),(282502,41905,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(282503,41905,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(282504,41905,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(282505,41905,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(282506,41905,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(282507,41905,'blocks_8_icon_row_items_2_text',''),(282508,41905,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(282509,41905,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(282510,41905,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(282511,41905,'blocks_8_icon_row_items_3_label','Flexible funding options'),(282512,41905,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(282513,41905,'blocks_8_icon_row_items_3_text',''),(282514,41905,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(282515,41905,'blocks_8_icon_row_items','4'),(282516,41905,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(282517,41905,'blocks_9_acfe_flexible_toggle',''),(282518,41905,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(282519,41905,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(282520,41905,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(282521,41905,'blocks_9_options_theme','#ffffff'),(282522,41905,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(282523,41905,'blocks_9_options_reverse','1'),(282524,41905,'_blocks_9_options_reverse','field_61768049bb8ac'),(282525,41905,'blocks_9_options',''),(282526,41905,'_blocks_9_options','field_617682517c334'),(282527,41905,'blocks_9_split_5050_image','39224'),(282528,41905,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(282529,41905,'blocks_9_split_5050_video',''),(282530,41905,'_blocks_9_split_5050_video','field_6239f3160848a'),(282531,41905,'blocks_9_split_5050_content_title','Locations'),(282532,41905,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(282533,41905,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(282534,41905,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(282535,41905,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(282536,41905,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(282537,41905,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(282538,41905,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(282539,41905,'blocks_9_split_5050_content_actions','1'),(282540,41905,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(282541,41905,'blocks_9_split_5050_content',''),(282542,41905,'_blocks_9_split_5050_content','field_61767afceb8ba'),(282543,41905,'blocks_10_acfe_flexible_toggle','1'),(282544,41905,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(282545,41905,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(282546,41905,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(282547,41905,'blocks_10_options_theme','#ffffff'),(282548,41905,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(282549,41905,'blocks_10_options',''),(282550,41905,'_blocks_10_options','field_617ac0b7f6c08'),(282551,41905,'blocks_10_show','selection'),(282552,41905,'_blocks_10_show','field_61a49cba9d946'),(282553,41905,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(282554,41905,'_blocks_10_courses','field_61b244781ee0a'),(282555,41905,'blocks_10_open_whats_included','1'),(282556,41905,'_blocks_10_open_whats_included','field_66ebfd679450c'),(282557,41905,'blocks_10_open_key_information','0'),(282558,41905,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(282559,41905,'blocks_10_open',''),(282560,41905,'_blocks_10_open','field_66ebfd009450b'),(282561,41905,'blocks_11_acfe_flexible_toggle',''),(282562,41905,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(282563,41905,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(282564,41905,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(282565,41905,'blocks_11_options_theme','#ffffff'),(282566,41905,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(282567,41905,'blocks_11_options_reverse','0'),(282568,41905,'_blocks_11_options_reverse','field_61768049bb8ac'),(282569,41905,'blocks_11_options',''),(282570,41905,'_blocks_11_options','field_617682517c334'),(282571,41905,'blocks_11_split_5050_image','41299'),(282572,41905,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(282573,41905,'blocks_11_split_5050_video',''),(282574,41905,'_blocks_11_split_5050_video','field_6239f3160848a'),(282575,41905,'blocks_11_split_5050_content_title','Optimise Performance '),(282576,41905,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(282577,41905,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(282578,41905,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(282579,41905,'blocks_11_split_5050_content_text','This course is built and taught by industry experts and is the perfect springboard into the industry of Sports Massage. You will be armed with the knowledge and skills to plan, deliver and evaluate sports massage treatments for the general public and for athletes alike.\r\n\r\nThis is a full package course that will set you up to start a career in Sports Massage. With the learning and practical experience you will gain and a complimentary massage couch included in the course, you are truly set up to build your business.\r\n\r\nLevel 3 Sports Massage includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(282580,41905,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(282581,41905,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(282582,41905,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(282583,41905,'blocks_11_split_5050_content_actions','1'),(282584,41905,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(282585,41905,'blocks_11_split_5050_content',''),(282586,41905,'_blocks_11_split_5050_content','field_61767afceb8ba'),(282587,41905,'blocks_12_acfe_flexible_toggle',''),(282588,41905,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(282589,41905,'blocks_12_acfe_flexible_layout_title','Template'),(282590,41905,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(282591,41905,'blocks_12_template','40987'),(282592,41905,'_blocks_12_template','field_617bdd570fe01'),(282593,41905,'blocks_13_acfe_flexible_toggle',''),(282594,41905,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(282595,41905,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(282596,41905,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(282597,41905,'blocks_13_options_theme','#f5f5f5'),(282598,41905,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(282599,41905,'blocks_13_options_state','0'),(282600,41905,'_blocks_13_options_state','field_6239fcb7508c5'),(282601,41905,'blocks_13_options',''),(282602,41905,'_blocks_13_options','field_6177e2991ac44'),(282603,41905,'blocks_13_content_title',''),(282604,41905,'_blocks_13_content_title','field_64d237e8bb1e2'),(282605,41905,'blocks_13_content_heading','FAQ\'s'),(282606,41905,'_blocks_13_content_heading','field_64d237e8bb1e3'),(282607,41905,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(282608,41905,'_blocks_13_content_text','field_64d237e8bb1e4'),(282609,41905,'blocks_13_content_actions',''),(282610,41905,'_blocks_13_content_actions','field_64d237e8bb1e5'),(282611,41905,'blocks_13_content_align','left'),(282612,41905,'_blocks_13_content_align','field_64d2443e6b6aa'),(282613,41905,'blocks_13_content',''),(282614,41905,'_blocks_13_content','field_64d237e8bb1e1'),(282615,41905,'blocks_13_accordion_content','faqs'),(282616,41905,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(282617,41905,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(282618,41905,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(282619,41905,'blocks_13_actions',''),(282620,41905,'_blocks_13_actions','field_61a746a817f7a'),(282621,41905,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(282622,41905,'_blocks','field_6176696113096'),(282623,41905,'course_label_text',''),(282624,41905,'_course_label_text','field_61e17babf71fa'),(282625,41905,'course_label',''),(282626,41905,'_course_label','field_61e12f92749a7'),(282627,41905,'course_description',''),(282628,41905,'_course_description','field_617ac5788e5e1'),(282629,41905,'course_key_info',''),(282630,41905,'_course_key_info','field_617ac6ad8e5e2'),(282631,41905,'course_included',''),(282632,41905,'_course_included','field_617ac6f08e5e4'),(282633,41905,'_acf_changed','1'),(282634,41906,'hide_hero','0'),(282635,41906,'_hide_hero','field_66a2380fcda39'),(282636,41906,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(282637,41906,'_hero_title','field_617571fe285e8'),(282638,41906,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(282639,41906,'_hero_text','field_6175723c285e9'),(282640,41906,'hero_actions','1'),(282641,41906,'_hero_actions','field_61757270285ea'),(282642,41906,'hero_style','default'),(282643,41906,'_hero_style','field_62051d9dc5324'),(282644,41906,'_thumbnail_id','41428'),(282645,41906,'__thumbnail_id','field_617570855ddaf'),(282646,41906,'hero_image_pos_x','right'),(282647,41906,'_hero_image_pos_x','field_62ec3d05390bb'),(282648,41906,'hero_image_pos_y','top'),(282649,41906,'_hero_image_pos_y','field_62ec3d05390bc'),(282650,41906,'hero_image_pos',''),(282651,41906,'_hero_image_pos','field_62ec3d05390ba'),(282652,41906,'fft_hide_from_listings','0'),(282653,41906,'_fft_hide_from_listings','field_61f1320446ab2'),(282654,41906,'fft_page_format','default'),(282655,41906,'_fft_page_format','field_61ae213f1f218'),(282656,41906,'fft_hide_nav','0'),(282657,41906,'_fft_hide_nav','field_635bd5e43527c'),(282658,41906,'fft_hide_header_call_to_action','0'),(282659,41906,'_fft_hide_header_call_to_action','field_635bd6723527d'),(282660,41906,'fft_page_sitemap','0'),(282661,41906,'_fft_page_sitemap','field_61af9b34e8181'),(282662,41906,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(282663,41906,'_blocks','field_6176696113096'),(282664,41906,'course_label_text',''),(282665,41906,'_course_label_text','field_61e17babf71fa'),(282666,41906,'course_label',''),(282667,41906,'_course_label','field_61e12f92749a7'),(282668,41906,'course_description',''),(282669,41906,'_course_description','field_617ac5788e5e1'),(282670,41906,'course_key_info',''),(282671,41906,'_course_key_info','field_617ac6ad8e5e2'),(282672,41906,'course_included',''),(282673,41906,'_course_included','field_617ac6f08e5e4'),(282674,41906,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-41425-4\";s:6:\"target\";s:0:\"\";}'),(282675,41906,'_hero_actions_0_button','field_61757281285eb'),(282676,41906,'blocks_0_acfe_flexible_toggle',''),(282677,41906,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(282678,41906,'blocks_0_acfe_flexible_layout_title','Icons'),(282679,41906,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(282680,41906,'blocks_0_options_theme','#b61234'),(282681,41906,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(282682,41906,'blocks_0_options_format','row'),(282683,41906,'_blocks_0_options_format','field_64bfde9a90690'),(282684,41906,'blocks_0_options',''),(282685,41906,'_blocks_0_options','field_64bfdd9b90684'),(282686,41906,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(282687,41906,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(282688,41906,'blocks_0_icon_row_items_0_label','Accreditation'),(282689,41906,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(282690,41906,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(282691,41906,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(282692,41906,'blocks_0_icon_row_items_1_icon','finance.svg'),(282693,41906,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(282694,41906,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(282695,41906,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(282696,41906,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(282697,41906,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(282698,41906,'blocks_0_icon_row_items_2_icon','progression.svg'),(282699,41906,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(282700,41906,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(282701,41906,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(282702,41906,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(282703,41906,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(282704,41906,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(282705,41906,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(282706,41906,'blocks_0_icon_row_items_3_label','Qualification'),(282707,41906,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(282708,41906,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(282709,41906,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(282710,41906,'blocks_0_icon_row_items','4'),(282711,41906,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(282712,41906,'blocks_5_acfe_flexible_toggle','1'),(282713,41906,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(282714,41906,'blocks_5_acfe_flexible_layout_title','Tabs'),(282715,41906,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(282716,41906,'blocks_5_options_theme','#ffffff'),(282717,41906,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(282718,41906,'blocks_5_options',''),(282719,41906,'_blocks_5_options','field_6177cfcd8140f'),(282720,41906,'blocks_5_tabs_0_tab_label','Entry requirements'),(282721,41906,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(282722,41906,'blocks_5_tabs_0_tab_content_title',''),(282723,41906,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(282724,41906,'blocks_5_tabs_0_tab_content_heading',''),(282725,41906,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(282726,41906,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(282727,41906,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(282728,41906,'blocks_5_tabs_0_tab_content_actions',''),(282729,41906,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(282730,41906,'blocks_5_tabs_0_tab_content',''),(282731,41906,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(282732,41906,'blocks_5_tabs_0_tab_image',''),(282733,41906,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(282734,41906,'blocks_5_tabs_1_tab_label','Learning format'),(282735,41906,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(282736,41906,'blocks_5_tabs_1_tab_content_title',''),(282737,41906,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(282738,41906,'blocks_5_tabs_1_tab_content_heading',''),(282739,41906,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(282740,41906,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(282741,41906,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(282742,41906,'blocks_5_tabs_1_tab_content_actions',''),(282743,41906,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(282744,41906,'blocks_5_tabs_1_tab_content',''),(282745,41906,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(282746,41906,'blocks_5_tabs_1_tab_image',''),(282747,41906,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(282748,41906,'blocks_5_tabs_2_tab_label','Qualifications included'),(282749,41906,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(282750,41906,'blocks_5_tabs_2_tab_content_title',''),(282751,41906,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(282752,41906,'blocks_5_tabs_2_tab_content_heading',''),(282753,41906,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(282754,41906,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(282755,41906,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(282756,41906,'blocks_5_tabs_2_tab_content_actions',''),(282757,41906,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(282758,41906,'blocks_5_tabs_2_tab_content',''),(282759,41906,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(282760,41906,'blocks_5_tabs_2_tab_image',''),(282761,41906,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(282762,41906,'blocks_5_tabs','3'),(282763,41906,'_blocks_5_tabs','field_6177cff281419'),(282764,41906,'blocks_4_acfe_flexible_toggle',''),(282765,41906,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(282766,41906,'blocks_4_acfe_flexible_layout_title','Template'),(282767,41906,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(282768,41906,'blocks_4_template','39207'),(282769,41906,'_blocks_4_template','field_617bdd570fe01'),(282770,41906,'blocks_6_acfe_flexible_toggle',''),(282771,41906,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(282772,41906,'blocks_6_acfe_flexible_layout_title','Icons'),(282773,41906,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(282774,41906,'blocks_6_options_theme','#f5f5f5'),(282775,41906,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(282776,41906,'blocks_6_options_format','stacked'),(282777,41906,'_blocks_6_options_format','field_64bfde9a90690'),(282778,41906,'blocks_6_options',''),(282779,41906,'_blocks_6_options','field_64bfdd9b90684'),(282780,41906,'blocks_6_row_content_title','Options available to pay for your course'),(282781,41906,'_blocks_6_row_content_title','field_64bfdd9b90687'),(282782,41906,'blocks_6_row_content_heading','Fees & Funding Options '),(282783,41906,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(282784,41906,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(282785,41906,'_blocks_6_row_content_text','field_64bfdd9b90689'),(282786,41906,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(282787,41906,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(282788,41906,'blocks_6_row_content_actions','1'),(282789,41906,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(282790,41906,'blocks_6_row_content',''),(282791,41906,'_blocks_6_row_content','field_64bfdd9b90686'),(282792,41906,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(282793,41906,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(282794,41906,'blocks_6_icon_row_items_0_label','Pay in full'),(282795,41906,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(282796,41906,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(282797,41906,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(282798,41906,'blocks_6_icon_row_items_1_icon','finance.svg'),(282799,41906,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(282800,41906,'blocks_6_icon_row_items_1_label','0% finance'),(282801,41906,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(282802,41906,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(282803,41906,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(282804,41906,'blocks_6_icon_row_items','3'),(282805,41906,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(282806,41906,'blocks_7_acfe_flexible_toggle',''),(282807,41906,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(282808,41906,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(282809,41906,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(282810,41906,'blocks_7_options_theme','#ffffff'),(282811,41906,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(282812,41906,'blocks_7_options_reverse','0'),(282813,41906,'_blocks_7_options_reverse','field_61768049bb8ac'),(282814,41906,'blocks_7_options',''),(282815,41906,'_blocks_7_options','field_617682517c334'),(282816,41906,'blocks_7_split_5050_image','41333'),(282817,41906,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(282818,41906,'blocks_7_split_5050_video',''),(282819,41906,'_blocks_7_split_5050_video','field_6239f3160848a'),(282820,41906,'blocks_7_split_5050_content_title',''),(282821,41906,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(282822,41906,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(282823,41906,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(282824,41906,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(282825,41906,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(282826,41906,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(282827,41906,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(282828,41906,'blocks_7_split_5050_content_actions','1'),(282829,41906,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(282830,41906,'blocks_7_split_5050_content',''),(282831,41906,'_blocks_7_split_5050_content','field_61767afceb8ba'),(282832,41906,'blocks_8_acfe_flexible_toggle',''),(282833,41906,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(282834,41906,'blocks_8_acfe_flexible_layout_title','Icons'),(282835,41906,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(282836,41906,'blocks_8_options_theme','#f5f5f5'),(282837,41906,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(282838,41906,'blocks_8_options_format','row'),(282839,41906,'_blocks_8_options_format','field_64bfde9a90690'),(282840,41906,'blocks_8_options',''),(282841,41906,'_blocks_8_options','field_64bfdd9b90684'),(282842,41906,'blocks_8_icon_row_items_0_icon','qualification.svg'),(282843,41906,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(282844,41906,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(282845,41906,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(282846,41906,'blocks_8_icon_row_items_0_text',''),(282847,41906,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(282848,41906,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(282849,41906,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(282850,41906,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(282851,41906,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(282852,41906,'blocks_8_icon_row_items_1_text',''),(282853,41906,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(282854,41906,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(282855,41906,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(282856,41906,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(282857,41906,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(282858,41906,'blocks_8_icon_row_items_2_text',''),(282859,41906,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(282860,41906,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(282861,41906,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(282862,41906,'blocks_8_icon_row_items_3_label','Flexible funding options'),(282863,41906,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(282864,41906,'blocks_8_icon_row_items_3_text',''),(282865,41906,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(282866,41906,'blocks_8_icon_row_items','4'),(282867,41906,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(282868,41906,'blocks_9_acfe_flexible_toggle',''),(282869,41906,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(282870,41906,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(282871,41906,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(282872,41906,'blocks_9_options_theme','#ffffff'),(282873,41906,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(282874,41906,'blocks_9_options_reverse','1'),(282875,41906,'_blocks_9_options_reverse','field_61768049bb8ac'),(282876,41906,'blocks_9_options',''),(282877,41906,'_blocks_9_options','field_617682517c334'),(282878,41906,'blocks_9_split_5050_image','39224'),(282879,41906,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(282880,41906,'blocks_9_split_5050_video',''),(282881,41906,'_blocks_9_split_5050_video','field_6239f3160848a'),(282882,41906,'blocks_9_split_5050_content_title','Locations'),(282883,41906,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(282884,41906,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(282885,41906,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(282886,41906,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(282887,41906,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(282888,41906,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(282889,41906,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(282890,41906,'blocks_9_split_5050_content_actions','1'),(282891,41906,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(282892,41906,'blocks_9_split_5050_content',''),(282893,41906,'_blocks_9_split_5050_content','field_61767afceb8ba'),(282894,41906,'blocks_1_acfe_flexible_toggle',''),(282895,41906,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(282896,41906,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(282897,41906,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(282898,41906,'blocks_1_options_theme','#ffffff'),(282899,41906,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(282900,41906,'blocks_1_options_reverse','0'),(282901,41906,'_blocks_1_options_reverse','field_61768049bb8ac'),(282902,41906,'blocks_1_options',''),(282903,41906,'_blocks_1_options','field_617682517c334'),(282904,41906,'blocks_1_split_5050_image','41430'),(282905,41906,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(282906,41906,'blocks_1_split_5050_video',''),(282907,41906,'_blocks_1_split_5050_video','field_6239f3160848a'),(282908,41906,'blocks_1_split_5050_content_title',''),(282909,41906,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(282910,41906,'blocks_1_split_5050_content_heading','Course Overview'),(282911,41906,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(282912,41906,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(282913,41906,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(282914,41906,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(282915,41906,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(282916,41906,'blocks_1_split_5050_content_actions','1'),(282917,41906,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(282918,41906,'blocks_1_split_5050_content',''),(282919,41906,'_blocks_1_split_5050_content','field_61767afceb8ba'),(282920,41906,'blocks_2_acfe_flexible_toggle',''),(282921,41906,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(282922,41906,'blocks_2_acfe_flexible_layout_title','Form'),(282923,41906,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(282924,41906,'blocks_2_row_content_format','standard'),(282925,41906,'_blocks_2_row_content_format','field_6481ead962881'),(282926,41906,'blocks_2_row_content_title',''),(282927,41906,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(282928,41906,'blocks_2_row_content_heading','Enquire Today'),(282929,41906,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(282930,41906,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(282931,41906,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(282932,41906,'blocks_2_row_content_actions',''),(282933,41906,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(282934,41906,'blocks_2_row_content',''),(282935,41906,'_blocks_2_row_content','field_61a0f5f5b3db0'),(282936,41906,'blocks_2_row_form','40394'),(282937,41906,'_blocks_2_row_form','field_61a4ff2c0b08e'),(282938,41906,'blocks_2_row_form_button_label',''),(282939,41906,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(282940,41906,'blocks_3_acfe_flexible_toggle',''),(282941,41906,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(282942,41906,'blocks_3_acfe_flexible_layout_title','Video'),(282943,41906,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(282944,41906,'blocks_3_size','large'),(282945,41906,'_blocks_3_size','field_6487038f297c1'),(282946,41906,'blocks_3_row_content_title',''),(282947,41906,'_blocks_3_row_content_title','field_64870132a865d'),(282948,41906,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(282949,41906,'_blocks_3_row_content_heading','field_64870142a865e'),(282950,41906,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(282951,41906,'_blocks_3_row_content_text','field_64870148a865f'),(282952,41906,'blocks_3_row_content',''),(282953,41906,'_blocks_3_row_content','field_6487008ba865c'),(282954,41906,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(282955,41906,'_blocks_3_video_src','field_6193c4a98ec07'),(282956,41906,'blocks_3_video_thumbnail',''),(282957,41906,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(282958,41906,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(282959,41906,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(282960,41906,'blocks_6_icon_row_items_2_label','Deposit & balance'),(282961,41906,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(282962,41906,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(282963,41906,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(282964,41906,'blocks_10_acfe_flexible_toggle','1'),(282965,41906,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(282966,41906,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(282967,41906,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(282968,41906,'blocks_10_options_theme','#ffffff'),(282969,41906,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(282970,41906,'blocks_10_options',''),(282971,41906,'_blocks_10_options','field_617ac0b7f6c08'),(282972,41906,'blocks_10_show','selection'),(282973,41906,'_blocks_10_show','field_61a49cba9d946'),(282974,41906,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(282975,41906,'_blocks_10_courses','field_61b244781ee0a'),(282976,41906,'blocks_10_open_whats_included','1'),(282977,41906,'_blocks_10_open_whats_included','field_66ebfd679450c'),(282978,41906,'blocks_10_open_key_information','0'),(282979,41906,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(282980,41906,'blocks_10_open',''),(282981,41906,'_blocks_10_open','field_66ebfd009450b'),(282982,41906,'blocks_11_acfe_flexible_toggle',''),(282983,41906,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(282984,41906,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(282985,41906,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(282986,41906,'blocks_11_options_theme','#ffffff'),(282987,41906,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(282988,41906,'blocks_11_options_reverse','0'),(282989,41906,'_blocks_11_options_reverse','field_61768049bb8ac'),(282990,41906,'blocks_11_options',''),(282991,41906,'_blocks_11_options','field_617682517c334'),(282992,41906,'blocks_11_split_5050_image','41299'),(282993,41906,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(282994,41906,'blocks_11_split_5050_video',''),(282995,41906,'_blocks_11_split_5050_video','field_6239f3160848a'),(282996,41906,'blocks_11_split_5050_content_title','Optimise Performance '),(282997,41906,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(282998,41906,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(282999,41906,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(283000,41906,'blocks_11_split_5050_content_text','This course is built and taught by industry experts and is the perfect springboard into the industry of Sports Massage. You will be armed with the knowledge and skills to plan, deliver and evaluate sports massage treatments for the general public and for athletes alike.\r\n\r\nThis is a full package course that will set you up to start a career in Sports Massage. With the learning and practical experience you will gain and a complimentary massage couch included in the course, you are truly set up to build your business.\r\n\r\nLevel 3 Sports Massage includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(283001,41906,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(283002,41906,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(283003,41906,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(283004,41906,'blocks_11_split_5050_content_actions','1'),(283005,41906,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(283006,41906,'blocks_11_split_5050_content',''),(283007,41906,'_blocks_11_split_5050_content','field_61767afceb8ba'),(283008,41906,'blocks_12_acfe_flexible_toggle',''),(283009,41906,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(283010,41906,'blocks_12_acfe_flexible_layout_title','Template'),(283011,41906,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(283012,41906,'blocks_12_template','40987'),(283013,41906,'_blocks_12_template','field_617bdd570fe01'),(283014,41906,'blocks_13_acfe_flexible_toggle',''),(283015,41906,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(283016,41906,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(283017,41906,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(283018,41906,'blocks_13_options_theme','#f5f5f5'),(283019,41906,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(283020,41906,'blocks_13_options_state','0'),(283021,41906,'_blocks_13_options_state','field_6239fcb7508c5'),(283022,41906,'blocks_13_options',''),(283023,41906,'_blocks_13_options','field_6177e2991ac44'),(283024,41906,'blocks_13_content_title',''),(283025,41906,'_blocks_13_content_title','field_64d237e8bb1e2'),(283026,41906,'blocks_13_content_heading','FAQ\'s'),(283027,41906,'_blocks_13_content_heading','field_64d237e8bb1e3'),(283028,41906,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(283029,41906,'_blocks_13_content_text','field_64d237e8bb1e4'),(283030,41906,'blocks_13_content_actions',''),(283031,41906,'_blocks_13_content_actions','field_64d237e8bb1e5'),(283032,41906,'blocks_13_content_align','left'),(283033,41906,'_blocks_13_content_align','field_64d2443e6b6aa'),(283034,41906,'blocks_13_content',''),(283035,41906,'_blocks_13_content','field_64d237e8bb1e1'),(283036,41906,'blocks_13_accordion_content','faqs'),(283037,41906,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(283038,41906,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(283039,41906,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(283040,41906,'blocks_13_actions',''),(283041,41906,'_blocks_13_actions','field_61a746a817f7a'),(283042,296,'_edit_lock','1735976307:3'),(283043,267,'_edit_lock','1735976723:3'),(283044,293,'_edit_lock','1735976803:3'),(283045,289,'_edit_lock','1735976845:3'),(283046,286,'_edit_lock','1735976965:3'),(283047,164,'_edit_lock','1735976977:3'),(283048,556,'_edit_lock','1735976990:3'),(283049,575,'_edit_lock','1735977032:3'),(283050,591,'_edit_lock','1735977106:3'),(283051,616,'_edit_lock','1735977159:3'),(283052,654,'_edit_lock','1735977215:3'),(283053,674,'_edit_lock','1735977256:3'),(283054,682,'_edit_lock','1735977295:3'),(283055,702,'_edit_lock','1735977309:3'),(283056,705,'_edit_lock','1735977355:3'),(283057,708,'_edit_lock','1735977368:3'),(283058,721,'_edit_lock','1735977548:3'),(283059,734,'_edit_lock','1735977459:3'),(283060,758,'_edit_lock','1735977498:3'),(283061,765,'_edit_lock','1735977553:3'),(283062,769,'_edit_lock','1735977566:3'),(283063,803,'_edit_lock','1735977621:3'),(283064,813,'_edit_lock','1735977635:3'),(283065,826,'_edit_lock','1735977644:3'),(283066,41974,'hide_hero','0'),(283067,41974,'_hide_hero','field_66a2380fcda39'),(283068,41974,'hero_title','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching '),(283069,41974,'_hero_title','field_617571fe285e8'),(283070,41974,'hero_text','Elevate Your Pilates Practice with Intrinsic biomechanics and enhance your career pathways '),(283071,41974,'_hero_text','field_6175723c285e9'),(283072,41974,'hero_actions','1'),(283073,41974,'_hero_actions','field_61757270285ea'),(283074,41974,'hero_style','default'),(283075,41974,'_hero_style','field_62051d9dc5324'),(283076,41974,'_thumbnail_id','41524'),(283077,41974,'__thumbnail_id','field_617570855ddaf'),(283078,41974,'hero_image_pos_x','right'),(283079,41974,'_hero_image_pos_x','field_62ec3d05390bb'),(283080,41974,'hero_image_pos_y','top'),(283081,41974,'_hero_image_pos_y','field_62ec3d05390bc'),(283082,41974,'hero_image_pos',''),(283083,41974,'_hero_image_pos','field_62ec3d05390ba'),(283084,41974,'fft_hide_from_listings','0'),(283085,41974,'_fft_hide_from_listings','field_61f1320446ab2'),(283086,41974,'fft_page_format','default'),(283087,41974,'_fft_page_format','field_61ae213f1f218'),(283088,41974,'fft_hide_nav','0'),(283089,41974,'_fft_hide_nav','field_635bd5e43527c'),(283090,41974,'fft_hide_header_call_to_action','0'),(283091,41974,'_fft_hide_header_call_to_action','field_635bd6723527d'),(283092,41974,'fft_page_sitemap','0'),(283093,41974,'_fft_page_sitemap','field_61af9b34e8181'),(283094,41974,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(283095,41974,'_blocks','field_6176696113096'),(283096,41974,'course_label_text',''),(283097,41974,'_course_label_text','field_61e17babf71fa'),(283098,41974,'course_label',''),(283099,41974,'_course_label','field_61e12f92749a7'),(283100,41974,'course_description',''),(283101,41974,'_course_description','field_617ac5788e5e1'),(283102,41974,'course_key_info',''),(283103,41974,'_course_key_info','field_617ac6ad8e5e2'),(283104,41974,'course_included',''),(283105,41974,'_course_included','field_617ac6f08e5e4'),(283106,41974,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41520-4\";s:6:\"target\";s:0:\"\";}'),(283107,41974,'_hero_actions_0_button','field_61757281285eb'),(283108,41974,'blocks_0_acfe_flexible_toggle',''),(283109,41974,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(283110,41974,'blocks_0_acfe_flexible_layout_title','Icons'),(283111,41974,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(283112,41974,'blocks_0_options_theme','#b61234'),(283113,41974,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(283114,41974,'blocks_0_options_format','row'),(283115,41974,'_blocks_0_options_format','field_64bfde9a90690'),(283116,41974,'blocks_0_options',''),(283117,41974,'_blocks_0_options','field_64bfdd9b90684'),(283118,41974,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(283119,41974,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(283120,41974,'blocks_0_icon_row_items_0_label','Accreditation'),(283121,41974,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(283122,41974,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(283123,41974,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(283124,41974,'blocks_0_icon_row_items_1_icon','finance.svg'),(283125,41974,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(283126,41974,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(283127,41974,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(283128,41974,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(283129,41974,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(283130,41974,'blocks_0_icon_row_items_2_icon','progression.svg'),(283131,41974,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(283132,41974,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(283133,41974,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(283134,41974,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(283135,41974,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(283136,41974,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(283137,41974,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(283138,41974,'blocks_0_icon_row_items_3_label','Qualification'),(283139,41974,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(283140,41974,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(283141,41974,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(283142,41974,'blocks_0_icon_row_items','4'),(283143,41974,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(283144,41974,'blocks_5_acfe_flexible_toggle','1'),(283145,41974,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(283146,41974,'blocks_5_acfe_flexible_layout_title','Tabs'),(283147,41974,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(283148,41974,'blocks_5_options_theme','#ffffff'),(283149,41974,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(283150,41974,'blocks_5_options',''),(283151,41974,'_blocks_5_options','field_6177cfcd8140f'),(283152,41974,'blocks_5_tabs_0_tab_label','Entry requirements'),(283153,41974,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(283154,41974,'blocks_5_tabs_0_tab_content_title',''),(283155,41974,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(283156,41974,'blocks_5_tabs_0_tab_content_heading',''),(283157,41974,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(283158,41974,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(283159,41974,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(283160,41974,'blocks_5_tabs_0_tab_content_actions',''),(283161,41974,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(283162,41974,'blocks_5_tabs_0_tab_content',''),(283163,41974,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(283164,41974,'blocks_5_tabs_0_tab_image',''),(283165,41974,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(283166,41974,'blocks_5_tabs_1_tab_label','Learning format'),(283167,41974,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(283168,41974,'blocks_5_tabs_1_tab_content_title',''),(283169,41974,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(283170,41974,'blocks_5_tabs_1_tab_content_heading',''),(283171,41974,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(283172,41974,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(283173,41974,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(283174,41974,'blocks_5_tabs_1_tab_content_actions',''),(283175,41974,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(283176,41974,'blocks_5_tabs_1_tab_content',''),(283177,41974,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(283178,41974,'blocks_5_tabs_1_tab_image',''),(283179,41974,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(283180,41974,'blocks_5_tabs_2_tab_label','Qualifications included'),(283181,41974,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(283182,41974,'blocks_5_tabs_2_tab_content_title',''),(283183,41974,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(283184,41974,'blocks_5_tabs_2_tab_content_heading',''),(283185,41974,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(283186,41974,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(283187,41974,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(283188,41974,'blocks_5_tabs_2_tab_content_actions',''),(283189,41974,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(283190,41974,'blocks_5_tabs_2_tab_content',''),(283191,41974,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(283192,41974,'blocks_5_tabs_2_tab_image',''),(283193,41974,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(283194,41974,'blocks_5_tabs','3'),(283195,41974,'_blocks_5_tabs','field_6177cff281419'),(283196,41974,'blocks_4_acfe_flexible_toggle',''),(283197,41974,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(283198,41974,'blocks_4_acfe_flexible_layout_title','Template'),(283199,41974,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(283200,41974,'blocks_4_template','39207'),(283201,41974,'_blocks_4_template','field_617bdd570fe01'),(283202,41974,'blocks_6_acfe_flexible_toggle',''),(283203,41974,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(283204,41974,'blocks_6_acfe_flexible_layout_title','Icons'),(283205,41974,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(283206,41974,'blocks_6_options_theme','#f5f5f5'),(283207,41974,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(283208,41974,'blocks_6_options_format','stacked'),(283209,41974,'_blocks_6_options_format','field_64bfde9a90690'),(283210,41974,'blocks_6_options',''),(283211,41974,'_blocks_6_options','field_64bfdd9b90684'),(283212,41974,'blocks_6_row_content_title','Options available to pay for your course'),(283213,41974,'_blocks_6_row_content_title','field_64bfdd9b90687'),(283214,41974,'blocks_6_row_content_heading','Fees & Funding Options '),(283215,41974,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(283216,41974,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(283217,41974,'_blocks_6_row_content_text','field_64bfdd9b90689'),(283218,41974,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(283219,41974,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(283220,41974,'blocks_6_row_content_actions','1'),(283221,41974,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(283222,41974,'blocks_6_row_content',''),(283223,41974,'_blocks_6_row_content','field_64bfdd9b90686'),(283224,41974,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(283225,41974,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(283226,41974,'blocks_6_icon_row_items_0_label','Pay in full'),(283227,41974,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(283228,41974,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(283229,41974,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(283230,41974,'blocks_6_icon_row_items_1_icon','finance.svg'),(283231,41974,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(283232,41974,'blocks_6_icon_row_items_1_label','0% finance'),(283233,41974,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(283234,41974,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(283235,41974,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(283236,41974,'blocks_6_icon_row_items','3'),(283237,41974,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(283238,41974,'blocks_7_acfe_flexible_toggle',''),(283239,41974,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(283240,41974,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(283241,41974,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(283242,41974,'blocks_7_options_theme','#ffffff'),(283243,41974,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(283244,41974,'blocks_7_options_reverse','0'),(283245,41974,'_blocks_7_options_reverse','field_61768049bb8ac'),(283246,41974,'blocks_7_options',''),(283247,41974,'_blocks_7_options','field_617682517c334'),(283248,41974,'blocks_7_split_5050_image','41526'),(283249,41974,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(283250,41974,'blocks_7_split_5050_video',''),(283251,41974,'_blocks_7_split_5050_video','field_6239f3160848a'),(283252,41974,'blocks_7_split_5050_content_title',''),(283253,41974,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(283254,41974,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(283255,41974,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(283256,41974,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(283257,41974,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(283258,41974,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(283259,41974,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(283260,41974,'blocks_7_split_5050_content_actions','1'),(283261,41974,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(283262,41974,'blocks_7_split_5050_content',''),(283263,41974,'_blocks_7_split_5050_content','field_61767afceb8ba'),(283264,41974,'blocks_8_acfe_flexible_toggle',''),(283265,41974,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(283266,41974,'blocks_8_acfe_flexible_layout_title','Icons'),(283267,41974,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(283268,41974,'blocks_8_options_theme','#f5f5f5'),(283269,41974,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(283270,41974,'blocks_8_options_format','row'),(283271,41974,'_blocks_8_options_format','field_64bfde9a90690'),(283272,41974,'blocks_8_options',''),(283273,41974,'_blocks_8_options','field_64bfdd9b90684'),(283274,41974,'blocks_8_icon_row_items_0_icon','qualification.svg'),(283275,41974,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(283276,41974,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(283277,41974,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(283278,41974,'blocks_8_icon_row_items_0_text',''),(283279,41974,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(283280,41974,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(283281,41974,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(283282,41974,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(283283,41974,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(283284,41974,'blocks_8_icon_row_items_1_text',''),(283285,41974,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(283286,41974,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(283287,41974,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(283288,41974,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(283289,41974,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(283290,41974,'blocks_8_icon_row_items_2_text',''),(283291,41974,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(283292,41974,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(283293,41974,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(283294,41974,'blocks_8_icon_row_items_3_label','Flexible funding options'),(283295,41974,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(283296,41974,'blocks_8_icon_row_items_3_text',''),(283297,41974,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(283298,41974,'blocks_8_icon_row_items','4'),(283299,41974,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(283300,41974,'blocks_9_acfe_flexible_toggle',''),(283301,41974,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(283302,41974,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(283303,41974,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(283304,41974,'blocks_9_options_theme','#ffffff'),(283305,41974,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(283306,41974,'blocks_9_options_reverse','1'),(283307,41974,'_blocks_9_options_reverse','field_61768049bb8ac'),(283308,41974,'blocks_9_options',''),(283309,41974,'_blocks_9_options','field_617682517c334'),(283310,41974,'blocks_9_split_5050_image','39224'),(283311,41974,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(283312,41974,'blocks_9_split_5050_video',''),(283313,41974,'_blocks_9_split_5050_video','field_6239f3160848a'),(283314,41974,'blocks_9_split_5050_content_title','Locations'),(283315,41974,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(283316,41974,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(283317,41974,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(283318,41974,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(283319,41974,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(283320,41974,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(283321,41974,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(283322,41974,'blocks_9_split_5050_content_actions','1'),(283323,41974,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(283324,41974,'blocks_9_split_5050_content',''),(283325,41974,'_blocks_9_split_5050_content','field_61767afceb8ba'),(283326,41974,'blocks_1_acfe_flexible_toggle',''),(283327,41974,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(283328,41974,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(283329,41974,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(283330,41974,'blocks_1_options_theme','#ffffff'),(283331,41974,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(283332,41974,'blocks_1_options_reverse','0'),(283333,41974,'_blocks_1_options_reverse','field_61768049bb8ac'),(283334,41974,'blocks_1_options',''),(283335,41974,'_blocks_1_options','field_617682517c334'),(283336,41974,'blocks_1_split_5050_image','41506'),(283337,41974,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(283338,41974,'blocks_1_split_5050_video',''),(283339,41974,'_blocks_1_split_5050_video','field_6239f3160848a'),(283340,41974,'blocks_1_split_5050_content_title',''),(283341,41974,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(283342,41974,'blocks_1_split_5050_content_heading','Course Overview'),(283343,41974,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(283344,41974,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW114645069 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW114645069 BCX8\">Enhance your</span> <span class=\"NormalTextRun SCXW114645069 BCX8\">expertise</span><span class=\"NormalTextRun SCXW114645069 BCX8\"> with our comprehensive Level 4 Pilates Instructor and Diploma in Biomechanics Coaching, a unique course designed to elevate your Pilates practice while equipping you with specialised Intrinsic biomechanics skills. This programme blends advanced Pilates methods with biomechanics principles to improve client movement, enhance posture, and support functional performance. Perfect for Pilates instructors and fitness professionals aiming to work confidently with clients facing orthopaedic or movement challenges, this dual qualification empowers you to make a lasting impact on client wellbeing through targeted analysis and </span><span class=\"NormalTextRun SCXW114645069 BCX8\">risk preventions.</span></span><span class=\"EOP SCXW114645069 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(283345,41974,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(283346,41974,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(283347,41974,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(283348,41974,'blocks_1_split_5050_content_actions','1'),(283349,41974,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(283350,41974,'blocks_1_split_5050_content',''),(283351,41974,'_blocks_1_split_5050_content','field_61767afceb8ba'),(283352,41974,'blocks_2_acfe_flexible_toggle',''),(283353,41974,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(283354,41974,'blocks_2_acfe_flexible_layout_title','Form'),(283355,41974,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(283356,41974,'blocks_2_row_content_format','standard'),(283357,41974,'_blocks_2_row_content_format','field_6481ead962881'),(283358,41974,'blocks_2_row_content_title',''),(283359,41974,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(283360,41974,'blocks_2_row_content_heading','Enquire Today'),(283361,41974,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(283362,41974,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(283363,41974,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(283364,41974,'blocks_2_row_content_actions',''),(283365,41974,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(283366,41974,'blocks_2_row_content',''),(283367,41974,'_blocks_2_row_content','field_61a0f5f5b3db0'),(283368,41974,'blocks_2_row_form','40394'),(283369,41974,'_blocks_2_row_form','field_61a4ff2c0b08e'),(283370,41974,'blocks_2_row_form_button_label',''),(283371,41974,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(283372,41974,'blocks_3_acfe_flexible_toggle',''),(283373,41974,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(283374,41974,'blocks_3_acfe_flexible_layout_title','Video'),(283375,41974,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(283376,41974,'blocks_3_size','large'),(283377,41974,'_blocks_3_size','field_6487038f297c1'),(283378,41974,'blocks_3_row_content_title',''),(283379,41974,'_blocks_3_row_content_title','field_64870132a865d'),(283380,41974,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(283381,41974,'_blocks_3_row_content_heading','field_64870142a865e'),(283382,41974,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(283383,41974,'_blocks_3_row_content_text','field_64870148a865f'),(283384,41974,'blocks_3_row_content',''),(283385,41974,'_blocks_3_row_content','field_6487008ba865c'),(283386,41974,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(283387,41974,'_blocks_3_video_src','field_6193c4a98ec07'),(283388,41974,'blocks_3_video_thumbnail',''),(283389,41974,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(283390,41974,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(283391,41974,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(283392,41974,'blocks_6_icon_row_items_2_label','Deposit & balance'),(283393,41974,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(283394,41974,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(283395,41974,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(283396,41974,'blocks_10_acfe_flexible_toggle','1'),(283397,41974,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(283398,41974,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(283399,41974,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(283400,41974,'blocks_10_options_theme','#ffffff'),(283401,41974,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(283402,41974,'blocks_10_options',''),(283403,41974,'_blocks_10_options','field_617ac0b7f6c08'),(283404,41974,'blocks_10_show','selection'),(283405,41974,'_blocks_10_show','field_61a49cba9d946'),(283406,41974,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(283407,41974,'_blocks_10_courses','field_61b244781ee0a'),(283408,41974,'blocks_10_open_whats_included','1'),(283409,41974,'_blocks_10_open_whats_included','field_66ebfd679450c'),(283410,41974,'blocks_10_open_key_information','0'),(283411,41974,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(283412,41974,'blocks_10_open',''),(283413,41974,'_blocks_10_open','field_66ebfd009450b'),(283414,41974,'blocks_11_acfe_flexible_toggle',''),(283415,41974,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(283416,41974,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(283417,41974,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(283418,41974,'blocks_11_options_theme','#ffffff'),(283419,41974,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(283420,41974,'blocks_11_options_reverse','0'),(283421,41974,'_blocks_11_options_reverse','field_61768049bb8ac'),(283422,41974,'blocks_11_options',''),(283423,41974,'_blocks_11_options','field_617682517c334'),(283424,41974,'blocks_11_split_5050_image','41504'),(283425,41974,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(283426,41974,'blocks_11_split_5050_video',''),(283427,41974,'_blocks_11_split_5050_video','field_6239f3160848a'),(283428,41974,'blocks_11_split_5050_content_title','Optimise Performance '),(283429,41974,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(283430,41974,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(283431,41974,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(283432,41974,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW53757674 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW53757674 BCX8\">Advance your Pilates </span><span class=\"NormalTextRun SCXW53757674 BCX8\">expertise</span><span class=\"NormalTextRun SCXW53757674 BCX8\"> with a comprehensive Level 4 course designed to build on foundational knowledge and introduce advanced techniques to support and enhance client outcomes. Specialise in biomechanics and stand out in the fitness industry with skills that improve client performance, posture, and functional movement.</span></span><span class=\"EOP SCXW53757674 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Level 4 Pilates Includes:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26316?category=qualifications&amp;query=vtct%20postnatal\"><span data-contrast=\"none\">VTCT Level 3 Award in Adapting Physical Activity for Antenatal and Postnatal Clients.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26662?category=qualifications&amp;query=VTCT%20mat%20pilates\"><span data-contrast=\"none\">VTCT Level 3 Diploma in Instructing Mat-Based Pilates.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/48763?category=qualifications&amp;query=transcend%20pilates\"><span data-contrast=\"none\">Transcend Level 4 Certificate in Teaching Matwork Pilates</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">As a qualified level 4 Pilates instructor you will be able to: </span></b><span data-ccp-props=\"{}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own classes and work with clients on a 1-to-1 basis</span><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Teach Pilates at beginner, intermediate and advanced levels</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own weight management clinic, or offer individual consultations</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Create bespoke Pilates routines for new and expectant mothers</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Be able to create bespoke Pilates routines for clients with mobility considerations such as Arthritis or Hypermobility</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(283433,41974,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(283434,41974,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(283435,41974,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(283436,41974,'blocks_11_split_5050_content_actions','1'),(283437,41974,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(283438,41974,'blocks_11_split_5050_content',''),(283439,41974,'_blocks_11_split_5050_content','field_61767afceb8ba'),(283440,41974,'blocks_12_acfe_flexible_toggle',''),(283441,41974,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(283442,41974,'blocks_12_acfe_flexible_layout_title','Template'),(283443,41974,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(283444,41974,'blocks_12_template','40987'),(283445,41974,'_blocks_12_template','field_617bdd570fe01'),(283446,41974,'blocks_13_acfe_flexible_toggle',''),(283447,41974,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(283448,41974,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(283449,41974,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(283450,41974,'blocks_13_options_theme','#f5f5f5'),(283451,41974,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(283452,41974,'blocks_13_options_state','0'),(283453,41974,'_blocks_13_options_state','field_6239fcb7508c5'),(283454,41974,'blocks_13_options',''),(283455,41974,'_blocks_13_options','field_6177e2991ac44'),(283456,41974,'blocks_13_content_title',''),(283457,41974,'_blocks_13_content_title','field_64d237e8bb1e2'),(283458,41974,'blocks_13_content_heading','FAQ\'s'),(283459,41974,'_blocks_13_content_heading','field_64d237e8bb1e3'),(283460,41974,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(283461,41974,'_blocks_13_content_text','field_64d237e8bb1e4'),(283462,41974,'blocks_13_content_actions',''),(283463,41974,'_blocks_13_content_actions','field_64d237e8bb1e5'),(283464,41974,'blocks_13_content_align','left'),(283465,41974,'_blocks_13_content_align','field_64d2443e6b6aa'),(283466,41974,'blocks_13_content',''),(283467,41974,'_blocks_13_content','field_64d237e8bb1e1'),(283468,41974,'blocks_13_accordion_content','faqs'),(283469,41974,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(283470,41974,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41517\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(283471,41974,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(283472,41974,'blocks_13_actions',''),(283473,41974,'_blocks_13_actions','field_61a746a817f7a'),(283474,41975,'hide_hero','0'),(283475,41975,'_hide_hero','field_66a2380fcda39'),(283476,41975,'hero_title','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching '),(283477,41975,'_hero_title','field_617571fe285e8'),(283478,41975,'hero_text','Elevate Your Pilates Practice with Intrinsic biomechanics and enhance your career pathways '),(283479,41975,'_hero_text','field_6175723c285e9'),(283480,41975,'hero_actions','1'),(283481,41975,'_hero_actions','field_61757270285ea'),(283482,41975,'hero_style','default'),(283483,41975,'_hero_style','field_62051d9dc5324'),(283484,41975,'_thumbnail_id','41524'),(283485,41975,'__thumbnail_id','field_617570855ddaf'),(283486,41975,'hero_image_pos_x','right'),(283487,41975,'_hero_image_pos_x','field_62ec3d05390bb'),(283488,41975,'hero_image_pos_y','top'),(283489,41975,'_hero_image_pos_y','field_62ec3d05390bc'),(283490,41975,'hero_image_pos',''),(283491,41975,'_hero_image_pos','field_62ec3d05390ba'),(283492,41975,'fft_hide_from_listings','0'),(283493,41975,'_fft_hide_from_listings','field_61f1320446ab2'),(283494,41975,'fft_page_format','default'),(283495,41975,'_fft_page_format','field_61ae213f1f218'),(283496,41975,'fft_hide_nav','0'),(283497,41975,'_fft_hide_nav','field_635bd5e43527c'),(283498,41975,'fft_hide_header_call_to_action','0'),(283499,41975,'_fft_hide_header_call_to_action','field_635bd6723527d'),(283500,41975,'fft_page_sitemap','0'),(283501,41975,'_fft_page_sitemap','field_61af9b34e8181'),(283502,41975,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(283503,41975,'_blocks','field_6176696113096'),(283504,41975,'course_label_text',''),(283505,41975,'_course_label_text','field_61e17babf71fa'),(283506,41975,'course_label',''),(283507,41975,'_course_label','field_61e12f92749a7'),(283508,41975,'course_description',''),(283509,41975,'_course_description','field_617ac5788e5e1'),(283510,41975,'course_key_info',''),(283511,41975,'_course_key_info','field_617ac6ad8e5e2'),(283512,41975,'course_included',''),(283513,41975,'_course_included','field_617ac6f08e5e4'),(283514,41975,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41520-4\";s:6:\"target\";s:0:\"\";}'),(283515,41975,'_hero_actions_0_button','field_61757281285eb'),(283516,41975,'blocks_0_acfe_flexible_toggle',''),(283517,41975,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(283518,41975,'blocks_0_acfe_flexible_layout_title','Icons'),(283519,41975,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(283520,41975,'blocks_0_options_theme','#b61234'),(283521,41975,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(283522,41975,'blocks_0_options_format','row'),(283523,41975,'_blocks_0_options_format','field_64bfde9a90690'),(283524,41975,'blocks_0_options',''),(283525,41975,'_blocks_0_options','field_64bfdd9b90684'),(283526,41975,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(283527,41975,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(283528,41975,'blocks_0_icon_row_items_0_label','Accreditation'),(283529,41975,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(283530,41975,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(283531,41975,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(283532,41975,'blocks_0_icon_row_items_1_icon','finance.svg'),(283533,41975,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(283534,41975,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(283535,41975,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(283536,41975,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(283537,41975,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(283538,41975,'blocks_0_icon_row_items_2_icon','progression.svg'),(283539,41975,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(283540,41975,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(283541,41975,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(283542,41975,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(283543,41975,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(283544,41975,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(283545,41975,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(283546,41975,'blocks_0_icon_row_items_3_label','Qualification'),(283547,41975,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(283548,41975,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(283549,41975,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(283550,41975,'blocks_0_icon_row_items','4'),(283551,41975,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(283552,41975,'blocks_5_acfe_flexible_toggle','1'),(283553,41975,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(283554,41975,'blocks_5_acfe_flexible_layout_title','Tabs'),(283555,41975,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(283556,41975,'blocks_5_options_theme','#ffffff'),(283557,41975,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(283558,41975,'blocks_5_options',''),(283559,41975,'_blocks_5_options','field_6177cfcd8140f'),(283560,41975,'blocks_5_tabs_0_tab_label','Entry requirements'),(283561,41975,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(283562,41975,'blocks_5_tabs_0_tab_content_title',''),(283563,41975,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(283564,41975,'blocks_5_tabs_0_tab_content_heading',''),(283565,41975,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(283566,41975,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(283567,41975,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(283568,41975,'blocks_5_tabs_0_tab_content_actions',''),(283569,41975,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(283570,41975,'blocks_5_tabs_0_tab_content',''),(283571,41975,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(283572,41975,'blocks_5_tabs_0_tab_image',''),(283573,41975,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(283574,41975,'blocks_5_tabs_1_tab_label','Learning format'),(283575,41975,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(283576,41975,'blocks_5_tabs_1_tab_content_title',''),(283577,41975,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(283578,41975,'blocks_5_tabs_1_tab_content_heading',''),(283579,41975,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(283580,41975,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(283581,41975,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(283582,41975,'blocks_5_tabs_1_tab_content_actions',''),(283583,41975,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(283584,41975,'blocks_5_tabs_1_tab_content',''),(283585,41975,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(283586,41975,'blocks_5_tabs_1_tab_image',''),(283587,41975,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(283588,41975,'blocks_5_tabs_2_tab_label','Qualifications included'),(283589,41975,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(283590,41975,'blocks_5_tabs_2_tab_content_title',''),(283591,41975,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(283592,41975,'blocks_5_tabs_2_tab_content_heading',''),(283593,41975,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(283594,41975,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(283595,41975,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(283596,41975,'blocks_5_tabs_2_tab_content_actions',''),(283597,41975,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(283598,41975,'blocks_5_tabs_2_tab_content',''),(283599,41975,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(283600,41975,'blocks_5_tabs_2_tab_image',''),(283601,41975,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(283602,41975,'blocks_5_tabs','3'),(283603,41975,'_blocks_5_tabs','field_6177cff281419'),(283604,41975,'blocks_4_acfe_flexible_toggle',''),(283605,41975,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(283606,41975,'blocks_4_acfe_flexible_layout_title','Template'),(283607,41975,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(283608,41975,'blocks_4_template','39207'),(283609,41975,'_blocks_4_template','field_617bdd570fe01'),(283610,41975,'blocks_6_acfe_flexible_toggle',''),(283611,41975,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(283612,41975,'blocks_6_acfe_flexible_layout_title','Icons'),(283613,41975,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(283614,41975,'blocks_6_options_theme','#f5f5f5'),(283615,41975,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(283616,41975,'blocks_6_options_format','stacked'),(283617,41975,'_blocks_6_options_format','field_64bfde9a90690'),(283618,41975,'blocks_6_options',''),(283619,41975,'_blocks_6_options','field_64bfdd9b90684'),(283620,41975,'blocks_6_row_content_title','Options available to pay for your course'),(283621,41975,'_blocks_6_row_content_title','field_64bfdd9b90687'),(283622,41975,'blocks_6_row_content_heading','Fees & Funding Options '),(283623,41975,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(283624,41975,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(283625,41975,'_blocks_6_row_content_text','field_64bfdd9b90689'),(283626,41975,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(283627,41975,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(283628,41975,'blocks_6_row_content_actions','1'),(283629,41975,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(283630,41975,'blocks_6_row_content',''),(283631,41975,'_blocks_6_row_content','field_64bfdd9b90686'),(283632,41975,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(283633,41975,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(283634,41975,'blocks_6_icon_row_items_0_label','Pay in full'),(283635,41975,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(283636,41975,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(283637,41975,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(283638,41975,'blocks_6_icon_row_items_1_icon','finance.svg'),(283639,41975,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(283640,41975,'blocks_6_icon_row_items_1_label','0% finance'),(283641,41975,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(283642,41975,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(283643,41975,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(283644,41975,'blocks_6_icon_row_items','3'),(283645,41975,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(283646,41975,'blocks_7_acfe_flexible_toggle',''),(283647,41975,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(283648,41975,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(283649,41975,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(283650,41975,'blocks_7_options_theme','#ffffff'),(283651,41975,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(283652,41975,'blocks_7_options_reverse','0'),(283653,41975,'_blocks_7_options_reverse','field_61768049bb8ac'),(283654,41975,'blocks_7_options',''),(283655,41975,'_blocks_7_options','field_617682517c334'),(283656,41975,'blocks_7_split_5050_image','41526'),(283657,41975,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(283658,41975,'blocks_7_split_5050_video',''),(283659,41975,'_blocks_7_split_5050_video','field_6239f3160848a'),(283660,41975,'blocks_7_split_5050_content_title',''),(283661,41975,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(283662,41975,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(283663,41975,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(283664,41975,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(283665,41975,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(283666,41975,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(283667,41975,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(283668,41975,'blocks_7_split_5050_content_actions','1'),(283669,41975,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(283670,41975,'blocks_7_split_5050_content',''),(283671,41975,'_blocks_7_split_5050_content','field_61767afceb8ba'),(283672,41975,'blocks_8_acfe_flexible_toggle',''),(283673,41975,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(283674,41975,'blocks_8_acfe_flexible_layout_title','Icons'),(283675,41975,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(283676,41975,'blocks_8_options_theme','#f5f5f5'),(283677,41975,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(283678,41975,'blocks_8_options_format','row'),(283679,41975,'_blocks_8_options_format','field_64bfde9a90690'),(283680,41975,'blocks_8_options',''),(283681,41975,'_blocks_8_options','field_64bfdd9b90684'),(283682,41975,'blocks_8_icon_row_items_0_icon','qualification.svg'),(283683,41975,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(283684,41975,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(283685,41975,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(283686,41975,'blocks_8_icon_row_items_0_text',''),(283687,41975,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(283688,41975,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(283689,41975,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(283690,41975,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(283691,41975,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(283692,41975,'blocks_8_icon_row_items_1_text',''),(283693,41975,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(283694,41975,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(283695,41975,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(283696,41975,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(283697,41975,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(283698,41975,'blocks_8_icon_row_items_2_text',''),(283699,41975,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(283700,41975,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(283701,41975,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(283702,41975,'blocks_8_icon_row_items_3_label','Flexible funding options'),(283703,41975,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(283704,41975,'blocks_8_icon_row_items_3_text',''),(283705,41975,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(283706,41975,'blocks_8_icon_row_items','4'),(283707,41975,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(283708,41975,'blocks_9_acfe_flexible_toggle',''),(283709,41975,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(283710,41975,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(283711,41975,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(283712,41975,'blocks_9_options_theme','#ffffff'),(283713,41975,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(283714,41975,'blocks_9_options_reverse','1'),(283715,41975,'_blocks_9_options_reverse','field_61768049bb8ac'),(283716,41975,'blocks_9_options',''),(283717,41975,'_blocks_9_options','field_617682517c334'),(283718,41975,'blocks_9_split_5050_image','39224'),(283719,41975,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(283720,41975,'blocks_9_split_5050_video',''),(283721,41975,'_blocks_9_split_5050_video','field_6239f3160848a'),(283722,41975,'blocks_9_split_5050_content_title','Locations'),(283723,41975,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(283724,41975,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(283725,41975,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(283726,41975,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(283727,41975,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(283728,41975,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(283729,41975,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(283730,41975,'blocks_9_split_5050_content_actions','1'),(283731,41975,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(283732,41975,'blocks_9_split_5050_content',''),(283733,41975,'_blocks_9_split_5050_content','field_61767afceb8ba'),(283734,41975,'blocks_1_acfe_flexible_toggle',''),(283735,41975,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(283736,41975,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(283737,41975,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(283738,41975,'blocks_1_options_theme','#ffffff'),(283739,41975,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(283740,41975,'blocks_1_options_reverse','0'),(283741,41975,'_blocks_1_options_reverse','field_61768049bb8ac'),(283742,41975,'blocks_1_options',''),(283743,41975,'_blocks_1_options','field_617682517c334'),(283744,41975,'blocks_1_split_5050_image','41506'),(283745,41975,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(283746,41975,'blocks_1_split_5050_video',''),(283747,41975,'_blocks_1_split_5050_video','field_6239f3160848a'),(283748,41975,'blocks_1_split_5050_content_title',''),(283749,41975,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(283750,41975,'blocks_1_split_5050_content_heading','Course Overview'),(283751,41975,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(283752,41975,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW114645069 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW114645069 BCX8\">Enhance your</span> <span class=\"NormalTextRun SCXW114645069 BCX8\">expertise</span><span class=\"NormalTextRun SCXW114645069 BCX8\"> with our comprehensive Level 4 Pilates Instructor and Diploma in Biomechanics Coaching, a unique course designed to elevate your Pilates practice while equipping you with specialised Intrinsic biomechanics skills. This programme blends advanced Pilates methods with biomechanics principles to improve client movement, enhance posture, and support functional performance. Perfect for Pilates instructors and fitness professionals aiming to work confidently with clients facing orthopaedic or movement challenges, this dual qualification empowers you to make a lasting impact on client wellbeing through targeted analysis and </span><span class=\"NormalTextRun SCXW114645069 BCX8\">risk preventions.</span></span><span class=\"EOP SCXW114645069 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(283753,41975,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(283754,41975,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(283755,41975,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(283756,41975,'blocks_1_split_5050_content_actions','1'),(283757,41975,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(283758,41975,'blocks_1_split_5050_content',''),(283759,41975,'_blocks_1_split_5050_content','field_61767afceb8ba'),(283760,41975,'blocks_2_acfe_flexible_toggle',''),(283761,41975,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(283762,41975,'blocks_2_acfe_flexible_layout_title','Form'),(283763,41975,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(283764,41975,'blocks_2_row_content_format','standard'),(283765,41975,'_blocks_2_row_content_format','field_6481ead962881'),(283766,41975,'blocks_2_row_content_title',''),(283767,41975,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(283768,41975,'blocks_2_row_content_heading','Enquire Today'),(283769,41975,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(283770,41975,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(283771,41975,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(283772,41975,'blocks_2_row_content_actions',''),(283773,41975,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(283774,41975,'blocks_2_row_content',''),(283775,41975,'_blocks_2_row_content','field_61a0f5f5b3db0'),(283776,41975,'blocks_2_row_form','40394'),(283777,41975,'_blocks_2_row_form','field_61a4ff2c0b08e'),(283778,41975,'blocks_2_row_form_button_label',''),(283779,41975,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(283780,41975,'blocks_3_acfe_flexible_toggle',''),(283781,41975,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(283782,41975,'blocks_3_acfe_flexible_layout_title','Video'),(283783,41975,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(283784,41975,'blocks_3_size','large'),(283785,41975,'_blocks_3_size','field_6487038f297c1'),(283786,41975,'blocks_3_row_content_title',''),(283787,41975,'_blocks_3_row_content_title','field_64870132a865d'),(283788,41975,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(283789,41975,'_blocks_3_row_content_heading','field_64870142a865e'),(283790,41975,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(283791,41975,'_blocks_3_row_content_text','field_64870148a865f'),(283792,41975,'blocks_3_row_content',''),(283793,41975,'_blocks_3_row_content','field_6487008ba865c'),(283794,41975,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(283795,41975,'_blocks_3_video_src','field_6193c4a98ec07'),(283796,41975,'blocks_3_video_thumbnail',''),(283797,41975,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(283798,41975,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(283799,41975,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(283800,41975,'blocks_6_icon_row_items_2_label','Deposit & balance'),(283801,41975,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(283802,41975,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(283803,41975,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(283804,41975,'blocks_10_acfe_flexible_toggle','1'),(283805,41975,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(283806,41975,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(283807,41975,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(283808,41975,'blocks_10_options_theme','#ffffff'),(283809,41975,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(283810,41975,'blocks_10_options',''),(283811,41975,'_blocks_10_options','field_617ac0b7f6c08'),(283812,41975,'blocks_10_show','selection'),(283813,41975,'_blocks_10_show','field_61a49cba9d946'),(283814,41975,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(283815,41975,'_blocks_10_courses','field_61b244781ee0a'),(283816,41975,'blocks_10_open_whats_included','1'),(283817,41975,'_blocks_10_open_whats_included','field_66ebfd679450c'),(283818,41975,'blocks_10_open_key_information','0'),(283819,41975,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(283820,41975,'blocks_10_open',''),(283821,41975,'_blocks_10_open','field_66ebfd009450b'),(283822,41975,'blocks_11_acfe_flexible_toggle',''),(283823,41975,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(283824,41975,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(283825,41975,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(283826,41975,'blocks_11_options_theme','#ffffff'),(283827,41975,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(283828,41975,'blocks_11_options_reverse','0'),(283829,41975,'_blocks_11_options_reverse','field_61768049bb8ac'),(283830,41975,'blocks_11_options',''),(283831,41975,'_blocks_11_options','field_617682517c334'),(283832,41975,'blocks_11_split_5050_image','41504'),(283833,41975,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(283834,41975,'blocks_11_split_5050_video',''),(283835,41975,'_blocks_11_split_5050_video','field_6239f3160848a'),(283836,41975,'blocks_11_split_5050_content_title','Optimise Performance '),(283837,41975,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(283838,41975,'blocks_11_split_5050_content_heading','Level 4 Mat Pilates Instructor Qualification with your Diploma in Biomechanics Coaching'),(283839,41975,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(283840,41975,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW53757674 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW53757674 BCX8\">Advance your Pilates </span><span class=\"NormalTextRun SCXW53757674 BCX8\">expertise</span><span class=\"NormalTextRun SCXW53757674 BCX8\"> with a comprehensive Level 4 course designed to build on foundational knowledge and introduce advanced techniques to support and enhance client outcomes. Specialise in biomechanics and stand out in the fitness industry with skills that improve client performance, posture, and functional movement.</span></span><span class=\"EOP SCXW53757674 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Level 4 Pilates Includes:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26316?category=qualifications&amp;query=vtct%20postnatal\"><span data-contrast=\"none\">VTCT Level 3 Award in Adapting Physical Activity for Antenatal and Postnatal Clients.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26662?category=qualifications&amp;query=VTCT%20mat%20pilates\"><span data-contrast=\"none\">VTCT Level 3 Diploma in Instructing Mat-Based Pilates.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/48763?category=qualifications&amp;query=transcend%20pilates\"><span data-contrast=\"none\">Transcend Level 4 Certificate in Teaching Matwork Pilates</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">As a qualified level 4 Pilates instructor you will be able to: </span></b><span data-ccp-props=\"{}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own classes and work with clients on a 1-to-1 basis</span><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Teach Pilates at beginner, intermediate and advanced levels</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own weight management clinic, or offer individual consultations</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Create bespoke Pilates routines for new and expectant mothers</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Be able to create bespoke Pilates routines for clients with mobility considerations such as Arthritis or Hypermobility</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(283841,41975,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(283842,41975,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(283843,41975,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(283844,41975,'blocks_11_split_5050_content_actions','1'),(283845,41975,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(283846,41975,'blocks_11_split_5050_content',''),(283847,41975,'_blocks_11_split_5050_content','field_61767afceb8ba'),(283848,41975,'blocks_12_acfe_flexible_toggle',''),(283849,41975,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(283850,41975,'blocks_12_acfe_flexible_layout_title','Template'),(283851,41975,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(283852,41975,'blocks_12_template','40987'),(283853,41975,'_blocks_12_template','field_617bdd570fe01'),(283854,41975,'blocks_13_acfe_flexible_toggle',''),(283855,41975,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(283856,41975,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(283857,41975,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(283858,41975,'blocks_13_options_theme','#f5f5f5'),(283859,41975,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(283860,41975,'blocks_13_options_state','0'),(283861,41975,'_blocks_13_options_state','field_6239fcb7508c5'),(283862,41975,'blocks_13_options',''),(283863,41975,'_blocks_13_options','field_6177e2991ac44'),(283864,41975,'blocks_13_content_title',''),(283865,41975,'_blocks_13_content_title','field_64d237e8bb1e2'),(283866,41975,'blocks_13_content_heading','FAQ\'s'),(283867,41975,'_blocks_13_content_heading','field_64d237e8bb1e3'),(283868,41975,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(283869,41975,'_blocks_13_content_text','field_64d237e8bb1e4'),(283870,41975,'blocks_13_content_actions',''),(283871,41975,'_blocks_13_content_actions','field_64d237e8bb1e5'),(283872,41975,'blocks_13_content_align','left'),(283873,41975,'_blocks_13_content_align','field_64d2443e6b6aa'),(283874,41975,'blocks_13_content',''),(283875,41975,'_blocks_13_content','field_64d237e8bb1e1'),(283876,41975,'blocks_13_accordion_content','faqs'),(283877,41975,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(283878,41975,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41517\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(283879,41975,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(283880,41975,'blocks_13_actions',''),(283881,41975,'_blocks_13_actions','field_61a746a817f7a'),(283882,41984,'_wp_attached_file','2024/08/CIMSPA-Education-Partner-Logo.png'),(283883,41984,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:340;s:4:\"file\";s:41:\"2024/08/CIMSPA-Education-Partner-Logo.png\";s:8:\"filesize\";i:117145;s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"CIMSPA-Education-Partner-Logo-400x227.png\";s:5:\"width\";i:400;s:6:\"height\";i:227;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46513;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:41:\"CIMSPA-Education-Partner-Logo-400x340.png\";s:5:\"width\";i:400;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44601;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:41:\"CIMSPA-Education-Partner-Logo-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51528;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:41:\"CIMSPA-Education-Partner-Logo-300x340.png\";s:5:\"width\";i:300;s:6:\"height\";i:340;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:35256;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:41:\"CIMSPA-Education-Partner-Logo-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52206;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:41:\"CIMSPA-Education-Partner-Logo-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46028;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(283884,42003,'_edit_lock','1737380291:17'),(283885,42003,'_edit_last','17'),(283886,42003,'_oembed_c22c7c570f0cbda976d5c7a37138c071','<iframe title=\"iMoveFreely Breathe Introduction\" width=\"1297\" height=\"730\" src=\"https://www.youtube.com/embed/fKhQ_LdTUAo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(283887,42003,'_oembed_time_c22c7c570f0cbda976d5c7a37138c071','1737133079'),(283889,42003,'hide_hero','0'),(283890,42003,'_hide_hero','field_66a2380fcda39'),(283891,42003,'hero_title',''),(283892,42003,'_hero_title','field_617571fe285e8'),(283893,42003,'hero_text',''),(283894,42003,'_hero_text','field_6175723c285e9'),(283895,42003,'hero_actions',''),(283896,42003,'_hero_actions','field_61757270285ea'),(283897,42003,'hero_style','default'),(283898,42003,'_hero_style','field_62051d9dc5324'),(283899,42003,'__thumbnail_id','field_617570855ddaf'),(283900,42003,'hero_image_pos_x','right'),(283901,42003,'_hero_image_pos_x','field_62ec3d05390bb'),(283902,42003,'hero_image_pos_y','top'),(283903,42003,'_hero_image_pos_y','field_62ec3d05390bc'),(283904,42003,'hero_image_pos',''),(283905,42003,'_hero_image_pos','field_62ec3d05390ba'),(283906,42003,'fft_hide_from_listings','0'),(283907,42003,'_fft_hide_from_listings','field_61f1320446ab2'),(283908,42003,'post_format','2'),(283909,42003,'_post_format','field_61756bfb51898'),(283910,42003,'post_author',''),(283911,42003,'_post_author','field_62ec389d22113'),(283912,42003,'post_reviewer',''),(283913,42003,'_post_reviewer','field_627140a2a9800'),(283914,42003,'post_table_of_contents','0'),(283915,42003,'_post_table_of_contents','field_65c503bc846a6'),(283916,42003,'_yoast_wpseo_primary_category','5'),(283917,42003,'_yoast_wpseo_primary_blog-format',''),(283918,42003,'_yoast_wpseo_content_score','30'),(283919,42003,'_yoast_wpseo_inclusive_language_score','90'),(283920,42003,'_yoast_wpseo_estimated-reading-time-minutes','5'),(283921,42004,'_thumbnail_id',''),(283922,42004,'__thumbnail_id','field_617570855ddaf'),(283923,42004,'hide_hero','0'),(283924,42004,'_hide_hero','field_66a2380fcda39'),(283925,42004,'hero_title',''),(283926,42004,'_hero_title','field_617571fe285e8'),(283927,42004,'hero_text',''),(283928,42004,'_hero_text','field_6175723c285e9'),(283929,42004,'hero_actions',''),(283930,42004,'_hero_actions','field_61757270285ea'),(283931,42004,'hero_style','default'),(283932,42004,'_hero_style','field_62051d9dc5324'),(283933,42004,'hero_image_pos_x','right'),(283934,42004,'_hero_image_pos_x','field_62ec3d05390bb'),(283935,42004,'hero_image_pos_y','top'),(283936,42004,'_hero_image_pos_y','field_62ec3d05390bc'),(283937,42004,'hero_image_pos',''),(283938,42004,'_hero_image_pos','field_62ec3d05390ba'),(283939,42004,'fft_hide_from_listings','0'),(283940,42004,'_fft_hide_from_listings','field_61f1320446ab2'),(283941,42004,'post_format',''),(283942,42004,'_post_format','field_61756bfb51898'),(283943,42004,'post_author',''),(283944,42004,'_post_author','field_62ec389d22113'),(283945,42004,'post_reviewer',''),(283946,42004,'_post_reviewer','field_627140a2a9800'),(283947,42004,'post_table_of_contents','0'),(283948,42004,'_post_table_of_contents','field_65c503bc846a6'),(283949,42003,'_oembed_67c38e0f65b4ed34ed0c27f9225d4a92','<iframe title=\"iMoveFreely Breathe Introduction\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/fKhQ_LdTUAo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(283950,42003,'_oembed_time_67c38e0f65b4ed34ed0c27f9225d4a92','1737380376'),(283951,42003,'_oembed_0aee560c831630482a051ff99ab007d4','<iframe title=\"iMoveFreely Breathe Introduction\" width=\"1377\" height=\"775\" src=\"https://www.youtube.com/embed/fKhQ_LdTUAo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(283952,42003,'_oembed_time_0aee560c831630482a051ff99ab007d4','1737133326'),(283953,42005,'_thumbnail_id',''),(283954,42005,'__thumbnail_id','field_617570855ddaf'),(283955,42005,'hide_hero','0'),(283956,42005,'_hide_hero','field_66a2380fcda39'),(283957,42005,'hero_title',''),(283958,42005,'_hero_title','field_617571fe285e8'),(283959,42005,'hero_text',''),(283960,42005,'_hero_text','field_6175723c285e9'),(283961,42005,'hero_actions',''),(283962,42005,'_hero_actions','field_61757270285ea'),(283963,42005,'hero_style','default'),(283964,42005,'_hero_style','field_62051d9dc5324'),(283965,42005,'hero_image_pos_x','right'),(283966,42005,'_hero_image_pos_x','field_62ec3d05390bb'),(283967,42005,'hero_image_pos_y','top'),(283968,42005,'_hero_image_pos_y','field_62ec3d05390bc'),(283969,42005,'hero_image_pos',''),(283970,42005,'_hero_image_pos','field_62ec3d05390ba'),(283971,42005,'fft_hide_from_listings','0'),(283972,42005,'_fft_hide_from_listings','field_61f1320446ab2'),(283973,42005,'post_format','2'),(283974,42005,'_post_format','field_61756bfb51898'),(283975,42005,'post_author',''),(283976,42005,'_post_author','field_62ec389d22113'),(283977,42005,'post_reviewer',''),(283978,42005,'_post_reviewer','field_627140a2a9800'),(283979,42005,'post_table_of_contents','0'),(283980,42005,'_post_table_of_contents','field_65c503bc846a6'),(283981,42006,'hide_hero','0'),(283982,42006,'_hide_hero','field_66a2380fcda39'),(283983,42006,'hero_title',''),(283984,42006,'_hero_title','field_617571fe285e8'),(283985,42006,'hero_text',''),(283986,42006,'_hero_text','field_6175723c285e9'),(283987,42006,'hero_actions',''),(283988,42006,'_hero_actions','field_61757270285ea'),(283989,42006,'hero_style','default'),(283990,42006,'_hero_style','field_62051d9dc5324'),(283991,42006,'_thumbnail_id',''),(283992,42006,'__thumbnail_id','field_617570855ddaf'),(283993,42006,'hero_image_pos_x','right'),(283994,42006,'_hero_image_pos_x','field_62ec3d05390bb'),(283995,42006,'hero_image_pos_y','top'),(283996,42006,'_hero_image_pos_y','field_62ec3d05390bc'),(283997,42006,'hero_image_pos',''),(283998,42006,'_hero_image_pos','field_62ec3d05390ba'),(283999,42006,'fft_hide_from_listings','0'),(284000,42006,'_fft_hide_from_listings','field_61f1320446ab2'),(284001,42006,'post_format','2'),(284002,42006,'_post_format','field_61756bfb51898'),(284003,42006,'post_author',''),(284004,42006,'_post_author','field_62ec389d22113'),(284005,42006,'post_reviewer',''),(284006,42006,'_post_reviewer','field_627140a2a9800'),(284007,42006,'post_table_of_contents','0'),(284008,42006,'_post_table_of_contents','field_65c503bc846a6'),(284012,42003,'_oembed_b4442501448401cbb17de6637d98e9d5','<iframe title=\"iMoveFreely Breathe Introduction\" width=\"1778\" height=\"1000\" src=\"https://www.youtube.com/embed/fKhQ_LdTUAo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(284013,42003,'_oembed_time_b4442501448401cbb17de6637d98e9d5','1737380312'),(284016,42003,'_thumbnail_id','41400'),(284017,42025,'hide_hero','0'),(284018,42025,'_hide_hero','field_66a2380fcda39'),(284019,42025,'hero_title',''),(284020,42025,'_hero_title','field_617571fe285e8'),(284021,42025,'hero_text',''),(284022,42025,'_hero_text','field_6175723c285e9'),(284023,42025,'hero_actions',''),(284024,42025,'_hero_actions','field_61757270285ea'),(284025,42025,'hero_style','default'),(284026,42025,'_hero_style','field_62051d9dc5324'),(284027,42025,'hero_image_pos_x','right'),(284028,42025,'_hero_image_pos_x','field_62ec3d05390bb'),(284029,42025,'hero_image_pos_y','top'),(284030,42025,'_hero_image_pos_y','field_62ec3d05390bc'),(284031,42025,'hero_image_pos',''),(284032,42025,'_hero_image_pos','field_62ec3d05390ba'),(284033,42025,'fft_hide_from_listings','0'),(284034,42025,'_fft_hide_from_listings','field_61f1320446ab2'),(284035,42025,'post_format','2'),(284036,42025,'_post_format','field_61756bfb51898'),(284037,42025,'post_author',''),(284038,42025,'_post_author','field_62ec389d22113'),(284039,42025,'post_reviewer',''),(284040,42025,'_post_reviewer','field_627140a2a9800'),(284041,42025,'post_table_of_contents','0'),(284042,42025,'_post_table_of_contents','field_65c503bc846a6'),(284043,42025,'_thumbnail_id','41400'),(284044,42025,'__thumbnail_id','field_617570855ddaf'),(284076,42034,'hide_hero','0'),(284077,42034,'_hide_hero','field_66a2380fcda39'),(284078,42034,'hero_title','Blogs'),(284079,42034,'_hero_title','field_617571fe285e8'),(284080,42034,'hero_text','Explore Insights and Expert Tips on Everything Intrinsic Biomechanics, Including Movement, Performance and Risk Reduction.'),(284081,42034,'_hero_text','field_6175723c285e9'),(284082,42034,'hero_actions',''),(284083,42034,'_hero_actions','field_61757270285ea'),(284084,42034,'hero_style','default'),(284085,42034,'_hero_style','field_62051d9dc5324'),(284086,42034,'hero_image_pos_x','right'),(284087,42034,'_hero_image_pos_x','field_62ec3d05390bb'),(284088,42034,'hero_image_pos_y','top'),(284089,42034,'_hero_image_pos_y','field_62ec3d05390bc'),(284090,42034,'hero_image_pos',''),(284091,42034,'_hero_image_pos','field_62ec3d05390ba'),(284092,42034,'fft_hide_from_listings','0'),(284093,42034,'_fft_hide_from_listings','field_61f1320446ab2'),(284094,42034,'fft_page_format','default'),(284095,42034,'_fft_page_format','field_61ae213f1f218'),(284096,42034,'fft_hide_nav','0'),(284097,42034,'_fft_hide_nav','field_635bd5e43527c'),(284098,42034,'fft_hide_header_call_to_action','0'),(284099,42034,'_fft_hide_header_call_to_action','field_635bd6723527d'),(284100,42034,'fft_page_sitemap','0'),(284101,42034,'_fft_page_sitemap','field_61af9b34e8181'),(284102,42034,'blocks','a:1:{i:0;s:5:\"cards\";}'),(284103,42034,'_blocks','field_6176696113096'),(284104,42034,'blocks_0_acfe_flexible_toggle',''),(284105,42034,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(284106,42034,'blocks_0_acfe_flexible_layout_title','Cards'),(284107,42034,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(284108,42034,'blocks_0_options_theme','#ffffff'),(284109,42034,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(284110,42034,'blocks_0_options_format','grid'),(284111,42034,'_blocks_0_options_format','field_617a7b15245b5'),(284112,42034,'blocks_0_options_style','default'),(284113,42034,'_blocks_0_options_style','field_6278ffb63484a'),(284114,42034,'blocks_0_options_cards_current_listing','0'),(284115,42034,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(284116,42034,'blocks_0_options_cards_content','term'),(284117,42034,'_blocks_0_options_cards_content','field_617aba6122688'),(284118,42034,'blocks_0_options_cards_post_type','post'),(284119,42034,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(284120,42034,'blocks_0_options_cards_posts_per_page','5'),(284121,42034,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(284122,42034,'blocks_0_options',''),(284123,42034,'_blocks_0_options','field_617a7b15245b3'),(284124,42034,'blocks_0_options_cards_term','5'),(284125,42034,'_blocks_0_options_cards_term','field_6193f7c180895'),(284126,42034,'blocks_0_options_cards_pagination','1'),(284127,42034,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(284128,42034,'blocks_0_options_cards_filter_taxonomy',''),(284129,42034,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(284130,42034,'_thumbnail_id','40918'),(284131,42034,'__thumbnail_id','field_617570855ddaf'),(284132,42035,'hide_hero','0'),(284133,42035,'_hide_hero','field_66a2380fcda39'),(284134,42035,'hero_title','Blogs'),(284135,42035,'_hero_title','field_617571fe285e8'),(284136,42035,'hero_text','Explore Insights and Expert Tips on Everything Intrinsic Biomechanics, Including Movement, Performance and Risk Reduction.'),(284137,42035,'_hero_text','field_6175723c285e9'),(284138,42035,'hero_actions',''),(284139,42035,'_hero_actions','field_61757270285ea'),(284140,42035,'hero_style','default'),(284141,42035,'_hero_style','field_62051d9dc5324'),(284142,42035,'_thumbnail_id','40918'),(284143,42035,'__thumbnail_id','field_617570855ddaf'),(284144,42035,'hero_image_pos_x','right'),(284145,42035,'_hero_image_pos_x','field_62ec3d05390bb'),(284146,42035,'hero_image_pos_y','top'),(284147,42035,'_hero_image_pos_y','field_62ec3d05390bc'),(284148,42035,'hero_image_pos',''),(284149,42035,'_hero_image_pos','field_62ec3d05390ba'),(284150,42035,'fft_hide_from_listings','0'),(284151,42035,'_fft_hide_from_listings','field_61f1320446ab2'),(284152,42035,'fft_page_format','default'),(284153,42035,'_fft_page_format','field_61ae213f1f218'),(284154,42035,'fft_hide_nav','0'),(284155,42035,'_fft_hide_nav','field_635bd5e43527c'),(284156,42035,'fft_hide_header_call_to_action','0'),(284157,42035,'_fft_hide_header_call_to_action','field_635bd6723527d'),(284158,42035,'fft_page_sitemap','0'),(284159,42035,'_fft_page_sitemap','field_61af9b34e8181'),(284160,42035,'blocks_0_acfe_flexible_toggle',''),(284161,42035,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(284162,42035,'blocks_0_acfe_flexible_layout_title','Cards'),(284163,42035,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(284164,42035,'blocks_0_options_theme','#ffffff'),(284165,42035,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(284166,42035,'blocks_0_options_format','grid'),(284167,42035,'_blocks_0_options_format','field_617a7b15245b5'),(284168,42035,'blocks_0_options_style','default'),(284169,42035,'_blocks_0_options_style','field_6278ffb63484a'),(284170,42035,'blocks_0_options_cards_current_listing','0'),(284171,42035,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(284172,42035,'blocks_0_options_cards_content','term'),(284173,42035,'_blocks_0_options_cards_content','field_617aba6122688'),(284174,42035,'blocks_0_options_cards_term','5'),(284175,42035,'_blocks_0_options_cards_term','field_6193f7c180895'),(284176,42035,'blocks_0_options_cards_posts_per_page','5'),(284177,42035,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(284178,42035,'blocks_0_options_cards_pagination','1'),(284179,42035,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(284180,42035,'blocks_0_options_cards_filter_taxonomy',''),(284181,42035,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(284182,42035,'blocks_0_options',''),(284183,42035,'_blocks_0_options','field_617a7b15245b3'),(284184,42035,'blocks','a:1:{i:0;s:5:\"cards\";}'),(284185,42035,'_blocks','field_6176696113096'),(284186,42035,'blocks_0_options_cards_post_type','post'),(284187,42035,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(284189,42037,'_edit_lock','1737390134:17'),(284190,42037,'_edit_last','17'),(284191,42037,'hide_hero','0'),(284192,42037,'_hide_hero','field_66a2380fcda39'),(284193,42037,'hero_title',''),(284194,42037,'_hero_title','field_617571fe285e8'),(284195,42037,'hero_text','Understand the principles of human movement, key concepts like force and motion, and their practical applications in exercise, sports, and injury prevention.'),(284196,42037,'_hero_text','field_6175723c285e9'),(284197,42037,'hero_actions',''),(284198,42037,'_hero_actions','field_61757270285ea'),(284199,42037,'hero_style','default'),(284200,42037,'_hero_style','field_62051d9dc5324'),(284201,42037,'__thumbnail_id','field_617570855ddaf'),(284202,42037,'hero_image_pos_x','right'),(284203,42037,'_hero_image_pos_x','field_62ec3d05390bb'),(284204,42037,'hero_image_pos_y','top'),(284205,42037,'_hero_image_pos_y','field_62ec3d05390bc'),(284206,42037,'hero_image_pos',''),(284207,42037,'_hero_image_pos','field_62ec3d05390ba'),(284208,42037,'fft_hide_from_listings','0'),(284209,42037,'_fft_hide_from_listings','field_61f1320446ab2'),(284210,42037,'fft_page_format','default'),(284211,42037,'_fft_page_format','field_61ae213f1f218'),(284212,42037,'fft_hide_nav','0'),(284213,42037,'_fft_hide_nav','field_635bd5e43527c'),(284214,42037,'fft_hide_header_call_to_action','0'),(284215,42037,'_fft_hide_header_call_to_action','field_635bd6723527d'),(284216,42037,'fft_page_sitemap','0'),(284217,42037,'_fft_page_sitemap','field_61af9b34e8181'),(284218,42037,'blocks','a:1:{i:0;s:5:\"cards\";}'),(284219,42037,'_blocks','field_6176696113096'),(284220,42037,'_yoast_wpseo_estimated-reading-time-minutes','1'),(284221,42037,'blocks_0_acfe_flexible_toggle',''),(284222,42037,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(284223,42037,'blocks_0_acfe_flexible_layout_title','Cards'),(284224,42037,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(284225,42037,'blocks_0_options_theme','#ffffff'),(284226,42037,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(284227,42037,'blocks_0_options_format','grid'),(284228,42037,'_blocks_0_options_format','field_617a7b15245b5'),(284229,42037,'blocks_0_options_style','default'),(284230,42037,'_blocks_0_options_style','field_6278ffb63484a'),(284231,42037,'blocks_0_options_cards_current_listing','0'),(284232,42037,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(284233,42037,'blocks_0_options_cards_content','term'),(284234,42037,'_blocks_0_options_cards_content','field_617aba6122688'),(284235,42037,'blocks_0_options_cards_post_type','post'),(284236,42037,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(284237,42037,'blocks_0_options_cards_posts_per_page','5'),(284238,42037,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(284239,42037,'blocks_0_options',''),(284240,42037,'_blocks_0_options','field_617a7b15245b3'),(284241,42037,'_yoast_wpseo_focuskw','biomechanics blogs'),(284242,42037,'_yoast_wpseo_metadesc','Understand the principles of human movement, key concepts like force and motion, and their practical applications in exercise, sports, and injury prevention.'),(284243,42037,'_yoast_wpseo_linkdex','28'),(284244,42037,'blocks_0_options_cards_term','448'),(284245,42037,'_blocks_0_options_cards_term','field_6193f7c180895'),(284246,42037,'blocks_0_options_cards_pagination','1'),(284247,42037,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(284248,42037,'blocks_0_options_cards_filter_taxonomy',''),(284249,42037,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(284250,42037,'_yoast_wpseo_title','Introduction to Biomechanics | Biomechanics Education'),(284251,42037,'_thumbnail_id','40675'),(284252,42037,'_yoast_wpseo_inclusive_language_score','90'),(284253,42039,'hide_hero','0'),(284254,42039,'_hide_hero','field_66a2380fcda39'),(284255,42039,'hero_title',''),(284256,42039,'_hero_title','field_617571fe285e8'),(284257,42039,'hero_text','Understand the principles of human movement, key concepts like force and motion, and their practical applications in exercise, sports, and injury prevention.'),(284258,42039,'_hero_text','field_6175723c285e9'),(284259,42039,'hero_actions',''),(284260,42039,'_hero_actions','field_61757270285ea'),(284261,42039,'hero_style','default'),(284262,42039,'_hero_style','field_62051d9dc5324'),(284263,42039,'hero_image_pos_x','right'),(284264,42039,'_hero_image_pos_x','field_62ec3d05390bb'),(284265,42039,'hero_image_pos_y','top'),(284266,42039,'_hero_image_pos_y','field_62ec3d05390bc'),(284267,42039,'hero_image_pos',''),(284268,42039,'_hero_image_pos','field_62ec3d05390ba'),(284269,42039,'fft_hide_from_listings','0'),(284270,42039,'_fft_hide_from_listings','field_61f1320446ab2'),(284271,42039,'fft_page_format','default'),(284272,42039,'_fft_page_format','field_61ae213f1f218'),(284273,42039,'fft_hide_nav','0'),(284274,42039,'_fft_hide_nav','field_635bd5e43527c'),(284275,42039,'fft_hide_header_call_to_action','0'),(284276,42039,'_fft_hide_header_call_to_action','field_635bd6723527d'),(284277,42039,'fft_page_sitemap','0'),(284278,42039,'_fft_page_sitemap','field_61af9b34e8181'),(284279,42039,'blocks','a:1:{i:0;s:5:\"cards\";}'),(284280,42039,'_blocks','field_6176696113096'),(284281,42039,'blocks_0_acfe_flexible_toggle',''),(284282,42039,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(284283,42039,'blocks_0_acfe_flexible_layout_title','Cards'),(284284,42039,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(284285,42039,'blocks_0_options_theme','#ffffff'),(284286,42039,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(284287,42039,'blocks_0_options_format','grid'),(284288,42039,'_blocks_0_options_format','field_617a7b15245b5'),(284289,42039,'blocks_0_options_style','default'),(284290,42039,'_blocks_0_options_style','field_6278ffb63484a'),(284291,42039,'blocks_0_options_cards_current_listing','0'),(284292,42039,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(284293,42039,'blocks_0_options_cards_content','term'),(284294,42039,'_blocks_0_options_cards_content','field_617aba6122688'),(284295,42039,'blocks_0_options_cards_post_type','post'),(284296,42039,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(284297,42039,'blocks_0_options_cards_posts_per_page','5'),(284298,42039,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(284299,42039,'blocks_0_options',''),(284300,42039,'_blocks_0_options','field_617a7b15245b3'),(284301,42039,'blocks_0_options_cards_term','448'),(284302,42039,'_blocks_0_options_cards_term','field_6193f7c180895'),(284303,42039,'blocks_0_options_cards_pagination','1'),(284304,42039,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(284305,42039,'blocks_0_options_cards_filter_taxonomy',''),(284306,42039,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(284307,42039,'_thumbnail_id','40918'),(284308,42039,'__thumbnail_id','field_617570855ddaf'),(284309,42040,'hide_hero','0'),(284310,42040,'_hide_hero','field_66a2380fcda39'),(284311,42040,'hero_title',''),(284312,42040,'_hero_title','field_617571fe285e8'),(284313,42040,'hero_text','Understand the principles of human movement, key concepts like force and motion, and their practical applications in exercise, sports, and injury prevention.'),(284314,42040,'_hero_text','field_6175723c285e9'),(284315,42040,'hero_actions',''),(284316,42040,'_hero_actions','field_61757270285ea'),(284317,42040,'hero_style','default'),(284318,42040,'_hero_style','field_62051d9dc5324'),(284319,42040,'hero_image_pos_x','right'),(284320,42040,'_hero_image_pos_x','field_62ec3d05390bb'),(284321,42040,'hero_image_pos_y','top'),(284322,42040,'_hero_image_pos_y','field_62ec3d05390bc'),(284323,42040,'hero_image_pos',''),(284324,42040,'_hero_image_pos','field_62ec3d05390ba'),(284325,42040,'fft_hide_from_listings','0'),(284326,42040,'_fft_hide_from_listings','field_61f1320446ab2'),(284327,42040,'fft_page_format','default'),(284328,42040,'_fft_page_format','field_61ae213f1f218'),(284329,42040,'fft_hide_nav','0'),(284330,42040,'_fft_hide_nav','field_635bd5e43527c'),(284331,42040,'fft_hide_header_call_to_action','0'),(284332,42040,'_fft_hide_header_call_to_action','field_635bd6723527d'),(284333,42040,'fft_page_sitemap','0'),(284334,42040,'_fft_page_sitemap','field_61af9b34e8181'),(284335,42040,'blocks','a:1:{i:0;s:5:\"cards\";}'),(284336,42040,'_blocks','field_6176696113096'),(284337,42040,'blocks_0_acfe_flexible_toggle',''),(284338,42040,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(284339,42040,'blocks_0_acfe_flexible_layout_title','Cards'),(284340,42040,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(284341,42040,'blocks_0_options_theme','#ffffff'),(284342,42040,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(284343,42040,'blocks_0_options_format','grid'),(284344,42040,'_blocks_0_options_format','field_617a7b15245b5'),(284345,42040,'blocks_0_options_style','default'),(284346,42040,'_blocks_0_options_style','field_6278ffb63484a'),(284347,42040,'blocks_0_options_cards_current_listing','0'),(284348,42040,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(284349,42040,'blocks_0_options_cards_content','term'),(284350,42040,'_blocks_0_options_cards_content','field_617aba6122688'),(284351,42040,'blocks_0_options_cards_post_type','post'),(284352,42040,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(284353,42040,'blocks_0_options_cards_posts_per_page','5'),(284354,42040,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(284355,42040,'blocks_0_options',''),(284356,42040,'_blocks_0_options','field_617a7b15245b3'),(284357,42040,'blocks_0_options_cards_term','448'),(284358,42040,'_blocks_0_options_cards_term','field_6193f7c180895'),(284359,42040,'blocks_0_options_cards_pagination','1'),(284360,42040,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(284361,42040,'blocks_0_options_cards_filter_taxonomy',''),(284362,42040,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(284363,42040,'_thumbnail_id','40675'),(284364,42040,'__thumbnail_id','field_617570855ddaf'),(284365,42041,'_edit_lock','1737390110:17'),(284366,42041,'_edit_last','17'),(284367,42041,'hide_hero','0'),(284368,42041,'_hide_hero','field_66a2380fcda39'),(284369,42041,'hero_title',''),(284370,42041,'_hero_title','field_617571fe285e8'),(284371,42041,'hero_text','Delve into the mechanics of the human body, exploring the forces, motions, and structures that drive movement and performance.'),(284372,42041,'_hero_text','field_6175723c285e9'),(284373,42041,'hero_actions',''),(284374,42041,'_hero_actions','field_61757270285ea'),(284375,42041,'hero_style','default'),(284376,42041,'_hero_style','field_62051d9dc5324'),(284377,42041,'__thumbnail_id','field_617570855ddaf'),(284378,42041,'hero_image_pos_x','right'),(284379,42041,'_hero_image_pos_x','field_62ec3d05390bb'),(284380,42041,'hero_image_pos_y','top'),(284381,42041,'_hero_image_pos_y','field_62ec3d05390bc'),(284382,42041,'hero_image_pos',''),(284383,42041,'_hero_image_pos','field_62ec3d05390ba'),(284384,42041,'fft_hide_from_listings','0'),(284385,42041,'_fft_hide_from_listings','field_61f1320446ab2'),(284386,42041,'fft_page_format','default'),(284387,42041,'_fft_page_format','field_61ae213f1f218'),(284388,42041,'fft_hide_nav','0'),(284389,42041,'_fft_hide_nav','field_635bd5e43527c'),(284390,42041,'fft_hide_header_call_to_action','0'),(284391,42041,'_fft_hide_header_call_to_action','field_635bd6723527d'),(284392,42041,'fft_page_sitemap','0'),(284393,42041,'_fft_page_sitemap','field_61af9b34e8181'),(284394,42041,'blocks','a:1:{i:0;s:5:\"cards\";}'),(284395,42041,'_blocks','field_6176696113096'),(284396,42041,'_yoast_wpseo_estimated-reading-time-minutes','1'),(284397,42041,'blocks_0_acfe_flexible_toggle',''),(284398,42041,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(284399,42041,'blocks_0_acfe_flexible_layout_title','Cards'),(284400,42041,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(284401,42041,'blocks_0_options_theme','#ffffff'),(284402,42041,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(284403,42041,'blocks_0_options_format','grid'),(284404,42041,'_blocks_0_options_format','field_617a7b15245b5'),(284405,42041,'blocks_0_options_style','default'),(284406,42041,'_blocks_0_options_style','field_6278ffb63484a'),(284407,42041,'blocks_0_options_cards_current_listing','0'),(284408,42041,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(284409,42041,'blocks_0_options_cards_content','term'),(284410,42041,'_blocks_0_options_cards_content','field_617aba6122688'),(284411,42041,'blocks_0_options_cards_post_type','post'),(284412,42041,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(284413,42041,'blocks_0_options_cards_posts_per_page','5'),(284414,42041,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(284415,42041,'blocks_0_options',''),(284416,42041,'_blocks_0_options','field_617a7b15245b3'),(284417,42041,'_yoast_wpseo_focuskw','biomechanics blogs'),(284418,42041,'_yoast_wpseo_metadesc','Delve into the mechanics of the human body, exploring the forces, motions, and structures that drive movement and performance.'),(284419,42041,'_yoast_wpseo_linkdex','30'),(284420,42041,'blocks_0_options_cards_term','448'),(284421,42041,'_blocks_0_options_cards_term','field_6193f7c180895'),(284422,42041,'blocks_0_options_cards_pagination','1'),(284423,42041,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(284424,42041,'blocks_0_options_cards_filter_taxonomy',''),(284425,42041,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(284426,42041,'_yoast_wpseo_title','The Science of Biomechanics | Biomechanics Education'),(284427,42041,'_thumbnail_id','40557'),(284428,42041,'_yoast_wpseo_inclusive_language_score','90'),(284429,42043,'hide_hero','0'),(284430,42043,'_hide_hero','field_66a2380fcda39'),(284431,42043,'hero_title',''),(284432,42043,'_hero_title','field_617571fe285e8'),(284433,42043,'hero_text','Delve into the mechanics of the human body, exploring the forces, motions, and structures that drive movement and performance.'),(284434,42043,'_hero_text','field_6175723c285e9'),(284435,42043,'hero_actions',''),(284436,42043,'_hero_actions','field_61757270285ea'),(284437,42043,'hero_style','default'),(284438,42043,'_hero_style','field_62051d9dc5324'),(284439,42043,'hero_image_pos_x','right'),(284440,42043,'_hero_image_pos_x','field_62ec3d05390bb'),(284441,42043,'hero_image_pos_y','top'),(284442,42043,'_hero_image_pos_y','field_62ec3d05390bc'),(284443,42043,'hero_image_pos',''),(284444,42043,'_hero_image_pos','field_62ec3d05390ba'),(284445,42043,'fft_hide_from_listings','0'),(284446,42043,'_fft_hide_from_listings','field_61f1320446ab2'),(284447,42043,'fft_page_format','default'),(284448,42043,'_fft_page_format','field_61ae213f1f218'),(284449,42043,'fft_hide_nav','0'),(284450,42043,'_fft_hide_nav','field_635bd5e43527c'),(284451,42043,'fft_hide_header_call_to_action','0'),(284452,42043,'_fft_hide_header_call_to_action','field_635bd6723527d'),(284453,42043,'fft_page_sitemap','0'),(284454,42043,'_fft_page_sitemap','field_61af9b34e8181'),(284455,42043,'blocks','a:1:{i:0;s:5:\"cards\";}'),(284456,42043,'_blocks','field_6176696113096'),(284457,42043,'blocks_0_acfe_flexible_toggle',''),(284458,42043,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(284459,42043,'blocks_0_acfe_flexible_layout_title','Cards'),(284460,42043,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(284461,42043,'blocks_0_options_theme','#ffffff'),(284462,42043,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(284463,42043,'blocks_0_options_format','grid'),(284464,42043,'_blocks_0_options_format','field_617a7b15245b5'),(284465,42043,'blocks_0_options_style','default'),(284466,42043,'_blocks_0_options_style','field_6278ffb63484a'),(284467,42043,'blocks_0_options_cards_current_listing','0'),(284468,42043,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(284469,42043,'blocks_0_options_cards_content','term'),(284470,42043,'_blocks_0_options_cards_content','field_617aba6122688'),(284471,42043,'blocks_0_options_cards_post_type','post'),(284472,42043,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(284473,42043,'blocks_0_options_cards_posts_per_page','5'),(284474,42043,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(284475,42043,'blocks_0_options',''),(284476,42043,'_blocks_0_options','field_617a7b15245b3'),(284477,42043,'blocks_0_options_cards_term','448'),(284478,42043,'_blocks_0_options_cards_term','field_6193f7c180895'),(284479,42043,'blocks_0_options_cards_pagination','1'),(284480,42043,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(284481,42043,'blocks_0_options_cards_filter_taxonomy',''),(284482,42043,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(284483,42043,'_thumbnail_id','40557'),(284484,42043,'__thumbnail_id','field_617570855ddaf'),(284485,42044,'_edit_lock','1737390258:17'),(284486,42044,'_edit_last','17'),(284487,42044,'hide_hero','0'),(284488,42044,'_hide_hero','field_66a2380fcda39'),(284489,42044,'hero_title',''),(284490,42044,'_hero_title','field_617571fe285e8'),(284491,42044,'hero_text','Applying movement science to optimise performance, prevent injury, and enhance training techniques in sport and fitness.'),(284492,42044,'_hero_text','field_6175723c285e9'),(284493,42044,'hero_actions',''),(284494,42044,'_hero_actions','field_61757270285ea'),(284495,42044,'hero_style','default'),(284496,42044,'_hero_style','field_62051d9dc5324'),(284497,42044,'__thumbnail_id','field_617570855ddaf'),(284498,42044,'hero_image_pos_x','right'),(284499,42044,'_hero_image_pos_x','field_62ec3d05390bb'),(284500,42044,'hero_image_pos_y','top'),(284501,42044,'_hero_image_pos_y','field_62ec3d05390bc'),(284502,42044,'hero_image_pos',''),(284503,42044,'_hero_image_pos','field_62ec3d05390ba'),(284504,42044,'fft_hide_from_listings','0'),(284505,42044,'_fft_hide_from_listings','field_61f1320446ab2'),(284506,42044,'fft_page_format','default'),(284507,42044,'_fft_page_format','field_61ae213f1f218'),(284508,42044,'fft_hide_nav','0'),(284509,42044,'_fft_hide_nav','field_635bd5e43527c'),(284510,42044,'fft_hide_header_call_to_action','0'),(284511,42044,'_fft_hide_header_call_to_action','field_635bd6723527d'),(284512,42044,'fft_page_sitemap','0'),(284513,42044,'_fft_page_sitemap','field_61af9b34e8181'),(284514,42044,'blocks','a:1:{i:0;s:5:\"cards\";}'),(284515,42044,'_blocks','field_6176696113096'),(284516,42044,'_yoast_wpseo_estimated-reading-time-minutes','1'),(284517,42044,'blocks_0_acfe_flexible_toggle',''),(284518,42044,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(284519,42044,'blocks_0_acfe_flexible_layout_title','Cards'),(284520,42044,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(284521,42044,'blocks_0_options_theme','#ffffff'),(284522,42044,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(284523,42044,'blocks_0_options_format','grid'),(284524,42044,'_blocks_0_options_format','field_617a7b15245b5'),(284525,42044,'blocks_0_options_style','default'),(284526,42044,'_blocks_0_options_style','field_6278ffb63484a'),(284527,42044,'blocks_0_options_cards_current_listing','0'),(284528,42044,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(284529,42044,'blocks_0_options_cards_content','term'),(284530,42044,'_blocks_0_options_cards_content','field_617aba6122688'),(284531,42044,'blocks_0_options_cards_post_type','post'),(284532,42044,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(284533,42044,'blocks_0_options_cards_posts_per_page','5'),(284534,42044,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(284535,42044,'blocks_0_options',''),(284536,42044,'_blocks_0_options','field_617a7b15245b3'),(284537,42044,'_yoast_wpseo_focuskw','biomechanics blogs'),(284538,42044,'_yoast_wpseo_metadesc','Applying movement science to optimise performance, prevent injury, and enhance training techniques in sport and fitness.'),(284539,42044,'_yoast_wpseo_linkdex','30'),(284540,42044,'blocks_0_options_cards_term','448'),(284541,42044,'_blocks_0_options_cards_term','field_6193f7c180895'),(284542,42044,'blocks_0_options_cards_pagination','1'),(284543,42044,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(284544,42044,'blocks_0_options_cards_filter_taxonomy',''),(284545,42044,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(284546,42044,'_yoast_wpseo_title','Biomechanics for Sport and Fitness | Biomechanics Education'),(284547,42044,'_thumbnail_id','40659'),(284548,42044,'_yoast_wpseo_inclusive_language_score','90'),(284549,42045,'hide_hero','0'),(284550,42045,'_hide_hero','field_66a2380fcda39'),(284551,42045,'hero_title',''),(284552,42045,'_hero_title','field_617571fe285e8'),(284553,42045,'hero_text','Applying movement science to optimise performance, prevent injury, and enhance training techniques in sport and fitness.'),(284554,42045,'_hero_text','field_6175723c285e9'),(284555,42045,'hero_actions',''),(284556,42045,'_hero_actions','field_61757270285ea'),(284557,42045,'hero_style','default'),(284558,42045,'_hero_style','field_62051d9dc5324'),(284559,42045,'hero_image_pos_x','right'),(284560,42045,'_hero_image_pos_x','field_62ec3d05390bb'),(284561,42045,'hero_image_pos_y','top'),(284562,42045,'_hero_image_pos_y','field_62ec3d05390bc'),(284563,42045,'hero_image_pos',''),(284564,42045,'_hero_image_pos','field_62ec3d05390ba'),(284565,42045,'fft_hide_from_listings','0'),(284566,42045,'_fft_hide_from_listings','field_61f1320446ab2'),(284567,42045,'fft_page_format','default'),(284568,42045,'_fft_page_format','field_61ae213f1f218'),(284569,42045,'fft_hide_nav','0'),(284570,42045,'_fft_hide_nav','field_635bd5e43527c'),(284571,42045,'fft_hide_header_call_to_action','0'),(284572,42045,'_fft_hide_header_call_to_action','field_635bd6723527d'),(284573,42045,'fft_page_sitemap','0'),(284574,42045,'_fft_page_sitemap','field_61af9b34e8181'),(284575,42045,'blocks','a:1:{i:0;s:5:\"cards\";}'),(284576,42045,'_blocks','field_6176696113096'),(284577,42045,'blocks_0_acfe_flexible_toggle',''),(284578,42045,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(284579,42045,'blocks_0_acfe_flexible_layout_title','Cards'),(284580,42045,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(284581,42045,'blocks_0_options_theme','#ffffff'),(284582,42045,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(284583,42045,'blocks_0_options_format','grid'),(284584,42045,'_blocks_0_options_format','field_617a7b15245b5'),(284585,42045,'blocks_0_options_style','default'),(284586,42045,'_blocks_0_options_style','field_6278ffb63484a'),(284587,42045,'blocks_0_options_cards_current_listing','0'),(284588,42045,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(284589,42045,'blocks_0_options_cards_content','term'),(284590,42045,'_blocks_0_options_cards_content','field_617aba6122688'),(284591,42045,'blocks_0_options_cards_post_type','post'),(284592,42045,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(284593,42045,'blocks_0_options_cards_posts_per_page','5'),(284594,42045,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(284595,42045,'blocks_0_options',''),(284596,42045,'_blocks_0_options','field_617a7b15245b3'),(284597,42045,'blocks_0_options_cards_term','448'),(284598,42045,'_blocks_0_options_cards_term','field_6193f7c180895'),(284599,42045,'blocks_0_options_cards_pagination','1'),(284600,42045,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(284601,42045,'blocks_0_options_cards_filter_taxonomy',''),(284602,42045,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(284603,42045,'_thumbnail_id','40659'),(284604,42045,'__thumbnail_id','field_617570855ddaf'),(284605,42046,'_edit_lock','1737455190:17'),(284606,42046,'_edit_last','17'),(284607,42046,'hide_hero','0'),(284608,42046,'_hide_hero','field_66a2380fcda39'),(284609,42046,'hero_title',''),(284610,42046,'_hero_title','field_617571fe285e8'),(284611,42046,'hero_text','Applying movement science to optimise performance, prevent injury, and enhance training techniques in sport and fitness.'),(284612,42046,'_hero_text','field_6175723c285e9'),(284613,42046,'hero_actions',''),(284614,42046,'_hero_actions','field_61757270285ea'),(284615,42046,'hero_style','default'),(284616,42046,'_hero_style','field_62051d9dc5324'),(284617,42046,'__thumbnail_id','field_617570855ddaf'),(284618,42046,'hero_image_pos_x','right'),(284619,42046,'_hero_image_pos_x','field_62ec3d05390bb'),(284620,42046,'hero_image_pos_y','top'),(284621,42046,'_hero_image_pos_y','field_62ec3d05390bc'),(284622,42046,'hero_image_pos',''),(284623,42046,'_hero_image_pos','field_62ec3d05390ba'),(284624,42046,'fft_hide_from_listings','0'),(284625,42046,'_fft_hide_from_listings','field_61f1320446ab2'),(284626,42046,'fft_page_format','default'),(284627,42046,'_fft_page_format','field_61ae213f1f218'),(284628,42046,'fft_hide_nav','0'),(284629,42046,'_fft_hide_nav','field_635bd5e43527c'),(284630,42046,'fft_hide_header_call_to_action','0'),(284631,42046,'_fft_hide_header_call_to_action','field_635bd6723527d'),(284632,42046,'fft_page_sitemap','0'),(284633,42046,'_fft_page_sitemap','field_61af9b34e8181'),(284634,42046,'blocks','a:1:{i:0;s:5:\"cards\";}'),(284635,42046,'_blocks','field_6176696113096'),(284636,42046,'_yoast_wpseo_estimated-reading-time-minutes','1'),(284637,42046,'blocks_0_acfe_flexible_toggle',''),(284638,42046,'_blocks_0_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(284639,42046,'blocks_0_acfe_flexible_layout_title','Cards'),(284640,42046,'_blocks_0_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(284641,42046,'blocks_0_options_theme','#ffffff'),(284642,42046,'_blocks_0_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(284643,42046,'blocks_0_options_format','grid'),(284644,42046,'_blocks_0_options_format','field_617a7b15245b5'),(284645,42046,'blocks_0_options_style','default'),(284646,42046,'_blocks_0_options_style','field_6278ffb63484a'),(284647,42046,'blocks_0_options_cards_current_listing','0'),(284648,42046,'_blocks_0_options_cards_current_listing','field_6193d7effb7a4'),(284649,42046,'blocks_0_options_cards_content','term'),(284650,42046,'_blocks_0_options_cards_content','field_617aba6122688'),(284651,42046,'blocks_0_options_cards_post_type','post'),(284652,42046,'_blocks_0_options_cards_post_type','field_6194cc744d38b'),(284653,42046,'blocks_0_options_cards_posts_per_page','5'),(284654,42046,'_blocks_0_options_cards_posts_per_page','field_61a7565b1a0f2'),(284655,42046,'blocks_0_options',''),(284656,42046,'_blocks_0_options','field_617a7b15245b3'),(284657,42046,'_yoast_wpseo_focuskw','biomechanics blogs'),(284658,42046,'_yoast_wpseo_metadesc','Applying movement science to optimise performance, prevent injury, and enhance training techniques in sport and fitness.'),(284659,42046,'_yoast_wpseo_linkdex','30'),(284660,42046,'blocks_0_options_cards_term','448'),(284661,42046,'_blocks_0_options_cards_term','field_6193f7c180895'),(284662,42046,'blocks_0_options_cards_pagination','1'),(284663,42046,'_blocks_0_options_cards_pagination','field_61a756ab1a0f3'),(284664,42046,'blocks_0_options_cards_filter_taxonomy',''),(284665,42046,'_blocks_0_options_cards_filter_taxonomy','field_61b380eb96444'),(284666,42046,'_yoast_wpseo_title','Biomechanics for Sport and Fitness | Biomechanics Education'),(284667,42046,'_thumbnail_id','40659'),(284668,42046,'_yoast_wpseo_inclusive_language_score','90'),(284764,39278,'_wp_old_date','2024-11-15'),(284765,40906,'_wp_old_date','2024-11-15'),(284766,40858,'_wp_old_date','2024-11-15'),(284767,41573,'_wp_old_date','2024-11-15'),(284768,41574,'_wp_old_date','2024-11-15'),(284769,41576,'_wp_old_date','2024-11-15'),(284770,41575,'_wp_old_date','2024-11-15'),(284771,39348,'_wp_old_date','2024-11-15'),(284772,39486,'_wp_old_date','2024-11-15'),(284773,39485,'_wp_old_date','2024-11-15'),(284774,39487,'_wp_old_date','2024-11-15'),(284775,39279,'_wp_old_date','2024-11-15'),(284776,39325,'_wp_old_date','2024-11-15'),(284777,39324,'_wp_old_date','2024-11-15'),(284778,39323,'_wp_old_date','2024-11-15'),(284779,39322,'_wp_old_date','2024-11-15'),(284780,39321,'_wp_old_date','2024-11-15'),(284781,39320,'_wp_old_date','2024-11-15'),(284782,39319,'_wp_old_date','2024-11-15'),(284783,39281,'_wp_old_date','2024-11-15'),(284784,39344,'_wp_old_date','2024-11-15'),(284785,39318,'_wp_old_date','2024-11-15'),(284786,39522,'_wp_old_date','2024-11-15'),(284787,41605,'_wp_old_date','2024-11-15'),(284790,41286,'_wp_old_date','2024-11-15'),(284791,39280,'_wp_old_date','2024-11-15'),(284811,3550,'_edit_lock','1738061729:17'),(284812,6451,'_edit_lock','1738069729:3'),(284813,2720,'_edit_lock','1738069766:3'),(284814,36198,'_edit_lock','1738069933:3'),(284815,35742,'_edit_lock','1738069810:3'),(284816,30531,'_edit_lock','1738069974:3'),(284817,33779,'_edit_lock','1738069934:3'),(284818,30099,'_edit_lock','1738069995:3'),(284819,36448,'_edit_lock','1738070013:3'),(284820,24097,'_edit_lock','1738070115:3'),(284821,19072,'_edit_lock','1738070220:3'),(285128,42156,'hide_hero','0'),(285129,42156,'_hide_hero','field_66a2380fcda39'),(285130,42156,'hero_title','Diploma in Biomechanics Coaching'),(285131,42156,'_hero_title','field_617571fe285e8'),(285132,42156,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and gym-goers. Gathering data to develop a course that educates practitioners to a high level of understanding movement.'),(285133,42156,'_hero_text','field_6175723c285e9'),(285134,42156,'hero_actions','1'),(285135,42156,'_hero_actions','field_61757270285ea'),(285136,42156,'hero_style','default'),(285137,42156,'_hero_style','field_62051d9dc5324'),(285138,42156,'hero_image_pos_x','right'),(285139,42156,'_hero_image_pos_x','field_62ec3d05390bb'),(285140,42156,'hero_image_pos_y','top'),(285141,42156,'_hero_image_pos_y','field_62ec3d05390bc'),(285142,42156,'hero_image_pos',''),(285143,42156,'_hero_image_pos','field_62ec3d05390ba'),(285144,42156,'fft_hide_from_listings','0'),(285145,42156,'_fft_hide_from_listings','field_61f1320446ab2'),(285146,42156,'fft_page_format','default'),(285147,42156,'_fft_page_format','field_61ae213f1f218'),(285148,42156,'fft_hide_nav','0'),(285149,42156,'_fft_hide_nav','field_635bd5e43527c'),(285150,42156,'fft_hide_header_call_to_action','0'),(285151,42156,'_fft_hide_header_call_to_action','field_635bd6723527d'),(285152,42156,'fft_page_sitemap','0'),(285153,42156,'_fft_page_sitemap','field_61af9b34e8181'),(285154,42156,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:5:\"icons\";i:6;s:10:\"split_5050\";i:7;s:8:\"template\";i:8;s:10:\"accordions\";}'),(285155,42156,'_blocks','field_6176696113096'),(285156,42156,'course_label_text','Biomechanics Coach Course'),(285157,42156,'_course_label_text','field_61e17babf71fa'),(285158,42156,'course_label',''),(285159,42156,'_course_label','field_61e12f92749a7'),(285160,42156,'course_description','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(285161,42156,'_course_description','field_617ac5788e5e1'),(285162,42156,'course_key_info','1'),(285163,42156,'_course_key_info','field_617ac6ad8e5e2'),(285164,42156,'course_included','Diploma in Biomechanics Coaching'),(285165,42156,'_course_included','field_617ac6f08e5e4'),(285166,42156,'_thumbnail_id','40863'),(285167,42156,'__thumbnail_id','field_617570855ddaf'),(285168,42156,'blocks_0_acfe_flexible_toggle',''),(285169,42156,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(285170,42156,'blocks_0_acfe_flexible_layout_title','Template'),(285171,42156,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(285172,42156,'blocks_0_template','39087'),(285173,42156,'_blocks_0_template','field_617bdd570fe01'),(285174,42156,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(285175,42156,'_hero_actions_0_button','field_61757281285eb'),(285176,42156,'blocks_1_acfe_flexible_toggle',''),(285177,42156,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(285178,42156,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(285179,42156,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(285180,42156,'blocks_1_options_theme','#ffffff'),(285181,42156,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(285182,42156,'blocks_1_options_reverse','0'),(285183,42156,'_blocks_1_options_reverse','field_61768049bb8ac'),(285184,42156,'blocks_1_options',''),(285185,42156,'_blocks_1_options','field_617682517c334'),(285186,42156,'blocks_1_split_5050_image','40866'),(285187,42156,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(285188,42156,'blocks_1_split_5050_video',''),(285189,42156,'_blocks_1_split_5050_video','field_6239f3160848a'),(285190,42156,'blocks_1_split_5050_content_title',''),(285191,42156,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(285192,42156,'blocks_1_split_5050_content_heading','Course Overview'),(285193,42156,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(285194,42156,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(285195,42156,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(285196,42156,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(285197,42156,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(285198,42156,'blocks_1_split_5050_content_actions','1'),(285199,42156,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(285200,42156,'blocks_1_split_5050_content',''),(285201,42156,'_blocks_1_split_5050_content','field_61767afceb8ba'),(285202,42156,'blocks_2_acfe_flexible_toggle',''),(285203,42156,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(285204,42156,'blocks_2_acfe_flexible_layout_title','Form'),(285205,42156,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(285206,42156,'blocks_2_row_content_format','standard'),(285207,42156,'_blocks_2_row_content_format','field_6481ead962881'),(285208,42156,'blocks_2_row_content_title',''),(285209,42156,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(285210,42156,'blocks_2_row_content_heading','Enquire Today'),(285211,42156,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(285212,42156,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(285213,42156,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(285214,42156,'blocks_2_row_content_actions',''),(285215,42156,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(285216,42156,'blocks_2_row_content',''),(285217,42156,'_blocks_2_row_content','field_61a0f5f5b3db0'),(285218,42156,'blocks_2_row_form','40394'),(285219,42156,'_blocks_2_row_form','field_61a4ff2c0b08e'),(285220,42156,'blocks_2_row_form_button_label',''),(285221,42156,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(285222,42156,'blocks_3_acfe_flexible_toggle',''),(285223,42156,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(285224,42156,'blocks_3_acfe_flexible_layout_title','Video'),(285225,42156,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(285226,42156,'blocks_3_size','large'),(285227,42156,'_blocks_3_size','field_6487038f297c1'),(285228,42156,'blocks_3_row_content_title',''),(285229,42156,'_blocks_3_row_content_title','field_64870132a865d'),(285230,42156,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(285231,42156,'_blocks_3_row_content_heading','field_64870142a865e'),(285232,42156,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(285233,42156,'_blocks_3_row_content_text','field_64870148a865f'),(285234,42156,'blocks_3_row_content',''),(285235,42156,'_blocks_3_row_content','field_6487008ba865c'),(285236,42156,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(285237,42156,'_blocks_3_video_src','field_6193c4a98ec07'),(285238,42156,'blocks_3_video_thumbnail',''),(285239,42156,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(285240,42156,'blocks_4_acfe_flexible_toggle',''),(285241,42156,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(285242,42156,'blocks_4_acfe_flexible_layout_title','Tabs'),(285243,42156,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(285244,42156,'blocks_4_options_theme','#ffffff'),(285245,42156,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(285246,42156,'blocks_4_options',''),(285247,42156,'_blocks_4_options','field_6177cfcd8140f'),(285248,42156,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(285249,42156,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(285250,42156,'blocks_4_tabs_0_tab_content_title',''),(285251,42156,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(285252,42156,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(285253,42156,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(285254,42156,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(285255,42156,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(285256,42156,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(285257,42156,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(285258,42156,'blocks_4_tabs_0_tab_content_actions','1'),(285259,42156,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(285260,42156,'blocks_4_tabs_0_tab_content',''),(285261,42156,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(285262,42156,'blocks_4_tabs_0_tab_image','40869'),(285263,42156,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(285264,42156,'blocks_4_tabs_1_tab_label','Entry requirements'),(285265,42156,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(285266,42156,'blocks_4_tabs_1_tab_content_title',''),(285267,42156,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(285268,42156,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(285269,42156,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(285270,42156,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(285271,42156,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(285272,42156,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(285273,42156,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(285274,42156,'blocks_4_tabs_1_tab_content_actions','1'),(285275,42156,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(285276,42156,'blocks_4_tabs_1_tab_content',''),(285277,42156,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(285278,42156,'blocks_4_tabs_1_tab_image','40870'),(285279,42156,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(285280,42156,'blocks_4_tabs','2'),(285281,42156,'_blocks_4_tabs','field_6177cff281419'),(285282,42156,'blocks_5_acfe_flexible_toggle',''),(285283,42156,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(285284,42156,'blocks_5_acfe_flexible_layout_title','Icons'),(285285,42156,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(285286,42156,'blocks_5_options_theme','#b61234'),(285287,42156,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(285288,42156,'blocks_5_options_format','stacked'),(285289,42156,'_blocks_5_options_format','field_64bfde9a90690'),(285290,42156,'blocks_5_options',''),(285291,42156,'_blocks_5_options','field_64bfdd9b90684'),(285292,42156,'blocks_5_row_content_title',''),(285293,42156,'_blocks_5_row_content_title','field_64bfdd9b90687'),(285294,42156,'blocks_5_row_content_heading','Fees & Funding Options '),(285295,42156,'_blocks_5_row_content_heading','field_64bfdd9b90688'),(285296,42156,'blocks_5_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(285297,42156,'_blocks_5_row_content_text','field_64bfdd9b90689'),(285298,42156,'blocks_5_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(285299,42156,'_blocks_5_row_content_actions_0_button','field_64bfdd9b9068b'),(285300,42156,'blocks_5_row_content_actions','1'),(285301,42156,'_blocks_5_row_content_actions','field_64bfdd9b9068a'),(285302,42156,'blocks_5_row_content',''),(285303,42156,'_blocks_5_row_content','field_64bfdd9b90686'),(285304,42156,'blocks_5_icon_row_items_0_icon','pay-as-you-learn.svg'),(285305,42156,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(285306,42156,'blocks_5_icon_row_items_0_label','Pay in full'),(285307,42156,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(285308,42156,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(285309,42156,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(285310,42156,'blocks_5_icon_row_items_1_icon','finance.svg'),(285311,42156,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(285312,42156,'blocks_5_icon_row_items_1_label','0% finance'),(285313,42156,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(285314,42156,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(285315,42156,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(285316,42156,'blocks_5_icon_row_items_2_icon','pass-rate.svg'),(285317,42156,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(285318,42156,'blocks_5_icon_row_items_2_label','Deposit & balance'),(285319,42156,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(285320,42156,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(285321,42156,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(285322,42156,'blocks_5_icon_row_items','3'),(285323,42156,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(285324,42156,'blocks_6_acfe_flexible_toggle',''),(285325,42156,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(285326,42156,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(285327,42156,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(285328,42156,'blocks_6_options_theme','#ffffff'),(285329,42156,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(285330,42156,'blocks_6_options_reverse','0'),(285331,42156,'_blocks_6_options_reverse','field_61768049bb8ac'),(285332,42156,'blocks_6_options',''),(285333,42156,'_blocks_6_options','field_617682517c334'),(285334,42156,'blocks_6_split_5050_image','39224'),(285335,42156,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(285336,42156,'blocks_6_split_5050_video',''),(285337,42156,'_blocks_6_split_5050_video','field_6239f3160848a'),(285338,42156,'blocks_6_split_5050_content_title',''),(285339,42156,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(285340,42156,'blocks_6_split_5050_content_heading','Locations'),(285341,42156,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(285342,42156,'blocks_6_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(285343,42156,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(285344,42156,'blocks_6_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(285345,42156,'_blocks_6_split_5050_content_actions_0_button','field_61767b72eb8be'),(285346,42156,'blocks_6_split_5050_content_actions','1'),(285347,42156,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(285348,42156,'blocks_6_split_5050_content',''),(285349,42156,'_blocks_6_split_5050_content','field_61767afceb8ba'),(285350,42156,'blocks_8_acfe_flexible_toggle',''),(285351,42156,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(285352,42156,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(285353,42156,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(285354,42156,'blocks_8_options_theme','#ffffff'),(285355,42156,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(285356,42156,'blocks_8_options_state','0'),(285357,42156,'_blocks_8_options_state','field_6239fcb7508c5'),(285358,42156,'blocks_8_options',''),(285359,42156,'_blocks_8_options','field_6177e2991ac44'),(285360,42156,'blocks_8_content_title',''),(285361,42156,'_blocks_8_content_title','field_64d237e8bb1e2'),(285362,42156,'blocks_8_content_heading','FAQ\'s'),(285363,42156,'_blocks_8_content_heading','field_64d237e8bb1e3'),(285364,42156,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(285365,42156,'_blocks_8_content_text','field_64d237e8bb1e4'),(285366,42156,'blocks_8_content_actions',''),(285367,42156,'_blocks_8_content_actions','field_64d237e8bb1e5'),(285368,42156,'blocks_8_content_align','left'),(285369,42156,'_blocks_8_content_align','field_64d2443e6b6aa'),(285370,42156,'blocks_8_content',''),(285371,42156,'_blocks_8_content','field_64d237e8bb1e1'),(285372,42156,'blocks_8_accordion_content','faqs'),(285373,42156,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(285374,42156,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(285375,42156,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(285376,42156,'blocks_8_actions',''),(285377,42156,'_blocks_8_actions','field_61a746a817f7a'),(285378,42156,'blocks_7_acfe_flexible_toggle',''),(285379,42156,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(285380,42156,'blocks_7_acfe_flexible_layout_title','Template'),(285381,42156,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(285382,42156,'blocks_7_template','40987'),(285383,42156,'_blocks_7_template','field_617bdd570fe01'),(285384,42156,'course_label_label_theme','#0d1f73'),(285385,42156,'_course_label_label_theme','field_61e17bb8f71fb'),(285386,42156,'course_key_info_0_text','Entry requirements: Qualification in either Personal Trainer, Pilates, Yoga Instructor'),(285387,42156,'_course_key_info_0_text','field_617ac6c38e5e3'),(285648,42158,'hide_hero','0'),(285649,42158,'_hide_hero','field_66a2380fcda39'),(285650,42158,'fft_hide_from_listings','0'),(285651,42158,'_fft_hide_from_listings','field_61f1320446ab2'),(285652,42158,'fft_page_format','default'),(285653,42158,'_fft_page_format','field_61ae213f1f218'),(285654,42158,'fft_hide_nav','0'),(285655,42158,'_fft_hide_nav','field_635bd5e43527c'),(285656,42158,'fft_hide_header_call_to_action','0'),(285657,42158,'_fft_hide_header_call_to_action','field_635bd6723527d'),(285658,42158,'fft_page_sitemap','0'),(285659,42158,'_fft_page_sitemap','field_61af9b34e8181'),(285660,42158,'blocks_0_acfe_flexible_toggle',''),(285661,42158,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(285662,42158,'blocks_0_acfe_flexible_layout_title','Text Block'),(285663,42158,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(285664,42158,'blocks_0_options_theme','#ffffff'),(285665,42158,'_blocks_0_options_theme','field_6176830e2ad17'),(285666,42158,'blocks_0_options',''),(285667,42158,'_blocks_0_options','field_6176830e2ad16'),(285668,42158,'blocks_0_text_block_heading','Get in Touch'),(285669,42158,'_blocks_0_text_block_heading','field_617669d413097'),(285670,42158,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support you. Whether you’re interested in courses, or looking for a bespoke solution, or you\'re part of an organisation that wants a bespoke service, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(285671,42158,'_blocks_0_text_block_content','field_617669ec13098'),(285672,42158,'blocks','a:4:{i:0;s:10:\"text_block\";i:1;s:4:\"form\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";}'),(285673,42158,'_blocks','field_6176696113096'),(285674,42158,'hero_title','Contact us'),(285675,42158,'_hero_title','field_617571fe285e8'),(285676,42158,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your Intrinsic biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in Biomechanics Coaching.'),(285677,42158,'_hero_text','field_6175723c285e9'),(285678,42158,'hero_actions','1'),(285679,42158,'_hero_actions','field_61757270285ea'),(285680,42158,'hero_style','default'),(285681,42158,'_hero_style','field_62051d9dc5324'),(285682,42158,'hero_icon','lines'),(285683,42158,'_hero_icon','field_61a6182199d03'),(285684,42158,'_thumbnail_id','40339'),(285685,42158,'__thumbnail_id','field_617570855ddaf'),(285686,42158,'hero_image_pos_x','right'),(285687,42158,'_hero_image_pos_x','field_62ec3d05390bb'),(285688,42158,'hero_image_pos_y','top'),(285689,42158,'_hero_image_pos_y','field_62ec3d05390bc'),(285690,42158,'hero_image_pos',''),(285691,42158,'_hero_image_pos','field_62ec3d05390ba'),(285692,42158,'blocks_2_acfe_flexible_toggle',''),(285693,42158,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(285694,42158,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(285695,42158,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(285696,42158,'blocks_2_options_theme','#ffffff'),(285697,42158,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(285698,42158,'blocks_2_options_reverse','0'),(285699,42158,'_blocks_2_options_reverse','field_61768049bb8ac'),(285700,42158,'blocks_2_options',''),(285701,42158,'_blocks_2_options','field_617682517c334'),(285702,42158,'blocks_2_split_5050_image','40342'),(285703,42158,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(285704,42158,'blocks_2_split_5050_video',''),(285705,42158,'_blocks_2_split_5050_video','field_6239f3160848a'),(285706,42158,'blocks_2_split_5050_content_title',''),(285707,42158,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(285708,42158,'blocks_2_split_5050_content_heading','Let\'s connect!'),(285709,42158,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(285710,42158,'blocks_2_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/company/biomechanics-education/\">LinkedIn</a>'),(285711,42158,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(285712,42158,'blocks_2_split_5050_content_actions',''),(285713,42158,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(285714,42158,'blocks_2_split_5050_content',''),(285715,42158,'_blocks_2_split_5050_content','field_61767afceb8ba'),(285716,42158,'blocks_1_acfe_flexible_toggle',''),(285717,42158,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(285718,42158,'blocks_1_acfe_flexible_layout_title','Form'),(285719,42158,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(285720,42158,'blocks_1_row_content_format','standard'),(285721,42158,'_blocks_1_row_content_format','field_6481ead962881'),(285722,42158,'blocks_1_row_content_title',''),(285723,42158,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(285724,42158,'blocks_1_row_content_heading','Let\'s get started'),(285725,42158,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(285726,42158,'blocks_1_row_content_text','<span data-contrast=\"none\">Please fill in your details for no obligation support and advice. One of our in-house Career Advisors will give you a call to discuss your enquiry – don\'t worry if you are not available, we can call back at a convenient time for you.  </span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:259}\"> </span>\r\n\r\n<strong>By completing the form you will also gain access to our Information and Price Guide.</strong>'),(285727,42158,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(285728,42158,'blocks_1_row_content_actions',''),(285729,42158,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(285730,42158,'blocks_1_row_content',''),(285731,42158,'_blocks_1_row_content','field_61a0f5f5b3db0'),(285732,42158,'blocks_1_row_form','40394'),(285733,42158,'_blocks_1_row_form','field_61a4ff2c0b08e'),(285734,42158,'blocks_1_row_form_button_label',''),(285735,42158,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(285736,42158,'blocks_3_acfe_flexible_toggle',''),(285737,42158,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(285738,42158,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(285739,42158,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(285740,42158,'blocks_3_options_theme','#ffffff'),(285741,42158,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(285742,42158,'blocks_3_options_reverse','1'),(285743,42158,'_blocks_3_options_reverse','field_61768049bb8ac'),(285744,42158,'blocks_3_options',''),(285745,42158,'_blocks_3_options','field_617682517c334'),(285746,42158,'blocks_3_split_5050_image','40349'),(285747,42158,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(285748,42158,'blocks_3_split_5050_video',''),(285749,42158,'_blocks_3_split_5050_video','field_6239f3160848a'),(285750,42158,'blocks_3_split_5050_content_title',''),(285751,42158,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(285752,42158,'blocks_3_split_5050_content_heading','Find a Biomechanics Coach in your area'),(285753,42158,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(285754,42158,'blocks_3_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(285755,42158,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(285756,42158,'blocks_3_split_5050_content_actions',''),(285757,42158,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(285758,42158,'blocks_3_split_5050_content',''),(285759,42158,'_blocks_3_split_5050_content','field_61767afceb8ba'),(285760,42158,'hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in Touch\";s:3:\"url\";s:12:\"#row-39196-2\";s:6:\"target\";s:0:\"\";}'),(285761,42158,'_hero_actions_0_button','field_61757281285eb'),(285944,42171,'_edit_lock','1741188714:15'),(285945,42171,'_edit_last','15'),(285946,42171,'hide_hero','0'),(285947,42171,'_hide_hero','field_66a2380fcda39'),(285948,42171,'hero_title',''),(285949,42171,'_hero_title','field_617571fe285e8'),(285950,42171,'hero_text',''),(285951,42171,'_hero_text','field_6175723c285e9'),(285952,42171,'hero_actions',''),(285953,42171,'_hero_actions','field_61757270285ea'),(285954,42171,'hero_style','default'),(285955,42171,'_hero_style','field_62051d9dc5324'),(285957,42171,'__thumbnail_id','field_617570855ddaf'),(285958,42171,'hero_image_pos_x','right'),(285959,42171,'_hero_image_pos_x','field_62ec3d05390bb'),(285960,42171,'hero_image_pos_y','top'),(285961,42171,'_hero_image_pos_y','field_62ec3d05390bc'),(285962,42171,'hero_image_pos',''),(285963,42171,'_hero_image_pos','field_62ec3d05390ba'),(285964,42171,'fft_hide_from_listings','0'),(285965,42171,'_fft_hide_from_listings','field_61f1320446ab2'),(285966,42171,'fft_page_format','default'),(285967,42171,'_fft_page_format','field_61ae213f1f218'),(285968,42171,'fft_hide_nav','0'),(285969,42171,'_fft_hide_nav','field_635bd5e43527c'),(285970,42171,'fft_hide_header_call_to_action','0'),(285971,42171,'_fft_hide_header_call_to_action','field_635bd6723527d'),(285972,42171,'fft_page_sitemap','0'),(285973,42171,'_fft_page_sitemap','field_61af9b34e8181'),(285974,42171,'blocks_0_acfe_flexible_toggle',''),(285975,42171,'_blocks_0_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(285976,42171,'blocks_0_acfe_flexible_layout_title','Promo Panel'),(285977,42171,'_blocks_0_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(285978,42171,'blocks_0_options_alignment','center'),(285979,42171,'_blocks_0_options_alignment','field_61769449f5490'),(285980,42171,'blocks_0_options',''),(285981,42171,'_blocks_0_options','field_617693e1428f0'),(285982,42171,'blocks_0_promo_panel_image','32556'),(285983,42171,'_blocks_0_promo_panel_image','field_617693e1428f3'),(285984,42171,'blocks_0_promo_panel_content_heading',''),(285985,42171,'_blocks_0_promo_panel_content_heading','field_617693e1428f6'),(285986,42171,'blocks_0_promo_panel_content_text','\"Join the workshop and get 65% funded – limited spots available!\"'),(285987,42171,'_blocks_0_promo_panel_content_text','field_617693e1428f7'),(285988,42171,'blocks_0_promo_panel_content_actions',''),(285989,42171,'_blocks_0_promo_panel_content_actions','field_617693e1428f8'),(285990,42171,'blocks_0_promo_panel_content',''),(285991,42171,'_blocks_0_promo_panel_content','field_617693e1428f4'),(285992,42171,'blocks_1_acfe_flexible_toggle',''),(285993,42171,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(285994,42171,'blocks_1_acfe_flexible_layout_title','Text Block'),(285995,42171,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(285996,42171,'blocks_1_options_theme','#ffffff'),(285997,42171,'_blocks_1_options_theme','field_6176830e2ad17'),(285998,42171,'blocks_1_options',''),(285999,42171,'_blocks_1_options','field_6176830e2ad16'),(286000,42171,'blocks_1_text_block_heading','Join the workshop and get 65% funded – limited spots available!'),(286001,42171,'_blocks_1_text_block_heading','field_617669d413097'),(286002,42171,'blocks_1_text_block_content',''),(286003,42171,'_blocks_1_text_block_content','field_617669ec13098'),(286004,42171,'blocks_2_acfe_flexible_toggle',''),(286005,42171,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(286006,42171,'blocks_2_acfe_flexible_layout_title','Quote'),(286007,42171,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(286008,42171,'blocks_2_quote_content','\"Join the workshop and get 65% funded – limited spots available!\"'),(286009,42171,'_blocks_2_quote_content','field_6177cdacdd67a'),(286010,42171,'blocks_2_quote_author',''),(286011,42171,'_blocks_2_quote_author','field_6177cdc6dd67b'),(286012,42171,'blocks','a:3:{i:0;s:11:\"promo_panel\";i:1;s:10:\"text_block\";i:2;s:5:\"quote\";}'),(286013,42171,'_blocks','field_6176696113096'),(286014,42171,'_yoast_wpseo_inclusive_language_score','90'),(286015,42171,'_yoast_wpseo_estimated-reading-time-minutes','0'),(286016,42172,'hide_hero','0'),(286017,42172,'_hide_hero','field_66a2380fcda39'),(286018,42172,'hero_title',''),(286019,42172,'_hero_title','field_617571fe285e8'),(286020,42172,'hero_text',''),(286021,42172,'_hero_text','field_6175723c285e9'),(286022,42172,'hero_actions',''),(286023,42172,'_hero_actions','field_61757270285ea'),(286024,42172,'hero_style','default'),(286025,42172,'_hero_style','field_62051d9dc5324'),(286026,42172,'_thumbnail_id',''),(286027,42172,'__thumbnail_id','field_617570855ddaf'),(286028,42172,'hero_image_pos_x','right'),(286029,42172,'_hero_image_pos_x','field_62ec3d05390bb'),(286030,42172,'hero_image_pos_y','top'),(286031,42172,'_hero_image_pos_y','field_62ec3d05390bc'),(286032,42172,'hero_image_pos',''),(286033,42172,'_hero_image_pos','field_62ec3d05390ba'),(286034,42172,'fft_hide_from_listings','0'),(286035,42172,'_fft_hide_from_listings','field_61f1320446ab2'),(286036,42172,'fft_page_format','default'),(286037,42172,'_fft_page_format','field_61ae213f1f218'),(286038,42172,'fft_hide_nav','0'),(286039,42172,'_fft_hide_nav','field_635bd5e43527c'),(286040,42172,'fft_hide_header_call_to_action','0'),(286041,42172,'_fft_hide_header_call_to_action','field_635bd6723527d'),(286042,42172,'fft_page_sitemap','0'),(286043,42172,'_fft_page_sitemap','field_61af9b34e8181'),(286044,42172,'blocks_0_acfe_flexible_toggle',''),(286045,42172,'_blocks_0_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(286046,42172,'blocks_0_acfe_flexible_layout_title','Promo Panel'),(286047,42172,'_blocks_0_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(286048,42172,'blocks_0_options_alignment','center'),(286049,42172,'_blocks_0_options_alignment','field_61769449f5490'),(286050,42172,'blocks_0_options',''),(286051,42172,'_blocks_0_options','field_617693e1428f0'),(286052,42172,'blocks_0_promo_panel_image','32556'),(286053,42172,'_blocks_0_promo_panel_image','field_617693e1428f3'),(286054,42172,'blocks_0_promo_panel_content_heading',''),(286055,42172,'_blocks_0_promo_panel_content_heading','field_617693e1428f6'),(286056,42172,'blocks_0_promo_panel_content_text','\"Join the workshop and get 65% funded – limited spots available!\"'),(286057,42172,'_blocks_0_promo_panel_content_text','field_617693e1428f7'),(286058,42172,'blocks_0_promo_panel_content_actions',''),(286059,42172,'_blocks_0_promo_panel_content_actions','field_617693e1428f8'),(286060,42172,'blocks_0_promo_panel_content',''),(286061,42172,'_blocks_0_promo_panel_content','field_617693e1428f4'),(286062,42172,'blocks_1_acfe_flexible_toggle',''),(286063,42172,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(286064,42172,'blocks_1_acfe_flexible_layout_title','Text Block'),(286065,42172,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(286066,42172,'blocks_1_options_theme','#ffffff'),(286067,42172,'_blocks_1_options_theme','field_6176830e2ad17'),(286068,42172,'blocks_1_options',''),(286069,42172,'_blocks_1_options','field_6176830e2ad16'),(286070,42172,'blocks_1_text_block_heading',''),(286071,42172,'_blocks_1_text_block_heading','field_617669d413097'),(286072,42172,'blocks_1_text_block_content','\"Join the workshop and get 65% funded – limited spots available!\"'),(286073,42172,'_blocks_1_text_block_content','field_617669ec13098'),(286074,42172,'blocks_2_acfe_flexible_toggle',''),(286075,42172,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(286076,42172,'blocks_2_acfe_flexible_layout_title','Quote'),(286077,42172,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(286078,42172,'blocks_2_quote_content','\"Join the workshop and get 65% funded – limited spots available!\"'),(286079,42172,'_blocks_2_quote_content','field_6177cdacdd67a'),(286080,42172,'blocks_2_quote_author',''),(286081,42172,'_blocks_2_quote_author','field_6177cdc6dd67b'),(286082,42172,'blocks','a:3:{i:0;s:11:\"promo_panel\";i:1;s:10:\"text_block\";i:2;s:5:\"quote\";}'),(286083,42172,'_blocks','field_6176696113096'),(286085,42173,'hide_hero','0'),(286086,42173,'_hide_hero','field_66a2380fcda39'),(286087,42173,'hero_title',''),(286088,42173,'_hero_title','field_617571fe285e8'),(286089,42173,'hero_text',''),(286090,42173,'_hero_text','field_6175723c285e9'),(286091,42173,'hero_actions',''),(286092,42173,'_hero_actions','field_61757270285ea'),(286093,42173,'hero_style','default'),(286094,42173,'_hero_style','field_62051d9dc5324'),(286095,42173,'hero_image_pos_x','right'),(286096,42173,'_hero_image_pos_x','field_62ec3d05390bb'),(286097,42173,'hero_image_pos_y','top'),(286098,42173,'_hero_image_pos_y','field_62ec3d05390bc'),(286099,42173,'hero_image_pos',''),(286100,42173,'_hero_image_pos','field_62ec3d05390ba'),(286101,42173,'fft_hide_from_listings','0'),(286102,42173,'_fft_hide_from_listings','field_61f1320446ab2'),(286103,42173,'fft_page_format','default'),(286104,42173,'_fft_page_format','field_61ae213f1f218'),(286105,42173,'fft_hide_nav','0'),(286106,42173,'_fft_hide_nav','field_635bd5e43527c'),(286107,42173,'fft_hide_header_call_to_action','0'),(286108,42173,'_fft_hide_header_call_to_action','field_635bd6723527d'),(286109,42173,'fft_page_sitemap','0'),(286110,42173,'_fft_page_sitemap','field_61af9b34e8181'),(286111,42173,'blocks_0_acfe_flexible_toggle',''),(286112,42173,'_blocks_0_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(286113,42173,'blocks_0_acfe_flexible_layout_title','Promo Panel'),(286114,42173,'_blocks_0_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(286115,42173,'blocks_0_options_alignment','center'),(286116,42173,'_blocks_0_options_alignment','field_61769449f5490'),(286117,42173,'blocks_0_options',''),(286118,42173,'_blocks_0_options','field_617693e1428f0'),(286119,42173,'blocks_0_promo_panel_image','32556'),(286120,42173,'_blocks_0_promo_panel_image','field_617693e1428f3'),(286121,42173,'blocks_0_promo_panel_content_heading',''),(286122,42173,'_blocks_0_promo_panel_content_heading','field_617693e1428f6'),(286123,42173,'blocks_0_promo_panel_content_text','\"Join the workshop and get 65% funded – limited spots available!\"'),(286124,42173,'_blocks_0_promo_panel_content_text','field_617693e1428f7'),(286125,42173,'blocks_0_promo_panel_content_actions',''),(286126,42173,'_blocks_0_promo_panel_content_actions','field_617693e1428f8'),(286127,42173,'blocks_0_promo_panel_content',''),(286128,42173,'_blocks_0_promo_panel_content','field_617693e1428f4'),(286129,42173,'blocks_1_acfe_flexible_toggle',''),(286130,42173,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(286131,42173,'blocks_1_acfe_flexible_layout_title','Text Block'),(286132,42173,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(286133,42173,'blocks_1_options_theme','#ffffff'),(286134,42173,'_blocks_1_options_theme','field_6176830e2ad17'),(286135,42173,'blocks_1_options',''),(286136,42173,'_blocks_1_options','field_6176830e2ad16'),(286137,42173,'blocks_1_text_block_heading','Join the workshop and get 65% funded – limited spots available!'),(286138,42173,'_blocks_1_text_block_heading','field_617669d413097'),(286139,42173,'blocks_1_text_block_content',''),(286140,42173,'_blocks_1_text_block_content','field_617669ec13098'),(286141,42173,'blocks_2_acfe_flexible_toggle',''),(286142,42173,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(286143,42173,'blocks_2_acfe_flexible_layout_title','Quote'),(286144,42173,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(286145,42173,'blocks_2_quote_content','\"Join the workshop and get 65% funded – limited spots available!\"'),(286146,42173,'_blocks_2_quote_content','field_6177cdacdd67a'),(286147,42173,'blocks_2_quote_author',''),(286148,42173,'_blocks_2_quote_author','field_6177cdc6dd67b'),(286149,42173,'blocks','a:3:{i:0;s:11:\"promo_panel\";i:1;s:10:\"text_block\";i:2;s:5:\"quote\";}'),(286150,42173,'_blocks','field_6176696113096'),(286151,42173,'_thumbnail_id',''),(286152,42173,'__thumbnail_id','field_617570855ddaf'),(286628,40779,'blocks_1_acfe_flexible_toggle',''),(286629,40779,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(286630,40779,'blocks_1_acfe_flexible_layout_title','Text Block'),(286631,40779,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(286632,40779,'blocks_1_options_theme','#ffffff'),(286633,40779,'_blocks_1_options_theme','field_6176830e2ad17'),(286634,40779,'blocks_1_options',''),(286635,40779,'_blocks_1_options','field_6176830e2ad16'),(286636,40779,'blocks_1_text_block_heading',''),(286637,40779,'_blocks_1_text_block_heading','field_617669d413097'),(286638,40779,'blocks_1_text_block_content','<h3 style=\"text-align: left;\"><a href=\"https://emduk.org/funded-cpd/funded-cpd-eligibility/\"><strong>Join the workshop today and get 65% funded – limited spots available!</strong></a></h3>'),(286639,40779,'_blocks_1_text_block_content','field_617669ec13098'),(286640,40779,'blocks_2_acfe_flexible_toggle',''),(286641,40779,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(286642,40779,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(286643,40779,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(286644,40779,'blocks_2_options_theme','#ffffff'),(286645,40779,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(286646,40779,'blocks_2_options_reverse','1'),(286647,40779,'_blocks_2_options_reverse','field_61768049bb8ac'),(286648,40779,'blocks_2_options',''),(286649,40779,'_blocks_2_options','field_617682517c334'),(286650,40779,'blocks_2_split_5050_image','40615'),(286651,40779,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(286652,40779,'blocks_2_split_5050_video',''),(286653,40779,'_blocks_2_split_5050_video','field_6239f3160848a'),(286654,40779,'blocks_2_split_5050_content_title',''),(286655,40779,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(286656,40779,'blocks_2_split_5050_content_heading','Overview'),(286657,40779,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(286658,40779,'blocks_2_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(286659,40779,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(286660,40779,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(286661,40779,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(286662,40779,'blocks_2_split_5050_content_actions','1'),(286663,40779,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(286664,40779,'blocks_2_split_5050_content',''),(286665,40779,'_blocks_2_split_5050_content','field_61767afceb8ba'),(286666,40779,'blocks_3_acfe_flexible_toggle',''),(286667,40779,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(286668,40779,'blocks_3_acfe_flexible_layout_title','Video'),(286669,40779,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(286670,40779,'blocks_3_size','large'),(286671,40779,'_blocks_3_size','field_6487038f297c1'),(286672,40779,'blocks_3_row_content_title',''),(286673,40779,'_blocks_3_row_content_title','field_64870132a865d'),(286674,40779,'blocks_3_row_content_heading','Intro to IMoveFreely Instructor workshop'),(286675,40779,'_blocks_3_row_content_heading','field_64870142a865e'),(286676,40779,'blocks_3_row_content_text',''),(286677,40779,'_blocks_3_row_content_text','field_64870148a865f'),(286678,40779,'blocks_3_row_content',''),(286679,40779,'_blocks_3_row_content','field_6487008ba865c'),(286680,40779,'blocks_3_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(286681,40779,'_blocks_3_video_src','field_6193c4a98ec07'),(286682,40779,'blocks_3_video_thumbnail',''),(286683,40779,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(286684,40779,'blocks_4_acfe_flexible_toggle',''),(286685,40779,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(286686,40779,'blocks_4_acfe_flexible_layout_title','Timeline'),(286687,40779,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(286688,40779,'blocks_4_options_theme','#ffffff'),(286689,40779,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(286690,40779,'blocks_4_options',''),(286691,40779,'_blocks_4_options','field_6177de53d1195'),(286692,40779,'blocks_4_timeline_content_title',''),(286693,40779,'_blocks_4_timeline_content_title','field_6177de53d1198'),(286694,40779,'blocks_4_timeline_content_heading','Who is the course suitable for? '),(286695,40779,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(286696,40779,'blocks_4_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(286697,40779,'_blocks_4_timeline_content_text','field_6177de53d119a'),(286698,40779,'blocks_4_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(286699,40779,'_blocks_4_timeline_content_actions_0_button','field_6177de53d119c'),(286700,40779,'blocks_4_timeline_content_actions','1'),(286701,40779,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(286702,40779,'blocks_4_timeline_content',''),(286703,40779,'_blocks_4_timeline_content','field_6177de53d1197'),(286704,40779,'blocks_4_timeline_items_0_title','Benefits'),(286705,40779,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(286706,40779,'blocks_4_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(286707,40779,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(286708,40779,'blocks_4_timeline_items_1_title','Curriculum Highlights'),(286709,40779,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(286710,40779,'blocks_4_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(286711,40779,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(286712,40779,'blocks_4_timeline_items_2_title','What pre-qualifications are required?'),(286713,40779,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(286714,40779,'blocks_4_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(286715,40779,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(286716,40779,'blocks_4_timeline_items','3'),(286717,40779,'_blocks_4_timeline_items','field_6177de53d119d'),(286718,40779,'blocks_5_acfe_flexible_toggle',''),(286719,40779,'_blocks_5_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(286720,40779,'blocks_5_acfe_flexible_layout_title','Promo Panel'),(286721,40779,'_blocks_5_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(286722,40779,'blocks_5_options_alignment','center'),(286723,40779,'_blocks_5_options_alignment','field_61769449f5490'),(286724,40779,'blocks_5_options',''),(286725,40779,'_blocks_5_options','field_617693e1428f0'),(286726,40779,'blocks_5_promo_panel_image','41312'),(286727,40779,'_blocks_5_promo_panel_image','field_617693e1428f3'),(286728,40779,'blocks_5_promo_panel_content_heading','Testimonial'),(286729,40779,'_blocks_5_promo_panel_content_heading','field_617693e1428f6'),(286730,40779,'blocks_5_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!”\r\nJayne Nicholls Director Group X Training Ltd.'),(286731,40779,'_blocks_5_promo_panel_content_text','field_617693e1428f7'),(286732,40779,'blocks_5_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(286733,40779,'_blocks_5_promo_panel_content_actions_0_button','field_617693e1428f9'),(286734,40779,'blocks_5_promo_panel_content_actions','1'),(286735,40779,'_blocks_5_promo_panel_content_actions','field_617693e1428f8'),(286736,40779,'blocks_5_promo_panel_content',''),(286737,40779,'_blocks_5_promo_panel_content','field_617693e1428f4'),(286738,40779,'blocks_6_acfe_flexible_toggle',''),(286739,40779,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(286740,40779,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(286741,40779,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(286742,40779,'blocks_6_options_theme','#b61234'),(286743,40779,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(286744,40779,'blocks_6_options_state','0'),(286745,40779,'_blocks_6_options_state','field_6239fcb7508c5'),(286746,40779,'blocks_6_options',''),(286747,40779,'_blocks_6_options','field_6177e2991ac44'),(286748,40779,'blocks_6_content_title',''),(286749,40779,'_blocks_6_content_title','field_64d237e8bb1e2'),(286750,40779,'blocks_6_content_heading','FAQ\'s'),(286751,40779,'_blocks_6_content_heading','field_64d237e8bb1e3'),(286752,40779,'blocks_6_content_text',''),(286753,40779,'_blocks_6_content_text','field_64d237e8bb1e4'),(286754,40779,'blocks_6_content_actions',''),(286755,40779,'_blocks_6_content_actions','field_64d237e8bb1e5'),(286756,40779,'blocks_6_content_align','left'),(286757,40779,'_blocks_6_content_align','field_64d2443e6b6aa'),(286758,40779,'blocks_6_content',''),(286759,40779,'_blocks_6_content','field_64d237e8bb1e1'),(286760,40779,'blocks_6_accordion_content','faqs'),(286761,40779,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(286762,40779,'blocks_6_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(286763,40779,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(286764,40779,'blocks_6_actions',''),(286765,40779,'_blocks_6_actions','field_61a746a817f7a'),(286766,42176,'hide_hero','0'),(286767,42176,'_hide_hero','field_66a2380fcda39'),(286768,42176,'hero_title','IMoveFreely Instructor Programme Workshop'),(286769,42176,'_hero_title','field_617571fe285e8'),(286770,42176,'hero_text',''),(286771,42176,'_hero_text','field_6175723c285e9'),(286772,42176,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(286773,42176,'_hero_actions_0_button','field_61757281285eb'),(286774,42176,'hero_actions','1'),(286775,42176,'_hero_actions','field_61757270285ea'),(286776,42176,'hero_style','default'),(286777,42176,'_hero_style','field_62051d9dc5324'),(286779,42176,'__thumbnail_id','field_617570855ddaf'),(286780,42176,'hero_image_pos_x','right'),(286781,42176,'_hero_image_pos_x','field_62ec3d05390bb'),(286782,42176,'hero_image_pos_y','top'),(286783,42176,'_hero_image_pos_y','field_62ec3d05390bc'),(286784,42176,'hero_image_pos',''),(286785,42176,'_hero_image_pos','field_62ec3d05390ba'),(286786,42176,'fft_hide_from_listings','0'),(286787,42176,'_fft_hide_from_listings','field_61f1320446ab2'),(286788,42176,'fft_page_format','default'),(286789,42176,'_fft_page_format','field_61ae213f1f218'),(286790,42176,'fft_hide_nav','0'),(286791,42176,'_fft_hide_nav','field_635bd5e43527c'),(286792,42176,'fft_hide_header_call_to_action','0'),(286793,42176,'_fft_hide_header_call_to_action','field_635bd6723527d'),(286794,42176,'fft_page_sitemap','0'),(286795,42176,'_fft_page_sitemap','field_61af9b34e8181'),(286796,42176,'blocks_0_acfe_flexible_toggle',''),(286797,42176,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(286798,42176,'blocks_0_acfe_flexible_layout_title','Template'),(286799,42176,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(286800,42176,'blocks_0_template','39087'),(286801,42176,'_blocks_0_template','field_617bdd570fe01'),(286802,42176,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:5:\"video\";i:4;s:13:\"step_timeline\";i:5;s:11:\"promo_panel\";i:6;s:10:\"accordions\";}'),(286803,42176,'_blocks','field_6176696113096'),(286804,42176,'course_label_text','IMoveFreely Instructor programme workshop'),(286805,42176,'_course_label_text','field_61e17babf71fa'),(286806,42176,'course_label',''),(286807,42176,'_course_label','field_61e12f92749a7'),(286808,42176,'course_description','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants.'),(286809,42176,'_course_description','field_617ac5788e5e1'),(286810,42176,'course_key_info','2'),(286811,42176,'_course_key_info','field_617ac6ad8e5e2'),(286812,42176,'course_included','Profound effects on movement issues \r\n\r\nIdeal for injury prevention, rehabilitation, and activity preparation \r\n\r\nEvidence-based techniques for improved performance \r\n\r\nFlexible integration into existing classes '),(286813,42176,'_course_included','field_617ac6f08e5e4'),(286814,42176,'course_label_label_theme','#0d1f73'),(286815,42176,'_course_label_label_theme','field_61e17bb8f71fb'),(286816,42176,'course_key_info_0_text','In-person Workshop'),(286817,42176,'_course_key_info_0_text','field_617ac6c38e5e3'),(286818,42176,'course_key_info_1_text','CPD Course'),(286819,42176,'_course_key_info_1_text','field_617ac6c38e5e3'),(286820,42176,'blocks_1_acfe_flexible_toggle',''),(286821,42176,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(286822,42176,'blocks_1_acfe_flexible_layout_title','Text Block'),(286823,42176,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(286824,42176,'blocks_1_options_theme','#ffffff'),(286825,42176,'_blocks_1_options_theme','field_6176830e2ad17'),(286826,42176,'blocks_1_options',''),(286827,42176,'_blocks_1_options','field_6176830e2ad16'),(286828,42176,'blocks_1_text_block_heading','Join the workshop today and get 65% funded – limited spots available!'),(286829,42176,'_blocks_1_text_block_heading','field_617669d413097'),(286830,42176,'blocks_1_text_block_content',''),(286831,42176,'_blocks_1_text_block_content','field_617669ec13098'),(286832,42176,'blocks_2_acfe_flexible_toggle',''),(286833,42176,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(286834,42176,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(286835,42176,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(286836,42176,'blocks_2_options_theme','#ffffff'),(286837,42176,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(286838,42176,'blocks_2_options_reverse','1'),(286839,42176,'_blocks_2_options_reverse','field_61768049bb8ac'),(286840,42176,'blocks_2_options',''),(286841,42176,'_blocks_2_options','field_617682517c334'),(286842,42176,'blocks_2_split_5050_image','40615'),(286843,42176,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(286844,42176,'blocks_2_split_5050_video',''),(286845,42176,'_blocks_2_split_5050_video','field_6239f3160848a'),(286846,42176,'blocks_2_split_5050_content_title',''),(286847,42176,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(286848,42176,'blocks_2_split_5050_content_heading','Overview'),(286849,42176,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(286850,42176,'blocks_2_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(286851,42176,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(286852,42176,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(286853,42176,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(286854,42176,'blocks_2_split_5050_content_actions','1'),(286855,42176,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(286856,42176,'blocks_2_split_5050_content',''),(286857,42176,'_blocks_2_split_5050_content','field_61767afceb8ba'),(286858,42176,'blocks_3_acfe_flexible_toggle',''),(286859,42176,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(286860,42176,'blocks_3_acfe_flexible_layout_title','Video'),(286861,42176,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(286862,42176,'blocks_3_size','large'),(286863,42176,'_blocks_3_size','field_6487038f297c1'),(286864,42176,'blocks_3_row_content_title',''),(286865,42176,'_blocks_3_row_content_title','field_64870132a865d'),(286866,42176,'blocks_3_row_content_heading','Intro to IMoveFreely Instructor workshop'),(286867,42176,'_blocks_3_row_content_heading','field_64870142a865e'),(286868,42176,'blocks_3_row_content_text',''),(286869,42176,'_blocks_3_row_content_text','field_64870148a865f'),(286870,42176,'blocks_3_row_content',''),(286871,42176,'_blocks_3_row_content','field_6487008ba865c'),(286872,42176,'blocks_3_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(286873,42176,'_blocks_3_video_src','field_6193c4a98ec07'),(286874,42176,'blocks_3_video_thumbnail',''),(286875,42176,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(286876,42176,'blocks_4_acfe_flexible_toggle',''),(286877,42176,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(286878,42176,'blocks_4_acfe_flexible_layout_title','Timeline'),(286879,42176,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(286880,42176,'blocks_4_options_theme','#ffffff'),(286881,42176,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(286882,42176,'blocks_4_options',''),(286883,42176,'_blocks_4_options','field_6177de53d1195'),(286884,42176,'blocks_4_timeline_content_title',''),(286885,42176,'_blocks_4_timeline_content_title','field_6177de53d1198'),(286886,42176,'blocks_4_timeline_content_heading','Who is the course suitable for? '),(286887,42176,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(286888,42176,'blocks_4_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(286889,42176,'_blocks_4_timeline_content_text','field_6177de53d119a'),(286890,42176,'blocks_4_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(286891,42176,'_blocks_4_timeline_content_actions_0_button','field_6177de53d119c'),(286892,42176,'blocks_4_timeline_content_actions','1'),(286893,42176,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(286894,42176,'blocks_4_timeline_content',''),(286895,42176,'_blocks_4_timeline_content','field_6177de53d1197'),(286896,42176,'blocks_4_timeline_items_0_title','Benefits'),(286897,42176,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(286898,42176,'blocks_4_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(286899,42176,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(286900,42176,'blocks_4_timeline_items_1_title','Curriculum Highlights'),(286901,42176,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(286902,42176,'blocks_4_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(286903,42176,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(286904,42176,'blocks_4_timeline_items_2_title','What pre-qualifications are required?'),(286905,42176,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(286906,42176,'blocks_4_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(286907,42176,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(286908,42176,'blocks_4_timeline_items','3'),(286909,42176,'_blocks_4_timeline_items','field_6177de53d119d'),(286910,42176,'blocks_5_acfe_flexible_toggle',''),(286911,42176,'_blocks_5_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(286912,42176,'blocks_5_acfe_flexible_layout_title','Promo Panel'),(286913,42176,'_blocks_5_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(286914,42176,'blocks_5_options_alignment','center'),(286915,42176,'_blocks_5_options_alignment','field_61769449f5490'),(286916,42176,'blocks_5_options',''),(286917,42176,'_blocks_5_options','field_617693e1428f0'),(286918,42176,'blocks_5_promo_panel_image','41312'),(286919,42176,'_blocks_5_promo_panel_image','field_617693e1428f3'),(286920,42176,'blocks_5_promo_panel_content_heading','Testimonial'),(286921,42176,'_blocks_5_promo_panel_content_heading','field_617693e1428f6'),(286922,42176,'blocks_5_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!”\r\nJayne Nicholls Director Group X Training Ltd.'),(286923,42176,'_blocks_5_promo_panel_content_text','field_617693e1428f7'),(286924,42176,'blocks_5_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(286925,42176,'_blocks_5_promo_panel_content_actions_0_button','field_617693e1428f9'),(286926,42176,'blocks_5_promo_panel_content_actions','1'),(286927,42176,'_blocks_5_promo_panel_content_actions','field_617693e1428f8'),(286928,42176,'blocks_5_promo_panel_content',''),(286929,42176,'_blocks_5_promo_panel_content','field_617693e1428f4'),(286930,42176,'blocks_6_acfe_flexible_toggle',''),(286931,42176,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(286932,42176,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(286933,42176,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(286934,42176,'blocks_6_options_theme','#b61234'),(286935,42176,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(286936,42176,'blocks_6_options_state','0'),(286937,42176,'_blocks_6_options_state','field_6239fcb7508c5'),(286938,42176,'blocks_6_options',''),(286939,42176,'_blocks_6_options','field_6177e2991ac44'),(286940,42176,'blocks_6_content_title',''),(286941,42176,'_blocks_6_content_title','field_64d237e8bb1e2'),(286942,42176,'blocks_6_content_heading','FAQ\'s'),(286943,42176,'_blocks_6_content_heading','field_64d237e8bb1e3'),(286944,42176,'blocks_6_content_text',''),(286945,42176,'_blocks_6_content_text','field_64d237e8bb1e4'),(286946,42176,'blocks_6_content_actions',''),(286947,42176,'_blocks_6_content_actions','field_64d237e8bb1e5'),(286948,42176,'blocks_6_content_align','left'),(286949,42176,'_blocks_6_content_align','field_64d2443e6b6aa'),(286950,42176,'blocks_6_content',''),(286951,42176,'_blocks_6_content','field_64d237e8bb1e1'),(286952,42176,'blocks_6_accordion_content','faqs'),(286953,42176,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(286954,42176,'blocks_6_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(286955,42176,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(286956,42176,'blocks_6_actions',''),(286957,42176,'_blocks_6_actions','field_61a746a817f7a'),(286959,42178,'hide_hero','0'),(286960,42178,'_hide_hero','field_66a2380fcda39'),(286961,42178,'hero_title','IMoveFreely Instructor Programme Workshop'),(286962,42178,'_hero_title','field_617571fe285e8'),(286963,42178,'hero_text',''),(286964,42178,'_hero_text','field_6175723c285e9'),(286965,42178,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(286966,42178,'_hero_actions_0_button','field_61757281285eb'),(286967,42178,'hero_actions','1'),(286968,42178,'_hero_actions','field_61757270285ea'),(286969,42178,'hero_style','default'),(286970,42178,'_hero_style','field_62051d9dc5324'),(286971,42178,'hero_image_pos_x','right'),(286972,42178,'_hero_image_pos_x','field_62ec3d05390bb'),(286973,42178,'hero_image_pos_y','top'),(286974,42178,'_hero_image_pos_y','field_62ec3d05390bc'),(286975,42178,'hero_image_pos',''),(286976,42178,'_hero_image_pos','field_62ec3d05390ba'),(286977,42178,'fft_hide_from_listings','0'),(286978,42178,'_fft_hide_from_listings','field_61f1320446ab2'),(286979,42178,'fft_page_format','default'),(286980,42178,'_fft_page_format','field_61ae213f1f218'),(286981,42178,'fft_hide_nav','0'),(286982,42178,'_fft_hide_nav','field_635bd5e43527c'),(286983,42178,'fft_hide_header_call_to_action','0'),(286984,42178,'_fft_hide_header_call_to_action','field_635bd6723527d'),(286985,42178,'fft_page_sitemap','0'),(286986,42178,'_fft_page_sitemap','field_61af9b34e8181'),(286987,42178,'blocks_0_acfe_flexible_toggle',''),(286988,42178,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(286989,42178,'blocks_0_acfe_flexible_layout_title','Template'),(286990,42178,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(286991,42178,'blocks_0_template','39087'),(286992,42178,'_blocks_0_template','field_617bdd570fe01'),(286993,42178,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:5:\"video\";i:4;s:13:\"step_timeline\";i:5;s:11:\"promo_panel\";i:6;s:10:\"accordions\";}'),(286994,42178,'_blocks','field_6176696113096'),(286995,42178,'course_label_text','IMoveFreely Instructor programme workshop'),(286996,42178,'_course_label_text','field_61e17babf71fa'),(286997,42178,'course_label',''),(286998,42178,'_course_label','field_61e12f92749a7'),(286999,42178,'course_description','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants.'),(287000,42178,'_course_description','field_617ac5788e5e1'),(287001,42178,'course_key_info','2'),(287002,42178,'_course_key_info','field_617ac6ad8e5e2'),(287003,42178,'course_included','Profound effects on movement issues \r\n\r\nIdeal for injury prevention, rehabilitation, and activity preparation \r\n\r\nEvidence-based techniques for improved performance \r\n\r\nFlexible integration into existing classes '),(287004,42178,'_course_included','field_617ac6f08e5e4'),(287005,42178,'course_label_label_theme','#0d1f73'),(287006,42178,'_course_label_label_theme','field_61e17bb8f71fb'),(287007,42178,'course_key_info_0_text','In-person Workshop'),(287008,42178,'_course_key_info_0_text','field_617ac6c38e5e3'),(287009,42178,'course_key_info_1_text','CPD Course'),(287010,42178,'_course_key_info_1_text','field_617ac6c38e5e3'),(287011,42178,'blocks_1_acfe_flexible_toggle',''),(287012,42178,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(287013,42178,'blocks_1_acfe_flexible_layout_title','Text Block'),(287014,42178,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(287015,42178,'blocks_1_options_theme','#ffffff'),(287016,42178,'_blocks_1_options_theme','field_6176830e2ad17'),(287017,42178,'blocks_1_options',''),(287018,42178,'_blocks_1_options','field_6176830e2ad16'),(287019,42178,'blocks_1_text_block_heading','Join the workshop today and get 65% funded – limited spots available!'),(287020,42178,'_blocks_1_text_block_heading','field_617669d413097'),(287021,42178,'blocks_1_text_block_content',''),(287022,42178,'_blocks_1_text_block_content','field_617669ec13098'),(287023,42178,'blocks_2_acfe_flexible_toggle',''),(287024,42178,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(287025,42178,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(287026,42178,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(287027,42178,'blocks_2_options_theme','#ffffff'),(287028,42178,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(287029,42178,'blocks_2_options_reverse','1'),(287030,42178,'_blocks_2_options_reverse','field_61768049bb8ac'),(287031,42178,'blocks_2_options',''),(287032,42178,'_blocks_2_options','field_617682517c334'),(287033,42178,'blocks_2_split_5050_image','40615'),(287034,42178,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(287035,42178,'blocks_2_split_5050_video',''),(287036,42178,'_blocks_2_split_5050_video','field_6239f3160848a'),(287037,42178,'blocks_2_split_5050_content_title',''),(287038,42178,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(287039,42178,'blocks_2_split_5050_content_heading','Overview'),(287040,42178,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(287041,42178,'blocks_2_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(287042,42178,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(287043,42178,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(287044,42178,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(287045,42178,'blocks_2_split_5050_content_actions','1'),(287046,42178,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(287047,42178,'blocks_2_split_5050_content',''),(287048,42178,'_blocks_2_split_5050_content','field_61767afceb8ba'),(287049,42178,'blocks_3_acfe_flexible_toggle',''),(287050,42178,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(287051,42178,'blocks_3_acfe_flexible_layout_title','Video'),(287052,42178,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(287053,42178,'blocks_3_size','large'),(287054,42178,'_blocks_3_size','field_6487038f297c1'),(287055,42178,'blocks_3_row_content_title',''),(287056,42178,'_blocks_3_row_content_title','field_64870132a865d'),(287057,42178,'blocks_3_row_content_heading','Intro to IMoveFreely Instructor workshop'),(287058,42178,'_blocks_3_row_content_heading','field_64870142a865e'),(287059,42178,'blocks_3_row_content_text',''),(287060,42178,'_blocks_3_row_content_text','field_64870148a865f'),(287061,42178,'blocks_3_row_content',''),(287062,42178,'_blocks_3_row_content','field_6487008ba865c'),(287063,42178,'blocks_3_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(287064,42178,'_blocks_3_video_src','field_6193c4a98ec07'),(287065,42178,'blocks_3_video_thumbnail',''),(287066,42178,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(287067,42178,'blocks_4_acfe_flexible_toggle',''),(287068,42178,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(287069,42178,'blocks_4_acfe_flexible_layout_title','Timeline'),(287070,42178,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(287071,42178,'blocks_4_options_theme','#ffffff'),(287072,42178,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(287073,42178,'blocks_4_options',''),(287074,42178,'_blocks_4_options','field_6177de53d1195'),(287075,42178,'blocks_4_timeline_content_title',''),(287076,42178,'_blocks_4_timeline_content_title','field_6177de53d1198'),(287077,42178,'blocks_4_timeline_content_heading','Who is the course suitable for? '),(287078,42178,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(287079,42178,'blocks_4_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(287080,42178,'_blocks_4_timeline_content_text','field_6177de53d119a'),(287081,42178,'blocks_4_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(287082,42178,'_blocks_4_timeline_content_actions_0_button','field_6177de53d119c'),(287083,42178,'blocks_4_timeline_content_actions','1'),(287084,42178,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(287085,42178,'blocks_4_timeline_content',''),(287086,42178,'_blocks_4_timeline_content','field_6177de53d1197'),(287087,42178,'blocks_4_timeline_items_0_title','Benefits'),(287088,42178,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(287089,42178,'blocks_4_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(287090,42178,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(287091,42178,'blocks_4_timeline_items_1_title','Curriculum Highlights'),(287092,42178,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(287093,42178,'blocks_4_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(287094,42178,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(287095,42178,'blocks_4_timeline_items_2_title','What pre-qualifications are required?'),(287096,42178,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(287097,42178,'blocks_4_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(287098,42178,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(287099,42178,'blocks_4_timeline_items','3'),(287100,42178,'_blocks_4_timeline_items','field_6177de53d119d'),(287101,42178,'blocks_5_acfe_flexible_toggle',''),(287102,42178,'_blocks_5_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(287103,42178,'blocks_5_acfe_flexible_layout_title','Promo Panel'),(287104,42178,'_blocks_5_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(287105,42178,'blocks_5_options_alignment','center'),(287106,42178,'_blocks_5_options_alignment','field_61769449f5490'),(287107,42178,'blocks_5_options',''),(287108,42178,'_blocks_5_options','field_617693e1428f0'),(287109,42178,'blocks_5_promo_panel_image','41312'),(287110,42178,'_blocks_5_promo_panel_image','field_617693e1428f3'),(287111,42178,'blocks_5_promo_panel_content_heading','Testimonial'),(287112,42178,'_blocks_5_promo_panel_content_heading','field_617693e1428f6'),(287113,42178,'blocks_5_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!”\r\nJayne Nicholls Director Group X Training Ltd.'),(287114,42178,'_blocks_5_promo_panel_content_text','field_617693e1428f7'),(287115,42178,'blocks_5_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(287116,42178,'_blocks_5_promo_panel_content_actions_0_button','field_617693e1428f9'),(287117,42178,'blocks_5_promo_panel_content_actions','1'),(287118,42178,'_blocks_5_promo_panel_content_actions','field_617693e1428f8'),(287119,42178,'blocks_5_promo_panel_content',''),(287120,42178,'_blocks_5_promo_panel_content','field_617693e1428f4'),(287121,42178,'blocks_6_acfe_flexible_toggle',''),(287122,42178,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(287123,42178,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(287124,42178,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(287125,42178,'blocks_6_options_theme','#b61234'),(287126,42178,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(287127,42178,'blocks_6_options_state','0'),(287128,42178,'_blocks_6_options_state','field_6239fcb7508c5'),(287129,42178,'blocks_6_options',''),(287130,42178,'_blocks_6_options','field_6177e2991ac44'),(287131,42178,'blocks_6_content_title',''),(287132,42178,'_blocks_6_content_title','field_64d237e8bb1e2'),(287133,42178,'blocks_6_content_heading','FAQ\'s'),(287134,42178,'_blocks_6_content_heading','field_64d237e8bb1e3'),(287135,42178,'blocks_6_content_text',''),(287136,42178,'_blocks_6_content_text','field_64d237e8bb1e4'),(287137,42178,'blocks_6_content_actions',''),(287138,42178,'_blocks_6_content_actions','field_64d237e8bb1e5'),(287139,42178,'blocks_6_content_align','left'),(287140,42178,'_blocks_6_content_align','field_64d2443e6b6aa'),(287141,42178,'blocks_6_content',''),(287142,42178,'_blocks_6_content','field_64d237e8bb1e1'),(287143,42178,'blocks_6_accordion_content','faqs'),(287144,42178,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(287145,42178,'blocks_6_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(287146,42178,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(287147,42178,'blocks_6_actions',''),(287148,42178,'_blocks_6_actions','field_61a746a817f7a'),(287149,42178,'_thumbnail_id',''),(287150,42178,'__thumbnail_id','field_617570855ddaf'),(287151,40779,'_thumbnail_id','2246'),(287152,42179,'hide_hero','0'),(287153,42179,'_hide_hero','field_66a2380fcda39'),(287154,42179,'hero_title','IMoveFreely Instructor Programme Workshop'),(287155,42179,'_hero_title','field_617571fe285e8'),(287156,42179,'hero_text',''),(287157,42179,'_hero_text','field_6175723c285e9'),(287158,42179,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(287159,42179,'_hero_actions_0_button','field_61757281285eb'),(287160,42179,'hero_actions','1'),(287161,42179,'_hero_actions','field_61757270285ea'),(287162,42179,'hero_style','default'),(287163,42179,'_hero_style','field_62051d9dc5324'),(287164,42179,'hero_image_pos_x','right'),(287165,42179,'_hero_image_pos_x','field_62ec3d05390bb'),(287166,42179,'hero_image_pos_y','top'),(287167,42179,'_hero_image_pos_y','field_62ec3d05390bc'),(287168,42179,'hero_image_pos',''),(287169,42179,'_hero_image_pos','field_62ec3d05390ba'),(287170,42179,'fft_hide_from_listings','0'),(287171,42179,'_fft_hide_from_listings','field_61f1320446ab2'),(287172,42179,'fft_page_format','default'),(287173,42179,'_fft_page_format','field_61ae213f1f218'),(287174,42179,'fft_hide_nav','0'),(287175,42179,'_fft_hide_nav','field_635bd5e43527c'),(287176,42179,'fft_hide_header_call_to_action','0'),(287177,42179,'_fft_hide_header_call_to_action','field_635bd6723527d'),(287178,42179,'fft_page_sitemap','0'),(287179,42179,'_fft_page_sitemap','field_61af9b34e8181'),(287180,42179,'blocks_0_acfe_flexible_toggle',''),(287181,42179,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(287182,42179,'blocks_0_acfe_flexible_layout_title','Template'),(287183,42179,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(287184,42179,'blocks_0_template','39087'),(287185,42179,'_blocks_0_template','field_617bdd570fe01'),(287186,42179,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:5:\"video\";i:4;s:13:\"step_timeline\";i:5;s:11:\"promo_panel\";i:6;s:10:\"accordions\";}'),(287187,42179,'_blocks','field_6176696113096'),(287188,42179,'course_label_text','IMoveFreely Instructor programme workshop'),(287189,42179,'_course_label_text','field_61e17babf71fa'),(287190,42179,'course_label',''),(287191,42179,'_course_label','field_61e12f92749a7'),(287192,42179,'course_description','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants.'),(287193,42179,'_course_description','field_617ac5788e5e1'),(287194,42179,'course_key_info','2'),(287195,42179,'_course_key_info','field_617ac6ad8e5e2'),(287196,42179,'course_included','Profound effects on movement issues \r\n\r\nIdeal for injury prevention, rehabilitation, and activity preparation \r\n\r\nEvidence-based techniques for improved performance \r\n\r\nFlexible integration into existing classes '),(287197,42179,'_course_included','field_617ac6f08e5e4'),(287198,42179,'course_label_label_theme','#0d1f73'),(287199,42179,'_course_label_label_theme','field_61e17bb8f71fb'),(287200,42179,'course_key_info_0_text','In-person Workshop'),(287201,42179,'_course_key_info_0_text','field_617ac6c38e5e3'),(287202,42179,'course_key_info_1_text','CPD Course'),(287203,42179,'_course_key_info_1_text','field_617ac6c38e5e3'),(287204,42179,'blocks_1_acfe_flexible_toggle',''),(287205,42179,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(287206,42179,'blocks_1_acfe_flexible_layout_title','Text Block'),(287207,42179,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(287208,42179,'blocks_1_options_theme','#ffffff'),(287209,42179,'_blocks_1_options_theme','field_6176830e2ad17'),(287210,42179,'blocks_1_options',''),(287211,42179,'_blocks_1_options','field_6176830e2ad16'),(287212,42179,'blocks_1_text_block_heading','Join the workshop today and get 65% funded – limited spots available!'),(287213,42179,'_blocks_1_text_block_heading','field_617669d413097'),(287214,42179,'blocks_1_text_block_content',''),(287215,42179,'_blocks_1_text_block_content','field_617669ec13098'),(287216,42179,'blocks_2_acfe_flexible_toggle',''),(287217,42179,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(287218,42179,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(287219,42179,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(287220,42179,'blocks_2_options_theme','#ffffff'),(287221,42179,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(287222,42179,'blocks_2_options_reverse','1'),(287223,42179,'_blocks_2_options_reverse','field_61768049bb8ac'),(287224,42179,'blocks_2_options',''),(287225,42179,'_blocks_2_options','field_617682517c334'),(287226,42179,'blocks_2_split_5050_image','40615'),(287227,42179,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(287228,42179,'blocks_2_split_5050_video',''),(287229,42179,'_blocks_2_split_5050_video','field_6239f3160848a'),(287230,42179,'blocks_2_split_5050_content_title',''),(287231,42179,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(287232,42179,'blocks_2_split_5050_content_heading','Overview'),(287233,42179,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(287234,42179,'blocks_2_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(287235,42179,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(287236,42179,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(287237,42179,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(287238,42179,'blocks_2_split_5050_content_actions','1'),(287239,42179,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(287240,42179,'blocks_2_split_5050_content',''),(287241,42179,'_blocks_2_split_5050_content','field_61767afceb8ba'),(287242,42179,'blocks_3_acfe_flexible_toggle',''),(287243,42179,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(287244,42179,'blocks_3_acfe_flexible_layout_title','Video'),(287245,42179,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(287246,42179,'blocks_3_size','large'),(287247,42179,'_blocks_3_size','field_6487038f297c1'),(287248,42179,'blocks_3_row_content_title',''),(287249,42179,'_blocks_3_row_content_title','field_64870132a865d'),(287250,42179,'blocks_3_row_content_heading','Intro to IMoveFreely Instructor workshop'),(287251,42179,'_blocks_3_row_content_heading','field_64870142a865e'),(287252,42179,'blocks_3_row_content_text',''),(287253,42179,'_blocks_3_row_content_text','field_64870148a865f'),(287254,42179,'blocks_3_row_content',''),(287255,42179,'_blocks_3_row_content','field_6487008ba865c'),(287256,42179,'blocks_3_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(287257,42179,'_blocks_3_video_src','field_6193c4a98ec07'),(287258,42179,'blocks_3_video_thumbnail',''),(287259,42179,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(287260,42179,'blocks_4_acfe_flexible_toggle',''),(287261,42179,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(287262,42179,'blocks_4_acfe_flexible_layout_title','Timeline'),(287263,42179,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(287264,42179,'blocks_4_options_theme','#ffffff'),(287265,42179,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(287266,42179,'blocks_4_options',''),(287267,42179,'_blocks_4_options','field_6177de53d1195'),(287268,42179,'blocks_4_timeline_content_title',''),(287269,42179,'_blocks_4_timeline_content_title','field_6177de53d1198'),(287270,42179,'blocks_4_timeline_content_heading','Who is the course suitable for? '),(287271,42179,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(287272,42179,'blocks_4_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(287273,42179,'_blocks_4_timeline_content_text','field_6177de53d119a'),(287274,42179,'blocks_4_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(287275,42179,'_blocks_4_timeline_content_actions_0_button','field_6177de53d119c'),(287276,42179,'blocks_4_timeline_content_actions','1'),(287277,42179,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(287278,42179,'blocks_4_timeline_content',''),(287279,42179,'_blocks_4_timeline_content','field_6177de53d1197'),(287280,42179,'blocks_4_timeline_items_0_title','Benefits'),(287281,42179,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(287282,42179,'blocks_4_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(287283,42179,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(287284,42179,'blocks_4_timeline_items_1_title','Curriculum Highlights'),(287285,42179,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(287286,42179,'blocks_4_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(287287,42179,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(287288,42179,'blocks_4_timeline_items_2_title','What pre-qualifications are required?'),(287289,42179,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(287290,42179,'blocks_4_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(287291,42179,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(287292,42179,'blocks_4_timeline_items','3'),(287293,42179,'_blocks_4_timeline_items','field_6177de53d119d'),(287294,42179,'blocks_5_acfe_flexible_toggle',''),(287295,42179,'_blocks_5_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(287296,42179,'blocks_5_acfe_flexible_layout_title','Promo Panel'),(287297,42179,'_blocks_5_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(287298,42179,'blocks_5_options_alignment','center'),(287299,42179,'_blocks_5_options_alignment','field_61769449f5490'),(287300,42179,'blocks_5_options',''),(287301,42179,'_blocks_5_options','field_617693e1428f0'),(287302,42179,'blocks_5_promo_panel_image','41312'),(287303,42179,'_blocks_5_promo_panel_image','field_617693e1428f3'),(287304,42179,'blocks_5_promo_panel_content_heading','Testimonial'),(287305,42179,'_blocks_5_promo_panel_content_heading','field_617693e1428f6'),(287306,42179,'blocks_5_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!”\r\nJayne Nicholls Director Group X Training Ltd.'),(287307,42179,'_blocks_5_promo_panel_content_text','field_617693e1428f7'),(287308,42179,'blocks_5_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(287309,42179,'_blocks_5_promo_panel_content_actions_0_button','field_617693e1428f9'),(287310,42179,'blocks_5_promo_panel_content_actions','1'),(287311,42179,'_blocks_5_promo_panel_content_actions','field_617693e1428f8'),(287312,42179,'blocks_5_promo_panel_content',''),(287313,42179,'_blocks_5_promo_panel_content','field_617693e1428f4'),(287314,42179,'blocks_6_acfe_flexible_toggle',''),(287315,42179,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(287316,42179,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(287317,42179,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(287318,42179,'blocks_6_options_theme','#b61234'),(287319,42179,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(287320,42179,'blocks_6_options_state','0'),(287321,42179,'_blocks_6_options_state','field_6239fcb7508c5'),(287322,42179,'blocks_6_options',''),(287323,42179,'_blocks_6_options','field_6177e2991ac44'),(287324,42179,'blocks_6_content_title',''),(287325,42179,'_blocks_6_content_title','field_64d237e8bb1e2'),(287326,42179,'blocks_6_content_heading','FAQ\'s'),(287327,42179,'_blocks_6_content_heading','field_64d237e8bb1e3'),(287328,42179,'blocks_6_content_text',''),(287329,42179,'_blocks_6_content_text','field_64d237e8bb1e4'),(287330,42179,'blocks_6_content_actions',''),(287331,42179,'_blocks_6_content_actions','field_64d237e8bb1e5'),(287332,42179,'blocks_6_content_align','left'),(287333,42179,'_blocks_6_content_align','field_64d2443e6b6aa'),(287334,42179,'blocks_6_content',''),(287335,42179,'_blocks_6_content','field_64d237e8bb1e1'),(287336,42179,'blocks_6_accordion_content','faqs'),(287337,42179,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(287338,42179,'blocks_6_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(287339,42179,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(287340,42179,'blocks_6_actions',''),(287341,42179,'_blocks_6_actions','field_61a746a817f7a'),(287342,42179,'_thumbnail_id','2246'),(287343,42179,'__thumbnail_id','field_617570855ddaf'),(287344,42236,'hide_hero','0'),(287345,42236,'_hide_hero','field_66a2380fcda39'),(287346,42236,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(287347,42236,'_hero_title','field_617571fe285e8'),(287348,42236,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(287349,42236,'_hero_text','field_6175723c285e9'),(287350,42236,'hero_actions','1'),(287351,42236,'_hero_actions','field_61757270285ea'),(287352,42236,'hero_style','default'),(287353,42236,'_hero_style','field_62051d9dc5324'),(287354,42236,'_thumbnail_id','40848'),(287355,42236,'__thumbnail_id','field_617570855ddaf'),(287356,42236,'hero_image_pos_x','right'),(287357,42236,'_hero_image_pos_x','field_62ec3d05390bb'),(287358,42236,'hero_image_pos_y','top'),(287359,42236,'_hero_image_pos_y','field_62ec3d05390bc'),(287360,42236,'hero_image_pos',''),(287361,42236,'_hero_image_pos','field_62ec3d05390ba'),(287362,42236,'fft_hide_from_listings','0'),(287363,42236,'_fft_hide_from_listings','field_61f1320446ab2'),(287364,42236,'fft_page_format','default'),(287365,42236,'_fft_page_format','field_61ae213f1f218'),(287366,42236,'fft_hide_nav','0'),(287367,42236,'_fft_hide_nav','field_635bd5e43527c'),(287368,42236,'fft_hide_header_call_to_action','0'),(287369,42236,'_fft_hide_header_call_to_action','field_635bd6723527d'),(287370,42236,'fft_page_sitemap','0'),(287371,42236,'_fft_page_sitemap','field_61af9b34e8181'),(287372,42236,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(287373,42236,'_blocks','field_6176696113096'),(287374,42236,'course_label_text',''),(287375,42236,'_course_label_text','field_61e17babf71fa'),(287376,42236,'course_label',''),(287377,42236,'_course_label','field_61e12f92749a7'),(287378,42236,'course_description',''),(287379,42236,'_course_description','field_617ac5788e5e1'),(287380,42236,'course_key_info',''),(287381,42236,'_course_key_info','field_617ac6ad8e5e2'),(287382,42236,'course_included',''),(287383,42236,'_course_included','field_617ac6f08e5e4'),(287384,42236,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(287385,42236,'_hero_actions_0_button','field_61757281285eb'),(287386,42236,'blocks_0_acfe_flexible_toggle',''),(287387,42236,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(287388,42236,'blocks_0_acfe_flexible_layout_title','Icons'),(287389,42236,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(287390,42236,'blocks_0_options_theme','#b61234'),(287391,42236,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(287392,42236,'blocks_0_options_format','row'),(287393,42236,'_blocks_0_options_format','field_64bfde9a90690'),(287394,42236,'blocks_0_options',''),(287395,42236,'_blocks_0_options','field_64bfdd9b90684'),(287396,42236,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(287397,42236,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(287398,42236,'blocks_0_icon_row_items_0_label','Accreditation'),(287399,42236,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(287400,42236,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(287401,42236,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(287402,42236,'blocks_0_icon_row_items_1_icon','finance.svg'),(287403,42236,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(287404,42236,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(287405,42236,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(287406,42236,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(287407,42236,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(287408,42236,'blocks_0_icon_row_items_2_icon','progression.svg'),(287409,42236,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(287410,42236,'blocks_0_icon_row_items_2_label','Earning Potential'),(287411,42236,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(287412,42236,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(287413,42236,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(287414,42236,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(287415,42236,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(287416,42236,'blocks_0_icon_row_items_3_label','Qualification'),(287417,42236,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(287418,42236,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(287419,42236,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(287420,42236,'blocks_0_icon_row_items','4'),(287421,42236,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(287422,42236,'blocks_5_acfe_flexible_toggle','1'),(287423,42236,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(287424,42236,'blocks_5_acfe_flexible_layout_title','Tabs'),(287425,42236,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(287426,42236,'blocks_5_options_theme','#ffffff'),(287427,42236,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(287428,42236,'blocks_5_options',''),(287429,42236,'_blocks_5_options','field_6177cfcd8140f'),(287430,42236,'blocks_5_tabs_0_tab_label','Entry requirements'),(287431,42236,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(287432,42236,'blocks_5_tabs_0_tab_content_title',''),(287433,42236,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(287434,42236,'blocks_5_tabs_0_tab_content_heading',''),(287435,42236,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(287436,42236,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(287437,42236,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(287438,42236,'blocks_5_tabs_0_tab_content_actions',''),(287439,42236,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(287440,42236,'blocks_5_tabs_0_tab_content',''),(287441,42236,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(287442,42236,'blocks_5_tabs_0_tab_image',''),(287443,42236,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(287444,42236,'blocks_5_tabs_1_tab_label','Learning format'),(287445,42236,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(287446,42236,'blocks_5_tabs_1_tab_content_title',''),(287447,42236,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(287448,42236,'blocks_5_tabs_1_tab_content_heading',''),(287449,42236,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(287450,42236,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(287451,42236,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(287452,42236,'blocks_5_tabs_1_tab_content_actions',''),(287453,42236,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(287454,42236,'blocks_5_tabs_1_tab_content',''),(287455,42236,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(287456,42236,'blocks_5_tabs_1_tab_image',''),(287457,42236,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(287458,42236,'blocks_5_tabs_2_tab_label','Qualifications included'),(287459,42236,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(287460,42236,'blocks_5_tabs_2_tab_content_title',''),(287461,42236,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(287462,42236,'blocks_5_tabs_2_tab_content_heading',''),(287463,42236,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(287464,42236,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(287465,42236,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(287466,42236,'blocks_5_tabs_2_tab_content_actions',''),(287467,42236,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(287468,42236,'blocks_5_tabs_2_tab_content',''),(287469,42236,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(287470,42236,'blocks_5_tabs_2_tab_image',''),(287471,42236,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(287472,42236,'blocks_5_tabs','3'),(287473,42236,'_blocks_5_tabs','field_6177cff281419'),(287474,42236,'blocks_4_acfe_flexible_toggle',''),(287475,42236,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(287476,42236,'blocks_4_acfe_flexible_layout_title','Template'),(287477,42236,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(287478,42236,'blocks_4_template','39207'),(287479,42236,'_blocks_4_template','field_617bdd570fe01'),(287480,42236,'blocks_6_acfe_flexible_toggle',''),(287481,42236,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(287482,42236,'blocks_6_acfe_flexible_layout_title','Icons'),(287483,42236,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(287484,42236,'blocks_6_options_theme','#f5f5f5'),(287485,42236,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(287486,42236,'blocks_6_options_format','stacked'),(287487,42236,'_blocks_6_options_format','field_64bfde9a90690'),(287488,42236,'blocks_6_options',''),(287489,42236,'_blocks_6_options','field_64bfdd9b90684'),(287490,42236,'blocks_6_row_content_title','Options available to pay for your course'),(287491,42236,'_blocks_6_row_content_title','field_64bfdd9b90687'),(287492,42236,'blocks_6_row_content_heading','Fees & Funding Options '),(287493,42236,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(287494,42236,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(287495,42236,'_blocks_6_row_content_text','field_64bfdd9b90689'),(287496,42236,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(287497,42236,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(287498,42236,'blocks_6_row_content_actions','1'),(287499,42236,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(287500,42236,'blocks_6_row_content',''),(287501,42236,'_blocks_6_row_content','field_64bfdd9b90686'),(287502,42236,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(287503,42236,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(287504,42236,'blocks_6_icon_row_items_0_label','Pay in full'),(287505,42236,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(287506,42236,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(287507,42236,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(287508,42236,'blocks_6_icon_row_items_1_icon','finance.svg'),(287509,42236,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(287510,42236,'blocks_6_icon_row_items_1_label','0% finance'),(287511,42236,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(287512,42236,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(287513,42236,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(287514,42236,'blocks_6_icon_row_items','3'),(287515,42236,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(287516,42236,'blocks_7_acfe_flexible_toggle',''),(287517,42236,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(287518,42236,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(287519,42236,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(287520,42236,'blocks_7_options_theme','#ffffff'),(287521,42236,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(287522,42236,'blocks_7_options_reverse','0'),(287523,42236,'_blocks_7_options_reverse','field_61768049bb8ac'),(287524,42236,'blocks_7_options',''),(287525,42236,'_blocks_7_options','field_617682517c334'),(287526,42236,'blocks_7_split_5050_image','40817'),(287527,42236,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(287528,42236,'blocks_7_split_5050_video',''),(287529,42236,'_blocks_7_split_5050_video','field_6239f3160848a'),(287530,42236,'blocks_7_split_5050_content_title',''),(287531,42236,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(287532,42236,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(287533,42236,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(287534,42236,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(287535,42236,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(287536,42236,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(287537,42236,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(287538,42236,'blocks_7_split_5050_content_actions','1'),(287539,42236,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(287540,42236,'blocks_7_split_5050_content',''),(287541,42236,'_blocks_7_split_5050_content','field_61767afceb8ba'),(287542,42236,'blocks_8_acfe_flexible_toggle',''),(287543,42236,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(287544,42236,'blocks_8_acfe_flexible_layout_title','Icons'),(287545,42236,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(287546,42236,'blocks_8_options_theme','#f5f5f5'),(287547,42236,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(287548,42236,'blocks_8_options_format','row'),(287549,42236,'_blocks_8_options_format','field_64bfde9a90690'),(287550,42236,'blocks_8_options',''),(287551,42236,'_blocks_8_options','field_64bfdd9b90684'),(287552,42236,'blocks_8_icon_row_items_0_icon','qualification.svg'),(287553,42236,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(287554,42236,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(287555,42236,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(287556,42236,'blocks_8_icon_row_items_0_text',''),(287557,42236,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(287558,42236,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(287559,42236,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(287560,42236,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(287561,42236,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(287562,42236,'blocks_8_icon_row_items_1_text',''),(287563,42236,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(287564,42236,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(287565,42236,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(287566,42236,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(287567,42236,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(287568,42236,'blocks_8_icon_row_items_2_text',''),(287569,42236,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(287570,42236,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(287571,42236,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(287572,42236,'blocks_8_icon_row_items_3_label','Flexible funding options'),(287573,42236,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(287574,42236,'blocks_8_icon_row_items_3_text',''),(287575,42236,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(287576,42236,'blocks_8_icon_row_items','4'),(287577,42236,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(287578,42236,'blocks_9_acfe_flexible_toggle',''),(287579,42236,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(287580,42236,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(287581,42236,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(287582,42236,'blocks_9_options_theme','#ffffff'),(287583,42236,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(287584,42236,'blocks_9_options_reverse','1'),(287585,42236,'_blocks_9_options_reverse','field_61768049bb8ac'),(287586,42236,'blocks_9_options',''),(287587,42236,'_blocks_9_options','field_617682517c334'),(287588,42236,'blocks_9_split_5050_image','39224'),(287589,42236,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(287590,42236,'blocks_9_split_5050_video',''),(287591,42236,'_blocks_9_split_5050_video','field_6239f3160848a'),(287592,42236,'blocks_9_split_5050_content_title','Locations'),(287593,42236,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(287594,42236,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(287595,42236,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(287596,42236,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in five locations:\r\n<ul>\r\n 	<li>Nottingham</li>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(287597,42236,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(287598,42236,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(287599,42236,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(287600,42236,'blocks_9_split_5050_content_actions','1'),(287601,42236,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(287602,42236,'blocks_9_split_5050_content',''),(287603,42236,'_blocks_9_split_5050_content','field_61767afceb8ba'),(287604,42236,'blocks_1_acfe_flexible_toggle',''),(287605,42236,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(287606,42236,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(287607,42236,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(287608,42236,'blocks_1_options_theme','#ffffff'),(287609,42236,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(287610,42236,'blocks_1_options_reverse','0'),(287611,42236,'_blocks_1_options_reverse','field_61768049bb8ac'),(287612,42236,'blocks_1_options',''),(287613,42236,'_blocks_1_options','field_617682517c334'),(287614,42236,'blocks_1_split_5050_image','40785'),(287615,42236,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(287616,42236,'blocks_1_split_5050_video',''),(287617,42236,'_blocks_1_split_5050_video','field_6239f3160848a'),(287618,42236,'blocks_1_split_5050_content_title',''),(287619,42236,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(287620,42236,'blocks_1_split_5050_content_heading','Course Overview'),(287621,42236,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(287622,42236,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases a 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(287623,42236,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(287624,42236,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(287625,42236,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(287626,42236,'blocks_1_split_5050_content_actions','1'),(287627,42236,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(287628,42236,'blocks_1_split_5050_content',''),(287629,42236,'_blocks_1_split_5050_content','field_61767afceb8ba'),(287630,42236,'blocks_2_acfe_flexible_toggle',''),(287631,42236,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(287632,42236,'blocks_2_acfe_flexible_layout_title','Form'),(287633,42236,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(287634,42236,'blocks_2_row_content_format','standard'),(287635,42236,'_blocks_2_row_content_format','field_6481ead962881'),(287636,42236,'blocks_2_row_content_title',''),(287637,42236,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(287638,42236,'blocks_2_row_content_heading','Enquire Today'),(287639,42236,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(287640,42236,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(287641,42236,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(287642,42236,'blocks_2_row_content_actions',''),(287643,42236,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(287644,42236,'blocks_2_row_content',''),(287645,42236,'_blocks_2_row_content','field_61a0f5f5b3db0'),(287646,42236,'blocks_2_row_form','40394'),(287647,42236,'_blocks_2_row_form','field_61a4ff2c0b08e'),(287648,42236,'blocks_2_row_form_button_label',''),(287649,42236,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(287650,42236,'blocks_3_acfe_flexible_toggle',''),(287651,42236,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(287652,42236,'blocks_3_acfe_flexible_layout_title','Video'),(287653,42236,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(287654,42236,'blocks_3_size','large'),(287655,42236,'_blocks_3_size','field_6487038f297c1'),(287656,42236,'blocks_3_row_content_title',''),(287657,42236,'_blocks_3_row_content_title','field_64870132a865d'),(287658,42236,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(287659,42236,'_blocks_3_row_content_heading','field_64870142a865e'),(287660,42236,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(287661,42236,'_blocks_3_row_content_text','field_64870148a865f'),(287662,42236,'blocks_3_row_content',''),(287663,42236,'_blocks_3_row_content','field_6487008ba865c'),(287664,42236,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(287665,42236,'_blocks_3_video_src','field_6193c4a98ec07'),(287666,42236,'blocks_3_video_thumbnail',''),(287667,42236,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(287668,42236,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(287669,42236,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(287670,42236,'blocks_6_icon_row_items_2_label','Deposit & balance'),(287671,42236,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(287672,42236,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(287673,42236,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(287674,42236,'blocks_10_acfe_flexible_toggle','1'),(287675,42236,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(287676,42236,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(287677,42236,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(287678,42236,'blocks_10_options_theme','#ffffff'),(287679,42236,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(287680,42236,'blocks_10_options',''),(287681,42236,'_blocks_10_options','field_617ac0b7f6c08'),(287682,42236,'blocks_10_show','selection'),(287683,42236,'_blocks_10_show','field_61a49cba9d946'),(287684,42236,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(287685,42236,'_blocks_10_courses','field_61b244781ee0a'),(287686,42236,'blocks_10_open_whats_included','1'),(287687,42236,'_blocks_10_open_whats_included','field_66ebfd679450c'),(287688,42236,'blocks_10_open_key_information','0'),(287689,42236,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(287690,42236,'blocks_10_open',''),(287691,42236,'_blocks_10_open','field_66ebfd009450b'),(287692,42236,'blocks_11_acfe_flexible_toggle',''),(287693,42236,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(287694,42236,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(287695,42236,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(287696,42236,'blocks_11_options_theme','#ffffff'),(287697,42236,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(287698,42236,'blocks_11_options_reverse','0'),(287699,42236,'_blocks_11_options_reverse','field_61768049bb8ac'),(287700,42236,'blocks_11_options',''),(287701,42236,'_blocks_11_options','field_617682517c334'),(287702,42236,'blocks_11_split_5050_image','40812'),(287703,42236,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(287704,42236,'blocks_11_split_5050_video',''),(287705,42236,'_blocks_11_split_5050_video','field_6239f3160848a'),(287706,42236,'blocks_11_split_5050_content_title','Optimise Performance '),(287707,42236,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(287708,42236,'blocks_11_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(287709,42236,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(287710,42236,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(287711,42236,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(287712,42236,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(287713,42236,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(287714,42236,'blocks_11_split_5050_content_actions','1'),(287715,42236,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(287716,42236,'blocks_11_split_5050_content',''),(287717,42236,'_blocks_11_split_5050_content','field_61767afceb8ba'),(287718,42236,'blocks_12_acfe_flexible_toggle',''),(287719,42236,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(287720,42236,'blocks_12_acfe_flexible_layout_title','Template'),(287721,42236,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(287722,42236,'blocks_12_template','40987'),(287723,42236,'_blocks_12_template','field_617bdd570fe01'),(287724,42236,'blocks_13_acfe_flexible_toggle',''),(287725,42236,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(287726,42236,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(287727,42236,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(287728,42236,'blocks_13_options_theme','#f5f5f5'),(287729,42236,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(287730,42236,'blocks_13_options_state','0'),(287731,42236,'_blocks_13_options_state','field_6239fcb7508c5'),(287732,42236,'blocks_13_options',''),(287733,42236,'_blocks_13_options','field_6177e2991ac44'),(287734,42236,'blocks_13_content_title',''),(287735,42236,'_blocks_13_content_title','field_64d237e8bb1e2'),(287736,42236,'blocks_13_content_heading','FAQ\'s'),(287737,42236,'_blocks_13_content_heading','field_64d237e8bb1e3'),(287738,42236,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(287739,42236,'_blocks_13_content_text','field_64d237e8bb1e4'),(287740,42236,'blocks_13_content_actions',''),(287741,42236,'_blocks_13_content_actions','field_64d237e8bb1e5'),(287742,42236,'blocks_13_content_align','left'),(287743,42236,'_blocks_13_content_align','field_64d2443e6b6aa'),(287744,42236,'blocks_13_content',''),(287745,42236,'_blocks_13_content','field_64d237e8bb1e1'),(287746,42236,'blocks_13_accordion_content','faqs'),(287747,42236,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(287748,42236,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(287749,42236,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(287750,42236,'blocks_13_actions',''),(287751,42236,'_blocks_13_actions','field_61a746a817f7a'),(287752,42237,'hide_hero','0'),(287753,42237,'_hide_hero','field_66a2380fcda39'),(287754,42237,'hero_title','IMoveFreely Instructor Workshop – Online learning'),(287755,42237,'_hero_title','field_617571fe285e8'),(287756,42237,'hero_text','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(287757,42237,'_hero_text','field_6175723c285e9'),(287758,42237,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(287759,42237,'_hero_actions_0_button','field_61757281285eb'),(287760,42237,'hero_actions','1'),(287761,42237,'_hero_actions','field_61757270285ea'),(287762,42237,'hero_style','default'),(287763,42237,'_hero_style','field_62051d9dc5324'),(287764,42237,'_thumbnail_id','40615'),(287765,42237,'__thumbnail_id','field_617570855ddaf'),(287766,42237,'hero_image_pos_x','right'),(287767,42237,'_hero_image_pos_x','field_62ec3d05390bb'),(287768,42237,'hero_image_pos_y','top'),(287769,42237,'_hero_image_pos_y','field_62ec3d05390bc'),(287770,42237,'hero_image_pos',''),(287771,42237,'_hero_image_pos','field_62ec3d05390ba'),(287772,42237,'fft_hide_from_listings','0'),(287773,42237,'_fft_hide_from_listings','field_61f1320446ab2'),(287774,42237,'fft_page_format','default'),(287775,42237,'_fft_page_format','field_61ae213f1f218'),(287776,42237,'fft_hide_nav','0'),(287777,42237,'_fft_hide_nav','field_635bd5e43527c'),(287778,42237,'fft_hide_header_call_to_action','0'),(287779,42237,'_fft_hide_header_call_to_action','field_635bd6723527d'),(287780,42237,'fft_page_sitemap','0'),(287781,42237,'_fft_page_sitemap','field_61af9b34e8181'),(287782,42237,'blocks_0_acfe_flexible_toggle',''),(287783,42237,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(287784,42237,'blocks_0_acfe_flexible_layout_title','Text Block'),(287785,42237,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(287786,42237,'blocks_0_options_theme','#f5f5f5'),(287787,42237,'_blocks_0_options_theme','field_6176830e2ad17'),(287788,42237,'blocks_0_options',''),(287789,42237,'_blocks_0_options','field_6176830e2ad16'),(287790,42237,'blocks_0_text_block_heading','Overview'),(287791,42237,'_blocks_0_text_block_heading','field_617669d413097'),(287792,42237,'blocks_0_text_block_content','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.\r\n\r\nDiscover evidence-based techniques that can be truly transformative, providing answers to the complexities of human movement. This workshop is not just another pain relief or medical treatment program; it\'s a pathway to \"Improvement in Movement.\" Incorporate these techniques into your existing classes or establish your own iMoveFreely® clinic online, and witness results that make you stand out in the competitive online teaching landscape.'),(287793,42237,'_blocks_0_text_block_content','field_617669ec13098'),(287794,42237,'blocks_1_acfe_flexible_toggle',''),(287795,42237,'_blocks_1_acfe_flexible_toggle','field_layout_61782954ee964_toggle'),(287796,42237,'blocks_1_acfe_flexible_layout_title','Logos'),(287797,42237,'_blocks_1_acfe_flexible_layout_title','field_layout_61782954ee964_title'),(287798,42237,'blocks_1_options_theme','#ffffff'),(287799,42237,'_blocks_1_options_theme','field_61782954ee966_field_6176830e2ad17'),(287800,42237,'blocks_1_options_format','grid'),(287801,42237,'_blocks_1_options_format','field_61782964ee971'),(287802,42237,'blocks_1_options',''),(287803,42237,'_blocks_1_options','field_61782954ee965'),(287804,42237,'blocks_1_logos','a:2:{i:0;s:5:\"25358\";i:1;s:3:\"341\";}'),(287805,42237,'_blocks_1_logos','field_61782954ee96d'),(287806,42237,'blocks_1_title',''),(287807,42237,'_blocks_1_title','field_668fbfdc2daa1'),(287808,42237,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:5:\"logos\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";i:5;s:18:\"testimonial_slider\";i:6;s:10:\"accordions\";}'),(287809,42237,'_blocks','field_6176696113096'),(287810,42237,'course_label_text','iMoveFreely Online CPD'),(287811,42237,'_course_label_text','field_61e17babf71fa'),(287812,42237,'course_label',''),(287813,42237,'_course_label','field_61e12f92749a7'),(287814,42237,'course_description','Elevate Your Online Teaching with iMoveFreely® Instructor Workshop '),(287815,42237,'_course_description','field_617ac5788e5e1'),(287816,42237,'course_key_info','3'),(287817,42237,'_course_key_info','field_617ac6ad8e5e2'),(287818,42237,'course_included','Unlock the potential of your virtual classes with the iMoveFreely® Instructor Online Workshop, featuring 3.5 hours of recorded classroom sessions and comprehensive handouts. Whether you teach online regularly or are seeking fresh ideas, this revolutionary workshop is designed for instructors with participants of varying levels, abilities, and physical challenges.'),(287819,42237,'_course_included','field_617ac6f08e5e4'),(287820,42237,'blocks_2_acfe_flexible_toggle',''),(287821,42237,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(287822,42237,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(287823,42237,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(287824,42237,'blocks_2_options_theme','#b61234'),(287825,42237,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(287826,42237,'blocks_2_options_reverse','0'),(287827,42237,'_blocks_2_options_reverse','field_61768049bb8ac'),(287828,42237,'blocks_2_options',''),(287829,42237,'_blocks_2_options','field_617682517c334'),(287830,42237,'blocks_2_split_5050_image','40618'),(287831,42237,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(287832,42237,'blocks_2_split_5050_video',''),(287833,42237,'_blocks_2_split_5050_video','field_6239f3160848a'),(287834,42237,'blocks_2_split_5050_content_title',''),(287835,42237,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(287836,42237,'blocks_2_split_5050_content_heading','Course Overview'),(287837,42237,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(287838,42237,'blocks_2_split_5050_content_text','iMoveFreely® comprises a series of low-grade exercises, meticulously developed into a systematic approach that promotes freedom of movement, enhanced posture, and improved performance. While it may address low-grade aches and niggles, it is crucial to clarify that iMoveFreely® is not a pain relief or medical treatment program.\r\n\r\nThe programme focuses on muscle release through muscle energy techniques (MET), nerve mobilisations, lumbar vertebrae gliding, joint mobility exercises, and conditioning work. These elements are seamlessly integrated to serve as a warm-up or foundation for more intense classes, aiding in injury prevention and enhancing overall performance.\r\n\r\nParticipants have reported profound effects, such as being pain-free for the first time in months, improved mobility, and a sense of rejuvenation. Join the ranks of satisfied instructors who have integrated iMoveFreely® into their teaching methodologies.\r\n\r\nInstructors through Continuing Professional Development (CPD). To obtain your iMoveFreely Instructor certificate, face-to-face attendance is required.\r\n\r\nUpon payment, access the recorded workshop and instantly download the comprehensive handout PDF. For future access, simply log in using your registered email.'),(287839,42237,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(287840,42237,'blocks_2_split_5050_content_actions','1'),(287841,42237,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(287842,42237,'blocks_2_split_5050_content',''),(287843,42237,'_blocks_2_split_5050_content','field_61767afceb8ba'),(287844,42237,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(287845,42237,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(287846,42237,'blocks_3_acfe_flexible_toggle',''),(287847,42237,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(287848,42237,'blocks_3_acfe_flexible_layout_title','Text Block'),(287849,42237,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(287850,42237,'blocks_3_options_theme','#ffffff'),(287851,42237,'_blocks_3_options_theme','field_6176830e2ad17'),(287852,42237,'blocks_3_options',''),(287853,42237,'_blocks_3_options','field_6176830e2ad16'),(287854,42237,'blocks_3_text_block_heading','Other Courses'),(287855,42237,'_blocks_3_text_block_heading','field_617669d413097'),(287856,42237,'blocks_3_text_block_content','Check out a range of other courses that are frequently purchased'),(287857,42237,'_blocks_3_text_block_content','field_617669ec13098'),(287858,42237,'blocks_4_acfe_flexible_toggle',''),(287859,42237,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(287860,42237,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(287861,42237,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(287862,42237,'blocks_4_options_theme','#ffffff'),(287863,42237,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(287864,42237,'blocks_4_options',''),(287865,42237,'_blocks_4_options','field_617ac0b7f6c08'),(287866,42237,'blocks_4_show','category'),(287867,42237,'_blocks_4_show','field_61a49cba9d946'),(287868,42237,'blocks_4_category','403'),(287869,42237,'_blocks_4_category','field_61a49cd79d947'),(287870,42237,'blocks_5_acfe_flexible_toggle',''),(287871,42237,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(287872,42237,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(287873,42237,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(287874,42237,'blocks_5_testimonial_slider_content_title',''),(287875,42237,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(287876,42237,'blocks_5_testimonial_slider_content_heading','Testimonials'),(287877,42237,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(287878,42237,'blocks_5_testimonial_slider_content_text',''),(287879,42237,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(287880,42237,'blocks_5_testimonial_slider_content_actions',''),(287881,42237,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(287882,42237,'blocks_5_testimonial_slider_content',''),(287883,42237,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(287884,42237,'blocks_5_testimonial_slider_items',''),(287885,42237,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(287886,42237,'blocks_5_testimonial_slider_ambassador_bool','0'),(287887,42237,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(287888,42237,'blocks_6_acfe_flexible_toggle',''),(287889,42237,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(287890,42237,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(287891,42237,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(287892,42237,'blocks_6_options_theme','#ffffff'),(287893,42237,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(287894,42237,'blocks_6_options_state','0'),(287895,42237,'_blocks_6_options_state','field_6239fcb7508c5'),(287896,42237,'blocks_6_options',''),(287897,42237,'_blocks_6_options','field_6177e2991ac44'),(287898,42237,'blocks_6_content_title',''),(287899,42237,'_blocks_6_content_title','field_64d237e8bb1e2'),(287900,42237,'blocks_6_content_heading',''),(287901,42237,'_blocks_6_content_heading','field_64d237e8bb1e3'),(287902,42237,'blocks_6_content_text',''),(287903,42237,'_blocks_6_content_text','field_64d237e8bb1e4'),(287904,42237,'blocks_6_content_actions',''),(287905,42237,'_blocks_6_content_actions','field_64d237e8bb1e5'),(287906,42237,'blocks_6_content_align','left'),(287907,42237,'_blocks_6_content_align','field_64d2443e6b6aa'),(287908,42237,'blocks_6_content',''),(287909,42237,'_blocks_6_content','field_64d237e8bb1e1'),(287910,42237,'blocks_6_accordion_content','custom'),(287911,42237,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(287912,42237,'blocks_6_accordion_items',''),(287913,42237,'_blocks_6_accordion_items','field_6177e2991ac4c'),(287914,42237,'blocks_6_actions',''),(287915,42237,'_blocks_6_actions','field_61a746a817f7a'),(287916,42237,'course_label_label_theme','#0d1f73'),(287917,42237,'_course_label_label_theme','field_61e17bb8f71fb'),(287918,42237,'course_key_info_0_text','Online Learning'),(287919,42237,'_course_key_info_0_text','field_617ac6c38e5e3'),(287920,42237,'blocks_4_open_whats_included','1'),(287921,42237,'_blocks_4_open_whats_included','field_66ebfd679450c'),(287922,42237,'blocks_4_open_key_information','0'),(287923,42237,'_blocks_4_open_key_information','field_66ebfd7f9450d'),(287924,42237,'blocks_4_open',''),(287925,42237,'_blocks_4_open','field_66ebfd009450b'),(287926,42237,'course_key_info_1_text','CPD'),(287927,42237,'_course_key_info_1_text','field_617ac6c38e5e3'),(287928,42237,'course_key_info_2_text','No Entry Requirements'),(287929,42237,'_course_key_info_2_text','field_617ac6c38e5e3'),(287930,40841,'_thumbnail_id',''),(287931,40841,'_yoast_wpseo_inclusive_language_score','90'),(287932,39585,'_thumbnail_id',''),(287933,39585,'_yoast_wpseo_inclusive_language_score','90'),(287934,40816,'_thumbnail_id',''),(287935,40816,'_yoast_wpseo_inclusive_language_score','90'),(287937,39168,'_yoast_wpseo_inclusive_language_score','90'),(287939,38964,'_yoast_wpseo_inclusive_language_score','90'),(287941,38965,'_yoast_wpseo_inclusive_language_score','90'),(287942,39168,'_thumbnail_id',''),(287943,38965,'_thumbnail_id',''),(287944,38964,'_thumbnail_id',''),(287945,40845,'_thumbnail_id',''),(287946,40845,'_yoast_wpseo_inclusive_language_score','90'),(288163,7,'_yoast_wpseo_inclusive_language_score','90'),(288165,7,'blocks_6_acfe_flexible_toggle',''),(288166,7,'_blocks_6_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(288167,7,'blocks_6_acfe_flexible_layout_title','Video'),(288168,7,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(288169,7,'blocks_6_size','large'),(288170,7,'_blocks_6_size','field_6487038f297c1'),(288171,7,'blocks_6_row_content_title',''),(288172,7,'_blocks_6_row_content_title','field_64870132a865d'),(288173,7,'blocks_6_row_content_heading','Hear from our Learners'),(288174,7,'_blocks_6_row_content_heading','field_64870142a865e'),(288175,7,'blocks_6_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(288176,7,'_blocks_6_row_content_text','field_64870148a865f'),(288177,7,'blocks_6_row_content',''),(288178,7,'_blocks_6_row_content','field_6487008ba865c'),(288179,7,'blocks_6_video_src','https://www.youtube.com/watch?v=CAwcWfVzc1c'),(288180,7,'_blocks_6_video_src','field_6193c4a98ec07'),(288181,7,'blocks_6_video_thumbnail',''),(288182,7,'_blocks_6_video_thumbnail','field_6193c4a08ec06'),(288183,7,'blocks_7_acfe_flexible_toggle',''),(288184,7,'_blocks_7_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(288185,7,'blocks_7_acfe_flexible_layout_title','Quote'),(288186,7,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(288187,7,'blocks_7_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(288188,7,'_blocks_7_quote_content','field_6177cdacdd67a'),(288189,7,'blocks_7_quote_author','Sharon Clare, Body Coach Fitness'),(288190,7,'_blocks_7_quote_author','field_6177cdc6dd67b'),(288191,7,'blocks_8_acfe_flexible_toggle',''),(288192,7,'_blocks_8_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(288193,7,'blocks_8_acfe_flexible_layout_title','Template'),(288194,7,'_blocks_8_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(288195,7,'blocks_8_template','39207'),(288196,7,'_blocks_8_template','field_617bdd570fe01'),(288197,42241,'hero_style','default'),(288198,42241,'_hero_style','field_62051d9dc5324'),(288199,42241,'hero_image_pos_x','right'),(288200,42241,'_hero_image_pos_x','field_62ec3d05390bb'),(288201,42241,'hero_image_pos_y','top'),(288202,42241,'_hero_image_pos_y','field_62ec3d05390bc'),(288203,42241,'hero_image_pos',''),(288204,42241,'_hero_image_pos','field_62ec3d05390ba'),(288205,42241,'hero_title','Biomechanics Education'),(288206,42241,'_hero_title','field_617571fe285e8'),(288207,42241,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(288208,42241,'_hero_text','field_6175723c285e9'),(288209,42241,'hero_actions','1'),(288210,42241,'_hero_actions','field_61757270285ea'),(288211,42241,'hero_icon',''),(288212,42241,'_hero_icon','field_61a6182199d03'),(288213,42241,'fft_hide_from_listings','0'),(288214,42241,'_fft_hide_from_listings','field_61f1320446ab2'),(288215,42241,'fft_page_format','default'),(288216,42241,'_fft_page_format','field_61ae213f1f218'),(288217,42241,'fft_hide_nav','0'),(288218,42241,'_fft_hide_nav','field_635bd5e43527c'),(288219,42241,'fft_hide_header_call_to_action','0'),(288220,42241,'_fft_hide_header_call_to_action','field_635bd6723527d'),(288221,42241,'fft_page_sitemap','0'),(288222,42241,'_fft_page_sitemap','field_61af9b34e8181'),(288223,42241,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:5:\"video\";i:7;s:5:\"quote\";i:8;s:8:\"template\";}'),(288224,42241,'_blocks','field_6176696113096'),(288225,42241,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(288226,42241,'_hero_actions_0_button','field_61757281285eb'),(288227,42241,'_thumbnail_id','38951'),(288228,42241,'__thumbnail_id','field_617570855ddaf'),(288229,42241,'hide_hero','0'),(288230,42241,'_hide_hero','field_66a2380fcda39'),(288231,42241,'blocks_3_acfe_flexible_toggle',''),(288232,42241,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(288233,42241,'blocks_3_acfe_flexible_layout_title','Text Block'),(288234,42241,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(288235,42241,'blocks_3_options_theme','#ffffff'),(288236,42241,'_blocks_3_options_theme','field_6176830e2ad17'),(288237,42241,'blocks_3_options',''),(288238,42241,'_blocks_3_options','field_6176830e2ad16'),(288239,42241,'blocks_3_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines '),(288240,42241,'_blocks_3_text_block_heading','field_617669d413097'),(288241,42241,'blocks_3_text_block_content',''),(288242,42241,'_blocks_3_text_block_content','field_617669ec13098'),(288243,42241,'blocks_4_acfe_flexible_toggle',''),(288244,42241,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(288245,42241,'blocks_4_acfe_flexible_layout_title','Cards'),(288246,42241,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(288247,42241,'blocks_4_options_theme','#ffffff'),(288248,42241,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(288249,42241,'blocks_4_options_format','carousel'),(288250,42241,'_blocks_4_options_format','field_617a7b15245b5'),(288251,42241,'blocks_4_options_style','default'),(288252,42241,'_blocks_4_options_style','field_6278ffb63484a'),(288253,42241,'blocks_4_options_cards_current_listing','0'),(288254,42241,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(288255,42241,'blocks_4_options_cards_content','custom'),(288256,42241,'_blocks_4_options_cards_content','field_617aba6122688'),(288257,42241,'blocks_4_options',''),(288258,42241,'_blocks_4_options','field_617a7b15245b3'),(288259,42241,'blocks_4_cards_custom_0_image','39215'),(288260,42241,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(288261,42241,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(288262,42241,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(288263,42241,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(288264,42241,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(288265,42241,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(288266,42241,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(288267,42241,'blocks_4_cards_custom_1_image','39243'),(288268,42241,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(288269,42241,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(288270,42241,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(288271,42241,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(288272,42241,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(288273,42241,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(288274,42241,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(288275,42241,'blocks_4_cards_custom_2_image','39247'),(288276,42241,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(288277,42241,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(288278,42241,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(288279,42241,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(288280,42241,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(288281,42241,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(288282,42241,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(288283,42241,'blocks_4_cards_custom_3_image','39256'),(288284,42241,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(288285,42241,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(288286,42241,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(288287,42241,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(288288,42241,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(288289,42241,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(288290,42241,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(288291,42241,'blocks_4_cards_custom_4_image','39251'),(288292,42241,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(288293,42241,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(288294,42241,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(288295,42241,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(288296,42241,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(288297,42241,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(288298,42241,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(288299,42241,'blocks_4_cards_custom_5_image','39240'),(288300,42241,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(288301,42241,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(288302,42241,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(288303,42241,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(288304,42241,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(288305,42241,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(288306,42241,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(288307,42241,'blocks_4_cards_custom_6_image','39454'),(288308,42241,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(288309,42241,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(288310,42241,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(288311,42241,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(288312,42241,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(288313,42241,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(288314,42241,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(288315,42241,'blocks_4_cards_custom','7'),(288316,42241,'_blocks_4_cards_custom','field_6194cbf84d386'),(288317,42241,'blocks_5_acfe_flexible_toggle',''),(288318,42241,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(288319,42241,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(288320,42241,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(288321,42241,'blocks_5_options_theme','#f5f5f5'),(288322,42241,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(288323,42241,'blocks_5_options_reverse','1'),(288324,42241,'_blocks_5_options_reverse','field_61768049bb8ac'),(288325,42241,'blocks_5_options',''),(288326,42241,'_blocks_5_options','field_617682517c334'),(288327,42241,'blocks_5_split_5050_image','38960'),(288328,42241,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(288329,42241,'blocks_5_split_5050_video',''),(288330,42241,'_blocks_5_split_5050_video','field_6239f3160848a'),(288331,42241,'blocks_5_split_5050_content_title',''),(288332,42241,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(288333,42241,'blocks_5_split_5050_content_heading','Biomechanics Education & Future Fit'),(288334,42241,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(288335,42241,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(288336,42241,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(288337,42241,'blocks_5_split_5050_content_actions','1'),(288338,42241,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(288339,42241,'blocks_5_split_5050_content',''),(288340,42241,'_blocks_5_split_5050_content','field_61767afceb8ba'),(288341,42241,'blocks_1_acfe_flexible_toggle',''),(288342,42241,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(288343,42241,'blocks_1_acfe_flexible_layout_title','Video'),(288344,42241,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(288345,42241,'blocks_1_size','large'),(288346,42241,'_blocks_1_size','field_6487038f297c1'),(288347,42241,'blocks_1_row_content_title',''),(288348,42241,'_blocks_1_row_content_title','field_64870132a865d'),(288349,42241,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(288350,42241,'_blocks_1_row_content_heading','field_64870142a865e'),(288351,42241,'blocks_1_row_content_text',''),(288352,42241,'_blocks_1_row_content_text','field_64870148a865f'),(288353,42241,'blocks_1_row_content',''),(288354,42241,'_blocks_1_row_content','field_6487008ba865c'),(288355,42241,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(288356,42241,'_blocks_1_video_src','field_6193c4a98ec07'),(288357,42241,'blocks_1_video_thumbnail','39175'),(288358,42241,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(288359,42241,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(288360,42241,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(288361,42241,'blocks_0_acfe_flexible_toggle',''),(288362,42241,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(288363,42241,'blocks_0_acfe_flexible_layout_title','Template'),(288364,42241,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(288365,42241,'blocks_0_template','39087'),(288366,42241,'_blocks_0_template','field_617bdd570fe01'),(288367,42241,'blocks_2_acfe_flexible_toggle',''),(288368,42241,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(288369,42241,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(288370,42241,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(288371,42241,'blocks_2_options_theme','#b61234'),(288372,42241,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(288373,42241,'blocks_2_options_reverse','0'),(288374,42241,'_blocks_2_options_reverse','field_61768049bb8ac'),(288375,42241,'blocks_2_options',''),(288376,42241,'_blocks_2_options','field_617682517c334'),(288377,42241,'blocks_2_split_5050_image',''),(288378,42241,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(288379,42241,'blocks_2_split_5050_video','https://www.youtube.com/watch?v=x_yYzgAqcbY'),(288380,42241,'_blocks_2_split_5050_video','field_6239f3160848a'),(288381,42241,'blocks_2_split_5050_content_title',''),(288382,42241,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(288383,42241,'blocks_2_split_5050_content_heading','What is Biomechanics Education?'),(288384,42241,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(288385,42241,'blocks_2_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(288386,42241,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(288387,42241,'blocks_2_split_5050_content_actions',''),(288388,42241,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(288389,42241,'blocks_2_split_5050_content',''),(288390,42241,'_blocks_2_split_5050_content','field_61767afceb8ba'),(288391,42241,'blocks_6_acfe_flexible_toggle',''),(288392,42241,'_blocks_6_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(288393,42241,'blocks_6_acfe_flexible_layout_title','Video'),(288394,42241,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(288395,42241,'blocks_6_size','large'),(288396,42241,'_blocks_6_size','field_6487038f297c1'),(288397,42241,'blocks_6_row_content_title','Hear from our Learners'),(288398,42241,'_blocks_6_row_content_title','field_64870132a865d'),(288399,42241,'blocks_6_row_content_heading',''),(288400,42241,'_blocks_6_row_content_heading','field_64870142a865e'),(288401,42241,'blocks_6_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(288402,42241,'_blocks_6_row_content_text','field_64870148a865f'),(288403,42241,'blocks_6_row_content',''),(288404,42241,'_blocks_6_row_content','field_6487008ba865c'),(288405,42241,'blocks_6_video_src','https://www.youtube.com/watch?v=CAwcWfVzc1c'),(288406,42241,'_blocks_6_video_src','field_6193c4a98ec07'),(288407,42241,'blocks_6_video_thumbnail',''),(288408,42241,'_blocks_6_video_thumbnail','field_6193c4a08ec06'),(288409,42241,'blocks_7_acfe_flexible_toggle',''),(288410,42241,'_blocks_7_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(288411,42241,'blocks_7_acfe_flexible_layout_title','Quote'),(288412,42241,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(288413,42241,'blocks_7_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(288414,42241,'_blocks_7_quote_content','field_6177cdacdd67a'),(288415,42241,'blocks_7_quote_author','Sharon Clare, Body Coach Fitness'),(288416,42241,'_blocks_7_quote_author','field_6177cdc6dd67b'),(288417,42241,'blocks_8_acfe_flexible_toggle',''),(288418,42241,'_blocks_8_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(288419,42241,'blocks_8_acfe_flexible_layout_title','Template'),(288420,42241,'_blocks_8_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(288421,42241,'blocks_8_template','39207'),(288422,42241,'_blocks_8_template','field_617bdd570fe01'),(288423,42242,'hero_style','default'),(288424,42242,'_hero_style','field_62051d9dc5324'),(288425,42242,'hero_image_pos_x','right'),(288426,42242,'_hero_image_pos_x','field_62ec3d05390bb'),(288427,42242,'hero_image_pos_y','top'),(288428,42242,'_hero_image_pos_y','field_62ec3d05390bc'),(288429,42242,'hero_image_pos',''),(288430,42242,'_hero_image_pos','field_62ec3d05390ba'),(288431,42242,'hero_title','Biomechanics Education'),(288432,42242,'_hero_title','field_617571fe285e8'),(288433,42242,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(288434,42242,'_hero_text','field_6175723c285e9'),(288435,42242,'hero_actions','1'),(288436,42242,'_hero_actions','field_61757270285ea'),(288437,42242,'hero_icon',''),(288438,42242,'_hero_icon','field_61a6182199d03'),(288439,42242,'fft_hide_from_listings','0'),(288440,42242,'_fft_hide_from_listings','field_61f1320446ab2'),(288441,42242,'fft_page_format','default'),(288442,42242,'_fft_page_format','field_61ae213f1f218'),(288443,42242,'fft_hide_nav','0'),(288444,42242,'_fft_hide_nav','field_635bd5e43527c'),(288445,42242,'fft_hide_header_call_to_action','0'),(288446,42242,'_fft_hide_header_call_to_action','field_635bd6723527d'),(288447,42242,'fft_page_sitemap','0'),(288448,42242,'_fft_page_sitemap','field_61af9b34e8181'),(288449,42242,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:5:\"video\";i:7;s:5:\"quote\";i:8;s:8:\"template\";}'),(288450,42242,'_blocks','field_6176696113096'),(288451,42242,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:8:\"#row-7-5\";s:6:\"target\";s:0:\"\";}'),(288452,42242,'_hero_actions_0_button','field_61757281285eb'),(288453,42242,'_thumbnail_id','38951'),(288454,42242,'__thumbnail_id','field_617570855ddaf'),(288455,42242,'hide_hero','0'),(288456,42242,'_hide_hero','field_66a2380fcda39'),(288457,42242,'blocks_3_acfe_flexible_toggle',''),(288458,42242,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(288459,42242,'blocks_3_acfe_flexible_layout_title','Text Block'),(288460,42242,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(288461,42242,'blocks_3_options_theme','#ffffff'),(288462,42242,'_blocks_3_options_theme','field_6176830e2ad17'),(288463,42242,'blocks_3_options',''),(288464,42242,'_blocks_3_options','field_6176830e2ad16'),(288465,42242,'blocks_3_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines '),(288466,42242,'_blocks_3_text_block_heading','field_617669d413097'),(288467,42242,'blocks_3_text_block_content',''),(288468,42242,'_blocks_3_text_block_content','field_617669ec13098'),(288469,42242,'blocks_4_acfe_flexible_toggle',''),(288470,42242,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(288471,42242,'blocks_4_acfe_flexible_layout_title','Cards'),(288472,42242,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(288473,42242,'blocks_4_options_theme','#ffffff'),(288474,42242,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(288475,42242,'blocks_4_options_format','carousel'),(288476,42242,'_blocks_4_options_format','field_617a7b15245b5'),(288477,42242,'blocks_4_options_style','default'),(288478,42242,'_blocks_4_options_style','field_6278ffb63484a'),(288479,42242,'blocks_4_options_cards_current_listing','0'),(288480,42242,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(288481,42242,'blocks_4_options_cards_content','custom'),(288482,42242,'_blocks_4_options_cards_content','field_617aba6122688'),(288483,42242,'blocks_4_options',''),(288484,42242,'_blocks_4_options','field_617a7b15245b3'),(288485,42242,'blocks_4_cards_custom_0_image','39215'),(288486,42242,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(288487,42242,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(288488,42242,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(288489,42242,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(288490,42242,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(288491,42242,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(288492,42242,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(288493,42242,'blocks_4_cards_custom_1_image','39243'),(288494,42242,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(288495,42242,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(288496,42242,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(288497,42242,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(288498,42242,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(288499,42242,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(288500,42242,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(288501,42242,'blocks_4_cards_custom_2_image','39247'),(288502,42242,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(288503,42242,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(288504,42242,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(288505,42242,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(288506,42242,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(288507,42242,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(288508,42242,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(288509,42242,'blocks_4_cards_custom_3_image','39256'),(288510,42242,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(288511,42242,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(288512,42242,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(288513,42242,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(288514,42242,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(288515,42242,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(288516,42242,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(288517,42242,'blocks_4_cards_custom_4_image','39251'),(288518,42242,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(288519,42242,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(288520,42242,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(288521,42242,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(288522,42242,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(288523,42242,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(288524,42242,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(288525,42242,'blocks_4_cards_custom_5_image','39240'),(288526,42242,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(288527,42242,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(288528,42242,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(288529,42242,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(288530,42242,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(288531,42242,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(288532,42242,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(288533,42242,'blocks_4_cards_custom_6_image','39454'),(288534,42242,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(288535,42242,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(288536,42242,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(288537,42242,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(288538,42242,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(288539,42242,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(288540,42242,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(288541,42242,'blocks_4_cards_custom','7'),(288542,42242,'_blocks_4_cards_custom','field_6194cbf84d386'),(288543,42242,'blocks_5_acfe_flexible_toggle',''),(288544,42242,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(288545,42242,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(288546,42242,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(288547,42242,'blocks_5_options_theme','#f5f5f5'),(288548,42242,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(288549,42242,'blocks_5_options_reverse','1'),(288550,42242,'_blocks_5_options_reverse','field_61768049bb8ac'),(288551,42242,'blocks_5_options',''),(288552,42242,'_blocks_5_options','field_617682517c334'),(288553,42242,'blocks_5_split_5050_image','38960'),(288554,42242,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(288555,42242,'blocks_5_split_5050_video',''),(288556,42242,'_blocks_5_split_5050_video','field_6239f3160848a'),(288557,42242,'blocks_5_split_5050_content_title',''),(288558,42242,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(288559,42242,'blocks_5_split_5050_content_heading','Biomechanics Education & Future Fit'),(288560,42242,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(288561,42242,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(288562,42242,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(288563,42242,'blocks_5_split_5050_content_actions','1'),(288564,42242,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(288565,42242,'blocks_5_split_5050_content',''),(288566,42242,'_blocks_5_split_5050_content','field_61767afceb8ba'),(288567,42242,'blocks_1_acfe_flexible_toggle',''),(288568,42242,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(288569,42242,'blocks_1_acfe_flexible_layout_title','Video'),(288570,42242,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(288571,42242,'blocks_1_size','large'),(288572,42242,'_blocks_1_size','field_6487038f297c1'),(288573,42242,'blocks_1_row_content_title',''),(288574,42242,'_blocks_1_row_content_title','field_64870132a865d'),(288575,42242,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(288576,42242,'_blocks_1_row_content_heading','field_64870142a865e'),(288577,42242,'blocks_1_row_content_text',''),(288578,42242,'_blocks_1_row_content_text','field_64870148a865f'),(288579,42242,'blocks_1_row_content',''),(288580,42242,'_blocks_1_row_content','field_6487008ba865c'),(288581,42242,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(288582,42242,'_blocks_1_video_src','field_6193c4a98ec07'),(288583,42242,'blocks_1_video_thumbnail','39175'),(288584,42242,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(288585,42242,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(288586,42242,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(288587,42242,'blocks_0_acfe_flexible_toggle',''),(288588,42242,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(288589,42242,'blocks_0_acfe_flexible_layout_title','Template'),(288590,42242,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(288591,42242,'blocks_0_template','39087'),(288592,42242,'_blocks_0_template','field_617bdd570fe01'),(288593,42242,'blocks_2_acfe_flexible_toggle',''),(288594,42242,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(288595,42242,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(288596,42242,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(288597,42242,'blocks_2_options_theme','#b61234'),(288598,42242,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(288599,42242,'blocks_2_options_reverse','0'),(288600,42242,'_blocks_2_options_reverse','field_61768049bb8ac'),(288601,42242,'blocks_2_options',''),(288602,42242,'_blocks_2_options','field_617682517c334'),(288603,42242,'blocks_2_split_5050_image',''),(288604,42242,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(288605,42242,'blocks_2_split_5050_video','https://www.youtube.com/watch?v=x_yYzgAqcbY'),(288606,42242,'_blocks_2_split_5050_video','field_6239f3160848a'),(288607,42242,'blocks_2_split_5050_content_title',''),(288608,42242,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(288609,42242,'blocks_2_split_5050_content_heading','What is Biomechanics Education?'),(288610,42242,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(288611,42242,'blocks_2_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(288612,42242,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(288613,42242,'blocks_2_split_5050_content_actions',''),(288614,42242,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(288615,42242,'blocks_2_split_5050_content',''),(288616,42242,'_blocks_2_split_5050_content','field_61767afceb8ba'),(288617,42242,'blocks_6_acfe_flexible_toggle',''),(288618,42242,'_blocks_6_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(288619,42242,'blocks_6_acfe_flexible_layout_title','Video'),(288620,42242,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(288621,42242,'blocks_6_size','large'),(288622,42242,'_blocks_6_size','field_6487038f297c1'),(288623,42242,'blocks_6_row_content_title',''),(288624,42242,'_blocks_6_row_content_title','field_64870132a865d'),(288625,42242,'blocks_6_row_content_heading','Hear from our Learners'),(288626,42242,'_blocks_6_row_content_heading','field_64870142a865e'),(288627,42242,'blocks_6_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(288628,42242,'_blocks_6_row_content_text','field_64870148a865f'),(288629,42242,'blocks_6_row_content',''),(288630,42242,'_blocks_6_row_content','field_6487008ba865c'),(288631,42242,'blocks_6_video_src','https://www.youtube.com/watch?v=CAwcWfVzc1c'),(288632,42242,'_blocks_6_video_src','field_6193c4a98ec07'),(288633,42242,'blocks_6_video_thumbnail',''),(288634,42242,'_blocks_6_video_thumbnail','field_6193c4a08ec06'),(288635,42242,'blocks_7_acfe_flexible_toggle',''),(288636,42242,'_blocks_7_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(288637,42242,'blocks_7_acfe_flexible_layout_title','Quote'),(288638,42242,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(288639,42242,'blocks_7_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(288640,42242,'_blocks_7_quote_content','field_6177cdacdd67a'),(288641,42242,'blocks_7_quote_author','Sharon Clare, Body Coach Fitness'),(288642,42242,'_blocks_7_quote_author','field_6177cdc6dd67b'),(288643,42242,'blocks_8_acfe_flexible_toggle',''),(288644,42242,'_blocks_8_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(288645,42242,'blocks_8_acfe_flexible_layout_title','Template'),(288646,42242,'_blocks_8_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(288647,42242,'blocks_8_template','39207'),(288648,42242,'_blocks_8_template','field_617bdd570fe01'),(288649,42245,'_edit_lock','1739291332:17'),(288650,42245,'_edit_last','17'),(288651,42245,'venue_region','454'),(288652,42245,'_venue_region','field_62ea283e4cc28'),(288653,42245,'venue_address_company_address_1','16 Manor Road South'),(288654,42245,'_venue_address_company_address_1','field_62e24deabfef9'),(288655,42245,'venue_address_company_address_2',''),(288656,42245,'_venue_address_company_address_2','field_62e24deabfefa'),(288657,42245,'venue_address_company_address_street',''),(288658,42245,'_venue_address_company_address_street','field_62e24deabfefb'),(288659,42245,'venue_address_company_address_locality','Esher'),(288660,42245,'_venue_address_company_address_locality','field_62e24deabfefc'),(288661,42245,'venue_address_company_address_region','Surrey'),(288662,42245,'_venue_address_company_address_region','field_62e24deabfefd'),(288663,42245,'venue_address_company_address_postcode','KT10 0QL'),(288664,42245,'_venue_address_company_address_postcode','field_62e24deabfefe'),(288665,42245,'venue_address',''),(288666,42245,'_venue_address','field_62e24de9bfef8'),(288667,42245,'venue_location','a:14:{s:7:\"address\";s:30:\"16 Manor Road South, Esher, UK\";s:3:\"lat\";d:51.3728743;s:3:\"lng\";d:-0.3402056000000001;s:4:\"zoom\";i:9;s:8:\"place_id\";s:27:\"ChIJwY6lB-4KdkgRDh5BfrYV__g\";s:4:\"name\";s:13:\"16 Manor Rd S\";s:13:\"street_number\";s:2:\"16\";s:11:\"street_name\";s:16:\"Manor Road South\";s:17:\"street_name_short\";s:10:\"Manor Rd S\";s:4:\"city\";s:5:\"Esher\";s:5:\"state\";s:7:\"England\";s:9:\"post_code\";s:8:\"KT10 0QL\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(288668,42245,'_venue_location','field_62e24e36a82f4'),(288669,42245,'venue_tel','07970 925 235'),(288670,42245,'_venue_tel','field_62e26ee1005e5'),(288671,42245,'venue_is_popup','0'),(288672,42245,'_venue_is_popup','field_63c66ffc50d7e'),(288673,42346,'hide_hero','0'),(288674,42346,'_hide_hero','field_66a2380fcda39'),(288675,42346,'hero_title','iMoveFreely Instructor Programme Workshop'),(288676,42346,'_hero_title','field_617571fe285e8'),(288677,42346,'hero_text',''),(288678,42346,'_hero_text','field_6175723c285e9'),(288679,42346,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(288680,42346,'_hero_actions_0_button','field_61757281285eb'),(288681,42346,'hero_actions','1'),(288682,42346,'_hero_actions','field_61757270285ea'),(288683,42346,'hero_style','default'),(288684,42346,'_hero_style','field_62051d9dc5324'),(288685,42346,'_thumbnail_id','2246'),(288686,42346,'__thumbnail_id','field_617570855ddaf'),(288687,42346,'hero_image_pos_x','right'),(288688,42346,'_hero_image_pos_x','field_62ec3d05390bb'),(288689,42346,'hero_image_pos_y','top'),(288690,42346,'_hero_image_pos_y','field_62ec3d05390bc'),(288691,42346,'hero_image_pos',''),(288692,42346,'_hero_image_pos','field_62ec3d05390ba'),(288693,42346,'fft_hide_from_listings','0'),(288694,42346,'_fft_hide_from_listings','field_61f1320446ab2'),(288695,42346,'fft_page_format','default'),(288696,42346,'_fft_page_format','field_61ae213f1f218'),(288697,42346,'fft_hide_nav','0'),(288698,42346,'_fft_hide_nav','field_635bd5e43527c'),(288699,42346,'fft_hide_header_call_to_action','0'),(288700,42346,'_fft_hide_header_call_to_action','field_635bd6723527d'),(288701,42346,'fft_page_sitemap','0'),(288702,42346,'_fft_page_sitemap','field_61af9b34e8181'),(288703,42346,'blocks_0_acfe_flexible_toggle',''),(288704,42346,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(288705,42346,'blocks_0_acfe_flexible_layout_title','Template'),(288706,42346,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(288707,42346,'blocks_0_template','39087'),(288708,42346,'_blocks_0_template','field_617bdd570fe01'),(288709,42346,'blocks_1_acfe_flexible_toggle',''),(288710,42346,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(288711,42346,'blocks_1_acfe_flexible_layout_title','Text Block'),(288712,42346,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(288713,42346,'blocks_1_options_theme','#ffffff'),(288714,42346,'_blocks_1_options_theme','field_6176830e2ad17'),(288715,42346,'blocks_1_options',''),(288716,42346,'_blocks_1_options','field_6176830e2ad16'),(288717,42346,'blocks_1_text_block_heading',''),(288718,42346,'_blocks_1_text_block_heading','field_617669d413097'),(288719,42346,'blocks_1_text_block_content','<h3 style=\"text-align: left;\"><strong><a href=\"http://Join the workshop today and get 65% funded – limited spots available!\">Join the workshop today and get 65% funded – limited spots available!</a></strong></h3>'),(288720,42346,'_blocks_1_text_block_content','field_617669ec13098'),(288721,42346,'blocks_2_acfe_flexible_toggle',''),(288722,42346,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(288723,42346,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(288724,42346,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(288725,42346,'blocks_2_options_theme','#ffffff'),(288726,42346,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(288727,42346,'blocks_2_options_reverse','1'),(288728,42346,'_blocks_2_options_reverse','field_61768049bb8ac'),(288729,42346,'blocks_2_options',''),(288730,42346,'_blocks_2_options','field_617682517c334'),(288731,42346,'blocks_2_split_5050_image','40615'),(288732,42346,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(288733,42346,'blocks_2_split_5050_video',''),(288734,42346,'_blocks_2_split_5050_video','field_6239f3160848a'),(288735,42346,'blocks_2_split_5050_content_title',''),(288736,42346,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(288737,42346,'blocks_2_split_5050_content_heading','Overview'),(288738,42346,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(288739,42346,'blocks_2_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(288740,42346,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(288741,42346,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(288742,42346,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(288743,42346,'blocks_2_split_5050_content_actions','1'),(288744,42346,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(288745,42346,'blocks_2_split_5050_content',''),(288746,42346,'_blocks_2_split_5050_content','field_61767afceb8ba'),(288747,42346,'blocks_3_acfe_flexible_toggle',''),(288748,42346,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(288749,42346,'blocks_3_acfe_flexible_layout_title','Video'),(288750,42346,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(288751,42346,'blocks_3_size','large'),(288752,42346,'_blocks_3_size','field_6487038f297c1'),(288753,42346,'blocks_3_row_content_title',''),(288754,42346,'_blocks_3_row_content_title','field_64870132a865d'),(288755,42346,'blocks_3_row_content_heading','Intro to IMoveFreely Instructor workshop'),(288756,42346,'_blocks_3_row_content_heading','field_64870142a865e'),(288757,42346,'blocks_3_row_content_text',''),(288758,42346,'_blocks_3_row_content_text','field_64870148a865f'),(288759,42346,'blocks_3_row_content',''),(288760,42346,'_blocks_3_row_content','field_6487008ba865c'),(288761,42346,'blocks_3_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(288762,42346,'_blocks_3_video_src','field_6193c4a98ec07'),(288763,42346,'blocks_3_video_thumbnail',''),(288764,42346,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(288765,42346,'blocks_4_acfe_flexible_toggle',''),(288766,42346,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(288767,42346,'blocks_4_acfe_flexible_layout_title','Timeline'),(288768,42346,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(288769,42346,'blocks_4_options_theme','#ffffff'),(288770,42346,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(288771,42346,'blocks_4_options',''),(288772,42346,'_blocks_4_options','field_6177de53d1195'),(288773,42346,'blocks_4_timeline_content_title',''),(288774,42346,'_blocks_4_timeline_content_title','field_6177de53d1198'),(288775,42346,'blocks_4_timeline_content_heading','Who is the course suitable for? '),(288776,42346,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(288777,42346,'blocks_4_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(288778,42346,'_blocks_4_timeline_content_text','field_6177de53d119a'),(288779,42346,'blocks_4_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(288780,42346,'_blocks_4_timeline_content_actions_0_button','field_6177de53d119c'),(288781,42346,'blocks_4_timeline_content_actions','1'),(288782,42346,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(288783,42346,'blocks_4_timeline_content',''),(288784,42346,'_blocks_4_timeline_content','field_6177de53d1197'),(288785,42346,'blocks_4_timeline_items_0_title','Benefits'),(288786,42346,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(288787,42346,'blocks_4_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(288788,42346,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(288789,42346,'blocks_4_timeline_items_1_title','Curriculum Highlights'),(288790,42346,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(288791,42346,'blocks_4_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(288792,42346,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(288793,42346,'blocks_4_timeline_items_2_title','What pre-qualifications are required?'),(288794,42346,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(288795,42346,'blocks_4_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(288796,42346,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(288797,42346,'blocks_4_timeline_items','3'),(288798,42346,'_blocks_4_timeline_items','field_6177de53d119d'),(288799,42346,'blocks_5_acfe_flexible_toggle',''),(288800,42346,'_blocks_5_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(288801,42346,'blocks_5_acfe_flexible_layout_title','Promo Panel'),(288802,42346,'_blocks_5_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(288803,42346,'blocks_5_options_alignment','center'),(288804,42346,'_blocks_5_options_alignment','field_61769449f5490'),(288805,42346,'blocks_5_options',''),(288806,42346,'_blocks_5_options','field_617693e1428f0'),(288807,42346,'blocks_5_promo_panel_image','41312'),(288808,42346,'_blocks_5_promo_panel_image','field_617693e1428f3'),(288809,42346,'blocks_5_promo_panel_content_heading','Testimonial'),(288810,42346,'_blocks_5_promo_panel_content_heading','field_617693e1428f6'),(288811,42346,'blocks_5_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!”\r\nJayne Nicholls Director Group X Training Ltd.'),(288812,42346,'_blocks_5_promo_panel_content_text','field_617693e1428f7'),(288813,42346,'blocks_5_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(288814,42346,'_blocks_5_promo_panel_content_actions_0_button','field_617693e1428f9'),(288815,42346,'blocks_5_promo_panel_content_actions','1'),(288816,42346,'_blocks_5_promo_panel_content_actions','field_617693e1428f8'),(288817,42346,'blocks_5_promo_panel_content',''),(288818,42346,'_blocks_5_promo_panel_content','field_617693e1428f4'),(288819,42346,'blocks_6_acfe_flexible_toggle',''),(288820,42346,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(288821,42346,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(288822,42346,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(288823,42346,'blocks_6_options_theme','#b61234'),(288824,42346,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(288825,42346,'blocks_6_options_state','0'),(288826,42346,'_blocks_6_options_state','field_6239fcb7508c5'),(288827,42346,'blocks_6_options',''),(288828,42346,'_blocks_6_options','field_6177e2991ac44'),(288829,42346,'blocks_6_content_title',''),(288830,42346,'_blocks_6_content_title','field_64d237e8bb1e2'),(288831,42346,'blocks_6_content_heading','FAQ\'s'),(288832,42346,'_blocks_6_content_heading','field_64d237e8bb1e3'),(288833,42346,'blocks_6_content_text',''),(288834,42346,'_blocks_6_content_text','field_64d237e8bb1e4'),(288835,42346,'blocks_6_content_actions',''),(288836,42346,'_blocks_6_content_actions','field_64d237e8bb1e5'),(288837,42346,'blocks_6_content_align','left'),(288838,42346,'_blocks_6_content_align','field_64d2443e6b6aa'),(288839,42346,'blocks_6_content',''),(288840,42346,'_blocks_6_content','field_64d237e8bb1e1'),(288841,42346,'blocks_6_accordion_content','faqs'),(288842,42346,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(288843,42346,'blocks_6_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(288844,42346,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(288845,42346,'blocks_6_actions',''),(288846,42346,'_blocks_6_actions','field_61a746a817f7a'),(288847,42346,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:5:\"video\";i:4;s:13:\"step_timeline\";i:5;s:11:\"promo_panel\";i:6;s:10:\"accordions\";}'),(288848,42346,'_blocks','field_6176696113096'),(288849,42346,'course_label_text','IMoveFreely Instructor programme workshop'),(288850,42346,'_course_label_text','field_61e17babf71fa'),(288851,42346,'course_label_label_theme','#0d1f73'),(288852,42346,'_course_label_label_theme','field_61e17bb8f71fb'),(288853,42346,'course_label',''),(288854,42346,'_course_label','field_61e12f92749a7'),(288855,42346,'course_description','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants.'),(288856,42346,'_course_description','field_617ac5788e5e1'),(288857,42346,'course_key_info_0_text','In-person Workshop'),(288858,42346,'_course_key_info_0_text','field_617ac6c38e5e3'),(288859,42346,'course_key_info_1_text','CPD Course'),(288860,42346,'_course_key_info_1_text','field_617ac6c38e5e3'),(288861,42346,'course_key_info','2'),(288862,42346,'_course_key_info','field_617ac6ad8e5e2'),(288863,42346,'course_included','Profound effects on movement issues \r\n\r\nIdeal for injury prevention, rehabilitation, and activity preparation \r\n\r\nEvidence-based techniques for improved performance \r\n\r\nFlexible integration into existing classes '),(288864,42346,'_course_included','field_617ac6f08e5e4'),(288865,42346,'_acf_changed','1'),(288866,42347,'hide_hero','0'),(288867,42347,'_hide_hero','field_66a2380fcda39'),(288868,42347,'hero_title','iMoveFreely Instructor Programme Workshop'),(288869,42347,'_hero_title','field_617571fe285e8'),(288870,42347,'hero_text',''),(288871,42347,'_hero_text','field_6175723c285e9'),(288872,42347,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(288873,42347,'_hero_actions_0_button','field_61757281285eb'),(288874,42347,'hero_actions','1'),(288875,42347,'_hero_actions','field_61757270285ea'),(288876,42347,'hero_style','default'),(288877,42347,'_hero_style','field_62051d9dc5324'),(288878,42347,'hero_image_pos_x','right'),(288879,42347,'_hero_image_pos_x','field_62ec3d05390bb'),(288880,42347,'hero_image_pos_y','top'),(288881,42347,'_hero_image_pos_y','field_62ec3d05390bc'),(288882,42347,'hero_image_pos',''),(288883,42347,'_hero_image_pos','field_62ec3d05390ba'),(288884,42347,'fft_hide_from_listings','0'),(288885,42347,'_fft_hide_from_listings','field_61f1320446ab2'),(288886,42347,'fft_page_format','default'),(288887,42347,'_fft_page_format','field_61ae213f1f218'),(288888,42347,'fft_hide_nav','0'),(288889,42347,'_fft_hide_nav','field_635bd5e43527c'),(288890,42347,'fft_hide_header_call_to_action','0'),(288891,42347,'_fft_hide_header_call_to_action','field_635bd6723527d'),(288892,42347,'fft_page_sitemap','0'),(288893,42347,'_fft_page_sitemap','field_61af9b34e8181'),(288894,42347,'blocks_0_acfe_flexible_toggle',''),(288895,42347,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(288896,42347,'blocks_0_acfe_flexible_layout_title','Template'),(288897,42347,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(288898,42347,'blocks_0_template','39087'),(288899,42347,'_blocks_0_template','field_617bdd570fe01'),(288900,42347,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:5:\"video\";i:4;s:13:\"step_timeline\";i:5;s:11:\"promo_panel\";i:6;s:10:\"accordions\";}'),(288901,42347,'_blocks','field_6176696113096'),(288902,42347,'course_label_text','IMoveFreely Instructor programme workshop'),(288903,42347,'_course_label_text','field_61e17babf71fa'),(288904,42347,'course_label',''),(288905,42347,'_course_label','field_61e12f92749a7'),(288906,42347,'course_description','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants.'),(288907,42347,'_course_description','field_617ac5788e5e1'),(288908,42347,'course_key_info','2'),(288909,42347,'_course_key_info','field_617ac6ad8e5e2'),(288910,42347,'course_included','Profound effects on movement issues \r\n\r\nIdeal for injury prevention, rehabilitation, and activity preparation \r\n\r\nEvidence-based techniques for improved performance \r\n\r\nFlexible integration into existing classes '),(288911,42347,'_course_included','field_617ac6f08e5e4'),(288912,42347,'course_label_label_theme','#0d1f73'),(288913,42347,'_course_label_label_theme','field_61e17bb8f71fb'),(288914,42347,'course_key_info_0_text','In-person Workshop'),(288915,42347,'_course_key_info_0_text','field_617ac6c38e5e3'),(288916,42347,'course_key_info_1_text','CPD Course'),(288917,42347,'_course_key_info_1_text','field_617ac6c38e5e3'),(288918,42347,'blocks_1_acfe_flexible_toggle',''),(288919,42347,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(288920,42347,'blocks_1_acfe_flexible_layout_title','Text Block'),(288921,42347,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(288922,42347,'blocks_1_options_theme','#ffffff'),(288923,42347,'_blocks_1_options_theme','field_6176830e2ad17'),(288924,42347,'blocks_1_options',''),(288925,42347,'_blocks_1_options','field_6176830e2ad16'),(288926,42347,'blocks_1_text_block_heading',''),(288927,42347,'_blocks_1_text_block_heading','field_617669d413097'),(288928,42347,'blocks_1_text_block_content','<h3 style=\"text-align: left;\"><strong><a href=\"http://Join the workshop today and get 65% funded – limited spots available!\">Join the workshop today and get 65% funded – limited spots available!</a></strong></h3>'),(288929,42347,'_blocks_1_text_block_content','field_617669ec13098'),(288930,42347,'blocks_2_acfe_flexible_toggle',''),(288931,42347,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(288932,42347,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(288933,42347,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(288934,42347,'blocks_2_options_theme','#ffffff'),(288935,42347,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(288936,42347,'blocks_2_options_reverse','1'),(288937,42347,'_blocks_2_options_reverse','field_61768049bb8ac'),(288938,42347,'blocks_2_options',''),(288939,42347,'_blocks_2_options','field_617682517c334'),(288940,42347,'blocks_2_split_5050_image','40615'),(288941,42347,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(288942,42347,'blocks_2_split_5050_video',''),(288943,42347,'_blocks_2_split_5050_video','field_6239f3160848a'),(288944,42347,'blocks_2_split_5050_content_title',''),(288945,42347,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(288946,42347,'blocks_2_split_5050_content_heading','Overview'),(288947,42347,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(288948,42347,'blocks_2_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(288949,42347,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(288950,42347,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(288951,42347,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(288952,42347,'blocks_2_split_5050_content_actions','1'),(288953,42347,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(288954,42347,'blocks_2_split_5050_content',''),(288955,42347,'_blocks_2_split_5050_content','field_61767afceb8ba'),(288956,42347,'blocks_3_acfe_flexible_toggle',''),(288957,42347,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(288958,42347,'blocks_3_acfe_flexible_layout_title','Video'),(288959,42347,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(288960,42347,'blocks_3_size','large'),(288961,42347,'_blocks_3_size','field_6487038f297c1'),(288962,42347,'blocks_3_row_content_title',''),(288963,42347,'_blocks_3_row_content_title','field_64870132a865d'),(288964,42347,'blocks_3_row_content_heading','Intro to IMoveFreely Instructor workshop'),(288965,42347,'_blocks_3_row_content_heading','field_64870142a865e'),(288966,42347,'blocks_3_row_content_text',''),(288967,42347,'_blocks_3_row_content_text','field_64870148a865f'),(288968,42347,'blocks_3_row_content',''),(288969,42347,'_blocks_3_row_content','field_6487008ba865c'),(288970,42347,'blocks_3_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(288971,42347,'_blocks_3_video_src','field_6193c4a98ec07'),(288972,42347,'blocks_3_video_thumbnail',''),(288973,42347,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(288974,42347,'blocks_4_acfe_flexible_toggle',''),(288975,42347,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(288976,42347,'blocks_4_acfe_flexible_layout_title','Timeline'),(288977,42347,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(288978,42347,'blocks_4_options_theme','#ffffff'),(288979,42347,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(288980,42347,'blocks_4_options',''),(288981,42347,'_blocks_4_options','field_6177de53d1195'),(288982,42347,'blocks_4_timeline_content_title',''),(288983,42347,'_blocks_4_timeline_content_title','field_6177de53d1198'),(288984,42347,'blocks_4_timeline_content_heading','Who is the course suitable for? '),(288985,42347,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(288986,42347,'blocks_4_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(288987,42347,'_blocks_4_timeline_content_text','field_6177de53d119a'),(288988,42347,'blocks_4_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(288989,42347,'_blocks_4_timeline_content_actions_0_button','field_6177de53d119c'),(288990,42347,'blocks_4_timeline_content_actions','1'),(288991,42347,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(288992,42347,'blocks_4_timeline_content',''),(288993,42347,'_blocks_4_timeline_content','field_6177de53d1197'),(288994,42347,'blocks_4_timeline_items_0_title','Benefits'),(288995,42347,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(288996,42347,'blocks_4_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(288997,42347,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(288998,42347,'blocks_4_timeline_items_1_title','Curriculum Highlights'),(288999,42347,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(289000,42347,'blocks_4_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(289001,42347,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(289002,42347,'blocks_4_timeline_items_2_title','What pre-qualifications are required?'),(289003,42347,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(289004,42347,'blocks_4_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(289005,42347,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(289006,42347,'blocks_4_timeline_items','3'),(289007,42347,'_blocks_4_timeline_items','field_6177de53d119d'),(289008,42347,'blocks_5_acfe_flexible_toggle',''),(289009,42347,'_blocks_5_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(289010,42347,'blocks_5_acfe_flexible_layout_title','Promo Panel'),(289011,42347,'_blocks_5_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(289012,42347,'blocks_5_options_alignment','center'),(289013,42347,'_blocks_5_options_alignment','field_61769449f5490'),(289014,42347,'blocks_5_options',''),(289015,42347,'_blocks_5_options','field_617693e1428f0'),(289016,42347,'blocks_5_promo_panel_image','41312'),(289017,42347,'_blocks_5_promo_panel_image','field_617693e1428f3'),(289018,42347,'blocks_5_promo_panel_content_heading','Testimonial'),(289019,42347,'_blocks_5_promo_panel_content_heading','field_617693e1428f6'),(289020,42347,'blocks_5_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!”\r\nJayne Nicholls Director Group X Training Ltd.'),(289021,42347,'_blocks_5_promo_panel_content_text','field_617693e1428f7'),(289022,42347,'blocks_5_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(289023,42347,'_blocks_5_promo_panel_content_actions_0_button','field_617693e1428f9'),(289024,42347,'blocks_5_promo_panel_content_actions','1'),(289025,42347,'_blocks_5_promo_panel_content_actions','field_617693e1428f8'),(289026,42347,'blocks_5_promo_panel_content',''),(289027,42347,'_blocks_5_promo_panel_content','field_617693e1428f4'),(289028,42347,'blocks_6_acfe_flexible_toggle',''),(289029,42347,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(289030,42347,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(289031,42347,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(289032,42347,'blocks_6_options_theme','#b61234'),(289033,42347,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(289034,42347,'blocks_6_options_state','0'),(289035,42347,'_blocks_6_options_state','field_6239fcb7508c5'),(289036,42347,'blocks_6_options',''),(289037,42347,'_blocks_6_options','field_6177e2991ac44'),(289038,42347,'blocks_6_content_title',''),(289039,42347,'_blocks_6_content_title','field_64d237e8bb1e2'),(289040,42347,'blocks_6_content_heading','FAQ\'s'),(289041,42347,'_blocks_6_content_heading','field_64d237e8bb1e3'),(289042,42347,'blocks_6_content_text',''),(289043,42347,'_blocks_6_content_text','field_64d237e8bb1e4'),(289044,42347,'blocks_6_content_actions',''),(289045,42347,'_blocks_6_content_actions','field_64d237e8bb1e5'),(289046,42347,'blocks_6_content_align','left'),(289047,42347,'_blocks_6_content_align','field_64d2443e6b6aa'),(289048,42347,'blocks_6_content',''),(289049,42347,'_blocks_6_content','field_64d237e8bb1e1'),(289050,42347,'blocks_6_accordion_content','faqs'),(289051,42347,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(289052,42347,'blocks_6_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(289053,42347,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(289054,42347,'blocks_6_actions',''),(289055,42347,'_blocks_6_actions','field_61a746a817f7a'),(289056,42347,'_thumbnail_id','2246'),(289057,42347,'__thumbnail_id','field_617570855ddaf'),(289058,42348,'hide_hero','0'),(289059,42348,'_hide_hero','field_66a2380fcda39'),(289060,42348,'hero_title','iMoveFreely Instructor Programme Workshop'),(289061,42348,'_hero_title','field_617571fe285e8'),(289062,42348,'hero_text',''),(289063,42348,'_hero_text','field_6175723c285e9'),(289064,42348,'hero_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(289065,42348,'_hero_actions_0_button','field_61757281285eb'),(289066,42348,'hero_actions','1'),(289067,42348,'_hero_actions','field_61757270285ea'),(289068,42348,'hero_style','default'),(289069,42348,'_hero_style','field_62051d9dc5324'),(289070,42348,'hero_image_pos_x','right'),(289071,42348,'_hero_image_pos_x','field_62ec3d05390bb'),(289072,42348,'hero_image_pos_y','top'),(289073,42348,'_hero_image_pos_y','field_62ec3d05390bc'),(289074,42348,'hero_image_pos',''),(289075,42348,'_hero_image_pos','field_62ec3d05390ba'),(289076,42348,'fft_hide_from_listings','0'),(289077,42348,'_fft_hide_from_listings','field_61f1320446ab2'),(289078,42348,'fft_page_format','default'),(289079,42348,'_fft_page_format','field_61ae213f1f218'),(289080,42348,'fft_hide_nav','0'),(289081,42348,'_fft_hide_nav','field_635bd5e43527c'),(289082,42348,'fft_hide_header_call_to_action','0'),(289083,42348,'_fft_hide_header_call_to_action','field_635bd6723527d'),(289084,42348,'fft_page_sitemap','0'),(289085,42348,'_fft_page_sitemap','field_61af9b34e8181'),(289086,42348,'blocks_0_acfe_flexible_toggle',''),(289087,42348,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(289088,42348,'blocks_0_acfe_flexible_layout_title','Template'),(289089,42348,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(289090,42348,'blocks_0_template','39087'),(289091,42348,'_blocks_0_template','field_617bdd570fe01'),(289092,42348,'blocks','a:7:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:10:\"split_5050\";i:3;s:5:\"video\";i:4;s:13:\"step_timeline\";i:5;s:11:\"promo_panel\";i:6;s:10:\"accordions\";}'),(289093,42348,'_blocks','field_6176696113096'),(289094,42348,'course_label_text','IMoveFreely Instructor programme workshop'),(289095,42348,'_course_label_text','field_61e17babf71fa'),(289096,42348,'course_label',''),(289097,42348,'_course_label','field_61e12f92749a7'),(289098,42348,'course_description','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants.'),(289099,42348,'_course_description','field_617ac5788e5e1'),(289100,42348,'course_key_info','2'),(289101,42348,'_course_key_info','field_617ac6ad8e5e2'),(289102,42348,'course_included','Profound effects on movement issues \r\n\r\nIdeal for injury prevention, rehabilitation, and activity preparation \r\n\r\nEvidence-based techniques for improved performance \r\n\r\nFlexible integration into existing classes '),(289103,42348,'_course_included','field_617ac6f08e5e4'),(289104,42348,'course_label_label_theme','#0d1f73'),(289105,42348,'_course_label_label_theme','field_61e17bb8f71fb'),(289106,42348,'course_key_info_0_text','In-person Workshop'),(289107,42348,'_course_key_info_0_text','field_617ac6c38e5e3'),(289108,42348,'course_key_info_1_text','CPD Course'),(289109,42348,'_course_key_info_1_text','field_617ac6c38e5e3'),(289110,42348,'blocks_1_acfe_flexible_toggle',''),(289111,42348,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(289112,42348,'blocks_1_acfe_flexible_layout_title','Text Block'),(289113,42348,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(289114,42348,'blocks_1_options_theme','#ffffff'),(289115,42348,'_blocks_1_options_theme','field_6176830e2ad17'),(289116,42348,'blocks_1_options',''),(289117,42348,'_blocks_1_options','field_6176830e2ad16'),(289118,42348,'blocks_1_text_block_heading',''),(289119,42348,'_blocks_1_text_block_heading','field_617669d413097'),(289120,42348,'blocks_1_text_block_content','<h3 style=\"text-align: left;\"><a href=\"https://emduk.org/funded-cpd/funded-cpd-eligibility/\"><strong>Join the workshop today and get 65% funded – limited spots available!</strong></a></h3>'),(289121,42348,'_blocks_1_text_block_content','field_617669ec13098'),(289122,42348,'blocks_2_acfe_flexible_toggle',''),(289123,42348,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(289124,42348,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(289125,42348,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(289126,42348,'blocks_2_options_theme','#ffffff'),(289127,42348,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(289128,42348,'blocks_2_options_reverse','1'),(289129,42348,'_blocks_2_options_reverse','field_61768049bb8ac'),(289130,42348,'blocks_2_options',''),(289131,42348,'_blocks_2_options','field_617682517c334'),(289132,42348,'blocks_2_split_5050_image','40615'),(289133,42348,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(289134,42348,'blocks_2_split_5050_video',''),(289135,42348,'_blocks_2_split_5050_video','field_6239f3160848a'),(289136,42348,'blocks_2_split_5050_content_title',''),(289137,42348,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(289138,42348,'blocks_2_split_5050_content_heading','Overview'),(289139,42348,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(289140,42348,'blocks_2_split_5050_content_text','Welcome to the iMoveFreely® Instructor Programme Workshop. Whether you\'re a group exercise instructor, fitness coach, or personal trainer, this one-day workshop is designed to elevate your skills and address the unique challenges posed by long Covid symptoms in your participants. Discover groundbreaking techniques that go beyond conventional workshops and courses, offering transformative tools to understand and enhance movement patterns for you, and your clients.\r\n\r\n<strong>Course details</strong>\r\n\r\nThere will be a pre-course recorded classroom for pre and post learning, a one-day attendance required of 7 hours, plus online post-attendance question quiz.\r\n\r\nYou will need access to a computer or phone for the quiz, and please note that the workshop manual will be provided in advance of your course.'),(289141,42348,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(289142,42348,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(289143,42348,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(289144,42348,'blocks_2_split_5050_content_actions','1'),(289145,42348,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(289146,42348,'blocks_2_split_5050_content',''),(289147,42348,'_blocks_2_split_5050_content','field_61767afceb8ba'),(289148,42348,'blocks_3_acfe_flexible_toggle',''),(289149,42348,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(289150,42348,'blocks_3_acfe_flexible_layout_title','Video'),(289151,42348,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(289152,42348,'blocks_3_size','large'),(289153,42348,'_blocks_3_size','field_6487038f297c1'),(289154,42348,'blocks_3_row_content_title',''),(289155,42348,'_blocks_3_row_content_title','field_64870132a865d'),(289156,42348,'blocks_3_row_content_heading','Intro to IMoveFreely Instructor workshop'),(289157,42348,'_blocks_3_row_content_heading','field_64870142a865e'),(289158,42348,'blocks_3_row_content_text',''),(289159,42348,'_blocks_3_row_content_text','field_64870148a865f'),(289160,42348,'blocks_3_row_content',''),(289161,42348,'_blocks_3_row_content','field_6487008ba865c'),(289162,42348,'blocks_3_video_src','https://www.youtube.com/watch?v=cJjNJ4bJBtc'),(289163,42348,'_blocks_3_video_src','field_6193c4a98ec07'),(289164,42348,'blocks_3_video_thumbnail',''),(289165,42348,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(289166,42348,'blocks_4_acfe_flexible_toggle',''),(289167,42348,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(289168,42348,'blocks_4_acfe_flexible_layout_title','Timeline'),(289169,42348,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(289170,42348,'blocks_4_options_theme','#ffffff'),(289171,42348,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(289172,42348,'blocks_4_options',''),(289173,42348,'_blocks_4_options','field_6177de53d1195'),(289174,42348,'blocks_4_timeline_content_title',''),(289175,42348,'_blocks_4_timeline_content_title','field_6177de53d1198'),(289176,42348,'blocks_4_timeline_content_heading','Who is the course suitable for? '),(289177,42348,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(289178,42348,'blocks_4_timeline_content_text','The IMoveFreely Instructor programme is suitable of Group exercise instructors, practitioners seeking skill enhancement, and professionals interested in remedial exercise skills. If you\'re unsure, please contact us on 020 3841 6151 and we’d be more than happy to advise.'),(289179,42348,'_blocks_4_timeline_content_text','field_6177de53d119a'),(289180,42348,'blocks_4_timeline_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(289181,42348,'_blocks_4_timeline_content_actions_0_button','field_6177de53d119c'),(289182,42348,'blocks_4_timeline_content_actions','1'),(289183,42348,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(289184,42348,'blocks_4_timeline_content',''),(289185,42348,'_blocks_4_timeline_content','field_6177de53d1197'),(289186,42348,'blocks_4_timeline_items_0_title','Benefits'),(289187,42348,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(289188,42348,'blocks_4_timeline_items_0_text','1. Profound effects on movement issues \r\n\r\n2. Ideal for injury prevention, rehabilitation, and activity preparation \r\n\r\n3. Evidence-based techniques for improved performance \r\n\r\n4. Flexible integration into existing classes '),(289189,42348,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(289190,42348,'blocks_4_timeline_items_1_title','Curriculum Highlights'),(289191,42348,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(289192,42348,'blocks_4_timeline_items_1_text','1. Intrinsic biomechanics \r\n\r\n2. Movement analysis principles \r\n\r\n3. Group action of muscles \r\n\r\n4. Pelvic, spine, and shoulder movement flows \r\n\r\n5. Neuromuscular trunk stiffening progressions \r\n\r\n6. Pure spine and nerve mobility techniques \r\n\r\n7. Designing iMoveFreely workshops and blending techniques into existing classes '),(289193,42348,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(289194,42348,'blocks_4_timeline_items_2_title','What pre-qualifications are required?'),(289195,42348,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(289196,42348,'blocks_4_timeline_items_2_text','It’s advisable you are qualified at one of the following levels prior to starting this course. \r\n\r\n1. Level 2 ETM, Gym Instructors \r\n\r\n2. Level 3 PT \r\n\r\n3. Level 3 manual therapists '),(289197,42348,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(289198,42348,'blocks_4_timeline_items','3'),(289199,42348,'_blocks_4_timeline_items','field_6177de53d119d'),(289200,42348,'blocks_5_acfe_flexible_toggle',''),(289201,42348,'_blocks_5_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(289202,42348,'blocks_5_acfe_flexible_layout_title','Promo Panel'),(289203,42348,'_blocks_5_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(289204,42348,'blocks_5_options_alignment','center'),(289205,42348,'_blocks_5_options_alignment','field_61769449f5490'),(289206,42348,'blocks_5_options',''),(289207,42348,'_blocks_5_options','field_617693e1428f0'),(289208,42348,'blocks_5_promo_panel_image','41312'),(289209,42348,'_blocks_5_promo_panel_image','field_617693e1428f3'),(289210,42348,'blocks_5_promo_panel_content_heading','Testimonial'),(289211,42348,'_blocks_5_promo_panel_content_heading','field_617693e1428f6'),(289212,42348,'blocks_5_promo_panel_content_text','“The iMoveFreely® programme changed the way that I teach every class & client. I put this information into my Fitness Pilates, FFY & Conditioning programmes to help my clients improve their movement & prevent injury. IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!”\r\nJayne Nicholls Director Group X Training Ltd.'),(289213,42348,'_blocks_5_promo_panel_content_text','field_617693e1428f7'),(289214,42348,'blocks_5_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:23:\"Add To Basket - [price]\";s:3:\"url\";s:12:\"#add-to-cart\";s:6:\"target\";s:0:\"\";}'),(289215,42348,'_blocks_5_promo_panel_content_actions_0_button','field_617693e1428f9'),(289216,42348,'blocks_5_promo_panel_content_actions','1'),(289217,42348,'_blocks_5_promo_panel_content_actions','field_617693e1428f8'),(289218,42348,'blocks_5_promo_panel_content',''),(289219,42348,'_blocks_5_promo_panel_content','field_617693e1428f4'),(289220,42348,'blocks_6_acfe_flexible_toggle',''),(289221,42348,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(289222,42348,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(289223,42348,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(289224,42348,'blocks_6_options_theme','#b61234'),(289225,42348,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(289226,42348,'blocks_6_options_state','0'),(289227,42348,'_blocks_6_options_state','field_6239fcb7508c5'),(289228,42348,'blocks_6_options',''),(289229,42348,'_blocks_6_options','field_6177e2991ac44'),(289230,42348,'blocks_6_content_title',''),(289231,42348,'_blocks_6_content_title','field_64d237e8bb1e2'),(289232,42348,'blocks_6_content_heading','FAQ\'s'),(289233,42348,'_blocks_6_content_heading','field_64d237e8bb1e3'),(289234,42348,'blocks_6_content_text',''),(289235,42348,'_blocks_6_content_text','field_64d237e8bb1e4'),(289236,42348,'blocks_6_content_actions',''),(289237,42348,'_blocks_6_content_actions','field_64d237e8bb1e5'),(289238,42348,'blocks_6_content_align','left'),(289239,42348,'_blocks_6_content_align','field_64d2443e6b6aa'),(289240,42348,'blocks_6_content',''),(289241,42348,'_blocks_6_content','field_64d237e8bb1e1'),(289242,42348,'blocks_6_accordion_content','faqs'),(289243,42348,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(289244,42348,'blocks_6_accordion_faqs_select','a:3:{i:0;s:5:\"40888\";i:1;s:5:\"40889\";i:2;s:5:\"40890\";}'),(289245,42348,'_blocks_6_accordion_faqs_select','field_6177e5f3633dd'),(289246,42348,'blocks_6_actions',''),(289247,42348,'_blocks_6_actions','field_61a746a817f7a'),(289248,42348,'_thumbnail_id','2246'),(289249,42348,'__thumbnail_id','field_617570855ddaf'),(289250,42431,'_edit_lock','1745502980:17'),(289251,42431,'_edit_last','17'),(289252,42431,'hide_hero','0'),(289253,42431,'_hide_hero','field_66a2380fcda39'),(289254,42431,'hero_title',''),(289255,42431,'_hero_title','field_617571fe285e8'),(289256,42431,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(289257,42431,'_hero_text','field_6175723c285e9'),(289258,42431,'hero_actions',''),(289259,42431,'_hero_actions','field_61757270285ea'),(289260,42431,'hero_style','default'),(289261,42431,'_hero_style','field_62051d9dc5324'),(289263,42431,'__thumbnail_id','field_617570855ddaf'),(289264,42431,'hero_image_pos_x','right'),(289265,42431,'_hero_image_pos_x','field_62ec3d05390bb'),(289266,42431,'hero_image_pos_y','top'),(289267,42431,'_hero_image_pos_y','field_62ec3d05390bc'),(289268,42431,'hero_image_pos',''),(289269,42431,'_hero_image_pos','field_62ec3d05390ba'),(289270,42431,'fft_hide_from_listings','0'),(289271,42431,'_fft_hide_from_listings','field_61f1320446ab2'),(289272,42431,'post_format','402'),(289273,42431,'_post_format','field_61756bfb51898'),(289274,42431,'post_author',''),(289275,42431,'_post_author','field_62ec389d22113'),(289276,42431,'post_reviewer',''),(289277,42431,'_post_reviewer','field_627140a2a9800'),(289278,42431,'post_table_of_contents','0'),(289279,42431,'_post_table_of_contents','field_65c503bc846a6'),(289304,42431,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(289305,42431,'_blocks','field_6176696113096'),(289306,42431,'_yoast_wpseo_primary_category','450'),(289307,42431,'_yoast_wpseo_primary_blog-format',''),(289308,42431,'_yoast_wpseo_inclusive_language_score','90'),(289309,42431,'_yoast_wpseo_estimated-reading-time-minutes','1'),(289310,42432,'hide_hero','0'),(289311,42432,'_hide_hero','field_66a2380fcda39'),(289312,42432,'hero_title',''),(289313,42432,'_hero_title','field_617571fe285e8'),(289314,42432,'hero_text','Musculoskeletal (MSK) health is fundamental to our daily lives, encompassing the complex system of muscles, bones, joints, and connective tissues that enable movement and provide structural support. '),(289315,42432,'_hero_text','field_6175723c285e9'),(289316,42432,'hero_actions',''),(289317,42432,'_hero_actions','field_61757270285ea'),(289318,42432,'hero_style','default'),(289319,42432,'_hero_style','field_62051d9dc5324'),(289320,42432,'_thumbnail_id',''),(289321,42432,'__thumbnail_id','field_617570855ddaf'),(289322,42432,'hero_image_pos_x','right'),(289323,42432,'_hero_image_pos_x','field_62ec3d05390bb'),(289324,42432,'hero_image_pos_y','top'),(289325,42432,'_hero_image_pos_y','field_62ec3d05390bc'),(289326,42432,'hero_image_pos',''),(289327,42432,'_hero_image_pos','field_62ec3d05390ba'),(289328,42432,'fft_hide_from_listings','0'),(289329,42432,'_fft_hide_from_listings','field_61f1320446ab2'),(289330,42432,'post_format','402'),(289331,42432,'_post_format','field_61756bfb51898'),(289332,42432,'post_author',''),(289333,42432,'_post_author','field_62ec389d22113'),(289334,42432,'post_reviewer',''),(289335,42432,'_post_reviewer','field_627140a2a9800'),(289336,42432,'post_table_of_contents','0'),(289337,42432,'_post_table_of_contents','field_65c503bc846a6'),(289338,42432,'blocks_0_acfe_flexible_toggle',''),(289339,42432,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(289340,42432,'blocks_0_acfe_flexible_layout_title','Text Block'),(289341,42432,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(289342,42432,'blocks_0_options_theme','#ffffff'),(289343,42432,'_blocks_0_options_theme','field_6176830e2ad17'),(289344,42432,'blocks_0_options',''),(289345,42432,'_blocks_0_options','field_6176830e2ad16'),(289346,42432,'blocks_0_text_block_heading','What is MSK?'),(289347,42432,'_blocks_0_text_block_heading','field_617669d413097'),(289348,42432,'blocks_0_text_block_content','Have you been hearing the term MSK and wondering what it means? Or maybe you’re considering studying musculoskeletal (MSK) health but aren’t sure if it’s the right fit for you?\r\n\r\nMSK refers to the musculoskeletal system—the network of muscles, bones, joints, and connective tissues that support movement and function. It’s a key part of everyday life, allowing us to move, lift, and stay active. When something goes wrong with this system, it can lead to pain, reduced mobility, and long-term health issues.\r\n\r\nIn the UK, MSK conditions are common, affecting over 20 million people. They can range from minor aches and pains to chronic disorders like arthritis and osteoporosis. While many people associate MSK health with medical conditions, the reality is that movement professionals, fitness trainers, and rehabilitation specialists also play a crucial role in maintaining and improving MSK function.\r\nAt Biomechanics Education, we believe that understanding musculoskeletal health isn’t just for clinicians—it’s essential for anyone working with human movement. Whether you’re in fitness, rehabilitation, or workplace health, learning about MSK can help you support better movement, prevent injuries, and improve quality of life.'),(289349,42432,'_blocks_0_text_block_content','field_617669ec13098'),(289350,42432,'blocks_1_acfe_flexible_toggle',''),(289351,42432,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(289352,42432,'blocks_1_acfe_flexible_layout_title','Text Block'),(289353,42432,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(289354,42432,'blocks_1_options_theme','#ffffff'),(289355,42432,'_blocks_1_options_theme','field_6176830e2ad17'),(289356,42432,'blocks_1_options',''),(289357,42432,'_blocks_1_options','field_6176830e2ad16'),(289358,42432,'blocks_1_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(289359,42432,'_blocks_1_text_block_heading','field_617669d413097'),(289360,42432,'blocks_1_text_block_content','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\nThe musculoskeletal system includes:\r\n<ul>\r\n 	<li><strong>Bones</strong> – Providing structure and protecting vital organs.</li>\r\n 	<li><strong>Muscles</strong> – Enabling movement by contracting and relaxing.</li>\r\n 	<li><strong>Joints</strong> – Connecting bones and allowing flexibility and a range of motion.</li>\r\n 	<li><strong>Connective Tissues</strong> – Including tendons, ligaments, and cartilage, which support and stabilise the system.</li>\r\n</ul>\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(289361,42432,'_blocks_1_text_block_content','field_617669ec13098'),(289362,42432,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:10:\"text_block\";}'),(289363,42432,'_blocks','field_6176696113096'),(289371,42433,'hide_hero','0'),(289372,42433,'_hide_hero','field_66a2380fcda39'),(289373,42433,'hero_title',''),(289374,42433,'_hero_title','field_617571fe285e8'),(289375,42433,'hero_text','Musculoskeletal (MSK) health is fundamental to our daily lives, encompassing the complex system of muscles, bones, joints, and connective tissues that enable movement and provide structural support. '),(289376,42433,'_hero_text','field_6175723c285e9'),(289377,42433,'hero_actions',''),(289378,42433,'_hero_actions','field_61757270285ea'),(289379,42433,'hero_style','default'),(289380,42433,'_hero_style','field_62051d9dc5324'),(289381,42433,'hero_image_pos_x','right'),(289382,42433,'_hero_image_pos_x','field_62ec3d05390bb'),(289383,42433,'hero_image_pos_y','top'),(289384,42433,'_hero_image_pos_y','field_62ec3d05390bc'),(289385,42433,'hero_image_pos',''),(289386,42433,'_hero_image_pos','field_62ec3d05390ba'),(289387,42433,'fft_hide_from_listings','0'),(289388,42433,'_fft_hide_from_listings','field_61f1320446ab2'),(289389,42433,'post_format','402'),(289390,42433,'_post_format','field_61756bfb51898'),(289391,42433,'post_author',''),(289392,42433,'_post_author','field_62ec389d22113'),(289393,42433,'post_reviewer',''),(289394,42433,'_post_reviewer','field_627140a2a9800'),(289395,42433,'post_table_of_contents','0'),(289396,42433,'_post_table_of_contents','field_65c503bc846a6'),(289397,42433,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(289398,42433,'_blocks','field_6176696113096'),(289399,42433,'_thumbnail_id',''),(289400,42433,'__thumbnail_id','field_617570855ddaf'),(289401,42433,'blocks_0_acfe_flexible_toggle',''),(289402,42433,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(289403,42433,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(289404,42433,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(289405,42433,'blocks_0_content','<h2><strong>What is MSK?</strong></h2>\r\nHave you been hearing the term MSK and wondering what it means? Or maybe you’re considering studying musculoskeletal (MSK) health but aren’t sure if it’s the right fit for you?\r\n\r\nMSK refers to the musculoskeletal system—the network of muscles, bones, joints, and connective tissues that support movement and function. It’s a key part of everyday life, allowing us to move, lift, and stay active. When something goes wrong with this system, it can lead to pain, reduced mobility, and long-term health issues.\r\n\r\nIn the UK, MSK conditions are common, affecting over 20 million people. They can range from minor aches and pains to chronic disorders like arthritis and osteoporosis. While many people associate MSK health with medical conditions, the reality is that movement professionals, fitness trainers, and rehabilitation specialists also play a crucial role in maintaining and improving MSK function.\r\n\r\nAt Biomechanics Education, we believe that understanding musculoskeletal health isn’t just for clinicians—it’s essential for anyone working with human movement. Whether you’re in fitness, rehabilitation, or workplace health, learning about MSK can help you support better movement, prevent injuries, and improve quality of life.'),(289406,42433,'_blocks_0_content','field_6193c9b5eac84'),(289408,42434,'hide_hero','0'),(289409,42434,'_hide_hero','field_66a2380fcda39'),(289410,42434,'hero_title',''),(289411,42434,'_hero_title','field_617571fe285e8'),(289412,42434,'hero_text','Musculoskeletal (MSK) health is fundamental to our daily lives, encompassing the complex system of muscles, bones, joints, and connective tissues that enable movement and provide structural support. '),(289413,42434,'_hero_text','field_6175723c285e9'),(289414,42434,'hero_actions',''),(289415,42434,'_hero_actions','field_61757270285ea'),(289416,42434,'hero_style','default'),(289417,42434,'_hero_style','field_62051d9dc5324'),(289418,42434,'hero_image_pos_x','right'),(289419,42434,'_hero_image_pos_x','field_62ec3d05390bb'),(289420,42434,'hero_image_pos_y','top'),(289421,42434,'_hero_image_pos_y','field_62ec3d05390bc'),(289422,42434,'hero_image_pos',''),(289423,42434,'_hero_image_pos','field_62ec3d05390ba'),(289424,42434,'fft_hide_from_listings','0'),(289425,42434,'_fft_hide_from_listings','field_61f1320446ab2'),(289426,42434,'post_format','402'),(289427,42434,'_post_format','field_61756bfb51898'),(289428,42434,'post_author',''),(289429,42434,'_post_author','field_62ec389d22113'),(289430,42434,'post_reviewer',''),(289431,42434,'_post_reviewer','field_627140a2a9800'),(289432,42434,'post_table_of_contents','0'),(289433,42434,'_post_table_of_contents','field_65c503bc846a6'),(289434,42434,'blocks','a:1:{i:0;s:16:\"standard_content\";}'),(289435,42434,'_blocks','field_6176696113096'),(289436,42434,'blocks_0_acfe_flexible_toggle',''),(289437,42434,'_blocks_0_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(289438,42434,'blocks_0_acfe_flexible_layout_title','Standard/Editorial Content'),(289439,42434,'_blocks_0_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(289440,42434,'blocks_0_content','<h3>What is MSK?</h3>\r\nHave you been hearing the term MSK and wondering what it means? Or maybe you’re considering studying musculoskeletal (MSK) health but aren’t sure if it’s the right fit for you?\r\n\r\nMSK refers to the musculoskeletal system—the network of muscles, bones, joints, and connective tissues that support movement and function. It’s a key part of everyday life, allowing us to move, lift, and stay active. When something goes wrong with this system, it can lead to pain, reduced mobility, and long-term health issues.\r\n\r\nIn the UK, MSK conditions are common, affecting over 20 million people. They can range from minor aches and pains to chronic disorders like arthritis and osteoporosis. While many people associate MSK health with medical conditions, the reality is that movement professionals, fitness trainers, and rehabilitation specialists also play a crucial role in maintaining and improving MSK function.\r\n\r\nAt Biomechanics Education, we believe that understanding musculoskeletal health isn’t just for clinicians—it’s essential for anyone working with human movement. Whether you’re in fitness, rehabilitation, or workplace health, learning about MSK can help you support better movement, prevent injuries, and improve quality of life.'),(289441,42434,'_blocks_0_content','field_6193c9b5eac84'),(289442,42434,'_thumbnail_id',''),(289443,42434,'__thumbnail_id','field_617570855ddaf'),(289457,42435,'hide_hero','0'),(289458,42435,'_hide_hero','field_66a2380fcda39'),(289459,42435,'hero_title',''),(289460,42435,'_hero_title','field_617571fe285e8'),(289461,42435,'hero_text',''),(289462,42435,'_hero_text','field_6175723c285e9'),(289463,42435,'hero_actions',''),(289464,42435,'_hero_actions','field_61757270285ea'),(289465,42435,'hero_style','default'),(289466,42435,'_hero_style','field_62051d9dc5324'),(289467,42435,'hero_image_pos_x','right'),(289468,42435,'_hero_image_pos_x','field_62ec3d05390bb'),(289469,42435,'hero_image_pos_y','top'),(289470,42435,'_hero_image_pos_y','field_62ec3d05390bc'),(289471,42435,'hero_image_pos',''),(289472,42435,'_hero_image_pos','field_62ec3d05390ba'),(289473,42435,'fft_hide_from_listings','0'),(289474,42435,'_fft_hide_from_listings','field_61f1320446ab2'),(289475,42435,'post_format','402'),(289476,42435,'_post_format','field_61756bfb51898'),(289477,42435,'post_author',''),(289478,42435,'_post_author','field_62ec389d22113'),(289479,42435,'post_reviewer',''),(289480,42435,'_post_reviewer','field_627140a2a9800'),(289481,42435,'post_table_of_contents','0'),(289482,42435,'_post_table_of_contents','field_65c503bc846a6'),(289483,42435,'blocks','a:1:{i:0;s:10:\"text_block\";}'),(289484,42435,'_blocks','field_6176696113096'),(289485,42435,'_thumbnail_id',''),(289486,42435,'__thumbnail_id','field_617570855ddaf'),(289487,42435,'blocks_0_acfe_flexible_toggle',''),(289488,42435,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(289489,42435,'blocks_0_acfe_flexible_layout_title','Text Block'),(289490,42435,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(289491,42435,'blocks_0_options_theme','#ffffff'),(289492,42435,'_blocks_0_options_theme','field_6176830e2ad17'),(289493,42435,'blocks_0_options',''),(289494,42435,'_blocks_0_options','field_6176830e2ad16'),(289495,42435,'blocks_0_text_block_heading','What is MSK?'),(289496,42435,'_blocks_0_text_block_heading','field_617669d413097'),(289497,42435,'blocks_0_text_block_content','Have you been hearing the term MSK and wondering what it means? Or maybe you’re considering studying musculoskeletal (MSK) health but aren’t sure if it’s the right fit for you?\r\n\r\nMSK refers to the musculoskeletal system—the network of muscles, bones, joints, and connective tissues that support movement and function. It’s a key part of everyday life, allowing us to move, lift, and stay active. When something goes wrong with this system, it can lead to pain, reduced mobility, and long-term health issues.\r\n\r\nIn the UK, MSK conditions are common, affecting over 20 million people. They can range from minor aches and pains to chronic disorders like arthritis and osteoporosis. While many people associate MSK health with medical conditions, the reality is that movement professionals, fitness trainers, and rehabilitation specialists also play a crucial role in maintaining and improving MSK function.\r\n\r\nAt Biomechanics Education, we believe that understanding musculoskeletal health isn’t just for clinicians—it’s essential for anyone working with human movement. Whether you’re in fitness, rehabilitation, or workplace health, learning about MSK can help you support better movement, prevent injuries, and improve quality of life.'),(289498,42435,'_blocks_0_text_block_content','field_617669ec13098'),(289512,42436,'hide_hero','0'),(289513,42436,'_hide_hero','field_66a2380fcda39'),(289514,42436,'hero_title',''),(289515,42436,'_hero_title','field_617571fe285e8'),(289516,42436,'hero_text',''),(289517,42436,'_hero_text','field_6175723c285e9'),(289518,42436,'hero_actions',''),(289519,42436,'_hero_actions','field_61757270285ea'),(289520,42436,'hero_style','default'),(289521,42436,'_hero_style','field_62051d9dc5324'),(289522,42436,'hero_image_pos_x','right'),(289523,42436,'_hero_image_pos_x','field_62ec3d05390bb'),(289524,42436,'hero_image_pos_y','top'),(289525,42436,'_hero_image_pos_y','field_62ec3d05390bc'),(289526,42436,'hero_image_pos',''),(289527,42436,'_hero_image_pos','field_62ec3d05390ba'),(289528,42436,'fft_hide_from_listings','0'),(289529,42436,'_fft_hide_from_listings','field_61f1320446ab2'),(289530,42436,'post_format','402'),(289531,42436,'_post_format','field_61756bfb51898'),(289532,42436,'post_author',''),(289533,42436,'_post_author','field_62ec389d22113'),(289534,42436,'post_reviewer',''),(289535,42436,'_post_reviewer','field_627140a2a9800'),(289536,42436,'post_table_of_contents','0'),(289537,42436,'_post_table_of_contents','field_65c503bc846a6'),(289538,42436,'blocks','a:2:{i:0;s:10:\"text_block\";i:1;s:10:\"text_block\";}'),(289539,42436,'_blocks','field_6176696113096'),(289540,42436,'blocks_0_acfe_flexible_toggle',''),(289541,42436,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(289542,42436,'blocks_0_acfe_flexible_layout_title','Text Block'),(289543,42436,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(289544,42436,'blocks_0_options_theme','#ffffff'),(289545,42436,'_blocks_0_options_theme','field_6176830e2ad17'),(289546,42436,'blocks_0_options',''),(289547,42436,'_blocks_0_options','field_6176830e2ad16'),(289548,42436,'blocks_0_text_block_heading','What is MSK?'),(289549,42436,'_blocks_0_text_block_heading','field_617669d413097'),(289550,42436,'blocks_0_text_block_content','Have you been hearing the term MSK and wondering what it means? Or maybe you’re considering studying musculoskeletal (MSK) health but aren’t sure if it’s the right fit for you?\r\n\r\nMSK refers to the musculoskeletal system—the network of muscles, bones, joints, and connective tissues that support movement and function. It’s a key part of everyday life, allowing us to move, lift, and stay active. When something goes wrong with this system, it can lead to pain, reduced mobility, and long-term health issues.\r\n\r\nIn the UK, MSK conditions are common, affecting over 20 million people. They can range from minor aches and pains to chronic disorders like arthritis and osteoporosis. While many people associate MSK health with medical conditions, the reality is that movement professionals, fitness trainers, and rehabilitation specialists also play a crucial role in maintaining and improving MSK function.\r\n\r\nAt Biomechanics Education, we believe that understanding musculoskeletal health isn’t just for clinicians—it’s essential for anyone working with human movement. Whether you’re in fitness, rehabilitation, or workplace health, learning about MSK can help you support better movement, prevent injuries, and improve quality of life.'),(289551,42436,'_blocks_0_text_block_content','field_617669ec13098'),(289552,42436,'_thumbnail_id',''),(289553,42436,'__thumbnail_id','field_617570855ddaf'),(289554,42436,'blocks_1_acfe_flexible_toggle',''),(289555,42436,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(289556,42436,'blocks_1_acfe_flexible_layout_title','Text Block'),(289557,42436,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(289558,42436,'blocks_1_options_theme','#ffffff'),(289559,42436,'_blocks_1_options_theme','field_6176830e2ad17'),(289560,42436,'blocks_1_options',''),(289561,42436,'_blocks_1_options','field_6176830e2ad16'),(289562,42436,'blocks_1_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(289563,42436,'_blocks_1_text_block_heading','field_617669d413097'),(289564,42436,'blocks_1_text_block_content','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\nThe musculoskeletal system includes:\r\n<ul>\r\n 	<li><strong>Bones</strong> – Providing structure and protecting vital organs.</li>\r\n 	<li><strong>Muscles</strong> – Enabling movement by contracting and relaxing.</li>\r\n 	<li><strong>Joints</strong> – Connecting bones and allowing flexibility and a range of motion.</li>\r\n 	<li><strong>Connective Tissues</strong> – Including tendons, ligaments, and cartilage, which support and stabilise the system.</li>\r\n</ul>\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(289565,42436,'_blocks_1_text_block_content','field_617669ec13098'),(289567,42437,'hide_hero','0'),(289568,42437,'_hide_hero','field_66a2380fcda39'),(289569,42437,'hero_title',''),(289570,42437,'_hero_title','field_617571fe285e8'),(289571,42437,'hero_text',''),(289572,42437,'_hero_text','field_6175723c285e9'),(289573,42437,'hero_actions',''),(289574,42437,'_hero_actions','field_61757270285ea'),(289575,42437,'hero_style','default'),(289576,42437,'_hero_style','field_62051d9dc5324'),(289577,42437,'hero_image_pos_x','right'),(289578,42437,'_hero_image_pos_x','field_62ec3d05390bb'),(289579,42437,'hero_image_pos_y','top'),(289580,42437,'_hero_image_pos_y','field_62ec3d05390bc'),(289581,42437,'hero_image_pos',''),(289582,42437,'_hero_image_pos','field_62ec3d05390ba'),(289583,42437,'fft_hide_from_listings','0'),(289584,42437,'_fft_hide_from_listings','field_61f1320446ab2'),(289585,42437,'post_format','402'),(289586,42437,'_post_format','field_61756bfb51898'),(289587,42437,'post_author',''),(289588,42437,'_post_author','field_62ec389d22113'),(289589,42437,'post_reviewer',''),(289590,42437,'_post_reviewer','field_627140a2a9800'),(289591,42437,'post_table_of_contents','0'),(289592,42437,'_post_table_of_contents','field_65c503bc846a6'),(289593,42437,'blocks','a:1:{i:0;s:10:\"text_block\";}'),(289594,42437,'_blocks','field_6176696113096'),(289595,42437,'blocks_0_acfe_flexible_toggle',''),(289596,42437,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(289597,42437,'blocks_0_acfe_flexible_layout_title','Text Block'),(289598,42437,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(289599,42437,'blocks_0_options_theme','#ffffff'),(289600,42437,'_blocks_0_options_theme','field_6176830e2ad17'),(289601,42437,'blocks_0_options',''),(289602,42437,'_blocks_0_options','field_6176830e2ad16'),(289603,42437,'blocks_0_text_block_heading','What is MSK?'),(289604,42437,'_blocks_0_text_block_heading','field_617669d413097'),(289605,42437,'blocks_0_text_block_content','Have you been hearing the term MSK and wondering what it means? Or maybe you’re considering studying musculoskeletal (MSK) health but aren’t sure if it’s the right fit for you?\r\n\r\nMSK refers to the musculoskeletal system—the network of muscles, bones, joints, and connective tissues that support movement and function. It’s a key part of everyday life, allowing us to move, lift, and stay active. When something goes wrong with this system, it can lead to pain, reduced mobility, and long-term health issues.\r\n\r\nIn the UK, MSK conditions are common, affecting over 20 million people. They can range from minor aches and pains to chronic disorders like arthritis and osteoporosis. While many people associate MSK health with medical conditions, the reality is that movement professionals, fitness trainers, and rehabilitation specialists also play a crucial role in maintaining and improving MSK function.\r\n\r\nAt Biomechanics Education, we believe that understanding musculoskeletal health isn’t just for clinicians—it’s essential for anyone working with human movement. Whether you’re in fitness, rehabilitation, or workplace health, learning about MSK can help you support better movement, prevent injuries, and improve quality of life.'),(289606,42437,'_blocks_0_text_block_content','field_617669ec13098'),(289607,42437,'_thumbnail_id',''),(289608,42437,'__thumbnail_id','field_617570855ddaf'),(289609,42438,'hide_hero','0'),(289610,42438,'_hide_hero','field_66a2380fcda39'),(289611,42438,'hero_title',''),(289612,42438,'_hero_title','field_617571fe285e8'),(289613,42438,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(289614,42438,'_hero_text','field_6175723c285e9'),(289615,42438,'hero_actions','1'),(289616,42438,'_hero_actions','field_61757270285ea'),(289617,42438,'hero_style','default'),(289618,42438,'_hero_style','field_62051d9dc5324'),(289619,42438,'_thumbnail_id','41331'),(289620,42438,'__thumbnail_id','field_617570855ddaf'),(289621,42438,'hero_image_pos_x','right'),(289622,42438,'_hero_image_pos_x','field_62ec3d05390bb'),(289623,42438,'hero_image_pos_y','top'),(289624,42438,'_hero_image_pos_y','field_62ec3d05390bc'),(289625,42438,'hero_image_pos',''),(289626,42438,'_hero_image_pos','field_62ec3d05390ba'),(289627,42438,'fft_hide_from_listings','0'),(289628,42438,'_fft_hide_from_listings','field_61f1320446ab2'),(289629,42438,'post_format','402'),(289630,42438,'_post_format','field_61756bfb51898'),(289631,42438,'post_author',''),(289632,42438,'_post_author','field_62ec389d22113'),(289633,42438,'post_reviewer',''),(289634,42438,'_post_reviewer','field_627140a2a9800'),(289635,42438,'post_table_of_contents','0'),(289636,42438,'_post_table_of_contents','field_65c503bc846a6'),(289637,42438,'blocks_0_acfe_flexible_toggle',''),(289638,42438,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(289639,42438,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(289640,42438,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(289641,42438,'blocks_0_options_theme','#ffffff'),(289642,42438,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(289643,42438,'blocks_0_options',''),(289644,42438,'_blocks_0_options','field_6177b758246ae'),(289645,42438,'blocks_0_link_stack_content_title',''),(289646,42438,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(289647,42438,'blocks_0_link_stack_content_heading','What is MSK?'),(289648,42438,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(289649,42438,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(289650,42438,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(289651,42438,'blocks_0_link_stack_content_actions_0_button',''),(289652,42438,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(289653,42438,'blocks_0_link_stack_content_actions','1'),(289654,42438,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(289655,42438,'blocks_0_link_stack_content',''),(289656,42438,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(289657,42438,'blocks_0_link_stack_0_label','1.'),(289658,42438,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(289659,42438,'blocks_0_link_stack_0_title','Overview'),(289660,42438,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(289661,42438,'blocks_0_link_stack_0_url','#overview'),(289662,42438,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(289663,42438,'blocks_0_link_stack_1_label','2.'),(289664,42438,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(289665,42438,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(289666,42438,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(289667,42438,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(289668,42438,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(289669,42438,'blocks_0_link_stack_2_label','3.'),(289670,42438,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(289671,42438,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(289672,42438,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(289673,42438,'blocks_0_link_stack_2_url','#who-should-study-msk'),(289674,42438,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(289675,42438,'blocks_0_link_stack_3_label','4.'),(289676,42438,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(289677,42438,'blocks_0_link_stack_3_title','Common MSK Conditions'),(289678,42438,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(289679,42438,'blocks_0_link_stack_3_url','#common-msk-conditions'),(289680,42438,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(289681,42438,'blocks_0_link_stack_4_label','5.'),(289682,42438,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(289683,42438,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(289684,42438,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(289685,42438,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(289686,42438,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(289687,42438,'blocks_0_link_stack','6'),(289688,42438,'_blocks_0_link_stack','field_6177b7f600cff'),(289761,42438,'blocks','a:20:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:5:\"cards\";i:8;s:10:\"accordions\";i:9;s:10:\"text_block\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:5:\"icons\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:11:\"promo_panel\";}'),(289762,42438,'_blocks','field_6176696113096'),(289763,42438,'_acf_changed','1'),(290136,42431,'_thumbnail_id','40618'),(290137,42431,'blocks_0_acfe_flexible_toggle',''),(290138,42431,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(290139,42431,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(290140,42431,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(290141,42431,'blocks_0_options_theme','#ffffff'),(290142,42431,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(290143,42431,'blocks_0_options',''),(290144,42431,'_blocks_0_options','field_6177b758246ae'),(290145,42431,'blocks_0_link_stack_content_title',''),(290146,42431,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(290147,42431,'blocks_0_link_stack_content_heading','What is MSK?'),(290148,42431,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(290149,42431,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(290150,42431,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(290151,42431,'blocks_0_link_stack_content_actions_0_button',''),(290152,42431,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(290153,42431,'blocks_0_link_stack_content_actions','1'),(290154,42431,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(290155,42431,'blocks_0_link_stack_content',''),(290156,42431,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(290157,42431,'blocks_0_link_stack_0_label','1.'),(290158,42431,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(290159,42431,'blocks_0_link_stack_0_title','Overview'),(290160,42431,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(290161,42431,'blocks_0_link_stack_0_url','#overview'),(290162,42431,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(290163,42431,'blocks_0_link_stack_1_label','2.'),(290164,42431,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(290165,42431,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(290166,42431,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(290167,42431,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(290168,42431,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(290169,42431,'blocks_0_link_stack_2_label','3.'),(290170,42431,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(290171,42431,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(290172,42431,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(290173,42431,'blocks_0_link_stack_2_url','#who-should-study-msk'),(290174,42431,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(290175,42431,'blocks_0_link_stack_3_label','4.'),(290176,42431,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(290177,42431,'blocks_0_link_stack_3_title','Common MSK Conditions'),(290178,42431,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(290179,42431,'blocks_0_link_stack_3_url','#common-msk-conditions'),(290180,42431,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(290181,42431,'blocks_0_link_stack_4_label','5.'),(290182,42431,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(290183,42431,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(290184,42431,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(290185,42431,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(290186,42431,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(290187,42431,'blocks_0_link_stack_5_label','6.'),(290188,42431,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(290189,42431,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(290190,42431,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(290191,42431,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(290192,42431,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(290193,42431,'blocks_0_link_stack','6'),(290194,42431,'_blocks_0_link_stack','field_6177b7f600cff'),(290195,42431,'blocks_1_acfe_flexible_toggle',''),(290196,42431,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(290197,42431,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(290198,42431,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(290199,42431,'blocks_1_options_theme','#ffffff'),(290200,42431,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(290201,42431,'blocks_1_options_reverse','0'),(290202,42431,'_blocks_1_options_reverse','field_61768049bb8ac'),(290203,42431,'blocks_1_options',''),(290204,42431,'_blocks_1_options','field_617682517c334'),(290205,42431,'blocks_1_split_5050_image','40615'),(290206,42431,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(290207,42431,'blocks_1_split_5050_video',''),(290208,42431,'_blocks_1_split_5050_video','field_6239f3160848a'),(290209,42431,'blocks_1_split_5050_content_title',''),(290210,42431,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(290211,42431,'blocks_1_split_5050_content_heading','Overview'),(290212,42431,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(290213,42431,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(290214,42431,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(290215,42431,'blocks_1_split_5050_content_actions',''),(290216,42431,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(290217,42431,'blocks_1_split_5050_content',''),(290218,42431,'_blocks_1_split_5050_content','field_61767afceb8ba'),(290231,42431,'blocks_3_acfe_flexible_toggle','1'),(290232,42431,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(290233,42431,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(290234,42431,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(290235,42431,'blocks_3_options_theme','#f5f5f5'),(290236,42431,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(290237,42431,'blocks_3_options_reverse','1'),(290238,42431,'_blocks_3_options_reverse','field_61768049bb8ac'),(290239,42431,'blocks_3_options',''),(290240,42431,'_blocks_3_options','field_617682517c334'),(290241,42431,'blocks_3_split_5050_image','41330'),(290242,42431,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(290243,42431,'blocks_3_split_5050_video',''),(290244,42431,'_blocks_3_split_5050_video','field_6239f3160848a'),(290245,42431,'blocks_3_split_5050_content_title',''),(290246,42431,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(290247,42431,'blocks_3_split_5050_content_heading',''),(290248,42431,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(290249,42431,'blocks_3_split_5050_content_text',''),(290250,42431,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(290251,42431,'blocks_3_split_5050_content_actions',''),(290252,42431,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(290253,42431,'blocks_3_split_5050_content',''),(290254,42431,'_blocks_3_split_5050_content','field_61767afceb8ba'),(290577,42442,'hide_hero','0'),(290578,42442,'_hide_hero','field_66a2380fcda39'),(290579,42442,'hero_title',''),(290580,42442,'_hero_title','field_617571fe285e8'),(290581,42442,'hero_text',''),(290582,42442,'_hero_text','field_6175723c285e9'),(290583,42442,'hero_actions',''),(290584,42442,'_hero_actions','field_61757270285ea'),(290585,42442,'hero_style','default'),(290586,42442,'_hero_style','field_62051d9dc5324'),(290587,42442,'hero_image_pos_x','right'),(290588,42442,'_hero_image_pos_x','field_62ec3d05390bb'),(290589,42442,'hero_image_pos_y','top'),(290590,42442,'_hero_image_pos_y','field_62ec3d05390bc'),(290591,42442,'hero_image_pos',''),(290592,42442,'_hero_image_pos','field_62ec3d05390ba'),(290593,42442,'fft_hide_from_listings','0'),(290594,42442,'_fft_hide_from_listings','field_61f1320446ab2'),(290595,42442,'post_format','402'),(290596,42442,'_post_format','field_61756bfb51898'),(290597,42442,'post_author',''),(290598,42442,'_post_author','field_62ec389d22113'),(290599,42442,'post_reviewer',''),(290600,42442,'_post_reviewer','field_627140a2a9800'),(290601,42442,'post_table_of_contents','0'),(290602,42442,'_post_table_of_contents','field_65c503bc846a6'),(290603,42442,'blocks','a:15:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:10:\"split_5050\";i:10;s:5:\"steps\";i:11;s:14:\"section_slider\";i:12;s:10:\"text_block\";i:13;s:5:\"icons\";i:14;s:10:\"text_block\";}'),(290604,42442,'_blocks','field_6176696113096'),(290605,42442,'_thumbnail_id',''),(290606,42442,'__thumbnail_id','field_617570855ddaf'),(290607,42442,'blocks_0_acfe_flexible_toggle',''),(290608,42442,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(290609,42442,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(290610,42442,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(290611,42442,'blocks_0_options_theme','#ffffff'),(290612,42442,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(290613,42442,'blocks_0_options',''),(290614,42442,'_blocks_0_options','field_6177b758246ae'),(290615,42442,'blocks_0_link_stack_content_title','What is MSK?'),(290616,42442,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(290617,42442,'blocks_0_link_stack_content_heading','What is MSK?'),(290618,42442,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(290619,42442,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(290620,42442,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(290621,42442,'blocks_0_link_stack_content_actions_0_button',''),(290622,42442,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(290623,42442,'blocks_0_link_stack_content_actions','1'),(290624,42442,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(290625,42442,'blocks_0_link_stack_content',''),(290626,42442,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(290627,42442,'blocks_0_link_stack_0_label','1.'),(290628,42442,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(290629,42442,'blocks_0_link_stack_0_title','Overview'),(290630,42442,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(290631,42442,'blocks_0_link_stack_0_url','#overview'),(290632,42442,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(290633,42442,'blocks_0_link_stack_1_label','2.'),(290634,42442,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(290635,42442,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(290636,42442,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(290637,42442,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(290638,42442,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(290639,42442,'blocks_0_link_stack_2_label','3.'),(290640,42442,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(290641,42442,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(290642,42442,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(290643,42442,'blocks_0_link_stack_2_url','#who-should-study-msk'),(290644,42442,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(290645,42442,'blocks_0_link_stack_3_label','4.'),(290646,42442,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(290647,42442,'blocks_0_link_stack_3_title','Common MSK Conditions'),(290648,42442,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(290649,42442,'blocks_0_link_stack_3_url','#common-msk-conditions'),(290650,42442,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(290651,42442,'blocks_0_link_stack_4_label','5.'),(290652,42442,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(290653,42442,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(290654,42442,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(290655,42442,'blocks_0_link_stack_4_url',''),(290656,42442,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(290657,42442,'blocks_0_link_stack_5_label','6.'),(290658,42442,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(290659,42442,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(290660,42442,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(290661,42442,'blocks_0_link_stack_5_url',''),(290662,42442,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(290663,42442,'blocks_0_link_stack','6'),(290664,42442,'_blocks_0_link_stack','field_6177b7f600cff'),(290665,42442,'blocks_1_acfe_flexible_toggle',''),(290666,42442,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(290667,42442,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(290668,42442,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(290669,42442,'blocks_1_options_theme','#f5f5f5'),(290670,42442,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(290671,42442,'blocks_1_options_reverse','1'),(290672,42442,'_blocks_1_options_reverse','field_61768049bb8ac'),(290673,42442,'blocks_1_options',''),(290674,42442,'_blocks_1_options','field_617682517c334'),(290675,42442,'blocks_1_split_5050_image','40615'),(290676,42442,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(290677,42442,'blocks_1_split_5050_video',''),(290678,42442,'_blocks_1_split_5050_video','field_6239f3160848a'),(290679,42442,'blocks_1_split_5050_content_title',''),(290680,42442,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(290681,42442,'blocks_1_split_5050_content_heading','Overview'),(290682,42442,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(290683,42442,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(290684,42442,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(290685,42442,'blocks_1_split_5050_content_actions',''),(290686,42442,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(290687,42442,'blocks_1_split_5050_content',''),(290688,42442,'_blocks_1_split_5050_content','field_61767afceb8ba'),(290689,42442,'blocks_2_acfe_flexible_toggle',''),(290690,42442,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(290691,42442,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(290692,42442,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(290693,42442,'blocks_2_options_theme','#f5f5f5'),(290694,42442,'_blocks_2_options_theme','field_6176830e2ad17'),(290695,42442,'blocks_2_options',''),(290696,42442,'_blocks_2_options','field_6176830e2ad16'),(290697,42442,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(290698,42442,'_blocks_2_text_block_heading','field_617669d413097'),(290699,42442,'blocks_2_text_block_content',''),(290700,42442,'_blocks_2_text_block_content','field_617669ec13098'),(290701,42442,'blocks_3_acfe_flexible_toggle',''),(290702,42442,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(290703,42442,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(290704,42442,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(290705,42442,'blocks_3_options_theme','#f5f5f5'),(290706,42442,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(290707,42442,'blocks_3_options_reverse','0'),(290708,42442,'_blocks_3_options_reverse','field_61768049bb8ac'),(290709,42442,'blocks_3_options',''),(290710,42442,'_blocks_3_options','field_617682517c334'),(290711,42442,'blocks_3_split_5050_image','40618'),(290712,42442,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(290713,42442,'blocks_3_split_5050_video',''),(290714,42442,'_blocks_3_split_5050_video','field_6239f3160848a'),(290715,42442,'blocks_3_split_5050_content_title',''),(290716,42442,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(290717,42442,'blocks_3_split_5050_content_heading',''),(290718,42442,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(290719,42442,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n· <strong>Bones</strong> – Providing structure and protecting vital organs.\r\n\r\n· <strong>Muscles</strong> – Enabling movement by contracting and relaxing.\r\n\r\n· <strong>Joints</strong> – Connecting bones and allowing flexibility and a range of motion.\r\n\r\n· <strong>Connective Tissues</strong> – Including tendons, ligaments, and cartilage, which support and stabilise the system.'),(290720,42442,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(290721,42442,'blocks_3_split_5050_content_actions',''),(290722,42442,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(290723,42442,'blocks_3_split_5050_content',''),(290724,42442,'_blocks_3_split_5050_content','field_61767afceb8ba'),(290725,42442,'blocks_4_acfe_flexible_toggle',''),(290726,42442,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(290727,42442,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(290728,42442,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(290729,42442,'blocks_4_options_theme','#f5f5f5'),(290730,42442,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(290731,42442,'blocks_4_options_reverse','0'),(290732,42442,'_blocks_4_options_reverse','field_61768049bb8ac'),(290733,42442,'blocks_4_options',''),(290734,42442,'_blocks_4_options','field_617682517c334'),(290735,42442,'blocks_4_split_5050_image','41330'),(290736,42442,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(290737,42442,'blocks_4_split_5050_video',''),(290738,42442,'_blocks_4_split_5050_video','field_6239f3160848a'),(290739,42442,'blocks_4_split_5050_content_title',''),(290740,42442,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(290741,42442,'blocks_4_split_5050_content_heading',''),(290742,42442,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(290743,42442,'blocks_4_split_5050_content_text','Maintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(290744,42442,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(290745,42442,'blocks_4_split_5050_content_actions',''),(290746,42442,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(290747,42442,'blocks_4_split_5050_content',''),(290748,42442,'_blocks_4_split_5050_content','field_61767afceb8ba'),(290749,42442,'blocks_5_acfe_flexible_toggle',''),(290750,42442,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(290751,42442,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(290752,42442,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(290753,42442,'blocks_5_options_theme','#b61234'),(290754,42442,'_blocks_5_options_theme','field_6176830e2ad17'),(290755,42442,'blocks_5_options',''),(290756,42442,'_blocks_5_options','field_6176830e2ad16'),(290757,42442,'blocks_5_text_block_heading','Who Should Study MSK?'),(290758,42442,'_blocks_5_text_block_heading','field_617669d413097'),(290759,42442,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(290760,42442,'_blocks_5_text_block_content','field_617669ec13098'),(290761,42442,'blocks_6_acfe_flexible_toggle',''),(290762,42442,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(290763,42442,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(290764,42442,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(290765,42442,'blocks_6_options_theme','#b61234'),(290766,42442,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(290767,42442,'blocks_6_options',''),(290768,42442,'_blocks_6_options','field_6177cfcd8140f'),(290769,42442,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(290770,42442,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(290771,42442,'blocks_6_tabs_0_tab_content_title','Aspiring Healthcare Professionals'),(290772,42442,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(290773,42442,'blocks_6_tabs_0_tab_content_heading','Aspiring Healthcare Professionals'),(290774,42442,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(290775,42442,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(290776,42442,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(290777,42442,'blocks_6_tabs_0_tab_content_actions',''),(290778,42442,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(290779,42442,'blocks_6_tabs_0_tab_content',''),(290780,42442,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(290781,42442,'blocks_6_tabs_0_tab_image','41542'),(290782,42442,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(290783,42442,'blocks_6_tabs_1_tab_label','Current Practitioners'),(290784,42442,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(290785,42442,'blocks_6_tabs_1_tab_content_title','Current Practitioners'),(290786,42442,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(290787,42442,'blocks_6_tabs_1_tab_content_heading','Current Practitioners'),(290788,42442,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(290789,42442,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(290790,42442,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(290791,42442,'blocks_6_tabs_1_tab_content_actions',''),(290792,42442,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(290793,42442,'blocks_6_tabs_1_tab_content',''),(290794,42442,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(290795,42442,'blocks_6_tabs_1_tab_image','41505'),(290796,42442,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(290797,42442,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(290798,42442,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(290799,42442,'blocks_6_tabs_2_tab_content_title','Fitness and Sports Professionals'),(290800,42442,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(290801,42442,'blocks_6_tabs_2_tab_content_heading','Fitness and Sports Professionals'),(290802,42442,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(290803,42442,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(290804,42442,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(290805,42442,'blocks_6_tabs_2_tab_content_actions',''),(290806,42442,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(290807,42442,'blocks_6_tabs_2_tab_content',''),(290808,42442,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(290809,42442,'blocks_6_tabs_2_tab_image','41539'),(290810,42442,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(290811,42442,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(290812,42442,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(290813,42442,'blocks_6_tabs_3_tab_content_title','Educators and Researchers'),(290814,42442,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(290815,42442,'blocks_6_tabs_3_tab_content_heading','Educators and Researchers'),(290816,42442,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(290817,42442,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(290818,42442,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(290819,42442,'blocks_6_tabs_3_tab_content_actions',''),(290820,42442,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(290821,42442,'blocks_6_tabs_3_tab_content',''),(290822,42442,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(290823,42442,'blocks_6_tabs_3_tab_image','41502'),(290824,42442,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(290825,42442,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(290826,42442,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(290827,42442,'blocks_6_tabs_4_tab_content_title','Ergonomists and Occupational Health Specialists'),(290828,42442,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(290829,42442,'blocks_6_tabs_4_tab_content_heading','Ergonomists and Occupational Health Specialists'),(290830,42442,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(290831,42442,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(290832,42442,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(290833,42442,'blocks_6_tabs_4_tab_content_actions',''),(290834,42442,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(290835,42442,'blocks_6_tabs_4_tab_content',''),(290836,42442,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(290837,42442,'blocks_6_tabs_4_tab_image','41506'),(290838,42442,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(290839,42442,'blocks_6_tabs','5'),(290840,42442,'_blocks_6_tabs','field_6177cff281419'),(290841,42442,'blocks_7_acfe_flexible_toggle',''),(290842,42442,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(290843,42442,'blocks_7_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(290844,42442,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(290845,42442,'blocks_7_options_theme','#ffffff'),(290846,42442,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(290847,42442,'blocks_7_options_state','0'),(290848,42442,'_blocks_7_options_state','field_6239fcb7508c5'),(290849,42442,'blocks_7_options',''),(290850,42442,'_blocks_7_options','field_6177e2991ac44'),(290851,42442,'blocks_7_content_title','Common MSK Conditions'),(290852,42442,'_blocks_7_content_title','field_64d237e8bb1e2'),(290853,42442,'blocks_7_content_heading','Common MSK Conditions'),(290854,42442,'_blocks_7_content_heading','field_64d237e8bb1e3'),(290855,42442,'blocks_7_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(290856,42442,'_blocks_7_content_text','field_64d237e8bb1e4'),(290857,42442,'blocks_7_content_actions',''),(290858,42442,'_blocks_7_content_actions','field_64d237e8bb1e5'),(290859,42442,'blocks_7_content_align','right'),(290860,42442,'_blocks_7_content_align','field_64d2443e6b6aa'),(290861,42442,'blocks_7_content',''),(290862,42442,'_blocks_7_content','field_64d237e8bb1e1'),(290863,42442,'blocks_7_accordion_content','custom'),(290864,42442,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(290865,42442,'blocks_7_accordion_items_0_title','Osteoarthritis'),(290866,42442,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(290867,42442,'blocks_7_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(290868,42442,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(290869,42442,'blocks_7_accordion_items_1_title','Rheumatoid Arthritis'),(290870,42442,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(290871,42442,'blocks_7_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(290872,42442,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(290873,42442,'blocks_7_accordion_items_2_title','Back Pain'),(290874,42442,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(290875,42442,'blocks_7_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(290876,42442,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(290877,42442,'blocks_7_accordion_items_3_title','Osteoporosis'),(290878,42442,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(290879,42442,'blocks_7_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(290880,42442,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(290881,42442,'blocks_7_accordion_items_4_title','Tendinitis'),(290882,42442,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(290883,42442,'blocks_7_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(290884,42442,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(290885,42442,'blocks_7_accordion_items_5_title','Carpal Tunnel Syndrome'),(290886,42442,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(290887,42442,'blocks_7_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(290888,42442,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(290889,42442,'blocks_7_accordion_items_6_title','Fibromyalgia'),(290890,42442,'_blocks_7_accordion_items_6_title','field_6177e2991ac4d'),(290891,42442,'blocks_7_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(290892,42442,'_blocks_7_accordion_items_6_text','field_6177e2991ac4e'),(290893,42442,'blocks_7_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(290894,42442,'_blocks_7_accordion_items_7_title','field_6177e2991ac4d'),(290895,42442,'blocks_7_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(290896,42442,'_blocks_7_accordion_items_7_text','field_6177e2991ac4e'),(290897,42442,'blocks_7_accordion_items','8'),(290898,42442,'_blocks_7_accordion_items','field_6177e2991ac4c'),(290899,42442,'blocks_7_actions',''),(290900,42442,'_blocks_7_actions','field_61a746a817f7a'),(290901,42442,'blocks_8_acfe_flexible_toggle',''),(290902,42442,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(290903,42442,'blocks_8_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(290904,42442,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(290905,42442,'blocks_8_options_theme','#ffffff'),(290906,42442,'_blocks_8_options_theme','field_6176830e2ad17'),(290907,42442,'blocks_8_options',''),(290908,42442,'_blocks_8_options','field_6176830e2ad16'),(290909,42442,'blocks_8_text_block_heading',''),(290910,42442,'_blocks_8_text_block_heading','field_617669d413097'),(290911,42442,'blocks_8_text_block_content',''),(290912,42442,'_blocks_8_text_block_content','field_617669ec13098'),(290913,42442,'blocks_9_acfe_flexible_toggle',''),(290914,42442,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(290915,42442,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(290916,42442,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(290917,42442,'blocks_9_options_theme','#ffffff'),(290918,42442,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(290919,42442,'blocks_9_options_reverse','0'),(290920,42442,'_blocks_9_options_reverse','field_61768049bb8ac'),(290921,42442,'blocks_9_options',''),(290922,42442,'_blocks_9_options','field_617682517c334'),(290923,42442,'blocks_9_split_5050_image',''),(290924,42442,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(290925,42442,'blocks_9_split_5050_video',''),(290926,42442,'_blocks_9_split_5050_video','field_6239f3160848a'),(290927,42442,'blocks_9_split_5050_content_title',''),(290928,42442,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(290929,42442,'blocks_9_split_5050_content_heading',''),(290930,42442,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(290931,42442,'blocks_9_split_5050_content_text',''),(290932,42442,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(290933,42442,'blocks_9_split_5050_content_actions',''),(290934,42442,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(290935,42442,'blocks_9_split_5050_content',''),(290936,42442,'_blocks_9_split_5050_content','field_61767afceb8ba'),(290937,42442,'blocks_10_acfe_flexible_toggle',''),(290938,42442,'_blocks_10_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(290939,42442,'blocks_10_acfe_flexible_layout_title','Steps'),(290940,42442,'_blocks_10_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(290941,42442,'blocks_10_row_content_title','gfdsafdg'),(290942,42442,'_blocks_10_row_content_title','field_64888cd1e26e0'),(290943,42442,'blocks_10_row_content_heading','agfdfdag'),(290944,42442,'_blocks_10_row_content_heading','field_64888cd9e26e1'),(290945,42442,'blocks_10_row_content_text','fdshggfdshgfsh'),(290946,42442,'_blocks_10_row_content_text','field_64888ce2e26e2'),(290947,42442,'blocks_10_row_content_actions_0_button',''),(290948,42442,'_blocks_10_row_content_actions_0_button','field_64888d02e26e4'),(290949,42442,'blocks_10_row_content_actions_1_button',''),(290950,42442,'_blocks_10_row_content_actions_1_button','field_64888d02e26e4'),(290951,42442,'blocks_10_row_content_actions','2'),(290952,42442,'_blocks_10_row_content_actions','field_64888cf5e26e3'),(290953,42442,'blocks_10_row_content',''),(290954,42442,'_blocks_10_row_content','field_64888cb0e26df'),(290955,42442,'blocks_10_steps',''),(290956,42442,'_blocks_10_steps','field_64888d44e26e5'),(290957,42442,'blocks_11_acfe_flexible_toggle',''),(290958,42442,'_blocks_11_acfe_flexible_toggle','field_layout_618105a1442de_toggle'),(290959,42442,'blocks_11_acfe_flexible_layout_title','Section Slider'),(290960,42442,'_blocks_11_acfe_flexible_layout_title','field_layout_618105a1442de_title'),(290961,42442,'blocks_11_section_slider_slides_0_image','41522'),(290962,42442,'_blocks_11_section_slider_slides_0_image','field_618105d3442ea'),(290963,42442,'blocks_11_section_slider_slides_0_content_title','fdsgfdgs'),(290964,42442,'_blocks_11_section_slider_slides_0_content_title','field_618105a1442e8'),(290965,42442,'blocks_11_section_slider_slides_0_content_heading','fdgfds'),(290966,42442,'_blocks_11_section_slider_slides_0_content_heading','field_618106c1e17a2'),(290967,42442,'blocks_11_section_slider_slides_0_content_text','fdsgfds'),(290968,42442,'_blocks_11_section_slider_slides_0_content_text','field_618105a1442e9'),(290969,42442,'blocks_11_section_slider_slides_0_content_button',''),(290970,42442,'_blocks_11_section_slider_slides_0_content_button','field_618106cae17a3'),(290971,42442,'blocks_11_section_slider_slides_0_content',''),(290972,42442,'_blocks_11_section_slider_slides_0_content','field_618105d9442eb'),(290973,42442,'blocks_11_section_slider_slides_1_image','41492'),(290974,42442,'_blocks_11_section_slider_slides_1_image','field_618105d3442ea'),(290975,42442,'blocks_11_section_slider_slides_1_content_title','fgfds'),(290976,42442,'_blocks_11_section_slider_slides_1_content_title','field_618105a1442e8'),(290977,42442,'blocks_11_section_slider_slides_1_content_heading','fdgfdgs'),(290978,42442,'_blocks_11_section_slider_slides_1_content_heading','field_618106c1e17a2'),(290979,42442,'blocks_11_section_slider_slides_1_content_text','fdfdgs'),(290980,42442,'_blocks_11_section_slider_slides_1_content_text','field_618105a1442e9'),(290981,42442,'blocks_11_section_slider_slides_1_content_button',''),(290982,42442,'_blocks_11_section_slider_slides_1_content_button','field_618106cae17a3'),(290983,42442,'blocks_11_section_slider_slides_1_content',''),(290984,42442,'_blocks_11_section_slider_slides_1_content','field_618105d9442eb'),(290985,42442,'blocks_11_section_slider_slides','2'),(290986,42442,'_blocks_11_section_slider_slides','field_618105a1442e7'),(290987,42442,'blocks_12_acfe_flexible_toggle',''),(290988,42442,'_blocks_12_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(290989,42442,'blocks_12_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(290990,42442,'_blocks_12_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(290991,42442,'blocks_12_options_theme','#b61234'),(290992,42442,'_blocks_12_options_theme','field_6176830e2ad17'),(290993,42442,'blocks_12_options',''),(290994,42442,'_blocks_12_options','field_6176830e2ad16'),(290995,42442,'blocks_12_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(290996,42442,'_blocks_12_text_block_heading','field_617669d413097'),(290997,42442,'blocks_12_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(290998,42442,'_blocks_12_text_block_content','field_617669ec13098'),(290999,42442,'blocks_13_acfe_flexible_toggle',''),(291000,42442,'_blocks_13_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(291001,42442,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(291002,42442,'_blocks_13_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(291003,42442,'blocks_13_options_theme','#b61234'),(291004,42442,'_blocks_13_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(291005,42442,'blocks_13_options_format','row'),(291006,42442,'_blocks_13_options_format','field_64bfde9a90690'),(291007,42442,'blocks_13_options',''),(291008,42442,'_blocks_13_options','field_64bfdd9b90684'),(291009,42442,'blocks_13_icon_row_items_0_icon','pass-rate.svg'),(291010,42442,'_blocks_13_icon_row_items_0_icon','field_64bfdd9b9068d'),(291011,42442,'blocks_13_icon_row_items_0_label','More Accurate Assessments'),(291012,42442,'_blocks_13_icon_row_items_0_label','field_64bfdd9c9068e'),(291013,42442,'blocks_13_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(291014,42442,'_blocks_13_icon_row_items_0_text','field_64bfdd9c9068f'),(291015,42442,'blocks_13_icon_row_items_1_icon','exceptional-support.svg'),(291016,42442,'_blocks_13_icon_row_items_1_icon','field_64bfdd9b9068d'),(291017,42442,'blocks_13_icon_row_items_1_label','Personalised Movement Strategies'),(291018,42442,'_blocks_13_icon_row_items_1_label','field_64bfdd9c9068e'),(291019,42442,'blocks_13_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(291020,42442,'_blocks_13_icon_row_items_1_text','field_64bfdd9c9068f'),(291021,42442,'blocks_13_icon_row_items_2_icon','lifetime-course-access.svg'),(291022,42442,'_blocks_13_icon_row_items_2_icon','field_64bfdd9b9068d'),(291023,42442,'blocks_13_icon_row_items_2_label','Injury Prevention and Longevity'),(291024,42442,'_blocks_13_icon_row_items_2_label','field_64bfdd9c9068e'),(291025,42442,'blocks_13_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(291026,42442,'_blocks_13_icon_row_items_2_text','field_64bfdd9c9068f'),(291027,42442,'blocks_13_icon_row_items_3_icon','recognised.svg'),(291028,42442,'_blocks_13_icon_row_items_3_icon','field_64bfdd9b9068d'),(291029,42442,'blocks_13_icon_row_items_3_label','Optimised Performance'),(291030,42442,'_blocks_13_icon_row_items_3_label','field_64bfdd9c9068e'),(291031,42442,'blocks_13_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(291032,42442,'_blocks_13_icon_row_items_3_text','field_64bfdd9c9068f'),(291033,42442,'blocks_13_icon_row_items','4'),(291034,42442,'_blocks_13_icon_row_items','field_64bfdd9b9068c'),(291035,42442,'blocks_14_acfe_flexible_toggle',''),(291036,42442,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(291037,42442,'blocks_14_acfe_flexible_layout_title','Text Block'),(291038,42442,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(291039,42442,'blocks_14_options_theme','#ffffff'),(291040,42442,'_blocks_14_options_theme','field_6176830e2ad17'),(291041,42442,'blocks_14_options',''),(291042,42442,'_blocks_14_options','field_6176830e2ad16'),(291043,42442,'blocks_14_text_block_heading','What is MSK?'),(291044,42442,'_blocks_14_text_block_heading','field_617669d413097'),(291045,42442,'blocks_14_text_block_content','Have you been hearing the term MSK and wondering what it means? Or maybe you’re considering studying musculoskeletal (MSK) health but aren’t sure if it’s the right fit for you?\r\n\r\nMSK refers to the musculoskeletal system—the network of muscles, bones, joints, and connective tissues that support movement and function. It’s a key part of everyday life, allowing us to move, lift, and stay active. When something goes wrong with this system, it can lead to pain, reduced mobility, and long-term health issues.\r\n\r\nIn the UK, MSK conditions are common, affecting over 20 million people. They can range from minor aches and pains to chronic disorders like arthritis and osteoporosis. While many people associate MSK health with medical conditions, the reality is that movement professionals, fitness trainers, and rehabilitation specialists also play a crucial role in maintaining and improving MSK function.\r\n\r\nAt Biomechanics Education, we believe that understanding musculoskeletal health isn’t just for clinicians—it’s essential for anyone working with human movement. Whether you’re in fitness, rehabilitation, or workplace health, learning about MSK can help you support better movement, prevent injuries, and improve quality of life.'),(291046,42442,'_blocks_14_text_block_content','field_617669ec13098'),(291047,42438,'blocks_0_link_stack_5_label','6.'),(291048,42438,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(291049,42438,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(291050,42438,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(291051,42438,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(291052,42438,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(291053,42438,'blocks_1_acfe_flexible_toggle',''),(291054,42438,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(291055,42438,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(291056,42438,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(291057,42438,'blocks_1_options_theme','#ffffff'),(291058,42438,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(291059,42438,'blocks_1_options_reverse','0'),(291060,42438,'_blocks_1_options_reverse','field_61768049bb8ac'),(291061,42438,'blocks_1_options',''),(291062,42438,'_blocks_1_options','field_617682517c334'),(291063,42438,'blocks_1_split_5050_image','40615'),(291064,42438,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(291065,42438,'blocks_1_split_5050_video',''),(291066,42438,'_blocks_1_split_5050_video','field_6239f3160848a'),(291067,42438,'blocks_1_split_5050_content_title',''),(291068,42438,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(291069,42438,'blocks_1_split_5050_content_heading','Overview'),(291070,42438,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(291071,42438,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(291072,42438,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(291073,42438,'blocks_1_split_5050_content_actions',''),(291074,42438,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(291075,42438,'blocks_1_split_5050_content',''),(291076,42438,'_blocks_1_split_5050_content','field_61767afceb8ba'),(291077,42438,'blocks_2_acfe_flexible_toggle',''),(291078,42438,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(291079,42438,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(291080,42438,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(291081,42438,'blocks_2_options_theme','#f5f5f5'),(291082,42438,'_blocks_2_options_theme','field_6176830e2ad17'),(291083,42438,'blocks_2_options',''),(291084,42438,'_blocks_2_options','field_6176830e2ad16'),(291085,42438,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(291086,42438,'_blocks_2_text_block_heading','field_617669d413097'),(291087,42438,'blocks_2_text_block_content',''),(291088,42438,'_blocks_2_text_block_content','field_617669ec13098'),(291089,42438,'blocks_3_acfe_flexible_toggle',''),(291090,42438,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(291091,42438,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(291092,42438,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(291093,42438,'blocks_3_options_theme','#f5f5f5'),(291094,42438,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(291095,42438,'blocks_3_options_reverse','1'),(291096,42438,'_blocks_3_options_reverse','field_61768049bb8ac'),(291097,42438,'blocks_3_options',''),(291098,42438,'_blocks_3_options','field_617682517c334'),(291099,42438,'blocks_3_split_5050_image','40618'),(291100,42438,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(291101,42438,'blocks_3_split_5050_video',''),(291102,42438,'_blocks_3_split_5050_video','field_6239f3160848a'),(291103,42438,'blocks_3_split_5050_content_title',''),(291104,42438,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(291105,42438,'blocks_3_split_5050_content_heading',''),(291106,42438,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(291107,42438,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(291108,42438,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(291109,42438,'blocks_3_split_5050_content_actions',''),(291110,42438,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(291111,42438,'blocks_3_split_5050_content',''),(291112,42438,'_blocks_3_split_5050_content','field_61767afceb8ba'),(291113,42438,'blocks_4_acfe_flexible_toggle','1'),(291114,42438,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(291115,42438,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(291116,42438,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(291117,42438,'blocks_4_options_theme','#f5f5f5'),(291118,42438,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(291119,42438,'blocks_4_options_reverse','1'),(291120,42438,'_blocks_4_options_reverse','field_61768049bb8ac'),(291121,42438,'blocks_4_options',''),(291122,42438,'_blocks_4_options','field_617682517c334'),(291123,42438,'blocks_4_split_5050_image','41330'),(291124,42438,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(291125,42438,'blocks_4_split_5050_video',''),(291126,42438,'_blocks_4_split_5050_video','field_6239f3160848a'),(291127,42438,'blocks_4_split_5050_content_title',''),(291128,42438,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(291129,42438,'blocks_4_split_5050_content_heading',''),(291130,42438,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(291131,42438,'blocks_4_split_5050_content_text',''),(291132,42438,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(291133,42438,'blocks_4_split_5050_content_actions',''),(291134,42438,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(291135,42438,'blocks_4_split_5050_content',''),(291136,42438,'_blocks_4_split_5050_content','field_61767afceb8ba'),(291137,42438,'blocks_5_acfe_flexible_toggle',''),(291138,42438,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(291139,42438,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(291140,42438,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(291141,42438,'blocks_5_options_theme','#b61234'),(291142,42438,'_blocks_5_options_theme','field_6176830e2ad17'),(291143,42438,'blocks_5_options',''),(291144,42438,'_blocks_5_options','field_6176830e2ad16'),(291145,42438,'blocks_5_text_block_heading','Who Should Study MSK?'),(291146,42438,'_blocks_5_text_block_heading','field_617669d413097'),(291147,42438,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(291148,42438,'_blocks_5_text_block_content','field_617669ec13098'),(291149,42438,'blocks_6_acfe_flexible_toggle','1'),(291150,42438,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(291151,42438,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(291152,42438,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(291153,42438,'blocks_6_options_theme','#b61234'),(291154,42438,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(291155,42438,'blocks_6_options',''),(291156,42438,'_blocks_6_options','field_6177cfcd8140f'),(291157,42438,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(291158,42438,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(291159,42438,'blocks_6_tabs_0_tab_content_title',''),(291160,42438,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(291161,42438,'blocks_6_tabs_0_tab_content_heading',''),(291162,42438,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(291163,42438,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(291164,42438,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(291165,42438,'blocks_6_tabs_0_tab_content_actions',''),(291166,42438,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(291167,42438,'blocks_6_tabs_0_tab_content',''),(291168,42438,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(291169,42438,'blocks_6_tabs_0_tab_image','41542'),(291170,42438,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(291171,42438,'blocks_6_tabs_1_tab_label','Current Practitioners'),(291172,42438,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(291173,42438,'blocks_6_tabs_1_tab_content_title',''),(291174,42438,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(291175,42438,'blocks_6_tabs_1_tab_content_heading',''),(291176,42438,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(291177,42438,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(291178,42438,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(291179,42438,'blocks_6_tabs_1_tab_content_actions',''),(291180,42438,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(291181,42438,'blocks_6_tabs_1_tab_content',''),(291182,42438,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(291183,42438,'blocks_6_tabs_1_tab_image','41505'),(291184,42438,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(291185,42438,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(291186,42438,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(291187,42438,'blocks_6_tabs_2_tab_content_title',''),(291188,42438,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(291189,42438,'blocks_6_tabs_2_tab_content_heading',''),(291190,42438,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(291191,42438,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(291192,42438,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(291193,42438,'blocks_6_tabs_2_tab_content_actions',''),(291194,42438,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(291195,42438,'blocks_6_tabs_2_tab_content',''),(291196,42438,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(291197,42438,'blocks_6_tabs_2_tab_image','41539'),(291198,42438,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(291199,42438,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(291200,42438,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(291201,42438,'blocks_6_tabs_3_tab_content_title',''),(291202,42438,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(291203,42438,'blocks_6_tabs_3_tab_content_heading',''),(291204,42438,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(291205,42438,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(291206,42438,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(291207,42438,'blocks_6_tabs_3_tab_content_actions',''),(291208,42438,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(291209,42438,'blocks_6_tabs_3_tab_content',''),(291210,42438,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(291211,42438,'blocks_6_tabs_3_tab_image','41502'),(291212,42438,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(291213,42438,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(291214,42438,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(291215,42438,'blocks_6_tabs_4_tab_content_title',''),(291216,42438,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(291217,42438,'blocks_6_tabs_4_tab_content_heading',''),(291218,42438,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(291219,42438,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(291220,42438,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(291221,42438,'blocks_6_tabs_4_tab_content_actions',''),(291222,42438,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(291223,42438,'blocks_6_tabs_4_tab_content',''),(291224,42438,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(291225,42438,'blocks_6_tabs_4_tab_image','41506'),(291226,42438,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(291227,42438,'blocks_6_tabs','5'),(291228,42438,'_blocks_6_tabs','field_6177cff281419'),(291313,42438,'blocks_10_acfe_flexible_toggle',''),(291314,42438,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(291315,42438,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(291316,42438,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(291317,42438,'blocks_10_options_theme','#f5f5f5'),(291318,42438,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(291319,42438,'blocks_10_options_reverse','1'),(291320,42438,'_blocks_10_options_reverse','field_61768049bb8ac'),(291321,42438,'blocks_10_options',''),(291322,42438,'_blocks_10_options','field_617682517c334'),(291323,42438,'blocks_10_split_5050_image','41498'),(291324,42438,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(291325,42438,'blocks_10_split_5050_video',''),(291326,42438,'_blocks_10_split_5050_video','field_6239f3160848a'),(291327,42438,'blocks_10_split_5050_content_title',''),(291328,42438,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(291329,42438,'blocks_10_split_5050_content_heading',''),(291330,42438,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(291331,42438,'blocks_10_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(291332,42438,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(291333,42438,'blocks_10_split_5050_content_actions',''),(291334,42438,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(291335,42438,'blocks_10_split_5050_content',''),(291336,42438,'_blocks_10_split_5050_content','field_61767afceb8ba'),(291337,42438,'blocks_11_acfe_flexible_toggle',''),(291338,42438,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(291339,42438,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(291340,42438,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(291341,42438,'blocks_11_options_theme','#f5f5f5'),(291342,42438,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(291343,42438,'blocks_11_options_reverse','1'),(291344,42438,'_blocks_11_options_reverse','field_61768049bb8ac'),(291345,42438,'blocks_11_options',''),(291346,42438,'_blocks_11_options','field_617682517c334'),(291347,42438,'blocks_11_split_5050_image','40387'),(291348,42438,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(291349,42438,'blocks_11_split_5050_video',''),(291350,42438,'_blocks_11_split_5050_video','field_6239f3160848a'),(291351,42438,'blocks_11_split_5050_content_title',''),(291352,42438,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(291353,42438,'blocks_11_split_5050_content_heading',''),(291354,42438,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(291355,42438,'blocks_11_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(291356,42438,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(291357,42438,'blocks_11_split_5050_content_actions',''),(291358,42438,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(291359,42438,'blocks_11_split_5050_content',''),(291360,42438,'_blocks_11_split_5050_content','field_61767afceb8ba'),(291361,42438,'blocks_12_acfe_flexible_toggle',''),(291362,42438,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(291363,42438,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(291364,42438,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(291365,42438,'blocks_12_options_theme','#f5f5f5'),(291366,42438,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(291367,42438,'blocks_12_options_reverse','1'),(291368,42438,'_blocks_12_options_reverse','field_61768049bb8ac'),(291369,42438,'blocks_12_options',''),(291370,42438,'_blocks_12_options','field_617682517c334'),(291371,42438,'blocks_12_split_5050_image','18856'),(291372,42438,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(291373,42438,'blocks_12_split_5050_video',''),(291374,42438,'_blocks_12_split_5050_video','field_6239f3160848a'),(291375,42438,'blocks_12_split_5050_content_title',''),(291376,42438,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(291377,42438,'blocks_12_split_5050_content_heading',''),(291378,42438,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(291379,42438,'blocks_12_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(291380,42438,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(291381,42438,'blocks_12_split_5050_content_actions',''),(291382,42438,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(291383,42438,'blocks_12_split_5050_content',''),(291384,42438,'_blocks_12_split_5050_content','field_61767afceb8ba'),(291385,42438,'blocks_13_acfe_flexible_toggle',''),(291386,42438,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(291387,42438,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(291388,42438,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(291389,42438,'blocks_13_options_theme','#b61234'),(291390,42438,'_blocks_13_options_theme','field_6176830e2ad17'),(291391,42438,'blocks_13_options',''),(291392,42438,'_blocks_13_options','field_6176830e2ad16'),(291393,42438,'blocks_13_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(291394,42438,'_blocks_13_text_block_heading','field_617669d413097'),(291395,42438,'blocks_13_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(291396,42438,'_blocks_13_text_block_content','field_617669ec13098'),(291457,42438,'blocks_17_acfe_flexible_toggle',''),(291458,42438,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(291459,42438,'blocks_17_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(291460,42438,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(291461,42438,'blocks_17_options_theme','#ffffff'),(291462,42438,'_blocks_17_options_theme','field_6176830e2ad17'),(291463,42438,'blocks_17_options',''),(291464,42438,'_blocks_17_options','field_6176830e2ad16'),(291465,42438,'blocks_17_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(291466,42438,'_blocks_17_text_block_heading','field_617669d413097'),(291467,42438,'blocks_17_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(291468,42438,'_blocks_17_text_block_content','field_617669ec13098'),(291469,42438,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(291470,42438,'_hero_actions_0_button','field_61757281285eb'),(291657,42443,'hide_hero','0'),(291658,42443,'_hide_hero','field_66a2380fcda39'),(291659,42443,'hero_title','What is MSK?'),(291660,42443,'_hero_title','field_617571fe285e8'),(291661,42443,'hero_text','An Introduction and one-stop-shop to Musculoskeletal (MSK) Health and Intrinsic Biomechanics'),(291662,42443,'_hero_text','field_6175723c285e9'),(291663,42443,'hero_actions','1'),(291664,42443,'_hero_actions','field_61757270285ea'),(291665,42443,'hero_style','default'),(291666,42443,'_hero_style','field_62051d9dc5324'),(291667,42443,'hero_image_pos_x','right'),(291668,42443,'_hero_image_pos_x','field_62ec3d05390bb'),(291669,42443,'hero_image_pos_y','top'),(291670,42443,'_hero_image_pos_y','field_62ec3d05390bc'),(291671,42443,'hero_image_pos',''),(291672,42443,'_hero_image_pos','field_62ec3d05390ba'),(291673,42443,'fft_hide_from_listings','0'),(291674,42443,'_fft_hide_from_listings','field_61f1320446ab2'),(291675,42443,'post_format','402'),(291676,42443,'_post_format','field_61756bfb51898'),(291677,42443,'post_author',''),(291678,42443,'_post_author','field_62ec389d22113'),(291679,42443,'post_reviewer',''),(291680,42443,'_post_reviewer','field_627140a2a9800'),(291681,42443,'post_table_of_contents','0'),(291682,42443,'_post_table_of_contents','field_65c503bc846a6'),(291683,42443,'blocks','a:19:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:10:\"text_block\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"text_block\";i:18;s:11:\"promo_panel\";}'),(291684,42443,'_blocks','field_6176696113096'),(291685,42443,'_thumbnail_id','41331'),(291686,42443,'__thumbnail_id','field_617570855ddaf'),(291687,42443,'blocks_0_acfe_flexible_toggle',''),(291688,42443,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(291689,42443,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(291690,42443,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(291691,42443,'blocks_0_options_theme','#ffffff'),(291692,42443,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(291693,42443,'blocks_0_options',''),(291694,42443,'_blocks_0_options','field_6177b758246ae'),(291695,42443,'blocks_0_link_stack_content_title',''),(291696,42443,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(291697,42443,'blocks_0_link_stack_content_heading','What is MSK?'),(291698,42443,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(291699,42443,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(291700,42443,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(291701,42443,'blocks_0_link_stack_content_actions_0_button',''),(291702,42443,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(291703,42443,'blocks_0_link_stack_content_actions','1'),(291704,42443,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(291705,42443,'blocks_0_link_stack_content',''),(291706,42443,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(291707,42443,'blocks_0_link_stack_0_label','1.'),(291708,42443,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(291709,42443,'blocks_0_link_stack_0_title','Overview'),(291710,42443,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(291711,42443,'blocks_0_link_stack_0_url','#overview'),(291712,42443,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(291713,42443,'blocks_0_link_stack_1_label','2.'),(291714,42443,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(291715,42443,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(291716,42443,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(291717,42443,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(291718,42443,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(291719,42443,'blocks_0_link_stack_2_label','3.'),(291720,42443,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(291721,42443,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(291722,42443,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(291723,42443,'blocks_0_link_stack_2_url','#who-should-study-msk'),(291724,42443,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(291725,42443,'blocks_0_link_stack_3_label','4.'),(291726,42443,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(291727,42443,'blocks_0_link_stack_3_title','Common MSK Conditions'),(291728,42443,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(291729,42443,'blocks_0_link_stack_3_url','#common-msk-conditions'),(291730,42443,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(291731,42443,'blocks_0_link_stack_4_label','5.'),(291732,42443,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(291733,42443,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(291734,42443,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(291735,42443,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(291736,42443,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(291737,42443,'blocks_0_link_stack_5_label','6.'),(291738,42443,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(291739,42443,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(291740,42443,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(291741,42443,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(291742,42443,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(291743,42443,'blocks_0_link_stack','6'),(291744,42443,'_blocks_0_link_stack','field_6177b7f600cff'),(291745,42443,'blocks_1_acfe_flexible_toggle',''),(291746,42443,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(291747,42443,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(291748,42443,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(291749,42443,'blocks_1_options_theme','#f5f5f5'),(291750,42443,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(291751,42443,'blocks_1_options_reverse','0'),(291752,42443,'_blocks_1_options_reverse','field_61768049bb8ac'),(291753,42443,'blocks_1_options',''),(291754,42443,'_blocks_1_options','field_617682517c334'),(291755,42443,'blocks_1_split_5050_image','40615'),(291756,42443,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(291757,42443,'blocks_1_split_5050_video',''),(291758,42443,'_blocks_1_split_5050_video','field_6239f3160848a'),(291759,42443,'blocks_1_split_5050_content_title',''),(291760,42443,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(291761,42443,'blocks_1_split_5050_content_heading','Overview'),(291762,42443,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(291763,42443,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(291764,42443,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(291765,42443,'blocks_1_split_5050_content_actions',''),(291766,42443,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(291767,42443,'blocks_1_split_5050_content',''),(291768,42443,'_blocks_1_split_5050_content','field_61767afceb8ba'),(291769,42443,'blocks_2_acfe_flexible_toggle',''),(291770,42443,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(291771,42443,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(291772,42443,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(291773,42443,'blocks_2_options_theme','#f5f5f5'),(291774,42443,'_blocks_2_options_theme','field_6176830e2ad17'),(291775,42443,'blocks_2_options',''),(291776,42443,'_blocks_2_options','field_6176830e2ad16'),(291777,42443,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(291778,42443,'_blocks_2_text_block_heading','field_617669d413097'),(291779,42443,'blocks_2_text_block_content',''),(291780,42443,'_blocks_2_text_block_content','field_617669ec13098'),(291781,42443,'blocks_3_acfe_flexible_toggle',''),(291782,42443,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(291783,42443,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(291784,42443,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(291785,42443,'blocks_3_options_theme','#f5f5f5'),(291786,42443,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(291787,42443,'blocks_3_options_reverse','0'),(291788,42443,'_blocks_3_options_reverse','field_61768049bb8ac'),(291789,42443,'blocks_3_options',''),(291790,42443,'_blocks_3_options','field_617682517c334'),(291791,42443,'blocks_3_split_5050_image','40618'),(291792,42443,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(291793,42443,'blocks_3_split_5050_video',''),(291794,42443,'_blocks_3_split_5050_video','field_6239f3160848a'),(291795,42443,'blocks_3_split_5050_content_title',''),(291796,42443,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(291797,42443,'blocks_3_split_5050_content_heading',''),(291798,42443,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(291799,42443,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n· <strong>Bones</strong> – Providing structure and protecting vital organs.\r\n\r\n· <strong>Muscles</strong> – Enabling movement by contracting and relaxing.\r\n\r\n· <strong>Joints</strong> – Connecting bones and allowing flexibility and a range of motion.\r\n\r\n· <strong>Connective Tissues</strong> – Including tendons, ligaments, and cartilage, which support and stabilise the system.'),(291800,42443,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(291801,42443,'blocks_3_split_5050_content_actions',''),(291802,42443,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(291803,42443,'blocks_3_split_5050_content',''),(291804,42443,'_blocks_3_split_5050_content','field_61767afceb8ba'),(291805,42443,'blocks_4_acfe_flexible_toggle',''),(291806,42443,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(291807,42443,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(291808,42443,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(291809,42443,'blocks_4_options_theme','#f5f5f5'),(291810,42443,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(291811,42443,'blocks_4_options_reverse','0'),(291812,42443,'_blocks_4_options_reverse','field_61768049bb8ac'),(291813,42443,'blocks_4_options',''),(291814,42443,'_blocks_4_options','field_617682517c334'),(291815,42443,'blocks_4_split_5050_image','41330'),(291816,42443,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(291817,42443,'blocks_4_split_5050_video',''),(291818,42443,'_blocks_4_split_5050_video','field_6239f3160848a'),(291819,42443,'blocks_4_split_5050_content_title',''),(291820,42443,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(291821,42443,'blocks_4_split_5050_content_heading',''),(291822,42443,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(291823,42443,'blocks_4_split_5050_content_text','Maintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(291824,42443,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(291825,42443,'blocks_4_split_5050_content_actions',''),(291826,42443,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(291827,42443,'blocks_4_split_5050_content',''),(291828,42443,'_blocks_4_split_5050_content','field_61767afceb8ba'),(291829,42443,'blocks_5_acfe_flexible_toggle',''),(291830,42443,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(291831,42443,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(291832,42443,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(291833,42443,'blocks_5_options_theme','#b61234'),(291834,42443,'_blocks_5_options_theme','field_6176830e2ad17'),(291835,42443,'blocks_5_options',''),(291836,42443,'_blocks_5_options','field_6176830e2ad16'),(291837,42443,'blocks_5_text_block_heading','Who Should Study MSK?'),(291838,42443,'_blocks_5_text_block_heading','field_617669d413097'),(291839,42443,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(291840,42443,'_blocks_5_text_block_content','field_617669ec13098'),(291841,42443,'blocks_6_acfe_flexible_toggle',''),(291842,42443,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(291843,42443,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(291844,42443,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(291845,42443,'blocks_6_options_theme','#b61234'),(291846,42443,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(291847,42443,'blocks_6_options',''),(291848,42443,'_blocks_6_options','field_6177cfcd8140f'),(291849,42443,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(291850,42443,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(291851,42443,'blocks_6_tabs_0_tab_content_title',''),(291852,42443,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(291853,42443,'blocks_6_tabs_0_tab_content_heading',''),(291854,42443,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(291855,42443,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(291856,42443,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(291857,42443,'blocks_6_tabs_0_tab_content_actions',''),(291858,42443,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(291859,42443,'blocks_6_tabs_0_tab_content',''),(291860,42443,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(291861,42443,'blocks_6_tabs_0_tab_image','41542'),(291862,42443,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(291863,42443,'blocks_6_tabs_1_tab_label','Current Practitioners'),(291864,42443,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(291865,42443,'blocks_6_tabs_1_tab_content_title',''),(291866,42443,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(291867,42443,'blocks_6_tabs_1_tab_content_heading',''),(291868,42443,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(291869,42443,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(291870,42443,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(291871,42443,'blocks_6_tabs_1_tab_content_actions',''),(291872,42443,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(291873,42443,'blocks_6_tabs_1_tab_content',''),(291874,42443,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(291875,42443,'blocks_6_tabs_1_tab_image','41505'),(291876,42443,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(291877,42443,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(291878,42443,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(291879,42443,'blocks_6_tabs_2_tab_content_title',''),(291880,42443,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(291881,42443,'blocks_6_tabs_2_tab_content_heading',''),(291882,42443,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(291883,42443,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(291884,42443,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(291885,42443,'blocks_6_tabs_2_tab_content_actions',''),(291886,42443,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(291887,42443,'blocks_6_tabs_2_tab_content',''),(291888,42443,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(291889,42443,'blocks_6_tabs_2_tab_image','41539'),(291890,42443,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(291891,42443,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(291892,42443,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(291893,42443,'blocks_6_tabs_3_tab_content_title',''),(291894,42443,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(291895,42443,'blocks_6_tabs_3_tab_content_heading',''),(291896,42443,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(291897,42443,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(291898,42443,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(291899,42443,'blocks_6_tabs_3_tab_content_actions',''),(291900,42443,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(291901,42443,'blocks_6_tabs_3_tab_content',''),(291902,42443,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(291903,42443,'blocks_6_tabs_3_tab_image','41502'),(291904,42443,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(291905,42443,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(291906,42443,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(291907,42443,'blocks_6_tabs_4_tab_content_title',''),(291908,42443,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(291909,42443,'blocks_6_tabs_4_tab_content_heading',''),(291910,42443,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(291911,42443,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(291912,42443,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(291913,42443,'blocks_6_tabs_4_tab_content_actions',''),(291914,42443,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(291915,42443,'blocks_6_tabs_4_tab_content',''),(291916,42443,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(291917,42443,'blocks_6_tabs_4_tab_image','41506'),(291918,42443,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(291919,42443,'blocks_6_tabs','5'),(291920,42443,'_blocks_6_tabs','field_6177cff281419'),(291921,42443,'blocks_7_acfe_flexible_toggle',''),(291922,42443,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(291923,42443,'blocks_7_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(291924,42443,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(291925,42443,'blocks_7_options_theme','#ffffff'),(291926,42443,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(291927,42443,'blocks_7_options_state','0'),(291928,42443,'_blocks_7_options_state','field_6239fcb7508c5'),(291929,42443,'blocks_7_options',''),(291930,42443,'_blocks_7_options','field_6177e2991ac44'),(291931,42443,'blocks_7_content_title','Common MSK Conditions'),(291932,42443,'_blocks_7_content_title','field_64d237e8bb1e2'),(291933,42443,'blocks_7_content_heading','Common MSK Conditions'),(291934,42443,'_blocks_7_content_heading','field_64d237e8bb1e3'),(291935,42443,'blocks_7_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(291936,42443,'_blocks_7_content_text','field_64d237e8bb1e4'),(291937,42443,'blocks_7_content_actions',''),(291938,42443,'_blocks_7_content_actions','field_64d237e8bb1e5'),(291939,42443,'blocks_7_content_align','left'),(291940,42443,'_blocks_7_content_align','field_64d2443e6b6aa'),(291941,42443,'blocks_7_content',''),(291942,42443,'_blocks_7_content','field_64d237e8bb1e1'),(291943,42443,'blocks_7_accordion_content','custom'),(291944,42443,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(291945,42443,'blocks_7_accordion_items_0_title','Osteoarthritis'),(291946,42443,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(291947,42443,'blocks_7_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(291948,42443,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(291949,42443,'blocks_7_accordion_items_1_title','Rheumatoid Arthritis'),(291950,42443,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(291951,42443,'blocks_7_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(291952,42443,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(291953,42443,'blocks_7_accordion_items_2_title','Back Pain'),(291954,42443,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(291955,42443,'blocks_7_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(291956,42443,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(291957,42443,'blocks_7_accordion_items_3_title','Osteoporosis'),(291958,42443,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(291959,42443,'blocks_7_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(291960,42443,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(291961,42443,'blocks_7_accordion_items_4_title','Tendinitis'),(291962,42443,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(291963,42443,'blocks_7_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(291964,42443,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(291965,42443,'blocks_7_accordion_items_5_title','Carpal Tunnel Syndrome'),(291966,42443,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(291967,42443,'blocks_7_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(291968,42443,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(291969,42443,'blocks_7_accordion_items_6_title','Fibromyalgia'),(291970,42443,'_blocks_7_accordion_items_6_title','field_6177e2991ac4d'),(291971,42443,'blocks_7_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(291972,42443,'_blocks_7_accordion_items_6_text','field_6177e2991ac4e'),(291973,42443,'blocks_7_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(291974,42443,'_blocks_7_accordion_items_7_title','field_6177e2991ac4d'),(291975,42443,'blocks_7_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(291976,42443,'_blocks_7_accordion_items_7_text','field_6177e2991ac4e'),(291977,42443,'blocks_7_accordion_items','8'),(291978,42443,'_blocks_7_accordion_items','field_6177e2991ac4c'),(291979,42443,'blocks_7_actions',''),(291980,42443,'_blocks_7_actions','field_61a746a817f7a'),(291981,42443,'blocks_8_acfe_flexible_toggle',''),(291982,42443,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(291983,42443,'blocks_8_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(291984,42443,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(291985,42443,'blocks_8_options_theme','#f5f5f5'),(291986,42443,'_blocks_8_options_theme','field_6176830e2ad17'),(291987,42443,'blocks_8_options',''),(291988,42443,'_blocks_8_options','field_6176830e2ad16'),(291989,42443,'blocks_8_text_block_heading','The Importance of MSK Education'),(291990,42443,'_blocks_8_text_block_heading','field_617669d413097'),(291991,42443,'blocks_8_text_block_content',''),(291992,42443,'_blocks_8_text_block_content','field_617669ec13098'),(291993,42443,'blocks_9_acfe_flexible_toggle',''),(291994,42443,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(291995,42443,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(291996,42443,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(291997,42443,'blocks_9_options_theme','#f5f5f5'),(291998,42443,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(291999,42443,'blocks_9_options_reverse','1'),(292000,42443,'_blocks_9_options_reverse','field_61768049bb8ac'),(292001,42443,'blocks_9_options',''),(292002,42443,'_blocks_9_options','field_617682517c334'),(292003,42443,'blocks_9_split_5050_image','41498'),(292004,42443,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(292005,42443,'blocks_9_split_5050_video',''),(292006,42443,'_blocks_9_split_5050_video','field_6239f3160848a'),(292007,42443,'blocks_9_split_5050_content_title',''),(292008,42443,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(292009,42443,'blocks_9_split_5050_content_heading',''),(292010,42443,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(292011,42443,'blocks_9_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(292012,42443,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(292013,42443,'blocks_9_split_5050_content_actions',''),(292014,42443,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(292015,42443,'blocks_9_split_5050_content',''),(292016,42443,'_blocks_9_split_5050_content','field_61767afceb8ba'),(292017,42443,'blocks_14_acfe_flexible_toggle',''),(292018,42443,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(292019,42443,'blocks_14_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(292020,42443,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(292021,42443,'blocks_14_options_theme','#ffffff'),(292022,42443,'_blocks_14_options_theme','field_6176830e2ad17'),(292023,42443,'blocks_14_options',''),(292024,42443,'_blocks_14_options','field_6176830e2ad16'),(292025,42443,'blocks_14_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(292026,42443,'_blocks_14_text_block_heading','field_617669d413097'),(292027,42443,'blocks_14_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(292028,42443,'_blocks_14_text_block_content','field_617669ec13098'),(292029,42443,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(292030,42443,'_hero_actions_0_button','field_61757281285eb'),(292031,42443,'blocks_10_acfe_flexible_toggle',''),(292032,42443,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(292033,42443,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(292034,42443,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(292035,42443,'blocks_10_options_theme','#f5f5f5'),(292036,42443,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(292037,42443,'blocks_10_options_reverse','1'),(292038,42443,'_blocks_10_options_reverse','field_61768049bb8ac'),(292039,42443,'blocks_10_options',''),(292040,42443,'_blocks_10_options','field_617682517c334'),(292041,42443,'blocks_10_split_5050_image','40387'),(292042,42443,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(292043,42443,'blocks_10_split_5050_video',''),(292044,42443,'_blocks_10_split_5050_video','field_6239f3160848a'),(292045,42443,'blocks_10_split_5050_content_title',''),(292046,42443,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(292047,42443,'blocks_10_split_5050_content_heading',''),(292048,42443,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(292049,42443,'blocks_10_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(292050,42443,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(292051,42443,'blocks_10_split_5050_content_actions',''),(292052,42443,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(292053,42443,'blocks_10_split_5050_content',''),(292054,42443,'_blocks_10_split_5050_content','field_61767afceb8ba'),(292055,42443,'blocks_11_acfe_flexible_toggle',''),(292056,42443,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(292057,42443,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(292058,42443,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(292059,42443,'blocks_11_options_theme','#f5f5f5'),(292060,42443,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(292061,42443,'blocks_11_options_reverse','1'),(292062,42443,'_blocks_11_options_reverse','field_61768049bb8ac'),(292063,42443,'blocks_11_options',''),(292064,42443,'_blocks_11_options','field_617682517c334'),(292065,42443,'blocks_11_split_5050_image','18856'),(292066,42443,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(292067,42443,'blocks_11_split_5050_video',''),(292068,42443,'_blocks_11_split_5050_video','field_6239f3160848a'),(292069,42443,'blocks_11_split_5050_content_title',''),(292070,42443,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(292071,42443,'blocks_11_split_5050_content_heading',''),(292072,42443,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(292073,42443,'blocks_11_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(292074,42443,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(292075,42443,'blocks_11_split_5050_content_actions',''),(292076,42443,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(292077,42443,'blocks_11_split_5050_content',''),(292078,42443,'_blocks_11_split_5050_content','field_61767afceb8ba'),(292079,42443,'blocks_12_acfe_flexible_toggle',''),(292080,42443,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(292081,42443,'blocks_12_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(292082,42443,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(292083,42443,'blocks_12_options_theme','#ffffff'),(292084,42443,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(292085,42443,'blocks_12_options_reverse','0'),(292086,42443,'_blocks_12_options_reverse','field_61768049bb8ac'),(292087,42443,'blocks_12_options',''),(292088,42443,'_blocks_12_options','field_617682517c334'),(292089,42443,'blocks_12_split_5050_image','41501'),(292090,42443,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(292091,42443,'blocks_12_split_5050_video',''),(292092,42443,'_blocks_12_split_5050_video','field_6239f3160848a'),(292093,42443,'blocks_12_split_5050_content_title',''),(292094,42443,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(292095,42443,'blocks_12_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(292096,42443,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(292097,42443,'blocks_12_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(292098,42443,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(292099,42443,'blocks_12_split_5050_content_actions',''),(292100,42443,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(292101,42443,'blocks_12_split_5050_content',''),(292102,42443,'_blocks_12_split_5050_content','field_61767afceb8ba'),(292103,42443,'blocks_13_acfe_flexible_toggle',''),(292104,42443,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(292105,42443,'blocks_13_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(292106,42443,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(292107,42443,'blocks_13_options_theme','#ffffff'),(292108,42443,'_blocks_13_options_theme','field_6176830e2ad17'),(292109,42443,'blocks_13_options',''),(292110,42443,'_blocks_13_options','field_6176830e2ad16'),(292111,42443,'blocks_13_text_block_heading','The Role of MSK Education in Workplace Health'),(292112,42443,'_blocks_13_text_block_heading','field_617669d413097'),(292113,42443,'blocks_13_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(292114,42443,'_blocks_13_text_block_content','field_617669ec13098'),(292115,42443,'blocks_15_acfe_flexible_toggle',''),(292116,42443,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(292117,42443,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(292118,42443,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(292119,42443,'blocks_15_options_theme','#b61234'),(292120,42443,'_blocks_15_options_theme','field_6176830e2ad17'),(292121,42443,'blocks_15_options',''),(292122,42443,'_blocks_15_options','field_6176830e2ad16'),(292123,42443,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(292124,42443,'_blocks_15_text_block_heading','field_617669d413097'),(292125,42443,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(292126,42443,'_blocks_15_text_block_content','field_617669ec13098'),(292127,42443,'blocks_16_acfe_flexible_toggle',''),(292128,42443,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(292129,42443,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(292130,42443,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(292131,42443,'blocks_16_options_theme','#b61234'),(292132,42443,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(292133,42443,'blocks_16_options_format','row'),(292134,42443,'_blocks_16_options_format','field_64bfde9a90690'),(292135,42443,'blocks_16_options',''),(292136,42443,'_blocks_16_options','field_64bfdd9b90684'),(292137,42443,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(292138,42443,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(292139,42443,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(292140,42443,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(292141,42443,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(292142,42443,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(292143,42443,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(292144,42443,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(292145,42443,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(292146,42443,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(292147,42443,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(292148,42443,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(292149,42443,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(292150,42443,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(292151,42443,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(292152,42443,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(292153,42443,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(292154,42443,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(292155,42443,'blocks_16_icon_row_items_3_icon','recognised.svg'),(292156,42443,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(292157,42443,'blocks_16_icon_row_items_3_label','Optimised Performance'),(292158,42443,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(292159,42443,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(292160,42443,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(292161,42443,'blocks_16_icon_row_items','4'),(292162,42443,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(292163,42443,'blocks_17_acfe_flexible_toggle',''),(292164,42443,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(292165,42443,'blocks_17_acfe_flexible_layout_title','Conclusion'),(292166,42443,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(292167,42443,'blocks_17_options_theme','#f5f5f5'),(292168,42443,'_blocks_17_options_theme','field_6176830e2ad17'),(292169,42443,'blocks_17_options',''),(292170,42443,'_blocks_17_options','field_6176830e2ad16'),(292171,42443,'blocks_17_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(292172,42443,'_blocks_17_text_block_heading','field_617669d413097'),(292173,42443,'blocks_17_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(292174,42443,'_blocks_17_text_block_content','field_617669ec13098'),(292175,42443,'blocks_18_acfe_flexible_toggle',''),(292176,42443,'_blocks_18_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(292177,42443,'blocks_18_acfe_flexible_layout_title','Promo Panel'),(292178,42443,'_blocks_18_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(292179,42443,'blocks_18_options_alignment','center'),(292180,42443,'_blocks_18_options_alignment','field_61769449f5490'),(292181,42443,'blocks_18_options',''),(292182,42443,'_blocks_18_options','field_617693e1428f0'),(292183,42443,'blocks_18_promo_panel_image','40342'),(292184,42443,'_blocks_18_promo_panel_image','field_617693e1428f3'),(292185,42443,'blocks_18_promo_panel_content_heading','Want to Get Started?'),(292186,42443,'_blocks_18_promo_panel_content_heading','field_617693e1428f6'),(292187,42443,'blocks_18_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(292188,42443,'_blocks_18_promo_panel_content_text','field_617693e1428f7'),(292189,42443,'blocks_18_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(292190,42443,'_blocks_18_promo_panel_content_actions_0_button','field_617693e1428f9'),(292191,42443,'blocks_18_promo_panel_content_actions','1'),(292192,42443,'_blocks_18_promo_panel_content_actions','field_617693e1428f8'),(292193,42443,'blocks_18_promo_panel_content',''),(292194,42443,'_blocks_18_promo_panel_content','field_617693e1428f4'),(292195,42444,'hide_hero','0'),(292196,42444,'_hide_hero','field_66a2380fcda39'),(292197,42444,'hero_title',''),(292198,42444,'_hero_title','field_617571fe285e8'),(292199,42444,'hero_text','A Guide to Musculoskeletal Education and its Role in Biomechanics'),(292200,42444,'_hero_text','field_6175723c285e9'),(292201,42444,'hero_actions','1'),(292202,42444,'_hero_actions','field_61757270285ea'),(292203,42444,'hero_style','default'),(292204,42444,'_hero_style','field_62051d9dc5324'),(292205,42444,'hero_image_pos_x','right'),(292206,42444,'_hero_image_pos_x','field_62ec3d05390bb'),(292207,42444,'hero_image_pos_y','top'),(292208,42444,'_hero_image_pos_y','field_62ec3d05390bc'),(292209,42444,'hero_image_pos',''),(292210,42444,'_hero_image_pos','field_62ec3d05390ba'),(292211,42444,'fft_hide_from_listings','0'),(292212,42444,'_fft_hide_from_listings','field_61f1320446ab2'),(292213,42444,'post_format','402'),(292214,42444,'_post_format','field_61756bfb51898'),(292215,42444,'post_author',''),(292216,42444,'_post_author','field_62ec389d22113'),(292217,42444,'post_reviewer',''),(292218,42444,'_post_reviewer','field_627140a2a9800'),(292219,42444,'post_table_of_contents','0'),(292220,42444,'_post_table_of_contents','field_65c503bc846a6'),(292221,42444,'blocks','a:19:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:10:\"text_block\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"text_block\";i:18;s:11:\"promo_panel\";}'),(292222,42444,'_blocks','field_6176696113096'),(292223,42444,'_thumbnail_id','41331'),(292224,42444,'__thumbnail_id','field_617570855ddaf'),(292225,42444,'blocks_0_acfe_flexible_toggle',''),(292226,42444,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(292227,42444,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(292228,42444,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(292229,42444,'blocks_0_options_theme','#ffffff'),(292230,42444,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(292231,42444,'blocks_0_options',''),(292232,42444,'_blocks_0_options','field_6177b758246ae'),(292233,42444,'blocks_0_link_stack_content_title',''),(292234,42444,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(292235,42444,'blocks_0_link_stack_content_heading','What is MSK?'),(292236,42444,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(292237,42444,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(292238,42444,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(292239,42444,'blocks_0_link_stack_content_actions_0_button',''),(292240,42444,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(292241,42444,'blocks_0_link_stack_content_actions','1'),(292242,42444,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(292243,42444,'blocks_0_link_stack_content',''),(292244,42444,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(292245,42444,'blocks_0_link_stack_0_label','1.'),(292246,42444,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(292247,42444,'blocks_0_link_stack_0_title','Overview'),(292248,42444,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(292249,42444,'blocks_0_link_stack_0_url','#overview'),(292250,42444,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(292251,42444,'blocks_0_link_stack_1_label','2.'),(292252,42444,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(292253,42444,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(292254,42444,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(292255,42444,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(292256,42444,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(292257,42444,'blocks_0_link_stack_2_label','3.'),(292258,42444,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(292259,42444,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(292260,42444,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(292261,42444,'blocks_0_link_stack_2_url','#who-should-study-msk'),(292262,42444,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(292263,42444,'blocks_0_link_stack_3_label','4.'),(292264,42444,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(292265,42444,'blocks_0_link_stack_3_title','Common MSK Conditions'),(292266,42444,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(292267,42444,'blocks_0_link_stack_3_url','#common-msk-conditions'),(292268,42444,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(292269,42444,'blocks_0_link_stack_4_label','5.'),(292270,42444,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(292271,42444,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(292272,42444,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(292273,42444,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(292274,42444,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(292275,42444,'blocks_0_link_stack_5_label','6.'),(292276,42444,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(292277,42444,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(292278,42444,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(292279,42444,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(292280,42444,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(292281,42444,'blocks_0_link_stack','6'),(292282,42444,'_blocks_0_link_stack','field_6177b7f600cff'),(292283,42444,'blocks_1_acfe_flexible_toggle',''),(292284,42444,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(292285,42444,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(292286,42444,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(292287,42444,'blocks_1_options_theme','#f5f5f5'),(292288,42444,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(292289,42444,'blocks_1_options_reverse','0'),(292290,42444,'_blocks_1_options_reverse','field_61768049bb8ac'),(292291,42444,'blocks_1_options',''),(292292,42444,'_blocks_1_options','field_617682517c334'),(292293,42444,'blocks_1_split_5050_image','40615'),(292294,42444,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(292295,42444,'blocks_1_split_5050_video',''),(292296,42444,'_blocks_1_split_5050_video','field_6239f3160848a'),(292297,42444,'blocks_1_split_5050_content_title',''),(292298,42444,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(292299,42444,'blocks_1_split_5050_content_heading','Overview'),(292300,42444,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(292301,42444,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(292302,42444,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(292303,42444,'blocks_1_split_5050_content_actions',''),(292304,42444,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(292305,42444,'blocks_1_split_5050_content',''),(292306,42444,'_blocks_1_split_5050_content','field_61767afceb8ba'),(292307,42444,'blocks_2_acfe_flexible_toggle',''),(292308,42444,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(292309,42444,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(292310,42444,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(292311,42444,'blocks_2_options_theme','#f5f5f5'),(292312,42444,'_blocks_2_options_theme','field_6176830e2ad17'),(292313,42444,'blocks_2_options',''),(292314,42444,'_blocks_2_options','field_6176830e2ad16'),(292315,42444,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(292316,42444,'_blocks_2_text_block_heading','field_617669d413097'),(292317,42444,'blocks_2_text_block_content',''),(292318,42444,'_blocks_2_text_block_content','field_617669ec13098'),(292319,42444,'blocks_3_acfe_flexible_toggle',''),(292320,42444,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(292321,42444,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(292322,42444,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(292323,42444,'blocks_3_options_theme','#f5f5f5'),(292324,42444,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(292325,42444,'blocks_3_options_reverse','0'),(292326,42444,'_blocks_3_options_reverse','field_61768049bb8ac'),(292327,42444,'blocks_3_options',''),(292328,42444,'_blocks_3_options','field_617682517c334'),(292329,42444,'blocks_3_split_5050_image','40618'),(292330,42444,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(292331,42444,'blocks_3_split_5050_video',''),(292332,42444,'_blocks_3_split_5050_video','field_6239f3160848a'),(292333,42444,'blocks_3_split_5050_content_title',''),(292334,42444,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(292335,42444,'blocks_3_split_5050_content_heading',''),(292336,42444,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(292337,42444,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n· <strong>Bones</strong> – Providing structure and protecting vital organs.\r\n\r\n· <strong>Muscles</strong> – Enabling movement by contracting and relaxing.\r\n\r\n· <strong>Joints</strong> – Connecting bones and allowing flexibility and a range of motion.\r\n\r\n· <strong>Connective Tissues</strong> – Including tendons, ligaments, and cartilage, which support and stabilise the system.'),(292338,42444,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(292339,42444,'blocks_3_split_5050_content_actions',''),(292340,42444,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(292341,42444,'blocks_3_split_5050_content',''),(292342,42444,'_blocks_3_split_5050_content','field_61767afceb8ba'),(292343,42444,'blocks_4_acfe_flexible_toggle',''),(292344,42444,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(292345,42444,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(292346,42444,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(292347,42444,'blocks_4_options_theme','#f5f5f5'),(292348,42444,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(292349,42444,'blocks_4_options_reverse','0'),(292350,42444,'_blocks_4_options_reverse','field_61768049bb8ac'),(292351,42444,'blocks_4_options',''),(292352,42444,'_blocks_4_options','field_617682517c334'),(292353,42444,'blocks_4_split_5050_image','41330'),(292354,42444,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(292355,42444,'blocks_4_split_5050_video',''),(292356,42444,'_blocks_4_split_5050_video','field_6239f3160848a'),(292357,42444,'blocks_4_split_5050_content_title',''),(292358,42444,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(292359,42444,'blocks_4_split_5050_content_heading',''),(292360,42444,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(292361,42444,'blocks_4_split_5050_content_text','Maintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(292362,42444,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(292363,42444,'blocks_4_split_5050_content_actions',''),(292364,42444,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(292365,42444,'blocks_4_split_5050_content',''),(292366,42444,'_blocks_4_split_5050_content','field_61767afceb8ba'),(292367,42444,'blocks_5_acfe_flexible_toggle',''),(292368,42444,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(292369,42444,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(292370,42444,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(292371,42444,'blocks_5_options_theme','#b61234'),(292372,42444,'_blocks_5_options_theme','field_6176830e2ad17'),(292373,42444,'blocks_5_options',''),(292374,42444,'_blocks_5_options','field_6176830e2ad16'),(292375,42444,'blocks_5_text_block_heading','Who Should Study MSK?'),(292376,42444,'_blocks_5_text_block_heading','field_617669d413097'),(292377,42444,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(292378,42444,'_blocks_5_text_block_content','field_617669ec13098'),(292379,42444,'blocks_6_acfe_flexible_toggle',''),(292380,42444,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(292381,42444,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(292382,42444,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(292383,42444,'blocks_6_options_theme','#b61234'),(292384,42444,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(292385,42444,'blocks_6_options',''),(292386,42444,'_blocks_6_options','field_6177cfcd8140f'),(292387,42444,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(292388,42444,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(292389,42444,'blocks_6_tabs_0_tab_content_title',''),(292390,42444,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(292391,42444,'blocks_6_tabs_0_tab_content_heading',''),(292392,42444,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(292393,42444,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(292394,42444,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(292395,42444,'blocks_6_tabs_0_tab_content_actions',''),(292396,42444,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(292397,42444,'blocks_6_tabs_0_tab_content',''),(292398,42444,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(292399,42444,'blocks_6_tabs_0_tab_image','41542'),(292400,42444,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(292401,42444,'blocks_6_tabs_1_tab_label','Current Practitioners'),(292402,42444,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(292403,42444,'blocks_6_tabs_1_tab_content_title',''),(292404,42444,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(292405,42444,'blocks_6_tabs_1_tab_content_heading',''),(292406,42444,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(292407,42444,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(292408,42444,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(292409,42444,'blocks_6_tabs_1_tab_content_actions',''),(292410,42444,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(292411,42444,'blocks_6_tabs_1_tab_content',''),(292412,42444,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(292413,42444,'blocks_6_tabs_1_tab_image','41505'),(292414,42444,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(292415,42444,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(292416,42444,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(292417,42444,'blocks_6_tabs_2_tab_content_title',''),(292418,42444,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(292419,42444,'blocks_6_tabs_2_tab_content_heading',''),(292420,42444,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(292421,42444,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(292422,42444,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(292423,42444,'blocks_6_tabs_2_tab_content_actions',''),(292424,42444,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(292425,42444,'blocks_6_tabs_2_tab_content',''),(292426,42444,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(292427,42444,'blocks_6_tabs_2_tab_image','41539'),(292428,42444,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(292429,42444,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(292430,42444,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(292431,42444,'blocks_6_tabs_3_tab_content_title',''),(292432,42444,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(292433,42444,'blocks_6_tabs_3_tab_content_heading',''),(292434,42444,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(292435,42444,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(292436,42444,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(292437,42444,'blocks_6_tabs_3_tab_content_actions',''),(292438,42444,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(292439,42444,'blocks_6_tabs_3_tab_content',''),(292440,42444,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(292441,42444,'blocks_6_tabs_3_tab_image','41502'),(292442,42444,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(292443,42444,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists');
INSERT INTO `6m7_postmeta` VALUES (292444,42444,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(292445,42444,'blocks_6_tabs_4_tab_content_title',''),(292446,42444,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(292447,42444,'blocks_6_tabs_4_tab_content_heading',''),(292448,42444,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(292449,42444,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(292450,42444,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(292451,42444,'blocks_6_tabs_4_tab_content_actions',''),(292452,42444,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(292453,42444,'blocks_6_tabs_4_tab_content',''),(292454,42444,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(292455,42444,'blocks_6_tabs_4_tab_image','41506'),(292456,42444,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(292457,42444,'blocks_6_tabs','5'),(292458,42444,'_blocks_6_tabs','field_6177cff281419'),(292459,42444,'blocks_7_acfe_flexible_toggle',''),(292460,42444,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(292461,42444,'blocks_7_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(292462,42444,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(292463,42444,'blocks_7_options_theme','#ffffff'),(292464,42444,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(292465,42444,'blocks_7_options_state','0'),(292466,42444,'_blocks_7_options_state','field_6239fcb7508c5'),(292467,42444,'blocks_7_options',''),(292468,42444,'_blocks_7_options','field_6177e2991ac44'),(292469,42444,'blocks_7_content_title','Common MSK Conditions'),(292470,42444,'_blocks_7_content_title','field_64d237e8bb1e2'),(292471,42444,'blocks_7_content_heading','Common MSK Conditions'),(292472,42444,'_blocks_7_content_heading','field_64d237e8bb1e3'),(292473,42444,'blocks_7_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(292474,42444,'_blocks_7_content_text','field_64d237e8bb1e4'),(292475,42444,'blocks_7_content_actions',''),(292476,42444,'_blocks_7_content_actions','field_64d237e8bb1e5'),(292477,42444,'blocks_7_content_align','left'),(292478,42444,'_blocks_7_content_align','field_64d2443e6b6aa'),(292479,42444,'blocks_7_content',''),(292480,42444,'_blocks_7_content','field_64d237e8bb1e1'),(292481,42444,'blocks_7_accordion_content','custom'),(292482,42444,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(292483,42444,'blocks_7_accordion_items_0_title','Osteoarthritis'),(292484,42444,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(292485,42444,'blocks_7_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(292486,42444,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(292487,42444,'blocks_7_accordion_items_1_title','Rheumatoid Arthritis'),(292488,42444,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(292489,42444,'blocks_7_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(292490,42444,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(292491,42444,'blocks_7_accordion_items_2_title','Back Pain'),(292492,42444,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(292493,42444,'blocks_7_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(292494,42444,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(292495,42444,'blocks_7_accordion_items_3_title','Osteoporosis'),(292496,42444,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(292497,42444,'blocks_7_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(292498,42444,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(292499,42444,'blocks_7_accordion_items_4_title','Tendinitis'),(292500,42444,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(292501,42444,'blocks_7_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(292502,42444,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(292503,42444,'blocks_7_accordion_items_5_title','Carpal Tunnel Syndrome'),(292504,42444,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(292505,42444,'blocks_7_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(292506,42444,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(292507,42444,'blocks_7_accordion_items_6_title','Fibromyalgia'),(292508,42444,'_blocks_7_accordion_items_6_title','field_6177e2991ac4d'),(292509,42444,'blocks_7_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(292510,42444,'_blocks_7_accordion_items_6_text','field_6177e2991ac4e'),(292511,42444,'blocks_7_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(292512,42444,'_blocks_7_accordion_items_7_title','field_6177e2991ac4d'),(292513,42444,'blocks_7_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(292514,42444,'_blocks_7_accordion_items_7_text','field_6177e2991ac4e'),(292515,42444,'blocks_7_accordion_items','8'),(292516,42444,'_blocks_7_accordion_items','field_6177e2991ac4c'),(292517,42444,'blocks_7_actions',''),(292518,42444,'_blocks_7_actions','field_61a746a817f7a'),(292519,42444,'blocks_8_acfe_flexible_toggle',''),(292520,42444,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(292521,42444,'blocks_8_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(292522,42444,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(292523,42444,'blocks_8_options_theme','#f5f5f5'),(292524,42444,'_blocks_8_options_theme','field_6176830e2ad17'),(292525,42444,'blocks_8_options',''),(292526,42444,'_blocks_8_options','field_6176830e2ad16'),(292527,42444,'blocks_8_text_block_heading','The Importance of MSK Education'),(292528,42444,'_blocks_8_text_block_heading','field_617669d413097'),(292529,42444,'blocks_8_text_block_content',''),(292530,42444,'_blocks_8_text_block_content','field_617669ec13098'),(292531,42444,'blocks_9_acfe_flexible_toggle',''),(292532,42444,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(292533,42444,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(292534,42444,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(292535,42444,'blocks_9_options_theme','#f5f5f5'),(292536,42444,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(292537,42444,'blocks_9_options_reverse','1'),(292538,42444,'_blocks_9_options_reverse','field_61768049bb8ac'),(292539,42444,'blocks_9_options',''),(292540,42444,'_blocks_9_options','field_617682517c334'),(292541,42444,'blocks_9_split_5050_image','41498'),(292542,42444,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(292543,42444,'blocks_9_split_5050_video',''),(292544,42444,'_blocks_9_split_5050_video','field_6239f3160848a'),(292545,42444,'blocks_9_split_5050_content_title',''),(292546,42444,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(292547,42444,'blocks_9_split_5050_content_heading',''),(292548,42444,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(292549,42444,'blocks_9_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(292550,42444,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(292551,42444,'blocks_9_split_5050_content_actions',''),(292552,42444,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(292553,42444,'blocks_9_split_5050_content',''),(292554,42444,'_blocks_9_split_5050_content','field_61767afceb8ba'),(292555,42444,'blocks_14_acfe_flexible_toggle',''),(292556,42444,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(292557,42444,'blocks_14_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(292558,42444,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(292559,42444,'blocks_14_options_theme','#ffffff'),(292560,42444,'_blocks_14_options_theme','field_6176830e2ad17'),(292561,42444,'blocks_14_options',''),(292562,42444,'_blocks_14_options','field_6176830e2ad16'),(292563,42444,'blocks_14_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(292564,42444,'_blocks_14_text_block_heading','field_617669d413097'),(292565,42444,'blocks_14_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(292566,42444,'_blocks_14_text_block_content','field_617669ec13098'),(292567,42444,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(292568,42444,'_hero_actions_0_button','field_61757281285eb'),(292569,42444,'blocks_10_acfe_flexible_toggle',''),(292570,42444,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(292571,42444,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(292572,42444,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(292573,42444,'blocks_10_options_theme','#f5f5f5'),(292574,42444,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(292575,42444,'blocks_10_options_reverse','1'),(292576,42444,'_blocks_10_options_reverse','field_61768049bb8ac'),(292577,42444,'blocks_10_options',''),(292578,42444,'_blocks_10_options','field_617682517c334'),(292579,42444,'blocks_10_split_5050_image','40387'),(292580,42444,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(292581,42444,'blocks_10_split_5050_video',''),(292582,42444,'_blocks_10_split_5050_video','field_6239f3160848a'),(292583,42444,'blocks_10_split_5050_content_title',''),(292584,42444,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(292585,42444,'blocks_10_split_5050_content_heading',''),(292586,42444,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(292587,42444,'blocks_10_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(292588,42444,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(292589,42444,'blocks_10_split_5050_content_actions',''),(292590,42444,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(292591,42444,'blocks_10_split_5050_content',''),(292592,42444,'_blocks_10_split_5050_content','field_61767afceb8ba'),(292593,42444,'blocks_11_acfe_flexible_toggle',''),(292594,42444,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(292595,42444,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(292596,42444,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(292597,42444,'blocks_11_options_theme','#f5f5f5'),(292598,42444,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(292599,42444,'blocks_11_options_reverse','1'),(292600,42444,'_blocks_11_options_reverse','field_61768049bb8ac'),(292601,42444,'blocks_11_options',''),(292602,42444,'_blocks_11_options','field_617682517c334'),(292603,42444,'blocks_11_split_5050_image','18856'),(292604,42444,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(292605,42444,'blocks_11_split_5050_video',''),(292606,42444,'_blocks_11_split_5050_video','field_6239f3160848a'),(292607,42444,'blocks_11_split_5050_content_title',''),(292608,42444,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(292609,42444,'blocks_11_split_5050_content_heading',''),(292610,42444,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(292611,42444,'blocks_11_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(292612,42444,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(292613,42444,'blocks_11_split_5050_content_actions',''),(292614,42444,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(292615,42444,'blocks_11_split_5050_content',''),(292616,42444,'_blocks_11_split_5050_content','field_61767afceb8ba'),(292617,42444,'blocks_12_acfe_flexible_toggle',''),(292618,42444,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(292619,42444,'blocks_12_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(292620,42444,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(292621,42444,'blocks_12_options_theme','#ffffff'),(292622,42444,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(292623,42444,'blocks_12_options_reverse','0'),(292624,42444,'_blocks_12_options_reverse','field_61768049bb8ac'),(292625,42444,'blocks_12_options',''),(292626,42444,'_blocks_12_options','field_617682517c334'),(292627,42444,'blocks_12_split_5050_image','41501'),(292628,42444,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(292629,42444,'blocks_12_split_5050_video',''),(292630,42444,'_blocks_12_split_5050_video','field_6239f3160848a'),(292631,42444,'blocks_12_split_5050_content_title',''),(292632,42444,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(292633,42444,'blocks_12_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(292634,42444,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(292635,42444,'blocks_12_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(292636,42444,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(292637,42444,'blocks_12_split_5050_content_actions',''),(292638,42444,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(292639,42444,'blocks_12_split_5050_content',''),(292640,42444,'_blocks_12_split_5050_content','field_61767afceb8ba'),(292641,42444,'blocks_13_acfe_flexible_toggle',''),(292642,42444,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(292643,42444,'blocks_13_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(292644,42444,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(292645,42444,'blocks_13_options_theme','#ffffff'),(292646,42444,'_blocks_13_options_theme','field_6176830e2ad17'),(292647,42444,'blocks_13_options',''),(292648,42444,'_blocks_13_options','field_6176830e2ad16'),(292649,42444,'blocks_13_text_block_heading','The Role of MSK Education in Workplace Health'),(292650,42444,'_blocks_13_text_block_heading','field_617669d413097'),(292651,42444,'blocks_13_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(292652,42444,'_blocks_13_text_block_content','field_617669ec13098'),(292653,42444,'blocks_15_acfe_flexible_toggle',''),(292654,42444,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(292655,42444,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(292656,42444,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(292657,42444,'blocks_15_options_theme','#b61234'),(292658,42444,'_blocks_15_options_theme','field_6176830e2ad17'),(292659,42444,'blocks_15_options',''),(292660,42444,'_blocks_15_options','field_6176830e2ad16'),(292661,42444,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(292662,42444,'_blocks_15_text_block_heading','field_617669d413097'),(292663,42444,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(292664,42444,'_blocks_15_text_block_content','field_617669ec13098'),(292665,42444,'blocks_16_acfe_flexible_toggle',''),(292666,42444,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(292667,42444,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(292668,42444,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(292669,42444,'blocks_16_options_theme','#b61234'),(292670,42444,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(292671,42444,'blocks_16_options_format','row'),(292672,42444,'_blocks_16_options_format','field_64bfde9a90690'),(292673,42444,'blocks_16_options',''),(292674,42444,'_blocks_16_options','field_64bfdd9b90684'),(292675,42444,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(292676,42444,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(292677,42444,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(292678,42444,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(292679,42444,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(292680,42444,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(292681,42444,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(292682,42444,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(292683,42444,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(292684,42444,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(292685,42444,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(292686,42444,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(292687,42444,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(292688,42444,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(292689,42444,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(292690,42444,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(292691,42444,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(292692,42444,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(292693,42444,'blocks_16_icon_row_items_3_icon','recognised.svg'),(292694,42444,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(292695,42444,'blocks_16_icon_row_items_3_label','Optimised Performance'),(292696,42444,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(292697,42444,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(292698,42444,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(292699,42444,'blocks_16_icon_row_items','4'),(292700,42444,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(292701,42444,'blocks_17_acfe_flexible_toggle',''),(292702,42444,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(292703,42444,'blocks_17_acfe_flexible_layout_title','Conclusion'),(292704,42444,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(292705,42444,'blocks_17_options_theme','#f5f5f5'),(292706,42444,'_blocks_17_options_theme','field_6176830e2ad17'),(292707,42444,'blocks_17_options',''),(292708,42444,'_blocks_17_options','field_6176830e2ad16'),(292709,42444,'blocks_17_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(292710,42444,'_blocks_17_text_block_heading','field_617669d413097'),(292711,42444,'blocks_17_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(292712,42444,'_blocks_17_text_block_content','field_617669ec13098'),(292713,42444,'blocks_18_acfe_flexible_toggle',''),(292714,42444,'_blocks_18_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(292715,42444,'blocks_18_acfe_flexible_layout_title','Promo Panel'),(292716,42444,'_blocks_18_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(292717,42444,'blocks_18_options_alignment','center'),(292718,42444,'_blocks_18_options_alignment','field_61769449f5490'),(292719,42444,'blocks_18_options',''),(292720,42444,'_blocks_18_options','field_617693e1428f0'),(292721,42444,'blocks_18_promo_panel_image','40342'),(292722,42444,'_blocks_18_promo_panel_image','field_617693e1428f3'),(292723,42444,'blocks_18_promo_panel_content_heading','Want to Get Started?'),(292724,42444,'_blocks_18_promo_panel_content_heading','field_617693e1428f6'),(292725,42444,'blocks_18_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(292726,42444,'_blocks_18_promo_panel_content_text','field_617693e1428f7'),(292727,42444,'blocks_18_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(292728,42444,'_blocks_18_promo_panel_content_actions_0_button','field_617693e1428f9'),(292729,42444,'blocks_18_promo_panel_content_actions','1'),(292730,42444,'_blocks_18_promo_panel_content_actions','field_617693e1428f8'),(292731,42444,'blocks_18_promo_panel_content',''),(292732,42444,'_blocks_18_promo_panel_content','field_617693e1428f4'),(292733,42445,'hide_hero','0'),(292734,42445,'_hide_hero','field_66a2380fcda39'),(292735,42445,'hero_title',''),(292736,42445,'_hero_title','field_617571fe285e8'),(292737,42445,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(292738,42445,'_hero_text','field_6175723c285e9'),(292739,42445,'hero_actions','1'),(292740,42445,'_hero_actions','field_61757270285ea'),(292741,42445,'hero_style','default'),(292742,42445,'_hero_style','field_62051d9dc5324'),(292743,42445,'hero_image_pos_x','right'),(292744,42445,'_hero_image_pos_x','field_62ec3d05390bb'),(292745,42445,'hero_image_pos_y','top'),(292746,42445,'_hero_image_pos_y','field_62ec3d05390bc'),(292747,42445,'hero_image_pos',''),(292748,42445,'_hero_image_pos','field_62ec3d05390ba'),(292749,42445,'fft_hide_from_listings','0'),(292750,42445,'_fft_hide_from_listings','field_61f1320446ab2'),(292751,42445,'post_format','402'),(292752,42445,'_post_format','field_61756bfb51898'),(292753,42445,'post_author',''),(292754,42445,'_post_author','field_62ec389d22113'),(292755,42445,'post_reviewer',''),(292756,42445,'_post_reviewer','field_627140a2a9800'),(292757,42445,'post_table_of_contents','0'),(292758,42445,'_post_table_of_contents','field_65c503bc846a6'),(292759,42445,'blocks','a:19:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:10:\"text_block\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"text_block\";i:18;s:11:\"promo_panel\";}'),(292760,42445,'_blocks','field_6176696113096'),(292761,42445,'_thumbnail_id','41331'),(292762,42445,'__thumbnail_id','field_617570855ddaf'),(292763,42445,'blocks_0_acfe_flexible_toggle',''),(292764,42445,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(292765,42445,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(292766,42445,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(292767,42445,'blocks_0_options_theme','#ffffff'),(292768,42445,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(292769,42445,'blocks_0_options',''),(292770,42445,'_blocks_0_options','field_6177b758246ae'),(292771,42445,'blocks_0_link_stack_content_title',''),(292772,42445,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(292773,42445,'blocks_0_link_stack_content_heading','What is MSK?'),(292774,42445,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(292775,42445,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(292776,42445,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(292777,42445,'blocks_0_link_stack_content_actions_0_button',''),(292778,42445,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(292779,42445,'blocks_0_link_stack_content_actions','1'),(292780,42445,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(292781,42445,'blocks_0_link_stack_content',''),(292782,42445,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(292783,42445,'blocks_0_link_stack_0_label','1.'),(292784,42445,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(292785,42445,'blocks_0_link_stack_0_title','Overview'),(292786,42445,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(292787,42445,'blocks_0_link_stack_0_url','#overview'),(292788,42445,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(292789,42445,'blocks_0_link_stack_1_label','2.'),(292790,42445,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(292791,42445,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(292792,42445,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(292793,42445,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(292794,42445,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(292795,42445,'blocks_0_link_stack_2_label','3.'),(292796,42445,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(292797,42445,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(292798,42445,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(292799,42445,'blocks_0_link_stack_2_url','#who-should-study-msk'),(292800,42445,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(292801,42445,'blocks_0_link_stack_3_label','4.'),(292802,42445,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(292803,42445,'blocks_0_link_stack_3_title','Common MSK Conditions'),(292804,42445,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(292805,42445,'blocks_0_link_stack_3_url','#common-msk-conditions'),(292806,42445,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(292807,42445,'blocks_0_link_stack_4_label','5.'),(292808,42445,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(292809,42445,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(292810,42445,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(292811,42445,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(292812,42445,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(292813,42445,'blocks_0_link_stack_5_label','6.'),(292814,42445,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(292815,42445,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(292816,42445,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(292817,42445,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(292818,42445,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(292819,42445,'blocks_0_link_stack','6'),(292820,42445,'_blocks_0_link_stack','field_6177b7f600cff'),(292821,42445,'blocks_1_acfe_flexible_toggle',''),(292822,42445,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(292823,42445,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(292824,42445,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(292825,42445,'blocks_1_options_theme','#f5f5f5'),(292826,42445,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(292827,42445,'blocks_1_options_reverse','0'),(292828,42445,'_blocks_1_options_reverse','field_61768049bb8ac'),(292829,42445,'blocks_1_options',''),(292830,42445,'_blocks_1_options','field_617682517c334'),(292831,42445,'blocks_1_split_5050_image','40615'),(292832,42445,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(292833,42445,'blocks_1_split_5050_video',''),(292834,42445,'_blocks_1_split_5050_video','field_6239f3160848a'),(292835,42445,'blocks_1_split_5050_content_title',''),(292836,42445,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(292837,42445,'blocks_1_split_5050_content_heading','Overview'),(292838,42445,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(292839,42445,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(292840,42445,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(292841,42445,'blocks_1_split_5050_content_actions',''),(292842,42445,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(292843,42445,'blocks_1_split_5050_content',''),(292844,42445,'_blocks_1_split_5050_content','field_61767afceb8ba'),(292845,42445,'blocks_2_acfe_flexible_toggle',''),(292846,42445,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(292847,42445,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(292848,42445,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(292849,42445,'blocks_2_options_theme','#f5f5f5'),(292850,42445,'_blocks_2_options_theme','field_6176830e2ad17'),(292851,42445,'blocks_2_options',''),(292852,42445,'_blocks_2_options','field_6176830e2ad16'),(292853,42445,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(292854,42445,'_blocks_2_text_block_heading','field_617669d413097'),(292855,42445,'blocks_2_text_block_content',''),(292856,42445,'_blocks_2_text_block_content','field_617669ec13098'),(292857,42445,'blocks_3_acfe_flexible_toggle',''),(292858,42445,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(292859,42445,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(292860,42445,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(292861,42445,'blocks_3_options_theme','#f5f5f5'),(292862,42445,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(292863,42445,'blocks_3_options_reverse','0'),(292864,42445,'_blocks_3_options_reverse','field_61768049bb8ac'),(292865,42445,'blocks_3_options',''),(292866,42445,'_blocks_3_options','field_617682517c334'),(292867,42445,'blocks_3_split_5050_image','40618'),(292868,42445,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(292869,42445,'blocks_3_split_5050_video',''),(292870,42445,'_blocks_3_split_5050_video','field_6239f3160848a'),(292871,42445,'blocks_3_split_5050_content_title',''),(292872,42445,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(292873,42445,'blocks_3_split_5050_content_heading',''),(292874,42445,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(292875,42445,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n<ul>\r\n 	<li><strong>Bones</strong> – Providing structure and protecting vital organs.</li>\r\n 	<li><strong>Muscles</strong> – Enabling movement by contracting and relaxing.</li>\r\n 	<li><strong>Joints</strong> – Connecting bones and allowing flexibility and a range of motion.</li>\r\n 	<li><strong>Connective Tissues</strong> – Including tendons, ligaments, and cartilage, which support and stabilise the system.</li>\r\n</ul>'),(292876,42445,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(292877,42445,'blocks_3_split_5050_content_actions',''),(292878,42445,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(292879,42445,'blocks_3_split_5050_content',''),(292880,42445,'_blocks_3_split_5050_content','field_61767afceb8ba'),(292881,42445,'blocks_4_acfe_flexible_toggle',''),(292882,42445,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(292883,42445,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(292884,42445,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(292885,42445,'blocks_4_options_theme','#f5f5f5'),(292886,42445,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(292887,42445,'blocks_4_options_reverse','0'),(292888,42445,'_blocks_4_options_reverse','field_61768049bb8ac'),(292889,42445,'blocks_4_options',''),(292890,42445,'_blocks_4_options','field_617682517c334'),(292891,42445,'blocks_4_split_5050_image','41330'),(292892,42445,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(292893,42445,'blocks_4_split_5050_video',''),(292894,42445,'_blocks_4_split_5050_video','field_6239f3160848a'),(292895,42445,'blocks_4_split_5050_content_title',''),(292896,42445,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(292897,42445,'blocks_4_split_5050_content_heading',''),(292898,42445,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(292899,42445,'blocks_4_split_5050_content_text','Maintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(292900,42445,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(292901,42445,'blocks_4_split_5050_content_actions',''),(292902,42445,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(292903,42445,'blocks_4_split_5050_content',''),(292904,42445,'_blocks_4_split_5050_content','field_61767afceb8ba'),(292905,42445,'blocks_5_acfe_flexible_toggle',''),(292906,42445,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(292907,42445,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(292908,42445,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(292909,42445,'blocks_5_options_theme','#b61234'),(292910,42445,'_blocks_5_options_theme','field_6176830e2ad17'),(292911,42445,'blocks_5_options',''),(292912,42445,'_blocks_5_options','field_6176830e2ad16'),(292913,42445,'blocks_5_text_block_heading','Who Should Study MSK?'),(292914,42445,'_blocks_5_text_block_heading','field_617669d413097'),(292915,42445,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(292916,42445,'_blocks_5_text_block_content','field_617669ec13098'),(292917,42445,'blocks_6_acfe_flexible_toggle',''),(292918,42445,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(292919,42445,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(292920,42445,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(292921,42445,'blocks_6_options_theme','#b61234'),(292922,42445,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(292923,42445,'blocks_6_options',''),(292924,42445,'_blocks_6_options','field_6177cfcd8140f'),(292925,42445,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(292926,42445,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(292927,42445,'blocks_6_tabs_0_tab_content_title',''),(292928,42445,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(292929,42445,'blocks_6_tabs_0_tab_content_heading',''),(292930,42445,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(292931,42445,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(292932,42445,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(292933,42445,'blocks_6_tabs_0_tab_content_actions',''),(292934,42445,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(292935,42445,'blocks_6_tabs_0_tab_content',''),(292936,42445,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(292937,42445,'blocks_6_tabs_0_tab_image','41542'),(292938,42445,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(292939,42445,'blocks_6_tabs_1_tab_label','Current Practitioners'),(292940,42445,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(292941,42445,'blocks_6_tabs_1_tab_content_title',''),(292942,42445,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(292943,42445,'blocks_6_tabs_1_tab_content_heading',''),(292944,42445,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(292945,42445,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(292946,42445,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(292947,42445,'blocks_6_tabs_1_tab_content_actions',''),(292948,42445,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(292949,42445,'blocks_6_tabs_1_tab_content',''),(292950,42445,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(292951,42445,'blocks_6_tabs_1_tab_image','41505'),(292952,42445,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(292953,42445,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(292954,42445,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(292955,42445,'blocks_6_tabs_2_tab_content_title',''),(292956,42445,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(292957,42445,'blocks_6_tabs_2_tab_content_heading',''),(292958,42445,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(292959,42445,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(292960,42445,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(292961,42445,'blocks_6_tabs_2_tab_content_actions',''),(292962,42445,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(292963,42445,'blocks_6_tabs_2_tab_content',''),(292964,42445,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(292965,42445,'blocks_6_tabs_2_tab_image','41539'),(292966,42445,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(292967,42445,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(292968,42445,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(292969,42445,'blocks_6_tabs_3_tab_content_title',''),(292970,42445,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(292971,42445,'blocks_6_tabs_3_tab_content_heading',''),(292972,42445,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(292973,42445,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(292974,42445,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(292975,42445,'blocks_6_tabs_3_tab_content_actions',''),(292976,42445,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(292977,42445,'blocks_6_tabs_3_tab_content',''),(292978,42445,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(292979,42445,'blocks_6_tabs_3_tab_image','41502'),(292980,42445,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(292981,42445,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(292982,42445,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(292983,42445,'blocks_6_tabs_4_tab_content_title',''),(292984,42445,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(292985,42445,'blocks_6_tabs_4_tab_content_heading',''),(292986,42445,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(292987,42445,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(292988,42445,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(292989,42445,'blocks_6_tabs_4_tab_content_actions',''),(292990,42445,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(292991,42445,'blocks_6_tabs_4_tab_content',''),(292992,42445,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(292993,42445,'blocks_6_tabs_4_tab_image','41506'),(292994,42445,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(292995,42445,'blocks_6_tabs','5'),(292996,42445,'_blocks_6_tabs','field_6177cff281419'),(292997,42445,'blocks_7_acfe_flexible_toggle',''),(292998,42445,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(292999,42445,'blocks_7_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(293000,42445,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(293001,42445,'blocks_7_options_theme','#ffffff'),(293002,42445,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(293003,42445,'blocks_7_options_state','0'),(293004,42445,'_blocks_7_options_state','field_6239fcb7508c5'),(293005,42445,'blocks_7_options',''),(293006,42445,'_blocks_7_options','field_6177e2991ac44'),(293007,42445,'blocks_7_content_title','Common MSK Conditions'),(293008,42445,'_blocks_7_content_title','field_64d237e8bb1e2'),(293009,42445,'blocks_7_content_heading','Common MSK Conditions'),(293010,42445,'_blocks_7_content_heading','field_64d237e8bb1e3'),(293011,42445,'blocks_7_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(293012,42445,'_blocks_7_content_text','field_64d237e8bb1e4'),(293013,42445,'blocks_7_content_actions',''),(293014,42445,'_blocks_7_content_actions','field_64d237e8bb1e5'),(293015,42445,'blocks_7_content_align','left'),(293016,42445,'_blocks_7_content_align','field_64d2443e6b6aa'),(293017,42445,'blocks_7_content',''),(293018,42445,'_blocks_7_content','field_64d237e8bb1e1'),(293019,42445,'blocks_7_accordion_content','custom'),(293020,42445,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(293021,42445,'blocks_7_accordion_items_0_title','Osteoarthritis'),(293022,42445,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(293023,42445,'blocks_7_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(293024,42445,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(293025,42445,'blocks_7_accordion_items_1_title','Rheumatoid Arthritis'),(293026,42445,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(293027,42445,'blocks_7_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(293028,42445,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(293029,42445,'blocks_7_accordion_items_2_title','Back Pain'),(293030,42445,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(293031,42445,'blocks_7_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(293032,42445,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(293033,42445,'blocks_7_accordion_items_3_title','Osteoporosis'),(293034,42445,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(293035,42445,'blocks_7_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(293036,42445,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(293037,42445,'blocks_7_accordion_items_4_title','Tendinitis'),(293038,42445,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(293039,42445,'blocks_7_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(293040,42445,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(293041,42445,'blocks_7_accordion_items_5_title','Carpal Tunnel Syndrome'),(293042,42445,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(293043,42445,'blocks_7_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(293044,42445,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(293045,42445,'blocks_7_accordion_items_6_title','Fibromyalgia'),(293046,42445,'_blocks_7_accordion_items_6_title','field_6177e2991ac4d'),(293047,42445,'blocks_7_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(293048,42445,'_blocks_7_accordion_items_6_text','field_6177e2991ac4e'),(293049,42445,'blocks_7_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(293050,42445,'_blocks_7_accordion_items_7_title','field_6177e2991ac4d'),(293051,42445,'blocks_7_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(293052,42445,'_blocks_7_accordion_items_7_text','field_6177e2991ac4e'),(293053,42445,'blocks_7_accordion_items','8'),(293054,42445,'_blocks_7_accordion_items','field_6177e2991ac4c'),(293055,42445,'blocks_7_actions',''),(293056,42445,'_blocks_7_actions','field_61a746a817f7a'),(293057,42445,'blocks_8_acfe_flexible_toggle',''),(293058,42445,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293059,42445,'blocks_8_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(293060,42445,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293061,42445,'blocks_8_options_theme','#f5f5f5'),(293062,42445,'_blocks_8_options_theme','field_6176830e2ad17'),(293063,42445,'blocks_8_options',''),(293064,42445,'_blocks_8_options','field_6176830e2ad16'),(293065,42445,'blocks_8_text_block_heading','The Importance of MSK Education'),(293066,42445,'_blocks_8_text_block_heading','field_617669d413097'),(293067,42445,'blocks_8_text_block_content',''),(293068,42445,'_blocks_8_text_block_content','field_617669ec13098'),(293069,42445,'blocks_9_acfe_flexible_toggle',''),(293070,42445,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293071,42445,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(293072,42445,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293073,42445,'blocks_9_options_theme','#f5f5f5'),(293074,42445,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(293075,42445,'blocks_9_options_reverse','1'),(293076,42445,'_blocks_9_options_reverse','field_61768049bb8ac'),(293077,42445,'blocks_9_options',''),(293078,42445,'_blocks_9_options','field_617682517c334'),(293079,42445,'blocks_9_split_5050_image','41498'),(293080,42445,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(293081,42445,'blocks_9_split_5050_video',''),(293082,42445,'_blocks_9_split_5050_video','field_6239f3160848a'),(293083,42445,'blocks_9_split_5050_content_title',''),(293084,42445,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(293085,42445,'blocks_9_split_5050_content_heading',''),(293086,42445,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(293087,42445,'blocks_9_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(293088,42445,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(293089,42445,'blocks_9_split_5050_content_actions',''),(293090,42445,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(293091,42445,'blocks_9_split_5050_content',''),(293092,42445,'_blocks_9_split_5050_content','field_61767afceb8ba'),(293093,42445,'blocks_14_acfe_flexible_toggle',''),(293094,42445,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293095,42445,'blocks_14_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(293096,42445,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293097,42445,'blocks_14_options_theme','#ffffff'),(293098,42445,'_blocks_14_options_theme','field_6176830e2ad17'),(293099,42445,'blocks_14_options',''),(293100,42445,'_blocks_14_options','field_6176830e2ad16'),(293101,42445,'blocks_14_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(293102,42445,'_blocks_14_text_block_heading','field_617669d413097'),(293103,42445,'blocks_14_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(293104,42445,'_blocks_14_text_block_content','field_617669ec13098'),(293105,42445,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(293106,42445,'_hero_actions_0_button','field_61757281285eb'),(293107,42445,'blocks_10_acfe_flexible_toggle',''),(293108,42445,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293109,42445,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(293110,42445,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293111,42445,'blocks_10_options_theme','#f5f5f5'),(293112,42445,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(293113,42445,'blocks_10_options_reverse','1'),(293114,42445,'_blocks_10_options_reverse','field_61768049bb8ac'),(293115,42445,'blocks_10_options',''),(293116,42445,'_blocks_10_options','field_617682517c334'),(293117,42445,'blocks_10_split_5050_image','40387'),(293118,42445,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(293119,42445,'blocks_10_split_5050_video',''),(293120,42445,'_blocks_10_split_5050_video','field_6239f3160848a'),(293121,42445,'blocks_10_split_5050_content_title',''),(293122,42445,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(293123,42445,'blocks_10_split_5050_content_heading',''),(293124,42445,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(293125,42445,'blocks_10_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(293126,42445,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(293127,42445,'blocks_10_split_5050_content_actions',''),(293128,42445,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(293129,42445,'blocks_10_split_5050_content',''),(293130,42445,'_blocks_10_split_5050_content','field_61767afceb8ba'),(293131,42445,'blocks_11_acfe_flexible_toggle',''),(293132,42445,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293133,42445,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(293134,42445,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293135,42445,'blocks_11_options_theme','#f5f5f5'),(293136,42445,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(293137,42445,'blocks_11_options_reverse','1'),(293138,42445,'_blocks_11_options_reverse','field_61768049bb8ac'),(293139,42445,'blocks_11_options',''),(293140,42445,'_blocks_11_options','field_617682517c334'),(293141,42445,'blocks_11_split_5050_image','18856'),(293142,42445,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(293143,42445,'blocks_11_split_5050_video',''),(293144,42445,'_blocks_11_split_5050_video','field_6239f3160848a'),(293145,42445,'blocks_11_split_5050_content_title',''),(293146,42445,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(293147,42445,'blocks_11_split_5050_content_heading',''),(293148,42445,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(293149,42445,'blocks_11_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(293150,42445,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(293151,42445,'blocks_11_split_5050_content_actions',''),(293152,42445,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(293153,42445,'blocks_11_split_5050_content',''),(293154,42445,'_blocks_11_split_5050_content','field_61767afceb8ba'),(293155,42445,'blocks_12_acfe_flexible_toggle',''),(293156,42445,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293157,42445,'blocks_12_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(293158,42445,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293159,42445,'blocks_12_options_theme','#ffffff'),(293160,42445,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(293161,42445,'blocks_12_options_reverse','0'),(293162,42445,'_blocks_12_options_reverse','field_61768049bb8ac'),(293163,42445,'blocks_12_options',''),(293164,42445,'_blocks_12_options','field_617682517c334'),(293165,42445,'blocks_12_split_5050_image','41501'),(293166,42445,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(293167,42445,'blocks_12_split_5050_video',''),(293168,42445,'_blocks_12_split_5050_video','field_6239f3160848a'),(293169,42445,'blocks_12_split_5050_content_title',''),(293170,42445,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(293171,42445,'blocks_12_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(293172,42445,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(293173,42445,'blocks_12_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(293174,42445,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(293175,42445,'blocks_12_split_5050_content_actions',''),(293176,42445,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(293177,42445,'blocks_12_split_5050_content',''),(293178,42445,'_blocks_12_split_5050_content','field_61767afceb8ba'),(293179,42445,'blocks_13_acfe_flexible_toggle',''),(293180,42445,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293181,42445,'blocks_13_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(293182,42445,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293183,42445,'blocks_13_options_theme','#ffffff'),(293184,42445,'_blocks_13_options_theme','field_6176830e2ad17'),(293185,42445,'blocks_13_options',''),(293186,42445,'_blocks_13_options','field_6176830e2ad16'),(293187,42445,'blocks_13_text_block_heading','The Role of MSK Education in Workplace Health'),(293188,42445,'_blocks_13_text_block_heading','field_617669d413097'),(293189,42445,'blocks_13_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(293190,42445,'_blocks_13_text_block_content','field_617669ec13098'),(293191,42445,'blocks_15_acfe_flexible_toggle',''),(293192,42445,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293193,42445,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(293194,42445,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293195,42445,'blocks_15_options_theme','#b61234'),(293196,42445,'_blocks_15_options_theme','field_6176830e2ad17'),(293197,42445,'blocks_15_options',''),(293198,42445,'_blocks_15_options','field_6176830e2ad16'),(293199,42445,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(293200,42445,'_blocks_15_text_block_heading','field_617669d413097'),(293201,42445,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(293202,42445,'_blocks_15_text_block_content','field_617669ec13098'),(293203,42445,'blocks_16_acfe_flexible_toggle',''),(293204,42445,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(293205,42445,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(293206,42445,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(293207,42445,'blocks_16_options_theme','#b61234'),(293208,42445,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(293209,42445,'blocks_16_options_format','row'),(293210,42445,'_blocks_16_options_format','field_64bfde9a90690'),(293211,42445,'blocks_16_options',''),(293212,42445,'_blocks_16_options','field_64bfdd9b90684'),(293213,42445,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(293214,42445,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(293215,42445,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(293216,42445,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(293217,42445,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(293218,42445,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(293219,42445,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(293220,42445,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(293221,42445,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(293222,42445,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(293223,42445,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(293224,42445,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(293225,42445,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(293226,42445,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(293227,42445,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(293228,42445,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(293229,42445,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(293230,42445,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(293231,42445,'blocks_16_icon_row_items_3_icon','recognised.svg'),(293232,42445,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(293233,42445,'blocks_16_icon_row_items_3_label','Optimised Performance'),(293234,42445,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(293235,42445,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(293236,42445,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(293237,42445,'blocks_16_icon_row_items','4'),(293238,42445,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(293239,42445,'blocks_17_acfe_flexible_toggle',''),(293240,42445,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293241,42445,'blocks_17_acfe_flexible_layout_title','Conclusion'),(293242,42445,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293243,42445,'blocks_17_options_theme','#f5f5f5'),(293244,42445,'_blocks_17_options_theme','field_6176830e2ad17'),(293245,42445,'blocks_17_options',''),(293246,42445,'_blocks_17_options','field_6176830e2ad16'),(293247,42445,'blocks_17_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(293248,42445,'_blocks_17_text_block_heading','field_617669d413097'),(293249,42445,'blocks_17_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(293250,42445,'_blocks_17_text_block_content','field_617669ec13098'),(293251,42445,'blocks_18_acfe_flexible_toggle',''),(293252,42445,'_blocks_18_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(293253,42445,'blocks_18_acfe_flexible_layout_title','Promo Panel'),(293254,42445,'_blocks_18_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(293255,42445,'blocks_18_options_alignment','center'),(293256,42445,'_blocks_18_options_alignment','field_61769449f5490'),(293257,42445,'blocks_18_options',''),(293258,42445,'_blocks_18_options','field_617693e1428f0'),(293259,42445,'blocks_18_promo_panel_image','40342'),(293260,42445,'_blocks_18_promo_panel_image','field_617693e1428f3'),(293261,42445,'blocks_18_promo_panel_content_heading','Want to Get Started?'),(293262,42445,'_blocks_18_promo_panel_content_heading','field_617693e1428f6'),(293263,42445,'blocks_18_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(293264,42445,'_blocks_18_promo_panel_content_text','field_617693e1428f7'),(293265,42445,'blocks_18_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(293266,42445,'_blocks_18_promo_panel_content_actions_0_button','field_617693e1428f9'),(293267,42445,'blocks_18_promo_panel_content_actions','1'),(293268,42445,'_blocks_18_promo_panel_content_actions','field_617693e1428f8'),(293269,42445,'blocks_18_promo_panel_content',''),(293270,42445,'_blocks_18_promo_panel_content','field_617693e1428f4'),(293271,42446,'hide_hero','0'),(293272,42446,'_hide_hero','field_66a2380fcda39'),(293273,42446,'hero_title',''),(293274,42446,'_hero_title','field_617571fe285e8'),(293275,42446,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(293276,42446,'_hero_text','field_6175723c285e9'),(293277,42446,'hero_actions','1'),(293278,42446,'_hero_actions','field_61757270285ea'),(293279,42446,'hero_style','default'),(293280,42446,'_hero_style','field_62051d9dc5324'),(293281,42446,'hero_image_pos_x','right'),(293282,42446,'_hero_image_pos_x','field_62ec3d05390bb'),(293283,42446,'hero_image_pos_y','top'),(293284,42446,'_hero_image_pos_y','field_62ec3d05390bc'),(293285,42446,'hero_image_pos',''),(293286,42446,'_hero_image_pos','field_62ec3d05390ba'),(293287,42446,'fft_hide_from_listings','0'),(293288,42446,'_fft_hide_from_listings','field_61f1320446ab2'),(293289,42446,'post_format','402'),(293290,42446,'_post_format','field_61756bfb51898'),(293291,42446,'post_author',''),(293292,42446,'_post_author','field_62ec389d22113'),(293293,42446,'post_reviewer',''),(293294,42446,'_post_reviewer','field_627140a2a9800'),(293295,42446,'post_table_of_contents','0'),(293296,42446,'_post_table_of_contents','field_65c503bc846a6'),(293297,42446,'blocks','a:19:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:10:\"text_block\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"text_block\";i:18;s:11:\"promo_panel\";}'),(293298,42446,'_blocks','field_6176696113096'),(293299,42446,'_thumbnail_id','41331'),(293300,42446,'__thumbnail_id','field_617570855ddaf'),(293301,42446,'blocks_0_acfe_flexible_toggle',''),(293302,42446,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(293303,42446,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(293304,42446,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(293305,42446,'blocks_0_options_theme','#ffffff'),(293306,42446,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(293307,42446,'blocks_0_options',''),(293308,42446,'_blocks_0_options','field_6177b758246ae'),(293309,42446,'blocks_0_link_stack_content_title',''),(293310,42446,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(293311,42446,'blocks_0_link_stack_content_heading','What is MSK?'),(293312,42446,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(293313,42446,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(293314,42446,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(293315,42446,'blocks_0_link_stack_content_actions_0_button',''),(293316,42446,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(293317,42446,'blocks_0_link_stack_content_actions','1'),(293318,42446,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(293319,42446,'blocks_0_link_stack_content',''),(293320,42446,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(293321,42446,'blocks_0_link_stack_0_label','1.'),(293322,42446,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(293323,42446,'blocks_0_link_stack_0_title','Overview'),(293324,42446,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(293325,42446,'blocks_0_link_stack_0_url','#overview'),(293326,42446,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(293327,42446,'blocks_0_link_stack_1_label','2.'),(293328,42446,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(293329,42446,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(293330,42446,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(293331,42446,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(293332,42446,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(293333,42446,'blocks_0_link_stack_2_label','3.'),(293334,42446,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(293335,42446,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(293336,42446,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(293337,42446,'blocks_0_link_stack_2_url','#who-should-study-msk'),(293338,42446,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(293339,42446,'blocks_0_link_stack_3_label','4.'),(293340,42446,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(293341,42446,'blocks_0_link_stack_3_title','Common MSK Conditions'),(293342,42446,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(293343,42446,'blocks_0_link_stack_3_url','#common-msk-conditions'),(293344,42446,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(293345,42446,'blocks_0_link_stack_4_label','5.'),(293346,42446,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(293347,42446,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(293348,42446,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(293349,42446,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(293350,42446,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(293351,42446,'blocks_0_link_stack_5_label','6.'),(293352,42446,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(293353,42446,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(293354,42446,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(293355,42446,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(293356,42446,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(293357,42446,'blocks_0_link_stack','6'),(293358,42446,'_blocks_0_link_stack','field_6177b7f600cff'),(293359,42446,'blocks_1_acfe_flexible_toggle',''),(293360,42446,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293361,42446,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(293362,42446,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293363,42446,'blocks_1_options_theme','#f5f5f5'),(293364,42446,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(293365,42446,'blocks_1_options_reverse','0'),(293366,42446,'_blocks_1_options_reverse','field_61768049bb8ac'),(293367,42446,'blocks_1_options',''),(293368,42446,'_blocks_1_options','field_617682517c334'),(293369,42446,'blocks_1_split_5050_image','40615'),(293370,42446,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(293371,42446,'blocks_1_split_5050_video',''),(293372,42446,'_blocks_1_split_5050_video','field_6239f3160848a'),(293373,42446,'blocks_1_split_5050_content_title',''),(293374,42446,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(293375,42446,'blocks_1_split_5050_content_heading','Overview'),(293376,42446,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(293377,42446,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(293378,42446,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(293379,42446,'blocks_1_split_5050_content_actions',''),(293380,42446,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(293381,42446,'blocks_1_split_5050_content',''),(293382,42446,'_blocks_1_split_5050_content','field_61767afceb8ba'),(293383,42446,'blocks_2_acfe_flexible_toggle',''),(293384,42446,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293385,42446,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(293386,42446,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293387,42446,'blocks_2_options_theme','#f5f5f5'),(293388,42446,'_blocks_2_options_theme','field_6176830e2ad17'),(293389,42446,'blocks_2_options',''),(293390,42446,'_blocks_2_options','field_6176830e2ad16'),(293391,42446,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(293392,42446,'_blocks_2_text_block_heading','field_617669d413097'),(293393,42446,'blocks_2_text_block_content',''),(293394,42446,'_blocks_2_text_block_content','field_617669ec13098'),(293395,42446,'blocks_3_acfe_flexible_toggle',''),(293396,42446,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293397,42446,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(293398,42446,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293399,42446,'blocks_3_options_theme','#f5f5f5'),(293400,42446,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(293401,42446,'blocks_3_options_reverse','0'),(293402,42446,'_blocks_3_options_reverse','field_61768049bb8ac'),(293403,42446,'blocks_3_options',''),(293404,42446,'_blocks_3_options','field_617682517c334'),(293405,42446,'blocks_3_split_5050_image','40618'),(293406,42446,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(293407,42446,'blocks_3_split_5050_video',''),(293408,42446,'_blocks_3_split_5050_video','field_6239f3160848a'),(293409,42446,'blocks_3_split_5050_content_title',''),(293410,42446,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(293411,42446,'blocks_3_split_5050_content_heading',''),(293412,42446,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(293413,42446,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n<ul>\r\n 	<li><strong>Bones:\r\n</strong>Providing structure and protecting vital organs.</li>\r\n 	<li><strong>Muscles:\r\n</strong>Enabling movement by contracting and relaxing.</li>\r\n 	<li><strong>Joints:\r\n</strong>Connecting bones and allowing flexibility and a range of motion.</li>\r\n 	<li><strong>Connective Tissues:\r\n</strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.</li>\r\n</ul>'),(293414,42446,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(293415,42446,'blocks_3_split_5050_content_actions',''),(293416,42446,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(293417,42446,'blocks_3_split_5050_content',''),(293418,42446,'_blocks_3_split_5050_content','field_61767afceb8ba'),(293419,42446,'blocks_4_acfe_flexible_toggle',''),(293420,42446,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293421,42446,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(293422,42446,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293423,42446,'blocks_4_options_theme','#f5f5f5'),(293424,42446,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(293425,42446,'blocks_4_options_reverse','0'),(293426,42446,'_blocks_4_options_reverse','field_61768049bb8ac'),(293427,42446,'blocks_4_options',''),(293428,42446,'_blocks_4_options','field_617682517c334'),(293429,42446,'blocks_4_split_5050_image','41330'),(293430,42446,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(293431,42446,'blocks_4_split_5050_video',''),(293432,42446,'_blocks_4_split_5050_video','field_6239f3160848a'),(293433,42446,'blocks_4_split_5050_content_title',''),(293434,42446,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(293435,42446,'blocks_4_split_5050_content_heading',''),(293436,42446,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(293437,42446,'blocks_4_split_5050_content_text','Maintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(293438,42446,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(293439,42446,'blocks_4_split_5050_content_actions',''),(293440,42446,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(293441,42446,'blocks_4_split_5050_content',''),(293442,42446,'_blocks_4_split_5050_content','field_61767afceb8ba'),(293443,42446,'blocks_5_acfe_flexible_toggle',''),(293444,42446,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293445,42446,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(293446,42446,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293447,42446,'blocks_5_options_theme','#b61234'),(293448,42446,'_blocks_5_options_theme','field_6176830e2ad17'),(293449,42446,'blocks_5_options',''),(293450,42446,'_blocks_5_options','field_6176830e2ad16'),(293451,42446,'blocks_5_text_block_heading','Who Should Study MSK?'),(293452,42446,'_blocks_5_text_block_heading','field_617669d413097'),(293453,42446,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(293454,42446,'_blocks_5_text_block_content','field_617669ec13098'),(293455,42446,'blocks_6_acfe_flexible_toggle',''),(293456,42446,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(293457,42446,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(293458,42446,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(293459,42446,'blocks_6_options_theme','#b61234'),(293460,42446,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(293461,42446,'blocks_6_options',''),(293462,42446,'_blocks_6_options','field_6177cfcd8140f'),(293463,42446,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(293464,42446,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(293465,42446,'blocks_6_tabs_0_tab_content_title',''),(293466,42446,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(293467,42446,'blocks_6_tabs_0_tab_content_heading',''),(293468,42446,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(293469,42446,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(293470,42446,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(293471,42446,'blocks_6_tabs_0_tab_content_actions',''),(293472,42446,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(293473,42446,'blocks_6_tabs_0_tab_content',''),(293474,42446,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(293475,42446,'blocks_6_tabs_0_tab_image','41542'),(293476,42446,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(293477,42446,'blocks_6_tabs_1_tab_label','Current Practitioners'),(293478,42446,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(293479,42446,'blocks_6_tabs_1_tab_content_title',''),(293480,42446,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(293481,42446,'blocks_6_tabs_1_tab_content_heading',''),(293482,42446,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(293483,42446,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(293484,42446,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(293485,42446,'blocks_6_tabs_1_tab_content_actions',''),(293486,42446,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(293487,42446,'blocks_6_tabs_1_tab_content',''),(293488,42446,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(293489,42446,'blocks_6_tabs_1_tab_image','41505'),(293490,42446,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(293491,42446,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(293492,42446,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(293493,42446,'blocks_6_tabs_2_tab_content_title',''),(293494,42446,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(293495,42446,'blocks_6_tabs_2_tab_content_heading',''),(293496,42446,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(293497,42446,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(293498,42446,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(293499,42446,'blocks_6_tabs_2_tab_content_actions',''),(293500,42446,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(293501,42446,'blocks_6_tabs_2_tab_content',''),(293502,42446,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(293503,42446,'blocks_6_tabs_2_tab_image','41539'),(293504,42446,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(293505,42446,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(293506,42446,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(293507,42446,'blocks_6_tabs_3_tab_content_title',''),(293508,42446,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(293509,42446,'blocks_6_tabs_3_tab_content_heading',''),(293510,42446,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(293511,42446,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(293512,42446,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(293513,42446,'blocks_6_tabs_3_tab_content_actions',''),(293514,42446,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(293515,42446,'blocks_6_tabs_3_tab_content',''),(293516,42446,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(293517,42446,'blocks_6_tabs_3_tab_image','41502'),(293518,42446,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(293519,42446,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(293520,42446,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(293521,42446,'blocks_6_tabs_4_tab_content_title',''),(293522,42446,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(293523,42446,'blocks_6_tabs_4_tab_content_heading',''),(293524,42446,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(293525,42446,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(293526,42446,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(293527,42446,'blocks_6_tabs_4_tab_content_actions',''),(293528,42446,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(293529,42446,'blocks_6_tabs_4_tab_content',''),(293530,42446,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(293531,42446,'blocks_6_tabs_4_tab_image','41506'),(293532,42446,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(293533,42446,'blocks_6_tabs','5'),(293534,42446,'_blocks_6_tabs','field_6177cff281419'),(293535,42446,'blocks_7_acfe_flexible_toggle',''),(293536,42446,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(293537,42446,'blocks_7_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(293538,42446,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(293539,42446,'blocks_7_options_theme','#ffffff'),(293540,42446,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(293541,42446,'blocks_7_options_state','0'),(293542,42446,'_blocks_7_options_state','field_6239fcb7508c5'),(293543,42446,'blocks_7_options',''),(293544,42446,'_blocks_7_options','field_6177e2991ac44'),(293545,42446,'blocks_7_content_title','Common MSK Conditions'),(293546,42446,'_blocks_7_content_title','field_64d237e8bb1e2'),(293547,42446,'blocks_7_content_heading','Common MSK Conditions'),(293548,42446,'_blocks_7_content_heading','field_64d237e8bb1e3'),(293549,42446,'blocks_7_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(293550,42446,'_blocks_7_content_text','field_64d237e8bb1e4'),(293551,42446,'blocks_7_content_actions',''),(293552,42446,'_blocks_7_content_actions','field_64d237e8bb1e5'),(293553,42446,'blocks_7_content_align','left'),(293554,42446,'_blocks_7_content_align','field_64d2443e6b6aa'),(293555,42446,'blocks_7_content',''),(293556,42446,'_blocks_7_content','field_64d237e8bb1e1'),(293557,42446,'blocks_7_accordion_content','custom'),(293558,42446,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(293559,42446,'blocks_7_accordion_items_0_title','Osteoarthritis'),(293560,42446,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(293561,42446,'blocks_7_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(293562,42446,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(293563,42446,'blocks_7_accordion_items_1_title','Rheumatoid Arthritis'),(293564,42446,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(293565,42446,'blocks_7_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(293566,42446,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(293567,42446,'blocks_7_accordion_items_2_title','Back Pain'),(293568,42446,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(293569,42446,'blocks_7_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(293570,42446,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(293571,42446,'blocks_7_accordion_items_3_title','Osteoporosis'),(293572,42446,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(293573,42446,'blocks_7_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(293574,42446,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(293575,42446,'blocks_7_accordion_items_4_title','Tendinitis'),(293576,42446,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(293577,42446,'blocks_7_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(293578,42446,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(293579,42446,'blocks_7_accordion_items_5_title','Carpal Tunnel Syndrome'),(293580,42446,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(293581,42446,'blocks_7_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(293582,42446,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(293583,42446,'blocks_7_accordion_items_6_title','Fibromyalgia'),(293584,42446,'_blocks_7_accordion_items_6_title','field_6177e2991ac4d'),(293585,42446,'blocks_7_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(293586,42446,'_blocks_7_accordion_items_6_text','field_6177e2991ac4e'),(293587,42446,'blocks_7_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(293588,42446,'_blocks_7_accordion_items_7_title','field_6177e2991ac4d'),(293589,42446,'blocks_7_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(293590,42446,'_blocks_7_accordion_items_7_text','field_6177e2991ac4e'),(293591,42446,'blocks_7_accordion_items','8'),(293592,42446,'_blocks_7_accordion_items','field_6177e2991ac4c'),(293593,42446,'blocks_7_actions',''),(293594,42446,'_blocks_7_actions','field_61a746a817f7a'),(293595,42446,'blocks_8_acfe_flexible_toggle',''),(293596,42446,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293597,42446,'blocks_8_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(293598,42446,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293599,42446,'blocks_8_options_theme','#f5f5f5'),(293600,42446,'_blocks_8_options_theme','field_6176830e2ad17'),(293601,42446,'blocks_8_options',''),(293602,42446,'_blocks_8_options','field_6176830e2ad16'),(293603,42446,'blocks_8_text_block_heading','The Importance of MSK Education'),(293604,42446,'_blocks_8_text_block_heading','field_617669d413097'),(293605,42446,'blocks_8_text_block_content',''),(293606,42446,'_blocks_8_text_block_content','field_617669ec13098'),(293607,42446,'blocks_9_acfe_flexible_toggle',''),(293608,42446,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293609,42446,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(293610,42446,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293611,42446,'blocks_9_options_theme','#f5f5f5'),(293612,42446,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(293613,42446,'blocks_9_options_reverse','1'),(293614,42446,'_blocks_9_options_reverse','field_61768049bb8ac'),(293615,42446,'blocks_9_options',''),(293616,42446,'_blocks_9_options','field_617682517c334'),(293617,42446,'blocks_9_split_5050_image','41498'),(293618,42446,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(293619,42446,'blocks_9_split_5050_video',''),(293620,42446,'_blocks_9_split_5050_video','field_6239f3160848a'),(293621,42446,'blocks_9_split_5050_content_title',''),(293622,42446,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(293623,42446,'blocks_9_split_5050_content_heading',''),(293624,42446,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(293625,42446,'blocks_9_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(293626,42446,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(293627,42446,'blocks_9_split_5050_content_actions',''),(293628,42446,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(293629,42446,'blocks_9_split_5050_content',''),(293630,42446,'_blocks_9_split_5050_content','field_61767afceb8ba'),(293631,42446,'blocks_14_acfe_flexible_toggle',''),(293632,42446,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293633,42446,'blocks_14_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(293634,42446,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293635,42446,'blocks_14_options_theme','#ffffff'),(293636,42446,'_blocks_14_options_theme','field_6176830e2ad17'),(293637,42446,'blocks_14_options',''),(293638,42446,'_blocks_14_options','field_6176830e2ad16'),(293639,42446,'blocks_14_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(293640,42446,'_blocks_14_text_block_heading','field_617669d413097'),(293641,42446,'blocks_14_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(293642,42446,'_blocks_14_text_block_content','field_617669ec13098'),(293643,42446,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(293644,42446,'_hero_actions_0_button','field_61757281285eb'),(293645,42446,'blocks_10_acfe_flexible_toggle',''),(293646,42446,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293647,42446,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(293648,42446,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293649,42446,'blocks_10_options_theme','#f5f5f5'),(293650,42446,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(293651,42446,'blocks_10_options_reverse','1'),(293652,42446,'_blocks_10_options_reverse','field_61768049bb8ac'),(293653,42446,'blocks_10_options',''),(293654,42446,'_blocks_10_options','field_617682517c334'),(293655,42446,'blocks_10_split_5050_image','40387'),(293656,42446,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(293657,42446,'blocks_10_split_5050_video',''),(293658,42446,'_blocks_10_split_5050_video','field_6239f3160848a'),(293659,42446,'blocks_10_split_5050_content_title',''),(293660,42446,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(293661,42446,'blocks_10_split_5050_content_heading',''),(293662,42446,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(293663,42446,'blocks_10_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(293664,42446,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(293665,42446,'blocks_10_split_5050_content_actions',''),(293666,42446,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(293667,42446,'blocks_10_split_5050_content',''),(293668,42446,'_blocks_10_split_5050_content','field_61767afceb8ba'),(293669,42446,'blocks_11_acfe_flexible_toggle',''),(293670,42446,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293671,42446,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(293672,42446,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293673,42446,'blocks_11_options_theme','#f5f5f5'),(293674,42446,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(293675,42446,'blocks_11_options_reverse','1'),(293676,42446,'_blocks_11_options_reverse','field_61768049bb8ac'),(293677,42446,'blocks_11_options',''),(293678,42446,'_blocks_11_options','field_617682517c334'),(293679,42446,'blocks_11_split_5050_image','18856'),(293680,42446,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(293681,42446,'blocks_11_split_5050_video',''),(293682,42446,'_blocks_11_split_5050_video','field_6239f3160848a'),(293683,42446,'blocks_11_split_5050_content_title',''),(293684,42446,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(293685,42446,'blocks_11_split_5050_content_heading',''),(293686,42446,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(293687,42446,'blocks_11_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(293688,42446,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(293689,42446,'blocks_11_split_5050_content_actions',''),(293690,42446,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(293691,42446,'blocks_11_split_5050_content',''),(293692,42446,'_blocks_11_split_5050_content','field_61767afceb8ba'),(293693,42446,'blocks_12_acfe_flexible_toggle',''),(293694,42446,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293695,42446,'blocks_12_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(293696,42446,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293697,42446,'blocks_12_options_theme','#ffffff'),(293698,42446,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(293699,42446,'blocks_12_options_reverse','0'),(293700,42446,'_blocks_12_options_reverse','field_61768049bb8ac'),(293701,42446,'blocks_12_options',''),(293702,42446,'_blocks_12_options','field_617682517c334'),(293703,42446,'blocks_12_split_5050_image','41501'),(293704,42446,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(293705,42446,'blocks_12_split_5050_video',''),(293706,42446,'_blocks_12_split_5050_video','field_6239f3160848a'),(293707,42446,'blocks_12_split_5050_content_title',''),(293708,42446,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(293709,42446,'blocks_12_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(293710,42446,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(293711,42446,'blocks_12_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(293712,42446,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(293713,42446,'blocks_12_split_5050_content_actions',''),(293714,42446,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(293715,42446,'blocks_12_split_5050_content',''),(293716,42446,'_blocks_12_split_5050_content','field_61767afceb8ba'),(293717,42446,'blocks_13_acfe_flexible_toggle',''),(293718,42446,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293719,42446,'blocks_13_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(293720,42446,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293721,42446,'blocks_13_options_theme','#ffffff'),(293722,42446,'_blocks_13_options_theme','field_6176830e2ad17'),(293723,42446,'blocks_13_options',''),(293724,42446,'_blocks_13_options','field_6176830e2ad16'),(293725,42446,'blocks_13_text_block_heading','The Role of MSK Education in Workplace Health'),(293726,42446,'_blocks_13_text_block_heading','field_617669d413097'),(293727,42446,'blocks_13_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(293728,42446,'_blocks_13_text_block_content','field_617669ec13098'),(293729,42446,'blocks_15_acfe_flexible_toggle',''),(293730,42446,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293731,42446,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(293732,42446,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293733,42446,'blocks_15_options_theme','#b61234'),(293734,42446,'_blocks_15_options_theme','field_6176830e2ad17'),(293735,42446,'blocks_15_options',''),(293736,42446,'_blocks_15_options','field_6176830e2ad16'),(293737,42446,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(293738,42446,'_blocks_15_text_block_heading','field_617669d413097'),(293739,42446,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(293740,42446,'_blocks_15_text_block_content','field_617669ec13098'),(293741,42446,'blocks_16_acfe_flexible_toggle',''),(293742,42446,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(293743,42446,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(293744,42446,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(293745,42446,'blocks_16_options_theme','#b61234'),(293746,42446,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(293747,42446,'blocks_16_options_format','row'),(293748,42446,'_blocks_16_options_format','field_64bfde9a90690'),(293749,42446,'blocks_16_options',''),(293750,42446,'_blocks_16_options','field_64bfdd9b90684'),(293751,42446,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(293752,42446,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(293753,42446,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(293754,42446,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(293755,42446,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(293756,42446,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(293757,42446,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(293758,42446,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(293759,42446,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(293760,42446,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(293761,42446,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(293762,42446,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(293763,42446,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(293764,42446,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(293765,42446,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(293766,42446,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(293767,42446,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(293768,42446,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(293769,42446,'blocks_16_icon_row_items_3_icon','recognised.svg'),(293770,42446,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(293771,42446,'blocks_16_icon_row_items_3_label','Optimised Performance'),(293772,42446,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(293773,42446,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(293774,42446,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(293775,42446,'blocks_16_icon_row_items','4'),(293776,42446,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(293777,42446,'blocks_17_acfe_flexible_toggle',''),(293778,42446,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293779,42446,'blocks_17_acfe_flexible_layout_title','Conclusion'),(293780,42446,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293781,42446,'blocks_17_options_theme','#f5f5f5'),(293782,42446,'_blocks_17_options_theme','field_6176830e2ad17'),(293783,42446,'blocks_17_options',''),(293784,42446,'_blocks_17_options','field_6176830e2ad16'),(293785,42446,'blocks_17_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(293786,42446,'_blocks_17_text_block_heading','field_617669d413097'),(293787,42446,'blocks_17_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(293788,42446,'_blocks_17_text_block_content','field_617669ec13098'),(293789,42446,'blocks_18_acfe_flexible_toggle',''),(293790,42446,'_blocks_18_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(293791,42446,'blocks_18_acfe_flexible_layout_title','Promo Panel'),(293792,42446,'_blocks_18_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(293793,42446,'blocks_18_options_alignment','center'),(293794,42446,'_blocks_18_options_alignment','field_61769449f5490'),(293795,42446,'blocks_18_options',''),(293796,42446,'_blocks_18_options','field_617693e1428f0'),(293797,42446,'blocks_18_promo_panel_image','40342'),(293798,42446,'_blocks_18_promo_panel_image','field_617693e1428f3'),(293799,42446,'blocks_18_promo_panel_content_heading','Want to Get Started?'),(293800,42446,'_blocks_18_promo_panel_content_heading','field_617693e1428f6'),(293801,42446,'blocks_18_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(293802,42446,'_blocks_18_promo_panel_content_text','field_617693e1428f7'),(293803,42446,'blocks_18_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(293804,42446,'_blocks_18_promo_panel_content_actions_0_button','field_617693e1428f9'),(293805,42446,'blocks_18_promo_panel_content_actions','1'),(293806,42446,'_blocks_18_promo_panel_content_actions','field_617693e1428f8'),(293807,42446,'blocks_18_promo_panel_content',''),(293808,42446,'_blocks_18_promo_panel_content','field_617693e1428f4'),(293809,42447,'hide_hero','0'),(293810,42447,'_hide_hero','field_66a2380fcda39'),(293811,42447,'hero_title',''),(293812,42447,'_hero_title','field_617571fe285e8'),(293813,42447,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(293814,42447,'_hero_text','field_6175723c285e9'),(293815,42447,'hero_actions','1'),(293816,42447,'_hero_actions','field_61757270285ea'),(293817,42447,'hero_style','default'),(293818,42447,'_hero_style','field_62051d9dc5324'),(293819,42447,'hero_image_pos_x','right'),(293820,42447,'_hero_image_pos_x','field_62ec3d05390bb'),(293821,42447,'hero_image_pos_y','top'),(293822,42447,'_hero_image_pos_y','field_62ec3d05390bc'),(293823,42447,'hero_image_pos',''),(293824,42447,'_hero_image_pos','field_62ec3d05390ba'),(293825,42447,'fft_hide_from_listings','0'),(293826,42447,'_fft_hide_from_listings','field_61f1320446ab2'),(293827,42447,'post_format','402'),(293828,42447,'_post_format','field_61756bfb51898'),(293829,42447,'post_author',''),(293830,42447,'_post_author','field_62ec389d22113'),(293831,42447,'post_reviewer',''),(293832,42447,'_post_reviewer','field_627140a2a9800'),(293833,42447,'post_table_of_contents','0'),(293834,42447,'_post_table_of_contents','field_65c503bc846a6'),(293835,42447,'blocks','a:19:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:10:\"text_block\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"text_block\";i:18;s:11:\"promo_panel\";}'),(293836,42447,'_blocks','field_6176696113096'),(293837,42447,'_thumbnail_id','41331'),(293838,42447,'__thumbnail_id','field_617570855ddaf'),(293839,42447,'blocks_0_acfe_flexible_toggle',''),(293840,42447,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(293841,42447,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(293842,42447,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(293843,42447,'blocks_0_options_theme','#ffffff'),(293844,42447,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(293845,42447,'blocks_0_options',''),(293846,42447,'_blocks_0_options','field_6177b758246ae'),(293847,42447,'blocks_0_link_stack_content_title',''),(293848,42447,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(293849,42447,'blocks_0_link_stack_content_heading','What is MSK?'),(293850,42447,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(293851,42447,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(293852,42447,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(293853,42447,'blocks_0_link_stack_content_actions_0_button',''),(293854,42447,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(293855,42447,'blocks_0_link_stack_content_actions','1'),(293856,42447,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(293857,42447,'blocks_0_link_stack_content',''),(293858,42447,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(293859,42447,'blocks_0_link_stack_0_label','1.'),(293860,42447,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(293861,42447,'blocks_0_link_stack_0_title','Overview'),(293862,42447,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(293863,42447,'blocks_0_link_stack_0_url','#overview'),(293864,42447,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(293865,42447,'blocks_0_link_stack_1_label','2.'),(293866,42447,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(293867,42447,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(293868,42447,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(293869,42447,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(293870,42447,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(293871,42447,'blocks_0_link_stack_2_label','3.'),(293872,42447,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(293873,42447,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(293874,42447,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(293875,42447,'blocks_0_link_stack_2_url','#who-should-study-msk'),(293876,42447,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(293877,42447,'blocks_0_link_stack_3_label','4.'),(293878,42447,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(293879,42447,'blocks_0_link_stack_3_title','Common MSK Conditions'),(293880,42447,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(293881,42447,'blocks_0_link_stack_3_url','#common-msk-conditions'),(293882,42447,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(293883,42447,'blocks_0_link_stack_4_label','5.'),(293884,42447,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(293885,42447,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(293886,42447,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(293887,42447,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(293888,42447,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(293889,42447,'blocks_0_link_stack_5_label','6.'),(293890,42447,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(293891,42447,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(293892,42447,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(293893,42447,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(293894,42447,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(293895,42447,'blocks_0_link_stack','6'),(293896,42447,'_blocks_0_link_stack','field_6177b7f600cff'),(293897,42447,'blocks_1_acfe_flexible_toggle',''),(293898,42447,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293899,42447,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(293900,42447,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293901,42447,'blocks_1_options_theme','#f5f5f5'),(293902,42447,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(293903,42447,'blocks_1_options_reverse','0'),(293904,42447,'_blocks_1_options_reverse','field_61768049bb8ac'),(293905,42447,'blocks_1_options',''),(293906,42447,'_blocks_1_options','field_617682517c334'),(293907,42447,'blocks_1_split_5050_image','40615'),(293908,42447,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(293909,42447,'blocks_1_split_5050_video',''),(293910,42447,'_blocks_1_split_5050_video','field_6239f3160848a'),(293911,42447,'blocks_1_split_5050_content_title',''),(293912,42447,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(293913,42447,'blocks_1_split_5050_content_heading','Overview'),(293914,42447,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(293915,42447,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(293916,42447,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(293917,42447,'blocks_1_split_5050_content_actions',''),(293918,42447,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(293919,42447,'blocks_1_split_5050_content',''),(293920,42447,'_blocks_1_split_5050_content','field_61767afceb8ba'),(293921,42447,'blocks_2_acfe_flexible_toggle',''),(293922,42447,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293923,42447,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(293924,42447,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293925,42447,'blocks_2_options_theme','#f5f5f5'),(293926,42447,'_blocks_2_options_theme','field_6176830e2ad17'),(293927,42447,'blocks_2_options',''),(293928,42447,'_blocks_2_options','field_6176830e2ad16'),(293929,42447,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(293930,42447,'_blocks_2_text_block_heading','field_617669d413097'),(293931,42447,'blocks_2_text_block_content',''),(293932,42447,'_blocks_2_text_block_content','field_617669ec13098'),(293933,42447,'blocks_3_acfe_flexible_toggle',''),(293934,42447,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293935,42447,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(293936,42447,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293937,42447,'blocks_3_options_theme','#f5f5f5'),(293938,42447,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(293939,42447,'blocks_3_options_reverse','0'),(293940,42447,'_blocks_3_options_reverse','field_61768049bb8ac'),(293941,42447,'blocks_3_options',''),(293942,42447,'_blocks_3_options','field_617682517c334'),(293943,42447,'blocks_3_split_5050_image','40618'),(293944,42447,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(293945,42447,'blocks_3_split_5050_video',''),(293946,42447,'_blocks_3_split_5050_video','field_6239f3160848a'),(293947,42447,'blocks_3_split_5050_content_title',''),(293948,42447,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(293949,42447,'blocks_3_split_5050_content_heading',''),(293950,42447,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(293951,42447,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n<ul>\r\n 	<li><strong>Bones: </strong>Providing structure and protecting vital organs.</li>\r\n 	<li><strong>Muscles: </strong>Enabling movement by contracting and relaxing.</li>\r\n 	<li><strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.</li>\r\n 	<li><strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.</li>\r\n</ul>'),(293952,42447,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(293953,42447,'blocks_3_split_5050_content_actions',''),(293954,42447,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(293955,42447,'blocks_3_split_5050_content',''),(293956,42447,'_blocks_3_split_5050_content','field_61767afceb8ba'),(293957,42447,'blocks_4_acfe_flexible_toggle',''),(293958,42447,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(293959,42447,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(293960,42447,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(293961,42447,'blocks_4_options_theme','#f5f5f5'),(293962,42447,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(293963,42447,'blocks_4_options_reverse','0'),(293964,42447,'_blocks_4_options_reverse','field_61768049bb8ac'),(293965,42447,'blocks_4_options',''),(293966,42447,'_blocks_4_options','field_617682517c334'),(293967,42447,'blocks_4_split_5050_image','41330'),(293968,42447,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(293969,42447,'blocks_4_split_5050_video',''),(293970,42447,'_blocks_4_split_5050_video','field_6239f3160848a'),(293971,42447,'blocks_4_split_5050_content_title',''),(293972,42447,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(293973,42447,'blocks_4_split_5050_content_heading',''),(293974,42447,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(293975,42447,'blocks_4_split_5050_content_text','Maintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(293976,42447,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(293977,42447,'blocks_4_split_5050_content_actions',''),(293978,42447,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(293979,42447,'blocks_4_split_5050_content',''),(293980,42447,'_blocks_4_split_5050_content','field_61767afceb8ba'),(293981,42447,'blocks_5_acfe_flexible_toggle',''),(293982,42447,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(293983,42447,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(293984,42447,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(293985,42447,'blocks_5_options_theme','#b61234'),(293986,42447,'_blocks_5_options_theme','field_6176830e2ad17'),(293987,42447,'blocks_5_options',''),(293988,42447,'_blocks_5_options','field_6176830e2ad16'),(293989,42447,'blocks_5_text_block_heading','Who Should Study MSK?'),(293990,42447,'_blocks_5_text_block_heading','field_617669d413097'),(293991,42447,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(293992,42447,'_blocks_5_text_block_content','field_617669ec13098'),(293993,42447,'blocks_6_acfe_flexible_toggle',''),(293994,42447,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(293995,42447,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(293996,42447,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(293997,42447,'blocks_6_options_theme','#b61234'),(293998,42447,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(293999,42447,'blocks_6_options',''),(294000,42447,'_blocks_6_options','field_6177cfcd8140f'),(294001,42447,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(294002,42447,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(294003,42447,'blocks_6_tabs_0_tab_content_title',''),(294004,42447,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(294005,42447,'blocks_6_tabs_0_tab_content_heading',''),(294006,42447,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(294007,42447,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(294008,42447,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(294009,42447,'blocks_6_tabs_0_tab_content_actions',''),(294010,42447,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(294011,42447,'blocks_6_tabs_0_tab_content',''),(294012,42447,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(294013,42447,'blocks_6_tabs_0_tab_image','41542'),(294014,42447,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(294015,42447,'blocks_6_tabs_1_tab_label','Current Practitioners'),(294016,42447,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(294017,42447,'blocks_6_tabs_1_tab_content_title',''),(294018,42447,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(294019,42447,'blocks_6_tabs_1_tab_content_heading',''),(294020,42447,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(294021,42447,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(294022,42447,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(294023,42447,'blocks_6_tabs_1_tab_content_actions',''),(294024,42447,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(294025,42447,'blocks_6_tabs_1_tab_content',''),(294026,42447,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(294027,42447,'blocks_6_tabs_1_tab_image','41505'),(294028,42447,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(294029,42447,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(294030,42447,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(294031,42447,'blocks_6_tabs_2_tab_content_title',''),(294032,42447,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(294033,42447,'blocks_6_tabs_2_tab_content_heading',''),(294034,42447,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(294035,42447,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(294036,42447,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(294037,42447,'blocks_6_tabs_2_tab_content_actions',''),(294038,42447,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(294039,42447,'blocks_6_tabs_2_tab_content',''),(294040,42447,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(294041,42447,'blocks_6_tabs_2_tab_image','41539'),(294042,42447,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(294043,42447,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(294044,42447,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(294045,42447,'blocks_6_tabs_3_tab_content_title',''),(294046,42447,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(294047,42447,'blocks_6_tabs_3_tab_content_heading',''),(294048,42447,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(294049,42447,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(294050,42447,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(294051,42447,'blocks_6_tabs_3_tab_content_actions',''),(294052,42447,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(294053,42447,'blocks_6_tabs_3_tab_content',''),(294054,42447,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(294055,42447,'blocks_6_tabs_3_tab_image','41502'),(294056,42447,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(294057,42447,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(294058,42447,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(294059,42447,'blocks_6_tabs_4_tab_content_title',''),(294060,42447,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(294061,42447,'blocks_6_tabs_4_tab_content_heading',''),(294062,42447,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(294063,42447,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(294064,42447,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(294065,42447,'blocks_6_tabs_4_tab_content_actions',''),(294066,42447,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(294067,42447,'blocks_6_tabs_4_tab_content',''),(294068,42447,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(294069,42447,'blocks_6_tabs_4_tab_image','41506'),(294070,42447,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(294071,42447,'blocks_6_tabs','5'),(294072,42447,'_blocks_6_tabs','field_6177cff281419'),(294073,42447,'blocks_7_acfe_flexible_toggle',''),(294074,42447,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(294075,42447,'blocks_7_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(294076,42447,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(294077,42447,'blocks_7_options_theme','#ffffff'),(294078,42447,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(294079,42447,'blocks_7_options_state','0'),(294080,42447,'_blocks_7_options_state','field_6239fcb7508c5'),(294081,42447,'blocks_7_options',''),(294082,42447,'_blocks_7_options','field_6177e2991ac44'),(294083,42447,'blocks_7_content_title','Common MSK Conditions'),(294084,42447,'_blocks_7_content_title','field_64d237e8bb1e2'),(294085,42447,'blocks_7_content_heading','Common MSK Conditions'),(294086,42447,'_blocks_7_content_heading','field_64d237e8bb1e3'),(294087,42447,'blocks_7_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(294088,42447,'_blocks_7_content_text','field_64d237e8bb1e4'),(294089,42447,'blocks_7_content_actions',''),(294090,42447,'_blocks_7_content_actions','field_64d237e8bb1e5'),(294091,42447,'blocks_7_content_align','left'),(294092,42447,'_blocks_7_content_align','field_64d2443e6b6aa'),(294093,42447,'blocks_7_content',''),(294094,42447,'_blocks_7_content','field_64d237e8bb1e1'),(294095,42447,'blocks_7_accordion_content','custom'),(294096,42447,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(294097,42447,'blocks_7_accordion_items_0_title','Osteoarthritis'),(294098,42447,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(294099,42447,'blocks_7_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(294100,42447,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(294101,42447,'blocks_7_accordion_items_1_title','Rheumatoid Arthritis'),(294102,42447,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(294103,42447,'blocks_7_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(294104,42447,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(294105,42447,'blocks_7_accordion_items_2_title','Back Pain'),(294106,42447,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(294107,42447,'blocks_7_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(294108,42447,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(294109,42447,'blocks_7_accordion_items_3_title','Osteoporosis'),(294110,42447,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(294111,42447,'blocks_7_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(294112,42447,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(294113,42447,'blocks_7_accordion_items_4_title','Tendinitis'),(294114,42447,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(294115,42447,'blocks_7_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(294116,42447,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(294117,42447,'blocks_7_accordion_items_5_title','Carpal Tunnel Syndrome'),(294118,42447,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(294119,42447,'blocks_7_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(294120,42447,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(294121,42447,'blocks_7_accordion_items_6_title','Fibromyalgia'),(294122,42447,'_blocks_7_accordion_items_6_title','field_6177e2991ac4d'),(294123,42447,'blocks_7_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(294124,42447,'_blocks_7_accordion_items_6_text','field_6177e2991ac4e'),(294125,42447,'blocks_7_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(294126,42447,'_blocks_7_accordion_items_7_title','field_6177e2991ac4d'),(294127,42447,'blocks_7_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(294128,42447,'_blocks_7_accordion_items_7_text','field_6177e2991ac4e'),(294129,42447,'blocks_7_accordion_items','8'),(294130,42447,'_blocks_7_accordion_items','field_6177e2991ac4c'),(294131,42447,'blocks_7_actions',''),(294132,42447,'_blocks_7_actions','field_61a746a817f7a'),(294133,42447,'blocks_8_acfe_flexible_toggle',''),(294134,42447,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(294135,42447,'blocks_8_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(294136,42447,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(294137,42447,'blocks_8_options_theme','#f5f5f5'),(294138,42447,'_blocks_8_options_theme','field_6176830e2ad17'),(294139,42447,'blocks_8_options',''),(294140,42447,'_blocks_8_options','field_6176830e2ad16'),(294141,42447,'blocks_8_text_block_heading','The Importance of MSK Education'),(294142,42447,'_blocks_8_text_block_heading','field_617669d413097'),(294143,42447,'blocks_8_text_block_content',''),(294144,42447,'_blocks_8_text_block_content','field_617669ec13098'),(294145,42447,'blocks_9_acfe_flexible_toggle',''),(294146,42447,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(294147,42447,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(294148,42447,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(294149,42447,'blocks_9_options_theme','#f5f5f5'),(294150,42447,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(294151,42447,'blocks_9_options_reverse','1'),(294152,42447,'_blocks_9_options_reverse','field_61768049bb8ac'),(294153,42447,'blocks_9_options',''),(294154,42447,'_blocks_9_options','field_617682517c334'),(294155,42447,'blocks_9_split_5050_image','41498'),(294156,42447,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(294157,42447,'blocks_9_split_5050_video',''),(294158,42447,'_blocks_9_split_5050_video','field_6239f3160848a'),(294159,42447,'blocks_9_split_5050_content_title',''),(294160,42447,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(294161,42447,'blocks_9_split_5050_content_heading',''),(294162,42447,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(294163,42447,'blocks_9_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(294164,42447,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(294165,42447,'blocks_9_split_5050_content_actions',''),(294166,42447,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(294167,42447,'blocks_9_split_5050_content',''),(294168,42447,'_blocks_9_split_5050_content','field_61767afceb8ba'),(294169,42447,'blocks_14_acfe_flexible_toggle',''),(294170,42447,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(294171,42447,'blocks_14_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(294172,42447,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(294173,42447,'blocks_14_options_theme','#ffffff'),(294174,42447,'_blocks_14_options_theme','field_6176830e2ad17'),(294175,42447,'blocks_14_options',''),(294176,42447,'_blocks_14_options','field_6176830e2ad16'),(294177,42447,'blocks_14_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(294178,42447,'_blocks_14_text_block_heading','field_617669d413097'),(294179,42447,'blocks_14_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(294180,42447,'_blocks_14_text_block_content','field_617669ec13098'),(294181,42447,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(294182,42447,'_hero_actions_0_button','field_61757281285eb'),(294183,42447,'blocks_10_acfe_flexible_toggle',''),(294184,42447,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(294185,42447,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(294186,42447,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(294187,42447,'blocks_10_options_theme','#f5f5f5'),(294188,42447,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(294189,42447,'blocks_10_options_reverse','1'),(294190,42447,'_blocks_10_options_reverse','field_61768049bb8ac'),(294191,42447,'blocks_10_options',''),(294192,42447,'_blocks_10_options','field_617682517c334'),(294193,42447,'blocks_10_split_5050_image','40387'),(294194,42447,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(294195,42447,'blocks_10_split_5050_video',''),(294196,42447,'_blocks_10_split_5050_video','field_6239f3160848a'),(294197,42447,'blocks_10_split_5050_content_title',''),(294198,42447,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(294199,42447,'blocks_10_split_5050_content_heading',''),(294200,42447,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(294201,42447,'blocks_10_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(294202,42447,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(294203,42447,'blocks_10_split_5050_content_actions',''),(294204,42447,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(294205,42447,'blocks_10_split_5050_content',''),(294206,42447,'_blocks_10_split_5050_content','field_61767afceb8ba'),(294207,42447,'blocks_11_acfe_flexible_toggle',''),(294208,42447,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(294209,42447,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(294210,42447,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(294211,42447,'blocks_11_options_theme','#f5f5f5'),(294212,42447,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(294213,42447,'blocks_11_options_reverse','1'),(294214,42447,'_blocks_11_options_reverse','field_61768049bb8ac'),(294215,42447,'blocks_11_options',''),(294216,42447,'_blocks_11_options','field_617682517c334'),(294217,42447,'blocks_11_split_5050_image','18856'),(294218,42447,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(294219,42447,'blocks_11_split_5050_video',''),(294220,42447,'_blocks_11_split_5050_video','field_6239f3160848a'),(294221,42447,'blocks_11_split_5050_content_title',''),(294222,42447,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(294223,42447,'blocks_11_split_5050_content_heading',''),(294224,42447,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(294225,42447,'blocks_11_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(294226,42447,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(294227,42447,'blocks_11_split_5050_content_actions',''),(294228,42447,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(294229,42447,'blocks_11_split_5050_content',''),(294230,42447,'_blocks_11_split_5050_content','field_61767afceb8ba'),(294231,42447,'blocks_12_acfe_flexible_toggle',''),(294232,42447,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(294233,42447,'blocks_12_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(294234,42447,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(294235,42447,'blocks_12_options_theme','#ffffff'),(294236,42447,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(294237,42447,'blocks_12_options_reverse','0'),(294238,42447,'_blocks_12_options_reverse','field_61768049bb8ac'),(294239,42447,'blocks_12_options',''),(294240,42447,'_blocks_12_options','field_617682517c334'),(294241,42447,'blocks_12_split_5050_image','41501'),(294242,42447,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(294243,42447,'blocks_12_split_5050_video',''),(294244,42447,'_blocks_12_split_5050_video','field_6239f3160848a'),(294245,42447,'blocks_12_split_5050_content_title',''),(294246,42447,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(294247,42447,'blocks_12_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(294248,42447,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(294249,42447,'blocks_12_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(294250,42447,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(294251,42447,'blocks_12_split_5050_content_actions',''),(294252,42447,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(294253,42447,'blocks_12_split_5050_content',''),(294254,42447,'_blocks_12_split_5050_content','field_61767afceb8ba'),(294255,42447,'blocks_13_acfe_flexible_toggle',''),(294256,42447,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(294257,42447,'blocks_13_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(294258,42447,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(294259,42447,'blocks_13_options_theme','#ffffff'),(294260,42447,'_blocks_13_options_theme','field_6176830e2ad17'),(294261,42447,'blocks_13_options',''),(294262,42447,'_blocks_13_options','field_6176830e2ad16'),(294263,42447,'blocks_13_text_block_heading','The Role of MSK Education in Workplace Health'),(294264,42447,'_blocks_13_text_block_heading','field_617669d413097'),(294265,42447,'blocks_13_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(294266,42447,'_blocks_13_text_block_content','field_617669ec13098'),(294267,42447,'blocks_15_acfe_flexible_toggle',''),(294268,42447,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(294269,42447,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(294270,42447,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(294271,42447,'blocks_15_options_theme','#b61234'),(294272,42447,'_blocks_15_options_theme','field_6176830e2ad17'),(294273,42447,'blocks_15_options',''),(294274,42447,'_blocks_15_options','field_6176830e2ad16'),(294275,42447,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(294276,42447,'_blocks_15_text_block_heading','field_617669d413097'),(294277,42447,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(294278,42447,'_blocks_15_text_block_content','field_617669ec13098'),(294279,42447,'blocks_16_acfe_flexible_toggle',''),(294280,42447,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(294281,42447,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(294282,42447,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(294283,42447,'blocks_16_options_theme','#b61234'),(294284,42447,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(294285,42447,'blocks_16_options_format','row'),(294286,42447,'_blocks_16_options_format','field_64bfde9a90690'),(294287,42447,'blocks_16_options',''),(294288,42447,'_blocks_16_options','field_64bfdd9b90684'),(294289,42447,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(294290,42447,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(294291,42447,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(294292,42447,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(294293,42447,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(294294,42447,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(294295,42447,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(294296,42447,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(294297,42447,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(294298,42447,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(294299,42447,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(294300,42447,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(294301,42447,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(294302,42447,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(294303,42447,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(294304,42447,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(294305,42447,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(294306,42447,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(294307,42447,'blocks_16_icon_row_items_3_icon','recognised.svg'),(294308,42447,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(294309,42447,'blocks_16_icon_row_items_3_label','Optimised Performance'),(294310,42447,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(294311,42447,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(294312,42447,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(294313,42447,'blocks_16_icon_row_items','4'),(294314,42447,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(294315,42447,'blocks_17_acfe_flexible_toggle',''),(294316,42447,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(294317,42447,'blocks_17_acfe_flexible_layout_title','Conclusion'),(294318,42447,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(294319,42447,'blocks_17_options_theme','#f5f5f5'),(294320,42447,'_blocks_17_options_theme','field_6176830e2ad17'),(294321,42447,'blocks_17_options',''),(294322,42447,'_blocks_17_options','field_6176830e2ad16'),(294323,42447,'blocks_17_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(294324,42447,'_blocks_17_text_block_heading','field_617669d413097'),(294325,42447,'blocks_17_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(294326,42447,'_blocks_17_text_block_content','field_617669ec13098'),(294327,42447,'blocks_18_acfe_flexible_toggle',''),(294328,42447,'_blocks_18_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(294329,42447,'blocks_18_acfe_flexible_layout_title','Promo Panel'),(294330,42447,'_blocks_18_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(294331,42447,'blocks_18_options_alignment','center'),(294332,42447,'_blocks_18_options_alignment','field_61769449f5490'),(294333,42447,'blocks_18_options',''),(294334,42447,'_blocks_18_options','field_617693e1428f0'),(294335,42447,'blocks_18_promo_panel_image','40342'),(294336,42447,'_blocks_18_promo_panel_image','field_617693e1428f3'),(294337,42447,'blocks_18_promo_panel_content_heading','Want to Get Started?'),(294338,42447,'_blocks_18_promo_panel_content_heading','field_617693e1428f6'),(294339,42447,'blocks_18_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(294340,42447,'_blocks_18_promo_panel_content_text','field_617693e1428f7'),(294341,42447,'blocks_18_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(294342,42447,'_blocks_18_promo_panel_content_actions_0_button','field_617693e1428f9'),(294343,42447,'blocks_18_promo_panel_content_actions','1'),(294344,42447,'_blocks_18_promo_panel_content_actions','field_617693e1428f8'),(294345,42447,'blocks_18_promo_panel_content',''),(294346,42447,'_blocks_18_promo_panel_content','field_617693e1428f4'),(294347,42449,'_edit_lock','1745571603:17'),(294348,42449,'_edit_last','15'),(294349,42449,'form_action','https://analytics-eu.clickdimensions.com/forms/h/ahCTmrGG4k2V0w2kOGopA'),(294350,42449,'_form_action','field_61a50501a49c0'),(294351,42449,'form_fields_0_acfe_layout_col','6'),(294352,42449,'_form_fields_0_acfe_layout_col','field_layout_634557f2ac428_col'),(294353,42449,'form_fields_0_layout_settings_required','1'),(294354,42449,'_form_fields_0_layout_settings_required','field_63457a5c4b908'),(294355,42449,'form_fields_0_layout_settings_hidden','0'),(294356,42449,'_form_fields_0_layout_settings_hidden','field_63457a704b909'),(294357,42449,'form_fields_0_layout_settings',''),(294358,42449,'_form_fields_0_layout_settings','field_layout_634557f2ac428_settings'),(294359,42449,'form_fields_0_acfe_flexible_layout_title','First Name'),(294360,42449,'_form_fields_0_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(294361,42449,'form_fields_0_name','firstname'),(294362,42449,'_form_fields_0_name','field_634558471d0f0'),(294363,42449,'form_fields_0_label','First Name'),(294364,42449,'_form_fields_0_label','field_634558271d0ef'),(294365,42449,'form_fields_0_description',''),(294366,42449,'_form_fields_0_description','field_6389047cb4655'),(294367,42449,'form_fields_1_acfe_layout_col','6'),(294368,42449,'_form_fields_1_acfe_layout_col','field_layout_634557f2ac428_col'),(294369,42449,'form_fields_1_layout_settings_required','1'),(294370,42449,'_form_fields_1_layout_settings_required','field_63457a5c4b908'),(294371,42449,'form_fields_1_layout_settings_hidden','0'),(294372,42449,'_form_fields_1_layout_settings_hidden','field_63457a704b909'),(294373,42449,'form_fields_1_layout_settings',''),(294374,42449,'_form_fields_1_layout_settings','field_layout_634557f2ac428_settings'),(294375,42449,'form_fields_1_acfe_flexible_layout_title','Last Name'),(294376,42449,'_form_fields_1_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(294377,42449,'form_fields_1_name','lastname'),(294378,42449,'_form_fields_1_name','field_634558471d0f0'),(294379,42449,'form_fields_1_label','Last Name'),(294380,42449,'_form_fields_1_label','field_634558271d0ef'),(294381,42449,'form_fields_1_description',''),(294382,42449,'_form_fields_1_description','field_6389047cb4655'),(294383,42449,'form_fields_2_acfe_layout_col','6'),(294384,42449,'_form_fields_2_acfe_layout_col','field_layout_634558b01d0f2_col'),(294385,42449,'form_fields_2_layout_settings_required','1'),(294386,42449,'_form_fields_2_layout_settings_required','field_63457a5c4b908'),(294387,42449,'form_fields_2_layout_settings_hidden','0'),(294388,42449,'_form_fields_2_layout_settings_hidden','field_63457a704b909'),(294389,42449,'form_fields_2_layout_settings',''),(294390,42449,'_form_fields_2_layout_settings','field_layout_634558b01d0f2_settings'),(294391,42449,'form_fields_2_acfe_flexible_layout_title','Email'),(294392,42449,'_form_fields_2_acfe_flexible_layout_title','field_layout_634558b01d0f2_title'),(294393,42449,'form_fields_2_name','email'),(294394,42449,'_form_fields_2_name','field_634558b01d0f4'),(294395,42449,'form_fields_2_label','Email'),(294396,42449,'_form_fields_2_label','field_634558b01d0f3'),(294397,42449,'form_fields_2_description','This is how we\'ll send you a copy of your guide.'),(294398,42449,'_form_fields_2_description','field_6389049db4656'),(294399,42449,'form_fields_3_acfe_layout_col','6'),(294400,42449,'_form_fields_3_acfe_layout_col','field_layout_634557f2ac428_col'),(294401,42449,'form_fields_3_layout_settings_required','1'),(294402,42449,'_form_fields_3_layout_settings_required','field_63457a5c4b908'),(294403,42449,'form_fields_3_layout_settings_hidden','1'),(294404,42449,'_form_fields_3_layout_settings_hidden','field_63457a704b909'),(294405,42449,'form_fields_3_layout_settings',''),(294406,42449,'_form_fields_3_layout_settings','field_layout_634557f2ac428_settings'),(294407,42449,'form_fields_3_acfe_flexible_layout_title','Phone Number'),(294408,42449,'_form_fields_3_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(294409,42449,'form_fields_3_name','contactnumber'),(294410,42449,'_form_fields_3_name','field_634558471d0f0'),(294411,42449,'form_fields_3_label','Phone Number'),(294412,42449,'_form_fields_3_label','field_634558271d0ef'),(294413,42449,'form_fields_3_description','So that we can provide you with quick, easy information about your enquiry.'),(294414,42449,'_form_fields_3_description','field_6389047cb4655'),(294415,42449,'form_fields_4_layout_settings_required','1'),(294416,42449,'_form_fields_4_layout_settings_required','field_63457a5c4b908'),(294417,42449,'form_fields_4_layout_settings_hidden','1'),(294418,42449,'_form_fields_4_layout_settings_hidden','field_63457a704b909'),(294419,42449,'form_fields_5_layout_settings_required','1'),(294420,42449,'_form_fields_5_layout_settings_required','field_63457a5c4b908'),(294421,42449,'form_fields_5_layout_settings_hidden','1'),(294422,42449,'_form_fields_5_layout_settings_hidden','field_63457a704b909'),(294423,42449,'form_fields','a:9:{i:0;s:4:\"text\";i:1;s:4:\"text\";i:2;s:5:\"email\";i:3;s:4:\"text\";i:4;s:6:\"select\";i:5;s:6:\"select\";i:6;s:4:\"text\";i:7;s:4:\"text\";i:8;s:4:\"text\";}'),(294424,42449,'_form_fields','field_634557ea1d0ee'),(294425,42449,'form_fields_code',''),(294426,42449,'_form_fields_code','field_61a4f967fdc46'),(294427,42449,'form_hidden_fields_code',''),(294428,42449,'_form_hidden_fields_code','field_61a50668a49c3'),(294429,42449,'form_small_print','By submitting this form, you agree to Biomechanics Education processing your data in accordance with our <a href=\"https://biomechanicseducation.com/privacy-policy/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a> and <a href=\"https://biomechanicseducation.com/terms-conditions/\" target=\"_blank\" rel=\"noopener\">Terms &amp; Conditions.</a>'),(294430,42449,'_form_small_print','field_61a50510a49c1'),(294431,42449,'form_button_label',''),(294432,42449,'_form_button_label','field_61a50530a49c2'),(294433,42449,'form_gtm_id',''),(294434,42449,'_form_gtm_id','field_63dbc2797b66f'),(294435,42449,'form_fields_4_acfe_layout_col','12'),(294436,42449,'_form_fields_4_acfe_layout_col','field_layout_634558b91d0f6_col'),(294437,42449,'form_fields_4_layout_settings',''),(294438,42449,'_form_fields_4_layout_settings','field_layout_634558b91d0f6_settings'),(294439,42449,'form_fields_4_acfe_flexible_layout_title','I\'m Interested In'),(294440,42449,'_form_fields_4_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(294441,42449,'form_fields_4_name','interestedinbiomechanics'),(294442,42449,'_form_fields_4_name','field_634558b91d0f8'),(294443,42449,'form_fields_4_label','I\'m Interested In'),(294444,42449,'_form_fields_4_label','field_634558b91d0f7'),(294445,42449,'form_fields_4_description',''),(294446,42449,'_form_fields_4_description','field_638904adb4657'),(294447,42449,'form_fields_4_options','Biomechanics Coaching'),(294448,42449,'_form_fields_4_options','field_634558c91d0fa'),(294449,42449,'form_fields_5_acfe_layout_col','6'),(294450,42449,'_form_fields_5_acfe_layout_col','field_layout_634558b91d0f6_col'),(294451,42449,'form_fields_5_layout_settings',''),(294452,42449,'_form_fields_5_layout_settings','field_layout_634558b91d0f6_settings'),(294453,42449,'form_fields_5_acfe_flexible_layout_title','What area do you currently work in?'),(294454,42449,'_form_fields_5_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(294455,42449,'form_fields_5_name','currentwork'),(294456,42449,'_form_fields_5_name','field_634558b91d0f8'),(294457,42449,'form_fields_5_label','What area do you currently work in?'),(294458,42449,'_form_fields_5_label','field_634558b91d0f7'),(294459,42449,'form_fields_5_description',''),(294460,42449,'_form_fields_5_description','field_638904adb4657'),(294461,42449,'form_fields_5_options','Personal Training\r\nPilates\r\nSports Massage\r\nPodiatrist\r\nSports Coaching\r\nStrength and Conditioning\r\nNone of the above'),(294462,42449,'_form_fields_5_options','field_634558c91d0fa'),(294463,42450,'hide_hero','0'),(294464,42450,'_hide_hero','field_66a2380fcda39'),(294465,42450,'hero_title',''),(294466,42450,'_hero_title','field_617571fe285e8'),(294467,42450,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(294468,42450,'_hero_text','field_6175723c285e9'),(294469,42450,'hero_actions','1'),(294470,42450,'_hero_actions','field_61757270285ea'),(294471,42450,'hero_style','default'),(294472,42450,'_hero_style','field_62051d9dc5324'),(294473,42450,'hero_image_pos_x','right'),(294474,42450,'_hero_image_pos_x','field_62ec3d05390bb'),(294475,42450,'hero_image_pos_y','top'),(294476,42450,'_hero_image_pos_y','field_62ec3d05390bc'),(294477,42450,'hero_image_pos',''),(294478,42450,'_hero_image_pos','field_62ec3d05390ba'),(294479,42450,'fft_hide_from_listings','0'),(294480,42450,'_fft_hide_from_listings','field_61f1320446ab2'),(294481,42450,'post_format','402'),(294482,42450,'_post_format','field_61756bfb51898'),(294483,42450,'post_author',''),(294484,42450,'_post_author','field_62ec389d22113'),(294485,42450,'post_reviewer',''),(294486,42450,'_post_reviewer','field_627140a2a9800'),(294487,42450,'post_table_of_contents','0'),(294488,42450,'_post_table_of_contents','field_65c503bc846a6'),(294489,42450,'blocks','a:19:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:10:\"text_block\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"text_block\";i:18;s:11:\"promo_panel\";}'),(294490,42450,'_blocks','field_6176696113096'),(294491,42450,'_thumbnail_id','41331'),(294492,42450,'__thumbnail_id','field_617570855ddaf'),(294493,42450,'blocks_0_acfe_flexible_toggle',''),(294494,42450,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(294495,42450,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(294496,42450,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(294497,42450,'blocks_0_options_theme','#ffffff'),(294498,42450,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(294499,42450,'blocks_0_options',''),(294500,42450,'_blocks_0_options','field_6177b758246ae'),(294501,42450,'blocks_0_link_stack_content_title',''),(294502,42450,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(294503,42450,'blocks_0_link_stack_content_heading','What is MSK?'),(294504,42450,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(294505,42450,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(294506,42450,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(294507,42450,'blocks_0_link_stack_content_actions_0_button',''),(294508,42450,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(294509,42450,'blocks_0_link_stack_content_actions','1'),(294510,42450,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(294511,42450,'blocks_0_link_stack_content',''),(294512,42450,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(294513,42450,'blocks_0_link_stack_0_label','1.'),(294514,42450,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(294515,42450,'blocks_0_link_stack_0_title','Overview'),(294516,42450,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(294517,42450,'blocks_0_link_stack_0_url','#overview'),(294518,42450,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(294519,42450,'blocks_0_link_stack_1_label','2.'),(294520,42450,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(294521,42450,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(294522,42450,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(294523,42450,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(294524,42450,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(294525,42450,'blocks_0_link_stack_2_label','3.'),(294526,42450,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(294527,42450,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(294528,42450,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(294529,42450,'blocks_0_link_stack_2_url','#who-should-study-msk'),(294530,42450,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(294531,42450,'blocks_0_link_stack_3_label','4.'),(294532,42450,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(294533,42450,'blocks_0_link_stack_3_title','Common MSK Conditions'),(294534,42450,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(294535,42450,'blocks_0_link_stack_3_url','#common-msk-conditions'),(294536,42450,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(294537,42450,'blocks_0_link_stack_4_label','5.'),(294538,42450,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(294539,42450,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(294540,42450,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(294541,42450,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(294542,42450,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(294543,42450,'blocks_0_link_stack_5_label','6.'),(294544,42450,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(294545,42450,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(294546,42450,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(294547,42450,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(294548,42450,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(294549,42450,'blocks_0_link_stack','6'),(294550,42450,'_blocks_0_link_stack','field_6177b7f600cff'),(294551,42450,'blocks_1_acfe_flexible_toggle',''),(294552,42450,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(294553,42450,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(294554,42450,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(294555,42450,'blocks_1_options_theme','#f5f5f5'),(294556,42450,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(294557,42450,'blocks_1_options_reverse','0'),(294558,42450,'_blocks_1_options_reverse','field_61768049bb8ac'),(294559,42450,'blocks_1_options',''),(294560,42450,'_blocks_1_options','field_617682517c334'),(294561,42450,'blocks_1_split_5050_image','40615'),(294562,42450,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(294563,42450,'blocks_1_split_5050_video',''),(294564,42450,'_blocks_1_split_5050_video','field_6239f3160848a'),(294565,42450,'blocks_1_split_5050_content_title',''),(294566,42450,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(294567,42450,'blocks_1_split_5050_content_heading','Overview'),(294568,42450,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(294569,42450,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(294570,42450,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(294571,42450,'blocks_1_split_5050_content_actions',''),(294572,42450,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(294573,42450,'blocks_1_split_5050_content',''),(294574,42450,'_blocks_1_split_5050_content','field_61767afceb8ba'),(294575,42450,'blocks_2_acfe_flexible_toggle',''),(294576,42450,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(294577,42450,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(294578,42450,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(294579,42450,'blocks_2_options_theme','#f5f5f5'),(294580,42450,'_blocks_2_options_theme','field_6176830e2ad17'),(294581,42450,'blocks_2_options',''),(294582,42450,'_blocks_2_options','field_6176830e2ad16'),(294583,42450,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(294584,42450,'_blocks_2_text_block_heading','field_617669d413097'),(294585,42450,'blocks_2_text_block_content',''),(294586,42450,'_blocks_2_text_block_content','field_617669ec13098'),(294587,42450,'blocks_3_acfe_flexible_toggle',''),(294588,42450,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(294589,42450,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(294590,42450,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(294591,42450,'blocks_3_options_theme','#f5f5f5'),(294592,42450,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(294593,42450,'blocks_3_options_reverse','0'),(294594,42450,'_blocks_3_options_reverse','field_61768049bb8ac'),(294595,42450,'blocks_3_options',''),(294596,42450,'_blocks_3_options','field_617682517c334'),(294597,42450,'blocks_3_split_5050_image','40618'),(294598,42450,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(294599,42450,'blocks_3_split_5050_video',''),(294600,42450,'_blocks_3_split_5050_video','field_6239f3160848a'),(294601,42450,'blocks_3_split_5050_content_title',''),(294602,42450,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(294603,42450,'blocks_3_split_5050_content_heading',''),(294604,42450,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(294605,42450,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.'),(294606,42450,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(294607,42450,'blocks_3_split_5050_content_actions',''),(294608,42450,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(294609,42450,'blocks_3_split_5050_content',''),(294610,42450,'_blocks_3_split_5050_content','field_61767afceb8ba'),(294611,42450,'blocks_4_acfe_flexible_toggle',''),(294612,42450,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(294613,42450,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(294614,42450,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(294615,42450,'blocks_4_options_theme','#f5f5f5'),(294616,42450,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(294617,42450,'blocks_4_options_reverse','0'),(294618,42450,'_blocks_4_options_reverse','field_61768049bb8ac'),(294619,42450,'blocks_4_options',''),(294620,42450,'_blocks_4_options','field_617682517c334'),(294621,42450,'blocks_4_split_5050_image','41330'),(294622,42450,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(294623,42450,'blocks_4_split_5050_video',''),(294624,42450,'_blocks_4_split_5050_video','field_6239f3160848a'),(294625,42450,'blocks_4_split_5050_content_title',''),(294626,42450,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(294627,42450,'blocks_4_split_5050_content_heading',''),(294628,42450,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(294629,42450,'blocks_4_split_5050_content_text','Maintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(294630,42450,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(294631,42450,'blocks_4_split_5050_content_actions',''),(294632,42450,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(294633,42450,'blocks_4_split_5050_content',''),(294634,42450,'_blocks_4_split_5050_content','field_61767afceb8ba'),(294635,42450,'blocks_5_acfe_flexible_toggle',''),(294636,42450,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(294637,42450,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(294638,42450,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(294639,42450,'blocks_5_options_theme','#b61234'),(294640,42450,'_blocks_5_options_theme','field_6176830e2ad17'),(294641,42450,'blocks_5_options',''),(294642,42450,'_blocks_5_options','field_6176830e2ad16'),(294643,42450,'blocks_5_text_block_heading','Who Should Study MSK?'),(294644,42450,'_blocks_5_text_block_heading','field_617669d413097'),(294645,42450,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(294646,42450,'_blocks_5_text_block_content','field_617669ec13098'),(294647,42450,'blocks_6_acfe_flexible_toggle',''),(294648,42450,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(294649,42450,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(294650,42450,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(294651,42450,'blocks_6_options_theme','#b61234'),(294652,42450,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(294653,42450,'blocks_6_options',''),(294654,42450,'_blocks_6_options','field_6177cfcd8140f'),(294655,42450,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(294656,42450,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(294657,42450,'blocks_6_tabs_0_tab_content_title',''),(294658,42450,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(294659,42450,'blocks_6_tabs_0_tab_content_heading',''),(294660,42450,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(294661,42450,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(294662,42450,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(294663,42450,'blocks_6_tabs_0_tab_content_actions',''),(294664,42450,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(294665,42450,'blocks_6_tabs_0_tab_content',''),(294666,42450,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(294667,42450,'blocks_6_tabs_0_tab_image','41542'),(294668,42450,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(294669,42450,'blocks_6_tabs_1_tab_label','Current Practitioners'),(294670,42450,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(294671,42450,'blocks_6_tabs_1_tab_content_title',''),(294672,42450,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(294673,42450,'blocks_6_tabs_1_tab_content_heading',''),(294674,42450,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(294675,42450,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(294676,42450,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(294677,42450,'blocks_6_tabs_1_tab_content_actions',''),(294678,42450,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(294679,42450,'blocks_6_tabs_1_tab_content',''),(294680,42450,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(294681,42450,'blocks_6_tabs_1_tab_image','41505'),(294682,42450,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(294683,42450,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(294684,42450,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(294685,42450,'blocks_6_tabs_2_tab_content_title',''),(294686,42450,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(294687,42450,'blocks_6_tabs_2_tab_content_heading',''),(294688,42450,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(294689,42450,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(294690,42450,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(294691,42450,'blocks_6_tabs_2_tab_content_actions',''),(294692,42450,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(294693,42450,'blocks_6_tabs_2_tab_content',''),(294694,42450,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(294695,42450,'blocks_6_tabs_2_tab_image','41539'),(294696,42450,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(294697,42450,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(294698,42450,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(294699,42450,'blocks_6_tabs_3_tab_content_title',''),(294700,42450,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(294701,42450,'blocks_6_tabs_3_tab_content_heading',''),(294702,42450,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(294703,42450,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(294704,42450,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(294705,42450,'blocks_6_tabs_3_tab_content_actions',''),(294706,42450,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(294707,42450,'blocks_6_tabs_3_tab_content',''),(294708,42450,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(294709,42450,'blocks_6_tabs_3_tab_image','41502'),(294710,42450,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(294711,42450,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(294712,42450,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(294713,42450,'blocks_6_tabs_4_tab_content_title',''),(294714,42450,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(294715,42450,'blocks_6_tabs_4_tab_content_heading',''),(294716,42450,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(294717,42450,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(294718,42450,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(294719,42450,'blocks_6_tabs_4_tab_content_actions',''),(294720,42450,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(294721,42450,'blocks_6_tabs_4_tab_content',''),(294722,42450,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(294723,42450,'blocks_6_tabs_4_tab_image','41506'),(294724,42450,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(294725,42450,'blocks_6_tabs','5'),(294726,42450,'_blocks_6_tabs','field_6177cff281419'),(294727,42450,'blocks_7_acfe_flexible_toggle',''),(294728,42450,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(294729,42450,'blocks_7_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(294730,42450,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(294731,42450,'blocks_7_options_theme','#ffffff'),(294732,42450,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(294733,42450,'blocks_7_options_state','0'),(294734,42450,'_blocks_7_options_state','field_6239fcb7508c5'),(294735,42450,'blocks_7_options',''),(294736,42450,'_blocks_7_options','field_6177e2991ac44'),(294737,42450,'blocks_7_content_title','Common MSK Conditions'),(294738,42450,'_blocks_7_content_title','field_64d237e8bb1e2'),(294739,42450,'blocks_7_content_heading','Common MSK Conditions'),(294740,42450,'_blocks_7_content_heading','field_64d237e8bb1e3'),(294741,42450,'blocks_7_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(294742,42450,'_blocks_7_content_text','field_64d237e8bb1e4'),(294743,42450,'blocks_7_content_actions',''),(294744,42450,'_blocks_7_content_actions','field_64d237e8bb1e5'),(294745,42450,'blocks_7_content_align','left'),(294746,42450,'_blocks_7_content_align','field_64d2443e6b6aa'),(294747,42450,'blocks_7_content',''),(294748,42450,'_blocks_7_content','field_64d237e8bb1e1'),(294749,42450,'blocks_7_accordion_content','custom'),(294750,42450,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(294751,42450,'blocks_7_accordion_items_0_title','Osteoarthritis'),(294752,42450,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(294753,42450,'blocks_7_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(294754,42450,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(294755,42450,'blocks_7_accordion_items_1_title','Rheumatoid Arthritis'),(294756,42450,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(294757,42450,'blocks_7_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(294758,42450,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(294759,42450,'blocks_7_accordion_items_2_title','Back Pain'),(294760,42450,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(294761,42450,'blocks_7_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(294762,42450,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(294763,42450,'blocks_7_accordion_items_3_title','Osteoporosis'),(294764,42450,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(294765,42450,'blocks_7_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(294766,42450,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(294767,42450,'blocks_7_accordion_items_4_title','Tendinitis'),(294768,42450,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(294769,42450,'blocks_7_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(294770,42450,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(294771,42450,'blocks_7_accordion_items_5_title','Carpal Tunnel Syndrome'),(294772,42450,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(294773,42450,'blocks_7_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(294774,42450,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(294775,42450,'blocks_7_accordion_items_6_title','Fibromyalgia'),(294776,42450,'_blocks_7_accordion_items_6_title','field_6177e2991ac4d'),(294777,42450,'blocks_7_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(294778,42450,'_blocks_7_accordion_items_6_text','field_6177e2991ac4e'),(294779,42450,'blocks_7_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(294780,42450,'_blocks_7_accordion_items_7_title','field_6177e2991ac4d'),(294781,42450,'blocks_7_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(294782,42450,'_blocks_7_accordion_items_7_text','field_6177e2991ac4e'),(294783,42450,'blocks_7_accordion_items','8'),(294784,42450,'_blocks_7_accordion_items','field_6177e2991ac4c'),(294785,42450,'blocks_7_actions',''),(294786,42450,'_blocks_7_actions','field_61a746a817f7a'),(294787,42450,'blocks_8_acfe_flexible_toggle',''),(294788,42450,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(294789,42450,'blocks_8_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(294790,42450,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(294791,42450,'blocks_8_options_theme','#f5f5f5'),(294792,42450,'_blocks_8_options_theme','field_6176830e2ad17'),(294793,42450,'blocks_8_options',''),(294794,42450,'_blocks_8_options','field_6176830e2ad16'),(294795,42450,'blocks_8_text_block_heading','The Importance of MSK Education'),(294796,42450,'_blocks_8_text_block_heading','field_617669d413097'),(294797,42450,'blocks_8_text_block_content',''),(294798,42450,'_blocks_8_text_block_content','field_617669ec13098'),(294799,42450,'blocks_9_acfe_flexible_toggle',''),(294800,42450,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(294801,42450,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(294802,42450,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(294803,42450,'blocks_9_options_theme','#f5f5f5'),(294804,42450,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(294805,42450,'blocks_9_options_reverse','1'),(294806,42450,'_blocks_9_options_reverse','field_61768049bb8ac'),(294807,42450,'blocks_9_options',''),(294808,42450,'_blocks_9_options','field_617682517c334'),(294809,42450,'blocks_9_split_5050_image','41498'),(294810,42450,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(294811,42450,'blocks_9_split_5050_video',''),(294812,42450,'_blocks_9_split_5050_video','field_6239f3160848a'),(294813,42450,'blocks_9_split_5050_content_title',''),(294814,42450,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(294815,42450,'blocks_9_split_5050_content_heading',''),(294816,42450,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(294817,42450,'blocks_9_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(294818,42450,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(294819,42450,'blocks_9_split_5050_content_actions',''),(294820,42450,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(294821,42450,'blocks_9_split_5050_content',''),(294822,42450,'_blocks_9_split_5050_content','field_61767afceb8ba'),(294823,42450,'blocks_14_acfe_flexible_toggle',''),(294824,42450,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(294825,42450,'blocks_14_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(294826,42450,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(294827,42450,'blocks_14_options_theme','#ffffff'),(294828,42450,'_blocks_14_options_theme','field_6176830e2ad17'),(294829,42450,'blocks_14_options',''),(294830,42450,'_blocks_14_options','field_6176830e2ad16'),(294831,42450,'blocks_14_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(294832,42450,'_blocks_14_text_block_heading','field_617669d413097'),(294833,42450,'blocks_14_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(294834,42450,'_blocks_14_text_block_content','field_617669ec13098'),(294835,42450,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(294836,42450,'_hero_actions_0_button','field_61757281285eb'),(294837,42450,'blocks_10_acfe_flexible_toggle',''),(294838,42450,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(294839,42450,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(294840,42450,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(294841,42450,'blocks_10_options_theme','#f5f5f5'),(294842,42450,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(294843,42450,'blocks_10_options_reverse','1'),(294844,42450,'_blocks_10_options_reverse','field_61768049bb8ac'),(294845,42450,'blocks_10_options',''),(294846,42450,'_blocks_10_options','field_617682517c334'),(294847,42450,'blocks_10_split_5050_image','40387'),(294848,42450,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(294849,42450,'blocks_10_split_5050_video',''),(294850,42450,'_blocks_10_split_5050_video','field_6239f3160848a'),(294851,42450,'blocks_10_split_5050_content_title',''),(294852,42450,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(294853,42450,'blocks_10_split_5050_content_heading',''),(294854,42450,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(294855,42450,'blocks_10_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(294856,42450,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(294857,42450,'blocks_10_split_5050_content_actions',''),(294858,42450,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(294859,42450,'blocks_10_split_5050_content',''),(294860,42450,'_blocks_10_split_5050_content','field_61767afceb8ba'),(294861,42450,'blocks_11_acfe_flexible_toggle',''),(294862,42450,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(294863,42450,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(294864,42450,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(294865,42450,'blocks_11_options_theme','#f5f5f5'),(294866,42450,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(294867,42450,'blocks_11_options_reverse','1'),(294868,42450,'_blocks_11_options_reverse','field_61768049bb8ac'),(294869,42450,'blocks_11_options',''),(294870,42450,'_blocks_11_options','field_617682517c334'),(294871,42450,'blocks_11_split_5050_image','18856'),(294872,42450,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(294873,42450,'blocks_11_split_5050_video',''),(294874,42450,'_blocks_11_split_5050_video','field_6239f3160848a'),(294875,42450,'blocks_11_split_5050_content_title',''),(294876,42450,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(294877,42450,'blocks_11_split_5050_content_heading',''),(294878,42450,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(294879,42450,'blocks_11_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(294880,42450,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(294881,42450,'blocks_11_split_5050_content_actions',''),(294882,42450,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(294883,42450,'blocks_11_split_5050_content',''),(294884,42450,'_blocks_11_split_5050_content','field_61767afceb8ba'),(294885,42450,'blocks_12_acfe_flexible_toggle',''),(294886,42450,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(294887,42450,'blocks_12_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(294888,42450,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(294889,42450,'blocks_12_options_theme','#ffffff'),(294890,42450,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(294891,42450,'blocks_12_options_reverse','0'),(294892,42450,'_blocks_12_options_reverse','field_61768049bb8ac'),(294893,42450,'blocks_12_options',''),(294894,42450,'_blocks_12_options','field_617682517c334'),(294895,42450,'blocks_12_split_5050_image','41501'),(294896,42450,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(294897,42450,'blocks_12_split_5050_video',''),(294898,42450,'_blocks_12_split_5050_video','field_6239f3160848a'),(294899,42450,'blocks_12_split_5050_content_title',''),(294900,42450,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(294901,42450,'blocks_12_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(294902,42450,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(294903,42450,'blocks_12_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(294904,42450,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(294905,42450,'blocks_12_split_5050_content_actions',''),(294906,42450,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(294907,42450,'blocks_12_split_5050_content',''),(294908,42450,'_blocks_12_split_5050_content','field_61767afceb8ba'),(294909,42450,'blocks_13_acfe_flexible_toggle',''),(294910,42450,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(294911,42450,'blocks_13_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(294912,42450,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(294913,42450,'blocks_13_options_theme','#ffffff'),(294914,42450,'_blocks_13_options_theme','field_6176830e2ad17'),(294915,42450,'blocks_13_options',''),(294916,42450,'_blocks_13_options','field_6176830e2ad16'),(294917,42450,'blocks_13_text_block_heading','The Role of MSK Education in Workplace Health'),(294918,42450,'_blocks_13_text_block_heading','field_617669d413097'),(294919,42450,'blocks_13_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(294920,42450,'_blocks_13_text_block_content','field_617669ec13098'),(294921,42450,'blocks_15_acfe_flexible_toggle',''),(294922,42450,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(294923,42450,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(294924,42450,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(294925,42450,'blocks_15_options_theme','#b61234'),(294926,42450,'_blocks_15_options_theme','field_6176830e2ad17'),(294927,42450,'blocks_15_options',''),(294928,42450,'_blocks_15_options','field_6176830e2ad16'),(294929,42450,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(294930,42450,'_blocks_15_text_block_heading','field_617669d413097'),(294931,42450,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(294932,42450,'_blocks_15_text_block_content','field_617669ec13098'),(294933,42450,'blocks_16_acfe_flexible_toggle',''),(294934,42450,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(294935,42450,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(294936,42450,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(294937,42450,'blocks_16_options_theme','#b61234'),(294938,42450,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(294939,42450,'blocks_16_options_format','row'),(294940,42450,'_blocks_16_options_format','field_64bfde9a90690'),(294941,42450,'blocks_16_options',''),(294942,42450,'_blocks_16_options','field_64bfdd9b90684'),(294943,42450,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(294944,42450,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(294945,42450,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(294946,42450,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(294947,42450,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(294948,42450,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(294949,42450,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(294950,42450,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(294951,42450,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(294952,42450,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(294953,42450,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(294954,42450,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(294955,42450,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(294956,42450,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(294957,42450,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(294958,42450,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(294959,42450,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(294960,42450,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(294961,42450,'blocks_16_icon_row_items_3_icon','recognised.svg'),(294962,42450,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(294963,42450,'blocks_16_icon_row_items_3_label','Optimised Performance'),(294964,42450,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(294965,42450,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(294966,42450,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(294967,42450,'blocks_16_icon_row_items','4'),(294968,42450,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(294969,42450,'blocks_17_acfe_flexible_toggle',''),(294970,42450,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(294971,42450,'blocks_17_acfe_flexible_layout_title','Conclusion'),(294972,42450,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(294973,42450,'blocks_17_options_theme','#f5f5f5'),(294974,42450,'_blocks_17_options_theme','field_6176830e2ad17'),(294975,42450,'blocks_17_options',''),(294976,42450,'_blocks_17_options','field_6176830e2ad16'),(294977,42450,'blocks_17_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(294978,42450,'_blocks_17_text_block_heading','field_617669d413097'),(294979,42450,'blocks_17_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(294980,42450,'_blocks_17_text_block_content','field_617669ec13098'),(294981,42450,'blocks_18_acfe_flexible_toggle',''),(294982,42450,'_blocks_18_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(294983,42450,'blocks_18_acfe_flexible_layout_title','Promo Panel'),(294984,42450,'_blocks_18_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(294985,42450,'blocks_18_options_alignment','center'),(294986,42450,'_blocks_18_options_alignment','field_61769449f5490'),(294987,42450,'blocks_18_options',''),(294988,42450,'_blocks_18_options','field_617693e1428f0'),(294989,42450,'blocks_18_promo_panel_image','40342'),(294990,42450,'_blocks_18_promo_panel_image','field_617693e1428f3'),(294991,42450,'blocks_18_promo_panel_content_heading','Want to Get Started?'),(294992,42450,'_blocks_18_promo_panel_content_heading','field_617693e1428f6'),(294993,42450,'blocks_18_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(294994,42450,'_blocks_18_promo_panel_content_text','field_617693e1428f7'),(294995,42450,'blocks_18_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(294996,42450,'_blocks_18_promo_panel_content_actions_0_button','field_617693e1428f9'),(294997,42450,'blocks_18_promo_panel_content_actions','1'),(294998,42450,'_blocks_18_promo_panel_content_actions','field_617693e1428f8'),(294999,42450,'blocks_18_promo_panel_content',''),(295000,42450,'_blocks_18_promo_panel_content','field_617693e1428f4'),(295001,42451,'hide_hero','0'),(295002,42451,'_hide_hero','field_66a2380fcda39'),(295003,42451,'hero_title',''),(295004,42451,'_hero_title','field_617571fe285e8'),(295005,42451,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(295006,42451,'_hero_text','field_6175723c285e9'),(295007,42451,'hero_actions','1'),(295008,42451,'_hero_actions','field_61757270285ea'),(295009,42451,'hero_style','default'),(295010,42451,'_hero_style','field_62051d9dc5324'),(295011,42451,'hero_image_pos_x','right'),(295012,42451,'_hero_image_pos_x','field_62ec3d05390bb'),(295013,42451,'hero_image_pos_y','top'),(295014,42451,'_hero_image_pos_y','field_62ec3d05390bc'),(295015,42451,'hero_image_pos',''),(295016,42451,'_hero_image_pos','field_62ec3d05390ba'),(295017,42451,'fft_hide_from_listings','0'),(295018,42451,'_fft_hide_from_listings','field_61f1320446ab2'),(295019,42451,'post_format','402'),(295020,42451,'_post_format','field_61756bfb51898'),(295021,42451,'post_author',''),(295022,42451,'_post_author','field_62ec389d22113'),(295023,42451,'post_reviewer',''),(295024,42451,'_post_reviewer','field_627140a2a9800'),(295025,42451,'post_table_of_contents','0'),(295026,42451,'_post_table_of_contents','field_65c503bc846a6'),(295027,42451,'blocks','a:19:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:10:\"text_block\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"text_block\";i:18;s:11:\"promo_panel\";}'),(295028,42451,'_blocks','field_6176696113096'),(295029,42451,'_thumbnail_id','41331'),(295030,42451,'__thumbnail_id','field_617570855ddaf'),(295031,42451,'blocks_0_acfe_flexible_toggle',''),(295032,42451,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(295033,42451,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(295034,42451,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(295035,42451,'blocks_0_options_theme','#ffffff'),(295036,42451,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(295037,42451,'blocks_0_options',''),(295038,42451,'_blocks_0_options','field_6177b758246ae'),(295039,42451,'blocks_0_link_stack_content_title',''),(295040,42451,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(295041,42451,'blocks_0_link_stack_content_heading','What is MSK?'),(295042,42451,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(295043,42451,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(295044,42451,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(295045,42451,'blocks_0_link_stack_content_actions_0_button',''),(295046,42451,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(295047,42451,'blocks_0_link_stack_content_actions','1'),(295048,42451,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(295049,42451,'blocks_0_link_stack_content',''),(295050,42451,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(295051,42451,'blocks_0_link_stack_0_label','1.'),(295052,42451,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(295053,42451,'blocks_0_link_stack_0_title','Overview'),(295054,42451,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(295055,42451,'blocks_0_link_stack_0_url','#overview'),(295056,42451,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(295057,42451,'blocks_0_link_stack_1_label','2.'),(295058,42451,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(295059,42451,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(295060,42451,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(295061,42451,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(295062,42451,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(295063,42451,'blocks_0_link_stack_2_label','3.'),(295064,42451,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(295065,42451,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(295066,42451,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(295067,42451,'blocks_0_link_stack_2_url','#who-should-study-msk'),(295068,42451,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(295069,42451,'blocks_0_link_stack_3_label','4.'),(295070,42451,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(295071,42451,'blocks_0_link_stack_3_title','Common MSK Conditions'),(295072,42451,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(295073,42451,'blocks_0_link_stack_3_url','#common-msk-conditions'),(295074,42451,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(295075,42451,'blocks_0_link_stack_4_label','5.'),(295076,42451,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(295077,42451,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(295078,42451,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(295079,42451,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(295080,42451,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(295081,42451,'blocks_0_link_stack_5_label','6.'),(295082,42451,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(295083,42451,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(295084,42451,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(295085,42451,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(295086,42451,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(295087,42451,'blocks_0_link_stack','6'),(295088,42451,'_blocks_0_link_stack','field_6177b7f600cff'),(295089,42451,'blocks_1_acfe_flexible_toggle',''),(295090,42451,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295091,42451,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(295092,42451,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295093,42451,'blocks_1_options_theme','#f5f5f5'),(295094,42451,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(295095,42451,'blocks_1_options_reverse','0'),(295096,42451,'_blocks_1_options_reverse','field_61768049bb8ac'),(295097,42451,'blocks_1_options',''),(295098,42451,'_blocks_1_options','field_617682517c334'),(295099,42451,'blocks_1_split_5050_image','40615'),(295100,42451,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(295101,42451,'blocks_1_split_5050_video',''),(295102,42451,'_blocks_1_split_5050_video','field_6239f3160848a'),(295103,42451,'blocks_1_split_5050_content_title',''),(295104,42451,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(295105,42451,'blocks_1_split_5050_content_heading','Overview'),(295106,42451,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(295107,42451,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(295108,42451,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(295109,42451,'blocks_1_split_5050_content_actions',''),(295110,42451,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(295111,42451,'blocks_1_split_5050_content',''),(295112,42451,'_blocks_1_split_5050_content','field_61767afceb8ba'),(295113,42451,'blocks_2_acfe_flexible_toggle',''),(295114,42451,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(295115,42451,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(295116,42451,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(295117,42451,'blocks_2_options_theme','#f5f5f5'),(295118,42451,'_blocks_2_options_theme','field_6176830e2ad17'),(295119,42451,'blocks_2_options',''),(295120,42451,'_blocks_2_options','field_6176830e2ad16'),(295121,42451,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(295122,42451,'_blocks_2_text_block_heading','field_617669d413097'),(295123,42451,'blocks_2_text_block_content',''),(295124,42451,'_blocks_2_text_block_content','field_617669ec13098'),(295125,42451,'blocks_3_acfe_flexible_toggle',''),(295126,42451,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295127,42451,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(295128,42451,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295129,42451,'blocks_3_options_theme','#f5f5f5'),(295130,42451,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(295131,42451,'blocks_3_options_reverse','0'),(295132,42451,'_blocks_3_options_reverse','field_61768049bb8ac'),(295133,42451,'blocks_3_options',''),(295134,42451,'_blocks_3_options','field_617682517c334'),(295135,42451,'blocks_3_split_5050_image','40618'),(295136,42451,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(295137,42451,'blocks_3_split_5050_video',''),(295138,42451,'_blocks_3_split_5050_video','field_6239f3160848a'),(295139,42451,'blocks_3_split_5050_content_title',''),(295140,42451,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(295141,42451,'blocks_3_split_5050_content_heading',''),(295142,42451,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(295143,42451,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.'),(295144,42451,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(295145,42451,'blocks_3_split_5050_content_actions',''),(295146,42451,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(295147,42451,'blocks_3_split_5050_content',''),(295148,42451,'_blocks_3_split_5050_content','field_61767afceb8ba'),(295149,42451,'blocks_4_acfe_flexible_toggle',''),(295150,42451,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295151,42451,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(295152,42451,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295153,42451,'blocks_4_options_theme','#f5f5f5'),(295154,42451,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(295155,42451,'blocks_4_options_reverse','1'),(295156,42451,'_blocks_4_options_reverse','field_61768049bb8ac'),(295157,42451,'blocks_4_options',''),(295158,42451,'_blocks_4_options','field_617682517c334'),(295159,42451,'blocks_4_split_5050_image','41330'),(295160,42451,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(295161,42451,'blocks_4_split_5050_video',''),(295162,42451,'_blocks_4_split_5050_video','field_6239f3160848a'),(295163,42451,'blocks_4_split_5050_content_title',''),(295164,42451,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(295165,42451,'blocks_4_split_5050_content_heading',''),(295166,42451,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(295167,42451,'blocks_4_split_5050_content_text','Maintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(295168,42451,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(295169,42451,'blocks_4_split_5050_content_actions',''),(295170,42451,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(295171,42451,'blocks_4_split_5050_content',''),(295172,42451,'_blocks_4_split_5050_content','field_61767afceb8ba'),(295173,42451,'blocks_5_acfe_flexible_toggle',''),(295174,42451,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(295175,42451,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(295176,42451,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(295177,42451,'blocks_5_options_theme','#b61234'),(295178,42451,'_blocks_5_options_theme','field_6176830e2ad17'),(295179,42451,'blocks_5_options',''),(295180,42451,'_blocks_5_options','field_6176830e2ad16'),(295181,42451,'blocks_5_text_block_heading','Who Should Study MSK?'),(295182,42451,'_blocks_5_text_block_heading','field_617669d413097'),(295183,42451,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(295184,42451,'_blocks_5_text_block_content','field_617669ec13098'),(295185,42451,'blocks_6_acfe_flexible_toggle',''),(295186,42451,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(295187,42451,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(295188,42451,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(295189,42451,'blocks_6_options_theme','#b61234'),(295190,42451,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(295191,42451,'blocks_6_options',''),(295192,42451,'_blocks_6_options','field_6177cfcd8140f'),(295193,42451,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(295194,42451,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(295195,42451,'blocks_6_tabs_0_tab_content_title',''),(295196,42451,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(295197,42451,'blocks_6_tabs_0_tab_content_heading',''),(295198,42451,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(295199,42451,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(295200,42451,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(295201,42451,'blocks_6_tabs_0_tab_content_actions',''),(295202,42451,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(295203,42451,'blocks_6_tabs_0_tab_content',''),(295204,42451,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(295205,42451,'blocks_6_tabs_0_tab_image','41542'),(295206,42451,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(295207,42451,'blocks_6_tabs_1_tab_label','Current Practitioners'),(295208,42451,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(295209,42451,'blocks_6_tabs_1_tab_content_title',''),(295210,42451,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(295211,42451,'blocks_6_tabs_1_tab_content_heading',''),(295212,42451,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(295213,42451,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(295214,42451,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(295215,42451,'blocks_6_tabs_1_tab_content_actions',''),(295216,42451,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(295217,42451,'blocks_6_tabs_1_tab_content',''),(295218,42451,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(295219,42451,'blocks_6_tabs_1_tab_image','41505'),(295220,42451,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(295221,42451,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(295222,42451,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(295223,42451,'blocks_6_tabs_2_tab_content_title',''),(295224,42451,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(295225,42451,'blocks_6_tabs_2_tab_content_heading',''),(295226,42451,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(295227,42451,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(295228,42451,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(295229,42451,'blocks_6_tabs_2_tab_content_actions',''),(295230,42451,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(295231,42451,'blocks_6_tabs_2_tab_content',''),(295232,42451,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(295233,42451,'blocks_6_tabs_2_tab_image','41539'),(295234,42451,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(295235,42451,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(295236,42451,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(295237,42451,'blocks_6_tabs_3_tab_content_title',''),(295238,42451,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(295239,42451,'blocks_6_tabs_3_tab_content_heading',''),(295240,42451,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(295241,42451,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(295242,42451,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(295243,42451,'blocks_6_tabs_3_tab_content_actions',''),(295244,42451,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(295245,42451,'blocks_6_tabs_3_tab_content',''),(295246,42451,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(295247,42451,'blocks_6_tabs_3_tab_image','41502'),(295248,42451,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(295249,42451,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(295250,42451,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(295251,42451,'blocks_6_tabs_4_tab_content_title',''),(295252,42451,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(295253,42451,'blocks_6_tabs_4_tab_content_heading',''),(295254,42451,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(295255,42451,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(295256,42451,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(295257,42451,'blocks_6_tabs_4_tab_content_actions',''),(295258,42451,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(295259,42451,'blocks_6_tabs_4_tab_content',''),(295260,42451,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(295261,42451,'blocks_6_tabs_4_tab_image','41506'),(295262,42451,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(295263,42451,'blocks_6_tabs','5'),(295264,42451,'_blocks_6_tabs','field_6177cff281419'),(295265,42451,'blocks_7_acfe_flexible_toggle',''),(295266,42451,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(295267,42451,'blocks_7_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(295268,42451,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(295269,42451,'blocks_7_options_theme','#ffffff'),(295270,42451,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(295271,42451,'blocks_7_options_state','0'),(295272,42451,'_blocks_7_options_state','field_6239fcb7508c5'),(295273,42451,'blocks_7_options',''),(295274,42451,'_blocks_7_options','field_6177e2991ac44'),(295275,42451,'blocks_7_content_title','Common MSK Conditions'),(295276,42451,'_blocks_7_content_title','field_64d237e8bb1e2'),(295277,42451,'blocks_7_content_heading','Common MSK Conditions'),(295278,42451,'_blocks_7_content_heading','field_64d237e8bb1e3'),(295279,42451,'blocks_7_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(295280,42451,'_blocks_7_content_text','field_64d237e8bb1e4'),(295281,42451,'blocks_7_content_actions',''),(295282,42451,'_blocks_7_content_actions','field_64d237e8bb1e5'),(295283,42451,'blocks_7_content_align','left'),(295284,42451,'_blocks_7_content_align','field_64d2443e6b6aa'),(295285,42451,'blocks_7_content',''),(295286,42451,'_blocks_7_content','field_64d237e8bb1e1'),(295287,42451,'blocks_7_accordion_content','custom'),(295288,42451,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(295289,42451,'blocks_7_accordion_items_0_title','Osteoarthritis'),(295290,42451,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(295291,42451,'blocks_7_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(295292,42451,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(295293,42451,'blocks_7_accordion_items_1_title','Rheumatoid Arthritis'),(295294,42451,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(295295,42451,'blocks_7_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(295296,42451,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(295297,42451,'blocks_7_accordion_items_2_title','Back Pain'),(295298,42451,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(295299,42451,'blocks_7_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(295300,42451,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(295301,42451,'blocks_7_accordion_items_3_title','Osteoporosis'),(295302,42451,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(295303,42451,'blocks_7_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(295304,42451,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(295305,42451,'blocks_7_accordion_items_4_title','Tendinitis'),(295306,42451,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(295307,42451,'blocks_7_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(295308,42451,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(295309,42451,'blocks_7_accordion_items_5_title','Carpal Tunnel Syndrome'),(295310,42451,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(295311,42451,'blocks_7_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(295312,42451,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(295313,42451,'blocks_7_accordion_items_6_title','Fibromyalgia'),(295314,42451,'_blocks_7_accordion_items_6_title','field_6177e2991ac4d'),(295315,42451,'blocks_7_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(295316,42451,'_blocks_7_accordion_items_6_text','field_6177e2991ac4e'),(295317,42451,'blocks_7_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(295318,42451,'_blocks_7_accordion_items_7_title','field_6177e2991ac4d'),(295319,42451,'blocks_7_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(295320,42451,'_blocks_7_accordion_items_7_text','field_6177e2991ac4e'),(295321,42451,'blocks_7_accordion_items','8'),(295322,42451,'_blocks_7_accordion_items','field_6177e2991ac4c'),(295323,42451,'blocks_7_actions',''),(295324,42451,'_blocks_7_actions','field_61a746a817f7a'),(295325,42451,'blocks_8_acfe_flexible_toggle',''),(295326,42451,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(295327,42451,'blocks_8_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(295328,42451,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(295329,42451,'blocks_8_options_theme','#f5f5f5'),(295330,42451,'_blocks_8_options_theme','field_6176830e2ad17'),(295331,42451,'blocks_8_options',''),(295332,42451,'_blocks_8_options','field_6176830e2ad16'),(295333,42451,'blocks_8_text_block_heading','The Importance of MSK Education'),(295334,42451,'_blocks_8_text_block_heading','field_617669d413097'),(295335,42451,'blocks_8_text_block_content',''),(295336,42451,'_blocks_8_text_block_content','field_617669ec13098'),(295337,42451,'blocks_9_acfe_flexible_toggle',''),(295338,42451,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295339,42451,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(295340,42451,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295341,42451,'blocks_9_options_theme','#f5f5f5'),(295342,42451,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(295343,42451,'blocks_9_options_reverse','1'),(295344,42451,'_blocks_9_options_reverse','field_61768049bb8ac'),(295345,42451,'blocks_9_options',''),(295346,42451,'_blocks_9_options','field_617682517c334'),(295347,42451,'blocks_9_split_5050_image','41498'),(295348,42451,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(295349,42451,'blocks_9_split_5050_video',''),(295350,42451,'_blocks_9_split_5050_video','field_6239f3160848a'),(295351,42451,'blocks_9_split_5050_content_title',''),(295352,42451,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(295353,42451,'blocks_9_split_5050_content_heading',''),(295354,42451,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(295355,42451,'blocks_9_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(295356,42451,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(295357,42451,'blocks_9_split_5050_content_actions',''),(295358,42451,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(295359,42451,'blocks_9_split_5050_content',''),(295360,42451,'_blocks_9_split_5050_content','field_61767afceb8ba'),(295361,42451,'blocks_14_acfe_flexible_toggle',''),(295362,42451,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(295363,42451,'blocks_14_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(295364,42451,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(295365,42451,'blocks_14_options_theme','#ffffff'),(295366,42451,'_blocks_14_options_theme','field_6176830e2ad17'),(295367,42451,'blocks_14_options',''),(295368,42451,'_blocks_14_options','field_6176830e2ad16'),(295369,42451,'blocks_14_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(295370,42451,'_blocks_14_text_block_heading','field_617669d413097'),(295371,42451,'blocks_14_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(295372,42451,'_blocks_14_text_block_content','field_617669ec13098'),(295373,42451,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(295374,42451,'_hero_actions_0_button','field_61757281285eb'),(295375,42451,'blocks_10_acfe_flexible_toggle',''),(295376,42451,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295377,42451,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(295378,42451,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295379,42451,'blocks_10_options_theme','#f5f5f5'),(295380,42451,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(295381,42451,'blocks_10_options_reverse','1'),(295382,42451,'_blocks_10_options_reverse','field_61768049bb8ac'),(295383,42451,'blocks_10_options',''),(295384,42451,'_blocks_10_options','field_617682517c334'),(295385,42451,'blocks_10_split_5050_image','40387'),(295386,42451,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(295387,42451,'blocks_10_split_5050_video',''),(295388,42451,'_blocks_10_split_5050_video','field_6239f3160848a'),(295389,42451,'blocks_10_split_5050_content_title',''),(295390,42451,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(295391,42451,'blocks_10_split_5050_content_heading',''),(295392,42451,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(295393,42451,'blocks_10_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(295394,42451,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(295395,42451,'blocks_10_split_5050_content_actions',''),(295396,42451,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(295397,42451,'blocks_10_split_5050_content',''),(295398,42451,'_blocks_10_split_5050_content','field_61767afceb8ba'),(295399,42451,'blocks_11_acfe_flexible_toggle',''),(295400,42451,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295401,42451,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(295402,42451,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295403,42451,'blocks_11_options_theme','#f5f5f5'),(295404,42451,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(295405,42451,'blocks_11_options_reverse','1'),(295406,42451,'_blocks_11_options_reverse','field_61768049bb8ac'),(295407,42451,'blocks_11_options',''),(295408,42451,'_blocks_11_options','field_617682517c334'),(295409,42451,'blocks_11_split_5050_image','18856'),(295410,42451,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(295411,42451,'blocks_11_split_5050_video',''),(295412,42451,'_blocks_11_split_5050_video','field_6239f3160848a'),(295413,42451,'blocks_11_split_5050_content_title',''),(295414,42451,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(295415,42451,'blocks_11_split_5050_content_heading',''),(295416,42451,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(295417,42451,'blocks_11_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(295418,42451,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(295419,42451,'blocks_11_split_5050_content_actions',''),(295420,42451,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(295421,42451,'blocks_11_split_5050_content',''),(295422,42451,'_blocks_11_split_5050_content','field_61767afceb8ba'),(295423,42451,'blocks_12_acfe_flexible_toggle',''),(295424,42451,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295425,42451,'blocks_12_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(295426,42451,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295427,42451,'blocks_12_options_theme','#ffffff'),(295428,42451,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(295429,42451,'blocks_12_options_reverse','0'),(295430,42451,'_blocks_12_options_reverse','field_61768049bb8ac'),(295431,42451,'blocks_12_options',''),(295432,42451,'_blocks_12_options','field_617682517c334'),(295433,42451,'blocks_12_split_5050_image','41501'),(295434,42451,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(295435,42451,'blocks_12_split_5050_video',''),(295436,42451,'_blocks_12_split_5050_video','field_6239f3160848a'),(295437,42451,'blocks_12_split_5050_content_title',''),(295438,42451,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(295439,42451,'blocks_12_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(295440,42451,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(295441,42451,'blocks_12_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(295442,42451,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(295443,42451,'blocks_12_split_5050_content_actions',''),(295444,42451,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(295445,42451,'blocks_12_split_5050_content',''),(295446,42451,'_blocks_12_split_5050_content','field_61767afceb8ba'),(295447,42451,'blocks_13_acfe_flexible_toggle',''),(295448,42451,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(295449,42451,'blocks_13_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(295450,42451,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(295451,42451,'blocks_13_options_theme','#ffffff'),(295452,42451,'_blocks_13_options_theme','field_6176830e2ad17'),(295453,42451,'blocks_13_options',''),(295454,42451,'_blocks_13_options','field_6176830e2ad16'),(295455,42451,'blocks_13_text_block_heading','The Role of MSK Education in Workplace Health'),(295456,42451,'_blocks_13_text_block_heading','field_617669d413097'),(295457,42451,'blocks_13_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(295458,42451,'_blocks_13_text_block_content','field_617669ec13098'),(295459,42451,'blocks_15_acfe_flexible_toggle',''),(295460,42451,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(295461,42451,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(295462,42451,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(295463,42451,'blocks_15_options_theme','#b61234'),(295464,42451,'_blocks_15_options_theme','field_6176830e2ad17'),(295465,42451,'blocks_15_options',''),(295466,42451,'_blocks_15_options','field_6176830e2ad16'),(295467,42451,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(295468,42451,'_blocks_15_text_block_heading','field_617669d413097'),(295469,42451,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(295470,42451,'_blocks_15_text_block_content','field_617669ec13098'),(295471,42451,'blocks_16_acfe_flexible_toggle',''),(295472,42451,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(295473,42451,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(295474,42451,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(295475,42451,'blocks_16_options_theme','#b61234'),(295476,42451,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(295477,42451,'blocks_16_options_format','row'),(295478,42451,'_blocks_16_options_format','field_64bfde9a90690'),(295479,42451,'blocks_16_options',''),(295480,42451,'_blocks_16_options','field_64bfdd9b90684'),(295481,42451,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(295482,42451,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(295483,42451,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(295484,42451,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(295485,42451,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(295486,42451,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(295487,42451,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(295488,42451,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(295489,42451,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(295490,42451,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(295491,42451,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(295492,42451,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(295493,42451,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(295494,42451,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(295495,42451,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(295496,42451,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(295497,42451,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(295498,42451,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(295499,42451,'blocks_16_icon_row_items_3_icon','recognised.svg'),(295500,42451,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(295501,42451,'blocks_16_icon_row_items_3_label','Optimised Performance'),(295502,42451,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(295503,42451,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(295504,42451,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(295505,42451,'blocks_16_icon_row_items','4'),(295506,42451,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(295507,42451,'blocks_17_acfe_flexible_toggle',''),(295508,42451,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(295509,42451,'blocks_17_acfe_flexible_layout_title','Conclusion'),(295510,42451,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(295511,42451,'blocks_17_options_theme','#f5f5f5'),(295512,42451,'_blocks_17_options_theme','field_6176830e2ad17'),(295513,42451,'blocks_17_options',''),(295514,42451,'_blocks_17_options','field_6176830e2ad16'),(295515,42451,'blocks_17_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(295516,42451,'_blocks_17_text_block_heading','field_617669d413097'),(295517,42451,'blocks_17_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(295518,42451,'_blocks_17_text_block_content','field_617669ec13098'),(295519,42451,'blocks_18_acfe_flexible_toggle',''),(295520,42451,'_blocks_18_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(295521,42451,'blocks_18_acfe_flexible_layout_title','Promo Panel'),(295522,42451,'_blocks_18_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(295523,42451,'blocks_18_options_alignment','center'),(295524,42451,'_blocks_18_options_alignment','field_61769449f5490'),(295525,42451,'blocks_18_options',''),(295526,42451,'_blocks_18_options','field_617693e1428f0'),(295527,42451,'blocks_18_promo_panel_image','40342'),(295528,42451,'_blocks_18_promo_panel_image','field_617693e1428f3'),(295529,42451,'blocks_18_promo_panel_content_heading','Want to Get Started?'),(295530,42451,'_blocks_18_promo_panel_content_heading','field_617693e1428f6'),(295531,42451,'blocks_18_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(295532,42451,'_blocks_18_promo_panel_content_text','field_617693e1428f7'),(295533,42451,'blocks_18_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(295534,42451,'_blocks_18_promo_panel_content_actions_0_button','field_617693e1428f9'),(295535,42451,'blocks_18_promo_panel_content_actions','1'),(295536,42451,'_blocks_18_promo_panel_content_actions','field_617693e1428f8'),(295537,42451,'blocks_18_promo_panel_content',''),(295538,42451,'_blocks_18_promo_panel_content','field_617693e1428f4'),(295539,42452,'hide_hero','0'),(295540,42452,'_hide_hero','field_66a2380fcda39'),(295541,42452,'hero_title',''),(295542,42452,'_hero_title','field_617571fe285e8'),(295543,42452,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(295544,42452,'_hero_text','field_6175723c285e9'),(295545,42452,'hero_actions','1'),(295546,42452,'_hero_actions','field_61757270285ea'),(295547,42452,'hero_style','default'),(295548,42452,'_hero_style','field_62051d9dc5324'),(295549,42452,'hero_image_pos_x','right'),(295550,42452,'_hero_image_pos_x','field_62ec3d05390bb'),(295551,42452,'hero_image_pos_y','top'),(295552,42452,'_hero_image_pos_y','field_62ec3d05390bc'),(295553,42452,'hero_image_pos',''),(295554,42452,'_hero_image_pos','field_62ec3d05390ba'),(295555,42452,'fft_hide_from_listings','0'),(295556,42452,'_fft_hide_from_listings','field_61f1320446ab2'),(295557,42452,'post_format','402'),(295558,42452,'_post_format','field_61756bfb51898'),(295559,42452,'post_author',''),(295560,42452,'_post_author','field_62ec389d22113'),(295561,42452,'post_reviewer',''),(295562,42452,'_post_reviewer','field_627140a2a9800'),(295563,42452,'post_table_of_contents','0'),(295564,42452,'_post_table_of_contents','field_65c503bc846a6'),(295565,42452,'blocks','a:19:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:10:\"text_block\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"text_block\";i:18;s:11:\"promo_panel\";}'),(295566,42452,'_blocks','field_6176696113096'),(295567,42452,'_thumbnail_id','41331'),(295568,42452,'__thumbnail_id','field_617570855ddaf'),(295569,42452,'blocks_0_acfe_flexible_toggle',''),(295570,42452,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(295571,42452,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(295572,42452,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(295573,42452,'blocks_0_options_theme','#ffffff'),(295574,42452,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(295575,42452,'blocks_0_options',''),(295576,42452,'_blocks_0_options','field_6177b758246ae'),(295577,42452,'blocks_0_link_stack_content_title',''),(295578,42452,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(295579,42452,'blocks_0_link_stack_content_heading','What is MSK?'),(295580,42452,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(295581,42452,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(295582,42452,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(295583,42452,'blocks_0_link_stack_content_actions_0_button',''),(295584,42452,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(295585,42452,'blocks_0_link_stack_content_actions','1'),(295586,42452,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(295587,42452,'blocks_0_link_stack_content',''),(295588,42452,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(295589,42452,'blocks_0_link_stack_0_label','1.'),(295590,42452,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(295591,42452,'blocks_0_link_stack_0_title','Overview'),(295592,42452,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(295593,42452,'blocks_0_link_stack_0_url','#overview'),(295594,42452,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(295595,42452,'blocks_0_link_stack_1_label','2.'),(295596,42452,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(295597,42452,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(295598,42452,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(295599,42452,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(295600,42452,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(295601,42452,'blocks_0_link_stack_2_label','3.'),(295602,42452,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(295603,42452,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(295604,42452,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(295605,42452,'blocks_0_link_stack_2_url','#who-should-study-msk'),(295606,42452,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(295607,42452,'blocks_0_link_stack_3_label','4.'),(295608,42452,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(295609,42452,'blocks_0_link_stack_3_title','Common MSK Conditions'),(295610,42452,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(295611,42452,'blocks_0_link_stack_3_url','#common-msk-conditions'),(295612,42452,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(295613,42452,'blocks_0_link_stack_4_label','5.'),(295614,42452,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(295615,42452,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(295616,42452,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(295617,42452,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(295618,42452,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(295619,42452,'blocks_0_link_stack_5_label','6.'),(295620,42452,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(295621,42452,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(295622,42452,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(295623,42452,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(295624,42452,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(295625,42452,'blocks_0_link_stack','6'),(295626,42452,'_blocks_0_link_stack','field_6177b7f600cff'),(295627,42452,'blocks_1_acfe_flexible_toggle',''),(295628,42452,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295629,42452,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(295630,42452,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295631,42452,'blocks_1_options_theme','#ffffff'),(295632,42452,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(295633,42452,'blocks_1_options_reverse','0'),(295634,42452,'_blocks_1_options_reverse','field_61768049bb8ac'),(295635,42452,'blocks_1_options',''),(295636,42452,'_blocks_1_options','field_617682517c334'),(295637,42452,'blocks_1_split_5050_image','40615'),(295638,42452,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(295639,42452,'blocks_1_split_5050_video',''),(295640,42452,'_blocks_1_split_5050_video','field_6239f3160848a'),(295641,42452,'blocks_1_split_5050_content_title',''),(295642,42452,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(295643,42452,'blocks_1_split_5050_content_heading','Overview'),(295644,42452,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(295645,42452,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(295646,42452,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(295647,42452,'blocks_1_split_5050_content_actions',''),(295648,42452,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(295649,42452,'blocks_1_split_5050_content',''),(295650,42452,'_blocks_1_split_5050_content','field_61767afceb8ba'),(295651,42452,'blocks_2_acfe_flexible_toggle',''),(295652,42452,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(295653,42452,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(295654,42452,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(295655,42452,'blocks_2_options_theme','#f5f5f5'),(295656,42452,'_blocks_2_options_theme','field_6176830e2ad17'),(295657,42452,'blocks_2_options',''),(295658,42452,'_blocks_2_options','field_6176830e2ad16'),(295659,42452,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(295660,42452,'_blocks_2_text_block_heading','field_617669d413097'),(295661,42452,'blocks_2_text_block_content',''),(295662,42452,'_blocks_2_text_block_content','field_617669ec13098'),(295663,42452,'blocks_3_acfe_flexible_toggle',''),(295664,42452,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295665,42452,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(295666,42452,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295667,42452,'blocks_3_options_theme','#f5f5f5'),(295668,42452,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(295669,42452,'blocks_3_options_reverse','0'),(295670,42452,'_blocks_3_options_reverse','field_61768049bb8ac'),(295671,42452,'blocks_3_options',''),(295672,42452,'_blocks_3_options','field_617682517c334'),(295673,42452,'blocks_3_split_5050_image','40618'),(295674,42452,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(295675,42452,'blocks_3_split_5050_video',''),(295676,42452,'_blocks_3_split_5050_video','field_6239f3160848a'),(295677,42452,'blocks_3_split_5050_content_title',''),(295678,42452,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(295679,42452,'blocks_3_split_5050_content_heading',''),(295680,42452,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(295681,42452,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.'),(295682,42452,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(295683,42452,'blocks_3_split_5050_content_actions',''),(295684,42452,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(295685,42452,'blocks_3_split_5050_content',''),(295686,42452,'_blocks_3_split_5050_content','field_61767afceb8ba'),(295687,42452,'blocks_4_acfe_flexible_toggle',''),(295688,42452,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295689,42452,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(295690,42452,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295691,42452,'blocks_4_options_theme','#f5f5f5'),(295692,42452,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(295693,42452,'blocks_4_options_reverse','1'),(295694,42452,'_blocks_4_options_reverse','field_61768049bb8ac'),(295695,42452,'blocks_4_options',''),(295696,42452,'_blocks_4_options','field_617682517c334'),(295697,42452,'blocks_4_split_5050_image','41330'),(295698,42452,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(295699,42452,'blocks_4_split_5050_video',''),(295700,42452,'_blocks_4_split_5050_video','field_6239f3160848a'),(295701,42452,'blocks_4_split_5050_content_title',''),(295702,42452,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(295703,42452,'blocks_4_split_5050_content_heading',''),(295704,42452,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(295705,42452,'blocks_4_split_5050_content_text','Maintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(295706,42452,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(295707,42452,'blocks_4_split_5050_content_actions',''),(295708,42452,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(295709,42452,'blocks_4_split_5050_content',''),(295710,42452,'_blocks_4_split_5050_content','field_61767afceb8ba'),(295711,42452,'blocks_5_acfe_flexible_toggle',''),(295712,42452,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(295713,42452,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(295714,42452,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(295715,42452,'blocks_5_options_theme','#b61234'),(295716,42452,'_blocks_5_options_theme','field_6176830e2ad17'),(295717,42452,'blocks_5_options',''),(295718,42452,'_blocks_5_options','field_6176830e2ad16'),(295719,42452,'blocks_5_text_block_heading','Who Should Study MSK?'),(295720,42452,'_blocks_5_text_block_heading','field_617669d413097'),(295721,42452,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(295722,42452,'_blocks_5_text_block_content','field_617669ec13098'),(295723,42452,'blocks_6_acfe_flexible_toggle',''),(295724,42452,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(295725,42452,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(295726,42452,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(295727,42452,'blocks_6_options_theme','#b61234'),(295728,42452,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(295729,42452,'blocks_6_options',''),(295730,42452,'_blocks_6_options','field_6177cfcd8140f'),(295731,42452,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(295732,42452,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(295733,42452,'blocks_6_tabs_0_tab_content_title',''),(295734,42452,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(295735,42452,'blocks_6_tabs_0_tab_content_heading',''),(295736,42452,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(295737,42452,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(295738,42452,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(295739,42452,'blocks_6_tabs_0_tab_content_actions',''),(295740,42452,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(295741,42452,'blocks_6_tabs_0_tab_content',''),(295742,42452,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(295743,42452,'blocks_6_tabs_0_tab_image','41542'),(295744,42452,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(295745,42452,'blocks_6_tabs_1_tab_label','Current Practitioners'),(295746,42452,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(295747,42452,'blocks_6_tabs_1_tab_content_title',''),(295748,42452,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(295749,42452,'blocks_6_tabs_1_tab_content_heading',''),(295750,42452,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(295751,42452,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(295752,42452,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(295753,42452,'blocks_6_tabs_1_tab_content_actions',''),(295754,42452,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(295755,42452,'blocks_6_tabs_1_tab_content',''),(295756,42452,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(295757,42452,'blocks_6_tabs_1_tab_image','41505'),(295758,42452,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(295759,42452,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(295760,42452,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(295761,42452,'blocks_6_tabs_2_tab_content_title',''),(295762,42452,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(295763,42452,'blocks_6_tabs_2_tab_content_heading',''),(295764,42452,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(295765,42452,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(295766,42452,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(295767,42452,'blocks_6_tabs_2_tab_content_actions',''),(295768,42452,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(295769,42452,'blocks_6_tabs_2_tab_content',''),(295770,42452,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(295771,42452,'blocks_6_tabs_2_tab_image','41539'),(295772,42452,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(295773,42452,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(295774,42452,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(295775,42452,'blocks_6_tabs_3_tab_content_title',''),(295776,42452,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(295777,42452,'blocks_6_tabs_3_tab_content_heading',''),(295778,42452,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(295779,42452,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(295780,42452,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(295781,42452,'blocks_6_tabs_3_tab_content_actions',''),(295782,42452,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(295783,42452,'blocks_6_tabs_3_tab_content',''),(295784,42452,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(295785,42452,'blocks_6_tabs_3_tab_image','41502'),(295786,42452,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(295787,42452,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(295788,42452,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(295789,42452,'blocks_6_tabs_4_tab_content_title',''),(295790,42452,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(295791,42452,'blocks_6_tabs_4_tab_content_heading',''),(295792,42452,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(295793,42452,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(295794,42452,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(295795,42452,'blocks_6_tabs_4_tab_content_actions',''),(295796,42452,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(295797,42452,'blocks_6_tabs_4_tab_content',''),(295798,42452,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(295799,42452,'blocks_6_tabs_4_tab_image','41506'),(295800,42452,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(295801,42452,'blocks_6_tabs','5'),(295802,42452,'_blocks_6_tabs','field_6177cff281419'),(295803,42452,'blocks_7_acfe_flexible_toggle',''),(295804,42452,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(295805,42452,'blocks_7_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(295806,42452,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(295807,42452,'blocks_7_options_theme','#ffffff'),(295808,42452,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(295809,42452,'blocks_7_options_state','0'),(295810,42452,'_blocks_7_options_state','field_6239fcb7508c5'),(295811,42452,'blocks_7_options',''),(295812,42452,'_blocks_7_options','field_6177e2991ac44'),(295813,42452,'blocks_7_content_title','Common MSK Conditions'),(295814,42452,'_blocks_7_content_title','field_64d237e8bb1e2'),(295815,42452,'blocks_7_content_heading','Common MSK Conditions'),(295816,42452,'_blocks_7_content_heading','field_64d237e8bb1e3'),(295817,42452,'blocks_7_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(295818,42452,'_blocks_7_content_text','field_64d237e8bb1e4'),(295819,42452,'blocks_7_content_actions',''),(295820,42452,'_blocks_7_content_actions','field_64d237e8bb1e5'),(295821,42452,'blocks_7_content_align','left'),(295822,42452,'_blocks_7_content_align','field_64d2443e6b6aa'),(295823,42452,'blocks_7_content',''),(295824,42452,'_blocks_7_content','field_64d237e8bb1e1'),(295825,42452,'blocks_7_accordion_content','custom'),(295826,42452,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(295827,42452,'blocks_7_accordion_items_0_title','Osteoarthritis'),(295828,42452,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(295829,42452,'blocks_7_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(295830,42452,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(295831,42452,'blocks_7_accordion_items_1_title','Rheumatoid Arthritis'),(295832,42452,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(295833,42452,'blocks_7_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(295834,42452,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(295835,42452,'blocks_7_accordion_items_2_title','Back Pain'),(295836,42452,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(295837,42452,'blocks_7_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(295838,42452,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(295839,42452,'blocks_7_accordion_items_3_title','Osteoporosis'),(295840,42452,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(295841,42452,'blocks_7_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(295842,42452,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(295843,42452,'blocks_7_accordion_items_4_title','Tendinitis'),(295844,42452,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(295845,42452,'blocks_7_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(295846,42452,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(295847,42452,'blocks_7_accordion_items_5_title','Carpal Tunnel Syndrome'),(295848,42452,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(295849,42452,'blocks_7_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(295850,42452,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(295851,42452,'blocks_7_accordion_items_6_title','Fibromyalgia'),(295852,42452,'_blocks_7_accordion_items_6_title','field_6177e2991ac4d'),(295853,42452,'blocks_7_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(295854,42452,'_blocks_7_accordion_items_6_text','field_6177e2991ac4e'),(295855,42452,'blocks_7_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(295856,42452,'_blocks_7_accordion_items_7_title','field_6177e2991ac4d'),(295857,42452,'blocks_7_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(295858,42452,'_blocks_7_accordion_items_7_text','field_6177e2991ac4e'),(295859,42452,'blocks_7_accordion_items','8'),(295860,42452,'_blocks_7_accordion_items','field_6177e2991ac4c'),(295861,42452,'blocks_7_actions',''),(295862,42452,'_blocks_7_actions','field_61a746a817f7a'),(295863,42452,'blocks_8_acfe_flexible_toggle',''),(295864,42452,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(295865,42452,'blocks_8_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(295866,42452,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(295867,42452,'blocks_8_options_theme','#f5f5f5'),(295868,42452,'_blocks_8_options_theme','field_6176830e2ad17'),(295869,42452,'blocks_8_options',''),(295870,42452,'_blocks_8_options','field_6176830e2ad16'),(295871,42452,'blocks_8_text_block_heading','The Importance of MSK Education'),(295872,42452,'_blocks_8_text_block_heading','field_617669d413097'),(295873,42452,'blocks_8_text_block_content',''),(295874,42452,'_blocks_8_text_block_content','field_617669ec13098'),(295875,42452,'blocks_9_acfe_flexible_toggle',''),(295876,42452,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295877,42452,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(295878,42452,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295879,42452,'blocks_9_options_theme','#f5f5f5'),(295880,42452,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(295881,42452,'blocks_9_options_reverse','1'),(295882,42452,'_blocks_9_options_reverse','field_61768049bb8ac'),(295883,42452,'blocks_9_options',''),(295884,42452,'_blocks_9_options','field_617682517c334'),(295885,42452,'blocks_9_split_5050_image','41498'),(295886,42452,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(295887,42452,'blocks_9_split_5050_video',''),(295888,42452,'_blocks_9_split_5050_video','field_6239f3160848a'),(295889,42452,'blocks_9_split_5050_content_title',''),(295890,42452,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(295891,42452,'blocks_9_split_5050_content_heading',''),(295892,42452,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(295893,42452,'blocks_9_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(295894,42452,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(295895,42452,'blocks_9_split_5050_content_actions',''),(295896,42452,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(295897,42452,'blocks_9_split_5050_content',''),(295898,42452,'_blocks_9_split_5050_content','field_61767afceb8ba'),(295899,42452,'blocks_14_acfe_flexible_toggle',''),(295900,42452,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(295901,42452,'blocks_14_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(295902,42452,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(295903,42452,'blocks_14_options_theme','#ffffff'),(295904,42452,'_blocks_14_options_theme','field_6176830e2ad17'),(295905,42452,'blocks_14_options',''),(295906,42452,'_blocks_14_options','field_6176830e2ad16'),(295907,42452,'blocks_14_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(295908,42452,'_blocks_14_text_block_heading','field_617669d413097'),(295909,42452,'blocks_14_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(295910,42452,'_blocks_14_text_block_content','field_617669ec13098'),(295911,42452,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(295912,42452,'_hero_actions_0_button','field_61757281285eb'),(295913,42452,'blocks_10_acfe_flexible_toggle',''),(295914,42452,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295915,42452,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(295916,42452,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295917,42452,'blocks_10_options_theme','#f5f5f5'),(295918,42452,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(295919,42452,'blocks_10_options_reverse','1'),(295920,42452,'_blocks_10_options_reverse','field_61768049bb8ac'),(295921,42452,'blocks_10_options',''),(295922,42452,'_blocks_10_options','field_617682517c334'),(295923,42452,'blocks_10_split_5050_image','40387'),(295924,42452,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(295925,42452,'blocks_10_split_5050_video',''),(295926,42452,'_blocks_10_split_5050_video','field_6239f3160848a'),(295927,42452,'blocks_10_split_5050_content_title',''),(295928,42452,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(295929,42452,'blocks_10_split_5050_content_heading',''),(295930,42452,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(295931,42452,'blocks_10_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(295932,42452,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(295933,42452,'blocks_10_split_5050_content_actions',''),(295934,42452,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(295935,42452,'blocks_10_split_5050_content',''),(295936,42452,'_blocks_10_split_5050_content','field_61767afceb8ba'),(295937,42452,'blocks_11_acfe_flexible_toggle',''),(295938,42452,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295939,42452,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(295940,42452,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295941,42452,'blocks_11_options_theme','#f5f5f5'),(295942,42452,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(295943,42452,'blocks_11_options_reverse','1'),(295944,42452,'_blocks_11_options_reverse','field_61768049bb8ac'),(295945,42452,'blocks_11_options',''),(295946,42452,'_blocks_11_options','field_617682517c334'),(295947,42452,'blocks_11_split_5050_image','18856'),(295948,42452,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(295949,42452,'blocks_11_split_5050_video',''),(295950,42452,'_blocks_11_split_5050_video','field_6239f3160848a'),(295951,42452,'blocks_11_split_5050_content_title',''),(295952,42452,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(295953,42452,'blocks_11_split_5050_content_heading',''),(295954,42452,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(295955,42452,'blocks_11_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(295956,42452,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(295957,42452,'blocks_11_split_5050_content_actions',''),(295958,42452,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(295959,42452,'blocks_11_split_5050_content',''),(295960,42452,'_blocks_11_split_5050_content','field_61767afceb8ba'),(295961,42452,'blocks_12_acfe_flexible_toggle',''),(295962,42452,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(295963,42452,'blocks_12_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(295964,42452,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(295965,42452,'blocks_12_options_theme','#ffffff'),(295966,42452,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(295967,42452,'blocks_12_options_reverse','0'),(295968,42452,'_blocks_12_options_reverse','field_61768049bb8ac'),(295969,42452,'blocks_12_options',''),(295970,42452,'_blocks_12_options','field_617682517c334'),(295971,42452,'blocks_12_split_5050_image','41501'),(295972,42452,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(295973,42452,'blocks_12_split_5050_video',''),(295974,42452,'_blocks_12_split_5050_video','field_6239f3160848a'),(295975,42452,'blocks_12_split_5050_content_title',''),(295976,42452,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(295977,42452,'blocks_12_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(295978,42452,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(295979,42452,'blocks_12_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(295980,42452,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(295981,42452,'blocks_12_split_5050_content_actions',''),(295982,42452,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(295983,42452,'blocks_12_split_5050_content',''),(295984,42452,'_blocks_12_split_5050_content','field_61767afceb8ba'),(295985,42452,'blocks_13_acfe_flexible_toggle',''),(295986,42452,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(295987,42452,'blocks_13_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(295988,42452,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(295989,42452,'blocks_13_options_theme','#ffffff'),(295990,42452,'_blocks_13_options_theme','field_6176830e2ad17'),(295991,42452,'blocks_13_options',''),(295992,42452,'_blocks_13_options','field_6176830e2ad16'),(295993,42452,'blocks_13_text_block_heading','The Role of MSK Education in Workplace Health'),(295994,42452,'_blocks_13_text_block_heading','field_617669d413097'),(295995,42452,'blocks_13_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(295996,42452,'_blocks_13_text_block_content','field_617669ec13098'),(295997,42452,'blocks_15_acfe_flexible_toggle',''),(295998,42452,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(295999,42452,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(296000,42452,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(296001,42452,'blocks_15_options_theme','#b61234'),(296002,42452,'_blocks_15_options_theme','field_6176830e2ad17'),(296003,42452,'blocks_15_options',''),(296004,42452,'_blocks_15_options','field_6176830e2ad16'),(296005,42452,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(296006,42452,'_blocks_15_text_block_heading','field_617669d413097'),(296007,42452,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(296008,42452,'_blocks_15_text_block_content','field_617669ec13098'),(296009,42452,'blocks_16_acfe_flexible_toggle',''),(296010,42452,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(296011,42452,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(296012,42452,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(296013,42452,'blocks_16_options_theme','#b61234'),(296014,42452,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(296015,42452,'blocks_16_options_format','row'),(296016,42452,'_blocks_16_options_format','field_64bfde9a90690'),(296017,42452,'blocks_16_options',''),(296018,42452,'_blocks_16_options','field_64bfdd9b90684'),(296019,42452,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(296020,42452,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(296021,42452,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(296022,42452,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(296023,42452,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(296024,42452,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(296025,42452,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(296026,42452,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(296027,42452,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(296028,42452,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(296029,42452,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(296030,42452,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(296031,42452,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(296032,42452,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(296033,42452,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(296034,42452,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(296035,42452,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(296036,42452,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(296037,42452,'blocks_16_icon_row_items_3_icon','recognised.svg'),(296038,42452,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(296039,42452,'blocks_16_icon_row_items_3_label','Optimised Performance'),(296040,42452,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(296041,42452,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(296042,42452,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(296043,42452,'blocks_16_icon_row_items','4'),(296044,42452,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(296045,42452,'blocks_17_acfe_flexible_toggle',''),(296046,42452,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(296047,42452,'blocks_17_acfe_flexible_layout_title','Conclusion'),(296048,42452,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(296049,42452,'blocks_17_options_theme','#f5f5f5'),(296050,42452,'_blocks_17_options_theme','field_6176830e2ad17'),(296051,42452,'blocks_17_options',''),(296052,42452,'_blocks_17_options','field_6176830e2ad16'),(296053,42452,'blocks_17_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(296054,42452,'_blocks_17_text_block_heading','field_617669d413097'),(296055,42452,'blocks_17_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(296056,42452,'_blocks_17_text_block_content','field_617669ec13098'),(296057,42452,'blocks_18_acfe_flexible_toggle',''),(296058,42452,'_blocks_18_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(296059,42452,'blocks_18_acfe_flexible_layout_title','Promo Panel'),(296060,42452,'_blocks_18_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(296061,42452,'blocks_18_options_alignment','center'),(296062,42452,'_blocks_18_options_alignment','field_61769449f5490'),(296063,42452,'blocks_18_options',''),(296064,42452,'_blocks_18_options','field_617693e1428f0'),(296065,42452,'blocks_18_promo_panel_image','40342'),(296066,42452,'_blocks_18_promo_panel_image','field_617693e1428f3'),(296067,42452,'blocks_18_promo_panel_content_heading','Want to Get Started?'),(296068,42452,'_blocks_18_promo_panel_content_heading','field_617693e1428f6'),(296069,42452,'blocks_18_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(296070,42452,'_blocks_18_promo_panel_content_text','field_617693e1428f7'),(296071,42452,'blocks_18_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(296072,42452,'_blocks_18_promo_panel_content_actions_0_button','field_617693e1428f9'),(296073,42452,'blocks_18_promo_panel_content_actions','1'),(296074,42452,'_blocks_18_promo_panel_content_actions','field_617693e1428f8'),(296075,42452,'blocks_18_promo_panel_content',''),(296076,42452,'_blocks_18_promo_panel_content','field_617693e1428f4'),(296077,42449,'form_fields_6_acfe_layout_col','6'),(296078,42449,'_form_fields_6_acfe_layout_col','field_layout_634557f2ac428_col'),(296079,42449,'form_fields_6_layout_settings_required','1'),(296080,42449,'_form_fields_6_layout_settings_required','field_63457a5c4b908'),(296081,42449,'form_fields_6_layout_settings_hidden','0'),(296082,42449,'_form_fields_6_layout_settings_hidden','field_63457a704b909'),(296083,42449,'form_fields_6_layout_settings',''),(296084,42449,'_form_fields_6_layout_settings','field_layout_634557f2ac428_settings'),(296085,42449,'form_fields_6_acfe_flexible_layout_title','What is your Job Title?'),(296086,42449,'_form_fields_6_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(296087,42449,'form_fields_6_name','jobtitle'),(296088,42449,'_form_fields_6_name','field_634558471d0f0'),(296089,42449,'form_fields_6_label','What is your Job Title?'),(296090,42449,'_form_fields_6_label','field_634558271d0ef'),(296091,42449,'form_fields_6_description',''),(296092,42449,'_form_fields_6_description','field_6389047cb4655'),(296093,42449,'form_fields_7_acfe_layout_col','12'),(296094,42449,'_form_fields_7_acfe_layout_col','field_layout_634557f2ac428_col'),(296095,42449,'form_fields_7_layout_settings_required','1'),(296096,42449,'_form_fields_7_layout_settings_required','field_63457a5c4b908'),(296097,42449,'form_fields_7_layout_settings_hidden','0'),(296098,42449,'_form_fields_7_layout_settings_hidden','field_63457a704b909'),(296099,42449,'form_fields_7_layout_settings',''),(296100,42449,'_form_fields_7_layout_settings','field_layout_634557f2ac428_settings'),(296101,42449,'form_fields_7_acfe_flexible_layout_title','What Organisation do you Work for?'),(296102,42449,'_form_fields_7_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(296103,42449,'form_fields_7_name','organisation'),(296104,42449,'_form_fields_7_name','field_634558471d0f0'),(296105,42449,'form_fields_7_label','What Organisation do you Work for?'),(296106,42449,'_form_fields_7_label','field_634558271d0ef'),(296107,42449,'form_fields_7_description',''),(296108,42449,'_form_fields_7_description','field_6389047cb4655'),(296109,42449,'form_fields_8_acfe_layout_col','12'),(296110,42449,'_form_fields_8_acfe_layout_col','field_layout_634557f2ac428_col'),(296111,42449,'form_fields_8_layout_settings_required','1'),(296112,42449,'_form_fields_8_layout_settings_required','field_63457a5c4b908'),(296113,42449,'form_fields_8_layout_settings_hidden','0'),(296114,42449,'_form_fields_8_layout_settings_hidden','field_63457a704b909'),(296115,42449,'form_fields_8_layout_settings',''),(296116,42449,'_form_fields_8_layout_settings','field_layout_634557f2ac428_settings'),(296117,42449,'form_fields_8_acfe_flexible_layout_title','In Which Country are you Based?'),(296118,42449,'_form_fields_8_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(296119,42449,'form_fields_8_name','country'),(296120,42449,'_form_fields_8_name','field_634558471d0f0'),(296121,42449,'form_fields_8_label','In Which Country are you Based?'),(296122,42449,'_form_fields_8_label','field_634558271d0ef'),(296123,42449,'form_fields_8_description',''),(296124,42449,'_form_fields_8_description','field_6389047cb4655'),(296209,42453,'hide_hero','0'),(296210,42453,'_hide_hero','field_66a2380fcda39'),(296211,42453,'hero_title',''),(296212,42453,'_hero_title','field_617571fe285e8'),(296213,42453,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(296214,42453,'_hero_text','field_6175723c285e9'),(296215,42453,'hero_actions','1'),(296216,42453,'_hero_actions','field_61757270285ea'),(296217,42453,'hero_style','default'),(296218,42453,'_hero_style','field_62051d9dc5324'),(296219,42453,'hero_image_pos_x','right'),(296220,42453,'_hero_image_pos_x','field_62ec3d05390bb'),(296221,42453,'hero_image_pos_y','top'),(296222,42453,'_hero_image_pos_y','field_62ec3d05390bc'),(296223,42453,'hero_image_pos',''),(296224,42453,'_hero_image_pos','field_62ec3d05390ba'),(296225,42453,'fft_hide_from_listings','0'),(296226,42453,'_fft_hide_from_listings','field_61f1320446ab2'),(296227,42453,'post_format','402'),(296228,42453,'_post_format','field_61756bfb51898'),(296229,42453,'post_author',''),(296230,42453,'_post_author','field_62ec389d22113'),(296231,42453,'post_reviewer',''),(296232,42453,'_post_reviewer','field_627140a2a9800'),(296233,42453,'post_table_of_contents','0'),(296234,42453,'_post_table_of_contents','field_65c503bc846a6'),(296235,42453,'blocks','a:19:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"text_block\";i:13;s:5:\"icons\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:10:\"text_block\";i:17;s:10:\"text_block\";i:18;s:11:\"promo_panel\";}'),(296236,42453,'_blocks','field_6176696113096'),(296237,42453,'_thumbnail_id','41331'),(296238,42453,'__thumbnail_id','field_617570855ddaf'),(296239,42453,'blocks_0_acfe_flexible_toggle',''),(296240,42453,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(296241,42453,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(296242,42453,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(296243,42453,'blocks_0_options_theme','#ffffff'),(296244,42453,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(296245,42453,'blocks_0_options',''),(296246,42453,'_blocks_0_options','field_6177b758246ae'),(296247,42453,'blocks_0_link_stack_content_title',''),(296248,42453,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(296249,42453,'blocks_0_link_stack_content_heading','What is MSK?'),(296250,42453,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(296251,42453,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(296252,42453,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(296253,42453,'blocks_0_link_stack_content_actions_0_button',''),(296254,42453,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(296255,42453,'blocks_0_link_stack_content_actions','1'),(296256,42453,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(296257,42453,'blocks_0_link_stack_content',''),(296258,42453,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(296259,42453,'blocks_0_link_stack_0_label','1.'),(296260,42453,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(296261,42453,'blocks_0_link_stack_0_title','Overview'),(296262,42453,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(296263,42453,'blocks_0_link_stack_0_url','#overview'),(296264,42453,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(296265,42453,'blocks_0_link_stack_1_label','2.'),(296266,42453,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(296267,42453,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(296268,42453,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(296269,42453,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(296270,42453,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(296271,42453,'blocks_0_link_stack_2_label','3.'),(296272,42453,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(296273,42453,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(296274,42453,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(296275,42453,'blocks_0_link_stack_2_url','#who-should-study-msk'),(296276,42453,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(296277,42453,'blocks_0_link_stack_3_label','4.'),(296278,42453,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(296279,42453,'blocks_0_link_stack_3_title','Common MSK Conditions'),(296280,42453,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(296281,42453,'blocks_0_link_stack_3_url','#common-msk-conditions'),(296282,42453,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(296283,42453,'blocks_0_link_stack_4_label','5.'),(296284,42453,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(296285,42453,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(296286,42453,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(296287,42453,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(296288,42453,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(296289,42453,'blocks_0_link_stack_5_label','6.'),(296290,42453,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(296291,42453,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(296292,42453,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(296293,42453,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(296294,42453,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(296295,42453,'blocks_0_link_stack','6'),(296296,42453,'_blocks_0_link_stack','field_6177b7f600cff'),(296297,42453,'blocks_1_acfe_flexible_toggle',''),(296298,42453,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(296299,42453,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(296300,42453,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(296301,42453,'blocks_1_options_theme','#ffffff'),(296302,42453,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(296303,42453,'blocks_1_options_reverse','0'),(296304,42453,'_blocks_1_options_reverse','field_61768049bb8ac'),(296305,42453,'blocks_1_options',''),(296306,42453,'_blocks_1_options','field_617682517c334'),(296307,42453,'blocks_1_split_5050_image','40615'),(296308,42453,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(296309,42453,'blocks_1_split_5050_video',''),(296310,42453,'_blocks_1_split_5050_video','field_6239f3160848a'),(296311,42453,'blocks_1_split_5050_content_title',''),(296312,42453,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(296313,42453,'blocks_1_split_5050_content_heading','Overview'),(296314,42453,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(296315,42453,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(296316,42453,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(296317,42453,'blocks_1_split_5050_content_actions',''),(296318,42453,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(296319,42453,'blocks_1_split_5050_content',''),(296320,42453,'_blocks_1_split_5050_content','field_61767afceb8ba'),(296321,42453,'blocks_2_acfe_flexible_toggle',''),(296322,42453,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(296323,42453,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(296324,42453,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(296325,42453,'blocks_2_options_theme','#f5f5f5'),(296326,42453,'_blocks_2_options_theme','field_6176830e2ad17'),(296327,42453,'blocks_2_options',''),(296328,42453,'_blocks_2_options','field_6176830e2ad16'),(296329,42453,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(296330,42453,'_blocks_2_text_block_heading','field_617669d413097'),(296331,42453,'blocks_2_text_block_content',''),(296332,42453,'_blocks_2_text_block_content','field_617669ec13098'),(296333,42453,'blocks_3_acfe_flexible_toggle',''),(296334,42453,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(296335,42453,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(296336,42453,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(296337,42453,'blocks_3_options_theme','#f5f5f5'),(296338,42453,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(296339,42453,'blocks_3_options_reverse','0'),(296340,42453,'_blocks_3_options_reverse','field_61768049bb8ac'),(296341,42453,'blocks_3_options',''),(296342,42453,'_blocks_3_options','field_617682517c334'),(296343,42453,'blocks_3_split_5050_image','40618'),(296344,42453,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(296345,42453,'blocks_3_split_5050_video',''),(296346,42453,'_blocks_3_split_5050_video','field_6239f3160848a'),(296347,42453,'blocks_3_split_5050_content_title',''),(296348,42453,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(296349,42453,'blocks_3_split_5050_content_heading',''),(296350,42453,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(296351,42453,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.'),(296352,42453,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(296353,42453,'blocks_3_split_5050_content_actions',''),(296354,42453,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(296355,42453,'blocks_3_split_5050_content',''),(296356,42453,'_blocks_3_split_5050_content','field_61767afceb8ba'),(296357,42453,'blocks_4_acfe_flexible_toggle',''),(296358,42453,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(296359,42453,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(296360,42453,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(296361,42453,'blocks_4_options_theme','#f5f5f5'),(296362,42453,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(296363,42453,'blocks_4_options_reverse','1'),(296364,42453,'_blocks_4_options_reverse','field_61768049bb8ac'),(296365,42453,'blocks_4_options',''),(296366,42453,'_blocks_4_options','field_617682517c334'),(296367,42453,'blocks_4_split_5050_image','41330'),(296368,42453,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(296369,42453,'blocks_4_split_5050_video',''),(296370,42453,'_blocks_4_split_5050_video','field_6239f3160848a'),(296371,42453,'blocks_4_split_5050_content_title',''),(296372,42453,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(296373,42453,'blocks_4_split_5050_content_heading',''),(296374,42453,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(296375,42453,'blocks_4_split_5050_content_text','Maintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(296376,42453,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(296377,42453,'blocks_4_split_5050_content_actions',''),(296378,42453,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(296379,42453,'blocks_4_split_5050_content',''),(296380,42453,'_blocks_4_split_5050_content','field_61767afceb8ba'),(296381,42453,'blocks_5_acfe_flexible_toggle',''),(296382,42453,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(296383,42453,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(296384,42453,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(296385,42453,'blocks_5_options_theme','#b61234'),(296386,42453,'_blocks_5_options_theme','field_6176830e2ad17'),(296387,42453,'blocks_5_options',''),(296388,42453,'_blocks_5_options','field_6176830e2ad16'),(296389,42453,'blocks_5_text_block_heading','Who Should Study MSK?'),(296390,42453,'_blocks_5_text_block_heading','field_617669d413097'),(296391,42453,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(296392,42453,'_blocks_5_text_block_content','field_617669ec13098'),(296393,42453,'blocks_6_acfe_flexible_toggle',''),(296394,42453,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(296395,42453,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(296396,42453,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(296397,42453,'blocks_6_options_theme','#b61234'),(296398,42453,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(296399,42453,'blocks_6_options',''),(296400,42453,'_blocks_6_options','field_6177cfcd8140f'),(296401,42453,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(296402,42453,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(296403,42453,'blocks_6_tabs_0_tab_content_title',''),(296404,42453,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(296405,42453,'blocks_6_tabs_0_tab_content_heading',''),(296406,42453,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(296407,42453,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(296408,42453,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(296409,42453,'blocks_6_tabs_0_tab_content_actions',''),(296410,42453,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(296411,42453,'blocks_6_tabs_0_tab_content',''),(296412,42453,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(296413,42453,'blocks_6_tabs_0_tab_image','41542'),(296414,42453,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(296415,42453,'blocks_6_tabs_1_tab_label','Current Practitioners'),(296416,42453,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(296417,42453,'blocks_6_tabs_1_tab_content_title',''),(296418,42453,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(296419,42453,'blocks_6_tabs_1_tab_content_heading',''),(296420,42453,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(296421,42453,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(296422,42453,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(296423,42453,'blocks_6_tabs_1_tab_content_actions',''),(296424,42453,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(296425,42453,'blocks_6_tabs_1_tab_content',''),(296426,42453,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(296427,42453,'blocks_6_tabs_1_tab_image','41505'),(296428,42453,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(296429,42453,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(296430,42453,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(296431,42453,'blocks_6_tabs_2_tab_content_title',''),(296432,42453,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(296433,42453,'blocks_6_tabs_2_tab_content_heading',''),(296434,42453,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(296435,42453,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(296436,42453,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(296437,42453,'blocks_6_tabs_2_tab_content_actions',''),(296438,42453,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(296439,42453,'blocks_6_tabs_2_tab_content',''),(296440,42453,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(296441,42453,'blocks_6_tabs_2_tab_image','41539'),(296442,42453,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(296443,42453,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(296444,42453,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(296445,42453,'blocks_6_tabs_3_tab_content_title',''),(296446,42453,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(296447,42453,'blocks_6_tabs_3_tab_content_heading',''),(296448,42453,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(296449,42453,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(296450,42453,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(296451,42453,'blocks_6_tabs_3_tab_content_actions',''),(296452,42453,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(296453,42453,'blocks_6_tabs_3_tab_content',''),(296454,42453,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(296455,42453,'blocks_6_tabs_3_tab_image','41502'),(296456,42453,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(296457,42453,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(296458,42453,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(296459,42453,'blocks_6_tabs_4_tab_content_title',''),(296460,42453,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(296461,42453,'blocks_6_tabs_4_tab_content_heading',''),(296462,42453,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(296463,42453,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(296464,42453,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(296465,42453,'blocks_6_tabs_4_tab_content_actions',''),(296466,42453,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(296467,42453,'blocks_6_tabs_4_tab_content',''),(296468,42453,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(296469,42453,'blocks_6_tabs_4_tab_image','41506'),(296470,42453,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(296471,42453,'blocks_6_tabs','5'),(296472,42453,'_blocks_6_tabs','field_6177cff281419'),(296473,42453,'blocks_7_acfe_flexible_toggle',''),(296474,42453,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(296475,42453,'blocks_7_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(296476,42453,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(296477,42453,'blocks_7_options_theme','#ffffff'),(296478,42453,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(296479,42453,'blocks_7_options_state','0'),(296480,42453,'_blocks_7_options_state','field_6239fcb7508c5'),(296481,42453,'blocks_7_options',''),(296482,42453,'_blocks_7_options','field_6177e2991ac44'),(296483,42453,'blocks_7_content_title','Common MSK Conditions'),(296484,42453,'_blocks_7_content_title','field_64d237e8bb1e2'),(296485,42453,'blocks_7_content_heading','Common MSK Conditions'),(296486,42453,'_blocks_7_content_heading','field_64d237e8bb1e3'),(296487,42453,'blocks_7_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(296488,42453,'_blocks_7_content_text','field_64d237e8bb1e4'),(296489,42453,'blocks_7_content_actions',''),(296490,42453,'_blocks_7_content_actions','field_64d237e8bb1e5'),(296491,42453,'blocks_7_content_align','left'),(296492,42453,'_blocks_7_content_align','field_64d2443e6b6aa'),(296493,42453,'blocks_7_content',''),(296494,42453,'_blocks_7_content','field_64d237e8bb1e1'),(296495,42453,'blocks_7_accordion_content','custom'),(296496,42453,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(296497,42453,'blocks_7_accordion_items_0_title','Osteoarthritis'),(296498,42453,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(296499,42453,'blocks_7_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(296500,42453,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(296501,42453,'blocks_7_accordion_items_1_title','Rheumatoid Arthritis'),(296502,42453,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(296503,42453,'blocks_7_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(296504,42453,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(296505,42453,'blocks_7_accordion_items_2_title','Back Pain'),(296506,42453,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(296507,42453,'blocks_7_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(296508,42453,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(296509,42453,'blocks_7_accordion_items_3_title','Osteoporosis'),(296510,42453,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(296511,42453,'blocks_7_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(296512,42453,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(296513,42453,'blocks_7_accordion_items_4_title','Tendinitis'),(296514,42453,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(296515,42453,'blocks_7_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(296516,42453,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(296517,42453,'blocks_7_accordion_items_5_title','Carpal Tunnel Syndrome'),(296518,42453,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(296519,42453,'blocks_7_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(296520,42453,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(296521,42453,'blocks_7_accordion_items_6_title','Fibromyalgia'),(296522,42453,'_blocks_7_accordion_items_6_title','field_6177e2991ac4d'),(296523,42453,'blocks_7_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(296524,42453,'_blocks_7_accordion_items_6_text','field_6177e2991ac4e'),(296525,42453,'blocks_7_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(296526,42453,'_blocks_7_accordion_items_7_title','field_6177e2991ac4d'),(296527,42453,'blocks_7_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(296528,42453,'_blocks_7_accordion_items_7_text','field_6177e2991ac4e'),(296529,42453,'blocks_7_accordion_items','8'),(296530,42453,'_blocks_7_accordion_items','field_6177e2991ac4c'),(296531,42453,'blocks_7_actions',''),(296532,42453,'_blocks_7_actions','field_61a746a817f7a'),(296533,42453,'blocks_8_acfe_flexible_toggle',''),(296534,42453,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(296535,42453,'blocks_8_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(296536,42453,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(296537,42453,'blocks_8_options_theme','#f5f5f5'),(296538,42453,'_blocks_8_options_theme','field_6176830e2ad17'),(296539,42453,'blocks_8_options',''),(296540,42453,'_blocks_8_options','field_6176830e2ad16'),(296541,42453,'blocks_8_text_block_heading','The Importance of MSK Education'),(296542,42453,'_blocks_8_text_block_heading','field_617669d413097'),(296543,42453,'blocks_8_text_block_content',''),(296544,42453,'_blocks_8_text_block_content','field_617669ec13098'),(296545,42453,'blocks_9_acfe_flexible_toggle',''),(296546,42453,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(296547,42453,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(296548,42453,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(296549,42453,'blocks_9_options_theme','#f5f5f5'),(296550,42453,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(296551,42453,'blocks_9_options_reverse','1'),(296552,42453,'_blocks_9_options_reverse','field_61768049bb8ac'),(296553,42453,'blocks_9_options',''),(296554,42453,'_blocks_9_options','field_617682517c334'),(296555,42453,'blocks_9_split_5050_image','41498'),(296556,42453,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(296557,42453,'blocks_9_split_5050_video',''),(296558,42453,'_blocks_9_split_5050_video','field_6239f3160848a'),(296559,42453,'blocks_9_split_5050_content_title',''),(296560,42453,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(296561,42453,'blocks_9_split_5050_content_heading',''),(296562,42453,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(296563,42453,'blocks_9_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(296564,42453,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(296565,42453,'blocks_9_split_5050_content_actions',''),(296566,42453,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(296567,42453,'blocks_9_split_5050_content',''),(296568,42453,'_blocks_9_split_5050_content','field_61767afceb8ba'),(296569,42453,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(296570,42453,'_hero_actions_0_button','field_61757281285eb'),(296571,42453,'blocks_10_acfe_flexible_toggle',''),(296572,42453,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(296573,42453,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(296574,42453,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(296575,42453,'blocks_10_options_theme','#f5f5f5'),(296576,42453,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(296577,42453,'blocks_10_options_reverse','1'),(296578,42453,'_blocks_10_options_reverse','field_61768049bb8ac'),(296579,42453,'blocks_10_options',''),(296580,42453,'_blocks_10_options','field_617682517c334'),(296581,42453,'blocks_10_split_5050_image','40387'),(296582,42453,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(296583,42453,'blocks_10_split_5050_video',''),(296584,42453,'_blocks_10_split_5050_video','field_6239f3160848a'),(296585,42453,'blocks_10_split_5050_content_title',''),(296586,42453,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(296587,42453,'blocks_10_split_5050_content_heading',''),(296588,42453,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(296589,42453,'blocks_10_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(296590,42453,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(296591,42453,'blocks_10_split_5050_content_actions',''),(296592,42453,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(296593,42453,'blocks_10_split_5050_content',''),(296594,42453,'_blocks_10_split_5050_content','field_61767afceb8ba'),(296595,42453,'blocks_11_acfe_flexible_toggle',''),(296596,42453,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(296597,42453,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(296598,42453,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(296599,42453,'blocks_11_options_theme','#f5f5f5'),(296600,42453,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(296601,42453,'blocks_11_options_reverse','1'),(296602,42453,'_blocks_11_options_reverse','field_61768049bb8ac'),(296603,42453,'blocks_11_options',''),(296604,42453,'_blocks_11_options','field_617682517c334'),(296605,42453,'blocks_11_split_5050_image','18856'),(296606,42453,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(296607,42453,'blocks_11_split_5050_video',''),(296608,42453,'_blocks_11_split_5050_video','field_6239f3160848a'),(296609,42453,'blocks_11_split_5050_content_title',''),(296610,42453,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(296611,42453,'blocks_11_split_5050_content_heading',''),(296612,42453,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(296613,42453,'blocks_11_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(296614,42453,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(296615,42453,'blocks_11_split_5050_content_actions',''),(296616,42453,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(296617,42453,'blocks_11_split_5050_content',''),(296618,42453,'_blocks_11_split_5050_content','field_61767afceb8ba'),(296619,42453,'blocks_15_acfe_flexible_toggle',''),(296620,42453,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(296621,42453,'blocks_15_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(296622,42453,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(296623,42453,'blocks_15_options_theme','#ffffff'),(296624,42453,'_blocks_15_options_theme','field_6176830e2ad17'),(296625,42453,'blocks_15_options',''),(296626,42453,'_blocks_15_options','field_6176830e2ad16'),(296627,42453,'blocks_15_text_block_heading','The Role of MSK Education in Workplace Health'),(296628,42453,'_blocks_15_text_block_heading','field_617669d413097'),(296629,42453,'blocks_15_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(296630,42453,'_blocks_15_text_block_content','field_617669ec13098'),(296631,42453,'blocks_17_acfe_flexible_toggle',''),(296632,42453,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(296633,42453,'blocks_17_acfe_flexible_layout_title','Conclusion'),(296634,42453,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(296635,42453,'blocks_17_options_theme','#f5f5f5'),(296636,42453,'_blocks_17_options_theme','field_6176830e2ad17'),(296637,42453,'blocks_17_options',''),(296638,42453,'_blocks_17_options','field_6176830e2ad16'),(296639,42453,'blocks_17_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(296640,42453,'_blocks_17_text_block_heading','field_617669d413097'),(296641,42453,'blocks_17_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(296642,42453,'_blocks_17_text_block_content','field_617669ec13098'),(296643,42453,'blocks_18_acfe_flexible_toggle',''),(296644,42453,'_blocks_18_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(296645,42453,'blocks_18_acfe_flexible_layout_title','Promo Panel'),(296646,42453,'_blocks_18_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(296647,42453,'blocks_18_options_alignment','center'),(296648,42453,'_blocks_18_options_alignment','field_61769449f5490'),(296649,42453,'blocks_18_options',''),(296650,42453,'_blocks_18_options','field_617693e1428f0'),(296651,42453,'blocks_18_promo_panel_image','40342'),(296652,42453,'_blocks_18_promo_panel_image','field_617693e1428f3'),(296653,42453,'blocks_18_promo_panel_content_heading','Want to Get Started?'),(296654,42453,'_blocks_18_promo_panel_content_heading','field_617693e1428f6'),(296655,42453,'blocks_18_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(296656,42453,'_blocks_18_promo_panel_content_text','field_617693e1428f7'),(296657,42453,'blocks_18_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(296658,42453,'_blocks_18_promo_panel_content_actions_0_button','field_617693e1428f9'),(296659,42453,'blocks_18_promo_panel_content_actions','1'),(296660,42453,'_blocks_18_promo_panel_content_actions','field_617693e1428f8'),(296661,42453,'blocks_18_promo_panel_content',''),(296662,42453,'_blocks_18_promo_panel_content','field_617693e1428f4'),(296663,42453,'blocks_12_acfe_flexible_toggle',''),(296664,42453,'_blocks_12_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(296665,42453,'blocks_12_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(296666,42453,'_blocks_12_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(296667,42453,'blocks_12_options_theme','#b61234'),(296668,42453,'_blocks_12_options_theme','field_6176830e2ad17'),(296669,42453,'blocks_12_options',''),(296670,42453,'_blocks_12_options','field_6176830e2ad16'),(296671,42453,'blocks_12_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(296672,42453,'_blocks_12_text_block_heading','field_617669d413097'),(296673,42453,'blocks_12_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(296674,42453,'_blocks_12_text_block_content','field_617669ec13098'),(296675,42453,'blocks_13_acfe_flexible_toggle',''),(296676,42453,'_blocks_13_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(296677,42453,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(296678,42453,'_blocks_13_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(296679,42453,'blocks_13_options_theme','#b61234'),(296680,42453,'_blocks_13_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(296681,42453,'blocks_13_options_format','row'),(296682,42453,'_blocks_13_options_format','field_64bfde9a90690'),(296683,42453,'blocks_13_options',''),(296684,42453,'_blocks_13_options','field_64bfdd9b90684'),(296685,42453,'blocks_13_icon_row_items_0_icon','pass-rate.svg'),(296686,42453,'_blocks_13_icon_row_items_0_icon','field_64bfdd9b9068d'),(296687,42453,'blocks_13_icon_row_items_0_label','More Accurate Assessments'),(296688,42453,'_blocks_13_icon_row_items_0_label','field_64bfdd9c9068e'),(296689,42453,'blocks_13_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(296690,42453,'_blocks_13_icon_row_items_0_text','field_64bfdd9c9068f'),(296691,42453,'blocks_13_icon_row_items_1_icon','exceptional-support.svg'),(296692,42453,'_blocks_13_icon_row_items_1_icon','field_64bfdd9b9068d'),(296693,42453,'blocks_13_icon_row_items_1_label','Personalised Movement Strategies'),(296694,42453,'_blocks_13_icon_row_items_1_label','field_64bfdd9c9068e'),(296695,42453,'blocks_13_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(296696,42453,'_blocks_13_icon_row_items_1_text','field_64bfdd9c9068f'),(296697,42453,'blocks_13_icon_row_items_2_icon','lifetime-course-access.svg'),(296698,42453,'_blocks_13_icon_row_items_2_icon','field_64bfdd9b9068d'),(296699,42453,'blocks_13_icon_row_items_2_label','Injury Prevention and Longevity'),(296700,42453,'_blocks_13_icon_row_items_2_label','field_64bfdd9c9068e'),(296701,42453,'blocks_13_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(296702,42453,'_blocks_13_icon_row_items_2_text','field_64bfdd9c9068f'),(296703,42453,'blocks_13_icon_row_items_3_icon','recognised.svg'),(296704,42453,'_blocks_13_icon_row_items_3_icon','field_64bfdd9b9068d'),(296705,42453,'blocks_13_icon_row_items_3_label','Optimised Performance'),(296706,42453,'_blocks_13_icon_row_items_3_label','field_64bfdd9c9068e'),(296707,42453,'blocks_13_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(296708,42453,'_blocks_13_icon_row_items_3_text','field_64bfdd9c9068f'),(296709,42453,'blocks_13_icon_row_items','4'),(296710,42453,'_blocks_13_icon_row_items','field_64bfdd9b9068c'),(296711,42453,'blocks_14_acfe_flexible_toggle',''),(296712,42453,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(296713,42453,'blocks_14_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(296714,42453,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(296715,42453,'blocks_14_options_theme','#ffffff'),(296716,42453,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(296717,42453,'blocks_14_options_reverse','0'),(296718,42453,'_blocks_14_options_reverse','field_61768049bb8ac'),(296719,42453,'blocks_14_options',''),(296720,42453,'_blocks_14_options','field_617682517c334'),(296721,42453,'blocks_14_split_5050_image','41501'),(296722,42453,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(296723,42453,'blocks_14_split_5050_video',''),(296724,42453,'_blocks_14_split_5050_video','field_6239f3160848a'),(296725,42453,'blocks_14_split_5050_content_title',''),(296726,42453,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(296727,42453,'blocks_14_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(296728,42453,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(296729,42453,'blocks_14_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(296730,42453,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(296731,42453,'blocks_14_split_5050_content_actions',''),(296732,42453,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(296733,42453,'blocks_14_split_5050_content',''),(296734,42453,'_blocks_14_split_5050_content','field_61767afceb8ba'),(296735,42453,'blocks_16_acfe_flexible_toggle',''),(296736,42453,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(296737,42453,'blocks_16_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(296738,42453,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(296739,42453,'blocks_16_options_theme','#ffffff'),(296740,42453,'_blocks_16_options_theme','field_6176830e2ad17'),(296741,42453,'blocks_16_options',''),(296742,42453,'_blocks_16_options','field_6176830e2ad16'),(296743,42453,'blocks_16_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(296744,42453,'_blocks_16_text_block_heading','field_617669d413097'),(296745,42453,'blocks_16_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(296746,42453,'_blocks_16_text_block_content','field_617669ec13098'),(296747,42454,'hide_hero','0'),(296748,42454,'_hide_hero','field_66a2380fcda39'),(296749,42454,'hero_title',''),(296750,42454,'_hero_title','field_617571fe285e8'),(296751,42454,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(296752,42454,'_hero_text','field_6175723c285e9'),(296753,42454,'hero_actions','1'),(296754,42454,'_hero_actions','field_61757270285ea'),(296755,42454,'hero_style','default'),(296756,42454,'_hero_style','field_62051d9dc5324'),(296757,42454,'hero_image_pos_x','right'),(296758,42454,'_hero_image_pos_x','field_62ec3d05390bb'),(296759,42454,'hero_image_pos_y','top'),(296760,42454,'_hero_image_pos_y','field_62ec3d05390bc'),(296761,42454,'hero_image_pos',''),(296762,42454,'_hero_image_pos','field_62ec3d05390ba'),(296763,42454,'fft_hide_from_listings','0'),(296764,42454,'_fft_hide_from_listings','field_61f1320446ab2'),(296765,42454,'post_format','402'),(296766,42454,'_post_format','field_61756bfb51898'),(296767,42454,'post_author',''),(296768,42454,'_post_author','field_62ec389d22113'),(296769,42454,'post_reviewer',''),(296770,42454,'_post_reviewer','field_627140a2a9800'),(296771,42454,'post_table_of_contents','0'),(296772,42454,'_post_table_of_contents','field_65c503bc846a6'),(296773,42454,'blocks','a:19:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"text_block\";i:13;s:5:\"icons\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:10:\"text_block\";i:17;s:10:\"text_block\";i:18;s:11:\"promo_panel\";}'),(296774,42454,'_blocks','field_6176696113096'),(296775,42454,'_thumbnail_id','41331'),(296776,42454,'__thumbnail_id','field_617570855ddaf'),(296777,42454,'blocks_0_acfe_flexible_toggle',''),(296778,42454,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(296779,42454,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(296780,42454,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(296781,42454,'blocks_0_options_theme','#ffffff'),(296782,42454,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(296783,42454,'blocks_0_options',''),(296784,42454,'_blocks_0_options','field_6177b758246ae'),(296785,42454,'blocks_0_link_stack_content_title',''),(296786,42454,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(296787,42454,'blocks_0_link_stack_content_heading','What is MSK?'),(296788,42454,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(296789,42454,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(296790,42454,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(296791,42454,'blocks_0_link_stack_content_actions_0_button',''),(296792,42454,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(296793,42454,'blocks_0_link_stack_content_actions','1'),(296794,42454,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(296795,42454,'blocks_0_link_stack_content',''),(296796,42454,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(296797,42454,'blocks_0_link_stack_0_label','1.'),(296798,42454,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(296799,42454,'blocks_0_link_stack_0_title','Overview'),(296800,42454,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(296801,42454,'blocks_0_link_stack_0_url','#overview'),(296802,42454,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(296803,42454,'blocks_0_link_stack_1_label','2.'),(296804,42454,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(296805,42454,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(296806,42454,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(296807,42454,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(296808,42454,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(296809,42454,'blocks_0_link_stack_2_label','3.'),(296810,42454,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(296811,42454,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(296812,42454,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(296813,42454,'blocks_0_link_stack_2_url','#who-should-study-msk'),(296814,42454,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(296815,42454,'blocks_0_link_stack_3_label','4.'),(296816,42454,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(296817,42454,'blocks_0_link_stack_3_title','Common MSK Conditions'),(296818,42454,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(296819,42454,'blocks_0_link_stack_3_url','#common-msk-conditions'),(296820,42454,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(296821,42454,'blocks_0_link_stack_4_label','5.'),(296822,42454,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(296823,42454,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(296824,42454,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(296825,42454,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(296826,42454,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(296827,42454,'blocks_0_link_stack_5_label','6.'),(296828,42454,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(296829,42454,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(296830,42454,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(296831,42454,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(296832,42454,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(296833,42454,'blocks_0_link_stack','6'),(296834,42454,'_blocks_0_link_stack','field_6177b7f600cff'),(296835,42454,'blocks_1_acfe_flexible_toggle',''),(296836,42454,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(296837,42454,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(296838,42454,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(296839,42454,'blocks_1_options_theme','#ffffff'),(296840,42454,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(296841,42454,'blocks_1_options_reverse','0'),(296842,42454,'_blocks_1_options_reverse','field_61768049bb8ac'),(296843,42454,'blocks_1_options',''),(296844,42454,'_blocks_1_options','field_617682517c334'),(296845,42454,'blocks_1_split_5050_image','40615'),(296846,42454,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(296847,42454,'blocks_1_split_5050_video',''),(296848,42454,'_blocks_1_split_5050_video','field_6239f3160848a'),(296849,42454,'blocks_1_split_5050_content_title',''),(296850,42454,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(296851,42454,'blocks_1_split_5050_content_heading','Overview'),(296852,42454,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(296853,42454,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(296854,42454,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(296855,42454,'blocks_1_split_5050_content_actions',''),(296856,42454,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(296857,42454,'blocks_1_split_5050_content',''),(296858,42454,'_blocks_1_split_5050_content','field_61767afceb8ba'),(296859,42454,'blocks_2_acfe_flexible_toggle',''),(296860,42454,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(296861,42454,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(296862,42454,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(296863,42454,'blocks_2_options_theme','#f5f5f5'),(296864,42454,'_blocks_2_options_theme','field_6176830e2ad17'),(296865,42454,'blocks_2_options',''),(296866,42454,'_blocks_2_options','field_6176830e2ad16'),(296867,42454,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(296868,42454,'_blocks_2_text_block_heading','field_617669d413097'),(296869,42454,'blocks_2_text_block_content',''),(296870,42454,'_blocks_2_text_block_content','field_617669ec13098'),(296871,42454,'blocks_3_acfe_flexible_toggle',''),(296872,42454,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(296873,42454,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(296874,42454,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(296875,42454,'blocks_3_options_theme','#f5f5f5'),(296876,42454,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(296877,42454,'blocks_3_options_reverse','0'),(296878,42454,'_blocks_3_options_reverse','field_61768049bb8ac'),(296879,42454,'blocks_3_options',''),(296880,42454,'_blocks_3_options','field_617682517c334'),(296881,42454,'blocks_3_split_5050_image','40618'),(296882,42454,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(296883,42454,'blocks_3_split_5050_video',''),(296884,42454,'_blocks_3_split_5050_video','field_6239f3160848a'),(296885,42454,'blocks_3_split_5050_content_title',''),(296886,42454,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(296887,42454,'blocks_3_split_5050_content_heading',''),(296888,42454,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(296889,42454,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(296890,42454,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(296891,42454,'blocks_3_split_5050_content_actions',''),(296892,42454,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(296893,42454,'blocks_3_split_5050_content',''),(296894,42454,'_blocks_3_split_5050_content','field_61767afceb8ba'),(296895,42454,'blocks_4_acfe_flexible_toggle','1'),(296896,42454,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(296897,42454,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(296898,42454,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(296899,42454,'blocks_4_options_theme','#f5f5f5'),(296900,42454,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(296901,42454,'blocks_4_options_reverse','1'),(296902,42454,'_blocks_4_options_reverse','field_61768049bb8ac'),(296903,42454,'blocks_4_options',''),(296904,42454,'_blocks_4_options','field_617682517c334'),(296905,42454,'blocks_4_split_5050_image','41330'),(296906,42454,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(296907,42454,'blocks_4_split_5050_video',''),(296908,42454,'_blocks_4_split_5050_video','field_6239f3160848a'),(296909,42454,'blocks_4_split_5050_content_title',''),(296910,42454,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(296911,42454,'blocks_4_split_5050_content_heading',''),(296912,42454,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(296913,42454,'blocks_4_split_5050_content_text',''),(296914,42454,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(296915,42454,'blocks_4_split_5050_content_actions',''),(296916,42454,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(296917,42454,'blocks_4_split_5050_content',''),(296918,42454,'_blocks_4_split_5050_content','field_61767afceb8ba'),(296919,42454,'blocks_5_acfe_flexible_toggle',''),(296920,42454,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(296921,42454,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(296922,42454,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(296923,42454,'blocks_5_options_theme','#b61234'),(296924,42454,'_blocks_5_options_theme','field_6176830e2ad17'),(296925,42454,'blocks_5_options',''),(296926,42454,'_blocks_5_options','field_6176830e2ad16'),(296927,42454,'blocks_5_text_block_heading','Who Should Study MSK?'),(296928,42454,'_blocks_5_text_block_heading','field_617669d413097'),(296929,42454,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(296930,42454,'_blocks_5_text_block_content','field_617669ec13098'),(296931,42454,'blocks_6_acfe_flexible_toggle',''),(296932,42454,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(296933,42454,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(296934,42454,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(296935,42454,'blocks_6_options_theme','#b61234'),(296936,42454,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(296937,42454,'blocks_6_options',''),(296938,42454,'_blocks_6_options','field_6177cfcd8140f'),(296939,42454,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(296940,42454,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(296941,42454,'blocks_6_tabs_0_tab_content_title',''),(296942,42454,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(296943,42454,'blocks_6_tabs_0_tab_content_heading',''),(296944,42454,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(296945,42454,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(296946,42454,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(296947,42454,'blocks_6_tabs_0_tab_content_actions',''),(296948,42454,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(296949,42454,'blocks_6_tabs_0_tab_content',''),(296950,42454,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(296951,42454,'blocks_6_tabs_0_tab_image','41542'),(296952,42454,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(296953,42454,'blocks_6_tabs_1_tab_label','Current Practitioners'),(296954,42454,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(296955,42454,'blocks_6_tabs_1_tab_content_title',''),(296956,42454,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(296957,42454,'blocks_6_tabs_1_tab_content_heading',''),(296958,42454,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(296959,42454,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(296960,42454,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(296961,42454,'blocks_6_tabs_1_tab_content_actions',''),(296962,42454,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(296963,42454,'blocks_6_tabs_1_tab_content',''),(296964,42454,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(296965,42454,'blocks_6_tabs_1_tab_image','41505'),(296966,42454,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(296967,42454,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(296968,42454,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(296969,42454,'blocks_6_tabs_2_tab_content_title',''),(296970,42454,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(296971,42454,'blocks_6_tabs_2_tab_content_heading',''),(296972,42454,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(296973,42454,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(296974,42454,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(296975,42454,'blocks_6_tabs_2_tab_content_actions',''),(296976,42454,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(296977,42454,'blocks_6_tabs_2_tab_content',''),(296978,42454,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(296979,42454,'blocks_6_tabs_2_tab_image','41539'),(296980,42454,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(296981,42454,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(296982,42454,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(296983,42454,'blocks_6_tabs_3_tab_content_title',''),(296984,42454,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(296985,42454,'blocks_6_tabs_3_tab_content_heading',''),(296986,42454,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(296987,42454,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(296988,42454,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(296989,42454,'blocks_6_tabs_3_tab_content_actions',''),(296990,42454,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(296991,42454,'blocks_6_tabs_3_tab_content',''),(296992,42454,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(296993,42454,'blocks_6_tabs_3_tab_image','41502'),(296994,42454,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(296995,42454,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(296996,42454,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(296997,42454,'blocks_6_tabs_4_tab_content_title',''),(296998,42454,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(296999,42454,'blocks_6_tabs_4_tab_content_heading',''),(297000,42454,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(297001,42454,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(297002,42454,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(297003,42454,'blocks_6_tabs_4_tab_content_actions',''),(297004,42454,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(297005,42454,'blocks_6_tabs_4_tab_content',''),(297006,42454,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(297007,42454,'blocks_6_tabs_4_tab_image','41506'),(297008,42454,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(297009,42454,'blocks_6_tabs','5'),(297010,42454,'_blocks_6_tabs','field_6177cff281419'),(297011,42454,'blocks_7_acfe_flexible_toggle',''),(297012,42454,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(297013,42454,'blocks_7_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(297014,42454,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(297015,42454,'blocks_7_options_theme','#ffffff'),(297016,42454,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(297017,42454,'blocks_7_options_state','0'),(297018,42454,'_blocks_7_options_state','field_6239fcb7508c5'),(297019,42454,'blocks_7_options',''),(297020,42454,'_blocks_7_options','field_6177e2991ac44'),(297021,42454,'blocks_7_content_title','Common MSK Conditions'),(297022,42454,'_blocks_7_content_title','field_64d237e8bb1e2'),(297023,42454,'blocks_7_content_heading','Common MSK Conditions'),(297024,42454,'_blocks_7_content_heading','field_64d237e8bb1e3'),(297025,42454,'blocks_7_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(297026,42454,'_blocks_7_content_text','field_64d237e8bb1e4'),(297027,42454,'blocks_7_content_actions',''),(297028,42454,'_blocks_7_content_actions','field_64d237e8bb1e5'),(297029,42454,'blocks_7_content_align','left'),(297030,42454,'_blocks_7_content_align','field_64d2443e6b6aa'),(297031,42454,'blocks_7_content',''),(297032,42454,'_blocks_7_content','field_64d237e8bb1e1'),(297033,42454,'blocks_7_accordion_content','custom'),(297034,42454,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(297035,42454,'blocks_7_accordion_items_0_title','Osteoarthritis'),(297036,42454,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(297037,42454,'blocks_7_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(297038,42454,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(297039,42454,'blocks_7_accordion_items_1_title','Rheumatoid Arthritis'),(297040,42454,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(297041,42454,'blocks_7_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(297042,42454,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(297043,42454,'blocks_7_accordion_items_2_title','Back Pain'),(297044,42454,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(297045,42454,'blocks_7_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(297046,42454,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(297047,42454,'blocks_7_accordion_items_3_title','Osteoporosis'),(297048,42454,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(297049,42454,'blocks_7_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(297050,42454,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(297051,42454,'blocks_7_accordion_items_4_title','Tendinitis'),(297052,42454,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(297053,42454,'blocks_7_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(297054,42454,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(297055,42454,'blocks_7_accordion_items_5_title','Carpal Tunnel Syndrome'),(297056,42454,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(297057,42454,'blocks_7_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(297058,42454,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(297059,42454,'blocks_7_accordion_items_6_title','Fibromyalgia'),(297060,42454,'_blocks_7_accordion_items_6_title','field_6177e2991ac4d'),(297061,42454,'blocks_7_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(297062,42454,'_blocks_7_accordion_items_6_text','field_6177e2991ac4e'),(297063,42454,'blocks_7_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(297064,42454,'_blocks_7_accordion_items_7_title','field_6177e2991ac4d'),(297065,42454,'blocks_7_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(297066,42454,'_blocks_7_accordion_items_7_text','field_6177e2991ac4e'),(297067,42454,'blocks_7_accordion_items','8'),(297068,42454,'_blocks_7_accordion_items','field_6177e2991ac4c'),(297069,42454,'blocks_7_actions',''),(297070,42454,'_blocks_7_actions','field_61a746a817f7a'),(297071,42454,'blocks_8_acfe_flexible_toggle',''),(297072,42454,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(297073,42454,'blocks_8_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(297074,42454,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(297075,42454,'blocks_8_options_theme','#f5f5f5'),(297076,42454,'_blocks_8_options_theme','field_6176830e2ad17'),(297077,42454,'blocks_8_options',''),(297078,42454,'_blocks_8_options','field_6176830e2ad16'),(297079,42454,'blocks_8_text_block_heading','The Importance of MSK Education'),(297080,42454,'_blocks_8_text_block_heading','field_617669d413097'),(297081,42454,'blocks_8_text_block_content',''),(297082,42454,'_blocks_8_text_block_content','field_617669ec13098'),(297083,42454,'blocks_9_acfe_flexible_toggle',''),(297084,42454,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(297085,42454,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(297086,42454,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(297087,42454,'blocks_9_options_theme','#f5f5f5'),(297088,42454,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(297089,42454,'blocks_9_options_reverse','1'),(297090,42454,'_blocks_9_options_reverse','field_61768049bb8ac'),(297091,42454,'blocks_9_options',''),(297092,42454,'_blocks_9_options','field_617682517c334'),(297093,42454,'blocks_9_split_5050_image','41498'),(297094,42454,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(297095,42454,'blocks_9_split_5050_video',''),(297096,42454,'_blocks_9_split_5050_video','field_6239f3160848a'),(297097,42454,'blocks_9_split_5050_content_title',''),(297098,42454,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(297099,42454,'blocks_9_split_5050_content_heading',''),(297100,42454,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(297101,42454,'blocks_9_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(297102,42454,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(297103,42454,'blocks_9_split_5050_content_actions',''),(297104,42454,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(297105,42454,'blocks_9_split_5050_content',''),(297106,42454,'_blocks_9_split_5050_content','field_61767afceb8ba'),(297107,42454,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(297108,42454,'_hero_actions_0_button','field_61757281285eb'),(297109,42454,'blocks_10_acfe_flexible_toggle',''),(297110,42454,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(297111,42454,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(297112,42454,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(297113,42454,'blocks_10_options_theme','#f5f5f5'),(297114,42454,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(297115,42454,'blocks_10_options_reverse','1'),(297116,42454,'_blocks_10_options_reverse','field_61768049bb8ac'),(297117,42454,'blocks_10_options',''),(297118,42454,'_blocks_10_options','field_617682517c334'),(297119,42454,'blocks_10_split_5050_image','40387'),(297120,42454,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(297121,42454,'blocks_10_split_5050_video',''),(297122,42454,'_blocks_10_split_5050_video','field_6239f3160848a'),(297123,42454,'blocks_10_split_5050_content_title',''),(297124,42454,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(297125,42454,'blocks_10_split_5050_content_heading',''),(297126,42454,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(297127,42454,'blocks_10_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(297128,42454,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(297129,42454,'blocks_10_split_5050_content_actions',''),(297130,42454,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(297131,42454,'blocks_10_split_5050_content',''),(297132,42454,'_blocks_10_split_5050_content','field_61767afceb8ba'),(297133,42454,'blocks_11_acfe_flexible_toggle',''),(297134,42454,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(297135,42454,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(297136,42454,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(297137,42454,'blocks_11_options_theme','#f5f5f5'),(297138,42454,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(297139,42454,'blocks_11_options_reverse','1'),(297140,42454,'_blocks_11_options_reverse','field_61768049bb8ac'),(297141,42454,'blocks_11_options',''),(297142,42454,'_blocks_11_options','field_617682517c334'),(297143,42454,'blocks_11_split_5050_image','18856'),(297144,42454,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(297145,42454,'blocks_11_split_5050_video',''),(297146,42454,'_blocks_11_split_5050_video','field_6239f3160848a'),(297147,42454,'blocks_11_split_5050_content_title',''),(297148,42454,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(297149,42454,'blocks_11_split_5050_content_heading',''),(297150,42454,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(297151,42454,'blocks_11_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(297152,42454,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(297153,42454,'blocks_11_split_5050_content_actions',''),(297154,42454,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(297155,42454,'blocks_11_split_5050_content',''),(297156,42454,'_blocks_11_split_5050_content','field_61767afceb8ba'),(297157,42454,'blocks_15_acfe_flexible_toggle',''),(297158,42454,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(297159,42454,'blocks_15_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(297160,42454,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(297161,42454,'blocks_15_options_theme','#ffffff'),(297162,42454,'_blocks_15_options_theme','field_6176830e2ad17'),(297163,42454,'blocks_15_options',''),(297164,42454,'_blocks_15_options','field_6176830e2ad16'),(297165,42454,'blocks_15_text_block_heading','The Role of MSK Education in Workplace Health'),(297166,42454,'_blocks_15_text_block_heading','field_617669d413097'),(297167,42454,'blocks_15_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(297168,42454,'_blocks_15_text_block_content','field_617669ec13098'),(297169,42454,'blocks_17_acfe_flexible_toggle',''),(297170,42454,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(297171,42454,'blocks_17_acfe_flexible_layout_title','Conclusion'),(297172,42454,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(297173,42454,'blocks_17_options_theme','#f5f5f5'),(297174,42454,'_blocks_17_options_theme','field_6176830e2ad17'),(297175,42454,'blocks_17_options',''),(297176,42454,'_blocks_17_options','field_6176830e2ad16'),(297177,42454,'blocks_17_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(297178,42454,'_blocks_17_text_block_heading','field_617669d413097'),(297179,42454,'blocks_17_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(297180,42454,'_blocks_17_text_block_content','field_617669ec13098'),(297181,42454,'blocks_18_acfe_flexible_toggle',''),(297182,42454,'_blocks_18_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(297183,42454,'blocks_18_acfe_flexible_layout_title','Promo Panel'),(297184,42454,'_blocks_18_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(297185,42454,'blocks_18_options_alignment','center'),(297186,42454,'_blocks_18_options_alignment','field_61769449f5490'),(297187,42454,'blocks_18_options',''),(297188,42454,'_blocks_18_options','field_617693e1428f0'),(297189,42454,'blocks_18_promo_panel_image','40342'),(297190,42454,'_blocks_18_promo_panel_image','field_617693e1428f3'),(297191,42454,'blocks_18_promo_panel_content_heading','Want to Get Started?'),(297192,42454,'_blocks_18_promo_panel_content_heading','field_617693e1428f6'),(297193,42454,'blocks_18_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(297194,42454,'_blocks_18_promo_panel_content_text','field_617693e1428f7'),(297195,42454,'blocks_18_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(297196,42454,'_blocks_18_promo_panel_content_actions_0_button','field_617693e1428f9'),(297197,42454,'blocks_18_promo_panel_content_actions','1'),(297198,42454,'_blocks_18_promo_panel_content_actions','field_617693e1428f8'),(297199,42454,'blocks_18_promo_panel_content',''),(297200,42454,'_blocks_18_promo_panel_content','field_617693e1428f4'),(297201,42454,'blocks_12_acfe_flexible_toggle',''),(297202,42454,'_blocks_12_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(297203,42454,'blocks_12_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(297204,42454,'_blocks_12_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(297205,42454,'blocks_12_options_theme','#b61234'),(297206,42454,'_blocks_12_options_theme','field_6176830e2ad17'),(297207,42454,'blocks_12_options',''),(297208,42454,'_blocks_12_options','field_6176830e2ad16'),(297209,42454,'blocks_12_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(297210,42454,'_blocks_12_text_block_heading','field_617669d413097'),(297211,42454,'blocks_12_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(297212,42454,'_blocks_12_text_block_content','field_617669ec13098'),(297213,42454,'blocks_13_acfe_flexible_toggle',''),(297214,42454,'_blocks_13_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(297215,42454,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(297216,42454,'_blocks_13_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(297217,42454,'blocks_13_options_theme','#b61234'),(297218,42454,'_blocks_13_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(297219,42454,'blocks_13_options_format','row'),(297220,42454,'_blocks_13_options_format','field_64bfde9a90690'),(297221,42454,'blocks_13_options',''),(297222,42454,'_blocks_13_options','field_64bfdd9b90684'),(297223,42454,'blocks_13_icon_row_items_0_icon','pass-rate.svg'),(297224,42454,'_blocks_13_icon_row_items_0_icon','field_64bfdd9b9068d'),(297225,42454,'blocks_13_icon_row_items_0_label','More Accurate Assessments'),(297226,42454,'_blocks_13_icon_row_items_0_label','field_64bfdd9c9068e'),(297227,42454,'blocks_13_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(297228,42454,'_blocks_13_icon_row_items_0_text','field_64bfdd9c9068f'),(297229,42454,'blocks_13_icon_row_items_1_icon','exceptional-support.svg'),(297230,42454,'_blocks_13_icon_row_items_1_icon','field_64bfdd9b9068d'),(297231,42454,'blocks_13_icon_row_items_1_label','Personalised Movement Strategies'),(297232,42454,'_blocks_13_icon_row_items_1_label','field_64bfdd9c9068e'),(297233,42454,'blocks_13_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(297234,42454,'_blocks_13_icon_row_items_1_text','field_64bfdd9c9068f'),(297235,42454,'blocks_13_icon_row_items_2_icon','lifetime-course-access.svg'),(297236,42454,'_blocks_13_icon_row_items_2_icon','field_64bfdd9b9068d'),(297237,42454,'blocks_13_icon_row_items_2_label','Injury Prevention and Longevity'),(297238,42454,'_blocks_13_icon_row_items_2_label','field_64bfdd9c9068e'),(297239,42454,'blocks_13_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(297240,42454,'_blocks_13_icon_row_items_2_text','field_64bfdd9c9068f'),(297241,42454,'blocks_13_icon_row_items_3_icon','recognised.svg'),(297242,42454,'_blocks_13_icon_row_items_3_icon','field_64bfdd9b9068d'),(297243,42454,'blocks_13_icon_row_items_3_label','Optimised Performance'),(297244,42454,'_blocks_13_icon_row_items_3_label','field_64bfdd9c9068e'),(297245,42454,'blocks_13_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(297246,42454,'_blocks_13_icon_row_items_3_text','field_64bfdd9c9068f'),(297247,42454,'blocks_13_icon_row_items','4'),(297248,42454,'_blocks_13_icon_row_items','field_64bfdd9b9068c'),(297249,42454,'blocks_14_acfe_flexible_toggle',''),(297250,42454,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(297251,42454,'blocks_14_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(297252,42454,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(297253,42454,'blocks_14_options_theme','#ffffff'),(297254,42454,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(297255,42454,'blocks_14_options_reverse','0'),(297256,42454,'_blocks_14_options_reverse','field_61768049bb8ac'),(297257,42454,'blocks_14_options',''),(297258,42454,'_blocks_14_options','field_617682517c334'),(297259,42454,'blocks_14_split_5050_image','41501'),(297260,42454,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(297261,42454,'blocks_14_split_5050_video',''),(297262,42454,'_blocks_14_split_5050_video','field_6239f3160848a'),(297263,42454,'blocks_14_split_5050_content_title',''),(297264,42454,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(297265,42454,'blocks_14_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(297266,42454,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(297267,42454,'blocks_14_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(297268,42454,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(297269,42454,'blocks_14_split_5050_content_actions',''),(297270,42454,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(297271,42454,'blocks_14_split_5050_content',''),(297272,42454,'_blocks_14_split_5050_content','field_61767afceb8ba'),(297273,42454,'blocks_16_acfe_flexible_toggle',''),(297274,42454,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(297275,42454,'blocks_16_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(297276,42454,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(297277,42454,'blocks_16_options_theme','#ffffff'),(297278,42454,'_blocks_16_options_theme','field_6176830e2ad17'),(297279,42454,'blocks_16_options',''),(297280,42454,'_blocks_16_options','field_6176830e2ad16'),(297281,42454,'blocks_16_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(297282,42454,'_blocks_16_text_block_heading','field_617669d413097'),(297283,42454,'blocks_16_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(297284,42454,'_blocks_16_text_block_content','field_617669ec13098'),(297285,42455,'hide_hero','0'),(297286,42455,'_hide_hero','field_66a2380fcda39'),(297287,42455,'hero_title',''),(297288,42455,'_hero_title','field_617571fe285e8'),(297289,42455,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(297290,42455,'_hero_text','field_6175723c285e9'),(297291,42455,'hero_actions','1'),(297292,42455,'_hero_actions','field_61757270285ea'),(297293,42455,'hero_style','default'),(297294,42455,'_hero_style','field_62051d9dc5324'),(297295,42455,'hero_image_pos_x','right'),(297296,42455,'_hero_image_pos_x','field_62ec3d05390bb'),(297297,42455,'hero_image_pos_y','top'),(297298,42455,'_hero_image_pos_y','field_62ec3d05390bc'),(297299,42455,'hero_image_pos',''),(297300,42455,'_hero_image_pos','field_62ec3d05390ba'),(297301,42455,'fft_hide_from_listings','0'),(297302,42455,'_fft_hide_from_listings','field_61f1320446ab2'),(297303,42455,'post_format','402'),(297304,42455,'_post_format','field_61756bfb51898'),(297305,42455,'post_author',''),(297306,42455,'_post_author','field_62ec389d22113'),(297307,42455,'post_reviewer',''),(297308,42455,'_post_reviewer','field_627140a2a9800'),(297309,42455,'post_table_of_contents','0'),(297310,42455,'_post_table_of_contents','field_65c503bc846a6'),(297311,42455,'blocks','a:19:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"text_block\";i:13;s:5:\"icons\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:10:\"text_block\";i:17;s:10:\"text_block\";i:18;s:11:\"promo_panel\";}'),(297312,42455,'_blocks','field_6176696113096'),(297313,42455,'_thumbnail_id','41331'),(297314,42455,'__thumbnail_id','field_617570855ddaf'),(297315,42455,'blocks_0_acfe_flexible_toggle',''),(297316,42455,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(297317,42455,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(297318,42455,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(297319,42455,'blocks_0_options_theme','#ffffff'),(297320,42455,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(297321,42455,'blocks_0_options',''),(297322,42455,'_blocks_0_options','field_6177b758246ae'),(297323,42455,'blocks_0_link_stack_content_title',''),(297324,42455,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(297325,42455,'blocks_0_link_stack_content_heading','What is MSK?'),(297326,42455,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(297327,42455,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(297328,42455,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(297329,42455,'blocks_0_link_stack_content_actions_0_button',''),(297330,42455,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(297331,42455,'blocks_0_link_stack_content_actions','1'),(297332,42455,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(297333,42455,'blocks_0_link_stack_content',''),(297334,42455,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(297335,42455,'blocks_0_link_stack_0_label','1.'),(297336,42455,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(297337,42455,'blocks_0_link_stack_0_title','Overview'),(297338,42455,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(297339,42455,'blocks_0_link_stack_0_url','#overview'),(297340,42455,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(297341,42455,'blocks_0_link_stack_1_label','2.'),(297342,42455,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(297343,42455,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(297344,42455,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(297345,42455,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(297346,42455,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(297347,42455,'blocks_0_link_stack_2_label','3.'),(297348,42455,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(297349,42455,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(297350,42455,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(297351,42455,'blocks_0_link_stack_2_url','#who-should-study-msk'),(297352,42455,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(297353,42455,'blocks_0_link_stack_3_label','4.'),(297354,42455,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(297355,42455,'blocks_0_link_stack_3_title','Common MSK Conditions'),(297356,42455,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(297357,42455,'blocks_0_link_stack_3_url','#common-msk-conditions'),(297358,42455,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(297359,42455,'blocks_0_link_stack_4_label','5.'),(297360,42455,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(297361,42455,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(297362,42455,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(297363,42455,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(297364,42455,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(297365,42455,'blocks_0_link_stack_5_label','6.'),(297366,42455,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(297367,42455,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(297368,42455,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(297369,42455,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(297370,42455,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(297371,42455,'blocks_0_link_stack','6'),(297372,42455,'_blocks_0_link_stack','field_6177b7f600cff'),(297373,42455,'blocks_1_acfe_flexible_toggle',''),(297374,42455,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(297375,42455,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(297376,42455,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(297377,42455,'blocks_1_options_theme','#ffffff'),(297378,42455,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(297379,42455,'blocks_1_options_reverse','0'),(297380,42455,'_blocks_1_options_reverse','field_61768049bb8ac'),(297381,42455,'blocks_1_options',''),(297382,42455,'_blocks_1_options','field_617682517c334'),(297383,42455,'blocks_1_split_5050_image','40615'),(297384,42455,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(297385,42455,'blocks_1_split_5050_video',''),(297386,42455,'_blocks_1_split_5050_video','field_6239f3160848a'),(297387,42455,'blocks_1_split_5050_content_title',''),(297388,42455,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(297389,42455,'blocks_1_split_5050_content_heading','Overview'),(297390,42455,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(297391,42455,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(297392,42455,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(297393,42455,'blocks_1_split_5050_content_actions',''),(297394,42455,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(297395,42455,'blocks_1_split_5050_content',''),(297396,42455,'_blocks_1_split_5050_content','field_61767afceb8ba'),(297397,42455,'blocks_2_acfe_flexible_toggle',''),(297398,42455,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(297399,42455,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(297400,42455,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(297401,42455,'blocks_2_options_theme','#f5f5f5'),(297402,42455,'_blocks_2_options_theme','field_6176830e2ad17'),(297403,42455,'blocks_2_options',''),(297404,42455,'_blocks_2_options','field_6176830e2ad16'),(297405,42455,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(297406,42455,'_blocks_2_text_block_heading','field_617669d413097'),(297407,42455,'blocks_2_text_block_content',''),(297408,42455,'_blocks_2_text_block_content','field_617669ec13098'),(297409,42455,'blocks_3_acfe_flexible_toggle',''),(297410,42455,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(297411,42455,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(297412,42455,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(297413,42455,'blocks_3_options_theme','#f5f5f5'),(297414,42455,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(297415,42455,'blocks_3_options_reverse','1'),(297416,42455,'_blocks_3_options_reverse','field_61768049bb8ac'),(297417,42455,'blocks_3_options',''),(297418,42455,'_blocks_3_options','field_617682517c334'),(297419,42455,'blocks_3_split_5050_image','40618'),(297420,42455,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(297421,42455,'blocks_3_split_5050_video',''),(297422,42455,'_blocks_3_split_5050_video','field_6239f3160848a'),(297423,42455,'blocks_3_split_5050_content_title',''),(297424,42455,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(297425,42455,'blocks_3_split_5050_content_heading',''),(297426,42455,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(297427,42455,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(297428,42455,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(297429,42455,'blocks_3_split_5050_content_actions',''),(297430,42455,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(297431,42455,'blocks_3_split_5050_content',''),(297432,42455,'_blocks_3_split_5050_content','field_61767afceb8ba'),(297433,42455,'blocks_4_acfe_flexible_toggle','1'),(297434,42455,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(297435,42455,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(297436,42455,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(297437,42455,'blocks_4_options_theme','#f5f5f5'),(297438,42455,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(297439,42455,'blocks_4_options_reverse','1'),(297440,42455,'_blocks_4_options_reverse','field_61768049bb8ac'),(297441,42455,'blocks_4_options',''),(297442,42455,'_blocks_4_options','field_617682517c334'),(297443,42455,'blocks_4_split_5050_image','41330'),(297444,42455,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(297445,42455,'blocks_4_split_5050_video',''),(297446,42455,'_blocks_4_split_5050_video','field_6239f3160848a'),(297447,42455,'blocks_4_split_5050_content_title',''),(297448,42455,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(297449,42455,'blocks_4_split_5050_content_heading',''),(297450,42455,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(297451,42455,'blocks_4_split_5050_content_text',''),(297452,42455,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(297453,42455,'blocks_4_split_5050_content_actions',''),(297454,42455,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(297455,42455,'blocks_4_split_5050_content',''),(297456,42455,'_blocks_4_split_5050_content','field_61767afceb8ba'),(297457,42455,'blocks_5_acfe_flexible_toggle',''),(297458,42455,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(297459,42455,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(297460,42455,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(297461,42455,'blocks_5_options_theme','#b61234'),(297462,42455,'_blocks_5_options_theme','field_6176830e2ad17'),(297463,42455,'blocks_5_options',''),(297464,42455,'_blocks_5_options','field_6176830e2ad16'),(297465,42455,'blocks_5_text_block_heading','Who Should Study MSK?'),(297466,42455,'_blocks_5_text_block_heading','field_617669d413097'),(297467,42455,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(297468,42455,'_blocks_5_text_block_content','field_617669ec13098'),(297469,42455,'blocks_6_acfe_flexible_toggle',''),(297470,42455,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(297471,42455,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(297472,42455,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(297473,42455,'blocks_6_options_theme','#b61234'),(297474,42455,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(297475,42455,'blocks_6_options',''),(297476,42455,'_blocks_6_options','field_6177cfcd8140f'),(297477,42455,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(297478,42455,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(297479,42455,'blocks_6_tabs_0_tab_content_title',''),(297480,42455,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(297481,42455,'blocks_6_tabs_0_tab_content_heading',''),(297482,42455,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(297483,42455,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(297484,42455,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(297485,42455,'blocks_6_tabs_0_tab_content_actions',''),(297486,42455,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(297487,42455,'blocks_6_tabs_0_tab_content',''),(297488,42455,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(297489,42455,'blocks_6_tabs_0_tab_image','41542'),(297490,42455,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(297491,42455,'blocks_6_tabs_1_tab_label','Current Practitioners'),(297492,42455,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(297493,42455,'blocks_6_tabs_1_tab_content_title',''),(297494,42455,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(297495,42455,'blocks_6_tabs_1_tab_content_heading',''),(297496,42455,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(297497,42455,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(297498,42455,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(297499,42455,'blocks_6_tabs_1_tab_content_actions',''),(297500,42455,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(297501,42455,'blocks_6_tabs_1_tab_content',''),(297502,42455,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(297503,42455,'blocks_6_tabs_1_tab_image','41505'),(297504,42455,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(297505,42455,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(297506,42455,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(297507,42455,'blocks_6_tabs_2_tab_content_title',''),(297508,42455,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(297509,42455,'blocks_6_tabs_2_tab_content_heading',''),(297510,42455,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(297511,42455,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(297512,42455,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(297513,42455,'blocks_6_tabs_2_tab_content_actions',''),(297514,42455,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(297515,42455,'blocks_6_tabs_2_tab_content',''),(297516,42455,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(297517,42455,'blocks_6_tabs_2_tab_image','41539'),(297518,42455,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(297519,42455,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(297520,42455,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(297521,42455,'blocks_6_tabs_3_tab_content_title',''),(297522,42455,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(297523,42455,'blocks_6_tabs_3_tab_content_heading',''),(297524,42455,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(297525,42455,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(297526,42455,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(297527,42455,'blocks_6_tabs_3_tab_content_actions',''),(297528,42455,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(297529,42455,'blocks_6_tabs_3_tab_content',''),(297530,42455,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(297531,42455,'blocks_6_tabs_3_tab_image','41502'),(297532,42455,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(297533,42455,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(297534,42455,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(297535,42455,'blocks_6_tabs_4_tab_content_title',''),(297536,42455,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(297537,42455,'blocks_6_tabs_4_tab_content_heading',''),(297538,42455,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(297539,42455,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(297540,42455,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(297541,42455,'blocks_6_tabs_4_tab_content_actions',''),(297542,42455,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(297543,42455,'blocks_6_tabs_4_tab_content',''),(297544,42455,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(297545,42455,'blocks_6_tabs_4_tab_image','41506'),(297546,42455,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(297547,42455,'blocks_6_tabs','5'),(297548,42455,'_blocks_6_tabs','field_6177cff281419'),(297549,42455,'blocks_7_acfe_flexible_toggle',''),(297550,42455,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(297551,42455,'blocks_7_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(297552,42455,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(297553,42455,'blocks_7_options_theme','#ffffff'),(297554,42455,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(297555,42455,'blocks_7_options_state','0'),(297556,42455,'_blocks_7_options_state','field_6239fcb7508c5'),(297557,42455,'blocks_7_options',''),(297558,42455,'_blocks_7_options','field_6177e2991ac44'),(297559,42455,'blocks_7_content_title','Common MSK Conditions'),(297560,42455,'_blocks_7_content_title','field_64d237e8bb1e2'),(297561,42455,'blocks_7_content_heading','Common MSK Conditions'),(297562,42455,'_blocks_7_content_heading','field_64d237e8bb1e3'),(297563,42455,'blocks_7_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(297564,42455,'_blocks_7_content_text','field_64d237e8bb1e4'),(297565,42455,'blocks_7_content_actions',''),(297566,42455,'_blocks_7_content_actions','field_64d237e8bb1e5'),(297567,42455,'blocks_7_content_align','left'),(297568,42455,'_blocks_7_content_align','field_64d2443e6b6aa'),(297569,42455,'blocks_7_content',''),(297570,42455,'_blocks_7_content','field_64d237e8bb1e1'),(297571,42455,'blocks_7_accordion_content','custom'),(297572,42455,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(297573,42455,'blocks_7_accordion_items_0_title','Osteoarthritis'),(297574,42455,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(297575,42455,'blocks_7_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(297576,42455,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(297577,42455,'blocks_7_accordion_items_1_title','Rheumatoid Arthritis'),(297578,42455,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(297579,42455,'blocks_7_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(297580,42455,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(297581,42455,'blocks_7_accordion_items_2_title','Back Pain'),(297582,42455,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(297583,42455,'blocks_7_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(297584,42455,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(297585,42455,'blocks_7_accordion_items_3_title','Osteoporosis'),(297586,42455,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(297587,42455,'blocks_7_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(297588,42455,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(297589,42455,'blocks_7_accordion_items_4_title','Tendinitis'),(297590,42455,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(297591,42455,'blocks_7_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(297592,42455,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(297593,42455,'blocks_7_accordion_items_5_title','Carpal Tunnel Syndrome'),(297594,42455,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(297595,42455,'blocks_7_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(297596,42455,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(297597,42455,'blocks_7_accordion_items_6_title','Fibromyalgia'),(297598,42455,'_blocks_7_accordion_items_6_title','field_6177e2991ac4d'),(297599,42455,'blocks_7_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(297600,42455,'_blocks_7_accordion_items_6_text','field_6177e2991ac4e'),(297601,42455,'blocks_7_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(297602,42455,'_blocks_7_accordion_items_7_title','field_6177e2991ac4d'),(297603,42455,'blocks_7_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(297604,42455,'_blocks_7_accordion_items_7_text','field_6177e2991ac4e'),(297605,42455,'blocks_7_accordion_items','8'),(297606,42455,'_blocks_7_accordion_items','field_6177e2991ac4c'),(297607,42455,'blocks_7_actions',''),(297608,42455,'_blocks_7_actions','field_61a746a817f7a'),(297609,42455,'blocks_8_acfe_flexible_toggle',''),(297610,42455,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(297611,42455,'blocks_8_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(297612,42455,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(297613,42455,'blocks_8_options_theme','#f5f5f5'),(297614,42455,'_blocks_8_options_theme','field_6176830e2ad17'),(297615,42455,'blocks_8_options',''),(297616,42455,'_blocks_8_options','field_6176830e2ad16'),(297617,42455,'blocks_8_text_block_heading','The Importance of MSK Education'),(297618,42455,'_blocks_8_text_block_heading','field_617669d413097'),(297619,42455,'blocks_8_text_block_content',''),(297620,42455,'_blocks_8_text_block_content','field_617669ec13098'),(297621,42455,'blocks_9_acfe_flexible_toggle',''),(297622,42455,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(297623,42455,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(297624,42455,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(297625,42455,'blocks_9_options_theme','#f5f5f5'),(297626,42455,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(297627,42455,'blocks_9_options_reverse','1'),(297628,42455,'_blocks_9_options_reverse','field_61768049bb8ac'),(297629,42455,'blocks_9_options',''),(297630,42455,'_blocks_9_options','field_617682517c334'),(297631,42455,'blocks_9_split_5050_image','41498'),(297632,42455,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(297633,42455,'blocks_9_split_5050_video',''),(297634,42455,'_blocks_9_split_5050_video','field_6239f3160848a'),(297635,42455,'blocks_9_split_5050_content_title',''),(297636,42455,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(297637,42455,'blocks_9_split_5050_content_heading',''),(297638,42455,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(297639,42455,'blocks_9_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(297640,42455,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(297641,42455,'blocks_9_split_5050_content_actions',''),(297642,42455,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(297643,42455,'blocks_9_split_5050_content',''),(297644,42455,'_blocks_9_split_5050_content','field_61767afceb8ba'),(297645,42455,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(297646,42455,'_hero_actions_0_button','field_61757281285eb'),(297647,42455,'blocks_10_acfe_flexible_toggle',''),(297648,42455,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(297649,42455,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(297650,42455,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(297651,42455,'blocks_10_options_theme','#f5f5f5'),(297652,42455,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(297653,42455,'blocks_10_options_reverse','1'),(297654,42455,'_blocks_10_options_reverse','field_61768049bb8ac'),(297655,42455,'blocks_10_options',''),(297656,42455,'_blocks_10_options','field_617682517c334'),(297657,42455,'blocks_10_split_5050_image','40387'),(297658,42455,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(297659,42455,'blocks_10_split_5050_video',''),(297660,42455,'_blocks_10_split_5050_video','field_6239f3160848a'),(297661,42455,'blocks_10_split_5050_content_title',''),(297662,42455,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(297663,42455,'blocks_10_split_5050_content_heading',''),(297664,42455,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(297665,42455,'blocks_10_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(297666,42455,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(297667,42455,'blocks_10_split_5050_content_actions',''),(297668,42455,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(297669,42455,'blocks_10_split_5050_content',''),(297670,42455,'_blocks_10_split_5050_content','field_61767afceb8ba'),(297671,42455,'blocks_11_acfe_flexible_toggle',''),(297672,42455,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(297673,42455,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(297674,42455,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(297675,42455,'blocks_11_options_theme','#f5f5f5'),(297676,42455,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(297677,42455,'blocks_11_options_reverse','1'),(297678,42455,'_blocks_11_options_reverse','field_61768049bb8ac'),(297679,42455,'blocks_11_options',''),(297680,42455,'_blocks_11_options','field_617682517c334'),(297681,42455,'blocks_11_split_5050_image','18856'),(297682,42455,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(297683,42455,'blocks_11_split_5050_video',''),(297684,42455,'_blocks_11_split_5050_video','field_6239f3160848a'),(297685,42455,'blocks_11_split_5050_content_title',''),(297686,42455,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(297687,42455,'blocks_11_split_5050_content_heading',''),(297688,42455,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(297689,42455,'blocks_11_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(297690,42455,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(297691,42455,'blocks_11_split_5050_content_actions',''),(297692,42455,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(297693,42455,'blocks_11_split_5050_content',''),(297694,42455,'_blocks_11_split_5050_content','field_61767afceb8ba'),(297695,42455,'blocks_15_acfe_flexible_toggle',''),(297696,42455,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(297697,42455,'blocks_15_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(297698,42455,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(297699,42455,'blocks_15_options_theme','#ffffff'),(297700,42455,'_blocks_15_options_theme','field_6176830e2ad17'),(297701,42455,'blocks_15_options',''),(297702,42455,'_blocks_15_options','field_6176830e2ad16'),(297703,42455,'blocks_15_text_block_heading','The Role of MSK Education in Workplace Health'),(297704,42455,'_blocks_15_text_block_heading','field_617669d413097'),(297705,42455,'blocks_15_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(297706,42455,'_blocks_15_text_block_content','field_617669ec13098'),(297707,42455,'blocks_17_acfe_flexible_toggle',''),(297708,42455,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(297709,42455,'blocks_17_acfe_flexible_layout_title','Conclusion'),(297710,42455,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(297711,42455,'blocks_17_options_theme','#f5f5f5'),(297712,42455,'_blocks_17_options_theme','field_6176830e2ad17'),(297713,42455,'blocks_17_options',''),(297714,42455,'_blocks_17_options','field_6176830e2ad16'),(297715,42455,'blocks_17_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(297716,42455,'_blocks_17_text_block_heading','field_617669d413097'),(297717,42455,'blocks_17_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(297718,42455,'_blocks_17_text_block_content','field_617669ec13098'),(297719,42455,'blocks_18_acfe_flexible_toggle',''),(297720,42455,'_blocks_18_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(297721,42455,'blocks_18_acfe_flexible_layout_title','Promo Panel'),(297722,42455,'_blocks_18_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(297723,42455,'blocks_18_options_alignment','center'),(297724,42455,'_blocks_18_options_alignment','field_61769449f5490'),(297725,42455,'blocks_18_options',''),(297726,42455,'_blocks_18_options','field_617693e1428f0'),(297727,42455,'blocks_18_promo_panel_image','40342'),(297728,42455,'_blocks_18_promo_panel_image','field_617693e1428f3'),(297729,42455,'blocks_18_promo_panel_content_heading','Want to Get Started?'),(297730,42455,'_blocks_18_promo_panel_content_heading','field_617693e1428f6'),(297731,42455,'blocks_18_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(297732,42455,'_blocks_18_promo_panel_content_text','field_617693e1428f7'),(297733,42455,'blocks_18_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(297734,42455,'_blocks_18_promo_panel_content_actions_0_button','field_617693e1428f9'),(297735,42455,'blocks_18_promo_panel_content_actions','1'),(297736,42455,'_blocks_18_promo_panel_content_actions','field_617693e1428f8'),(297737,42455,'blocks_18_promo_panel_content',''),(297738,42455,'_blocks_18_promo_panel_content','field_617693e1428f4'),(297739,42455,'blocks_12_acfe_flexible_toggle',''),(297740,42455,'_blocks_12_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(297741,42455,'blocks_12_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(297742,42455,'_blocks_12_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(297743,42455,'blocks_12_options_theme','#b61234'),(297744,42455,'_blocks_12_options_theme','field_6176830e2ad17'),(297745,42455,'blocks_12_options',''),(297746,42455,'_blocks_12_options','field_6176830e2ad16'),(297747,42455,'blocks_12_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(297748,42455,'_blocks_12_text_block_heading','field_617669d413097'),(297749,42455,'blocks_12_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(297750,42455,'_blocks_12_text_block_content','field_617669ec13098'),(297751,42455,'blocks_13_acfe_flexible_toggle',''),(297752,42455,'_blocks_13_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(297753,42455,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(297754,42455,'_blocks_13_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(297755,42455,'blocks_13_options_theme','#b61234'),(297756,42455,'_blocks_13_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(297757,42455,'blocks_13_options_format','row'),(297758,42455,'_blocks_13_options_format','field_64bfde9a90690'),(297759,42455,'blocks_13_options',''),(297760,42455,'_blocks_13_options','field_64bfdd9b90684'),(297761,42455,'blocks_13_icon_row_items_0_icon','pass-rate.svg'),(297762,42455,'_blocks_13_icon_row_items_0_icon','field_64bfdd9b9068d'),(297763,42455,'blocks_13_icon_row_items_0_label','More Accurate Assessments'),(297764,42455,'_blocks_13_icon_row_items_0_label','field_64bfdd9c9068e'),(297765,42455,'blocks_13_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(297766,42455,'_blocks_13_icon_row_items_0_text','field_64bfdd9c9068f'),(297767,42455,'blocks_13_icon_row_items_1_icon','exceptional-support.svg'),(297768,42455,'_blocks_13_icon_row_items_1_icon','field_64bfdd9b9068d'),(297769,42455,'blocks_13_icon_row_items_1_label','Personalised Movement Strategies'),(297770,42455,'_blocks_13_icon_row_items_1_label','field_64bfdd9c9068e'),(297771,42455,'blocks_13_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(297772,42455,'_blocks_13_icon_row_items_1_text','field_64bfdd9c9068f'),(297773,42455,'blocks_13_icon_row_items_2_icon','lifetime-course-access.svg'),(297774,42455,'_blocks_13_icon_row_items_2_icon','field_64bfdd9b9068d'),(297775,42455,'blocks_13_icon_row_items_2_label','Injury Prevention and Longevity'),(297776,42455,'_blocks_13_icon_row_items_2_label','field_64bfdd9c9068e'),(297777,42455,'blocks_13_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(297778,42455,'_blocks_13_icon_row_items_2_text','field_64bfdd9c9068f'),(297779,42455,'blocks_13_icon_row_items_3_icon','recognised.svg'),(297780,42455,'_blocks_13_icon_row_items_3_icon','field_64bfdd9b9068d'),(297781,42455,'blocks_13_icon_row_items_3_label','Optimised Performance'),(297782,42455,'_blocks_13_icon_row_items_3_label','field_64bfdd9c9068e'),(297783,42455,'blocks_13_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(297784,42455,'_blocks_13_icon_row_items_3_text','field_64bfdd9c9068f'),(297785,42455,'blocks_13_icon_row_items','4'),(297786,42455,'_blocks_13_icon_row_items','field_64bfdd9b9068c'),(297787,42455,'blocks_14_acfe_flexible_toggle',''),(297788,42455,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(297789,42455,'blocks_14_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(297790,42455,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(297791,42455,'blocks_14_options_theme','#ffffff'),(297792,42455,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(297793,42455,'blocks_14_options_reverse','0'),(297794,42455,'_blocks_14_options_reverse','field_61768049bb8ac'),(297795,42455,'blocks_14_options',''),(297796,42455,'_blocks_14_options','field_617682517c334'),(297797,42455,'blocks_14_split_5050_image','41501'),(297798,42455,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(297799,42455,'blocks_14_split_5050_video',''),(297800,42455,'_blocks_14_split_5050_video','field_6239f3160848a'),(297801,42455,'blocks_14_split_5050_content_title',''),(297802,42455,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(297803,42455,'blocks_14_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(297804,42455,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(297805,42455,'blocks_14_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(297806,42455,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(297807,42455,'blocks_14_split_5050_content_actions',''),(297808,42455,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(297809,42455,'blocks_14_split_5050_content',''),(297810,42455,'_blocks_14_split_5050_content','field_61767afceb8ba'),(297811,42455,'blocks_16_acfe_flexible_toggle',''),(297812,42455,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(297813,42455,'blocks_16_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(297814,42455,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(297815,42455,'blocks_16_options_theme','#ffffff'),(297816,42455,'_blocks_16_options_theme','field_6176830e2ad17'),(297817,42455,'blocks_16_options',''),(297818,42455,'_blocks_16_options','field_6176830e2ad16'),(297819,42455,'blocks_16_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(297820,42455,'_blocks_16_text_block_heading','field_617669d413097'),(297821,42455,'blocks_16_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(297822,42455,'_blocks_16_text_block_content','field_617669ec13098'),(298075,42456,'hide_hero','0'),(298076,42456,'_hide_hero','field_66a2380fcda39'),(298077,42456,'hero_title',''),(298078,42456,'_hero_title','field_617571fe285e8'),(298079,42456,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(298080,42456,'_hero_text','field_6175723c285e9'),(298081,42456,'hero_actions','1'),(298082,42456,'_hero_actions','field_61757270285ea'),(298083,42456,'hero_style','default'),(298084,42456,'_hero_style','field_62051d9dc5324'),(298085,42456,'hero_image_pos_x','right'),(298086,42456,'_hero_image_pos_x','field_62ec3d05390bb'),(298087,42456,'hero_image_pos_y','top'),(298088,42456,'_hero_image_pos_y','field_62ec3d05390bc'),(298089,42456,'hero_image_pos',''),(298090,42456,'_hero_image_pos','field_62ec3d05390ba'),(298091,42456,'fft_hide_from_listings','0'),(298092,42456,'_fft_hide_from_listings','field_61f1320446ab2'),(298093,42456,'post_format','402'),(298094,42456,'_post_format','field_61756bfb51898'),(298095,42456,'post_author',''),(298096,42456,'_post_author','field_62ec389d22113'),(298097,42456,'post_reviewer',''),(298098,42456,'_post_reviewer','field_627140a2a9800'),(298099,42456,'post_table_of_contents','0'),(298100,42456,'_post_table_of_contents','field_65c503bc846a6'),(298101,42456,'blocks','a:20:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:5:\"cards\";i:8;s:10:\"accordions\";i:9;s:10:\"text_block\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:5:\"icons\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:11:\"promo_panel\";}'),(298102,42456,'_blocks','field_6176696113096'),(298103,42456,'_thumbnail_id','41331'),(298104,42456,'__thumbnail_id','field_617570855ddaf'),(298105,42456,'blocks_0_acfe_flexible_toggle',''),(298106,42456,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(298107,42456,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(298108,42456,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(298109,42456,'blocks_0_options_theme','#ffffff'),(298110,42456,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(298111,42456,'blocks_0_options',''),(298112,42456,'_blocks_0_options','field_6177b758246ae'),(298113,42456,'blocks_0_link_stack_content_title',''),(298114,42456,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(298115,42456,'blocks_0_link_stack_content_heading','What is MSK?'),(298116,42456,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(298117,42456,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(298118,42456,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(298119,42456,'blocks_0_link_stack_content_actions_0_button',''),(298120,42456,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(298121,42456,'blocks_0_link_stack_content_actions','1'),(298122,42456,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(298123,42456,'blocks_0_link_stack_content',''),(298124,42456,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(298125,42456,'blocks_0_link_stack_0_label','1.'),(298126,42456,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(298127,42456,'blocks_0_link_stack_0_title','Overview'),(298128,42456,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(298129,42456,'blocks_0_link_stack_0_url','#overview'),(298130,42456,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(298131,42456,'blocks_0_link_stack_1_label','2.'),(298132,42456,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(298133,42456,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(298134,42456,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(298135,42456,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(298136,42456,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(298137,42456,'blocks_0_link_stack_2_label','3.'),(298138,42456,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(298139,42456,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(298140,42456,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(298141,42456,'blocks_0_link_stack_2_url','#who-should-study-msk'),(298142,42456,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(298143,42456,'blocks_0_link_stack_3_label','4.'),(298144,42456,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(298145,42456,'blocks_0_link_stack_3_title','Common MSK Conditions'),(298146,42456,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(298147,42456,'blocks_0_link_stack_3_url','#common-msk-conditions'),(298148,42456,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(298149,42456,'blocks_0_link_stack_4_label','5.'),(298150,42456,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(298151,42456,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(298152,42456,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(298153,42456,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(298154,42456,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(298155,42456,'blocks_0_link_stack_5_label','6.'),(298156,42456,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(298157,42456,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(298158,42456,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(298159,42456,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(298160,42456,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(298161,42456,'blocks_0_link_stack','6'),(298162,42456,'_blocks_0_link_stack','field_6177b7f600cff'),(298163,42456,'blocks_1_acfe_flexible_toggle',''),(298164,42456,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(298165,42456,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(298166,42456,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(298167,42456,'blocks_1_options_theme','#ffffff'),(298168,42456,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(298169,42456,'blocks_1_options_reverse','0'),(298170,42456,'_blocks_1_options_reverse','field_61768049bb8ac'),(298171,42456,'blocks_1_options',''),(298172,42456,'_blocks_1_options','field_617682517c334'),(298173,42456,'blocks_1_split_5050_image','40615'),(298174,42456,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(298175,42456,'blocks_1_split_5050_video',''),(298176,42456,'_blocks_1_split_5050_video','field_6239f3160848a'),(298177,42456,'blocks_1_split_5050_content_title',''),(298178,42456,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(298179,42456,'blocks_1_split_5050_content_heading','Overview'),(298180,42456,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(298181,42456,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(298182,42456,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(298183,42456,'blocks_1_split_5050_content_actions',''),(298184,42456,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(298185,42456,'blocks_1_split_5050_content',''),(298186,42456,'_blocks_1_split_5050_content','field_61767afceb8ba'),(298187,42456,'blocks_2_acfe_flexible_toggle',''),(298188,42456,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(298189,42456,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(298190,42456,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(298191,42456,'blocks_2_options_theme','#f5f5f5'),(298192,42456,'_blocks_2_options_theme','field_6176830e2ad17'),(298193,42456,'blocks_2_options',''),(298194,42456,'_blocks_2_options','field_6176830e2ad16'),(298195,42456,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(298196,42456,'_blocks_2_text_block_heading','field_617669d413097'),(298197,42456,'blocks_2_text_block_content',''),(298198,42456,'_blocks_2_text_block_content','field_617669ec13098'),(298199,42456,'blocks_3_acfe_flexible_toggle',''),(298200,42456,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(298201,42456,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(298202,42456,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(298203,42456,'blocks_3_options_theme','#f5f5f5'),(298204,42456,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(298205,42456,'blocks_3_options_reverse','1'),(298206,42456,'_blocks_3_options_reverse','field_61768049bb8ac'),(298207,42456,'blocks_3_options',''),(298208,42456,'_blocks_3_options','field_617682517c334'),(298209,42456,'blocks_3_split_5050_image','40618'),(298210,42456,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(298211,42456,'blocks_3_split_5050_video',''),(298212,42456,'_blocks_3_split_5050_video','field_6239f3160848a'),(298213,42456,'blocks_3_split_5050_content_title',''),(298214,42456,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(298215,42456,'blocks_3_split_5050_content_heading',''),(298216,42456,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(298217,42456,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(298218,42456,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(298219,42456,'blocks_3_split_5050_content_actions',''),(298220,42456,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(298221,42456,'blocks_3_split_5050_content',''),(298222,42456,'_blocks_3_split_5050_content','field_61767afceb8ba'),(298223,42456,'blocks_4_acfe_flexible_toggle','1'),(298224,42456,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(298225,42456,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(298226,42456,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(298227,42456,'blocks_4_options_theme','#f5f5f5'),(298228,42456,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(298229,42456,'blocks_4_options_reverse','1'),(298230,42456,'_blocks_4_options_reverse','field_61768049bb8ac'),(298231,42456,'blocks_4_options',''),(298232,42456,'_blocks_4_options','field_617682517c334'),(298233,42456,'blocks_4_split_5050_image','41330'),(298234,42456,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(298235,42456,'blocks_4_split_5050_video',''),(298236,42456,'_blocks_4_split_5050_video','field_6239f3160848a'),(298237,42456,'blocks_4_split_5050_content_title',''),(298238,42456,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(298239,42456,'blocks_4_split_5050_content_heading',''),(298240,42456,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(298241,42456,'blocks_4_split_5050_content_text',''),(298242,42456,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(298243,42456,'blocks_4_split_5050_content_actions',''),(298244,42456,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(298245,42456,'blocks_4_split_5050_content',''),(298246,42456,'_blocks_4_split_5050_content','field_61767afceb8ba'),(298247,42456,'blocks_5_acfe_flexible_toggle',''),(298248,42456,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(298249,42456,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(298250,42456,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(298251,42456,'blocks_5_options_theme','#b61234'),(298252,42456,'_blocks_5_options_theme','field_6176830e2ad17'),(298253,42456,'blocks_5_options',''),(298254,42456,'_blocks_5_options','field_6176830e2ad16'),(298255,42456,'blocks_5_text_block_heading','Who Should Study MSK?'),(298256,42456,'_blocks_5_text_block_heading','field_617669d413097'),(298257,42456,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(298258,42456,'_blocks_5_text_block_content','field_617669ec13098'),(298259,42456,'blocks_6_acfe_flexible_toggle',''),(298260,42456,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(298261,42456,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(298262,42456,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(298263,42456,'blocks_6_options_theme','#b61234'),(298264,42456,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(298265,42456,'blocks_6_options',''),(298266,42456,'_blocks_6_options','field_6177cfcd8140f'),(298267,42456,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(298268,42456,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(298269,42456,'blocks_6_tabs_0_tab_content_title',''),(298270,42456,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(298271,42456,'blocks_6_tabs_0_tab_content_heading',''),(298272,42456,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(298273,42456,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(298274,42456,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(298275,42456,'blocks_6_tabs_0_tab_content_actions',''),(298276,42456,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(298277,42456,'blocks_6_tabs_0_tab_content',''),(298278,42456,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(298279,42456,'blocks_6_tabs_0_tab_image','41542'),(298280,42456,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(298281,42456,'blocks_6_tabs_1_tab_label','Current Practitioners'),(298282,42456,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(298283,42456,'blocks_6_tabs_1_tab_content_title',''),(298284,42456,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(298285,42456,'blocks_6_tabs_1_tab_content_heading',''),(298286,42456,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(298287,42456,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(298288,42456,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(298289,42456,'blocks_6_tabs_1_tab_content_actions',''),(298290,42456,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(298291,42456,'blocks_6_tabs_1_tab_content',''),(298292,42456,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(298293,42456,'blocks_6_tabs_1_tab_image','41505'),(298294,42456,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(298295,42456,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(298296,42456,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(298297,42456,'blocks_6_tabs_2_tab_content_title',''),(298298,42456,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(298299,42456,'blocks_6_tabs_2_tab_content_heading',''),(298300,42456,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(298301,42456,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(298302,42456,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(298303,42456,'blocks_6_tabs_2_tab_content_actions',''),(298304,42456,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(298305,42456,'blocks_6_tabs_2_tab_content',''),(298306,42456,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(298307,42456,'blocks_6_tabs_2_tab_image','41539'),(298308,42456,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(298309,42456,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(298310,42456,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(298311,42456,'blocks_6_tabs_3_tab_content_title',''),(298312,42456,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(298313,42456,'blocks_6_tabs_3_tab_content_heading',''),(298314,42456,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(298315,42456,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(298316,42456,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(298317,42456,'blocks_6_tabs_3_tab_content_actions',''),(298318,42456,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(298319,42456,'blocks_6_tabs_3_tab_content',''),(298320,42456,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(298321,42456,'blocks_6_tabs_3_tab_image','41502'),(298322,42456,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(298323,42456,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(298324,42456,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(298325,42456,'blocks_6_tabs_4_tab_content_title',''),(298326,42456,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(298327,42456,'blocks_6_tabs_4_tab_content_heading',''),(298328,42456,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(298329,42456,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(298330,42456,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(298331,42456,'blocks_6_tabs_4_tab_content_actions',''),(298332,42456,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(298333,42456,'blocks_6_tabs_4_tab_content',''),(298334,42456,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(298335,42456,'blocks_6_tabs_4_tab_image','41506'),(298336,42456,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(298337,42456,'blocks_6_tabs','5'),(298338,42456,'_blocks_6_tabs','field_6177cff281419'),(298339,42456,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(298340,42456,'_hero_actions_0_button','field_61757281285eb'),(298341,42456,'blocks_10_acfe_flexible_toggle',''),(298342,42456,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(298343,42456,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(298344,42456,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(298345,42456,'blocks_10_options_theme','#f5f5f5'),(298346,42456,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(298347,42456,'blocks_10_options_reverse','1'),(298348,42456,'_blocks_10_options_reverse','field_61768049bb8ac'),(298349,42456,'blocks_10_options',''),(298350,42456,'_blocks_10_options','field_617682517c334'),(298351,42456,'blocks_10_split_5050_image','41498'),(298352,42456,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(298353,42456,'blocks_10_split_5050_video',''),(298354,42456,'_blocks_10_split_5050_video','field_6239f3160848a'),(298355,42456,'blocks_10_split_5050_content_title',''),(298356,42456,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(298357,42456,'blocks_10_split_5050_content_heading',''),(298358,42456,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(298359,42456,'blocks_10_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(298360,42456,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(298361,42456,'blocks_10_split_5050_content_actions',''),(298362,42456,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(298363,42456,'blocks_10_split_5050_content',''),(298364,42456,'_blocks_10_split_5050_content','field_61767afceb8ba'),(298365,42456,'blocks_11_acfe_flexible_toggle',''),(298366,42456,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(298367,42456,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(298368,42456,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(298369,42456,'blocks_11_options_theme','#f5f5f5'),(298370,42456,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(298371,42456,'blocks_11_options_reverse','1'),(298372,42456,'_blocks_11_options_reverse','field_61768049bb8ac'),(298373,42456,'blocks_11_options',''),(298374,42456,'_blocks_11_options','field_617682517c334'),(298375,42456,'blocks_11_split_5050_image','40387'),(298376,42456,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(298377,42456,'blocks_11_split_5050_video',''),(298378,42456,'_blocks_11_split_5050_video','field_6239f3160848a'),(298379,42456,'blocks_11_split_5050_content_title',''),(298380,42456,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(298381,42456,'blocks_11_split_5050_content_heading',''),(298382,42456,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(298383,42456,'blocks_11_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(298384,42456,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(298385,42456,'blocks_11_split_5050_content_actions',''),(298386,42456,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(298387,42456,'blocks_11_split_5050_content',''),(298388,42456,'_blocks_11_split_5050_content','field_61767afceb8ba'),(298389,42456,'blocks_17_acfe_flexible_toggle',''),(298390,42456,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(298391,42456,'blocks_17_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(298392,42456,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(298393,42456,'blocks_17_options_theme','#ffffff'),(298394,42456,'_blocks_17_options_theme','field_6176830e2ad17'),(298395,42456,'blocks_17_options',''),(298396,42456,'_blocks_17_options','field_6176830e2ad16'),(298397,42456,'blocks_17_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(298398,42456,'_blocks_17_text_block_heading','field_617669d413097'),(298399,42456,'blocks_17_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(298400,42456,'_blocks_17_text_block_content','field_617669ec13098'),(298401,42456,'blocks_16_acfe_flexible_toggle',''),(298402,42456,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(298403,42456,'blocks_16_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(298404,42456,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(298405,42456,'blocks_16_options_theme','#ffffff'),(298406,42456,'_blocks_16_options_theme','field_6176830e2ad17'),(298407,42456,'blocks_16_options',''),(298408,42456,'_blocks_16_options','field_6176830e2ad16'),(298409,42456,'blocks_16_text_block_heading','The Role of MSK Education in Workplace Health'),(298410,42456,'_blocks_16_text_block_heading','field_617669d413097'),(298411,42456,'blocks_16_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(298412,42456,'_blocks_16_text_block_content','field_617669ec13098'),(298413,42456,'blocks_7_acfe_flexible_toggle',''),(298414,42456,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(298415,42456,'blocks_7_acfe_flexible_layout_title','Cards'),(298416,42456,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(298417,42456,'blocks_7_options_theme','#ffffff'),(298418,42456,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(298419,42456,'blocks_7_options_format','stack'),(298420,42456,'_blocks_7_options_format','field_617a7b15245b5'),(298421,42456,'blocks_7_options_style','default'),(298422,42456,'_blocks_7_options_style','field_6278ffb63484a'),(298423,42456,'blocks_7_options_cards_current_listing','0'),(298424,42456,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(298425,42456,'blocks_7_options_cards_content','custom'),(298426,42456,'_blocks_7_options_cards_content','field_617aba6122688'),(298427,42456,'blocks_7_options',''),(298428,42456,'_blocks_7_options','field_617a7b15245b3'),(298429,42456,'blocks_7_cards_custom_0_image','41542'),(298430,42456,'_blocks_7_cards_custom_0_image','field_6194cc284d387'),(298431,42456,'blocks_7_cards_custom_0_title','First Thing'),(298432,42456,'_blocks_7_cards_custom_0_title','field_6194cc454d388'),(298433,42456,'blocks_7_cards_custom_0_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(298434,42456,'_blocks_7_cards_custom_0_text','field_6194cc4a4d389'),(298435,42456,'blocks_7_cards_custom_0_link',''),(298436,42456,'_blocks_7_cards_custom_0_link','field_6194cc534d38a'),(298437,42456,'blocks_7_cards_custom_1_image','41543'),(298438,42456,'_blocks_7_cards_custom_1_image','field_6194cc284d387'),(298439,42456,'blocks_7_cards_custom_1_title','Second thing'),(298440,42456,'_blocks_7_cards_custom_1_title','field_6194cc454d388'),(298441,42456,'blocks_7_cards_custom_1_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(298442,42456,'_blocks_7_cards_custom_1_text','field_6194cc4a4d389'),(298443,42456,'blocks_7_cards_custom_1_link',''),(298444,42456,'_blocks_7_cards_custom_1_link','field_6194cc534d38a'),(298445,42456,'blocks_7_cards_custom_2_image','41543'),(298446,42456,'_blocks_7_cards_custom_2_image','field_6194cc284d387'),(298447,42456,'blocks_7_cards_custom_2_title','Ergonomists and Occupational Health Specialists'),(298448,42456,'_blocks_7_cards_custom_2_title','field_6194cc454d388'),(298449,42456,'blocks_7_cards_custom_2_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(298450,42456,'_blocks_7_cards_custom_2_text','field_6194cc4a4d389'),(298451,42456,'blocks_7_cards_custom_2_link',''),(298452,42456,'_blocks_7_cards_custom_2_link','field_6194cc534d38a'),(298453,42456,'blocks_7_cards_custom','3'),(298454,42456,'_blocks_7_cards_custom','field_6194cbf84d386'),(298455,42456,'blocks_7_cards_row_content_title',''),(298456,42456,'_blocks_7_cards_row_content_title','field_6194fc1bc99fd'),(298457,42456,'blocks_7_cards_row_content_heading',''),(298458,42456,'_blocks_7_cards_row_content_heading','field_6194fc1bc99fe'),(298459,42456,'blocks_7_cards_row_content_text',''),(298460,42456,'_blocks_7_cards_row_content_text','field_6194fc1bc99ff'),(298461,42456,'blocks_7_cards_row_content_actions',''),(298462,42456,'_blocks_7_cards_row_content_actions','field_6194fc1bc9a00'),(298463,42456,'blocks_7_cards_row_content',''),(298464,42456,'_blocks_7_cards_row_content','field_6194fc1bc99fc'),(298465,42456,'blocks_8_acfe_flexible_toggle',''),(298466,42456,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(298467,42456,'blocks_8_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(298468,42456,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(298469,42456,'blocks_8_options_theme','#ffffff'),(298470,42456,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(298471,42456,'blocks_8_options_state','0'),(298472,42456,'_blocks_8_options_state','field_6239fcb7508c5'),(298473,42456,'blocks_8_options',''),(298474,42456,'_blocks_8_options','field_6177e2991ac44'),(298475,42456,'blocks_8_content_title','Common MSK Conditions'),(298476,42456,'_blocks_8_content_title','field_64d237e8bb1e2'),(298477,42456,'blocks_8_content_heading','Common MSK Conditions'),(298478,42456,'_blocks_8_content_heading','field_64d237e8bb1e3'),(298479,42456,'blocks_8_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(298480,42456,'_blocks_8_content_text','field_64d237e8bb1e4'),(298481,42456,'blocks_8_content_actions',''),(298482,42456,'_blocks_8_content_actions','field_64d237e8bb1e5'),(298483,42456,'blocks_8_content_align','left'),(298484,42456,'_blocks_8_content_align','field_64d2443e6b6aa'),(298485,42456,'blocks_8_content',''),(298486,42456,'_blocks_8_content','field_64d237e8bb1e1'),(298487,42456,'blocks_8_accordion_content','custom'),(298488,42456,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(298489,42456,'blocks_8_accordion_items_0_title','Osteoarthritis'),(298490,42456,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(298491,42456,'blocks_8_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(298492,42456,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(298493,42456,'blocks_8_accordion_items_1_title','Rheumatoid Arthritis'),(298494,42456,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(298495,42456,'blocks_8_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(298496,42456,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(298497,42456,'blocks_8_accordion_items_2_title','Back Pain'),(298498,42456,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(298499,42456,'blocks_8_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(298500,42456,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(298501,42456,'blocks_8_accordion_items_3_title','Osteoporosis'),(298502,42456,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(298503,42456,'blocks_8_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(298504,42456,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(298505,42456,'blocks_8_accordion_items_4_title','Tendinitis'),(298506,42456,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(298507,42456,'blocks_8_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(298508,42456,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(298509,42456,'blocks_8_accordion_items_5_title','Carpal Tunnel Syndrome'),(298510,42456,'_blocks_8_accordion_items_5_title','field_6177e2991ac4d'),(298511,42456,'blocks_8_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(298512,42456,'_blocks_8_accordion_items_5_text','field_6177e2991ac4e'),(298513,42456,'blocks_8_accordion_items_6_title','Fibromyalgia'),(298514,42456,'_blocks_8_accordion_items_6_title','field_6177e2991ac4d'),(298515,42456,'blocks_8_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(298516,42456,'_blocks_8_accordion_items_6_text','field_6177e2991ac4e'),(298517,42456,'blocks_8_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(298518,42456,'_blocks_8_accordion_items_7_title','field_6177e2991ac4d'),(298519,42456,'blocks_8_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(298520,42456,'_blocks_8_accordion_items_7_text','field_6177e2991ac4e'),(298521,42456,'blocks_8_accordion_items','8'),(298522,42456,'_blocks_8_accordion_items','field_6177e2991ac4c'),(298523,42456,'blocks_8_actions',''),(298524,42456,'_blocks_8_actions','field_61a746a817f7a'),(298525,42456,'blocks_9_acfe_flexible_toggle',''),(298526,42456,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(298527,42456,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(298528,42456,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(298529,42456,'blocks_9_options_theme','#f5f5f5'),(298530,42456,'_blocks_9_options_theme','field_6176830e2ad17'),(298531,42456,'blocks_9_options',''),(298532,42456,'_blocks_9_options','field_6176830e2ad16'),(298533,42456,'blocks_9_text_block_heading','The Importance of MSK Education'),(298534,42456,'_blocks_9_text_block_heading','field_617669d413097'),(298535,42456,'blocks_9_text_block_content',''),(298536,42456,'_blocks_9_text_block_content','field_617669ec13098'),(298537,42456,'blocks_12_acfe_flexible_toggle',''),(298538,42456,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(298539,42456,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(298540,42456,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(298541,42456,'blocks_12_options_theme','#f5f5f5'),(298542,42456,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(298543,42456,'blocks_12_options_reverse','1'),(298544,42456,'_blocks_12_options_reverse','field_61768049bb8ac'),(298545,42456,'blocks_12_options',''),(298546,42456,'_blocks_12_options','field_617682517c334'),(298547,42456,'blocks_12_split_5050_image','18856'),(298548,42456,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(298549,42456,'blocks_12_split_5050_video',''),(298550,42456,'_blocks_12_split_5050_video','field_6239f3160848a'),(298551,42456,'blocks_12_split_5050_content_title',''),(298552,42456,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(298553,42456,'blocks_12_split_5050_content_heading',''),(298554,42456,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(298555,42456,'blocks_12_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(298556,42456,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(298557,42456,'blocks_12_split_5050_content_actions',''),(298558,42456,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(298559,42456,'blocks_12_split_5050_content',''),(298560,42456,'_blocks_12_split_5050_content','field_61767afceb8ba'),(298561,42456,'blocks_13_acfe_flexible_toggle',''),(298562,42456,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(298563,42456,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(298564,42456,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(298565,42456,'blocks_13_options_theme','#b61234'),(298566,42456,'_blocks_13_options_theme','field_6176830e2ad17'),(298567,42456,'blocks_13_options',''),(298568,42456,'_blocks_13_options','field_6176830e2ad16'),(298569,42456,'blocks_13_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(298570,42456,'_blocks_13_text_block_heading','field_617669d413097'),(298571,42456,'blocks_13_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(298572,42456,'_blocks_13_text_block_content','field_617669ec13098'),(298573,42456,'blocks_14_acfe_flexible_toggle',''),(298574,42456,'_blocks_14_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(298575,42456,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(298576,42456,'_blocks_14_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(298577,42456,'blocks_14_options_theme','#b61234'),(298578,42456,'_blocks_14_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(298579,42456,'blocks_14_options_format','row'),(298580,42456,'_blocks_14_options_format','field_64bfde9a90690'),(298581,42456,'blocks_14_options',''),(298582,42456,'_blocks_14_options','field_64bfdd9b90684'),(298583,42456,'blocks_14_icon_row_items_0_icon','pass-rate.svg'),(298584,42456,'_blocks_14_icon_row_items_0_icon','field_64bfdd9b9068d'),(298585,42456,'blocks_14_icon_row_items_0_label','More Accurate Assessments'),(298586,42456,'_blocks_14_icon_row_items_0_label','field_64bfdd9c9068e'),(298587,42456,'blocks_14_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(298588,42456,'_blocks_14_icon_row_items_0_text','field_64bfdd9c9068f'),(298589,42456,'blocks_14_icon_row_items_1_icon','exceptional-support.svg'),(298590,42456,'_blocks_14_icon_row_items_1_icon','field_64bfdd9b9068d'),(298591,42456,'blocks_14_icon_row_items_1_label','Personalised Movement Strategies'),(298592,42456,'_blocks_14_icon_row_items_1_label','field_64bfdd9c9068e'),(298593,42456,'blocks_14_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(298594,42456,'_blocks_14_icon_row_items_1_text','field_64bfdd9c9068f'),(298595,42456,'blocks_14_icon_row_items_2_icon','lifetime-course-access.svg'),(298596,42456,'_blocks_14_icon_row_items_2_icon','field_64bfdd9b9068d'),(298597,42456,'blocks_14_icon_row_items_2_label','Injury Prevention and Longevity'),(298598,42456,'_blocks_14_icon_row_items_2_label','field_64bfdd9c9068e'),(298599,42456,'blocks_14_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(298600,42456,'_blocks_14_icon_row_items_2_text','field_64bfdd9c9068f'),(298601,42456,'blocks_14_icon_row_items_3_icon','recognised.svg'),(298602,42456,'_blocks_14_icon_row_items_3_icon','field_64bfdd9b9068d'),(298603,42456,'blocks_14_icon_row_items_3_label','Optimised Performance'),(298604,42456,'_blocks_14_icon_row_items_3_label','field_64bfdd9c9068e'),(298605,42456,'blocks_14_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(298606,42456,'_blocks_14_icon_row_items_3_text','field_64bfdd9c9068f'),(298607,42456,'blocks_14_icon_row_items','4'),(298608,42456,'_blocks_14_icon_row_items','field_64bfdd9b9068c'),(298609,42456,'blocks_15_acfe_flexible_toggle',''),(298610,42456,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(298611,42456,'blocks_15_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(298612,42456,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(298613,42456,'blocks_15_options_theme','#ffffff'),(298614,42456,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(298615,42456,'blocks_15_options_reverse','0'),(298616,42456,'_blocks_15_options_reverse','field_61768049bb8ac'),(298617,42456,'blocks_15_options',''),(298618,42456,'_blocks_15_options','field_617682517c334'),(298619,42456,'blocks_15_split_5050_image','41501'),(298620,42456,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(298621,42456,'blocks_15_split_5050_video',''),(298622,42456,'_blocks_15_split_5050_video','field_6239f3160848a'),(298623,42456,'blocks_15_split_5050_content_title',''),(298624,42456,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(298625,42456,'blocks_15_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(298626,42456,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(298627,42456,'blocks_15_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(298628,42456,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(298629,42456,'blocks_15_split_5050_content_actions',''),(298630,42456,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(298631,42456,'blocks_15_split_5050_content',''),(298632,42456,'_blocks_15_split_5050_content','field_61767afceb8ba'),(298633,42456,'blocks_18_acfe_flexible_toggle',''),(298634,42456,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(298635,42456,'blocks_18_acfe_flexible_layout_title','Conclusion'),(298636,42456,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(298637,42456,'blocks_18_options_theme','#f5f5f5'),(298638,42456,'_blocks_18_options_theme','field_6176830e2ad17'),(298639,42456,'blocks_18_options',''),(298640,42456,'_blocks_18_options','field_6176830e2ad16'),(298641,42456,'blocks_18_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(298642,42456,'_blocks_18_text_block_heading','field_617669d413097'),(298643,42456,'blocks_18_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(298644,42456,'_blocks_18_text_block_content','field_617669ec13098'),(298645,42456,'blocks_19_acfe_flexible_toggle',''),(298646,42456,'_blocks_19_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(298647,42456,'blocks_19_acfe_flexible_layout_title','Promo Panel'),(298648,42456,'_blocks_19_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(298649,42456,'blocks_19_options_alignment','center'),(298650,42456,'_blocks_19_options_alignment','field_61769449f5490'),(298651,42456,'blocks_19_options',''),(298652,42456,'_blocks_19_options','field_617693e1428f0'),(298653,42456,'blocks_19_promo_panel_image','40342'),(298654,42456,'_blocks_19_promo_panel_image','field_617693e1428f3'),(298655,42456,'blocks_19_promo_panel_content_heading','Want to Get Started?'),(298656,42456,'_blocks_19_promo_panel_content_heading','field_617693e1428f6'),(298657,42456,'blocks_19_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(298658,42456,'_blocks_19_promo_panel_content_text','field_617693e1428f7'),(298659,42456,'blocks_19_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(298660,42456,'_blocks_19_promo_panel_content_actions_0_button','field_617693e1428f9'),(298661,42456,'blocks_19_promo_panel_content_actions','1'),(298662,42456,'_blocks_19_promo_panel_content_actions','field_617693e1428f8'),(298663,42456,'blocks_19_promo_panel_content',''),(298664,42456,'_blocks_19_promo_panel_content','field_617693e1428f4'),(298787,42457,'hide_hero','0'),(298788,42457,'_hide_hero','field_66a2380fcda39'),(298789,42457,'hero_title',''),(298790,42457,'_hero_title','field_617571fe285e8'),(298791,42457,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(298792,42457,'_hero_text','field_6175723c285e9'),(298793,42457,'hero_actions','1'),(298794,42457,'_hero_actions','field_61757270285ea'),(298795,42457,'hero_style','default'),(298796,42457,'_hero_style','field_62051d9dc5324'),(298797,42457,'hero_image_pos_x','right'),(298798,42457,'_hero_image_pos_x','field_62ec3d05390bb'),(298799,42457,'hero_image_pos_y','top'),(298800,42457,'_hero_image_pos_y','field_62ec3d05390bc'),(298801,42457,'hero_image_pos',''),(298802,42457,'_hero_image_pos','field_62ec3d05390ba'),(298803,42457,'fft_hide_from_listings','0'),(298804,42457,'_fft_hide_from_listings','field_61f1320446ab2'),(298805,42457,'post_format','402'),(298806,42457,'_post_format','field_61756bfb51898'),(298807,42457,'post_author',''),(298808,42457,'_post_author','field_62ec389d22113'),(298809,42457,'post_reviewer',''),(298810,42457,'_post_reviewer','field_627140a2a9800'),(298811,42457,'post_table_of_contents','0'),(298812,42457,'_post_table_of_contents','field_65c503bc846a6'),(298813,42457,'blocks','a:20:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:4:\"tabs\";i:8;s:10:\"accordions\";i:9;s:10:\"text_block\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:5:\"icons\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:11:\"promo_panel\";}'),(298814,42457,'_blocks','field_6176696113096'),(298815,42457,'_thumbnail_id','41331'),(298816,42457,'__thumbnail_id','field_617570855ddaf'),(298817,42457,'blocks_0_acfe_flexible_toggle',''),(298818,42457,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(298819,42457,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(298820,42457,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(298821,42457,'blocks_0_options_theme','#ffffff'),(298822,42457,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(298823,42457,'blocks_0_options',''),(298824,42457,'_blocks_0_options','field_6177b758246ae'),(298825,42457,'blocks_0_link_stack_content_title',''),(298826,42457,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(298827,42457,'blocks_0_link_stack_content_heading','What is MSK?'),(298828,42457,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(298829,42457,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(298830,42457,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(298831,42457,'blocks_0_link_stack_content_actions_0_button',''),(298832,42457,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(298833,42457,'blocks_0_link_stack_content_actions','1'),(298834,42457,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(298835,42457,'blocks_0_link_stack_content',''),(298836,42457,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(298837,42457,'blocks_0_link_stack_0_label','1.'),(298838,42457,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(298839,42457,'blocks_0_link_stack_0_title','Overview'),(298840,42457,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(298841,42457,'blocks_0_link_stack_0_url','#overview'),(298842,42457,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(298843,42457,'blocks_0_link_stack_1_label','2.'),(298844,42457,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(298845,42457,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(298846,42457,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(298847,42457,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(298848,42457,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(298849,42457,'blocks_0_link_stack_2_label','3.'),(298850,42457,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(298851,42457,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(298852,42457,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(298853,42457,'blocks_0_link_stack_2_url','#who-should-study-msk'),(298854,42457,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(298855,42457,'blocks_0_link_stack_3_label','4.'),(298856,42457,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(298857,42457,'blocks_0_link_stack_3_title','Common MSK Conditions'),(298858,42457,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(298859,42457,'blocks_0_link_stack_3_url','#common-msk-conditions'),(298860,42457,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(298861,42457,'blocks_0_link_stack_4_label','5.'),(298862,42457,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(298863,42457,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(298864,42457,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(298865,42457,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(298866,42457,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(298867,42457,'blocks_0_link_stack_5_label','6.'),(298868,42457,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(298869,42457,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(298870,42457,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(298871,42457,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(298872,42457,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(298873,42457,'blocks_0_link_stack','6'),(298874,42457,'_blocks_0_link_stack','field_6177b7f600cff'),(298875,42457,'blocks_1_acfe_flexible_toggle',''),(298876,42457,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(298877,42457,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(298878,42457,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(298879,42457,'blocks_1_options_theme','#ffffff'),(298880,42457,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(298881,42457,'blocks_1_options_reverse','0'),(298882,42457,'_blocks_1_options_reverse','field_61768049bb8ac'),(298883,42457,'blocks_1_options',''),(298884,42457,'_blocks_1_options','field_617682517c334'),(298885,42457,'blocks_1_split_5050_image','40615'),(298886,42457,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(298887,42457,'blocks_1_split_5050_video',''),(298888,42457,'_blocks_1_split_5050_video','field_6239f3160848a'),(298889,42457,'blocks_1_split_5050_content_title',''),(298890,42457,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(298891,42457,'blocks_1_split_5050_content_heading','Overview'),(298892,42457,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(298893,42457,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(298894,42457,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(298895,42457,'blocks_1_split_5050_content_actions',''),(298896,42457,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(298897,42457,'blocks_1_split_5050_content',''),(298898,42457,'_blocks_1_split_5050_content','field_61767afceb8ba'),(298899,42457,'blocks_2_acfe_flexible_toggle',''),(298900,42457,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(298901,42457,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(298902,42457,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(298903,42457,'blocks_2_options_theme','#f5f5f5'),(298904,42457,'_blocks_2_options_theme','field_6176830e2ad17'),(298905,42457,'blocks_2_options',''),(298906,42457,'_blocks_2_options','field_6176830e2ad16'),(298907,42457,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(298908,42457,'_blocks_2_text_block_heading','field_617669d413097'),(298909,42457,'blocks_2_text_block_content',''),(298910,42457,'_blocks_2_text_block_content','field_617669ec13098'),(298911,42457,'blocks_3_acfe_flexible_toggle',''),(298912,42457,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(298913,42457,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(298914,42457,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(298915,42457,'blocks_3_options_theme','#f5f5f5'),(298916,42457,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(298917,42457,'blocks_3_options_reverse','1'),(298918,42457,'_blocks_3_options_reverse','field_61768049bb8ac'),(298919,42457,'blocks_3_options',''),(298920,42457,'_blocks_3_options','field_617682517c334'),(298921,42457,'blocks_3_split_5050_image','40618'),(298922,42457,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(298923,42457,'blocks_3_split_5050_video',''),(298924,42457,'_blocks_3_split_5050_video','field_6239f3160848a'),(298925,42457,'blocks_3_split_5050_content_title',''),(298926,42457,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(298927,42457,'blocks_3_split_5050_content_heading',''),(298928,42457,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(298929,42457,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(298930,42457,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(298931,42457,'blocks_3_split_5050_content_actions',''),(298932,42457,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(298933,42457,'blocks_3_split_5050_content',''),(298934,42457,'_blocks_3_split_5050_content','field_61767afceb8ba'),(298935,42457,'blocks_4_acfe_flexible_toggle','1'),(298936,42457,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(298937,42457,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(298938,42457,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(298939,42457,'blocks_4_options_theme','#f5f5f5'),(298940,42457,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(298941,42457,'blocks_4_options_reverse','1'),(298942,42457,'_blocks_4_options_reverse','field_61768049bb8ac'),(298943,42457,'blocks_4_options',''),(298944,42457,'_blocks_4_options','field_617682517c334'),(298945,42457,'blocks_4_split_5050_image','41330'),(298946,42457,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(298947,42457,'blocks_4_split_5050_video',''),(298948,42457,'_blocks_4_split_5050_video','field_6239f3160848a'),(298949,42457,'blocks_4_split_5050_content_title',''),(298950,42457,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(298951,42457,'blocks_4_split_5050_content_heading',''),(298952,42457,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(298953,42457,'blocks_4_split_5050_content_text',''),(298954,42457,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(298955,42457,'blocks_4_split_5050_content_actions',''),(298956,42457,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(298957,42457,'blocks_4_split_5050_content',''),(298958,42457,'_blocks_4_split_5050_content','field_61767afceb8ba'),(298959,42457,'blocks_5_acfe_flexible_toggle',''),(298960,42457,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(298961,42457,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(298962,42457,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(298963,42457,'blocks_5_options_theme','#b61234'),(298964,42457,'_blocks_5_options_theme','field_6176830e2ad17'),(298965,42457,'blocks_5_options',''),(298966,42457,'_blocks_5_options','field_6176830e2ad16'),(298967,42457,'blocks_5_text_block_heading','Who Should Study MSK?'),(298968,42457,'_blocks_5_text_block_heading','field_617669d413097'),(298969,42457,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(298970,42457,'_blocks_5_text_block_content','field_617669ec13098'),(298971,42457,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(298972,42457,'_hero_actions_0_button','field_61757281285eb'),(298973,42457,'blocks_10_acfe_flexible_toggle',''),(298974,42457,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(298975,42457,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(298976,42457,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(298977,42457,'blocks_10_options_theme','#f5f5f5'),(298978,42457,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(298979,42457,'blocks_10_options_reverse','1'),(298980,42457,'_blocks_10_options_reverse','field_61768049bb8ac'),(298981,42457,'blocks_10_options',''),(298982,42457,'_blocks_10_options','field_617682517c334'),(298983,42457,'blocks_10_split_5050_image','41498'),(298984,42457,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(298985,42457,'blocks_10_split_5050_video',''),(298986,42457,'_blocks_10_split_5050_video','field_6239f3160848a'),(298987,42457,'blocks_10_split_5050_content_title',''),(298988,42457,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(298989,42457,'blocks_10_split_5050_content_heading',''),(298990,42457,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(298991,42457,'blocks_10_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(298992,42457,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(298993,42457,'blocks_10_split_5050_content_actions',''),(298994,42457,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(298995,42457,'blocks_10_split_5050_content',''),(298996,42457,'_blocks_10_split_5050_content','field_61767afceb8ba'),(298997,42457,'blocks_11_acfe_flexible_toggle',''),(298998,42457,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(298999,42457,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(299000,42457,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(299001,42457,'blocks_11_options_theme','#f5f5f5'),(299002,42457,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(299003,42457,'blocks_11_options_reverse','1'),(299004,42457,'_blocks_11_options_reverse','field_61768049bb8ac'),(299005,42457,'blocks_11_options',''),(299006,42457,'_blocks_11_options','field_617682517c334'),(299007,42457,'blocks_11_split_5050_image','40387'),(299008,42457,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(299009,42457,'blocks_11_split_5050_video',''),(299010,42457,'_blocks_11_split_5050_video','field_6239f3160848a'),(299011,42457,'blocks_11_split_5050_content_title',''),(299012,42457,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(299013,42457,'blocks_11_split_5050_content_heading',''),(299014,42457,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(299015,42457,'blocks_11_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(299016,42457,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(299017,42457,'blocks_11_split_5050_content_actions',''),(299018,42457,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(299019,42457,'blocks_11_split_5050_content',''),(299020,42457,'_blocks_11_split_5050_content','field_61767afceb8ba'),(299021,42457,'blocks_17_acfe_flexible_toggle',''),(299022,42457,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(299023,42457,'blocks_17_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(299024,42457,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(299025,42457,'blocks_17_options_theme','#ffffff'),(299026,42457,'_blocks_17_options_theme','field_6176830e2ad17'),(299027,42457,'blocks_17_options',''),(299028,42457,'_blocks_17_options','field_6176830e2ad16'),(299029,42457,'blocks_17_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(299030,42457,'_blocks_17_text_block_heading','field_617669d413097'),(299031,42457,'blocks_17_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(299032,42457,'_blocks_17_text_block_content','field_617669ec13098'),(299033,42457,'blocks_16_acfe_flexible_toggle',''),(299034,42457,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(299035,42457,'blocks_16_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(299036,42457,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(299037,42457,'blocks_16_options_theme','#ffffff'),(299038,42457,'_blocks_16_options_theme','field_6176830e2ad17'),(299039,42457,'blocks_16_options',''),(299040,42457,'_blocks_16_options','field_6176830e2ad16'),(299041,42457,'blocks_16_text_block_heading','The Role of MSK Education in Workplace Health'),(299042,42457,'_blocks_16_text_block_heading','field_617669d413097'),(299043,42457,'blocks_16_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(299044,42457,'_blocks_16_text_block_content','field_617669ec13098'),(299045,42457,'blocks_8_acfe_flexible_toggle',''),(299046,42457,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(299047,42457,'blocks_8_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(299048,42457,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(299049,42457,'blocks_8_options_theme','#ffffff'),(299050,42457,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(299051,42457,'blocks_8_options_state','0'),(299052,42457,'_blocks_8_options_state','field_6239fcb7508c5'),(299053,42457,'blocks_8_options',''),(299054,42457,'_blocks_8_options','field_6177e2991ac44'),(299055,42457,'blocks_8_content_title','Common MSK Conditions'),(299056,42457,'_blocks_8_content_title','field_64d237e8bb1e2'),(299057,42457,'blocks_8_content_heading','Common MSK Conditions'),(299058,42457,'_blocks_8_content_heading','field_64d237e8bb1e3'),(299059,42457,'blocks_8_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(299060,42457,'_blocks_8_content_text','field_64d237e8bb1e4'),(299061,42457,'blocks_8_content_actions',''),(299062,42457,'_blocks_8_content_actions','field_64d237e8bb1e5'),(299063,42457,'blocks_8_content_align','left'),(299064,42457,'_blocks_8_content_align','field_64d2443e6b6aa'),(299065,42457,'blocks_8_content',''),(299066,42457,'_blocks_8_content','field_64d237e8bb1e1'),(299067,42457,'blocks_8_accordion_content','custom'),(299068,42457,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(299069,42457,'blocks_8_accordion_items_0_title','Osteoarthritis'),(299070,42457,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(299071,42457,'blocks_8_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(299072,42457,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(299073,42457,'blocks_8_accordion_items_1_title','Rheumatoid Arthritis'),(299074,42457,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(299075,42457,'blocks_8_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(299076,42457,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(299077,42457,'blocks_8_accordion_items_2_title','Back Pain'),(299078,42457,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(299079,42457,'blocks_8_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(299080,42457,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(299081,42457,'blocks_8_accordion_items_3_title','Osteoporosis'),(299082,42457,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(299083,42457,'blocks_8_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(299084,42457,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(299085,42457,'blocks_8_accordion_items_4_title','Tendinitis'),(299086,42457,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(299087,42457,'blocks_8_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(299088,42457,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(299089,42457,'blocks_8_accordion_items_5_title','Carpal Tunnel Syndrome'),(299090,42457,'_blocks_8_accordion_items_5_title','field_6177e2991ac4d'),(299091,42457,'blocks_8_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(299092,42457,'_blocks_8_accordion_items_5_text','field_6177e2991ac4e'),(299093,42457,'blocks_8_accordion_items_6_title','Fibromyalgia'),(299094,42457,'_blocks_8_accordion_items_6_title','field_6177e2991ac4d'),(299095,42457,'blocks_8_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(299096,42457,'_blocks_8_accordion_items_6_text','field_6177e2991ac4e'),(299097,42457,'blocks_8_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(299098,42457,'_blocks_8_accordion_items_7_title','field_6177e2991ac4d'),(299099,42457,'blocks_8_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(299100,42457,'_blocks_8_accordion_items_7_text','field_6177e2991ac4e'),(299101,42457,'blocks_8_accordion_items','8'),(299102,42457,'_blocks_8_accordion_items','field_6177e2991ac4c'),(299103,42457,'blocks_8_actions',''),(299104,42457,'_blocks_8_actions','field_61a746a817f7a'),(299105,42457,'blocks_9_acfe_flexible_toggle',''),(299106,42457,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(299107,42457,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(299108,42457,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(299109,42457,'blocks_9_options_theme','#f5f5f5'),(299110,42457,'_blocks_9_options_theme','field_6176830e2ad17'),(299111,42457,'blocks_9_options',''),(299112,42457,'_blocks_9_options','field_6176830e2ad16'),(299113,42457,'blocks_9_text_block_heading','The Importance of MSK Education'),(299114,42457,'_blocks_9_text_block_heading','field_617669d413097'),(299115,42457,'blocks_9_text_block_content',''),(299116,42457,'_blocks_9_text_block_content','field_617669ec13098'),(299117,42457,'blocks_12_acfe_flexible_toggle',''),(299118,42457,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(299119,42457,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(299120,42457,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(299121,42457,'blocks_12_options_theme','#f5f5f5'),(299122,42457,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(299123,42457,'blocks_12_options_reverse','1'),(299124,42457,'_blocks_12_options_reverse','field_61768049bb8ac'),(299125,42457,'blocks_12_options',''),(299126,42457,'_blocks_12_options','field_617682517c334'),(299127,42457,'blocks_12_split_5050_image','18856'),(299128,42457,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(299129,42457,'blocks_12_split_5050_video',''),(299130,42457,'_blocks_12_split_5050_video','field_6239f3160848a'),(299131,42457,'blocks_12_split_5050_content_title',''),(299132,42457,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(299133,42457,'blocks_12_split_5050_content_heading',''),(299134,42457,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(299135,42457,'blocks_12_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(299136,42457,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(299137,42457,'blocks_12_split_5050_content_actions',''),(299138,42457,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(299139,42457,'blocks_12_split_5050_content',''),(299140,42457,'_blocks_12_split_5050_content','field_61767afceb8ba'),(299141,42457,'blocks_13_acfe_flexible_toggle',''),(299142,42457,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(299143,42457,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(299144,42457,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(299145,42457,'blocks_13_options_theme','#b61234'),(299146,42457,'_blocks_13_options_theme','field_6176830e2ad17'),(299147,42457,'blocks_13_options',''),(299148,42457,'_blocks_13_options','field_6176830e2ad16'),(299149,42457,'blocks_13_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(299150,42457,'_blocks_13_text_block_heading','field_617669d413097'),(299151,42457,'blocks_13_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(299152,42457,'_blocks_13_text_block_content','field_617669ec13098'),(299153,42457,'blocks_14_acfe_flexible_toggle',''),(299154,42457,'_blocks_14_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(299155,42457,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(299156,42457,'_blocks_14_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(299157,42457,'blocks_14_options_theme','#b61234'),(299158,42457,'_blocks_14_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(299159,42457,'blocks_14_options_format','row'),(299160,42457,'_blocks_14_options_format','field_64bfde9a90690'),(299161,42457,'blocks_14_options',''),(299162,42457,'_blocks_14_options','field_64bfdd9b90684'),(299163,42457,'blocks_14_icon_row_items_0_icon','pass-rate.svg'),(299164,42457,'_blocks_14_icon_row_items_0_icon','field_64bfdd9b9068d'),(299165,42457,'blocks_14_icon_row_items_0_label','More Accurate Assessments'),(299166,42457,'_blocks_14_icon_row_items_0_label','field_64bfdd9c9068e'),(299167,42457,'blocks_14_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(299168,42457,'_blocks_14_icon_row_items_0_text','field_64bfdd9c9068f'),(299169,42457,'blocks_14_icon_row_items_1_icon','exceptional-support.svg'),(299170,42457,'_blocks_14_icon_row_items_1_icon','field_64bfdd9b9068d'),(299171,42457,'blocks_14_icon_row_items_1_label','Personalised Movement Strategies'),(299172,42457,'_blocks_14_icon_row_items_1_label','field_64bfdd9c9068e'),(299173,42457,'blocks_14_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(299174,42457,'_blocks_14_icon_row_items_1_text','field_64bfdd9c9068f'),(299175,42457,'blocks_14_icon_row_items_2_icon','lifetime-course-access.svg'),(299176,42457,'_blocks_14_icon_row_items_2_icon','field_64bfdd9b9068d'),(299177,42457,'blocks_14_icon_row_items_2_label','Injury Prevention and Longevity'),(299178,42457,'_blocks_14_icon_row_items_2_label','field_64bfdd9c9068e'),(299179,42457,'blocks_14_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(299180,42457,'_blocks_14_icon_row_items_2_text','field_64bfdd9c9068f'),(299181,42457,'blocks_14_icon_row_items_3_icon','recognised.svg'),(299182,42457,'_blocks_14_icon_row_items_3_icon','field_64bfdd9b9068d'),(299183,42457,'blocks_14_icon_row_items_3_label','Optimised Performance'),(299184,42457,'_blocks_14_icon_row_items_3_label','field_64bfdd9c9068e'),(299185,42457,'blocks_14_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(299186,42457,'_blocks_14_icon_row_items_3_text','field_64bfdd9c9068f'),(299187,42457,'blocks_14_icon_row_items','4'),(299188,42457,'_blocks_14_icon_row_items','field_64bfdd9b9068c'),(299189,42457,'blocks_15_acfe_flexible_toggle',''),(299190,42457,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(299191,42457,'blocks_15_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(299192,42457,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(299193,42457,'blocks_15_options_theme','#ffffff'),(299194,42457,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(299195,42457,'blocks_15_options_reverse','0'),(299196,42457,'_blocks_15_options_reverse','field_61768049bb8ac'),(299197,42457,'blocks_15_options',''),(299198,42457,'_blocks_15_options','field_617682517c334'),(299199,42457,'blocks_15_split_5050_image','41501'),(299200,42457,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(299201,42457,'blocks_15_split_5050_video',''),(299202,42457,'_blocks_15_split_5050_video','field_6239f3160848a'),(299203,42457,'blocks_15_split_5050_content_title',''),(299204,42457,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(299205,42457,'blocks_15_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(299206,42457,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(299207,42457,'blocks_15_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(299208,42457,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(299209,42457,'blocks_15_split_5050_content_actions',''),(299210,42457,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(299211,42457,'blocks_15_split_5050_content',''),(299212,42457,'_blocks_15_split_5050_content','field_61767afceb8ba'),(299213,42457,'blocks_18_acfe_flexible_toggle',''),(299214,42457,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(299215,42457,'blocks_18_acfe_flexible_layout_title','Conclusion'),(299216,42457,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(299217,42457,'blocks_18_options_theme','#f5f5f5'),(299218,42457,'_blocks_18_options_theme','field_6176830e2ad17'),(299219,42457,'blocks_18_options',''),(299220,42457,'_blocks_18_options','field_6176830e2ad16'),(299221,42457,'blocks_18_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(299222,42457,'_blocks_18_text_block_heading','field_617669d413097'),(299223,42457,'blocks_18_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(299224,42457,'_blocks_18_text_block_content','field_617669ec13098'),(299225,42457,'blocks_19_acfe_flexible_toggle',''),(299226,42457,'_blocks_19_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(299227,42457,'blocks_19_acfe_flexible_layout_title','Promo Panel'),(299228,42457,'_blocks_19_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(299229,42457,'blocks_19_options_alignment','center'),(299230,42457,'_blocks_19_options_alignment','field_61769449f5490'),(299231,42457,'blocks_19_options',''),(299232,42457,'_blocks_19_options','field_617693e1428f0'),(299233,42457,'blocks_19_promo_panel_image','40342'),(299234,42457,'_blocks_19_promo_panel_image','field_617693e1428f3'),(299235,42457,'blocks_19_promo_panel_content_heading','Want to Get Started?'),(299236,42457,'_blocks_19_promo_panel_content_heading','field_617693e1428f6'),(299237,42457,'blocks_19_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(299238,42457,'_blocks_19_promo_panel_content_text','field_617693e1428f7'),(299239,42457,'blocks_19_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(299240,42457,'_blocks_19_promo_panel_content_actions_0_button','field_617693e1428f9'),(299241,42457,'blocks_19_promo_panel_content_actions','1'),(299242,42457,'_blocks_19_promo_panel_content_actions','field_617693e1428f8'),(299243,42457,'blocks_19_promo_panel_content',''),(299244,42457,'_blocks_19_promo_panel_content','field_617693e1428f4'),(299245,42457,'blocks_6_acfe_flexible_toggle',''),(299246,42457,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(299247,42457,'blocks_6_acfe_flexible_layout_title','Cards'),(299248,42457,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(299249,42457,'blocks_6_options_theme','#b61234'),(299250,42457,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(299251,42457,'blocks_6_options_format','carousel'),(299252,42457,'_blocks_6_options_format','field_617a7b15245b5'),(299253,42457,'blocks_6_options_style','default'),(299254,42457,'_blocks_6_options_style','field_6278ffb63484a'),(299255,42457,'blocks_6_options_cards_current_listing','0'),(299256,42457,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(299257,42457,'blocks_6_options_cards_content','custom'),(299258,42457,'_blocks_6_options_cards_content','field_617aba6122688'),(299259,42457,'blocks_6_options',''),(299260,42457,'_blocks_6_options','field_617a7b15245b3'),(299261,42457,'blocks_6_cards_custom_0_image','41542'),(299262,42457,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(299263,42457,'blocks_6_cards_custom_0_title','First Thing'),(299264,42457,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(299265,42457,'blocks_6_cards_custom_0_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(299266,42457,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(299267,42457,'blocks_6_cards_custom_0_link',''),(299268,42457,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(299269,42457,'blocks_6_cards_custom_1_image','41543'),(299270,42457,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(299271,42457,'blocks_6_cards_custom_1_title','Second thing'),(299272,42457,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(299273,42457,'blocks_6_cards_custom_1_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(299274,42457,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(299275,42457,'blocks_6_cards_custom_1_link',''),(299276,42457,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(299277,42457,'blocks_6_cards_custom_2_image','41543'),(299278,42457,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(299279,42457,'blocks_6_cards_custom_2_title','Ergonomists and Occupational Health Specialists'),(299280,42457,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(299281,42457,'blocks_6_cards_custom_2_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(299282,42457,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(299283,42457,'blocks_6_cards_custom_2_link',''),(299284,42457,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(299285,42457,'blocks_6_cards_custom','3'),(299286,42457,'_blocks_6_cards_custom','field_6194cbf84d386'),(299287,42457,'blocks_7_acfe_flexible_toggle',''),(299288,42457,'_blocks_7_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(299289,42457,'blocks_7_acfe_flexible_layout_title','Who Should Study MSK?'),(299290,42457,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(299291,42457,'blocks_7_options_theme','#b61234'),(299292,42457,'_blocks_7_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(299293,42457,'blocks_7_options',''),(299294,42457,'_blocks_7_options','field_6177cfcd8140f'),(299295,42457,'blocks_7_tabs_0_tab_label','Aspiring Healthcare Professionals'),(299296,42457,'_blocks_7_tabs_0_tab_label','field_6177d0068141a'),(299297,42457,'blocks_7_tabs_0_tab_content_title',''),(299298,42457,'_blocks_7_tabs_0_tab_content_title','field_6177cfcd81414'),(299299,42457,'blocks_7_tabs_0_tab_content_heading',''),(299300,42457,'_blocks_7_tabs_0_tab_content_heading','field_6177cfcd81415'),(299301,42457,'blocks_7_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(299302,42457,'_blocks_7_tabs_0_tab_content_text','field_6177cfcd81416'),(299303,42457,'blocks_7_tabs_0_tab_content_actions',''),(299304,42457,'_blocks_7_tabs_0_tab_content_actions','field_6177cfcd81417'),(299305,42457,'blocks_7_tabs_0_tab_content',''),(299306,42457,'_blocks_7_tabs_0_tab_content','field_6177cfcd81413'),(299307,42457,'blocks_7_tabs_0_tab_image','41542'),(299308,42457,'_blocks_7_tabs_0_tab_image','field_6177cfcd81412'),(299309,42457,'blocks_7_tabs_1_tab_label','Current Practitioners'),(299310,42457,'_blocks_7_tabs_1_tab_label','field_6177d0068141a'),(299311,42457,'blocks_7_tabs_1_tab_content_title',''),(299312,42457,'_blocks_7_tabs_1_tab_content_title','field_6177cfcd81414'),(299313,42457,'blocks_7_tabs_1_tab_content_heading',''),(299314,42457,'_blocks_7_tabs_1_tab_content_heading','field_6177cfcd81415'),(299315,42457,'blocks_7_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(299316,42457,'_blocks_7_tabs_1_tab_content_text','field_6177cfcd81416'),(299317,42457,'blocks_7_tabs_1_tab_content_actions',''),(299318,42457,'_blocks_7_tabs_1_tab_content_actions','field_6177cfcd81417'),(299319,42457,'blocks_7_tabs_1_tab_content',''),(299320,42457,'_blocks_7_tabs_1_tab_content','field_6177cfcd81413'),(299321,42457,'blocks_7_tabs_1_tab_image','41505'),(299322,42457,'_blocks_7_tabs_1_tab_image','field_6177cfcd81412'),(299323,42457,'blocks_7_tabs_2_tab_label','Fitness and Sports Professionals'),(299324,42457,'_blocks_7_tabs_2_tab_label','field_6177d0068141a'),(299325,42457,'blocks_7_tabs_2_tab_content_title',''),(299326,42457,'_blocks_7_tabs_2_tab_content_title','field_6177cfcd81414'),(299327,42457,'blocks_7_tabs_2_tab_content_heading',''),(299328,42457,'_blocks_7_tabs_2_tab_content_heading','field_6177cfcd81415'),(299329,42457,'blocks_7_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(299330,42457,'_blocks_7_tabs_2_tab_content_text','field_6177cfcd81416'),(299331,42457,'blocks_7_tabs_2_tab_content_actions',''),(299332,42457,'_blocks_7_tabs_2_tab_content_actions','field_6177cfcd81417'),(299333,42457,'blocks_7_tabs_2_tab_content',''),(299334,42457,'_blocks_7_tabs_2_tab_content','field_6177cfcd81413'),(299335,42457,'blocks_7_tabs_2_tab_image','41539'),(299336,42457,'_blocks_7_tabs_2_tab_image','field_6177cfcd81412'),(299337,42457,'blocks_7_tabs_3_tab_label','Educators and Researchers'),(299338,42457,'_blocks_7_tabs_3_tab_label','field_6177d0068141a'),(299339,42457,'blocks_7_tabs_3_tab_content_title',''),(299340,42457,'_blocks_7_tabs_3_tab_content_title','field_6177cfcd81414'),(299341,42457,'blocks_7_tabs_3_tab_content_heading',''),(299342,42457,'_blocks_7_tabs_3_tab_content_heading','field_6177cfcd81415'),(299343,42457,'blocks_7_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(299344,42457,'_blocks_7_tabs_3_tab_content_text','field_6177cfcd81416'),(299345,42457,'blocks_7_tabs_3_tab_content_actions',''),(299346,42457,'_blocks_7_tabs_3_tab_content_actions','field_6177cfcd81417'),(299347,42457,'blocks_7_tabs_3_tab_content',''),(299348,42457,'_blocks_7_tabs_3_tab_content','field_6177cfcd81413'),(299349,42457,'blocks_7_tabs_3_tab_image','41502'),(299350,42457,'_blocks_7_tabs_3_tab_image','field_6177cfcd81412'),(299351,42457,'blocks_7_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(299352,42457,'_blocks_7_tabs_4_tab_label','field_6177d0068141a'),(299353,42457,'blocks_7_tabs_4_tab_content_title',''),(299354,42457,'_blocks_7_tabs_4_tab_content_title','field_6177cfcd81414'),(299355,42457,'blocks_7_tabs_4_tab_content_heading',''),(299356,42457,'_blocks_7_tabs_4_tab_content_heading','field_6177cfcd81415'),(299357,42457,'blocks_7_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(299358,42457,'_blocks_7_tabs_4_tab_content_text','field_6177cfcd81416'),(299359,42457,'blocks_7_tabs_4_tab_content_actions',''),(299360,42457,'_blocks_7_tabs_4_tab_content_actions','field_6177cfcd81417'),(299361,42457,'blocks_7_tabs_4_tab_content',''),(299362,42457,'_blocks_7_tabs_4_tab_content','field_6177cfcd81413'),(299363,42457,'blocks_7_tabs_4_tab_image','41506'),(299364,42457,'_blocks_7_tabs_4_tab_image','field_6177cfcd81412'),(299365,42457,'blocks_7_tabs','5'),(299366,42457,'_blocks_7_tabs','field_6177cff281419'),(299367,42458,'hide_hero','0'),(299368,42458,'_hide_hero','field_66a2380fcda39'),(299369,42458,'hero_title',''),(299370,42458,'_hero_title','field_617571fe285e8'),(299371,42458,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(299372,42458,'_hero_text','field_6175723c285e9'),(299373,42458,'hero_actions','1'),(299374,42458,'_hero_actions','field_61757270285ea'),(299375,42458,'hero_style','default'),(299376,42458,'_hero_style','field_62051d9dc5324'),(299377,42458,'hero_image_pos_x','right'),(299378,42458,'_hero_image_pos_x','field_62ec3d05390bb'),(299379,42458,'hero_image_pos_y','top'),(299380,42458,'_hero_image_pos_y','field_62ec3d05390bc'),(299381,42458,'hero_image_pos',''),(299382,42458,'_hero_image_pos','field_62ec3d05390ba'),(299383,42458,'fft_hide_from_listings','0'),(299384,42458,'_fft_hide_from_listings','field_61f1320446ab2'),(299385,42458,'post_format','402'),(299386,42458,'_post_format','field_61756bfb51898'),(299387,42458,'post_author',''),(299388,42458,'_post_author','field_62ec389d22113'),(299389,42458,'post_reviewer',''),(299390,42458,'_post_reviewer','field_627140a2a9800'),(299391,42458,'post_table_of_contents','0'),(299392,42458,'_post_table_of_contents','field_65c503bc846a6'),(299393,42458,'blocks','a:20:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:4:\"tabs\";i:8;s:10:\"accordions\";i:9;s:10:\"text_block\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:5:\"icons\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:11:\"promo_panel\";}'),(299394,42458,'_blocks','field_6176696113096'),(299395,42458,'_thumbnail_id','41331'),(299396,42458,'__thumbnail_id','field_617570855ddaf'),(299397,42458,'blocks_0_acfe_flexible_toggle',''),(299398,42458,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(299399,42458,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(299400,42458,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(299401,42458,'blocks_0_options_theme','#ffffff'),(299402,42458,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(299403,42458,'blocks_0_options',''),(299404,42458,'_blocks_0_options','field_6177b758246ae'),(299405,42458,'blocks_0_link_stack_content_title',''),(299406,42458,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(299407,42458,'blocks_0_link_stack_content_heading','What is MSK?'),(299408,42458,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(299409,42458,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(299410,42458,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(299411,42458,'blocks_0_link_stack_content_actions_0_button',''),(299412,42458,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(299413,42458,'blocks_0_link_stack_content_actions','1'),(299414,42458,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(299415,42458,'blocks_0_link_stack_content',''),(299416,42458,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(299417,42458,'blocks_0_link_stack_0_label','1.'),(299418,42458,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(299419,42458,'blocks_0_link_stack_0_title','Overview'),(299420,42458,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(299421,42458,'blocks_0_link_stack_0_url','#overview'),(299422,42458,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(299423,42458,'blocks_0_link_stack_1_label','2.'),(299424,42458,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(299425,42458,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(299426,42458,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(299427,42458,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(299428,42458,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(299429,42458,'blocks_0_link_stack_2_label','3.'),(299430,42458,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(299431,42458,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(299432,42458,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(299433,42458,'blocks_0_link_stack_2_url','#who-should-study-msk'),(299434,42458,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(299435,42458,'blocks_0_link_stack_3_label','4.'),(299436,42458,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(299437,42458,'blocks_0_link_stack_3_title','Common MSK Conditions'),(299438,42458,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(299439,42458,'blocks_0_link_stack_3_url','#common-msk-conditions'),(299440,42458,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(299441,42458,'blocks_0_link_stack_4_label','5.'),(299442,42458,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(299443,42458,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(299444,42458,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(299445,42458,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(299446,42458,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(299447,42458,'blocks_0_link_stack_5_label','6.'),(299448,42458,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(299449,42458,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(299450,42458,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(299451,42458,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(299452,42458,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(299453,42458,'blocks_0_link_stack','6'),(299454,42458,'_blocks_0_link_stack','field_6177b7f600cff'),(299455,42458,'blocks_1_acfe_flexible_toggle',''),(299456,42458,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(299457,42458,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(299458,42458,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(299459,42458,'blocks_1_options_theme','#ffffff'),(299460,42458,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(299461,42458,'blocks_1_options_reverse','0'),(299462,42458,'_blocks_1_options_reverse','field_61768049bb8ac'),(299463,42458,'blocks_1_options',''),(299464,42458,'_blocks_1_options','field_617682517c334'),(299465,42458,'blocks_1_split_5050_image','40615'),(299466,42458,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(299467,42458,'blocks_1_split_5050_video',''),(299468,42458,'_blocks_1_split_5050_video','field_6239f3160848a'),(299469,42458,'blocks_1_split_5050_content_title',''),(299470,42458,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(299471,42458,'blocks_1_split_5050_content_heading','Overview'),(299472,42458,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(299473,42458,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(299474,42458,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(299475,42458,'blocks_1_split_5050_content_actions',''),(299476,42458,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(299477,42458,'blocks_1_split_5050_content',''),(299478,42458,'_blocks_1_split_5050_content','field_61767afceb8ba'),(299479,42458,'blocks_2_acfe_flexible_toggle',''),(299480,42458,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(299481,42458,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(299482,42458,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(299483,42458,'blocks_2_options_theme','#f5f5f5'),(299484,42458,'_blocks_2_options_theme','field_6176830e2ad17'),(299485,42458,'blocks_2_options',''),(299486,42458,'_blocks_2_options','field_6176830e2ad16'),(299487,42458,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(299488,42458,'_blocks_2_text_block_heading','field_617669d413097'),(299489,42458,'blocks_2_text_block_content',''),(299490,42458,'_blocks_2_text_block_content','field_617669ec13098'),(299491,42458,'blocks_3_acfe_flexible_toggle',''),(299492,42458,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(299493,42458,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(299494,42458,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(299495,42458,'blocks_3_options_theme','#f5f5f5'),(299496,42458,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(299497,42458,'blocks_3_options_reverse','1'),(299498,42458,'_blocks_3_options_reverse','field_61768049bb8ac'),(299499,42458,'blocks_3_options',''),(299500,42458,'_blocks_3_options','field_617682517c334'),(299501,42458,'blocks_3_split_5050_image','40618'),(299502,42458,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(299503,42458,'blocks_3_split_5050_video',''),(299504,42458,'_blocks_3_split_5050_video','field_6239f3160848a'),(299505,42458,'blocks_3_split_5050_content_title',''),(299506,42458,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(299507,42458,'blocks_3_split_5050_content_heading',''),(299508,42458,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(299509,42458,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(299510,42458,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(299511,42458,'blocks_3_split_5050_content_actions',''),(299512,42458,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(299513,42458,'blocks_3_split_5050_content',''),(299514,42458,'_blocks_3_split_5050_content','field_61767afceb8ba'),(299515,42458,'blocks_4_acfe_flexible_toggle','1'),(299516,42458,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(299517,42458,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(299518,42458,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(299519,42458,'blocks_4_options_theme','#f5f5f5'),(299520,42458,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(299521,42458,'blocks_4_options_reverse','1'),(299522,42458,'_blocks_4_options_reverse','field_61768049bb8ac'),(299523,42458,'blocks_4_options',''),(299524,42458,'_blocks_4_options','field_617682517c334'),(299525,42458,'blocks_4_split_5050_image','41330'),(299526,42458,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(299527,42458,'blocks_4_split_5050_video',''),(299528,42458,'_blocks_4_split_5050_video','field_6239f3160848a'),(299529,42458,'blocks_4_split_5050_content_title',''),(299530,42458,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(299531,42458,'blocks_4_split_5050_content_heading',''),(299532,42458,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(299533,42458,'blocks_4_split_5050_content_text',''),(299534,42458,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(299535,42458,'blocks_4_split_5050_content_actions',''),(299536,42458,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(299537,42458,'blocks_4_split_5050_content',''),(299538,42458,'_blocks_4_split_5050_content','field_61767afceb8ba'),(299539,42458,'blocks_5_acfe_flexible_toggle',''),(299540,42458,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(299541,42458,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(299542,42458,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(299543,42458,'blocks_5_options_theme','#b61234'),(299544,42458,'_blocks_5_options_theme','field_6176830e2ad17'),(299545,42458,'blocks_5_options',''),(299546,42458,'_blocks_5_options','field_6176830e2ad16'),(299547,42458,'blocks_5_text_block_heading','Who Should Study MSK?'),(299548,42458,'_blocks_5_text_block_heading','field_617669d413097'),(299549,42458,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(299550,42458,'_blocks_5_text_block_content','field_617669ec13098'),(299551,42458,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(299552,42458,'_hero_actions_0_button','field_61757281285eb'),(299553,42458,'blocks_10_acfe_flexible_toggle',''),(299554,42458,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(299555,42458,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(299556,42458,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(299557,42458,'blocks_10_options_theme','#f5f5f5'),(299558,42458,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(299559,42458,'blocks_10_options_reverse','1'),(299560,42458,'_blocks_10_options_reverse','field_61768049bb8ac'),(299561,42458,'blocks_10_options',''),(299562,42458,'_blocks_10_options','field_617682517c334'),(299563,42458,'blocks_10_split_5050_image','41498'),(299564,42458,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(299565,42458,'blocks_10_split_5050_video',''),(299566,42458,'_blocks_10_split_5050_video','field_6239f3160848a'),(299567,42458,'blocks_10_split_5050_content_title',''),(299568,42458,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(299569,42458,'blocks_10_split_5050_content_heading',''),(299570,42458,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(299571,42458,'blocks_10_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(299572,42458,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(299573,42458,'blocks_10_split_5050_content_actions',''),(299574,42458,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(299575,42458,'blocks_10_split_5050_content',''),(299576,42458,'_blocks_10_split_5050_content','field_61767afceb8ba'),(299577,42458,'blocks_11_acfe_flexible_toggle',''),(299578,42458,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(299579,42458,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(299580,42458,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(299581,42458,'blocks_11_options_theme','#f5f5f5'),(299582,42458,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(299583,42458,'blocks_11_options_reverse','1'),(299584,42458,'_blocks_11_options_reverse','field_61768049bb8ac'),(299585,42458,'blocks_11_options',''),(299586,42458,'_blocks_11_options','field_617682517c334'),(299587,42458,'blocks_11_split_5050_image','40387'),(299588,42458,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(299589,42458,'blocks_11_split_5050_video',''),(299590,42458,'_blocks_11_split_5050_video','field_6239f3160848a'),(299591,42458,'blocks_11_split_5050_content_title',''),(299592,42458,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(299593,42458,'blocks_11_split_5050_content_heading',''),(299594,42458,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(299595,42458,'blocks_11_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(299596,42458,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(299597,42458,'blocks_11_split_5050_content_actions',''),(299598,42458,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(299599,42458,'blocks_11_split_5050_content',''),(299600,42458,'_blocks_11_split_5050_content','field_61767afceb8ba'),(299601,42458,'blocks_17_acfe_flexible_toggle',''),(299602,42458,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(299603,42458,'blocks_17_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(299604,42458,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(299605,42458,'blocks_17_options_theme','#ffffff'),(299606,42458,'_blocks_17_options_theme','field_6176830e2ad17'),(299607,42458,'blocks_17_options',''),(299608,42458,'_blocks_17_options','field_6176830e2ad16'),(299609,42458,'blocks_17_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(299610,42458,'_blocks_17_text_block_heading','field_617669d413097'),(299611,42458,'blocks_17_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(299612,42458,'_blocks_17_text_block_content','field_617669ec13098'),(299613,42458,'blocks_16_acfe_flexible_toggle',''),(299614,42458,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(299615,42458,'blocks_16_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(299616,42458,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(299617,42458,'blocks_16_options_theme','#ffffff'),(299618,42458,'_blocks_16_options_theme','field_6176830e2ad17'),(299619,42458,'blocks_16_options',''),(299620,42458,'_blocks_16_options','field_6176830e2ad16'),(299621,42458,'blocks_16_text_block_heading','The Role of MSK Education in Workplace Health'),(299622,42458,'_blocks_16_text_block_heading','field_617669d413097'),(299623,42458,'blocks_16_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(299624,42458,'_blocks_16_text_block_content','field_617669ec13098'),(299625,42458,'blocks_8_acfe_flexible_toggle',''),(299626,42458,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(299627,42458,'blocks_8_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(299628,42458,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(299629,42458,'blocks_8_options_theme','#ffffff'),(299630,42458,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(299631,42458,'blocks_8_options_state','0'),(299632,42458,'_blocks_8_options_state','field_6239fcb7508c5'),(299633,42458,'blocks_8_options',''),(299634,42458,'_blocks_8_options','field_6177e2991ac44'),(299635,42458,'blocks_8_content_title','Common MSK Conditions'),(299636,42458,'_blocks_8_content_title','field_64d237e8bb1e2'),(299637,42458,'blocks_8_content_heading','Common MSK Conditions'),(299638,42458,'_blocks_8_content_heading','field_64d237e8bb1e3'),(299639,42458,'blocks_8_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(299640,42458,'_blocks_8_content_text','field_64d237e8bb1e4'),(299641,42458,'blocks_8_content_actions',''),(299642,42458,'_blocks_8_content_actions','field_64d237e8bb1e5'),(299643,42458,'blocks_8_content_align','left'),(299644,42458,'_blocks_8_content_align','field_64d2443e6b6aa'),(299645,42458,'blocks_8_content',''),(299646,42458,'_blocks_8_content','field_64d237e8bb1e1'),(299647,42458,'blocks_8_accordion_content','custom'),(299648,42458,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(299649,42458,'blocks_8_accordion_items_0_title','Osteoarthritis'),(299650,42458,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(299651,42458,'blocks_8_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(299652,42458,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(299653,42458,'blocks_8_accordion_items_1_title','Rheumatoid Arthritis'),(299654,42458,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(299655,42458,'blocks_8_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(299656,42458,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(299657,42458,'blocks_8_accordion_items_2_title','Back Pain'),(299658,42458,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(299659,42458,'blocks_8_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(299660,42458,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(299661,42458,'blocks_8_accordion_items_3_title','Osteoporosis'),(299662,42458,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(299663,42458,'blocks_8_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(299664,42458,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(299665,42458,'blocks_8_accordion_items_4_title','Tendinitis'),(299666,42458,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(299667,42458,'blocks_8_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(299668,42458,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(299669,42458,'blocks_8_accordion_items_5_title','Carpal Tunnel Syndrome'),(299670,42458,'_blocks_8_accordion_items_5_title','field_6177e2991ac4d'),(299671,42458,'blocks_8_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(299672,42458,'_blocks_8_accordion_items_5_text','field_6177e2991ac4e'),(299673,42458,'blocks_8_accordion_items_6_title','Fibromyalgia'),(299674,42458,'_blocks_8_accordion_items_6_title','field_6177e2991ac4d'),(299675,42458,'blocks_8_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(299676,42458,'_blocks_8_accordion_items_6_text','field_6177e2991ac4e'),(299677,42458,'blocks_8_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(299678,42458,'_blocks_8_accordion_items_7_title','field_6177e2991ac4d'),(299679,42458,'blocks_8_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(299680,42458,'_blocks_8_accordion_items_7_text','field_6177e2991ac4e'),(299681,42458,'blocks_8_accordion_items','8'),(299682,42458,'_blocks_8_accordion_items','field_6177e2991ac4c'),(299683,42458,'blocks_8_actions',''),(299684,42458,'_blocks_8_actions','field_61a746a817f7a'),(299685,42458,'blocks_9_acfe_flexible_toggle',''),(299686,42458,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(299687,42458,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(299688,42458,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(299689,42458,'blocks_9_options_theme','#f5f5f5'),(299690,42458,'_blocks_9_options_theme','field_6176830e2ad17'),(299691,42458,'blocks_9_options',''),(299692,42458,'_blocks_9_options','field_6176830e2ad16'),(299693,42458,'blocks_9_text_block_heading','The Importance of MSK Education'),(299694,42458,'_blocks_9_text_block_heading','field_617669d413097'),(299695,42458,'blocks_9_text_block_content',''),(299696,42458,'_blocks_9_text_block_content','field_617669ec13098'),(299697,42458,'blocks_12_acfe_flexible_toggle',''),(299698,42458,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(299699,42458,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(299700,42458,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(299701,42458,'blocks_12_options_theme','#f5f5f5'),(299702,42458,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(299703,42458,'blocks_12_options_reverse','1'),(299704,42458,'_blocks_12_options_reverse','field_61768049bb8ac'),(299705,42458,'blocks_12_options',''),(299706,42458,'_blocks_12_options','field_617682517c334'),(299707,42458,'blocks_12_split_5050_image','18856'),(299708,42458,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(299709,42458,'blocks_12_split_5050_video',''),(299710,42458,'_blocks_12_split_5050_video','field_6239f3160848a'),(299711,42458,'blocks_12_split_5050_content_title',''),(299712,42458,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(299713,42458,'blocks_12_split_5050_content_heading',''),(299714,42458,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(299715,42458,'blocks_12_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(299716,42458,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(299717,42458,'blocks_12_split_5050_content_actions',''),(299718,42458,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(299719,42458,'blocks_12_split_5050_content',''),(299720,42458,'_blocks_12_split_5050_content','field_61767afceb8ba'),(299721,42458,'blocks_13_acfe_flexible_toggle',''),(299722,42458,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(299723,42458,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(299724,42458,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(299725,42458,'blocks_13_options_theme','#b61234'),(299726,42458,'_blocks_13_options_theme','field_6176830e2ad17'),(299727,42458,'blocks_13_options',''),(299728,42458,'_blocks_13_options','field_6176830e2ad16'),(299729,42458,'blocks_13_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(299730,42458,'_blocks_13_text_block_heading','field_617669d413097'),(299731,42458,'blocks_13_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(299732,42458,'_blocks_13_text_block_content','field_617669ec13098'),(299733,42458,'blocks_14_acfe_flexible_toggle',''),(299734,42458,'_blocks_14_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(299735,42458,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(299736,42458,'_blocks_14_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(299737,42458,'blocks_14_options_theme','#b61234'),(299738,42458,'_blocks_14_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(299739,42458,'blocks_14_options_format','row'),(299740,42458,'_blocks_14_options_format','field_64bfde9a90690'),(299741,42458,'blocks_14_options',''),(299742,42458,'_blocks_14_options','field_64bfdd9b90684'),(299743,42458,'blocks_14_icon_row_items_0_icon','pass-rate.svg'),(299744,42458,'_blocks_14_icon_row_items_0_icon','field_64bfdd9b9068d'),(299745,42458,'blocks_14_icon_row_items_0_label','More Accurate Assessments'),(299746,42458,'_blocks_14_icon_row_items_0_label','field_64bfdd9c9068e'),(299747,42458,'blocks_14_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(299748,42458,'_blocks_14_icon_row_items_0_text','field_64bfdd9c9068f'),(299749,42458,'blocks_14_icon_row_items_1_icon','exceptional-support.svg'),(299750,42458,'_blocks_14_icon_row_items_1_icon','field_64bfdd9b9068d'),(299751,42458,'blocks_14_icon_row_items_1_label','Personalised Movement Strategies'),(299752,42458,'_blocks_14_icon_row_items_1_label','field_64bfdd9c9068e'),(299753,42458,'blocks_14_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(299754,42458,'_blocks_14_icon_row_items_1_text','field_64bfdd9c9068f'),(299755,42458,'blocks_14_icon_row_items_2_icon','lifetime-course-access.svg'),(299756,42458,'_blocks_14_icon_row_items_2_icon','field_64bfdd9b9068d'),(299757,42458,'blocks_14_icon_row_items_2_label','Injury Prevention and Longevity'),(299758,42458,'_blocks_14_icon_row_items_2_label','field_64bfdd9c9068e'),(299759,42458,'blocks_14_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(299760,42458,'_blocks_14_icon_row_items_2_text','field_64bfdd9c9068f'),(299761,42458,'blocks_14_icon_row_items_3_icon','recognised.svg'),(299762,42458,'_blocks_14_icon_row_items_3_icon','field_64bfdd9b9068d'),(299763,42458,'blocks_14_icon_row_items_3_label','Optimised Performance'),(299764,42458,'_blocks_14_icon_row_items_3_label','field_64bfdd9c9068e'),(299765,42458,'blocks_14_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(299766,42458,'_blocks_14_icon_row_items_3_text','field_64bfdd9c9068f'),(299767,42458,'blocks_14_icon_row_items','4'),(299768,42458,'_blocks_14_icon_row_items','field_64bfdd9b9068c'),(299769,42458,'blocks_15_acfe_flexible_toggle',''),(299770,42458,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(299771,42458,'blocks_15_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(299772,42458,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(299773,42458,'blocks_15_options_theme','#ffffff'),(299774,42458,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(299775,42458,'blocks_15_options_reverse','0'),(299776,42458,'_blocks_15_options_reverse','field_61768049bb8ac'),(299777,42458,'blocks_15_options',''),(299778,42458,'_blocks_15_options','field_617682517c334'),(299779,42458,'blocks_15_split_5050_image','41501'),(299780,42458,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(299781,42458,'blocks_15_split_5050_video',''),(299782,42458,'_blocks_15_split_5050_video','field_6239f3160848a'),(299783,42458,'blocks_15_split_5050_content_title',''),(299784,42458,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(299785,42458,'blocks_15_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(299786,42458,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(299787,42458,'blocks_15_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(299788,42458,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(299789,42458,'blocks_15_split_5050_content_actions',''),(299790,42458,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(299791,42458,'blocks_15_split_5050_content',''),(299792,42458,'_blocks_15_split_5050_content','field_61767afceb8ba'),(299793,42458,'blocks_18_acfe_flexible_toggle',''),(299794,42458,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(299795,42458,'blocks_18_acfe_flexible_layout_title','Conclusion'),(299796,42458,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(299797,42458,'blocks_18_options_theme','#f5f5f5'),(299798,42458,'_blocks_18_options_theme','field_6176830e2ad17'),(299799,42458,'blocks_18_options',''),(299800,42458,'_blocks_18_options','field_6176830e2ad16'),(299801,42458,'blocks_18_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(299802,42458,'_blocks_18_text_block_heading','field_617669d413097'),(299803,42458,'blocks_18_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(299804,42458,'_blocks_18_text_block_content','field_617669ec13098'),(299805,42458,'blocks_19_acfe_flexible_toggle',''),(299806,42458,'_blocks_19_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(299807,42458,'blocks_19_acfe_flexible_layout_title','Promo Panel'),(299808,42458,'_blocks_19_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(299809,42458,'blocks_19_options_alignment','center'),(299810,42458,'_blocks_19_options_alignment','field_61769449f5490'),(299811,42458,'blocks_19_options',''),(299812,42458,'_blocks_19_options','field_617693e1428f0'),(299813,42458,'blocks_19_promo_panel_image','40342'),(299814,42458,'_blocks_19_promo_panel_image','field_617693e1428f3'),(299815,42458,'blocks_19_promo_panel_content_heading','Want to Get Started?'),(299816,42458,'_blocks_19_promo_panel_content_heading','field_617693e1428f6'),(299817,42458,'blocks_19_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(299818,42458,'_blocks_19_promo_panel_content_text','field_617693e1428f7'),(299819,42458,'blocks_19_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(299820,42458,'_blocks_19_promo_panel_content_actions_0_button','field_617693e1428f9'),(299821,42458,'blocks_19_promo_panel_content_actions','1'),(299822,42458,'_blocks_19_promo_panel_content_actions','field_617693e1428f8'),(299823,42458,'blocks_19_promo_panel_content',''),(299824,42458,'_blocks_19_promo_panel_content','field_617693e1428f4'),(299825,42458,'blocks_6_acfe_flexible_toggle',''),(299826,42458,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(299827,42458,'blocks_6_acfe_flexible_layout_title','Cards'),(299828,42458,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(299829,42458,'blocks_6_options_theme','#ffffff'),(299830,42458,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(299831,42458,'blocks_6_options_format','carousel'),(299832,42458,'_blocks_6_options_format','field_617a7b15245b5'),(299833,42458,'blocks_6_options_style','default'),(299834,42458,'_blocks_6_options_style','field_6278ffb63484a'),(299835,42458,'blocks_6_options_cards_current_listing','0'),(299836,42458,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(299837,42458,'blocks_6_options_cards_content','custom'),(299838,42458,'_blocks_6_options_cards_content','field_617aba6122688'),(299839,42458,'blocks_6_options',''),(299840,42458,'_blocks_6_options','field_617a7b15245b3'),(299841,42458,'blocks_6_cards_custom_0_image',''),(299842,42458,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(299843,42458,'blocks_6_cards_custom_0_title','First Thing'),(299844,42458,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(299845,42458,'blocks_6_cards_custom_0_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(299846,42458,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(299847,42458,'blocks_6_cards_custom_0_link',''),(299848,42458,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(299849,42458,'blocks_6_cards_custom_1_image',''),(299850,42458,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(299851,42458,'blocks_6_cards_custom_1_title','Second thing'),(299852,42458,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(299853,42458,'blocks_6_cards_custom_1_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(299854,42458,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(299855,42458,'blocks_6_cards_custom_1_link',''),(299856,42458,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(299857,42458,'blocks_6_cards_custom_2_image',''),(299858,42458,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(299859,42458,'blocks_6_cards_custom_2_title','Ergonomists and Occupational Health Specialists'),(299860,42458,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(299861,42458,'blocks_6_cards_custom_2_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(299862,42458,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(299863,42458,'blocks_6_cards_custom_2_link',''),(299864,42458,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(299865,42458,'blocks_6_cards_custom','3'),(299866,42458,'_blocks_6_cards_custom','field_6194cbf84d386'),(299867,42458,'blocks_7_acfe_flexible_toggle',''),(299868,42458,'_blocks_7_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(299869,42458,'blocks_7_acfe_flexible_layout_title','Who Should Study MSK?'),(299870,42458,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(299871,42458,'blocks_7_options_theme','#b61234'),(299872,42458,'_blocks_7_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(299873,42458,'blocks_7_options',''),(299874,42458,'_blocks_7_options','field_6177cfcd8140f'),(299875,42458,'blocks_7_tabs_0_tab_label','Aspiring Healthcare Professionals'),(299876,42458,'_blocks_7_tabs_0_tab_label','field_6177d0068141a'),(299877,42458,'blocks_7_tabs_0_tab_content_title',''),(299878,42458,'_blocks_7_tabs_0_tab_content_title','field_6177cfcd81414'),(299879,42458,'blocks_7_tabs_0_tab_content_heading',''),(299880,42458,'_blocks_7_tabs_0_tab_content_heading','field_6177cfcd81415'),(299881,42458,'blocks_7_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(299882,42458,'_blocks_7_tabs_0_tab_content_text','field_6177cfcd81416'),(299883,42458,'blocks_7_tabs_0_tab_content_actions',''),(299884,42458,'_blocks_7_tabs_0_tab_content_actions','field_6177cfcd81417'),(299885,42458,'blocks_7_tabs_0_tab_content',''),(299886,42458,'_blocks_7_tabs_0_tab_content','field_6177cfcd81413'),(299887,42458,'blocks_7_tabs_0_tab_image','41542'),(299888,42458,'_blocks_7_tabs_0_tab_image','field_6177cfcd81412'),(299889,42458,'blocks_7_tabs_1_tab_label','Current Practitioners'),(299890,42458,'_blocks_7_tabs_1_tab_label','field_6177d0068141a'),(299891,42458,'blocks_7_tabs_1_tab_content_title',''),(299892,42458,'_blocks_7_tabs_1_tab_content_title','field_6177cfcd81414'),(299893,42458,'blocks_7_tabs_1_tab_content_heading',''),(299894,42458,'_blocks_7_tabs_1_tab_content_heading','field_6177cfcd81415'),(299895,42458,'blocks_7_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(299896,42458,'_blocks_7_tabs_1_tab_content_text','field_6177cfcd81416'),(299897,42458,'blocks_7_tabs_1_tab_content_actions',''),(299898,42458,'_blocks_7_tabs_1_tab_content_actions','field_6177cfcd81417'),(299899,42458,'blocks_7_tabs_1_tab_content',''),(299900,42458,'_blocks_7_tabs_1_tab_content','field_6177cfcd81413'),(299901,42458,'blocks_7_tabs_1_tab_image','41505'),(299902,42458,'_blocks_7_tabs_1_tab_image','field_6177cfcd81412'),(299903,42458,'blocks_7_tabs_2_tab_label','Fitness and Sports Professionals'),(299904,42458,'_blocks_7_tabs_2_tab_label','field_6177d0068141a'),(299905,42458,'blocks_7_tabs_2_tab_content_title',''),(299906,42458,'_blocks_7_tabs_2_tab_content_title','field_6177cfcd81414'),(299907,42458,'blocks_7_tabs_2_tab_content_heading',''),(299908,42458,'_blocks_7_tabs_2_tab_content_heading','field_6177cfcd81415'),(299909,42458,'blocks_7_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(299910,42458,'_blocks_7_tabs_2_tab_content_text','field_6177cfcd81416'),(299911,42458,'blocks_7_tabs_2_tab_content_actions',''),(299912,42458,'_blocks_7_tabs_2_tab_content_actions','field_6177cfcd81417'),(299913,42458,'blocks_7_tabs_2_tab_content',''),(299914,42458,'_blocks_7_tabs_2_tab_content','field_6177cfcd81413'),(299915,42458,'blocks_7_tabs_2_tab_image','41539'),(299916,42458,'_blocks_7_tabs_2_tab_image','field_6177cfcd81412'),(299917,42458,'blocks_7_tabs_3_tab_label','Educators and Researchers'),(299918,42458,'_blocks_7_tabs_3_tab_label','field_6177d0068141a'),(299919,42458,'blocks_7_tabs_3_tab_content_title',''),(299920,42458,'_blocks_7_tabs_3_tab_content_title','field_6177cfcd81414'),(299921,42458,'blocks_7_tabs_3_tab_content_heading',''),(299922,42458,'_blocks_7_tabs_3_tab_content_heading','field_6177cfcd81415'),(299923,42458,'blocks_7_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(299924,42458,'_blocks_7_tabs_3_tab_content_text','field_6177cfcd81416'),(299925,42458,'blocks_7_tabs_3_tab_content_actions',''),(299926,42458,'_blocks_7_tabs_3_tab_content_actions','field_6177cfcd81417'),(299927,42458,'blocks_7_tabs_3_tab_content',''),(299928,42458,'_blocks_7_tabs_3_tab_content','field_6177cfcd81413'),(299929,42458,'blocks_7_tabs_3_tab_image','41502'),(299930,42458,'_blocks_7_tabs_3_tab_image','field_6177cfcd81412'),(299931,42458,'blocks_7_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(299932,42458,'_blocks_7_tabs_4_tab_label','field_6177d0068141a'),(299933,42458,'blocks_7_tabs_4_tab_content_title',''),(299934,42458,'_blocks_7_tabs_4_tab_content_title','field_6177cfcd81414'),(299935,42458,'blocks_7_tabs_4_tab_content_heading',''),(299936,42458,'_blocks_7_tabs_4_tab_content_heading','field_6177cfcd81415'),(299937,42458,'blocks_7_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(299938,42458,'_blocks_7_tabs_4_tab_content_text','field_6177cfcd81416'),(299939,42458,'blocks_7_tabs_4_tab_content_actions',''),(299940,42458,'_blocks_7_tabs_4_tab_content_actions','field_6177cfcd81417'),(299941,42458,'blocks_7_tabs_4_tab_content',''),(299942,42458,'_blocks_7_tabs_4_tab_content','field_6177cfcd81413'),(299943,42458,'blocks_7_tabs_4_tab_image','41506'),(299944,42458,'_blocks_7_tabs_4_tab_image','field_6177cfcd81412'),(299945,42458,'blocks_7_tabs','5'),(299946,42458,'_blocks_7_tabs','field_6177cff281419'),(299957,42459,'hide_hero','0'),(299958,42459,'_hide_hero','field_66a2380fcda39'),(299959,42459,'hero_title',''),(299960,42459,'_hero_title','field_617571fe285e8'),(299961,42459,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(299962,42459,'_hero_text','field_6175723c285e9'),(299963,42459,'hero_actions','1'),(299964,42459,'_hero_actions','field_61757270285ea'),(299965,42459,'hero_style','default'),(299966,42459,'_hero_style','field_62051d9dc5324'),(299967,42459,'hero_image_pos_x','right'),(299968,42459,'_hero_image_pos_x','field_62ec3d05390bb'),(299969,42459,'hero_image_pos_y','top'),(299970,42459,'_hero_image_pos_y','field_62ec3d05390bc'),(299971,42459,'hero_image_pos',''),(299972,42459,'_hero_image_pos','field_62ec3d05390ba'),(299973,42459,'fft_hide_from_listings','0'),(299974,42459,'_fft_hide_from_listings','field_61f1320446ab2'),(299975,42459,'post_format','402'),(299976,42459,'_post_format','field_61756bfb51898'),(299977,42459,'post_author',''),(299978,42459,'_post_author','field_62ec389d22113'),(299979,42459,'post_reviewer',''),(299980,42459,'_post_reviewer','field_627140a2a9800'),(299981,42459,'post_table_of_contents','0'),(299982,42459,'_post_table_of_contents','field_65c503bc846a6'),(299983,42459,'blocks','a:20:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:4:\"tabs\";i:8;s:10:\"accordions\";i:9;s:10:\"text_block\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:5:\"icons\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:11:\"promo_panel\";}'),(299984,42459,'_blocks','field_6176696113096'),(299985,42459,'_thumbnail_id','41331'),(299986,42459,'__thumbnail_id','field_617570855ddaf'),(299987,42459,'blocks_0_acfe_flexible_toggle',''),(299988,42459,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(299989,42459,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(299990,42459,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(299991,42459,'blocks_0_options_theme','#ffffff'),(299992,42459,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(299993,42459,'blocks_0_options',''),(299994,42459,'_blocks_0_options','field_6177b758246ae'),(299995,42459,'blocks_0_link_stack_content_title',''),(299996,42459,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(299997,42459,'blocks_0_link_stack_content_heading','What is MSK?'),(299998,42459,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(299999,42459,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(300000,42459,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(300001,42459,'blocks_0_link_stack_content_actions_0_button',''),(300002,42459,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(300003,42459,'blocks_0_link_stack_content_actions','1'),(300004,42459,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(300005,42459,'blocks_0_link_stack_content',''),(300006,42459,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(300007,42459,'blocks_0_link_stack_0_label','1.'),(300008,42459,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(300009,42459,'blocks_0_link_stack_0_title','Overview'),(300010,42459,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(300011,42459,'blocks_0_link_stack_0_url','#overview'),(300012,42459,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(300013,42459,'blocks_0_link_stack_1_label','2.'),(300014,42459,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(300015,42459,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(300016,42459,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(300017,42459,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(300018,42459,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(300019,42459,'blocks_0_link_stack_2_label','3.'),(300020,42459,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(300021,42459,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(300022,42459,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(300023,42459,'blocks_0_link_stack_2_url','#who-should-study-msk'),(300024,42459,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(300025,42459,'blocks_0_link_stack_3_label','4.'),(300026,42459,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(300027,42459,'blocks_0_link_stack_3_title','Common MSK Conditions'),(300028,42459,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(300029,42459,'blocks_0_link_stack_3_url','#common-msk-conditions'),(300030,42459,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(300031,42459,'blocks_0_link_stack_4_label','5.'),(300032,42459,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(300033,42459,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(300034,42459,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(300035,42459,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(300036,42459,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(300037,42459,'blocks_0_link_stack_5_label','6.'),(300038,42459,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(300039,42459,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(300040,42459,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(300041,42459,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(300042,42459,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(300043,42459,'blocks_0_link_stack','6'),(300044,42459,'_blocks_0_link_stack','field_6177b7f600cff'),(300045,42459,'blocks_1_acfe_flexible_toggle',''),(300046,42459,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300047,42459,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(300048,42459,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300049,42459,'blocks_1_options_theme','#ffffff'),(300050,42459,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(300051,42459,'blocks_1_options_reverse','0'),(300052,42459,'_blocks_1_options_reverse','field_61768049bb8ac'),(300053,42459,'blocks_1_options',''),(300054,42459,'_blocks_1_options','field_617682517c334'),(300055,42459,'blocks_1_split_5050_image','40615'),(300056,42459,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(300057,42459,'blocks_1_split_5050_video',''),(300058,42459,'_blocks_1_split_5050_video','field_6239f3160848a'),(300059,42459,'blocks_1_split_5050_content_title',''),(300060,42459,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(300061,42459,'blocks_1_split_5050_content_heading','Overview'),(300062,42459,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(300063,42459,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(300064,42459,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(300065,42459,'blocks_1_split_5050_content_actions',''),(300066,42459,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(300067,42459,'blocks_1_split_5050_content',''),(300068,42459,'_blocks_1_split_5050_content','field_61767afceb8ba'),(300069,42459,'blocks_2_acfe_flexible_toggle',''),(300070,42459,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300071,42459,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(300072,42459,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300073,42459,'blocks_2_options_theme','#f5f5f5'),(300074,42459,'_blocks_2_options_theme','field_6176830e2ad17'),(300075,42459,'blocks_2_options',''),(300076,42459,'_blocks_2_options','field_6176830e2ad16'),(300077,42459,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(300078,42459,'_blocks_2_text_block_heading','field_617669d413097'),(300079,42459,'blocks_2_text_block_content',''),(300080,42459,'_blocks_2_text_block_content','field_617669ec13098'),(300081,42459,'blocks_3_acfe_flexible_toggle',''),(300082,42459,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300083,42459,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(300084,42459,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300085,42459,'blocks_3_options_theme','#f5f5f5'),(300086,42459,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(300087,42459,'blocks_3_options_reverse','1'),(300088,42459,'_blocks_3_options_reverse','field_61768049bb8ac'),(300089,42459,'blocks_3_options',''),(300090,42459,'_blocks_3_options','field_617682517c334'),(300091,42459,'blocks_3_split_5050_image','40618'),(300092,42459,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(300093,42459,'blocks_3_split_5050_video',''),(300094,42459,'_blocks_3_split_5050_video','field_6239f3160848a'),(300095,42459,'blocks_3_split_5050_content_title',''),(300096,42459,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(300097,42459,'blocks_3_split_5050_content_heading',''),(300098,42459,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(300099,42459,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(300100,42459,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(300101,42459,'blocks_3_split_5050_content_actions',''),(300102,42459,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(300103,42459,'blocks_3_split_5050_content',''),(300104,42459,'_blocks_3_split_5050_content','field_61767afceb8ba'),(300105,42459,'blocks_4_acfe_flexible_toggle','1'),(300106,42459,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300107,42459,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(300108,42459,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300109,42459,'blocks_4_options_theme','#f5f5f5'),(300110,42459,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(300111,42459,'blocks_4_options_reverse','1'),(300112,42459,'_blocks_4_options_reverse','field_61768049bb8ac'),(300113,42459,'blocks_4_options',''),(300114,42459,'_blocks_4_options','field_617682517c334'),(300115,42459,'blocks_4_split_5050_image','41330'),(300116,42459,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(300117,42459,'blocks_4_split_5050_video',''),(300118,42459,'_blocks_4_split_5050_video','field_6239f3160848a'),(300119,42459,'blocks_4_split_5050_content_title',''),(300120,42459,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(300121,42459,'blocks_4_split_5050_content_heading',''),(300122,42459,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(300123,42459,'blocks_4_split_5050_content_text',''),(300124,42459,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(300125,42459,'blocks_4_split_5050_content_actions',''),(300126,42459,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(300127,42459,'blocks_4_split_5050_content',''),(300128,42459,'_blocks_4_split_5050_content','field_61767afceb8ba'),(300129,42459,'blocks_5_acfe_flexible_toggle',''),(300130,42459,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300131,42459,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(300132,42459,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300133,42459,'blocks_5_options_theme','#b61234'),(300134,42459,'_blocks_5_options_theme','field_6176830e2ad17'),(300135,42459,'blocks_5_options',''),(300136,42459,'_blocks_5_options','field_6176830e2ad16'),(300137,42459,'blocks_5_text_block_heading','Who Should Study MSK?'),(300138,42459,'_blocks_5_text_block_heading','field_617669d413097'),(300139,42459,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(300140,42459,'_blocks_5_text_block_content','field_617669ec13098'),(300141,42459,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(300142,42459,'_hero_actions_0_button','field_61757281285eb'),(300143,42459,'blocks_10_acfe_flexible_toggle',''),(300144,42459,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300145,42459,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(300146,42459,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300147,42459,'blocks_10_options_theme','#f5f5f5'),(300148,42459,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(300149,42459,'blocks_10_options_reverse','1'),(300150,42459,'_blocks_10_options_reverse','field_61768049bb8ac'),(300151,42459,'blocks_10_options',''),(300152,42459,'_blocks_10_options','field_617682517c334'),(300153,42459,'blocks_10_split_5050_image','41498'),(300154,42459,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(300155,42459,'blocks_10_split_5050_video',''),(300156,42459,'_blocks_10_split_5050_video','field_6239f3160848a'),(300157,42459,'blocks_10_split_5050_content_title',''),(300158,42459,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(300159,42459,'blocks_10_split_5050_content_heading',''),(300160,42459,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(300161,42459,'blocks_10_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(300162,42459,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(300163,42459,'blocks_10_split_5050_content_actions',''),(300164,42459,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(300165,42459,'blocks_10_split_5050_content',''),(300166,42459,'_blocks_10_split_5050_content','field_61767afceb8ba'),(300167,42459,'blocks_11_acfe_flexible_toggle',''),(300168,42459,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300169,42459,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(300170,42459,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300171,42459,'blocks_11_options_theme','#f5f5f5'),(300172,42459,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(300173,42459,'blocks_11_options_reverse','1'),(300174,42459,'_blocks_11_options_reverse','field_61768049bb8ac'),(300175,42459,'blocks_11_options',''),(300176,42459,'_blocks_11_options','field_617682517c334'),(300177,42459,'blocks_11_split_5050_image','40387'),(300178,42459,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(300179,42459,'blocks_11_split_5050_video',''),(300180,42459,'_blocks_11_split_5050_video','field_6239f3160848a'),(300181,42459,'blocks_11_split_5050_content_title',''),(300182,42459,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(300183,42459,'blocks_11_split_5050_content_heading',''),(300184,42459,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(300185,42459,'blocks_11_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(300186,42459,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(300187,42459,'blocks_11_split_5050_content_actions',''),(300188,42459,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(300189,42459,'blocks_11_split_5050_content',''),(300190,42459,'_blocks_11_split_5050_content','field_61767afceb8ba'),(300191,42459,'blocks_17_acfe_flexible_toggle',''),(300192,42459,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300193,42459,'blocks_17_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(300194,42459,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300195,42459,'blocks_17_options_theme','#ffffff'),(300196,42459,'_blocks_17_options_theme','field_6176830e2ad17'),(300197,42459,'blocks_17_options',''),(300198,42459,'_blocks_17_options','field_6176830e2ad16'),(300199,42459,'blocks_17_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(300200,42459,'_blocks_17_text_block_heading','field_617669d413097'),(300201,42459,'blocks_17_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(300202,42459,'_blocks_17_text_block_content','field_617669ec13098'),(300203,42459,'blocks_16_acfe_flexible_toggle',''),(300204,42459,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300205,42459,'blocks_16_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(300206,42459,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300207,42459,'blocks_16_options_theme','#ffffff'),(300208,42459,'_blocks_16_options_theme','field_6176830e2ad17'),(300209,42459,'blocks_16_options',''),(300210,42459,'_blocks_16_options','field_6176830e2ad16'),(300211,42459,'blocks_16_text_block_heading','The Role of MSK Education in Workplace Health'),(300212,42459,'_blocks_16_text_block_heading','field_617669d413097'),(300213,42459,'blocks_16_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(300214,42459,'_blocks_16_text_block_content','field_617669ec13098'),(300215,42459,'blocks_8_acfe_flexible_toggle',''),(300216,42459,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(300217,42459,'blocks_8_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(300218,42459,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(300219,42459,'blocks_8_options_theme','#ffffff'),(300220,42459,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(300221,42459,'blocks_8_options_state','0'),(300222,42459,'_blocks_8_options_state','field_6239fcb7508c5'),(300223,42459,'blocks_8_options',''),(300224,42459,'_blocks_8_options','field_6177e2991ac44'),(300225,42459,'blocks_8_content_title','Common MSK Conditions'),(300226,42459,'_blocks_8_content_title','field_64d237e8bb1e2'),(300227,42459,'blocks_8_content_heading','Common MSK Conditions'),(300228,42459,'_blocks_8_content_heading','field_64d237e8bb1e3'),(300229,42459,'blocks_8_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(300230,42459,'_blocks_8_content_text','field_64d237e8bb1e4'),(300231,42459,'blocks_8_content_actions',''),(300232,42459,'_blocks_8_content_actions','field_64d237e8bb1e5'),(300233,42459,'blocks_8_content_align','left'),(300234,42459,'_blocks_8_content_align','field_64d2443e6b6aa'),(300235,42459,'blocks_8_content',''),(300236,42459,'_blocks_8_content','field_64d237e8bb1e1'),(300237,42459,'blocks_8_accordion_content','custom'),(300238,42459,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(300239,42459,'blocks_8_accordion_items_0_title','Osteoarthritis'),(300240,42459,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(300241,42459,'blocks_8_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(300242,42459,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(300243,42459,'blocks_8_accordion_items_1_title','Rheumatoid Arthritis'),(300244,42459,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(300245,42459,'blocks_8_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(300246,42459,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(300247,42459,'blocks_8_accordion_items_2_title','Back Pain'),(300248,42459,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(300249,42459,'blocks_8_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(300250,42459,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(300251,42459,'blocks_8_accordion_items_3_title','Osteoporosis'),(300252,42459,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(300253,42459,'blocks_8_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(300254,42459,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(300255,42459,'blocks_8_accordion_items_4_title','Tendinitis'),(300256,42459,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(300257,42459,'blocks_8_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(300258,42459,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(300259,42459,'blocks_8_accordion_items_5_title','Carpal Tunnel Syndrome'),(300260,42459,'_blocks_8_accordion_items_5_title','field_6177e2991ac4d'),(300261,42459,'blocks_8_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(300262,42459,'_blocks_8_accordion_items_5_text','field_6177e2991ac4e'),(300263,42459,'blocks_8_accordion_items_6_title','Fibromyalgia'),(300264,42459,'_blocks_8_accordion_items_6_title','field_6177e2991ac4d'),(300265,42459,'blocks_8_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(300266,42459,'_blocks_8_accordion_items_6_text','field_6177e2991ac4e'),(300267,42459,'blocks_8_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(300268,42459,'_blocks_8_accordion_items_7_title','field_6177e2991ac4d'),(300269,42459,'blocks_8_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(300270,42459,'_blocks_8_accordion_items_7_text','field_6177e2991ac4e'),(300271,42459,'blocks_8_accordion_items','8'),(300272,42459,'_blocks_8_accordion_items','field_6177e2991ac4c'),(300273,42459,'blocks_8_actions',''),(300274,42459,'_blocks_8_actions','field_61a746a817f7a'),(300275,42459,'blocks_9_acfe_flexible_toggle',''),(300276,42459,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300277,42459,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(300278,42459,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300279,42459,'blocks_9_options_theme','#f5f5f5'),(300280,42459,'_blocks_9_options_theme','field_6176830e2ad17'),(300281,42459,'blocks_9_options',''),(300282,42459,'_blocks_9_options','field_6176830e2ad16'),(300283,42459,'blocks_9_text_block_heading','The Importance of MSK Education'),(300284,42459,'_blocks_9_text_block_heading','field_617669d413097'),(300285,42459,'blocks_9_text_block_content',''),(300286,42459,'_blocks_9_text_block_content','field_617669ec13098'),(300287,42459,'blocks_12_acfe_flexible_toggle',''),(300288,42459,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300289,42459,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(300290,42459,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300291,42459,'blocks_12_options_theme','#f5f5f5'),(300292,42459,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(300293,42459,'blocks_12_options_reverse','1'),(300294,42459,'_blocks_12_options_reverse','field_61768049bb8ac'),(300295,42459,'blocks_12_options',''),(300296,42459,'_blocks_12_options','field_617682517c334'),(300297,42459,'blocks_12_split_5050_image','18856'),(300298,42459,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(300299,42459,'blocks_12_split_5050_video',''),(300300,42459,'_blocks_12_split_5050_video','field_6239f3160848a'),(300301,42459,'blocks_12_split_5050_content_title',''),(300302,42459,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(300303,42459,'blocks_12_split_5050_content_heading',''),(300304,42459,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(300305,42459,'blocks_12_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(300306,42459,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(300307,42459,'blocks_12_split_5050_content_actions',''),(300308,42459,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(300309,42459,'blocks_12_split_5050_content',''),(300310,42459,'_blocks_12_split_5050_content','field_61767afceb8ba'),(300311,42459,'blocks_13_acfe_flexible_toggle',''),(300312,42459,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300313,42459,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(300314,42459,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300315,42459,'blocks_13_options_theme','#b61234'),(300316,42459,'_blocks_13_options_theme','field_6176830e2ad17'),(300317,42459,'blocks_13_options',''),(300318,42459,'_blocks_13_options','field_6176830e2ad16'),(300319,42459,'blocks_13_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(300320,42459,'_blocks_13_text_block_heading','field_617669d413097'),(300321,42459,'blocks_13_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(300322,42459,'_blocks_13_text_block_content','field_617669ec13098'),(300323,42459,'blocks_14_acfe_flexible_toggle',''),(300324,42459,'_blocks_14_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(300325,42459,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(300326,42459,'_blocks_14_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(300327,42459,'blocks_14_options_theme','#b61234'),(300328,42459,'_blocks_14_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(300329,42459,'blocks_14_options_format','row'),(300330,42459,'_blocks_14_options_format','field_64bfde9a90690'),(300331,42459,'blocks_14_options',''),(300332,42459,'_blocks_14_options','field_64bfdd9b90684'),(300333,42459,'blocks_14_icon_row_items_0_icon','pass-rate.svg'),(300334,42459,'_blocks_14_icon_row_items_0_icon','field_64bfdd9b9068d'),(300335,42459,'blocks_14_icon_row_items_0_label','More Accurate Assessments'),(300336,42459,'_blocks_14_icon_row_items_0_label','field_64bfdd9c9068e'),(300337,42459,'blocks_14_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(300338,42459,'_blocks_14_icon_row_items_0_text','field_64bfdd9c9068f'),(300339,42459,'blocks_14_icon_row_items_1_icon','exceptional-support.svg'),(300340,42459,'_blocks_14_icon_row_items_1_icon','field_64bfdd9b9068d'),(300341,42459,'blocks_14_icon_row_items_1_label','Personalised Movement Strategies'),(300342,42459,'_blocks_14_icon_row_items_1_label','field_64bfdd9c9068e'),(300343,42459,'blocks_14_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(300344,42459,'_blocks_14_icon_row_items_1_text','field_64bfdd9c9068f'),(300345,42459,'blocks_14_icon_row_items_2_icon','lifetime-course-access.svg'),(300346,42459,'_blocks_14_icon_row_items_2_icon','field_64bfdd9b9068d'),(300347,42459,'blocks_14_icon_row_items_2_label','Injury Prevention and Longevity'),(300348,42459,'_blocks_14_icon_row_items_2_label','field_64bfdd9c9068e'),(300349,42459,'blocks_14_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(300350,42459,'_blocks_14_icon_row_items_2_text','field_64bfdd9c9068f'),(300351,42459,'blocks_14_icon_row_items_3_icon','recognised.svg'),(300352,42459,'_blocks_14_icon_row_items_3_icon','field_64bfdd9b9068d'),(300353,42459,'blocks_14_icon_row_items_3_label','Optimised Performance'),(300354,42459,'_blocks_14_icon_row_items_3_label','field_64bfdd9c9068e'),(300355,42459,'blocks_14_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(300356,42459,'_blocks_14_icon_row_items_3_text','field_64bfdd9c9068f'),(300357,42459,'blocks_14_icon_row_items','4'),(300358,42459,'_blocks_14_icon_row_items','field_64bfdd9b9068c'),(300359,42459,'blocks_15_acfe_flexible_toggle',''),(300360,42459,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300361,42459,'blocks_15_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(300362,42459,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300363,42459,'blocks_15_options_theme','#ffffff'),(300364,42459,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(300365,42459,'blocks_15_options_reverse','0'),(300366,42459,'_blocks_15_options_reverse','field_61768049bb8ac'),(300367,42459,'blocks_15_options',''),(300368,42459,'_blocks_15_options','field_617682517c334'),(300369,42459,'blocks_15_split_5050_image','41501'),(300370,42459,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(300371,42459,'blocks_15_split_5050_video',''),(300372,42459,'_blocks_15_split_5050_video','field_6239f3160848a'),(300373,42459,'blocks_15_split_5050_content_title',''),(300374,42459,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(300375,42459,'blocks_15_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(300376,42459,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(300377,42459,'blocks_15_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(300378,42459,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(300379,42459,'blocks_15_split_5050_content_actions',''),(300380,42459,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(300381,42459,'blocks_15_split_5050_content',''),(300382,42459,'_blocks_15_split_5050_content','field_61767afceb8ba'),(300383,42459,'blocks_18_acfe_flexible_toggle',''),(300384,42459,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300385,42459,'blocks_18_acfe_flexible_layout_title','Conclusion'),(300386,42459,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300387,42459,'blocks_18_options_theme','#f5f5f5'),(300388,42459,'_blocks_18_options_theme','field_6176830e2ad17'),(300389,42459,'blocks_18_options',''),(300390,42459,'_blocks_18_options','field_6176830e2ad16'),(300391,42459,'blocks_18_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(300392,42459,'_blocks_18_text_block_heading','field_617669d413097'),(300393,42459,'blocks_18_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(300394,42459,'_blocks_18_text_block_content','field_617669ec13098'),(300395,42459,'blocks_19_acfe_flexible_toggle',''),(300396,42459,'_blocks_19_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(300397,42459,'blocks_19_acfe_flexible_layout_title','Promo Panel'),(300398,42459,'_blocks_19_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(300399,42459,'blocks_19_options_alignment','center'),(300400,42459,'_blocks_19_options_alignment','field_61769449f5490'),(300401,42459,'blocks_19_options',''),(300402,42459,'_blocks_19_options','field_617693e1428f0'),(300403,42459,'blocks_19_promo_panel_image','40342'),(300404,42459,'_blocks_19_promo_panel_image','field_617693e1428f3'),(300405,42459,'blocks_19_promo_panel_content_heading','Want to Get Started?'),(300406,42459,'_blocks_19_promo_panel_content_heading','field_617693e1428f6'),(300407,42459,'blocks_19_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(300408,42459,'_blocks_19_promo_panel_content_text','field_617693e1428f7'),(300409,42459,'blocks_19_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(300410,42459,'_blocks_19_promo_panel_content_actions_0_button','field_617693e1428f9'),(300411,42459,'blocks_19_promo_panel_content_actions','1'),(300412,42459,'_blocks_19_promo_panel_content_actions','field_617693e1428f8'),(300413,42459,'blocks_19_promo_panel_content',''),(300414,42459,'_blocks_19_promo_panel_content','field_617693e1428f4'),(300415,42459,'blocks_6_acfe_flexible_toggle',''),(300416,42459,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(300417,42459,'blocks_6_acfe_flexible_layout_title','Cards'),(300418,42459,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(300419,42459,'blocks_6_options_theme','#b61234'),(300420,42459,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(300421,42459,'blocks_6_options_format','stack'),(300422,42459,'_blocks_6_options_format','field_617a7b15245b5'),(300423,42459,'blocks_6_options_style','default'),(300424,42459,'_blocks_6_options_style','field_6278ffb63484a'),(300425,42459,'blocks_6_options_cards_current_listing','0'),(300426,42459,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(300427,42459,'blocks_6_options_cards_content','custom'),(300428,42459,'_blocks_6_options_cards_content','field_617aba6122688'),(300429,42459,'blocks_6_options',''),(300430,42459,'_blocks_6_options','field_617a7b15245b3'),(300431,42459,'blocks_6_cards_custom_0_image',''),(300432,42459,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(300433,42459,'blocks_6_cards_custom_0_title','First Thing'),(300434,42459,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(300435,42459,'blocks_6_cards_custom_0_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(300436,42459,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(300437,42459,'blocks_6_cards_custom_0_link',''),(300438,42459,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(300439,42459,'blocks_6_cards_custom_1_image',''),(300440,42459,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(300441,42459,'blocks_6_cards_custom_1_title','Second thing'),(300442,42459,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(300443,42459,'blocks_6_cards_custom_1_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(300444,42459,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(300445,42459,'blocks_6_cards_custom_1_link',''),(300446,42459,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(300447,42459,'blocks_6_cards_custom_2_image',''),(300448,42459,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(300449,42459,'blocks_6_cards_custom_2_title','Ergonomists and Occupational Health Specialists'),(300450,42459,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(300451,42459,'blocks_6_cards_custom_2_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(300452,42459,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(300453,42459,'blocks_6_cards_custom_2_link',''),(300454,42459,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(300455,42459,'blocks_6_cards_custom','3'),(300456,42459,'_blocks_6_cards_custom','field_6194cbf84d386'),(300457,42459,'blocks_7_acfe_flexible_toggle',''),(300458,42459,'_blocks_7_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(300459,42459,'blocks_7_acfe_flexible_layout_title','Who Should Study MSK?'),(300460,42459,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(300461,42459,'blocks_7_options_theme','#b61234'),(300462,42459,'_blocks_7_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(300463,42459,'blocks_7_options',''),(300464,42459,'_blocks_7_options','field_6177cfcd8140f'),(300465,42459,'blocks_7_tabs_0_tab_label','Aspiring Healthcare Professionals'),(300466,42459,'_blocks_7_tabs_0_tab_label','field_6177d0068141a'),(300467,42459,'blocks_7_tabs_0_tab_content_title',''),(300468,42459,'_blocks_7_tabs_0_tab_content_title','field_6177cfcd81414'),(300469,42459,'blocks_7_tabs_0_tab_content_heading',''),(300470,42459,'_blocks_7_tabs_0_tab_content_heading','field_6177cfcd81415'),(300471,42459,'blocks_7_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(300472,42459,'_blocks_7_tabs_0_tab_content_text','field_6177cfcd81416'),(300473,42459,'blocks_7_tabs_0_tab_content_actions',''),(300474,42459,'_blocks_7_tabs_0_tab_content_actions','field_6177cfcd81417'),(300475,42459,'blocks_7_tabs_0_tab_content',''),(300476,42459,'_blocks_7_tabs_0_tab_content','field_6177cfcd81413'),(300477,42459,'blocks_7_tabs_0_tab_image','41542'),(300478,42459,'_blocks_7_tabs_0_tab_image','field_6177cfcd81412'),(300479,42459,'blocks_7_tabs_1_tab_label','Current Practitioners'),(300480,42459,'_blocks_7_tabs_1_tab_label','field_6177d0068141a'),(300481,42459,'blocks_7_tabs_1_tab_content_title',''),(300482,42459,'_blocks_7_tabs_1_tab_content_title','field_6177cfcd81414'),(300483,42459,'blocks_7_tabs_1_tab_content_heading',''),(300484,42459,'_blocks_7_tabs_1_tab_content_heading','field_6177cfcd81415'),(300485,42459,'blocks_7_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(300486,42459,'_blocks_7_tabs_1_tab_content_text','field_6177cfcd81416'),(300487,42459,'blocks_7_tabs_1_tab_content_actions',''),(300488,42459,'_blocks_7_tabs_1_tab_content_actions','field_6177cfcd81417'),(300489,42459,'blocks_7_tabs_1_tab_content',''),(300490,42459,'_blocks_7_tabs_1_tab_content','field_6177cfcd81413'),(300491,42459,'blocks_7_tabs_1_tab_image','41505'),(300492,42459,'_blocks_7_tabs_1_tab_image','field_6177cfcd81412'),(300493,42459,'blocks_7_tabs_2_tab_label','Fitness and Sports Professionals'),(300494,42459,'_blocks_7_tabs_2_tab_label','field_6177d0068141a'),(300495,42459,'blocks_7_tabs_2_tab_content_title',''),(300496,42459,'_blocks_7_tabs_2_tab_content_title','field_6177cfcd81414'),(300497,42459,'blocks_7_tabs_2_tab_content_heading',''),(300498,42459,'_blocks_7_tabs_2_tab_content_heading','field_6177cfcd81415'),(300499,42459,'blocks_7_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(300500,42459,'_blocks_7_tabs_2_tab_content_text','field_6177cfcd81416'),(300501,42459,'blocks_7_tabs_2_tab_content_actions',''),(300502,42459,'_blocks_7_tabs_2_tab_content_actions','field_6177cfcd81417'),(300503,42459,'blocks_7_tabs_2_tab_content',''),(300504,42459,'_blocks_7_tabs_2_tab_content','field_6177cfcd81413'),(300505,42459,'blocks_7_tabs_2_tab_image','41539'),(300506,42459,'_blocks_7_tabs_2_tab_image','field_6177cfcd81412'),(300507,42459,'blocks_7_tabs_3_tab_label','Educators and Researchers'),(300508,42459,'_blocks_7_tabs_3_tab_label','field_6177d0068141a'),(300509,42459,'blocks_7_tabs_3_tab_content_title',''),(300510,42459,'_blocks_7_tabs_3_tab_content_title','field_6177cfcd81414'),(300511,42459,'blocks_7_tabs_3_tab_content_heading',''),(300512,42459,'_blocks_7_tabs_3_tab_content_heading','field_6177cfcd81415'),(300513,42459,'blocks_7_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(300514,42459,'_blocks_7_tabs_3_tab_content_text','field_6177cfcd81416'),(300515,42459,'blocks_7_tabs_3_tab_content_actions',''),(300516,42459,'_blocks_7_tabs_3_tab_content_actions','field_6177cfcd81417'),(300517,42459,'blocks_7_tabs_3_tab_content',''),(300518,42459,'_blocks_7_tabs_3_tab_content','field_6177cfcd81413'),(300519,42459,'blocks_7_tabs_3_tab_image','41502'),(300520,42459,'_blocks_7_tabs_3_tab_image','field_6177cfcd81412'),(300521,42459,'blocks_7_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(300522,42459,'_blocks_7_tabs_4_tab_label','field_6177d0068141a'),(300523,42459,'blocks_7_tabs_4_tab_content_title',''),(300524,42459,'_blocks_7_tabs_4_tab_content_title','field_6177cfcd81414'),(300525,42459,'blocks_7_tabs_4_tab_content_heading',''),(300526,42459,'_blocks_7_tabs_4_tab_content_heading','field_6177cfcd81415'),(300527,42459,'blocks_7_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(300528,42459,'_blocks_7_tabs_4_tab_content_text','field_6177cfcd81416'),(300529,42459,'blocks_7_tabs_4_tab_content_actions',''),(300530,42459,'_blocks_7_tabs_4_tab_content_actions','field_6177cfcd81417'),(300531,42459,'blocks_7_tabs_4_tab_content',''),(300532,42459,'_blocks_7_tabs_4_tab_content','field_6177cfcd81413'),(300533,42459,'blocks_7_tabs_4_tab_image','41506'),(300534,42459,'_blocks_7_tabs_4_tab_image','field_6177cfcd81412'),(300535,42459,'blocks_7_tabs','5'),(300536,42459,'_blocks_7_tabs','field_6177cff281419'),(300537,42459,'blocks_6_cards_row_content_title',''),(300538,42459,'_blocks_6_cards_row_content_title','field_6194fc1bc99fd'),(300539,42459,'blocks_6_cards_row_content_heading',''),(300540,42459,'_blocks_6_cards_row_content_heading','field_6194fc1bc99fe'),(300541,42459,'blocks_6_cards_row_content_text',''),(300542,42459,'_blocks_6_cards_row_content_text','field_6194fc1bc99ff'),(300543,42459,'blocks_6_cards_row_content_actions',''),(300544,42459,'_blocks_6_cards_row_content_actions','field_6194fc1bc9a00'),(300545,42459,'blocks_6_cards_row_content',''),(300546,42459,'_blocks_6_cards_row_content','field_6194fc1bc99fc'),(300547,42460,'hide_hero','0'),(300548,42460,'_hide_hero','field_66a2380fcda39'),(300549,42460,'hero_title',''),(300550,42460,'_hero_title','field_617571fe285e8'),(300551,42460,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(300552,42460,'_hero_text','field_6175723c285e9'),(300553,42460,'hero_actions','1'),(300554,42460,'_hero_actions','field_61757270285ea'),(300555,42460,'hero_style','default'),(300556,42460,'_hero_style','field_62051d9dc5324'),(300557,42460,'hero_image_pos_x','right'),(300558,42460,'_hero_image_pos_x','field_62ec3d05390bb'),(300559,42460,'hero_image_pos_y','top'),(300560,42460,'_hero_image_pos_y','field_62ec3d05390bc'),(300561,42460,'hero_image_pos',''),(300562,42460,'_hero_image_pos','field_62ec3d05390ba'),(300563,42460,'fft_hide_from_listings','0'),(300564,42460,'_fft_hide_from_listings','field_61f1320446ab2'),(300565,42460,'post_format','402'),(300566,42460,'_post_format','field_61756bfb51898'),(300567,42460,'post_author',''),(300568,42460,'_post_author','field_62ec389d22113'),(300569,42460,'post_reviewer',''),(300570,42460,'_post_reviewer','field_627140a2a9800'),(300571,42460,'post_table_of_contents','0'),(300572,42460,'_post_table_of_contents','field_65c503bc846a6'),(300573,42460,'blocks','a:20:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:4:\"tabs\";i:8;s:10:\"accordions\";i:9;s:10:\"text_block\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:5:\"icons\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:11:\"promo_panel\";}'),(300574,42460,'_blocks','field_6176696113096'),(300575,42460,'_thumbnail_id','41331'),(300576,42460,'__thumbnail_id','field_617570855ddaf'),(300577,42460,'blocks_0_acfe_flexible_toggle',''),(300578,42460,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(300579,42460,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(300580,42460,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(300581,42460,'blocks_0_options_theme','#ffffff'),(300582,42460,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(300583,42460,'blocks_0_options',''),(300584,42460,'_blocks_0_options','field_6177b758246ae'),(300585,42460,'blocks_0_link_stack_content_title',''),(300586,42460,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(300587,42460,'blocks_0_link_stack_content_heading','What is MSK?'),(300588,42460,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(300589,42460,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(300590,42460,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(300591,42460,'blocks_0_link_stack_content_actions_0_button',''),(300592,42460,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(300593,42460,'blocks_0_link_stack_content_actions','1'),(300594,42460,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(300595,42460,'blocks_0_link_stack_content',''),(300596,42460,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(300597,42460,'blocks_0_link_stack_0_label','1.'),(300598,42460,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(300599,42460,'blocks_0_link_stack_0_title','Overview'),(300600,42460,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(300601,42460,'blocks_0_link_stack_0_url','#overview'),(300602,42460,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(300603,42460,'blocks_0_link_stack_1_label','2.'),(300604,42460,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(300605,42460,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(300606,42460,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(300607,42460,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(300608,42460,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(300609,42460,'blocks_0_link_stack_2_label','3.'),(300610,42460,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(300611,42460,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(300612,42460,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(300613,42460,'blocks_0_link_stack_2_url','#who-should-study-msk'),(300614,42460,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(300615,42460,'blocks_0_link_stack_3_label','4.'),(300616,42460,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(300617,42460,'blocks_0_link_stack_3_title','Common MSK Conditions'),(300618,42460,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(300619,42460,'blocks_0_link_stack_3_url','#common-msk-conditions'),(300620,42460,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(300621,42460,'blocks_0_link_stack_4_label','5.'),(300622,42460,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(300623,42460,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(300624,42460,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(300625,42460,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(300626,42460,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(300627,42460,'blocks_0_link_stack_5_label','6.'),(300628,42460,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(300629,42460,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(300630,42460,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(300631,42460,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(300632,42460,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(300633,42460,'blocks_0_link_stack','6'),(300634,42460,'_blocks_0_link_stack','field_6177b7f600cff'),(300635,42460,'blocks_1_acfe_flexible_toggle',''),(300636,42460,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300637,42460,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(300638,42460,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300639,42460,'blocks_1_options_theme','#ffffff'),(300640,42460,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(300641,42460,'blocks_1_options_reverse','0'),(300642,42460,'_blocks_1_options_reverse','field_61768049bb8ac'),(300643,42460,'blocks_1_options',''),(300644,42460,'_blocks_1_options','field_617682517c334'),(300645,42460,'blocks_1_split_5050_image','40615'),(300646,42460,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(300647,42460,'blocks_1_split_5050_video',''),(300648,42460,'_blocks_1_split_5050_video','field_6239f3160848a'),(300649,42460,'blocks_1_split_5050_content_title',''),(300650,42460,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(300651,42460,'blocks_1_split_5050_content_heading','Overview'),(300652,42460,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(300653,42460,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(300654,42460,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(300655,42460,'blocks_1_split_5050_content_actions',''),(300656,42460,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(300657,42460,'blocks_1_split_5050_content',''),(300658,42460,'_blocks_1_split_5050_content','field_61767afceb8ba'),(300659,42460,'blocks_2_acfe_flexible_toggle',''),(300660,42460,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300661,42460,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(300662,42460,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300663,42460,'blocks_2_options_theme','#f5f5f5'),(300664,42460,'_blocks_2_options_theme','field_6176830e2ad17'),(300665,42460,'blocks_2_options',''),(300666,42460,'_blocks_2_options','field_6176830e2ad16'),(300667,42460,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(300668,42460,'_blocks_2_text_block_heading','field_617669d413097'),(300669,42460,'blocks_2_text_block_content',''),(300670,42460,'_blocks_2_text_block_content','field_617669ec13098'),(300671,42460,'blocks_3_acfe_flexible_toggle',''),(300672,42460,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300673,42460,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(300674,42460,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300675,42460,'blocks_3_options_theme','#f5f5f5'),(300676,42460,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(300677,42460,'blocks_3_options_reverse','1'),(300678,42460,'_blocks_3_options_reverse','field_61768049bb8ac'),(300679,42460,'blocks_3_options',''),(300680,42460,'_blocks_3_options','field_617682517c334'),(300681,42460,'blocks_3_split_5050_image','40618'),(300682,42460,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(300683,42460,'blocks_3_split_5050_video',''),(300684,42460,'_blocks_3_split_5050_video','field_6239f3160848a'),(300685,42460,'blocks_3_split_5050_content_title',''),(300686,42460,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(300687,42460,'blocks_3_split_5050_content_heading',''),(300688,42460,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(300689,42460,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(300690,42460,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(300691,42460,'blocks_3_split_5050_content_actions',''),(300692,42460,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(300693,42460,'blocks_3_split_5050_content',''),(300694,42460,'_blocks_3_split_5050_content','field_61767afceb8ba'),(300695,42460,'blocks_4_acfe_flexible_toggle','1'),(300696,42460,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300697,42460,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(300698,42460,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300699,42460,'blocks_4_options_theme','#f5f5f5'),(300700,42460,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(300701,42460,'blocks_4_options_reverse','1'),(300702,42460,'_blocks_4_options_reverse','field_61768049bb8ac'),(300703,42460,'blocks_4_options',''),(300704,42460,'_blocks_4_options','field_617682517c334'),(300705,42460,'blocks_4_split_5050_image','41330'),(300706,42460,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(300707,42460,'blocks_4_split_5050_video',''),(300708,42460,'_blocks_4_split_5050_video','field_6239f3160848a'),(300709,42460,'blocks_4_split_5050_content_title',''),(300710,42460,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(300711,42460,'blocks_4_split_5050_content_heading',''),(300712,42460,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(300713,42460,'blocks_4_split_5050_content_text',''),(300714,42460,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(300715,42460,'blocks_4_split_5050_content_actions',''),(300716,42460,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(300717,42460,'blocks_4_split_5050_content',''),(300718,42460,'_blocks_4_split_5050_content','field_61767afceb8ba'),(300719,42460,'blocks_5_acfe_flexible_toggle',''),(300720,42460,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300721,42460,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(300722,42460,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300723,42460,'blocks_5_options_theme','#b61234'),(300724,42460,'_blocks_5_options_theme','field_6176830e2ad17'),(300725,42460,'blocks_5_options',''),(300726,42460,'_blocks_5_options','field_6176830e2ad16'),(300727,42460,'blocks_5_text_block_heading','Who Should Study MSK?'),(300728,42460,'_blocks_5_text_block_heading','field_617669d413097'),(300729,42460,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(300730,42460,'_blocks_5_text_block_content','field_617669ec13098'),(300731,42460,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(300732,42460,'_hero_actions_0_button','field_61757281285eb'),(300733,42460,'blocks_10_acfe_flexible_toggle',''),(300734,42460,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300735,42460,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(300736,42460,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300737,42460,'blocks_10_options_theme','#f5f5f5'),(300738,42460,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(300739,42460,'blocks_10_options_reverse','1'),(300740,42460,'_blocks_10_options_reverse','field_61768049bb8ac'),(300741,42460,'blocks_10_options',''),(300742,42460,'_blocks_10_options','field_617682517c334'),(300743,42460,'blocks_10_split_5050_image','41498'),(300744,42460,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(300745,42460,'blocks_10_split_5050_video',''),(300746,42460,'_blocks_10_split_5050_video','field_6239f3160848a'),(300747,42460,'blocks_10_split_5050_content_title',''),(300748,42460,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(300749,42460,'blocks_10_split_5050_content_heading',''),(300750,42460,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(300751,42460,'blocks_10_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(300752,42460,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(300753,42460,'blocks_10_split_5050_content_actions',''),(300754,42460,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(300755,42460,'blocks_10_split_5050_content',''),(300756,42460,'_blocks_10_split_5050_content','field_61767afceb8ba'),(300757,42460,'blocks_11_acfe_flexible_toggle',''),(300758,42460,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300759,42460,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(300760,42460,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300761,42460,'blocks_11_options_theme','#f5f5f5'),(300762,42460,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(300763,42460,'blocks_11_options_reverse','1'),(300764,42460,'_blocks_11_options_reverse','field_61768049bb8ac'),(300765,42460,'blocks_11_options',''),(300766,42460,'_blocks_11_options','field_617682517c334'),(300767,42460,'blocks_11_split_5050_image','40387'),(300768,42460,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(300769,42460,'blocks_11_split_5050_video',''),(300770,42460,'_blocks_11_split_5050_video','field_6239f3160848a'),(300771,42460,'blocks_11_split_5050_content_title',''),(300772,42460,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(300773,42460,'blocks_11_split_5050_content_heading',''),(300774,42460,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(300775,42460,'blocks_11_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(300776,42460,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(300777,42460,'blocks_11_split_5050_content_actions',''),(300778,42460,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(300779,42460,'blocks_11_split_5050_content',''),(300780,42460,'_blocks_11_split_5050_content','field_61767afceb8ba'),(300781,42460,'blocks_17_acfe_flexible_toggle',''),(300782,42460,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300783,42460,'blocks_17_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(300784,42460,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300785,42460,'blocks_17_options_theme','#ffffff'),(300786,42460,'_blocks_17_options_theme','field_6176830e2ad17'),(300787,42460,'blocks_17_options',''),(300788,42460,'_blocks_17_options','field_6176830e2ad16'),(300789,42460,'blocks_17_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(300790,42460,'_blocks_17_text_block_heading','field_617669d413097'),(300791,42460,'blocks_17_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(300792,42460,'_blocks_17_text_block_content','field_617669ec13098'),(300793,42460,'blocks_16_acfe_flexible_toggle',''),(300794,42460,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300795,42460,'blocks_16_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(300796,42460,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300797,42460,'blocks_16_options_theme','#ffffff'),(300798,42460,'_blocks_16_options_theme','field_6176830e2ad17'),(300799,42460,'blocks_16_options',''),(300800,42460,'_blocks_16_options','field_6176830e2ad16'),(300801,42460,'blocks_16_text_block_heading','The Role of MSK Education in Workplace Health'),(300802,42460,'_blocks_16_text_block_heading','field_617669d413097'),(300803,42460,'blocks_16_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(300804,42460,'_blocks_16_text_block_content','field_617669ec13098'),(300805,42460,'blocks_8_acfe_flexible_toggle',''),(300806,42460,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(300807,42460,'blocks_8_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(300808,42460,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(300809,42460,'blocks_8_options_theme','#ffffff'),(300810,42460,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(300811,42460,'blocks_8_options_state','0'),(300812,42460,'_blocks_8_options_state','field_6239fcb7508c5'),(300813,42460,'blocks_8_options',''),(300814,42460,'_blocks_8_options','field_6177e2991ac44'),(300815,42460,'blocks_8_content_title','Common MSK Conditions'),(300816,42460,'_blocks_8_content_title','field_64d237e8bb1e2'),(300817,42460,'blocks_8_content_heading','Common MSK Conditions'),(300818,42460,'_blocks_8_content_heading','field_64d237e8bb1e3'),(300819,42460,'blocks_8_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(300820,42460,'_blocks_8_content_text','field_64d237e8bb1e4'),(300821,42460,'blocks_8_content_actions',''),(300822,42460,'_blocks_8_content_actions','field_64d237e8bb1e5'),(300823,42460,'blocks_8_content_align','left'),(300824,42460,'_blocks_8_content_align','field_64d2443e6b6aa'),(300825,42460,'blocks_8_content',''),(300826,42460,'_blocks_8_content','field_64d237e8bb1e1'),(300827,42460,'blocks_8_accordion_content','custom'),(300828,42460,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(300829,42460,'blocks_8_accordion_items_0_title','Osteoarthritis'),(300830,42460,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(300831,42460,'blocks_8_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(300832,42460,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(300833,42460,'blocks_8_accordion_items_1_title','Rheumatoid Arthritis'),(300834,42460,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(300835,42460,'blocks_8_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(300836,42460,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(300837,42460,'blocks_8_accordion_items_2_title','Back Pain'),(300838,42460,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(300839,42460,'blocks_8_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(300840,42460,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(300841,42460,'blocks_8_accordion_items_3_title','Osteoporosis'),(300842,42460,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(300843,42460,'blocks_8_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(300844,42460,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(300845,42460,'blocks_8_accordion_items_4_title','Tendinitis'),(300846,42460,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(300847,42460,'blocks_8_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(300848,42460,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(300849,42460,'blocks_8_accordion_items_5_title','Carpal Tunnel Syndrome'),(300850,42460,'_blocks_8_accordion_items_5_title','field_6177e2991ac4d'),(300851,42460,'blocks_8_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(300852,42460,'_blocks_8_accordion_items_5_text','field_6177e2991ac4e'),(300853,42460,'blocks_8_accordion_items_6_title','Fibromyalgia'),(300854,42460,'_blocks_8_accordion_items_6_title','field_6177e2991ac4d'),(300855,42460,'blocks_8_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(300856,42460,'_blocks_8_accordion_items_6_text','field_6177e2991ac4e'),(300857,42460,'blocks_8_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(300858,42460,'_blocks_8_accordion_items_7_title','field_6177e2991ac4d'),(300859,42460,'blocks_8_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(300860,42460,'_blocks_8_accordion_items_7_text','field_6177e2991ac4e'),(300861,42460,'blocks_8_accordion_items','8'),(300862,42460,'_blocks_8_accordion_items','field_6177e2991ac4c'),(300863,42460,'blocks_8_actions',''),(300864,42460,'_blocks_8_actions','field_61a746a817f7a'),(300865,42460,'blocks_9_acfe_flexible_toggle',''),(300866,42460,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300867,42460,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(300868,42460,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300869,42460,'blocks_9_options_theme','#f5f5f5'),(300870,42460,'_blocks_9_options_theme','field_6176830e2ad17'),(300871,42460,'blocks_9_options',''),(300872,42460,'_blocks_9_options','field_6176830e2ad16'),(300873,42460,'blocks_9_text_block_heading','The Importance of MSK Education'),(300874,42460,'_blocks_9_text_block_heading','field_617669d413097'),(300875,42460,'blocks_9_text_block_content',''),(300876,42460,'_blocks_9_text_block_content','field_617669ec13098'),(300877,42460,'blocks_12_acfe_flexible_toggle',''),(300878,42460,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300879,42460,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(300880,42460,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300881,42460,'blocks_12_options_theme','#f5f5f5'),(300882,42460,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(300883,42460,'blocks_12_options_reverse','1'),(300884,42460,'_blocks_12_options_reverse','field_61768049bb8ac'),(300885,42460,'blocks_12_options',''),(300886,42460,'_blocks_12_options','field_617682517c334'),(300887,42460,'blocks_12_split_5050_image','18856'),(300888,42460,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(300889,42460,'blocks_12_split_5050_video',''),(300890,42460,'_blocks_12_split_5050_video','field_6239f3160848a'),(300891,42460,'blocks_12_split_5050_content_title',''),(300892,42460,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(300893,42460,'blocks_12_split_5050_content_heading',''),(300894,42460,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(300895,42460,'blocks_12_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(300896,42460,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(300897,42460,'blocks_12_split_5050_content_actions',''),(300898,42460,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(300899,42460,'blocks_12_split_5050_content',''),(300900,42460,'_blocks_12_split_5050_content','field_61767afceb8ba'),(300901,42460,'blocks_13_acfe_flexible_toggle',''),(300902,42460,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300903,42460,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(300904,42460,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300905,42460,'blocks_13_options_theme','#b61234'),(300906,42460,'_blocks_13_options_theme','field_6176830e2ad17'),(300907,42460,'blocks_13_options',''),(300908,42460,'_blocks_13_options','field_6176830e2ad16'),(300909,42460,'blocks_13_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(300910,42460,'_blocks_13_text_block_heading','field_617669d413097'),(300911,42460,'blocks_13_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(300912,42460,'_blocks_13_text_block_content','field_617669ec13098'),(300913,42460,'blocks_14_acfe_flexible_toggle',''),(300914,42460,'_blocks_14_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(300915,42460,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(300916,42460,'_blocks_14_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(300917,42460,'blocks_14_options_theme','#b61234'),(300918,42460,'_blocks_14_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(300919,42460,'blocks_14_options_format','row'),(300920,42460,'_blocks_14_options_format','field_64bfde9a90690'),(300921,42460,'blocks_14_options',''),(300922,42460,'_blocks_14_options','field_64bfdd9b90684'),(300923,42460,'blocks_14_icon_row_items_0_icon','pass-rate.svg'),(300924,42460,'_blocks_14_icon_row_items_0_icon','field_64bfdd9b9068d'),(300925,42460,'blocks_14_icon_row_items_0_label','More Accurate Assessments'),(300926,42460,'_blocks_14_icon_row_items_0_label','field_64bfdd9c9068e'),(300927,42460,'blocks_14_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(300928,42460,'_blocks_14_icon_row_items_0_text','field_64bfdd9c9068f'),(300929,42460,'blocks_14_icon_row_items_1_icon','exceptional-support.svg'),(300930,42460,'_blocks_14_icon_row_items_1_icon','field_64bfdd9b9068d'),(300931,42460,'blocks_14_icon_row_items_1_label','Personalised Movement Strategies'),(300932,42460,'_blocks_14_icon_row_items_1_label','field_64bfdd9c9068e'),(300933,42460,'blocks_14_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(300934,42460,'_blocks_14_icon_row_items_1_text','field_64bfdd9c9068f'),(300935,42460,'blocks_14_icon_row_items_2_icon','lifetime-course-access.svg'),(300936,42460,'_blocks_14_icon_row_items_2_icon','field_64bfdd9b9068d'),(300937,42460,'blocks_14_icon_row_items_2_label','Injury Prevention and Longevity'),(300938,42460,'_blocks_14_icon_row_items_2_label','field_64bfdd9c9068e'),(300939,42460,'blocks_14_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(300940,42460,'_blocks_14_icon_row_items_2_text','field_64bfdd9c9068f'),(300941,42460,'blocks_14_icon_row_items_3_icon','recognised.svg'),(300942,42460,'_blocks_14_icon_row_items_3_icon','field_64bfdd9b9068d'),(300943,42460,'blocks_14_icon_row_items_3_label','Optimised Performance'),(300944,42460,'_blocks_14_icon_row_items_3_label','field_64bfdd9c9068e'),(300945,42460,'blocks_14_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(300946,42460,'_blocks_14_icon_row_items_3_text','field_64bfdd9c9068f'),(300947,42460,'blocks_14_icon_row_items','4'),(300948,42460,'_blocks_14_icon_row_items','field_64bfdd9b9068c'),(300949,42460,'blocks_15_acfe_flexible_toggle',''),(300950,42460,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(300951,42460,'blocks_15_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(300952,42460,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(300953,42460,'blocks_15_options_theme','#ffffff'),(300954,42460,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(300955,42460,'blocks_15_options_reverse','0'),(300956,42460,'_blocks_15_options_reverse','field_61768049bb8ac'),(300957,42460,'blocks_15_options',''),(300958,42460,'_blocks_15_options','field_617682517c334'),(300959,42460,'blocks_15_split_5050_image','41501'),(300960,42460,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(300961,42460,'blocks_15_split_5050_video',''),(300962,42460,'_blocks_15_split_5050_video','field_6239f3160848a'),(300963,42460,'blocks_15_split_5050_content_title',''),(300964,42460,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(300965,42460,'blocks_15_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(300966,42460,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(300967,42460,'blocks_15_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(300968,42460,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(300969,42460,'blocks_15_split_5050_content_actions',''),(300970,42460,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(300971,42460,'blocks_15_split_5050_content',''),(300972,42460,'_blocks_15_split_5050_content','field_61767afceb8ba'),(300973,42460,'blocks_18_acfe_flexible_toggle',''),(300974,42460,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(300975,42460,'blocks_18_acfe_flexible_layout_title','Conclusion'),(300976,42460,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(300977,42460,'blocks_18_options_theme','#f5f5f5'),(300978,42460,'_blocks_18_options_theme','field_6176830e2ad17'),(300979,42460,'blocks_18_options',''),(300980,42460,'_blocks_18_options','field_6176830e2ad16'),(300981,42460,'blocks_18_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(300982,42460,'_blocks_18_text_block_heading','field_617669d413097'),(300983,42460,'blocks_18_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(300984,42460,'_blocks_18_text_block_content','field_617669ec13098'),(300985,42460,'blocks_19_acfe_flexible_toggle',''),(300986,42460,'_blocks_19_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(300987,42460,'blocks_19_acfe_flexible_layout_title','Promo Panel'),(300988,42460,'_blocks_19_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(300989,42460,'blocks_19_options_alignment','center'),(300990,42460,'_blocks_19_options_alignment','field_61769449f5490'),(300991,42460,'blocks_19_options',''),(300992,42460,'_blocks_19_options','field_617693e1428f0'),(300993,42460,'blocks_19_promo_panel_image','40342'),(300994,42460,'_blocks_19_promo_panel_image','field_617693e1428f3'),(300995,42460,'blocks_19_promo_panel_content_heading','Want to Get Started?'),(300996,42460,'_blocks_19_promo_panel_content_heading','field_617693e1428f6'),(300997,42460,'blocks_19_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(300998,42460,'_blocks_19_promo_panel_content_text','field_617693e1428f7'),(300999,42460,'blocks_19_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(301000,42460,'_blocks_19_promo_panel_content_actions_0_button','field_617693e1428f9'),(301001,42460,'blocks_19_promo_panel_content_actions','1'),(301002,42460,'_blocks_19_promo_panel_content_actions','field_617693e1428f8'),(301003,42460,'blocks_19_promo_panel_content',''),(301004,42460,'_blocks_19_promo_panel_content','field_617693e1428f4'),(301005,42460,'blocks_6_acfe_flexible_toggle',''),(301006,42460,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(301007,42460,'blocks_6_acfe_flexible_layout_title','Cards'),(301008,42460,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(301009,42460,'blocks_6_options_theme','#b61234'),(301010,42460,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(301011,42460,'blocks_6_options_format','carousel'),(301012,42460,'_blocks_6_options_format','field_617a7b15245b5'),(301013,42460,'blocks_6_options_style','default'),(301014,42460,'_blocks_6_options_style','field_6278ffb63484a'),(301015,42460,'blocks_6_options_cards_current_listing','0'),(301016,42460,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(301017,42460,'blocks_6_options_cards_content','custom'),(301018,42460,'_blocks_6_options_cards_content','field_617aba6122688'),(301019,42460,'blocks_6_options',''),(301020,42460,'_blocks_6_options','field_617a7b15245b3'),(301021,42460,'blocks_6_cards_custom_0_image',''),(301022,42460,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(301023,42460,'blocks_6_cards_custom_0_title','First Thing'),(301024,42460,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(301025,42460,'blocks_6_cards_custom_0_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(301026,42460,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(301027,42460,'blocks_6_cards_custom_0_link',''),(301028,42460,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(301029,42460,'blocks_6_cards_custom_1_image',''),(301030,42460,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(301031,42460,'blocks_6_cards_custom_1_title','Second thing'),(301032,42460,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(301033,42460,'blocks_6_cards_custom_1_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(301034,42460,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(301035,42460,'blocks_6_cards_custom_1_link',''),(301036,42460,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(301037,42460,'blocks_6_cards_custom_2_image',''),(301038,42460,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(301039,42460,'blocks_6_cards_custom_2_title','Ergonomists and Occupational Health Specialists'),(301040,42460,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(301041,42460,'blocks_6_cards_custom_2_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(301042,42460,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(301043,42460,'blocks_6_cards_custom_2_link',''),(301044,42460,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(301045,42460,'blocks_6_cards_custom','3'),(301046,42460,'_blocks_6_cards_custom','field_6194cbf84d386'),(301047,42460,'blocks_7_acfe_flexible_toggle',''),(301048,42460,'_blocks_7_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(301049,42460,'blocks_7_acfe_flexible_layout_title','Who Should Study MSK?'),(301050,42460,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(301051,42460,'blocks_7_options_theme','#b61234'),(301052,42460,'_blocks_7_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(301053,42460,'blocks_7_options',''),(301054,42460,'_blocks_7_options','field_6177cfcd8140f'),(301055,42460,'blocks_7_tabs_0_tab_label','Aspiring Healthcare Professionals'),(301056,42460,'_blocks_7_tabs_0_tab_label','field_6177d0068141a'),(301057,42460,'blocks_7_tabs_0_tab_content_title',''),(301058,42460,'_blocks_7_tabs_0_tab_content_title','field_6177cfcd81414'),(301059,42460,'blocks_7_tabs_0_tab_content_heading',''),(301060,42460,'_blocks_7_tabs_0_tab_content_heading','field_6177cfcd81415'),(301061,42460,'blocks_7_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(301062,42460,'_blocks_7_tabs_0_tab_content_text','field_6177cfcd81416'),(301063,42460,'blocks_7_tabs_0_tab_content_actions',''),(301064,42460,'_blocks_7_tabs_0_tab_content_actions','field_6177cfcd81417'),(301065,42460,'blocks_7_tabs_0_tab_content',''),(301066,42460,'_blocks_7_tabs_0_tab_content','field_6177cfcd81413'),(301067,42460,'blocks_7_tabs_0_tab_image','41542'),(301068,42460,'_blocks_7_tabs_0_tab_image','field_6177cfcd81412'),(301069,42460,'blocks_7_tabs_1_tab_label','Current Practitioners'),(301070,42460,'_blocks_7_tabs_1_tab_label','field_6177d0068141a'),(301071,42460,'blocks_7_tabs_1_tab_content_title',''),(301072,42460,'_blocks_7_tabs_1_tab_content_title','field_6177cfcd81414'),(301073,42460,'blocks_7_tabs_1_tab_content_heading',''),(301074,42460,'_blocks_7_tabs_1_tab_content_heading','field_6177cfcd81415'),(301075,42460,'blocks_7_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(301076,42460,'_blocks_7_tabs_1_tab_content_text','field_6177cfcd81416'),(301077,42460,'blocks_7_tabs_1_tab_content_actions',''),(301078,42460,'_blocks_7_tabs_1_tab_content_actions','field_6177cfcd81417'),(301079,42460,'blocks_7_tabs_1_tab_content',''),(301080,42460,'_blocks_7_tabs_1_tab_content','field_6177cfcd81413'),(301081,42460,'blocks_7_tabs_1_tab_image','41505'),(301082,42460,'_blocks_7_tabs_1_tab_image','field_6177cfcd81412'),(301083,42460,'blocks_7_tabs_2_tab_label','Fitness and Sports Professionals'),(301084,42460,'_blocks_7_tabs_2_tab_label','field_6177d0068141a'),(301085,42460,'blocks_7_tabs_2_tab_content_title',''),(301086,42460,'_blocks_7_tabs_2_tab_content_title','field_6177cfcd81414'),(301087,42460,'blocks_7_tabs_2_tab_content_heading',''),(301088,42460,'_blocks_7_tabs_2_tab_content_heading','field_6177cfcd81415'),(301089,42460,'blocks_7_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(301090,42460,'_blocks_7_tabs_2_tab_content_text','field_6177cfcd81416'),(301091,42460,'blocks_7_tabs_2_tab_content_actions',''),(301092,42460,'_blocks_7_tabs_2_tab_content_actions','field_6177cfcd81417'),(301093,42460,'blocks_7_tabs_2_tab_content',''),(301094,42460,'_blocks_7_tabs_2_tab_content','field_6177cfcd81413'),(301095,42460,'blocks_7_tabs_2_tab_image','41539'),(301096,42460,'_blocks_7_tabs_2_tab_image','field_6177cfcd81412'),(301097,42460,'blocks_7_tabs_3_tab_label','Educators and Researchers'),(301098,42460,'_blocks_7_tabs_3_tab_label','field_6177d0068141a'),(301099,42460,'blocks_7_tabs_3_tab_content_title',''),(301100,42460,'_blocks_7_tabs_3_tab_content_title','field_6177cfcd81414'),(301101,42460,'blocks_7_tabs_3_tab_content_heading',''),(301102,42460,'_blocks_7_tabs_3_tab_content_heading','field_6177cfcd81415'),(301103,42460,'blocks_7_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(301104,42460,'_blocks_7_tabs_3_tab_content_text','field_6177cfcd81416'),(301105,42460,'blocks_7_tabs_3_tab_content_actions',''),(301106,42460,'_blocks_7_tabs_3_tab_content_actions','field_6177cfcd81417'),(301107,42460,'blocks_7_tabs_3_tab_content',''),(301108,42460,'_blocks_7_tabs_3_tab_content','field_6177cfcd81413'),(301109,42460,'blocks_7_tabs_3_tab_image','41502'),(301110,42460,'_blocks_7_tabs_3_tab_image','field_6177cfcd81412'),(301111,42460,'blocks_7_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(301112,42460,'_blocks_7_tabs_4_tab_label','field_6177d0068141a'),(301113,42460,'blocks_7_tabs_4_tab_content_title',''),(301114,42460,'_blocks_7_tabs_4_tab_content_title','field_6177cfcd81414'),(301115,42460,'blocks_7_tabs_4_tab_content_heading',''),(301116,42460,'_blocks_7_tabs_4_tab_content_heading','field_6177cfcd81415'),(301117,42460,'blocks_7_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(301118,42460,'_blocks_7_tabs_4_tab_content_text','field_6177cfcd81416'),(301119,42460,'blocks_7_tabs_4_tab_content_actions',''),(301120,42460,'_blocks_7_tabs_4_tab_content_actions','field_6177cfcd81417'),(301121,42460,'blocks_7_tabs_4_tab_content',''),(301122,42460,'_blocks_7_tabs_4_tab_content','field_6177cfcd81413'),(301123,42460,'blocks_7_tabs_4_tab_image','41506'),(301124,42460,'_blocks_7_tabs_4_tab_image','field_6177cfcd81412'),(301125,42460,'blocks_7_tabs','5'),(301126,42460,'_blocks_7_tabs','field_6177cff281419'),(301127,42460,'blocks_6_cards_row_content_title',''),(301128,42460,'_blocks_6_cards_row_content_title','field_6194fc1bc99fd'),(301129,42460,'blocks_6_cards_row_content_heading',''),(301130,42460,'_blocks_6_cards_row_content_heading','field_6194fc1bc99fe'),(301131,42460,'blocks_6_cards_row_content_text',''),(301132,42460,'_blocks_6_cards_row_content_text','field_6194fc1bc99ff'),(301133,42460,'blocks_6_cards_row_content_actions',''),(301134,42460,'_blocks_6_cards_row_content_actions','field_6194fc1bc9a00'),(301135,42460,'blocks_6_cards_row_content',''),(301136,42460,'_blocks_6_cards_row_content','field_6194fc1bc99fc'),(301137,42461,'hide_hero','0'),(301138,42461,'_hide_hero','field_66a2380fcda39'),(301139,42461,'hero_title',''),(301140,42461,'_hero_title','field_617571fe285e8'),(301141,42461,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(301142,42461,'_hero_text','field_6175723c285e9'),(301143,42461,'hero_actions','1'),(301144,42461,'_hero_actions','field_61757270285ea'),(301145,42461,'hero_style','default'),(301146,42461,'_hero_style','field_62051d9dc5324'),(301147,42461,'hero_image_pos_x','right'),(301148,42461,'_hero_image_pos_x','field_62ec3d05390bb'),(301149,42461,'hero_image_pos_y','top'),(301150,42461,'_hero_image_pos_y','field_62ec3d05390bc'),(301151,42461,'hero_image_pos',''),(301152,42461,'_hero_image_pos','field_62ec3d05390ba'),(301153,42461,'fft_hide_from_listings','0'),(301154,42461,'_fft_hide_from_listings','field_61f1320446ab2'),(301155,42461,'post_format','402'),(301156,42461,'_post_format','field_61756bfb51898'),(301157,42461,'post_author',''),(301158,42461,'_post_author','field_62ec389d22113'),(301159,42461,'post_reviewer',''),(301160,42461,'_post_reviewer','field_627140a2a9800'),(301161,42461,'post_table_of_contents','0'),(301162,42461,'_post_table_of_contents','field_65c503bc846a6'),(301163,42461,'blocks','a:20:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:5:\"cards\";i:7;s:4:\"tabs\";i:8;s:10:\"accordions\";i:9;s:10:\"text_block\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:5:\"icons\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:11:\"promo_panel\";}'),(301164,42461,'_blocks','field_6176696113096'),(301165,42461,'_thumbnail_id','41331'),(301166,42461,'__thumbnail_id','field_617570855ddaf'),(301167,42461,'blocks_0_acfe_flexible_toggle',''),(301168,42461,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(301169,42461,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(301170,42461,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(301171,42461,'blocks_0_options_theme','#ffffff'),(301172,42461,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(301173,42461,'blocks_0_options',''),(301174,42461,'_blocks_0_options','field_6177b758246ae'),(301175,42461,'blocks_0_link_stack_content_title',''),(301176,42461,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(301177,42461,'blocks_0_link_stack_content_heading','What is MSK?'),(301178,42461,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(301179,42461,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(301180,42461,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(301181,42461,'blocks_0_link_stack_content_actions_0_button',''),(301182,42461,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(301183,42461,'blocks_0_link_stack_content_actions','1'),(301184,42461,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(301185,42461,'blocks_0_link_stack_content',''),(301186,42461,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(301187,42461,'blocks_0_link_stack_0_label','1.'),(301188,42461,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(301189,42461,'blocks_0_link_stack_0_title','Overview'),(301190,42461,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(301191,42461,'blocks_0_link_stack_0_url','#overview'),(301192,42461,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(301193,42461,'blocks_0_link_stack_1_label','2.'),(301194,42461,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(301195,42461,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(301196,42461,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(301197,42461,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(301198,42461,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(301199,42461,'blocks_0_link_stack_2_label','3.'),(301200,42461,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(301201,42461,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(301202,42461,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(301203,42461,'blocks_0_link_stack_2_url','#who-should-study-msk'),(301204,42461,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(301205,42461,'blocks_0_link_stack_3_label','4.'),(301206,42461,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(301207,42461,'blocks_0_link_stack_3_title','Common MSK Conditions'),(301208,42461,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(301209,42461,'blocks_0_link_stack_3_url','#common-msk-conditions'),(301210,42461,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(301211,42461,'blocks_0_link_stack_4_label','5.'),(301212,42461,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(301213,42461,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(301214,42461,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(301215,42461,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(301216,42461,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(301217,42461,'blocks_0_link_stack_5_label','6.'),(301218,42461,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(301219,42461,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(301220,42461,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(301221,42461,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(301222,42461,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(301223,42461,'blocks_0_link_stack','6'),(301224,42461,'_blocks_0_link_stack','field_6177b7f600cff'),(301225,42461,'blocks_1_acfe_flexible_toggle',''),(301226,42461,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(301227,42461,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(301228,42461,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(301229,42461,'blocks_1_options_theme','#ffffff'),(301230,42461,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(301231,42461,'blocks_1_options_reverse','0'),(301232,42461,'_blocks_1_options_reverse','field_61768049bb8ac'),(301233,42461,'blocks_1_options',''),(301234,42461,'_blocks_1_options','field_617682517c334'),(301235,42461,'blocks_1_split_5050_image','40615'),(301236,42461,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(301237,42461,'blocks_1_split_5050_video',''),(301238,42461,'_blocks_1_split_5050_video','field_6239f3160848a'),(301239,42461,'blocks_1_split_5050_content_title',''),(301240,42461,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(301241,42461,'blocks_1_split_5050_content_heading','Overview'),(301242,42461,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(301243,42461,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(301244,42461,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(301245,42461,'blocks_1_split_5050_content_actions',''),(301246,42461,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(301247,42461,'blocks_1_split_5050_content',''),(301248,42461,'_blocks_1_split_5050_content','field_61767afceb8ba'),(301249,42461,'blocks_2_acfe_flexible_toggle',''),(301250,42461,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(301251,42461,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(301252,42461,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(301253,42461,'blocks_2_options_theme','#f5f5f5'),(301254,42461,'_blocks_2_options_theme','field_6176830e2ad17'),(301255,42461,'blocks_2_options',''),(301256,42461,'_blocks_2_options','field_6176830e2ad16'),(301257,42461,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(301258,42461,'_blocks_2_text_block_heading','field_617669d413097'),(301259,42461,'blocks_2_text_block_content',''),(301260,42461,'_blocks_2_text_block_content','field_617669ec13098'),(301261,42461,'blocks_3_acfe_flexible_toggle',''),(301262,42461,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(301263,42461,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(301264,42461,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(301265,42461,'blocks_3_options_theme','#f5f5f5'),(301266,42461,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(301267,42461,'blocks_3_options_reverse','1'),(301268,42461,'_blocks_3_options_reverse','field_61768049bb8ac'),(301269,42461,'blocks_3_options',''),(301270,42461,'_blocks_3_options','field_617682517c334'),(301271,42461,'blocks_3_split_5050_image','40618'),(301272,42461,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(301273,42461,'blocks_3_split_5050_video',''),(301274,42461,'_blocks_3_split_5050_video','field_6239f3160848a'),(301275,42461,'blocks_3_split_5050_content_title',''),(301276,42461,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(301277,42461,'blocks_3_split_5050_content_heading',''),(301278,42461,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(301279,42461,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(301280,42461,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(301281,42461,'blocks_3_split_5050_content_actions',''),(301282,42461,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(301283,42461,'blocks_3_split_5050_content',''),(301284,42461,'_blocks_3_split_5050_content','field_61767afceb8ba'),(301285,42461,'blocks_4_acfe_flexible_toggle','1'),(301286,42461,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(301287,42461,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(301288,42461,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(301289,42461,'blocks_4_options_theme','#f5f5f5'),(301290,42461,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(301291,42461,'blocks_4_options_reverse','1'),(301292,42461,'_blocks_4_options_reverse','field_61768049bb8ac'),(301293,42461,'blocks_4_options',''),(301294,42461,'_blocks_4_options','field_617682517c334'),(301295,42461,'blocks_4_split_5050_image','41330'),(301296,42461,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(301297,42461,'blocks_4_split_5050_video',''),(301298,42461,'_blocks_4_split_5050_video','field_6239f3160848a'),(301299,42461,'blocks_4_split_5050_content_title',''),(301300,42461,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(301301,42461,'blocks_4_split_5050_content_heading',''),(301302,42461,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(301303,42461,'blocks_4_split_5050_content_text',''),(301304,42461,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(301305,42461,'blocks_4_split_5050_content_actions',''),(301306,42461,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(301307,42461,'blocks_4_split_5050_content',''),(301308,42461,'_blocks_4_split_5050_content','field_61767afceb8ba'),(301309,42461,'blocks_5_acfe_flexible_toggle',''),(301310,42461,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(301311,42461,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(301312,42461,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(301313,42461,'blocks_5_options_theme','#b61234'),(301314,42461,'_blocks_5_options_theme','field_6176830e2ad17'),(301315,42461,'blocks_5_options',''),(301316,42461,'_blocks_5_options','field_6176830e2ad16'),(301317,42461,'blocks_5_text_block_heading','Who Should Study MSK?'),(301318,42461,'_blocks_5_text_block_heading','field_617669d413097'),(301319,42461,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(301320,42461,'_blocks_5_text_block_content','field_617669ec13098'),(301321,42461,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(301322,42461,'_hero_actions_0_button','field_61757281285eb'),(301323,42461,'blocks_10_acfe_flexible_toggle',''),(301324,42461,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(301325,42461,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(301326,42461,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(301327,42461,'blocks_10_options_theme','#f5f5f5'),(301328,42461,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(301329,42461,'blocks_10_options_reverse','1'),(301330,42461,'_blocks_10_options_reverse','field_61768049bb8ac'),(301331,42461,'blocks_10_options',''),(301332,42461,'_blocks_10_options','field_617682517c334'),(301333,42461,'blocks_10_split_5050_image','41498'),(301334,42461,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(301335,42461,'blocks_10_split_5050_video',''),(301336,42461,'_blocks_10_split_5050_video','field_6239f3160848a'),(301337,42461,'blocks_10_split_5050_content_title',''),(301338,42461,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(301339,42461,'blocks_10_split_5050_content_heading',''),(301340,42461,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(301341,42461,'blocks_10_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(301342,42461,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(301343,42461,'blocks_10_split_5050_content_actions',''),(301344,42461,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(301345,42461,'blocks_10_split_5050_content',''),(301346,42461,'_blocks_10_split_5050_content','field_61767afceb8ba'),(301347,42461,'blocks_11_acfe_flexible_toggle',''),(301348,42461,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(301349,42461,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(301350,42461,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(301351,42461,'blocks_11_options_theme','#f5f5f5'),(301352,42461,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(301353,42461,'blocks_11_options_reverse','1'),(301354,42461,'_blocks_11_options_reverse','field_61768049bb8ac'),(301355,42461,'blocks_11_options',''),(301356,42461,'_blocks_11_options','field_617682517c334'),(301357,42461,'blocks_11_split_5050_image','40387'),(301358,42461,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(301359,42461,'blocks_11_split_5050_video',''),(301360,42461,'_blocks_11_split_5050_video','field_6239f3160848a'),(301361,42461,'blocks_11_split_5050_content_title',''),(301362,42461,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(301363,42461,'blocks_11_split_5050_content_heading',''),(301364,42461,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(301365,42461,'blocks_11_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(301366,42461,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(301367,42461,'blocks_11_split_5050_content_actions',''),(301368,42461,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(301369,42461,'blocks_11_split_5050_content',''),(301370,42461,'_blocks_11_split_5050_content','field_61767afceb8ba'),(301371,42461,'blocks_17_acfe_flexible_toggle',''),(301372,42461,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(301373,42461,'blocks_17_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(301374,42461,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(301375,42461,'blocks_17_options_theme','#ffffff'),(301376,42461,'_blocks_17_options_theme','field_6176830e2ad17'),(301377,42461,'blocks_17_options',''),(301378,42461,'_blocks_17_options','field_6176830e2ad16'),(301379,42461,'blocks_17_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(301380,42461,'_blocks_17_text_block_heading','field_617669d413097'),(301381,42461,'blocks_17_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(301382,42461,'_blocks_17_text_block_content','field_617669ec13098'),(301383,42461,'blocks_16_acfe_flexible_toggle',''),(301384,42461,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(301385,42461,'blocks_16_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(301386,42461,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(301387,42461,'blocks_16_options_theme','#ffffff'),(301388,42461,'_blocks_16_options_theme','field_6176830e2ad17'),(301389,42461,'blocks_16_options',''),(301390,42461,'_blocks_16_options','field_6176830e2ad16'),(301391,42461,'blocks_16_text_block_heading','The Role of MSK Education in Workplace Health'),(301392,42461,'_blocks_16_text_block_heading','field_617669d413097'),(301393,42461,'blocks_16_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(301394,42461,'_blocks_16_text_block_content','field_617669ec13098'),(301395,42461,'blocks_8_acfe_flexible_toggle',''),(301396,42461,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(301397,42461,'blocks_8_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(301398,42461,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(301399,42461,'blocks_8_options_theme','#ffffff'),(301400,42461,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(301401,42461,'blocks_8_options_state','0'),(301402,42461,'_blocks_8_options_state','field_6239fcb7508c5'),(301403,42461,'blocks_8_options',''),(301404,42461,'_blocks_8_options','field_6177e2991ac44'),(301405,42461,'blocks_8_content_title','Common MSK Conditions'),(301406,42461,'_blocks_8_content_title','field_64d237e8bb1e2'),(301407,42461,'blocks_8_content_heading','Common MSK Conditions'),(301408,42461,'_blocks_8_content_heading','field_64d237e8bb1e3'),(301409,42461,'blocks_8_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(301410,42461,'_blocks_8_content_text','field_64d237e8bb1e4'),(301411,42461,'blocks_8_content_actions',''),(301412,42461,'_blocks_8_content_actions','field_64d237e8bb1e5'),(301413,42461,'blocks_8_content_align','left'),(301414,42461,'_blocks_8_content_align','field_64d2443e6b6aa'),(301415,42461,'blocks_8_content',''),(301416,42461,'_blocks_8_content','field_64d237e8bb1e1'),(301417,42461,'blocks_8_accordion_content','custom'),(301418,42461,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(301419,42461,'blocks_8_accordion_items_0_title','Osteoarthritis'),(301420,42461,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(301421,42461,'blocks_8_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(301422,42461,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(301423,42461,'blocks_8_accordion_items_1_title','Rheumatoid Arthritis'),(301424,42461,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(301425,42461,'blocks_8_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(301426,42461,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(301427,42461,'blocks_8_accordion_items_2_title','Back Pain'),(301428,42461,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(301429,42461,'blocks_8_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(301430,42461,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(301431,42461,'blocks_8_accordion_items_3_title','Osteoporosis'),(301432,42461,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(301433,42461,'blocks_8_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(301434,42461,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(301435,42461,'blocks_8_accordion_items_4_title','Tendinitis'),(301436,42461,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(301437,42461,'blocks_8_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(301438,42461,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(301439,42461,'blocks_8_accordion_items_5_title','Carpal Tunnel Syndrome'),(301440,42461,'_blocks_8_accordion_items_5_title','field_6177e2991ac4d'),(301441,42461,'blocks_8_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(301442,42461,'_blocks_8_accordion_items_5_text','field_6177e2991ac4e'),(301443,42461,'blocks_8_accordion_items_6_title','Fibromyalgia'),(301444,42461,'_blocks_8_accordion_items_6_title','field_6177e2991ac4d'),(301445,42461,'blocks_8_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(301446,42461,'_blocks_8_accordion_items_6_text','field_6177e2991ac4e'),(301447,42461,'blocks_8_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(301448,42461,'_blocks_8_accordion_items_7_title','field_6177e2991ac4d'),(301449,42461,'blocks_8_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(301450,42461,'_blocks_8_accordion_items_7_text','field_6177e2991ac4e'),(301451,42461,'blocks_8_accordion_items','8'),(301452,42461,'_blocks_8_accordion_items','field_6177e2991ac4c'),(301453,42461,'blocks_8_actions',''),(301454,42461,'_blocks_8_actions','field_61a746a817f7a'),(301455,42461,'blocks_9_acfe_flexible_toggle',''),(301456,42461,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(301457,42461,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(301458,42461,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(301459,42461,'blocks_9_options_theme','#f5f5f5'),(301460,42461,'_blocks_9_options_theme','field_6176830e2ad17'),(301461,42461,'blocks_9_options',''),(301462,42461,'_blocks_9_options','field_6176830e2ad16'),(301463,42461,'blocks_9_text_block_heading','The Importance of MSK Education'),(301464,42461,'_blocks_9_text_block_heading','field_617669d413097'),(301465,42461,'blocks_9_text_block_content',''),(301466,42461,'_blocks_9_text_block_content','field_617669ec13098'),(301467,42461,'blocks_12_acfe_flexible_toggle',''),(301468,42461,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(301469,42461,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(301470,42461,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(301471,42461,'blocks_12_options_theme','#f5f5f5'),(301472,42461,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(301473,42461,'blocks_12_options_reverse','1'),(301474,42461,'_blocks_12_options_reverse','field_61768049bb8ac'),(301475,42461,'blocks_12_options',''),(301476,42461,'_blocks_12_options','field_617682517c334'),(301477,42461,'blocks_12_split_5050_image','18856'),(301478,42461,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(301479,42461,'blocks_12_split_5050_video',''),(301480,42461,'_blocks_12_split_5050_video','field_6239f3160848a'),(301481,42461,'blocks_12_split_5050_content_title',''),(301482,42461,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(301483,42461,'blocks_12_split_5050_content_heading',''),(301484,42461,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(301485,42461,'blocks_12_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(301486,42461,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(301487,42461,'blocks_12_split_5050_content_actions',''),(301488,42461,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(301489,42461,'blocks_12_split_5050_content',''),(301490,42461,'_blocks_12_split_5050_content','field_61767afceb8ba'),(301491,42461,'blocks_13_acfe_flexible_toggle',''),(301492,42461,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(301493,42461,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(301494,42461,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(301495,42461,'blocks_13_options_theme','#b61234'),(301496,42461,'_blocks_13_options_theme','field_6176830e2ad17'),(301497,42461,'blocks_13_options',''),(301498,42461,'_blocks_13_options','field_6176830e2ad16'),(301499,42461,'blocks_13_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(301500,42461,'_blocks_13_text_block_heading','field_617669d413097'),(301501,42461,'blocks_13_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(301502,42461,'_blocks_13_text_block_content','field_617669ec13098'),(301503,42461,'blocks_14_acfe_flexible_toggle',''),(301504,42461,'_blocks_14_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(301505,42461,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(301506,42461,'_blocks_14_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(301507,42461,'blocks_14_options_theme','#b61234'),(301508,42461,'_blocks_14_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(301509,42461,'blocks_14_options_format','row'),(301510,42461,'_blocks_14_options_format','field_64bfde9a90690'),(301511,42461,'blocks_14_options',''),(301512,42461,'_blocks_14_options','field_64bfdd9b90684'),(301513,42461,'blocks_14_icon_row_items_0_icon','pass-rate.svg'),(301514,42461,'_blocks_14_icon_row_items_0_icon','field_64bfdd9b9068d'),(301515,42461,'blocks_14_icon_row_items_0_label','More Accurate Assessments'),(301516,42461,'_blocks_14_icon_row_items_0_label','field_64bfdd9c9068e'),(301517,42461,'blocks_14_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(301518,42461,'_blocks_14_icon_row_items_0_text','field_64bfdd9c9068f'),(301519,42461,'blocks_14_icon_row_items_1_icon','exceptional-support.svg'),(301520,42461,'_blocks_14_icon_row_items_1_icon','field_64bfdd9b9068d'),(301521,42461,'blocks_14_icon_row_items_1_label','Personalised Movement Strategies'),(301522,42461,'_blocks_14_icon_row_items_1_label','field_64bfdd9c9068e'),(301523,42461,'blocks_14_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(301524,42461,'_blocks_14_icon_row_items_1_text','field_64bfdd9c9068f'),(301525,42461,'blocks_14_icon_row_items_2_icon','lifetime-course-access.svg'),(301526,42461,'_blocks_14_icon_row_items_2_icon','field_64bfdd9b9068d'),(301527,42461,'blocks_14_icon_row_items_2_label','Injury Prevention and Longevity'),(301528,42461,'_blocks_14_icon_row_items_2_label','field_64bfdd9c9068e'),(301529,42461,'blocks_14_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(301530,42461,'_blocks_14_icon_row_items_2_text','field_64bfdd9c9068f'),(301531,42461,'blocks_14_icon_row_items_3_icon','recognised.svg'),(301532,42461,'_blocks_14_icon_row_items_3_icon','field_64bfdd9b9068d'),(301533,42461,'blocks_14_icon_row_items_3_label','Optimised Performance'),(301534,42461,'_blocks_14_icon_row_items_3_label','field_64bfdd9c9068e'),(301535,42461,'blocks_14_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(301536,42461,'_blocks_14_icon_row_items_3_text','field_64bfdd9c9068f'),(301537,42461,'blocks_14_icon_row_items','4'),(301538,42461,'_blocks_14_icon_row_items','field_64bfdd9b9068c'),(301539,42461,'blocks_15_acfe_flexible_toggle',''),(301540,42461,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(301541,42461,'blocks_15_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(301542,42461,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(301543,42461,'blocks_15_options_theme','#ffffff'),(301544,42461,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(301545,42461,'blocks_15_options_reverse','0'),(301546,42461,'_blocks_15_options_reverse','field_61768049bb8ac'),(301547,42461,'blocks_15_options',''),(301548,42461,'_blocks_15_options','field_617682517c334'),(301549,42461,'blocks_15_split_5050_image','41501'),(301550,42461,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(301551,42461,'blocks_15_split_5050_video',''),(301552,42461,'_blocks_15_split_5050_video','field_6239f3160848a'),(301553,42461,'blocks_15_split_5050_content_title',''),(301554,42461,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(301555,42461,'blocks_15_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(301556,42461,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(301557,42461,'blocks_15_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(301558,42461,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(301559,42461,'blocks_15_split_5050_content_actions',''),(301560,42461,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(301561,42461,'blocks_15_split_5050_content',''),(301562,42461,'_blocks_15_split_5050_content','field_61767afceb8ba'),(301563,42461,'blocks_18_acfe_flexible_toggle',''),(301564,42461,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(301565,42461,'blocks_18_acfe_flexible_layout_title','Conclusion'),(301566,42461,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(301567,42461,'blocks_18_options_theme','#f5f5f5'),(301568,42461,'_blocks_18_options_theme','field_6176830e2ad17'),(301569,42461,'blocks_18_options',''),(301570,42461,'_blocks_18_options','field_6176830e2ad16'),(301571,42461,'blocks_18_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(301572,42461,'_blocks_18_text_block_heading','field_617669d413097'),(301573,42461,'blocks_18_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(301574,42461,'_blocks_18_text_block_content','field_617669ec13098'),(301575,42461,'blocks_19_acfe_flexible_toggle',''),(301576,42461,'_blocks_19_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(301577,42461,'blocks_19_acfe_flexible_layout_title','Promo Panel'),(301578,42461,'_blocks_19_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(301579,42461,'blocks_19_options_alignment','center'),(301580,42461,'_blocks_19_options_alignment','field_61769449f5490'),(301581,42461,'blocks_19_options',''),(301582,42461,'_blocks_19_options','field_617693e1428f0'),(301583,42461,'blocks_19_promo_panel_image','40342'),(301584,42461,'_blocks_19_promo_panel_image','field_617693e1428f3'),(301585,42461,'blocks_19_promo_panel_content_heading','Want to Get Started?'),(301586,42461,'_blocks_19_promo_panel_content_heading','field_617693e1428f6'),(301587,42461,'blocks_19_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(301588,42461,'_blocks_19_promo_panel_content_text','field_617693e1428f7'),(301589,42461,'blocks_19_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(301590,42461,'_blocks_19_promo_panel_content_actions_0_button','field_617693e1428f9'),(301591,42461,'blocks_19_promo_panel_content_actions','1'),(301592,42461,'_blocks_19_promo_panel_content_actions','field_617693e1428f8'),(301593,42461,'blocks_19_promo_panel_content',''),(301594,42461,'_blocks_19_promo_panel_content','field_617693e1428f4'),(301595,42461,'blocks_6_acfe_flexible_toggle',''),(301596,42461,'_blocks_6_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(301597,42461,'blocks_6_acfe_flexible_layout_title','Cards'),(301598,42461,'_blocks_6_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(301599,42461,'blocks_6_options_theme','#b61234'),(301600,42461,'_blocks_6_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(301601,42461,'blocks_6_options_format','carousel'),(301602,42461,'_blocks_6_options_format','field_617a7b15245b5'),(301603,42461,'blocks_6_options_style','default'),(301604,42461,'_blocks_6_options_style','field_6278ffb63484a'),(301605,42461,'blocks_6_options_cards_current_listing','0'),(301606,42461,'_blocks_6_options_cards_current_listing','field_6193d7effb7a4'),(301607,42461,'blocks_6_options_cards_content','custom'),(301608,42461,'_blocks_6_options_cards_content','field_617aba6122688'),(301609,42461,'blocks_6_options',''),(301610,42461,'_blocks_6_options','field_617a7b15245b3'),(301611,42461,'blocks_6_cards_custom_0_image','41542'),(301612,42461,'_blocks_6_cards_custom_0_image','field_6194cc284d387'),(301613,42461,'blocks_6_cards_custom_0_title','Aspiring Healthcare Professionals'),(301614,42461,'_blocks_6_cards_custom_0_title','field_6194cc454d388'),(301615,42461,'blocks_6_cards_custom_0_text','Musculoskeletal (MSK) studies are ideal for aspiring healthcare professionals and those working to minimise workplace strain, improve posture, and prevent MSK injuries. Understanding MSK risks helps identify and reduce workplace-related issues, promoting better movement efficiency in professional environments. This knowledge enhances career prospects in corporate wellness and occupational health, while also supporting compliance with health and safety regulations to reduce workplace injuries.'),(301616,42461,'_blocks_6_cards_custom_0_text','field_6194cc4a4d389'),(301617,42461,'blocks_6_cards_custom_0_link',''),(301618,42461,'_blocks_6_cards_custom_0_link','field_6194cc534d38a'),(301619,42461,'blocks_6_cards_custom_1_image','41543'),(301620,42461,'_blocks_6_cards_custom_1_image','field_6194cc284d387'),(301621,42461,'blocks_6_cards_custom_1_title','Second thing'),(301622,42461,'_blocks_6_cards_custom_1_title','field_6194cc454d388'),(301623,42461,'blocks_6_cards_custom_1_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(301624,42461,'_blocks_6_cards_custom_1_text','field_6194cc4a4d389'),(301625,42461,'blocks_6_cards_custom_1_link',''),(301626,42461,'_blocks_6_cards_custom_1_link','field_6194cc534d38a'),(301627,42461,'blocks_6_cards_custom_2_image',''),(301628,42461,'_blocks_6_cards_custom_2_image','field_6194cc284d387'),(301629,42461,'blocks_6_cards_custom_2_title','Ergonomists and Occupational Health Specialists'),(301630,42461,'_blocks_6_cards_custom_2_title','field_6194cc454d388'),(301631,42461,'blocks_6_cards_custom_2_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n\r\nHelps identify and reduce workplace-related MSK risks.\r\nImproves posture and movement efficiency in professional environments.\r\nEnhances career prospects in corporate wellness and occupational health.\r\nSupports compliance with health and safety regulations, reducing workplace injuries.'),(301632,42461,'_blocks_6_cards_custom_2_text','field_6194cc4a4d389'),(301633,42461,'blocks_6_cards_custom_2_link',''),(301634,42461,'_blocks_6_cards_custom_2_link','field_6194cc534d38a'),(301635,42461,'blocks_6_cards_custom','3'),(301636,42461,'_blocks_6_cards_custom','field_6194cbf84d386'),(301637,42461,'blocks_7_acfe_flexible_toggle',''),(301638,42461,'_blocks_7_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(301639,42461,'blocks_7_acfe_flexible_layout_title','Who Should Study MSK?'),(301640,42461,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(301641,42461,'blocks_7_options_theme','#b61234'),(301642,42461,'_blocks_7_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(301643,42461,'blocks_7_options',''),(301644,42461,'_blocks_7_options','field_6177cfcd8140f'),(301645,42461,'blocks_7_tabs_0_tab_label','Aspiring Healthcare Professionals'),(301646,42461,'_blocks_7_tabs_0_tab_label','field_6177d0068141a'),(301647,42461,'blocks_7_tabs_0_tab_content_title',''),(301648,42461,'_blocks_7_tabs_0_tab_content_title','field_6177cfcd81414'),(301649,42461,'blocks_7_tabs_0_tab_content_heading',''),(301650,42461,'_blocks_7_tabs_0_tab_content_heading','field_6177cfcd81415'),(301651,42461,'blocks_7_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(301652,42461,'_blocks_7_tabs_0_tab_content_text','field_6177cfcd81416'),(301653,42461,'blocks_7_tabs_0_tab_content_actions',''),(301654,42461,'_blocks_7_tabs_0_tab_content_actions','field_6177cfcd81417'),(301655,42461,'blocks_7_tabs_0_tab_content',''),(301656,42461,'_blocks_7_tabs_0_tab_content','field_6177cfcd81413'),(301657,42461,'blocks_7_tabs_0_tab_image','41542'),(301658,42461,'_blocks_7_tabs_0_tab_image','field_6177cfcd81412'),(301659,42461,'blocks_7_tabs_1_tab_label','Current Practitioners'),(301660,42461,'_blocks_7_tabs_1_tab_label','field_6177d0068141a'),(301661,42461,'blocks_7_tabs_1_tab_content_title',''),(301662,42461,'_blocks_7_tabs_1_tab_content_title','field_6177cfcd81414'),(301663,42461,'blocks_7_tabs_1_tab_content_heading',''),(301664,42461,'_blocks_7_tabs_1_tab_content_heading','field_6177cfcd81415'),(301665,42461,'blocks_7_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(301666,42461,'_blocks_7_tabs_1_tab_content_text','field_6177cfcd81416'),(301667,42461,'blocks_7_tabs_1_tab_content_actions',''),(301668,42461,'_blocks_7_tabs_1_tab_content_actions','field_6177cfcd81417'),(301669,42461,'blocks_7_tabs_1_tab_content',''),(301670,42461,'_blocks_7_tabs_1_tab_content','field_6177cfcd81413'),(301671,42461,'blocks_7_tabs_1_tab_image','41505'),(301672,42461,'_blocks_7_tabs_1_tab_image','field_6177cfcd81412'),(301673,42461,'blocks_7_tabs_2_tab_label','Fitness and Sports Professionals'),(301674,42461,'_blocks_7_tabs_2_tab_label','field_6177d0068141a'),(301675,42461,'blocks_7_tabs_2_tab_content_title',''),(301676,42461,'_blocks_7_tabs_2_tab_content_title','field_6177cfcd81414'),(301677,42461,'blocks_7_tabs_2_tab_content_heading',''),(301678,42461,'_blocks_7_tabs_2_tab_content_heading','field_6177cfcd81415'),(301679,42461,'blocks_7_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(301680,42461,'_blocks_7_tabs_2_tab_content_text','field_6177cfcd81416'),(301681,42461,'blocks_7_tabs_2_tab_content_actions',''),(301682,42461,'_blocks_7_tabs_2_tab_content_actions','field_6177cfcd81417'),(301683,42461,'blocks_7_tabs_2_tab_content',''),(301684,42461,'_blocks_7_tabs_2_tab_content','field_6177cfcd81413'),(301685,42461,'blocks_7_tabs_2_tab_image','41539'),(301686,42461,'_blocks_7_tabs_2_tab_image','field_6177cfcd81412'),(301687,42461,'blocks_7_tabs_3_tab_label','Educators and Researchers'),(301688,42461,'_blocks_7_tabs_3_tab_label','field_6177d0068141a'),(301689,42461,'blocks_7_tabs_3_tab_content_title',''),(301690,42461,'_blocks_7_tabs_3_tab_content_title','field_6177cfcd81414'),(301691,42461,'blocks_7_tabs_3_tab_content_heading',''),(301692,42461,'_blocks_7_tabs_3_tab_content_heading','field_6177cfcd81415'),(301693,42461,'blocks_7_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(301694,42461,'_blocks_7_tabs_3_tab_content_text','field_6177cfcd81416'),(301695,42461,'blocks_7_tabs_3_tab_content_actions',''),(301696,42461,'_blocks_7_tabs_3_tab_content_actions','field_6177cfcd81417'),(301697,42461,'blocks_7_tabs_3_tab_content',''),(301698,42461,'_blocks_7_tabs_3_tab_content','field_6177cfcd81413'),(301699,42461,'blocks_7_tabs_3_tab_image','41502'),(301700,42461,'_blocks_7_tabs_3_tab_image','field_6177cfcd81412'),(301701,42461,'blocks_7_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(301702,42461,'_blocks_7_tabs_4_tab_label','field_6177d0068141a'),(301703,42461,'blocks_7_tabs_4_tab_content_title',''),(301704,42461,'_blocks_7_tabs_4_tab_content_title','field_6177cfcd81414'),(301705,42461,'blocks_7_tabs_4_tab_content_heading',''),(301706,42461,'_blocks_7_tabs_4_tab_content_heading','field_6177cfcd81415'),(301707,42461,'blocks_7_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(301708,42461,'_blocks_7_tabs_4_tab_content_text','field_6177cfcd81416'),(301709,42461,'blocks_7_tabs_4_tab_content_actions',''),(301710,42461,'_blocks_7_tabs_4_tab_content_actions','field_6177cfcd81417'),(301711,42461,'blocks_7_tabs_4_tab_content',''),(301712,42461,'_blocks_7_tabs_4_tab_content','field_6177cfcd81413'),(301713,42461,'blocks_7_tabs_4_tab_image','41506'),(301714,42461,'_blocks_7_tabs_4_tab_image','field_6177cfcd81412'),(301715,42461,'blocks_7_tabs','5'),(301716,42461,'_blocks_7_tabs','field_6177cff281419'),(301717,42461,'blocks_6_cards_row_content_title',''),(301718,42461,'_blocks_6_cards_row_content_title','field_6194fc1bc99fd'),(301719,42461,'blocks_6_cards_row_content_heading',''),(301720,42461,'_blocks_6_cards_row_content_heading','field_6194fc1bc99fe'),(301721,42461,'blocks_6_cards_row_content_text',''),(301722,42461,'_blocks_6_cards_row_content_text','field_6194fc1bc99ff'),(301723,42461,'blocks_6_cards_row_content_actions',''),(301724,42461,'_blocks_6_cards_row_content_actions','field_6194fc1bc9a00'),(301725,42461,'blocks_6_cards_row_content',''),(301726,42461,'_blocks_6_cards_row_content','field_6194fc1bc99fc'),(301727,42438,'blocks_7_acfe_flexible_toggle',''),(301728,42438,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(301729,42438,'blocks_7_acfe_flexible_layout_title','Who Should Study MSK?'),(301730,42438,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(301731,42438,'blocks_7_options_theme','#b61234'),(301732,42438,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(301733,42438,'blocks_7_options_format','carousel'),(301734,42438,'_blocks_7_options_format','field_617a7b15245b5'),(301735,42438,'blocks_7_options_style','default'),(301736,42438,'_blocks_7_options_style','field_6278ffb63484a'),(301737,42438,'blocks_7_options_cards_current_listing','0'),(301738,42438,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(301739,42438,'blocks_7_options_cards_content','custom'),(301740,42438,'_blocks_7_options_cards_content','field_617aba6122688'),(301741,42438,'blocks_7_options',''),(301742,42438,'_blocks_7_options','field_617a7b15245b3'),(301743,42438,'blocks_7_cards_custom_0_image','41542'),(301744,42438,'_blocks_7_cards_custom_0_image','field_6194cc284d387'),(301745,42438,'blocks_7_cards_custom_0_title','Aspiring Healthcare Professionals'),(301746,42438,'_blocks_7_cards_custom_0_title','field_6194cc454d388'),(301747,42438,'blocks_7_cards_custom_0_text','Musculoskeletal (MSK) studies are ideal for aspiring healthcare professionals and those working to minimise workplace strain, improve posture, and prevent MSK injuries. Understanding MSK risks helps identify and reduce workplace-related issues, promoting better movement efficiency in professional environments. This knowledge enhances career prospects in corporate wellness and occupational health, while also supporting compliance with health and safety regulations to reduce workplace injuries.'),(301748,42438,'_blocks_7_cards_custom_0_text','field_6194cc4a4d389'),(301749,42438,'blocks_7_cards_custom_0_link',''),(301750,42438,'_blocks_7_cards_custom_0_link','field_6194cc534d38a'),(301751,42438,'blocks_7_cards_custom_1_image','41543'),(301752,42438,'_blocks_7_cards_custom_1_image','field_6194cc284d387'),(301753,42438,'blocks_7_cards_custom_1_title','Current Practitioners'),(301754,42438,'_blocks_7_cards_custom_1_title','field_6194cc454d388'),(301755,42438,'blocks_7_cards_custom_1_text','Medical and allied health professionals looking to expand their expertise in MSK assessment and treatment can benefit from advanced skills in diagnosing and managing movement dysfunctions. By integrating evidence-based strategies into patient care, they can create more effective treatment plans, enhance rehabilitation outcomes, and improve overall client satisfaction.'),(301756,42438,'_blocks_7_cards_custom_1_text','field_6194cc4a4d389'),(301757,42438,'blocks_7_cards_custom_1_link',''),(301758,42438,'_blocks_7_cards_custom_1_link','field_6194cc534d38a'),(301759,42438,'blocks_7_cards_custom_2_image','41539'),(301760,42438,'_blocks_7_cards_custom_2_image','field_6194cc284d387'),(301761,42438,'blocks_7_cards_custom_2_title','Fitness and Sports Professionals'),(301762,42438,'_blocks_7_cards_custom_2_title','field_6194cc454d388'),(301763,42438,'blocks_7_cards_custom_2_text','Personal trainers, coaches, and therapists can refine their understanding of movement, injury prevention, and rehabilitation through MSK education. Gaining deeper insights into movement mechanics enhances coaching skills, improves client mobility and performance, and increases earning potential by offering specialised MSK-focused training. Additionally, it opens opportunities to collaborate with healthcare professionals in rehabilitation settings.'),(301764,42438,'_blocks_7_cards_custom_2_text','field_6194cc4a4d389'),(301765,42438,'blocks_7_cards_custom_2_link',''),(301766,42438,'_blocks_7_cards_custom_2_link','field_6194cc534d38a'),(301767,42438,'blocks_7_cards_custom_3_image','41501'),(301768,42438,'_blocks_7_cards_custom_3_image','field_6194cc284d387'),(301769,42438,'blocks_7_cards_custom_3_title','Educators and Researchers'),(301770,42438,'_blocks_7_cards_custom_3_title','field_6194cc454d388'),(301771,42438,'blocks_7_cards_custom_3_text','Students of human movement, biomechanics, or rehabilitation can deepen their analysis of movement and performance through MSK education. It supports the development of innovative injury prevention strategies, enhances credibility in academic and research settings, and creates opportunities for collaboration with healthcare and sports industries.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n'),(301772,42438,'_blocks_7_cards_custom_3_text','field_6194cc4a4d389'),(301773,42438,'blocks_7_cards_custom_3_link',''),(301774,42438,'_blocks_7_cards_custom_3_link','field_6194cc534d38a'),(301775,42438,'blocks_7_cards_custom_4_image','40383'),(301776,42438,'_blocks_7_cards_custom_4_image','field_6194cc284d387'),(301777,42438,'blocks_7_cards_custom_4_title','Ergonomists and Occupational Health Specialists'),(301778,42438,'_blocks_7_cards_custom_4_title','field_6194cc454d388'),(301779,42438,'blocks_7_cards_custom_4_text','Professionals focused on reducing workplace strain, improving posture, and preventing MSK injuries can benefit from MSK education by identifying and mitigating workplace-related risks. It enhances movement efficiency, boosts career prospects in corporate wellness and occupational health, and supports compliance with health and safety regulations to reduce workplace injuries.'),(301780,42438,'_blocks_7_cards_custom_4_text','field_6194cc4a4d389'),(301781,42438,'blocks_7_cards_custom_4_link',''),(301782,42438,'_blocks_7_cards_custom_4_link','field_6194cc534d38a'),(301783,42438,'blocks_7_cards_custom','5'),(301784,42438,'_blocks_7_cards_custom','field_6194cbf84d386'),(301785,42438,'blocks_8_acfe_flexible_toggle',''),(301786,42438,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(301787,42438,'blocks_8_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(301788,42438,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(301789,42438,'blocks_8_options_theme','#ffffff'),(301790,42438,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(301791,42438,'blocks_8_options_state','0'),(301792,42438,'_blocks_8_options_state','field_6239fcb7508c5'),(301793,42438,'blocks_8_options',''),(301794,42438,'_blocks_8_options','field_6177e2991ac44'),(301795,42438,'blocks_8_content_title','Common MSK Conditions'),(301796,42438,'_blocks_8_content_title','field_64d237e8bb1e2'),(301797,42438,'blocks_8_content_heading','Common MSK Conditions'),(301798,42438,'_blocks_8_content_heading','field_64d237e8bb1e3'),(301799,42438,'blocks_8_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(301800,42438,'_blocks_8_content_text','field_64d237e8bb1e4'),(301801,42438,'blocks_8_content_actions',''),(301802,42438,'_blocks_8_content_actions','field_64d237e8bb1e5'),(301803,42438,'blocks_8_content_align','left'),(301804,42438,'_blocks_8_content_align','field_64d2443e6b6aa'),(301805,42438,'blocks_8_content',''),(301806,42438,'_blocks_8_content','field_64d237e8bb1e1'),(301807,42438,'blocks_8_accordion_content','custom'),(301808,42438,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(301809,42438,'blocks_8_accordion_items_0_title','Osteoarthritis'),(301810,42438,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(301811,42438,'blocks_8_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(301812,42438,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(301813,42438,'blocks_8_accordion_items_1_title','Rheumatoid Arthritis'),(301814,42438,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(301815,42438,'blocks_8_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(301816,42438,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(301817,42438,'blocks_8_accordion_items_2_title','Back Pain'),(301818,42438,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(301819,42438,'blocks_8_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(301820,42438,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(301821,42438,'blocks_8_accordion_items_3_title','Osteoporosis'),(301822,42438,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(301823,42438,'blocks_8_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(301824,42438,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(301825,42438,'blocks_8_accordion_items_4_title','Tendinitis'),(301826,42438,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(301827,42438,'blocks_8_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(301828,42438,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(301829,42438,'blocks_8_accordion_items_5_title','Carpal Tunnel Syndrome'),(301830,42438,'_blocks_8_accordion_items_5_title','field_6177e2991ac4d'),(301831,42438,'blocks_8_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(301832,42438,'_blocks_8_accordion_items_5_text','field_6177e2991ac4e'),(301833,42438,'blocks_8_accordion_items_6_title','Fibromyalgia'),(301834,42438,'_blocks_8_accordion_items_6_title','field_6177e2991ac4d'),(301835,42438,'blocks_8_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(301836,42438,'_blocks_8_accordion_items_6_text','field_6177e2991ac4e'),(301837,42438,'blocks_8_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(301838,42438,'_blocks_8_accordion_items_7_title','field_6177e2991ac4d'),(301839,42438,'blocks_8_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(301840,42438,'_blocks_8_accordion_items_7_text','field_6177e2991ac4e'),(301841,42438,'blocks_8_accordion_items','8'),(301842,42438,'_blocks_8_accordion_items','field_6177e2991ac4c'),(301843,42438,'blocks_8_actions',''),(301844,42438,'_blocks_8_actions','field_61a746a817f7a'),(301845,42438,'blocks_9_acfe_flexible_toggle',''),(301846,42438,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(301847,42438,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(301848,42438,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(301849,42438,'blocks_9_options_theme','#f5f5f5'),(301850,42438,'_blocks_9_options_theme','field_6176830e2ad17'),(301851,42438,'blocks_9_options',''),(301852,42438,'_blocks_9_options','field_6176830e2ad16'),(301853,42438,'blocks_9_text_block_heading','The Importance of MSK Education'),(301854,42438,'_blocks_9_text_block_heading','field_617669d413097'),(301855,42438,'blocks_9_text_block_content',''),(301856,42438,'_blocks_9_text_block_content','field_617669ec13098'),(301857,42438,'blocks_14_acfe_flexible_toggle',''),(301858,42438,'_blocks_14_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(301859,42438,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(301860,42438,'_blocks_14_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(301861,42438,'blocks_14_options_theme','#b61234'),(301862,42438,'_blocks_14_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(301863,42438,'blocks_14_options_format','row'),(301864,42438,'_blocks_14_options_format','field_64bfde9a90690'),(301865,42438,'blocks_14_options',''),(301866,42438,'_blocks_14_options','field_64bfdd9b90684'),(301867,42438,'blocks_14_icon_row_items_0_icon','pass-rate.svg'),(301868,42438,'_blocks_14_icon_row_items_0_icon','field_64bfdd9b9068d'),(301869,42438,'blocks_14_icon_row_items_0_label','More Accurate Assessments'),(301870,42438,'_blocks_14_icon_row_items_0_label','field_64bfdd9c9068e'),(301871,42438,'blocks_14_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(301872,42438,'_blocks_14_icon_row_items_0_text','field_64bfdd9c9068f'),(301873,42438,'blocks_14_icon_row_items_1_icon','exceptional-support.svg'),(301874,42438,'_blocks_14_icon_row_items_1_icon','field_64bfdd9b9068d'),(301875,42438,'blocks_14_icon_row_items_1_label','Personalised Movement Strategies'),(301876,42438,'_blocks_14_icon_row_items_1_label','field_64bfdd9c9068e'),(301877,42438,'blocks_14_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(301878,42438,'_blocks_14_icon_row_items_1_text','field_64bfdd9c9068f'),(301879,42438,'blocks_14_icon_row_items_2_icon','lifetime-course-access.svg'),(301880,42438,'_blocks_14_icon_row_items_2_icon','field_64bfdd9b9068d'),(301881,42438,'blocks_14_icon_row_items_2_label','Injury Prevention and Longevity'),(301882,42438,'_blocks_14_icon_row_items_2_label','field_64bfdd9c9068e'),(301883,42438,'blocks_14_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(301884,42438,'_blocks_14_icon_row_items_2_text','field_64bfdd9c9068f'),(301885,42438,'blocks_14_icon_row_items_3_icon','recognised.svg'),(301886,42438,'_blocks_14_icon_row_items_3_icon','field_64bfdd9b9068d'),(301887,42438,'blocks_14_icon_row_items_3_label','Optimised Performance'),(301888,42438,'_blocks_14_icon_row_items_3_label','field_64bfdd9c9068e'),(301889,42438,'blocks_14_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(301890,42438,'_blocks_14_icon_row_items_3_text','field_64bfdd9c9068f'),(301891,42438,'blocks_14_icon_row_items','4'),(301892,42438,'_blocks_14_icon_row_items','field_64bfdd9b9068c'),(301893,42438,'blocks_15_acfe_flexible_toggle',''),(301894,42438,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(301895,42438,'blocks_15_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(301896,42438,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(301897,42438,'blocks_15_options_theme','#ffffff'),(301898,42438,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(301899,42438,'blocks_15_options_reverse','0'),(301900,42438,'_blocks_15_options_reverse','field_61768049bb8ac'),(301901,42438,'blocks_15_options',''),(301902,42438,'_blocks_15_options','field_617682517c334'),(301903,42438,'blocks_15_split_5050_image','41501'),(301904,42438,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(301905,42438,'blocks_15_split_5050_video',''),(301906,42438,'_blocks_15_split_5050_video','field_6239f3160848a'),(301907,42438,'blocks_15_split_5050_content_title',''),(301908,42438,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(301909,42438,'blocks_15_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(301910,42438,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(301911,42438,'blocks_15_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(301912,42438,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(301913,42438,'blocks_15_split_5050_content_actions',''),(301914,42438,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(301915,42438,'blocks_15_split_5050_content',''),(301916,42438,'_blocks_15_split_5050_content','field_61767afceb8ba'),(301917,42438,'blocks_16_acfe_flexible_toggle',''),(301918,42438,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(301919,42438,'blocks_16_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(301920,42438,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(301921,42438,'blocks_16_options_theme','#ffffff'),(301922,42438,'_blocks_16_options_theme','field_6176830e2ad17'),(301923,42438,'blocks_16_options',''),(301924,42438,'_blocks_16_options','field_6176830e2ad16'),(301925,42438,'blocks_16_text_block_heading','The Role of MSK Education in Workplace Health'),(301926,42438,'_blocks_16_text_block_heading','field_617669d413097'),(301927,42438,'blocks_16_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(301928,42438,'_blocks_16_text_block_content','field_617669ec13098'),(301929,42438,'blocks_18_acfe_flexible_toggle',''),(301930,42438,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(301931,42438,'blocks_18_acfe_flexible_layout_title','Conclusion'),(301932,42438,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(301933,42438,'blocks_18_options_theme','#f5f5f5'),(301934,42438,'_blocks_18_options_theme','field_6176830e2ad17'),(301935,42438,'blocks_18_options',''),(301936,42438,'_blocks_18_options','field_6176830e2ad16'),(301937,42438,'blocks_18_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(301938,42438,'_blocks_18_text_block_heading','field_617669d413097'),(301939,42438,'blocks_18_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(301940,42438,'_blocks_18_text_block_content','field_617669ec13098'),(301941,42438,'blocks_19_acfe_flexible_toggle',''),(301942,42438,'_blocks_19_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(301943,42438,'blocks_19_acfe_flexible_layout_title','Promo Panel'),(301944,42438,'_blocks_19_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(301945,42438,'blocks_19_options_alignment','center'),(301946,42438,'_blocks_19_options_alignment','field_61769449f5490'),(301947,42438,'blocks_19_options',''),(301948,42438,'_blocks_19_options','field_617693e1428f0'),(301949,42438,'blocks_19_promo_panel_image','40342'),(301950,42438,'_blocks_19_promo_panel_image','field_617693e1428f3'),(301951,42438,'blocks_19_promo_panel_content_heading','Want to Get Started?'),(301952,42438,'_blocks_19_promo_panel_content_heading','field_617693e1428f6'),(301953,42438,'blocks_19_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(301954,42438,'_blocks_19_promo_panel_content_text','field_617693e1428f7'),(301955,42438,'blocks_19_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(301956,42438,'_blocks_19_promo_panel_content_actions_0_button','field_617693e1428f9'),(301957,42438,'blocks_19_promo_panel_content_actions','1'),(301958,42438,'_blocks_19_promo_panel_content_actions','field_617693e1428f8'),(301959,42438,'blocks_19_promo_panel_content',''),(301960,42438,'_blocks_19_promo_panel_content','field_617693e1428f4'),(302099,42462,'hide_hero','0'),(302100,42462,'_hide_hero','field_66a2380fcda39'),(302101,42462,'hero_title',''),(302102,42462,'_hero_title','field_617571fe285e8'),(302103,42462,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(302104,42462,'_hero_text','field_6175723c285e9'),(302105,42462,'hero_actions','1'),(302106,42462,'_hero_actions','field_61757270285ea'),(302107,42462,'hero_style','default'),(302108,42462,'_hero_style','field_62051d9dc5324'),(302109,42462,'hero_image_pos_x','right'),(302110,42462,'_hero_image_pos_x','field_62ec3d05390bb'),(302111,42462,'hero_image_pos_y','top'),(302112,42462,'_hero_image_pos_y','field_62ec3d05390bc'),(302113,42462,'hero_image_pos',''),(302114,42462,'_hero_image_pos','field_62ec3d05390ba'),(302115,42462,'fft_hide_from_listings','0'),(302116,42462,'_fft_hide_from_listings','field_61f1320446ab2'),(302117,42462,'post_format','402'),(302118,42462,'_post_format','field_61756bfb51898'),(302119,42462,'post_author',''),(302120,42462,'_post_author','field_62ec389d22113'),(302121,42462,'post_reviewer',''),(302122,42462,'_post_reviewer','field_627140a2a9800'),(302123,42462,'post_table_of_contents','0'),(302124,42462,'_post_table_of_contents','field_65c503bc846a6'),(302125,42462,'blocks','a:20:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:5:\"cards\";i:8;s:10:\"accordions\";i:9;s:10:\"text_block\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:5:\"icons\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:11:\"promo_panel\";}'),(302126,42462,'_blocks','field_6176696113096'),(302127,42462,'_thumbnail_id','41331'),(302128,42462,'__thumbnail_id','field_617570855ddaf'),(302129,42462,'blocks_0_acfe_flexible_toggle',''),(302130,42462,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(302131,42462,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(302132,42462,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(302133,42462,'blocks_0_options_theme','#ffffff'),(302134,42462,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(302135,42462,'blocks_0_options',''),(302136,42462,'_blocks_0_options','field_6177b758246ae'),(302137,42462,'blocks_0_link_stack_content_title',''),(302138,42462,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(302139,42462,'blocks_0_link_stack_content_heading','What is MSK?'),(302140,42462,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(302141,42462,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(302142,42462,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(302143,42462,'blocks_0_link_stack_content_actions_0_button',''),(302144,42462,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(302145,42462,'blocks_0_link_stack_content_actions','1'),(302146,42462,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(302147,42462,'blocks_0_link_stack_content',''),(302148,42462,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(302149,42462,'blocks_0_link_stack_0_label','1.'),(302150,42462,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(302151,42462,'blocks_0_link_stack_0_title','Overview'),(302152,42462,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(302153,42462,'blocks_0_link_stack_0_url','#overview'),(302154,42462,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(302155,42462,'blocks_0_link_stack_1_label','2.'),(302156,42462,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(302157,42462,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(302158,42462,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(302159,42462,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(302160,42462,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(302161,42462,'blocks_0_link_stack_2_label','3.'),(302162,42462,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(302163,42462,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(302164,42462,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(302165,42462,'blocks_0_link_stack_2_url','#who-should-study-msk'),(302166,42462,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(302167,42462,'blocks_0_link_stack_3_label','4.'),(302168,42462,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(302169,42462,'blocks_0_link_stack_3_title','Common MSK Conditions'),(302170,42462,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(302171,42462,'blocks_0_link_stack_3_url','#common-msk-conditions'),(302172,42462,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(302173,42462,'blocks_0_link_stack_4_label','5.'),(302174,42462,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(302175,42462,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(302176,42462,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(302177,42462,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(302178,42462,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(302179,42462,'blocks_0_link_stack_5_label','6.'),(302180,42462,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(302181,42462,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(302182,42462,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(302183,42462,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(302184,42462,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(302185,42462,'blocks_0_link_stack','6'),(302186,42462,'_blocks_0_link_stack','field_6177b7f600cff'),(302187,42462,'blocks_1_acfe_flexible_toggle',''),(302188,42462,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(302189,42462,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(302190,42462,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(302191,42462,'blocks_1_options_theme','#ffffff'),(302192,42462,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(302193,42462,'blocks_1_options_reverse','0'),(302194,42462,'_blocks_1_options_reverse','field_61768049bb8ac'),(302195,42462,'blocks_1_options',''),(302196,42462,'_blocks_1_options','field_617682517c334'),(302197,42462,'blocks_1_split_5050_image','40615'),(302198,42462,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(302199,42462,'blocks_1_split_5050_video',''),(302200,42462,'_blocks_1_split_5050_video','field_6239f3160848a'),(302201,42462,'blocks_1_split_5050_content_title',''),(302202,42462,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(302203,42462,'blocks_1_split_5050_content_heading','Overview'),(302204,42462,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(302205,42462,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(302206,42462,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(302207,42462,'blocks_1_split_5050_content_actions',''),(302208,42462,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(302209,42462,'blocks_1_split_5050_content',''),(302210,42462,'_blocks_1_split_5050_content','field_61767afceb8ba'),(302211,42462,'blocks_2_acfe_flexible_toggle',''),(302212,42462,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(302213,42462,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(302214,42462,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(302215,42462,'blocks_2_options_theme','#f5f5f5'),(302216,42462,'_blocks_2_options_theme','field_6176830e2ad17'),(302217,42462,'blocks_2_options',''),(302218,42462,'_blocks_2_options','field_6176830e2ad16'),(302219,42462,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(302220,42462,'_blocks_2_text_block_heading','field_617669d413097'),(302221,42462,'blocks_2_text_block_content',''),(302222,42462,'_blocks_2_text_block_content','field_617669ec13098'),(302223,42462,'blocks_3_acfe_flexible_toggle',''),(302224,42462,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(302225,42462,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(302226,42462,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(302227,42462,'blocks_3_options_theme','#f5f5f5'),(302228,42462,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(302229,42462,'blocks_3_options_reverse','1'),(302230,42462,'_blocks_3_options_reverse','field_61768049bb8ac'),(302231,42462,'blocks_3_options',''),(302232,42462,'_blocks_3_options','field_617682517c334'),(302233,42462,'blocks_3_split_5050_image','40618'),(302234,42462,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(302235,42462,'blocks_3_split_5050_video',''),(302236,42462,'_blocks_3_split_5050_video','field_6239f3160848a'),(302237,42462,'blocks_3_split_5050_content_title',''),(302238,42462,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(302239,42462,'blocks_3_split_5050_content_heading',''),(302240,42462,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(302241,42462,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(302242,42462,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(302243,42462,'blocks_3_split_5050_content_actions',''),(302244,42462,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(302245,42462,'blocks_3_split_5050_content',''),(302246,42462,'_blocks_3_split_5050_content','field_61767afceb8ba'),(302247,42462,'blocks_4_acfe_flexible_toggle','1'),(302248,42462,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(302249,42462,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(302250,42462,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(302251,42462,'blocks_4_options_theme','#f5f5f5'),(302252,42462,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(302253,42462,'blocks_4_options_reverse','1'),(302254,42462,'_blocks_4_options_reverse','field_61768049bb8ac'),(302255,42462,'blocks_4_options',''),(302256,42462,'_blocks_4_options','field_617682517c334'),(302257,42462,'blocks_4_split_5050_image','41330'),(302258,42462,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(302259,42462,'blocks_4_split_5050_video',''),(302260,42462,'_blocks_4_split_5050_video','field_6239f3160848a'),(302261,42462,'blocks_4_split_5050_content_title',''),(302262,42462,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(302263,42462,'blocks_4_split_5050_content_heading',''),(302264,42462,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(302265,42462,'blocks_4_split_5050_content_text',''),(302266,42462,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(302267,42462,'blocks_4_split_5050_content_actions',''),(302268,42462,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(302269,42462,'blocks_4_split_5050_content',''),(302270,42462,'_blocks_4_split_5050_content','field_61767afceb8ba'),(302271,42462,'blocks_5_acfe_flexible_toggle',''),(302272,42462,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(302273,42462,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(302274,42462,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(302275,42462,'blocks_5_options_theme','#b61234'),(302276,42462,'_blocks_5_options_theme','field_6176830e2ad17'),(302277,42462,'blocks_5_options',''),(302278,42462,'_blocks_5_options','field_6176830e2ad16'),(302279,42462,'blocks_5_text_block_heading','Who Should Study MSK?'),(302280,42462,'_blocks_5_text_block_heading','field_617669d413097'),(302281,42462,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(302282,42462,'_blocks_5_text_block_content','field_617669ec13098'),(302283,42462,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(302284,42462,'_hero_actions_0_button','field_61757281285eb'),(302285,42462,'blocks_10_acfe_flexible_toggle',''),(302286,42462,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(302287,42462,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(302288,42462,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(302289,42462,'blocks_10_options_theme','#f5f5f5'),(302290,42462,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(302291,42462,'blocks_10_options_reverse','1'),(302292,42462,'_blocks_10_options_reverse','field_61768049bb8ac'),(302293,42462,'blocks_10_options',''),(302294,42462,'_blocks_10_options','field_617682517c334'),(302295,42462,'blocks_10_split_5050_image','41498'),(302296,42462,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(302297,42462,'blocks_10_split_5050_video',''),(302298,42462,'_blocks_10_split_5050_video','field_6239f3160848a'),(302299,42462,'blocks_10_split_5050_content_title',''),(302300,42462,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(302301,42462,'blocks_10_split_5050_content_heading',''),(302302,42462,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(302303,42462,'blocks_10_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(302304,42462,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(302305,42462,'blocks_10_split_5050_content_actions',''),(302306,42462,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(302307,42462,'blocks_10_split_5050_content',''),(302308,42462,'_blocks_10_split_5050_content','field_61767afceb8ba'),(302309,42462,'blocks_11_acfe_flexible_toggle',''),(302310,42462,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(302311,42462,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(302312,42462,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(302313,42462,'blocks_11_options_theme','#f5f5f5'),(302314,42462,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(302315,42462,'blocks_11_options_reverse','1'),(302316,42462,'_blocks_11_options_reverse','field_61768049bb8ac'),(302317,42462,'blocks_11_options',''),(302318,42462,'_blocks_11_options','field_617682517c334'),(302319,42462,'blocks_11_split_5050_image','40387'),(302320,42462,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(302321,42462,'blocks_11_split_5050_video',''),(302322,42462,'_blocks_11_split_5050_video','field_6239f3160848a'),(302323,42462,'blocks_11_split_5050_content_title',''),(302324,42462,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(302325,42462,'blocks_11_split_5050_content_heading',''),(302326,42462,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(302327,42462,'blocks_11_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(302328,42462,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(302329,42462,'blocks_11_split_5050_content_actions',''),(302330,42462,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(302331,42462,'blocks_11_split_5050_content',''),(302332,42462,'_blocks_11_split_5050_content','field_61767afceb8ba'),(302333,42462,'blocks_17_acfe_flexible_toggle',''),(302334,42462,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(302335,42462,'blocks_17_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(302336,42462,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(302337,42462,'blocks_17_options_theme','#ffffff'),(302338,42462,'_blocks_17_options_theme','field_6176830e2ad17'),(302339,42462,'blocks_17_options',''),(302340,42462,'_blocks_17_options','field_6176830e2ad16'),(302341,42462,'blocks_17_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(302342,42462,'_blocks_17_text_block_heading','field_617669d413097'),(302343,42462,'blocks_17_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(302344,42462,'_blocks_17_text_block_content','field_617669ec13098'),(302345,42462,'blocks_16_acfe_flexible_toggle',''),(302346,42462,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(302347,42462,'blocks_16_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(302348,42462,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(302349,42462,'blocks_16_options_theme','#ffffff'),(302350,42462,'_blocks_16_options_theme','field_6176830e2ad17'),(302351,42462,'blocks_16_options',''),(302352,42462,'_blocks_16_options','field_6176830e2ad16'),(302353,42462,'blocks_16_text_block_heading','The Role of MSK Education in Workplace Health'),(302354,42462,'_blocks_16_text_block_heading','field_617669d413097'),(302355,42462,'blocks_16_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(302356,42462,'_blocks_16_text_block_content','field_617669ec13098'),(302357,42462,'blocks_8_acfe_flexible_toggle',''),(302358,42462,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(302359,42462,'blocks_8_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(302360,42462,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(302361,42462,'blocks_8_options_theme','#ffffff'),(302362,42462,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(302363,42462,'blocks_8_options_state','0'),(302364,42462,'_blocks_8_options_state','field_6239fcb7508c5'),(302365,42462,'blocks_8_options',''),(302366,42462,'_blocks_8_options','field_6177e2991ac44'),(302367,42462,'blocks_8_content_title','Common MSK Conditions'),(302368,42462,'_blocks_8_content_title','field_64d237e8bb1e2'),(302369,42462,'blocks_8_content_heading','Common MSK Conditions'),(302370,42462,'_blocks_8_content_heading','field_64d237e8bb1e3'),(302371,42462,'blocks_8_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(302372,42462,'_blocks_8_content_text','field_64d237e8bb1e4'),(302373,42462,'blocks_8_content_actions',''),(302374,42462,'_blocks_8_content_actions','field_64d237e8bb1e5'),(302375,42462,'blocks_8_content_align','left'),(302376,42462,'_blocks_8_content_align','field_64d2443e6b6aa'),(302377,42462,'blocks_8_content',''),(302378,42462,'_blocks_8_content','field_64d237e8bb1e1'),(302379,42462,'blocks_8_accordion_content','custom'),(302380,42462,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(302381,42462,'blocks_8_accordion_items_0_title','Osteoarthritis'),(302382,42462,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(302383,42462,'blocks_8_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(302384,42462,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(302385,42462,'blocks_8_accordion_items_1_title','Rheumatoid Arthritis'),(302386,42462,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(302387,42462,'blocks_8_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(302388,42462,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(302389,42462,'blocks_8_accordion_items_2_title','Back Pain'),(302390,42462,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(302391,42462,'blocks_8_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(302392,42462,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(302393,42462,'blocks_8_accordion_items_3_title','Osteoporosis'),(302394,42462,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(302395,42462,'blocks_8_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(302396,42462,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(302397,42462,'blocks_8_accordion_items_4_title','Tendinitis'),(302398,42462,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(302399,42462,'blocks_8_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(302400,42462,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(302401,42462,'blocks_8_accordion_items_5_title','Carpal Tunnel Syndrome'),(302402,42462,'_blocks_8_accordion_items_5_title','field_6177e2991ac4d'),(302403,42462,'blocks_8_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(302404,42462,'_blocks_8_accordion_items_5_text','field_6177e2991ac4e'),(302405,42462,'blocks_8_accordion_items_6_title','Fibromyalgia'),(302406,42462,'_blocks_8_accordion_items_6_title','field_6177e2991ac4d'),(302407,42462,'blocks_8_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(302408,42462,'_blocks_8_accordion_items_6_text','field_6177e2991ac4e'),(302409,42462,'blocks_8_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(302410,42462,'_blocks_8_accordion_items_7_title','field_6177e2991ac4d'),(302411,42462,'blocks_8_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(302412,42462,'_blocks_8_accordion_items_7_text','field_6177e2991ac4e'),(302413,42462,'blocks_8_accordion_items','8'),(302414,42462,'_blocks_8_accordion_items','field_6177e2991ac4c'),(302415,42462,'blocks_8_actions',''),(302416,42462,'_blocks_8_actions','field_61a746a817f7a'),(302417,42462,'blocks_9_acfe_flexible_toggle',''),(302418,42462,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(302419,42462,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(302420,42462,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(302421,42462,'blocks_9_options_theme','#f5f5f5'),(302422,42462,'_blocks_9_options_theme','field_6176830e2ad17'),(302423,42462,'blocks_9_options',''),(302424,42462,'_blocks_9_options','field_6176830e2ad16'),(302425,42462,'blocks_9_text_block_heading','The Importance of MSK Education'),(302426,42462,'_blocks_9_text_block_heading','field_617669d413097'),(302427,42462,'blocks_9_text_block_content',''),(302428,42462,'_blocks_9_text_block_content','field_617669ec13098'),(302429,42462,'blocks_12_acfe_flexible_toggle',''),(302430,42462,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(302431,42462,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(302432,42462,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(302433,42462,'blocks_12_options_theme','#f5f5f5'),(302434,42462,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(302435,42462,'blocks_12_options_reverse','1'),(302436,42462,'_blocks_12_options_reverse','field_61768049bb8ac'),(302437,42462,'blocks_12_options',''),(302438,42462,'_blocks_12_options','field_617682517c334'),(302439,42462,'blocks_12_split_5050_image','18856'),(302440,42462,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(302441,42462,'blocks_12_split_5050_video',''),(302442,42462,'_blocks_12_split_5050_video','field_6239f3160848a'),(302443,42462,'blocks_12_split_5050_content_title',''),(302444,42462,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(302445,42462,'blocks_12_split_5050_content_heading',''),(302446,42462,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(302447,42462,'blocks_12_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(302448,42462,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(302449,42462,'blocks_12_split_5050_content_actions',''),(302450,42462,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(302451,42462,'blocks_12_split_5050_content',''),(302452,42462,'_blocks_12_split_5050_content','field_61767afceb8ba'),(302453,42462,'blocks_13_acfe_flexible_toggle',''),(302454,42462,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(302455,42462,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(302456,42462,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(302457,42462,'blocks_13_options_theme','#b61234'),(302458,42462,'_blocks_13_options_theme','field_6176830e2ad17'),(302459,42462,'blocks_13_options',''),(302460,42462,'_blocks_13_options','field_6176830e2ad16'),(302461,42462,'blocks_13_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(302462,42462,'_blocks_13_text_block_heading','field_617669d413097'),(302463,42462,'blocks_13_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(302464,42462,'_blocks_13_text_block_content','field_617669ec13098'),(302465,42462,'blocks_14_acfe_flexible_toggle',''),(302466,42462,'_blocks_14_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(302467,42462,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(302468,42462,'_blocks_14_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(302469,42462,'blocks_14_options_theme','#b61234'),(302470,42462,'_blocks_14_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(302471,42462,'blocks_14_options_format','row'),(302472,42462,'_blocks_14_options_format','field_64bfde9a90690'),(302473,42462,'blocks_14_options',''),(302474,42462,'_blocks_14_options','field_64bfdd9b90684'),(302475,42462,'blocks_14_icon_row_items_0_icon','pass-rate.svg'),(302476,42462,'_blocks_14_icon_row_items_0_icon','field_64bfdd9b9068d'),(302477,42462,'blocks_14_icon_row_items_0_label','More Accurate Assessments'),(302478,42462,'_blocks_14_icon_row_items_0_label','field_64bfdd9c9068e'),(302479,42462,'blocks_14_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(302480,42462,'_blocks_14_icon_row_items_0_text','field_64bfdd9c9068f'),(302481,42462,'blocks_14_icon_row_items_1_icon','exceptional-support.svg'),(302482,42462,'_blocks_14_icon_row_items_1_icon','field_64bfdd9b9068d'),(302483,42462,'blocks_14_icon_row_items_1_label','Personalised Movement Strategies'),(302484,42462,'_blocks_14_icon_row_items_1_label','field_64bfdd9c9068e'),(302485,42462,'blocks_14_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(302486,42462,'_blocks_14_icon_row_items_1_text','field_64bfdd9c9068f'),(302487,42462,'blocks_14_icon_row_items_2_icon','lifetime-course-access.svg'),(302488,42462,'_blocks_14_icon_row_items_2_icon','field_64bfdd9b9068d'),(302489,42462,'blocks_14_icon_row_items_2_label','Injury Prevention and Longevity'),(302490,42462,'_blocks_14_icon_row_items_2_label','field_64bfdd9c9068e'),(302491,42462,'blocks_14_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(302492,42462,'_blocks_14_icon_row_items_2_text','field_64bfdd9c9068f'),(302493,42462,'blocks_14_icon_row_items_3_icon','recognised.svg'),(302494,42462,'_blocks_14_icon_row_items_3_icon','field_64bfdd9b9068d'),(302495,42462,'blocks_14_icon_row_items_3_label','Optimised Performance'),(302496,42462,'_blocks_14_icon_row_items_3_label','field_64bfdd9c9068e'),(302497,42462,'blocks_14_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(302498,42462,'_blocks_14_icon_row_items_3_text','field_64bfdd9c9068f'),(302499,42462,'blocks_14_icon_row_items','4'),(302500,42462,'_blocks_14_icon_row_items','field_64bfdd9b9068c'),(302501,42462,'blocks_15_acfe_flexible_toggle',''),(302502,42462,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(302503,42462,'blocks_15_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(302504,42462,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(302505,42462,'blocks_15_options_theme','#ffffff'),(302506,42462,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(302507,42462,'blocks_15_options_reverse','0'),(302508,42462,'_blocks_15_options_reverse','field_61768049bb8ac'),(302509,42462,'blocks_15_options',''),(302510,42462,'_blocks_15_options','field_617682517c334'),(302511,42462,'blocks_15_split_5050_image','41501'),(302512,42462,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(302513,42462,'blocks_15_split_5050_video',''),(302514,42462,'_blocks_15_split_5050_video','field_6239f3160848a'),(302515,42462,'blocks_15_split_5050_content_title',''),(302516,42462,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(302517,42462,'blocks_15_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(302518,42462,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(302519,42462,'blocks_15_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(302520,42462,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(302521,42462,'blocks_15_split_5050_content_actions',''),(302522,42462,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(302523,42462,'blocks_15_split_5050_content',''),(302524,42462,'_blocks_15_split_5050_content','field_61767afceb8ba'),(302525,42462,'blocks_18_acfe_flexible_toggle',''),(302526,42462,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(302527,42462,'blocks_18_acfe_flexible_layout_title','Conclusion'),(302528,42462,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(302529,42462,'blocks_18_options_theme','#f5f5f5'),(302530,42462,'_blocks_18_options_theme','field_6176830e2ad17'),(302531,42462,'blocks_18_options',''),(302532,42462,'_blocks_18_options','field_6176830e2ad16'),(302533,42462,'blocks_18_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(302534,42462,'_blocks_18_text_block_heading','field_617669d413097'),(302535,42462,'blocks_18_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(302536,42462,'_blocks_18_text_block_content','field_617669ec13098'),(302537,42462,'blocks_19_acfe_flexible_toggle',''),(302538,42462,'_blocks_19_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(302539,42462,'blocks_19_acfe_flexible_layout_title','Promo Panel'),(302540,42462,'_blocks_19_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(302541,42462,'blocks_19_options_alignment','center'),(302542,42462,'_blocks_19_options_alignment','field_61769449f5490'),(302543,42462,'blocks_19_options',''),(302544,42462,'_blocks_19_options','field_617693e1428f0'),(302545,42462,'blocks_19_promo_panel_image','40342'),(302546,42462,'_blocks_19_promo_panel_image','field_617693e1428f3'),(302547,42462,'blocks_19_promo_panel_content_heading','Want to Get Started?'),(302548,42462,'_blocks_19_promo_panel_content_heading','field_617693e1428f6'),(302549,42462,'blocks_19_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(302550,42462,'_blocks_19_promo_panel_content_text','field_617693e1428f7'),(302551,42462,'blocks_19_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(302552,42462,'_blocks_19_promo_panel_content_actions_0_button','field_617693e1428f9'),(302553,42462,'blocks_19_promo_panel_content_actions','1'),(302554,42462,'_blocks_19_promo_panel_content_actions','field_617693e1428f8'),(302555,42462,'blocks_19_promo_panel_content',''),(302556,42462,'_blocks_19_promo_panel_content','field_617693e1428f4'),(302557,42462,'blocks_6_acfe_flexible_toggle','1'),(302558,42462,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(302559,42462,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(302560,42462,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(302561,42462,'blocks_6_options_theme','#b61234'),(302562,42462,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(302563,42462,'blocks_6_options',''),(302564,42462,'_blocks_6_options','field_6177cfcd8140f'),(302565,42462,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(302566,42462,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(302567,42462,'blocks_6_tabs_0_tab_content_title',''),(302568,42462,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(302569,42462,'blocks_6_tabs_0_tab_content_heading',''),(302570,42462,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(302571,42462,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(302572,42462,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(302573,42462,'blocks_6_tabs_0_tab_content_actions',''),(302574,42462,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(302575,42462,'blocks_6_tabs_0_tab_content',''),(302576,42462,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(302577,42462,'blocks_6_tabs_0_tab_image','41542'),(302578,42462,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(302579,42462,'blocks_6_tabs_1_tab_label','Current Practitioners'),(302580,42462,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(302581,42462,'blocks_6_tabs_1_tab_content_title',''),(302582,42462,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(302583,42462,'blocks_6_tabs_1_tab_content_heading',''),(302584,42462,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(302585,42462,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(302586,42462,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(302587,42462,'blocks_6_tabs_1_tab_content_actions',''),(302588,42462,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(302589,42462,'blocks_6_tabs_1_tab_content',''),(302590,42462,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(302591,42462,'blocks_6_tabs_1_tab_image','41505'),(302592,42462,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(302593,42462,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(302594,42462,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(302595,42462,'blocks_6_tabs_2_tab_content_title',''),(302596,42462,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(302597,42462,'blocks_6_tabs_2_tab_content_heading',''),(302598,42462,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(302599,42462,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(302600,42462,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(302601,42462,'blocks_6_tabs_2_tab_content_actions',''),(302602,42462,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(302603,42462,'blocks_6_tabs_2_tab_content',''),(302604,42462,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(302605,42462,'blocks_6_tabs_2_tab_image','41539'),(302606,42462,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(302607,42462,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(302608,42462,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(302609,42462,'blocks_6_tabs_3_tab_content_title',''),(302610,42462,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(302611,42462,'blocks_6_tabs_3_tab_content_heading',''),(302612,42462,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(302613,42462,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(302614,42462,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(302615,42462,'blocks_6_tabs_3_tab_content_actions',''),(302616,42462,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(302617,42462,'blocks_6_tabs_3_tab_content',''),(302618,42462,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(302619,42462,'blocks_6_tabs_3_tab_image','41502'),(302620,42462,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(302621,42462,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(302622,42462,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(302623,42462,'blocks_6_tabs_4_tab_content_title',''),(302624,42462,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(302625,42462,'blocks_6_tabs_4_tab_content_heading',''),(302626,42462,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(302627,42462,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(302628,42462,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(302629,42462,'blocks_6_tabs_4_tab_content_actions',''),(302630,42462,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(302631,42462,'blocks_6_tabs_4_tab_content',''),(302632,42462,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(302633,42462,'blocks_6_tabs_4_tab_image','41506'),(302634,42462,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(302635,42462,'blocks_6_tabs','5'),(302636,42462,'_blocks_6_tabs','field_6177cff281419'),(302637,42462,'blocks_7_acfe_flexible_toggle',''),(302638,42462,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(302639,42462,'blocks_7_acfe_flexible_layout_title','Who Should Study MSK?'),(302640,42462,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(302641,42462,'blocks_7_options_theme','#b61234'),(302642,42462,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(302643,42462,'blocks_7_options_format','carousel'),(302644,42462,'_blocks_7_options_format','field_617a7b15245b5'),(302645,42462,'blocks_7_options_style','default'),(302646,42462,'_blocks_7_options_style','field_6278ffb63484a'),(302647,42462,'blocks_7_options_cards_current_listing','0'),(302648,42462,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(302649,42462,'blocks_7_options_cards_content','custom'),(302650,42462,'_blocks_7_options_cards_content','field_617aba6122688'),(302651,42462,'blocks_7_options',''),(302652,42462,'_blocks_7_options','field_617a7b15245b3'),(302653,42462,'blocks_7_cards_custom_0_image','41542'),(302654,42462,'_blocks_7_cards_custom_0_image','field_6194cc284d387'),(302655,42462,'blocks_7_cards_custom_0_title','Aspiring Healthcare Professionals'),(302656,42462,'_blocks_7_cards_custom_0_title','field_6194cc454d388'),(302657,42462,'blocks_7_cards_custom_0_text','Musculoskeletal (MSK) studies are ideal for aspiring healthcare professionals and those working to minimise workplace strain, improve posture, and prevent MSK injuries. Understanding MSK risks helps identify and reduce workplace-related issues, promoting better movement efficiency in professional environments. This knowledge enhances career prospects in corporate wellness and occupational health, while also supporting compliance with health and safety regulations to reduce workplace injuries.'),(302658,42462,'_blocks_7_cards_custom_0_text','field_6194cc4a4d389'),(302659,42462,'blocks_7_cards_custom_0_link',''),(302660,42462,'_blocks_7_cards_custom_0_link','field_6194cc534d38a'),(302661,42462,'blocks_7_cards_custom_1_image','41543'),(302662,42462,'_blocks_7_cards_custom_1_image','field_6194cc284d387'),(302663,42462,'blocks_7_cards_custom_1_title','Current Practitioners'),(302664,42462,'_blocks_7_cards_custom_1_title','field_6194cc454d388'),(302665,42462,'blocks_7_cards_custom_1_text','Medical and allied health professionals looking to expand their expertise in MSK assessment and treatment can benefit from advanced skills in diagnosing and managing movement dysfunctions. By integrating evidence-based strategies into patient care, they can create more effective treatment plans, enhance rehabilitation outcomes, and improve overall client satisfaction.'),(302666,42462,'_blocks_7_cards_custom_1_text','field_6194cc4a4d389'),(302667,42462,'blocks_7_cards_custom_1_link',''),(302668,42462,'_blocks_7_cards_custom_1_link','field_6194cc534d38a'),(302669,42462,'blocks_7_cards_custom_2_image','41539'),(302670,42462,'_blocks_7_cards_custom_2_image','field_6194cc284d387'),(302671,42462,'blocks_7_cards_custom_2_title','Fitness and Sports Professionals'),(302672,42462,'_blocks_7_cards_custom_2_title','field_6194cc454d388'),(302673,42462,'blocks_7_cards_custom_2_text','Personal trainers, coaches, and therapists can refine their understanding of movement, injury prevention, and rehabilitation through MSK education. Gaining deeper insights into movement mechanics enhances coaching skills, improves client mobility and performance, and increases earning potential by offering specialised MSK-focused training. Additionally, it opens opportunities to collaborate with healthcare professionals in rehabilitation settings.'),(302674,42462,'_blocks_7_cards_custom_2_text','field_6194cc4a4d389'),(302675,42462,'blocks_7_cards_custom_2_link',''),(302676,42462,'_blocks_7_cards_custom_2_link','field_6194cc534d38a'),(302677,42462,'blocks_7_cards_custom_3_image','41501'),(302678,42462,'_blocks_7_cards_custom_3_image','field_6194cc284d387'),(302679,42462,'blocks_7_cards_custom_3_title','Educators and Researchers'),(302680,42462,'_blocks_7_cards_custom_3_title','field_6194cc454d388'),(302681,42462,'blocks_7_cards_custom_3_text','Students of human movement, biomechanics, or rehabilitation can deepen their analysis of movement and performance through MSK education. It supports the development of innovative injury prevention strategies, enhances credibility in academic and research settings, and creates opportunities for collaboration with healthcare and sports industries.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n'),(302682,42462,'_blocks_7_cards_custom_3_text','field_6194cc4a4d389'),(302683,42462,'blocks_7_cards_custom_3_link',''),(302684,42462,'_blocks_7_cards_custom_3_link','field_6194cc534d38a'),(302685,42462,'blocks_7_cards_custom_4_image','40383'),(302686,42462,'_blocks_7_cards_custom_4_image','field_6194cc284d387'),(302687,42462,'blocks_7_cards_custom_4_title','Ergonomists and Occupational Health Specialists'),(302688,42462,'_blocks_7_cards_custom_4_title','field_6194cc454d388'),(302689,42462,'blocks_7_cards_custom_4_text','Professionals focused on reducing workplace strain, improving posture, and preventing MSK injuries can benefit from MSK education by identifying and mitigating workplace-related risks. It enhances movement efficiency, boosts career prospects in corporate wellness and occupational health, and supports compliance with health and safety regulations to reduce workplace injuries.'),(302690,42462,'_blocks_7_cards_custom_4_text','field_6194cc4a4d389'),(302691,42462,'blocks_7_cards_custom_4_link',''),(302692,42462,'_blocks_7_cards_custom_4_link','field_6194cc534d38a'),(302693,42462,'blocks_7_cards_custom','5'),(302694,42462,'_blocks_7_cards_custom','field_6194cbf84d386'),(302725,42463,'hide_hero','0'),(302726,42463,'_hide_hero','field_66a2380fcda39'),(302727,42463,'hero_title',''),(302728,42463,'_hero_title','field_617571fe285e8'),(302729,42463,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(302730,42463,'_hero_text','field_6175723c285e9'),(302731,42463,'hero_actions','1'),(302732,42463,'_hero_actions','field_61757270285ea'),(302733,42463,'hero_style','default'),(302734,42463,'_hero_style','field_62051d9dc5324'),(302735,42463,'hero_image_pos_x','right'),(302736,42463,'_hero_image_pos_x','field_62ec3d05390bb'),(302737,42463,'hero_image_pos_y','top'),(302738,42463,'_hero_image_pos_y','field_62ec3d05390bc'),(302739,42463,'hero_image_pos',''),(302740,42463,'_hero_image_pos','field_62ec3d05390ba'),(302741,42463,'fft_hide_from_listings','0'),(302742,42463,'_fft_hide_from_listings','field_61f1320446ab2'),(302743,42463,'post_format','402'),(302744,42463,'_post_format','field_61756bfb51898'),(302745,42463,'post_author',''),(302746,42463,'_post_author','field_62ec389d22113'),(302747,42463,'post_reviewer',''),(302748,42463,'_post_reviewer','field_627140a2a9800'),(302749,42463,'post_table_of_contents','0'),(302750,42463,'_post_table_of_contents','field_65c503bc846a6'),(302751,42463,'blocks','a:21:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:5:\"cards\";i:8;s:10:\"accordions\";i:9;s:10:\"text_block\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:5:\"icons\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:11:\"promo_panel\";i:20;s:14:\"section_slider\";}'),(302752,42463,'_blocks','field_6176696113096'),(302753,42463,'_thumbnail_id','41331'),(302754,42463,'__thumbnail_id','field_617570855ddaf'),(302755,42463,'blocks_0_acfe_flexible_toggle',''),(302756,42463,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(302757,42463,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(302758,42463,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(302759,42463,'blocks_0_options_theme','#ffffff'),(302760,42463,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(302761,42463,'blocks_0_options',''),(302762,42463,'_blocks_0_options','field_6177b758246ae'),(302763,42463,'blocks_0_link_stack_content_title',''),(302764,42463,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(302765,42463,'blocks_0_link_stack_content_heading','What is MSK?'),(302766,42463,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(302767,42463,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(302768,42463,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(302769,42463,'blocks_0_link_stack_content_actions_0_button',''),(302770,42463,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(302771,42463,'blocks_0_link_stack_content_actions','1'),(302772,42463,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(302773,42463,'blocks_0_link_stack_content',''),(302774,42463,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(302775,42463,'blocks_0_link_stack_0_label','1.'),(302776,42463,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(302777,42463,'blocks_0_link_stack_0_title','Overview'),(302778,42463,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(302779,42463,'blocks_0_link_stack_0_url','#overview'),(302780,42463,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(302781,42463,'blocks_0_link_stack_1_label','2.'),(302782,42463,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(302783,42463,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(302784,42463,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(302785,42463,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(302786,42463,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(302787,42463,'blocks_0_link_stack_2_label','3.'),(302788,42463,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(302789,42463,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(302790,42463,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(302791,42463,'blocks_0_link_stack_2_url','#who-should-study-msk'),(302792,42463,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(302793,42463,'blocks_0_link_stack_3_label','4.'),(302794,42463,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(302795,42463,'blocks_0_link_stack_3_title','Common MSK Conditions'),(302796,42463,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(302797,42463,'blocks_0_link_stack_3_url','#common-msk-conditions'),(302798,42463,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(302799,42463,'blocks_0_link_stack_4_label','5.'),(302800,42463,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(302801,42463,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(302802,42463,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(302803,42463,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(302804,42463,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(302805,42463,'blocks_0_link_stack_5_label','6.'),(302806,42463,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(302807,42463,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(302808,42463,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(302809,42463,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(302810,42463,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(302811,42463,'blocks_0_link_stack','6'),(302812,42463,'_blocks_0_link_stack','field_6177b7f600cff'),(302813,42463,'blocks_1_acfe_flexible_toggle',''),(302814,42463,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(302815,42463,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(302816,42463,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(302817,42463,'blocks_1_options_theme','#ffffff'),(302818,42463,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(302819,42463,'blocks_1_options_reverse','0'),(302820,42463,'_blocks_1_options_reverse','field_61768049bb8ac'),(302821,42463,'blocks_1_options',''),(302822,42463,'_blocks_1_options','field_617682517c334'),(302823,42463,'blocks_1_split_5050_image','40615'),(302824,42463,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(302825,42463,'blocks_1_split_5050_video',''),(302826,42463,'_blocks_1_split_5050_video','field_6239f3160848a'),(302827,42463,'blocks_1_split_5050_content_title',''),(302828,42463,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(302829,42463,'blocks_1_split_5050_content_heading','Overview'),(302830,42463,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(302831,42463,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(302832,42463,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(302833,42463,'blocks_1_split_5050_content_actions',''),(302834,42463,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(302835,42463,'blocks_1_split_5050_content',''),(302836,42463,'_blocks_1_split_5050_content','field_61767afceb8ba'),(302837,42463,'blocks_2_acfe_flexible_toggle',''),(302838,42463,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(302839,42463,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(302840,42463,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(302841,42463,'blocks_2_options_theme','#f5f5f5'),(302842,42463,'_blocks_2_options_theme','field_6176830e2ad17'),(302843,42463,'blocks_2_options',''),(302844,42463,'_blocks_2_options','field_6176830e2ad16'),(302845,42463,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(302846,42463,'_blocks_2_text_block_heading','field_617669d413097'),(302847,42463,'blocks_2_text_block_content',''),(302848,42463,'_blocks_2_text_block_content','field_617669ec13098'),(302849,42463,'blocks_3_acfe_flexible_toggle',''),(302850,42463,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(302851,42463,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(302852,42463,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(302853,42463,'blocks_3_options_theme','#f5f5f5'),(302854,42463,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(302855,42463,'blocks_3_options_reverse','1'),(302856,42463,'_blocks_3_options_reverse','field_61768049bb8ac'),(302857,42463,'blocks_3_options',''),(302858,42463,'_blocks_3_options','field_617682517c334'),(302859,42463,'blocks_3_split_5050_image','40618'),(302860,42463,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(302861,42463,'blocks_3_split_5050_video',''),(302862,42463,'_blocks_3_split_5050_video','field_6239f3160848a'),(302863,42463,'blocks_3_split_5050_content_title',''),(302864,42463,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(302865,42463,'blocks_3_split_5050_content_heading',''),(302866,42463,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(302867,42463,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(302868,42463,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(302869,42463,'blocks_3_split_5050_content_actions',''),(302870,42463,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(302871,42463,'blocks_3_split_5050_content',''),(302872,42463,'_blocks_3_split_5050_content','field_61767afceb8ba'),(302873,42463,'blocks_4_acfe_flexible_toggle','1'),(302874,42463,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(302875,42463,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(302876,42463,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(302877,42463,'blocks_4_options_theme','#f5f5f5'),(302878,42463,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(302879,42463,'blocks_4_options_reverse','1'),(302880,42463,'_blocks_4_options_reverse','field_61768049bb8ac'),(302881,42463,'blocks_4_options',''),(302882,42463,'_blocks_4_options','field_617682517c334'),(302883,42463,'blocks_4_split_5050_image','41330'),(302884,42463,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(302885,42463,'blocks_4_split_5050_video',''),(302886,42463,'_blocks_4_split_5050_video','field_6239f3160848a'),(302887,42463,'blocks_4_split_5050_content_title',''),(302888,42463,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(302889,42463,'blocks_4_split_5050_content_heading',''),(302890,42463,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(302891,42463,'blocks_4_split_5050_content_text',''),(302892,42463,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(302893,42463,'blocks_4_split_5050_content_actions',''),(302894,42463,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(302895,42463,'blocks_4_split_5050_content',''),(302896,42463,'_blocks_4_split_5050_content','field_61767afceb8ba'),(302897,42463,'blocks_5_acfe_flexible_toggle',''),(302898,42463,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(302899,42463,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(302900,42463,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(302901,42463,'blocks_5_options_theme','#b61234'),(302902,42463,'_blocks_5_options_theme','field_6176830e2ad17'),(302903,42463,'blocks_5_options',''),(302904,42463,'_blocks_5_options','field_6176830e2ad16'),(302905,42463,'blocks_5_text_block_heading','Who Should Study MSK?'),(302906,42463,'_blocks_5_text_block_heading','field_617669d413097'),(302907,42463,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(302908,42463,'_blocks_5_text_block_content','field_617669ec13098'),(302909,42463,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(302910,42463,'_hero_actions_0_button','field_61757281285eb'),(302911,42463,'blocks_10_acfe_flexible_toggle',''),(302912,42463,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(302913,42463,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(302914,42463,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(302915,42463,'blocks_10_options_theme','#f5f5f5'),(302916,42463,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(302917,42463,'blocks_10_options_reverse','1'),(302918,42463,'_blocks_10_options_reverse','field_61768049bb8ac'),(302919,42463,'blocks_10_options',''),(302920,42463,'_blocks_10_options','field_617682517c334'),(302921,42463,'blocks_10_split_5050_image','41498'),(302922,42463,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(302923,42463,'blocks_10_split_5050_video',''),(302924,42463,'_blocks_10_split_5050_video','field_6239f3160848a'),(302925,42463,'blocks_10_split_5050_content_title',''),(302926,42463,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(302927,42463,'blocks_10_split_5050_content_heading',''),(302928,42463,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(302929,42463,'blocks_10_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(302930,42463,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(302931,42463,'blocks_10_split_5050_content_actions',''),(302932,42463,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(302933,42463,'blocks_10_split_5050_content',''),(302934,42463,'_blocks_10_split_5050_content','field_61767afceb8ba'),(302935,42463,'blocks_11_acfe_flexible_toggle',''),(302936,42463,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(302937,42463,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(302938,42463,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(302939,42463,'blocks_11_options_theme','#f5f5f5'),(302940,42463,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(302941,42463,'blocks_11_options_reverse','1'),(302942,42463,'_blocks_11_options_reverse','field_61768049bb8ac'),(302943,42463,'blocks_11_options',''),(302944,42463,'_blocks_11_options','field_617682517c334'),(302945,42463,'blocks_11_split_5050_image','40387'),(302946,42463,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(302947,42463,'blocks_11_split_5050_video',''),(302948,42463,'_blocks_11_split_5050_video','field_6239f3160848a'),(302949,42463,'blocks_11_split_5050_content_title',''),(302950,42463,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(302951,42463,'blocks_11_split_5050_content_heading',''),(302952,42463,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(302953,42463,'blocks_11_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(302954,42463,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(302955,42463,'blocks_11_split_5050_content_actions',''),(302956,42463,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(302957,42463,'blocks_11_split_5050_content',''),(302958,42463,'_blocks_11_split_5050_content','field_61767afceb8ba'),(302959,42463,'blocks_17_acfe_flexible_toggle',''),(302960,42463,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(302961,42463,'blocks_17_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(302962,42463,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(302963,42463,'blocks_17_options_theme','#ffffff'),(302964,42463,'_blocks_17_options_theme','field_6176830e2ad17'),(302965,42463,'blocks_17_options',''),(302966,42463,'_blocks_17_options','field_6176830e2ad16'),(302967,42463,'blocks_17_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(302968,42463,'_blocks_17_text_block_heading','field_617669d413097'),(302969,42463,'blocks_17_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(302970,42463,'_blocks_17_text_block_content','field_617669ec13098'),(302971,42463,'blocks_16_acfe_flexible_toggle',''),(302972,42463,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(302973,42463,'blocks_16_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(302974,42463,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(302975,42463,'blocks_16_options_theme','#ffffff'),(302976,42463,'_blocks_16_options_theme','field_6176830e2ad17'),(302977,42463,'blocks_16_options',''),(302978,42463,'_blocks_16_options','field_6176830e2ad16'),(302979,42463,'blocks_16_text_block_heading','The Role of MSK Education in Workplace Health'),(302980,42463,'_blocks_16_text_block_heading','field_617669d413097'),(302981,42463,'blocks_16_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(302982,42463,'_blocks_16_text_block_content','field_617669ec13098'),(302983,42463,'blocks_8_acfe_flexible_toggle',''),(302984,42463,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(302985,42463,'blocks_8_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(302986,42463,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(302987,42463,'blocks_8_options_theme','#ffffff'),(302988,42463,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(302989,42463,'blocks_8_options_state','0'),(302990,42463,'_blocks_8_options_state','field_6239fcb7508c5'),(302991,42463,'blocks_8_options',''),(302992,42463,'_blocks_8_options','field_6177e2991ac44'),(302993,42463,'blocks_8_content_title','Common MSK Conditions'),(302994,42463,'_blocks_8_content_title','field_64d237e8bb1e2'),(302995,42463,'blocks_8_content_heading','Common MSK Conditions'),(302996,42463,'_blocks_8_content_heading','field_64d237e8bb1e3'),(302997,42463,'blocks_8_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(302998,42463,'_blocks_8_content_text','field_64d237e8bb1e4'),(302999,42463,'blocks_8_content_actions',''),(303000,42463,'_blocks_8_content_actions','field_64d237e8bb1e5'),(303001,42463,'blocks_8_content_align','left'),(303002,42463,'_blocks_8_content_align','field_64d2443e6b6aa'),(303003,42463,'blocks_8_content',''),(303004,42463,'_blocks_8_content','field_64d237e8bb1e1'),(303005,42463,'blocks_8_accordion_content','custom'),(303006,42463,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(303007,42463,'blocks_8_accordion_items_0_title','Osteoarthritis'),(303008,42463,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(303009,42463,'blocks_8_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(303010,42463,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(303011,42463,'blocks_8_accordion_items_1_title','Rheumatoid Arthritis'),(303012,42463,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(303013,42463,'blocks_8_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(303014,42463,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(303015,42463,'blocks_8_accordion_items_2_title','Back Pain'),(303016,42463,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(303017,42463,'blocks_8_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(303018,42463,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(303019,42463,'blocks_8_accordion_items_3_title','Osteoporosis'),(303020,42463,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(303021,42463,'blocks_8_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(303022,42463,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(303023,42463,'blocks_8_accordion_items_4_title','Tendinitis'),(303024,42463,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(303025,42463,'blocks_8_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(303026,42463,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(303027,42463,'blocks_8_accordion_items_5_title','Carpal Tunnel Syndrome'),(303028,42463,'_blocks_8_accordion_items_5_title','field_6177e2991ac4d'),(303029,42463,'blocks_8_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(303030,42463,'_blocks_8_accordion_items_5_text','field_6177e2991ac4e'),(303031,42463,'blocks_8_accordion_items_6_title','Fibromyalgia'),(303032,42463,'_blocks_8_accordion_items_6_title','field_6177e2991ac4d'),(303033,42463,'blocks_8_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(303034,42463,'_blocks_8_accordion_items_6_text','field_6177e2991ac4e'),(303035,42463,'blocks_8_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(303036,42463,'_blocks_8_accordion_items_7_title','field_6177e2991ac4d'),(303037,42463,'blocks_8_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(303038,42463,'_blocks_8_accordion_items_7_text','field_6177e2991ac4e'),(303039,42463,'blocks_8_accordion_items','8'),(303040,42463,'_blocks_8_accordion_items','field_6177e2991ac4c'),(303041,42463,'blocks_8_actions',''),(303042,42463,'_blocks_8_actions','field_61a746a817f7a'),(303043,42463,'blocks_9_acfe_flexible_toggle',''),(303044,42463,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(303045,42463,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(303046,42463,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(303047,42463,'blocks_9_options_theme','#f5f5f5'),(303048,42463,'_blocks_9_options_theme','field_6176830e2ad17'),(303049,42463,'blocks_9_options',''),(303050,42463,'_blocks_9_options','field_6176830e2ad16'),(303051,42463,'blocks_9_text_block_heading','The Importance of MSK Education'),(303052,42463,'_blocks_9_text_block_heading','field_617669d413097'),(303053,42463,'blocks_9_text_block_content',''),(303054,42463,'_blocks_9_text_block_content','field_617669ec13098'),(303055,42463,'blocks_12_acfe_flexible_toggle',''),(303056,42463,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(303057,42463,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(303058,42463,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(303059,42463,'blocks_12_options_theme','#f5f5f5'),(303060,42463,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(303061,42463,'blocks_12_options_reverse','1'),(303062,42463,'_blocks_12_options_reverse','field_61768049bb8ac'),(303063,42463,'blocks_12_options',''),(303064,42463,'_blocks_12_options','field_617682517c334'),(303065,42463,'blocks_12_split_5050_image','18856'),(303066,42463,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(303067,42463,'blocks_12_split_5050_video',''),(303068,42463,'_blocks_12_split_5050_video','field_6239f3160848a'),(303069,42463,'blocks_12_split_5050_content_title',''),(303070,42463,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(303071,42463,'blocks_12_split_5050_content_heading',''),(303072,42463,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(303073,42463,'blocks_12_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(303074,42463,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(303075,42463,'blocks_12_split_5050_content_actions',''),(303076,42463,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(303077,42463,'blocks_12_split_5050_content',''),(303078,42463,'_blocks_12_split_5050_content','field_61767afceb8ba'),(303079,42463,'blocks_13_acfe_flexible_toggle',''),(303080,42463,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(303081,42463,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(303082,42463,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(303083,42463,'blocks_13_options_theme','#b61234'),(303084,42463,'_blocks_13_options_theme','field_6176830e2ad17'),(303085,42463,'blocks_13_options',''),(303086,42463,'_blocks_13_options','field_6176830e2ad16'),(303087,42463,'blocks_13_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(303088,42463,'_blocks_13_text_block_heading','field_617669d413097'),(303089,42463,'blocks_13_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(303090,42463,'_blocks_13_text_block_content','field_617669ec13098'),(303091,42463,'blocks_14_acfe_flexible_toggle',''),(303092,42463,'_blocks_14_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(303093,42463,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(303094,42463,'_blocks_14_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(303095,42463,'blocks_14_options_theme','#b61234'),(303096,42463,'_blocks_14_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(303097,42463,'blocks_14_options_format','row'),(303098,42463,'_blocks_14_options_format','field_64bfde9a90690'),(303099,42463,'blocks_14_options',''),(303100,42463,'_blocks_14_options','field_64bfdd9b90684'),(303101,42463,'blocks_14_icon_row_items_0_icon','pass-rate.svg'),(303102,42463,'_blocks_14_icon_row_items_0_icon','field_64bfdd9b9068d'),(303103,42463,'blocks_14_icon_row_items_0_label','More Accurate Assessments'),(303104,42463,'_blocks_14_icon_row_items_0_label','field_64bfdd9c9068e'),(303105,42463,'blocks_14_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(303106,42463,'_blocks_14_icon_row_items_0_text','field_64bfdd9c9068f'),(303107,42463,'blocks_14_icon_row_items_1_icon','exceptional-support.svg'),(303108,42463,'_blocks_14_icon_row_items_1_icon','field_64bfdd9b9068d'),(303109,42463,'blocks_14_icon_row_items_1_label','Personalised Movement Strategies'),(303110,42463,'_blocks_14_icon_row_items_1_label','field_64bfdd9c9068e'),(303111,42463,'blocks_14_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(303112,42463,'_blocks_14_icon_row_items_1_text','field_64bfdd9c9068f'),(303113,42463,'blocks_14_icon_row_items_2_icon','lifetime-course-access.svg'),(303114,42463,'_blocks_14_icon_row_items_2_icon','field_64bfdd9b9068d'),(303115,42463,'blocks_14_icon_row_items_2_label','Injury Prevention and Longevity'),(303116,42463,'_blocks_14_icon_row_items_2_label','field_64bfdd9c9068e'),(303117,42463,'blocks_14_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(303118,42463,'_blocks_14_icon_row_items_2_text','field_64bfdd9c9068f'),(303119,42463,'blocks_14_icon_row_items_3_icon','recognised.svg'),(303120,42463,'_blocks_14_icon_row_items_3_icon','field_64bfdd9b9068d'),(303121,42463,'blocks_14_icon_row_items_3_label','Optimised Performance'),(303122,42463,'_blocks_14_icon_row_items_3_label','field_64bfdd9c9068e'),(303123,42463,'blocks_14_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(303124,42463,'_blocks_14_icon_row_items_3_text','field_64bfdd9c9068f'),(303125,42463,'blocks_14_icon_row_items','4'),(303126,42463,'_blocks_14_icon_row_items','field_64bfdd9b9068c'),(303127,42463,'blocks_15_acfe_flexible_toggle',''),(303128,42463,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(303129,42463,'blocks_15_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(303130,42463,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(303131,42463,'blocks_15_options_theme','#ffffff'),(303132,42463,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(303133,42463,'blocks_15_options_reverse','0'),(303134,42463,'_blocks_15_options_reverse','field_61768049bb8ac'),(303135,42463,'blocks_15_options',''),(303136,42463,'_blocks_15_options','field_617682517c334'),(303137,42463,'blocks_15_split_5050_image','41501'),(303138,42463,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(303139,42463,'blocks_15_split_5050_video',''),(303140,42463,'_blocks_15_split_5050_video','field_6239f3160848a'),(303141,42463,'blocks_15_split_5050_content_title',''),(303142,42463,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(303143,42463,'blocks_15_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(303144,42463,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(303145,42463,'blocks_15_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(303146,42463,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(303147,42463,'blocks_15_split_5050_content_actions',''),(303148,42463,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(303149,42463,'blocks_15_split_5050_content',''),(303150,42463,'_blocks_15_split_5050_content','field_61767afceb8ba'),(303151,42463,'blocks_18_acfe_flexible_toggle',''),(303152,42463,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(303153,42463,'blocks_18_acfe_flexible_layout_title','Conclusion'),(303154,42463,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(303155,42463,'blocks_18_options_theme','#f5f5f5'),(303156,42463,'_blocks_18_options_theme','field_6176830e2ad17'),(303157,42463,'blocks_18_options',''),(303158,42463,'_blocks_18_options','field_6176830e2ad16'),(303159,42463,'blocks_18_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(303160,42463,'_blocks_18_text_block_heading','field_617669d413097'),(303161,42463,'blocks_18_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(303162,42463,'_blocks_18_text_block_content','field_617669ec13098'),(303163,42463,'blocks_19_acfe_flexible_toggle',''),(303164,42463,'_blocks_19_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(303165,42463,'blocks_19_acfe_flexible_layout_title','Promo Panel'),(303166,42463,'_blocks_19_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(303167,42463,'blocks_19_options_alignment','center'),(303168,42463,'_blocks_19_options_alignment','field_61769449f5490'),(303169,42463,'blocks_19_options',''),(303170,42463,'_blocks_19_options','field_617693e1428f0'),(303171,42463,'blocks_19_promo_panel_image','40342'),(303172,42463,'_blocks_19_promo_panel_image','field_617693e1428f3'),(303173,42463,'blocks_19_promo_panel_content_heading','Want to Get Started?'),(303174,42463,'_blocks_19_promo_panel_content_heading','field_617693e1428f6'),(303175,42463,'blocks_19_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(303176,42463,'_blocks_19_promo_panel_content_text','field_617693e1428f7'),(303177,42463,'blocks_19_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(303178,42463,'_blocks_19_promo_panel_content_actions_0_button','field_617693e1428f9'),(303179,42463,'blocks_19_promo_panel_content_actions','1'),(303180,42463,'_blocks_19_promo_panel_content_actions','field_617693e1428f8'),(303181,42463,'blocks_19_promo_panel_content',''),(303182,42463,'_blocks_19_promo_panel_content','field_617693e1428f4'),(303183,42463,'blocks_6_acfe_flexible_toggle','1'),(303184,42463,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(303185,42463,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(303186,42463,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(303187,42463,'blocks_6_options_theme','#b61234'),(303188,42463,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(303189,42463,'blocks_6_options',''),(303190,42463,'_blocks_6_options','field_6177cfcd8140f'),(303191,42463,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(303192,42463,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(303193,42463,'blocks_6_tabs_0_tab_content_title',''),(303194,42463,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(303195,42463,'blocks_6_tabs_0_tab_content_heading',''),(303196,42463,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(303197,42463,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(303198,42463,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(303199,42463,'blocks_6_tabs_0_tab_content_actions',''),(303200,42463,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(303201,42463,'blocks_6_tabs_0_tab_content',''),(303202,42463,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(303203,42463,'blocks_6_tabs_0_tab_image','41542'),(303204,42463,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(303205,42463,'blocks_6_tabs_1_tab_label','Current Practitioners'),(303206,42463,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(303207,42463,'blocks_6_tabs_1_tab_content_title',''),(303208,42463,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(303209,42463,'blocks_6_tabs_1_tab_content_heading',''),(303210,42463,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(303211,42463,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(303212,42463,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(303213,42463,'blocks_6_tabs_1_tab_content_actions',''),(303214,42463,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(303215,42463,'blocks_6_tabs_1_tab_content',''),(303216,42463,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(303217,42463,'blocks_6_tabs_1_tab_image','41505'),(303218,42463,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(303219,42463,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(303220,42463,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(303221,42463,'blocks_6_tabs_2_tab_content_title',''),(303222,42463,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(303223,42463,'blocks_6_tabs_2_tab_content_heading',''),(303224,42463,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(303225,42463,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(303226,42463,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(303227,42463,'blocks_6_tabs_2_tab_content_actions',''),(303228,42463,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(303229,42463,'blocks_6_tabs_2_tab_content',''),(303230,42463,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(303231,42463,'blocks_6_tabs_2_tab_image','41539'),(303232,42463,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(303233,42463,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(303234,42463,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(303235,42463,'blocks_6_tabs_3_tab_content_title',''),(303236,42463,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(303237,42463,'blocks_6_tabs_3_tab_content_heading',''),(303238,42463,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(303239,42463,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(303240,42463,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(303241,42463,'blocks_6_tabs_3_tab_content_actions',''),(303242,42463,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(303243,42463,'blocks_6_tabs_3_tab_content',''),(303244,42463,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(303245,42463,'blocks_6_tabs_3_tab_image','41502'),(303246,42463,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(303247,42463,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(303248,42463,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(303249,42463,'blocks_6_tabs_4_tab_content_title',''),(303250,42463,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(303251,42463,'blocks_6_tabs_4_tab_content_heading',''),(303252,42463,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(303253,42463,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(303254,42463,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(303255,42463,'blocks_6_tabs_4_tab_content_actions',''),(303256,42463,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(303257,42463,'blocks_6_tabs_4_tab_content',''),(303258,42463,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(303259,42463,'blocks_6_tabs_4_tab_image','41506'),(303260,42463,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(303261,42463,'blocks_6_tabs','5'),(303262,42463,'_blocks_6_tabs','field_6177cff281419'),(303263,42463,'blocks_7_acfe_flexible_toggle',''),(303264,42463,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(303265,42463,'blocks_7_acfe_flexible_layout_title','Who Should Study MSK?'),(303266,42463,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(303267,42463,'blocks_7_options_theme','#b61234'),(303268,42463,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(303269,42463,'blocks_7_options_format','carousel'),(303270,42463,'_blocks_7_options_format','field_617a7b15245b5'),(303271,42463,'blocks_7_options_style','default'),(303272,42463,'_blocks_7_options_style','field_6278ffb63484a'),(303273,42463,'blocks_7_options_cards_current_listing','0'),(303274,42463,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(303275,42463,'blocks_7_options_cards_content','custom'),(303276,42463,'_blocks_7_options_cards_content','field_617aba6122688'),(303277,42463,'blocks_7_options',''),(303278,42463,'_blocks_7_options','field_617a7b15245b3'),(303279,42463,'blocks_7_cards_custom_0_image','41542'),(303280,42463,'_blocks_7_cards_custom_0_image','field_6194cc284d387'),(303281,42463,'blocks_7_cards_custom_0_title','Aspiring Healthcare Professionals'),(303282,42463,'_blocks_7_cards_custom_0_title','field_6194cc454d388'),(303283,42463,'blocks_7_cards_custom_0_text','Musculoskeletal (MSK) studies are ideal for aspiring healthcare professionals and those working to minimise workplace strain, improve posture, and prevent MSK injuries. Understanding MSK risks helps identify and reduce workplace-related issues, promoting better movement efficiency in professional environments. This knowledge enhances career prospects in corporate wellness and occupational health, while also supporting compliance with health and safety regulations to reduce workplace injuries.'),(303284,42463,'_blocks_7_cards_custom_0_text','field_6194cc4a4d389'),(303285,42463,'blocks_7_cards_custom_0_link',''),(303286,42463,'_blocks_7_cards_custom_0_link','field_6194cc534d38a'),(303287,42463,'blocks_7_cards_custom_1_image','41543'),(303288,42463,'_blocks_7_cards_custom_1_image','field_6194cc284d387'),(303289,42463,'blocks_7_cards_custom_1_title','Current Practitioners'),(303290,42463,'_blocks_7_cards_custom_1_title','field_6194cc454d388'),(303291,42463,'blocks_7_cards_custom_1_text','Medical and allied health professionals looking to expand their expertise in MSK assessment and treatment can benefit from advanced skills in diagnosing and managing movement dysfunctions. By integrating evidence-based strategies into patient care, they can create more effective treatment plans, enhance rehabilitation outcomes, and improve overall client satisfaction.'),(303292,42463,'_blocks_7_cards_custom_1_text','field_6194cc4a4d389'),(303293,42463,'blocks_7_cards_custom_1_link',''),(303294,42463,'_blocks_7_cards_custom_1_link','field_6194cc534d38a'),(303295,42463,'blocks_7_cards_custom_2_image','41539'),(303296,42463,'_blocks_7_cards_custom_2_image','field_6194cc284d387'),(303297,42463,'blocks_7_cards_custom_2_title','Fitness and Sports Professionals'),(303298,42463,'_blocks_7_cards_custom_2_title','field_6194cc454d388'),(303299,42463,'blocks_7_cards_custom_2_text','Personal trainers, coaches, and therapists can refine their understanding of movement, injury prevention, and rehabilitation through MSK education. Gaining deeper insights into movement mechanics enhances coaching skills, improves client mobility and performance, and increases earning potential by offering specialised MSK-focused training. Additionally, it opens opportunities to collaborate with healthcare professionals in rehabilitation settings.'),(303300,42463,'_blocks_7_cards_custom_2_text','field_6194cc4a4d389'),(303301,42463,'blocks_7_cards_custom_2_link',''),(303302,42463,'_blocks_7_cards_custom_2_link','field_6194cc534d38a'),(303303,42463,'blocks_7_cards_custom_3_image','41501'),(303304,42463,'_blocks_7_cards_custom_3_image','field_6194cc284d387'),(303305,42463,'blocks_7_cards_custom_3_title','Educators and Researchers'),(303306,42463,'_blocks_7_cards_custom_3_title','field_6194cc454d388'),(303307,42463,'blocks_7_cards_custom_3_text','Students of human movement, biomechanics, or rehabilitation can deepen their analysis of movement and performance through MSK education. It supports the development of innovative injury prevention strategies, enhances credibility in academic and research settings, and creates opportunities for collaboration with healthcare and sports industries.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n'),(303308,42463,'_blocks_7_cards_custom_3_text','field_6194cc4a4d389'),(303309,42463,'blocks_7_cards_custom_3_link',''),(303310,42463,'_blocks_7_cards_custom_3_link','field_6194cc534d38a'),(303311,42463,'blocks_7_cards_custom_4_image','40383'),(303312,42463,'_blocks_7_cards_custom_4_image','field_6194cc284d387'),(303313,42463,'blocks_7_cards_custom_4_title','Ergonomists and Occupational Health Specialists'),(303314,42463,'_blocks_7_cards_custom_4_title','field_6194cc454d388'),(303315,42463,'blocks_7_cards_custom_4_text','Professionals focused on reducing workplace strain, improving posture, and preventing MSK injuries can benefit from MSK education by identifying and mitigating workplace-related risks. It enhances movement efficiency, boosts career prospects in corporate wellness and occupational health, and supports compliance with health and safety regulations to reduce workplace injuries.'),(303316,42463,'_blocks_7_cards_custom_4_text','field_6194cc4a4d389'),(303317,42463,'blocks_7_cards_custom_4_link',''),(303318,42463,'_blocks_7_cards_custom_4_link','field_6194cc534d38a'),(303319,42463,'blocks_7_cards_custom','5'),(303320,42463,'_blocks_7_cards_custom','field_6194cbf84d386'),(303321,42463,'blocks_20_acfe_flexible_toggle',''),(303322,42463,'_blocks_20_acfe_flexible_toggle','field_layout_618105a1442de_toggle'),(303323,42463,'blocks_20_acfe_flexible_layout_title','Section Slider'),(303324,42463,'_blocks_20_acfe_flexible_layout_title','field_layout_618105a1442de_title'),(303325,42463,'blocks_20_section_slider_slides_0_image','41543'),(303326,42463,'_blocks_20_section_slider_slides_0_image','field_618105d3442ea'),(303327,42463,'blocks_20_section_slider_slides_0_content_title','Slider'),(303328,42463,'_blocks_20_section_slider_slides_0_content_title','field_618105a1442e8'),(303329,42463,'blocks_20_section_slider_slides_0_content_heading','HEading'),(303330,42463,'_blocks_20_section_slider_slides_0_content_heading','field_618106c1e17a2'),(303331,42463,'blocks_20_section_slider_slides_0_content_text','Musculoskeletal (MSK) studies are ideal for aspiring healthcare professionals and those working to minimise workplace strain, improve posture, and prevent MSK injuries. Understanding MSK risks helps identify and reduce workplace-related issues, promoting better movement efficiency in professional environments. This knowledge enhances career prospects in corporate wellness and occupational health, while also supporting compliance with health and safety regulations to reduce workplace injuries.'),(303332,42463,'_blocks_20_section_slider_slides_0_content_text','field_618105a1442e9'),(303333,42463,'blocks_20_section_slider_slides_0_content_button',''),(303334,42463,'_blocks_20_section_slider_slides_0_content_button','field_618106cae17a3'),(303335,42463,'blocks_20_section_slider_slides_0_content',''),(303336,42463,'_blocks_20_section_slider_slides_0_content','field_618105d9442eb'),(303337,42463,'blocks_20_section_slider_slides_1_image','41524'),(303338,42463,'_blocks_20_section_slider_slides_1_image','field_618105d3442ea'),(303339,42463,'blocks_20_section_slider_slides_1_content_title','Musculoskeletal (MSK) studies are ideal for aspiring healthcare professionals and those working to minimise workplace strain, improve posture, and prevent MSK injuries. Understanding MSK risks helps identify and reduce workplace-related issues, promoting better movement efficiency in professional environments. This knowledge enhances career prospects in corporate wellness and occupational health, while also supporting compliance with health and safety regulations to reduce workplace injuries.'),(303340,42463,'_blocks_20_section_slider_slides_1_content_title','field_618105a1442e8'),(303341,42463,'blocks_20_section_slider_slides_1_content_heading','HEading'),(303342,42463,'_blocks_20_section_slider_slides_1_content_heading','field_618106c1e17a2'),(303343,42463,'blocks_20_section_slider_slides_1_content_text','Musculoskeletal (MSK) studies are ideal for aspiring healthcare professionals and those working to minimise workplace strain, improve posture, and prevent MSK injuries. Understanding MSK risks helps identify and reduce workplace-related issues, promoting better movement efficiency in professional environments. This knowledge enhances career prospects in corporate wellness and occupational health, while also supporting compliance with health and safety regulations to reduce workplace injuries.'),(303344,42463,'_blocks_20_section_slider_slides_1_content_text','field_618105a1442e9'),(303345,42463,'blocks_20_section_slider_slides_1_content_button',''),(303346,42463,'_blocks_20_section_slider_slides_1_content_button','field_618106cae17a3'),(303347,42463,'blocks_20_section_slider_slides_1_content',''),(303348,42463,'_blocks_20_section_slider_slides_1_content','field_618105d9442eb'),(303349,42463,'blocks_20_section_slider_slides','2'),(303350,42463,'_blocks_20_section_slider_slides','field_618105a1442e7'),(303351,42464,'hide_hero','0'),(303352,42464,'_hide_hero','field_66a2380fcda39'),(303353,42464,'hero_title',''),(303354,42464,'_hero_title','field_617571fe285e8'),(303355,42464,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(303356,42464,'_hero_text','field_6175723c285e9'),(303357,42464,'hero_actions','1'),(303358,42464,'_hero_actions','field_61757270285ea'),(303359,42464,'hero_style','default'),(303360,42464,'_hero_style','field_62051d9dc5324'),(303361,42464,'hero_image_pos_x','right'),(303362,42464,'_hero_image_pos_x','field_62ec3d05390bb'),(303363,42464,'hero_image_pos_y','top'),(303364,42464,'_hero_image_pos_y','field_62ec3d05390bc'),(303365,42464,'hero_image_pos',''),(303366,42464,'_hero_image_pos','field_62ec3d05390ba'),(303367,42464,'fft_hide_from_listings','0'),(303368,42464,'_fft_hide_from_listings','field_61f1320446ab2'),(303369,42464,'post_format','402'),(303370,42464,'_post_format','field_61756bfb51898'),(303371,42464,'post_author',''),(303372,42464,'_post_author','field_62ec389d22113'),(303373,42464,'post_reviewer',''),(303374,42464,'_post_reviewer','field_627140a2a9800'),(303375,42464,'post_table_of_contents','0'),(303376,42464,'_post_table_of_contents','field_65c503bc846a6'),(303377,42464,'blocks','a:20:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:5:\"cards\";i:8;s:10:\"accordions\";i:9;s:10:\"text_block\";i:10;s:10:\"split_5050\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"text_block\";i:14;s:5:\"icons\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:11:\"promo_panel\";}'),(303378,42464,'_blocks','field_6176696113096'),(303379,42464,'_thumbnail_id','41331'),(303380,42464,'__thumbnail_id','field_617570855ddaf'),(303381,42464,'blocks_0_acfe_flexible_toggle',''),(303382,42464,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(303383,42464,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(303384,42464,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(303385,42464,'blocks_0_options_theme','#ffffff'),(303386,42464,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(303387,42464,'blocks_0_options',''),(303388,42464,'_blocks_0_options','field_6177b758246ae'),(303389,42464,'blocks_0_link_stack_content_title',''),(303390,42464,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(303391,42464,'blocks_0_link_stack_content_heading','What is MSK?'),(303392,42464,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(303393,42464,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(303394,42464,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(303395,42464,'blocks_0_link_stack_content_actions_0_button',''),(303396,42464,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(303397,42464,'blocks_0_link_stack_content_actions','1'),(303398,42464,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(303399,42464,'blocks_0_link_stack_content',''),(303400,42464,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(303401,42464,'blocks_0_link_stack_0_label','1.'),(303402,42464,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(303403,42464,'blocks_0_link_stack_0_title','Overview'),(303404,42464,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(303405,42464,'blocks_0_link_stack_0_url','#overview'),(303406,42464,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(303407,42464,'blocks_0_link_stack_1_label','2.'),(303408,42464,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(303409,42464,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(303410,42464,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(303411,42464,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(303412,42464,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(303413,42464,'blocks_0_link_stack_2_label','3.'),(303414,42464,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(303415,42464,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(303416,42464,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(303417,42464,'blocks_0_link_stack_2_url','#who-should-study-msk'),(303418,42464,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(303419,42464,'blocks_0_link_stack_3_label','4.'),(303420,42464,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(303421,42464,'blocks_0_link_stack_3_title','Common MSK Conditions'),(303422,42464,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(303423,42464,'blocks_0_link_stack_3_url','#common-msk-conditions'),(303424,42464,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(303425,42464,'blocks_0_link_stack_4_label','5.'),(303426,42464,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(303427,42464,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(303428,42464,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(303429,42464,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(303430,42464,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(303431,42464,'blocks_0_link_stack_5_label','6.'),(303432,42464,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(303433,42464,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(303434,42464,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(303435,42464,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(303436,42464,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(303437,42464,'blocks_0_link_stack','6'),(303438,42464,'_blocks_0_link_stack','field_6177b7f600cff'),(303439,42464,'blocks_1_acfe_flexible_toggle',''),(303440,42464,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(303441,42464,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(303442,42464,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(303443,42464,'blocks_1_options_theme','#ffffff'),(303444,42464,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(303445,42464,'blocks_1_options_reverse','0'),(303446,42464,'_blocks_1_options_reverse','field_61768049bb8ac'),(303447,42464,'blocks_1_options',''),(303448,42464,'_blocks_1_options','field_617682517c334'),(303449,42464,'blocks_1_split_5050_image','40615'),(303450,42464,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(303451,42464,'blocks_1_split_5050_video',''),(303452,42464,'_blocks_1_split_5050_video','field_6239f3160848a'),(303453,42464,'blocks_1_split_5050_content_title',''),(303454,42464,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(303455,42464,'blocks_1_split_5050_content_heading','Overview'),(303456,42464,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(303457,42464,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(303458,42464,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(303459,42464,'blocks_1_split_5050_content_actions',''),(303460,42464,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(303461,42464,'blocks_1_split_5050_content',''),(303462,42464,'_blocks_1_split_5050_content','field_61767afceb8ba'),(303463,42464,'blocks_2_acfe_flexible_toggle',''),(303464,42464,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(303465,42464,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(303466,42464,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(303467,42464,'blocks_2_options_theme','#f5f5f5'),(303468,42464,'_blocks_2_options_theme','field_6176830e2ad17'),(303469,42464,'blocks_2_options',''),(303470,42464,'_blocks_2_options','field_6176830e2ad16'),(303471,42464,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(303472,42464,'_blocks_2_text_block_heading','field_617669d413097'),(303473,42464,'blocks_2_text_block_content',''),(303474,42464,'_blocks_2_text_block_content','field_617669ec13098'),(303475,42464,'blocks_3_acfe_flexible_toggle',''),(303476,42464,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(303477,42464,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(303478,42464,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(303479,42464,'blocks_3_options_theme','#f5f5f5'),(303480,42464,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(303481,42464,'blocks_3_options_reverse','1'),(303482,42464,'_blocks_3_options_reverse','field_61768049bb8ac'),(303483,42464,'blocks_3_options',''),(303484,42464,'_blocks_3_options','field_617682517c334'),(303485,42464,'blocks_3_split_5050_image','40618'),(303486,42464,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(303487,42464,'blocks_3_split_5050_video',''),(303488,42464,'_blocks_3_split_5050_video','field_6239f3160848a'),(303489,42464,'blocks_3_split_5050_content_title',''),(303490,42464,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(303491,42464,'blocks_3_split_5050_content_heading',''),(303492,42464,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(303493,42464,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(303494,42464,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(303495,42464,'blocks_3_split_5050_content_actions',''),(303496,42464,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(303497,42464,'blocks_3_split_5050_content',''),(303498,42464,'_blocks_3_split_5050_content','field_61767afceb8ba'),(303499,42464,'blocks_4_acfe_flexible_toggle','1'),(303500,42464,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(303501,42464,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(303502,42464,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(303503,42464,'blocks_4_options_theme','#f5f5f5'),(303504,42464,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(303505,42464,'blocks_4_options_reverse','1'),(303506,42464,'_blocks_4_options_reverse','field_61768049bb8ac'),(303507,42464,'blocks_4_options',''),(303508,42464,'_blocks_4_options','field_617682517c334'),(303509,42464,'blocks_4_split_5050_image','41330'),(303510,42464,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(303511,42464,'blocks_4_split_5050_video',''),(303512,42464,'_blocks_4_split_5050_video','field_6239f3160848a'),(303513,42464,'blocks_4_split_5050_content_title',''),(303514,42464,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(303515,42464,'blocks_4_split_5050_content_heading',''),(303516,42464,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(303517,42464,'blocks_4_split_5050_content_text',''),(303518,42464,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(303519,42464,'blocks_4_split_5050_content_actions',''),(303520,42464,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(303521,42464,'blocks_4_split_5050_content',''),(303522,42464,'_blocks_4_split_5050_content','field_61767afceb8ba'),(303523,42464,'blocks_5_acfe_flexible_toggle',''),(303524,42464,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(303525,42464,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(303526,42464,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(303527,42464,'blocks_5_options_theme','#ffffff'),(303528,42464,'_blocks_5_options_theme','field_6176830e2ad17'),(303529,42464,'blocks_5_options',''),(303530,42464,'_blocks_5_options','field_6176830e2ad16'),(303531,42464,'blocks_5_text_block_heading','Who Should Study MSK?'),(303532,42464,'_blocks_5_text_block_heading','field_617669d413097'),(303533,42464,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(303534,42464,'_blocks_5_text_block_content','field_617669ec13098'),(303535,42464,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(303536,42464,'_hero_actions_0_button','field_61757281285eb'),(303537,42464,'blocks_10_acfe_flexible_toggle',''),(303538,42464,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(303539,42464,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(303540,42464,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(303541,42464,'blocks_10_options_theme','#f5f5f5'),(303542,42464,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(303543,42464,'blocks_10_options_reverse','1'),(303544,42464,'_blocks_10_options_reverse','field_61768049bb8ac'),(303545,42464,'blocks_10_options',''),(303546,42464,'_blocks_10_options','field_617682517c334'),(303547,42464,'blocks_10_split_5050_image','41498'),(303548,42464,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(303549,42464,'blocks_10_split_5050_video',''),(303550,42464,'_blocks_10_split_5050_video','field_6239f3160848a'),(303551,42464,'blocks_10_split_5050_content_title',''),(303552,42464,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(303553,42464,'blocks_10_split_5050_content_heading',''),(303554,42464,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(303555,42464,'blocks_10_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(303556,42464,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(303557,42464,'blocks_10_split_5050_content_actions',''),(303558,42464,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(303559,42464,'blocks_10_split_5050_content',''),(303560,42464,'_blocks_10_split_5050_content','field_61767afceb8ba'),(303561,42464,'blocks_11_acfe_flexible_toggle',''),(303562,42464,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(303563,42464,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(303564,42464,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(303565,42464,'blocks_11_options_theme','#f5f5f5'),(303566,42464,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(303567,42464,'blocks_11_options_reverse','1'),(303568,42464,'_blocks_11_options_reverse','field_61768049bb8ac'),(303569,42464,'blocks_11_options',''),(303570,42464,'_blocks_11_options','field_617682517c334'),(303571,42464,'blocks_11_split_5050_image','40387'),(303572,42464,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(303573,42464,'blocks_11_split_5050_video',''),(303574,42464,'_blocks_11_split_5050_video','field_6239f3160848a'),(303575,42464,'blocks_11_split_5050_content_title',''),(303576,42464,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(303577,42464,'blocks_11_split_5050_content_heading',''),(303578,42464,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(303579,42464,'blocks_11_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(303580,42464,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(303581,42464,'blocks_11_split_5050_content_actions',''),(303582,42464,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(303583,42464,'blocks_11_split_5050_content',''),(303584,42464,'_blocks_11_split_5050_content','field_61767afceb8ba'),(303585,42464,'blocks_17_acfe_flexible_toggle',''),(303586,42464,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(303587,42464,'blocks_17_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(303588,42464,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(303589,42464,'blocks_17_options_theme','#ffffff'),(303590,42464,'_blocks_17_options_theme','field_6176830e2ad17'),(303591,42464,'blocks_17_options',''),(303592,42464,'_blocks_17_options','field_6176830e2ad16'),(303593,42464,'blocks_17_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(303594,42464,'_blocks_17_text_block_heading','field_617669d413097'),(303595,42464,'blocks_17_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(303596,42464,'_blocks_17_text_block_content','field_617669ec13098'),(303597,42464,'blocks_16_acfe_flexible_toggle',''),(303598,42464,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(303599,42464,'blocks_16_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(303600,42464,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(303601,42464,'blocks_16_options_theme','#ffffff'),(303602,42464,'_blocks_16_options_theme','field_6176830e2ad17'),(303603,42464,'blocks_16_options',''),(303604,42464,'_blocks_16_options','field_6176830e2ad16'),(303605,42464,'blocks_16_text_block_heading','The Role of MSK Education in Workplace Health'),(303606,42464,'_blocks_16_text_block_heading','field_617669d413097'),(303607,42464,'blocks_16_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(303608,42464,'_blocks_16_text_block_content','field_617669ec13098'),(303609,42464,'blocks_8_acfe_flexible_toggle',''),(303610,42464,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(303611,42464,'blocks_8_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(303612,42464,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(303613,42464,'blocks_8_options_theme','#ffffff'),(303614,42464,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(303615,42464,'blocks_8_options_state','0'),(303616,42464,'_blocks_8_options_state','field_6239fcb7508c5'),(303617,42464,'blocks_8_options',''),(303618,42464,'_blocks_8_options','field_6177e2991ac44'),(303619,42464,'blocks_8_content_title','Common MSK Conditions'),(303620,42464,'_blocks_8_content_title','field_64d237e8bb1e2'),(303621,42464,'blocks_8_content_heading','Common MSK Conditions'),(303622,42464,'_blocks_8_content_heading','field_64d237e8bb1e3'),(303623,42464,'blocks_8_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(303624,42464,'_blocks_8_content_text','field_64d237e8bb1e4'),(303625,42464,'blocks_8_content_actions',''),(303626,42464,'_blocks_8_content_actions','field_64d237e8bb1e5'),(303627,42464,'blocks_8_content_align','left'),(303628,42464,'_blocks_8_content_align','field_64d2443e6b6aa'),(303629,42464,'blocks_8_content',''),(303630,42464,'_blocks_8_content','field_64d237e8bb1e1'),(303631,42464,'blocks_8_accordion_content','custom'),(303632,42464,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(303633,42464,'blocks_8_accordion_items_0_title','Osteoarthritis'),(303634,42464,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(303635,42464,'blocks_8_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(303636,42464,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(303637,42464,'blocks_8_accordion_items_1_title','Rheumatoid Arthritis'),(303638,42464,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(303639,42464,'blocks_8_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(303640,42464,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(303641,42464,'blocks_8_accordion_items_2_title','Back Pain'),(303642,42464,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(303643,42464,'blocks_8_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(303644,42464,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(303645,42464,'blocks_8_accordion_items_3_title','Osteoporosis'),(303646,42464,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(303647,42464,'blocks_8_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(303648,42464,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(303649,42464,'blocks_8_accordion_items_4_title','Tendinitis'),(303650,42464,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(303651,42464,'blocks_8_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(303652,42464,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(303653,42464,'blocks_8_accordion_items_5_title','Carpal Tunnel Syndrome'),(303654,42464,'_blocks_8_accordion_items_5_title','field_6177e2991ac4d'),(303655,42464,'blocks_8_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(303656,42464,'_blocks_8_accordion_items_5_text','field_6177e2991ac4e'),(303657,42464,'blocks_8_accordion_items_6_title','Fibromyalgia'),(303658,42464,'_blocks_8_accordion_items_6_title','field_6177e2991ac4d'),(303659,42464,'blocks_8_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(303660,42464,'_blocks_8_accordion_items_6_text','field_6177e2991ac4e'),(303661,42464,'blocks_8_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(303662,42464,'_blocks_8_accordion_items_7_title','field_6177e2991ac4d'),(303663,42464,'blocks_8_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(303664,42464,'_blocks_8_accordion_items_7_text','field_6177e2991ac4e'),(303665,42464,'blocks_8_accordion_items','8'),(303666,42464,'_blocks_8_accordion_items','field_6177e2991ac4c'),(303667,42464,'blocks_8_actions',''),(303668,42464,'_blocks_8_actions','field_61a746a817f7a'),(303669,42464,'blocks_9_acfe_flexible_toggle',''),(303670,42464,'_blocks_9_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(303671,42464,'blocks_9_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(303672,42464,'_blocks_9_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(303673,42464,'blocks_9_options_theme','#f5f5f5'),(303674,42464,'_blocks_9_options_theme','field_6176830e2ad17'),(303675,42464,'blocks_9_options',''),(303676,42464,'_blocks_9_options','field_6176830e2ad16'),(303677,42464,'blocks_9_text_block_heading','The Importance of MSK Education'),(303678,42464,'_blocks_9_text_block_heading','field_617669d413097'),(303679,42464,'blocks_9_text_block_content',''),(303680,42464,'_blocks_9_text_block_content','field_617669ec13098'),(303681,42464,'blocks_12_acfe_flexible_toggle',''),(303682,42464,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(303683,42464,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(303684,42464,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(303685,42464,'blocks_12_options_theme','#f5f5f5'),(303686,42464,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(303687,42464,'blocks_12_options_reverse','1'),(303688,42464,'_blocks_12_options_reverse','field_61768049bb8ac'),(303689,42464,'blocks_12_options',''),(303690,42464,'_blocks_12_options','field_617682517c334'),(303691,42464,'blocks_12_split_5050_image','18856'),(303692,42464,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(303693,42464,'blocks_12_split_5050_video',''),(303694,42464,'_blocks_12_split_5050_video','field_6239f3160848a'),(303695,42464,'blocks_12_split_5050_content_title',''),(303696,42464,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(303697,42464,'blocks_12_split_5050_content_heading',''),(303698,42464,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(303699,42464,'blocks_12_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(303700,42464,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(303701,42464,'blocks_12_split_5050_content_actions',''),(303702,42464,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(303703,42464,'blocks_12_split_5050_content',''),(303704,42464,'_blocks_12_split_5050_content','field_61767afceb8ba'),(303705,42464,'blocks_13_acfe_flexible_toggle',''),(303706,42464,'_blocks_13_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(303707,42464,'blocks_13_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(303708,42464,'_blocks_13_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(303709,42464,'blocks_13_options_theme','#b61234'),(303710,42464,'_blocks_13_options_theme','field_6176830e2ad17'),(303711,42464,'blocks_13_options',''),(303712,42464,'_blocks_13_options','field_6176830e2ad16'),(303713,42464,'blocks_13_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(303714,42464,'_blocks_13_text_block_heading','field_617669d413097'),(303715,42464,'blocks_13_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(303716,42464,'_blocks_13_text_block_content','field_617669ec13098'),(303717,42464,'blocks_14_acfe_flexible_toggle',''),(303718,42464,'_blocks_14_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(303719,42464,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(303720,42464,'_blocks_14_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(303721,42464,'blocks_14_options_theme','#b61234'),(303722,42464,'_blocks_14_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(303723,42464,'blocks_14_options_format','row'),(303724,42464,'_blocks_14_options_format','field_64bfde9a90690'),(303725,42464,'blocks_14_options',''),(303726,42464,'_blocks_14_options','field_64bfdd9b90684'),(303727,42464,'blocks_14_icon_row_items_0_icon','pass-rate.svg'),(303728,42464,'_blocks_14_icon_row_items_0_icon','field_64bfdd9b9068d'),(303729,42464,'blocks_14_icon_row_items_0_label','More Accurate Assessments'),(303730,42464,'_blocks_14_icon_row_items_0_label','field_64bfdd9c9068e'),(303731,42464,'blocks_14_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(303732,42464,'_blocks_14_icon_row_items_0_text','field_64bfdd9c9068f'),(303733,42464,'blocks_14_icon_row_items_1_icon','exceptional-support.svg'),(303734,42464,'_blocks_14_icon_row_items_1_icon','field_64bfdd9b9068d'),(303735,42464,'blocks_14_icon_row_items_1_label','Personalised Movement Strategies'),(303736,42464,'_blocks_14_icon_row_items_1_label','field_64bfdd9c9068e'),(303737,42464,'blocks_14_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(303738,42464,'_blocks_14_icon_row_items_1_text','field_64bfdd9c9068f'),(303739,42464,'blocks_14_icon_row_items_2_icon','lifetime-course-access.svg'),(303740,42464,'_blocks_14_icon_row_items_2_icon','field_64bfdd9b9068d'),(303741,42464,'blocks_14_icon_row_items_2_label','Injury Prevention and Longevity'),(303742,42464,'_blocks_14_icon_row_items_2_label','field_64bfdd9c9068e'),(303743,42464,'blocks_14_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(303744,42464,'_blocks_14_icon_row_items_2_text','field_64bfdd9c9068f'),(303745,42464,'blocks_14_icon_row_items_3_icon','recognised.svg'),(303746,42464,'_blocks_14_icon_row_items_3_icon','field_64bfdd9b9068d'),(303747,42464,'blocks_14_icon_row_items_3_label','Optimised Performance'),(303748,42464,'_blocks_14_icon_row_items_3_label','field_64bfdd9c9068e'),(303749,42464,'blocks_14_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(303750,42464,'_blocks_14_icon_row_items_3_text','field_64bfdd9c9068f'),(303751,42464,'blocks_14_icon_row_items','4'),(303752,42464,'_blocks_14_icon_row_items','field_64bfdd9b9068c'),(303753,42464,'blocks_15_acfe_flexible_toggle',''),(303754,42464,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(303755,42464,'blocks_15_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(303756,42464,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(303757,42464,'blocks_15_options_theme','#ffffff'),(303758,42464,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(303759,42464,'blocks_15_options_reverse','0'),(303760,42464,'_blocks_15_options_reverse','field_61768049bb8ac'),(303761,42464,'blocks_15_options',''),(303762,42464,'_blocks_15_options','field_617682517c334'),(303763,42464,'blocks_15_split_5050_image','41501'),(303764,42464,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(303765,42464,'blocks_15_split_5050_video',''),(303766,42464,'_blocks_15_split_5050_video','field_6239f3160848a'),(303767,42464,'blocks_15_split_5050_content_title',''),(303768,42464,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(303769,42464,'blocks_15_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(303770,42464,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(303771,42464,'blocks_15_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(303772,42464,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(303773,42464,'blocks_15_split_5050_content_actions',''),(303774,42464,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(303775,42464,'blocks_15_split_5050_content',''),(303776,42464,'_blocks_15_split_5050_content','field_61767afceb8ba'),(303777,42464,'blocks_18_acfe_flexible_toggle',''),(303778,42464,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(303779,42464,'blocks_18_acfe_flexible_layout_title','Conclusion'),(303780,42464,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(303781,42464,'blocks_18_options_theme','#f5f5f5'),(303782,42464,'_blocks_18_options_theme','field_6176830e2ad17'),(303783,42464,'blocks_18_options',''),(303784,42464,'_blocks_18_options','field_6176830e2ad16'),(303785,42464,'blocks_18_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(303786,42464,'_blocks_18_text_block_heading','field_617669d413097'),(303787,42464,'blocks_18_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(303788,42464,'_blocks_18_text_block_content','field_617669ec13098'),(303789,42464,'blocks_19_acfe_flexible_toggle',''),(303790,42464,'_blocks_19_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(303791,42464,'blocks_19_acfe_flexible_layout_title','Promo Panel'),(303792,42464,'_blocks_19_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(303793,42464,'blocks_19_options_alignment','center'),(303794,42464,'_blocks_19_options_alignment','field_61769449f5490'),(303795,42464,'blocks_19_options',''),(303796,42464,'_blocks_19_options','field_617693e1428f0'),(303797,42464,'blocks_19_promo_panel_image','40342'),(303798,42464,'_blocks_19_promo_panel_image','field_617693e1428f3'),(303799,42464,'blocks_19_promo_panel_content_heading','Want to Get Started?'),(303800,42464,'_blocks_19_promo_panel_content_heading','field_617693e1428f6'),(303801,42464,'blocks_19_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(303802,42464,'_blocks_19_promo_panel_content_text','field_617693e1428f7'),(303803,42464,'blocks_19_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(303804,42464,'_blocks_19_promo_panel_content_actions_0_button','field_617693e1428f9'),(303805,42464,'blocks_19_promo_panel_content_actions','1'),(303806,42464,'_blocks_19_promo_panel_content_actions','field_617693e1428f8'),(303807,42464,'blocks_19_promo_panel_content',''),(303808,42464,'_blocks_19_promo_panel_content','field_617693e1428f4'),(303809,42464,'blocks_6_acfe_flexible_toggle',''),(303810,42464,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(303811,42464,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(303812,42464,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(303813,42464,'blocks_6_options_theme','#b61234'),(303814,42464,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(303815,42464,'blocks_6_options',''),(303816,42464,'_blocks_6_options','field_6177cfcd8140f'),(303817,42464,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(303818,42464,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(303819,42464,'blocks_6_tabs_0_tab_content_title',''),(303820,42464,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(303821,42464,'blocks_6_tabs_0_tab_content_heading',''),(303822,42464,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(303823,42464,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(303824,42464,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(303825,42464,'blocks_6_tabs_0_tab_content_actions',''),(303826,42464,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(303827,42464,'blocks_6_tabs_0_tab_content',''),(303828,42464,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(303829,42464,'blocks_6_tabs_0_tab_image','41542'),(303830,42464,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(303831,42464,'blocks_6_tabs_1_tab_label','Current Practitioners'),(303832,42464,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(303833,42464,'blocks_6_tabs_1_tab_content_title',''),(303834,42464,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(303835,42464,'blocks_6_tabs_1_tab_content_heading',''),(303836,42464,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(303837,42464,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(303838,42464,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(303839,42464,'blocks_6_tabs_1_tab_content_actions',''),(303840,42464,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(303841,42464,'blocks_6_tabs_1_tab_content',''),(303842,42464,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(303843,42464,'blocks_6_tabs_1_tab_image','41505'),(303844,42464,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(303845,42464,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(303846,42464,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(303847,42464,'blocks_6_tabs_2_tab_content_title',''),(303848,42464,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(303849,42464,'blocks_6_tabs_2_tab_content_heading',''),(303850,42464,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(303851,42464,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(303852,42464,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(303853,42464,'blocks_6_tabs_2_tab_content_actions',''),(303854,42464,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(303855,42464,'blocks_6_tabs_2_tab_content',''),(303856,42464,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(303857,42464,'blocks_6_tabs_2_tab_image','41539'),(303858,42464,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(303859,42464,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(303860,42464,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(303861,42464,'blocks_6_tabs_3_tab_content_title',''),(303862,42464,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(303863,42464,'blocks_6_tabs_3_tab_content_heading',''),(303864,42464,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(303865,42464,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(303866,42464,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(303867,42464,'blocks_6_tabs_3_tab_content_actions',''),(303868,42464,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(303869,42464,'blocks_6_tabs_3_tab_content',''),(303870,42464,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(303871,42464,'blocks_6_tabs_3_tab_image','41502'),(303872,42464,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(303873,42464,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(303874,42464,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(303875,42464,'blocks_6_tabs_4_tab_content_title',''),(303876,42464,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(303877,42464,'blocks_6_tabs_4_tab_content_heading',''),(303878,42464,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(303879,42464,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(303880,42464,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(303881,42464,'blocks_6_tabs_4_tab_content_actions',''),(303882,42464,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(303883,42464,'blocks_6_tabs_4_tab_content',''),(303884,42464,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(303885,42464,'blocks_6_tabs_4_tab_image','41506'),(303886,42464,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(303887,42464,'blocks_6_tabs','5'),(303888,42464,'_blocks_6_tabs','field_6177cff281419'),(303889,42464,'blocks_7_acfe_flexible_toggle',''),(303890,42464,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(303891,42464,'blocks_7_acfe_flexible_layout_title','Who Should Study MSK?'),(303892,42464,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(303893,42464,'blocks_7_options_theme','#b61234'),(303894,42464,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(303895,42464,'blocks_7_options_format','carousel'),(303896,42464,'_blocks_7_options_format','field_617a7b15245b5'),(303897,42464,'blocks_7_options_style','default'),(303898,42464,'_blocks_7_options_style','field_6278ffb63484a'),(303899,42464,'blocks_7_options_cards_current_listing','0'),(303900,42464,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(303901,42464,'blocks_7_options_cards_content','custom'),(303902,42464,'_blocks_7_options_cards_content','field_617aba6122688'),(303903,42464,'blocks_7_options',''),(303904,42464,'_blocks_7_options','field_617a7b15245b3'),(303905,42464,'blocks_7_cards_custom_0_image','41542'),(303906,42464,'_blocks_7_cards_custom_0_image','field_6194cc284d387'),(303907,42464,'blocks_7_cards_custom_0_title','Aspiring Healthcare Professionals'),(303908,42464,'_blocks_7_cards_custom_0_title','field_6194cc454d388'),(303909,42464,'blocks_7_cards_custom_0_text','Musculoskeletal (MSK) studies are ideal for aspiring healthcare professionals and those working to minimise workplace strain, improve posture, and prevent MSK injuries. Understanding MSK risks helps identify and reduce workplace-related issues, promoting better movement efficiency in professional environments. This knowledge enhances career prospects in corporate wellness and occupational health, while also supporting compliance with health and safety regulations to reduce workplace injuries.'),(303910,42464,'_blocks_7_cards_custom_0_text','field_6194cc4a4d389'),(303911,42464,'blocks_7_cards_custom_0_link',''),(303912,42464,'_blocks_7_cards_custom_0_link','field_6194cc534d38a'),(303913,42464,'blocks_7_cards_custom_1_image','41543'),(303914,42464,'_blocks_7_cards_custom_1_image','field_6194cc284d387'),(303915,42464,'blocks_7_cards_custom_1_title','Current Practitioners'),(303916,42464,'_blocks_7_cards_custom_1_title','field_6194cc454d388'),(303917,42464,'blocks_7_cards_custom_1_text','Medical and allied health professionals looking to expand their expertise in MSK assessment and treatment can benefit from advanced skills in diagnosing and managing movement dysfunctions. By integrating evidence-based strategies into patient care, they can create more effective treatment plans, enhance rehabilitation outcomes, and improve overall client satisfaction.'),(303918,42464,'_blocks_7_cards_custom_1_text','field_6194cc4a4d389'),(303919,42464,'blocks_7_cards_custom_1_link',''),(303920,42464,'_blocks_7_cards_custom_1_link','field_6194cc534d38a'),(303921,42464,'blocks_7_cards_custom_2_image','41539'),(303922,42464,'_blocks_7_cards_custom_2_image','field_6194cc284d387'),(303923,42464,'blocks_7_cards_custom_2_title','Fitness and Sports Professionals'),(303924,42464,'_blocks_7_cards_custom_2_title','field_6194cc454d388'),(303925,42464,'blocks_7_cards_custom_2_text','Personal trainers, coaches, and therapists can refine their understanding of movement, injury prevention, and rehabilitation through MSK education. Gaining deeper insights into movement mechanics enhances coaching skills, improves client mobility and performance, and increases earning potential by offering specialised MSK-focused training. Additionally, it opens opportunities to collaborate with healthcare professionals in rehabilitation settings.'),(303926,42464,'_blocks_7_cards_custom_2_text','field_6194cc4a4d389'),(303927,42464,'blocks_7_cards_custom_2_link',''),(303928,42464,'_blocks_7_cards_custom_2_link','field_6194cc534d38a'),(303929,42464,'blocks_7_cards_custom_3_image','41501'),(303930,42464,'_blocks_7_cards_custom_3_image','field_6194cc284d387'),(303931,42464,'blocks_7_cards_custom_3_title','Educators and Researchers'),(303932,42464,'_blocks_7_cards_custom_3_title','field_6194cc454d388'),(303933,42464,'blocks_7_cards_custom_3_text','Students of human movement, biomechanics, or rehabilitation can deepen their analysis of movement and performance through MSK education. It supports the development of innovative injury prevention strategies, enhances credibility in academic and research settings, and creates opportunities for collaboration with healthcare and sports industries.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n'),(303934,42464,'_blocks_7_cards_custom_3_text','field_6194cc4a4d389'),(303935,42464,'blocks_7_cards_custom_3_link',''),(303936,42464,'_blocks_7_cards_custom_3_link','field_6194cc534d38a'),(303937,42464,'blocks_7_cards_custom_4_image','40383'),(303938,42464,'_blocks_7_cards_custom_4_image','field_6194cc284d387'),(303939,42464,'blocks_7_cards_custom_4_title','Ergonomists and Occupational Health Specialists'),(303940,42464,'_blocks_7_cards_custom_4_title','field_6194cc454d388'),(303941,42464,'blocks_7_cards_custom_4_text','Professionals focused on reducing workplace strain, improving posture, and preventing MSK injuries can benefit from MSK education by identifying and mitigating workplace-related risks. It enhances movement efficiency, boosts career prospects in corporate wellness and occupational health, and supports compliance with health and safety regulations to reduce workplace injuries.'),(303942,42464,'_blocks_7_cards_custom_4_text','field_6194cc4a4d389'),(303943,42464,'blocks_7_cards_custom_4_link',''),(303944,42464,'_blocks_7_cards_custom_4_link','field_6194cc534d38a'),(303945,42464,'blocks_7_cards_custom','5'),(303946,42464,'_blocks_7_cards_custom','field_6194cbf84d386'),(303947,42431,'blocks_7_acfe_flexible_toggle',''),(303948,42431,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(303949,42431,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(303950,42431,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(303951,42431,'blocks_7_options_theme','#ffffff'),(303952,42431,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(303953,42431,'blocks_7_options_reverse','0'),(303954,42431,'_blocks_7_options_reverse','field_61768049bb8ac'),(303955,42431,'blocks_7_options',''),(303956,42431,'_blocks_7_options','field_617682517c334'),(303957,42431,'blocks_7_split_5050_image','41539'),(303958,42431,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(303959,42431,'blocks_7_split_5050_video',''),(303960,42431,'_blocks_7_split_5050_video','field_6239f3160848a'),(303961,42431,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(303962,42431,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(303963,42431,'blocks_7_split_5050_content_heading',''),(303964,42431,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(303965,42431,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(303966,42431,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(303967,42431,'blocks_7_split_5050_content_actions',''),(303968,42431,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(303969,42431,'blocks_7_split_5050_content',''),(303970,42431,'_blocks_7_split_5050_content','field_61767afceb8ba'),(303971,42431,'blocks_8_acfe_flexible_toggle',''),(303972,42431,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(303973,42431,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(303974,42431,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(303975,42431,'blocks_8_options_theme','#ffffff'),(303976,42431,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(303977,42431,'blocks_8_options_reverse','0'),(303978,42431,'_blocks_8_options_reverse','field_61768049bb8ac'),(303979,42431,'blocks_8_options',''),(303980,42431,'_blocks_8_options','field_617682517c334'),(303981,42431,'blocks_8_split_5050_image','41502'),(303982,42431,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(303983,42431,'blocks_8_split_5050_video',''),(303984,42431,'_blocks_8_split_5050_video','field_6239f3160848a'),(303985,42431,'blocks_8_split_5050_content_title','Educators and Researchers'),(303986,42431,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(303987,42431,'blocks_8_split_5050_content_heading',''),(303988,42431,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(303989,42431,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(303990,42431,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(303991,42431,'blocks_8_split_5050_content_actions',''),(303992,42431,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(303993,42431,'blocks_8_split_5050_content',''),(303994,42431,'_blocks_8_split_5050_content','field_61767afceb8ba'),(303995,42431,'blocks_9_acfe_flexible_toggle',''),(303996,42431,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(303997,42431,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(303998,42431,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(303999,42431,'blocks_9_options_theme','#ffffff'),(304000,42431,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(304001,42431,'blocks_9_options_reverse','0'),(304002,42431,'_blocks_9_options_reverse','field_61768049bb8ac'),(304003,42431,'blocks_9_options',''),(304004,42431,'_blocks_9_options','field_617682517c334'),(304005,42431,'blocks_9_split_5050_image','41506'),(304006,42431,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(304007,42431,'blocks_9_split_5050_video',''),(304008,42431,'_blocks_9_split_5050_video','field_6239f3160848a'),(304009,42431,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(304010,42431,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(304011,42431,'blocks_9_split_5050_content_heading',''),(304012,42431,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(304013,42431,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(304014,42431,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(304015,42431,'blocks_9_split_5050_content_actions',''),(304016,42431,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(304017,42431,'blocks_9_split_5050_content',''),(304018,42431,'_blocks_9_split_5050_content','field_61767afceb8ba'),(304091,42431,'blocks_13_acfe_flexible_toggle',''),(304092,42431,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(304093,42431,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(304094,42431,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(304095,42431,'blocks_13_options_theme','#ffffff'),(304096,42431,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(304097,42431,'blocks_13_options_reverse','1'),(304098,42431,'_blocks_13_options_reverse','field_61768049bb8ac'),(304099,42431,'blocks_13_options',''),(304100,42431,'_blocks_13_options','field_617682517c334'),(304101,42431,'blocks_13_split_5050_image','40387'),(304102,42431,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(304103,42431,'blocks_13_split_5050_video',''),(304104,42431,'_blocks_13_split_5050_video','field_6239f3160848a'),(304105,42431,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(304106,42431,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(304107,42431,'blocks_13_split_5050_content_heading',''),(304108,42431,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(304109,42431,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(304110,42431,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(304111,42431,'blocks_13_split_5050_content_actions',''),(304112,42431,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(304113,42431,'blocks_13_split_5050_content',''),(304114,42431,'_blocks_13_split_5050_content','field_61767afceb8ba'),(304115,42431,'blocks_14_acfe_flexible_toggle',''),(304116,42431,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(304117,42431,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(304118,42431,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(304119,42431,'blocks_14_options_theme','#ffffff'),(304120,42431,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(304121,42431,'blocks_14_options_reverse','1'),(304122,42431,'_blocks_14_options_reverse','field_61768049bb8ac'),(304123,42431,'blocks_14_options',''),(304124,42431,'_blocks_14_options','field_617682517c334'),(304125,42431,'blocks_14_split_5050_image','18856'),(304126,42431,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(304127,42431,'blocks_14_split_5050_video',''),(304128,42431,'_blocks_14_split_5050_video','field_6239f3160848a'),(304129,42431,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(304130,42431,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(304131,42431,'blocks_14_split_5050_content_heading',''),(304132,42431,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(304133,42431,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(304134,42431,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(304135,42431,'blocks_14_split_5050_content_actions',''),(304136,42431,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(304137,42431,'blocks_14_split_5050_content',''),(304138,42431,'_blocks_14_split_5050_content','field_61767afceb8ba'),(304211,42431,'blocks_19_acfe_flexible_toggle',''),(304212,42431,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(304213,42431,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(304214,42431,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(304215,42431,'blocks_19_options_theme','#ffffff'),(304216,42431,'_blocks_19_options_theme','field_6176830e2ad17'),(304217,42431,'blocks_19_options',''),(304218,42431,'_blocks_19_options','field_6176830e2ad16'),(304219,42431,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(304220,42431,'_blocks_19_text_block_heading','field_617669d413097'),(304221,42431,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(304222,42431,'_blocks_19_text_block_content','field_617669ec13098'),(304223,42431,'blocks_20_acfe_flexible_toggle',''),(304224,42431,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(304225,42431,'blocks_20_acfe_flexible_layout_title','Conclusion'),(304226,42431,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(304227,42431,'blocks_20_options_theme','#b61234'),(304228,42431,'_blocks_20_options_theme','field_6176830e2ad17'),(304229,42431,'blocks_20_options',''),(304230,42431,'_blocks_20_options','field_6176830e2ad16'),(304231,42431,'blocks_20_text_block_heading','Conclusion'),(304232,42431,'_blocks_20_text_block_heading','field_617669d413097'),(304233,42431,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(304234,42431,'_blocks_20_text_block_content','field_617669ec13098'),(304255,42465,'hide_hero','0'),(304256,42465,'_hide_hero','field_66a2380fcda39'),(304257,42465,'hero_title',''),(304258,42465,'_hero_title','field_617571fe285e8'),(304259,42465,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(304260,42465,'_hero_text','field_6175723c285e9'),(304261,42465,'hero_actions','1'),(304262,42465,'_hero_actions','field_61757270285ea'),(304263,42465,'hero_style','default'),(304264,42465,'_hero_style','field_62051d9dc5324'),(304265,42465,'hero_image_pos_x','right'),(304266,42465,'_hero_image_pos_x','field_62ec3d05390bb'),(304267,42465,'hero_image_pos_y','top'),(304268,42465,'_hero_image_pos_y','field_62ec3d05390bc'),(304269,42465,'hero_image_pos',''),(304270,42465,'_hero_image_pos','field_62ec3d05390ba'),(304271,42465,'fft_hide_from_listings','0'),(304272,42465,'_fft_hide_from_listings','field_61f1320446ab2'),(304273,42465,'post_format','402'),(304274,42465,'_post_format','field_61756bfb51898'),(304275,42465,'post_author',''),(304276,42465,'_post_author','field_62ec389d22113'),(304277,42465,'post_reviewer',''),(304278,42465,'_post_reviewer','field_627140a2a9800'),(304279,42465,'post_table_of_contents','0'),(304280,42465,'_post_table_of_contents','field_65c503bc846a6'),(304281,42465,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:4:\"tabs\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(304282,42465,'_blocks','field_6176696113096'),(304283,42465,'_thumbnail_id','41331'),(304284,42465,'__thumbnail_id','field_617570855ddaf'),(304285,42465,'blocks_0_acfe_flexible_toggle',''),(304286,42465,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(304287,42465,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(304288,42465,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(304289,42465,'blocks_0_options_theme','#ffffff'),(304290,42465,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(304291,42465,'blocks_0_options',''),(304292,42465,'_blocks_0_options','field_6177b758246ae'),(304293,42465,'blocks_0_link_stack_content_title',''),(304294,42465,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(304295,42465,'blocks_0_link_stack_content_heading','What is MSK?'),(304296,42465,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(304297,42465,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(304298,42465,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(304299,42465,'blocks_0_link_stack_content_actions_0_button',''),(304300,42465,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(304301,42465,'blocks_0_link_stack_content_actions','1'),(304302,42465,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(304303,42465,'blocks_0_link_stack_content',''),(304304,42465,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(304305,42465,'blocks_0_link_stack_0_label','1.'),(304306,42465,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(304307,42465,'blocks_0_link_stack_0_title','Overview'),(304308,42465,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(304309,42465,'blocks_0_link_stack_0_url','#overview'),(304310,42465,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(304311,42465,'blocks_0_link_stack_1_label','2.'),(304312,42465,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(304313,42465,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(304314,42465,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(304315,42465,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(304316,42465,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(304317,42465,'blocks_0_link_stack_2_label','3.'),(304318,42465,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(304319,42465,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(304320,42465,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(304321,42465,'blocks_0_link_stack_2_url','#who-should-study-msk'),(304322,42465,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(304323,42465,'blocks_0_link_stack_3_label','4.'),(304324,42465,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(304325,42465,'blocks_0_link_stack_3_title','Common MSK Conditions'),(304326,42465,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(304327,42465,'blocks_0_link_stack_3_url','#common-msk-conditions'),(304328,42465,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(304329,42465,'blocks_0_link_stack_4_label','5.'),(304330,42465,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(304331,42465,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(304332,42465,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(304333,42465,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(304334,42465,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(304335,42465,'blocks_0_link_stack_5_label','6.'),(304336,42465,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(304337,42465,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(304338,42465,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(304339,42465,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(304340,42465,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(304341,42465,'blocks_0_link_stack','6'),(304342,42465,'_blocks_0_link_stack','field_6177b7f600cff'),(304343,42465,'blocks_1_acfe_flexible_toggle',''),(304344,42465,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(304345,42465,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(304346,42465,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(304347,42465,'blocks_1_options_theme','#ffffff'),(304348,42465,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(304349,42465,'blocks_1_options_reverse','0'),(304350,42465,'_blocks_1_options_reverse','field_61768049bb8ac'),(304351,42465,'blocks_1_options',''),(304352,42465,'_blocks_1_options','field_617682517c334'),(304353,42465,'blocks_1_split_5050_image','40615'),(304354,42465,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(304355,42465,'blocks_1_split_5050_video',''),(304356,42465,'_blocks_1_split_5050_video','field_6239f3160848a'),(304357,42465,'blocks_1_split_5050_content_title',''),(304358,42465,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(304359,42465,'blocks_1_split_5050_content_heading','Overview'),(304360,42465,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(304361,42465,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(304362,42465,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(304363,42465,'blocks_1_split_5050_content_actions',''),(304364,42465,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(304365,42465,'blocks_1_split_5050_content',''),(304366,42465,'_blocks_1_split_5050_content','field_61767afceb8ba'),(304367,42465,'blocks_2_acfe_flexible_toggle',''),(304368,42465,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(304369,42465,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(304370,42465,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(304371,42465,'blocks_2_options_theme','#f5f5f5'),(304372,42465,'_blocks_2_options_theme','field_6176830e2ad17'),(304373,42465,'blocks_2_options',''),(304374,42465,'_blocks_2_options','field_6176830e2ad16'),(304375,42465,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(304376,42465,'_blocks_2_text_block_heading','field_617669d413097'),(304377,42465,'blocks_2_text_block_content',''),(304378,42465,'_blocks_2_text_block_content','field_617669ec13098'),(304379,42465,'blocks_3_acfe_flexible_toggle',''),(304380,42465,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(304381,42465,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(304382,42465,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(304383,42465,'blocks_3_options_theme','#f5f5f5'),(304384,42465,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(304385,42465,'blocks_3_options_reverse','1'),(304386,42465,'_blocks_3_options_reverse','field_61768049bb8ac'),(304387,42465,'blocks_3_options',''),(304388,42465,'_blocks_3_options','field_617682517c334'),(304389,42465,'blocks_3_split_5050_image','40618'),(304390,42465,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(304391,42465,'blocks_3_split_5050_video',''),(304392,42465,'_blocks_3_split_5050_video','field_6239f3160848a'),(304393,42465,'blocks_3_split_5050_content_title',''),(304394,42465,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(304395,42465,'blocks_3_split_5050_content_heading',''),(304396,42465,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(304397,42465,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(304398,42465,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(304399,42465,'blocks_3_split_5050_content_actions',''),(304400,42465,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(304401,42465,'blocks_3_split_5050_content',''),(304402,42465,'_blocks_3_split_5050_content','field_61767afceb8ba'),(304403,42465,'blocks_4_acfe_flexible_toggle','1'),(304404,42465,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(304405,42465,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(304406,42465,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(304407,42465,'blocks_4_options_theme','#f5f5f5'),(304408,42465,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(304409,42465,'blocks_4_options_reverse','1'),(304410,42465,'_blocks_4_options_reverse','field_61768049bb8ac'),(304411,42465,'blocks_4_options',''),(304412,42465,'_blocks_4_options','field_617682517c334'),(304413,42465,'blocks_4_split_5050_image','41330'),(304414,42465,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(304415,42465,'blocks_4_split_5050_video',''),(304416,42465,'_blocks_4_split_5050_video','field_6239f3160848a'),(304417,42465,'blocks_4_split_5050_content_title',''),(304418,42465,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(304419,42465,'blocks_4_split_5050_content_heading',''),(304420,42465,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(304421,42465,'blocks_4_split_5050_content_text',''),(304422,42465,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(304423,42465,'blocks_4_split_5050_content_actions',''),(304424,42465,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(304425,42465,'blocks_4_split_5050_content',''),(304426,42465,'_blocks_4_split_5050_content','field_61767afceb8ba'),(304427,42465,'blocks_5_acfe_flexible_toggle',''),(304428,42465,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(304429,42465,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(304430,42465,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(304431,42465,'blocks_5_options_theme','#ffffff'),(304432,42465,'_blocks_5_options_theme','field_6176830e2ad17'),(304433,42465,'blocks_5_options',''),(304434,42465,'_blocks_5_options','field_6176830e2ad16'),(304435,42465,'blocks_5_text_block_heading','Who Should Study MSK?'),(304436,42465,'_blocks_5_text_block_heading','field_617669d413097'),(304437,42465,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(304438,42465,'_blocks_5_text_block_content','field_617669ec13098'),(304439,42465,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(304440,42465,'_hero_actions_0_button','field_61757281285eb'),(304441,42465,'blocks_12_acfe_flexible_toggle',''),(304442,42465,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(304443,42465,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(304444,42465,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(304445,42465,'blocks_12_options_theme','#f5f5f5'),(304446,42465,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(304447,42465,'blocks_12_options_reverse','1'),(304448,42465,'_blocks_12_options_reverse','field_61768049bb8ac'),(304449,42465,'blocks_12_options',''),(304450,42465,'_blocks_12_options','field_617682517c334'),(304451,42465,'blocks_12_split_5050_image','41498'),(304452,42465,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(304453,42465,'blocks_12_split_5050_video',''),(304454,42465,'_blocks_12_split_5050_video','field_6239f3160848a'),(304455,42465,'blocks_12_split_5050_content_title',''),(304456,42465,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(304457,42465,'blocks_12_split_5050_content_heading',''),(304458,42465,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(304459,42465,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(304460,42465,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(304461,42465,'blocks_12_split_5050_content_actions',''),(304462,42465,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(304463,42465,'blocks_12_split_5050_content',''),(304464,42465,'_blocks_12_split_5050_content','field_61767afceb8ba'),(304465,42465,'blocks_18_acfe_flexible_toggle',''),(304466,42465,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(304467,42465,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(304468,42465,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(304469,42465,'blocks_18_options_theme','#ffffff'),(304470,42465,'_blocks_18_options_theme','field_6176830e2ad17'),(304471,42465,'blocks_18_options',''),(304472,42465,'_blocks_18_options','field_6176830e2ad16'),(304473,42465,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(304474,42465,'_blocks_18_text_block_heading','field_617669d413097'),(304475,42465,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(304476,42465,'_blocks_18_text_block_content','field_617669ec13098'),(304477,42465,'blocks_6_acfe_flexible_toggle','1'),(304478,42465,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(304479,42465,'blocks_6_acfe_flexible_layout_title','Who Should Study MSK?'),(304480,42465,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(304481,42465,'blocks_6_options_theme','#b61234'),(304482,42465,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(304483,42465,'blocks_6_options',''),(304484,42465,'_blocks_6_options','field_6177cfcd8140f'),(304485,42465,'blocks_6_tabs_0_tab_label','Aspiring Healthcare Professionals'),(304486,42465,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(304487,42465,'blocks_6_tabs_0_tab_content_title',''),(304488,42465,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(304489,42465,'blocks_6_tabs_0_tab_content_heading',''),(304490,42465,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(304491,42465,'blocks_6_tabs_0_tab_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(304492,42465,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(304493,42465,'blocks_6_tabs_0_tab_content_actions',''),(304494,42465,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(304495,42465,'blocks_6_tabs_0_tab_content',''),(304496,42465,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(304497,42465,'blocks_6_tabs_0_tab_image','41542'),(304498,42465,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(304499,42465,'blocks_6_tabs_1_tab_label','Current Practitioners'),(304500,42465,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(304501,42465,'blocks_6_tabs_1_tab_content_title',''),(304502,42465,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(304503,42465,'blocks_6_tabs_1_tab_content_heading',''),(304504,42465,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(304505,42465,'blocks_6_tabs_1_tab_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(304506,42465,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(304507,42465,'blocks_6_tabs_1_tab_content_actions',''),(304508,42465,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(304509,42465,'blocks_6_tabs_1_tab_content',''),(304510,42465,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(304511,42465,'blocks_6_tabs_1_tab_image','41505'),(304512,42465,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(304513,42465,'blocks_6_tabs_2_tab_label','Fitness and Sports Professionals'),(304514,42465,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(304515,42465,'blocks_6_tabs_2_tab_content_title',''),(304516,42465,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(304517,42465,'blocks_6_tabs_2_tab_content_heading',''),(304518,42465,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(304519,42465,'blocks_6_tabs_2_tab_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(304520,42465,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(304521,42465,'blocks_6_tabs_2_tab_content_actions',''),(304522,42465,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(304523,42465,'blocks_6_tabs_2_tab_content',''),(304524,42465,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(304525,42465,'blocks_6_tabs_2_tab_image','41539'),(304526,42465,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(304527,42465,'blocks_6_tabs_3_tab_label','Educators and Researchers'),(304528,42465,'_blocks_6_tabs_3_tab_label','field_6177d0068141a'),(304529,42465,'blocks_6_tabs_3_tab_content_title',''),(304530,42465,'_blocks_6_tabs_3_tab_content_title','field_6177cfcd81414'),(304531,42465,'blocks_6_tabs_3_tab_content_heading',''),(304532,42465,'_blocks_6_tabs_3_tab_content_heading','field_6177cfcd81415'),(304533,42465,'blocks_6_tabs_3_tab_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(304534,42465,'_blocks_6_tabs_3_tab_content_text','field_6177cfcd81416'),(304535,42465,'blocks_6_tabs_3_tab_content_actions',''),(304536,42465,'_blocks_6_tabs_3_tab_content_actions','field_6177cfcd81417'),(304537,42465,'blocks_6_tabs_3_tab_content',''),(304538,42465,'_blocks_6_tabs_3_tab_content','field_6177cfcd81413'),(304539,42465,'blocks_6_tabs_3_tab_image','41502'),(304540,42465,'_blocks_6_tabs_3_tab_image','field_6177cfcd81412'),(304541,42465,'blocks_6_tabs_4_tab_label','Ergonomists and Occupational Health Specialists'),(304542,42465,'_blocks_6_tabs_4_tab_label','field_6177d0068141a'),(304543,42465,'blocks_6_tabs_4_tab_content_title',''),(304544,42465,'_blocks_6_tabs_4_tab_content_title','field_6177cfcd81414'),(304545,42465,'blocks_6_tabs_4_tab_content_heading',''),(304546,42465,'_blocks_6_tabs_4_tab_content_heading','field_6177cfcd81415'),(304547,42465,'blocks_6_tabs_4_tab_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(304548,42465,'_blocks_6_tabs_4_tab_content_text','field_6177cfcd81416'),(304549,42465,'blocks_6_tabs_4_tab_content_actions',''),(304550,42465,'_blocks_6_tabs_4_tab_content_actions','field_6177cfcd81417'),(304551,42465,'blocks_6_tabs_4_tab_content',''),(304552,42465,'_blocks_6_tabs_4_tab_content','field_6177cfcd81413'),(304553,42465,'blocks_6_tabs_4_tab_image','41506'),(304554,42465,'_blocks_6_tabs_4_tab_image','field_6177cfcd81412'),(304555,42465,'blocks_6_tabs','5'),(304556,42465,'_blocks_6_tabs','field_6177cff281419'),(304557,42465,'blocks_7_acfe_flexible_toggle',''),(304558,42465,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(304559,42465,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(304560,42465,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(304561,42465,'blocks_7_options_theme','#ffffff'),(304562,42465,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(304563,42465,'blocks_7_options_reverse','0'),(304564,42465,'_blocks_7_options_reverse','field_61768049bb8ac'),(304565,42465,'blocks_7_options',''),(304566,42465,'_blocks_7_options','field_617682517c334'),(304567,42465,'blocks_7_split_5050_image','41542'),(304568,42465,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(304569,42465,'blocks_7_split_5050_video',''),(304570,42465,'_blocks_7_split_5050_video','field_6239f3160848a'),(304571,42465,'blocks_7_split_5050_content_title','Aspiring Healthcare Professionals'),(304572,42465,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(304573,42465,'blocks_7_split_5050_content_heading',''),(304574,42465,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(304575,42465,'blocks_7_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(304576,42465,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(304577,42465,'blocks_7_split_5050_content_actions',''),(304578,42465,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(304579,42465,'blocks_7_split_5050_content',''),(304580,42465,'_blocks_7_split_5050_content','field_61767afceb8ba'),(304581,42465,'blocks_8_acfe_flexible_toggle',''),(304582,42465,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(304583,42465,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(304584,42465,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(304585,42465,'blocks_8_options_theme','#ffffff'),(304586,42465,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(304587,42465,'blocks_8_options_reverse','0'),(304588,42465,'_blocks_8_options_reverse','field_61768049bb8ac'),(304589,42465,'blocks_8_options',''),(304590,42465,'_blocks_8_options','field_617682517c334'),(304591,42465,'blocks_8_split_5050_image','41542'),(304592,42465,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(304593,42465,'blocks_8_split_5050_video',''),(304594,42465,'_blocks_8_split_5050_video','field_6239f3160848a'),(304595,42465,'blocks_8_split_5050_content_title','Aspiring Healthcare Professionals'),(304596,42465,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(304597,42465,'blocks_8_split_5050_content_heading',''),(304598,42465,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(304599,42465,'blocks_8_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(304600,42465,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(304601,42465,'blocks_8_split_5050_content_actions',''),(304602,42465,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(304603,42465,'blocks_8_split_5050_content',''),(304604,42465,'_blocks_8_split_5050_content','field_61767afceb8ba'),(304605,42465,'blocks_9_acfe_flexible_toggle',''),(304606,42465,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(304607,42465,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(304608,42465,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(304609,42465,'blocks_9_options_theme','#ffffff'),(304610,42465,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(304611,42465,'blocks_9_options_reverse','0'),(304612,42465,'_blocks_9_options_reverse','field_61768049bb8ac'),(304613,42465,'blocks_9_options',''),(304614,42465,'_blocks_9_options','field_617682517c334'),(304615,42465,'blocks_9_split_5050_image','41542'),(304616,42465,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(304617,42465,'blocks_9_split_5050_video',''),(304618,42465,'_blocks_9_split_5050_video','field_6239f3160848a'),(304619,42465,'blocks_9_split_5050_content_title','Aspiring Healthcare Professionals'),(304620,42465,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(304621,42465,'blocks_9_split_5050_content_heading',''),(304622,42465,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(304623,42465,'blocks_9_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(304624,42465,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(304625,42465,'blocks_9_split_5050_content_actions',''),(304626,42465,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(304627,42465,'blocks_9_split_5050_content',''),(304628,42465,'_blocks_9_split_5050_content','field_61767afceb8ba'),(304629,42465,'blocks_10_acfe_flexible_toggle',''),(304630,42465,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(304631,42465,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(304632,42465,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(304633,42465,'blocks_10_options_theme','#ffffff'),(304634,42465,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(304635,42465,'blocks_10_options_state','0'),(304636,42465,'_blocks_10_options_state','field_6239fcb7508c5'),(304637,42465,'blocks_10_options',''),(304638,42465,'_blocks_10_options','field_6177e2991ac44'),(304639,42465,'blocks_10_content_title','Common MSK Conditions'),(304640,42465,'_blocks_10_content_title','field_64d237e8bb1e2'),(304641,42465,'blocks_10_content_heading','Common MSK Conditions'),(304642,42465,'_blocks_10_content_heading','field_64d237e8bb1e3'),(304643,42465,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(304644,42465,'_blocks_10_content_text','field_64d237e8bb1e4'),(304645,42465,'blocks_10_content_actions',''),(304646,42465,'_blocks_10_content_actions','field_64d237e8bb1e5'),(304647,42465,'blocks_10_content_align','left'),(304648,42465,'_blocks_10_content_align','field_64d2443e6b6aa'),(304649,42465,'blocks_10_content',''),(304650,42465,'_blocks_10_content','field_64d237e8bb1e1'),(304651,42465,'blocks_10_accordion_content','custom'),(304652,42465,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(304653,42465,'blocks_10_accordion_items_0_title','Osteoarthritis'),(304654,42465,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(304655,42465,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(304656,42465,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(304657,42465,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(304658,42465,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(304659,42465,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(304660,42465,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(304661,42465,'blocks_10_accordion_items_2_title','Back Pain'),(304662,42465,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(304663,42465,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(304664,42465,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(304665,42465,'blocks_10_accordion_items_3_title','Osteoporosis'),(304666,42465,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(304667,42465,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(304668,42465,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(304669,42465,'blocks_10_accordion_items_4_title','Tendinitis'),(304670,42465,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(304671,42465,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(304672,42465,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(304673,42465,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(304674,42465,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(304675,42465,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(304676,42465,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(304677,42465,'blocks_10_accordion_items_6_title','Fibromyalgia'),(304678,42465,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(304679,42465,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(304680,42465,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(304681,42465,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(304682,42465,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(304683,42465,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(304684,42465,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(304685,42465,'blocks_10_accordion_items','8'),(304686,42465,'_blocks_10_accordion_items','field_6177e2991ac4c'),(304687,42465,'blocks_10_actions',''),(304688,42465,'_blocks_10_actions','field_61a746a817f7a'),(304689,42465,'blocks_11_acfe_flexible_toggle',''),(304690,42465,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(304691,42465,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(304692,42465,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(304693,42465,'blocks_11_options_theme','#f5f5f5'),(304694,42465,'_blocks_11_options_theme','field_6176830e2ad17'),(304695,42465,'blocks_11_options',''),(304696,42465,'_blocks_11_options','field_6176830e2ad16'),(304697,42465,'blocks_11_text_block_heading','The Importance of MSK Education'),(304698,42465,'_blocks_11_text_block_heading','field_617669d413097'),(304699,42465,'blocks_11_text_block_content',''),(304700,42465,'_blocks_11_text_block_content','field_617669ec13098'),(304701,42465,'blocks_13_acfe_flexible_toggle',''),(304702,42465,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(304703,42465,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(304704,42465,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(304705,42465,'blocks_13_options_theme','#f5f5f5'),(304706,42465,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(304707,42465,'blocks_13_options_reverse','1'),(304708,42465,'_blocks_13_options_reverse','field_61768049bb8ac'),(304709,42465,'blocks_13_options',''),(304710,42465,'_blocks_13_options','field_617682517c334'),(304711,42465,'blocks_13_split_5050_image','40387'),(304712,42465,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(304713,42465,'blocks_13_split_5050_video',''),(304714,42465,'_blocks_13_split_5050_video','field_6239f3160848a'),(304715,42465,'blocks_13_split_5050_content_title',''),(304716,42465,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(304717,42465,'blocks_13_split_5050_content_heading',''),(304718,42465,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(304719,42465,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(304720,42465,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(304721,42465,'blocks_13_split_5050_content_actions',''),(304722,42465,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(304723,42465,'blocks_13_split_5050_content',''),(304724,42465,'_blocks_13_split_5050_content','field_61767afceb8ba'),(304725,42465,'blocks_14_acfe_flexible_toggle',''),(304726,42465,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(304727,42465,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(304728,42465,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(304729,42465,'blocks_14_options_theme','#f5f5f5'),(304730,42465,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(304731,42465,'blocks_14_options_reverse','1'),(304732,42465,'_blocks_14_options_reverse','field_61768049bb8ac'),(304733,42465,'blocks_14_options',''),(304734,42465,'_blocks_14_options','field_617682517c334'),(304735,42465,'blocks_14_split_5050_image','18856'),(304736,42465,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(304737,42465,'blocks_14_split_5050_video',''),(304738,42465,'_blocks_14_split_5050_video','field_6239f3160848a'),(304739,42465,'blocks_14_split_5050_content_title',''),(304740,42465,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(304741,42465,'blocks_14_split_5050_content_heading',''),(304742,42465,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(304743,42465,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(304744,42465,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(304745,42465,'blocks_14_split_5050_content_actions',''),(304746,42465,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(304747,42465,'blocks_14_split_5050_content',''),(304748,42465,'_blocks_14_split_5050_content','field_61767afceb8ba'),(304749,42465,'blocks_15_acfe_flexible_toggle',''),(304750,42465,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(304751,42465,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(304752,42465,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(304753,42465,'blocks_15_options_theme','#b61234'),(304754,42465,'_blocks_15_options_theme','field_6176830e2ad17'),(304755,42465,'blocks_15_options',''),(304756,42465,'_blocks_15_options','field_6176830e2ad16'),(304757,42465,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(304758,42465,'_blocks_15_text_block_heading','field_617669d413097'),(304759,42465,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(304760,42465,'_blocks_15_text_block_content','field_617669ec13098'),(304761,42465,'blocks_16_acfe_flexible_toggle',''),(304762,42465,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(304763,42465,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(304764,42465,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(304765,42465,'blocks_16_options_theme','#b61234'),(304766,42465,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(304767,42465,'blocks_16_options_format','row'),(304768,42465,'_blocks_16_options_format','field_64bfde9a90690'),(304769,42465,'blocks_16_options',''),(304770,42465,'_blocks_16_options','field_64bfdd9b90684'),(304771,42465,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(304772,42465,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(304773,42465,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(304774,42465,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(304775,42465,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(304776,42465,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(304777,42465,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(304778,42465,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(304779,42465,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(304780,42465,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(304781,42465,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(304782,42465,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(304783,42465,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(304784,42465,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(304785,42465,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(304786,42465,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(304787,42465,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(304788,42465,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(304789,42465,'blocks_16_icon_row_items_3_icon','recognised.svg'),(304790,42465,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(304791,42465,'blocks_16_icon_row_items_3_label','Optimised Performance'),(304792,42465,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(304793,42465,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(304794,42465,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(304795,42465,'blocks_16_icon_row_items','4'),(304796,42465,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(304797,42465,'blocks_17_acfe_flexible_toggle',''),(304798,42465,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(304799,42465,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(304800,42465,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(304801,42465,'blocks_17_options_theme','#ffffff'),(304802,42465,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(304803,42465,'blocks_17_options_reverse','0'),(304804,42465,'_blocks_17_options_reverse','field_61768049bb8ac'),(304805,42465,'blocks_17_options',''),(304806,42465,'_blocks_17_options','field_617682517c334'),(304807,42465,'blocks_17_split_5050_image','41501'),(304808,42465,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(304809,42465,'blocks_17_split_5050_video',''),(304810,42465,'_blocks_17_split_5050_video','field_6239f3160848a'),(304811,42465,'blocks_17_split_5050_content_title',''),(304812,42465,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(304813,42465,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(304814,42465,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(304815,42465,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(304816,42465,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(304817,42465,'blocks_17_split_5050_content_actions',''),(304818,42465,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(304819,42465,'blocks_17_split_5050_content',''),(304820,42465,'_blocks_17_split_5050_content','field_61767afceb8ba'),(304821,42465,'blocks_19_acfe_flexible_toggle',''),(304822,42465,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(304823,42465,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(304824,42465,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(304825,42465,'blocks_19_options_theme','#ffffff'),(304826,42465,'_blocks_19_options_theme','field_6176830e2ad17'),(304827,42465,'blocks_19_options',''),(304828,42465,'_blocks_19_options','field_6176830e2ad16'),(304829,42465,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(304830,42465,'_blocks_19_text_block_heading','field_617669d413097'),(304831,42465,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(304832,42465,'_blocks_19_text_block_content','field_617669ec13098'),(304833,42465,'blocks_20_acfe_flexible_toggle',''),(304834,42465,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(304835,42465,'blocks_20_acfe_flexible_layout_title','Conclusion'),(304836,42465,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(304837,42465,'blocks_20_options_theme','#f5f5f5'),(304838,42465,'_blocks_20_options_theme','field_6176830e2ad17'),(304839,42465,'blocks_20_options',''),(304840,42465,'_blocks_20_options','field_6176830e2ad16'),(304841,42465,'blocks_20_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(304842,42465,'_blocks_20_text_block_heading','field_617669d413097'),(304843,42465,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(304844,42465,'_blocks_20_text_block_content','field_617669ec13098'),(304845,42465,'blocks_21_acfe_flexible_toggle',''),(304846,42465,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(304847,42465,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(304848,42465,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(304849,42465,'blocks_21_options_alignment','center'),(304850,42465,'_blocks_21_options_alignment','field_61769449f5490'),(304851,42465,'blocks_21_options',''),(304852,42465,'_blocks_21_options','field_617693e1428f0'),(304853,42465,'blocks_21_promo_panel_image','40342'),(304854,42465,'_blocks_21_promo_panel_image','field_617693e1428f3'),(304855,42465,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(304856,42465,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(304857,42465,'blocks_21_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!');
INSERT INTO `6m7_postmeta` VALUES (304858,42465,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(304859,42465,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(304860,42465,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(304861,42465,'blocks_21_promo_panel_content_actions','1'),(304862,42465,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(304863,42465,'blocks_21_promo_panel_content',''),(304864,42465,'_blocks_21_promo_panel_content','field_617693e1428f4'),(304865,42431,'blocks_6_acfe_flexible_toggle',''),(304866,42431,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(304867,42431,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(304868,42431,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(304869,42431,'blocks_6_options_theme','#ffffff'),(304870,42431,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(304871,42431,'blocks_6_options_reverse','0'),(304872,42431,'_blocks_6_options_reverse','field_61768049bb8ac'),(304873,42431,'blocks_6_options',''),(304874,42431,'_blocks_6_options','field_617682517c334'),(304875,42431,'blocks_6_split_5050_image','41505'),(304876,42431,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(304877,42431,'blocks_6_split_5050_video',''),(304878,42431,'_blocks_6_split_5050_video','field_6239f3160848a'),(304879,42431,'blocks_6_split_5050_content_title','Current Practitioners'),(304880,42431,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(304881,42431,'blocks_6_split_5050_content_heading',''),(304882,42431,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(304883,42431,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(304884,42431,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(304885,42431,'blocks_6_split_5050_content_actions',''),(304886,42431,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(304887,42431,'blocks_6_split_5050_content',''),(304888,42431,'_blocks_6_split_5050_content','field_61767afceb8ba'),(305113,42466,'hide_hero','0'),(305114,42466,'_hide_hero','field_66a2380fcda39'),(305115,42466,'hero_title',''),(305116,42466,'_hero_title','field_617571fe285e8'),(305117,42466,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(305118,42466,'_hero_text','field_6175723c285e9'),(305119,42466,'hero_actions','1'),(305120,42466,'_hero_actions','field_61757270285ea'),(305121,42466,'hero_style','default'),(305122,42466,'_hero_style','field_62051d9dc5324'),(305123,42466,'hero_image_pos_x','right'),(305124,42466,'_hero_image_pos_x','field_62ec3d05390bb'),(305125,42466,'hero_image_pos_y','top'),(305126,42466,'_hero_image_pos_y','field_62ec3d05390bc'),(305127,42466,'hero_image_pos',''),(305128,42466,'_hero_image_pos','field_62ec3d05390ba'),(305129,42466,'fft_hide_from_listings','0'),(305130,42466,'_fft_hide_from_listings','field_61f1320446ab2'),(305131,42466,'post_format','402'),(305132,42466,'_post_format','field_61756bfb51898'),(305133,42466,'post_author',''),(305134,42466,'_post_author','field_62ec389d22113'),(305135,42466,'post_reviewer',''),(305136,42466,'_post_reviewer','field_627140a2a9800'),(305137,42466,'post_table_of_contents','0'),(305138,42466,'_post_table_of_contents','field_65c503bc846a6'),(305139,42466,'blocks','a:23:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"accordions\";i:12;s:10:\"text_block\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:5:\"icons\";i:18;s:10:\"split_5050\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:10:\"text_block\";i:22;s:11:\"promo_panel\";}'),(305140,42466,'_blocks','field_6176696113096'),(305141,42466,'_thumbnail_id','41331'),(305142,42466,'__thumbnail_id','field_617570855ddaf'),(305143,42466,'blocks_0_acfe_flexible_toggle',''),(305144,42466,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(305145,42466,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(305146,42466,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(305147,42466,'blocks_0_options_theme','#ffffff'),(305148,42466,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(305149,42466,'blocks_0_options',''),(305150,42466,'_blocks_0_options','field_6177b758246ae'),(305151,42466,'blocks_0_link_stack_content_title',''),(305152,42466,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(305153,42466,'blocks_0_link_stack_content_heading','What is MSK?'),(305154,42466,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(305155,42466,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(305156,42466,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(305157,42466,'blocks_0_link_stack_content_actions_0_button',''),(305158,42466,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(305159,42466,'blocks_0_link_stack_content_actions','1'),(305160,42466,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(305161,42466,'blocks_0_link_stack_content',''),(305162,42466,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(305163,42466,'blocks_0_link_stack_0_label','1.'),(305164,42466,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(305165,42466,'blocks_0_link_stack_0_title','Overview'),(305166,42466,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(305167,42466,'blocks_0_link_stack_0_url','#overview'),(305168,42466,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(305169,42466,'blocks_0_link_stack_1_label','2.'),(305170,42466,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(305171,42466,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(305172,42466,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(305173,42466,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(305174,42466,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(305175,42466,'blocks_0_link_stack_2_label','3.'),(305176,42466,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(305177,42466,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(305178,42466,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(305179,42466,'blocks_0_link_stack_2_url','#who-should-study-msk'),(305180,42466,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(305181,42466,'blocks_0_link_stack_3_label','4.'),(305182,42466,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(305183,42466,'blocks_0_link_stack_3_title','Common MSK Conditions'),(305184,42466,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(305185,42466,'blocks_0_link_stack_3_url','#common-msk-conditions'),(305186,42466,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(305187,42466,'blocks_0_link_stack_4_label','5.'),(305188,42466,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(305189,42466,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(305190,42466,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(305191,42466,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(305192,42466,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(305193,42466,'blocks_0_link_stack_5_label','6.'),(305194,42466,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(305195,42466,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(305196,42466,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(305197,42466,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(305198,42466,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(305199,42466,'blocks_0_link_stack','6'),(305200,42466,'_blocks_0_link_stack','field_6177b7f600cff'),(305201,42466,'blocks_1_acfe_flexible_toggle',''),(305202,42466,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305203,42466,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(305204,42466,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305205,42466,'blocks_1_options_theme','#ffffff'),(305206,42466,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(305207,42466,'blocks_1_options_reverse','0'),(305208,42466,'_blocks_1_options_reverse','field_61768049bb8ac'),(305209,42466,'blocks_1_options',''),(305210,42466,'_blocks_1_options','field_617682517c334'),(305211,42466,'blocks_1_split_5050_image','40615'),(305212,42466,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(305213,42466,'blocks_1_split_5050_video',''),(305214,42466,'_blocks_1_split_5050_video','field_6239f3160848a'),(305215,42466,'blocks_1_split_5050_content_title',''),(305216,42466,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(305217,42466,'blocks_1_split_5050_content_heading','Overview'),(305218,42466,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(305219,42466,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(305220,42466,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(305221,42466,'blocks_1_split_5050_content_actions',''),(305222,42466,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(305223,42466,'blocks_1_split_5050_content',''),(305224,42466,'_blocks_1_split_5050_content','field_61767afceb8ba'),(305225,42466,'blocks_2_acfe_flexible_toggle',''),(305226,42466,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(305227,42466,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(305228,42466,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(305229,42466,'blocks_2_options_theme','#f5f5f5'),(305230,42466,'_blocks_2_options_theme','field_6176830e2ad17'),(305231,42466,'blocks_2_options',''),(305232,42466,'_blocks_2_options','field_6176830e2ad16'),(305233,42466,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(305234,42466,'_blocks_2_text_block_heading','field_617669d413097'),(305235,42466,'blocks_2_text_block_content',''),(305236,42466,'_blocks_2_text_block_content','field_617669ec13098'),(305237,42466,'blocks_3_acfe_flexible_toggle',''),(305238,42466,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305239,42466,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(305240,42466,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305241,42466,'blocks_3_options_theme','#f5f5f5'),(305242,42466,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(305243,42466,'blocks_3_options_reverse','1'),(305244,42466,'_blocks_3_options_reverse','field_61768049bb8ac'),(305245,42466,'blocks_3_options',''),(305246,42466,'_blocks_3_options','field_617682517c334'),(305247,42466,'blocks_3_split_5050_image','40618'),(305248,42466,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(305249,42466,'blocks_3_split_5050_video',''),(305250,42466,'_blocks_3_split_5050_video','field_6239f3160848a'),(305251,42466,'blocks_3_split_5050_content_title',''),(305252,42466,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(305253,42466,'blocks_3_split_5050_content_heading',''),(305254,42466,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(305255,42466,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(305256,42466,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(305257,42466,'blocks_3_split_5050_content_actions',''),(305258,42466,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(305259,42466,'blocks_3_split_5050_content',''),(305260,42466,'_blocks_3_split_5050_content','field_61767afceb8ba'),(305261,42466,'blocks_4_acfe_flexible_toggle','1'),(305262,42466,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305263,42466,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(305264,42466,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305265,42466,'blocks_4_options_theme','#f5f5f5'),(305266,42466,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(305267,42466,'blocks_4_options_reverse','1'),(305268,42466,'_blocks_4_options_reverse','field_61768049bb8ac'),(305269,42466,'blocks_4_options',''),(305270,42466,'_blocks_4_options','field_617682517c334'),(305271,42466,'blocks_4_split_5050_image','41330'),(305272,42466,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(305273,42466,'blocks_4_split_5050_video',''),(305274,42466,'_blocks_4_split_5050_video','field_6239f3160848a'),(305275,42466,'blocks_4_split_5050_content_title',''),(305276,42466,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(305277,42466,'blocks_4_split_5050_content_heading',''),(305278,42466,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(305279,42466,'blocks_4_split_5050_content_text',''),(305280,42466,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(305281,42466,'blocks_4_split_5050_content_actions',''),(305282,42466,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(305283,42466,'blocks_4_split_5050_content',''),(305284,42466,'_blocks_4_split_5050_content','field_61767afceb8ba'),(305285,42466,'blocks_5_acfe_flexible_toggle',''),(305286,42466,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(305287,42466,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(305288,42466,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(305289,42466,'blocks_5_options_theme','#ffffff'),(305290,42466,'_blocks_5_options_theme','field_6176830e2ad17'),(305291,42466,'blocks_5_options',''),(305292,42466,'_blocks_5_options','field_6176830e2ad16'),(305293,42466,'blocks_5_text_block_heading','Who Should Study MSK?'),(305294,42466,'_blocks_5_text_block_heading','field_617669d413097'),(305295,42466,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(305296,42466,'_blocks_5_text_block_content','field_617669ec13098'),(305297,42466,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(305298,42466,'_hero_actions_0_button','field_61757281285eb'),(305299,42466,'blocks_7_acfe_flexible_toggle',''),(305300,42466,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305301,42466,'blocks_7_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(305302,42466,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305303,42466,'blocks_7_options_theme','#ffffff'),(305304,42466,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(305305,42466,'blocks_7_options_reverse','0'),(305306,42466,'_blocks_7_options_reverse','field_61768049bb8ac'),(305307,42466,'blocks_7_options',''),(305308,42466,'_blocks_7_options','field_617682517c334'),(305309,42466,'blocks_7_split_5050_image','41505'),(305310,42466,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(305311,42466,'blocks_7_split_5050_video',''),(305312,42466,'_blocks_7_split_5050_video','field_6239f3160848a'),(305313,42466,'blocks_7_split_5050_content_title','Current Practitioners'),(305314,42466,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(305315,42466,'blocks_7_split_5050_content_heading',''),(305316,42466,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(305317,42466,'blocks_7_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(305318,42466,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(305319,42466,'blocks_7_split_5050_content_actions',''),(305320,42466,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(305321,42466,'blocks_7_split_5050_content',''),(305322,42466,'_blocks_7_split_5050_content','field_61767afceb8ba'),(305323,42466,'blocks_8_acfe_flexible_toggle',''),(305324,42466,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305325,42466,'blocks_8_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(305326,42466,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305327,42466,'blocks_8_options_theme','#ffffff'),(305328,42466,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(305329,42466,'blocks_8_options_reverse','0'),(305330,42466,'_blocks_8_options_reverse','field_61768049bb8ac'),(305331,42466,'blocks_8_options',''),(305332,42466,'_blocks_8_options','field_617682517c334'),(305333,42466,'blocks_8_split_5050_image','41539'),(305334,42466,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(305335,42466,'blocks_8_split_5050_video',''),(305336,42466,'_blocks_8_split_5050_video','field_6239f3160848a'),(305337,42466,'blocks_8_split_5050_content_title','Fitness and Sports Professionals'),(305338,42466,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(305339,42466,'blocks_8_split_5050_content_heading',''),(305340,42466,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(305341,42466,'blocks_8_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(305342,42466,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(305343,42466,'blocks_8_split_5050_content_actions',''),(305344,42466,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(305345,42466,'blocks_8_split_5050_content',''),(305346,42466,'_blocks_8_split_5050_content','field_61767afceb8ba'),(305347,42466,'blocks_9_acfe_flexible_toggle',''),(305348,42466,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305349,42466,'blocks_9_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(305350,42466,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305351,42466,'blocks_9_options_theme','#ffffff'),(305352,42466,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(305353,42466,'blocks_9_options_reverse','0'),(305354,42466,'_blocks_9_options_reverse','field_61768049bb8ac'),(305355,42466,'blocks_9_options',''),(305356,42466,'_blocks_9_options','field_617682517c334'),(305357,42466,'blocks_9_split_5050_image','41502'),(305358,42466,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(305359,42466,'blocks_9_split_5050_video',''),(305360,42466,'_blocks_9_split_5050_video','field_6239f3160848a'),(305361,42466,'blocks_9_split_5050_content_title','Educators and Researchers'),(305362,42466,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(305363,42466,'blocks_9_split_5050_content_heading',''),(305364,42466,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(305365,42466,'blocks_9_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(305366,42466,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(305367,42466,'blocks_9_split_5050_content_actions',''),(305368,42466,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(305369,42466,'blocks_9_split_5050_content',''),(305370,42466,'_blocks_9_split_5050_content','field_61767afceb8ba'),(305371,42466,'blocks_13_acfe_flexible_toggle',''),(305372,42466,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305373,42466,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(305374,42466,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305375,42466,'blocks_13_options_theme','#f5f5f5'),(305376,42466,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(305377,42466,'blocks_13_options_reverse','1'),(305378,42466,'_blocks_13_options_reverse','field_61768049bb8ac'),(305379,42466,'blocks_13_options',''),(305380,42466,'_blocks_13_options','field_617682517c334'),(305381,42466,'blocks_13_split_5050_image','41498'),(305382,42466,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(305383,42466,'blocks_13_split_5050_video',''),(305384,42466,'_blocks_13_split_5050_video','field_6239f3160848a'),(305385,42466,'blocks_13_split_5050_content_title',''),(305386,42466,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(305387,42466,'blocks_13_split_5050_content_heading',''),(305388,42466,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(305389,42466,'blocks_13_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(305390,42466,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(305391,42466,'blocks_13_split_5050_content_actions',''),(305392,42466,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(305393,42466,'blocks_13_split_5050_content',''),(305394,42466,'_blocks_13_split_5050_content','field_61767afceb8ba'),(305395,42466,'blocks_14_acfe_flexible_toggle',''),(305396,42466,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305397,42466,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(305398,42466,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305399,42466,'blocks_14_options_theme','#f5f5f5'),(305400,42466,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(305401,42466,'blocks_14_options_reverse','1'),(305402,42466,'_blocks_14_options_reverse','field_61768049bb8ac'),(305403,42466,'blocks_14_options',''),(305404,42466,'_blocks_14_options','field_617682517c334'),(305405,42466,'blocks_14_split_5050_image','40387'),(305406,42466,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(305407,42466,'blocks_14_split_5050_video',''),(305408,42466,'_blocks_14_split_5050_video','field_6239f3160848a'),(305409,42466,'blocks_14_split_5050_content_title',''),(305410,42466,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(305411,42466,'blocks_14_split_5050_content_heading',''),(305412,42466,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(305413,42466,'blocks_14_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(305414,42466,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(305415,42466,'blocks_14_split_5050_content_actions',''),(305416,42466,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(305417,42466,'blocks_14_split_5050_content',''),(305418,42466,'_blocks_14_split_5050_content','field_61767afceb8ba'),(305419,42466,'blocks_19_acfe_flexible_toggle',''),(305420,42466,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(305421,42466,'blocks_19_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(305422,42466,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(305423,42466,'blocks_19_options_theme','#ffffff'),(305424,42466,'_blocks_19_options_theme','field_6176830e2ad17'),(305425,42466,'blocks_19_options',''),(305426,42466,'_blocks_19_options','field_6176830e2ad16'),(305427,42466,'blocks_19_text_block_heading','The Role of MSK Education in Workplace Health'),(305428,42466,'_blocks_19_text_block_heading','field_617669d413097'),(305429,42466,'blocks_19_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(305430,42466,'_blocks_19_text_block_content','field_617669ec13098'),(305431,42466,'blocks_20_acfe_flexible_toggle',''),(305432,42466,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(305433,42466,'blocks_20_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(305434,42466,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(305435,42466,'blocks_20_options_theme','#ffffff'),(305436,42466,'_blocks_20_options_theme','field_6176830e2ad17'),(305437,42466,'blocks_20_options',''),(305438,42466,'_blocks_20_options','field_6176830e2ad16'),(305439,42466,'blocks_20_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(305440,42466,'_blocks_20_text_block_heading','field_617669d413097'),(305441,42466,'blocks_20_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(305442,42466,'_blocks_20_text_block_content','field_617669ec13098'),(305443,42466,'blocks_6_acfe_flexible_toggle',''),(305444,42466,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305445,42466,'blocks_6_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(305446,42466,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305447,42466,'blocks_6_options_theme','#ffffff'),(305448,42466,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(305449,42466,'blocks_6_options_reverse','0'),(305450,42466,'_blocks_6_options_reverse','field_61768049bb8ac'),(305451,42466,'blocks_6_options',''),(305452,42466,'_blocks_6_options','field_617682517c334'),(305453,42466,'blocks_6_split_5050_image','41542'),(305454,42466,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(305455,42466,'blocks_6_split_5050_video',''),(305456,42466,'_blocks_6_split_5050_video','field_6239f3160848a'),(305457,42466,'blocks_6_split_5050_content_title','Aspiring Healthcare Professionals'),(305458,42466,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(305459,42466,'blocks_6_split_5050_content_heading',''),(305460,42466,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(305461,42466,'blocks_6_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(305462,42466,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(305463,42466,'blocks_6_split_5050_content_actions',''),(305464,42466,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(305465,42466,'blocks_6_split_5050_content',''),(305466,42466,'_blocks_6_split_5050_content','field_61767afceb8ba'),(305467,42466,'blocks_10_acfe_flexible_toggle',''),(305468,42466,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305469,42466,'blocks_10_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(305470,42466,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305471,42466,'blocks_10_options_theme','#ffffff'),(305472,42466,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(305473,42466,'blocks_10_options_reverse','0'),(305474,42466,'_blocks_10_options_reverse','field_61768049bb8ac'),(305475,42466,'blocks_10_options',''),(305476,42466,'_blocks_10_options','field_617682517c334'),(305477,42466,'blocks_10_split_5050_image','41506'),(305478,42466,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(305479,42466,'blocks_10_split_5050_video',''),(305480,42466,'_blocks_10_split_5050_video','field_6239f3160848a'),(305481,42466,'blocks_10_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(305482,42466,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(305483,42466,'blocks_10_split_5050_content_heading',''),(305484,42466,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(305485,42466,'blocks_10_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(305486,42466,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(305487,42466,'blocks_10_split_5050_content_actions',''),(305488,42466,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(305489,42466,'blocks_10_split_5050_content',''),(305490,42466,'_blocks_10_split_5050_content','field_61767afceb8ba'),(305491,42466,'blocks_11_acfe_flexible_toggle',''),(305492,42466,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(305493,42466,'blocks_11_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(305494,42466,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(305495,42466,'blocks_11_options_theme','#ffffff'),(305496,42466,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(305497,42466,'blocks_11_options_state','0'),(305498,42466,'_blocks_11_options_state','field_6239fcb7508c5'),(305499,42466,'blocks_11_options',''),(305500,42466,'_blocks_11_options','field_6177e2991ac44'),(305501,42466,'blocks_11_content_title','Common MSK Conditions'),(305502,42466,'_blocks_11_content_title','field_64d237e8bb1e2'),(305503,42466,'blocks_11_content_heading','Common MSK Conditions'),(305504,42466,'_blocks_11_content_heading','field_64d237e8bb1e3'),(305505,42466,'blocks_11_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(305506,42466,'_blocks_11_content_text','field_64d237e8bb1e4'),(305507,42466,'blocks_11_content_actions',''),(305508,42466,'_blocks_11_content_actions','field_64d237e8bb1e5'),(305509,42466,'blocks_11_content_align','left'),(305510,42466,'_blocks_11_content_align','field_64d2443e6b6aa'),(305511,42466,'blocks_11_content',''),(305512,42466,'_blocks_11_content','field_64d237e8bb1e1'),(305513,42466,'blocks_11_accordion_content','custom'),(305514,42466,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(305515,42466,'blocks_11_accordion_items_0_title','Osteoarthritis'),(305516,42466,'_blocks_11_accordion_items_0_title','field_6177e2991ac4d'),(305517,42466,'blocks_11_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(305518,42466,'_blocks_11_accordion_items_0_text','field_6177e2991ac4e'),(305519,42466,'blocks_11_accordion_items_1_title','Rheumatoid Arthritis'),(305520,42466,'_blocks_11_accordion_items_1_title','field_6177e2991ac4d'),(305521,42466,'blocks_11_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(305522,42466,'_blocks_11_accordion_items_1_text','field_6177e2991ac4e'),(305523,42466,'blocks_11_accordion_items_2_title','Back Pain'),(305524,42466,'_blocks_11_accordion_items_2_title','field_6177e2991ac4d'),(305525,42466,'blocks_11_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(305526,42466,'_blocks_11_accordion_items_2_text','field_6177e2991ac4e'),(305527,42466,'blocks_11_accordion_items_3_title','Osteoporosis'),(305528,42466,'_blocks_11_accordion_items_3_title','field_6177e2991ac4d'),(305529,42466,'blocks_11_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(305530,42466,'_blocks_11_accordion_items_3_text','field_6177e2991ac4e'),(305531,42466,'blocks_11_accordion_items_4_title','Tendinitis'),(305532,42466,'_blocks_11_accordion_items_4_title','field_6177e2991ac4d'),(305533,42466,'blocks_11_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(305534,42466,'_blocks_11_accordion_items_4_text','field_6177e2991ac4e'),(305535,42466,'blocks_11_accordion_items_5_title','Carpal Tunnel Syndrome'),(305536,42466,'_blocks_11_accordion_items_5_title','field_6177e2991ac4d'),(305537,42466,'blocks_11_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(305538,42466,'_blocks_11_accordion_items_5_text','field_6177e2991ac4e'),(305539,42466,'blocks_11_accordion_items_6_title','Fibromyalgia'),(305540,42466,'_blocks_11_accordion_items_6_title','field_6177e2991ac4d'),(305541,42466,'blocks_11_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(305542,42466,'_blocks_11_accordion_items_6_text','field_6177e2991ac4e'),(305543,42466,'blocks_11_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(305544,42466,'_blocks_11_accordion_items_7_title','field_6177e2991ac4d'),(305545,42466,'blocks_11_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(305546,42466,'_blocks_11_accordion_items_7_text','field_6177e2991ac4e'),(305547,42466,'blocks_11_accordion_items','8'),(305548,42466,'_blocks_11_accordion_items','field_6177e2991ac4c'),(305549,42466,'blocks_11_actions',''),(305550,42466,'_blocks_11_actions','field_61a746a817f7a'),(305551,42466,'blocks_12_acfe_flexible_toggle',''),(305552,42466,'_blocks_12_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(305553,42466,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(305554,42466,'_blocks_12_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(305555,42466,'blocks_12_options_theme','#f5f5f5'),(305556,42466,'_blocks_12_options_theme','field_6176830e2ad17'),(305557,42466,'blocks_12_options',''),(305558,42466,'_blocks_12_options','field_6176830e2ad16'),(305559,42466,'blocks_12_text_block_heading','The Importance of MSK Education'),(305560,42466,'_blocks_12_text_block_heading','field_617669d413097'),(305561,42466,'blocks_12_text_block_content',''),(305562,42466,'_blocks_12_text_block_content','field_617669ec13098'),(305563,42466,'blocks_15_acfe_flexible_toggle',''),(305564,42466,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305565,42466,'blocks_15_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(305566,42466,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305567,42466,'blocks_15_options_theme','#f5f5f5'),(305568,42466,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(305569,42466,'blocks_15_options_reverse','1'),(305570,42466,'_blocks_15_options_reverse','field_61768049bb8ac'),(305571,42466,'blocks_15_options',''),(305572,42466,'_blocks_15_options','field_617682517c334'),(305573,42466,'blocks_15_split_5050_image','18856'),(305574,42466,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(305575,42466,'blocks_15_split_5050_video',''),(305576,42466,'_blocks_15_split_5050_video','field_6239f3160848a'),(305577,42466,'blocks_15_split_5050_content_title',''),(305578,42466,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(305579,42466,'blocks_15_split_5050_content_heading',''),(305580,42466,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(305581,42466,'blocks_15_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(305582,42466,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(305583,42466,'blocks_15_split_5050_content_actions',''),(305584,42466,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(305585,42466,'blocks_15_split_5050_content',''),(305586,42466,'_blocks_15_split_5050_content','field_61767afceb8ba'),(305587,42466,'blocks_16_acfe_flexible_toggle',''),(305588,42466,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(305589,42466,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(305590,42466,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(305591,42466,'blocks_16_options_theme','#b61234'),(305592,42466,'_blocks_16_options_theme','field_6176830e2ad17'),(305593,42466,'blocks_16_options',''),(305594,42466,'_blocks_16_options','field_6176830e2ad16'),(305595,42466,'blocks_16_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(305596,42466,'_blocks_16_text_block_heading','field_617669d413097'),(305597,42466,'blocks_16_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(305598,42466,'_blocks_16_text_block_content','field_617669ec13098'),(305599,42466,'blocks_17_acfe_flexible_toggle',''),(305600,42466,'_blocks_17_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(305601,42466,'blocks_17_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(305602,42466,'_blocks_17_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(305603,42466,'blocks_17_options_theme','#b61234'),(305604,42466,'_blocks_17_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(305605,42466,'blocks_17_options_format','row'),(305606,42466,'_blocks_17_options_format','field_64bfde9a90690'),(305607,42466,'blocks_17_options',''),(305608,42466,'_blocks_17_options','field_64bfdd9b90684'),(305609,42466,'blocks_17_icon_row_items_0_icon','pass-rate.svg'),(305610,42466,'_blocks_17_icon_row_items_0_icon','field_64bfdd9b9068d'),(305611,42466,'blocks_17_icon_row_items_0_label','More Accurate Assessments'),(305612,42466,'_blocks_17_icon_row_items_0_label','field_64bfdd9c9068e'),(305613,42466,'blocks_17_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(305614,42466,'_blocks_17_icon_row_items_0_text','field_64bfdd9c9068f'),(305615,42466,'blocks_17_icon_row_items_1_icon','exceptional-support.svg'),(305616,42466,'_blocks_17_icon_row_items_1_icon','field_64bfdd9b9068d'),(305617,42466,'blocks_17_icon_row_items_1_label','Personalised Movement Strategies'),(305618,42466,'_blocks_17_icon_row_items_1_label','field_64bfdd9c9068e'),(305619,42466,'blocks_17_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(305620,42466,'_blocks_17_icon_row_items_1_text','field_64bfdd9c9068f'),(305621,42466,'blocks_17_icon_row_items_2_icon','lifetime-course-access.svg'),(305622,42466,'_blocks_17_icon_row_items_2_icon','field_64bfdd9b9068d'),(305623,42466,'blocks_17_icon_row_items_2_label','Injury Prevention and Longevity'),(305624,42466,'_blocks_17_icon_row_items_2_label','field_64bfdd9c9068e'),(305625,42466,'blocks_17_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(305626,42466,'_blocks_17_icon_row_items_2_text','field_64bfdd9c9068f'),(305627,42466,'blocks_17_icon_row_items_3_icon','recognised.svg'),(305628,42466,'_blocks_17_icon_row_items_3_icon','field_64bfdd9b9068d'),(305629,42466,'blocks_17_icon_row_items_3_label','Optimised Performance'),(305630,42466,'_blocks_17_icon_row_items_3_label','field_64bfdd9c9068e'),(305631,42466,'blocks_17_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(305632,42466,'_blocks_17_icon_row_items_3_text','field_64bfdd9c9068f'),(305633,42466,'blocks_17_icon_row_items','4'),(305634,42466,'_blocks_17_icon_row_items','field_64bfdd9b9068c'),(305635,42466,'blocks_18_acfe_flexible_toggle',''),(305636,42466,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305637,42466,'blocks_18_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(305638,42466,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305639,42466,'blocks_18_options_theme','#ffffff'),(305640,42466,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(305641,42466,'blocks_18_options_reverse','0'),(305642,42466,'_blocks_18_options_reverse','field_61768049bb8ac'),(305643,42466,'blocks_18_options',''),(305644,42466,'_blocks_18_options','field_617682517c334'),(305645,42466,'blocks_18_split_5050_image','41501'),(305646,42466,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(305647,42466,'blocks_18_split_5050_video',''),(305648,42466,'_blocks_18_split_5050_video','field_6239f3160848a'),(305649,42466,'blocks_18_split_5050_content_title',''),(305650,42466,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(305651,42466,'blocks_18_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(305652,42466,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(305653,42466,'blocks_18_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(305654,42466,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(305655,42466,'blocks_18_split_5050_content_actions',''),(305656,42466,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(305657,42466,'blocks_18_split_5050_content',''),(305658,42466,'_blocks_18_split_5050_content','field_61767afceb8ba'),(305659,42466,'blocks_21_acfe_flexible_toggle',''),(305660,42466,'_blocks_21_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(305661,42466,'blocks_21_acfe_flexible_layout_title','Conclusion'),(305662,42466,'_blocks_21_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(305663,42466,'blocks_21_options_theme','#f5f5f5'),(305664,42466,'_blocks_21_options_theme','field_6176830e2ad17'),(305665,42466,'blocks_21_options',''),(305666,42466,'_blocks_21_options','field_6176830e2ad16'),(305667,42466,'blocks_21_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(305668,42466,'_blocks_21_text_block_heading','field_617669d413097'),(305669,42466,'blocks_21_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(305670,42466,'_blocks_21_text_block_content','field_617669ec13098'),(305671,42466,'blocks_22_acfe_flexible_toggle',''),(305672,42466,'_blocks_22_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(305673,42466,'blocks_22_acfe_flexible_layout_title','Promo Panel'),(305674,42466,'_blocks_22_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(305675,42466,'blocks_22_options_alignment','center'),(305676,42466,'_blocks_22_options_alignment','field_61769449f5490'),(305677,42466,'blocks_22_options',''),(305678,42466,'_blocks_22_options','field_617693e1428f0'),(305679,42466,'blocks_22_promo_panel_image','40342'),(305680,42466,'_blocks_22_promo_panel_image','field_617693e1428f3'),(305681,42466,'blocks_22_promo_panel_content_heading','Want to Get Started?'),(305682,42466,'_blocks_22_promo_panel_content_heading','field_617693e1428f6'),(305683,42466,'blocks_22_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(305684,42466,'_blocks_22_promo_panel_content_text','field_617693e1428f7'),(305685,42466,'blocks_22_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(305686,42466,'_blocks_22_promo_panel_content_actions_0_button','field_617693e1428f9'),(305687,42466,'blocks_22_promo_panel_content_actions','1'),(305688,42466,'_blocks_22_promo_panel_content_actions','field_617693e1428f8'),(305689,42466,'blocks_22_promo_panel_content',''),(305690,42466,'_blocks_22_promo_panel_content','field_617693e1428f4'),(305691,42467,'hide_hero','0'),(305692,42467,'_hide_hero','field_66a2380fcda39'),(305693,42467,'hero_title',''),(305694,42467,'_hero_title','field_617571fe285e8'),(305695,42467,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(305696,42467,'_hero_text','field_6175723c285e9'),(305697,42467,'hero_actions','1'),(305698,42467,'_hero_actions','field_61757270285ea'),(305699,42467,'hero_style','default'),(305700,42467,'_hero_style','field_62051d9dc5324'),(305701,42467,'hero_image_pos_x','right'),(305702,42467,'_hero_image_pos_x','field_62ec3d05390bb'),(305703,42467,'hero_image_pos_y','top'),(305704,42467,'_hero_image_pos_y','field_62ec3d05390bc'),(305705,42467,'hero_image_pos',''),(305706,42467,'_hero_image_pos','field_62ec3d05390ba'),(305707,42467,'fft_hide_from_listings','0'),(305708,42467,'_fft_hide_from_listings','field_61f1320446ab2'),(305709,42467,'post_format','402'),(305710,42467,'_post_format','field_61756bfb51898'),(305711,42467,'post_author',''),(305712,42467,'_post_author','field_62ec389d22113'),(305713,42467,'post_reviewer',''),(305714,42467,'_post_reviewer','field_627140a2a9800'),(305715,42467,'post_table_of_contents','0'),(305716,42467,'_post_table_of_contents','field_65c503bc846a6'),(305717,42467,'blocks','a:23:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"accordions\";i:12;s:10:\"text_block\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:5:\"icons\";i:18;s:10:\"split_5050\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:10:\"text_block\";i:22;s:11:\"promo_panel\";}'),(305718,42467,'_blocks','field_6176696113096'),(305719,42467,'_thumbnail_id','41331'),(305720,42467,'__thumbnail_id','field_617570855ddaf'),(305721,42467,'blocks_0_acfe_flexible_toggle',''),(305722,42467,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(305723,42467,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(305724,42467,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(305725,42467,'blocks_0_options_theme','#ffffff'),(305726,42467,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(305727,42467,'blocks_0_options',''),(305728,42467,'_blocks_0_options','field_6177b758246ae'),(305729,42467,'blocks_0_link_stack_content_title',''),(305730,42467,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(305731,42467,'blocks_0_link_stack_content_heading','What is MSK?'),(305732,42467,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(305733,42467,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(305734,42467,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(305735,42467,'blocks_0_link_stack_content_actions_0_button',''),(305736,42467,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(305737,42467,'blocks_0_link_stack_content_actions','1'),(305738,42467,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(305739,42467,'blocks_0_link_stack_content',''),(305740,42467,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(305741,42467,'blocks_0_link_stack_0_label','1.'),(305742,42467,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(305743,42467,'blocks_0_link_stack_0_title','Overview'),(305744,42467,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(305745,42467,'blocks_0_link_stack_0_url','#overview'),(305746,42467,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(305747,42467,'blocks_0_link_stack_1_label','2.'),(305748,42467,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(305749,42467,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(305750,42467,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(305751,42467,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(305752,42467,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(305753,42467,'blocks_0_link_stack_2_label','3.'),(305754,42467,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(305755,42467,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(305756,42467,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(305757,42467,'blocks_0_link_stack_2_url','#who-should-study-msk'),(305758,42467,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(305759,42467,'blocks_0_link_stack_3_label','4.'),(305760,42467,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(305761,42467,'blocks_0_link_stack_3_title','Common MSK Conditions'),(305762,42467,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(305763,42467,'blocks_0_link_stack_3_url','#common-msk-conditions'),(305764,42467,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(305765,42467,'blocks_0_link_stack_4_label','5.'),(305766,42467,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(305767,42467,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(305768,42467,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(305769,42467,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(305770,42467,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(305771,42467,'blocks_0_link_stack_5_label','6.'),(305772,42467,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(305773,42467,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(305774,42467,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(305775,42467,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(305776,42467,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(305777,42467,'blocks_0_link_stack','6'),(305778,42467,'_blocks_0_link_stack','field_6177b7f600cff'),(305779,42467,'blocks_1_acfe_flexible_toggle',''),(305780,42467,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305781,42467,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(305782,42467,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305783,42467,'blocks_1_options_theme','#ffffff'),(305784,42467,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(305785,42467,'blocks_1_options_reverse','0'),(305786,42467,'_blocks_1_options_reverse','field_61768049bb8ac'),(305787,42467,'blocks_1_options',''),(305788,42467,'_blocks_1_options','field_617682517c334'),(305789,42467,'blocks_1_split_5050_image','40615'),(305790,42467,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(305791,42467,'blocks_1_split_5050_video',''),(305792,42467,'_blocks_1_split_5050_video','field_6239f3160848a'),(305793,42467,'blocks_1_split_5050_content_title',''),(305794,42467,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(305795,42467,'blocks_1_split_5050_content_heading','Overview'),(305796,42467,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(305797,42467,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(305798,42467,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(305799,42467,'blocks_1_split_5050_content_actions',''),(305800,42467,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(305801,42467,'blocks_1_split_5050_content',''),(305802,42467,'_blocks_1_split_5050_content','field_61767afceb8ba'),(305803,42467,'blocks_2_acfe_flexible_toggle',''),(305804,42467,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(305805,42467,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(305806,42467,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(305807,42467,'blocks_2_options_theme','#f5f5f5'),(305808,42467,'_blocks_2_options_theme','field_6176830e2ad17'),(305809,42467,'blocks_2_options',''),(305810,42467,'_blocks_2_options','field_6176830e2ad16'),(305811,42467,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(305812,42467,'_blocks_2_text_block_heading','field_617669d413097'),(305813,42467,'blocks_2_text_block_content',''),(305814,42467,'_blocks_2_text_block_content','field_617669ec13098'),(305815,42467,'blocks_3_acfe_flexible_toggle',''),(305816,42467,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305817,42467,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(305818,42467,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305819,42467,'blocks_3_options_theme','#f5f5f5'),(305820,42467,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(305821,42467,'blocks_3_options_reverse','1'),(305822,42467,'_blocks_3_options_reverse','field_61768049bb8ac'),(305823,42467,'blocks_3_options',''),(305824,42467,'_blocks_3_options','field_617682517c334'),(305825,42467,'blocks_3_split_5050_image','40618'),(305826,42467,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(305827,42467,'blocks_3_split_5050_video',''),(305828,42467,'_blocks_3_split_5050_video','field_6239f3160848a'),(305829,42467,'blocks_3_split_5050_content_title',''),(305830,42467,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(305831,42467,'blocks_3_split_5050_content_heading',''),(305832,42467,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(305833,42467,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(305834,42467,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(305835,42467,'blocks_3_split_5050_content_actions',''),(305836,42467,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(305837,42467,'blocks_3_split_5050_content',''),(305838,42467,'_blocks_3_split_5050_content','field_61767afceb8ba'),(305839,42467,'blocks_4_acfe_flexible_toggle','1'),(305840,42467,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305841,42467,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(305842,42467,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305843,42467,'blocks_4_options_theme','#f5f5f5'),(305844,42467,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(305845,42467,'blocks_4_options_reverse','1'),(305846,42467,'_blocks_4_options_reverse','field_61768049bb8ac'),(305847,42467,'blocks_4_options',''),(305848,42467,'_blocks_4_options','field_617682517c334'),(305849,42467,'blocks_4_split_5050_image','41330'),(305850,42467,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(305851,42467,'blocks_4_split_5050_video',''),(305852,42467,'_blocks_4_split_5050_video','field_6239f3160848a'),(305853,42467,'blocks_4_split_5050_content_title',''),(305854,42467,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(305855,42467,'blocks_4_split_5050_content_heading',''),(305856,42467,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(305857,42467,'blocks_4_split_5050_content_text',''),(305858,42467,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(305859,42467,'blocks_4_split_5050_content_actions',''),(305860,42467,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(305861,42467,'blocks_4_split_5050_content',''),(305862,42467,'_blocks_4_split_5050_content','field_61767afceb8ba'),(305863,42467,'blocks_5_acfe_flexible_toggle',''),(305864,42467,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(305865,42467,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(305866,42467,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(305867,42467,'blocks_5_options_theme','#ffffff'),(305868,42467,'_blocks_5_options_theme','field_6176830e2ad17'),(305869,42467,'blocks_5_options',''),(305870,42467,'_blocks_5_options','field_6176830e2ad16'),(305871,42467,'blocks_5_text_block_heading','Who Should Study MSK?'),(305872,42467,'_blocks_5_text_block_heading','field_617669d413097'),(305873,42467,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(305874,42467,'_blocks_5_text_block_content','field_617669ec13098'),(305875,42467,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(305876,42467,'_hero_actions_0_button','field_61757281285eb'),(305877,42467,'blocks_7_acfe_flexible_toggle',''),(305878,42467,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305879,42467,'blocks_7_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(305880,42467,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305881,42467,'blocks_7_options_theme','#ffffff'),(305882,42467,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(305883,42467,'blocks_7_options_reverse','0'),(305884,42467,'_blocks_7_options_reverse','field_61768049bb8ac'),(305885,42467,'blocks_7_options',''),(305886,42467,'_blocks_7_options','field_617682517c334'),(305887,42467,'blocks_7_split_5050_image','41505'),(305888,42467,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(305889,42467,'blocks_7_split_5050_video',''),(305890,42467,'_blocks_7_split_5050_video','field_6239f3160848a'),(305891,42467,'blocks_7_split_5050_content_title','Current Practitioners'),(305892,42467,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(305893,42467,'blocks_7_split_5050_content_heading',''),(305894,42467,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(305895,42467,'blocks_7_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(305896,42467,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(305897,42467,'blocks_7_split_5050_content_actions',''),(305898,42467,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(305899,42467,'blocks_7_split_5050_content',''),(305900,42467,'_blocks_7_split_5050_content','field_61767afceb8ba'),(305901,42467,'blocks_8_acfe_flexible_toggle',''),(305902,42467,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305903,42467,'blocks_8_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(305904,42467,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305905,42467,'blocks_8_options_theme','#ffffff'),(305906,42467,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(305907,42467,'blocks_8_options_reverse','0'),(305908,42467,'_blocks_8_options_reverse','field_61768049bb8ac'),(305909,42467,'blocks_8_options',''),(305910,42467,'_blocks_8_options','field_617682517c334'),(305911,42467,'blocks_8_split_5050_image','41539'),(305912,42467,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(305913,42467,'blocks_8_split_5050_video',''),(305914,42467,'_blocks_8_split_5050_video','field_6239f3160848a'),(305915,42467,'blocks_8_split_5050_content_title','Fitness and Sports Professionals'),(305916,42467,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(305917,42467,'blocks_8_split_5050_content_heading',''),(305918,42467,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(305919,42467,'blocks_8_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(305920,42467,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(305921,42467,'blocks_8_split_5050_content_actions',''),(305922,42467,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(305923,42467,'blocks_8_split_5050_content',''),(305924,42467,'_blocks_8_split_5050_content','field_61767afceb8ba'),(305925,42467,'blocks_9_acfe_flexible_toggle',''),(305926,42467,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305927,42467,'blocks_9_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(305928,42467,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305929,42467,'blocks_9_options_theme','#ffffff'),(305930,42467,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(305931,42467,'blocks_9_options_reverse','0'),(305932,42467,'_blocks_9_options_reverse','field_61768049bb8ac'),(305933,42467,'blocks_9_options',''),(305934,42467,'_blocks_9_options','field_617682517c334'),(305935,42467,'blocks_9_split_5050_image','41502'),(305936,42467,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(305937,42467,'blocks_9_split_5050_video',''),(305938,42467,'_blocks_9_split_5050_video','field_6239f3160848a'),(305939,42467,'blocks_9_split_5050_content_title','Educators and Researchers'),(305940,42467,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(305941,42467,'blocks_9_split_5050_content_heading',''),(305942,42467,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(305943,42467,'blocks_9_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(305944,42467,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(305945,42467,'blocks_9_split_5050_content_actions',''),(305946,42467,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(305947,42467,'blocks_9_split_5050_content',''),(305948,42467,'_blocks_9_split_5050_content','field_61767afceb8ba'),(305949,42467,'blocks_13_acfe_flexible_toggle',''),(305950,42467,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305951,42467,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(305952,42467,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305953,42467,'blocks_13_options_theme','#f5f5f5'),(305954,42467,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(305955,42467,'blocks_13_options_reverse','1'),(305956,42467,'_blocks_13_options_reverse','field_61768049bb8ac'),(305957,42467,'blocks_13_options',''),(305958,42467,'_blocks_13_options','field_617682517c334'),(305959,42467,'blocks_13_split_5050_image','41498'),(305960,42467,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(305961,42467,'blocks_13_split_5050_video',''),(305962,42467,'_blocks_13_split_5050_video','field_6239f3160848a'),(305963,42467,'blocks_13_split_5050_content_title',''),(305964,42467,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(305965,42467,'blocks_13_split_5050_content_heading',''),(305966,42467,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(305967,42467,'blocks_13_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(305968,42467,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(305969,42467,'blocks_13_split_5050_content_actions',''),(305970,42467,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(305971,42467,'blocks_13_split_5050_content',''),(305972,42467,'_blocks_13_split_5050_content','field_61767afceb8ba'),(305973,42467,'blocks_14_acfe_flexible_toggle',''),(305974,42467,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(305975,42467,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(305976,42467,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(305977,42467,'blocks_14_options_theme','#f5f5f5'),(305978,42467,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(305979,42467,'blocks_14_options_reverse','1'),(305980,42467,'_blocks_14_options_reverse','field_61768049bb8ac'),(305981,42467,'blocks_14_options',''),(305982,42467,'_blocks_14_options','field_617682517c334'),(305983,42467,'blocks_14_split_5050_image','40387'),(305984,42467,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(305985,42467,'blocks_14_split_5050_video',''),(305986,42467,'_blocks_14_split_5050_video','field_6239f3160848a'),(305987,42467,'blocks_14_split_5050_content_title',''),(305988,42467,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(305989,42467,'blocks_14_split_5050_content_heading',''),(305990,42467,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(305991,42467,'blocks_14_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(305992,42467,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(305993,42467,'blocks_14_split_5050_content_actions',''),(305994,42467,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(305995,42467,'blocks_14_split_5050_content',''),(305996,42467,'_blocks_14_split_5050_content','field_61767afceb8ba'),(305997,42467,'blocks_19_acfe_flexible_toggle',''),(305998,42467,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(305999,42467,'blocks_19_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(306000,42467,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(306001,42467,'blocks_19_options_theme','#ffffff'),(306002,42467,'_blocks_19_options_theme','field_6176830e2ad17'),(306003,42467,'blocks_19_options',''),(306004,42467,'_blocks_19_options','field_6176830e2ad16'),(306005,42467,'blocks_19_text_block_heading','The Role of MSK Education in Workplace Health'),(306006,42467,'_blocks_19_text_block_heading','field_617669d413097'),(306007,42467,'blocks_19_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(306008,42467,'_blocks_19_text_block_content','field_617669ec13098'),(306009,42467,'blocks_20_acfe_flexible_toggle',''),(306010,42467,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(306011,42467,'blocks_20_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(306012,42467,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(306013,42467,'blocks_20_options_theme','#ffffff'),(306014,42467,'_blocks_20_options_theme','field_6176830e2ad17'),(306015,42467,'blocks_20_options',''),(306016,42467,'_blocks_20_options','field_6176830e2ad16'),(306017,42467,'blocks_20_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(306018,42467,'_blocks_20_text_block_heading','field_617669d413097'),(306019,42467,'blocks_20_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(306020,42467,'_blocks_20_text_block_content','field_617669ec13098'),(306021,42467,'blocks_6_acfe_flexible_toggle',''),(306022,42467,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306023,42467,'blocks_6_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(306024,42467,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306025,42467,'blocks_6_options_theme','#ffffff'),(306026,42467,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(306027,42467,'blocks_6_options_reverse','0'),(306028,42467,'_blocks_6_options_reverse','field_61768049bb8ac'),(306029,42467,'blocks_6_options',''),(306030,42467,'_blocks_6_options','field_617682517c334'),(306031,42467,'blocks_6_split_5050_image','41542'),(306032,42467,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(306033,42467,'blocks_6_split_5050_video',''),(306034,42467,'_blocks_6_split_5050_video','field_6239f3160848a'),(306035,42467,'blocks_6_split_5050_content_title','Aspiring Healthcare Professionals'),(306036,42467,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(306037,42467,'blocks_6_split_5050_content_heading',''),(306038,42467,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(306039,42467,'blocks_6_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(306040,42467,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(306041,42467,'blocks_6_split_5050_content_actions',''),(306042,42467,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(306043,42467,'blocks_6_split_5050_content',''),(306044,42467,'_blocks_6_split_5050_content','field_61767afceb8ba'),(306045,42467,'blocks_10_acfe_flexible_toggle',''),(306046,42467,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306047,42467,'blocks_10_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(306048,42467,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306049,42467,'blocks_10_options_theme','#ffffff'),(306050,42467,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(306051,42467,'blocks_10_options_reverse','0'),(306052,42467,'_blocks_10_options_reverse','field_61768049bb8ac'),(306053,42467,'blocks_10_options',''),(306054,42467,'_blocks_10_options','field_617682517c334'),(306055,42467,'blocks_10_split_5050_image','41506'),(306056,42467,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(306057,42467,'blocks_10_split_5050_video',''),(306058,42467,'_blocks_10_split_5050_video','field_6239f3160848a'),(306059,42467,'blocks_10_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(306060,42467,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(306061,42467,'blocks_10_split_5050_content_heading',''),(306062,42467,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(306063,42467,'blocks_10_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(306064,42467,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(306065,42467,'blocks_10_split_5050_content_actions',''),(306066,42467,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(306067,42467,'blocks_10_split_5050_content',''),(306068,42467,'_blocks_10_split_5050_content','field_61767afceb8ba'),(306069,42467,'blocks_11_acfe_flexible_toggle',''),(306070,42467,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(306071,42467,'blocks_11_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(306072,42467,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(306073,42467,'blocks_11_options_theme','#f5f5f5'),(306074,42467,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(306075,42467,'blocks_11_options_state','0'),(306076,42467,'_blocks_11_options_state','field_6239fcb7508c5'),(306077,42467,'blocks_11_options',''),(306078,42467,'_blocks_11_options','field_6177e2991ac44'),(306079,42467,'blocks_11_content_title','Common MSK Conditions'),(306080,42467,'_blocks_11_content_title','field_64d237e8bb1e2'),(306081,42467,'blocks_11_content_heading','Common MSK Conditions'),(306082,42467,'_blocks_11_content_heading','field_64d237e8bb1e3'),(306083,42467,'blocks_11_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(306084,42467,'_blocks_11_content_text','field_64d237e8bb1e4'),(306085,42467,'blocks_11_content_actions',''),(306086,42467,'_blocks_11_content_actions','field_64d237e8bb1e5'),(306087,42467,'blocks_11_content_align','left'),(306088,42467,'_blocks_11_content_align','field_64d2443e6b6aa'),(306089,42467,'blocks_11_content',''),(306090,42467,'_blocks_11_content','field_64d237e8bb1e1'),(306091,42467,'blocks_11_accordion_content','custom'),(306092,42467,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(306093,42467,'blocks_11_accordion_items_0_title','Osteoarthritis'),(306094,42467,'_blocks_11_accordion_items_0_title','field_6177e2991ac4d'),(306095,42467,'blocks_11_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(306096,42467,'_blocks_11_accordion_items_0_text','field_6177e2991ac4e'),(306097,42467,'blocks_11_accordion_items_1_title','Rheumatoid Arthritis'),(306098,42467,'_blocks_11_accordion_items_1_title','field_6177e2991ac4d'),(306099,42467,'blocks_11_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(306100,42467,'_blocks_11_accordion_items_1_text','field_6177e2991ac4e'),(306101,42467,'blocks_11_accordion_items_2_title','Back Pain'),(306102,42467,'_blocks_11_accordion_items_2_title','field_6177e2991ac4d'),(306103,42467,'blocks_11_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(306104,42467,'_blocks_11_accordion_items_2_text','field_6177e2991ac4e'),(306105,42467,'blocks_11_accordion_items_3_title','Osteoporosis'),(306106,42467,'_blocks_11_accordion_items_3_title','field_6177e2991ac4d'),(306107,42467,'blocks_11_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(306108,42467,'_blocks_11_accordion_items_3_text','field_6177e2991ac4e'),(306109,42467,'blocks_11_accordion_items_4_title','Tendinitis'),(306110,42467,'_blocks_11_accordion_items_4_title','field_6177e2991ac4d'),(306111,42467,'blocks_11_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(306112,42467,'_blocks_11_accordion_items_4_text','field_6177e2991ac4e'),(306113,42467,'blocks_11_accordion_items_5_title','Carpal Tunnel Syndrome'),(306114,42467,'_blocks_11_accordion_items_5_title','field_6177e2991ac4d'),(306115,42467,'blocks_11_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(306116,42467,'_blocks_11_accordion_items_5_text','field_6177e2991ac4e'),(306117,42467,'blocks_11_accordion_items_6_title','Fibromyalgia'),(306118,42467,'_blocks_11_accordion_items_6_title','field_6177e2991ac4d'),(306119,42467,'blocks_11_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(306120,42467,'_blocks_11_accordion_items_6_text','field_6177e2991ac4e'),(306121,42467,'blocks_11_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(306122,42467,'_blocks_11_accordion_items_7_title','field_6177e2991ac4d'),(306123,42467,'blocks_11_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(306124,42467,'_blocks_11_accordion_items_7_text','field_6177e2991ac4e'),(306125,42467,'blocks_11_accordion_items','8'),(306126,42467,'_blocks_11_accordion_items','field_6177e2991ac4c'),(306127,42467,'blocks_11_actions',''),(306128,42467,'_blocks_11_actions','field_61a746a817f7a'),(306129,42467,'blocks_12_acfe_flexible_toggle',''),(306130,42467,'_blocks_12_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(306131,42467,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(306132,42467,'_blocks_12_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(306133,42467,'blocks_12_options_theme','#f5f5f5'),(306134,42467,'_blocks_12_options_theme','field_6176830e2ad17'),(306135,42467,'blocks_12_options',''),(306136,42467,'_blocks_12_options','field_6176830e2ad16'),(306137,42467,'blocks_12_text_block_heading','The Importance of MSK Education'),(306138,42467,'_blocks_12_text_block_heading','field_617669d413097'),(306139,42467,'blocks_12_text_block_content',''),(306140,42467,'_blocks_12_text_block_content','field_617669ec13098'),(306141,42467,'blocks_15_acfe_flexible_toggle',''),(306142,42467,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306143,42467,'blocks_15_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(306144,42467,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306145,42467,'blocks_15_options_theme','#f5f5f5'),(306146,42467,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(306147,42467,'blocks_15_options_reverse','1'),(306148,42467,'_blocks_15_options_reverse','field_61768049bb8ac'),(306149,42467,'blocks_15_options',''),(306150,42467,'_blocks_15_options','field_617682517c334'),(306151,42467,'blocks_15_split_5050_image','18856'),(306152,42467,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(306153,42467,'blocks_15_split_5050_video',''),(306154,42467,'_blocks_15_split_5050_video','field_6239f3160848a'),(306155,42467,'blocks_15_split_5050_content_title',''),(306156,42467,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(306157,42467,'blocks_15_split_5050_content_heading',''),(306158,42467,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(306159,42467,'blocks_15_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(306160,42467,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(306161,42467,'blocks_15_split_5050_content_actions',''),(306162,42467,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(306163,42467,'blocks_15_split_5050_content',''),(306164,42467,'_blocks_15_split_5050_content','field_61767afceb8ba'),(306165,42467,'blocks_16_acfe_flexible_toggle',''),(306166,42467,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(306167,42467,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(306168,42467,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(306169,42467,'blocks_16_options_theme','#b61234'),(306170,42467,'_blocks_16_options_theme','field_6176830e2ad17'),(306171,42467,'blocks_16_options',''),(306172,42467,'_blocks_16_options','field_6176830e2ad16'),(306173,42467,'blocks_16_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(306174,42467,'_blocks_16_text_block_heading','field_617669d413097'),(306175,42467,'blocks_16_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(306176,42467,'_blocks_16_text_block_content','field_617669ec13098'),(306177,42467,'blocks_17_acfe_flexible_toggle',''),(306178,42467,'_blocks_17_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(306179,42467,'blocks_17_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(306180,42467,'_blocks_17_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(306181,42467,'blocks_17_options_theme','#b61234'),(306182,42467,'_blocks_17_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(306183,42467,'blocks_17_options_format','row'),(306184,42467,'_blocks_17_options_format','field_64bfde9a90690'),(306185,42467,'blocks_17_options',''),(306186,42467,'_blocks_17_options','field_64bfdd9b90684'),(306187,42467,'blocks_17_icon_row_items_0_icon','pass-rate.svg'),(306188,42467,'_blocks_17_icon_row_items_0_icon','field_64bfdd9b9068d'),(306189,42467,'blocks_17_icon_row_items_0_label','More Accurate Assessments'),(306190,42467,'_blocks_17_icon_row_items_0_label','field_64bfdd9c9068e'),(306191,42467,'blocks_17_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(306192,42467,'_blocks_17_icon_row_items_0_text','field_64bfdd9c9068f'),(306193,42467,'blocks_17_icon_row_items_1_icon','exceptional-support.svg'),(306194,42467,'_blocks_17_icon_row_items_1_icon','field_64bfdd9b9068d'),(306195,42467,'blocks_17_icon_row_items_1_label','Personalised Movement Strategies'),(306196,42467,'_blocks_17_icon_row_items_1_label','field_64bfdd9c9068e'),(306197,42467,'blocks_17_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(306198,42467,'_blocks_17_icon_row_items_1_text','field_64bfdd9c9068f'),(306199,42467,'blocks_17_icon_row_items_2_icon','lifetime-course-access.svg'),(306200,42467,'_blocks_17_icon_row_items_2_icon','field_64bfdd9b9068d'),(306201,42467,'blocks_17_icon_row_items_2_label','Injury Prevention and Longevity'),(306202,42467,'_blocks_17_icon_row_items_2_label','field_64bfdd9c9068e'),(306203,42467,'blocks_17_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(306204,42467,'_blocks_17_icon_row_items_2_text','field_64bfdd9c9068f'),(306205,42467,'blocks_17_icon_row_items_3_icon','recognised.svg'),(306206,42467,'_blocks_17_icon_row_items_3_icon','field_64bfdd9b9068d'),(306207,42467,'blocks_17_icon_row_items_3_label','Optimised Performance'),(306208,42467,'_blocks_17_icon_row_items_3_label','field_64bfdd9c9068e'),(306209,42467,'blocks_17_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(306210,42467,'_blocks_17_icon_row_items_3_text','field_64bfdd9c9068f'),(306211,42467,'blocks_17_icon_row_items','4'),(306212,42467,'_blocks_17_icon_row_items','field_64bfdd9b9068c'),(306213,42467,'blocks_18_acfe_flexible_toggle',''),(306214,42467,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306215,42467,'blocks_18_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(306216,42467,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306217,42467,'blocks_18_options_theme','#ffffff'),(306218,42467,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(306219,42467,'blocks_18_options_reverse','0'),(306220,42467,'_blocks_18_options_reverse','field_61768049bb8ac'),(306221,42467,'blocks_18_options',''),(306222,42467,'_blocks_18_options','field_617682517c334'),(306223,42467,'blocks_18_split_5050_image','41501'),(306224,42467,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(306225,42467,'blocks_18_split_5050_video',''),(306226,42467,'_blocks_18_split_5050_video','field_6239f3160848a'),(306227,42467,'blocks_18_split_5050_content_title',''),(306228,42467,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(306229,42467,'blocks_18_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(306230,42467,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(306231,42467,'blocks_18_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(306232,42467,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(306233,42467,'blocks_18_split_5050_content_actions',''),(306234,42467,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(306235,42467,'blocks_18_split_5050_content',''),(306236,42467,'_blocks_18_split_5050_content','field_61767afceb8ba'),(306237,42467,'blocks_21_acfe_flexible_toggle',''),(306238,42467,'_blocks_21_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(306239,42467,'blocks_21_acfe_flexible_layout_title','Conclusion'),(306240,42467,'_blocks_21_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(306241,42467,'blocks_21_options_theme','#f5f5f5'),(306242,42467,'_blocks_21_options_theme','field_6176830e2ad17'),(306243,42467,'blocks_21_options',''),(306244,42467,'_blocks_21_options','field_6176830e2ad16'),(306245,42467,'blocks_21_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(306246,42467,'_blocks_21_text_block_heading','field_617669d413097'),(306247,42467,'blocks_21_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(306248,42467,'_blocks_21_text_block_content','field_617669ec13098'),(306249,42467,'blocks_22_acfe_flexible_toggle',''),(306250,42467,'_blocks_22_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(306251,42467,'blocks_22_acfe_flexible_layout_title','Promo Panel'),(306252,42467,'_blocks_22_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(306253,42467,'blocks_22_options_alignment','center'),(306254,42467,'_blocks_22_options_alignment','field_61769449f5490'),(306255,42467,'blocks_22_options',''),(306256,42467,'_blocks_22_options','field_617693e1428f0'),(306257,42467,'blocks_22_promo_panel_image','40342'),(306258,42467,'_blocks_22_promo_panel_image','field_617693e1428f3'),(306259,42467,'blocks_22_promo_panel_content_heading','Want to Get Started?'),(306260,42467,'_blocks_22_promo_panel_content_heading','field_617693e1428f6'),(306261,42467,'blocks_22_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(306262,42467,'_blocks_22_promo_panel_content_text','field_617693e1428f7'),(306263,42467,'blocks_22_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(306264,42467,'_blocks_22_promo_panel_content_actions_0_button','field_617693e1428f9'),(306265,42467,'blocks_22_promo_panel_content_actions','1'),(306266,42467,'_blocks_22_promo_panel_content_actions','field_617693e1428f8'),(306267,42467,'blocks_22_promo_panel_content',''),(306268,42467,'_blocks_22_promo_panel_content','field_617693e1428f4'),(306269,42468,'hide_hero','0'),(306270,42468,'_hide_hero','field_66a2380fcda39'),(306271,42468,'hero_title',''),(306272,42468,'_hero_title','field_617571fe285e8'),(306273,42468,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(306274,42468,'_hero_text','field_6175723c285e9'),(306275,42468,'hero_actions','1'),(306276,42468,'_hero_actions','field_61757270285ea'),(306277,42468,'hero_style','default'),(306278,42468,'_hero_style','field_62051d9dc5324'),(306279,42468,'hero_image_pos_x','right'),(306280,42468,'_hero_image_pos_x','field_62ec3d05390bb'),(306281,42468,'hero_image_pos_y','top'),(306282,42468,'_hero_image_pos_y','field_62ec3d05390bc'),(306283,42468,'hero_image_pos',''),(306284,42468,'_hero_image_pos','field_62ec3d05390ba'),(306285,42468,'fft_hide_from_listings','0'),(306286,42468,'_fft_hide_from_listings','field_61f1320446ab2'),(306287,42468,'post_format','402'),(306288,42468,'_post_format','field_61756bfb51898'),(306289,42468,'post_author',''),(306290,42468,'_post_author','field_62ec389d22113'),(306291,42468,'post_reviewer',''),(306292,42468,'_post_reviewer','field_627140a2a9800'),(306293,42468,'post_table_of_contents','0'),(306294,42468,'_post_table_of_contents','field_65c503bc846a6'),(306295,42468,'blocks','a:23:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"accordions\";i:12;s:10:\"text_block\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:5:\"icons\";i:18;s:10:\"split_5050\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:10:\"text_block\";i:22;s:11:\"promo_panel\";}'),(306296,42468,'_blocks','field_6176696113096'),(306297,42468,'_thumbnail_id','41331'),(306298,42468,'__thumbnail_id','field_617570855ddaf'),(306299,42468,'blocks_0_acfe_flexible_toggle',''),(306300,42468,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(306301,42468,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(306302,42468,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(306303,42468,'blocks_0_options_theme','#ffffff'),(306304,42468,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(306305,42468,'blocks_0_options',''),(306306,42468,'_blocks_0_options','field_6177b758246ae'),(306307,42468,'blocks_0_link_stack_content_title',''),(306308,42468,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(306309,42468,'blocks_0_link_stack_content_heading','What is MSK?'),(306310,42468,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(306311,42468,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(306312,42468,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(306313,42468,'blocks_0_link_stack_content_actions_0_button',''),(306314,42468,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(306315,42468,'blocks_0_link_stack_content_actions','1'),(306316,42468,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(306317,42468,'blocks_0_link_stack_content',''),(306318,42468,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(306319,42468,'blocks_0_link_stack_0_label','1.'),(306320,42468,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(306321,42468,'blocks_0_link_stack_0_title','Overview'),(306322,42468,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(306323,42468,'blocks_0_link_stack_0_url','#overview'),(306324,42468,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(306325,42468,'blocks_0_link_stack_1_label','2.'),(306326,42468,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(306327,42468,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(306328,42468,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(306329,42468,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(306330,42468,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(306331,42468,'blocks_0_link_stack_2_label','3.'),(306332,42468,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(306333,42468,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(306334,42468,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(306335,42468,'blocks_0_link_stack_2_url','#who-should-study-msk'),(306336,42468,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(306337,42468,'blocks_0_link_stack_3_label','4.'),(306338,42468,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(306339,42468,'blocks_0_link_stack_3_title','Common MSK Conditions'),(306340,42468,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(306341,42468,'blocks_0_link_stack_3_url','#common-msk-conditions'),(306342,42468,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(306343,42468,'blocks_0_link_stack_4_label','5.'),(306344,42468,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(306345,42468,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(306346,42468,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(306347,42468,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(306348,42468,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(306349,42468,'blocks_0_link_stack_5_label','6.'),(306350,42468,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(306351,42468,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(306352,42468,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(306353,42468,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(306354,42468,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(306355,42468,'blocks_0_link_stack','6'),(306356,42468,'_blocks_0_link_stack','field_6177b7f600cff'),(306357,42468,'blocks_1_acfe_flexible_toggle',''),(306358,42468,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306359,42468,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(306360,42468,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306361,42468,'blocks_1_options_theme','#ffffff'),(306362,42468,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(306363,42468,'blocks_1_options_reverse','0'),(306364,42468,'_blocks_1_options_reverse','field_61768049bb8ac'),(306365,42468,'blocks_1_options',''),(306366,42468,'_blocks_1_options','field_617682517c334'),(306367,42468,'blocks_1_split_5050_image','40615'),(306368,42468,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(306369,42468,'blocks_1_split_5050_video',''),(306370,42468,'_blocks_1_split_5050_video','field_6239f3160848a'),(306371,42468,'blocks_1_split_5050_content_title',''),(306372,42468,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(306373,42468,'blocks_1_split_5050_content_heading','Overview'),(306374,42468,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(306375,42468,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(306376,42468,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(306377,42468,'blocks_1_split_5050_content_actions',''),(306378,42468,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(306379,42468,'blocks_1_split_5050_content',''),(306380,42468,'_blocks_1_split_5050_content','field_61767afceb8ba'),(306381,42468,'blocks_2_acfe_flexible_toggle',''),(306382,42468,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(306383,42468,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(306384,42468,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(306385,42468,'blocks_2_options_theme','#f5f5f5'),(306386,42468,'_blocks_2_options_theme','field_6176830e2ad17'),(306387,42468,'blocks_2_options',''),(306388,42468,'_blocks_2_options','field_6176830e2ad16'),(306389,42468,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(306390,42468,'_blocks_2_text_block_heading','field_617669d413097'),(306391,42468,'blocks_2_text_block_content',''),(306392,42468,'_blocks_2_text_block_content','field_617669ec13098'),(306393,42468,'blocks_3_acfe_flexible_toggle',''),(306394,42468,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306395,42468,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(306396,42468,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306397,42468,'blocks_3_options_theme','#f5f5f5'),(306398,42468,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(306399,42468,'blocks_3_options_reverse','1'),(306400,42468,'_blocks_3_options_reverse','field_61768049bb8ac'),(306401,42468,'blocks_3_options',''),(306402,42468,'_blocks_3_options','field_617682517c334'),(306403,42468,'blocks_3_split_5050_image','40618'),(306404,42468,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(306405,42468,'blocks_3_split_5050_video',''),(306406,42468,'_blocks_3_split_5050_video','field_6239f3160848a'),(306407,42468,'blocks_3_split_5050_content_title',''),(306408,42468,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(306409,42468,'blocks_3_split_5050_content_heading',''),(306410,42468,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(306411,42468,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(306412,42468,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(306413,42468,'blocks_3_split_5050_content_actions',''),(306414,42468,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(306415,42468,'blocks_3_split_5050_content',''),(306416,42468,'_blocks_3_split_5050_content','field_61767afceb8ba'),(306417,42468,'blocks_4_acfe_flexible_toggle','1'),(306418,42468,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306419,42468,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(306420,42468,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306421,42468,'blocks_4_options_theme','#f5f5f5'),(306422,42468,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(306423,42468,'blocks_4_options_reverse','1'),(306424,42468,'_blocks_4_options_reverse','field_61768049bb8ac'),(306425,42468,'blocks_4_options',''),(306426,42468,'_blocks_4_options','field_617682517c334'),(306427,42468,'blocks_4_split_5050_image','41330'),(306428,42468,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(306429,42468,'blocks_4_split_5050_video',''),(306430,42468,'_blocks_4_split_5050_video','field_6239f3160848a'),(306431,42468,'blocks_4_split_5050_content_title',''),(306432,42468,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(306433,42468,'blocks_4_split_5050_content_heading',''),(306434,42468,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(306435,42468,'blocks_4_split_5050_content_text',''),(306436,42468,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(306437,42468,'blocks_4_split_5050_content_actions',''),(306438,42468,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(306439,42468,'blocks_4_split_5050_content',''),(306440,42468,'_blocks_4_split_5050_content','field_61767afceb8ba'),(306441,42468,'blocks_5_acfe_flexible_toggle',''),(306442,42468,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(306443,42468,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(306444,42468,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(306445,42468,'blocks_5_options_theme','#ffffff'),(306446,42468,'_blocks_5_options_theme','field_6176830e2ad17'),(306447,42468,'blocks_5_options',''),(306448,42468,'_blocks_5_options','field_6176830e2ad16'),(306449,42468,'blocks_5_text_block_heading','Who Should Study MSK?'),(306450,42468,'_blocks_5_text_block_heading','field_617669d413097'),(306451,42468,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(306452,42468,'_blocks_5_text_block_content','field_617669ec13098'),(306453,42468,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(306454,42468,'_hero_actions_0_button','field_61757281285eb'),(306455,42468,'blocks_7_acfe_flexible_toggle',''),(306456,42468,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306457,42468,'blocks_7_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(306458,42468,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306459,42468,'blocks_7_options_theme','#ffffff'),(306460,42468,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(306461,42468,'blocks_7_options_reverse','0'),(306462,42468,'_blocks_7_options_reverse','field_61768049bb8ac'),(306463,42468,'blocks_7_options',''),(306464,42468,'_blocks_7_options','field_617682517c334'),(306465,42468,'blocks_7_split_5050_image','41505'),(306466,42468,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(306467,42468,'blocks_7_split_5050_video',''),(306468,42468,'_blocks_7_split_5050_video','field_6239f3160848a'),(306469,42468,'blocks_7_split_5050_content_title','Current Practitioners'),(306470,42468,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(306471,42468,'blocks_7_split_5050_content_heading',''),(306472,42468,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(306473,42468,'blocks_7_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(306474,42468,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(306475,42468,'blocks_7_split_5050_content_actions',''),(306476,42468,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(306477,42468,'blocks_7_split_5050_content',''),(306478,42468,'_blocks_7_split_5050_content','field_61767afceb8ba'),(306479,42468,'blocks_8_acfe_flexible_toggle',''),(306480,42468,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306481,42468,'blocks_8_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(306482,42468,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306483,42468,'blocks_8_options_theme','#ffffff'),(306484,42468,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(306485,42468,'blocks_8_options_reverse','0'),(306486,42468,'_blocks_8_options_reverse','field_61768049bb8ac'),(306487,42468,'blocks_8_options',''),(306488,42468,'_blocks_8_options','field_617682517c334'),(306489,42468,'blocks_8_split_5050_image','41539'),(306490,42468,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(306491,42468,'blocks_8_split_5050_video',''),(306492,42468,'_blocks_8_split_5050_video','field_6239f3160848a'),(306493,42468,'blocks_8_split_5050_content_title','Fitness and Sports Professionals'),(306494,42468,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(306495,42468,'blocks_8_split_5050_content_heading',''),(306496,42468,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(306497,42468,'blocks_8_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(306498,42468,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(306499,42468,'blocks_8_split_5050_content_actions',''),(306500,42468,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(306501,42468,'blocks_8_split_5050_content',''),(306502,42468,'_blocks_8_split_5050_content','field_61767afceb8ba'),(306503,42468,'blocks_9_acfe_flexible_toggle',''),(306504,42468,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306505,42468,'blocks_9_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(306506,42468,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306507,42468,'blocks_9_options_theme','#ffffff'),(306508,42468,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(306509,42468,'blocks_9_options_reverse','0'),(306510,42468,'_blocks_9_options_reverse','field_61768049bb8ac'),(306511,42468,'blocks_9_options',''),(306512,42468,'_blocks_9_options','field_617682517c334'),(306513,42468,'blocks_9_split_5050_image','41502'),(306514,42468,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(306515,42468,'blocks_9_split_5050_video',''),(306516,42468,'_blocks_9_split_5050_video','field_6239f3160848a'),(306517,42468,'blocks_9_split_5050_content_title','Educators and Researchers'),(306518,42468,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(306519,42468,'blocks_9_split_5050_content_heading',''),(306520,42468,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(306521,42468,'blocks_9_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(306522,42468,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(306523,42468,'blocks_9_split_5050_content_actions',''),(306524,42468,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(306525,42468,'blocks_9_split_5050_content',''),(306526,42468,'_blocks_9_split_5050_content','field_61767afceb8ba'),(306527,42468,'blocks_13_acfe_flexible_toggle',''),(306528,42468,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306529,42468,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(306530,42468,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306531,42468,'blocks_13_options_theme','#ffffff'),(306532,42468,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(306533,42468,'blocks_13_options_reverse','1'),(306534,42468,'_blocks_13_options_reverse','field_61768049bb8ac'),(306535,42468,'blocks_13_options',''),(306536,42468,'_blocks_13_options','field_617682517c334'),(306537,42468,'blocks_13_split_5050_image','41498'),(306538,42468,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(306539,42468,'blocks_13_split_5050_video',''),(306540,42468,'_blocks_13_split_5050_video','field_6239f3160848a'),(306541,42468,'blocks_13_split_5050_content_title',''),(306542,42468,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(306543,42468,'blocks_13_split_5050_content_heading',''),(306544,42468,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(306545,42468,'blocks_13_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(306546,42468,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(306547,42468,'blocks_13_split_5050_content_actions',''),(306548,42468,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(306549,42468,'blocks_13_split_5050_content',''),(306550,42468,'_blocks_13_split_5050_content','field_61767afceb8ba'),(306551,42468,'blocks_14_acfe_flexible_toggle',''),(306552,42468,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306553,42468,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(306554,42468,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306555,42468,'blocks_14_options_theme','#ffffff'),(306556,42468,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(306557,42468,'blocks_14_options_reverse','1'),(306558,42468,'_blocks_14_options_reverse','field_61768049bb8ac'),(306559,42468,'blocks_14_options',''),(306560,42468,'_blocks_14_options','field_617682517c334'),(306561,42468,'blocks_14_split_5050_image','40387'),(306562,42468,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(306563,42468,'blocks_14_split_5050_video',''),(306564,42468,'_blocks_14_split_5050_video','field_6239f3160848a'),(306565,42468,'blocks_14_split_5050_content_title',''),(306566,42468,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(306567,42468,'blocks_14_split_5050_content_heading',''),(306568,42468,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(306569,42468,'blocks_14_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(306570,42468,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(306571,42468,'blocks_14_split_5050_content_actions',''),(306572,42468,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(306573,42468,'blocks_14_split_5050_content',''),(306574,42468,'_blocks_14_split_5050_content','field_61767afceb8ba'),(306575,42468,'blocks_19_acfe_flexible_toggle',''),(306576,42468,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(306577,42468,'blocks_19_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(306578,42468,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(306579,42468,'blocks_19_options_theme','#ffffff'),(306580,42468,'_blocks_19_options_theme','field_6176830e2ad17'),(306581,42468,'blocks_19_options',''),(306582,42468,'_blocks_19_options','field_6176830e2ad16'),(306583,42468,'blocks_19_text_block_heading','The Role of MSK Education in Workplace Health'),(306584,42468,'_blocks_19_text_block_heading','field_617669d413097'),(306585,42468,'blocks_19_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(306586,42468,'_blocks_19_text_block_content','field_617669ec13098'),(306587,42468,'blocks_20_acfe_flexible_toggle',''),(306588,42468,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(306589,42468,'blocks_20_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(306590,42468,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(306591,42468,'blocks_20_options_theme','#ffffff'),(306592,42468,'_blocks_20_options_theme','field_6176830e2ad17'),(306593,42468,'blocks_20_options',''),(306594,42468,'_blocks_20_options','field_6176830e2ad16'),(306595,42468,'blocks_20_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(306596,42468,'_blocks_20_text_block_heading','field_617669d413097'),(306597,42468,'blocks_20_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(306598,42468,'_blocks_20_text_block_content','field_617669ec13098'),(306599,42468,'blocks_6_acfe_flexible_toggle',''),(306600,42468,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306601,42468,'blocks_6_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(306602,42468,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306603,42468,'blocks_6_options_theme','#ffffff'),(306604,42468,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(306605,42468,'blocks_6_options_reverse','0'),(306606,42468,'_blocks_6_options_reverse','field_61768049bb8ac'),(306607,42468,'blocks_6_options',''),(306608,42468,'_blocks_6_options','field_617682517c334'),(306609,42468,'blocks_6_split_5050_image','41542'),(306610,42468,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(306611,42468,'blocks_6_split_5050_video',''),(306612,42468,'_blocks_6_split_5050_video','field_6239f3160848a'),(306613,42468,'blocks_6_split_5050_content_title','Aspiring Healthcare Professionals'),(306614,42468,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(306615,42468,'blocks_6_split_5050_content_heading',''),(306616,42468,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(306617,42468,'blocks_6_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(306618,42468,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(306619,42468,'blocks_6_split_5050_content_actions',''),(306620,42468,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(306621,42468,'blocks_6_split_5050_content',''),(306622,42468,'_blocks_6_split_5050_content','field_61767afceb8ba'),(306623,42468,'blocks_10_acfe_flexible_toggle',''),(306624,42468,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306625,42468,'blocks_10_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(306626,42468,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306627,42468,'blocks_10_options_theme','#ffffff'),(306628,42468,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(306629,42468,'blocks_10_options_reverse','0'),(306630,42468,'_blocks_10_options_reverse','field_61768049bb8ac'),(306631,42468,'blocks_10_options',''),(306632,42468,'_blocks_10_options','field_617682517c334'),(306633,42468,'blocks_10_split_5050_image','41506'),(306634,42468,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(306635,42468,'blocks_10_split_5050_video',''),(306636,42468,'_blocks_10_split_5050_video','field_6239f3160848a'),(306637,42468,'blocks_10_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(306638,42468,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(306639,42468,'blocks_10_split_5050_content_heading',''),(306640,42468,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(306641,42468,'blocks_10_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(306642,42468,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(306643,42468,'blocks_10_split_5050_content_actions',''),(306644,42468,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(306645,42468,'blocks_10_split_5050_content',''),(306646,42468,'_blocks_10_split_5050_content','field_61767afceb8ba'),(306647,42468,'blocks_11_acfe_flexible_toggle',''),(306648,42468,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(306649,42468,'blocks_11_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(306650,42468,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(306651,42468,'blocks_11_options_theme','#f5f5f5'),(306652,42468,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(306653,42468,'blocks_11_options_state','0'),(306654,42468,'_blocks_11_options_state','field_6239fcb7508c5'),(306655,42468,'blocks_11_options',''),(306656,42468,'_blocks_11_options','field_6177e2991ac44'),(306657,42468,'blocks_11_content_title','Common MSK Conditions'),(306658,42468,'_blocks_11_content_title','field_64d237e8bb1e2'),(306659,42468,'blocks_11_content_heading','Common MSK Conditions'),(306660,42468,'_blocks_11_content_heading','field_64d237e8bb1e3'),(306661,42468,'blocks_11_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(306662,42468,'_blocks_11_content_text','field_64d237e8bb1e4'),(306663,42468,'blocks_11_content_actions',''),(306664,42468,'_blocks_11_content_actions','field_64d237e8bb1e5'),(306665,42468,'blocks_11_content_align','left'),(306666,42468,'_blocks_11_content_align','field_64d2443e6b6aa'),(306667,42468,'blocks_11_content',''),(306668,42468,'_blocks_11_content','field_64d237e8bb1e1'),(306669,42468,'blocks_11_accordion_content','custom'),(306670,42468,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(306671,42468,'blocks_11_accordion_items_0_title','Osteoarthritis'),(306672,42468,'_blocks_11_accordion_items_0_title','field_6177e2991ac4d'),(306673,42468,'blocks_11_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(306674,42468,'_blocks_11_accordion_items_0_text','field_6177e2991ac4e'),(306675,42468,'blocks_11_accordion_items_1_title','Rheumatoid Arthritis'),(306676,42468,'_blocks_11_accordion_items_1_title','field_6177e2991ac4d'),(306677,42468,'blocks_11_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(306678,42468,'_blocks_11_accordion_items_1_text','field_6177e2991ac4e'),(306679,42468,'blocks_11_accordion_items_2_title','Back Pain'),(306680,42468,'_blocks_11_accordion_items_2_title','field_6177e2991ac4d'),(306681,42468,'blocks_11_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(306682,42468,'_blocks_11_accordion_items_2_text','field_6177e2991ac4e'),(306683,42468,'blocks_11_accordion_items_3_title','Osteoporosis'),(306684,42468,'_blocks_11_accordion_items_3_title','field_6177e2991ac4d'),(306685,42468,'blocks_11_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(306686,42468,'_blocks_11_accordion_items_3_text','field_6177e2991ac4e'),(306687,42468,'blocks_11_accordion_items_4_title','Tendinitis'),(306688,42468,'_blocks_11_accordion_items_4_title','field_6177e2991ac4d'),(306689,42468,'blocks_11_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(306690,42468,'_blocks_11_accordion_items_4_text','field_6177e2991ac4e'),(306691,42468,'blocks_11_accordion_items_5_title','Carpal Tunnel Syndrome'),(306692,42468,'_blocks_11_accordion_items_5_title','field_6177e2991ac4d'),(306693,42468,'blocks_11_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(306694,42468,'_blocks_11_accordion_items_5_text','field_6177e2991ac4e'),(306695,42468,'blocks_11_accordion_items_6_title','Fibromyalgia'),(306696,42468,'_blocks_11_accordion_items_6_title','field_6177e2991ac4d'),(306697,42468,'blocks_11_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(306698,42468,'_blocks_11_accordion_items_6_text','field_6177e2991ac4e'),(306699,42468,'blocks_11_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(306700,42468,'_blocks_11_accordion_items_7_title','field_6177e2991ac4d'),(306701,42468,'blocks_11_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(306702,42468,'_blocks_11_accordion_items_7_text','field_6177e2991ac4e'),(306703,42468,'blocks_11_accordion_items','8'),(306704,42468,'_blocks_11_accordion_items','field_6177e2991ac4c'),(306705,42468,'blocks_11_actions',''),(306706,42468,'_blocks_11_actions','field_61a746a817f7a'),(306707,42468,'blocks_12_acfe_flexible_toggle',''),(306708,42468,'_blocks_12_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(306709,42468,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(306710,42468,'_blocks_12_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(306711,42468,'blocks_12_options_theme','#ffffff'),(306712,42468,'_blocks_12_options_theme','field_6176830e2ad17'),(306713,42468,'blocks_12_options',''),(306714,42468,'_blocks_12_options','field_6176830e2ad16'),(306715,42468,'blocks_12_text_block_heading','The Importance of MSK Education'),(306716,42468,'_blocks_12_text_block_heading','field_617669d413097'),(306717,42468,'blocks_12_text_block_content',''),(306718,42468,'_blocks_12_text_block_content','field_617669ec13098'),(306719,42468,'blocks_15_acfe_flexible_toggle',''),(306720,42468,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306721,42468,'blocks_15_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(306722,42468,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306723,42468,'blocks_15_options_theme','#ffffff'),(306724,42468,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(306725,42468,'blocks_15_options_reverse','1'),(306726,42468,'_blocks_15_options_reverse','field_61768049bb8ac'),(306727,42468,'blocks_15_options',''),(306728,42468,'_blocks_15_options','field_617682517c334'),(306729,42468,'blocks_15_split_5050_image','18856'),(306730,42468,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(306731,42468,'blocks_15_split_5050_video',''),(306732,42468,'_blocks_15_split_5050_video','field_6239f3160848a'),(306733,42468,'blocks_15_split_5050_content_title',''),(306734,42468,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(306735,42468,'blocks_15_split_5050_content_heading',''),(306736,42468,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(306737,42468,'blocks_15_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(306738,42468,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(306739,42468,'blocks_15_split_5050_content_actions',''),(306740,42468,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(306741,42468,'blocks_15_split_5050_content',''),(306742,42468,'_blocks_15_split_5050_content','field_61767afceb8ba'),(306743,42468,'blocks_16_acfe_flexible_toggle',''),(306744,42468,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(306745,42468,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(306746,42468,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(306747,42468,'blocks_16_options_theme','#b61234'),(306748,42468,'_blocks_16_options_theme','field_6176830e2ad17'),(306749,42468,'blocks_16_options',''),(306750,42468,'_blocks_16_options','field_6176830e2ad16'),(306751,42468,'blocks_16_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(306752,42468,'_blocks_16_text_block_heading','field_617669d413097'),(306753,42468,'blocks_16_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(306754,42468,'_blocks_16_text_block_content','field_617669ec13098'),(306755,42468,'blocks_17_acfe_flexible_toggle',''),(306756,42468,'_blocks_17_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(306757,42468,'blocks_17_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(306758,42468,'_blocks_17_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(306759,42468,'blocks_17_options_theme','#b61234'),(306760,42468,'_blocks_17_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(306761,42468,'blocks_17_options_format','row'),(306762,42468,'_blocks_17_options_format','field_64bfde9a90690'),(306763,42468,'blocks_17_options',''),(306764,42468,'_blocks_17_options','field_64bfdd9b90684'),(306765,42468,'blocks_17_icon_row_items_0_icon','pass-rate.svg'),(306766,42468,'_blocks_17_icon_row_items_0_icon','field_64bfdd9b9068d'),(306767,42468,'blocks_17_icon_row_items_0_label','More Accurate Assessments'),(306768,42468,'_blocks_17_icon_row_items_0_label','field_64bfdd9c9068e'),(306769,42468,'blocks_17_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(306770,42468,'_blocks_17_icon_row_items_0_text','field_64bfdd9c9068f'),(306771,42468,'blocks_17_icon_row_items_1_icon','exceptional-support.svg'),(306772,42468,'_blocks_17_icon_row_items_1_icon','field_64bfdd9b9068d'),(306773,42468,'blocks_17_icon_row_items_1_label','Personalised Movement Strategies'),(306774,42468,'_blocks_17_icon_row_items_1_label','field_64bfdd9c9068e'),(306775,42468,'blocks_17_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(306776,42468,'_blocks_17_icon_row_items_1_text','field_64bfdd9c9068f'),(306777,42468,'blocks_17_icon_row_items_2_icon','lifetime-course-access.svg'),(306778,42468,'_blocks_17_icon_row_items_2_icon','field_64bfdd9b9068d'),(306779,42468,'blocks_17_icon_row_items_2_label','Injury Prevention and Longevity'),(306780,42468,'_blocks_17_icon_row_items_2_label','field_64bfdd9c9068e'),(306781,42468,'blocks_17_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(306782,42468,'_blocks_17_icon_row_items_2_text','field_64bfdd9c9068f'),(306783,42468,'blocks_17_icon_row_items_3_icon','recognised.svg'),(306784,42468,'_blocks_17_icon_row_items_3_icon','field_64bfdd9b9068d'),(306785,42468,'blocks_17_icon_row_items_3_label','Optimised Performance'),(306786,42468,'_blocks_17_icon_row_items_3_label','field_64bfdd9c9068e'),(306787,42468,'blocks_17_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(306788,42468,'_blocks_17_icon_row_items_3_text','field_64bfdd9c9068f'),(306789,42468,'blocks_17_icon_row_items','4'),(306790,42468,'_blocks_17_icon_row_items','field_64bfdd9b9068c'),(306791,42468,'blocks_18_acfe_flexible_toggle',''),(306792,42468,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306793,42468,'blocks_18_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(306794,42468,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306795,42468,'blocks_18_options_theme','#ffffff'),(306796,42468,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(306797,42468,'blocks_18_options_reverse','0'),(306798,42468,'_blocks_18_options_reverse','field_61768049bb8ac'),(306799,42468,'blocks_18_options',''),(306800,42468,'_blocks_18_options','field_617682517c334'),(306801,42468,'blocks_18_split_5050_image','41501'),(306802,42468,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(306803,42468,'blocks_18_split_5050_video',''),(306804,42468,'_blocks_18_split_5050_video','field_6239f3160848a'),(306805,42468,'blocks_18_split_5050_content_title',''),(306806,42468,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(306807,42468,'blocks_18_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(306808,42468,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(306809,42468,'blocks_18_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(306810,42468,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(306811,42468,'blocks_18_split_5050_content_actions',''),(306812,42468,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(306813,42468,'blocks_18_split_5050_content',''),(306814,42468,'_blocks_18_split_5050_content','field_61767afceb8ba'),(306815,42468,'blocks_21_acfe_flexible_toggle',''),(306816,42468,'_blocks_21_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(306817,42468,'blocks_21_acfe_flexible_layout_title','Conclusion'),(306818,42468,'_blocks_21_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(306819,42468,'blocks_21_options_theme','#f5f5f5'),(306820,42468,'_blocks_21_options_theme','field_6176830e2ad17'),(306821,42468,'blocks_21_options',''),(306822,42468,'_blocks_21_options','field_6176830e2ad16'),(306823,42468,'blocks_21_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(306824,42468,'_blocks_21_text_block_heading','field_617669d413097'),(306825,42468,'blocks_21_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(306826,42468,'_blocks_21_text_block_content','field_617669ec13098'),(306827,42468,'blocks_22_acfe_flexible_toggle',''),(306828,42468,'_blocks_22_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(306829,42468,'blocks_22_acfe_flexible_layout_title','Promo Panel'),(306830,42468,'_blocks_22_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(306831,42468,'blocks_22_options_alignment','center'),(306832,42468,'_blocks_22_options_alignment','field_61769449f5490'),(306833,42468,'blocks_22_options',''),(306834,42468,'_blocks_22_options','field_617693e1428f0'),(306835,42468,'blocks_22_promo_panel_image','40342'),(306836,42468,'_blocks_22_promo_panel_image','field_617693e1428f3'),(306837,42468,'blocks_22_promo_panel_content_heading','Want to Get Started?'),(306838,42468,'_blocks_22_promo_panel_content_heading','field_617693e1428f6'),(306839,42468,'blocks_22_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(306840,42468,'_blocks_22_promo_panel_content_text','field_617693e1428f7'),(306841,42468,'blocks_22_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(306842,42468,'_blocks_22_promo_panel_content_actions_0_button','field_617693e1428f9'),(306843,42468,'blocks_22_promo_panel_content_actions','1'),(306844,42468,'_blocks_22_promo_panel_content_actions','field_617693e1428f8'),(306845,42468,'blocks_22_promo_panel_content',''),(306846,42468,'_blocks_22_promo_panel_content','field_617693e1428f4'),(306847,42469,'hide_hero','0'),(306848,42469,'_hide_hero','field_66a2380fcda39'),(306849,42469,'hero_title',''),(306850,42469,'_hero_title','field_617571fe285e8'),(306851,42469,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(306852,42469,'_hero_text','field_6175723c285e9'),(306853,42469,'hero_actions','1'),(306854,42469,'_hero_actions','field_61757270285ea'),(306855,42469,'hero_style','default'),(306856,42469,'_hero_style','field_62051d9dc5324'),(306857,42469,'hero_image_pos_x','right'),(306858,42469,'_hero_image_pos_x','field_62ec3d05390bb'),(306859,42469,'hero_image_pos_y','top'),(306860,42469,'_hero_image_pos_y','field_62ec3d05390bc'),(306861,42469,'hero_image_pos',''),(306862,42469,'_hero_image_pos','field_62ec3d05390ba'),(306863,42469,'fft_hide_from_listings','0'),(306864,42469,'_fft_hide_from_listings','field_61f1320446ab2'),(306865,42469,'post_format','402'),(306866,42469,'_post_format','field_61756bfb51898'),(306867,42469,'post_author',''),(306868,42469,'_post_author','field_62ec389d22113'),(306869,42469,'post_reviewer',''),(306870,42469,'_post_reviewer','field_627140a2a9800'),(306871,42469,'post_table_of_contents','0'),(306872,42469,'_post_table_of_contents','field_65c503bc846a6'),(306873,42469,'blocks','a:23:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"accordions\";i:12;s:10:\"text_block\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:5:\"icons\";i:18;s:10:\"split_5050\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:10:\"text_block\";i:22;s:11:\"promo_panel\";}'),(306874,42469,'_blocks','field_6176696113096'),(306875,42469,'_thumbnail_id','41331'),(306876,42469,'__thumbnail_id','field_617570855ddaf'),(306877,42469,'blocks_0_acfe_flexible_toggle',''),(306878,42469,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(306879,42469,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(306880,42469,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(306881,42469,'blocks_0_options_theme','#ffffff'),(306882,42469,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(306883,42469,'blocks_0_options',''),(306884,42469,'_blocks_0_options','field_6177b758246ae'),(306885,42469,'blocks_0_link_stack_content_title',''),(306886,42469,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(306887,42469,'blocks_0_link_stack_content_heading','What is MSK?'),(306888,42469,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(306889,42469,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(306890,42469,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(306891,42469,'blocks_0_link_stack_content_actions_0_button',''),(306892,42469,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(306893,42469,'blocks_0_link_stack_content_actions','1'),(306894,42469,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(306895,42469,'blocks_0_link_stack_content',''),(306896,42469,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(306897,42469,'blocks_0_link_stack_0_label','1.'),(306898,42469,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(306899,42469,'blocks_0_link_stack_0_title','Overview'),(306900,42469,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(306901,42469,'blocks_0_link_stack_0_url','#overview'),(306902,42469,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(306903,42469,'blocks_0_link_stack_1_label','2.'),(306904,42469,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(306905,42469,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(306906,42469,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(306907,42469,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(306908,42469,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(306909,42469,'blocks_0_link_stack_2_label','3.'),(306910,42469,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(306911,42469,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(306912,42469,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(306913,42469,'blocks_0_link_stack_2_url','#who-should-study-msk'),(306914,42469,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(306915,42469,'blocks_0_link_stack_3_label','4.'),(306916,42469,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(306917,42469,'blocks_0_link_stack_3_title','Common MSK Conditions'),(306918,42469,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(306919,42469,'blocks_0_link_stack_3_url','#common-msk-conditions'),(306920,42469,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(306921,42469,'blocks_0_link_stack_4_label','5.'),(306922,42469,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(306923,42469,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(306924,42469,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(306925,42469,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(306926,42469,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(306927,42469,'blocks_0_link_stack_5_label','6.'),(306928,42469,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(306929,42469,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(306930,42469,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(306931,42469,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(306932,42469,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(306933,42469,'blocks_0_link_stack','6'),(306934,42469,'_blocks_0_link_stack','field_6177b7f600cff'),(306935,42469,'blocks_1_acfe_flexible_toggle',''),(306936,42469,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306937,42469,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(306938,42469,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306939,42469,'blocks_1_options_theme','#ffffff'),(306940,42469,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(306941,42469,'blocks_1_options_reverse','0'),(306942,42469,'_blocks_1_options_reverse','field_61768049bb8ac'),(306943,42469,'blocks_1_options',''),(306944,42469,'_blocks_1_options','field_617682517c334'),(306945,42469,'blocks_1_split_5050_image','40615'),(306946,42469,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(306947,42469,'blocks_1_split_5050_video',''),(306948,42469,'_blocks_1_split_5050_video','field_6239f3160848a'),(306949,42469,'blocks_1_split_5050_content_title',''),(306950,42469,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(306951,42469,'blocks_1_split_5050_content_heading','Overview'),(306952,42469,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(306953,42469,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(306954,42469,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(306955,42469,'blocks_1_split_5050_content_actions',''),(306956,42469,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(306957,42469,'blocks_1_split_5050_content',''),(306958,42469,'_blocks_1_split_5050_content','field_61767afceb8ba'),(306959,42469,'blocks_2_acfe_flexible_toggle',''),(306960,42469,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(306961,42469,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(306962,42469,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(306963,42469,'blocks_2_options_theme','#f5f5f5'),(306964,42469,'_blocks_2_options_theme','field_6176830e2ad17'),(306965,42469,'blocks_2_options',''),(306966,42469,'_blocks_2_options','field_6176830e2ad16'),(306967,42469,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(306968,42469,'_blocks_2_text_block_heading','field_617669d413097'),(306969,42469,'blocks_2_text_block_content',''),(306970,42469,'_blocks_2_text_block_content','field_617669ec13098'),(306971,42469,'blocks_3_acfe_flexible_toggle',''),(306972,42469,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306973,42469,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(306974,42469,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306975,42469,'blocks_3_options_theme','#f5f5f5'),(306976,42469,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(306977,42469,'blocks_3_options_reverse','1'),(306978,42469,'_blocks_3_options_reverse','field_61768049bb8ac'),(306979,42469,'blocks_3_options',''),(306980,42469,'_blocks_3_options','field_617682517c334'),(306981,42469,'blocks_3_split_5050_image','40618'),(306982,42469,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(306983,42469,'blocks_3_split_5050_video',''),(306984,42469,'_blocks_3_split_5050_video','field_6239f3160848a'),(306985,42469,'blocks_3_split_5050_content_title',''),(306986,42469,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(306987,42469,'blocks_3_split_5050_content_heading',''),(306988,42469,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(306989,42469,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(306990,42469,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(306991,42469,'blocks_3_split_5050_content_actions',''),(306992,42469,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(306993,42469,'blocks_3_split_5050_content',''),(306994,42469,'_blocks_3_split_5050_content','field_61767afceb8ba'),(306995,42469,'blocks_4_acfe_flexible_toggle','1'),(306996,42469,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(306997,42469,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(306998,42469,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(306999,42469,'blocks_4_options_theme','#f5f5f5'),(307000,42469,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(307001,42469,'blocks_4_options_reverse','1'),(307002,42469,'_blocks_4_options_reverse','field_61768049bb8ac'),(307003,42469,'blocks_4_options',''),(307004,42469,'_blocks_4_options','field_617682517c334'),(307005,42469,'blocks_4_split_5050_image','41330'),(307006,42469,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(307007,42469,'blocks_4_split_5050_video',''),(307008,42469,'_blocks_4_split_5050_video','field_6239f3160848a'),(307009,42469,'blocks_4_split_5050_content_title',''),(307010,42469,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(307011,42469,'blocks_4_split_5050_content_heading',''),(307012,42469,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(307013,42469,'blocks_4_split_5050_content_text',''),(307014,42469,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(307015,42469,'blocks_4_split_5050_content_actions',''),(307016,42469,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(307017,42469,'blocks_4_split_5050_content',''),(307018,42469,'_blocks_4_split_5050_content','field_61767afceb8ba'),(307019,42469,'blocks_5_acfe_flexible_toggle',''),(307020,42469,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(307021,42469,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(307022,42469,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(307023,42469,'blocks_5_options_theme','#ffffff'),(307024,42469,'_blocks_5_options_theme','field_6176830e2ad17'),(307025,42469,'blocks_5_options',''),(307026,42469,'_blocks_5_options','field_6176830e2ad16'),(307027,42469,'blocks_5_text_block_heading','Who Should Study MSK?'),(307028,42469,'_blocks_5_text_block_heading','field_617669d413097'),(307029,42469,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(307030,42469,'_blocks_5_text_block_content','field_617669ec13098'),(307031,42469,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(307032,42469,'_hero_actions_0_button','field_61757281285eb'),(307033,42469,'blocks_7_acfe_flexible_toggle',''),(307034,42469,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307035,42469,'blocks_7_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(307036,42469,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307037,42469,'blocks_7_options_theme','#ffffff'),(307038,42469,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(307039,42469,'blocks_7_options_reverse','0'),(307040,42469,'_blocks_7_options_reverse','field_61768049bb8ac'),(307041,42469,'blocks_7_options',''),(307042,42469,'_blocks_7_options','field_617682517c334'),(307043,42469,'blocks_7_split_5050_image','41505'),(307044,42469,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(307045,42469,'blocks_7_split_5050_video',''),(307046,42469,'_blocks_7_split_5050_video','field_6239f3160848a'),(307047,42469,'blocks_7_split_5050_content_title','Current Practitioners'),(307048,42469,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(307049,42469,'blocks_7_split_5050_content_heading',''),(307050,42469,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(307051,42469,'blocks_7_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(307052,42469,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(307053,42469,'blocks_7_split_5050_content_actions',''),(307054,42469,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(307055,42469,'blocks_7_split_5050_content',''),(307056,42469,'_blocks_7_split_5050_content','field_61767afceb8ba'),(307057,42469,'blocks_8_acfe_flexible_toggle',''),(307058,42469,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307059,42469,'blocks_8_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(307060,42469,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307061,42469,'blocks_8_options_theme','#ffffff'),(307062,42469,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(307063,42469,'blocks_8_options_reverse','0'),(307064,42469,'_blocks_8_options_reverse','field_61768049bb8ac'),(307065,42469,'blocks_8_options',''),(307066,42469,'_blocks_8_options','field_617682517c334'),(307067,42469,'blocks_8_split_5050_image','41539'),(307068,42469,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(307069,42469,'blocks_8_split_5050_video',''),(307070,42469,'_blocks_8_split_5050_video','field_6239f3160848a'),(307071,42469,'blocks_8_split_5050_content_title','Fitness and Sports Professionals'),(307072,42469,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(307073,42469,'blocks_8_split_5050_content_heading',''),(307074,42469,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(307075,42469,'blocks_8_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(307076,42469,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(307077,42469,'blocks_8_split_5050_content_actions',''),(307078,42469,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(307079,42469,'blocks_8_split_5050_content',''),(307080,42469,'_blocks_8_split_5050_content','field_61767afceb8ba'),(307081,42469,'blocks_9_acfe_flexible_toggle',''),(307082,42469,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307083,42469,'blocks_9_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(307084,42469,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307085,42469,'blocks_9_options_theme','#ffffff'),(307086,42469,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(307087,42469,'blocks_9_options_reverse','0'),(307088,42469,'_blocks_9_options_reverse','field_61768049bb8ac'),(307089,42469,'blocks_9_options',''),(307090,42469,'_blocks_9_options','field_617682517c334'),(307091,42469,'blocks_9_split_5050_image','41502'),(307092,42469,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(307093,42469,'blocks_9_split_5050_video',''),(307094,42469,'_blocks_9_split_5050_video','field_6239f3160848a'),(307095,42469,'blocks_9_split_5050_content_title','Educators and Researchers'),(307096,42469,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(307097,42469,'blocks_9_split_5050_content_heading',''),(307098,42469,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(307099,42469,'blocks_9_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(307100,42469,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(307101,42469,'blocks_9_split_5050_content_actions',''),(307102,42469,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(307103,42469,'blocks_9_split_5050_content',''),(307104,42469,'_blocks_9_split_5050_content','field_61767afceb8ba'),(307105,42469,'blocks_13_acfe_flexible_toggle',''),(307106,42469,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307107,42469,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(307108,42469,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307109,42469,'blocks_13_options_theme','#ffffff'),(307110,42469,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(307111,42469,'blocks_13_options_reverse','1'),(307112,42469,'_blocks_13_options_reverse','field_61768049bb8ac'),(307113,42469,'blocks_13_options',''),(307114,42469,'_blocks_13_options','field_617682517c334'),(307115,42469,'blocks_13_split_5050_image','41498'),(307116,42469,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(307117,42469,'blocks_13_split_5050_video',''),(307118,42469,'_blocks_13_split_5050_video','field_6239f3160848a'),(307119,42469,'blocks_13_split_5050_content_title',''),(307120,42469,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(307121,42469,'blocks_13_split_5050_content_heading',''),(307122,42469,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(307123,42469,'blocks_13_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(307124,42469,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(307125,42469,'blocks_13_split_5050_content_actions',''),(307126,42469,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(307127,42469,'blocks_13_split_5050_content',''),(307128,42469,'_blocks_13_split_5050_content','field_61767afceb8ba'),(307129,42469,'blocks_14_acfe_flexible_toggle',''),(307130,42469,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307131,42469,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(307132,42469,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307133,42469,'blocks_14_options_theme','#ffffff'),(307134,42469,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(307135,42469,'blocks_14_options_reverse','1'),(307136,42469,'_blocks_14_options_reverse','field_61768049bb8ac'),(307137,42469,'blocks_14_options',''),(307138,42469,'_blocks_14_options','field_617682517c334'),(307139,42469,'blocks_14_split_5050_image','40387'),(307140,42469,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(307141,42469,'blocks_14_split_5050_video',''),(307142,42469,'_blocks_14_split_5050_video','field_6239f3160848a'),(307143,42469,'blocks_14_split_5050_content_title',''),(307144,42469,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(307145,42469,'blocks_14_split_5050_content_heading',''),(307146,42469,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(307147,42469,'blocks_14_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(307148,42469,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(307149,42469,'blocks_14_split_5050_content_actions',''),(307150,42469,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(307151,42469,'blocks_14_split_5050_content',''),(307152,42469,'_blocks_14_split_5050_content','field_61767afceb8ba'),(307153,42469,'blocks_19_acfe_flexible_toggle',''),(307154,42469,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(307155,42469,'blocks_19_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(307156,42469,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(307157,42469,'blocks_19_options_theme','#ffffff'),(307158,42469,'_blocks_19_options_theme','field_6176830e2ad17'),(307159,42469,'blocks_19_options',''),(307160,42469,'_blocks_19_options','field_6176830e2ad16'),(307161,42469,'blocks_19_text_block_heading','The Role of MSK Education in Workplace Health'),(307162,42469,'_blocks_19_text_block_heading','field_617669d413097'),(307163,42469,'blocks_19_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(307164,42469,'_blocks_19_text_block_content','field_617669ec13098'),(307165,42469,'blocks_20_acfe_flexible_toggle',''),(307166,42469,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(307167,42469,'blocks_20_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(307168,42469,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(307169,42469,'blocks_20_options_theme','#ffffff'),(307170,42469,'_blocks_20_options_theme','field_6176830e2ad17'),(307171,42469,'blocks_20_options',''),(307172,42469,'_blocks_20_options','field_6176830e2ad16'),(307173,42469,'blocks_20_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(307174,42469,'_blocks_20_text_block_heading','field_617669d413097'),(307175,42469,'blocks_20_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(307176,42469,'_blocks_20_text_block_content','field_617669ec13098'),(307177,42469,'blocks_6_acfe_flexible_toggle',''),(307178,42469,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307179,42469,'blocks_6_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(307180,42469,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307181,42469,'blocks_6_options_theme','#ffffff'),(307182,42469,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(307183,42469,'blocks_6_options_reverse','0'),(307184,42469,'_blocks_6_options_reverse','field_61768049bb8ac'),(307185,42469,'blocks_6_options',''),(307186,42469,'_blocks_6_options','field_617682517c334'),(307187,42469,'blocks_6_split_5050_image','41542'),(307188,42469,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(307189,42469,'blocks_6_split_5050_video',''),(307190,42469,'_blocks_6_split_5050_video','field_6239f3160848a'),(307191,42469,'blocks_6_split_5050_content_title','Aspiring Healthcare Professionals'),(307192,42469,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(307193,42469,'blocks_6_split_5050_content_heading',''),(307194,42469,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(307195,42469,'blocks_6_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(307196,42469,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(307197,42469,'blocks_6_split_5050_content_actions',''),(307198,42469,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(307199,42469,'blocks_6_split_5050_content',''),(307200,42469,'_blocks_6_split_5050_content','field_61767afceb8ba'),(307201,42469,'blocks_10_acfe_flexible_toggle',''),(307202,42469,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307203,42469,'blocks_10_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(307204,42469,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307205,42469,'blocks_10_options_theme','#ffffff'),(307206,42469,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(307207,42469,'blocks_10_options_reverse','0'),(307208,42469,'_blocks_10_options_reverse','field_61768049bb8ac'),(307209,42469,'blocks_10_options',''),(307210,42469,'_blocks_10_options','field_617682517c334'),(307211,42469,'blocks_10_split_5050_image','41506'),(307212,42469,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(307213,42469,'blocks_10_split_5050_video',''),(307214,42469,'_blocks_10_split_5050_video','field_6239f3160848a'),(307215,42469,'blocks_10_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(307216,42469,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(307217,42469,'blocks_10_split_5050_content_heading',''),(307218,42469,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(307219,42469,'blocks_10_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(307220,42469,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(307221,42469,'blocks_10_split_5050_content_actions',''),(307222,42469,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(307223,42469,'blocks_10_split_5050_content',''),(307224,42469,'_blocks_10_split_5050_content','field_61767afceb8ba'),(307225,42469,'blocks_11_acfe_flexible_toggle',''),(307226,42469,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(307227,42469,'blocks_11_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(307228,42469,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(307229,42469,'blocks_11_options_theme','#f5f5f5'),(307230,42469,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(307231,42469,'blocks_11_options_state','0'),(307232,42469,'_blocks_11_options_state','field_6239fcb7508c5'),(307233,42469,'blocks_11_options',''),(307234,42469,'_blocks_11_options','field_6177e2991ac44'),(307235,42469,'blocks_11_content_title','Common MSK Conditions'),(307236,42469,'_blocks_11_content_title','field_64d237e8bb1e2'),(307237,42469,'blocks_11_content_heading','Common MSK Conditions'),(307238,42469,'_blocks_11_content_heading','field_64d237e8bb1e3'),(307239,42469,'blocks_11_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(307240,42469,'_blocks_11_content_text','field_64d237e8bb1e4'),(307241,42469,'blocks_11_content_actions',''),(307242,42469,'_blocks_11_content_actions','field_64d237e8bb1e5'),(307243,42469,'blocks_11_content_align','left'),(307244,42469,'_blocks_11_content_align','field_64d2443e6b6aa'),(307245,42469,'blocks_11_content',''),(307246,42469,'_blocks_11_content','field_64d237e8bb1e1'),(307247,42469,'blocks_11_accordion_content','custom'),(307248,42469,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(307249,42469,'blocks_11_accordion_items_0_title','Osteoarthritis'),(307250,42469,'_blocks_11_accordion_items_0_title','field_6177e2991ac4d'),(307251,42469,'blocks_11_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(307252,42469,'_blocks_11_accordion_items_0_text','field_6177e2991ac4e'),(307253,42469,'blocks_11_accordion_items_1_title','Rheumatoid Arthritis'),(307254,42469,'_blocks_11_accordion_items_1_title','field_6177e2991ac4d'),(307255,42469,'blocks_11_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(307256,42469,'_blocks_11_accordion_items_1_text','field_6177e2991ac4e'),(307257,42469,'blocks_11_accordion_items_2_title','Back Pain'),(307258,42469,'_blocks_11_accordion_items_2_title','field_6177e2991ac4d'),(307259,42469,'blocks_11_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(307260,42469,'_blocks_11_accordion_items_2_text','field_6177e2991ac4e'),(307261,42469,'blocks_11_accordion_items_3_title','Osteoporosis'),(307262,42469,'_blocks_11_accordion_items_3_title','field_6177e2991ac4d'),(307263,42469,'blocks_11_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(307264,42469,'_blocks_11_accordion_items_3_text','field_6177e2991ac4e'),(307265,42469,'blocks_11_accordion_items_4_title','Tendinitis'),(307266,42469,'_blocks_11_accordion_items_4_title','field_6177e2991ac4d'),(307267,42469,'blocks_11_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(307268,42469,'_blocks_11_accordion_items_4_text','field_6177e2991ac4e'),(307269,42469,'blocks_11_accordion_items_5_title','Carpal Tunnel Syndrome'),(307270,42469,'_blocks_11_accordion_items_5_title','field_6177e2991ac4d'),(307271,42469,'blocks_11_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(307272,42469,'_blocks_11_accordion_items_5_text','field_6177e2991ac4e'),(307273,42469,'blocks_11_accordion_items_6_title','Fibromyalgia'),(307274,42469,'_blocks_11_accordion_items_6_title','field_6177e2991ac4d'),(307275,42469,'blocks_11_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(307276,42469,'_blocks_11_accordion_items_6_text','field_6177e2991ac4e'),(307277,42469,'blocks_11_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(307278,42469,'_blocks_11_accordion_items_7_title','field_6177e2991ac4d'),(307279,42469,'blocks_11_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(307280,42469,'_blocks_11_accordion_items_7_text','field_6177e2991ac4e'),(307281,42469,'blocks_11_accordion_items','8'),(307282,42469,'_blocks_11_accordion_items','field_6177e2991ac4c'),(307283,42469,'blocks_11_actions',''),(307284,42469,'_blocks_11_actions','field_61a746a817f7a'),(307285,42469,'blocks_12_acfe_flexible_toggle',''),(307286,42469,'_blocks_12_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(307287,42469,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(307288,42469,'_blocks_12_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(307289,42469,'blocks_12_options_theme','#ffffff'),(307290,42469,'_blocks_12_options_theme','field_6176830e2ad17'),(307291,42469,'blocks_12_options',''),(307292,42469,'_blocks_12_options','field_6176830e2ad16'),(307293,42469,'blocks_12_text_block_heading','The Importance of MSK Education'),(307294,42469,'_blocks_12_text_block_heading','field_617669d413097'),(307295,42469,'blocks_12_text_block_content',''),(307296,42469,'_blocks_12_text_block_content','field_617669ec13098'),(307297,42469,'blocks_15_acfe_flexible_toggle',''),(307298,42469,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307299,42469,'blocks_15_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(307300,42469,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307301,42469,'blocks_15_options_theme','#ffffff'),(307302,42469,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(307303,42469,'blocks_15_options_reverse','1'),(307304,42469,'_blocks_15_options_reverse','field_61768049bb8ac'),(307305,42469,'blocks_15_options',''),(307306,42469,'_blocks_15_options','field_617682517c334'),(307307,42469,'blocks_15_split_5050_image','18856'),(307308,42469,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(307309,42469,'blocks_15_split_5050_video',''),(307310,42469,'_blocks_15_split_5050_video','field_6239f3160848a'),(307311,42469,'blocks_15_split_5050_content_title',''),(307312,42469,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(307313,42469,'blocks_15_split_5050_content_heading',''),(307314,42469,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(307315,42469,'blocks_15_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(307316,42469,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(307317,42469,'blocks_15_split_5050_content_actions',''),(307318,42469,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(307319,42469,'blocks_15_split_5050_content',''),(307320,42469,'_blocks_15_split_5050_content','field_61767afceb8ba'),(307321,42469,'blocks_16_acfe_flexible_toggle',''),(307322,42469,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(307323,42469,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(307324,42469,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(307325,42469,'blocks_16_options_theme','#b61234'),(307326,42469,'_blocks_16_options_theme','field_6176830e2ad17'),(307327,42469,'blocks_16_options',''),(307328,42469,'_blocks_16_options','field_6176830e2ad16'),(307329,42469,'blocks_16_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(307330,42469,'_blocks_16_text_block_heading','field_617669d413097'),(307331,42469,'blocks_16_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(307332,42469,'_blocks_16_text_block_content','field_617669ec13098'),(307333,42469,'blocks_17_acfe_flexible_toggle',''),(307334,42469,'_blocks_17_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(307335,42469,'blocks_17_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(307336,42469,'_blocks_17_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(307337,42469,'blocks_17_options_theme','#b61234'),(307338,42469,'_blocks_17_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(307339,42469,'blocks_17_options_format','row'),(307340,42469,'_blocks_17_options_format','field_64bfde9a90690'),(307341,42469,'blocks_17_options',''),(307342,42469,'_blocks_17_options','field_64bfdd9b90684'),(307343,42469,'blocks_17_icon_row_items_0_icon','pass-rate.svg'),(307344,42469,'_blocks_17_icon_row_items_0_icon','field_64bfdd9b9068d'),(307345,42469,'blocks_17_icon_row_items_0_label','More Accurate Assessments'),(307346,42469,'_blocks_17_icon_row_items_0_label','field_64bfdd9c9068e'),(307347,42469,'blocks_17_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(307348,42469,'_blocks_17_icon_row_items_0_text','field_64bfdd9c9068f'),(307349,42469,'blocks_17_icon_row_items_1_icon','exceptional-support.svg'),(307350,42469,'_blocks_17_icon_row_items_1_icon','field_64bfdd9b9068d'),(307351,42469,'blocks_17_icon_row_items_1_label','Personalised Movement Strategies'),(307352,42469,'_blocks_17_icon_row_items_1_label','field_64bfdd9c9068e'),(307353,42469,'blocks_17_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(307354,42469,'_blocks_17_icon_row_items_1_text','field_64bfdd9c9068f'),(307355,42469,'blocks_17_icon_row_items_2_icon','lifetime-course-access.svg'),(307356,42469,'_blocks_17_icon_row_items_2_icon','field_64bfdd9b9068d'),(307357,42469,'blocks_17_icon_row_items_2_label','Injury Prevention and Longevity'),(307358,42469,'_blocks_17_icon_row_items_2_label','field_64bfdd9c9068e'),(307359,42469,'blocks_17_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(307360,42469,'_blocks_17_icon_row_items_2_text','field_64bfdd9c9068f'),(307361,42469,'blocks_17_icon_row_items_3_icon','recognised.svg'),(307362,42469,'_blocks_17_icon_row_items_3_icon','field_64bfdd9b9068d'),(307363,42469,'blocks_17_icon_row_items_3_label','Optimised Performance'),(307364,42469,'_blocks_17_icon_row_items_3_label','field_64bfdd9c9068e'),(307365,42469,'blocks_17_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(307366,42469,'_blocks_17_icon_row_items_3_text','field_64bfdd9c9068f'),(307367,42469,'blocks_17_icon_row_items','4'),(307368,42469,'_blocks_17_icon_row_items','field_64bfdd9b9068c'),(307369,42469,'blocks_18_acfe_flexible_toggle',''),(307370,42469,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307371,42469,'blocks_18_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(307372,42469,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307373,42469,'blocks_18_options_theme','#ffffff'),(307374,42469,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(307375,42469,'blocks_18_options_reverse','0'),(307376,42469,'_blocks_18_options_reverse','field_61768049bb8ac'),(307377,42469,'blocks_18_options',''),(307378,42469,'_blocks_18_options','field_617682517c334'),(307379,42469,'blocks_18_split_5050_image','41501'),(307380,42469,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(307381,42469,'blocks_18_split_5050_video',''),(307382,42469,'_blocks_18_split_5050_video','field_6239f3160848a'),(307383,42469,'blocks_18_split_5050_content_title',''),(307384,42469,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(307385,42469,'blocks_18_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(307386,42469,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(307387,42469,'blocks_18_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(307388,42469,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(307389,42469,'blocks_18_split_5050_content_actions',''),(307390,42469,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(307391,42469,'blocks_18_split_5050_content',''),(307392,42469,'_blocks_18_split_5050_content','field_61767afceb8ba'),(307393,42469,'blocks_21_acfe_flexible_toggle',''),(307394,42469,'_blocks_21_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(307395,42469,'blocks_21_acfe_flexible_layout_title','Conclusion'),(307396,42469,'_blocks_21_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(307397,42469,'blocks_21_options_theme','#b61234'),(307398,42469,'_blocks_21_options_theme','field_6176830e2ad17'),(307399,42469,'blocks_21_options',''),(307400,42469,'_blocks_21_options','field_6176830e2ad16'),(307401,42469,'blocks_21_text_block_heading','Why MSK Matters for Fitness and Sports Professionals'),(307402,42469,'_blocks_21_text_block_heading','field_617669d413097'),(307403,42469,'blocks_21_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(307404,42469,'_blocks_21_text_block_content','field_617669ec13098'),(307405,42469,'blocks_22_acfe_flexible_toggle',''),(307406,42469,'_blocks_22_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(307407,42469,'blocks_22_acfe_flexible_layout_title','Promo Panel'),(307408,42469,'_blocks_22_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(307409,42469,'blocks_22_options_alignment','center'),(307410,42469,'_blocks_22_options_alignment','field_61769449f5490'),(307411,42469,'blocks_22_options',''),(307412,42469,'_blocks_22_options','field_617693e1428f0'),(307413,42469,'blocks_22_promo_panel_image','40342'),(307414,42469,'_blocks_22_promo_panel_image','field_617693e1428f3'),(307415,42469,'blocks_22_promo_panel_content_heading','Want to Get Started?'),(307416,42469,'_blocks_22_promo_panel_content_heading','field_617693e1428f6'),(307417,42469,'blocks_22_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(307418,42469,'_blocks_22_promo_panel_content_text','field_617693e1428f7'),(307419,42469,'blocks_22_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(307420,42469,'_blocks_22_promo_panel_content_actions_0_button','field_617693e1428f9'),(307421,42469,'blocks_22_promo_panel_content_actions','1'),(307422,42469,'_blocks_22_promo_panel_content_actions','field_617693e1428f8'),(307423,42469,'blocks_22_promo_panel_content',''),(307424,42469,'_blocks_22_promo_panel_content','field_617693e1428f4'),(307425,42470,'hide_hero','0'),(307426,42470,'_hide_hero','field_66a2380fcda39'),(307427,42470,'hero_title',''),(307428,42470,'_hero_title','field_617571fe285e8'),(307429,42470,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(307430,42470,'_hero_text','field_6175723c285e9'),(307431,42470,'hero_actions','1'),(307432,42470,'_hero_actions','field_61757270285ea'),(307433,42470,'hero_style','default'),(307434,42470,'_hero_style','field_62051d9dc5324'),(307435,42470,'hero_image_pos_x','right'),(307436,42470,'_hero_image_pos_x','field_62ec3d05390bb'),(307437,42470,'hero_image_pos_y','top'),(307438,42470,'_hero_image_pos_y','field_62ec3d05390bc'),(307439,42470,'hero_image_pos',''),(307440,42470,'_hero_image_pos','field_62ec3d05390ba'),(307441,42470,'fft_hide_from_listings','0'),(307442,42470,'_fft_hide_from_listings','field_61f1320446ab2'),(307443,42470,'post_format','402'),(307444,42470,'_post_format','field_61756bfb51898'),(307445,42470,'post_author',''),(307446,42470,'_post_author','field_62ec389d22113'),(307447,42470,'post_reviewer',''),(307448,42470,'_post_reviewer','field_627140a2a9800'),(307449,42470,'post_table_of_contents','0'),(307450,42470,'_post_table_of_contents','field_65c503bc846a6'),(307451,42470,'blocks','a:23:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"accordions\";i:12;s:10:\"text_block\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:5:\"icons\";i:18;s:10:\"split_5050\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:10:\"text_block\";i:22;s:11:\"promo_panel\";}'),(307452,42470,'_blocks','field_6176696113096'),(307453,42470,'_thumbnail_id','41331'),(307454,42470,'__thumbnail_id','field_617570855ddaf'),(307455,42470,'blocks_0_acfe_flexible_toggle',''),(307456,42470,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(307457,42470,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(307458,42470,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(307459,42470,'blocks_0_options_theme','#ffffff'),(307460,42470,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(307461,42470,'blocks_0_options',''),(307462,42470,'_blocks_0_options','field_6177b758246ae'),(307463,42470,'blocks_0_link_stack_content_title',''),(307464,42470,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(307465,42470,'blocks_0_link_stack_content_heading','What is MSK?'),(307466,42470,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(307467,42470,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(307468,42470,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(307469,42470,'blocks_0_link_stack_content_actions_0_button',''),(307470,42470,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(307471,42470,'blocks_0_link_stack_content_actions','1'),(307472,42470,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(307473,42470,'blocks_0_link_stack_content',''),(307474,42470,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(307475,42470,'blocks_0_link_stack_0_label','1.'),(307476,42470,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(307477,42470,'blocks_0_link_stack_0_title','Overview'),(307478,42470,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(307479,42470,'blocks_0_link_stack_0_url','#overview'),(307480,42470,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(307481,42470,'blocks_0_link_stack_1_label','2.'),(307482,42470,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(307483,42470,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(307484,42470,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(307485,42470,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(307486,42470,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(307487,42470,'blocks_0_link_stack_2_label','3.'),(307488,42470,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(307489,42470,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(307490,42470,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(307491,42470,'blocks_0_link_stack_2_url','#who-should-study-msk'),(307492,42470,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(307493,42470,'blocks_0_link_stack_3_label','4.'),(307494,42470,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(307495,42470,'blocks_0_link_stack_3_title','Common MSK Conditions'),(307496,42470,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(307497,42470,'blocks_0_link_stack_3_url','#common-msk-conditions'),(307498,42470,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(307499,42470,'blocks_0_link_stack_4_label','5.'),(307500,42470,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(307501,42470,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(307502,42470,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(307503,42470,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(307504,42470,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(307505,42470,'blocks_0_link_stack_5_label','6.'),(307506,42470,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(307507,42470,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(307508,42470,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(307509,42470,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(307510,42470,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(307511,42470,'blocks_0_link_stack','6'),(307512,42470,'_blocks_0_link_stack','field_6177b7f600cff'),(307513,42470,'blocks_1_acfe_flexible_toggle',''),(307514,42470,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307515,42470,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(307516,42470,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307517,42470,'blocks_1_options_theme','#ffffff'),(307518,42470,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(307519,42470,'blocks_1_options_reverse','0'),(307520,42470,'_blocks_1_options_reverse','field_61768049bb8ac'),(307521,42470,'blocks_1_options',''),(307522,42470,'_blocks_1_options','field_617682517c334'),(307523,42470,'blocks_1_split_5050_image','40615'),(307524,42470,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(307525,42470,'blocks_1_split_5050_video',''),(307526,42470,'_blocks_1_split_5050_video','field_6239f3160848a'),(307527,42470,'blocks_1_split_5050_content_title',''),(307528,42470,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(307529,42470,'blocks_1_split_5050_content_heading','Overview'),(307530,42470,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(307531,42470,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(307532,42470,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(307533,42470,'blocks_1_split_5050_content_actions',''),(307534,42470,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(307535,42470,'blocks_1_split_5050_content',''),(307536,42470,'_blocks_1_split_5050_content','field_61767afceb8ba'),(307537,42470,'blocks_2_acfe_flexible_toggle',''),(307538,42470,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(307539,42470,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(307540,42470,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(307541,42470,'blocks_2_options_theme','#f5f5f5'),(307542,42470,'_blocks_2_options_theme','field_6176830e2ad17'),(307543,42470,'blocks_2_options',''),(307544,42470,'_blocks_2_options','field_6176830e2ad16'),(307545,42470,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(307546,42470,'_blocks_2_text_block_heading','field_617669d413097'),(307547,42470,'blocks_2_text_block_content',''),(307548,42470,'_blocks_2_text_block_content','field_617669ec13098'),(307549,42470,'blocks_3_acfe_flexible_toggle',''),(307550,42470,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307551,42470,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(307552,42470,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307553,42470,'blocks_3_options_theme','#f5f5f5'),(307554,42470,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(307555,42470,'blocks_3_options_reverse','1'),(307556,42470,'_blocks_3_options_reverse','field_61768049bb8ac'),(307557,42470,'blocks_3_options',''),(307558,42470,'_blocks_3_options','field_617682517c334'),(307559,42470,'blocks_3_split_5050_image','40618'),(307560,42470,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(307561,42470,'blocks_3_split_5050_video',''),(307562,42470,'_blocks_3_split_5050_video','field_6239f3160848a'),(307563,42470,'blocks_3_split_5050_content_title',''),(307564,42470,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(307565,42470,'blocks_3_split_5050_content_heading',''),(307566,42470,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(307567,42470,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(307568,42470,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(307569,42470,'blocks_3_split_5050_content_actions',''),(307570,42470,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(307571,42470,'blocks_3_split_5050_content',''),(307572,42470,'_blocks_3_split_5050_content','field_61767afceb8ba'),(307573,42470,'blocks_4_acfe_flexible_toggle','1'),(307574,42470,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307575,42470,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(307576,42470,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307577,42470,'blocks_4_options_theme','#f5f5f5'),(307578,42470,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(307579,42470,'blocks_4_options_reverse','1'),(307580,42470,'_blocks_4_options_reverse','field_61768049bb8ac'),(307581,42470,'blocks_4_options',''),(307582,42470,'_blocks_4_options','field_617682517c334'),(307583,42470,'blocks_4_split_5050_image','41330'),(307584,42470,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(307585,42470,'blocks_4_split_5050_video',''),(307586,42470,'_blocks_4_split_5050_video','field_6239f3160848a'),(307587,42470,'blocks_4_split_5050_content_title',''),(307588,42470,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(307589,42470,'blocks_4_split_5050_content_heading',''),(307590,42470,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(307591,42470,'blocks_4_split_5050_content_text',''),(307592,42470,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(307593,42470,'blocks_4_split_5050_content_actions',''),(307594,42470,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(307595,42470,'blocks_4_split_5050_content',''),(307596,42470,'_blocks_4_split_5050_content','field_61767afceb8ba'),(307597,42470,'blocks_5_acfe_flexible_toggle',''),(307598,42470,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(307599,42470,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(307600,42470,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(307601,42470,'blocks_5_options_theme','#ffffff'),(307602,42470,'_blocks_5_options_theme','field_6176830e2ad17'),(307603,42470,'blocks_5_options',''),(307604,42470,'_blocks_5_options','field_6176830e2ad16'),(307605,42470,'blocks_5_text_block_heading','Who Should Study MSK?'),(307606,42470,'_blocks_5_text_block_heading','field_617669d413097'),(307607,42470,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(307608,42470,'_blocks_5_text_block_content','field_617669ec13098'),(307609,42470,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(307610,42470,'_hero_actions_0_button','field_61757281285eb'),(307611,42470,'blocks_7_acfe_flexible_toggle',''),(307612,42470,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307613,42470,'blocks_7_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(307614,42470,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307615,42470,'blocks_7_options_theme','#ffffff'),(307616,42470,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(307617,42470,'blocks_7_options_reverse','0'),(307618,42470,'_blocks_7_options_reverse','field_61768049bb8ac'),(307619,42470,'blocks_7_options',''),(307620,42470,'_blocks_7_options','field_617682517c334'),(307621,42470,'blocks_7_split_5050_image','41505'),(307622,42470,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(307623,42470,'blocks_7_split_5050_video',''),(307624,42470,'_blocks_7_split_5050_video','field_6239f3160848a'),(307625,42470,'blocks_7_split_5050_content_title','Current Practitioners'),(307626,42470,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(307627,42470,'blocks_7_split_5050_content_heading',''),(307628,42470,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(307629,42470,'blocks_7_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(307630,42470,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(307631,42470,'blocks_7_split_5050_content_actions',''),(307632,42470,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(307633,42470,'blocks_7_split_5050_content',''),(307634,42470,'_blocks_7_split_5050_content','field_61767afceb8ba'),(307635,42470,'blocks_8_acfe_flexible_toggle',''),(307636,42470,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307637,42470,'blocks_8_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(307638,42470,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307639,42470,'blocks_8_options_theme','#ffffff'),(307640,42470,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(307641,42470,'blocks_8_options_reverse','0'),(307642,42470,'_blocks_8_options_reverse','field_61768049bb8ac'),(307643,42470,'blocks_8_options',''),(307644,42470,'_blocks_8_options','field_617682517c334'),(307645,42470,'blocks_8_split_5050_image','41539'),(307646,42470,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(307647,42470,'blocks_8_split_5050_video',''),(307648,42470,'_blocks_8_split_5050_video','field_6239f3160848a'),(307649,42470,'blocks_8_split_5050_content_title','Fitness and Sports Professionals'),(307650,42470,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(307651,42470,'blocks_8_split_5050_content_heading',''),(307652,42470,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(307653,42470,'blocks_8_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(307654,42470,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(307655,42470,'blocks_8_split_5050_content_actions',''),(307656,42470,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(307657,42470,'blocks_8_split_5050_content',''),(307658,42470,'_blocks_8_split_5050_content','field_61767afceb8ba'),(307659,42470,'blocks_9_acfe_flexible_toggle',''),(307660,42470,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307661,42470,'blocks_9_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(307662,42470,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307663,42470,'blocks_9_options_theme','#ffffff'),(307664,42470,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(307665,42470,'blocks_9_options_reverse','0'),(307666,42470,'_blocks_9_options_reverse','field_61768049bb8ac'),(307667,42470,'blocks_9_options',''),(307668,42470,'_blocks_9_options','field_617682517c334'),(307669,42470,'blocks_9_split_5050_image','41502'),(307670,42470,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(307671,42470,'blocks_9_split_5050_video',''),(307672,42470,'_blocks_9_split_5050_video','field_6239f3160848a'),(307673,42470,'blocks_9_split_5050_content_title','Educators and Researchers'),(307674,42470,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(307675,42470,'blocks_9_split_5050_content_heading',''),(307676,42470,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(307677,42470,'blocks_9_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(307678,42470,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(307679,42470,'blocks_9_split_5050_content_actions',''),(307680,42470,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(307681,42470,'blocks_9_split_5050_content',''),(307682,42470,'_blocks_9_split_5050_content','field_61767afceb8ba'),(307683,42470,'blocks_13_acfe_flexible_toggle',''),(307684,42470,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307685,42470,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(307686,42470,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307687,42470,'blocks_13_options_theme','#ffffff'),(307688,42470,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(307689,42470,'blocks_13_options_reverse','1'),(307690,42470,'_blocks_13_options_reverse','field_61768049bb8ac'),(307691,42470,'blocks_13_options',''),(307692,42470,'_blocks_13_options','field_617682517c334'),(307693,42470,'blocks_13_split_5050_image','41498'),(307694,42470,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(307695,42470,'blocks_13_split_5050_video',''),(307696,42470,'_blocks_13_split_5050_video','field_6239f3160848a'),(307697,42470,'blocks_13_split_5050_content_title',''),(307698,42470,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(307699,42470,'blocks_13_split_5050_content_heading',''),(307700,42470,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(307701,42470,'blocks_13_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(307702,42470,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(307703,42470,'blocks_13_split_5050_content_actions',''),(307704,42470,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(307705,42470,'blocks_13_split_5050_content',''),(307706,42470,'_blocks_13_split_5050_content','field_61767afceb8ba'),(307707,42470,'blocks_14_acfe_flexible_toggle',''),(307708,42470,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307709,42470,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(307710,42470,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307711,42470,'blocks_14_options_theme','#ffffff'),(307712,42470,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(307713,42470,'blocks_14_options_reverse','1'),(307714,42470,'_blocks_14_options_reverse','field_61768049bb8ac'),(307715,42470,'blocks_14_options',''),(307716,42470,'_blocks_14_options','field_617682517c334'),(307717,42470,'blocks_14_split_5050_image','40387'),(307718,42470,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(307719,42470,'blocks_14_split_5050_video',''),(307720,42470,'_blocks_14_split_5050_video','field_6239f3160848a'),(307721,42470,'blocks_14_split_5050_content_title',''),(307722,42470,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(307723,42470,'blocks_14_split_5050_content_heading',''),(307724,42470,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(307725,42470,'blocks_14_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(307726,42470,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(307727,42470,'blocks_14_split_5050_content_actions',''),(307728,42470,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(307729,42470,'blocks_14_split_5050_content',''),(307730,42470,'_blocks_14_split_5050_content','field_61767afceb8ba'),(307731,42470,'blocks_19_acfe_flexible_toggle',''),(307732,42470,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(307733,42470,'blocks_19_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(307734,42470,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(307735,42470,'blocks_19_options_theme','#ffffff'),(307736,42470,'_blocks_19_options_theme','field_6176830e2ad17'),(307737,42470,'blocks_19_options',''),(307738,42470,'_blocks_19_options','field_6176830e2ad16'),(307739,42470,'blocks_19_text_block_heading','The Role of MSK Education in Workplace Health'),(307740,42470,'_blocks_19_text_block_heading','field_617669d413097'),(307741,42470,'blocks_19_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(307742,42470,'_blocks_19_text_block_content','field_617669ec13098'),(307743,42470,'blocks_20_acfe_flexible_toggle',''),(307744,42470,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(307745,42470,'blocks_20_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(307746,42470,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(307747,42470,'blocks_20_options_theme','#ffffff'),(307748,42470,'_blocks_20_options_theme','field_6176830e2ad17'),(307749,42470,'blocks_20_options',''),(307750,42470,'_blocks_20_options','field_6176830e2ad16'),(307751,42470,'blocks_20_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(307752,42470,'_blocks_20_text_block_heading','field_617669d413097'),(307753,42470,'blocks_20_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(307754,42470,'_blocks_20_text_block_content','field_617669ec13098'),(307755,42470,'blocks_6_acfe_flexible_toggle',''),(307756,42470,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307757,42470,'blocks_6_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(307758,42470,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307759,42470,'blocks_6_options_theme','#ffffff'),(307760,42470,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(307761,42470,'blocks_6_options_reverse','0'),(307762,42470,'_blocks_6_options_reverse','field_61768049bb8ac'),(307763,42470,'blocks_6_options',''),(307764,42470,'_blocks_6_options','field_617682517c334'),(307765,42470,'blocks_6_split_5050_image','41542'),(307766,42470,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(307767,42470,'blocks_6_split_5050_video',''),(307768,42470,'_blocks_6_split_5050_video','field_6239f3160848a'),(307769,42470,'blocks_6_split_5050_content_title','Aspiring Healthcare Professionals'),(307770,42470,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(307771,42470,'blocks_6_split_5050_content_heading',''),(307772,42470,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(307773,42470,'blocks_6_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(307774,42470,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(307775,42470,'blocks_6_split_5050_content_actions',''),(307776,42470,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(307777,42470,'blocks_6_split_5050_content',''),(307778,42470,'_blocks_6_split_5050_content','field_61767afceb8ba'),(307779,42470,'blocks_10_acfe_flexible_toggle',''),(307780,42470,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307781,42470,'blocks_10_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(307782,42470,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307783,42470,'blocks_10_options_theme','#ffffff'),(307784,42470,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(307785,42470,'blocks_10_options_reverse','0'),(307786,42470,'_blocks_10_options_reverse','field_61768049bb8ac'),(307787,42470,'blocks_10_options',''),(307788,42470,'_blocks_10_options','field_617682517c334'),(307789,42470,'blocks_10_split_5050_image','41506'),(307790,42470,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(307791,42470,'blocks_10_split_5050_video',''),(307792,42470,'_blocks_10_split_5050_video','field_6239f3160848a'),(307793,42470,'blocks_10_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(307794,42470,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(307795,42470,'blocks_10_split_5050_content_heading',''),(307796,42470,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(307797,42470,'blocks_10_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(307798,42470,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(307799,42470,'blocks_10_split_5050_content_actions',''),(307800,42470,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(307801,42470,'blocks_10_split_5050_content',''),(307802,42470,'_blocks_10_split_5050_content','field_61767afceb8ba'),(307803,42470,'blocks_11_acfe_flexible_toggle',''),(307804,42470,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(307805,42470,'blocks_11_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(307806,42470,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(307807,42470,'blocks_11_options_theme','#f5f5f5'),(307808,42470,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(307809,42470,'blocks_11_options_state','0'),(307810,42470,'_blocks_11_options_state','field_6239fcb7508c5'),(307811,42470,'blocks_11_options',''),(307812,42470,'_blocks_11_options','field_6177e2991ac44'),(307813,42470,'blocks_11_content_title','Common MSK Conditions'),(307814,42470,'_blocks_11_content_title','field_64d237e8bb1e2'),(307815,42470,'blocks_11_content_heading','Common MSK Conditions'),(307816,42470,'_blocks_11_content_heading','field_64d237e8bb1e3'),(307817,42470,'blocks_11_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(307818,42470,'_blocks_11_content_text','field_64d237e8bb1e4'),(307819,42470,'blocks_11_content_actions',''),(307820,42470,'_blocks_11_content_actions','field_64d237e8bb1e5'),(307821,42470,'blocks_11_content_align','left'),(307822,42470,'_blocks_11_content_align','field_64d2443e6b6aa'),(307823,42470,'blocks_11_content',''),(307824,42470,'_blocks_11_content','field_64d237e8bb1e1'),(307825,42470,'blocks_11_accordion_content','custom'),(307826,42470,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(307827,42470,'blocks_11_accordion_items_0_title','Osteoarthritis'),(307828,42470,'_blocks_11_accordion_items_0_title','field_6177e2991ac4d'),(307829,42470,'blocks_11_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(307830,42470,'_blocks_11_accordion_items_0_text','field_6177e2991ac4e'),(307831,42470,'blocks_11_accordion_items_1_title','Rheumatoid Arthritis'),(307832,42470,'_blocks_11_accordion_items_1_title','field_6177e2991ac4d'),(307833,42470,'blocks_11_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(307834,42470,'_blocks_11_accordion_items_1_text','field_6177e2991ac4e'),(307835,42470,'blocks_11_accordion_items_2_title','Back Pain'),(307836,42470,'_blocks_11_accordion_items_2_title','field_6177e2991ac4d'),(307837,42470,'blocks_11_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(307838,42470,'_blocks_11_accordion_items_2_text','field_6177e2991ac4e'),(307839,42470,'blocks_11_accordion_items_3_title','Osteoporosis'),(307840,42470,'_blocks_11_accordion_items_3_title','field_6177e2991ac4d'),(307841,42470,'blocks_11_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(307842,42470,'_blocks_11_accordion_items_3_text','field_6177e2991ac4e'),(307843,42470,'blocks_11_accordion_items_4_title','Tendinitis'),(307844,42470,'_blocks_11_accordion_items_4_title','field_6177e2991ac4d'),(307845,42470,'blocks_11_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(307846,42470,'_blocks_11_accordion_items_4_text','field_6177e2991ac4e'),(307847,42470,'blocks_11_accordion_items_5_title','Carpal Tunnel Syndrome'),(307848,42470,'_blocks_11_accordion_items_5_title','field_6177e2991ac4d'),(307849,42470,'blocks_11_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(307850,42470,'_blocks_11_accordion_items_5_text','field_6177e2991ac4e'),(307851,42470,'blocks_11_accordion_items_6_title','Fibromyalgia'),(307852,42470,'_blocks_11_accordion_items_6_title','field_6177e2991ac4d'),(307853,42470,'blocks_11_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(307854,42470,'_blocks_11_accordion_items_6_text','field_6177e2991ac4e'),(307855,42470,'blocks_11_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(307856,42470,'_blocks_11_accordion_items_7_title','field_6177e2991ac4d'),(307857,42470,'blocks_11_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(307858,42470,'_blocks_11_accordion_items_7_text','field_6177e2991ac4e'),(307859,42470,'blocks_11_accordion_items','8'),(307860,42470,'_blocks_11_accordion_items','field_6177e2991ac4c'),(307861,42470,'blocks_11_actions',''),(307862,42470,'_blocks_11_actions','field_61a746a817f7a'),(307863,42470,'blocks_12_acfe_flexible_toggle',''),(307864,42470,'_blocks_12_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(307865,42470,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(307866,42470,'_blocks_12_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(307867,42470,'blocks_12_options_theme','#ffffff'),(307868,42470,'_blocks_12_options_theme','field_6176830e2ad17'),(307869,42470,'blocks_12_options',''),(307870,42470,'_blocks_12_options','field_6176830e2ad16'),(307871,42470,'blocks_12_text_block_heading','The Importance of MSK Education'),(307872,42470,'_blocks_12_text_block_heading','field_617669d413097'),(307873,42470,'blocks_12_text_block_content',''),(307874,42470,'_blocks_12_text_block_content','field_617669ec13098'),(307875,42470,'blocks_15_acfe_flexible_toggle',''),(307876,42470,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307877,42470,'blocks_15_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(307878,42470,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307879,42470,'blocks_15_options_theme','#ffffff'),(307880,42470,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(307881,42470,'blocks_15_options_reverse','1'),(307882,42470,'_blocks_15_options_reverse','field_61768049bb8ac'),(307883,42470,'blocks_15_options',''),(307884,42470,'_blocks_15_options','field_617682517c334'),(307885,42470,'blocks_15_split_5050_image','18856'),(307886,42470,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(307887,42470,'blocks_15_split_5050_video',''),(307888,42470,'_blocks_15_split_5050_video','field_6239f3160848a'),(307889,42470,'blocks_15_split_5050_content_title',''),(307890,42470,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(307891,42470,'blocks_15_split_5050_content_heading',''),(307892,42470,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(307893,42470,'blocks_15_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(307894,42470,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(307895,42470,'blocks_15_split_5050_content_actions',''),(307896,42470,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(307897,42470,'blocks_15_split_5050_content',''),(307898,42470,'_blocks_15_split_5050_content','field_61767afceb8ba'),(307899,42470,'blocks_16_acfe_flexible_toggle',''),(307900,42470,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(307901,42470,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(307902,42470,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(307903,42470,'blocks_16_options_theme','#b61234'),(307904,42470,'_blocks_16_options_theme','field_6176830e2ad17'),(307905,42470,'blocks_16_options',''),(307906,42470,'_blocks_16_options','field_6176830e2ad16'),(307907,42470,'blocks_16_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(307908,42470,'_blocks_16_text_block_heading','field_617669d413097'),(307909,42470,'blocks_16_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(307910,42470,'_blocks_16_text_block_content','field_617669ec13098'),(307911,42470,'blocks_17_acfe_flexible_toggle',''),(307912,42470,'_blocks_17_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(307913,42470,'blocks_17_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(307914,42470,'_blocks_17_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(307915,42470,'blocks_17_options_theme','#b61234'),(307916,42470,'_blocks_17_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(307917,42470,'blocks_17_options_format','row'),(307918,42470,'_blocks_17_options_format','field_64bfde9a90690'),(307919,42470,'blocks_17_options',''),(307920,42470,'_blocks_17_options','field_64bfdd9b90684'),(307921,42470,'blocks_17_icon_row_items_0_icon','pass-rate.svg'),(307922,42470,'_blocks_17_icon_row_items_0_icon','field_64bfdd9b9068d'),(307923,42470,'blocks_17_icon_row_items_0_label','More Accurate Assessments'),(307924,42470,'_blocks_17_icon_row_items_0_label','field_64bfdd9c9068e'),(307925,42470,'blocks_17_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(307926,42470,'_blocks_17_icon_row_items_0_text','field_64bfdd9c9068f'),(307927,42470,'blocks_17_icon_row_items_1_icon','exceptional-support.svg'),(307928,42470,'_blocks_17_icon_row_items_1_icon','field_64bfdd9b9068d'),(307929,42470,'blocks_17_icon_row_items_1_label','Personalised Movement Strategies'),(307930,42470,'_blocks_17_icon_row_items_1_label','field_64bfdd9c9068e'),(307931,42470,'blocks_17_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(307932,42470,'_blocks_17_icon_row_items_1_text','field_64bfdd9c9068f'),(307933,42470,'blocks_17_icon_row_items_2_icon','lifetime-course-access.svg'),(307934,42470,'_blocks_17_icon_row_items_2_icon','field_64bfdd9b9068d'),(307935,42470,'blocks_17_icon_row_items_2_label','Injury Prevention and Longevity'),(307936,42470,'_blocks_17_icon_row_items_2_label','field_64bfdd9c9068e'),(307937,42470,'blocks_17_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(307938,42470,'_blocks_17_icon_row_items_2_text','field_64bfdd9c9068f'),(307939,42470,'blocks_17_icon_row_items_3_icon','recognised.svg'),(307940,42470,'_blocks_17_icon_row_items_3_icon','field_64bfdd9b9068d'),(307941,42470,'blocks_17_icon_row_items_3_label','Optimised Performance'),(307942,42470,'_blocks_17_icon_row_items_3_label','field_64bfdd9c9068e'),(307943,42470,'blocks_17_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(307944,42470,'_blocks_17_icon_row_items_3_text','field_64bfdd9c9068f'),(307945,42470,'blocks_17_icon_row_items','4'),(307946,42470,'_blocks_17_icon_row_items','field_64bfdd9b9068c'),(307947,42470,'blocks_18_acfe_flexible_toggle',''),(307948,42470,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(307949,42470,'blocks_18_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(307950,42470,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(307951,42470,'blocks_18_options_theme','#ffffff'),(307952,42470,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(307953,42470,'blocks_18_options_reverse','0'),(307954,42470,'_blocks_18_options_reverse','field_61768049bb8ac'),(307955,42470,'blocks_18_options',''),(307956,42470,'_blocks_18_options','field_617682517c334'),(307957,42470,'blocks_18_split_5050_image','41501'),(307958,42470,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(307959,42470,'blocks_18_split_5050_video',''),(307960,42470,'_blocks_18_split_5050_video','field_6239f3160848a'),(307961,42470,'blocks_18_split_5050_content_title',''),(307962,42470,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(307963,42470,'blocks_18_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(307964,42470,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(307965,42470,'blocks_18_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(307966,42470,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(307967,42470,'blocks_18_split_5050_content_actions',''),(307968,42470,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(307969,42470,'blocks_18_split_5050_content',''),(307970,42470,'_blocks_18_split_5050_content','field_61767afceb8ba'),(307971,42470,'blocks_21_acfe_flexible_toggle',''),(307972,42470,'_blocks_21_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(307973,42470,'blocks_21_acfe_flexible_layout_title','Conclusion'),(307974,42470,'_blocks_21_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(307975,42470,'blocks_21_options_theme','#b61234'),(307976,42470,'_blocks_21_options_theme','field_6176830e2ad17'),(307977,42470,'blocks_21_options',''),(307978,42470,'_blocks_21_options','field_6176830e2ad16'),(307979,42470,'blocks_21_text_block_heading','Conclusion'),(307980,42470,'_blocks_21_text_block_heading','field_617669d413097'),(307981,42470,'blocks_21_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(307982,42470,'_blocks_21_text_block_content','field_617669ec13098'),(307983,42470,'blocks_22_acfe_flexible_toggle',''),(307984,42470,'_blocks_22_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(307985,42470,'blocks_22_acfe_flexible_layout_title','Promo Panel'),(307986,42470,'_blocks_22_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(307987,42470,'blocks_22_options_alignment','center'),(307988,42470,'_blocks_22_options_alignment','field_61769449f5490'),(307989,42470,'blocks_22_options',''),(307990,42470,'_blocks_22_options','field_617693e1428f0'),(307991,42470,'blocks_22_promo_panel_image','40342'),(307992,42470,'_blocks_22_promo_panel_image','field_617693e1428f3'),(307993,42470,'blocks_22_promo_panel_content_heading','Want to Get Started?'),(307994,42470,'_blocks_22_promo_panel_content_heading','field_617693e1428f6'),(307995,42470,'blocks_22_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(307996,42470,'_blocks_22_promo_panel_content_text','field_617693e1428f7'),(307997,42470,'blocks_22_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(307998,42470,'_blocks_22_promo_panel_content_actions_0_button','field_617693e1428f9'),(307999,42470,'blocks_22_promo_panel_content_actions','1'),(308000,42470,'_blocks_22_promo_panel_content_actions','field_617693e1428f8'),(308001,42470,'blocks_22_promo_panel_content',''),(308002,42470,'_blocks_22_promo_panel_content','field_617693e1428f4'),(308003,42471,'hide_hero','0'),(308004,42471,'_hide_hero','field_66a2380fcda39'),(308005,42471,'hero_title',''),(308006,42471,'_hero_title','field_617571fe285e8'),(308007,42471,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(308008,42471,'_hero_text','field_6175723c285e9'),(308009,42471,'hero_actions','1'),(308010,42471,'_hero_actions','field_61757270285ea'),(308011,42471,'hero_style','default'),(308012,42471,'_hero_style','field_62051d9dc5324'),(308013,42471,'hero_image_pos_x','right'),(308014,42471,'_hero_image_pos_x','field_62ec3d05390bb'),(308015,42471,'hero_image_pos_y','top'),(308016,42471,'_hero_image_pos_y','field_62ec3d05390bc'),(308017,42471,'hero_image_pos',''),(308018,42471,'_hero_image_pos','field_62ec3d05390ba'),(308019,42471,'fft_hide_from_listings','0'),(308020,42471,'_fft_hide_from_listings','field_61f1320446ab2'),(308021,42471,'post_format','402'),(308022,42471,'_post_format','field_61756bfb51898'),(308023,42471,'post_author',''),(308024,42471,'_post_author','field_62ec389d22113'),(308025,42471,'post_reviewer',''),(308026,42471,'_post_reviewer','field_627140a2a9800'),(308027,42471,'post_table_of_contents','0'),(308028,42471,'_post_table_of_contents','field_65c503bc846a6'),(308029,42471,'blocks','a:23:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"text_block\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"split_5050\";i:11;s:10:\"accordions\";i:12;s:10:\"text_block\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:5:\"icons\";i:18;s:10:\"split_5050\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:10:\"text_block\";i:22;s:11:\"promo_panel\";}'),(308030,42471,'_blocks','field_6176696113096'),(308031,42471,'_thumbnail_id','41331'),(308032,42471,'__thumbnail_id','field_617570855ddaf'),(308033,42471,'blocks_0_acfe_flexible_toggle',''),(308034,42471,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(308035,42471,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(308036,42471,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(308037,42471,'blocks_0_options_theme','#ffffff'),(308038,42471,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(308039,42471,'blocks_0_options',''),(308040,42471,'_blocks_0_options','field_6177b758246ae'),(308041,42471,'blocks_0_link_stack_content_title',''),(308042,42471,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(308043,42471,'blocks_0_link_stack_content_heading','What is MSK?'),(308044,42471,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(308045,42471,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(308046,42471,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(308047,42471,'blocks_0_link_stack_content_actions_0_button',''),(308048,42471,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(308049,42471,'blocks_0_link_stack_content_actions','1'),(308050,42471,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(308051,42471,'blocks_0_link_stack_content',''),(308052,42471,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(308053,42471,'blocks_0_link_stack_0_label','1.'),(308054,42471,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(308055,42471,'blocks_0_link_stack_0_title','Overview'),(308056,42471,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(308057,42471,'blocks_0_link_stack_0_url','#overview'),(308058,42471,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(308059,42471,'blocks_0_link_stack_1_label','2.'),(308060,42471,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(308061,42471,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(308062,42471,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(308063,42471,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(308064,42471,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(308065,42471,'blocks_0_link_stack_2_label','3.'),(308066,42471,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(308067,42471,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(308068,42471,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(308069,42471,'blocks_0_link_stack_2_url','#who-should-study-msk'),(308070,42471,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(308071,42471,'blocks_0_link_stack_3_label','4.'),(308072,42471,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(308073,42471,'blocks_0_link_stack_3_title','Common MSK Conditions'),(308074,42471,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(308075,42471,'blocks_0_link_stack_3_url','#common-msk-conditions'),(308076,42471,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(308077,42471,'blocks_0_link_stack_4_label','5.'),(308078,42471,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(308079,42471,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(308080,42471,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(308081,42471,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(308082,42471,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(308083,42471,'blocks_0_link_stack_5_label','6.'),(308084,42471,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(308085,42471,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(308086,42471,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(308087,42471,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(308088,42471,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(308089,42471,'blocks_0_link_stack','6'),(308090,42471,'_blocks_0_link_stack','field_6177b7f600cff'),(308091,42471,'blocks_1_acfe_flexible_toggle',''),(308092,42471,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308093,42471,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(308094,42471,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308095,42471,'blocks_1_options_theme','#ffffff'),(308096,42471,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(308097,42471,'blocks_1_options_reverse','0'),(308098,42471,'_blocks_1_options_reverse','field_61768049bb8ac'),(308099,42471,'blocks_1_options',''),(308100,42471,'_blocks_1_options','field_617682517c334'),(308101,42471,'blocks_1_split_5050_image','40615'),(308102,42471,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(308103,42471,'blocks_1_split_5050_video',''),(308104,42471,'_blocks_1_split_5050_video','field_6239f3160848a'),(308105,42471,'blocks_1_split_5050_content_title',''),(308106,42471,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(308107,42471,'blocks_1_split_5050_content_heading','Overview'),(308108,42471,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(308109,42471,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(308110,42471,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(308111,42471,'blocks_1_split_5050_content_actions',''),(308112,42471,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(308113,42471,'blocks_1_split_5050_content',''),(308114,42471,'_blocks_1_split_5050_content','field_61767afceb8ba'),(308115,42471,'blocks_2_acfe_flexible_toggle',''),(308116,42471,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(308117,42471,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(308118,42471,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(308119,42471,'blocks_2_options_theme','#f5f5f5'),(308120,42471,'_blocks_2_options_theme','field_6176830e2ad17'),(308121,42471,'blocks_2_options',''),(308122,42471,'_blocks_2_options','field_6176830e2ad16'),(308123,42471,'blocks_2_text_block_heading','Understanding Musculoskeletal (MSK) Health'),(308124,42471,'_blocks_2_text_block_heading','field_617669d413097'),(308125,42471,'blocks_2_text_block_content',''),(308126,42471,'_blocks_2_text_block_content','field_617669ec13098'),(308127,42471,'blocks_3_acfe_flexible_toggle',''),(308128,42471,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308129,42471,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (1)'),(308130,42471,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308131,42471,'blocks_3_options_theme','#f5f5f5'),(308132,42471,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(308133,42471,'blocks_3_options_reverse','1'),(308134,42471,'_blocks_3_options_reverse','field_61768049bb8ac'),(308135,42471,'blocks_3_options',''),(308136,42471,'_blocks_3_options','field_617682517c334'),(308137,42471,'blocks_3_split_5050_image','40618'),(308138,42471,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(308139,42471,'blocks_3_split_5050_video',''),(308140,42471,'_blocks_3_split_5050_video','field_6239f3160848a'),(308141,42471,'blocks_3_split_5050_content_title',''),(308142,42471,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(308143,42471,'blocks_3_split_5050_content_heading',''),(308144,42471,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(308145,42471,'blocks_3_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(308146,42471,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(308147,42471,'blocks_3_split_5050_content_actions',''),(308148,42471,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(308149,42471,'blocks_3_split_5050_content',''),(308150,42471,'_blocks_3_split_5050_content','field_61767afceb8ba'),(308151,42471,'blocks_4_acfe_flexible_toggle','1'),(308152,42471,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308153,42471,'blocks_4_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(308154,42471,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308155,42471,'blocks_4_options_theme','#f5f5f5'),(308156,42471,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(308157,42471,'blocks_4_options_reverse','1'),(308158,42471,'_blocks_4_options_reverse','field_61768049bb8ac'),(308159,42471,'blocks_4_options',''),(308160,42471,'_blocks_4_options','field_617682517c334'),(308161,42471,'blocks_4_split_5050_image','41330'),(308162,42471,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(308163,42471,'blocks_4_split_5050_video',''),(308164,42471,'_blocks_4_split_5050_video','field_6239f3160848a'),(308165,42471,'blocks_4_split_5050_content_title',''),(308166,42471,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(308167,42471,'blocks_4_split_5050_content_heading',''),(308168,42471,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(308169,42471,'blocks_4_split_5050_content_text',''),(308170,42471,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(308171,42471,'blocks_4_split_5050_content_actions',''),(308172,42471,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(308173,42471,'blocks_4_split_5050_content',''),(308174,42471,'_blocks_4_split_5050_content','field_61767afceb8ba'),(308175,42471,'blocks_5_acfe_flexible_toggle',''),(308176,42471,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(308177,42471,'blocks_5_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(308178,42471,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(308179,42471,'blocks_5_options_theme','#ffffff'),(308180,42471,'_blocks_5_options_theme','field_6176830e2ad17'),(308181,42471,'blocks_5_options',''),(308182,42471,'_blocks_5_options','field_6176830e2ad16'),(308183,42471,'blocks_5_text_block_heading','Who Should Study MSK?'),(308184,42471,'_blocks_5_text_block_heading','field_617669d413097'),(308185,42471,'blocks_5_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(308186,42471,'_blocks_5_text_block_content','field_617669ec13098'),(308187,42471,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(308188,42471,'_hero_actions_0_button','field_61757281285eb'),(308189,42471,'blocks_7_acfe_flexible_toggle',''),(308190,42471,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308191,42471,'blocks_7_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(308192,42471,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308193,42471,'blocks_7_options_theme','#ffffff'),(308194,42471,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(308195,42471,'blocks_7_options_reverse','0'),(308196,42471,'_blocks_7_options_reverse','field_61768049bb8ac'),(308197,42471,'blocks_7_options',''),(308198,42471,'_blocks_7_options','field_617682517c334'),(308199,42471,'blocks_7_split_5050_image','41505'),(308200,42471,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(308201,42471,'blocks_7_split_5050_video',''),(308202,42471,'_blocks_7_split_5050_video','field_6239f3160848a'),(308203,42471,'blocks_7_split_5050_content_title','Current Practitioners'),(308204,42471,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(308205,42471,'blocks_7_split_5050_content_heading',''),(308206,42471,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(308207,42471,'blocks_7_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(308208,42471,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(308209,42471,'blocks_7_split_5050_content_actions',''),(308210,42471,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(308211,42471,'blocks_7_split_5050_content',''),(308212,42471,'_blocks_7_split_5050_content','field_61767afceb8ba'),(308213,42471,'blocks_8_acfe_flexible_toggle',''),(308214,42471,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308215,42471,'blocks_8_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(308216,42471,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308217,42471,'blocks_8_options_theme','#ffffff'),(308218,42471,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(308219,42471,'blocks_8_options_reverse','0'),(308220,42471,'_blocks_8_options_reverse','field_61768049bb8ac'),(308221,42471,'blocks_8_options',''),(308222,42471,'_blocks_8_options','field_617682517c334'),(308223,42471,'blocks_8_split_5050_image','41539'),(308224,42471,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(308225,42471,'blocks_8_split_5050_video',''),(308226,42471,'_blocks_8_split_5050_video','field_6239f3160848a'),(308227,42471,'blocks_8_split_5050_content_title','Fitness and Sports Professionals'),(308228,42471,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(308229,42471,'blocks_8_split_5050_content_heading',''),(308230,42471,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(308231,42471,'blocks_8_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(308232,42471,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(308233,42471,'blocks_8_split_5050_content_actions',''),(308234,42471,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(308235,42471,'blocks_8_split_5050_content',''),(308236,42471,'_blocks_8_split_5050_content','field_61767afceb8ba'),(308237,42471,'blocks_9_acfe_flexible_toggle',''),(308238,42471,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308239,42471,'blocks_9_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(308240,42471,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308241,42471,'blocks_9_options_theme','#ffffff'),(308242,42471,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(308243,42471,'blocks_9_options_reverse','0'),(308244,42471,'_blocks_9_options_reverse','field_61768049bb8ac'),(308245,42471,'blocks_9_options',''),(308246,42471,'_blocks_9_options','field_617682517c334'),(308247,42471,'blocks_9_split_5050_image','41502'),(308248,42471,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(308249,42471,'blocks_9_split_5050_video',''),(308250,42471,'_blocks_9_split_5050_video','field_6239f3160848a'),(308251,42471,'blocks_9_split_5050_content_title','Educators and Researchers'),(308252,42471,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(308253,42471,'blocks_9_split_5050_content_heading',''),(308254,42471,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(308255,42471,'blocks_9_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(308256,42471,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(308257,42471,'blocks_9_split_5050_content_actions',''),(308258,42471,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(308259,42471,'blocks_9_split_5050_content',''),(308260,42471,'_blocks_9_split_5050_content','field_61767afceb8ba'),(308261,42471,'blocks_13_acfe_flexible_toggle',''),(308262,42471,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308263,42471,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(308264,42471,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308265,42471,'blocks_13_options_theme','#ffffff'),(308266,42471,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(308267,42471,'blocks_13_options_reverse','1'),(308268,42471,'_blocks_13_options_reverse','field_61768049bb8ac'),(308269,42471,'blocks_13_options',''),(308270,42471,'_blocks_13_options','field_617682517c334'),(308271,42471,'blocks_13_split_5050_image','41498'),(308272,42471,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(308273,42471,'blocks_13_split_5050_video',''),(308274,42471,'_blocks_13_split_5050_video','field_6239f3160848a'),(308275,42471,'blocks_13_split_5050_content_title','Building a Strong Foundation in MSK Health'),(308276,42471,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(308277,42471,'blocks_13_split_5050_content_heading',''),(308278,42471,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(308279,42471,'blocks_13_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(308280,42471,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(308281,42471,'blocks_13_split_5050_content_actions',''),(308282,42471,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(308283,42471,'blocks_13_split_5050_content',''),(308284,42471,'_blocks_13_split_5050_content','field_61767afceb8ba'),(308285,42471,'blocks_14_acfe_flexible_toggle',''),(308286,42471,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308287,42471,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(308288,42471,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308289,42471,'blocks_14_options_theme','#ffffff'),(308290,42471,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(308291,42471,'blocks_14_options_reverse','1'),(308292,42471,'_blocks_14_options_reverse','field_61768049bb8ac'),(308293,42471,'blocks_14_options',''),(308294,42471,'_blocks_14_options','field_617682517c334'),(308295,42471,'blocks_14_split_5050_image','40387'),(308296,42471,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(308297,42471,'blocks_14_split_5050_video',''),(308298,42471,'_blocks_14_split_5050_video','field_6239f3160848a'),(308299,42471,'blocks_14_split_5050_content_title','Early Detection and Targeted Interventions'),(308300,42471,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(308301,42471,'blocks_14_split_5050_content_heading',''),(308302,42471,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(308303,42471,'blocks_14_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(308304,42471,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(308305,42471,'blocks_14_split_5050_content_actions',''),(308306,42471,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(308307,42471,'blocks_14_split_5050_content',''),(308308,42471,'_blocks_14_split_5050_content','field_61767afceb8ba'),(308309,42471,'blocks_19_acfe_flexible_toggle',''),(308310,42471,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(308311,42471,'blocks_19_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(308312,42471,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(308313,42471,'blocks_19_options_theme','#ffffff'),(308314,42471,'_blocks_19_options_theme','field_6176830e2ad17'),(308315,42471,'blocks_19_options',''),(308316,42471,'_blocks_19_options','field_6176830e2ad16'),(308317,42471,'blocks_19_text_block_heading','The Role of MSK Education in Workplace Health'),(308318,42471,'_blocks_19_text_block_heading','field_617669d413097'),(308319,42471,'blocks_19_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(308320,42471,'_blocks_19_text_block_content','field_617669ec13098'),(308321,42471,'blocks_20_acfe_flexible_toggle',''),(308322,42471,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(308323,42471,'blocks_20_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(308324,42471,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(308325,42471,'blocks_20_options_theme','#ffffff'),(308326,42471,'_blocks_20_options_theme','field_6176830e2ad17'),(308327,42471,'blocks_20_options',''),(308328,42471,'_blocks_20_options','field_6176830e2ad16'),(308329,42471,'blocks_20_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(308330,42471,'_blocks_20_text_block_heading','field_617669d413097'),(308331,42471,'blocks_20_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(308332,42471,'_blocks_20_text_block_content','field_617669ec13098'),(308333,42471,'blocks_6_acfe_flexible_toggle',''),(308334,42471,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308335,42471,'blocks_6_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(308336,42471,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308337,42471,'blocks_6_options_theme','#ffffff'),(308338,42471,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(308339,42471,'blocks_6_options_reverse','0'),(308340,42471,'_blocks_6_options_reverse','field_61768049bb8ac'),(308341,42471,'blocks_6_options',''),(308342,42471,'_blocks_6_options','field_617682517c334'),(308343,42471,'blocks_6_split_5050_image','41542'),(308344,42471,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(308345,42471,'blocks_6_split_5050_video',''),(308346,42471,'_blocks_6_split_5050_video','field_6239f3160848a'),(308347,42471,'blocks_6_split_5050_content_title','Aspiring Healthcare Professionals'),(308348,42471,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(308349,42471,'blocks_6_split_5050_content_heading',''),(308350,42471,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(308351,42471,'blocks_6_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(308352,42471,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(308353,42471,'blocks_6_split_5050_content_actions',''),(308354,42471,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(308355,42471,'blocks_6_split_5050_content',''),(308356,42471,'_blocks_6_split_5050_content','field_61767afceb8ba'),(308357,42471,'blocks_10_acfe_flexible_toggle',''),(308358,42471,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308359,42471,'blocks_10_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(308360,42471,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308361,42471,'blocks_10_options_theme','#ffffff'),(308362,42471,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(308363,42471,'blocks_10_options_reverse','0'),(308364,42471,'_blocks_10_options_reverse','field_61768049bb8ac'),(308365,42471,'blocks_10_options',''),(308366,42471,'_blocks_10_options','field_617682517c334'),(308367,42471,'blocks_10_split_5050_image','41506'),(308368,42471,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(308369,42471,'blocks_10_split_5050_video',''),(308370,42471,'_blocks_10_split_5050_video','field_6239f3160848a'),(308371,42471,'blocks_10_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(308372,42471,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(308373,42471,'blocks_10_split_5050_content_heading',''),(308374,42471,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(308375,42471,'blocks_10_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(308376,42471,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(308377,42471,'blocks_10_split_5050_content_actions',''),(308378,42471,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(308379,42471,'blocks_10_split_5050_content',''),(308380,42471,'_blocks_10_split_5050_content','field_61767afceb8ba'),(308381,42471,'blocks_11_acfe_flexible_toggle',''),(308382,42471,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(308383,42471,'blocks_11_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(308384,42471,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(308385,42471,'blocks_11_options_theme','#f5f5f5'),(308386,42471,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(308387,42471,'blocks_11_options_state','0'),(308388,42471,'_blocks_11_options_state','field_6239fcb7508c5'),(308389,42471,'blocks_11_options',''),(308390,42471,'_blocks_11_options','field_6177e2991ac44'),(308391,42471,'blocks_11_content_title','Common MSK Conditions'),(308392,42471,'_blocks_11_content_title','field_64d237e8bb1e2'),(308393,42471,'blocks_11_content_heading','Common MSK Conditions'),(308394,42471,'_blocks_11_content_heading','field_64d237e8bb1e3'),(308395,42471,'blocks_11_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(308396,42471,'_blocks_11_content_text','field_64d237e8bb1e4'),(308397,42471,'blocks_11_content_actions',''),(308398,42471,'_blocks_11_content_actions','field_64d237e8bb1e5'),(308399,42471,'blocks_11_content_align','left'),(308400,42471,'_blocks_11_content_align','field_64d2443e6b6aa'),(308401,42471,'blocks_11_content',''),(308402,42471,'_blocks_11_content','field_64d237e8bb1e1'),(308403,42471,'blocks_11_accordion_content','custom'),(308404,42471,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(308405,42471,'blocks_11_accordion_items_0_title','Osteoarthritis'),(308406,42471,'_blocks_11_accordion_items_0_title','field_6177e2991ac4d'),(308407,42471,'blocks_11_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(308408,42471,'_blocks_11_accordion_items_0_text','field_6177e2991ac4e'),(308409,42471,'blocks_11_accordion_items_1_title','Rheumatoid Arthritis'),(308410,42471,'_blocks_11_accordion_items_1_title','field_6177e2991ac4d'),(308411,42471,'blocks_11_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(308412,42471,'_blocks_11_accordion_items_1_text','field_6177e2991ac4e'),(308413,42471,'blocks_11_accordion_items_2_title','Back Pain'),(308414,42471,'_blocks_11_accordion_items_2_title','field_6177e2991ac4d'),(308415,42471,'blocks_11_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(308416,42471,'_blocks_11_accordion_items_2_text','field_6177e2991ac4e'),(308417,42471,'blocks_11_accordion_items_3_title','Osteoporosis'),(308418,42471,'_blocks_11_accordion_items_3_title','field_6177e2991ac4d'),(308419,42471,'blocks_11_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(308420,42471,'_blocks_11_accordion_items_3_text','field_6177e2991ac4e'),(308421,42471,'blocks_11_accordion_items_4_title','Tendinitis'),(308422,42471,'_blocks_11_accordion_items_4_title','field_6177e2991ac4d'),(308423,42471,'blocks_11_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(308424,42471,'_blocks_11_accordion_items_4_text','field_6177e2991ac4e'),(308425,42471,'blocks_11_accordion_items_5_title','Carpal Tunnel Syndrome'),(308426,42471,'_blocks_11_accordion_items_5_title','field_6177e2991ac4d'),(308427,42471,'blocks_11_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(308428,42471,'_blocks_11_accordion_items_5_text','field_6177e2991ac4e'),(308429,42471,'blocks_11_accordion_items_6_title','Fibromyalgia'),(308430,42471,'_blocks_11_accordion_items_6_title','field_6177e2991ac4d'),(308431,42471,'blocks_11_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(308432,42471,'_blocks_11_accordion_items_6_text','field_6177e2991ac4e'),(308433,42471,'blocks_11_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(308434,42471,'_blocks_11_accordion_items_7_title','field_6177e2991ac4d'),(308435,42471,'blocks_11_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(308436,42471,'_blocks_11_accordion_items_7_text','field_6177e2991ac4e'),(308437,42471,'blocks_11_accordion_items','8'),(308438,42471,'_blocks_11_accordion_items','field_6177e2991ac4c'),(308439,42471,'blocks_11_actions',''),(308440,42471,'_blocks_11_actions','field_61a746a817f7a'),(308441,42471,'blocks_12_acfe_flexible_toggle',''),(308442,42471,'_blocks_12_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(308443,42471,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(308444,42471,'_blocks_12_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(308445,42471,'blocks_12_options_theme','#ffffff'),(308446,42471,'_blocks_12_options_theme','field_6176830e2ad17'),(308447,42471,'blocks_12_options',''),(308448,42471,'_blocks_12_options','field_6176830e2ad16'),(308449,42471,'blocks_12_text_block_heading','The Importance of MSK Education'),(308450,42471,'_blocks_12_text_block_heading','field_617669d413097'),(308451,42471,'blocks_12_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(308452,42471,'_blocks_12_text_block_content','field_617669ec13098'),(308453,42471,'blocks_15_acfe_flexible_toggle',''),(308454,42471,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308455,42471,'blocks_15_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(308456,42471,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308457,42471,'blocks_15_options_theme','#ffffff'),(308458,42471,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(308459,42471,'blocks_15_options_reverse','1'),(308460,42471,'_blocks_15_options_reverse','field_61768049bb8ac'),(308461,42471,'blocks_15_options',''),(308462,42471,'_blocks_15_options','field_617682517c334'),(308463,42471,'blocks_15_split_5050_image','18856'),(308464,42471,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(308465,42471,'blocks_15_split_5050_video',''),(308466,42471,'_blocks_15_split_5050_video','field_6239f3160848a'),(308467,42471,'blocks_15_split_5050_content_title','Bridging the Gap Between Disciplines'),(308468,42471,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(308469,42471,'blocks_15_split_5050_content_heading',''),(308470,42471,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(308471,42471,'blocks_15_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(308472,42471,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(308473,42471,'blocks_15_split_5050_content_actions',''),(308474,42471,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(308475,42471,'blocks_15_split_5050_content',''),(308476,42471,'_blocks_15_split_5050_content','field_61767afceb8ba'),(308477,42471,'blocks_16_acfe_flexible_toggle',''),(308478,42471,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(308479,42471,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(308480,42471,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(308481,42471,'blocks_16_options_theme','#b61234'),(308482,42471,'_blocks_16_options_theme','field_6176830e2ad17'),(308483,42471,'blocks_16_options',''),(308484,42471,'_blocks_16_options','field_6176830e2ad16'),(308485,42471,'blocks_16_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(308486,42471,'_blocks_16_text_block_heading','field_617669d413097'),(308487,42471,'blocks_16_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(308488,42471,'_blocks_16_text_block_content','field_617669ec13098'),(308489,42471,'blocks_17_acfe_flexible_toggle',''),(308490,42471,'_blocks_17_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(308491,42471,'blocks_17_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(308492,42471,'_blocks_17_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(308493,42471,'blocks_17_options_theme','#b61234'),(308494,42471,'_blocks_17_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(308495,42471,'blocks_17_options_format','row'),(308496,42471,'_blocks_17_options_format','field_64bfde9a90690'),(308497,42471,'blocks_17_options',''),(308498,42471,'_blocks_17_options','field_64bfdd9b90684'),(308499,42471,'blocks_17_icon_row_items_0_icon','pass-rate.svg'),(308500,42471,'_blocks_17_icon_row_items_0_icon','field_64bfdd9b9068d'),(308501,42471,'blocks_17_icon_row_items_0_label','More Accurate Assessments'),(308502,42471,'_blocks_17_icon_row_items_0_label','field_64bfdd9c9068e'),(308503,42471,'blocks_17_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(308504,42471,'_blocks_17_icon_row_items_0_text','field_64bfdd9c9068f'),(308505,42471,'blocks_17_icon_row_items_1_icon','exceptional-support.svg'),(308506,42471,'_blocks_17_icon_row_items_1_icon','field_64bfdd9b9068d'),(308507,42471,'blocks_17_icon_row_items_1_label','Personalised Movement Strategies'),(308508,42471,'_blocks_17_icon_row_items_1_label','field_64bfdd9c9068e'),(308509,42471,'blocks_17_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(308510,42471,'_blocks_17_icon_row_items_1_text','field_64bfdd9c9068f'),(308511,42471,'blocks_17_icon_row_items_2_icon','lifetime-course-access.svg'),(308512,42471,'_blocks_17_icon_row_items_2_icon','field_64bfdd9b9068d'),(308513,42471,'blocks_17_icon_row_items_2_label','Injury Prevention and Longevity'),(308514,42471,'_blocks_17_icon_row_items_2_label','field_64bfdd9c9068e'),(308515,42471,'blocks_17_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(308516,42471,'_blocks_17_icon_row_items_2_text','field_64bfdd9c9068f'),(308517,42471,'blocks_17_icon_row_items_3_icon','recognised.svg'),(308518,42471,'_blocks_17_icon_row_items_3_icon','field_64bfdd9b9068d'),(308519,42471,'blocks_17_icon_row_items_3_label','Optimised Performance'),(308520,42471,'_blocks_17_icon_row_items_3_label','field_64bfdd9c9068e'),(308521,42471,'blocks_17_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(308522,42471,'_blocks_17_icon_row_items_3_text','field_64bfdd9c9068f'),(308523,42471,'blocks_17_icon_row_items','4'),(308524,42471,'_blocks_17_icon_row_items','field_64bfdd9b9068c'),(308525,42471,'blocks_18_acfe_flexible_toggle',''),(308526,42471,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308527,42471,'blocks_18_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(308528,42471,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308529,42471,'blocks_18_options_theme','#ffffff'),(308530,42471,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(308531,42471,'blocks_18_options_reverse','0'),(308532,42471,'_blocks_18_options_reverse','field_61768049bb8ac'),(308533,42471,'blocks_18_options',''),(308534,42471,'_blocks_18_options','field_617682517c334'),(308535,42471,'blocks_18_split_5050_image','41501'),(308536,42471,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(308537,42471,'blocks_18_split_5050_video',''),(308538,42471,'_blocks_18_split_5050_video','field_6239f3160848a'),(308539,42471,'blocks_18_split_5050_content_title',''),(308540,42471,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(308541,42471,'blocks_18_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(308542,42471,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(308543,42471,'blocks_18_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(308544,42471,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(308545,42471,'blocks_18_split_5050_content_actions',''),(308546,42471,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(308547,42471,'blocks_18_split_5050_content',''),(308548,42471,'_blocks_18_split_5050_content','field_61767afceb8ba'),(308549,42471,'blocks_21_acfe_flexible_toggle',''),(308550,42471,'_blocks_21_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(308551,42471,'blocks_21_acfe_flexible_layout_title','Conclusion'),(308552,42471,'_blocks_21_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(308553,42471,'blocks_21_options_theme','#b61234'),(308554,42471,'_blocks_21_options_theme','field_6176830e2ad17'),(308555,42471,'blocks_21_options',''),(308556,42471,'_blocks_21_options','field_6176830e2ad16'),(308557,42471,'blocks_21_text_block_heading','Conclusion'),(308558,42471,'_blocks_21_text_block_heading','field_617669d413097'),(308559,42471,'blocks_21_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(308560,42471,'_blocks_21_text_block_content','field_617669ec13098'),(308561,42471,'blocks_22_acfe_flexible_toggle',''),(308562,42471,'_blocks_22_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(308563,42471,'blocks_22_acfe_flexible_layout_title','Promo Panel'),(308564,42471,'_blocks_22_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(308565,42471,'blocks_22_options_alignment','center'),(308566,42471,'_blocks_22_options_alignment','field_61769449f5490'),(308567,42471,'blocks_22_options',''),(308568,42471,'_blocks_22_options','field_617693e1428f0'),(308569,42471,'blocks_22_promo_panel_image','40342'),(308570,42471,'_blocks_22_promo_panel_image','field_617693e1428f3'),(308571,42471,'blocks_22_promo_panel_content_heading','Want to Get Started?'),(308572,42471,'_blocks_22_promo_panel_content_heading','field_617693e1428f6'),(308573,42471,'blocks_22_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(308574,42471,'_blocks_22_promo_panel_content_text','field_617693e1428f7'),(308575,42471,'blocks_22_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(308576,42471,'_blocks_22_promo_panel_content_actions_0_button','field_617693e1428f9'),(308577,42471,'blocks_22_promo_panel_content_actions','1'),(308578,42471,'_blocks_22_promo_panel_content_actions','field_617693e1428f8'),(308579,42471,'blocks_22_promo_panel_content',''),(308580,42471,'_blocks_22_promo_panel_content','field_617693e1428f4'),(308581,42431,'blocks_2_acfe_flexible_toggle',''),(308582,42431,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308583,42431,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(308584,42431,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308585,42431,'blocks_2_options_theme','#f5f5f5'),(308586,42431,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(308587,42431,'blocks_2_options_reverse','1'),(308588,42431,'_blocks_2_options_reverse','field_61768049bb8ac'),(308589,42431,'blocks_2_options',''),(308590,42431,'_blocks_2_options','field_617682517c334'),(308591,42431,'blocks_2_split_5050_image','41307'),(308592,42431,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(308593,42431,'blocks_2_split_5050_video',''),(308594,42431,'_blocks_2_split_5050_video','field_6239f3160848a'),(308595,42431,'blocks_2_split_5050_content_title',''),(308596,42431,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(308597,42431,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(308598,42431,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(308599,42431,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(308600,42431,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(308601,42431,'blocks_2_split_5050_content_actions',''),(308602,42431,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(308603,42431,'blocks_2_split_5050_content',''),(308604,42431,'_blocks_2_split_5050_content','field_61767afceb8ba'),(308605,42431,'blocks_4_acfe_flexible_toggle',''),(308606,42431,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(308607,42431,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(308608,42431,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(308609,42431,'blocks_4_options_theme','#ffffff'),(308610,42431,'_blocks_4_options_theme','field_6176830e2ad17'),(308611,42431,'blocks_4_options',''),(308612,42431,'_blocks_4_options','field_6176830e2ad16'),(308613,42431,'blocks_4_text_block_heading','Who Should Study MSK?'),(308614,42431,'_blocks_4_text_block_heading','field_617669d413097'),(308615,42431,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(308616,42431,'_blocks_4_text_block_content','field_617669ec13098'),(308617,42431,'blocks_5_acfe_flexible_toggle',''),(308618,42431,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308619,42431,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(308620,42431,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308621,42431,'blocks_5_options_theme','#ffffff'),(308622,42431,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(308623,42431,'blocks_5_options_reverse','0'),(308624,42431,'_blocks_5_options_reverse','field_61768049bb8ac'),(308625,42431,'blocks_5_options',''),(308626,42431,'_blocks_5_options','field_617682517c334'),(308627,42431,'blocks_5_split_5050_image','41542'),(308628,42431,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(308629,42431,'blocks_5_split_5050_video',''),(308630,42431,'_blocks_5_split_5050_video','field_6239f3160848a'),(308631,42431,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(308632,42431,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(308633,42431,'blocks_5_split_5050_content_heading',''),(308634,42431,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(308635,42431,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(308636,42431,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(308637,42431,'blocks_5_split_5050_content_actions',''),(308638,42431,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(308639,42431,'blocks_5_split_5050_content',''),(308640,42431,'_blocks_5_split_5050_content','field_61767afceb8ba'),(308641,42431,'blocks_10_acfe_flexible_toggle',''),(308642,42431,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(308643,42431,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(308644,42431,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(308645,42431,'blocks_10_options_theme','#f5f5f5'),(308646,42431,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(308647,42431,'blocks_10_options_state','0'),(308648,42431,'_blocks_10_options_state','field_6239fcb7508c5'),(308649,42431,'blocks_10_options',''),(308650,42431,'_blocks_10_options','field_6177e2991ac44'),(308651,42431,'blocks_10_content_title',''),(308652,42431,'_blocks_10_content_title','field_64d237e8bb1e2'),(308653,42431,'blocks_10_content_heading','Common MSK Conditions'),(308654,42431,'_blocks_10_content_heading','field_64d237e8bb1e3'),(308655,42431,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(308656,42431,'_blocks_10_content_text','field_64d237e8bb1e4'),(308657,42431,'blocks_10_content_actions',''),(308658,42431,'_blocks_10_content_actions','field_64d237e8bb1e5'),(308659,42431,'blocks_10_content_align','left'),(308660,42431,'_blocks_10_content_align','field_64d2443e6b6aa'),(308661,42431,'blocks_10_content',''),(308662,42431,'_blocks_10_content','field_64d237e8bb1e1'),(308663,42431,'blocks_10_accordion_content','custom'),(308664,42431,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(308665,42431,'blocks_10_accordion_items_0_title','Osteoarthritis'),(308666,42431,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(308667,42431,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(308668,42431,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(308669,42431,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(308670,42431,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(308671,42431,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(308672,42431,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(308673,42431,'blocks_10_accordion_items_2_title','Back Pain'),(308674,42431,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(308675,42431,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by muscle imbalances or prolonged inactivity.'),(308676,42431,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(308677,42431,'blocks_10_accordion_items_3_title','Osteoporosis'),(308678,42431,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(308679,42431,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(308680,42431,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(308681,42431,'blocks_10_accordion_items_4_title','Tendinitis'),(308682,42431,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(308683,42431,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(308684,42431,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(308685,42431,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(308686,42431,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(308687,42431,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(308688,42431,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(308689,42431,'blocks_10_accordion_items_6_title','Fibromyalgia'),(308690,42431,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(308691,42431,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(308692,42431,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(308693,42431,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(308694,42431,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(308695,42431,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(308696,42431,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(308697,42431,'blocks_10_accordion_items','8'),(308698,42431,'_blocks_10_accordion_items','field_6177e2991ac4c'),(308699,42431,'blocks_10_actions',''),(308700,42431,'_blocks_10_actions','field_61a746a817f7a'),(308701,42431,'blocks_11_acfe_flexible_toggle',''),(308702,42431,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(308703,42431,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(308704,42431,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(308705,42431,'blocks_11_options_theme','#ffffff'),(308706,42431,'_blocks_11_options_theme','field_6176830e2ad17'),(308707,42431,'blocks_11_options',''),(308708,42431,'_blocks_11_options','field_6176830e2ad16'),(308709,42431,'blocks_11_text_block_heading','The Importance of MSK Education'),(308710,42431,'_blocks_11_text_block_heading','field_617669d413097'),(308711,42431,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(308712,42431,'_blocks_11_text_block_content','field_617669ec13098'),(308713,42431,'blocks_12_acfe_flexible_toggle',''),(308714,42431,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308715,42431,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(308716,42431,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308717,42431,'blocks_12_options_theme','#ffffff'),(308718,42431,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(308719,42431,'blocks_12_options_reverse','1'),(308720,42431,'_blocks_12_options_reverse','field_61768049bb8ac'),(308721,42431,'blocks_12_options',''),(308722,42431,'_blocks_12_options','field_617682517c334'),(308723,42431,'blocks_12_split_5050_image','41498'),(308724,42431,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(308725,42431,'blocks_12_split_5050_video',''),(308726,42431,'_blocks_12_split_5050_video','field_6239f3160848a'),(308727,42431,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(308728,42431,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(308729,42431,'blocks_12_split_5050_content_heading',''),(308730,42431,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(308731,42431,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(308732,42431,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(308733,42431,'blocks_12_split_5050_content_actions',''),(308734,42431,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(308735,42431,'blocks_12_split_5050_content',''),(308736,42431,'_blocks_12_split_5050_content','field_61767afceb8ba'),(308841,42472,'hide_hero','0'),(308842,42472,'_hide_hero','field_66a2380fcda39'),(308843,42472,'hero_title',''),(308844,42472,'_hero_title','field_617571fe285e8'),(308845,42472,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(308846,42472,'_hero_text','field_6175723c285e9'),(308847,42472,'hero_actions','1'),(308848,42472,'_hero_actions','field_61757270285ea'),(308849,42472,'hero_style','default'),(308850,42472,'_hero_style','field_62051d9dc5324'),(308851,42472,'hero_image_pos_x','right'),(308852,42472,'_hero_image_pos_x','field_62ec3d05390bb'),(308853,42472,'hero_image_pos_y','top'),(308854,42472,'_hero_image_pos_y','field_62ec3d05390bc'),(308855,42472,'hero_image_pos',''),(308856,42472,'_hero_image_pos','field_62ec3d05390ba'),(308857,42472,'fft_hide_from_listings','0'),(308858,42472,'_fft_hide_from_listings','field_61f1320446ab2'),(308859,42472,'post_format','402'),(308860,42472,'_post_format','field_61756bfb51898'),(308861,42472,'post_author',''),(308862,42472,'_post_author','field_62ec389d22113'),(308863,42472,'post_reviewer',''),(308864,42472,'_post_reviewer','field_627140a2a9800'),(308865,42472,'post_table_of_contents','0'),(308866,42472,'_post_table_of_contents','field_65c503bc846a6'),(308867,42472,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(308868,42472,'_blocks','field_6176696113096'),(308869,42472,'_thumbnail_id','41331'),(308870,42472,'__thumbnail_id','field_617570855ddaf'),(308871,42472,'blocks_0_acfe_flexible_toggle',''),(308872,42472,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(308873,42472,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(308874,42472,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(308875,42472,'blocks_0_options_theme','#ffffff'),(308876,42472,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(308877,42472,'blocks_0_options',''),(308878,42472,'_blocks_0_options','field_6177b758246ae'),(308879,42472,'blocks_0_link_stack_content_title',''),(308880,42472,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(308881,42472,'blocks_0_link_stack_content_heading','What is MSK?'),(308882,42472,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(308883,42472,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(308884,42472,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(308885,42472,'blocks_0_link_stack_content_actions_0_button',''),(308886,42472,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(308887,42472,'blocks_0_link_stack_content_actions','1'),(308888,42472,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(308889,42472,'blocks_0_link_stack_content',''),(308890,42472,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(308891,42472,'blocks_0_link_stack_0_label','1.'),(308892,42472,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(308893,42472,'blocks_0_link_stack_0_title','Overview'),(308894,42472,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(308895,42472,'blocks_0_link_stack_0_url','#overview'),(308896,42472,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(308897,42472,'blocks_0_link_stack_1_label','2.'),(308898,42472,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(308899,42472,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(308900,42472,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(308901,42472,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(308902,42472,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(308903,42472,'blocks_0_link_stack_2_label','3.'),(308904,42472,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(308905,42472,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(308906,42472,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(308907,42472,'blocks_0_link_stack_2_url','#who-should-study-msk'),(308908,42472,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(308909,42472,'blocks_0_link_stack_3_label','4.'),(308910,42472,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(308911,42472,'blocks_0_link_stack_3_title','Common MSK Conditions'),(308912,42472,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(308913,42472,'blocks_0_link_stack_3_url','#common-msk-conditions'),(308914,42472,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(308915,42472,'blocks_0_link_stack_4_label','5.'),(308916,42472,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(308917,42472,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(308918,42472,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(308919,42472,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(308920,42472,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(308921,42472,'blocks_0_link_stack_5_label','6.'),(308922,42472,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(308923,42472,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(308924,42472,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(308925,42472,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(308926,42472,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(308927,42472,'blocks_0_link_stack','6'),(308928,42472,'_blocks_0_link_stack','field_6177b7f600cff'),(308929,42472,'blocks_1_acfe_flexible_toggle',''),(308930,42472,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308931,42472,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(308932,42472,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308933,42472,'blocks_1_options_theme','#ffffff'),(308934,42472,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(308935,42472,'blocks_1_options_reverse','0'),(308936,42472,'_blocks_1_options_reverse','field_61768049bb8ac'),(308937,42472,'blocks_1_options',''),(308938,42472,'_blocks_1_options','field_617682517c334'),(308939,42472,'blocks_1_split_5050_image','40615'),(308940,42472,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(308941,42472,'blocks_1_split_5050_video',''),(308942,42472,'_blocks_1_split_5050_video','field_6239f3160848a'),(308943,42472,'blocks_1_split_5050_content_title',''),(308944,42472,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(308945,42472,'blocks_1_split_5050_content_heading','Overview'),(308946,42472,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(308947,42472,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(308948,42472,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(308949,42472,'blocks_1_split_5050_content_actions',''),(308950,42472,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(308951,42472,'blocks_1_split_5050_content',''),(308952,42472,'_blocks_1_split_5050_content','field_61767afceb8ba'),(308953,42472,'blocks_3_acfe_flexible_toggle','1'),(308954,42472,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308955,42472,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(308956,42472,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308957,42472,'blocks_3_options_theme','#f5f5f5'),(308958,42472,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(308959,42472,'blocks_3_options_reverse','1'),(308960,42472,'_blocks_3_options_reverse','field_61768049bb8ac'),(308961,42472,'blocks_3_options',''),(308962,42472,'_blocks_3_options','field_617682517c334'),(308963,42472,'blocks_3_split_5050_image','41330'),(308964,42472,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(308965,42472,'blocks_3_split_5050_video',''),(308966,42472,'_blocks_3_split_5050_video','field_6239f3160848a'),(308967,42472,'blocks_3_split_5050_content_title',''),(308968,42472,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(308969,42472,'blocks_3_split_5050_content_heading',''),(308970,42472,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(308971,42472,'blocks_3_split_5050_content_text',''),(308972,42472,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(308973,42472,'blocks_3_split_5050_content_actions',''),(308974,42472,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(308975,42472,'blocks_3_split_5050_content',''),(308976,42472,'_blocks_3_split_5050_content','field_61767afceb8ba'),(308977,42472,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(308978,42472,'_hero_actions_0_button','field_61757281285eb'),(308979,42472,'blocks_7_acfe_flexible_toggle',''),(308980,42472,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(308981,42472,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(308982,42472,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(308983,42472,'blocks_7_options_theme','#ffffff'),(308984,42472,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(308985,42472,'blocks_7_options_reverse','0'),(308986,42472,'_blocks_7_options_reverse','field_61768049bb8ac'),(308987,42472,'blocks_7_options',''),(308988,42472,'_blocks_7_options','field_617682517c334'),(308989,42472,'blocks_7_split_5050_image','41539'),(308990,42472,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(308991,42472,'blocks_7_split_5050_video',''),(308992,42472,'_blocks_7_split_5050_video','field_6239f3160848a'),(308993,42472,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(308994,42472,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(308995,42472,'blocks_7_split_5050_content_heading',''),(308996,42472,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(308997,42472,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(308998,42472,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(308999,42472,'blocks_7_split_5050_content_actions',''),(309000,42472,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(309001,42472,'blocks_7_split_5050_content',''),(309002,42472,'_blocks_7_split_5050_content','field_61767afceb8ba'),(309003,42472,'blocks_8_acfe_flexible_toggle',''),(309004,42472,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309005,42472,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(309006,42472,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309007,42472,'blocks_8_options_theme','#ffffff'),(309008,42472,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(309009,42472,'blocks_8_options_reverse','0'),(309010,42472,'_blocks_8_options_reverse','field_61768049bb8ac'),(309011,42472,'blocks_8_options',''),(309012,42472,'_blocks_8_options','field_617682517c334'),(309013,42472,'blocks_8_split_5050_image','41502'),(309014,42472,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(309015,42472,'blocks_8_split_5050_video',''),(309016,42472,'_blocks_8_split_5050_video','field_6239f3160848a'),(309017,42472,'blocks_8_split_5050_content_title','Educators and Researchers'),(309018,42472,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(309019,42472,'blocks_8_split_5050_content_heading',''),(309020,42472,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(309021,42472,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(309022,42472,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(309023,42472,'blocks_8_split_5050_content_actions',''),(309024,42472,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(309025,42472,'blocks_8_split_5050_content',''),(309026,42472,'_blocks_8_split_5050_content','field_61767afceb8ba'),(309027,42472,'blocks_9_acfe_flexible_toggle',''),(309028,42472,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309029,42472,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(309030,42472,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309031,42472,'blocks_9_options_theme','#ffffff'),(309032,42472,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(309033,42472,'blocks_9_options_reverse','0'),(309034,42472,'_blocks_9_options_reverse','field_61768049bb8ac'),(309035,42472,'blocks_9_options',''),(309036,42472,'_blocks_9_options','field_617682517c334'),(309037,42472,'blocks_9_split_5050_image','41506'),(309038,42472,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(309039,42472,'blocks_9_split_5050_video',''),(309040,42472,'_blocks_9_split_5050_video','field_6239f3160848a'),(309041,42472,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(309042,42472,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(309043,42472,'blocks_9_split_5050_content_heading',''),(309044,42472,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(309045,42472,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(309046,42472,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(309047,42472,'blocks_9_split_5050_content_actions',''),(309048,42472,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(309049,42472,'blocks_9_split_5050_content',''),(309050,42472,'_blocks_9_split_5050_content','field_61767afceb8ba'),(309051,42472,'blocks_13_acfe_flexible_toggle',''),(309052,42472,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309053,42472,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(309054,42472,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309055,42472,'blocks_13_options_theme','#ffffff'),(309056,42472,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(309057,42472,'blocks_13_options_reverse','1'),(309058,42472,'_blocks_13_options_reverse','field_61768049bb8ac'),(309059,42472,'blocks_13_options',''),(309060,42472,'_blocks_13_options','field_617682517c334'),(309061,42472,'blocks_13_split_5050_image','40387'),(309062,42472,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(309063,42472,'blocks_13_split_5050_video',''),(309064,42472,'_blocks_13_split_5050_video','field_6239f3160848a'),(309065,42472,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(309066,42472,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(309067,42472,'blocks_13_split_5050_content_heading',''),(309068,42472,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(309069,42472,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(309070,42472,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(309071,42472,'blocks_13_split_5050_content_actions',''),(309072,42472,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(309073,42472,'blocks_13_split_5050_content',''),(309074,42472,'_blocks_13_split_5050_content','field_61767afceb8ba'),(309075,42472,'blocks_14_acfe_flexible_toggle',''),(309076,42472,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309077,42472,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(309078,42472,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309079,42472,'blocks_14_options_theme','#ffffff'),(309080,42472,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(309081,42472,'blocks_14_options_reverse','1'),(309082,42472,'_blocks_14_options_reverse','field_61768049bb8ac'),(309083,42472,'blocks_14_options',''),(309084,42472,'_blocks_14_options','field_617682517c334'),(309085,42472,'blocks_14_split_5050_image','18856'),(309086,42472,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(309087,42472,'blocks_14_split_5050_video',''),(309088,42472,'_blocks_14_split_5050_video','field_6239f3160848a'),(309089,42472,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(309090,42472,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(309091,42472,'blocks_14_split_5050_content_heading',''),(309092,42472,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(309093,42472,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(309094,42472,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(309095,42472,'blocks_14_split_5050_content_actions',''),(309096,42472,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(309097,42472,'blocks_14_split_5050_content',''),(309098,42472,'_blocks_14_split_5050_content','field_61767afceb8ba'),(309099,42472,'blocks_19_acfe_flexible_toggle',''),(309100,42472,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(309101,42472,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(309102,42472,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(309103,42472,'blocks_19_options_theme','#ffffff'),(309104,42472,'_blocks_19_options_theme','field_6176830e2ad17'),(309105,42472,'blocks_19_options',''),(309106,42472,'_blocks_19_options','field_6176830e2ad16'),(309107,42472,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(309108,42472,'_blocks_19_text_block_heading','field_617669d413097'),(309109,42472,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(309110,42472,'_blocks_19_text_block_content','field_617669ec13098'),(309111,42472,'blocks_20_acfe_flexible_toggle',''),(309112,42472,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(309113,42472,'blocks_20_acfe_flexible_layout_title','Conclusion'),(309114,42472,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(309115,42472,'blocks_20_options_theme','#b61234'),(309116,42472,'_blocks_20_options_theme','field_6176830e2ad17'),(309117,42472,'blocks_20_options',''),(309118,42472,'_blocks_20_options','field_6176830e2ad16'),(309119,42472,'blocks_20_text_block_heading','Conclusion'),(309120,42472,'_blocks_20_text_block_heading','field_617669d413097'),(309121,42472,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(309122,42472,'_blocks_20_text_block_content','field_617669ec13098'),(309123,42472,'blocks_6_acfe_flexible_toggle',''),(309124,42472,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309125,42472,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(309126,42472,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309127,42472,'blocks_6_options_theme','#ffffff'),(309128,42472,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(309129,42472,'blocks_6_options_reverse','0'),(309130,42472,'_blocks_6_options_reverse','field_61768049bb8ac'),(309131,42472,'blocks_6_options',''),(309132,42472,'_blocks_6_options','field_617682517c334'),(309133,42472,'blocks_6_split_5050_image','41505'),(309134,42472,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(309135,42472,'blocks_6_split_5050_video',''),(309136,42472,'_blocks_6_split_5050_video','field_6239f3160848a'),(309137,42472,'blocks_6_split_5050_content_title','Current Practitioners'),(309138,42472,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(309139,42472,'blocks_6_split_5050_content_heading',''),(309140,42472,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(309141,42472,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(309142,42472,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(309143,42472,'blocks_6_split_5050_content_actions',''),(309144,42472,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(309145,42472,'blocks_6_split_5050_content',''),(309146,42472,'_blocks_6_split_5050_content','field_61767afceb8ba'),(309147,42472,'blocks_2_acfe_flexible_toggle',''),(309148,42472,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309149,42472,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(309150,42472,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309151,42472,'blocks_2_options_theme','#f5f5f5'),(309152,42472,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(309153,42472,'blocks_2_options_reverse','1'),(309154,42472,'_blocks_2_options_reverse','field_61768049bb8ac'),(309155,42472,'blocks_2_options',''),(309156,42472,'_blocks_2_options','field_617682517c334'),(309157,42472,'blocks_2_split_5050_image','40618'),(309158,42472,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(309159,42472,'blocks_2_split_5050_video',''),(309160,42472,'_blocks_2_split_5050_video','field_6239f3160848a'),(309161,42472,'blocks_2_split_5050_content_title',''),(309162,42472,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(309163,42472,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(309164,42472,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(309165,42472,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(309166,42472,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(309167,42472,'blocks_2_split_5050_content_actions',''),(309168,42472,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(309169,42472,'blocks_2_split_5050_content',''),(309170,42472,'_blocks_2_split_5050_content','field_61767afceb8ba'),(309171,42472,'blocks_4_acfe_flexible_toggle',''),(309172,42472,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(309173,42472,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(309174,42472,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(309175,42472,'blocks_4_options_theme','#ffffff'),(309176,42472,'_blocks_4_options_theme','field_6176830e2ad17'),(309177,42472,'blocks_4_options',''),(309178,42472,'_blocks_4_options','field_6176830e2ad16'),(309179,42472,'blocks_4_text_block_heading','Who Should Study MSK?'),(309180,42472,'_blocks_4_text_block_heading','field_617669d413097'),(309181,42472,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(309182,42472,'_blocks_4_text_block_content','field_617669ec13098'),(309183,42472,'blocks_5_acfe_flexible_toggle',''),(309184,42472,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309185,42472,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(309186,42472,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309187,42472,'blocks_5_options_theme','#ffffff'),(309188,42472,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(309189,42472,'blocks_5_options_reverse','0'),(309190,42472,'_blocks_5_options_reverse','field_61768049bb8ac'),(309191,42472,'blocks_5_options',''),(309192,42472,'_blocks_5_options','field_617682517c334'),(309193,42472,'blocks_5_split_5050_image','41542'),(309194,42472,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(309195,42472,'blocks_5_split_5050_video',''),(309196,42472,'_blocks_5_split_5050_video','field_6239f3160848a'),(309197,42472,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(309198,42472,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(309199,42472,'blocks_5_split_5050_content_heading',''),(309200,42472,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(309201,42472,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(309202,42472,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(309203,42472,'blocks_5_split_5050_content_actions',''),(309204,42472,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(309205,42472,'blocks_5_split_5050_content',''),(309206,42472,'_blocks_5_split_5050_content','field_61767afceb8ba'),(309207,42472,'blocks_10_acfe_flexible_toggle',''),(309208,42472,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(309209,42472,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(309210,42472,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(309211,42472,'blocks_10_options_theme','#f5f5f5'),(309212,42472,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(309213,42472,'blocks_10_options_state','0'),(309214,42472,'_blocks_10_options_state','field_6239fcb7508c5'),(309215,42472,'blocks_10_options',''),(309216,42472,'_blocks_10_options','field_6177e2991ac44'),(309217,42472,'blocks_10_content_title','Common MSK Conditions'),(309218,42472,'_blocks_10_content_title','field_64d237e8bb1e2'),(309219,42472,'blocks_10_content_heading','Common MSK Conditions'),(309220,42472,'_blocks_10_content_heading','field_64d237e8bb1e3'),(309221,42472,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(309222,42472,'_blocks_10_content_text','field_64d237e8bb1e4'),(309223,42472,'blocks_10_content_actions',''),(309224,42472,'_blocks_10_content_actions','field_64d237e8bb1e5'),(309225,42472,'blocks_10_content_align','left'),(309226,42472,'_blocks_10_content_align','field_64d2443e6b6aa'),(309227,42472,'blocks_10_content',''),(309228,42472,'_blocks_10_content','field_64d237e8bb1e1'),(309229,42472,'blocks_10_accordion_content','custom'),(309230,42472,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(309231,42472,'blocks_10_accordion_items_0_title','Osteoarthritis'),(309232,42472,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(309233,42472,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(309234,42472,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(309235,42472,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(309236,42472,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(309237,42472,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(309238,42472,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(309239,42472,'blocks_10_accordion_items_2_title','Back Pain'),(309240,42472,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(309241,42472,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(309242,42472,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(309243,42472,'blocks_10_accordion_items_3_title','Osteoporosis'),(309244,42472,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(309245,42472,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(309246,42472,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(309247,42472,'blocks_10_accordion_items_4_title','Tendinitis'),(309248,42472,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(309249,42472,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(309250,42472,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(309251,42472,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(309252,42472,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(309253,42472,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(309254,42472,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(309255,42472,'blocks_10_accordion_items_6_title','Fibromyalgia'),(309256,42472,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(309257,42472,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(309258,42472,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(309259,42472,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(309260,42472,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(309261,42472,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(309262,42472,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(309263,42472,'blocks_10_accordion_items','8'),(309264,42472,'_blocks_10_accordion_items','field_6177e2991ac4c'),(309265,42472,'blocks_10_actions',''),(309266,42472,'_blocks_10_actions','field_61a746a817f7a'),(309267,42472,'blocks_11_acfe_flexible_toggle',''),(309268,42472,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(309269,42472,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(309270,42472,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(309271,42472,'blocks_11_options_theme','#ffffff'),(309272,42472,'_blocks_11_options_theme','field_6176830e2ad17'),(309273,42472,'blocks_11_options',''),(309274,42472,'_blocks_11_options','field_6176830e2ad16'),(309275,42472,'blocks_11_text_block_heading','The Importance of MSK Education'),(309276,42472,'_blocks_11_text_block_heading','field_617669d413097'),(309277,42472,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(309278,42472,'_blocks_11_text_block_content','field_617669ec13098'),(309279,42472,'blocks_12_acfe_flexible_toggle',''),(309280,42472,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309281,42472,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(309282,42472,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309283,42472,'blocks_12_options_theme','#ffffff'),(309284,42472,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(309285,42472,'blocks_12_options_reverse','1'),(309286,42472,'_blocks_12_options_reverse','field_61768049bb8ac'),(309287,42472,'blocks_12_options',''),(309288,42472,'_blocks_12_options','field_617682517c334'),(309289,42472,'blocks_12_split_5050_image','41498'),(309290,42472,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(309291,42472,'blocks_12_split_5050_video',''),(309292,42472,'_blocks_12_split_5050_video','field_6239f3160848a'),(309293,42472,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(309294,42472,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(309295,42472,'blocks_12_split_5050_content_heading',''),(309296,42472,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(309297,42472,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(309298,42472,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(309299,42472,'blocks_12_split_5050_content_actions',''),(309300,42472,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(309301,42472,'blocks_12_split_5050_content',''),(309302,42472,'_blocks_12_split_5050_content','field_61767afceb8ba'),(309303,42472,'blocks_15_acfe_flexible_toggle',''),(309304,42472,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(309305,42472,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(309306,42472,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(309307,42472,'blocks_15_options_theme','#b61234'),(309308,42472,'_blocks_15_options_theme','field_6176830e2ad17'),(309309,42472,'blocks_15_options',''),(309310,42472,'_blocks_15_options','field_6176830e2ad16'),(309311,42472,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(309312,42472,'_blocks_15_text_block_heading','field_617669d413097'),(309313,42472,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(309314,42472,'_blocks_15_text_block_content','field_617669ec13098'),(309315,42472,'blocks_16_acfe_flexible_toggle',''),(309316,42472,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(309317,42472,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(309318,42472,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(309319,42472,'blocks_16_options_theme','#b61234'),(309320,42472,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(309321,42472,'blocks_16_options_format','row'),(309322,42472,'_blocks_16_options_format','field_64bfde9a90690'),(309323,42472,'blocks_16_options',''),(309324,42472,'_blocks_16_options','field_64bfdd9b90684'),(309325,42472,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(309326,42472,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(309327,42472,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(309328,42472,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(309329,42472,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(309330,42472,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(309331,42472,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(309332,42472,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(309333,42472,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(309334,42472,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(309335,42472,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(309336,42472,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(309337,42472,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(309338,42472,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(309339,42472,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(309340,42472,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(309341,42472,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(309342,42472,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(309343,42472,'blocks_16_icon_row_items_3_icon','recognised.svg'),(309344,42472,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(309345,42472,'blocks_16_icon_row_items_3_label','Optimised Performance'),(309346,42472,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(309347,42472,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(309348,42472,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(309349,42472,'blocks_16_icon_row_items','4'),(309350,42472,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(309351,42472,'blocks_17_acfe_flexible_toggle',''),(309352,42472,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309353,42472,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(309354,42472,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309355,42472,'blocks_17_options_theme','#ffffff'),(309356,42472,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(309357,42472,'blocks_17_options_reverse','0'),(309358,42472,'_blocks_17_options_reverse','field_61768049bb8ac'),(309359,42472,'blocks_17_options',''),(309360,42472,'_blocks_17_options','field_617682517c334'),(309361,42472,'blocks_17_split_5050_image','41501'),(309362,42472,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(309363,42472,'blocks_17_split_5050_video',''),(309364,42472,'_blocks_17_split_5050_video','field_6239f3160848a'),(309365,42472,'blocks_17_split_5050_content_title',''),(309366,42472,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(309367,42472,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(309368,42472,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(309369,42472,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(309370,42472,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(309371,42472,'blocks_17_split_5050_content_actions',''),(309372,42472,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(309373,42472,'blocks_17_split_5050_content',''),(309374,42472,'_blocks_17_split_5050_content','field_61767afceb8ba'),(309375,42472,'blocks_18_acfe_flexible_toggle',''),(309376,42472,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(309377,42472,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(309378,42472,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(309379,42472,'blocks_18_options_theme','#ffffff'),(309380,42472,'_blocks_18_options_theme','field_6176830e2ad17'),(309381,42472,'blocks_18_options',''),(309382,42472,'_blocks_18_options','field_6176830e2ad16'),(309383,42472,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(309384,42472,'_blocks_18_text_block_heading','field_617669d413097'),(309385,42472,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(309386,42472,'_blocks_18_text_block_content','field_617669ec13098'),(309387,42472,'blocks_21_acfe_flexible_toggle',''),(309388,42472,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(309389,42472,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(309390,42472,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(309391,42472,'blocks_21_options_alignment','center'),(309392,42472,'_blocks_21_options_alignment','field_61769449f5490'),(309393,42472,'blocks_21_options',''),(309394,42472,'_blocks_21_options','field_617693e1428f0'),(309395,42472,'blocks_21_promo_panel_image','40342'),(309396,42472,'_blocks_21_promo_panel_image','field_617693e1428f3'),(309397,42472,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(309398,42472,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(309399,42472,'blocks_21_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(309400,42472,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(309401,42472,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(309402,42472,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(309403,42472,'blocks_21_promo_panel_content_actions','1'),(309404,42472,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(309405,42472,'blocks_21_promo_panel_content',''),(309406,42472,'_blocks_21_promo_panel_content','field_617693e1428f4'),(309407,42473,'hide_hero','0'),(309408,42473,'_hide_hero','field_66a2380fcda39'),(309409,42473,'hero_title',''),(309410,42473,'_hero_title','field_617571fe285e8'),(309411,42473,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(309412,42473,'_hero_text','field_6175723c285e9'),(309413,42473,'hero_actions','1'),(309414,42473,'_hero_actions','field_61757270285ea'),(309415,42473,'hero_style','default'),(309416,42473,'_hero_style','field_62051d9dc5324'),(309417,42473,'hero_image_pos_x','right'),(309418,42473,'_hero_image_pos_x','field_62ec3d05390bb'),(309419,42473,'hero_image_pos_y','top'),(309420,42473,'_hero_image_pos_y','field_62ec3d05390bc'),(309421,42473,'hero_image_pos',''),(309422,42473,'_hero_image_pos','field_62ec3d05390ba'),(309423,42473,'fft_hide_from_listings','0'),(309424,42473,'_fft_hide_from_listings','field_61f1320446ab2'),(309425,42473,'post_format','402'),(309426,42473,'_post_format','field_61756bfb51898'),(309427,42473,'post_author',''),(309428,42473,'_post_author','field_62ec389d22113'),(309429,42473,'post_reviewer',''),(309430,42473,'_post_reviewer','field_627140a2a9800'),(309431,42473,'post_table_of_contents','0'),(309432,42473,'_post_table_of_contents','field_65c503bc846a6'),(309433,42473,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(309434,42473,'_blocks','field_6176696113096'),(309435,42473,'_thumbnail_id','41331'),(309436,42473,'__thumbnail_id','field_617570855ddaf'),(309437,42473,'blocks_0_acfe_flexible_toggle',''),(309438,42473,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(309439,42473,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(309440,42473,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(309441,42473,'blocks_0_options_theme','#ffffff'),(309442,42473,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(309443,42473,'blocks_0_options',''),(309444,42473,'_blocks_0_options','field_6177b758246ae'),(309445,42473,'blocks_0_link_stack_content_title',''),(309446,42473,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(309447,42473,'blocks_0_link_stack_content_heading','What is MSK?'),(309448,42473,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(309449,42473,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(309450,42473,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(309451,42473,'blocks_0_link_stack_content_actions_0_button',''),(309452,42473,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(309453,42473,'blocks_0_link_stack_content_actions','1'),(309454,42473,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(309455,42473,'blocks_0_link_stack_content',''),(309456,42473,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(309457,42473,'blocks_0_link_stack_0_label','1.'),(309458,42473,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(309459,42473,'blocks_0_link_stack_0_title','Overview'),(309460,42473,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(309461,42473,'blocks_0_link_stack_0_url','#overview'),(309462,42473,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(309463,42473,'blocks_0_link_stack_1_label','2.'),(309464,42473,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(309465,42473,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(309466,42473,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(309467,42473,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(309468,42473,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(309469,42473,'blocks_0_link_stack_2_label','3.'),(309470,42473,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(309471,42473,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(309472,42473,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(309473,42473,'blocks_0_link_stack_2_url','#who-should-study-msk'),(309474,42473,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(309475,42473,'blocks_0_link_stack_3_label','4.'),(309476,42473,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(309477,42473,'blocks_0_link_stack_3_title','Common MSK Conditions'),(309478,42473,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(309479,42473,'blocks_0_link_stack_3_url','#common-msk-conditions'),(309480,42473,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(309481,42473,'blocks_0_link_stack_4_label','5.'),(309482,42473,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(309483,42473,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(309484,42473,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(309485,42473,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(309486,42473,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(309487,42473,'blocks_0_link_stack_5_label','6.'),(309488,42473,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(309489,42473,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(309490,42473,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(309491,42473,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(309492,42473,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(309493,42473,'blocks_0_link_stack','6'),(309494,42473,'_blocks_0_link_stack','field_6177b7f600cff'),(309495,42473,'blocks_1_acfe_flexible_toggle',''),(309496,42473,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309497,42473,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(309498,42473,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309499,42473,'blocks_1_options_theme','#ffffff'),(309500,42473,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(309501,42473,'blocks_1_options_reverse','0'),(309502,42473,'_blocks_1_options_reverse','field_61768049bb8ac'),(309503,42473,'blocks_1_options',''),(309504,42473,'_blocks_1_options','field_617682517c334'),(309505,42473,'blocks_1_split_5050_image','40615'),(309506,42473,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(309507,42473,'blocks_1_split_5050_video',''),(309508,42473,'_blocks_1_split_5050_video','field_6239f3160848a'),(309509,42473,'blocks_1_split_5050_content_title',''),(309510,42473,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(309511,42473,'blocks_1_split_5050_content_heading','Overview'),(309512,42473,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(309513,42473,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(309514,42473,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(309515,42473,'blocks_1_split_5050_content_actions',''),(309516,42473,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(309517,42473,'blocks_1_split_5050_content',''),(309518,42473,'_blocks_1_split_5050_content','field_61767afceb8ba'),(309519,42473,'blocks_3_acfe_flexible_toggle','1'),(309520,42473,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309521,42473,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(309522,42473,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309523,42473,'blocks_3_options_theme','#f5f5f5'),(309524,42473,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(309525,42473,'blocks_3_options_reverse','1'),(309526,42473,'_blocks_3_options_reverse','field_61768049bb8ac'),(309527,42473,'blocks_3_options',''),(309528,42473,'_blocks_3_options','field_617682517c334'),(309529,42473,'blocks_3_split_5050_image','41330'),(309530,42473,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(309531,42473,'blocks_3_split_5050_video',''),(309532,42473,'_blocks_3_split_5050_video','field_6239f3160848a'),(309533,42473,'blocks_3_split_5050_content_title',''),(309534,42473,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(309535,42473,'blocks_3_split_5050_content_heading',''),(309536,42473,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(309537,42473,'blocks_3_split_5050_content_text',''),(309538,42473,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(309539,42473,'blocks_3_split_5050_content_actions',''),(309540,42473,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(309541,42473,'blocks_3_split_5050_content',''),(309542,42473,'_blocks_3_split_5050_content','field_61767afceb8ba'),(309543,42473,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(309544,42473,'_hero_actions_0_button','field_61757281285eb'),(309545,42473,'blocks_7_acfe_flexible_toggle',''),(309546,42473,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309547,42473,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(309548,42473,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309549,42473,'blocks_7_options_theme','#ffffff'),(309550,42473,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(309551,42473,'blocks_7_options_reverse','0'),(309552,42473,'_blocks_7_options_reverse','field_61768049bb8ac'),(309553,42473,'blocks_7_options',''),(309554,42473,'_blocks_7_options','field_617682517c334'),(309555,42473,'blocks_7_split_5050_image','41539'),(309556,42473,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(309557,42473,'blocks_7_split_5050_video',''),(309558,42473,'_blocks_7_split_5050_video','field_6239f3160848a'),(309559,42473,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(309560,42473,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(309561,42473,'blocks_7_split_5050_content_heading',''),(309562,42473,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(309563,42473,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(309564,42473,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(309565,42473,'blocks_7_split_5050_content_actions',''),(309566,42473,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(309567,42473,'blocks_7_split_5050_content',''),(309568,42473,'_blocks_7_split_5050_content','field_61767afceb8ba'),(309569,42473,'blocks_8_acfe_flexible_toggle',''),(309570,42473,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309571,42473,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(309572,42473,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309573,42473,'blocks_8_options_theme','#ffffff'),(309574,42473,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(309575,42473,'blocks_8_options_reverse','0'),(309576,42473,'_blocks_8_options_reverse','field_61768049bb8ac'),(309577,42473,'blocks_8_options',''),(309578,42473,'_blocks_8_options','field_617682517c334'),(309579,42473,'blocks_8_split_5050_image','41502'),(309580,42473,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(309581,42473,'blocks_8_split_5050_video',''),(309582,42473,'_blocks_8_split_5050_video','field_6239f3160848a'),(309583,42473,'blocks_8_split_5050_content_title','Educators and Researchers'),(309584,42473,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(309585,42473,'blocks_8_split_5050_content_heading',''),(309586,42473,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(309587,42473,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(309588,42473,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(309589,42473,'blocks_8_split_5050_content_actions',''),(309590,42473,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(309591,42473,'blocks_8_split_5050_content',''),(309592,42473,'_blocks_8_split_5050_content','field_61767afceb8ba'),(309593,42473,'blocks_9_acfe_flexible_toggle',''),(309594,42473,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309595,42473,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(309596,42473,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309597,42473,'blocks_9_options_theme','#ffffff'),(309598,42473,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(309599,42473,'blocks_9_options_reverse','0'),(309600,42473,'_blocks_9_options_reverse','field_61768049bb8ac'),(309601,42473,'blocks_9_options',''),(309602,42473,'_blocks_9_options','field_617682517c334'),(309603,42473,'blocks_9_split_5050_image','41506'),(309604,42473,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(309605,42473,'blocks_9_split_5050_video',''),(309606,42473,'_blocks_9_split_5050_video','field_6239f3160848a'),(309607,42473,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(309608,42473,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(309609,42473,'blocks_9_split_5050_content_heading',''),(309610,42473,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(309611,42473,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(309612,42473,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(309613,42473,'blocks_9_split_5050_content_actions',''),(309614,42473,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(309615,42473,'blocks_9_split_5050_content',''),(309616,42473,'_blocks_9_split_5050_content','field_61767afceb8ba'),(309617,42473,'blocks_13_acfe_flexible_toggle',''),(309618,42473,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309619,42473,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(309620,42473,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309621,42473,'blocks_13_options_theme','#ffffff'),(309622,42473,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(309623,42473,'blocks_13_options_reverse','1'),(309624,42473,'_blocks_13_options_reverse','field_61768049bb8ac'),(309625,42473,'blocks_13_options',''),(309626,42473,'_blocks_13_options','field_617682517c334'),(309627,42473,'blocks_13_split_5050_image','40387'),(309628,42473,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(309629,42473,'blocks_13_split_5050_video',''),(309630,42473,'_blocks_13_split_5050_video','field_6239f3160848a'),(309631,42473,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(309632,42473,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(309633,42473,'blocks_13_split_5050_content_heading',''),(309634,42473,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(309635,42473,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(309636,42473,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(309637,42473,'blocks_13_split_5050_content_actions',''),(309638,42473,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(309639,42473,'blocks_13_split_5050_content',''),(309640,42473,'_blocks_13_split_5050_content','field_61767afceb8ba'),(309641,42473,'blocks_14_acfe_flexible_toggle',''),(309642,42473,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309643,42473,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(309644,42473,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309645,42473,'blocks_14_options_theme','#ffffff'),(309646,42473,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(309647,42473,'blocks_14_options_reverse','1'),(309648,42473,'_blocks_14_options_reverse','field_61768049bb8ac'),(309649,42473,'blocks_14_options',''),(309650,42473,'_blocks_14_options','field_617682517c334'),(309651,42473,'blocks_14_split_5050_image','18856'),(309652,42473,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(309653,42473,'blocks_14_split_5050_video',''),(309654,42473,'_blocks_14_split_5050_video','field_6239f3160848a'),(309655,42473,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(309656,42473,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(309657,42473,'blocks_14_split_5050_content_heading',''),(309658,42473,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(309659,42473,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(309660,42473,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(309661,42473,'blocks_14_split_5050_content_actions',''),(309662,42473,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(309663,42473,'blocks_14_split_5050_content',''),(309664,42473,'_blocks_14_split_5050_content','field_61767afceb8ba'),(309665,42473,'blocks_19_acfe_flexible_toggle',''),(309666,42473,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(309667,42473,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(309668,42473,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(309669,42473,'blocks_19_options_theme','#ffffff'),(309670,42473,'_blocks_19_options_theme','field_6176830e2ad17'),(309671,42473,'blocks_19_options',''),(309672,42473,'_blocks_19_options','field_6176830e2ad16'),(309673,42473,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(309674,42473,'_blocks_19_text_block_heading','field_617669d413097'),(309675,42473,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(309676,42473,'_blocks_19_text_block_content','field_617669ec13098'),(309677,42473,'blocks_20_acfe_flexible_toggle',''),(309678,42473,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(309679,42473,'blocks_20_acfe_flexible_layout_title','Conclusion'),(309680,42473,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(309681,42473,'blocks_20_options_theme','#b61234'),(309682,42473,'_blocks_20_options_theme','field_6176830e2ad17'),(309683,42473,'blocks_20_options',''),(309684,42473,'_blocks_20_options','field_6176830e2ad16'),(309685,42473,'blocks_20_text_block_heading','Conclusion'),(309686,42473,'_blocks_20_text_block_heading','field_617669d413097'),(309687,42473,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(309688,42473,'_blocks_20_text_block_content','field_617669ec13098'),(309689,42473,'blocks_6_acfe_flexible_toggle',''),(309690,42473,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309691,42473,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(309692,42473,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309693,42473,'blocks_6_options_theme','#ffffff'),(309694,42473,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(309695,42473,'blocks_6_options_reverse','0'),(309696,42473,'_blocks_6_options_reverse','field_61768049bb8ac'),(309697,42473,'blocks_6_options',''),(309698,42473,'_blocks_6_options','field_617682517c334'),(309699,42473,'blocks_6_split_5050_image','41505'),(309700,42473,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(309701,42473,'blocks_6_split_5050_video',''),(309702,42473,'_blocks_6_split_5050_video','field_6239f3160848a'),(309703,42473,'blocks_6_split_5050_content_title','Current Practitioners'),(309704,42473,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(309705,42473,'blocks_6_split_5050_content_heading',''),(309706,42473,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(309707,42473,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(309708,42473,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(309709,42473,'blocks_6_split_5050_content_actions',''),(309710,42473,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(309711,42473,'blocks_6_split_5050_content',''),(309712,42473,'_blocks_6_split_5050_content','field_61767afceb8ba'),(309713,42473,'blocks_2_acfe_flexible_toggle',''),(309714,42473,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309715,42473,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(309716,42473,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309717,42473,'blocks_2_options_theme','#f5f5f5'),(309718,42473,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(309719,42473,'blocks_2_options_reverse','1'),(309720,42473,'_blocks_2_options_reverse','field_61768049bb8ac'),(309721,42473,'blocks_2_options',''),(309722,42473,'_blocks_2_options','field_617682517c334'),(309723,42473,'blocks_2_split_5050_image','40618'),(309724,42473,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(309725,42473,'blocks_2_split_5050_video',''),(309726,42473,'_blocks_2_split_5050_video','field_6239f3160848a'),(309727,42473,'blocks_2_split_5050_content_title',''),(309728,42473,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(309729,42473,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(309730,42473,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(309731,42473,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(309732,42473,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(309733,42473,'blocks_2_split_5050_content_actions',''),(309734,42473,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(309735,42473,'blocks_2_split_5050_content',''),(309736,42473,'_blocks_2_split_5050_content','field_61767afceb8ba'),(309737,42473,'blocks_4_acfe_flexible_toggle',''),(309738,42473,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(309739,42473,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(309740,42473,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(309741,42473,'blocks_4_options_theme','#ffffff'),(309742,42473,'_blocks_4_options_theme','field_6176830e2ad17'),(309743,42473,'blocks_4_options',''),(309744,42473,'_blocks_4_options','field_6176830e2ad16'),(309745,42473,'blocks_4_text_block_heading','Who Should Study MSK?'),(309746,42473,'_blocks_4_text_block_heading','field_617669d413097'),(309747,42473,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(309748,42473,'_blocks_4_text_block_content','field_617669ec13098'),(309749,42473,'blocks_5_acfe_flexible_toggle',''),(309750,42473,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309751,42473,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(309752,42473,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309753,42473,'blocks_5_options_theme','#ffffff'),(309754,42473,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(309755,42473,'blocks_5_options_reverse','0'),(309756,42473,'_blocks_5_options_reverse','field_61768049bb8ac'),(309757,42473,'blocks_5_options',''),(309758,42473,'_blocks_5_options','field_617682517c334'),(309759,42473,'blocks_5_split_5050_image','41542'),(309760,42473,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(309761,42473,'blocks_5_split_5050_video',''),(309762,42473,'_blocks_5_split_5050_video','field_6239f3160848a'),(309763,42473,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(309764,42473,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(309765,42473,'blocks_5_split_5050_content_heading',''),(309766,42473,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(309767,42473,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(309768,42473,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(309769,42473,'blocks_5_split_5050_content_actions',''),(309770,42473,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(309771,42473,'blocks_5_split_5050_content',''),(309772,42473,'_blocks_5_split_5050_content','field_61767afceb8ba'),(309773,42473,'blocks_10_acfe_flexible_toggle',''),(309774,42473,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(309775,42473,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(309776,42473,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(309777,42473,'blocks_10_options_theme','#f5f5f5'),(309778,42473,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(309779,42473,'blocks_10_options_state','0'),(309780,42473,'_blocks_10_options_state','field_6239fcb7508c5'),(309781,42473,'blocks_10_options',''),(309782,42473,'_blocks_10_options','field_6177e2991ac44'),(309783,42473,'blocks_10_content_title','Common MSK Conditions'),(309784,42473,'_blocks_10_content_title','field_64d237e8bb1e2'),(309785,42473,'blocks_10_content_heading','Common MSK Conditions'),(309786,42473,'_blocks_10_content_heading','field_64d237e8bb1e3'),(309787,42473,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(309788,42473,'_blocks_10_content_text','field_64d237e8bb1e4'),(309789,42473,'blocks_10_content_actions',''),(309790,42473,'_blocks_10_content_actions','field_64d237e8bb1e5'),(309791,42473,'blocks_10_content_align','left'),(309792,42473,'_blocks_10_content_align','field_64d2443e6b6aa'),(309793,42473,'blocks_10_content',''),(309794,42473,'_blocks_10_content','field_64d237e8bb1e1'),(309795,42473,'blocks_10_accordion_content','custom'),(309796,42473,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(309797,42473,'blocks_10_accordion_items_0_title','Osteoarthritis'),(309798,42473,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(309799,42473,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(309800,42473,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(309801,42473,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(309802,42473,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(309803,42473,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(309804,42473,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(309805,42473,'blocks_10_accordion_items_2_title','Back Pain'),(309806,42473,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(309807,42473,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(309808,42473,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(309809,42473,'blocks_10_accordion_items_3_title','Osteoporosis'),(309810,42473,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(309811,42473,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(309812,42473,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(309813,42473,'blocks_10_accordion_items_4_title','Tendinitis'),(309814,42473,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(309815,42473,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(309816,42473,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(309817,42473,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(309818,42473,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(309819,42473,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(309820,42473,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(309821,42473,'blocks_10_accordion_items_6_title','Fibromyalgia'),(309822,42473,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(309823,42473,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(309824,42473,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(309825,42473,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(309826,42473,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(309827,42473,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(309828,42473,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(309829,42473,'blocks_10_accordion_items','8'),(309830,42473,'_blocks_10_accordion_items','field_6177e2991ac4c'),(309831,42473,'blocks_10_actions',''),(309832,42473,'_blocks_10_actions','field_61a746a817f7a'),(309833,42473,'blocks_11_acfe_flexible_toggle',''),(309834,42473,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(309835,42473,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(309836,42473,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(309837,42473,'blocks_11_options_theme','#ffffff'),(309838,42473,'_blocks_11_options_theme','field_6176830e2ad17'),(309839,42473,'blocks_11_options',''),(309840,42473,'_blocks_11_options','field_6176830e2ad16'),(309841,42473,'blocks_11_text_block_heading','The Importance of MSK Education'),(309842,42473,'_blocks_11_text_block_heading','field_617669d413097'),(309843,42473,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(309844,42473,'_blocks_11_text_block_content','field_617669ec13098'),(309845,42473,'blocks_12_acfe_flexible_toggle',''),(309846,42473,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309847,42473,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(309848,42473,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309849,42473,'blocks_12_options_theme','#ffffff'),(309850,42473,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(309851,42473,'blocks_12_options_reverse','1'),(309852,42473,'_blocks_12_options_reverse','field_61768049bb8ac'),(309853,42473,'blocks_12_options',''),(309854,42473,'_blocks_12_options','field_617682517c334'),(309855,42473,'blocks_12_split_5050_image','41498'),(309856,42473,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(309857,42473,'blocks_12_split_5050_video',''),(309858,42473,'_blocks_12_split_5050_video','field_6239f3160848a'),(309859,42473,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(309860,42473,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(309861,42473,'blocks_12_split_5050_content_heading',''),(309862,42473,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(309863,42473,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(309864,42473,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(309865,42473,'blocks_12_split_5050_content_actions',''),(309866,42473,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(309867,42473,'blocks_12_split_5050_content',''),(309868,42473,'_blocks_12_split_5050_content','field_61767afceb8ba'),(309869,42473,'blocks_15_acfe_flexible_toggle',''),(309870,42473,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(309871,42473,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(309872,42473,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(309873,42473,'blocks_15_options_theme','#b61234'),(309874,42473,'_blocks_15_options_theme','field_6176830e2ad17'),(309875,42473,'blocks_15_options',''),(309876,42473,'_blocks_15_options','field_6176830e2ad16'),(309877,42473,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(309878,42473,'_blocks_15_text_block_heading','field_617669d413097'),(309879,42473,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(309880,42473,'_blocks_15_text_block_content','field_617669ec13098'),(309881,42473,'blocks_16_acfe_flexible_toggle',''),(309882,42473,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(309883,42473,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(309884,42473,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(309885,42473,'blocks_16_options_theme','#b61234'),(309886,42473,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(309887,42473,'blocks_16_options_format','row'),(309888,42473,'_blocks_16_options_format','field_64bfde9a90690'),(309889,42473,'blocks_16_options',''),(309890,42473,'_blocks_16_options','field_64bfdd9b90684'),(309891,42473,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(309892,42473,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(309893,42473,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(309894,42473,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(309895,42473,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(309896,42473,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(309897,42473,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(309898,42473,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(309899,42473,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(309900,42473,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(309901,42473,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(309902,42473,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(309903,42473,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(309904,42473,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(309905,42473,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(309906,42473,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(309907,42473,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(309908,42473,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(309909,42473,'blocks_16_icon_row_items_3_icon','recognised.svg'),(309910,42473,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(309911,42473,'blocks_16_icon_row_items_3_label','Optimised Performance'),(309912,42473,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(309913,42473,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(309914,42473,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(309915,42473,'blocks_16_icon_row_items','4'),(309916,42473,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(309917,42473,'blocks_17_acfe_flexible_toggle',''),(309918,42473,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(309919,42473,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(309920,42473,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(309921,42473,'blocks_17_options_theme','#ffffff'),(309922,42473,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(309923,42473,'blocks_17_options_reverse','0'),(309924,42473,'_blocks_17_options_reverse','field_61768049bb8ac'),(309925,42473,'blocks_17_options',''),(309926,42473,'_blocks_17_options','field_617682517c334'),(309927,42473,'blocks_17_split_5050_image','41501'),(309928,42473,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(309929,42473,'blocks_17_split_5050_video',''),(309930,42473,'_blocks_17_split_5050_video','field_6239f3160848a'),(309931,42473,'blocks_17_split_5050_content_title',''),(309932,42473,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(309933,42473,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(309934,42473,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(309935,42473,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(309936,42473,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(309937,42473,'blocks_17_split_5050_content_actions',''),(309938,42473,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(309939,42473,'blocks_17_split_5050_content',''),(309940,42473,'_blocks_17_split_5050_content','field_61767afceb8ba'),(309941,42473,'blocks_18_acfe_flexible_toggle',''),(309942,42473,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(309943,42473,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(309944,42473,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(309945,42473,'blocks_18_options_theme','#ffffff'),(309946,42473,'_blocks_18_options_theme','field_6176830e2ad17'),(309947,42473,'blocks_18_options',''),(309948,42473,'_blocks_18_options','field_6176830e2ad16'),(309949,42473,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(309950,42473,'_blocks_18_text_block_heading','field_617669d413097'),(309951,42473,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(309952,42473,'_blocks_18_text_block_content','field_617669ec13098'),(309953,42473,'blocks_21_acfe_flexible_toggle',''),(309954,42473,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(309955,42473,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(309956,42473,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(309957,42473,'blocks_21_options_alignment','center'),(309958,42473,'_blocks_21_options_alignment','field_61769449f5490'),(309959,42473,'blocks_21_options',''),(309960,42473,'_blocks_21_options','field_617693e1428f0'),(309961,42473,'blocks_21_promo_panel_image','40342'),(309962,42473,'_blocks_21_promo_panel_image','field_617693e1428f3'),(309963,42473,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(309964,42473,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(309965,42473,'blocks_21_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(309966,42473,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(309967,42473,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(309968,42473,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(309969,42473,'blocks_21_promo_panel_content_actions','1'),(309970,42473,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(309971,42473,'blocks_21_promo_panel_content',''),(309972,42473,'_blocks_21_promo_panel_content','field_617693e1428f4'),(309973,42474,'hide_hero','0'),(309974,42474,'_hide_hero','field_66a2380fcda39'),(309975,42474,'hero_title',''),(309976,42474,'_hero_title','field_617571fe285e8'),(309977,42474,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(309978,42474,'_hero_text','field_6175723c285e9'),(309979,42474,'hero_actions','1'),(309980,42474,'_hero_actions','field_61757270285ea'),(309981,42474,'hero_style','default'),(309982,42474,'_hero_style','field_62051d9dc5324'),(309983,42474,'hero_image_pos_x','right'),(309984,42474,'_hero_image_pos_x','field_62ec3d05390bb'),(309985,42474,'hero_image_pos_y','top'),(309986,42474,'_hero_image_pos_y','field_62ec3d05390bc'),(309987,42474,'hero_image_pos',''),(309988,42474,'_hero_image_pos','field_62ec3d05390ba'),(309989,42474,'fft_hide_from_listings','0'),(309990,42474,'_fft_hide_from_listings','field_61f1320446ab2'),(309991,42474,'post_format','402'),(309992,42474,'_post_format','field_61756bfb51898'),(309993,42474,'post_author',''),(309994,42474,'_post_author','field_62ec389d22113'),(309995,42474,'post_reviewer',''),(309996,42474,'_post_reviewer','field_627140a2a9800'),(309997,42474,'post_table_of_contents','0'),(309998,42474,'_post_table_of_contents','field_65c503bc846a6'),(309999,42474,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(310000,42474,'_blocks','field_6176696113096'),(310001,42474,'_thumbnail_id','41331'),(310002,42474,'__thumbnail_id','field_617570855ddaf'),(310003,42474,'blocks_0_acfe_flexible_toggle',''),(310004,42474,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(310005,42474,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(310006,42474,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(310007,42474,'blocks_0_options_theme','#ffffff'),(310008,42474,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(310009,42474,'blocks_0_options',''),(310010,42474,'_blocks_0_options','field_6177b758246ae'),(310011,42474,'blocks_0_link_stack_content_title',''),(310012,42474,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(310013,42474,'blocks_0_link_stack_content_heading','What is MSK?'),(310014,42474,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(310015,42474,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(310016,42474,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(310017,42474,'blocks_0_link_stack_content_actions_0_button',''),(310018,42474,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(310019,42474,'blocks_0_link_stack_content_actions','1'),(310020,42474,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(310021,42474,'blocks_0_link_stack_content',''),(310022,42474,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(310023,42474,'blocks_0_link_stack_0_label','1.'),(310024,42474,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(310025,42474,'blocks_0_link_stack_0_title','Overview'),(310026,42474,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(310027,42474,'blocks_0_link_stack_0_url','#overview'),(310028,42474,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(310029,42474,'blocks_0_link_stack_1_label','2.'),(310030,42474,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(310031,42474,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(310032,42474,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(310033,42474,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(310034,42474,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(310035,42474,'blocks_0_link_stack_2_label','3.'),(310036,42474,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(310037,42474,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(310038,42474,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(310039,42474,'blocks_0_link_stack_2_url','#who-should-study-msk'),(310040,42474,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(310041,42474,'blocks_0_link_stack_3_label','4.'),(310042,42474,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(310043,42474,'blocks_0_link_stack_3_title','Common MSK Conditions'),(310044,42474,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(310045,42474,'blocks_0_link_stack_3_url','#common-msk-conditions'),(310046,42474,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(310047,42474,'blocks_0_link_stack_4_label','5.'),(310048,42474,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(310049,42474,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(310050,42474,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(310051,42474,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(310052,42474,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(310053,42474,'blocks_0_link_stack_5_label','6.'),(310054,42474,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(310055,42474,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(310056,42474,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(310057,42474,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(310058,42474,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(310059,42474,'blocks_0_link_stack','6'),(310060,42474,'_blocks_0_link_stack','field_6177b7f600cff'),(310061,42474,'blocks_1_acfe_flexible_toggle',''),(310062,42474,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310063,42474,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(310064,42474,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310065,42474,'blocks_1_options_theme','#ffffff'),(310066,42474,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(310067,42474,'blocks_1_options_reverse','0'),(310068,42474,'_blocks_1_options_reverse','field_61768049bb8ac'),(310069,42474,'blocks_1_options',''),(310070,42474,'_blocks_1_options','field_617682517c334'),(310071,42474,'blocks_1_split_5050_image','40615'),(310072,42474,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(310073,42474,'blocks_1_split_5050_video',''),(310074,42474,'_blocks_1_split_5050_video','field_6239f3160848a'),(310075,42474,'blocks_1_split_5050_content_title',''),(310076,42474,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(310077,42474,'blocks_1_split_5050_content_heading','Overview'),(310078,42474,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(310079,42474,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(310080,42474,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(310081,42474,'blocks_1_split_5050_content_actions',''),(310082,42474,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(310083,42474,'blocks_1_split_5050_content',''),(310084,42474,'_blocks_1_split_5050_content','field_61767afceb8ba'),(310085,42474,'blocks_3_acfe_flexible_toggle','1'),(310086,42474,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310087,42474,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(310088,42474,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310089,42474,'blocks_3_options_theme','#f5f5f5'),(310090,42474,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(310091,42474,'blocks_3_options_reverse','1'),(310092,42474,'_blocks_3_options_reverse','field_61768049bb8ac'),(310093,42474,'blocks_3_options',''),(310094,42474,'_blocks_3_options','field_617682517c334'),(310095,42474,'blocks_3_split_5050_image','41330'),(310096,42474,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(310097,42474,'blocks_3_split_5050_video',''),(310098,42474,'_blocks_3_split_5050_video','field_6239f3160848a'),(310099,42474,'blocks_3_split_5050_content_title',''),(310100,42474,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(310101,42474,'blocks_3_split_5050_content_heading',''),(310102,42474,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(310103,42474,'blocks_3_split_5050_content_text',''),(310104,42474,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(310105,42474,'blocks_3_split_5050_content_actions',''),(310106,42474,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(310107,42474,'blocks_3_split_5050_content',''),(310108,42474,'_blocks_3_split_5050_content','field_61767afceb8ba'),(310109,42474,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(310110,42474,'_hero_actions_0_button','field_61757281285eb'),(310111,42474,'blocks_7_acfe_flexible_toggle',''),(310112,42474,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310113,42474,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(310114,42474,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310115,42474,'blocks_7_options_theme','#ffffff'),(310116,42474,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(310117,42474,'blocks_7_options_reverse','0'),(310118,42474,'_blocks_7_options_reverse','field_61768049bb8ac'),(310119,42474,'blocks_7_options',''),(310120,42474,'_blocks_7_options','field_617682517c334'),(310121,42474,'blocks_7_split_5050_image','41539'),(310122,42474,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(310123,42474,'blocks_7_split_5050_video',''),(310124,42474,'_blocks_7_split_5050_video','field_6239f3160848a'),(310125,42474,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(310126,42474,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(310127,42474,'blocks_7_split_5050_content_heading',''),(310128,42474,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(310129,42474,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(310130,42474,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(310131,42474,'blocks_7_split_5050_content_actions',''),(310132,42474,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(310133,42474,'blocks_7_split_5050_content',''),(310134,42474,'_blocks_7_split_5050_content','field_61767afceb8ba'),(310135,42474,'blocks_8_acfe_flexible_toggle',''),(310136,42474,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310137,42474,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(310138,42474,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310139,42474,'blocks_8_options_theme','#ffffff'),(310140,42474,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(310141,42474,'blocks_8_options_reverse','0'),(310142,42474,'_blocks_8_options_reverse','field_61768049bb8ac'),(310143,42474,'blocks_8_options',''),(310144,42474,'_blocks_8_options','field_617682517c334'),(310145,42474,'blocks_8_split_5050_image','41502'),(310146,42474,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(310147,42474,'blocks_8_split_5050_video',''),(310148,42474,'_blocks_8_split_5050_video','field_6239f3160848a'),(310149,42474,'blocks_8_split_5050_content_title','Educators and Researchers'),(310150,42474,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(310151,42474,'blocks_8_split_5050_content_heading',''),(310152,42474,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(310153,42474,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(310154,42474,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(310155,42474,'blocks_8_split_5050_content_actions',''),(310156,42474,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(310157,42474,'blocks_8_split_5050_content',''),(310158,42474,'_blocks_8_split_5050_content','field_61767afceb8ba'),(310159,42474,'blocks_9_acfe_flexible_toggle',''),(310160,42474,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310161,42474,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(310162,42474,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310163,42474,'blocks_9_options_theme','#ffffff'),(310164,42474,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(310165,42474,'blocks_9_options_reverse','0'),(310166,42474,'_blocks_9_options_reverse','field_61768049bb8ac'),(310167,42474,'blocks_9_options',''),(310168,42474,'_blocks_9_options','field_617682517c334'),(310169,42474,'blocks_9_split_5050_image','41506'),(310170,42474,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(310171,42474,'blocks_9_split_5050_video',''),(310172,42474,'_blocks_9_split_5050_video','field_6239f3160848a'),(310173,42474,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(310174,42474,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(310175,42474,'blocks_9_split_5050_content_heading',''),(310176,42474,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(310177,42474,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(310178,42474,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(310179,42474,'blocks_9_split_5050_content_actions',''),(310180,42474,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(310181,42474,'blocks_9_split_5050_content',''),(310182,42474,'_blocks_9_split_5050_content','field_61767afceb8ba'),(310183,42474,'blocks_13_acfe_flexible_toggle',''),(310184,42474,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310185,42474,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(310186,42474,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310187,42474,'blocks_13_options_theme','#ffffff'),(310188,42474,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(310189,42474,'blocks_13_options_reverse','1'),(310190,42474,'_blocks_13_options_reverse','field_61768049bb8ac'),(310191,42474,'blocks_13_options',''),(310192,42474,'_blocks_13_options','field_617682517c334'),(310193,42474,'blocks_13_split_5050_image','40387'),(310194,42474,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(310195,42474,'blocks_13_split_5050_video',''),(310196,42474,'_blocks_13_split_5050_video','field_6239f3160848a'),(310197,42474,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(310198,42474,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(310199,42474,'blocks_13_split_5050_content_heading',''),(310200,42474,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(310201,42474,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(310202,42474,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(310203,42474,'blocks_13_split_5050_content_actions',''),(310204,42474,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(310205,42474,'blocks_13_split_5050_content',''),(310206,42474,'_blocks_13_split_5050_content','field_61767afceb8ba'),(310207,42474,'blocks_14_acfe_flexible_toggle',''),(310208,42474,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310209,42474,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(310210,42474,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310211,42474,'blocks_14_options_theme','#ffffff'),(310212,42474,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(310213,42474,'blocks_14_options_reverse','1'),(310214,42474,'_blocks_14_options_reverse','field_61768049bb8ac'),(310215,42474,'blocks_14_options',''),(310216,42474,'_blocks_14_options','field_617682517c334'),(310217,42474,'blocks_14_split_5050_image','18856'),(310218,42474,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(310219,42474,'blocks_14_split_5050_video',''),(310220,42474,'_blocks_14_split_5050_video','field_6239f3160848a'),(310221,42474,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(310222,42474,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(310223,42474,'blocks_14_split_5050_content_heading',''),(310224,42474,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(310225,42474,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(310226,42474,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(310227,42474,'blocks_14_split_5050_content_actions',''),(310228,42474,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(310229,42474,'blocks_14_split_5050_content',''),(310230,42474,'_blocks_14_split_5050_content','field_61767afceb8ba'),(310231,42474,'blocks_19_acfe_flexible_toggle',''),(310232,42474,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(310233,42474,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(310234,42474,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(310235,42474,'blocks_19_options_theme','#ffffff'),(310236,42474,'_blocks_19_options_theme','field_6176830e2ad17'),(310237,42474,'blocks_19_options',''),(310238,42474,'_blocks_19_options','field_6176830e2ad16'),(310239,42474,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(310240,42474,'_blocks_19_text_block_heading','field_617669d413097'),(310241,42474,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(310242,42474,'_blocks_19_text_block_content','field_617669ec13098'),(310243,42474,'blocks_20_acfe_flexible_toggle',''),(310244,42474,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(310245,42474,'blocks_20_acfe_flexible_layout_title','Conclusion'),(310246,42474,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(310247,42474,'blocks_20_options_theme','#b61234'),(310248,42474,'_blocks_20_options_theme','field_6176830e2ad17'),(310249,42474,'blocks_20_options',''),(310250,42474,'_blocks_20_options','field_6176830e2ad16'),(310251,42474,'blocks_20_text_block_heading','Conclusion'),(310252,42474,'_blocks_20_text_block_heading','field_617669d413097'),(310253,42474,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(310254,42474,'_blocks_20_text_block_content','field_617669ec13098'),(310255,42474,'blocks_6_acfe_flexible_toggle',''),(310256,42474,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310257,42474,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(310258,42474,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310259,42474,'blocks_6_options_theme','#ffffff'),(310260,42474,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(310261,42474,'blocks_6_options_reverse','0'),(310262,42474,'_blocks_6_options_reverse','field_61768049bb8ac'),(310263,42474,'blocks_6_options',''),(310264,42474,'_blocks_6_options','field_617682517c334'),(310265,42474,'blocks_6_split_5050_image','41505'),(310266,42474,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(310267,42474,'blocks_6_split_5050_video',''),(310268,42474,'_blocks_6_split_5050_video','field_6239f3160848a'),(310269,42474,'blocks_6_split_5050_content_title','Current Practitioners'),(310270,42474,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(310271,42474,'blocks_6_split_5050_content_heading',''),(310272,42474,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(310273,42474,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(310274,42474,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(310275,42474,'blocks_6_split_5050_content_actions',''),(310276,42474,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(310277,42474,'blocks_6_split_5050_content',''),(310278,42474,'_blocks_6_split_5050_content','field_61767afceb8ba'),(310279,42474,'blocks_2_acfe_flexible_toggle',''),(310280,42474,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310281,42474,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(310282,42474,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310283,42474,'blocks_2_options_theme','#f5f5f5'),(310284,42474,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(310285,42474,'blocks_2_options_reverse','1'),(310286,42474,'_blocks_2_options_reverse','field_61768049bb8ac'),(310287,42474,'blocks_2_options',''),(310288,42474,'_blocks_2_options','field_617682517c334'),(310289,42474,'blocks_2_split_5050_image','40618'),(310290,42474,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(310291,42474,'blocks_2_split_5050_video',''),(310292,42474,'_blocks_2_split_5050_video','field_6239f3160848a'),(310293,42474,'blocks_2_split_5050_content_title',''),(310294,42474,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(310295,42474,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(310296,42474,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(310297,42474,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(310298,42474,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(310299,42474,'blocks_2_split_5050_content_actions',''),(310300,42474,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(310301,42474,'blocks_2_split_5050_content',''),(310302,42474,'_blocks_2_split_5050_content','field_61767afceb8ba'),(310303,42474,'blocks_4_acfe_flexible_toggle',''),(310304,42474,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(310305,42474,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(310306,42474,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(310307,42474,'blocks_4_options_theme','#ffffff'),(310308,42474,'_blocks_4_options_theme','field_6176830e2ad17'),(310309,42474,'blocks_4_options',''),(310310,42474,'_blocks_4_options','field_6176830e2ad16'),(310311,42474,'blocks_4_text_block_heading','Who Should Study MSK?'),(310312,42474,'_blocks_4_text_block_heading','field_617669d413097'),(310313,42474,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(310314,42474,'_blocks_4_text_block_content','field_617669ec13098'),(310315,42474,'blocks_5_acfe_flexible_toggle',''),(310316,42474,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310317,42474,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(310318,42474,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310319,42474,'blocks_5_options_theme','#ffffff'),(310320,42474,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(310321,42474,'blocks_5_options_reverse','0'),(310322,42474,'_blocks_5_options_reverse','field_61768049bb8ac'),(310323,42474,'blocks_5_options',''),(310324,42474,'_blocks_5_options','field_617682517c334'),(310325,42474,'blocks_5_split_5050_image','41542'),(310326,42474,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(310327,42474,'blocks_5_split_5050_video',''),(310328,42474,'_blocks_5_split_5050_video','field_6239f3160848a'),(310329,42474,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(310330,42474,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(310331,42474,'blocks_5_split_5050_content_heading',''),(310332,42474,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(310333,42474,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(310334,42474,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(310335,42474,'blocks_5_split_5050_content_actions',''),(310336,42474,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(310337,42474,'blocks_5_split_5050_content',''),(310338,42474,'_blocks_5_split_5050_content','field_61767afceb8ba'),(310339,42474,'blocks_10_acfe_flexible_toggle',''),(310340,42474,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(310341,42474,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(310342,42474,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(310343,42474,'blocks_10_options_theme','#f5f5f5'),(310344,42474,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(310345,42474,'blocks_10_options_state','0'),(310346,42474,'_blocks_10_options_state','field_6239fcb7508c5'),(310347,42474,'blocks_10_options',''),(310348,42474,'_blocks_10_options','field_6177e2991ac44'),(310349,42474,'blocks_10_content_title',''),(310350,42474,'_blocks_10_content_title','field_64d237e8bb1e2'),(310351,42474,'blocks_10_content_heading','Common MSK Conditions'),(310352,42474,'_blocks_10_content_heading','field_64d237e8bb1e3'),(310353,42474,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.\r\n\r\nSome of the most common MSK conditions include:'),(310354,42474,'_blocks_10_content_text','field_64d237e8bb1e4'),(310355,42474,'blocks_10_content_actions',''),(310356,42474,'_blocks_10_content_actions','field_64d237e8bb1e5'),(310357,42474,'blocks_10_content_align','left'),(310358,42474,'_blocks_10_content_align','field_64d2443e6b6aa'),(310359,42474,'blocks_10_content',''),(310360,42474,'_blocks_10_content','field_64d237e8bb1e1'),(310361,42474,'blocks_10_accordion_content','custom'),(310362,42474,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(310363,42474,'blocks_10_accordion_items_0_title','Osteoarthritis'),(310364,42474,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(310365,42474,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(310366,42474,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(310367,42474,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(310368,42474,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(310369,42474,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(310370,42474,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(310371,42474,'blocks_10_accordion_items_2_title','Back Pain'),(310372,42474,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(310373,42474,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(310374,42474,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(310375,42474,'blocks_10_accordion_items_3_title','Osteoporosis'),(310376,42474,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(310377,42474,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(310378,42474,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(310379,42474,'blocks_10_accordion_items_4_title','Tendinitis'),(310380,42474,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(310381,42474,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(310382,42474,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(310383,42474,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(310384,42474,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(310385,42474,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(310386,42474,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(310387,42474,'blocks_10_accordion_items_6_title','Fibromyalgia'),(310388,42474,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(310389,42474,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(310390,42474,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(310391,42474,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(310392,42474,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(310393,42474,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(310394,42474,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(310395,42474,'blocks_10_accordion_items','8'),(310396,42474,'_blocks_10_accordion_items','field_6177e2991ac4c'),(310397,42474,'blocks_10_actions',''),(310398,42474,'_blocks_10_actions','field_61a746a817f7a'),(310399,42474,'blocks_11_acfe_flexible_toggle',''),(310400,42474,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(310401,42474,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(310402,42474,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(310403,42474,'blocks_11_options_theme','#ffffff'),(310404,42474,'_blocks_11_options_theme','field_6176830e2ad17'),(310405,42474,'blocks_11_options',''),(310406,42474,'_blocks_11_options','field_6176830e2ad16'),(310407,42474,'blocks_11_text_block_heading','The Importance of MSK Education'),(310408,42474,'_blocks_11_text_block_heading','field_617669d413097'),(310409,42474,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(310410,42474,'_blocks_11_text_block_content','field_617669ec13098'),(310411,42474,'blocks_12_acfe_flexible_toggle',''),(310412,42474,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310413,42474,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(310414,42474,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310415,42474,'blocks_12_options_theme','#ffffff'),(310416,42474,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(310417,42474,'blocks_12_options_reverse','1'),(310418,42474,'_blocks_12_options_reverse','field_61768049bb8ac'),(310419,42474,'blocks_12_options',''),(310420,42474,'_blocks_12_options','field_617682517c334'),(310421,42474,'blocks_12_split_5050_image','41498'),(310422,42474,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(310423,42474,'blocks_12_split_5050_video',''),(310424,42474,'_blocks_12_split_5050_video','field_6239f3160848a'),(310425,42474,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(310426,42474,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(310427,42474,'blocks_12_split_5050_content_heading',''),(310428,42474,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(310429,42474,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(310430,42474,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(310431,42474,'blocks_12_split_5050_content_actions',''),(310432,42474,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(310433,42474,'blocks_12_split_5050_content',''),(310434,42474,'_blocks_12_split_5050_content','field_61767afceb8ba'),(310435,42474,'blocks_15_acfe_flexible_toggle',''),(310436,42474,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(310437,42474,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(310438,42474,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(310439,42474,'blocks_15_options_theme','#b61234'),(310440,42474,'_blocks_15_options_theme','field_6176830e2ad17'),(310441,42474,'blocks_15_options',''),(310442,42474,'_blocks_15_options','field_6176830e2ad16'),(310443,42474,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(310444,42474,'_blocks_15_text_block_heading','field_617669d413097'),(310445,42474,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(310446,42474,'_blocks_15_text_block_content','field_617669ec13098'),(310447,42474,'blocks_16_acfe_flexible_toggle',''),(310448,42474,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(310449,42474,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(310450,42474,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(310451,42474,'blocks_16_options_theme','#b61234'),(310452,42474,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(310453,42474,'blocks_16_options_format','row'),(310454,42474,'_blocks_16_options_format','field_64bfde9a90690'),(310455,42474,'blocks_16_options',''),(310456,42474,'_blocks_16_options','field_64bfdd9b90684'),(310457,42474,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(310458,42474,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(310459,42474,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(310460,42474,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(310461,42474,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(310462,42474,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(310463,42474,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(310464,42474,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(310465,42474,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(310466,42474,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(310467,42474,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(310468,42474,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(310469,42474,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(310470,42474,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(310471,42474,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(310472,42474,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(310473,42474,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(310474,42474,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(310475,42474,'blocks_16_icon_row_items_3_icon','recognised.svg'),(310476,42474,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(310477,42474,'blocks_16_icon_row_items_3_label','Optimised Performance'),(310478,42474,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(310479,42474,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(310480,42474,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(310481,42474,'blocks_16_icon_row_items','4'),(310482,42474,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(310483,42474,'blocks_17_acfe_flexible_toggle',''),(310484,42474,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310485,42474,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(310486,42474,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310487,42474,'blocks_17_options_theme','#ffffff'),(310488,42474,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(310489,42474,'blocks_17_options_reverse','0'),(310490,42474,'_blocks_17_options_reverse','field_61768049bb8ac'),(310491,42474,'blocks_17_options',''),(310492,42474,'_blocks_17_options','field_617682517c334'),(310493,42474,'blocks_17_split_5050_image','41501'),(310494,42474,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(310495,42474,'blocks_17_split_5050_video',''),(310496,42474,'_blocks_17_split_5050_video','field_6239f3160848a'),(310497,42474,'blocks_17_split_5050_content_title',''),(310498,42474,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(310499,42474,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(310500,42474,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(310501,42474,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(310502,42474,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(310503,42474,'blocks_17_split_5050_content_actions',''),(310504,42474,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(310505,42474,'blocks_17_split_5050_content',''),(310506,42474,'_blocks_17_split_5050_content','field_61767afceb8ba'),(310507,42474,'blocks_18_acfe_flexible_toggle',''),(310508,42474,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(310509,42474,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(310510,42474,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(310511,42474,'blocks_18_options_theme','#ffffff'),(310512,42474,'_blocks_18_options_theme','field_6176830e2ad17'),(310513,42474,'blocks_18_options',''),(310514,42474,'_blocks_18_options','field_6176830e2ad16'),(310515,42474,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(310516,42474,'_blocks_18_text_block_heading','field_617669d413097'),(310517,42474,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(310518,42474,'_blocks_18_text_block_content','field_617669ec13098'),(310519,42474,'blocks_21_acfe_flexible_toggle',''),(310520,42474,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(310521,42474,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(310522,42474,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(310523,42474,'blocks_21_options_alignment','center'),(310524,42474,'_blocks_21_options_alignment','field_61769449f5490'),(310525,42474,'blocks_21_options',''),(310526,42474,'_blocks_21_options','field_617693e1428f0'),(310527,42474,'blocks_21_promo_panel_image','40342'),(310528,42474,'_blocks_21_promo_panel_image','field_617693e1428f3'),(310529,42474,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(310530,42474,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(310531,42474,'blocks_21_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(310532,42474,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(310533,42474,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(310534,42474,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(310535,42474,'blocks_21_promo_panel_content_actions','1'),(310536,42474,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(310537,42474,'blocks_21_promo_panel_content',''),(310538,42474,'_blocks_21_promo_panel_content','field_617693e1428f4'),(310649,42475,'hide_hero','0'),(310650,42475,'_hide_hero','field_66a2380fcda39'),(310651,42475,'hero_title',''),(310652,42475,'_hero_title','field_617571fe285e8'),(310653,42475,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(310654,42475,'_hero_text','field_6175723c285e9'),(310655,42475,'hero_actions','1'),(310656,42475,'_hero_actions','field_61757270285ea'),(310657,42475,'hero_style','default'),(310658,42475,'_hero_style','field_62051d9dc5324'),(310659,42475,'hero_image_pos_x','right'),(310660,42475,'_hero_image_pos_x','field_62ec3d05390bb'),(310661,42475,'hero_image_pos_y','top'),(310662,42475,'_hero_image_pos_y','field_62ec3d05390bc'),(310663,42475,'hero_image_pos',''),(310664,42475,'_hero_image_pos','field_62ec3d05390ba'),(310665,42475,'fft_hide_from_listings','0'),(310666,42475,'_fft_hide_from_listings','field_61f1320446ab2'),(310667,42475,'post_format','402'),(310668,42475,'_post_format','field_61756bfb51898'),(310669,42475,'post_author',''),(310670,42475,'_post_author','field_62ec389d22113'),(310671,42475,'post_reviewer',''),(310672,42475,'_post_reviewer','field_627140a2a9800'),(310673,42475,'post_table_of_contents','0'),(310674,42475,'_post_table_of_contents','field_65c503bc846a6'),(310675,42475,'blocks','a:23:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:16:\"standard_content\";i:16;s:10:\"text_block\";i:17;s:5:\"icons\";i:18;s:10:\"split_5050\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:10:\"text_block\";i:22;s:11:\"promo_panel\";}'),(310676,42475,'_blocks','field_6176696113096'),(310677,42475,'_thumbnail_id','41331'),(310678,42475,'__thumbnail_id','field_617570855ddaf'),(310679,42475,'blocks_0_acfe_flexible_toggle',''),(310680,42475,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(310681,42475,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(310682,42475,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(310683,42475,'blocks_0_options_theme','#ffffff'),(310684,42475,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(310685,42475,'blocks_0_options',''),(310686,42475,'_blocks_0_options','field_6177b758246ae'),(310687,42475,'blocks_0_link_stack_content_title',''),(310688,42475,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(310689,42475,'blocks_0_link_stack_content_heading','What is MSK?'),(310690,42475,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(310691,42475,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(310692,42475,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(310693,42475,'blocks_0_link_stack_content_actions_0_button',''),(310694,42475,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(310695,42475,'blocks_0_link_stack_content_actions','1'),(310696,42475,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(310697,42475,'blocks_0_link_stack_content',''),(310698,42475,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(310699,42475,'blocks_0_link_stack_0_label','1.'),(310700,42475,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(310701,42475,'blocks_0_link_stack_0_title','Overview'),(310702,42475,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(310703,42475,'blocks_0_link_stack_0_url','#overview'),(310704,42475,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(310705,42475,'blocks_0_link_stack_1_label','2.'),(310706,42475,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(310707,42475,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(310708,42475,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(310709,42475,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(310710,42475,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(310711,42475,'blocks_0_link_stack_2_label','3.'),(310712,42475,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(310713,42475,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(310714,42475,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(310715,42475,'blocks_0_link_stack_2_url','#who-should-study-msk'),(310716,42475,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(310717,42475,'blocks_0_link_stack_3_label','4.'),(310718,42475,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(310719,42475,'blocks_0_link_stack_3_title','Common MSK Conditions'),(310720,42475,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(310721,42475,'blocks_0_link_stack_3_url','#common-msk-conditions'),(310722,42475,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(310723,42475,'blocks_0_link_stack_4_label','5.'),(310724,42475,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(310725,42475,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(310726,42475,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(310727,42475,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(310728,42475,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(310729,42475,'blocks_0_link_stack_5_label','6.'),(310730,42475,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(310731,42475,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(310732,42475,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(310733,42475,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(310734,42475,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(310735,42475,'blocks_0_link_stack','6'),(310736,42475,'_blocks_0_link_stack','field_6177b7f600cff'),(310737,42475,'blocks_1_acfe_flexible_toggle',''),(310738,42475,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310739,42475,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(310740,42475,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310741,42475,'blocks_1_options_theme','#ffffff'),(310742,42475,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(310743,42475,'blocks_1_options_reverse','0'),(310744,42475,'_blocks_1_options_reverse','field_61768049bb8ac'),(310745,42475,'blocks_1_options',''),(310746,42475,'_blocks_1_options','field_617682517c334'),(310747,42475,'blocks_1_split_5050_image','40615'),(310748,42475,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(310749,42475,'blocks_1_split_5050_video',''),(310750,42475,'_blocks_1_split_5050_video','field_6239f3160848a'),(310751,42475,'blocks_1_split_5050_content_title',''),(310752,42475,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(310753,42475,'blocks_1_split_5050_content_heading','Overview'),(310754,42475,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(310755,42475,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(310756,42475,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(310757,42475,'blocks_1_split_5050_content_actions',''),(310758,42475,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(310759,42475,'blocks_1_split_5050_content',''),(310760,42475,'_blocks_1_split_5050_content','field_61767afceb8ba'),(310761,42475,'blocks_3_acfe_flexible_toggle','1'),(310762,42475,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310763,42475,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(310764,42475,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310765,42475,'blocks_3_options_theme','#f5f5f5'),(310766,42475,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(310767,42475,'blocks_3_options_reverse','1'),(310768,42475,'_blocks_3_options_reverse','field_61768049bb8ac'),(310769,42475,'blocks_3_options',''),(310770,42475,'_blocks_3_options','field_617682517c334'),(310771,42475,'blocks_3_split_5050_image','41330'),(310772,42475,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(310773,42475,'blocks_3_split_5050_video',''),(310774,42475,'_blocks_3_split_5050_video','field_6239f3160848a'),(310775,42475,'blocks_3_split_5050_content_title',''),(310776,42475,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(310777,42475,'blocks_3_split_5050_content_heading',''),(310778,42475,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(310779,42475,'blocks_3_split_5050_content_text',''),(310780,42475,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(310781,42475,'blocks_3_split_5050_content_actions',''),(310782,42475,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(310783,42475,'blocks_3_split_5050_content',''),(310784,42475,'_blocks_3_split_5050_content','field_61767afceb8ba'),(310785,42475,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(310786,42475,'_hero_actions_0_button','field_61757281285eb'),(310787,42475,'blocks_7_acfe_flexible_toggle',''),(310788,42475,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310789,42475,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(310790,42475,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310791,42475,'blocks_7_options_theme','#ffffff'),(310792,42475,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(310793,42475,'blocks_7_options_reverse','0'),(310794,42475,'_blocks_7_options_reverse','field_61768049bb8ac'),(310795,42475,'blocks_7_options',''),(310796,42475,'_blocks_7_options','field_617682517c334'),(310797,42475,'blocks_7_split_5050_image','41539'),(310798,42475,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(310799,42475,'blocks_7_split_5050_video',''),(310800,42475,'_blocks_7_split_5050_video','field_6239f3160848a'),(310801,42475,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(310802,42475,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(310803,42475,'blocks_7_split_5050_content_heading',''),(310804,42475,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(310805,42475,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(310806,42475,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(310807,42475,'blocks_7_split_5050_content_actions',''),(310808,42475,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(310809,42475,'blocks_7_split_5050_content',''),(310810,42475,'_blocks_7_split_5050_content','field_61767afceb8ba'),(310811,42475,'blocks_8_acfe_flexible_toggle',''),(310812,42475,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310813,42475,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(310814,42475,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310815,42475,'blocks_8_options_theme','#ffffff'),(310816,42475,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(310817,42475,'blocks_8_options_reverse','0'),(310818,42475,'_blocks_8_options_reverse','field_61768049bb8ac'),(310819,42475,'blocks_8_options',''),(310820,42475,'_blocks_8_options','field_617682517c334'),(310821,42475,'blocks_8_split_5050_image','41502'),(310822,42475,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(310823,42475,'blocks_8_split_5050_video',''),(310824,42475,'_blocks_8_split_5050_video','field_6239f3160848a'),(310825,42475,'blocks_8_split_5050_content_title','Educators and Researchers'),(310826,42475,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(310827,42475,'blocks_8_split_5050_content_heading',''),(310828,42475,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(310829,42475,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(310830,42475,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(310831,42475,'blocks_8_split_5050_content_actions',''),(310832,42475,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(310833,42475,'blocks_8_split_5050_content',''),(310834,42475,'_blocks_8_split_5050_content','field_61767afceb8ba'),(310835,42475,'blocks_9_acfe_flexible_toggle',''),(310836,42475,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310837,42475,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(310838,42475,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310839,42475,'blocks_9_options_theme','#ffffff'),(310840,42475,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(310841,42475,'blocks_9_options_reverse','0'),(310842,42475,'_blocks_9_options_reverse','field_61768049bb8ac'),(310843,42475,'blocks_9_options',''),(310844,42475,'_blocks_9_options','field_617682517c334'),(310845,42475,'blocks_9_split_5050_image','41506'),(310846,42475,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(310847,42475,'blocks_9_split_5050_video',''),(310848,42475,'_blocks_9_split_5050_video','field_6239f3160848a'),(310849,42475,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(310850,42475,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(310851,42475,'blocks_9_split_5050_content_heading',''),(310852,42475,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(310853,42475,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(310854,42475,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(310855,42475,'blocks_9_split_5050_content_actions',''),(310856,42475,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(310857,42475,'blocks_9_split_5050_content',''),(310858,42475,'_blocks_9_split_5050_content','field_61767afceb8ba'),(310859,42475,'blocks_13_acfe_flexible_toggle',''),(310860,42475,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310861,42475,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(310862,42475,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310863,42475,'blocks_13_options_theme','#ffffff'),(310864,42475,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(310865,42475,'blocks_13_options_reverse','1'),(310866,42475,'_blocks_13_options_reverse','field_61768049bb8ac'),(310867,42475,'blocks_13_options',''),(310868,42475,'_blocks_13_options','field_617682517c334'),(310869,42475,'blocks_13_split_5050_image','40387'),(310870,42475,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(310871,42475,'blocks_13_split_5050_video',''),(310872,42475,'_blocks_13_split_5050_video','field_6239f3160848a'),(310873,42475,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(310874,42475,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(310875,42475,'blocks_13_split_5050_content_heading',''),(310876,42475,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(310877,42475,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(310878,42475,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(310879,42475,'blocks_13_split_5050_content_actions',''),(310880,42475,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(310881,42475,'blocks_13_split_5050_content',''),(310882,42475,'_blocks_13_split_5050_content','field_61767afceb8ba'),(310883,42475,'blocks_14_acfe_flexible_toggle',''),(310884,42475,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310885,42475,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(310886,42475,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310887,42475,'blocks_14_options_theme','#ffffff'),(310888,42475,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(310889,42475,'blocks_14_options_reverse','1'),(310890,42475,'_blocks_14_options_reverse','field_61768049bb8ac'),(310891,42475,'blocks_14_options',''),(310892,42475,'_blocks_14_options','field_617682517c334'),(310893,42475,'blocks_14_split_5050_image','18856'),(310894,42475,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(310895,42475,'blocks_14_split_5050_video',''),(310896,42475,'_blocks_14_split_5050_video','field_6239f3160848a'),(310897,42475,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(310898,42475,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(310899,42475,'blocks_14_split_5050_content_heading',''),(310900,42475,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(310901,42475,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(310902,42475,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(310903,42475,'blocks_14_split_5050_content_actions',''),(310904,42475,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(310905,42475,'blocks_14_split_5050_content',''),(310906,42475,'_blocks_14_split_5050_content','field_61767afceb8ba'),(310907,42475,'blocks_19_acfe_flexible_toggle',''),(310908,42475,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(310909,42475,'blocks_19_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(310910,42475,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(310911,42475,'blocks_19_options_theme','#ffffff'),(310912,42475,'_blocks_19_options_theme','field_6176830e2ad17'),(310913,42475,'blocks_19_options',''),(310914,42475,'_blocks_19_options','field_6176830e2ad16'),(310915,42475,'blocks_19_text_block_heading','The Role of MSK Education in Workplace Health'),(310916,42475,'_blocks_19_text_block_heading','field_617669d413097'),(310917,42475,'blocks_19_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(310918,42475,'_blocks_19_text_block_content','field_617669ec13098'),(310919,42475,'blocks_20_acfe_flexible_toggle',''),(310920,42475,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(310921,42475,'blocks_20_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(310922,42475,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(310923,42475,'blocks_20_options_theme','#ffffff'),(310924,42475,'_blocks_20_options_theme','field_6176830e2ad17'),(310925,42475,'blocks_20_options',''),(310926,42475,'_blocks_20_options','field_6176830e2ad16'),(310927,42475,'blocks_20_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(310928,42475,'_blocks_20_text_block_heading','field_617669d413097'),(310929,42475,'blocks_20_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(310930,42475,'_blocks_20_text_block_content','field_617669ec13098'),(310931,42475,'blocks_6_acfe_flexible_toggle',''),(310932,42475,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310933,42475,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(310934,42475,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310935,42475,'blocks_6_options_theme','#ffffff'),(310936,42475,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(310937,42475,'blocks_6_options_reverse','0'),(310938,42475,'_blocks_6_options_reverse','field_61768049bb8ac'),(310939,42475,'blocks_6_options',''),(310940,42475,'_blocks_6_options','field_617682517c334'),(310941,42475,'blocks_6_split_5050_image','41505'),(310942,42475,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(310943,42475,'blocks_6_split_5050_video',''),(310944,42475,'_blocks_6_split_5050_video','field_6239f3160848a'),(310945,42475,'blocks_6_split_5050_content_title','Current Practitioners'),(310946,42475,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(310947,42475,'blocks_6_split_5050_content_heading',''),(310948,42475,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(310949,42475,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(310950,42475,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(310951,42475,'blocks_6_split_5050_content_actions',''),(310952,42475,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(310953,42475,'blocks_6_split_5050_content',''),(310954,42475,'_blocks_6_split_5050_content','field_61767afceb8ba'),(310955,42475,'blocks_2_acfe_flexible_toggle',''),(310956,42475,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310957,42475,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(310958,42475,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310959,42475,'blocks_2_options_theme','#f5f5f5'),(310960,42475,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(310961,42475,'blocks_2_options_reverse','1'),(310962,42475,'_blocks_2_options_reverse','field_61768049bb8ac'),(310963,42475,'blocks_2_options',''),(310964,42475,'_blocks_2_options','field_617682517c334'),(310965,42475,'blocks_2_split_5050_image','40618'),(310966,42475,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(310967,42475,'blocks_2_split_5050_video',''),(310968,42475,'_blocks_2_split_5050_video','field_6239f3160848a'),(310969,42475,'blocks_2_split_5050_content_title',''),(310970,42475,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(310971,42475,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(310972,42475,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(310973,42475,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(310974,42475,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(310975,42475,'blocks_2_split_5050_content_actions',''),(310976,42475,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(310977,42475,'blocks_2_split_5050_content',''),(310978,42475,'_blocks_2_split_5050_content','field_61767afceb8ba'),(310979,42475,'blocks_4_acfe_flexible_toggle',''),(310980,42475,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(310981,42475,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(310982,42475,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(310983,42475,'blocks_4_options_theme','#ffffff'),(310984,42475,'_blocks_4_options_theme','field_6176830e2ad17'),(310985,42475,'blocks_4_options',''),(310986,42475,'_blocks_4_options','field_6176830e2ad16'),(310987,42475,'blocks_4_text_block_heading','Who Should Study MSK?'),(310988,42475,'_blocks_4_text_block_heading','field_617669d413097'),(310989,42475,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(310990,42475,'_blocks_4_text_block_content','field_617669ec13098'),(310991,42475,'blocks_5_acfe_flexible_toggle',''),(310992,42475,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(310993,42475,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(310994,42475,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(310995,42475,'blocks_5_options_theme','#ffffff'),(310996,42475,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(310997,42475,'blocks_5_options_reverse','0'),(310998,42475,'_blocks_5_options_reverse','field_61768049bb8ac'),(310999,42475,'blocks_5_options',''),(311000,42475,'_blocks_5_options','field_617682517c334'),(311001,42475,'blocks_5_split_5050_image','41542'),(311002,42475,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(311003,42475,'blocks_5_split_5050_video',''),(311004,42475,'_blocks_5_split_5050_video','field_6239f3160848a'),(311005,42475,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(311006,42475,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(311007,42475,'blocks_5_split_5050_content_heading',''),(311008,42475,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(311009,42475,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(311010,42475,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(311011,42475,'blocks_5_split_5050_content_actions',''),(311012,42475,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(311013,42475,'blocks_5_split_5050_content',''),(311014,42475,'_blocks_5_split_5050_content','field_61767afceb8ba'),(311015,42475,'blocks_10_acfe_flexible_toggle',''),(311016,42475,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(311017,42475,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(311018,42475,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(311019,42475,'blocks_10_options_theme','#f5f5f5'),(311020,42475,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(311021,42475,'blocks_10_options_state','0'),(311022,42475,'_blocks_10_options_state','field_6239fcb7508c5'),(311023,42475,'blocks_10_options',''),(311024,42475,'_blocks_10_options','field_6177e2991ac44'),(311025,42475,'blocks_10_content_title',''),(311026,42475,'_blocks_10_content_title','field_64d237e8bb1e2'),(311027,42475,'blocks_10_content_heading','Common MSK Conditions'),(311028,42475,'_blocks_10_content_heading','field_64d237e8bb1e3'),(311029,42475,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(311030,42475,'_blocks_10_content_text','field_64d237e8bb1e4'),(311031,42475,'blocks_10_content_actions',''),(311032,42475,'_blocks_10_content_actions','field_64d237e8bb1e5'),(311033,42475,'blocks_10_content_align','left'),(311034,42475,'_blocks_10_content_align','field_64d2443e6b6aa'),(311035,42475,'blocks_10_content',''),(311036,42475,'_blocks_10_content','field_64d237e8bb1e1'),(311037,42475,'blocks_10_accordion_content','custom'),(311038,42475,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(311039,42475,'blocks_10_accordion_items_0_title','Osteoarthritis'),(311040,42475,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(311041,42475,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(311042,42475,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(311043,42475,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(311044,42475,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(311045,42475,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(311046,42475,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(311047,42475,'blocks_10_accordion_items_2_title','Back Pain'),(311048,42475,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(311049,42475,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(311050,42475,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(311051,42475,'blocks_10_accordion_items_3_title','Osteoporosis'),(311052,42475,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(311053,42475,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(311054,42475,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(311055,42475,'blocks_10_accordion_items_4_title','Tendinitis'),(311056,42475,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(311057,42475,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(311058,42475,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(311059,42475,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(311060,42475,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(311061,42475,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(311062,42475,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(311063,42475,'blocks_10_accordion_items_6_title','Fibromyalgia'),(311064,42475,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(311065,42475,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(311066,42475,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(311067,42475,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(311068,42475,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(311069,42475,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(311070,42475,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(311071,42475,'blocks_10_accordion_items','8'),(311072,42475,'_blocks_10_accordion_items','field_6177e2991ac4c'),(311073,42475,'blocks_10_actions',''),(311074,42475,'_blocks_10_actions','field_61a746a817f7a'),(311075,42475,'blocks_11_acfe_flexible_toggle',''),(311076,42475,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(311077,42475,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(311078,42475,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(311079,42475,'blocks_11_options_theme','#ffffff'),(311080,42475,'_blocks_11_options_theme','field_6176830e2ad17'),(311081,42475,'blocks_11_options',''),(311082,42475,'_blocks_11_options','field_6176830e2ad16'),(311083,42475,'blocks_11_text_block_heading','The Importance of MSK Education'),(311084,42475,'_blocks_11_text_block_heading','field_617669d413097'),(311085,42475,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(311086,42475,'_blocks_11_text_block_content','field_617669ec13098'),(311087,42475,'blocks_12_acfe_flexible_toggle',''),(311088,42475,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311089,42475,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(311090,42475,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311091,42475,'blocks_12_options_theme','#ffffff'),(311092,42475,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(311093,42475,'blocks_12_options_reverse','1'),(311094,42475,'_blocks_12_options_reverse','field_61768049bb8ac'),(311095,42475,'blocks_12_options',''),(311096,42475,'_blocks_12_options','field_617682517c334'),(311097,42475,'blocks_12_split_5050_image','41498'),(311098,42475,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(311099,42475,'blocks_12_split_5050_video',''),(311100,42475,'_blocks_12_split_5050_video','field_6239f3160848a'),(311101,42475,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(311102,42475,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(311103,42475,'blocks_12_split_5050_content_heading',''),(311104,42475,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(311105,42475,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(311106,42475,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(311107,42475,'blocks_12_split_5050_content_actions',''),(311108,42475,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(311109,42475,'blocks_12_split_5050_content',''),(311110,42475,'_blocks_12_split_5050_content','field_61767afceb8ba'),(311111,42475,'blocks_15_acfe_flexible_toggle',''),(311112,42475,'_blocks_15_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(311113,42475,'blocks_15_acfe_flexible_layout_title','Standard/Editorial Content'),(311114,42475,'_blocks_15_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(311115,42475,'blocks_15_content','<h2 style=\"text-align: center;\">How Intrinsic Biomechanics Enhances MSK Education</h2>'),(311116,42475,'_blocks_15_content','field_6193c9b5eac84'),(311117,42475,'blocks_16_acfe_flexible_toggle',''),(311118,42475,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(311119,42475,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(311120,42475,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(311121,42475,'blocks_16_options_theme','#b61234'),(311122,42475,'_blocks_16_options_theme','field_6176830e2ad17'),(311123,42475,'blocks_16_options',''),(311124,42475,'_blocks_16_options','field_6176830e2ad16'),(311125,42475,'blocks_16_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(311126,42475,'_blocks_16_text_block_heading','field_617669d413097'),(311127,42475,'blocks_16_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(311128,42475,'_blocks_16_text_block_content','field_617669ec13098'),(311129,42475,'blocks_17_acfe_flexible_toggle',''),(311130,42475,'_blocks_17_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(311131,42475,'blocks_17_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(311132,42475,'_blocks_17_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(311133,42475,'blocks_17_options_theme','#b61234'),(311134,42475,'_blocks_17_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(311135,42475,'blocks_17_options_format','row'),(311136,42475,'_blocks_17_options_format','field_64bfde9a90690'),(311137,42475,'blocks_17_options',''),(311138,42475,'_blocks_17_options','field_64bfdd9b90684'),(311139,42475,'blocks_17_icon_row_items_0_icon','pass-rate.svg'),(311140,42475,'_blocks_17_icon_row_items_0_icon','field_64bfdd9b9068d'),(311141,42475,'blocks_17_icon_row_items_0_label','More Accurate Assessments'),(311142,42475,'_blocks_17_icon_row_items_0_label','field_64bfdd9c9068e'),(311143,42475,'blocks_17_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(311144,42475,'_blocks_17_icon_row_items_0_text','field_64bfdd9c9068f'),(311145,42475,'blocks_17_icon_row_items_1_icon','exceptional-support.svg'),(311146,42475,'_blocks_17_icon_row_items_1_icon','field_64bfdd9b9068d'),(311147,42475,'blocks_17_icon_row_items_1_label','Personalised Movement Strategies'),(311148,42475,'_blocks_17_icon_row_items_1_label','field_64bfdd9c9068e'),(311149,42475,'blocks_17_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(311150,42475,'_blocks_17_icon_row_items_1_text','field_64bfdd9c9068f'),(311151,42475,'blocks_17_icon_row_items_2_icon','lifetime-course-access.svg'),(311152,42475,'_blocks_17_icon_row_items_2_icon','field_64bfdd9b9068d'),(311153,42475,'blocks_17_icon_row_items_2_label','Injury Prevention and Longevity'),(311154,42475,'_blocks_17_icon_row_items_2_label','field_64bfdd9c9068e'),(311155,42475,'blocks_17_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(311156,42475,'_blocks_17_icon_row_items_2_text','field_64bfdd9c9068f'),(311157,42475,'blocks_17_icon_row_items_3_icon','recognised.svg'),(311158,42475,'_blocks_17_icon_row_items_3_icon','field_64bfdd9b9068d'),(311159,42475,'blocks_17_icon_row_items_3_label','Optimised Performance'),(311160,42475,'_blocks_17_icon_row_items_3_label','field_64bfdd9c9068e'),(311161,42475,'blocks_17_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(311162,42475,'_blocks_17_icon_row_items_3_text','field_64bfdd9c9068f'),(311163,42475,'blocks_17_icon_row_items','4'),(311164,42475,'_blocks_17_icon_row_items','field_64bfdd9b9068c'),(311165,42475,'blocks_18_acfe_flexible_toggle',''),(311166,42475,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311167,42475,'blocks_18_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(311168,42475,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311169,42475,'blocks_18_options_theme','#ffffff'),(311170,42475,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(311171,42475,'blocks_18_options_reverse','0'),(311172,42475,'_blocks_18_options_reverse','field_61768049bb8ac'),(311173,42475,'blocks_18_options',''),(311174,42475,'_blocks_18_options','field_617682517c334'),(311175,42475,'blocks_18_split_5050_image','41501'),(311176,42475,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(311177,42475,'blocks_18_split_5050_video',''),(311178,42475,'_blocks_18_split_5050_video','field_6239f3160848a'),(311179,42475,'blocks_18_split_5050_content_title',''),(311180,42475,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(311181,42475,'blocks_18_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(311182,42475,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(311183,42475,'blocks_18_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(311184,42475,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(311185,42475,'blocks_18_split_5050_content_actions',''),(311186,42475,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(311187,42475,'blocks_18_split_5050_content',''),(311188,42475,'_blocks_18_split_5050_content','field_61767afceb8ba'),(311189,42475,'blocks_21_acfe_flexible_toggle',''),(311190,42475,'_blocks_21_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(311191,42475,'blocks_21_acfe_flexible_layout_title','Conclusion'),(311192,42475,'_blocks_21_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(311193,42475,'blocks_21_options_theme','#b61234'),(311194,42475,'_blocks_21_options_theme','field_6176830e2ad17'),(311195,42475,'blocks_21_options',''),(311196,42475,'_blocks_21_options','field_6176830e2ad16'),(311197,42475,'blocks_21_text_block_heading','Conclusion'),(311198,42475,'_blocks_21_text_block_heading','field_617669d413097'),(311199,42475,'blocks_21_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(311200,42475,'_blocks_21_text_block_content','field_617669ec13098'),(311201,42475,'blocks_22_acfe_flexible_toggle',''),(311202,42475,'_blocks_22_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(311203,42475,'blocks_22_acfe_flexible_layout_title','Promo Panel'),(311204,42475,'_blocks_22_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(311205,42475,'blocks_22_options_alignment','center'),(311206,42475,'_blocks_22_options_alignment','field_61769449f5490'),(311207,42475,'blocks_22_options',''),(311208,42475,'_blocks_22_options','field_617693e1428f0'),(311209,42475,'blocks_22_promo_panel_image','40342'),(311210,42475,'_blocks_22_promo_panel_image','field_617693e1428f3'),(311211,42475,'blocks_22_promo_panel_content_heading','Want to Get Started?'),(311212,42475,'_blocks_22_promo_panel_content_heading','field_617693e1428f6'),(311213,42475,'blocks_22_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(311214,42475,'_blocks_22_promo_panel_content_text','field_617693e1428f7'),(311215,42475,'blocks_22_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(311216,42475,'_blocks_22_promo_panel_content_actions_0_button','field_617693e1428f9'),(311217,42475,'blocks_22_promo_panel_content_actions','1'),(311218,42475,'_blocks_22_promo_panel_content_actions','field_617693e1428f8'),(311219,42475,'blocks_22_promo_panel_content',''),(311220,42475,'_blocks_22_promo_panel_content','field_617693e1428f4'),(311221,42431,'blocks_15_acfe_flexible_toggle',''),(311222,42431,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(311223,42431,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(311224,42431,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(311225,42431,'blocks_15_options_theme','#b61234'),(311226,42431,'_blocks_15_options_theme','field_6176830e2ad17'),(311227,42431,'blocks_15_options',''),(311228,42431,'_blocks_15_options','field_6176830e2ad16'),(311229,42431,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(311230,42431,'_blocks_15_text_block_heading','field_617669d413097'),(311231,42431,'blocks_15_text_block_content',''),(311232,42431,'_blocks_15_text_block_content','field_617669ec13098'),(311233,42431,'blocks_16_acfe_flexible_toggle',''),(311234,42431,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(311235,42431,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(311236,42431,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(311237,42431,'blocks_16_options_theme','#b61234'),(311238,42431,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(311239,42431,'blocks_16_options_format','row'),(311240,42431,'_blocks_16_options_format','field_64bfde9a90690'),(311241,42431,'blocks_16_options',''),(311242,42431,'_blocks_16_options','field_64bfdd9b90684'),(311243,42431,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(311244,42431,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(311245,42431,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(311246,42431,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(311247,42431,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(311248,42431,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(311249,42431,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(311250,42431,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(311251,42431,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(311252,42431,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(311253,42431,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(311254,42431,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(311255,42431,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(311256,42431,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(311257,42431,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(311258,42431,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(311259,42431,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(311260,42431,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(311261,42431,'blocks_16_icon_row_items_3_icon','recognised.svg'),(311262,42431,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(311263,42431,'blocks_16_icon_row_items_3_label','Optimised Performance'),(311264,42431,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(311265,42431,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(311266,42431,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(311267,42431,'blocks_16_icon_row_items','4'),(311268,42431,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(311269,42431,'blocks_17_acfe_flexible_toggle',''),(311270,42431,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311271,42431,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(311272,42431,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311273,42431,'blocks_17_options_theme','#ffffff'),(311274,42431,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(311275,42431,'blocks_17_options_reverse','0'),(311276,42431,'_blocks_17_options_reverse','field_61768049bb8ac'),(311277,42431,'blocks_17_options',''),(311278,42431,'_blocks_17_options','field_617682517c334'),(311279,42431,'blocks_17_split_5050_image','41501'),(311280,42431,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(311281,42431,'blocks_17_split_5050_video',''),(311282,42431,'_blocks_17_split_5050_video','field_6239f3160848a'),(311283,42431,'blocks_17_split_5050_content_title',''),(311284,42431,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(311285,42431,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(311286,42431,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(311287,42431,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(311288,42431,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(311289,42431,'blocks_17_split_5050_content_actions',''),(311290,42431,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(311291,42431,'blocks_17_split_5050_content',''),(311292,42431,'_blocks_17_split_5050_content','field_61767afceb8ba'),(311293,42431,'blocks_18_acfe_flexible_toggle',''),(311294,42431,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(311295,42431,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(311296,42431,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(311297,42431,'blocks_18_options_theme','#ffffff'),(311298,42431,'_blocks_18_options_theme','field_6176830e2ad17'),(311299,42431,'blocks_18_options',''),(311300,42431,'_blocks_18_options','field_6176830e2ad16'),(311301,42431,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(311302,42431,'_blocks_18_text_block_heading','field_617669d413097'),(311303,42431,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(311304,42431,'_blocks_18_text_block_content','field_617669ec13098'),(311305,42431,'blocks_21_acfe_flexible_toggle',''),(311306,42431,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(311307,42431,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(311308,42431,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(311309,42431,'blocks_21_options_alignment','center'),(311310,42431,'_blocks_21_options_alignment','field_61769449f5490'),(311311,42431,'blocks_21_options',''),(311312,42431,'_blocks_21_options','field_617693e1428f0'),(311313,42431,'blocks_21_promo_panel_image','41307'),(311314,42431,'_blocks_21_promo_panel_image','field_617693e1428f3'),(311315,42431,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(311316,42431,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(311317,42431,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(311318,42431,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(311319,42431,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(311320,42431,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(311321,42431,'blocks_21_promo_panel_content_actions','1'),(311322,42431,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(311323,42431,'blocks_21_promo_panel_content',''),(311324,42431,'_blocks_21_promo_panel_content','field_617693e1428f4'),(311325,42476,'hide_hero','0'),(311326,42476,'_hide_hero','field_66a2380fcda39'),(311327,42476,'hero_title',''),(311328,42476,'_hero_title','field_617571fe285e8'),(311329,42476,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(311330,42476,'_hero_text','field_6175723c285e9'),(311331,42476,'hero_actions','1'),(311332,42476,'_hero_actions','field_61757270285ea'),(311333,42476,'hero_style','default'),(311334,42476,'_hero_style','field_62051d9dc5324'),(311335,42476,'hero_image_pos_x','right'),(311336,42476,'_hero_image_pos_x','field_62ec3d05390bb'),(311337,42476,'hero_image_pos_y','top'),(311338,42476,'_hero_image_pos_y','field_62ec3d05390bc'),(311339,42476,'hero_image_pos',''),(311340,42476,'_hero_image_pos','field_62ec3d05390ba'),(311341,42476,'fft_hide_from_listings','0'),(311342,42476,'_fft_hide_from_listings','field_61f1320446ab2'),(311343,42476,'post_format','402'),(311344,42476,'_post_format','field_61756bfb51898'),(311345,42476,'post_author',''),(311346,42476,'_post_author','field_62ec389d22113'),(311347,42476,'post_reviewer',''),(311348,42476,'_post_reviewer','field_627140a2a9800'),(311349,42476,'post_table_of_contents','0'),(311350,42476,'_post_table_of_contents','field_65c503bc846a6'),(311351,42476,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(311352,42476,'_blocks','field_6176696113096'),(311353,42476,'_thumbnail_id','41331'),(311354,42476,'__thumbnail_id','field_617570855ddaf'),(311355,42476,'blocks_0_acfe_flexible_toggle',''),(311356,42476,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(311357,42476,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(311358,42476,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(311359,42476,'blocks_0_options_theme','#ffffff'),(311360,42476,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(311361,42476,'blocks_0_options',''),(311362,42476,'_blocks_0_options','field_6177b758246ae'),(311363,42476,'blocks_0_link_stack_content_title',''),(311364,42476,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(311365,42476,'blocks_0_link_stack_content_heading','What is MSK?'),(311366,42476,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(311367,42476,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(311368,42476,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(311369,42476,'blocks_0_link_stack_content_actions_0_button',''),(311370,42476,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(311371,42476,'blocks_0_link_stack_content_actions','1'),(311372,42476,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(311373,42476,'blocks_0_link_stack_content',''),(311374,42476,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(311375,42476,'blocks_0_link_stack_0_label','1.'),(311376,42476,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(311377,42476,'blocks_0_link_stack_0_title','Overview'),(311378,42476,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(311379,42476,'blocks_0_link_stack_0_url','#overview'),(311380,42476,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(311381,42476,'blocks_0_link_stack_1_label','2.'),(311382,42476,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(311383,42476,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(311384,42476,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(311385,42476,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(311386,42476,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(311387,42476,'blocks_0_link_stack_2_label','3.'),(311388,42476,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(311389,42476,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(311390,42476,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(311391,42476,'blocks_0_link_stack_2_url','#who-should-study-msk'),(311392,42476,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(311393,42476,'blocks_0_link_stack_3_label','4.'),(311394,42476,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(311395,42476,'blocks_0_link_stack_3_title','Common MSK Conditions'),(311396,42476,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(311397,42476,'blocks_0_link_stack_3_url','#common-msk-conditions'),(311398,42476,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(311399,42476,'blocks_0_link_stack_4_label','5.'),(311400,42476,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(311401,42476,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(311402,42476,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(311403,42476,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(311404,42476,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(311405,42476,'blocks_0_link_stack_5_label','6.'),(311406,42476,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(311407,42476,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(311408,42476,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(311409,42476,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(311410,42476,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(311411,42476,'blocks_0_link_stack','6'),(311412,42476,'_blocks_0_link_stack','field_6177b7f600cff'),(311413,42476,'blocks_1_acfe_flexible_toggle',''),(311414,42476,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311415,42476,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(311416,42476,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311417,42476,'blocks_1_options_theme','#ffffff'),(311418,42476,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(311419,42476,'blocks_1_options_reverse','0'),(311420,42476,'_blocks_1_options_reverse','field_61768049bb8ac'),(311421,42476,'blocks_1_options',''),(311422,42476,'_blocks_1_options','field_617682517c334'),(311423,42476,'blocks_1_split_5050_image','40615'),(311424,42476,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(311425,42476,'blocks_1_split_5050_video',''),(311426,42476,'_blocks_1_split_5050_video','field_6239f3160848a'),(311427,42476,'blocks_1_split_5050_content_title',''),(311428,42476,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(311429,42476,'blocks_1_split_5050_content_heading','Overview'),(311430,42476,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(311431,42476,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(311432,42476,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(311433,42476,'blocks_1_split_5050_content_actions',''),(311434,42476,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(311435,42476,'blocks_1_split_5050_content',''),(311436,42476,'_blocks_1_split_5050_content','field_61767afceb8ba'),(311437,42476,'blocks_3_acfe_flexible_toggle','1'),(311438,42476,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311439,42476,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(311440,42476,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311441,42476,'blocks_3_options_theme','#f5f5f5'),(311442,42476,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(311443,42476,'blocks_3_options_reverse','1'),(311444,42476,'_blocks_3_options_reverse','field_61768049bb8ac'),(311445,42476,'blocks_3_options',''),(311446,42476,'_blocks_3_options','field_617682517c334'),(311447,42476,'blocks_3_split_5050_image','41330'),(311448,42476,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(311449,42476,'blocks_3_split_5050_video',''),(311450,42476,'_blocks_3_split_5050_video','field_6239f3160848a'),(311451,42476,'blocks_3_split_5050_content_title',''),(311452,42476,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(311453,42476,'blocks_3_split_5050_content_heading',''),(311454,42476,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(311455,42476,'blocks_3_split_5050_content_text',''),(311456,42476,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(311457,42476,'blocks_3_split_5050_content_actions',''),(311458,42476,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(311459,42476,'blocks_3_split_5050_content',''),(311460,42476,'_blocks_3_split_5050_content','field_61767afceb8ba'),(311461,42476,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(311462,42476,'_hero_actions_0_button','field_61757281285eb'),(311463,42476,'blocks_7_acfe_flexible_toggle',''),(311464,42476,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311465,42476,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(311466,42476,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311467,42476,'blocks_7_options_theme','#ffffff'),(311468,42476,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(311469,42476,'blocks_7_options_reverse','0'),(311470,42476,'_blocks_7_options_reverse','field_61768049bb8ac'),(311471,42476,'blocks_7_options',''),(311472,42476,'_blocks_7_options','field_617682517c334'),(311473,42476,'blocks_7_split_5050_image','41539'),(311474,42476,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(311475,42476,'blocks_7_split_5050_video',''),(311476,42476,'_blocks_7_split_5050_video','field_6239f3160848a'),(311477,42476,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(311478,42476,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(311479,42476,'blocks_7_split_5050_content_heading',''),(311480,42476,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(311481,42476,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(311482,42476,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(311483,42476,'blocks_7_split_5050_content_actions',''),(311484,42476,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(311485,42476,'blocks_7_split_5050_content',''),(311486,42476,'_blocks_7_split_5050_content','field_61767afceb8ba'),(311487,42476,'blocks_8_acfe_flexible_toggle',''),(311488,42476,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311489,42476,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(311490,42476,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311491,42476,'blocks_8_options_theme','#ffffff'),(311492,42476,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(311493,42476,'blocks_8_options_reverse','0'),(311494,42476,'_blocks_8_options_reverse','field_61768049bb8ac'),(311495,42476,'blocks_8_options',''),(311496,42476,'_blocks_8_options','field_617682517c334'),(311497,42476,'blocks_8_split_5050_image','41502'),(311498,42476,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(311499,42476,'blocks_8_split_5050_video',''),(311500,42476,'_blocks_8_split_5050_video','field_6239f3160848a'),(311501,42476,'blocks_8_split_5050_content_title','Educators and Researchers'),(311502,42476,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(311503,42476,'blocks_8_split_5050_content_heading',''),(311504,42476,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(311505,42476,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(311506,42476,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(311507,42476,'blocks_8_split_5050_content_actions',''),(311508,42476,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(311509,42476,'blocks_8_split_5050_content',''),(311510,42476,'_blocks_8_split_5050_content','field_61767afceb8ba'),(311511,42476,'blocks_9_acfe_flexible_toggle',''),(311512,42476,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311513,42476,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(311514,42476,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311515,42476,'blocks_9_options_theme','#ffffff'),(311516,42476,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(311517,42476,'blocks_9_options_reverse','0'),(311518,42476,'_blocks_9_options_reverse','field_61768049bb8ac'),(311519,42476,'blocks_9_options',''),(311520,42476,'_blocks_9_options','field_617682517c334'),(311521,42476,'blocks_9_split_5050_image','41506'),(311522,42476,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(311523,42476,'blocks_9_split_5050_video',''),(311524,42476,'_blocks_9_split_5050_video','field_6239f3160848a'),(311525,42476,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(311526,42476,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(311527,42476,'blocks_9_split_5050_content_heading',''),(311528,42476,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(311529,42476,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(311530,42476,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(311531,42476,'blocks_9_split_5050_content_actions',''),(311532,42476,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(311533,42476,'blocks_9_split_5050_content',''),(311534,42476,'_blocks_9_split_5050_content','field_61767afceb8ba'),(311535,42476,'blocks_13_acfe_flexible_toggle',''),(311536,42476,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311537,42476,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(311538,42476,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311539,42476,'blocks_13_options_theme','#ffffff'),(311540,42476,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(311541,42476,'blocks_13_options_reverse','1'),(311542,42476,'_blocks_13_options_reverse','field_61768049bb8ac'),(311543,42476,'blocks_13_options',''),(311544,42476,'_blocks_13_options','field_617682517c334'),(311545,42476,'blocks_13_split_5050_image','40387'),(311546,42476,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(311547,42476,'blocks_13_split_5050_video',''),(311548,42476,'_blocks_13_split_5050_video','field_6239f3160848a'),(311549,42476,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(311550,42476,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(311551,42476,'blocks_13_split_5050_content_heading',''),(311552,42476,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(311553,42476,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(311554,42476,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(311555,42476,'blocks_13_split_5050_content_actions',''),(311556,42476,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(311557,42476,'blocks_13_split_5050_content',''),(311558,42476,'_blocks_13_split_5050_content','field_61767afceb8ba'),(311559,42476,'blocks_14_acfe_flexible_toggle',''),(311560,42476,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311561,42476,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(311562,42476,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311563,42476,'blocks_14_options_theme','#ffffff'),(311564,42476,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(311565,42476,'blocks_14_options_reverse','1'),(311566,42476,'_blocks_14_options_reverse','field_61768049bb8ac'),(311567,42476,'blocks_14_options',''),(311568,42476,'_blocks_14_options','field_617682517c334'),(311569,42476,'blocks_14_split_5050_image','18856'),(311570,42476,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(311571,42476,'blocks_14_split_5050_video',''),(311572,42476,'_blocks_14_split_5050_video','field_6239f3160848a'),(311573,42476,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(311574,42476,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(311575,42476,'blocks_14_split_5050_content_heading',''),(311576,42476,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(311577,42476,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(311578,42476,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(311579,42476,'blocks_14_split_5050_content_actions',''),(311580,42476,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(311581,42476,'blocks_14_split_5050_content',''),(311582,42476,'_blocks_14_split_5050_content','field_61767afceb8ba'),(311583,42476,'blocks_19_acfe_flexible_toggle',''),(311584,42476,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(311585,42476,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(311586,42476,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(311587,42476,'blocks_19_options_theme','#ffffff'),(311588,42476,'_blocks_19_options_theme','field_6176830e2ad17'),(311589,42476,'blocks_19_options',''),(311590,42476,'_blocks_19_options','field_6176830e2ad16'),(311591,42476,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(311592,42476,'_blocks_19_text_block_heading','field_617669d413097'),(311593,42476,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(311594,42476,'_blocks_19_text_block_content','field_617669ec13098'),(311595,42476,'blocks_20_acfe_flexible_toggle',''),(311596,42476,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(311597,42476,'blocks_20_acfe_flexible_layout_title','Conclusion'),(311598,42476,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(311599,42476,'blocks_20_options_theme','#b61234'),(311600,42476,'_blocks_20_options_theme','field_6176830e2ad17'),(311601,42476,'blocks_20_options',''),(311602,42476,'_blocks_20_options','field_6176830e2ad16'),(311603,42476,'blocks_20_text_block_heading','Conclusion'),(311604,42476,'_blocks_20_text_block_heading','field_617669d413097'),(311605,42476,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(311606,42476,'_blocks_20_text_block_content','field_617669ec13098'),(311607,42476,'blocks_6_acfe_flexible_toggle',''),(311608,42476,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311609,42476,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(311610,42476,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311611,42476,'blocks_6_options_theme','#ffffff'),(311612,42476,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(311613,42476,'blocks_6_options_reverse','0'),(311614,42476,'_blocks_6_options_reverse','field_61768049bb8ac'),(311615,42476,'blocks_6_options',''),(311616,42476,'_blocks_6_options','field_617682517c334'),(311617,42476,'blocks_6_split_5050_image','41505'),(311618,42476,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(311619,42476,'blocks_6_split_5050_video',''),(311620,42476,'_blocks_6_split_5050_video','field_6239f3160848a'),(311621,42476,'blocks_6_split_5050_content_title','Current Practitioners'),(311622,42476,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(311623,42476,'blocks_6_split_5050_content_heading',''),(311624,42476,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(311625,42476,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(311626,42476,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(311627,42476,'blocks_6_split_5050_content_actions',''),(311628,42476,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(311629,42476,'blocks_6_split_5050_content',''),(311630,42476,'_blocks_6_split_5050_content','field_61767afceb8ba'),(311631,42476,'blocks_2_acfe_flexible_toggle',''),(311632,42476,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311633,42476,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(311634,42476,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311635,42476,'blocks_2_options_theme','#f5f5f5'),(311636,42476,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(311637,42476,'blocks_2_options_reverse','1'),(311638,42476,'_blocks_2_options_reverse','field_61768049bb8ac'),(311639,42476,'blocks_2_options',''),(311640,42476,'_blocks_2_options','field_617682517c334'),(311641,42476,'blocks_2_split_5050_image','40618'),(311642,42476,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(311643,42476,'blocks_2_split_5050_video',''),(311644,42476,'_blocks_2_split_5050_video','field_6239f3160848a'),(311645,42476,'blocks_2_split_5050_content_title',''),(311646,42476,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(311647,42476,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(311648,42476,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(311649,42476,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(311650,42476,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(311651,42476,'blocks_2_split_5050_content_actions',''),(311652,42476,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(311653,42476,'blocks_2_split_5050_content',''),(311654,42476,'_blocks_2_split_5050_content','field_61767afceb8ba'),(311655,42476,'blocks_4_acfe_flexible_toggle',''),(311656,42476,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(311657,42476,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(311658,42476,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(311659,42476,'blocks_4_options_theme','#ffffff'),(311660,42476,'_blocks_4_options_theme','field_6176830e2ad17'),(311661,42476,'blocks_4_options',''),(311662,42476,'_blocks_4_options','field_6176830e2ad16'),(311663,42476,'blocks_4_text_block_heading','Who Should Study MSK?'),(311664,42476,'_blocks_4_text_block_heading','field_617669d413097'),(311665,42476,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(311666,42476,'_blocks_4_text_block_content','field_617669ec13098'),(311667,42476,'blocks_5_acfe_flexible_toggle',''),(311668,42476,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311669,42476,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(311670,42476,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311671,42476,'blocks_5_options_theme','#ffffff'),(311672,42476,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(311673,42476,'blocks_5_options_reverse','0'),(311674,42476,'_blocks_5_options_reverse','field_61768049bb8ac'),(311675,42476,'blocks_5_options',''),(311676,42476,'_blocks_5_options','field_617682517c334'),(311677,42476,'blocks_5_split_5050_image','41542'),(311678,42476,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(311679,42476,'blocks_5_split_5050_video',''),(311680,42476,'_blocks_5_split_5050_video','field_6239f3160848a'),(311681,42476,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(311682,42476,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(311683,42476,'blocks_5_split_5050_content_heading',''),(311684,42476,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(311685,42476,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(311686,42476,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(311687,42476,'blocks_5_split_5050_content_actions',''),(311688,42476,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(311689,42476,'blocks_5_split_5050_content',''),(311690,42476,'_blocks_5_split_5050_content','field_61767afceb8ba'),(311691,42476,'blocks_10_acfe_flexible_toggle',''),(311692,42476,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(311693,42476,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(311694,42476,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(311695,42476,'blocks_10_options_theme','#f5f5f5'),(311696,42476,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(311697,42476,'blocks_10_options_state','0'),(311698,42476,'_blocks_10_options_state','field_6239fcb7508c5'),(311699,42476,'blocks_10_options',''),(311700,42476,'_blocks_10_options','field_6177e2991ac44'),(311701,42476,'blocks_10_content_title',''),(311702,42476,'_blocks_10_content_title','field_64d237e8bb1e2'),(311703,42476,'blocks_10_content_heading','Common MSK Conditions'),(311704,42476,'_blocks_10_content_heading','field_64d237e8bb1e3'),(311705,42476,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(311706,42476,'_blocks_10_content_text','field_64d237e8bb1e4'),(311707,42476,'blocks_10_content_actions',''),(311708,42476,'_blocks_10_content_actions','field_64d237e8bb1e5'),(311709,42476,'blocks_10_content_align','left'),(311710,42476,'_blocks_10_content_align','field_64d2443e6b6aa'),(311711,42476,'blocks_10_content',''),(311712,42476,'_blocks_10_content','field_64d237e8bb1e1'),(311713,42476,'blocks_10_accordion_content','custom'),(311714,42476,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(311715,42476,'blocks_10_accordion_items_0_title','Osteoarthritis'),(311716,42476,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(311717,42476,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(311718,42476,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(311719,42476,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(311720,42476,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(311721,42476,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(311722,42476,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(311723,42476,'blocks_10_accordion_items_2_title','Back Pain'),(311724,42476,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(311725,42476,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(311726,42476,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(311727,42476,'blocks_10_accordion_items_3_title','Osteoporosis'),(311728,42476,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(311729,42476,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(311730,42476,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(311731,42476,'blocks_10_accordion_items_4_title','Tendinitis'),(311732,42476,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(311733,42476,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(311734,42476,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(311735,42476,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(311736,42476,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(311737,42476,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(311738,42476,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(311739,42476,'blocks_10_accordion_items_6_title','Fibromyalgia'),(311740,42476,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(311741,42476,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(311742,42476,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(311743,42476,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(311744,42476,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(311745,42476,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(311746,42476,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(311747,42476,'blocks_10_accordion_items','8'),(311748,42476,'_blocks_10_accordion_items','field_6177e2991ac4c'),(311749,42476,'blocks_10_actions',''),(311750,42476,'_blocks_10_actions','field_61a746a817f7a'),(311751,42476,'blocks_11_acfe_flexible_toggle',''),(311752,42476,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(311753,42476,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(311754,42476,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(311755,42476,'blocks_11_options_theme','#ffffff'),(311756,42476,'_blocks_11_options_theme','field_6176830e2ad17'),(311757,42476,'blocks_11_options',''),(311758,42476,'_blocks_11_options','field_6176830e2ad16'),(311759,42476,'blocks_11_text_block_heading','The Importance of MSK Education'),(311760,42476,'_blocks_11_text_block_heading','field_617669d413097'),(311761,42476,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(311762,42476,'_blocks_11_text_block_content','field_617669ec13098'),(311763,42476,'blocks_12_acfe_flexible_toggle',''),(311764,42476,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311765,42476,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(311766,42476,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311767,42476,'blocks_12_options_theme','#ffffff'),(311768,42476,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(311769,42476,'blocks_12_options_reverse','1'),(311770,42476,'_blocks_12_options_reverse','field_61768049bb8ac'),(311771,42476,'blocks_12_options',''),(311772,42476,'_blocks_12_options','field_617682517c334'),(311773,42476,'blocks_12_split_5050_image','41498'),(311774,42476,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(311775,42476,'blocks_12_split_5050_video',''),(311776,42476,'_blocks_12_split_5050_video','field_6239f3160848a'),(311777,42476,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(311778,42476,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(311779,42476,'blocks_12_split_5050_content_heading',''),(311780,42476,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(311781,42476,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(311782,42476,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(311783,42476,'blocks_12_split_5050_content_actions',''),(311784,42476,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(311785,42476,'blocks_12_split_5050_content',''),(311786,42476,'_blocks_12_split_5050_content','field_61767afceb8ba'),(311787,42476,'blocks_15_acfe_flexible_toggle',''),(311788,42476,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(311789,42476,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(311790,42476,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(311791,42476,'blocks_15_options_theme','#b61234'),(311792,42476,'_blocks_15_options_theme','field_6176830e2ad17'),(311793,42476,'blocks_15_options',''),(311794,42476,'_blocks_15_options','field_6176830e2ad16'),(311795,42476,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(311796,42476,'_blocks_15_text_block_heading','field_617669d413097'),(311797,42476,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(311798,42476,'_blocks_15_text_block_content','field_617669ec13098'),(311799,42476,'blocks_16_acfe_flexible_toggle',''),(311800,42476,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(311801,42476,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(311802,42476,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(311803,42476,'blocks_16_options_theme','#b61234'),(311804,42476,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(311805,42476,'blocks_16_options_format','row'),(311806,42476,'_blocks_16_options_format','field_64bfde9a90690'),(311807,42476,'blocks_16_options',''),(311808,42476,'_blocks_16_options','field_64bfdd9b90684'),(311809,42476,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(311810,42476,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(311811,42476,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(311812,42476,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(311813,42476,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(311814,42476,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(311815,42476,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(311816,42476,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(311817,42476,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(311818,42476,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(311819,42476,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(311820,42476,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(311821,42476,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(311822,42476,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(311823,42476,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(311824,42476,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(311825,42476,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(311826,42476,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(311827,42476,'blocks_16_icon_row_items_3_icon','recognised.svg'),(311828,42476,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(311829,42476,'blocks_16_icon_row_items_3_label','Optimised Performance'),(311830,42476,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(311831,42476,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(311832,42476,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(311833,42476,'blocks_16_icon_row_items','4'),(311834,42476,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(311835,42476,'blocks_17_acfe_flexible_toggle',''),(311836,42476,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311837,42476,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(311838,42476,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311839,42476,'blocks_17_options_theme','#ffffff'),(311840,42476,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(311841,42476,'blocks_17_options_reverse','0'),(311842,42476,'_blocks_17_options_reverse','field_61768049bb8ac'),(311843,42476,'blocks_17_options',''),(311844,42476,'_blocks_17_options','field_617682517c334'),(311845,42476,'blocks_17_split_5050_image','41501'),(311846,42476,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(311847,42476,'blocks_17_split_5050_video',''),(311848,42476,'_blocks_17_split_5050_video','field_6239f3160848a'),(311849,42476,'blocks_17_split_5050_content_title',''),(311850,42476,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(311851,42476,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(311852,42476,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(311853,42476,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(311854,42476,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(311855,42476,'blocks_17_split_5050_content_actions',''),(311856,42476,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(311857,42476,'blocks_17_split_5050_content',''),(311858,42476,'_blocks_17_split_5050_content','field_61767afceb8ba'),(311859,42476,'blocks_18_acfe_flexible_toggle',''),(311860,42476,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(311861,42476,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(311862,42476,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(311863,42476,'blocks_18_options_theme','#ffffff'),(311864,42476,'_blocks_18_options_theme','field_6176830e2ad17'),(311865,42476,'blocks_18_options',''),(311866,42476,'_blocks_18_options','field_6176830e2ad16'),(311867,42476,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(311868,42476,'_blocks_18_text_block_heading','field_617669d413097'),(311869,42476,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(311870,42476,'_blocks_18_text_block_content','field_617669ec13098'),(311871,42476,'blocks_21_acfe_flexible_toggle',''),(311872,42476,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(311873,42476,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(311874,42476,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(311875,42476,'blocks_21_options_alignment','center'),(311876,42476,'_blocks_21_options_alignment','field_61769449f5490'),(311877,42476,'blocks_21_options',''),(311878,42476,'_blocks_21_options','field_617693e1428f0'),(311879,42476,'blocks_21_promo_panel_image','40342'),(311880,42476,'_blocks_21_promo_panel_image','field_617693e1428f3'),(311881,42476,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(311882,42476,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(311883,42476,'blocks_21_promo_panel_content_text','If You Are Ready To Kickstart Your Development And Elevate Your Career So Are We!'),(311884,42476,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(311885,42476,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(311886,42476,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(311887,42476,'blocks_21_promo_panel_content_actions','1'),(311888,42476,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(311889,42476,'blocks_21_promo_panel_content',''),(311890,42476,'_blocks_21_promo_panel_content','field_617693e1428f4'),(311891,42477,'hide_hero','0'),(311892,42477,'_hide_hero','field_66a2380fcda39'),(311893,42477,'hero_title',''),(311894,42477,'_hero_title','field_617571fe285e8'),(311895,42477,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(311896,42477,'_hero_text','field_6175723c285e9'),(311897,42477,'hero_actions','1'),(311898,42477,'_hero_actions','field_61757270285ea'),(311899,42477,'hero_style','default'),(311900,42477,'_hero_style','field_62051d9dc5324'),(311901,42477,'hero_image_pos_x','right'),(311902,42477,'_hero_image_pos_x','field_62ec3d05390bb'),(311903,42477,'hero_image_pos_y','top'),(311904,42477,'_hero_image_pos_y','field_62ec3d05390bc'),(311905,42477,'hero_image_pos',''),(311906,42477,'_hero_image_pos','field_62ec3d05390ba'),(311907,42477,'fft_hide_from_listings','0'),(311908,42477,'_fft_hide_from_listings','field_61f1320446ab2'),(311909,42477,'post_format','402'),(311910,42477,'_post_format','field_61756bfb51898'),(311911,42477,'post_author',''),(311912,42477,'_post_author','field_62ec389d22113'),(311913,42477,'post_reviewer',''),(311914,42477,'_post_reviewer','field_627140a2a9800'),(311915,42477,'post_table_of_contents','0'),(311916,42477,'_post_table_of_contents','field_65c503bc846a6'),(311917,42477,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(311918,42477,'_blocks','field_6176696113096'),(311919,42477,'_thumbnail_id','41331'),(311920,42477,'__thumbnail_id','field_617570855ddaf'),(311921,42477,'blocks_0_acfe_flexible_toggle',''),(311922,42477,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(311923,42477,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(311924,42477,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(311925,42477,'blocks_0_options_theme','#ffffff'),(311926,42477,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(311927,42477,'blocks_0_options',''),(311928,42477,'_blocks_0_options','field_6177b758246ae'),(311929,42477,'blocks_0_link_stack_content_title',''),(311930,42477,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(311931,42477,'blocks_0_link_stack_content_heading','What is MSK?'),(311932,42477,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(311933,42477,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(311934,42477,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(311935,42477,'blocks_0_link_stack_content_actions_0_button',''),(311936,42477,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(311937,42477,'blocks_0_link_stack_content_actions','1'),(311938,42477,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(311939,42477,'blocks_0_link_stack_content',''),(311940,42477,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(311941,42477,'blocks_0_link_stack_0_label','1.'),(311942,42477,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(311943,42477,'blocks_0_link_stack_0_title','Overview'),(311944,42477,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(311945,42477,'blocks_0_link_stack_0_url','#overview'),(311946,42477,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(311947,42477,'blocks_0_link_stack_1_label','2.'),(311948,42477,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(311949,42477,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(311950,42477,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(311951,42477,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(311952,42477,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(311953,42477,'blocks_0_link_stack_2_label','3.'),(311954,42477,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(311955,42477,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(311956,42477,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(311957,42477,'blocks_0_link_stack_2_url','#who-should-study-msk'),(311958,42477,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(311959,42477,'blocks_0_link_stack_3_label','4.'),(311960,42477,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(311961,42477,'blocks_0_link_stack_3_title','Common MSK Conditions'),(311962,42477,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(311963,42477,'blocks_0_link_stack_3_url','#common-msk-conditions'),(311964,42477,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(311965,42477,'blocks_0_link_stack_4_label','5.'),(311966,42477,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(311967,42477,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(311968,42477,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(311969,42477,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(311970,42477,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(311971,42477,'blocks_0_link_stack_5_label','6.'),(311972,42477,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(311973,42477,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(311974,42477,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(311975,42477,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(311976,42477,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(311977,42477,'blocks_0_link_stack','6'),(311978,42477,'_blocks_0_link_stack','field_6177b7f600cff'),(311979,42477,'blocks_1_acfe_flexible_toggle',''),(311980,42477,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(311981,42477,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(311982,42477,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(311983,42477,'blocks_1_options_theme','#ffffff'),(311984,42477,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(311985,42477,'blocks_1_options_reverse','0'),(311986,42477,'_blocks_1_options_reverse','field_61768049bb8ac'),(311987,42477,'blocks_1_options',''),(311988,42477,'_blocks_1_options','field_617682517c334'),(311989,42477,'blocks_1_split_5050_image','40615'),(311990,42477,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(311991,42477,'blocks_1_split_5050_video',''),(311992,42477,'_blocks_1_split_5050_video','field_6239f3160848a'),(311993,42477,'blocks_1_split_5050_content_title',''),(311994,42477,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(311995,42477,'blocks_1_split_5050_content_heading','Overview'),(311996,42477,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(311997,42477,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(311998,42477,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(311999,42477,'blocks_1_split_5050_content_actions',''),(312000,42477,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(312001,42477,'blocks_1_split_5050_content',''),(312002,42477,'_blocks_1_split_5050_content','field_61767afceb8ba'),(312003,42477,'blocks_3_acfe_flexible_toggle','1'),(312004,42477,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312005,42477,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(312006,42477,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312007,42477,'blocks_3_options_theme','#f5f5f5'),(312008,42477,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(312009,42477,'blocks_3_options_reverse','1'),(312010,42477,'_blocks_3_options_reverse','field_61768049bb8ac'),(312011,42477,'blocks_3_options',''),(312012,42477,'_blocks_3_options','field_617682517c334'),(312013,42477,'blocks_3_split_5050_image','41330'),(312014,42477,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(312015,42477,'blocks_3_split_5050_video',''),(312016,42477,'_blocks_3_split_5050_video','field_6239f3160848a'),(312017,42477,'blocks_3_split_5050_content_title',''),(312018,42477,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(312019,42477,'blocks_3_split_5050_content_heading',''),(312020,42477,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(312021,42477,'blocks_3_split_5050_content_text',''),(312022,42477,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(312023,42477,'blocks_3_split_5050_content_actions',''),(312024,42477,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(312025,42477,'blocks_3_split_5050_content',''),(312026,42477,'_blocks_3_split_5050_content','field_61767afceb8ba'),(312027,42477,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(312028,42477,'_hero_actions_0_button','field_61757281285eb'),(312029,42477,'blocks_7_acfe_flexible_toggle',''),(312030,42477,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312031,42477,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(312032,42477,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312033,42477,'blocks_7_options_theme','#ffffff'),(312034,42477,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(312035,42477,'blocks_7_options_reverse','0'),(312036,42477,'_blocks_7_options_reverse','field_61768049bb8ac'),(312037,42477,'blocks_7_options',''),(312038,42477,'_blocks_7_options','field_617682517c334'),(312039,42477,'blocks_7_split_5050_image','41539'),(312040,42477,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(312041,42477,'blocks_7_split_5050_video',''),(312042,42477,'_blocks_7_split_5050_video','field_6239f3160848a'),(312043,42477,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(312044,42477,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(312045,42477,'blocks_7_split_5050_content_heading',''),(312046,42477,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(312047,42477,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(312048,42477,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(312049,42477,'blocks_7_split_5050_content_actions',''),(312050,42477,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(312051,42477,'blocks_7_split_5050_content',''),(312052,42477,'_blocks_7_split_5050_content','field_61767afceb8ba'),(312053,42477,'blocks_8_acfe_flexible_toggle',''),(312054,42477,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312055,42477,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(312056,42477,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312057,42477,'blocks_8_options_theme','#ffffff'),(312058,42477,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(312059,42477,'blocks_8_options_reverse','0'),(312060,42477,'_blocks_8_options_reverse','field_61768049bb8ac'),(312061,42477,'blocks_8_options',''),(312062,42477,'_blocks_8_options','field_617682517c334'),(312063,42477,'blocks_8_split_5050_image','41502'),(312064,42477,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(312065,42477,'blocks_8_split_5050_video',''),(312066,42477,'_blocks_8_split_5050_video','field_6239f3160848a'),(312067,42477,'blocks_8_split_5050_content_title','Educators and Researchers'),(312068,42477,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(312069,42477,'blocks_8_split_5050_content_heading',''),(312070,42477,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(312071,42477,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(312072,42477,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(312073,42477,'blocks_8_split_5050_content_actions',''),(312074,42477,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(312075,42477,'blocks_8_split_5050_content',''),(312076,42477,'_blocks_8_split_5050_content','field_61767afceb8ba'),(312077,42477,'blocks_9_acfe_flexible_toggle',''),(312078,42477,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312079,42477,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(312080,42477,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312081,42477,'blocks_9_options_theme','#ffffff'),(312082,42477,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(312083,42477,'blocks_9_options_reverse','0'),(312084,42477,'_blocks_9_options_reverse','field_61768049bb8ac'),(312085,42477,'blocks_9_options',''),(312086,42477,'_blocks_9_options','field_617682517c334'),(312087,42477,'blocks_9_split_5050_image','41506'),(312088,42477,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(312089,42477,'blocks_9_split_5050_video',''),(312090,42477,'_blocks_9_split_5050_video','field_6239f3160848a'),(312091,42477,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(312092,42477,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(312093,42477,'blocks_9_split_5050_content_heading',''),(312094,42477,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(312095,42477,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(312096,42477,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(312097,42477,'blocks_9_split_5050_content_actions',''),(312098,42477,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(312099,42477,'blocks_9_split_5050_content',''),(312100,42477,'_blocks_9_split_5050_content','field_61767afceb8ba'),(312101,42477,'blocks_13_acfe_flexible_toggle',''),(312102,42477,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312103,42477,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(312104,42477,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312105,42477,'blocks_13_options_theme','#ffffff'),(312106,42477,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(312107,42477,'blocks_13_options_reverse','1'),(312108,42477,'_blocks_13_options_reverse','field_61768049bb8ac'),(312109,42477,'blocks_13_options',''),(312110,42477,'_blocks_13_options','field_617682517c334'),(312111,42477,'blocks_13_split_5050_image','40387'),(312112,42477,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(312113,42477,'blocks_13_split_5050_video',''),(312114,42477,'_blocks_13_split_5050_video','field_6239f3160848a'),(312115,42477,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(312116,42477,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(312117,42477,'blocks_13_split_5050_content_heading',''),(312118,42477,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(312119,42477,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(312120,42477,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(312121,42477,'blocks_13_split_5050_content_actions',''),(312122,42477,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(312123,42477,'blocks_13_split_5050_content',''),(312124,42477,'_blocks_13_split_5050_content','field_61767afceb8ba'),(312125,42477,'blocks_14_acfe_flexible_toggle',''),(312126,42477,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312127,42477,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(312128,42477,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312129,42477,'blocks_14_options_theme','#ffffff'),(312130,42477,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(312131,42477,'blocks_14_options_reverse','1'),(312132,42477,'_blocks_14_options_reverse','field_61768049bb8ac'),(312133,42477,'blocks_14_options',''),(312134,42477,'_blocks_14_options','field_617682517c334'),(312135,42477,'blocks_14_split_5050_image','18856'),(312136,42477,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(312137,42477,'blocks_14_split_5050_video',''),(312138,42477,'_blocks_14_split_5050_video','field_6239f3160848a'),(312139,42477,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(312140,42477,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(312141,42477,'blocks_14_split_5050_content_heading',''),(312142,42477,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(312143,42477,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(312144,42477,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(312145,42477,'blocks_14_split_5050_content_actions',''),(312146,42477,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(312147,42477,'blocks_14_split_5050_content',''),(312148,42477,'_blocks_14_split_5050_content','field_61767afceb8ba'),(312149,42477,'blocks_19_acfe_flexible_toggle',''),(312150,42477,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(312151,42477,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(312152,42477,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(312153,42477,'blocks_19_options_theme','#ffffff'),(312154,42477,'_blocks_19_options_theme','field_6176830e2ad17'),(312155,42477,'blocks_19_options',''),(312156,42477,'_blocks_19_options','field_6176830e2ad16'),(312157,42477,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(312158,42477,'_blocks_19_text_block_heading','field_617669d413097'),(312159,42477,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(312160,42477,'_blocks_19_text_block_content','field_617669ec13098'),(312161,42477,'blocks_20_acfe_flexible_toggle',''),(312162,42477,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(312163,42477,'blocks_20_acfe_flexible_layout_title','Conclusion'),(312164,42477,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(312165,42477,'blocks_20_options_theme','#b61234'),(312166,42477,'_blocks_20_options_theme','field_6176830e2ad17'),(312167,42477,'blocks_20_options',''),(312168,42477,'_blocks_20_options','field_6176830e2ad16'),(312169,42477,'blocks_20_text_block_heading','Conclusion'),(312170,42477,'_blocks_20_text_block_heading','field_617669d413097'),(312171,42477,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(312172,42477,'_blocks_20_text_block_content','field_617669ec13098'),(312173,42477,'blocks_6_acfe_flexible_toggle',''),(312174,42477,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312175,42477,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(312176,42477,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312177,42477,'blocks_6_options_theme','#ffffff'),(312178,42477,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(312179,42477,'blocks_6_options_reverse','0'),(312180,42477,'_blocks_6_options_reverse','field_61768049bb8ac'),(312181,42477,'blocks_6_options',''),(312182,42477,'_blocks_6_options','field_617682517c334'),(312183,42477,'blocks_6_split_5050_image','41505'),(312184,42477,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(312185,42477,'blocks_6_split_5050_video',''),(312186,42477,'_blocks_6_split_5050_video','field_6239f3160848a'),(312187,42477,'blocks_6_split_5050_content_title','Current Practitioners'),(312188,42477,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(312189,42477,'blocks_6_split_5050_content_heading',''),(312190,42477,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(312191,42477,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(312192,42477,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(312193,42477,'blocks_6_split_5050_content_actions',''),(312194,42477,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(312195,42477,'blocks_6_split_5050_content',''),(312196,42477,'_blocks_6_split_5050_content','field_61767afceb8ba'),(312197,42477,'blocks_2_acfe_flexible_toggle',''),(312198,42477,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312199,42477,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(312200,42477,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312201,42477,'blocks_2_options_theme','#f5f5f5'),(312202,42477,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(312203,42477,'blocks_2_options_reverse','1'),(312204,42477,'_blocks_2_options_reverse','field_61768049bb8ac'),(312205,42477,'blocks_2_options',''),(312206,42477,'_blocks_2_options','field_617682517c334'),(312207,42477,'blocks_2_split_5050_image','40618'),(312208,42477,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(312209,42477,'blocks_2_split_5050_video',''),(312210,42477,'_blocks_2_split_5050_video','field_6239f3160848a'),(312211,42477,'blocks_2_split_5050_content_title',''),(312212,42477,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(312213,42477,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(312214,42477,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(312215,42477,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(312216,42477,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(312217,42477,'blocks_2_split_5050_content_actions',''),(312218,42477,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(312219,42477,'blocks_2_split_5050_content',''),(312220,42477,'_blocks_2_split_5050_content','field_61767afceb8ba'),(312221,42477,'blocks_4_acfe_flexible_toggle',''),(312222,42477,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(312223,42477,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(312224,42477,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(312225,42477,'blocks_4_options_theme','#ffffff'),(312226,42477,'_blocks_4_options_theme','field_6176830e2ad17'),(312227,42477,'blocks_4_options',''),(312228,42477,'_blocks_4_options','field_6176830e2ad16'),(312229,42477,'blocks_4_text_block_heading','Who Should Study MSK?'),(312230,42477,'_blocks_4_text_block_heading','field_617669d413097'),(312231,42477,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(312232,42477,'_blocks_4_text_block_content','field_617669ec13098'),(312233,42477,'blocks_5_acfe_flexible_toggle',''),(312234,42477,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312235,42477,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(312236,42477,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312237,42477,'blocks_5_options_theme','#ffffff'),(312238,42477,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(312239,42477,'blocks_5_options_reverse','0'),(312240,42477,'_blocks_5_options_reverse','field_61768049bb8ac'),(312241,42477,'blocks_5_options',''),(312242,42477,'_blocks_5_options','field_617682517c334'),(312243,42477,'blocks_5_split_5050_image','41542'),(312244,42477,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(312245,42477,'blocks_5_split_5050_video',''),(312246,42477,'_blocks_5_split_5050_video','field_6239f3160848a'),(312247,42477,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(312248,42477,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(312249,42477,'blocks_5_split_5050_content_heading',''),(312250,42477,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(312251,42477,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(312252,42477,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(312253,42477,'blocks_5_split_5050_content_actions',''),(312254,42477,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(312255,42477,'blocks_5_split_5050_content',''),(312256,42477,'_blocks_5_split_5050_content','field_61767afceb8ba'),(312257,42477,'blocks_10_acfe_flexible_toggle',''),(312258,42477,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(312259,42477,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(312260,42477,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(312261,42477,'blocks_10_options_theme','#f5f5f5'),(312262,42477,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(312263,42477,'blocks_10_options_state','0'),(312264,42477,'_blocks_10_options_state','field_6239fcb7508c5'),(312265,42477,'blocks_10_options',''),(312266,42477,'_blocks_10_options','field_6177e2991ac44'),(312267,42477,'blocks_10_content_title',''),(312268,42477,'_blocks_10_content_title','field_64d237e8bb1e2'),(312269,42477,'blocks_10_content_heading','Common MSK Conditions'),(312270,42477,'_blocks_10_content_heading','field_64d237e8bb1e3'),(312271,42477,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(312272,42477,'_blocks_10_content_text','field_64d237e8bb1e4'),(312273,42477,'blocks_10_content_actions',''),(312274,42477,'_blocks_10_content_actions','field_64d237e8bb1e5'),(312275,42477,'blocks_10_content_align','left'),(312276,42477,'_blocks_10_content_align','field_64d2443e6b6aa'),(312277,42477,'blocks_10_content',''),(312278,42477,'_blocks_10_content','field_64d237e8bb1e1'),(312279,42477,'blocks_10_accordion_content','custom'),(312280,42477,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(312281,42477,'blocks_10_accordion_items_0_title','Osteoarthritis'),(312282,42477,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(312283,42477,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(312284,42477,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(312285,42477,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(312286,42477,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(312287,42477,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(312288,42477,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(312289,42477,'blocks_10_accordion_items_2_title','Back Pain'),(312290,42477,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(312291,42477,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(312292,42477,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(312293,42477,'blocks_10_accordion_items_3_title','Osteoporosis'),(312294,42477,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(312295,42477,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(312296,42477,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(312297,42477,'blocks_10_accordion_items_4_title','Tendinitis'),(312298,42477,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(312299,42477,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(312300,42477,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(312301,42477,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(312302,42477,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(312303,42477,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(312304,42477,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(312305,42477,'blocks_10_accordion_items_6_title','Fibromyalgia'),(312306,42477,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(312307,42477,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(312308,42477,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(312309,42477,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(312310,42477,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(312311,42477,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(312312,42477,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(312313,42477,'blocks_10_accordion_items','8'),(312314,42477,'_blocks_10_accordion_items','field_6177e2991ac4c'),(312315,42477,'blocks_10_actions',''),(312316,42477,'_blocks_10_actions','field_61a746a817f7a'),(312317,42477,'blocks_11_acfe_flexible_toggle',''),(312318,42477,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(312319,42477,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(312320,42477,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(312321,42477,'blocks_11_options_theme','#ffffff'),(312322,42477,'_blocks_11_options_theme','field_6176830e2ad17'),(312323,42477,'blocks_11_options',''),(312324,42477,'_blocks_11_options','field_6176830e2ad16'),(312325,42477,'blocks_11_text_block_heading','The Importance of MSK Education'),(312326,42477,'_blocks_11_text_block_heading','field_617669d413097'),(312327,42477,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(312328,42477,'_blocks_11_text_block_content','field_617669ec13098'),(312329,42477,'blocks_12_acfe_flexible_toggle',''),(312330,42477,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312331,42477,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(312332,42477,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312333,42477,'blocks_12_options_theme','#ffffff'),(312334,42477,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(312335,42477,'blocks_12_options_reverse','1'),(312336,42477,'_blocks_12_options_reverse','field_61768049bb8ac'),(312337,42477,'blocks_12_options',''),(312338,42477,'_blocks_12_options','field_617682517c334'),(312339,42477,'blocks_12_split_5050_image','41498'),(312340,42477,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(312341,42477,'blocks_12_split_5050_video',''),(312342,42477,'_blocks_12_split_5050_video','field_6239f3160848a'),(312343,42477,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(312344,42477,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(312345,42477,'blocks_12_split_5050_content_heading',''),(312346,42477,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(312347,42477,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(312348,42477,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(312349,42477,'blocks_12_split_5050_content_actions',''),(312350,42477,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(312351,42477,'blocks_12_split_5050_content',''),(312352,42477,'_blocks_12_split_5050_content','field_61767afceb8ba'),(312353,42477,'blocks_15_acfe_flexible_toggle',''),(312354,42477,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(312355,42477,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(312356,42477,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(312357,42477,'blocks_15_options_theme','#b61234'),(312358,42477,'_blocks_15_options_theme','field_6176830e2ad17'),(312359,42477,'blocks_15_options',''),(312360,42477,'_blocks_15_options','field_6176830e2ad16'),(312361,42477,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(312362,42477,'_blocks_15_text_block_heading','field_617669d413097'),(312363,42477,'blocks_15_text_block_content','Integrating intrinsic biomechanics into MSK education benefits professionals in several ways:'),(312364,42477,'_blocks_15_text_block_content','field_617669ec13098'),(312365,42477,'blocks_16_acfe_flexible_toggle',''),(312366,42477,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(312367,42477,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(312368,42477,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(312369,42477,'blocks_16_options_theme','#b61234'),(312370,42477,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(312371,42477,'blocks_16_options_format','row'),(312372,42477,'_blocks_16_options_format','field_64bfde9a90690'),(312373,42477,'blocks_16_options',''),(312374,42477,'_blocks_16_options','field_64bfdd9b90684'),(312375,42477,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(312376,42477,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(312377,42477,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(312378,42477,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(312379,42477,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(312380,42477,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(312381,42477,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(312382,42477,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(312383,42477,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(312384,42477,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(312385,42477,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(312386,42477,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(312387,42477,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(312388,42477,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(312389,42477,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(312390,42477,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(312391,42477,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(312392,42477,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(312393,42477,'blocks_16_icon_row_items_3_icon','recognised.svg'),(312394,42477,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(312395,42477,'blocks_16_icon_row_items_3_label','Optimised Performance'),(312396,42477,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(312397,42477,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(312398,42477,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(312399,42477,'blocks_16_icon_row_items','4'),(312400,42477,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(312401,42477,'blocks_17_acfe_flexible_toggle',''),(312402,42477,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312403,42477,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(312404,42477,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312405,42477,'blocks_17_options_theme','#ffffff'),(312406,42477,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(312407,42477,'blocks_17_options_reverse','0'),(312408,42477,'_blocks_17_options_reverse','field_61768049bb8ac'),(312409,42477,'blocks_17_options',''),(312410,42477,'_blocks_17_options','field_617682517c334'),(312411,42477,'blocks_17_split_5050_image','41501'),(312412,42477,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(312413,42477,'blocks_17_split_5050_video',''),(312414,42477,'_blocks_17_split_5050_video','field_6239f3160848a'),(312415,42477,'blocks_17_split_5050_content_title',''),(312416,42477,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(312417,42477,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(312418,42477,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(312419,42477,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(312420,42477,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(312421,42477,'blocks_17_split_5050_content_actions',''),(312422,42477,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(312423,42477,'blocks_17_split_5050_content',''),(312424,42477,'_blocks_17_split_5050_content','field_61767afceb8ba'),(312425,42477,'blocks_18_acfe_flexible_toggle',''),(312426,42477,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(312427,42477,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(312428,42477,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(312429,42477,'blocks_18_options_theme','#ffffff'),(312430,42477,'_blocks_18_options_theme','field_6176830e2ad17'),(312431,42477,'blocks_18_options',''),(312432,42477,'_blocks_18_options','field_6176830e2ad16'),(312433,42477,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(312434,42477,'_blocks_18_text_block_heading','field_617669d413097'),(312435,42477,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(312436,42477,'_blocks_18_text_block_content','field_617669ec13098'),(312437,42477,'blocks_21_acfe_flexible_toggle',''),(312438,42477,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(312439,42477,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(312440,42477,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(312441,42477,'blocks_21_options_alignment','center'),(312442,42477,'_blocks_21_options_alignment','field_61769449f5490'),(312443,42477,'blocks_21_options',''),(312444,42477,'_blocks_21_options','field_617693e1428f0'),(312445,42477,'blocks_21_promo_panel_image','40342'),(312446,42477,'_blocks_21_promo_panel_image','field_617693e1428f3'),(312447,42477,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(312448,42477,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(312449,42477,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(312450,42477,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(312451,42477,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(312452,42477,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(312453,42477,'blocks_21_promo_panel_content_actions','1'),(312454,42477,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(312455,42477,'blocks_21_promo_panel_content',''),(312456,42477,'_blocks_21_promo_panel_content','field_617693e1428f4'),(312457,42478,'hide_hero','0'),(312458,42478,'_hide_hero','field_66a2380fcda39'),(312459,42478,'hero_title',''),(312460,42478,'_hero_title','field_617571fe285e8'),(312461,42478,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(312462,42478,'_hero_text','field_6175723c285e9'),(312463,42478,'hero_actions','1'),(312464,42478,'_hero_actions','field_61757270285ea'),(312465,42478,'hero_style','default'),(312466,42478,'_hero_style','field_62051d9dc5324'),(312467,42478,'hero_image_pos_x','right'),(312468,42478,'_hero_image_pos_x','field_62ec3d05390bb'),(312469,42478,'hero_image_pos_y','top'),(312470,42478,'_hero_image_pos_y','field_62ec3d05390bc'),(312471,42478,'hero_image_pos',''),(312472,42478,'_hero_image_pos','field_62ec3d05390ba'),(312473,42478,'fft_hide_from_listings','0'),(312474,42478,'_fft_hide_from_listings','field_61f1320446ab2'),(312475,42478,'post_format','402'),(312476,42478,'_post_format','field_61756bfb51898'),(312477,42478,'post_author',''),(312478,42478,'_post_author','field_62ec389d22113'),(312479,42478,'post_reviewer',''),(312480,42478,'_post_reviewer','field_627140a2a9800'),(312481,42478,'post_table_of_contents','0'),(312482,42478,'_post_table_of_contents','field_65c503bc846a6'),(312483,42478,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(312484,42478,'_blocks','field_6176696113096'),(312485,42478,'_thumbnail_id','41331'),(312486,42478,'__thumbnail_id','field_617570855ddaf'),(312487,42478,'blocks_0_acfe_flexible_toggle',''),(312488,42478,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(312489,42478,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(312490,42478,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(312491,42478,'blocks_0_options_theme','#ffffff'),(312492,42478,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(312493,42478,'blocks_0_options',''),(312494,42478,'_blocks_0_options','field_6177b758246ae'),(312495,42478,'blocks_0_link_stack_content_title',''),(312496,42478,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(312497,42478,'blocks_0_link_stack_content_heading','What is MSK?'),(312498,42478,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(312499,42478,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(312500,42478,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(312501,42478,'blocks_0_link_stack_content_actions_0_button',''),(312502,42478,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(312503,42478,'blocks_0_link_stack_content_actions','1'),(312504,42478,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(312505,42478,'blocks_0_link_stack_content',''),(312506,42478,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(312507,42478,'blocks_0_link_stack_0_label','1.'),(312508,42478,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(312509,42478,'blocks_0_link_stack_0_title','Overview'),(312510,42478,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(312511,42478,'blocks_0_link_stack_0_url','#overview'),(312512,42478,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(312513,42478,'blocks_0_link_stack_1_label','2.'),(312514,42478,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(312515,42478,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(312516,42478,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(312517,42478,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(312518,42478,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(312519,42478,'blocks_0_link_stack_2_label','3.'),(312520,42478,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(312521,42478,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(312522,42478,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(312523,42478,'blocks_0_link_stack_2_url','#who-should-study-msk'),(312524,42478,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(312525,42478,'blocks_0_link_stack_3_label','4.'),(312526,42478,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(312527,42478,'blocks_0_link_stack_3_title','Common MSK Conditions'),(312528,42478,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(312529,42478,'blocks_0_link_stack_3_url','#common-msk-conditions'),(312530,42478,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(312531,42478,'blocks_0_link_stack_4_label','5.'),(312532,42478,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(312533,42478,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(312534,42478,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(312535,42478,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(312536,42478,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(312537,42478,'blocks_0_link_stack_5_label','6.'),(312538,42478,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(312539,42478,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(312540,42478,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(312541,42478,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(312542,42478,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(312543,42478,'blocks_0_link_stack','6'),(312544,42478,'_blocks_0_link_stack','field_6177b7f600cff'),(312545,42478,'blocks_1_acfe_flexible_toggle',''),(312546,42478,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312547,42478,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(312548,42478,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312549,42478,'blocks_1_options_theme','#ffffff'),(312550,42478,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(312551,42478,'blocks_1_options_reverse','0'),(312552,42478,'_blocks_1_options_reverse','field_61768049bb8ac'),(312553,42478,'blocks_1_options',''),(312554,42478,'_blocks_1_options','field_617682517c334'),(312555,42478,'blocks_1_split_5050_image','40615'),(312556,42478,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(312557,42478,'blocks_1_split_5050_video',''),(312558,42478,'_blocks_1_split_5050_video','field_6239f3160848a'),(312559,42478,'blocks_1_split_5050_content_title',''),(312560,42478,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(312561,42478,'blocks_1_split_5050_content_heading','Overview'),(312562,42478,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(312563,42478,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(312564,42478,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(312565,42478,'blocks_1_split_5050_content_actions',''),(312566,42478,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(312567,42478,'blocks_1_split_5050_content',''),(312568,42478,'_blocks_1_split_5050_content','field_61767afceb8ba'),(312569,42478,'blocks_3_acfe_flexible_toggle','1'),(312570,42478,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312571,42478,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(312572,42478,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312573,42478,'blocks_3_options_theme','#f5f5f5'),(312574,42478,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(312575,42478,'blocks_3_options_reverse','1'),(312576,42478,'_blocks_3_options_reverse','field_61768049bb8ac'),(312577,42478,'blocks_3_options',''),(312578,42478,'_blocks_3_options','field_617682517c334'),(312579,42478,'blocks_3_split_5050_image','41330'),(312580,42478,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(312581,42478,'blocks_3_split_5050_video',''),(312582,42478,'_blocks_3_split_5050_video','field_6239f3160848a'),(312583,42478,'blocks_3_split_5050_content_title',''),(312584,42478,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(312585,42478,'blocks_3_split_5050_content_heading',''),(312586,42478,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(312587,42478,'blocks_3_split_5050_content_text',''),(312588,42478,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(312589,42478,'blocks_3_split_5050_content_actions',''),(312590,42478,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(312591,42478,'blocks_3_split_5050_content',''),(312592,42478,'_blocks_3_split_5050_content','field_61767afceb8ba'),(312593,42478,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(312594,42478,'_hero_actions_0_button','field_61757281285eb'),(312595,42478,'blocks_7_acfe_flexible_toggle',''),(312596,42478,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312597,42478,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(312598,42478,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312599,42478,'blocks_7_options_theme','#ffffff'),(312600,42478,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(312601,42478,'blocks_7_options_reverse','0'),(312602,42478,'_blocks_7_options_reverse','field_61768049bb8ac'),(312603,42478,'blocks_7_options',''),(312604,42478,'_blocks_7_options','field_617682517c334'),(312605,42478,'blocks_7_split_5050_image','41539'),(312606,42478,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(312607,42478,'blocks_7_split_5050_video',''),(312608,42478,'_blocks_7_split_5050_video','field_6239f3160848a'),(312609,42478,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(312610,42478,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(312611,42478,'blocks_7_split_5050_content_heading',''),(312612,42478,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(312613,42478,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(312614,42478,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(312615,42478,'blocks_7_split_5050_content_actions',''),(312616,42478,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(312617,42478,'blocks_7_split_5050_content',''),(312618,42478,'_blocks_7_split_5050_content','field_61767afceb8ba'),(312619,42478,'blocks_8_acfe_flexible_toggle',''),(312620,42478,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312621,42478,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(312622,42478,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312623,42478,'blocks_8_options_theme','#ffffff'),(312624,42478,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(312625,42478,'blocks_8_options_reverse','0'),(312626,42478,'_blocks_8_options_reverse','field_61768049bb8ac'),(312627,42478,'blocks_8_options',''),(312628,42478,'_blocks_8_options','field_617682517c334'),(312629,42478,'blocks_8_split_5050_image','41502'),(312630,42478,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(312631,42478,'blocks_8_split_5050_video',''),(312632,42478,'_blocks_8_split_5050_video','field_6239f3160848a'),(312633,42478,'blocks_8_split_5050_content_title','Educators and Researchers'),(312634,42478,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(312635,42478,'blocks_8_split_5050_content_heading',''),(312636,42478,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(312637,42478,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(312638,42478,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(312639,42478,'blocks_8_split_5050_content_actions',''),(312640,42478,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(312641,42478,'blocks_8_split_5050_content',''),(312642,42478,'_blocks_8_split_5050_content','field_61767afceb8ba'),(312643,42478,'blocks_9_acfe_flexible_toggle',''),(312644,42478,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312645,42478,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(312646,42478,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312647,42478,'blocks_9_options_theme','#ffffff'),(312648,42478,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(312649,42478,'blocks_9_options_reverse','0'),(312650,42478,'_blocks_9_options_reverse','field_61768049bb8ac'),(312651,42478,'blocks_9_options',''),(312652,42478,'_blocks_9_options','field_617682517c334'),(312653,42478,'blocks_9_split_5050_image','41506'),(312654,42478,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(312655,42478,'blocks_9_split_5050_video',''),(312656,42478,'_blocks_9_split_5050_video','field_6239f3160848a'),(312657,42478,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(312658,42478,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(312659,42478,'blocks_9_split_5050_content_heading',''),(312660,42478,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(312661,42478,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(312662,42478,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(312663,42478,'blocks_9_split_5050_content_actions',''),(312664,42478,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(312665,42478,'blocks_9_split_5050_content',''),(312666,42478,'_blocks_9_split_5050_content','field_61767afceb8ba'),(312667,42478,'blocks_13_acfe_flexible_toggle',''),(312668,42478,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312669,42478,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(312670,42478,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312671,42478,'blocks_13_options_theme','#ffffff'),(312672,42478,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(312673,42478,'blocks_13_options_reverse','1'),(312674,42478,'_blocks_13_options_reverse','field_61768049bb8ac'),(312675,42478,'blocks_13_options',''),(312676,42478,'_blocks_13_options','field_617682517c334'),(312677,42478,'blocks_13_split_5050_image','40387'),(312678,42478,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(312679,42478,'blocks_13_split_5050_video',''),(312680,42478,'_blocks_13_split_5050_video','field_6239f3160848a'),(312681,42478,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(312682,42478,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(312683,42478,'blocks_13_split_5050_content_heading',''),(312684,42478,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(312685,42478,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(312686,42478,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(312687,42478,'blocks_13_split_5050_content_actions',''),(312688,42478,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(312689,42478,'blocks_13_split_5050_content',''),(312690,42478,'_blocks_13_split_5050_content','field_61767afceb8ba'),(312691,42478,'blocks_14_acfe_flexible_toggle',''),(312692,42478,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312693,42478,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(312694,42478,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312695,42478,'blocks_14_options_theme','#ffffff'),(312696,42478,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(312697,42478,'blocks_14_options_reverse','1'),(312698,42478,'_blocks_14_options_reverse','field_61768049bb8ac'),(312699,42478,'blocks_14_options',''),(312700,42478,'_blocks_14_options','field_617682517c334'),(312701,42478,'blocks_14_split_5050_image','18856'),(312702,42478,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(312703,42478,'blocks_14_split_5050_video',''),(312704,42478,'_blocks_14_split_5050_video','field_6239f3160848a'),(312705,42478,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(312706,42478,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(312707,42478,'blocks_14_split_5050_content_heading',''),(312708,42478,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(312709,42478,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(312710,42478,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(312711,42478,'blocks_14_split_5050_content_actions',''),(312712,42478,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(312713,42478,'blocks_14_split_5050_content',''),(312714,42478,'_blocks_14_split_5050_content','field_61767afceb8ba'),(312715,42478,'blocks_19_acfe_flexible_toggle',''),(312716,42478,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(312717,42478,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(312718,42478,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(312719,42478,'blocks_19_options_theme','#ffffff'),(312720,42478,'_blocks_19_options_theme','field_6176830e2ad17'),(312721,42478,'blocks_19_options',''),(312722,42478,'_blocks_19_options','field_6176830e2ad16'),(312723,42478,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(312724,42478,'_blocks_19_text_block_heading','field_617669d413097'),(312725,42478,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(312726,42478,'_blocks_19_text_block_content','field_617669ec13098'),(312727,42478,'blocks_20_acfe_flexible_toggle',''),(312728,42478,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(312729,42478,'blocks_20_acfe_flexible_layout_title','Conclusion'),(312730,42478,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(312731,42478,'blocks_20_options_theme','#b61234'),(312732,42478,'_blocks_20_options_theme','field_6176830e2ad17'),(312733,42478,'blocks_20_options',''),(312734,42478,'_blocks_20_options','field_6176830e2ad16'),(312735,42478,'blocks_20_text_block_heading','Conclusion'),(312736,42478,'_blocks_20_text_block_heading','field_617669d413097'),(312737,42478,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(312738,42478,'_blocks_20_text_block_content','field_617669ec13098'),(312739,42478,'blocks_6_acfe_flexible_toggle',''),(312740,42478,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312741,42478,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(312742,42478,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312743,42478,'blocks_6_options_theme','#ffffff'),(312744,42478,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(312745,42478,'blocks_6_options_reverse','0'),(312746,42478,'_blocks_6_options_reverse','field_61768049bb8ac'),(312747,42478,'blocks_6_options',''),(312748,42478,'_blocks_6_options','field_617682517c334'),(312749,42478,'blocks_6_split_5050_image','41505'),(312750,42478,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(312751,42478,'blocks_6_split_5050_video',''),(312752,42478,'_blocks_6_split_5050_video','field_6239f3160848a'),(312753,42478,'blocks_6_split_5050_content_title','Current Practitioners'),(312754,42478,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(312755,42478,'blocks_6_split_5050_content_heading',''),(312756,42478,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(312757,42478,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(312758,42478,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(312759,42478,'blocks_6_split_5050_content_actions',''),(312760,42478,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(312761,42478,'blocks_6_split_5050_content',''),(312762,42478,'_blocks_6_split_5050_content','field_61767afceb8ba'),(312763,42478,'blocks_2_acfe_flexible_toggle',''),(312764,42478,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312765,42478,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(312766,42478,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312767,42478,'blocks_2_options_theme','#f5f5f5'),(312768,42478,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(312769,42478,'blocks_2_options_reverse','1'),(312770,42478,'_blocks_2_options_reverse','field_61768049bb8ac'),(312771,42478,'blocks_2_options',''),(312772,42478,'_blocks_2_options','field_617682517c334'),(312773,42478,'blocks_2_split_5050_image','40618'),(312774,42478,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(312775,42478,'blocks_2_split_5050_video',''),(312776,42478,'_blocks_2_split_5050_video','field_6239f3160848a'),(312777,42478,'blocks_2_split_5050_content_title',''),(312778,42478,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(312779,42478,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(312780,42478,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(312781,42478,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(312782,42478,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(312783,42478,'blocks_2_split_5050_content_actions',''),(312784,42478,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(312785,42478,'blocks_2_split_5050_content',''),(312786,42478,'_blocks_2_split_5050_content','field_61767afceb8ba'),(312787,42478,'blocks_4_acfe_flexible_toggle',''),(312788,42478,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(312789,42478,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(312790,42478,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(312791,42478,'blocks_4_options_theme','#ffffff'),(312792,42478,'_blocks_4_options_theme','field_6176830e2ad17'),(312793,42478,'blocks_4_options',''),(312794,42478,'_blocks_4_options','field_6176830e2ad16'),(312795,42478,'blocks_4_text_block_heading','Who Should Study MSK?'),(312796,42478,'_blocks_4_text_block_heading','field_617669d413097'),(312797,42478,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(312798,42478,'_blocks_4_text_block_content','field_617669ec13098'),(312799,42478,'blocks_5_acfe_flexible_toggle',''),(312800,42478,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312801,42478,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(312802,42478,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312803,42478,'blocks_5_options_theme','#ffffff'),(312804,42478,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(312805,42478,'blocks_5_options_reverse','0'),(312806,42478,'_blocks_5_options_reverse','field_61768049bb8ac'),(312807,42478,'blocks_5_options',''),(312808,42478,'_blocks_5_options','field_617682517c334'),(312809,42478,'blocks_5_split_5050_image','41542'),(312810,42478,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(312811,42478,'blocks_5_split_5050_video',''),(312812,42478,'_blocks_5_split_5050_video','field_6239f3160848a'),(312813,42478,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(312814,42478,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(312815,42478,'blocks_5_split_5050_content_heading',''),(312816,42478,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(312817,42478,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(312818,42478,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(312819,42478,'blocks_5_split_5050_content_actions',''),(312820,42478,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(312821,42478,'blocks_5_split_5050_content',''),(312822,42478,'_blocks_5_split_5050_content','field_61767afceb8ba'),(312823,42478,'blocks_10_acfe_flexible_toggle',''),(312824,42478,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(312825,42478,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(312826,42478,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(312827,42478,'blocks_10_options_theme','#f5f5f5'),(312828,42478,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(312829,42478,'blocks_10_options_state','0'),(312830,42478,'_blocks_10_options_state','field_6239fcb7508c5'),(312831,42478,'blocks_10_options',''),(312832,42478,'_blocks_10_options','field_6177e2991ac44'),(312833,42478,'blocks_10_content_title',''),(312834,42478,'_blocks_10_content_title','field_64d237e8bb1e2'),(312835,42478,'blocks_10_content_heading','Common MSK Conditions'),(312836,42478,'_blocks_10_content_heading','field_64d237e8bb1e3'),(312837,42478,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(312838,42478,'_blocks_10_content_text','field_64d237e8bb1e4'),(312839,42478,'blocks_10_content_actions',''),(312840,42478,'_blocks_10_content_actions','field_64d237e8bb1e5'),(312841,42478,'blocks_10_content_align','left'),(312842,42478,'_blocks_10_content_align','field_64d2443e6b6aa'),(312843,42478,'blocks_10_content',''),(312844,42478,'_blocks_10_content','field_64d237e8bb1e1'),(312845,42478,'blocks_10_accordion_content','custom'),(312846,42478,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(312847,42478,'blocks_10_accordion_items_0_title','Osteoarthritis'),(312848,42478,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(312849,42478,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(312850,42478,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(312851,42478,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(312852,42478,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(312853,42478,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(312854,42478,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(312855,42478,'blocks_10_accordion_items_2_title','Back Pain'),(312856,42478,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(312857,42478,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(312858,42478,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(312859,42478,'blocks_10_accordion_items_3_title','Osteoporosis'),(312860,42478,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(312861,42478,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(312862,42478,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(312863,42478,'blocks_10_accordion_items_4_title','Tendinitis'),(312864,42478,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(312865,42478,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(312866,42478,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(312867,42478,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(312868,42478,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(312869,42478,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(312870,42478,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(312871,42478,'blocks_10_accordion_items_6_title','Fibromyalgia'),(312872,42478,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(312873,42478,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(312874,42478,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(312875,42478,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(312876,42478,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(312877,42478,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(312878,42478,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(312879,42478,'blocks_10_accordion_items','8'),(312880,42478,'_blocks_10_accordion_items','field_6177e2991ac4c'),(312881,42478,'blocks_10_actions',''),(312882,42478,'_blocks_10_actions','field_61a746a817f7a'),(312883,42478,'blocks_11_acfe_flexible_toggle',''),(312884,42478,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(312885,42478,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(312886,42478,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(312887,42478,'blocks_11_options_theme','#ffffff'),(312888,42478,'_blocks_11_options_theme','field_6176830e2ad17'),(312889,42478,'blocks_11_options',''),(312890,42478,'_blocks_11_options','field_6176830e2ad16'),(312891,42478,'blocks_11_text_block_heading','The Importance of MSK Education'),(312892,42478,'_blocks_11_text_block_heading','field_617669d413097'),(312893,42478,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(312894,42478,'_blocks_11_text_block_content','field_617669ec13098'),(312895,42478,'blocks_12_acfe_flexible_toggle',''),(312896,42478,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312897,42478,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(312898,42478,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312899,42478,'blocks_12_options_theme','#ffffff'),(312900,42478,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(312901,42478,'blocks_12_options_reverse','1'),(312902,42478,'_blocks_12_options_reverse','field_61768049bb8ac'),(312903,42478,'blocks_12_options',''),(312904,42478,'_blocks_12_options','field_617682517c334'),(312905,42478,'blocks_12_split_5050_image','41498'),(312906,42478,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(312907,42478,'blocks_12_split_5050_video',''),(312908,42478,'_blocks_12_split_5050_video','field_6239f3160848a'),(312909,42478,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(312910,42478,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(312911,42478,'blocks_12_split_5050_content_heading',''),(312912,42478,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(312913,42478,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(312914,42478,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(312915,42478,'blocks_12_split_5050_content_actions',''),(312916,42478,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(312917,42478,'blocks_12_split_5050_content',''),(312918,42478,'_blocks_12_split_5050_content','field_61767afceb8ba'),(312919,42478,'blocks_15_acfe_flexible_toggle',''),(312920,42478,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(312921,42478,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(312922,42478,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(312923,42478,'blocks_15_options_theme','#b61234'),(312924,42478,'_blocks_15_options_theme','field_6176830e2ad17'),(312925,42478,'blocks_15_options',''),(312926,42478,'_blocks_15_options','field_6176830e2ad16'),(312927,42478,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(312928,42478,'_blocks_15_text_block_heading','field_617669d413097'),(312929,42478,'blocks_15_text_block_content',''),(312930,42478,'_blocks_15_text_block_content','field_617669ec13098'),(312931,42478,'blocks_16_acfe_flexible_toggle',''),(312932,42478,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(312933,42478,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(312934,42478,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(312935,42478,'blocks_16_options_theme','#b61234'),(312936,42478,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(312937,42478,'blocks_16_options_format','row'),(312938,42478,'_blocks_16_options_format','field_64bfde9a90690'),(312939,42478,'blocks_16_options',''),(312940,42478,'_blocks_16_options','field_64bfdd9b90684'),(312941,42478,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(312942,42478,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(312943,42478,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(312944,42478,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(312945,42478,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(312946,42478,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(312947,42478,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(312948,42478,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(312949,42478,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(312950,42478,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(312951,42478,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(312952,42478,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(312953,42478,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(312954,42478,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(312955,42478,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(312956,42478,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(312957,42478,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(312958,42478,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(312959,42478,'blocks_16_icon_row_items_3_icon','recognised.svg'),(312960,42478,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(312961,42478,'blocks_16_icon_row_items_3_label','Optimised Performance'),(312962,42478,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(312963,42478,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(312964,42478,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(312965,42478,'blocks_16_icon_row_items','4'),(312966,42478,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(312967,42478,'blocks_17_acfe_flexible_toggle',''),(312968,42478,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(312969,42478,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(312970,42478,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(312971,42478,'blocks_17_options_theme','#ffffff'),(312972,42478,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(312973,42478,'blocks_17_options_reverse','0'),(312974,42478,'_blocks_17_options_reverse','field_61768049bb8ac'),(312975,42478,'blocks_17_options',''),(312976,42478,'_blocks_17_options','field_617682517c334'),(312977,42478,'blocks_17_split_5050_image','41501'),(312978,42478,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(312979,42478,'blocks_17_split_5050_video',''),(312980,42478,'_blocks_17_split_5050_video','field_6239f3160848a'),(312981,42478,'blocks_17_split_5050_content_title',''),(312982,42478,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(312983,42478,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(312984,42478,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(312985,42478,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(312986,42478,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(312987,42478,'blocks_17_split_5050_content_actions',''),(312988,42478,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(312989,42478,'blocks_17_split_5050_content',''),(312990,42478,'_blocks_17_split_5050_content','field_61767afceb8ba'),(312991,42478,'blocks_18_acfe_flexible_toggle',''),(312992,42478,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(312993,42478,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(312994,42478,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(312995,42478,'blocks_18_options_theme','#ffffff'),(312996,42478,'_blocks_18_options_theme','field_6176830e2ad17'),(312997,42478,'blocks_18_options',''),(312998,42478,'_blocks_18_options','field_6176830e2ad16'),(312999,42478,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(313000,42478,'_blocks_18_text_block_heading','field_617669d413097'),(313001,42478,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(313002,42478,'_blocks_18_text_block_content','field_617669ec13098'),(313003,42478,'blocks_21_acfe_flexible_toggle',''),(313004,42478,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(313005,42478,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(313006,42478,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(313007,42478,'blocks_21_options_alignment','center'),(313008,42478,'_blocks_21_options_alignment','field_61769449f5490'),(313009,42478,'blocks_21_options',''),(313010,42478,'_blocks_21_options','field_617693e1428f0'),(313011,42478,'blocks_21_promo_panel_image','40342'),(313012,42478,'_blocks_21_promo_panel_image','field_617693e1428f3'),(313013,42478,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(313014,42478,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(313015,42478,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(313016,42478,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(313017,42478,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(313018,42478,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(313019,42478,'blocks_21_promo_panel_content_actions','1'),(313020,42478,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(313021,42478,'blocks_21_promo_panel_content',''),(313022,42478,'_blocks_21_promo_panel_content','field_617693e1428f4'),(313023,42479,'hide_hero','0'),(313024,42479,'_hide_hero','field_66a2380fcda39'),(313025,42479,'hero_title',''),(313026,42479,'_hero_title','field_617571fe285e8'),(313027,42479,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(313028,42479,'_hero_text','field_6175723c285e9'),(313029,42479,'hero_actions','1'),(313030,42479,'_hero_actions','field_61757270285ea'),(313031,42479,'hero_style','default'),(313032,42479,'_hero_style','field_62051d9dc5324'),(313033,42479,'hero_image_pos_x','right'),(313034,42479,'_hero_image_pos_x','field_62ec3d05390bb'),(313035,42479,'hero_image_pos_y','top'),(313036,42479,'_hero_image_pos_y','field_62ec3d05390bc'),(313037,42479,'hero_image_pos',''),(313038,42479,'_hero_image_pos','field_62ec3d05390ba'),(313039,42479,'fft_hide_from_listings','0'),(313040,42479,'_fft_hide_from_listings','field_61f1320446ab2'),(313041,42479,'post_format','402'),(313042,42479,'_post_format','field_61756bfb51898'),(313043,42479,'post_author',''),(313044,42479,'_post_author','field_62ec389d22113'),(313045,42479,'post_reviewer',''),(313046,42479,'_post_reviewer','field_627140a2a9800'),(313047,42479,'post_table_of_contents','0'),(313048,42479,'_post_table_of_contents','field_65c503bc846a6'),(313049,42479,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(313050,42479,'_blocks','field_6176696113096'),(313051,42479,'_thumbnail_id','41331'),(313052,42479,'__thumbnail_id','field_617570855ddaf'),(313053,42479,'blocks_0_acfe_flexible_toggle',''),(313054,42479,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(313055,42479,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(313056,42479,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(313057,42479,'blocks_0_options_theme','#ffffff'),(313058,42479,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(313059,42479,'blocks_0_options',''),(313060,42479,'_blocks_0_options','field_6177b758246ae'),(313061,42479,'blocks_0_link_stack_content_title',''),(313062,42479,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(313063,42479,'blocks_0_link_stack_content_heading','What is MSK?'),(313064,42479,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(313065,42479,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(313066,42479,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(313067,42479,'blocks_0_link_stack_content_actions_0_button',''),(313068,42479,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(313069,42479,'blocks_0_link_stack_content_actions','1'),(313070,42479,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(313071,42479,'blocks_0_link_stack_content',''),(313072,42479,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(313073,42479,'blocks_0_link_stack_0_label','1.'),(313074,42479,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(313075,42479,'blocks_0_link_stack_0_title','Overview'),(313076,42479,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(313077,42479,'blocks_0_link_stack_0_url','#overview'),(313078,42479,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(313079,42479,'blocks_0_link_stack_1_label','2.'),(313080,42479,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(313081,42479,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(313082,42479,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(313083,42479,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(313084,42479,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(313085,42479,'blocks_0_link_stack_2_label','3.'),(313086,42479,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(313087,42479,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(313088,42479,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(313089,42479,'blocks_0_link_stack_2_url','#who-should-study-msk'),(313090,42479,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(313091,42479,'blocks_0_link_stack_3_label','4.'),(313092,42479,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(313093,42479,'blocks_0_link_stack_3_title','Common MSK Conditions'),(313094,42479,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(313095,42479,'blocks_0_link_stack_3_url','#common-msk-conditions'),(313096,42479,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(313097,42479,'blocks_0_link_stack_4_label','5.'),(313098,42479,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(313099,42479,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(313100,42479,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(313101,42479,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(313102,42479,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(313103,42479,'blocks_0_link_stack_5_label','6.'),(313104,42479,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(313105,42479,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(313106,42479,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(313107,42479,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(313108,42479,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(313109,42479,'blocks_0_link_stack','6'),(313110,42479,'_blocks_0_link_stack','field_6177b7f600cff'),(313111,42479,'blocks_1_acfe_flexible_toggle',''),(313112,42479,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313113,42479,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(313114,42479,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313115,42479,'blocks_1_options_theme','#ffffff'),(313116,42479,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(313117,42479,'blocks_1_options_reverse','0'),(313118,42479,'_blocks_1_options_reverse','field_61768049bb8ac'),(313119,42479,'blocks_1_options',''),(313120,42479,'_blocks_1_options','field_617682517c334'),(313121,42479,'blocks_1_split_5050_image','40615'),(313122,42479,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(313123,42479,'blocks_1_split_5050_video',''),(313124,42479,'_blocks_1_split_5050_video','field_6239f3160848a'),(313125,42479,'blocks_1_split_5050_content_title',''),(313126,42479,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(313127,42479,'blocks_1_split_5050_content_heading','Overview'),(313128,42479,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(313129,42479,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(313130,42479,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(313131,42479,'blocks_1_split_5050_content_actions',''),(313132,42479,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(313133,42479,'blocks_1_split_5050_content',''),(313134,42479,'_blocks_1_split_5050_content','field_61767afceb8ba'),(313135,42479,'blocks_3_acfe_flexible_toggle','1'),(313136,42479,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313137,42479,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(313138,42479,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313139,42479,'blocks_3_options_theme','#f5f5f5'),(313140,42479,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(313141,42479,'blocks_3_options_reverse','1'),(313142,42479,'_blocks_3_options_reverse','field_61768049bb8ac'),(313143,42479,'blocks_3_options',''),(313144,42479,'_blocks_3_options','field_617682517c334'),(313145,42479,'blocks_3_split_5050_image','41330'),(313146,42479,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(313147,42479,'blocks_3_split_5050_video',''),(313148,42479,'_blocks_3_split_5050_video','field_6239f3160848a'),(313149,42479,'blocks_3_split_5050_content_title',''),(313150,42479,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(313151,42479,'blocks_3_split_5050_content_heading',''),(313152,42479,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(313153,42479,'blocks_3_split_5050_content_text',''),(313154,42479,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(313155,42479,'blocks_3_split_5050_content_actions',''),(313156,42479,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(313157,42479,'blocks_3_split_5050_content',''),(313158,42479,'_blocks_3_split_5050_content','field_61767afceb8ba'),(313159,42479,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Learn More \";s:3:\"url\";s:11:\"#learn-more\";s:6:\"target\";s:0:\"\";}'),(313160,42479,'_hero_actions_0_button','field_61757281285eb'),(313161,42479,'blocks_7_acfe_flexible_toggle',''),(313162,42479,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313163,42479,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(313164,42479,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313165,42479,'blocks_7_options_theme','#ffffff'),(313166,42479,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(313167,42479,'blocks_7_options_reverse','0'),(313168,42479,'_blocks_7_options_reverse','field_61768049bb8ac'),(313169,42479,'blocks_7_options',''),(313170,42479,'_blocks_7_options','field_617682517c334'),(313171,42479,'blocks_7_split_5050_image','41539'),(313172,42479,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(313173,42479,'blocks_7_split_5050_video',''),(313174,42479,'_blocks_7_split_5050_video','field_6239f3160848a'),(313175,42479,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(313176,42479,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(313177,42479,'blocks_7_split_5050_content_heading',''),(313178,42479,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(313179,42479,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(313180,42479,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(313181,42479,'blocks_7_split_5050_content_actions',''),(313182,42479,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(313183,42479,'blocks_7_split_5050_content',''),(313184,42479,'_blocks_7_split_5050_content','field_61767afceb8ba'),(313185,42479,'blocks_8_acfe_flexible_toggle',''),(313186,42479,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313187,42479,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(313188,42479,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313189,42479,'blocks_8_options_theme','#ffffff'),(313190,42479,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(313191,42479,'blocks_8_options_reverse','0'),(313192,42479,'_blocks_8_options_reverse','field_61768049bb8ac'),(313193,42479,'blocks_8_options',''),(313194,42479,'_blocks_8_options','field_617682517c334'),(313195,42479,'blocks_8_split_5050_image','41502'),(313196,42479,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(313197,42479,'blocks_8_split_5050_video',''),(313198,42479,'_blocks_8_split_5050_video','field_6239f3160848a'),(313199,42479,'blocks_8_split_5050_content_title','Educators and Researchers'),(313200,42479,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(313201,42479,'blocks_8_split_5050_content_heading',''),(313202,42479,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(313203,42479,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(313204,42479,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(313205,42479,'blocks_8_split_5050_content_actions',''),(313206,42479,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(313207,42479,'blocks_8_split_5050_content',''),(313208,42479,'_blocks_8_split_5050_content','field_61767afceb8ba'),(313209,42479,'blocks_9_acfe_flexible_toggle',''),(313210,42479,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313211,42479,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(313212,42479,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313213,42479,'blocks_9_options_theme','#ffffff'),(313214,42479,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(313215,42479,'blocks_9_options_reverse','0'),(313216,42479,'_blocks_9_options_reverse','field_61768049bb8ac'),(313217,42479,'blocks_9_options',''),(313218,42479,'_blocks_9_options','field_617682517c334'),(313219,42479,'blocks_9_split_5050_image','41506'),(313220,42479,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(313221,42479,'blocks_9_split_5050_video',''),(313222,42479,'_blocks_9_split_5050_video','field_6239f3160848a'),(313223,42479,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(313224,42479,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(313225,42479,'blocks_9_split_5050_content_heading',''),(313226,42479,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(313227,42479,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(313228,42479,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(313229,42479,'blocks_9_split_5050_content_actions',''),(313230,42479,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(313231,42479,'blocks_9_split_5050_content',''),(313232,42479,'_blocks_9_split_5050_content','field_61767afceb8ba'),(313233,42479,'blocks_13_acfe_flexible_toggle',''),(313234,42479,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313235,42479,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(313236,42479,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313237,42479,'blocks_13_options_theme','#ffffff'),(313238,42479,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(313239,42479,'blocks_13_options_reverse','1'),(313240,42479,'_blocks_13_options_reverse','field_61768049bb8ac'),(313241,42479,'blocks_13_options',''),(313242,42479,'_blocks_13_options','field_617682517c334'),(313243,42479,'blocks_13_split_5050_image','40387'),(313244,42479,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(313245,42479,'blocks_13_split_5050_video',''),(313246,42479,'_blocks_13_split_5050_video','field_6239f3160848a'),(313247,42479,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(313248,42479,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(313249,42479,'blocks_13_split_5050_content_heading',''),(313250,42479,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(313251,42479,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(313252,42479,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(313253,42479,'blocks_13_split_5050_content_actions',''),(313254,42479,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(313255,42479,'blocks_13_split_5050_content',''),(313256,42479,'_blocks_13_split_5050_content','field_61767afceb8ba'),(313257,42479,'blocks_14_acfe_flexible_toggle',''),(313258,42479,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313259,42479,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(313260,42479,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313261,42479,'blocks_14_options_theme','#ffffff'),(313262,42479,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(313263,42479,'blocks_14_options_reverse','1'),(313264,42479,'_blocks_14_options_reverse','field_61768049bb8ac'),(313265,42479,'blocks_14_options',''),(313266,42479,'_blocks_14_options','field_617682517c334'),(313267,42479,'blocks_14_split_5050_image','18856'),(313268,42479,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(313269,42479,'blocks_14_split_5050_video',''),(313270,42479,'_blocks_14_split_5050_video','field_6239f3160848a'),(313271,42479,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(313272,42479,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(313273,42479,'blocks_14_split_5050_content_heading',''),(313274,42479,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(313275,42479,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(313276,42479,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(313277,42479,'blocks_14_split_5050_content_actions',''),(313278,42479,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(313279,42479,'blocks_14_split_5050_content',''),(313280,42479,'_blocks_14_split_5050_content','field_61767afceb8ba'),(313281,42479,'blocks_19_acfe_flexible_toggle',''),(313282,42479,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(313283,42479,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(313284,42479,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(313285,42479,'blocks_19_options_theme','#ffffff'),(313286,42479,'_blocks_19_options_theme','field_6176830e2ad17'),(313287,42479,'blocks_19_options',''),(313288,42479,'_blocks_19_options','field_6176830e2ad16'),(313289,42479,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(313290,42479,'_blocks_19_text_block_heading','field_617669d413097'),(313291,42479,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(313292,42479,'_blocks_19_text_block_content','field_617669ec13098'),(313293,42479,'blocks_20_acfe_flexible_toggle',''),(313294,42479,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(313295,42479,'blocks_20_acfe_flexible_layout_title','Conclusion'),(313296,42479,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(313297,42479,'blocks_20_options_theme','#b61234'),(313298,42479,'_blocks_20_options_theme','field_6176830e2ad17'),(313299,42479,'blocks_20_options',''),(313300,42479,'_blocks_20_options','field_6176830e2ad16'),(313301,42479,'blocks_20_text_block_heading','Conclusion'),(313302,42479,'_blocks_20_text_block_heading','field_617669d413097'),(313303,42479,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(313304,42479,'_blocks_20_text_block_content','field_617669ec13098'),(313305,42479,'blocks_6_acfe_flexible_toggle',''),(313306,42479,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313307,42479,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(313308,42479,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313309,42479,'blocks_6_options_theme','#ffffff'),(313310,42479,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(313311,42479,'blocks_6_options_reverse','0'),(313312,42479,'_blocks_6_options_reverse','field_61768049bb8ac'),(313313,42479,'blocks_6_options',''),(313314,42479,'_blocks_6_options','field_617682517c334'),(313315,42479,'blocks_6_split_5050_image','41505'),(313316,42479,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(313317,42479,'blocks_6_split_5050_video',''),(313318,42479,'_blocks_6_split_5050_video','field_6239f3160848a'),(313319,42479,'blocks_6_split_5050_content_title','Current Practitioners'),(313320,42479,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(313321,42479,'blocks_6_split_5050_content_heading',''),(313322,42479,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(313323,42479,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(313324,42479,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(313325,42479,'blocks_6_split_5050_content_actions',''),(313326,42479,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(313327,42479,'blocks_6_split_5050_content',''),(313328,42479,'_blocks_6_split_5050_content','field_61767afceb8ba'),(313329,42479,'blocks_2_acfe_flexible_toggle',''),(313330,42479,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313331,42479,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(313332,42479,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313333,42479,'blocks_2_options_theme','#f5f5f5'),(313334,42479,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(313335,42479,'blocks_2_options_reverse','1'),(313336,42479,'_blocks_2_options_reverse','field_61768049bb8ac'),(313337,42479,'blocks_2_options',''),(313338,42479,'_blocks_2_options','field_617682517c334'),(313339,42479,'blocks_2_split_5050_image','40618'),(313340,42479,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(313341,42479,'blocks_2_split_5050_video',''),(313342,42479,'_blocks_2_split_5050_video','field_6239f3160848a'),(313343,42479,'blocks_2_split_5050_content_title',''),(313344,42479,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(313345,42479,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(313346,42479,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(313347,42479,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(313348,42479,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(313349,42479,'blocks_2_split_5050_content_actions',''),(313350,42479,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(313351,42479,'blocks_2_split_5050_content',''),(313352,42479,'_blocks_2_split_5050_content','field_61767afceb8ba'),(313353,42479,'blocks_4_acfe_flexible_toggle',''),(313354,42479,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(313355,42479,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(313356,42479,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(313357,42479,'blocks_4_options_theme','#ffffff'),(313358,42479,'_blocks_4_options_theme','field_6176830e2ad17'),(313359,42479,'blocks_4_options',''),(313360,42479,'_blocks_4_options','field_6176830e2ad16'),(313361,42479,'blocks_4_text_block_heading','Who Should Study MSK?'),(313362,42479,'_blocks_4_text_block_heading','field_617669d413097'),(313363,42479,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(313364,42479,'_blocks_4_text_block_content','field_617669ec13098'),(313365,42479,'blocks_5_acfe_flexible_toggle',''),(313366,42479,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313367,42479,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(313368,42479,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313369,42479,'blocks_5_options_theme','#ffffff'),(313370,42479,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(313371,42479,'blocks_5_options_reverse','0'),(313372,42479,'_blocks_5_options_reverse','field_61768049bb8ac'),(313373,42479,'blocks_5_options',''),(313374,42479,'_blocks_5_options','field_617682517c334'),(313375,42479,'blocks_5_split_5050_image','41542'),(313376,42479,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(313377,42479,'blocks_5_split_5050_video',''),(313378,42479,'_blocks_5_split_5050_video','field_6239f3160848a'),(313379,42479,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(313380,42479,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(313381,42479,'blocks_5_split_5050_content_heading',''),(313382,42479,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(313383,42479,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(313384,42479,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(313385,42479,'blocks_5_split_5050_content_actions',''),(313386,42479,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(313387,42479,'blocks_5_split_5050_content',''),(313388,42479,'_blocks_5_split_5050_content','field_61767afceb8ba'),(313389,42479,'blocks_10_acfe_flexible_toggle',''),(313390,42479,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(313391,42479,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(313392,42479,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(313393,42479,'blocks_10_options_theme','#f5f5f5'),(313394,42479,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(313395,42479,'blocks_10_options_state','0'),(313396,42479,'_blocks_10_options_state','field_6239fcb7508c5'),(313397,42479,'blocks_10_options',''),(313398,42479,'_blocks_10_options','field_6177e2991ac44'),(313399,42479,'blocks_10_content_title',''),(313400,42479,'_blocks_10_content_title','field_64d237e8bb1e2'),(313401,42479,'blocks_10_content_heading','Common MSK Conditions'),(313402,42479,'_blocks_10_content_heading','field_64d237e8bb1e3'),(313403,42479,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(313404,42479,'_blocks_10_content_text','field_64d237e8bb1e4'),(313405,42479,'blocks_10_content_actions',''),(313406,42479,'_blocks_10_content_actions','field_64d237e8bb1e5'),(313407,42479,'blocks_10_content_align','left'),(313408,42479,'_blocks_10_content_align','field_64d2443e6b6aa'),(313409,42479,'blocks_10_content',''),(313410,42479,'_blocks_10_content','field_64d237e8bb1e1'),(313411,42479,'blocks_10_accordion_content','custom'),(313412,42479,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(313413,42479,'blocks_10_accordion_items_0_title','Osteoarthritis'),(313414,42479,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(313415,42479,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(313416,42479,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(313417,42479,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(313418,42479,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(313419,42479,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(313420,42479,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(313421,42479,'blocks_10_accordion_items_2_title','Back Pain'),(313422,42479,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(313423,42479,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(313424,42479,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(313425,42479,'blocks_10_accordion_items_3_title','Osteoporosis'),(313426,42479,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(313427,42479,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(313428,42479,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(313429,42479,'blocks_10_accordion_items_4_title','Tendinitis'),(313430,42479,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(313431,42479,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(313432,42479,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(313433,42479,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(313434,42479,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(313435,42479,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(313436,42479,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(313437,42479,'blocks_10_accordion_items_6_title','Fibromyalgia'),(313438,42479,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(313439,42479,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(313440,42479,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(313441,42479,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(313442,42479,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(313443,42479,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(313444,42479,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(313445,42479,'blocks_10_accordion_items','8'),(313446,42479,'_blocks_10_accordion_items','field_6177e2991ac4c'),(313447,42479,'blocks_10_actions',''),(313448,42479,'_blocks_10_actions','field_61a746a817f7a'),(313449,42479,'blocks_11_acfe_flexible_toggle',''),(313450,42479,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(313451,42479,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(313452,42479,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(313453,42479,'blocks_11_options_theme','#ffffff'),(313454,42479,'_blocks_11_options_theme','field_6176830e2ad17'),(313455,42479,'blocks_11_options',''),(313456,42479,'_blocks_11_options','field_6176830e2ad16'),(313457,42479,'blocks_11_text_block_heading','The Importance of MSK Education'),(313458,42479,'_blocks_11_text_block_heading','field_617669d413097'),(313459,42479,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(313460,42479,'_blocks_11_text_block_content','field_617669ec13098'),(313461,42479,'blocks_12_acfe_flexible_toggle',''),(313462,42479,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313463,42479,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(313464,42479,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313465,42479,'blocks_12_options_theme','#ffffff'),(313466,42479,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(313467,42479,'blocks_12_options_reverse','1'),(313468,42479,'_blocks_12_options_reverse','field_61768049bb8ac'),(313469,42479,'blocks_12_options',''),(313470,42479,'_blocks_12_options','field_617682517c334'),(313471,42479,'blocks_12_split_5050_image','41498'),(313472,42479,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(313473,42479,'blocks_12_split_5050_video',''),(313474,42479,'_blocks_12_split_5050_video','field_6239f3160848a'),(313475,42479,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(313476,42479,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(313477,42479,'blocks_12_split_5050_content_heading',''),(313478,42479,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(313479,42479,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(313480,42479,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(313481,42479,'blocks_12_split_5050_content_actions',''),(313482,42479,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(313483,42479,'blocks_12_split_5050_content',''),(313484,42479,'_blocks_12_split_5050_content','field_61767afceb8ba'),(313485,42479,'blocks_15_acfe_flexible_toggle',''),(313486,42479,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(313487,42479,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(313488,42479,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(313489,42479,'blocks_15_options_theme','#b61234'),(313490,42479,'_blocks_15_options_theme','field_6176830e2ad17'),(313491,42479,'blocks_15_options',''),(313492,42479,'_blocks_15_options','field_6176830e2ad16'),(313493,42479,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(313494,42479,'_blocks_15_text_block_heading','field_617669d413097'),(313495,42479,'blocks_15_text_block_content',''),(313496,42479,'_blocks_15_text_block_content','field_617669ec13098'),(313497,42479,'blocks_16_acfe_flexible_toggle',''),(313498,42479,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(313499,42479,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(313500,42479,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(313501,42479,'blocks_16_options_theme','#b61234'),(313502,42479,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(313503,42479,'blocks_16_options_format','row'),(313504,42479,'_blocks_16_options_format','field_64bfde9a90690'),(313505,42479,'blocks_16_options',''),(313506,42479,'_blocks_16_options','field_64bfdd9b90684'),(313507,42479,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(313508,42479,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(313509,42479,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(313510,42479,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(313511,42479,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(313512,42479,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(313513,42479,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(313514,42479,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(313515,42479,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(313516,42479,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(313517,42479,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(313518,42479,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(313519,42479,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(313520,42479,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(313521,42479,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(313522,42479,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(313523,42479,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(313524,42479,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(313525,42479,'blocks_16_icon_row_items_3_icon','recognised.svg'),(313526,42479,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(313527,42479,'blocks_16_icon_row_items_3_label','Optimised Performance'),(313528,42479,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(313529,42479,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(313530,42479,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(313531,42479,'blocks_16_icon_row_items','4'),(313532,42479,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(313533,42479,'blocks_17_acfe_flexible_toggle',''),(313534,42479,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313535,42479,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(313536,42479,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313537,42479,'blocks_17_options_theme','#ffffff'),(313538,42479,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(313539,42479,'blocks_17_options_reverse','0'),(313540,42479,'_blocks_17_options_reverse','field_61768049bb8ac'),(313541,42479,'blocks_17_options',''),(313542,42479,'_blocks_17_options','field_617682517c334'),(313543,42479,'blocks_17_split_5050_image','41501'),(313544,42479,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(313545,42479,'blocks_17_split_5050_video',''),(313546,42479,'_blocks_17_split_5050_video','field_6239f3160848a'),(313547,42479,'blocks_17_split_5050_content_title',''),(313548,42479,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(313549,42479,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(313550,42479,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(313551,42479,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(313552,42479,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(313553,42479,'blocks_17_split_5050_content_actions',''),(313554,42479,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(313555,42479,'blocks_17_split_5050_content',''),(313556,42479,'_blocks_17_split_5050_content','field_61767afceb8ba'),(313557,42479,'blocks_18_acfe_flexible_toggle',''),(313558,42479,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(313559,42479,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(313560,42479,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(313561,42479,'blocks_18_options_theme','#ffffff'),(313562,42479,'_blocks_18_options_theme','field_6176830e2ad17'),(313563,42479,'blocks_18_options',''),(313564,42479,'_blocks_18_options','field_6176830e2ad16'),(313565,42479,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(313566,42479,'_blocks_18_text_block_heading','field_617669d413097'),(313567,42479,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(313568,42479,'_blocks_18_text_block_content','field_617669ec13098'),(313569,42479,'blocks_21_acfe_flexible_toggle',''),(313570,42479,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(313571,42479,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(313572,42479,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(313573,42479,'blocks_21_options_alignment','center'),(313574,42479,'_blocks_21_options_alignment','field_61769449f5490'),(313575,42479,'blocks_21_options',''),(313576,42479,'_blocks_21_options','field_617693e1428f0'),(313577,42479,'blocks_21_promo_panel_image','40342'),(313578,42479,'_blocks_21_promo_panel_image','field_617693e1428f3'),(313579,42479,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(313580,42479,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(313581,42479,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(313582,42479,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(313583,42479,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(313584,42479,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(313585,42479,'blocks_21_promo_panel_content_actions','1'),(313586,42479,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(313587,42479,'blocks_21_promo_panel_content',''),(313588,42479,'_blocks_21_promo_panel_content','field_617693e1428f4'),(313589,42480,'hide_hero','0'),(313590,42480,'_hide_hero','field_66a2380fcda39'),(313591,42480,'hero_title',''),(313592,42480,'_hero_title','field_617571fe285e8'),(313593,42480,'hero_text',''),(313594,42480,'_hero_text','field_6175723c285e9'),(313595,42480,'hero_actions',''),(313596,42480,'_hero_actions','field_61757270285ea'),(313597,42480,'hero_style','default'),(313598,42480,'_hero_style','field_62051d9dc5324'),(313599,42480,'_thumbnail_id',''),(313600,42480,'__thumbnail_id','field_617570855ddaf'),(313601,42480,'hero_image_pos_x','right'),(313602,42480,'_hero_image_pos_x','field_62ec3d05390bb'),(313603,42480,'hero_image_pos_y','top'),(313604,42480,'_hero_image_pos_y','field_62ec3d05390bc'),(313605,42480,'hero_image_pos',''),(313606,42480,'_hero_image_pos','field_62ec3d05390ba'),(313607,42480,'fft_hide_from_listings','0'),(313608,42480,'_fft_hide_from_listings','field_61f1320446ab2'),(313609,42480,'fft_page_format','default'),(313610,42480,'_fft_page_format','field_61ae213f1f218'),(313611,42480,'fft_hide_nav','0'),(313612,42480,'_fft_hide_nav','field_635bd5e43527c'),(313613,42480,'fft_hide_header_call_to_action','0'),(313614,42480,'_fft_hide_header_call_to_action','field_635bd6723527d'),(313615,42480,'fft_page_sitemap','0'),(313616,42480,'_fft_page_sitemap','field_61af9b34e8181'),(313617,42480,'blocks_0_acfe_flexible_toggle',''),(313618,42480,'_blocks_0_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(313619,42480,'blocks_0_acfe_flexible_layout_title','Promo Panel'),(313620,42480,'_blocks_0_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(313621,42480,'blocks_0_options_alignment','center'),(313622,42480,'_blocks_0_options_alignment','field_61769449f5490'),(313623,42480,'blocks_0_options',''),(313624,42480,'_blocks_0_options','field_617693e1428f0'),(313625,42480,'blocks_0_promo_panel_image','32556'),(313626,42480,'_blocks_0_promo_panel_image','field_617693e1428f3'),(313627,42480,'blocks_0_promo_panel_content_heading',''),(313628,42480,'_blocks_0_promo_panel_content_heading','field_617693e1428f6'),(313629,42480,'blocks_0_promo_panel_content_text','\"Join the workshop and get 65% funded – limited spots available!\"'),(313630,42480,'_blocks_0_promo_panel_content_text','field_617693e1428f7'),(313631,42480,'blocks_0_promo_panel_content_actions',''),(313632,42480,'_blocks_0_promo_panel_content_actions','field_617693e1428f8'),(313633,42480,'blocks_0_promo_panel_content',''),(313634,42480,'_blocks_0_promo_panel_content','field_617693e1428f4'),(313635,42480,'blocks_1_acfe_flexible_toggle',''),(313636,42480,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(313637,42480,'blocks_1_acfe_flexible_layout_title','Text Block'),(313638,42480,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(313639,42480,'blocks_1_options_theme','#ffffff'),(313640,42480,'_blocks_1_options_theme','field_6176830e2ad17'),(313641,42480,'blocks_1_options',''),(313642,42480,'_blocks_1_options','field_6176830e2ad16'),(313643,42480,'blocks_1_text_block_heading','Join the workshop and get 65% funded – limited spots available!'),(313644,42480,'_blocks_1_text_block_heading','field_617669d413097'),(313645,42480,'blocks_1_text_block_content',''),(313646,42480,'_blocks_1_text_block_content','field_617669ec13098'),(313647,42480,'blocks_2_acfe_flexible_toggle',''),(313648,42480,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(313649,42480,'blocks_2_acfe_flexible_layout_title','Quote'),(313650,42480,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(313651,42480,'blocks_2_quote_content','\"Join the workshop and get 65% funded – limited spots available!\"'),(313652,42480,'_blocks_2_quote_content','field_6177cdacdd67a'),(313653,42480,'blocks_2_quote_author',''),(313654,42480,'_blocks_2_quote_author','field_6177cdc6dd67b'),(313655,42480,'blocks_3_acfe_flexible_toggle',''),(313656,42480,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(313657,42480,'blocks_3_acfe_flexible_layout_title','Form'),(313658,42480,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(313659,42480,'blocks_3_row_content_format','standard'),(313660,42480,'_blocks_3_row_content_format','field_6481ead962881'),(313661,42480,'blocks_3_row_content_title',''),(313662,42480,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(313663,42480,'blocks_3_row_content_heading',''),(313664,42480,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(313665,42480,'blocks_3_row_content_text',''),(313666,42480,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(313667,42480,'blocks_3_row_content_actions',''),(313668,42480,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(313669,42480,'blocks_3_row_content',''),(313670,42480,'_blocks_3_row_content','field_61a0f5f5b3db0'),(313671,42480,'blocks_3_row_form','42449'),(313672,42480,'_blocks_3_row_form','field_61a4ff2c0b08e'),(313673,42480,'blocks_3_row_form_button_label',''),(313674,42480,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(313675,42480,'blocks','a:4:{i:0;s:11:\"promo_panel\";i:1;s:10:\"text_block\";i:2;s:5:\"quote\";i:3;s:4:\"form\";}'),(313676,42480,'_blocks','field_6176696113096'),(313677,42480,'_acf_changed','1'),(313678,42171,'_thumbnail_id',''),(313679,42482,'hide_hero','0'),(313680,42482,'_hide_hero','field_66a2380fcda39'),(313681,42482,'hero_title',''),(313682,42482,'_hero_title','field_617571fe285e8'),(313683,42482,'hero_text',''),(313684,42482,'_hero_text','field_6175723c285e9'),(313685,42482,'hero_actions',''),(313686,42482,'_hero_actions','field_61757270285ea'),(313687,42482,'hero_style','default'),(313688,42482,'_hero_style','field_62051d9dc5324'),(313689,42482,'hero_image_pos_x','right'),(313690,42482,'_hero_image_pos_x','field_62ec3d05390bb'),(313691,42482,'hero_image_pos_y','top'),(313692,42482,'_hero_image_pos_y','field_62ec3d05390bc'),(313693,42482,'hero_image_pos',''),(313694,42482,'_hero_image_pos','field_62ec3d05390ba'),(313695,42482,'fft_hide_from_listings','0'),(313696,42482,'_fft_hide_from_listings','field_61f1320446ab2'),(313697,42482,'fft_page_format','default'),(313698,42482,'_fft_page_format','field_61ae213f1f218'),(313699,42482,'fft_hide_nav','0'),(313700,42482,'_fft_hide_nav','field_635bd5e43527c'),(313701,42482,'fft_hide_header_call_to_action','0'),(313702,42482,'_fft_hide_header_call_to_action','field_635bd6723527d'),(313703,42482,'fft_page_sitemap','0'),(313704,42482,'_fft_page_sitemap','field_61af9b34e8181'),(313705,42482,'blocks_0_acfe_flexible_toggle',''),(313706,42482,'_blocks_0_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(313707,42482,'blocks_0_acfe_flexible_layout_title','Promo Panel'),(313708,42482,'_blocks_0_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(313709,42482,'blocks_0_options_alignment','center'),(313710,42482,'_blocks_0_options_alignment','field_61769449f5490'),(313711,42482,'blocks_0_options',''),(313712,42482,'_blocks_0_options','field_617693e1428f0'),(313713,42482,'blocks_0_promo_panel_image','32556'),(313714,42482,'_blocks_0_promo_panel_image','field_617693e1428f3'),(313715,42482,'blocks_0_promo_panel_content_heading',''),(313716,42482,'_blocks_0_promo_panel_content_heading','field_617693e1428f6'),(313717,42482,'blocks_0_promo_panel_content_text','\"Join the workshop and get 65% funded – limited spots available!\"'),(313718,42482,'_blocks_0_promo_panel_content_text','field_617693e1428f7'),(313719,42482,'blocks_0_promo_panel_content_actions',''),(313720,42482,'_blocks_0_promo_panel_content_actions','field_617693e1428f8'),(313721,42482,'blocks_0_promo_panel_content',''),(313722,42482,'_blocks_0_promo_panel_content','field_617693e1428f4'),(313723,42482,'blocks_1_acfe_flexible_toggle',''),(313724,42482,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(313725,42482,'blocks_1_acfe_flexible_layout_title','Text Block'),(313726,42482,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(313727,42482,'blocks_1_options_theme','#ffffff'),(313728,42482,'_blocks_1_options_theme','field_6176830e2ad17'),(313729,42482,'blocks_1_options',''),(313730,42482,'_blocks_1_options','field_6176830e2ad16'),(313731,42482,'blocks_1_text_block_heading','Join the workshop and get 65% funded – limited spots available!'),(313732,42482,'_blocks_1_text_block_heading','field_617669d413097'),(313733,42482,'blocks_1_text_block_content',''),(313734,42482,'_blocks_1_text_block_content','field_617669ec13098'),(313735,42482,'blocks_2_acfe_flexible_toggle',''),(313736,42482,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(313737,42482,'blocks_2_acfe_flexible_layout_title','Quote'),(313738,42482,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(313739,42482,'blocks_2_quote_content','\"Join the workshop and get 65% funded – limited spots available!\"'),(313740,42482,'_blocks_2_quote_content','field_6177cdacdd67a'),(313741,42482,'blocks_2_quote_author',''),(313742,42482,'_blocks_2_quote_author','field_6177cdc6dd67b'),(313743,42482,'blocks','a:3:{i:0;s:11:\"promo_panel\";i:1;s:10:\"text_block\";i:2;s:5:\"quote\";}'),(313744,42482,'_blocks','field_6176696113096'),(313745,42482,'_thumbnail_id',''),(313746,42482,'__thumbnail_id','field_617570855ddaf'),(313748,42483,'hide_hero','0'),(313749,42483,'_hide_hero','field_66a2380fcda39'),(313750,42483,'hero_title',''),(313751,42483,'_hero_title','field_617571fe285e8'),(313752,42483,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(313753,42483,'_hero_text','field_6175723c285e9'),(313754,42483,'hero_actions',''),(313755,42483,'_hero_actions','field_61757270285ea'),(313756,42483,'hero_style','default'),(313757,42483,'_hero_style','field_62051d9dc5324'),(313758,42483,'hero_image_pos_x','right'),(313759,42483,'_hero_image_pos_x','field_62ec3d05390bb'),(313760,42483,'hero_image_pos_y','top'),(313761,42483,'_hero_image_pos_y','field_62ec3d05390bc'),(313762,42483,'hero_image_pos',''),(313763,42483,'_hero_image_pos','field_62ec3d05390ba'),(313764,42483,'fft_hide_from_listings','1'),(313765,42483,'_fft_hide_from_listings','field_61f1320446ab2'),(313766,42483,'post_format','402'),(313767,42483,'_post_format','field_61756bfb51898'),(313768,42483,'post_author',''),(313769,42483,'_post_author','field_62ec389d22113'),(313770,42483,'post_reviewer',''),(313771,42483,'_post_reviewer','field_627140a2a9800'),(313772,42483,'post_table_of_contents','0'),(313773,42483,'_post_table_of_contents','field_65c503bc846a6'),(313774,42483,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(313775,42483,'_blocks','field_6176696113096'),(313776,42483,'_thumbnail_id','41331'),(313777,42483,'__thumbnail_id','field_617570855ddaf'),(313778,42483,'blocks_0_acfe_flexible_toggle',''),(313779,42483,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(313780,42483,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(313781,42483,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(313782,42483,'blocks_0_options_theme','#ffffff'),(313783,42483,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(313784,42483,'blocks_0_options',''),(313785,42483,'_blocks_0_options','field_6177b758246ae'),(313786,42483,'blocks_0_link_stack_content_title',''),(313787,42483,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(313788,42483,'blocks_0_link_stack_content_heading','What is MSK?'),(313789,42483,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(313790,42483,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(313791,42483,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(313792,42483,'blocks_0_link_stack_content_actions_0_button',''),(313793,42483,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(313794,42483,'blocks_0_link_stack_content_actions','1'),(313795,42483,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(313796,42483,'blocks_0_link_stack_content',''),(313797,42483,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(313798,42483,'blocks_0_link_stack_0_label','1.'),(313799,42483,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(313800,42483,'blocks_0_link_stack_0_title','Overview'),(313801,42483,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(313802,42483,'blocks_0_link_stack_0_url','#overview'),(313803,42483,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(313804,42483,'blocks_0_link_stack_1_label','2.'),(313805,42483,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(313806,42483,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(313807,42483,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(313808,42483,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(313809,42483,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(313810,42483,'blocks_0_link_stack_2_label','3.'),(313811,42483,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(313812,42483,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(313813,42483,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(313814,42483,'blocks_0_link_stack_2_url','#who-should-study-msk'),(313815,42483,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(313816,42483,'blocks_0_link_stack_3_label','4.'),(313817,42483,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(313818,42483,'blocks_0_link_stack_3_title','Common MSK Conditions'),(313819,42483,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(313820,42483,'blocks_0_link_stack_3_url','#common-msk-conditions'),(313821,42483,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(313822,42483,'blocks_0_link_stack_4_label','5.'),(313823,42483,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(313824,42483,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(313825,42483,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(313826,42483,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(313827,42483,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(313828,42483,'blocks_0_link_stack_5_label','6.'),(313829,42483,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(313830,42483,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(313831,42483,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(313832,42483,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(313833,42483,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(313834,42483,'blocks_0_link_stack','6'),(313835,42483,'_blocks_0_link_stack','field_6177b7f600cff'),(313836,42483,'blocks_1_acfe_flexible_toggle',''),(313837,42483,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313838,42483,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(313839,42483,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313840,42483,'blocks_1_options_theme','#ffffff'),(313841,42483,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(313842,42483,'blocks_1_options_reverse','0'),(313843,42483,'_blocks_1_options_reverse','field_61768049bb8ac'),(313844,42483,'blocks_1_options',''),(313845,42483,'_blocks_1_options','field_617682517c334'),(313846,42483,'blocks_1_split_5050_image','40615'),(313847,42483,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(313848,42483,'blocks_1_split_5050_video',''),(313849,42483,'_blocks_1_split_5050_video','field_6239f3160848a'),(313850,42483,'blocks_1_split_5050_content_title',''),(313851,42483,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(313852,42483,'blocks_1_split_5050_content_heading','Overview'),(313853,42483,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(313854,42483,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(313855,42483,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(313856,42483,'blocks_1_split_5050_content_actions',''),(313857,42483,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(313858,42483,'blocks_1_split_5050_content',''),(313859,42483,'_blocks_1_split_5050_content','field_61767afceb8ba'),(313860,42483,'blocks_3_acfe_flexible_toggle','1'),(313861,42483,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313862,42483,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(313863,42483,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313864,42483,'blocks_3_options_theme','#f5f5f5'),(313865,42483,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(313866,42483,'blocks_3_options_reverse','1'),(313867,42483,'_blocks_3_options_reverse','field_61768049bb8ac'),(313868,42483,'blocks_3_options',''),(313869,42483,'_blocks_3_options','field_617682517c334'),(313870,42483,'blocks_3_split_5050_image','41330'),(313871,42483,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(313872,42483,'blocks_3_split_5050_video',''),(313873,42483,'_blocks_3_split_5050_video','field_6239f3160848a'),(313874,42483,'blocks_3_split_5050_content_title',''),(313875,42483,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(313876,42483,'blocks_3_split_5050_content_heading',''),(313877,42483,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(313878,42483,'blocks_3_split_5050_content_text',''),(313879,42483,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(313880,42483,'blocks_3_split_5050_content_actions',''),(313881,42483,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(313882,42483,'blocks_3_split_5050_content',''),(313883,42483,'_blocks_3_split_5050_content','field_61767afceb8ba'),(313884,42483,'blocks_7_acfe_flexible_toggle',''),(313885,42483,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313886,42483,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(313887,42483,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313888,42483,'blocks_7_options_theme','#ffffff'),(313889,42483,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(313890,42483,'blocks_7_options_reverse','0'),(313891,42483,'_blocks_7_options_reverse','field_61768049bb8ac'),(313892,42483,'blocks_7_options',''),(313893,42483,'_blocks_7_options','field_617682517c334'),(313894,42483,'blocks_7_split_5050_image','41539'),(313895,42483,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(313896,42483,'blocks_7_split_5050_video',''),(313897,42483,'_blocks_7_split_5050_video','field_6239f3160848a'),(313898,42483,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(313899,42483,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(313900,42483,'blocks_7_split_5050_content_heading',''),(313901,42483,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(313902,42483,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(313903,42483,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(313904,42483,'blocks_7_split_5050_content_actions',''),(313905,42483,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(313906,42483,'blocks_7_split_5050_content',''),(313907,42483,'_blocks_7_split_5050_content','field_61767afceb8ba'),(313908,42483,'blocks_8_acfe_flexible_toggle',''),(313909,42483,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313910,42483,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(313911,42483,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313912,42483,'blocks_8_options_theme','#ffffff'),(313913,42483,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(313914,42483,'blocks_8_options_reverse','0'),(313915,42483,'_blocks_8_options_reverse','field_61768049bb8ac'),(313916,42483,'blocks_8_options',''),(313917,42483,'_blocks_8_options','field_617682517c334'),(313918,42483,'blocks_8_split_5050_image','41502'),(313919,42483,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(313920,42483,'blocks_8_split_5050_video',''),(313921,42483,'_blocks_8_split_5050_video','field_6239f3160848a'),(313922,42483,'blocks_8_split_5050_content_title','Educators and Researchers'),(313923,42483,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(313924,42483,'blocks_8_split_5050_content_heading',''),(313925,42483,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(313926,42483,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(313927,42483,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(313928,42483,'blocks_8_split_5050_content_actions',''),(313929,42483,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(313930,42483,'blocks_8_split_5050_content',''),(313931,42483,'_blocks_8_split_5050_content','field_61767afceb8ba'),(313932,42483,'blocks_9_acfe_flexible_toggle',''),(313933,42483,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313934,42483,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(313935,42483,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313936,42483,'blocks_9_options_theme','#ffffff'),(313937,42483,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(313938,42483,'blocks_9_options_reverse','0'),(313939,42483,'_blocks_9_options_reverse','field_61768049bb8ac'),(313940,42483,'blocks_9_options',''),(313941,42483,'_blocks_9_options','field_617682517c334'),(313942,42483,'blocks_9_split_5050_image','41506'),(313943,42483,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(313944,42483,'blocks_9_split_5050_video',''),(313945,42483,'_blocks_9_split_5050_video','field_6239f3160848a'),(313946,42483,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(313947,42483,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(313948,42483,'blocks_9_split_5050_content_heading',''),(313949,42483,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(313950,42483,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(313951,42483,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(313952,42483,'blocks_9_split_5050_content_actions',''),(313953,42483,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(313954,42483,'blocks_9_split_5050_content',''),(313955,42483,'_blocks_9_split_5050_content','field_61767afceb8ba'),(313956,42483,'blocks_13_acfe_flexible_toggle',''),(313957,42483,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313958,42483,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(313959,42483,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313960,42483,'blocks_13_options_theme','#ffffff'),(313961,42483,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(313962,42483,'blocks_13_options_reverse','1'),(313963,42483,'_blocks_13_options_reverse','field_61768049bb8ac'),(313964,42483,'blocks_13_options',''),(313965,42483,'_blocks_13_options','field_617682517c334'),(313966,42483,'blocks_13_split_5050_image','40387'),(313967,42483,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(313968,42483,'blocks_13_split_5050_video',''),(313969,42483,'_blocks_13_split_5050_video','field_6239f3160848a'),(313970,42483,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(313971,42483,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(313972,42483,'blocks_13_split_5050_content_heading',''),(313973,42483,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(313974,42483,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics, posture, and movement patterns helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(313975,42483,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(313976,42483,'blocks_13_split_5050_content_actions',''),(313977,42483,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(313978,42483,'blocks_13_split_5050_content',''),(313979,42483,'_blocks_13_split_5050_content','field_61767afceb8ba'),(313980,42483,'blocks_14_acfe_flexible_toggle',''),(313981,42483,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(313982,42483,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(313983,42483,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(313984,42483,'blocks_14_options_theme','#ffffff'),(313985,42483,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(313986,42483,'blocks_14_options_reverse','1'),(313987,42483,'_blocks_14_options_reverse','field_61768049bb8ac'),(313988,42483,'blocks_14_options',''),(313989,42483,'_blocks_14_options','field_617682517c334'),(313990,42483,'blocks_14_split_5050_image','18856'),(313991,42483,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(313992,42483,'blocks_14_split_5050_video',''),(313993,42483,'_blocks_14_split_5050_video','field_6239f3160848a'),(313994,42483,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(313995,42483,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(313996,42483,'blocks_14_split_5050_content_heading',''),(313997,42483,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(313998,42483,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(313999,42483,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(314000,42483,'blocks_14_split_5050_content_actions',''),(314001,42483,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(314002,42483,'blocks_14_split_5050_content',''),(314003,42483,'_blocks_14_split_5050_content','field_61767afceb8ba'),(314004,42483,'blocks_19_acfe_flexible_toggle',''),(314005,42483,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(314006,42483,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(314007,42483,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(314008,42483,'blocks_19_options_theme','#ffffff'),(314009,42483,'_blocks_19_options_theme','field_6176830e2ad17'),(314010,42483,'blocks_19_options',''),(314011,42483,'_blocks_19_options','field_6176830e2ad16'),(314012,42483,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(314013,42483,'_blocks_19_text_block_heading','field_617669d413097'),(314014,42483,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(314015,42483,'_blocks_19_text_block_content','field_617669ec13098'),(314016,42483,'blocks_20_acfe_flexible_toggle',''),(314017,42483,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(314018,42483,'blocks_20_acfe_flexible_layout_title','Conclusion'),(314019,42483,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(314020,42483,'blocks_20_options_theme','#b61234'),(314021,42483,'_blocks_20_options_theme','field_6176830e2ad17'),(314022,42483,'blocks_20_options',''),(314023,42483,'_blocks_20_options','field_6176830e2ad16'),(314024,42483,'blocks_20_text_block_heading','Conclusion'),(314025,42483,'_blocks_20_text_block_heading','field_617669d413097'),(314026,42483,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(314027,42483,'_blocks_20_text_block_content','field_617669ec13098'),(314028,42483,'blocks_6_acfe_flexible_toggle',''),(314029,42483,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(314030,42483,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(314031,42483,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(314032,42483,'blocks_6_options_theme','#ffffff'),(314033,42483,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(314034,42483,'blocks_6_options_reverse','0'),(314035,42483,'_blocks_6_options_reverse','field_61768049bb8ac'),(314036,42483,'blocks_6_options',''),(314037,42483,'_blocks_6_options','field_617682517c334'),(314038,42483,'blocks_6_split_5050_image','41505'),(314039,42483,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(314040,42483,'blocks_6_split_5050_video',''),(314041,42483,'_blocks_6_split_5050_video','field_6239f3160848a'),(314042,42483,'blocks_6_split_5050_content_title','Current Practitioners'),(314043,42483,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(314044,42483,'blocks_6_split_5050_content_heading',''),(314045,42483,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(314046,42483,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(314047,42483,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(314048,42483,'blocks_6_split_5050_content_actions',''),(314049,42483,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(314050,42483,'blocks_6_split_5050_content',''),(314051,42483,'_blocks_6_split_5050_content','field_61767afceb8ba'),(314052,42483,'blocks_2_acfe_flexible_toggle',''),(314053,42483,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(314054,42483,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(314055,42483,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(314056,42483,'blocks_2_options_theme','#f5f5f5'),(314057,42483,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(314058,42483,'blocks_2_options_reverse','1'),(314059,42483,'_blocks_2_options_reverse','field_61768049bb8ac'),(314060,42483,'blocks_2_options',''),(314061,42483,'_blocks_2_options','field_617682517c334'),(314062,42483,'blocks_2_split_5050_image','40618'),(314063,42483,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(314064,42483,'blocks_2_split_5050_video',''),(314065,42483,'_blocks_2_split_5050_video','field_6239f3160848a'),(314066,42483,'blocks_2_split_5050_content_title',''),(314067,42483,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(314068,42483,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(314069,42483,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(314070,42483,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(314071,42483,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(314072,42483,'blocks_2_split_5050_content_actions',''),(314073,42483,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(314074,42483,'blocks_2_split_5050_content',''),(314075,42483,'_blocks_2_split_5050_content','field_61767afceb8ba'),(314076,42483,'blocks_4_acfe_flexible_toggle',''),(314077,42483,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(314078,42483,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(314079,42483,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(314080,42483,'blocks_4_options_theme','#ffffff'),(314081,42483,'_blocks_4_options_theme','field_6176830e2ad17'),(314082,42483,'blocks_4_options',''),(314083,42483,'_blocks_4_options','field_6176830e2ad16'),(314084,42483,'blocks_4_text_block_heading','Who Should Study MSK?'),(314085,42483,'_blocks_4_text_block_heading','field_617669d413097'),(314086,42483,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(314087,42483,'_blocks_4_text_block_content','field_617669ec13098'),(314088,42483,'blocks_5_acfe_flexible_toggle',''),(314089,42483,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(314090,42483,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(314091,42483,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(314092,42483,'blocks_5_options_theme','#ffffff'),(314093,42483,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(314094,42483,'blocks_5_options_reverse','0'),(314095,42483,'_blocks_5_options_reverse','field_61768049bb8ac'),(314096,42483,'blocks_5_options',''),(314097,42483,'_blocks_5_options','field_617682517c334'),(314098,42483,'blocks_5_split_5050_image','41542'),(314099,42483,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(314100,42483,'blocks_5_split_5050_video',''),(314101,42483,'_blocks_5_split_5050_video','field_6239f3160848a'),(314102,42483,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(314103,42483,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(314104,42483,'blocks_5_split_5050_content_heading',''),(314105,42483,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(314106,42483,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(314107,42483,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(314108,42483,'blocks_5_split_5050_content_actions',''),(314109,42483,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(314110,42483,'blocks_5_split_5050_content',''),(314111,42483,'_blocks_5_split_5050_content','field_61767afceb8ba'),(314112,42483,'blocks_10_acfe_flexible_toggle',''),(314113,42483,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(314114,42483,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(314115,42483,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(314116,42483,'blocks_10_options_theme','#f5f5f5'),(314117,42483,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(314118,42483,'blocks_10_options_state','0'),(314119,42483,'_blocks_10_options_state','field_6239fcb7508c5'),(314120,42483,'blocks_10_options',''),(314121,42483,'_blocks_10_options','field_6177e2991ac44'),(314122,42483,'blocks_10_content_title',''),(314123,42483,'_blocks_10_content_title','field_64d237e8bb1e2'),(314124,42483,'blocks_10_content_heading','Common MSK Conditions'),(314125,42483,'_blocks_10_content_heading','field_64d237e8bb1e3'),(314126,42483,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(314127,42483,'_blocks_10_content_text','field_64d237e8bb1e4'),(314128,42483,'blocks_10_content_actions',''),(314129,42483,'_blocks_10_content_actions','field_64d237e8bb1e5'),(314130,42483,'blocks_10_content_align','left'),(314131,42483,'_blocks_10_content_align','field_64d2443e6b6aa'),(314132,42483,'blocks_10_content',''),(314133,42483,'_blocks_10_content','field_64d237e8bb1e1'),(314134,42483,'blocks_10_accordion_content','custom'),(314135,42483,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(314136,42483,'blocks_10_accordion_items_0_title','Osteoarthritis'),(314137,42483,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(314138,42483,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(314139,42483,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(314140,42483,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(314141,42483,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(314142,42483,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(314143,42483,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(314144,42483,'blocks_10_accordion_items_2_title','Back Pain'),(314145,42483,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(314146,42483,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by poor posture, muscle imbalances, or prolonged inactivity.'),(314147,42483,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(314148,42483,'blocks_10_accordion_items_3_title','Osteoporosis'),(314149,42483,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(314150,42483,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(314151,42483,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(314152,42483,'blocks_10_accordion_items_4_title','Tendinitis'),(314153,42483,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(314154,42483,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(314155,42483,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(314156,42483,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(314157,42483,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(314158,42483,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(314159,42483,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(314160,42483,'blocks_10_accordion_items_6_title','Fibromyalgia'),(314161,42483,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(314162,42483,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(314163,42483,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(314164,42483,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(314165,42483,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(314166,42483,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(314167,42483,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(314168,42483,'blocks_10_accordion_items','8'),(314169,42483,'_blocks_10_accordion_items','field_6177e2991ac4c'),(314170,42483,'blocks_10_actions',''),(314171,42483,'_blocks_10_actions','field_61a746a817f7a'),(314172,42483,'blocks_11_acfe_flexible_toggle',''),(314173,42483,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(314174,42483,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(314175,42483,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(314176,42483,'blocks_11_options_theme','#ffffff'),(314177,42483,'_blocks_11_options_theme','field_6176830e2ad17'),(314178,42483,'blocks_11_options',''),(314179,42483,'_blocks_11_options','field_6176830e2ad16'),(314180,42483,'blocks_11_text_block_heading','The Importance of MSK Education'),(314181,42483,'_blocks_11_text_block_heading','field_617669d413097'),(314182,42483,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(314183,42483,'_blocks_11_text_block_content','field_617669ec13098'),(314184,42483,'blocks_12_acfe_flexible_toggle',''),(314185,42483,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(314186,42483,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(314187,42483,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(314188,42483,'blocks_12_options_theme','#ffffff'),(314189,42483,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(314190,42483,'blocks_12_options_reverse','1'),(314191,42483,'_blocks_12_options_reverse','field_61768049bb8ac'),(314192,42483,'blocks_12_options',''),(314193,42483,'_blocks_12_options','field_617682517c334'),(314194,42483,'blocks_12_split_5050_image','41498'),(314195,42483,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(314196,42483,'blocks_12_split_5050_video',''),(314197,42483,'_blocks_12_split_5050_video','field_6239f3160848a'),(314198,42483,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(314199,42483,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(314200,42483,'blocks_12_split_5050_content_heading',''),(314201,42483,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(314202,42483,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(314203,42483,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(314204,42483,'blocks_12_split_5050_content_actions',''),(314205,42483,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(314206,42483,'blocks_12_split_5050_content',''),(314207,42483,'_blocks_12_split_5050_content','field_61767afceb8ba'),(314208,42483,'blocks_15_acfe_flexible_toggle',''),(314209,42483,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(314210,42483,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(314211,42483,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(314212,42483,'blocks_15_options_theme','#b61234'),(314213,42483,'_blocks_15_options_theme','field_6176830e2ad17'),(314214,42483,'blocks_15_options',''),(314215,42483,'_blocks_15_options','field_6176830e2ad16'),(314216,42483,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(314217,42483,'_blocks_15_text_block_heading','field_617669d413097'),(314218,42483,'blocks_15_text_block_content',''),(314219,42483,'_blocks_15_text_block_content','field_617669ec13098'),(314220,42483,'blocks_16_acfe_flexible_toggle',''),(314221,42483,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(314222,42483,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(314223,42483,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(314224,42483,'blocks_16_options_theme','#b61234'),(314225,42483,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(314226,42483,'blocks_16_options_format','row'),(314227,42483,'_blocks_16_options_format','field_64bfde9a90690'),(314228,42483,'blocks_16_options',''),(314229,42483,'_blocks_16_options','field_64bfdd9b90684'),(314230,42483,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(314231,42483,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(314232,42483,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(314233,42483,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(314234,42483,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(314235,42483,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(314236,42483,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(314237,42483,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(314238,42483,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(314239,42483,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(314240,42483,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(314241,42483,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(314242,42483,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(314243,42483,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(314244,42483,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(314245,42483,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(314246,42483,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement patterns and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(314247,42483,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(314248,42483,'blocks_16_icon_row_items_3_icon','recognised.svg'),(314249,42483,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(314250,42483,'blocks_16_icon_row_items_3_label','Optimised Performance'),(314251,42483,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(314252,42483,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(314253,42483,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(314254,42483,'blocks_16_icon_row_items','4'),(314255,42483,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(314256,42483,'blocks_17_acfe_flexible_toggle',''),(314257,42483,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(314258,42483,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(314259,42483,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(314260,42483,'blocks_17_options_theme','#ffffff'),(314261,42483,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(314262,42483,'blocks_17_options_reverse','0'),(314263,42483,'_blocks_17_options_reverse','field_61768049bb8ac'),(314264,42483,'blocks_17_options',''),(314265,42483,'_blocks_17_options','field_617682517c334'),(314266,42483,'blocks_17_split_5050_image','41501'),(314267,42483,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(314268,42483,'blocks_17_split_5050_video',''),(314269,42483,'_blocks_17_split_5050_video','field_6239f3160848a'),(314270,42483,'blocks_17_split_5050_content_title',''),(314271,42483,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(314272,42483,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(314273,42483,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(314274,42483,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(314275,42483,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(314276,42483,'blocks_17_split_5050_content_actions',''),(314277,42483,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(314278,42483,'blocks_17_split_5050_content',''),(314279,42483,'_blocks_17_split_5050_content','field_61767afceb8ba'),(314280,42483,'blocks_18_acfe_flexible_toggle',''),(314281,42483,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(314282,42483,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(314283,42483,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(314284,42483,'blocks_18_options_theme','#ffffff'),(314285,42483,'_blocks_18_options_theme','field_6176830e2ad17'),(314286,42483,'blocks_18_options',''),(314287,42483,'_blocks_18_options','field_6176830e2ad16'),(314288,42483,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(314289,42483,'_blocks_18_text_block_heading','field_617669d413097'),(314290,42483,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by poor posture, prolonged sitting, or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement and posture-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(314291,42483,'_blocks_18_text_block_content','field_617669ec13098'),(314292,42483,'blocks_21_acfe_flexible_toggle',''),(314293,42483,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(314294,42483,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(314295,42483,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(314296,42483,'blocks_21_options_alignment','center'),(314297,42483,'_blocks_21_options_alignment','field_61769449f5490'),(314298,42483,'blocks_21_options',''),(314299,42483,'_blocks_21_options','field_617693e1428f0'),(314300,42483,'blocks_21_promo_panel_image','40342'),(314301,42483,'_blocks_21_promo_panel_image','field_617693e1428f3'),(314302,42483,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(314303,42483,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(314304,42483,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(314305,42483,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(314306,42483,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(314307,42483,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(314308,42483,'blocks_21_promo_panel_content_actions','1'),(314309,42483,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(314310,42483,'blocks_21_promo_panel_content',''),(314311,42483,'_blocks_21_promo_panel_content','field_617693e1428f4'),(314312,42484,'_menu_item_type','post_type'),(314313,42484,'_menu_item_menu_item_parent','0'),(314314,42484,'_menu_item_object_id','39497'),(314315,42484,'_menu_item_object','page'),(314316,42484,'_menu_item_target',''),(314317,42484,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(314318,42484,'_menu_item_xfn',''),(314319,42484,'_menu_item_url',''),(314321,42484,'menu_item_card_image',''),(314322,42484,'_menu_item_card_image','field_618cf50fb8716'),(314323,42484,'menu_item_card_title',''),(314324,42484,'_menu_item_card_title','field_618cf51cb8717'),(314325,42484,'menu_item_card_text',''),(314326,42484,'_menu_item_card_text','field_618cf521b8718'),(314327,42484,'menu_item_card_link',''),(314328,42484,'_menu_item_card_link','field_618cf52eb8719'),(314329,42484,'menu_item_card',''),(314330,42484,'_menu_item_card','field_618cf506b8715'),(314331,39278,'_wp_old_date','2025-01-28'),(314332,40906,'_wp_old_date','2025-01-28'),(314333,40858,'_wp_old_date','2025-01-28'),(314334,41573,'_wp_old_date','2025-01-28'),(314335,41574,'_wp_old_date','2025-01-28'),(314336,41576,'_wp_old_date','2025-01-28'),(314337,41575,'_wp_old_date','2025-01-28'),(314338,39348,'_wp_old_date','2025-01-28'),(314339,39486,'_wp_old_date','2025-01-28'),(314340,39485,'_wp_old_date','2025-01-28'),(314341,39487,'_wp_old_date','2025-01-28'),(314342,39279,'_wp_old_date','2025-01-28'),(314343,39325,'_wp_old_date','2025-01-28'),(314344,39324,'_wp_old_date','2025-01-28'),(314345,39323,'_wp_old_date','2025-01-28'),(314346,39322,'_wp_old_date','2025-01-28'),(314347,39321,'_wp_old_date','2025-01-28'),(314348,39320,'_wp_old_date','2025-01-28'),(314349,39319,'_wp_old_date','2025-01-28'),(314350,39281,'_wp_old_date','2025-01-28'),(314351,39344,'_wp_old_date','2025-01-28'),(314352,39318,'_wp_old_date','2025-01-28'),(314353,39522,'_wp_old_date','2025-01-28'),(314354,41605,'_wp_old_date','2025-01-28'),(314355,41286,'_wp_old_date','2025-01-28'),(314356,39280,'_wp_old_date','2025-01-28'),(314922,42505,'hide_hero','0'),(314923,42505,'_hide_hero','field_66a2380fcda39'),(314924,42505,'hero_title',''),(314925,42505,'_hero_title','field_617571fe285e8'),(314926,42505,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(314927,42505,'_hero_text','field_6175723c285e9'),(314928,42505,'hero_actions',''),(314929,42505,'_hero_actions','field_61757270285ea'),(314930,42505,'hero_style','default'),(314931,42505,'_hero_style','field_62051d9dc5324'),(314932,42505,'hero_image_pos_x','right'),(314933,42505,'_hero_image_pos_x','field_62ec3d05390bb'),(314934,42505,'hero_image_pos_y','top'),(314935,42505,'_hero_image_pos_y','field_62ec3d05390bc'),(314936,42505,'hero_image_pos',''),(314937,42505,'_hero_image_pos','field_62ec3d05390ba'),(314938,42505,'fft_hide_from_listings','1'),(314939,42505,'_fft_hide_from_listings','field_61f1320446ab2'),(314940,42505,'post_format','402'),(314941,42505,'_post_format','field_61756bfb51898'),(314942,42505,'post_author',''),(314943,42505,'_post_author','field_62ec389d22113'),(314944,42505,'post_reviewer',''),(314945,42505,'_post_reviewer','field_627140a2a9800'),(314946,42505,'post_table_of_contents','0'),(314947,42505,'_post_table_of_contents','field_65c503bc846a6'),(314948,42505,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(314949,42505,'_blocks','field_6176696113096'),(314950,42505,'_thumbnail_id','41331'),(314951,42505,'__thumbnail_id','field_617570855ddaf'),(314952,42505,'blocks_0_acfe_flexible_toggle',''),(314953,42505,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(314954,42505,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(314955,42505,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(314956,42505,'blocks_0_options_theme','#ffffff'),(314957,42505,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(314958,42505,'blocks_0_options',''),(314959,42505,'_blocks_0_options','field_6177b758246ae'),(314960,42505,'blocks_0_link_stack_content_title',''),(314961,42505,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(314962,42505,'blocks_0_link_stack_content_heading','What is MSK?'),(314963,42505,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(314964,42505,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(314965,42505,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(314966,42505,'blocks_0_link_stack_content_actions_0_button',''),(314967,42505,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(314968,42505,'blocks_0_link_stack_content_actions','1'),(314969,42505,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(314970,42505,'blocks_0_link_stack_content',''),(314971,42505,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(314972,42505,'blocks_0_link_stack_0_label','1.'),(314973,42505,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(314974,42505,'blocks_0_link_stack_0_title','Overview'),(314975,42505,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(314976,42505,'blocks_0_link_stack_0_url','#overview'),(314977,42505,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(314978,42505,'blocks_0_link_stack_1_label','2.'),(314979,42505,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(314980,42505,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(314981,42505,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(314982,42505,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(314983,42505,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(314984,42505,'blocks_0_link_stack_2_label','3.'),(314985,42505,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(314986,42505,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(314987,42505,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(314988,42505,'blocks_0_link_stack_2_url','#who-should-study-msk'),(314989,42505,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(314990,42505,'blocks_0_link_stack_3_label','4.'),(314991,42505,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(314992,42505,'blocks_0_link_stack_3_title','Common MSK Conditions'),(314993,42505,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(314994,42505,'blocks_0_link_stack_3_url','#common-msk-conditions'),(314995,42505,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(314996,42505,'blocks_0_link_stack_4_label','5.'),(314997,42505,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(314998,42505,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(314999,42505,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(315000,42505,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(315001,42505,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(315002,42505,'blocks_0_link_stack_5_label','6.'),(315003,42505,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(315004,42505,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(315005,42505,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(315006,42505,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(315007,42505,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(315008,42505,'blocks_0_link_stack','6'),(315009,42505,'_blocks_0_link_stack','field_6177b7f600cff'),(315010,42505,'blocks_1_acfe_flexible_toggle',''),(315011,42505,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315012,42505,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(315013,42505,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315014,42505,'blocks_1_options_theme','#ffffff'),(315015,42505,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(315016,42505,'blocks_1_options_reverse','0'),(315017,42505,'_blocks_1_options_reverse','field_61768049bb8ac'),(315018,42505,'blocks_1_options',''),(315019,42505,'_blocks_1_options','field_617682517c334'),(315020,42505,'blocks_1_split_5050_image','40615'),(315021,42505,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(315022,42505,'blocks_1_split_5050_video',''),(315023,42505,'_blocks_1_split_5050_video','field_6239f3160848a'),(315024,42505,'blocks_1_split_5050_content_title',''),(315025,42505,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(315026,42505,'blocks_1_split_5050_content_heading','Overview'),(315027,42505,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(315028,42505,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(315029,42505,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(315030,42505,'blocks_1_split_5050_content_actions',''),(315031,42505,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(315032,42505,'blocks_1_split_5050_content',''),(315033,42505,'_blocks_1_split_5050_content','field_61767afceb8ba'),(315034,42505,'blocks_3_acfe_flexible_toggle','1'),(315035,42505,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315036,42505,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(315037,42505,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315038,42505,'blocks_3_options_theme','#f5f5f5'),(315039,42505,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(315040,42505,'blocks_3_options_reverse','1'),(315041,42505,'_blocks_3_options_reverse','field_61768049bb8ac'),(315042,42505,'blocks_3_options',''),(315043,42505,'_blocks_3_options','field_617682517c334'),(315044,42505,'blocks_3_split_5050_image','41330'),(315045,42505,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(315046,42505,'blocks_3_split_5050_video',''),(315047,42505,'_blocks_3_split_5050_video','field_6239f3160848a'),(315048,42505,'blocks_3_split_5050_content_title',''),(315049,42505,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(315050,42505,'blocks_3_split_5050_content_heading',''),(315051,42505,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(315052,42505,'blocks_3_split_5050_content_text',''),(315053,42505,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(315054,42505,'blocks_3_split_5050_content_actions',''),(315055,42505,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(315056,42505,'blocks_3_split_5050_content',''),(315057,42505,'_blocks_3_split_5050_content','field_61767afceb8ba'),(315058,42505,'blocks_7_acfe_flexible_toggle',''),(315059,42505,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315060,42505,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(315061,42505,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315062,42505,'blocks_7_options_theme','#ffffff'),(315063,42505,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(315064,42505,'blocks_7_options_reverse','0'),(315065,42505,'_blocks_7_options_reverse','field_61768049bb8ac'),(315066,42505,'blocks_7_options',''),(315067,42505,'_blocks_7_options','field_617682517c334'),(315068,42505,'blocks_7_split_5050_image','41539'),(315069,42505,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(315070,42505,'blocks_7_split_5050_video',''),(315071,42505,'_blocks_7_split_5050_video','field_6239f3160848a'),(315072,42505,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(315073,42505,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(315074,42505,'blocks_7_split_5050_content_heading',''),(315075,42505,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(315076,42505,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(315077,42505,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(315078,42505,'blocks_7_split_5050_content_actions',''),(315079,42505,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(315080,42505,'blocks_7_split_5050_content',''),(315081,42505,'_blocks_7_split_5050_content','field_61767afceb8ba'),(315082,42505,'blocks_8_acfe_flexible_toggle',''),(315083,42505,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315084,42505,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(315085,42505,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315086,42505,'blocks_8_options_theme','#ffffff'),(315087,42505,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(315088,42505,'blocks_8_options_reverse','0'),(315089,42505,'_blocks_8_options_reverse','field_61768049bb8ac'),(315090,42505,'blocks_8_options',''),(315091,42505,'_blocks_8_options','field_617682517c334'),(315092,42505,'blocks_8_split_5050_image','41502'),(315093,42505,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(315094,42505,'blocks_8_split_5050_video',''),(315095,42505,'_blocks_8_split_5050_video','field_6239f3160848a'),(315096,42505,'blocks_8_split_5050_content_title','Educators and Researchers'),(315097,42505,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(315098,42505,'blocks_8_split_5050_content_heading',''),(315099,42505,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(315100,42505,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(315101,42505,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(315102,42505,'blocks_8_split_5050_content_actions',''),(315103,42505,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(315104,42505,'blocks_8_split_5050_content',''),(315105,42505,'_blocks_8_split_5050_content','field_61767afceb8ba'),(315106,42505,'blocks_9_acfe_flexible_toggle',''),(315107,42505,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315108,42505,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(315109,42505,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315110,42505,'blocks_9_options_theme','#ffffff'),(315111,42505,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(315112,42505,'blocks_9_options_reverse','0'),(315113,42505,'_blocks_9_options_reverse','field_61768049bb8ac'),(315114,42505,'blocks_9_options',''),(315115,42505,'_blocks_9_options','field_617682517c334'),(315116,42505,'blocks_9_split_5050_image','41506'),(315117,42505,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(315118,42505,'blocks_9_split_5050_video',''),(315119,42505,'_blocks_9_split_5050_video','field_6239f3160848a'),(315120,42505,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(315121,42505,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(315122,42505,'blocks_9_split_5050_content_heading',''),(315123,42505,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(315124,42505,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(315125,42505,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(315126,42505,'blocks_9_split_5050_content_actions',''),(315127,42505,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(315128,42505,'blocks_9_split_5050_content',''),(315129,42505,'_blocks_9_split_5050_content','field_61767afceb8ba'),(315130,42505,'blocks_13_acfe_flexible_toggle',''),(315131,42505,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315132,42505,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(315133,42505,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315134,42505,'blocks_13_options_theme','#ffffff'),(315135,42505,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(315136,42505,'blocks_13_options_reverse','1'),(315137,42505,'_blocks_13_options_reverse','field_61768049bb8ac'),(315138,42505,'blocks_13_options',''),(315139,42505,'_blocks_13_options','field_617682517c334'),(315140,42505,'blocks_13_split_5050_image','40387'),(315141,42505,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(315142,42505,'blocks_13_split_5050_video',''),(315143,42505,'_blocks_13_split_5050_video','field_6239f3160848a'),(315144,42505,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(315145,42505,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(315146,42505,'blocks_13_split_5050_content_heading',''),(315147,42505,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(315148,42505,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(315149,42505,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(315150,42505,'blocks_13_split_5050_content_actions',''),(315151,42505,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(315152,42505,'blocks_13_split_5050_content',''),(315153,42505,'_blocks_13_split_5050_content','field_61767afceb8ba'),(315154,42505,'blocks_14_acfe_flexible_toggle',''),(315155,42505,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315156,42505,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(315157,42505,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315158,42505,'blocks_14_options_theme','#ffffff'),(315159,42505,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(315160,42505,'blocks_14_options_reverse','1'),(315161,42505,'_blocks_14_options_reverse','field_61768049bb8ac'),(315162,42505,'blocks_14_options',''),(315163,42505,'_blocks_14_options','field_617682517c334'),(315164,42505,'blocks_14_split_5050_image','18856'),(315165,42505,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(315166,42505,'blocks_14_split_5050_video',''),(315167,42505,'_blocks_14_split_5050_video','field_6239f3160848a'),(315168,42505,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(315169,42505,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(315170,42505,'blocks_14_split_5050_content_heading',''),(315171,42505,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(315172,42505,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(315173,42505,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(315174,42505,'blocks_14_split_5050_content_actions',''),(315175,42505,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(315176,42505,'blocks_14_split_5050_content',''),(315177,42505,'_blocks_14_split_5050_content','field_61767afceb8ba'),(315178,42505,'blocks_19_acfe_flexible_toggle',''),(315179,42505,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(315180,42505,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(315181,42505,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(315182,42505,'blocks_19_options_theme','#ffffff'),(315183,42505,'_blocks_19_options_theme','field_6176830e2ad17'),(315184,42505,'blocks_19_options',''),(315185,42505,'_blocks_19_options','field_6176830e2ad16'),(315186,42505,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(315187,42505,'_blocks_19_text_block_heading','field_617669d413097'),(315188,42505,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(315189,42505,'_blocks_19_text_block_content','field_617669ec13098'),(315190,42505,'blocks_20_acfe_flexible_toggle',''),(315191,42505,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(315192,42505,'blocks_20_acfe_flexible_layout_title','Conclusion'),(315193,42505,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(315194,42505,'blocks_20_options_theme','#b61234'),(315195,42505,'_blocks_20_options_theme','field_6176830e2ad17'),(315196,42505,'blocks_20_options',''),(315197,42505,'_blocks_20_options','field_6176830e2ad16'),(315198,42505,'blocks_20_text_block_heading','Conclusion'),(315199,42505,'_blocks_20_text_block_heading','field_617669d413097'),(315200,42505,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(315201,42505,'_blocks_20_text_block_content','field_617669ec13098'),(315202,42505,'blocks_6_acfe_flexible_toggle',''),(315203,42505,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315204,42505,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(315205,42505,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315206,42505,'blocks_6_options_theme','#ffffff'),(315207,42505,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(315208,42505,'blocks_6_options_reverse','0'),(315209,42505,'_blocks_6_options_reverse','field_61768049bb8ac'),(315210,42505,'blocks_6_options',''),(315211,42505,'_blocks_6_options','field_617682517c334'),(315212,42505,'blocks_6_split_5050_image','41505'),(315213,42505,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(315214,42505,'blocks_6_split_5050_video',''),(315215,42505,'_blocks_6_split_5050_video','field_6239f3160848a'),(315216,42505,'blocks_6_split_5050_content_title','Current Practitioners'),(315217,42505,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(315218,42505,'blocks_6_split_5050_content_heading',''),(315219,42505,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(315220,42505,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(315221,42505,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(315222,42505,'blocks_6_split_5050_content_actions',''),(315223,42505,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(315224,42505,'blocks_6_split_5050_content',''),(315225,42505,'_blocks_6_split_5050_content','field_61767afceb8ba'),(315226,42505,'blocks_2_acfe_flexible_toggle',''),(315227,42505,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315228,42505,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(315229,42505,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315230,42505,'blocks_2_options_theme','#f5f5f5'),(315231,42505,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(315232,42505,'blocks_2_options_reverse','1'),(315233,42505,'_blocks_2_options_reverse','field_61768049bb8ac'),(315234,42505,'blocks_2_options',''),(315235,42505,'_blocks_2_options','field_617682517c334'),(315236,42505,'blocks_2_split_5050_image','40618'),(315237,42505,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(315238,42505,'blocks_2_split_5050_video',''),(315239,42505,'_blocks_2_split_5050_video','field_6239f3160848a'),(315240,42505,'blocks_2_split_5050_content_title',''),(315241,42505,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(315242,42505,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(315243,42505,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(315244,42505,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(315245,42505,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(315246,42505,'blocks_2_split_5050_content_actions',''),(315247,42505,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(315248,42505,'blocks_2_split_5050_content',''),(315249,42505,'_blocks_2_split_5050_content','field_61767afceb8ba'),(315250,42505,'blocks_4_acfe_flexible_toggle',''),(315251,42505,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(315252,42505,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(315253,42505,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(315254,42505,'blocks_4_options_theme','#ffffff'),(315255,42505,'_blocks_4_options_theme','field_6176830e2ad17'),(315256,42505,'blocks_4_options',''),(315257,42505,'_blocks_4_options','field_6176830e2ad16'),(315258,42505,'blocks_4_text_block_heading','Who Should Study MSK?'),(315259,42505,'_blocks_4_text_block_heading','field_617669d413097'),(315260,42505,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(315261,42505,'_blocks_4_text_block_content','field_617669ec13098'),(315262,42505,'blocks_5_acfe_flexible_toggle',''),(315263,42505,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315264,42505,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(315265,42505,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315266,42505,'blocks_5_options_theme','#ffffff'),(315267,42505,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(315268,42505,'blocks_5_options_reverse','0'),(315269,42505,'_blocks_5_options_reverse','field_61768049bb8ac'),(315270,42505,'blocks_5_options',''),(315271,42505,'_blocks_5_options','field_617682517c334'),(315272,42505,'blocks_5_split_5050_image','41542'),(315273,42505,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(315274,42505,'blocks_5_split_5050_video',''),(315275,42505,'_blocks_5_split_5050_video','field_6239f3160848a'),(315276,42505,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(315277,42505,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(315278,42505,'blocks_5_split_5050_content_heading',''),(315279,42505,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(315280,42505,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(315281,42505,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(315282,42505,'blocks_5_split_5050_content_actions',''),(315283,42505,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(315284,42505,'blocks_5_split_5050_content',''),(315285,42505,'_blocks_5_split_5050_content','field_61767afceb8ba'),(315286,42505,'blocks_10_acfe_flexible_toggle',''),(315287,42505,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(315288,42505,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(315289,42505,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(315290,42505,'blocks_10_options_theme','#f5f5f5'),(315291,42505,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(315292,42505,'blocks_10_options_state','0'),(315293,42505,'_blocks_10_options_state','field_6239fcb7508c5'),(315294,42505,'blocks_10_options',''),(315295,42505,'_blocks_10_options','field_6177e2991ac44'),(315296,42505,'blocks_10_content_title',''),(315297,42505,'_blocks_10_content_title','field_64d237e8bb1e2'),(315298,42505,'blocks_10_content_heading','Common MSK Conditions'),(315299,42505,'_blocks_10_content_heading','field_64d237e8bb1e3'),(315300,42505,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(315301,42505,'_blocks_10_content_text','field_64d237e8bb1e4'),(315302,42505,'blocks_10_content_actions',''),(315303,42505,'_blocks_10_content_actions','field_64d237e8bb1e5'),(315304,42505,'blocks_10_content_align','left'),(315305,42505,'_blocks_10_content_align','field_64d2443e6b6aa'),(315306,42505,'blocks_10_content',''),(315307,42505,'_blocks_10_content','field_64d237e8bb1e1'),(315308,42505,'blocks_10_accordion_content','custom'),(315309,42505,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(315310,42505,'blocks_10_accordion_items_0_title','Osteoarthritis'),(315311,42505,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(315312,42505,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(315313,42505,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(315314,42505,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(315315,42505,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(315316,42505,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(315317,42505,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(315318,42505,'blocks_10_accordion_items_2_title','Back Pain'),(315319,42505,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(315320,42505,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by muscle imbalances or prolonged inactivity.'),(315321,42505,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(315322,42505,'blocks_10_accordion_items_3_title','Osteoporosis'),(315323,42505,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(315324,42505,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(315325,42505,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(315326,42505,'blocks_10_accordion_items_4_title','Tendinitis'),(315327,42505,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(315328,42505,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(315329,42505,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(315330,42505,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(315331,42505,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(315332,42505,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(315333,42505,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(315334,42505,'blocks_10_accordion_items_6_title','Fibromyalgia'),(315335,42505,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(315336,42505,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(315337,42505,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(315338,42505,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(315339,42505,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(315340,42505,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(315341,42505,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(315342,42505,'blocks_10_accordion_items','8'),(315343,42505,'_blocks_10_accordion_items','field_6177e2991ac4c'),(315344,42505,'blocks_10_actions',''),(315345,42505,'_blocks_10_actions','field_61a746a817f7a'),(315346,42505,'blocks_11_acfe_flexible_toggle',''),(315347,42505,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(315348,42505,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(315349,42505,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(315350,42505,'blocks_11_options_theme','#ffffff'),(315351,42505,'_blocks_11_options_theme','field_6176830e2ad17'),(315352,42505,'blocks_11_options',''),(315353,42505,'_blocks_11_options','field_6176830e2ad16'),(315354,42505,'blocks_11_text_block_heading','The Importance of MSK Education'),(315355,42505,'_blocks_11_text_block_heading','field_617669d413097'),(315356,42505,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(315357,42505,'_blocks_11_text_block_content','field_617669ec13098'),(315358,42505,'blocks_12_acfe_flexible_toggle',''),(315359,42505,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315360,42505,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(315361,42505,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315362,42505,'blocks_12_options_theme','#ffffff'),(315363,42505,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(315364,42505,'blocks_12_options_reverse','1'),(315365,42505,'_blocks_12_options_reverse','field_61768049bb8ac'),(315366,42505,'blocks_12_options',''),(315367,42505,'_blocks_12_options','field_617682517c334'),(315368,42505,'blocks_12_split_5050_image','41498'),(315369,42505,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(315370,42505,'blocks_12_split_5050_video',''),(315371,42505,'_blocks_12_split_5050_video','field_6239f3160848a'),(315372,42505,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(315373,42505,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(315374,42505,'blocks_12_split_5050_content_heading',''),(315375,42505,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(315376,42505,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(315377,42505,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(315378,42505,'blocks_12_split_5050_content_actions',''),(315379,42505,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(315380,42505,'blocks_12_split_5050_content',''),(315381,42505,'_blocks_12_split_5050_content','field_61767afceb8ba'),(315382,42505,'blocks_15_acfe_flexible_toggle',''),(315383,42505,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(315384,42505,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(315385,42505,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(315386,42505,'blocks_15_options_theme','#b61234'),(315387,42505,'_blocks_15_options_theme','field_6176830e2ad17'),(315388,42505,'blocks_15_options',''),(315389,42505,'_blocks_15_options','field_6176830e2ad16'),(315390,42505,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(315391,42505,'_blocks_15_text_block_heading','field_617669d413097'),(315392,42505,'blocks_15_text_block_content',''),(315393,42505,'_blocks_15_text_block_content','field_617669ec13098'),(315394,42505,'blocks_16_acfe_flexible_toggle',''),(315395,42505,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(315396,42505,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(315397,42505,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(315398,42505,'blocks_16_options_theme','#b61234'),(315399,42505,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(315400,42505,'blocks_16_options_format','row'),(315401,42505,'_blocks_16_options_format','field_64bfde9a90690'),(315402,42505,'blocks_16_options',''),(315403,42505,'_blocks_16_options','field_64bfdd9b90684'),(315404,42505,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(315405,42505,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(315406,42505,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(315407,42505,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(315408,42505,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(315409,42505,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(315410,42505,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(315411,42505,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(315412,42505,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(315413,42505,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(315414,42505,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(315415,42505,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(315416,42505,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(315417,42505,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(315418,42505,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(315419,42505,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(315420,42505,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(315421,42505,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(315422,42505,'blocks_16_icon_row_items_3_icon','recognised.svg'),(315423,42505,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(315424,42505,'blocks_16_icon_row_items_3_label','Optimised Performance'),(315425,42505,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(315426,42505,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(315427,42505,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(315428,42505,'blocks_16_icon_row_items','4'),(315429,42505,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(315430,42505,'blocks_17_acfe_flexible_toggle',''),(315431,42505,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315432,42505,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(315433,42505,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315434,42505,'blocks_17_options_theme','#ffffff'),(315435,42505,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(315436,42505,'blocks_17_options_reverse','0'),(315437,42505,'_blocks_17_options_reverse','field_61768049bb8ac'),(315438,42505,'blocks_17_options',''),(315439,42505,'_blocks_17_options','field_617682517c334'),(315440,42505,'blocks_17_split_5050_image','41501'),(315441,42505,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(315442,42505,'blocks_17_split_5050_video',''),(315443,42505,'_blocks_17_split_5050_video','field_6239f3160848a'),(315444,42505,'blocks_17_split_5050_content_title',''),(315445,42505,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(315446,42505,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(315447,42505,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(315448,42505,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(315449,42505,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(315450,42505,'blocks_17_split_5050_content_actions',''),(315451,42505,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(315452,42505,'blocks_17_split_5050_content',''),(315453,42505,'_blocks_17_split_5050_content','field_61767afceb8ba'),(315454,42505,'blocks_18_acfe_flexible_toggle',''),(315455,42505,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(315456,42505,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(315457,42505,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(315458,42505,'blocks_18_options_theme','#ffffff'),(315459,42505,'_blocks_18_options_theme','field_6176830e2ad17'),(315460,42505,'blocks_18_options',''),(315461,42505,'_blocks_18_options','field_6176830e2ad16'),(315462,42505,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(315463,42505,'_blocks_18_text_block_heading','field_617669d413097'),(315464,42505,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(315465,42505,'_blocks_18_text_block_content','field_617669ec13098'),(315466,42505,'blocks_21_acfe_flexible_toggle',''),(315467,42505,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(315468,42505,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(315469,42505,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(315470,42505,'blocks_21_options_alignment','center'),(315471,42505,'_blocks_21_options_alignment','field_61769449f5490'),(315472,42505,'blocks_21_options',''),(315473,42505,'_blocks_21_options','field_617693e1428f0'),(315474,42505,'blocks_21_promo_panel_image','40342'),(315475,42505,'_blocks_21_promo_panel_image','field_617693e1428f3'),(315476,42505,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(315477,42505,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(315478,42505,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(315479,42505,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(315480,42505,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(315481,42505,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(315482,42505,'blocks_21_promo_panel_content_actions','1'),(315483,42505,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(315484,42505,'blocks_21_promo_panel_content',''),(315485,42505,'_blocks_21_promo_panel_content','field_617693e1428f4'),(315486,42506,'hide_hero','0'),(315487,42506,'_hide_hero','field_66a2380fcda39'),(315488,42506,'hero_title',''),(315489,42506,'_hero_title','field_617571fe285e8'),(315490,42506,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(315491,42506,'_hero_text','field_6175723c285e9'),(315492,42506,'hero_actions',''),(315493,42506,'_hero_actions','field_61757270285ea'),(315494,42506,'hero_style','default'),(315495,42506,'_hero_style','field_62051d9dc5324'),(315496,42506,'_thumbnail_id','40618'),(315497,42506,'__thumbnail_id','field_617570855ddaf'),(315498,42506,'hero_image_pos_x','right'),(315499,42506,'_hero_image_pos_x','field_62ec3d05390bb'),(315500,42506,'hero_image_pos_y','top'),(315501,42506,'_hero_image_pos_y','field_62ec3d05390bc'),(315502,42506,'hero_image_pos',''),(315503,42506,'_hero_image_pos','field_62ec3d05390ba'),(315504,42506,'fft_hide_from_listings','0'),(315505,42506,'_fft_hide_from_listings','field_61f1320446ab2'),(315506,42506,'post_format','402'),(315507,42506,'_post_format','field_61756bfb51898'),(315508,42506,'post_author',''),(315509,42506,'_post_author','field_62ec389d22113'),(315510,42506,'post_reviewer',''),(315511,42506,'_post_reviewer','field_627140a2a9800'),(315512,42506,'post_table_of_contents','1'),(315513,42506,'_post_table_of_contents','field_65c503bc846a6'),(315514,42506,'blocks_0_acfe_flexible_toggle',''),(315515,42506,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(315516,42506,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(315517,42506,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(315518,42506,'blocks_0_options_theme','#ffffff'),(315519,42506,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(315520,42506,'blocks_0_options',''),(315521,42506,'_blocks_0_options','field_6177b758246ae'),(315522,42506,'blocks_0_link_stack_content_title',''),(315523,42506,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(315524,42506,'blocks_0_link_stack_content_heading','What is MSK?'),(315525,42506,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(315526,42506,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(315527,42506,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(315528,42506,'blocks_0_link_stack_content_actions_0_button',''),(315529,42506,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(315530,42506,'blocks_0_link_stack_content_actions','1'),(315531,42506,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(315532,42506,'blocks_0_link_stack_content',''),(315533,42506,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(315534,42506,'blocks_0_link_stack_0_label','1.'),(315535,42506,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(315536,42506,'blocks_0_link_stack_0_title','Overview'),(315537,42506,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(315538,42506,'blocks_0_link_stack_0_url','#overview'),(315539,42506,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(315540,42506,'blocks_0_link_stack_1_label','2.'),(315541,42506,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(315542,42506,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(315543,42506,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(315544,42506,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(315545,42506,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(315546,42506,'blocks_0_link_stack_2_label','3.'),(315547,42506,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(315548,42506,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(315549,42506,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(315550,42506,'blocks_0_link_stack_2_url','#who-should-study-msk'),(315551,42506,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(315552,42506,'blocks_0_link_stack_3_label','4.'),(315553,42506,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(315554,42506,'blocks_0_link_stack_3_title','Common MSK Conditions'),(315555,42506,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(315556,42506,'blocks_0_link_stack_3_url','#common-msk-conditions'),(315557,42506,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(315558,42506,'blocks_0_link_stack_4_label','5.'),(315559,42506,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(315560,42506,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(315561,42506,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(315562,42506,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(315563,42506,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(315564,42506,'blocks_0_link_stack_5_label','6.'),(315565,42506,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(315566,42506,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(315567,42506,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(315568,42506,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(315569,42506,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(315570,42506,'blocks_0_link_stack','6'),(315571,42506,'_blocks_0_link_stack','field_6177b7f600cff'),(315572,42506,'blocks_1_acfe_flexible_toggle',''),(315573,42506,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315574,42506,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(315575,42506,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315576,42506,'blocks_1_options_theme','#ffffff'),(315577,42506,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(315578,42506,'blocks_1_options_reverse','0'),(315579,42506,'_blocks_1_options_reverse','field_61768049bb8ac'),(315580,42506,'blocks_1_options',''),(315581,42506,'_blocks_1_options','field_617682517c334'),(315582,42506,'blocks_1_split_5050_image','40615'),(315583,42506,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(315584,42506,'blocks_1_split_5050_video',''),(315585,42506,'_blocks_1_split_5050_video','field_6239f3160848a'),(315586,42506,'blocks_1_split_5050_content_title',''),(315587,42506,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(315588,42506,'blocks_1_split_5050_content_heading','Overview'),(315589,42506,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(315590,42506,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(315591,42506,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(315592,42506,'blocks_1_split_5050_content_actions',''),(315593,42506,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(315594,42506,'blocks_1_split_5050_content',''),(315595,42506,'_blocks_1_split_5050_content','field_61767afceb8ba'),(315596,42506,'blocks_2_acfe_flexible_toggle',''),(315597,42506,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315598,42506,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(315599,42506,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315600,42506,'blocks_2_options_theme','#f5f5f5'),(315601,42506,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(315602,42506,'blocks_2_options_reverse','1'),(315603,42506,'_blocks_2_options_reverse','field_61768049bb8ac'),(315604,42506,'blocks_2_options',''),(315605,42506,'_blocks_2_options','field_617682517c334'),(315606,42506,'blocks_2_split_5050_image','41307'),(315607,42506,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(315608,42506,'blocks_2_split_5050_video',''),(315609,42506,'_blocks_2_split_5050_video','field_6239f3160848a'),(315610,42506,'blocks_2_split_5050_content_title',''),(315611,42506,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(315612,42506,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(315613,42506,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(315614,42506,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(315615,42506,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(315616,42506,'blocks_2_split_5050_content_actions',''),(315617,42506,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(315618,42506,'blocks_2_split_5050_content',''),(315619,42506,'_blocks_2_split_5050_content','field_61767afceb8ba'),(315620,42506,'blocks_3_acfe_flexible_toggle','1'),(315621,42506,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315622,42506,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(315623,42506,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315624,42506,'blocks_3_options_theme','#f5f5f5'),(315625,42506,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(315626,42506,'blocks_3_options_reverse','1'),(315627,42506,'_blocks_3_options_reverse','field_61768049bb8ac'),(315628,42506,'blocks_3_options',''),(315629,42506,'_blocks_3_options','field_617682517c334'),(315630,42506,'blocks_3_split_5050_image','41330'),(315631,42506,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(315632,42506,'blocks_3_split_5050_video',''),(315633,42506,'_blocks_3_split_5050_video','field_6239f3160848a'),(315634,42506,'blocks_3_split_5050_content_title',''),(315635,42506,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(315636,42506,'blocks_3_split_5050_content_heading',''),(315637,42506,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(315638,42506,'blocks_3_split_5050_content_text',''),(315639,42506,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(315640,42506,'blocks_3_split_5050_content_actions',''),(315641,42506,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(315642,42506,'blocks_3_split_5050_content',''),(315643,42506,'_blocks_3_split_5050_content','field_61767afceb8ba'),(315644,42506,'blocks_4_acfe_flexible_toggle',''),(315645,42506,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(315646,42506,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(315647,42506,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(315648,42506,'blocks_4_options_theme','#ffffff'),(315649,42506,'_blocks_4_options_theme','field_6176830e2ad17'),(315650,42506,'blocks_4_options',''),(315651,42506,'_blocks_4_options','field_6176830e2ad16'),(315652,42506,'blocks_4_text_block_heading','Who Should Study MSK?'),(315653,42506,'_blocks_4_text_block_heading','field_617669d413097'),(315654,42506,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(315655,42506,'_blocks_4_text_block_content','field_617669ec13098'),(315656,42506,'blocks_5_acfe_flexible_toggle',''),(315657,42506,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315658,42506,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(315659,42506,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315660,42506,'blocks_5_options_theme','#ffffff'),(315661,42506,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(315662,42506,'blocks_5_options_reverse','0'),(315663,42506,'_blocks_5_options_reverse','field_61768049bb8ac'),(315664,42506,'blocks_5_options',''),(315665,42506,'_blocks_5_options','field_617682517c334'),(315666,42506,'blocks_5_split_5050_image','41542'),(315667,42506,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(315668,42506,'blocks_5_split_5050_video',''),(315669,42506,'_blocks_5_split_5050_video','field_6239f3160848a'),(315670,42506,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(315671,42506,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(315672,42506,'blocks_5_split_5050_content_heading',''),(315673,42506,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(315674,42506,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(315675,42506,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(315676,42506,'blocks_5_split_5050_content_actions',''),(315677,42506,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(315678,42506,'blocks_5_split_5050_content',''),(315679,42506,'_blocks_5_split_5050_content','field_61767afceb8ba'),(315680,42506,'blocks_6_acfe_flexible_toggle',''),(315681,42506,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315682,42506,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(315683,42506,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315684,42506,'blocks_6_options_theme','#ffffff'),(315685,42506,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(315686,42506,'blocks_6_options_reverse','0'),(315687,42506,'_blocks_6_options_reverse','field_61768049bb8ac'),(315688,42506,'blocks_6_options',''),(315689,42506,'_blocks_6_options','field_617682517c334'),(315690,42506,'blocks_6_split_5050_image','41505'),(315691,42506,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(315692,42506,'blocks_6_split_5050_video',''),(315693,42506,'_blocks_6_split_5050_video','field_6239f3160848a'),(315694,42506,'blocks_6_split_5050_content_title','Current Practitioners'),(315695,42506,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(315696,42506,'blocks_6_split_5050_content_heading',''),(315697,42506,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(315698,42506,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(315699,42506,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(315700,42506,'blocks_6_split_5050_content_actions',''),(315701,42506,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(315702,42506,'blocks_6_split_5050_content',''),(315703,42506,'_blocks_6_split_5050_content','field_61767afceb8ba'),(315704,42506,'blocks_7_acfe_flexible_toggle',''),(315705,42506,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315706,42506,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(315707,42506,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315708,42506,'blocks_7_options_theme','#ffffff'),(315709,42506,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(315710,42506,'blocks_7_options_reverse','0'),(315711,42506,'_blocks_7_options_reverse','field_61768049bb8ac'),(315712,42506,'blocks_7_options',''),(315713,42506,'_blocks_7_options','field_617682517c334'),(315714,42506,'blocks_7_split_5050_image','41539'),(315715,42506,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(315716,42506,'blocks_7_split_5050_video',''),(315717,42506,'_blocks_7_split_5050_video','field_6239f3160848a'),(315718,42506,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(315719,42506,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(315720,42506,'blocks_7_split_5050_content_heading',''),(315721,42506,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(315722,42506,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(315723,42506,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(315724,42506,'blocks_7_split_5050_content_actions',''),(315725,42506,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(315726,42506,'blocks_7_split_5050_content',''),(315727,42506,'_blocks_7_split_5050_content','field_61767afceb8ba'),(315728,42506,'blocks_8_acfe_flexible_toggle',''),(315729,42506,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315730,42506,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(315731,42506,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315732,42506,'blocks_8_options_theme','#ffffff'),(315733,42506,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(315734,42506,'blocks_8_options_reverse','0'),(315735,42506,'_blocks_8_options_reverse','field_61768049bb8ac'),(315736,42506,'blocks_8_options',''),(315737,42506,'_blocks_8_options','field_617682517c334'),(315738,42506,'blocks_8_split_5050_image','41502'),(315739,42506,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(315740,42506,'blocks_8_split_5050_video',''),(315741,42506,'_blocks_8_split_5050_video','field_6239f3160848a'),(315742,42506,'blocks_8_split_5050_content_title','Educators and Researchers'),(315743,42506,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(315744,42506,'blocks_8_split_5050_content_heading',''),(315745,42506,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(315746,42506,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(315747,42506,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(315748,42506,'blocks_8_split_5050_content_actions',''),(315749,42506,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(315750,42506,'blocks_8_split_5050_content',''),(315751,42506,'_blocks_8_split_5050_content','field_61767afceb8ba'),(315752,42506,'blocks_9_acfe_flexible_toggle',''),(315753,42506,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315754,42506,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(315755,42506,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315756,42506,'blocks_9_options_theme','#ffffff'),(315757,42506,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(315758,42506,'blocks_9_options_reverse','0'),(315759,42506,'_blocks_9_options_reverse','field_61768049bb8ac'),(315760,42506,'blocks_9_options',''),(315761,42506,'_blocks_9_options','field_617682517c334'),(315762,42506,'blocks_9_split_5050_image','41506'),(315763,42506,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(315764,42506,'blocks_9_split_5050_video',''),(315765,42506,'_blocks_9_split_5050_video','field_6239f3160848a'),(315766,42506,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(315767,42506,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(315768,42506,'blocks_9_split_5050_content_heading',''),(315769,42506,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(315770,42506,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(315771,42506,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(315772,42506,'blocks_9_split_5050_content_actions',''),(315773,42506,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(315774,42506,'blocks_9_split_5050_content',''),(315775,42506,'_blocks_9_split_5050_content','field_61767afceb8ba'),(315776,42506,'blocks_10_acfe_flexible_toggle',''),(315777,42506,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(315778,42506,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(315779,42506,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(315780,42506,'blocks_10_options_theme','#f5f5f5'),(315781,42506,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(315782,42506,'blocks_10_options_state','0'),(315783,42506,'_blocks_10_options_state','field_6239fcb7508c5'),(315784,42506,'blocks_10_options',''),(315785,42506,'_blocks_10_options','field_6177e2991ac44'),(315786,42506,'blocks_10_content_title',''),(315787,42506,'_blocks_10_content_title','field_64d237e8bb1e2'),(315788,42506,'blocks_10_content_heading','Common MSK Conditions'),(315789,42506,'_blocks_10_content_heading','field_64d237e8bb1e3'),(315790,42506,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(315791,42506,'_blocks_10_content_text','field_64d237e8bb1e4'),(315792,42506,'blocks_10_content_actions',''),(315793,42506,'_blocks_10_content_actions','field_64d237e8bb1e5'),(315794,42506,'blocks_10_content_align','left'),(315795,42506,'_blocks_10_content_align','field_64d2443e6b6aa'),(315796,42506,'blocks_10_content',''),(315797,42506,'_blocks_10_content','field_64d237e8bb1e1'),(315798,42506,'blocks_10_accordion_content','custom'),(315799,42506,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(315800,42506,'blocks_10_accordion_items_0_title','Osteoarthritis'),(315801,42506,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(315802,42506,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(315803,42506,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(315804,42506,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(315805,42506,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(315806,42506,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(315807,42506,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(315808,42506,'blocks_10_accordion_items_2_title','Back Pain'),(315809,42506,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(315810,42506,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by muscle imbalances or prolonged inactivity.'),(315811,42506,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(315812,42506,'blocks_10_accordion_items_3_title','Osteoporosis'),(315813,42506,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(315814,42506,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(315815,42506,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(315816,42506,'blocks_10_accordion_items_4_title','Tendinitis'),(315817,42506,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(315818,42506,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(315819,42506,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(315820,42506,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(315821,42506,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(315822,42506,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(315823,42506,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(315824,42506,'blocks_10_accordion_items_6_title','Fibromyalgia'),(315825,42506,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(315826,42506,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(315827,42506,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(315828,42506,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(315829,42506,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(315830,42506,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(315831,42506,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(315832,42506,'blocks_10_accordion_items','8'),(315833,42506,'_blocks_10_accordion_items','field_6177e2991ac4c'),(315834,42506,'blocks_10_actions',''),(315835,42506,'_blocks_10_actions','field_61a746a817f7a'),(315836,42506,'blocks_11_acfe_flexible_toggle',''),(315837,42506,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(315838,42506,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(315839,42506,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(315840,42506,'blocks_11_options_theme','#ffffff'),(315841,42506,'_blocks_11_options_theme','field_6176830e2ad17'),(315842,42506,'blocks_11_options',''),(315843,42506,'_blocks_11_options','field_6176830e2ad16'),(315844,42506,'blocks_11_text_block_heading','The Importance of MSK Education'),(315845,42506,'_blocks_11_text_block_heading','field_617669d413097'),(315846,42506,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(315847,42506,'_blocks_11_text_block_content','field_617669ec13098'),(315848,42506,'blocks_12_acfe_flexible_toggle',''),(315849,42506,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315850,42506,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(315851,42506,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315852,42506,'blocks_12_options_theme','#ffffff'),(315853,42506,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(315854,42506,'blocks_12_options_reverse','1'),(315855,42506,'_blocks_12_options_reverse','field_61768049bb8ac'),(315856,42506,'blocks_12_options',''),(315857,42506,'_blocks_12_options','field_617682517c334'),(315858,42506,'blocks_12_split_5050_image','41498'),(315859,42506,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(315860,42506,'blocks_12_split_5050_video',''),(315861,42506,'_blocks_12_split_5050_video','field_6239f3160848a'),(315862,42506,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(315863,42506,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(315864,42506,'blocks_12_split_5050_content_heading',''),(315865,42506,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(315866,42506,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(315867,42506,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(315868,42506,'blocks_12_split_5050_content_actions',''),(315869,42506,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(315870,42506,'blocks_12_split_5050_content',''),(315871,42506,'_blocks_12_split_5050_content','field_61767afceb8ba'),(315872,42506,'blocks_13_acfe_flexible_toggle',''),(315873,42506,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315874,42506,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(315875,42506,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315876,42506,'blocks_13_options_theme','#ffffff'),(315877,42506,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(315878,42506,'blocks_13_options_reverse','1'),(315879,42506,'_blocks_13_options_reverse','field_61768049bb8ac'),(315880,42506,'blocks_13_options',''),(315881,42506,'_blocks_13_options','field_617682517c334'),(315882,42506,'blocks_13_split_5050_image','40387'),(315883,42506,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(315884,42506,'blocks_13_split_5050_video',''),(315885,42506,'_blocks_13_split_5050_video','field_6239f3160848a'),(315886,42506,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(315887,42506,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(315888,42506,'blocks_13_split_5050_content_heading',''),(315889,42506,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(315890,42506,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(315891,42506,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(315892,42506,'blocks_13_split_5050_content_actions',''),(315893,42506,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(315894,42506,'blocks_13_split_5050_content',''),(315895,42506,'_blocks_13_split_5050_content','field_61767afceb8ba'),(315896,42506,'blocks_14_acfe_flexible_toggle',''),(315897,42506,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315898,42506,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(315899,42506,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315900,42506,'blocks_14_options_theme','#ffffff'),(315901,42506,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(315902,42506,'blocks_14_options_reverse','1'),(315903,42506,'_blocks_14_options_reverse','field_61768049bb8ac'),(315904,42506,'blocks_14_options',''),(315905,42506,'_blocks_14_options','field_617682517c334'),(315906,42506,'blocks_14_split_5050_image','18856'),(315907,42506,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(315908,42506,'blocks_14_split_5050_video',''),(315909,42506,'_blocks_14_split_5050_video','field_6239f3160848a'),(315910,42506,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(315911,42506,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(315912,42506,'blocks_14_split_5050_content_heading',''),(315913,42506,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(315914,42506,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(315915,42506,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(315916,42506,'blocks_14_split_5050_content_actions',''),(315917,42506,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(315918,42506,'blocks_14_split_5050_content',''),(315919,42506,'_blocks_14_split_5050_content','field_61767afceb8ba'),(315920,42506,'blocks_15_acfe_flexible_toggle',''),(315921,42506,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(315922,42506,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(315923,42506,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(315924,42506,'blocks_15_options_theme','#b61234'),(315925,42506,'_blocks_15_options_theme','field_6176830e2ad17'),(315926,42506,'blocks_15_options',''),(315927,42506,'_blocks_15_options','field_6176830e2ad16'),(315928,42506,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(315929,42506,'_blocks_15_text_block_heading','field_617669d413097'),(315930,42506,'blocks_15_text_block_content',''),(315931,42506,'_blocks_15_text_block_content','field_617669ec13098'),(315932,42506,'blocks_16_acfe_flexible_toggle',''),(315933,42506,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(315934,42506,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(315935,42506,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(315936,42506,'blocks_16_options_theme','#b61234'),(315937,42506,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(315938,42506,'blocks_16_options_format','row'),(315939,42506,'_blocks_16_options_format','field_64bfde9a90690'),(315940,42506,'blocks_16_options',''),(315941,42506,'_blocks_16_options','field_64bfdd9b90684'),(315942,42506,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(315943,42506,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(315944,42506,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(315945,42506,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(315946,42506,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(315947,42506,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(315948,42506,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(315949,42506,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(315950,42506,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(315951,42506,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(315952,42506,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(315953,42506,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(315954,42506,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(315955,42506,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(315956,42506,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(315957,42506,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(315958,42506,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(315959,42506,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(315960,42506,'blocks_16_icon_row_items_3_icon','recognised.svg'),(315961,42506,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(315962,42506,'blocks_16_icon_row_items_3_label','Optimised Performance'),(315963,42506,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(315964,42506,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(315965,42506,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(315966,42506,'blocks_16_icon_row_items','4'),(315967,42506,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(315968,42506,'blocks_17_acfe_flexible_toggle',''),(315969,42506,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(315970,42506,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(315971,42506,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(315972,42506,'blocks_17_options_theme','#ffffff'),(315973,42506,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(315974,42506,'blocks_17_options_reverse','0'),(315975,42506,'_blocks_17_options_reverse','field_61768049bb8ac'),(315976,42506,'blocks_17_options',''),(315977,42506,'_blocks_17_options','field_617682517c334'),(315978,42506,'blocks_17_split_5050_image','41501'),(315979,42506,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(315980,42506,'blocks_17_split_5050_video',''),(315981,42506,'_blocks_17_split_5050_video','field_6239f3160848a'),(315982,42506,'blocks_17_split_5050_content_title',''),(315983,42506,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(315984,42506,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(315985,42506,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(315986,42506,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(315987,42506,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(315988,42506,'blocks_17_split_5050_content_actions',''),(315989,42506,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(315990,42506,'blocks_17_split_5050_content',''),(315991,42506,'_blocks_17_split_5050_content','field_61767afceb8ba'),(315992,42506,'blocks_18_acfe_flexible_toggle',''),(315993,42506,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(315994,42506,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(315995,42506,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(315996,42506,'blocks_18_options_theme','#ffffff'),(315997,42506,'_blocks_18_options_theme','field_6176830e2ad17'),(315998,42506,'blocks_18_options',''),(315999,42506,'_blocks_18_options','field_6176830e2ad16'),(316000,42506,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(316001,42506,'_blocks_18_text_block_heading','field_617669d413097'),(316002,42506,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(316003,42506,'_blocks_18_text_block_content','field_617669ec13098'),(316004,42506,'blocks_19_acfe_flexible_toggle',''),(316005,42506,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(316006,42506,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(316007,42506,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(316008,42506,'blocks_19_options_theme','#ffffff'),(316009,42506,'_blocks_19_options_theme','field_6176830e2ad17'),(316010,42506,'blocks_19_options',''),(316011,42506,'_blocks_19_options','field_6176830e2ad16'),(316012,42506,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(316013,42506,'_blocks_19_text_block_heading','field_617669d413097'),(316014,42506,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(316015,42506,'_blocks_19_text_block_content','field_617669ec13098'),(316016,42506,'blocks_20_acfe_flexible_toggle',''),(316017,42506,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(316018,42506,'blocks_20_acfe_flexible_layout_title','Conclusion'),(316019,42506,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(316020,42506,'blocks_20_options_theme','#b61234'),(316021,42506,'_blocks_20_options_theme','field_6176830e2ad17'),(316022,42506,'blocks_20_options',''),(316023,42506,'_blocks_20_options','field_6176830e2ad16'),(316024,42506,'blocks_20_text_block_heading','Conclusion'),(316025,42506,'_blocks_20_text_block_heading','field_617669d413097'),(316026,42506,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(316027,42506,'_blocks_20_text_block_content','field_617669ec13098'),(316028,42506,'blocks_21_acfe_flexible_toggle',''),(316029,42506,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(316030,42506,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(316031,42506,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(316032,42506,'blocks_21_options_alignment','center'),(316033,42506,'_blocks_21_options_alignment','field_61769449f5490'),(316034,42506,'blocks_21_options',''),(316035,42506,'_blocks_21_options','field_617693e1428f0'),(316036,42506,'blocks_21_promo_panel_image','41307'),(316037,42506,'_blocks_21_promo_panel_image','field_617693e1428f3'),(316038,42506,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(316039,42506,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(316040,42506,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(316041,42506,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(316042,42506,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(316043,42506,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(316044,42506,'blocks_21_promo_panel_content_actions','1'),(316045,42506,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(316046,42506,'blocks_21_promo_panel_content',''),(316047,42506,'_blocks_21_promo_panel_content','field_617693e1428f4'),(316048,42506,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(316049,42506,'_blocks','field_6176696113096'),(316052,42507,'hide_hero','0'),(316053,42507,'_hide_hero','field_66a2380fcda39'),(316054,42507,'hero_title',''),(316055,42507,'_hero_title','field_617571fe285e8'),(316056,42507,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(316057,42507,'_hero_text','field_6175723c285e9'),(316058,42507,'hero_actions',''),(316059,42507,'_hero_actions','field_61757270285ea'),(316060,42507,'hero_style','default'),(316061,42507,'_hero_style','field_62051d9dc5324'),(316062,42507,'hero_image_pos_x','right'),(316063,42507,'_hero_image_pos_x','field_62ec3d05390bb'),(316064,42507,'hero_image_pos_y','top'),(316065,42507,'_hero_image_pos_y','field_62ec3d05390bc'),(316066,42507,'hero_image_pos',''),(316067,42507,'_hero_image_pos','field_62ec3d05390ba'),(316068,42507,'fft_hide_from_listings','1'),(316069,42507,'_fft_hide_from_listings','field_61f1320446ab2'),(316070,42507,'post_format','402'),(316071,42507,'_post_format','field_61756bfb51898'),(316072,42507,'post_author',''),(316073,42507,'_post_author','field_62ec389d22113'),(316074,42507,'post_reviewer',''),(316075,42507,'_post_reviewer','field_627140a2a9800'),(316076,42507,'post_table_of_contents','0'),(316077,42507,'_post_table_of_contents','field_65c503bc846a6'),(316078,42507,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(316079,42507,'_blocks','field_6176696113096'),(316080,42507,'_thumbnail_id','41331'),(316081,42507,'__thumbnail_id','field_617570855ddaf'),(316082,42507,'blocks_0_acfe_flexible_toggle',''),(316083,42507,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(316084,42507,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(316085,42507,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(316086,42507,'blocks_0_options_theme','#ffffff'),(316087,42507,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(316088,42507,'blocks_0_options',''),(316089,42507,'_blocks_0_options','field_6177b758246ae'),(316090,42507,'blocks_0_link_stack_content_title',''),(316091,42507,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(316092,42507,'blocks_0_link_stack_content_heading','What is MSK?'),(316093,42507,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(316094,42507,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(316095,42507,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(316096,42507,'blocks_0_link_stack_content_actions_0_button',''),(316097,42507,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(316098,42507,'blocks_0_link_stack_content_actions','1'),(316099,42507,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(316100,42507,'blocks_0_link_stack_content',''),(316101,42507,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(316102,42507,'blocks_0_link_stack_0_label','1.'),(316103,42507,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(316104,42507,'blocks_0_link_stack_0_title','Overview'),(316105,42507,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(316106,42507,'blocks_0_link_stack_0_url','#overview'),(316107,42507,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(316108,42507,'blocks_0_link_stack_1_label','2.'),(316109,42507,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(316110,42507,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(316111,42507,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(316112,42507,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(316113,42507,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(316114,42507,'blocks_0_link_stack_2_label','3.'),(316115,42507,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(316116,42507,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(316117,42507,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(316118,42507,'blocks_0_link_stack_2_url','#who-should-study-msk'),(316119,42507,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(316120,42507,'blocks_0_link_stack_3_label','4.'),(316121,42507,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(316122,42507,'blocks_0_link_stack_3_title','Common MSK Conditions'),(316123,42507,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(316124,42507,'blocks_0_link_stack_3_url','#common-msk-conditions'),(316125,42507,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(316126,42507,'blocks_0_link_stack_4_label','5.'),(316127,42507,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(316128,42507,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(316129,42507,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(316130,42507,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(316131,42507,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(316132,42507,'blocks_0_link_stack_5_label','6.'),(316133,42507,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(316134,42507,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(316135,42507,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(316136,42507,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(316137,42507,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(316138,42507,'blocks_0_link_stack','6'),(316139,42507,'_blocks_0_link_stack','field_6177b7f600cff'),(316140,42507,'blocks_1_acfe_flexible_toggle',''),(316141,42507,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316142,42507,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(316143,42507,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316144,42507,'blocks_1_options_theme','#ffffff'),(316145,42507,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(316146,42507,'blocks_1_options_reverse','0'),(316147,42507,'_blocks_1_options_reverse','field_61768049bb8ac'),(316148,42507,'blocks_1_options',''),(316149,42507,'_blocks_1_options','field_617682517c334'),(316150,42507,'blocks_1_split_5050_image','40615'),(316151,42507,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(316152,42507,'blocks_1_split_5050_video',''),(316153,42507,'_blocks_1_split_5050_video','field_6239f3160848a'),(316154,42507,'blocks_1_split_5050_content_title',''),(316155,42507,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(316156,42507,'blocks_1_split_5050_content_heading','Overview'),(316157,42507,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(316158,42507,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(316159,42507,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(316160,42507,'blocks_1_split_5050_content_actions',''),(316161,42507,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(316162,42507,'blocks_1_split_5050_content',''),(316163,42507,'_blocks_1_split_5050_content','field_61767afceb8ba'),(316164,42507,'blocks_3_acfe_flexible_toggle','1'),(316165,42507,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316166,42507,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(316167,42507,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316168,42507,'blocks_3_options_theme','#f5f5f5'),(316169,42507,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(316170,42507,'blocks_3_options_reverse','1'),(316171,42507,'_blocks_3_options_reverse','field_61768049bb8ac'),(316172,42507,'blocks_3_options',''),(316173,42507,'_blocks_3_options','field_617682517c334'),(316174,42507,'blocks_3_split_5050_image','41330'),(316175,42507,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(316176,42507,'blocks_3_split_5050_video',''),(316177,42507,'_blocks_3_split_5050_video','field_6239f3160848a'),(316178,42507,'blocks_3_split_5050_content_title',''),(316179,42507,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(316180,42507,'blocks_3_split_5050_content_heading',''),(316181,42507,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(316182,42507,'blocks_3_split_5050_content_text',''),(316183,42507,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(316184,42507,'blocks_3_split_5050_content_actions',''),(316185,42507,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(316186,42507,'blocks_3_split_5050_content',''),(316187,42507,'_blocks_3_split_5050_content','field_61767afceb8ba'),(316188,42507,'blocks_7_acfe_flexible_toggle',''),(316189,42507,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316190,42507,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(316191,42507,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316192,42507,'blocks_7_options_theme','#ffffff'),(316193,42507,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(316194,42507,'blocks_7_options_reverse','0'),(316195,42507,'_blocks_7_options_reverse','field_61768049bb8ac'),(316196,42507,'blocks_7_options',''),(316197,42507,'_blocks_7_options','field_617682517c334'),(316198,42507,'blocks_7_split_5050_image','41539'),(316199,42507,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(316200,42507,'blocks_7_split_5050_video',''),(316201,42507,'_blocks_7_split_5050_video','field_6239f3160848a'),(316202,42507,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(316203,42507,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(316204,42507,'blocks_7_split_5050_content_heading',''),(316205,42507,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(316206,42507,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(316207,42507,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(316208,42507,'blocks_7_split_5050_content_actions',''),(316209,42507,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(316210,42507,'blocks_7_split_5050_content',''),(316211,42507,'_blocks_7_split_5050_content','field_61767afceb8ba'),(316212,42507,'blocks_8_acfe_flexible_toggle',''),(316213,42507,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316214,42507,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(316215,42507,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316216,42507,'blocks_8_options_theme','#ffffff'),(316217,42507,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(316218,42507,'blocks_8_options_reverse','0'),(316219,42507,'_blocks_8_options_reverse','field_61768049bb8ac'),(316220,42507,'blocks_8_options',''),(316221,42507,'_blocks_8_options','field_617682517c334'),(316222,42507,'blocks_8_split_5050_image','41502'),(316223,42507,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(316224,42507,'blocks_8_split_5050_video',''),(316225,42507,'_blocks_8_split_5050_video','field_6239f3160848a'),(316226,42507,'blocks_8_split_5050_content_title','Educators and Researchers'),(316227,42507,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(316228,42507,'blocks_8_split_5050_content_heading',''),(316229,42507,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(316230,42507,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(316231,42507,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(316232,42507,'blocks_8_split_5050_content_actions',''),(316233,42507,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(316234,42507,'blocks_8_split_5050_content',''),(316235,42507,'_blocks_8_split_5050_content','field_61767afceb8ba'),(316236,42507,'blocks_9_acfe_flexible_toggle',''),(316237,42507,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316238,42507,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(316239,42507,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316240,42507,'blocks_9_options_theme','#ffffff'),(316241,42507,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(316242,42507,'blocks_9_options_reverse','0'),(316243,42507,'_blocks_9_options_reverse','field_61768049bb8ac'),(316244,42507,'blocks_9_options',''),(316245,42507,'_blocks_9_options','field_617682517c334'),(316246,42507,'blocks_9_split_5050_image','41506'),(316247,42507,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(316248,42507,'blocks_9_split_5050_video',''),(316249,42507,'_blocks_9_split_5050_video','field_6239f3160848a'),(316250,42507,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(316251,42507,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(316252,42507,'blocks_9_split_5050_content_heading',''),(316253,42507,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(316254,42507,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(316255,42507,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(316256,42507,'blocks_9_split_5050_content_actions',''),(316257,42507,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(316258,42507,'blocks_9_split_5050_content',''),(316259,42507,'_blocks_9_split_5050_content','field_61767afceb8ba'),(316260,42507,'blocks_13_acfe_flexible_toggle',''),(316261,42507,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316262,42507,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(316263,42507,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316264,42507,'blocks_13_options_theme','#ffffff'),(316265,42507,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(316266,42507,'blocks_13_options_reverse','1'),(316267,42507,'_blocks_13_options_reverse','field_61768049bb8ac'),(316268,42507,'blocks_13_options',''),(316269,42507,'_blocks_13_options','field_617682517c334'),(316270,42507,'blocks_13_split_5050_image','40387'),(316271,42507,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(316272,42507,'blocks_13_split_5050_video',''),(316273,42507,'_blocks_13_split_5050_video','field_6239f3160848a'),(316274,42507,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(316275,42507,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(316276,42507,'blocks_13_split_5050_content_heading',''),(316277,42507,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(316278,42507,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(316279,42507,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(316280,42507,'blocks_13_split_5050_content_actions',''),(316281,42507,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(316282,42507,'blocks_13_split_5050_content',''),(316283,42507,'_blocks_13_split_5050_content','field_61767afceb8ba'),(316284,42507,'blocks_14_acfe_flexible_toggle',''),(316285,42507,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316286,42507,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(316287,42507,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316288,42507,'blocks_14_options_theme','#ffffff'),(316289,42507,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(316290,42507,'blocks_14_options_reverse','1'),(316291,42507,'_blocks_14_options_reverse','field_61768049bb8ac'),(316292,42507,'blocks_14_options',''),(316293,42507,'_blocks_14_options','field_617682517c334'),(316294,42507,'blocks_14_split_5050_image','18856'),(316295,42507,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(316296,42507,'blocks_14_split_5050_video',''),(316297,42507,'_blocks_14_split_5050_video','field_6239f3160848a'),(316298,42507,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(316299,42507,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(316300,42507,'blocks_14_split_5050_content_heading',''),(316301,42507,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(316302,42507,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(316303,42507,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(316304,42507,'blocks_14_split_5050_content_actions',''),(316305,42507,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(316306,42507,'blocks_14_split_5050_content',''),(316307,42507,'_blocks_14_split_5050_content','field_61767afceb8ba'),(316308,42507,'blocks_19_acfe_flexible_toggle',''),(316309,42507,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(316310,42507,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(316311,42507,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(316312,42507,'blocks_19_options_theme','#ffffff'),(316313,42507,'_blocks_19_options_theme','field_6176830e2ad17'),(316314,42507,'blocks_19_options',''),(316315,42507,'_blocks_19_options','field_6176830e2ad16'),(316316,42507,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(316317,42507,'_blocks_19_text_block_heading','field_617669d413097'),(316318,42507,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(316319,42507,'_blocks_19_text_block_content','field_617669ec13098'),(316320,42507,'blocks_20_acfe_flexible_toggle',''),(316321,42507,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(316322,42507,'blocks_20_acfe_flexible_layout_title','Conclusion'),(316323,42507,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(316324,42507,'blocks_20_options_theme','#b61234'),(316325,42507,'_blocks_20_options_theme','field_6176830e2ad17'),(316326,42507,'blocks_20_options',''),(316327,42507,'_blocks_20_options','field_6176830e2ad16'),(316328,42507,'blocks_20_text_block_heading','Conclusion'),(316329,42507,'_blocks_20_text_block_heading','field_617669d413097'),(316330,42507,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(316331,42507,'_blocks_20_text_block_content','field_617669ec13098'),(316332,42507,'blocks_6_acfe_flexible_toggle',''),(316333,42507,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316334,42507,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(316335,42507,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316336,42507,'blocks_6_options_theme','#ffffff'),(316337,42507,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(316338,42507,'blocks_6_options_reverse','0'),(316339,42507,'_blocks_6_options_reverse','field_61768049bb8ac'),(316340,42507,'blocks_6_options',''),(316341,42507,'_blocks_6_options','field_617682517c334'),(316342,42507,'blocks_6_split_5050_image','41505'),(316343,42507,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(316344,42507,'blocks_6_split_5050_video',''),(316345,42507,'_blocks_6_split_5050_video','field_6239f3160848a'),(316346,42507,'blocks_6_split_5050_content_title','Current Practitioners'),(316347,42507,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(316348,42507,'blocks_6_split_5050_content_heading',''),(316349,42507,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(316350,42507,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(316351,42507,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(316352,42507,'blocks_6_split_5050_content_actions',''),(316353,42507,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(316354,42507,'blocks_6_split_5050_content',''),(316355,42507,'_blocks_6_split_5050_content','field_61767afceb8ba'),(316356,42507,'blocks_2_acfe_flexible_toggle',''),(316357,42507,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316358,42507,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(316359,42507,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316360,42507,'blocks_2_options_theme','#f5f5f5'),(316361,42507,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(316362,42507,'blocks_2_options_reverse','1'),(316363,42507,'_blocks_2_options_reverse','field_61768049bb8ac'),(316364,42507,'blocks_2_options',''),(316365,42507,'_blocks_2_options','field_617682517c334'),(316366,42507,'blocks_2_split_5050_image','40618'),(316367,42507,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(316368,42507,'blocks_2_split_5050_video',''),(316369,42507,'_blocks_2_split_5050_video','field_6239f3160848a'),(316370,42507,'blocks_2_split_5050_content_title',''),(316371,42507,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(316372,42507,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(316373,42507,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(316374,42507,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(316375,42507,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(316376,42507,'blocks_2_split_5050_content_actions',''),(316377,42507,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(316378,42507,'blocks_2_split_5050_content',''),(316379,42507,'_blocks_2_split_5050_content','field_61767afceb8ba'),(316380,42507,'blocks_4_acfe_flexible_toggle',''),(316381,42507,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(316382,42507,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(316383,42507,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(316384,42507,'blocks_4_options_theme','#ffffff'),(316385,42507,'_blocks_4_options_theme','field_6176830e2ad17'),(316386,42507,'blocks_4_options',''),(316387,42507,'_blocks_4_options','field_6176830e2ad16'),(316388,42507,'blocks_4_text_block_heading','Who Should Study MSK?'),(316389,42507,'_blocks_4_text_block_heading','field_617669d413097'),(316390,42507,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(316391,42507,'_blocks_4_text_block_content','field_617669ec13098'),(316392,42507,'blocks_5_acfe_flexible_toggle',''),(316393,42507,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316394,42507,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(316395,42507,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316396,42507,'blocks_5_options_theme','#ffffff'),(316397,42507,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(316398,42507,'blocks_5_options_reverse','0'),(316399,42507,'_blocks_5_options_reverse','field_61768049bb8ac'),(316400,42507,'blocks_5_options',''),(316401,42507,'_blocks_5_options','field_617682517c334'),(316402,42507,'blocks_5_split_5050_image','41542'),(316403,42507,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(316404,42507,'blocks_5_split_5050_video',''),(316405,42507,'_blocks_5_split_5050_video','field_6239f3160848a'),(316406,42507,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(316407,42507,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(316408,42507,'blocks_5_split_5050_content_heading',''),(316409,42507,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(316410,42507,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(316411,42507,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(316412,42507,'blocks_5_split_5050_content_actions',''),(316413,42507,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(316414,42507,'blocks_5_split_5050_content',''),(316415,42507,'_blocks_5_split_5050_content','field_61767afceb8ba'),(316416,42507,'blocks_10_acfe_flexible_toggle',''),(316417,42507,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(316418,42507,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(316419,42507,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(316420,42507,'blocks_10_options_theme','#f5f5f5'),(316421,42507,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(316422,42507,'blocks_10_options_state','0'),(316423,42507,'_blocks_10_options_state','field_6239fcb7508c5'),(316424,42507,'blocks_10_options',''),(316425,42507,'_blocks_10_options','field_6177e2991ac44'),(316426,42507,'blocks_10_content_title',''),(316427,42507,'_blocks_10_content_title','field_64d237e8bb1e2'),(316428,42507,'blocks_10_content_heading','Common MSK Conditions'),(316429,42507,'_blocks_10_content_heading','field_64d237e8bb1e3'),(316430,42507,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(316431,42507,'_blocks_10_content_text','field_64d237e8bb1e4'),(316432,42507,'blocks_10_content_actions',''),(316433,42507,'_blocks_10_content_actions','field_64d237e8bb1e5'),(316434,42507,'blocks_10_content_align','left'),(316435,42507,'_blocks_10_content_align','field_64d2443e6b6aa'),(316436,42507,'blocks_10_content',''),(316437,42507,'_blocks_10_content','field_64d237e8bb1e1'),(316438,42507,'blocks_10_accordion_content','custom'),(316439,42507,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(316440,42507,'blocks_10_accordion_items_0_title','Osteoarthritis'),(316441,42507,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(316442,42507,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(316443,42507,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(316444,42507,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(316445,42507,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(316446,42507,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(316447,42507,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(316448,42507,'blocks_10_accordion_items_2_title','Back Pain'),(316449,42507,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(316450,42507,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by muscle imbalances or prolonged inactivity.'),(316451,42507,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(316452,42507,'blocks_10_accordion_items_3_title','Osteoporosis'),(316453,42507,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(316454,42507,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(316455,42507,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(316456,42507,'blocks_10_accordion_items_4_title','Tendinitis'),(316457,42507,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(316458,42507,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(316459,42507,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(316460,42507,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(316461,42507,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(316462,42507,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(316463,42507,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(316464,42507,'blocks_10_accordion_items_6_title','Fibromyalgia'),(316465,42507,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(316466,42507,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(316467,42507,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(316468,42507,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(316469,42507,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(316470,42507,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(316471,42507,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(316472,42507,'blocks_10_accordion_items','8'),(316473,42507,'_blocks_10_accordion_items','field_6177e2991ac4c'),(316474,42507,'blocks_10_actions',''),(316475,42507,'_blocks_10_actions','field_61a746a817f7a'),(316476,42507,'blocks_11_acfe_flexible_toggle',''),(316477,42507,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(316478,42507,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(316479,42507,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(316480,42507,'blocks_11_options_theme','#ffffff'),(316481,42507,'_blocks_11_options_theme','field_6176830e2ad17'),(316482,42507,'blocks_11_options',''),(316483,42507,'_blocks_11_options','field_6176830e2ad16'),(316484,42507,'blocks_11_text_block_heading','The Importance of MSK Education'),(316485,42507,'_blocks_11_text_block_heading','field_617669d413097'),(316486,42507,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(316487,42507,'_blocks_11_text_block_content','field_617669ec13098'),(316488,42507,'blocks_12_acfe_flexible_toggle',''),(316489,42507,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316490,42507,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(316491,42507,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316492,42507,'blocks_12_options_theme','#ffffff'),(316493,42507,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(316494,42507,'blocks_12_options_reverse','1'),(316495,42507,'_blocks_12_options_reverse','field_61768049bb8ac'),(316496,42507,'blocks_12_options',''),(316497,42507,'_blocks_12_options','field_617682517c334'),(316498,42507,'blocks_12_split_5050_image','41498'),(316499,42507,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(316500,42507,'blocks_12_split_5050_video',''),(316501,42507,'_blocks_12_split_5050_video','field_6239f3160848a'),(316502,42507,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(316503,42507,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(316504,42507,'blocks_12_split_5050_content_heading',''),(316505,42507,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(316506,42507,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(316507,42507,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(316508,42507,'blocks_12_split_5050_content_actions',''),(316509,42507,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(316510,42507,'blocks_12_split_5050_content',''),(316511,42507,'_blocks_12_split_5050_content','field_61767afceb8ba'),(316512,42507,'blocks_15_acfe_flexible_toggle',''),(316513,42507,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(316514,42507,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(316515,42507,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(316516,42507,'blocks_15_options_theme','#b61234'),(316517,42507,'_blocks_15_options_theme','field_6176830e2ad17'),(316518,42507,'blocks_15_options',''),(316519,42507,'_blocks_15_options','field_6176830e2ad16'),(316520,42507,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(316521,42507,'_blocks_15_text_block_heading','field_617669d413097'),(316522,42507,'blocks_15_text_block_content',''),(316523,42507,'_blocks_15_text_block_content','field_617669ec13098'),(316524,42507,'blocks_16_acfe_flexible_toggle',''),(316525,42507,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(316526,42507,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(316527,42507,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(316528,42507,'blocks_16_options_theme','#b61234'),(316529,42507,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(316530,42507,'blocks_16_options_format','row'),(316531,42507,'_blocks_16_options_format','field_64bfde9a90690'),(316532,42507,'blocks_16_options',''),(316533,42507,'_blocks_16_options','field_64bfdd9b90684'),(316534,42507,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(316535,42507,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(316536,42507,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(316537,42507,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(316538,42507,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(316539,42507,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(316540,42507,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(316541,42507,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(316542,42507,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(316543,42507,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(316544,42507,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(316545,42507,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(316546,42507,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(316547,42507,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(316548,42507,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(316549,42507,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(316550,42507,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(316551,42507,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(316552,42507,'blocks_16_icon_row_items_3_icon','recognised.svg'),(316553,42507,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(316554,42507,'blocks_16_icon_row_items_3_label','Optimised Performance'),(316555,42507,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(316556,42507,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(316557,42507,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(316558,42507,'blocks_16_icon_row_items','4'),(316559,42507,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(316560,42507,'blocks_17_acfe_flexible_toggle',''),(316561,42507,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316562,42507,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(316563,42507,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316564,42507,'blocks_17_options_theme','#ffffff'),(316565,42507,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(316566,42507,'blocks_17_options_reverse','0'),(316567,42507,'_blocks_17_options_reverse','field_61768049bb8ac'),(316568,42507,'blocks_17_options',''),(316569,42507,'_blocks_17_options','field_617682517c334'),(316570,42507,'blocks_17_split_5050_image','41501'),(316571,42507,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(316572,42507,'blocks_17_split_5050_video',''),(316573,42507,'_blocks_17_split_5050_video','field_6239f3160848a'),(316574,42507,'blocks_17_split_5050_content_title',''),(316575,42507,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(316576,42507,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(316577,42507,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(316578,42507,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(316579,42507,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(316580,42507,'blocks_17_split_5050_content_actions',''),(316581,42507,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(316582,42507,'blocks_17_split_5050_content',''),(316583,42507,'_blocks_17_split_5050_content','field_61767afceb8ba'),(316584,42507,'blocks_18_acfe_flexible_toggle',''),(316585,42507,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(316586,42507,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(316587,42507,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(316588,42507,'blocks_18_options_theme','#ffffff'),(316589,42507,'_blocks_18_options_theme','field_6176830e2ad17'),(316590,42507,'blocks_18_options',''),(316591,42507,'_blocks_18_options','field_6176830e2ad16'),(316592,42507,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(316593,42507,'_blocks_18_text_block_heading','field_617669d413097'),(316594,42507,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(316595,42507,'_blocks_18_text_block_content','field_617669ec13098'),(316596,42507,'blocks_21_acfe_flexible_toggle',''),(316597,42507,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(316598,42507,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(316599,42507,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(316600,42507,'blocks_21_options_alignment','center'),(316601,42507,'_blocks_21_options_alignment','field_61769449f5490'),(316602,42507,'blocks_21_options',''),(316603,42507,'_blocks_21_options','field_617693e1428f0'),(316604,42507,'blocks_21_promo_panel_image','41307'),(316605,42507,'_blocks_21_promo_panel_image','field_617693e1428f3'),(316606,42507,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(316607,42507,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(316608,42507,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(316609,42507,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(316610,42507,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(316611,42507,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(316612,42507,'blocks_21_promo_panel_content_actions','1'),(316613,42507,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(316614,42507,'blocks_21_promo_panel_content',''),(316615,42507,'_blocks_21_promo_panel_content','field_617693e1428f4'),(316616,42431,'_yoast_wpseo_title','Musculoskeletal (MSK) Courses Explained %%page%% %%sep%% %%sitename%%'),(316617,42431,'_yoast_wpseo_metadesc','Musculoskeletal (MSK) Courses and education provide new education opportunities for clinicians and fitness professionals.'),(316619,42431,'_wp_old_slug','msk-education-courses-explained'),(316620,42508,'hide_hero','0'),(316621,42508,'_hide_hero','field_66a2380fcda39'),(316622,42508,'hero_title',''),(316623,42508,'_hero_title','field_617571fe285e8'),(316624,42508,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(316625,42508,'_hero_text','field_6175723c285e9'),(316626,42508,'hero_actions',''),(316627,42508,'_hero_actions','field_61757270285ea'),(316628,42508,'hero_style','default'),(316629,42508,'_hero_style','field_62051d9dc5324'),(316630,42508,'hero_image_pos_x','right'),(316631,42508,'_hero_image_pos_x','field_62ec3d05390bb'),(316632,42508,'hero_image_pos_y','top'),(316633,42508,'_hero_image_pos_y','field_62ec3d05390bc'),(316634,42508,'hero_image_pos',''),(316635,42508,'_hero_image_pos','field_62ec3d05390ba'),(316636,42508,'fft_hide_from_listings','1'),(316637,42508,'_fft_hide_from_listings','field_61f1320446ab2'),(316638,42508,'post_format','402'),(316639,42508,'_post_format','field_61756bfb51898'),(316640,42508,'post_author',''),(316641,42508,'_post_author','field_62ec389d22113'),(316642,42508,'post_reviewer',''),(316643,42508,'_post_reviewer','field_627140a2a9800'),(316644,42508,'post_table_of_contents','0'),(316645,42508,'_post_table_of_contents','field_65c503bc846a6'),(316646,42508,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(316647,42508,'_blocks','field_6176696113096'),(316648,42508,'_thumbnail_id','41331'),(316649,42508,'__thumbnail_id','field_617570855ddaf'),(316650,42508,'blocks_0_acfe_flexible_toggle',''),(316651,42508,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(316652,42508,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(316653,42508,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(316654,42508,'blocks_0_options_theme','#ffffff'),(316655,42508,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(316656,42508,'blocks_0_options',''),(316657,42508,'_blocks_0_options','field_6177b758246ae'),(316658,42508,'blocks_0_link_stack_content_title',''),(316659,42508,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(316660,42508,'blocks_0_link_stack_content_heading','What is MSK?'),(316661,42508,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(316662,42508,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(316663,42508,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(316664,42508,'blocks_0_link_stack_content_actions_0_button',''),(316665,42508,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(316666,42508,'blocks_0_link_stack_content_actions','1'),(316667,42508,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(316668,42508,'blocks_0_link_stack_content',''),(316669,42508,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(316670,42508,'blocks_0_link_stack_0_label','1.'),(316671,42508,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(316672,42508,'blocks_0_link_stack_0_title','Overview'),(316673,42508,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(316674,42508,'blocks_0_link_stack_0_url','#overview'),(316675,42508,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(316676,42508,'blocks_0_link_stack_1_label','2.'),(316677,42508,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(316678,42508,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(316679,42508,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(316680,42508,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(316681,42508,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(316682,42508,'blocks_0_link_stack_2_label','3.'),(316683,42508,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(316684,42508,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(316685,42508,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(316686,42508,'blocks_0_link_stack_2_url','#who-should-study-msk'),(316687,42508,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(316688,42508,'blocks_0_link_stack_3_label','4.'),(316689,42508,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(316690,42508,'blocks_0_link_stack_3_title','Common MSK Conditions'),(316691,42508,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(316692,42508,'blocks_0_link_stack_3_url','#common-msk-conditions'),(316693,42508,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(316694,42508,'blocks_0_link_stack_4_label','5.'),(316695,42508,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(316696,42508,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(316697,42508,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(316698,42508,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(316699,42508,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(316700,42508,'blocks_0_link_stack_5_label','6.'),(316701,42508,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(316702,42508,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(316703,42508,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(316704,42508,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(316705,42508,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(316706,42508,'blocks_0_link_stack','6'),(316707,42508,'_blocks_0_link_stack','field_6177b7f600cff'),(316708,42508,'blocks_1_acfe_flexible_toggle',''),(316709,42508,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316710,42508,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(316711,42508,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316712,42508,'blocks_1_options_theme','#ffffff'),(316713,42508,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(316714,42508,'blocks_1_options_reverse','0'),(316715,42508,'_blocks_1_options_reverse','field_61768049bb8ac'),(316716,42508,'blocks_1_options',''),(316717,42508,'_blocks_1_options','field_617682517c334'),(316718,42508,'blocks_1_split_5050_image','40615'),(316719,42508,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(316720,42508,'blocks_1_split_5050_video',''),(316721,42508,'_blocks_1_split_5050_video','field_6239f3160848a'),(316722,42508,'blocks_1_split_5050_content_title',''),(316723,42508,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(316724,42508,'blocks_1_split_5050_content_heading','Overview'),(316725,42508,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(316726,42508,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(316727,42508,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(316728,42508,'blocks_1_split_5050_content_actions',''),(316729,42508,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(316730,42508,'blocks_1_split_5050_content',''),(316731,42508,'_blocks_1_split_5050_content','field_61767afceb8ba'),(316732,42508,'blocks_3_acfe_flexible_toggle','1'),(316733,42508,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316734,42508,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(316735,42508,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316736,42508,'blocks_3_options_theme','#f5f5f5'),(316737,42508,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(316738,42508,'blocks_3_options_reverse','1'),(316739,42508,'_blocks_3_options_reverse','field_61768049bb8ac'),(316740,42508,'blocks_3_options',''),(316741,42508,'_blocks_3_options','field_617682517c334'),(316742,42508,'blocks_3_split_5050_image','41330'),(316743,42508,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(316744,42508,'blocks_3_split_5050_video',''),(316745,42508,'_blocks_3_split_5050_video','field_6239f3160848a'),(316746,42508,'blocks_3_split_5050_content_title',''),(316747,42508,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(316748,42508,'blocks_3_split_5050_content_heading',''),(316749,42508,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(316750,42508,'blocks_3_split_5050_content_text',''),(316751,42508,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(316752,42508,'blocks_3_split_5050_content_actions',''),(316753,42508,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(316754,42508,'blocks_3_split_5050_content',''),(316755,42508,'_blocks_3_split_5050_content','field_61767afceb8ba'),(316756,42508,'blocks_7_acfe_flexible_toggle',''),(316757,42508,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316758,42508,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(316759,42508,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316760,42508,'blocks_7_options_theme','#ffffff'),(316761,42508,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(316762,42508,'blocks_7_options_reverse','0'),(316763,42508,'_blocks_7_options_reverse','field_61768049bb8ac'),(316764,42508,'blocks_7_options',''),(316765,42508,'_blocks_7_options','field_617682517c334'),(316766,42508,'blocks_7_split_5050_image','41539'),(316767,42508,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(316768,42508,'blocks_7_split_5050_video',''),(316769,42508,'_blocks_7_split_5050_video','field_6239f3160848a'),(316770,42508,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(316771,42508,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(316772,42508,'blocks_7_split_5050_content_heading',''),(316773,42508,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(316774,42508,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(316775,42508,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(316776,42508,'blocks_7_split_5050_content_actions',''),(316777,42508,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(316778,42508,'blocks_7_split_5050_content',''),(316779,42508,'_blocks_7_split_5050_content','field_61767afceb8ba'),(316780,42508,'blocks_8_acfe_flexible_toggle',''),(316781,42508,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316782,42508,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(316783,42508,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316784,42508,'blocks_8_options_theme','#ffffff'),(316785,42508,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(316786,42508,'blocks_8_options_reverse','0'),(316787,42508,'_blocks_8_options_reverse','field_61768049bb8ac'),(316788,42508,'blocks_8_options',''),(316789,42508,'_blocks_8_options','field_617682517c334'),(316790,42508,'blocks_8_split_5050_image','41502'),(316791,42508,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(316792,42508,'blocks_8_split_5050_video',''),(316793,42508,'_blocks_8_split_5050_video','field_6239f3160848a'),(316794,42508,'blocks_8_split_5050_content_title','Educators and Researchers'),(316795,42508,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(316796,42508,'blocks_8_split_5050_content_heading',''),(316797,42508,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(316798,42508,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(316799,42508,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(316800,42508,'blocks_8_split_5050_content_actions',''),(316801,42508,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(316802,42508,'blocks_8_split_5050_content',''),(316803,42508,'_blocks_8_split_5050_content','field_61767afceb8ba'),(316804,42508,'blocks_9_acfe_flexible_toggle',''),(316805,42508,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316806,42508,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(316807,42508,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316808,42508,'blocks_9_options_theme','#ffffff'),(316809,42508,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(316810,42508,'blocks_9_options_reverse','0'),(316811,42508,'_blocks_9_options_reverse','field_61768049bb8ac'),(316812,42508,'blocks_9_options',''),(316813,42508,'_blocks_9_options','field_617682517c334'),(316814,42508,'blocks_9_split_5050_image','41506'),(316815,42508,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(316816,42508,'blocks_9_split_5050_video',''),(316817,42508,'_blocks_9_split_5050_video','field_6239f3160848a'),(316818,42508,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(316819,42508,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(316820,42508,'blocks_9_split_5050_content_heading',''),(316821,42508,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(316822,42508,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(316823,42508,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(316824,42508,'blocks_9_split_5050_content_actions',''),(316825,42508,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(316826,42508,'blocks_9_split_5050_content',''),(316827,42508,'_blocks_9_split_5050_content','field_61767afceb8ba'),(316828,42508,'blocks_13_acfe_flexible_toggle',''),(316829,42508,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316830,42508,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(316831,42508,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316832,42508,'blocks_13_options_theme','#ffffff'),(316833,42508,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(316834,42508,'blocks_13_options_reverse','1'),(316835,42508,'_blocks_13_options_reverse','field_61768049bb8ac'),(316836,42508,'blocks_13_options',''),(316837,42508,'_blocks_13_options','field_617682517c334'),(316838,42508,'blocks_13_split_5050_image','40387'),(316839,42508,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(316840,42508,'blocks_13_split_5050_video',''),(316841,42508,'_blocks_13_split_5050_video','field_6239f3160848a'),(316842,42508,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(316843,42508,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(316844,42508,'blocks_13_split_5050_content_heading',''),(316845,42508,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(316846,42508,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(316847,42508,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(316848,42508,'blocks_13_split_5050_content_actions',''),(316849,42508,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(316850,42508,'blocks_13_split_5050_content',''),(316851,42508,'_blocks_13_split_5050_content','field_61767afceb8ba'),(316852,42508,'blocks_14_acfe_flexible_toggle',''),(316853,42508,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316854,42508,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(316855,42508,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316856,42508,'blocks_14_options_theme','#ffffff'),(316857,42508,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(316858,42508,'blocks_14_options_reverse','1'),(316859,42508,'_blocks_14_options_reverse','field_61768049bb8ac'),(316860,42508,'blocks_14_options',''),(316861,42508,'_blocks_14_options','field_617682517c334'),(316862,42508,'blocks_14_split_5050_image','18856'),(316863,42508,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(316864,42508,'blocks_14_split_5050_video',''),(316865,42508,'_blocks_14_split_5050_video','field_6239f3160848a'),(316866,42508,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(316867,42508,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(316868,42508,'blocks_14_split_5050_content_heading',''),(316869,42508,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(316870,42508,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(316871,42508,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(316872,42508,'blocks_14_split_5050_content_actions',''),(316873,42508,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(316874,42508,'blocks_14_split_5050_content',''),(316875,42508,'_blocks_14_split_5050_content','field_61767afceb8ba'),(316876,42508,'blocks_19_acfe_flexible_toggle',''),(316877,42508,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(316878,42508,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(316879,42508,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(316880,42508,'blocks_19_options_theme','#ffffff'),(316881,42508,'_blocks_19_options_theme','field_6176830e2ad17'),(316882,42508,'blocks_19_options',''),(316883,42508,'_blocks_19_options','field_6176830e2ad16'),(316884,42508,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(316885,42508,'_blocks_19_text_block_heading','field_617669d413097'),(316886,42508,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(316887,42508,'_blocks_19_text_block_content','field_617669ec13098'),(316888,42508,'blocks_20_acfe_flexible_toggle',''),(316889,42508,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(316890,42508,'blocks_20_acfe_flexible_layout_title','Conclusion'),(316891,42508,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(316892,42508,'blocks_20_options_theme','#b61234'),(316893,42508,'_blocks_20_options_theme','field_6176830e2ad17'),(316894,42508,'blocks_20_options',''),(316895,42508,'_blocks_20_options','field_6176830e2ad16'),(316896,42508,'blocks_20_text_block_heading','Conclusion'),(316897,42508,'_blocks_20_text_block_heading','field_617669d413097'),(316898,42508,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(316899,42508,'_blocks_20_text_block_content','field_617669ec13098'),(316900,42508,'blocks_6_acfe_flexible_toggle',''),(316901,42508,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316902,42508,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(316903,42508,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316904,42508,'blocks_6_options_theme','#ffffff'),(316905,42508,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(316906,42508,'blocks_6_options_reverse','0'),(316907,42508,'_blocks_6_options_reverse','field_61768049bb8ac'),(316908,42508,'blocks_6_options',''),(316909,42508,'_blocks_6_options','field_617682517c334'),(316910,42508,'blocks_6_split_5050_image','41505'),(316911,42508,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(316912,42508,'blocks_6_split_5050_video',''),(316913,42508,'_blocks_6_split_5050_video','field_6239f3160848a'),(316914,42508,'blocks_6_split_5050_content_title','Current Practitioners'),(316915,42508,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(316916,42508,'blocks_6_split_5050_content_heading',''),(316917,42508,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(316918,42508,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(316919,42508,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(316920,42508,'blocks_6_split_5050_content_actions',''),(316921,42508,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(316922,42508,'blocks_6_split_5050_content',''),(316923,42508,'_blocks_6_split_5050_content','field_61767afceb8ba'),(316924,42508,'blocks_2_acfe_flexible_toggle',''),(316925,42508,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316926,42508,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(316927,42508,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316928,42508,'blocks_2_options_theme','#f5f5f5'),(316929,42508,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(316930,42508,'blocks_2_options_reverse','1'),(316931,42508,'_blocks_2_options_reverse','field_61768049bb8ac'),(316932,42508,'blocks_2_options',''),(316933,42508,'_blocks_2_options','field_617682517c334'),(316934,42508,'blocks_2_split_5050_image','40618'),(316935,42508,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(316936,42508,'blocks_2_split_5050_video',''),(316937,42508,'_blocks_2_split_5050_video','field_6239f3160848a'),(316938,42508,'blocks_2_split_5050_content_title',''),(316939,42508,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(316940,42508,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(316941,42508,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(316942,42508,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(316943,42508,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(316944,42508,'blocks_2_split_5050_content_actions',''),(316945,42508,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(316946,42508,'blocks_2_split_5050_content',''),(316947,42508,'_blocks_2_split_5050_content','field_61767afceb8ba'),(316948,42508,'blocks_4_acfe_flexible_toggle',''),(316949,42508,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(316950,42508,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(316951,42508,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(316952,42508,'blocks_4_options_theme','#ffffff'),(316953,42508,'_blocks_4_options_theme','field_6176830e2ad17'),(316954,42508,'blocks_4_options',''),(316955,42508,'_blocks_4_options','field_6176830e2ad16'),(316956,42508,'blocks_4_text_block_heading','Who Should Study MSK?'),(316957,42508,'_blocks_4_text_block_heading','field_617669d413097'),(316958,42508,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(316959,42508,'_blocks_4_text_block_content','field_617669ec13098'),(316960,42508,'blocks_5_acfe_flexible_toggle',''),(316961,42508,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(316962,42508,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(316963,42508,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(316964,42508,'blocks_5_options_theme','#ffffff'),(316965,42508,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(316966,42508,'blocks_5_options_reverse','0'),(316967,42508,'_blocks_5_options_reverse','field_61768049bb8ac'),(316968,42508,'blocks_5_options',''),(316969,42508,'_blocks_5_options','field_617682517c334'),(316970,42508,'blocks_5_split_5050_image','41542'),(316971,42508,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(316972,42508,'blocks_5_split_5050_video',''),(316973,42508,'_blocks_5_split_5050_video','field_6239f3160848a'),(316974,42508,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(316975,42508,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(316976,42508,'blocks_5_split_5050_content_heading',''),(316977,42508,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(316978,42508,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(316979,42508,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(316980,42508,'blocks_5_split_5050_content_actions',''),(316981,42508,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(316982,42508,'blocks_5_split_5050_content',''),(316983,42508,'_blocks_5_split_5050_content','field_61767afceb8ba'),(316984,42508,'blocks_10_acfe_flexible_toggle',''),(316985,42508,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(316986,42508,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(316987,42508,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(316988,42508,'blocks_10_options_theme','#f5f5f5'),(316989,42508,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(316990,42508,'blocks_10_options_state','0'),(316991,42508,'_blocks_10_options_state','field_6239fcb7508c5'),(316992,42508,'blocks_10_options',''),(316993,42508,'_blocks_10_options','field_6177e2991ac44'),(316994,42508,'blocks_10_content_title',''),(316995,42508,'_blocks_10_content_title','field_64d237e8bb1e2'),(316996,42508,'blocks_10_content_heading','Common MSK Conditions'),(316997,42508,'_blocks_10_content_heading','field_64d237e8bb1e3'),(316998,42508,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(316999,42508,'_blocks_10_content_text','field_64d237e8bb1e4'),(317000,42508,'blocks_10_content_actions',''),(317001,42508,'_blocks_10_content_actions','field_64d237e8bb1e5'),(317002,42508,'blocks_10_content_align','left'),(317003,42508,'_blocks_10_content_align','field_64d2443e6b6aa'),(317004,42508,'blocks_10_content',''),(317005,42508,'_blocks_10_content','field_64d237e8bb1e1'),(317006,42508,'blocks_10_accordion_content','custom'),(317007,42508,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(317008,42508,'blocks_10_accordion_items_0_title','Osteoarthritis'),(317009,42508,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(317010,42508,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(317011,42508,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(317012,42508,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(317013,42508,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(317014,42508,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(317015,42508,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(317016,42508,'blocks_10_accordion_items_2_title','Back Pain'),(317017,42508,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(317018,42508,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by muscle imbalances or prolonged inactivity.'),(317019,42508,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(317020,42508,'blocks_10_accordion_items_3_title','Osteoporosis'),(317021,42508,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(317022,42508,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(317023,42508,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(317024,42508,'blocks_10_accordion_items_4_title','Tendinitis'),(317025,42508,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(317026,42508,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(317027,42508,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(317028,42508,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(317029,42508,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(317030,42508,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(317031,42508,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(317032,42508,'blocks_10_accordion_items_6_title','Fibromyalgia'),(317033,42508,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(317034,42508,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(317035,42508,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(317036,42508,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(317037,42508,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(317038,42508,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(317039,42508,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(317040,42508,'blocks_10_accordion_items','8'),(317041,42508,'_blocks_10_accordion_items','field_6177e2991ac4c'),(317042,42508,'blocks_10_actions',''),(317043,42508,'_blocks_10_actions','field_61a746a817f7a'),(317044,42508,'blocks_11_acfe_flexible_toggle',''),(317045,42508,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(317046,42508,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(317047,42508,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(317048,42508,'blocks_11_options_theme','#ffffff'),(317049,42508,'_blocks_11_options_theme','field_6176830e2ad17'),(317050,42508,'blocks_11_options',''),(317051,42508,'_blocks_11_options','field_6176830e2ad16'),(317052,42508,'blocks_11_text_block_heading','The Importance of MSK Education'),(317053,42508,'_blocks_11_text_block_heading','field_617669d413097'),(317054,42508,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(317055,42508,'_blocks_11_text_block_content','field_617669ec13098'),(317056,42508,'blocks_12_acfe_flexible_toggle',''),(317057,42508,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(317058,42508,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(317059,42508,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(317060,42508,'blocks_12_options_theme','#ffffff'),(317061,42508,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(317062,42508,'blocks_12_options_reverse','1'),(317063,42508,'_blocks_12_options_reverse','field_61768049bb8ac'),(317064,42508,'blocks_12_options',''),(317065,42508,'_blocks_12_options','field_617682517c334'),(317066,42508,'blocks_12_split_5050_image','41498'),(317067,42508,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(317068,42508,'blocks_12_split_5050_video',''),(317069,42508,'_blocks_12_split_5050_video','field_6239f3160848a'),(317070,42508,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(317071,42508,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(317072,42508,'blocks_12_split_5050_content_heading',''),(317073,42508,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(317074,42508,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(317075,42508,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(317076,42508,'blocks_12_split_5050_content_actions',''),(317077,42508,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(317078,42508,'blocks_12_split_5050_content',''),(317079,42508,'_blocks_12_split_5050_content','field_61767afceb8ba'),(317080,42508,'blocks_15_acfe_flexible_toggle',''),(317081,42508,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(317082,42508,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(317083,42508,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(317084,42508,'blocks_15_options_theme','#b61234'),(317085,42508,'_blocks_15_options_theme','field_6176830e2ad17'),(317086,42508,'blocks_15_options',''),(317087,42508,'_blocks_15_options','field_6176830e2ad16'),(317088,42508,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(317089,42508,'_blocks_15_text_block_heading','field_617669d413097'),(317090,42508,'blocks_15_text_block_content',''),(317091,42508,'_blocks_15_text_block_content','field_617669ec13098'),(317092,42508,'blocks_16_acfe_flexible_toggle',''),(317093,42508,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(317094,42508,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(317095,42508,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(317096,42508,'blocks_16_options_theme','#b61234'),(317097,42508,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(317098,42508,'blocks_16_options_format','row'),(317099,42508,'_blocks_16_options_format','field_64bfde9a90690'),(317100,42508,'blocks_16_options',''),(317101,42508,'_blocks_16_options','field_64bfdd9b90684'),(317102,42508,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(317103,42508,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(317104,42508,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(317105,42508,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(317106,42508,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(317107,42508,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(317108,42508,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(317109,42508,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(317110,42508,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(317111,42508,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(317112,42508,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(317113,42508,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(317114,42508,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(317115,42508,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(317116,42508,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(317117,42508,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(317118,42508,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(317119,42508,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(317120,42508,'blocks_16_icon_row_items_3_icon','recognised.svg'),(317121,42508,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(317122,42508,'blocks_16_icon_row_items_3_label','Optimised Performance'),(317123,42508,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(317124,42508,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(317125,42508,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(317126,42508,'blocks_16_icon_row_items','4'),(317127,42508,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(317128,42508,'blocks_17_acfe_flexible_toggle',''),(317129,42508,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(317130,42508,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(317131,42508,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(317132,42508,'blocks_17_options_theme','#ffffff'),(317133,42508,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(317134,42508,'blocks_17_options_reverse','0'),(317135,42508,'_blocks_17_options_reverse','field_61768049bb8ac'),(317136,42508,'blocks_17_options',''),(317137,42508,'_blocks_17_options','field_617682517c334'),(317138,42508,'blocks_17_split_5050_image','41501'),(317139,42508,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(317140,42508,'blocks_17_split_5050_video',''),(317141,42508,'_blocks_17_split_5050_video','field_6239f3160848a'),(317142,42508,'blocks_17_split_5050_content_title',''),(317143,42508,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(317144,42508,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(317145,42508,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(317146,42508,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(317147,42508,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(317148,42508,'blocks_17_split_5050_content_actions',''),(317149,42508,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(317150,42508,'blocks_17_split_5050_content',''),(317151,42508,'_blocks_17_split_5050_content','field_61767afceb8ba'),(317152,42508,'blocks_18_acfe_flexible_toggle',''),(317153,42508,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(317154,42508,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(317155,42508,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(317156,42508,'blocks_18_options_theme','#ffffff'),(317157,42508,'_blocks_18_options_theme','field_6176830e2ad17'),(317158,42508,'blocks_18_options',''),(317159,42508,'_blocks_18_options','field_6176830e2ad16'),(317160,42508,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(317161,42508,'_blocks_18_text_block_heading','field_617669d413097'),(317162,42508,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(317163,42508,'_blocks_18_text_block_content','field_617669ec13098'),(317164,42508,'blocks_21_acfe_flexible_toggle',''),(317165,42508,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(317166,42508,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(317167,42508,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(317168,42508,'blocks_21_options_alignment','center'),(317169,42508,'_blocks_21_options_alignment','field_61769449f5490'),(317170,42508,'blocks_21_options',''),(317171,42508,'_blocks_21_options','field_617693e1428f0'),(317172,42508,'blocks_21_promo_panel_image','41307'),(317173,42508,'_blocks_21_promo_panel_image','field_617693e1428f3'),(317174,42508,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(317175,42508,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(317176,42508,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(317177,42508,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(317178,42508,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(317179,42508,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(317180,42508,'blocks_21_promo_panel_content_actions','1'),(317181,42508,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(317182,42508,'blocks_21_promo_panel_content',''),(317183,42508,'_blocks_21_promo_panel_content','field_617693e1428f4'),(317184,42536,'_edit_lock','1746627158:18'),(317185,42536,'_edit_last','18'),(317186,42536,'hide_hero','0'),(317187,42536,'_hide_hero','field_66a2380fcda39'),(317188,42536,'fft_hide_from_listings','0'),(317189,42536,'_fft_hide_from_listings','field_61f1320446ab2'),(317190,42536,'fft_page_format','default'),(317191,42536,'_fft_page_format','field_61ae213f1f218'),(317192,42536,'fft_hide_nav','0'),(317193,42536,'_fft_hide_nav','field_635bd5e43527c'),(317194,42536,'fft_hide_header_call_to_action','0'),(317195,42536,'_fft_hide_header_call_to_action','field_635bd6723527d'),(317196,42536,'fft_page_sitemap','0'),(317197,42536,'_fft_page_sitemap','field_61af9b34e8181'),(317198,42536,'blocks','a:12:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:5:\"quote\";i:7;s:13:\"step_timeline\";i:8;s:10:\"split_5050\";i:9;s:4:\"form\";i:10;s:10:\"split_5050\";i:11;s:10:\"accordions\";}'),(317199,42536,'_blocks','field_6176696113096'),(317202,42536,'_yoast_wpseo_inclusive_language_score','90'),(317203,42536,'_yoast_wpseo_estimated-reading-time-minutes','1'),(317206,42536,'hero_title',''),(317207,42536,'_hero_title','field_617571fe285e8'),(317208,42536,'hero_text',''),(317209,42536,'_hero_text','field_6175723c285e9'),(317210,42536,'hero_actions','1'),(317211,42536,'_hero_actions','field_61757270285ea'),(317212,42536,'hero_style','default'),(317213,42536,'_hero_style','field_62051d9dc5324'),(317214,42536,'__thumbnail_id','field_617570855ddaf'),(317215,42536,'hero_image_pos_x','right'),(317216,42536,'_hero_image_pos_x','field_62ec3d05390bb'),(317217,42536,'hero_image_pos_y','top'),(317218,42536,'_hero_image_pos_y','field_62ec3d05390bc'),(317219,42536,'hero_image_pos',''),(317220,42536,'_hero_image_pos','field_62ec3d05390ba'),(317221,42536,'blocks_0_acfe_flexible_toggle',''),(317222,42536,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(317223,42536,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(317224,42536,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(317225,42536,'blocks_0_options_theme','#ffffff'),(317226,42536,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(317227,42536,'blocks_0_options_reverse','0'),(317228,42536,'_blocks_0_options_reverse','field_61768049bb8ac'),(317229,42536,'blocks_0_options',''),(317230,42536,'_blocks_0_options','field_617682517c334'),(317231,42536,'blocks_0_split_5050_image','40848'),(317232,42536,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(317233,42536,'blocks_0_split_5050_video',''),(317234,42536,'_blocks_0_split_5050_video','field_6239f3160848a'),(317235,42536,'blocks_0_split_5050_content_title','Biomechanics Education'),(317236,42536,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(317237,42536,'blocks_0_split_5050_content_heading','International Training and Courses'),(317238,42536,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(317239,42536,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re an exercise professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health, exercise and wellness to rehabilitation and performance coaching.'),(317240,42536,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(317241,42536,'blocks_0_split_5050_content_actions','1'),(317242,42536,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(317243,42536,'blocks_0_split_5050_content',''),(317244,42536,'_blocks_0_split_5050_content','field_61767afceb8ba'),(317427,42537,'hide_hero','0'),(317428,42537,'_hide_hero','field_66a2380fcda39'),(317429,42537,'fft_hide_from_listings','0'),(317430,42537,'_fft_hide_from_listings','field_61f1320446ab2'),(317431,42537,'fft_page_format','default'),(317432,42537,'_fft_page_format','field_61ae213f1f218'),(317433,42537,'fft_hide_nav','0'),(317434,42537,'_fft_hide_nav','field_635bd5e43527c'),(317435,42537,'fft_hide_header_call_to_action','0'),(317436,42537,'_fft_hide_header_call_to_action','field_635bd6723527d'),(317437,42537,'fft_page_sitemap','0'),(317438,42537,'_fft_page_sitemap','field_61af9b34e8181'),(317439,42537,'blocks','a:6:{i:0;s:10:\"split_5050\";i:1;s:10:\"text_block\";i:2;s:4:\"tabs\";i:3;s:4:\"form\";i:4;s:13:\"step_timeline\";i:5;s:10:\"accordions\";}'),(317440,42537,'_blocks','field_6176696113096'),(317441,42537,'_thumbnail_id','41183'),(317442,42537,'__thumbnail_id','field_617570855ddaf'),(317443,42537,'hero_title',''),(317444,42537,'_hero_title','field_617571fe285e8'),(317445,42537,'hero_text',''),(317446,42537,'_hero_text','field_6175723c285e9'),(317447,42537,'hero_actions',''),(317448,42537,'_hero_actions','field_61757270285ea'),(317449,42537,'hero_style','default'),(317450,42537,'_hero_style','field_62051d9dc5324'),(317451,42537,'hero_image_pos_x','right'),(317452,42537,'_hero_image_pos_x','field_62ec3d05390bb'),(317453,42537,'hero_image_pos_y','top'),(317454,42537,'_hero_image_pos_y','field_62ec3d05390bc'),(317455,42537,'hero_image_pos',''),(317456,42537,'_hero_image_pos','field_62ec3d05390ba'),(317457,42537,'blocks_0_acfe_flexible_toggle',''),(317458,42537,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(317459,42537,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(317460,42537,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(317461,42537,'blocks_0_options_theme','#ffffff'),(317462,42537,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(317463,42537,'blocks_0_options_reverse','0'),(317464,42537,'_blocks_0_options_reverse','field_61768049bb8ac'),(317465,42537,'blocks_0_options',''),(317466,42537,'_blocks_0_options','field_617682517c334'),(317467,42537,'blocks_0_split_5050_image','41190'),(317468,42537,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(317469,42537,'blocks_0_split_5050_video',''),(317470,42537,'_blocks_0_split_5050_video','field_6239f3160848a'),(317471,42537,'blocks_0_split_5050_content_title',''),(317472,42537,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(317473,42537,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(317474,42537,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(317475,42537,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(317476,42537,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(317477,42537,'blocks_0_split_5050_content_actions',''),(317478,42537,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(317479,42537,'blocks_0_split_5050_content',''),(317480,42537,'_blocks_0_split_5050_content','field_61767afceb8ba'),(317481,42537,'blocks_5_acfe_flexible_toggle',''),(317482,42537,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(317483,42537,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(317484,42537,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(317485,42537,'blocks_5_options_theme','#ffffff'),(317486,42537,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(317487,42537,'blocks_5_options_state','0'),(317488,42537,'_blocks_5_options_state','field_6239fcb7508c5'),(317489,42537,'blocks_5_options',''),(317490,42537,'_blocks_5_options','field_6177e2991ac44'),(317491,42537,'blocks_5_content_title',''),(317492,42537,'_blocks_5_content_title','field_64d237e8bb1e2'),(317493,42537,'blocks_5_content_heading','FAQ\'s'),(317494,42537,'_blocks_5_content_heading','field_64d237e8bb1e3'),(317495,42537,'blocks_5_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(317496,42537,'_blocks_5_content_text','field_64d237e8bb1e4'),(317497,42537,'blocks_5_content_actions',''),(317498,42537,'_blocks_5_content_actions','field_64d237e8bb1e5'),(317499,42537,'blocks_5_content_align','left'),(317500,42537,'_blocks_5_content_align','field_64d2443e6b6aa'),(317501,42537,'blocks_5_content',''),(317502,42537,'_blocks_5_content','field_64d237e8bb1e1'),(317503,42537,'blocks_5_accordion_content','custom'),(317504,42537,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(317505,42537,'blocks_5_accordion_items_0_title','What is ELCAS?'),(317506,42537,'_blocks_5_accordion_items_0_title','field_6177e2991ac4d'),(317507,42537,'blocks_5_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(317508,42537,'_blocks_5_accordion_items_0_text','field_6177e2991ac4e'),(317509,42537,'blocks_5_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(317510,42537,'_blocks_5_accordion_items_1_title','field_6177e2991ac4d'),(317511,42537,'blocks_5_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(317512,42537,'_blocks_5_accordion_items_1_text','field_6177e2991ac4e'),(317513,42537,'blocks_5_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(317514,42537,'_blocks_5_accordion_items_2_title','field_6177e2991ac4d'),(317515,42537,'blocks_5_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(317516,42537,'_blocks_5_accordion_items_2_text','field_6177e2991ac4e'),(317517,42537,'blocks_5_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(317518,42537,'_blocks_5_accordion_items_3_title','field_6177e2991ac4d'),(317519,42537,'blocks_5_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(317520,42537,'_blocks_5_accordion_items_3_text','field_6177e2991ac4e'),(317521,42537,'blocks_5_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(317522,42537,'_blocks_5_accordion_items_4_title','field_6177e2991ac4d'),(317523,42537,'blocks_5_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(317524,42537,'_blocks_5_accordion_items_4_text','field_6177e2991ac4e'),(317525,42537,'blocks_5_accordion_items','5'),(317526,42537,'_blocks_5_accordion_items','field_6177e2991ac4c'),(317527,42537,'blocks_5_actions',''),(317528,42537,'_blocks_5_actions','field_61a746a817f7a'),(317529,42537,'blocks_1_acfe_flexible_toggle',''),(317530,42537,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(317531,42537,'blocks_1_acfe_flexible_layout_title','Text Block'),(317532,42537,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(317533,42537,'blocks_1_options_theme','#ffffff'),(317534,42537,'_blocks_1_options_theme','field_6176830e2ad17'),(317535,42537,'blocks_1_options',''),(317536,42537,'_blocks_1_options','field_6176830e2ad16'),(317537,42537,'blocks_1_text_block_heading','Why choose Biomechanics Education'),(317538,42537,'_blocks_1_text_block_heading','field_617669d413097'),(317539,42537,'blocks_1_text_block_content',''),(317540,42537,'_blocks_1_text_block_content','field_617669ec13098'),(317541,42537,'blocks_2_acfe_flexible_toggle',''),(317542,42537,'_blocks_2_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(317543,42537,'blocks_2_acfe_flexible_layout_title','Tabs'),(317544,42537,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(317545,42537,'blocks_2_options_theme','#ffffff'),(317546,42537,'_blocks_2_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(317547,42537,'blocks_2_options',''),(317548,42537,'_blocks_2_options','field_6177cfcd8140f'),(317549,42537,'blocks_2_tabs_0_tab_label','Specialist Training'),(317550,42537,'_blocks_2_tabs_0_tab_label','field_6177d0068141a'),(317551,42537,'blocks_2_tabs_0_tab_content_title',''),(317552,42537,'_blocks_2_tabs_0_tab_content_title','field_6177cfcd81414'),(317553,42537,'blocks_2_tabs_0_tab_content_heading','Specialist Training'),(317554,42537,'_blocks_2_tabs_0_tab_content_heading','field_6177cfcd81415'),(317555,42537,'blocks_2_tabs_0_tab_content_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(317556,42537,'_blocks_2_tabs_0_tab_content_text','field_6177cfcd81416'),(317557,42537,'blocks_2_tabs_0_tab_content_actions',''),(317558,42537,'_blocks_2_tabs_0_tab_content_actions','field_6177cfcd81417'),(317559,42537,'blocks_2_tabs_0_tab_content',''),(317560,42537,'_blocks_2_tabs_0_tab_content','field_6177cfcd81413'),(317561,42537,'blocks_2_tabs_0_tab_image','41301'),(317562,42537,'_blocks_2_tabs_0_tab_image','field_6177cfcd81412'),(317563,42537,'blocks_2_tabs_1_tab_label','Career Flexibility'),(317564,42537,'_blocks_2_tabs_1_tab_label','field_6177d0068141a'),(317565,42537,'blocks_2_tabs_1_tab_content_title',''),(317566,42537,'_blocks_2_tabs_1_tab_content_title','field_6177cfcd81414'),(317567,42537,'blocks_2_tabs_1_tab_content_heading','Career Flexibility'),(317568,42537,'_blocks_2_tabs_1_tab_content_heading','field_6177cfcd81415'),(317569,42537,'blocks_2_tabs_1_tab_content_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(317570,42537,'_blocks_2_tabs_1_tab_content_text','field_6177cfcd81416'),(317571,42537,'blocks_2_tabs_1_tab_content_actions',''),(317572,42537,'_blocks_2_tabs_1_tab_content_actions','field_6177cfcd81417'),(317573,42537,'blocks_2_tabs_1_tab_content',''),(317574,42537,'_blocks_2_tabs_1_tab_content','field_6177cfcd81413'),(317575,42537,'blocks_2_tabs_1_tab_image','40839'),(317576,42537,'_blocks_2_tabs_1_tab_image','field_6177cfcd81412'),(317577,42537,'blocks_2_tabs_2_tab_label','Recognised Qualification'),(317578,42537,'_blocks_2_tabs_2_tab_label','field_6177d0068141a'),(317579,42537,'blocks_2_tabs_2_tab_content_title',''),(317580,42537,'_blocks_2_tabs_2_tab_content_title','field_6177cfcd81414'),(317581,42537,'blocks_2_tabs_2_tab_content_heading','Recognised Qualification'),(317582,42537,'_blocks_2_tabs_2_tab_content_heading','field_6177cfcd81415'),(317583,42537,'blocks_2_tabs_2_tab_content_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(317584,42537,'_blocks_2_tabs_2_tab_content_text','field_6177cfcd81416'),(317585,42537,'blocks_2_tabs_2_tab_content_actions',''),(317586,42537,'_blocks_2_tabs_2_tab_content_actions','field_6177cfcd81417'),(317587,42537,'blocks_2_tabs_2_tab_content',''),(317588,42537,'_blocks_2_tabs_2_tab_content','field_6177cfcd81413'),(317589,42537,'blocks_2_tabs_2_tab_image','41300'),(317590,42537,'_blocks_2_tabs_2_tab_image','field_6177cfcd81412'),(317591,42537,'blocks_2_tabs_3_tab_label','Funding Available'),(317592,42537,'_blocks_2_tabs_3_tab_label','field_6177d0068141a'),(317593,42537,'blocks_2_tabs_3_tab_content_title',''),(317594,42537,'_blocks_2_tabs_3_tab_content_title','field_6177cfcd81414'),(317595,42537,'blocks_2_tabs_3_tab_content_heading','Funding Available'),(317596,42537,'_blocks_2_tabs_3_tab_content_heading','field_6177cfcd81415'),(317597,42537,'blocks_2_tabs_3_tab_content_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(317598,42537,'_blocks_2_tabs_3_tab_content_text','field_6177cfcd81416'),(317599,42537,'blocks_2_tabs_3_tab_content_actions',''),(317600,42537,'_blocks_2_tabs_3_tab_content_actions','field_6177cfcd81417'),(317601,42537,'blocks_2_tabs_3_tab_content',''),(317602,42537,'_blocks_2_tabs_3_tab_content','field_6177cfcd81413'),(317603,42537,'blocks_2_tabs_3_tab_image','41299'),(317604,42537,'_blocks_2_tabs_3_tab_image','field_6177cfcd81412'),(317605,42537,'blocks_2_tabs','4'),(317606,42537,'_blocks_2_tabs','field_6177cff281419'),(317607,42537,'blocks_3_acfe_flexible_toggle',''),(317608,42537,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(317609,42537,'blocks_3_acfe_flexible_layout_title','Form'),(317610,42537,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(317611,42537,'blocks_3_row_content_format','standard'),(317612,42537,'_blocks_3_row_content_format','field_6481ead962881'),(317613,42537,'blocks_3_row_content_title',''),(317614,42537,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(317615,42537,'blocks_3_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(317616,42537,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(317617,42537,'blocks_3_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(317618,42537,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(317619,42537,'blocks_3_row_content_actions',''),(317620,42537,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(317621,42537,'blocks_3_row_content',''),(317622,42537,'_blocks_3_row_content','field_61a0f5f5b3db0'),(317623,42537,'blocks_3_row_form','40394'),(317624,42537,'_blocks_3_row_form','field_61a4ff2c0b08e'),(317625,42537,'blocks_3_row_form_button_label',''),(317626,42537,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(317627,42537,'blocks_4_acfe_flexible_toggle',''),(317628,42537,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(317629,42537,'blocks_4_acfe_flexible_layout_title','Timeline'),(317630,42537,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(317631,42537,'blocks_4_options_theme','#ffffff'),(317632,42537,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(317633,42537,'blocks_4_options',''),(317634,42537,'_blocks_4_options','field_6177de53d1195'),(317635,42537,'blocks_4_timeline_content_title',''),(317636,42537,'_blocks_4_timeline_content_title','field_6177de53d1198'),(317637,42537,'blocks_4_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(317638,42537,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(317639,42537,'blocks_4_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(317640,42537,'_blocks_4_timeline_content_text','field_6177de53d119a'),(317641,42537,'blocks_4_timeline_content_actions',''),(317642,42537,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(317643,42537,'blocks_4_timeline_content',''),(317644,42537,'_blocks_4_timeline_content','field_6177de53d1197'),(317645,42537,'blocks_4_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(317646,42537,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(317647,42537,'blocks_4_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(317648,42537,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(317649,42537,'blocks_4_timeline_items_1_title','Send your fully completed form to ELCAS'),(317650,42537,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(317651,42537,'blocks_4_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(317652,42537,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(317653,42537,'blocks_4_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(317654,42537,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(317655,42537,'blocks_4_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(317656,42537,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(317657,42537,'blocks_4_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(317658,42537,'_blocks_4_timeline_items_3_title','field_6177de53d119f'),(317659,42537,'blocks_4_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(317660,42537,'_blocks_4_timeline_items_3_text','field_6177de53d11a0'),(317661,42537,'blocks_4_timeline_items','4'),(317662,42537,'_blocks_4_timeline_items','field_6177de53d119d'),(317663,42538,'hide_hero','0'),(317664,42538,'_hide_hero','field_66a2380fcda39'),(317665,42538,'fft_hide_from_listings','0'),(317666,42538,'_fft_hide_from_listings','field_61f1320446ab2'),(317667,42538,'fft_page_format','default'),(317668,42538,'_fft_page_format','field_61ae213f1f218'),(317669,42538,'fft_hide_nav','0'),(317670,42538,'_fft_hide_nav','field_635bd5e43527c'),(317671,42538,'fft_hide_header_call_to_action','0'),(317672,42538,'_fft_hide_header_call_to_action','field_635bd6723527d'),(317673,42538,'fft_page_sitemap','0'),(317674,42538,'_fft_page_sitemap','field_61af9b34e8181'),(317675,42538,'blocks','a:6:{i:0;s:10:\"split_5050\";i:1;s:10:\"text_block\";i:2;s:4:\"tabs\";i:3;s:4:\"form\";i:4;s:13:\"step_timeline\";i:5;s:10:\"accordions\";}'),(317676,42538,'_blocks','field_6176696113096'),(317677,42538,'_thumbnail_id','40818'),(317678,42538,'__thumbnail_id','field_617570855ddaf'),(317679,42538,'hero_title',''),(317680,42538,'_hero_title','field_617571fe285e8'),(317681,42538,'hero_text',''),(317682,42538,'_hero_text','field_6175723c285e9'),(317683,42538,'hero_actions',''),(317684,42538,'_hero_actions','field_61757270285ea'),(317685,42538,'hero_style','default'),(317686,42538,'_hero_style','field_62051d9dc5324'),(317687,42538,'hero_image_pos_x','right'),(317688,42538,'_hero_image_pos_x','field_62ec3d05390bb'),(317689,42538,'hero_image_pos_y','top'),(317690,42538,'_hero_image_pos_y','field_62ec3d05390bc'),(317691,42538,'hero_image_pos',''),(317692,42538,'_hero_image_pos','field_62ec3d05390ba'),(317693,42538,'blocks_0_acfe_flexible_toggle',''),(317694,42538,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(317695,42538,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(317696,42538,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(317697,42538,'blocks_0_options_theme','#ffffff'),(317698,42538,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(317699,42538,'blocks_0_options_reverse','0'),(317700,42538,'_blocks_0_options_reverse','field_61768049bb8ac'),(317701,42538,'blocks_0_options',''),(317702,42538,'_blocks_0_options','field_617682517c334'),(317703,42538,'blocks_0_split_5050_image','41190'),(317704,42538,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(317705,42538,'blocks_0_split_5050_video',''),(317706,42538,'_blocks_0_split_5050_video','field_6239f3160848a'),(317707,42538,'blocks_0_split_5050_content_title',''),(317708,42538,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(317709,42538,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(317710,42538,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(317711,42538,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(317712,42538,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(317713,42538,'blocks_0_split_5050_content_actions',''),(317714,42538,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(317715,42538,'blocks_0_split_5050_content',''),(317716,42538,'_blocks_0_split_5050_content','field_61767afceb8ba'),(317717,42538,'blocks_5_acfe_flexible_toggle',''),(317718,42538,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(317719,42538,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(317720,42538,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(317721,42538,'blocks_5_options_theme','#ffffff'),(317722,42538,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(317723,42538,'blocks_5_options_state','0'),(317724,42538,'_blocks_5_options_state','field_6239fcb7508c5'),(317725,42538,'blocks_5_options',''),(317726,42538,'_blocks_5_options','field_6177e2991ac44'),(317727,42538,'blocks_5_content_title',''),(317728,42538,'_blocks_5_content_title','field_64d237e8bb1e2'),(317729,42538,'blocks_5_content_heading','FAQ\'s'),(317730,42538,'_blocks_5_content_heading','field_64d237e8bb1e3'),(317731,42538,'blocks_5_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(317732,42538,'_blocks_5_content_text','field_64d237e8bb1e4'),(317733,42538,'blocks_5_content_actions',''),(317734,42538,'_blocks_5_content_actions','field_64d237e8bb1e5'),(317735,42538,'blocks_5_content_align','left'),(317736,42538,'_blocks_5_content_align','field_64d2443e6b6aa'),(317737,42538,'blocks_5_content',''),(317738,42538,'_blocks_5_content','field_64d237e8bb1e1'),(317739,42538,'blocks_5_accordion_content','custom'),(317740,42538,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(317741,42538,'blocks_5_accordion_items_0_title','What is ELCAS?'),(317742,42538,'_blocks_5_accordion_items_0_title','field_6177e2991ac4d'),(317743,42538,'blocks_5_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(317744,42538,'_blocks_5_accordion_items_0_text','field_6177e2991ac4e'),(317745,42538,'blocks_5_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(317746,42538,'_blocks_5_accordion_items_1_title','field_6177e2991ac4d'),(317747,42538,'blocks_5_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(317748,42538,'_blocks_5_accordion_items_1_text','field_6177e2991ac4e'),(317749,42538,'blocks_5_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(317750,42538,'_blocks_5_accordion_items_2_title','field_6177e2991ac4d'),(317751,42538,'blocks_5_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(317752,42538,'_blocks_5_accordion_items_2_text','field_6177e2991ac4e'),(317753,42538,'blocks_5_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(317754,42538,'_blocks_5_accordion_items_3_title','field_6177e2991ac4d'),(317755,42538,'blocks_5_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(317756,42538,'_blocks_5_accordion_items_3_text','field_6177e2991ac4e'),(317757,42538,'blocks_5_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(317758,42538,'_blocks_5_accordion_items_4_title','field_6177e2991ac4d'),(317759,42538,'blocks_5_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(317760,42538,'_blocks_5_accordion_items_4_text','field_6177e2991ac4e'),(317761,42538,'blocks_5_accordion_items','5'),(317762,42538,'_blocks_5_accordion_items','field_6177e2991ac4c'),(317763,42538,'blocks_5_actions',''),(317764,42538,'_blocks_5_actions','field_61a746a817f7a'),(317765,42538,'blocks_1_acfe_flexible_toggle',''),(317766,42538,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(317767,42538,'blocks_1_acfe_flexible_layout_title','Text Block'),(317768,42538,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(317769,42538,'blocks_1_options_theme','#ffffff'),(317770,42538,'_blocks_1_options_theme','field_6176830e2ad17'),(317771,42538,'blocks_1_options',''),(317772,42538,'_blocks_1_options','field_6176830e2ad16'),(317773,42538,'blocks_1_text_block_heading','Why choose Biomechanics Education'),(317774,42538,'_blocks_1_text_block_heading','field_617669d413097'),(317775,42538,'blocks_1_text_block_content',''),(317776,42538,'_blocks_1_text_block_content','field_617669ec13098'),(317777,42538,'blocks_2_acfe_flexible_toggle',''),(317778,42538,'_blocks_2_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle');
INSERT INTO `6m7_postmeta` VALUES (317779,42538,'blocks_2_acfe_flexible_layout_title','Tabs'),(317780,42538,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(317781,42538,'blocks_2_options_theme','#ffffff'),(317782,42538,'_blocks_2_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(317783,42538,'blocks_2_options',''),(317784,42538,'_blocks_2_options','field_6177cfcd8140f'),(317785,42538,'blocks_2_tabs_0_tab_label','Specialist Training'),(317786,42538,'_blocks_2_tabs_0_tab_label','field_6177d0068141a'),(317787,42538,'blocks_2_tabs_0_tab_content_title',''),(317788,42538,'_blocks_2_tabs_0_tab_content_title','field_6177cfcd81414'),(317789,42538,'blocks_2_tabs_0_tab_content_heading','Specialist Training'),(317790,42538,'_blocks_2_tabs_0_tab_content_heading','field_6177cfcd81415'),(317791,42538,'blocks_2_tabs_0_tab_content_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(317792,42538,'_blocks_2_tabs_0_tab_content_text','field_6177cfcd81416'),(317793,42538,'blocks_2_tabs_0_tab_content_actions',''),(317794,42538,'_blocks_2_tabs_0_tab_content_actions','field_6177cfcd81417'),(317795,42538,'blocks_2_tabs_0_tab_content',''),(317796,42538,'_blocks_2_tabs_0_tab_content','field_6177cfcd81413'),(317797,42538,'blocks_2_tabs_0_tab_image','41301'),(317798,42538,'_blocks_2_tabs_0_tab_image','field_6177cfcd81412'),(317799,42538,'blocks_2_tabs_1_tab_label','Career Flexibility'),(317800,42538,'_blocks_2_tabs_1_tab_label','field_6177d0068141a'),(317801,42538,'blocks_2_tabs_1_tab_content_title',''),(317802,42538,'_blocks_2_tabs_1_tab_content_title','field_6177cfcd81414'),(317803,42538,'blocks_2_tabs_1_tab_content_heading','Career Flexibility'),(317804,42538,'_blocks_2_tabs_1_tab_content_heading','field_6177cfcd81415'),(317805,42538,'blocks_2_tabs_1_tab_content_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(317806,42538,'_blocks_2_tabs_1_tab_content_text','field_6177cfcd81416'),(317807,42538,'blocks_2_tabs_1_tab_content_actions',''),(317808,42538,'_blocks_2_tabs_1_tab_content_actions','field_6177cfcd81417'),(317809,42538,'blocks_2_tabs_1_tab_content',''),(317810,42538,'_blocks_2_tabs_1_tab_content','field_6177cfcd81413'),(317811,42538,'blocks_2_tabs_1_tab_image','40839'),(317812,42538,'_blocks_2_tabs_1_tab_image','field_6177cfcd81412'),(317813,42538,'blocks_2_tabs_2_tab_label','Recognised Qualification'),(317814,42538,'_blocks_2_tabs_2_tab_label','field_6177d0068141a'),(317815,42538,'blocks_2_tabs_2_tab_content_title',''),(317816,42538,'_blocks_2_tabs_2_tab_content_title','field_6177cfcd81414'),(317817,42538,'blocks_2_tabs_2_tab_content_heading','Recognised Qualification'),(317818,42538,'_blocks_2_tabs_2_tab_content_heading','field_6177cfcd81415'),(317819,42538,'blocks_2_tabs_2_tab_content_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(317820,42538,'_blocks_2_tabs_2_tab_content_text','field_6177cfcd81416'),(317821,42538,'blocks_2_tabs_2_tab_content_actions',''),(317822,42538,'_blocks_2_tabs_2_tab_content_actions','field_6177cfcd81417'),(317823,42538,'blocks_2_tabs_2_tab_content',''),(317824,42538,'_blocks_2_tabs_2_tab_content','field_6177cfcd81413'),(317825,42538,'blocks_2_tabs_2_tab_image','41300'),(317826,42538,'_blocks_2_tabs_2_tab_image','field_6177cfcd81412'),(317827,42538,'blocks_2_tabs_3_tab_label','Funding Available'),(317828,42538,'_blocks_2_tabs_3_tab_label','field_6177d0068141a'),(317829,42538,'blocks_2_tabs_3_tab_content_title',''),(317830,42538,'_blocks_2_tabs_3_tab_content_title','field_6177cfcd81414'),(317831,42538,'blocks_2_tabs_3_tab_content_heading','Funding Available'),(317832,42538,'_blocks_2_tabs_3_tab_content_heading','field_6177cfcd81415'),(317833,42538,'blocks_2_tabs_3_tab_content_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(317834,42538,'_blocks_2_tabs_3_tab_content_text','field_6177cfcd81416'),(317835,42538,'blocks_2_tabs_3_tab_content_actions',''),(317836,42538,'_blocks_2_tabs_3_tab_content_actions','field_6177cfcd81417'),(317837,42538,'blocks_2_tabs_3_tab_content',''),(317838,42538,'_blocks_2_tabs_3_tab_content','field_6177cfcd81413'),(317839,42538,'blocks_2_tabs_3_tab_image','41299'),(317840,42538,'_blocks_2_tabs_3_tab_image','field_6177cfcd81412'),(317841,42538,'blocks_2_tabs','4'),(317842,42538,'_blocks_2_tabs','field_6177cff281419'),(317843,42538,'blocks_3_acfe_flexible_toggle',''),(317844,42538,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(317845,42538,'blocks_3_acfe_flexible_layout_title','Form'),(317846,42538,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(317847,42538,'blocks_3_row_content_format','standard'),(317848,42538,'_blocks_3_row_content_format','field_6481ead962881'),(317849,42538,'blocks_3_row_content_title',''),(317850,42538,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(317851,42538,'blocks_3_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(317852,42538,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(317853,42538,'blocks_3_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(317854,42538,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(317855,42538,'blocks_3_row_content_actions',''),(317856,42538,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(317857,42538,'blocks_3_row_content',''),(317858,42538,'_blocks_3_row_content','field_61a0f5f5b3db0'),(317859,42538,'blocks_3_row_form','40394'),(317860,42538,'_blocks_3_row_form','field_61a4ff2c0b08e'),(317861,42538,'blocks_3_row_form_button_label',''),(317862,42538,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(317863,42538,'blocks_4_acfe_flexible_toggle',''),(317864,42538,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(317865,42538,'blocks_4_acfe_flexible_layout_title','Timeline'),(317866,42538,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(317867,42538,'blocks_4_options_theme','#ffffff'),(317868,42538,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(317869,42538,'blocks_4_options',''),(317870,42538,'_blocks_4_options','field_6177de53d1195'),(317871,42538,'blocks_4_timeline_content_title',''),(317872,42538,'_blocks_4_timeline_content_title','field_6177de53d1198'),(317873,42538,'blocks_4_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(317874,42538,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(317875,42538,'blocks_4_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(317876,42538,'_blocks_4_timeline_content_text','field_6177de53d119a'),(317877,42538,'blocks_4_timeline_content_actions',''),(317878,42538,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(317879,42538,'blocks_4_timeline_content',''),(317880,42538,'_blocks_4_timeline_content','field_6177de53d1197'),(317881,42538,'blocks_4_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(317882,42538,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(317883,42538,'blocks_4_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(317884,42538,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(317885,42538,'blocks_4_timeline_items_1_title','Send your fully completed form to ELCAS'),(317886,42538,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(317887,42538,'blocks_4_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(317888,42538,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(317889,42538,'blocks_4_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(317890,42538,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(317891,42538,'blocks_4_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(317892,42538,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(317893,42538,'blocks_4_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(317894,42538,'_blocks_4_timeline_items_3_title','field_6177de53d119f'),(317895,42538,'blocks_4_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(317896,42538,'_blocks_4_timeline_items_3_text','field_6177de53d11a0'),(317897,42538,'blocks_4_timeline_items','4'),(317898,42538,'_blocks_4_timeline_items','field_6177de53d119d'),(317899,42539,'hide_hero','0'),(317900,42539,'_hide_hero','field_66a2380fcda39'),(317901,42539,'fft_hide_from_listings','0'),(317902,42539,'_fft_hide_from_listings','field_61f1320446ab2'),(317903,42539,'fft_page_format','default'),(317904,42539,'_fft_page_format','field_61ae213f1f218'),(317905,42539,'fft_hide_nav','0'),(317906,42539,'_fft_hide_nav','field_635bd5e43527c'),(317907,42539,'fft_hide_header_call_to_action','0'),(317908,42539,'_fft_hide_header_call_to_action','field_635bd6723527d'),(317909,42539,'fft_page_sitemap','0'),(317910,42539,'_fft_page_sitemap','field_61af9b34e8181'),(317911,42539,'blocks','a:6:{i:0;s:10:\"split_5050\";i:1;s:10:\"text_block\";i:2;s:4:\"tabs\";i:3;s:4:\"form\";i:4;s:13:\"step_timeline\";i:5;s:10:\"accordions\";}'),(317912,42539,'_blocks','field_6176696113096'),(317913,42539,'_thumbnail_id','40818'),(317914,42539,'__thumbnail_id','field_617570855ddaf'),(317915,42539,'hero_title',''),(317916,42539,'_hero_title','field_617571fe285e8'),(317917,42539,'hero_text',''),(317918,42539,'_hero_text','field_6175723c285e9'),(317919,42539,'hero_actions',''),(317920,42539,'_hero_actions','field_61757270285ea'),(317921,42539,'hero_style','default'),(317922,42539,'_hero_style','field_62051d9dc5324'),(317923,42539,'hero_image_pos_x','right'),(317924,42539,'_hero_image_pos_x','field_62ec3d05390bb'),(317925,42539,'hero_image_pos_y','top'),(317926,42539,'_hero_image_pos_y','field_62ec3d05390bc'),(317927,42539,'hero_image_pos',''),(317928,42539,'_hero_image_pos','field_62ec3d05390ba'),(317929,42539,'blocks_0_acfe_flexible_toggle',''),(317930,42539,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(317931,42539,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(317932,42539,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(317933,42539,'blocks_0_options_theme','#ffffff'),(317934,42539,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(317935,42539,'blocks_0_options_reverse','0'),(317936,42539,'_blocks_0_options_reverse','field_61768049bb8ac'),(317937,42539,'blocks_0_options',''),(317938,42539,'_blocks_0_options','field_617682517c334'),(317939,42539,'blocks_0_split_5050_image','41527'),(317940,42539,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(317941,42539,'blocks_0_split_5050_video',''),(317942,42539,'_blocks_0_split_5050_video','field_6239f3160848a'),(317943,42539,'blocks_0_split_5050_content_title',''),(317944,42539,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(317945,42539,'blocks_0_split_5050_content_heading','Become a Biomechanics Coach with ELCAS'),(317946,42539,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(317947,42539,'blocks_0_split_5050_content_text','Are you an ex-member of the Armed Forces looking to start a new career in the health and exercise industry? With Biomechanics Education, you can become a certified Biomechanics Coach through our evidence-based training programs, now eligible for ELCAS funding. Our courses are designed to help you build on your existing skills, offering a unique opportunity to work in both clinical and non-clinical environments.'),(317948,42539,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(317949,42539,'blocks_0_split_5050_content_actions',''),(317950,42539,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(317951,42539,'blocks_0_split_5050_content',''),(317952,42539,'_blocks_0_split_5050_content','field_61767afceb8ba'),(317953,42539,'blocks_5_acfe_flexible_toggle',''),(317954,42539,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(317955,42539,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(317956,42539,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(317957,42539,'blocks_5_options_theme','#ffffff'),(317958,42539,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(317959,42539,'blocks_5_options_state','0'),(317960,42539,'_blocks_5_options_state','field_6239fcb7508c5'),(317961,42539,'blocks_5_options',''),(317962,42539,'_blocks_5_options','field_6177e2991ac44'),(317963,42539,'blocks_5_content_title',''),(317964,42539,'_blocks_5_content_title','field_64d237e8bb1e2'),(317965,42539,'blocks_5_content_heading','FAQ\'s'),(317966,42539,'_blocks_5_content_heading','field_64d237e8bb1e3'),(317967,42539,'blocks_5_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(317968,42539,'_blocks_5_content_text','field_64d237e8bb1e4'),(317969,42539,'blocks_5_content_actions',''),(317970,42539,'_blocks_5_content_actions','field_64d237e8bb1e5'),(317971,42539,'blocks_5_content_align','left'),(317972,42539,'_blocks_5_content_align','field_64d2443e6b6aa'),(317973,42539,'blocks_5_content',''),(317974,42539,'_blocks_5_content','field_64d237e8bb1e1'),(317975,42539,'blocks_5_accordion_content','custom'),(317976,42539,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(317977,42539,'blocks_5_accordion_items_0_title','What is ELCAS?'),(317978,42539,'_blocks_5_accordion_items_0_title','field_6177e2991ac4d'),(317979,42539,'blocks_5_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(317980,42539,'_blocks_5_accordion_items_0_text','field_6177e2991ac4e'),(317981,42539,'blocks_5_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(317982,42539,'_blocks_5_accordion_items_1_title','field_6177e2991ac4d'),(317983,42539,'blocks_5_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(317984,42539,'_blocks_5_accordion_items_1_text','field_6177e2991ac4e'),(317985,42539,'blocks_5_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(317986,42539,'_blocks_5_accordion_items_2_title','field_6177e2991ac4d'),(317987,42539,'blocks_5_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(317988,42539,'_blocks_5_accordion_items_2_text','field_6177e2991ac4e'),(317989,42539,'blocks_5_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(317990,42539,'_blocks_5_accordion_items_3_title','field_6177e2991ac4d'),(317991,42539,'blocks_5_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(317992,42539,'_blocks_5_accordion_items_3_text','field_6177e2991ac4e'),(317993,42539,'blocks_5_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(317994,42539,'_blocks_5_accordion_items_4_title','field_6177e2991ac4d'),(317995,42539,'blocks_5_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(317996,42539,'_blocks_5_accordion_items_4_text','field_6177e2991ac4e'),(317997,42539,'blocks_5_accordion_items','5'),(317998,42539,'_blocks_5_accordion_items','field_6177e2991ac4c'),(317999,42539,'blocks_5_actions',''),(318000,42539,'_blocks_5_actions','field_61a746a817f7a'),(318001,42539,'blocks_1_acfe_flexible_toggle',''),(318002,42539,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(318003,42539,'blocks_1_acfe_flexible_layout_title','Text Block'),(318004,42539,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(318005,42539,'blocks_1_options_theme','#ffffff'),(318006,42539,'_blocks_1_options_theme','field_6176830e2ad17'),(318007,42539,'blocks_1_options',''),(318008,42539,'_blocks_1_options','field_6176830e2ad16'),(318009,42539,'blocks_1_text_block_heading','Why choose Biomechanics Education'),(318010,42539,'_blocks_1_text_block_heading','field_617669d413097'),(318011,42539,'blocks_1_text_block_content',''),(318012,42539,'_blocks_1_text_block_content','field_617669ec13098'),(318013,42539,'blocks_2_acfe_flexible_toggle',''),(318014,42539,'_blocks_2_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(318015,42539,'blocks_2_acfe_flexible_layout_title','Tabs'),(318016,42539,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(318017,42539,'blocks_2_options_theme','#ffffff'),(318018,42539,'_blocks_2_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(318019,42539,'blocks_2_options',''),(318020,42539,'_blocks_2_options','field_6177cfcd8140f'),(318021,42539,'blocks_2_tabs_0_tab_label','Specialist Training'),(318022,42539,'_blocks_2_tabs_0_tab_label','field_6177d0068141a'),(318023,42539,'blocks_2_tabs_0_tab_content_title',''),(318024,42539,'_blocks_2_tabs_0_tab_content_title','field_6177cfcd81414'),(318025,42539,'blocks_2_tabs_0_tab_content_heading','Specialist Training'),(318026,42539,'_blocks_2_tabs_0_tab_content_heading','field_6177cfcd81415'),(318027,42539,'blocks_2_tabs_0_tab_content_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(318028,42539,'_blocks_2_tabs_0_tab_content_text','field_6177cfcd81416'),(318029,42539,'blocks_2_tabs_0_tab_content_actions',''),(318030,42539,'_blocks_2_tabs_0_tab_content_actions','field_6177cfcd81417'),(318031,42539,'blocks_2_tabs_0_tab_content',''),(318032,42539,'_blocks_2_tabs_0_tab_content','field_6177cfcd81413'),(318033,42539,'blocks_2_tabs_0_tab_image','41301'),(318034,42539,'_blocks_2_tabs_0_tab_image','field_6177cfcd81412'),(318035,42539,'blocks_2_tabs_1_tab_label','Career Flexibility'),(318036,42539,'_blocks_2_tabs_1_tab_label','field_6177d0068141a'),(318037,42539,'blocks_2_tabs_1_tab_content_title',''),(318038,42539,'_blocks_2_tabs_1_tab_content_title','field_6177cfcd81414'),(318039,42539,'blocks_2_tabs_1_tab_content_heading','Career Flexibility'),(318040,42539,'_blocks_2_tabs_1_tab_content_heading','field_6177cfcd81415'),(318041,42539,'blocks_2_tabs_1_tab_content_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(318042,42539,'_blocks_2_tabs_1_tab_content_text','field_6177cfcd81416'),(318043,42539,'blocks_2_tabs_1_tab_content_actions',''),(318044,42539,'_blocks_2_tabs_1_tab_content_actions','field_6177cfcd81417'),(318045,42539,'blocks_2_tabs_1_tab_content',''),(318046,42539,'_blocks_2_tabs_1_tab_content','field_6177cfcd81413'),(318047,42539,'blocks_2_tabs_1_tab_image','40839'),(318048,42539,'_blocks_2_tabs_1_tab_image','field_6177cfcd81412'),(318049,42539,'blocks_2_tabs_2_tab_label','Recognised Qualification'),(318050,42539,'_blocks_2_tabs_2_tab_label','field_6177d0068141a'),(318051,42539,'blocks_2_tabs_2_tab_content_title',''),(318052,42539,'_blocks_2_tabs_2_tab_content_title','field_6177cfcd81414'),(318053,42539,'blocks_2_tabs_2_tab_content_heading','Recognised Qualification'),(318054,42539,'_blocks_2_tabs_2_tab_content_heading','field_6177cfcd81415'),(318055,42539,'blocks_2_tabs_2_tab_content_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(318056,42539,'_blocks_2_tabs_2_tab_content_text','field_6177cfcd81416'),(318057,42539,'blocks_2_tabs_2_tab_content_actions',''),(318058,42539,'_blocks_2_tabs_2_tab_content_actions','field_6177cfcd81417'),(318059,42539,'blocks_2_tabs_2_tab_content',''),(318060,42539,'_blocks_2_tabs_2_tab_content','field_6177cfcd81413'),(318061,42539,'blocks_2_tabs_2_tab_image','41300'),(318062,42539,'_blocks_2_tabs_2_tab_image','field_6177cfcd81412'),(318063,42539,'blocks_2_tabs_3_tab_label','Funding Available'),(318064,42539,'_blocks_2_tabs_3_tab_label','field_6177d0068141a'),(318065,42539,'blocks_2_tabs_3_tab_content_title',''),(318066,42539,'_blocks_2_tabs_3_tab_content_title','field_6177cfcd81414'),(318067,42539,'blocks_2_tabs_3_tab_content_heading','Funding Available'),(318068,42539,'_blocks_2_tabs_3_tab_content_heading','field_6177cfcd81415'),(318069,42539,'blocks_2_tabs_3_tab_content_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(318070,42539,'_blocks_2_tabs_3_tab_content_text','field_6177cfcd81416'),(318071,42539,'blocks_2_tabs_3_tab_content_actions',''),(318072,42539,'_blocks_2_tabs_3_tab_content_actions','field_6177cfcd81417'),(318073,42539,'blocks_2_tabs_3_tab_content',''),(318074,42539,'_blocks_2_tabs_3_tab_content','field_6177cfcd81413'),(318075,42539,'blocks_2_tabs_3_tab_image','41299'),(318076,42539,'_blocks_2_tabs_3_tab_image','field_6177cfcd81412'),(318077,42539,'blocks_2_tabs','4'),(318078,42539,'_blocks_2_tabs','field_6177cff281419'),(318079,42539,'blocks_3_acfe_flexible_toggle',''),(318080,42539,'_blocks_3_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(318081,42539,'blocks_3_acfe_flexible_layout_title','Form'),(318082,42539,'_blocks_3_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(318083,42539,'blocks_3_row_content_format','standard'),(318084,42539,'_blocks_3_row_content_format','field_6481ead962881'),(318085,42539,'blocks_3_row_content_title',''),(318086,42539,'_blocks_3_row_content_title','field_61a0f5f5b3db1'),(318087,42539,'blocks_3_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(318088,42539,'_blocks_3_row_content_heading','field_61a0f5f5b3db2'),(318089,42539,'blocks_3_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(318090,42539,'_blocks_3_row_content_text','field_61a0f5f5b3db3'),(318091,42539,'blocks_3_row_content_actions',''),(318092,42539,'_blocks_3_row_content_actions','field_61a0f5f5b3db4'),(318093,42539,'blocks_3_row_content',''),(318094,42539,'_blocks_3_row_content','field_61a0f5f5b3db0'),(318095,42539,'blocks_3_row_form','40394'),(318096,42539,'_blocks_3_row_form','field_61a4ff2c0b08e'),(318097,42539,'blocks_3_row_form_button_label',''),(318098,42539,'_blocks_3_row_form_button_label','field_61e12cf6fe412'),(318099,42539,'blocks_4_acfe_flexible_toggle',''),(318100,42539,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(318101,42539,'blocks_4_acfe_flexible_layout_title','Timeline'),(318102,42539,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(318103,42539,'blocks_4_options_theme','#ffffff'),(318104,42539,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(318105,42539,'blocks_4_options',''),(318106,42539,'_blocks_4_options','field_6177de53d1195'),(318107,42539,'blocks_4_timeline_content_title',''),(318108,42539,'_blocks_4_timeline_content_title','field_6177de53d1198'),(318109,42539,'blocks_4_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(318110,42539,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(318111,42539,'blocks_4_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(318112,42539,'_blocks_4_timeline_content_text','field_6177de53d119a'),(318113,42539,'blocks_4_timeline_content_actions',''),(318114,42539,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(318115,42539,'blocks_4_timeline_content',''),(318116,42539,'_blocks_4_timeline_content','field_6177de53d1197'),(318117,42539,'blocks_4_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(318118,42539,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(318119,42539,'blocks_4_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(318120,42539,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(318121,42539,'blocks_4_timeline_items_1_title','Send your fully completed form to ELCAS'),(318122,42539,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(318123,42539,'blocks_4_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(318124,42539,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(318125,42539,'blocks_4_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(318126,42539,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(318127,42539,'blocks_4_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(318128,42539,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(318129,42539,'blocks_4_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(318130,42539,'_blocks_4_timeline_items_3_title','field_6177de53d119f'),(318131,42539,'blocks_4_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(318132,42539,'_blocks_4_timeline_items_3_text','field_6177de53d11a0'),(318133,42539,'blocks_4_timeline_items','4'),(318134,42539,'_blocks_4_timeline_items','field_6177de53d119d'),(318135,42536,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(318136,42536,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(318267,42540,'hide_hero','0'),(318268,42540,'_hide_hero','field_66a2380fcda39'),(318269,42540,'fft_hide_from_listings','0'),(318270,42540,'_fft_hide_from_listings','field_61f1320446ab2'),(318271,42540,'fft_page_format','default'),(318272,42540,'_fft_page_format','field_61ae213f1f218'),(318273,42540,'fft_hide_nav','0'),(318274,42540,'_fft_hide_nav','field_635bd5e43527c'),(318275,42540,'fft_hide_header_call_to_action','0'),(318276,42540,'_fft_hide_header_call_to_action','field_635bd6723527d'),(318277,42540,'fft_page_sitemap','0'),(318278,42540,'_fft_page_sitemap','field_61af9b34e8181'),(318279,42540,'blocks','a:7:{i:0;s:10:\"split_5050\";i:1;s:10:\"text_block\";i:2;s:4:\"tabs\";i:3;s:10:\"split_5050\";i:4;s:4:\"form\";i:5;s:13:\"step_timeline\";i:6;s:10:\"accordions\";}'),(318280,42540,'_blocks','field_6176696113096'),(318281,42540,'_thumbnail_id','40818'),(318282,42540,'__thumbnail_id','field_617570855ddaf'),(318283,42540,'hero_title',''),(318284,42540,'_hero_title','field_617571fe285e8'),(318285,42540,'hero_text',''),(318286,42540,'_hero_text','field_6175723c285e9'),(318287,42540,'hero_actions',''),(318288,42540,'_hero_actions','field_61757270285ea'),(318289,42540,'hero_style','default'),(318290,42540,'_hero_style','field_62051d9dc5324'),(318291,42540,'hero_image_pos_x','right'),(318292,42540,'_hero_image_pos_x','field_62ec3d05390bb'),(318293,42540,'hero_image_pos_y','top'),(318294,42540,'_hero_image_pos_y','field_62ec3d05390bc'),(318295,42540,'hero_image_pos',''),(318296,42540,'_hero_image_pos','field_62ec3d05390ba'),(318297,42540,'blocks_0_acfe_flexible_toggle',''),(318298,42540,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(318299,42540,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(318300,42540,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(318301,42540,'blocks_0_options_theme','#ffffff'),(318302,42540,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(318303,42540,'blocks_0_options_reverse','0'),(318304,42540,'_blocks_0_options_reverse','field_61768049bb8ac'),(318305,42540,'blocks_0_options',''),(318306,42540,'_blocks_0_options','field_617682517c334'),(318307,42540,'blocks_0_split_5050_image','41527'),(318308,42540,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(318309,42540,'blocks_0_split_5050_video',''),(318310,42540,'_blocks_0_split_5050_video','field_6239f3160848a'),(318311,42540,'blocks_0_split_5050_content_title',''),(318312,42540,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(318313,42540,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(318314,42540,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(318315,42540,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you are looking to expand your professional skills or embark on a new career path, our internationally available training ensures you receive the highest standard of education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(318316,42540,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(318317,42540,'blocks_0_split_5050_content_actions','1'),(318318,42540,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(318319,42540,'blocks_0_split_5050_content',''),(318320,42540,'_blocks_0_split_5050_content','field_61767afceb8ba'),(318321,42540,'blocks_1_acfe_flexible_toggle',''),(318322,42540,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(318323,42540,'blocks_1_acfe_flexible_layout_title','Text Block'),(318324,42540,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(318325,42540,'blocks_1_options_theme','#ffffff'),(318326,42540,'_blocks_1_options_theme','field_6176830e2ad17'),(318327,42540,'blocks_1_options',''),(318328,42540,'_blocks_1_options','field_6176830e2ad16'),(318329,42540,'blocks_1_text_block_heading','Why choose Biomechanics Education'),(318330,42540,'_blocks_1_text_block_heading','field_617669d413097'),(318331,42540,'blocks_1_text_block_content',''),(318332,42540,'_blocks_1_text_block_content','field_617669ec13098'),(318333,42540,'blocks_2_acfe_flexible_toggle',''),(318334,42540,'_blocks_2_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(318335,42540,'blocks_2_acfe_flexible_layout_title','Tabs'),(318336,42540,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(318337,42540,'blocks_2_options_theme','#ffffff'),(318338,42540,'_blocks_2_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(318339,42540,'blocks_2_options',''),(318340,42540,'_blocks_2_options','field_6177cfcd8140f'),(318341,42540,'blocks_2_tabs_0_tab_label','Specialist Training'),(318342,42540,'_blocks_2_tabs_0_tab_label','field_6177d0068141a'),(318343,42540,'blocks_2_tabs_0_tab_content_title',''),(318344,42540,'_blocks_2_tabs_0_tab_content_title','field_6177cfcd81414'),(318345,42540,'blocks_2_tabs_0_tab_content_heading','Specialist Training'),(318346,42540,'_blocks_2_tabs_0_tab_content_heading','field_6177cfcd81415'),(318347,42540,'blocks_2_tabs_0_tab_content_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(318348,42540,'_blocks_2_tabs_0_tab_content_text','field_6177cfcd81416'),(318349,42540,'blocks_2_tabs_0_tab_content_actions',''),(318350,42540,'_blocks_2_tabs_0_tab_content_actions','field_6177cfcd81417'),(318351,42540,'blocks_2_tabs_0_tab_content',''),(318352,42540,'_blocks_2_tabs_0_tab_content','field_6177cfcd81413'),(318353,42540,'blocks_2_tabs_0_tab_image','41301'),(318354,42540,'_blocks_2_tabs_0_tab_image','field_6177cfcd81412'),(318355,42540,'blocks_2_tabs_1_tab_label','Career Flexibility'),(318356,42540,'_blocks_2_tabs_1_tab_label','field_6177d0068141a'),(318357,42540,'blocks_2_tabs_1_tab_content_title',''),(318358,42540,'_blocks_2_tabs_1_tab_content_title','field_6177cfcd81414'),(318359,42540,'blocks_2_tabs_1_tab_content_heading','Career Flexibility'),(318360,42540,'_blocks_2_tabs_1_tab_content_heading','field_6177cfcd81415'),(318361,42540,'blocks_2_tabs_1_tab_content_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(318362,42540,'_blocks_2_tabs_1_tab_content_text','field_6177cfcd81416'),(318363,42540,'blocks_2_tabs_1_tab_content_actions',''),(318364,42540,'_blocks_2_tabs_1_tab_content_actions','field_6177cfcd81417'),(318365,42540,'blocks_2_tabs_1_tab_content',''),(318366,42540,'_blocks_2_tabs_1_tab_content','field_6177cfcd81413'),(318367,42540,'blocks_2_tabs_1_tab_image','40839'),(318368,42540,'_blocks_2_tabs_1_tab_image','field_6177cfcd81412'),(318369,42540,'blocks_2_tabs_2_tab_label','Recognised Qualification'),(318370,42540,'_blocks_2_tabs_2_tab_label','field_6177d0068141a'),(318371,42540,'blocks_2_tabs_2_tab_content_title',''),(318372,42540,'_blocks_2_tabs_2_tab_content_title','field_6177cfcd81414'),(318373,42540,'blocks_2_tabs_2_tab_content_heading','Recognised Qualification'),(318374,42540,'_blocks_2_tabs_2_tab_content_heading','field_6177cfcd81415'),(318375,42540,'blocks_2_tabs_2_tab_content_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(318376,42540,'_blocks_2_tabs_2_tab_content_text','field_6177cfcd81416'),(318377,42540,'blocks_2_tabs_2_tab_content_actions',''),(318378,42540,'_blocks_2_tabs_2_tab_content_actions','field_6177cfcd81417'),(318379,42540,'blocks_2_tabs_2_tab_content',''),(318380,42540,'_blocks_2_tabs_2_tab_content','field_6177cfcd81413'),(318381,42540,'blocks_2_tabs_2_tab_image','41300'),(318382,42540,'_blocks_2_tabs_2_tab_image','field_6177cfcd81412'),(318383,42540,'blocks_2_tabs_3_tab_label','Funding Available'),(318384,42540,'_blocks_2_tabs_3_tab_label','field_6177d0068141a'),(318385,42540,'blocks_2_tabs_3_tab_content_title',''),(318386,42540,'_blocks_2_tabs_3_tab_content_title','field_6177cfcd81414'),(318387,42540,'blocks_2_tabs_3_tab_content_heading','Funding Available'),(318388,42540,'_blocks_2_tabs_3_tab_content_heading','field_6177cfcd81415'),(318389,42540,'blocks_2_tabs_3_tab_content_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(318390,42540,'_blocks_2_tabs_3_tab_content_text','field_6177cfcd81416'),(318391,42540,'blocks_2_tabs_3_tab_content_actions',''),(318392,42540,'_blocks_2_tabs_3_tab_content_actions','field_6177cfcd81417'),(318393,42540,'blocks_2_tabs_3_tab_content',''),(318394,42540,'_blocks_2_tabs_3_tab_content','field_6177cfcd81413'),(318395,42540,'blocks_2_tabs_3_tab_image','41299'),(318396,42540,'_blocks_2_tabs_3_tab_image','field_6177cfcd81412'),(318397,42540,'blocks_2_tabs','4'),(318398,42540,'_blocks_2_tabs','field_6177cff281419'),(318399,42540,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(318400,42540,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(318401,42540,'blocks_3_acfe_flexible_toggle',''),(318402,42540,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(318403,42540,'blocks_3_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(318404,42540,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(318405,42540,'blocks_3_options_theme','#ffffff'),(318406,42540,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(318407,42540,'blocks_3_options_reverse','1'),(318408,42540,'_blocks_3_options_reverse','field_61768049bb8ac'),(318409,42540,'blocks_3_options',''),(318410,42540,'_blocks_3_options','field_617682517c334'),(318411,42540,'blocks_3_split_5050_image','41312'),(318412,42540,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(318413,42540,'blocks_3_split_5050_video',''),(318414,42540,'_blocks_3_split_5050_video','field_6239f3160848a'),(318415,42540,'blocks_3_split_5050_content_title',''),(318416,42540,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(318417,42540,'blocks_3_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(318418,42540,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(318419,42540,'blocks_3_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our online learning platform, our programmes provide the flexibility to suit your needs while maintaining the high standards of education Biomechanics Education is known for.'),(318420,42540,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(318421,42540,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(318422,42540,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(318423,42540,'blocks_3_split_5050_content_actions','1'),(318424,42540,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(318425,42540,'blocks_3_split_5050_content',''),(318426,42540,'_blocks_3_split_5050_content','field_61767afceb8ba'),(318427,42540,'blocks_4_acfe_flexible_toggle',''),(318428,42540,'_blocks_4_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(318429,42540,'blocks_4_acfe_flexible_layout_title','Form'),(318430,42540,'_blocks_4_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(318431,42540,'blocks_4_row_content_format','standard'),(318432,42540,'_blocks_4_row_content_format','field_6481ead962881'),(318433,42540,'blocks_4_row_content_title',''),(318434,42540,'_blocks_4_row_content_title','field_61a0f5f5b3db1'),(318435,42540,'blocks_4_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(318436,42540,'_blocks_4_row_content_heading','field_61a0f5f5b3db2'),(318437,42540,'blocks_4_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(318438,42540,'_blocks_4_row_content_text','field_61a0f5f5b3db3'),(318439,42540,'blocks_4_row_content_actions',''),(318440,42540,'_blocks_4_row_content_actions','field_61a0f5f5b3db4'),(318441,42540,'blocks_4_row_content',''),(318442,42540,'_blocks_4_row_content','field_61a0f5f5b3db0'),(318443,42540,'blocks_4_row_form','40394'),(318444,42540,'_blocks_4_row_form','field_61a4ff2c0b08e'),(318445,42540,'blocks_4_row_form_button_label',''),(318446,42540,'_blocks_4_row_form_button_label','field_61e12cf6fe412'),(318447,42540,'blocks_5_acfe_flexible_toggle',''),(318448,42540,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(318449,42540,'blocks_5_acfe_flexible_layout_title','Timeline'),(318450,42540,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(318451,42540,'blocks_5_options_theme','#ffffff'),(318452,42540,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(318453,42540,'blocks_5_options',''),(318454,42540,'_blocks_5_options','field_6177de53d1195'),(318455,42540,'blocks_5_timeline_content_title',''),(318456,42540,'_blocks_5_timeline_content_title','field_6177de53d1198'),(318457,42540,'blocks_5_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(318458,42540,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(318459,42540,'blocks_5_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(318460,42540,'_blocks_5_timeline_content_text','field_6177de53d119a'),(318461,42540,'blocks_5_timeline_content_actions',''),(318462,42540,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(318463,42540,'blocks_5_timeline_content',''),(318464,42540,'_blocks_5_timeline_content','field_6177de53d1197'),(318465,42540,'blocks_5_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(318466,42540,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(318467,42540,'blocks_5_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(318468,42540,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(318469,42540,'blocks_5_timeline_items_1_title','Send your fully completed form to ELCAS'),(318470,42540,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(318471,42540,'blocks_5_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(318472,42540,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(318473,42540,'blocks_5_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(318474,42540,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(318475,42540,'blocks_5_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(318476,42540,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(318477,42540,'blocks_5_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(318478,42540,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(318479,42540,'blocks_5_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(318480,42540,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(318481,42540,'blocks_5_timeline_items','4'),(318482,42540,'_blocks_5_timeline_items','field_6177de53d119d'),(318483,42540,'blocks_6_acfe_flexible_toggle',''),(318484,42540,'_blocks_6_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(318485,42540,'blocks_6_acfe_flexible_layout_title','Accordions / FAQs'),(318486,42540,'_blocks_6_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(318487,42540,'blocks_6_options_theme','#ffffff'),(318488,42540,'_blocks_6_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(318489,42540,'blocks_6_options_state','0'),(318490,42540,'_blocks_6_options_state','field_6239fcb7508c5'),(318491,42540,'blocks_6_options',''),(318492,42540,'_blocks_6_options','field_6177e2991ac44'),(318493,42540,'blocks_6_content_title',''),(318494,42540,'_blocks_6_content_title','field_64d237e8bb1e2'),(318495,42540,'blocks_6_content_heading','FAQ\'s'),(318496,42540,'_blocks_6_content_heading','field_64d237e8bb1e3'),(318497,42540,'blocks_6_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(318498,42540,'_blocks_6_content_text','field_64d237e8bb1e4'),(318499,42540,'blocks_6_content_actions',''),(318500,42540,'_blocks_6_content_actions','field_64d237e8bb1e5'),(318501,42540,'blocks_6_content_align','left'),(318502,42540,'_blocks_6_content_align','field_64d2443e6b6aa'),(318503,42540,'blocks_6_content',''),(318504,42540,'_blocks_6_content','field_64d237e8bb1e1'),(318505,42540,'blocks_6_accordion_content','custom'),(318506,42540,'_blocks_6_accordion_content','field_6177e2c81ac4f'),(318507,42540,'blocks_6_accordion_items_0_title','What is ELCAS?'),(318508,42540,'_blocks_6_accordion_items_0_title','field_6177e2991ac4d'),(318509,42540,'blocks_6_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(318510,42540,'_blocks_6_accordion_items_0_text','field_6177e2991ac4e'),(318511,42540,'blocks_6_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(318512,42540,'_blocks_6_accordion_items_1_title','field_6177e2991ac4d'),(318513,42540,'blocks_6_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(318514,42540,'_blocks_6_accordion_items_1_text','field_6177e2991ac4e'),(318515,42540,'blocks_6_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(318516,42540,'_blocks_6_accordion_items_2_title','field_6177e2991ac4d'),(318517,42540,'blocks_6_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(318518,42540,'_blocks_6_accordion_items_2_text','field_6177e2991ac4e'),(318519,42540,'blocks_6_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(318520,42540,'_blocks_6_accordion_items_3_title','field_6177e2991ac4d'),(318521,42540,'blocks_6_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(318522,42540,'_blocks_6_accordion_items_3_text','field_6177e2991ac4e'),(318523,42540,'blocks_6_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(318524,42540,'_blocks_6_accordion_items_4_title','field_6177e2991ac4d'),(318525,42540,'blocks_6_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(318526,42540,'_blocks_6_accordion_items_4_text','field_6177e2991ac4e'),(318527,42540,'blocks_6_accordion_items','5'),(318528,42540,'_blocks_6_accordion_items','field_6177e2991ac4c'),(318529,42540,'blocks_6_actions',''),(318530,42540,'_blocks_6_actions','field_61a746a817f7a'),(318673,42541,'hide_hero','0'),(318674,42541,'_hide_hero','field_66a2380fcda39'),(318675,42541,'fft_hide_from_listings','0'),(318676,42541,'_fft_hide_from_listings','field_61f1320446ab2'),(318677,42541,'fft_page_format','default'),(318678,42541,'_fft_page_format','field_61ae213f1f218'),(318679,42541,'fft_hide_nav','0'),(318680,42541,'_fft_hide_nav','field_635bd5e43527c'),(318681,42541,'fft_hide_header_call_to_action','0'),(318682,42541,'_fft_hide_header_call_to_action','field_635bd6723527d'),(318683,42541,'fft_page_sitemap','0'),(318684,42541,'_fft_page_sitemap','field_61af9b34e8181'),(318685,42541,'blocks','a:10:{i:0;s:10:\"split_5050\";i:1;s:10:\"text_block\";i:2;s:4:\"tabs\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:5:\"quote\";i:7;s:13:\"step_timeline\";i:8;s:4:\"form\";i:9;s:10:\"accordions\";}'),(318686,42541,'_blocks','field_6176696113096'),(318687,42541,'_thumbnail_id','40818'),(318688,42541,'__thumbnail_id','field_617570855ddaf'),(318689,42541,'hero_title',''),(318690,42541,'_hero_title','field_617571fe285e8'),(318691,42541,'hero_text',''),(318692,42541,'_hero_text','field_6175723c285e9'),(318693,42541,'hero_actions',''),(318694,42541,'_hero_actions','field_61757270285ea'),(318695,42541,'hero_style','default'),(318696,42541,'_hero_style','field_62051d9dc5324'),(318697,42541,'hero_image_pos_x','right'),(318698,42541,'_hero_image_pos_x','field_62ec3d05390bb'),(318699,42541,'hero_image_pos_y','top'),(318700,42541,'_hero_image_pos_y','field_62ec3d05390bc'),(318701,42541,'hero_image_pos',''),(318702,42541,'_hero_image_pos','field_62ec3d05390ba'),(318703,42541,'blocks_0_acfe_flexible_toggle',''),(318704,42541,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(318705,42541,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(318706,42541,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(318707,42541,'blocks_0_options_theme','#ffffff'),(318708,42541,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(318709,42541,'blocks_0_options_reverse','0'),(318710,42541,'_blocks_0_options_reverse','field_61768049bb8ac'),(318711,42541,'blocks_0_options',''),(318712,42541,'_blocks_0_options','field_617682517c334'),(318713,42541,'blocks_0_split_5050_image','41527'),(318714,42541,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(318715,42541,'blocks_0_split_5050_video',''),(318716,42541,'_blocks_0_split_5050_video','field_6239f3160848a'),(318717,42541,'blocks_0_split_5050_content_title',''),(318718,42541,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(318719,42541,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(318720,42541,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(318721,42541,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you are looking to expand your professional skills or embark on a new career path, our internationally available training ensures you receive the highest standard of education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(318722,42541,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(318723,42541,'blocks_0_split_5050_content_actions','1'),(318724,42541,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(318725,42541,'blocks_0_split_5050_content',''),(318726,42541,'_blocks_0_split_5050_content','field_61767afceb8ba'),(318727,42541,'blocks_1_acfe_flexible_toggle',''),(318728,42541,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(318729,42541,'blocks_1_acfe_flexible_layout_title','Text Block'),(318730,42541,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(318731,42541,'blocks_1_options_theme','#ffffff'),(318732,42541,'_blocks_1_options_theme','field_6176830e2ad17'),(318733,42541,'blocks_1_options',''),(318734,42541,'_blocks_1_options','field_6176830e2ad16'),(318735,42541,'blocks_1_text_block_heading','Why choose Biomechanics Education'),(318736,42541,'_blocks_1_text_block_heading','field_617669d413097'),(318737,42541,'blocks_1_text_block_content',''),(318738,42541,'_blocks_1_text_block_content','field_617669ec13098'),(318739,42541,'blocks_2_acfe_flexible_toggle',''),(318740,42541,'_blocks_2_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(318741,42541,'blocks_2_acfe_flexible_layout_title','Tabs'),(318742,42541,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(318743,42541,'blocks_2_options_theme','#ffffff'),(318744,42541,'_blocks_2_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(318745,42541,'blocks_2_options',''),(318746,42541,'_blocks_2_options','field_6177cfcd8140f'),(318747,42541,'blocks_2_tabs_0_tab_label','Specialist Training'),(318748,42541,'_blocks_2_tabs_0_tab_label','field_6177d0068141a'),(318749,42541,'blocks_2_tabs_0_tab_content_title',''),(318750,42541,'_blocks_2_tabs_0_tab_content_title','field_6177cfcd81414'),(318751,42541,'blocks_2_tabs_0_tab_content_heading','Specialist Training'),(318752,42541,'_blocks_2_tabs_0_tab_content_heading','field_6177cfcd81415'),(318753,42541,'blocks_2_tabs_0_tab_content_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(318754,42541,'_blocks_2_tabs_0_tab_content_text','field_6177cfcd81416'),(318755,42541,'blocks_2_tabs_0_tab_content_actions',''),(318756,42541,'_blocks_2_tabs_0_tab_content_actions','field_6177cfcd81417'),(318757,42541,'blocks_2_tabs_0_tab_content',''),(318758,42541,'_blocks_2_tabs_0_tab_content','field_6177cfcd81413'),(318759,42541,'blocks_2_tabs_0_tab_image','41301'),(318760,42541,'_blocks_2_tabs_0_tab_image','field_6177cfcd81412'),(318761,42541,'blocks_2_tabs_1_tab_label','Career Flexibility'),(318762,42541,'_blocks_2_tabs_1_tab_label','field_6177d0068141a'),(318763,42541,'blocks_2_tabs_1_tab_content_title',''),(318764,42541,'_blocks_2_tabs_1_tab_content_title','field_6177cfcd81414'),(318765,42541,'blocks_2_tabs_1_tab_content_heading','Career Flexibility'),(318766,42541,'_blocks_2_tabs_1_tab_content_heading','field_6177cfcd81415'),(318767,42541,'blocks_2_tabs_1_tab_content_text','As a Biomechanics Coach, you can work with athletes, rehab clients, and everyday people looking to improve their movement and reduce the risk of injury.'),(318768,42541,'_blocks_2_tabs_1_tab_content_text','field_6177cfcd81416'),(318769,42541,'blocks_2_tabs_1_tab_content_actions',''),(318770,42541,'_blocks_2_tabs_1_tab_content_actions','field_6177cfcd81417'),(318771,42541,'blocks_2_tabs_1_tab_content',''),(318772,42541,'_blocks_2_tabs_1_tab_content','field_6177cfcd81413'),(318773,42541,'blocks_2_tabs_1_tab_image','40839'),(318774,42541,'_blocks_2_tabs_1_tab_image','field_6177cfcd81412'),(318775,42541,'blocks_2_tabs_2_tab_label','Recognised Qualification'),(318776,42541,'_blocks_2_tabs_2_tab_label','field_6177d0068141a'),(318777,42541,'blocks_2_tabs_2_tab_content_title',''),(318778,42541,'_blocks_2_tabs_2_tab_content_title','field_6177cfcd81414'),(318779,42541,'blocks_2_tabs_2_tab_content_heading','Recognised Qualification'),(318780,42541,'_blocks_2_tabs_2_tab_content_heading','field_6177cfcd81415'),(318781,42541,'blocks_2_tabs_2_tab_content_text','Upon completion, you’ll receive an industry-recognised certification, opening doors in both sports performance and rehabilitation sectors.'),(318782,42541,'_blocks_2_tabs_2_tab_content_text','field_6177cfcd81416'),(318783,42541,'blocks_2_tabs_2_tab_content_actions',''),(318784,42541,'_blocks_2_tabs_2_tab_content_actions','field_6177cfcd81417'),(318785,42541,'blocks_2_tabs_2_tab_content',''),(318786,42541,'_blocks_2_tabs_2_tab_content','field_6177cfcd81413'),(318787,42541,'blocks_2_tabs_2_tab_image','41300'),(318788,42541,'_blocks_2_tabs_2_tab_image','field_6177cfcd81412'),(318789,42541,'blocks_2_tabs_3_tab_label','Funding Available'),(318790,42541,'_blocks_2_tabs_3_tab_label','field_6177d0068141a'),(318791,42541,'blocks_2_tabs_3_tab_content_title',''),(318792,42541,'_blocks_2_tabs_3_tab_content_title','field_6177cfcd81414'),(318793,42541,'blocks_2_tabs_3_tab_content_heading','Funding Available'),(318794,42541,'_blocks_2_tabs_3_tab_content_heading','field_6177cfcd81415'),(318795,42541,'blocks_2_tabs_3_tab_content_text','Use your ELCAS credits to make the transition smoother and more affordable as you embark on this rewarding new career.'),(318796,42541,'_blocks_2_tabs_3_tab_content_text','field_6177cfcd81416'),(318797,42541,'blocks_2_tabs_3_tab_content_actions',''),(318798,42541,'_blocks_2_tabs_3_tab_content_actions','field_6177cfcd81417'),(318799,42541,'blocks_2_tabs_3_tab_content',''),(318800,42541,'_blocks_2_tabs_3_tab_content','field_6177cfcd81413'),(318801,42541,'blocks_2_tabs_3_tab_image','41299'),(318802,42541,'_blocks_2_tabs_3_tab_image','field_6177cfcd81412'),(318803,42541,'blocks_2_tabs','4'),(318804,42541,'_blocks_2_tabs','field_6177cff281419'),(318805,42541,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(318806,42541,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(318807,42541,'blocks_3_acfe_flexible_toggle',''),(318808,42541,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(318809,42541,'blocks_3_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(318810,42541,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(318811,42541,'blocks_3_options_theme','#ffffff'),(318812,42541,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(318813,42541,'blocks_3_options_reverse','1'),(318814,42541,'_blocks_3_options_reverse','field_61768049bb8ac'),(318815,42541,'blocks_3_options',''),(318816,42541,'_blocks_3_options','field_617682517c334'),(318817,42541,'blocks_3_split_5050_image','41312'),(318818,42541,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(318819,42541,'blocks_3_split_5050_video',''),(318820,42541,'_blocks_3_split_5050_video','field_6239f3160848a'),(318821,42541,'blocks_3_split_5050_content_title',''),(318822,42541,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(318823,42541,'blocks_3_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(318824,42541,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(318825,42541,'blocks_3_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our online learning platform, our programmes provide the flexibility to suit your needs while maintaining the high standards of education Biomechanics Education is known for.'),(318826,42541,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(318827,42541,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(318828,42541,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(318829,42541,'blocks_3_split_5050_content_actions','1'),(318830,42541,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(318831,42541,'blocks_3_split_5050_content',''),(318832,42541,'_blocks_3_split_5050_content','field_61767afceb8ba'),(318833,42541,'blocks_4_acfe_flexible_toggle',''),(318834,42541,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(318835,42541,'blocks_4_acfe_flexible_layout_title','Text Block'),(318836,42541,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(318837,42541,'blocks_4_options_theme','#ffffff'),(318838,42541,'_blocks_4_options_theme','field_6176830e2ad17'),(318839,42541,'blocks_4_options',''),(318840,42541,'_blocks_4_options','field_6176830e2ad16'),(318841,42541,'blocks_4_text_block_heading','Our Popular Courses:'),(318842,42541,'_blocks_4_text_block_heading','field_617669d413097'),(318843,42541,'blocks_4_text_block_content',''),(318844,42541,'_blocks_4_text_block_content','field_617669ec13098'),(318845,42541,'blocks_5_acfe_flexible_toggle',''),(318846,42541,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(318847,42541,'blocks_5_acfe_flexible_layout_title','Cards'),(318848,42541,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(318849,42541,'blocks_5_options_theme','#ffffff'),(318850,42541,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(318851,42541,'blocks_5_options_format','carousel'),(318852,42541,'_blocks_5_options_format','field_617a7b15245b5'),(318853,42541,'blocks_5_options_style','default'),(318854,42541,'_blocks_5_options_style','field_6278ffb63484a'),(318855,42541,'blocks_5_options_cards_current_listing','0'),(318856,42541,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(318857,42541,'blocks_5_options_cards_content','selection'),(318858,42541,'_blocks_5_options_cards_content','field_617aba6122688'),(318859,42541,'blocks_5_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(318860,42541,'_blocks_5_options_cards_select_posts','field_6193f85fbaea1'),(318861,42541,'blocks_5_options',''),(318862,42541,'_blocks_5_options','field_617a7b15245b3'),(318863,42541,'blocks_6_acfe_flexible_toggle',''),(318864,42541,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(318865,42541,'blocks_6_acfe_flexible_layout_title','Quote'),(318866,42541,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(318867,42541,'blocks_6_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(318868,42541,'_blocks_6_quote_content','field_6177cdacdd67a'),(318869,42541,'blocks_6_quote_author','Alex Carter, Certified Biomechanics Coach'),(318870,42541,'_blocks_6_quote_author','field_6177cdc6dd67b'),(318871,42541,'blocks_7_acfe_flexible_toggle',''),(318872,42541,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(318873,42541,'blocks_7_acfe_flexible_layout_title','Timeline'),(318874,42541,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(318875,42541,'blocks_7_options_theme','#ffffff'),(318876,42541,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(318877,42541,'blocks_7_options',''),(318878,42541,'_blocks_7_options','field_6177de53d1195'),(318879,42541,'blocks_7_timeline_content_title',''),(318880,42541,'_blocks_7_timeline_content_title','field_6177de53d1198'),(318881,42541,'blocks_7_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(318882,42541,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(318883,42541,'blocks_7_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(318884,42541,'_blocks_7_timeline_content_text','field_6177de53d119a'),(318885,42541,'blocks_7_timeline_content_actions',''),(318886,42541,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(318887,42541,'blocks_7_timeline_content',''),(318888,42541,'_blocks_7_timeline_content','field_6177de53d1197'),(318889,42541,'blocks_7_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(318890,42541,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(318891,42541,'blocks_7_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(318892,42541,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(318893,42541,'blocks_7_timeline_items_1_title','Send your fully completed form to ELCAS'),(318894,42541,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(318895,42541,'blocks_7_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(318896,42541,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(318897,42541,'blocks_7_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(318898,42541,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(318899,42541,'blocks_7_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(318900,42541,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(318901,42541,'blocks_7_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(318902,42541,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(318903,42541,'blocks_7_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(318904,42541,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(318905,42541,'blocks_7_timeline_items','4'),(318906,42541,'_blocks_7_timeline_items','field_6177de53d119d'),(318907,42541,'blocks_8_acfe_flexible_toggle',''),(318908,42541,'_blocks_8_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(318909,42541,'blocks_8_acfe_flexible_layout_title','Form'),(318910,42541,'_blocks_8_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(318911,42541,'blocks_8_row_content_format','standard'),(318912,42541,'_blocks_8_row_content_format','field_6481ead962881'),(318913,42541,'blocks_8_row_content_title',''),(318914,42541,'_blocks_8_row_content_title','field_61a0f5f5b3db1'),(318915,42541,'blocks_8_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(318916,42541,'_blocks_8_row_content_heading','field_61a0f5f5b3db2'),(318917,42541,'blocks_8_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(318918,42541,'_blocks_8_row_content_text','field_61a0f5f5b3db3'),(318919,42541,'blocks_8_row_content_actions',''),(318920,42541,'_blocks_8_row_content_actions','field_61a0f5f5b3db4'),(318921,42541,'blocks_8_row_content',''),(318922,42541,'_blocks_8_row_content','field_61a0f5f5b3db0'),(318923,42541,'blocks_8_row_form','40394'),(318924,42541,'_blocks_8_row_form','field_61a4ff2c0b08e'),(318925,42541,'blocks_8_row_form_button_label',''),(318926,42541,'_blocks_8_row_form_button_label','field_61e12cf6fe412'),(318927,42541,'blocks_9_acfe_flexible_toggle',''),(318928,42541,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(318929,42541,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(318930,42541,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(318931,42541,'blocks_9_options_theme','#ffffff'),(318932,42541,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(318933,42541,'blocks_9_options_state','0'),(318934,42541,'_blocks_9_options_state','field_6239fcb7508c5'),(318935,42541,'blocks_9_options',''),(318936,42541,'_blocks_9_options','field_6177e2991ac44'),(318937,42541,'blocks_9_content_title',''),(318938,42541,'_blocks_9_content_title','field_64d237e8bb1e2'),(318939,42541,'blocks_9_content_heading','FAQ\'s'),(318940,42541,'_blocks_9_content_heading','field_64d237e8bb1e3'),(318941,42541,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(318942,42541,'_blocks_9_content_text','field_64d237e8bb1e4'),(318943,42541,'blocks_9_content_actions',''),(318944,42541,'_blocks_9_content_actions','field_64d237e8bb1e5'),(318945,42541,'blocks_9_content_align','left'),(318946,42541,'_blocks_9_content_align','field_64d2443e6b6aa'),(318947,42541,'blocks_9_content',''),(318948,42541,'_blocks_9_content','field_64d237e8bb1e1'),(318949,42541,'blocks_9_accordion_content','custom'),(318950,42541,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(318951,42541,'blocks_9_accordion_items_0_title','What is ELCAS?'),(318952,42541,'_blocks_9_accordion_items_0_title','field_6177e2991ac4d'),(318953,42541,'blocks_9_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(318954,42541,'_blocks_9_accordion_items_0_text','field_6177e2991ac4e'),(318955,42541,'blocks_9_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(318956,42541,'_blocks_9_accordion_items_1_title','field_6177e2991ac4d'),(318957,42541,'blocks_9_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(318958,42541,'_blocks_9_accordion_items_1_text','field_6177e2991ac4e'),(318959,42541,'blocks_9_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(318960,42541,'_blocks_9_accordion_items_2_title','field_6177e2991ac4d'),(318961,42541,'blocks_9_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(318962,42541,'_blocks_9_accordion_items_2_text','field_6177e2991ac4e'),(318963,42541,'blocks_9_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(318964,42541,'_blocks_9_accordion_items_3_title','field_6177e2991ac4d'),(318965,42541,'blocks_9_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(318966,42541,'_blocks_9_accordion_items_3_text','field_6177e2991ac4e'),(318967,42541,'blocks_9_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(318968,42541,'_blocks_9_accordion_items_4_title','field_6177e2991ac4d'),(318969,42541,'blocks_9_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(318970,42541,'_blocks_9_accordion_items_4_text','field_6177e2991ac4e'),(318971,42541,'blocks_9_accordion_items','5'),(318972,42541,'_blocks_9_accordion_items','field_6177e2991ac4c'),(318973,42541,'blocks_9_actions',''),(318974,42541,'_blocks_9_actions','field_61a746a817f7a'),(318975,42543,'hide_hero','0'),(318976,42543,'_hide_hero','field_66a2380fcda39'),(318977,42543,'fft_hide_from_listings','0'),(318978,42543,'_fft_hide_from_listings','field_61f1320446ab2'),(318979,42543,'fft_page_format','default'),(318980,42543,'_fft_page_format','field_61ae213f1f218'),(318981,42543,'fft_hide_nav','0'),(318982,42543,'_fft_hide_nav','field_635bd5e43527c'),(318983,42543,'fft_hide_header_call_to_action','0'),(318984,42543,'_fft_hide_header_call_to_action','field_635bd6723527d'),(318985,42543,'fft_page_sitemap','0'),(318986,42543,'_fft_page_sitemap','field_61af9b34e8181'),(318987,42543,'blocks','a:10:{i:0;s:10:\"split_5050\";i:1;s:10:\"text_block\";i:2;s:4:\"tabs\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:5:\"cards\";i:6;s:5:\"quote\";i:7;s:13:\"step_timeline\";i:8;s:4:\"form\";i:9;s:10:\"accordions\";}'),(318988,42543,'_blocks','field_6176696113096'),(318989,42543,'_thumbnail_id','40818'),(318990,42543,'__thumbnail_id','field_617570855ddaf'),(318991,42543,'hero_title',''),(318992,42543,'_hero_title','field_617571fe285e8'),(318993,42543,'hero_text',''),(318994,42543,'_hero_text','field_6175723c285e9'),(318995,42543,'hero_actions',''),(318996,42543,'_hero_actions','field_61757270285ea'),(318997,42543,'hero_style','default'),(318998,42543,'_hero_style','field_62051d9dc5324'),(318999,42543,'hero_image_pos_x','right'),(319000,42543,'_hero_image_pos_x','field_62ec3d05390bb'),(319001,42543,'hero_image_pos_y','top'),(319002,42543,'_hero_image_pos_y','field_62ec3d05390bc'),(319003,42543,'hero_image_pos',''),(319004,42543,'_hero_image_pos','field_62ec3d05390ba'),(319005,42543,'blocks_0_acfe_flexible_toggle',''),(319006,42543,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(319007,42543,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(319008,42543,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(319009,42543,'blocks_0_options_theme','#ffffff'),(319010,42543,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(319011,42543,'blocks_0_options_reverse','0'),(319012,42543,'_blocks_0_options_reverse','field_61768049bb8ac'),(319013,42543,'blocks_0_options',''),(319014,42543,'_blocks_0_options','field_617682517c334'),(319015,42543,'blocks_0_split_5050_image','41527'),(319016,42543,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(319017,42543,'blocks_0_split_5050_video',''),(319018,42543,'_blocks_0_split_5050_video','field_6239f3160848a'),(319019,42543,'blocks_0_split_5050_content_title',''),(319020,42543,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(319021,42543,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(319022,42543,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(319023,42543,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you are looking to expand your professional skills or embark on a new career path, our internationally available training ensures you receive the highest standard of education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(319024,42543,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(319025,42543,'blocks_0_split_5050_content_actions','1'),(319026,42543,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(319027,42543,'blocks_0_split_5050_content',''),(319028,42543,'_blocks_0_split_5050_content','field_61767afceb8ba'),(319029,42543,'blocks_1_acfe_flexible_toggle',''),(319030,42543,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(319031,42543,'blocks_1_acfe_flexible_layout_title','Text Block'),(319032,42543,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(319033,42543,'blocks_1_options_theme','#ffffff'),(319034,42543,'_blocks_1_options_theme','field_6176830e2ad17'),(319035,42543,'blocks_1_options',''),(319036,42543,'_blocks_1_options','field_6176830e2ad16'),(319037,42543,'blocks_1_text_block_heading','Why choose Biomechanics Education'),(319038,42543,'_blocks_1_text_block_heading','field_617669d413097'),(319039,42543,'blocks_1_text_block_content',''),(319040,42543,'_blocks_1_text_block_content','field_617669ec13098'),(319041,42543,'blocks_2_acfe_flexible_toggle',''),(319042,42543,'_blocks_2_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(319043,42543,'blocks_2_acfe_flexible_layout_title','Tabs'),(319044,42543,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(319045,42543,'blocks_2_options_theme','#ffffff'),(319046,42543,'_blocks_2_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(319047,42543,'blocks_2_options',''),(319048,42543,'_blocks_2_options','field_6177cfcd8140f'),(319049,42543,'blocks_2_tabs_0_tab_label','Specialist Training'),(319050,42543,'_blocks_2_tabs_0_tab_label','field_6177d0068141a'),(319051,42543,'blocks_2_tabs_0_tab_content_title',''),(319052,42543,'_blocks_2_tabs_0_tab_content_title','field_6177cfcd81414'),(319053,42543,'blocks_2_tabs_0_tab_content_heading','Specialist Training'),(319054,42543,'_blocks_2_tabs_0_tab_content_heading','field_6177cfcd81415'),(319055,42543,'blocks_2_tabs_0_tab_content_text','Our courses are rooted in over 20 years of research, providing you with gold-standard biomechanics techniques to assess and improve movement quality.'),(319056,42543,'_blocks_2_tabs_0_tab_content_text','field_6177cfcd81416'),(319057,42543,'blocks_2_tabs_0_tab_content_actions',''),(319058,42543,'_blocks_2_tabs_0_tab_content_actions','field_6177cfcd81417'),(319059,42543,'blocks_2_tabs_0_tab_content',''),(319060,42543,'_blocks_2_tabs_0_tab_content','field_6177cfcd81413'),(319061,42543,'blocks_2_tabs_0_tab_image','41301'),(319062,42543,'_blocks_2_tabs_0_tab_image','field_6177cfcd81412'),(319063,42543,'blocks_2_tabs_1_tab_label','Global Accessibility'),(319064,42543,'_blocks_2_tabs_1_tab_label','field_6177d0068141a'),(319065,42543,'blocks_2_tabs_1_tab_content_title',''),(319066,42543,'_blocks_2_tabs_1_tab_content_title','field_6177cfcd81414'),(319067,42543,'blocks_2_tabs_1_tab_content_heading','Global Accessibility'),(319068,42543,'_blocks_2_tabs_1_tab_content_heading','field_6177cfcd81415'),(319069,42543,'blocks_2_tabs_1_tab_content_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(319070,42543,'_blocks_2_tabs_1_tab_content_text','field_6177cfcd81416'),(319071,42543,'blocks_2_tabs_1_tab_content_actions',''),(319072,42543,'_blocks_2_tabs_1_tab_content_actions','field_6177cfcd81417'),(319073,42543,'blocks_2_tabs_1_tab_content',''),(319074,42543,'_blocks_2_tabs_1_tab_content','field_6177cfcd81413'),(319075,42543,'blocks_2_tabs_1_tab_image','40839'),(319076,42543,'_blocks_2_tabs_1_tab_image','field_6177cfcd81412'),(319077,42543,'blocks_2_tabs_2_tab_label','Internationally Recognised Certification'),(319078,42543,'_blocks_2_tabs_2_tab_label','field_6177d0068141a'),(319079,42543,'blocks_2_tabs_2_tab_content_title',''),(319080,42543,'_blocks_2_tabs_2_tab_content_title','field_6177cfcd81414'),(319081,42543,'blocks_2_tabs_2_tab_content_heading','Internationally Recognised Certification'),(319082,42543,'_blocks_2_tabs_2_tab_content_heading','field_6177cfcd81415'),(319083,42543,'blocks_2_tabs_2_tab_content_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(319084,42543,'_blocks_2_tabs_2_tab_content_text','field_6177cfcd81416'),(319085,42543,'blocks_2_tabs_2_tab_content_actions',''),(319086,42543,'_blocks_2_tabs_2_tab_content_actions','field_6177cfcd81417'),(319087,42543,'blocks_2_tabs_2_tab_content',''),(319088,42543,'_blocks_2_tabs_2_tab_content','field_6177cfcd81413'),(319089,42543,'blocks_2_tabs_2_tab_image','41300'),(319090,42543,'_blocks_2_tabs_2_tab_image','field_6177cfcd81412'),(319091,42543,'blocks_2_tabs_3_tab_label','Career Opportunities Worldwide'),(319092,42543,'_blocks_2_tabs_3_tab_label','field_6177d0068141a'),(319093,42543,'blocks_2_tabs_3_tab_content_title',''),(319094,42543,'_blocks_2_tabs_3_tab_content_title','field_6177cfcd81414'),(319095,42543,'blocks_2_tabs_3_tab_content_heading','Career Opportunities Worldwide'),(319096,42543,'_blocks_2_tabs_3_tab_content_heading','field_6177cfcd81415'),(319097,42543,'blocks_2_tabs_3_tab_content_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(319098,42543,'_blocks_2_tabs_3_tab_content_text','field_6177cfcd81416'),(319099,42543,'blocks_2_tabs_3_tab_content_actions',''),(319100,42543,'_blocks_2_tabs_3_tab_content_actions','field_6177cfcd81417'),(319101,42543,'blocks_2_tabs_3_tab_content',''),(319102,42543,'_blocks_2_tabs_3_tab_content','field_6177cfcd81413'),(319103,42543,'blocks_2_tabs_3_tab_image','41299'),(319104,42543,'_blocks_2_tabs_3_tab_image','field_6177cfcd81412'),(319105,42543,'blocks_2_tabs','4'),(319106,42543,'_blocks_2_tabs','field_6177cff281419'),(319107,42543,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(319108,42543,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(319109,42543,'blocks_3_acfe_flexible_toggle',''),(319110,42543,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(319111,42543,'blocks_3_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(319112,42543,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(319113,42543,'blocks_3_options_theme','#ffffff'),(319114,42543,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(319115,42543,'blocks_3_options_reverse','1'),(319116,42543,'_blocks_3_options_reverse','field_61768049bb8ac'),(319117,42543,'blocks_3_options',''),(319118,42543,'_blocks_3_options','field_617682517c334'),(319119,42543,'blocks_3_split_5050_image','41312'),(319120,42543,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(319121,42543,'blocks_3_split_5050_video',''),(319122,42543,'_blocks_3_split_5050_video','field_6239f3160848a'),(319123,42543,'blocks_3_split_5050_content_title',''),(319124,42543,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(319125,42543,'blocks_3_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(319126,42543,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(319127,42543,'blocks_3_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our online learning platform, our programmes provide the flexibility to suit your needs while maintaining the high standards of education Biomechanics Education is known for.'),(319128,42543,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(319129,42543,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(319130,42543,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(319131,42543,'blocks_3_split_5050_content_actions','1'),(319132,42543,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(319133,42543,'blocks_3_split_5050_content',''),(319134,42543,'_blocks_3_split_5050_content','field_61767afceb8ba'),(319135,42543,'blocks_4_acfe_flexible_toggle',''),(319136,42543,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(319137,42543,'blocks_4_acfe_flexible_layout_title','Text Block'),(319138,42543,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(319139,42543,'blocks_4_options_theme','#ffffff'),(319140,42543,'_blocks_4_options_theme','field_6176830e2ad17'),(319141,42543,'blocks_4_options',''),(319142,42543,'_blocks_4_options','field_6176830e2ad16'),(319143,42543,'blocks_4_text_block_heading','Our Popular Courses:'),(319144,42543,'_blocks_4_text_block_heading','field_617669d413097'),(319145,42543,'blocks_4_text_block_content',''),(319146,42543,'_blocks_4_text_block_content','field_617669ec13098'),(319147,42543,'blocks_5_acfe_flexible_toggle',''),(319148,42543,'_blocks_5_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(319149,42543,'blocks_5_acfe_flexible_layout_title','Cards'),(319150,42543,'_blocks_5_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(319151,42543,'blocks_5_options_theme','#ffffff'),(319152,42543,'_blocks_5_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(319153,42543,'blocks_5_options_format','carousel'),(319154,42543,'_blocks_5_options_format','field_617a7b15245b5'),(319155,42543,'blocks_5_options_style','default'),(319156,42543,'_blocks_5_options_style','field_6278ffb63484a'),(319157,42543,'blocks_5_options_cards_current_listing','0'),(319158,42543,'_blocks_5_options_cards_current_listing','field_6193d7effb7a4'),(319159,42543,'blocks_5_options_cards_content','selection'),(319160,42543,'_blocks_5_options_cards_content','field_617aba6122688'),(319161,42543,'blocks_5_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(319162,42543,'_blocks_5_options_cards_select_posts','field_6193f85fbaea1'),(319163,42543,'blocks_5_options',''),(319164,42543,'_blocks_5_options','field_617a7b15245b3'),(319165,42543,'blocks_6_acfe_flexible_toggle',''),(319166,42543,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(319167,42543,'blocks_6_acfe_flexible_layout_title','Quote'),(319168,42543,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(319169,42543,'blocks_6_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(319170,42543,'_blocks_6_quote_content','field_6177cdacdd67a'),(319171,42543,'blocks_6_quote_author','Alex Carter, Certified Biomechanics Coach'),(319172,42543,'_blocks_6_quote_author','field_6177cdc6dd67b'),(319173,42543,'blocks_7_acfe_flexible_toggle',''),(319174,42543,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(319175,42543,'blocks_7_acfe_flexible_layout_title','Timeline'),(319176,42543,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(319177,42543,'blocks_7_options_theme','#ffffff'),(319178,42543,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(319179,42543,'blocks_7_options',''),(319180,42543,'_blocks_7_options','field_6177de53d1195'),(319181,42543,'blocks_7_timeline_content_title',''),(319182,42543,'_blocks_7_timeline_content_title','field_6177de53d1198'),(319183,42543,'blocks_7_timeline_content_heading','4 simple steps to use ELCAS funding to become a fitness professional'),(319184,42543,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(319185,42543,'blocks_7_timeline_content_text','Already left the Armed Forces? Want to become an exercise professional<span id=\"selection-marker-1\" class=\"redactor-selection-marker\"></span>?\r\n\r\nThe process is not so different, you’ll just need a couple more pieces of documentation when submitting your ELCAS application.\r\n<ol>\r\n 	<li>Evidence of your leave date (A P45, discharge document or a stamped document with your confirmed exit date).</li>\r\n 	<li>Proof of your current address (A utility bill is fine).</li>\r\n</ol>\r\nAs long as you submit your claim with ELCAS within 5 years of having left the services, you can still use your ELC payment for training and education. You are only able to make one ELCAS claim per year but if you have served between 6-8 years, you can aggregate all three of your claims together into one total claim.'),(319186,42543,'_blocks_7_timeline_content_text','field_6177de53d119a'),(319187,42543,'blocks_7_timeline_content_actions',''),(319188,42543,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(319189,42543,'blocks_7_timeline_content',''),(319190,42543,'_blocks_7_timeline_content','field_6177de53d1197'),(319191,42543,'blocks_7_timeline_items_0_title','Contact the Biomechanics Education Careers Advisors to discuss course options'),(319192,42543,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(319193,42543,'blocks_7_timeline_items_0_text','You need the course details for the ELCAS funding process but also, you want to make the right move and ensure you\'re going to be on the right path for your future career in the exercise industry.'),(319194,42543,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(319195,42543,'blocks_7_timeline_items_1_title','Send your fully completed form to ELCAS'),(319196,42543,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(319197,42543,'blocks_7_timeline_items_1_text','Your IERO will be able to provide you with an ELC form. Once you have completed this form, it is simply a matter of submitting it to ELCAS via the membership login page of the website.'),(319198,42543,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(319199,42543,'blocks_7_timeline_items_2_title','Send a full description of your intended course including details of your registration date to ELCAS'),(319200,42543,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(319201,42543,'blocks_7_timeline_items_2_text','Qualification name, duration, and level as well as any additional details requested by ELCAS. If you have questions, call your Biomechanics Education career advisor back, and they\'ll be more than happy to help you with your application.'),(319202,42543,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(319203,42543,'blocks_7_timeline_items_3_title','Send your Claim Authorisation Note (CAN) to us before the course is due to start'),(319204,42543,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(319205,42543,'blocks_7_timeline_items_3_text','Once your ELC application has been processed and accepted by ELCAS, and you have received your funding, you will receive a Claim Authorisation Note (CAN) which you need to send to us.'),(319206,42543,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(319207,42543,'blocks_7_timeline_items','4'),(319208,42543,'_blocks_7_timeline_items','field_6177de53d119d'),(319209,42543,'blocks_8_acfe_flexible_toggle',''),(319210,42543,'_blocks_8_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(319211,42543,'blocks_8_acfe_flexible_layout_title','Form'),(319212,42543,'_blocks_8_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(319213,42543,'blocks_8_row_content_format','standard'),(319214,42543,'_blocks_8_row_content_format','field_6481ead962881'),(319215,42543,'blocks_8_row_content_title',''),(319216,42543,'_blocks_8_row_content_title','field_61a0f5f5b3db1'),(319217,42543,'blocks_8_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(319218,42543,'_blocks_8_row_content_heading','field_61a0f5f5b3db2'),(319219,42543,'blocks_8_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(319220,42543,'_blocks_8_row_content_text','field_61a0f5f5b3db3'),(319221,42543,'blocks_8_row_content_actions',''),(319222,42543,'_blocks_8_row_content_actions','field_61a0f5f5b3db4'),(319223,42543,'blocks_8_row_content',''),(319224,42543,'_blocks_8_row_content','field_61a0f5f5b3db0'),(319225,42543,'blocks_8_row_form','40394'),(319226,42543,'_blocks_8_row_form','field_61a4ff2c0b08e'),(319227,42543,'blocks_8_row_form_button_label',''),(319228,42543,'_blocks_8_row_form_button_label','field_61e12cf6fe412'),(319229,42543,'blocks_9_acfe_flexible_toggle',''),(319230,42543,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(319231,42543,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(319232,42543,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(319233,42543,'blocks_9_options_theme','#ffffff'),(319234,42543,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(319235,42543,'blocks_9_options_state','0'),(319236,42543,'_blocks_9_options_state','field_6239fcb7508c5'),(319237,42543,'blocks_9_options',''),(319238,42543,'_blocks_9_options','field_6177e2991ac44'),(319239,42543,'blocks_9_content_title',''),(319240,42543,'_blocks_9_content_title','field_64d237e8bb1e2'),(319241,42543,'blocks_9_content_heading','FAQ\'s'),(319242,42543,'_blocks_9_content_heading','field_64d237e8bb1e3'),(319243,42543,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(319244,42543,'_blocks_9_content_text','field_64d237e8bb1e4'),(319245,42543,'blocks_9_content_actions',''),(319246,42543,'_blocks_9_content_actions','field_64d237e8bb1e5'),(319247,42543,'blocks_9_content_align','left'),(319248,42543,'_blocks_9_content_align','field_64d2443e6b6aa'),(319249,42543,'blocks_9_content',''),(319250,42543,'_blocks_9_content','field_64d237e8bb1e1'),(319251,42543,'blocks_9_accordion_content','custom'),(319252,42543,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(319253,42543,'blocks_9_accordion_items_0_title','What is ELCAS?'),(319254,42543,'_blocks_9_accordion_items_0_title','field_6177e2991ac4d'),(319255,42543,'blocks_9_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(319256,42543,'_blocks_9_accordion_items_0_text','field_6177e2991ac4e'),(319257,42543,'blocks_9_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(319258,42543,'_blocks_9_accordion_items_1_title','field_6177e2991ac4d'),(319259,42543,'blocks_9_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(319260,42543,'_blocks_9_accordion_items_1_text','field_6177e2991ac4e'),(319261,42543,'blocks_9_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(319262,42543,'_blocks_9_accordion_items_2_title','field_6177e2991ac4d'),(319263,42543,'blocks_9_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(319264,42543,'_blocks_9_accordion_items_2_text','field_6177e2991ac4e'),(319265,42543,'blocks_9_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(319266,42543,'_blocks_9_accordion_items_3_title','field_6177e2991ac4d'),(319267,42543,'blocks_9_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(319268,42543,'_blocks_9_accordion_items_3_text','field_6177e2991ac4e'),(319269,42543,'blocks_9_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(319270,42543,'_blocks_9_accordion_items_4_title','field_6177e2991ac4d'),(319271,42543,'blocks_9_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(319272,42543,'_blocks_9_accordion_items_4_text','field_6177e2991ac4e'),(319273,42543,'blocks_9_accordion_items','5'),(319274,42543,'_blocks_9_accordion_items','field_6177e2991ac4c'),(319275,42543,'blocks_9_actions',''),(319276,42543,'_blocks_9_actions','field_61a746a817f7a'),(319277,42536,'blocks_1_acfe_flexible_toggle',''),(319278,42536,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(319279,42536,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(319280,42536,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(319281,42536,'blocks_1_options_theme','#ffffff'),(319282,42536,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(319283,42536,'blocks_1_options_reverse','1'),(319284,42536,'_blocks_1_options_reverse','field_61768049bb8ac'),(319285,42536,'blocks_1_options',''),(319286,42536,'_blocks_1_options','field_617682517c334'),(319287,42536,'blocks_1_split_5050_image','41312'),(319288,42536,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(319289,42536,'blocks_1_split_5050_video',''),(319290,42536,'_blocks_1_split_5050_video','field_6239f3160848a'),(319291,42536,'blocks_1_split_5050_content_title','Become a Biomechanics Coach'),(319292,42536,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(319293,42536,'blocks_1_split_5050_content_heading','International Coaching Programmes'),(319294,42536,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(319295,42536,'blocks_1_split_5050_content_text','Our internationally renowned coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nCourses are blended for in-person and through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally renowned certification to boost career opportunities</li>\r\n 	<li>Learn from leading experts in biomechanics with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(319296,42536,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(319297,42536,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(319298,42536,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(319299,42536,'blocks_1_split_5050_content_actions','1'),(319300,42536,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(319301,42536,'blocks_1_split_5050_content',''),(319302,42536,'_blocks_1_split_5050_content','field_61767afceb8ba'),(319445,42544,'hide_hero','0'),(319446,42544,'_hide_hero','field_66a2380fcda39'),(319447,42544,'fft_hide_from_listings','0'),(319448,42544,'_fft_hide_from_listings','field_61f1320446ab2'),(319449,42544,'fft_page_format','default'),(319450,42544,'_fft_page_format','field_61ae213f1f218'),(319451,42544,'fft_hide_nav','0'),(319452,42544,'_fft_hide_nav','field_635bd5e43527c'),(319453,42544,'fft_hide_header_call_to_action','0'),(319454,42544,'_fft_hide_header_call_to_action','field_635bd6723527d'),(319455,42544,'fft_page_sitemap','0'),(319456,42544,'_fft_page_sitemap','field_61af9b34e8181'),(319457,42544,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:4:\"form\";i:7;s:10:\"accordions\";}'),(319458,42544,'_blocks','field_6176696113096'),(319459,42544,'_thumbnail_id','40818'),(319460,42544,'__thumbnail_id','field_617570855ddaf'),(319461,42544,'hero_title',''),(319462,42544,'_hero_title','field_617571fe285e8'),(319463,42544,'hero_text',''),(319464,42544,'_hero_text','field_6175723c285e9'),(319465,42544,'hero_actions',''),(319466,42544,'_hero_actions','field_61757270285ea'),(319467,42544,'hero_style','default'),(319468,42544,'_hero_style','field_62051d9dc5324'),(319469,42544,'hero_image_pos_x','right'),(319470,42544,'_hero_image_pos_x','field_62ec3d05390bb'),(319471,42544,'hero_image_pos_y','top'),(319472,42544,'_hero_image_pos_y','field_62ec3d05390bc'),(319473,42544,'hero_image_pos',''),(319474,42544,'_hero_image_pos','field_62ec3d05390ba'),(319475,42544,'blocks_0_acfe_flexible_toggle',''),(319476,42544,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(319477,42544,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(319478,42544,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(319479,42544,'blocks_0_options_theme','#ffffff'),(319480,42544,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(319481,42544,'blocks_0_options_reverse','0'),(319482,42544,'_blocks_0_options_reverse','field_61768049bb8ac'),(319483,42544,'blocks_0_options',''),(319484,42544,'_blocks_0_options','field_617682517c334'),(319485,42544,'blocks_0_split_5050_image','41527'),(319486,42544,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(319487,42544,'blocks_0_split_5050_video',''),(319488,42544,'_blocks_0_split_5050_video','field_6239f3160848a'),(319489,42544,'blocks_0_split_5050_content_title',''),(319490,42544,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(319491,42544,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(319492,42544,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(319493,42544,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you are looking to expand your professional skills or embark on a new career path, our internationally available training ensures you receive the highest standard of education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(319494,42544,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(319495,42544,'blocks_0_split_5050_content_actions','1'),(319496,42544,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(319497,42544,'blocks_0_split_5050_content',''),(319498,42544,'_blocks_0_split_5050_content','field_61767afceb8ba'),(319499,42544,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(319500,42544,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(319501,42544,'blocks_1_acfe_flexible_toggle',''),(319502,42544,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(319503,42544,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(319504,42544,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(319505,42544,'blocks_1_options_theme','#ffffff'),(319506,42544,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(319507,42544,'blocks_1_options_reverse','1'),(319508,42544,'_blocks_1_options_reverse','field_61768049bb8ac'),(319509,42544,'blocks_1_options',''),(319510,42544,'_blocks_1_options','field_617682517c334'),(319511,42544,'blocks_1_split_5050_image','41312'),(319512,42544,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(319513,42544,'blocks_1_split_5050_video',''),(319514,42544,'_blocks_1_split_5050_video','field_6239f3160848a'),(319515,42544,'blocks_1_split_5050_content_title',''),(319516,42544,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(319517,42544,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(319518,42544,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(319519,42544,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our online learning platform, our programmes provide the flexibility to suit your needs while maintaining the high standards of education Biomechanics Education is known for.'),(319520,42544,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(319521,42544,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(319522,42544,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(319523,42544,'blocks_1_split_5050_content_actions','1'),(319524,42544,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(319525,42544,'blocks_1_split_5050_content',''),(319526,42544,'_blocks_1_split_5050_content','field_61767afceb8ba'),(319527,42544,'blocks_2_acfe_flexible_toggle',''),(319528,42544,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(319529,42544,'blocks_2_acfe_flexible_layout_title','Text Block'),(319530,42544,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(319531,42544,'blocks_2_options_theme','#ffffff'),(319532,42544,'_blocks_2_options_theme','field_6176830e2ad17'),(319533,42544,'blocks_2_options',''),(319534,42544,'_blocks_2_options','field_6176830e2ad16'),(319535,42544,'blocks_2_text_block_heading','Our Popular Courses:'),(319536,42544,'_blocks_2_text_block_heading','field_617669d413097'),(319537,42544,'blocks_2_text_block_content',''),(319538,42544,'_blocks_2_text_block_content','field_617669ec13098'),(319539,42544,'blocks_3_acfe_flexible_toggle',''),(319540,42544,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(319541,42544,'blocks_3_acfe_flexible_layout_title','Cards'),(319542,42544,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(319543,42544,'blocks_3_options_theme','#ffffff'),(319544,42544,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(319545,42544,'blocks_3_options_format','carousel'),(319546,42544,'_blocks_3_options_format','field_617a7b15245b5'),(319547,42544,'blocks_3_options_style','default'),(319548,42544,'_blocks_3_options_style','field_6278ffb63484a'),(319549,42544,'blocks_3_options_cards_current_listing','0'),(319550,42544,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(319551,42544,'blocks_3_options_cards_content','selection'),(319552,42544,'_blocks_3_options_cards_content','field_617aba6122688'),(319553,42544,'blocks_3_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(319554,42544,'_blocks_3_options_cards_select_posts','field_6193f85fbaea1'),(319555,42544,'blocks_3_options',''),(319556,42544,'_blocks_3_options','field_617a7b15245b3'),(319557,42544,'blocks_4_acfe_flexible_toggle',''),(319558,42544,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(319559,42544,'blocks_4_acfe_flexible_layout_title','Quote'),(319560,42544,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(319561,42544,'blocks_4_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(319562,42544,'_blocks_4_quote_content','field_6177cdacdd67a'),(319563,42544,'blocks_4_quote_author','Alex Carter, Certified Biomechanics Coach'),(319564,42544,'_blocks_4_quote_author','field_6177cdc6dd67b'),(319565,42544,'blocks_5_acfe_flexible_toggle',''),(319566,42544,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(319567,42544,'blocks_5_acfe_flexible_layout_title','Timeline'),(319568,42544,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(319569,42544,'blocks_5_options_theme','#ffffff'),(319570,42544,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(319571,42544,'blocks_5_options',''),(319572,42544,'_blocks_5_options','field_6177de53d1195'),(319573,42544,'blocks_5_timeline_content_title',''),(319574,42544,'_blocks_5_timeline_content_title','field_6177de53d1198'),(319575,42544,'blocks_5_timeline_content_heading','Why choose Biomechanics Education'),(319576,42544,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(319577,42544,'blocks_5_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(319578,42544,'_blocks_5_timeline_content_text','field_6177de53d119a'),(319579,42544,'blocks_5_timeline_content_actions',''),(319580,42544,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(319581,42544,'blocks_5_timeline_content',''),(319582,42544,'_blocks_5_timeline_content','field_6177de53d1197'),(319583,42544,'blocks_5_timeline_items_0_title','Industry-Leading Expertise'),(319584,42544,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(319585,42544,'blocks_5_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(319586,42544,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(319587,42544,'blocks_5_timeline_items_1_title','Global Accessibility'),(319588,42544,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(319589,42544,'blocks_5_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(319590,42544,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(319591,42544,'blocks_5_timeline_items_2_title','Internationally Recognised Certification'),(319592,42544,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(319593,42544,'blocks_5_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(319594,42544,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(319595,42544,'blocks_5_timeline_items_3_title','Career Opportunities Worldwide'),(319596,42544,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(319597,42544,'blocks_5_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(319598,42544,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(319599,42544,'blocks_5_timeline_items','4'),(319600,42544,'_blocks_5_timeline_items','field_6177de53d119d'),(319601,42544,'blocks_6_acfe_flexible_toggle',''),(319602,42544,'_blocks_6_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(319603,42544,'blocks_6_acfe_flexible_layout_title','Form'),(319604,42544,'_blocks_6_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(319605,42544,'blocks_6_row_content_format','standard'),(319606,42544,'_blocks_6_row_content_format','field_6481ead962881'),(319607,42544,'blocks_6_row_content_title',''),(319608,42544,'_blocks_6_row_content_title','field_61a0f5f5b3db1'),(319609,42544,'blocks_6_row_content_heading','How to receive ELCAS funding to start your new career as a Biomechanics Coach'),(319610,42544,'_blocks_6_row_content_heading','field_61a0f5f5b3db2'),(319611,42544,'blocks_6_row_content_text','If you are currently serving or ex-services and are looking to retrain for an exciting new career, then our Diploma in Biomechanics Coaching may just be the perfect launchpad into the fitness sector.\r\n\r\nWhen you fill out the form you’ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(319612,42544,'_blocks_6_row_content_text','field_61a0f5f5b3db3'),(319613,42544,'blocks_6_row_content_actions',''),(319614,42544,'_blocks_6_row_content_actions','field_61a0f5f5b3db4'),(319615,42544,'blocks_6_row_content',''),(319616,42544,'_blocks_6_row_content','field_61a0f5f5b3db0'),(319617,42544,'blocks_6_row_form','40394'),(319618,42544,'_blocks_6_row_form','field_61a4ff2c0b08e'),(319619,42544,'blocks_6_row_form_button_label',''),(319620,42544,'_blocks_6_row_form_button_label','field_61e12cf6fe412'),(319621,42544,'blocks_7_acfe_flexible_toggle',''),(319622,42544,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(319623,42544,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(319624,42544,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(319625,42544,'blocks_7_options_theme','#ffffff'),(319626,42544,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(319627,42544,'blocks_7_options_state','0'),(319628,42544,'_blocks_7_options_state','field_6239fcb7508c5'),(319629,42544,'blocks_7_options',''),(319630,42544,'_blocks_7_options','field_6177e2991ac44'),(319631,42544,'blocks_7_content_title',''),(319632,42544,'_blocks_7_content_title','field_64d237e8bb1e2'),(319633,42544,'blocks_7_content_heading','FAQ\'s'),(319634,42544,'_blocks_7_content_heading','field_64d237e8bb1e3'),(319635,42544,'blocks_7_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(319636,42544,'_blocks_7_content_text','field_64d237e8bb1e4'),(319637,42544,'blocks_7_content_actions',''),(319638,42544,'_blocks_7_content_actions','field_64d237e8bb1e5'),(319639,42544,'blocks_7_content_align','left'),(319640,42544,'_blocks_7_content_align','field_64d2443e6b6aa'),(319641,42544,'blocks_7_content',''),(319642,42544,'_blocks_7_content','field_64d237e8bb1e1'),(319643,42544,'blocks_7_accordion_content','custom'),(319644,42544,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(319645,42544,'blocks_7_accordion_items_0_title','What is ELCAS?'),(319646,42544,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(319647,42544,'blocks_7_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(319648,42544,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(319649,42544,'blocks_7_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(319650,42544,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(319651,42544,'blocks_7_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(319652,42544,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(319653,42544,'blocks_7_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(319654,42544,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(319655,42544,'blocks_7_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(319656,42544,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(319657,42544,'blocks_7_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(319658,42544,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(319659,42544,'blocks_7_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(319660,42544,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(319661,42544,'blocks_7_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(319662,42544,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(319663,42544,'blocks_7_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(319664,42544,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(319665,42544,'blocks_7_accordion_items','5'),(319666,42544,'_blocks_7_accordion_items','field_6177e2991ac4c'),(319667,42544,'blocks_7_actions',''),(319668,42544,'_blocks_7_actions','field_61a746a817f7a'),(319669,42536,'_thumbnail_id','40818'),(319670,42545,'hide_hero','0'),(319671,42545,'_hide_hero','field_66a2380fcda39'),(319672,42545,'fft_hide_from_listings','0'),(319673,42545,'_fft_hide_from_listings','field_61f1320446ab2'),(319674,42545,'fft_page_format','default'),(319675,42545,'_fft_page_format','field_61ae213f1f218'),(319676,42545,'fft_hide_nav','0'),(319677,42545,'_fft_hide_nav','field_635bd5e43527c'),(319678,42545,'fft_hide_header_call_to_action','0'),(319679,42545,'_fft_hide_header_call_to_action','field_635bd6723527d'),(319680,42545,'fft_page_sitemap','0'),(319681,42545,'_fft_page_sitemap','field_61af9b34e8181'),(319682,42545,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:4:\"form\";i:7;s:10:\"accordions\";}'),(319683,42545,'_blocks','field_6176696113096'),(319684,42545,'hero_title',''),(319685,42545,'_hero_title','field_617571fe285e8'),(319686,42545,'hero_text',''),(319687,42545,'_hero_text','field_6175723c285e9'),(319688,42545,'hero_actions',''),(319689,42545,'_hero_actions','field_61757270285ea'),(319690,42545,'hero_style','default'),(319691,42545,'_hero_style','field_62051d9dc5324'),(319692,42545,'hero_image_pos_x','right'),(319693,42545,'_hero_image_pos_x','field_62ec3d05390bb'),(319694,42545,'hero_image_pos_y','top'),(319695,42545,'_hero_image_pos_y','field_62ec3d05390bc'),(319696,42545,'hero_image_pos',''),(319697,42545,'_hero_image_pos','field_62ec3d05390ba'),(319698,42545,'blocks_0_acfe_flexible_toggle',''),(319699,42545,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(319700,42545,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(319701,42545,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(319702,42545,'blocks_0_options_theme','#ffffff'),(319703,42545,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(319704,42545,'blocks_0_options_reverse','0'),(319705,42545,'_blocks_0_options_reverse','field_61768049bb8ac'),(319706,42545,'blocks_0_options',''),(319707,42545,'_blocks_0_options','field_617682517c334'),(319708,42545,'blocks_0_split_5050_image','41527'),(319709,42545,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(319710,42545,'blocks_0_split_5050_video',''),(319711,42545,'_blocks_0_split_5050_video','field_6239f3160848a'),(319712,42545,'blocks_0_split_5050_content_title',''),(319713,42545,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(319714,42545,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(319715,42545,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(319716,42545,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you are looking to expand your professional skills or embark on a new career path, our internationally available training ensures you receive the highest standard of education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(319717,42545,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(319718,42545,'blocks_0_split_5050_content_actions','1'),(319719,42545,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(319720,42545,'blocks_0_split_5050_content',''),(319721,42545,'_blocks_0_split_5050_content','field_61767afceb8ba'),(319722,42545,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(319723,42545,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(319724,42545,'blocks_1_acfe_flexible_toggle',''),(319725,42545,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(319726,42545,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(319727,42545,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(319728,42545,'blocks_1_options_theme','#ffffff'),(319729,42545,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(319730,42545,'blocks_1_options_reverse','1'),(319731,42545,'_blocks_1_options_reverse','field_61768049bb8ac'),(319732,42545,'blocks_1_options',''),(319733,42545,'_blocks_1_options','field_617682517c334'),(319734,42545,'blocks_1_split_5050_image','41312'),(319735,42545,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(319736,42545,'blocks_1_split_5050_video',''),(319737,42545,'_blocks_1_split_5050_video','field_6239f3160848a'),(319738,42545,'blocks_1_split_5050_content_title',''),(319739,42545,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(319740,42545,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(319741,42545,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(319742,42545,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our online learning platform, our programmes provide the flexibility to suit your needs while maintaining the high standards of education Biomechanics Education is known for.'),(319743,42545,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(319744,42545,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(319745,42545,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(319746,42545,'blocks_1_split_5050_content_actions','1'),(319747,42545,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(319748,42545,'blocks_1_split_5050_content',''),(319749,42545,'_blocks_1_split_5050_content','field_61767afceb8ba'),(319750,42545,'blocks_2_acfe_flexible_toggle',''),(319751,42545,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(319752,42545,'blocks_2_acfe_flexible_layout_title','Text Block'),(319753,42545,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(319754,42545,'blocks_2_options_theme','#ffffff'),(319755,42545,'_blocks_2_options_theme','field_6176830e2ad17'),(319756,42545,'blocks_2_options',''),(319757,42545,'_blocks_2_options','field_6176830e2ad16'),(319758,42545,'blocks_2_text_block_heading','Our Popular Courses:'),(319759,42545,'_blocks_2_text_block_heading','field_617669d413097'),(319760,42545,'blocks_2_text_block_content',''),(319761,42545,'_blocks_2_text_block_content','field_617669ec13098'),(319762,42545,'blocks_3_acfe_flexible_toggle',''),(319763,42545,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(319764,42545,'blocks_3_acfe_flexible_layout_title','Cards'),(319765,42545,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(319766,42545,'blocks_3_options_theme','#ffffff'),(319767,42545,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(319768,42545,'blocks_3_options_format','carousel'),(319769,42545,'_blocks_3_options_format','field_617a7b15245b5'),(319770,42545,'blocks_3_options_style','default'),(319771,42545,'_blocks_3_options_style','field_6278ffb63484a'),(319772,42545,'blocks_3_options_cards_current_listing','0'),(319773,42545,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(319774,42545,'blocks_3_options_cards_content','selection'),(319775,42545,'_blocks_3_options_cards_content','field_617aba6122688'),(319776,42545,'blocks_3_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(319777,42545,'_blocks_3_options_cards_select_posts','field_6193f85fbaea1'),(319778,42545,'blocks_3_options',''),(319779,42545,'_blocks_3_options','field_617a7b15245b3'),(319780,42545,'blocks_4_acfe_flexible_toggle',''),(319781,42545,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(319782,42545,'blocks_4_acfe_flexible_layout_title','Quote'),(319783,42545,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(319784,42545,'blocks_4_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(319785,42545,'_blocks_4_quote_content','field_6177cdacdd67a'),(319786,42545,'blocks_4_quote_author','Alex Carter, Certified Biomechanics Coach'),(319787,42545,'_blocks_4_quote_author','field_6177cdc6dd67b'),(319788,42545,'blocks_5_acfe_flexible_toggle',''),(319789,42545,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(319790,42545,'blocks_5_acfe_flexible_layout_title','Timeline'),(319791,42545,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(319792,42545,'blocks_5_options_theme','#ffffff'),(319793,42545,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(319794,42545,'blocks_5_options',''),(319795,42545,'_blocks_5_options','field_6177de53d1195'),(319796,42545,'blocks_5_timeline_content_title',''),(319797,42545,'_blocks_5_timeline_content_title','field_6177de53d1198'),(319798,42545,'blocks_5_timeline_content_heading','Why choose Biomechanics Education'),(319799,42545,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(319800,42545,'blocks_5_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(319801,42545,'_blocks_5_timeline_content_text','field_6177de53d119a'),(319802,42545,'blocks_5_timeline_content_actions',''),(319803,42545,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(319804,42545,'blocks_5_timeline_content',''),(319805,42545,'_blocks_5_timeline_content','field_6177de53d1197'),(319806,42545,'blocks_5_timeline_items_0_title','Industry-Leading Expertise'),(319807,42545,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(319808,42545,'blocks_5_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(319809,42545,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(319810,42545,'blocks_5_timeline_items_1_title','Global Accessibility'),(319811,42545,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(319812,42545,'blocks_5_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(319813,42545,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(319814,42545,'blocks_5_timeline_items_2_title','Internationally Recognised Certification'),(319815,42545,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(319816,42545,'blocks_5_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(319817,42545,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(319818,42545,'blocks_5_timeline_items_3_title','Career Opportunities Worldwide'),(319819,42545,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(319820,42545,'blocks_5_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(319821,42545,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(319822,42545,'blocks_5_timeline_items','4'),(319823,42545,'_blocks_5_timeline_items','field_6177de53d119d'),(319824,42545,'blocks_6_acfe_flexible_toggle',''),(319825,42545,'_blocks_6_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(319826,42545,'blocks_6_acfe_flexible_layout_title','Form'),(319827,42545,'_blocks_6_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(319828,42545,'blocks_6_row_content_format','standard'),(319829,42545,'_blocks_6_row_content_format','field_6481ead962881'),(319830,42545,'blocks_6_row_content_title',''),(319831,42545,'_blocks_6_row_content_title','field_61a0f5f5b3db1'),(319832,42545,'blocks_6_row_content_heading','Find Out More About Our International Biomechanics Coaching Programmes'),(319833,42545,'_blocks_6_row_content_heading','field_61a0f5f5b3db2'),(319834,42545,'blocks_6_row_content_text','If you’re looking to expand your career in movement assessment, injury prevention, or performance coaching, Biomechanics Education offers a globally accessible pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and explore your options. You’ll also have the chance to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice to help you take the next step.'),(319835,42545,'_blocks_6_row_content_text','field_61a0f5f5b3db3'),(319836,42545,'blocks_6_row_content_actions',''),(319837,42545,'_blocks_6_row_content_actions','field_61a0f5f5b3db4'),(319838,42545,'blocks_6_row_content',''),(319839,42545,'_blocks_6_row_content','field_61a0f5f5b3db0'),(319840,42545,'blocks_6_row_form','40394'),(319841,42545,'_blocks_6_row_form','field_61a4ff2c0b08e'),(319842,42545,'blocks_6_row_form_button_label',''),(319843,42545,'_blocks_6_row_form_button_label','field_61e12cf6fe412'),(319844,42545,'blocks_7_acfe_flexible_toggle',''),(319845,42545,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(319846,42545,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(319847,42545,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(319848,42545,'blocks_7_options_theme','#ffffff'),(319849,42545,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(319850,42545,'blocks_7_options_state','0'),(319851,42545,'_blocks_7_options_state','field_6239fcb7508c5'),(319852,42545,'blocks_7_options',''),(319853,42545,'_blocks_7_options','field_6177e2991ac44'),(319854,42545,'blocks_7_content_title',''),(319855,42545,'_blocks_7_content_title','field_64d237e8bb1e2'),(319856,42545,'blocks_7_content_heading','FAQ\'s'),(319857,42545,'_blocks_7_content_heading','field_64d237e8bb1e3'),(319858,42545,'blocks_7_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(319859,42545,'_blocks_7_content_text','field_64d237e8bb1e4'),(319860,42545,'blocks_7_content_actions',''),(319861,42545,'_blocks_7_content_actions','field_64d237e8bb1e5'),(319862,42545,'blocks_7_content_align','left'),(319863,42545,'_blocks_7_content_align','field_64d2443e6b6aa'),(319864,42545,'blocks_7_content',''),(319865,42545,'_blocks_7_content','field_64d237e8bb1e1'),(319866,42545,'blocks_7_accordion_content','custom'),(319867,42545,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(319868,42545,'blocks_7_accordion_items_0_title','What is ELCAS?'),(319869,42545,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(319870,42545,'blocks_7_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(319871,42545,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(319872,42545,'blocks_7_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(319873,42545,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(319874,42545,'blocks_7_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(319875,42545,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(319876,42545,'blocks_7_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(319877,42545,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(319878,42545,'blocks_7_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(319879,42545,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(319880,42545,'blocks_7_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(319881,42545,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(319882,42545,'blocks_7_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(319883,42545,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(319884,42545,'blocks_7_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(319885,42545,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(319886,42545,'blocks_7_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(319887,42545,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(319888,42545,'blocks_7_accordion_items','5'),(319889,42545,'_blocks_7_accordion_items','field_6177e2991ac4c'),(319890,42545,'blocks_7_actions',''),(319891,42545,'_blocks_7_actions','field_61a746a817f7a'),(319892,42545,'_thumbnail_id','40818'),(319893,42545,'__thumbnail_id','field_617570855ddaf'),(319894,42546,'hide_hero','0'),(319895,42546,'_hide_hero','field_66a2380fcda39'),(319896,42546,'fft_hide_from_listings','0'),(319897,42546,'_fft_hide_from_listings','field_61f1320446ab2'),(319898,42546,'fft_page_format','default'),(319899,42546,'_fft_page_format','field_61ae213f1f218'),(319900,42546,'fft_hide_nav','0'),(319901,42546,'_fft_hide_nav','field_635bd5e43527c'),(319902,42546,'fft_hide_header_call_to_action','0'),(319903,42546,'_fft_hide_header_call_to_action','field_635bd6723527d'),(319904,42546,'fft_page_sitemap','0'),(319905,42546,'_fft_page_sitemap','field_61af9b34e8181'),(319906,42546,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:4:\"form\";i:7;s:10:\"accordions\";}'),(319907,42546,'_blocks','field_6176696113096'),(319908,42546,'hero_title',''),(319909,42546,'_hero_title','field_617571fe285e8'),(319910,42546,'hero_text',''),(319911,42546,'_hero_text','field_6175723c285e9'),(319912,42546,'hero_actions',''),(319913,42546,'_hero_actions','field_61757270285ea'),(319914,42546,'hero_style','default'),(319915,42546,'_hero_style','field_62051d9dc5324'),(319916,42546,'hero_image_pos_x','right'),(319917,42546,'_hero_image_pos_x','field_62ec3d05390bb'),(319918,42546,'hero_image_pos_y','top'),(319919,42546,'_hero_image_pos_y','field_62ec3d05390bc'),(319920,42546,'hero_image_pos',''),(319921,42546,'_hero_image_pos','field_62ec3d05390ba'),(319922,42546,'blocks_0_acfe_flexible_toggle',''),(319923,42546,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(319924,42546,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(319925,42546,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(319926,42546,'blocks_0_options_theme','#ffffff'),(319927,42546,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(319928,42546,'blocks_0_options_reverse','0'),(319929,42546,'_blocks_0_options_reverse','field_61768049bb8ac'),(319930,42546,'blocks_0_options',''),(319931,42546,'_blocks_0_options','field_617682517c334'),(319932,42546,'blocks_0_split_5050_image','41527'),(319933,42546,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(319934,42546,'blocks_0_split_5050_video',''),(319935,42546,'_blocks_0_split_5050_video','field_6239f3160848a'),(319936,42546,'blocks_0_split_5050_content_title',''),(319937,42546,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(319938,42546,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(319939,42546,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(319940,42546,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you are looking to expand your professional skills or embark on a new career path, our internationally available training ensures you receive the highest standard of education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(319941,42546,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(319942,42546,'blocks_0_split_5050_content_actions','1'),(319943,42546,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(319944,42546,'blocks_0_split_5050_content',''),(319945,42546,'_blocks_0_split_5050_content','field_61767afceb8ba'),(319946,42546,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(319947,42546,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(319948,42546,'blocks_1_acfe_flexible_toggle',''),(319949,42546,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(319950,42546,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(319951,42546,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(319952,42546,'blocks_1_options_theme','#ffffff'),(319953,42546,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(319954,42546,'blocks_1_options_reverse','1'),(319955,42546,'_blocks_1_options_reverse','field_61768049bb8ac'),(319956,42546,'blocks_1_options',''),(319957,42546,'_blocks_1_options','field_617682517c334'),(319958,42546,'blocks_1_split_5050_image','41312'),(319959,42546,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(319960,42546,'blocks_1_split_5050_video',''),(319961,42546,'_blocks_1_split_5050_video','field_6239f3160848a'),(319962,42546,'blocks_1_split_5050_content_title',''),(319963,42546,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(319964,42546,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(319965,42546,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(319966,42546,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our online learning platform, our programmes provide the flexibility to suit your needs while maintaining the high standards of education Biomechanics Education is known for.'),(319967,42546,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(319968,42546,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(319969,42546,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(319970,42546,'blocks_1_split_5050_content_actions','1'),(319971,42546,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(319972,42546,'blocks_1_split_5050_content',''),(319973,42546,'_blocks_1_split_5050_content','field_61767afceb8ba'),(319974,42546,'blocks_2_acfe_flexible_toggle',''),(319975,42546,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(319976,42546,'blocks_2_acfe_flexible_layout_title','Text Block'),(319977,42546,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(319978,42546,'blocks_2_options_theme','#ffffff'),(319979,42546,'_blocks_2_options_theme','field_6176830e2ad17'),(319980,42546,'blocks_2_options',''),(319981,42546,'_blocks_2_options','field_6176830e2ad16'),(319982,42546,'blocks_2_text_block_heading','Our Popular Courses:'),(319983,42546,'_blocks_2_text_block_heading','field_617669d413097'),(319984,42546,'blocks_2_text_block_content',''),(319985,42546,'_blocks_2_text_block_content','field_617669ec13098'),(319986,42546,'blocks_3_acfe_flexible_toggle',''),(319987,42546,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(319988,42546,'blocks_3_acfe_flexible_layout_title','Cards'),(319989,42546,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(319990,42546,'blocks_3_options_theme','#ffffff'),(319991,42546,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(319992,42546,'blocks_3_options_format','carousel'),(319993,42546,'_blocks_3_options_format','field_617a7b15245b5'),(319994,42546,'blocks_3_options_style','default'),(319995,42546,'_blocks_3_options_style','field_6278ffb63484a'),(319996,42546,'blocks_3_options_cards_current_listing','0'),(319997,42546,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(319998,42546,'blocks_3_options_cards_content','selection'),(319999,42546,'_blocks_3_options_cards_content','field_617aba6122688'),(320000,42546,'blocks_3_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(320001,42546,'_blocks_3_options_cards_select_posts','field_6193f85fbaea1'),(320002,42546,'blocks_3_options',''),(320003,42546,'_blocks_3_options','field_617a7b15245b3'),(320004,42546,'blocks_4_acfe_flexible_toggle',''),(320005,42546,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(320006,42546,'blocks_4_acfe_flexible_layout_title','Quote'),(320007,42546,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(320008,42546,'blocks_4_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(320009,42546,'_blocks_4_quote_content','field_6177cdacdd67a'),(320010,42546,'blocks_4_quote_author','Alex Carter, Certified Biomechanics Coach'),(320011,42546,'_blocks_4_quote_author','field_6177cdc6dd67b'),(320012,42546,'blocks_5_acfe_flexible_toggle',''),(320013,42546,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(320014,42546,'blocks_5_acfe_flexible_layout_title','Timeline'),(320015,42546,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(320016,42546,'blocks_5_options_theme','#ffffff'),(320017,42546,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(320018,42546,'blocks_5_options',''),(320019,42546,'_blocks_5_options','field_6177de53d1195'),(320020,42546,'blocks_5_timeline_content_title',''),(320021,42546,'_blocks_5_timeline_content_title','field_6177de53d1198'),(320022,42546,'blocks_5_timeline_content_heading','Why choose Biomechanics Education'),(320023,42546,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(320024,42546,'blocks_5_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(320025,42546,'_blocks_5_timeline_content_text','field_6177de53d119a'),(320026,42546,'blocks_5_timeline_content_actions',''),(320027,42546,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(320028,42546,'blocks_5_timeline_content',''),(320029,42546,'_blocks_5_timeline_content','field_6177de53d1197'),(320030,42546,'blocks_5_timeline_items_0_title','Industry-Leading Expertise'),(320031,42546,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(320032,42546,'blocks_5_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(320033,42546,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(320034,42546,'blocks_5_timeline_items_1_title','Global Accessibility'),(320035,42546,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(320036,42546,'blocks_5_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(320037,42546,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(320038,42546,'blocks_5_timeline_items_2_title','Internationally Recognised Certification'),(320039,42546,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(320040,42546,'blocks_5_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(320041,42546,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(320042,42546,'blocks_5_timeline_items_3_title','Career Opportunities Worldwide'),(320043,42546,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(320044,42546,'blocks_5_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(320045,42546,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(320046,42546,'blocks_5_timeline_items','4'),(320047,42546,'_blocks_5_timeline_items','field_6177de53d119d'),(320048,42546,'blocks_6_acfe_flexible_toggle',''),(320049,42546,'_blocks_6_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(320050,42546,'blocks_6_acfe_flexible_layout_title','Form'),(320051,42546,'_blocks_6_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(320052,42546,'blocks_6_row_content_format','standard'),(320053,42546,'_blocks_6_row_content_format','field_6481ead962881'),(320054,42546,'blocks_6_row_content_title',''),(320055,42546,'_blocks_6_row_content_title','field_61a0f5f5b3db1'),(320056,42546,'blocks_6_row_content_heading','Contact Us Today'),(320057,42546,'_blocks_6_row_content_heading','field_61a0f5f5b3db2'),(320058,42546,'blocks_6_row_content_text','If you’re looking to expand your career in movement assessment, injury prevention, or performance coaching, Biomechanics Education offers a globally accessible pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and explore your options. You’ll also have the chance to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice to help you take the next step.'),(320059,42546,'_blocks_6_row_content_text','field_61a0f5f5b3db3'),(320060,42546,'blocks_6_row_content_actions',''),(320061,42546,'_blocks_6_row_content_actions','field_61a0f5f5b3db4'),(320062,42546,'blocks_6_row_content',''),(320063,42546,'_blocks_6_row_content','field_61a0f5f5b3db0'),(320064,42546,'blocks_6_row_form','40394'),(320065,42546,'_blocks_6_row_form','field_61a4ff2c0b08e'),(320066,42546,'blocks_6_row_form_button_label',''),(320067,42546,'_blocks_6_row_form_button_label','field_61e12cf6fe412'),(320068,42546,'blocks_7_acfe_flexible_toggle',''),(320069,42546,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(320070,42546,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(320071,42546,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(320072,42546,'blocks_7_options_theme','#ffffff'),(320073,42546,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(320074,42546,'blocks_7_options_state','0'),(320075,42546,'_blocks_7_options_state','field_6239fcb7508c5'),(320076,42546,'blocks_7_options',''),(320077,42546,'_blocks_7_options','field_6177e2991ac44'),(320078,42546,'blocks_7_content_title',''),(320079,42546,'_blocks_7_content_title','field_64d237e8bb1e2'),(320080,42546,'blocks_7_content_heading','FAQ\'s'),(320081,42546,'_blocks_7_content_heading','field_64d237e8bb1e3'),(320082,42546,'blocks_7_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(320083,42546,'_blocks_7_content_text','field_64d237e8bb1e4'),(320084,42546,'blocks_7_content_actions',''),(320085,42546,'_blocks_7_content_actions','field_64d237e8bb1e5'),(320086,42546,'blocks_7_content_align','left'),(320087,42546,'_blocks_7_content_align','field_64d2443e6b6aa'),(320088,42546,'blocks_7_content',''),(320089,42546,'_blocks_7_content','field_64d237e8bb1e1'),(320090,42546,'blocks_7_accordion_content','custom'),(320091,42546,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(320092,42546,'blocks_7_accordion_items_0_title','What is ELCAS?'),(320093,42546,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(320094,42546,'blocks_7_accordion_items_0_text','ELCAS stands for the Enhanced Learning Credits Administrative Service. It\'s a government scheme set up specifically to support people transitioning out of military service by providing funding for your qualifications. The scheme works through partnership with a wide a selection of education and training providers across the UK. ELCAS can be used to fund qualifications across a range of professions, including electricians, construction workers, engineering and tech, security, and most relevant to us, fitness and exercise instructors, and personal trainers.'),(320095,42546,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(320096,42546,'blocks_7_accordion_items_1_title','How Much ELCAS Funding Can I Receive?'),(320097,42546,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(320098,42546,'blocks_7_accordion_items_1_text','The amount of support that you\'re entitled to varies depending on your length of service, with longer service lengths granting you access to more funding. Specifically, ELCAS works through yearly claims, and you can claim up to three times in total (3 separate years)\r\n<ul>\r\n 	<li>If you have 4-7 years of service, you can claim £1000 each time</li>\r\n 	<li>If you have 8 years+ service, you can claim £2000 each time</li>\r\n</ul>\r\nELCAS funding is for up to 80% of a training course, up to the value of the amounts accrued. You will need to pay a 20% contribution towards the cost of your chosen course. The lower the price of the course, the smaller amount your personal contribution will be. <span class=\"TextRun SCXW16780925 BCX2\">For more information around claiming visit <a href=\"http://www.enhancedlearningcredits.com/serving-personnel/claiming-elc-personnel\" target=\"_blank\" rel=\"noopener\">ELCAS Claims</a></span>'),(320099,42546,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(320100,42546,'blocks_7_accordion_items_2_title','Are All Courses Eligible for Enhanced Learning Credits?'),(320101,42546,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(320102,42546,'blocks_7_accordion_items_2_text','No. Only approved courses (at level 3 or above) delivered by approved providers are eligible for ELCAS funding. The simplest way to check is by using the <a href=\"http://www.enhancedlearningcredits.com/service-leaver/searching-lp\" target=\"_blank\" rel=\"noopener\">ELCAS approved provider search function.</a>\r\n\r\nIf your course is eligible you can contact ELCAS to receive a Claim Authorization Note (CAN), which you can then present to the course provider when you book.'),(320103,42546,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(320104,42546,'blocks_7_accordion_items_3_title','Why become a Biomechanics Coach with my ELCAS funding?'),(320105,42546,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(320106,42546,'blocks_7_accordion_items_3_text','Using your ELCAS funding to become a Biomechanics Coach is a smart, cost-effective way to transition into a rewarding career in health and fitness.\r\n<ul>\r\n 	<li><strong>Build on Your Skills:</strong> Leverage your military experience with specialist biomechanics training, equipping you to assess and improve movement quality.</li>\r\n 	<li><strong>Flexible Career Paths:</strong> Work in rehabilitation, sports, or personal training, helping clients prevent injury and move better.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is sought after, and our evidence-based qualification gives you an edge.</li>\r\n 	<li><strong>Make a Difference:</strong> Help others enhance their mobility, performance, and quality of life.</li>\r\n</ul>\r\nWith ELCAS funding, you can take this step affordably, setting yourself up for a fulfilling new career.'),(320107,42546,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(320108,42546,'blocks_7_accordion_items_4_title','Why use my ELCAS funding to train with Biomechanics Education?'),(320109,42546,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(320110,42546,'blocks_7_accordion_items_4_text','<ul>\r\n 	<li><strong>Specialised Training:</strong> Our courses provide evidence-based knowledge in biomechanics, allowing you to assess and enhance movement quality effectively.</li>\r\n 	<li><strong>Recognised Qualifications:</strong> Gain an industry-recognised qualification that opens doors in various sectors, including rehabilitation and sports performance.</li>\r\n 	<li><strong>Career Flexibility:</strong> Enjoy diverse career opportunities, from working with athletes to supporting individuals in injury prevention and rehabilitation.</li>\r\n 	<li><strong>High Demand:</strong> Biomechanics expertise is increasingly sought after, making this a valuable addition to your skill set.</li>\r\n 	<li><strong>Affordable Transition:</strong> ELCAS funding makes it financially accessible, helping you invest in your future without the added burden.</li>\r\n</ul>\r\nBy choosing Biomechanics Education, you’re setting yourself up for a rewarding career that makes a real difference in people\'s lives.'),(320111,42546,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(320112,42546,'blocks_7_accordion_items','5'),(320113,42546,'_blocks_7_accordion_items','field_6177e2991ac4c'),(320114,42546,'blocks_7_actions',''),(320115,42546,'_blocks_7_actions','field_61a746a817f7a'),(320116,42546,'_thumbnail_id','40818'),(320117,42546,'__thumbnail_id','field_617570855ddaf'),(320118,42547,'hide_hero','0'),(320119,42547,'_hide_hero','field_66a2380fcda39'),(320120,42547,'fft_hide_from_listings','0'),(320121,42547,'_fft_hide_from_listings','field_61f1320446ab2'),(320122,42547,'fft_page_format','default'),(320123,42547,'_fft_page_format','field_61ae213f1f218'),(320124,42547,'fft_hide_nav','0'),(320125,42547,'_fft_hide_nav','field_635bd5e43527c'),(320126,42547,'fft_hide_header_call_to_action','0'),(320127,42547,'_fft_hide_header_call_to_action','field_635bd6723527d'),(320128,42547,'fft_page_sitemap','0'),(320129,42547,'_fft_page_sitemap','field_61af9b34e8181'),(320130,42547,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:4:\"form\";i:7;s:10:\"accordions\";}'),(320131,42547,'_blocks','field_6176696113096'),(320132,42547,'hero_title',''),(320133,42547,'_hero_title','field_617571fe285e8'),(320134,42547,'hero_text',''),(320135,42547,'_hero_text','field_6175723c285e9'),(320136,42547,'hero_actions',''),(320137,42547,'_hero_actions','field_61757270285ea'),(320138,42547,'hero_style','default'),(320139,42547,'_hero_style','field_62051d9dc5324'),(320140,42547,'hero_image_pos_x','right'),(320141,42547,'_hero_image_pos_x','field_62ec3d05390bb'),(320142,42547,'hero_image_pos_y','top'),(320143,42547,'_hero_image_pos_y','field_62ec3d05390bc'),(320144,42547,'hero_image_pos',''),(320145,42547,'_hero_image_pos','field_62ec3d05390ba'),(320146,42547,'blocks_0_acfe_flexible_toggle',''),(320147,42547,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(320148,42547,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(320149,42547,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(320150,42547,'blocks_0_options_theme','#ffffff'),(320151,42547,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(320152,42547,'blocks_0_options_reverse','0'),(320153,42547,'_blocks_0_options_reverse','field_61768049bb8ac'),(320154,42547,'blocks_0_options',''),(320155,42547,'_blocks_0_options','field_617682517c334'),(320156,42547,'blocks_0_split_5050_image','41527'),(320157,42547,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(320158,42547,'blocks_0_split_5050_video',''),(320159,42547,'_blocks_0_split_5050_video','field_6239f3160848a'),(320160,42547,'blocks_0_split_5050_content_title',''),(320161,42547,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(320162,42547,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(320163,42547,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(320164,42547,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you are looking to expand your professional skills or embark on a new career path, our internationally available training ensures you receive the highest standard of education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(320165,42547,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(320166,42547,'blocks_0_split_5050_content_actions','1'),(320167,42547,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(320168,42547,'blocks_0_split_5050_content',''),(320169,42547,'_blocks_0_split_5050_content','field_61767afceb8ba'),(320170,42547,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(320171,42547,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(320172,42547,'blocks_1_acfe_flexible_toggle',''),(320173,42547,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(320174,42547,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(320175,42547,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(320176,42547,'blocks_1_options_theme','#ffffff'),(320177,42547,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(320178,42547,'blocks_1_options_reverse','1'),(320179,42547,'_blocks_1_options_reverse','field_61768049bb8ac'),(320180,42547,'blocks_1_options',''),(320181,42547,'_blocks_1_options','field_617682517c334'),(320182,42547,'blocks_1_split_5050_image','41312'),(320183,42547,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(320184,42547,'blocks_1_split_5050_video',''),(320185,42547,'_blocks_1_split_5050_video','field_6239f3160848a'),(320186,42547,'blocks_1_split_5050_content_title',''),(320187,42547,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(320188,42547,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(320189,42547,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(320190,42547,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our online learning platform, our programmes provide the flexibility to suit your needs while maintaining the high standards of education Biomechanics Education is known for.'),(320191,42547,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(320192,42547,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(320193,42547,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(320194,42547,'blocks_1_split_5050_content_actions','1'),(320195,42547,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(320196,42547,'blocks_1_split_5050_content',''),(320197,42547,'_blocks_1_split_5050_content','field_61767afceb8ba'),(320198,42547,'blocks_2_acfe_flexible_toggle',''),(320199,42547,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(320200,42547,'blocks_2_acfe_flexible_layout_title','Text Block'),(320201,42547,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(320202,42547,'blocks_2_options_theme','#ffffff'),(320203,42547,'_blocks_2_options_theme','field_6176830e2ad17'),(320204,42547,'blocks_2_options',''),(320205,42547,'_blocks_2_options','field_6176830e2ad16'),(320206,42547,'blocks_2_text_block_heading','Our Popular Courses:'),(320207,42547,'_blocks_2_text_block_heading','field_617669d413097'),(320208,42547,'blocks_2_text_block_content',''),(320209,42547,'_blocks_2_text_block_content','field_617669ec13098'),(320210,42547,'blocks_3_acfe_flexible_toggle',''),(320211,42547,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(320212,42547,'blocks_3_acfe_flexible_layout_title','Cards'),(320213,42547,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(320214,42547,'blocks_3_options_theme','#ffffff'),(320215,42547,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(320216,42547,'blocks_3_options_format','carousel'),(320217,42547,'_blocks_3_options_format','field_617a7b15245b5'),(320218,42547,'blocks_3_options_style','default'),(320219,42547,'_blocks_3_options_style','field_6278ffb63484a'),(320220,42547,'blocks_3_options_cards_current_listing','0'),(320221,42547,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(320222,42547,'blocks_3_options_cards_content','selection'),(320223,42547,'_blocks_3_options_cards_content','field_617aba6122688'),(320224,42547,'blocks_3_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(320225,42547,'_blocks_3_options_cards_select_posts','field_6193f85fbaea1'),(320226,42547,'blocks_3_options',''),(320227,42547,'_blocks_3_options','field_617a7b15245b3'),(320228,42547,'blocks_4_acfe_flexible_toggle',''),(320229,42547,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(320230,42547,'blocks_4_acfe_flexible_layout_title','Quote'),(320231,42547,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(320232,42547,'blocks_4_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(320233,42547,'_blocks_4_quote_content','field_6177cdacdd67a'),(320234,42547,'blocks_4_quote_author','Alex Carter, Certified Biomechanics Coach'),(320235,42547,'_blocks_4_quote_author','field_6177cdc6dd67b'),(320236,42547,'blocks_5_acfe_flexible_toggle',''),(320237,42547,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(320238,42547,'blocks_5_acfe_flexible_layout_title','Timeline'),(320239,42547,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(320240,42547,'blocks_5_options_theme','#ffffff'),(320241,42547,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(320242,42547,'blocks_5_options',''),(320243,42547,'_blocks_5_options','field_6177de53d1195'),(320244,42547,'blocks_5_timeline_content_title',''),(320245,42547,'_blocks_5_timeline_content_title','field_6177de53d1198'),(320246,42547,'blocks_5_timeline_content_heading','Why choose Biomechanics Education'),(320247,42547,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(320248,42547,'blocks_5_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(320249,42547,'_blocks_5_timeline_content_text','field_6177de53d119a'),(320250,42547,'blocks_5_timeline_content_actions',''),(320251,42547,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(320252,42547,'blocks_5_timeline_content',''),(320253,42547,'_blocks_5_timeline_content','field_6177de53d1197'),(320254,42547,'blocks_5_timeline_items_0_title','Industry-Leading Expertise'),(320255,42547,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(320256,42547,'blocks_5_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(320257,42547,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(320258,42547,'blocks_5_timeline_items_1_title','Global Accessibility'),(320259,42547,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(320260,42547,'blocks_5_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(320261,42547,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(320262,42547,'blocks_5_timeline_items_2_title','Internationally Recognised Certification'),(320263,42547,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(320264,42547,'blocks_5_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(320265,42547,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(320266,42547,'blocks_5_timeline_items_3_title','Career Opportunities Worldwide'),(320267,42547,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(320268,42547,'blocks_5_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(320269,42547,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(320270,42547,'blocks_5_timeline_items','4'),(320271,42547,'_blocks_5_timeline_items','field_6177de53d119d'),(320272,42547,'blocks_6_acfe_flexible_toggle',''),(320273,42547,'_blocks_6_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(320274,42547,'blocks_6_acfe_flexible_layout_title','Form'),(320275,42547,'_blocks_6_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(320276,42547,'blocks_6_row_content_format','standard'),(320277,42547,'_blocks_6_row_content_format','field_6481ead962881'),(320278,42547,'blocks_6_row_content_title',''),(320279,42547,'_blocks_6_row_content_title','field_61a0f5f5b3db1'),(320280,42547,'blocks_6_row_content_heading','Contact Us Today'),(320281,42547,'_blocks_6_row_content_heading','field_61a0f5f5b3db2'),(320282,42547,'blocks_6_row_content_text','If you’re looking to expand your career in movement assessment, injury prevention, or performance coaching, Biomechanics Education offers a globally accessible pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and explore your options. You’ll also have the chance to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice to help you take the next step.'),(320283,42547,'_blocks_6_row_content_text','field_61a0f5f5b3db3'),(320284,42547,'blocks_6_row_content_actions',''),(320285,42547,'_blocks_6_row_content_actions','field_61a0f5f5b3db4'),(320286,42547,'blocks_6_row_content',''),(320287,42547,'_blocks_6_row_content','field_61a0f5f5b3db0'),(320288,42547,'blocks_6_row_form','40394'),(320289,42547,'_blocks_6_row_form','field_61a4ff2c0b08e'),(320290,42547,'blocks_6_row_form_button_label',''),(320291,42547,'_blocks_6_row_form_button_label','field_61e12cf6fe412'),(320292,42547,'blocks_7_acfe_flexible_toggle',''),(320293,42547,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(320294,42547,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(320295,42547,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(320296,42547,'blocks_7_options_theme','#ffffff'),(320297,42547,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(320298,42547,'blocks_7_options_state','0'),(320299,42547,'_blocks_7_options_state','field_6239fcb7508c5'),(320300,42547,'blocks_7_options',''),(320301,42547,'_blocks_7_options','field_6177e2991ac44'),(320302,42547,'blocks_7_content_title',''),(320303,42547,'_blocks_7_content_title','field_64d237e8bb1e2'),(320304,42547,'blocks_7_content_heading','FAQs'),(320305,42547,'_blocks_7_content_heading','field_64d237e8bb1e3'),(320306,42547,'blocks_7_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(320307,42547,'_blocks_7_content_text','field_64d237e8bb1e4'),(320308,42547,'blocks_7_content_actions',''),(320309,42547,'_blocks_7_content_actions','field_64d237e8bb1e5'),(320310,42547,'blocks_7_content_align','left'),(320311,42547,'_blocks_7_content_align','field_64d2443e6b6aa'),(320312,42547,'blocks_7_content',''),(320313,42547,'_blocks_7_content','field_64d237e8bb1e1'),(320314,42547,'blocks_7_accordion_content','custom'),(320315,42547,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(320316,42547,'blocks_7_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(320317,42547,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(320318,42547,'blocks_7_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(320319,42547,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(320320,42547,'blocks_7_accordion_items_1_title','Is the qualification recognised globally?'),(320321,42547,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(320322,42547,'blocks_7_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(320323,42547,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(320324,42547,'blocks_7_accordion_items_2_title','What are the study options for international students?'),(320325,42547,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(320326,42547,'blocks_7_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(320327,42547,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(320328,42547,'blocks_7_accordion_items_3_title','Who is this course suitable for?'),(320329,42547,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(320330,42547,'blocks_7_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(320331,42547,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(320332,42547,'blocks_7_accordion_items_4_title','How do I enrol and what are the payment options?'),(320333,42547,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(320334,42547,'blocks_7_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(320335,42547,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(320336,42547,'blocks_7_accordion_items','5'),(320337,42547,'_blocks_7_accordion_items','field_6177e2991ac4c'),(320338,42547,'blocks_7_actions',''),(320339,42547,'_blocks_7_actions','field_61a746a817f7a'),(320340,42547,'_thumbnail_id','40818'),(320341,42547,'__thumbnail_id','field_617570855ddaf'),(320342,42573,'hide_hero','0'),(320343,42573,'_hide_hero','field_66a2380fcda39'),(320344,42573,'hero_title',' Level 4 Sports Massage & Diploma in Biomechanics Coaching'),(320345,42573,'_hero_title','field_617571fe285e8'),(320346,42573,'hero_text','Unlock Your Potential with Advanced Sports Massage and Intrinsic Biomechanics Expertise '),(320347,42573,'_hero_text','field_6175723c285e9'),(320348,42573,'hero_actions','1'),(320349,42573,'_hero_actions','field_61757270285ea'),(320350,42573,'hero_style','default'),(320351,42573,'_hero_style','field_62051d9dc5324'),(320352,42573,'_thumbnail_id','41473'),(320353,42573,'__thumbnail_id','field_617570855ddaf'),(320354,42573,'hero_image_pos_x','right'),(320355,42573,'_hero_image_pos_x','field_62ec3d05390bb'),(320356,42573,'hero_image_pos_y','top'),(320357,42573,'_hero_image_pos_y','field_62ec3d05390bc'),(320358,42573,'hero_image_pos',''),(320359,42573,'_hero_image_pos','field_62ec3d05390ba'),(320360,42573,'fft_hide_from_listings','0'),(320361,42573,'_fft_hide_from_listings','field_61f1320446ab2'),(320362,42573,'fft_page_format','default'),(320363,42573,'_fft_page_format','field_61ae213f1f218'),(320364,42573,'fft_hide_nav','0'),(320365,42573,'_fft_hide_nav','field_635bd5e43527c'),(320366,42573,'fft_hide_header_call_to_action','0'),(320367,42573,'_fft_hide_header_call_to_action','field_635bd6723527d'),(320368,42573,'fft_page_sitemap','0'),(320369,42573,'_fft_page_sitemap','field_61af9b34e8181'),(320370,42573,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(320371,42573,'_blocks','field_6176696113096'),(320372,42573,'course_label_text',''),(320373,42573,'_course_label_text','field_61e17babf71fa'),(320374,42573,'course_label',''),(320375,42573,'_course_label','field_61e12f92749a7'),(320376,42573,'course_description',''),(320377,42573,'_course_description','field_617ac5788e5e1'),(320378,42573,'course_key_info',''),(320379,42573,'_course_key_info','field_617ac6ad8e5e2'),(320380,42573,'course_included',''),(320381,42573,'_course_included','field_617ac6f08e5e4'),(320382,42573,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41455-4\";s:6:\"target\";s:0:\"\";}'),(320383,42573,'_hero_actions_0_button','field_61757281285eb'),(320384,42573,'blocks_0_acfe_flexible_toggle',''),(320385,42573,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(320386,42573,'blocks_0_acfe_flexible_layout_title','Icons'),(320387,42573,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(320388,42573,'blocks_0_options_theme','#b61234'),(320389,42573,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(320390,42573,'blocks_0_options_format','row'),(320391,42573,'_blocks_0_options_format','field_64bfde9a90690'),(320392,42573,'blocks_0_options',''),(320393,42573,'_blocks_0_options','field_64bfdd9b90684'),(320394,42573,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(320395,42573,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(320396,42573,'blocks_0_icon_row_items_0_label','Accreditation'),(320397,42573,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(320398,42573,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(320399,42573,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(320400,42573,'blocks_0_icon_row_items_1_icon','finance.svg'),(320401,42573,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(320402,42573,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(320403,42573,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(320404,42573,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(320405,42573,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(320406,42573,'blocks_0_icon_row_items_2_icon','progression.svg'),(320407,42573,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(320408,42573,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(320409,42573,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(320410,42573,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(320411,42573,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(320412,42573,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(320413,42573,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(320414,42573,'blocks_0_icon_row_items_3_label','Qualification'),(320415,42573,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(320416,42573,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(320417,42573,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(320418,42573,'blocks_0_icon_row_items','4'),(320419,42573,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(320420,42573,'blocks_5_acfe_flexible_toggle','1'),(320421,42573,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(320422,42573,'blocks_5_acfe_flexible_layout_title','Tabs'),(320423,42573,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(320424,42573,'blocks_5_options_theme','#ffffff'),(320425,42573,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(320426,42573,'blocks_5_options',''),(320427,42573,'_blocks_5_options','field_6177cfcd8140f'),(320428,42573,'blocks_5_tabs_0_tab_label','Entry requirements'),(320429,42573,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(320430,42573,'blocks_5_tabs_0_tab_content_title',''),(320431,42573,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(320432,42573,'blocks_5_tabs_0_tab_content_heading',''),(320433,42573,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(320434,42573,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(320435,42573,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(320436,42573,'blocks_5_tabs_0_tab_content_actions',''),(320437,42573,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(320438,42573,'blocks_5_tabs_0_tab_content',''),(320439,42573,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(320440,42573,'blocks_5_tabs_0_tab_image',''),(320441,42573,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(320442,42573,'blocks_5_tabs_1_tab_label','Learning format'),(320443,42573,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(320444,42573,'blocks_5_tabs_1_tab_content_title',''),(320445,42573,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(320446,42573,'blocks_5_tabs_1_tab_content_heading',''),(320447,42573,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(320448,42573,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(320449,42573,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(320450,42573,'blocks_5_tabs_1_tab_content_actions',''),(320451,42573,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(320452,42573,'blocks_5_tabs_1_tab_content',''),(320453,42573,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(320454,42573,'blocks_5_tabs_1_tab_image',''),(320455,42573,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(320456,42573,'blocks_5_tabs_2_tab_label','Qualifications included'),(320457,42573,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(320458,42573,'blocks_5_tabs_2_tab_content_title',''),(320459,42573,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(320460,42573,'blocks_5_tabs_2_tab_content_heading',''),(320461,42573,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(320462,42573,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(320463,42573,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(320464,42573,'blocks_5_tabs_2_tab_content_actions',''),(320465,42573,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(320466,42573,'blocks_5_tabs_2_tab_content',''),(320467,42573,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(320468,42573,'blocks_5_tabs_2_tab_image',''),(320469,42573,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(320470,42573,'blocks_5_tabs','3'),(320471,42573,'_blocks_5_tabs','field_6177cff281419'),(320472,42573,'blocks_4_acfe_flexible_toggle',''),(320473,42573,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(320474,42573,'blocks_4_acfe_flexible_layout_title','Template'),(320475,42573,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(320476,42573,'blocks_4_template','39207'),(320477,42573,'_blocks_4_template','field_617bdd570fe01'),(320478,42573,'blocks_6_acfe_flexible_toggle',''),(320479,42573,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(320480,42573,'blocks_6_acfe_flexible_layout_title','Icons'),(320481,42573,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(320482,42573,'blocks_6_options_theme','#f5f5f5'),(320483,42573,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(320484,42573,'blocks_6_options_format','stacked'),(320485,42573,'_blocks_6_options_format','field_64bfde9a90690'),(320486,42573,'blocks_6_options',''),(320487,42573,'_blocks_6_options','field_64bfdd9b90684'),(320488,42573,'blocks_6_row_content_title','Options available to pay for your course'),(320489,42573,'_blocks_6_row_content_title','field_64bfdd9b90687'),(320490,42573,'blocks_6_row_content_heading','Fees & Funding Options '),(320491,42573,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(320492,42573,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(320493,42573,'_blocks_6_row_content_text','field_64bfdd9b90689'),(320494,42573,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(320495,42573,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(320496,42573,'blocks_6_row_content_actions','1'),(320497,42573,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(320498,42573,'blocks_6_row_content',''),(320499,42573,'_blocks_6_row_content','field_64bfdd9b90686'),(320500,42573,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(320501,42573,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(320502,42573,'blocks_6_icon_row_items_0_label','Pay in full'),(320503,42573,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(320504,42573,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(320505,42573,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(320506,42573,'blocks_6_icon_row_items_1_icon','finance.svg'),(320507,42573,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(320508,42573,'blocks_6_icon_row_items_1_label','0% finance'),(320509,42573,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(320510,42573,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(320511,42573,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(320512,42573,'blocks_6_icon_row_items','3'),(320513,42573,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(320514,42573,'blocks_7_acfe_flexible_toggle',''),(320515,42573,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(320516,42573,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(320517,42573,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(320518,42573,'blocks_7_options_theme','#ffffff'),(320519,42573,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(320520,42573,'blocks_7_options_reverse','0'),(320521,42573,'_blocks_7_options_reverse','field_61768049bb8ac'),(320522,42573,'blocks_7_options',''),(320523,42573,'_blocks_7_options','field_617682517c334'),(320524,42573,'blocks_7_split_5050_image','41483'),(320525,42573,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(320526,42573,'blocks_7_split_5050_video',''),(320527,42573,'_blocks_7_split_5050_video','field_6239f3160848a'),(320528,42573,'blocks_7_split_5050_content_title',''),(320529,42573,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(320530,42573,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(320531,42573,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(320532,42573,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(320533,42573,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(320534,42573,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(320535,42573,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(320536,42573,'blocks_7_split_5050_content_actions','1'),(320537,42573,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(320538,42573,'blocks_7_split_5050_content',''),(320539,42573,'_blocks_7_split_5050_content','field_61767afceb8ba'),(320540,42573,'blocks_8_acfe_flexible_toggle',''),(320541,42573,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(320542,42573,'blocks_8_acfe_flexible_layout_title','Icons'),(320543,42573,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(320544,42573,'blocks_8_options_theme','#f5f5f5'),(320545,42573,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(320546,42573,'blocks_8_options_format','row'),(320547,42573,'_blocks_8_options_format','field_64bfde9a90690'),(320548,42573,'blocks_8_options',''),(320549,42573,'_blocks_8_options','field_64bfdd9b90684'),(320550,42573,'blocks_8_icon_row_items_0_icon','qualification.svg'),(320551,42573,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(320552,42573,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(320553,42573,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(320554,42573,'blocks_8_icon_row_items_0_text',''),(320555,42573,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(320556,42573,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(320557,42573,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(320558,42573,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(320559,42573,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(320560,42573,'blocks_8_icon_row_items_1_text',''),(320561,42573,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(320562,42573,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(320563,42573,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(320564,42573,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(320565,42573,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(320566,42573,'blocks_8_icon_row_items_2_text',''),(320567,42573,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(320568,42573,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(320569,42573,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(320570,42573,'blocks_8_icon_row_items_3_label','Flexible funding options'),(320571,42573,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(320572,42573,'blocks_8_icon_row_items_3_text',''),(320573,42573,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(320574,42573,'blocks_8_icon_row_items','4'),(320575,42573,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(320576,42573,'blocks_9_acfe_flexible_toggle',''),(320577,42573,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(320578,42573,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(320579,42573,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(320580,42573,'blocks_9_options_theme','#ffffff'),(320581,42573,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(320582,42573,'blocks_9_options_reverse','1'),(320583,42573,'_blocks_9_options_reverse','field_61768049bb8ac'),(320584,42573,'blocks_9_options',''),(320585,42573,'_blocks_9_options','field_617682517c334'),(320586,42573,'blocks_9_split_5050_image','39224'),(320587,42573,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(320588,42573,'blocks_9_split_5050_video',''),(320589,42573,'_blocks_9_split_5050_video','field_6239f3160848a'),(320590,42573,'blocks_9_split_5050_content_title','Locations'),(320591,42573,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(320592,42573,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(320593,42573,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(320594,42573,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(320595,42573,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(320596,42573,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(320597,42573,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(320598,42573,'blocks_9_split_5050_content_actions','1'),(320599,42573,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(320600,42573,'blocks_9_split_5050_content',''),(320601,42573,'_blocks_9_split_5050_content','field_61767afceb8ba'),(320602,42573,'blocks_1_acfe_flexible_toggle',''),(320603,42573,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(320604,42573,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(320605,42573,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(320606,42573,'blocks_1_options_theme','#ffffff'),(320607,42573,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(320608,42573,'blocks_1_options_reverse','0'),(320609,42573,'_blocks_1_options_reverse','field_61768049bb8ac'),(320610,42573,'blocks_1_options',''),(320611,42573,'_blocks_1_options','field_617682517c334'),(320612,42573,'blocks_1_split_5050_image','41484'),(320613,42573,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(320614,42573,'blocks_1_split_5050_video',''),(320615,42573,'_blocks_1_split_5050_video','field_6239f3160848a'),(320616,42573,'blocks_1_split_5050_content_title',''),(320617,42573,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(320618,42573,'blocks_1_split_5050_content_heading','Course Overview'),(320619,42573,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(320620,42573,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Elevate your sports massage practice with our Level 4 qualification, expertly combining advanced sports massage techniques with biomechanics coaching. This programme enables you to conduct targeted client assessments and address root causes affecting performance and recovery.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Integrating biomechanics with hands-on therapy, you’ll gain skills to support athletic performance, rehabilitation, and injury prevention. This evidence-based course - drawing on over 20 years of data - empowers movement practitioners to optimise movement quality and functional performance. Achieve precision and accuracy, with lab-tested tools to enhance client outcomes and stand out in the sports therapy field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(320621,42573,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(320622,42573,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(320623,42573,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(320624,42573,'blocks_1_split_5050_content_actions','1'),(320625,42573,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(320626,42573,'blocks_1_split_5050_content',''),(320627,42573,'_blocks_1_split_5050_content','field_61767afceb8ba'),(320628,42573,'blocks_2_acfe_flexible_toggle',''),(320629,42573,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(320630,42573,'blocks_2_acfe_flexible_layout_title','Form'),(320631,42573,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(320632,42573,'blocks_2_row_content_format','standard'),(320633,42573,'_blocks_2_row_content_format','field_6481ead962881'),(320634,42573,'blocks_2_row_content_title',''),(320635,42573,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(320636,42573,'blocks_2_row_content_heading','Enquire Today'),(320637,42573,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(320638,42573,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(320639,42573,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(320640,42573,'blocks_2_row_content_actions',''),(320641,42573,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(320642,42573,'blocks_2_row_content',''),(320643,42573,'_blocks_2_row_content','field_61a0f5f5b3db0'),(320644,42573,'blocks_2_row_form','40394'),(320645,42573,'_blocks_2_row_form','field_61a4ff2c0b08e'),(320646,42573,'blocks_2_row_form_button_label',''),(320647,42573,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(320648,42573,'blocks_3_acfe_flexible_toggle',''),(320649,42573,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(320650,42573,'blocks_3_acfe_flexible_layout_title','Video'),(320651,42573,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(320652,42573,'blocks_3_size','large'),(320653,42573,'_blocks_3_size','field_6487038f297c1'),(320654,42573,'blocks_3_row_content_title',''),(320655,42573,'_blocks_3_row_content_title','field_64870132a865d'),(320656,42573,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(320657,42573,'_blocks_3_row_content_heading','field_64870142a865e'),(320658,42573,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(320659,42573,'_blocks_3_row_content_text','field_64870148a865f'),(320660,42573,'blocks_3_row_content',''),(320661,42573,'_blocks_3_row_content','field_6487008ba865c'),(320662,42573,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(320663,42573,'_blocks_3_video_src','field_6193c4a98ec07'),(320664,42573,'blocks_3_video_thumbnail',''),(320665,42573,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(320666,42573,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(320667,42573,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(320668,42573,'blocks_6_icon_row_items_2_label','Deposit & balance'),(320669,42573,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(320670,42573,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(320671,42573,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(320672,42573,'blocks_10_acfe_flexible_toggle','1'),(320673,42573,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(320674,42573,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(320675,42573,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(320676,42573,'blocks_10_options_theme','#ffffff'),(320677,42573,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(320678,42573,'blocks_10_options',''),(320679,42573,'_blocks_10_options','field_617ac0b7f6c08'),(320680,42573,'blocks_10_show','selection'),(320681,42573,'_blocks_10_show','field_61a49cba9d946'),(320682,42573,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(320683,42573,'_blocks_10_courses','field_61b244781ee0a'),(320684,42573,'blocks_10_open_whats_included','1'),(320685,42573,'_blocks_10_open_whats_included','field_66ebfd679450c'),(320686,42573,'blocks_10_open_key_information','0'),(320687,42573,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(320688,42573,'blocks_10_open',''),(320689,42573,'_blocks_10_open','field_66ebfd009450b'),(320690,42573,'blocks_11_acfe_flexible_toggle',''),(320691,42573,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(320692,42573,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(320693,42573,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(320694,42573,'blocks_11_options_theme','#ffffff'),(320695,42573,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(320696,42573,'blocks_11_options_reverse','0'),(320697,42573,'_blocks_11_options_reverse','field_61768049bb8ac'),(320698,42573,'blocks_11_options',''),(320699,42573,'_blocks_11_options','field_617682517c334'),(320700,42573,'blocks_11_split_5050_image','41495'),(320701,42573,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(320702,42573,'blocks_11_split_5050_video',''),(320703,42573,'_blocks_11_split_5050_video','field_6239f3160848a'),(320704,42573,'blocks_11_split_5050_content_title','Optimise Performance '),(320705,42573,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(320706,42573,'blocks_11_split_5050_content_heading','Level 4 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(320707,42573,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(320708,42573,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW129570160 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW129570160 BCX8\">Elevate your sports massage </span><span class=\"NormalTextRun SCXW129570160 BCX8\">expertise</span><span class=\"NormalTextRun SCXW129570160 BCX8\"> with advanced training designed to enhance client performance. This qualification offers a competitive edge in sports therapy and increases your earning potential.</span></span><span class=\"EOP SCXW129570160 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\nLevel 4 Sports Massage Includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Conducting Assessments: </span><span data-contrast=\"auto\">Identify bone and soft tissue functions and master effective assessments for tailored massage plans.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sports Massage Techniques: </span><span data-contrast=\"auto\">Learn a range of techniques, adapt methods, monitor responses, and provide aftercare.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Treatment Modalities for Repair: </span><span data-contrast=\"auto\">Understand treatment protocols for all injury stages and how to manage adverse reactions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"11\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(320709,42573,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(320710,42573,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41455-3\";s:6:\"target\";s:0:\"\";}'),(320711,42573,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(320712,42573,'blocks_11_split_5050_content_actions','1'),(320713,42573,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(320714,42573,'blocks_11_split_5050_content',''),(320715,42573,'_blocks_11_split_5050_content','field_61767afceb8ba'),(320716,42573,'blocks_12_acfe_flexible_toggle',''),(320717,42573,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(320718,42573,'blocks_12_acfe_flexible_layout_title','Template'),(320719,42573,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(320720,42573,'blocks_12_template','40987'),(320721,42573,'_blocks_12_template','field_617bdd570fe01'),(320722,42573,'blocks_13_acfe_flexible_toggle',''),(320723,42573,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(320724,42573,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(320725,42573,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(320726,42573,'blocks_13_options_theme','#f5f5f5'),(320727,42573,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(320728,42573,'blocks_13_options_state','0'),(320729,42573,'_blocks_13_options_state','field_6239fcb7508c5'),(320730,42573,'blocks_13_options',''),(320731,42573,'_blocks_13_options','field_6177e2991ac44'),(320732,42573,'blocks_13_content_title',''),(320733,42573,'_blocks_13_content_title','field_64d237e8bb1e2'),(320734,42573,'blocks_13_content_heading','FAQ\'s'),(320735,42573,'_blocks_13_content_heading','field_64d237e8bb1e3'),(320736,42573,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(320737,42573,'_blocks_13_content_text','field_64d237e8bb1e4'),(320738,42573,'blocks_13_content_actions',''),(320739,42573,'_blocks_13_content_actions','field_64d237e8bb1e5'),(320740,42573,'blocks_13_content_align','left'),(320741,42573,'_blocks_13_content_align','field_64d2443e6b6aa'),(320742,42573,'blocks_13_content',''),(320743,42573,'_blocks_13_content','field_64d237e8bb1e1'),(320744,42573,'blocks_13_accordion_content','faqs'),(320745,42573,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(320746,42573,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41458\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(320747,42573,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(320748,42573,'blocks_13_actions',''),(320749,42573,'_blocks_13_actions','field_61a746a817f7a'),(320750,42574,'hide_hero','0'),(320751,42574,'_hide_hero','field_66a2380fcda39'),(320752,42574,'hero_title','Diploma in Biomechanics Coaching'),(320753,42574,'_hero_title','field_617571fe285e8'),(320754,42574,'hero_text','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and gym-goers. Gathering data to develop a course that educates practitioners to a high level of understanding movement.'),(320755,42574,'_hero_text','field_6175723c285e9'),(320756,42574,'hero_actions','1'),(320757,42574,'_hero_actions','field_61757270285ea'),(320758,42574,'hero_style','default'),(320759,42574,'_hero_style','field_62051d9dc5324'),(320760,42574,'hero_image_pos_x','right'),(320761,42574,'_hero_image_pos_x','field_62ec3d05390bb'),(320762,42574,'hero_image_pos_y','top'),(320763,42574,'_hero_image_pos_y','field_62ec3d05390bc'),(320764,42574,'hero_image_pos',''),(320765,42574,'_hero_image_pos','field_62ec3d05390ba'),(320766,42574,'fft_hide_from_listings','0'),(320767,42574,'_fft_hide_from_listings','field_61f1320446ab2'),(320768,42574,'fft_page_format','default'),(320769,42574,'_fft_page_format','field_61ae213f1f218'),(320770,42574,'fft_hide_nav','0'),(320771,42574,'_fft_hide_nav','field_635bd5e43527c'),(320772,42574,'fft_hide_header_call_to_action','0'),(320773,42574,'_fft_hide_header_call_to_action','field_635bd6723527d'),(320774,42574,'fft_page_sitemap','0'),(320775,42574,'_fft_page_sitemap','field_61af9b34e8181'),(320776,42574,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:5:\"icons\";i:6;s:10:\"split_5050\";i:7;s:8:\"template\";i:8;s:10:\"accordions\";}'),(320777,42574,'_blocks','field_6176696113096'),(320778,42574,'course_label_text','Biomechanics Coach Course'),(320779,42574,'_course_label_text','field_61e17babf71fa'),(320780,42574,'course_label',''),(320781,42574,'_course_label','field_61e12f92749a7'),(320782,42574,'course_description','Biomechanics Education has worked hard in gathering data over 20 years on both Elite Athletes and usual gym-goers. Gaining data and research to develop a course that educates students to a high level of understanding. '),(320783,42574,'_course_description','field_617ac5788e5e1'),(320784,42574,'course_key_info','1'),(320785,42574,'_course_key_info','field_617ac6ad8e5e2'),(320786,42574,'course_included','Diploma in Biomechanics Coaching'),(320787,42574,'_course_included','field_617ac6f08e5e4'),(320788,42574,'_thumbnail_id','40863'),(320789,42574,'__thumbnail_id','field_617570855ddaf'),(320790,42574,'blocks_0_acfe_flexible_toggle',''),(320791,42574,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(320792,42574,'blocks_0_acfe_flexible_layout_title','Template'),(320793,42574,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(320794,42574,'blocks_0_template','39087'),(320795,42574,'_blocks_0_template','field_617bdd570fe01'),(320796,42574,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(320797,42574,'_hero_actions_0_button','field_61757281285eb'),(320798,42574,'blocks_1_acfe_flexible_toggle',''),(320799,42574,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(320800,42574,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(320801,42574,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(320802,42574,'blocks_1_options_theme','#ffffff'),(320803,42574,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(320804,42574,'blocks_1_options_reverse','0'),(320805,42574,'_blocks_1_options_reverse','field_61768049bb8ac'),(320806,42574,'blocks_1_options',''),(320807,42574,'_blocks_1_options','field_617682517c334'),(320808,42574,'blocks_1_split_5050_image','40866'),(320809,42574,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(320810,42574,'blocks_1_split_5050_video',''),(320811,42574,'_blocks_1_split_5050_video','field_6239f3160848a'),(320812,42574,'blocks_1_split_5050_content_title',''),(320813,42574,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(320814,42574,'blocks_1_split_5050_content_heading','Course Overview'),(320815,42574,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(320816,42574,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.\r\n\r\nWhile rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(320817,42574,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(320818,42574,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(320819,42574,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(320820,42574,'blocks_1_split_5050_content_actions','1'),(320821,42574,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(320822,42574,'blocks_1_split_5050_content',''),(320823,42574,'_blocks_1_split_5050_content','field_61767afceb8ba'),(320824,42574,'blocks_2_acfe_flexible_toggle',''),(320825,42574,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(320826,42574,'blocks_2_acfe_flexible_layout_title','Form'),(320827,42574,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(320828,42574,'blocks_2_row_content_format','standard'),(320829,42574,'_blocks_2_row_content_format','field_6481ead962881'),(320830,42574,'blocks_2_row_content_title',''),(320831,42574,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(320832,42574,'blocks_2_row_content_heading','Enquire Today'),(320833,42574,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(320834,42574,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(320835,42574,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(320836,42574,'blocks_2_row_content_actions',''),(320837,42574,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(320838,42574,'blocks_2_row_content',''),(320839,42574,'_blocks_2_row_content','field_61a0f5f5b3db0'),(320840,42574,'blocks_2_row_form','40394'),(320841,42574,'_blocks_2_row_form','field_61a4ff2c0b08e'),(320842,42574,'blocks_2_row_form_button_label',''),(320843,42574,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(320844,42574,'blocks_3_acfe_flexible_toggle',''),(320845,42574,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(320846,42574,'blocks_3_acfe_flexible_layout_title','Video'),(320847,42574,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(320848,42574,'blocks_3_size','large'),(320849,42574,'_blocks_3_size','field_6487038f297c1'),(320850,42574,'blocks_3_row_content_title',''),(320851,42574,'_blocks_3_row_content_title','field_64870132a865d'),(320852,42574,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(320853,42574,'_blocks_3_row_content_heading','field_64870142a865e'),(320854,42574,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(320855,42574,'_blocks_3_row_content_text','field_64870148a865f'),(320856,42574,'blocks_3_row_content',''),(320857,42574,'_blocks_3_row_content','field_6487008ba865c'),(320858,42574,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(320859,42574,'_blocks_3_video_src','field_6193c4a98ec07'),(320860,42574,'blocks_3_video_thumbnail',''),(320861,42574,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(320862,42574,'blocks_4_acfe_flexible_toggle',''),(320863,42574,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(320864,42574,'blocks_4_acfe_flexible_layout_title','Tabs'),(320865,42574,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(320866,42574,'blocks_4_options_theme','#ffffff'),(320867,42574,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(320868,42574,'blocks_4_options',''),(320869,42574,'_blocks_4_options','field_6177cfcd8140f'),(320870,42574,'blocks_4_tabs_0_tab_label','What You\'ll Learn'),(320871,42574,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(320872,42574,'blocks_4_tabs_0_tab_content_title',''),(320873,42574,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(320874,42574,'blocks_4_tabs_0_tab_content_heading','What You\'ll Learn'),(320875,42574,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(320876,42574,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health Biomechanics</li>\r\n</ul>'),(320877,42574,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(320878,42574,'blocks_4_tabs_0_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(320879,42574,'_blocks_4_tabs_0_tab_content_actions_0_button','field_6177cfcd81418'),(320880,42574,'blocks_4_tabs_0_tab_content_actions','1'),(320881,42574,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(320882,42574,'blocks_4_tabs_0_tab_content',''),(320883,42574,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(320884,42574,'blocks_4_tabs_0_tab_image','40869'),(320885,42574,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(320886,42574,'blocks_4_tabs_1_tab_label','Entry requirements'),(320887,42574,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(320888,42574,'blocks_4_tabs_1_tab_content_title',''),(320889,42574,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(320890,42574,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(320891,42574,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(320892,42574,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>\r\n&nbsp;'),(320893,42574,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(320894,42574,'blocks_4_tabs_1_tab_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(320895,42574,'_blocks_4_tabs_1_tab_content_actions_0_button','field_6177cfcd81418'),(320896,42574,'blocks_4_tabs_1_tab_content_actions','1'),(320897,42574,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(320898,42574,'blocks_4_tabs_1_tab_content',''),(320899,42574,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(320900,42574,'blocks_4_tabs_1_tab_image','40870'),(320901,42574,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(320902,42574,'blocks_4_tabs','2'),(320903,42574,'_blocks_4_tabs','field_6177cff281419'),(320904,42574,'blocks_5_acfe_flexible_toggle',''),(320905,42574,'_blocks_5_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(320906,42574,'blocks_5_acfe_flexible_layout_title','Icons'),(320907,42574,'_blocks_5_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(320908,42574,'blocks_5_options_theme','#b61234'),(320909,42574,'_blocks_5_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(320910,42574,'blocks_5_options_format','stacked'),(320911,42574,'_blocks_5_options_format','field_64bfde9a90690'),(320912,42574,'blocks_5_options',''),(320913,42574,'_blocks_5_options','field_64bfdd9b90684'),(320914,42574,'blocks_5_row_content_title',''),(320915,42574,'_blocks_5_row_content_title','field_64bfdd9b90687'),(320916,42574,'blocks_5_row_content_heading','Fees & Funding Options '),(320917,42574,'_blocks_5_row_content_heading','field_64bfdd9b90688'),(320918,42574,'blocks_5_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(320919,42574,'_blocks_5_row_content_text','field_64bfdd9b90689'),(320920,42574,'blocks_5_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(320921,42574,'_blocks_5_row_content_actions_0_button','field_64bfdd9b9068b'),(320922,42574,'blocks_5_row_content_actions','1'),(320923,42574,'_blocks_5_row_content_actions','field_64bfdd9b9068a'),(320924,42574,'blocks_5_row_content',''),(320925,42574,'_blocks_5_row_content','field_64bfdd9b90686'),(320926,42574,'blocks_5_icon_row_items_0_icon','pay-as-you-learn.svg'),(320927,42574,'_blocks_5_icon_row_items_0_icon','field_64bfdd9b9068d'),(320928,42574,'blocks_5_icon_row_items_0_label','Pay in full'),(320929,42574,'_blocks_5_icon_row_items_0_label','field_64bfdd9c9068e'),(320930,42574,'blocks_5_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(320931,42574,'_blocks_5_icon_row_items_0_text','field_64bfdd9c9068f'),(320932,42574,'blocks_5_icon_row_items_1_icon','finance.svg'),(320933,42574,'_blocks_5_icon_row_items_1_icon','field_64bfdd9b9068d'),(320934,42574,'blocks_5_icon_row_items_1_label','0% finance'),(320935,42574,'_blocks_5_icon_row_items_1_label','field_64bfdd9c9068e'),(320936,42574,'blocks_5_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(320937,42574,'_blocks_5_icon_row_items_1_text','field_64bfdd9c9068f'),(320938,42574,'blocks_5_icon_row_items_2_icon','pass-rate.svg'),(320939,42574,'_blocks_5_icon_row_items_2_icon','field_64bfdd9b9068d'),(320940,42574,'blocks_5_icon_row_items_2_label','Deposit & balance'),(320941,42574,'_blocks_5_icon_row_items_2_label','field_64bfdd9c9068e'),(320942,42574,'blocks_5_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(320943,42574,'_blocks_5_icon_row_items_2_text','field_64bfdd9c9068f'),(320944,42574,'blocks_5_icon_row_items','3'),(320945,42574,'_blocks_5_icon_row_items','field_64bfdd9b9068c'),(320946,42574,'blocks_6_acfe_flexible_toggle',''),(320947,42574,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(320948,42574,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(320949,42574,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(320950,42574,'blocks_6_options_theme','#ffffff'),(320951,42574,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(320952,42574,'blocks_6_options_reverse','0'),(320953,42574,'_blocks_6_options_reverse','field_61768049bb8ac'),(320954,42574,'blocks_6_options',''),(320955,42574,'_blocks_6_options','field_617682517c334'),(320956,42574,'blocks_6_split_5050_image','39224'),(320957,42574,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(320958,42574,'blocks_6_split_5050_video',''),(320959,42574,'_blocks_6_split_5050_video','field_6239f3160848a'),(320960,42574,'blocks_6_split_5050_content_title',''),(320961,42574,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(320962,42574,'blocks_6_split_5050_content_heading','Locations'),(320963,42574,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(320964,42574,'blocks_6_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(320965,42574,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(320966,42574,'blocks_6_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40778-3\";s:6:\"target\";s:0:\"\";}'),(320967,42574,'_blocks_6_split_5050_content_actions_0_button','field_61767b72eb8be'),(320968,42574,'blocks_6_split_5050_content_actions','1'),(320969,42574,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(320970,42574,'blocks_6_split_5050_content',''),(320971,42574,'_blocks_6_split_5050_content','field_61767afceb8ba'),(320972,42574,'blocks_8_acfe_flexible_toggle',''),(320973,42574,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(320974,42574,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(320975,42574,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(320976,42574,'blocks_8_options_theme','#ffffff'),(320977,42574,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(320978,42574,'blocks_8_options_state','0'),(320979,42574,'_blocks_8_options_state','field_6239fcb7508c5'),(320980,42574,'blocks_8_options',''),(320981,42574,'_blocks_8_options','field_6177e2991ac44'),(320982,42574,'blocks_8_content_title',''),(320983,42574,'_blocks_8_content_title','field_64d237e8bb1e2'),(320984,42574,'blocks_8_content_heading','FAQ\'s'),(320985,42574,'_blocks_8_content_heading','field_64d237e8bb1e3'),(320986,42574,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(320987,42574,'_blocks_8_content_text','field_64d237e8bb1e4'),(320988,42574,'blocks_8_content_actions',''),(320989,42574,'_blocks_8_content_actions','field_64d237e8bb1e5'),(320990,42574,'blocks_8_content_align','left'),(320991,42574,'_blocks_8_content_align','field_64d2443e6b6aa'),(320992,42574,'blocks_8_content',''),(320993,42574,'_blocks_8_content','field_64d237e8bb1e1'),(320994,42574,'blocks_8_accordion_content','faqs'),(320995,42574,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(320996,42574,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(320997,42574,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(320998,42574,'blocks_8_actions',''),(320999,42574,'_blocks_8_actions','field_61a746a817f7a'),(321000,42574,'blocks_7_acfe_flexible_toggle',''),(321001,42574,'_blocks_7_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(321002,42574,'blocks_7_acfe_flexible_layout_title','Template'),(321003,42574,'_blocks_7_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(321004,42574,'blocks_7_template','40987'),(321005,42574,'_blocks_7_template','field_617bdd570fe01'),(321006,42574,'course_label_label_theme','#0d1f73'),(321007,42574,'_course_label_label_theme','field_61e17bb8f71fb'),(321008,42574,'course_key_info_0_text','Entry requirements: Qualification in either Personal Trainer, Pilates, Yoga Instructor'),(321009,42574,'_course_key_info_0_text','field_617ac6c38e5e3'),(321010,42576,'hide_hero','0'),(321011,42576,'_hide_hero','field_66a2380fcda39'),(321012,42576,'hero_title','Level 4 Personal Trainer & Diploma in Biomechanics Coaching'),(321013,42576,'_hero_title','field_617571fe285e8'),(321014,42576,'hero_text','Biomechanics Education has spent over 20 years gathering data from elite athletes and regular gym-goers. This research forms the foundation of our comprehensive course, designed to educate students to an advanced level of understanding. '),(321015,42576,'_hero_text','field_6175723c285e9'),(321016,42576,'hero_actions','1'),(321017,42576,'_hero_actions','field_61757270285ea'),(321018,42576,'hero_style','default'),(321019,42576,'_hero_style','field_62051d9dc5324'),(321020,42576,'_thumbnail_id','40848'),(321021,42576,'__thumbnail_id','field_617570855ddaf'),(321022,42576,'hero_image_pos_x','right'),(321023,42576,'_hero_image_pos_x','field_62ec3d05390bb'),(321024,42576,'hero_image_pos_y','top'),(321025,42576,'_hero_image_pos_y','field_62ec3d05390bc'),(321026,42576,'hero_image_pos',''),(321027,42576,'_hero_image_pos','field_62ec3d05390ba'),(321028,42576,'fft_hide_from_listings','0'),(321029,42576,'_fft_hide_from_listings','field_61f1320446ab2'),(321030,42576,'fft_page_format','default'),(321031,42576,'_fft_page_format','field_61ae213f1f218'),(321032,42576,'fft_hide_nav','0'),(321033,42576,'_fft_hide_nav','field_635bd5e43527c'),(321034,42576,'fft_hide_header_call_to_action','0'),(321035,42576,'_fft_hide_header_call_to_action','field_635bd6723527d'),(321036,42576,'fft_page_sitemap','0'),(321037,42576,'_fft_page_sitemap','field_61af9b34e8181'),(321038,42576,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(321039,42576,'_blocks','field_6176696113096'),(321040,42576,'course_label_text',''),(321041,42576,'_course_label_text','field_61e17babf71fa'),(321042,42576,'course_label',''),(321043,42576,'_course_label','field_61e12f92749a7'),(321044,42576,'course_description',''),(321045,42576,'_course_description','field_617ac5788e5e1'),(321046,42576,'course_key_info',''),(321047,42576,'_course_key_info','field_617ac6ad8e5e2'),(321048,42576,'course_included',''),(321049,42576,'_course_included','field_617ac6f08e5e4'),(321050,42576,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(321051,42576,'_hero_actions_0_button','field_61757281285eb'),(321052,42576,'blocks_0_acfe_flexible_toggle',''),(321053,42576,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(321054,42576,'blocks_0_acfe_flexible_layout_title','Icons'),(321055,42576,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(321056,42576,'blocks_0_options_theme','#b61234'),(321057,42576,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(321058,42576,'blocks_0_options_format','row'),(321059,42576,'_blocks_0_options_format','field_64bfde9a90690'),(321060,42576,'blocks_0_options',''),(321061,42576,'_blocks_0_options','field_64bfdd9b90684'),(321062,42576,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(321063,42576,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(321064,42576,'blocks_0_icon_row_items_0_label','Accreditation'),(321065,42576,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(321066,42576,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(321067,42576,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(321068,42576,'blocks_0_icon_row_items_1_icon','finance.svg'),(321069,42576,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(321070,42576,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(321071,42576,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(321072,42576,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(321073,42576,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(321074,42576,'blocks_0_icon_row_items_2_icon','progression.svg'),(321075,42576,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(321076,42576,'blocks_0_icon_row_items_2_label','Earning Potential'),(321077,42576,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(321078,42576,'blocks_0_icon_row_items_2_text','Start Earning in 2-3 Months'),(321079,42576,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(321080,42576,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(321081,42576,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(321082,42576,'blocks_0_icon_row_items_3_label','Qualification'),(321083,42576,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(321084,42576,'blocks_0_icon_row_items_3_text','Level 4 Personal Trainer + Biomechanics Diploma'),(321085,42576,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(321086,42576,'blocks_0_icon_row_items','4'),(321087,42576,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(321088,42576,'blocks_5_acfe_flexible_toggle','1'),(321089,42576,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(321090,42576,'blocks_5_acfe_flexible_layout_title','Tabs'),(321091,42576,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(321092,42576,'blocks_5_options_theme','#ffffff'),(321093,42576,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(321094,42576,'blocks_5_options',''),(321095,42576,'_blocks_5_options','field_6177cfcd8140f'),(321096,42576,'blocks_5_tabs_0_tab_label','Entry requirements'),(321097,42576,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(321098,42576,'blocks_5_tabs_0_tab_content_title',''),(321099,42576,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(321100,42576,'blocks_5_tabs_0_tab_content_heading',''),(321101,42576,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(321102,42576,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(321103,42576,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(321104,42576,'blocks_5_tabs_0_tab_content_actions',''),(321105,42576,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(321106,42576,'blocks_5_tabs_0_tab_content',''),(321107,42576,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(321108,42576,'blocks_5_tabs_0_tab_image',''),(321109,42576,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(321110,42576,'blocks_5_tabs_1_tab_label','Learning format'),(321111,42576,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(321112,42576,'blocks_5_tabs_1_tab_content_title',''),(321113,42576,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(321114,42576,'blocks_5_tabs_1_tab_content_heading',''),(321115,42576,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(321116,42576,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(321117,42576,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(321118,42576,'blocks_5_tabs_1_tab_content_actions',''),(321119,42576,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(321120,42576,'blocks_5_tabs_1_tab_content',''),(321121,42576,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(321122,42576,'blocks_5_tabs_1_tab_image',''),(321123,42576,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(321124,42576,'blocks_5_tabs_2_tab_label','Qualifications included'),(321125,42576,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(321126,42576,'blocks_5_tabs_2_tab_content_title',''),(321127,42576,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(321128,42576,'blocks_5_tabs_2_tab_content_heading',''),(321129,42576,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(321130,42576,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(321131,42576,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(321132,42576,'blocks_5_tabs_2_tab_content_actions',''),(321133,42576,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(321134,42576,'blocks_5_tabs_2_tab_content',''),(321135,42576,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(321136,42576,'blocks_5_tabs_2_tab_image',''),(321137,42576,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(321138,42576,'blocks_5_tabs','3'),(321139,42576,'_blocks_5_tabs','field_6177cff281419'),(321140,42576,'blocks_4_acfe_flexible_toggle',''),(321141,42576,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(321142,42576,'blocks_4_acfe_flexible_layout_title','Template'),(321143,42576,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(321144,42576,'blocks_4_template','39207'),(321145,42576,'_blocks_4_template','field_617bdd570fe01'),(321146,42576,'blocks_6_acfe_flexible_toggle',''),(321147,42576,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(321148,42576,'blocks_6_acfe_flexible_layout_title','Icons'),(321149,42576,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(321150,42576,'blocks_6_options_theme','#f5f5f5'),(321151,42576,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(321152,42576,'blocks_6_options_format','stacked'),(321153,42576,'_blocks_6_options_format','field_64bfde9a90690'),(321154,42576,'blocks_6_options',''),(321155,42576,'_blocks_6_options','field_64bfdd9b90684'),(321156,42576,'blocks_6_row_content_title','Options available to pay for your course'),(321157,42576,'_blocks_6_row_content_title','field_64bfdd9b90687'),(321158,42576,'blocks_6_row_content_heading','Fees & Funding Options '),(321159,42576,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(321160,42576,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(321161,42576,'_blocks_6_row_content_text','field_64bfdd9b90689'),(321162,42576,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(321163,42576,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(321164,42576,'blocks_6_row_content_actions','1'),(321165,42576,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(321166,42576,'blocks_6_row_content',''),(321167,42576,'_blocks_6_row_content','field_64bfdd9b90686'),(321168,42576,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(321169,42576,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(321170,42576,'blocks_6_icon_row_items_0_label','Pay in full'),(321171,42576,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(321172,42576,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(321173,42576,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(321174,42576,'blocks_6_icon_row_items_1_icon','finance.svg'),(321175,42576,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(321176,42576,'blocks_6_icon_row_items_1_label','0% finance'),(321177,42576,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(321178,42576,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(321179,42576,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(321180,42576,'blocks_6_icon_row_items','3'),(321181,42576,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(321182,42576,'blocks_7_acfe_flexible_toggle',''),(321183,42576,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(321184,42576,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(321185,42576,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(321186,42576,'blocks_7_options_theme','#ffffff'),(321187,42576,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(321188,42576,'blocks_7_options_reverse','0'),(321189,42576,'_blocks_7_options_reverse','field_61768049bb8ac'),(321190,42576,'blocks_7_options',''),(321191,42576,'_blocks_7_options','field_617682517c334'),(321192,42576,'blocks_7_split_5050_image','40817'),(321193,42576,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(321194,42576,'blocks_7_split_5050_video',''),(321195,42576,'_blocks_7_split_5050_video','field_6239f3160848a'),(321196,42576,'blocks_7_split_5050_content_title',''),(321197,42576,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(321198,42576,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(321199,42576,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(321200,42576,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; spine Biomechanics</li>\r\n 	<li>Shoulder, knee &amp; foot Biomechanics</li>\r\n 	<li>Back health</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(321201,42576,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(321202,42576,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(321203,42576,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(321204,42576,'blocks_7_split_5050_content_actions','1'),(321205,42576,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(321206,42576,'blocks_7_split_5050_content',''),(321207,42576,'_blocks_7_split_5050_content','field_61767afceb8ba'),(321208,42576,'blocks_8_acfe_flexible_toggle',''),(321209,42576,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(321210,42576,'blocks_8_acfe_flexible_layout_title','Icons'),(321211,42576,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(321212,42576,'blocks_8_options_theme','#f5f5f5'),(321213,42576,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(321214,42576,'blocks_8_options_format','row'),(321215,42576,'_blocks_8_options_format','field_64bfde9a90690'),(321216,42576,'blocks_8_options',''),(321217,42576,'_blocks_8_options','field_64bfdd9b90684'),(321218,42576,'blocks_8_icon_row_items_0_icon','qualification.svg'),(321219,42576,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(321220,42576,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(321221,42576,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(321222,42576,'blocks_8_icon_row_items_0_text',''),(321223,42576,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(321224,42576,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(321225,42576,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(321226,42576,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(321227,42576,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(321228,42576,'blocks_8_icon_row_items_1_text',''),(321229,42576,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(321230,42576,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(321231,42576,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(321232,42576,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(321233,42576,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(321234,42576,'blocks_8_icon_row_items_2_text',''),(321235,42576,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(321236,42576,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(321237,42576,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(321238,42576,'blocks_8_icon_row_items_3_label','Flexible funding options'),(321239,42576,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(321240,42576,'blocks_8_icon_row_items_3_text',''),(321241,42576,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(321242,42576,'blocks_8_icon_row_items','4'),(321243,42576,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(321244,42576,'blocks_9_acfe_flexible_toggle',''),(321245,42576,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(321246,42576,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(321247,42576,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(321248,42576,'blocks_9_options_theme','#ffffff'),(321249,42576,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(321250,42576,'blocks_9_options_reverse','1'),(321251,42576,'_blocks_9_options_reverse','field_61768049bb8ac'),(321252,42576,'blocks_9_options',''),(321253,42576,'_blocks_9_options','field_617682517c334'),(321254,42576,'blocks_9_split_5050_image','39224'),(321255,42576,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(321256,42576,'blocks_9_split_5050_video',''),(321257,42576,'_blocks_9_split_5050_video','field_6239f3160848a'),(321258,42576,'blocks_9_split_5050_content_title','Locations'),(321259,42576,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(321260,42576,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(321261,42576,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(321262,42576,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(321263,42576,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(321264,42576,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(321265,42576,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(321266,42576,'blocks_9_split_5050_content_actions','1'),(321267,42576,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(321268,42576,'blocks_9_split_5050_content',''),(321269,42576,'_blocks_9_split_5050_content','field_61767afceb8ba'),(321270,42576,'blocks_1_acfe_flexible_toggle',''),(321271,42576,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(321272,42576,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(321273,42576,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(321274,42576,'blocks_1_options_theme','#ffffff'),(321275,42576,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(321276,42576,'blocks_1_options_reverse','0'),(321277,42576,'_blocks_1_options_reverse','field_61768049bb8ac'),(321278,42576,'blocks_1_options',''),(321279,42576,'_blocks_1_options','field_617682517c334'),(321280,42576,'blocks_1_split_5050_image','40785'),(321281,42576,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(321282,42576,'blocks_1_split_5050_video',''),(321283,42576,'_blocks_1_split_5050_video','field_6239f3160848a'),(321284,42576,'blocks_1_split_5050_content_title',''),(321285,42576,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(321286,42576,'blocks_1_split_5050_content_heading','Course Overview'),(321287,42576,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(321288,42576,'blocks_1_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimizing performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework. While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases a 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(321289,42576,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(321290,42576,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(321291,42576,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(321292,42576,'blocks_1_split_5050_content_actions','1'),(321293,42576,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(321294,42576,'blocks_1_split_5050_content',''),(321295,42576,'_blocks_1_split_5050_content','field_61767afceb8ba'),(321296,42576,'blocks_2_acfe_flexible_toggle',''),(321297,42576,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(321298,42576,'blocks_2_acfe_flexible_layout_title','Form'),(321299,42576,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(321300,42576,'blocks_2_row_content_format','standard'),(321301,42576,'_blocks_2_row_content_format','field_6481ead962881'),(321302,42576,'blocks_2_row_content_title',''),(321303,42576,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(321304,42576,'blocks_2_row_content_heading','Enquire Today'),(321305,42576,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(321306,42576,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if you\'re ready.'),(321307,42576,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(321308,42576,'blocks_2_row_content_actions',''),(321309,42576,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(321310,42576,'blocks_2_row_content',''),(321311,42576,'_blocks_2_row_content','field_61a0f5f5b3db0'),(321312,42576,'blocks_2_row_form','40394'),(321313,42576,'_blocks_2_row_form','field_61a4ff2c0b08e'),(321314,42576,'blocks_2_row_form_button_label',''),(321315,42576,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(321316,42576,'blocks_3_acfe_flexible_toggle',''),(321317,42576,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(321318,42576,'blocks_3_acfe_flexible_layout_title','Video'),(321319,42576,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(321320,42576,'blocks_3_size','large'),(321321,42576,'_blocks_3_size','field_6487038f297c1'),(321322,42576,'blocks_3_row_content_title',''),(321323,42576,'_blocks_3_row_content_title','field_64870132a865d'),(321324,42576,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(321325,42576,'_blocks_3_row_content_heading','field_64870142a865e'),(321326,42576,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(321327,42576,'_blocks_3_row_content_text','field_64870148a865f'),(321328,42576,'blocks_3_row_content',''),(321329,42576,'_blocks_3_row_content','field_6487008ba865c'),(321330,42576,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(321331,42576,'_blocks_3_video_src','field_6193c4a98ec07'),(321332,42576,'blocks_3_video_thumbnail',''),(321333,42576,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(321334,42576,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(321335,42576,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(321336,42576,'blocks_6_icon_row_items_2_label','Deposit & balance'),(321337,42576,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(321338,42576,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(321339,42576,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(321340,42576,'blocks_10_acfe_flexible_toggle','1'),(321341,42576,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(321342,42576,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(321343,42576,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(321344,42576,'blocks_10_options_theme','#ffffff'),(321345,42576,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(321346,42576,'blocks_10_options',''),(321347,42576,'_blocks_10_options','field_617ac0b7f6c08'),(321348,42576,'blocks_10_show','selection'),(321349,42576,'_blocks_10_show','field_61a49cba9d946'),(321350,42576,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(321351,42576,'_blocks_10_courses','field_61b244781ee0a'),(321352,42576,'blocks_10_open_whats_included','1'),(321353,42576,'_blocks_10_open_whats_included','field_66ebfd679450c'),(321354,42576,'blocks_10_open_key_information','0'),(321355,42576,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(321356,42576,'blocks_10_open',''),(321357,42576,'_blocks_10_open','field_66ebfd009450b'),(321358,42576,'blocks_11_acfe_flexible_toggle',''),(321359,42576,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(321360,42576,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(321361,42576,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(321362,42576,'blocks_11_options_theme','#ffffff'),(321363,42576,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(321364,42576,'blocks_11_options_reverse','0'),(321365,42576,'_blocks_11_options_reverse','field_61768049bb8ac'),(321366,42576,'blocks_11_options',''),(321367,42576,'_blocks_11_options','field_617682517c334'),(321368,42576,'blocks_11_split_5050_image','40812'),(321369,42576,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(321370,42576,'blocks_11_split_5050_video',''),(321371,42576,'_blocks_11_split_5050_video','field_6239f3160848a'),(321372,42576,'blocks_11_split_5050_content_title','Optimise Performance '),(321373,42576,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(321374,42576,'blocks_11_split_5050_content_heading','Level 4 Personal Trainer Qualification with your Diploma in Biomechanics Coaching'),(321375,42576,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(321376,42576,'blocks_11_split_5050_content_text','Become a Level 4 Personal Trainer with a course that build upon the foundations learned in level 3, While introducing essential new skills. Reach a higher earning potential and gain a competitive edge over other personal trainers through this specialised course\r\n\r\nLevel 4 Personal Trainer Includes\r\n<ul>\r\n 	<li>Advanced Programming.</li>\r\n 	<li>Advanced behaviour change.</li>\r\n 	<li>Training considerations for males and females.</li>\r\n 	<li>Advanced fitness testing.</li>\r\n 	<li><span class=\"NormalTextRun SCXW121745892 BCX8\">Advanced techniques to support and enhance the client journey.</span><span class=\"NormalTextRun SCXW121745892 BCX8\"> </span></li>\r\n</ul>'),(321377,42576,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(321378,42576,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(321379,42576,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(321380,42576,'blocks_11_split_5050_content_actions','1'),(321381,42576,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(321382,42576,'blocks_11_split_5050_content',''),(321383,42576,'_blocks_11_split_5050_content','field_61767afceb8ba'),(321384,42576,'blocks_12_acfe_flexible_toggle',''),(321385,42576,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(321386,42576,'blocks_12_acfe_flexible_layout_title','Template'),(321387,42576,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(321388,42576,'blocks_12_template','40987'),(321389,42576,'_blocks_12_template','field_617bdd570fe01'),(321390,42576,'blocks_13_acfe_flexible_toggle',''),(321391,42576,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(321392,42576,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(321393,42576,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(321394,42576,'blocks_13_options_theme','#f5f5f5'),(321395,42576,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(321396,42576,'blocks_13_options_state','0'),(321397,42576,'_blocks_13_options_state','field_6239fcb7508c5'),(321398,42576,'blocks_13_options',''),(321399,42576,'_blocks_13_options','field_6177e2991ac44'),(321400,42576,'blocks_13_content_title',''),(321401,42576,'_blocks_13_content_title','field_64d237e8bb1e2'),(321402,42576,'blocks_13_content_heading','FAQ\'s'),(321403,42576,'_blocks_13_content_heading','field_64d237e8bb1e3'),(321404,42576,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(321405,42576,'_blocks_13_content_text','field_64d237e8bb1e4'),(321406,42576,'blocks_13_content_actions',''),(321407,42576,'_blocks_13_content_actions','field_64d237e8bb1e5'),(321408,42576,'blocks_13_content_align','left'),(321409,42576,'_blocks_13_content_align','field_64d2443e6b6aa'),(321410,42576,'blocks_13_content',''),(321411,42576,'_blocks_13_content','field_64d237e8bb1e1'),(321412,42576,'blocks_13_accordion_content','faqs'),(321413,42576,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(321414,42576,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39445\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(321415,42576,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(321416,42576,'blocks_13_actions',''),(321417,42576,'_blocks_13_actions','field_61a746a817f7a'),(321418,42577,'hide_hero','0'),(321419,42577,'_hide_hero','field_66a2380fcda39'),(321420,42577,'hero_title','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching '),(321421,42577,'_hero_title','field_617571fe285e8'),(321422,42577,'hero_text','Elevate Your Pilates Practice with Intrinsic biomechanics and enhance your career pathways '),(321423,42577,'_hero_text','field_6175723c285e9'),(321424,42577,'hero_actions','1'),(321425,42577,'_hero_actions','field_61757270285ea'),(321426,42577,'hero_style','default'),(321427,42577,'_hero_style','field_62051d9dc5324'),(321428,42577,'_thumbnail_id','41524'),(321429,42577,'__thumbnail_id','field_617570855ddaf'),(321430,42577,'hero_image_pos_x','right'),(321431,42577,'_hero_image_pos_x','field_62ec3d05390bb'),(321432,42577,'hero_image_pos_y','top'),(321433,42577,'_hero_image_pos_y','field_62ec3d05390bc'),(321434,42577,'hero_image_pos',''),(321435,42577,'_hero_image_pos','field_62ec3d05390ba'),(321436,42577,'fft_hide_from_listings','0'),(321437,42577,'_fft_hide_from_listings','field_61f1320446ab2'),(321438,42577,'fft_page_format','default'),(321439,42577,'_fft_page_format','field_61ae213f1f218'),(321440,42577,'fft_hide_nav','0'),(321441,42577,'_fft_hide_nav','field_635bd5e43527c'),(321442,42577,'fft_hide_header_call_to_action','0'),(321443,42577,'_fft_hide_header_call_to_action','field_635bd6723527d'),(321444,42577,'fft_page_sitemap','0'),(321445,42577,'_fft_page_sitemap','field_61af9b34e8181'),(321446,42577,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(321447,42577,'_blocks','field_6176696113096'),(321448,42577,'course_label_text',''),(321449,42577,'_course_label_text','field_61e17babf71fa'),(321450,42577,'course_label',''),(321451,42577,'_course_label','field_61e12f92749a7'),(321452,42577,'course_description',''),(321453,42577,'_course_description','field_617ac5788e5e1'),(321454,42577,'course_key_info',''),(321455,42577,'_course_key_info','field_617ac6ad8e5e2'),(321456,42577,'course_included',''),(321457,42577,'_course_included','field_617ac6f08e5e4'),(321458,42577,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41520-4\";s:6:\"target\";s:0:\"\";}'),(321459,42577,'_hero_actions_0_button','field_61757281285eb'),(321460,42577,'blocks_0_acfe_flexible_toggle',''),(321461,42577,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(321462,42577,'blocks_0_acfe_flexible_layout_title','Icons'),(321463,42577,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(321464,42577,'blocks_0_options_theme','#b61234'),(321465,42577,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(321466,42577,'blocks_0_options_format','row'),(321467,42577,'_blocks_0_options_format','field_64bfde9a90690'),(321468,42577,'blocks_0_options',''),(321469,42577,'_blocks_0_options','field_64bfdd9b90684'),(321470,42577,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(321471,42577,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(321472,42577,'blocks_0_icon_row_items_0_label','Accreditation'),(321473,42577,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(321474,42577,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(321475,42577,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(321476,42577,'blocks_0_icon_row_items_1_icon','finance.svg'),(321477,42577,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(321478,42577,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(321479,42577,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(321480,42577,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(321481,42577,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(321482,42577,'blocks_0_icon_row_items_2_icon','progression.svg'),(321483,42577,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(321484,42577,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(321485,42577,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(321486,42577,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(321487,42577,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(321488,42577,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(321489,42577,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(321490,42577,'blocks_0_icon_row_items_3_label','Qualification'),(321491,42577,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(321492,42577,'blocks_0_icon_row_items_3_text','Level 4 Sports Massage + Biomechanics Diploma'),(321493,42577,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(321494,42577,'blocks_0_icon_row_items','4'),(321495,42577,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(321496,42577,'blocks_5_acfe_flexible_toggle','1'),(321497,42577,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(321498,42577,'blocks_5_acfe_flexible_layout_title','Tabs'),(321499,42577,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(321500,42577,'blocks_5_options_theme','#ffffff'),(321501,42577,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(321502,42577,'blocks_5_options',''),(321503,42577,'_blocks_5_options','field_6177cfcd8140f'),(321504,42577,'blocks_5_tabs_0_tab_label','Entry requirements'),(321505,42577,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(321506,42577,'blocks_5_tabs_0_tab_content_title',''),(321507,42577,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(321508,42577,'blocks_5_tabs_0_tab_content_heading',''),(321509,42577,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(321510,42577,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(321511,42577,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(321512,42577,'blocks_5_tabs_0_tab_content_actions',''),(321513,42577,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(321514,42577,'blocks_5_tabs_0_tab_content',''),(321515,42577,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(321516,42577,'blocks_5_tabs_0_tab_image',''),(321517,42577,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(321518,42577,'blocks_5_tabs_1_tab_label','Learning format'),(321519,42577,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(321520,42577,'blocks_5_tabs_1_tab_content_title',''),(321521,42577,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(321522,42577,'blocks_5_tabs_1_tab_content_heading',''),(321523,42577,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(321524,42577,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(321525,42577,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(321526,42577,'blocks_5_tabs_1_tab_content_actions',''),(321527,42577,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(321528,42577,'blocks_5_tabs_1_tab_content',''),(321529,42577,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(321530,42577,'blocks_5_tabs_1_tab_image',''),(321531,42577,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(321532,42577,'blocks_5_tabs_2_tab_label','Qualifications included'),(321533,42577,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(321534,42577,'blocks_5_tabs_2_tab_content_title',''),(321535,42577,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(321536,42577,'blocks_5_tabs_2_tab_content_heading',''),(321537,42577,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(321538,42577,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(321539,42577,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(321540,42577,'blocks_5_tabs_2_tab_content_actions',''),(321541,42577,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(321542,42577,'blocks_5_tabs_2_tab_content',''),(321543,42577,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(321544,42577,'blocks_5_tabs_2_tab_image',''),(321545,42577,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(321546,42577,'blocks_5_tabs','3'),(321547,42577,'_blocks_5_tabs','field_6177cff281419'),(321548,42577,'blocks_4_acfe_flexible_toggle',''),(321549,42577,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(321550,42577,'blocks_4_acfe_flexible_layout_title','Template'),(321551,42577,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(321552,42577,'blocks_4_template','39207'),(321553,42577,'_blocks_4_template','field_617bdd570fe01'),(321554,42577,'blocks_6_acfe_flexible_toggle',''),(321555,42577,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(321556,42577,'blocks_6_acfe_flexible_layout_title','Icons'),(321557,42577,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(321558,42577,'blocks_6_options_theme','#f5f5f5'),(321559,42577,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(321560,42577,'blocks_6_options_format','stacked'),(321561,42577,'_blocks_6_options_format','field_64bfde9a90690'),(321562,42577,'blocks_6_options',''),(321563,42577,'_blocks_6_options','field_64bfdd9b90684'),(321564,42577,'blocks_6_row_content_title','Options available to pay for your course'),(321565,42577,'_blocks_6_row_content_title','field_64bfdd9b90687'),(321566,42577,'blocks_6_row_content_heading','Fees & Funding Options '),(321567,42577,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(321568,42577,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(321569,42577,'_blocks_6_row_content_text','field_64bfdd9b90689'),(321570,42577,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(321571,42577,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(321572,42577,'blocks_6_row_content_actions','1'),(321573,42577,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(321574,42577,'blocks_6_row_content',''),(321575,42577,'_blocks_6_row_content','field_64bfdd9b90686'),(321576,42577,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(321577,42577,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(321578,42577,'blocks_6_icon_row_items_0_label','Pay in full'),(321579,42577,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(321580,42577,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(321581,42577,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(321582,42577,'blocks_6_icon_row_items_1_icon','finance.svg'),(321583,42577,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(321584,42577,'blocks_6_icon_row_items_1_label','0% finance'),(321585,42577,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(321586,42577,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(321587,42577,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(321588,42577,'blocks_6_icon_row_items','3'),(321589,42577,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(321590,42577,'blocks_7_acfe_flexible_toggle',''),(321591,42577,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(321592,42577,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(321593,42577,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(321594,42577,'blocks_7_options_theme','#ffffff'),(321595,42577,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(321596,42577,'blocks_7_options_reverse','0'),(321597,42577,'_blocks_7_options_reverse','field_61768049bb8ac'),(321598,42577,'blocks_7_options',''),(321599,42577,'_blocks_7_options','field_617682517c334'),(321600,42577,'blocks_7_split_5050_image','41526'),(321601,42577,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(321602,42577,'blocks_7_split_5050_video',''),(321603,42577,'_blocks_7_split_5050_video','field_6239f3160848a'),(321604,42577,'blocks_7_split_5050_content_title',''),(321605,42577,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(321606,42577,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(321607,42577,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(321608,42577,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(321609,42577,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(321610,42577,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(321611,42577,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(321612,42577,'blocks_7_split_5050_content_actions','1'),(321613,42577,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(321614,42577,'blocks_7_split_5050_content',''),(321615,42577,'_blocks_7_split_5050_content','field_61767afceb8ba'),(321616,42577,'blocks_8_acfe_flexible_toggle',''),(321617,42577,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(321618,42577,'blocks_8_acfe_flexible_layout_title','Icons'),(321619,42577,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(321620,42577,'blocks_8_options_theme','#f5f5f5'),(321621,42577,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(321622,42577,'blocks_8_options_format','row'),(321623,42577,'_blocks_8_options_format','field_64bfde9a90690'),(321624,42577,'blocks_8_options',''),(321625,42577,'_blocks_8_options','field_64bfdd9b90684'),(321626,42577,'blocks_8_icon_row_items_0_icon','qualification.svg'),(321627,42577,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(321628,42577,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(321629,42577,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(321630,42577,'blocks_8_icon_row_items_0_text',''),(321631,42577,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(321632,42577,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(321633,42577,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(321634,42577,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(321635,42577,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(321636,42577,'blocks_8_icon_row_items_1_text',''),(321637,42577,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(321638,42577,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(321639,42577,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(321640,42577,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(321641,42577,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(321642,42577,'blocks_8_icon_row_items_2_text',''),(321643,42577,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(321644,42577,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(321645,42577,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(321646,42577,'blocks_8_icon_row_items_3_label','Flexible funding options'),(321647,42577,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(321648,42577,'blocks_8_icon_row_items_3_text',''),(321649,42577,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(321650,42577,'blocks_8_icon_row_items','4'),(321651,42577,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(321652,42577,'blocks_9_acfe_flexible_toggle',''),(321653,42577,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(321654,42577,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(321655,42577,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(321656,42577,'blocks_9_options_theme','#ffffff'),(321657,42577,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(321658,42577,'blocks_9_options_reverse','1'),(321659,42577,'_blocks_9_options_reverse','field_61768049bb8ac'),(321660,42577,'blocks_9_options',''),(321661,42577,'_blocks_9_options','field_617682517c334'),(321662,42577,'blocks_9_split_5050_image','39224'),(321663,42577,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(321664,42577,'blocks_9_split_5050_video',''),(321665,42577,'_blocks_9_split_5050_video','field_6239f3160848a'),(321666,42577,'blocks_9_split_5050_content_title','Locations'),(321667,42577,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(321668,42577,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(321669,42577,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(321670,42577,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(321671,42577,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(321672,42577,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(321673,42577,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(321674,42577,'blocks_9_split_5050_content_actions','1'),(321675,42577,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(321676,42577,'blocks_9_split_5050_content',''),(321677,42577,'_blocks_9_split_5050_content','field_61767afceb8ba'),(321678,42577,'blocks_1_acfe_flexible_toggle',''),(321679,42577,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(321680,42577,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(321681,42577,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(321682,42577,'blocks_1_options_theme','#ffffff'),(321683,42577,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(321684,42577,'blocks_1_options_reverse','0'),(321685,42577,'_blocks_1_options_reverse','field_61768049bb8ac'),(321686,42577,'blocks_1_options',''),(321687,42577,'_blocks_1_options','field_617682517c334'),(321688,42577,'blocks_1_split_5050_image','41506'),(321689,42577,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(321690,42577,'blocks_1_split_5050_video',''),(321691,42577,'_blocks_1_split_5050_video','field_6239f3160848a'),(321692,42577,'blocks_1_split_5050_content_title',''),(321693,42577,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(321694,42577,'blocks_1_split_5050_content_heading','Course Overview'),(321695,42577,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(321696,42577,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW114645069 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW114645069 BCX8\">Enhance your</span> <span class=\"NormalTextRun SCXW114645069 BCX8\">expertise</span><span class=\"NormalTextRun SCXW114645069 BCX8\"> with our comprehensive Level 4 Pilates Instructor and Diploma in Biomechanics Coaching, a unique course designed to elevate your Pilates practice while equipping you with specialised Intrinsic biomechanics skills. This programme blends advanced Pilates methods with biomechanics principles to improve client movement, enhance posture, and support functional performance. Perfect for Pilates instructors and fitness professionals aiming to work confidently with clients facing orthopaedic or movement challenges, this dual qualification empowers you to make a lasting impact on client wellbeing through targeted analysis and </span><span class=\"NormalTextRun SCXW114645069 BCX8\">risk preventions.</span></span><span class=\"EOP SCXW114645069 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(321697,42577,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(321698,42577,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(321699,42577,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(321700,42577,'blocks_1_split_5050_content_actions','1'),(321701,42577,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(321702,42577,'blocks_1_split_5050_content',''),(321703,42577,'_blocks_1_split_5050_content','field_61767afceb8ba'),(321704,42577,'blocks_2_acfe_flexible_toggle',''),(321705,42577,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(321706,42577,'blocks_2_acfe_flexible_layout_title','Form'),(321707,42577,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(321708,42577,'blocks_2_row_content_format','standard'),(321709,42577,'_blocks_2_row_content_format','field_6481ead962881'),(321710,42577,'blocks_2_row_content_title',''),(321711,42577,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(321712,42577,'blocks_2_row_content_heading','Enquire Today'),(321713,42577,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(321714,42577,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(321715,42577,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(321716,42577,'blocks_2_row_content_actions',''),(321717,42577,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(321718,42577,'blocks_2_row_content',''),(321719,42577,'_blocks_2_row_content','field_61a0f5f5b3db0'),(321720,42577,'blocks_2_row_form','40394'),(321721,42577,'_blocks_2_row_form','field_61a4ff2c0b08e'),(321722,42577,'blocks_2_row_form_button_label',''),(321723,42577,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(321724,42577,'blocks_3_acfe_flexible_toggle',''),(321725,42577,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(321726,42577,'blocks_3_acfe_flexible_layout_title','Video'),(321727,42577,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(321728,42577,'blocks_3_size','large'),(321729,42577,'_blocks_3_size','field_6487038f297c1'),(321730,42577,'blocks_3_row_content_title',''),(321731,42577,'_blocks_3_row_content_title','field_64870132a865d'),(321732,42577,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(321733,42577,'_blocks_3_row_content_heading','field_64870142a865e'),(321734,42577,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(321735,42577,'_blocks_3_row_content_text','field_64870148a865f'),(321736,42577,'blocks_3_row_content',''),(321737,42577,'_blocks_3_row_content','field_6487008ba865c'),(321738,42577,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(321739,42577,'_blocks_3_video_src','field_6193c4a98ec07'),(321740,42577,'blocks_3_video_thumbnail',''),(321741,42577,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(321742,42577,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(321743,42577,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(321744,42577,'blocks_6_icon_row_items_2_label','Deposit & balance'),(321745,42577,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(321746,42577,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(321747,42577,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(321748,42577,'blocks_10_acfe_flexible_toggle','1'),(321749,42577,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(321750,42577,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(321751,42577,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(321752,42577,'blocks_10_options_theme','#ffffff'),(321753,42577,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(321754,42577,'blocks_10_options',''),(321755,42577,'_blocks_10_options','field_617ac0b7f6c08'),(321756,42577,'blocks_10_show','selection'),(321757,42577,'_blocks_10_show','field_61a49cba9d946'),(321758,42577,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(321759,42577,'_blocks_10_courses','field_61b244781ee0a'),(321760,42577,'blocks_10_open_whats_included','1'),(321761,42577,'_blocks_10_open_whats_included','field_66ebfd679450c'),(321762,42577,'blocks_10_open_key_information','0'),(321763,42577,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(321764,42577,'blocks_10_open',''),(321765,42577,'_blocks_10_open','field_66ebfd009450b'),(321766,42577,'blocks_11_acfe_flexible_toggle',''),(321767,42577,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(321768,42577,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(321769,42577,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(321770,42577,'blocks_11_options_theme','#ffffff'),(321771,42577,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(321772,42577,'blocks_11_options_reverse','0'),(321773,42577,'_blocks_11_options_reverse','field_61768049bb8ac'),(321774,42577,'blocks_11_options',''),(321775,42577,'_blocks_11_options','field_617682517c334'),(321776,42577,'blocks_11_split_5050_image','41504'),(321777,42577,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(321778,42577,'blocks_11_split_5050_video',''),(321779,42577,'_blocks_11_split_5050_video','field_6239f3160848a'),(321780,42577,'blocks_11_split_5050_content_title','Optimise Performance '),(321781,42577,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(321782,42577,'blocks_11_split_5050_content_heading','Level 4 Mat Pilates Instructor Qualification with your Diploma in Biomechanics Coaching'),(321783,42577,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(321784,42577,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW53757674 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW53757674 BCX8\">Advance your Pilates </span><span class=\"NormalTextRun SCXW53757674 BCX8\">expertise</span><span class=\"NormalTextRun SCXW53757674 BCX8\"> with a comprehensive Level 4 course designed to build on foundational knowledge and introduce advanced techniques to support and enhance client outcomes. Specialise in biomechanics and stand out in the fitness industry with skills that improve client performance, posture, and functional movement.</span></span><span class=\"EOP SCXW53757674 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Level 4 Pilates Includes:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26316?category=qualifications&amp;query=vtct%20postnatal\"><span data-contrast=\"none\">VTCT Level 3 Award in Adapting Physical Activity for Antenatal and Postnatal Clients.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/26662?category=qualifications&amp;query=VTCT%20mat%20pilates\"><span data-contrast=\"none\">VTCT Level 3 Diploma in Instructing Mat-Based Pilates.</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"12\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><a href=\"https://register.ofqual.gov.uk/Detail/Index/48763?category=qualifications&amp;query=transcend%20pilates\"><span data-contrast=\"none\">Transcend Level 4 Certificate in Teaching Matwork Pilates</span></a><span data-ccp-props=\"{}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">As a qualified level 4 Pilates instructor you will be able to: </span></b><span data-ccp-props=\"{}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own classes and work with clients on a 1-to-1 basis</span><span data-ccp-props=\"{}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Teach Pilates at beginner, intermediate and advanced levels</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Run your own weight management clinic, or offer individual consultations</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Create bespoke Pilates routines for new and expectant mothers</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"13\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Be able to create bespoke Pilates routines for clients with mobility considerations such as Arthritis or Hypermobility</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(321785,42577,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(321786,42577,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41520-3\";s:6:\"target\";s:0:\"\";}'),(321787,42577,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(321788,42577,'blocks_11_split_5050_content_actions','1'),(321789,42577,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(321790,42577,'blocks_11_split_5050_content',''),(321791,42577,'_blocks_11_split_5050_content','field_61767afceb8ba'),(321792,42577,'blocks_12_acfe_flexible_toggle',''),(321793,42577,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(321794,42577,'blocks_12_acfe_flexible_layout_title','Template'),(321795,42577,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(321796,42577,'blocks_12_template','40987'),(321797,42577,'_blocks_12_template','field_617bdd570fe01'),(321798,42577,'blocks_13_acfe_flexible_toggle',''),(321799,42577,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(321800,42577,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(321801,42577,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(321802,42577,'blocks_13_options_theme','#f5f5f5'),(321803,42577,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(321804,42577,'blocks_13_options_state','0'),(321805,42577,'_blocks_13_options_state','field_6239fcb7508c5'),(321806,42577,'blocks_13_options',''),(321807,42577,'_blocks_13_options','field_6177e2991ac44'),(321808,42577,'blocks_13_content_title',''),(321809,42577,'_blocks_13_content_title','field_64d237e8bb1e2'),(321810,42577,'blocks_13_content_heading','FAQ\'s'),(321811,42577,'_blocks_13_content_heading','field_64d237e8bb1e3'),(321812,42577,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(321813,42577,'_blocks_13_content_text','field_64d237e8bb1e4'),(321814,42577,'blocks_13_content_actions',''),(321815,42577,'_blocks_13_content_actions','field_64d237e8bb1e5'),(321816,42577,'blocks_13_content_align','left'),(321817,42577,'_blocks_13_content_align','field_64d2443e6b6aa'),(321818,42577,'blocks_13_content',''),(321819,42577,'_blocks_13_content','field_64d237e8bb1e1'),(321820,42577,'blocks_13_accordion_content','faqs'),(321821,42577,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(321822,42577,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41517\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(321823,42577,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(321824,42577,'blocks_13_actions',''),(321825,42577,'_blocks_13_actions','field_61a746a817f7a'),(321826,42578,'hide_hero','0'),(321827,42578,'_hide_hero','field_66a2380fcda39'),(321828,42578,'hero_title','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching'),(321829,42578,'_hero_title','field_617571fe285e8'),(321830,42578,'hero_text','Master Strength and Conditioning with Intrinsic biomechanics expertise for optimal client performance.'),(321831,42578,'_hero_text','field_6175723c285e9'),(321832,42578,'hero_actions','1'),(321833,42578,'_hero_actions','field_61757270285ea'),(321834,42578,'hero_style','default'),(321835,42578,'_hero_style','field_62051d9dc5324'),(321836,42578,'_thumbnail_id','41538'),(321837,42578,'__thumbnail_id','field_617570855ddaf'),(321838,42578,'hero_image_pos_x','right'),(321839,42578,'_hero_image_pos_x','field_62ec3d05390bb'),(321840,42578,'hero_image_pos_y','top'),(321841,42578,'_hero_image_pos_y','field_62ec3d05390bc'),(321842,42578,'hero_image_pos',''),(321843,42578,'_hero_image_pos','field_62ec3d05390ba'),(321844,42578,'fft_hide_from_listings','0'),(321845,42578,'_fft_hide_from_listings','field_61f1320446ab2'),(321846,42578,'fft_page_format','default'),(321847,42578,'_fft_page_format','field_61ae213f1f218'),(321848,42578,'fft_hide_nav','0'),(321849,42578,'_fft_hide_nav','field_635bd5e43527c'),(321850,42578,'fft_hide_header_call_to_action','0'),(321851,42578,'_fft_hide_header_call_to_action','field_635bd6723527d'),(321852,42578,'fft_page_sitemap','0'),(321853,42578,'_fft_page_sitemap','field_61af9b34e8181'),(321854,42578,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(321855,42578,'_blocks','field_6176696113096'),(321856,42578,'course_label_text',''),(321857,42578,'_course_label_text','field_61e17babf71fa'),(321858,42578,'course_label',''),(321859,42578,'_course_label','field_61e12f92749a7'),(321860,42578,'course_description',''),(321861,42578,'_course_description','field_617ac5788e5e1'),(321862,42578,'course_key_info',''),(321863,42578,'_course_key_info','field_617ac6ad8e5e2'),(321864,42578,'course_included',''),(321865,42578,'_course_included','field_617ac6f08e5e4'),(321866,42578,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn more\";s:3:\"url\";s:12:\"#row-41533-4\";s:6:\"target\";s:0:\"\";}'),(321867,42578,'_hero_actions_0_button','field_61757281285eb'),(321868,42578,'blocks_0_acfe_flexible_toggle',''),(321869,42578,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(321870,42578,'blocks_0_acfe_flexible_layout_title','Icons'),(321871,42578,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(321872,42578,'blocks_0_options_theme','#b61234'),(321873,42578,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(321874,42578,'blocks_0_options_format','row'),(321875,42578,'_blocks_0_options_format','field_64bfde9a90690'),(321876,42578,'blocks_0_options',''),(321877,42578,'_blocks_0_options','field_64bfdd9b90684'),(321878,42578,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(321879,42578,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(321880,42578,'blocks_0_icon_row_items_0_label','Accreditation'),(321881,42578,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(321882,42578,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(321883,42578,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(321884,42578,'blocks_0_icon_row_items_1_icon','finance.svg'),(321885,42578,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(321886,42578,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(321887,42578,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(321888,42578,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(321889,42578,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(321890,42578,'blocks_0_icon_row_items_2_icon','progression.svg'),(321891,42578,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(321892,42578,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(321893,42578,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(321894,42578,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(321895,42578,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(321896,42578,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(321897,42578,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(321898,42578,'blocks_0_icon_row_items_3_label','Qualification'),(321899,42578,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(321900,42578,'blocks_0_icon_row_items_3_text','Level 4 Strength & Conditioning + Diploma in Biomechanics Coaching '),(321901,42578,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(321902,42578,'blocks_0_icon_row_items','4'),(321903,42578,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(321904,42578,'blocks_5_acfe_flexible_toggle','1'),(321905,42578,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(321906,42578,'blocks_5_acfe_flexible_layout_title','Tabs'),(321907,42578,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(321908,42578,'blocks_5_options_theme','#ffffff'),(321909,42578,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(321910,42578,'blocks_5_options',''),(321911,42578,'_blocks_5_options','field_6177cfcd8140f'),(321912,42578,'blocks_5_tabs_0_tab_label','Entry requirements'),(321913,42578,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(321914,42578,'blocks_5_tabs_0_tab_content_title',''),(321915,42578,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(321916,42578,'blocks_5_tabs_0_tab_content_heading',''),(321917,42578,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(321918,42578,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(321919,42578,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(321920,42578,'blocks_5_tabs_0_tab_content_actions',''),(321921,42578,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(321922,42578,'blocks_5_tabs_0_tab_content',''),(321923,42578,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(321924,42578,'blocks_5_tabs_0_tab_image',''),(321925,42578,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(321926,42578,'blocks_5_tabs_1_tab_label','Learning format'),(321927,42578,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(321928,42578,'blocks_5_tabs_1_tab_content_title',''),(321929,42578,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(321930,42578,'blocks_5_tabs_1_tab_content_heading',''),(321931,42578,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(321932,42578,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(321933,42578,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(321934,42578,'blocks_5_tabs_1_tab_content_actions',''),(321935,42578,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(321936,42578,'blocks_5_tabs_1_tab_content',''),(321937,42578,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(321938,42578,'blocks_5_tabs_1_tab_image',''),(321939,42578,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(321940,42578,'blocks_5_tabs_2_tab_label','Qualifications included'),(321941,42578,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(321942,42578,'blocks_5_tabs_2_tab_content_title',''),(321943,42578,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(321944,42578,'blocks_5_tabs_2_tab_content_heading',''),(321945,42578,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(321946,42578,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(321947,42578,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(321948,42578,'blocks_5_tabs_2_tab_content_actions',''),(321949,42578,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(321950,42578,'blocks_5_tabs_2_tab_content',''),(321951,42578,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(321952,42578,'blocks_5_tabs_2_tab_image',''),(321953,42578,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(321954,42578,'blocks_5_tabs','3'),(321955,42578,'_blocks_5_tabs','field_6177cff281419'),(321956,42578,'blocks_4_acfe_flexible_toggle',''),(321957,42578,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(321958,42578,'blocks_4_acfe_flexible_layout_title','Template'),(321959,42578,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(321960,42578,'blocks_4_template','39207'),(321961,42578,'_blocks_4_template','field_617bdd570fe01'),(321962,42578,'blocks_6_acfe_flexible_toggle',''),(321963,42578,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(321964,42578,'blocks_6_acfe_flexible_layout_title','Icons'),(321965,42578,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(321966,42578,'blocks_6_options_theme','#f5f5f5'),(321967,42578,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(321968,42578,'blocks_6_options_format','stacked'),(321969,42578,'_blocks_6_options_format','field_64bfde9a90690'),(321970,42578,'blocks_6_options',''),(321971,42578,'_blocks_6_options','field_64bfdd9b90684'),(321972,42578,'blocks_6_row_content_title','Options available to pay for your course'),(321973,42578,'_blocks_6_row_content_title','field_64bfdd9b90687'),(321974,42578,'blocks_6_row_content_heading','Fees & Funding Options '),(321975,42578,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(321976,42578,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(321977,42578,'_blocks_6_row_content_text','field_64bfdd9b90689'),(321978,42578,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41533-3\";s:6:\"target\";s:0:\"\";}'),(321979,42578,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(321980,42578,'blocks_6_row_content_actions','1'),(321981,42578,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(321982,42578,'blocks_6_row_content',''),(321983,42578,'_blocks_6_row_content','field_64bfdd9b90686'),(321984,42578,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(321985,42578,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(321986,42578,'blocks_6_icon_row_items_0_label','Pay in full'),(321987,42578,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(321988,42578,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(321989,42578,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(321990,42578,'blocks_6_icon_row_items_1_icon','finance.svg'),(321991,42578,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(321992,42578,'blocks_6_icon_row_items_1_label','0% finance'),(321993,42578,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(321994,42578,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(321995,42578,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(321996,42578,'blocks_6_icon_row_items','3'),(321997,42578,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(321998,42578,'blocks_7_acfe_flexible_toggle',''),(321999,42578,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(322000,42578,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(322001,42578,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(322002,42578,'blocks_7_options_theme','#ffffff'),(322003,42578,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(322004,42578,'blocks_7_options_reverse','0'),(322005,42578,'_blocks_7_options_reverse','field_61768049bb8ac'),(322006,42578,'blocks_7_options',''),(322007,42578,'_blocks_7_options','field_617682517c334'),(322008,42578,'blocks_7_split_5050_image','41543'),(322009,42578,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(322010,42578,'blocks_7_split_5050_video',''),(322011,42578,'_blocks_7_split_5050_video','field_6239f3160848a'),(322012,42578,'blocks_7_split_5050_content_title',''),(322013,42578,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(322014,42578,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(322015,42578,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(322016,42578,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Workshop</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(322017,42578,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(322018,42578,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-41533-3\";s:6:\"target\";s:0:\"\";}'),(322019,42578,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(322020,42578,'blocks_7_split_5050_content_actions','1'),(322021,42578,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(322022,42578,'blocks_7_split_5050_content',''),(322023,42578,'_blocks_7_split_5050_content','field_61767afceb8ba'),(322024,42578,'blocks_8_acfe_flexible_toggle',''),(322025,42578,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(322026,42578,'blocks_8_acfe_flexible_layout_title','Icons'),(322027,42578,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(322028,42578,'blocks_8_options_theme','#f5f5f5'),(322029,42578,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(322030,42578,'blocks_8_options_format','row'),(322031,42578,'_blocks_8_options_format','field_64bfde9a90690'),(322032,42578,'blocks_8_options',''),(322033,42578,'_blocks_8_options','field_64bfdd9b90684'),(322034,42578,'blocks_8_icon_row_items_0_icon','qualification.svg'),(322035,42578,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(322036,42578,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(322037,42578,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(322038,42578,'blocks_8_icon_row_items_0_text',''),(322039,42578,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(322040,42578,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(322041,42578,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(322042,42578,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(322043,42578,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(322044,42578,'blocks_8_icon_row_items_1_text',''),(322045,42578,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(322046,42578,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(322047,42578,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(322048,42578,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(322049,42578,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(322050,42578,'blocks_8_icon_row_items_2_text',''),(322051,42578,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(322052,42578,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(322053,42578,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(322054,42578,'blocks_8_icon_row_items_3_label','Flexible funding options'),(322055,42578,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(322056,42578,'blocks_8_icon_row_items_3_text',''),(322057,42578,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(322058,42578,'blocks_8_icon_row_items','4'),(322059,42578,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(322060,42578,'blocks_9_acfe_flexible_toggle',''),(322061,42578,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(322062,42578,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(322063,42578,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(322064,42578,'blocks_9_options_theme','#ffffff'),(322065,42578,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(322066,42578,'blocks_9_options_reverse','1'),(322067,42578,'_blocks_9_options_reverse','field_61768049bb8ac'),(322068,42578,'blocks_9_options',''),(322069,42578,'_blocks_9_options','field_617682517c334'),(322070,42578,'blocks_9_split_5050_image','39224'),(322071,42578,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(322072,42578,'blocks_9_split_5050_video',''),(322073,42578,'_blocks_9_split_5050_video','field_6239f3160848a'),(322074,42578,'blocks_9_split_5050_content_title','Locations'),(322075,42578,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(322076,42578,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(322077,42578,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(322078,42578,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(322079,42578,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(322080,42578,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41533-3\";s:6:\"target\";s:0:\"\";}'),(322081,42578,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(322082,42578,'blocks_9_split_5050_content_actions','1'),(322083,42578,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(322084,42578,'blocks_9_split_5050_content',''),(322085,42578,'_blocks_9_split_5050_content','field_61767afceb8ba'),(322086,42578,'blocks_1_acfe_flexible_toggle',''),(322087,42578,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(322088,42578,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(322089,42578,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(322090,42578,'blocks_1_options_theme','#ffffff'),(322091,42578,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(322092,42578,'blocks_1_options_reverse','0'),(322093,42578,'_blocks_1_options_reverse','field_61768049bb8ac'),(322094,42578,'blocks_1_options',''),(322095,42578,'_blocks_1_options','field_617682517c334'),(322096,42578,'blocks_1_split_5050_image','41498'),(322097,42578,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(322098,42578,'blocks_1_split_5050_video',''),(322099,42578,'_blocks_1_split_5050_video','field_6239f3160848a'),(322100,42578,'blocks_1_split_5050_content_title',''),(322101,42578,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(322102,42578,'blocks_1_split_5050_content_heading','Course Overview'),(322103,42578,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(322104,42578,'blocks_1_split_5050_content_text','<span class=\"TextRun SCXW194933276 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW194933276 BCX8\">Enhance your </span><span class=\"NormalTextRun SCXW194933276 BCX8\">expertise</span><span class=\"NormalTextRun SCXW194933276 BCX8\"> with a dual qualification in Biomechanics Coaching and Level 4 Strength and Conditioning. Designed for fitness professionals, coaches, and therapists, this course covers essential Intrinsic biomechanics principles alongside advanced strength and conditioning techniques, equipping you to improve performance, reduce injury risk, and provide targeted training for clients of all levels.</span></span><span class=\"EOP SCXW194933276 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(322105,42578,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(322106,42578,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(322107,42578,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(322108,42578,'blocks_1_split_5050_content_actions','1'),(322109,42578,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(322110,42578,'blocks_1_split_5050_content',''),(322111,42578,'_blocks_1_split_5050_content','field_61767afceb8ba'),(322112,42578,'blocks_2_acfe_flexible_toggle',''),(322113,42578,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(322114,42578,'blocks_2_acfe_flexible_layout_title','Form'),(322115,42578,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(322116,42578,'blocks_2_row_content_format','standard'),(322117,42578,'_blocks_2_row_content_format','field_6481ead962881'),(322118,42578,'blocks_2_row_content_title',''),(322119,42578,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(322120,42578,'blocks_2_row_content_heading','Enquire Today'),(322121,42578,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(322122,42578,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(322123,42578,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(322124,42578,'blocks_2_row_content_actions',''),(322125,42578,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(322126,42578,'blocks_2_row_content',''),(322127,42578,'_blocks_2_row_content','field_61a0f5f5b3db0'),(322128,42578,'blocks_2_row_form','40394'),(322129,42578,'_blocks_2_row_form','field_61a4ff2c0b08e'),(322130,42578,'blocks_2_row_form_button_label',''),(322131,42578,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(322132,42578,'blocks_3_acfe_flexible_toggle',''),(322133,42578,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(322134,42578,'blocks_3_acfe_flexible_layout_title','Video'),(322135,42578,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(322136,42578,'blocks_3_size','large'),(322137,42578,'_blocks_3_size','field_6487038f297c1'),(322138,42578,'blocks_3_row_content_title',''),(322139,42578,'_blocks_3_row_content_title','field_64870132a865d'),(322140,42578,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(322141,42578,'_blocks_3_row_content_heading','field_64870142a865e'),(322142,42578,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(322143,42578,'_blocks_3_row_content_text','field_64870148a865f'),(322144,42578,'blocks_3_row_content',''),(322145,42578,'_blocks_3_row_content','field_6487008ba865c'),(322146,42578,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(322147,42578,'_blocks_3_video_src','field_6193c4a98ec07'),(322148,42578,'blocks_3_video_thumbnail',''),(322149,42578,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(322150,42578,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(322151,42578,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(322152,42578,'blocks_6_icon_row_items_2_label','Deposit & balance'),(322153,42578,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(322154,42578,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(322155,42578,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(322156,42578,'blocks_10_acfe_flexible_toggle','1'),(322157,42578,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(322158,42578,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(322159,42578,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(322160,42578,'blocks_10_options_theme','#ffffff'),(322161,42578,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(322162,42578,'blocks_10_options',''),(322163,42578,'_blocks_10_options','field_617ac0b7f6c08'),(322164,42578,'blocks_10_show','selection'),(322165,42578,'_blocks_10_show','field_61a49cba9d946'),(322166,42578,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(322167,42578,'_blocks_10_courses','field_61b244781ee0a'),(322168,42578,'blocks_10_open_whats_included','1'),(322169,42578,'_blocks_10_open_whats_included','field_66ebfd679450c'),(322170,42578,'blocks_10_open_key_information','0'),(322171,42578,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(322172,42578,'blocks_10_open',''),(322173,42578,'_blocks_10_open','field_66ebfd009450b'),(322174,42578,'blocks_11_acfe_flexible_toggle',''),(322175,42578,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(322176,42578,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(322177,42578,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(322178,42578,'blocks_11_options_theme','#ffffff'),(322179,42578,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(322180,42578,'blocks_11_options_reverse','0'),(322181,42578,'_blocks_11_options_reverse','field_61768049bb8ac'),(322182,42578,'blocks_11_options',''),(322183,42578,'_blocks_11_options','field_617682517c334'),(322184,42578,'blocks_11_split_5050_image','41493'),(322185,42578,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(322186,42578,'blocks_11_split_5050_video',''),(322187,42578,'_blocks_11_split_5050_video','field_6239f3160848a'),(322188,42578,'blocks_11_split_5050_content_title','Optimise Performance '),(322189,42578,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(322190,42578,'blocks_11_split_5050_content_heading','Level 4 Strength and Conditioning Qualification with your Diploma in Biomechanics Coaching'),(322191,42578,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(322192,42578,'blocks_11_split_5050_content_text','<span class=\"TextRun SCXW125057262 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW125057262 BCX8\">Our unique programme in Biomechanics Coaching and Level 4 Strength and Conditioning offers advanced techniques that go beyond traditional training. Gain skills in biomechanics to </span><span class=\"NormalTextRun SCXW125057262 BCX8\">identify</span><span class=\"NormalTextRun SCXW125057262 BCX8\"> movement patterns, assess functional performance, and optimise training plans. Ideal for trainers and coaches, this qualification enables you to deliver scientifically backed, targeted conditioning to improve client results.</span></span><span class=\"EOP SCXW125057262 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW39222847 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW39222847 BCX8\">As a qualified level 4 </span><span class=\"NormalTextRun SCXW39222847 BCX8\">Strength &amp; Conditioning</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> expert</span><span class=\"NormalTextRun SCXW39222847 BCX8\"> you will be able to: </span></span> </strong>\r\n<ul>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">The role of a strength and conditioning coach as part of an athlete’s support team.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Methods of carrying out performance-related needs analysis, measurements and assessments.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Strategies to analyse and evaluate assessment findings to be able to develop and </span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">agree short, medium, and long-term performance goals.</span></li>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Planning, delivering and evaluating periodised, performance-related strength and conditioning programmes.</span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-ccp-props=\"{}\"> </span></li>\r\n</ul>'),(322193,42578,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(322194,42578,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire now\";s:3:\"url\";s:12:\"#row-41533-3\";s:6:\"target\";s:0:\"\";}'),(322195,42578,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(322196,42578,'blocks_11_split_5050_content_actions','1'),(322197,42578,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(322198,42578,'blocks_11_split_5050_content',''),(322199,42578,'_blocks_11_split_5050_content','field_61767afceb8ba'),(322200,42578,'blocks_12_acfe_flexible_toggle',''),(322201,42578,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(322202,42578,'blocks_12_acfe_flexible_layout_title','Template'),(322203,42578,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(322204,42578,'blocks_12_template','40987'),(322205,42578,'_blocks_12_template','field_617bdd570fe01'),(322206,42578,'blocks_13_acfe_flexible_toggle',''),(322207,42578,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(322208,42578,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(322209,42578,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(322210,42578,'blocks_13_options_theme','#f5f5f5'),(322211,42578,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(322212,42578,'blocks_13_options_state','0'),(322213,42578,'_blocks_13_options_state','field_6239fcb7508c5'),(322214,42578,'blocks_13_options',''),(322215,42578,'_blocks_13_options','field_6177e2991ac44'),(322216,42578,'blocks_13_content_title',''),(322217,42578,'_blocks_13_content_title','field_64d237e8bb1e2'),(322218,42578,'blocks_13_content_heading','FAQ\'s'),(322219,42578,'_blocks_13_content_heading','field_64d237e8bb1e3'),(322220,42578,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(322221,42578,'_blocks_13_content_text','field_64d237e8bb1e4'),(322222,42578,'blocks_13_content_actions',''),(322223,42578,'_blocks_13_content_actions','field_64d237e8bb1e5'),(322224,42578,'blocks_13_content_align','left'),(322225,42578,'_blocks_13_content_align','field_64d2443e6b6aa'),(322226,42578,'blocks_13_content',''),(322227,42578,'_blocks_13_content','field_64d237e8bb1e1'),(322228,42578,'blocks_13_accordion_content','faqs'),(322229,42578,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(322230,42578,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41534\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(322231,42578,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(322232,42578,'blocks_13_actions',''),(322233,42578,'_blocks_13_actions','field_61a746a817f7a'),(322234,42579,'hide_hero','0'),(322235,42579,'_hide_hero','field_66a2380fcda39'),(322236,42579,'hero_title','Level 3 Sports Massage & Diploma in Biomechanics Coaching'),(322237,42579,'_hero_title','field_617571fe285e8'),(322238,42579,'hero_text','Empower Your Practice with Expert-Level Sports Massage and Biomechanics Skills.'),(322239,42579,'_hero_text','field_6175723c285e9'),(322240,42579,'hero_actions','1'),(322241,42579,'_hero_actions','field_61757270285ea'),(322242,42579,'hero_style','default'),(322243,42579,'_hero_style','field_62051d9dc5324'),(322244,42579,'_thumbnail_id','41428'),(322245,42579,'__thumbnail_id','field_617570855ddaf'),(322246,42579,'hero_image_pos_x','right'),(322247,42579,'_hero_image_pos_x','field_62ec3d05390bb'),(322248,42579,'hero_image_pos_y','top'),(322249,42579,'_hero_image_pos_y','field_62ec3d05390bc'),(322250,42579,'hero_image_pos',''),(322251,42579,'_hero_image_pos','field_62ec3d05390ba'),(322252,42579,'fft_hide_from_listings','0'),(322253,42579,'_fft_hide_from_listings','field_61f1320446ab2'),(322254,42579,'fft_page_format','default'),(322255,42579,'_fft_page_format','field_61ae213f1f218'),(322256,42579,'fft_hide_nav','0'),(322257,42579,'_fft_hide_nav','field_635bd5e43527c'),(322258,42579,'fft_hide_header_call_to_action','0'),(322259,42579,'_fft_hide_header_call_to_action','field_635bd6723527d'),(322260,42579,'fft_page_sitemap','0'),(322261,42579,'_fft_page_sitemap','field_61af9b34e8181'),(322262,42579,'blocks','a:14:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:8:\"template\";i:5;s:4:\"tabs\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:14:\"course_compare\";i:11;s:10:\"split_5050\";i:12;s:8:\"template\";i:13;s:10:\"accordions\";}'),(322263,42579,'_blocks','field_6176696113096'),(322264,42579,'course_label_text',''),(322265,42579,'_course_label_text','field_61e17babf71fa'),(322266,42579,'course_label',''),(322267,42579,'_course_label','field_61e12f92749a7'),(322268,42579,'course_description',''),(322269,42579,'_course_description','field_617ac5788e5e1'),(322270,42579,'course_key_info',''),(322271,42579,'_course_key_info','field_617ac6ad8e5e2'),(322272,42579,'course_included',''),(322273,42579,'_course_included','field_617ac6f08e5e4'),(322274,42579,'hero_actions_0_button','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:12:\"#row-41425-4\";s:6:\"target\";s:0:\"\";}'),(322275,42579,'_hero_actions_0_button','field_61757281285eb'),(322276,42579,'blocks_0_acfe_flexible_toggle',''),(322277,42579,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(322278,42579,'blocks_0_acfe_flexible_layout_title','Icons'),(322279,42579,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(322280,42579,'blocks_0_options_theme','#b61234'),(322281,42579,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(322282,42579,'blocks_0_options_format','row'),(322283,42579,'_blocks_0_options_format','field_64bfde9a90690'),(322284,42579,'blocks_0_options',''),(322285,42579,'_blocks_0_options','field_64bfdd9b90684'),(322286,42579,'blocks_0_icon_row_items_0_icon','accreditation.svg'),(322287,42579,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(322288,42579,'blocks_0_icon_row_items_0_label','Accreditation'),(322289,42579,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(322290,42579,'blocks_0_icon_row_items_0_text','CIMSPA Endorsed'),(322291,42579,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(322292,42579,'blocks_0_icon_row_items_1_icon','finance.svg'),(322293,42579,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(322294,42579,'blocks_0_icon_row_items_1_label','Flexible Payment Options'),(322295,42579,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(322296,42579,'blocks_0_icon_row_items_1_text','Including 0% Finance'),(322297,42579,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(322298,42579,'blocks_0_icon_row_items_2_icon','progression.svg'),(322299,42579,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(322300,42579,'blocks_0_icon_row_items_2_label','Fast Track Your Career'),(322301,42579,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(322302,42579,'blocks_0_icon_row_items_2_text','Start making an impact in just 2-3 months'),(322303,42579,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(322304,42579,'blocks_0_icon_row_items_3_icon','pliates-stamp.svg'),(322305,42579,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(322306,42579,'blocks_0_icon_row_items_3_label','Qualification'),(322307,42579,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(322308,42579,'blocks_0_icon_row_items_3_text','Level 3 Sports Massage + Biomechanics Diploma'),(322309,42579,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(322310,42579,'blocks_0_icon_row_items','4'),(322311,42579,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(322312,42579,'blocks_5_acfe_flexible_toggle','1'),(322313,42579,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(322314,42579,'blocks_5_acfe_flexible_layout_title','Tabs'),(322315,42579,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(322316,42579,'blocks_5_options_theme','#ffffff'),(322317,42579,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(322318,42579,'blocks_5_options',''),(322319,42579,'_blocks_5_options','field_6177cfcd8140f'),(322320,42579,'blocks_5_tabs_0_tab_label','Entry requirements'),(322321,42579,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(322322,42579,'blocks_5_tabs_0_tab_content_title',''),(322323,42579,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(322324,42579,'blocks_5_tabs_0_tab_content_heading',''),(322325,42579,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(322326,42579,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li>Minimum age for course entry is 16</li>\r\n 	<li>Level 3 Personal Trainer</li>\r\n</ul>'),(322327,42579,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(322328,42579,'blocks_5_tabs_0_tab_content_actions',''),(322329,42579,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(322330,42579,'blocks_5_tabs_0_tab_content',''),(322331,42579,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(322332,42579,'blocks_5_tabs_0_tab_image',''),(322333,42579,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(322334,42579,'blocks_5_tabs_1_tab_label','Learning format'),(322335,42579,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(322336,42579,'blocks_5_tabs_1_tab_content_title',''),(322337,42579,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(322338,42579,'blocks_5_tabs_1_tab_content_heading',''),(322339,42579,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(322340,42579,'blocks_5_tabs_1_tab_content_text','<ul>\r\n 	<li>Blended learning – a combination of e-Learning and in-person.</li>\r\n</ul>'),(322341,42579,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(322342,42579,'blocks_5_tabs_1_tab_content_actions',''),(322343,42579,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(322344,42579,'blocks_5_tabs_1_tab_content',''),(322345,42579,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(322346,42579,'blocks_5_tabs_1_tab_image',''),(322347,42579,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(322348,42579,'blocks_5_tabs_2_tab_label','Qualifications included'),(322349,42579,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(322350,42579,'blocks_5_tabs_2_tab_content_title',''),(322351,42579,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(322352,42579,'blocks_5_tabs_2_tab_content_heading',''),(322353,42579,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(322354,42579,'blocks_5_tabs_2_tab_content_text','<ul>\r\n 	<li>Active IQ Level 4 Personal Trainer</li>\r\n</ul>'),(322355,42579,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(322356,42579,'blocks_5_tabs_2_tab_content_actions',''),(322357,42579,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(322358,42579,'blocks_5_tabs_2_tab_content',''),(322359,42579,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(322360,42579,'blocks_5_tabs_2_tab_image',''),(322361,42579,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(322362,42579,'blocks_5_tabs','3'),(322363,42579,'_blocks_5_tabs','field_6177cff281419'),(322364,42579,'blocks_4_acfe_flexible_toggle',''),(322365,42579,'_blocks_4_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(322366,42579,'blocks_4_acfe_flexible_layout_title','Template'),(322367,42579,'_blocks_4_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(322368,42579,'blocks_4_template','39207'),(322369,42579,'_blocks_4_template','field_617bdd570fe01'),(322370,42579,'blocks_6_acfe_flexible_toggle',''),(322371,42579,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(322372,42579,'blocks_6_acfe_flexible_layout_title','Icons'),(322373,42579,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(322374,42579,'blocks_6_options_theme','#f5f5f5'),(322375,42579,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(322376,42579,'blocks_6_options_format','stacked'),(322377,42579,'_blocks_6_options_format','field_64bfde9a90690'),(322378,42579,'blocks_6_options',''),(322379,42579,'_blocks_6_options','field_64bfdd9b90684'),(322380,42579,'blocks_6_row_content_title','Options available to pay for your course'),(322381,42579,'_blocks_6_row_content_title','field_64bfdd9b90687'),(322382,42579,'blocks_6_row_content_heading','Fees & Funding Options '),(322383,42579,'_blocks_6_row_content_heading','field_64bfdd9b90688'),(322384,42579,'blocks_6_row_content_text','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(322385,42579,'_blocks_6_row_content_text','field_64bfdd9b90689'),(322386,42579,'blocks_6_row_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:12:\"#row-40780-3\";s:6:\"target\";s:0:\"\";}'),(322387,42579,'_blocks_6_row_content_actions_0_button','field_64bfdd9b9068b'),(322388,42579,'blocks_6_row_content_actions','1'),(322389,42579,'_blocks_6_row_content_actions','field_64bfdd9b9068a'),(322390,42579,'blocks_6_row_content',''),(322391,42579,'_blocks_6_row_content','field_64bfdd9b90686'),(322392,42579,'blocks_6_icon_row_items_0_icon','pay-as-you-learn.svg'),(322393,42579,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(322394,42579,'blocks_6_icon_row_items_0_label','Pay in full'),(322395,42579,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(322396,42579,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(322397,42579,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(322398,42579,'blocks_6_icon_row_items_1_icon','finance.svg'),(322399,42579,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(322400,42579,'blocks_6_icon_row_items_1_label','0% finance'),(322401,42579,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(322402,42579,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(322403,42579,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(322404,42579,'blocks_6_icon_row_items','3'),(322405,42579,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(322406,42579,'blocks_7_acfe_flexible_toggle',''),(322407,42579,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(322408,42579,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(322409,42579,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(322410,42579,'blocks_7_options_theme','#ffffff'),(322411,42579,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(322412,42579,'blocks_7_options_reverse','0'),(322413,42579,'_blocks_7_options_reverse','field_61768049bb8ac'),(322414,42579,'blocks_7_options',''),(322415,42579,'_blocks_7_options','field_617682517c334'),(322416,42579,'blocks_7_split_5050_image','41333'),(322417,42579,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(322418,42579,'blocks_7_split_5050_video',''),(322419,42579,'_blocks_7_split_5050_video','field_6239f3160848a'),(322420,42579,'blocks_7_split_5050_content_title',''),(322421,42579,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(322422,42579,'blocks_7_split_5050_content_heading','Course Information and Entry Requirements'),(322423,42579,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(322424,42579,'blocks_7_split_5050_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>\r\nTo study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(322425,42579,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(322426,42579,'blocks_7_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(322427,42579,'_blocks_7_split_5050_content_actions_0_button','field_61767b72eb8be'),(322428,42579,'blocks_7_split_5050_content_actions','1'),(322429,42579,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(322430,42579,'blocks_7_split_5050_content',''),(322431,42579,'_blocks_7_split_5050_content','field_61767afceb8ba'),(322432,42579,'blocks_8_acfe_flexible_toggle',''),(322433,42579,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(322434,42579,'blocks_8_acfe_flexible_layout_title','Icons'),(322435,42579,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(322436,42579,'blocks_8_options_theme','#f5f5f5'),(322437,42579,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(322438,42579,'blocks_8_options_format','row'),(322439,42579,'_blocks_8_options_format','field_64bfde9a90690'),(322440,42579,'blocks_8_options',''),(322441,42579,'_blocks_8_options','field_64bfdd9b90684'),(322442,42579,'blocks_8_icon_row_items_0_icon','qualification.svg'),(322443,42579,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(322444,42579,'blocks_8_icon_row_items_0_label','Learn from industry experts'),(322445,42579,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(322446,42579,'blocks_8_icon_row_items_0_text',''),(322447,42579,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(322448,42579,'blocks_8_icon_row_items_1_icon','return-on-investment-2.svg'),(322449,42579,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(322450,42579,'blocks_8_icon_row_items_1_label','Increase your earning potential'),(322451,42579,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(322452,42579,'blocks_8_icon_row_items_1_text',''),(322453,42579,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(322454,42579,'blocks_8_icon_row_items_2_icon','face-to-face.svg'),(322455,42579,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(322456,42579,'blocks_8_icon_row_items_2_label','Hybrid Learning'),(322457,42579,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(322458,42579,'blocks_8_icon_row_items_2_text',''),(322459,42579,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(322460,42579,'blocks_8_icon_row_items_3_icon','pay-as-you-learn.svg'),(322461,42579,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(322462,42579,'blocks_8_icon_row_items_3_label','Flexible funding options'),(322463,42579,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(322464,42579,'blocks_8_icon_row_items_3_text',''),(322465,42579,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(322466,42579,'blocks_8_icon_row_items','4'),(322467,42579,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(322468,42579,'blocks_9_acfe_flexible_toggle',''),(322469,42579,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(322470,42579,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(322471,42579,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(322472,42579,'blocks_9_options_theme','#ffffff'),(322473,42579,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(322474,42579,'blocks_9_options_reverse','1'),(322475,42579,'_blocks_9_options_reverse','field_61768049bb8ac'),(322476,42579,'blocks_9_options',''),(322477,42579,'_blocks_9_options','field_617682517c334'),(322478,42579,'blocks_9_split_5050_image','39224'),(322479,42579,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(322480,42579,'blocks_9_split_5050_video',''),(322481,42579,'_blocks_9_split_5050_video','field_6239f3160848a'),(322482,42579,'blocks_9_split_5050_content_title','Locations'),(322483,42579,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(322484,42579,'blocks_9_split_5050_content_heading','Where Can I Learn? '),(322485,42579,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(322486,42579,'blocks_9_split_5050_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(322487,42579,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(322488,42579,'blocks_9_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(322489,42579,'_blocks_9_split_5050_content_actions_0_button','field_61767b72eb8be'),(322490,42579,'blocks_9_split_5050_content_actions','1'),(322491,42579,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(322492,42579,'blocks_9_split_5050_content',''),(322493,42579,'_blocks_9_split_5050_content','field_61767afceb8ba'),(322494,42579,'blocks_1_acfe_flexible_toggle',''),(322495,42579,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(322496,42579,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(322497,42579,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(322498,42579,'blocks_1_options_theme','#ffffff'),(322499,42579,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(322500,42579,'blocks_1_options_reverse','0'),(322501,42579,'_blocks_1_options_reverse','field_61768049bb8ac'),(322502,42579,'blocks_1_options',''),(322503,42579,'_blocks_1_options','field_617682517c334'),(322504,42579,'blocks_1_split_5050_image','41430'),(322505,42579,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(322506,42579,'blocks_1_split_5050_video',''),(322507,42579,'_blocks_1_split_5050_video','field_6239f3160848a'),(322508,42579,'blocks_1_split_5050_content_title',''),(322509,42579,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(322510,42579,'blocks_1_split_5050_content_heading','Course Overview'),(322511,42579,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(322512,42579,'blocks_1_split_5050_content_text','<span data-contrast=\"none\">Discover a transformative programme that combines advanced Level 3 Sports Massage techniques with cutting-edge biomechanics education. This comprehensive course offers hands-on training in sports massage, alongside in-depth movement analysis, equipping you with the skills to support athletic performance, rehabilitation, and injury prevention. Our evidence-based approach is designed to empower movement practitioners, sports massage therapists, strength coaches, personal trainers, and manual therapists by providing a simple yet highly effective system for assessing and optimising movement quality.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>\r\n\r\n<span data-contrast=\"none\">Drawing from over 20 years of data, including insights from thousands of subjects—ranging from elite athletes to everyday gym-goers—our programme integrates the principles of sports massage with biomechanics to enhance performance and reduce risk. With proven accuracy, including a 97% gold standard in lab testing compared to expensive isokinetic machinery, you\'ll gain the tools to assess and refine your clients\' movement patterns, identify limitations, and improve their overall functional performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(322513,42579,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(322514,42579,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:6:\"_blank\";}'),(322515,42579,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(322516,42579,'blocks_1_split_5050_content_actions','1'),(322517,42579,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(322518,42579,'blocks_1_split_5050_content',''),(322519,42579,'_blocks_1_split_5050_content','field_61767afceb8ba'),(322520,42579,'blocks_2_acfe_flexible_toggle',''),(322521,42579,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(322522,42579,'blocks_2_acfe_flexible_layout_title','Form'),(322523,42579,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(322524,42579,'blocks_2_row_content_format','standard'),(322525,42579,'_blocks_2_row_content_format','field_6481ead962881'),(322526,42579,'blocks_2_row_content_title',''),(322527,42579,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(322528,42579,'blocks_2_row_content_heading','Enquire Today'),(322529,42579,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(322530,42579,'blocks_2_row_content_text','<span class=\"TextRun SCXW139150338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW139150338 BCX8\">You’ll</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> have the opportunity to speak with one of our expert career advisors, who can provide friendly, no-obligation advice about your options and help you get started if </span><span class=\"NormalTextRun SCXW139150338 BCX8\">you’re</span><span class=\"NormalTextRun SCXW139150338 BCX8\"> ready.</span></span><span class=\"EOP SCXW139150338 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span>'),(322531,42579,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(322532,42579,'blocks_2_row_content_actions',''),(322533,42579,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(322534,42579,'blocks_2_row_content',''),(322535,42579,'_blocks_2_row_content','field_61a0f5f5b3db0'),(322536,42579,'blocks_2_row_form','40394'),(322537,42579,'_blocks_2_row_form','field_61a4ff2c0b08e'),(322538,42579,'blocks_2_row_form_button_label',''),(322539,42579,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(322540,42579,'blocks_3_acfe_flexible_toggle',''),(322541,42579,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(322542,42579,'blocks_3_acfe_flexible_layout_title','Video'),(322543,42579,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(322544,42579,'blocks_3_size','large'),(322545,42579,'_blocks_3_size','field_6487038f297c1'),(322546,42579,'blocks_3_row_content_title',''),(322547,42579,'_blocks_3_row_content_title','field_64870132a865d'),(322548,42579,'blocks_3_row_content_heading','Become a Biomechanics Coach'),(322549,42579,'_blocks_3_row_content_heading','field_64870142a865e'),(322550,42579,'blocks_3_row_content_text','Want to know more about being a Biomechanics Coach, and what it means for you and your business? Check out our video with Founder and Director of Biomechanics Education, Rachel Frances Thomson.'),(322551,42579,'_blocks_3_row_content_text','field_64870148a865f'),(322552,42579,'blocks_3_row_content',''),(322553,42579,'_blocks_3_row_content','field_6487008ba865c'),(322554,42579,'blocks_3_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(322555,42579,'_blocks_3_video_src','field_6193c4a98ec07'),(322556,42579,'blocks_3_video_thumbnail',''),(322557,42579,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(322558,42579,'blocks_6_icon_row_items_2_icon','pass-rate.svg'),(322559,42579,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(322560,42579,'blocks_6_icon_row_items_2_label','Deposit & balance'),(322561,42579,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(322562,42579,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(322563,42579,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(322564,42579,'blocks_10_acfe_flexible_toggle','1'),(322565,42579,'_blocks_10_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(322566,42579,'blocks_10_acfe_flexible_layout_title','Course Comparison'),(322567,42579,'_blocks_10_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(322568,42579,'blocks_10_options_theme','#ffffff'),(322569,42579,'_blocks_10_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(322570,42579,'blocks_10_options',''),(322571,42579,'_blocks_10_options','field_617ac0b7f6c08'),(322572,42579,'blocks_10_show','selection'),(322573,42579,'_blocks_10_show','field_61a49cba9d946'),(322574,42579,'blocks_10_courses','a:3:{i:0;s:5:\"40270\";i:1;s:5:\"40271\";i:2;s:5:\"40272\";}'),(322575,42579,'_blocks_10_courses','field_61b244781ee0a'),(322576,42579,'blocks_10_open_whats_included','1'),(322577,42579,'_blocks_10_open_whats_included','field_66ebfd679450c'),(322578,42579,'blocks_10_open_key_information','0'),(322579,42579,'_blocks_10_open_key_information','field_66ebfd7f9450d'),(322580,42579,'blocks_10_open',''),(322581,42579,'_blocks_10_open','field_66ebfd009450b'),(322582,42579,'blocks_11_acfe_flexible_toggle',''),(322583,42579,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(322584,42579,'blocks_11_acfe_flexible_layout_title','50/50 Split'),(322585,42579,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(322586,42579,'blocks_11_options_theme','#ffffff'),(322587,42579,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(322588,42579,'blocks_11_options_reverse','0'),(322589,42579,'_blocks_11_options_reverse','field_61768049bb8ac'),(322590,42579,'blocks_11_options',''),(322591,42579,'_blocks_11_options','field_617682517c334'),(322592,42579,'blocks_11_split_5050_image','41299'),(322593,42579,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(322594,42579,'blocks_11_split_5050_video',''),(322595,42579,'_blocks_11_split_5050_video','field_6239f3160848a'),(322596,42579,'blocks_11_split_5050_content_title','Optimise Performance '),(322597,42579,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(322598,42579,'blocks_11_split_5050_content_heading','Level 3 Sports Massage Qualification with your Diploma in Biomechanics Coaching'),(322599,42579,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(322600,42579,'blocks_11_split_5050_content_text','This course is built and taught by industry experts and is the perfect springboard into the industry of Sports Massage. You will be armed with the knowledge and skills to plan, deliver and evaluate sports massage treatments for the general public and for athletes alike.\r\n\r\nThis is a full package course that will set you up to start a career in Sports Massage. With the learning and practical experience you will gain and a complimentary massage couch included in the course, you are truly set up to build your business.\r\n\r\nLevel 3 Sports Massage includes\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Flexible Online Learning</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Advanced Anatomy and Physiology</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Anatomy and Physiology for Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Principles of Health and Fitness</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Professional Practice in Sports Massage</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Understanding the Principles of Soft Tissue Dysfunction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Sports Massage Treatments</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"8\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"none\">Included Equipment: Massage bed for practical training</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:240,&quot;335559740&quot;:257}\"> </span></li>\r\n</ul>'),(322601,42579,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(322602,42579,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:136:\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/?preview=true#row-40780-4\";s:6:\"target\";s:0:\"\";}'),(322603,42579,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(322604,42579,'blocks_11_split_5050_content_actions','1'),(322605,42579,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(322606,42579,'blocks_11_split_5050_content',''),(322607,42579,'_blocks_11_split_5050_content','field_61767afceb8ba'),(322608,42579,'blocks_12_acfe_flexible_toggle',''),(322609,42579,'_blocks_12_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(322610,42579,'blocks_12_acfe_flexible_layout_title','Template'),(322611,42579,'_blocks_12_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(322612,42579,'blocks_12_template','40987'),(322613,42579,'_blocks_12_template','field_617bdd570fe01'),(322614,42579,'blocks_13_acfe_flexible_toggle',''),(322615,42579,'_blocks_13_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(322616,42579,'blocks_13_acfe_flexible_layout_title','Accordions / FAQs'),(322617,42579,'_blocks_13_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(322618,42579,'blocks_13_options_theme','#f5f5f5'),(322619,42579,'_blocks_13_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(322620,42579,'blocks_13_options_state','0'),(322621,42579,'_blocks_13_options_state','field_6239fcb7508c5'),(322622,42579,'blocks_13_options',''),(322623,42579,'_blocks_13_options','field_6177e2991ac44'),(322624,42579,'blocks_13_content_title',''),(322625,42579,'_blocks_13_content_title','field_64d237e8bb1e2'),(322626,42579,'blocks_13_content_heading','FAQ\'s'),(322627,42579,'_blocks_13_content_heading','field_64d237e8bb1e3'),(322628,42579,'blocks_13_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(322629,42579,'_blocks_13_content_text','field_64d237e8bb1e4'),(322630,42579,'blocks_13_content_actions',''),(322631,42579,'_blocks_13_content_actions','field_64d237e8bb1e5'),(322632,42579,'blocks_13_content_align','left'),(322633,42579,'_blocks_13_content_align','field_64d2443e6b6aa'),(322634,42579,'blocks_13_content',''),(322635,42579,'_blocks_13_content','field_64d237e8bb1e1'),(322636,42579,'blocks_13_accordion_content','faqs'),(322637,42579,'_blocks_13_accordion_content','field_6177e2c81ac4f'),(322638,42579,'blocks_13_accordion_faqs_select','a:15:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"41434\";i:10;s:5:\"39023\";i:11;s:5:\"39024\";i:12;s:5:\"39025\";i:13;s:5:\"39026\";i:14;s:5:\"39027\";}'),(322639,42579,'_blocks_13_accordion_faqs_select','field_6177e5f3633dd'),(322640,42579,'blocks_13_actions',''),(322641,42579,'_blocks_13_actions','field_61a746a817f7a'),(322642,42580,'hide_hero','0'),(322643,42580,'_hide_hero','field_66a2380fcda39'),(322644,42580,'hero_title','Biomechanics and Personal Training'),(322645,42580,'_hero_title','field_617571fe285e8'),(322646,42580,'hero_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(322647,42580,'_hero_text','field_6175723c285e9'),(322648,42580,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39214-3\";s:6:\"target\";s:0:\"\";}'),(322649,42580,'_hero_actions_0_button','field_61757281285eb'),(322650,42580,'hero_actions','1'),(322651,42580,'_hero_actions','field_61757270285ea'),(322652,42580,'hero_style','default'),(322653,42580,'_hero_style','field_62051d9dc5324'),(322654,42580,'_thumbnail_id','39215'),(322655,42580,'__thumbnail_id','field_617570855ddaf'),(322656,42580,'hero_image_pos_x','right'),(322657,42580,'_hero_image_pos_x','field_62ec3d05390bb'),(322658,42580,'hero_image_pos_y','top'),(322659,42580,'_hero_image_pos_y','field_62ec3d05390bc'),(322660,42580,'hero_image_pos',''),(322661,42580,'_hero_image_pos','field_62ec3d05390ba'),(322662,42580,'fft_hide_from_listings','0'),(322663,42580,'_fft_hide_from_listings','field_61f1320446ab2'),(322664,42580,'fft_page_format','default'),(322665,42580,'_fft_page_format','field_61ae213f1f218'),(322666,42580,'fft_hide_nav','0'),(322667,42580,'_fft_hide_nav','field_635bd5e43527c'),(322668,42580,'fft_hide_header_call_to_action','0'),(322669,42580,'_fft_hide_header_call_to_action','field_635bd6723527d'),(322670,42580,'fft_page_sitemap','0'),(322671,42580,'_fft_page_sitemap','field_61af9b34e8181'),(322672,42580,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(322673,42580,'_blocks','field_6176696113096'),(322674,42580,'blocks_0_acfe_flexible_toggle',''),(322675,42580,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(322676,42580,'blocks_0_acfe_flexible_layout_title','Template'),(322677,42580,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(322678,42580,'blocks_0_template','39087'),(322679,42580,'_blocks_0_template','field_617bdd570fe01'),(322680,42580,'blocks_5_acfe_flexible_toggle',''),(322681,42580,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(322682,42580,'blocks_5_acfe_flexible_layout_title','Tabs'),(322683,42580,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(322684,42580,'blocks_5_options_theme','#ffffff'),(322685,42580,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(322686,42580,'blocks_5_options',''),(322687,42580,'_blocks_5_options','field_6177cfcd8140f'),(322688,42580,'blocks_5_tabs_0_tab_label','What will I learn?'),(322689,42580,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(322690,42580,'blocks_5_tabs_0_tab_content_title',''),(322691,42580,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(322692,42580,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(322693,42580,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(322694,42580,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(322695,42580,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(322696,42580,'blocks_5_tabs_0_tab_content_actions',''),(322697,42580,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(322698,42580,'blocks_5_tabs_0_tab_content',''),(322699,42580,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(322700,42580,'blocks_5_tabs_0_tab_image','39076'),(322701,42580,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(322702,42580,'blocks_5_tabs_1_tab_label','What do I need?'),(322703,42580,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(322704,42580,'blocks_5_tabs_1_tab_content_title',''),(322705,42580,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(322706,42580,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(322707,42580,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(322708,42580,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(322709,42580,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(322710,42580,'blocks_5_tabs_1_tab_content_actions',''),(322711,42580,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(322712,42580,'blocks_5_tabs_1_tab_content',''),(322713,42580,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(322714,42580,'blocks_5_tabs_1_tab_image','39223'),(322715,42580,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(322716,42580,'blocks_5_tabs_2_tab_label','Where can I learn?'),(322717,42580,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(322718,42580,'blocks_5_tabs_2_tab_content_title',''),(322719,42580,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(322720,42580,'blocks_5_tabs_2_tab_content_heading','Locations'),(322721,42580,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(322722,42580,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(322723,42580,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(322724,42580,'blocks_5_tabs_2_tab_content_actions',''),(322725,42580,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(322726,42580,'blocks_5_tabs_2_tab_content',''),(322727,42580,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(322728,42580,'blocks_5_tabs_2_tab_image','39224'),(322729,42580,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(322730,42580,'blocks_5_tabs','3'),(322731,42580,'_blocks_5_tabs','field_6177cff281419'),(322732,42580,'blocks_6_acfe_flexible_toggle',''),(322733,42580,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(322734,42580,'blocks_6_acfe_flexible_layout_title','Text Block'),(322735,42580,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(322736,42580,'blocks_6_options_theme','#b61234'),(322737,42580,'_blocks_6_options_theme','field_6176830e2ad17'),(322738,42580,'blocks_6_options',''),(322739,42580,'_blocks_6_options','field_6176830e2ad16'),(322740,42580,'blocks_6_text_block_heading','Fees & Funding Options'),(322741,42580,'_blocks_6_text_block_heading','field_617669d413097'),(322742,42580,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(322743,42580,'_blocks_6_text_block_content','field_617669ec13098'),(322744,42580,'blocks_7_acfe_flexible_toggle',''),(322745,42580,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(322746,42580,'blocks_7_acfe_flexible_layout_title','Icons'),(322747,42580,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(322748,42580,'blocks_7_options_theme','#b61234'),(322749,42580,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(322750,42580,'blocks_7_options_format','row'),(322751,42580,'_blocks_7_options_format','field_64bfde9a90690'),(322752,42580,'blocks_7_options',''),(322753,42580,'_blocks_7_options','field_64bfdd9b90684'),(322754,42580,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(322755,42580,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(322756,42580,'blocks_7_icon_row_items_0_label','Pay in Full'),(322757,42580,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(322758,42580,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(322759,42580,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(322760,42580,'blocks_7_icon_row_items_1_icon','finance.svg'),(322761,42580,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(322762,42580,'blocks_7_icon_row_items_1_label','0% finance'),(322763,42580,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(322764,42580,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(322765,42580,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(322766,42580,'blocks_7_icon_row_items_2_icon','deposit.svg'),(322767,42580,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(322768,42580,'blocks_7_icon_row_items_2_label','Deposit & balance'),(322769,42580,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(322770,42580,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(322771,42580,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(322772,42580,'blocks_7_icon_row_items','3'),(322773,42580,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(322774,42580,'blocks_9_acfe_flexible_toggle',''),(322775,42580,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(322776,42580,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(322777,42580,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(322778,42580,'blocks_9_testimonial_slider_content_title',''),(322779,42580,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(322780,42580,'blocks_9_testimonial_slider_content_heading','Testimonials'),(322781,42580,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(322782,42580,'blocks_9_testimonial_slider_content_text',''),(322783,42580,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(322784,42580,'blocks_9_testimonial_slider_content_actions',''),(322785,42580,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(322786,42580,'blocks_9_testimonial_slider_content',''),(322787,42580,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(322788,42580,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(322789,42580,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(322790,42580,'blocks_9_testimonial_slider_ambassador_bool','0'),(322791,42580,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(322792,42580,'blocks_10_acfe_flexible_toggle',''),(322793,42580,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(322794,42580,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(322795,42580,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(322796,42580,'blocks_10_options_theme','#ffffff'),(322797,42580,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(322798,42580,'blocks_10_options_state','0'),(322799,42580,'_blocks_10_options_state','field_6239fcb7508c5'),(322800,42580,'blocks_10_options',''),(322801,42580,'_blocks_10_options','field_6177e2991ac44'),(322802,42580,'blocks_10_content_title',''),(322803,42580,'_blocks_10_content_title','field_64d237e8bb1e2'),(322804,42580,'blocks_10_content_heading','Frequently asked questions '),(322805,42580,'_blocks_10_content_heading','field_64d237e8bb1e3'),(322806,42580,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(322807,42580,'_blocks_10_content_text','field_64d237e8bb1e4'),(322808,42580,'blocks_10_content_actions',''),(322809,42580,'_blocks_10_content_actions','field_64d237e8bb1e5'),(322810,42580,'blocks_10_content_align','left'),(322811,42580,'_blocks_10_content_align','field_64d2443e6b6aa'),(322812,42580,'blocks_10_content',''),(322813,42580,'_blocks_10_content','field_64d237e8bb1e1'),(322814,42580,'blocks_10_accordion_content','faqs'),(322815,42580,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(322816,42580,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(322817,42580,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(322818,42580,'blocks_10_actions',''),(322819,42580,'_blocks_10_actions','field_61a746a817f7a'),(322820,42580,'blocks_8_acfe_flexible_toggle',''),(322821,42580,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(322822,42580,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(322823,42580,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(322824,42580,'blocks_8_options_theme','#f5f5f5'),(322825,42580,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(322826,42580,'blocks_8_options_reverse','0'),(322827,42580,'_blocks_8_options_reverse','field_61768049bb8ac'),(322828,42580,'blocks_8_options',''),(322829,42580,'_blocks_8_options','field_617682517c334'),(322830,42580,'blocks_8_split_5050_image','40920'),(322831,42580,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(322832,42580,'blocks_8_split_5050_video',''),(322833,42580,'_blocks_8_split_5050_video','field_6239f3160848a'),(322834,42580,'blocks_8_split_5050_content_title',''),(322835,42580,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(322836,42580,'blocks_8_split_5050_content_heading','Why Study This Course?'),(322837,42580,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(322838,42580,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the fields of movement, training, business, therapy, and Intrinsic Biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(322839,42580,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(322840,42580,'blocks_8_split_5050_content_actions',''),(322841,42580,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(322842,42580,'blocks_8_split_5050_content',''),(322843,42580,'_blocks_8_split_5050_content','field_61767afceb8ba'),(322844,42580,'blocks_1_acfe_flexible_toggle',''),(322845,42580,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(322846,42580,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(322847,42580,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(322848,42580,'blocks_1_options_theme','#ffffff'),(322849,42580,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(322850,42580,'blocks_1_options_reverse','0'),(322851,42580,'_blocks_1_options_reverse','field_61768049bb8ac'),(322852,42580,'blocks_1_options',''),(322853,42580,'_blocks_1_options','field_617682517c334'),(322854,42580,'blocks_1_split_5050_image','39220'),(322855,42580,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(322856,42580,'blocks_1_split_5050_video',''),(322857,42580,'_blocks_1_split_5050_video','field_6239f3160848a'),(322858,42580,'blocks_1_split_5050_content_title',''),(322859,42580,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(322860,42580,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a PT'),(322861,42580,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(322862,42580,'blocks_1_split_5050_content_text','Enhancing your impact as a Personal Trainer: Discover how our proven test methods can transform your approach to attracting clients, enabling you to create memorable experiences on the gym floor and distinguish yourself among peers. Gain essential knowledge to effectively assess, monitor, and advance your clients, incorporating preventive strategies and supporting post-rehabilitation. Moreover, it elevates your confidence and reputation, empowering you to forge meaningful partnerships with allied health professionals like Physiotherapists and Podiatrists - a gateway to expanding your client base.'),(322863,42580,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(322864,42580,'blocks_1_split_5050_content_actions',''),(322865,42580,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(322866,42580,'blocks_1_split_5050_content',''),(322867,42580,'_blocks_1_split_5050_content','field_61767afceb8ba'),(322868,42580,'blocks_2_acfe_flexible_toggle',''),(322869,42580,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(322870,42580,'blocks_2_acfe_flexible_layout_title','Form'),(322871,42580,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(322872,42580,'blocks_2_row_content_format','standard'),(322873,42580,'_blocks_2_row_content_format','field_6481ead962881'),(322874,42580,'blocks_2_row_content_title',''),(322875,42580,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(322876,42580,'blocks_2_row_content_heading','Enquire Today'),(322877,42580,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(322878,42580,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(322879,42580,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(322880,42580,'blocks_2_row_content_actions',''),(322881,42580,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(322882,42580,'blocks_2_row_content',''),(322883,42580,'_blocks_2_row_content','field_61a0f5f5b3db0'),(322884,42580,'blocks_2_row_form','40394'),(322885,42580,'_blocks_2_row_form','field_61a4ff2c0b08e'),(322886,42580,'blocks_2_row_form_button_label',''),(322887,42580,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(322888,42580,'blocks_3_acfe_flexible_toggle',''),(322889,42580,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(322890,42580,'blocks_3_acfe_flexible_layout_title','Video'),(322891,42580,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(322892,42580,'blocks_3_size','large'),(322893,42580,'_blocks_3_size','field_6487038f297c1'),(322894,42580,'blocks_3_row_content_title',''),(322895,42580,'_blocks_3_row_content_title','field_64870132a865d'),(322896,42580,'blocks_3_row_content_heading','How Does a Diploma in Biomechanics Education Help me as a Personal Trainer?'),(322897,42580,'_blocks_3_row_content_heading','field_64870142a865e'),(322898,42580,'blocks_3_row_content_text',''),(322899,42580,'_blocks_3_row_content_text','field_64870148a865f'),(322900,42580,'blocks_3_row_content',''),(322901,42580,'_blocks_3_row_content','field_6487008ba865c'),(322902,42580,'blocks_3_video_src','https://youtu.be/kLVekt6aqrI'),(322903,42580,'_blocks_3_video_src','field_6193c4a98ec07'),(322904,42580,'blocks_3_video_thumbnail','39186'),(322905,42580,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(322906,42580,'blocks_4_acfe_flexible_toggle',''),(322907,42580,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(322908,42580,'blocks_4_acfe_flexible_layout_title','Steps'),(322909,42580,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(322910,42580,'blocks_4_row_content_title',''),(322911,42580,'_blocks_4_row_content_title','field_64888cd1e26e0'),(322912,42580,'blocks_4_row_content_heading','Benefits of training with us'),(322913,42580,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(322914,42580,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(322915,42580,'_blocks_4_row_content_text','field_64888ce2e26e2'),(322916,42580,'blocks_4_row_content_actions',''),(322917,42580,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(322918,42580,'blocks_4_row_content',''),(322919,42580,'_blocks_4_row_content','field_64888cb0e26df'),(322920,42580,'blocks_4_steps_0_icon','progression.svg'),(322921,42580,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(322922,42580,'blocks_4_steps_0_title','Earning Potential'),(322923,42580,'_blocks_4_steps_0_title','field_64888d94e26e7'),(322924,42580,'blocks_4_steps_0_text','Find new clients, retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(322925,42580,'_blocks_4_steps_0_text','field_64888d99e26e8'),(322926,42580,'blocks_4_steps_1_icon','support.svg'),(322927,42580,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(322928,42580,'blocks_4_steps_1_title','Lifetime Learning Promise'),(322929,42580,'_blocks_4_steps_1_title','field_64888d94e26e7'),(322930,42580,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(322931,42580,'_blocks_4_steps_1_text','field_64888d99e26e8'),(322932,42580,'blocks_4_steps_2_icon','qualification.svg'),(322933,42580,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(322934,42580,'blocks_4_steps_2_title','Evidence Based Hands on Learning'),(322935,42580,'_blocks_4_steps_2_title','field_64888d94e26e7'),(322936,42580,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You will learn tests, screens, and methods to determine what is happening within the body during movement, using our blended learning experience of online learning and face-to-face workshops and assessments.'),(322937,42580,'_blocks_4_steps_2_text','field_64888d99e26e8'),(322938,42580,'blocks_4_steps_3_icon','leaders.svg'),(322939,42580,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(322940,42580,'blocks_4_steps_3_title','Stand Out From the Crowd'),(322941,42580,'_blocks_4_steps_3_title','field_64888d94e26e7'),(322942,42580,'blocks_4_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(322943,42580,'_blocks_4_steps_3_text','field_64888d99e26e8'),(322944,42580,'blocks_4_steps','4'),(322945,42580,'_blocks_4_steps','field_64888d44e26e5'),(322946,42581,'hide_hero','0'),(322947,42581,'_hide_hero','field_66a2380fcda39'),(322948,42581,'hero_title','Biomechanics and Pilates'),(322949,42581,'_hero_title','field_617571fe285e8'),(322950,42581,'hero_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(322951,42581,'_hero_text','field_6175723c285e9'),(322952,42581,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39231-3\";s:6:\"target\";s:0:\"\";}'),(322953,42581,'_hero_actions_0_button','field_61757281285eb'),(322954,42581,'hero_actions','1'),(322955,42581,'_hero_actions','field_61757270285ea'),(322956,42581,'hero_style','default'),(322957,42581,'_hero_style','field_62051d9dc5324'),(322958,42581,'_thumbnail_id','39243'),(322959,42581,'__thumbnail_id','field_617570855ddaf'),(322960,42581,'hero_image_pos_x','right'),(322961,42581,'_hero_image_pos_x','field_62ec3d05390bb'),(322962,42581,'hero_image_pos_y','top'),(322963,42581,'_hero_image_pos_y','field_62ec3d05390bc'),(322964,42581,'hero_image_pos',''),(322965,42581,'_hero_image_pos','field_62ec3d05390ba'),(322966,42581,'fft_hide_from_listings','0'),(322967,42581,'_fft_hide_from_listings','field_61f1320446ab2'),(322968,42581,'fft_page_format','default'),(322969,42581,'_fft_page_format','field_61ae213f1f218'),(322970,42581,'fft_hide_nav','0'),(322971,42581,'_fft_hide_nav','field_635bd5e43527c'),(322972,42581,'fft_hide_header_call_to_action','0'),(322973,42581,'_fft_hide_header_call_to_action','field_635bd6723527d'),(322974,42581,'fft_page_sitemap','0'),(322975,42581,'_fft_page_sitemap','field_61af9b34e8181'),(322976,42581,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:5:\"steps\";i:5;s:4:\"tabs\";i:6;s:10:\"text_block\";i:7;s:5:\"icons\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:18:\"testimonial_slider\";}'),(322977,42581,'_blocks','field_6176696113096'),(322978,42581,'blocks_0_acfe_flexible_toggle',''),(322979,42581,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(322980,42581,'blocks_0_acfe_flexible_layout_title','Icons'),(322981,42581,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(322982,42581,'blocks_0_options_theme','#b61234'),(322983,42581,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(322984,42581,'blocks_0_options_format','row'),(322985,42581,'_blocks_0_options_format','field_64bfde9a90690'),(322986,42581,'blocks_0_options',''),(322987,42581,'_blocks_0_options','field_64bfdd9b90684'),(322988,42581,'blocks_0_icon_row_items_0_icon','recognised-accreditation.svg'),(322989,42581,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(322990,42581,'blocks_0_icon_row_items_0_label','Accreditation'),(322991,42581,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(322992,42581,'blocks_0_icon_row_items_0_text','Become an IBA Registered Biomechanics Coach'),(322993,42581,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(322994,42581,'blocks_0_icon_row_items_1_icon','finance.svg'),(322995,42581,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(322996,42581,'blocks_0_icon_row_items_1_label','Flexible payment options'),(322997,42581,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(322998,42581,'blocks_0_icon_row_items_1_text','Including 0% finance'),(322999,42581,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(323000,42581,'blocks_0_icon_row_items_2_icon','return-on-investment-2.svg'),(323001,42581,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(323002,42581,'blocks_0_icon_row_items_2_label','Earning potential'),(323003,42581,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(323004,42581,'blocks_0_icon_row_items_2_text','Find new clients and increase your rates using the knowledge gained'),(323005,42581,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(323006,42581,'blocks_0_icon_row_items','3'),(323007,42581,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(323008,42581,'blocks_1_acfe_flexible_toggle',''),(323009,42581,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(323010,42581,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(323011,42581,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(323012,42581,'blocks_1_options_theme','#ffffff'),(323013,42581,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(323014,42581,'blocks_1_options_reverse','0'),(323015,42581,'_blocks_1_options_reverse','field_61768049bb8ac'),(323016,42581,'blocks_1_options',''),(323017,42581,'_blocks_1_options','field_617682517c334'),(323018,42581,'blocks_1_split_5050_image','41318'),(323019,42581,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(323020,42581,'blocks_1_split_5050_video',''),(323021,42581,'_blocks_1_split_5050_video','field_6239f3160848a'),(323022,42581,'blocks_1_split_5050_content_title',''),(323023,42581,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(323024,42581,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a Pilates instructor'),(323025,42581,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(323026,42581,'blocks_1_split_5050_content_text','Pilates instructors are often referred clients by various allied health professions, such as Physiotherapists and Podiatrists, for support with rehabilitation. Backache being a common example.\r\n\r\nWhat we will give you as a Pilates instructor is the ability to assess, monitor and progress your clients with their post-rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(323027,42581,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(323028,42581,'blocks_1_split_5050_content_actions',''),(323029,42581,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(323030,42581,'blocks_1_split_5050_content',''),(323031,42581,'_blocks_1_split_5050_content','field_61767afceb8ba'),(323032,42581,'blocks_2_acfe_flexible_toggle',''),(323033,42581,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(323034,42581,'blocks_2_acfe_flexible_layout_title','Form'),(323035,42581,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(323036,42581,'blocks_2_row_content_format','standard'),(323037,42581,'_blocks_2_row_content_format','field_6481ead962881'),(323038,42581,'blocks_2_row_content_title',''),(323039,42581,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(323040,42581,'blocks_2_row_content_heading','Enquire Today'),(323041,42581,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(323042,42581,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(323043,42581,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(323044,42581,'blocks_2_row_content_actions',''),(323045,42581,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(323046,42581,'blocks_2_row_content',''),(323047,42581,'_blocks_2_row_content','field_61a0f5f5b3db0'),(323048,42581,'blocks_2_row_form','40394'),(323049,42581,'_blocks_2_row_form','field_61a4ff2c0b08e'),(323050,42581,'blocks_2_row_form_button_label',''),(323051,42581,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(323052,42581,'blocks_3_acfe_flexible_toggle',''),(323053,42581,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(323054,42581,'blocks_3_acfe_flexible_layout_title','Video'),(323055,42581,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(323056,42581,'blocks_3_size','large'),(323057,42581,'_blocks_3_size','field_6487038f297c1'),(323058,42581,'blocks_3_row_content_title','Tom Waldron - Master Trainer'),(323059,42581,'_blocks_3_row_content_title','field_64870132a865d'),(323060,42581,'blocks_3_row_content_heading','Learn why Biomechanics improves your Pilates teaching'),(323061,42581,'_blocks_3_row_content_heading','field_64870142a865e'),(323062,42581,'blocks_3_row_content_text',''),(323063,42581,'_blocks_3_row_content_text','field_64870148a865f'),(323064,42581,'blocks_3_row_content',''),(323065,42581,'_blocks_3_row_content','field_6487008ba865c'),(323066,42581,'blocks_3_video_src','https://www.youtube.com/watch?v=crqXrpFsDyw'),(323067,42581,'_blocks_3_video_src','field_6193c4a98ec07'),(323068,42581,'blocks_3_video_thumbnail',''),(323069,42581,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(323070,42581,'blocks_4_acfe_flexible_toggle',''),(323071,42581,'_blocks_4_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(323072,42581,'blocks_4_acfe_flexible_layout_title','Steps'),(323073,42581,'_blocks_4_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(323074,42581,'blocks_4_row_content_title',''),(323075,42581,'_blocks_4_row_content_title','field_64888cd1e26e0'),(323076,42581,'blocks_4_row_content_heading','Benefits of training with us'),(323077,42581,'_blocks_4_row_content_heading','field_64888cd9e26e1'),(323078,42581,'blocks_4_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(323079,42581,'_blocks_4_row_content_text','field_64888ce2e26e2'),(323080,42581,'blocks_4_row_content_actions',''),(323081,42581,'_blocks_4_row_content_actions','field_64888cf5e26e3'),(323082,42581,'blocks_4_row_content',''),(323083,42581,'_blocks_4_row_content','field_64888cb0e26df'),(323084,42581,'blocks_4_steps_0_icon','progression.svg'),(323085,42581,'_blocks_4_steps_0_icon','field_64888d53e26e6'),(323086,42581,'blocks_4_steps_0_title','Earning potential'),(323087,42581,'_blocks_4_steps_0_title','field_64888d94e26e7'),(323088,42581,'blocks_4_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(323089,42581,'_blocks_4_steps_0_text','field_64888d99e26e8'),(323090,42581,'blocks_4_steps_1_icon','support.svg'),(323091,42581,'_blocks_4_steps_1_icon','field_64888d53e26e6'),(323092,42581,'blocks_4_steps_1_title','Lifetime Learning Promise'),(323093,42581,'_blocks_4_steps_1_title','field_64888d94e26e7'),(323094,42581,'blocks_4_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(323095,42581,'_blocks_4_steps_1_text','field_64888d99e26e8'),(323096,42581,'blocks_4_steps_2_icon','qualification.svg'),(323097,42581,'_blocks_4_steps_2_icon','field_64888d53e26e6'),(323098,42581,'blocks_4_steps_2_title','Evidence based hands on learning'),(323099,42581,'_blocks_4_steps_2_title','field_64888d94e26e7'),(323100,42581,'blocks_4_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(323101,42581,'_blocks_4_steps_2_text','field_64888d99e26e8'),(323102,42581,'blocks_4_steps_3_icon','leaders.svg'),(323103,42581,'_blocks_4_steps_3_icon','field_64888d53e26e6'),(323104,42581,'blocks_4_steps_3_title','Stand out from the crowd'),(323105,42581,'_blocks_4_steps_3_title','field_64888d94e26e7'),(323106,42581,'blocks_4_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(323107,42581,'_blocks_4_steps_3_text','field_64888d99e26e8'),(323108,42581,'blocks_4_steps','4'),(323109,42581,'_blocks_4_steps','field_64888d44e26e5'),(323110,42581,'blocks_5_acfe_flexible_toggle',''),(323111,42581,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(323112,42581,'blocks_5_acfe_flexible_layout_title','Tabs'),(323113,42581,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(323114,42581,'blocks_5_options_theme','#ffffff'),(323115,42581,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(323116,42581,'blocks_5_options',''),(323117,42581,'_blocks_5_options','field_6177cfcd8140f'),(323118,42581,'blocks_5_tabs_0_tab_label','What will I learn?'),(323119,42581,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(323120,42581,'blocks_5_tabs_0_tab_content_title',''),(323121,42581,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(323122,42581,'blocks_5_tabs_0_tab_content_heading','What you’ll learn'),(323123,42581,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(323124,42581,'blocks_5_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients:\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(323125,42581,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(323126,42581,'blocks_5_tabs_0_tab_content_actions',''),(323127,42581,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(323128,42581,'blocks_5_tabs_0_tab_content',''),(323129,42581,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(323130,42581,'blocks_5_tabs_0_tab_image','39076'),(323131,42581,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(323132,42581,'blocks_5_tabs_1_tab_label','What do I need?'),(323133,42581,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(323134,42581,'blocks_5_tabs_1_tab_content_title',''),(323135,42581,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(323136,42581,'blocks_5_tabs_1_tab_content_heading','Entry requirements'),(323137,42581,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(323138,42581,'blocks_5_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(323139,42581,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(323140,42581,'blocks_5_tabs_1_tab_content_actions',''),(323141,42581,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(323142,42581,'blocks_5_tabs_1_tab_content',''),(323143,42581,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(323144,42581,'blocks_5_tabs_1_tab_image','40487'),(323145,42581,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(323146,42581,'blocks_5_tabs_2_tab_label','Where can I learn?'),(323147,42581,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(323148,42581,'blocks_5_tabs_2_tab_content_title',''),(323149,42581,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(323150,42581,'blocks_5_tabs_2_tab_content_heading','Locations'),(323151,42581,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(323152,42581,'blocks_5_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(323153,42581,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(323154,42581,'blocks_5_tabs_2_tab_content_actions',''),(323155,42581,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(323156,42581,'blocks_5_tabs_2_tab_content',''),(323157,42581,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(323158,42581,'blocks_5_tabs_2_tab_image','39224'),(323159,42581,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(323160,42581,'blocks_5_tabs','3'),(323161,42581,'_blocks_5_tabs','field_6177cff281419'),(323162,42581,'blocks_6_acfe_flexible_toggle',''),(323163,42581,'_blocks_6_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(323164,42581,'blocks_6_acfe_flexible_layout_title','Text Block'),(323165,42581,'_blocks_6_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(323166,42581,'blocks_6_options_theme','#b61234'),(323167,42581,'_blocks_6_options_theme','field_6176830e2ad17'),(323168,42581,'blocks_6_options',''),(323169,42581,'_blocks_6_options','field_6176830e2ad16'),(323170,42581,'blocks_6_text_block_heading','Fees & Funding Options'),(323171,42581,'_blocks_6_text_block_heading','field_617669d413097'),(323172,42581,'blocks_6_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and exercise industry.'),(323173,42581,'_blocks_6_text_block_content','field_617669ec13098'),(323174,42581,'blocks_8_acfe_flexible_toggle',''),(323175,42581,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(323176,42581,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(323177,42581,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(323178,42581,'blocks_8_options_theme','#ffffff'),(323179,42581,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(323180,42581,'blocks_8_options_reverse','0'),(323181,42581,'_blocks_8_options_reverse','field_61768049bb8ac'),(323182,42581,'blocks_8_options',''),(323183,42581,'_blocks_8_options','field_617682517c334'),(323184,42581,'blocks_8_split_5050_image','40484'),(323185,42581,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(323186,42581,'blocks_8_split_5050_video',''),(323187,42581,'_blocks_8_split_5050_video','field_6239f3160848a'),(323188,42581,'blocks_8_split_5050_content_title',''),(323189,42581,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(323190,42581,'blocks_8_split_5050_content_heading','Why study this course?'),(323191,42581,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(323192,42581,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our learner community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(323193,42581,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(323194,42581,'blocks_8_split_5050_content_actions',''),(323195,42581,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(323196,42581,'blocks_8_split_5050_content',''),(323197,42581,'_blocks_8_split_5050_content','field_61767afceb8ba'),(323198,42581,'blocks_7_acfe_flexible_toggle',''),(323199,42581,'_blocks_7_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(323200,42581,'blocks_7_acfe_flexible_layout_title','Icons'),(323201,42581,'_blocks_7_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(323202,42581,'blocks_7_options_theme','#b61234'),(323203,42581,'_blocks_7_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(323204,42581,'blocks_7_options_format','row'),(323205,42581,'_blocks_7_options_format','field_64bfde9a90690'),(323206,42581,'blocks_7_options',''),(323207,42581,'_blocks_7_options','field_64bfdd9b90684'),(323208,42581,'blocks_7_icon_row_items_0_icon','payment-plans.svg'),(323209,42581,'_blocks_7_icon_row_items_0_icon','field_64bfdd9b9068d'),(323210,42581,'blocks_7_icon_row_items_0_label','Pay in full '),(323211,42581,'_blocks_7_icon_row_items_0_label','field_64bfdd9c9068e'),(323212,42581,'blocks_7_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(323213,42581,'_blocks_7_icon_row_items_0_text','field_64bfdd9c9068f'),(323214,42581,'blocks_7_icon_row_items_1_icon','finance.svg'),(323215,42581,'_blocks_7_icon_row_items_1_icon','field_64bfdd9b9068d'),(323216,42581,'blocks_7_icon_row_items_1_label','0% finance'),(323217,42581,'_blocks_7_icon_row_items_1_label','field_64bfdd9c9068e'),(323218,42581,'blocks_7_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(323219,42581,'_blocks_7_icon_row_items_1_text','field_64bfdd9c9068f'),(323220,42581,'blocks_7_icon_row_items_2_icon','deposit.svg'),(323221,42581,'_blocks_7_icon_row_items_2_icon','field_64bfdd9b9068d'),(323222,42581,'blocks_7_icon_row_items_2_label','Deposit & balance'),(323223,42581,'_blocks_7_icon_row_items_2_label','field_64bfdd9c9068e'),(323224,42581,'blocks_7_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(323225,42581,'_blocks_7_icon_row_items_2_text','field_64bfdd9c9068f'),(323226,42581,'blocks_7_icon_row_items','3'),(323227,42581,'_blocks_7_icon_row_items','field_64bfdd9b9068c'),(323228,42581,'blocks_9_acfe_flexible_toggle',''),(323229,42581,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(323230,42581,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(323231,42581,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(323232,42581,'blocks_9_options_theme','#ffffff'),(323233,42581,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(323234,42581,'blocks_9_options_state','0'),(323235,42581,'_blocks_9_options_state','field_6239fcb7508c5'),(323236,42581,'blocks_9_options',''),(323237,42581,'_blocks_9_options','field_6177e2991ac44'),(323238,42581,'blocks_9_content_title',''),(323239,42581,'_blocks_9_content_title','field_64d237e8bb1e2'),(323240,42581,'blocks_9_content_heading','Frequently asked questions '),(323241,42581,'_blocks_9_content_heading','field_64d237e8bb1e3'),(323242,42581,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(323243,42581,'_blocks_9_content_text','field_64d237e8bb1e4'),(323244,42581,'blocks_9_content_actions',''),(323245,42581,'_blocks_9_content_actions','field_64d237e8bb1e5'),(323246,42581,'blocks_9_content_align','left'),(323247,42581,'_blocks_9_content_align','field_64d2443e6b6aa'),(323248,42581,'blocks_9_content',''),(323249,42581,'_blocks_9_content','field_64d237e8bb1e1'),(323250,42581,'blocks_9_accordion_content','faqs'),(323251,42581,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(323252,42581,'blocks_9_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(323253,42581,'_blocks_9_accordion_faqs_select','field_6177e5f3633dd'),(323254,42581,'blocks_9_actions',''),(323255,42581,'_blocks_9_actions','field_61a746a817f7a'),(323256,42581,'blocks_10_acfe_flexible_toggle',''),(323257,42581,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(323258,42581,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(323259,42581,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(323260,42581,'blocks_10_testimonial_slider_content_title',''),(323261,42581,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(323262,42581,'blocks_10_testimonial_slider_content_heading','Testimonials'),(323263,42581,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(323264,42581,'blocks_10_testimonial_slider_content_text',''),(323265,42581,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(323266,42581,'blocks_10_testimonial_slider_content_actions',''),(323267,42581,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(323268,42581,'blocks_10_testimonial_slider_content',''),(323269,42581,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(323270,42581,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(323271,42581,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(323272,42581,'blocks_10_testimonial_slider_ambassador_bool','0'),(323273,42581,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(323274,42582,'hide_hero','0'),(323275,42582,'_hide_hero','field_66a2380fcda39'),(323276,42582,'hero_title','Biomechanics and Sports Massage Therapy'),(323277,42582,'_hero_title','field_617571fe285e8'),(323278,42582,'hero_text','Elevate your offering and support your clients on a deeper level by introducing Intrinsic Biomechanics into your Sports Massage Therapy practice.'),(323279,42582,'_hero_text','field_6175723c285e9'),(323280,42582,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39238-3\";s:6:\"target\";s:0:\"\";}'),(323281,42582,'_hero_actions_0_button','field_61757281285eb'),(323282,42582,'hero_actions','1'),(323283,42582,'_hero_actions','field_61757270285ea'),(323284,42582,'hero_style','default'),(323285,42582,'_hero_style','field_62051d9dc5324'),(323286,42582,'_thumbnail_id','39240'),(323287,42582,'__thumbnail_id','field_617570855ddaf'),(323288,42582,'hero_image_pos_x','right'),(323289,42582,'_hero_image_pos_x','field_62ec3d05390bb'),(323290,42582,'hero_image_pos_y','top'),(323291,42582,'_hero_image_pos_y','field_62ec3d05390bc'),(323292,42582,'hero_image_pos',''),(323293,42582,'_hero_image_pos','field_62ec3d05390ba'),(323294,42582,'fft_hide_from_listings','0'),(323295,42582,'_fft_hide_from_listings','field_61f1320446ab2'),(323296,42582,'fft_page_format','default'),(323297,42582,'_fft_page_format','field_61ae213f1f218'),(323298,42582,'fft_hide_nav','0'),(323299,42582,'_fft_hide_nav','field_635bd5e43527c'),(323300,42582,'fft_hide_header_call_to_action','0'),(323301,42582,'_fft_hide_header_call_to_action','field_635bd6723527d'),(323302,42582,'fft_page_sitemap','0'),(323303,42582,'_fft_page_sitemap','field_61af9b34e8181'),(323304,42582,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:10:\"split_5050\";i:9;s:16:\"standard_content\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(323305,42582,'_blocks','field_6176696113096'),(323306,42582,'blocks_0_acfe_flexible_toggle',''),(323307,42582,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(323308,42582,'blocks_0_acfe_flexible_layout_title','Template'),(323309,42582,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(323310,42582,'blocks_0_template','39087'),(323311,42582,'_blocks_0_template','field_617bdd570fe01'),(323312,42582,'blocks_4_acfe_flexible_toggle',''),(323313,42582,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(323314,42582,'blocks_4_acfe_flexible_layout_title','Tabs'),(323315,42582,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(323316,42582,'blocks_4_options_theme','#ffffff'),(323317,42582,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(323318,42582,'blocks_4_options',''),(323319,42582,'_blocks_4_options','field_6177cfcd8140f'),(323320,42582,'blocks_4_tabs_0_tab_label','What will I learn ?'),(323321,42582,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(323322,42582,'blocks_4_tabs_0_tab_content_title',''),(323323,42582,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(323324,42582,'blocks_4_tabs_0_tab_content_heading','What You’ll Learn'),(323325,42582,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(323326,42582,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risks and optimise performance among clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(323327,42582,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(323328,42582,'blocks_4_tabs_0_tab_content_actions',''),(323329,42582,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(323330,42582,'blocks_4_tabs_0_tab_content',''),(323331,42582,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(323332,42582,'blocks_4_tabs_0_tab_image','39076'),(323333,42582,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(323334,42582,'blocks_4_tabs_1_tab_label','What do I need ?'),(323335,42582,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(323336,42582,'blocks_4_tabs_1_tab_content_title',''),(323337,42582,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(323338,42582,'blocks_4_tabs_1_tab_content_heading','Entry Requirements'),(323339,42582,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(323340,42582,'blocks_4_tabs_1_tab_content_text','To study for this Biomechanics Coaching Diploma, you will need at least one of the following qualifications as the minimum requirement:\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(323341,42582,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(323342,42582,'blocks_4_tabs_1_tab_content_actions',''),(323343,42582,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(323344,42582,'blocks_4_tabs_1_tab_content',''),(323345,42582,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(323346,42582,'blocks_4_tabs_1_tab_image','39223'),(323347,42582,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(323348,42582,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(323349,42582,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(323350,42582,'blocks_4_tabs_2_tab_content_title',''),(323351,42582,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(323352,42582,'blocks_4_tabs_2_tab_content_heading','Locations'),(323353,42582,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(323354,42582,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queen’s Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(323355,42582,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(323356,42582,'blocks_4_tabs_2_tab_content_actions',''),(323357,42582,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(323358,42582,'blocks_4_tabs_2_tab_content',''),(323359,42582,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(323360,42582,'blocks_4_tabs_2_tab_image','39224'),(323361,42582,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(323362,42582,'blocks_4_tabs','3'),(323363,42582,'_blocks_4_tabs','field_6177cff281419'),(323364,42582,'blocks_5_acfe_flexible_toggle',''),(323365,42582,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(323366,42582,'blocks_5_acfe_flexible_layout_title','Text Block'),(323367,42582,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(323368,42582,'blocks_5_options_theme','#b61234'),(323369,42582,'_blocks_5_options_theme','field_6176830e2ad17'),(323370,42582,'blocks_5_options',''),(323371,42582,'_blocks_5_options','field_6176830e2ad16'),(323372,42582,'blocks_5_text_block_heading','Fees & Funding Options'),(323373,42582,'_blocks_5_text_block_heading','field_617669d413097'),(323374,42582,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(323375,42582,'_blocks_5_text_block_content','field_617669ec13098'),(323376,42582,'blocks_1_acfe_flexible_toggle',''),(323377,42582,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(323378,42582,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(323379,42582,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(323380,42582,'blocks_1_options_theme','#ffffff'),(323381,42582,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(323382,42582,'blocks_1_options_reverse','0'),(323383,42582,'_blocks_1_options_reverse','field_61768049bb8ac'),(323384,42582,'blocks_1_options',''),(323385,42582,'_blocks_1_options','field_617682517c334'),(323386,42582,'blocks_1_split_5050_image','39241'),(323387,42582,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(323388,42582,'blocks_1_split_5050_video',''),(323389,42582,'_blocks_1_split_5050_video','field_6239f3160848a'),(323390,42582,'blocks_1_split_5050_content_title',''),(323391,42582,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(323392,42582,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports massage therapist'),(323393,42582,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(323394,42582,'blocks_1_split_5050_content_text','Sports Massage Therapists are often referred clients by various allied health professions. such as Physiotherapists and Podiatrists, for support with rehabilitation.\r\n\r\nWhat we will give you as a Sports Massage Therapist is the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course will also enhance your relationship with the physiotherapists and other healthcare providers because you will have common language between you.'),(323395,42582,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(323396,42582,'blocks_1_split_5050_content_actions',''),(323397,42582,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(323398,42582,'blocks_1_split_5050_content',''),(323399,42582,'_blocks_1_split_5050_content','field_61767afceb8ba'),(323400,42582,'blocks_6_acfe_flexible_toggle',''),(323401,42582,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(323402,42582,'blocks_6_acfe_flexible_layout_title','Icons'),(323403,42582,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(323404,42582,'blocks_6_options_theme','#b61234'),(323405,42582,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(323406,42582,'blocks_6_options_format','row'),(323407,42582,'_blocks_6_options_format','field_64bfde9a90690'),(323408,42582,'blocks_6_options',''),(323409,42582,'_blocks_6_options','field_64bfdd9b90684'),(323410,42582,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(323411,42582,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(323412,42582,'blocks_6_icon_row_items_0_label','Pay in Full'),(323413,42582,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(323414,42582,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(323415,42582,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(323416,42582,'blocks_6_icon_row_items_1_icon','finance.svg'),(323417,42582,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(323418,42582,'blocks_6_icon_row_items_1_label','0% Finance'),(323419,42582,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(323420,42582,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance.'),(323421,42582,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(323422,42582,'blocks_6_icon_row_items_2_icon','deposit.svg'),(323423,42582,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(323424,42582,'blocks_6_icon_row_items_2_label','Deposit & balance'),(323425,42582,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(323426,42582,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(323427,42582,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(323428,42582,'blocks_6_icon_row_items','3'),(323429,42582,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(323430,42582,'blocks_7_acfe_flexible_toggle',''),(323431,42582,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(323432,42582,'blocks_7_acfe_flexible_layout_title','Steps'),(323433,42582,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(323434,42582,'blocks_7_row_content_title',''),(323435,42582,'_blocks_7_row_content_title','field_64888cd1e26e0'),(323436,42582,'blocks_7_row_content_heading','Benefits of Training with Us'),(323437,42582,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(323438,42582,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(323439,42582,'_blocks_7_row_content_text','field_64888ce2e26e2'),(323440,42582,'blocks_7_row_content_actions',''),(323441,42582,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(323442,42582,'blocks_7_row_content',''),(323443,42582,'_blocks_7_row_content','field_64888cb0e26df'),(323444,42582,'blocks_7_steps_0_icon','progression.svg'),(323445,42582,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(323446,42582,'blocks_7_steps_0_title','Earning potential'),(323447,42582,'_blocks_7_steps_0_title','field_64888d94e26e7'),(323448,42582,'blocks_7_steps_0_text','Attract new clients and retain current ones while increasing your rates using the knowledge and skills gained from the course.'),(323449,42582,'_blocks_7_steps_0_text','field_64888d99e26e8'),(323450,42582,'blocks_7_steps_1_icon','support.svg'),(323451,42582,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(323452,42582,'blocks_7_steps_1_title','Lifetime learning promise'),(323453,42582,'_blocks_7_steps_1_title','field_64888d94e26e7'),(323454,42582,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(323455,42582,'_blocks_7_steps_1_text','field_64888d99e26e8'),(323456,42582,'blocks_7_steps_2_icon','qualification.svg'),(323457,42582,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(323458,42582,'blocks_7_steps_2_title','Evidence based hands on learning'),(323459,42582,'_blocks_7_steps_2_title','field_64888d94e26e7'),(323460,42582,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tried, and tested. You learn how to screen and test to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(323461,42582,'_blocks_7_steps_2_text','field_64888d99e26e8'),(323462,42582,'blocks_7_steps_3_icon','leaders.svg'),(323463,42582,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(323464,42582,'blocks_7_steps_3_title','Stand out from the crowd'),(323465,42582,'_blocks_7_steps_3_title','field_64888d94e26e7'),(323466,42582,'blocks_7_steps_3_text','As a Sports Massage Therapist through the Biomechanics Coaching Diploma we will give you the ability to assess, monitor and progress your clients with their rehabilitation needs. In addition, we will teach you how to work with your current clients, to test, identify and take preventative measures for risk reduction. The course can also enhance your relationship with other healthcare providers because you will have confidence in a common language'),(323467,42582,'_blocks_7_steps_3_text','field_64888d99e26e8'),(323468,42582,'blocks_7_steps','4'),(323469,42582,'_blocks_7_steps','field_64888d44e26e5'),(323470,42582,'blocks_2_acfe_flexible_toggle',''),(323471,42582,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(323472,42582,'blocks_2_acfe_flexible_layout_title','Form'),(323473,42582,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(323474,42582,'blocks_2_row_content_format','standard'),(323475,42582,'_blocks_2_row_content_format','field_6481ead962881'),(323476,42582,'blocks_2_row_content_title',''),(323477,42582,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(323478,42582,'blocks_2_row_content_heading','Enquire Today'),(323479,42582,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(323480,42582,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(323481,42582,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(323482,42582,'blocks_2_row_content_actions',''),(323483,42582,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(323484,42582,'blocks_2_row_content',''),(323485,42582,'_blocks_2_row_content','field_61a0f5f5b3db0'),(323486,42582,'blocks_2_row_form','40394'),(323487,42582,'_blocks_2_row_form','field_61a4ff2c0b08e'),(323488,42582,'blocks_2_row_form_button_label',''),(323489,42582,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(323490,42582,'blocks_3_acfe_flexible_toggle','1'),(323491,42582,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(323492,42582,'blocks_3_acfe_flexible_layout_title','Video'),(323493,42582,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(323494,42582,'blocks_3_size','large'),(323495,42582,'_blocks_3_size','field_6487038f297c1'),(323496,42582,'blocks_3_row_content_title',''),(323497,42582,'_blocks_3_row_content_title','field_64870132a865d'),(323498,42582,'blocks_3_row_content_heading',''),(323499,42582,'_blocks_3_row_content_heading','field_64870142a865e'),(323500,42582,'blocks_3_row_content_text',''),(323501,42582,'_blocks_3_row_content_text','field_64870148a865f'),(323502,42582,'blocks_3_row_content',''),(323503,42582,'_blocks_3_row_content','field_6487008ba865c'),(323504,42582,'blocks_3_video_src',''),(323505,42582,'_blocks_3_video_src','field_6193c4a98ec07'),(323506,42582,'blocks_3_video_thumbnail',''),(323507,42582,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(323508,42582,'blocks_8_acfe_flexible_toggle',''),(323509,42582,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(323510,42582,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(323511,42582,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(323512,42582,'blocks_8_options_theme','#f5f5f5'),(323513,42582,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(323514,42582,'blocks_8_options_reverse','0'),(323515,42582,'_blocks_8_options_reverse','field_61768049bb8ac'),(323516,42582,'blocks_8_options',''),(323517,42582,'_blocks_8_options','field_617682517c334'),(323518,42582,'blocks_8_split_5050_image','40920'),(323519,42582,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(323520,42582,'blocks_8_split_5050_video',''),(323521,42582,'_blocks_8_split_5050_video','field_6239f3160848a'),(323522,42582,'blocks_8_split_5050_content_title',''),(323523,42582,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(323524,42582,'blocks_8_split_5050_content_heading','Why study this course ?'),(323525,42582,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(323526,42582,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(323527,42582,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(323528,42582,'blocks_8_split_5050_content_actions',''),(323529,42582,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(323530,42582,'blocks_8_split_5050_content',''),(323531,42582,'_blocks_8_split_5050_content','field_61767afceb8ba'),(323532,42582,'blocks_9_acfe_flexible_toggle','1'),(323533,42582,'_blocks_9_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(323534,42582,'blocks_9_acfe_flexible_layout_title','Standard/Editorial Content'),(323535,42582,'_blocks_9_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(323536,42582,'blocks_9_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, making it easy for clients to find your business once you gain your diploma—all hosted by Biomechanics Education.</li>\r\n</ul>'),(323537,42582,'_blocks_9_content','field_6193c9b5eac84'),(323538,42582,'blocks_10_acfe_flexible_toggle',''),(323539,42582,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(323540,42582,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(323541,42582,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(323542,42582,'blocks_10_testimonial_slider_content_title',''),(323543,42582,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(323544,42582,'blocks_10_testimonial_slider_content_heading','Testimonials'),(323545,42582,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(323546,42582,'blocks_10_testimonial_slider_content_text',''),(323547,42582,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(323548,42582,'blocks_10_testimonial_slider_content_actions',''),(323549,42582,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(323550,42582,'blocks_10_testimonial_slider_content',''),(323551,42582,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(323552,42582,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(323553,42582,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(323554,42582,'blocks_10_testimonial_slider_ambassador_bool','0'),(323555,42582,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(323556,42582,'blocks_11_acfe_flexible_toggle',''),(323557,42582,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(323558,42582,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(323559,42582,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(323560,42582,'blocks_11_options_theme','#ffffff'),(323561,42582,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(323562,42582,'blocks_11_options_state','0'),(323563,42582,'_blocks_11_options_state','field_6239fcb7508c5'),(323564,42582,'blocks_11_options',''),(323565,42582,'_blocks_11_options','field_6177e2991ac44'),(323566,42582,'blocks_11_content_title',''),(323567,42582,'_blocks_11_content_title','field_64d237e8bb1e2'),(323568,42582,'blocks_11_content_heading','Frequently Asked Questions '),(323569,42582,'_blocks_11_content_heading','field_64d237e8bb1e3'),(323570,42582,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(323571,42582,'_blocks_11_content_text','field_64d237e8bb1e4'),(323572,42582,'blocks_11_content_actions',''),(323573,42582,'_blocks_11_content_actions','field_64d237e8bb1e5'),(323574,42582,'blocks_11_content_align','left'),(323575,42582,'_blocks_11_content_align','field_64d2443e6b6aa'),(323576,42582,'blocks_11_content',''),(323577,42582,'_blocks_11_content','field_64d237e8bb1e1'),(323578,42582,'blocks_11_accordion_content','faqs'),(323579,42582,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(323580,42582,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(323581,42582,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(323582,42582,'blocks_11_actions',''),(323583,42582,'_blocks_11_actions','field_61a746a817f7a'),(323584,42583,'hide_hero','0'),(323585,42583,'_hide_hero','field_66a2380fcda39'),(323586,42583,'hero_title','Biomechanics and Podiatrists'),(323587,42583,'_hero_title','field_617571fe285e8'),(323588,42583,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(323589,42583,'_hero_text','field_6175723c285e9'),(323590,42583,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39245-3\";s:6:\"target\";s:0:\"\";}'),(323591,42583,'_hero_actions_0_button','field_61757281285eb'),(323592,42583,'hero_actions','1'),(323593,42583,'_hero_actions','field_61757270285ea'),(323594,42583,'hero_style','default'),(323595,42583,'_hero_style','field_62051d9dc5324'),(323596,42583,'_thumbnail_id','39247'),(323597,42583,'__thumbnail_id','field_617570855ddaf'),(323598,42583,'hero_image_pos_x','right'),(323599,42583,'_hero_image_pos_x','field_62ec3d05390bb'),(323600,42583,'hero_image_pos_y','top'),(323601,42583,'_hero_image_pos_y','field_62ec3d05390bc'),(323602,42583,'hero_image_pos',''),(323603,42583,'_hero_image_pos','field_62ec3d05390ba'),(323604,42583,'fft_hide_from_listings','0'),(323605,42583,'_fft_hide_from_listings','field_61f1320446ab2'),(323606,42583,'fft_page_format','default'),(323607,42583,'_fft_page_format','field_61ae213f1f218'),(323608,42583,'fft_hide_nav','0'),(323609,42583,'_fft_hide_nav','field_635bd5e43527c'),(323610,42583,'fft_hide_header_call_to_action','0'),(323611,42583,'_fft_hide_header_call_to_action','field_635bd6723527d'),(323612,42583,'fft_page_sitemap','0'),(323613,42583,'_fft_page_sitemap','field_61af9b34e8181'),(323614,42583,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:5:\"steps\";i:2;s:4:\"form\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:5:\"video\";i:6;s:4:\"tabs\";i:7;s:10:\"text_block\";i:8;s:5:\"icons\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(323615,42583,'_blocks','field_6176696113096'),(323616,42583,'blocks_2_acfe_flexible_toggle',''),(323617,42583,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(323618,42583,'blocks_2_acfe_flexible_layout_title','Form'),(323619,42583,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(323620,42583,'blocks_2_row_content_format','standard'),(323621,42583,'_blocks_2_row_content_format','field_6481ead962881'),(323622,42583,'blocks_2_row_content_title',''),(323623,42583,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(323624,42583,'blocks_2_row_content_heading','Enquire Today'),(323625,42583,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(323626,42583,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(323627,42583,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(323628,42583,'blocks_2_row_content_actions',''),(323629,42583,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(323630,42583,'blocks_2_row_content',''),(323631,42583,'_blocks_2_row_content','field_61a0f5f5b3db0'),(323632,42583,'blocks_2_row_form','40394'),(323633,42583,'_blocks_2_row_form','field_61a4ff2c0b08e'),(323634,42583,'blocks_2_row_form_button_label',''),(323635,42583,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(323636,42583,'blocks_0_acfe_flexible_toggle',''),(323637,42583,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(323638,42583,'blocks_0_acfe_flexible_layout_title','Template'),(323639,42583,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(323640,42583,'blocks_0_template','39087'),(323641,42583,'_blocks_0_template','field_617bdd570fe01'),(323642,42583,'blocks_1_acfe_flexible_toggle',''),(323643,42583,'_blocks_1_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(323644,42583,'blocks_1_acfe_flexible_layout_title','Steps'),(323645,42583,'_blocks_1_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(323646,42583,'blocks_1_row_content_title',''),(323647,42583,'_blocks_1_row_content_title','field_64888cd1e26e0'),(323648,42583,'blocks_1_row_content_heading','Benefits of training with us'),(323649,42583,'_blocks_1_row_content_heading','field_64888cd9e26e1'),(323650,42583,'blocks_1_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(323651,42583,'_blocks_1_row_content_text','field_64888ce2e26e2'),(323652,42583,'blocks_1_row_content_actions',''),(323653,42583,'_blocks_1_row_content_actions','field_64888cf5e26e3'),(323654,42583,'blocks_1_row_content',''),(323655,42583,'_blocks_1_row_content','field_64888cb0e26df'),(323656,42583,'blocks_1_steps_0_icon','progression.svg'),(323657,42583,'_blocks_1_steps_0_icon','field_64888d53e26e6'),(323658,42583,'blocks_1_steps_0_title','Earning Potential'),(323659,42583,'_blocks_1_steps_0_title','field_64888d94e26e7'),(323660,42583,'blocks_1_steps_0_text','Attract new clients, retain current ones, and increase your rates with the Diploma in Biomechanics Coaching. This programme gives you a system to reach new clients and work more effectively with existing ones. Full body screenings may also require extra sessions, providing clients with thorough support and helping you build stronger, long-term relationships.'),(323661,42583,'_blocks_1_steps_0_text','field_64888d99e26e8'),(323662,42583,'blocks_1_steps_1_icon','support.svg'),(323663,42583,'_blocks_1_steps_1_icon','field_64888d53e26e6'),(323664,42583,'blocks_1_steps_1_title','Lifetime Learning Promise'),(323665,42583,'_blocks_1_steps_1_title','field_64888d94e26e7'),(323666,42583,'blocks_1_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(323667,42583,'_blocks_1_steps_1_text','field_64888d99e26e8'),(323668,42583,'blocks_1_steps_2_icon','qualification.svg'),(323669,42583,'_blocks_1_steps_2_icon','field_64888d53e26e6'),(323670,42583,'blocks_1_steps_2_title','Evidence Based Hands on Learning'),(323671,42583,'_blocks_1_steps_2_title','field_64888d94e26e7'),(323672,42583,'blocks_1_steps_2_text','Developed through over 20 years of research with 4,000 participants - from those recovering from injury to active individuals - is a comprehensive, evidence-backed programme for mastering movement assessments. Through a blend of online learning and hands-on workshops, you’ll learn specific tests and screens to understand the roles of the pelvis, spine, and upper body in lower limb function, particularly foot mechanics. This approach equips you with the insights needed for effective orthotic prescription and tailored movement strategies, helping you optimise outcomes for every client.'),(323673,42583,'_blocks_1_steps_2_text','field_64888d99e26e8'),(323674,42583,'blocks_1_steps_3_icon','leaders.svg'),(323675,42583,'_blocks_1_steps_3_icon','field_64888d53e26e6'),(323676,42583,'blocks_1_steps_3_title','Stand Out From the Crowd'),(323677,42583,'_blocks_1_steps_3_title','field_64888d94e26e7'),(323678,42583,'blocks_1_steps_3_text','You will gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(323679,42583,'_blocks_1_steps_3_text','field_64888d99e26e8'),(323680,42583,'blocks_1_steps','4'),(323681,42583,'_blocks_1_steps','field_64888d44e26e5'),(323682,42583,'blocks_3_acfe_flexible_toggle',''),(323683,42583,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(323684,42583,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(323685,42583,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(323686,42583,'blocks_3_options_theme','#ffffff'),(323687,42583,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(323688,42583,'blocks_3_options_reverse','0'),(323689,42583,'_blocks_3_options_reverse','field_61768049bb8ac'),(323690,42583,'blocks_3_options',''),(323691,42583,'_blocks_3_options','field_617682517c334'),(323692,42583,'blocks_3_split_5050_image','39617'),(323693,42583,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(323694,42583,'blocks_3_split_5050_video',''),(323695,42583,'_blocks_3_split_5050_video','field_6239f3160848a'),(323696,42583,'blocks_3_split_5050_content_title',''),(323697,42583,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(323698,42583,'blocks_3_split_5050_content_heading','Why it’s relevant to you as a Podiatrist'),(323699,42583,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(323700,42583,'blocks_3_split_5050_content_text','This integrated system offers a full-body approach, covering the pelvis, spine, shoulders, knees, and feet in a comprehensive biomechanical assessment programme. By understanding how the upper body affects lower limb mechanics, podiatrists can address foot issues with a more holistic perspective. This unique assessment method enables you to uncover connections and solutions that traditional approaches may overlook, helping to improve client retention and build trust over time.\r\n\r\nOur model promotes a prevention-focused, system-led approach rather than just responding to symptoms. This proactive method allows you to expand your client base while reducing risks through exercise prescription, supporting clients before, during, and after injuries. It also empowers you with exercise prescription skills that complement your existing expertise, allowing for informed orthotic prescriptions and an integrated care approach to foot health.'),(323701,42583,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(323702,42583,'blocks_3_split_5050_content_actions',''),(323703,42583,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(323704,42583,'blocks_3_split_5050_content',''),(323705,42583,'_blocks_3_split_5050_content','field_61767afceb8ba'),(323706,42583,'blocks_4_acfe_flexible_toggle',''),(323707,42583,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(323708,42583,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(323709,42583,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(323710,42583,'blocks_4_options_theme','#ffffff'),(323711,42583,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(323712,42583,'blocks_4_options_reverse','1'),(323713,42583,'_blocks_4_options_reverse','field_61768049bb8ac'),(323714,42583,'blocks_4_options',''),(323715,42583,'_blocks_4_options','field_617682517c334'),(323716,42583,'blocks_4_split_5050_image','41371'),(323717,42583,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(323718,42583,'blocks_4_split_5050_video',''),(323719,42583,'_blocks_4_split_5050_video','field_6239f3160848a'),(323720,42583,'blocks_4_split_5050_content_title',''),(323721,42583,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(323722,42583,'blocks_4_split_5050_content_heading','Backed by experts in the field'),(323723,42583,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(323724,42583,'blocks_4_split_5050_content_text','Martin Haines RGRT MCSP SRP IBAM, has been the Lead Physiotherapist at Crystal Palace FC and Arsenal FC, as well treating professional rugby players from the England rugby team and Premiership as well as professional footballers from Premiership Teams. He has been the Clinical Director at 4 clinics in the UK and lead consultant for clinics in Sweden and USA. He has been on the PGA Performance Institute and has worked with 5 Olympic Champions. He has also been involved with McLaren F1, working with their drivers to help prevent and manage injury as well as helping design their cars.\r\n\r\nMartin has worked with the Biomechanics Education Team to develop the content for their courses and workshops and consults to help future courses. He has a particular interest in developing biomechanics courses for medical professionals including the Podiatry workshop/course\r\n\r\nPersonally, Martin is an accomplished author and his work has been presented at scientific congresses across the world, including the IOC World Congress on Illness and Injury in Sport. He is a former Honorary Senior Lecturer at Salford University and former chair of the UK Biomechanics Coaching Association.'),(323725,42583,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(323726,42583,'blocks_4_split_5050_content_actions',''),(323727,42583,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(323728,42583,'blocks_4_split_5050_content',''),(323729,42583,'_blocks_4_split_5050_content','field_61767afceb8ba'),(323730,42583,'blocks_5_acfe_flexible_toggle',''),(323731,42583,'_blocks_5_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(323732,42583,'blocks_5_acfe_flexible_layout_title','Video'),(323733,42583,'_blocks_5_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(323734,42583,'blocks_5_size','large'),(323735,42583,'_blocks_5_size','field_6487038f297c1'),(323736,42583,'blocks_5_row_content_title',''),(323737,42583,'_blocks_5_row_content_title','field_64870132a865d'),(323738,42583,'blocks_5_row_content_heading','Watch here our exciting interview with Martin Haines '),(323739,42583,'_blocks_5_row_content_heading','field_64870142a865e'),(323740,42583,'blocks_5_row_content_text',''),(323741,42583,'_blocks_5_row_content_text','field_64870148a865f'),(323742,42583,'blocks_5_row_content',''),(323743,42583,'_blocks_5_row_content','field_6487008ba865c'),(323744,42583,'blocks_5_video_src','https://youtu.be/_WP-i7QnhDA'),(323745,42583,'_blocks_5_video_src','field_6193c4a98ec07'),(323746,42583,'blocks_5_video_thumbnail',''),(323747,42583,'_blocks_5_video_thumbnail','field_6193c4a08ec06'),(323748,42583,'blocks_6_acfe_flexible_toggle',''),(323749,42583,'_blocks_6_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(323750,42583,'blocks_6_acfe_flexible_layout_title','Tabs'),(323751,42583,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(323752,42583,'blocks_6_options_theme','#ffffff'),(323753,42583,'_blocks_6_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(323754,42583,'blocks_6_options',''),(323755,42583,'_blocks_6_options','field_6177cfcd8140f'),(323756,42583,'blocks_6_tabs_0_tab_label','What will I learn?'),(323757,42583,'_blocks_6_tabs_0_tab_label','field_6177d0068141a'),(323758,42583,'blocks_6_tabs_0_tab_content_title',''),(323759,42583,'_blocks_6_tabs_0_tab_content_title','field_6177cfcd81414'),(323760,42583,'blocks_6_tabs_0_tab_content_heading','What you’ll learn'),(323761,42583,'_blocks_6_tabs_0_tab_content_heading','field_6177cfcd81415'),(323762,42583,'blocks_6_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n 	<li>Screening System that Informs Orthotic Prescription</li>\r\n 	<li>Provide Exercise Prescription Skills</li>\r\n</ul>'),(323763,42583,'_blocks_6_tabs_0_tab_content_text','field_6177cfcd81416'),(323764,42583,'blocks_6_tabs_0_tab_content_actions',''),(323765,42583,'_blocks_6_tabs_0_tab_content_actions','field_6177cfcd81417'),(323766,42583,'blocks_6_tabs_0_tab_content',''),(323767,42583,'_blocks_6_tabs_0_tab_content','field_6177cfcd81413'),(323768,42583,'blocks_6_tabs_0_tab_image','39076'),(323769,42583,'_blocks_6_tabs_0_tab_image','field_6177cfcd81412'),(323770,42583,'blocks_6_tabs_1_tab_label','What do I need?'),(323771,42583,'_blocks_6_tabs_1_tab_label','field_6177d0068141a'),(323772,42583,'blocks_6_tabs_1_tab_content_title',''),(323773,42583,'_blocks_6_tabs_1_tab_content_title','field_6177cfcd81414'),(323774,42583,'blocks_6_tabs_1_tab_content_heading','Entry requirements'),(323775,42583,'_blocks_6_tabs_1_tab_content_heading','field_6177cfcd81415'),(323776,42583,'blocks_6_tabs_1_tab_content_text','In order to study for this <span data-teams=\"true\"><span class=\"ui-provider a b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak\" dir=\"ltr\">Diploma in Biomechanics Coaching, </span></span>you will need at least one of the below as the minimum requirement:\r\n<ul>\r\n 	<li>Podiatry Qualification</li>\r\n 	<li>Chiropodist Qualification</li>\r\n 	<li>Orthotist Qualification</li>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(323777,42583,'_blocks_6_tabs_1_tab_content_text','field_6177cfcd81416'),(323778,42583,'blocks_6_tabs_1_tab_content_actions',''),(323779,42583,'_blocks_6_tabs_1_tab_content_actions','field_6177cfcd81417'),(323780,42583,'blocks_6_tabs_1_tab_content',''),(323781,42583,'_blocks_6_tabs_1_tab_content','field_6177cfcd81413'),(323782,42583,'blocks_6_tabs_1_tab_image','39223'),(323783,42583,'_blocks_6_tabs_1_tab_image','field_6177cfcd81412'),(323784,42583,'blocks_6_tabs_2_tab_label','Where can I learn?'),(323785,42583,'_blocks_6_tabs_2_tab_label','field_6177d0068141a'),(323786,42583,'blocks_6_tabs_2_tab_content_title',''),(323787,42583,'_blocks_6_tabs_2_tab_content_title','field_6177cfcd81414'),(323788,42583,'blocks_6_tabs_2_tab_content_heading','Locations'),(323789,42583,'_blocks_6_tabs_2_tab_content_heading','field_6177cfcd81415'),(323790,42583,'blocks_6_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(323791,42583,'_blocks_6_tabs_2_tab_content_text','field_6177cfcd81416'),(323792,42583,'blocks_6_tabs_2_tab_content_actions',''),(323793,42583,'_blocks_6_tabs_2_tab_content_actions','field_6177cfcd81417'),(323794,42583,'blocks_6_tabs_2_tab_content',''),(323795,42583,'_blocks_6_tabs_2_tab_content','field_6177cfcd81413'),(323796,42583,'blocks_6_tabs_2_tab_image','39224'),(323797,42583,'_blocks_6_tabs_2_tab_image','field_6177cfcd81412'),(323798,42583,'blocks_6_tabs','3'),(323799,42583,'_blocks_6_tabs','field_6177cff281419'),(323800,42583,'blocks_7_acfe_flexible_toggle',''),(323801,42583,'_blocks_7_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(323802,42583,'blocks_7_acfe_flexible_layout_title','Text Block'),(323803,42583,'_blocks_7_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(323804,42583,'blocks_7_options_theme','#b61234'),(323805,42583,'_blocks_7_options_theme','field_6176830e2ad17'),(323806,42583,'blocks_7_options',''),(323807,42583,'_blocks_7_options','field_6176830e2ad16'),(323808,42583,'blocks_7_text_block_heading','Fees & Funding Options'),(323809,42583,'_blocks_7_text_block_heading','field_617669d413097'),(323810,42583,'blocks_7_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(323811,42583,'_blocks_7_text_block_content','field_617669ec13098'),(323812,42583,'blocks_8_acfe_flexible_toggle',''),(323813,42583,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(323814,42583,'blocks_8_acfe_flexible_layout_title','Icons'),(323815,42583,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(323816,42583,'blocks_8_options_theme','#b61234'),(323817,42583,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(323818,42583,'blocks_8_options_format','row'),(323819,42583,'_blocks_8_options_format','field_64bfde9a90690'),(323820,42583,'blocks_8_options',''),(323821,42583,'_blocks_8_options','field_64bfdd9b90684'),(323822,42583,'blocks_8_icon_row_items_0_icon','payment-plans.svg'),(323823,42583,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(323824,42583,'blocks_8_icon_row_items_0_label','Pay in Full'),(323825,42583,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(323826,42583,'blocks_8_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(323827,42583,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(323828,42583,'blocks_8_icon_row_items_1_icon','finance.svg'),(323829,42583,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(323830,42583,'blocks_8_icon_row_items_1_label','0% finance'),(323831,42583,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(323832,42583,'blocks_8_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(323833,42583,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(323834,42583,'blocks_8_icon_row_items_2_icon','deposit.svg'),(323835,42583,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(323836,42583,'blocks_8_icon_row_items_2_label','Deposit & balance'),(323837,42583,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(323838,42583,'blocks_8_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(323839,42583,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(323840,42583,'blocks_8_icon_row_items','3'),(323841,42583,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(323842,42583,'blocks_9_acfe_flexible_toggle',''),(323843,42583,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(323844,42583,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(323845,42583,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(323846,42583,'blocks_9_options_theme','#f5f5f5'),(323847,42583,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(323848,42583,'blocks_9_options_reverse','0'),(323849,42583,'_blocks_9_options_reverse','field_61768049bb8ac'),(323850,42583,'blocks_9_options',''),(323851,42583,'_blocks_9_options','field_617682517c334'),(323852,42583,'blocks_9_split_5050_image','40920'),(323853,42583,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(323854,42583,'blocks_9_split_5050_video',''),(323855,42583,'_blocks_9_split_5050_video','field_6239f3160848a'),(323856,42583,'blocks_9_split_5050_content_title',''),(323857,42583,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(323858,42583,'blocks_9_split_5050_content_heading','Why Study This Course?'),(323859,42583,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(323860,42583,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(323861,42583,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(323862,42583,'blocks_9_split_5050_content_actions',''),(323863,42583,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(323864,42583,'blocks_9_split_5050_content',''),(323865,42583,'_blocks_9_split_5050_content','field_61767afceb8ba'),(323866,42583,'blocks_10_acfe_flexible_toggle',''),(323867,42583,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(323868,42583,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(323869,42583,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(323870,42583,'blocks_10_testimonial_slider_content_title',''),(323871,42583,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(323872,42583,'blocks_10_testimonial_slider_content_heading','Testimonials'),(323873,42583,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(323874,42583,'blocks_10_testimonial_slider_content_text',''),(323875,42583,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(323876,42583,'blocks_10_testimonial_slider_content_actions',''),(323877,42583,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(323878,42583,'blocks_10_testimonial_slider_content',''),(323879,42583,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(323880,42583,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(323881,42583,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(323882,42583,'blocks_10_testimonial_slider_ambassador_bool','0'),(323883,42583,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(323884,42583,'blocks_11_acfe_flexible_toggle',''),(323885,42583,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(323886,42583,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(323887,42583,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(323888,42583,'blocks_11_options_theme','#ffffff'),(323889,42583,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(323890,42583,'blocks_11_options_state','0'),(323891,42583,'_blocks_11_options_state','field_6239fcb7508c5'),(323892,42583,'blocks_11_options',''),(323893,42583,'_blocks_11_options','field_6177e2991ac44'),(323894,42583,'blocks_11_content_title',''),(323895,42583,'_blocks_11_content_title','field_64d237e8bb1e2'),(323896,42583,'blocks_11_content_heading','Frequently asked questions '),(323897,42583,'_blocks_11_content_heading','field_64d237e8bb1e3'),(323898,42583,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(323899,42583,'_blocks_11_content_text','field_64d237e8bb1e4'),(323900,42583,'blocks_11_content_actions',''),(323901,42583,'_blocks_11_content_actions','field_64d237e8bb1e5'),(323902,42583,'blocks_11_content_align','left'),(323903,42583,'_blocks_11_content_align','field_64d2443e6b6aa'),(323904,42583,'blocks_11_content',''),(323905,42583,'_blocks_11_content','field_64d237e8bb1e1'),(323906,42583,'blocks_11_accordion_content','faqs'),(323907,42583,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(323908,42583,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(323909,42583,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(323910,42583,'blocks_11_actions',''),(323911,42583,'_blocks_11_actions','field_61a746a817f7a'),(323912,42584,'hide_hero','0'),(323913,42584,'_hide_hero','field_66a2380fcda39'),(323914,42584,'hero_title','Biomechanics and Sports Coaches '),(323915,42584,'_hero_title','field_617571fe285e8'),(323916,42584,'hero_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(323917,42584,'_hero_text','field_6175723c285e9'),(323918,42584,'hero_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39249-3\";s:6:\"target\";s:0:\"\";}'),(323919,42584,'_hero_actions_0_button','field_61757281285eb'),(323920,42584,'hero_actions','1'),(323921,42584,'_hero_actions','field_61757270285ea'),(323922,42584,'hero_style','default'),(323923,42584,'_hero_style','field_62051d9dc5324'),(323924,42584,'_thumbnail_id','39251'),(323925,42584,'__thumbnail_id','field_617570855ddaf'),(323926,42584,'hero_image_pos_x','right'),(323927,42584,'_hero_image_pos_x','field_62ec3d05390bb'),(323928,42584,'hero_image_pos_y','top'),(323929,42584,'_hero_image_pos_y','field_62ec3d05390bc'),(323930,42584,'hero_image_pos',''),(323931,42584,'_hero_image_pos','field_62ec3d05390ba'),(323932,42584,'fft_hide_from_listings','0'),(323933,42584,'_fft_hide_from_listings','field_61f1320446ab2'),(323934,42584,'fft_page_format','default'),(323935,42584,'_fft_page_format','field_61ae213f1f218'),(323936,42584,'fft_hide_nav','0'),(323937,42584,'_fft_hide_nav','field_635bd5e43527c'),(323938,42584,'fft_hide_header_call_to_action','0'),(323939,42584,'_fft_hide_header_call_to_action','field_635bd6723527d'),(323940,42584,'fft_page_sitemap','0'),(323941,42584,'_fft_page_sitemap','field_61af9b34e8181'),(323942,42584,'blocks','a:10:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"steps\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:10:\"split_5050\";i:8;s:10:\"accordions\";i:9;s:18:\"testimonial_slider\";}'),(323943,42584,'_blocks','field_6176696113096'),(323944,42584,'blocks_0_acfe_flexible_toggle',''),(323945,42584,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(323946,42584,'blocks_0_acfe_flexible_layout_title','Template'),(323947,42584,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(323948,42584,'blocks_0_template','39087'),(323949,42584,'_blocks_0_template','field_617bdd570fe01'),(323950,42584,'blocks_4_acfe_flexible_toggle',''),(323951,42584,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(323952,42584,'blocks_4_acfe_flexible_layout_title','Tabs'),(323953,42584,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(323954,42584,'blocks_4_options_theme','#ffffff'),(323955,42584,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(323956,42584,'blocks_4_options',''),(323957,42584,'_blocks_4_options','field_6177cfcd8140f'),(323958,42584,'blocks_4_tabs_0_tab_label','What will I learn ?'),(323959,42584,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(323960,42584,'blocks_4_tabs_0_tab_content_title',''),(323961,42584,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(323962,42584,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(323963,42584,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(323964,42584,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(323965,42584,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(323966,42584,'blocks_4_tabs_0_tab_content_actions',''),(323967,42584,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(323968,42584,'blocks_4_tabs_0_tab_content',''),(323969,42584,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(323970,42584,'blocks_4_tabs_0_tab_image','39076'),(323971,42584,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(323972,42584,'blocks_4_tabs_1_tab_label','What do I need ?'),(323973,42584,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(323974,42584,'blocks_4_tabs_1_tab_content_title',''),(323975,42584,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(323976,42584,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(323977,42584,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(323978,42584,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(323979,42584,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(323980,42584,'blocks_4_tabs_1_tab_content_actions',''),(323981,42584,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(323982,42584,'blocks_4_tabs_1_tab_content',''),(323983,42584,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(323984,42584,'blocks_4_tabs_1_tab_image','39223'),(323985,42584,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(323986,42584,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(323987,42584,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(323988,42584,'blocks_4_tabs_2_tab_content_title',''),(323989,42584,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(323990,42584,'blocks_4_tabs_2_tab_content_heading','Locations'),(323991,42584,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(323992,42584,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(323993,42584,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(323994,42584,'blocks_4_tabs_2_tab_content_actions',''),(323995,42584,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(323996,42584,'blocks_4_tabs_2_tab_content',''),(323997,42584,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(323998,42584,'blocks_4_tabs_2_tab_image','39224'),(323999,42584,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(324000,42584,'blocks_4_tabs','3'),(324001,42584,'_blocks_4_tabs','field_6177cff281419'),(324002,42584,'blocks_5_acfe_flexible_toggle',''),(324003,42584,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(324004,42584,'blocks_5_acfe_flexible_layout_title','Text Block'),(324005,42584,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(324006,42584,'blocks_5_options_theme','#b61234'),(324007,42584,'_blocks_5_options_theme','field_6176830e2ad17'),(324008,42584,'blocks_5_options',''),(324009,42584,'_blocks_5_options','field_6176830e2ad16'),(324010,42584,'blocks_5_text_block_heading','Fees & Funding Options'),(324011,42584,'_blocks_5_text_block_heading','field_617669d413097'),(324012,42584,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(324013,42584,'_blocks_5_text_block_content','field_617669ec13098'),(324014,42584,'blocks_6_acfe_flexible_toggle',''),(324015,42584,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(324016,42584,'blocks_6_acfe_flexible_layout_title','Icons'),(324017,42584,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(324018,42584,'blocks_6_options_theme','#b61234'),(324019,42584,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(324020,42584,'blocks_6_options_format','row'),(324021,42584,'_blocks_6_options_format','field_64bfde9a90690'),(324022,42584,'blocks_6_options',''),(324023,42584,'_blocks_6_options','field_64bfdd9b90684'),(324024,42584,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(324025,42584,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(324026,42584,'blocks_6_icon_row_items_0_label','Pay in Full'),(324027,42584,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(324028,42584,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(324029,42584,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(324030,42584,'blocks_6_icon_row_items_1_icon','finance.svg'),(324031,42584,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(324032,42584,'blocks_6_icon_row_items_1_label','0% finance'),(324033,42584,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(324034,42584,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(324035,42584,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(324036,42584,'blocks_6_icon_row_items_2_icon','deposit.svg'),(324037,42584,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(324038,42584,'blocks_6_icon_row_items_2_label','Deposit & balance'),(324039,42584,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(324040,42584,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(324041,42584,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(324042,42584,'blocks_6_icon_row_items','3'),(324043,42584,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(324044,42584,'blocks_1_acfe_flexible_toggle',''),(324045,42584,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(324046,42584,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(324047,42584,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(324048,42584,'blocks_1_options_theme','#ffffff'),(324049,42584,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(324050,42584,'blocks_1_options_reverse','0'),(324051,42584,'_blocks_1_options_reverse','field_61768049bb8ac'),(324052,42584,'blocks_1_options',''),(324053,42584,'_blocks_1_options','field_617682517c334'),(324054,42584,'blocks_1_split_5050_image','39252'),(324055,42584,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(324056,42584,'blocks_1_split_5050_video',''),(324057,42584,'_blocks_1_split_5050_video','field_6239f3160848a'),(324058,42584,'blocks_1_split_5050_content_title',''),(324059,42584,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(324060,42584,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a sports coach'),(324061,42584,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(324062,42584,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from, injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(324063,42584,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(324064,42584,'blocks_1_split_5050_content_actions',''),(324065,42584,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(324066,42584,'blocks_1_split_5050_content',''),(324067,42584,'_blocks_1_split_5050_content','field_61767afceb8ba'),(324068,42584,'blocks_2_acfe_flexible_toggle',''),(324069,42584,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(324070,42584,'blocks_2_acfe_flexible_layout_title','Form'),(324071,42584,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(324072,42584,'blocks_2_row_content_format','standard'),(324073,42584,'_blocks_2_row_content_format','field_6481ead962881'),(324074,42584,'blocks_2_row_content_title',''),(324075,42584,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(324076,42584,'blocks_2_row_content_heading','Enquire Today'),(324077,42584,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(324078,42584,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(324079,42584,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(324080,42584,'blocks_2_row_content_actions',''),(324081,42584,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(324082,42584,'blocks_2_row_content',''),(324083,42584,'_blocks_2_row_content','field_61a0f5f5b3db0'),(324084,42584,'blocks_2_row_form','40394'),(324085,42584,'_blocks_2_row_form','field_61a4ff2c0b08e'),(324086,42584,'blocks_2_row_form_button_label',''),(324087,42584,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(324088,42584,'blocks_3_acfe_flexible_toggle',''),(324089,42584,'_blocks_3_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(324090,42584,'blocks_3_acfe_flexible_layout_title','Steps'),(324091,42584,'_blocks_3_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(324092,42584,'blocks_3_row_content_title',''),(324093,42584,'_blocks_3_row_content_title','field_64888cd1e26e0'),(324094,42584,'blocks_3_row_content_heading','Benefits of training with us'),(324095,42584,'_blocks_3_row_content_heading','field_64888cd9e26e1'),(324096,42584,'blocks_3_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(324097,42584,'_blocks_3_row_content_text','field_64888ce2e26e2'),(324098,42584,'blocks_3_row_content_actions',''),(324099,42584,'_blocks_3_row_content_actions','field_64888cf5e26e3'),(324100,42584,'blocks_3_row_content',''),(324101,42584,'_blocks_3_row_content','field_64888cb0e26df'),(324102,42584,'blocks_3_steps_0_icon','progression.svg'),(324103,42584,'_blocks_3_steps_0_icon','field_64888d53e26e6'),(324104,42584,'blocks_3_steps_0_title','Earning potential'),(324105,42584,'_blocks_3_steps_0_title','field_64888d94e26e7'),(324106,42584,'blocks_3_steps_0_text','Find new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(324107,42584,'_blocks_3_steps_0_text','field_64888d99e26e8'),(324108,42584,'blocks_3_steps_1_icon','support.svg'),(324109,42584,'_blocks_3_steps_1_icon','field_64888d53e26e6'),(324110,42584,'blocks_3_steps_1_title','Lifetime Learning Promise'),(324111,42584,'_blocks_3_steps_1_title','field_64888d94e26e7'),(324112,42584,'blocks_3_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(324113,42584,'_blocks_3_steps_1_text','field_64888d99e26e8'),(324114,42584,'blocks_3_steps_2_icon','qualification.svg'),(324115,42584,'_blocks_3_steps_2_icon','field_64888d53e26e6'),(324116,42584,'blocks_3_steps_2_title','Evidence based hands on learning'),(324117,42584,'_blocks_3_steps_2_title','field_64888d94e26e7'),(324118,42584,'blocks_3_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(324119,42584,'_blocks_3_steps_2_text','field_64888d99e26e8'),(324120,42584,'blocks_3_steps_3_icon','leaders.svg'),(324121,42584,'_blocks_3_steps_3_icon','field_64888d53e26e6'),(324122,42584,'blocks_3_steps_3_title','Stand out from the crowd'),(324123,42584,'_blocks_3_steps_3_title','field_64888d94e26e7'),(324124,42584,'blocks_3_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(324125,42584,'_blocks_3_steps_3_text','field_64888d99e26e8'),(324126,42584,'blocks_3_steps','4'),(324127,42584,'_blocks_3_steps','field_64888d44e26e5'),(324128,42584,'blocks_7_acfe_flexible_toggle',''),(324129,42584,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(324130,42584,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(324131,42584,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(324132,42584,'blocks_7_options_theme','#ffffff'),(324133,42584,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(324134,42584,'blocks_7_options_reverse','0'),(324135,42584,'_blocks_7_options_reverse','field_61768049bb8ac'),(324136,42584,'blocks_7_options',''),(324137,42584,'_blocks_7_options','field_617682517c334'),(324138,42584,'blocks_7_split_5050_image','40491'),(324139,42584,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(324140,42584,'blocks_7_split_5050_video',''),(324141,42584,'_blocks_7_split_5050_video','field_6239f3160848a'),(324142,42584,'blocks_7_split_5050_content_title',''),(324143,42584,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(324144,42584,'blocks_7_split_5050_content_heading','Why study this course ?'),(324145,42584,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(324146,42584,'blocks_7_split_5050_content_text','<ul>\r\n 	<li style=\"text-align: left;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: left;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: left;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: left;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: left;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(324147,42584,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(324148,42584,'blocks_7_split_5050_content_actions',''),(324149,42584,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(324150,42584,'blocks_7_split_5050_content',''),(324151,42584,'_blocks_7_split_5050_content','field_61767afceb8ba'),(324152,42584,'blocks_8_acfe_flexible_toggle',''),(324153,42584,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(324154,42584,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(324155,42584,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(324156,42584,'blocks_8_options_theme','#ffffff'),(324157,42584,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(324158,42584,'blocks_8_options_state','0'),(324159,42584,'_blocks_8_options_state','field_6239fcb7508c5'),(324160,42584,'blocks_8_options',''),(324161,42584,'_blocks_8_options','field_6177e2991ac44'),(324162,42584,'blocks_8_content_title',''),(324163,42584,'_blocks_8_content_title','field_64d237e8bb1e2'),(324164,42584,'blocks_8_content_heading','Frequently asked questions '),(324165,42584,'_blocks_8_content_heading','field_64d237e8bb1e3'),(324166,42584,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(324167,42584,'_blocks_8_content_text','field_64d237e8bb1e4'),(324168,42584,'blocks_8_content_actions',''),(324169,42584,'_blocks_8_content_actions','field_64d237e8bb1e5'),(324170,42584,'blocks_8_content_align','left'),(324171,42584,'_blocks_8_content_align','field_64d2443e6b6aa'),(324172,42584,'blocks_8_content',''),(324173,42584,'_blocks_8_content','field_64d237e8bb1e1'),(324174,42584,'blocks_8_accordion_content','faqs'),(324175,42584,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(324176,42584,'blocks_8_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(324177,42584,'_blocks_8_accordion_faqs_select','field_6177e5f3633dd'),(324178,42584,'blocks_8_actions',''),(324179,42584,'_blocks_8_actions','field_61a746a817f7a'),(324180,42584,'blocks_9_acfe_flexible_toggle',''),(324181,42584,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(324182,42584,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(324183,42584,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(324184,42584,'blocks_9_testimonial_slider_content_title',''),(324185,42584,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(324186,42584,'blocks_9_testimonial_slider_content_heading','Testimonials'),(324187,42584,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(324188,42584,'blocks_9_testimonial_slider_content_text',''),(324189,42584,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(324190,42584,'blocks_9_testimonial_slider_content_actions',''),(324191,42584,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(324192,42584,'blocks_9_testimonial_slider_content',''),(324193,42584,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(324194,42584,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(324195,42584,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(324196,42584,'blocks_9_testimonial_slider_ambassador_bool','0'),(324197,42584,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(324198,42585,'hide_hero','0'),(324199,42585,'_hide_hero','field_66a2380fcda39'),(324200,42585,'hero_title','Biomechanics and S&C coaches'),(324201,42585,'_hero_title','field_617571fe285e8'),(324202,42585,'hero_text','Gain a deeper understanding of anatomy and client movement and level up your Strength and Conditioning practice through intrinsic biomechanics.'),(324203,42585,'_hero_text','field_6175723c285e9'),(324204,42585,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39254-3\";s:6:\"target\";s:0:\"\";}'),(324205,42585,'_hero_actions_0_button','field_61757281285eb'),(324206,42585,'hero_actions','1'),(324207,42585,'_hero_actions','field_61757270285ea'),(324208,42585,'hero_style','default'),(324209,42585,'_hero_style','field_62051d9dc5324'),(324210,42585,'_thumbnail_id','39256'),(324211,42585,'__thumbnail_id','field_617570855ddaf'),(324212,42585,'hero_image_pos_x','right'),(324213,42585,'_hero_image_pos_x','field_62ec3d05390bb'),(324214,42585,'hero_image_pos_y','top'),(324215,42585,'_hero_image_pos_y','field_62ec3d05390bc'),(324216,42585,'hero_image_pos',''),(324217,42585,'_hero_image_pos','field_62ec3d05390ba'),(324218,42585,'fft_hide_from_listings','0'),(324219,42585,'_fft_hide_from_listings','field_61f1320446ab2'),(324220,42585,'fft_page_format','default'),(324221,42585,'_fft_page_format','field_61ae213f1f218'),(324222,42585,'fft_hide_nav','0'),(324223,42585,'_fft_hide_nav','field_635bd5e43527c'),(324224,42585,'fft_hide_header_call_to_action','0'),(324225,42585,'_fft_hide_header_call_to_action','field_635bd6723527d'),(324226,42585,'fft_page_sitemap','0'),(324227,42585,'_fft_page_sitemap','field_61af9b34e8181'),(324228,42585,'blocks','a:11:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:10:\"split_5050\";i:9;s:18:\"testimonial_slider\";i:10;s:10:\"accordions\";}'),(324229,42585,'_blocks','field_6176696113096'),(324230,42585,'blocks_0_acfe_flexible_toggle',''),(324231,42585,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(324232,42585,'blocks_0_acfe_flexible_layout_title','Template'),(324233,42585,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(324234,42585,'blocks_0_template','39087'),(324235,42585,'_blocks_0_template','field_617bdd570fe01'),(324236,42585,'blocks_9_acfe_flexible_toggle',''),(324237,42585,'_blocks_9_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(324238,42585,'blocks_9_acfe_flexible_layout_title','Testimonial Slider'),(324239,42585,'_blocks_9_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(324240,42585,'blocks_9_testimonial_slider_content_title',''),(324241,42585,'_blocks_9_testimonial_slider_content_title','field_617c033b39a60'),(324242,42585,'blocks_9_testimonial_slider_content_heading','Testimonials'),(324243,42585,'_blocks_9_testimonial_slider_content_heading','field_617c033b39a61'),(324244,42585,'blocks_9_testimonial_slider_content_text',''),(324245,42585,'_blocks_9_testimonial_slider_content_text','field_617c033b39a62'),(324246,42585,'blocks_9_testimonial_slider_content_actions',''),(324247,42585,'_blocks_9_testimonial_slider_content_actions','field_617c033b39a63'),(324248,42585,'blocks_9_testimonial_slider_content',''),(324249,42585,'_blocks_9_testimonial_slider_content','field_617c033b39a5f'),(324250,42585,'blocks_9_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(324251,42585,'_blocks_9_testimonial_slider_items','field_61812eaeb20eb'),(324252,42585,'blocks_9_testimonial_slider_ambassador_bool','0'),(324253,42585,'_blocks_9_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(324254,42585,'blocks_10_acfe_flexible_toggle',''),(324255,42585,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(324256,42585,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(324257,42585,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(324258,42585,'blocks_10_options_theme','#ffffff'),(324259,42585,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(324260,42585,'blocks_10_options_state','0'),(324261,42585,'_blocks_10_options_state','field_6239fcb7508c5'),(324262,42585,'blocks_10_options',''),(324263,42585,'_blocks_10_options','field_6177e2991ac44'),(324264,42585,'blocks_10_content_title',''),(324265,42585,'_blocks_10_content_title','field_64d237e8bb1e2'),(324266,42585,'blocks_10_content_heading','Frequently asked questions '),(324267,42585,'_blocks_10_content_heading','field_64d237e8bb1e3'),(324268,42585,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(324269,42585,'_blocks_10_content_text','field_64d237e8bb1e4'),(324270,42585,'blocks_10_content_actions',''),(324271,42585,'_blocks_10_content_actions','field_64d237e8bb1e5'),(324272,42585,'blocks_10_content_align','left'),(324273,42585,'_blocks_10_content_align','field_64d2443e6b6aa'),(324274,42585,'blocks_10_content',''),(324275,42585,'_blocks_10_content','field_64d237e8bb1e1'),(324276,42585,'blocks_10_accordion_content','faqs'),(324277,42585,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(324278,42585,'blocks_10_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(324279,42585,'_blocks_10_accordion_faqs_select','field_6177e5f3633dd'),(324280,42585,'blocks_10_actions',''),(324281,42585,'_blocks_10_actions','field_61a746a817f7a'),(324282,42585,'blocks_1_acfe_flexible_toggle',''),(324283,42585,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(324284,42585,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(324285,42585,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(324286,42585,'blocks_1_options_theme','#ffffff'),(324287,42585,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(324288,42585,'blocks_1_options_reverse','0'),(324289,42585,'_blocks_1_options_reverse','field_61768049bb8ac'),(324290,42585,'blocks_1_options',''),(324291,42585,'_blocks_1_options','field_617682517c334'),(324292,42585,'blocks_1_split_5050_image','39257'),(324293,42585,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(324294,42585,'blocks_1_split_5050_video',''),(324295,42585,'_blocks_1_split_5050_video','field_6239f3160848a'),(324296,42585,'blocks_1_split_5050_content_title',''),(324297,42585,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(324298,42585,'blocks_1_split_5050_content_heading','Why it’s relevant to you as a S&C coach'),(324299,42585,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(324300,42585,'blocks_1_split_5050_content_text','Athletes are always working to optimise performance and minimise the risk of, or impact from injury.\r\n\r\nWe will give you the ability to assess, monitor and progress both for you and others to improve performance. We’ll also show you how to test, identify and take preventative measures for risk reduction.'),(324301,42585,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(324302,42585,'blocks_1_split_5050_content_actions',''),(324303,42585,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(324304,42585,'blocks_1_split_5050_content',''),(324305,42585,'_blocks_1_split_5050_content','field_61767afceb8ba'),(324306,42585,'blocks_4_acfe_flexible_toggle',''),(324307,42585,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(324308,42585,'blocks_4_acfe_flexible_layout_title','Tabs'),(324309,42585,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(324310,42585,'blocks_4_options_theme','#ffffff'),(324311,42585,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(324312,42585,'blocks_4_options',''),(324313,42585,'_blocks_4_options','field_6177cfcd8140f'),(324314,42585,'blocks_4_tabs_0_tab_label','What will I learn ?'),(324315,42585,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(324316,42585,'blocks_4_tabs_0_tab_content_title',''),(324317,42585,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(324318,42585,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(324319,42585,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(324320,42585,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics Workshop</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics Workshop</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(324321,42585,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(324322,42585,'blocks_4_tabs_0_tab_content_actions',''),(324323,42585,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(324324,42585,'blocks_4_tabs_0_tab_content',''),(324325,42585,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(324326,42585,'blocks_4_tabs_0_tab_image','39076'),(324327,42585,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(324328,42585,'blocks_4_tabs_1_tab_label','What do I need ?'),(324329,42585,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(324330,42585,'blocks_4_tabs_1_tab_content_title',''),(324331,42585,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(324332,42585,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(324333,42585,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(324334,42585,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(324335,42585,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(324336,42585,'blocks_4_tabs_1_tab_content_actions',''),(324337,42585,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(324338,42585,'blocks_4_tabs_1_tab_content',''),(324339,42585,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(324340,42585,'blocks_4_tabs_1_tab_image','39223'),(324341,42585,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(324342,42585,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(324343,42585,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(324344,42585,'blocks_4_tabs_2_tab_content_title',''),(324345,42585,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(324346,42585,'blocks_4_tabs_2_tab_content_heading','Locations'),(324347,42585,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(324348,42585,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Edinburgh</li>\r\n</ul>'),(324349,42585,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(324350,42585,'blocks_4_tabs_2_tab_content_actions',''),(324351,42585,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(324352,42585,'blocks_4_tabs_2_tab_content',''),(324353,42585,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(324354,42585,'blocks_4_tabs_2_tab_image','39224'),(324355,42585,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(324356,42585,'blocks_4_tabs','3'),(324357,42585,'_blocks_4_tabs','field_6177cff281419'),(324358,42585,'blocks_5_acfe_flexible_toggle',''),(324359,42585,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(324360,42585,'blocks_5_acfe_flexible_layout_title','Text Block'),(324361,42585,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(324362,42585,'blocks_5_options_theme','#b61234'),(324363,42585,'_blocks_5_options_theme','field_6176830e2ad17'),(324364,42585,'blocks_5_options',''),(324365,42585,'_blocks_5_options','field_6176830e2ad16'),(324366,42585,'blocks_5_text_block_heading','Fees & Funding Options'),(324367,42585,'_blocks_5_text_block_heading','field_617669d413097'),(324368,42585,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(324369,42585,'_blocks_5_text_block_content','field_617669ec13098'),(324370,42585,'blocks_6_acfe_flexible_toggle',''),(324371,42585,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(324372,42585,'blocks_6_acfe_flexible_layout_title','Icons'),(324373,42585,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(324374,42585,'blocks_6_options_theme','#b61234'),(324375,42585,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(324376,42585,'blocks_6_options_format','row'),(324377,42585,'_blocks_6_options_format','field_64bfde9a90690'),(324378,42585,'blocks_6_options',''),(324379,42585,'_blocks_6_options','field_64bfdd9b90684'),(324380,42585,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(324381,42585,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(324382,42585,'blocks_6_icon_row_items_0_label','Pay in Full'),(324383,42585,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(324384,42585,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(324385,42585,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(324386,42585,'blocks_6_icon_row_items_1_icon','finance.svg'),(324387,42585,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(324388,42585,'blocks_6_icon_row_items_1_label','0% finance'),(324389,42585,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(324390,42585,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(324391,42585,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(324392,42585,'blocks_6_icon_row_items_2_icon','deposit.svg'),(324393,42585,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(324394,42585,'blocks_6_icon_row_items_2_label','Deposit & balance'),(324395,42585,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(324396,42585,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(324397,42585,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(324398,42585,'blocks_6_icon_row_items','3'),(324399,42585,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(324400,42585,'blocks_7_acfe_flexible_toggle',''),(324401,42585,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(324402,42585,'blocks_7_acfe_flexible_layout_title','Steps'),(324403,42585,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(324404,42585,'blocks_7_row_content_title',''),(324405,42585,'_blocks_7_row_content_title','field_64888cd1e26e0'),(324406,42585,'blocks_7_row_content_heading','Benefits of training with us'),(324407,42585,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(324408,42585,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(324409,42585,'_blocks_7_row_content_text','field_64888ce2e26e2'),(324410,42585,'blocks_7_row_content_actions',''),(324411,42585,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(324412,42585,'blocks_7_row_content',''),(324413,42585,'_blocks_7_row_content','field_64888cb0e26df'),(324414,42585,'blocks_7_steps_0_icon','progression.svg'),(324415,42585,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(324416,42585,'blocks_7_steps_0_title','Attract new clients'),(324417,42585,'_blocks_7_steps_0_title','field_64888d94e26e7'),(324418,42585,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(324419,42585,'_blocks_7_steps_0_text','field_64888d99e26e8'),(324420,42585,'blocks_7_steps_1_icon','support.svg'),(324421,42585,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(324422,42585,'blocks_7_steps_1_title','Lifetime Learning Promise'),(324423,42585,'_blocks_7_steps_1_title','field_64888d94e26e7'),(324424,42585,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(324425,42585,'_blocks_7_steps_1_text','field_64888d99e26e8'),(324426,42585,'blocks_7_steps_2_icon','qualification.svg'),(324427,42585,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(324428,42585,'blocks_7_steps_2_title','Evidence based hands on learning'),(324429,42585,'_blocks_7_steps_2_title','field_64888d94e26e7'),(324430,42585,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You will learn how to test and screen, and learn methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(324431,42585,'_blocks_7_steps_2_text','field_64888d99e26e8'),(324432,42585,'blocks_7_steps_3_icon','leaders.svg'),(324433,42585,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(324434,42585,'blocks_7_steps_3_title','Stand out from the crowd'),(324435,42585,'_blocks_7_steps_3_title','field_64888d94e26e7'),(324436,42585,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(324437,42585,'_blocks_7_steps_3_text','field_64888d99e26e8'),(324438,42585,'blocks_7_steps','4'),(324439,42585,'_blocks_7_steps','field_64888d44e26e5'),(324440,42585,'blocks_2_acfe_flexible_toggle',''),(324441,42585,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(324442,42585,'blocks_2_acfe_flexible_layout_title','Form'),(324443,42585,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(324444,42585,'blocks_2_row_content_format','standard'),(324445,42585,'_blocks_2_row_content_format','field_6481ead962881'),(324446,42585,'blocks_2_row_content_title',''),(324447,42585,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(324448,42585,'blocks_2_row_content_heading','Enquire Today'),(324449,42585,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(324450,42585,'blocks_2_row_content_text','You\'ll have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(324451,42585,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(324452,42585,'blocks_2_row_content_actions',''),(324453,42585,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(324454,42585,'blocks_2_row_content',''),(324455,42585,'_blocks_2_row_content','field_61a0f5f5b3db0'),(324456,42585,'blocks_2_row_form','40394'),(324457,42585,'_blocks_2_row_form','field_61a4ff2c0b08e'),(324458,42585,'blocks_2_row_form_button_label',''),(324459,42585,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(324460,42585,'blocks_3_acfe_flexible_toggle','1'),(324461,42585,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(324462,42585,'blocks_3_acfe_flexible_layout_title','Video'),(324463,42585,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(324464,42585,'blocks_3_size','large'),(324465,42585,'_blocks_3_size','field_6487038f297c1'),(324466,42585,'blocks_3_row_content_title',''),(324467,42585,'_blocks_3_row_content_title','field_64870132a865d'),(324468,42585,'blocks_3_row_content_heading',''),(324469,42585,'_blocks_3_row_content_heading','field_64870142a865e'),(324470,42585,'blocks_3_row_content_text',''),(324471,42585,'_blocks_3_row_content_text','field_64870148a865f'),(324472,42585,'blocks_3_row_content',''),(324473,42585,'_blocks_3_row_content','field_6487008ba865c'),(324474,42585,'blocks_3_video_src',''),(324475,42585,'_blocks_3_video_src','field_6193c4a98ec07'),(324476,42585,'blocks_3_video_thumbnail',''),(324477,42585,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(324478,42585,'blocks_8_acfe_flexible_toggle',''),(324479,42585,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(324480,42585,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(324481,42585,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(324482,42585,'blocks_8_options_theme','#f5f5f5'),(324483,42585,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(324484,42585,'blocks_8_options_reverse','0'),(324485,42585,'_blocks_8_options_reverse','field_61768049bb8ac'),(324486,42585,'blocks_8_options',''),(324487,42585,'_blocks_8_options','field_617682517c334'),(324488,42585,'blocks_8_split_5050_image','40920'),(324489,42585,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(324490,42585,'blocks_8_split_5050_video',''),(324491,42585,'_blocks_8_split_5050_video','field_6239f3160848a'),(324492,42585,'blocks_8_split_5050_content_title',''),(324493,42585,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(324494,42585,'blocks_8_split_5050_content_heading','Why study this course ?'),(324495,42585,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(324496,42585,'blocks_8_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(324497,42585,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(324498,42585,'blocks_8_split_5050_content_actions',''),(324499,42585,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(324500,42585,'blocks_8_split_5050_content',''),(324501,42585,'_blocks_8_split_5050_content','field_61767afceb8ba'),(324502,42586,'hide_hero','0'),(324503,42586,'_hide_hero','field_66a2380fcda39'),(324504,42586,'hero_title','How to Become a Biomechanics Coach'),(324505,42586,'_hero_title','field_617571fe285e8'),(324506,42586,'hero_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(324507,42586,'_hero_text','field_6175723c285e9'),(324508,42586,'hero_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39263-3\";s:6:\"target\";s:0:\"\";}'),(324509,42586,'_hero_actions_0_button','field_61757281285eb'),(324510,42586,'hero_actions','1'),(324511,42586,'_hero_actions','field_61757270285ea'),(324512,42586,'hero_style','default'),(324513,42586,'_hero_style','field_62051d9dc5324'),(324514,42586,'_thumbnail_id','39454'),(324515,42586,'__thumbnail_id','field_617570855ddaf'),(324516,42586,'hero_image_pos_x','right'),(324517,42586,'_hero_image_pos_x','field_62ec3d05390bb'),(324518,42586,'hero_image_pos_y','top'),(324519,42586,'_hero_image_pos_y','field_62ec3d05390bc'),(324520,42586,'hero_image_pos',''),(324521,42586,'_hero_image_pos','field_62ec3d05390ba'),(324522,42586,'fft_hide_from_listings','0'),(324523,42586,'_fft_hide_from_listings','field_61f1320446ab2'),(324524,42586,'fft_page_format','default'),(324525,42586,'_fft_page_format','field_61ae213f1f218'),(324526,42586,'fft_hide_nav','0'),(324527,42586,'_fft_hide_nav','field_635bd5e43527c'),(324528,42586,'fft_hide_header_call_to_action','0'),(324529,42586,'_fft_hide_header_call_to_action','field_635bd6723527d'),(324530,42586,'fft_page_sitemap','0'),(324531,42586,'_fft_page_sitemap','field_61af9b34e8181'),(324532,42586,'blocks','a:12:{i:0;s:8:\"template\";i:1;s:10:\"split_5050\";i:2;s:4:\"form\";i:3;s:5:\"video\";i:4;s:4:\"tabs\";i:5;s:10:\"text_block\";i:6;s:5:\"icons\";i:7;s:5:\"steps\";i:8;s:16:\"standard_content\";i:9;s:10:\"split_5050\";i:10;s:18:\"testimonial_slider\";i:11;s:10:\"accordions\";}'),(324533,42586,'_blocks','field_6176696113096'),(324534,42586,'blocks_0_acfe_flexible_toggle',''),(324535,42586,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(324536,42586,'blocks_0_acfe_flexible_layout_title','Template'),(324537,42586,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(324538,42586,'blocks_0_template','39087'),(324539,42586,'_blocks_0_template','field_617bdd570fe01'),(324540,42586,'blocks_8_acfe_flexible_toggle','1'),(324541,42586,'_blocks_8_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(324542,42586,'blocks_8_acfe_flexible_layout_title','Standard/Editorial Content'),(324543,42586,'_blocks_8_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(324544,42586,'blocks_8_content','<h2 style=\"text-align: center;\"><strong>Why study this course ?</strong></h2>\r\n<ul>\r\n 	<li style=\"text-align: center;\">Videos, webinars, and guest lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li style=\"text-align: center;\">CPD training and career development courses</li>\r\n 	<li style=\"text-align: center;\">Connections with hundreds of other members in our student community</li>\r\n 	<li style=\"text-align: center;\">Mentor support from the Master Trainer Team</li>\r\n 	<li style=\"text-align: center;\">Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(324545,42586,'_blocks_8_content','field_6193c9b5eac84'),(324546,42586,'blocks_1_acfe_flexible_toggle',''),(324547,42586,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(324548,42586,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(324549,42586,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(324550,42586,'blocks_1_options_theme','#ffffff'),(324551,42586,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(324552,42586,'blocks_1_options_reverse','0'),(324553,42586,'_blocks_1_options_reverse','field_61768049bb8ac'),(324554,42586,'blocks_1_options',''),(324555,42586,'_blocks_1_options','field_617682517c334'),(324556,42586,'blocks_1_split_5050_image','39623'),(324557,42586,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(324558,42586,'blocks_1_split_5050_video',''),(324559,42586,'_blocks_1_split_5050_video','field_6239f3160848a'),(324560,42586,'blocks_1_split_5050_content_title',''),(324561,42586,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(324562,42586,'blocks_1_split_5050_content_heading','Why it’s Relevant to You.'),(324563,42586,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(324564,42586,'blocks_1_split_5050_content_text','You are here because you know what you want: to advance your career as a Biomechanics Coach or to add this valuable skill set to your toolkit. As a Biomechanics Coach, you will use a system designed to mitigate the injury risks faced by athletes and clients. This system, grounded in evidence-based screening and PREhabilitation exercise programmes, is both modular and applicable across various forms of exercise prescriptions.\r\n\r\nOur approach empowers us to understand the root causes of common modern ailments within our population. The Diploma in Biomechanics Coaching™ is crafted to help you achieve this goal, enabling you to train clients for optimal performance while minimising injury risks.\r\n\r\nWith a significant portion of the UK population still unmotivated to engage in regular exercise, addressing the role of pain and discomfort in this reluctance is crucial. This diploma will equip you with the knowledge and skills to make a meaningful impact in this area.'),(324565,42586,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(324566,42586,'blocks_1_split_5050_content_actions',''),(324567,42586,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(324568,42586,'blocks_1_split_5050_content',''),(324569,42586,'_blocks_1_split_5050_content','field_61767afceb8ba'),(324570,42586,'blocks_4_acfe_flexible_toggle',''),(324571,42586,'_blocks_4_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(324572,42586,'blocks_4_acfe_flexible_layout_title','Tabs'),(324573,42586,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(324574,42586,'blocks_4_options_theme','#ffffff'),(324575,42586,'_blocks_4_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(324576,42586,'blocks_4_options',''),(324577,42586,'_blocks_4_options','field_6177cfcd8140f'),(324578,42586,'blocks_4_tabs_0_tab_label','What will I learn ?'),(324579,42586,'_blocks_4_tabs_0_tab_label','field_6177d0068141a'),(324580,42586,'blocks_4_tabs_0_tab_content_title',''),(324581,42586,'_blocks_4_tabs_0_tab_content_title','field_6177cfcd81414'),(324582,42586,'blocks_4_tabs_0_tab_content_heading','What you’ll learn'),(324583,42586,'_blocks_4_tabs_0_tab_content_heading','field_6177cfcd81415'),(324584,42586,'blocks_4_tabs_0_tab_content_text','Included in your training are various elements and online modules that ensure you are well-equipped to identify risk and optimise performance amongst clients.\r\n<ul>\r\n 	<li>Introduction to Intrinsic Biomechanics</li>\r\n 	<li>Pelvic &amp; Spine Biomechanics</li>\r\n 	<li>Shoulder, Knee &amp; Foot Biomechanics</li>\r\n 	<li>Back Health Online Learning</li>\r\n</ul>'),(324585,42586,'_blocks_4_tabs_0_tab_content_text','field_6177cfcd81416'),(324586,42586,'blocks_4_tabs_0_tab_content_actions',''),(324587,42586,'_blocks_4_tabs_0_tab_content_actions','field_6177cfcd81417'),(324588,42586,'blocks_4_tabs_0_tab_content',''),(324589,42586,'_blocks_4_tabs_0_tab_content','field_6177cfcd81413'),(324590,42586,'blocks_4_tabs_0_tab_image','39076'),(324591,42586,'_blocks_4_tabs_0_tab_image','field_6177cfcd81412'),(324592,42586,'blocks_4_tabs_1_tab_label','What do I need ?'),(324593,42586,'_blocks_4_tabs_1_tab_label','field_6177d0068141a'),(324594,42586,'blocks_4_tabs_1_tab_content_title',''),(324595,42586,'_blocks_4_tabs_1_tab_content_title','field_6177cfcd81414'),(324596,42586,'blocks_4_tabs_1_tab_content_heading','Entry requirements'),(324597,42586,'_blocks_4_tabs_1_tab_content_heading','field_6177cfcd81415'),(324598,42586,'blocks_4_tabs_1_tab_content_text','In order to study for this Biomechanics Coaching Diploma you will need at least one of the below as the minimum requirement;\r\n<ul>\r\n 	<li>Personal Trainer Qualification</li>\r\n 	<li>Pilates Qualification</li>\r\n 	<li>Sports Massage Qualification</li>\r\n 	<li>Yoga Instructor Qualification</li>\r\n</ul>'),(324599,42586,'_blocks_4_tabs_1_tab_content_text','field_6177cfcd81416'),(324600,42586,'blocks_4_tabs_1_tab_content_actions',''),(324601,42586,'_blocks_4_tabs_1_tab_content_actions','field_6177cfcd81417'),(324602,42586,'blocks_4_tabs_1_tab_content',''),(324603,42586,'_blocks_4_tabs_1_tab_content','field_6177cfcd81413'),(324604,42586,'blocks_4_tabs_1_tab_image','41183'),(324605,42586,'_blocks_4_tabs_1_tab_image','field_6177cfcd81412'),(324606,42586,'blocks_4_tabs_2_tab_label','Where can I learn ?'),(324607,42586,'_blocks_4_tabs_2_tab_label','field_6177d0068141a'),(324608,42586,'blocks_4_tabs_2_tab_content_title',''),(324609,42586,'_blocks_4_tabs_2_tab_content_title','field_6177cfcd81414'),(324610,42586,'blocks_4_tabs_2_tab_content_heading','Locations'),(324611,42586,'_blocks_4_tabs_2_tab_content_heading','field_6177cfcd81415'),(324612,42586,'blocks_4_tabs_2_tab_content_text','All venues are professional environments.\r\n\r\nThe venues booked in these locations are respected for their links to the sports and fitness world, such as the Platinum Training Institute at Queens Belfast University and the North London School of Sports Massage.\r\n\r\nYou can be assured that all venues are professional environments set up to provide great insight into how you can work as a Biomechanics Coach.\r\n\r\nBiomechanics Education delivers professional practical workshops in venues currently in four locations:\r\n<ul>\r\n 	<li>London</li>\r\n 	<li>Manchester</li>\r\n 	<li>Belfast</li>\r\n 	<li>Scotland</li>\r\n</ul>'),(324613,42586,'_blocks_4_tabs_2_tab_content_text','field_6177cfcd81416'),(324614,42586,'blocks_4_tabs_2_tab_content_actions',''),(324615,42586,'_blocks_4_tabs_2_tab_content_actions','field_6177cfcd81417'),(324616,42586,'blocks_4_tabs_2_tab_content',''),(324617,42586,'_blocks_4_tabs_2_tab_content','field_6177cfcd81413'),(324618,42586,'blocks_4_tabs_2_tab_image','39224'),(324619,42586,'_blocks_4_tabs_2_tab_image','field_6177cfcd81412'),(324620,42586,'blocks_4_tabs','3'),(324621,42586,'_blocks_4_tabs','field_6177cff281419'),(324622,42586,'blocks_5_acfe_flexible_toggle',''),(324623,42586,'_blocks_5_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(324624,42586,'blocks_5_acfe_flexible_layout_title','Text Block'),(324625,42586,'_blocks_5_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(324626,42586,'blocks_5_options_theme','#b61234'),(324627,42586,'_blocks_5_options_theme','field_6176830e2ad17'),(324628,42586,'blocks_5_options',''),(324629,42586,'_blocks_5_options','field_6176830e2ad16'),(324630,42586,'blocks_5_text_block_heading','Fees & Funding Options'),(324631,42586,'_blocks_5_text_block_heading','field_617669d413097'),(324632,42586,'blocks_5_text_block_content','When it comes to funding your course, there are multiple options available. We believe that world-class training should be accessible to everyone no matter their financial circumstances.\r\n\r\nTherefore, we have developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.'),(324633,42586,'_blocks_5_text_block_content','field_617669ec13098'),(324634,42586,'blocks_6_acfe_flexible_toggle',''),(324635,42586,'_blocks_6_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(324636,42586,'blocks_6_acfe_flexible_layout_title','Icons'),(324637,42586,'_blocks_6_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(324638,42586,'blocks_6_options_theme','#b61234'),(324639,42586,'_blocks_6_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(324640,42586,'blocks_6_options_format','row'),(324641,42586,'_blocks_6_options_format','field_64bfde9a90690'),(324642,42586,'blocks_6_options',''),(324643,42586,'_blocks_6_options','field_64bfdd9b90684'),(324644,42586,'blocks_6_icon_row_items_0_icon','payment-plans.svg'),(324645,42586,'_blocks_6_icon_row_items_0_icon','field_64bfdd9b9068d'),(324646,42586,'blocks_6_icon_row_items_0_label','Pay in Full'),(324647,42586,'_blocks_6_icon_row_items_0_label','field_64bfdd9c9068e'),(324648,42586,'blocks_6_icon_row_items_0_text','Pay the full amount for your training in one whole lump sum, nice and simple. '),(324649,42586,'_blocks_6_icon_row_items_0_text','field_64bfdd9c9068f'),(324650,42586,'blocks_6_icon_row_items_1_icon','finance.svg'),(324651,42586,'_blocks_6_icon_row_items_1_icon','field_64bfdd9b9068d'),(324652,42586,'blocks_6_icon_row_items_1_label','0% finance'),(324653,42586,'_blocks_6_icon_row_items_1_label','field_64bfdd9c9068e'),(324654,42586,'blocks_6_icon_row_items_1_text','Put down a deposit and then spread the cost of your training with 0% finance '),(324655,42586,'_blocks_6_icon_row_items_1_text','field_64bfdd9c9068f'),(324656,42586,'blocks_6_icon_row_items_2_icon','deposit.svg'),(324657,42586,'_blocks_6_icon_row_items_2_icon','field_64bfdd9b9068d'),(324658,42586,'blocks_6_icon_row_items_2_label','Deposit & balance'),(324659,42586,'_blocks_6_icon_row_items_2_label','field_64bfdd9c9068e'),(324660,42586,'blocks_6_icon_row_items_2_text','Put down a deposit and then pay the remaining balance in one lump sum at a later date.'),(324661,42586,'_blocks_6_icon_row_items_2_text','field_64bfdd9c9068f'),(324662,42586,'blocks_6_icon_row_items','3'),(324663,42586,'_blocks_6_icon_row_items','field_64bfdd9b9068c'),(324664,42586,'blocks_7_acfe_flexible_toggle',''),(324665,42586,'_blocks_7_acfe_flexible_toggle','field_layout_64888ca5e26d9_toggle'),(324666,42586,'blocks_7_acfe_flexible_layout_title','Steps'),(324667,42586,'_blocks_7_acfe_flexible_layout_title','field_layout_64888ca5e26d9_title'),(324668,42586,'blocks_7_row_content_title',''),(324669,42586,'_blocks_7_row_content_title','field_64888cd1e26e0'),(324670,42586,'blocks_7_row_content_heading','Benefits of training with us'),(324671,42586,'_blocks_7_row_content_heading','field_64888cd9e26e1'),(324672,42586,'blocks_7_row_content_text','<img class=\"alignnone size-large wp-image-39217\" src=\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image-1200x800.jpg\" alt=\"\" width=\"1200\" height=\"800\" />'),(324673,42586,'_blocks_7_row_content_text','field_64888ce2e26e2'),(324674,42586,'blocks_7_row_content_actions',''),(324675,42586,'_blocks_7_row_content_actions','field_64888cf5e26e3'),(324676,42586,'blocks_7_row_content',''),(324677,42586,'_blocks_7_row_content','field_64888cb0e26df'),(324678,42586,'blocks_7_steps_0_icon','progression.svg'),(324679,42586,'_blocks_7_steps_0_icon','field_64888d53e26e6'),(324680,42586,'blocks_7_steps_0_title','Earning potential'),(324681,42586,'_blocks_7_steps_0_title','field_64888d94e26e7'),(324682,42586,'blocks_7_steps_0_text','Attract new clients and retain current clients and increase your rates using the knowledge and skills gained on the course. The Diploma in Biomechanics Coaching will give you a system to help you find new clients and work in new ways with existing clients.'),(324683,42586,'_blocks_7_steps_0_text','field_64888d99e26e8'),(324684,42586,'blocks_7_steps_1_icon','support.svg'),(324685,42586,'_blocks_7_steps_1_icon','field_64888d53e26e6'),(324686,42586,'blocks_7_steps_1_title','Lifetime Learning Promise'),(324687,42586,'_blocks_7_steps_1_title','field_64888d94e26e7'),(324688,42586,'blocks_7_steps_1_text','Our courses are made for you, and we can say that with confidence. We do not restrict learners to rigid timeframes to complete their learning, charge for your extensions* or rush you through.'),(324689,42586,'_blocks_7_steps_1_text','field_64888d99e26e8'),(324690,42586,'blocks_7_steps_2_icon','qualification.svg'),(324691,42586,'_blocks_7_steps_2_icon','field_64888d53e26e6'),(324692,42586,'blocks_7_steps_2_title','Evidence based hands on learning'),(324693,42586,'_blocks_7_steps_2_title','field_64888d94e26e7'),(324694,42586,'blocks_7_steps_2_text','Developed with over 20 years of research from over 4,000 participants, our course is proven, tired, and tested. You learn tests, screens, and methods to determine what is happening within the body during movement with our blended learning experience of online learning, and face-to-face workshops and assessments.'),(324695,42586,'_blocks_7_steps_2_text','field_64888d99e26e8'),(324696,42586,'blocks_7_steps_3_icon','leaders.svg'),(324697,42586,'_blocks_7_steps_3_icon','field_64888d53e26e6'),(324698,42586,'blocks_7_steps_3_title','Stand out from the crowd'),(324699,42586,'_blocks_7_steps_3_title','field_64888d94e26e7'),(324700,42586,'blocks_7_steps_3_text','You’ll gain knowledge and skills on the courses that will differentiate you from others. Create “Wow” moments with clients and discover the ‘missing link’ in helping clients address the real causes of physical limitations and discomfort.'),(324701,42586,'_blocks_7_steps_3_text','field_64888d99e26e8'),(324702,42586,'blocks_7_steps','4'),(324703,42586,'_blocks_7_steps','field_64888d44e26e5'),(324704,42586,'blocks_2_acfe_flexible_toggle',''),(324705,42586,'_blocks_2_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(324706,42586,'blocks_2_acfe_flexible_layout_title','Form'),(324707,42586,'_blocks_2_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(324708,42586,'blocks_2_row_content_format','standard'),(324709,42586,'_blocks_2_row_content_format','field_6481ead962881'),(324710,42586,'blocks_2_row_content_title','Ready to get started?'),(324711,42586,'_blocks_2_row_content_title','field_61a0f5f5b3db1'),(324712,42586,'blocks_2_row_content_heading','Enquire Today!'),(324713,42586,'_blocks_2_row_content_heading','field_61a0f5f5b3db2'),(324714,42586,'blocks_2_row_content_text','When you fill out the form you\'ll receive a full digital price guide and have the opportunity to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice about your options and help you get started.'),(324715,42586,'_blocks_2_row_content_text','field_61a0f5f5b3db3'),(324716,42586,'blocks_2_row_content_actions',''),(324717,42586,'_blocks_2_row_content_actions','field_61a0f5f5b3db4'),(324718,42586,'blocks_2_row_content',''),(324719,42586,'_blocks_2_row_content','field_61a0f5f5b3db0'),(324720,42586,'blocks_2_row_form','40417'),(324721,42586,'_blocks_2_row_form','field_61a4ff2c0b08e'),(324722,42586,'blocks_2_row_form_button_label',''),(324723,42586,'_blocks_2_row_form_button_label','field_61e12cf6fe412'),(324724,42586,'blocks_3_acfe_flexible_toggle',''),(324725,42586,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(324726,42586,'blocks_3_acfe_flexible_layout_title','Video'),(324727,42586,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(324728,42586,'blocks_3_size','large'),(324729,42586,'_blocks_3_size','field_6487038f297c1'),(324730,42586,'blocks_3_row_content_title',''),(324731,42586,'_blocks_3_row_content_title','field_64870132a865d'),(324732,42586,'blocks_3_row_content_heading',''),(324733,42586,'_blocks_3_row_content_heading','field_64870142a865e'),(324734,42586,'blocks_3_row_content_text',''),(324735,42586,'_blocks_3_row_content_text','field_64870148a865f'),(324736,42586,'blocks_3_row_content',''),(324737,42586,'_blocks_3_row_content','field_6487008ba865c'),(324738,42586,'blocks_3_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog&t=42s'),(324739,42586,'_blocks_3_video_src','field_6193c4a98ec07'),(324740,42586,'blocks_3_video_thumbnail',''),(324741,42586,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(324742,42586,'blocks_9_acfe_flexible_toggle',''),(324743,42586,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(324744,42586,'blocks_9_acfe_flexible_layout_title','50/50 Split'),(324745,42586,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(324746,42586,'blocks_9_options_theme','#f5f5f5'),(324747,42586,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(324748,42586,'blocks_9_options_reverse','0'),(324749,42586,'_blocks_9_options_reverse','field_61768049bb8ac'),(324750,42586,'blocks_9_options',''),(324751,42586,'_blocks_9_options','field_617682517c334'),(324752,42586,'blocks_9_split_5050_image','41307'),(324753,42586,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(324754,42586,'blocks_9_split_5050_video',''),(324755,42586,'_blocks_9_split_5050_video','field_6239f3160848a'),(324756,42586,'blocks_9_split_5050_content_title',''),(324757,42586,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(324758,42586,'blocks_9_split_5050_content_heading','Why study this course ?'),(324759,42586,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(324760,42586,'blocks_9_split_5050_content_text','<ul>\r\n 	<li>Videos, webinars, and lectures by leaders in the field of movement, training, business, therapy, and intrinsic biomechanics</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Connections with hundreds of other members in our student community</li>\r\n 	<li>Mentor support from the Master Trainer Team</li>\r\n 	<li>Become a registered Biomechanics Coach with recognition on the Find A Coach map locator, meaning your business can be found easily once you gain your diploma, all hosted by Biomechanics Education.</li>\r\n</ul>'),(324761,42586,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(324762,42586,'blocks_9_split_5050_content_actions',''),(324763,42586,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(324764,42586,'blocks_9_split_5050_content',''),(324765,42586,'_blocks_9_split_5050_content','field_61767afceb8ba'),(324766,42586,'blocks_10_acfe_flexible_toggle',''),(324767,42586,'_blocks_10_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(324768,42586,'blocks_10_acfe_flexible_layout_title','Testimonial Slider'),(324769,42586,'_blocks_10_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(324770,42586,'blocks_10_testimonial_slider_content_title',''),(324771,42586,'_blocks_10_testimonial_slider_content_title','field_617c033b39a60'),(324772,42586,'blocks_10_testimonial_slider_content_heading','Testimonials'),(324773,42586,'_blocks_10_testimonial_slider_content_heading','field_617c033b39a61'),(324774,42586,'blocks_10_testimonial_slider_content_text',''),(324775,42586,'_blocks_10_testimonial_slider_content_text','field_617c033b39a62'),(324776,42586,'blocks_10_testimonial_slider_content_actions',''),(324777,42586,'_blocks_10_testimonial_slider_content_actions','field_617c033b39a63'),(324778,42586,'blocks_10_testimonial_slider_content',''),(324779,42586,'_blocks_10_testimonial_slider_content','field_617c033b39a5f'),(324780,42586,'blocks_10_testimonial_slider_items','a:3:{i:0;s:5:\"39168\";i:1;s:5:\"38964\";i:2;s:5:\"38965\";}'),(324781,42586,'_blocks_10_testimonial_slider_items','field_61812eaeb20eb'),(324782,42586,'blocks_10_testimonial_slider_ambassador_bool','0'),(324783,42586,'_blocks_10_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(324784,42586,'blocks_11_acfe_flexible_toggle',''),(324785,42586,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(324786,42586,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(324787,42586,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(324788,42586,'blocks_11_options_theme','#ffffff'),(324789,42586,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(324790,42586,'blocks_11_options_state','0'),(324791,42586,'_blocks_11_options_state','field_6239fcb7508c5'),(324792,42586,'blocks_11_options',''),(324793,42586,'_blocks_11_options','field_6177e2991ac44'),(324794,42586,'blocks_11_content_title',''),(324795,42586,'_blocks_11_content_title','field_64d237e8bb1e2'),(324796,42586,'blocks_11_content_heading','Frequently asked questions '),(324797,42586,'_blocks_11_content_heading','field_64d237e8bb1e3'),(324798,42586,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: <a href=\"tel: 020 3841 6151\">020 3841 6151</a>'),(324799,42586,'_blocks_11_content_text','field_64d237e8bb1e4'),(324800,42586,'blocks_11_content_actions',''),(324801,42586,'_blocks_11_content_actions','field_64d237e8bb1e5'),(324802,42586,'blocks_11_content_align','left'),(324803,42586,'_blocks_11_content_align','field_64d2443e6b6aa'),(324804,42586,'blocks_11_content',''),(324805,42586,'_blocks_11_content','field_64d237e8bb1e1'),(324806,42586,'blocks_11_accordion_content','faqs'),(324807,42586,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(324808,42586,'blocks_11_accordion_faqs_select','a:14:{i:0;s:5:\"39014\";i:1;s:5:\"39015\";i:2;s:5:\"39016\";i:3;s:5:\"39017\";i:4;s:5:\"39018\";i:5;s:5:\"39019\";i:6;s:5:\"39020\";i:7;s:5:\"39021\";i:8;s:5:\"39022\";i:9;s:5:\"39023\";i:10;s:5:\"39024\";i:11;s:5:\"39025\";i:12;s:5:\"39026\";i:13;s:5:\"39027\";}'),(324809,42586,'_blocks_11_accordion_faqs_select','field_6177e5f3633dd'),(324810,42586,'blocks_11_actions',''),(324811,42586,'_blocks_11_actions','field_61a746a817f7a'),(324812,42589,'hide_hero','0'),(324813,42589,'_hide_hero','field_66a2380fcda39'),(324814,42589,'hero_title',''),(324815,42589,'_hero_title','field_617571fe285e8'),(324816,42589,'hero_text',''),(324817,42589,'_hero_text','field_6175723c285e9'),(324818,42589,'hero_actions',''),(324819,42589,'_hero_actions','field_61757270285ea'),(324820,42589,'hero_style','default'),(324821,42589,'_hero_style','field_62051d9dc5324'),(324822,42589,'_thumbnail_id','40818'),(324823,42589,'__thumbnail_id','field_617570855ddaf'),(324824,42589,'hero_image_pos_x','right'),(324825,42589,'_hero_image_pos_x','field_62ec3d05390bb'),(324826,42589,'hero_image_pos_y','top'),(324827,42589,'_hero_image_pos_y','field_62ec3d05390bc'),(324828,42589,'hero_image_pos',''),(324829,42589,'_hero_image_pos','field_62ec3d05390ba'),(324830,42589,'fft_hide_from_listings','0'),(324831,42589,'_fft_hide_from_listings','field_61f1320446ab2'),(324832,42589,'fft_page_format','default'),(324833,42589,'_fft_page_format','field_61ae213f1f218'),(324834,42589,'fft_hide_nav','0'),(324835,42589,'_fft_hide_nav','field_635bd5e43527c'),(324836,42589,'fft_hide_header_call_to_action','0'),(324837,42589,'_fft_hide_header_call_to_action','field_635bd6723527d'),(324838,42589,'fft_page_sitemap','0'),(324839,42589,'_fft_page_sitemap','field_61af9b34e8181'),(324840,42589,'blocks_0_acfe_flexible_toggle',''),(324841,42589,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(324842,42589,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(324843,42589,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(324844,42589,'blocks_0_options_theme','#ffffff'),(324845,42589,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(324846,42589,'blocks_0_options_reverse','0'),(324847,42589,'_blocks_0_options_reverse','field_61768049bb8ac'),(324848,42589,'blocks_0_options',''),(324849,42589,'_blocks_0_options','field_617682517c334'),(324850,42589,'blocks_0_split_5050_image','41527'),(324851,42589,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(324852,42589,'blocks_0_split_5050_video',''),(324853,42589,'_blocks_0_split_5050_video','field_6239f3160848a'),(324854,42589,'blocks_0_split_5050_content_title',''),(324855,42589,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(324856,42589,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(324857,42589,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(324858,42589,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you are looking to expand your professional skills or embark on a new career path, our internationally available training ensures you receive the highest standard of education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(324859,42589,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(324860,42589,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(324861,42589,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(324862,42589,'blocks_0_split_5050_content_actions','1'),(324863,42589,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(324864,42589,'blocks_0_split_5050_content',''),(324865,42589,'_blocks_0_split_5050_content','field_61767afceb8ba'),(324866,42589,'blocks_1_acfe_flexible_toggle',''),(324867,42589,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(324868,42589,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(324869,42589,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(324870,42589,'blocks_1_options_theme','#ffffff'),(324871,42589,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(324872,42589,'blocks_1_options_reverse','1'),(324873,42589,'_blocks_1_options_reverse','field_61768049bb8ac'),(324874,42589,'blocks_1_options',''),(324875,42589,'_blocks_1_options','field_617682517c334'),(324876,42589,'blocks_1_split_5050_image','41312'),(324877,42589,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(324878,42589,'blocks_1_split_5050_video',''),(324879,42589,'_blocks_1_split_5050_video','field_6239f3160848a'),(324880,42589,'blocks_1_split_5050_content_title',''),(324881,42589,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(324882,42589,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(324883,42589,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(324884,42589,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our online learning platform, our programmes provide the flexibility to suit your needs while maintaining the high standards of education Biomechanics Education is known for.'),(324885,42589,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(324886,42589,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(324887,42589,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(324888,42589,'blocks_1_split_5050_content_actions','1'),(324889,42589,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(324890,42589,'blocks_1_split_5050_content',''),(324891,42589,'_blocks_1_split_5050_content','field_61767afceb8ba'),(324892,42589,'blocks_2_acfe_flexible_toggle',''),(324893,42589,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(324894,42589,'blocks_2_acfe_flexible_layout_title','Text Block'),(324895,42589,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(324896,42589,'blocks_2_options_theme','#ffffff'),(324897,42589,'_blocks_2_options_theme','field_6176830e2ad17'),(324898,42589,'blocks_2_options',''),(324899,42589,'_blocks_2_options','field_6176830e2ad16'),(324900,42589,'blocks_2_text_block_heading','Our Popular Courses:'),(324901,42589,'_blocks_2_text_block_heading','field_617669d413097'),(324902,42589,'blocks_2_text_block_content',''),(324903,42589,'_blocks_2_text_block_content','field_617669ec13098'),(324904,42589,'blocks_3_acfe_flexible_toggle',''),(324905,42589,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(324906,42589,'blocks_3_acfe_flexible_layout_title','Cards'),(324907,42589,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(324908,42589,'blocks_3_options_theme','#ffffff'),(324909,42589,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(324910,42589,'blocks_3_options_format','carousel'),(324911,42589,'_blocks_3_options_format','field_617a7b15245b5'),(324912,42589,'blocks_3_options_style','default'),(324913,42589,'_blocks_3_options_style','field_6278ffb63484a'),(324914,42589,'blocks_3_options_cards_current_listing','0'),(324915,42589,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(324916,42589,'blocks_3_options_cards_content','selection'),(324917,42589,'_blocks_3_options_cards_content','field_617aba6122688'),(324918,42589,'blocks_3_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(324919,42589,'_blocks_3_options_cards_select_posts','field_6193f85fbaea1'),(324920,42589,'blocks_3_options',''),(324921,42589,'_blocks_3_options','field_617a7b15245b3'),(324922,42589,'blocks_4_acfe_flexible_toggle',''),(324923,42589,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(324924,42589,'blocks_4_acfe_flexible_layout_title','Quote'),(324925,42589,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(324926,42589,'blocks_4_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(324927,42589,'_blocks_4_quote_content','field_6177cdacdd67a'),(324928,42589,'blocks_4_quote_author','Alex Carter, Certified Biomechanics Coach'),(324929,42589,'_blocks_4_quote_author','field_6177cdc6dd67b'),(324930,42589,'blocks_5_acfe_flexible_toggle',''),(324931,42589,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(324932,42589,'blocks_5_acfe_flexible_layout_title','Timeline'),(324933,42589,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(324934,42589,'blocks_5_options_theme','#ffffff'),(324935,42589,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(324936,42589,'blocks_5_options',''),(324937,42589,'_blocks_5_options','field_6177de53d1195'),(324938,42589,'blocks_5_timeline_content_title',''),(324939,42589,'_blocks_5_timeline_content_title','field_6177de53d1198'),(324940,42589,'blocks_5_timeline_content_heading','Why choose Biomechanics Education'),(324941,42589,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(324942,42589,'blocks_5_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(324943,42589,'_blocks_5_timeline_content_text','field_6177de53d119a'),(324944,42589,'blocks_5_timeline_content_actions',''),(324945,42589,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(324946,42589,'blocks_5_timeline_content',''),(324947,42589,'_blocks_5_timeline_content','field_6177de53d1197'),(324948,42589,'blocks_5_timeline_items_0_title','Industry-Leading Expertise'),(324949,42589,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(324950,42589,'blocks_5_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(324951,42589,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(324952,42589,'blocks_5_timeline_items_1_title','Global Accessibility'),(324953,42589,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(324954,42589,'blocks_5_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(324955,42589,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(324956,42589,'blocks_5_timeline_items_2_title','Internationally Recognised Certification'),(324957,42589,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(324958,42589,'blocks_5_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(324959,42589,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(324960,42589,'blocks_5_timeline_items_3_title','Career Opportunities Worldwide'),(324961,42589,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(324962,42589,'blocks_5_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(324963,42589,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(324964,42589,'blocks_5_timeline_items','4'),(324965,42589,'_blocks_5_timeline_items','field_6177de53d119d'),(324966,42589,'blocks_6_acfe_flexible_toggle',''),(324967,42589,'_blocks_6_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(324968,42589,'blocks_6_acfe_flexible_layout_title','Form'),(324969,42589,'_blocks_6_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(324970,42589,'blocks_6_row_content_format','standard'),(324971,42589,'_blocks_6_row_content_format','field_6481ead962881'),(324972,42589,'blocks_6_row_content_title',''),(324973,42589,'_blocks_6_row_content_title','field_61a0f5f5b3db1'),(324974,42589,'blocks_6_row_content_heading','Contact Us Today'),(324975,42589,'_blocks_6_row_content_heading','field_61a0f5f5b3db2'),(324976,42589,'blocks_6_row_content_text','If you’re looking to expand your career in movement assessment, injury prevention, or performance coaching, Biomechanics Education offers a globally accessible pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and explore your options. You’ll also have the chance to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice to help you take the next step.'),(324977,42589,'_blocks_6_row_content_text','field_61a0f5f5b3db3'),(324978,42589,'blocks_6_row_content_actions',''),(324979,42589,'_blocks_6_row_content_actions','field_61a0f5f5b3db4'),(324980,42589,'blocks_6_row_content',''),(324981,42589,'_blocks_6_row_content','field_61a0f5f5b3db0'),(324982,42589,'blocks_6_row_form','40394'),(324983,42589,'_blocks_6_row_form','field_61a4ff2c0b08e'),(324984,42589,'blocks_6_row_form_button_label',''),(324985,42589,'_blocks_6_row_form_button_label','field_61e12cf6fe412'),(324986,42589,'blocks_7_acfe_flexible_toggle',''),(324987,42589,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(324988,42589,'blocks_7_acfe_flexible_layout_title','Accordions / FAQs'),(324989,42589,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(324990,42589,'blocks_7_options_theme','#ffffff'),(324991,42589,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(324992,42589,'blocks_7_options_state','0'),(324993,42589,'_blocks_7_options_state','field_6239fcb7508c5'),(324994,42589,'blocks_7_options',''),(324995,42589,'_blocks_7_options','field_6177e2991ac44'),(324996,42589,'blocks_7_content_title',''),(324997,42589,'_blocks_7_content_title','field_64d237e8bb1e2'),(324998,42589,'blocks_7_content_heading','FAQs'),(324999,42589,'_blocks_7_content_heading','field_64d237e8bb1e3'),(325000,42589,'blocks_7_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(325001,42589,'_blocks_7_content_text','field_64d237e8bb1e4'),(325002,42589,'blocks_7_content_actions',''),(325003,42589,'_blocks_7_content_actions','field_64d237e8bb1e5'),(325004,42589,'blocks_7_content_align','left'),(325005,42589,'_blocks_7_content_align','field_64d2443e6b6aa'),(325006,42589,'blocks_7_content',''),(325007,42589,'_blocks_7_content','field_64d237e8bb1e1'),(325008,42589,'blocks_7_accordion_content','custom'),(325009,42589,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(325010,42589,'blocks_7_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(325011,42589,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(325012,42589,'blocks_7_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(325013,42589,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(325014,42589,'blocks_7_accordion_items_1_title','Is the qualification recognised globally?'),(325015,42589,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(325016,42589,'blocks_7_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(325017,42589,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(325018,42589,'blocks_7_accordion_items_2_title','What are the study options for international students?'),(325019,42589,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(325020,42589,'blocks_7_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(325021,42589,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(325022,42589,'blocks_7_accordion_items_3_title','Who is this course suitable for?'),(325023,42589,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(325024,42589,'blocks_7_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(325025,42589,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(325026,42589,'blocks_7_accordion_items_4_title','How do I enrol and what are the payment options?'),(325027,42589,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(325028,42589,'blocks_7_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(325029,42589,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(325030,42589,'blocks_7_accordion_items','5'),(325031,42589,'_blocks_7_accordion_items','field_6177e2991ac4c'),(325032,42589,'blocks_7_actions',''),(325033,42589,'_blocks_7_actions','field_61a746a817f7a'),(325034,42589,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:4:\"form\";i:7;s:10:\"accordions\";}'),(325035,42589,'_blocks','field_6176696113096'),(325037,42633,'hide_hero','0'),(325038,42633,'_hide_hero','field_66a2380fcda39'),(325039,42633,'hero_title',''),(325040,42633,'_hero_title','field_617571fe285e8'),(325041,42633,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(325042,42633,'_hero_text','field_6175723c285e9'),(325043,42633,'hero_actions',''),(325044,42633,'_hero_actions','field_61757270285ea'),(325045,42633,'hero_style','default'),(325046,42633,'_hero_style','field_62051d9dc5324'),(325047,42633,'hero_image_pos_x','right'),(325048,42633,'_hero_image_pos_x','field_62ec3d05390bb'),(325049,42633,'hero_image_pos_y','top'),(325050,42633,'_hero_image_pos_y','field_62ec3d05390bc'),(325051,42633,'hero_image_pos',''),(325052,42633,'_hero_image_pos','field_62ec3d05390ba'),(325053,42633,'fft_hide_from_listings','0'),(325054,42633,'_fft_hide_from_listings','field_61f1320446ab2'),(325055,42633,'post_format','402'),(325056,42633,'_post_format','field_61756bfb51898'),(325057,42633,'post_author',''),(325058,42633,'_post_author','field_62ec389d22113'),(325059,42633,'post_reviewer',''),(325060,42633,'_post_reviewer','field_627140a2a9800'),(325061,42633,'post_table_of_contents','0'),(325062,42633,'_post_table_of_contents','field_65c503bc846a6'),(325063,42633,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(325064,42633,'_blocks','field_6176696113096'),(325065,42633,'_thumbnail_id','41331'),(325066,42633,'__thumbnail_id','field_617570855ddaf'),(325067,42633,'blocks_0_acfe_flexible_toggle',''),(325068,42633,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(325069,42633,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(325070,42633,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(325071,42633,'blocks_0_options_theme','#ffffff'),(325072,42633,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(325073,42633,'blocks_0_options',''),(325074,42633,'_blocks_0_options','field_6177b758246ae'),(325075,42633,'blocks_0_link_stack_content_title',''),(325076,42633,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(325077,42633,'blocks_0_link_stack_content_heading','What is MSK?'),(325078,42633,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(325079,42633,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(325080,42633,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(325081,42633,'blocks_0_link_stack_content_actions_0_button',''),(325082,42633,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(325083,42633,'blocks_0_link_stack_content_actions','1'),(325084,42633,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(325085,42633,'blocks_0_link_stack_content',''),(325086,42633,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(325087,42633,'blocks_0_link_stack_0_label','1.'),(325088,42633,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(325089,42633,'blocks_0_link_stack_0_title','Overview'),(325090,42633,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(325091,42633,'blocks_0_link_stack_0_url','#overview'),(325092,42633,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(325093,42633,'blocks_0_link_stack_1_label','2.'),(325094,42633,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(325095,42633,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(325096,42633,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(325097,42633,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(325098,42633,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(325099,42633,'blocks_0_link_stack_2_label','3.'),(325100,42633,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(325101,42633,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(325102,42633,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(325103,42633,'blocks_0_link_stack_2_url','#who-should-study-msk'),(325104,42633,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(325105,42633,'blocks_0_link_stack_3_label','4.'),(325106,42633,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(325107,42633,'blocks_0_link_stack_3_title','Common MSK Conditions'),(325108,42633,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(325109,42633,'blocks_0_link_stack_3_url','#common-msk-conditions'),(325110,42633,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(325111,42633,'blocks_0_link_stack_4_label','5.'),(325112,42633,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(325113,42633,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(325114,42633,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(325115,42633,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(325116,42633,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(325117,42633,'blocks_0_link_stack_5_label','6.'),(325118,42633,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(325119,42633,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(325120,42633,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(325121,42633,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(325122,42633,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(325123,42633,'blocks_0_link_stack','6'),(325124,42633,'_blocks_0_link_stack','field_6177b7f600cff'),(325125,42633,'blocks_1_acfe_flexible_toggle',''),(325126,42633,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325127,42633,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(325128,42633,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325129,42633,'blocks_1_options_theme','#ffffff'),(325130,42633,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(325131,42633,'blocks_1_options_reverse','0'),(325132,42633,'_blocks_1_options_reverse','field_61768049bb8ac'),(325133,42633,'blocks_1_options',''),(325134,42633,'_blocks_1_options','field_617682517c334'),(325135,42633,'blocks_1_split_5050_image','40615'),(325136,42633,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(325137,42633,'blocks_1_split_5050_video',''),(325138,42633,'_blocks_1_split_5050_video','field_6239f3160848a'),(325139,42633,'blocks_1_split_5050_content_title',''),(325140,42633,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(325141,42633,'blocks_1_split_5050_content_heading','Overview'),(325142,42633,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(325143,42633,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(325144,42633,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(325145,42633,'blocks_1_split_5050_content_actions',''),(325146,42633,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(325147,42633,'blocks_1_split_5050_content',''),(325148,42633,'_blocks_1_split_5050_content','field_61767afceb8ba'),(325149,42633,'blocks_3_acfe_flexible_toggle','1'),(325150,42633,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325151,42633,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(325152,42633,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325153,42633,'blocks_3_options_theme','#f5f5f5'),(325154,42633,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(325155,42633,'blocks_3_options_reverse','1'),(325156,42633,'_blocks_3_options_reverse','field_61768049bb8ac'),(325157,42633,'blocks_3_options',''),(325158,42633,'_blocks_3_options','field_617682517c334'),(325159,42633,'blocks_3_split_5050_image','41330'),(325160,42633,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(325161,42633,'blocks_3_split_5050_video',''),(325162,42633,'_blocks_3_split_5050_video','field_6239f3160848a'),(325163,42633,'blocks_3_split_5050_content_title',''),(325164,42633,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(325165,42633,'blocks_3_split_5050_content_heading',''),(325166,42633,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(325167,42633,'blocks_3_split_5050_content_text',''),(325168,42633,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(325169,42633,'blocks_3_split_5050_content_actions',''),(325170,42633,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(325171,42633,'blocks_3_split_5050_content',''),(325172,42633,'_blocks_3_split_5050_content','field_61767afceb8ba'),(325173,42633,'blocks_7_acfe_flexible_toggle',''),(325174,42633,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325175,42633,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(325176,42633,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325177,42633,'blocks_7_options_theme','#ffffff'),(325178,42633,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(325179,42633,'blocks_7_options_reverse','0'),(325180,42633,'_blocks_7_options_reverse','field_61768049bb8ac'),(325181,42633,'blocks_7_options',''),(325182,42633,'_blocks_7_options','field_617682517c334'),(325183,42633,'blocks_7_split_5050_image','41539'),(325184,42633,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(325185,42633,'blocks_7_split_5050_video',''),(325186,42633,'_blocks_7_split_5050_video','field_6239f3160848a'),(325187,42633,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(325188,42633,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(325189,42633,'blocks_7_split_5050_content_heading',''),(325190,42633,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(325191,42633,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(325192,42633,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(325193,42633,'blocks_7_split_5050_content_actions',''),(325194,42633,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(325195,42633,'blocks_7_split_5050_content',''),(325196,42633,'_blocks_7_split_5050_content','field_61767afceb8ba'),(325197,42633,'blocks_8_acfe_flexible_toggle',''),(325198,42633,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325199,42633,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(325200,42633,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325201,42633,'blocks_8_options_theme','#ffffff'),(325202,42633,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(325203,42633,'blocks_8_options_reverse','0'),(325204,42633,'_blocks_8_options_reverse','field_61768049bb8ac'),(325205,42633,'blocks_8_options',''),(325206,42633,'_blocks_8_options','field_617682517c334'),(325207,42633,'blocks_8_split_5050_image','41502'),(325208,42633,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(325209,42633,'blocks_8_split_5050_video',''),(325210,42633,'_blocks_8_split_5050_video','field_6239f3160848a'),(325211,42633,'blocks_8_split_5050_content_title','Educators and Researchers'),(325212,42633,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(325213,42633,'blocks_8_split_5050_content_heading',''),(325214,42633,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(325215,42633,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(325216,42633,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(325217,42633,'blocks_8_split_5050_content_actions',''),(325218,42633,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(325219,42633,'blocks_8_split_5050_content',''),(325220,42633,'_blocks_8_split_5050_content','field_61767afceb8ba'),(325221,42633,'blocks_9_acfe_flexible_toggle',''),(325222,42633,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325223,42633,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(325224,42633,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325225,42633,'blocks_9_options_theme','#ffffff'),(325226,42633,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(325227,42633,'blocks_9_options_reverse','0'),(325228,42633,'_blocks_9_options_reverse','field_61768049bb8ac'),(325229,42633,'blocks_9_options',''),(325230,42633,'_blocks_9_options','field_617682517c334'),(325231,42633,'blocks_9_split_5050_image','41506'),(325232,42633,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(325233,42633,'blocks_9_split_5050_video',''),(325234,42633,'_blocks_9_split_5050_video','field_6239f3160848a'),(325235,42633,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(325236,42633,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(325237,42633,'blocks_9_split_5050_content_heading',''),(325238,42633,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(325239,42633,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(325240,42633,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(325241,42633,'blocks_9_split_5050_content_actions',''),(325242,42633,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(325243,42633,'blocks_9_split_5050_content',''),(325244,42633,'_blocks_9_split_5050_content','field_61767afceb8ba'),(325245,42633,'blocks_13_acfe_flexible_toggle',''),(325246,42633,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325247,42633,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(325248,42633,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325249,42633,'blocks_13_options_theme','#ffffff'),(325250,42633,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(325251,42633,'blocks_13_options_reverse','1'),(325252,42633,'_blocks_13_options_reverse','field_61768049bb8ac'),(325253,42633,'blocks_13_options',''),(325254,42633,'_blocks_13_options','field_617682517c334'),(325255,42633,'blocks_13_split_5050_image','40387'),(325256,42633,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(325257,42633,'blocks_13_split_5050_video',''),(325258,42633,'_blocks_13_split_5050_video','field_6239f3160848a'),(325259,42633,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(325260,42633,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(325261,42633,'blocks_13_split_5050_content_heading',''),(325262,42633,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(325263,42633,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(325264,42633,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(325265,42633,'blocks_13_split_5050_content_actions',''),(325266,42633,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(325267,42633,'blocks_13_split_5050_content',''),(325268,42633,'_blocks_13_split_5050_content','field_61767afceb8ba'),(325269,42633,'blocks_14_acfe_flexible_toggle',''),(325270,42633,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325271,42633,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(325272,42633,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325273,42633,'blocks_14_options_theme','#ffffff'),(325274,42633,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(325275,42633,'blocks_14_options_reverse','1'),(325276,42633,'_blocks_14_options_reverse','field_61768049bb8ac'),(325277,42633,'blocks_14_options',''),(325278,42633,'_blocks_14_options','field_617682517c334'),(325279,42633,'blocks_14_split_5050_image','18856'),(325280,42633,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(325281,42633,'blocks_14_split_5050_video',''),(325282,42633,'_blocks_14_split_5050_video','field_6239f3160848a'),(325283,42633,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(325284,42633,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(325285,42633,'blocks_14_split_5050_content_heading',''),(325286,42633,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(325287,42633,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(325288,42633,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(325289,42633,'blocks_14_split_5050_content_actions',''),(325290,42633,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(325291,42633,'blocks_14_split_5050_content',''),(325292,42633,'_blocks_14_split_5050_content','field_61767afceb8ba'),(325293,42633,'blocks_19_acfe_flexible_toggle',''),(325294,42633,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(325295,42633,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(325296,42633,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(325297,42633,'blocks_19_options_theme','#ffffff'),(325298,42633,'_blocks_19_options_theme','field_6176830e2ad17'),(325299,42633,'blocks_19_options',''),(325300,42633,'_blocks_19_options','field_6176830e2ad16'),(325301,42633,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(325302,42633,'_blocks_19_text_block_heading','field_617669d413097'),(325303,42633,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(325304,42633,'_blocks_19_text_block_content','field_617669ec13098'),(325305,42633,'blocks_20_acfe_flexible_toggle',''),(325306,42633,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(325307,42633,'blocks_20_acfe_flexible_layout_title','Conclusion'),(325308,42633,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(325309,42633,'blocks_20_options_theme','#b61234'),(325310,42633,'_blocks_20_options_theme','field_6176830e2ad17'),(325311,42633,'blocks_20_options',''),(325312,42633,'_blocks_20_options','field_6176830e2ad16'),(325313,42633,'blocks_20_text_block_heading','Conclusion'),(325314,42633,'_blocks_20_text_block_heading','field_617669d413097'),(325315,42633,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(325316,42633,'_blocks_20_text_block_content','field_617669ec13098'),(325317,42633,'blocks_6_acfe_flexible_toggle',''),(325318,42633,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325319,42633,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(325320,42633,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325321,42633,'blocks_6_options_theme','#ffffff'),(325322,42633,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(325323,42633,'blocks_6_options_reverse','0'),(325324,42633,'_blocks_6_options_reverse','field_61768049bb8ac'),(325325,42633,'blocks_6_options',''),(325326,42633,'_blocks_6_options','field_617682517c334'),(325327,42633,'blocks_6_split_5050_image','41505'),(325328,42633,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(325329,42633,'blocks_6_split_5050_video',''),(325330,42633,'_blocks_6_split_5050_video','field_6239f3160848a'),(325331,42633,'blocks_6_split_5050_content_title','Current Practitioners'),(325332,42633,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(325333,42633,'blocks_6_split_5050_content_heading',''),(325334,42633,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(325335,42633,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(325336,42633,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(325337,42633,'blocks_6_split_5050_content_actions',''),(325338,42633,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(325339,42633,'blocks_6_split_5050_content',''),(325340,42633,'_blocks_6_split_5050_content','field_61767afceb8ba'),(325341,42633,'blocks_2_acfe_flexible_toggle',''),(325342,42633,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325343,42633,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(325344,42633,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325345,42633,'blocks_2_options_theme','#f5f5f5'),(325346,42633,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(325347,42633,'blocks_2_options_reverse','1'),(325348,42633,'_blocks_2_options_reverse','field_61768049bb8ac'),(325349,42633,'blocks_2_options',''),(325350,42633,'_blocks_2_options','field_617682517c334'),(325351,42633,'blocks_2_split_5050_image','40618'),(325352,42633,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(325353,42633,'blocks_2_split_5050_video',''),(325354,42633,'_blocks_2_split_5050_video','field_6239f3160848a'),(325355,42633,'blocks_2_split_5050_content_title',''),(325356,42633,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(325357,42633,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(325358,42633,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(325359,42633,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(325360,42633,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(325361,42633,'blocks_2_split_5050_content_actions',''),(325362,42633,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(325363,42633,'blocks_2_split_5050_content',''),(325364,42633,'_blocks_2_split_5050_content','field_61767afceb8ba'),(325365,42633,'blocks_4_acfe_flexible_toggle',''),(325366,42633,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(325367,42633,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(325368,42633,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(325369,42633,'blocks_4_options_theme','#ffffff'),(325370,42633,'_blocks_4_options_theme','field_6176830e2ad17'),(325371,42633,'blocks_4_options',''),(325372,42633,'_blocks_4_options','field_6176830e2ad16'),(325373,42633,'blocks_4_text_block_heading','Who Should Study MSK?'),(325374,42633,'_blocks_4_text_block_heading','field_617669d413097'),(325375,42633,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(325376,42633,'_blocks_4_text_block_content','field_617669ec13098'),(325377,42633,'blocks_5_acfe_flexible_toggle',''),(325378,42633,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325379,42633,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(325380,42633,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325381,42633,'blocks_5_options_theme','#ffffff'),(325382,42633,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(325383,42633,'blocks_5_options_reverse','0'),(325384,42633,'_blocks_5_options_reverse','field_61768049bb8ac'),(325385,42633,'blocks_5_options',''),(325386,42633,'_blocks_5_options','field_617682517c334'),(325387,42633,'blocks_5_split_5050_image','41542'),(325388,42633,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(325389,42633,'blocks_5_split_5050_video',''),(325390,42633,'_blocks_5_split_5050_video','field_6239f3160848a'),(325391,42633,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(325392,42633,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(325393,42633,'blocks_5_split_5050_content_heading',''),(325394,42633,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(325395,42633,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(325396,42633,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(325397,42633,'blocks_5_split_5050_content_actions',''),(325398,42633,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(325399,42633,'blocks_5_split_5050_content',''),(325400,42633,'_blocks_5_split_5050_content','field_61767afceb8ba'),(325401,42633,'blocks_10_acfe_flexible_toggle',''),(325402,42633,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(325403,42633,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(325404,42633,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(325405,42633,'blocks_10_options_theme','#f5f5f5'),(325406,42633,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(325407,42633,'blocks_10_options_state','0'),(325408,42633,'_blocks_10_options_state','field_6239fcb7508c5'),(325409,42633,'blocks_10_options',''),(325410,42633,'_blocks_10_options','field_6177e2991ac44'),(325411,42633,'blocks_10_content_title',''),(325412,42633,'_blocks_10_content_title','field_64d237e8bb1e2'),(325413,42633,'blocks_10_content_heading','Common MSK Conditions'),(325414,42633,'_blocks_10_content_heading','field_64d237e8bb1e3'),(325415,42633,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(325416,42633,'_blocks_10_content_text','field_64d237e8bb1e4'),(325417,42633,'blocks_10_content_actions',''),(325418,42633,'_blocks_10_content_actions','field_64d237e8bb1e5'),(325419,42633,'blocks_10_content_align','left'),(325420,42633,'_blocks_10_content_align','field_64d2443e6b6aa'),(325421,42633,'blocks_10_content',''),(325422,42633,'_blocks_10_content','field_64d237e8bb1e1'),(325423,42633,'blocks_10_accordion_content','custom'),(325424,42633,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(325425,42633,'blocks_10_accordion_items_0_title','Osteoarthritis'),(325426,42633,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(325427,42633,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(325428,42633,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(325429,42633,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(325430,42633,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(325431,42633,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(325432,42633,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(325433,42633,'blocks_10_accordion_items_2_title','Back Pain'),(325434,42633,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(325435,42633,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by muscle imbalances or prolonged inactivity.'),(325436,42633,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(325437,42633,'blocks_10_accordion_items_3_title','Osteoporosis'),(325438,42633,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(325439,42633,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(325440,42633,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(325441,42633,'blocks_10_accordion_items_4_title','Tendinitis'),(325442,42633,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(325443,42633,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(325444,42633,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(325445,42633,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(325446,42633,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(325447,42633,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(325448,42633,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(325449,42633,'blocks_10_accordion_items_6_title','Fibromyalgia'),(325450,42633,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(325451,42633,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(325452,42633,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(325453,42633,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(325454,42633,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(325455,42633,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(325456,42633,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(325457,42633,'blocks_10_accordion_items','8'),(325458,42633,'_blocks_10_accordion_items','field_6177e2991ac4c'),(325459,42633,'blocks_10_actions',''),(325460,42633,'_blocks_10_actions','field_61a746a817f7a'),(325461,42633,'blocks_11_acfe_flexible_toggle',''),(325462,42633,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(325463,42633,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(325464,42633,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(325465,42633,'blocks_11_options_theme','#ffffff'),(325466,42633,'_blocks_11_options_theme','field_6176830e2ad17'),(325467,42633,'blocks_11_options',''),(325468,42633,'_blocks_11_options','field_6176830e2ad16'),(325469,42633,'blocks_11_text_block_heading','The Importance of MSK Education'),(325470,42633,'_blocks_11_text_block_heading','field_617669d413097'),(325471,42633,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(325472,42633,'_blocks_11_text_block_content','field_617669ec13098'),(325473,42633,'blocks_12_acfe_flexible_toggle',''),(325474,42633,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325475,42633,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(325476,42633,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325477,42633,'blocks_12_options_theme','#ffffff'),(325478,42633,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(325479,42633,'blocks_12_options_reverse','1'),(325480,42633,'_blocks_12_options_reverse','field_61768049bb8ac'),(325481,42633,'blocks_12_options',''),(325482,42633,'_blocks_12_options','field_617682517c334'),(325483,42633,'blocks_12_split_5050_image','41498'),(325484,42633,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(325485,42633,'blocks_12_split_5050_video',''),(325486,42633,'_blocks_12_split_5050_video','field_6239f3160848a'),(325487,42633,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(325488,42633,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(325489,42633,'blocks_12_split_5050_content_heading',''),(325490,42633,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(325491,42633,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(325492,42633,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(325493,42633,'blocks_12_split_5050_content_actions',''),(325494,42633,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(325495,42633,'blocks_12_split_5050_content',''),(325496,42633,'_blocks_12_split_5050_content','field_61767afceb8ba'),(325497,42633,'blocks_15_acfe_flexible_toggle',''),(325498,42633,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(325499,42633,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(325500,42633,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(325501,42633,'blocks_15_options_theme','#b61234'),(325502,42633,'_blocks_15_options_theme','field_6176830e2ad17'),(325503,42633,'blocks_15_options',''),(325504,42633,'_blocks_15_options','field_6176830e2ad16'),(325505,42633,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(325506,42633,'_blocks_15_text_block_heading','field_617669d413097'),(325507,42633,'blocks_15_text_block_content',''),(325508,42633,'_blocks_15_text_block_content','field_617669ec13098'),(325509,42633,'blocks_16_acfe_flexible_toggle',''),(325510,42633,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(325511,42633,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(325512,42633,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(325513,42633,'blocks_16_options_theme','#b61234'),(325514,42633,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(325515,42633,'blocks_16_options_format','row'),(325516,42633,'_blocks_16_options_format','field_64bfde9a90690'),(325517,42633,'blocks_16_options',''),(325518,42633,'_blocks_16_options','field_64bfdd9b90684'),(325519,42633,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(325520,42633,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(325521,42633,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(325522,42633,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(325523,42633,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(325524,42633,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(325525,42633,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(325526,42633,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(325527,42633,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(325528,42633,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(325529,42633,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(325530,42633,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(325531,42633,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(325532,42633,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(325533,42633,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(325534,42633,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(325535,42633,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(325536,42633,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(325537,42633,'blocks_16_icon_row_items_3_icon','recognised.svg'),(325538,42633,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(325539,42633,'blocks_16_icon_row_items_3_label','Optimised Performance'),(325540,42633,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(325541,42633,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(325542,42633,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(325543,42633,'blocks_16_icon_row_items','4'),(325544,42633,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(325545,42633,'blocks_17_acfe_flexible_toggle',''),(325546,42633,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325547,42633,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(325548,42633,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325549,42633,'blocks_17_options_theme','#ffffff'),(325550,42633,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(325551,42633,'blocks_17_options_reverse','0'),(325552,42633,'_blocks_17_options_reverse','field_61768049bb8ac'),(325553,42633,'blocks_17_options',''),(325554,42633,'_blocks_17_options','field_617682517c334'),(325555,42633,'blocks_17_split_5050_image','41501'),(325556,42633,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(325557,42633,'blocks_17_split_5050_video',''),(325558,42633,'_blocks_17_split_5050_video','field_6239f3160848a'),(325559,42633,'blocks_17_split_5050_content_title',''),(325560,42633,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(325561,42633,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(325562,42633,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(325563,42633,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(325564,42633,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(325565,42633,'blocks_17_split_5050_content_actions',''),(325566,42633,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(325567,42633,'blocks_17_split_5050_content',''),(325568,42633,'_blocks_17_split_5050_content','field_61767afceb8ba'),(325569,42633,'blocks_18_acfe_flexible_toggle',''),(325570,42633,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(325571,42633,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(325572,42633,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(325573,42633,'blocks_18_options_theme','#ffffff'),(325574,42633,'_blocks_18_options_theme','field_6176830e2ad17'),(325575,42633,'blocks_18_options',''),(325576,42633,'_blocks_18_options','field_6176830e2ad16'),(325577,42633,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(325578,42633,'_blocks_18_text_block_heading','field_617669d413097'),(325579,42633,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(325580,42633,'_blocks_18_text_block_content','field_617669ec13098'),(325581,42633,'blocks_21_acfe_flexible_toggle',''),(325582,42633,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(325583,42633,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(325584,42633,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(325585,42633,'blocks_21_options_alignment','center'),(325586,42633,'_blocks_21_options_alignment','field_61769449f5490'),(325587,42633,'blocks_21_options',''),(325588,42633,'_blocks_21_options','field_617693e1428f0'),(325589,42633,'blocks_21_promo_panel_image','41307'),(325590,42633,'_blocks_21_promo_panel_image','field_617693e1428f3'),(325591,42633,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(325592,42633,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(325593,42633,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(325594,42633,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(325595,42633,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(325596,42633,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(325597,42633,'blocks_21_promo_panel_content_actions','1'),(325598,42633,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(325599,42633,'blocks_21_promo_panel_content',''),(325600,42633,'_blocks_21_promo_panel_content','field_617693e1428f4'),(325601,42506,'_acf_changed','1'),(325603,42634,'hide_hero','0'),(325604,42634,'_hide_hero','field_66a2380fcda39'),(325605,42634,'hero_title',''),(325606,42634,'_hero_title','field_617571fe285e8'),(325607,42634,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(325608,42634,'_hero_text','field_6175723c285e9'),(325609,42634,'hero_actions',''),(325610,42634,'_hero_actions','field_61757270285ea'),(325611,42634,'hero_style','default'),(325612,42634,'_hero_style','field_62051d9dc5324'),(325613,42634,'hero_image_pos_x','right'),(325614,42634,'_hero_image_pos_x','field_62ec3d05390bb'),(325615,42634,'hero_image_pos_y','top'),(325616,42634,'_hero_image_pos_y','field_62ec3d05390bc'),(325617,42634,'hero_image_pos',''),(325618,42634,'_hero_image_pos','field_62ec3d05390ba'),(325619,42634,'fft_hide_from_listings','0'),(325620,42634,'_fft_hide_from_listings','field_61f1320446ab2'),(325621,42634,'post_format','402'),(325622,42634,'_post_format','field_61756bfb51898'),(325623,42634,'post_author',''),(325624,42634,'_post_author','field_62ec389d22113'),(325625,42634,'post_reviewer',''),(325626,42634,'_post_reviewer','field_627140a2a9800'),(325627,42634,'post_table_of_contents','0'),(325628,42634,'_post_table_of_contents','field_65c503bc846a6'),(325629,42634,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(325630,42634,'_blocks','field_6176696113096'),(325631,42634,'_thumbnail_id','40618'),(325632,42634,'__thumbnail_id','field_617570855ddaf'),(325633,42634,'blocks_0_acfe_flexible_toggle',''),(325634,42634,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(325635,42634,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(325636,42634,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(325637,42634,'blocks_0_options_theme','#ffffff'),(325638,42634,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(325639,42634,'blocks_0_options',''),(325640,42634,'_blocks_0_options','field_6177b758246ae'),(325641,42634,'blocks_0_link_stack_content_title',''),(325642,42634,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(325643,42634,'blocks_0_link_stack_content_heading','What is MSK?'),(325644,42634,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(325645,42634,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(325646,42634,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(325647,42634,'blocks_0_link_stack_content_actions_0_button',''),(325648,42634,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(325649,42634,'blocks_0_link_stack_content_actions','1'),(325650,42634,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(325651,42634,'blocks_0_link_stack_content',''),(325652,42634,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(325653,42634,'blocks_0_link_stack_0_label','1.'),(325654,42634,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(325655,42634,'blocks_0_link_stack_0_title','Overview'),(325656,42634,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(325657,42634,'blocks_0_link_stack_0_url','#overview'),(325658,42634,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(325659,42634,'blocks_0_link_stack_1_label','2.'),(325660,42634,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(325661,42634,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(325662,42634,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(325663,42634,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(325664,42634,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(325665,42634,'blocks_0_link_stack_2_label','3.'),(325666,42634,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(325667,42634,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(325668,42634,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(325669,42634,'blocks_0_link_stack_2_url','#who-should-study-msk'),(325670,42634,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(325671,42634,'blocks_0_link_stack_3_label','4.'),(325672,42634,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(325673,42634,'blocks_0_link_stack_3_title','Common MSK Conditions'),(325674,42634,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(325675,42634,'blocks_0_link_stack_3_url','#common-msk-conditions'),(325676,42634,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(325677,42634,'blocks_0_link_stack_4_label','5.'),(325678,42634,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(325679,42634,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(325680,42634,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(325681,42634,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(325682,42634,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(325683,42634,'blocks_0_link_stack_5_label','6.'),(325684,42634,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(325685,42634,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(325686,42634,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(325687,42634,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(325688,42634,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(325689,42634,'blocks_0_link_stack','6'),(325690,42634,'_blocks_0_link_stack','field_6177b7f600cff'),(325691,42634,'blocks_1_acfe_flexible_toggle',''),(325692,42634,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325693,42634,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(325694,42634,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325695,42634,'blocks_1_options_theme','#ffffff'),(325696,42634,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(325697,42634,'blocks_1_options_reverse','0'),(325698,42634,'_blocks_1_options_reverse','field_61768049bb8ac'),(325699,42634,'blocks_1_options',''),(325700,42634,'_blocks_1_options','field_617682517c334'),(325701,42634,'blocks_1_split_5050_image','40615'),(325702,42634,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(325703,42634,'blocks_1_split_5050_video',''),(325704,42634,'_blocks_1_split_5050_video','field_6239f3160848a'),(325705,42634,'blocks_1_split_5050_content_title',''),(325706,42634,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(325707,42634,'blocks_1_split_5050_content_heading','Overview'),(325708,42634,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(325709,42634,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(325710,42634,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(325711,42634,'blocks_1_split_5050_content_actions',''),(325712,42634,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(325713,42634,'blocks_1_split_5050_content',''),(325714,42634,'_blocks_1_split_5050_content','field_61767afceb8ba'),(325715,42634,'blocks_3_acfe_flexible_toggle','1'),(325716,42634,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325717,42634,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(325718,42634,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325719,42634,'blocks_3_options_theme','#f5f5f5'),(325720,42634,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(325721,42634,'blocks_3_options_reverse','1'),(325722,42634,'_blocks_3_options_reverse','field_61768049bb8ac'),(325723,42634,'blocks_3_options',''),(325724,42634,'_blocks_3_options','field_617682517c334'),(325725,42634,'blocks_3_split_5050_image','41330'),(325726,42634,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(325727,42634,'blocks_3_split_5050_video',''),(325728,42634,'_blocks_3_split_5050_video','field_6239f3160848a'),(325729,42634,'blocks_3_split_5050_content_title',''),(325730,42634,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(325731,42634,'blocks_3_split_5050_content_heading',''),(325732,42634,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(325733,42634,'blocks_3_split_5050_content_text',''),(325734,42634,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(325735,42634,'blocks_3_split_5050_content_actions',''),(325736,42634,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(325737,42634,'blocks_3_split_5050_content',''),(325738,42634,'_blocks_3_split_5050_content','field_61767afceb8ba'),(325739,42634,'blocks_7_acfe_flexible_toggle',''),(325740,42634,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325741,42634,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(325742,42634,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325743,42634,'blocks_7_options_theme','#ffffff'),(325744,42634,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(325745,42634,'blocks_7_options_reverse','0'),(325746,42634,'_blocks_7_options_reverse','field_61768049bb8ac'),(325747,42634,'blocks_7_options',''),(325748,42634,'_blocks_7_options','field_617682517c334'),(325749,42634,'blocks_7_split_5050_image','41539'),(325750,42634,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(325751,42634,'blocks_7_split_5050_video',''),(325752,42634,'_blocks_7_split_5050_video','field_6239f3160848a'),(325753,42634,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(325754,42634,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(325755,42634,'blocks_7_split_5050_content_heading',''),(325756,42634,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(325757,42634,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(325758,42634,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(325759,42634,'blocks_7_split_5050_content_actions',''),(325760,42634,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(325761,42634,'blocks_7_split_5050_content',''),(325762,42634,'_blocks_7_split_5050_content','field_61767afceb8ba'),(325763,42634,'blocks_8_acfe_flexible_toggle',''),(325764,42634,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325765,42634,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(325766,42634,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325767,42634,'blocks_8_options_theme','#ffffff'),(325768,42634,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(325769,42634,'blocks_8_options_reverse','0'),(325770,42634,'_blocks_8_options_reverse','field_61768049bb8ac'),(325771,42634,'blocks_8_options',''),(325772,42634,'_blocks_8_options','field_617682517c334'),(325773,42634,'blocks_8_split_5050_image','41502'),(325774,42634,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(325775,42634,'blocks_8_split_5050_video',''),(325776,42634,'_blocks_8_split_5050_video','field_6239f3160848a'),(325777,42634,'blocks_8_split_5050_content_title','Educators and Researchers'),(325778,42634,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(325779,42634,'blocks_8_split_5050_content_heading',''),(325780,42634,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(325781,42634,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(325782,42634,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(325783,42634,'blocks_8_split_5050_content_actions',''),(325784,42634,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(325785,42634,'blocks_8_split_5050_content',''),(325786,42634,'_blocks_8_split_5050_content','field_61767afceb8ba'),(325787,42634,'blocks_9_acfe_flexible_toggle',''),(325788,42634,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325789,42634,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(325790,42634,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325791,42634,'blocks_9_options_theme','#ffffff'),(325792,42634,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(325793,42634,'blocks_9_options_reverse','0'),(325794,42634,'_blocks_9_options_reverse','field_61768049bb8ac'),(325795,42634,'blocks_9_options',''),(325796,42634,'_blocks_9_options','field_617682517c334'),(325797,42634,'blocks_9_split_5050_image','41506'),(325798,42634,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(325799,42634,'blocks_9_split_5050_video',''),(325800,42634,'_blocks_9_split_5050_video','field_6239f3160848a'),(325801,42634,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(325802,42634,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(325803,42634,'blocks_9_split_5050_content_heading',''),(325804,42634,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(325805,42634,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(325806,42634,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(325807,42634,'blocks_9_split_5050_content_actions',''),(325808,42634,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(325809,42634,'blocks_9_split_5050_content',''),(325810,42634,'_blocks_9_split_5050_content','field_61767afceb8ba'),(325811,42634,'blocks_13_acfe_flexible_toggle',''),(325812,42634,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325813,42634,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(325814,42634,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325815,42634,'blocks_13_options_theme','#ffffff'),(325816,42634,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(325817,42634,'blocks_13_options_reverse','1'),(325818,42634,'_blocks_13_options_reverse','field_61768049bb8ac'),(325819,42634,'blocks_13_options',''),(325820,42634,'_blocks_13_options','field_617682517c334'),(325821,42634,'blocks_13_split_5050_image','40387'),(325822,42634,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(325823,42634,'blocks_13_split_5050_video',''),(325824,42634,'_blocks_13_split_5050_video','field_6239f3160848a'),(325825,42634,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(325826,42634,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(325827,42634,'blocks_13_split_5050_content_heading',''),(325828,42634,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(325829,42634,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(325830,42634,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(325831,42634,'blocks_13_split_5050_content_actions',''),(325832,42634,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(325833,42634,'blocks_13_split_5050_content',''),(325834,42634,'_blocks_13_split_5050_content','field_61767afceb8ba'),(325835,42634,'blocks_14_acfe_flexible_toggle',''),(325836,42634,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325837,42634,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(325838,42634,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325839,42634,'blocks_14_options_theme','#ffffff'),(325840,42634,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(325841,42634,'blocks_14_options_reverse','1'),(325842,42634,'_blocks_14_options_reverse','field_61768049bb8ac'),(325843,42634,'blocks_14_options',''),(325844,42634,'_blocks_14_options','field_617682517c334'),(325845,42634,'blocks_14_split_5050_image','18856'),(325846,42634,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(325847,42634,'blocks_14_split_5050_video',''),(325848,42634,'_blocks_14_split_5050_video','field_6239f3160848a'),(325849,42634,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(325850,42634,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(325851,42634,'blocks_14_split_5050_content_heading',''),(325852,42634,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(325853,42634,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(325854,42634,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(325855,42634,'blocks_14_split_5050_content_actions',''),(325856,42634,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(325857,42634,'blocks_14_split_5050_content',''),(325858,42634,'_blocks_14_split_5050_content','field_61767afceb8ba'),(325859,42634,'blocks_19_acfe_flexible_toggle',''),(325860,42634,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(325861,42634,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(325862,42634,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(325863,42634,'blocks_19_options_theme','#ffffff'),(325864,42634,'_blocks_19_options_theme','field_6176830e2ad17'),(325865,42634,'blocks_19_options',''),(325866,42634,'_blocks_19_options','field_6176830e2ad16'),(325867,42634,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(325868,42634,'_blocks_19_text_block_heading','field_617669d413097'),(325869,42634,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(325870,42634,'_blocks_19_text_block_content','field_617669ec13098'),(325871,42634,'blocks_20_acfe_flexible_toggle',''),(325872,42634,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(325873,42634,'blocks_20_acfe_flexible_layout_title','Conclusion'),(325874,42634,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(325875,42634,'blocks_20_options_theme','#b61234'),(325876,42634,'_blocks_20_options_theme','field_6176830e2ad17'),(325877,42634,'blocks_20_options',''),(325878,42634,'_blocks_20_options','field_6176830e2ad16'),(325879,42634,'blocks_20_text_block_heading','Conclusion'),(325880,42634,'_blocks_20_text_block_heading','field_617669d413097'),(325881,42634,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(325882,42634,'_blocks_20_text_block_content','field_617669ec13098'),(325883,42634,'blocks_6_acfe_flexible_toggle',''),(325884,42634,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325885,42634,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(325886,42634,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325887,42634,'blocks_6_options_theme','#ffffff'),(325888,42634,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(325889,42634,'blocks_6_options_reverse','0'),(325890,42634,'_blocks_6_options_reverse','field_61768049bb8ac'),(325891,42634,'blocks_6_options',''),(325892,42634,'_blocks_6_options','field_617682517c334'),(325893,42634,'blocks_6_split_5050_image','41505'),(325894,42634,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(325895,42634,'blocks_6_split_5050_video',''),(325896,42634,'_blocks_6_split_5050_video','field_6239f3160848a'),(325897,42634,'blocks_6_split_5050_content_title','Current Practitioners'),(325898,42634,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(325899,42634,'blocks_6_split_5050_content_heading',''),(325900,42634,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(325901,42634,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(325902,42634,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(325903,42634,'blocks_6_split_5050_content_actions',''),(325904,42634,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(325905,42634,'blocks_6_split_5050_content',''),(325906,42634,'_blocks_6_split_5050_content','field_61767afceb8ba'),(325907,42634,'blocks_2_acfe_flexible_toggle',''),(325908,42634,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325909,42634,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(325910,42634,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325911,42634,'blocks_2_options_theme','#f5f5f5'),(325912,42634,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(325913,42634,'blocks_2_options_reverse','1'),(325914,42634,'_blocks_2_options_reverse','field_61768049bb8ac'),(325915,42634,'blocks_2_options',''),(325916,42634,'_blocks_2_options','field_617682517c334'),(325917,42634,'blocks_2_split_5050_image','41307'),(325918,42634,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(325919,42634,'blocks_2_split_5050_video',''),(325920,42634,'_blocks_2_split_5050_video','field_6239f3160848a'),(325921,42634,'blocks_2_split_5050_content_title',''),(325922,42634,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(325923,42634,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(325924,42634,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(325925,42634,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(325926,42634,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(325927,42634,'blocks_2_split_5050_content_actions',''),(325928,42634,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(325929,42634,'blocks_2_split_5050_content',''),(325930,42634,'_blocks_2_split_5050_content','field_61767afceb8ba'),(325931,42634,'blocks_4_acfe_flexible_toggle',''),(325932,42634,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(325933,42634,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(325934,42634,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(325935,42634,'blocks_4_options_theme','#ffffff'),(325936,42634,'_blocks_4_options_theme','field_6176830e2ad17'),(325937,42634,'blocks_4_options',''),(325938,42634,'_blocks_4_options','field_6176830e2ad16'),(325939,42634,'blocks_4_text_block_heading','Who Should Study MSK?'),(325940,42634,'_blocks_4_text_block_heading','field_617669d413097'),(325941,42634,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(325942,42634,'_blocks_4_text_block_content','field_617669ec13098'),(325943,42634,'blocks_5_acfe_flexible_toggle',''),(325944,42634,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(325945,42634,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(325946,42634,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(325947,42634,'blocks_5_options_theme','#ffffff'),(325948,42634,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(325949,42634,'blocks_5_options_reverse','0'),(325950,42634,'_blocks_5_options_reverse','field_61768049bb8ac'),(325951,42634,'blocks_5_options',''),(325952,42634,'_blocks_5_options','field_617682517c334'),(325953,42634,'blocks_5_split_5050_image','41542'),(325954,42634,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(325955,42634,'blocks_5_split_5050_video',''),(325956,42634,'_blocks_5_split_5050_video','field_6239f3160848a'),(325957,42634,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(325958,42634,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(325959,42634,'blocks_5_split_5050_content_heading',''),(325960,42634,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(325961,42634,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(325962,42634,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(325963,42634,'blocks_5_split_5050_content_actions',''),(325964,42634,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(325965,42634,'blocks_5_split_5050_content',''),(325966,42634,'_blocks_5_split_5050_content','field_61767afceb8ba'),(325967,42634,'blocks_10_acfe_flexible_toggle',''),(325968,42634,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(325969,42634,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(325970,42634,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(325971,42634,'blocks_10_options_theme','#f5f5f5'),(325972,42634,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(325973,42634,'blocks_10_options_state','0'),(325974,42634,'_blocks_10_options_state','field_6239fcb7508c5'),(325975,42634,'blocks_10_options',''),(325976,42634,'_blocks_10_options','field_6177e2991ac44'),(325977,42634,'blocks_10_content_title',''),(325978,42634,'_blocks_10_content_title','field_64d237e8bb1e2'),(325979,42634,'blocks_10_content_heading','Common MSK Conditions'),(325980,42634,'_blocks_10_content_heading','field_64d237e8bb1e3'),(325981,42634,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(325982,42634,'_blocks_10_content_text','field_64d237e8bb1e4'),(325983,42634,'blocks_10_content_actions',''),(325984,42634,'_blocks_10_content_actions','field_64d237e8bb1e5'),(325985,42634,'blocks_10_content_align','left'),(325986,42634,'_blocks_10_content_align','field_64d2443e6b6aa'),(325987,42634,'blocks_10_content',''),(325988,42634,'_blocks_10_content','field_64d237e8bb1e1'),(325989,42634,'blocks_10_accordion_content','custom'),(325990,42634,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(325991,42634,'blocks_10_accordion_items_0_title','Osteoarthritis'),(325992,42634,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(325993,42634,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(325994,42634,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(325995,42634,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(325996,42634,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(325997,42634,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(325998,42634,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(325999,42634,'blocks_10_accordion_items_2_title','Back Pain'),(326000,42634,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(326001,42634,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by muscle imbalances or prolonged inactivity.'),(326002,42634,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(326003,42634,'blocks_10_accordion_items_3_title','Osteoporosis'),(326004,42634,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(326005,42634,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(326006,42634,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(326007,42634,'blocks_10_accordion_items_4_title','Tendinitis'),(326008,42634,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(326009,42634,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(326010,42634,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(326011,42634,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(326012,42634,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(326013,42634,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(326014,42634,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(326015,42634,'blocks_10_accordion_items_6_title','Fibromyalgia'),(326016,42634,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(326017,42634,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(326018,42634,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(326019,42634,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(326020,42634,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(326021,42634,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(326022,42634,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(326023,42634,'blocks_10_accordion_items','8'),(326024,42634,'_blocks_10_accordion_items','field_6177e2991ac4c'),(326025,42634,'blocks_10_actions',''),(326026,42634,'_blocks_10_actions','field_61a746a817f7a'),(326027,42634,'blocks_11_acfe_flexible_toggle',''),(326028,42634,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(326029,42634,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(326030,42634,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(326031,42634,'blocks_11_options_theme','#ffffff'),(326032,42634,'_blocks_11_options_theme','field_6176830e2ad17'),(326033,42634,'blocks_11_options',''),(326034,42634,'_blocks_11_options','field_6176830e2ad16'),(326035,42634,'blocks_11_text_block_heading','The Importance of MSK Education'),(326036,42634,'_blocks_11_text_block_heading','field_617669d413097'),(326037,42634,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(326038,42634,'_blocks_11_text_block_content','field_617669ec13098'),(326039,42634,'blocks_12_acfe_flexible_toggle',''),(326040,42634,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326041,42634,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(326042,42634,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326043,42634,'blocks_12_options_theme','#ffffff'),(326044,42634,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(326045,42634,'blocks_12_options_reverse','1'),(326046,42634,'_blocks_12_options_reverse','field_61768049bb8ac'),(326047,42634,'blocks_12_options',''),(326048,42634,'_blocks_12_options','field_617682517c334'),(326049,42634,'blocks_12_split_5050_image','41498'),(326050,42634,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(326051,42634,'blocks_12_split_5050_video',''),(326052,42634,'_blocks_12_split_5050_video','field_6239f3160848a'),(326053,42634,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(326054,42634,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(326055,42634,'blocks_12_split_5050_content_heading',''),(326056,42634,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(326057,42634,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(326058,42634,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(326059,42634,'blocks_12_split_5050_content_actions',''),(326060,42634,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(326061,42634,'blocks_12_split_5050_content',''),(326062,42634,'_blocks_12_split_5050_content','field_61767afceb8ba'),(326063,42634,'blocks_15_acfe_flexible_toggle',''),(326064,42634,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(326065,42634,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(326066,42634,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(326067,42634,'blocks_15_options_theme','#b61234'),(326068,42634,'_blocks_15_options_theme','field_6176830e2ad17'),(326069,42634,'blocks_15_options',''),(326070,42634,'_blocks_15_options','field_6176830e2ad16'),(326071,42634,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(326072,42634,'_blocks_15_text_block_heading','field_617669d413097'),(326073,42634,'blocks_15_text_block_content',''),(326074,42634,'_blocks_15_text_block_content','field_617669ec13098'),(326075,42634,'blocks_16_acfe_flexible_toggle',''),(326076,42634,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(326077,42634,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(326078,42634,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(326079,42634,'blocks_16_options_theme','#b61234'),(326080,42634,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(326081,42634,'blocks_16_options_format','row'),(326082,42634,'_blocks_16_options_format','field_64bfde9a90690'),(326083,42634,'blocks_16_options',''),(326084,42634,'_blocks_16_options','field_64bfdd9b90684'),(326085,42634,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(326086,42634,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(326087,42634,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(326088,42634,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(326089,42634,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(326090,42634,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(326091,42634,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(326092,42634,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(326093,42634,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(326094,42634,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(326095,42634,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(326096,42634,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(326097,42634,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(326098,42634,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(326099,42634,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(326100,42634,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(326101,42634,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(326102,42634,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(326103,42634,'blocks_16_icon_row_items_3_icon','recognised.svg'),(326104,42634,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(326105,42634,'blocks_16_icon_row_items_3_label','Optimised Performance'),(326106,42634,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(326107,42634,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(326108,42634,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(326109,42634,'blocks_16_icon_row_items','4'),(326110,42634,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(326111,42634,'blocks_17_acfe_flexible_toggle',''),(326112,42634,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326113,42634,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(326114,42634,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326115,42634,'blocks_17_options_theme','#ffffff'),(326116,42634,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(326117,42634,'blocks_17_options_reverse','0'),(326118,42634,'_blocks_17_options_reverse','field_61768049bb8ac'),(326119,42634,'blocks_17_options',''),(326120,42634,'_blocks_17_options','field_617682517c334'),(326121,42634,'blocks_17_split_5050_image','41501'),(326122,42634,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(326123,42634,'blocks_17_split_5050_video',''),(326124,42634,'_blocks_17_split_5050_video','field_6239f3160848a'),(326125,42634,'blocks_17_split_5050_content_title',''),(326126,42634,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(326127,42634,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(326128,42634,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(326129,42634,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(326130,42634,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(326131,42634,'blocks_17_split_5050_content_actions',''),(326132,42634,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(326133,42634,'blocks_17_split_5050_content',''),(326134,42634,'_blocks_17_split_5050_content','field_61767afceb8ba'),(326135,42634,'blocks_18_acfe_flexible_toggle',''),(326136,42634,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(326137,42634,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(326138,42634,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(326139,42634,'blocks_18_options_theme','#ffffff'),(326140,42634,'_blocks_18_options_theme','field_6176830e2ad17'),(326141,42634,'blocks_18_options',''),(326142,42634,'_blocks_18_options','field_6176830e2ad16'),(326143,42634,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(326144,42634,'_blocks_18_text_block_heading','field_617669d413097'),(326145,42634,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(326146,42634,'_blocks_18_text_block_content','field_617669ec13098'),(326147,42634,'blocks_21_acfe_flexible_toggle',''),(326148,42634,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(326149,42634,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(326150,42634,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(326151,42634,'blocks_21_options_alignment','center'),(326152,42634,'_blocks_21_options_alignment','field_61769449f5490'),(326153,42634,'blocks_21_options',''),(326154,42634,'_blocks_21_options','field_617693e1428f0'),(326155,42634,'blocks_21_promo_panel_image','41307'),(326156,42634,'_blocks_21_promo_panel_image','field_617693e1428f3'),(326157,42634,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(326158,42634,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(326159,42634,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(326160,42634,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(326161,42634,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(326162,42634,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(326163,42634,'blocks_21_promo_panel_content_actions','1'),(326164,42634,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(326165,42634,'blocks_21_promo_panel_content',''),(326166,42634,'_blocks_21_promo_panel_content','field_617693e1428f4'),(326167,42635,'_edit_lock','1744195091:17'),(326168,42635,'_edit_last','18'),(326169,42635,'hide_hero','0'),(326170,42635,'_hide_hero','field_66a2380fcda39'),(326171,42635,'hero_title',''),(326172,42635,'_hero_title','field_617571fe285e8'),(326173,42635,'hero_text','Find the right biomechanics course to match your career goals, enhance your expertise, and advance your future in movement science.'),(326174,42635,'_hero_text','field_6175723c285e9'),(326175,42635,'hero_actions',''),(326176,42635,'_hero_actions','field_61757270285ea'),(326177,42635,'hero_style','default'),(326178,42635,'_hero_style','field_62051d9dc5324'),(326179,42635,'__thumbnail_id','field_617570855ddaf'),(326180,42635,'hero_image_pos_x','right'),(326181,42635,'_hero_image_pos_x','field_62ec3d05390bb'),(326182,42635,'hero_image_pos_y','top'),(326183,42635,'_hero_image_pos_y','field_62ec3d05390bc'),(326184,42635,'hero_image_pos',''),(326185,42635,'_hero_image_pos','field_62ec3d05390ba'),(326186,42635,'fft_hide_from_listings','0'),(326187,42635,'_fft_hide_from_listings','field_61f1320446ab2'),(326188,42635,'post_format','402'),(326189,42635,'_post_format','field_61756bfb51898'),(326190,42635,'post_author',''),(326191,42635,'_post_author','field_62ec389d22113'),(326192,42635,'post_reviewer',''),(326193,42635,'_post_reviewer','field_627140a2a9800'),(326194,42635,'post_table_of_contents','0'),(326195,42635,'_post_table_of_contents','field_65c503bc846a6'),(326196,42635,'blocks','a:24:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:13:\"step_timeline\";i:16;s:10:\"text_block\";i:17;s:10:\"split_5050\";i:18;s:10:\"split_5050\";i:19;s:10:\"split_5050\";i:20;s:10:\"text_block\";i:21;s:5:\"icons\";i:22;s:10:\"split_5050\";i:23;s:11:\"promo_panel\";}'),(326197,42635,'_blocks','field_6176696113096'),(326198,42635,'_yoast_wpseo_primary_category','5'),(326199,42635,'_yoast_wpseo_primary_blog-format',''),(326200,42635,'_yoast_wpseo_inclusive_language_score','90'),(326201,42635,'_yoast_wpseo_estimated-reading-time-minutes','1'),(326202,42635,'_thumbnail_id','42680'),(326203,42635,'blocks_0_acfe_flexible_toggle',''),(326204,42635,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(326205,42635,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(326206,42635,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(326207,42635,'blocks_0_options_theme','#ffffff'),(326208,42635,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(326209,42635,'blocks_0_options',''),(326210,42635,'_blocks_0_options','field_6177b758246ae'),(326211,42635,'blocks_0_link_stack_content_title',''),(326212,42635,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(326213,42635,'blocks_0_link_stack_content_heading','Introduction'),(326214,42635,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(326215,42635,'blocks_0_link_stack_content_text','This guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(326216,42635,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(326217,42635,'blocks_0_link_stack_content_actions_0_button',''),(326218,42635,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(326219,42635,'blocks_0_link_stack_content_actions','1'),(326220,42635,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(326221,42635,'blocks_0_link_stack_content',''),(326222,42635,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(326223,42635,'blocks_0_link_stack_0_label','1.'),(326224,42635,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(326225,42635,'blocks_0_link_stack_0_title','Overview'),(326226,42635,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(326227,42635,'blocks_0_link_stack_0_url','#overview'),(326228,42635,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(326229,42635,'blocks_0_link_stack_1_label','2.'),(326230,42635,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(326231,42635,'blocks_0_link_stack_1_title','Define Your Career Goals'),(326232,42635,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(326233,42635,'blocks_0_link_stack_1_url','#define-your-career-goals'),(326234,42635,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(326235,42635,'blocks_0_link_stack_2_label','3.'),(326236,42635,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(326237,42635,'blocks_0_link_stack_2_title','Evaluate Course Content'),(326238,42635,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(326239,42635,'blocks_0_link_stack_2_url','#evaluate-course-content'),(326240,42635,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(326241,42635,'blocks_0_link_stack_3_label','4.'),(326242,42635,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(326243,42635,'blocks_0_link_stack_3_title','Accreditation and Recognition'),(326244,42635,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(326245,42635,'blocks_0_link_stack_3_url','#accreditation-and-recognition'),(326246,42635,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(326247,42635,'blocks_0_link_stack_4_label','5.'),(326248,42635,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(326249,42635,'blocks_0_link_stack_4_title','Experience & Opportunities'),(326250,42635,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(326251,42635,'blocks_0_link_stack_4_url','#experience-and-opportunities'),(326252,42635,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(326253,42635,'blocks_0_link_stack_5_label','6.'),(326254,42635,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(326255,42635,'blocks_0_link_stack_5_title','Evaluate Course Format and Flexibility'),(326256,42635,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(326257,42635,'blocks_0_link_stack_5_url','#course-format'),(326258,42635,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(326259,42635,'blocks_0_link_stack','9'),(326260,42635,'_blocks_0_link_stack','field_6177b7f600cff'),(326261,42635,'blocks_1_acfe_flexible_toggle',''),(326262,42635,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326263,42635,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(326264,42635,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326265,42635,'blocks_1_options_theme','#f5f5f5'),(326266,42635,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(326267,42635,'blocks_1_options_reverse','0'),(326268,42635,'_blocks_1_options_reverse','field_61768049bb8ac'),(326269,42635,'blocks_1_options',''),(326270,42635,'_blocks_1_options','field_617682517c334'),(326271,42635,'blocks_1_split_5050_image','42678'),(326272,42635,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(326273,42635,'blocks_1_split_5050_video',''),(326274,42635,'_blocks_1_split_5050_video','field_6239f3160848a'),(326275,42635,'blocks_1_split_5050_content_title',''),(326276,42635,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(326277,42635,'blocks_1_split_5050_content_heading','Overview'),(326278,42635,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(326279,42635,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(326280,42635,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(326281,42635,'blocks_1_split_5050_content_actions',''),(326282,42635,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(326283,42635,'blocks_1_split_5050_content',''),(326284,42635,'_blocks_1_split_5050_content','field_61767afceb8ba'),(326285,42635,'blocks_3_acfe_flexible_toggle',''),(326286,42635,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326287,42635,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(326288,42635,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326289,42635,'blocks_3_options_theme','#ffffff'),(326290,42635,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(326291,42635,'blocks_3_options_reverse','1'),(326292,42635,'_blocks_3_options_reverse','field_61768049bb8ac'),(326293,42635,'blocks_3_options',''),(326294,42635,'_blocks_3_options','field_617682517c334'),(326295,42635,'blocks_3_split_5050_image','31069'),(326296,42635,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(326297,42635,'blocks_3_split_5050_video',''),(326298,42635,'_blocks_3_split_5050_video','field_6239f3160848a'),(326299,42635,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(326300,42635,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(326301,42635,'blocks_3_split_5050_content_heading',''),(326302,42635,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(326303,42635,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(326304,42635,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(326305,42635,'blocks_3_split_5050_content_actions',''),(326306,42635,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(326307,42635,'blocks_3_split_5050_content',''),(326308,42635,'_blocks_3_split_5050_content','field_61767afceb8ba'),(326381,42635,'blocks_13_acfe_flexible_toggle',''),(326382,42635,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326383,42635,'blocks_13_acfe_flexible_layout_title','Opportunities (3)'),(326384,42635,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326385,42635,'blocks_13_options_theme','#ffffff'),(326386,42635,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(326387,42635,'blocks_13_options_reverse','0'),(326388,42635,'_blocks_13_options_reverse','field_61768049bb8ac'),(326389,42635,'blocks_13_options',''),(326390,42635,'_blocks_13_options','field_617682517c334'),(326391,42635,'blocks_13_split_5050_image','40310'),(326392,42635,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(326393,42635,'blocks_13_split_5050_video',''),(326394,42635,'_blocks_13_split_5050_video','field_6239f3160848a'),(326395,42635,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(326396,42635,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(326397,42635,'blocks_13_split_5050_content_heading',''),(326398,42635,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(326399,42635,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(326400,42635,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(326401,42635,'blocks_13_split_5050_content_actions',''),(326402,42635,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(326403,42635,'blocks_13_split_5050_content',''),(326404,42635,'_blocks_13_split_5050_content','field_61767afceb8ba'),(326453,42635,'blocks_6_acfe_flexible_toggle',''),(326454,42635,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326455,42635,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(326456,42635,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326457,42635,'blocks_6_options_theme','#ffffff'),(326458,42635,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(326459,42635,'blocks_6_options_reverse','1'),(326460,42635,'_blocks_6_options_reverse','field_61768049bb8ac'),(326461,42635,'blocks_6_options',''),(326462,42635,'_blocks_6_options','field_617682517c334'),(326463,42635,'blocks_6_split_5050_image','39334'),(326464,42635,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(326465,42635,'blocks_6_split_5050_video',''),(326466,42635,'_blocks_6_split_5050_video','field_6239f3160848a'),(326467,42635,'blocks_6_split_5050_content_title','Research & Academia'),(326468,42635,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(326469,42635,'blocks_6_split_5050_content_heading',''),(326470,42635,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(326471,42635,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(326472,42635,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(326473,42635,'blocks_6_split_5050_content_actions',''),(326474,42635,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(326475,42635,'blocks_6_split_5050_content',''),(326476,42635,'_blocks_6_split_5050_content','field_61767afceb8ba'),(326513,42635,'blocks_5_acfe_flexible_toggle',''),(326514,42635,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326515,42635,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(326516,42635,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326517,42635,'blocks_5_options_theme','#ffffff'),(326518,42635,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(326519,42635,'blocks_5_options_reverse','1'),(326520,42635,'_blocks_5_options_reverse','field_61768049bb8ac'),(326521,42635,'blocks_5_options',''),(326522,42635,'_blocks_5_options','field_617682517c334'),(326523,42635,'blocks_5_split_5050_image','35755'),(326524,42635,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(326525,42635,'blocks_5_split_5050_video',''),(326526,42635,'_blocks_5_split_5050_video','field_6239f3160848a'),(326527,42635,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(326528,42635,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(326529,42635,'blocks_5_split_5050_content_heading',''),(326530,42635,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(326531,42635,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(326532,42635,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(326533,42635,'blocks_5_split_5050_content_actions',''),(326534,42635,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(326535,42635,'blocks_5_split_5050_content',''),(326536,42635,'_blocks_5_split_5050_content','field_61767afceb8ba'),(326737,42635,'_yoast_wpseo_title','%%title%% %%sep%% %%sitename%%'),(326739,42635,'_wp_old_slug','msk-education-courses-explained'),(326740,42636,'hide_hero','0'),(326741,42636,'_hide_hero','field_66a2380fcda39'),(326742,42636,'hero_title',''),(326743,42636,'_hero_title','field_617571fe285e8'),(326744,42636,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(326745,42636,'_hero_text','field_6175723c285e9'),(326746,42636,'hero_actions',''),(326747,42636,'_hero_actions','field_61757270285ea'),(326748,42636,'hero_style','default'),(326749,42636,'_hero_style','field_62051d9dc5324'),(326750,42636,'hero_image_pos_x','right'),(326751,42636,'_hero_image_pos_x','field_62ec3d05390bb'),(326752,42636,'hero_image_pos_y','top'),(326753,42636,'_hero_image_pos_y','field_62ec3d05390bc'),(326754,42636,'hero_image_pos',''),(326755,42636,'_hero_image_pos','field_62ec3d05390ba'),(326756,42636,'fft_hide_from_listings','0'),(326757,42636,'_fft_hide_from_listings','field_61f1320446ab2'),(326758,42636,'post_format','402'),(326759,42636,'_post_format','field_61756bfb51898'),(326760,42636,'post_author',''),(326761,42636,'_post_author','field_62ec389d22113'),(326762,42636,'post_reviewer',''),(326763,42636,'_post_reviewer','field_627140a2a9800'),(326764,42636,'post_table_of_contents','0'),(326765,42636,'_post_table_of_contents','field_65c503bc846a6'),(326766,42636,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(326767,42636,'_blocks','field_6176696113096'),(326768,42636,'_thumbnail_id','40618'),(326769,42636,'__thumbnail_id','field_617570855ddaf'),(326770,42636,'blocks_0_acfe_flexible_toggle',''),(326771,42636,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(326772,42636,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(326773,42636,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(326774,42636,'blocks_0_options_theme','#ffffff'),(326775,42636,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(326776,42636,'blocks_0_options',''),(326777,42636,'_blocks_0_options','field_6177b758246ae'),(326778,42636,'blocks_0_link_stack_content_title',''),(326779,42636,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(326780,42636,'blocks_0_link_stack_content_heading','Introduction'),(326781,42636,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(326782,42636,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nBiomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re looking to advance in sports science, physiotherapy, rehabilitation, or research, choosing the right biomechanics course is a critical step toward achieving your career goals. With so many courses available, it’s important to find a programme that aligns with your ambitions, provides relevant hands-on experience, and is recognised within your industry.\r\n\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.\r\n\r\n&nbsp;'),(326783,42636,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(326784,42636,'blocks_0_link_stack_content_actions_0_button',''),(326785,42636,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(326786,42636,'blocks_0_link_stack_content_actions','1'),(326787,42636,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(326788,42636,'blocks_0_link_stack_content',''),(326789,42636,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(326790,42636,'blocks_0_link_stack_0_label','1.'),(326791,42636,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(326792,42636,'blocks_0_link_stack_0_title','Overview'),(326793,42636,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(326794,42636,'blocks_0_link_stack_0_url','#overview'),(326795,42636,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(326796,42636,'blocks_0_link_stack_1_label','2.'),(326797,42636,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(326798,42636,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(326799,42636,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(326800,42636,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(326801,42636,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(326802,42636,'blocks_0_link_stack_2_label','3.'),(326803,42636,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(326804,42636,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(326805,42636,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(326806,42636,'blocks_0_link_stack_2_url','#who-should-study-msk'),(326807,42636,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(326808,42636,'blocks_0_link_stack_3_label','4.'),(326809,42636,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(326810,42636,'blocks_0_link_stack_3_title','Common MSK Conditions'),(326811,42636,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(326812,42636,'blocks_0_link_stack_3_url','#common-msk-conditions'),(326813,42636,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(326814,42636,'blocks_0_link_stack_4_label','5.'),(326815,42636,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(326816,42636,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(326817,42636,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(326818,42636,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(326819,42636,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(326820,42636,'blocks_0_link_stack_5_label','6.'),(326821,42636,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(326822,42636,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(326823,42636,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(326824,42636,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(326825,42636,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(326826,42636,'blocks_0_link_stack','6'),(326827,42636,'_blocks_0_link_stack','field_6177b7f600cff'),(326828,42636,'blocks_1_acfe_flexible_toggle',''),(326829,42636,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326830,42636,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(326831,42636,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326832,42636,'blocks_1_options_theme','#ffffff'),(326833,42636,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(326834,42636,'blocks_1_options_reverse','0'),(326835,42636,'_blocks_1_options_reverse','field_61768049bb8ac'),(326836,42636,'blocks_1_options',''),(326837,42636,'_blocks_1_options','field_617682517c334'),(326838,42636,'blocks_1_split_5050_image','40615'),(326839,42636,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(326840,42636,'blocks_1_split_5050_video',''),(326841,42636,'_blocks_1_split_5050_video','field_6239f3160848a'),(326842,42636,'blocks_1_split_5050_content_title',''),(326843,42636,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(326844,42636,'blocks_1_split_5050_content_heading','Overview'),(326845,42636,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(326846,42636,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(326847,42636,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(326848,42636,'blocks_1_split_5050_content_actions',''),(326849,42636,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(326850,42636,'blocks_1_split_5050_content',''),(326851,42636,'_blocks_1_split_5050_content','field_61767afceb8ba'),(326852,42636,'blocks_3_acfe_flexible_toggle','1'),(326853,42636,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326854,42636,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(326855,42636,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326856,42636,'blocks_3_options_theme','#f5f5f5'),(326857,42636,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(326858,42636,'blocks_3_options_reverse','1'),(326859,42636,'_blocks_3_options_reverse','field_61768049bb8ac'),(326860,42636,'blocks_3_options',''),(326861,42636,'_blocks_3_options','field_617682517c334'),(326862,42636,'blocks_3_split_5050_image','41330'),(326863,42636,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(326864,42636,'blocks_3_split_5050_video',''),(326865,42636,'_blocks_3_split_5050_video','field_6239f3160848a'),(326866,42636,'blocks_3_split_5050_content_title',''),(326867,42636,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(326868,42636,'blocks_3_split_5050_content_heading',''),(326869,42636,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(326870,42636,'blocks_3_split_5050_content_text',''),(326871,42636,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(326872,42636,'blocks_3_split_5050_content_actions',''),(326873,42636,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(326874,42636,'blocks_3_split_5050_content',''),(326875,42636,'_blocks_3_split_5050_content','field_61767afceb8ba'),(326876,42636,'blocks_7_acfe_flexible_toggle',''),(326877,42636,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326878,42636,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(326879,42636,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326880,42636,'blocks_7_options_theme','#ffffff'),(326881,42636,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(326882,42636,'blocks_7_options_reverse','0'),(326883,42636,'_blocks_7_options_reverse','field_61768049bb8ac'),(326884,42636,'blocks_7_options',''),(326885,42636,'_blocks_7_options','field_617682517c334'),(326886,42636,'blocks_7_split_5050_image','41539'),(326887,42636,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(326888,42636,'blocks_7_split_5050_video',''),(326889,42636,'_blocks_7_split_5050_video','field_6239f3160848a'),(326890,42636,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(326891,42636,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(326892,42636,'blocks_7_split_5050_content_heading',''),(326893,42636,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(326894,42636,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(326895,42636,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(326896,42636,'blocks_7_split_5050_content_actions',''),(326897,42636,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(326898,42636,'blocks_7_split_5050_content',''),(326899,42636,'_blocks_7_split_5050_content','field_61767afceb8ba'),(326900,42636,'blocks_8_acfe_flexible_toggle',''),(326901,42636,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326902,42636,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(326903,42636,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326904,42636,'blocks_8_options_theme','#ffffff'),(326905,42636,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(326906,42636,'blocks_8_options_reverse','0'),(326907,42636,'_blocks_8_options_reverse','field_61768049bb8ac'),(326908,42636,'blocks_8_options',''),(326909,42636,'_blocks_8_options','field_617682517c334'),(326910,42636,'blocks_8_split_5050_image','41502'),(326911,42636,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(326912,42636,'blocks_8_split_5050_video',''),(326913,42636,'_blocks_8_split_5050_video','field_6239f3160848a'),(326914,42636,'blocks_8_split_5050_content_title','Educators and Researchers'),(326915,42636,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(326916,42636,'blocks_8_split_5050_content_heading',''),(326917,42636,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(326918,42636,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(326919,42636,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(326920,42636,'blocks_8_split_5050_content_actions',''),(326921,42636,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(326922,42636,'blocks_8_split_5050_content',''),(326923,42636,'_blocks_8_split_5050_content','field_61767afceb8ba'),(326924,42636,'blocks_9_acfe_flexible_toggle',''),(326925,42636,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326926,42636,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(326927,42636,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326928,42636,'blocks_9_options_theme','#ffffff'),(326929,42636,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(326930,42636,'blocks_9_options_reverse','0'),(326931,42636,'_blocks_9_options_reverse','field_61768049bb8ac'),(326932,42636,'blocks_9_options',''),(326933,42636,'_blocks_9_options','field_617682517c334'),(326934,42636,'blocks_9_split_5050_image','41506'),(326935,42636,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(326936,42636,'blocks_9_split_5050_video',''),(326937,42636,'_blocks_9_split_5050_video','field_6239f3160848a'),(326938,42636,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(326939,42636,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(326940,42636,'blocks_9_split_5050_content_heading',''),(326941,42636,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(326942,42636,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(326943,42636,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(326944,42636,'blocks_9_split_5050_content_actions',''),(326945,42636,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(326946,42636,'blocks_9_split_5050_content',''),(326947,42636,'_blocks_9_split_5050_content','field_61767afceb8ba'),(326948,42636,'blocks_13_acfe_flexible_toggle',''),(326949,42636,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326950,42636,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(326951,42636,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326952,42636,'blocks_13_options_theme','#ffffff'),(326953,42636,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(326954,42636,'blocks_13_options_reverse','1'),(326955,42636,'_blocks_13_options_reverse','field_61768049bb8ac'),(326956,42636,'blocks_13_options',''),(326957,42636,'_blocks_13_options','field_617682517c334'),(326958,42636,'blocks_13_split_5050_image','40387'),(326959,42636,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(326960,42636,'blocks_13_split_5050_video',''),(326961,42636,'_blocks_13_split_5050_video','field_6239f3160848a'),(326962,42636,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(326963,42636,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(326964,42636,'blocks_13_split_5050_content_heading',''),(326965,42636,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(326966,42636,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(326967,42636,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(326968,42636,'blocks_13_split_5050_content_actions',''),(326969,42636,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(326970,42636,'blocks_13_split_5050_content',''),(326971,42636,'_blocks_13_split_5050_content','field_61767afceb8ba'),(326972,42636,'blocks_14_acfe_flexible_toggle',''),(326973,42636,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(326974,42636,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(326975,42636,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(326976,42636,'blocks_14_options_theme','#ffffff'),(326977,42636,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(326978,42636,'blocks_14_options_reverse','1'),(326979,42636,'_blocks_14_options_reverse','field_61768049bb8ac'),(326980,42636,'blocks_14_options',''),(326981,42636,'_blocks_14_options','field_617682517c334'),(326982,42636,'blocks_14_split_5050_image','18856'),(326983,42636,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(326984,42636,'blocks_14_split_5050_video',''),(326985,42636,'_blocks_14_split_5050_video','field_6239f3160848a'),(326986,42636,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(326987,42636,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(326988,42636,'blocks_14_split_5050_content_heading',''),(326989,42636,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(326990,42636,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(326991,42636,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(326992,42636,'blocks_14_split_5050_content_actions',''),(326993,42636,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(326994,42636,'blocks_14_split_5050_content',''),(326995,42636,'_blocks_14_split_5050_content','field_61767afceb8ba'),(326996,42636,'blocks_19_acfe_flexible_toggle',''),(326997,42636,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(326998,42636,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(326999,42636,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(327000,42636,'blocks_19_options_theme','#ffffff'),(327001,42636,'_blocks_19_options_theme','field_6176830e2ad17'),(327002,42636,'blocks_19_options',''),(327003,42636,'_blocks_19_options','field_6176830e2ad16'),(327004,42636,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(327005,42636,'_blocks_19_text_block_heading','field_617669d413097'),(327006,42636,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(327007,42636,'_blocks_19_text_block_content','field_617669ec13098'),(327008,42636,'blocks_20_acfe_flexible_toggle',''),(327009,42636,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(327010,42636,'blocks_20_acfe_flexible_layout_title','Conclusion'),(327011,42636,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(327012,42636,'blocks_20_options_theme','#b61234'),(327013,42636,'_blocks_20_options_theme','field_6176830e2ad17'),(327014,42636,'blocks_20_options',''),(327015,42636,'_blocks_20_options','field_6176830e2ad16'),(327016,42636,'blocks_20_text_block_heading','Conclusion'),(327017,42636,'_blocks_20_text_block_heading','field_617669d413097'),(327018,42636,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(327019,42636,'_blocks_20_text_block_content','field_617669ec13098'),(327020,42636,'blocks_6_acfe_flexible_toggle',''),(327021,42636,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327022,42636,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(327023,42636,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327024,42636,'blocks_6_options_theme','#ffffff'),(327025,42636,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(327026,42636,'blocks_6_options_reverse','0'),(327027,42636,'_blocks_6_options_reverse','field_61768049bb8ac'),(327028,42636,'blocks_6_options',''),(327029,42636,'_blocks_6_options','field_617682517c334'),(327030,42636,'blocks_6_split_5050_image','41505'),(327031,42636,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(327032,42636,'blocks_6_split_5050_video',''),(327033,42636,'_blocks_6_split_5050_video','field_6239f3160848a'),(327034,42636,'blocks_6_split_5050_content_title','Current Practitioners'),(327035,42636,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(327036,42636,'blocks_6_split_5050_content_heading',''),(327037,42636,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(327038,42636,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(327039,42636,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(327040,42636,'blocks_6_split_5050_content_actions',''),(327041,42636,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(327042,42636,'blocks_6_split_5050_content',''),(327043,42636,'_blocks_6_split_5050_content','field_61767afceb8ba'),(327044,42636,'blocks_2_acfe_flexible_toggle',''),(327045,42636,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327046,42636,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(327047,42636,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327048,42636,'blocks_2_options_theme','#f5f5f5'),(327049,42636,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(327050,42636,'blocks_2_options_reverse','1'),(327051,42636,'_blocks_2_options_reverse','field_61768049bb8ac'),(327052,42636,'blocks_2_options',''),(327053,42636,'_blocks_2_options','field_617682517c334'),(327054,42636,'blocks_2_split_5050_image','41307'),(327055,42636,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(327056,42636,'blocks_2_split_5050_video',''),(327057,42636,'_blocks_2_split_5050_video','field_6239f3160848a'),(327058,42636,'blocks_2_split_5050_content_title',''),(327059,42636,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(327060,42636,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(327061,42636,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(327062,42636,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(327063,42636,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(327064,42636,'blocks_2_split_5050_content_actions',''),(327065,42636,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(327066,42636,'blocks_2_split_5050_content',''),(327067,42636,'_blocks_2_split_5050_content','field_61767afceb8ba'),(327068,42636,'blocks_4_acfe_flexible_toggle',''),(327069,42636,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(327070,42636,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(327071,42636,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(327072,42636,'blocks_4_options_theme','#ffffff'),(327073,42636,'_blocks_4_options_theme','field_6176830e2ad17'),(327074,42636,'blocks_4_options',''),(327075,42636,'_blocks_4_options','field_6176830e2ad16'),(327076,42636,'blocks_4_text_block_heading','Who Should Study MSK?'),(327077,42636,'_blocks_4_text_block_heading','field_617669d413097'),(327078,42636,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(327079,42636,'_blocks_4_text_block_content','field_617669ec13098'),(327080,42636,'blocks_5_acfe_flexible_toggle',''),(327081,42636,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327082,42636,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(327083,42636,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327084,42636,'blocks_5_options_theme','#ffffff'),(327085,42636,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(327086,42636,'blocks_5_options_reverse','0'),(327087,42636,'_blocks_5_options_reverse','field_61768049bb8ac'),(327088,42636,'blocks_5_options',''),(327089,42636,'_blocks_5_options','field_617682517c334'),(327090,42636,'blocks_5_split_5050_image','41542'),(327091,42636,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(327092,42636,'blocks_5_split_5050_video',''),(327093,42636,'_blocks_5_split_5050_video','field_6239f3160848a'),(327094,42636,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(327095,42636,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(327096,42636,'blocks_5_split_5050_content_heading',''),(327097,42636,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(327098,42636,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(327099,42636,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(327100,42636,'blocks_5_split_5050_content_actions',''),(327101,42636,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(327102,42636,'blocks_5_split_5050_content',''),(327103,42636,'_blocks_5_split_5050_content','field_61767afceb8ba'),(327104,42636,'blocks_10_acfe_flexible_toggle',''),(327105,42636,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(327106,42636,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(327107,42636,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(327108,42636,'blocks_10_options_theme','#f5f5f5'),(327109,42636,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(327110,42636,'blocks_10_options_state','0'),(327111,42636,'_blocks_10_options_state','field_6239fcb7508c5'),(327112,42636,'blocks_10_options',''),(327113,42636,'_blocks_10_options','field_6177e2991ac44'),(327114,42636,'blocks_10_content_title',''),(327115,42636,'_blocks_10_content_title','field_64d237e8bb1e2'),(327116,42636,'blocks_10_content_heading','Common MSK Conditions'),(327117,42636,'_blocks_10_content_heading','field_64d237e8bb1e3'),(327118,42636,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(327119,42636,'_blocks_10_content_text','field_64d237e8bb1e4'),(327120,42636,'blocks_10_content_actions',''),(327121,42636,'_blocks_10_content_actions','field_64d237e8bb1e5'),(327122,42636,'blocks_10_content_align','left'),(327123,42636,'_blocks_10_content_align','field_64d2443e6b6aa'),(327124,42636,'blocks_10_content',''),(327125,42636,'_blocks_10_content','field_64d237e8bb1e1'),(327126,42636,'blocks_10_accordion_content','custom'),(327127,42636,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(327128,42636,'blocks_10_accordion_items_0_title','Osteoarthritis'),(327129,42636,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(327130,42636,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(327131,42636,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(327132,42636,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(327133,42636,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(327134,42636,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(327135,42636,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(327136,42636,'blocks_10_accordion_items_2_title','Back Pain'),(327137,42636,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(327138,42636,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by muscle imbalances or prolonged inactivity.'),(327139,42636,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(327140,42636,'blocks_10_accordion_items_3_title','Osteoporosis'),(327141,42636,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(327142,42636,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(327143,42636,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(327144,42636,'blocks_10_accordion_items_4_title','Tendinitis'),(327145,42636,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(327146,42636,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(327147,42636,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(327148,42636,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(327149,42636,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(327150,42636,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(327151,42636,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(327152,42636,'blocks_10_accordion_items_6_title','Fibromyalgia'),(327153,42636,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(327154,42636,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(327155,42636,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(327156,42636,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(327157,42636,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(327158,42636,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(327159,42636,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(327160,42636,'blocks_10_accordion_items','8'),(327161,42636,'_blocks_10_accordion_items','field_6177e2991ac4c'),(327162,42636,'blocks_10_actions',''),(327163,42636,'_blocks_10_actions','field_61a746a817f7a'),(327164,42636,'blocks_11_acfe_flexible_toggle',''),(327165,42636,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(327166,42636,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(327167,42636,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(327168,42636,'blocks_11_options_theme','#ffffff'),(327169,42636,'_blocks_11_options_theme','field_6176830e2ad17'),(327170,42636,'blocks_11_options',''),(327171,42636,'_blocks_11_options','field_6176830e2ad16'),(327172,42636,'blocks_11_text_block_heading','The Importance of MSK Education'),(327173,42636,'_blocks_11_text_block_heading','field_617669d413097'),(327174,42636,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(327175,42636,'_blocks_11_text_block_content','field_617669ec13098'),(327176,42636,'blocks_12_acfe_flexible_toggle',''),(327177,42636,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327178,42636,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(327179,42636,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327180,42636,'blocks_12_options_theme','#ffffff'),(327181,42636,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(327182,42636,'blocks_12_options_reverse','1'),(327183,42636,'_blocks_12_options_reverse','field_61768049bb8ac'),(327184,42636,'blocks_12_options',''),(327185,42636,'_blocks_12_options','field_617682517c334'),(327186,42636,'blocks_12_split_5050_image','41498'),(327187,42636,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(327188,42636,'blocks_12_split_5050_video',''),(327189,42636,'_blocks_12_split_5050_video','field_6239f3160848a'),(327190,42636,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(327191,42636,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(327192,42636,'blocks_12_split_5050_content_heading',''),(327193,42636,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(327194,42636,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(327195,42636,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(327196,42636,'blocks_12_split_5050_content_actions',''),(327197,42636,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(327198,42636,'blocks_12_split_5050_content',''),(327199,42636,'_blocks_12_split_5050_content','field_61767afceb8ba'),(327200,42636,'blocks_15_acfe_flexible_toggle',''),(327201,42636,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(327202,42636,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(327203,42636,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(327204,42636,'blocks_15_options_theme','#b61234'),(327205,42636,'_blocks_15_options_theme','field_6176830e2ad17'),(327206,42636,'blocks_15_options',''),(327207,42636,'_blocks_15_options','field_6176830e2ad16'),(327208,42636,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(327209,42636,'_blocks_15_text_block_heading','field_617669d413097'),(327210,42636,'blocks_15_text_block_content',''),(327211,42636,'_blocks_15_text_block_content','field_617669ec13098'),(327212,42636,'blocks_16_acfe_flexible_toggle',''),(327213,42636,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(327214,42636,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(327215,42636,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(327216,42636,'blocks_16_options_theme','#b61234'),(327217,42636,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(327218,42636,'blocks_16_options_format','row'),(327219,42636,'_blocks_16_options_format','field_64bfde9a90690'),(327220,42636,'blocks_16_options',''),(327221,42636,'_blocks_16_options','field_64bfdd9b90684'),(327222,42636,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(327223,42636,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(327224,42636,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(327225,42636,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(327226,42636,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(327227,42636,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(327228,42636,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(327229,42636,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(327230,42636,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(327231,42636,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(327232,42636,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(327233,42636,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(327234,42636,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(327235,42636,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(327236,42636,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(327237,42636,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(327238,42636,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(327239,42636,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(327240,42636,'blocks_16_icon_row_items_3_icon','recognised.svg'),(327241,42636,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(327242,42636,'blocks_16_icon_row_items_3_label','Optimised Performance'),(327243,42636,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(327244,42636,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(327245,42636,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(327246,42636,'blocks_16_icon_row_items','4'),(327247,42636,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(327248,42636,'blocks_17_acfe_flexible_toggle',''),(327249,42636,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327250,42636,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(327251,42636,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327252,42636,'blocks_17_options_theme','#ffffff'),(327253,42636,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(327254,42636,'blocks_17_options_reverse','0'),(327255,42636,'_blocks_17_options_reverse','field_61768049bb8ac'),(327256,42636,'blocks_17_options',''),(327257,42636,'_blocks_17_options','field_617682517c334'),(327258,42636,'blocks_17_split_5050_image','41501'),(327259,42636,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(327260,42636,'blocks_17_split_5050_video',''),(327261,42636,'_blocks_17_split_5050_video','field_6239f3160848a'),(327262,42636,'blocks_17_split_5050_content_title',''),(327263,42636,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(327264,42636,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(327265,42636,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(327266,42636,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(327267,42636,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(327268,42636,'blocks_17_split_5050_content_actions',''),(327269,42636,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(327270,42636,'blocks_17_split_5050_content',''),(327271,42636,'_blocks_17_split_5050_content','field_61767afceb8ba'),(327272,42636,'blocks_18_acfe_flexible_toggle',''),(327273,42636,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(327274,42636,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(327275,42636,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(327276,42636,'blocks_18_options_theme','#ffffff'),(327277,42636,'_blocks_18_options_theme','field_6176830e2ad17'),(327278,42636,'blocks_18_options',''),(327279,42636,'_blocks_18_options','field_6176830e2ad16'),(327280,42636,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(327281,42636,'_blocks_18_text_block_heading','field_617669d413097'),(327282,42636,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(327283,42636,'_blocks_18_text_block_content','field_617669ec13098'),(327284,42636,'blocks_21_acfe_flexible_toggle',''),(327285,42636,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(327286,42636,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(327287,42636,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(327288,42636,'blocks_21_options_alignment','center'),(327289,42636,'_blocks_21_options_alignment','field_61769449f5490'),(327290,42636,'blocks_21_options',''),(327291,42636,'_blocks_21_options','field_617693e1428f0'),(327292,42636,'blocks_21_promo_panel_image','41307'),(327293,42636,'_blocks_21_promo_panel_image','field_617693e1428f3'),(327294,42636,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(327295,42636,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(327296,42636,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(327297,42636,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(327298,42636,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(327299,42636,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(327300,42636,'blocks_21_promo_panel_content_actions','1'),(327301,42636,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(327302,42636,'blocks_21_promo_panel_content',''),(327303,42636,'_blocks_21_promo_panel_content','field_617693e1428f4'),(327304,42637,'hide_hero','0'),(327305,42637,'_hide_hero','field_66a2380fcda39'),(327306,42637,'hero_title',''),(327307,42637,'_hero_title','field_617571fe285e8'),(327308,42637,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(327309,42637,'_hero_text','field_6175723c285e9'),(327310,42637,'hero_actions',''),(327311,42637,'_hero_actions','field_61757270285ea'),(327312,42637,'hero_style','default'),(327313,42637,'_hero_style','field_62051d9dc5324'),(327314,42637,'hero_image_pos_x','right'),(327315,42637,'_hero_image_pos_x','field_62ec3d05390bb'),(327316,42637,'hero_image_pos_y','top'),(327317,42637,'_hero_image_pos_y','field_62ec3d05390bc'),(327318,42637,'hero_image_pos',''),(327319,42637,'_hero_image_pos','field_62ec3d05390ba'),(327320,42637,'fft_hide_from_listings','0'),(327321,42637,'_fft_hide_from_listings','field_61f1320446ab2'),(327322,42637,'post_format','402'),(327323,42637,'_post_format','field_61756bfb51898'),(327324,42637,'post_author',''),(327325,42637,'_post_author','field_62ec389d22113'),(327326,42637,'post_reviewer',''),(327327,42637,'_post_reviewer','field_627140a2a9800'),(327328,42637,'post_table_of_contents','0'),(327329,42637,'_post_table_of_contents','field_65c503bc846a6'),(327330,42637,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(327331,42637,'_blocks','field_6176696113096'),(327332,42637,'_thumbnail_id','40618'),(327333,42637,'__thumbnail_id','field_617570855ddaf'),(327334,42637,'blocks_0_acfe_flexible_toggle',''),(327335,42637,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(327336,42637,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(327337,42637,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(327338,42637,'blocks_0_options_theme','#ffffff'),(327339,42637,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(327340,42637,'blocks_0_options',''),(327341,42637,'_blocks_0_options','field_6177b758246ae'),(327342,42637,'blocks_0_link_stack_content_title',''),(327343,42637,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(327344,42637,'blocks_0_link_stack_content_heading','Introduction'),(327345,42637,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(327346,42637,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(327347,42637,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(327348,42637,'blocks_0_link_stack_content_actions_0_button',''),(327349,42637,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(327350,42637,'blocks_0_link_stack_content_actions','1'),(327351,42637,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(327352,42637,'blocks_0_link_stack_content',''),(327353,42637,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(327354,42637,'blocks_0_link_stack_0_label','1.'),(327355,42637,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(327356,42637,'blocks_0_link_stack_0_title','Overview'),(327357,42637,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(327358,42637,'blocks_0_link_stack_0_url','#overview'),(327359,42637,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(327360,42637,'blocks_0_link_stack_1_label','2.'),(327361,42637,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(327362,42637,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(327363,42637,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(327364,42637,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(327365,42637,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(327366,42637,'blocks_0_link_stack_2_label','3.'),(327367,42637,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(327368,42637,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(327369,42637,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(327370,42637,'blocks_0_link_stack_2_url','#who-should-study-msk'),(327371,42637,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(327372,42637,'blocks_0_link_stack_3_label','4.'),(327373,42637,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(327374,42637,'blocks_0_link_stack_3_title','Common MSK Conditions'),(327375,42637,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(327376,42637,'blocks_0_link_stack_3_url','#common-msk-conditions'),(327377,42637,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(327378,42637,'blocks_0_link_stack_4_label','5.'),(327379,42637,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(327380,42637,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(327381,42637,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(327382,42637,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(327383,42637,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(327384,42637,'blocks_0_link_stack_5_label','6.'),(327385,42637,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(327386,42637,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(327387,42637,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(327388,42637,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(327389,42637,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(327390,42637,'blocks_0_link_stack','6'),(327391,42637,'_blocks_0_link_stack','field_6177b7f600cff'),(327392,42637,'blocks_1_acfe_flexible_toggle',''),(327393,42637,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327394,42637,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(327395,42637,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327396,42637,'blocks_1_options_theme','#ffffff'),(327397,42637,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(327398,42637,'blocks_1_options_reverse','0'),(327399,42637,'_blocks_1_options_reverse','field_61768049bb8ac'),(327400,42637,'blocks_1_options',''),(327401,42637,'_blocks_1_options','field_617682517c334'),(327402,42637,'blocks_1_split_5050_image','40615'),(327403,42637,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(327404,42637,'blocks_1_split_5050_video',''),(327405,42637,'_blocks_1_split_5050_video','field_6239f3160848a'),(327406,42637,'blocks_1_split_5050_content_title',''),(327407,42637,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(327408,42637,'blocks_1_split_5050_content_heading','Overview'),(327409,42637,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(327410,42637,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(327411,42637,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(327412,42637,'blocks_1_split_5050_content_actions',''),(327413,42637,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(327414,42637,'blocks_1_split_5050_content',''),(327415,42637,'_blocks_1_split_5050_content','field_61767afceb8ba'),(327416,42637,'blocks_3_acfe_flexible_toggle','1'),(327417,42637,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327418,42637,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(327419,42637,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327420,42637,'blocks_3_options_theme','#f5f5f5'),(327421,42637,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(327422,42637,'blocks_3_options_reverse','1'),(327423,42637,'_blocks_3_options_reverse','field_61768049bb8ac'),(327424,42637,'blocks_3_options',''),(327425,42637,'_blocks_3_options','field_617682517c334'),(327426,42637,'blocks_3_split_5050_image','41330'),(327427,42637,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(327428,42637,'blocks_3_split_5050_video',''),(327429,42637,'_blocks_3_split_5050_video','field_6239f3160848a'),(327430,42637,'blocks_3_split_5050_content_title',''),(327431,42637,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(327432,42637,'blocks_3_split_5050_content_heading',''),(327433,42637,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(327434,42637,'blocks_3_split_5050_content_text',''),(327435,42637,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(327436,42637,'blocks_3_split_5050_content_actions',''),(327437,42637,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(327438,42637,'blocks_3_split_5050_content',''),(327439,42637,'_blocks_3_split_5050_content','field_61767afceb8ba'),(327440,42637,'blocks_7_acfe_flexible_toggle',''),(327441,42637,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327442,42637,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(327443,42637,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327444,42637,'blocks_7_options_theme','#ffffff'),(327445,42637,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(327446,42637,'blocks_7_options_reverse','0'),(327447,42637,'_blocks_7_options_reverse','field_61768049bb8ac'),(327448,42637,'blocks_7_options',''),(327449,42637,'_blocks_7_options','field_617682517c334'),(327450,42637,'blocks_7_split_5050_image','41539'),(327451,42637,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(327452,42637,'blocks_7_split_5050_video',''),(327453,42637,'_blocks_7_split_5050_video','field_6239f3160848a'),(327454,42637,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(327455,42637,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(327456,42637,'blocks_7_split_5050_content_heading',''),(327457,42637,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(327458,42637,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(327459,42637,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(327460,42637,'blocks_7_split_5050_content_actions',''),(327461,42637,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(327462,42637,'blocks_7_split_5050_content',''),(327463,42637,'_blocks_7_split_5050_content','field_61767afceb8ba'),(327464,42637,'blocks_8_acfe_flexible_toggle',''),(327465,42637,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327466,42637,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(327467,42637,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327468,42637,'blocks_8_options_theme','#ffffff'),(327469,42637,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(327470,42637,'blocks_8_options_reverse','0'),(327471,42637,'_blocks_8_options_reverse','field_61768049bb8ac'),(327472,42637,'blocks_8_options',''),(327473,42637,'_blocks_8_options','field_617682517c334'),(327474,42637,'blocks_8_split_5050_image','41502'),(327475,42637,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(327476,42637,'blocks_8_split_5050_video',''),(327477,42637,'_blocks_8_split_5050_video','field_6239f3160848a'),(327478,42637,'blocks_8_split_5050_content_title','Educators and Researchers'),(327479,42637,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(327480,42637,'blocks_8_split_5050_content_heading',''),(327481,42637,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(327482,42637,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(327483,42637,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(327484,42637,'blocks_8_split_5050_content_actions',''),(327485,42637,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(327486,42637,'blocks_8_split_5050_content',''),(327487,42637,'_blocks_8_split_5050_content','field_61767afceb8ba'),(327488,42637,'blocks_9_acfe_flexible_toggle',''),(327489,42637,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327490,42637,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(327491,42637,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327492,42637,'blocks_9_options_theme','#ffffff'),(327493,42637,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(327494,42637,'blocks_9_options_reverse','0'),(327495,42637,'_blocks_9_options_reverse','field_61768049bb8ac'),(327496,42637,'blocks_9_options',''),(327497,42637,'_blocks_9_options','field_617682517c334'),(327498,42637,'blocks_9_split_5050_image','41506'),(327499,42637,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(327500,42637,'blocks_9_split_5050_video',''),(327501,42637,'_blocks_9_split_5050_video','field_6239f3160848a'),(327502,42637,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(327503,42637,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(327504,42637,'blocks_9_split_5050_content_heading',''),(327505,42637,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(327506,42637,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(327507,42637,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(327508,42637,'blocks_9_split_5050_content_actions',''),(327509,42637,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(327510,42637,'blocks_9_split_5050_content',''),(327511,42637,'_blocks_9_split_5050_content','field_61767afceb8ba'),(327512,42637,'blocks_13_acfe_flexible_toggle',''),(327513,42637,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327514,42637,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(327515,42637,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327516,42637,'blocks_13_options_theme','#ffffff'),(327517,42637,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(327518,42637,'blocks_13_options_reverse','1'),(327519,42637,'_blocks_13_options_reverse','field_61768049bb8ac'),(327520,42637,'blocks_13_options',''),(327521,42637,'_blocks_13_options','field_617682517c334'),(327522,42637,'blocks_13_split_5050_image','40387'),(327523,42637,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(327524,42637,'blocks_13_split_5050_video',''),(327525,42637,'_blocks_13_split_5050_video','field_6239f3160848a'),(327526,42637,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(327527,42637,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(327528,42637,'blocks_13_split_5050_content_heading',''),(327529,42637,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(327530,42637,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(327531,42637,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(327532,42637,'blocks_13_split_5050_content_actions',''),(327533,42637,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(327534,42637,'blocks_13_split_5050_content',''),(327535,42637,'_blocks_13_split_5050_content','field_61767afceb8ba'),(327536,42637,'blocks_14_acfe_flexible_toggle',''),(327537,42637,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327538,42637,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(327539,42637,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327540,42637,'blocks_14_options_theme','#ffffff'),(327541,42637,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(327542,42637,'blocks_14_options_reverse','1'),(327543,42637,'_blocks_14_options_reverse','field_61768049bb8ac'),(327544,42637,'blocks_14_options',''),(327545,42637,'_blocks_14_options','field_617682517c334'),(327546,42637,'blocks_14_split_5050_image','18856'),(327547,42637,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(327548,42637,'blocks_14_split_5050_video',''),(327549,42637,'_blocks_14_split_5050_video','field_6239f3160848a'),(327550,42637,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(327551,42637,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(327552,42637,'blocks_14_split_5050_content_heading',''),(327553,42637,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(327554,42637,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(327555,42637,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(327556,42637,'blocks_14_split_5050_content_actions',''),(327557,42637,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(327558,42637,'blocks_14_split_5050_content',''),(327559,42637,'_blocks_14_split_5050_content','field_61767afceb8ba'),(327560,42637,'blocks_19_acfe_flexible_toggle',''),(327561,42637,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(327562,42637,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(327563,42637,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(327564,42637,'blocks_19_options_theme','#ffffff'),(327565,42637,'_blocks_19_options_theme','field_6176830e2ad17'),(327566,42637,'blocks_19_options',''),(327567,42637,'_blocks_19_options','field_6176830e2ad16'),(327568,42637,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(327569,42637,'_blocks_19_text_block_heading','field_617669d413097'),(327570,42637,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(327571,42637,'_blocks_19_text_block_content','field_617669ec13098'),(327572,42637,'blocks_20_acfe_flexible_toggle',''),(327573,42637,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(327574,42637,'blocks_20_acfe_flexible_layout_title','Conclusion'),(327575,42637,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(327576,42637,'blocks_20_options_theme','#b61234'),(327577,42637,'_blocks_20_options_theme','field_6176830e2ad17'),(327578,42637,'blocks_20_options',''),(327579,42637,'_blocks_20_options','field_6176830e2ad16'),(327580,42637,'blocks_20_text_block_heading','Conclusion'),(327581,42637,'_blocks_20_text_block_heading','field_617669d413097'),(327582,42637,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(327583,42637,'_blocks_20_text_block_content','field_617669ec13098'),(327584,42637,'blocks_6_acfe_flexible_toggle',''),(327585,42637,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327586,42637,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(327587,42637,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327588,42637,'blocks_6_options_theme','#ffffff'),(327589,42637,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(327590,42637,'blocks_6_options_reverse','0'),(327591,42637,'_blocks_6_options_reverse','field_61768049bb8ac'),(327592,42637,'blocks_6_options',''),(327593,42637,'_blocks_6_options','field_617682517c334'),(327594,42637,'blocks_6_split_5050_image','41505'),(327595,42637,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(327596,42637,'blocks_6_split_5050_video',''),(327597,42637,'_blocks_6_split_5050_video','field_6239f3160848a'),(327598,42637,'blocks_6_split_5050_content_title','Current Practitioners'),(327599,42637,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(327600,42637,'blocks_6_split_5050_content_heading',''),(327601,42637,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(327602,42637,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(327603,42637,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(327604,42637,'blocks_6_split_5050_content_actions',''),(327605,42637,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(327606,42637,'blocks_6_split_5050_content',''),(327607,42637,'_blocks_6_split_5050_content','field_61767afceb8ba'),(327608,42637,'blocks_2_acfe_flexible_toggle',''),(327609,42637,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327610,42637,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(327611,42637,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327612,42637,'blocks_2_options_theme','#f5f5f5'),(327613,42637,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(327614,42637,'blocks_2_options_reverse','1'),(327615,42637,'_blocks_2_options_reverse','field_61768049bb8ac'),(327616,42637,'blocks_2_options',''),(327617,42637,'_blocks_2_options','field_617682517c334'),(327618,42637,'blocks_2_split_5050_image','41307'),(327619,42637,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(327620,42637,'blocks_2_split_5050_video',''),(327621,42637,'_blocks_2_split_5050_video','field_6239f3160848a'),(327622,42637,'blocks_2_split_5050_content_title',''),(327623,42637,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(327624,42637,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(327625,42637,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(327626,42637,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(327627,42637,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(327628,42637,'blocks_2_split_5050_content_actions',''),(327629,42637,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(327630,42637,'blocks_2_split_5050_content',''),(327631,42637,'_blocks_2_split_5050_content','field_61767afceb8ba'),(327632,42637,'blocks_4_acfe_flexible_toggle',''),(327633,42637,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(327634,42637,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(327635,42637,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(327636,42637,'blocks_4_options_theme','#ffffff'),(327637,42637,'_blocks_4_options_theme','field_6176830e2ad17'),(327638,42637,'blocks_4_options',''),(327639,42637,'_blocks_4_options','field_6176830e2ad16'),(327640,42637,'blocks_4_text_block_heading','Who Should Study MSK?'),(327641,42637,'_blocks_4_text_block_heading','field_617669d413097'),(327642,42637,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(327643,42637,'_blocks_4_text_block_content','field_617669ec13098'),(327644,42637,'blocks_5_acfe_flexible_toggle',''),(327645,42637,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327646,42637,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(327647,42637,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327648,42637,'blocks_5_options_theme','#ffffff'),(327649,42637,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(327650,42637,'blocks_5_options_reverse','0'),(327651,42637,'_blocks_5_options_reverse','field_61768049bb8ac'),(327652,42637,'blocks_5_options',''),(327653,42637,'_blocks_5_options','field_617682517c334'),(327654,42637,'blocks_5_split_5050_image','41542'),(327655,42637,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(327656,42637,'blocks_5_split_5050_video',''),(327657,42637,'_blocks_5_split_5050_video','field_6239f3160848a'),(327658,42637,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(327659,42637,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(327660,42637,'blocks_5_split_5050_content_heading',''),(327661,42637,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(327662,42637,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(327663,42637,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(327664,42637,'blocks_5_split_5050_content_actions',''),(327665,42637,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(327666,42637,'blocks_5_split_5050_content',''),(327667,42637,'_blocks_5_split_5050_content','field_61767afceb8ba'),(327668,42637,'blocks_10_acfe_flexible_toggle',''),(327669,42637,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(327670,42637,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(327671,42637,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(327672,42637,'blocks_10_options_theme','#f5f5f5'),(327673,42637,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(327674,42637,'blocks_10_options_state','0'),(327675,42637,'_blocks_10_options_state','field_6239fcb7508c5'),(327676,42637,'blocks_10_options',''),(327677,42637,'_blocks_10_options','field_6177e2991ac44'),(327678,42637,'blocks_10_content_title',''),(327679,42637,'_blocks_10_content_title','field_64d237e8bb1e2'),(327680,42637,'blocks_10_content_heading','Common MSK Conditions'),(327681,42637,'_blocks_10_content_heading','field_64d237e8bb1e3'),(327682,42637,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(327683,42637,'_blocks_10_content_text','field_64d237e8bb1e4'),(327684,42637,'blocks_10_content_actions',''),(327685,42637,'_blocks_10_content_actions','field_64d237e8bb1e5'),(327686,42637,'blocks_10_content_align','left'),(327687,42637,'_blocks_10_content_align','field_64d2443e6b6aa'),(327688,42637,'blocks_10_content',''),(327689,42637,'_blocks_10_content','field_64d237e8bb1e1'),(327690,42637,'blocks_10_accordion_content','custom'),(327691,42637,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(327692,42637,'blocks_10_accordion_items_0_title','Osteoarthritis'),(327693,42637,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(327694,42637,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(327695,42637,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(327696,42637,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(327697,42637,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(327698,42637,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(327699,42637,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(327700,42637,'blocks_10_accordion_items_2_title','Back Pain'),(327701,42637,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(327702,42637,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by muscle imbalances or prolonged inactivity.'),(327703,42637,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(327704,42637,'blocks_10_accordion_items_3_title','Osteoporosis'),(327705,42637,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(327706,42637,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(327707,42637,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(327708,42637,'blocks_10_accordion_items_4_title','Tendinitis'),(327709,42637,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(327710,42637,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(327711,42637,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(327712,42637,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(327713,42637,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(327714,42637,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(327715,42637,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(327716,42637,'blocks_10_accordion_items_6_title','Fibromyalgia'),(327717,42637,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(327718,42637,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(327719,42637,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(327720,42637,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(327721,42637,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(327722,42637,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(327723,42637,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(327724,42637,'blocks_10_accordion_items','8'),(327725,42637,'_blocks_10_accordion_items','field_6177e2991ac4c'),(327726,42637,'blocks_10_actions',''),(327727,42637,'_blocks_10_actions','field_61a746a817f7a'),(327728,42637,'blocks_11_acfe_flexible_toggle',''),(327729,42637,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(327730,42637,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(327731,42637,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(327732,42637,'blocks_11_options_theme','#ffffff'),(327733,42637,'_blocks_11_options_theme','field_6176830e2ad17'),(327734,42637,'blocks_11_options',''),(327735,42637,'_blocks_11_options','field_6176830e2ad16'),(327736,42637,'blocks_11_text_block_heading','The Importance of MSK Education'),(327737,42637,'_blocks_11_text_block_heading','field_617669d413097'),(327738,42637,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(327739,42637,'_blocks_11_text_block_content','field_617669ec13098'),(327740,42637,'blocks_12_acfe_flexible_toggle',''),(327741,42637,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327742,42637,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(327743,42637,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327744,42637,'blocks_12_options_theme','#ffffff'),(327745,42637,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(327746,42637,'blocks_12_options_reverse','1'),(327747,42637,'_blocks_12_options_reverse','field_61768049bb8ac'),(327748,42637,'blocks_12_options',''),(327749,42637,'_blocks_12_options','field_617682517c334'),(327750,42637,'blocks_12_split_5050_image','41498'),(327751,42637,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(327752,42637,'blocks_12_split_5050_video',''),(327753,42637,'_blocks_12_split_5050_video','field_6239f3160848a'),(327754,42637,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(327755,42637,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(327756,42637,'blocks_12_split_5050_content_heading',''),(327757,42637,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(327758,42637,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(327759,42637,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(327760,42637,'blocks_12_split_5050_content_actions',''),(327761,42637,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(327762,42637,'blocks_12_split_5050_content',''),(327763,42637,'_blocks_12_split_5050_content','field_61767afceb8ba'),(327764,42637,'blocks_15_acfe_flexible_toggle',''),(327765,42637,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(327766,42637,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(327767,42637,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(327768,42637,'blocks_15_options_theme','#b61234'),(327769,42637,'_blocks_15_options_theme','field_6176830e2ad17'),(327770,42637,'blocks_15_options',''),(327771,42637,'_blocks_15_options','field_6176830e2ad16'),(327772,42637,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(327773,42637,'_blocks_15_text_block_heading','field_617669d413097'),(327774,42637,'blocks_15_text_block_content',''),(327775,42637,'_blocks_15_text_block_content','field_617669ec13098'),(327776,42637,'blocks_16_acfe_flexible_toggle',''),(327777,42637,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(327778,42637,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(327779,42637,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(327780,42637,'blocks_16_options_theme','#b61234'),(327781,42637,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(327782,42637,'blocks_16_options_format','row'),(327783,42637,'_blocks_16_options_format','field_64bfde9a90690'),(327784,42637,'blocks_16_options',''),(327785,42637,'_blocks_16_options','field_64bfdd9b90684'),(327786,42637,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(327787,42637,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(327788,42637,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(327789,42637,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(327790,42637,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(327791,42637,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(327792,42637,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(327793,42637,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(327794,42637,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(327795,42637,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(327796,42637,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(327797,42637,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(327798,42637,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(327799,42637,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(327800,42637,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(327801,42637,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(327802,42637,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(327803,42637,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(327804,42637,'blocks_16_icon_row_items_3_icon','recognised.svg'),(327805,42637,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(327806,42637,'blocks_16_icon_row_items_3_label','Optimised Performance'),(327807,42637,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(327808,42637,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(327809,42637,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(327810,42637,'blocks_16_icon_row_items','4'),(327811,42637,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(327812,42637,'blocks_17_acfe_flexible_toggle',''),(327813,42637,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(327814,42637,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(327815,42637,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(327816,42637,'blocks_17_options_theme','#ffffff'),(327817,42637,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(327818,42637,'blocks_17_options_reverse','0'),(327819,42637,'_blocks_17_options_reverse','field_61768049bb8ac'),(327820,42637,'blocks_17_options',''),(327821,42637,'_blocks_17_options','field_617682517c334'),(327822,42637,'blocks_17_split_5050_image','41501'),(327823,42637,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(327824,42637,'blocks_17_split_5050_video',''),(327825,42637,'_blocks_17_split_5050_video','field_6239f3160848a'),(327826,42637,'blocks_17_split_5050_content_title',''),(327827,42637,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(327828,42637,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(327829,42637,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(327830,42637,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(327831,42637,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(327832,42637,'blocks_17_split_5050_content_actions',''),(327833,42637,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(327834,42637,'blocks_17_split_5050_content',''),(327835,42637,'_blocks_17_split_5050_content','field_61767afceb8ba'),(327836,42637,'blocks_18_acfe_flexible_toggle',''),(327837,42637,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(327838,42637,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(327839,42637,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(327840,42637,'blocks_18_options_theme','#ffffff'),(327841,42637,'_blocks_18_options_theme','field_6176830e2ad17'),(327842,42637,'blocks_18_options',''),(327843,42637,'_blocks_18_options','field_6176830e2ad16'),(327844,42637,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(327845,42637,'_blocks_18_text_block_heading','field_617669d413097'),(327846,42637,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(327847,42637,'_blocks_18_text_block_content','field_617669ec13098'),(327848,42637,'blocks_21_acfe_flexible_toggle',''),(327849,42637,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(327850,42637,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(327851,42637,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(327852,42637,'blocks_21_options_alignment','center'),(327853,42637,'_blocks_21_options_alignment','field_61769449f5490'),(327854,42637,'blocks_21_options',''),(327855,42637,'_blocks_21_options','field_617693e1428f0'),(327856,42637,'blocks_21_promo_panel_image','41307'),(327857,42637,'_blocks_21_promo_panel_image','field_617693e1428f3'),(327858,42637,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(327859,42637,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(327860,42637,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(327861,42637,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(327862,42637,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(327863,42637,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(327864,42637,'blocks_21_promo_panel_content_actions','1'),(327865,42637,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(327866,42637,'blocks_21_promo_panel_content',''),(327867,42637,'_blocks_21_promo_panel_content','field_617693e1428f4'),(328068,42640,'hide_hero','0'),(328069,42640,'_hide_hero','field_66a2380fcda39'),(328070,42640,'hero_title',''),(328071,42640,'_hero_title','field_617571fe285e8'),(328072,42640,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(328073,42640,'_hero_text','field_6175723c285e9'),(328074,42640,'hero_actions',''),(328075,42640,'_hero_actions','field_61757270285ea'),(328076,42640,'hero_style','default'),(328077,42640,'_hero_style','field_62051d9dc5324'),(328078,42640,'hero_image_pos_x','right'),(328079,42640,'_hero_image_pos_x','field_62ec3d05390bb'),(328080,42640,'hero_image_pos_y','top'),(328081,42640,'_hero_image_pos_y','field_62ec3d05390bc'),(328082,42640,'hero_image_pos',''),(328083,42640,'_hero_image_pos','field_62ec3d05390ba'),(328084,42640,'fft_hide_from_listings','0'),(328085,42640,'_fft_hide_from_listings','field_61f1320446ab2'),(328086,42640,'post_format','402'),(328087,42640,'_post_format','field_61756bfb51898'),(328088,42640,'post_author',''),(328089,42640,'_post_author','field_62ec389d22113'),(328090,42640,'post_reviewer',''),(328091,42640,'_post_reviewer','field_627140a2a9800'),(328092,42640,'post_table_of_contents','0'),(328093,42640,'_post_table_of_contents','field_65c503bc846a6'),(328094,42640,'blocks','a:21:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"text_block\";i:15;s:5:\"icons\";i:16;s:10:\"split_5050\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:11:\"promo_panel\";}'),(328095,42640,'_blocks','field_6176696113096'),(328096,42640,'_thumbnail_id','40618'),(328097,42640,'__thumbnail_id','field_617570855ddaf'),(328098,42640,'blocks_0_acfe_flexible_toggle',''),(328099,42640,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(328100,42640,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(328101,42640,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(328102,42640,'blocks_0_options_theme','#ffffff'),(328103,42640,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(328104,42640,'blocks_0_options',''),(328105,42640,'_blocks_0_options','field_6177b758246ae'),(328106,42640,'blocks_0_link_stack_content_title',''),(328107,42640,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(328108,42640,'blocks_0_link_stack_content_heading','Introduction'),(328109,42640,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(328110,42640,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(328111,42640,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(328112,42640,'blocks_0_link_stack_content_actions_0_button',''),(328113,42640,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(328114,42640,'blocks_0_link_stack_content_actions','1'),(328115,42640,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(328116,42640,'blocks_0_link_stack_content',''),(328117,42640,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(328118,42640,'blocks_0_link_stack_0_label','1.'),(328119,42640,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(328120,42640,'blocks_0_link_stack_0_title','Overview'),(328121,42640,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(328122,42640,'blocks_0_link_stack_0_url','#overview'),(328123,42640,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(328124,42640,'blocks_0_link_stack_1_label','2.'),(328125,42640,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(328126,42640,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(328127,42640,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(328128,42640,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(328129,42640,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(328130,42640,'blocks_0_link_stack_2_label','3.'),(328131,42640,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(328132,42640,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(328133,42640,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(328134,42640,'blocks_0_link_stack_2_url','#who-should-study-msk'),(328135,42640,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(328136,42640,'blocks_0_link_stack_3_label','4.'),(328137,42640,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(328138,42640,'blocks_0_link_stack_3_title','Common MSK Conditions'),(328139,42640,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(328140,42640,'blocks_0_link_stack_3_url','#common-msk-conditions'),(328141,42640,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(328142,42640,'blocks_0_link_stack_4_label','5.'),(328143,42640,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(328144,42640,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(328145,42640,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(328146,42640,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(328147,42640,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(328148,42640,'blocks_0_link_stack_5_label','6.'),(328149,42640,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(328150,42640,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(328151,42640,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(328152,42640,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(328153,42640,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(328154,42640,'blocks_0_link_stack','6'),(328155,42640,'_blocks_0_link_stack','field_6177b7f600cff'),(328156,42640,'blocks_1_acfe_flexible_toggle',''),(328157,42640,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328158,42640,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(328159,42640,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328160,42640,'blocks_1_options_theme','#ffffff'),(328161,42640,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(328162,42640,'blocks_1_options_reverse','0'),(328163,42640,'_blocks_1_options_reverse','field_61768049bb8ac'),(328164,42640,'blocks_1_options',''),(328165,42640,'_blocks_1_options','field_617682517c334'),(328166,42640,'blocks_1_split_5050_image','40615'),(328167,42640,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(328168,42640,'blocks_1_split_5050_video',''),(328169,42640,'_blocks_1_split_5050_video','field_6239f3160848a'),(328170,42640,'blocks_1_split_5050_content_title',''),(328171,42640,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(328172,42640,'blocks_1_split_5050_content_heading','Overview'),(328173,42640,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(328174,42640,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(328175,42640,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(328176,42640,'blocks_1_split_5050_content_actions',''),(328177,42640,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(328178,42640,'blocks_1_split_5050_content',''),(328179,42640,'_blocks_1_split_5050_content','field_61767afceb8ba'),(328180,42640,'blocks_3_acfe_flexible_toggle','1'),(328181,42640,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328182,42640,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(328183,42640,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328184,42640,'blocks_3_options_theme','#f5f5f5'),(328185,42640,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(328186,42640,'blocks_3_options_reverse','1'),(328187,42640,'_blocks_3_options_reverse','field_61768049bb8ac'),(328188,42640,'blocks_3_options',''),(328189,42640,'_blocks_3_options','field_617682517c334'),(328190,42640,'blocks_3_split_5050_image','41330'),(328191,42640,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(328192,42640,'blocks_3_split_5050_video',''),(328193,42640,'_blocks_3_split_5050_video','field_6239f3160848a'),(328194,42640,'blocks_3_split_5050_content_title',''),(328195,42640,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(328196,42640,'blocks_3_split_5050_content_heading',''),(328197,42640,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(328198,42640,'blocks_3_split_5050_content_text',''),(328199,42640,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(328200,42640,'blocks_3_split_5050_content_actions',''),(328201,42640,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(328202,42640,'blocks_3_split_5050_content',''),(328203,42640,'_blocks_3_split_5050_content','field_61767afceb8ba'),(328204,42640,'blocks_7_acfe_flexible_toggle',''),(328205,42640,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328206,42640,'blocks_7_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(328207,42640,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328208,42640,'blocks_7_options_theme','#ffffff'),(328209,42640,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(328210,42640,'blocks_7_options_reverse','0'),(328211,42640,'_blocks_7_options_reverse','field_61768049bb8ac'),(328212,42640,'blocks_7_options',''),(328213,42640,'_blocks_7_options','field_617682517c334'),(328214,42640,'blocks_7_split_5050_image','41539'),(328215,42640,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(328216,42640,'blocks_7_split_5050_video',''),(328217,42640,'_blocks_7_split_5050_video','field_6239f3160848a'),(328218,42640,'blocks_7_split_5050_content_title','Engineering & Ergonomics'),(328219,42640,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(328220,42640,'blocks_7_split_5050_content_heading',''),(328221,42640,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(328222,42640,'blocks_7_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(328223,42640,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(328224,42640,'blocks_7_split_5050_content_actions',''),(328225,42640,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(328226,42640,'blocks_7_split_5050_content',''),(328227,42640,'_blocks_7_split_5050_content','field_61767afceb8ba'),(328228,42640,'blocks_8_acfe_flexible_toggle',''),(328229,42640,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328230,42640,'blocks_8_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(328231,42640,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328232,42640,'blocks_8_options_theme','#ffffff'),(328233,42640,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(328234,42640,'blocks_8_options_reverse','0'),(328235,42640,'_blocks_8_options_reverse','field_61768049bb8ac'),(328236,42640,'blocks_8_options',''),(328237,42640,'_blocks_8_options','field_617682517c334'),(328238,42640,'blocks_8_split_5050_image','41502'),(328239,42640,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(328240,42640,'blocks_8_split_5050_video',''),(328241,42640,'_blocks_8_split_5050_video','field_6239f3160848a'),(328242,42640,'blocks_8_split_5050_content_title','Research & Academia'),(328243,42640,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(328244,42640,'blocks_8_split_5050_content_heading',''),(328245,42640,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(328246,42640,'blocks_8_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(328247,42640,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(328248,42640,'blocks_8_split_5050_content_actions',''),(328249,42640,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(328250,42640,'blocks_8_split_5050_content',''),(328251,42640,'_blocks_8_split_5050_content','field_61767afceb8ba'),(328252,42640,'blocks_13_acfe_flexible_toggle',''),(328253,42640,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328254,42640,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(328255,42640,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328256,42640,'blocks_13_options_theme','#ffffff'),(328257,42640,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(328258,42640,'blocks_13_options_reverse','1'),(328259,42640,'_blocks_13_options_reverse','field_61768049bb8ac'),(328260,42640,'blocks_13_options',''),(328261,42640,'_blocks_13_options','field_617682517c334'),(328262,42640,'blocks_13_split_5050_image','18856'),(328263,42640,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(328264,42640,'blocks_13_split_5050_video',''),(328265,42640,'_blocks_13_split_5050_video','field_6239f3160848a'),(328266,42640,'blocks_13_split_5050_content_title','Bridging the Gap Between Disciplines'),(328267,42640,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(328268,42640,'blocks_13_split_5050_content_heading',''),(328269,42640,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(328270,42640,'blocks_13_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(328271,42640,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(328272,42640,'blocks_13_split_5050_content_actions',''),(328273,42640,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(328274,42640,'blocks_13_split_5050_content',''),(328275,42640,'_blocks_13_split_5050_content','field_61767afceb8ba'),(328276,42640,'blocks_19_acfe_flexible_toggle',''),(328277,42640,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(328278,42640,'blocks_19_acfe_flexible_layout_title','Conclusion'),(328279,42640,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(328280,42640,'blocks_19_options_theme','#b61234'),(328281,42640,'_blocks_19_options_theme','field_6176830e2ad17'),(328282,42640,'blocks_19_options',''),(328283,42640,'_blocks_19_options','field_6176830e2ad16'),(328284,42640,'blocks_19_text_block_heading','Conclusion'),(328285,42640,'_blocks_19_text_block_heading','field_617669d413097'),(328286,42640,'blocks_19_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(328287,42640,'_blocks_19_text_block_content','field_617669ec13098'),(328288,42640,'blocks_6_acfe_flexible_toggle',''),(328289,42640,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328290,42640,'blocks_6_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(328291,42640,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328292,42640,'blocks_6_options_theme','#ffffff'),(328293,42640,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(328294,42640,'blocks_6_options_reverse','0'),(328295,42640,'_blocks_6_options_reverse','field_61768049bb8ac'),(328296,42640,'blocks_6_options',''),(328297,42640,'_blocks_6_options','field_617682517c334'),(328298,42640,'blocks_6_split_5050_image','41505'),(328299,42640,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(328300,42640,'blocks_6_split_5050_video',''),(328301,42640,'_blocks_6_split_5050_video','field_6239f3160848a'),(328302,42640,'blocks_6_split_5050_content_title','Healthcare & Rehabilitation'),(328303,42640,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(328304,42640,'blocks_6_split_5050_content_heading',''),(328305,42640,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(328306,42640,'blocks_6_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(328307,42640,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(328308,42640,'blocks_6_split_5050_content_actions',''),(328309,42640,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(328310,42640,'blocks_6_split_5050_content',''),(328311,42640,'_blocks_6_split_5050_content','field_61767afceb8ba'),(328312,42640,'blocks_2_acfe_flexible_toggle',''),(328313,42640,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328314,42640,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(328315,42640,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328316,42640,'blocks_2_options_theme','#f5f5f5'),(328317,42640,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(328318,42640,'blocks_2_options_reverse','1'),(328319,42640,'_blocks_2_options_reverse','field_61768049bb8ac'),(328320,42640,'blocks_2_options',''),(328321,42640,'_blocks_2_options','field_617682517c334'),(328322,42640,'blocks_2_split_5050_image','41307'),(328323,42640,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(328324,42640,'blocks_2_split_5050_video',''),(328325,42640,'_blocks_2_split_5050_video','field_6239f3160848a'),(328326,42640,'blocks_2_split_5050_content_title',''),(328327,42640,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(328328,42640,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(328329,42640,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(328330,42640,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(328331,42640,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(328332,42640,'blocks_2_split_5050_content_actions',''),(328333,42640,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(328334,42640,'blocks_2_split_5050_content',''),(328335,42640,'_blocks_2_split_5050_content','field_61767afceb8ba'),(328336,42640,'blocks_4_acfe_flexible_toggle',''),(328337,42640,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(328338,42640,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(328339,42640,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(328340,42640,'blocks_4_options_theme','#ffffff'),(328341,42640,'_blocks_4_options_theme','field_6176830e2ad17'),(328342,42640,'blocks_4_options',''),(328343,42640,'_blocks_4_options','field_6176830e2ad16'),(328344,42640,'blocks_4_text_block_heading','Define Your Career Goals'),(328345,42640,'_blocks_4_text_block_heading','field_617669d413097'),(328346,42640,'blocks_4_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(328347,42640,'_blocks_4_text_block_content','field_617669ec13098'),(328348,42640,'blocks_5_acfe_flexible_toggle',''),(328349,42640,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328350,42640,'blocks_5_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(328351,42640,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328352,42640,'blocks_5_options_theme','#ffffff'),(328353,42640,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(328354,42640,'blocks_5_options_reverse','0'),(328355,42640,'_blocks_5_options_reverse','field_61768049bb8ac'),(328356,42640,'blocks_5_options',''),(328357,42640,'_blocks_5_options','field_617682517c334'),(328358,42640,'blocks_5_split_5050_image','41542'),(328359,42640,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(328360,42640,'blocks_5_split_5050_video',''),(328361,42640,'_blocks_5_split_5050_video','field_6239f3160848a'),(328362,42640,'blocks_5_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(328363,42640,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(328364,42640,'blocks_5_split_5050_content_heading',''),(328365,42640,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(328366,42640,'blocks_5_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(328367,42640,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(328368,42640,'blocks_5_split_5050_content_actions',''),(328369,42640,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(328370,42640,'blocks_5_split_5050_content',''),(328371,42640,'_blocks_5_split_5050_content','field_61767afceb8ba'),(328372,42640,'blocks_12_acfe_flexible_toggle',''),(328373,42640,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328374,42640,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(328375,42640,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328376,42640,'blocks_12_options_theme','#ffffff'),(328377,42640,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(328378,42640,'blocks_12_options_reverse','1'),(328379,42640,'_blocks_12_options_reverse','field_61768049bb8ac'),(328380,42640,'blocks_12_options',''),(328381,42640,'_blocks_12_options','field_617682517c334'),(328382,42640,'blocks_12_split_5050_image','40387'),(328383,42640,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(328384,42640,'blocks_12_split_5050_video',''),(328385,42640,'_blocks_12_split_5050_video','field_6239f3160848a'),(328386,42640,'blocks_12_split_5050_content_title','Early Detection and Targeted Interventions'),(328387,42640,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(328388,42640,'blocks_12_split_5050_content_heading',''),(328389,42640,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(328390,42640,'blocks_12_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(328391,42640,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(328392,42640,'blocks_12_split_5050_content_actions',''),(328393,42640,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(328394,42640,'blocks_12_split_5050_content',''),(328395,42640,'_blocks_12_split_5050_content','field_61767afceb8ba'),(328396,42640,'blocks_18_acfe_flexible_toggle',''),(328397,42640,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(328398,42640,'blocks_18_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(328399,42640,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(328400,42640,'blocks_18_options_theme','#ffffff'),(328401,42640,'_blocks_18_options_theme','field_6176830e2ad17'),(328402,42640,'blocks_18_options',''),(328403,42640,'_blocks_18_options','field_6176830e2ad16'),(328404,42640,'blocks_18_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(328405,42640,'_blocks_18_text_block_heading','field_617669d413097'),(328406,42640,'blocks_18_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(328407,42640,'_blocks_18_text_block_content','field_617669ec13098'),(328408,42640,'blocks_9_acfe_flexible_toggle',''),(328409,42640,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(328410,42640,'blocks_9_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(328411,42640,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(328412,42640,'blocks_9_options_theme','#f5f5f5'),(328413,42640,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(328414,42640,'blocks_9_options_state','0'),(328415,42640,'_blocks_9_options_state','field_6239fcb7508c5'),(328416,42640,'blocks_9_options',''),(328417,42640,'_blocks_9_options','field_6177e2991ac44'),(328418,42640,'blocks_9_content_title',''),(328419,42640,'_blocks_9_content_title','field_64d237e8bb1e2'),(328420,42640,'blocks_9_content_heading','Common MSK Conditions'),(328421,42640,'_blocks_9_content_heading','field_64d237e8bb1e3'),(328422,42640,'blocks_9_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(328423,42640,'_blocks_9_content_text','field_64d237e8bb1e4'),(328424,42640,'blocks_9_content_actions',''),(328425,42640,'_blocks_9_content_actions','field_64d237e8bb1e5'),(328426,42640,'blocks_9_content_align','left'),(328427,42640,'_blocks_9_content_align','field_64d2443e6b6aa'),(328428,42640,'blocks_9_content',''),(328429,42640,'_blocks_9_content','field_64d237e8bb1e1'),(328430,42640,'blocks_9_accordion_content','custom'),(328431,42640,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(328432,42640,'blocks_9_accordion_items_0_title','Osteoarthritis'),(328433,42640,'_blocks_9_accordion_items_0_title','field_6177e2991ac4d'),(328434,42640,'blocks_9_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(328435,42640,'_blocks_9_accordion_items_0_text','field_6177e2991ac4e'),(328436,42640,'blocks_9_accordion_items_1_title','Rheumatoid Arthritis'),(328437,42640,'_blocks_9_accordion_items_1_title','field_6177e2991ac4d'),(328438,42640,'blocks_9_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(328439,42640,'_blocks_9_accordion_items_1_text','field_6177e2991ac4e'),(328440,42640,'blocks_9_accordion_items_2_title','Back Pain'),(328441,42640,'_blocks_9_accordion_items_2_title','field_6177e2991ac4d'),(328442,42640,'blocks_9_accordion_items_2_text','One of the most widespread MSK issues, often caused by muscle imbalances or prolonged inactivity.'),(328443,42640,'_blocks_9_accordion_items_2_text','field_6177e2991ac4e'),(328444,42640,'blocks_9_accordion_items_3_title','Osteoporosis'),(328445,42640,'_blocks_9_accordion_items_3_title','field_6177e2991ac4d'),(328446,42640,'blocks_9_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(328447,42640,'_blocks_9_accordion_items_3_text','field_6177e2991ac4e'),(328448,42640,'blocks_9_accordion_items_4_title','Tendinitis'),(328449,42640,'_blocks_9_accordion_items_4_title','field_6177e2991ac4d'),(328450,42640,'blocks_9_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(328451,42640,'_blocks_9_accordion_items_4_text','field_6177e2991ac4e'),(328452,42640,'blocks_9_accordion_items_5_title','Carpal Tunnel Syndrome'),(328453,42640,'_blocks_9_accordion_items_5_title','field_6177e2991ac4d'),(328454,42640,'blocks_9_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(328455,42640,'_blocks_9_accordion_items_5_text','field_6177e2991ac4e'),(328456,42640,'blocks_9_accordion_items_6_title','Fibromyalgia'),(328457,42640,'_blocks_9_accordion_items_6_title','field_6177e2991ac4d'),(328458,42640,'blocks_9_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(328459,42640,'_blocks_9_accordion_items_6_text','field_6177e2991ac4e'),(328460,42640,'blocks_9_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(328461,42640,'_blocks_9_accordion_items_7_title','field_6177e2991ac4d'),(328462,42640,'blocks_9_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(328463,42640,'_blocks_9_accordion_items_7_text','field_6177e2991ac4e'),(328464,42640,'blocks_9_accordion_items','8'),(328465,42640,'_blocks_9_accordion_items','field_6177e2991ac4c'),(328466,42640,'blocks_9_actions',''),(328467,42640,'_blocks_9_actions','field_61a746a817f7a'),(328468,42640,'blocks_10_acfe_flexible_toggle',''),(328469,42640,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(328470,42640,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(328471,42640,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(328472,42640,'blocks_10_options_theme','#ffffff'),(328473,42640,'_blocks_10_options_theme','field_6176830e2ad17'),(328474,42640,'blocks_10_options',''),(328475,42640,'_blocks_10_options','field_6176830e2ad16'),(328476,42640,'blocks_10_text_block_heading','The Importance of MSK Education'),(328477,42640,'_blocks_10_text_block_heading','field_617669d413097'),(328478,42640,'blocks_10_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(328479,42640,'_blocks_10_text_block_content','field_617669ec13098'),(328480,42640,'blocks_11_acfe_flexible_toggle',''),(328481,42640,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328482,42640,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(328483,42640,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328484,42640,'blocks_11_options_theme','#ffffff'),(328485,42640,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(328486,42640,'blocks_11_options_reverse','1'),(328487,42640,'_blocks_11_options_reverse','field_61768049bb8ac'),(328488,42640,'blocks_11_options',''),(328489,42640,'_blocks_11_options','field_617682517c334'),(328490,42640,'blocks_11_split_5050_image','41498'),(328491,42640,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(328492,42640,'blocks_11_split_5050_video',''),(328493,42640,'_blocks_11_split_5050_video','field_6239f3160848a'),(328494,42640,'blocks_11_split_5050_content_title','Building a Strong Foundation in MSK Health'),(328495,42640,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(328496,42640,'blocks_11_split_5050_content_heading',''),(328497,42640,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(328498,42640,'blocks_11_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(328499,42640,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(328500,42640,'blocks_11_split_5050_content_actions',''),(328501,42640,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(328502,42640,'blocks_11_split_5050_content',''),(328503,42640,'_blocks_11_split_5050_content','field_61767afceb8ba'),(328504,42640,'blocks_14_acfe_flexible_toggle',''),(328505,42640,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(328506,42640,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(328507,42640,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(328508,42640,'blocks_14_options_theme','#b61234'),(328509,42640,'_blocks_14_options_theme','field_6176830e2ad17'),(328510,42640,'blocks_14_options',''),(328511,42640,'_blocks_14_options','field_6176830e2ad16'),(328512,42640,'blocks_14_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(328513,42640,'_blocks_14_text_block_heading','field_617669d413097'),(328514,42640,'blocks_14_text_block_content',''),(328515,42640,'_blocks_14_text_block_content','field_617669ec13098'),(328516,42640,'blocks_15_acfe_flexible_toggle',''),(328517,42640,'_blocks_15_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(328518,42640,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(328519,42640,'_blocks_15_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(328520,42640,'blocks_15_options_theme','#b61234'),(328521,42640,'_blocks_15_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(328522,42640,'blocks_15_options_format','row'),(328523,42640,'_blocks_15_options_format','field_64bfde9a90690'),(328524,42640,'blocks_15_options',''),(328525,42640,'_blocks_15_options','field_64bfdd9b90684'),(328526,42640,'blocks_15_icon_row_items_0_icon','pass-rate.svg'),(328527,42640,'_blocks_15_icon_row_items_0_icon','field_64bfdd9b9068d'),(328528,42640,'blocks_15_icon_row_items_0_label','More Accurate Assessments'),(328529,42640,'_blocks_15_icon_row_items_0_label','field_64bfdd9c9068e'),(328530,42640,'blocks_15_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(328531,42640,'_blocks_15_icon_row_items_0_text','field_64bfdd9c9068f'),(328532,42640,'blocks_15_icon_row_items_1_icon','exceptional-support.svg'),(328533,42640,'_blocks_15_icon_row_items_1_icon','field_64bfdd9b9068d'),(328534,42640,'blocks_15_icon_row_items_1_label','Personalised Movement Strategies'),(328535,42640,'_blocks_15_icon_row_items_1_label','field_64bfdd9c9068e'),(328536,42640,'blocks_15_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(328537,42640,'_blocks_15_icon_row_items_1_text','field_64bfdd9c9068f'),(328538,42640,'blocks_15_icon_row_items_2_icon','lifetime-course-access.svg'),(328539,42640,'_blocks_15_icon_row_items_2_icon','field_64bfdd9b9068d'),(328540,42640,'blocks_15_icon_row_items_2_label','Injury Prevention and Longevity'),(328541,42640,'_blocks_15_icon_row_items_2_label','field_64bfdd9c9068e'),(328542,42640,'blocks_15_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(328543,42640,'_blocks_15_icon_row_items_2_text','field_64bfdd9c9068f'),(328544,42640,'blocks_15_icon_row_items_3_icon','recognised.svg'),(328545,42640,'_blocks_15_icon_row_items_3_icon','field_64bfdd9b9068d'),(328546,42640,'blocks_15_icon_row_items_3_label','Optimised Performance'),(328547,42640,'_blocks_15_icon_row_items_3_label','field_64bfdd9c9068e'),(328548,42640,'blocks_15_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(328549,42640,'_blocks_15_icon_row_items_3_text','field_64bfdd9c9068f'),(328550,42640,'blocks_15_icon_row_items','4'),(328551,42640,'_blocks_15_icon_row_items','field_64bfdd9b9068c'),(328552,42640,'blocks_16_acfe_flexible_toggle',''),(328553,42640,'_blocks_16_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328554,42640,'blocks_16_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(328555,42640,'_blocks_16_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328556,42640,'blocks_16_options_theme','#ffffff'),(328557,42640,'_blocks_16_options_theme','field_617682847c335_field_6176830e2ad17'),(328558,42640,'blocks_16_options_reverse','0'),(328559,42640,'_blocks_16_options_reverse','field_61768049bb8ac'),(328560,42640,'blocks_16_options',''),(328561,42640,'_blocks_16_options','field_617682517c334'),(328562,42640,'blocks_16_split_5050_image','41501'),(328563,42640,'_blocks_16_split_5050_image','field_6239f527a0c3a'),(328564,42640,'blocks_16_split_5050_video',''),(328565,42640,'_blocks_16_split_5050_video','field_6239f3160848a'),(328566,42640,'blocks_16_split_5050_content_title',''),(328567,42640,'_blocks_16_split_5050_content_title','field_61767bfca3fc0'),(328568,42640,'blocks_16_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(328569,42640,'_blocks_16_split_5050_content_heading','field_61767b26eb8bb'),(328570,42640,'blocks_16_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(328571,42640,'_blocks_16_split_5050_content_text','field_61767b3beb8bc'),(328572,42640,'blocks_16_split_5050_content_actions',''),(328573,42640,'_blocks_16_split_5050_content_actions','field_61767b68eb8bd'),(328574,42640,'blocks_16_split_5050_content',''),(328575,42640,'_blocks_16_split_5050_content','field_61767afceb8ba'),(328576,42640,'blocks_17_acfe_flexible_toggle',''),(328577,42640,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(328578,42640,'blocks_17_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(328579,42640,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(328580,42640,'blocks_17_options_theme','#ffffff'),(328581,42640,'_blocks_17_options_theme','field_6176830e2ad17'),(328582,42640,'blocks_17_options',''),(328583,42640,'_blocks_17_options','field_6176830e2ad16'),(328584,42640,'blocks_17_text_block_heading','The Role of MSK Education in Workplace Health'),(328585,42640,'_blocks_17_text_block_heading','field_617669d413097'),(328586,42640,'blocks_17_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(328587,42640,'_blocks_17_text_block_content','field_617669ec13098'),(328588,42640,'blocks_20_acfe_flexible_toggle',''),(328589,42640,'_blocks_20_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(328590,42640,'blocks_20_acfe_flexible_layout_title','Promo Panel'),(328591,42640,'_blocks_20_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(328592,42640,'blocks_20_options_alignment','center'),(328593,42640,'_blocks_20_options_alignment','field_61769449f5490'),(328594,42640,'blocks_20_options',''),(328595,42640,'_blocks_20_options','field_617693e1428f0'),(328596,42640,'blocks_20_promo_panel_image','41307'),(328597,42640,'_blocks_20_promo_panel_image','field_617693e1428f3'),(328598,42640,'blocks_20_promo_panel_content_heading','Want to Get Started?'),(328599,42640,'_blocks_20_promo_panel_content_heading','field_617693e1428f6'),(328600,42640,'blocks_20_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(328601,42640,'_blocks_20_promo_panel_content_text','field_617693e1428f7'),(328602,42640,'blocks_20_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(328603,42640,'_blocks_20_promo_panel_content_actions_0_button','field_617693e1428f9'),(328604,42640,'blocks_20_promo_panel_content_actions','1'),(328605,42640,'_blocks_20_promo_panel_content_actions','field_617693e1428f8'),(328606,42640,'blocks_20_promo_panel_content',''),(328607,42640,'_blocks_20_promo_panel_content','field_617693e1428f4'),(328608,42641,'hide_hero','0'),(328609,42641,'_hide_hero','field_66a2380fcda39'),(328610,42641,'hero_title',''),(328611,42641,'_hero_title','field_617571fe285e8'),(328612,42641,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(328613,42641,'_hero_text','field_6175723c285e9'),(328614,42641,'hero_actions',''),(328615,42641,'_hero_actions','field_61757270285ea'),(328616,42641,'hero_style','default'),(328617,42641,'_hero_style','field_62051d9dc5324'),(328618,42641,'hero_image_pos_x','right'),(328619,42641,'_hero_image_pos_x','field_62ec3d05390bb'),(328620,42641,'hero_image_pos_y','top'),(328621,42641,'_hero_image_pos_y','field_62ec3d05390bc'),(328622,42641,'hero_image_pos',''),(328623,42641,'_hero_image_pos','field_62ec3d05390ba'),(328624,42641,'fft_hide_from_listings','0'),(328625,42641,'_fft_hide_from_listings','field_61f1320446ab2'),(328626,42641,'post_format','402'),(328627,42641,'_post_format','field_61756bfb51898'),(328628,42641,'post_author',''),(328629,42641,'_post_author','field_62ec389d22113'),(328630,42641,'post_reviewer',''),(328631,42641,'_post_reviewer','field_627140a2a9800'),(328632,42641,'post_table_of_contents','0'),(328633,42641,'_post_table_of_contents','field_65c503bc846a6'),(328634,42641,'blocks','a:21:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"text_block\";i:15;s:5:\"icons\";i:16;s:10:\"split_5050\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:11:\"promo_panel\";}'),(328635,42641,'_blocks','field_6176696113096'),(328636,42641,'_thumbnail_id','40618'),(328637,42641,'__thumbnail_id','field_617570855ddaf'),(328638,42641,'blocks_0_acfe_flexible_toggle',''),(328639,42641,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(328640,42641,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(328641,42641,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(328642,42641,'blocks_0_options_theme','#ffffff'),(328643,42641,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(328644,42641,'blocks_0_options',''),(328645,42641,'_blocks_0_options','field_6177b758246ae'),(328646,42641,'blocks_0_link_stack_content_title',''),(328647,42641,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(328648,42641,'blocks_0_link_stack_content_heading','Introduction'),(328649,42641,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(328650,42641,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(328651,42641,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(328652,42641,'blocks_0_link_stack_content_actions_0_button',''),(328653,42641,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(328654,42641,'blocks_0_link_stack_content_actions','1'),(328655,42641,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(328656,42641,'blocks_0_link_stack_content',''),(328657,42641,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(328658,42641,'blocks_0_link_stack_0_label','1.'),(328659,42641,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(328660,42641,'blocks_0_link_stack_0_title','Overview'),(328661,42641,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(328662,42641,'blocks_0_link_stack_0_url','#overview'),(328663,42641,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(328664,42641,'blocks_0_link_stack_1_label','2.'),(328665,42641,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(328666,42641,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(328667,42641,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(328668,42641,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(328669,42641,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(328670,42641,'blocks_0_link_stack_2_label','3.'),(328671,42641,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(328672,42641,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(328673,42641,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(328674,42641,'blocks_0_link_stack_2_url','#who-should-study-msk'),(328675,42641,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(328676,42641,'blocks_0_link_stack_3_label','4.'),(328677,42641,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(328678,42641,'blocks_0_link_stack_3_title','Common MSK Conditions'),(328679,42641,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(328680,42641,'blocks_0_link_stack_3_url','#common-msk-conditions'),(328681,42641,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(328682,42641,'blocks_0_link_stack_4_label','5.'),(328683,42641,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(328684,42641,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(328685,42641,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(328686,42641,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(328687,42641,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(328688,42641,'blocks_0_link_stack_5_label','6.'),(328689,42641,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(328690,42641,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(328691,42641,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(328692,42641,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(328693,42641,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(328694,42641,'blocks_0_link_stack','6'),(328695,42641,'_blocks_0_link_stack','field_6177b7f600cff'),(328696,42641,'blocks_1_acfe_flexible_toggle',''),(328697,42641,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328698,42641,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(328699,42641,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328700,42641,'blocks_1_options_theme','#ffffff'),(328701,42641,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(328702,42641,'blocks_1_options_reverse','0'),(328703,42641,'_blocks_1_options_reverse','field_61768049bb8ac'),(328704,42641,'blocks_1_options',''),(328705,42641,'_blocks_1_options','field_617682517c334'),(328706,42641,'blocks_1_split_5050_image','40615'),(328707,42641,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(328708,42641,'blocks_1_split_5050_video',''),(328709,42641,'_blocks_1_split_5050_video','field_6239f3160848a'),(328710,42641,'blocks_1_split_5050_content_title',''),(328711,42641,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(328712,42641,'blocks_1_split_5050_content_heading','Overview'),(328713,42641,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(328714,42641,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(328715,42641,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(328716,42641,'blocks_1_split_5050_content_actions',''),(328717,42641,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(328718,42641,'blocks_1_split_5050_content',''),(328719,42641,'_blocks_1_split_5050_content','field_61767afceb8ba'),(328720,42641,'blocks_3_acfe_flexible_toggle','1'),(328721,42641,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328722,42641,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(328723,42641,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328724,42641,'blocks_3_options_theme','#f5f5f5'),(328725,42641,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(328726,42641,'blocks_3_options_reverse','1'),(328727,42641,'_blocks_3_options_reverse','field_61768049bb8ac'),(328728,42641,'blocks_3_options',''),(328729,42641,'_blocks_3_options','field_617682517c334'),(328730,42641,'blocks_3_split_5050_image','41330'),(328731,42641,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(328732,42641,'blocks_3_split_5050_video',''),(328733,42641,'_blocks_3_split_5050_video','field_6239f3160848a'),(328734,42641,'blocks_3_split_5050_content_title',''),(328735,42641,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(328736,42641,'blocks_3_split_5050_content_heading',''),(328737,42641,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(328738,42641,'blocks_3_split_5050_content_text',''),(328739,42641,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(328740,42641,'blocks_3_split_5050_content_actions',''),(328741,42641,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(328742,42641,'blocks_3_split_5050_content',''),(328743,42641,'_blocks_3_split_5050_content','field_61767afceb8ba'),(328744,42641,'blocks_7_acfe_flexible_toggle',''),(328745,42641,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328746,42641,'blocks_7_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(328747,42641,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328748,42641,'blocks_7_options_theme','#ffffff'),(328749,42641,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(328750,42641,'blocks_7_options_reverse','0'),(328751,42641,'_blocks_7_options_reverse','field_61768049bb8ac'),(328752,42641,'blocks_7_options',''),(328753,42641,'_blocks_7_options','field_617682517c334'),(328754,42641,'blocks_7_split_5050_image','41539'),(328755,42641,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(328756,42641,'blocks_7_split_5050_video',''),(328757,42641,'_blocks_7_split_5050_video','field_6239f3160848a'),(328758,42641,'blocks_7_split_5050_content_title','Engineering & Ergonomics'),(328759,42641,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(328760,42641,'blocks_7_split_5050_content_heading',''),(328761,42641,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(328762,42641,'blocks_7_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(328763,42641,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(328764,42641,'blocks_7_split_5050_content_actions',''),(328765,42641,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(328766,42641,'blocks_7_split_5050_content',''),(328767,42641,'_blocks_7_split_5050_content','field_61767afceb8ba'),(328768,42641,'blocks_8_acfe_flexible_toggle',''),(328769,42641,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328770,42641,'blocks_8_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(328771,42641,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328772,42641,'blocks_8_options_theme','#ffffff'),(328773,42641,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(328774,42641,'blocks_8_options_reverse','0'),(328775,42641,'_blocks_8_options_reverse','field_61768049bb8ac'),(328776,42641,'blocks_8_options',''),(328777,42641,'_blocks_8_options','field_617682517c334'),(328778,42641,'blocks_8_split_5050_image','41502'),(328779,42641,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(328780,42641,'blocks_8_split_5050_video',''),(328781,42641,'_blocks_8_split_5050_video','field_6239f3160848a'),(328782,42641,'blocks_8_split_5050_content_title','Research & Academia'),(328783,42641,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(328784,42641,'blocks_8_split_5050_content_heading',''),(328785,42641,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(328786,42641,'blocks_8_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(328787,42641,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(328788,42641,'blocks_8_split_5050_content_actions',''),(328789,42641,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(328790,42641,'blocks_8_split_5050_content',''),(328791,42641,'_blocks_8_split_5050_content','field_61767afceb8ba'),(328792,42641,'blocks_13_acfe_flexible_toggle',''),(328793,42641,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328794,42641,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(328795,42641,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328796,42641,'blocks_13_options_theme','#ffffff'),(328797,42641,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(328798,42641,'blocks_13_options_reverse','1'),(328799,42641,'_blocks_13_options_reverse','field_61768049bb8ac'),(328800,42641,'blocks_13_options',''),(328801,42641,'_blocks_13_options','field_617682517c334'),(328802,42641,'blocks_13_split_5050_image','18856'),(328803,42641,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(328804,42641,'blocks_13_split_5050_video',''),(328805,42641,'_blocks_13_split_5050_video','field_6239f3160848a'),(328806,42641,'blocks_13_split_5050_content_title','Bridging the Gap Between Disciplines'),(328807,42641,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(328808,42641,'blocks_13_split_5050_content_heading',''),(328809,42641,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(328810,42641,'blocks_13_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(328811,42641,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(328812,42641,'blocks_13_split_5050_content_actions',''),(328813,42641,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(328814,42641,'blocks_13_split_5050_content',''),(328815,42641,'_blocks_13_split_5050_content','field_61767afceb8ba'),(328816,42641,'blocks_19_acfe_flexible_toggle',''),(328817,42641,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(328818,42641,'blocks_19_acfe_flexible_layout_title','Conclusion'),(328819,42641,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(328820,42641,'blocks_19_options_theme','#b61234'),(328821,42641,'_blocks_19_options_theme','field_6176830e2ad17'),(328822,42641,'blocks_19_options',''),(328823,42641,'_blocks_19_options','field_6176830e2ad16'),(328824,42641,'blocks_19_text_block_heading','Conclusion'),(328825,42641,'_blocks_19_text_block_heading','field_617669d413097'),(328826,42641,'blocks_19_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(328827,42641,'_blocks_19_text_block_content','field_617669ec13098'),(328828,42641,'blocks_6_acfe_flexible_toggle',''),(328829,42641,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328830,42641,'blocks_6_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(328831,42641,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328832,42641,'blocks_6_options_theme','#ffffff'),(328833,42641,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(328834,42641,'blocks_6_options_reverse','0'),(328835,42641,'_blocks_6_options_reverse','field_61768049bb8ac'),(328836,42641,'blocks_6_options',''),(328837,42641,'_blocks_6_options','field_617682517c334'),(328838,42641,'blocks_6_split_5050_image','41505'),(328839,42641,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(328840,42641,'blocks_6_split_5050_video',''),(328841,42641,'_blocks_6_split_5050_video','field_6239f3160848a'),(328842,42641,'blocks_6_split_5050_content_title','Healthcare & Rehabilitation'),(328843,42641,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(328844,42641,'blocks_6_split_5050_content_heading',''),(328845,42641,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(328846,42641,'blocks_6_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(328847,42641,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(328848,42641,'blocks_6_split_5050_content_actions',''),(328849,42641,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(328850,42641,'blocks_6_split_5050_content',''),(328851,42641,'_blocks_6_split_5050_content','field_61767afceb8ba'),(328852,42641,'blocks_2_acfe_flexible_toggle',''),(328853,42641,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328854,42641,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(328855,42641,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328856,42641,'blocks_2_options_theme','#f5f5f5'),(328857,42641,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(328858,42641,'blocks_2_options_reverse','1'),(328859,42641,'_blocks_2_options_reverse','field_61768049bb8ac'),(328860,42641,'blocks_2_options',''),(328861,42641,'_blocks_2_options','field_617682517c334'),(328862,42641,'blocks_2_split_5050_image','41307'),(328863,42641,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(328864,42641,'blocks_2_split_5050_video',''),(328865,42641,'_blocks_2_split_5050_video','field_6239f3160848a'),(328866,42641,'blocks_2_split_5050_content_title',''),(328867,42641,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(328868,42641,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(328869,42641,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(328870,42641,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(328871,42641,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(328872,42641,'blocks_2_split_5050_content_actions',''),(328873,42641,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(328874,42641,'blocks_2_split_5050_content',''),(328875,42641,'_blocks_2_split_5050_content','field_61767afceb8ba'),(328876,42641,'blocks_4_acfe_flexible_toggle',''),(328877,42641,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(328878,42641,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(328879,42641,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(328880,42641,'blocks_4_options_theme','#ffffff'),(328881,42641,'_blocks_4_options_theme','field_6176830e2ad17'),(328882,42641,'blocks_4_options',''),(328883,42641,'_blocks_4_options','field_6176830e2ad16'),(328884,42641,'blocks_4_text_block_heading','Define Your Career Goals'),(328885,42641,'_blocks_4_text_block_heading','field_617669d413097'),(328886,42641,'blocks_4_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(328887,42641,'_blocks_4_text_block_content','field_617669ec13098'),(328888,42641,'blocks_5_acfe_flexible_toggle',''),(328889,42641,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328890,42641,'blocks_5_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(328891,42641,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328892,42641,'blocks_5_options_theme','#ffffff'),(328893,42641,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(328894,42641,'blocks_5_options_reverse','0'),(328895,42641,'_blocks_5_options_reverse','field_61768049bb8ac'),(328896,42641,'blocks_5_options',''),(328897,42641,'_blocks_5_options','field_617682517c334'),(328898,42641,'blocks_5_split_5050_image','41542'),(328899,42641,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(328900,42641,'blocks_5_split_5050_video',''),(328901,42641,'_blocks_5_split_5050_video','field_6239f3160848a'),(328902,42641,'blocks_5_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(328903,42641,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(328904,42641,'blocks_5_split_5050_content_heading',''),(328905,42641,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(328906,42641,'blocks_5_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(328907,42641,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(328908,42641,'blocks_5_split_5050_content_actions',''),(328909,42641,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(328910,42641,'blocks_5_split_5050_content',''),(328911,42641,'_blocks_5_split_5050_content','field_61767afceb8ba'),(328912,42641,'blocks_12_acfe_flexible_toggle',''),(328913,42641,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(328914,42641,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(328915,42641,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(328916,42641,'blocks_12_options_theme','#ffffff'),(328917,42641,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(328918,42641,'blocks_12_options_reverse','1'),(328919,42641,'_blocks_12_options_reverse','field_61768049bb8ac'),(328920,42641,'blocks_12_options',''),(328921,42641,'_blocks_12_options','field_617682517c334'),(328922,42641,'blocks_12_split_5050_image','40387'),(328923,42641,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(328924,42641,'blocks_12_split_5050_video',''),(328925,42641,'_blocks_12_split_5050_video','field_6239f3160848a'),(328926,42641,'blocks_12_split_5050_content_title','Early Detection and Targeted Interventions'),(328927,42641,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(328928,42641,'blocks_12_split_5050_content_heading',''),(328929,42641,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(328930,42641,'blocks_12_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(328931,42641,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(328932,42641,'blocks_12_split_5050_content_actions',''),(328933,42641,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(328934,42641,'blocks_12_split_5050_content',''),(328935,42641,'_blocks_12_split_5050_content','field_61767afceb8ba'),(328936,42641,'blocks_18_acfe_flexible_toggle',''),(328937,42641,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(328938,42641,'blocks_18_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(328939,42641,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(328940,42641,'blocks_18_options_theme','#ffffff'),(328941,42641,'_blocks_18_options_theme','field_6176830e2ad17'),(328942,42641,'blocks_18_options',''),(328943,42641,'_blocks_18_options','field_6176830e2ad16'),(328944,42641,'blocks_18_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(328945,42641,'_blocks_18_text_block_heading','field_617669d413097'),(328946,42641,'blocks_18_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(328947,42641,'_blocks_18_text_block_content','field_617669ec13098'),(328948,42641,'blocks_9_acfe_flexible_toggle',''),(328949,42641,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(328950,42641,'blocks_9_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(328951,42641,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(328952,42641,'blocks_9_options_theme','#f5f5f5'),(328953,42641,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(328954,42641,'blocks_9_options_state','0'),(328955,42641,'_blocks_9_options_state','field_6239fcb7508c5'),(328956,42641,'blocks_9_options',''),(328957,42641,'_blocks_9_options','field_6177e2991ac44'),(328958,42641,'blocks_9_content_title',''),(328959,42641,'_blocks_9_content_title','field_64d237e8bb1e2'),(328960,42641,'blocks_9_content_heading','Common MSK Conditions'),(328961,42641,'_blocks_9_content_heading','field_64d237e8bb1e3'),(328962,42641,'blocks_9_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(328963,42641,'_blocks_9_content_text','field_64d237e8bb1e4'),(328964,42641,'blocks_9_content_actions',''),(328965,42641,'_blocks_9_content_actions','field_64d237e8bb1e5'),(328966,42641,'blocks_9_content_align','left'),(328967,42641,'_blocks_9_content_align','field_64d2443e6b6aa'),(328968,42641,'blocks_9_content',''),(328969,42641,'_blocks_9_content','field_64d237e8bb1e1'),(328970,42641,'blocks_9_accordion_content','custom'),(328971,42641,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(328972,42641,'blocks_9_accordion_items_0_title','Osteoarthritis'),(328973,42641,'_blocks_9_accordion_items_0_title','field_6177e2991ac4d'),(328974,42641,'blocks_9_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(328975,42641,'_blocks_9_accordion_items_0_text','field_6177e2991ac4e'),(328976,42641,'blocks_9_accordion_items_1_title','Rheumatoid Arthritis'),(328977,42641,'_blocks_9_accordion_items_1_title','field_6177e2991ac4d'),(328978,42641,'blocks_9_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(328979,42641,'_blocks_9_accordion_items_1_text','field_6177e2991ac4e'),(328980,42641,'blocks_9_accordion_items_2_title','Back Pain'),(328981,42641,'_blocks_9_accordion_items_2_title','field_6177e2991ac4d'),(328982,42641,'blocks_9_accordion_items_2_text','One of the most widespread MSK issues, often caused by muscle imbalances or prolonged inactivity.'),(328983,42641,'_blocks_9_accordion_items_2_text','field_6177e2991ac4e'),(328984,42641,'blocks_9_accordion_items_3_title','Osteoporosis'),(328985,42641,'_blocks_9_accordion_items_3_title','field_6177e2991ac4d'),(328986,42641,'blocks_9_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(328987,42641,'_blocks_9_accordion_items_3_text','field_6177e2991ac4e'),(328988,42641,'blocks_9_accordion_items_4_title','Tendinitis'),(328989,42641,'_blocks_9_accordion_items_4_title','field_6177e2991ac4d'),(328990,42641,'blocks_9_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(328991,42641,'_blocks_9_accordion_items_4_text','field_6177e2991ac4e'),(328992,42641,'blocks_9_accordion_items_5_title','Carpal Tunnel Syndrome'),(328993,42641,'_blocks_9_accordion_items_5_title','field_6177e2991ac4d'),(328994,42641,'blocks_9_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(328995,42641,'_blocks_9_accordion_items_5_text','field_6177e2991ac4e'),(328996,42641,'blocks_9_accordion_items_6_title','Fibromyalgia'),(328997,42641,'_blocks_9_accordion_items_6_title','field_6177e2991ac4d'),(328998,42641,'blocks_9_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(328999,42641,'_blocks_9_accordion_items_6_text','field_6177e2991ac4e'),(329000,42641,'blocks_9_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(329001,42641,'_blocks_9_accordion_items_7_title','field_6177e2991ac4d'),(329002,42641,'blocks_9_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(329003,42641,'_blocks_9_accordion_items_7_text','field_6177e2991ac4e'),(329004,42641,'blocks_9_accordion_items','8'),(329005,42641,'_blocks_9_accordion_items','field_6177e2991ac4c'),(329006,42641,'blocks_9_actions',''),(329007,42641,'_blocks_9_actions','field_61a746a817f7a'),(329008,42641,'blocks_10_acfe_flexible_toggle',''),(329009,42641,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(329010,42641,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(329011,42641,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(329012,42641,'blocks_10_options_theme','#ffffff'),(329013,42641,'_blocks_10_options_theme','field_6176830e2ad17'),(329014,42641,'blocks_10_options',''),(329015,42641,'_blocks_10_options','field_6176830e2ad16'),(329016,42641,'blocks_10_text_block_heading','The Importance of MSK Education'),(329017,42641,'_blocks_10_text_block_heading','field_617669d413097'),(329018,42641,'blocks_10_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(329019,42641,'_blocks_10_text_block_content','field_617669ec13098'),(329020,42641,'blocks_11_acfe_flexible_toggle',''),(329021,42641,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329022,42641,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(329023,42641,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329024,42641,'blocks_11_options_theme','#ffffff'),(329025,42641,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(329026,42641,'blocks_11_options_reverse','1'),(329027,42641,'_blocks_11_options_reverse','field_61768049bb8ac'),(329028,42641,'blocks_11_options',''),(329029,42641,'_blocks_11_options','field_617682517c334'),(329030,42641,'blocks_11_split_5050_image','41498'),(329031,42641,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(329032,42641,'blocks_11_split_5050_video',''),(329033,42641,'_blocks_11_split_5050_video','field_6239f3160848a'),(329034,42641,'blocks_11_split_5050_content_title','Building a Strong Foundation in MSK Health'),(329035,42641,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(329036,42641,'blocks_11_split_5050_content_heading',''),(329037,42641,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(329038,42641,'blocks_11_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(329039,42641,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(329040,42641,'blocks_11_split_5050_content_actions',''),(329041,42641,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(329042,42641,'blocks_11_split_5050_content',''),(329043,42641,'_blocks_11_split_5050_content','field_61767afceb8ba'),(329044,42641,'blocks_14_acfe_flexible_toggle',''),(329045,42641,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(329046,42641,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(329047,42641,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(329048,42641,'blocks_14_options_theme','#b61234'),(329049,42641,'_blocks_14_options_theme','field_6176830e2ad17'),(329050,42641,'blocks_14_options',''),(329051,42641,'_blocks_14_options','field_6176830e2ad16'),(329052,42641,'blocks_14_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(329053,42641,'_blocks_14_text_block_heading','field_617669d413097'),(329054,42641,'blocks_14_text_block_content',''),(329055,42641,'_blocks_14_text_block_content','field_617669ec13098'),(329056,42641,'blocks_15_acfe_flexible_toggle',''),(329057,42641,'_blocks_15_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(329058,42641,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(329059,42641,'_blocks_15_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(329060,42641,'blocks_15_options_theme','#b61234'),(329061,42641,'_blocks_15_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(329062,42641,'blocks_15_options_format','row'),(329063,42641,'_blocks_15_options_format','field_64bfde9a90690'),(329064,42641,'blocks_15_options',''),(329065,42641,'_blocks_15_options','field_64bfdd9b90684'),(329066,42641,'blocks_15_icon_row_items_0_icon','pass-rate.svg'),(329067,42641,'_blocks_15_icon_row_items_0_icon','field_64bfdd9b9068d'),(329068,42641,'blocks_15_icon_row_items_0_label','More Accurate Assessments'),(329069,42641,'_blocks_15_icon_row_items_0_label','field_64bfdd9c9068e'),(329070,42641,'blocks_15_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(329071,42641,'_blocks_15_icon_row_items_0_text','field_64bfdd9c9068f'),(329072,42641,'blocks_15_icon_row_items_1_icon','exceptional-support.svg'),(329073,42641,'_blocks_15_icon_row_items_1_icon','field_64bfdd9b9068d'),(329074,42641,'blocks_15_icon_row_items_1_label','Personalised Movement Strategies'),(329075,42641,'_blocks_15_icon_row_items_1_label','field_64bfdd9c9068e'),(329076,42641,'blocks_15_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(329077,42641,'_blocks_15_icon_row_items_1_text','field_64bfdd9c9068f'),(329078,42641,'blocks_15_icon_row_items_2_icon','lifetime-course-access.svg'),(329079,42641,'_blocks_15_icon_row_items_2_icon','field_64bfdd9b9068d'),(329080,42641,'blocks_15_icon_row_items_2_label','Injury Prevention and Longevity'),(329081,42641,'_blocks_15_icon_row_items_2_label','field_64bfdd9c9068e'),(329082,42641,'blocks_15_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(329083,42641,'_blocks_15_icon_row_items_2_text','field_64bfdd9c9068f'),(329084,42641,'blocks_15_icon_row_items_3_icon','recognised.svg'),(329085,42641,'_blocks_15_icon_row_items_3_icon','field_64bfdd9b9068d'),(329086,42641,'blocks_15_icon_row_items_3_label','Optimised Performance'),(329087,42641,'_blocks_15_icon_row_items_3_label','field_64bfdd9c9068e'),(329088,42641,'blocks_15_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(329089,42641,'_blocks_15_icon_row_items_3_text','field_64bfdd9c9068f'),(329090,42641,'blocks_15_icon_row_items','4'),(329091,42641,'_blocks_15_icon_row_items','field_64bfdd9b9068c'),(329092,42641,'blocks_16_acfe_flexible_toggle',''),(329093,42641,'_blocks_16_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329094,42641,'blocks_16_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(329095,42641,'_blocks_16_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329096,42641,'blocks_16_options_theme','#ffffff'),(329097,42641,'_blocks_16_options_theme','field_617682847c335_field_6176830e2ad17'),(329098,42641,'blocks_16_options_reverse','0'),(329099,42641,'_blocks_16_options_reverse','field_61768049bb8ac'),(329100,42641,'blocks_16_options',''),(329101,42641,'_blocks_16_options','field_617682517c334'),(329102,42641,'blocks_16_split_5050_image','41501'),(329103,42641,'_blocks_16_split_5050_image','field_6239f527a0c3a'),(329104,42641,'blocks_16_split_5050_video',''),(329105,42641,'_blocks_16_split_5050_video','field_6239f3160848a'),(329106,42641,'blocks_16_split_5050_content_title',''),(329107,42641,'_blocks_16_split_5050_content_title','field_61767bfca3fc0'),(329108,42641,'blocks_16_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(329109,42641,'_blocks_16_split_5050_content_heading','field_61767b26eb8bb'),(329110,42641,'blocks_16_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(329111,42641,'_blocks_16_split_5050_content_text','field_61767b3beb8bc'),(329112,42641,'blocks_16_split_5050_content_actions',''),(329113,42641,'_blocks_16_split_5050_content_actions','field_61767b68eb8bd'),(329114,42641,'blocks_16_split_5050_content',''),(329115,42641,'_blocks_16_split_5050_content','field_61767afceb8ba'),(329116,42641,'blocks_17_acfe_flexible_toggle',''),(329117,42641,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(329118,42641,'blocks_17_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(329119,42641,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(329120,42641,'blocks_17_options_theme','#ffffff'),(329121,42641,'_blocks_17_options_theme','field_6176830e2ad17'),(329122,42641,'blocks_17_options',''),(329123,42641,'_blocks_17_options','field_6176830e2ad16'),(329124,42641,'blocks_17_text_block_heading','The Role of MSK Education in Workplace Health'),(329125,42641,'_blocks_17_text_block_heading','field_617669d413097'),(329126,42641,'blocks_17_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(329127,42641,'_blocks_17_text_block_content','field_617669ec13098'),(329128,42641,'blocks_20_acfe_flexible_toggle',''),(329129,42641,'_blocks_20_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(329130,42641,'blocks_20_acfe_flexible_layout_title','Promo Panel'),(329131,42641,'_blocks_20_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(329132,42641,'blocks_20_options_alignment','center'),(329133,42641,'_blocks_20_options_alignment','field_61769449f5490'),(329134,42641,'blocks_20_options',''),(329135,42641,'_blocks_20_options','field_617693e1428f0'),(329136,42641,'blocks_20_promo_panel_image','41307'),(329137,42641,'_blocks_20_promo_panel_image','field_617693e1428f3'),(329138,42641,'blocks_20_promo_panel_content_heading','Want to Get Started?'),(329139,42641,'_blocks_20_promo_panel_content_heading','field_617693e1428f6'),(329140,42641,'blocks_20_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(329141,42641,'_blocks_20_promo_panel_content_text','field_617693e1428f7'),(329142,42641,'blocks_20_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(329143,42641,'_blocks_20_promo_panel_content_actions_0_button','field_617693e1428f9'),(329144,42641,'blocks_20_promo_panel_content_actions','1'),(329145,42641,'_blocks_20_promo_panel_content_actions','field_617693e1428f8'),(329146,42641,'blocks_20_promo_panel_content',''),(329147,42641,'_blocks_20_promo_panel_content','field_617693e1428f4'),(329148,42642,'hide_hero','0'),(329149,42642,'_hide_hero','field_66a2380fcda39'),(329150,42642,'hero_title',''),(329151,42642,'_hero_title','field_617571fe285e8'),(329152,42642,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(329153,42642,'_hero_text','field_6175723c285e9'),(329154,42642,'hero_actions',''),(329155,42642,'_hero_actions','field_61757270285ea'),(329156,42642,'hero_style','default'),(329157,42642,'_hero_style','field_62051d9dc5324'),(329158,42642,'hero_image_pos_x','right'),(329159,42642,'_hero_image_pos_x','field_62ec3d05390bb'),(329160,42642,'hero_image_pos_y','top'),(329161,42642,'_hero_image_pos_y','field_62ec3d05390bc'),(329162,42642,'hero_image_pos',''),(329163,42642,'_hero_image_pos','field_62ec3d05390ba'),(329164,42642,'fft_hide_from_listings','0'),(329165,42642,'_fft_hide_from_listings','field_61f1320446ab2'),(329166,42642,'post_format','402'),(329167,42642,'_post_format','field_61756bfb51898'),(329168,42642,'post_author',''),(329169,42642,'_post_author','field_62ec389d22113'),(329170,42642,'post_reviewer',''),(329171,42642,'_post_reviewer','field_627140a2a9800'),(329172,42642,'post_table_of_contents','0'),(329173,42642,'_post_table_of_contents','field_65c503bc846a6'),(329174,42642,'blocks','a:21:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"text_block\";i:15;s:5:\"icons\";i:16;s:10:\"split_5050\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:11:\"promo_panel\";}'),(329175,42642,'_blocks','field_6176696113096'),(329176,42642,'_thumbnail_id','40618'),(329177,42642,'__thumbnail_id','field_617570855ddaf'),(329178,42642,'blocks_0_acfe_flexible_toggle',''),(329179,42642,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(329180,42642,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(329181,42642,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(329182,42642,'blocks_0_options_theme','#ffffff'),(329183,42642,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(329184,42642,'blocks_0_options',''),(329185,42642,'_blocks_0_options','field_6177b758246ae'),(329186,42642,'blocks_0_link_stack_content_title',''),(329187,42642,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(329188,42642,'blocks_0_link_stack_content_heading','Introduction'),(329189,42642,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(329190,42642,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(329191,42642,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(329192,42642,'blocks_0_link_stack_content_actions_0_button',''),(329193,42642,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(329194,42642,'blocks_0_link_stack_content_actions','1'),(329195,42642,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(329196,42642,'blocks_0_link_stack_content',''),(329197,42642,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(329198,42642,'blocks_0_link_stack_0_label','1.'),(329199,42642,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(329200,42642,'blocks_0_link_stack_0_title','Overview'),(329201,42642,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(329202,42642,'blocks_0_link_stack_0_url','#overview'),(329203,42642,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(329204,42642,'blocks_0_link_stack_1_label','2.'),(329205,42642,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(329206,42642,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(329207,42642,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(329208,42642,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(329209,42642,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(329210,42642,'blocks_0_link_stack_2_label','3.'),(329211,42642,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(329212,42642,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(329213,42642,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(329214,42642,'blocks_0_link_stack_2_url','#who-should-study-msk'),(329215,42642,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(329216,42642,'blocks_0_link_stack_3_label','4.'),(329217,42642,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(329218,42642,'blocks_0_link_stack_3_title','Common MSK Conditions'),(329219,42642,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(329220,42642,'blocks_0_link_stack_3_url','#common-msk-conditions'),(329221,42642,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(329222,42642,'blocks_0_link_stack_4_label','5.'),(329223,42642,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(329224,42642,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(329225,42642,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(329226,42642,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(329227,42642,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(329228,42642,'blocks_0_link_stack_5_label','6.'),(329229,42642,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(329230,42642,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(329231,42642,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(329232,42642,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(329233,42642,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(329234,42642,'blocks_0_link_stack','6'),(329235,42642,'_blocks_0_link_stack','field_6177b7f600cff'),(329236,42642,'blocks_1_acfe_flexible_toggle',''),(329237,42642,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329238,42642,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(329239,42642,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329240,42642,'blocks_1_options_theme','#ffffff'),(329241,42642,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(329242,42642,'blocks_1_options_reverse','0'),(329243,42642,'_blocks_1_options_reverse','field_61768049bb8ac'),(329244,42642,'blocks_1_options',''),(329245,42642,'_blocks_1_options','field_617682517c334'),(329246,42642,'blocks_1_split_5050_image','40615'),(329247,42642,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(329248,42642,'blocks_1_split_5050_video',''),(329249,42642,'_blocks_1_split_5050_video','field_6239f3160848a'),(329250,42642,'blocks_1_split_5050_content_title',''),(329251,42642,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(329252,42642,'blocks_1_split_5050_content_heading','Overview'),(329253,42642,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(329254,42642,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(329255,42642,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(329256,42642,'blocks_1_split_5050_content_actions',''),(329257,42642,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(329258,42642,'blocks_1_split_5050_content',''),(329259,42642,'_blocks_1_split_5050_content','field_61767afceb8ba'),(329260,42642,'blocks_3_acfe_flexible_toggle','1'),(329261,42642,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329262,42642,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(329263,42642,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329264,42642,'blocks_3_options_theme','#f5f5f5'),(329265,42642,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(329266,42642,'blocks_3_options_reverse','1'),(329267,42642,'_blocks_3_options_reverse','field_61768049bb8ac'),(329268,42642,'blocks_3_options',''),(329269,42642,'_blocks_3_options','field_617682517c334'),(329270,42642,'blocks_3_split_5050_image','41330'),(329271,42642,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(329272,42642,'blocks_3_split_5050_video',''),(329273,42642,'_blocks_3_split_5050_video','field_6239f3160848a'),(329274,42642,'blocks_3_split_5050_content_title',''),(329275,42642,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(329276,42642,'blocks_3_split_5050_content_heading',''),(329277,42642,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(329278,42642,'blocks_3_split_5050_content_text',''),(329279,42642,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(329280,42642,'blocks_3_split_5050_content_actions',''),(329281,42642,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(329282,42642,'blocks_3_split_5050_content',''),(329283,42642,'_blocks_3_split_5050_content','field_61767afceb8ba'),(329284,42642,'blocks_7_acfe_flexible_toggle',''),(329285,42642,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329286,42642,'blocks_7_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(329287,42642,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329288,42642,'blocks_7_options_theme','#ffffff'),(329289,42642,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(329290,42642,'blocks_7_options_reverse','0'),(329291,42642,'_blocks_7_options_reverse','field_61768049bb8ac'),(329292,42642,'blocks_7_options',''),(329293,42642,'_blocks_7_options','field_617682517c334'),(329294,42642,'blocks_7_split_5050_image','41539'),(329295,42642,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(329296,42642,'blocks_7_split_5050_video',''),(329297,42642,'_blocks_7_split_5050_video','field_6239f3160848a'),(329298,42642,'blocks_7_split_5050_content_title','Engineering & Ergonomics'),(329299,42642,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(329300,42642,'blocks_7_split_5050_content_heading',''),(329301,42642,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(329302,42642,'blocks_7_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(329303,42642,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(329304,42642,'blocks_7_split_5050_content_actions',''),(329305,42642,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(329306,42642,'blocks_7_split_5050_content',''),(329307,42642,'_blocks_7_split_5050_content','field_61767afceb8ba'),(329308,42642,'blocks_8_acfe_flexible_toggle',''),(329309,42642,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329310,42642,'blocks_8_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(329311,42642,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329312,42642,'blocks_8_options_theme','#ffffff'),(329313,42642,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(329314,42642,'blocks_8_options_reverse','0'),(329315,42642,'_blocks_8_options_reverse','field_61768049bb8ac'),(329316,42642,'blocks_8_options',''),(329317,42642,'_blocks_8_options','field_617682517c334'),(329318,42642,'blocks_8_split_5050_image','41502'),(329319,42642,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(329320,42642,'blocks_8_split_5050_video',''),(329321,42642,'_blocks_8_split_5050_video','field_6239f3160848a'),(329322,42642,'blocks_8_split_5050_content_title','Research & Academia'),(329323,42642,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(329324,42642,'blocks_8_split_5050_content_heading',''),(329325,42642,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(329326,42642,'blocks_8_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(329327,42642,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(329328,42642,'blocks_8_split_5050_content_actions',''),(329329,42642,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(329330,42642,'blocks_8_split_5050_content',''),(329331,42642,'_blocks_8_split_5050_content','field_61767afceb8ba'),(329332,42642,'blocks_13_acfe_flexible_toggle',''),(329333,42642,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329334,42642,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(329335,42642,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329336,42642,'blocks_13_options_theme','#ffffff'),(329337,42642,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(329338,42642,'blocks_13_options_reverse','1'),(329339,42642,'_blocks_13_options_reverse','field_61768049bb8ac'),(329340,42642,'blocks_13_options',''),(329341,42642,'_blocks_13_options','field_617682517c334'),(329342,42642,'blocks_13_split_5050_image','18856'),(329343,42642,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(329344,42642,'blocks_13_split_5050_video',''),(329345,42642,'_blocks_13_split_5050_video','field_6239f3160848a'),(329346,42642,'blocks_13_split_5050_content_title','Bridging the Gap Between Disciplines'),(329347,42642,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(329348,42642,'blocks_13_split_5050_content_heading',''),(329349,42642,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(329350,42642,'blocks_13_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(329351,42642,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(329352,42642,'blocks_13_split_5050_content_actions',''),(329353,42642,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(329354,42642,'blocks_13_split_5050_content',''),(329355,42642,'_blocks_13_split_5050_content','field_61767afceb8ba'),(329356,42642,'blocks_19_acfe_flexible_toggle',''),(329357,42642,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(329358,42642,'blocks_19_acfe_flexible_layout_title','Conclusion'),(329359,42642,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(329360,42642,'blocks_19_options_theme','#b61234'),(329361,42642,'_blocks_19_options_theme','field_6176830e2ad17'),(329362,42642,'blocks_19_options',''),(329363,42642,'_blocks_19_options','field_6176830e2ad16'),(329364,42642,'blocks_19_text_block_heading','Conclusion'),(329365,42642,'_blocks_19_text_block_heading','field_617669d413097'),(329366,42642,'blocks_19_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(329367,42642,'_blocks_19_text_block_content','field_617669ec13098'),(329368,42642,'blocks_6_acfe_flexible_toggle',''),(329369,42642,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329370,42642,'blocks_6_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(329371,42642,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329372,42642,'blocks_6_options_theme','#ffffff'),(329373,42642,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(329374,42642,'blocks_6_options_reverse','0'),(329375,42642,'_blocks_6_options_reverse','field_61768049bb8ac'),(329376,42642,'blocks_6_options',''),(329377,42642,'_blocks_6_options','field_617682517c334'),(329378,42642,'blocks_6_split_5050_image','41505'),(329379,42642,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(329380,42642,'blocks_6_split_5050_video',''),(329381,42642,'_blocks_6_split_5050_video','field_6239f3160848a'),(329382,42642,'blocks_6_split_5050_content_title','Healthcare & Rehabilitation'),(329383,42642,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(329384,42642,'blocks_6_split_5050_content_heading',''),(329385,42642,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(329386,42642,'blocks_6_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(329387,42642,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(329388,42642,'blocks_6_split_5050_content_actions',''),(329389,42642,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(329390,42642,'blocks_6_split_5050_content',''),(329391,42642,'_blocks_6_split_5050_content','field_61767afceb8ba'),(329392,42642,'blocks_2_acfe_flexible_toggle',''),(329393,42642,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329394,42642,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(329395,42642,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329396,42642,'blocks_2_options_theme','#f5f5f5'),(329397,42642,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(329398,42642,'blocks_2_options_reverse','1'),(329399,42642,'_blocks_2_options_reverse','field_61768049bb8ac'),(329400,42642,'blocks_2_options',''),(329401,42642,'_blocks_2_options','field_617682517c334'),(329402,42642,'blocks_2_split_5050_image','41307'),(329403,42642,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(329404,42642,'blocks_2_split_5050_video',''),(329405,42642,'_blocks_2_split_5050_video','field_6239f3160848a'),(329406,42642,'blocks_2_split_5050_content_title',''),(329407,42642,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(329408,42642,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(329409,42642,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(329410,42642,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(329411,42642,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(329412,42642,'blocks_2_split_5050_content_actions',''),(329413,42642,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(329414,42642,'blocks_2_split_5050_content',''),(329415,42642,'_blocks_2_split_5050_content','field_61767afceb8ba'),(329416,42642,'blocks_4_acfe_flexible_toggle',''),(329417,42642,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(329418,42642,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(329419,42642,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(329420,42642,'blocks_4_options_theme','#ffffff'),(329421,42642,'_blocks_4_options_theme','field_6176830e2ad17'),(329422,42642,'blocks_4_options',''),(329423,42642,'_blocks_4_options','field_6176830e2ad16'),(329424,42642,'blocks_4_text_block_heading','Define Your Career Goals'),(329425,42642,'_blocks_4_text_block_heading','field_617669d413097'),(329426,42642,'blocks_4_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(329427,42642,'_blocks_4_text_block_content','field_617669ec13098'),(329428,42642,'blocks_5_acfe_flexible_toggle',''),(329429,42642,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329430,42642,'blocks_5_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(329431,42642,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329432,42642,'blocks_5_options_theme','#ffffff'),(329433,42642,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(329434,42642,'blocks_5_options_reverse','0'),(329435,42642,'_blocks_5_options_reverse','field_61768049bb8ac'),(329436,42642,'blocks_5_options',''),(329437,42642,'_blocks_5_options','field_617682517c334'),(329438,42642,'blocks_5_split_5050_image','41542'),(329439,42642,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(329440,42642,'blocks_5_split_5050_video',''),(329441,42642,'_blocks_5_split_5050_video','field_6239f3160848a'),(329442,42642,'blocks_5_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(329443,42642,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(329444,42642,'blocks_5_split_5050_content_heading',''),(329445,42642,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(329446,42642,'blocks_5_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(329447,42642,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(329448,42642,'blocks_5_split_5050_content_actions',''),(329449,42642,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(329450,42642,'blocks_5_split_5050_content',''),(329451,42642,'_blocks_5_split_5050_content','field_61767afceb8ba'),(329452,42642,'blocks_12_acfe_flexible_toggle',''),(329453,42642,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329454,42642,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(329455,42642,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329456,42642,'blocks_12_options_theme','#ffffff'),(329457,42642,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(329458,42642,'blocks_12_options_reverse','1'),(329459,42642,'_blocks_12_options_reverse','field_61768049bb8ac'),(329460,42642,'blocks_12_options',''),(329461,42642,'_blocks_12_options','field_617682517c334'),(329462,42642,'blocks_12_split_5050_image','40387'),(329463,42642,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(329464,42642,'blocks_12_split_5050_video',''),(329465,42642,'_blocks_12_split_5050_video','field_6239f3160848a'),(329466,42642,'blocks_12_split_5050_content_title','Early Detection and Targeted Interventions'),(329467,42642,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(329468,42642,'blocks_12_split_5050_content_heading',''),(329469,42642,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(329470,42642,'blocks_12_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(329471,42642,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(329472,42642,'blocks_12_split_5050_content_actions',''),(329473,42642,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(329474,42642,'blocks_12_split_5050_content',''),(329475,42642,'_blocks_12_split_5050_content','field_61767afceb8ba'),(329476,42642,'blocks_18_acfe_flexible_toggle',''),(329477,42642,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(329478,42642,'blocks_18_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(329479,42642,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(329480,42642,'blocks_18_options_theme','#ffffff'),(329481,42642,'_blocks_18_options_theme','field_6176830e2ad17'),(329482,42642,'blocks_18_options',''),(329483,42642,'_blocks_18_options','field_6176830e2ad16'),(329484,42642,'blocks_18_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(329485,42642,'_blocks_18_text_block_heading','field_617669d413097'),(329486,42642,'blocks_18_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(329487,42642,'_blocks_18_text_block_content','field_617669ec13098'),(329488,42642,'blocks_9_acfe_flexible_toggle',''),(329489,42642,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(329490,42642,'blocks_9_acfe_flexible_layout_title','Core Areas of Study[anchor]'),(329491,42642,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(329492,42642,'blocks_9_options_theme','#f5f5f5'),(329493,42642,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(329494,42642,'blocks_9_options_state','0'),(329495,42642,'_blocks_9_options_state','field_6239fcb7508c5'),(329496,42642,'blocks_9_options',''),(329497,42642,'_blocks_9_options','field_6177e2991ac44'),(329498,42642,'blocks_9_content_title',''),(329499,42642,'_blocks_9_content_title','field_64d237e8bb1e2'),(329500,42642,'blocks_9_content_heading','Evaluating Core Areas of Study in Biomechanics Courses'),(329501,42642,'_blocks_9_content_heading','field_64d237e8bb1e3'),(329502,42642,'blocks_9_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. Some courses provide a broad foundation in biomechanics, while others specialise in areas like sports performance, clinical rehabilitation, or biomechanics technology. Ensuring that a course aligns with your interests and professional aspirations will help you gain relevant knowledge and practical skills.\r\n\r\nWhen evaluating a biomechanics course, consider the key topics covered. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field. Below are some of the core areas of study you might encounter.'),(329503,42642,'_blocks_9_content_text','field_64d237e8bb1e4'),(329504,42642,'blocks_9_content_actions',''),(329505,42642,'_blocks_9_content_actions','field_64d237e8bb1e5'),(329506,42642,'blocks_9_content_align','left'),(329507,42642,'_blocks_9_content_align','field_64d2443e6b6aa'),(329508,42642,'blocks_9_content',''),(329509,42642,'_blocks_9_content','field_64d237e8bb1e1'),(329510,42642,'blocks_9_accordion_content','custom'),(329511,42642,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(329512,42642,'blocks_9_accordion_items_0_title','Fundamentals of Biomechanics'),(329513,42642,'_blocks_9_accordion_items_0_title','field_6177e2991ac4d'),(329514,42642,'blocks_9_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(329515,42642,'_blocks_9_accordion_items_0_text','field_6177e2991ac4e'),(329516,42642,'blocks_9_accordion_items_1_title','Advanced Motion Analysis'),(329517,42642,'_blocks_9_accordion_items_1_title','field_6177e2991ac4d'),(329518,42642,'blocks_9_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(329519,42642,'_blocks_9_accordion_items_1_text','field_6177e2991ac4e'),(329520,42642,'blocks_9_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(329521,42642,'_blocks_9_accordion_items_2_title','field_6177e2991ac4d'),(329522,42642,'blocks_9_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(329523,42642,'_blocks_9_accordion_items_2_text','field_6177e2991ac4e'),(329524,42642,'blocks_9_accordion_items_3_title','Sports Biomechanics'),(329525,42642,'_blocks_9_accordion_items_3_title','field_6177e2991ac4d'),(329526,42642,'blocks_9_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(329527,42642,'_blocks_9_accordion_items_3_text','field_6177e2991ac4e'),(329528,42642,'blocks_9_accordion_items_4_title','Biomedical Engineering Applications'),(329529,42642,'_blocks_9_accordion_items_4_title','field_6177e2991ac4d'),(329530,42642,'blocks_9_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(329531,42642,'_blocks_9_accordion_items_4_text','field_6177e2991ac4e'),(329532,42642,'blocks_9_accordion_items_5_title','Computational Biomechanics'),(329533,42642,'_blocks_9_accordion_items_5_title','field_6177e2991ac4d'),(329534,42642,'blocks_9_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(329535,42642,'_blocks_9_accordion_items_5_text','field_6177e2991ac4e'),(329536,42642,'blocks_9_accordion_items','6'),(329537,42642,'_blocks_9_accordion_items','field_6177e2991ac4c'),(329538,42642,'blocks_9_actions',''),(329539,42642,'_blocks_9_actions','field_61a746a817f7a'),(329540,42642,'blocks_10_acfe_flexible_toggle',''),(329541,42642,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(329542,42642,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(329543,42642,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(329544,42642,'blocks_10_options_theme','#ffffff'),(329545,42642,'_blocks_10_options_theme','field_6176830e2ad17'),(329546,42642,'blocks_10_options',''),(329547,42642,'_blocks_10_options','field_6176830e2ad16'),(329548,42642,'blocks_10_text_block_heading','The Importance of MSK Education'),(329549,42642,'_blocks_10_text_block_heading','field_617669d413097'),(329550,42642,'blocks_10_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(329551,42642,'_blocks_10_text_block_content','field_617669ec13098'),(329552,42642,'blocks_11_acfe_flexible_toggle',''),(329553,42642,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329554,42642,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(329555,42642,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329556,42642,'blocks_11_options_theme','#ffffff'),(329557,42642,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(329558,42642,'blocks_11_options_reverse','1'),(329559,42642,'_blocks_11_options_reverse','field_61768049bb8ac'),(329560,42642,'blocks_11_options',''),(329561,42642,'_blocks_11_options','field_617682517c334'),(329562,42642,'blocks_11_split_5050_image','41498'),(329563,42642,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(329564,42642,'blocks_11_split_5050_video',''),(329565,42642,'_blocks_11_split_5050_video','field_6239f3160848a'),(329566,42642,'blocks_11_split_5050_content_title','Building a Strong Foundation in MSK Health'),(329567,42642,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(329568,42642,'blocks_11_split_5050_content_heading',''),(329569,42642,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(329570,42642,'blocks_11_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(329571,42642,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(329572,42642,'blocks_11_split_5050_content_actions',''),(329573,42642,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(329574,42642,'blocks_11_split_5050_content',''),(329575,42642,'_blocks_11_split_5050_content','field_61767afceb8ba'),(329576,42642,'blocks_14_acfe_flexible_toggle',''),(329577,42642,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(329578,42642,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(329579,42642,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(329580,42642,'blocks_14_options_theme','#b61234'),(329581,42642,'_blocks_14_options_theme','field_6176830e2ad17'),(329582,42642,'blocks_14_options',''),(329583,42642,'_blocks_14_options','field_6176830e2ad16'),(329584,42642,'blocks_14_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(329585,42642,'_blocks_14_text_block_heading','field_617669d413097'),(329586,42642,'blocks_14_text_block_content',''),(329587,42642,'_blocks_14_text_block_content','field_617669ec13098'),(329588,42642,'blocks_15_acfe_flexible_toggle',''),(329589,42642,'_blocks_15_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(329590,42642,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(329591,42642,'_blocks_15_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(329592,42642,'blocks_15_options_theme','#b61234'),(329593,42642,'_blocks_15_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(329594,42642,'blocks_15_options_format','row'),(329595,42642,'_blocks_15_options_format','field_64bfde9a90690'),(329596,42642,'blocks_15_options',''),(329597,42642,'_blocks_15_options','field_64bfdd9b90684'),(329598,42642,'blocks_15_icon_row_items_0_icon','pass-rate.svg'),(329599,42642,'_blocks_15_icon_row_items_0_icon','field_64bfdd9b9068d'),(329600,42642,'blocks_15_icon_row_items_0_label','More Accurate Assessments'),(329601,42642,'_blocks_15_icon_row_items_0_label','field_64bfdd9c9068e'),(329602,42642,'blocks_15_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(329603,42642,'_blocks_15_icon_row_items_0_text','field_64bfdd9c9068f'),(329604,42642,'blocks_15_icon_row_items_1_icon','exceptional-support.svg'),(329605,42642,'_blocks_15_icon_row_items_1_icon','field_64bfdd9b9068d'),(329606,42642,'blocks_15_icon_row_items_1_label','Personalised Movement Strategies'),(329607,42642,'_blocks_15_icon_row_items_1_label','field_64bfdd9c9068e'),(329608,42642,'blocks_15_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(329609,42642,'_blocks_15_icon_row_items_1_text','field_64bfdd9c9068f'),(329610,42642,'blocks_15_icon_row_items_2_icon','lifetime-course-access.svg'),(329611,42642,'_blocks_15_icon_row_items_2_icon','field_64bfdd9b9068d'),(329612,42642,'blocks_15_icon_row_items_2_label','Injury Prevention and Longevity'),(329613,42642,'_blocks_15_icon_row_items_2_label','field_64bfdd9c9068e'),(329614,42642,'blocks_15_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(329615,42642,'_blocks_15_icon_row_items_2_text','field_64bfdd9c9068f'),(329616,42642,'blocks_15_icon_row_items_3_icon','recognised.svg'),(329617,42642,'_blocks_15_icon_row_items_3_icon','field_64bfdd9b9068d'),(329618,42642,'blocks_15_icon_row_items_3_label','Optimised Performance'),(329619,42642,'_blocks_15_icon_row_items_3_label','field_64bfdd9c9068e'),(329620,42642,'blocks_15_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(329621,42642,'_blocks_15_icon_row_items_3_text','field_64bfdd9c9068f'),(329622,42642,'blocks_15_icon_row_items','4'),(329623,42642,'_blocks_15_icon_row_items','field_64bfdd9b9068c'),(329624,42642,'blocks_16_acfe_flexible_toggle',''),(329625,42642,'_blocks_16_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329626,42642,'blocks_16_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(329627,42642,'_blocks_16_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329628,42642,'blocks_16_options_theme','#ffffff'),(329629,42642,'_blocks_16_options_theme','field_617682847c335_field_6176830e2ad17'),(329630,42642,'blocks_16_options_reverse','0'),(329631,42642,'_blocks_16_options_reverse','field_61768049bb8ac'),(329632,42642,'blocks_16_options',''),(329633,42642,'_blocks_16_options','field_617682517c334'),(329634,42642,'blocks_16_split_5050_image','41501'),(329635,42642,'_blocks_16_split_5050_image','field_6239f527a0c3a'),(329636,42642,'blocks_16_split_5050_video',''),(329637,42642,'_blocks_16_split_5050_video','field_6239f3160848a'),(329638,42642,'blocks_16_split_5050_content_title',''),(329639,42642,'_blocks_16_split_5050_content_title','field_61767bfca3fc0'),(329640,42642,'blocks_16_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(329641,42642,'_blocks_16_split_5050_content_heading','field_61767b26eb8bb'),(329642,42642,'blocks_16_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(329643,42642,'_blocks_16_split_5050_content_text','field_61767b3beb8bc'),(329644,42642,'blocks_16_split_5050_content_actions',''),(329645,42642,'_blocks_16_split_5050_content_actions','field_61767b68eb8bd'),(329646,42642,'blocks_16_split_5050_content',''),(329647,42642,'_blocks_16_split_5050_content','field_61767afceb8ba'),(329648,42642,'blocks_17_acfe_flexible_toggle',''),(329649,42642,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(329650,42642,'blocks_17_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(329651,42642,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(329652,42642,'blocks_17_options_theme','#ffffff'),(329653,42642,'_blocks_17_options_theme','field_6176830e2ad17'),(329654,42642,'blocks_17_options',''),(329655,42642,'_blocks_17_options','field_6176830e2ad16'),(329656,42642,'blocks_17_text_block_heading','The Role of MSK Education in Workplace Health'),(329657,42642,'_blocks_17_text_block_heading','field_617669d413097'),(329658,42642,'blocks_17_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(329659,42642,'_blocks_17_text_block_content','field_617669ec13098'),(329660,42642,'blocks_20_acfe_flexible_toggle',''),(329661,42642,'_blocks_20_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(329662,42642,'blocks_20_acfe_flexible_layout_title','Promo Panel'),(329663,42642,'_blocks_20_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(329664,42642,'blocks_20_options_alignment','center'),(329665,42642,'_blocks_20_options_alignment','field_61769449f5490'),(329666,42642,'blocks_20_options',''),(329667,42642,'_blocks_20_options','field_617693e1428f0'),(329668,42642,'blocks_20_promo_panel_image','41307'),(329669,42642,'_blocks_20_promo_panel_image','field_617693e1428f3'),(329670,42642,'blocks_20_promo_panel_content_heading','Want to Get Started?'),(329671,42642,'_blocks_20_promo_panel_content_heading','field_617693e1428f6'),(329672,42642,'blocks_20_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(329673,42642,'_blocks_20_promo_panel_content_text','field_617693e1428f7'),(329674,42642,'blocks_20_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(329675,42642,'_blocks_20_promo_panel_content_actions_0_button','field_617693e1428f9'),(329676,42642,'blocks_20_promo_panel_content_actions','1'),(329677,42642,'_blocks_20_promo_panel_content_actions','field_617693e1428f8'),(329678,42642,'blocks_20_promo_panel_content',''),(329679,42642,'_blocks_20_promo_panel_content','field_617693e1428f4'),(329680,42643,'hide_hero','0'),(329681,42643,'_hide_hero','field_66a2380fcda39'),(329682,42643,'hero_title',''),(329683,42643,'_hero_title','field_617571fe285e8'),(329684,42643,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(329685,42643,'_hero_text','field_6175723c285e9'),(329686,42643,'hero_actions',''),(329687,42643,'_hero_actions','field_61757270285ea'),(329688,42643,'hero_style','default'),(329689,42643,'_hero_style','field_62051d9dc5324'),(329690,42643,'hero_image_pos_x','right'),(329691,42643,'_hero_image_pos_x','field_62ec3d05390bb'),(329692,42643,'hero_image_pos_y','top'),(329693,42643,'_hero_image_pos_y','field_62ec3d05390bc'),(329694,42643,'hero_image_pos',''),(329695,42643,'_hero_image_pos','field_62ec3d05390ba'),(329696,42643,'fft_hide_from_listings','0'),(329697,42643,'_fft_hide_from_listings','field_61f1320446ab2'),(329698,42643,'post_format','402'),(329699,42643,'_post_format','field_61756bfb51898'),(329700,42643,'post_author',''),(329701,42643,'_post_author','field_62ec389d22113'),(329702,42643,'post_reviewer',''),(329703,42643,'_post_reviewer','field_627140a2a9800'),(329704,42643,'post_table_of_contents','0'),(329705,42643,'_post_table_of_contents','field_65c503bc846a6'),(329706,42643,'blocks','a:21:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"text_block\";i:15;s:5:\"icons\";i:16;s:10:\"split_5050\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:11:\"promo_panel\";}'),(329707,42643,'_blocks','field_6176696113096'),(329708,42643,'_thumbnail_id','40618'),(329709,42643,'__thumbnail_id','field_617570855ddaf'),(329710,42643,'blocks_0_acfe_flexible_toggle',''),(329711,42643,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(329712,42643,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(329713,42643,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(329714,42643,'blocks_0_options_theme','#ffffff'),(329715,42643,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(329716,42643,'blocks_0_options',''),(329717,42643,'_blocks_0_options','field_6177b758246ae'),(329718,42643,'blocks_0_link_stack_content_title',''),(329719,42643,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(329720,42643,'blocks_0_link_stack_content_heading','Introduction'),(329721,42643,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(329722,42643,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(329723,42643,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(329724,42643,'blocks_0_link_stack_content_actions_0_button',''),(329725,42643,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(329726,42643,'blocks_0_link_stack_content_actions','1'),(329727,42643,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(329728,42643,'blocks_0_link_stack_content',''),(329729,42643,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(329730,42643,'blocks_0_link_stack_0_label','1.'),(329731,42643,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(329732,42643,'blocks_0_link_stack_0_title','Overview'),(329733,42643,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(329734,42643,'blocks_0_link_stack_0_url','#overview'),(329735,42643,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(329736,42643,'blocks_0_link_stack_1_label','2.'),(329737,42643,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(329738,42643,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(329739,42643,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(329740,42643,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(329741,42643,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(329742,42643,'blocks_0_link_stack_2_label','3.'),(329743,42643,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(329744,42643,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(329745,42643,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(329746,42643,'blocks_0_link_stack_2_url','#who-should-study-msk'),(329747,42643,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(329748,42643,'blocks_0_link_stack_3_label','4.'),(329749,42643,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(329750,42643,'blocks_0_link_stack_3_title','Common MSK Conditions'),(329751,42643,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(329752,42643,'blocks_0_link_stack_3_url','#common-msk-conditions'),(329753,42643,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(329754,42643,'blocks_0_link_stack_4_label','5.'),(329755,42643,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(329756,42643,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(329757,42643,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(329758,42643,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(329759,42643,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(329760,42643,'blocks_0_link_stack_5_label','6.'),(329761,42643,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(329762,42643,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(329763,42643,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(329764,42643,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(329765,42643,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(329766,42643,'blocks_0_link_stack','6'),(329767,42643,'_blocks_0_link_stack','field_6177b7f600cff'),(329768,42643,'blocks_1_acfe_flexible_toggle',''),(329769,42643,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329770,42643,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(329771,42643,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329772,42643,'blocks_1_options_theme','#ffffff'),(329773,42643,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(329774,42643,'blocks_1_options_reverse','0'),(329775,42643,'_blocks_1_options_reverse','field_61768049bb8ac'),(329776,42643,'blocks_1_options',''),(329777,42643,'_blocks_1_options','field_617682517c334'),(329778,42643,'blocks_1_split_5050_image','40615'),(329779,42643,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(329780,42643,'blocks_1_split_5050_video',''),(329781,42643,'_blocks_1_split_5050_video','field_6239f3160848a'),(329782,42643,'blocks_1_split_5050_content_title',''),(329783,42643,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(329784,42643,'blocks_1_split_5050_content_heading','Overview'),(329785,42643,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(329786,42643,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(329787,42643,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(329788,42643,'blocks_1_split_5050_content_actions',''),(329789,42643,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(329790,42643,'blocks_1_split_5050_content',''),(329791,42643,'_blocks_1_split_5050_content','field_61767afceb8ba'),(329792,42643,'blocks_3_acfe_flexible_toggle','1'),(329793,42643,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329794,42643,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(329795,42643,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329796,42643,'blocks_3_options_theme','#f5f5f5'),(329797,42643,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(329798,42643,'blocks_3_options_reverse','1'),(329799,42643,'_blocks_3_options_reverse','field_61768049bb8ac'),(329800,42643,'blocks_3_options',''),(329801,42643,'_blocks_3_options','field_617682517c334'),(329802,42643,'blocks_3_split_5050_image','41330'),(329803,42643,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(329804,42643,'blocks_3_split_5050_video',''),(329805,42643,'_blocks_3_split_5050_video','field_6239f3160848a'),(329806,42643,'blocks_3_split_5050_content_title',''),(329807,42643,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(329808,42643,'blocks_3_split_5050_content_heading',''),(329809,42643,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(329810,42643,'blocks_3_split_5050_content_text',''),(329811,42643,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(329812,42643,'blocks_3_split_5050_content_actions',''),(329813,42643,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(329814,42643,'blocks_3_split_5050_content',''),(329815,42643,'_blocks_3_split_5050_content','field_61767afceb8ba'),(329816,42643,'blocks_7_acfe_flexible_toggle',''),(329817,42643,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329818,42643,'blocks_7_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(329819,42643,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329820,42643,'blocks_7_options_theme','#ffffff'),(329821,42643,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(329822,42643,'blocks_7_options_reverse','0'),(329823,42643,'_blocks_7_options_reverse','field_61768049bb8ac'),(329824,42643,'blocks_7_options',''),(329825,42643,'_blocks_7_options','field_617682517c334'),(329826,42643,'blocks_7_split_5050_image','41539'),(329827,42643,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(329828,42643,'blocks_7_split_5050_video',''),(329829,42643,'_blocks_7_split_5050_video','field_6239f3160848a'),(329830,42643,'blocks_7_split_5050_content_title','Engineering & Ergonomics'),(329831,42643,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(329832,42643,'blocks_7_split_5050_content_heading',''),(329833,42643,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(329834,42643,'blocks_7_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(329835,42643,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(329836,42643,'blocks_7_split_5050_content_actions',''),(329837,42643,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(329838,42643,'blocks_7_split_5050_content',''),(329839,42643,'_blocks_7_split_5050_content','field_61767afceb8ba'),(329840,42643,'blocks_8_acfe_flexible_toggle',''),(329841,42643,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329842,42643,'blocks_8_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(329843,42643,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329844,42643,'blocks_8_options_theme','#ffffff'),(329845,42643,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(329846,42643,'blocks_8_options_reverse','0'),(329847,42643,'_blocks_8_options_reverse','field_61768049bb8ac'),(329848,42643,'blocks_8_options',''),(329849,42643,'_blocks_8_options','field_617682517c334'),(329850,42643,'blocks_8_split_5050_image','41502'),(329851,42643,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(329852,42643,'blocks_8_split_5050_video',''),(329853,42643,'_blocks_8_split_5050_video','field_6239f3160848a'),(329854,42643,'blocks_8_split_5050_content_title','Research & Academia'),(329855,42643,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(329856,42643,'blocks_8_split_5050_content_heading',''),(329857,42643,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(329858,42643,'blocks_8_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(329859,42643,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(329860,42643,'blocks_8_split_5050_content_actions',''),(329861,42643,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(329862,42643,'blocks_8_split_5050_content',''),(329863,42643,'_blocks_8_split_5050_content','field_61767afceb8ba'),(329864,42643,'blocks_13_acfe_flexible_toggle',''),(329865,42643,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329866,42643,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(329867,42643,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329868,42643,'blocks_13_options_theme','#ffffff'),(329869,42643,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(329870,42643,'blocks_13_options_reverse','1'),(329871,42643,'_blocks_13_options_reverse','field_61768049bb8ac'),(329872,42643,'blocks_13_options',''),(329873,42643,'_blocks_13_options','field_617682517c334'),(329874,42643,'blocks_13_split_5050_image','18856'),(329875,42643,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(329876,42643,'blocks_13_split_5050_video',''),(329877,42643,'_blocks_13_split_5050_video','field_6239f3160848a'),(329878,42643,'blocks_13_split_5050_content_title','Bridging the Gap Between Disciplines'),(329879,42643,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(329880,42643,'blocks_13_split_5050_content_heading',''),(329881,42643,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(329882,42643,'blocks_13_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(329883,42643,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(329884,42643,'blocks_13_split_5050_content_actions',''),(329885,42643,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(329886,42643,'blocks_13_split_5050_content',''),(329887,42643,'_blocks_13_split_5050_content','field_61767afceb8ba'),(329888,42643,'blocks_19_acfe_flexible_toggle',''),(329889,42643,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(329890,42643,'blocks_19_acfe_flexible_layout_title','Conclusion'),(329891,42643,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(329892,42643,'blocks_19_options_theme','#b61234'),(329893,42643,'_blocks_19_options_theme','field_6176830e2ad17'),(329894,42643,'blocks_19_options',''),(329895,42643,'_blocks_19_options','field_6176830e2ad16'),(329896,42643,'blocks_19_text_block_heading','Conclusion'),(329897,42643,'_blocks_19_text_block_heading','field_617669d413097'),(329898,42643,'blocks_19_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(329899,42643,'_blocks_19_text_block_content','field_617669ec13098'),(329900,42643,'blocks_6_acfe_flexible_toggle',''),(329901,42643,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329902,42643,'blocks_6_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(329903,42643,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329904,42643,'blocks_6_options_theme','#ffffff'),(329905,42643,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(329906,42643,'blocks_6_options_reverse','0'),(329907,42643,'_blocks_6_options_reverse','field_61768049bb8ac'),(329908,42643,'blocks_6_options',''),(329909,42643,'_blocks_6_options','field_617682517c334'),(329910,42643,'blocks_6_split_5050_image','41505'),(329911,42643,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(329912,42643,'blocks_6_split_5050_video',''),(329913,42643,'_blocks_6_split_5050_video','field_6239f3160848a'),(329914,42643,'blocks_6_split_5050_content_title','Healthcare & Rehabilitation'),(329915,42643,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(329916,42643,'blocks_6_split_5050_content_heading',''),(329917,42643,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(329918,42643,'blocks_6_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(329919,42643,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(329920,42643,'blocks_6_split_5050_content_actions',''),(329921,42643,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(329922,42643,'blocks_6_split_5050_content',''),(329923,42643,'_blocks_6_split_5050_content','field_61767afceb8ba'),(329924,42643,'blocks_2_acfe_flexible_toggle',''),(329925,42643,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329926,42643,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(329927,42643,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329928,42643,'blocks_2_options_theme','#f5f5f5'),(329929,42643,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(329930,42643,'blocks_2_options_reverse','1'),(329931,42643,'_blocks_2_options_reverse','field_61768049bb8ac'),(329932,42643,'blocks_2_options',''),(329933,42643,'_blocks_2_options','field_617682517c334'),(329934,42643,'blocks_2_split_5050_image','41307'),(329935,42643,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(329936,42643,'blocks_2_split_5050_video',''),(329937,42643,'_blocks_2_split_5050_video','field_6239f3160848a'),(329938,42643,'blocks_2_split_5050_content_title',''),(329939,42643,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(329940,42643,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(329941,42643,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(329942,42643,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(329943,42643,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(329944,42643,'blocks_2_split_5050_content_actions',''),(329945,42643,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(329946,42643,'blocks_2_split_5050_content',''),(329947,42643,'_blocks_2_split_5050_content','field_61767afceb8ba'),(329948,42643,'blocks_4_acfe_flexible_toggle',''),(329949,42643,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(329950,42643,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(329951,42643,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(329952,42643,'blocks_4_options_theme','#ffffff'),(329953,42643,'_blocks_4_options_theme','field_6176830e2ad17'),(329954,42643,'blocks_4_options',''),(329955,42643,'_blocks_4_options','field_6176830e2ad16'),(329956,42643,'blocks_4_text_block_heading','Define Your Career Goals'),(329957,42643,'_blocks_4_text_block_heading','field_617669d413097'),(329958,42643,'blocks_4_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(329959,42643,'_blocks_4_text_block_content','field_617669ec13098'),(329960,42643,'blocks_5_acfe_flexible_toggle',''),(329961,42643,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329962,42643,'blocks_5_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(329963,42643,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329964,42643,'blocks_5_options_theme','#ffffff'),(329965,42643,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(329966,42643,'blocks_5_options_reverse','0'),(329967,42643,'_blocks_5_options_reverse','field_61768049bb8ac'),(329968,42643,'blocks_5_options',''),(329969,42643,'_blocks_5_options','field_617682517c334'),(329970,42643,'blocks_5_split_5050_image','41542'),(329971,42643,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(329972,42643,'blocks_5_split_5050_video',''),(329973,42643,'_blocks_5_split_5050_video','field_6239f3160848a'),(329974,42643,'blocks_5_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(329975,42643,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(329976,42643,'blocks_5_split_5050_content_heading',''),(329977,42643,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(329978,42643,'blocks_5_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(329979,42643,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(329980,42643,'blocks_5_split_5050_content_actions',''),(329981,42643,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(329982,42643,'blocks_5_split_5050_content',''),(329983,42643,'_blocks_5_split_5050_content','field_61767afceb8ba'),(329984,42643,'blocks_12_acfe_flexible_toggle',''),(329985,42643,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(329986,42643,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(329987,42643,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(329988,42643,'blocks_12_options_theme','#ffffff'),(329989,42643,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(329990,42643,'blocks_12_options_reverse','1'),(329991,42643,'_blocks_12_options_reverse','field_61768049bb8ac'),(329992,42643,'blocks_12_options',''),(329993,42643,'_blocks_12_options','field_617682517c334'),(329994,42643,'blocks_12_split_5050_image','40387'),(329995,42643,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(329996,42643,'blocks_12_split_5050_video',''),(329997,42643,'_blocks_12_split_5050_video','field_6239f3160848a'),(329998,42643,'blocks_12_split_5050_content_title','Early Detection and Targeted Interventions'),(329999,42643,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(330000,42643,'blocks_12_split_5050_content_heading',''),(330001,42643,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(330002,42643,'blocks_12_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(330003,42643,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(330004,42643,'blocks_12_split_5050_content_actions',''),(330005,42643,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(330006,42643,'blocks_12_split_5050_content',''),(330007,42643,'_blocks_12_split_5050_content','field_61767afceb8ba'),(330008,42643,'blocks_18_acfe_flexible_toggle',''),(330009,42643,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(330010,42643,'blocks_18_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(330011,42643,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(330012,42643,'blocks_18_options_theme','#ffffff'),(330013,42643,'_blocks_18_options_theme','field_6176830e2ad17'),(330014,42643,'blocks_18_options',''),(330015,42643,'_blocks_18_options','field_6176830e2ad16'),(330016,42643,'blocks_18_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(330017,42643,'_blocks_18_text_block_heading','field_617669d413097'),(330018,42643,'blocks_18_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(330019,42643,'_blocks_18_text_block_content','field_617669ec13098'),(330020,42643,'blocks_9_acfe_flexible_toggle',''),(330021,42643,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(330022,42643,'blocks_9_acfe_flexible_layout_title','Core Areas of Study[anchor]'),(330023,42643,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(330024,42643,'blocks_9_options_theme','#f5f5f5'),(330025,42643,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(330026,42643,'blocks_9_options_state','0'),(330027,42643,'_blocks_9_options_state','field_6239fcb7508c5'),(330028,42643,'blocks_9_options',''),(330029,42643,'_blocks_9_options','field_6177e2991ac44'),(330030,42643,'blocks_9_content_title',''),(330031,42643,'_blocks_9_content_title','field_64d237e8bb1e2'),(330032,42643,'blocks_9_content_heading','Evaluating Core Areas of Study in Biomechanics Courses'),(330033,42643,'_blocks_9_content_heading','field_64d237e8bb1e3'),(330034,42643,'blocks_9_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(330035,42643,'_blocks_9_content_text','field_64d237e8bb1e4'),(330036,42643,'blocks_9_content_actions',''),(330037,42643,'_blocks_9_content_actions','field_64d237e8bb1e5'),(330038,42643,'blocks_9_content_align','left'),(330039,42643,'_blocks_9_content_align','field_64d2443e6b6aa'),(330040,42643,'blocks_9_content',''),(330041,42643,'_blocks_9_content','field_64d237e8bb1e1'),(330042,42643,'blocks_9_accordion_content','custom'),(330043,42643,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(330044,42643,'blocks_9_accordion_items_0_title','Fundamentals of Biomechanics'),(330045,42643,'_blocks_9_accordion_items_0_title','field_6177e2991ac4d'),(330046,42643,'blocks_9_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(330047,42643,'_blocks_9_accordion_items_0_text','field_6177e2991ac4e'),(330048,42643,'blocks_9_accordion_items_1_title','Advanced Motion Analysis'),(330049,42643,'_blocks_9_accordion_items_1_title','field_6177e2991ac4d'),(330050,42643,'blocks_9_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(330051,42643,'_blocks_9_accordion_items_1_text','field_6177e2991ac4e'),(330052,42643,'blocks_9_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(330053,42643,'_blocks_9_accordion_items_2_title','field_6177e2991ac4d'),(330054,42643,'blocks_9_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(330055,42643,'_blocks_9_accordion_items_2_text','field_6177e2991ac4e'),(330056,42643,'blocks_9_accordion_items_3_title','Sports Biomechanics'),(330057,42643,'_blocks_9_accordion_items_3_title','field_6177e2991ac4d'),(330058,42643,'blocks_9_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(330059,42643,'_blocks_9_accordion_items_3_text','field_6177e2991ac4e'),(330060,42643,'blocks_9_accordion_items_4_title','Biomedical Engineering Applications'),(330061,42643,'_blocks_9_accordion_items_4_title','field_6177e2991ac4d'),(330062,42643,'blocks_9_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(330063,42643,'_blocks_9_accordion_items_4_text','field_6177e2991ac4e'),(330064,42643,'blocks_9_accordion_items_5_title','Computational Biomechanics'),(330065,42643,'_blocks_9_accordion_items_5_title','field_6177e2991ac4d'),(330066,42643,'blocks_9_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(330067,42643,'_blocks_9_accordion_items_5_text','field_6177e2991ac4e'),(330068,42643,'blocks_9_accordion_items','6'),(330069,42643,'_blocks_9_accordion_items','field_6177e2991ac4c'),(330070,42643,'blocks_9_actions',''),(330071,42643,'_blocks_9_actions','field_61a746a817f7a'),(330072,42643,'blocks_10_acfe_flexible_toggle',''),(330073,42643,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(330074,42643,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(330075,42643,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(330076,42643,'blocks_10_options_theme','#ffffff'),(330077,42643,'_blocks_10_options_theme','field_6176830e2ad17'),(330078,42643,'blocks_10_options',''),(330079,42643,'_blocks_10_options','field_6176830e2ad16'),(330080,42643,'blocks_10_text_block_heading','The Importance of MSK Education'),(330081,42643,'_blocks_10_text_block_heading','field_617669d413097'),(330082,42643,'blocks_10_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(330083,42643,'_blocks_10_text_block_content','field_617669ec13098'),(330084,42643,'blocks_11_acfe_flexible_toggle',''),(330085,42643,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330086,42643,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(330087,42643,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330088,42643,'blocks_11_options_theme','#ffffff'),(330089,42643,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(330090,42643,'blocks_11_options_reverse','1'),(330091,42643,'_blocks_11_options_reverse','field_61768049bb8ac'),(330092,42643,'blocks_11_options',''),(330093,42643,'_blocks_11_options','field_617682517c334'),(330094,42643,'blocks_11_split_5050_image','41498'),(330095,42643,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(330096,42643,'blocks_11_split_5050_video',''),(330097,42643,'_blocks_11_split_5050_video','field_6239f3160848a'),(330098,42643,'blocks_11_split_5050_content_title','Building a Strong Foundation in MSK Health'),(330099,42643,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(330100,42643,'blocks_11_split_5050_content_heading',''),(330101,42643,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(330102,42643,'blocks_11_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(330103,42643,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(330104,42643,'blocks_11_split_5050_content_actions',''),(330105,42643,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(330106,42643,'blocks_11_split_5050_content',''),(330107,42643,'_blocks_11_split_5050_content','field_61767afceb8ba'),(330108,42643,'blocks_14_acfe_flexible_toggle',''),(330109,42643,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(330110,42643,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(330111,42643,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(330112,42643,'blocks_14_options_theme','#b61234'),(330113,42643,'_blocks_14_options_theme','field_6176830e2ad17'),(330114,42643,'blocks_14_options',''),(330115,42643,'_blocks_14_options','field_6176830e2ad16'),(330116,42643,'blocks_14_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(330117,42643,'_blocks_14_text_block_heading','field_617669d413097'),(330118,42643,'blocks_14_text_block_content',''),(330119,42643,'_blocks_14_text_block_content','field_617669ec13098'),(330120,42643,'blocks_15_acfe_flexible_toggle',''),(330121,42643,'_blocks_15_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(330122,42643,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(330123,42643,'_blocks_15_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(330124,42643,'blocks_15_options_theme','#b61234'),(330125,42643,'_blocks_15_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(330126,42643,'blocks_15_options_format','row'),(330127,42643,'_blocks_15_options_format','field_64bfde9a90690'),(330128,42643,'blocks_15_options',''),(330129,42643,'_blocks_15_options','field_64bfdd9b90684'),(330130,42643,'blocks_15_icon_row_items_0_icon','pass-rate.svg'),(330131,42643,'_blocks_15_icon_row_items_0_icon','field_64bfdd9b9068d'),(330132,42643,'blocks_15_icon_row_items_0_label','More Accurate Assessments'),(330133,42643,'_blocks_15_icon_row_items_0_label','field_64bfdd9c9068e'),(330134,42643,'blocks_15_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(330135,42643,'_blocks_15_icon_row_items_0_text','field_64bfdd9c9068f'),(330136,42643,'blocks_15_icon_row_items_1_icon','exceptional-support.svg'),(330137,42643,'_blocks_15_icon_row_items_1_icon','field_64bfdd9b9068d'),(330138,42643,'blocks_15_icon_row_items_1_label','Personalised Movement Strategies'),(330139,42643,'_blocks_15_icon_row_items_1_label','field_64bfdd9c9068e'),(330140,42643,'blocks_15_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(330141,42643,'_blocks_15_icon_row_items_1_text','field_64bfdd9c9068f'),(330142,42643,'blocks_15_icon_row_items_2_icon','lifetime-course-access.svg'),(330143,42643,'_blocks_15_icon_row_items_2_icon','field_64bfdd9b9068d'),(330144,42643,'blocks_15_icon_row_items_2_label','Injury Prevention and Longevity'),(330145,42643,'_blocks_15_icon_row_items_2_label','field_64bfdd9c9068e'),(330146,42643,'blocks_15_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(330147,42643,'_blocks_15_icon_row_items_2_text','field_64bfdd9c9068f'),(330148,42643,'blocks_15_icon_row_items_3_icon','recognised.svg'),(330149,42643,'_blocks_15_icon_row_items_3_icon','field_64bfdd9b9068d'),(330150,42643,'blocks_15_icon_row_items_3_label','Optimised Performance'),(330151,42643,'_blocks_15_icon_row_items_3_label','field_64bfdd9c9068e'),(330152,42643,'blocks_15_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(330153,42643,'_blocks_15_icon_row_items_3_text','field_64bfdd9c9068f'),(330154,42643,'blocks_15_icon_row_items','4'),(330155,42643,'_blocks_15_icon_row_items','field_64bfdd9b9068c'),(330156,42643,'blocks_16_acfe_flexible_toggle',''),(330157,42643,'_blocks_16_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330158,42643,'blocks_16_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(330159,42643,'_blocks_16_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330160,42643,'blocks_16_options_theme','#ffffff'),(330161,42643,'_blocks_16_options_theme','field_617682847c335_field_6176830e2ad17'),(330162,42643,'blocks_16_options_reverse','0'),(330163,42643,'_blocks_16_options_reverse','field_61768049bb8ac'),(330164,42643,'blocks_16_options',''),(330165,42643,'_blocks_16_options','field_617682517c334'),(330166,42643,'blocks_16_split_5050_image','41501'),(330167,42643,'_blocks_16_split_5050_image','field_6239f527a0c3a'),(330168,42643,'blocks_16_split_5050_video',''),(330169,42643,'_blocks_16_split_5050_video','field_6239f3160848a'),(330170,42643,'blocks_16_split_5050_content_title',''),(330171,42643,'_blocks_16_split_5050_content_title','field_61767bfca3fc0'),(330172,42643,'blocks_16_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(330173,42643,'_blocks_16_split_5050_content_heading','field_61767b26eb8bb'),(330174,42643,'blocks_16_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(330175,42643,'_blocks_16_split_5050_content_text','field_61767b3beb8bc'),(330176,42643,'blocks_16_split_5050_content_actions',''),(330177,42643,'_blocks_16_split_5050_content_actions','field_61767b68eb8bd'),(330178,42643,'blocks_16_split_5050_content',''),(330179,42643,'_blocks_16_split_5050_content','field_61767afceb8ba'),(330180,42643,'blocks_17_acfe_flexible_toggle',''),(330181,42643,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(330182,42643,'blocks_17_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(330183,42643,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(330184,42643,'blocks_17_options_theme','#ffffff'),(330185,42643,'_blocks_17_options_theme','field_6176830e2ad17'),(330186,42643,'blocks_17_options',''),(330187,42643,'_blocks_17_options','field_6176830e2ad16'),(330188,42643,'blocks_17_text_block_heading','The Role of MSK Education in Workplace Health'),(330189,42643,'_blocks_17_text_block_heading','field_617669d413097'),(330190,42643,'blocks_17_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(330191,42643,'_blocks_17_text_block_content','field_617669ec13098'),(330192,42643,'blocks_20_acfe_flexible_toggle',''),(330193,42643,'_blocks_20_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(330194,42643,'blocks_20_acfe_flexible_layout_title','Promo Panel'),(330195,42643,'_blocks_20_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(330196,42643,'blocks_20_options_alignment','center'),(330197,42643,'_blocks_20_options_alignment','field_61769449f5490'),(330198,42643,'blocks_20_options',''),(330199,42643,'_blocks_20_options','field_617693e1428f0'),(330200,42643,'blocks_20_promo_panel_image','41307'),(330201,42643,'_blocks_20_promo_panel_image','field_617693e1428f3'),(330202,42643,'blocks_20_promo_panel_content_heading','Want to Get Started?'),(330203,42643,'_blocks_20_promo_panel_content_heading','field_617693e1428f6'),(330204,42643,'blocks_20_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(330205,42643,'_blocks_20_promo_panel_content_text','field_617693e1428f7'),(330206,42643,'blocks_20_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(330207,42643,'_blocks_20_promo_panel_content_actions_0_button','field_617693e1428f9'),(330208,42643,'blocks_20_promo_panel_content_actions','1'),(330209,42643,'_blocks_20_promo_panel_content_actions','field_617693e1428f8'),(330210,42643,'blocks_20_promo_panel_content',''),(330211,42643,'_blocks_20_promo_panel_content','field_617693e1428f4'),(330212,42644,'hide_hero','0'),(330213,42644,'_hide_hero','field_66a2380fcda39'),(330214,42644,'hero_title',''),(330215,42644,'_hero_title','field_617571fe285e8'),(330216,42644,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(330217,42644,'_hero_text','field_6175723c285e9'),(330218,42644,'hero_actions',''),(330219,42644,'_hero_actions','field_61757270285ea'),(330220,42644,'hero_style','default'),(330221,42644,'_hero_style','field_62051d9dc5324'),(330222,42644,'hero_image_pos_x','right'),(330223,42644,'_hero_image_pos_x','field_62ec3d05390bb'),(330224,42644,'hero_image_pos_y','top'),(330225,42644,'_hero_image_pos_y','field_62ec3d05390bc'),(330226,42644,'hero_image_pos',''),(330227,42644,'_hero_image_pos','field_62ec3d05390ba'),(330228,42644,'fft_hide_from_listings','0'),(330229,42644,'_fft_hide_from_listings','field_61f1320446ab2'),(330230,42644,'post_format','402'),(330231,42644,'_post_format','field_61756bfb51898'),(330232,42644,'post_author',''),(330233,42644,'_post_author','field_62ec389d22113'),(330234,42644,'post_reviewer',''),(330235,42644,'_post_reviewer','field_627140a2a9800'),(330236,42644,'post_table_of_contents','0'),(330237,42644,'_post_table_of_contents','field_65c503bc846a6'),(330238,42644,'blocks','a:21:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"text_block\";i:15;s:5:\"icons\";i:16;s:10:\"split_5050\";i:17;s:10:\"text_block\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:11:\"promo_panel\";}'),(330239,42644,'_blocks','field_6176696113096'),(330240,42644,'_thumbnail_id','40618'),(330241,42644,'__thumbnail_id','field_617570855ddaf'),(330242,42644,'blocks_0_acfe_flexible_toggle',''),(330243,42644,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(330244,42644,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(330245,42644,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(330246,42644,'blocks_0_options_theme','#ffffff'),(330247,42644,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(330248,42644,'blocks_0_options',''),(330249,42644,'_blocks_0_options','field_6177b758246ae'),(330250,42644,'blocks_0_link_stack_content_title',''),(330251,42644,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(330252,42644,'blocks_0_link_stack_content_heading','Introduction'),(330253,42644,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(330254,42644,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(330255,42644,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(330256,42644,'blocks_0_link_stack_content_actions_0_button',''),(330257,42644,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(330258,42644,'blocks_0_link_stack_content_actions','1'),(330259,42644,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(330260,42644,'blocks_0_link_stack_content',''),(330261,42644,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(330262,42644,'blocks_0_link_stack_0_label','1.'),(330263,42644,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(330264,42644,'blocks_0_link_stack_0_title','Overview'),(330265,42644,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(330266,42644,'blocks_0_link_stack_0_url','#overview'),(330267,42644,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(330268,42644,'blocks_0_link_stack_1_label','2.'),(330269,42644,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(330270,42644,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(330271,42644,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(330272,42644,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(330273,42644,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(330274,42644,'blocks_0_link_stack_2_label','3.'),(330275,42644,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(330276,42644,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(330277,42644,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(330278,42644,'blocks_0_link_stack_2_url','#who-should-study-msk'),(330279,42644,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(330280,42644,'blocks_0_link_stack_3_label','4.'),(330281,42644,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(330282,42644,'blocks_0_link_stack_3_title','Common MSK Conditions'),(330283,42644,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(330284,42644,'blocks_0_link_stack_3_url','#common-msk-conditions'),(330285,42644,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(330286,42644,'blocks_0_link_stack_4_label','5.'),(330287,42644,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(330288,42644,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(330289,42644,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(330290,42644,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(330291,42644,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(330292,42644,'blocks_0_link_stack_5_label','6.'),(330293,42644,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(330294,42644,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(330295,42644,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(330296,42644,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(330297,42644,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(330298,42644,'blocks_0_link_stack','6'),(330299,42644,'_blocks_0_link_stack','field_6177b7f600cff'),(330300,42644,'blocks_1_acfe_flexible_toggle',''),(330301,42644,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330302,42644,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(330303,42644,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330304,42644,'blocks_1_options_theme','#ffffff'),(330305,42644,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(330306,42644,'blocks_1_options_reverse','0'),(330307,42644,'_blocks_1_options_reverse','field_61768049bb8ac'),(330308,42644,'blocks_1_options',''),(330309,42644,'_blocks_1_options','field_617682517c334'),(330310,42644,'blocks_1_split_5050_image','40615'),(330311,42644,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(330312,42644,'blocks_1_split_5050_video',''),(330313,42644,'_blocks_1_split_5050_video','field_6239f3160848a'),(330314,42644,'blocks_1_split_5050_content_title',''),(330315,42644,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(330316,42644,'blocks_1_split_5050_content_heading','Overview'),(330317,42644,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(330318,42644,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(330319,42644,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(330320,42644,'blocks_1_split_5050_content_actions',''),(330321,42644,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(330322,42644,'blocks_1_split_5050_content',''),(330323,42644,'_blocks_1_split_5050_content','field_61767afceb8ba'),(330324,42644,'blocks_3_acfe_flexible_toggle','1'),(330325,42644,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330326,42644,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(330327,42644,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330328,42644,'blocks_3_options_theme','#f5f5f5'),(330329,42644,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(330330,42644,'blocks_3_options_reverse','1'),(330331,42644,'_blocks_3_options_reverse','field_61768049bb8ac'),(330332,42644,'blocks_3_options',''),(330333,42644,'_blocks_3_options','field_617682517c334'),(330334,42644,'blocks_3_split_5050_image','41330'),(330335,42644,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(330336,42644,'blocks_3_split_5050_video',''),(330337,42644,'_blocks_3_split_5050_video','field_6239f3160848a'),(330338,42644,'blocks_3_split_5050_content_title',''),(330339,42644,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(330340,42644,'blocks_3_split_5050_content_heading',''),(330341,42644,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(330342,42644,'blocks_3_split_5050_content_text',''),(330343,42644,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(330344,42644,'blocks_3_split_5050_content_actions',''),(330345,42644,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(330346,42644,'blocks_3_split_5050_content',''),(330347,42644,'_blocks_3_split_5050_content','field_61767afceb8ba'),(330348,42644,'blocks_7_acfe_flexible_toggle',''),(330349,42644,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330350,42644,'blocks_7_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(330351,42644,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330352,42644,'blocks_7_options_theme','#ffffff'),(330353,42644,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(330354,42644,'blocks_7_options_reverse','0'),(330355,42644,'_blocks_7_options_reverse','field_61768049bb8ac'),(330356,42644,'blocks_7_options',''),(330357,42644,'_blocks_7_options','field_617682517c334'),(330358,42644,'blocks_7_split_5050_image','41539'),(330359,42644,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(330360,42644,'blocks_7_split_5050_video',''),(330361,42644,'_blocks_7_split_5050_video','field_6239f3160848a'),(330362,42644,'blocks_7_split_5050_content_title','Engineering & Ergonomics'),(330363,42644,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(330364,42644,'blocks_7_split_5050_content_heading',''),(330365,42644,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(330366,42644,'blocks_7_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(330367,42644,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(330368,42644,'blocks_7_split_5050_content_actions',''),(330369,42644,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(330370,42644,'blocks_7_split_5050_content',''),(330371,42644,'_blocks_7_split_5050_content','field_61767afceb8ba'),(330372,42644,'blocks_8_acfe_flexible_toggle',''),(330373,42644,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330374,42644,'blocks_8_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(330375,42644,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330376,42644,'blocks_8_options_theme','#ffffff'),(330377,42644,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(330378,42644,'blocks_8_options_reverse','0'),(330379,42644,'_blocks_8_options_reverse','field_61768049bb8ac'),(330380,42644,'blocks_8_options',''),(330381,42644,'_blocks_8_options','field_617682517c334'),(330382,42644,'blocks_8_split_5050_image','41502'),(330383,42644,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(330384,42644,'blocks_8_split_5050_video',''),(330385,42644,'_blocks_8_split_5050_video','field_6239f3160848a'),(330386,42644,'blocks_8_split_5050_content_title','Research & Academia'),(330387,42644,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(330388,42644,'blocks_8_split_5050_content_heading',''),(330389,42644,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(330390,42644,'blocks_8_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(330391,42644,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(330392,42644,'blocks_8_split_5050_content_actions',''),(330393,42644,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(330394,42644,'blocks_8_split_5050_content',''),(330395,42644,'_blocks_8_split_5050_content','field_61767afceb8ba'),(330396,42644,'blocks_13_acfe_flexible_toggle',''),(330397,42644,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330398,42644,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(330399,42644,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330400,42644,'blocks_13_options_theme','#ffffff'),(330401,42644,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(330402,42644,'blocks_13_options_reverse','1'),(330403,42644,'_blocks_13_options_reverse','field_61768049bb8ac'),(330404,42644,'blocks_13_options',''),(330405,42644,'_blocks_13_options','field_617682517c334'),(330406,42644,'blocks_13_split_5050_image','18856'),(330407,42644,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(330408,42644,'blocks_13_split_5050_video',''),(330409,42644,'_blocks_13_split_5050_video','field_6239f3160848a'),(330410,42644,'blocks_13_split_5050_content_title','Bridging the Gap Between Disciplines'),(330411,42644,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(330412,42644,'blocks_13_split_5050_content_heading',''),(330413,42644,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(330414,42644,'blocks_13_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(330415,42644,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(330416,42644,'blocks_13_split_5050_content_actions',''),(330417,42644,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(330418,42644,'blocks_13_split_5050_content',''),(330419,42644,'_blocks_13_split_5050_content','field_61767afceb8ba'),(330420,42644,'blocks_19_acfe_flexible_toggle',''),(330421,42644,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(330422,42644,'blocks_19_acfe_flexible_layout_title','Conclusion'),(330423,42644,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(330424,42644,'blocks_19_options_theme','#b61234'),(330425,42644,'_blocks_19_options_theme','field_6176830e2ad17'),(330426,42644,'blocks_19_options',''),(330427,42644,'_blocks_19_options','field_6176830e2ad16'),(330428,42644,'blocks_19_text_block_heading','Conclusion'),(330429,42644,'_blocks_19_text_block_heading','field_617669d413097'),(330430,42644,'blocks_19_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(330431,42644,'_blocks_19_text_block_content','field_617669ec13098'),(330432,42644,'blocks_6_acfe_flexible_toggle',''),(330433,42644,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330434,42644,'blocks_6_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(330435,42644,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330436,42644,'blocks_6_options_theme','#ffffff'),(330437,42644,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(330438,42644,'blocks_6_options_reverse','0'),(330439,42644,'_blocks_6_options_reverse','field_61768049bb8ac'),(330440,42644,'blocks_6_options',''),(330441,42644,'_blocks_6_options','field_617682517c334'),(330442,42644,'blocks_6_split_5050_image','41505'),(330443,42644,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(330444,42644,'blocks_6_split_5050_video',''),(330445,42644,'_blocks_6_split_5050_video','field_6239f3160848a'),(330446,42644,'blocks_6_split_5050_content_title','Healthcare & Rehabilitation'),(330447,42644,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(330448,42644,'blocks_6_split_5050_content_heading',''),(330449,42644,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(330450,42644,'blocks_6_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(330451,42644,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(330452,42644,'blocks_6_split_5050_content_actions',''),(330453,42644,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(330454,42644,'blocks_6_split_5050_content',''),(330455,42644,'_blocks_6_split_5050_content','field_61767afceb8ba'),(330456,42644,'blocks_2_acfe_flexible_toggle',''),(330457,42644,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330458,42644,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(330459,42644,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330460,42644,'blocks_2_options_theme','#f5f5f5'),(330461,42644,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(330462,42644,'blocks_2_options_reverse','1'),(330463,42644,'_blocks_2_options_reverse','field_61768049bb8ac'),(330464,42644,'blocks_2_options',''),(330465,42644,'_blocks_2_options','field_617682517c334'),(330466,42644,'blocks_2_split_5050_image','41307'),(330467,42644,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(330468,42644,'blocks_2_split_5050_video',''),(330469,42644,'_blocks_2_split_5050_video','field_6239f3160848a'),(330470,42644,'blocks_2_split_5050_content_title',''),(330471,42644,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(330472,42644,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(330473,42644,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(330474,42644,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(330475,42644,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(330476,42644,'blocks_2_split_5050_content_actions',''),(330477,42644,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(330478,42644,'blocks_2_split_5050_content',''),(330479,42644,'_blocks_2_split_5050_content','field_61767afceb8ba'),(330480,42644,'blocks_4_acfe_flexible_toggle',''),(330481,42644,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(330482,42644,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(330483,42644,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(330484,42644,'blocks_4_options_theme','#ffffff'),(330485,42644,'_blocks_4_options_theme','field_6176830e2ad17'),(330486,42644,'blocks_4_options',''),(330487,42644,'_blocks_4_options','field_6176830e2ad16'),(330488,42644,'blocks_4_text_block_heading','Define Your Career Goals'),(330489,42644,'_blocks_4_text_block_heading','field_617669d413097'),(330490,42644,'blocks_4_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(330491,42644,'_blocks_4_text_block_content','field_617669ec13098'),(330492,42644,'blocks_5_acfe_flexible_toggle',''),(330493,42644,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330494,42644,'blocks_5_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(330495,42644,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330496,42644,'blocks_5_options_theme','#ffffff'),(330497,42644,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(330498,42644,'blocks_5_options_reverse','0'),(330499,42644,'_blocks_5_options_reverse','field_61768049bb8ac'),(330500,42644,'blocks_5_options',''),(330501,42644,'_blocks_5_options','field_617682517c334'),(330502,42644,'blocks_5_split_5050_image','41542'),(330503,42644,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(330504,42644,'blocks_5_split_5050_video',''),(330505,42644,'_blocks_5_split_5050_video','field_6239f3160848a'),(330506,42644,'blocks_5_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(330507,42644,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(330508,42644,'blocks_5_split_5050_content_heading',''),(330509,42644,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(330510,42644,'blocks_5_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(330511,42644,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(330512,42644,'blocks_5_split_5050_content_actions',''),(330513,42644,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(330514,42644,'blocks_5_split_5050_content',''),(330515,42644,'_blocks_5_split_5050_content','field_61767afceb8ba'),(330516,42644,'blocks_12_acfe_flexible_toggle',''),(330517,42644,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330518,42644,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(330519,42644,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330520,42644,'blocks_12_options_theme','#ffffff'),(330521,42644,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(330522,42644,'blocks_12_options_reverse','1'),(330523,42644,'_blocks_12_options_reverse','field_61768049bb8ac'),(330524,42644,'blocks_12_options',''),(330525,42644,'_blocks_12_options','field_617682517c334'),(330526,42644,'blocks_12_split_5050_image','40387'),(330527,42644,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(330528,42644,'blocks_12_split_5050_video',''),(330529,42644,'_blocks_12_split_5050_video','field_6239f3160848a'),(330530,42644,'blocks_12_split_5050_content_title','Early Detection and Targeted Interventions'),(330531,42644,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(330532,42644,'blocks_12_split_5050_content_heading',''),(330533,42644,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(330534,42644,'blocks_12_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(330535,42644,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(330536,42644,'blocks_12_split_5050_content_actions',''),(330537,42644,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(330538,42644,'blocks_12_split_5050_content',''),(330539,42644,'_blocks_12_split_5050_content','field_61767afceb8ba'),(330540,42644,'blocks_18_acfe_flexible_toggle',''),(330541,42644,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(330542,42644,'blocks_18_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(330543,42644,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(330544,42644,'blocks_18_options_theme','#ffffff'),(330545,42644,'_blocks_18_options_theme','field_6176830e2ad17'),(330546,42644,'blocks_18_options',''),(330547,42644,'_blocks_18_options','field_6176830e2ad16'),(330548,42644,'blocks_18_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(330549,42644,'_blocks_18_text_block_heading','field_617669d413097'),(330550,42644,'blocks_18_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(330551,42644,'_blocks_18_text_block_content','field_617669ec13098'),(330552,42644,'blocks_9_acfe_flexible_toggle',''),(330553,42644,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(330554,42644,'blocks_9_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(330555,42644,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(330556,42644,'blocks_9_options_theme','#f5f5f5'),(330557,42644,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(330558,42644,'blocks_9_options_state','0'),(330559,42644,'_blocks_9_options_state','field_6239fcb7508c5'),(330560,42644,'blocks_9_options',''),(330561,42644,'_blocks_9_options','field_6177e2991ac44'),(330562,42644,'blocks_9_content_title',''),(330563,42644,'_blocks_9_content_title','field_64d237e8bb1e2'),(330564,42644,'blocks_9_content_heading','Evaluate Course Content'),(330565,42644,'_blocks_9_content_heading','field_64d237e8bb1e3'),(330566,42644,'blocks_9_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(330567,42644,'_blocks_9_content_text','field_64d237e8bb1e4'),(330568,42644,'blocks_9_content_actions',''),(330569,42644,'_blocks_9_content_actions','field_64d237e8bb1e5'),(330570,42644,'blocks_9_content_align','left'),(330571,42644,'_blocks_9_content_align','field_64d2443e6b6aa'),(330572,42644,'blocks_9_content',''),(330573,42644,'_blocks_9_content','field_64d237e8bb1e1'),(330574,42644,'blocks_9_accordion_content','custom'),(330575,42644,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(330576,42644,'blocks_9_accordion_items_0_title','Fundamentals of Biomechanics'),(330577,42644,'_blocks_9_accordion_items_0_title','field_6177e2991ac4d'),(330578,42644,'blocks_9_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(330579,42644,'_blocks_9_accordion_items_0_text','field_6177e2991ac4e'),(330580,42644,'blocks_9_accordion_items_1_title','Advanced Motion Analysis'),(330581,42644,'_blocks_9_accordion_items_1_title','field_6177e2991ac4d'),(330582,42644,'blocks_9_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(330583,42644,'_blocks_9_accordion_items_1_text','field_6177e2991ac4e'),(330584,42644,'blocks_9_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(330585,42644,'_blocks_9_accordion_items_2_title','field_6177e2991ac4d'),(330586,42644,'blocks_9_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(330587,42644,'_blocks_9_accordion_items_2_text','field_6177e2991ac4e'),(330588,42644,'blocks_9_accordion_items_3_title','Sports Biomechanics'),(330589,42644,'_blocks_9_accordion_items_3_title','field_6177e2991ac4d');
INSERT INTO `6m7_postmeta` VALUES (330590,42644,'blocks_9_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(330591,42644,'_blocks_9_accordion_items_3_text','field_6177e2991ac4e'),(330592,42644,'blocks_9_accordion_items_4_title','Biomedical Engineering Applications'),(330593,42644,'_blocks_9_accordion_items_4_title','field_6177e2991ac4d'),(330594,42644,'blocks_9_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(330595,42644,'_blocks_9_accordion_items_4_text','field_6177e2991ac4e'),(330596,42644,'blocks_9_accordion_items_5_title','Computational Biomechanics'),(330597,42644,'_blocks_9_accordion_items_5_title','field_6177e2991ac4d'),(330598,42644,'blocks_9_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(330599,42644,'_blocks_9_accordion_items_5_text','field_6177e2991ac4e'),(330600,42644,'blocks_9_accordion_items','6'),(330601,42644,'_blocks_9_accordion_items','field_6177e2991ac4c'),(330602,42644,'blocks_9_actions',''),(330603,42644,'_blocks_9_actions','field_61a746a817f7a'),(330604,42644,'blocks_10_acfe_flexible_toggle',''),(330605,42644,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(330606,42644,'blocks_10_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(330607,42644,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(330608,42644,'blocks_10_options_theme','#ffffff'),(330609,42644,'_blocks_10_options_theme','field_6176830e2ad17'),(330610,42644,'blocks_10_options',''),(330611,42644,'_blocks_10_options','field_6176830e2ad16'),(330612,42644,'blocks_10_text_block_heading','The Importance of MSK Education'),(330613,42644,'_blocks_10_text_block_heading','field_617669d413097'),(330614,42644,'blocks_10_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(330615,42644,'_blocks_10_text_block_content','field_617669ec13098'),(330616,42644,'blocks_11_acfe_flexible_toggle',''),(330617,42644,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330618,42644,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(330619,42644,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330620,42644,'blocks_11_options_theme','#ffffff'),(330621,42644,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(330622,42644,'blocks_11_options_reverse','1'),(330623,42644,'_blocks_11_options_reverse','field_61768049bb8ac'),(330624,42644,'blocks_11_options',''),(330625,42644,'_blocks_11_options','field_617682517c334'),(330626,42644,'blocks_11_split_5050_image','41498'),(330627,42644,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(330628,42644,'blocks_11_split_5050_video',''),(330629,42644,'_blocks_11_split_5050_video','field_6239f3160848a'),(330630,42644,'blocks_11_split_5050_content_title','Building a Strong Foundation in MSK Health'),(330631,42644,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(330632,42644,'blocks_11_split_5050_content_heading',''),(330633,42644,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(330634,42644,'blocks_11_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(330635,42644,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(330636,42644,'blocks_11_split_5050_content_actions',''),(330637,42644,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(330638,42644,'blocks_11_split_5050_content',''),(330639,42644,'_blocks_11_split_5050_content','field_61767afceb8ba'),(330640,42644,'blocks_14_acfe_flexible_toggle',''),(330641,42644,'_blocks_14_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(330642,42644,'blocks_14_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(330643,42644,'_blocks_14_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(330644,42644,'blocks_14_options_theme','#b61234'),(330645,42644,'_blocks_14_options_theme','field_6176830e2ad17'),(330646,42644,'blocks_14_options',''),(330647,42644,'_blocks_14_options','field_6176830e2ad16'),(330648,42644,'blocks_14_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(330649,42644,'_blocks_14_text_block_heading','field_617669d413097'),(330650,42644,'blocks_14_text_block_content',''),(330651,42644,'_blocks_14_text_block_content','field_617669ec13098'),(330652,42644,'blocks_15_acfe_flexible_toggle',''),(330653,42644,'_blocks_15_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(330654,42644,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(330655,42644,'_blocks_15_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(330656,42644,'blocks_15_options_theme','#b61234'),(330657,42644,'_blocks_15_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(330658,42644,'blocks_15_options_format','row'),(330659,42644,'_blocks_15_options_format','field_64bfde9a90690'),(330660,42644,'blocks_15_options',''),(330661,42644,'_blocks_15_options','field_64bfdd9b90684'),(330662,42644,'blocks_15_icon_row_items_0_icon','pass-rate.svg'),(330663,42644,'_blocks_15_icon_row_items_0_icon','field_64bfdd9b9068d'),(330664,42644,'blocks_15_icon_row_items_0_label','More Accurate Assessments'),(330665,42644,'_blocks_15_icon_row_items_0_label','field_64bfdd9c9068e'),(330666,42644,'blocks_15_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(330667,42644,'_blocks_15_icon_row_items_0_text','field_64bfdd9c9068f'),(330668,42644,'blocks_15_icon_row_items_1_icon','exceptional-support.svg'),(330669,42644,'_blocks_15_icon_row_items_1_icon','field_64bfdd9b9068d'),(330670,42644,'blocks_15_icon_row_items_1_label','Personalised Movement Strategies'),(330671,42644,'_blocks_15_icon_row_items_1_label','field_64bfdd9c9068e'),(330672,42644,'blocks_15_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(330673,42644,'_blocks_15_icon_row_items_1_text','field_64bfdd9c9068f'),(330674,42644,'blocks_15_icon_row_items_2_icon','lifetime-course-access.svg'),(330675,42644,'_blocks_15_icon_row_items_2_icon','field_64bfdd9b9068d'),(330676,42644,'blocks_15_icon_row_items_2_label','Injury Prevention and Longevity'),(330677,42644,'_blocks_15_icon_row_items_2_label','field_64bfdd9c9068e'),(330678,42644,'blocks_15_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(330679,42644,'_blocks_15_icon_row_items_2_text','field_64bfdd9c9068f'),(330680,42644,'blocks_15_icon_row_items_3_icon','recognised.svg'),(330681,42644,'_blocks_15_icon_row_items_3_icon','field_64bfdd9b9068d'),(330682,42644,'blocks_15_icon_row_items_3_label','Optimised Performance'),(330683,42644,'_blocks_15_icon_row_items_3_label','field_64bfdd9c9068e'),(330684,42644,'blocks_15_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(330685,42644,'_blocks_15_icon_row_items_3_text','field_64bfdd9c9068f'),(330686,42644,'blocks_15_icon_row_items','4'),(330687,42644,'_blocks_15_icon_row_items','field_64bfdd9b9068c'),(330688,42644,'blocks_16_acfe_flexible_toggle',''),(330689,42644,'_blocks_16_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330690,42644,'blocks_16_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(330691,42644,'_blocks_16_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330692,42644,'blocks_16_options_theme','#ffffff'),(330693,42644,'_blocks_16_options_theme','field_617682847c335_field_6176830e2ad17'),(330694,42644,'blocks_16_options_reverse','0'),(330695,42644,'_blocks_16_options_reverse','field_61768049bb8ac'),(330696,42644,'blocks_16_options',''),(330697,42644,'_blocks_16_options','field_617682517c334'),(330698,42644,'blocks_16_split_5050_image','41501'),(330699,42644,'_blocks_16_split_5050_image','field_6239f527a0c3a'),(330700,42644,'blocks_16_split_5050_video',''),(330701,42644,'_blocks_16_split_5050_video','field_6239f3160848a'),(330702,42644,'blocks_16_split_5050_content_title',''),(330703,42644,'_blocks_16_split_5050_content_title','field_61767bfca3fc0'),(330704,42644,'blocks_16_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(330705,42644,'_blocks_16_split_5050_content_heading','field_61767b26eb8bb'),(330706,42644,'blocks_16_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(330707,42644,'_blocks_16_split_5050_content_text','field_61767b3beb8bc'),(330708,42644,'blocks_16_split_5050_content_actions',''),(330709,42644,'_blocks_16_split_5050_content_actions','field_61767b68eb8bd'),(330710,42644,'blocks_16_split_5050_content',''),(330711,42644,'_blocks_16_split_5050_content','field_61767afceb8ba'),(330712,42644,'blocks_17_acfe_flexible_toggle',''),(330713,42644,'_blocks_17_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(330714,42644,'blocks_17_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(330715,42644,'_blocks_17_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(330716,42644,'blocks_17_options_theme','#ffffff'),(330717,42644,'_blocks_17_options_theme','field_6176830e2ad17'),(330718,42644,'blocks_17_options',''),(330719,42644,'_blocks_17_options','field_6176830e2ad16'),(330720,42644,'blocks_17_text_block_heading','The Role of MSK Education in Workplace Health'),(330721,42644,'_blocks_17_text_block_heading','field_617669d413097'),(330722,42644,'blocks_17_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(330723,42644,'_blocks_17_text_block_content','field_617669ec13098'),(330724,42644,'blocks_20_acfe_flexible_toggle',''),(330725,42644,'_blocks_20_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(330726,42644,'blocks_20_acfe_flexible_layout_title','Promo Panel'),(330727,42644,'_blocks_20_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(330728,42644,'blocks_20_options_alignment','center'),(330729,42644,'_blocks_20_options_alignment','field_61769449f5490'),(330730,42644,'blocks_20_options',''),(330731,42644,'_blocks_20_options','field_617693e1428f0'),(330732,42644,'blocks_20_promo_panel_image','41307'),(330733,42644,'_blocks_20_promo_panel_image','field_617693e1428f3'),(330734,42644,'blocks_20_promo_panel_content_heading','Want to Get Started?'),(330735,42644,'_blocks_20_promo_panel_content_heading','field_617693e1428f6'),(330736,42644,'blocks_20_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(330737,42644,'_blocks_20_promo_panel_content_text','field_617693e1428f7'),(330738,42644,'blocks_20_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(330739,42644,'_blocks_20_promo_panel_content_actions_0_button','field_617693e1428f9'),(330740,42644,'blocks_20_promo_panel_content_actions','1'),(330741,42644,'_blocks_20_promo_panel_content_actions','field_617693e1428f8'),(330742,42644,'blocks_20_promo_panel_content',''),(330743,42644,'_blocks_20_promo_panel_content','field_617693e1428f4'),(330786,42635,'blocks_14_acfe_flexible_toggle',''),(330787,42635,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(330788,42635,'blocks_14_acfe_flexible_layout_title','Opportunities (4)'),(330789,42635,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(330790,42635,'blocks_14_options_theme','#ffffff'),(330791,42635,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(330792,42635,'blocks_14_options_reverse','0'),(330793,42635,'_blocks_14_options_reverse','field_61768049bb8ac'),(330794,42635,'blocks_14_options',''),(330795,42635,'_blocks_14_options','field_617682517c334'),(330796,42635,'blocks_14_split_5050_image','39483'),(330797,42635,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(330798,42635,'blocks_14_split_5050_video',''),(330799,42635,'_blocks_14_split_5050_video','field_6239f3160848a'),(330800,42635,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(330801,42635,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(330802,42635,'blocks_14_split_5050_content_heading',''),(330803,42635,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(330804,42635,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(330805,42635,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(330806,42635,'blocks_14_split_5050_content_actions',''),(330807,42635,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(330808,42635,'blocks_14_split_5050_content',''),(330809,42635,'_blocks_14_split_5050_content','field_61767afceb8ba'),(330882,42635,'blocks_20_acfe_flexible_toggle',''),(330883,42635,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(330884,42635,'blocks_20_acfe_flexible_layout_title','Costs and Payment[anchor]'),(330885,42635,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(330886,42635,'blocks_20_options_theme','#b61234'),(330887,42635,'_blocks_20_options_theme','field_6176830e2ad17'),(330888,42635,'blocks_20_options',''),(330889,42635,'_blocks_20_options','field_6176830e2ad16'),(330890,42635,'blocks_20_text_block_heading','Compare Costs, Payment & Finance Options'),(330891,42635,'_blocks_20_text_block_heading','field_617669d413097'),(330892,42635,'blocks_20_text_block_content','Biomechanics courses can vary significantly in cost, depending on factors such as course level, institution, and delivery format. While investing in your education is important, it’s equally essential to choose a course that provides good value for money and aligns with your career goals. Understanding the financial commitment involved and exploring available funding options can help you make an informed decision without unnecessary financial strain.'),(330893,42635,'_blocks_20_text_block_content','field_617669ec13098'),(330914,42645,'hide_hero','0'),(330915,42645,'_hide_hero','field_66a2380fcda39'),(330916,42645,'hero_title',''),(330917,42645,'_hero_title','field_617571fe285e8'),(330918,42645,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(330919,42645,'_hero_text','field_6175723c285e9'),(330920,42645,'hero_actions',''),(330921,42645,'_hero_actions','field_61757270285ea'),(330922,42645,'hero_style','default'),(330923,42645,'_hero_style','field_62051d9dc5324'),(330924,42645,'hero_image_pos_x','right'),(330925,42645,'_hero_image_pos_x','field_62ec3d05390bb'),(330926,42645,'hero_image_pos_y','top'),(330927,42645,'_hero_image_pos_y','field_62ec3d05390bc'),(330928,42645,'hero_image_pos',''),(330929,42645,'_hero_image_pos','field_62ec3d05390ba'),(330930,42645,'fft_hide_from_listings','0'),(330931,42645,'_fft_hide_from_listings','field_61f1320446ab2'),(330932,42645,'post_format','402'),(330933,42645,'_post_format','field_61756bfb51898'),(330934,42645,'post_author',''),(330935,42645,'_post_author','field_62ec389d22113'),(330936,42645,'post_reviewer',''),(330937,42645,'_post_reviewer','field_627140a2a9800'),(330938,42645,'post_table_of_contents','0'),(330939,42645,'_post_table_of_contents','field_65c503bc846a6'),(330940,42645,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:5:\"icons\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(330941,42645,'_blocks','field_6176696113096'),(330942,42645,'_thumbnail_id','40618'),(330943,42645,'__thumbnail_id','field_617570855ddaf'),(330944,42645,'blocks_0_acfe_flexible_toggle',''),(330945,42645,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(330946,42645,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(330947,42645,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(330948,42645,'blocks_0_options_theme','#ffffff'),(330949,42645,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(330950,42645,'blocks_0_options',''),(330951,42645,'_blocks_0_options','field_6177b758246ae'),(330952,42645,'blocks_0_link_stack_content_title',''),(330953,42645,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(330954,42645,'blocks_0_link_stack_content_heading','Introduction'),(330955,42645,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(330956,42645,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(330957,42645,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(330958,42645,'blocks_0_link_stack_content_actions_0_button',''),(330959,42645,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(330960,42645,'blocks_0_link_stack_content_actions','1'),(330961,42645,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(330962,42645,'blocks_0_link_stack_content',''),(330963,42645,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(330964,42645,'blocks_0_link_stack_0_label','1.'),(330965,42645,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(330966,42645,'blocks_0_link_stack_0_title','Overview'),(330967,42645,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(330968,42645,'blocks_0_link_stack_0_url','#overview'),(330969,42645,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(330970,42645,'blocks_0_link_stack_1_label','2.'),(330971,42645,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(330972,42645,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(330973,42645,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(330974,42645,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(330975,42645,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(330976,42645,'blocks_0_link_stack_2_label','3.'),(330977,42645,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(330978,42645,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(330979,42645,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(330980,42645,'blocks_0_link_stack_2_url','#who-should-study-msk'),(330981,42645,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(330982,42645,'blocks_0_link_stack_3_label','4.'),(330983,42645,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(330984,42645,'blocks_0_link_stack_3_title','Common MSK Conditions'),(330985,42645,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(330986,42645,'blocks_0_link_stack_3_url','#common-msk-conditions'),(330987,42645,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(330988,42645,'blocks_0_link_stack_4_label','5.'),(330989,42645,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(330990,42645,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(330991,42645,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(330992,42645,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(330993,42645,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(330994,42645,'blocks_0_link_stack_5_label','6.'),(330995,42645,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(330996,42645,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(330997,42645,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(330998,42645,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(330999,42645,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(331000,42645,'blocks_0_link_stack','6'),(331001,42645,'_blocks_0_link_stack','field_6177b7f600cff'),(331002,42645,'blocks_1_acfe_flexible_toggle',''),(331003,42645,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331004,42645,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(331005,42645,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331006,42645,'blocks_1_options_theme','#ffffff'),(331007,42645,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(331008,42645,'blocks_1_options_reverse','0'),(331009,42645,'_blocks_1_options_reverse','field_61768049bb8ac'),(331010,42645,'blocks_1_options',''),(331011,42645,'_blocks_1_options','field_617682517c334'),(331012,42645,'blocks_1_split_5050_image','40615'),(331013,42645,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(331014,42645,'blocks_1_split_5050_video',''),(331015,42645,'_blocks_1_split_5050_video','field_6239f3160848a'),(331016,42645,'blocks_1_split_5050_content_title',''),(331017,42645,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(331018,42645,'blocks_1_split_5050_content_heading','Overview'),(331019,42645,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(331020,42645,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(331021,42645,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(331022,42645,'blocks_1_split_5050_content_actions',''),(331023,42645,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(331024,42645,'blocks_1_split_5050_content',''),(331025,42645,'_blocks_1_split_5050_content','field_61767afceb8ba'),(331026,42645,'blocks_3_acfe_flexible_toggle','1'),(331027,42645,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331028,42645,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(331029,42645,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331030,42645,'blocks_3_options_theme','#f5f5f5'),(331031,42645,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(331032,42645,'blocks_3_options_reverse','1'),(331033,42645,'_blocks_3_options_reverse','field_61768049bb8ac'),(331034,42645,'blocks_3_options',''),(331035,42645,'_blocks_3_options','field_617682517c334'),(331036,42645,'blocks_3_split_5050_image','41330'),(331037,42645,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(331038,42645,'blocks_3_split_5050_video',''),(331039,42645,'_blocks_3_split_5050_video','field_6239f3160848a'),(331040,42645,'blocks_3_split_5050_content_title',''),(331041,42645,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(331042,42645,'blocks_3_split_5050_content_heading',''),(331043,42645,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(331044,42645,'blocks_3_split_5050_content_text',''),(331045,42645,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(331046,42645,'blocks_3_split_5050_content_actions',''),(331047,42645,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(331048,42645,'blocks_3_split_5050_content',''),(331049,42645,'_blocks_3_split_5050_content','field_61767afceb8ba'),(331050,42645,'blocks_7_acfe_flexible_toggle',''),(331051,42645,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331052,42645,'blocks_7_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(331053,42645,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331054,42645,'blocks_7_options_theme','#ffffff'),(331055,42645,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(331056,42645,'blocks_7_options_reverse','0'),(331057,42645,'_blocks_7_options_reverse','field_61768049bb8ac'),(331058,42645,'blocks_7_options',''),(331059,42645,'_blocks_7_options','field_617682517c334'),(331060,42645,'blocks_7_split_5050_image','41539'),(331061,42645,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(331062,42645,'blocks_7_split_5050_video',''),(331063,42645,'_blocks_7_split_5050_video','field_6239f3160848a'),(331064,42645,'blocks_7_split_5050_content_title','Engineering & Ergonomics'),(331065,42645,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(331066,42645,'blocks_7_split_5050_content_heading',''),(331067,42645,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(331068,42645,'blocks_7_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(331069,42645,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(331070,42645,'blocks_7_split_5050_content_actions',''),(331071,42645,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(331072,42645,'blocks_7_split_5050_content',''),(331073,42645,'_blocks_7_split_5050_content','field_61767afceb8ba'),(331074,42645,'blocks_8_acfe_flexible_toggle',''),(331075,42645,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331076,42645,'blocks_8_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(331077,42645,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331078,42645,'blocks_8_options_theme','#ffffff'),(331079,42645,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(331080,42645,'blocks_8_options_reverse','0'),(331081,42645,'_blocks_8_options_reverse','field_61768049bb8ac'),(331082,42645,'blocks_8_options',''),(331083,42645,'_blocks_8_options','field_617682517c334'),(331084,42645,'blocks_8_split_5050_image','41502'),(331085,42645,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(331086,42645,'blocks_8_split_5050_video',''),(331087,42645,'_blocks_8_split_5050_video','field_6239f3160848a'),(331088,42645,'blocks_8_split_5050_content_title','Research & Academia'),(331089,42645,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(331090,42645,'blocks_8_split_5050_content_heading',''),(331091,42645,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(331092,42645,'blocks_8_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(331093,42645,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(331094,42645,'blocks_8_split_5050_content_actions',''),(331095,42645,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(331096,42645,'blocks_8_split_5050_content',''),(331097,42645,'_blocks_8_split_5050_content','field_61767afceb8ba'),(331098,42645,'blocks_13_acfe_flexible_toggle',''),(331099,42645,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331100,42645,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(331101,42645,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331102,42645,'blocks_13_options_theme','#ffffff'),(331103,42645,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(331104,42645,'blocks_13_options_reverse','1'),(331105,42645,'_blocks_13_options_reverse','field_61768049bb8ac'),(331106,42645,'blocks_13_options',''),(331107,42645,'_blocks_13_options','field_617682517c334'),(331108,42645,'blocks_13_split_5050_image','40387'),(331109,42645,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(331110,42645,'blocks_13_split_5050_video',''),(331111,42645,'_blocks_13_split_5050_video','field_6239f3160848a'),(331112,42645,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(331113,42645,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(331114,42645,'blocks_13_split_5050_content_heading',''),(331115,42645,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(331116,42645,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(331117,42645,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(331118,42645,'blocks_13_split_5050_content_actions',''),(331119,42645,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(331120,42645,'blocks_13_split_5050_content',''),(331121,42645,'_blocks_13_split_5050_content','field_61767afceb8ba'),(331122,42645,'blocks_19_acfe_flexible_toggle',''),(331123,42645,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(331124,42645,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(331125,42645,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(331126,42645,'blocks_19_options_theme','#ffffff'),(331127,42645,'_blocks_19_options_theme','field_6176830e2ad17'),(331128,42645,'blocks_19_options',''),(331129,42645,'_blocks_19_options','field_6176830e2ad16'),(331130,42645,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(331131,42645,'_blocks_19_text_block_heading','field_617669d413097'),(331132,42645,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(331133,42645,'_blocks_19_text_block_content','field_617669ec13098'),(331134,42645,'blocks_6_acfe_flexible_toggle',''),(331135,42645,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331136,42645,'blocks_6_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(331137,42645,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331138,42645,'blocks_6_options_theme','#ffffff'),(331139,42645,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(331140,42645,'blocks_6_options_reverse','0'),(331141,42645,'_blocks_6_options_reverse','field_61768049bb8ac'),(331142,42645,'blocks_6_options',''),(331143,42645,'_blocks_6_options','field_617682517c334'),(331144,42645,'blocks_6_split_5050_image','41505'),(331145,42645,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(331146,42645,'blocks_6_split_5050_video',''),(331147,42645,'_blocks_6_split_5050_video','field_6239f3160848a'),(331148,42645,'blocks_6_split_5050_content_title','Healthcare & Rehabilitation'),(331149,42645,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(331150,42645,'blocks_6_split_5050_content_heading',''),(331151,42645,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(331152,42645,'blocks_6_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(331153,42645,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(331154,42645,'blocks_6_split_5050_content_actions',''),(331155,42645,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(331156,42645,'blocks_6_split_5050_content',''),(331157,42645,'_blocks_6_split_5050_content','field_61767afceb8ba'),(331158,42645,'blocks_2_acfe_flexible_toggle',''),(331159,42645,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331160,42645,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(331161,42645,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331162,42645,'blocks_2_options_theme','#f5f5f5'),(331163,42645,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(331164,42645,'blocks_2_options_reverse','1'),(331165,42645,'_blocks_2_options_reverse','field_61768049bb8ac'),(331166,42645,'blocks_2_options',''),(331167,42645,'_blocks_2_options','field_617682517c334'),(331168,42645,'blocks_2_split_5050_image','41307'),(331169,42645,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(331170,42645,'blocks_2_split_5050_video',''),(331171,42645,'_blocks_2_split_5050_video','field_6239f3160848a'),(331172,42645,'blocks_2_split_5050_content_title',''),(331173,42645,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(331174,42645,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(331175,42645,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(331176,42645,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(331177,42645,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(331178,42645,'blocks_2_split_5050_content_actions',''),(331179,42645,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(331180,42645,'blocks_2_split_5050_content',''),(331181,42645,'_blocks_2_split_5050_content','field_61767afceb8ba'),(331182,42645,'blocks_4_acfe_flexible_toggle',''),(331183,42645,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(331184,42645,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(331185,42645,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(331186,42645,'blocks_4_options_theme','#ffffff'),(331187,42645,'_blocks_4_options_theme','field_6176830e2ad17'),(331188,42645,'blocks_4_options',''),(331189,42645,'_blocks_4_options','field_6176830e2ad16'),(331190,42645,'blocks_4_text_block_heading','Define Your Career Goals'),(331191,42645,'_blocks_4_text_block_heading','field_617669d413097'),(331192,42645,'blocks_4_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(331193,42645,'_blocks_4_text_block_content','field_617669ec13098'),(331194,42645,'blocks_5_acfe_flexible_toggle',''),(331195,42645,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331196,42645,'blocks_5_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(331197,42645,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331198,42645,'blocks_5_options_theme','#ffffff'),(331199,42645,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(331200,42645,'blocks_5_options_reverse','0'),(331201,42645,'_blocks_5_options_reverse','field_61768049bb8ac'),(331202,42645,'blocks_5_options',''),(331203,42645,'_blocks_5_options','field_617682517c334'),(331204,42645,'blocks_5_split_5050_image','41542'),(331205,42645,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(331206,42645,'blocks_5_split_5050_video',''),(331207,42645,'_blocks_5_split_5050_video','field_6239f3160848a'),(331208,42645,'blocks_5_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(331209,42645,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(331210,42645,'blocks_5_split_5050_content_heading',''),(331211,42645,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(331212,42645,'blocks_5_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(331213,42645,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(331214,42645,'blocks_5_split_5050_content_actions',''),(331215,42645,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(331216,42645,'blocks_5_split_5050_content',''),(331217,42645,'_blocks_5_split_5050_content','field_61767afceb8ba'),(331218,42645,'blocks_12_acfe_flexible_toggle',''),(331219,42645,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331220,42645,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(331221,42645,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331222,42645,'blocks_12_options_theme','#ffffff'),(331223,42645,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(331224,42645,'blocks_12_options_reverse','1'),(331225,42645,'_blocks_12_options_reverse','field_61768049bb8ac'),(331226,42645,'blocks_12_options',''),(331227,42645,'_blocks_12_options','field_617682517c334'),(331228,42645,'blocks_12_split_5050_image','41498'),(331229,42645,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(331230,42645,'blocks_12_split_5050_video',''),(331231,42645,'_blocks_12_split_5050_video','field_6239f3160848a'),(331232,42645,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(331233,42645,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(331234,42645,'blocks_12_split_5050_content_heading',''),(331235,42645,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(331236,42645,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(331237,42645,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(331238,42645,'blocks_12_split_5050_content_actions',''),(331239,42645,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(331240,42645,'blocks_12_split_5050_content',''),(331241,42645,'_blocks_12_split_5050_content','field_61767afceb8ba'),(331242,42645,'blocks_18_acfe_flexible_toggle',''),(331243,42645,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(331244,42645,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(331245,42645,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(331246,42645,'blocks_18_options_theme','#ffffff'),(331247,42645,'_blocks_18_options_theme','field_6176830e2ad17'),(331248,42645,'blocks_18_options',''),(331249,42645,'_blocks_18_options','field_6176830e2ad16'),(331250,42645,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(331251,42645,'_blocks_18_text_block_heading','field_617669d413097'),(331252,42645,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(331253,42645,'_blocks_18_text_block_content','field_617669ec13098'),(331254,42645,'blocks_9_acfe_flexible_toggle',''),(331255,42645,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(331256,42645,'blocks_9_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(331257,42645,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(331258,42645,'blocks_9_options_theme','#f5f5f5'),(331259,42645,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(331260,42645,'blocks_9_options_state','0'),(331261,42645,'_blocks_9_options_state','field_6239fcb7508c5'),(331262,42645,'blocks_9_options',''),(331263,42645,'_blocks_9_options','field_6177e2991ac44'),(331264,42645,'blocks_9_content_title',''),(331265,42645,'_blocks_9_content_title','field_64d237e8bb1e2'),(331266,42645,'blocks_9_content_heading','Evaluate Course Content'),(331267,42645,'_blocks_9_content_heading','field_64d237e8bb1e3'),(331268,42645,'blocks_9_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(331269,42645,'_blocks_9_content_text','field_64d237e8bb1e4'),(331270,42645,'blocks_9_content_actions',''),(331271,42645,'_blocks_9_content_actions','field_64d237e8bb1e5'),(331272,42645,'blocks_9_content_align','left'),(331273,42645,'_blocks_9_content_align','field_64d2443e6b6aa'),(331274,42645,'blocks_9_content',''),(331275,42645,'_blocks_9_content','field_64d237e8bb1e1'),(331276,42645,'blocks_9_accordion_content','custom'),(331277,42645,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(331278,42645,'blocks_9_accordion_items_0_title','Fundamentals of Biomechanics'),(331279,42645,'_blocks_9_accordion_items_0_title','field_6177e2991ac4d'),(331280,42645,'blocks_9_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(331281,42645,'_blocks_9_accordion_items_0_text','field_6177e2991ac4e'),(331282,42645,'blocks_9_accordion_items_1_title','Advanced Motion Analysis'),(331283,42645,'_blocks_9_accordion_items_1_title','field_6177e2991ac4d'),(331284,42645,'blocks_9_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(331285,42645,'_blocks_9_accordion_items_1_text','field_6177e2991ac4e'),(331286,42645,'blocks_9_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(331287,42645,'_blocks_9_accordion_items_2_title','field_6177e2991ac4d'),(331288,42645,'blocks_9_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(331289,42645,'_blocks_9_accordion_items_2_text','field_6177e2991ac4e'),(331290,42645,'blocks_9_accordion_items_3_title','Sports Biomechanics'),(331291,42645,'_blocks_9_accordion_items_3_title','field_6177e2991ac4d'),(331292,42645,'blocks_9_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(331293,42645,'_blocks_9_accordion_items_3_text','field_6177e2991ac4e'),(331294,42645,'blocks_9_accordion_items_4_title','Biomedical Engineering Applications'),(331295,42645,'_blocks_9_accordion_items_4_title','field_6177e2991ac4d'),(331296,42645,'blocks_9_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(331297,42645,'_blocks_9_accordion_items_4_text','field_6177e2991ac4e'),(331298,42645,'blocks_9_accordion_items_5_title','Computational Biomechanics'),(331299,42645,'_blocks_9_accordion_items_5_title','field_6177e2991ac4d'),(331300,42645,'blocks_9_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(331301,42645,'_blocks_9_accordion_items_5_text','field_6177e2991ac4e'),(331302,42645,'blocks_9_accordion_items','6'),(331303,42645,'_blocks_9_accordion_items','field_6177e2991ac4c'),(331304,42645,'blocks_9_actions',''),(331305,42645,'_blocks_9_actions','field_61a746a817f7a'),(331306,42645,'blocks_10_acfe_flexible_toggle',''),(331307,42645,'_blocks_10_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(331308,42645,'blocks_10_acfe_flexible_layout_title','Icons'),(331309,42645,'_blocks_10_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(331310,42645,'blocks_10_options_theme','#ffffff'),(331311,42645,'_blocks_10_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(331312,42645,'blocks_10_options_format','row'),(331313,42645,'_blocks_10_options_format','field_64bfde9a90690'),(331314,42645,'blocks_10_options',''),(331315,42645,'_blocks_10_options','field_64bfdd9b90684'),(331316,42645,'blocks_10_icon_row_items_0_icon','pliates-stamp.svg'),(331317,42645,'_blocks_10_icon_row_items_0_icon','field_64bfdd9b9068d'),(331318,42645,'blocks_10_icon_row_items_0_label','Industry Recognition'),(331319,42645,'_blocks_10_icon_row_items_0_label','field_64bfdd9c9068e'),(331320,42645,'blocks_10_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(331321,42645,'_blocks_10_icon_row_items_0_text','field_64bfdd9c9068f'),(331322,42645,'blocks_10_icon_row_items_1_icon','qualification.svg'),(331323,42645,'_blocks_10_icon_row_items_1_icon','field_64bfdd9b9068d'),(331324,42645,'blocks_10_icon_row_items_1_label','University Accreditation'),(331325,42645,'_blocks_10_icon_row_items_1_label','field_64bfdd9c9068e'),(331326,42645,'blocks_10_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(331327,42645,'_blocks_10_icon_row_items_1_text','field_64bfdd9c9068f'),(331328,42645,'blocks_10_icon_row_items_2_icon','accreditation.svg'),(331329,42645,'_blocks_10_icon_row_items_2_icon','field_64bfdd9b9068d'),(331330,42645,'blocks_10_icon_row_items_2_label','Programme Accreditation'),(331331,42645,'_blocks_10_icon_row_items_2_label','field_64bfdd9c9068e'),(331332,42645,'blocks_10_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(331333,42645,'_blocks_10_icon_row_items_2_text','field_64bfdd9c9068f'),(331334,42645,'blocks_10_icon_row_items','3'),(331335,42645,'_blocks_10_icon_row_items','field_64bfdd9b9068c'),(331336,42645,'blocks_11_acfe_flexible_toggle',''),(331337,42645,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(331338,42645,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(331339,42645,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(331340,42645,'blocks_11_options_theme','#ffffff'),(331341,42645,'_blocks_11_options_theme','field_6176830e2ad17'),(331342,42645,'blocks_11_options',''),(331343,42645,'_blocks_11_options','field_6176830e2ad16'),(331344,42645,'blocks_11_text_block_heading','The Importance of MSK Education'),(331345,42645,'_blocks_11_text_block_heading','field_617669d413097'),(331346,42645,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(331347,42645,'_blocks_11_text_block_content','field_617669ec13098'),(331348,42645,'blocks_14_acfe_flexible_toggle',''),(331349,42645,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331350,42645,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(331351,42645,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331352,42645,'blocks_14_options_theme','#ffffff'),(331353,42645,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(331354,42645,'blocks_14_options_reverse','1'),(331355,42645,'_blocks_14_options_reverse','field_61768049bb8ac'),(331356,42645,'blocks_14_options',''),(331357,42645,'_blocks_14_options','field_617682517c334'),(331358,42645,'blocks_14_split_5050_image','18856'),(331359,42645,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(331360,42645,'blocks_14_split_5050_video',''),(331361,42645,'_blocks_14_split_5050_video','field_6239f3160848a'),(331362,42645,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(331363,42645,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(331364,42645,'blocks_14_split_5050_content_heading',''),(331365,42645,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(331366,42645,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(331367,42645,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(331368,42645,'blocks_14_split_5050_content_actions',''),(331369,42645,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(331370,42645,'blocks_14_split_5050_content',''),(331371,42645,'_blocks_14_split_5050_content','field_61767afceb8ba'),(331372,42645,'blocks_15_acfe_flexible_toggle',''),(331373,42645,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(331374,42645,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(331375,42645,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(331376,42645,'blocks_15_options_theme','#b61234'),(331377,42645,'_blocks_15_options_theme','field_6176830e2ad17'),(331378,42645,'blocks_15_options',''),(331379,42645,'_blocks_15_options','field_6176830e2ad16'),(331380,42645,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(331381,42645,'_blocks_15_text_block_heading','field_617669d413097'),(331382,42645,'blocks_15_text_block_content',''),(331383,42645,'_blocks_15_text_block_content','field_617669ec13098'),(331384,42645,'blocks_16_acfe_flexible_toggle',''),(331385,42645,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(331386,42645,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(331387,42645,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(331388,42645,'blocks_16_options_theme','#b61234'),(331389,42645,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(331390,42645,'blocks_16_options_format','row'),(331391,42645,'_blocks_16_options_format','field_64bfde9a90690'),(331392,42645,'blocks_16_options',''),(331393,42645,'_blocks_16_options','field_64bfdd9b90684'),(331394,42645,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(331395,42645,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(331396,42645,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(331397,42645,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(331398,42645,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(331399,42645,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(331400,42645,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(331401,42645,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(331402,42645,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(331403,42645,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(331404,42645,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(331405,42645,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(331406,42645,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(331407,42645,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(331408,42645,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(331409,42645,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(331410,42645,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(331411,42645,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(331412,42645,'blocks_16_icon_row_items_3_icon','recognised.svg'),(331413,42645,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(331414,42645,'blocks_16_icon_row_items_3_label','Optimised Performance'),(331415,42645,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(331416,42645,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(331417,42645,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(331418,42645,'blocks_16_icon_row_items','4'),(331419,42645,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(331420,42645,'blocks_17_acfe_flexible_toggle',''),(331421,42645,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331422,42645,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(331423,42645,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331424,42645,'blocks_17_options_theme','#ffffff'),(331425,42645,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(331426,42645,'blocks_17_options_reverse','0'),(331427,42645,'_blocks_17_options_reverse','field_61768049bb8ac'),(331428,42645,'blocks_17_options',''),(331429,42645,'_blocks_17_options','field_617682517c334'),(331430,42645,'blocks_17_split_5050_image','41501'),(331431,42645,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(331432,42645,'blocks_17_split_5050_video',''),(331433,42645,'_blocks_17_split_5050_video','field_6239f3160848a'),(331434,42645,'blocks_17_split_5050_content_title',''),(331435,42645,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(331436,42645,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(331437,42645,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(331438,42645,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(331439,42645,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(331440,42645,'blocks_17_split_5050_content_actions',''),(331441,42645,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(331442,42645,'blocks_17_split_5050_content',''),(331443,42645,'_blocks_17_split_5050_content','field_61767afceb8ba'),(331444,42645,'blocks_20_acfe_flexible_toggle',''),(331445,42645,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(331446,42645,'blocks_20_acfe_flexible_layout_title','Conclusion'),(331447,42645,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(331448,42645,'blocks_20_options_theme','#b61234'),(331449,42645,'_blocks_20_options_theme','field_6176830e2ad17'),(331450,42645,'blocks_20_options',''),(331451,42645,'_blocks_20_options','field_6176830e2ad16'),(331452,42645,'blocks_20_text_block_heading','Conclusion'),(331453,42645,'_blocks_20_text_block_heading','field_617669d413097'),(331454,42645,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(331455,42645,'_blocks_20_text_block_content','field_617669ec13098'),(331456,42645,'blocks_21_acfe_flexible_toggle',''),(331457,42645,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(331458,42645,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(331459,42645,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(331460,42645,'blocks_21_options_alignment','center'),(331461,42645,'_blocks_21_options_alignment','field_61769449f5490'),(331462,42645,'blocks_21_options',''),(331463,42645,'_blocks_21_options','field_617693e1428f0'),(331464,42645,'blocks_21_promo_panel_image','41307'),(331465,42645,'_blocks_21_promo_panel_image','field_617693e1428f3'),(331466,42645,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(331467,42645,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(331468,42645,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(331469,42645,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(331470,42645,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(331471,42645,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(331472,42645,'blocks_21_promo_panel_content_actions','1'),(331473,42645,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(331474,42645,'blocks_21_promo_panel_content',''),(331475,42645,'_blocks_21_promo_panel_content','field_617693e1428f4'),(331476,42635,'blocks_10_acfe_flexible_toggle',''),(331477,42635,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(331478,42635,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(331479,42635,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(331480,42635,'blocks_10_options_theme','#ffffff'),(331481,42635,'_blocks_10_options_theme','field_6176830e2ad17'),(331482,42635,'blocks_10_options',''),(331483,42635,'_blocks_10_options','field_6176830e2ad16'),(331484,42635,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(331485,42635,'_blocks_10_text_block_heading','field_617669d413097'),(331486,42635,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(331487,42635,'_blocks_10_text_block_content','field_617669ec13098'),(331658,42646,'hide_hero','0'),(331659,42646,'_hide_hero','field_66a2380fcda39'),(331660,42646,'hero_title',''),(331661,42646,'_hero_title','field_617571fe285e8'),(331662,42646,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(331663,42646,'_hero_text','field_6175723c285e9'),(331664,42646,'hero_actions',''),(331665,42646,'_hero_actions','field_61757270285ea'),(331666,42646,'hero_style','default'),(331667,42646,'_hero_style','field_62051d9dc5324'),(331668,42646,'hero_image_pos_x','right'),(331669,42646,'_hero_image_pos_x','field_62ec3d05390bb'),(331670,42646,'hero_image_pos_y','top'),(331671,42646,'_hero_image_pos_y','field_62ec3d05390bc'),(331672,42646,'hero_image_pos',''),(331673,42646,'_hero_image_pos','field_62ec3d05390ba'),(331674,42646,'fft_hide_from_listings','0'),(331675,42646,'_fft_hide_from_listings','field_61f1320446ab2'),(331676,42646,'post_format','402'),(331677,42646,'_post_format','field_61756bfb51898'),(331678,42646,'post_author',''),(331679,42646,'_post_author','field_62ec389d22113'),(331680,42646,'post_reviewer',''),(331681,42646,'_post_reviewer','field_627140a2a9800'),(331682,42646,'post_table_of_contents','0'),(331683,42646,'_post_table_of_contents','field_65c503bc846a6'),(331684,42646,'blocks','a:23:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:10:\"text_block\";i:11;s:5:\"icons\";i:12;s:10:\"text_block\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:5:\"icons\";i:18;s:10:\"split_5050\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:10:\"text_block\";i:22;s:11:\"promo_panel\";}'),(331685,42646,'_blocks','field_6176696113096'),(331686,42646,'_thumbnail_id','40618'),(331687,42646,'__thumbnail_id','field_617570855ddaf'),(331688,42646,'blocks_0_acfe_flexible_toggle',''),(331689,42646,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(331690,42646,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(331691,42646,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(331692,42646,'blocks_0_options_theme','#ffffff'),(331693,42646,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(331694,42646,'blocks_0_options',''),(331695,42646,'_blocks_0_options','field_6177b758246ae'),(331696,42646,'blocks_0_link_stack_content_title',''),(331697,42646,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(331698,42646,'blocks_0_link_stack_content_heading','Introduction'),(331699,42646,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(331700,42646,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(331701,42646,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(331702,42646,'blocks_0_link_stack_content_actions_0_button',''),(331703,42646,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(331704,42646,'blocks_0_link_stack_content_actions','1'),(331705,42646,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(331706,42646,'blocks_0_link_stack_content',''),(331707,42646,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(331708,42646,'blocks_0_link_stack_0_label','1.'),(331709,42646,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(331710,42646,'blocks_0_link_stack_0_title','Overview'),(331711,42646,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(331712,42646,'blocks_0_link_stack_0_url','#overview'),(331713,42646,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(331714,42646,'blocks_0_link_stack_1_label','2.'),(331715,42646,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(331716,42646,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(331717,42646,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(331718,42646,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(331719,42646,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(331720,42646,'blocks_0_link_stack_2_label','3.'),(331721,42646,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(331722,42646,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(331723,42646,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(331724,42646,'blocks_0_link_stack_2_url','#who-should-study-msk'),(331725,42646,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(331726,42646,'blocks_0_link_stack_3_label','4.'),(331727,42646,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(331728,42646,'blocks_0_link_stack_3_title','Common MSK Conditions'),(331729,42646,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(331730,42646,'blocks_0_link_stack_3_url','#common-msk-conditions'),(331731,42646,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(331732,42646,'blocks_0_link_stack_4_label','5.'),(331733,42646,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(331734,42646,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(331735,42646,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(331736,42646,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(331737,42646,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(331738,42646,'blocks_0_link_stack_5_label','6.'),(331739,42646,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(331740,42646,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(331741,42646,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(331742,42646,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(331743,42646,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(331744,42646,'blocks_0_link_stack','6'),(331745,42646,'_blocks_0_link_stack','field_6177b7f600cff'),(331746,42646,'blocks_1_acfe_flexible_toggle',''),(331747,42646,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331748,42646,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(331749,42646,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331750,42646,'blocks_1_options_theme','#ffffff'),(331751,42646,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(331752,42646,'blocks_1_options_reverse','0'),(331753,42646,'_blocks_1_options_reverse','field_61768049bb8ac'),(331754,42646,'blocks_1_options',''),(331755,42646,'_blocks_1_options','field_617682517c334'),(331756,42646,'blocks_1_split_5050_image','40615'),(331757,42646,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(331758,42646,'blocks_1_split_5050_video',''),(331759,42646,'_blocks_1_split_5050_video','field_6239f3160848a'),(331760,42646,'blocks_1_split_5050_content_title',''),(331761,42646,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(331762,42646,'blocks_1_split_5050_content_heading','Overview'),(331763,42646,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(331764,42646,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(331765,42646,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(331766,42646,'blocks_1_split_5050_content_actions',''),(331767,42646,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(331768,42646,'blocks_1_split_5050_content',''),(331769,42646,'_blocks_1_split_5050_content','field_61767afceb8ba'),(331770,42646,'blocks_3_acfe_flexible_toggle','1'),(331771,42646,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331772,42646,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(331773,42646,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331774,42646,'blocks_3_options_theme','#f5f5f5'),(331775,42646,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(331776,42646,'blocks_3_options_reverse','1'),(331777,42646,'_blocks_3_options_reverse','field_61768049bb8ac'),(331778,42646,'blocks_3_options',''),(331779,42646,'_blocks_3_options','field_617682517c334'),(331780,42646,'blocks_3_split_5050_image','41330'),(331781,42646,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(331782,42646,'blocks_3_split_5050_video',''),(331783,42646,'_blocks_3_split_5050_video','field_6239f3160848a'),(331784,42646,'blocks_3_split_5050_content_title',''),(331785,42646,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(331786,42646,'blocks_3_split_5050_content_heading',''),(331787,42646,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(331788,42646,'blocks_3_split_5050_content_text',''),(331789,42646,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(331790,42646,'blocks_3_split_5050_content_actions',''),(331791,42646,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(331792,42646,'blocks_3_split_5050_content',''),(331793,42646,'_blocks_3_split_5050_content','field_61767afceb8ba'),(331794,42646,'blocks_7_acfe_flexible_toggle',''),(331795,42646,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331796,42646,'blocks_7_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(331797,42646,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331798,42646,'blocks_7_options_theme','#ffffff'),(331799,42646,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(331800,42646,'blocks_7_options_reverse','0'),(331801,42646,'_blocks_7_options_reverse','field_61768049bb8ac'),(331802,42646,'blocks_7_options',''),(331803,42646,'_blocks_7_options','field_617682517c334'),(331804,42646,'blocks_7_split_5050_image','41539'),(331805,42646,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(331806,42646,'blocks_7_split_5050_video',''),(331807,42646,'_blocks_7_split_5050_video','field_6239f3160848a'),(331808,42646,'blocks_7_split_5050_content_title','Engineering & Ergonomics'),(331809,42646,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(331810,42646,'blocks_7_split_5050_content_heading',''),(331811,42646,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(331812,42646,'blocks_7_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(331813,42646,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(331814,42646,'blocks_7_split_5050_content_actions',''),(331815,42646,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(331816,42646,'blocks_7_split_5050_content',''),(331817,42646,'_blocks_7_split_5050_content','field_61767afceb8ba'),(331818,42646,'blocks_8_acfe_flexible_toggle',''),(331819,42646,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331820,42646,'blocks_8_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(331821,42646,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331822,42646,'blocks_8_options_theme','#ffffff'),(331823,42646,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(331824,42646,'blocks_8_options_reverse','0'),(331825,42646,'_blocks_8_options_reverse','field_61768049bb8ac'),(331826,42646,'blocks_8_options',''),(331827,42646,'_blocks_8_options','field_617682517c334'),(331828,42646,'blocks_8_split_5050_image','41502'),(331829,42646,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(331830,42646,'blocks_8_split_5050_video',''),(331831,42646,'_blocks_8_split_5050_video','field_6239f3160848a'),(331832,42646,'blocks_8_split_5050_content_title','Research & Academia'),(331833,42646,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(331834,42646,'blocks_8_split_5050_content_heading',''),(331835,42646,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(331836,42646,'blocks_8_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(331837,42646,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(331838,42646,'blocks_8_split_5050_content_actions',''),(331839,42646,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(331840,42646,'blocks_8_split_5050_content',''),(331841,42646,'_blocks_8_split_5050_content','field_61767afceb8ba'),(331842,42646,'blocks_13_acfe_flexible_toggle',''),(331843,42646,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331844,42646,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(331845,42646,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331846,42646,'blocks_13_options_theme','#ffffff'),(331847,42646,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(331848,42646,'blocks_13_options_reverse','1'),(331849,42646,'_blocks_13_options_reverse','field_61768049bb8ac'),(331850,42646,'blocks_13_options',''),(331851,42646,'_blocks_13_options','field_617682517c334'),(331852,42646,'blocks_13_split_5050_image','41498'),(331853,42646,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(331854,42646,'blocks_13_split_5050_video',''),(331855,42646,'_blocks_13_split_5050_video','field_6239f3160848a'),(331856,42646,'blocks_13_split_5050_content_title','Building a Strong Foundation in MSK Health'),(331857,42646,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(331858,42646,'blocks_13_split_5050_content_heading',''),(331859,42646,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(331860,42646,'blocks_13_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(331861,42646,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(331862,42646,'blocks_13_split_5050_content_actions',''),(331863,42646,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(331864,42646,'blocks_13_split_5050_content',''),(331865,42646,'_blocks_13_split_5050_content','field_61767afceb8ba'),(331866,42646,'blocks_19_acfe_flexible_toggle',''),(331867,42646,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(331868,42646,'blocks_19_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(331869,42646,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(331870,42646,'blocks_19_options_theme','#ffffff'),(331871,42646,'_blocks_19_options_theme','field_6176830e2ad17'),(331872,42646,'blocks_19_options',''),(331873,42646,'_blocks_19_options','field_6176830e2ad16'),(331874,42646,'blocks_19_text_block_heading','The Role of MSK Education in Workplace Health'),(331875,42646,'_blocks_19_text_block_heading','field_617669d413097'),(331876,42646,'blocks_19_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(331877,42646,'_blocks_19_text_block_content','field_617669ec13098'),(331878,42646,'blocks_6_acfe_flexible_toggle',''),(331879,42646,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331880,42646,'blocks_6_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(331881,42646,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331882,42646,'blocks_6_options_theme','#ffffff'),(331883,42646,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(331884,42646,'blocks_6_options_reverse','0'),(331885,42646,'_blocks_6_options_reverse','field_61768049bb8ac'),(331886,42646,'blocks_6_options',''),(331887,42646,'_blocks_6_options','field_617682517c334'),(331888,42646,'blocks_6_split_5050_image','41505'),(331889,42646,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(331890,42646,'blocks_6_split_5050_video',''),(331891,42646,'_blocks_6_split_5050_video','field_6239f3160848a'),(331892,42646,'blocks_6_split_5050_content_title','Healthcare & Rehabilitation'),(331893,42646,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(331894,42646,'blocks_6_split_5050_content_heading',''),(331895,42646,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(331896,42646,'blocks_6_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(331897,42646,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(331898,42646,'blocks_6_split_5050_content_actions',''),(331899,42646,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(331900,42646,'blocks_6_split_5050_content',''),(331901,42646,'_blocks_6_split_5050_content','field_61767afceb8ba'),(331902,42646,'blocks_2_acfe_flexible_toggle',''),(331903,42646,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331904,42646,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(331905,42646,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331906,42646,'blocks_2_options_theme','#f5f5f5'),(331907,42646,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(331908,42646,'blocks_2_options_reverse','1'),(331909,42646,'_blocks_2_options_reverse','field_61768049bb8ac'),(331910,42646,'blocks_2_options',''),(331911,42646,'_blocks_2_options','field_617682517c334'),(331912,42646,'blocks_2_split_5050_image','41307'),(331913,42646,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(331914,42646,'blocks_2_split_5050_video',''),(331915,42646,'_blocks_2_split_5050_video','field_6239f3160848a'),(331916,42646,'blocks_2_split_5050_content_title',''),(331917,42646,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(331918,42646,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(331919,42646,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(331920,42646,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(331921,42646,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(331922,42646,'blocks_2_split_5050_content_actions',''),(331923,42646,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(331924,42646,'blocks_2_split_5050_content',''),(331925,42646,'_blocks_2_split_5050_content','field_61767afceb8ba'),(331926,42646,'blocks_4_acfe_flexible_toggle',''),(331927,42646,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(331928,42646,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(331929,42646,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(331930,42646,'blocks_4_options_theme','#ffffff'),(331931,42646,'_blocks_4_options_theme','field_6176830e2ad17'),(331932,42646,'blocks_4_options',''),(331933,42646,'_blocks_4_options','field_6176830e2ad16'),(331934,42646,'blocks_4_text_block_heading','Define Your Career Goals'),(331935,42646,'_blocks_4_text_block_heading','field_617669d413097'),(331936,42646,'blocks_4_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(331937,42646,'_blocks_4_text_block_content','field_617669ec13098'),(331938,42646,'blocks_5_acfe_flexible_toggle',''),(331939,42646,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(331940,42646,'blocks_5_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(331941,42646,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(331942,42646,'blocks_5_options_theme','#ffffff'),(331943,42646,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(331944,42646,'blocks_5_options_reverse','0'),(331945,42646,'_blocks_5_options_reverse','field_61768049bb8ac'),(331946,42646,'blocks_5_options',''),(331947,42646,'_blocks_5_options','field_617682517c334'),(331948,42646,'blocks_5_split_5050_image','41542'),(331949,42646,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(331950,42646,'blocks_5_split_5050_video',''),(331951,42646,'_blocks_5_split_5050_video','field_6239f3160848a'),(331952,42646,'blocks_5_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(331953,42646,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(331954,42646,'blocks_5_split_5050_content_heading',''),(331955,42646,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(331956,42646,'blocks_5_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(331957,42646,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(331958,42646,'blocks_5_split_5050_content_actions',''),(331959,42646,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(331960,42646,'blocks_5_split_5050_content',''),(331961,42646,'_blocks_5_split_5050_content','field_61767afceb8ba'),(331962,42646,'blocks_9_acfe_flexible_toggle',''),(331963,42646,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(331964,42646,'blocks_9_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(331965,42646,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(331966,42646,'blocks_9_options_theme','#f5f5f5'),(331967,42646,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(331968,42646,'blocks_9_options_state','0'),(331969,42646,'_blocks_9_options_state','field_6239fcb7508c5'),(331970,42646,'blocks_9_options',''),(331971,42646,'_blocks_9_options','field_6177e2991ac44'),(331972,42646,'blocks_9_content_title',''),(331973,42646,'_blocks_9_content_title','field_64d237e8bb1e2'),(331974,42646,'blocks_9_content_heading','Evaluate Course Content'),(331975,42646,'_blocks_9_content_heading','field_64d237e8bb1e3'),(331976,42646,'blocks_9_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(331977,42646,'_blocks_9_content_text','field_64d237e8bb1e4'),(331978,42646,'blocks_9_content_actions',''),(331979,42646,'_blocks_9_content_actions','field_64d237e8bb1e5'),(331980,42646,'blocks_9_content_align','left'),(331981,42646,'_blocks_9_content_align','field_64d2443e6b6aa'),(331982,42646,'blocks_9_content',''),(331983,42646,'_blocks_9_content','field_64d237e8bb1e1'),(331984,42646,'blocks_9_accordion_content','custom'),(331985,42646,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(331986,42646,'blocks_9_accordion_items_0_title','Fundamentals of Biomechanics'),(331987,42646,'_blocks_9_accordion_items_0_title','field_6177e2991ac4d'),(331988,42646,'blocks_9_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(331989,42646,'_blocks_9_accordion_items_0_text','field_6177e2991ac4e'),(331990,42646,'blocks_9_accordion_items_1_title','Advanced Motion Analysis'),(331991,42646,'_blocks_9_accordion_items_1_title','field_6177e2991ac4d'),(331992,42646,'blocks_9_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(331993,42646,'_blocks_9_accordion_items_1_text','field_6177e2991ac4e'),(331994,42646,'blocks_9_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(331995,42646,'_blocks_9_accordion_items_2_title','field_6177e2991ac4d'),(331996,42646,'blocks_9_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(331997,42646,'_blocks_9_accordion_items_2_text','field_6177e2991ac4e'),(331998,42646,'blocks_9_accordion_items_3_title','Sports Biomechanics'),(331999,42646,'_blocks_9_accordion_items_3_title','field_6177e2991ac4d'),(332000,42646,'blocks_9_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(332001,42646,'_blocks_9_accordion_items_3_text','field_6177e2991ac4e'),(332002,42646,'blocks_9_accordion_items_4_title','Biomedical Engineering Applications'),(332003,42646,'_blocks_9_accordion_items_4_title','field_6177e2991ac4d'),(332004,42646,'blocks_9_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(332005,42646,'_blocks_9_accordion_items_4_text','field_6177e2991ac4e'),(332006,42646,'blocks_9_accordion_items_5_title','Computational Biomechanics'),(332007,42646,'_blocks_9_accordion_items_5_title','field_6177e2991ac4d'),(332008,42646,'blocks_9_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(332009,42646,'_blocks_9_accordion_items_5_text','field_6177e2991ac4e'),(332010,42646,'blocks_9_accordion_items','6'),(332011,42646,'_blocks_9_accordion_items','field_6177e2991ac4c'),(332012,42646,'blocks_9_actions',''),(332013,42646,'_blocks_9_actions','field_61a746a817f7a'),(332014,42646,'blocks_14_acfe_flexible_toggle',''),(332015,42646,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332016,42646,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(332017,42646,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332018,42646,'blocks_14_options_theme','#ffffff'),(332019,42646,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(332020,42646,'blocks_14_options_reverse','1'),(332021,42646,'_blocks_14_options_reverse','field_61768049bb8ac'),(332022,42646,'blocks_14_options',''),(332023,42646,'_blocks_14_options','field_617682517c334'),(332024,42646,'blocks_14_split_5050_image','40387'),(332025,42646,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(332026,42646,'blocks_14_split_5050_video',''),(332027,42646,'_blocks_14_split_5050_video','field_6239f3160848a'),(332028,42646,'blocks_14_split_5050_content_title','Early Detection and Targeted Interventions'),(332029,42646,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(332030,42646,'blocks_14_split_5050_content_heading',''),(332031,42646,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(332032,42646,'blocks_14_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(332033,42646,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(332034,42646,'blocks_14_split_5050_content_actions',''),(332035,42646,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(332036,42646,'blocks_14_split_5050_content',''),(332037,42646,'_blocks_14_split_5050_content','field_61767afceb8ba'),(332038,42646,'blocks_20_acfe_flexible_toggle',''),(332039,42646,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(332040,42646,'blocks_20_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(332041,42646,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(332042,42646,'blocks_20_options_theme','#ffffff'),(332043,42646,'_blocks_20_options_theme','field_6176830e2ad17'),(332044,42646,'blocks_20_options',''),(332045,42646,'_blocks_20_options','field_6176830e2ad16'),(332046,42646,'blocks_20_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(332047,42646,'_blocks_20_text_block_heading','field_617669d413097'),(332048,42646,'blocks_20_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(332049,42646,'_blocks_20_text_block_content','field_617669ec13098'),(332050,42646,'blocks_10_acfe_flexible_toggle',''),(332051,42646,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(332052,42646,'blocks_10_acfe_flexible_layout_title','Text Block'),(332053,42646,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(332054,42646,'blocks_10_options_theme','#ffffff'),(332055,42646,'_blocks_10_options_theme','field_6176830e2ad17'),(332056,42646,'blocks_10_options',''),(332057,42646,'_blocks_10_options','field_6176830e2ad16'),(332058,42646,'blocks_10_text_block_heading','Check Accreditation and Recognition'),(332059,42646,'_blocks_10_text_block_heading','field_617669d413097'),(332060,42646,'blocks_10_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(332061,42646,'_blocks_10_text_block_content','field_617669ec13098'),(332062,42646,'blocks_11_acfe_flexible_toggle',''),(332063,42646,'_blocks_11_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(332064,42646,'blocks_11_acfe_flexible_layout_title','Icons'),(332065,42646,'_blocks_11_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(332066,42646,'blocks_11_options_theme','#ffffff'),(332067,42646,'_blocks_11_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(332068,42646,'blocks_11_options_format','row'),(332069,42646,'_blocks_11_options_format','field_64bfde9a90690'),(332070,42646,'blocks_11_options',''),(332071,42646,'_blocks_11_options','field_64bfdd9b90684'),(332072,42646,'blocks_11_icon_row_items_0_icon','pliates-stamp.svg'),(332073,42646,'_blocks_11_icon_row_items_0_icon','field_64bfdd9b9068d'),(332074,42646,'blocks_11_icon_row_items_0_label','Industry Recognition'),(332075,42646,'_blocks_11_icon_row_items_0_label','field_64bfdd9c9068e'),(332076,42646,'blocks_11_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(332077,42646,'_blocks_11_icon_row_items_0_text','field_64bfdd9c9068f'),(332078,42646,'blocks_11_icon_row_items_1_icon','qualification.svg'),(332079,42646,'_blocks_11_icon_row_items_1_icon','field_64bfdd9b9068d'),(332080,42646,'blocks_11_icon_row_items_1_label','University Accreditation'),(332081,42646,'_blocks_11_icon_row_items_1_label','field_64bfdd9c9068e'),(332082,42646,'blocks_11_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(332083,42646,'_blocks_11_icon_row_items_1_text','field_64bfdd9c9068f'),(332084,42646,'blocks_11_icon_row_items_2_icon','accreditation.svg'),(332085,42646,'_blocks_11_icon_row_items_2_icon','field_64bfdd9b9068d'),(332086,42646,'blocks_11_icon_row_items_2_label','Programme Accreditation'),(332087,42646,'_blocks_11_icon_row_items_2_label','field_64bfdd9c9068e'),(332088,42646,'blocks_11_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(332089,42646,'_blocks_11_icon_row_items_2_text','field_64bfdd9c9068f'),(332090,42646,'blocks_11_icon_row_items','3'),(332091,42646,'_blocks_11_icon_row_items','field_64bfdd9b9068c'),(332092,42646,'blocks_12_acfe_flexible_toggle',''),(332093,42646,'_blocks_12_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(332094,42646,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(332095,42646,'_blocks_12_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(332096,42646,'blocks_12_options_theme','#ffffff'),(332097,42646,'_blocks_12_options_theme','field_6176830e2ad17'),(332098,42646,'blocks_12_options',''),(332099,42646,'_blocks_12_options','field_6176830e2ad16'),(332100,42646,'blocks_12_text_block_heading','The Importance of MSK Education'),(332101,42646,'_blocks_12_text_block_heading','field_617669d413097'),(332102,42646,'blocks_12_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(332103,42646,'_blocks_12_text_block_content','field_617669ec13098'),(332104,42646,'blocks_15_acfe_flexible_toggle',''),(332105,42646,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332106,42646,'blocks_15_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(332107,42646,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332108,42646,'blocks_15_options_theme','#ffffff'),(332109,42646,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(332110,42646,'blocks_15_options_reverse','1'),(332111,42646,'_blocks_15_options_reverse','field_61768049bb8ac'),(332112,42646,'blocks_15_options',''),(332113,42646,'_blocks_15_options','field_617682517c334'),(332114,42646,'blocks_15_split_5050_image','18856'),(332115,42646,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(332116,42646,'blocks_15_split_5050_video',''),(332117,42646,'_blocks_15_split_5050_video','field_6239f3160848a'),(332118,42646,'blocks_15_split_5050_content_title','Bridging the Gap Between Disciplines'),(332119,42646,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(332120,42646,'blocks_15_split_5050_content_heading',''),(332121,42646,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(332122,42646,'blocks_15_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(332123,42646,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(332124,42646,'blocks_15_split_5050_content_actions',''),(332125,42646,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(332126,42646,'blocks_15_split_5050_content',''),(332127,42646,'_blocks_15_split_5050_content','field_61767afceb8ba'),(332128,42646,'blocks_16_acfe_flexible_toggle',''),(332129,42646,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(332130,42646,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(332131,42646,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(332132,42646,'blocks_16_options_theme','#b61234'),(332133,42646,'_blocks_16_options_theme','field_6176830e2ad17'),(332134,42646,'blocks_16_options',''),(332135,42646,'_blocks_16_options','field_6176830e2ad16'),(332136,42646,'blocks_16_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(332137,42646,'_blocks_16_text_block_heading','field_617669d413097'),(332138,42646,'blocks_16_text_block_content',''),(332139,42646,'_blocks_16_text_block_content','field_617669ec13098'),(332140,42646,'blocks_17_acfe_flexible_toggle',''),(332141,42646,'_blocks_17_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(332142,42646,'blocks_17_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(332143,42646,'_blocks_17_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(332144,42646,'blocks_17_options_theme','#b61234'),(332145,42646,'_blocks_17_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(332146,42646,'blocks_17_options_format','row'),(332147,42646,'_blocks_17_options_format','field_64bfde9a90690'),(332148,42646,'blocks_17_options',''),(332149,42646,'_blocks_17_options','field_64bfdd9b90684'),(332150,42646,'blocks_17_icon_row_items_0_icon','pass-rate.svg'),(332151,42646,'_blocks_17_icon_row_items_0_icon','field_64bfdd9b9068d'),(332152,42646,'blocks_17_icon_row_items_0_label','More Accurate Assessments'),(332153,42646,'_blocks_17_icon_row_items_0_label','field_64bfdd9c9068e'),(332154,42646,'blocks_17_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(332155,42646,'_blocks_17_icon_row_items_0_text','field_64bfdd9c9068f'),(332156,42646,'blocks_17_icon_row_items_1_icon','exceptional-support.svg'),(332157,42646,'_blocks_17_icon_row_items_1_icon','field_64bfdd9b9068d'),(332158,42646,'blocks_17_icon_row_items_1_label','Personalised Movement Strategies'),(332159,42646,'_blocks_17_icon_row_items_1_label','field_64bfdd9c9068e'),(332160,42646,'blocks_17_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(332161,42646,'_blocks_17_icon_row_items_1_text','field_64bfdd9c9068f'),(332162,42646,'blocks_17_icon_row_items_2_icon','lifetime-course-access.svg'),(332163,42646,'_blocks_17_icon_row_items_2_icon','field_64bfdd9b9068d'),(332164,42646,'blocks_17_icon_row_items_2_label','Injury Prevention and Longevity'),(332165,42646,'_blocks_17_icon_row_items_2_label','field_64bfdd9c9068e'),(332166,42646,'blocks_17_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(332167,42646,'_blocks_17_icon_row_items_2_text','field_64bfdd9c9068f'),(332168,42646,'blocks_17_icon_row_items_3_icon','recognised.svg'),(332169,42646,'_blocks_17_icon_row_items_3_icon','field_64bfdd9b9068d'),(332170,42646,'blocks_17_icon_row_items_3_label','Optimised Performance'),(332171,42646,'_blocks_17_icon_row_items_3_label','field_64bfdd9c9068e'),(332172,42646,'blocks_17_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(332173,42646,'_blocks_17_icon_row_items_3_text','field_64bfdd9c9068f'),(332174,42646,'blocks_17_icon_row_items','4'),(332175,42646,'_blocks_17_icon_row_items','field_64bfdd9b9068c'),(332176,42646,'blocks_18_acfe_flexible_toggle',''),(332177,42646,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332178,42646,'blocks_18_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(332179,42646,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332180,42646,'blocks_18_options_theme','#ffffff'),(332181,42646,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(332182,42646,'blocks_18_options_reverse','0'),(332183,42646,'_blocks_18_options_reverse','field_61768049bb8ac'),(332184,42646,'blocks_18_options',''),(332185,42646,'_blocks_18_options','field_617682517c334'),(332186,42646,'blocks_18_split_5050_image','41501'),(332187,42646,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(332188,42646,'blocks_18_split_5050_video',''),(332189,42646,'_blocks_18_split_5050_video','field_6239f3160848a'),(332190,42646,'blocks_18_split_5050_content_title',''),(332191,42646,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(332192,42646,'blocks_18_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(332193,42646,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(332194,42646,'blocks_18_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(332195,42646,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(332196,42646,'blocks_18_split_5050_content_actions',''),(332197,42646,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(332198,42646,'blocks_18_split_5050_content',''),(332199,42646,'_blocks_18_split_5050_content','field_61767afceb8ba'),(332200,42646,'blocks_21_acfe_flexible_toggle',''),(332201,42646,'_blocks_21_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(332202,42646,'blocks_21_acfe_flexible_layout_title','Conclusion'),(332203,42646,'_blocks_21_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(332204,42646,'blocks_21_options_theme','#b61234'),(332205,42646,'_blocks_21_options_theme','field_6176830e2ad17'),(332206,42646,'blocks_21_options',''),(332207,42646,'_blocks_21_options','field_6176830e2ad16'),(332208,42646,'blocks_21_text_block_heading','Conclusion'),(332209,42646,'_blocks_21_text_block_heading','field_617669d413097'),(332210,42646,'blocks_21_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(332211,42646,'_blocks_21_text_block_content','field_617669ec13098'),(332212,42646,'blocks_22_acfe_flexible_toggle',''),(332213,42646,'_blocks_22_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(332214,42646,'blocks_22_acfe_flexible_layout_title','Promo Panel'),(332215,42646,'_blocks_22_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(332216,42646,'blocks_22_options_alignment','center'),(332217,42646,'_blocks_22_options_alignment','field_61769449f5490'),(332218,42646,'blocks_22_options',''),(332219,42646,'_blocks_22_options','field_617693e1428f0'),(332220,42646,'blocks_22_promo_panel_image','41307'),(332221,42646,'_blocks_22_promo_panel_image','field_617693e1428f3'),(332222,42646,'blocks_22_promo_panel_content_heading','Want to Get Started?'),(332223,42646,'_blocks_22_promo_panel_content_heading','field_617693e1428f6'),(332224,42646,'blocks_22_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(332225,42646,'_blocks_22_promo_panel_content_text','field_617693e1428f7'),(332226,42646,'blocks_22_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(332227,42646,'_blocks_22_promo_panel_content_actions_0_button','field_617693e1428f9'),(332228,42646,'blocks_22_promo_panel_content_actions','1'),(332229,42646,'_blocks_22_promo_panel_content_actions','field_617693e1428f8'),(332230,42646,'blocks_22_promo_panel_content',''),(332231,42646,'_blocks_22_promo_panel_content','field_617693e1428f4'),(332232,42647,'hide_hero','0'),(332233,42647,'_hide_hero','field_66a2380fcda39'),(332234,42647,'hero_title',''),(332235,42647,'_hero_title','field_617571fe285e8'),(332236,42647,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(332237,42647,'_hero_text','field_6175723c285e9'),(332238,42647,'hero_actions',''),(332239,42647,'_hero_actions','field_61757270285ea'),(332240,42647,'hero_style','default'),(332241,42647,'_hero_style','field_62051d9dc5324'),(332242,42647,'hero_image_pos_x','right'),(332243,42647,'_hero_image_pos_x','field_62ec3d05390bb'),(332244,42647,'hero_image_pos_y','top'),(332245,42647,'_hero_image_pos_y','field_62ec3d05390bc'),(332246,42647,'hero_image_pos',''),(332247,42647,'_hero_image_pos','field_62ec3d05390ba'),(332248,42647,'fft_hide_from_listings','0'),(332249,42647,'_fft_hide_from_listings','field_61f1320446ab2'),(332250,42647,'post_format','402'),(332251,42647,'_post_format','field_61756bfb51898'),(332252,42647,'post_author',''),(332253,42647,'_post_author','field_62ec389d22113'),(332254,42647,'post_reviewer',''),(332255,42647,'_post_reviewer','field_627140a2a9800'),(332256,42647,'post_table_of_contents','0'),(332257,42647,'_post_table_of_contents','field_65c503bc846a6'),(332258,42647,'blocks','a:23:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"accordions\";i:10;s:10:\"text_block\";i:11;s:5:\"icons\";i:12;s:10:\"text_block\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"split_5050\";i:16;s:10:\"text_block\";i:17;s:5:\"icons\";i:18;s:10:\"split_5050\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:10:\"text_block\";i:22;s:11:\"promo_panel\";}'),(332259,42647,'_blocks','field_6176696113096'),(332260,42647,'_thumbnail_id','40618'),(332261,42647,'__thumbnail_id','field_617570855ddaf'),(332262,42647,'blocks_0_acfe_flexible_toggle',''),(332263,42647,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(332264,42647,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(332265,42647,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(332266,42647,'blocks_0_options_theme','#ffffff'),(332267,42647,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(332268,42647,'blocks_0_options',''),(332269,42647,'_blocks_0_options','field_6177b758246ae'),(332270,42647,'blocks_0_link_stack_content_title',''),(332271,42647,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(332272,42647,'blocks_0_link_stack_content_heading','Introduction'),(332273,42647,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(332274,42647,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(332275,42647,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(332276,42647,'blocks_0_link_stack_content_actions_0_button',''),(332277,42647,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(332278,42647,'blocks_0_link_stack_content_actions','1'),(332279,42647,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(332280,42647,'blocks_0_link_stack_content',''),(332281,42647,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(332282,42647,'blocks_0_link_stack_0_label','1.'),(332283,42647,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(332284,42647,'blocks_0_link_stack_0_title','Overview'),(332285,42647,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(332286,42647,'blocks_0_link_stack_0_url','#overview'),(332287,42647,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(332288,42647,'blocks_0_link_stack_1_label','2.'),(332289,42647,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(332290,42647,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(332291,42647,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(332292,42647,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(332293,42647,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(332294,42647,'blocks_0_link_stack_2_label','3.'),(332295,42647,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(332296,42647,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(332297,42647,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(332298,42647,'blocks_0_link_stack_2_url','#who-should-study-msk'),(332299,42647,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(332300,42647,'blocks_0_link_stack_3_label','4.'),(332301,42647,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(332302,42647,'blocks_0_link_stack_3_title','Common MSK Conditions'),(332303,42647,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(332304,42647,'blocks_0_link_stack_3_url','#common-msk-conditions'),(332305,42647,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(332306,42647,'blocks_0_link_stack_4_label','5.'),(332307,42647,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(332308,42647,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(332309,42647,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(332310,42647,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(332311,42647,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(332312,42647,'blocks_0_link_stack_5_label','6.'),(332313,42647,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(332314,42647,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(332315,42647,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(332316,42647,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(332317,42647,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(332318,42647,'blocks_0_link_stack','6'),(332319,42647,'_blocks_0_link_stack','field_6177b7f600cff'),(332320,42647,'blocks_1_acfe_flexible_toggle',''),(332321,42647,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332322,42647,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(332323,42647,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332324,42647,'blocks_1_options_theme','#ffffff'),(332325,42647,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(332326,42647,'blocks_1_options_reverse','0'),(332327,42647,'_blocks_1_options_reverse','field_61768049bb8ac'),(332328,42647,'blocks_1_options',''),(332329,42647,'_blocks_1_options','field_617682517c334'),(332330,42647,'blocks_1_split_5050_image','40615'),(332331,42647,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(332332,42647,'blocks_1_split_5050_video',''),(332333,42647,'_blocks_1_split_5050_video','field_6239f3160848a'),(332334,42647,'blocks_1_split_5050_content_title',''),(332335,42647,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(332336,42647,'blocks_1_split_5050_content_heading','Overview'),(332337,42647,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(332338,42647,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(332339,42647,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(332340,42647,'blocks_1_split_5050_content_actions',''),(332341,42647,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(332342,42647,'blocks_1_split_5050_content',''),(332343,42647,'_blocks_1_split_5050_content','field_61767afceb8ba'),(332344,42647,'blocks_3_acfe_flexible_toggle','1'),(332345,42647,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332346,42647,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(332347,42647,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332348,42647,'blocks_3_options_theme','#f5f5f5'),(332349,42647,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(332350,42647,'blocks_3_options_reverse','1'),(332351,42647,'_blocks_3_options_reverse','field_61768049bb8ac'),(332352,42647,'blocks_3_options',''),(332353,42647,'_blocks_3_options','field_617682517c334'),(332354,42647,'blocks_3_split_5050_image','41330'),(332355,42647,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(332356,42647,'blocks_3_split_5050_video',''),(332357,42647,'_blocks_3_split_5050_video','field_6239f3160848a'),(332358,42647,'blocks_3_split_5050_content_title',''),(332359,42647,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(332360,42647,'blocks_3_split_5050_content_heading',''),(332361,42647,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(332362,42647,'blocks_3_split_5050_content_text',''),(332363,42647,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(332364,42647,'blocks_3_split_5050_content_actions',''),(332365,42647,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(332366,42647,'blocks_3_split_5050_content',''),(332367,42647,'_blocks_3_split_5050_content','field_61767afceb8ba'),(332368,42647,'blocks_7_acfe_flexible_toggle',''),(332369,42647,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332370,42647,'blocks_7_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(332371,42647,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332372,42647,'blocks_7_options_theme','#ffffff'),(332373,42647,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(332374,42647,'blocks_7_options_reverse','0'),(332375,42647,'_blocks_7_options_reverse','field_61768049bb8ac'),(332376,42647,'blocks_7_options',''),(332377,42647,'_blocks_7_options','field_617682517c334'),(332378,42647,'blocks_7_split_5050_image','41539'),(332379,42647,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(332380,42647,'blocks_7_split_5050_video',''),(332381,42647,'_blocks_7_split_5050_video','field_6239f3160848a'),(332382,42647,'blocks_7_split_5050_content_title','Engineering & Ergonomics'),(332383,42647,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(332384,42647,'blocks_7_split_5050_content_heading',''),(332385,42647,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(332386,42647,'blocks_7_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(332387,42647,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(332388,42647,'blocks_7_split_5050_content_actions',''),(332389,42647,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(332390,42647,'blocks_7_split_5050_content',''),(332391,42647,'_blocks_7_split_5050_content','field_61767afceb8ba'),(332392,42647,'blocks_8_acfe_flexible_toggle',''),(332393,42647,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332394,42647,'blocks_8_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(332395,42647,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332396,42647,'blocks_8_options_theme','#ffffff'),(332397,42647,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(332398,42647,'blocks_8_options_reverse','0'),(332399,42647,'_blocks_8_options_reverse','field_61768049bb8ac'),(332400,42647,'blocks_8_options',''),(332401,42647,'_blocks_8_options','field_617682517c334'),(332402,42647,'blocks_8_split_5050_image','41502'),(332403,42647,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(332404,42647,'blocks_8_split_5050_video',''),(332405,42647,'_blocks_8_split_5050_video','field_6239f3160848a'),(332406,42647,'blocks_8_split_5050_content_title','Research & Academia'),(332407,42647,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(332408,42647,'blocks_8_split_5050_content_heading',''),(332409,42647,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(332410,42647,'blocks_8_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(332411,42647,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(332412,42647,'blocks_8_split_5050_content_actions',''),(332413,42647,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(332414,42647,'blocks_8_split_5050_content',''),(332415,42647,'_blocks_8_split_5050_content','field_61767afceb8ba'),(332416,42647,'blocks_13_acfe_flexible_toggle',''),(332417,42647,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332418,42647,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(332419,42647,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332420,42647,'blocks_13_options_theme','#ffffff'),(332421,42647,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(332422,42647,'blocks_13_options_reverse','1'),(332423,42647,'_blocks_13_options_reverse','field_61768049bb8ac'),(332424,42647,'blocks_13_options',''),(332425,42647,'_blocks_13_options','field_617682517c334'),(332426,42647,'blocks_13_split_5050_image','41498'),(332427,42647,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(332428,42647,'blocks_13_split_5050_video',''),(332429,42647,'_blocks_13_split_5050_video','field_6239f3160848a'),(332430,42647,'blocks_13_split_5050_content_title','Building a Strong Foundation in MSK Health'),(332431,42647,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(332432,42647,'blocks_13_split_5050_content_heading',''),(332433,42647,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(332434,42647,'blocks_13_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(332435,42647,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(332436,42647,'blocks_13_split_5050_content_actions',''),(332437,42647,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(332438,42647,'blocks_13_split_5050_content',''),(332439,42647,'_blocks_13_split_5050_content','field_61767afceb8ba'),(332440,42647,'blocks_19_acfe_flexible_toggle',''),(332441,42647,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(332442,42647,'blocks_19_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(332443,42647,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(332444,42647,'blocks_19_options_theme','#ffffff'),(332445,42647,'_blocks_19_options_theme','field_6176830e2ad17'),(332446,42647,'blocks_19_options',''),(332447,42647,'_blocks_19_options','field_6176830e2ad16'),(332448,42647,'blocks_19_text_block_heading','The Role of MSK Education in Workplace Health'),(332449,42647,'_blocks_19_text_block_heading','field_617669d413097'),(332450,42647,'blocks_19_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(332451,42647,'_blocks_19_text_block_content','field_617669ec13098'),(332452,42647,'blocks_6_acfe_flexible_toggle',''),(332453,42647,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332454,42647,'blocks_6_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(332455,42647,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332456,42647,'blocks_6_options_theme','#ffffff'),(332457,42647,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(332458,42647,'blocks_6_options_reverse','0'),(332459,42647,'_blocks_6_options_reverse','field_61768049bb8ac'),(332460,42647,'blocks_6_options',''),(332461,42647,'_blocks_6_options','field_617682517c334'),(332462,42647,'blocks_6_split_5050_image','41505'),(332463,42647,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(332464,42647,'blocks_6_split_5050_video',''),(332465,42647,'_blocks_6_split_5050_video','field_6239f3160848a'),(332466,42647,'blocks_6_split_5050_content_title','Healthcare & Rehabilitation'),(332467,42647,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(332468,42647,'blocks_6_split_5050_content_heading',''),(332469,42647,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(332470,42647,'blocks_6_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(332471,42647,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(332472,42647,'blocks_6_split_5050_content_actions',''),(332473,42647,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(332474,42647,'blocks_6_split_5050_content',''),(332475,42647,'_blocks_6_split_5050_content','field_61767afceb8ba'),(332476,42647,'blocks_2_acfe_flexible_toggle',''),(332477,42647,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332478,42647,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(332479,42647,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332480,42647,'blocks_2_options_theme','#f5f5f5'),(332481,42647,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(332482,42647,'blocks_2_options_reverse','1'),(332483,42647,'_blocks_2_options_reverse','field_61768049bb8ac'),(332484,42647,'blocks_2_options',''),(332485,42647,'_blocks_2_options','field_617682517c334'),(332486,42647,'blocks_2_split_5050_image','41307'),(332487,42647,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(332488,42647,'blocks_2_split_5050_video',''),(332489,42647,'_blocks_2_split_5050_video','field_6239f3160848a'),(332490,42647,'blocks_2_split_5050_content_title',''),(332491,42647,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(332492,42647,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(332493,42647,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(332494,42647,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(332495,42647,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(332496,42647,'blocks_2_split_5050_content_actions',''),(332497,42647,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(332498,42647,'blocks_2_split_5050_content',''),(332499,42647,'_blocks_2_split_5050_content','field_61767afceb8ba'),(332500,42647,'blocks_4_acfe_flexible_toggle',''),(332501,42647,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(332502,42647,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(332503,42647,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(332504,42647,'blocks_4_options_theme','#ffffff'),(332505,42647,'_blocks_4_options_theme','field_6176830e2ad17'),(332506,42647,'blocks_4_options',''),(332507,42647,'_blocks_4_options','field_6176830e2ad16'),(332508,42647,'blocks_4_text_block_heading','Define Your Career Goals'),(332509,42647,'_blocks_4_text_block_heading','field_617669d413097'),(332510,42647,'blocks_4_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(332511,42647,'_blocks_4_text_block_content','field_617669ec13098'),(332512,42647,'blocks_5_acfe_flexible_toggle',''),(332513,42647,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332514,42647,'blocks_5_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(332515,42647,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332516,42647,'blocks_5_options_theme','#ffffff'),(332517,42647,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(332518,42647,'blocks_5_options_reverse','0'),(332519,42647,'_blocks_5_options_reverse','field_61768049bb8ac'),(332520,42647,'blocks_5_options',''),(332521,42647,'_blocks_5_options','field_617682517c334'),(332522,42647,'blocks_5_split_5050_image','41542'),(332523,42647,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(332524,42647,'blocks_5_split_5050_video',''),(332525,42647,'_blocks_5_split_5050_video','field_6239f3160848a'),(332526,42647,'blocks_5_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(332527,42647,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(332528,42647,'blocks_5_split_5050_content_heading',''),(332529,42647,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(332530,42647,'blocks_5_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(332531,42647,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(332532,42647,'blocks_5_split_5050_content_actions',''),(332533,42647,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(332534,42647,'blocks_5_split_5050_content',''),(332535,42647,'_blocks_5_split_5050_content','field_61767afceb8ba'),(332536,42647,'blocks_9_acfe_flexible_toggle',''),(332537,42647,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(332538,42647,'blocks_9_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(332539,42647,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(332540,42647,'blocks_9_options_theme','#f5f5f5'),(332541,42647,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(332542,42647,'blocks_9_options_state','0'),(332543,42647,'_blocks_9_options_state','field_6239fcb7508c5'),(332544,42647,'blocks_9_options',''),(332545,42647,'_blocks_9_options','field_6177e2991ac44'),(332546,42647,'blocks_9_content_title',''),(332547,42647,'_blocks_9_content_title','field_64d237e8bb1e2'),(332548,42647,'blocks_9_content_heading','Evaluate Course Content'),(332549,42647,'_blocks_9_content_heading','field_64d237e8bb1e3'),(332550,42647,'blocks_9_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(332551,42647,'_blocks_9_content_text','field_64d237e8bb1e4'),(332552,42647,'blocks_9_content_actions',''),(332553,42647,'_blocks_9_content_actions','field_64d237e8bb1e5'),(332554,42647,'blocks_9_content_align','left'),(332555,42647,'_blocks_9_content_align','field_64d2443e6b6aa'),(332556,42647,'blocks_9_content',''),(332557,42647,'_blocks_9_content','field_64d237e8bb1e1'),(332558,42647,'blocks_9_accordion_content','custom'),(332559,42647,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(332560,42647,'blocks_9_accordion_items_0_title','Fundamentals of Biomechanics'),(332561,42647,'_blocks_9_accordion_items_0_title','field_6177e2991ac4d'),(332562,42647,'blocks_9_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(332563,42647,'_blocks_9_accordion_items_0_text','field_6177e2991ac4e'),(332564,42647,'blocks_9_accordion_items_1_title','Advanced Motion Analysis'),(332565,42647,'_blocks_9_accordion_items_1_title','field_6177e2991ac4d'),(332566,42647,'blocks_9_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(332567,42647,'_blocks_9_accordion_items_1_text','field_6177e2991ac4e'),(332568,42647,'blocks_9_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(332569,42647,'_blocks_9_accordion_items_2_title','field_6177e2991ac4d'),(332570,42647,'blocks_9_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(332571,42647,'_blocks_9_accordion_items_2_text','field_6177e2991ac4e'),(332572,42647,'blocks_9_accordion_items_3_title','Sports Biomechanics'),(332573,42647,'_blocks_9_accordion_items_3_title','field_6177e2991ac4d'),(332574,42647,'blocks_9_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(332575,42647,'_blocks_9_accordion_items_3_text','field_6177e2991ac4e'),(332576,42647,'blocks_9_accordion_items_4_title','Biomedical Engineering Applications'),(332577,42647,'_blocks_9_accordion_items_4_title','field_6177e2991ac4d'),(332578,42647,'blocks_9_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(332579,42647,'_blocks_9_accordion_items_4_text','field_6177e2991ac4e'),(332580,42647,'blocks_9_accordion_items_5_title','Computational Biomechanics'),(332581,42647,'_blocks_9_accordion_items_5_title','field_6177e2991ac4d'),(332582,42647,'blocks_9_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(332583,42647,'_blocks_9_accordion_items_5_text','field_6177e2991ac4e'),(332584,42647,'blocks_9_accordion_items','6'),(332585,42647,'_blocks_9_accordion_items','field_6177e2991ac4c'),(332586,42647,'blocks_9_actions',''),(332587,42647,'_blocks_9_actions','field_61a746a817f7a'),(332588,42647,'blocks_14_acfe_flexible_toggle',''),(332589,42647,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332590,42647,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(332591,42647,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332592,42647,'blocks_14_options_theme','#ffffff'),(332593,42647,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(332594,42647,'blocks_14_options_reverse','1'),(332595,42647,'_blocks_14_options_reverse','field_61768049bb8ac'),(332596,42647,'blocks_14_options',''),(332597,42647,'_blocks_14_options','field_617682517c334'),(332598,42647,'blocks_14_split_5050_image','40387'),(332599,42647,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(332600,42647,'blocks_14_split_5050_video',''),(332601,42647,'_blocks_14_split_5050_video','field_6239f3160848a'),(332602,42647,'blocks_14_split_5050_content_title','Early Detection and Targeted Interventions'),(332603,42647,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(332604,42647,'blocks_14_split_5050_content_heading',''),(332605,42647,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(332606,42647,'blocks_14_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(332607,42647,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(332608,42647,'blocks_14_split_5050_content_actions',''),(332609,42647,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(332610,42647,'blocks_14_split_5050_content',''),(332611,42647,'_blocks_14_split_5050_content','field_61767afceb8ba'),(332612,42647,'blocks_20_acfe_flexible_toggle',''),(332613,42647,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(332614,42647,'blocks_20_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(332615,42647,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(332616,42647,'blocks_20_options_theme','#ffffff'),(332617,42647,'_blocks_20_options_theme','field_6176830e2ad17'),(332618,42647,'blocks_20_options',''),(332619,42647,'_blocks_20_options','field_6176830e2ad16'),(332620,42647,'blocks_20_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(332621,42647,'_blocks_20_text_block_heading','field_617669d413097'),(332622,42647,'blocks_20_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(332623,42647,'_blocks_20_text_block_content','field_617669ec13098'),(332624,42647,'blocks_10_acfe_flexible_toggle',''),(332625,42647,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(332626,42647,'blocks_10_acfe_flexible_layout_title','Text Block'),(332627,42647,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(332628,42647,'blocks_10_options_theme','#ffffff'),(332629,42647,'_blocks_10_options_theme','field_6176830e2ad17'),(332630,42647,'blocks_10_options',''),(332631,42647,'_blocks_10_options','field_6176830e2ad16'),(332632,42647,'blocks_10_text_block_heading','Check Accreditation and Recognition'),(332633,42647,'_blocks_10_text_block_heading','field_617669d413097'),(332634,42647,'blocks_10_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(332635,42647,'_blocks_10_text_block_content','field_617669ec13098'),(332636,42647,'blocks_11_acfe_flexible_toggle',''),(332637,42647,'_blocks_11_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(332638,42647,'blocks_11_acfe_flexible_layout_title','Icons'),(332639,42647,'_blocks_11_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(332640,42647,'blocks_11_options_theme','#ffffff'),(332641,42647,'_blocks_11_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(332642,42647,'blocks_11_options_format','row'),(332643,42647,'_blocks_11_options_format','field_64bfde9a90690'),(332644,42647,'blocks_11_options',''),(332645,42647,'_blocks_11_options','field_64bfdd9b90684'),(332646,42647,'blocks_11_icon_row_items_0_icon','pliates-stamp.svg'),(332647,42647,'_blocks_11_icon_row_items_0_icon','field_64bfdd9b9068d'),(332648,42647,'blocks_11_icon_row_items_0_label','Industry Recognition'),(332649,42647,'_blocks_11_icon_row_items_0_label','field_64bfdd9c9068e'),(332650,42647,'blocks_11_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(332651,42647,'_blocks_11_icon_row_items_0_text','field_64bfdd9c9068f'),(332652,42647,'blocks_11_icon_row_items_1_icon','qualification.svg'),(332653,42647,'_blocks_11_icon_row_items_1_icon','field_64bfdd9b9068d'),(332654,42647,'blocks_11_icon_row_items_1_label','University Accreditation'),(332655,42647,'_blocks_11_icon_row_items_1_label','field_64bfdd9c9068e'),(332656,42647,'blocks_11_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(332657,42647,'_blocks_11_icon_row_items_1_text','field_64bfdd9c9068f'),(332658,42647,'blocks_11_icon_row_items_2_icon','accreditation.svg'),(332659,42647,'_blocks_11_icon_row_items_2_icon','field_64bfdd9b9068d'),(332660,42647,'blocks_11_icon_row_items_2_label','Programme Accreditation'),(332661,42647,'_blocks_11_icon_row_items_2_label','field_64bfdd9c9068e'),(332662,42647,'blocks_11_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(332663,42647,'_blocks_11_icon_row_items_2_text','field_64bfdd9c9068f'),(332664,42647,'blocks_11_icon_row_items','3'),(332665,42647,'_blocks_11_icon_row_items','field_64bfdd9b9068c'),(332666,42647,'blocks_12_acfe_flexible_toggle',''),(332667,42647,'_blocks_12_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(332668,42647,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(332669,42647,'_blocks_12_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(332670,42647,'blocks_12_options_theme','#ffffff'),(332671,42647,'_blocks_12_options_theme','field_6176830e2ad17'),(332672,42647,'blocks_12_options',''),(332673,42647,'_blocks_12_options','field_6176830e2ad16'),(332674,42647,'blocks_12_text_block_heading','The Importance of MSK Education'),(332675,42647,'_blocks_12_text_block_heading','field_617669d413097'),(332676,42647,'blocks_12_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(332677,42647,'_blocks_12_text_block_content','field_617669ec13098'),(332678,42647,'blocks_15_acfe_flexible_toggle',''),(332679,42647,'_blocks_15_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332680,42647,'blocks_15_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(332681,42647,'_blocks_15_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332682,42647,'blocks_15_options_theme','#ffffff'),(332683,42647,'_blocks_15_options_theme','field_617682847c335_field_6176830e2ad17'),(332684,42647,'blocks_15_options_reverse','1'),(332685,42647,'_blocks_15_options_reverse','field_61768049bb8ac'),(332686,42647,'blocks_15_options',''),(332687,42647,'_blocks_15_options','field_617682517c334'),(332688,42647,'blocks_15_split_5050_image','18856'),(332689,42647,'_blocks_15_split_5050_image','field_6239f527a0c3a'),(332690,42647,'blocks_15_split_5050_video',''),(332691,42647,'_blocks_15_split_5050_video','field_6239f3160848a'),(332692,42647,'blocks_15_split_5050_content_title','Bridging the Gap Between Disciplines'),(332693,42647,'_blocks_15_split_5050_content_title','field_61767bfca3fc0'),(332694,42647,'blocks_15_split_5050_content_heading',''),(332695,42647,'_blocks_15_split_5050_content_heading','field_61767b26eb8bb'),(332696,42647,'blocks_15_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(332697,42647,'_blocks_15_split_5050_content_text','field_61767b3beb8bc'),(332698,42647,'blocks_15_split_5050_content_actions',''),(332699,42647,'_blocks_15_split_5050_content_actions','field_61767b68eb8bd'),(332700,42647,'blocks_15_split_5050_content',''),(332701,42647,'_blocks_15_split_5050_content','field_61767afceb8ba'),(332702,42647,'blocks_16_acfe_flexible_toggle',''),(332703,42647,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(332704,42647,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(332705,42647,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(332706,42647,'blocks_16_options_theme','#b61234'),(332707,42647,'_blocks_16_options_theme','field_6176830e2ad17'),(332708,42647,'blocks_16_options',''),(332709,42647,'_blocks_16_options','field_6176830e2ad16'),(332710,42647,'blocks_16_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(332711,42647,'_blocks_16_text_block_heading','field_617669d413097'),(332712,42647,'blocks_16_text_block_content',''),(332713,42647,'_blocks_16_text_block_content','field_617669ec13098'),(332714,42647,'blocks_17_acfe_flexible_toggle',''),(332715,42647,'_blocks_17_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(332716,42647,'blocks_17_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(332717,42647,'_blocks_17_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(332718,42647,'blocks_17_options_theme','#b61234'),(332719,42647,'_blocks_17_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(332720,42647,'blocks_17_options_format','row'),(332721,42647,'_blocks_17_options_format','field_64bfde9a90690'),(332722,42647,'blocks_17_options',''),(332723,42647,'_blocks_17_options','field_64bfdd9b90684'),(332724,42647,'blocks_17_icon_row_items_0_icon','pass-rate.svg'),(332725,42647,'_blocks_17_icon_row_items_0_icon','field_64bfdd9b9068d'),(332726,42647,'blocks_17_icon_row_items_0_label','More Accurate Assessments'),(332727,42647,'_blocks_17_icon_row_items_0_label','field_64bfdd9c9068e'),(332728,42647,'blocks_17_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(332729,42647,'_blocks_17_icon_row_items_0_text','field_64bfdd9c9068f'),(332730,42647,'blocks_17_icon_row_items_1_icon','exceptional-support.svg'),(332731,42647,'_blocks_17_icon_row_items_1_icon','field_64bfdd9b9068d'),(332732,42647,'blocks_17_icon_row_items_1_label','Personalised Movement Strategies'),(332733,42647,'_blocks_17_icon_row_items_1_label','field_64bfdd9c9068e'),(332734,42647,'blocks_17_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(332735,42647,'_blocks_17_icon_row_items_1_text','field_64bfdd9c9068f'),(332736,42647,'blocks_17_icon_row_items_2_icon','lifetime-course-access.svg'),(332737,42647,'_blocks_17_icon_row_items_2_icon','field_64bfdd9b9068d'),(332738,42647,'blocks_17_icon_row_items_2_label','Injury Prevention and Longevity'),(332739,42647,'_blocks_17_icon_row_items_2_label','field_64bfdd9c9068e'),(332740,42647,'blocks_17_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(332741,42647,'_blocks_17_icon_row_items_2_text','field_64bfdd9c9068f'),(332742,42647,'blocks_17_icon_row_items_3_icon','recognised.svg'),(332743,42647,'_blocks_17_icon_row_items_3_icon','field_64bfdd9b9068d'),(332744,42647,'blocks_17_icon_row_items_3_label','Optimised Performance'),(332745,42647,'_blocks_17_icon_row_items_3_label','field_64bfdd9c9068e'),(332746,42647,'blocks_17_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(332747,42647,'_blocks_17_icon_row_items_3_text','field_64bfdd9c9068f'),(332748,42647,'blocks_17_icon_row_items','4'),(332749,42647,'_blocks_17_icon_row_items','field_64bfdd9b9068c'),(332750,42647,'blocks_18_acfe_flexible_toggle',''),(332751,42647,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332752,42647,'blocks_18_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(332753,42647,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332754,42647,'blocks_18_options_theme','#ffffff'),(332755,42647,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(332756,42647,'blocks_18_options_reverse','0'),(332757,42647,'_blocks_18_options_reverse','field_61768049bb8ac'),(332758,42647,'blocks_18_options',''),(332759,42647,'_blocks_18_options','field_617682517c334'),(332760,42647,'blocks_18_split_5050_image','41501'),(332761,42647,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(332762,42647,'blocks_18_split_5050_video',''),(332763,42647,'_blocks_18_split_5050_video','field_6239f3160848a'),(332764,42647,'blocks_18_split_5050_content_title',''),(332765,42647,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(332766,42647,'blocks_18_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(332767,42647,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(332768,42647,'blocks_18_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(332769,42647,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(332770,42647,'blocks_18_split_5050_content_actions',''),(332771,42647,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(332772,42647,'blocks_18_split_5050_content',''),(332773,42647,'_blocks_18_split_5050_content','field_61767afceb8ba'),(332774,42647,'blocks_21_acfe_flexible_toggle',''),(332775,42647,'_blocks_21_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(332776,42647,'blocks_21_acfe_flexible_layout_title','Conclusion'),(332777,42647,'_blocks_21_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(332778,42647,'blocks_21_options_theme','#b61234'),(332779,42647,'_blocks_21_options_theme','field_6176830e2ad17'),(332780,42647,'blocks_21_options',''),(332781,42647,'_blocks_21_options','field_6176830e2ad16'),(332782,42647,'blocks_21_text_block_heading','Conclusion'),(332783,42647,'_blocks_21_text_block_heading','field_617669d413097'),(332784,42647,'blocks_21_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(332785,42647,'_blocks_21_text_block_content','field_617669ec13098'),(332786,42647,'blocks_22_acfe_flexible_toggle',''),(332787,42647,'_blocks_22_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(332788,42647,'blocks_22_acfe_flexible_layout_title','Promo Panel'),(332789,42647,'_blocks_22_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(332790,42647,'blocks_22_options_alignment','center'),(332791,42647,'_blocks_22_options_alignment','field_61769449f5490'),(332792,42647,'blocks_22_options',''),(332793,42647,'_blocks_22_options','field_617693e1428f0'),(332794,42647,'blocks_22_promo_panel_image','41307'),(332795,42647,'_blocks_22_promo_panel_image','field_617693e1428f3'),(332796,42647,'blocks_22_promo_panel_content_heading','Want to Get Started?'),(332797,42647,'_blocks_22_promo_panel_content_heading','field_617693e1428f6'),(332798,42647,'blocks_22_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(332799,42647,'_blocks_22_promo_panel_content_text','field_617693e1428f7'),(332800,42647,'blocks_22_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(332801,42647,'_blocks_22_promo_panel_content_actions_0_button','field_617693e1428f9'),(332802,42647,'blocks_22_promo_panel_content_actions','1'),(332803,42647,'_blocks_22_promo_panel_content_actions','field_617693e1428f8'),(332804,42647,'blocks_22_promo_panel_content',''),(332805,42647,'_blocks_22_promo_panel_content','field_617693e1428f4'),(332898,42649,'hide_hero','0'),(332899,42649,'_hide_hero','field_66a2380fcda39'),(332900,42649,'fft_hide_from_listings','0'),(332901,42649,'_fft_hide_from_listings','field_61f1320446ab2'),(332902,42649,'fft_page_format','default'),(332903,42649,'_fft_page_format','field_61ae213f1f218'),(332904,42649,'fft_hide_nav','0'),(332905,42649,'_fft_hide_nav','field_635bd5e43527c'),(332906,42649,'fft_hide_header_call_to_action','0'),(332907,42649,'_fft_hide_header_call_to_action','field_635bd6723527d'),(332908,42649,'fft_page_sitemap','0'),(332909,42649,'_fft_page_sitemap','field_61af9b34e8181'),(332910,42649,'blocks','a:9:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:10:\"split_5050\";i:7;s:4:\"form\";i:8;s:10:\"accordions\";}'),(332911,42649,'_blocks','field_6176696113096'),(332912,42649,'hero_title',''),(332913,42649,'_hero_title','field_617571fe285e8'),(332914,42649,'hero_text',''),(332915,42649,'_hero_text','field_6175723c285e9'),(332916,42649,'hero_actions',''),(332917,42649,'_hero_actions','field_61757270285ea'),(332918,42649,'hero_style','default'),(332919,42649,'_hero_style','field_62051d9dc5324'),(332920,42649,'hero_image_pos_x','right'),(332921,42649,'_hero_image_pos_x','field_62ec3d05390bb'),(332922,42649,'hero_image_pos_y','top'),(332923,42649,'_hero_image_pos_y','field_62ec3d05390bc'),(332924,42649,'hero_image_pos',''),(332925,42649,'_hero_image_pos','field_62ec3d05390ba'),(332926,42649,'blocks_0_acfe_flexible_toggle',''),(332927,42649,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332928,42649,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(332929,42649,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332930,42649,'blocks_0_options_theme','#ffffff'),(332931,42649,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(332932,42649,'blocks_0_options_reverse','0'),(332933,42649,'_blocks_0_options_reverse','field_61768049bb8ac'),(332934,42649,'blocks_0_options',''),(332935,42649,'_blocks_0_options','field_617682517c334'),(332936,42649,'blocks_0_split_5050_image','41527'),(332937,42649,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(332938,42649,'blocks_0_split_5050_video',''),(332939,42649,'_blocks_0_split_5050_video','field_6239f3160848a'),(332940,42649,'blocks_0_split_5050_content_title',''),(332941,42649,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(332942,42649,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(332943,42649,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(332944,42649,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you are looking to expand your professional skills or embark on a new career path, our internationally available training ensures you receive the highest standard of education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(332945,42649,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(332946,42649,'blocks_0_split_5050_content_actions','1'),(332947,42649,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(332948,42649,'blocks_0_split_5050_content',''),(332949,42649,'_blocks_0_split_5050_content','field_61767afceb8ba'),(332950,42649,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(332951,42649,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(332952,42649,'blocks_1_acfe_flexible_toggle',''),(332953,42649,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(332954,42649,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(332955,42649,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(332956,42649,'blocks_1_options_theme','#ffffff'),(332957,42649,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(332958,42649,'blocks_1_options_reverse','1'),(332959,42649,'_blocks_1_options_reverse','field_61768049bb8ac'),(332960,42649,'blocks_1_options',''),(332961,42649,'_blocks_1_options','field_617682517c334'),(332962,42649,'blocks_1_split_5050_image','41312'),(332963,42649,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(332964,42649,'blocks_1_split_5050_video',''),(332965,42649,'_blocks_1_split_5050_video','field_6239f3160848a'),(332966,42649,'blocks_1_split_5050_content_title',''),(332967,42649,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(332968,42649,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(332969,42649,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(332970,42649,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our online learning platform, our programmes provide the flexibility to suit your needs while maintaining the high standards of education Biomechanics Education is known for.'),(332971,42649,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(332972,42649,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(332973,42649,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(332974,42649,'blocks_1_split_5050_content_actions','1'),(332975,42649,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(332976,42649,'blocks_1_split_5050_content',''),(332977,42649,'_blocks_1_split_5050_content','field_61767afceb8ba'),(332978,42649,'blocks_2_acfe_flexible_toggle',''),(332979,42649,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(332980,42649,'blocks_2_acfe_flexible_layout_title','Text Block'),(332981,42649,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(332982,42649,'blocks_2_options_theme','#ffffff'),(332983,42649,'_blocks_2_options_theme','field_6176830e2ad17'),(332984,42649,'blocks_2_options',''),(332985,42649,'_blocks_2_options','field_6176830e2ad16'),(332986,42649,'blocks_2_text_block_heading','Our Popular Courses:'),(332987,42649,'_blocks_2_text_block_heading','field_617669d413097'),(332988,42649,'blocks_2_text_block_content',''),(332989,42649,'_blocks_2_text_block_content','field_617669ec13098'),(332990,42649,'blocks_3_acfe_flexible_toggle',''),(332991,42649,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(332992,42649,'blocks_3_acfe_flexible_layout_title','Cards'),(332993,42649,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(332994,42649,'blocks_3_options_theme','#ffffff'),(332995,42649,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(332996,42649,'blocks_3_options_format','carousel'),(332997,42649,'_blocks_3_options_format','field_617a7b15245b5'),(332998,42649,'blocks_3_options_style','default'),(332999,42649,'_blocks_3_options_style','field_6278ffb63484a'),(333000,42649,'blocks_3_options_cards_current_listing','0'),(333001,42649,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(333002,42649,'blocks_3_options_cards_content','selection'),(333003,42649,'_blocks_3_options_cards_content','field_617aba6122688'),(333004,42649,'blocks_3_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(333005,42649,'_blocks_3_options_cards_select_posts','field_6193f85fbaea1'),(333006,42649,'blocks_3_options',''),(333007,42649,'_blocks_3_options','field_617a7b15245b3'),(333008,42649,'blocks_4_acfe_flexible_toggle',''),(333009,42649,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(333010,42649,'blocks_4_acfe_flexible_layout_title','Quote'),(333011,42649,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(333012,42649,'blocks_4_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(333013,42649,'_blocks_4_quote_content','field_6177cdacdd67a'),(333014,42649,'blocks_4_quote_author','Alex Carter, Certified Biomechanics Coach'),(333015,42649,'_blocks_4_quote_author','field_6177cdc6dd67b'),(333016,42649,'blocks_5_acfe_flexible_toggle',''),(333017,42649,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(333018,42649,'blocks_5_acfe_flexible_layout_title','Timeline'),(333019,42649,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(333020,42649,'blocks_5_options_theme','#ffffff'),(333021,42649,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(333022,42649,'blocks_5_options',''),(333023,42649,'_blocks_5_options','field_6177de53d1195'),(333024,42649,'blocks_5_timeline_content_title',''),(333025,42649,'_blocks_5_timeline_content_title','field_6177de53d1198'),(333026,42649,'blocks_5_timeline_content_heading','Why choose Biomechanics Education'),(333027,42649,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(333028,42649,'blocks_5_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(333029,42649,'_blocks_5_timeline_content_text','field_6177de53d119a'),(333030,42649,'blocks_5_timeline_content_actions',''),(333031,42649,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(333032,42649,'blocks_5_timeline_content',''),(333033,42649,'_blocks_5_timeline_content','field_6177de53d1197'),(333034,42649,'blocks_5_timeline_items_0_title','Industry-Leading Expertise'),(333035,42649,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(333036,42649,'blocks_5_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(333037,42649,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(333038,42649,'blocks_5_timeline_items_1_title','Global Accessibility'),(333039,42649,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(333040,42649,'blocks_5_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(333041,42649,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(333042,42649,'blocks_5_timeline_items_2_title','Internationally Recognised Certification'),(333043,42649,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(333044,42649,'blocks_5_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(333045,42649,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(333046,42649,'blocks_5_timeline_items_3_title','Career Opportunities Worldwide'),(333047,42649,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(333048,42649,'blocks_5_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(333049,42649,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(333050,42649,'blocks_5_timeline_items','4'),(333051,42649,'_blocks_5_timeline_items','field_6177de53d119d'),(333052,42649,'_thumbnail_id','40818'),(333053,42649,'__thumbnail_id','field_617570855ddaf'),(333054,42649,'blocks_6_acfe_flexible_toggle',''),(333055,42649,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(333056,42649,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(333057,42649,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(333058,42649,'blocks_6_options_theme','#ffffff'),(333059,42649,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(333060,42649,'blocks_6_options_reverse','0'),(333061,42649,'_blocks_6_options_reverse','field_61768049bb8ac'),(333062,42649,'blocks_6_options',''),(333063,42649,'_blocks_6_options','field_617682517c334'),(333064,42649,'blocks_6_split_5050_image','41300'),(333065,42649,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(333066,42649,'blocks_6_split_5050_video',''),(333067,42649,'_blocks_6_split_5050_video','field_6239f3160848a'),(333068,42649,'blocks_6_split_5050_content_title',''),(333069,42649,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(333070,42649,'blocks_6_split_5050_content_heading','International Support & Learning Experience'),(333071,42649,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(333072,42649,'blocks_6_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we provide dedicated support for international students. From expert guidance during your learning journey to access to online resources, live Q&amp;A sessions, and a global community of Biomechanics Coaches, we ensure you feel connected and supported every step of the way. Our flexible learning options and personalised tutor support mean you can study with confidence, no matter where you are in the world.'),(333073,42649,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(333074,42649,'blocks_6_split_5050_content_actions',''),(333075,42649,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(333076,42649,'blocks_6_split_5050_content',''),(333077,42649,'_blocks_6_split_5050_content','field_61767afceb8ba'),(333078,42649,'blocks_7_acfe_flexible_toggle',''),(333079,42649,'_blocks_7_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(333080,42649,'blocks_7_acfe_flexible_layout_title','Form'),(333081,42649,'_blocks_7_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(333082,42649,'blocks_7_row_content_format','standard'),(333083,42649,'_blocks_7_row_content_format','field_6481ead962881'),(333084,42649,'blocks_7_row_content_title',''),(333085,42649,'_blocks_7_row_content_title','field_61a0f5f5b3db1'),(333086,42649,'blocks_7_row_content_heading','Contact Us Today'),(333087,42649,'_blocks_7_row_content_heading','field_61a0f5f5b3db2'),(333088,42649,'blocks_7_row_content_text','If you’re looking to expand your career in movement assessment, injury prevention, or performance coaching, Biomechanics Education offers a globally accessible pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and explore your options. You’ll also have the chance to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice to help you take the next step.'),(333089,42649,'_blocks_7_row_content_text','field_61a0f5f5b3db3'),(333090,42649,'blocks_7_row_content_actions',''),(333091,42649,'_blocks_7_row_content_actions','field_61a0f5f5b3db4'),(333092,42649,'blocks_7_row_content',''),(333093,42649,'_blocks_7_row_content','field_61a0f5f5b3db0'),(333094,42649,'blocks_7_row_form','40394'),(333095,42649,'_blocks_7_row_form','field_61a4ff2c0b08e'),(333096,42649,'blocks_7_row_form_button_label',''),(333097,42649,'_blocks_7_row_form_button_label','field_61e12cf6fe412'),(333098,42649,'blocks_8_acfe_flexible_toggle',''),(333099,42649,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(333100,42649,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(333101,42649,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(333102,42649,'blocks_8_options_theme','#ffffff'),(333103,42649,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(333104,42649,'blocks_8_options_state','0'),(333105,42649,'_blocks_8_options_state','field_6239fcb7508c5'),(333106,42649,'blocks_8_options',''),(333107,42649,'_blocks_8_options','field_6177e2991ac44'),(333108,42649,'blocks_8_content_title',''),(333109,42649,'_blocks_8_content_title','field_64d237e8bb1e2'),(333110,42649,'blocks_8_content_heading','FAQs'),(333111,42649,'_blocks_8_content_heading','field_64d237e8bb1e3'),(333112,42649,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(333113,42649,'_blocks_8_content_text','field_64d237e8bb1e4'),(333114,42649,'blocks_8_content_actions',''),(333115,42649,'_blocks_8_content_actions','field_64d237e8bb1e5'),(333116,42649,'blocks_8_content_align','left'),(333117,42649,'_blocks_8_content_align','field_64d2443e6b6aa'),(333118,42649,'blocks_8_content',''),(333119,42649,'_blocks_8_content','field_64d237e8bb1e1'),(333120,42649,'blocks_8_accordion_content','custom'),(333121,42649,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(333122,42649,'blocks_8_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(333123,42649,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(333124,42649,'blocks_8_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(333125,42649,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(333126,42649,'blocks_8_accordion_items_1_title','Is the qualification recognised globally?'),(333127,42649,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(333128,42649,'blocks_8_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(333129,42649,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(333130,42649,'blocks_8_accordion_items_2_title','What are the study options for international students?'),(333131,42649,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(333132,42649,'blocks_8_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(333133,42649,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(333134,42649,'blocks_8_accordion_items_3_title','Who is this course suitable for?'),(333135,42649,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(333136,42649,'blocks_8_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(333137,42649,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(333138,42649,'blocks_8_accordion_items_4_title','How do I enrol and what are the payment options?'),(333139,42649,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(333140,42649,'blocks_8_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(333141,42649,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(333142,42649,'blocks_8_accordion_items','5'),(333143,42649,'_blocks_8_accordion_items','field_6177e2991ac4c'),(333144,42649,'blocks_8_actions',''),(333145,42649,'_blocks_8_actions','field_61a746a817f7a'),(333146,42650,'hide_hero','0'),(333147,42650,'_hide_hero','field_66a2380fcda39'),(333148,42650,'fft_hide_from_listings','0'),(333149,42650,'_fft_hide_from_listings','field_61f1320446ab2'),(333150,42650,'fft_page_format','default'),(333151,42650,'_fft_page_format','field_61ae213f1f218'),(333152,42650,'fft_hide_nav','0'),(333153,42650,'_fft_hide_nav','field_635bd5e43527c'),(333154,42650,'fft_hide_header_call_to_action','0'),(333155,42650,'_fft_hide_header_call_to_action','field_635bd6723527d'),(333156,42650,'fft_page_sitemap','0'),(333157,42650,'_fft_page_sitemap','field_61af9b34e8181'),(333158,42650,'blocks','a:9:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:10:\"split_5050\";i:7;s:4:\"form\";i:8;s:10:\"accordions\";}'),(333159,42650,'_blocks','field_6176696113096'),(333160,42650,'hero_title',''),(333161,42650,'_hero_title','field_617571fe285e8'),(333162,42650,'hero_text',''),(333163,42650,'_hero_text','field_6175723c285e9'),(333164,42650,'hero_actions',''),(333165,42650,'_hero_actions','field_61757270285ea'),(333166,42650,'hero_style','default'),(333167,42650,'_hero_style','field_62051d9dc5324'),(333168,42650,'hero_image_pos_x','right'),(333169,42650,'_hero_image_pos_x','field_62ec3d05390bb'),(333170,42650,'hero_image_pos_y','top'),(333171,42650,'_hero_image_pos_y','field_62ec3d05390bc'),(333172,42650,'hero_image_pos',''),(333173,42650,'_hero_image_pos','field_62ec3d05390ba'),(333174,42650,'blocks_0_acfe_flexible_toggle',''),(333175,42650,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(333176,42650,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(333177,42650,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(333178,42650,'blocks_0_options_theme','#ffffff'),(333179,42650,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(333180,42650,'blocks_0_options_reverse','0'),(333181,42650,'_blocks_0_options_reverse','field_61768049bb8ac'),(333182,42650,'blocks_0_options',''),(333183,42650,'_blocks_0_options','field_617682517c334'),(333184,42650,'blocks_0_split_5050_image','41527'),(333185,42650,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(333186,42650,'blocks_0_split_5050_video',''),(333187,42650,'_blocks_0_split_5050_video','field_6239f3160848a'),(333188,42650,'blocks_0_split_5050_content_title',''),(333189,42650,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(333190,42650,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(333191,42650,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(333192,42650,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you are looking to expand your professional skills or embark on a new career path, our internationally available training ensures you receive the highest standard of education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(333193,42650,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(333194,42650,'blocks_0_split_5050_content_actions','1'),(333195,42650,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(333196,42650,'blocks_0_split_5050_content',''),(333197,42650,'_blocks_0_split_5050_content','field_61767afceb8ba'),(333198,42650,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(333199,42650,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(333200,42650,'blocks_1_acfe_flexible_toggle',''),(333201,42650,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(333202,42650,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(333203,42650,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(333204,42650,'blocks_1_options_theme','#ffffff'),(333205,42650,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(333206,42650,'blocks_1_options_reverse','1'),(333207,42650,'_blocks_1_options_reverse','field_61768049bb8ac'),(333208,42650,'blocks_1_options',''),(333209,42650,'_blocks_1_options','field_617682517c334'),(333210,42650,'blocks_1_split_5050_image','41312'),(333211,42650,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(333212,42650,'blocks_1_split_5050_video',''),(333213,42650,'_blocks_1_split_5050_video','field_6239f3160848a'),(333214,42650,'blocks_1_split_5050_content_title',''),(333215,42650,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(333216,42650,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(333217,42650,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(333218,42650,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our online learning platform, our programmes provide the flexibility to suit your needs while maintaining the high standards of education Biomechanics Education is known for.'),(333219,42650,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(333220,42650,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(333221,42650,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(333222,42650,'blocks_1_split_5050_content_actions','1'),(333223,42650,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(333224,42650,'blocks_1_split_5050_content',''),(333225,42650,'_blocks_1_split_5050_content','field_61767afceb8ba'),(333226,42650,'blocks_2_acfe_flexible_toggle',''),(333227,42650,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(333228,42650,'blocks_2_acfe_flexible_layout_title','Text Block'),(333229,42650,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(333230,42650,'blocks_2_options_theme','#ffffff'),(333231,42650,'_blocks_2_options_theme','field_6176830e2ad17'),(333232,42650,'blocks_2_options',''),(333233,42650,'_blocks_2_options','field_6176830e2ad16'),(333234,42650,'blocks_2_text_block_heading','Our Popular Courses:'),(333235,42650,'_blocks_2_text_block_heading','field_617669d413097'),(333236,42650,'blocks_2_text_block_content',''),(333237,42650,'_blocks_2_text_block_content','field_617669ec13098'),(333238,42650,'blocks_3_acfe_flexible_toggle',''),(333239,42650,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(333240,42650,'blocks_3_acfe_flexible_layout_title','Cards'),(333241,42650,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(333242,42650,'blocks_3_options_theme','#ffffff'),(333243,42650,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(333244,42650,'blocks_3_options_format','carousel'),(333245,42650,'_blocks_3_options_format','field_617a7b15245b5'),(333246,42650,'blocks_3_options_style','default'),(333247,42650,'_blocks_3_options_style','field_6278ffb63484a'),(333248,42650,'blocks_3_options_cards_current_listing','0'),(333249,42650,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(333250,42650,'blocks_3_options_cards_content','selection'),(333251,42650,'_blocks_3_options_cards_content','field_617aba6122688'),(333252,42650,'blocks_3_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(333253,42650,'_blocks_3_options_cards_select_posts','field_6193f85fbaea1'),(333254,42650,'blocks_3_options',''),(333255,42650,'_blocks_3_options','field_617a7b15245b3'),(333256,42650,'blocks_4_acfe_flexible_toggle',''),(333257,42650,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(333258,42650,'blocks_4_acfe_flexible_layout_title','Quote'),(333259,42650,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(333260,42650,'blocks_4_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(333261,42650,'_blocks_4_quote_content','field_6177cdacdd67a'),(333262,42650,'blocks_4_quote_author','Alex Carter, Certified Biomechanics Coach'),(333263,42650,'_blocks_4_quote_author','field_6177cdc6dd67b'),(333264,42650,'blocks_5_acfe_flexible_toggle',''),(333265,42650,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(333266,42650,'blocks_5_acfe_flexible_layout_title','Timeline'),(333267,42650,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(333268,42650,'blocks_5_options_theme','#ffffff'),(333269,42650,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(333270,42650,'blocks_5_options',''),(333271,42650,'_blocks_5_options','field_6177de53d1195'),(333272,42650,'blocks_5_timeline_content_title',''),(333273,42650,'_blocks_5_timeline_content_title','field_6177de53d1198'),(333274,42650,'blocks_5_timeline_content_heading','Why choose Biomechanics Education'),(333275,42650,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(333276,42650,'blocks_5_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(333277,42650,'_blocks_5_timeline_content_text','field_6177de53d119a'),(333278,42650,'blocks_5_timeline_content_actions',''),(333279,42650,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(333280,42650,'blocks_5_timeline_content',''),(333281,42650,'_blocks_5_timeline_content','field_6177de53d1197'),(333282,42650,'blocks_5_timeline_items_0_title','Industry-Leading Expertise'),(333283,42650,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(333284,42650,'blocks_5_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(333285,42650,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(333286,42650,'blocks_5_timeline_items_1_title','Global Accessibility'),(333287,42650,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(333288,42650,'blocks_5_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(333289,42650,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(333290,42650,'blocks_5_timeline_items_2_title','Internationally Recognised Certification'),(333291,42650,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(333292,42650,'blocks_5_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(333293,42650,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(333294,42650,'blocks_5_timeline_items_3_title','Career Opportunities Worldwide'),(333295,42650,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(333296,42650,'blocks_5_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(333297,42650,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(333298,42650,'blocks_5_timeline_items','4'),(333299,42650,'_blocks_5_timeline_items','field_6177de53d119d'),(333300,42650,'_thumbnail_id','40818'),(333301,42650,'__thumbnail_id','field_617570855ddaf'),(333302,42650,'blocks_6_acfe_flexible_toggle',''),(333303,42650,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(333304,42650,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(333305,42650,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(333306,42650,'blocks_6_options_theme','#ffffff'),(333307,42650,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(333308,42650,'blocks_6_options_reverse','0'),(333309,42650,'_blocks_6_options_reverse','field_61768049bb8ac'),(333310,42650,'blocks_6_options',''),(333311,42650,'_blocks_6_options','field_617682517c334'),(333312,42650,'blocks_6_split_5050_image','41300'),(333313,42650,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(333314,42650,'blocks_6_split_5050_video',''),(333315,42650,'_blocks_6_split_5050_video','field_6239f3160848a'),(333316,42650,'blocks_6_split_5050_content_title',''),(333317,42650,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(333318,42650,'blocks_6_split_5050_content_heading','International Support & Learning Experience'),(333319,42650,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(333320,42650,'blocks_6_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we provide dedicated support for international students. From expert guidance during your learning journey to access to online resources, live Q&amp;A sessions, and a global community of Biomechanics Coaches, we ensure you feel connected and supported every step of the way.\r\n\r\nOur flexible learning options and personalised tutor support mean you can study with confidence, no matter where you are in the world.'),(333321,42650,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(333322,42650,'blocks_6_split_5050_content_actions',''),(333323,42650,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(333324,42650,'blocks_6_split_5050_content',''),(333325,42650,'_blocks_6_split_5050_content','field_61767afceb8ba'),(333326,42650,'blocks_7_acfe_flexible_toggle',''),(333327,42650,'_blocks_7_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(333328,42650,'blocks_7_acfe_flexible_layout_title','Form'),(333329,42650,'_blocks_7_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(333330,42650,'blocks_7_row_content_format','standard'),(333331,42650,'_blocks_7_row_content_format','field_6481ead962881'),(333332,42650,'blocks_7_row_content_title',''),(333333,42650,'_blocks_7_row_content_title','field_61a0f5f5b3db1'),(333334,42650,'blocks_7_row_content_heading','Contact Us Today'),(333335,42650,'_blocks_7_row_content_heading','field_61a0f5f5b3db2'),(333336,42650,'blocks_7_row_content_text','If you’re looking to expand your career in movement assessment, injury prevention, or performance coaching, Biomechanics Education offers a globally accessible pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and explore your options. You’ll also have the chance to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice to help you take the next step.'),(333337,42650,'_blocks_7_row_content_text','field_61a0f5f5b3db3'),(333338,42650,'blocks_7_row_content_actions',''),(333339,42650,'_blocks_7_row_content_actions','field_61a0f5f5b3db4'),(333340,42650,'blocks_7_row_content',''),(333341,42650,'_blocks_7_row_content','field_61a0f5f5b3db0'),(333342,42650,'blocks_7_row_form','40394'),(333343,42650,'_blocks_7_row_form','field_61a4ff2c0b08e'),(333344,42650,'blocks_7_row_form_button_label',''),(333345,42650,'_blocks_7_row_form_button_label','field_61e12cf6fe412'),(333346,42650,'blocks_8_acfe_flexible_toggle',''),(333347,42650,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(333348,42650,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(333349,42650,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(333350,42650,'blocks_8_options_theme','#ffffff'),(333351,42650,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(333352,42650,'blocks_8_options_state','0'),(333353,42650,'_blocks_8_options_state','field_6239fcb7508c5'),(333354,42650,'blocks_8_options',''),(333355,42650,'_blocks_8_options','field_6177e2991ac44'),(333356,42650,'blocks_8_content_title',''),(333357,42650,'_blocks_8_content_title','field_64d237e8bb1e2'),(333358,42650,'blocks_8_content_heading','FAQs'),(333359,42650,'_blocks_8_content_heading','field_64d237e8bb1e3'),(333360,42650,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(333361,42650,'_blocks_8_content_text','field_64d237e8bb1e4'),(333362,42650,'blocks_8_content_actions',''),(333363,42650,'_blocks_8_content_actions','field_64d237e8bb1e5'),(333364,42650,'blocks_8_content_align','left'),(333365,42650,'_blocks_8_content_align','field_64d2443e6b6aa'),(333366,42650,'blocks_8_content',''),(333367,42650,'_blocks_8_content','field_64d237e8bb1e1'),(333368,42650,'blocks_8_accordion_content','custom'),(333369,42650,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(333370,42650,'blocks_8_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(333371,42650,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(333372,42650,'blocks_8_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(333373,42650,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(333374,42650,'blocks_8_accordion_items_1_title','Is the qualification recognised globally?'),(333375,42650,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(333376,42650,'blocks_8_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(333377,42650,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(333378,42650,'blocks_8_accordion_items_2_title','What are the study options for international students?'),(333379,42650,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(333380,42650,'blocks_8_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(333381,42650,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(333382,42650,'blocks_8_accordion_items_3_title','Who is this course suitable for?'),(333383,42650,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(333384,42650,'blocks_8_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(333385,42650,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(333386,42650,'blocks_8_accordion_items_4_title','How do I enrol and what are the payment options?'),(333387,42650,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(333388,42650,'blocks_8_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(333389,42650,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(333390,42650,'blocks_8_accordion_items','5'),(333391,42650,'_blocks_8_accordion_items','field_6177e2991ac4c'),(333392,42650,'blocks_8_actions',''),(333393,42650,'_blocks_8_actions','field_61a746a817f7a'),(333394,42651,'hide_hero','0'),(333395,42651,'_hide_hero','field_66a2380fcda39'),(333396,42651,'fft_hide_from_listings','0'),(333397,42651,'_fft_hide_from_listings','field_61f1320446ab2'),(333398,42651,'fft_page_format','default'),(333399,42651,'_fft_page_format','field_61ae213f1f218'),(333400,42651,'fft_hide_nav','0'),(333401,42651,'_fft_hide_nav','field_635bd5e43527c'),(333402,42651,'fft_hide_header_call_to_action','0'),(333403,42651,'_fft_hide_header_call_to_action','field_635bd6723527d'),(333404,42651,'fft_page_sitemap','0'),(333405,42651,'_fft_page_sitemap','field_61af9b34e8181'),(333406,42651,'blocks','a:9:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:10:\"split_5050\";i:7;s:4:\"form\";i:8;s:10:\"accordions\";}'),(333407,42651,'_blocks','field_6176696113096'),(333408,42651,'hero_title',''),(333409,42651,'_hero_title','field_617571fe285e8'),(333410,42651,'hero_text',''),(333411,42651,'_hero_text','field_6175723c285e9'),(333412,42651,'hero_actions',''),(333413,42651,'_hero_actions','field_61757270285ea'),(333414,42651,'hero_style','default'),(333415,42651,'_hero_style','field_62051d9dc5324'),(333416,42651,'hero_image_pos_x','right'),(333417,42651,'_hero_image_pos_x','field_62ec3d05390bb'),(333418,42651,'hero_image_pos_y','top'),(333419,42651,'_hero_image_pos_y','field_62ec3d05390bc'),(333420,42651,'hero_image_pos',''),(333421,42651,'_hero_image_pos','field_62ec3d05390ba'),(333422,42651,'blocks_0_acfe_flexible_toggle',''),(333423,42651,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(333424,42651,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(333425,42651,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(333426,42651,'blocks_0_options_theme','#ffffff'),(333427,42651,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(333428,42651,'blocks_0_options_reverse','0'),(333429,42651,'_blocks_0_options_reverse','field_61768049bb8ac'),(333430,42651,'blocks_0_options',''),(333431,42651,'_blocks_0_options','field_617682517c334'),(333432,42651,'blocks_0_split_5050_image','41527'),(333433,42651,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(333434,42651,'blocks_0_split_5050_video',''),(333435,42651,'_blocks_0_split_5050_video','field_6239f3160848a'),(333436,42651,'blocks_0_split_5050_content_title',''),(333437,42651,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(333438,42651,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(333439,42651,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(333440,42651,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you are looking to expand your professional skills or embark on a new career path, our internationally available training ensures you receive the highest standard of education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(333441,42651,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(333442,42651,'blocks_0_split_5050_content_actions','1'),(333443,42651,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(333444,42651,'blocks_0_split_5050_content',''),(333445,42651,'_blocks_0_split_5050_content','field_61767afceb8ba'),(333446,42651,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(333447,42651,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(333448,42651,'blocks_1_acfe_flexible_toggle',''),(333449,42651,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(333450,42651,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(333451,42651,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(333452,42651,'blocks_1_options_theme','#ffffff'),(333453,42651,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(333454,42651,'blocks_1_options_reverse','1'),(333455,42651,'_blocks_1_options_reverse','field_61768049bb8ac'),(333456,42651,'blocks_1_options',''),(333457,42651,'_blocks_1_options','field_617682517c334'),(333458,42651,'blocks_1_split_5050_image','41312'),(333459,42651,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(333460,42651,'blocks_1_split_5050_video',''),(333461,42651,'_blocks_1_split_5050_video','field_6239f3160848a'),(333462,42651,'blocks_1_split_5050_content_title',''),(333463,42651,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(333464,42651,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(333465,42651,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(333466,42651,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our online learning platform, our programmes provide the flexibility to suit your needs while maintaining the high standards of education Biomechanics Education is known for.'),(333467,42651,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(333468,42651,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(333469,42651,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(333470,42651,'blocks_1_split_5050_content_actions','1'),(333471,42651,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(333472,42651,'blocks_1_split_5050_content',''),(333473,42651,'_blocks_1_split_5050_content','field_61767afceb8ba'),(333474,42651,'blocks_2_acfe_flexible_toggle',''),(333475,42651,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(333476,42651,'blocks_2_acfe_flexible_layout_title','Text Block'),(333477,42651,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(333478,42651,'blocks_2_options_theme','#ffffff'),(333479,42651,'_blocks_2_options_theme','field_6176830e2ad17'),(333480,42651,'blocks_2_options',''),(333481,42651,'_blocks_2_options','field_6176830e2ad16'),(333482,42651,'blocks_2_text_block_heading','Our Popular Courses:'),(333483,42651,'_blocks_2_text_block_heading','field_617669d413097'),(333484,42651,'blocks_2_text_block_content',''),(333485,42651,'_blocks_2_text_block_content','field_617669ec13098'),(333486,42651,'blocks_3_acfe_flexible_toggle',''),(333487,42651,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(333488,42651,'blocks_3_acfe_flexible_layout_title','Cards'),(333489,42651,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(333490,42651,'blocks_3_options_theme','#ffffff'),(333491,42651,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(333492,42651,'blocks_3_options_format','carousel'),(333493,42651,'_blocks_3_options_format','field_617a7b15245b5'),(333494,42651,'blocks_3_options_style','default'),(333495,42651,'_blocks_3_options_style','field_6278ffb63484a'),(333496,42651,'blocks_3_options_cards_current_listing','0'),(333497,42651,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(333498,42651,'blocks_3_options_cards_content','selection'),(333499,42651,'_blocks_3_options_cards_content','field_617aba6122688'),(333500,42651,'blocks_3_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(333501,42651,'_blocks_3_options_cards_select_posts','field_6193f85fbaea1'),(333502,42651,'blocks_3_options',''),(333503,42651,'_blocks_3_options','field_617a7b15245b3'),(333504,42651,'blocks_4_acfe_flexible_toggle',''),(333505,42651,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(333506,42651,'blocks_4_acfe_flexible_layout_title','Quote'),(333507,42651,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(333508,42651,'blocks_4_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(333509,42651,'_blocks_4_quote_content','field_6177cdacdd67a'),(333510,42651,'blocks_4_quote_author','Alex Carter, Certified Biomechanics Coach'),(333511,42651,'_blocks_4_quote_author','field_6177cdc6dd67b'),(333512,42651,'blocks_5_acfe_flexible_toggle',''),(333513,42651,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(333514,42651,'blocks_5_acfe_flexible_layout_title','Timeline'),(333515,42651,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(333516,42651,'blocks_5_options_theme','#ffffff'),(333517,42651,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(333518,42651,'blocks_5_options',''),(333519,42651,'_blocks_5_options','field_6177de53d1195'),(333520,42651,'blocks_5_timeline_content_title',''),(333521,42651,'_blocks_5_timeline_content_title','field_6177de53d1198'),(333522,42651,'blocks_5_timeline_content_heading','Why choose Biomechanics Education'),(333523,42651,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(333524,42651,'blocks_5_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(333525,42651,'_blocks_5_timeline_content_text','field_6177de53d119a'),(333526,42651,'blocks_5_timeline_content_actions',''),(333527,42651,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(333528,42651,'blocks_5_timeline_content',''),(333529,42651,'_blocks_5_timeline_content','field_6177de53d1197'),(333530,42651,'blocks_5_timeline_items_0_title','Industry-Leading Expertise'),(333531,42651,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(333532,42651,'blocks_5_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(333533,42651,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(333534,42651,'blocks_5_timeline_items_1_title','Global Accessibility'),(333535,42651,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(333536,42651,'blocks_5_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(333537,42651,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(333538,42651,'blocks_5_timeline_items_2_title','Internationally Recognised Certification'),(333539,42651,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(333540,42651,'blocks_5_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(333541,42651,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(333542,42651,'blocks_5_timeline_items_3_title','Career Opportunities Worldwide'),(333543,42651,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(333544,42651,'blocks_5_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(333545,42651,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(333546,42651,'blocks_5_timeline_items','4'),(333547,42651,'_blocks_5_timeline_items','field_6177de53d119d'),(333548,42651,'_thumbnail_id','40818'),(333549,42651,'__thumbnail_id','field_617570855ddaf'),(333550,42651,'blocks_6_acfe_flexible_toggle',''),(333551,42651,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(333552,42651,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(333553,42651,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(333554,42651,'blocks_6_options_theme','#ffffff'),(333555,42651,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(333556,42651,'blocks_6_options_reverse','0'),(333557,42651,'_blocks_6_options_reverse','field_61768049bb8ac'),(333558,42651,'blocks_6_options',''),(333559,42651,'_blocks_6_options','field_617682517c334'),(333560,42651,'blocks_6_split_5050_image','41300'),(333561,42651,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(333562,42651,'blocks_6_split_5050_video',''),(333563,42651,'_blocks_6_split_5050_video','field_6239f3160848a'),(333564,42651,'blocks_6_split_5050_content_title',''),(333565,42651,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(333566,42651,'blocks_6_split_5050_content_heading','International Support & Learning Experience'),(333567,42651,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(333568,42651,'blocks_6_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we provide dedicated support for international students. From expert guidance during your learning journey to access to online resources, live Q&amp;A sessions, and a global community of Biomechanics Coaches, we ensure you feel connected and supported every step of the way.\r\n\r\nOur flexible learning options and personalised tutor support mean you can study with confidence, no matter where you are in the world.'),(333569,42651,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(333570,42651,'blocks_6_split_5050_content_actions',''),(333571,42651,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(333572,42651,'blocks_6_split_5050_content',''),(333573,42651,'_blocks_6_split_5050_content','field_61767afceb8ba'),(333574,42651,'blocks_7_acfe_flexible_toggle',''),(333575,42651,'_blocks_7_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(333576,42651,'blocks_7_acfe_flexible_layout_title','Form'),(333577,42651,'_blocks_7_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(333578,42651,'blocks_7_row_content_format','standard'),(333579,42651,'_blocks_7_row_content_format','field_6481ead962881'),(333580,42651,'blocks_7_row_content_title',''),(333581,42651,'_blocks_7_row_content_title','field_61a0f5f5b3db1'),(333582,42651,'blocks_7_row_content_heading','Contact Us Today'),(333583,42651,'_blocks_7_row_content_heading','field_61a0f5f5b3db2'),(333584,42651,'blocks_7_row_content_text','If you’re looking to expand your career in movement assessment, injury prevention, or performance coaching, Biomechanics Education offers a globally accessible pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and explore your options. You’ll also have the chance to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice to help you take the next step.'),(333585,42651,'_blocks_7_row_content_text','field_61a0f5f5b3db3'),(333586,42651,'blocks_7_row_content_actions',''),(333587,42651,'_blocks_7_row_content_actions','field_61a0f5f5b3db4'),(333588,42651,'blocks_7_row_content',''),(333589,42651,'_blocks_7_row_content','field_61a0f5f5b3db0'),(333590,42651,'blocks_7_row_form','40394'),(333591,42651,'_blocks_7_row_form','field_61a4ff2c0b08e'),(333592,42651,'blocks_7_row_form_button_label',''),(333593,42651,'_blocks_7_row_form_button_label','field_61e12cf6fe412'),(333594,42651,'blocks_8_acfe_flexible_toggle',''),(333595,42651,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(333596,42651,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(333597,42651,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(333598,42651,'blocks_8_options_theme','#ffffff'),(333599,42651,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(333600,42651,'blocks_8_options_state','0'),(333601,42651,'_blocks_8_options_state','field_6239fcb7508c5'),(333602,42651,'blocks_8_options',''),(333603,42651,'_blocks_8_options','field_6177e2991ac44'),(333604,42651,'blocks_8_content_title',''),(333605,42651,'_blocks_8_content_title','field_64d237e8bb1e2'),(333606,42651,'blocks_8_content_heading','FAQs'),(333607,42651,'_blocks_8_content_heading','field_64d237e8bb1e3'),(333608,42651,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(333609,42651,'_blocks_8_content_text','field_64d237e8bb1e4'),(333610,42651,'blocks_8_content_actions',''),(333611,42651,'_blocks_8_content_actions','field_64d237e8bb1e5'),(333612,42651,'blocks_8_content_align','left'),(333613,42651,'_blocks_8_content_align','field_64d2443e6b6aa'),(333614,42651,'blocks_8_content',''),(333615,42651,'_blocks_8_content','field_64d237e8bb1e1'),(333616,42651,'blocks_8_accordion_content','custom'),(333617,42651,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(333618,42651,'blocks_8_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(333619,42651,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(333620,42651,'blocks_8_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(333621,42651,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(333622,42651,'blocks_8_accordion_items_1_title','Is the qualification recognised globally?'),(333623,42651,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(333624,42651,'blocks_8_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(333625,42651,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(333626,42651,'blocks_8_accordion_items_2_title','What are the study options for international students?'),(333627,42651,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(333628,42651,'blocks_8_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(333629,42651,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(333630,42651,'blocks_8_accordion_items_3_title','Who is this course suitable for?'),(333631,42651,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(333632,42651,'blocks_8_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(333633,42651,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(333634,42651,'blocks_8_accordion_items_4_title','How do I enrol and what are the payment options?'),(333635,42651,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(333636,42651,'blocks_8_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(333637,42651,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(333638,42651,'blocks_8_accordion_items','5'),(333639,42651,'_blocks_8_accordion_items','field_6177e2991ac4c'),(333640,42651,'blocks_8_actions',''),(333641,42651,'_blocks_8_actions','field_61a746a817f7a'),(333642,42652,'hide_hero','0'),(333643,42652,'_hide_hero','field_66a2380fcda39'),(333644,42652,'fft_hide_from_listings','1'),(333645,42652,'_fft_hide_from_listings','field_61f1320446ab2'),(333646,42652,'fft_page_format','default'),(333647,42652,'_fft_page_format','field_61ae213f1f218'),(333648,42652,'fft_hide_nav','1'),(333649,42652,'_fft_hide_nav','field_635bd5e43527c'),(333650,42652,'fft_hide_header_call_to_action','0'),(333651,42652,'_fft_hide_header_call_to_action','field_635bd6723527d'),(333652,42652,'fft_page_sitemap','1'),(333653,42652,'_fft_page_sitemap','field_61af9b34e8181'),(333654,42652,'blocks','a:9:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:10:\"split_5050\";i:7;s:4:\"form\";i:8;s:10:\"accordions\";}'),(333655,42652,'_blocks','field_6176696113096'),(333656,42652,'hero_title',''),(333657,42652,'_hero_title','field_617571fe285e8'),(333658,42652,'hero_text',''),(333659,42652,'_hero_text','field_6175723c285e9'),(333660,42652,'hero_actions',''),(333661,42652,'_hero_actions','field_61757270285ea'),(333662,42652,'hero_style','default'),(333663,42652,'_hero_style','field_62051d9dc5324'),(333664,42652,'hero_image_pos_x','right'),(333665,42652,'_hero_image_pos_x','field_62ec3d05390bb'),(333666,42652,'hero_image_pos_y','top'),(333667,42652,'_hero_image_pos_y','field_62ec3d05390bc'),(333668,42652,'hero_image_pos',''),(333669,42652,'_hero_image_pos','field_62ec3d05390ba'),(333670,42652,'blocks_0_acfe_flexible_toggle',''),(333671,42652,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(333672,42652,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(333673,42652,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(333674,42652,'blocks_0_options_theme','#ffffff'),(333675,42652,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(333676,42652,'blocks_0_options_reverse','0'),(333677,42652,'_blocks_0_options_reverse','field_61768049bb8ac'),(333678,42652,'blocks_0_options',''),(333679,42652,'_blocks_0_options','field_617682517c334'),(333680,42652,'blocks_0_split_5050_image','41527'),(333681,42652,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(333682,42652,'blocks_0_split_5050_video',''),(333683,42652,'_blocks_0_split_5050_video','field_6239f3160848a'),(333684,42652,'blocks_0_split_5050_content_title',''),(333685,42652,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(333686,42652,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(333687,42652,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(333688,42652,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you are looking to expand your professional skills or embark on a new career path, our internationally available training ensures you receive the highest standard of education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(333689,42652,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(333690,42652,'blocks_0_split_5050_content_actions','1'),(333691,42652,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(333692,42652,'blocks_0_split_5050_content',''),(333693,42652,'_blocks_0_split_5050_content','field_61767afceb8ba'),(333694,42652,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(333695,42652,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(333696,42652,'blocks_1_acfe_flexible_toggle',''),(333697,42652,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(333698,42652,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(333699,42652,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(333700,42652,'blocks_1_options_theme','#ffffff'),(333701,42652,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(333702,42652,'blocks_1_options_reverse','1'),(333703,42652,'_blocks_1_options_reverse','field_61768049bb8ac'),(333704,42652,'blocks_1_options',''),(333705,42652,'_blocks_1_options','field_617682517c334'),(333706,42652,'blocks_1_split_5050_image','41312'),(333707,42652,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(333708,42652,'blocks_1_split_5050_video',''),(333709,42652,'_blocks_1_split_5050_video','field_6239f3160848a'),(333710,42652,'blocks_1_split_5050_content_title',''),(333711,42652,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(333712,42652,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(333713,42652,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(333714,42652,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our online learning platform, our programmes provide the flexibility to suit your needs while maintaining the high standards of education Biomechanics Education is known for.'),(333715,42652,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(333716,42652,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(333717,42652,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(333718,42652,'blocks_1_split_5050_content_actions','1'),(333719,42652,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(333720,42652,'blocks_1_split_5050_content',''),(333721,42652,'_blocks_1_split_5050_content','field_61767afceb8ba'),(333722,42652,'blocks_2_acfe_flexible_toggle',''),(333723,42652,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(333724,42652,'blocks_2_acfe_flexible_layout_title','Text Block'),(333725,42652,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(333726,42652,'blocks_2_options_theme','#ffffff'),(333727,42652,'_blocks_2_options_theme','field_6176830e2ad17'),(333728,42652,'blocks_2_options',''),(333729,42652,'_blocks_2_options','field_6176830e2ad16'),(333730,42652,'blocks_2_text_block_heading','Our Popular Courses:'),(333731,42652,'_blocks_2_text_block_heading','field_617669d413097'),(333732,42652,'blocks_2_text_block_content',''),(333733,42652,'_blocks_2_text_block_content','field_617669ec13098'),(333734,42652,'blocks_3_acfe_flexible_toggle',''),(333735,42652,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(333736,42652,'blocks_3_acfe_flexible_layout_title','Cards'),(333737,42652,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(333738,42652,'blocks_3_options_theme','#ffffff'),(333739,42652,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(333740,42652,'blocks_3_options_format','carousel'),(333741,42652,'_blocks_3_options_format','field_617a7b15245b5'),(333742,42652,'blocks_3_options_style','default'),(333743,42652,'_blocks_3_options_style','field_6278ffb63484a'),(333744,42652,'blocks_3_options_cards_current_listing','0'),(333745,42652,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(333746,42652,'blocks_3_options_cards_content','selection'),(333747,42652,'_blocks_3_options_cards_content','field_617aba6122688'),(333748,42652,'blocks_3_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(333749,42652,'_blocks_3_options_cards_select_posts','field_6193f85fbaea1'),(333750,42652,'blocks_3_options',''),(333751,42652,'_blocks_3_options','field_617a7b15245b3'),(333752,42652,'blocks_4_acfe_flexible_toggle',''),(333753,42652,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(333754,42652,'blocks_4_acfe_flexible_layout_title','Quote'),(333755,42652,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(333756,42652,'blocks_4_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(333757,42652,'_blocks_4_quote_content','field_6177cdacdd67a'),(333758,42652,'blocks_4_quote_author','Alex Carter, Certified Biomechanics Coach'),(333759,42652,'_blocks_4_quote_author','field_6177cdc6dd67b'),(333760,42652,'blocks_5_acfe_flexible_toggle',''),(333761,42652,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(333762,42652,'blocks_5_acfe_flexible_layout_title','Timeline'),(333763,42652,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(333764,42652,'blocks_5_options_theme','#ffffff'),(333765,42652,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(333766,42652,'blocks_5_options',''),(333767,42652,'_blocks_5_options','field_6177de53d1195'),(333768,42652,'blocks_5_timeline_content_title',''),(333769,42652,'_blocks_5_timeline_content_title','field_6177de53d1198'),(333770,42652,'blocks_5_timeline_content_heading','Why choose Biomechanics Education'),(333771,42652,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(333772,42652,'blocks_5_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(333773,42652,'_blocks_5_timeline_content_text','field_6177de53d119a'),(333774,42652,'blocks_5_timeline_content_actions',''),(333775,42652,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(333776,42652,'blocks_5_timeline_content',''),(333777,42652,'_blocks_5_timeline_content','field_6177de53d1197'),(333778,42652,'blocks_5_timeline_items_0_title','Industry-Leading Expertise'),(333779,42652,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(333780,42652,'blocks_5_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(333781,42652,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(333782,42652,'blocks_5_timeline_items_1_title','Global Accessibility'),(333783,42652,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(333784,42652,'blocks_5_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(333785,42652,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(333786,42652,'blocks_5_timeline_items_2_title','Internationally Recognised Certification'),(333787,42652,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(333788,42652,'blocks_5_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(333789,42652,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(333790,42652,'blocks_5_timeline_items_3_title','Career Opportunities Worldwide'),(333791,42652,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(333792,42652,'blocks_5_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(333793,42652,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(333794,42652,'blocks_5_timeline_items','4'),(333795,42652,'_blocks_5_timeline_items','field_6177de53d119d'),(333796,42652,'_thumbnail_id','40818'),(333797,42652,'__thumbnail_id','field_617570855ddaf'),(333798,42652,'blocks_6_acfe_flexible_toggle',''),(333799,42652,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(333800,42652,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(333801,42652,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(333802,42652,'blocks_6_options_theme','#ffffff'),(333803,42652,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(333804,42652,'blocks_6_options_reverse','0'),(333805,42652,'_blocks_6_options_reverse','field_61768049bb8ac'),(333806,42652,'blocks_6_options',''),(333807,42652,'_blocks_6_options','field_617682517c334'),(333808,42652,'blocks_6_split_5050_image','41300'),(333809,42652,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(333810,42652,'blocks_6_split_5050_video',''),(333811,42652,'_blocks_6_split_5050_video','field_6239f3160848a'),(333812,42652,'blocks_6_split_5050_content_title',''),(333813,42652,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(333814,42652,'blocks_6_split_5050_content_heading','International Support & Learning Experience'),(333815,42652,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(333816,42652,'blocks_6_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we provide dedicated support for international students. From expert guidance during your learning journey to access to online resources, live Q&amp;A sessions, and a global community of Biomechanics Coaches, we ensure you feel connected and supported every step of the way.\r\n\r\nOur flexible learning options and personalised tutor support mean you can study with confidence, no matter where you are in the world.'),(333817,42652,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(333818,42652,'blocks_6_split_5050_content_actions',''),(333819,42652,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(333820,42652,'blocks_6_split_5050_content',''),(333821,42652,'_blocks_6_split_5050_content','field_61767afceb8ba'),(333822,42652,'blocks_7_acfe_flexible_toggle',''),(333823,42652,'_blocks_7_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(333824,42652,'blocks_7_acfe_flexible_layout_title','Form'),(333825,42652,'_blocks_7_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(333826,42652,'blocks_7_row_content_format','standard'),(333827,42652,'_blocks_7_row_content_format','field_6481ead962881'),(333828,42652,'blocks_7_row_content_title',''),(333829,42652,'_blocks_7_row_content_title','field_61a0f5f5b3db1'),(333830,42652,'blocks_7_row_content_heading','Contact Us Today'),(333831,42652,'_blocks_7_row_content_heading','field_61a0f5f5b3db2'),(333832,42652,'blocks_7_row_content_text','If you’re looking to expand your career in movement assessment, injury prevention, or performance coaching, Biomechanics Education offers a globally accessible pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and explore your options. You’ll also have the chance to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice to help you take the next step.'),(333833,42652,'_blocks_7_row_content_text','field_61a0f5f5b3db3'),(333834,42652,'blocks_7_row_content_actions',''),(333835,42652,'_blocks_7_row_content_actions','field_61a0f5f5b3db4'),(333836,42652,'blocks_7_row_content',''),(333837,42652,'_blocks_7_row_content','field_61a0f5f5b3db0'),(333838,42652,'blocks_7_row_form','40394'),(333839,42652,'_blocks_7_row_form','field_61a4ff2c0b08e'),(333840,42652,'blocks_7_row_form_button_label',''),(333841,42652,'_blocks_7_row_form_button_label','field_61e12cf6fe412'),(333842,42652,'blocks_8_acfe_flexible_toggle',''),(333843,42652,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(333844,42652,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(333845,42652,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(333846,42652,'blocks_8_options_theme','#ffffff'),(333847,42652,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(333848,42652,'blocks_8_options_state','0'),(333849,42652,'_blocks_8_options_state','field_6239fcb7508c5'),(333850,42652,'blocks_8_options',''),(333851,42652,'_blocks_8_options','field_6177e2991ac44'),(333852,42652,'blocks_8_content_title',''),(333853,42652,'_blocks_8_content_title','field_64d237e8bb1e2'),(333854,42652,'blocks_8_content_heading','FAQs'),(333855,42652,'_blocks_8_content_heading','field_64d237e8bb1e3'),(333856,42652,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(333857,42652,'_blocks_8_content_text','field_64d237e8bb1e4'),(333858,42652,'blocks_8_content_actions',''),(333859,42652,'_blocks_8_content_actions','field_64d237e8bb1e5'),(333860,42652,'blocks_8_content_align','left'),(333861,42652,'_blocks_8_content_align','field_64d2443e6b6aa'),(333862,42652,'blocks_8_content',''),(333863,42652,'_blocks_8_content','field_64d237e8bb1e1'),(333864,42652,'blocks_8_accordion_content','custom'),(333865,42652,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(333866,42652,'blocks_8_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(333867,42652,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(333868,42652,'blocks_8_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(333869,42652,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(333870,42652,'blocks_8_accordion_items_1_title','Is the qualification recognised globally?'),(333871,42652,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(333872,42652,'blocks_8_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(333873,42652,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(333874,42652,'blocks_8_accordion_items_2_title','What are the study options for international students?'),(333875,42652,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(333876,42652,'blocks_8_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(333877,42652,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(333878,42652,'blocks_8_accordion_items_3_title','Who is this course suitable for?'),(333879,42652,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(333880,42652,'blocks_8_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(333881,42652,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(333882,42652,'blocks_8_accordion_items_4_title','How do I enrol and what are the payment options?'),(333883,42652,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(333884,42652,'blocks_8_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(333885,42652,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(333886,42652,'blocks_8_accordion_items','5'),(333887,42652,'_blocks_8_accordion_items','field_6177e2991ac4c'),(333888,42652,'blocks_8_actions',''),(333889,42652,'_blocks_8_actions','field_61a746a817f7a'),(334139,42654,'hide_hero','0'),(334140,42654,'_hide_hero','field_66a2380fcda39'),(334141,42654,'fft_hide_from_listings','1'),(334142,42654,'_fft_hide_from_listings','field_61f1320446ab2'),(334143,42654,'fft_page_format','default'),(334144,42654,'_fft_page_format','field_61ae213f1f218'),(334145,42654,'fft_hide_nav','1'),(334146,42654,'_fft_hide_nav','field_635bd5e43527c'),(334147,42654,'fft_hide_header_call_to_action','0'),(334148,42654,'_fft_hide_header_call_to_action','field_635bd6723527d'),(334149,42654,'fft_page_sitemap','1'),(334150,42654,'_fft_page_sitemap','field_61af9b34e8181'),(334151,42654,'blocks','a:9:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:10:\"split_5050\";i:7;s:4:\"form\";i:8;s:10:\"accordions\";}'),(334152,42654,'_blocks','field_6176696113096'),(334153,42654,'hero_title',''),(334154,42654,'_hero_title','field_617571fe285e8'),(334155,42654,'hero_text',''),(334156,42654,'_hero_text','field_6175723c285e9'),(334157,42654,'hero_actions',''),(334158,42654,'_hero_actions','field_61757270285ea'),(334159,42654,'hero_style','default'),(334160,42654,'_hero_style','field_62051d9dc5324'),(334161,42654,'hero_image_pos_x','right'),(334162,42654,'_hero_image_pos_x','field_62ec3d05390bb'),(334163,42654,'hero_image_pos_y','top'),(334164,42654,'_hero_image_pos_y','field_62ec3d05390bc'),(334165,42654,'hero_image_pos',''),(334166,42654,'_hero_image_pos','field_62ec3d05390ba'),(334167,42654,'blocks_0_acfe_flexible_toggle',''),(334168,42654,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334169,42654,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(334170,42654,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334171,42654,'blocks_0_options_theme','#ffffff'),(334172,42654,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(334173,42654,'blocks_0_options_reverse','0'),(334174,42654,'_blocks_0_options_reverse','field_61768049bb8ac'),(334175,42654,'blocks_0_options',''),(334176,42654,'_blocks_0_options','field_617682517c334'),(334177,42654,'blocks_0_split_5050_image','40848'),(334178,42654,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(334179,42654,'blocks_0_split_5050_video',''),(334180,42654,'_blocks_0_split_5050_video','field_6239f3160848a'),(334181,42654,'blocks_0_split_5050_content_title',''),(334182,42654,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(334183,42654,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(334184,42654,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(334185,42654,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you are looking to expand your professional skills or embark on a new career path, our internationally available training ensures you receive the highest standard of education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(334186,42654,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(334187,42654,'blocks_0_split_5050_content_actions','1'),(334188,42654,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(334189,42654,'blocks_0_split_5050_content',''),(334190,42654,'_blocks_0_split_5050_content','field_61767afceb8ba'),(334191,42654,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(334192,42654,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(334193,42654,'blocks_1_acfe_flexible_toggle',''),(334194,42654,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334195,42654,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(334196,42654,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334197,42654,'blocks_1_options_theme','#ffffff'),(334198,42654,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(334199,42654,'blocks_1_options_reverse','1'),(334200,42654,'_blocks_1_options_reverse','field_61768049bb8ac'),(334201,42654,'blocks_1_options',''),(334202,42654,'_blocks_1_options','field_617682517c334'),(334203,42654,'blocks_1_split_5050_image','41312'),(334204,42654,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(334205,42654,'blocks_1_split_5050_video',''),(334206,42654,'_blocks_1_split_5050_video','field_6239f3160848a'),(334207,42654,'blocks_1_split_5050_content_title',''),(334208,42654,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(334209,42654,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(334210,42654,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(334211,42654,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our online learning platform, our programmes provide the flexibility to suit your needs while maintaining the high standards of education Biomechanics Education is known for.'),(334212,42654,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(334213,42654,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(334214,42654,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(334215,42654,'blocks_1_split_5050_content_actions','1'),(334216,42654,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(334217,42654,'blocks_1_split_5050_content',''),(334218,42654,'_blocks_1_split_5050_content','field_61767afceb8ba'),(334219,42654,'blocks_2_acfe_flexible_toggle',''),(334220,42654,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(334221,42654,'blocks_2_acfe_flexible_layout_title','Text Block'),(334222,42654,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(334223,42654,'blocks_2_options_theme','#ffffff'),(334224,42654,'_blocks_2_options_theme','field_6176830e2ad17'),(334225,42654,'blocks_2_options',''),(334226,42654,'_blocks_2_options','field_6176830e2ad16'),(334227,42654,'blocks_2_text_block_heading','Our Popular Courses:'),(334228,42654,'_blocks_2_text_block_heading','field_617669d413097'),(334229,42654,'blocks_2_text_block_content',''),(334230,42654,'_blocks_2_text_block_content','field_617669ec13098'),(334231,42654,'blocks_3_acfe_flexible_toggle',''),(334232,42654,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(334233,42654,'blocks_3_acfe_flexible_layout_title','Cards'),(334234,42654,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(334235,42654,'blocks_3_options_theme','#ffffff'),(334236,42654,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(334237,42654,'blocks_3_options_format','carousel'),(334238,42654,'_blocks_3_options_format','field_617a7b15245b5'),(334239,42654,'blocks_3_options_style','default'),(334240,42654,'_blocks_3_options_style','field_6278ffb63484a'),(334241,42654,'blocks_3_options_cards_current_listing','0'),(334242,42654,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(334243,42654,'blocks_3_options_cards_content','selection'),(334244,42654,'_blocks_3_options_cards_content','field_617aba6122688'),(334245,42654,'blocks_3_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(334246,42654,'_blocks_3_options_cards_select_posts','field_6193f85fbaea1'),(334247,42654,'blocks_3_options',''),(334248,42654,'_blocks_3_options','field_617a7b15245b3'),(334249,42654,'blocks_4_acfe_flexible_toggle',''),(334250,42654,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(334251,42654,'blocks_4_acfe_flexible_layout_title','Quote'),(334252,42654,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(334253,42654,'blocks_4_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(334254,42654,'_blocks_4_quote_content','field_6177cdacdd67a'),(334255,42654,'blocks_4_quote_author','Alex Carter, Certified Biomechanics Coach'),(334256,42654,'_blocks_4_quote_author','field_6177cdc6dd67b'),(334257,42654,'blocks_5_acfe_flexible_toggle',''),(334258,42654,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(334259,42654,'blocks_5_acfe_flexible_layout_title','Timeline'),(334260,42654,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(334261,42654,'blocks_5_options_theme','#ffffff'),(334262,42654,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(334263,42654,'blocks_5_options',''),(334264,42654,'_blocks_5_options','field_6177de53d1195'),(334265,42654,'blocks_5_timeline_content_title',''),(334266,42654,'_blocks_5_timeline_content_title','field_6177de53d1198'),(334267,42654,'blocks_5_timeline_content_heading','Why choose Biomechanics Education'),(334268,42654,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(334269,42654,'blocks_5_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(334270,42654,'_blocks_5_timeline_content_text','field_6177de53d119a'),(334271,42654,'blocks_5_timeline_content_actions',''),(334272,42654,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(334273,42654,'blocks_5_timeline_content',''),(334274,42654,'_blocks_5_timeline_content','field_6177de53d1197'),(334275,42654,'blocks_5_timeline_items_0_title','Industry-Leading Expertise'),(334276,42654,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(334277,42654,'blocks_5_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(334278,42654,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(334279,42654,'blocks_5_timeline_items_1_title','Global Accessibility'),(334280,42654,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(334281,42654,'blocks_5_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(334282,42654,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(334283,42654,'blocks_5_timeline_items_2_title','Internationally Recognised Certification'),(334284,42654,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(334285,42654,'blocks_5_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(334286,42654,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(334287,42654,'blocks_5_timeline_items_3_title','Career Opportunities Worldwide'),(334288,42654,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(334289,42654,'blocks_5_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(334290,42654,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(334291,42654,'blocks_5_timeline_items','4'),(334292,42654,'_blocks_5_timeline_items','field_6177de53d119d'),(334293,42654,'_thumbnail_id','40818'),(334294,42654,'__thumbnail_id','field_617570855ddaf'),(334295,42654,'blocks_6_acfe_flexible_toggle',''),(334296,42654,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334297,42654,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(334298,42654,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334299,42654,'blocks_6_options_theme','#ffffff'),(334300,42654,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(334301,42654,'blocks_6_options_reverse','0'),(334302,42654,'_blocks_6_options_reverse','field_61768049bb8ac'),(334303,42654,'blocks_6_options',''),(334304,42654,'_blocks_6_options','field_617682517c334'),(334305,42654,'blocks_6_split_5050_image','41300'),(334306,42654,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(334307,42654,'blocks_6_split_5050_video',''),(334308,42654,'_blocks_6_split_5050_video','field_6239f3160848a'),(334309,42654,'blocks_6_split_5050_content_title',''),(334310,42654,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(334311,42654,'blocks_6_split_5050_content_heading','International Support & Learning Experience'),(334312,42654,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(334313,42654,'blocks_6_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we provide dedicated support for international students. From expert guidance during your learning journey to access to online resources, live Q&amp;A sessions, and a global community of Biomechanics Coaches, we ensure you feel connected and supported every step of the way.\r\n\r\nOur flexible learning options and personalised tutor support mean you can study with confidence, no matter where you are in the world.'),(334314,42654,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(334315,42654,'blocks_6_split_5050_content_actions',''),(334316,42654,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(334317,42654,'blocks_6_split_5050_content',''),(334318,42654,'_blocks_6_split_5050_content','field_61767afceb8ba'),(334319,42654,'blocks_7_acfe_flexible_toggle',''),(334320,42654,'_blocks_7_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(334321,42654,'blocks_7_acfe_flexible_layout_title','Form'),(334322,42654,'_blocks_7_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(334323,42654,'blocks_7_row_content_format','standard'),(334324,42654,'_blocks_7_row_content_format','field_6481ead962881'),(334325,42654,'blocks_7_row_content_title',''),(334326,42654,'_blocks_7_row_content_title','field_61a0f5f5b3db1'),(334327,42654,'blocks_7_row_content_heading','Contact Us Today'),(334328,42654,'_blocks_7_row_content_heading','field_61a0f5f5b3db2'),(334329,42654,'blocks_7_row_content_text','If you’re looking to expand your career in movement assessment, injury prevention, or performance coaching, Biomechanics Education offers a globally accessible pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and explore your options. You’ll also have the chance to speak with one of our expert Careers Advisors, who can provide friendly, no-obligation advice to help you take the next step.'),(334330,42654,'_blocks_7_row_content_text','field_61a0f5f5b3db3'),(334331,42654,'blocks_7_row_content_actions',''),(334332,42654,'_blocks_7_row_content_actions','field_61a0f5f5b3db4'),(334333,42654,'blocks_7_row_content',''),(334334,42654,'_blocks_7_row_content','field_61a0f5f5b3db0'),(334335,42654,'blocks_7_row_form','40394'),(334336,42654,'_blocks_7_row_form','field_61a4ff2c0b08e'),(334337,42654,'blocks_7_row_form_button_label',''),(334338,42654,'_blocks_7_row_form_button_label','field_61e12cf6fe412'),(334339,42654,'blocks_8_acfe_flexible_toggle',''),(334340,42654,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(334341,42654,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(334342,42654,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(334343,42654,'blocks_8_options_theme','#ffffff'),(334344,42654,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(334345,42654,'blocks_8_options_state','0'),(334346,42654,'_blocks_8_options_state','field_6239fcb7508c5'),(334347,42654,'blocks_8_options',''),(334348,42654,'_blocks_8_options','field_6177e2991ac44'),(334349,42654,'blocks_8_content_title',''),(334350,42654,'_blocks_8_content_title','field_64d237e8bb1e2'),(334351,42654,'blocks_8_content_heading','FAQs'),(334352,42654,'_blocks_8_content_heading','field_64d237e8bb1e3'),(334353,42654,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(334354,42654,'_blocks_8_content_text','field_64d237e8bb1e4'),(334355,42654,'blocks_8_content_actions',''),(334356,42654,'_blocks_8_content_actions','field_64d237e8bb1e5'),(334357,42654,'blocks_8_content_align','left'),(334358,42654,'_blocks_8_content_align','field_64d2443e6b6aa'),(334359,42654,'blocks_8_content',''),(334360,42654,'_blocks_8_content','field_64d237e8bb1e1'),(334361,42654,'blocks_8_accordion_content','custom'),(334362,42654,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(334363,42654,'blocks_8_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(334364,42654,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(334365,42654,'blocks_8_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(334366,42654,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(334367,42654,'blocks_8_accordion_items_1_title','Is the qualification recognised globally?'),(334368,42654,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(334369,42654,'blocks_8_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(334370,42654,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(334371,42654,'blocks_8_accordion_items_2_title','What are the study options for international students?'),(334372,42654,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(334373,42654,'blocks_8_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(334374,42654,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(334375,42654,'blocks_8_accordion_items_3_title','Who is this course suitable for?'),(334376,42654,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(334377,42654,'blocks_8_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(334378,42654,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(334379,42654,'blocks_8_accordion_items_4_title','How do I enrol and what are the payment options?'),(334380,42654,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(334381,42654,'blocks_8_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(334382,42654,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(334383,42654,'blocks_8_accordion_items','5'),(334384,42654,'_blocks_8_accordion_items','field_6177e2991ac4c'),(334385,42654,'blocks_8_actions',''),(334386,42654,'_blocks_8_actions','field_61a746a817f7a'),(334387,42635,'blocks_2_acfe_flexible_toggle',''),(334388,42635,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(334389,42635,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(334390,42635,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(334391,42635,'blocks_2_options_theme','#ffffff'),(334392,42635,'_blocks_2_options_theme','field_6176830e2ad17'),(334393,42635,'blocks_2_options',''),(334394,42635,'_blocks_2_options','field_6176830e2ad16'),(334395,42635,'blocks_2_text_block_heading','Define Your Career Goals'),(334396,42635,'_blocks_2_text_block_heading','field_617669d413097'),(334397,42635,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(334398,42635,'_blocks_2_text_block_content','field_617669ec13098'),(334399,42635,'blocks_4_acfe_flexible_toggle',''),(334400,42635,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334401,42635,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(334402,42635,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334403,42635,'blocks_4_options_theme','#ffffff'),(334404,42635,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(334405,42635,'blocks_4_options_reverse','1'),(334406,42635,'_blocks_4_options_reverse','field_61768049bb8ac'),(334407,42635,'blocks_4_options',''),(334408,42635,'_blocks_4_options','field_617682517c334'),(334409,42635,'blocks_4_split_5050_image','27963'),(334410,42635,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(334411,42635,'blocks_4_split_5050_video',''),(334412,42635,'_blocks_4_split_5050_video','field_6239f3160848a'),(334413,42635,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(334414,42635,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(334415,42635,'blocks_4_split_5050_content_heading',''),(334416,42635,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(334417,42635,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(334418,42635,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(334419,42635,'blocks_4_split_5050_content_actions',''),(334420,42635,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(334421,42635,'blocks_4_split_5050_content',''),(334422,42635,'_blocks_4_split_5050_content','field_61767afceb8ba'),(334423,42635,'blocks_7_acfe_flexible_toggle',''),(334424,42635,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(334425,42635,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(334426,42635,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(334427,42635,'blocks_7_options_theme','#f5f5f5'),(334428,42635,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(334429,42635,'blocks_7_options_state','0'),(334430,42635,'_blocks_7_options_state','field_6239fcb7508c5'),(334431,42635,'blocks_7_options',''),(334432,42635,'_blocks_7_options','field_6177e2991ac44'),(334433,42635,'blocks_7_content_title',''),(334434,42635,'_blocks_7_content_title','field_64d237e8bb1e2'),(334435,42635,'blocks_7_content_heading','Evaluate Course Content'),(334436,42635,'_blocks_7_content_heading','field_64d237e8bb1e3'),(334437,42635,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(334438,42635,'_blocks_7_content_text','field_64d237e8bb1e4'),(334439,42635,'blocks_7_content_actions',''),(334440,42635,'_blocks_7_content_actions','field_64d237e8bb1e5'),(334441,42635,'blocks_7_content_align','left'),(334442,42635,'_blocks_7_content_align','field_64d2443e6b6aa'),(334443,42635,'blocks_7_content',''),(334444,42635,'_blocks_7_content','field_64d237e8bb1e1'),(334445,42635,'blocks_7_accordion_content','custom'),(334446,42635,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(334447,42635,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(334448,42635,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(334449,42635,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(334450,42635,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(334451,42635,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(334452,42635,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(334453,42635,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(334454,42635,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(334455,42635,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(334456,42635,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(334457,42635,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(334458,42635,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(334459,42635,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(334460,42635,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(334461,42635,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(334462,42635,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(334463,42635,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(334464,42635,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(334465,42635,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(334466,42635,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(334467,42635,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(334468,42635,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(334469,42635,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(334470,42635,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(334471,42635,'blocks_7_accordion_items','6'),(334472,42635,'_blocks_7_accordion_items','field_6177e2991ac4c'),(334473,42635,'blocks_7_actions',''),(334474,42635,'_blocks_7_actions','field_61a746a817f7a'),(334475,42635,'blocks_8_acfe_flexible_toggle',''),(334476,42635,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(334477,42635,'blocks_8_acfe_flexible_layout_title','Accreditation and Recognition[anchor]'),(334478,42635,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(334479,42635,'blocks_8_options_theme','#b61234'),(334480,42635,'_blocks_8_options_theme','field_6176830e2ad17'),(334481,42635,'blocks_8_options',''),(334482,42635,'_blocks_8_options','field_6176830e2ad16'),(334483,42635,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(334484,42635,'_blocks_8_text_block_heading','field_617669d413097'),(334485,42635,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(334486,42635,'_blocks_8_text_block_content','field_617669ec13098'),(334487,42635,'blocks_9_acfe_flexible_toggle',''),(334488,42635,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(334489,42635,'blocks_9_acfe_flexible_layout_title','Icons'),(334490,42635,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(334491,42635,'blocks_9_options_theme','#b61234'),(334492,42635,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(334493,42635,'blocks_9_options_format','row'),(334494,42635,'_blocks_9_options_format','field_64bfde9a90690'),(334495,42635,'blocks_9_options',''),(334496,42635,'_blocks_9_options','field_64bfdd9b90684'),(334497,42635,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(334498,42635,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(334499,42635,'blocks_9_icon_row_items_0_label','Industry Recognition'),(334500,42635,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(334501,42635,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(334502,42635,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(334503,42635,'blocks_9_icon_row_items_1_icon','qualification.svg'),(334504,42635,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(334505,42635,'blocks_9_icon_row_items_1_label','University Accreditation'),(334506,42635,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(334507,42635,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(334508,42635,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(334509,42635,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(334510,42635,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(334511,42635,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(334512,42635,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(334513,42635,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(334514,42635,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(334515,42635,'blocks_9_icon_row_items','3'),(334516,42635,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(334517,42635,'blocks_11_acfe_flexible_toggle',''),(334518,42635,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334519,42635,'blocks_11_acfe_flexible_layout_title','Opportunities (1) '),(334520,42635,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334521,42635,'blocks_11_options_theme','#ffffff'),(334522,42635,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(334523,42635,'blocks_11_options_reverse','0'),(334524,42635,'_blocks_11_options_reverse','field_61768049bb8ac'),(334525,42635,'blocks_11_options',''),(334526,42635,'_blocks_11_options','field_617682517c334'),(334527,42635,'blocks_11_split_5050_image','31614'),(334528,42635,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(334529,42635,'blocks_11_split_5050_video',''),(334530,42635,'_blocks_11_split_5050_video','field_6239f3160848a'),(334531,42635,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(334532,42635,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(334533,42635,'blocks_11_split_5050_content_heading',''),(334534,42635,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(334535,42635,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle function, and nerve tension, all of which are essential for roles in basic function for day to day lifestyle, sports performance, rehabilitation, and reduction of risk of injury.'),(334536,42635,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(334537,42635,'blocks_11_split_5050_content_actions',''),(334538,42635,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(334539,42635,'blocks_11_split_5050_content',''),(334540,42635,'_blocks_11_split_5050_content','field_61767afceb8ba'),(334541,42635,'blocks_12_acfe_flexible_toggle',''),(334542,42635,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334543,42635,'blocks_12_acfe_flexible_layout_title','Opportunities (2)'),(334544,42635,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334545,42635,'blocks_12_options_theme','#ffffff'),(334546,42635,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(334547,42635,'blocks_12_options_reverse','0'),(334548,42635,'_blocks_12_options_reverse','field_61768049bb8ac'),(334549,42635,'blocks_12_options',''),(334550,42635,'_blocks_12_options','field_617682517c334'),(334551,42635,'blocks_12_split_5050_image','42682'),(334552,42635,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(334553,42635,'blocks_12_split_5050_video',''),(334554,42635,'_blocks_12_split_5050_video','field_6239f3160848a'),(334555,42635,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(334556,42635,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(334557,42635,'blocks_12_split_5050_content_heading',''),(334558,42635,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(334559,42635,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(334560,42635,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(334561,42635,'blocks_12_split_5050_content_actions',''),(334562,42635,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(334563,42635,'blocks_12_split_5050_content',''),(334564,42635,'_blocks_12_split_5050_content','field_61767afceb8ba'),(334613,42635,'blocks_17_acfe_flexible_toggle',''),(334614,42635,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334615,42635,'blocks_17_acfe_flexible_layout_title','Experienced Training Providers'),(334616,42635,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334617,42635,'blocks_17_options_theme','#ffffff'),(334618,42635,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(334619,42635,'blocks_17_options_reverse','1'),(334620,42635,'_blocks_17_options_reverse','field_61768049bb8ac'),(334621,42635,'blocks_17_options',''),(334622,42635,'_blocks_17_options','field_617682517c334'),(334623,42635,'blocks_17_split_5050_image','41330'),(334624,42635,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(334625,42635,'blocks_17_split_5050_video',''),(334626,42635,'_blocks_17_split_5050_video','field_6239f3160848a'),(334627,42635,'blocks_17_split_5050_content_title','Experienced Training Providers'),(334628,42635,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(334629,42635,'blocks_17_split_5050_content_heading',''),(334630,42635,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(334631,42635,'blocks_17_split_5050_content_text','Tutors with extensive experience in biomechanics bring real-world insights to the classroom, bridging the gap between theory and practice. Look for instructors with backgrounds in academia, professional sports, rehabilitation, or biomechanics research, as their expertise can enhance the learning experience.'),(334632,42635,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(334633,42635,'blocks_17_split_5050_content_actions',''),(334634,42635,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(334635,42635,'blocks_17_split_5050_content',''),(334636,42635,'_blocks_17_split_5050_content','field_61767afceb8ba'),(334669,42660,'hide_hero','0'),(334670,42660,'_hide_hero','field_66a2380fcda39'),(334671,42660,'hero_title',''),(334672,42660,'_hero_title','field_617571fe285e8'),(334673,42660,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(334674,42660,'_hero_text','field_6175723c285e9'),(334675,42660,'hero_actions',''),(334676,42660,'_hero_actions','field_61757270285ea'),(334677,42660,'hero_style','default'),(334678,42660,'_hero_style','field_62051d9dc5324'),(334679,42660,'hero_image_pos_x','right'),(334680,42660,'_hero_image_pos_x','field_62ec3d05390bb'),(334681,42660,'hero_image_pos_y','top'),(334682,42660,'_hero_image_pos_y','field_62ec3d05390bc'),(334683,42660,'hero_image_pos',''),(334684,42660,'_hero_image_pos','field_62ec3d05390ba'),(334685,42660,'fft_hide_from_listings','0'),(334686,42660,'_fft_hide_from_listings','field_61f1320446ab2'),(334687,42660,'post_format','402'),(334688,42660,'_post_format','field_61756bfb51898'),(334689,42660,'post_author',''),(334690,42660,'_post_author','field_62ec389d22113'),(334691,42660,'post_reviewer',''),(334692,42660,'_post_reviewer','field_627140a2a9800'),(334693,42660,'post_table_of_contents','0'),(334694,42660,'_post_table_of_contents','field_65c503bc846a6'),(334695,42660,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(334696,42660,'_blocks','field_6176696113096'),(334697,42660,'_thumbnail_id','40618'),(334698,42660,'__thumbnail_id','field_617570855ddaf'),(334699,42660,'blocks_0_acfe_flexible_toggle',''),(334700,42660,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(334701,42660,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(334702,42660,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(334703,42660,'blocks_0_options_theme','#ffffff'),(334704,42660,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(334705,42660,'blocks_0_options',''),(334706,42660,'_blocks_0_options','field_6177b758246ae'),(334707,42660,'blocks_0_link_stack_content_title',''),(334708,42660,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(334709,42660,'blocks_0_link_stack_content_heading','Introduction'),(334710,42660,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(334711,42660,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(334712,42660,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(334713,42660,'blocks_0_link_stack_content_actions_0_button',''),(334714,42660,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(334715,42660,'blocks_0_link_stack_content_actions','1'),(334716,42660,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(334717,42660,'blocks_0_link_stack_content',''),(334718,42660,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(334719,42660,'blocks_0_link_stack_0_label','1.'),(334720,42660,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(334721,42660,'blocks_0_link_stack_0_title','Overview'),(334722,42660,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(334723,42660,'blocks_0_link_stack_0_url','#overview'),(334724,42660,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(334725,42660,'blocks_0_link_stack_1_label','2.'),(334726,42660,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(334727,42660,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(334728,42660,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(334729,42660,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(334730,42660,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(334731,42660,'blocks_0_link_stack_2_label','3.'),(334732,42660,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(334733,42660,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(334734,42660,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(334735,42660,'blocks_0_link_stack_2_url','#who-should-study-msk'),(334736,42660,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(334737,42660,'blocks_0_link_stack_3_label','4.'),(334738,42660,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(334739,42660,'blocks_0_link_stack_3_title','Common MSK Conditions'),(334740,42660,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(334741,42660,'blocks_0_link_stack_3_url','#common-msk-conditions'),(334742,42660,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(334743,42660,'blocks_0_link_stack_4_label','5.'),(334744,42660,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(334745,42660,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(334746,42660,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(334747,42660,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(334748,42660,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(334749,42660,'blocks_0_link_stack_5_label','6.'),(334750,42660,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(334751,42660,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(334752,42660,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(334753,42660,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(334754,42660,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(334755,42660,'blocks_0_link_stack','6'),(334756,42660,'_blocks_0_link_stack','field_6177b7f600cff'),(334757,42660,'blocks_1_acfe_flexible_toggle',''),(334758,42660,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334759,42660,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(334760,42660,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334761,42660,'blocks_1_options_theme','#ffffff'),(334762,42660,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(334763,42660,'blocks_1_options_reverse','0'),(334764,42660,'_blocks_1_options_reverse','field_61768049bb8ac'),(334765,42660,'blocks_1_options',''),(334766,42660,'_blocks_1_options','field_617682517c334'),(334767,42660,'blocks_1_split_5050_image','40615'),(334768,42660,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(334769,42660,'blocks_1_split_5050_video',''),(334770,42660,'_blocks_1_split_5050_video','field_6239f3160848a'),(334771,42660,'blocks_1_split_5050_content_title',''),(334772,42660,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(334773,42660,'blocks_1_split_5050_content_heading','Overview'),(334774,42660,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(334775,42660,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(334776,42660,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(334777,42660,'blocks_1_split_5050_content_actions',''),(334778,42660,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(334779,42660,'blocks_1_split_5050_content',''),(334780,42660,'_blocks_1_split_5050_content','field_61767afceb8ba'),(334781,42660,'blocks_3_acfe_flexible_toggle',''),(334782,42660,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334783,42660,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(334784,42660,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334785,42660,'blocks_3_options_theme','#ffffff'),(334786,42660,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(334787,42660,'blocks_3_options_reverse','0'),(334788,42660,'_blocks_3_options_reverse','field_61768049bb8ac'),(334789,42660,'blocks_3_options',''),(334790,42660,'_blocks_3_options','field_617682517c334'),(334791,42660,'blocks_3_split_5050_image','41542'),(334792,42660,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(334793,42660,'blocks_3_split_5050_video',''),(334794,42660,'_blocks_3_split_5050_video','field_6239f3160848a'),(334795,42660,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(334796,42660,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(334797,42660,'blocks_3_split_5050_content_heading',''),(334798,42660,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(334799,42660,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(334800,42660,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(334801,42660,'blocks_3_split_5050_content_actions',''),(334802,42660,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(334803,42660,'blocks_3_split_5050_content',''),(334804,42660,'_blocks_3_split_5050_content','field_61767afceb8ba'),(334805,42660,'blocks_13_acfe_flexible_toggle',''),(334806,42660,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334807,42660,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(334808,42660,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334809,42660,'blocks_13_options_theme','#ffffff'),(334810,42660,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(334811,42660,'blocks_13_options_reverse','1'),(334812,42660,'_blocks_13_options_reverse','field_61768049bb8ac'),(334813,42660,'blocks_13_options',''),(334814,42660,'_blocks_13_options','field_617682517c334'),(334815,42660,'blocks_13_split_5050_image','18856'),(334816,42660,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(334817,42660,'blocks_13_split_5050_video',''),(334818,42660,'_blocks_13_split_5050_video','field_6239f3160848a'),(334819,42660,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(334820,42660,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(334821,42660,'blocks_13_split_5050_content_heading',''),(334822,42660,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(334823,42660,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(334824,42660,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(334825,42660,'blocks_13_split_5050_content_actions',''),(334826,42660,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(334827,42660,'blocks_13_split_5050_content',''),(334828,42660,'_blocks_13_split_5050_content','field_61767afceb8ba'),(334829,42660,'blocks_19_acfe_flexible_toggle',''),(334830,42660,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(334831,42660,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(334832,42660,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(334833,42660,'blocks_19_options_theme','#ffffff'),(334834,42660,'_blocks_19_options_theme','field_6176830e2ad17'),(334835,42660,'blocks_19_options',''),(334836,42660,'_blocks_19_options','field_6176830e2ad16'),(334837,42660,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(334838,42660,'_blocks_19_text_block_heading','field_617669d413097'),(334839,42660,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(334840,42660,'_blocks_19_text_block_content','field_617669ec13098'),(334841,42660,'blocks_6_acfe_flexible_toggle',''),(334842,42660,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334843,42660,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(334844,42660,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334845,42660,'blocks_6_options_theme','#ffffff'),(334846,42660,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(334847,42660,'blocks_6_options_reverse','0'),(334848,42660,'_blocks_6_options_reverse','field_61768049bb8ac'),(334849,42660,'blocks_6_options',''),(334850,42660,'_blocks_6_options','field_617682517c334'),(334851,42660,'blocks_6_split_5050_image','41502'),(334852,42660,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(334853,42660,'blocks_6_split_5050_video',''),(334854,42660,'_blocks_6_split_5050_video','field_6239f3160848a'),(334855,42660,'blocks_6_split_5050_content_title','Research & Academia'),(334856,42660,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(334857,42660,'blocks_6_split_5050_content_heading',''),(334858,42660,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(334859,42660,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(334860,42660,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(334861,42660,'blocks_6_split_5050_content_actions',''),(334862,42660,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(334863,42660,'blocks_6_split_5050_content',''),(334864,42660,'_blocks_6_split_5050_content','field_61767afceb8ba'),(334865,42660,'blocks_5_acfe_flexible_toggle',''),(334866,42660,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334867,42660,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(334868,42660,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334869,42660,'blocks_5_options_theme','#ffffff'),(334870,42660,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(334871,42660,'blocks_5_options_reverse','0'),(334872,42660,'_blocks_5_options_reverse','field_61768049bb8ac'),(334873,42660,'blocks_5_options',''),(334874,42660,'_blocks_5_options','field_617682517c334'),(334875,42660,'blocks_5_split_5050_image','41539'),(334876,42660,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(334877,42660,'blocks_5_split_5050_video',''),(334878,42660,'_blocks_5_split_5050_video','field_6239f3160848a'),(334879,42660,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(334880,42660,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(334881,42660,'blocks_5_split_5050_content_heading',''),(334882,42660,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(334883,42660,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(334884,42660,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(334885,42660,'blocks_5_split_5050_content_actions',''),(334886,42660,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(334887,42660,'blocks_5_split_5050_content',''),(334888,42660,'_blocks_5_split_5050_content','field_61767afceb8ba'),(334889,42660,'blocks_14_acfe_flexible_toggle',''),(334890,42660,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334891,42660,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (4) '),(334892,42660,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334893,42660,'blocks_14_options_theme','#ffffff'),(334894,42660,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(334895,42660,'blocks_14_options_reverse','1'),(334896,42660,'_blocks_14_options_reverse','field_61768049bb8ac'),(334897,42660,'blocks_14_options',''),(334898,42660,'_blocks_14_options','field_617682517c334'),(334899,42660,'blocks_14_split_5050_image','41490'),(334900,42660,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(334901,42660,'blocks_14_split_5050_video',''),(334902,42660,'_blocks_14_split_5050_video','field_6239f3160848a'),(334903,42660,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(334904,42660,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(334905,42660,'blocks_14_split_5050_content_heading',''),(334906,42660,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(334907,42660,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(334908,42660,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(334909,42660,'blocks_14_split_5050_content_actions',''),(334910,42660,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(334911,42660,'blocks_14_split_5050_content',''),(334912,42660,'_blocks_14_split_5050_content','field_61767afceb8ba'),(334913,42660,'blocks_20_acfe_flexible_toggle',''),(334914,42660,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(334915,42660,'blocks_20_acfe_flexible_layout_title','Conclusion'),(334916,42660,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(334917,42660,'blocks_20_options_theme','#b61234'),(334918,42660,'_blocks_20_options_theme','field_6176830e2ad17'),(334919,42660,'blocks_20_options',''),(334920,42660,'_blocks_20_options','field_6176830e2ad16'),(334921,42660,'blocks_20_text_block_heading','Conclusion'),(334922,42660,'_blocks_20_text_block_heading','field_617669d413097'),(334923,42660,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(334924,42660,'_blocks_20_text_block_content','field_617669ec13098'),(334925,42660,'blocks_10_acfe_flexible_toggle',''),(334926,42660,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(334927,42660,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(334928,42660,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(334929,42660,'blocks_10_options_theme','#ffffff'),(334930,42660,'_blocks_10_options_theme','field_6176830e2ad17'),(334931,42660,'blocks_10_options',''),(334932,42660,'_blocks_10_options','field_6176830e2ad16'),(334933,42660,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(334934,42660,'_blocks_10_text_block_heading','field_617669d413097'),(334935,42660,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(334936,42660,'_blocks_10_text_block_content','field_617669ec13098'),(334937,42660,'blocks_2_acfe_flexible_toggle',''),(334938,42660,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(334939,42660,'blocks_2_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(334940,42660,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(334941,42660,'blocks_2_options_theme','#ffffff'),(334942,42660,'_blocks_2_options_theme','field_6176830e2ad17'),(334943,42660,'blocks_2_options',''),(334944,42660,'_blocks_2_options','field_6176830e2ad16'),(334945,42660,'blocks_2_text_block_heading','Define Your Career Goals'),(334946,42660,'_blocks_2_text_block_heading','field_617669d413097'),(334947,42660,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(334948,42660,'_blocks_2_text_block_content','field_617669ec13098'),(334949,42660,'blocks_4_acfe_flexible_toggle',''),(334950,42660,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(334951,42660,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(334952,42660,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(334953,42660,'blocks_4_options_theme','#ffffff'),(334954,42660,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(334955,42660,'blocks_4_options_reverse','0'),(334956,42660,'_blocks_4_options_reverse','field_61768049bb8ac'),(334957,42660,'blocks_4_options',''),(334958,42660,'_blocks_4_options','field_617682517c334'),(334959,42660,'blocks_4_split_5050_image','41505'),(334960,42660,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(334961,42660,'blocks_4_split_5050_video',''),(334962,42660,'_blocks_4_split_5050_video','field_6239f3160848a'),(334963,42660,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(334964,42660,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(334965,42660,'blocks_4_split_5050_content_heading',''),(334966,42660,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(334967,42660,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(334968,42660,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(334969,42660,'blocks_4_split_5050_content_actions',''),(334970,42660,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(334971,42660,'blocks_4_split_5050_content',''),(334972,42660,'_blocks_4_split_5050_content','field_61767afceb8ba'),(334973,42660,'blocks_7_acfe_flexible_toggle',''),(334974,42660,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(334975,42660,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(334976,42660,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(334977,42660,'blocks_7_options_theme','#f5f5f5'),(334978,42660,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(334979,42660,'blocks_7_options_state','0'),(334980,42660,'_blocks_7_options_state','field_6239fcb7508c5'),(334981,42660,'blocks_7_options',''),(334982,42660,'_blocks_7_options','field_6177e2991ac44'),(334983,42660,'blocks_7_content_title',''),(334984,42660,'_blocks_7_content_title','field_64d237e8bb1e2'),(334985,42660,'blocks_7_content_heading','Evaluate Course Content'),(334986,42660,'_blocks_7_content_heading','field_64d237e8bb1e3'),(334987,42660,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(334988,42660,'_blocks_7_content_text','field_64d237e8bb1e4'),(334989,42660,'blocks_7_content_actions',''),(334990,42660,'_blocks_7_content_actions','field_64d237e8bb1e5'),(334991,42660,'blocks_7_content_align','left'),(334992,42660,'_blocks_7_content_align','field_64d2443e6b6aa'),(334993,42660,'blocks_7_content',''),(334994,42660,'_blocks_7_content','field_64d237e8bb1e1'),(334995,42660,'blocks_7_accordion_content','custom'),(334996,42660,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(334997,42660,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(334998,42660,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(334999,42660,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(335000,42660,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(335001,42660,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(335002,42660,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(335003,42660,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(335004,42660,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(335005,42660,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(335006,42660,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(335007,42660,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(335008,42660,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(335009,42660,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(335010,42660,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(335011,42660,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(335012,42660,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(335013,42660,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(335014,42660,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(335015,42660,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(335016,42660,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(335017,42660,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(335018,42660,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(335019,42660,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(335020,42660,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(335021,42660,'blocks_7_accordion_items','6'),(335022,42660,'_blocks_7_accordion_items','field_6177e2991ac4c'),(335023,42660,'blocks_7_actions',''),(335024,42660,'_blocks_7_actions','field_61a746a817f7a'),(335025,42660,'blocks_8_acfe_flexible_toggle',''),(335026,42660,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(335027,42660,'blocks_8_acfe_flexible_layout_title','Text Block'),(335028,42660,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(335029,42660,'blocks_8_options_theme','#ffffff'),(335030,42660,'_blocks_8_options_theme','field_6176830e2ad17'),(335031,42660,'blocks_8_options',''),(335032,42660,'_blocks_8_options','field_6176830e2ad16'),(335033,42660,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(335034,42660,'_blocks_8_text_block_heading','field_617669d413097'),(335035,42660,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(335036,42660,'_blocks_8_text_block_content','field_617669ec13098'),(335037,42660,'blocks_9_acfe_flexible_toggle',''),(335038,42660,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(335039,42660,'blocks_9_acfe_flexible_layout_title','Icons'),(335040,42660,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(335041,42660,'blocks_9_options_theme','#ffffff'),(335042,42660,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(335043,42660,'blocks_9_options_format','row'),(335044,42660,'_blocks_9_options_format','field_64bfde9a90690'),(335045,42660,'blocks_9_options',''),(335046,42660,'_blocks_9_options','field_64bfdd9b90684'),(335047,42660,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(335048,42660,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(335049,42660,'blocks_9_icon_row_items_0_label','Industry Recognition'),(335050,42660,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(335051,42660,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(335052,42660,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(335053,42660,'blocks_9_icon_row_items_1_icon','qualification.svg'),(335054,42660,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(335055,42660,'blocks_9_icon_row_items_1_label','University Accreditation'),(335056,42660,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(335057,42660,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(335058,42660,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(335059,42660,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(335060,42660,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(335061,42660,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(335062,42660,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(335063,42660,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(335064,42660,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(335065,42660,'blocks_9_icon_row_items','3'),(335066,42660,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(335067,42660,'blocks_11_acfe_flexible_toggle',''),(335068,42660,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335069,42660,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(335070,42660,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335071,42660,'blocks_11_options_theme','#ffffff'),(335072,42660,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(335073,42660,'blocks_11_options_reverse','1'),(335074,42660,'_blocks_11_options_reverse','field_61768049bb8ac'),(335075,42660,'blocks_11_options',''),(335076,42660,'_blocks_11_options','field_617682517c334'),(335077,42660,'blocks_11_split_5050_image','41498'),(335078,42660,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(335079,42660,'blocks_11_split_5050_video',''),(335080,42660,'_blocks_11_split_5050_video','field_6239f3160848a'),(335081,42660,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(335082,42660,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(335083,42660,'blocks_11_split_5050_content_heading',''),(335084,42660,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(335085,42660,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(335086,42660,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(335087,42660,'blocks_11_split_5050_content_actions',''),(335088,42660,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(335089,42660,'blocks_11_split_5050_content',''),(335090,42660,'_blocks_11_split_5050_content','field_61767afceb8ba'),(335091,42660,'blocks_12_acfe_flexible_toggle',''),(335092,42660,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335093,42660,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(335094,42660,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335095,42660,'blocks_12_options_theme','#ffffff'),(335096,42660,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(335097,42660,'blocks_12_options_reverse','1'),(335098,42660,'_blocks_12_options_reverse','field_61768049bb8ac'),(335099,42660,'blocks_12_options',''),(335100,42660,'_blocks_12_options','field_617682517c334'),(335101,42660,'blocks_12_split_5050_image','40387'),(335102,42660,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(335103,42660,'blocks_12_split_5050_video',''),(335104,42660,'_blocks_12_split_5050_video','field_6239f3160848a'),(335105,42660,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(335106,42660,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(335107,42660,'blocks_12_split_5050_content_heading',''),(335108,42660,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(335109,42660,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(335110,42660,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(335111,42660,'blocks_12_split_5050_content_actions',''),(335112,42660,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(335113,42660,'blocks_12_split_5050_content',''),(335114,42660,'_blocks_12_split_5050_content','field_61767afceb8ba'),(335115,42660,'blocks_15_acfe_flexible_toggle',''),(335116,42660,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(335117,42660,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(335118,42660,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(335119,42660,'blocks_15_options_theme','#b61234'),(335120,42660,'_blocks_15_options_theme','field_6176830e2ad17'),(335121,42660,'blocks_15_options',''),(335122,42660,'_blocks_15_options','field_6176830e2ad16'),(335123,42660,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(335124,42660,'_blocks_15_text_block_heading','field_617669d413097'),(335125,42660,'blocks_15_text_block_content',''),(335126,42660,'_blocks_15_text_block_content','field_617669ec13098'),(335127,42660,'blocks_16_acfe_flexible_toggle',''),(335128,42660,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(335129,42660,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(335130,42660,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(335131,42660,'blocks_16_options_theme','#b61234'),(335132,42660,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(335133,42660,'blocks_16_options_format','row'),(335134,42660,'_blocks_16_options_format','field_64bfde9a90690'),(335135,42660,'blocks_16_options',''),(335136,42660,'_blocks_16_options','field_64bfdd9b90684'),(335137,42660,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(335138,42660,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(335139,42660,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(335140,42660,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(335141,42660,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(335142,42660,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(335143,42660,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(335144,42660,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(335145,42660,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(335146,42660,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(335147,42660,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(335148,42660,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(335149,42660,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(335150,42660,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(335151,42660,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(335152,42660,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(335153,42660,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(335154,42660,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(335155,42660,'blocks_16_icon_row_items_3_icon','recognised.svg'),(335156,42660,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(335157,42660,'blocks_16_icon_row_items_3_label','Optimised Performance'),(335158,42660,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(335159,42660,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(335160,42660,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(335161,42660,'blocks_16_icon_row_items','4'),(335162,42660,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(335163,42660,'blocks_17_acfe_flexible_toggle',''),(335164,42660,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335165,42660,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(335166,42660,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335167,42660,'blocks_17_options_theme','#ffffff'),(335168,42660,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(335169,42660,'blocks_17_options_reverse','0'),(335170,42660,'_blocks_17_options_reverse','field_61768049bb8ac'),(335171,42660,'blocks_17_options',''),(335172,42660,'_blocks_17_options','field_617682517c334'),(335173,42660,'blocks_17_split_5050_image','41501'),(335174,42660,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(335175,42660,'blocks_17_split_5050_video',''),(335176,42660,'_blocks_17_split_5050_video','field_6239f3160848a'),(335177,42660,'blocks_17_split_5050_content_title',''),(335178,42660,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(335179,42660,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(335180,42660,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(335181,42660,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(335182,42660,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(335183,42660,'blocks_17_split_5050_content_actions',''),(335184,42660,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(335185,42660,'blocks_17_split_5050_content',''),(335186,42660,'_blocks_17_split_5050_content','field_61767afceb8ba'),(335187,42660,'blocks_18_acfe_flexible_toggle',''),(335188,42660,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(335189,42660,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(335190,42660,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(335191,42660,'blocks_18_options_theme','#ffffff'),(335192,42660,'_blocks_18_options_theme','field_6176830e2ad17'),(335193,42660,'blocks_18_options',''),(335194,42660,'_blocks_18_options','field_6176830e2ad16'),(335195,42660,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(335196,42660,'_blocks_18_text_block_heading','field_617669d413097'),(335197,42660,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(335198,42660,'_blocks_18_text_block_content','field_617669ec13098'),(335199,42660,'blocks_21_acfe_flexible_toggle',''),(335200,42660,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(335201,42660,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(335202,42660,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(335203,42660,'blocks_21_options_alignment','center'),(335204,42660,'_blocks_21_options_alignment','field_61769449f5490'),(335205,42660,'blocks_21_options',''),(335206,42660,'_blocks_21_options','field_617693e1428f0'),(335207,42660,'blocks_21_promo_panel_image','41307'),(335208,42660,'_blocks_21_promo_panel_image','field_617693e1428f3'),(335209,42660,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(335210,42660,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(335211,42660,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(335212,42660,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(335213,42660,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(335214,42660,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(335215,42660,'blocks_21_promo_panel_content_actions','1'),(335216,42660,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(335217,42660,'blocks_21_promo_panel_content',''),(335218,42660,'_blocks_21_promo_panel_content','field_617693e1428f4'),(335219,42661,'hide_hero','0'),(335220,42661,'_hide_hero','field_66a2380fcda39'),(335221,42661,'hero_title',''),(335222,42661,'_hero_title','field_617571fe285e8'),(335223,42661,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(335224,42661,'_hero_text','field_6175723c285e9'),(335225,42661,'hero_actions',''),(335226,42661,'_hero_actions','field_61757270285ea'),(335227,42661,'hero_style','default'),(335228,42661,'_hero_style','field_62051d9dc5324'),(335229,42661,'hero_image_pos_x','right'),(335230,42661,'_hero_image_pos_x','field_62ec3d05390bb'),(335231,42661,'hero_image_pos_y','top'),(335232,42661,'_hero_image_pos_y','field_62ec3d05390bc'),(335233,42661,'hero_image_pos',''),(335234,42661,'_hero_image_pos','field_62ec3d05390ba'),(335235,42661,'fft_hide_from_listings','0'),(335236,42661,'_fft_hide_from_listings','field_61f1320446ab2'),(335237,42661,'post_format','402'),(335238,42661,'_post_format','field_61756bfb51898'),(335239,42661,'post_author',''),(335240,42661,'_post_author','field_62ec389d22113'),(335241,42661,'post_reviewer',''),(335242,42661,'_post_reviewer','field_627140a2a9800'),(335243,42661,'post_table_of_contents','0'),(335244,42661,'_post_table_of_contents','field_65c503bc846a6'),(335245,42661,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(335246,42661,'_blocks','field_6176696113096'),(335247,42661,'_thumbnail_id','40618'),(335248,42661,'__thumbnail_id','field_617570855ddaf'),(335249,42661,'blocks_0_acfe_flexible_toggle',''),(335250,42661,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(335251,42661,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(335252,42661,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(335253,42661,'blocks_0_options_theme','#ffffff'),(335254,42661,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(335255,42661,'blocks_0_options',''),(335256,42661,'_blocks_0_options','field_6177b758246ae'),(335257,42661,'blocks_0_link_stack_content_title',''),(335258,42661,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(335259,42661,'blocks_0_link_stack_content_heading','Introduction'),(335260,42661,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(335261,42661,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(335262,42661,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(335263,42661,'blocks_0_link_stack_content_actions_0_button',''),(335264,42661,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(335265,42661,'blocks_0_link_stack_content_actions','1'),(335266,42661,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(335267,42661,'blocks_0_link_stack_content',''),(335268,42661,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(335269,42661,'blocks_0_link_stack_0_label','1.'),(335270,42661,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(335271,42661,'blocks_0_link_stack_0_title','Overview'),(335272,42661,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(335273,42661,'blocks_0_link_stack_0_url','#overview'),(335274,42661,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(335275,42661,'blocks_0_link_stack_1_label','2.'),(335276,42661,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(335277,42661,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(335278,42661,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(335279,42661,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(335280,42661,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(335281,42661,'blocks_0_link_stack_2_label','3.'),(335282,42661,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(335283,42661,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(335284,42661,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(335285,42661,'blocks_0_link_stack_2_url','#who-should-study-msk'),(335286,42661,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(335287,42661,'blocks_0_link_stack_3_label','4.'),(335288,42661,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(335289,42661,'blocks_0_link_stack_3_title','Common MSK Conditions'),(335290,42661,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(335291,42661,'blocks_0_link_stack_3_url','#common-msk-conditions'),(335292,42661,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(335293,42661,'blocks_0_link_stack_4_label','5.'),(335294,42661,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(335295,42661,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(335296,42661,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(335297,42661,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(335298,42661,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(335299,42661,'blocks_0_link_stack_5_label','6.'),(335300,42661,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(335301,42661,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(335302,42661,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(335303,42661,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(335304,42661,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(335305,42661,'blocks_0_link_stack','6'),(335306,42661,'_blocks_0_link_stack','field_6177b7f600cff'),(335307,42661,'blocks_1_acfe_flexible_toggle',''),(335308,42661,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335309,42661,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(335310,42661,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335311,42661,'blocks_1_options_theme','#ffffff'),(335312,42661,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(335313,42661,'blocks_1_options_reverse','0'),(335314,42661,'_blocks_1_options_reverse','field_61768049bb8ac'),(335315,42661,'blocks_1_options',''),(335316,42661,'_blocks_1_options','field_617682517c334'),(335317,42661,'blocks_1_split_5050_image','40615'),(335318,42661,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(335319,42661,'blocks_1_split_5050_video',''),(335320,42661,'_blocks_1_split_5050_video','field_6239f3160848a'),(335321,42661,'blocks_1_split_5050_content_title',''),(335322,42661,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(335323,42661,'blocks_1_split_5050_content_heading','Overview'),(335324,42661,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(335325,42661,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(335326,42661,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(335327,42661,'blocks_1_split_5050_content_actions',''),(335328,42661,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(335329,42661,'blocks_1_split_5050_content',''),(335330,42661,'_blocks_1_split_5050_content','field_61767afceb8ba'),(335331,42661,'blocks_3_acfe_flexible_toggle',''),(335332,42661,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335333,42661,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(335334,42661,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335335,42661,'blocks_3_options_theme','#f5f5f5'),(335336,42661,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(335337,42661,'blocks_3_options_reverse','0'),(335338,42661,'_blocks_3_options_reverse','field_61768049bb8ac'),(335339,42661,'blocks_3_options',''),(335340,42661,'_blocks_3_options','field_617682517c334'),(335341,42661,'blocks_3_split_5050_image','41542'),(335342,42661,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(335343,42661,'blocks_3_split_5050_video',''),(335344,42661,'_blocks_3_split_5050_video','field_6239f3160848a'),(335345,42661,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(335346,42661,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(335347,42661,'blocks_3_split_5050_content_heading',''),(335348,42661,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(335349,42661,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(335350,42661,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(335351,42661,'blocks_3_split_5050_content_actions',''),(335352,42661,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(335353,42661,'blocks_3_split_5050_content',''),(335354,42661,'_blocks_3_split_5050_content','field_61767afceb8ba'),(335355,42661,'blocks_13_acfe_flexible_toggle',''),(335356,42661,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335357,42661,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(335358,42661,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335359,42661,'blocks_13_options_theme','#ffffff'),(335360,42661,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(335361,42661,'blocks_13_options_reverse','1'),(335362,42661,'_blocks_13_options_reverse','field_61768049bb8ac'),(335363,42661,'blocks_13_options',''),(335364,42661,'_blocks_13_options','field_617682517c334'),(335365,42661,'blocks_13_split_5050_image','18856'),(335366,42661,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(335367,42661,'blocks_13_split_5050_video',''),(335368,42661,'_blocks_13_split_5050_video','field_6239f3160848a'),(335369,42661,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(335370,42661,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(335371,42661,'blocks_13_split_5050_content_heading',''),(335372,42661,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(335373,42661,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(335374,42661,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(335375,42661,'blocks_13_split_5050_content_actions',''),(335376,42661,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(335377,42661,'blocks_13_split_5050_content',''),(335378,42661,'_blocks_13_split_5050_content','field_61767afceb8ba'),(335379,42661,'blocks_19_acfe_flexible_toggle',''),(335380,42661,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(335381,42661,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(335382,42661,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(335383,42661,'blocks_19_options_theme','#ffffff'),(335384,42661,'_blocks_19_options_theme','field_6176830e2ad17'),(335385,42661,'blocks_19_options',''),(335386,42661,'_blocks_19_options','field_6176830e2ad16'),(335387,42661,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(335388,42661,'_blocks_19_text_block_heading','field_617669d413097'),(335389,42661,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(335390,42661,'_blocks_19_text_block_content','field_617669ec13098'),(335391,42661,'blocks_6_acfe_flexible_toggle',''),(335392,42661,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335393,42661,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(335394,42661,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335395,42661,'blocks_6_options_theme','#f5f5f5'),(335396,42661,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(335397,42661,'blocks_6_options_reverse','0'),(335398,42661,'_blocks_6_options_reverse','field_61768049bb8ac'),(335399,42661,'blocks_6_options',''),(335400,42661,'_blocks_6_options','field_617682517c334'),(335401,42661,'blocks_6_split_5050_image','41502'),(335402,42661,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(335403,42661,'blocks_6_split_5050_video',''),(335404,42661,'_blocks_6_split_5050_video','field_6239f3160848a'),(335405,42661,'blocks_6_split_5050_content_title','Research & Academia'),(335406,42661,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(335407,42661,'blocks_6_split_5050_content_heading',''),(335408,42661,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(335409,42661,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(335410,42661,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(335411,42661,'blocks_6_split_5050_content_actions',''),(335412,42661,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(335413,42661,'blocks_6_split_5050_content',''),(335414,42661,'_blocks_6_split_5050_content','field_61767afceb8ba'),(335415,42661,'blocks_5_acfe_flexible_toggle',''),(335416,42661,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335417,42661,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(335418,42661,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335419,42661,'blocks_5_options_theme','#ffffff'),(335420,42661,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(335421,42661,'blocks_5_options_reverse','0'),(335422,42661,'_blocks_5_options_reverse','field_61768049bb8ac'),(335423,42661,'blocks_5_options',''),(335424,42661,'_blocks_5_options','field_617682517c334'),(335425,42661,'blocks_5_split_5050_image','41539'),(335426,42661,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(335427,42661,'blocks_5_split_5050_video',''),(335428,42661,'_blocks_5_split_5050_video','field_6239f3160848a'),(335429,42661,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(335430,42661,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(335431,42661,'blocks_5_split_5050_content_heading',''),(335432,42661,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(335433,42661,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(335434,42661,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(335435,42661,'blocks_5_split_5050_content_actions',''),(335436,42661,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(335437,42661,'blocks_5_split_5050_content',''),(335438,42661,'_blocks_5_split_5050_content','field_61767afceb8ba'),(335439,42661,'blocks_14_acfe_flexible_toggle',''),(335440,42661,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335441,42661,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (4) '),(335442,42661,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335443,42661,'blocks_14_options_theme','#ffffff'),(335444,42661,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(335445,42661,'blocks_14_options_reverse','1'),(335446,42661,'_blocks_14_options_reverse','field_61768049bb8ac'),(335447,42661,'blocks_14_options',''),(335448,42661,'_blocks_14_options','field_617682517c334'),(335449,42661,'blocks_14_split_5050_image','41490'),(335450,42661,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(335451,42661,'blocks_14_split_5050_video',''),(335452,42661,'_blocks_14_split_5050_video','field_6239f3160848a'),(335453,42661,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(335454,42661,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(335455,42661,'blocks_14_split_5050_content_heading',''),(335456,42661,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(335457,42661,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(335458,42661,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(335459,42661,'blocks_14_split_5050_content_actions',''),(335460,42661,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(335461,42661,'blocks_14_split_5050_content',''),(335462,42661,'_blocks_14_split_5050_content','field_61767afceb8ba'),(335463,42661,'blocks_20_acfe_flexible_toggle',''),(335464,42661,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(335465,42661,'blocks_20_acfe_flexible_layout_title','Conclusion'),(335466,42661,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(335467,42661,'blocks_20_options_theme','#b61234'),(335468,42661,'_blocks_20_options_theme','field_6176830e2ad17'),(335469,42661,'blocks_20_options',''),(335470,42661,'_blocks_20_options','field_6176830e2ad16'),(335471,42661,'blocks_20_text_block_heading','Conclusion'),(335472,42661,'_blocks_20_text_block_heading','field_617669d413097'),(335473,42661,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(335474,42661,'_blocks_20_text_block_content','field_617669ec13098'),(335475,42661,'blocks_10_acfe_flexible_toggle',''),(335476,42661,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(335477,42661,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(335478,42661,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(335479,42661,'blocks_10_options_theme','#ffffff'),(335480,42661,'_blocks_10_options_theme','field_6176830e2ad17'),(335481,42661,'blocks_10_options',''),(335482,42661,'_blocks_10_options','field_6176830e2ad16'),(335483,42661,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(335484,42661,'_blocks_10_text_block_heading','field_617669d413097'),(335485,42661,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(335486,42661,'_blocks_10_text_block_content','field_617669ec13098'),(335487,42661,'blocks_2_acfe_flexible_toggle',''),(335488,42661,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(335489,42661,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(335490,42661,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(335491,42661,'blocks_2_options_theme','#f5f5f5'),(335492,42661,'_blocks_2_options_theme','field_6176830e2ad17'),(335493,42661,'blocks_2_options',''),(335494,42661,'_blocks_2_options','field_6176830e2ad16'),(335495,42661,'blocks_2_text_block_heading','Define Your Career Goals'),(335496,42661,'_blocks_2_text_block_heading','field_617669d413097'),(335497,42661,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(335498,42661,'_blocks_2_text_block_content','field_617669ec13098'),(335499,42661,'blocks_4_acfe_flexible_toggle',''),(335500,42661,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335501,42661,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(335502,42661,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335503,42661,'blocks_4_options_theme','#f5f5f5'),(335504,42661,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(335505,42661,'blocks_4_options_reverse','0'),(335506,42661,'_blocks_4_options_reverse','field_61768049bb8ac'),(335507,42661,'blocks_4_options',''),(335508,42661,'_blocks_4_options','field_617682517c334'),(335509,42661,'blocks_4_split_5050_image','41505'),(335510,42661,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(335511,42661,'blocks_4_split_5050_video',''),(335512,42661,'_blocks_4_split_5050_video','field_6239f3160848a'),(335513,42661,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(335514,42661,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(335515,42661,'blocks_4_split_5050_content_heading',''),(335516,42661,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(335517,42661,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(335518,42661,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(335519,42661,'blocks_4_split_5050_content_actions',''),(335520,42661,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(335521,42661,'blocks_4_split_5050_content',''),(335522,42661,'_blocks_4_split_5050_content','field_61767afceb8ba'),(335523,42661,'blocks_7_acfe_flexible_toggle',''),(335524,42661,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(335525,42661,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(335526,42661,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(335527,42661,'blocks_7_options_theme','#ffffff'),(335528,42661,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(335529,42661,'blocks_7_options_state','1'),(335530,42661,'_blocks_7_options_state','field_6239fcb7508c5'),(335531,42661,'blocks_7_options',''),(335532,42661,'_blocks_7_options','field_6177e2991ac44'),(335533,42661,'blocks_7_content_title',''),(335534,42661,'_blocks_7_content_title','field_64d237e8bb1e2'),(335535,42661,'blocks_7_content_heading','Evaluate Course Content'),(335536,42661,'_blocks_7_content_heading','field_64d237e8bb1e3'),(335537,42661,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(335538,42661,'_blocks_7_content_text','field_64d237e8bb1e4'),(335539,42661,'blocks_7_content_actions',''),(335540,42661,'_blocks_7_content_actions','field_64d237e8bb1e5'),(335541,42661,'blocks_7_content_align','left'),(335542,42661,'_blocks_7_content_align','field_64d2443e6b6aa'),(335543,42661,'blocks_7_content',''),(335544,42661,'_blocks_7_content','field_64d237e8bb1e1'),(335545,42661,'blocks_7_accordion_content','custom'),(335546,42661,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(335547,42661,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(335548,42661,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(335549,42661,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(335550,42661,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(335551,42661,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(335552,42661,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(335553,42661,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(335554,42661,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(335555,42661,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(335556,42661,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(335557,42661,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(335558,42661,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(335559,42661,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(335560,42661,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(335561,42661,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(335562,42661,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(335563,42661,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(335564,42661,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(335565,42661,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(335566,42661,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(335567,42661,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(335568,42661,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(335569,42661,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(335570,42661,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(335571,42661,'blocks_7_accordion_items','6'),(335572,42661,'_blocks_7_accordion_items','field_6177e2991ac4c'),(335573,42661,'blocks_7_actions',''),(335574,42661,'_blocks_7_actions','field_61a746a817f7a'),(335575,42661,'blocks_8_acfe_flexible_toggle',''),(335576,42661,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(335577,42661,'blocks_8_acfe_flexible_layout_title','Text Block'),(335578,42661,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(335579,42661,'blocks_8_options_theme','#ffffff'),(335580,42661,'_blocks_8_options_theme','field_6176830e2ad17'),(335581,42661,'blocks_8_options',''),(335582,42661,'_blocks_8_options','field_6176830e2ad16'),(335583,42661,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(335584,42661,'_blocks_8_text_block_heading','field_617669d413097'),(335585,42661,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(335586,42661,'_blocks_8_text_block_content','field_617669ec13098'),(335587,42661,'blocks_9_acfe_flexible_toggle',''),(335588,42661,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(335589,42661,'blocks_9_acfe_flexible_layout_title','Icons'),(335590,42661,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(335591,42661,'blocks_9_options_theme','#ffffff'),(335592,42661,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(335593,42661,'blocks_9_options_format','row'),(335594,42661,'_blocks_9_options_format','field_64bfde9a90690'),(335595,42661,'blocks_9_options',''),(335596,42661,'_blocks_9_options','field_64bfdd9b90684'),(335597,42661,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(335598,42661,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(335599,42661,'blocks_9_icon_row_items_0_label','Industry Recognition'),(335600,42661,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(335601,42661,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(335602,42661,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(335603,42661,'blocks_9_icon_row_items_1_icon','qualification.svg'),(335604,42661,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(335605,42661,'blocks_9_icon_row_items_1_label','University Accreditation'),(335606,42661,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(335607,42661,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(335608,42661,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(335609,42661,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(335610,42661,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(335611,42661,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(335612,42661,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(335613,42661,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(335614,42661,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(335615,42661,'blocks_9_icon_row_items','3'),(335616,42661,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(335617,42661,'blocks_11_acfe_flexible_toggle',''),(335618,42661,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335619,42661,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(335620,42661,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335621,42661,'blocks_11_options_theme','#ffffff'),(335622,42661,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(335623,42661,'blocks_11_options_reverse','1'),(335624,42661,'_blocks_11_options_reverse','field_61768049bb8ac'),(335625,42661,'blocks_11_options',''),(335626,42661,'_blocks_11_options','field_617682517c334'),(335627,42661,'blocks_11_split_5050_image','41498'),(335628,42661,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(335629,42661,'blocks_11_split_5050_video',''),(335630,42661,'_blocks_11_split_5050_video','field_6239f3160848a'),(335631,42661,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(335632,42661,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(335633,42661,'blocks_11_split_5050_content_heading',''),(335634,42661,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(335635,42661,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(335636,42661,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(335637,42661,'blocks_11_split_5050_content_actions',''),(335638,42661,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(335639,42661,'blocks_11_split_5050_content',''),(335640,42661,'_blocks_11_split_5050_content','field_61767afceb8ba'),(335641,42661,'blocks_12_acfe_flexible_toggle',''),(335642,42661,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335643,42661,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(335644,42661,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335645,42661,'blocks_12_options_theme','#ffffff'),(335646,42661,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(335647,42661,'blocks_12_options_reverse','1'),(335648,42661,'_blocks_12_options_reverse','field_61768049bb8ac'),(335649,42661,'blocks_12_options',''),(335650,42661,'_blocks_12_options','field_617682517c334'),(335651,42661,'blocks_12_split_5050_image','40387'),(335652,42661,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(335653,42661,'blocks_12_split_5050_video',''),(335654,42661,'_blocks_12_split_5050_video','field_6239f3160848a'),(335655,42661,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(335656,42661,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(335657,42661,'blocks_12_split_5050_content_heading',''),(335658,42661,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(335659,42661,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(335660,42661,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(335661,42661,'blocks_12_split_5050_content_actions',''),(335662,42661,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(335663,42661,'blocks_12_split_5050_content',''),(335664,42661,'_blocks_12_split_5050_content','field_61767afceb8ba'),(335665,42661,'blocks_15_acfe_flexible_toggle',''),(335666,42661,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(335667,42661,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(335668,42661,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(335669,42661,'blocks_15_options_theme','#b61234'),(335670,42661,'_blocks_15_options_theme','field_6176830e2ad17'),(335671,42661,'blocks_15_options',''),(335672,42661,'_blocks_15_options','field_6176830e2ad16'),(335673,42661,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(335674,42661,'_blocks_15_text_block_heading','field_617669d413097'),(335675,42661,'blocks_15_text_block_content',''),(335676,42661,'_blocks_15_text_block_content','field_617669ec13098'),(335677,42661,'blocks_16_acfe_flexible_toggle',''),(335678,42661,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(335679,42661,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(335680,42661,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(335681,42661,'blocks_16_options_theme','#b61234'),(335682,42661,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(335683,42661,'blocks_16_options_format','row'),(335684,42661,'_blocks_16_options_format','field_64bfde9a90690'),(335685,42661,'blocks_16_options',''),(335686,42661,'_blocks_16_options','field_64bfdd9b90684'),(335687,42661,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(335688,42661,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(335689,42661,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(335690,42661,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(335691,42661,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(335692,42661,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(335693,42661,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(335694,42661,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(335695,42661,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(335696,42661,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(335697,42661,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(335698,42661,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(335699,42661,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(335700,42661,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(335701,42661,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(335702,42661,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(335703,42661,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(335704,42661,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(335705,42661,'blocks_16_icon_row_items_3_icon','recognised.svg'),(335706,42661,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(335707,42661,'blocks_16_icon_row_items_3_label','Optimised Performance'),(335708,42661,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(335709,42661,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(335710,42661,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(335711,42661,'blocks_16_icon_row_items','4'),(335712,42661,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(335713,42661,'blocks_17_acfe_flexible_toggle',''),(335714,42661,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335715,42661,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(335716,42661,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335717,42661,'blocks_17_options_theme','#ffffff'),(335718,42661,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(335719,42661,'blocks_17_options_reverse','0'),(335720,42661,'_blocks_17_options_reverse','field_61768049bb8ac'),(335721,42661,'blocks_17_options',''),(335722,42661,'_blocks_17_options','field_617682517c334'),(335723,42661,'blocks_17_split_5050_image','41501'),(335724,42661,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(335725,42661,'blocks_17_split_5050_video',''),(335726,42661,'_blocks_17_split_5050_video','field_6239f3160848a'),(335727,42661,'blocks_17_split_5050_content_title',''),(335728,42661,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(335729,42661,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(335730,42661,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(335731,42661,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(335732,42661,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(335733,42661,'blocks_17_split_5050_content_actions',''),(335734,42661,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(335735,42661,'blocks_17_split_5050_content',''),(335736,42661,'_blocks_17_split_5050_content','field_61767afceb8ba'),(335737,42661,'blocks_18_acfe_flexible_toggle',''),(335738,42661,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(335739,42661,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(335740,42661,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(335741,42661,'blocks_18_options_theme','#ffffff'),(335742,42661,'_blocks_18_options_theme','field_6176830e2ad17'),(335743,42661,'blocks_18_options',''),(335744,42661,'_blocks_18_options','field_6176830e2ad16'),(335745,42661,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(335746,42661,'_blocks_18_text_block_heading','field_617669d413097'),(335747,42661,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(335748,42661,'_blocks_18_text_block_content','field_617669ec13098'),(335749,42661,'blocks_21_acfe_flexible_toggle',''),(335750,42661,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(335751,42661,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(335752,42661,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(335753,42661,'blocks_21_options_alignment','center'),(335754,42661,'_blocks_21_options_alignment','field_61769449f5490'),(335755,42661,'blocks_21_options',''),(335756,42661,'_blocks_21_options','field_617693e1428f0'),(335757,42661,'blocks_21_promo_panel_image','41307'),(335758,42661,'_blocks_21_promo_panel_image','field_617693e1428f3'),(335759,42661,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(335760,42661,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(335761,42661,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(335762,42661,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(335763,42661,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(335764,42661,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(335765,42661,'blocks_21_promo_panel_content_actions','1'),(335766,42661,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(335767,42661,'blocks_21_promo_panel_content',''),(335768,42661,'_blocks_21_promo_panel_content','field_617693e1428f4'),(335769,42662,'hide_hero','0'),(335770,42662,'_hide_hero','field_66a2380fcda39'),(335771,42662,'hero_title',''),(335772,42662,'_hero_title','field_617571fe285e8'),(335773,42662,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(335774,42662,'_hero_text','field_6175723c285e9'),(335775,42662,'hero_actions',''),(335776,42662,'_hero_actions','field_61757270285ea'),(335777,42662,'hero_style','default'),(335778,42662,'_hero_style','field_62051d9dc5324'),(335779,42662,'hero_image_pos_x','right'),(335780,42662,'_hero_image_pos_x','field_62ec3d05390bb'),(335781,42662,'hero_image_pos_y','top'),(335782,42662,'_hero_image_pos_y','field_62ec3d05390bc'),(335783,42662,'hero_image_pos',''),(335784,42662,'_hero_image_pos','field_62ec3d05390ba'),(335785,42662,'fft_hide_from_listings','0'),(335786,42662,'_fft_hide_from_listings','field_61f1320446ab2'),(335787,42662,'post_format','402'),(335788,42662,'_post_format','field_61756bfb51898'),(335789,42662,'post_author',''),(335790,42662,'_post_author','field_62ec389d22113'),(335791,42662,'post_reviewer',''),(335792,42662,'_post_reviewer','field_627140a2a9800'),(335793,42662,'post_table_of_contents','0'),(335794,42662,'_post_table_of_contents','field_65c503bc846a6'),(335795,42662,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(335796,42662,'_blocks','field_6176696113096'),(335797,42662,'_thumbnail_id','40618'),(335798,42662,'__thumbnail_id','field_617570855ddaf'),(335799,42662,'blocks_0_acfe_flexible_toggle',''),(335800,42662,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(335801,42662,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(335802,42662,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(335803,42662,'blocks_0_options_theme','#ffffff'),(335804,42662,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(335805,42662,'blocks_0_options',''),(335806,42662,'_blocks_0_options','field_6177b758246ae'),(335807,42662,'blocks_0_link_stack_content_title',''),(335808,42662,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(335809,42662,'blocks_0_link_stack_content_heading','Introduction'),(335810,42662,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(335811,42662,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(335812,42662,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(335813,42662,'blocks_0_link_stack_content_actions_0_button',''),(335814,42662,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(335815,42662,'blocks_0_link_stack_content_actions','1'),(335816,42662,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(335817,42662,'blocks_0_link_stack_content',''),(335818,42662,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(335819,42662,'blocks_0_link_stack_0_label','1.'),(335820,42662,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(335821,42662,'blocks_0_link_stack_0_title','Overview'),(335822,42662,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(335823,42662,'blocks_0_link_stack_0_url','#overview'),(335824,42662,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(335825,42662,'blocks_0_link_stack_1_label','2.'),(335826,42662,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(335827,42662,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(335828,42662,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(335829,42662,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(335830,42662,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(335831,42662,'blocks_0_link_stack_2_label','3.'),(335832,42662,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(335833,42662,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(335834,42662,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(335835,42662,'blocks_0_link_stack_2_url','#who-should-study-msk'),(335836,42662,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(335837,42662,'blocks_0_link_stack_3_label','4.'),(335838,42662,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(335839,42662,'blocks_0_link_stack_3_title','Common MSK Conditions'),(335840,42662,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(335841,42662,'blocks_0_link_stack_3_url','#common-msk-conditions'),(335842,42662,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(335843,42662,'blocks_0_link_stack_4_label','5.'),(335844,42662,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(335845,42662,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(335846,42662,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(335847,42662,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(335848,42662,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(335849,42662,'blocks_0_link_stack_5_label','6.'),(335850,42662,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(335851,42662,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(335852,42662,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(335853,42662,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(335854,42662,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(335855,42662,'blocks_0_link_stack','6'),(335856,42662,'_blocks_0_link_stack','field_6177b7f600cff'),(335857,42662,'blocks_1_acfe_flexible_toggle',''),(335858,42662,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335859,42662,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(335860,42662,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335861,42662,'blocks_1_options_theme','#ffffff'),(335862,42662,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(335863,42662,'blocks_1_options_reverse','0'),(335864,42662,'_blocks_1_options_reverse','field_61768049bb8ac'),(335865,42662,'blocks_1_options',''),(335866,42662,'_blocks_1_options','field_617682517c334'),(335867,42662,'blocks_1_split_5050_image','40615'),(335868,42662,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(335869,42662,'blocks_1_split_5050_video',''),(335870,42662,'_blocks_1_split_5050_video','field_6239f3160848a'),(335871,42662,'blocks_1_split_5050_content_title',''),(335872,42662,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(335873,42662,'blocks_1_split_5050_content_heading','Overview'),(335874,42662,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(335875,42662,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(335876,42662,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(335877,42662,'blocks_1_split_5050_content_actions',''),(335878,42662,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(335879,42662,'blocks_1_split_5050_content',''),(335880,42662,'_blocks_1_split_5050_content','field_61767afceb8ba'),(335881,42662,'blocks_3_acfe_flexible_toggle',''),(335882,42662,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335883,42662,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(335884,42662,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335885,42662,'blocks_3_options_theme','#f5f5f5'),(335886,42662,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(335887,42662,'blocks_3_options_reverse','0'),(335888,42662,'_blocks_3_options_reverse','field_61768049bb8ac'),(335889,42662,'blocks_3_options',''),(335890,42662,'_blocks_3_options','field_617682517c334'),(335891,42662,'blocks_3_split_5050_image','41542'),(335892,42662,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(335893,42662,'blocks_3_split_5050_video',''),(335894,42662,'_blocks_3_split_5050_video','field_6239f3160848a'),(335895,42662,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(335896,42662,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(335897,42662,'blocks_3_split_5050_content_heading',''),(335898,42662,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(335899,42662,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(335900,42662,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(335901,42662,'blocks_3_split_5050_content_actions',''),(335902,42662,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(335903,42662,'blocks_3_split_5050_content',''),(335904,42662,'_blocks_3_split_5050_content','field_61767afceb8ba'),(335905,42662,'blocks_13_acfe_flexible_toggle',''),(335906,42662,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335907,42662,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(335908,42662,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335909,42662,'blocks_13_options_theme','#ffffff'),(335910,42662,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(335911,42662,'blocks_13_options_reverse','1'),(335912,42662,'_blocks_13_options_reverse','field_61768049bb8ac'),(335913,42662,'blocks_13_options',''),(335914,42662,'_blocks_13_options','field_617682517c334'),(335915,42662,'blocks_13_split_5050_image','18856'),(335916,42662,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(335917,42662,'blocks_13_split_5050_video',''),(335918,42662,'_blocks_13_split_5050_video','field_6239f3160848a'),(335919,42662,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(335920,42662,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(335921,42662,'blocks_13_split_5050_content_heading',''),(335922,42662,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(335923,42662,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(335924,42662,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(335925,42662,'blocks_13_split_5050_content_actions',''),(335926,42662,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(335927,42662,'blocks_13_split_5050_content',''),(335928,42662,'_blocks_13_split_5050_content','field_61767afceb8ba'),(335929,42662,'blocks_19_acfe_flexible_toggle',''),(335930,42662,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(335931,42662,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(335932,42662,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(335933,42662,'blocks_19_options_theme','#ffffff'),(335934,42662,'_blocks_19_options_theme','field_6176830e2ad17'),(335935,42662,'blocks_19_options',''),(335936,42662,'_blocks_19_options','field_6176830e2ad16'),(335937,42662,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(335938,42662,'_blocks_19_text_block_heading','field_617669d413097'),(335939,42662,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(335940,42662,'_blocks_19_text_block_content','field_617669ec13098'),(335941,42662,'blocks_6_acfe_flexible_toggle',''),(335942,42662,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335943,42662,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(335944,42662,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335945,42662,'blocks_6_options_theme','#f5f5f5'),(335946,42662,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(335947,42662,'blocks_6_options_reverse','0'),(335948,42662,'_blocks_6_options_reverse','field_61768049bb8ac'),(335949,42662,'blocks_6_options',''),(335950,42662,'_blocks_6_options','field_617682517c334'),(335951,42662,'blocks_6_split_5050_image','41502'),(335952,42662,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(335953,42662,'blocks_6_split_5050_video',''),(335954,42662,'_blocks_6_split_5050_video','field_6239f3160848a'),(335955,42662,'blocks_6_split_5050_content_title','Research & Academia'),(335956,42662,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(335957,42662,'blocks_6_split_5050_content_heading',''),(335958,42662,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(335959,42662,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(335960,42662,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(335961,42662,'blocks_6_split_5050_content_actions',''),(335962,42662,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(335963,42662,'blocks_6_split_5050_content',''),(335964,42662,'_blocks_6_split_5050_content','field_61767afceb8ba'),(335965,42662,'blocks_5_acfe_flexible_toggle',''),(335966,42662,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335967,42662,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(335968,42662,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335969,42662,'blocks_5_options_theme','#f5f5f5'),(335970,42662,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(335971,42662,'blocks_5_options_reverse','0'),(335972,42662,'_blocks_5_options_reverse','field_61768049bb8ac'),(335973,42662,'blocks_5_options',''),(335974,42662,'_blocks_5_options','field_617682517c334'),(335975,42662,'blocks_5_split_5050_image','41539'),(335976,42662,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(335977,42662,'blocks_5_split_5050_video',''),(335978,42662,'_blocks_5_split_5050_video','field_6239f3160848a'),(335979,42662,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(335980,42662,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(335981,42662,'blocks_5_split_5050_content_heading',''),(335982,42662,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(335983,42662,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(335984,42662,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(335985,42662,'blocks_5_split_5050_content_actions',''),(335986,42662,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(335987,42662,'blocks_5_split_5050_content',''),(335988,42662,'_blocks_5_split_5050_content','field_61767afceb8ba'),(335989,42662,'blocks_14_acfe_flexible_toggle',''),(335990,42662,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(335991,42662,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (4) '),(335992,42662,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(335993,42662,'blocks_14_options_theme','#ffffff'),(335994,42662,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(335995,42662,'blocks_14_options_reverse','1'),(335996,42662,'_blocks_14_options_reverse','field_61768049bb8ac'),(335997,42662,'blocks_14_options',''),(335998,42662,'_blocks_14_options','field_617682517c334'),(335999,42662,'blocks_14_split_5050_image','41490'),(336000,42662,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(336001,42662,'blocks_14_split_5050_video',''),(336002,42662,'_blocks_14_split_5050_video','field_6239f3160848a'),(336003,42662,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(336004,42662,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(336005,42662,'blocks_14_split_5050_content_heading',''),(336006,42662,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(336007,42662,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(336008,42662,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(336009,42662,'blocks_14_split_5050_content_actions',''),(336010,42662,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(336011,42662,'blocks_14_split_5050_content',''),(336012,42662,'_blocks_14_split_5050_content','field_61767afceb8ba'),(336013,42662,'blocks_20_acfe_flexible_toggle',''),(336014,42662,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(336015,42662,'blocks_20_acfe_flexible_layout_title','Conclusion'),(336016,42662,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(336017,42662,'blocks_20_options_theme','#b61234'),(336018,42662,'_blocks_20_options_theme','field_6176830e2ad17'),(336019,42662,'blocks_20_options',''),(336020,42662,'_blocks_20_options','field_6176830e2ad16'),(336021,42662,'blocks_20_text_block_heading','Conclusion'),(336022,42662,'_blocks_20_text_block_heading','field_617669d413097'),(336023,42662,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(336024,42662,'_blocks_20_text_block_content','field_617669ec13098'),(336025,42662,'blocks_10_acfe_flexible_toggle',''),(336026,42662,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(336027,42662,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(336028,42662,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(336029,42662,'blocks_10_options_theme','#ffffff'),(336030,42662,'_blocks_10_options_theme','field_6176830e2ad17'),(336031,42662,'blocks_10_options',''),(336032,42662,'_blocks_10_options','field_6176830e2ad16'),(336033,42662,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(336034,42662,'_blocks_10_text_block_heading','field_617669d413097'),(336035,42662,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(336036,42662,'_blocks_10_text_block_content','field_617669ec13098'),(336037,42662,'blocks_2_acfe_flexible_toggle',''),(336038,42662,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(336039,42662,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(336040,42662,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(336041,42662,'blocks_2_options_theme','#f5f5f5'),(336042,42662,'_blocks_2_options_theme','field_6176830e2ad17'),(336043,42662,'blocks_2_options',''),(336044,42662,'_blocks_2_options','field_6176830e2ad16'),(336045,42662,'blocks_2_text_block_heading','Define Your Career Goals'),(336046,42662,'_blocks_2_text_block_heading','field_617669d413097'),(336047,42662,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(336048,42662,'_blocks_2_text_block_content','field_617669ec13098'),(336049,42662,'blocks_4_acfe_flexible_toggle',''),(336050,42662,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336051,42662,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(336052,42662,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336053,42662,'blocks_4_options_theme','#f5f5f5'),(336054,42662,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(336055,42662,'blocks_4_options_reverse','0'),(336056,42662,'_blocks_4_options_reverse','field_61768049bb8ac'),(336057,42662,'blocks_4_options',''),(336058,42662,'_blocks_4_options','field_617682517c334'),(336059,42662,'blocks_4_split_5050_image','41505'),(336060,42662,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(336061,42662,'blocks_4_split_5050_video',''),(336062,42662,'_blocks_4_split_5050_video','field_6239f3160848a'),(336063,42662,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(336064,42662,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(336065,42662,'blocks_4_split_5050_content_heading',''),(336066,42662,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(336067,42662,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(336068,42662,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(336069,42662,'blocks_4_split_5050_content_actions',''),(336070,42662,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(336071,42662,'blocks_4_split_5050_content',''),(336072,42662,'_blocks_4_split_5050_content','field_61767afceb8ba'),(336073,42662,'blocks_7_acfe_flexible_toggle',''),(336074,42662,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(336075,42662,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(336076,42662,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(336077,42662,'blocks_7_options_theme','#ffffff'),(336078,42662,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(336079,42662,'blocks_7_options_state','1'),(336080,42662,'_blocks_7_options_state','field_6239fcb7508c5'),(336081,42662,'blocks_7_options',''),(336082,42662,'_blocks_7_options','field_6177e2991ac44'),(336083,42662,'blocks_7_content_title',''),(336084,42662,'_blocks_7_content_title','field_64d237e8bb1e2'),(336085,42662,'blocks_7_content_heading','Evaluate Course Content'),(336086,42662,'_blocks_7_content_heading','field_64d237e8bb1e3'),(336087,42662,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(336088,42662,'_blocks_7_content_text','field_64d237e8bb1e4'),(336089,42662,'blocks_7_content_actions',''),(336090,42662,'_blocks_7_content_actions','field_64d237e8bb1e5'),(336091,42662,'blocks_7_content_align','left'),(336092,42662,'_blocks_7_content_align','field_64d2443e6b6aa'),(336093,42662,'blocks_7_content',''),(336094,42662,'_blocks_7_content','field_64d237e8bb1e1'),(336095,42662,'blocks_7_accordion_content','custom'),(336096,42662,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(336097,42662,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(336098,42662,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(336099,42662,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(336100,42662,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(336101,42662,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(336102,42662,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(336103,42662,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(336104,42662,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(336105,42662,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(336106,42662,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(336107,42662,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(336108,42662,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(336109,42662,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(336110,42662,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(336111,42662,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(336112,42662,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(336113,42662,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(336114,42662,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(336115,42662,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(336116,42662,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(336117,42662,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(336118,42662,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(336119,42662,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(336120,42662,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(336121,42662,'blocks_7_accordion_items','6'),(336122,42662,'_blocks_7_accordion_items','field_6177e2991ac4c'),(336123,42662,'blocks_7_actions',''),(336124,42662,'_blocks_7_actions','field_61a746a817f7a'),(336125,42662,'blocks_8_acfe_flexible_toggle',''),(336126,42662,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(336127,42662,'blocks_8_acfe_flexible_layout_title','Text Block'),(336128,42662,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(336129,42662,'blocks_8_options_theme','#ffffff'),(336130,42662,'_blocks_8_options_theme','field_6176830e2ad17'),(336131,42662,'blocks_8_options',''),(336132,42662,'_blocks_8_options','field_6176830e2ad16'),(336133,42662,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(336134,42662,'_blocks_8_text_block_heading','field_617669d413097'),(336135,42662,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(336136,42662,'_blocks_8_text_block_content','field_617669ec13098'),(336137,42662,'blocks_9_acfe_flexible_toggle',''),(336138,42662,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(336139,42662,'blocks_9_acfe_flexible_layout_title','Icons'),(336140,42662,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(336141,42662,'blocks_9_options_theme','#ffffff'),(336142,42662,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(336143,42662,'blocks_9_options_format','row'),(336144,42662,'_blocks_9_options_format','field_64bfde9a90690'),(336145,42662,'blocks_9_options',''),(336146,42662,'_blocks_9_options','field_64bfdd9b90684'),(336147,42662,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(336148,42662,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(336149,42662,'blocks_9_icon_row_items_0_label','Industry Recognition'),(336150,42662,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(336151,42662,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(336152,42662,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(336153,42662,'blocks_9_icon_row_items_1_icon','qualification.svg'),(336154,42662,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(336155,42662,'blocks_9_icon_row_items_1_label','University Accreditation'),(336156,42662,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(336157,42662,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(336158,42662,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(336159,42662,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(336160,42662,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(336161,42662,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(336162,42662,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(336163,42662,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(336164,42662,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(336165,42662,'blocks_9_icon_row_items','3'),(336166,42662,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(336167,42662,'blocks_11_acfe_flexible_toggle',''),(336168,42662,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336169,42662,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(336170,42662,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336171,42662,'blocks_11_options_theme','#ffffff'),(336172,42662,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(336173,42662,'blocks_11_options_reverse','1'),(336174,42662,'_blocks_11_options_reverse','field_61768049bb8ac'),(336175,42662,'blocks_11_options',''),(336176,42662,'_blocks_11_options','field_617682517c334'),(336177,42662,'blocks_11_split_5050_image','41498'),(336178,42662,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(336179,42662,'blocks_11_split_5050_video',''),(336180,42662,'_blocks_11_split_5050_video','field_6239f3160848a'),(336181,42662,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(336182,42662,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(336183,42662,'blocks_11_split_5050_content_heading',''),(336184,42662,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(336185,42662,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(336186,42662,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(336187,42662,'blocks_11_split_5050_content_actions',''),(336188,42662,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(336189,42662,'blocks_11_split_5050_content',''),(336190,42662,'_blocks_11_split_5050_content','field_61767afceb8ba'),(336191,42662,'blocks_12_acfe_flexible_toggle',''),(336192,42662,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336193,42662,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(336194,42662,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336195,42662,'blocks_12_options_theme','#ffffff'),(336196,42662,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(336197,42662,'blocks_12_options_reverse','1'),(336198,42662,'_blocks_12_options_reverse','field_61768049bb8ac'),(336199,42662,'blocks_12_options',''),(336200,42662,'_blocks_12_options','field_617682517c334'),(336201,42662,'blocks_12_split_5050_image','40387'),(336202,42662,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(336203,42662,'blocks_12_split_5050_video',''),(336204,42662,'_blocks_12_split_5050_video','field_6239f3160848a'),(336205,42662,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(336206,42662,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(336207,42662,'blocks_12_split_5050_content_heading',''),(336208,42662,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(336209,42662,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(336210,42662,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(336211,42662,'blocks_12_split_5050_content_actions',''),(336212,42662,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(336213,42662,'blocks_12_split_5050_content',''),(336214,42662,'_blocks_12_split_5050_content','field_61767afceb8ba'),(336215,42662,'blocks_15_acfe_flexible_toggle',''),(336216,42662,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(336217,42662,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(336218,42662,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(336219,42662,'blocks_15_options_theme','#b61234'),(336220,42662,'_blocks_15_options_theme','field_6176830e2ad17'),(336221,42662,'blocks_15_options',''),(336222,42662,'_blocks_15_options','field_6176830e2ad16'),(336223,42662,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(336224,42662,'_blocks_15_text_block_heading','field_617669d413097'),(336225,42662,'blocks_15_text_block_content',''),(336226,42662,'_blocks_15_text_block_content','field_617669ec13098'),(336227,42662,'blocks_16_acfe_flexible_toggle',''),(336228,42662,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(336229,42662,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(336230,42662,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(336231,42662,'blocks_16_options_theme','#b61234'),(336232,42662,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(336233,42662,'blocks_16_options_format','row'),(336234,42662,'_blocks_16_options_format','field_64bfde9a90690'),(336235,42662,'blocks_16_options',''),(336236,42662,'_blocks_16_options','field_64bfdd9b90684'),(336237,42662,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(336238,42662,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(336239,42662,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(336240,42662,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(336241,42662,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(336242,42662,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(336243,42662,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(336244,42662,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(336245,42662,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(336246,42662,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(336247,42662,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(336248,42662,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(336249,42662,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(336250,42662,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(336251,42662,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(336252,42662,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(336253,42662,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(336254,42662,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(336255,42662,'blocks_16_icon_row_items_3_icon','recognised.svg'),(336256,42662,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(336257,42662,'blocks_16_icon_row_items_3_label','Optimised Performance'),(336258,42662,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(336259,42662,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(336260,42662,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(336261,42662,'blocks_16_icon_row_items','4'),(336262,42662,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(336263,42662,'blocks_17_acfe_flexible_toggle',''),(336264,42662,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336265,42662,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(336266,42662,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336267,42662,'blocks_17_options_theme','#ffffff'),(336268,42662,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(336269,42662,'blocks_17_options_reverse','0'),(336270,42662,'_blocks_17_options_reverse','field_61768049bb8ac'),(336271,42662,'blocks_17_options',''),(336272,42662,'_blocks_17_options','field_617682517c334'),(336273,42662,'blocks_17_split_5050_image','41501'),(336274,42662,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(336275,42662,'blocks_17_split_5050_video',''),(336276,42662,'_blocks_17_split_5050_video','field_6239f3160848a'),(336277,42662,'blocks_17_split_5050_content_title',''),(336278,42662,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(336279,42662,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(336280,42662,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(336281,42662,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(336282,42662,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(336283,42662,'blocks_17_split_5050_content_actions',''),(336284,42662,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(336285,42662,'blocks_17_split_5050_content',''),(336286,42662,'_blocks_17_split_5050_content','field_61767afceb8ba'),(336287,42662,'blocks_18_acfe_flexible_toggle',''),(336288,42662,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(336289,42662,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(336290,42662,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(336291,42662,'blocks_18_options_theme','#ffffff'),(336292,42662,'_blocks_18_options_theme','field_6176830e2ad17'),(336293,42662,'blocks_18_options',''),(336294,42662,'_blocks_18_options','field_6176830e2ad16'),(336295,42662,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(336296,42662,'_blocks_18_text_block_heading','field_617669d413097'),(336297,42662,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(336298,42662,'_blocks_18_text_block_content','field_617669ec13098'),(336299,42662,'blocks_21_acfe_flexible_toggle',''),(336300,42662,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(336301,42662,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(336302,42662,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(336303,42662,'blocks_21_options_alignment','center'),(336304,42662,'_blocks_21_options_alignment','field_61769449f5490'),(336305,42662,'blocks_21_options',''),(336306,42662,'_blocks_21_options','field_617693e1428f0'),(336307,42662,'blocks_21_promo_panel_image','41307'),(336308,42662,'_blocks_21_promo_panel_image','field_617693e1428f3'),(336309,42662,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(336310,42662,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(336311,42662,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(336312,42662,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(336313,42662,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(336314,42662,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(336315,42662,'blocks_21_promo_panel_content_actions','1'),(336316,42662,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(336317,42662,'blocks_21_promo_panel_content',''),(336318,42662,'_blocks_21_promo_panel_content','field_617693e1428f4'),(336319,42663,'hide_hero','0'),(336320,42663,'_hide_hero','field_66a2380fcda39'),(336321,42663,'hero_title',''),(336322,42663,'_hero_title','field_617571fe285e8'),(336323,42663,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(336324,42663,'_hero_text','field_6175723c285e9'),(336325,42663,'hero_actions',''),(336326,42663,'_hero_actions','field_61757270285ea'),(336327,42663,'hero_style','default'),(336328,42663,'_hero_style','field_62051d9dc5324'),(336329,42663,'hero_image_pos_x','right'),(336330,42663,'_hero_image_pos_x','field_62ec3d05390bb'),(336331,42663,'hero_image_pos_y','top'),(336332,42663,'_hero_image_pos_y','field_62ec3d05390bc'),(336333,42663,'hero_image_pos',''),(336334,42663,'_hero_image_pos','field_62ec3d05390ba'),(336335,42663,'fft_hide_from_listings','0'),(336336,42663,'_fft_hide_from_listings','field_61f1320446ab2'),(336337,42663,'post_format','402'),(336338,42663,'_post_format','field_61756bfb51898'),(336339,42663,'post_author',''),(336340,42663,'_post_author','field_62ec389d22113'),(336341,42663,'post_reviewer',''),(336342,42663,'_post_reviewer','field_627140a2a9800'),(336343,42663,'post_table_of_contents','0'),(336344,42663,'_post_table_of_contents','field_65c503bc846a6'),(336345,42663,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(336346,42663,'_blocks','field_6176696113096'),(336347,42663,'_thumbnail_id','40618'),(336348,42663,'__thumbnail_id','field_617570855ddaf'),(336349,42663,'blocks_0_acfe_flexible_toggle',''),(336350,42663,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(336351,42663,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(336352,42663,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(336353,42663,'blocks_0_options_theme','#ffffff'),(336354,42663,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(336355,42663,'blocks_0_options',''),(336356,42663,'_blocks_0_options','field_6177b758246ae'),(336357,42663,'blocks_0_link_stack_content_title',''),(336358,42663,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(336359,42663,'blocks_0_link_stack_content_heading','Introduction'),(336360,42663,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(336361,42663,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(336362,42663,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(336363,42663,'blocks_0_link_stack_content_actions_0_button',''),(336364,42663,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(336365,42663,'blocks_0_link_stack_content_actions','1'),(336366,42663,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(336367,42663,'blocks_0_link_stack_content',''),(336368,42663,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(336369,42663,'blocks_0_link_stack_0_label','1.'),(336370,42663,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(336371,42663,'blocks_0_link_stack_0_title','Overview'),(336372,42663,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(336373,42663,'blocks_0_link_stack_0_url','#overview'),(336374,42663,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(336375,42663,'blocks_0_link_stack_1_label','2.'),(336376,42663,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(336377,42663,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(336378,42663,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(336379,42663,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(336380,42663,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(336381,42663,'blocks_0_link_stack_2_label','3.'),(336382,42663,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(336383,42663,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(336384,42663,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(336385,42663,'blocks_0_link_stack_2_url','#who-should-study-msk'),(336386,42663,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(336387,42663,'blocks_0_link_stack_3_label','4.'),(336388,42663,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(336389,42663,'blocks_0_link_stack_3_title','Common MSK Conditions'),(336390,42663,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(336391,42663,'blocks_0_link_stack_3_url','#common-msk-conditions'),(336392,42663,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(336393,42663,'blocks_0_link_stack_4_label','5.'),(336394,42663,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(336395,42663,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(336396,42663,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(336397,42663,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(336398,42663,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(336399,42663,'blocks_0_link_stack_5_label','6.'),(336400,42663,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(336401,42663,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(336402,42663,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(336403,42663,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(336404,42663,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(336405,42663,'blocks_0_link_stack','6'),(336406,42663,'_blocks_0_link_stack','field_6177b7f600cff'),(336407,42663,'blocks_1_acfe_flexible_toggle',''),(336408,42663,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336409,42663,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(336410,42663,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336411,42663,'blocks_1_options_theme','#ffffff'),(336412,42663,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(336413,42663,'blocks_1_options_reverse','0'),(336414,42663,'_blocks_1_options_reverse','field_61768049bb8ac'),(336415,42663,'blocks_1_options',''),(336416,42663,'_blocks_1_options','field_617682517c334'),(336417,42663,'blocks_1_split_5050_image','40615'),(336418,42663,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(336419,42663,'blocks_1_split_5050_video',''),(336420,42663,'_blocks_1_split_5050_video','field_6239f3160848a'),(336421,42663,'blocks_1_split_5050_content_title',''),(336422,42663,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(336423,42663,'blocks_1_split_5050_content_heading','Overview'),(336424,42663,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(336425,42663,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(336426,42663,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(336427,42663,'blocks_1_split_5050_content_actions',''),(336428,42663,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(336429,42663,'blocks_1_split_5050_content',''),(336430,42663,'_blocks_1_split_5050_content','field_61767afceb8ba'),(336431,42663,'blocks_3_acfe_flexible_toggle',''),(336432,42663,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336433,42663,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(336434,42663,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336435,42663,'blocks_3_options_theme','#f5f5f5'),(336436,42663,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(336437,42663,'blocks_3_options_reverse','1'),(336438,42663,'_blocks_3_options_reverse','field_61768049bb8ac'),(336439,42663,'blocks_3_options',''),(336440,42663,'_blocks_3_options','field_617682517c334'),(336441,42663,'blocks_3_split_5050_image','41542'),(336442,42663,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(336443,42663,'blocks_3_split_5050_video',''),(336444,42663,'_blocks_3_split_5050_video','field_6239f3160848a'),(336445,42663,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(336446,42663,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(336447,42663,'blocks_3_split_5050_content_heading',''),(336448,42663,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(336449,42663,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(336450,42663,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(336451,42663,'blocks_3_split_5050_content_actions',''),(336452,42663,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(336453,42663,'blocks_3_split_5050_content',''),(336454,42663,'_blocks_3_split_5050_content','field_61767afceb8ba'),(336455,42663,'blocks_13_acfe_flexible_toggle',''),(336456,42663,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336457,42663,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(336458,42663,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336459,42663,'blocks_13_options_theme','#ffffff'),(336460,42663,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(336461,42663,'blocks_13_options_reverse','1'),(336462,42663,'_blocks_13_options_reverse','field_61768049bb8ac'),(336463,42663,'blocks_13_options',''),(336464,42663,'_blocks_13_options','field_617682517c334'),(336465,42663,'blocks_13_split_5050_image','18856'),(336466,42663,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(336467,42663,'blocks_13_split_5050_video',''),(336468,42663,'_blocks_13_split_5050_video','field_6239f3160848a'),(336469,42663,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(336470,42663,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(336471,42663,'blocks_13_split_5050_content_heading',''),(336472,42663,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(336473,42663,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(336474,42663,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(336475,42663,'blocks_13_split_5050_content_actions',''),(336476,42663,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(336477,42663,'blocks_13_split_5050_content',''),(336478,42663,'_blocks_13_split_5050_content','field_61767afceb8ba'),(336479,42663,'blocks_19_acfe_flexible_toggle',''),(336480,42663,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(336481,42663,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(336482,42663,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(336483,42663,'blocks_19_options_theme','#ffffff'),(336484,42663,'_blocks_19_options_theme','field_6176830e2ad17'),(336485,42663,'blocks_19_options',''),(336486,42663,'_blocks_19_options','field_6176830e2ad16'),(336487,42663,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(336488,42663,'_blocks_19_text_block_heading','field_617669d413097'),(336489,42663,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(336490,42663,'_blocks_19_text_block_content','field_617669ec13098'),(336491,42663,'blocks_6_acfe_flexible_toggle',''),(336492,42663,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336493,42663,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(336494,42663,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336495,42663,'blocks_6_options_theme','#f5f5f5'),(336496,42663,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(336497,42663,'blocks_6_options_reverse','1'),(336498,42663,'_blocks_6_options_reverse','field_61768049bb8ac'),(336499,42663,'blocks_6_options',''),(336500,42663,'_blocks_6_options','field_617682517c334'),(336501,42663,'blocks_6_split_5050_image','41502'),(336502,42663,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(336503,42663,'blocks_6_split_5050_video',''),(336504,42663,'_blocks_6_split_5050_video','field_6239f3160848a'),(336505,42663,'blocks_6_split_5050_content_title','Research & Academia'),(336506,42663,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(336507,42663,'blocks_6_split_5050_content_heading',''),(336508,42663,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(336509,42663,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(336510,42663,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(336511,42663,'blocks_6_split_5050_content_actions',''),(336512,42663,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(336513,42663,'blocks_6_split_5050_content',''),(336514,42663,'_blocks_6_split_5050_content','field_61767afceb8ba'),(336515,42663,'blocks_5_acfe_flexible_toggle',''),(336516,42663,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336517,42663,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(336518,42663,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336519,42663,'blocks_5_options_theme','#f5f5f5'),(336520,42663,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(336521,42663,'blocks_5_options_reverse','1'),(336522,42663,'_blocks_5_options_reverse','field_61768049bb8ac'),(336523,42663,'blocks_5_options',''),(336524,42663,'_blocks_5_options','field_617682517c334'),(336525,42663,'blocks_5_split_5050_image','41539'),(336526,42663,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(336527,42663,'blocks_5_split_5050_video',''),(336528,42663,'_blocks_5_split_5050_video','field_6239f3160848a'),(336529,42663,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(336530,42663,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(336531,42663,'blocks_5_split_5050_content_heading',''),(336532,42663,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(336533,42663,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(336534,42663,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(336535,42663,'blocks_5_split_5050_content_actions',''),(336536,42663,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(336537,42663,'blocks_5_split_5050_content',''),(336538,42663,'_blocks_5_split_5050_content','field_61767afceb8ba'),(336539,42663,'blocks_14_acfe_flexible_toggle',''),(336540,42663,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336541,42663,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (4) '),(336542,42663,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336543,42663,'blocks_14_options_theme','#ffffff'),(336544,42663,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(336545,42663,'blocks_14_options_reverse','1'),(336546,42663,'_blocks_14_options_reverse','field_61768049bb8ac'),(336547,42663,'blocks_14_options',''),(336548,42663,'_blocks_14_options','field_617682517c334'),(336549,42663,'blocks_14_split_5050_image','41490'),(336550,42663,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(336551,42663,'blocks_14_split_5050_video',''),(336552,42663,'_blocks_14_split_5050_video','field_6239f3160848a'),(336553,42663,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(336554,42663,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(336555,42663,'blocks_14_split_5050_content_heading',''),(336556,42663,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(336557,42663,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(336558,42663,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(336559,42663,'blocks_14_split_5050_content_actions',''),(336560,42663,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(336561,42663,'blocks_14_split_5050_content',''),(336562,42663,'_blocks_14_split_5050_content','field_61767afceb8ba'),(336563,42663,'blocks_20_acfe_flexible_toggle',''),(336564,42663,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(336565,42663,'blocks_20_acfe_flexible_layout_title','Conclusion'),(336566,42663,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(336567,42663,'blocks_20_options_theme','#b61234'),(336568,42663,'_blocks_20_options_theme','field_6176830e2ad17'),(336569,42663,'blocks_20_options',''),(336570,42663,'_blocks_20_options','field_6176830e2ad16'),(336571,42663,'blocks_20_text_block_heading','Conclusion'),(336572,42663,'_blocks_20_text_block_heading','field_617669d413097'),(336573,42663,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(336574,42663,'_blocks_20_text_block_content','field_617669ec13098'),(336575,42663,'blocks_10_acfe_flexible_toggle',''),(336576,42663,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(336577,42663,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(336578,42663,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(336579,42663,'blocks_10_options_theme','#ffffff'),(336580,42663,'_blocks_10_options_theme','field_6176830e2ad17'),(336581,42663,'blocks_10_options',''),(336582,42663,'_blocks_10_options','field_6176830e2ad16'),(336583,42663,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(336584,42663,'_blocks_10_text_block_heading','field_617669d413097'),(336585,42663,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(336586,42663,'_blocks_10_text_block_content','field_617669ec13098'),(336587,42663,'blocks_2_acfe_flexible_toggle',''),(336588,42663,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(336589,42663,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(336590,42663,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(336591,42663,'blocks_2_options_theme','#f5f5f5'),(336592,42663,'_blocks_2_options_theme','field_6176830e2ad17'),(336593,42663,'blocks_2_options',''),(336594,42663,'_blocks_2_options','field_6176830e2ad16'),(336595,42663,'blocks_2_text_block_heading','Define Your Career Goals'),(336596,42663,'_blocks_2_text_block_heading','field_617669d413097'),(336597,42663,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(336598,42663,'_blocks_2_text_block_content','field_617669ec13098'),(336599,42663,'blocks_4_acfe_flexible_toggle',''),(336600,42663,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336601,42663,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(336602,42663,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336603,42663,'blocks_4_options_theme','#f5f5f5'),(336604,42663,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(336605,42663,'blocks_4_options_reverse','1'),(336606,42663,'_blocks_4_options_reverse','field_61768049bb8ac'),(336607,42663,'blocks_4_options',''),(336608,42663,'_blocks_4_options','field_617682517c334'),(336609,42663,'blocks_4_split_5050_image','41505'),(336610,42663,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(336611,42663,'blocks_4_split_5050_video',''),(336612,42663,'_blocks_4_split_5050_video','field_6239f3160848a'),(336613,42663,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(336614,42663,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(336615,42663,'blocks_4_split_5050_content_heading',''),(336616,42663,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(336617,42663,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(336618,42663,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(336619,42663,'blocks_4_split_5050_content_actions',''),(336620,42663,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(336621,42663,'blocks_4_split_5050_content',''),(336622,42663,'_blocks_4_split_5050_content','field_61767afceb8ba'),(336623,42663,'blocks_7_acfe_flexible_toggle',''),(336624,42663,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(336625,42663,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(336626,42663,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(336627,42663,'blocks_7_options_theme','#ffffff'),(336628,42663,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(336629,42663,'blocks_7_options_state','1'),(336630,42663,'_blocks_7_options_state','field_6239fcb7508c5'),(336631,42663,'blocks_7_options',''),(336632,42663,'_blocks_7_options','field_6177e2991ac44'),(336633,42663,'blocks_7_content_title',''),(336634,42663,'_blocks_7_content_title','field_64d237e8bb1e2'),(336635,42663,'blocks_7_content_heading','Evaluate Course Content'),(336636,42663,'_blocks_7_content_heading','field_64d237e8bb1e3'),(336637,42663,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(336638,42663,'_blocks_7_content_text','field_64d237e8bb1e4'),(336639,42663,'blocks_7_content_actions',''),(336640,42663,'_blocks_7_content_actions','field_64d237e8bb1e5'),(336641,42663,'blocks_7_content_align','left'),(336642,42663,'_blocks_7_content_align','field_64d2443e6b6aa'),(336643,42663,'blocks_7_content',''),(336644,42663,'_blocks_7_content','field_64d237e8bb1e1'),(336645,42663,'blocks_7_accordion_content','custom'),(336646,42663,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(336647,42663,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(336648,42663,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(336649,42663,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(336650,42663,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(336651,42663,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(336652,42663,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(336653,42663,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(336654,42663,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(336655,42663,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(336656,42663,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(336657,42663,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(336658,42663,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(336659,42663,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(336660,42663,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(336661,42663,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(336662,42663,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(336663,42663,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(336664,42663,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(336665,42663,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(336666,42663,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(336667,42663,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(336668,42663,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(336669,42663,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(336670,42663,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(336671,42663,'blocks_7_accordion_items','6'),(336672,42663,'_blocks_7_accordion_items','field_6177e2991ac4c'),(336673,42663,'blocks_7_actions',''),(336674,42663,'_blocks_7_actions','field_61a746a817f7a'),(336675,42663,'blocks_8_acfe_flexible_toggle',''),(336676,42663,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(336677,42663,'blocks_8_acfe_flexible_layout_title','Text Block'),(336678,42663,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(336679,42663,'blocks_8_options_theme','#ffffff'),(336680,42663,'_blocks_8_options_theme','field_6176830e2ad17'),(336681,42663,'blocks_8_options',''),(336682,42663,'_blocks_8_options','field_6176830e2ad16'),(336683,42663,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(336684,42663,'_blocks_8_text_block_heading','field_617669d413097'),(336685,42663,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(336686,42663,'_blocks_8_text_block_content','field_617669ec13098'),(336687,42663,'blocks_9_acfe_flexible_toggle',''),(336688,42663,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(336689,42663,'blocks_9_acfe_flexible_layout_title','Icons'),(336690,42663,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(336691,42663,'blocks_9_options_theme','#ffffff'),(336692,42663,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(336693,42663,'blocks_9_options_format','row'),(336694,42663,'_blocks_9_options_format','field_64bfde9a90690'),(336695,42663,'blocks_9_options',''),(336696,42663,'_blocks_9_options','field_64bfdd9b90684'),(336697,42663,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(336698,42663,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(336699,42663,'blocks_9_icon_row_items_0_label','Industry Recognition'),(336700,42663,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(336701,42663,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(336702,42663,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(336703,42663,'blocks_9_icon_row_items_1_icon','qualification.svg'),(336704,42663,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(336705,42663,'blocks_9_icon_row_items_1_label','University Accreditation'),(336706,42663,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(336707,42663,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(336708,42663,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(336709,42663,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(336710,42663,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(336711,42663,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(336712,42663,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(336713,42663,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(336714,42663,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(336715,42663,'blocks_9_icon_row_items','3'),(336716,42663,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(336717,42663,'blocks_11_acfe_flexible_toggle',''),(336718,42663,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336719,42663,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(336720,42663,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336721,42663,'blocks_11_options_theme','#ffffff'),(336722,42663,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(336723,42663,'blocks_11_options_reverse','1'),(336724,42663,'_blocks_11_options_reverse','field_61768049bb8ac'),(336725,42663,'blocks_11_options',''),(336726,42663,'_blocks_11_options','field_617682517c334'),(336727,42663,'blocks_11_split_5050_image','41498'),(336728,42663,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(336729,42663,'blocks_11_split_5050_video',''),(336730,42663,'_blocks_11_split_5050_video','field_6239f3160848a'),(336731,42663,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(336732,42663,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(336733,42663,'blocks_11_split_5050_content_heading',''),(336734,42663,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(336735,42663,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(336736,42663,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(336737,42663,'blocks_11_split_5050_content_actions',''),(336738,42663,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(336739,42663,'blocks_11_split_5050_content',''),(336740,42663,'_blocks_11_split_5050_content','field_61767afceb8ba'),(336741,42663,'blocks_12_acfe_flexible_toggle',''),(336742,42663,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336743,42663,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(336744,42663,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336745,42663,'blocks_12_options_theme','#ffffff'),(336746,42663,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(336747,42663,'blocks_12_options_reverse','1'),(336748,42663,'_blocks_12_options_reverse','field_61768049bb8ac'),(336749,42663,'blocks_12_options',''),(336750,42663,'_blocks_12_options','field_617682517c334'),(336751,42663,'blocks_12_split_5050_image','40387'),(336752,42663,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(336753,42663,'blocks_12_split_5050_video',''),(336754,42663,'_blocks_12_split_5050_video','field_6239f3160848a'),(336755,42663,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(336756,42663,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(336757,42663,'blocks_12_split_5050_content_heading',''),(336758,42663,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(336759,42663,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(336760,42663,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(336761,42663,'blocks_12_split_5050_content_actions',''),(336762,42663,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(336763,42663,'blocks_12_split_5050_content',''),(336764,42663,'_blocks_12_split_5050_content','field_61767afceb8ba'),(336765,42663,'blocks_15_acfe_flexible_toggle',''),(336766,42663,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(336767,42663,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(336768,42663,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(336769,42663,'blocks_15_options_theme','#b61234'),(336770,42663,'_blocks_15_options_theme','field_6176830e2ad17'),(336771,42663,'blocks_15_options',''),(336772,42663,'_blocks_15_options','field_6176830e2ad16'),(336773,42663,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(336774,42663,'_blocks_15_text_block_heading','field_617669d413097'),(336775,42663,'blocks_15_text_block_content',''),(336776,42663,'_blocks_15_text_block_content','field_617669ec13098'),(336777,42663,'blocks_16_acfe_flexible_toggle',''),(336778,42663,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(336779,42663,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(336780,42663,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(336781,42663,'blocks_16_options_theme','#b61234'),(336782,42663,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(336783,42663,'blocks_16_options_format','row'),(336784,42663,'_blocks_16_options_format','field_64bfde9a90690'),(336785,42663,'blocks_16_options',''),(336786,42663,'_blocks_16_options','field_64bfdd9b90684'),(336787,42663,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(336788,42663,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(336789,42663,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(336790,42663,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(336791,42663,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(336792,42663,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(336793,42663,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(336794,42663,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(336795,42663,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(336796,42663,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(336797,42663,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(336798,42663,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(336799,42663,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(336800,42663,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(336801,42663,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(336802,42663,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(336803,42663,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(336804,42663,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(336805,42663,'blocks_16_icon_row_items_3_icon','recognised.svg'),(336806,42663,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(336807,42663,'blocks_16_icon_row_items_3_label','Optimised Performance'),(336808,42663,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(336809,42663,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(336810,42663,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(336811,42663,'blocks_16_icon_row_items','4'),(336812,42663,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(336813,42663,'blocks_17_acfe_flexible_toggle',''),(336814,42663,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336815,42663,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(336816,42663,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336817,42663,'blocks_17_options_theme','#ffffff'),(336818,42663,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(336819,42663,'blocks_17_options_reverse','0'),(336820,42663,'_blocks_17_options_reverse','field_61768049bb8ac'),(336821,42663,'blocks_17_options',''),(336822,42663,'_blocks_17_options','field_617682517c334'),(336823,42663,'blocks_17_split_5050_image','41501'),(336824,42663,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(336825,42663,'blocks_17_split_5050_video',''),(336826,42663,'_blocks_17_split_5050_video','field_6239f3160848a'),(336827,42663,'blocks_17_split_5050_content_title',''),(336828,42663,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(336829,42663,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(336830,42663,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(336831,42663,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(336832,42663,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(336833,42663,'blocks_17_split_5050_content_actions',''),(336834,42663,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(336835,42663,'blocks_17_split_5050_content',''),(336836,42663,'_blocks_17_split_5050_content','field_61767afceb8ba'),(336837,42663,'blocks_18_acfe_flexible_toggle',''),(336838,42663,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(336839,42663,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(336840,42663,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(336841,42663,'blocks_18_options_theme','#ffffff'),(336842,42663,'_blocks_18_options_theme','field_6176830e2ad17'),(336843,42663,'blocks_18_options',''),(336844,42663,'_blocks_18_options','field_6176830e2ad16'),(336845,42663,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(336846,42663,'_blocks_18_text_block_heading','field_617669d413097'),(336847,42663,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(336848,42663,'_blocks_18_text_block_content','field_617669ec13098'),(336849,42663,'blocks_21_acfe_flexible_toggle',''),(336850,42663,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(336851,42663,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(336852,42663,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(336853,42663,'blocks_21_options_alignment','center'),(336854,42663,'_blocks_21_options_alignment','field_61769449f5490'),(336855,42663,'blocks_21_options',''),(336856,42663,'_blocks_21_options','field_617693e1428f0'),(336857,42663,'blocks_21_promo_panel_image','41307'),(336858,42663,'_blocks_21_promo_panel_image','field_617693e1428f3'),(336859,42663,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(336860,42663,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(336861,42663,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(336862,42663,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(336863,42663,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(336864,42663,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(336865,42663,'blocks_21_promo_panel_content_actions','1'),(336866,42663,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(336867,42663,'blocks_21_promo_panel_content',''),(336868,42663,'_blocks_21_promo_panel_content','field_617693e1428f4'),(336869,42664,'hide_hero','0'),(336870,42664,'_hide_hero','field_66a2380fcda39'),(336871,42664,'hero_title',''),(336872,42664,'_hero_title','field_617571fe285e8'),(336873,42664,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(336874,42664,'_hero_text','field_6175723c285e9'),(336875,42664,'hero_actions',''),(336876,42664,'_hero_actions','field_61757270285ea'),(336877,42664,'hero_style','default'),(336878,42664,'_hero_style','field_62051d9dc5324'),(336879,42664,'hero_image_pos_x','right'),(336880,42664,'_hero_image_pos_x','field_62ec3d05390bb'),(336881,42664,'hero_image_pos_y','top'),(336882,42664,'_hero_image_pos_y','field_62ec3d05390bc'),(336883,42664,'hero_image_pos',''),(336884,42664,'_hero_image_pos','field_62ec3d05390ba'),(336885,42664,'fft_hide_from_listings','0'),(336886,42664,'_fft_hide_from_listings','field_61f1320446ab2'),(336887,42664,'post_format','402'),(336888,42664,'_post_format','field_61756bfb51898'),(336889,42664,'post_author',''),(336890,42664,'_post_author','field_62ec389d22113'),(336891,42664,'post_reviewer',''),(336892,42664,'_post_reviewer','field_627140a2a9800'),(336893,42664,'post_table_of_contents','0'),(336894,42664,'_post_table_of_contents','field_65c503bc846a6'),(336895,42664,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(336896,42664,'_blocks','field_6176696113096'),(336897,42664,'_thumbnail_id','40618'),(336898,42664,'__thumbnail_id','field_617570855ddaf'),(336899,42664,'blocks_0_acfe_flexible_toggle',''),(336900,42664,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(336901,42664,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(336902,42664,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(336903,42664,'blocks_0_options_theme','#ffffff'),(336904,42664,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(336905,42664,'blocks_0_options',''),(336906,42664,'_blocks_0_options','field_6177b758246ae'),(336907,42664,'blocks_0_link_stack_content_title',''),(336908,42664,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(336909,42664,'blocks_0_link_stack_content_heading','Introduction'),(336910,42664,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(336911,42664,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(336912,42664,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(336913,42664,'blocks_0_link_stack_content_actions_0_button',''),(336914,42664,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(336915,42664,'blocks_0_link_stack_content_actions','1'),(336916,42664,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(336917,42664,'blocks_0_link_stack_content',''),(336918,42664,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(336919,42664,'blocks_0_link_stack_0_label','1.'),(336920,42664,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(336921,42664,'blocks_0_link_stack_0_title','Overview'),(336922,42664,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(336923,42664,'blocks_0_link_stack_0_url','#overview'),(336924,42664,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(336925,42664,'blocks_0_link_stack_1_label','2.'),(336926,42664,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(336927,42664,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(336928,42664,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(336929,42664,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(336930,42664,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(336931,42664,'blocks_0_link_stack_2_label','3.'),(336932,42664,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(336933,42664,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(336934,42664,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(336935,42664,'blocks_0_link_stack_2_url','#who-should-study-msk'),(336936,42664,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(336937,42664,'blocks_0_link_stack_3_label','4.'),(336938,42664,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(336939,42664,'blocks_0_link_stack_3_title','Common MSK Conditions'),(336940,42664,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(336941,42664,'blocks_0_link_stack_3_url','#common-msk-conditions'),(336942,42664,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(336943,42664,'blocks_0_link_stack_4_label','5.'),(336944,42664,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(336945,42664,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(336946,42664,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(336947,42664,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(336948,42664,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(336949,42664,'blocks_0_link_stack_5_label','6.'),(336950,42664,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(336951,42664,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(336952,42664,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(336953,42664,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(336954,42664,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(336955,42664,'blocks_0_link_stack','6'),(336956,42664,'_blocks_0_link_stack','field_6177b7f600cff'),(336957,42664,'blocks_1_acfe_flexible_toggle',''),(336958,42664,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336959,42664,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(336960,42664,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336961,42664,'blocks_1_options_theme','#ffffff'),(336962,42664,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(336963,42664,'blocks_1_options_reverse','0'),(336964,42664,'_blocks_1_options_reverse','field_61768049bb8ac'),(336965,42664,'blocks_1_options',''),(336966,42664,'_blocks_1_options','field_617682517c334'),(336967,42664,'blocks_1_split_5050_image','40615'),(336968,42664,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(336969,42664,'blocks_1_split_5050_video',''),(336970,42664,'_blocks_1_split_5050_video','field_6239f3160848a'),(336971,42664,'blocks_1_split_5050_content_title',''),(336972,42664,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(336973,42664,'blocks_1_split_5050_content_heading','Overview'),(336974,42664,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(336975,42664,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(336976,42664,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(336977,42664,'blocks_1_split_5050_content_actions',''),(336978,42664,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(336979,42664,'blocks_1_split_5050_content',''),(336980,42664,'_blocks_1_split_5050_content','field_61767afceb8ba'),(336981,42664,'blocks_3_acfe_flexible_toggle',''),(336982,42664,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(336983,42664,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(336984,42664,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(336985,42664,'blocks_3_options_theme','#f5f5f5'),(336986,42664,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(336987,42664,'blocks_3_options_reverse','1'),(336988,42664,'_blocks_3_options_reverse','field_61768049bb8ac'),(336989,42664,'blocks_3_options',''),(336990,42664,'_blocks_3_options','field_617682517c334'),(336991,42664,'blocks_3_split_5050_image','41542'),(336992,42664,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(336993,42664,'blocks_3_split_5050_video',''),(336994,42664,'_blocks_3_split_5050_video','field_6239f3160848a'),(336995,42664,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(336996,42664,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(336997,42664,'blocks_3_split_5050_content_heading',''),(336998,42664,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(336999,42664,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(337000,42664,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(337001,42664,'blocks_3_split_5050_content_actions',''),(337002,42664,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(337003,42664,'blocks_3_split_5050_content',''),(337004,42664,'_blocks_3_split_5050_content','field_61767afceb8ba'),(337005,42664,'blocks_13_acfe_flexible_toggle',''),(337006,42664,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337007,42664,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(337008,42664,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337009,42664,'blocks_13_options_theme','#ffffff'),(337010,42664,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(337011,42664,'blocks_13_options_reverse','1'),(337012,42664,'_blocks_13_options_reverse','field_61768049bb8ac'),(337013,42664,'blocks_13_options',''),(337014,42664,'_blocks_13_options','field_617682517c334'),(337015,42664,'blocks_13_split_5050_image','18856'),(337016,42664,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(337017,42664,'blocks_13_split_5050_video',''),(337018,42664,'_blocks_13_split_5050_video','field_6239f3160848a'),(337019,42664,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(337020,42664,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(337021,42664,'blocks_13_split_5050_content_heading',''),(337022,42664,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(337023,42664,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(337024,42664,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(337025,42664,'blocks_13_split_5050_content_actions',''),(337026,42664,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(337027,42664,'blocks_13_split_5050_content',''),(337028,42664,'_blocks_13_split_5050_content','field_61767afceb8ba'),(337029,42664,'blocks_19_acfe_flexible_toggle',''),(337030,42664,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337031,42664,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(337032,42664,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337033,42664,'blocks_19_options_theme','#ffffff'),(337034,42664,'_blocks_19_options_theme','field_6176830e2ad17'),(337035,42664,'blocks_19_options',''),(337036,42664,'_blocks_19_options','field_6176830e2ad16'),(337037,42664,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(337038,42664,'_blocks_19_text_block_heading','field_617669d413097'),(337039,42664,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(337040,42664,'_blocks_19_text_block_content','field_617669ec13098'),(337041,42664,'blocks_6_acfe_flexible_toggle',''),(337042,42664,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337043,42664,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(337044,42664,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337045,42664,'blocks_6_options_theme','#f5f5f5'),(337046,42664,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(337047,42664,'blocks_6_options_reverse','1'),(337048,42664,'_blocks_6_options_reverse','field_61768049bb8ac'),(337049,42664,'blocks_6_options',''),(337050,42664,'_blocks_6_options','field_617682517c334'),(337051,42664,'blocks_6_split_5050_image','41502'),(337052,42664,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(337053,42664,'blocks_6_split_5050_video',''),(337054,42664,'_blocks_6_split_5050_video','field_6239f3160848a'),(337055,42664,'blocks_6_split_5050_content_title','Research & Academia'),(337056,42664,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(337057,42664,'blocks_6_split_5050_content_heading',''),(337058,42664,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(337059,42664,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(337060,42664,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(337061,42664,'blocks_6_split_5050_content_actions',''),(337062,42664,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(337063,42664,'blocks_6_split_5050_content',''),(337064,42664,'_blocks_6_split_5050_content','field_61767afceb8ba'),(337065,42664,'blocks_5_acfe_flexible_toggle',''),(337066,42664,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337067,42664,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(337068,42664,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337069,42664,'blocks_5_options_theme','#f5f5f5'),(337070,42664,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(337071,42664,'blocks_5_options_reverse','1'),(337072,42664,'_blocks_5_options_reverse','field_61768049bb8ac'),(337073,42664,'blocks_5_options',''),(337074,42664,'_blocks_5_options','field_617682517c334'),(337075,42664,'blocks_5_split_5050_image','41539'),(337076,42664,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(337077,42664,'blocks_5_split_5050_video',''),(337078,42664,'_blocks_5_split_5050_video','field_6239f3160848a'),(337079,42664,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(337080,42664,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(337081,42664,'blocks_5_split_5050_content_heading',''),(337082,42664,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(337083,42664,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(337084,42664,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(337085,42664,'blocks_5_split_5050_content_actions',''),(337086,42664,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(337087,42664,'blocks_5_split_5050_content',''),(337088,42664,'_blocks_5_split_5050_content','field_61767afceb8ba'),(337089,42664,'blocks_14_acfe_flexible_toggle',''),(337090,42664,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337091,42664,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (4) '),(337092,42664,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337093,42664,'blocks_14_options_theme','#ffffff'),(337094,42664,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(337095,42664,'blocks_14_options_reverse','1'),(337096,42664,'_blocks_14_options_reverse','field_61768049bb8ac'),(337097,42664,'blocks_14_options',''),(337098,42664,'_blocks_14_options','field_617682517c334'),(337099,42664,'blocks_14_split_5050_image','41490'),(337100,42664,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(337101,42664,'blocks_14_split_5050_video',''),(337102,42664,'_blocks_14_split_5050_video','field_6239f3160848a'),(337103,42664,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(337104,42664,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(337105,42664,'blocks_14_split_5050_content_heading',''),(337106,42664,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(337107,42664,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(337108,42664,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(337109,42664,'blocks_14_split_5050_content_actions',''),(337110,42664,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(337111,42664,'blocks_14_split_5050_content',''),(337112,42664,'_blocks_14_split_5050_content','field_61767afceb8ba'),(337113,42664,'blocks_20_acfe_flexible_toggle',''),(337114,42664,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337115,42664,'blocks_20_acfe_flexible_layout_title','Conclusion'),(337116,42664,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337117,42664,'blocks_20_options_theme','#b61234'),(337118,42664,'_blocks_20_options_theme','field_6176830e2ad17'),(337119,42664,'blocks_20_options',''),(337120,42664,'_blocks_20_options','field_6176830e2ad16'),(337121,42664,'blocks_20_text_block_heading','Conclusion'),(337122,42664,'_blocks_20_text_block_heading','field_617669d413097'),(337123,42664,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(337124,42664,'_blocks_20_text_block_content','field_617669ec13098'),(337125,42664,'blocks_10_acfe_flexible_toggle',''),(337126,42664,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337127,42664,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(337128,42664,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337129,42664,'blocks_10_options_theme','#ffffff'),(337130,42664,'_blocks_10_options_theme','field_6176830e2ad17'),(337131,42664,'blocks_10_options',''),(337132,42664,'_blocks_10_options','field_6176830e2ad16'),(337133,42664,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(337134,42664,'_blocks_10_text_block_heading','field_617669d413097'),(337135,42664,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(337136,42664,'_blocks_10_text_block_content','field_617669ec13098'),(337137,42664,'blocks_2_acfe_flexible_toggle',''),(337138,42664,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337139,42664,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(337140,42664,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337141,42664,'blocks_2_options_theme','#f5f5f5'),(337142,42664,'_blocks_2_options_theme','field_6176830e2ad17'),(337143,42664,'blocks_2_options',''),(337144,42664,'_blocks_2_options','field_6176830e2ad16'),(337145,42664,'blocks_2_text_block_heading','Define Your Career Goals'),(337146,42664,'_blocks_2_text_block_heading','field_617669d413097'),(337147,42664,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(337148,42664,'_blocks_2_text_block_content','field_617669ec13098'),(337149,42664,'blocks_4_acfe_flexible_toggle',''),(337150,42664,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337151,42664,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(337152,42664,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337153,42664,'blocks_4_options_theme','#f5f5f5'),(337154,42664,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(337155,42664,'blocks_4_options_reverse','1'),(337156,42664,'_blocks_4_options_reverse','field_61768049bb8ac'),(337157,42664,'blocks_4_options',''),(337158,42664,'_blocks_4_options','field_617682517c334'),(337159,42664,'blocks_4_split_5050_image','41505'),(337160,42664,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(337161,42664,'blocks_4_split_5050_video',''),(337162,42664,'_blocks_4_split_5050_video','field_6239f3160848a'),(337163,42664,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(337164,42664,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(337165,42664,'blocks_4_split_5050_content_heading',''),(337166,42664,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(337167,42664,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(337168,42664,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(337169,42664,'blocks_4_split_5050_content_actions',''),(337170,42664,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(337171,42664,'blocks_4_split_5050_content',''),(337172,42664,'_blocks_4_split_5050_content','field_61767afceb8ba'),(337173,42664,'blocks_7_acfe_flexible_toggle',''),(337174,42664,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(337175,42664,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(337176,42664,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(337177,42664,'blocks_7_options_theme','#ffffff'),(337178,42664,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(337179,42664,'blocks_7_options_state','1'),(337180,42664,'_blocks_7_options_state','field_6239fcb7508c5'),(337181,42664,'blocks_7_options',''),(337182,42664,'_blocks_7_options','field_6177e2991ac44'),(337183,42664,'blocks_7_content_title',''),(337184,42664,'_blocks_7_content_title','field_64d237e8bb1e2'),(337185,42664,'blocks_7_content_heading','Evaluate Course Content'),(337186,42664,'_blocks_7_content_heading','field_64d237e8bb1e3'),(337187,42664,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(337188,42664,'_blocks_7_content_text','field_64d237e8bb1e4'),(337189,42664,'blocks_7_content_actions',''),(337190,42664,'_blocks_7_content_actions','field_64d237e8bb1e5'),(337191,42664,'blocks_7_content_align','left'),(337192,42664,'_blocks_7_content_align','field_64d2443e6b6aa'),(337193,42664,'blocks_7_content',''),(337194,42664,'_blocks_7_content','field_64d237e8bb1e1'),(337195,42664,'blocks_7_accordion_content','custom'),(337196,42664,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(337197,42664,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(337198,42664,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(337199,42664,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(337200,42664,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(337201,42664,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(337202,42664,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(337203,42664,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(337204,42664,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(337205,42664,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(337206,42664,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(337207,42664,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(337208,42664,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(337209,42664,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(337210,42664,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(337211,42664,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(337212,42664,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(337213,42664,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(337214,42664,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(337215,42664,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(337216,42664,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(337217,42664,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(337218,42664,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(337219,42664,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(337220,42664,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(337221,42664,'blocks_7_accordion_items','6'),(337222,42664,'_blocks_7_accordion_items','field_6177e2991ac4c'),(337223,42664,'blocks_7_actions',''),(337224,42664,'_blocks_7_actions','field_61a746a817f7a'),(337225,42664,'blocks_8_acfe_flexible_toggle',''),(337226,42664,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337227,42664,'blocks_8_acfe_flexible_layout_title','Text Block'),(337228,42664,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337229,42664,'blocks_8_options_theme','#ffffff'),(337230,42664,'_blocks_8_options_theme','field_6176830e2ad17'),(337231,42664,'blocks_8_options',''),(337232,42664,'_blocks_8_options','field_6176830e2ad16'),(337233,42664,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(337234,42664,'_blocks_8_text_block_heading','field_617669d413097'),(337235,42664,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(337236,42664,'_blocks_8_text_block_content','field_617669ec13098'),(337237,42664,'blocks_9_acfe_flexible_toggle',''),(337238,42664,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(337239,42664,'blocks_9_acfe_flexible_layout_title','Icons'),(337240,42664,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(337241,42664,'blocks_9_options_theme','#b61234'),(337242,42664,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(337243,42664,'blocks_9_options_format','row'),(337244,42664,'_blocks_9_options_format','field_64bfde9a90690'),(337245,42664,'blocks_9_options',''),(337246,42664,'_blocks_9_options','field_64bfdd9b90684'),(337247,42664,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(337248,42664,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(337249,42664,'blocks_9_icon_row_items_0_label','Industry Recognition'),(337250,42664,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(337251,42664,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(337252,42664,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(337253,42664,'blocks_9_icon_row_items_1_icon','qualification.svg'),(337254,42664,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(337255,42664,'blocks_9_icon_row_items_1_label','University Accreditation'),(337256,42664,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(337257,42664,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(337258,42664,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(337259,42664,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(337260,42664,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(337261,42664,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(337262,42664,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(337263,42664,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(337264,42664,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(337265,42664,'blocks_9_icon_row_items','3'),(337266,42664,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(337267,42664,'blocks_11_acfe_flexible_toggle',''),(337268,42664,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337269,42664,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(337270,42664,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337271,42664,'blocks_11_options_theme','#ffffff'),(337272,42664,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(337273,42664,'blocks_11_options_reverse','1'),(337274,42664,'_blocks_11_options_reverse','field_61768049bb8ac'),(337275,42664,'blocks_11_options',''),(337276,42664,'_blocks_11_options','field_617682517c334'),(337277,42664,'blocks_11_split_5050_image','41498'),(337278,42664,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(337279,42664,'blocks_11_split_5050_video',''),(337280,42664,'_blocks_11_split_5050_video','field_6239f3160848a'),(337281,42664,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(337282,42664,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(337283,42664,'blocks_11_split_5050_content_heading',''),(337284,42664,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(337285,42664,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(337286,42664,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(337287,42664,'blocks_11_split_5050_content_actions',''),(337288,42664,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(337289,42664,'blocks_11_split_5050_content',''),(337290,42664,'_blocks_11_split_5050_content','field_61767afceb8ba'),(337291,42664,'blocks_12_acfe_flexible_toggle',''),(337292,42664,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337293,42664,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(337294,42664,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337295,42664,'blocks_12_options_theme','#ffffff'),(337296,42664,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(337297,42664,'blocks_12_options_reverse','1'),(337298,42664,'_blocks_12_options_reverse','field_61768049bb8ac'),(337299,42664,'blocks_12_options',''),(337300,42664,'_blocks_12_options','field_617682517c334'),(337301,42664,'blocks_12_split_5050_image','40387'),(337302,42664,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(337303,42664,'blocks_12_split_5050_video',''),(337304,42664,'_blocks_12_split_5050_video','field_6239f3160848a'),(337305,42664,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(337306,42664,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(337307,42664,'blocks_12_split_5050_content_heading',''),(337308,42664,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(337309,42664,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(337310,42664,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(337311,42664,'blocks_12_split_5050_content_actions',''),(337312,42664,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(337313,42664,'blocks_12_split_5050_content',''),(337314,42664,'_blocks_12_split_5050_content','field_61767afceb8ba'),(337315,42664,'blocks_15_acfe_flexible_toggle',''),(337316,42664,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337317,42664,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(337318,42664,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337319,42664,'blocks_15_options_theme','#b61234'),(337320,42664,'_blocks_15_options_theme','field_6176830e2ad17'),(337321,42664,'blocks_15_options',''),(337322,42664,'_blocks_15_options','field_6176830e2ad16'),(337323,42664,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(337324,42664,'_blocks_15_text_block_heading','field_617669d413097'),(337325,42664,'blocks_15_text_block_content',''),(337326,42664,'_blocks_15_text_block_content','field_617669ec13098'),(337327,42664,'blocks_16_acfe_flexible_toggle',''),(337328,42664,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(337329,42664,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(337330,42664,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(337331,42664,'blocks_16_options_theme','#b61234'),(337332,42664,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(337333,42664,'blocks_16_options_format','row'),(337334,42664,'_blocks_16_options_format','field_64bfde9a90690'),(337335,42664,'blocks_16_options',''),(337336,42664,'_blocks_16_options','field_64bfdd9b90684'),(337337,42664,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(337338,42664,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(337339,42664,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(337340,42664,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(337341,42664,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(337342,42664,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(337343,42664,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(337344,42664,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(337345,42664,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(337346,42664,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(337347,42664,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(337348,42664,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(337349,42664,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(337350,42664,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(337351,42664,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(337352,42664,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(337353,42664,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(337354,42664,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(337355,42664,'blocks_16_icon_row_items_3_icon','recognised.svg'),(337356,42664,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(337357,42664,'blocks_16_icon_row_items_3_label','Optimised Performance'),(337358,42664,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(337359,42664,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(337360,42664,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(337361,42664,'blocks_16_icon_row_items','4'),(337362,42664,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(337363,42664,'blocks_17_acfe_flexible_toggle',''),(337364,42664,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337365,42664,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(337366,42664,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337367,42664,'blocks_17_options_theme','#ffffff'),(337368,42664,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(337369,42664,'blocks_17_options_reverse','0'),(337370,42664,'_blocks_17_options_reverse','field_61768049bb8ac'),(337371,42664,'blocks_17_options',''),(337372,42664,'_blocks_17_options','field_617682517c334'),(337373,42664,'blocks_17_split_5050_image','41501'),(337374,42664,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(337375,42664,'blocks_17_split_5050_video',''),(337376,42664,'_blocks_17_split_5050_video','field_6239f3160848a'),(337377,42664,'blocks_17_split_5050_content_title',''),(337378,42664,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(337379,42664,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(337380,42664,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(337381,42664,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(337382,42664,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(337383,42664,'blocks_17_split_5050_content_actions',''),(337384,42664,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(337385,42664,'blocks_17_split_5050_content',''),(337386,42664,'_blocks_17_split_5050_content','field_61767afceb8ba'),(337387,42664,'blocks_18_acfe_flexible_toggle',''),(337388,42664,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337389,42664,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(337390,42664,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337391,42664,'blocks_18_options_theme','#ffffff'),(337392,42664,'_blocks_18_options_theme','field_6176830e2ad17'),(337393,42664,'blocks_18_options',''),(337394,42664,'_blocks_18_options','field_6176830e2ad16'),(337395,42664,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(337396,42664,'_blocks_18_text_block_heading','field_617669d413097'),(337397,42664,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(337398,42664,'_blocks_18_text_block_content','field_617669ec13098'),(337399,42664,'blocks_21_acfe_flexible_toggle',''),(337400,42664,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(337401,42664,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(337402,42664,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(337403,42664,'blocks_21_options_alignment','center'),(337404,42664,'_blocks_21_options_alignment','field_61769449f5490'),(337405,42664,'blocks_21_options',''),(337406,42664,'_blocks_21_options','field_617693e1428f0'),(337407,42664,'blocks_21_promo_panel_image','41307'),(337408,42664,'_blocks_21_promo_panel_image','field_617693e1428f3'),(337409,42664,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(337410,42664,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(337411,42664,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(337412,42664,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(337413,42664,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(337414,42664,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(337415,42664,'blocks_21_promo_panel_content_actions','1'),(337416,42664,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(337417,42664,'blocks_21_promo_panel_content',''),(337418,42664,'_blocks_21_promo_panel_content','field_617693e1428f4'),(337419,42665,'hide_hero','0'),(337420,42665,'_hide_hero','field_66a2380fcda39'),(337421,42665,'hero_title',''),(337422,42665,'_hero_title','field_617571fe285e8'),(337423,42665,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(337424,42665,'_hero_text','field_6175723c285e9'),(337425,42665,'hero_actions',''),(337426,42665,'_hero_actions','field_61757270285ea'),(337427,42665,'hero_style','default'),(337428,42665,'_hero_style','field_62051d9dc5324'),(337429,42665,'hero_image_pos_x','right'),(337430,42665,'_hero_image_pos_x','field_62ec3d05390bb'),(337431,42665,'hero_image_pos_y','top'),(337432,42665,'_hero_image_pos_y','field_62ec3d05390bc'),(337433,42665,'hero_image_pos',''),(337434,42665,'_hero_image_pos','field_62ec3d05390ba'),(337435,42665,'fft_hide_from_listings','0'),(337436,42665,'_fft_hide_from_listings','field_61f1320446ab2'),(337437,42665,'post_format','402'),(337438,42665,'_post_format','field_61756bfb51898'),(337439,42665,'post_author',''),(337440,42665,'_post_author','field_62ec389d22113'),(337441,42665,'post_reviewer',''),(337442,42665,'_post_reviewer','field_627140a2a9800'),(337443,42665,'post_table_of_contents','0'),(337444,42665,'_post_table_of_contents','field_65c503bc846a6'),(337445,42665,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(337446,42665,'_blocks','field_6176696113096'),(337447,42665,'_thumbnail_id','40618'),(337448,42665,'__thumbnail_id','field_617570855ddaf'),(337449,42665,'blocks_0_acfe_flexible_toggle',''),(337450,42665,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(337451,42665,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(337452,42665,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(337453,42665,'blocks_0_options_theme','#ffffff'),(337454,42665,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(337455,42665,'blocks_0_options',''),(337456,42665,'_blocks_0_options','field_6177b758246ae'),(337457,42665,'blocks_0_link_stack_content_title',''),(337458,42665,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(337459,42665,'blocks_0_link_stack_content_heading','Introduction'),(337460,42665,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(337461,42665,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(337462,42665,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(337463,42665,'blocks_0_link_stack_content_actions_0_button',''),(337464,42665,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(337465,42665,'blocks_0_link_stack_content_actions','1'),(337466,42665,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(337467,42665,'blocks_0_link_stack_content',''),(337468,42665,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(337469,42665,'blocks_0_link_stack_0_label','1.'),(337470,42665,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(337471,42665,'blocks_0_link_stack_0_title','Overview'),(337472,42665,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(337473,42665,'blocks_0_link_stack_0_url','#overview'),(337474,42665,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(337475,42665,'blocks_0_link_stack_1_label','2.'),(337476,42665,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(337477,42665,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(337478,42665,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(337479,42665,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(337480,42665,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(337481,42665,'blocks_0_link_stack_2_label','3.'),(337482,42665,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(337483,42665,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(337484,42665,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(337485,42665,'blocks_0_link_stack_2_url','#who-should-study-msk'),(337486,42665,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(337487,42665,'blocks_0_link_stack_3_label','4.'),(337488,42665,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(337489,42665,'blocks_0_link_stack_3_title','Common MSK Conditions'),(337490,42665,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(337491,42665,'blocks_0_link_stack_3_url','#common-msk-conditions'),(337492,42665,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(337493,42665,'blocks_0_link_stack_4_label','5.'),(337494,42665,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(337495,42665,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(337496,42665,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(337497,42665,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(337498,42665,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(337499,42665,'blocks_0_link_stack_5_label','6.'),(337500,42665,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(337501,42665,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(337502,42665,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(337503,42665,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(337504,42665,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(337505,42665,'blocks_0_link_stack','6'),(337506,42665,'_blocks_0_link_stack','field_6177b7f600cff'),(337507,42665,'blocks_1_acfe_flexible_toggle',''),(337508,42665,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337509,42665,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(337510,42665,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337511,42665,'blocks_1_options_theme','#ffffff'),(337512,42665,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(337513,42665,'blocks_1_options_reverse','0'),(337514,42665,'_blocks_1_options_reverse','field_61768049bb8ac'),(337515,42665,'blocks_1_options',''),(337516,42665,'_blocks_1_options','field_617682517c334'),(337517,42665,'blocks_1_split_5050_image','40615'),(337518,42665,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(337519,42665,'blocks_1_split_5050_video',''),(337520,42665,'_blocks_1_split_5050_video','field_6239f3160848a'),(337521,42665,'blocks_1_split_5050_content_title',''),(337522,42665,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(337523,42665,'blocks_1_split_5050_content_heading','Overview'),(337524,42665,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(337525,42665,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(337526,42665,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(337527,42665,'blocks_1_split_5050_content_actions',''),(337528,42665,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(337529,42665,'blocks_1_split_5050_content',''),(337530,42665,'_blocks_1_split_5050_content','field_61767afceb8ba'),(337531,42665,'blocks_3_acfe_flexible_toggle',''),(337532,42665,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337533,42665,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(337534,42665,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337535,42665,'blocks_3_options_theme','#f5f5f5'),(337536,42665,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(337537,42665,'blocks_3_options_reverse','1'),(337538,42665,'_blocks_3_options_reverse','field_61768049bb8ac'),(337539,42665,'blocks_3_options',''),(337540,42665,'_blocks_3_options','field_617682517c334'),(337541,42665,'blocks_3_split_5050_image','41542'),(337542,42665,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(337543,42665,'blocks_3_split_5050_video',''),(337544,42665,'_blocks_3_split_5050_video','field_6239f3160848a'),(337545,42665,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(337546,42665,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(337547,42665,'blocks_3_split_5050_content_heading',''),(337548,42665,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(337549,42665,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(337550,42665,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(337551,42665,'blocks_3_split_5050_content_actions',''),(337552,42665,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(337553,42665,'blocks_3_split_5050_content',''),(337554,42665,'_blocks_3_split_5050_content','field_61767afceb8ba'),(337555,42665,'blocks_13_acfe_flexible_toggle',''),(337556,42665,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337557,42665,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(337558,42665,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337559,42665,'blocks_13_options_theme','#ffffff'),(337560,42665,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(337561,42665,'blocks_13_options_reverse','1'),(337562,42665,'_blocks_13_options_reverse','field_61768049bb8ac'),(337563,42665,'blocks_13_options',''),(337564,42665,'_blocks_13_options','field_617682517c334'),(337565,42665,'blocks_13_split_5050_image','18856'),(337566,42665,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(337567,42665,'blocks_13_split_5050_video',''),(337568,42665,'_blocks_13_split_5050_video','field_6239f3160848a'),(337569,42665,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(337570,42665,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(337571,42665,'blocks_13_split_5050_content_heading',''),(337572,42665,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(337573,42665,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(337574,42665,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(337575,42665,'blocks_13_split_5050_content_actions',''),(337576,42665,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(337577,42665,'blocks_13_split_5050_content',''),(337578,42665,'_blocks_13_split_5050_content','field_61767afceb8ba'),(337579,42665,'blocks_19_acfe_flexible_toggle',''),(337580,42665,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337581,42665,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(337582,42665,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337583,42665,'blocks_19_options_theme','#ffffff'),(337584,42665,'_blocks_19_options_theme','field_6176830e2ad17'),(337585,42665,'blocks_19_options',''),(337586,42665,'_blocks_19_options','field_6176830e2ad16'),(337587,42665,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(337588,42665,'_blocks_19_text_block_heading','field_617669d413097'),(337589,42665,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(337590,42665,'_blocks_19_text_block_content','field_617669ec13098'),(337591,42665,'blocks_6_acfe_flexible_toggle',''),(337592,42665,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337593,42665,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(337594,42665,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337595,42665,'blocks_6_options_theme','#f5f5f5'),(337596,42665,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(337597,42665,'blocks_6_options_reverse','1'),(337598,42665,'_blocks_6_options_reverse','field_61768049bb8ac'),(337599,42665,'blocks_6_options',''),(337600,42665,'_blocks_6_options','field_617682517c334'),(337601,42665,'blocks_6_split_5050_image','41502'),(337602,42665,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(337603,42665,'blocks_6_split_5050_video',''),(337604,42665,'_blocks_6_split_5050_video','field_6239f3160848a'),(337605,42665,'blocks_6_split_5050_content_title','Research & Academia'),(337606,42665,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(337607,42665,'blocks_6_split_5050_content_heading',''),(337608,42665,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(337609,42665,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(337610,42665,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(337611,42665,'blocks_6_split_5050_content_actions',''),(337612,42665,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(337613,42665,'blocks_6_split_5050_content',''),(337614,42665,'_blocks_6_split_5050_content','field_61767afceb8ba'),(337615,42665,'blocks_5_acfe_flexible_toggle',''),(337616,42665,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337617,42665,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(337618,42665,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337619,42665,'blocks_5_options_theme','#f5f5f5'),(337620,42665,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(337621,42665,'blocks_5_options_reverse','1'),(337622,42665,'_blocks_5_options_reverse','field_61768049bb8ac'),(337623,42665,'blocks_5_options',''),(337624,42665,'_blocks_5_options','field_617682517c334'),(337625,42665,'blocks_5_split_5050_image','41539'),(337626,42665,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(337627,42665,'blocks_5_split_5050_video',''),(337628,42665,'_blocks_5_split_5050_video','field_6239f3160848a'),(337629,42665,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(337630,42665,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(337631,42665,'blocks_5_split_5050_content_heading',''),(337632,42665,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(337633,42665,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(337634,42665,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(337635,42665,'blocks_5_split_5050_content_actions',''),(337636,42665,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(337637,42665,'blocks_5_split_5050_content',''),(337638,42665,'_blocks_5_split_5050_content','field_61767afceb8ba'),(337639,42665,'blocks_14_acfe_flexible_toggle',''),(337640,42665,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337641,42665,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (4) '),(337642,42665,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337643,42665,'blocks_14_options_theme','#ffffff'),(337644,42665,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(337645,42665,'blocks_14_options_reverse','1'),(337646,42665,'_blocks_14_options_reverse','field_61768049bb8ac'),(337647,42665,'blocks_14_options',''),(337648,42665,'_blocks_14_options','field_617682517c334'),(337649,42665,'blocks_14_split_5050_image','41490'),(337650,42665,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(337651,42665,'blocks_14_split_5050_video',''),(337652,42665,'_blocks_14_split_5050_video','field_6239f3160848a'),(337653,42665,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(337654,42665,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(337655,42665,'blocks_14_split_5050_content_heading',''),(337656,42665,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(337657,42665,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(337658,42665,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(337659,42665,'blocks_14_split_5050_content_actions',''),(337660,42665,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(337661,42665,'blocks_14_split_5050_content',''),(337662,42665,'_blocks_14_split_5050_content','field_61767afceb8ba'),(337663,42665,'blocks_20_acfe_flexible_toggle',''),(337664,42665,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337665,42665,'blocks_20_acfe_flexible_layout_title','Conclusion'),(337666,42665,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337667,42665,'blocks_20_options_theme','#b61234'),(337668,42665,'_blocks_20_options_theme','field_6176830e2ad17'),(337669,42665,'blocks_20_options',''),(337670,42665,'_blocks_20_options','field_6176830e2ad16'),(337671,42665,'blocks_20_text_block_heading','Conclusion'),(337672,42665,'_blocks_20_text_block_heading','field_617669d413097'),(337673,42665,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(337674,42665,'_blocks_20_text_block_content','field_617669ec13098'),(337675,42665,'blocks_10_acfe_flexible_toggle',''),(337676,42665,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337677,42665,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(337678,42665,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337679,42665,'blocks_10_options_theme','#ffffff'),(337680,42665,'_blocks_10_options_theme','field_6176830e2ad17'),(337681,42665,'blocks_10_options',''),(337682,42665,'_blocks_10_options','field_6176830e2ad16'),(337683,42665,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(337684,42665,'_blocks_10_text_block_heading','field_617669d413097'),(337685,42665,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(337686,42665,'_blocks_10_text_block_content','field_617669ec13098'),(337687,42665,'blocks_2_acfe_flexible_toggle',''),(337688,42665,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337689,42665,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(337690,42665,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337691,42665,'blocks_2_options_theme','#f5f5f5'),(337692,42665,'_blocks_2_options_theme','field_6176830e2ad17'),(337693,42665,'blocks_2_options',''),(337694,42665,'_blocks_2_options','field_6176830e2ad16'),(337695,42665,'blocks_2_text_block_heading','Define Your Career Goals'),(337696,42665,'_blocks_2_text_block_heading','field_617669d413097'),(337697,42665,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(337698,42665,'_blocks_2_text_block_content','field_617669ec13098'),(337699,42665,'blocks_4_acfe_flexible_toggle',''),(337700,42665,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337701,42665,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(337702,42665,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337703,42665,'blocks_4_options_theme','#f5f5f5'),(337704,42665,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(337705,42665,'blocks_4_options_reverse','1'),(337706,42665,'_blocks_4_options_reverse','field_61768049bb8ac'),(337707,42665,'blocks_4_options',''),(337708,42665,'_blocks_4_options','field_617682517c334'),(337709,42665,'blocks_4_split_5050_image','41505'),(337710,42665,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(337711,42665,'blocks_4_split_5050_video',''),(337712,42665,'_blocks_4_split_5050_video','field_6239f3160848a'),(337713,42665,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(337714,42665,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(337715,42665,'blocks_4_split_5050_content_heading',''),(337716,42665,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(337717,42665,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(337718,42665,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(337719,42665,'blocks_4_split_5050_content_actions',''),(337720,42665,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(337721,42665,'blocks_4_split_5050_content',''),(337722,42665,'_blocks_4_split_5050_content','field_61767afceb8ba'),(337723,42665,'blocks_7_acfe_flexible_toggle',''),(337724,42665,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(337725,42665,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(337726,42665,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(337727,42665,'blocks_7_options_theme','#ffffff'),(337728,42665,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(337729,42665,'blocks_7_options_state','1'),(337730,42665,'_blocks_7_options_state','field_6239fcb7508c5'),(337731,42665,'blocks_7_options',''),(337732,42665,'_blocks_7_options','field_6177e2991ac44'),(337733,42665,'blocks_7_content_title',''),(337734,42665,'_blocks_7_content_title','field_64d237e8bb1e2'),(337735,42665,'blocks_7_content_heading','Evaluate Course Content'),(337736,42665,'_blocks_7_content_heading','field_64d237e8bb1e3'),(337737,42665,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(337738,42665,'_blocks_7_content_text','field_64d237e8bb1e4'),(337739,42665,'blocks_7_content_actions',''),(337740,42665,'_blocks_7_content_actions','field_64d237e8bb1e5'),(337741,42665,'blocks_7_content_align','left'),(337742,42665,'_blocks_7_content_align','field_64d2443e6b6aa'),(337743,42665,'blocks_7_content',''),(337744,42665,'_blocks_7_content','field_64d237e8bb1e1'),(337745,42665,'blocks_7_accordion_content','custom'),(337746,42665,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(337747,42665,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(337748,42665,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(337749,42665,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(337750,42665,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(337751,42665,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(337752,42665,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(337753,42665,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(337754,42665,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(337755,42665,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(337756,42665,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(337757,42665,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(337758,42665,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(337759,42665,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(337760,42665,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(337761,42665,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(337762,42665,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(337763,42665,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(337764,42665,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(337765,42665,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(337766,42665,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(337767,42665,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(337768,42665,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(337769,42665,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(337770,42665,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(337771,42665,'blocks_7_accordion_items','6'),(337772,42665,'_blocks_7_accordion_items','field_6177e2991ac4c'),(337773,42665,'blocks_7_actions',''),(337774,42665,'_blocks_7_actions','field_61a746a817f7a'),(337775,42665,'blocks_8_acfe_flexible_toggle',''),(337776,42665,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337777,42665,'blocks_8_acfe_flexible_layout_title','Text Block'),(337778,42665,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337779,42665,'blocks_8_options_theme','#b61234'),(337780,42665,'_blocks_8_options_theme','field_6176830e2ad17'),(337781,42665,'blocks_8_options',''),(337782,42665,'_blocks_8_options','field_6176830e2ad16'),(337783,42665,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(337784,42665,'_blocks_8_text_block_heading','field_617669d413097'),(337785,42665,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(337786,42665,'_blocks_8_text_block_content','field_617669ec13098'),(337787,42665,'blocks_9_acfe_flexible_toggle',''),(337788,42665,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(337789,42665,'blocks_9_acfe_flexible_layout_title','Icons'),(337790,42665,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(337791,42665,'blocks_9_options_theme','#b61234'),(337792,42665,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(337793,42665,'blocks_9_options_format','row'),(337794,42665,'_blocks_9_options_format','field_64bfde9a90690'),(337795,42665,'blocks_9_options',''),(337796,42665,'_blocks_9_options','field_64bfdd9b90684'),(337797,42665,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(337798,42665,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(337799,42665,'blocks_9_icon_row_items_0_label','Industry Recognition'),(337800,42665,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(337801,42665,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(337802,42665,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(337803,42665,'blocks_9_icon_row_items_1_icon','qualification.svg'),(337804,42665,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(337805,42665,'blocks_9_icon_row_items_1_label','University Accreditation'),(337806,42665,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(337807,42665,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(337808,42665,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(337809,42665,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(337810,42665,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(337811,42665,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(337812,42665,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(337813,42665,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(337814,42665,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(337815,42665,'blocks_9_icon_row_items','3'),(337816,42665,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(337817,42665,'blocks_11_acfe_flexible_toggle',''),(337818,42665,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337819,42665,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(337820,42665,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337821,42665,'blocks_11_options_theme','#ffffff'),(337822,42665,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(337823,42665,'blocks_11_options_reverse','1'),(337824,42665,'_blocks_11_options_reverse','field_61768049bb8ac'),(337825,42665,'blocks_11_options',''),(337826,42665,'_blocks_11_options','field_617682517c334'),(337827,42665,'blocks_11_split_5050_image','41498'),(337828,42665,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(337829,42665,'blocks_11_split_5050_video',''),(337830,42665,'_blocks_11_split_5050_video','field_6239f3160848a'),(337831,42665,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(337832,42665,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(337833,42665,'blocks_11_split_5050_content_heading',''),(337834,42665,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(337835,42665,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(337836,42665,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(337837,42665,'blocks_11_split_5050_content_actions',''),(337838,42665,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(337839,42665,'blocks_11_split_5050_content',''),(337840,42665,'_blocks_11_split_5050_content','field_61767afceb8ba'),(337841,42665,'blocks_12_acfe_flexible_toggle',''),(337842,42665,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337843,42665,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(337844,42665,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337845,42665,'blocks_12_options_theme','#ffffff'),(337846,42665,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(337847,42665,'blocks_12_options_reverse','1'),(337848,42665,'_blocks_12_options_reverse','field_61768049bb8ac'),(337849,42665,'blocks_12_options',''),(337850,42665,'_blocks_12_options','field_617682517c334'),(337851,42665,'blocks_12_split_5050_image','40387'),(337852,42665,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(337853,42665,'blocks_12_split_5050_video',''),(337854,42665,'_blocks_12_split_5050_video','field_6239f3160848a'),(337855,42665,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(337856,42665,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(337857,42665,'blocks_12_split_5050_content_heading',''),(337858,42665,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(337859,42665,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(337860,42665,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(337861,42665,'blocks_12_split_5050_content_actions',''),(337862,42665,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(337863,42665,'blocks_12_split_5050_content',''),(337864,42665,'_blocks_12_split_5050_content','field_61767afceb8ba'),(337865,42665,'blocks_15_acfe_flexible_toggle',''),(337866,42665,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337867,42665,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(337868,42665,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337869,42665,'blocks_15_options_theme','#b61234'),(337870,42665,'_blocks_15_options_theme','field_6176830e2ad17'),(337871,42665,'blocks_15_options',''),(337872,42665,'_blocks_15_options','field_6176830e2ad16'),(337873,42665,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(337874,42665,'_blocks_15_text_block_heading','field_617669d413097'),(337875,42665,'blocks_15_text_block_content',''),(337876,42665,'_blocks_15_text_block_content','field_617669ec13098'),(337877,42665,'blocks_16_acfe_flexible_toggle',''),(337878,42665,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(337879,42665,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(337880,42665,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(337881,42665,'blocks_16_options_theme','#b61234'),(337882,42665,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(337883,42665,'blocks_16_options_format','row'),(337884,42665,'_blocks_16_options_format','field_64bfde9a90690'),(337885,42665,'blocks_16_options',''),(337886,42665,'_blocks_16_options','field_64bfdd9b90684'),(337887,42665,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(337888,42665,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(337889,42665,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(337890,42665,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(337891,42665,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(337892,42665,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(337893,42665,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(337894,42665,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(337895,42665,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(337896,42665,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(337897,42665,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(337898,42665,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(337899,42665,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(337900,42665,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(337901,42665,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(337902,42665,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(337903,42665,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(337904,42665,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(337905,42665,'blocks_16_icon_row_items_3_icon','recognised.svg'),(337906,42665,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(337907,42665,'blocks_16_icon_row_items_3_label','Optimised Performance'),(337908,42665,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(337909,42665,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(337910,42665,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(337911,42665,'blocks_16_icon_row_items','4'),(337912,42665,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(337913,42665,'blocks_17_acfe_flexible_toggle',''),(337914,42665,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(337915,42665,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(337916,42665,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(337917,42665,'blocks_17_options_theme','#ffffff'),(337918,42665,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(337919,42665,'blocks_17_options_reverse','0'),(337920,42665,'_blocks_17_options_reverse','field_61768049bb8ac'),(337921,42665,'blocks_17_options',''),(337922,42665,'_blocks_17_options','field_617682517c334'),(337923,42665,'blocks_17_split_5050_image','41501'),(337924,42665,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(337925,42665,'blocks_17_split_5050_video',''),(337926,42665,'_blocks_17_split_5050_video','field_6239f3160848a'),(337927,42665,'blocks_17_split_5050_content_title',''),(337928,42665,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(337929,42665,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(337930,42665,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(337931,42665,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(337932,42665,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(337933,42665,'blocks_17_split_5050_content_actions',''),(337934,42665,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(337935,42665,'blocks_17_split_5050_content',''),(337936,42665,'_blocks_17_split_5050_content','field_61767afceb8ba'),(337937,42665,'blocks_18_acfe_flexible_toggle',''),(337938,42665,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(337939,42665,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(337940,42665,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(337941,42665,'blocks_18_options_theme','#ffffff'),(337942,42665,'_blocks_18_options_theme','field_6176830e2ad17'),(337943,42665,'blocks_18_options',''),(337944,42665,'_blocks_18_options','field_6176830e2ad16'),(337945,42665,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(337946,42665,'_blocks_18_text_block_heading','field_617669d413097'),(337947,42665,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(337948,42665,'_blocks_18_text_block_content','field_617669ec13098'),(337949,42665,'blocks_21_acfe_flexible_toggle',''),(337950,42665,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(337951,42665,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(337952,42665,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(337953,42665,'blocks_21_options_alignment','center'),(337954,42665,'_blocks_21_options_alignment','field_61769449f5490'),(337955,42665,'blocks_21_options',''),(337956,42665,'_blocks_21_options','field_617693e1428f0'),(337957,42665,'blocks_21_promo_panel_image','41307'),(337958,42665,'_blocks_21_promo_panel_image','field_617693e1428f3'),(337959,42665,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(337960,42665,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(337961,42665,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(337962,42665,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(337963,42665,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(337964,42665,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(337965,42665,'blocks_21_promo_panel_content_actions','1'),(337966,42665,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(337967,42665,'blocks_21_promo_panel_content',''),(337968,42665,'_blocks_21_promo_panel_content','field_617693e1428f4'),(337969,42666,'hide_hero','0'),(337970,42666,'_hide_hero','field_66a2380fcda39'),(337971,42666,'hero_title',''),(337972,42666,'_hero_title','field_617571fe285e8'),(337973,42666,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(337974,42666,'_hero_text','field_6175723c285e9'),(337975,42666,'hero_actions',''),(337976,42666,'_hero_actions','field_61757270285ea'),(337977,42666,'hero_style','default'),(337978,42666,'_hero_style','field_62051d9dc5324'),(337979,42666,'hero_image_pos_x','right'),(337980,42666,'_hero_image_pos_x','field_62ec3d05390bb'),(337981,42666,'hero_image_pos_y','top'),(337982,42666,'_hero_image_pos_y','field_62ec3d05390bc'),(337983,42666,'hero_image_pos',''),(337984,42666,'_hero_image_pos','field_62ec3d05390ba'),(337985,42666,'fft_hide_from_listings','0'),(337986,42666,'_fft_hide_from_listings','field_61f1320446ab2'),(337987,42666,'post_format','402'),(337988,42666,'_post_format','field_61756bfb51898'),(337989,42666,'post_author',''),(337990,42666,'_post_author','field_62ec389d22113'),(337991,42666,'post_reviewer',''),(337992,42666,'_post_reviewer','field_627140a2a9800'),(337993,42666,'post_table_of_contents','0'),(337994,42666,'_post_table_of_contents','field_65c503bc846a6'),(337995,42666,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(337996,42666,'_blocks','field_6176696113096'),(337997,42666,'_thumbnail_id','40618'),(337998,42666,'__thumbnail_id','field_617570855ddaf'),(337999,42666,'blocks_0_acfe_flexible_toggle',''),(338000,42666,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(338001,42666,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(338002,42666,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(338003,42666,'blocks_0_options_theme','#ffffff'),(338004,42666,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(338005,42666,'blocks_0_options',''),(338006,42666,'_blocks_0_options','field_6177b758246ae'),(338007,42666,'blocks_0_link_stack_content_title',''),(338008,42666,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(338009,42666,'blocks_0_link_stack_content_heading','Introduction'),(338010,42666,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(338011,42666,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(338012,42666,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(338013,42666,'blocks_0_link_stack_content_actions_0_button',''),(338014,42666,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(338015,42666,'blocks_0_link_stack_content_actions','1'),(338016,42666,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(338017,42666,'blocks_0_link_stack_content',''),(338018,42666,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(338019,42666,'blocks_0_link_stack_0_label','1.'),(338020,42666,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(338021,42666,'blocks_0_link_stack_0_title','Overview'),(338022,42666,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(338023,42666,'blocks_0_link_stack_0_url','#overview'),(338024,42666,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(338025,42666,'blocks_0_link_stack_1_label','2.'),(338026,42666,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(338027,42666,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(338028,42666,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(338029,42666,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(338030,42666,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(338031,42666,'blocks_0_link_stack_2_label','3.'),(338032,42666,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(338033,42666,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(338034,42666,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(338035,42666,'blocks_0_link_stack_2_url','#who-should-study-msk'),(338036,42666,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(338037,42666,'blocks_0_link_stack_3_label','4.'),(338038,42666,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(338039,42666,'blocks_0_link_stack_3_title','Common MSK Conditions'),(338040,42666,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(338041,42666,'blocks_0_link_stack_3_url','#common-msk-conditions'),(338042,42666,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(338043,42666,'blocks_0_link_stack_4_label','5.'),(338044,42666,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(338045,42666,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(338046,42666,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(338047,42666,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(338048,42666,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(338049,42666,'blocks_0_link_stack_5_label','6.'),(338050,42666,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(338051,42666,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(338052,42666,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(338053,42666,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(338054,42666,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(338055,42666,'blocks_0_link_stack','6'),(338056,42666,'_blocks_0_link_stack','field_6177b7f600cff'),(338057,42666,'blocks_1_acfe_flexible_toggle',''),(338058,42666,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338059,42666,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(338060,42666,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338061,42666,'blocks_1_options_theme','#ffffff'),(338062,42666,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(338063,42666,'blocks_1_options_reverse','0'),(338064,42666,'_blocks_1_options_reverse','field_61768049bb8ac'),(338065,42666,'blocks_1_options',''),(338066,42666,'_blocks_1_options','field_617682517c334'),(338067,42666,'blocks_1_split_5050_image','40615'),(338068,42666,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(338069,42666,'blocks_1_split_5050_video',''),(338070,42666,'_blocks_1_split_5050_video','field_6239f3160848a'),(338071,42666,'blocks_1_split_5050_content_title',''),(338072,42666,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(338073,42666,'blocks_1_split_5050_content_heading','Overview'),(338074,42666,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(338075,42666,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(338076,42666,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(338077,42666,'blocks_1_split_5050_content_actions',''),(338078,42666,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(338079,42666,'blocks_1_split_5050_content',''),(338080,42666,'_blocks_1_split_5050_content','field_61767afceb8ba'),(338081,42666,'blocks_3_acfe_flexible_toggle',''),(338082,42666,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338083,42666,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(338084,42666,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338085,42666,'blocks_3_options_theme','#f5f5f5'),(338086,42666,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(338087,42666,'blocks_3_options_reverse','1'),(338088,42666,'_blocks_3_options_reverse','field_61768049bb8ac'),(338089,42666,'blocks_3_options',''),(338090,42666,'_blocks_3_options','field_617682517c334'),(338091,42666,'blocks_3_split_5050_image','41542'),(338092,42666,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(338093,42666,'blocks_3_split_5050_video',''),(338094,42666,'_blocks_3_split_5050_video','field_6239f3160848a'),(338095,42666,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(338096,42666,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(338097,42666,'blocks_3_split_5050_content_heading',''),(338098,42666,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(338099,42666,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(338100,42666,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(338101,42666,'blocks_3_split_5050_content_actions',''),(338102,42666,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(338103,42666,'blocks_3_split_5050_content',''),(338104,42666,'_blocks_3_split_5050_content','field_61767afceb8ba'),(338105,42666,'blocks_13_acfe_flexible_toggle',''),(338106,42666,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338107,42666,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(338108,42666,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338109,42666,'blocks_13_options_theme','#ffffff'),(338110,42666,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(338111,42666,'blocks_13_options_reverse','1'),(338112,42666,'_blocks_13_options_reverse','field_61768049bb8ac'),(338113,42666,'blocks_13_options',''),(338114,42666,'_blocks_13_options','field_617682517c334'),(338115,42666,'blocks_13_split_5050_image','18856'),(338116,42666,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(338117,42666,'blocks_13_split_5050_video',''),(338118,42666,'_blocks_13_split_5050_video','field_6239f3160848a'),(338119,42666,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(338120,42666,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(338121,42666,'blocks_13_split_5050_content_heading',''),(338122,42666,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(338123,42666,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(338124,42666,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(338125,42666,'blocks_13_split_5050_content_actions',''),(338126,42666,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(338127,42666,'blocks_13_split_5050_content',''),(338128,42666,'_blocks_13_split_5050_content','field_61767afceb8ba'),(338129,42666,'blocks_19_acfe_flexible_toggle',''),(338130,42666,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(338131,42666,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(338132,42666,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(338133,42666,'blocks_19_options_theme','#ffffff'),(338134,42666,'_blocks_19_options_theme','field_6176830e2ad17'),(338135,42666,'blocks_19_options',''),(338136,42666,'_blocks_19_options','field_6176830e2ad16'),(338137,42666,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(338138,42666,'_blocks_19_text_block_heading','field_617669d413097'),(338139,42666,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(338140,42666,'_blocks_19_text_block_content','field_617669ec13098'),(338141,42666,'blocks_6_acfe_flexible_toggle',''),(338142,42666,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338143,42666,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(338144,42666,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338145,42666,'blocks_6_options_theme','#f5f5f5'),(338146,42666,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(338147,42666,'blocks_6_options_reverse','1'),(338148,42666,'_blocks_6_options_reverse','field_61768049bb8ac'),(338149,42666,'blocks_6_options',''),(338150,42666,'_blocks_6_options','field_617682517c334'),(338151,42666,'blocks_6_split_5050_image','41502'),(338152,42666,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(338153,42666,'blocks_6_split_5050_video',''),(338154,42666,'_blocks_6_split_5050_video','field_6239f3160848a'),(338155,42666,'blocks_6_split_5050_content_title','Research & Academia'),(338156,42666,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(338157,42666,'blocks_6_split_5050_content_heading',''),(338158,42666,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(338159,42666,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(338160,42666,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(338161,42666,'blocks_6_split_5050_content_actions',''),(338162,42666,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(338163,42666,'blocks_6_split_5050_content',''),(338164,42666,'_blocks_6_split_5050_content','field_61767afceb8ba'),(338165,42666,'blocks_5_acfe_flexible_toggle',''),(338166,42666,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338167,42666,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(338168,42666,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338169,42666,'blocks_5_options_theme','#f5f5f5'),(338170,42666,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(338171,42666,'blocks_5_options_reverse','1'),(338172,42666,'_blocks_5_options_reverse','field_61768049bb8ac'),(338173,42666,'blocks_5_options',''),(338174,42666,'_blocks_5_options','field_617682517c334'),(338175,42666,'blocks_5_split_5050_image','41539'),(338176,42666,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(338177,42666,'blocks_5_split_5050_video',''),(338178,42666,'_blocks_5_split_5050_video','field_6239f3160848a'),(338179,42666,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(338180,42666,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(338181,42666,'blocks_5_split_5050_content_heading',''),(338182,42666,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(338183,42666,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(338184,42666,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(338185,42666,'blocks_5_split_5050_content_actions',''),(338186,42666,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(338187,42666,'blocks_5_split_5050_content',''),(338188,42666,'_blocks_5_split_5050_content','field_61767afceb8ba'),(338189,42666,'blocks_14_acfe_flexible_toggle',''),(338190,42666,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338191,42666,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (4) '),(338192,42666,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338193,42666,'blocks_14_options_theme','#ffffff'),(338194,42666,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(338195,42666,'blocks_14_options_reverse','1'),(338196,42666,'_blocks_14_options_reverse','field_61768049bb8ac'),(338197,42666,'blocks_14_options',''),(338198,42666,'_blocks_14_options','field_617682517c334'),(338199,42666,'blocks_14_split_5050_image','41490'),(338200,42666,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(338201,42666,'blocks_14_split_5050_video',''),(338202,42666,'_blocks_14_split_5050_video','field_6239f3160848a'),(338203,42666,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(338204,42666,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(338205,42666,'blocks_14_split_5050_content_heading',''),(338206,42666,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(338207,42666,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(338208,42666,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(338209,42666,'blocks_14_split_5050_content_actions',''),(338210,42666,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(338211,42666,'blocks_14_split_5050_content',''),(338212,42666,'_blocks_14_split_5050_content','field_61767afceb8ba'),(338213,42666,'blocks_20_acfe_flexible_toggle',''),(338214,42666,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(338215,42666,'blocks_20_acfe_flexible_layout_title','Conclusion'),(338216,42666,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(338217,42666,'blocks_20_options_theme','#b61234'),(338218,42666,'_blocks_20_options_theme','field_6176830e2ad17'),(338219,42666,'blocks_20_options',''),(338220,42666,'_blocks_20_options','field_6176830e2ad16'),(338221,42666,'blocks_20_text_block_heading','Conclusion'),(338222,42666,'_blocks_20_text_block_heading','field_617669d413097'),(338223,42666,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(338224,42666,'_blocks_20_text_block_content','field_617669ec13098'),(338225,42666,'blocks_10_acfe_flexible_toggle',''),(338226,42666,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(338227,42666,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(338228,42666,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(338229,42666,'blocks_10_options_theme','#ffffff'),(338230,42666,'_blocks_10_options_theme','field_6176830e2ad17'),(338231,42666,'blocks_10_options',''),(338232,42666,'_blocks_10_options','field_6176830e2ad16'),(338233,42666,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(338234,42666,'_blocks_10_text_block_heading','field_617669d413097'),(338235,42666,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(338236,42666,'_blocks_10_text_block_content','field_617669ec13098'),(338237,42666,'blocks_2_acfe_flexible_toggle',''),(338238,42666,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(338239,42666,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(338240,42666,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(338241,42666,'blocks_2_options_theme','#f5f5f5'),(338242,42666,'_blocks_2_options_theme','field_6176830e2ad17'),(338243,42666,'blocks_2_options',''),(338244,42666,'_blocks_2_options','field_6176830e2ad16'),(338245,42666,'blocks_2_text_block_heading','Define Your Career Goals'),(338246,42666,'_blocks_2_text_block_heading','field_617669d413097'),(338247,42666,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(338248,42666,'_blocks_2_text_block_content','field_617669ec13098'),(338249,42666,'blocks_4_acfe_flexible_toggle',''),(338250,42666,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338251,42666,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(338252,42666,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338253,42666,'blocks_4_options_theme','#f5f5f5'),(338254,42666,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(338255,42666,'blocks_4_options_reverse','1'),(338256,42666,'_blocks_4_options_reverse','field_61768049bb8ac'),(338257,42666,'blocks_4_options',''),(338258,42666,'_blocks_4_options','field_617682517c334'),(338259,42666,'blocks_4_split_5050_image','41505'),(338260,42666,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(338261,42666,'blocks_4_split_5050_video',''),(338262,42666,'_blocks_4_split_5050_video','field_6239f3160848a'),(338263,42666,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(338264,42666,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(338265,42666,'blocks_4_split_5050_content_heading',''),(338266,42666,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(338267,42666,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(338268,42666,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(338269,42666,'blocks_4_split_5050_content_actions',''),(338270,42666,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(338271,42666,'blocks_4_split_5050_content',''),(338272,42666,'_blocks_4_split_5050_content','field_61767afceb8ba'),(338273,42666,'blocks_7_acfe_flexible_toggle',''),(338274,42666,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(338275,42666,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(338276,42666,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(338277,42666,'blocks_7_options_theme','#ffffff'),(338278,42666,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(338279,42666,'blocks_7_options_state','0'),(338280,42666,'_blocks_7_options_state','field_6239fcb7508c5'),(338281,42666,'blocks_7_options',''),(338282,42666,'_blocks_7_options','field_6177e2991ac44'),(338283,42666,'blocks_7_content_title',''),(338284,42666,'_blocks_7_content_title','field_64d237e8bb1e2'),(338285,42666,'blocks_7_content_heading','Evaluate Course Content'),(338286,42666,'_blocks_7_content_heading','field_64d237e8bb1e3'),(338287,42666,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(338288,42666,'_blocks_7_content_text','field_64d237e8bb1e4'),(338289,42666,'blocks_7_content_actions',''),(338290,42666,'_blocks_7_content_actions','field_64d237e8bb1e5'),(338291,42666,'blocks_7_content_align','left'),(338292,42666,'_blocks_7_content_align','field_64d2443e6b6aa'),(338293,42666,'blocks_7_content',''),(338294,42666,'_blocks_7_content','field_64d237e8bb1e1'),(338295,42666,'blocks_7_accordion_content','custom'),(338296,42666,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(338297,42666,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(338298,42666,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(338299,42666,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(338300,42666,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(338301,42666,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(338302,42666,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(338303,42666,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(338304,42666,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(338305,42666,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(338306,42666,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(338307,42666,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(338308,42666,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(338309,42666,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(338310,42666,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(338311,42666,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(338312,42666,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(338313,42666,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(338314,42666,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(338315,42666,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(338316,42666,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(338317,42666,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(338318,42666,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(338319,42666,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(338320,42666,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(338321,42666,'blocks_7_accordion_items','6'),(338322,42666,'_blocks_7_accordion_items','field_6177e2991ac4c'),(338323,42666,'blocks_7_actions',''),(338324,42666,'_blocks_7_actions','field_61a746a817f7a'),(338325,42666,'blocks_8_acfe_flexible_toggle',''),(338326,42666,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(338327,42666,'blocks_8_acfe_flexible_layout_title','Text Block'),(338328,42666,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(338329,42666,'blocks_8_options_theme','#b61234'),(338330,42666,'_blocks_8_options_theme','field_6176830e2ad17'),(338331,42666,'blocks_8_options',''),(338332,42666,'_blocks_8_options','field_6176830e2ad16'),(338333,42666,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(338334,42666,'_blocks_8_text_block_heading','field_617669d413097'),(338335,42666,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(338336,42666,'_blocks_8_text_block_content','field_617669ec13098'),(338337,42666,'blocks_9_acfe_flexible_toggle',''),(338338,42666,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(338339,42666,'blocks_9_acfe_flexible_layout_title','Icons'),(338340,42666,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(338341,42666,'blocks_9_options_theme','#b61234'),(338342,42666,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(338343,42666,'blocks_9_options_format','row'),(338344,42666,'_blocks_9_options_format','field_64bfde9a90690'),(338345,42666,'blocks_9_options',''),(338346,42666,'_blocks_9_options','field_64bfdd9b90684'),(338347,42666,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(338348,42666,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(338349,42666,'blocks_9_icon_row_items_0_label','Industry Recognition'),(338350,42666,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(338351,42666,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(338352,42666,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(338353,42666,'blocks_9_icon_row_items_1_icon','qualification.svg'),(338354,42666,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(338355,42666,'blocks_9_icon_row_items_1_label','University Accreditation'),(338356,42666,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(338357,42666,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(338358,42666,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(338359,42666,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(338360,42666,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(338361,42666,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(338362,42666,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(338363,42666,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(338364,42666,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(338365,42666,'blocks_9_icon_row_items','3'),(338366,42666,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(338367,42666,'blocks_11_acfe_flexible_toggle',''),(338368,42666,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338369,42666,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(338370,42666,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338371,42666,'blocks_11_options_theme','#ffffff'),(338372,42666,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(338373,42666,'blocks_11_options_reverse','1'),(338374,42666,'_blocks_11_options_reverse','field_61768049bb8ac'),(338375,42666,'blocks_11_options',''),(338376,42666,'_blocks_11_options','field_617682517c334'),(338377,42666,'blocks_11_split_5050_image','41498'),(338378,42666,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(338379,42666,'blocks_11_split_5050_video',''),(338380,42666,'_blocks_11_split_5050_video','field_6239f3160848a'),(338381,42666,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(338382,42666,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(338383,42666,'blocks_11_split_5050_content_heading',''),(338384,42666,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(338385,42666,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(338386,42666,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(338387,42666,'blocks_11_split_5050_content_actions',''),(338388,42666,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(338389,42666,'blocks_11_split_5050_content',''),(338390,42666,'_blocks_11_split_5050_content','field_61767afceb8ba'),(338391,42666,'blocks_12_acfe_flexible_toggle',''),(338392,42666,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338393,42666,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(338394,42666,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338395,42666,'blocks_12_options_theme','#ffffff'),(338396,42666,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(338397,42666,'blocks_12_options_reverse','1'),(338398,42666,'_blocks_12_options_reverse','field_61768049bb8ac'),(338399,42666,'blocks_12_options',''),(338400,42666,'_blocks_12_options','field_617682517c334'),(338401,42666,'blocks_12_split_5050_image','40387'),(338402,42666,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(338403,42666,'blocks_12_split_5050_video',''),(338404,42666,'_blocks_12_split_5050_video','field_6239f3160848a'),(338405,42666,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(338406,42666,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(338407,42666,'blocks_12_split_5050_content_heading',''),(338408,42666,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(338409,42666,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(338410,42666,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(338411,42666,'blocks_12_split_5050_content_actions',''),(338412,42666,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(338413,42666,'blocks_12_split_5050_content',''),(338414,42666,'_blocks_12_split_5050_content','field_61767afceb8ba'),(338415,42666,'blocks_15_acfe_flexible_toggle',''),(338416,42666,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(338417,42666,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(338418,42666,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(338419,42666,'blocks_15_options_theme','#b61234'),(338420,42666,'_blocks_15_options_theme','field_6176830e2ad17'),(338421,42666,'blocks_15_options',''),(338422,42666,'_blocks_15_options','field_6176830e2ad16'),(338423,42666,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(338424,42666,'_blocks_15_text_block_heading','field_617669d413097'),(338425,42666,'blocks_15_text_block_content',''),(338426,42666,'_blocks_15_text_block_content','field_617669ec13098'),(338427,42666,'blocks_16_acfe_flexible_toggle',''),(338428,42666,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(338429,42666,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(338430,42666,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(338431,42666,'blocks_16_options_theme','#b61234'),(338432,42666,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(338433,42666,'blocks_16_options_format','row'),(338434,42666,'_blocks_16_options_format','field_64bfde9a90690'),(338435,42666,'blocks_16_options',''),(338436,42666,'_blocks_16_options','field_64bfdd9b90684'),(338437,42666,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(338438,42666,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(338439,42666,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(338440,42666,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(338441,42666,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(338442,42666,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(338443,42666,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(338444,42666,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(338445,42666,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(338446,42666,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(338447,42666,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(338448,42666,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(338449,42666,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(338450,42666,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(338451,42666,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(338452,42666,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(338453,42666,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(338454,42666,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(338455,42666,'blocks_16_icon_row_items_3_icon','recognised.svg'),(338456,42666,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(338457,42666,'blocks_16_icon_row_items_3_label','Optimised Performance'),(338458,42666,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(338459,42666,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(338460,42666,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(338461,42666,'blocks_16_icon_row_items','4'),(338462,42666,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(338463,42666,'blocks_17_acfe_flexible_toggle',''),(338464,42666,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338465,42666,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(338466,42666,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338467,42666,'blocks_17_options_theme','#ffffff'),(338468,42666,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(338469,42666,'blocks_17_options_reverse','0'),(338470,42666,'_blocks_17_options_reverse','field_61768049bb8ac'),(338471,42666,'blocks_17_options',''),(338472,42666,'_blocks_17_options','field_617682517c334'),(338473,42666,'blocks_17_split_5050_image','41501'),(338474,42666,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(338475,42666,'blocks_17_split_5050_video',''),(338476,42666,'_blocks_17_split_5050_video','field_6239f3160848a'),(338477,42666,'blocks_17_split_5050_content_title',''),(338478,42666,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(338479,42666,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(338480,42666,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(338481,42666,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(338482,42666,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(338483,42666,'blocks_17_split_5050_content_actions',''),(338484,42666,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(338485,42666,'blocks_17_split_5050_content',''),(338486,42666,'_blocks_17_split_5050_content','field_61767afceb8ba'),(338487,42666,'blocks_18_acfe_flexible_toggle',''),(338488,42666,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(338489,42666,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(338490,42666,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(338491,42666,'blocks_18_options_theme','#ffffff'),(338492,42666,'_blocks_18_options_theme','field_6176830e2ad17'),(338493,42666,'blocks_18_options',''),(338494,42666,'_blocks_18_options','field_6176830e2ad16'),(338495,42666,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(338496,42666,'_blocks_18_text_block_heading','field_617669d413097'),(338497,42666,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(338498,42666,'_blocks_18_text_block_content','field_617669ec13098'),(338499,42666,'blocks_21_acfe_flexible_toggle',''),(338500,42666,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(338501,42666,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(338502,42666,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(338503,42666,'blocks_21_options_alignment','center'),(338504,42666,'_blocks_21_options_alignment','field_61769449f5490'),(338505,42666,'blocks_21_options',''),(338506,42666,'_blocks_21_options','field_617693e1428f0'),(338507,42666,'blocks_21_promo_panel_image','41307'),(338508,42666,'_blocks_21_promo_panel_image','field_617693e1428f3'),(338509,42666,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(338510,42666,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(338511,42666,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(338512,42666,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(338513,42666,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(338514,42666,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(338515,42666,'blocks_21_promo_panel_content_actions','1'),(338516,42666,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(338517,42666,'blocks_21_promo_panel_content',''),(338518,42666,'_blocks_21_promo_panel_content','field_617693e1428f4'),(338519,42667,'hide_hero','0'),(338520,42667,'_hide_hero','field_66a2380fcda39'),(338521,42667,'hero_title',''),(338522,42667,'_hero_title','field_617571fe285e8'),(338523,42667,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(338524,42667,'_hero_text','field_6175723c285e9'),(338525,42667,'hero_actions',''),(338526,42667,'_hero_actions','field_61757270285ea'),(338527,42667,'hero_style','default'),(338528,42667,'_hero_style','field_62051d9dc5324'),(338529,42667,'hero_image_pos_x','right'),(338530,42667,'_hero_image_pos_x','field_62ec3d05390bb'),(338531,42667,'hero_image_pos_y','top'),(338532,42667,'_hero_image_pos_y','field_62ec3d05390bc'),(338533,42667,'hero_image_pos',''),(338534,42667,'_hero_image_pos','field_62ec3d05390ba'),(338535,42667,'fft_hide_from_listings','0'),(338536,42667,'_fft_hide_from_listings','field_61f1320446ab2'),(338537,42667,'post_format','402'),(338538,42667,'_post_format','field_61756bfb51898'),(338539,42667,'post_author',''),(338540,42667,'_post_author','field_62ec389d22113'),(338541,42667,'post_reviewer',''),(338542,42667,'_post_reviewer','field_627140a2a9800'),(338543,42667,'post_table_of_contents','0'),(338544,42667,'_post_table_of_contents','field_65c503bc846a6'),(338545,42667,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(338546,42667,'_blocks','field_6176696113096'),(338547,42667,'_thumbnail_id','40618'),(338548,42667,'__thumbnail_id','field_617570855ddaf'),(338549,42667,'blocks_0_acfe_flexible_toggle',''),(338550,42667,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(338551,42667,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(338552,42667,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(338553,42667,'blocks_0_options_theme','#ffffff'),(338554,42667,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(338555,42667,'blocks_0_options',''),(338556,42667,'_blocks_0_options','field_6177b758246ae'),(338557,42667,'blocks_0_link_stack_content_title',''),(338558,42667,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(338559,42667,'blocks_0_link_stack_content_heading','Introduction'),(338560,42667,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(338561,42667,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(338562,42667,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(338563,42667,'blocks_0_link_stack_content_actions_0_button',''),(338564,42667,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(338565,42667,'blocks_0_link_stack_content_actions','1'),(338566,42667,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(338567,42667,'blocks_0_link_stack_content',''),(338568,42667,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(338569,42667,'blocks_0_link_stack_0_label','1.'),(338570,42667,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(338571,42667,'blocks_0_link_stack_0_title','Overview'),(338572,42667,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(338573,42667,'blocks_0_link_stack_0_url','#overview'),(338574,42667,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(338575,42667,'blocks_0_link_stack_1_label','2.'),(338576,42667,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(338577,42667,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(338578,42667,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(338579,42667,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(338580,42667,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(338581,42667,'blocks_0_link_stack_2_label','3.'),(338582,42667,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(338583,42667,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(338584,42667,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(338585,42667,'blocks_0_link_stack_2_url','#who-should-study-msk'),(338586,42667,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(338587,42667,'blocks_0_link_stack_3_label','4.'),(338588,42667,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(338589,42667,'blocks_0_link_stack_3_title','Common MSK Conditions'),(338590,42667,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(338591,42667,'blocks_0_link_stack_3_url','#common-msk-conditions'),(338592,42667,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(338593,42667,'blocks_0_link_stack_4_label','5.'),(338594,42667,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(338595,42667,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(338596,42667,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(338597,42667,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(338598,42667,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(338599,42667,'blocks_0_link_stack_5_label','6.'),(338600,42667,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(338601,42667,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(338602,42667,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(338603,42667,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(338604,42667,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(338605,42667,'blocks_0_link_stack','6'),(338606,42667,'_blocks_0_link_stack','field_6177b7f600cff'),(338607,42667,'blocks_1_acfe_flexible_toggle',''),(338608,42667,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338609,42667,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(338610,42667,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338611,42667,'blocks_1_options_theme','#ffffff'),(338612,42667,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(338613,42667,'blocks_1_options_reverse','0'),(338614,42667,'_blocks_1_options_reverse','field_61768049bb8ac'),(338615,42667,'blocks_1_options',''),(338616,42667,'_blocks_1_options','field_617682517c334'),(338617,42667,'blocks_1_split_5050_image','40615'),(338618,42667,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(338619,42667,'blocks_1_split_5050_video',''),(338620,42667,'_blocks_1_split_5050_video','field_6239f3160848a'),(338621,42667,'blocks_1_split_5050_content_title',''),(338622,42667,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(338623,42667,'blocks_1_split_5050_content_heading','Overview'),(338624,42667,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(338625,42667,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(338626,42667,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(338627,42667,'blocks_1_split_5050_content_actions',''),(338628,42667,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(338629,42667,'blocks_1_split_5050_content',''),(338630,42667,'_blocks_1_split_5050_content','field_61767afceb8ba'),(338631,42667,'blocks_3_acfe_flexible_toggle',''),(338632,42667,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338633,42667,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(338634,42667,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338635,42667,'blocks_3_options_theme','#f5f5f5'),(338636,42667,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(338637,42667,'blocks_3_options_reverse','1'),(338638,42667,'_blocks_3_options_reverse','field_61768049bb8ac'),(338639,42667,'blocks_3_options',''),(338640,42667,'_blocks_3_options','field_617682517c334'),(338641,42667,'blocks_3_split_5050_image','41542'),(338642,42667,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(338643,42667,'blocks_3_split_5050_video',''),(338644,42667,'_blocks_3_split_5050_video','field_6239f3160848a'),(338645,42667,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(338646,42667,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(338647,42667,'blocks_3_split_5050_content_heading',''),(338648,42667,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(338649,42667,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(338650,42667,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(338651,42667,'blocks_3_split_5050_content_actions',''),(338652,42667,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(338653,42667,'blocks_3_split_5050_content',''),(338654,42667,'_blocks_3_split_5050_content','field_61767afceb8ba'),(338655,42667,'blocks_13_acfe_flexible_toggle',''),(338656,42667,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338657,42667,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(338658,42667,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338659,42667,'blocks_13_options_theme','#ffffff'),(338660,42667,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(338661,42667,'blocks_13_options_reverse','0'),(338662,42667,'_blocks_13_options_reverse','field_61768049bb8ac'),(338663,42667,'blocks_13_options',''),(338664,42667,'_blocks_13_options','field_617682517c334'),(338665,42667,'blocks_13_split_5050_image','18856'),(338666,42667,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(338667,42667,'blocks_13_split_5050_video',''),(338668,42667,'_blocks_13_split_5050_video','field_6239f3160848a'),(338669,42667,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(338670,42667,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(338671,42667,'blocks_13_split_5050_content_heading',''),(338672,42667,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(338673,42667,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(338674,42667,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(338675,42667,'blocks_13_split_5050_content_actions',''),(338676,42667,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(338677,42667,'blocks_13_split_5050_content',''),(338678,42667,'_blocks_13_split_5050_content','field_61767afceb8ba'),(338679,42667,'blocks_19_acfe_flexible_toggle',''),(338680,42667,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(338681,42667,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(338682,42667,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(338683,42667,'blocks_19_options_theme','#ffffff'),(338684,42667,'_blocks_19_options_theme','field_6176830e2ad17'),(338685,42667,'blocks_19_options',''),(338686,42667,'_blocks_19_options','field_6176830e2ad16'),(338687,42667,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(338688,42667,'_blocks_19_text_block_heading','field_617669d413097'),(338689,42667,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(338690,42667,'_blocks_19_text_block_content','field_617669ec13098'),(338691,42667,'blocks_6_acfe_flexible_toggle',''),(338692,42667,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338693,42667,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(338694,42667,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338695,42667,'blocks_6_options_theme','#f5f5f5'),(338696,42667,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(338697,42667,'blocks_6_options_reverse','1'),(338698,42667,'_blocks_6_options_reverse','field_61768049bb8ac'),(338699,42667,'blocks_6_options',''),(338700,42667,'_blocks_6_options','field_617682517c334'),(338701,42667,'blocks_6_split_5050_image','41502'),(338702,42667,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(338703,42667,'blocks_6_split_5050_video',''),(338704,42667,'_blocks_6_split_5050_video','field_6239f3160848a'),(338705,42667,'blocks_6_split_5050_content_title','Research & Academia'),(338706,42667,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(338707,42667,'blocks_6_split_5050_content_heading',''),(338708,42667,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(338709,42667,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(338710,42667,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(338711,42667,'blocks_6_split_5050_content_actions',''),(338712,42667,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(338713,42667,'blocks_6_split_5050_content',''),(338714,42667,'_blocks_6_split_5050_content','field_61767afceb8ba'),(338715,42667,'blocks_5_acfe_flexible_toggle',''),(338716,42667,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338717,42667,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(338718,42667,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338719,42667,'blocks_5_options_theme','#f5f5f5'),(338720,42667,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(338721,42667,'blocks_5_options_reverse','1'),(338722,42667,'_blocks_5_options_reverse','field_61768049bb8ac'),(338723,42667,'blocks_5_options',''),(338724,42667,'_blocks_5_options','field_617682517c334'),(338725,42667,'blocks_5_split_5050_image','41539'),(338726,42667,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(338727,42667,'blocks_5_split_5050_video',''),(338728,42667,'_blocks_5_split_5050_video','field_6239f3160848a'),(338729,42667,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(338730,42667,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(338731,42667,'blocks_5_split_5050_content_heading',''),(338732,42667,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(338733,42667,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(338734,42667,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(338735,42667,'blocks_5_split_5050_content_actions',''),(338736,42667,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(338737,42667,'blocks_5_split_5050_content',''),(338738,42667,'_blocks_5_split_5050_content','field_61767afceb8ba'),(338739,42667,'blocks_14_acfe_flexible_toggle',''),(338740,42667,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338741,42667,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (4) '),(338742,42667,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338743,42667,'blocks_14_options_theme','#ffffff'),(338744,42667,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(338745,42667,'blocks_14_options_reverse','0'),(338746,42667,'_blocks_14_options_reverse','field_61768049bb8ac'),(338747,42667,'blocks_14_options',''),(338748,42667,'_blocks_14_options','field_617682517c334'),(338749,42667,'blocks_14_split_5050_image','41490'),(338750,42667,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(338751,42667,'blocks_14_split_5050_video',''),(338752,42667,'_blocks_14_split_5050_video','field_6239f3160848a'),(338753,42667,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(338754,42667,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(338755,42667,'blocks_14_split_5050_content_heading',''),(338756,42667,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(338757,42667,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(338758,42667,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(338759,42667,'blocks_14_split_5050_content_actions',''),(338760,42667,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(338761,42667,'blocks_14_split_5050_content',''),(338762,42667,'_blocks_14_split_5050_content','field_61767afceb8ba'),(338763,42667,'blocks_20_acfe_flexible_toggle',''),(338764,42667,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(338765,42667,'blocks_20_acfe_flexible_layout_title','Conclusion'),(338766,42667,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(338767,42667,'blocks_20_options_theme','#b61234'),(338768,42667,'_blocks_20_options_theme','field_6176830e2ad17'),(338769,42667,'blocks_20_options',''),(338770,42667,'_blocks_20_options','field_6176830e2ad16'),(338771,42667,'blocks_20_text_block_heading','Conclusion'),(338772,42667,'_blocks_20_text_block_heading','field_617669d413097'),(338773,42667,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(338774,42667,'_blocks_20_text_block_content','field_617669ec13098'),(338775,42667,'blocks_10_acfe_flexible_toggle',''),(338776,42667,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(338777,42667,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(338778,42667,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(338779,42667,'blocks_10_options_theme','#ffffff'),(338780,42667,'_blocks_10_options_theme','field_6176830e2ad17'),(338781,42667,'blocks_10_options',''),(338782,42667,'_blocks_10_options','field_6176830e2ad16'),(338783,42667,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(338784,42667,'_blocks_10_text_block_heading','field_617669d413097'),(338785,42667,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(338786,42667,'_blocks_10_text_block_content','field_617669ec13098'),(338787,42667,'blocks_2_acfe_flexible_toggle',''),(338788,42667,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(338789,42667,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(338790,42667,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(338791,42667,'blocks_2_options_theme','#f5f5f5'),(338792,42667,'_blocks_2_options_theme','field_6176830e2ad17'),(338793,42667,'blocks_2_options',''),(338794,42667,'_blocks_2_options','field_6176830e2ad16'),(338795,42667,'blocks_2_text_block_heading','Define Your Career Goals'),(338796,42667,'_blocks_2_text_block_heading','field_617669d413097'),(338797,42667,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(338798,42667,'_blocks_2_text_block_content','field_617669ec13098'),(338799,42667,'blocks_4_acfe_flexible_toggle',''),(338800,42667,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338801,42667,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(338802,42667,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338803,42667,'blocks_4_options_theme','#f5f5f5'),(338804,42667,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(338805,42667,'blocks_4_options_reverse','1'),(338806,42667,'_blocks_4_options_reverse','field_61768049bb8ac'),(338807,42667,'blocks_4_options',''),(338808,42667,'_blocks_4_options','field_617682517c334'),(338809,42667,'blocks_4_split_5050_image','41505'),(338810,42667,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(338811,42667,'blocks_4_split_5050_video',''),(338812,42667,'_blocks_4_split_5050_video','field_6239f3160848a'),(338813,42667,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(338814,42667,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(338815,42667,'blocks_4_split_5050_content_heading',''),(338816,42667,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(338817,42667,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(338818,42667,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(338819,42667,'blocks_4_split_5050_content_actions',''),(338820,42667,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(338821,42667,'blocks_4_split_5050_content',''),(338822,42667,'_blocks_4_split_5050_content','field_61767afceb8ba'),(338823,42667,'blocks_7_acfe_flexible_toggle',''),(338824,42667,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(338825,42667,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(338826,42667,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(338827,42667,'blocks_7_options_theme','#ffffff'),(338828,42667,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(338829,42667,'blocks_7_options_state','0'),(338830,42667,'_blocks_7_options_state','field_6239fcb7508c5'),(338831,42667,'blocks_7_options',''),(338832,42667,'_blocks_7_options','field_6177e2991ac44'),(338833,42667,'blocks_7_content_title',''),(338834,42667,'_blocks_7_content_title','field_64d237e8bb1e2'),(338835,42667,'blocks_7_content_heading','Evaluate Course Content'),(338836,42667,'_blocks_7_content_heading','field_64d237e8bb1e3'),(338837,42667,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(338838,42667,'_blocks_7_content_text','field_64d237e8bb1e4'),(338839,42667,'blocks_7_content_actions',''),(338840,42667,'_blocks_7_content_actions','field_64d237e8bb1e5'),(338841,42667,'blocks_7_content_align','left'),(338842,42667,'_blocks_7_content_align','field_64d2443e6b6aa'),(338843,42667,'blocks_7_content',''),(338844,42667,'_blocks_7_content','field_64d237e8bb1e1'),(338845,42667,'blocks_7_accordion_content','custom'),(338846,42667,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(338847,42667,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(338848,42667,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(338849,42667,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(338850,42667,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(338851,42667,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(338852,42667,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(338853,42667,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(338854,42667,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(338855,42667,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(338856,42667,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(338857,42667,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(338858,42667,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(338859,42667,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(338860,42667,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(338861,42667,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(338862,42667,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(338863,42667,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(338864,42667,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(338865,42667,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(338866,42667,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(338867,42667,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(338868,42667,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(338869,42667,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(338870,42667,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(338871,42667,'blocks_7_accordion_items','6'),(338872,42667,'_blocks_7_accordion_items','field_6177e2991ac4c'),(338873,42667,'blocks_7_actions',''),(338874,42667,'_blocks_7_actions','field_61a746a817f7a'),(338875,42667,'blocks_8_acfe_flexible_toggle',''),(338876,42667,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(338877,42667,'blocks_8_acfe_flexible_layout_title','Text Block'),(338878,42667,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(338879,42667,'blocks_8_options_theme','#b61234'),(338880,42667,'_blocks_8_options_theme','field_6176830e2ad17'),(338881,42667,'blocks_8_options',''),(338882,42667,'_blocks_8_options','field_6176830e2ad16'),(338883,42667,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(338884,42667,'_blocks_8_text_block_heading','field_617669d413097'),(338885,42667,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(338886,42667,'_blocks_8_text_block_content','field_617669ec13098'),(338887,42667,'blocks_9_acfe_flexible_toggle',''),(338888,42667,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(338889,42667,'blocks_9_acfe_flexible_layout_title','Icons'),(338890,42667,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(338891,42667,'blocks_9_options_theme','#b61234'),(338892,42667,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(338893,42667,'blocks_9_options_format','row'),(338894,42667,'_blocks_9_options_format','field_64bfde9a90690'),(338895,42667,'blocks_9_options',''),(338896,42667,'_blocks_9_options','field_64bfdd9b90684'),(338897,42667,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(338898,42667,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(338899,42667,'blocks_9_icon_row_items_0_label','Industry Recognition'),(338900,42667,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(338901,42667,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(338902,42667,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(338903,42667,'blocks_9_icon_row_items_1_icon','qualification.svg'),(338904,42667,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(338905,42667,'blocks_9_icon_row_items_1_label','University Accreditation'),(338906,42667,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(338907,42667,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(338908,42667,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(338909,42667,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(338910,42667,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(338911,42667,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(338912,42667,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(338913,42667,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(338914,42667,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(338915,42667,'blocks_9_icon_row_items','3'),(338916,42667,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(338917,42667,'blocks_11_acfe_flexible_toggle',''),(338918,42667,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338919,42667,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(338920,42667,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338921,42667,'blocks_11_options_theme','#ffffff'),(338922,42667,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(338923,42667,'blocks_11_options_reverse','0'),(338924,42667,'_blocks_11_options_reverse','field_61768049bb8ac'),(338925,42667,'blocks_11_options',''),(338926,42667,'_blocks_11_options','field_617682517c334'),(338927,42667,'blocks_11_split_5050_image','41498'),(338928,42667,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(338929,42667,'blocks_11_split_5050_video',''),(338930,42667,'_blocks_11_split_5050_video','field_6239f3160848a'),(338931,42667,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(338932,42667,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(338933,42667,'blocks_11_split_5050_content_heading',''),(338934,42667,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(338935,42667,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(338936,42667,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(338937,42667,'blocks_11_split_5050_content_actions',''),(338938,42667,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(338939,42667,'blocks_11_split_5050_content',''),(338940,42667,'_blocks_11_split_5050_content','field_61767afceb8ba'),(338941,42667,'blocks_12_acfe_flexible_toggle',''),(338942,42667,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(338943,42667,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(338944,42667,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(338945,42667,'blocks_12_options_theme','#ffffff'),(338946,42667,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(338947,42667,'blocks_12_options_reverse','0'),(338948,42667,'_blocks_12_options_reverse','field_61768049bb8ac'),(338949,42667,'blocks_12_options',''),(338950,42667,'_blocks_12_options','field_617682517c334'),(338951,42667,'blocks_12_split_5050_image','40387'),(338952,42667,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(338953,42667,'blocks_12_split_5050_video',''),(338954,42667,'_blocks_12_split_5050_video','field_6239f3160848a'),(338955,42667,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(338956,42667,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(338957,42667,'blocks_12_split_5050_content_heading',''),(338958,42667,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(338959,42667,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(338960,42667,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(338961,42667,'blocks_12_split_5050_content_actions',''),(338962,42667,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(338963,42667,'blocks_12_split_5050_content',''),(338964,42667,'_blocks_12_split_5050_content','field_61767afceb8ba'),(338965,42667,'blocks_15_acfe_flexible_toggle',''),(338966,42667,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(338967,42667,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(338968,42667,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(338969,42667,'blocks_15_options_theme','#b61234'),(338970,42667,'_blocks_15_options_theme','field_6176830e2ad17'),(338971,42667,'blocks_15_options',''),(338972,42667,'_blocks_15_options','field_6176830e2ad16'),(338973,42667,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(338974,42667,'_blocks_15_text_block_heading','field_617669d413097'),(338975,42667,'blocks_15_text_block_content',''),(338976,42667,'_blocks_15_text_block_content','field_617669ec13098'),(338977,42667,'blocks_16_acfe_flexible_toggle',''),(338978,42667,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(338979,42667,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(338980,42667,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(338981,42667,'blocks_16_options_theme','#b61234'),(338982,42667,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(338983,42667,'blocks_16_options_format','row'),(338984,42667,'_blocks_16_options_format','field_64bfde9a90690'),(338985,42667,'blocks_16_options',''),(338986,42667,'_blocks_16_options','field_64bfdd9b90684'),(338987,42667,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(338988,42667,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(338989,42667,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(338990,42667,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(338991,42667,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(338992,42667,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(338993,42667,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(338994,42667,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(338995,42667,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(338996,42667,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(338997,42667,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(338998,42667,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(338999,42667,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(339000,42667,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(339001,42667,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(339002,42667,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(339003,42667,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(339004,42667,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(339005,42667,'blocks_16_icon_row_items_3_icon','recognised.svg'),(339006,42667,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(339007,42667,'blocks_16_icon_row_items_3_label','Optimised Performance'),(339008,42667,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(339009,42667,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(339010,42667,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(339011,42667,'blocks_16_icon_row_items','4'),(339012,42667,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(339013,42667,'blocks_17_acfe_flexible_toggle',''),(339014,42667,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339015,42667,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(339016,42667,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339017,42667,'blocks_17_options_theme','#ffffff'),(339018,42667,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(339019,42667,'blocks_17_options_reverse','0'),(339020,42667,'_blocks_17_options_reverse','field_61768049bb8ac'),(339021,42667,'blocks_17_options',''),(339022,42667,'_blocks_17_options','field_617682517c334'),(339023,42667,'blocks_17_split_5050_image','41501'),(339024,42667,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(339025,42667,'blocks_17_split_5050_video',''),(339026,42667,'_blocks_17_split_5050_video','field_6239f3160848a'),(339027,42667,'blocks_17_split_5050_content_title',''),(339028,42667,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(339029,42667,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(339030,42667,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(339031,42667,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(339032,42667,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(339033,42667,'blocks_17_split_5050_content_actions',''),(339034,42667,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(339035,42667,'blocks_17_split_5050_content',''),(339036,42667,'_blocks_17_split_5050_content','field_61767afceb8ba'),(339037,42667,'blocks_18_acfe_flexible_toggle',''),(339038,42667,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(339039,42667,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(339040,42667,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(339041,42667,'blocks_18_options_theme','#ffffff'),(339042,42667,'_blocks_18_options_theme','field_6176830e2ad17'),(339043,42667,'blocks_18_options',''),(339044,42667,'_blocks_18_options','field_6176830e2ad16'),(339045,42667,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(339046,42667,'_blocks_18_text_block_heading','field_617669d413097'),(339047,42667,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(339048,42667,'_blocks_18_text_block_content','field_617669ec13098'),(339049,42667,'blocks_21_acfe_flexible_toggle',''),(339050,42667,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(339051,42667,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(339052,42667,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(339053,42667,'blocks_21_options_alignment','center'),(339054,42667,'_blocks_21_options_alignment','field_61769449f5490'),(339055,42667,'blocks_21_options',''),(339056,42667,'_blocks_21_options','field_617693e1428f0'),(339057,42667,'blocks_21_promo_panel_image','41307'),(339058,42667,'_blocks_21_promo_panel_image','field_617693e1428f3'),(339059,42667,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(339060,42667,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(339061,42667,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(339062,42667,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(339063,42667,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(339064,42667,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(339065,42667,'blocks_21_promo_panel_content_actions','1'),(339066,42667,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(339067,42667,'blocks_21_promo_panel_content',''),(339068,42667,'_blocks_21_promo_panel_content','field_617693e1428f4'),(339069,42635,'blocks_15_acfe_flexible_toggle',''),(339070,42635,'_blocks_15_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(339071,42635,'blocks_15_acfe_flexible_layout_title','Course Format[anchor]'),(339072,42635,'_blocks_15_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(339073,42635,'blocks_15_options_theme','#f5f5f5'),(339074,42635,'_blocks_15_options_theme','field_6177de53d1196_field_6176830e2ad17'),(339075,42635,'blocks_15_options',''),(339076,42635,'_blocks_15_options','field_6177de53d1195'),(339077,42635,'blocks_15_timeline_content_title',''),(339078,42635,'_blocks_15_timeline_content_title','field_6177de53d1198'),(339079,42635,'blocks_15_timeline_content_heading','Evaluate Course Format and Flexibility'),(339080,42635,'_blocks_15_timeline_content_heading','field_6177de53d1199'),(339081,42635,'blocks_15_timeline_content_text','Biomechanics courses can vary in structure, offering different formats to accommodate students with varying schedules, learning preferences, and career commitments. Whether you’re looking for a full-time degree, a part-time professional development course, or an online programme that fits around your work, understanding the course format is essential in making the right choice. A well-structured course should provide a balance of flexibility and practical engagement, ensuring you gain the knowledge and hands-on experience needed for your career.\r\n\r\nWhen considering a biomechanics course, think about how the course format aligns with your lifestyle and career ambitions. Below are some key factors to evaluate when selecting the right learning structure.'),(339082,42635,'_blocks_15_timeline_content_text','field_6177de53d119a'),(339083,42635,'blocks_15_timeline_content_actions',''),(339084,42635,'_blocks_15_timeline_content_actions','field_6177de53d119b'),(339085,42635,'blocks_15_timeline_content',''),(339086,42635,'_blocks_15_timeline_content','field_6177de53d1197'),(339087,42635,'blocks_15_timeline_items_0_title','Full-Time vs. Part-Time Study'),(339088,42635,'_blocks_15_timeline_items_0_title','field_6177de53d119f'),(339089,42635,'blocks_15_timeline_items_0_text','Full-time biomechanics courses offer an immersive learning experience, allowing students to complete their qualifications more quickly. However, part-time courses can be beneficial for those who are already working in the field and want to upskill while maintaining their job. Choosing between these options depends on your availability, learning pace, and career progression plans.'),(339090,42635,'_blocks_15_timeline_items_0_text','field_6177de53d11a0'),(339091,42635,'blocks_15_timeline_items_1_title','Online, In-Person, and Hybrid Learning'),(339092,42635,'_blocks_15_timeline_items_1_title','field_6177de53d119f'),(339093,42635,'blocks_15_timeline_items_1_text','While some biomechanics courses are delivered entirely in-person, others incorporate online modules to provide greater flexibility. Online learning can be useful for covering theoretical concepts, but biomechanics is a highly practical subject, meaning hybrid programmes that include both online theory and in-person practical sessions can be the most effective for building applied skills.'),(339094,42635,'_blocks_15_timeline_items_1_text','field_6177de53d11a0'),(339095,42635,'blocks_15_timeline_items_2_title','Degree Level and Course Duration'),(339096,42635,'_blocks_15_timeline_items_2_title','field_6177de53d119f'),(339097,42635,'blocks_15_timeline_items_2_text','Depending on your career goals, you may need to choose between a short biomechanics certification, a diploma, or a full degree (BSc, MSc, or PhD). Short courses and diplomas are useful for professionals looking to specialise or upskill, while degree-level courses provide a more in-depth understanding of biomechanics, research methods, and applied movement science.'),(339098,42635,'_blocks_15_timeline_items_2_text','field_6177de53d11a0'),(339099,42635,'blocks_15_timeline_items','3'),(339100,42635,'_blocks_15_timeline_items','field_6177de53d119d'),(339101,42635,'blocks_16_acfe_flexible_toggle',''),(339102,42635,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(339103,42635,'blocks_16_acfe_flexible_layout_title','Tutor Expertise[anchor] '),(339104,42635,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(339105,42635,'blocks_16_options_theme','#ffffff'),(339106,42635,'_blocks_16_options_theme','field_6176830e2ad17'),(339107,42635,'blocks_16_options',''),(339108,42635,'_blocks_16_options','field_6176830e2ad16'),(339109,42635,'blocks_16_text_block_heading','Assess Tutor Expertise and Industry Connections'),(339110,42635,'_blocks_16_text_block_heading','field_617669d413097'),(339111,42635,'blocks_16_text_block_content','The quality of a biomechanics course is not just determined by its content but also by the expertise of the tutors delivering it and the industry connections it provides. Learning from experienced professionals with strong backgrounds in biomechanics, sports science, rehabilitation, or engineering ensures that you receive relevant, up-to-date knowledge that aligns with industry standards. Additionally, courses with strong industry links can open doors to valuable networking opportunities, mentorship, and potential career placements.\r\n\r\nWhen evaluating a biomechanics course, consider the credibility of the teaching staff and the programme’s industry connections. Below are key factors to assess.'),(339112,42635,'_blocks_16_text_block_content','field_617669ec13098'),(339113,42635,'blocks_18_acfe_flexible_toggle',''),(339114,42635,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339115,42635,'blocks_18_acfe_flexible_layout_title','Industry Collaborations and Professional Networks'),(339116,42635,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339117,42635,'blocks_18_options_theme','#ffffff'),(339118,42635,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(339119,42635,'blocks_18_options_reverse','1'),(339120,42635,'_blocks_18_options_reverse','field_61768049bb8ac'),(339121,42635,'blocks_18_options',''),(339122,42635,'_blocks_18_options','field_617682517c334'),(339123,42635,'blocks_18_split_5050_image','31747'),(339124,42635,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(339125,42635,'blocks_18_split_5050_video',''),(339126,42635,'_blocks_18_split_5050_video','field_6239f3160848a'),(339127,42635,'blocks_18_split_5050_content_title','Industry Collaborations and Professional Networks'),(339128,42635,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(339129,42635,'blocks_18_split_5050_content_heading',''),(339130,42635,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(339131,42635,'blocks_18_split_5050_content_text','Courses that have partnerships with sports teams, healthcare organisations, universities, or biomechanics companies provide students with access to industry professionals and potential career opportunities. These collaborations can also lead to internships, research projects, or direct job placements after completing the course.'),(339132,42635,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(339133,42635,'blocks_18_split_5050_content_actions',''),(339134,42635,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(339135,42635,'blocks_18_split_5050_content',''),(339136,42635,'_blocks_18_split_5050_content','field_61767afceb8ba'),(339137,42635,'blocks_19_acfe_flexible_toggle',''),(339138,42635,'_blocks_19_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339139,42635,'blocks_19_acfe_flexible_layout_title','Graduate Success and Alumni Network'),(339140,42635,'_blocks_19_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339141,42635,'blocks_19_options_theme','#ffffff'),(339142,42635,'_blocks_19_options_theme','field_617682847c335_field_6176830e2ad17'),(339143,42635,'blocks_19_options_reverse','1'),(339144,42635,'_blocks_19_options_reverse','field_61768049bb8ac'),(339145,42635,'blocks_19_options',''),(339146,42635,'_blocks_19_options','field_617682517c334'),(339147,42635,'blocks_19_split_5050_image','41312'),(339148,42635,'_blocks_19_split_5050_image','field_6239f527a0c3a'),(339149,42635,'blocks_19_split_5050_video',''),(339150,42635,'_blocks_19_split_5050_video','field_6239f3160848a'),(339151,42635,'blocks_19_split_5050_content_title','Graduate Success and Alumni Network'),(339152,42635,'_blocks_19_split_5050_content_title','field_61767bfca3fc0'),(339153,42635,'blocks_19_split_5050_content_heading',''),(339154,42635,'_blocks_19_split_5050_content_heading','field_61767b26eb8bb'),(339155,42635,'blocks_19_split_5050_content_text','A strong alumni network and positive graduate success stories indicate the effectiveness of a biomechanics course. Research where previous students have progressed in their careers, as this can provide insight into the opportunities available after completing the programme.'),(339156,42635,'_blocks_19_split_5050_content_text','field_61767b3beb8bc'),(339157,42635,'blocks_19_split_5050_content_actions',''),(339158,42635,'_blocks_19_split_5050_content_actions','field_61767b68eb8bd'),(339159,42635,'blocks_19_split_5050_content',''),(339160,42635,'_blocks_19_split_5050_content','field_61767afceb8ba'),(339161,42635,'blocks_21_acfe_flexible_toggle',''),(339162,42635,'_blocks_21_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(339163,42635,'blocks_21_acfe_flexible_layout_title','Icons - Costs and Payment'),(339164,42635,'_blocks_21_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(339165,42635,'blocks_21_options_theme','#b61234'),(339166,42635,'_blocks_21_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(339167,42635,'blocks_21_options_format','row'),(339168,42635,'_blocks_21_options_format','field_64bfde9a90690'),(339169,42635,'blocks_21_options',''),(339170,42635,'_blocks_21_options','field_64bfdd9b90684'),(339171,42635,'blocks_21_icon_row_items_0_icon','payment-plans.svg'),(339172,42635,'_blocks_21_icon_row_items_0_icon','field_64bfdd9b9068d'),(339173,42635,'blocks_21_icon_row_items_0_label','Course Costs'),(339174,42635,'_blocks_21_icon_row_items_0_label','field_64bfdd9c9068e'),(339175,42635,'blocks_21_icon_row_items_0_text','Compare costs across providers to find an option that fits your budget.'),(339176,42635,'_blocks_21_icon_row_items_0_text','field_64bfdd9c9068f'),(339177,42635,'blocks_21_icon_row_items_1_icon','start-earning-in.svg'),(339178,42635,'_blocks_21_icon_row_items_1_icon','field_64bfdd9b9068d'),(339179,42635,'blocks_21_icon_row_items_1_label','Grants'),(339180,42635,'_blocks_21_icon_row_items_1_label','field_64bfdd9c9068e'),(339181,42635,'blocks_21_icon_row_items_1_text','Some universities may offer financial aid for biomechanics students, especially in research-intensive programmes.'),(339182,42635,'_blocks_21_icon_row_items_1_text','field_64bfdd9c9068f'),(339183,42635,'blocks_21_icon_row_items_2_icon','return-on-investment-1.svg'),(339184,42635,'_blocks_21_icon_row_items_2_icon','field_64bfdd9b9068d'),(339185,42635,'blocks_21_icon_row_items_2_label','Return on Investment'),(339186,42635,'_blocks_21_icon_row_items_2_label','field_64bfdd9c9068e'),(339187,42635,'blocks_21_icon_row_items_2_text','Consider the earning potential in your chosen biomechanics career and whether the programme justifies the cost.'),(339188,42635,'_blocks_21_icon_row_items_2_text','field_64bfdd9c9068f'),(339195,42635,'blocks_21_icon_row_items','3'),(339196,42635,'_blocks_21_icon_row_items','field_64bfdd9b9068c'),(339197,42635,'blocks_22_acfe_flexible_toggle',''),(339198,42635,'_blocks_22_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339199,42635,'blocks_22_acfe_flexible_layout_title','Conclusion[anchor]'),(339200,42635,'_blocks_22_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339201,42635,'blocks_22_options_theme','#ffffff'),(339202,42635,'_blocks_22_options_theme','field_617682847c335_field_6176830e2ad17'),(339203,42635,'blocks_22_options_reverse','1'),(339204,42635,'_blocks_22_options_reverse','field_61768049bb8ac'),(339205,42635,'blocks_22_options',''),(339206,42635,'_blocks_22_options','field_617682517c334'),(339207,42635,'blocks_22_split_5050_image','42679'),(339208,42635,'_blocks_22_split_5050_image','field_6239f527a0c3a'),(339209,42635,'blocks_22_split_5050_video',''),(339210,42635,'_blocks_22_split_5050_video','field_6239f3160848a'),(339211,42635,'blocks_22_split_5050_content_title',''),(339212,42635,'_blocks_22_split_5050_content_title','field_61767bfca3fc0'),(339213,42635,'blocks_22_split_5050_content_heading','Conclusion'),(339214,42635,'_blocks_22_split_5050_content_heading','field_61767b26eb8bb'),(339215,42635,'blocks_22_split_5050_content_text','Choosing the right biomechanics course is a key step in shaping your career and expanding your expertise in human movement. With so many options available, it’s important to take the time to evaluate courses based on your career goals, the content they offer, accreditation, practical learning opportunities, and industry connections. A well-structured course should provide both theoretical knowledge and hands-on experience, ensuring that you develop the skills needed to apply biomechanics effectively in your chosen field.\r\n\r\nBy considering factors such as course format, tutor expertise, financial investment, and long-term career prospects, you can make an informed decision that aligns with your aspirations. Take the time to research programmes, speak with faculty or alumni, and explore available learning pathways to find the biomechanics course that best supports your professional development.'),(339216,42635,'_blocks_22_split_5050_content_text','field_61767b3beb8bc'),(339217,42635,'blocks_22_split_5050_content_actions',''),(339218,42635,'_blocks_22_split_5050_content_actions','field_61767b68eb8bd'),(339219,42635,'blocks_22_split_5050_content',''),(339220,42635,'_blocks_22_split_5050_content','field_61767afceb8ba'),(339277,42669,'hide_hero','0'),(339278,42669,'_hide_hero','field_66a2380fcda39'),(339279,42669,'hero_title',''),(339280,42669,'_hero_title','field_617571fe285e8'),(339281,42669,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(339282,42669,'_hero_text','field_6175723c285e9'),(339283,42669,'hero_actions',''),(339284,42669,'_hero_actions','field_61757270285ea'),(339285,42669,'hero_style','default'),(339286,42669,'_hero_style','field_62051d9dc5324'),(339287,42669,'hero_image_pos_x','right'),(339288,42669,'_hero_image_pos_x','field_62ec3d05390bb'),(339289,42669,'hero_image_pos_y','top'),(339290,42669,'_hero_image_pos_y','field_62ec3d05390bc'),(339291,42669,'hero_image_pos',''),(339292,42669,'_hero_image_pos','field_62ec3d05390ba'),(339293,42669,'fft_hide_from_listings','0'),(339294,42669,'_fft_hide_from_listings','field_61f1320446ab2'),(339295,42669,'post_format','402'),(339296,42669,'_post_format','field_61756bfb51898'),(339297,42669,'post_author',''),(339298,42669,'_post_author','field_62ec389d22113'),(339299,42669,'post_reviewer',''),(339300,42669,'_post_reviewer','field_627140a2a9800'),(339301,42669,'post_table_of_contents','0'),(339302,42669,'_post_table_of_contents','field_65c503bc846a6'),(339303,42669,'blocks','a:27:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:13:\"step_timeline\";i:16;s:10:\"text_block\";i:17;s:10:\"split_5050\";i:18;s:10:\"split_5050\";i:19;s:10:\"split_5050\";i:20;s:10:\"text_block\";i:21;s:5:\"icons\";i:22;s:10:\"split_5050\";i:23;s:10:\"text_block\";i:24;s:10:\"text_block\";i:25;s:10:\"text_block\";i:26;s:11:\"promo_panel\";}'),(339304,42669,'_blocks','field_6176696113096'),(339305,42669,'_thumbnail_id','40618'),(339306,42669,'__thumbnail_id','field_617570855ddaf'),(339307,42669,'blocks_0_acfe_flexible_toggle',''),(339308,42669,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(339309,42669,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(339310,42669,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(339311,42669,'blocks_0_options_theme','#ffffff'),(339312,42669,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(339313,42669,'blocks_0_options',''),(339314,42669,'_blocks_0_options','field_6177b758246ae'),(339315,42669,'blocks_0_link_stack_content_title',''),(339316,42669,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(339317,42669,'blocks_0_link_stack_content_heading','Introduction'),(339318,42669,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(339319,42669,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(339320,42669,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(339321,42669,'blocks_0_link_stack_content_actions_0_button',''),(339322,42669,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(339323,42669,'blocks_0_link_stack_content_actions','1'),(339324,42669,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(339325,42669,'blocks_0_link_stack_content',''),(339326,42669,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(339327,42669,'blocks_0_link_stack_0_label','1.'),(339328,42669,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(339329,42669,'blocks_0_link_stack_0_title','Overview'),(339330,42669,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(339331,42669,'blocks_0_link_stack_0_url','#overview'),(339332,42669,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(339333,42669,'blocks_0_link_stack_1_label','2.'),(339334,42669,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(339335,42669,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(339336,42669,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(339337,42669,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(339338,42669,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(339339,42669,'blocks_0_link_stack_2_label','3.'),(339340,42669,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(339341,42669,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(339342,42669,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(339343,42669,'blocks_0_link_stack_2_url','#who-should-study-msk'),(339344,42669,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(339345,42669,'blocks_0_link_stack_3_label','4.'),(339346,42669,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(339347,42669,'blocks_0_link_stack_3_title','Common MSK Conditions'),(339348,42669,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(339349,42669,'blocks_0_link_stack_3_url','#common-msk-conditions'),(339350,42669,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(339351,42669,'blocks_0_link_stack_4_label','5.'),(339352,42669,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(339353,42669,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(339354,42669,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(339355,42669,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(339356,42669,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(339357,42669,'blocks_0_link_stack_5_label','6.'),(339358,42669,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(339359,42669,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(339360,42669,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(339361,42669,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(339362,42669,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(339363,42669,'blocks_0_link_stack','6'),(339364,42669,'_blocks_0_link_stack','field_6177b7f600cff'),(339365,42669,'blocks_1_acfe_flexible_toggle',''),(339366,42669,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339367,42669,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(339368,42669,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339369,42669,'blocks_1_options_theme','#ffffff'),(339370,42669,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(339371,42669,'blocks_1_options_reverse','0'),(339372,42669,'_blocks_1_options_reverse','field_61768049bb8ac'),(339373,42669,'blocks_1_options',''),(339374,42669,'_blocks_1_options','field_617682517c334'),(339375,42669,'blocks_1_split_5050_image','40615'),(339376,42669,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(339377,42669,'blocks_1_split_5050_video',''),(339378,42669,'_blocks_1_split_5050_video','field_6239f3160848a'),(339379,42669,'blocks_1_split_5050_content_title',''),(339380,42669,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(339381,42669,'blocks_1_split_5050_content_heading','Overview'),(339382,42669,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(339383,42669,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(339384,42669,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(339385,42669,'blocks_1_split_5050_content_actions',''),(339386,42669,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(339387,42669,'blocks_1_split_5050_content',''),(339388,42669,'_blocks_1_split_5050_content','field_61767afceb8ba'),(339389,42669,'blocks_3_acfe_flexible_toggle',''),(339390,42669,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339391,42669,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(339392,42669,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339393,42669,'blocks_3_options_theme','#f5f5f5'),(339394,42669,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(339395,42669,'blocks_3_options_reverse','1'),(339396,42669,'_blocks_3_options_reverse','field_61768049bb8ac'),(339397,42669,'blocks_3_options',''),(339398,42669,'_blocks_3_options','field_617682517c334'),(339399,42669,'blocks_3_split_5050_image','41542'),(339400,42669,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(339401,42669,'blocks_3_split_5050_video',''),(339402,42669,'_blocks_3_split_5050_video','field_6239f3160848a'),(339403,42669,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(339404,42669,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(339405,42669,'blocks_3_split_5050_content_heading',''),(339406,42669,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(339407,42669,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(339408,42669,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(339409,42669,'blocks_3_split_5050_content_actions',''),(339410,42669,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(339411,42669,'blocks_3_split_5050_content',''),(339412,42669,'_blocks_3_split_5050_content','field_61767afceb8ba'),(339413,42669,'blocks_13_acfe_flexible_toggle',''),(339414,42669,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339415,42669,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(339416,42669,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339417,42669,'blocks_13_options_theme','#ffffff'),(339418,42669,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(339419,42669,'blocks_13_options_reverse','0'),(339420,42669,'_blocks_13_options_reverse','field_61768049bb8ac'),(339421,42669,'blocks_13_options',''),(339422,42669,'_blocks_13_options','field_617682517c334'),(339423,42669,'blocks_13_split_5050_image','18856'),(339424,42669,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(339425,42669,'blocks_13_split_5050_video',''),(339426,42669,'_blocks_13_split_5050_video','field_6239f3160848a'),(339427,42669,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(339428,42669,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(339429,42669,'blocks_13_split_5050_content_heading',''),(339430,42669,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(339431,42669,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(339432,42669,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(339433,42669,'blocks_13_split_5050_content_actions',''),(339434,42669,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(339435,42669,'blocks_13_split_5050_content',''),(339436,42669,'_blocks_13_split_5050_content','field_61767afceb8ba'),(339437,42669,'blocks_6_acfe_flexible_toggle',''),(339438,42669,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339439,42669,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(339440,42669,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339441,42669,'blocks_6_options_theme','#f5f5f5'),(339442,42669,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(339443,42669,'blocks_6_options_reverse','1'),(339444,42669,'_blocks_6_options_reverse','field_61768049bb8ac'),(339445,42669,'blocks_6_options',''),(339446,42669,'_blocks_6_options','field_617682517c334'),(339447,42669,'blocks_6_split_5050_image','41502'),(339448,42669,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(339449,42669,'blocks_6_split_5050_video',''),(339450,42669,'_blocks_6_split_5050_video','field_6239f3160848a'),(339451,42669,'blocks_6_split_5050_content_title','Research & Academia'),(339452,42669,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(339453,42669,'blocks_6_split_5050_content_heading',''),(339454,42669,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(339455,42669,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(339456,42669,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(339457,42669,'blocks_6_split_5050_content_actions',''),(339458,42669,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(339459,42669,'blocks_6_split_5050_content',''),(339460,42669,'_blocks_6_split_5050_content','field_61767afceb8ba'),(339461,42669,'blocks_5_acfe_flexible_toggle',''),(339462,42669,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339463,42669,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(339464,42669,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339465,42669,'blocks_5_options_theme','#f5f5f5'),(339466,42669,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(339467,42669,'blocks_5_options_reverse','1'),(339468,42669,'_blocks_5_options_reverse','field_61768049bb8ac'),(339469,42669,'blocks_5_options',''),(339470,42669,'_blocks_5_options','field_617682517c334'),(339471,42669,'blocks_5_split_5050_image','41539'),(339472,42669,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(339473,42669,'blocks_5_split_5050_video',''),(339474,42669,'_blocks_5_split_5050_video','field_6239f3160848a'),(339475,42669,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(339476,42669,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(339477,42669,'blocks_5_split_5050_content_heading',''),(339478,42669,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(339479,42669,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(339480,42669,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(339481,42669,'blocks_5_split_5050_content_actions',''),(339482,42669,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(339483,42669,'blocks_5_split_5050_content',''),(339484,42669,'_blocks_5_split_5050_content','field_61767afceb8ba'),(339485,42669,'blocks_14_acfe_flexible_toggle',''),(339486,42669,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339487,42669,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (4) '),(339488,42669,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339489,42669,'blocks_14_options_theme','#ffffff'),(339490,42669,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(339491,42669,'blocks_14_options_reverse','0'),(339492,42669,'_blocks_14_options_reverse','field_61768049bb8ac'),(339493,42669,'blocks_14_options',''),(339494,42669,'_blocks_14_options','field_617682517c334'),(339495,42669,'blocks_14_split_5050_image','41490'),(339496,42669,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(339497,42669,'blocks_14_split_5050_video',''),(339498,42669,'_blocks_14_split_5050_video','field_6239f3160848a'),(339499,42669,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(339500,42669,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(339501,42669,'blocks_14_split_5050_content_heading',''),(339502,42669,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(339503,42669,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(339504,42669,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(339505,42669,'blocks_14_split_5050_content_actions',''),(339506,42669,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(339507,42669,'blocks_14_split_5050_content',''),(339508,42669,'_blocks_14_split_5050_content','field_61767afceb8ba'),(339509,42669,'blocks_20_acfe_flexible_toggle',''),(339510,42669,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(339511,42669,'blocks_20_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(339512,42669,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(339513,42669,'blocks_20_options_theme','#b61234'),(339514,42669,'_blocks_20_options_theme','field_6176830e2ad17'),(339515,42669,'blocks_20_options',''),(339516,42669,'_blocks_20_options','field_6176830e2ad16'),(339517,42669,'blocks_20_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(339518,42669,'_blocks_20_text_block_heading','field_617669d413097'),(339519,42669,'blocks_20_text_block_content',''),(339520,42669,'_blocks_20_text_block_content','field_617669ec13098'),(339521,42669,'blocks_10_acfe_flexible_toggle',''),(339522,42669,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(339523,42669,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(339524,42669,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(339525,42669,'blocks_10_options_theme','#ffffff'),(339526,42669,'_blocks_10_options_theme','field_6176830e2ad17'),(339527,42669,'blocks_10_options',''),(339528,42669,'_blocks_10_options','field_6176830e2ad16'),(339529,42669,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(339530,42669,'_blocks_10_text_block_heading','field_617669d413097'),(339531,42669,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(339532,42669,'_blocks_10_text_block_content','field_617669ec13098'),(339533,42669,'blocks_2_acfe_flexible_toggle',''),(339534,42669,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(339535,42669,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(339536,42669,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(339537,42669,'blocks_2_options_theme','#f5f5f5'),(339538,42669,'_blocks_2_options_theme','field_6176830e2ad17'),(339539,42669,'blocks_2_options',''),(339540,42669,'_blocks_2_options','field_6176830e2ad16'),(339541,42669,'blocks_2_text_block_heading','Define Your Career Goals'),(339542,42669,'_blocks_2_text_block_heading','field_617669d413097'),(339543,42669,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(339544,42669,'_blocks_2_text_block_content','field_617669ec13098'),(339545,42669,'blocks_4_acfe_flexible_toggle',''),(339546,42669,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339547,42669,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(339548,42669,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339549,42669,'blocks_4_options_theme','#f5f5f5'),(339550,42669,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(339551,42669,'blocks_4_options_reverse','1'),(339552,42669,'_blocks_4_options_reverse','field_61768049bb8ac'),(339553,42669,'blocks_4_options',''),(339554,42669,'_blocks_4_options','field_617682517c334'),(339555,42669,'blocks_4_split_5050_image','41505'),(339556,42669,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(339557,42669,'blocks_4_split_5050_video',''),(339558,42669,'_blocks_4_split_5050_video','field_6239f3160848a'),(339559,42669,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(339560,42669,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(339561,42669,'blocks_4_split_5050_content_heading',''),(339562,42669,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(339563,42669,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(339564,42669,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(339565,42669,'blocks_4_split_5050_content_actions',''),(339566,42669,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(339567,42669,'blocks_4_split_5050_content',''),(339568,42669,'_blocks_4_split_5050_content','field_61767afceb8ba'),(339569,42669,'blocks_7_acfe_flexible_toggle',''),(339570,42669,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(339571,42669,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(339572,42669,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(339573,42669,'blocks_7_options_theme','#ffffff'),(339574,42669,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(339575,42669,'blocks_7_options_state','0'),(339576,42669,'_blocks_7_options_state','field_6239fcb7508c5'),(339577,42669,'blocks_7_options',''),(339578,42669,'_blocks_7_options','field_6177e2991ac44'),(339579,42669,'blocks_7_content_title',''),(339580,42669,'_blocks_7_content_title','field_64d237e8bb1e2'),(339581,42669,'blocks_7_content_heading','Evaluate Course Content'),(339582,42669,'_blocks_7_content_heading','field_64d237e8bb1e3'),(339583,42669,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(339584,42669,'_blocks_7_content_text','field_64d237e8bb1e4'),(339585,42669,'blocks_7_content_actions',''),(339586,42669,'_blocks_7_content_actions','field_64d237e8bb1e5'),(339587,42669,'blocks_7_content_align','left'),(339588,42669,'_blocks_7_content_align','field_64d2443e6b6aa'),(339589,42669,'blocks_7_content',''),(339590,42669,'_blocks_7_content','field_64d237e8bb1e1'),(339591,42669,'blocks_7_accordion_content','custom'),(339592,42669,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(339593,42669,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(339594,42669,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(339595,42669,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(339596,42669,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(339597,42669,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(339598,42669,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(339599,42669,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(339600,42669,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(339601,42669,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(339602,42669,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(339603,42669,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(339604,42669,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(339605,42669,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(339606,42669,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(339607,42669,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(339608,42669,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(339609,42669,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(339610,42669,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(339611,42669,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(339612,42669,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(339613,42669,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(339614,42669,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(339615,42669,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(339616,42669,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(339617,42669,'blocks_7_accordion_items','6'),(339618,42669,'_blocks_7_accordion_items','field_6177e2991ac4c'),(339619,42669,'blocks_7_actions',''),(339620,42669,'_blocks_7_actions','field_61a746a817f7a'),(339621,42669,'blocks_8_acfe_flexible_toggle',''),(339622,42669,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(339623,42669,'blocks_8_acfe_flexible_layout_title','Text Block'),(339624,42669,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(339625,42669,'blocks_8_options_theme','#b61234'),(339626,42669,'_blocks_8_options_theme','field_6176830e2ad17'),(339627,42669,'blocks_8_options',''),(339628,42669,'_blocks_8_options','field_6176830e2ad16'),(339629,42669,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(339630,42669,'_blocks_8_text_block_heading','field_617669d413097'),(339631,42669,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(339632,42669,'_blocks_8_text_block_content','field_617669ec13098'),(339633,42669,'blocks_9_acfe_flexible_toggle',''),(339634,42669,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(339635,42669,'blocks_9_acfe_flexible_layout_title','Icons'),(339636,42669,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(339637,42669,'blocks_9_options_theme','#b61234'),(339638,42669,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(339639,42669,'blocks_9_options_format','row'),(339640,42669,'_blocks_9_options_format','field_64bfde9a90690'),(339641,42669,'blocks_9_options',''),(339642,42669,'_blocks_9_options','field_64bfdd9b90684'),(339643,42669,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(339644,42669,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(339645,42669,'blocks_9_icon_row_items_0_label','Industry Recognition'),(339646,42669,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(339647,42669,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(339648,42669,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(339649,42669,'blocks_9_icon_row_items_1_icon','qualification.svg'),(339650,42669,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(339651,42669,'blocks_9_icon_row_items_1_label','University Accreditation'),(339652,42669,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(339653,42669,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(339654,42669,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(339655,42669,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(339656,42669,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(339657,42669,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(339658,42669,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(339659,42669,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(339660,42669,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(339661,42669,'blocks_9_icon_row_items','3'),(339662,42669,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(339663,42669,'blocks_11_acfe_flexible_toggle',''),(339664,42669,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339665,42669,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(339666,42669,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339667,42669,'blocks_11_options_theme','#ffffff'),(339668,42669,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(339669,42669,'blocks_11_options_reverse','0'),(339670,42669,'_blocks_11_options_reverse','field_61768049bb8ac'),(339671,42669,'blocks_11_options',''),(339672,42669,'_blocks_11_options','field_617682517c334'),(339673,42669,'blocks_11_split_5050_image','41498'),(339674,42669,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(339675,42669,'blocks_11_split_5050_video',''),(339676,42669,'_blocks_11_split_5050_video','field_6239f3160848a'),(339677,42669,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(339678,42669,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(339679,42669,'blocks_11_split_5050_content_heading',''),(339680,42669,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(339681,42669,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(339682,42669,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(339683,42669,'blocks_11_split_5050_content_actions',''),(339684,42669,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(339685,42669,'blocks_11_split_5050_content',''),(339686,42669,'_blocks_11_split_5050_content','field_61767afceb8ba'),(339687,42669,'blocks_12_acfe_flexible_toggle',''),(339688,42669,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339689,42669,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(339690,42669,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339691,42669,'blocks_12_options_theme','#ffffff'),(339692,42669,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(339693,42669,'blocks_12_options_reverse','0'),(339694,42669,'_blocks_12_options_reverse','field_61768049bb8ac'),(339695,42669,'blocks_12_options',''),(339696,42669,'_blocks_12_options','field_617682517c334'),(339697,42669,'blocks_12_split_5050_image','40387'),(339698,42669,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(339699,42669,'blocks_12_split_5050_video',''),(339700,42669,'_blocks_12_split_5050_video','field_6239f3160848a'),(339701,42669,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(339702,42669,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(339703,42669,'blocks_12_split_5050_content_heading',''),(339704,42669,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(339705,42669,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(339706,42669,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(339707,42669,'blocks_12_split_5050_content_actions',''),(339708,42669,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(339709,42669,'blocks_12_split_5050_content',''),(339710,42669,'_blocks_12_split_5050_content','field_61767afceb8ba'),(339711,42669,'blocks_17_acfe_flexible_toggle',''),(339712,42669,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339713,42669,'blocks_17_acfe_flexible_layout_title','Experienced Training Providers'),(339714,42669,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339715,42669,'blocks_17_options_theme','#ffffff'),(339716,42669,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(339717,42669,'blocks_17_options_reverse','1'),(339718,42669,'_blocks_17_options_reverse','field_61768049bb8ac'),(339719,42669,'blocks_17_options',''),(339720,42669,'_blocks_17_options','field_617682517c334'),(339721,42669,'blocks_17_split_5050_image','41498'),(339722,42669,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(339723,42669,'blocks_17_split_5050_video',''),(339724,42669,'_blocks_17_split_5050_video','field_6239f3160848a'),(339725,42669,'blocks_17_split_5050_content_title','Experienced Training Providers'),(339726,42669,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(339727,42669,'blocks_17_split_5050_content_heading',''),(339728,42669,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(339729,42669,'blocks_17_split_5050_content_text','Tutors with extensive experience in biomechanics bring real-world insights to the classroom, bridging the gap between theory and practice. Look for instructors with backgrounds in academia, professional sports, rehabilitation, or biomechanics research, as their expertise can enhance the learning experience.'),(339730,42669,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(339731,42669,'blocks_17_split_5050_content_actions',''),(339732,42669,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(339733,42669,'blocks_17_split_5050_content',''),(339734,42669,'_blocks_17_split_5050_content','field_61767afceb8ba'),(339735,42669,'blocks_15_acfe_flexible_toggle',''),(339736,42669,'_blocks_15_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(339737,42669,'blocks_15_acfe_flexible_layout_title','Timeline'),(339738,42669,'_blocks_15_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(339739,42669,'blocks_15_options_theme','#f5f5f5'),(339740,42669,'_blocks_15_options_theme','field_6177de53d1196_field_6176830e2ad17'),(339741,42669,'blocks_15_options',''),(339742,42669,'_blocks_15_options','field_6177de53d1195'),(339743,42669,'blocks_15_timeline_content_title',''),(339744,42669,'_blocks_15_timeline_content_title','field_6177de53d1198'),(339745,42669,'blocks_15_timeline_content_heading','Evaluate Course Format and Flexibility'),(339746,42669,'_blocks_15_timeline_content_heading','field_6177de53d1199'),(339747,42669,'blocks_15_timeline_content_text','Biomechanics courses can vary in structure, offering different formats to accommodate students with varying schedules, learning preferences, and career commitments. Whether you’re looking for a full-time degree, a part-time professional development course, or an online programme that fits around your work, understanding the course format is essential in making the right choice. A well-structured course should provide a balance of flexibility and practical engagement, ensuring you gain the knowledge and hands-on experience needed for your career.\r\n\r\nWhen considering a biomechanics course, think about how the course format aligns with your lifestyle and career ambitions. Below are some key factors to evaluate when selecting the right learning structure.'),(339748,42669,'_blocks_15_timeline_content_text','field_6177de53d119a'),(339749,42669,'blocks_15_timeline_content_actions',''),(339750,42669,'_blocks_15_timeline_content_actions','field_6177de53d119b'),(339751,42669,'blocks_15_timeline_content',''),(339752,42669,'_blocks_15_timeline_content','field_6177de53d1197'),(339753,42669,'blocks_15_timeline_items_0_title','Full-Time vs. Part-Time Study'),(339754,42669,'_blocks_15_timeline_items_0_title','field_6177de53d119f'),(339755,42669,'blocks_15_timeline_items_0_text','Full-time biomechanics courses offer an immersive learning experience, allowing students to complete their qualifications more quickly. However, part-time courses can be beneficial for those who are already working in the field and want to upskill while maintaining their job. Choosing between these options depends on your availability, learning pace, and career progression plans.'),(339756,42669,'_blocks_15_timeline_items_0_text','field_6177de53d11a0'),(339757,42669,'blocks_15_timeline_items_1_title','Online, In-Person, and Hybrid Learning'),(339758,42669,'_blocks_15_timeline_items_1_title','field_6177de53d119f'),(339759,42669,'blocks_15_timeline_items_1_text','While some biomechanics courses are delivered entirely in-person, others incorporate online modules to provide greater flexibility. Online learning can be useful for covering theoretical concepts, but biomechanics is a highly practical subject, meaning hybrid programmes that include both online theory and in-person practical sessions can be the most effective for building applied skills.'),(339760,42669,'_blocks_15_timeline_items_1_text','field_6177de53d11a0'),(339761,42669,'blocks_15_timeline_items_2_title','Degree Level and Course Duration'),(339762,42669,'_blocks_15_timeline_items_2_title','field_6177de53d119f'),(339763,42669,'blocks_15_timeline_items_2_text','Depending on your career goals, you may need to choose between a short biomechanics certification, a diploma, or a full degree (BSc, MSc, or PhD). Short courses and diplomas are useful for professionals looking to specialise or upskill, while degree-level courses provide a more in-depth understanding of biomechanics, research methods, and applied movement science.'),(339764,42669,'_blocks_15_timeline_items_2_text','field_6177de53d11a0'),(339765,42669,'blocks_15_timeline_items','3'),(339766,42669,'_blocks_15_timeline_items','field_6177de53d119d'),(339767,42669,'blocks_16_acfe_flexible_toggle',''),(339768,42669,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(339769,42669,'blocks_16_acfe_flexible_layout_title','Tutor Expertise[anchor] '),(339770,42669,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(339771,42669,'blocks_16_options_theme','#ffffff'),(339772,42669,'_blocks_16_options_theme','field_6176830e2ad17'),(339773,42669,'blocks_16_options',''),(339774,42669,'_blocks_16_options','field_6176830e2ad16'),(339775,42669,'blocks_16_text_block_heading','Assess Tutor Expertise and Industry Connections'),(339776,42669,'_blocks_16_text_block_heading','field_617669d413097'),(339777,42669,'blocks_16_text_block_content','The quality of a biomechanics course is not just determined by its content but also by the expertise of the tutors delivering it and the industry connections it provides. Learning from experienced professionals with strong backgrounds in biomechanics, sports science, rehabilitation, or engineering ensures that you receive relevant, up-to-date knowledge that aligns with industry standards. Additionally, courses with strong industry links can open doors to valuable networking opportunities, mentorship, and potential career placements.\r\n\r\nWhen evaluating a biomechanics course, consider the credibility of the teaching staff and the programme’s industry connections. Below are key factors to assess.'),(339778,42669,'_blocks_16_text_block_content','field_617669ec13098'),(339779,42669,'blocks_18_acfe_flexible_toggle',''),(339780,42669,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339781,42669,'blocks_18_acfe_flexible_layout_title','Industry Collaborations and Professional Networks'),(339782,42669,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339783,42669,'blocks_18_options_theme','#ffffff'),(339784,42669,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(339785,42669,'blocks_18_options_reverse','1'),(339786,42669,'_blocks_18_options_reverse','field_61768049bb8ac'),(339787,42669,'blocks_18_options',''),(339788,42669,'_blocks_18_options','field_617682517c334'),(339789,42669,'blocks_18_split_5050_image','41498'),(339790,42669,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(339791,42669,'blocks_18_split_5050_video',''),(339792,42669,'_blocks_18_split_5050_video','field_6239f3160848a'),(339793,42669,'blocks_18_split_5050_content_title','Industry Collaborations and Professional Networks'),(339794,42669,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(339795,42669,'blocks_18_split_5050_content_heading',''),(339796,42669,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(339797,42669,'blocks_18_split_5050_content_text','Courses that have partnerships with sports teams, healthcare organisations, universities, or biomechanics companies provide students with access to industry professionals and potential career opportunities. These collaborations can also lead to internships, research projects, or direct job placements after completing the course.'),(339798,42669,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(339799,42669,'blocks_18_split_5050_content_actions',''),(339800,42669,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(339801,42669,'blocks_18_split_5050_content',''),(339802,42669,'_blocks_18_split_5050_content','field_61767afceb8ba'),(339803,42669,'blocks_19_acfe_flexible_toggle',''),(339804,42669,'_blocks_19_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339805,42669,'blocks_19_acfe_flexible_layout_title','Graduate Success and Alumni Network'),(339806,42669,'_blocks_19_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339807,42669,'blocks_19_options_theme','#ffffff'),(339808,42669,'_blocks_19_options_theme','field_617682847c335_field_6176830e2ad17'),(339809,42669,'blocks_19_options_reverse','1'),(339810,42669,'_blocks_19_options_reverse','field_61768049bb8ac'),(339811,42669,'blocks_19_options',''),(339812,42669,'_blocks_19_options','field_617682517c334'),(339813,42669,'blocks_19_split_5050_image','41498'),(339814,42669,'_blocks_19_split_5050_image','field_6239f527a0c3a'),(339815,42669,'blocks_19_split_5050_video',''),(339816,42669,'_blocks_19_split_5050_video','field_6239f3160848a'),(339817,42669,'blocks_19_split_5050_content_title','Graduate Success and Alumni Network'),(339818,42669,'_blocks_19_split_5050_content_title','field_61767bfca3fc0'),(339819,42669,'blocks_19_split_5050_content_heading',''),(339820,42669,'_blocks_19_split_5050_content_heading','field_61767b26eb8bb'),(339821,42669,'blocks_19_split_5050_content_text','A strong alumni network and positive graduate success stories indicate the effectiveness of a biomechanics course. Research where previous students have progressed in their careers, as this can provide insight into the opportunities available after completing the programme.'),(339822,42669,'_blocks_19_split_5050_content_text','field_61767b3beb8bc'),(339823,42669,'blocks_19_split_5050_content_actions',''),(339824,42669,'_blocks_19_split_5050_content_actions','field_61767b68eb8bd'),(339825,42669,'blocks_19_split_5050_content',''),(339826,42669,'_blocks_19_split_5050_content','field_61767afceb8ba'),(339827,42669,'blocks_21_acfe_flexible_toggle',''),(339828,42669,'_blocks_21_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(339829,42669,'blocks_21_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(339830,42669,'_blocks_21_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(339831,42669,'blocks_21_options_theme','#b61234'),(339832,42669,'_blocks_21_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(339833,42669,'blocks_21_options_format','row'),(339834,42669,'_blocks_21_options_format','field_64bfde9a90690'),(339835,42669,'blocks_21_options',''),(339836,42669,'_blocks_21_options','field_64bfdd9b90684'),(339837,42669,'blocks_21_icon_row_items_0_icon','pass-rate.svg'),(339838,42669,'_blocks_21_icon_row_items_0_icon','field_64bfdd9b9068d'),(339839,42669,'blocks_21_icon_row_items_0_label','More Accurate Assessments'),(339840,42669,'_blocks_21_icon_row_items_0_label','field_64bfdd9c9068e'),(339841,42669,'blocks_21_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(339842,42669,'_blocks_21_icon_row_items_0_text','field_64bfdd9c9068f'),(339843,42669,'blocks_21_icon_row_items_1_icon','exceptional-support.svg'),(339844,42669,'_blocks_21_icon_row_items_1_icon','field_64bfdd9b9068d'),(339845,42669,'blocks_21_icon_row_items_1_label','Personalised Movement Strategies'),(339846,42669,'_blocks_21_icon_row_items_1_label','field_64bfdd9c9068e'),(339847,42669,'blocks_21_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(339848,42669,'_blocks_21_icon_row_items_1_text','field_64bfdd9c9068f'),(339849,42669,'blocks_21_icon_row_items_2_icon','lifetime-course-access.svg'),(339850,42669,'_blocks_21_icon_row_items_2_icon','field_64bfdd9b9068d'),(339851,42669,'blocks_21_icon_row_items_2_label','Injury Prevention and Longevity'),(339852,42669,'_blocks_21_icon_row_items_2_label','field_64bfdd9c9068e'),(339853,42669,'blocks_21_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(339854,42669,'_blocks_21_icon_row_items_2_text','field_64bfdd9c9068f'),(339855,42669,'blocks_21_icon_row_items_3_icon','recognised.svg'),(339856,42669,'_blocks_21_icon_row_items_3_icon','field_64bfdd9b9068d'),(339857,42669,'blocks_21_icon_row_items_3_label','Optimised Performance'),(339858,42669,'_blocks_21_icon_row_items_3_label','field_64bfdd9c9068e'),(339859,42669,'blocks_21_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(339860,42669,'_blocks_21_icon_row_items_3_text','field_64bfdd9c9068f'),(339861,42669,'blocks_21_icon_row_items','4'),(339862,42669,'_blocks_21_icon_row_items','field_64bfdd9b9068c'),(339863,42669,'blocks_22_acfe_flexible_toggle',''),(339864,42669,'_blocks_22_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(339865,42669,'blocks_22_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(339866,42669,'_blocks_22_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(339867,42669,'blocks_22_options_theme','#ffffff'),(339868,42669,'_blocks_22_options_theme','field_617682847c335_field_6176830e2ad17'),(339869,42669,'blocks_22_options_reverse','0'),(339870,42669,'_blocks_22_options_reverse','field_61768049bb8ac'),(339871,42669,'blocks_22_options',''),(339872,42669,'_blocks_22_options','field_617682517c334'),(339873,42669,'blocks_22_split_5050_image','41501'),(339874,42669,'_blocks_22_split_5050_image','field_6239f527a0c3a'),(339875,42669,'blocks_22_split_5050_video',''),(339876,42669,'_blocks_22_split_5050_video','field_6239f3160848a'),(339877,42669,'blocks_22_split_5050_content_title',''),(339878,42669,'_blocks_22_split_5050_content_title','field_61767bfca3fc0'),(339879,42669,'blocks_22_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(339880,42669,'_blocks_22_split_5050_content_heading','field_61767b26eb8bb'),(339881,42669,'blocks_22_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(339882,42669,'_blocks_22_split_5050_content_text','field_61767b3beb8bc'),(339883,42669,'blocks_22_split_5050_content_actions',''),(339884,42669,'_blocks_22_split_5050_content_actions','field_61767b68eb8bd'),(339885,42669,'blocks_22_split_5050_content',''),(339886,42669,'_blocks_22_split_5050_content','field_61767afceb8ba'),(339887,42669,'blocks_23_acfe_flexible_toggle',''),(339888,42669,'_blocks_23_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(339889,42669,'blocks_23_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(339890,42669,'_blocks_23_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(339891,42669,'blocks_23_options_theme','#ffffff'),(339892,42669,'_blocks_23_options_theme','field_6176830e2ad17'),(339893,42669,'blocks_23_options',''),(339894,42669,'_blocks_23_options','field_6176830e2ad16'),(339895,42669,'blocks_23_text_block_heading','The Role of MSK Education in Workplace Health'),(339896,42669,'_blocks_23_text_block_heading','field_617669d413097'),(339897,42669,'blocks_23_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(339898,42669,'_blocks_23_text_block_content','field_617669ec13098'),(339899,42669,'blocks_24_acfe_flexible_toggle',''),(339900,42669,'_blocks_24_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(339901,42669,'blocks_24_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(339902,42669,'_blocks_24_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(339903,42669,'blocks_24_options_theme','#ffffff'),(339904,42669,'_blocks_24_options_theme','field_6176830e2ad17'),(339905,42669,'blocks_24_options',''),(339906,42669,'_blocks_24_options','field_6176830e2ad16'),(339907,42669,'blocks_24_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(339908,42669,'_blocks_24_text_block_heading','field_617669d413097'),(339909,42669,'blocks_24_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(339910,42669,'_blocks_24_text_block_content','field_617669ec13098'),(339911,42669,'blocks_25_acfe_flexible_toggle',''),(339912,42669,'_blocks_25_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(339913,42669,'blocks_25_acfe_flexible_layout_title','Conclusion'),(339914,42669,'_blocks_25_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(339915,42669,'blocks_25_options_theme','#b61234'),(339916,42669,'_blocks_25_options_theme','field_6176830e2ad17'),(339917,42669,'blocks_25_options',''),(339918,42669,'_blocks_25_options','field_6176830e2ad16'),(339919,42669,'blocks_25_text_block_heading','Conclusion'),(339920,42669,'_blocks_25_text_block_heading','field_617669d413097'),(339921,42669,'blocks_25_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(339922,42669,'_blocks_25_text_block_content','field_617669ec13098'),(339923,42669,'blocks_26_acfe_flexible_toggle',''),(339924,42669,'_blocks_26_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(339925,42669,'blocks_26_acfe_flexible_layout_title','Promo Panel'),(339926,42669,'_blocks_26_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(339927,42669,'blocks_26_options_alignment','center'),(339928,42669,'_blocks_26_options_alignment','field_61769449f5490'),(339929,42669,'blocks_26_options',''),(339930,42669,'_blocks_26_options','field_617693e1428f0'),(339931,42669,'blocks_26_promo_panel_image','41307'),(339932,42669,'_blocks_26_promo_panel_image','field_617693e1428f3'),(339933,42669,'blocks_26_promo_panel_content_heading','Want to Get Started?'),(339934,42669,'_blocks_26_promo_panel_content_heading','field_617693e1428f6'),(339935,42669,'blocks_26_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(339936,42669,'_blocks_26_promo_panel_content_text','field_617693e1428f7'),(339937,42669,'blocks_26_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(339938,42669,'_blocks_26_promo_panel_content_actions_0_button','field_617693e1428f9'),(339939,42669,'blocks_26_promo_panel_content_actions','1'),(339940,42669,'_blocks_26_promo_panel_content_actions','field_617693e1428f8'),(339941,42669,'blocks_26_promo_panel_content',''),(339942,42669,'_blocks_26_promo_panel_content','field_617693e1428f4'),(339943,42670,'hide_hero','0'),(339944,42670,'_hide_hero','field_66a2380fcda39'),(339945,42670,'hero_title',''),(339946,42670,'_hero_title','field_617571fe285e8'),(339947,42670,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(339948,42670,'_hero_text','field_6175723c285e9'),(339949,42670,'hero_actions',''),(339950,42670,'_hero_actions','field_61757270285ea'),(339951,42670,'hero_style','default'),(339952,42670,'_hero_style','field_62051d9dc5324'),(339953,42670,'hero_image_pos_x','right'),(339954,42670,'_hero_image_pos_x','field_62ec3d05390bb'),(339955,42670,'hero_image_pos_y','top'),(339956,42670,'_hero_image_pos_y','field_62ec3d05390bc'),(339957,42670,'hero_image_pos',''),(339958,42670,'_hero_image_pos','field_62ec3d05390ba'),(339959,42670,'fft_hide_from_listings','0'),(339960,42670,'_fft_hide_from_listings','field_61f1320446ab2'),(339961,42670,'post_format','402'),(339962,42670,'_post_format','field_61756bfb51898'),(339963,42670,'post_author',''),(339964,42670,'_post_author','field_62ec389d22113'),(339965,42670,'post_reviewer',''),(339966,42670,'_post_reviewer','field_627140a2a9800'),(339967,42670,'post_table_of_contents','0'),(339968,42670,'_post_table_of_contents','field_65c503bc846a6'),(339969,42670,'blocks','a:27:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:13:\"step_timeline\";i:16;s:10:\"text_block\";i:17;s:10:\"split_5050\";i:18;s:10:\"split_5050\";i:19;s:10:\"split_5050\";i:20;s:10:\"text_block\";i:21;s:5:\"icons\";i:22;s:10:\"split_5050\";i:23;s:10:\"text_block\";i:24;s:10:\"text_block\";i:25;s:10:\"text_block\";i:26;s:11:\"promo_panel\";}'),(339970,42670,'_blocks','field_6176696113096'),(339971,42670,'_thumbnail_id','40618'),(339972,42670,'__thumbnail_id','field_617570855ddaf'),(339973,42670,'blocks_0_acfe_flexible_toggle',''),(339974,42670,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(339975,42670,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(339976,42670,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(339977,42670,'blocks_0_options_theme','#ffffff'),(339978,42670,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(339979,42670,'blocks_0_options',''),(339980,42670,'_blocks_0_options','field_6177b758246ae'),(339981,42670,'blocks_0_link_stack_content_title',''),(339982,42670,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(339983,42670,'blocks_0_link_stack_content_heading','Introduction'),(339984,42670,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(339985,42670,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(339986,42670,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(339987,42670,'blocks_0_link_stack_content_actions_0_button',''),(339988,42670,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(339989,42670,'blocks_0_link_stack_content_actions','1'),(339990,42670,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(339991,42670,'blocks_0_link_stack_content',''),(339992,42670,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(339993,42670,'blocks_0_link_stack_0_label','1.'),(339994,42670,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(339995,42670,'blocks_0_link_stack_0_title','Overview'),(339996,42670,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(339997,42670,'blocks_0_link_stack_0_url','#overview'),(339998,42670,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(339999,42670,'blocks_0_link_stack_1_label','2.'),(340000,42670,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(340001,42670,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(340002,42670,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(340003,42670,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(340004,42670,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(340005,42670,'blocks_0_link_stack_2_label','3.'),(340006,42670,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(340007,42670,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(340008,42670,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(340009,42670,'blocks_0_link_stack_2_url','#who-should-study-msk'),(340010,42670,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(340011,42670,'blocks_0_link_stack_3_label','4.'),(340012,42670,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(340013,42670,'blocks_0_link_stack_3_title','Common MSK Conditions'),(340014,42670,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(340015,42670,'blocks_0_link_stack_3_url','#common-msk-conditions'),(340016,42670,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(340017,42670,'blocks_0_link_stack_4_label','5.'),(340018,42670,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(340019,42670,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(340020,42670,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(340021,42670,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(340022,42670,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(340023,42670,'blocks_0_link_stack_5_label','6.'),(340024,42670,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(340025,42670,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(340026,42670,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(340027,42670,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(340028,42670,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(340029,42670,'blocks_0_link_stack','6'),(340030,42670,'_blocks_0_link_stack','field_6177b7f600cff'),(340031,42670,'blocks_1_acfe_flexible_toggle',''),(340032,42670,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340033,42670,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(340034,42670,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340035,42670,'blocks_1_options_theme','#ffffff'),(340036,42670,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(340037,42670,'blocks_1_options_reverse','0'),(340038,42670,'_blocks_1_options_reverse','field_61768049bb8ac'),(340039,42670,'blocks_1_options',''),(340040,42670,'_blocks_1_options','field_617682517c334'),(340041,42670,'blocks_1_split_5050_image','40615'),(340042,42670,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(340043,42670,'blocks_1_split_5050_video',''),(340044,42670,'_blocks_1_split_5050_video','field_6239f3160848a'),(340045,42670,'blocks_1_split_5050_content_title',''),(340046,42670,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(340047,42670,'blocks_1_split_5050_content_heading','Overview'),(340048,42670,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(340049,42670,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(340050,42670,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(340051,42670,'blocks_1_split_5050_content_actions',''),(340052,42670,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(340053,42670,'blocks_1_split_5050_content',''),(340054,42670,'_blocks_1_split_5050_content','field_61767afceb8ba'),(340055,42670,'blocks_3_acfe_flexible_toggle',''),(340056,42670,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340057,42670,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(340058,42670,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340059,42670,'blocks_3_options_theme','#f5f5f5'),(340060,42670,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(340061,42670,'blocks_3_options_reverse','1'),(340062,42670,'_blocks_3_options_reverse','field_61768049bb8ac'),(340063,42670,'blocks_3_options',''),(340064,42670,'_blocks_3_options','field_617682517c334'),(340065,42670,'blocks_3_split_5050_image','41542'),(340066,42670,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(340067,42670,'blocks_3_split_5050_video',''),(340068,42670,'_blocks_3_split_5050_video','field_6239f3160848a'),(340069,42670,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(340070,42670,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(340071,42670,'blocks_3_split_5050_content_heading',''),(340072,42670,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(340073,42670,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(340074,42670,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(340075,42670,'blocks_3_split_5050_content_actions',''),(340076,42670,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(340077,42670,'blocks_3_split_5050_content',''),(340078,42670,'_blocks_3_split_5050_content','field_61767afceb8ba'),(340079,42670,'blocks_13_acfe_flexible_toggle',''),(340080,42670,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340081,42670,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(340082,42670,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340083,42670,'blocks_13_options_theme','#ffffff'),(340084,42670,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(340085,42670,'blocks_13_options_reverse','0'),(340086,42670,'_blocks_13_options_reverse','field_61768049bb8ac'),(340087,42670,'blocks_13_options',''),(340088,42670,'_blocks_13_options','field_617682517c334'),(340089,42670,'blocks_13_split_5050_image','18856'),(340090,42670,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(340091,42670,'blocks_13_split_5050_video',''),(340092,42670,'_blocks_13_split_5050_video','field_6239f3160848a'),(340093,42670,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(340094,42670,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(340095,42670,'blocks_13_split_5050_content_heading',''),(340096,42670,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(340097,42670,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(340098,42670,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(340099,42670,'blocks_13_split_5050_content_actions',''),(340100,42670,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(340101,42670,'blocks_13_split_5050_content',''),(340102,42670,'_blocks_13_split_5050_content','field_61767afceb8ba'),(340103,42670,'blocks_6_acfe_flexible_toggle',''),(340104,42670,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340105,42670,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(340106,42670,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340107,42670,'blocks_6_options_theme','#f5f5f5'),(340108,42670,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(340109,42670,'blocks_6_options_reverse','1'),(340110,42670,'_blocks_6_options_reverse','field_61768049bb8ac'),(340111,42670,'blocks_6_options',''),(340112,42670,'_blocks_6_options','field_617682517c334'),(340113,42670,'blocks_6_split_5050_image','41502'),(340114,42670,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(340115,42670,'blocks_6_split_5050_video',''),(340116,42670,'_blocks_6_split_5050_video','field_6239f3160848a'),(340117,42670,'blocks_6_split_5050_content_title','Research & Academia'),(340118,42670,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(340119,42670,'blocks_6_split_5050_content_heading',''),(340120,42670,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(340121,42670,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(340122,42670,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(340123,42670,'blocks_6_split_5050_content_actions',''),(340124,42670,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(340125,42670,'blocks_6_split_5050_content',''),(340126,42670,'_blocks_6_split_5050_content','field_61767afceb8ba'),(340127,42670,'blocks_5_acfe_flexible_toggle',''),(340128,42670,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340129,42670,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(340130,42670,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340131,42670,'blocks_5_options_theme','#f5f5f5'),(340132,42670,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(340133,42670,'blocks_5_options_reverse','1'),(340134,42670,'_blocks_5_options_reverse','field_61768049bb8ac'),(340135,42670,'blocks_5_options',''),(340136,42670,'_blocks_5_options','field_617682517c334'),(340137,42670,'blocks_5_split_5050_image','41539'),(340138,42670,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(340139,42670,'blocks_5_split_5050_video',''),(340140,42670,'_blocks_5_split_5050_video','field_6239f3160848a'),(340141,42670,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(340142,42670,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(340143,42670,'blocks_5_split_5050_content_heading',''),(340144,42670,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(340145,42670,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(340146,42670,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(340147,42670,'blocks_5_split_5050_content_actions',''),(340148,42670,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(340149,42670,'blocks_5_split_5050_content',''),(340150,42670,'_blocks_5_split_5050_content','field_61767afceb8ba'),(340151,42670,'blocks_14_acfe_flexible_toggle',''),(340152,42670,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340153,42670,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (4) '),(340154,42670,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340155,42670,'blocks_14_options_theme','#ffffff'),(340156,42670,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(340157,42670,'blocks_14_options_reverse','0'),(340158,42670,'_blocks_14_options_reverse','field_61768049bb8ac'),(340159,42670,'blocks_14_options',''),(340160,42670,'_blocks_14_options','field_617682517c334'),(340161,42670,'blocks_14_split_5050_image','41490'),(340162,42670,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(340163,42670,'blocks_14_split_5050_video',''),(340164,42670,'_blocks_14_split_5050_video','field_6239f3160848a'),(340165,42670,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(340166,42670,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(340167,42670,'blocks_14_split_5050_content_heading',''),(340168,42670,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(340169,42670,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(340170,42670,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(340171,42670,'blocks_14_split_5050_content_actions',''),(340172,42670,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(340173,42670,'blocks_14_split_5050_content',''),(340174,42670,'_blocks_14_split_5050_content','field_61767afceb8ba'),(340175,42670,'blocks_20_acfe_flexible_toggle',''),(340176,42670,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(340177,42670,'blocks_20_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(340178,42670,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(340179,42670,'blocks_20_options_theme','#b61234'),(340180,42670,'_blocks_20_options_theme','field_6176830e2ad17'),(340181,42670,'blocks_20_options',''),(340182,42670,'_blocks_20_options','field_6176830e2ad16'),(340183,42670,'blocks_20_text_block_heading','Compare Costs and Payment/Finance Options'),(340184,42670,'_blocks_20_text_block_heading','field_617669d413097'),(340185,42670,'blocks_20_text_block_content','Biomechanics courses can vary significantly in cost, depending on factors such as course level, institution, and delivery format. While investing in your education is important, it’s equally essential to choose a course that provides good value for money and aligns with your career goals. Understanding the financial commitment involved and exploring available funding options can help you make an informed decision without unnecessary financial strain.\r\n\r\nWhen comparing the costs of biomechanics courses, consider not only tuition fees but also additional expenses such as course materials, lab access, and travel for in-person sessions. Below are key financial factors to take into account.'),(340186,42670,'_blocks_20_text_block_content','field_617669ec13098'),(340187,42670,'blocks_10_acfe_flexible_toggle',''),(340188,42670,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(340189,42670,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(340190,42670,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(340191,42670,'blocks_10_options_theme','#ffffff'),(340192,42670,'_blocks_10_options_theme','field_6176830e2ad17'),(340193,42670,'blocks_10_options',''),(340194,42670,'_blocks_10_options','field_6176830e2ad16'),(340195,42670,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(340196,42670,'_blocks_10_text_block_heading','field_617669d413097'),(340197,42670,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(340198,42670,'_blocks_10_text_block_content','field_617669ec13098'),(340199,42670,'blocks_2_acfe_flexible_toggle',''),(340200,42670,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(340201,42670,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(340202,42670,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(340203,42670,'blocks_2_options_theme','#f5f5f5'),(340204,42670,'_blocks_2_options_theme','field_6176830e2ad17'),(340205,42670,'blocks_2_options',''),(340206,42670,'_blocks_2_options','field_6176830e2ad16'),(340207,42670,'blocks_2_text_block_heading','Define Your Career Goals'),(340208,42670,'_blocks_2_text_block_heading','field_617669d413097'),(340209,42670,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(340210,42670,'_blocks_2_text_block_content','field_617669ec13098'),(340211,42670,'blocks_4_acfe_flexible_toggle',''),(340212,42670,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340213,42670,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(340214,42670,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340215,42670,'blocks_4_options_theme','#f5f5f5'),(340216,42670,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(340217,42670,'blocks_4_options_reverse','1'),(340218,42670,'_blocks_4_options_reverse','field_61768049bb8ac'),(340219,42670,'blocks_4_options',''),(340220,42670,'_blocks_4_options','field_617682517c334'),(340221,42670,'blocks_4_split_5050_image','41505'),(340222,42670,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(340223,42670,'blocks_4_split_5050_video',''),(340224,42670,'_blocks_4_split_5050_video','field_6239f3160848a'),(340225,42670,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(340226,42670,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(340227,42670,'blocks_4_split_5050_content_heading',''),(340228,42670,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(340229,42670,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(340230,42670,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(340231,42670,'blocks_4_split_5050_content_actions',''),(340232,42670,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(340233,42670,'blocks_4_split_5050_content',''),(340234,42670,'_blocks_4_split_5050_content','field_61767afceb8ba'),(340235,42670,'blocks_7_acfe_flexible_toggle',''),(340236,42670,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(340237,42670,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(340238,42670,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(340239,42670,'blocks_7_options_theme','#ffffff'),(340240,42670,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(340241,42670,'blocks_7_options_state','0'),(340242,42670,'_blocks_7_options_state','field_6239fcb7508c5'),(340243,42670,'blocks_7_options',''),(340244,42670,'_blocks_7_options','field_6177e2991ac44'),(340245,42670,'blocks_7_content_title',''),(340246,42670,'_blocks_7_content_title','field_64d237e8bb1e2'),(340247,42670,'blocks_7_content_heading','Evaluate Course Content'),(340248,42670,'_blocks_7_content_heading','field_64d237e8bb1e3'),(340249,42670,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(340250,42670,'_blocks_7_content_text','field_64d237e8bb1e4'),(340251,42670,'blocks_7_content_actions',''),(340252,42670,'_blocks_7_content_actions','field_64d237e8bb1e5'),(340253,42670,'blocks_7_content_align','left'),(340254,42670,'_blocks_7_content_align','field_64d2443e6b6aa'),(340255,42670,'blocks_7_content',''),(340256,42670,'_blocks_7_content','field_64d237e8bb1e1'),(340257,42670,'blocks_7_accordion_content','custom'),(340258,42670,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(340259,42670,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(340260,42670,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(340261,42670,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(340262,42670,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(340263,42670,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(340264,42670,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(340265,42670,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(340266,42670,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(340267,42670,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(340268,42670,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(340269,42670,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(340270,42670,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(340271,42670,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(340272,42670,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(340273,42670,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(340274,42670,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(340275,42670,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(340276,42670,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(340277,42670,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(340278,42670,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(340279,42670,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(340280,42670,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(340281,42670,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(340282,42670,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(340283,42670,'blocks_7_accordion_items','6'),(340284,42670,'_blocks_7_accordion_items','field_6177e2991ac4c'),(340285,42670,'blocks_7_actions',''),(340286,42670,'_blocks_7_actions','field_61a746a817f7a'),(340287,42670,'blocks_8_acfe_flexible_toggle',''),(340288,42670,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(340289,42670,'blocks_8_acfe_flexible_layout_title','Text Block'),(340290,42670,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(340291,42670,'blocks_8_options_theme','#b61234'),(340292,42670,'_blocks_8_options_theme','field_6176830e2ad17'),(340293,42670,'blocks_8_options',''),(340294,42670,'_blocks_8_options','field_6176830e2ad16'),(340295,42670,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(340296,42670,'_blocks_8_text_block_heading','field_617669d413097'),(340297,42670,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(340298,42670,'_blocks_8_text_block_content','field_617669ec13098'),(340299,42670,'blocks_9_acfe_flexible_toggle',''),(340300,42670,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(340301,42670,'blocks_9_acfe_flexible_layout_title','Icons'),(340302,42670,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(340303,42670,'blocks_9_options_theme','#b61234'),(340304,42670,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(340305,42670,'blocks_9_options_format','row'),(340306,42670,'_blocks_9_options_format','field_64bfde9a90690'),(340307,42670,'blocks_9_options',''),(340308,42670,'_blocks_9_options','field_64bfdd9b90684'),(340309,42670,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(340310,42670,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(340311,42670,'blocks_9_icon_row_items_0_label','Industry Recognition'),(340312,42670,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(340313,42670,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(340314,42670,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(340315,42670,'blocks_9_icon_row_items_1_icon','qualification.svg'),(340316,42670,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(340317,42670,'blocks_9_icon_row_items_1_label','University Accreditation'),(340318,42670,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(340319,42670,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(340320,42670,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(340321,42670,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(340322,42670,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(340323,42670,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(340324,42670,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(340325,42670,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(340326,42670,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(340327,42670,'blocks_9_icon_row_items','3'),(340328,42670,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(340329,42670,'blocks_11_acfe_flexible_toggle',''),(340330,42670,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340331,42670,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(340332,42670,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340333,42670,'blocks_11_options_theme','#ffffff'),(340334,42670,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(340335,42670,'blocks_11_options_reverse','0'),(340336,42670,'_blocks_11_options_reverse','field_61768049bb8ac'),(340337,42670,'blocks_11_options',''),(340338,42670,'_blocks_11_options','field_617682517c334'),(340339,42670,'blocks_11_split_5050_image','41498'),(340340,42670,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(340341,42670,'blocks_11_split_5050_video',''),(340342,42670,'_blocks_11_split_5050_video','field_6239f3160848a'),(340343,42670,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(340344,42670,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(340345,42670,'blocks_11_split_5050_content_heading',''),(340346,42670,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(340347,42670,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(340348,42670,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(340349,42670,'blocks_11_split_5050_content_actions',''),(340350,42670,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(340351,42670,'blocks_11_split_5050_content',''),(340352,42670,'_blocks_11_split_5050_content','field_61767afceb8ba'),(340353,42670,'blocks_12_acfe_flexible_toggle',''),(340354,42670,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340355,42670,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(340356,42670,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340357,42670,'blocks_12_options_theme','#ffffff'),(340358,42670,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(340359,42670,'blocks_12_options_reverse','0'),(340360,42670,'_blocks_12_options_reverse','field_61768049bb8ac'),(340361,42670,'blocks_12_options',''),(340362,42670,'_blocks_12_options','field_617682517c334'),(340363,42670,'blocks_12_split_5050_image','40387'),(340364,42670,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(340365,42670,'blocks_12_split_5050_video',''),(340366,42670,'_blocks_12_split_5050_video','field_6239f3160848a'),(340367,42670,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(340368,42670,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(340369,42670,'blocks_12_split_5050_content_heading',''),(340370,42670,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(340371,42670,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(340372,42670,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(340373,42670,'blocks_12_split_5050_content_actions',''),(340374,42670,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(340375,42670,'blocks_12_split_5050_content',''),(340376,42670,'_blocks_12_split_5050_content','field_61767afceb8ba'),(340377,42670,'blocks_17_acfe_flexible_toggle',''),(340378,42670,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340379,42670,'blocks_17_acfe_flexible_layout_title','Experienced Training Providers'),(340380,42670,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340381,42670,'blocks_17_options_theme','#ffffff'),(340382,42670,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(340383,42670,'blocks_17_options_reverse','1'),(340384,42670,'_blocks_17_options_reverse','field_61768049bb8ac'),(340385,42670,'blocks_17_options',''),(340386,42670,'_blocks_17_options','field_617682517c334'),(340387,42670,'blocks_17_split_5050_image','41498'),(340388,42670,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(340389,42670,'blocks_17_split_5050_video',''),(340390,42670,'_blocks_17_split_5050_video','field_6239f3160848a'),(340391,42670,'blocks_17_split_5050_content_title','Experienced Training Providers'),(340392,42670,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(340393,42670,'blocks_17_split_5050_content_heading',''),(340394,42670,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(340395,42670,'blocks_17_split_5050_content_text','Tutors with extensive experience in biomechanics bring real-world insights to the classroom, bridging the gap between theory and practice. Look for instructors with backgrounds in academia, professional sports, rehabilitation, or biomechanics research, as their expertise can enhance the learning experience.'),(340396,42670,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(340397,42670,'blocks_17_split_5050_content_actions',''),(340398,42670,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(340399,42670,'blocks_17_split_5050_content',''),(340400,42670,'_blocks_17_split_5050_content','field_61767afceb8ba'),(340401,42670,'blocks_15_acfe_flexible_toggle',''),(340402,42670,'_blocks_15_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(340403,42670,'blocks_15_acfe_flexible_layout_title','Timeline'),(340404,42670,'_blocks_15_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(340405,42670,'blocks_15_options_theme','#f5f5f5'),(340406,42670,'_blocks_15_options_theme','field_6177de53d1196_field_6176830e2ad17'),(340407,42670,'blocks_15_options',''),(340408,42670,'_blocks_15_options','field_6177de53d1195'),(340409,42670,'blocks_15_timeline_content_title',''),(340410,42670,'_blocks_15_timeline_content_title','field_6177de53d1198'),(340411,42670,'blocks_15_timeline_content_heading','Evaluate Course Format and Flexibility'),(340412,42670,'_blocks_15_timeline_content_heading','field_6177de53d1199'),(340413,42670,'blocks_15_timeline_content_text','Biomechanics courses can vary in structure, offering different formats to accommodate students with varying schedules, learning preferences, and career commitments. Whether you’re looking for a full-time degree, a part-time professional development course, or an online programme that fits around your work, understanding the course format is essential in making the right choice. A well-structured course should provide a balance of flexibility and practical engagement, ensuring you gain the knowledge and hands-on experience needed for your career.\r\n\r\nWhen considering a biomechanics course, think about how the course format aligns with your lifestyle and career ambitions. Below are some key factors to evaluate when selecting the right learning structure.'),(340414,42670,'_blocks_15_timeline_content_text','field_6177de53d119a'),(340415,42670,'blocks_15_timeline_content_actions',''),(340416,42670,'_blocks_15_timeline_content_actions','field_6177de53d119b'),(340417,42670,'blocks_15_timeline_content',''),(340418,42670,'_blocks_15_timeline_content','field_6177de53d1197'),(340419,42670,'blocks_15_timeline_items_0_title','Full-Time vs. Part-Time Study'),(340420,42670,'_blocks_15_timeline_items_0_title','field_6177de53d119f'),(340421,42670,'blocks_15_timeline_items_0_text','Full-time biomechanics courses offer an immersive learning experience, allowing students to complete their qualifications more quickly. However, part-time courses can be beneficial for those who are already working in the field and want to upskill while maintaining their job. Choosing between these options depends on your availability, learning pace, and career progression plans.'),(340422,42670,'_blocks_15_timeline_items_0_text','field_6177de53d11a0'),(340423,42670,'blocks_15_timeline_items_1_title','Online, In-Person, and Hybrid Learning'),(340424,42670,'_blocks_15_timeline_items_1_title','field_6177de53d119f'),(340425,42670,'blocks_15_timeline_items_1_text','While some biomechanics courses are delivered entirely in-person, others incorporate online modules to provide greater flexibility. Online learning can be useful for covering theoretical concepts, but biomechanics is a highly practical subject, meaning hybrid programmes that include both online theory and in-person practical sessions can be the most effective for building applied skills.'),(340426,42670,'_blocks_15_timeline_items_1_text','field_6177de53d11a0'),(340427,42670,'blocks_15_timeline_items_2_title','Degree Level and Course Duration'),(340428,42670,'_blocks_15_timeline_items_2_title','field_6177de53d119f'),(340429,42670,'blocks_15_timeline_items_2_text','Depending on your career goals, you may need to choose between a short biomechanics certification, a diploma, or a full degree (BSc, MSc, or PhD). Short courses and diplomas are useful for professionals looking to specialise or upskill, while degree-level courses provide a more in-depth understanding of biomechanics, research methods, and applied movement science.'),(340430,42670,'_blocks_15_timeline_items_2_text','field_6177de53d11a0'),(340431,42670,'blocks_15_timeline_items','3'),(340432,42670,'_blocks_15_timeline_items','field_6177de53d119d'),(340433,42670,'blocks_16_acfe_flexible_toggle',''),(340434,42670,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(340435,42670,'blocks_16_acfe_flexible_layout_title','Tutor Expertise[anchor] '),(340436,42670,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(340437,42670,'blocks_16_options_theme','#ffffff'),(340438,42670,'_blocks_16_options_theme','field_6176830e2ad17'),(340439,42670,'blocks_16_options',''),(340440,42670,'_blocks_16_options','field_6176830e2ad16'),(340441,42670,'blocks_16_text_block_heading','Assess Tutor Expertise and Industry Connections'),(340442,42670,'_blocks_16_text_block_heading','field_617669d413097'),(340443,42670,'blocks_16_text_block_content','The quality of a biomechanics course is not just determined by its content but also by the expertise of the tutors delivering it and the industry connections it provides. Learning from experienced professionals with strong backgrounds in biomechanics, sports science, rehabilitation, or engineering ensures that you receive relevant, up-to-date knowledge that aligns with industry standards. Additionally, courses with strong industry links can open doors to valuable networking opportunities, mentorship, and potential career placements.\r\n\r\nWhen evaluating a biomechanics course, consider the credibility of the teaching staff and the programme’s industry connections. Below are key factors to assess.'),(340444,42670,'_blocks_16_text_block_content','field_617669ec13098'),(340445,42670,'blocks_18_acfe_flexible_toggle',''),(340446,42670,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340447,42670,'blocks_18_acfe_flexible_layout_title','Industry Collaborations and Professional Networks'),(340448,42670,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340449,42670,'blocks_18_options_theme','#ffffff'),(340450,42670,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(340451,42670,'blocks_18_options_reverse','1'),(340452,42670,'_blocks_18_options_reverse','field_61768049bb8ac'),(340453,42670,'blocks_18_options',''),(340454,42670,'_blocks_18_options','field_617682517c334'),(340455,42670,'blocks_18_split_5050_image','41498'),(340456,42670,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(340457,42670,'blocks_18_split_5050_video',''),(340458,42670,'_blocks_18_split_5050_video','field_6239f3160848a'),(340459,42670,'blocks_18_split_5050_content_title','Industry Collaborations and Professional Networks'),(340460,42670,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(340461,42670,'blocks_18_split_5050_content_heading',''),(340462,42670,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(340463,42670,'blocks_18_split_5050_content_text','Courses that have partnerships with sports teams, healthcare organisations, universities, or biomechanics companies provide students with access to industry professionals and potential career opportunities. These collaborations can also lead to internships, research projects, or direct job placements after completing the course.'),(340464,42670,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(340465,42670,'blocks_18_split_5050_content_actions',''),(340466,42670,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(340467,42670,'blocks_18_split_5050_content',''),(340468,42670,'_blocks_18_split_5050_content','field_61767afceb8ba'),(340469,42670,'blocks_19_acfe_flexible_toggle',''),(340470,42670,'_blocks_19_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340471,42670,'blocks_19_acfe_flexible_layout_title','Graduate Success and Alumni Network'),(340472,42670,'_blocks_19_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340473,42670,'blocks_19_options_theme','#ffffff'),(340474,42670,'_blocks_19_options_theme','field_617682847c335_field_6176830e2ad17'),(340475,42670,'blocks_19_options_reverse','1'),(340476,42670,'_blocks_19_options_reverse','field_61768049bb8ac'),(340477,42670,'blocks_19_options',''),(340478,42670,'_blocks_19_options','field_617682517c334'),(340479,42670,'blocks_19_split_5050_image','41498'),(340480,42670,'_blocks_19_split_5050_image','field_6239f527a0c3a'),(340481,42670,'blocks_19_split_5050_video',''),(340482,42670,'_blocks_19_split_5050_video','field_6239f3160848a'),(340483,42670,'blocks_19_split_5050_content_title','Graduate Success and Alumni Network'),(340484,42670,'_blocks_19_split_5050_content_title','field_61767bfca3fc0'),(340485,42670,'blocks_19_split_5050_content_heading',''),(340486,42670,'_blocks_19_split_5050_content_heading','field_61767b26eb8bb'),(340487,42670,'blocks_19_split_5050_content_text','A strong alumni network and positive graduate success stories indicate the effectiveness of a biomechanics course. Research where previous students have progressed in their careers, as this can provide insight into the opportunities available after completing the programme.'),(340488,42670,'_blocks_19_split_5050_content_text','field_61767b3beb8bc'),(340489,42670,'blocks_19_split_5050_content_actions',''),(340490,42670,'_blocks_19_split_5050_content_actions','field_61767b68eb8bd'),(340491,42670,'blocks_19_split_5050_content',''),(340492,42670,'_blocks_19_split_5050_content','field_61767afceb8ba'),(340493,42670,'blocks_21_acfe_flexible_toggle',''),(340494,42670,'_blocks_21_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(340495,42670,'blocks_21_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(340496,42670,'_blocks_21_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(340497,42670,'blocks_21_options_theme','#b61234'),(340498,42670,'_blocks_21_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(340499,42670,'blocks_21_options_format','row'),(340500,42670,'_blocks_21_options_format','field_64bfde9a90690'),(340501,42670,'blocks_21_options',''),(340502,42670,'_blocks_21_options','field_64bfdd9b90684'),(340503,42670,'blocks_21_icon_row_items_0_icon','payment-plans.svg'),(340504,42670,'_blocks_21_icon_row_items_0_icon','field_64bfdd9b9068d'),(340505,42670,'blocks_21_icon_row_items_0_label','Course Costs'),(340506,42670,'_blocks_21_icon_row_items_0_label','field_64bfdd9c9068e'),(340507,42670,'blocks_21_icon_row_items_0_text','Compare costs across providers to find an option that fits your budget.'),(340508,42670,'_blocks_21_icon_row_items_0_text','field_64bfdd9c9068f'),(340509,42670,'blocks_21_icon_row_items_1_icon','start-earning-in.svg'),(340510,42670,'_blocks_21_icon_row_items_1_icon','field_64bfdd9b9068d'),(340511,42670,'blocks_21_icon_row_items_1_label','Grants'),(340512,42670,'_blocks_21_icon_row_items_1_label','field_64bfdd9c9068e'),(340513,42670,'blocks_21_icon_row_items_1_text','Some universities may offer financial aid for biomechanics students, especially in research-intensive programmes.'),(340514,42670,'_blocks_21_icon_row_items_1_text','field_64bfdd9c9068f'),(340515,42670,'blocks_21_icon_row_items_2_icon','return-on-investment-1.svg'),(340516,42670,'_blocks_21_icon_row_items_2_icon','field_64bfdd9b9068d'),(340517,42670,'blocks_21_icon_row_items_2_label','Return on Investment'),(340518,42670,'_blocks_21_icon_row_items_2_label','field_64bfdd9c9068e'),(340519,42670,'blocks_21_icon_row_items_2_text','Consider the earning potential in your chosen biomechanics career and whether the programme justifies the cost.'),(340520,42670,'_blocks_21_icon_row_items_2_text','field_64bfdd9c9068f'),(340521,42670,'blocks_21_icon_row_items','3'),(340522,42670,'_blocks_21_icon_row_items','field_64bfdd9b9068c'),(340523,42670,'blocks_22_acfe_flexible_toggle',''),(340524,42670,'_blocks_22_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340525,42670,'blocks_22_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(340526,42670,'_blocks_22_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340527,42670,'blocks_22_options_theme','#ffffff'),(340528,42670,'_blocks_22_options_theme','field_617682847c335_field_6176830e2ad17'),(340529,42670,'blocks_22_options_reverse','0'),(340530,42670,'_blocks_22_options_reverse','field_61768049bb8ac'),(340531,42670,'blocks_22_options',''),(340532,42670,'_blocks_22_options','field_617682517c334'),(340533,42670,'blocks_22_split_5050_image','41501'),(340534,42670,'_blocks_22_split_5050_image','field_6239f527a0c3a'),(340535,42670,'blocks_22_split_5050_video',''),(340536,42670,'_blocks_22_split_5050_video','field_6239f3160848a'),(340537,42670,'blocks_22_split_5050_content_title',''),(340538,42670,'_blocks_22_split_5050_content_title','field_61767bfca3fc0'),(340539,42670,'blocks_22_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(340540,42670,'_blocks_22_split_5050_content_heading','field_61767b26eb8bb'),(340541,42670,'blocks_22_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(340542,42670,'_blocks_22_split_5050_content_text','field_61767b3beb8bc'),(340543,42670,'blocks_22_split_5050_content_actions',''),(340544,42670,'_blocks_22_split_5050_content_actions','field_61767b68eb8bd'),(340545,42670,'blocks_22_split_5050_content',''),(340546,42670,'_blocks_22_split_5050_content','field_61767afceb8ba'),(340547,42670,'blocks_23_acfe_flexible_toggle',''),(340548,42670,'_blocks_23_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(340549,42670,'blocks_23_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(340550,42670,'_blocks_23_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(340551,42670,'blocks_23_options_theme','#ffffff'),(340552,42670,'_blocks_23_options_theme','field_6176830e2ad17'),(340553,42670,'blocks_23_options',''),(340554,42670,'_blocks_23_options','field_6176830e2ad16'),(340555,42670,'blocks_23_text_block_heading','The Role of MSK Education in Workplace Health'),(340556,42670,'_blocks_23_text_block_heading','field_617669d413097'),(340557,42670,'blocks_23_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(340558,42670,'_blocks_23_text_block_content','field_617669ec13098'),(340559,42670,'blocks_24_acfe_flexible_toggle',''),(340560,42670,'_blocks_24_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(340561,42670,'blocks_24_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(340562,42670,'_blocks_24_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(340563,42670,'blocks_24_options_theme','#ffffff'),(340564,42670,'_blocks_24_options_theme','field_6176830e2ad17'),(340565,42670,'blocks_24_options',''),(340566,42670,'_blocks_24_options','field_6176830e2ad16'),(340567,42670,'blocks_24_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(340568,42670,'_blocks_24_text_block_heading','field_617669d413097'),(340569,42670,'blocks_24_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(340570,42670,'_blocks_24_text_block_content','field_617669ec13098'),(340571,42670,'blocks_25_acfe_flexible_toggle',''),(340572,42670,'_blocks_25_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(340573,42670,'blocks_25_acfe_flexible_layout_title','Conclusion'),(340574,42670,'_blocks_25_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(340575,42670,'blocks_25_options_theme','#b61234'),(340576,42670,'_blocks_25_options_theme','field_6176830e2ad17'),(340577,42670,'blocks_25_options',''),(340578,42670,'_blocks_25_options','field_6176830e2ad16'),(340579,42670,'blocks_25_text_block_heading','Conclusion'),(340580,42670,'_blocks_25_text_block_heading','field_617669d413097'),(340581,42670,'blocks_25_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(340582,42670,'_blocks_25_text_block_content','field_617669ec13098'),(340583,42670,'blocks_26_acfe_flexible_toggle',''),(340584,42670,'_blocks_26_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(340585,42670,'blocks_26_acfe_flexible_layout_title','Promo Panel'),(340586,42670,'_blocks_26_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(340587,42670,'blocks_26_options_alignment','center'),(340588,42670,'_blocks_26_options_alignment','field_61769449f5490'),(340589,42670,'blocks_26_options',''),(340590,42670,'_blocks_26_options','field_617693e1428f0'),(340591,42670,'blocks_26_promo_panel_image','41307'),(340592,42670,'_blocks_26_promo_panel_image','field_617693e1428f3'),(340593,42670,'blocks_26_promo_panel_content_heading','Want to Get Started?'),(340594,42670,'_blocks_26_promo_panel_content_heading','field_617693e1428f6'),(340595,42670,'blocks_26_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(340596,42670,'_blocks_26_promo_panel_content_text','field_617693e1428f7'),(340597,42670,'blocks_26_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(340598,42670,'_blocks_26_promo_panel_content_actions_0_button','field_617693e1428f9'),(340599,42670,'blocks_26_promo_panel_content_actions','1'),(340600,42670,'_blocks_26_promo_panel_content_actions','field_617693e1428f8'),(340601,42670,'blocks_26_promo_panel_content',''),(340602,42670,'_blocks_26_promo_panel_content','field_617693e1428f4'),(340623,42671,'hide_hero','0'),(340624,42671,'_hide_hero','field_66a2380fcda39'),(340625,42671,'hero_title',''),(340626,42671,'_hero_title','field_617571fe285e8'),(340627,42671,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(340628,42671,'_hero_text','field_6175723c285e9'),(340629,42671,'hero_actions',''),(340630,42671,'_hero_actions','field_61757270285ea'),(340631,42671,'hero_style','default'),(340632,42671,'_hero_style','field_62051d9dc5324'),(340633,42671,'hero_image_pos_x','right'),(340634,42671,'_hero_image_pos_x','field_62ec3d05390bb'),(340635,42671,'hero_image_pos_y','top'),(340636,42671,'_hero_image_pos_y','field_62ec3d05390bc'),(340637,42671,'hero_image_pos',''),(340638,42671,'_hero_image_pos','field_62ec3d05390ba'),(340639,42671,'fft_hide_from_listings','0'),(340640,42671,'_fft_hide_from_listings','field_61f1320446ab2'),(340641,42671,'post_format','402'),(340642,42671,'_post_format','field_61756bfb51898'),(340643,42671,'post_author',''),(340644,42671,'_post_author','field_62ec389d22113'),(340645,42671,'post_reviewer',''),(340646,42671,'_post_reviewer','field_627140a2a9800'),(340647,42671,'post_table_of_contents','0'),(340648,42671,'_post_table_of_contents','field_65c503bc846a6'),(340649,42671,'blocks','a:25:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:13:\"step_timeline\";i:16;s:10:\"text_block\";i:17;s:10:\"split_5050\";i:18;s:10:\"split_5050\";i:19;s:10:\"split_5050\";i:20;s:10:\"text_block\";i:21;s:5:\"icons\";i:22;s:10:\"split_5050\";i:23;s:10:\"text_block\";i:24;s:11:\"promo_panel\";}'),(340650,42671,'_blocks','field_6176696113096'),(340651,42671,'_thumbnail_id','40618'),(340652,42671,'__thumbnail_id','field_617570855ddaf'),(340653,42671,'blocks_0_acfe_flexible_toggle',''),(340654,42671,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(340655,42671,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(340656,42671,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(340657,42671,'blocks_0_options_theme','#ffffff'),(340658,42671,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(340659,42671,'blocks_0_options',''),(340660,42671,'_blocks_0_options','field_6177b758246ae'),(340661,42671,'blocks_0_link_stack_content_title',''),(340662,42671,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(340663,42671,'blocks_0_link_stack_content_heading','Introduction'),(340664,42671,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(340665,42671,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(340666,42671,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(340667,42671,'blocks_0_link_stack_content_actions_0_button',''),(340668,42671,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(340669,42671,'blocks_0_link_stack_content_actions','1'),(340670,42671,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(340671,42671,'blocks_0_link_stack_content',''),(340672,42671,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(340673,42671,'blocks_0_link_stack_0_label','1.'),(340674,42671,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(340675,42671,'blocks_0_link_stack_0_title','Overview'),(340676,42671,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(340677,42671,'blocks_0_link_stack_0_url','#overview'),(340678,42671,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(340679,42671,'blocks_0_link_stack_1_label','2.'),(340680,42671,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(340681,42671,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(340682,42671,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(340683,42671,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(340684,42671,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(340685,42671,'blocks_0_link_stack_2_label','3.'),(340686,42671,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(340687,42671,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(340688,42671,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(340689,42671,'blocks_0_link_stack_2_url','#who-should-study-msk'),(340690,42671,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(340691,42671,'blocks_0_link_stack_3_label','4.'),(340692,42671,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(340693,42671,'blocks_0_link_stack_3_title','Common MSK Conditions'),(340694,42671,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(340695,42671,'blocks_0_link_stack_3_url','#common-msk-conditions'),(340696,42671,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(340697,42671,'blocks_0_link_stack_4_label','5.'),(340698,42671,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(340699,42671,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(340700,42671,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(340701,42671,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(340702,42671,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(340703,42671,'blocks_0_link_stack_5_label','6.'),(340704,42671,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(340705,42671,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(340706,42671,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(340707,42671,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(340708,42671,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(340709,42671,'blocks_0_link_stack','6'),(340710,42671,'_blocks_0_link_stack','field_6177b7f600cff'),(340711,42671,'blocks_1_acfe_flexible_toggle',''),(340712,42671,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340713,42671,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(340714,42671,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340715,42671,'blocks_1_options_theme','#f5f5f5'),(340716,42671,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(340717,42671,'blocks_1_options_reverse','0'),(340718,42671,'_blocks_1_options_reverse','field_61768049bb8ac'),(340719,42671,'blocks_1_options',''),(340720,42671,'_blocks_1_options','field_617682517c334'),(340721,42671,'blocks_1_split_5050_image','40615'),(340722,42671,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(340723,42671,'blocks_1_split_5050_video',''),(340724,42671,'_blocks_1_split_5050_video','field_6239f3160848a'),(340725,42671,'blocks_1_split_5050_content_title',''),(340726,42671,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(340727,42671,'blocks_1_split_5050_content_heading','Overview'),(340728,42671,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(340729,42671,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(340730,42671,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(340731,42671,'blocks_1_split_5050_content_actions',''),(340732,42671,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(340733,42671,'blocks_1_split_5050_content',''),(340734,42671,'_blocks_1_split_5050_content','field_61767afceb8ba'),(340735,42671,'blocks_3_acfe_flexible_toggle',''),(340736,42671,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340737,42671,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(340738,42671,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340739,42671,'blocks_3_options_theme','#ffffff'),(340740,42671,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(340741,42671,'blocks_3_options_reverse','1'),(340742,42671,'_blocks_3_options_reverse','field_61768049bb8ac'),(340743,42671,'blocks_3_options',''),(340744,42671,'_blocks_3_options','field_617682517c334'),(340745,42671,'blocks_3_split_5050_image','41542'),(340746,42671,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(340747,42671,'blocks_3_split_5050_video',''),(340748,42671,'_blocks_3_split_5050_video','field_6239f3160848a'),(340749,42671,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(340750,42671,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(340751,42671,'blocks_3_split_5050_content_heading',''),(340752,42671,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(340753,42671,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(340754,42671,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(340755,42671,'blocks_3_split_5050_content_actions',''),(340756,42671,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(340757,42671,'blocks_3_split_5050_content',''),(340758,42671,'_blocks_3_split_5050_content','field_61767afceb8ba'),(340759,42671,'blocks_13_acfe_flexible_toggle',''),(340760,42671,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340761,42671,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(340762,42671,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340763,42671,'blocks_13_options_theme','#ffffff'),(340764,42671,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(340765,42671,'blocks_13_options_reverse','0'),(340766,42671,'_blocks_13_options_reverse','field_61768049bb8ac'),(340767,42671,'blocks_13_options',''),(340768,42671,'_blocks_13_options','field_617682517c334'),(340769,42671,'blocks_13_split_5050_image','18856'),(340770,42671,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(340771,42671,'blocks_13_split_5050_video',''),(340772,42671,'_blocks_13_split_5050_video','field_6239f3160848a'),(340773,42671,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(340774,42671,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(340775,42671,'blocks_13_split_5050_content_heading',''),(340776,42671,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(340777,42671,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(340778,42671,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(340779,42671,'blocks_13_split_5050_content_actions',''),(340780,42671,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(340781,42671,'blocks_13_split_5050_content',''),(340782,42671,'_blocks_13_split_5050_content','field_61767afceb8ba'),(340783,42671,'blocks_6_acfe_flexible_toggle',''),(340784,42671,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340785,42671,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(340786,42671,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340787,42671,'blocks_6_options_theme','#ffffff'),(340788,42671,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(340789,42671,'blocks_6_options_reverse','1'),(340790,42671,'_blocks_6_options_reverse','field_61768049bb8ac'),(340791,42671,'blocks_6_options',''),(340792,42671,'_blocks_6_options','field_617682517c334'),(340793,42671,'blocks_6_split_5050_image','41502'),(340794,42671,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(340795,42671,'blocks_6_split_5050_video',''),(340796,42671,'_blocks_6_split_5050_video','field_6239f3160848a'),(340797,42671,'blocks_6_split_5050_content_title','Research & Academia'),(340798,42671,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(340799,42671,'blocks_6_split_5050_content_heading',''),(340800,42671,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(340801,42671,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(340802,42671,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(340803,42671,'blocks_6_split_5050_content_actions',''),(340804,42671,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(340805,42671,'blocks_6_split_5050_content',''),(340806,42671,'_blocks_6_split_5050_content','field_61767afceb8ba'),(340807,42671,'blocks_5_acfe_flexible_toggle',''),(340808,42671,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340809,42671,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(340810,42671,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340811,42671,'blocks_5_options_theme','#ffffff'),(340812,42671,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(340813,42671,'blocks_5_options_reverse','1'),(340814,42671,'_blocks_5_options_reverse','field_61768049bb8ac'),(340815,42671,'blocks_5_options',''),(340816,42671,'_blocks_5_options','field_617682517c334'),(340817,42671,'blocks_5_split_5050_image','41539'),(340818,42671,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(340819,42671,'blocks_5_split_5050_video',''),(340820,42671,'_blocks_5_split_5050_video','field_6239f3160848a'),(340821,42671,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(340822,42671,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(340823,42671,'blocks_5_split_5050_content_heading',''),(340824,42671,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(340825,42671,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(340826,42671,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(340827,42671,'blocks_5_split_5050_content_actions',''),(340828,42671,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(340829,42671,'blocks_5_split_5050_content',''),(340830,42671,'_blocks_5_split_5050_content','field_61767afceb8ba'),(340831,42671,'blocks_14_acfe_flexible_toggle',''),(340832,42671,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340833,42671,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (4) '),(340834,42671,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340835,42671,'blocks_14_options_theme','#ffffff'),(340836,42671,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(340837,42671,'blocks_14_options_reverse','0'),(340838,42671,'_blocks_14_options_reverse','field_61768049bb8ac'),(340839,42671,'blocks_14_options',''),(340840,42671,'_blocks_14_options','field_617682517c334'),(340841,42671,'blocks_14_split_5050_image','41490'),(340842,42671,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(340843,42671,'blocks_14_split_5050_video',''),(340844,42671,'_blocks_14_split_5050_video','field_6239f3160848a'),(340845,42671,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(340846,42671,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(340847,42671,'blocks_14_split_5050_content_heading',''),(340848,42671,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(340849,42671,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(340850,42671,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(340851,42671,'blocks_14_split_5050_content_actions',''),(340852,42671,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(340853,42671,'blocks_14_split_5050_content',''),(340854,42671,'_blocks_14_split_5050_content','field_61767afceb8ba'),(340855,42671,'blocks_20_acfe_flexible_toggle',''),(340856,42671,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(340857,42671,'blocks_20_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(340858,42671,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(340859,42671,'blocks_20_options_theme','#b61234'),(340860,42671,'_blocks_20_options_theme','field_6176830e2ad17'),(340861,42671,'blocks_20_options',''),(340862,42671,'_blocks_20_options','field_6176830e2ad16'),(340863,42671,'blocks_20_text_block_heading','Compare Costs and Payment/Finance Options'),(340864,42671,'_blocks_20_text_block_heading','field_617669d413097'),(340865,42671,'blocks_20_text_block_content','Biomechanics courses can vary significantly in cost, depending on factors such as course level, institution, and delivery format. While investing in your education is important, it’s equally essential to choose a course that provides good value for money and aligns with your career goals. Understanding the financial commitment involved and exploring available funding options can help you make an informed decision without unnecessary financial strain.'),(340866,42671,'_blocks_20_text_block_content','field_617669ec13098'),(340867,42671,'blocks_10_acfe_flexible_toggle',''),(340868,42671,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(340869,42671,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(340870,42671,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(340871,42671,'blocks_10_options_theme','#ffffff'),(340872,42671,'_blocks_10_options_theme','field_6176830e2ad17'),(340873,42671,'blocks_10_options',''),(340874,42671,'_blocks_10_options','field_6176830e2ad16'),(340875,42671,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(340876,42671,'_blocks_10_text_block_heading','field_617669d413097'),(340877,42671,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(340878,42671,'_blocks_10_text_block_content','field_617669ec13098'),(340879,42671,'blocks_2_acfe_flexible_toggle',''),(340880,42671,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(340881,42671,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(340882,42671,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(340883,42671,'blocks_2_options_theme','#ffffff'),(340884,42671,'_blocks_2_options_theme','field_6176830e2ad17'),(340885,42671,'blocks_2_options',''),(340886,42671,'_blocks_2_options','field_6176830e2ad16'),(340887,42671,'blocks_2_text_block_heading','Define Your Career Goals'),(340888,42671,'_blocks_2_text_block_heading','field_617669d413097'),(340889,42671,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(340890,42671,'_blocks_2_text_block_content','field_617669ec13098'),(340891,42671,'blocks_4_acfe_flexible_toggle',''),(340892,42671,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(340893,42671,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(340894,42671,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(340895,42671,'blocks_4_options_theme','#ffffff'),(340896,42671,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(340897,42671,'blocks_4_options_reverse','1'),(340898,42671,'_blocks_4_options_reverse','field_61768049bb8ac'),(340899,42671,'blocks_4_options',''),(340900,42671,'_blocks_4_options','field_617682517c334'),(340901,42671,'blocks_4_split_5050_image','41505'),(340902,42671,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(340903,42671,'blocks_4_split_5050_video',''),(340904,42671,'_blocks_4_split_5050_video','field_6239f3160848a'),(340905,42671,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(340906,42671,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(340907,42671,'blocks_4_split_5050_content_heading',''),(340908,42671,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(340909,42671,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(340910,42671,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(340911,42671,'blocks_4_split_5050_content_actions',''),(340912,42671,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(340913,42671,'blocks_4_split_5050_content',''),(340914,42671,'_blocks_4_split_5050_content','field_61767afceb8ba'),(340915,42671,'blocks_7_acfe_flexible_toggle',''),(340916,42671,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(340917,42671,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(340918,42671,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(340919,42671,'blocks_7_options_theme','#f5f5f5'),(340920,42671,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(340921,42671,'blocks_7_options_state','0'),(340922,42671,'_blocks_7_options_state','field_6239fcb7508c5'),(340923,42671,'blocks_7_options',''),(340924,42671,'_blocks_7_options','field_6177e2991ac44'),(340925,42671,'blocks_7_content_title',''),(340926,42671,'_blocks_7_content_title','field_64d237e8bb1e2'),(340927,42671,'blocks_7_content_heading','Evaluate Course Content'),(340928,42671,'_blocks_7_content_heading','field_64d237e8bb1e3'),(340929,42671,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(340930,42671,'_blocks_7_content_text','field_64d237e8bb1e4'),(340931,42671,'blocks_7_content_actions',''),(340932,42671,'_blocks_7_content_actions','field_64d237e8bb1e5'),(340933,42671,'blocks_7_content_align','left'),(340934,42671,'_blocks_7_content_align','field_64d2443e6b6aa'),(340935,42671,'blocks_7_content',''),(340936,42671,'_blocks_7_content','field_64d237e8bb1e1'),(340937,42671,'blocks_7_accordion_content','custom'),(340938,42671,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(340939,42671,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(340940,42671,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(340941,42671,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(340942,42671,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(340943,42671,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(340944,42671,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(340945,42671,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(340946,42671,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(340947,42671,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(340948,42671,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(340949,42671,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(340950,42671,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(340951,42671,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(340952,42671,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(340953,42671,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(340954,42671,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(340955,42671,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(340956,42671,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(340957,42671,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(340958,42671,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(340959,42671,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(340960,42671,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(340961,42671,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(340962,42671,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(340963,42671,'blocks_7_accordion_items','6'),(340964,42671,'_blocks_7_accordion_items','field_6177e2991ac4c'),(340965,42671,'blocks_7_actions',''),(340966,42671,'_blocks_7_actions','field_61a746a817f7a'),(340967,42671,'blocks_8_acfe_flexible_toggle',''),(340968,42671,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(340969,42671,'blocks_8_acfe_flexible_layout_title','Text Block'),(340970,42671,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(340971,42671,'blocks_8_options_theme','#b61234'),(340972,42671,'_blocks_8_options_theme','field_6176830e2ad17'),(340973,42671,'blocks_8_options',''),(340974,42671,'_blocks_8_options','field_6176830e2ad16'),(340975,42671,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(340976,42671,'_blocks_8_text_block_heading','field_617669d413097'),(340977,42671,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(340978,42671,'_blocks_8_text_block_content','field_617669ec13098'),(340979,42671,'blocks_9_acfe_flexible_toggle',''),(340980,42671,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(340981,42671,'blocks_9_acfe_flexible_layout_title','Icons'),(340982,42671,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(340983,42671,'blocks_9_options_theme','#b61234'),(340984,42671,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(340985,42671,'blocks_9_options_format','row'),(340986,42671,'_blocks_9_options_format','field_64bfde9a90690'),(340987,42671,'blocks_9_options',''),(340988,42671,'_blocks_9_options','field_64bfdd9b90684'),(340989,42671,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(340990,42671,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(340991,42671,'blocks_9_icon_row_items_0_label','Industry Recognition'),(340992,42671,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(340993,42671,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(340994,42671,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(340995,42671,'blocks_9_icon_row_items_1_icon','qualification.svg'),(340996,42671,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(340997,42671,'blocks_9_icon_row_items_1_label','University Accreditation'),(340998,42671,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(340999,42671,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(341000,42671,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(341001,42671,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(341002,42671,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(341003,42671,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(341004,42671,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(341005,42671,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(341006,42671,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(341007,42671,'blocks_9_icon_row_items','3'),(341008,42671,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(341009,42671,'blocks_11_acfe_flexible_toggle',''),(341010,42671,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341011,42671,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(341012,42671,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341013,42671,'blocks_11_options_theme','#ffffff'),(341014,42671,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(341015,42671,'blocks_11_options_reverse','0'),(341016,42671,'_blocks_11_options_reverse','field_61768049bb8ac'),(341017,42671,'blocks_11_options',''),(341018,42671,'_blocks_11_options','field_617682517c334'),(341019,42671,'blocks_11_split_5050_image','41498'),(341020,42671,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(341021,42671,'blocks_11_split_5050_video',''),(341022,42671,'_blocks_11_split_5050_video','field_6239f3160848a'),(341023,42671,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(341024,42671,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(341025,42671,'blocks_11_split_5050_content_heading',''),(341026,42671,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(341027,42671,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(341028,42671,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(341029,42671,'blocks_11_split_5050_content_actions',''),(341030,42671,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(341031,42671,'blocks_11_split_5050_content',''),(341032,42671,'_blocks_11_split_5050_content','field_61767afceb8ba'),(341033,42671,'blocks_12_acfe_flexible_toggle',''),(341034,42671,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341035,42671,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(341036,42671,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341037,42671,'blocks_12_options_theme','#ffffff'),(341038,42671,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(341039,42671,'blocks_12_options_reverse','0'),(341040,42671,'_blocks_12_options_reverse','field_61768049bb8ac'),(341041,42671,'blocks_12_options',''),(341042,42671,'_blocks_12_options','field_617682517c334'),(341043,42671,'blocks_12_split_5050_image','40387'),(341044,42671,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(341045,42671,'blocks_12_split_5050_video',''),(341046,42671,'_blocks_12_split_5050_video','field_6239f3160848a'),(341047,42671,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(341048,42671,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(341049,42671,'blocks_12_split_5050_content_heading',''),(341050,42671,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(341051,42671,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(341052,42671,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(341053,42671,'blocks_12_split_5050_content_actions',''),(341054,42671,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(341055,42671,'blocks_12_split_5050_content',''),(341056,42671,'_blocks_12_split_5050_content','field_61767afceb8ba'),(341057,42671,'blocks_17_acfe_flexible_toggle',''),(341058,42671,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341059,42671,'blocks_17_acfe_flexible_layout_title','Experienced Training Providers'),(341060,42671,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341061,42671,'blocks_17_options_theme','#ffffff'),(341062,42671,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(341063,42671,'blocks_17_options_reverse','1'),(341064,42671,'_blocks_17_options_reverse','field_61768049bb8ac'),(341065,42671,'blocks_17_options',''),(341066,42671,'_blocks_17_options','field_617682517c334'),(341067,42671,'blocks_17_split_5050_image','41498'),(341068,42671,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(341069,42671,'blocks_17_split_5050_video',''),(341070,42671,'_blocks_17_split_5050_video','field_6239f3160848a'),(341071,42671,'blocks_17_split_5050_content_title','Experienced Training Providers'),(341072,42671,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(341073,42671,'blocks_17_split_5050_content_heading',''),(341074,42671,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(341075,42671,'blocks_17_split_5050_content_text','Tutors with extensive experience in biomechanics bring real-world insights to the classroom, bridging the gap between theory and practice. Look for instructors with backgrounds in academia, professional sports, rehabilitation, or biomechanics research, as their expertise can enhance the learning experience.'),(341076,42671,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(341077,42671,'blocks_17_split_5050_content_actions',''),(341078,42671,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(341079,42671,'blocks_17_split_5050_content',''),(341080,42671,'_blocks_17_split_5050_content','field_61767afceb8ba'),(341081,42671,'blocks_15_acfe_flexible_toggle',''),(341082,42671,'_blocks_15_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(341083,42671,'blocks_15_acfe_flexible_layout_title','Timeline'),(341084,42671,'_blocks_15_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(341085,42671,'blocks_15_options_theme','#f5f5f5'),(341086,42671,'_blocks_15_options_theme','field_6177de53d1196_field_6176830e2ad17'),(341087,42671,'blocks_15_options',''),(341088,42671,'_blocks_15_options','field_6177de53d1195'),(341089,42671,'blocks_15_timeline_content_title',''),(341090,42671,'_blocks_15_timeline_content_title','field_6177de53d1198'),(341091,42671,'blocks_15_timeline_content_heading','Evaluate Course Format and Flexibility'),(341092,42671,'_blocks_15_timeline_content_heading','field_6177de53d1199'),(341093,42671,'blocks_15_timeline_content_text','Biomechanics courses can vary in structure, offering different formats to accommodate students with varying schedules, learning preferences, and career commitments. Whether you’re looking for a full-time degree, a part-time professional development course, or an online programme that fits around your work, understanding the course format is essential in making the right choice. A well-structured course should provide a balance of flexibility and practical engagement, ensuring you gain the knowledge and hands-on experience needed for your career.\r\n\r\nWhen considering a biomechanics course, think about how the course format aligns with your lifestyle and career ambitions. Below are some key factors to evaluate when selecting the right learning structure.'),(341094,42671,'_blocks_15_timeline_content_text','field_6177de53d119a'),(341095,42671,'blocks_15_timeline_content_actions',''),(341096,42671,'_blocks_15_timeline_content_actions','field_6177de53d119b'),(341097,42671,'blocks_15_timeline_content',''),(341098,42671,'_blocks_15_timeline_content','field_6177de53d1197'),(341099,42671,'blocks_15_timeline_items_0_title','Full-Time vs. Part-Time Study'),(341100,42671,'_blocks_15_timeline_items_0_title','field_6177de53d119f'),(341101,42671,'blocks_15_timeline_items_0_text','Full-time biomechanics courses offer an immersive learning experience, allowing students to complete their qualifications more quickly. However, part-time courses can be beneficial for those who are already working in the field and want to upskill while maintaining their job. Choosing between these options depends on your availability, learning pace, and career progression plans.'),(341102,42671,'_blocks_15_timeline_items_0_text','field_6177de53d11a0'),(341103,42671,'blocks_15_timeline_items_1_title','Online, In-Person, and Hybrid Learning'),(341104,42671,'_blocks_15_timeline_items_1_title','field_6177de53d119f'),(341105,42671,'blocks_15_timeline_items_1_text','While some biomechanics courses are delivered entirely in-person, others incorporate online modules to provide greater flexibility. Online learning can be useful for covering theoretical concepts, but biomechanics is a highly practical subject, meaning hybrid programmes that include both online theory and in-person practical sessions can be the most effective for building applied skills.'),(341106,42671,'_blocks_15_timeline_items_1_text','field_6177de53d11a0'),(341107,42671,'blocks_15_timeline_items_2_title','Degree Level and Course Duration'),(341108,42671,'_blocks_15_timeline_items_2_title','field_6177de53d119f'),(341109,42671,'blocks_15_timeline_items_2_text','Depending on your career goals, you may need to choose between a short biomechanics certification, a diploma, or a full degree (BSc, MSc, or PhD). Short courses and diplomas are useful for professionals looking to specialise or upskill, while degree-level courses provide a more in-depth understanding of biomechanics, research methods, and applied movement science.'),(341110,42671,'_blocks_15_timeline_items_2_text','field_6177de53d11a0'),(341111,42671,'blocks_15_timeline_items','3'),(341112,42671,'_blocks_15_timeline_items','field_6177de53d119d'),(341113,42671,'blocks_16_acfe_flexible_toggle',''),(341114,42671,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(341115,42671,'blocks_16_acfe_flexible_layout_title','Tutor Expertise[anchor] '),(341116,42671,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(341117,42671,'blocks_16_options_theme','#ffffff'),(341118,42671,'_blocks_16_options_theme','field_6176830e2ad17'),(341119,42671,'blocks_16_options',''),(341120,42671,'_blocks_16_options','field_6176830e2ad16'),(341121,42671,'blocks_16_text_block_heading','Assess Tutor Expertise and Industry Connections'),(341122,42671,'_blocks_16_text_block_heading','field_617669d413097'),(341123,42671,'blocks_16_text_block_content','The quality of a biomechanics course is not just determined by its content but also by the expertise of the tutors delivering it and the industry connections it provides. Learning from experienced professionals with strong backgrounds in biomechanics, sports science, rehabilitation, or engineering ensures that you receive relevant, up-to-date knowledge that aligns with industry standards. Additionally, courses with strong industry links can open doors to valuable networking opportunities, mentorship, and potential career placements.\r\n\r\nWhen evaluating a biomechanics course, consider the credibility of the teaching staff and the programme’s industry connections. Below are key factors to assess.'),(341124,42671,'_blocks_16_text_block_content','field_617669ec13098'),(341125,42671,'blocks_18_acfe_flexible_toggle',''),(341126,42671,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341127,42671,'blocks_18_acfe_flexible_layout_title','Industry Collaborations and Professional Networks'),(341128,42671,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341129,42671,'blocks_18_options_theme','#ffffff'),(341130,42671,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(341131,42671,'blocks_18_options_reverse','1'),(341132,42671,'_blocks_18_options_reverse','field_61768049bb8ac'),(341133,42671,'blocks_18_options',''),(341134,42671,'_blocks_18_options','field_617682517c334'),(341135,42671,'blocks_18_split_5050_image','41498'),(341136,42671,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(341137,42671,'blocks_18_split_5050_video',''),(341138,42671,'_blocks_18_split_5050_video','field_6239f3160848a'),(341139,42671,'blocks_18_split_5050_content_title','Industry Collaborations and Professional Networks'),(341140,42671,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(341141,42671,'blocks_18_split_5050_content_heading',''),(341142,42671,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(341143,42671,'blocks_18_split_5050_content_text','Courses that have partnerships with sports teams, healthcare organisations, universities, or biomechanics companies provide students with access to industry professionals and potential career opportunities. These collaborations can also lead to internships, research projects, or direct job placements after completing the course.'),(341144,42671,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(341145,42671,'blocks_18_split_5050_content_actions',''),(341146,42671,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(341147,42671,'blocks_18_split_5050_content',''),(341148,42671,'_blocks_18_split_5050_content','field_61767afceb8ba'),(341149,42671,'blocks_19_acfe_flexible_toggle',''),(341150,42671,'_blocks_19_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341151,42671,'blocks_19_acfe_flexible_layout_title','Graduate Success and Alumni Network'),(341152,42671,'_blocks_19_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341153,42671,'blocks_19_options_theme','#ffffff'),(341154,42671,'_blocks_19_options_theme','field_617682847c335_field_6176830e2ad17'),(341155,42671,'blocks_19_options_reverse','1'),(341156,42671,'_blocks_19_options_reverse','field_61768049bb8ac'),(341157,42671,'blocks_19_options',''),(341158,42671,'_blocks_19_options','field_617682517c334'),(341159,42671,'blocks_19_split_5050_image','41498'),(341160,42671,'_blocks_19_split_5050_image','field_6239f527a0c3a'),(341161,42671,'blocks_19_split_5050_video',''),(341162,42671,'_blocks_19_split_5050_video','field_6239f3160848a'),(341163,42671,'blocks_19_split_5050_content_title','Graduate Success and Alumni Network'),(341164,42671,'_blocks_19_split_5050_content_title','field_61767bfca3fc0'),(341165,42671,'blocks_19_split_5050_content_heading',''),(341166,42671,'_blocks_19_split_5050_content_heading','field_61767b26eb8bb'),(341167,42671,'blocks_19_split_5050_content_text','A strong alumni network and positive graduate success stories indicate the effectiveness of a biomechanics course. Research where previous students have progressed in their careers, as this can provide insight into the opportunities available after completing the programme.'),(341168,42671,'_blocks_19_split_5050_content_text','field_61767b3beb8bc'),(341169,42671,'blocks_19_split_5050_content_actions',''),(341170,42671,'_blocks_19_split_5050_content_actions','field_61767b68eb8bd'),(341171,42671,'blocks_19_split_5050_content',''),(341172,42671,'_blocks_19_split_5050_content','field_61767afceb8ba'),(341173,42671,'blocks_21_acfe_flexible_toggle',''),(341174,42671,'_blocks_21_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(341175,42671,'blocks_21_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(341176,42671,'_blocks_21_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(341177,42671,'blocks_21_options_theme','#b61234'),(341178,42671,'_blocks_21_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(341179,42671,'blocks_21_options_format','row'),(341180,42671,'_blocks_21_options_format','field_64bfde9a90690'),(341181,42671,'blocks_21_options',''),(341182,42671,'_blocks_21_options','field_64bfdd9b90684'),(341183,42671,'blocks_21_icon_row_items_0_icon','payment-plans.svg'),(341184,42671,'_blocks_21_icon_row_items_0_icon','field_64bfdd9b9068d'),(341185,42671,'blocks_21_icon_row_items_0_label','Course Costs'),(341186,42671,'_blocks_21_icon_row_items_0_label','field_64bfdd9c9068e'),(341187,42671,'blocks_21_icon_row_items_0_text','Compare costs across providers to find an option that fits your budget.'),(341188,42671,'_blocks_21_icon_row_items_0_text','field_64bfdd9c9068f'),(341189,42671,'blocks_21_icon_row_items_1_icon','start-earning-in.svg'),(341190,42671,'_blocks_21_icon_row_items_1_icon','field_64bfdd9b9068d'),(341191,42671,'blocks_21_icon_row_items_1_label','Grants'),(341192,42671,'_blocks_21_icon_row_items_1_label','field_64bfdd9c9068e'),(341193,42671,'blocks_21_icon_row_items_1_text','Some universities may offer financial aid for biomechanics students, especially in research-intensive programmes.'),(341194,42671,'_blocks_21_icon_row_items_1_text','field_64bfdd9c9068f'),(341195,42671,'blocks_21_icon_row_items_2_icon','return-on-investment-1.svg'),(341196,42671,'_blocks_21_icon_row_items_2_icon','field_64bfdd9b9068d'),(341197,42671,'blocks_21_icon_row_items_2_label','Return on Investment'),(341198,42671,'_blocks_21_icon_row_items_2_label','field_64bfdd9c9068e'),(341199,42671,'blocks_21_icon_row_items_2_text','Consider the earning potential in your chosen biomechanics career and whether the programme justifies the cost.'),(341200,42671,'_blocks_21_icon_row_items_2_text','field_64bfdd9c9068f'),(341201,42671,'blocks_21_icon_row_items','3'),(341202,42671,'_blocks_21_icon_row_items','field_64bfdd9b9068c'),(341203,42671,'blocks_22_acfe_flexible_toggle',''),(341204,42671,'_blocks_22_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341205,42671,'blocks_22_acfe_flexible_layout_title','Final Thoughts'),(341206,42671,'_blocks_22_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341207,42671,'blocks_22_options_theme','#ffffff'),(341208,42671,'_blocks_22_options_theme','field_617682847c335_field_6176830e2ad17'),(341209,42671,'blocks_22_options_reverse','0'),(341210,42671,'_blocks_22_options_reverse','field_61768049bb8ac'),(341211,42671,'blocks_22_options',''),(341212,42671,'_blocks_22_options','field_617682517c334'),(341213,42671,'blocks_22_split_5050_image','41501'),(341214,42671,'_blocks_22_split_5050_image','field_6239f527a0c3a'),(341215,42671,'blocks_22_split_5050_video',''),(341216,42671,'_blocks_22_split_5050_video','field_6239f3160848a'),(341217,42671,'blocks_22_split_5050_content_title',''),(341218,42671,'_blocks_22_split_5050_content_title','field_61767bfca3fc0'),(341219,42671,'blocks_22_split_5050_content_heading','Final Thoughts'),(341220,42671,'_blocks_22_split_5050_content_heading','field_61767b26eb8bb'),(341221,42671,'blocks_22_split_5050_content_text','Choosing the right biomechanics course is a key step in shaping your career and expanding your expertise in human movement. With so many options available, it’s important to take the time to evaluate courses based on your career goals, the content they offer, accreditation, practical learning opportunities, and industry connections. A well-structured course should provide both theoretical knowledge and hands-on experience, ensuring that you develop the skills needed to apply biomechanics effectively in your chosen field.\r\n\r\nBy considering factors such as course format, tutor expertise, financial investment, and long-term career prospects, you can make an informed decision that aligns with your aspirations. Take the time to research programmes, speak with faculty or alumni, and explore available learning pathways to find the biomechanics course that best supports your professional development.\r\n\r\n&nbsp;'),(341222,42671,'_blocks_22_split_5050_content_text','field_61767b3beb8bc'),(341223,42671,'blocks_22_split_5050_content_actions',''),(341224,42671,'_blocks_22_split_5050_content_actions','field_61767b68eb8bd'),(341225,42671,'blocks_22_split_5050_content',''),(341226,42671,'_blocks_22_split_5050_content','field_61767afceb8ba'),(341227,42671,'blocks_23_acfe_flexible_toggle',''),(341228,42671,'_blocks_23_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(341229,42671,'blocks_23_acfe_flexible_layout_title','Conclusion'),(341230,42671,'_blocks_23_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(341231,42671,'blocks_23_options_theme','#b61234'),(341232,42671,'_blocks_23_options_theme','field_6176830e2ad17'),(341233,42671,'blocks_23_options',''),(341234,42671,'_blocks_23_options','field_6176830e2ad16'),(341235,42671,'blocks_23_text_block_heading','Conclusion'),(341236,42671,'_blocks_23_text_block_heading','field_617669d413097'),(341237,42671,'blocks_23_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(341238,42671,'_blocks_23_text_block_content','field_617669ec13098'),(341239,42671,'blocks_24_acfe_flexible_toggle',''),(341240,42671,'_blocks_24_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(341241,42671,'blocks_24_acfe_flexible_layout_title','Promo Panel'),(341242,42671,'_blocks_24_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(341243,42671,'blocks_24_options_alignment','center'),(341244,42671,'_blocks_24_options_alignment','field_61769449f5490'),(341245,42671,'blocks_24_options',''),(341246,42671,'_blocks_24_options','field_617693e1428f0'),(341247,42671,'blocks_24_promo_panel_image','41307'),(341248,42671,'_blocks_24_promo_panel_image','field_617693e1428f3'),(341249,42671,'blocks_24_promo_panel_content_heading','Want to Get Started?'),(341250,42671,'_blocks_24_promo_panel_content_heading','field_617693e1428f6'),(341251,42671,'blocks_24_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(341252,42671,'_blocks_24_promo_panel_content_text','field_617693e1428f7'),(341253,42671,'blocks_24_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(341254,42671,'_blocks_24_promo_panel_content_actions_0_button','field_617693e1428f9'),(341255,42671,'blocks_24_promo_panel_content_actions','1'),(341256,42671,'_blocks_24_promo_panel_content_actions','field_617693e1428f8'),(341257,42671,'blocks_24_promo_panel_content',''),(341258,42671,'_blocks_24_promo_panel_content','field_617693e1428f4'),(341259,42635,'blocks_23_acfe_flexible_toggle',''),(341260,42635,'_blocks_23_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(341261,42635,'blocks_23_acfe_flexible_layout_title','Promo Panel'),(341262,42635,'_blocks_23_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(341263,42635,'blocks_23_options_alignment','center'),(341264,42635,'_blocks_23_options_alignment','field_61769449f5490'),(341265,42635,'blocks_23_options',''),(341266,42635,'_blocks_23_options','field_617693e1428f0'),(341267,42635,'blocks_23_promo_panel_image','41307'),(341268,42635,'_blocks_23_promo_panel_image','field_617693e1428f3'),(341269,42635,'blocks_23_promo_panel_content_heading','Want to Get Started?'),(341270,42635,'_blocks_23_promo_panel_content_heading','field_617693e1428f6'),(341271,42635,'blocks_23_promo_panel_content_text','Would you like help finding a biomechanics course tailored to your career goals? Get in touch to explore your options and take the next step in your biomechanics journey.'),(341272,42635,'_blocks_23_promo_panel_content_text','field_617693e1428f7'),(341273,42635,'blocks_23_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(341274,42635,'_blocks_23_promo_panel_content_actions_0_button','field_617693e1428f9'),(341275,42635,'blocks_23_promo_panel_content_actions','1'),(341276,42635,'_blocks_23_promo_panel_content_actions','field_617693e1428f8'),(341277,42635,'blocks_23_promo_panel_content',''),(341278,42635,'_blocks_23_promo_panel_content','field_617693e1428f4'),(341279,42672,'hide_hero','0'),(341280,42672,'_hide_hero','field_66a2380fcda39'),(341281,42672,'hero_title',''),(341282,42672,'_hero_title','field_617571fe285e8'),(341283,42672,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(341284,42672,'_hero_text','field_6175723c285e9'),(341285,42672,'hero_actions',''),(341286,42672,'_hero_actions','field_61757270285ea'),(341287,42672,'hero_style','default'),(341288,42672,'_hero_style','field_62051d9dc5324'),(341289,42672,'hero_image_pos_x','right'),(341290,42672,'_hero_image_pos_x','field_62ec3d05390bb'),(341291,42672,'hero_image_pos_y','top'),(341292,42672,'_hero_image_pos_y','field_62ec3d05390bc'),(341293,42672,'hero_image_pos',''),(341294,42672,'_hero_image_pos','field_62ec3d05390ba'),(341295,42672,'fft_hide_from_listings','0'),(341296,42672,'_fft_hide_from_listings','field_61f1320446ab2'),(341297,42672,'post_format','402'),(341298,42672,'_post_format','field_61756bfb51898'),(341299,42672,'post_author',''),(341300,42672,'_post_author','field_62ec389d22113'),(341301,42672,'post_reviewer',''),(341302,42672,'_post_reviewer','field_627140a2a9800'),(341303,42672,'post_table_of_contents','0'),(341304,42672,'_post_table_of_contents','field_65c503bc846a6'),(341305,42672,'blocks','a:24:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:13:\"step_timeline\";i:16;s:10:\"text_block\";i:17;s:10:\"split_5050\";i:18;s:10:\"split_5050\";i:19;s:10:\"split_5050\";i:20;s:10:\"text_block\";i:21;s:5:\"icons\";i:22;s:10:\"split_5050\";i:23;s:11:\"promo_panel\";}'),(341306,42672,'_blocks','field_6176696113096'),(341307,42672,'_thumbnail_id','40618'),(341308,42672,'__thumbnail_id','field_617570855ddaf'),(341309,42672,'blocks_0_acfe_flexible_toggle',''),(341310,42672,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(341311,42672,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(341312,42672,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(341313,42672,'blocks_0_options_theme','#ffffff'),(341314,42672,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(341315,42672,'blocks_0_options',''),(341316,42672,'_blocks_0_options','field_6177b758246ae'),(341317,42672,'blocks_0_link_stack_content_title',''),(341318,42672,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(341319,42672,'blocks_0_link_stack_content_heading','Introduction'),(341320,42672,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(341321,42672,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(341322,42672,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(341323,42672,'blocks_0_link_stack_content_actions_0_button',''),(341324,42672,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(341325,42672,'blocks_0_link_stack_content_actions','1'),(341326,42672,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(341327,42672,'blocks_0_link_stack_content',''),(341328,42672,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(341329,42672,'blocks_0_link_stack_0_label','1.'),(341330,42672,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(341331,42672,'blocks_0_link_stack_0_title','Overview'),(341332,42672,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(341333,42672,'blocks_0_link_stack_0_url','#overview'),(341334,42672,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(341335,42672,'blocks_0_link_stack_1_label','2.'),(341336,42672,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(341337,42672,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(341338,42672,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(341339,42672,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(341340,42672,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(341341,42672,'blocks_0_link_stack_2_label','3.'),(341342,42672,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(341343,42672,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(341344,42672,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(341345,42672,'blocks_0_link_stack_2_url','#who-should-study-msk'),(341346,42672,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(341347,42672,'blocks_0_link_stack_3_label','4.'),(341348,42672,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(341349,42672,'blocks_0_link_stack_3_title','Common MSK Conditions'),(341350,42672,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(341351,42672,'blocks_0_link_stack_3_url','#common-msk-conditions'),(341352,42672,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(341353,42672,'blocks_0_link_stack_4_label','5.'),(341354,42672,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(341355,42672,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(341356,42672,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(341357,42672,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(341358,42672,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(341359,42672,'blocks_0_link_stack_5_label','6.'),(341360,42672,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(341361,42672,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(341362,42672,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(341363,42672,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(341364,42672,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(341365,42672,'blocks_0_link_stack','6'),(341366,42672,'_blocks_0_link_stack','field_6177b7f600cff'),(341367,42672,'blocks_1_acfe_flexible_toggle',''),(341368,42672,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341369,42672,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(341370,42672,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341371,42672,'blocks_1_options_theme','#f5f5f5'),(341372,42672,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(341373,42672,'blocks_1_options_reverse','0'),(341374,42672,'_blocks_1_options_reverse','field_61768049bb8ac'),(341375,42672,'blocks_1_options',''),(341376,42672,'_blocks_1_options','field_617682517c334'),(341377,42672,'blocks_1_split_5050_image','40615'),(341378,42672,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(341379,42672,'blocks_1_split_5050_video',''),(341380,42672,'_blocks_1_split_5050_video','field_6239f3160848a'),(341381,42672,'blocks_1_split_5050_content_title',''),(341382,42672,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(341383,42672,'blocks_1_split_5050_content_heading','Overview'),(341384,42672,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(341385,42672,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(341386,42672,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(341387,42672,'blocks_1_split_5050_content_actions',''),(341388,42672,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(341389,42672,'blocks_1_split_5050_content',''),(341390,42672,'_blocks_1_split_5050_content','field_61767afceb8ba'),(341391,42672,'blocks_3_acfe_flexible_toggle',''),(341392,42672,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341393,42672,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(341394,42672,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341395,42672,'blocks_3_options_theme','#ffffff'),(341396,42672,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(341397,42672,'blocks_3_options_reverse','1'),(341398,42672,'_blocks_3_options_reverse','field_61768049bb8ac'),(341399,42672,'blocks_3_options',''),(341400,42672,'_blocks_3_options','field_617682517c334'),(341401,42672,'blocks_3_split_5050_image','41542'),(341402,42672,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(341403,42672,'blocks_3_split_5050_video',''),(341404,42672,'_blocks_3_split_5050_video','field_6239f3160848a'),(341405,42672,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(341406,42672,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(341407,42672,'blocks_3_split_5050_content_heading',''),(341408,42672,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(341409,42672,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(341410,42672,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(341411,42672,'blocks_3_split_5050_content_actions',''),(341412,42672,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(341413,42672,'blocks_3_split_5050_content',''),(341414,42672,'_blocks_3_split_5050_content','field_61767afceb8ba'),(341415,42672,'blocks_13_acfe_flexible_toggle',''),(341416,42672,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341417,42672,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(341418,42672,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341419,42672,'blocks_13_options_theme','#ffffff'),(341420,42672,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(341421,42672,'blocks_13_options_reverse','0'),(341422,42672,'_blocks_13_options_reverse','field_61768049bb8ac'),(341423,42672,'blocks_13_options',''),(341424,42672,'_blocks_13_options','field_617682517c334'),(341425,42672,'blocks_13_split_5050_image','18856'),(341426,42672,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(341427,42672,'blocks_13_split_5050_video',''),(341428,42672,'_blocks_13_split_5050_video','field_6239f3160848a'),(341429,42672,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(341430,42672,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(341431,42672,'blocks_13_split_5050_content_heading',''),(341432,42672,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(341433,42672,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(341434,42672,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(341435,42672,'blocks_13_split_5050_content_actions',''),(341436,42672,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(341437,42672,'blocks_13_split_5050_content',''),(341438,42672,'_blocks_13_split_5050_content','field_61767afceb8ba'),(341439,42672,'blocks_6_acfe_flexible_toggle',''),(341440,42672,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341441,42672,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(341442,42672,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341443,42672,'blocks_6_options_theme','#ffffff'),(341444,42672,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(341445,42672,'blocks_6_options_reverse','1'),(341446,42672,'_blocks_6_options_reverse','field_61768049bb8ac'),(341447,42672,'blocks_6_options',''),(341448,42672,'_blocks_6_options','field_617682517c334'),(341449,42672,'blocks_6_split_5050_image','41502'),(341450,42672,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(341451,42672,'blocks_6_split_5050_video',''),(341452,42672,'_blocks_6_split_5050_video','field_6239f3160848a'),(341453,42672,'blocks_6_split_5050_content_title','Research & Academia'),(341454,42672,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(341455,42672,'blocks_6_split_5050_content_heading',''),(341456,42672,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(341457,42672,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(341458,42672,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(341459,42672,'blocks_6_split_5050_content_actions',''),(341460,42672,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(341461,42672,'blocks_6_split_5050_content',''),(341462,42672,'_blocks_6_split_5050_content','field_61767afceb8ba'),(341463,42672,'blocks_5_acfe_flexible_toggle',''),(341464,42672,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341465,42672,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(341466,42672,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341467,42672,'blocks_5_options_theme','#ffffff'),(341468,42672,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(341469,42672,'blocks_5_options_reverse','1'),(341470,42672,'_blocks_5_options_reverse','field_61768049bb8ac'),(341471,42672,'blocks_5_options',''),(341472,42672,'_blocks_5_options','field_617682517c334'),(341473,42672,'blocks_5_split_5050_image','41539'),(341474,42672,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(341475,42672,'blocks_5_split_5050_video',''),(341476,42672,'_blocks_5_split_5050_video','field_6239f3160848a'),(341477,42672,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(341478,42672,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(341479,42672,'blocks_5_split_5050_content_heading',''),(341480,42672,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(341481,42672,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(341482,42672,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(341483,42672,'blocks_5_split_5050_content_actions',''),(341484,42672,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(341485,42672,'blocks_5_split_5050_content',''),(341486,42672,'_blocks_5_split_5050_content','field_61767afceb8ba'),(341487,42672,'blocks_14_acfe_flexible_toggle',''),(341488,42672,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341489,42672,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (4) '),(341490,42672,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341491,42672,'blocks_14_options_theme','#ffffff'),(341492,42672,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(341493,42672,'blocks_14_options_reverse','0'),(341494,42672,'_blocks_14_options_reverse','field_61768049bb8ac'),(341495,42672,'blocks_14_options',''),(341496,42672,'_blocks_14_options','field_617682517c334'),(341497,42672,'blocks_14_split_5050_image','41490'),(341498,42672,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(341499,42672,'blocks_14_split_5050_video',''),(341500,42672,'_blocks_14_split_5050_video','field_6239f3160848a'),(341501,42672,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(341502,42672,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(341503,42672,'blocks_14_split_5050_content_heading',''),(341504,42672,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(341505,42672,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(341506,42672,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(341507,42672,'blocks_14_split_5050_content_actions',''),(341508,42672,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(341509,42672,'blocks_14_split_5050_content',''),(341510,42672,'_blocks_14_split_5050_content','field_61767afceb8ba'),(341511,42672,'blocks_20_acfe_flexible_toggle',''),(341512,42672,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(341513,42672,'blocks_20_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(341514,42672,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(341515,42672,'blocks_20_options_theme','#b61234'),(341516,42672,'_blocks_20_options_theme','field_6176830e2ad17'),(341517,42672,'blocks_20_options',''),(341518,42672,'_blocks_20_options','field_6176830e2ad16'),(341519,42672,'blocks_20_text_block_heading','Compare Costs and Payment/Finance Options'),(341520,42672,'_blocks_20_text_block_heading','field_617669d413097'),(341521,42672,'blocks_20_text_block_content','Biomechanics courses can vary significantly in cost, depending on factors such as course level, institution, and delivery format. While investing in your education is important, it’s equally essential to choose a course that provides good value for money and aligns with your career goals. Understanding the financial commitment involved and exploring available funding options can help you make an informed decision without unnecessary financial strain.'),(341522,42672,'_blocks_20_text_block_content','field_617669ec13098'),(341523,42672,'blocks_10_acfe_flexible_toggle',''),(341524,42672,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(341525,42672,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(341526,42672,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(341527,42672,'blocks_10_options_theme','#ffffff'),(341528,42672,'_blocks_10_options_theme','field_6176830e2ad17'),(341529,42672,'blocks_10_options',''),(341530,42672,'_blocks_10_options','field_6176830e2ad16'),(341531,42672,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(341532,42672,'_blocks_10_text_block_heading','field_617669d413097'),(341533,42672,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(341534,42672,'_blocks_10_text_block_content','field_617669ec13098'),(341535,42672,'blocks_2_acfe_flexible_toggle',''),(341536,42672,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(341537,42672,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(341538,42672,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(341539,42672,'blocks_2_options_theme','#ffffff'),(341540,42672,'_blocks_2_options_theme','field_6176830e2ad17'),(341541,42672,'blocks_2_options',''),(341542,42672,'_blocks_2_options','field_6176830e2ad16'),(341543,42672,'blocks_2_text_block_heading','Define Your Career Goals'),(341544,42672,'_blocks_2_text_block_heading','field_617669d413097'),(341545,42672,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(341546,42672,'_blocks_2_text_block_content','field_617669ec13098'),(341547,42672,'blocks_4_acfe_flexible_toggle',''),(341548,42672,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341549,42672,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(341550,42672,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341551,42672,'blocks_4_options_theme','#ffffff'),(341552,42672,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(341553,42672,'blocks_4_options_reverse','1'),(341554,42672,'_blocks_4_options_reverse','field_61768049bb8ac'),(341555,42672,'blocks_4_options',''),(341556,42672,'_blocks_4_options','field_617682517c334'),(341557,42672,'blocks_4_split_5050_image','41505'),(341558,42672,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(341559,42672,'blocks_4_split_5050_video',''),(341560,42672,'_blocks_4_split_5050_video','field_6239f3160848a'),(341561,42672,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(341562,42672,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(341563,42672,'blocks_4_split_5050_content_heading',''),(341564,42672,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(341565,42672,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(341566,42672,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(341567,42672,'blocks_4_split_5050_content_actions',''),(341568,42672,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(341569,42672,'blocks_4_split_5050_content',''),(341570,42672,'_blocks_4_split_5050_content','field_61767afceb8ba'),(341571,42672,'blocks_7_acfe_flexible_toggle',''),(341572,42672,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(341573,42672,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(341574,42672,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(341575,42672,'blocks_7_options_theme','#f5f5f5'),(341576,42672,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(341577,42672,'blocks_7_options_state','0'),(341578,42672,'_blocks_7_options_state','field_6239fcb7508c5'),(341579,42672,'blocks_7_options',''),(341580,42672,'_blocks_7_options','field_6177e2991ac44'),(341581,42672,'blocks_7_content_title',''),(341582,42672,'_blocks_7_content_title','field_64d237e8bb1e2'),(341583,42672,'blocks_7_content_heading','Evaluate Course Content'),(341584,42672,'_blocks_7_content_heading','field_64d237e8bb1e3'),(341585,42672,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(341586,42672,'_blocks_7_content_text','field_64d237e8bb1e4'),(341587,42672,'blocks_7_content_actions',''),(341588,42672,'_blocks_7_content_actions','field_64d237e8bb1e5'),(341589,42672,'blocks_7_content_align','left'),(341590,42672,'_blocks_7_content_align','field_64d2443e6b6aa'),(341591,42672,'blocks_7_content',''),(341592,42672,'_blocks_7_content','field_64d237e8bb1e1'),(341593,42672,'blocks_7_accordion_content','custom'),(341594,42672,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(341595,42672,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(341596,42672,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(341597,42672,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(341598,42672,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(341599,42672,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(341600,42672,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(341601,42672,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(341602,42672,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(341603,42672,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(341604,42672,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(341605,42672,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(341606,42672,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(341607,42672,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(341608,42672,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(341609,42672,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(341610,42672,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(341611,42672,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(341612,42672,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(341613,42672,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(341614,42672,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(341615,42672,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(341616,42672,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(341617,42672,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(341618,42672,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(341619,42672,'blocks_7_accordion_items','6'),(341620,42672,'_blocks_7_accordion_items','field_6177e2991ac4c'),(341621,42672,'blocks_7_actions',''),(341622,42672,'_blocks_7_actions','field_61a746a817f7a'),(341623,42672,'blocks_8_acfe_flexible_toggle',''),(341624,42672,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(341625,42672,'blocks_8_acfe_flexible_layout_title','Text Block'),(341626,42672,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(341627,42672,'blocks_8_options_theme','#b61234'),(341628,42672,'_blocks_8_options_theme','field_6176830e2ad17'),(341629,42672,'blocks_8_options',''),(341630,42672,'_blocks_8_options','field_6176830e2ad16'),(341631,42672,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(341632,42672,'_blocks_8_text_block_heading','field_617669d413097'),(341633,42672,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(341634,42672,'_blocks_8_text_block_content','field_617669ec13098'),(341635,42672,'blocks_9_acfe_flexible_toggle',''),(341636,42672,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(341637,42672,'blocks_9_acfe_flexible_layout_title','Icons'),(341638,42672,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(341639,42672,'blocks_9_options_theme','#b61234'),(341640,42672,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(341641,42672,'blocks_9_options_format','row'),(341642,42672,'_blocks_9_options_format','field_64bfde9a90690'),(341643,42672,'blocks_9_options',''),(341644,42672,'_blocks_9_options','field_64bfdd9b90684'),(341645,42672,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(341646,42672,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(341647,42672,'blocks_9_icon_row_items_0_label','Industry Recognition'),(341648,42672,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(341649,42672,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(341650,42672,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(341651,42672,'blocks_9_icon_row_items_1_icon','qualification.svg'),(341652,42672,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(341653,42672,'blocks_9_icon_row_items_1_label','University Accreditation'),(341654,42672,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(341655,42672,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(341656,42672,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(341657,42672,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(341658,42672,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(341659,42672,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(341660,42672,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(341661,42672,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(341662,42672,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(341663,42672,'blocks_9_icon_row_items','3'),(341664,42672,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(341665,42672,'blocks_11_acfe_flexible_toggle',''),(341666,42672,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341667,42672,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(341668,42672,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341669,42672,'blocks_11_options_theme','#ffffff'),(341670,42672,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(341671,42672,'blocks_11_options_reverse','0'),(341672,42672,'_blocks_11_options_reverse','field_61768049bb8ac'),(341673,42672,'blocks_11_options',''),(341674,42672,'_blocks_11_options','field_617682517c334'),(341675,42672,'blocks_11_split_5050_image','41498'),(341676,42672,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(341677,42672,'blocks_11_split_5050_video',''),(341678,42672,'_blocks_11_split_5050_video','field_6239f3160848a'),(341679,42672,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(341680,42672,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(341681,42672,'blocks_11_split_5050_content_heading',''),(341682,42672,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(341683,42672,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(341684,42672,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(341685,42672,'blocks_11_split_5050_content_actions',''),(341686,42672,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(341687,42672,'blocks_11_split_5050_content',''),(341688,42672,'_blocks_11_split_5050_content','field_61767afceb8ba'),(341689,42672,'blocks_12_acfe_flexible_toggle',''),(341690,42672,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341691,42672,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(341692,42672,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341693,42672,'blocks_12_options_theme','#ffffff'),(341694,42672,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(341695,42672,'blocks_12_options_reverse','0'),(341696,42672,'_blocks_12_options_reverse','field_61768049bb8ac'),(341697,42672,'blocks_12_options',''),(341698,42672,'_blocks_12_options','field_617682517c334'),(341699,42672,'blocks_12_split_5050_image','40387'),(341700,42672,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(341701,42672,'blocks_12_split_5050_video',''),(341702,42672,'_blocks_12_split_5050_video','field_6239f3160848a'),(341703,42672,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(341704,42672,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(341705,42672,'blocks_12_split_5050_content_heading',''),(341706,42672,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(341707,42672,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(341708,42672,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(341709,42672,'blocks_12_split_5050_content_actions',''),(341710,42672,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(341711,42672,'blocks_12_split_5050_content',''),(341712,42672,'_blocks_12_split_5050_content','field_61767afceb8ba'),(341713,42672,'blocks_17_acfe_flexible_toggle',''),(341714,42672,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341715,42672,'blocks_17_acfe_flexible_layout_title','Experienced Training Providers'),(341716,42672,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341717,42672,'blocks_17_options_theme','#ffffff'),(341718,42672,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(341719,42672,'blocks_17_options_reverse','1'),(341720,42672,'_blocks_17_options_reverse','field_61768049bb8ac'),(341721,42672,'blocks_17_options',''),(341722,42672,'_blocks_17_options','field_617682517c334'),(341723,42672,'blocks_17_split_5050_image','41498'),(341724,42672,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(341725,42672,'blocks_17_split_5050_video',''),(341726,42672,'_blocks_17_split_5050_video','field_6239f3160848a'),(341727,42672,'blocks_17_split_5050_content_title','Experienced Training Providers'),(341728,42672,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(341729,42672,'blocks_17_split_5050_content_heading',''),(341730,42672,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(341731,42672,'blocks_17_split_5050_content_text','Tutors with extensive experience in biomechanics bring real-world insights to the classroom, bridging the gap between theory and practice. Look for instructors with backgrounds in academia, professional sports, rehabilitation, or biomechanics research, as their expertise can enhance the learning experience.'),(341732,42672,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(341733,42672,'blocks_17_split_5050_content_actions',''),(341734,42672,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(341735,42672,'blocks_17_split_5050_content',''),(341736,42672,'_blocks_17_split_5050_content','field_61767afceb8ba'),(341737,42672,'blocks_15_acfe_flexible_toggle',''),(341738,42672,'_blocks_15_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(341739,42672,'blocks_15_acfe_flexible_layout_title','Timeline'),(341740,42672,'_blocks_15_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(341741,42672,'blocks_15_options_theme','#f5f5f5'),(341742,42672,'_blocks_15_options_theme','field_6177de53d1196_field_6176830e2ad17'),(341743,42672,'blocks_15_options',''),(341744,42672,'_blocks_15_options','field_6177de53d1195'),(341745,42672,'blocks_15_timeline_content_title',''),(341746,42672,'_blocks_15_timeline_content_title','field_6177de53d1198'),(341747,42672,'blocks_15_timeline_content_heading','Evaluate Course Format and Flexibility'),(341748,42672,'_blocks_15_timeline_content_heading','field_6177de53d1199'),(341749,42672,'blocks_15_timeline_content_text','Biomechanics courses can vary in structure, offering different formats to accommodate students with varying schedules, learning preferences, and career commitments. Whether you’re looking for a full-time degree, a part-time professional development course, or an online programme that fits around your work, understanding the course format is essential in making the right choice. A well-structured course should provide a balance of flexibility and practical engagement, ensuring you gain the knowledge and hands-on experience needed for your career.\r\n\r\nWhen considering a biomechanics course, think about how the course format aligns with your lifestyle and career ambitions. Below are some key factors to evaluate when selecting the right learning structure.'),(341750,42672,'_blocks_15_timeline_content_text','field_6177de53d119a'),(341751,42672,'blocks_15_timeline_content_actions',''),(341752,42672,'_blocks_15_timeline_content_actions','field_6177de53d119b'),(341753,42672,'blocks_15_timeline_content',''),(341754,42672,'_blocks_15_timeline_content','field_6177de53d1197'),(341755,42672,'blocks_15_timeline_items_0_title','Full-Time vs. Part-Time Study'),(341756,42672,'_blocks_15_timeline_items_0_title','field_6177de53d119f'),(341757,42672,'blocks_15_timeline_items_0_text','Full-time biomechanics courses offer an immersive learning experience, allowing students to complete their qualifications more quickly. However, part-time courses can be beneficial for those who are already working in the field and want to upskill while maintaining their job. Choosing between these options depends on your availability, learning pace, and career progression plans.'),(341758,42672,'_blocks_15_timeline_items_0_text','field_6177de53d11a0'),(341759,42672,'blocks_15_timeline_items_1_title','Online, In-Person, and Hybrid Learning'),(341760,42672,'_blocks_15_timeline_items_1_title','field_6177de53d119f'),(341761,42672,'blocks_15_timeline_items_1_text','While some biomechanics courses are delivered entirely in-person, others incorporate online modules to provide greater flexibility. Online learning can be useful for covering theoretical concepts, but biomechanics is a highly practical subject, meaning hybrid programmes that include both online theory and in-person practical sessions can be the most effective for building applied skills.'),(341762,42672,'_blocks_15_timeline_items_1_text','field_6177de53d11a0'),(341763,42672,'blocks_15_timeline_items_2_title','Degree Level and Course Duration'),(341764,42672,'_blocks_15_timeline_items_2_title','field_6177de53d119f'),(341765,42672,'blocks_15_timeline_items_2_text','Depending on your career goals, you may need to choose between a short biomechanics certification, a diploma, or a full degree (BSc, MSc, or PhD). Short courses and diplomas are useful for professionals looking to specialise or upskill, while degree-level courses provide a more in-depth understanding of biomechanics, research methods, and applied movement science.'),(341766,42672,'_blocks_15_timeline_items_2_text','field_6177de53d11a0'),(341767,42672,'blocks_15_timeline_items','3'),(341768,42672,'_blocks_15_timeline_items','field_6177de53d119d'),(341769,42672,'blocks_16_acfe_flexible_toggle',''),(341770,42672,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(341771,42672,'blocks_16_acfe_flexible_layout_title','Tutor Expertise[anchor] '),(341772,42672,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(341773,42672,'blocks_16_options_theme','#ffffff'),(341774,42672,'_blocks_16_options_theme','field_6176830e2ad17'),(341775,42672,'blocks_16_options',''),(341776,42672,'_blocks_16_options','field_6176830e2ad16'),(341777,42672,'blocks_16_text_block_heading','Assess Tutor Expertise and Industry Connections'),(341778,42672,'_blocks_16_text_block_heading','field_617669d413097'),(341779,42672,'blocks_16_text_block_content','The quality of a biomechanics course is not just determined by its content but also by the expertise of the tutors delivering it and the industry connections it provides. Learning from experienced professionals with strong backgrounds in biomechanics, sports science, rehabilitation, or engineering ensures that you receive relevant, up-to-date knowledge that aligns with industry standards. Additionally, courses with strong industry links can open doors to valuable networking opportunities, mentorship, and potential career placements.\r\n\r\nWhen evaluating a biomechanics course, consider the credibility of the teaching staff and the programme’s industry connections. Below are key factors to assess.'),(341780,42672,'_blocks_16_text_block_content','field_617669ec13098'),(341781,42672,'blocks_18_acfe_flexible_toggle',''),(341782,42672,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341783,42672,'blocks_18_acfe_flexible_layout_title','Industry Collaborations and Professional Networks'),(341784,42672,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341785,42672,'blocks_18_options_theme','#ffffff'),(341786,42672,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(341787,42672,'blocks_18_options_reverse','1'),(341788,42672,'_blocks_18_options_reverse','field_61768049bb8ac'),(341789,42672,'blocks_18_options',''),(341790,42672,'_blocks_18_options','field_617682517c334'),(341791,42672,'blocks_18_split_5050_image','41498'),(341792,42672,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(341793,42672,'blocks_18_split_5050_video',''),(341794,42672,'_blocks_18_split_5050_video','field_6239f3160848a'),(341795,42672,'blocks_18_split_5050_content_title','Industry Collaborations and Professional Networks'),(341796,42672,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(341797,42672,'blocks_18_split_5050_content_heading',''),(341798,42672,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(341799,42672,'blocks_18_split_5050_content_text','Courses that have partnerships with sports teams, healthcare organisations, universities, or biomechanics companies provide students with access to industry professionals and potential career opportunities. These collaborations can also lead to internships, research projects, or direct job placements after completing the course.'),(341800,42672,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(341801,42672,'blocks_18_split_5050_content_actions',''),(341802,42672,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(341803,42672,'blocks_18_split_5050_content',''),(341804,42672,'_blocks_18_split_5050_content','field_61767afceb8ba'),(341805,42672,'blocks_19_acfe_flexible_toggle',''),(341806,42672,'_blocks_19_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341807,42672,'blocks_19_acfe_flexible_layout_title','Graduate Success and Alumni Network'),(341808,42672,'_blocks_19_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341809,42672,'blocks_19_options_theme','#ffffff'),(341810,42672,'_blocks_19_options_theme','field_617682847c335_field_6176830e2ad17'),(341811,42672,'blocks_19_options_reverse','1'),(341812,42672,'_blocks_19_options_reverse','field_61768049bb8ac'),(341813,42672,'blocks_19_options',''),(341814,42672,'_blocks_19_options','field_617682517c334'),(341815,42672,'blocks_19_split_5050_image','41498'),(341816,42672,'_blocks_19_split_5050_image','field_6239f527a0c3a'),(341817,42672,'blocks_19_split_5050_video',''),(341818,42672,'_blocks_19_split_5050_video','field_6239f3160848a'),(341819,42672,'blocks_19_split_5050_content_title','Graduate Success and Alumni Network'),(341820,42672,'_blocks_19_split_5050_content_title','field_61767bfca3fc0'),(341821,42672,'blocks_19_split_5050_content_heading',''),(341822,42672,'_blocks_19_split_5050_content_heading','field_61767b26eb8bb'),(341823,42672,'blocks_19_split_5050_content_text','A strong alumni network and positive graduate success stories indicate the effectiveness of a biomechanics course. Research where previous students have progressed in their careers, as this can provide insight into the opportunities available after completing the programme.'),(341824,42672,'_blocks_19_split_5050_content_text','field_61767b3beb8bc'),(341825,42672,'blocks_19_split_5050_content_actions',''),(341826,42672,'_blocks_19_split_5050_content_actions','field_61767b68eb8bd'),(341827,42672,'blocks_19_split_5050_content',''),(341828,42672,'_blocks_19_split_5050_content','field_61767afceb8ba'),(341829,42672,'blocks_21_acfe_flexible_toggle',''),(341830,42672,'_blocks_21_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(341831,42672,'blocks_21_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(341832,42672,'_blocks_21_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(341833,42672,'blocks_21_options_theme','#b61234'),(341834,42672,'_blocks_21_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(341835,42672,'blocks_21_options_format','row'),(341836,42672,'_blocks_21_options_format','field_64bfde9a90690'),(341837,42672,'blocks_21_options',''),(341838,42672,'_blocks_21_options','field_64bfdd9b90684'),(341839,42672,'blocks_21_icon_row_items_0_icon','payment-plans.svg'),(341840,42672,'_blocks_21_icon_row_items_0_icon','field_64bfdd9b9068d'),(341841,42672,'blocks_21_icon_row_items_0_label','Course Costs'),(341842,42672,'_blocks_21_icon_row_items_0_label','field_64bfdd9c9068e'),(341843,42672,'blocks_21_icon_row_items_0_text','Compare costs across providers to find an option that fits your budget.'),(341844,42672,'_blocks_21_icon_row_items_0_text','field_64bfdd9c9068f'),(341845,42672,'blocks_21_icon_row_items_1_icon','start-earning-in.svg'),(341846,42672,'_blocks_21_icon_row_items_1_icon','field_64bfdd9b9068d'),(341847,42672,'blocks_21_icon_row_items_1_label','Grants'),(341848,42672,'_blocks_21_icon_row_items_1_label','field_64bfdd9c9068e'),(341849,42672,'blocks_21_icon_row_items_1_text','Some universities may offer financial aid for biomechanics students, especially in research-intensive programmes.'),(341850,42672,'_blocks_21_icon_row_items_1_text','field_64bfdd9c9068f'),(341851,42672,'blocks_21_icon_row_items_2_icon','return-on-investment-1.svg'),(341852,42672,'_blocks_21_icon_row_items_2_icon','field_64bfdd9b9068d'),(341853,42672,'blocks_21_icon_row_items_2_label','Return on Investment'),(341854,42672,'_blocks_21_icon_row_items_2_label','field_64bfdd9c9068e'),(341855,42672,'blocks_21_icon_row_items_2_text','Consider the earning potential in your chosen biomechanics career and whether the programme justifies the cost.'),(341856,42672,'_blocks_21_icon_row_items_2_text','field_64bfdd9c9068f'),(341857,42672,'blocks_21_icon_row_items','3'),(341858,42672,'_blocks_21_icon_row_items','field_64bfdd9b9068c'),(341859,42672,'blocks_22_acfe_flexible_toggle',''),(341860,42672,'_blocks_22_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341861,42672,'blocks_22_acfe_flexible_layout_title','Final Thoughts'),(341862,42672,'_blocks_22_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341863,42672,'blocks_22_options_theme','#ffffff'),(341864,42672,'_blocks_22_options_theme','field_617682847c335_field_6176830e2ad17'),(341865,42672,'blocks_22_options_reverse','1'),(341866,42672,'_blocks_22_options_reverse','field_61768049bb8ac'),(341867,42672,'blocks_22_options',''),(341868,42672,'_blocks_22_options','field_617682517c334'),(341869,42672,'blocks_22_split_5050_image','41501'),(341870,42672,'_blocks_22_split_5050_image','field_6239f527a0c3a'),(341871,42672,'blocks_22_split_5050_video',''),(341872,42672,'_blocks_22_split_5050_video','field_6239f3160848a'),(341873,42672,'blocks_22_split_5050_content_title',''),(341874,42672,'_blocks_22_split_5050_content_title','field_61767bfca3fc0'),(341875,42672,'blocks_22_split_5050_content_heading','Final Thoughts'),(341876,42672,'_blocks_22_split_5050_content_heading','field_61767b26eb8bb'),(341877,42672,'blocks_22_split_5050_content_text','Choosing the right biomechanics course is a key step in shaping your career and expanding your expertise in human movement. With so many options available, it’s important to take the time to evaluate courses based on your career goals, the content they offer, accreditation, practical learning opportunities, and industry connections. A well-structured course should provide both theoretical knowledge and hands-on experience, ensuring that you develop the skills needed to apply biomechanics effectively in your chosen field.\r\n\r\nBy considering factors such as course format, tutor expertise, financial investment, and long-term career prospects, you can make an informed decision that aligns with your aspirations. Take the time to research programmes, speak with faculty or alumni, and explore available learning pathways to find the biomechanics course that best supports your professional development.\r\n\r\nWould you like help finding a biomechanics course tailored to your career goals? Get in touch to explore your options and take the next step in your biomechanics journey.'),(341878,42672,'_blocks_22_split_5050_content_text','field_61767b3beb8bc'),(341879,42672,'blocks_22_split_5050_content_actions',''),(341880,42672,'_blocks_22_split_5050_content_actions','field_61767b68eb8bd'),(341881,42672,'blocks_22_split_5050_content',''),(341882,42672,'_blocks_22_split_5050_content','field_61767afceb8ba'),(341883,42672,'blocks_23_acfe_flexible_toggle',''),(341884,42672,'_blocks_23_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(341885,42672,'blocks_23_acfe_flexible_layout_title','Promo Panel'),(341886,42672,'_blocks_23_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(341887,42672,'blocks_23_options_alignment','center'),(341888,42672,'_blocks_23_options_alignment','field_61769449f5490'),(341889,42672,'blocks_23_options',''),(341890,42672,'_blocks_23_options','field_617693e1428f0'),(341891,42672,'blocks_23_promo_panel_image','41307'),(341892,42672,'_blocks_23_promo_panel_image','field_617693e1428f3'),(341893,42672,'blocks_23_promo_panel_content_heading','Want to Get Started?'),(341894,42672,'_blocks_23_promo_panel_content_heading','field_617693e1428f6'),(341895,42672,'blocks_23_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(341896,42672,'_blocks_23_promo_panel_content_text','field_617693e1428f7'),(341897,42672,'blocks_23_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(341898,42672,'_blocks_23_promo_panel_content_actions_0_button','field_617693e1428f9'),(341899,42672,'blocks_23_promo_panel_content_actions','1'),(341900,42672,'_blocks_23_promo_panel_content_actions','field_617693e1428f8'),(341901,42672,'blocks_23_promo_panel_content',''),(341902,42672,'_blocks_23_promo_panel_content','field_617693e1428f4'),(341903,42673,'hide_hero','0'),(341904,42673,'_hide_hero','field_66a2380fcda39'),(341905,42673,'fft_hide_from_listings','1'),(341906,42673,'_fft_hide_from_listings','field_61f1320446ab2'),(341907,42673,'fft_page_format','default'),(341908,42673,'_fft_page_format','field_61ae213f1f218'),(341909,42673,'fft_hide_nav','1'),(341910,42673,'_fft_hide_nav','field_635bd5e43527c'),(341911,42673,'fft_hide_header_call_to_action','0'),(341912,42673,'_fft_hide_header_call_to_action','field_635bd6723527d'),(341913,42673,'fft_page_sitemap','1'),(341914,42673,'_fft_page_sitemap','field_61af9b34e8181'),(341915,42673,'blocks','a:9:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:10:\"split_5050\";i:7;s:4:\"form\";i:8;s:10:\"accordions\";}'),(341916,42673,'_blocks','field_6176696113096'),(341917,42673,'hero_title',''),(341918,42673,'_hero_title','field_617571fe285e8'),(341919,42673,'hero_text',''),(341920,42673,'_hero_text','field_6175723c285e9'),(341921,42673,'hero_actions',''),(341922,42673,'_hero_actions','field_61757270285ea'),(341923,42673,'hero_style','default'),(341924,42673,'_hero_style','field_62051d9dc5324'),(341925,42673,'hero_image_pos_x','right'),(341926,42673,'_hero_image_pos_x','field_62ec3d05390bb'),(341927,42673,'hero_image_pos_y','top'),(341928,42673,'_hero_image_pos_y','field_62ec3d05390bc'),(341929,42673,'hero_image_pos',''),(341930,42673,'_hero_image_pos','field_62ec3d05390ba'),(341931,42673,'blocks_0_acfe_flexible_toggle',''),(341932,42673,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341933,42673,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(341934,42673,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341935,42673,'blocks_0_options_theme','#ffffff'),(341936,42673,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(341937,42673,'blocks_0_options_reverse','0'),(341938,42673,'_blocks_0_options_reverse','field_61768049bb8ac'),(341939,42673,'blocks_0_options',''),(341940,42673,'_blocks_0_options','field_617682517c334'),(341941,42673,'blocks_0_split_5050_image','40848'),(341942,42673,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(341943,42673,'blocks_0_split_5050_video',''),(341944,42673,'_blocks_0_split_5050_video','field_6239f3160848a'),(341945,42673,'blocks_0_split_5050_content_title',''),(341946,42673,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(341947,42673,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(341948,42673,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(341949,42673,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re a fitness professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(341950,42673,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(341951,42673,'blocks_0_split_5050_content_actions','1'),(341952,42673,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(341953,42673,'blocks_0_split_5050_content',''),(341954,42673,'_blocks_0_split_5050_content','field_61767afceb8ba'),(341955,42673,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(341956,42673,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(341957,42673,'blocks_1_acfe_flexible_toggle',''),(341958,42673,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(341959,42673,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(341960,42673,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(341961,42673,'blocks_1_options_theme','#ffffff'),(341962,42673,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(341963,42673,'blocks_1_options_reverse','1'),(341964,42673,'_blocks_1_options_reverse','field_61768049bb8ac'),(341965,42673,'blocks_1_options',''),(341966,42673,'_blocks_1_options','field_617682517c334'),(341967,42673,'blocks_1_split_5050_image','41312'),(341968,42673,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(341969,42673,'blocks_1_split_5050_video',''),(341970,42673,'_blocks_1_split_5050_video','field_6239f3160848a'),(341971,42673,'blocks_1_split_5050_content_title',''),(341972,42673,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(341973,42673,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(341974,42673,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(341975,42673,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively-</li>\r\n 	<li>Gain a globally recognised certification to boost career opportunities</li>\r\n 	<li>Learn from leading biomechanics experts with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(341976,42673,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(341977,42673,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(341978,42673,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(341979,42673,'blocks_1_split_5050_content_actions','1'),(341980,42673,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(341981,42673,'blocks_1_split_5050_content',''),(341982,42673,'_blocks_1_split_5050_content','field_61767afceb8ba'),(341983,42673,'blocks_2_acfe_flexible_toggle',''),(341984,42673,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(341985,42673,'blocks_2_acfe_flexible_layout_title','Text Block'),(341986,42673,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(341987,42673,'blocks_2_options_theme','#ffffff'),(341988,42673,'_blocks_2_options_theme','field_6176830e2ad17'),(341989,42673,'blocks_2_options',''),(341990,42673,'_blocks_2_options','field_6176830e2ad16'),(341991,42673,'blocks_2_text_block_heading','Our Popular Courses:'),(341992,42673,'_blocks_2_text_block_heading','field_617669d413097'),(341993,42673,'blocks_2_text_block_content',''),(341994,42673,'_blocks_2_text_block_content','field_617669ec13098'),(341995,42673,'blocks_3_acfe_flexible_toggle',''),(341996,42673,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(341997,42673,'blocks_3_acfe_flexible_layout_title','Cards'),(341998,42673,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(341999,42673,'blocks_3_options_theme','#ffffff'),(342000,42673,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(342001,42673,'blocks_3_options_format','carousel'),(342002,42673,'_blocks_3_options_format','field_617a7b15245b5'),(342003,42673,'blocks_3_options_style','default'),(342004,42673,'_blocks_3_options_style','field_6278ffb63484a'),(342005,42673,'blocks_3_options_cards_current_listing','0'),(342006,42673,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(342007,42673,'blocks_3_options_cards_content','selection'),(342008,42673,'_blocks_3_options_cards_content','field_617aba6122688'),(342009,42673,'blocks_3_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(342010,42673,'_blocks_3_options_cards_select_posts','field_6193f85fbaea1'),(342011,42673,'blocks_3_options',''),(342012,42673,'_blocks_3_options','field_617a7b15245b3'),(342013,42673,'blocks_4_acfe_flexible_toggle',''),(342014,42673,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(342015,42673,'blocks_4_acfe_flexible_layout_title','Quote'),(342016,42673,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(342017,42673,'blocks_4_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(342018,42673,'_blocks_4_quote_content','field_6177cdacdd67a'),(342019,42673,'blocks_4_quote_author','Alex Carter, Certified Biomechanics Coach'),(342020,42673,'_blocks_4_quote_author','field_6177cdc6dd67b'),(342021,42673,'blocks_5_acfe_flexible_toggle',''),(342022,42673,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(342023,42673,'blocks_5_acfe_flexible_layout_title','Timeline'),(342024,42673,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(342025,42673,'blocks_5_options_theme','#ffffff'),(342026,42673,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(342027,42673,'blocks_5_options',''),(342028,42673,'_blocks_5_options','field_6177de53d1195'),(342029,42673,'blocks_5_timeline_content_title',''),(342030,42673,'_blocks_5_timeline_content_title','field_6177de53d1198'),(342031,42673,'blocks_5_timeline_content_heading','Why choose Biomechanics Education?'),(342032,42673,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(342033,42673,'blocks_5_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(342034,42673,'_blocks_5_timeline_content_text','field_6177de53d119a'),(342035,42673,'blocks_5_timeline_content_actions',''),(342036,42673,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(342037,42673,'blocks_5_timeline_content',''),(342038,42673,'_blocks_5_timeline_content','field_6177de53d1197'),(342039,42673,'blocks_5_timeline_items_0_title','Industry-Leading Expertise'),(342040,42673,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(342041,42673,'blocks_5_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(342042,42673,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(342043,42673,'blocks_5_timeline_items_1_title','Global Accessibility'),(342044,42673,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(342045,42673,'blocks_5_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(342046,42673,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(342047,42673,'blocks_5_timeline_items_2_title','Internationally Recognised Certification'),(342048,42673,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(342049,42673,'blocks_5_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(342050,42673,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(342051,42673,'blocks_5_timeline_items_3_title','Career Opportunities Worldwide'),(342052,42673,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(342053,42673,'blocks_5_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(342054,42673,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(342055,42673,'blocks_5_timeline_items','4'),(342056,42673,'_blocks_5_timeline_items','field_6177de53d119d'),(342057,42673,'_thumbnail_id','40818'),(342058,42673,'__thumbnail_id','field_617570855ddaf'),(342059,42673,'blocks_6_acfe_flexible_toggle',''),(342060,42673,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342061,42673,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(342062,42673,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342063,42673,'blocks_6_options_theme','#ffffff'),(342064,42673,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(342065,42673,'blocks_6_options_reverse','0'),(342066,42673,'_blocks_6_options_reverse','field_61768049bb8ac'),(342067,42673,'blocks_6_options',''),(342068,42673,'_blocks_6_options','field_617682517c334'),(342069,42673,'blocks_6_split_5050_image','41300'),(342070,42673,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(342071,42673,'blocks_6_split_5050_video',''),(342072,42673,'_blocks_6_split_5050_video','field_6239f3160848a'),(342073,42673,'blocks_6_split_5050_content_title',''),(342074,42673,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(342075,42673,'blocks_6_split_5050_content_heading','International Support & Learning Experience'),(342076,42673,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(342077,42673,'blocks_6_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(342078,42673,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(342079,42673,'blocks_6_split_5050_content_actions',''),(342080,42673,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(342081,42673,'blocks_6_split_5050_content',''),(342082,42673,'_blocks_6_split_5050_content','field_61767afceb8ba'),(342083,42673,'blocks_7_acfe_flexible_toggle',''),(342084,42673,'_blocks_7_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(342085,42673,'blocks_7_acfe_flexible_layout_title','Form'),(342086,42673,'_blocks_7_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(342087,42673,'blocks_7_row_content_format','standard'),(342088,42673,'_blocks_7_row_content_format','field_6481ead962881'),(342089,42673,'blocks_7_row_content_title',''),(342090,42673,'_blocks_7_row_content_title','field_61a0f5f5b3db1'),(342091,42673,'blocks_7_row_content_heading','Contact Us Today'),(342092,42673,'_blocks_7_row_content_heading','field_61a0f5f5b3db2'),(342093,42673,'blocks_7_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(342094,42673,'_blocks_7_row_content_text','field_61a0f5f5b3db3'),(342095,42673,'blocks_7_row_content_actions',''),(342096,42673,'_blocks_7_row_content_actions','field_61a0f5f5b3db4'),(342097,42673,'blocks_7_row_content',''),(342098,42673,'_blocks_7_row_content','field_61a0f5f5b3db0'),(342099,42673,'blocks_7_row_form','40394'),(342100,42673,'_blocks_7_row_form','field_61a4ff2c0b08e'),(342101,42673,'blocks_7_row_form_button_label',''),(342102,42673,'_blocks_7_row_form_button_label','field_61e12cf6fe412'),(342103,42673,'blocks_8_acfe_flexible_toggle',''),(342104,42673,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(342105,42673,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(342106,42673,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(342107,42673,'blocks_8_options_theme','#ffffff'),(342108,42673,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(342109,42673,'blocks_8_options_state','0'),(342110,42673,'_blocks_8_options_state','field_6239fcb7508c5'),(342111,42673,'blocks_8_options',''),(342112,42673,'_blocks_8_options','field_6177e2991ac44'),(342113,42673,'blocks_8_content_title',''),(342114,42673,'_blocks_8_content_title','field_64d237e8bb1e2'),(342115,42673,'blocks_8_content_heading','FAQs'),(342116,42673,'_blocks_8_content_heading','field_64d237e8bb1e3'),(342117,42673,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(342118,42673,'_blocks_8_content_text','field_64d237e8bb1e4'),(342119,42673,'blocks_8_content_actions',''),(342120,42673,'_blocks_8_content_actions','field_64d237e8bb1e5'),(342121,42673,'blocks_8_content_align','left'),(342122,42673,'_blocks_8_content_align','field_64d2443e6b6aa'),(342123,42673,'blocks_8_content',''),(342124,42673,'_blocks_8_content','field_64d237e8bb1e1'),(342125,42673,'blocks_8_accordion_content','custom'),(342126,42673,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(342127,42673,'blocks_8_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(342128,42673,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(342129,42673,'blocks_8_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(342130,42673,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(342131,42673,'blocks_8_accordion_items_1_title','Is the qualification recognised globally?'),(342132,42673,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(342133,42673,'blocks_8_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(342134,42673,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(342135,42673,'blocks_8_accordion_items_2_title','What are the study options for international students?'),(342136,42673,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(342137,42673,'blocks_8_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(342138,42673,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(342139,42673,'blocks_8_accordion_items_3_title','Who is this course suitable for?'),(342140,42673,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(342141,42673,'blocks_8_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(342142,42673,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(342143,42673,'blocks_8_accordion_items_4_title','How do I enrol and what are the payment options?'),(342144,42673,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(342145,42673,'blocks_8_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(342146,42673,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(342147,42673,'blocks_8_accordion_items','5'),(342148,42673,'_blocks_8_accordion_items','field_6177e2991ac4c'),(342149,42673,'blocks_8_actions',''),(342150,42673,'_blocks_8_actions','field_61a746a817f7a'),(342151,42674,'hide_hero','0'),(342152,42674,'_hide_hero','field_66a2380fcda39'),(342153,42674,'hero_title',''),(342154,42674,'_hero_title','field_617571fe285e8'),(342155,42674,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(342156,42674,'_hero_text','field_6175723c285e9'),(342157,42674,'hero_actions',''),(342158,42674,'_hero_actions','field_61757270285ea'),(342159,42674,'hero_style','default'),(342160,42674,'_hero_style','field_62051d9dc5324'),(342161,42674,'hero_image_pos_x','right'),(342162,42674,'_hero_image_pos_x','field_62ec3d05390bb'),(342163,42674,'hero_image_pos_y','top'),(342164,42674,'_hero_image_pos_y','field_62ec3d05390bc'),(342165,42674,'hero_image_pos',''),(342166,42674,'_hero_image_pos','field_62ec3d05390ba'),(342167,42674,'fft_hide_from_listings','0'),(342168,42674,'_fft_hide_from_listings','field_61f1320446ab2'),(342169,42674,'post_format','402'),(342170,42674,'_post_format','field_61756bfb51898'),(342171,42674,'post_author',''),(342172,42674,'_post_author','field_62ec389d22113'),(342173,42674,'post_reviewer',''),(342174,42674,'_post_reviewer','field_627140a2a9800'),(342175,42674,'post_table_of_contents','0'),(342176,42674,'_post_table_of_contents','field_65c503bc846a6'),(342177,42674,'blocks','a:24:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:13:\"step_timeline\";i:16;s:10:\"text_block\";i:17;s:10:\"split_5050\";i:18;s:10:\"split_5050\";i:19;s:10:\"split_5050\";i:20;s:10:\"text_block\";i:21;s:5:\"icons\";i:22;s:10:\"split_5050\";i:23;s:11:\"promo_panel\";}'),(342178,42674,'_blocks','field_6176696113096'),(342179,42674,'_thumbnail_id','40618'),(342180,42674,'__thumbnail_id','field_617570855ddaf'),(342181,42674,'blocks_0_acfe_flexible_toggle',''),(342182,42674,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(342183,42674,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(342184,42674,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(342185,42674,'blocks_0_options_theme','#ffffff'),(342186,42674,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(342187,42674,'blocks_0_options',''),(342188,42674,'_blocks_0_options','field_6177b758246ae'),(342189,42674,'blocks_0_link_stack_content_title',''),(342190,42674,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(342191,42674,'blocks_0_link_stack_content_heading','Introduction'),(342192,42674,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(342193,42674,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\"></p>\r\nThis guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(342194,42674,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(342195,42674,'blocks_0_link_stack_content_actions_0_button',''),(342196,42674,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(342197,42674,'blocks_0_link_stack_content_actions','1'),(342198,42674,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(342199,42674,'blocks_0_link_stack_content',''),(342200,42674,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(342201,42674,'blocks_0_link_stack_0_label','1.'),(342202,42674,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(342203,42674,'blocks_0_link_stack_0_title','Overview'),(342204,42674,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(342205,42674,'blocks_0_link_stack_0_url','#overview'),(342206,42674,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(342207,42674,'blocks_0_link_stack_1_label','2.'),(342208,42674,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(342209,42674,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(342210,42674,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(342211,42674,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(342212,42674,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(342213,42674,'blocks_0_link_stack_2_label','3.'),(342214,42674,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(342215,42674,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(342216,42674,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(342217,42674,'blocks_0_link_stack_2_url','#who-should-study-msk'),(342218,42674,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(342219,42674,'blocks_0_link_stack_3_label','4.'),(342220,42674,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(342221,42674,'blocks_0_link_stack_3_title','Common MSK Conditions'),(342222,42674,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(342223,42674,'blocks_0_link_stack_3_url','#common-msk-conditions'),(342224,42674,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(342225,42674,'blocks_0_link_stack_4_label','5.'),(342226,42674,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(342227,42674,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(342228,42674,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(342229,42674,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(342230,42674,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(342231,42674,'blocks_0_link_stack_5_label','6.'),(342232,42674,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(342233,42674,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(342234,42674,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(342235,42674,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(342236,42674,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(342237,42674,'blocks_0_link_stack','6'),(342238,42674,'_blocks_0_link_stack','field_6177b7f600cff'),(342239,42674,'blocks_1_acfe_flexible_toggle',''),(342240,42674,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342241,42674,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(342242,42674,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342243,42674,'blocks_1_options_theme','#f5f5f5'),(342244,42674,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(342245,42674,'blocks_1_options_reverse','0'),(342246,42674,'_blocks_1_options_reverse','field_61768049bb8ac'),(342247,42674,'blocks_1_options',''),(342248,42674,'_blocks_1_options','field_617682517c334'),(342249,42674,'blocks_1_split_5050_image','40615'),(342250,42674,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(342251,42674,'blocks_1_split_5050_video',''),(342252,42674,'_blocks_1_split_5050_video','field_6239f3160848a'),(342253,42674,'blocks_1_split_5050_content_title',''),(342254,42674,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(342255,42674,'blocks_1_split_5050_content_heading','Overview'),(342256,42674,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(342257,42674,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(342258,42674,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(342259,42674,'blocks_1_split_5050_content_actions',''),(342260,42674,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(342261,42674,'blocks_1_split_5050_content',''),(342262,42674,'_blocks_1_split_5050_content','field_61767afceb8ba'),(342263,42674,'blocks_3_acfe_flexible_toggle',''),(342264,42674,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342265,42674,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(342266,42674,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342267,42674,'blocks_3_options_theme','#ffffff'),(342268,42674,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(342269,42674,'blocks_3_options_reverse','1'),(342270,42674,'_blocks_3_options_reverse','field_61768049bb8ac'),(342271,42674,'blocks_3_options',''),(342272,42674,'_blocks_3_options','field_617682517c334'),(342273,42674,'blocks_3_split_5050_image','41542'),(342274,42674,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(342275,42674,'blocks_3_split_5050_video',''),(342276,42674,'_blocks_3_split_5050_video','field_6239f3160848a'),(342277,42674,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(342278,42674,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(342279,42674,'blocks_3_split_5050_content_heading',''),(342280,42674,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(342281,42674,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(342282,42674,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(342283,42674,'blocks_3_split_5050_content_actions',''),(342284,42674,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(342285,42674,'blocks_3_split_5050_content',''),(342286,42674,'_blocks_3_split_5050_content','field_61767afceb8ba'),(342287,42674,'blocks_13_acfe_flexible_toggle',''),(342288,42674,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342289,42674,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(342290,42674,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342291,42674,'blocks_13_options_theme','#ffffff'),(342292,42674,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(342293,42674,'blocks_13_options_reverse','0'),(342294,42674,'_blocks_13_options_reverse','field_61768049bb8ac'),(342295,42674,'blocks_13_options',''),(342296,42674,'_blocks_13_options','field_617682517c334'),(342297,42674,'blocks_13_split_5050_image','18856'),(342298,42674,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(342299,42674,'blocks_13_split_5050_video',''),(342300,42674,'_blocks_13_split_5050_video','field_6239f3160848a'),(342301,42674,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(342302,42674,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(342303,42674,'blocks_13_split_5050_content_heading',''),(342304,42674,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(342305,42674,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(342306,42674,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(342307,42674,'blocks_13_split_5050_content_actions',''),(342308,42674,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(342309,42674,'blocks_13_split_5050_content',''),(342310,42674,'_blocks_13_split_5050_content','field_61767afceb8ba'),(342311,42674,'blocks_6_acfe_flexible_toggle',''),(342312,42674,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342313,42674,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(342314,42674,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342315,42674,'blocks_6_options_theme','#ffffff'),(342316,42674,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(342317,42674,'blocks_6_options_reverse','1'),(342318,42674,'_blocks_6_options_reverse','field_61768049bb8ac'),(342319,42674,'blocks_6_options',''),(342320,42674,'_blocks_6_options','field_617682517c334'),(342321,42674,'blocks_6_split_5050_image','41502'),(342322,42674,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(342323,42674,'blocks_6_split_5050_video',''),(342324,42674,'_blocks_6_split_5050_video','field_6239f3160848a'),(342325,42674,'blocks_6_split_5050_content_title','Research & Academia'),(342326,42674,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(342327,42674,'blocks_6_split_5050_content_heading',''),(342328,42674,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(342329,42674,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(342330,42674,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(342331,42674,'blocks_6_split_5050_content_actions',''),(342332,42674,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(342333,42674,'blocks_6_split_5050_content',''),(342334,42674,'_blocks_6_split_5050_content','field_61767afceb8ba'),(342335,42674,'blocks_5_acfe_flexible_toggle',''),(342336,42674,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342337,42674,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(342338,42674,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342339,42674,'blocks_5_options_theme','#ffffff'),(342340,42674,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(342341,42674,'blocks_5_options_reverse','1'),(342342,42674,'_blocks_5_options_reverse','field_61768049bb8ac'),(342343,42674,'blocks_5_options',''),(342344,42674,'_blocks_5_options','field_617682517c334'),(342345,42674,'blocks_5_split_5050_image','41539'),(342346,42674,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(342347,42674,'blocks_5_split_5050_video',''),(342348,42674,'_blocks_5_split_5050_video','field_6239f3160848a'),(342349,42674,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(342350,42674,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(342351,42674,'blocks_5_split_5050_content_heading',''),(342352,42674,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(342353,42674,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(342354,42674,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(342355,42674,'blocks_5_split_5050_content_actions',''),(342356,42674,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(342357,42674,'blocks_5_split_5050_content',''),(342358,42674,'_blocks_5_split_5050_content','field_61767afceb8ba'),(342359,42674,'blocks_14_acfe_flexible_toggle',''),(342360,42674,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342361,42674,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (4) '),(342362,42674,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342363,42674,'blocks_14_options_theme','#ffffff'),(342364,42674,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(342365,42674,'blocks_14_options_reverse','0'),(342366,42674,'_blocks_14_options_reverse','field_61768049bb8ac'),(342367,42674,'blocks_14_options',''),(342368,42674,'_blocks_14_options','field_617682517c334'),(342369,42674,'blocks_14_split_5050_image','41490'),(342370,42674,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(342371,42674,'blocks_14_split_5050_video',''),(342372,42674,'_blocks_14_split_5050_video','field_6239f3160848a'),(342373,42674,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(342374,42674,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(342375,42674,'blocks_14_split_5050_content_heading',''),(342376,42674,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(342377,42674,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(342378,42674,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(342379,42674,'blocks_14_split_5050_content_actions',''),(342380,42674,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(342381,42674,'blocks_14_split_5050_content',''),(342382,42674,'_blocks_14_split_5050_content','field_61767afceb8ba'),(342383,42674,'blocks_20_acfe_flexible_toggle',''),(342384,42674,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(342385,42674,'blocks_20_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(342386,42674,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(342387,42674,'blocks_20_options_theme','#b61234'),(342388,42674,'_blocks_20_options_theme','field_6176830e2ad17'),(342389,42674,'blocks_20_options',''),(342390,42674,'_blocks_20_options','field_6176830e2ad16'),(342391,42674,'blocks_20_text_block_heading','Compare Costs and Payment/Finance Options'),(342392,42674,'_blocks_20_text_block_heading','field_617669d413097'),(342393,42674,'blocks_20_text_block_content','Biomechanics courses can vary significantly in cost, depending on factors such as course level, institution, and delivery format. While investing in your education is important, it’s equally essential to choose a course that provides good value for money and aligns with your career goals. Understanding the financial commitment involved and exploring available funding options can help you make an informed decision without unnecessary financial strain.'),(342394,42674,'_blocks_20_text_block_content','field_617669ec13098'),(342395,42674,'blocks_10_acfe_flexible_toggle',''),(342396,42674,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(342397,42674,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(342398,42674,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(342399,42674,'blocks_10_options_theme','#ffffff'),(342400,42674,'_blocks_10_options_theme','field_6176830e2ad17'),(342401,42674,'blocks_10_options',''),(342402,42674,'_blocks_10_options','field_6176830e2ad16'),(342403,42674,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(342404,42674,'_blocks_10_text_block_heading','field_617669d413097'),(342405,42674,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(342406,42674,'_blocks_10_text_block_content','field_617669ec13098'),(342407,42674,'blocks_2_acfe_flexible_toggle',''),(342408,42674,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(342409,42674,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(342410,42674,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(342411,42674,'blocks_2_options_theme','#ffffff'),(342412,42674,'_blocks_2_options_theme','field_6176830e2ad17'),(342413,42674,'blocks_2_options',''),(342414,42674,'_blocks_2_options','field_6176830e2ad16'),(342415,42674,'blocks_2_text_block_heading','Define Your Career Goals'),(342416,42674,'_blocks_2_text_block_heading','field_617669d413097'),(342417,42674,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(342418,42674,'_blocks_2_text_block_content','field_617669ec13098'),(342419,42674,'blocks_4_acfe_flexible_toggle',''),(342420,42674,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342421,42674,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(342422,42674,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342423,42674,'blocks_4_options_theme','#ffffff'),(342424,42674,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(342425,42674,'blocks_4_options_reverse','1'),(342426,42674,'_blocks_4_options_reverse','field_61768049bb8ac'),(342427,42674,'blocks_4_options',''),(342428,42674,'_blocks_4_options','field_617682517c334'),(342429,42674,'blocks_4_split_5050_image','41505'),(342430,42674,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(342431,42674,'blocks_4_split_5050_video',''),(342432,42674,'_blocks_4_split_5050_video','field_6239f3160848a'),(342433,42674,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(342434,42674,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(342435,42674,'blocks_4_split_5050_content_heading',''),(342436,42674,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(342437,42674,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(342438,42674,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(342439,42674,'blocks_4_split_5050_content_actions',''),(342440,42674,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(342441,42674,'blocks_4_split_5050_content',''),(342442,42674,'_blocks_4_split_5050_content','field_61767afceb8ba'),(342443,42674,'blocks_7_acfe_flexible_toggle',''),(342444,42674,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(342445,42674,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(342446,42674,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(342447,42674,'blocks_7_options_theme','#f5f5f5'),(342448,42674,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(342449,42674,'blocks_7_options_state','0'),(342450,42674,'_blocks_7_options_state','field_6239fcb7508c5'),(342451,42674,'blocks_7_options',''),(342452,42674,'_blocks_7_options','field_6177e2991ac44'),(342453,42674,'blocks_7_content_title',''),(342454,42674,'_blocks_7_content_title','field_64d237e8bb1e2'),(342455,42674,'blocks_7_content_heading','Evaluate Course Content'),(342456,42674,'_blocks_7_content_heading','field_64d237e8bb1e3'),(342457,42674,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(342458,42674,'_blocks_7_content_text','field_64d237e8bb1e4'),(342459,42674,'blocks_7_content_actions',''),(342460,42674,'_blocks_7_content_actions','field_64d237e8bb1e5'),(342461,42674,'blocks_7_content_align','left'),(342462,42674,'_blocks_7_content_align','field_64d2443e6b6aa'),(342463,42674,'blocks_7_content',''),(342464,42674,'_blocks_7_content','field_64d237e8bb1e1'),(342465,42674,'blocks_7_accordion_content','custom'),(342466,42674,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(342467,42674,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(342468,42674,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(342469,42674,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(342470,42674,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(342471,42674,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(342472,42674,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(342473,42674,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(342474,42674,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(342475,42674,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(342476,42674,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(342477,42674,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(342478,42674,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(342479,42674,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(342480,42674,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(342481,42674,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(342482,42674,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(342483,42674,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(342484,42674,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(342485,42674,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(342486,42674,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(342487,42674,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(342488,42674,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(342489,42674,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(342490,42674,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(342491,42674,'blocks_7_accordion_items','6'),(342492,42674,'_blocks_7_accordion_items','field_6177e2991ac4c'),(342493,42674,'blocks_7_actions',''),(342494,42674,'_blocks_7_actions','field_61a746a817f7a'),(342495,42674,'blocks_8_acfe_flexible_toggle',''),(342496,42674,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(342497,42674,'blocks_8_acfe_flexible_layout_title','Text Block'),(342498,42674,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(342499,42674,'blocks_8_options_theme','#b61234'),(342500,42674,'_blocks_8_options_theme','field_6176830e2ad17'),(342501,42674,'blocks_8_options',''),(342502,42674,'_blocks_8_options','field_6176830e2ad16'),(342503,42674,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(342504,42674,'_blocks_8_text_block_heading','field_617669d413097'),(342505,42674,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(342506,42674,'_blocks_8_text_block_content','field_617669ec13098'),(342507,42674,'blocks_9_acfe_flexible_toggle',''),(342508,42674,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(342509,42674,'blocks_9_acfe_flexible_layout_title','Icons'),(342510,42674,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(342511,42674,'blocks_9_options_theme','#b61234'),(342512,42674,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(342513,42674,'blocks_9_options_format','row'),(342514,42674,'_blocks_9_options_format','field_64bfde9a90690'),(342515,42674,'blocks_9_options',''),(342516,42674,'_blocks_9_options','field_64bfdd9b90684'),(342517,42674,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(342518,42674,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(342519,42674,'blocks_9_icon_row_items_0_label','Industry Recognition'),(342520,42674,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(342521,42674,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(342522,42674,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(342523,42674,'blocks_9_icon_row_items_1_icon','qualification.svg'),(342524,42674,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(342525,42674,'blocks_9_icon_row_items_1_label','University Accreditation'),(342526,42674,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(342527,42674,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(342528,42674,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(342529,42674,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(342530,42674,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(342531,42674,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(342532,42674,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(342533,42674,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(342534,42674,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(342535,42674,'blocks_9_icon_row_items','3'),(342536,42674,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(342537,42674,'blocks_11_acfe_flexible_toggle',''),(342538,42674,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342539,42674,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(342540,42674,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342541,42674,'blocks_11_options_theme','#ffffff'),(342542,42674,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(342543,42674,'blocks_11_options_reverse','0'),(342544,42674,'_blocks_11_options_reverse','field_61768049bb8ac'),(342545,42674,'blocks_11_options',''),(342546,42674,'_blocks_11_options','field_617682517c334'),(342547,42674,'blocks_11_split_5050_image','41498'),(342548,42674,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(342549,42674,'blocks_11_split_5050_video',''),(342550,42674,'_blocks_11_split_5050_video','field_6239f3160848a'),(342551,42674,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(342552,42674,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(342553,42674,'blocks_11_split_5050_content_heading',''),(342554,42674,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(342555,42674,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(342556,42674,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(342557,42674,'blocks_11_split_5050_content_actions',''),(342558,42674,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(342559,42674,'blocks_11_split_5050_content',''),(342560,42674,'_blocks_11_split_5050_content','field_61767afceb8ba'),(342561,42674,'blocks_12_acfe_flexible_toggle',''),(342562,42674,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342563,42674,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(342564,42674,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342565,42674,'blocks_12_options_theme','#ffffff'),(342566,42674,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(342567,42674,'blocks_12_options_reverse','0'),(342568,42674,'_blocks_12_options_reverse','field_61768049bb8ac'),(342569,42674,'blocks_12_options',''),(342570,42674,'_blocks_12_options','field_617682517c334'),(342571,42674,'blocks_12_split_5050_image','40387'),(342572,42674,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(342573,42674,'blocks_12_split_5050_video',''),(342574,42674,'_blocks_12_split_5050_video','field_6239f3160848a'),(342575,42674,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(342576,42674,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(342577,42674,'blocks_12_split_5050_content_heading',''),(342578,42674,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(342579,42674,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(342580,42674,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(342581,42674,'blocks_12_split_5050_content_actions',''),(342582,42674,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(342583,42674,'blocks_12_split_5050_content',''),(342584,42674,'_blocks_12_split_5050_content','field_61767afceb8ba'),(342585,42674,'blocks_17_acfe_flexible_toggle',''),(342586,42674,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342587,42674,'blocks_17_acfe_flexible_layout_title','Experienced Training Providers'),(342588,42674,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342589,42674,'blocks_17_options_theme','#ffffff'),(342590,42674,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(342591,42674,'blocks_17_options_reverse','1'),(342592,42674,'_blocks_17_options_reverse','field_61768049bb8ac'),(342593,42674,'blocks_17_options',''),(342594,42674,'_blocks_17_options','field_617682517c334'),(342595,42674,'blocks_17_split_5050_image','41498'),(342596,42674,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(342597,42674,'blocks_17_split_5050_video',''),(342598,42674,'_blocks_17_split_5050_video','field_6239f3160848a'),(342599,42674,'blocks_17_split_5050_content_title','Experienced Training Providers'),(342600,42674,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(342601,42674,'blocks_17_split_5050_content_heading',''),(342602,42674,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(342603,42674,'blocks_17_split_5050_content_text','Tutors with extensive experience in biomechanics bring real-world insights to the classroom, bridging the gap between theory and practice. Look for instructors with backgrounds in academia, professional sports, rehabilitation, or biomechanics research, as their expertise can enhance the learning experience.'),(342604,42674,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(342605,42674,'blocks_17_split_5050_content_actions',''),(342606,42674,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(342607,42674,'blocks_17_split_5050_content',''),(342608,42674,'_blocks_17_split_5050_content','field_61767afceb8ba'),(342609,42674,'blocks_15_acfe_flexible_toggle',''),(342610,42674,'_blocks_15_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(342611,42674,'blocks_15_acfe_flexible_layout_title','Timeline'),(342612,42674,'_blocks_15_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(342613,42674,'blocks_15_options_theme','#f5f5f5'),(342614,42674,'_blocks_15_options_theme','field_6177de53d1196_field_6176830e2ad17'),(342615,42674,'blocks_15_options',''),(342616,42674,'_blocks_15_options','field_6177de53d1195'),(342617,42674,'blocks_15_timeline_content_title',''),(342618,42674,'_blocks_15_timeline_content_title','field_6177de53d1198'),(342619,42674,'blocks_15_timeline_content_heading','Evaluate Course Format and Flexibility'),(342620,42674,'_blocks_15_timeline_content_heading','field_6177de53d1199'),(342621,42674,'blocks_15_timeline_content_text','Biomechanics courses can vary in structure, offering different formats to accommodate students with varying schedules, learning preferences, and career commitments. Whether you’re looking for a full-time degree, a part-time professional development course, or an online programme that fits around your work, understanding the course format is essential in making the right choice. A well-structured course should provide a balance of flexibility and practical engagement, ensuring you gain the knowledge and hands-on experience needed for your career.\r\n\r\nWhen considering a biomechanics course, think about how the course format aligns with your lifestyle and career ambitions. Below are some key factors to evaluate when selecting the right learning structure.'),(342622,42674,'_blocks_15_timeline_content_text','field_6177de53d119a'),(342623,42674,'blocks_15_timeline_content_actions',''),(342624,42674,'_blocks_15_timeline_content_actions','field_6177de53d119b'),(342625,42674,'blocks_15_timeline_content',''),(342626,42674,'_blocks_15_timeline_content','field_6177de53d1197'),(342627,42674,'blocks_15_timeline_items_0_title','Full-Time vs. Part-Time Study'),(342628,42674,'_blocks_15_timeline_items_0_title','field_6177de53d119f'),(342629,42674,'blocks_15_timeline_items_0_text','Full-time biomechanics courses offer an immersive learning experience, allowing students to complete their qualifications more quickly. However, part-time courses can be beneficial for those who are already working in the field and want to upskill while maintaining their job. Choosing between these options depends on your availability, learning pace, and career progression plans.'),(342630,42674,'_blocks_15_timeline_items_0_text','field_6177de53d11a0'),(342631,42674,'blocks_15_timeline_items_1_title','Online, In-Person, and Hybrid Learning'),(342632,42674,'_blocks_15_timeline_items_1_title','field_6177de53d119f'),(342633,42674,'blocks_15_timeline_items_1_text','While some biomechanics courses are delivered entirely in-person, others incorporate online modules to provide greater flexibility. Online learning can be useful for covering theoretical concepts, but biomechanics is a highly practical subject, meaning hybrid programmes that include both online theory and in-person practical sessions can be the most effective for building applied skills.'),(342634,42674,'_blocks_15_timeline_items_1_text','field_6177de53d11a0'),(342635,42674,'blocks_15_timeline_items_2_title','Degree Level and Course Duration'),(342636,42674,'_blocks_15_timeline_items_2_title','field_6177de53d119f'),(342637,42674,'blocks_15_timeline_items_2_text','Depending on your career goals, you may need to choose between a short biomechanics certification, a diploma, or a full degree (BSc, MSc, or PhD). Short courses and diplomas are useful for professionals looking to specialise or upskill, while degree-level courses provide a more in-depth understanding of biomechanics, research methods, and applied movement science.'),(342638,42674,'_blocks_15_timeline_items_2_text','field_6177de53d11a0'),(342639,42674,'blocks_15_timeline_items','3'),(342640,42674,'_blocks_15_timeline_items','field_6177de53d119d'),(342641,42674,'blocks_16_acfe_flexible_toggle',''),(342642,42674,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(342643,42674,'blocks_16_acfe_flexible_layout_title','Tutor Expertise[anchor] '),(342644,42674,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(342645,42674,'blocks_16_options_theme','#ffffff'),(342646,42674,'_blocks_16_options_theme','field_6176830e2ad17'),(342647,42674,'blocks_16_options',''),(342648,42674,'_blocks_16_options','field_6176830e2ad16'),(342649,42674,'blocks_16_text_block_heading','Assess Tutor Expertise and Industry Connections'),(342650,42674,'_blocks_16_text_block_heading','field_617669d413097'),(342651,42674,'blocks_16_text_block_content','The quality of a biomechanics course is not just determined by its content but also by the expertise of the tutors delivering it and the industry connections it provides. Learning from experienced professionals with strong backgrounds in biomechanics, sports science, rehabilitation, or engineering ensures that you receive relevant, up-to-date knowledge that aligns with industry standards. Additionally, courses with strong industry links can open doors to valuable networking opportunities, mentorship, and potential career placements.\r\n\r\nWhen evaluating a biomechanics course, consider the credibility of the teaching staff and the programme’s industry connections. Below are key factors to assess.'),(342652,42674,'_blocks_16_text_block_content','field_617669ec13098'),(342653,42674,'blocks_18_acfe_flexible_toggle',''),(342654,42674,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342655,42674,'blocks_18_acfe_flexible_layout_title','Industry Collaborations and Professional Networks'),(342656,42674,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342657,42674,'blocks_18_options_theme','#ffffff'),(342658,42674,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(342659,42674,'blocks_18_options_reverse','1'),(342660,42674,'_blocks_18_options_reverse','field_61768049bb8ac'),(342661,42674,'blocks_18_options',''),(342662,42674,'_blocks_18_options','field_617682517c334'),(342663,42674,'blocks_18_split_5050_image','41498'),(342664,42674,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(342665,42674,'blocks_18_split_5050_video',''),(342666,42674,'_blocks_18_split_5050_video','field_6239f3160848a'),(342667,42674,'blocks_18_split_5050_content_title','Industry Collaborations and Professional Networks'),(342668,42674,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(342669,42674,'blocks_18_split_5050_content_heading',''),(342670,42674,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(342671,42674,'blocks_18_split_5050_content_text','Courses that have partnerships with sports teams, healthcare organisations, universities, or biomechanics companies provide students with access to industry professionals and potential career opportunities. These collaborations can also lead to internships, research projects, or direct job placements after completing the course.'),(342672,42674,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(342673,42674,'blocks_18_split_5050_content_actions',''),(342674,42674,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(342675,42674,'blocks_18_split_5050_content',''),(342676,42674,'_blocks_18_split_5050_content','field_61767afceb8ba'),(342677,42674,'blocks_19_acfe_flexible_toggle',''),(342678,42674,'_blocks_19_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342679,42674,'blocks_19_acfe_flexible_layout_title','Graduate Success and Alumni Network'),(342680,42674,'_blocks_19_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342681,42674,'blocks_19_options_theme','#ffffff'),(342682,42674,'_blocks_19_options_theme','field_617682847c335_field_6176830e2ad17'),(342683,42674,'blocks_19_options_reverse','1'),(342684,42674,'_blocks_19_options_reverse','field_61768049bb8ac'),(342685,42674,'blocks_19_options',''),(342686,42674,'_blocks_19_options','field_617682517c334'),(342687,42674,'blocks_19_split_5050_image','41498'),(342688,42674,'_blocks_19_split_5050_image','field_6239f527a0c3a'),(342689,42674,'blocks_19_split_5050_video',''),(342690,42674,'_blocks_19_split_5050_video','field_6239f3160848a'),(342691,42674,'blocks_19_split_5050_content_title','Graduate Success and Alumni Network'),(342692,42674,'_blocks_19_split_5050_content_title','field_61767bfca3fc0'),(342693,42674,'blocks_19_split_5050_content_heading',''),(342694,42674,'_blocks_19_split_5050_content_heading','field_61767b26eb8bb'),(342695,42674,'blocks_19_split_5050_content_text','A strong alumni network and positive graduate success stories indicate the effectiveness of a biomechanics course. Research where previous students have progressed in their careers, as this can provide insight into the opportunities available after completing the programme.'),(342696,42674,'_blocks_19_split_5050_content_text','field_61767b3beb8bc'),(342697,42674,'blocks_19_split_5050_content_actions',''),(342698,42674,'_blocks_19_split_5050_content_actions','field_61767b68eb8bd'),(342699,42674,'blocks_19_split_5050_content',''),(342700,42674,'_blocks_19_split_5050_content','field_61767afceb8ba'),(342701,42674,'blocks_21_acfe_flexible_toggle',''),(342702,42674,'_blocks_21_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(342703,42674,'blocks_21_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(342704,42674,'_blocks_21_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(342705,42674,'blocks_21_options_theme','#b61234'),(342706,42674,'_blocks_21_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(342707,42674,'blocks_21_options_format','row'),(342708,42674,'_blocks_21_options_format','field_64bfde9a90690'),(342709,42674,'blocks_21_options',''),(342710,42674,'_blocks_21_options','field_64bfdd9b90684'),(342711,42674,'blocks_21_icon_row_items_0_icon','payment-plans.svg'),(342712,42674,'_blocks_21_icon_row_items_0_icon','field_64bfdd9b9068d'),(342713,42674,'blocks_21_icon_row_items_0_label','Course Costs'),(342714,42674,'_blocks_21_icon_row_items_0_label','field_64bfdd9c9068e'),(342715,42674,'blocks_21_icon_row_items_0_text','Compare costs across providers to find an option that fits your budget.'),(342716,42674,'_blocks_21_icon_row_items_0_text','field_64bfdd9c9068f'),(342717,42674,'blocks_21_icon_row_items_1_icon','start-earning-in.svg'),(342718,42674,'_blocks_21_icon_row_items_1_icon','field_64bfdd9b9068d'),(342719,42674,'blocks_21_icon_row_items_1_label','Grants'),(342720,42674,'_blocks_21_icon_row_items_1_label','field_64bfdd9c9068e'),(342721,42674,'blocks_21_icon_row_items_1_text','Some universities may offer financial aid for biomechanics students, especially in research-intensive programmes.'),(342722,42674,'_blocks_21_icon_row_items_1_text','field_64bfdd9c9068f'),(342723,42674,'blocks_21_icon_row_items_2_icon','return-on-investment-1.svg'),(342724,42674,'_blocks_21_icon_row_items_2_icon','field_64bfdd9b9068d'),(342725,42674,'blocks_21_icon_row_items_2_label','Return on Investment'),(342726,42674,'_blocks_21_icon_row_items_2_label','field_64bfdd9c9068e'),(342727,42674,'blocks_21_icon_row_items_2_text','Consider the earning potential in your chosen biomechanics career and whether the programme justifies the cost.'),(342728,42674,'_blocks_21_icon_row_items_2_text','field_64bfdd9c9068f'),(342729,42674,'blocks_21_icon_row_items','3'),(342730,42674,'_blocks_21_icon_row_items','field_64bfdd9b9068c'),(342731,42674,'blocks_22_acfe_flexible_toggle',''),(342732,42674,'_blocks_22_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342733,42674,'blocks_22_acfe_flexible_layout_title','Final Thoughts'),(342734,42674,'_blocks_22_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342735,42674,'blocks_22_options_theme','#ffffff'),(342736,42674,'_blocks_22_options_theme','field_617682847c335_field_6176830e2ad17'),(342737,42674,'blocks_22_options_reverse','1'),(342738,42674,'_blocks_22_options_reverse','field_61768049bb8ac'),(342739,42674,'blocks_22_options',''),(342740,42674,'_blocks_22_options','field_617682517c334'),(342741,42674,'blocks_22_split_5050_image','41501'),(342742,42674,'_blocks_22_split_5050_image','field_6239f527a0c3a'),(342743,42674,'blocks_22_split_5050_video',''),(342744,42674,'_blocks_22_split_5050_video','field_6239f3160848a'),(342745,42674,'blocks_22_split_5050_content_title',''),(342746,42674,'_blocks_22_split_5050_content_title','field_61767bfca3fc0'),(342747,42674,'blocks_22_split_5050_content_heading','Final Thoughts'),(342748,42674,'_blocks_22_split_5050_content_heading','field_61767b26eb8bb'),(342749,42674,'blocks_22_split_5050_content_text','Choosing the right biomechanics course is a key step in shaping your career and expanding your expertise in human movement. With so many options available, it’s important to take the time to evaluate courses based on your career goals, the content they offer, accreditation, practical learning opportunities, and industry connections. A well-structured course should provide both theoretical knowledge and hands-on experience, ensuring that you develop the skills needed to apply biomechanics effectively in your chosen field.\r\n\r\nBy considering factors such as course format, tutor expertise, financial investment, and long-term career prospects, you can make an informed decision that aligns with your aspirations. Take the time to research programmes, speak with faculty or alumni, and explore available learning pathways to find the biomechanics course that best supports your professional development.'),(342750,42674,'_blocks_22_split_5050_content_text','field_61767b3beb8bc'),(342751,42674,'blocks_22_split_5050_content_actions',''),(342752,42674,'_blocks_22_split_5050_content_actions','field_61767b68eb8bd'),(342753,42674,'blocks_22_split_5050_content',''),(342754,42674,'_blocks_22_split_5050_content','field_61767afceb8ba'),(342755,42674,'blocks_23_acfe_flexible_toggle',''),(342756,42674,'_blocks_23_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(342757,42674,'blocks_23_acfe_flexible_layout_title','Promo Panel'),(342758,42674,'_blocks_23_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(342759,42674,'blocks_23_options_alignment','center'),(342760,42674,'_blocks_23_options_alignment','field_61769449f5490'),(342761,42674,'blocks_23_options',''),(342762,42674,'_blocks_23_options','field_617693e1428f0'),(342763,42674,'blocks_23_promo_panel_image','41307'),(342764,42674,'_blocks_23_promo_panel_image','field_617693e1428f3'),(342765,42674,'blocks_23_promo_panel_content_heading','Want to Get Started?'),(342766,42674,'_blocks_23_promo_panel_content_heading','field_617693e1428f6'),(342767,42674,'blocks_23_promo_panel_content_text','Would you like help finding a biomechanics course tailored to your career goals? Get in touch to explore your options and take the next step in your biomechanics journey.'),(342768,42674,'_blocks_23_promo_panel_content_text','field_617693e1428f7'),(342769,42674,'blocks_23_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(342770,42674,'_blocks_23_promo_panel_content_actions_0_button','field_617693e1428f9'),(342771,42674,'blocks_23_promo_panel_content_actions','1'),(342772,42674,'_blocks_23_promo_panel_content_actions','field_617693e1428f8'),(342773,42674,'blocks_23_promo_panel_content',''),(342774,42674,'_blocks_23_promo_panel_content','field_617693e1428f4'),(342775,42635,'blocks_0_link_stack_6_label','7.'),(342776,42635,'_blocks_0_link_stack_6_label','field_6177b80900d00'),(342777,42635,'blocks_0_link_stack_6_title','Assess Tutor Expertise and Industry Connections'),(342778,42635,'_blocks_0_link_stack_6_title','field_6177b80f00d01'),(342779,42635,'blocks_0_link_stack_6_url','#tutor-expertise'),(342780,42635,'_blocks_0_link_stack_6_url','field_6177b82200d02'),(342781,42635,'blocks_0_link_stack_7_label','8.'),(342782,42635,'_blocks_0_link_stack_7_label','field_6177b80900d00'),(342783,42635,'blocks_0_link_stack_7_title','Compare Costs, Payment & Finance Options'),(342784,42635,'_blocks_0_link_stack_7_title','field_6177b80f00d01'),(342785,42635,'blocks_0_link_stack_7_url','#costs-and-payment'),(342786,42635,'_blocks_0_link_stack_7_url','field_6177b82200d02'),(342787,42635,'blocks_0_link_stack_8_label','9.'),(342788,42635,'_blocks_0_link_stack_8_label','field_6177b80900d00'),(342789,42635,'blocks_0_link_stack_8_title','Conclusion'),(342790,42635,'_blocks_0_link_stack_8_title','field_6177b80f00d01'),(342791,42635,'blocks_0_link_stack_8_url','#conclusion'),(342792,42635,'_blocks_0_link_stack_8_url','field_6177b82200d02'),(342793,42675,'hide_hero','0'),(342794,42675,'_hide_hero','field_66a2380fcda39'),(342795,42675,'hero_title',''),(342796,42675,'_hero_title','field_617571fe285e8'),(342797,42675,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(342798,42675,'_hero_text','field_6175723c285e9'),(342799,42675,'hero_actions',''),(342800,42675,'_hero_actions','field_61757270285ea'),(342801,42675,'hero_style','default'),(342802,42675,'_hero_style','field_62051d9dc5324'),(342803,42675,'hero_image_pos_x','right'),(342804,42675,'_hero_image_pos_x','field_62ec3d05390bb'),(342805,42675,'hero_image_pos_y','top'),(342806,42675,'_hero_image_pos_y','field_62ec3d05390bc'),(342807,42675,'hero_image_pos',''),(342808,42675,'_hero_image_pos','field_62ec3d05390ba'),(342809,42675,'fft_hide_from_listings','0'),(342810,42675,'_fft_hide_from_listings','field_61f1320446ab2'),(342811,42675,'post_format','402'),(342812,42675,'_post_format','field_61756bfb51898'),(342813,42675,'post_author',''),(342814,42675,'_post_author','field_62ec389d22113'),(342815,42675,'post_reviewer',''),(342816,42675,'_post_reviewer','field_627140a2a9800'),(342817,42675,'post_table_of_contents','0'),(342818,42675,'_post_table_of_contents','field_65c503bc846a6'),(342819,42675,'blocks','a:24:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:13:\"step_timeline\";i:16;s:10:\"text_block\";i:17;s:10:\"split_5050\";i:18;s:10:\"split_5050\";i:19;s:10:\"split_5050\";i:20;s:10:\"text_block\";i:21;s:5:\"icons\";i:22;s:10:\"split_5050\";i:23;s:11:\"promo_panel\";}'),(342820,42675,'_blocks','field_6176696113096'),(342821,42675,'_thumbnail_id','40618'),(342822,42675,'__thumbnail_id','field_617570855ddaf'),(342823,42675,'blocks_0_acfe_flexible_toggle',''),(342824,42675,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(342825,42675,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(342826,42675,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(342827,42675,'blocks_0_options_theme','#ffffff'),(342828,42675,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(342829,42675,'blocks_0_options',''),(342830,42675,'_blocks_0_options','field_6177b758246ae'),(342831,42675,'blocks_0_link_stack_content_title',''),(342832,42675,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(342833,42675,'blocks_0_link_stack_content_heading','Introduction'),(342834,42675,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(342835,42675,'blocks_0_link_stack_content_text','This guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(342836,42675,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(342837,42675,'blocks_0_link_stack_content_actions_0_button',''),(342838,42675,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(342839,42675,'blocks_0_link_stack_content_actions','1'),(342840,42675,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(342841,42675,'blocks_0_link_stack_content',''),(342842,42675,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(342843,42675,'blocks_0_link_stack_0_label','1.'),(342844,42675,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(342845,42675,'blocks_0_link_stack_0_title','Overview'),(342846,42675,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(342847,42675,'blocks_0_link_stack_0_url','#overview'),(342848,42675,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(342849,42675,'blocks_0_link_stack_1_label','2.'),(342850,42675,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(342851,42675,'blocks_0_link_stack_1_title','Define Your Career Goals'),(342852,42675,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(342853,42675,'blocks_0_link_stack_1_url','#define-your-career-goals'),(342854,42675,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(342855,42675,'blocks_0_link_stack_2_label','3.'),(342856,42675,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(342857,42675,'blocks_0_link_stack_2_title','Evaluate Course Content'),(342858,42675,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(342859,42675,'blocks_0_link_stack_2_url','#evaluate-course-content'),(342860,42675,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(342861,42675,'blocks_0_link_stack_3_label','4.'),(342862,42675,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(342863,42675,'blocks_0_link_stack_3_title','Accreditation and Recognition'),(342864,42675,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(342865,42675,'blocks_0_link_stack_3_url','#accreditation-and-recognition'),(342866,42675,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(342867,42675,'blocks_0_link_stack_4_label','5.'),(342868,42675,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(342869,42675,'blocks_0_link_stack_4_title','Experience & Opportunities'),(342870,42675,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(342871,42675,'blocks_0_link_stack_4_url','#experience-and-opportunities'),(342872,42675,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(342873,42675,'blocks_0_link_stack_5_label','6.'),(342874,42675,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(342875,42675,'blocks_0_link_stack_5_title','Evaluate Course Format and Flexibility'),(342876,42675,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(342877,42675,'blocks_0_link_stack_5_url','#course-format'),(342878,42675,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(342879,42675,'blocks_0_link_stack','9'),(342880,42675,'_blocks_0_link_stack','field_6177b7f600cff'),(342881,42675,'blocks_1_acfe_flexible_toggle',''),(342882,42675,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342883,42675,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(342884,42675,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342885,42675,'blocks_1_options_theme','#f5f5f5'),(342886,42675,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(342887,42675,'blocks_1_options_reverse','0'),(342888,42675,'_blocks_1_options_reverse','field_61768049bb8ac'),(342889,42675,'blocks_1_options',''),(342890,42675,'_blocks_1_options','field_617682517c334'),(342891,42675,'blocks_1_split_5050_image','40615'),(342892,42675,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(342893,42675,'blocks_1_split_5050_video',''),(342894,42675,'_blocks_1_split_5050_video','field_6239f3160848a'),(342895,42675,'blocks_1_split_5050_content_title',''),(342896,42675,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(342897,42675,'blocks_1_split_5050_content_heading','Overview'),(342898,42675,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(342899,42675,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(342900,42675,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(342901,42675,'blocks_1_split_5050_content_actions',''),(342902,42675,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(342903,42675,'blocks_1_split_5050_content',''),(342904,42675,'_blocks_1_split_5050_content','field_61767afceb8ba'),(342905,42675,'blocks_3_acfe_flexible_toggle',''),(342906,42675,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342907,42675,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(342908,42675,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342909,42675,'blocks_3_options_theme','#ffffff'),(342910,42675,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(342911,42675,'blocks_3_options_reverse','1'),(342912,42675,'_blocks_3_options_reverse','field_61768049bb8ac'),(342913,42675,'blocks_3_options','');
INSERT INTO `6m7_postmeta` VALUES (342914,42675,'_blocks_3_options','field_617682517c334'),(342915,42675,'blocks_3_split_5050_image','41542'),(342916,42675,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(342917,42675,'blocks_3_split_5050_video',''),(342918,42675,'_blocks_3_split_5050_video','field_6239f3160848a'),(342919,42675,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(342920,42675,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(342921,42675,'blocks_3_split_5050_content_heading',''),(342922,42675,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(342923,42675,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(342924,42675,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(342925,42675,'blocks_3_split_5050_content_actions',''),(342926,42675,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(342927,42675,'blocks_3_split_5050_content',''),(342928,42675,'_blocks_3_split_5050_content','field_61767afceb8ba'),(342929,42675,'blocks_13_acfe_flexible_toggle',''),(342930,42675,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342931,42675,'blocks_13_acfe_flexible_layout_title','Opportunities (3)'),(342932,42675,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342933,42675,'blocks_13_options_theme','#ffffff'),(342934,42675,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(342935,42675,'blocks_13_options_reverse','0'),(342936,42675,'_blocks_13_options_reverse','field_61768049bb8ac'),(342937,42675,'blocks_13_options',''),(342938,42675,'_blocks_13_options','field_617682517c334'),(342939,42675,'blocks_13_split_5050_image','18856'),(342940,42675,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(342941,42675,'blocks_13_split_5050_video',''),(342942,42675,'_blocks_13_split_5050_video','field_6239f3160848a'),(342943,42675,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(342944,42675,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(342945,42675,'blocks_13_split_5050_content_heading',''),(342946,42675,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(342947,42675,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(342948,42675,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(342949,42675,'blocks_13_split_5050_content_actions',''),(342950,42675,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(342951,42675,'blocks_13_split_5050_content',''),(342952,42675,'_blocks_13_split_5050_content','field_61767afceb8ba'),(342953,42675,'blocks_6_acfe_flexible_toggle',''),(342954,42675,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342955,42675,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(342956,42675,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342957,42675,'blocks_6_options_theme','#ffffff'),(342958,42675,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(342959,42675,'blocks_6_options_reverse','1'),(342960,42675,'_blocks_6_options_reverse','field_61768049bb8ac'),(342961,42675,'blocks_6_options',''),(342962,42675,'_blocks_6_options','field_617682517c334'),(342963,42675,'blocks_6_split_5050_image','41502'),(342964,42675,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(342965,42675,'blocks_6_split_5050_video',''),(342966,42675,'_blocks_6_split_5050_video','field_6239f3160848a'),(342967,42675,'blocks_6_split_5050_content_title','Research & Academia'),(342968,42675,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(342969,42675,'blocks_6_split_5050_content_heading',''),(342970,42675,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(342971,42675,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(342972,42675,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(342973,42675,'blocks_6_split_5050_content_actions',''),(342974,42675,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(342975,42675,'blocks_6_split_5050_content',''),(342976,42675,'_blocks_6_split_5050_content','field_61767afceb8ba'),(342977,42675,'blocks_5_acfe_flexible_toggle',''),(342978,42675,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(342979,42675,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(342980,42675,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(342981,42675,'blocks_5_options_theme','#ffffff'),(342982,42675,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(342983,42675,'blocks_5_options_reverse','1'),(342984,42675,'_blocks_5_options_reverse','field_61768049bb8ac'),(342985,42675,'blocks_5_options',''),(342986,42675,'_blocks_5_options','field_617682517c334'),(342987,42675,'blocks_5_split_5050_image','41539'),(342988,42675,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(342989,42675,'blocks_5_split_5050_video',''),(342990,42675,'_blocks_5_split_5050_video','field_6239f3160848a'),(342991,42675,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(342992,42675,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(342993,42675,'blocks_5_split_5050_content_heading',''),(342994,42675,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(342995,42675,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(342996,42675,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(342997,42675,'blocks_5_split_5050_content_actions',''),(342998,42675,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(342999,42675,'blocks_5_split_5050_content',''),(343000,42675,'_blocks_5_split_5050_content','field_61767afceb8ba'),(343001,42675,'blocks_14_acfe_flexible_toggle',''),(343002,42675,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343003,42675,'blocks_14_acfe_flexible_layout_title','Opportunities (4)'),(343004,42675,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343005,42675,'blocks_14_options_theme','#ffffff'),(343006,42675,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(343007,42675,'blocks_14_options_reverse','0'),(343008,42675,'_blocks_14_options_reverse','field_61768049bb8ac'),(343009,42675,'blocks_14_options',''),(343010,42675,'_blocks_14_options','field_617682517c334'),(343011,42675,'blocks_14_split_5050_image','41490'),(343012,42675,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(343013,42675,'blocks_14_split_5050_video',''),(343014,42675,'_blocks_14_split_5050_video','field_6239f3160848a'),(343015,42675,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(343016,42675,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(343017,42675,'blocks_14_split_5050_content_heading',''),(343018,42675,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(343019,42675,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(343020,42675,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(343021,42675,'blocks_14_split_5050_content_actions',''),(343022,42675,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(343023,42675,'blocks_14_split_5050_content',''),(343024,42675,'_blocks_14_split_5050_content','field_61767afceb8ba'),(343025,42675,'blocks_20_acfe_flexible_toggle',''),(343026,42675,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(343027,42675,'blocks_20_acfe_flexible_layout_title','Costs and Payment[anchor]'),(343028,42675,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(343029,42675,'blocks_20_options_theme','#b61234'),(343030,42675,'_blocks_20_options_theme','field_6176830e2ad17'),(343031,42675,'blocks_20_options',''),(343032,42675,'_blocks_20_options','field_6176830e2ad16'),(343033,42675,'blocks_20_text_block_heading','Compare Costs, Payment & Finance Options'),(343034,42675,'_blocks_20_text_block_heading','field_617669d413097'),(343035,42675,'blocks_20_text_block_content','Biomechanics courses can vary significantly in cost, depending on factors such as course level, institution, and delivery format. While investing in your education is important, it’s equally essential to choose a course that provides good value for money and aligns with your career goals. Understanding the financial commitment involved and exploring available funding options can help you make an informed decision without unnecessary financial strain.'),(343036,42675,'_blocks_20_text_block_content','field_617669ec13098'),(343037,42675,'blocks_10_acfe_flexible_toggle',''),(343038,42675,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(343039,42675,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(343040,42675,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(343041,42675,'blocks_10_options_theme','#ffffff'),(343042,42675,'_blocks_10_options_theme','field_6176830e2ad17'),(343043,42675,'blocks_10_options',''),(343044,42675,'_blocks_10_options','field_6176830e2ad16'),(343045,42675,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(343046,42675,'_blocks_10_text_block_heading','field_617669d413097'),(343047,42675,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(343048,42675,'_blocks_10_text_block_content','field_617669ec13098'),(343049,42675,'blocks_2_acfe_flexible_toggle',''),(343050,42675,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(343051,42675,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(343052,42675,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(343053,42675,'blocks_2_options_theme','#ffffff'),(343054,42675,'_blocks_2_options_theme','field_6176830e2ad17'),(343055,42675,'blocks_2_options',''),(343056,42675,'_blocks_2_options','field_6176830e2ad16'),(343057,42675,'blocks_2_text_block_heading','Define Your Career Goals'),(343058,42675,'_blocks_2_text_block_heading','field_617669d413097'),(343059,42675,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(343060,42675,'_blocks_2_text_block_content','field_617669ec13098'),(343061,42675,'blocks_4_acfe_flexible_toggle',''),(343062,42675,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343063,42675,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(343064,42675,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343065,42675,'blocks_4_options_theme','#ffffff'),(343066,42675,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(343067,42675,'blocks_4_options_reverse','1'),(343068,42675,'_blocks_4_options_reverse','field_61768049bb8ac'),(343069,42675,'blocks_4_options',''),(343070,42675,'_blocks_4_options','field_617682517c334'),(343071,42675,'blocks_4_split_5050_image','41505'),(343072,42675,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(343073,42675,'blocks_4_split_5050_video',''),(343074,42675,'_blocks_4_split_5050_video','field_6239f3160848a'),(343075,42675,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(343076,42675,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(343077,42675,'blocks_4_split_5050_content_heading',''),(343078,42675,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(343079,42675,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(343080,42675,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(343081,42675,'blocks_4_split_5050_content_actions',''),(343082,42675,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(343083,42675,'blocks_4_split_5050_content',''),(343084,42675,'_blocks_4_split_5050_content','field_61767afceb8ba'),(343085,42675,'blocks_7_acfe_flexible_toggle',''),(343086,42675,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(343087,42675,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(343088,42675,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(343089,42675,'blocks_7_options_theme','#f5f5f5'),(343090,42675,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(343091,42675,'blocks_7_options_state','0'),(343092,42675,'_blocks_7_options_state','field_6239fcb7508c5'),(343093,42675,'blocks_7_options',''),(343094,42675,'_blocks_7_options','field_6177e2991ac44'),(343095,42675,'blocks_7_content_title',''),(343096,42675,'_blocks_7_content_title','field_64d237e8bb1e2'),(343097,42675,'blocks_7_content_heading','Evaluate Course Content'),(343098,42675,'_blocks_7_content_heading','field_64d237e8bb1e3'),(343099,42675,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(343100,42675,'_blocks_7_content_text','field_64d237e8bb1e4'),(343101,42675,'blocks_7_content_actions',''),(343102,42675,'_blocks_7_content_actions','field_64d237e8bb1e5'),(343103,42675,'blocks_7_content_align','left'),(343104,42675,'_blocks_7_content_align','field_64d2443e6b6aa'),(343105,42675,'blocks_7_content',''),(343106,42675,'_blocks_7_content','field_64d237e8bb1e1'),(343107,42675,'blocks_7_accordion_content','custom'),(343108,42675,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(343109,42675,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(343110,42675,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(343111,42675,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(343112,42675,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(343113,42675,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(343114,42675,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(343115,42675,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(343116,42675,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(343117,42675,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(343118,42675,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(343119,42675,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(343120,42675,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(343121,42675,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(343122,42675,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(343123,42675,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(343124,42675,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(343125,42675,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(343126,42675,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(343127,42675,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(343128,42675,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(343129,42675,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(343130,42675,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(343131,42675,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(343132,42675,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(343133,42675,'blocks_7_accordion_items','6'),(343134,42675,'_blocks_7_accordion_items','field_6177e2991ac4c'),(343135,42675,'blocks_7_actions',''),(343136,42675,'_blocks_7_actions','field_61a746a817f7a'),(343137,42675,'blocks_8_acfe_flexible_toggle',''),(343138,42675,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(343139,42675,'blocks_8_acfe_flexible_layout_title','Accreditation and Recognition[anchor]'),(343140,42675,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(343141,42675,'blocks_8_options_theme','#b61234'),(343142,42675,'_blocks_8_options_theme','field_6176830e2ad17'),(343143,42675,'blocks_8_options',''),(343144,42675,'_blocks_8_options','field_6176830e2ad16'),(343145,42675,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(343146,42675,'_blocks_8_text_block_heading','field_617669d413097'),(343147,42675,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(343148,42675,'_blocks_8_text_block_content','field_617669ec13098'),(343149,42675,'blocks_9_acfe_flexible_toggle',''),(343150,42675,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(343151,42675,'blocks_9_acfe_flexible_layout_title','Icons'),(343152,42675,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(343153,42675,'blocks_9_options_theme','#b61234'),(343154,42675,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(343155,42675,'blocks_9_options_format','row'),(343156,42675,'_blocks_9_options_format','field_64bfde9a90690'),(343157,42675,'blocks_9_options',''),(343158,42675,'_blocks_9_options','field_64bfdd9b90684'),(343159,42675,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(343160,42675,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(343161,42675,'blocks_9_icon_row_items_0_label','Industry Recognition'),(343162,42675,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(343163,42675,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(343164,42675,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(343165,42675,'blocks_9_icon_row_items_1_icon','qualification.svg'),(343166,42675,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(343167,42675,'blocks_9_icon_row_items_1_label','University Accreditation'),(343168,42675,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(343169,42675,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(343170,42675,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(343171,42675,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(343172,42675,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(343173,42675,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(343174,42675,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(343175,42675,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(343176,42675,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(343177,42675,'blocks_9_icon_row_items','3'),(343178,42675,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(343179,42675,'blocks_11_acfe_flexible_toggle',''),(343180,42675,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343181,42675,'blocks_11_acfe_flexible_layout_title','Opportunities (1) '),(343182,42675,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343183,42675,'blocks_11_options_theme','#ffffff'),(343184,42675,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(343185,42675,'blocks_11_options_reverse','0'),(343186,42675,'_blocks_11_options_reverse','field_61768049bb8ac'),(343187,42675,'blocks_11_options',''),(343188,42675,'_blocks_11_options','field_617682517c334'),(343189,42675,'blocks_11_split_5050_image','41498'),(343190,42675,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(343191,42675,'blocks_11_split_5050_video',''),(343192,42675,'_blocks_11_split_5050_video','field_6239f3160848a'),(343193,42675,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(343194,42675,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(343195,42675,'blocks_11_split_5050_content_heading',''),(343196,42675,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(343197,42675,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(343198,42675,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(343199,42675,'blocks_11_split_5050_content_actions',''),(343200,42675,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(343201,42675,'blocks_11_split_5050_content',''),(343202,42675,'_blocks_11_split_5050_content','field_61767afceb8ba'),(343203,42675,'blocks_12_acfe_flexible_toggle',''),(343204,42675,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343205,42675,'blocks_12_acfe_flexible_layout_title','Opportunities (2)'),(343206,42675,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343207,42675,'blocks_12_options_theme','#ffffff'),(343208,42675,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(343209,42675,'blocks_12_options_reverse','0'),(343210,42675,'_blocks_12_options_reverse','field_61768049bb8ac'),(343211,42675,'blocks_12_options',''),(343212,42675,'_blocks_12_options','field_617682517c334'),(343213,42675,'blocks_12_split_5050_image','40387'),(343214,42675,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(343215,42675,'blocks_12_split_5050_video',''),(343216,42675,'_blocks_12_split_5050_video','field_6239f3160848a'),(343217,42675,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(343218,42675,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(343219,42675,'blocks_12_split_5050_content_heading',''),(343220,42675,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(343221,42675,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(343222,42675,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(343223,42675,'blocks_12_split_5050_content_actions',''),(343224,42675,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(343225,42675,'blocks_12_split_5050_content',''),(343226,42675,'_blocks_12_split_5050_content','field_61767afceb8ba'),(343227,42675,'blocks_17_acfe_flexible_toggle',''),(343228,42675,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343229,42675,'blocks_17_acfe_flexible_layout_title','Experienced Training Providers'),(343230,42675,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343231,42675,'blocks_17_options_theme','#ffffff'),(343232,42675,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(343233,42675,'blocks_17_options_reverse','1'),(343234,42675,'_blocks_17_options_reverse','field_61768049bb8ac'),(343235,42675,'blocks_17_options',''),(343236,42675,'_blocks_17_options','field_617682517c334'),(343237,42675,'blocks_17_split_5050_image','41498'),(343238,42675,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(343239,42675,'blocks_17_split_5050_video',''),(343240,42675,'_blocks_17_split_5050_video','field_6239f3160848a'),(343241,42675,'blocks_17_split_5050_content_title','Experienced Training Providers'),(343242,42675,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(343243,42675,'blocks_17_split_5050_content_heading',''),(343244,42675,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(343245,42675,'blocks_17_split_5050_content_text','Tutors with extensive experience in biomechanics bring real-world insights to the classroom, bridging the gap between theory and practice. Look for instructors with backgrounds in academia, professional sports, rehabilitation, or biomechanics research, as their expertise can enhance the learning experience.'),(343246,42675,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(343247,42675,'blocks_17_split_5050_content_actions',''),(343248,42675,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(343249,42675,'blocks_17_split_5050_content',''),(343250,42675,'_blocks_17_split_5050_content','field_61767afceb8ba'),(343251,42675,'blocks_15_acfe_flexible_toggle',''),(343252,42675,'_blocks_15_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(343253,42675,'blocks_15_acfe_flexible_layout_title','Course Format[anchor]'),(343254,42675,'_blocks_15_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(343255,42675,'blocks_15_options_theme','#f5f5f5'),(343256,42675,'_blocks_15_options_theme','field_6177de53d1196_field_6176830e2ad17'),(343257,42675,'blocks_15_options',''),(343258,42675,'_blocks_15_options','field_6177de53d1195'),(343259,42675,'blocks_15_timeline_content_title',''),(343260,42675,'_blocks_15_timeline_content_title','field_6177de53d1198'),(343261,42675,'blocks_15_timeline_content_heading','Evaluate Course Format and Flexibility'),(343262,42675,'_blocks_15_timeline_content_heading','field_6177de53d1199'),(343263,42675,'blocks_15_timeline_content_text','Biomechanics courses can vary in structure, offering different formats to accommodate students with varying schedules, learning preferences, and career commitments. Whether you’re looking for a full-time degree, a part-time professional development course, or an online programme that fits around your work, understanding the course format is essential in making the right choice. A well-structured course should provide a balance of flexibility and practical engagement, ensuring you gain the knowledge and hands-on experience needed for your career.\r\n\r\nWhen considering a biomechanics course, think about how the course format aligns with your lifestyle and career ambitions. Below are some key factors to evaluate when selecting the right learning structure.'),(343264,42675,'_blocks_15_timeline_content_text','field_6177de53d119a'),(343265,42675,'blocks_15_timeline_content_actions',''),(343266,42675,'_blocks_15_timeline_content_actions','field_6177de53d119b'),(343267,42675,'blocks_15_timeline_content',''),(343268,42675,'_blocks_15_timeline_content','field_6177de53d1197'),(343269,42675,'blocks_15_timeline_items_0_title','Full-Time vs. Part-Time Study'),(343270,42675,'_blocks_15_timeline_items_0_title','field_6177de53d119f'),(343271,42675,'blocks_15_timeline_items_0_text','Full-time biomechanics courses offer an immersive learning experience, allowing students to complete their qualifications more quickly. However, part-time courses can be beneficial for those who are already working in the field and want to upskill while maintaining their job. Choosing between these options depends on your availability, learning pace, and career progression plans.'),(343272,42675,'_blocks_15_timeline_items_0_text','field_6177de53d11a0'),(343273,42675,'blocks_15_timeline_items_1_title','Online, In-Person, and Hybrid Learning'),(343274,42675,'_blocks_15_timeline_items_1_title','field_6177de53d119f'),(343275,42675,'blocks_15_timeline_items_1_text','While some biomechanics courses are delivered entirely in-person, others incorporate online modules to provide greater flexibility. Online learning can be useful for covering theoretical concepts, but biomechanics is a highly practical subject, meaning hybrid programmes that include both online theory and in-person practical sessions can be the most effective for building applied skills.'),(343276,42675,'_blocks_15_timeline_items_1_text','field_6177de53d11a0'),(343277,42675,'blocks_15_timeline_items_2_title','Degree Level and Course Duration'),(343278,42675,'_blocks_15_timeline_items_2_title','field_6177de53d119f'),(343279,42675,'blocks_15_timeline_items_2_text','Depending on your career goals, you may need to choose between a short biomechanics certification, a diploma, or a full degree (BSc, MSc, or PhD). Short courses and diplomas are useful for professionals looking to specialise or upskill, while degree-level courses provide a more in-depth understanding of biomechanics, research methods, and applied movement science.'),(343280,42675,'_blocks_15_timeline_items_2_text','field_6177de53d11a0'),(343281,42675,'blocks_15_timeline_items','3'),(343282,42675,'_blocks_15_timeline_items','field_6177de53d119d'),(343283,42675,'blocks_16_acfe_flexible_toggle',''),(343284,42675,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(343285,42675,'blocks_16_acfe_flexible_layout_title','Tutor Expertise[anchor] '),(343286,42675,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(343287,42675,'blocks_16_options_theme','#ffffff'),(343288,42675,'_blocks_16_options_theme','field_6176830e2ad17'),(343289,42675,'blocks_16_options',''),(343290,42675,'_blocks_16_options','field_6176830e2ad16'),(343291,42675,'blocks_16_text_block_heading','Assess Tutor Expertise and Industry Connections'),(343292,42675,'_blocks_16_text_block_heading','field_617669d413097'),(343293,42675,'blocks_16_text_block_content','The quality of a biomechanics course is not just determined by its content but also by the expertise of the tutors delivering it and the industry connections it provides. Learning from experienced professionals with strong backgrounds in biomechanics, sports science, rehabilitation, or engineering ensures that you receive relevant, up-to-date knowledge that aligns with industry standards. Additionally, courses with strong industry links can open doors to valuable networking opportunities, mentorship, and potential career placements.\r\n\r\nWhen evaluating a biomechanics course, consider the credibility of the teaching staff and the programme’s industry connections. Below are key factors to assess.'),(343294,42675,'_blocks_16_text_block_content','field_617669ec13098'),(343295,42675,'blocks_18_acfe_flexible_toggle',''),(343296,42675,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343297,42675,'blocks_18_acfe_flexible_layout_title','Industry Collaborations and Professional Networks'),(343298,42675,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343299,42675,'blocks_18_options_theme','#ffffff'),(343300,42675,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(343301,42675,'blocks_18_options_reverse','1'),(343302,42675,'_blocks_18_options_reverse','field_61768049bb8ac'),(343303,42675,'blocks_18_options',''),(343304,42675,'_blocks_18_options','field_617682517c334'),(343305,42675,'blocks_18_split_5050_image','41498'),(343306,42675,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(343307,42675,'blocks_18_split_5050_video',''),(343308,42675,'_blocks_18_split_5050_video','field_6239f3160848a'),(343309,42675,'blocks_18_split_5050_content_title','Industry Collaborations and Professional Networks'),(343310,42675,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(343311,42675,'blocks_18_split_5050_content_heading',''),(343312,42675,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(343313,42675,'blocks_18_split_5050_content_text','Courses that have partnerships with sports teams, healthcare organisations, universities, or biomechanics companies provide students with access to industry professionals and potential career opportunities. These collaborations can also lead to internships, research projects, or direct job placements after completing the course.'),(343314,42675,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(343315,42675,'blocks_18_split_5050_content_actions',''),(343316,42675,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(343317,42675,'blocks_18_split_5050_content',''),(343318,42675,'_blocks_18_split_5050_content','field_61767afceb8ba'),(343319,42675,'blocks_19_acfe_flexible_toggle',''),(343320,42675,'_blocks_19_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343321,42675,'blocks_19_acfe_flexible_layout_title','Graduate Success and Alumni Network'),(343322,42675,'_blocks_19_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343323,42675,'blocks_19_options_theme','#ffffff'),(343324,42675,'_blocks_19_options_theme','field_617682847c335_field_6176830e2ad17'),(343325,42675,'blocks_19_options_reverse','1'),(343326,42675,'_blocks_19_options_reverse','field_61768049bb8ac'),(343327,42675,'blocks_19_options',''),(343328,42675,'_blocks_19_options','field_617682517c334'),(343329,42675,'blocks_19_split_5050_image','41498'),(343330,42675,'_blocks_19_split_5050_image','field_6239f527a0c3a'),(343331,42675,'blocks_19_split_5050_video',''),(343332,42675,'_blocks_19_split_5050_video','field_6239f3160848a'),(343333,42675,'blocks_19_split_5050_content_title','Graduate Success and Alumni Network'),(343334,42675,'_blocks_19_split_5050_content_title','field_61767bfca3fc0'),(343335,42675,'blocks_19_split_5050_content_heading',''),(343336,42675,'_blocks_19_split_5050_content_heading','field_61767b26eb8bb'),(343337,42675,'blocks_19_split_5050_content_text','A strong alumni network and positive graduate success stories indicate the effectiveness of a biomechanics course. Research where previous students have progressed in their careers, as this can provide insight into the opportunities available after completing the programme.'),(343338,42675,'_blocks_19_split_5050_content_text','field_61767b3beb8bc'),(343339,42675,'blocks_19_split_5050_content_actions',''),(343340,42675,'_blocks_19_split_5050_content_actions','field_61767b68eb8bd'),(343341,42675,'blocks_19_split_5050_content',''),(343342,42675,'_blocks_19_split_5050_content','field_61767afceb8ba'),(343343,42675,'blocks_21_acfe_flexible_toggle',''),(343344,42675,'_blocks_21_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(343345,42675,'blocks_21_acfe_flexible_layout_title','Icons - Costs and Payment'),(343346,42675,'_blocks_21_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(343347,42675,'blocks_21_options_theme','#b61234'),(343348,42675,'_blocks_21_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(343349,42675,'blocks_21_options_format','row'),(343350,42675,'_blocks_21_options_format','field_64bfde9a90690'),(343351,42675,'blocks_21_options',''),(343352,42675,'_blocks_21_options','field_64bfdd9b90684'),(343353,42675,'blocks_21_icon_row_items_0_icon','payment-plans.svg'),(343354,42675,'_blocks_21_icon_row_items_0_icon','field_64bfdd9b9068d'),(343355,42675,'blocks_21_icon_row_items_0_label','Course Costs'),(343356,42675,'_blocks_21_icon_row_items_0_label','field_64bfdd9c9068e'),(343357,42675,'blocks_21_icon_row_items_0_text','Compare costs across providers to find an option that fits your budget.'),(343358,42675,'_blocks_21_icon_row_items_0_text','field_64bfdd9c9068f'),(343359,42675,'blocks_21_icon_row_items_1_icon','start-earning-in.svg'),(343360,42675,'_blocks_21_icon_row_items_1_icon','field_64bfdd9b9068d'),(343361,42675,'blocks_21_icon_row_items_1_label','Grants'),(343362,42675,'_blocks_21_icon_row_items_1_label','field_64bfdd9c9068e'),(343363,42675,'blocks_21_icon_row_items_1_text','Some universities may offer financial aid for biomechanics students, especially in research-intensive programmes.'),(343364,42675,'_blocks_21_icon_row_items_1_text','field_64bfdd9c9068f'),(343365,42675,'blocks_21_icon_row_items_2_icon','return-on-investment-1.svg'),(343366,42675,'_blocks_21_icon_row_items_2_icon','field_64bfdd9b9068d'),(343367,42675,'blocks_21_icon_row_items_2_label','Return on Investment'),(343368,42675,'_blocks_21_icon_row_items_2_label','field_64bfdd9c9068e'),(343369,42675,'blocks_21_icon_row_items_2_text','Consider the earning potential in your chosen biomechanics career and whether the programme justifies the cost.'),(343370,42675,'_blocks_21_icon_row_items_2_text','field_64bfdd9c9068f'),(343371,42675,'blocks_21_icon_row_items','3'),(343372,42675,'_blocks_21_icon_row_items','field_64bfdd9b9068c'),(343373,42675,'blocks_22_acfe_flexible_toggle',''),(343374,42675,'_blocks_22_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343375,42675,'blocks_22_acfe_flexible_layout_title','Conclusion[anchor]'),(343376,42675,'_blocks_22_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343377,42675,'blocks_22_options_theme','#ffffff'),(343378,42675,'_blocks_22_options_theme','field_617682847c335_field_6176830e2ad17'),(343379,42675,'blocks_22_options_reverse','1'),(343380,42675,'_blocks_22_options_reverse','field_61768049bb8ac'),(343381,42675,'blocks_22_options',''),(343382,42675,'_blocks_22_options','field_617682517c334'),(343383,42675,'blocks_22_split_5050_image','41501'),(343384,42675,'_blocks_22_split_5050_image','field_6239f527a0c3a'),(343385,42675,'blocks_22_split_5050_video',''),(343386,42675,'_blocks_22_split_5050_video','field_6239f3160848a'),(343387,42675,'blocks_22_split_5050_content_title',''),(343388,42675,'_blocks_22_split_5050_content_title','field_61767bfca3fc0'),(343389,42675,'blocks_22_split_5050_content_heading','Final Thoughts'),(343390,42675,'_blocks_22_split_5050_content_heading','field_61767b26eb8bb'),(343391,42675,'blocks_22_split_5050_content_text','Choosing the right biomechanics course is a key step in shaping your career and expanding your expertise in human movement. With so many options available, it’s important to take the time to evaluate courses based on your career goals, the content they offer, accreditation, practical learning opportunities, and industry connections. A well-structured course should provide both theoretical knowledge and hands-on experience, ensuring that you develop the skills needed to apply biomechanics effectively in your chosen field.\r\n\r\nBy considering factors such as course format, tutor expertise, financial investment, and long-term career prospects, you can make an informed decision that aligns with your aspirations. Take the time to research programmes, speak with faculty or alumni, and explore available learning pathways to find the biomechanics course that best supports your professional development.'),(343392,42675,'_blocks_22_split_5050_content_text','field_61767b3beb8bc'),(343393,42675,'blocks_22_split_5050_content_actions',''),(343394,42675,'_blocks_22_split_5050_content_actions','field_61767b68eb8bd'),(343395,42675,'blocks_22_split_5050_content',''),(343396,42675,'_blocks_22_split_5050_content','field_61767afceb8ba'),(343397,42675,'blocks_23_acfe_flexible_toggle',''),(343398,42675,'_blocks_23_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(343399,42675,'blocks_23_acfe_flexible_layout_title','Promo Panel'),(343400,42675,'_blocks_23_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(343401,42675,'blocks_23_options_alignment','center'),(343402,42675,'_blocks_23_options_alignment','field_61769449f5490'),(343403,42675,'blocks_23_options',''),(343404,42675,'_blocks_23_options','field_617693e1428f0'),(343405,42675,'blocks_23_promo_panel_image','41307'),(343406,42675,'_blocks_23_promo_panel_image','field_617693e1428f3'),(343407,42675,'blocks_23_promo_panel_content_heading','Want to Get Started?'),(343408,42675,'_blocks_23_promo_panel_content_heading','field_617693e1428f6'),(343409,42675,'blocks_23_promo_panel_content_text','Would you like help finding a biomechanics course tailored to your career goals? Get in touch to explore your options and take the next step in your biomechanics journey.'),(343410,42675,'_blocks_23_promo_panel_content_text','field_617693e1428f7'),(343411,42675,'blocks_23_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(343412,42675,'_blocks_23_promo_panel_content_actions_0_button','field_617693e1428f9'),(343413,42675,'blocks_23_promo_panel_content_actions','1'),(343414,42675,'_blocks_23_promo_panel_content_actions','field_617693e1428f8'),(343415,42675,'blocks_23_promo_panel_content',''),(343416,42675,'_blocks_23_promo_panel_content','field_617693e1428f4'),(343417,42675,'blocks_0_link_stack_6_label','7.'),(343418,42675,'_blocks_0_link_stack_6_label','field_6177b80900d00'),(343419,42675,'blocks_0_link_stack_6_title','Assess Tutor Expertise and Industry Connections'),(343420,42675,'_blocks_0_link_stack_6_title','field_6177b80f00d01'),(343421,42675,'blocks_0_link_stack_6_url','#tutor-expertise'),(343422,42675,'_blocks_0_link_stack_6_url','field_6177b82200d02'),(343423,42675,'blocks_0_link_stack_7_label','8.'),(343424,42675,'_blocks_0_link_stack_7_label','field_6177b80900d00'),(343425,42675,'blocks_0_link_stack_7_title','Compare Costs, Payment & Finance Options'),(343426,42675,'_blocks_0_link_stack_7_title','field_6177b80f00d01'),(343427,42675,'blocks_0_link_stack_7_url','#costs-and-payment'),(343428,42675,'_blocks_0_link_stack_7_url','field_6177b82200d02'),(343429,42675,'blocks_0_link_stack_8_label','9.'),(343430,42675,'_blocks_0_link_stack_8_label','field_6177b80900d00'),(343431,42675,'blocks_0_link_stack_8_title','Conclusion'),(343432,42675,'_blocks_0_link_stack_8_title','field_6177b80f00d01'),(343433,42675,'blocks_0_link_stack_8_url','#conclusion'),(343434,42675,'_blocks_0_link_stack_8_url','field_6177b82200d02'),(343436,42676,'hide_hero','0'),(343437,42676,'_hide_hero','field_66a2380fcda39'),(343438,42676,'hero_title',''),(343439,42676,'_hero_title','field_617571fe285e8'),(343440,42676,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(343441,42676,'_hero_text','field_6175723c285e9'),(343442,42676,'hero_actions',''),(343443,42676,'_hero_actions','field_61757270285ea'),(343444,42676,'hero_style','default'),(343445,42676,'_hero_style','field_62051d9dc5324'),(343446,42676,'hero_image_pos_x','right'),(343447,42676,'_hero_image_pos_x','field_62ec3d05390bb'),(343448,42676,'hero_image_pos_y','top'),(343449,42676,'_hero_image_pos_y','field_62ec3d05390bc'),(343450,42676,'hero_image_pos',''),(343451,42676,'_hero_image_pos','field_62ec3d05390ba'),(343452,42676,'fft_hide_from_listings','0'),(343453,42676,'_fft_hide_from_listings','field_61f1320446ab2'),(343454,42676,'post_format','402'),(343455,42676,'_post_format','field_61756bfb51898'),(343456,42676,'post_author',''),(343457,42676,'_post_author','field_62ec389d22113'),(343458,42676,'post_reviewer',''),(343459,42676,'_post_reviewer','field_627140a2a9800'),(343460,42676,'post_table_of_contents','0'),(343461,42676,'_post_table_of_contents','field_65c503bc846a6'),(343462,42676,'blocks','a:24:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:13:\"step_timeline\";i:16;s:10:\"text_block\";i:17;s:10:\"split_5050\";i:18;s:10:\"split_5050\";i:19;s:10:\"split_5050\";i:20;s:10:\"text_block\";i:21;s:5:\"icons\";i:22;s:10:\"split_5050\";i:23;s:11:\"promo_panel\";}'),(343463,42676,'_blocks','field_6176696113096'),(343464,42676,'_thumbnail_id','40618'),(343465,42676,'__thumbnail_id','field_617570855ddaf'),(343466,42676,'blocks_0_acfe_flexible_toggle',''),(343467,42676,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(343468,42676,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(343469,42676,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(343470,42676,'blocks_0_options_theme','#ffffff'),(343471,42676,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(343472,42676,'blocks_0_options',''),(343473,42676,'_blocks_0_options','field_6177b758246ae'),(343474,42676,'blocks_0_link_stack_content_title',''),(343475,42676,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(343476,42676,'blocks_0_link_stack_content_heading','Introduction'),(343477,42676,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(343478,42676,'blocks_0_link_stack_content_text','This guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(343479,42676,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(343480,42676,'blocks_0_link_stack_content_actions_0_button',''),(343481,42676,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(343482,42676,'blocks_0_link_stack_content_actions','1'),(343483,42676,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(343484,42676,'blocks_0_link_stack_content',''),(343485,42676,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(343486,42676,'blocks_0_link_stack_0_label','1.'),(343487,42676,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(343488,42676,'blocks_0_link_stack_0_title','Overview'),(343489,42676,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(343490,42676,'blocks_0_link_stack_0_url','#overview'),(343491,42676,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(343492,42676,'blocks_0_link_stack_1_label','2.'),(343493,42676,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(343494,42676,'blocks_0_link_stack_1_title','Define Your Career Goals'),(343495,42676,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(343496,42676,'blocks_0_link_stack_1_url','#define-your-career-goals'),(343497,42676,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(343498,42676,'blocks_0_link_stack_2_label','3.'),(343499,42676,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(343500,42676,'blocks_0_link_stack_2_title','Evaluate Course Content'),(343501,42676,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(343502,42676,'blocks_0_link_stack_2_url','#evaluate-course-content'),(343503,42676,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(343504,42676,'blocks_0_link_stack_3_label','4.'),(343505,42676,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(343506,42676,'blocks_0_link_stack_3_title','Accreditation and Recognition'),(343507,42676,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(343508,42676,'blocks_0_link_stack_3_url','#accreditation-and-recognition'),(343509,42676,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(343510,42676,'blocks_0_link_stack_4_label','5.'),(343511,42676,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(343512,42676,'blocks_0_link_stack_4_title','Experience & Opportunities'),(343513,42676,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(343514,42676,'blocks_0_link_stack_4_url','#experience-and-opportunities'),(343515,42676,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(343516,42676,'blocks_0_link_stack_5_label','6.'),(343517,42676,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(343518,42676,'blocks_0_link_stack_5_title','Evaluate Course Format and Flexibility'),(343519,42676,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(343520,42676,'blocks_0_link_stack_5_url','#course-format'),(343521,42676,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(343522,42676,'blocks_0_link_stack','9'),(343523,42676,'_blocks_0_link_stack','field_6177b7f600cff'),(343524,42676,'blocks_1_acfe_flexible_toggle',''),(343525,42676,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343526,42676,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(343527,42676,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343528,42676,'blocks_1_options_theme','#f5f5f5'),(343529,42676,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(343530,42676,'blocks_1_options_reverse','0'),(343531,42676,'_blocks_1_options_reverse','field_61768049bb8ac'),(343532,42676,'blocks_1_options',''),(343533,42676,'_blocks_1_options','field_617682517c334'),(343534,42676,'blocks_1_split_5050_image','40615'),(343535,42676,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(343536,42676,'blocks_1_split_5050_video',''),(343537,42676,'_blocks_1_split_5050_video','field_6239f3160848a'),(343538,42676,'blocks_1_split_5050_content_title',''),(343539,42676,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(343540,42676,'blocks_1_split_5050_content_heading','Overview'),(343541,42676,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(343542,42676,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(343543,42676,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(343544,42676,'blocks_1_split_5050_content_actions',''),(343545,42676,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(343546,42676,'blocks_1_split_5050_content',''),(343547,42676,'_blocks_1_split_5050_content','field_61767afceb8ba'),(343548,42676,'blocks_3_acfe_flexible_toggle',''),(343549,42676,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343550,42676,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(343551,42676,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343552,42676,'blocks_3_options_theme','#ffffff'),(343553,42676,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(343554,42676,'blocks_3_options_reverse','1'),(343555,42676,'_blocks_3_options_reverse','field_61768049bb8ac'),(343556,42676,'blocks_3_options',''),(343557,42676,'_blocks_3_options','field_617682517c334'),(343558,42676,'blocks_3_split_5050_image','41542'),(343559,42676,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(343560,42676,'blocks_3_split_5050_video',''),(343561,42676,'_blocks_3_split_5050_video','field_6239f3160848a'),(343562,42676,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(343563,42676,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(343564,42676,'blocks_3_split_5050_content_heading',''),(343565,42676,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(343566,42676,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(343567,42676,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(343568,42676,'blocks_3_split_5050_content_actions',''),(343569,42676,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(343570,42676,'blocks_3_split_5050_content',''),(343571,42676,'_blocks_3_split_5050_content','field_61767afceb8ba'),(343572,42676,'blocks_13_acfe_flexible_toggle',''),(343573,42676,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343574,42676,'blocks_13_acfe_flexible_layout_title','Opportunities (3)'),(343575,42676,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343576,42676,'blocks_13_options_theme','#ffffff'),(343577,42676,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(343578,42676,'blocks_13_options_reverse','0'),(343579,42676,'_blocks_13_options_reverse','field_61768049bb8ac'),(343580,42676,'blocks_13_options',''),(343581,42676,'_blocks_13_options','field_617682517c334'),(343582,42676,'blocks_13_split_5050_image','18856'),(343583,42676,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(343584,42676,'blocks_13_split_5050_video',''),(343585,42676,'_blocks_13_split_5050_video','field_6239f3160848a'),(343586,42676,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(343587,42676,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(343588,42676,'blocks_13_split_5050_content_heading',''),(343589,42676,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(343590,42676,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(343591,42676,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(343592,42676,'blocks_13_split_5050_content_actions',''),(343593,42676,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(343594,42676,'blocks_13_split_5050_content',''),(343595,42676,'_blocks_13_split_5050_content','field_61767afceb8ba'),(343596,42676,'blocks_6_acfe_flexible_toggle',''),(343597,42676,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343598,42676,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(343599,42676,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343600,42676,'blocks_6_options_theme','#ffffff'),(343601,42676,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(343602,42676,'blocks_6_options_reverse','1'),(343603,42676,'_blocks_6_options_reverse','field_61768049bb8ac'),(343604,42676,'blocks_6_options',''),(343605,42676,'_blocks_6_options','field_617682517c334'),(343606,42676,'blocks_6_split_5050_image','41502'),(343607,42676,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(343608,42676,'blocks_6_split_5050_video',''),(343609,42676,'_blocks_6_split_5050_video','field_6239f3160848a'),(343610,42676,'blocks_6_split_5050_content_title','Research & Academia'),(343611,42676,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(343612,42676,'blocks_6_split_5050_content_heading',''),(343613,42676,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(343614,42676,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(343615,42676,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(343616,42676,'blocks_6_split_5050_content_actions',''),(343617,42676,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(343618,42676,'blocks_6_split_5050_content',''),(343619,42676,'_blocks_6_split_5050_content','field_61767afceb8ba'),(343620,42676,'blocks_5_acfe_flexible_toggle',''),(343621,42676,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343622,42676,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(343623,42676,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343624,42676,'blocks_5_options_theme','#ffffff'),(343625,42676,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(343626,42676,'blocks_5_options_reverse','1'),(343627,42676,'_blocks_5_options_reverse','field_61768049bb8ac'),(343628,42676,'blocks_5_options',''),(343629,42676,'_blocks_5_options','field_617682517c334'),(343630,42676,'blocks_5_split_5050_image','41539'),(343631,42676,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(343632,42676,'blocks_5_split_5050_video',''),(343633,42676,'_blocks_5_split_5050_video','field_6239f3160848a'),(343634,42676,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(343635,42676,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(343636,42676,'blocks_5_split_5050_content_heading',''),(343637,42676,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(343638,42676,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(343639,42676,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(343640,42676,'blocks_5_split_5050_content_actions',''),(343641,42676,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(343642,42676,'blocks_5_split_5050_content',''),(343643,42676,'_blocks_5_split_5050_content','field_61767afceb8ba'),(343644,42676,'blocks_14_acfe_flexible_toggle',''),(343645,42676,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343646,42676,'blocks_14_acfe_flexible_layout_title','Opportunities (4)'),(343647,42676,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343648,42676,'blocks_14_options_theme','#ffffff'),(343649,42676,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(343650,42676,'blocks_14_options_reverse','0'),(343651,42676,'_blocks_14_options_reverse','field_61768049bb8ac'),(343652,42676,'blocks_14_options',''),(343653,42676,'_blocks_14_options','field_617682517c334'),(343654,42676,'blocks_14_split_5050_image','41490'),(343655,42676,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(343656,42676,'blocks_14_split_5050_video',''),(343657,42676,'_blocks_14_split_5050_video','field_6239f3160848a'),(343658,42676,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(343659,42676,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(343660,42676,'blocks_14_split_5050_content_heading',''),(343661,42676,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(343662,42676,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(343663,42676,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(343664,42676,'blocks_14_split_5050_content_actions',''),(343665,42676,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(343666,42676,'blocks_14_split_5050_content',''),(343667,42676,'_blocks_14_split_5050_content','field_61767afceb8ba'),(343668,42676,'blocks_20_acfe_flexible_toggle',''),(343669,42676,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(343670,42676,'blocks_20_acfe_flexible_layout_title','Costs and Payment[anchor]'),(343671,42676,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(343672,42676,'blocks_20_options_theme','#b61234'),(343673,42676,'_blocks_20_options_theme','field_6176830e2ad17'),(343674,42676,'blocks_20_options',''),(343675,42676,'_blocks_20_options','field_6176830e2ad16'),(343676,42676,'blocks_20_text_block_heading','Compare Costs, Payment & Finance Options'),(343677,42676,'_blocks_20_text_block_heading','field_617669d413097'),(343678,42676,'blocks_20_text_block_content','Biomechanics courses can vary significantly in cost, depending on factors such as course level, institution, and delivery format. While investing in your education is important, it’s equally essential to choose a course that provides good value for money and aligns with your career goals. Understanding the financial commitment involved and exploring available funding options can help you make an informed decision without unnecessary financial strain.'),(343679,42676,'_blocks_20_text_block_content','field_617669ec13098'),(343680,42676,'blocks_10_acfe_flexible_toggle',''),(343681,42676,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(343682,42676,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(343683,42676,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(343684,42676,'blocks_10_options_theme','#ffffff'),(343685,42676,'_blocks_10_options_theme','field_6176830e2ad17'),(343686,42676,'blocks_10_options',''),(343687,42676,'_blocks_10_options','field_6176830e2ad16'),(343688,42676,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(343689,42676,'_blocks_10_text_block_heading','field_617669d413097'),(343690,42676,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(343691,42676,'_blocks_10_text_block_content','field_617669ec13098'),(343692,42676,'blocks_2_acfe_flexible_toggle',''),(343693,42676,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(343694,42676,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(343695,42676,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(343696,42676,'blocks_2_options_theme','#ffffff'),(343697,42676,'_blocks_2_options_theme','field_6176830e2ad17'),(343698,42676,'blocks_2_options',''),(343699,42676,'_blocks_2_options','field_6176830e2ad16'),(343700,42676,'blocks_2_text_block_heading','Define Your Career Goals'),(343701,42676,'_blocks_2_text_block_heading','field_617669d413097'),(343702,42676,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(343703,42676,'_blocks_2_text_block_content','field_617669ec13098'),(343704,42676,'blocks_4_acfe_flexible_toggle',''),(343705,42676,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343706,42676,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(343707,42676,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343708,42676,'blocks_4_options_theme','#ffffff'),(343709,42676,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(343710,42676,'blocks_4_options_reverse','1'),(343711,42676,'_blocks_4_options_reverse','field_61768049bb8ac'),(343712,42676,'blocks_4_options',''),(343713,42676,'_blocks_4_options','field_617682517c334'),(343714,42676,'blocks_4_split_5050_image','41505'),(343715,42676,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(343716,42676,'blocks_4_split_5050_video',''),(343717,42676,'_blocks_4_split_5050_video','field_6239f3160848a'),(343718,42676,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(343719,42676,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(343720,42676,'blocks_4_split_5050_content_heading',''),(343721,42676,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(343722,42676,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(343723,42676,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(343724,42676,'blocks_4_split_5050_content_actions',''),(343725,42676,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(343726,42676,'blocks_4_split_5050_content',''),(343727,42676,'_blocks_4_split_5050_content','field_61767afceb8ba'),(343728,42676,'blocks_7_acfe_flexible_toggle',''),(343729,42676,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(343730,42676,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(343731,42676,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(343732,42676,'blocks_7_options_theme','#f5f5f5'),(343733,42676,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(343734,42676,'blocks_7_options_state','0'),(343735,42676,'_blocks_7_options_state','field_6239fcb7508c5'),(343736,42676,'blocks_7_options',''),(343737,42676,'_blocks_7_options','field_6177e2991ac44'),(343738,42676,'blocks_7_content_title',''),(343739,42676,'_blocks_7_content_title','field_64d237e8bb1e2'),(343740,42676,'blocks_7_content_heading','Evaluate Course Content'),(343741,42676,'_blocks_7_content_heading','field_64d237e8bb1e3'),(343742,42676,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(343743,42676,'_blocks_7_content_text','field_64d237e8bb1e4'),(343744,42676,'blocks_7_content_actions',''),(343745,42676,'_blocks_7_content_actions','field_64d237e8bb1e5'),(343746,42676,'blocks_7_content_align','left'),(343747,42676,'_blocks_7_content_align','field_64d2443e6b6aa'),(343748,42676,'blocks_7_content',''),(343749,42676,'_blocks_7_content','field_64d237e8bb1e1'),(343750,42676,'blocks_7_accordion_content','custom'),(343751,42676,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(343752,42676,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(343753,42676,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(343754,42676,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(343755,42676,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(343756,42676,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(343757,42676,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(343758,42676,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(343759,42676,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(343760,42676,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(343761,42676,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(343762,42676,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(343763,42676,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(343764,42676,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(343765,42676,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(343766,42676,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(343767,42676,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(343768,42676,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(343769,42676,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(343770,42676,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(343771,42676,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(343772,42676,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(343773,42676,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(343774,42676,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(343775,42676,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(343776,42676,'blocks_7_accordion_items','6'),(343777,42676,'_blocks_7_accordion_items','field_6177e2991ac4c'),(343778,42676,'blocks_7_actions',''),(343779,42676,'_blocks_7_actions','field_61a746a817f7a'),(343780,42676,'blocks_8_acfe_flexible_toggle',''),(343781,42676,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(343782,42676,'blocks_8_acfe_flexible_layout_title','Accreditation and Recognition[anchor]'),(343783,42676,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(343784,42676,'blocks_8_options_theme','#b61234'),(343785,42676,'_blocks_8_options_theme','field_6176830e2ad17'),(343786,42676,'blocks_8_options',''),(343787,42676,'_blocks_8_options','field_6176830e2ad16'),(343788,42676,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(343789,42676,'_blocks_8_text_block_heading','field_617669d413097'),(343790,42676,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(343791,42676,'_blocks_8_text_block_content','field_617669ec13098'),(343792,42676,'blocks_9_acfe_flexible_toggle',''),(343793,42676,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(343794,42676,'blocks_9_acfe_flexible_layout_title','Icons'),(343795,42676,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(343796,42676,'blocks_9_options_theme','#b61234'),(343797,42676,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(343798,42676,'blocks_9_options_format','row'),(343799,42676,'_blocks_9_options_format','field_64bfde9a90690'),(343800,42676,'blocks_9_options',''),(343801,42676,'_blocks_9_options','field_64bfdd9b90684'),(343802,42676,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(343803,42676,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(343804,42676,'blocks_9_icon_row_items_0_label','Industry Recognition'),(343805,42676,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(343806,42676,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(343807,42676,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(343808,42676,'blocks_9_icon_row_items_1_icon','qualification.svg'),(343809,42676,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(343810,42676,'blocks_9_icon_row_items_1_label','University Accreditation'),(343811,42676,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(343812,42676,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(343813,42676,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(343814,42676,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(343815,42676,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(343816,42676,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(343817,42676,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(343818,42676,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(343819,42676,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(343820,42676,'blocks_9_icon_row_items','3'),(343821,42676,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(343822,42676,'blocks_11_acfe_flexible_toggle',''),(343823,42676,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343824,42676,'blocks_11_acfe_flexible_layout_title','Opportunities (1) '),(343825,42676,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343826,42676,'blocks_11_options_theme','#ffffff'),(343827,42676,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(343828,42676,'blocks_11_options_reverse','0'),(343829,42676,'_blocks_11_options_reverse','field_61768049bb8ac'),(343830,42676,'blocks_11_options',''),(343831,42676,'_blocks_11_options','field_617682517c334'),(343832,42676,'blocks_11_split_5050_image','41498'),(343833,42676,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(343834,42676,'blocks_11_split_5050_video',''),(343835,42676,'_blocks_11_split_5050_video','field_6239f3160848a'),(343836,42676,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(343837,42676,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(343838,42676,'blocks_11_split_5050_content_heading',''),(343839,42676,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(343840,42676,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(343841,42676,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(343842,42676,'blocks_11_split_5050_content_actions',''),(343843,42676,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(343844,42676,'blocks_11_split_5050_content',''),(343845,42676,'_blocks_11_split_5050_content','field_61767afceb8ba'),(343846,42676,'blocks_12_acfe_flexible_toggle',''),(343847,42676,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343848,42676,'blocks_12_acfe_flexible_layout_title','Opportunities (2)'),(343849,42676,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343850,42676,'blocks_12_options_theme','#ffffff'),(343851,42676,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(343852,42676,'blocks_12_options_reverse','0'),(343853,42676,'_blocks_12_options_reverse','field_61768049bb8ac'),(343854,42676,'blocks_12_options',''),(343855,42676,'_blocks_12_options','field_617682517c334'),(343856,42676,'blocks_12_split_5050_image','40387'),(343857,42676,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(343858,42676,'blocks_12_split_5050_video',''),(343859,42676,'_blocks_12_split_5050_video','field_6239f3160848a'),(343860,42676,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(343861,42676,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(343862,42676,'blocks_12_split_5050_content_heading',''),(343863,42676,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(343864,42676,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(343865,42676,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(343866,42676,'blocks_12_split_5050_content_actions',''),(343867,42676,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(343868,42676,'blocks_12_split_5050_content',''),(343869,42676,'_blocks_12_split_5050_content','field_61767afceb8ba'),(343870,42676,'blocks_17_acfe_flexible_toggle',''),(343871,42676,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343872,42676,'blocks_17_acfe_flexible_layout_title','Experienced Training Providers'),(343873,42676,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343874,42676,'blocks_17_options_theme','#ffffff'),(343875,42676,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(343876,42676,'blocks_17_options_reverse','1'),(343877,42676,'_blocks_17_options_reverse','field_61768049bb8ac'),(343878,42676,'blocks_17_options',''),(343879,42676,'_blocks_17_options','field_617682517c334'),(343880,42676,'blocks_17_split_5050_image','41498'),(343881,42676,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(343882,42676,'blocks_17_split_5050_video',''),(343883,42676,'_blocks_17_split_5050_video','field_6239f3160848a'),(343884,42676,'blocks_17_split_5050_content_title','Experienced Training Providers'),(343885,42676,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(343886,42676,'blocks_17_split_5050_content_heading',''),(343887,42676,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(343888,42676,'blocks_17_split_5050_content_text','Tutors with extensive experience in biomechanics bring real-world insights to the classroom, bridging the gap between theory and practice. Look for instructors with backgrounds in academia, professional sports, rehabilitation, or biomechanics research, as their expertise can enhance the learning experience.'),(343889,42676,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(343890,42676,'blocks_17_split_5050_content_actions',''),(343891,42676,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(343892,42676,'blocks_17_split_5050_content',''),(343893,42676,'_blocks_17_split_5050_content','field_61767afceb8ba'),(343894,42676,'blocks_15_acfe_flexible_toggle',''),(343895,42676,'_blocks_15_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(343896,42676,'blocks_15_acfe_flexible_layout_title','Course Format[anchor]'),(343897,42676,'_blocks_15_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(343898,42676,'blocks_15_options_theme','#f5f5f5'),(343899,42676,'_blocks_15_options_theme','field_6177de53d1196_field_6176830e2ad17'),(343900,42676,'blocks_15_options',''),(343901,42676,'_blocks_15_options','field_6177de53d1195'),(343902,42676,'blocks_15_timeline_content_title',''),(343903,42676,'_blocks_15_timeline_content_title','field_6177de53d1198'),(343904,42676,'blocks_15_timeline_content_heading','Evaluate Course Format and Flexibility'),(343905,42676,'_blocks_15_timeline_content_heading','field_6177de53d1199'),(343906,42676,'blocks_15_timeline_content_text','Biomechanics courses can vary in structure, offering different formats to accommodate students with varying schedules, learning preferences, and career commitments. Whether you’re looking for a full-time degree, a part-time professional development course, or an online programme that fits around your work, understanding the course format is essential in making the right choice. A well-structured course should provide a balance of flexibility and practical engagement, ensuring you gain the knowledge and hands-on experience needed for your career.\r\n\r\nWhen considering a biomechanics course, think about how the course format aligns with your lifestyle and career ambitions. Below are some key factors to evaluate when selecting the right learning structure.'),(343907,42676,'_blocks_15_timeline_content_text','field_6177de53d119a'),(343908,42676,'blocks_15_timeline_content_actions',''),(343909,42676,'_blocks_15_timeline_content_actions','field_6177de53d119b'),(343910,42676,'blocks_15_timeline_content',''),(343911,42676,'_blocks_15_timeline_content','field_6177de53d1197'),(343912,42676,'blocks_15_timeline_items_0_title','Full-Time vs. Part-Time Study'),(343913,42676,'_blocks_15_timeline_items_0_title','field_6177de53d119f'),(343914,42676,'blocks_15_timeline_items_0_text','Full-time biomechanics courses offer an immersive learning experience, allowing students to complete their qualifications more quickly. However, part-time courses can be beneficial for those who are already working in the field and want to upskill while maintaining their job. Choosing between these options depends on your availability, learning pace, and career progression plans.'),(343915,42676,'_blocks_15_timeline_items_0_text','field_6177de53d11a0'),(343916,42676,'blocks_15_timeline_items_1_title','Online, In-Person, and Hybrid Learning'),(343917,42676,'_blocks_15_timeline_items_1_title','field_6177de53d119f'),(343918,42676,'blocks_15_timeline_items_1_text','While some biomechanics courses are delivered entirely in-person, others incorporate online modules to provide greater flexibility. Online learning can be useful for covering theoretical concepts, but biomechanics is a highly practical subject, meaning hybrid programmes that include both online theory and in-person practical sessions can be the most effective for building applied skills.'),(343919,42676,'_blocks_15_timeline_items_1_text','field_6177de53d11a0'),(343920,42676,'blocks_15_timeline_items_2_title','Degree Level and Course Duration'),(343921,42676,'_blocks_15_timeline_items_2_title','field_6177de53d119f'),(343922,42676,'blocks_15_timeline_items_2_text','Depending on your career goals, you may need to choose between a short biomechanics certification, a diploma, or a full degree (BSc, MSc, or PhD). Short courses and diplomas are useful for professionals looking to specialise or upskill, while degree-level courses provide a more in-depth understanding of biomechanics, research methods, and applied movement science.'),(343923,42676,'_blocks_15_timeline_items_2_text','field_6177de53d11a0'),(343924,42676,'blocks_15_timeline_items','3'),(343925,42676,'_blocks_15_timeline_items','field_6177de53d119d'),(343926,42676,'blocks_16_acfe_flexible_toggle',''),(343927,42676,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(343928,42676,'blocks_16_acfe_flexible_layout_title','Tutor Expertise[anchor] '),(343929,42676,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(343930,42676,'blocks_16_options_theme','#ffffff'),(343931,42676,'_blocks_16_options_theme','field_6176830e2ad17'),(343932,42676,'blocks_16_options',''),(343933,42676,'_blocks_16_options','field_6176830e2ad16'),(343934,42676,'blocks_16_text_block_heading','Assess Tutor Expertise and Industry Connections'),(343935,42676,'_blocks_16_text_block_heading','field_617669d413097'),(343936,42676,'blocks_16_text_block_content','The quality of a biomechanics course is not just determined by its content but also by the expertise of the tutors delivering it and the industry connections it provides. Learning from experienced professionals with strong backgrounds in biomechanics, sports science, rehabilitation, or engineering ensures that you receive relevant, up-to-date knowledge that aligns with industry standards. Additionally, courses with strong industry links can open doors to valuable networking opportunities, mentorship, and potential career placements.\r\n\r\nWhen evaluating a biomechanics course, consider the credibility of the teaching staff and the programme’s industry connections. Below are key factors to assess.'),(343937,42676,'_blocks_16_text_block_content','field_617669ec13098'),(343938,42676,'blocks_18_acfe_flexible_toggle',''),(343939,42676,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343940,42676,'blocks_18_acfe_flexible_layout_title','Industry Collaborations and Professional Networks'),(343941,42676,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343942,42676,'blocks_18_options_theme','#ffffff'),(343943,42676,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(343944,42676,'blocks_18_options_reverse','1'),(343945,42676,'_blocks_18_options_reverse','field_61768049bb8ac'),(343946,42676,'blocks_18_options',''),(343947,42676,'_blocks_18_options','field_617682517c334'),(343948,42676,'blocks_18_split_5050_image','41498'),(343949,42676,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(343950,42676,'blocks_18_split_5050_video',''),(343951,42676,'_blocks_18_split_5050_video','field_6239f3160848a'),(343952,42676,'blocks_18_split_5050_content_title','Industry Collaborations and Professional Networks'),(343953,42676,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(343954,42676,'blocks_18_split_5050_content_heading',''),(343955,42676,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(343956,42676,'blocks_18_split_5050_content_text','Courses that have partnerships with sports teams, healthcare organisations, universities, or biomechanics companies provide students with access to industry professionals and potential career opportunities. These collaborations can also lead to internships, research projects, or direct job placements after completing the course.'),(343957,42676,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(343958,42676,'blocks_18_split_5050_content_actions',''),(343959,42676,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(343960,42676,'blocks_18_split_5050_content',''),(343961,42676,'_blocks_18_split_5050_content','field_61767afceb8ba'),(343962,42676,'blocks_19_acfe_flexible_toggle',''),(343963,42676,'_blocks_19_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(343964,42676,'blocks_19_acfe_flexible_layout_title','Graduate Success and Alumni Network'),(343965,42676,'_blocks_19_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(343966,42676,'blocks_19_options_theme','#ffffff'),(343967,42676,'_blocks_19_options_theme','field_617682847c335_field_6176830e2ad17'),(343968,42676,'blocks_19_options_reverse','1'),(343969,42676,'_blocks_19_options_reverse','field_61768049bb8ac'),(343970,42676,'blocks_19_options',''),(343971,42676,'_blocks_19_options','field_617682517c334'),(343972,42676,'blocks_19_split_5050_image','41498'),(343973,42676,'_blocks_19_split_5050_image','field_6239f527a0c3a'),(343974,42676,'blocks_19_split_5050_video',''),(343975,42676,'_blocks_19_split_5050_video','field_6239f3160848a'),(343976,42676,'blocks_19_split_5050_content_title','Graduate Success and Alumni Network'),(343977,42676,'_blocks_19_split_5050_content_title','field_61767bfca3fc0'),(343978,42676,'blocks_19_split_5050_content_heading',''),(343979,42676,'_blocks_19_split_5050_content_heading','field_61767b26eb8bb'),(343980,42676,'blocks_19_split_5050_content_text','A strong alumni network and positive graduate success stories indicate the effectiveness of a biomechanics course. Research where previous students have progressed in their careers, as this can provide insight into the opportunities available after completing the programme.'),(343981,42676,'_blocks_19_split_5050_content_text','field_61767b3beb8bc'),(343982,42676,'blocks_19_split_5050_content_actions',''),(343983,42676,'_blocks_19_split_5050_content_actions','field_61767b68eb8bd'),(343984,42676,'blocks_19_split_5050_content',''),(343985,42676,'_blocks_19_split_5050_content','field_61767afceb8ba'),(343986,42676,'blocks_21_acfe_flexible_toggle',''),(343987,42676,'_blocks_21_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(343988,42676,'blocks_21_acfe_flexible_layout_title','Icons - Costs and Payment'),(343989,42676,'_blocks_21_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(343990,42676,'blocks_21_options_theme','#b61234'),(343991,42676,'_blocks_21_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(343992,42676,'blocks_21_options_format','row'),(343993,42676,'_blocks_21_options_format','field_64bfde9a90690'),(343994,42676,'blocks_21_options',''),(343995,42676,'_blocks_21_options','field_64bfdd9b90684'),(343996,42676,'blocks_21_icon_row_items_0_icon','payment-plans.svg'),(343997,42676,'_blocks_21_icon_row_items_0_icon','field_64bfdd9b9068d'),(343998,42676,'blocks_21_icon_row_items_0_label','Course Costs'),(343999,42676,'_blocks_21_icon_row_items_0_label','field_64bfdd9c9068e'),(344000,42676,'blocks_21_icon_row_items_0_text','Compare costs across providers to find an option that fits your budget.'),(344001,42676,'_blocks_21_icon_row_items_0_text','field_64bfdd9c9068f'),(344002,42676,'blocks_21_icon_row_items_1_icon','start-earning-in.svg'),(344003,42676,'_blocks_21_icon_row_items_1_icon','field_64bfdd9b9068d'),(344004,42676,'blocks_21_icon_row_items_1_label','Grants'),(344005,42676,'_blocks_21_icon_row_items_1_label','field_64bfdd9c9068e'),(344006,42676,'blocks_21_icon_row_items_1_text','Some universities may offer financial aid for biomechanics students, especially in research-intensive programmes.'),(344007,42676,'_blocks_21_icon_row_items_1_text','field_64bfdd9c9068f'),(344008,42676,'blocks_21_icon_row_items_2_icon','return-on-investment-1.svg'),(344009,42676,'_blocks_21_icon_row_items_2_icon','field_64bfdd9b9068d'),(344010,42676,'blocks_21_icon_row_items_2_label','Return on Investment'),(344011,42676,'_blocks_21_icon_row_items_2_label','field_64bfdd9c9068e'),(344012,42676,'blocks_21_icon_row_items_2_text','Consider the earning potential in your chosen biomechanics career and whether the programme justifies the cost.'),(344013,42676,'_blocks_21_icon_row_items_2_text','field_64bfdd9c9068f'),(344014,42676,'blocks_21_icon_row_items','3'),(344015,42676,'_blocks_21_icon_row_items','field_64bfdd9b9068c'),(344016,42676,'blocks_22_acfe_flexible_toggle',''),(344017,42676,'_blocks_22_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344018,42676,'blocks_22_acfe_flexible_layout_title','Conclusion[anchor]'),(344019,42676,'_blocks_22_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344020,42676,'blocks_22_options_theme','#ffffff'),(344021,42676,'_blocks_22_options_theme','field_617682847c335_field_6176830e2ad17'),(344022,42676,'blocks_22_options_reverse','1'),(344023,42676,'_blocks_22_options_reverse','field_61768049bb8ac'),(344024,42676,'blocks_22_options',''),(344025,42676,'_blocks_22_options','field_617682517c334'),(344026,42676,'blocks_22_split_5050_image','41501'),(344027,42676,'_blocks_22_split_5050_image','field_6239f527a0c3a'),(344028,42676,'blocks_22_split_5050_video',''),(344029,42676,'_blocks_22_split_5050_video','field_6239f3160848a'),(344030,42676,'blocks_22_split_5050_content_title',''),(344031,42676,'_blocks_22_split_5050_content_title','field_61767bfca3fc0'),(344032,42676,'blocks_22_split_5050_content_heading','Conclusion'),(344033,42676,'_blocks_22_split_5050_content_heading','field_61767b26eb8bb'),(344034,42676,'blocks_22_split_5050_content_text','Choosing the right biomechanics course is a key step in shaping your career and expanding your expertise in human movement. With so many options available, it’s important to take the time to evaluate courses based on your career goals, the content they offer, accreditation, practical learning opportunities, and industry connections. A well-structured course should provide both theoretical knowledge and hands-on experience, ensuring that you develop the skills needed to apply biomechanics effectively in your chosen field.\r\n\r\nBy considering factors such as course format, tutor expertise, financial investment, and long-term career prospects, you can make an informed decision that aligns with your aspirations. Take the time to research programmes, speak with faculty or alumni, and explore available learning pathways to find the biomechanics course that best supports your professional development.'),(344035,42676,'_blocks_22_split_5050_content_text','field_61767b3beb8bc'),(344036,42676,'blocks_22_split_5050_content_actions',''),(344037,42676,'_blocks_22_split_5050_content_actions','field_61767b68eb8bd'),(344038,42676,'blocks_22_split_5050_content',''),(344039,42676,'_blocks_22_split_5050_content','field_61767afceb8ba'),(344040,42676,'blocks_23_acfe_flexible_toggle',''),(344041,42676,'_blocks_23_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(344042,42676,'blocks_23_acfe_flexible_layout_title','Promo Panel'),(344043,42676,'_blocks_23_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(344044,42676,'blocks_23_options_alignment','center'),(344045,42676,'_blocks_23_options_alignment','field_61769449f5490'),(344046,42676,'blocks_23_options',''),(344047,42676,'_blocks_23_options','field_617693e1428f0'),(344048,42676,'blocks_23_promo_panel_image','41307'),(344049,42676,'_blocks_23_promo_panel_image','field_617693e1428f3'),(344050,42676,'blocks_23_promo_panel_content_heading','Want to Get Started?'),(344051,42676,'_blocks_23_promo_panel_content_heading','field_617693e1428f6'),(344052,42676,'blocks_23_promo_panel_content_text','Would you like help finding a biomechanics course tailored to your career goals? Get in touch to explore your options and take the next step in your biomechanics journey.'),(344053,42676,'_blocks_23_promo_panel_content_text','field_617693e1428f7'),(344054,42676,'blocks_23_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(344055,42676,'_blocks_23_promo_panel_content_actions_0_button','field_617693e1428f9'),(344056,42676,'blocks_23_promo_panel_content_actions','1'),(344057,42676,'_blocks_23_promo_panel_content_actions','field_617693e1428f8'),(344058,42676,'blocks_23_promo_panel_content',''),(344059,42676,'_blocks_23_promo_panel_content','field_617693e1428f4'),(344060,42676,'blocks_0_link_stack_6_label','7.'),(344061,42676,'_blocks_0_link_stack_6_label','field_6177b80900d00'),(344062,42676,'blocks_0_link_stack_6_title','Assess Tutor Expertise and Industry Connections'),(344063,42676,'_blocks_0_link_stack_6_title','field_6177b80f00d01'),(344064,42676,'blocks_0_link_stack_6_url','#tutor-expertise'),(344065,42676,'_blocks_0_link_stack_6_url','field_6177b82200d02'),(344066,42676,'blocks_0_link_stack_7_label','8.'),(344067,42676,'_blocks_0_link_stack_7_label','field_6177b80900d00'),(344068,42676,'blocks_0_link_stack_7_title','Compare Costs, Payment & Finance Options'),(344069,42676,'_blocks_0_link_stack_7_title','field_6177b80f00d01'),(344070,42676,'blocks_0_link_stack_7_url','#costs-and-payment'),(344071,42676,'_blocks_0_link_stack_7_url','field_6177b82200d02'),(344072,42676,'blocks_0_link_stack_8_label','9.'),(344073,42676,'_blocks_0_link_stack_8_label','field_6177b80900d00'),(344074,42676,'blocks_0_link_stack_8_title','Conclusion'),(344075,42676,'_blocks_0_link_stack_8_title','field_6177b80f00d01'),(344076,42676,'blocks_0_link_stack_8_url','#conclusion'),(344077,42676,'_blocks_0_link_stack_8_url','field_6177b82200d02'),(344078,42677,'hide_hero','0'),(344079,42677,'_hide_hero','field_66a2380fcda39'),(344080,42677,'fft_hide_from_listings','1'),(344081,42677,'_fft_hide_from_listings','field_61f1320446ab2'),(344082,42677,'fft_page_format','default'),(344083,42677,'_fft_page_format','field_61ae213f1f218'),(344084,42677,'fft_hide_nav','1'),(344085,42677,'_fft_hide_nav','field_635bd5e43527c'),(344086,42677,'fft_hide_header_call_to_action','0'),(344087,42677,'_fft_hide_header_call_to_action','field_635bd6723527d'),(344088,42677,'fft_page_sitemap','1'),(344089,42677,'_fft_page_sitemap','field_61af9b34e8181'),(344090,42677,'blocks','a:9:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:10:\"split_5050\";i:7;s:4:\"form\";i:8;s:10:\"accordions\";}'),(344091,42677,'_blocks','field_6176696113096'),(344092,42677,'hero_title',''),(344093,42677,'_hero_title','field_617571fe285e8'),(344094,42677,'hero_text',''),(344095,42677,'_hero_text','field_6175723c285e9'),(344096,42677,'hero_actions',''),(344097,42677,'_hero_actions','field_61757270285ea'),(344098,42677,'hero_style','default'),(344099,42677,'_hero_style','field_62051d9dc5324'),(344100,42677,'hero_image_pos_x','right'),(344101,42677,'_hero_image_pos_x','field_62ec3d05390bb'),(344102,42677,'hero_image_pos_y','top'),(344103,42677,'_hero_image_pos_y','field_62ec3d05390bc'),(344104,42677,'hero_image_pos',''),(344105,42677,'_hero_image_pos','field_62ec3d05390ba'),(344106,42677,'blocks_0_acfe_flexible_toggle',''),(344107,42677,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344108,42677,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(344109,42677,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344110,42677,'blocks_0_options_theme','#ffffff'),(344111,42677,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(344112,42677,'blocks_0_options_reverse','0'),(344113,42677,'_blocks_0_options_reverse','field_61768049bb8ac'),(344114,42677,'blocks_0_options',''),(344115,42677,'_blocks_0_options','field_617682517c334'),(344116,42677,'blocks_0_split_5050_image','40848'),(344117,42677,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(344118,42677,'blocks_0_split_5050_video',''),(344119,42677,'_blocks_0_split_5050_video','field_6239f3160848a'),(344120,42677,'blocks_0_split_5050_content_title',''),(344121,42677,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(344122,42677,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(344123,42677,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(344124,42677,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re a fitness professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(344125,42677,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(344126,42677,'blocks_0_split_5050_content_actions','1'),(344127,42677,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(344128,42677,'blocks_0_split_5050_content',''),(344129,42677,'_blocks_0_split_5050_content','field_61767afceb8ba'),(344130,42677,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(344131,42677,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(344132,42677,'blocks_1_acfe_flexible_toggle',''),(344133,42677,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344134,42677,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(344135,42677,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344136,42677,'blocks_1_options_theme','#ffffff'),(344137,42677,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(344138,42677,'blocks_1_options_reverse','1'),(344139,42677,'_blocks_1_options_reverse','field_61768049bb8ac'),(344140,42677,'blocks_1_options',''),(344141,42677,'_blocks_1_options','field_617682517c334'),(344142,42677,'blocks_1_split_5050_image','41312'),(344143,42677,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(344144,42677,'blocks_1_split_5050_video',''),(344145,42677,'_blocks_1_split_5050_video','field_6239f3160848a'),(344146,42677,'blocks_1_split_5050_content_title',''),(344147,42677,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(344148,42677,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(344149,42677,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(344150,42677,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk. Whether delivered in-person or through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally recognised certification to boost career opportunities</li>\r\n 	<li>Learn from leading biomechanics experts with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(344151,42677,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(344152,42677,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(344153,42677,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(344154,42677,'blocks_1_split_5050_content_actions','1'),(344155,42677,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(344156,42677,'blocks_1_split_5050_content',''),(344157,42677,'_blocks_1_split_5050_content','field_61767afceb8ba'),(344158,42677,'blocks_2_acfe_flexible_toggle',''),(344159,42677,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(344160,42677,'blocks_2_acfe_flexible_layout_title','Text Block'),(344161,42677,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(344162,42677,'blocks_2_options_theme','#ffffff'),(344163,42677,'_blocks_2_options_theme','field_6176830e2ad17'),(344164,42677,'blocks_2_options',''),(344165,42677,'_blocks_2_options','field_6176830e2ad16'),(344166,42677,'blocks_2_text_block_heading','Our Popular Courses:'),(344167,42677,'_blocks_2_text_block_heading','field_617669d413097'),(344168,42677,'blocks_2_text_block_content',''),(344169,42677,'_blocks_2_text_block_content','field_617669ec13098'),(344170,42677,'blocks_3_acfe_flexible_toggle',''),(344171,42677,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(344172,42677,'blocks_3_acfe_flexible_layout_title','Cards'),(344173,42677,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(344174,42677,'blocks_3_options_theme','#ffffff'),(344175,42677,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(344176,42677,'blocks_3_options_format','carousel'),(344177,42677,'_blocks_3_options_format','field_617a7b15245b5'),(344178,42677,'blocks_3_options_style','default'),(344179,42677,'_blocks_3_options_style','field_6278ffb63484a'),(344180,42677,'blocks_3_options_cards_current_listing','0'),(344181,42677,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(344182,42677,'blocks_3_options_cards_content','selection'),(344183,42677,'_blocks_3_options_cards_content','field_617aba6122688'),(344184,42677,'blocks_3_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(344185,42677,'_blocks_3_options_cards_select_posts','field_6193f85fbaea1'),(344186,42677,'blocks_3_options',''),(344187,42677,'_blocks_3_options','field_617a7b15245b3'),(344188,42677,'blocks_4_acfe_flexible_toggle',''),(344189,42677,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(344190,42677,'blocks_4_acfe_flexible_layout_title','Quote'),(344191,42677,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(344192,42677,'blocks_4_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(344193,42677,'_blocks_4_quote_content','field_6177cdacdd67a'),(344194,42677,'blocks_4_quote_author','Alex Carter, Certified Biomechanics Coach'),(344195,42677,'_blocks_4_quote_author','field_6177cdc6dd67b'),(344196,42677,'blocks_5_acfe_flexible_toggle',''),(344197,42677,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(344198,42677,'blocks_5_acfe_flexible_layout_title','Timeline'),(344199,42677,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(344200,42677,'blocks_5_options_theme','#ffffff'),(344201,42677,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(344202,42677,'blocks_5_options',''),(344203,42677,'_blocks_5_options','field_6177de53d1195'),(344204,42677,'blocks_5_timeline_content_title',''),(344205,42677,'_blocks_5_timeline_content_title','field_6177de53d1198'),(344206,42677,'blocks_5_timeline_content_heading','Why choose Biomechanics Education?'),(344207,42677,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(344208,42677,'blocks_5_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(344209,42677,'_blocks_5_timeline_content_text','field_6177de53d119a'),(344210,42677,'blocks_5_timeline_content_actions',''),(344211,42677,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(344212,42677,'blocks_5_timeline_content',''),(344213,42677,'_blocks_5_timeline_content','field_6177de53d1197'),(344214,42677,'blocks_5_timeline_items_0_title','Industry-Leading Expertise'),(344215,42677,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(344216,42677,'blocks_5_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(344217,42677,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(344218,42677,'blocks_5_timeline_items_1_title','Global Accessibility'),(344219,42677,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(344220,42677,'blocks_5_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(344221,42677,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(344222,42677,'blocks_5_timeline_items_2_title','Internationally Recognised Certification'),(344223,42677,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(344224,42677,'blocks_5_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(344225,42677,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(344226,42677,'blocks_5_timeline_items_3_title','Career Opportunities Worldwide'),(344227,42677,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(344228,42677,'blocks_5_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(344229,42677,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(344230,42677,'blocks_5_timeline_items','4'),(344231,42677,'_blocks_5_timeline_items','field_6177de53d119d'),(344232,42677,'_thumbnail_id','40818'),(344233,42677,'__thumbnail_id','field_617570855ddaf'),(344234,42677,'blocks_6_acfe_flexible_toggle',''),(344235,42677,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344236,42677,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(344237,42677,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344238,42677,'blocks_6_options_theme','#ffffff'),(344239,42677,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(344240,42677,'blocks_6_options_reverse','0'),(344241,42677,'_blocks_6_options_reverse','field_61768049bb8ac'),(344242,42677,'blocks_6_options',''),(344243,42677,'_blocks_6_options','field_617682517c334'),(344244,42677,'blocks_6_split_5050_image','41300'),(344245,42677,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(344246,42677,'blocks_6_split_5050_video',''),(344247,42677,'_blocks_6_split_5050_video','field_6239f3160848a'),(344248,42677,'blocks_6_split_5050_content_title',''),(344249,42677,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(344250,42677,'blocks_6_split_5050_content_heading','International Support & Learning Experience'),(344251,42677,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(344252,42677,'blocks_6_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(344253,42677,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(344254,42677,'blocks_6_split_5050_content_actions',''),(344255,42677,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(344256,42677,'blocks_6_split_5050_content',''),(344257,42677,'_blocks_6_split_5050_content','field_61767afceb8ba'),(344258,42677,'blocks_7_acfe_flexible_toggle',''),(344259,42677,'_blocks_7_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(344260,42677,'blocks_7_acfe_flexible_layout_title','Form'),(344261,42677,'_blocks_7_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(344262,42677,'blocks_7_row_content_format','standard'),(344263,42677,'_blocks_7_row_content_format','field_6481ead962881'),(344264,42677,'blocks_7_row_content_title',''),(344265,42677,'_blocks_7_row_content_title','field_61a0f5f5b3db1'),(344266,42677,'blocks_7_row_content_heading','Contact Us Today'),(344267,42677,'_blocks_7_row_content_heading','field_61a0f5f5b3db2'),(344268,42677,'blocks_7_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(344269,42677,'_blocks_7_row_content_text','field_61a0f5f5b3db3'),(344270,42677,'blocks_7_row_content_actions',''),(344271,42677,'_blocks_7_row_content_actions','field_61a0f5f5b3db4'),(344272,42677,'blocks_7_row_content',''),(344273,42677,'_blocks_7_row_content','field_61a0f5f5b3db0'),(344274,42677,'blocks_7_row_form','40394'),(344275,42677,'_blocks_7_row_form','field_61a4ff2c0b08e'),(344276,42677,'blocks_7_row_form_button_label',''),(344277,42677,'_blocks_7_row_form_button_label','field_61e12cf6fe412'),(344278,42677,'blocks_8_acfe_flexible_toggle',''),(344279,42677,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(344280,42677,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(344281,42677,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(344282,42677,'blocks_8_options_theme','#ffffff'),(344283,42677,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(344284,42677,'blocks_8_options_state','0'),(344285,42677,'_blocks_8_options_state','field_6239fcb7508c5'),(344286,42677,'blocks_8_options',''),(344287,42677,'_blocks_8_options','field_6177e2991ac44'),(344288,42677,'blocks_8_content_title',''),(344289,42677,'_blocks_8_content_title','field_64d237e8bb1e2'),(344290,42677,'blocks_8_content_heading','FAQs'),(344291,42677,'_blocks_8_content_heading','field_64d237e8bb1e3'),(344292,42677,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(344293,42677,'_blocks_8_content_text','field_64d237e8bb1e4'),(344294,42677,'blocks_8_content_actions',''),(344295,42677,'_blocks_8_content_actions','field_64d237e8bb1e5'),(344296,42677,'blocks_8_content_align','left'),(344297,42677,'_blocks_8_content_align','field_64d2443e6b6aa'),(344298,42677,'blocks_8_content',''),(344299,42677,'_blocks_8_content','field_64d237e8bb1e1'),(344300,42677,'blocks_8_accordion_content','custom'),(344301,42677,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(344302,42677,'blocks_8_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(344303,42677,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(344304,42677,'blocks_8_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(344305,42677,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(344306,42677,'blocks_8_accordion_items_1_title','Is the qualification recognised globally?'),(344307,42677,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(344308,42677,'blocks_8_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(344309,42677,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(344310,42677,'blocks_8_accordion_items_2_title','What are the study options for international students?'),(344311,42677,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(344312,42677,'blocks_8_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(344313,42677,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(344314,42677,'blocks_8_accordion_items_3_title','Who is this course suitable for?'),(344315,42677,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(344316,42677,'blocks_8_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(344317,42677,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(344318,42677,'blocks_8_accordion_items_4_title','How do I enrol and what are the payment options?'),(344319,42677,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(344320,42677,'blocks_8_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(344321,42677,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(344322,42677,'blocks_8_accordion_items','5'),(344323,42677,'_blocks_8_accordion_items','field_6177e2991ac4c'),(344324,42677,'blocks_8_actions',''),(344325,42677,'_blocks_8_actions','field_61a746a817f7a'),(344326,42678,'_wp_attached_file','2025/03/Biomechanics-Education-Course-Selection-01.png'),(344327,42678,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:54:\"2025/03/Biomechanics-Education-Course-Selection-01.png\";s:8:\"filesize\";i:355572;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:752381;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158804;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:553822;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:223424;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-900x800.png\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:326597;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:156911;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:752381;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:168892;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-675x800.png\";s:5:\"width\";i:675;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:246494;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-900x800.png\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:326597;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174612;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:840550;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133231;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-01-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:635408;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:55:\"Biomechanics-Education-Course-Selection-01-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:377808;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(344328,42679,'_wp_attached_file','2025/03/Biomechanics-Education-Course-Selection-02.png'),(344329,42679,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:54:\"2025/03/Biomechanics-Education-Course-Selection-02.png\";s:8:\"filesize\";i:313964;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:654640;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128362;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:475100;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199269;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-900x800.png\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:302580;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126258;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:654640;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160570;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-675x800.png\";s:5:\"width\";i:675;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236555;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-900x800.png\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:302580;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:145142;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:748656;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108083;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-02-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:556418;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:55:\"Biomechanics-Education-Course-Selection-02-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:329646;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(344330,42680,'_wp_attached_file','2025/03/Biomechanics-Education-Course-Selection-03-e1742298932288.png'),(344331,42680,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:69:\"2025/03/Biomechanics-Education-Course-Selection-03-e1742298932288.png\";s:8:\"filesize\";i:562072;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:744838;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:162229;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:550070;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:233253;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-900x800.png\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:370799;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160216;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:744838;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174462;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-675x800.png\";s:5:\"width\";i:675;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:280542;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-900x800.png\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:370799;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:178233;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:835940;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139435;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:69:\"Biomechanics-Education-Course-Selection-03-e1742298932288-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:643847;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:70:\"Biomechanics-Education-Course-Selection-03-e1742298932288-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:423227;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(344332,42681,'_wp_attached_file','2025/03/Biomechanics-Education-Course-Selection-04.png'),(344333,42681,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:54:\"2025/03/Biomechanics-Education-Course-Selection-04.png\";s:8:\"filesize\";i:309735;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:654739;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:135701;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:479034;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:203857;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-900x800.png\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:299824;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133940;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:654739;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:163074;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-675x800.png\";s:5:\"width\";i:675;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:236998;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-900x800.png\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:299824;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151772;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:739637;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:115865;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-04-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:565610;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:55:\"Biomechanics-Education-Course-Selection-04-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:335864;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(344334,42682,'_wp_attached_file','2025/03/Biomechanics-Education-Course-Selection-05.png'),(344335,42682,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:54:\"2025/03/Biomechanics-Education-Course-Selection-05.png\";s:8:\"filesize\";i:343307;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:607496;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138148;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:451093;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189650;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-900x800.png\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:314443;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137050;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:607496;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140782;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-675x800.png\";s:5:\"width\";i:675;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:234822;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-900x800.png\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:314443;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151658;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:678114;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:121641;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-05-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:537679;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:55:\"Biomechanics-Education-Course-Selection-05-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:372502;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(344336,42680,'_wp_attachment_backup_sizes','a:16:{s:9:\"full-orig\";a:4:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:8:\"filesize\";i:387673;s:4:\"file\";s:46:\"Biomechanics-Education-Course-Selection-03.png\";}s:14:\"thumbnail-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-400x267.png\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:161349;}s:11:\"medium-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:745580;}s:17:\"medium_large-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:549830;}s:11:\"1x1-sm-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:232861;}s:11:\"1x1-md-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-900x800.png\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:370820;}s:11:\"3x2-sm-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:159589;}s:11:\"3x2-md-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:745580;}s:11:\"3x4-sm-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174504;}s:11:\"3x4-md-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-675x800.png\";s:5:\"width\";i:675;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:280549;}s:11:\"3x4-lg-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-900x800.png\";s:5:\"width\";i:900;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:370820;}s:11:\"4x3-sm-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:178200;}s:11:\"4x3-md-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:839218;}s:12:\"16x9-sm-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138671;}s:12:\"16x9-md-orig\";a:5:{s:4:\"file\";s:54:\"Biomechanics-Education-Course-Selection-03-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:644053;}s:12:\"16x9-lg-orig\";a:5:{s:4:\"file\";s:55:\"Biomechanics-Education-Course-Selection-03-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:423186;}}'),(344337,42683,'hide_hero','0'),(344338,42683,'_hide_hero','field_66a2380fcda39'),(344339,42683,'hero_title',''),(344340,42683,'_hero_title','field_617571fe285e8'),(344341,42683,'hero_text','Find the right biomechanics course to match your career goals, enhance your expertise, and advance your future in movement science.'),(344342,42683,'_hero_text','field_6175723c285e9'),(344343,42683,'hero_actions',''),(344344,42683,'_hero_actions','field_61757270285ea'),(344345,42683,'hero_style','default'),(344346,42683,'_hero_style','field_62051d9dc5324'),(344347,42683,'_thumbnail_id','42680'),(344348,42683,'__thumbnail_id','field_617570855ddaf'),(344349,42683,'hero_image_pos_x','right'),(344350,42683,'_hero_image_pos_x','field_62ec3d05390bb'),(344351,42683,'hero_image_pos_y','top'),(344352,42683,'_hero_image_pos_y','field_62ec3d05390bc'),(344353,42683,'hero_image_pos',''),(344354,42683,'_hero_image_pos','field_62ec3d05390ba'),(344355,42683,'fft_hide_from_listings','0'),(344356,42683,'_fft_hide_from_listings','field_61f1320446ab2'),(344357,42683,'post_format','402'),(344358,42683,'_post_format','field_61756bfb51898'),(344359,42683,'post_author',''),(344360,42683,'_post_author','field_62ec389d22113'),(344361,42683,'post_reviewer',''),(344362,42683,'_post_reviewer','field_627140a2a9800'),(344363,42683,'post_table_of_contents','0'),(344364,42683,'_post_table_of_contents','field_65c503bc846a6'),(344365,42683,'blocks_0_acfe_flexible_toggle',''),(344366,42683,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(344367,42683,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(344368,42683,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(344369,42683,'blocks_0_options_theme','#ffffff'),(344370,42683,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(344371,42683,'blocks_0_options',''),(344372,42683,'_blocks_0_options','field_6177b758246ae'),(344373,42683,'blocks_0_link_stack_content_title',''),(344374,42683,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(344375,42683,'blocks_0_link_stack_content_heading','Introduction'),(344376,42683,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(344377,42683,'blocks_0_link_stack_content_text','This guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(344378,42683,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(344379,42683,'blocks_0_link_stack_content_actions_0_button',''),(344380,42683,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(344381,42683,'blocks_0_link_stack_content_actions','1'),(344382,42683,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(344383,42683,'blocks_0_link_stack_content',''),(344384,42683,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(344385,42683,'blocks_0_link_stack_0_label','1.'),(344386,42683,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(344387,42683,'blocks_0_link_stack_0_title','Overview'),(344388,42683,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(344389,42683,'blocks_0_link_stack_0_url','#overview'),(344390,42683,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(344391,42683,'blocks_0_link_stack_1_label','2.'),(344392,42683,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(344393,42683,'blocks_0_link_stack_1_title','Define Your Career Goals'),(344394,42683,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(344395,42683,'blocks_0_link_stack_1_url','#define-your-career-goals'),(344396,42683,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(344397,42683,'blocks_0_link_stack_2_label','3.'),(344398,42683,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(344399,42683,'blocks_0_link_stack_2_title','Evaluate Course Content'),(344400,42683,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(344401,42683,'blocks_0_link_stack_2_url','#evaluate-course-content'),(344402,42683,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(344403,42683,'blocks_0_link_stack_3_label','4.'),(344404,42683,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(344405,42683,'blocks_0_link_stack_3_title','Accreditation and Recognition'),(344406,42683,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(344407,42683,'blocks_0_link_stack_3_url','#accreditation-and-recognition'),(344408,42683,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(344409,42683,'blocks_0_link_stack_4_label','5.'),(344410,42683,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(344411,42683,'blocks_0_link_stack_4_title','Experience & Opportunities'),(344412,42683,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(344413,42683,'blocks_0_link_stack_4_url','#experience-and-opportunities'),(344414,42683,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(344415,42683,'blocks_0_link_stack_5_label','6.'),(344416,42683,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(344417,42683,'blocks_0_link_stack_5_title','Evaluate Course Format and Flexibility'),(344418,42683,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(344419,42683,'blocks_0_link_stack_5_url','#course-format'),(344420,42683,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(344421,42683,'blocks_0_link_stack_6_label','7.'),(344422,42683,'_blocks_0_link_stack_6_label','field_6177b80900d00'),(344423,42683,'blocks_0_link_stack_6_title','Assess Tutor Expertise and Industry Connections'),(344424,42683,'_blocks_0_link_stack_6_title','field_6177b80f00d01'),(344425,42683,'blocks_0_link_stack_6_url','#tutor-expertise'),(344426,42683,'_blocks_0_link_stack_6_url','field_6177b82200d02'),(344427,42683,'blocks_0_link_stack_7_label','8.'),(344428,42683,'_blocks_0_link_stack_7_label','field_6177b80900d00'),(344429,42683,'blocks_0_link_stack_7_title','Compare Costs, Payment & Finance Options'),(344430,42683,'_blocks_0_link_stack_7_title','field_6177b80f00d01'),(344431,42683,'blocks_0_link_stack_7_url','#costs-and-payment'),(344432,42683,'_blocks_0_link_stack_7_url','field_6177b82200d02'),(344433,42683,'blocks_0_link_stack_8_label','9.'),(344434,42683,'_blocks_0_link_stack_8_label','field_6177b80900d00'),(344435,42683,'blocks_0_link_stack_8_title','Conclusion'),(344436,42683,'_blocks_0_link_stack_8_title','field_6177b80f00d01'),(344437,42683,'blocks_0_link_stack_8_url','#conclusion'),(344438,42683,'_blocks_0_link_stack_8_url','field_6177b82200d02'),(344439,42683,'blocks_0_link_stack','9'),(344440,42683,'_blocks_0_link_stack','field_6177b7f600cff'),(344441,42683,'blocks_1_acfe_flexible_toggle',''),(344442,42683,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344443,42683,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(344444,42683,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344445,42683,'blocks_1_options_theme','#f5f5f5'),(344446,42683,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(344447,42683,'blocks_1_options_reverse','0'),(344448,42683,'_blocks_1_options_reverse','field_61768049bb8ac'),(344449,42683,'blocks_1_options',''),(344450,42683,'_blocks_1_options','field_617682517c334'),(344451,42683,'blocks_1_split_5050_image','42678'),(344452,42683,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(344453,42683,'blocks_1_split_5050_video',''),(344454,42683,'_blocks_1_split_5050_video','field_6239f3160848a'),(344455,42683,'blocks_1_split_5050_content_title',''),(344456,42683,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(344457,42683,'blocks_1_split_5050_content_heading','Overview'),(344458,42683,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(344459,42683,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(344460,42683,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(344461,42683,'blocks_1_split_5050_content_actions',''),(344462,42683,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(344463,42683,'blocks_1_split_5050_content',''),(344464,42683,'_blocks_1_split_5050_content','field_61767afceb8ba'),(344465,42683,'blocks_2_acfe_flexible_toggle',''),(344466,42683,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(344467,42683,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(344468,42683,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(344469,42683,'blocks_2_options_theme','#ffffff'),(344470,42683,'_blocks_2_options_theme','field_6176830e2ad17'),(344471,42683,'blocks_2_options',''),(344472,42683,'_blocks_2_options','field_6176830e2ad16'),(344473,42683,'blocks_2_text_block_heading','Define Your Career Goals'),(344474,42683,'_blocks_2_text_block_heading','field_617669d413097'),(344475,42683,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(344476,42683,'_blocks_2_text_block_content','field_617669ec13098'),(344477,42683,'blocks_3_acfe_flexible_toggle',''),(344478,42683,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344479,42683,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(344480,42683,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344481,42683,'blocks_3_options_theme','#ffffff'),(344482,42683,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(344483,42683,'blocks_3_options_reverse','1'),(344484,42683,'_blocks_3_options_reverse','field_61768049bb8ac'),(344485,42683,'blocks_3_options',''),(344486,42683,'_blocks_3_options','field_617682517c334'),(344487,42683,'blocks_3_split_5050_image','31069'),(344488,42683,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(344489,42683,'blocks_3_split_5050_video',''),(344490,42683,'_blocks_3_split_5050_video','field_6239f3160848a'),(344491,42683,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(344492,42683,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(344493,42683,'blocks_3_split_5050_content_heading',''),(344494,42683,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(344495,42683,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(344496,42683,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(344497,42683,'blocks_3_split_5050_content_actions',''),(344498,42683,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(344499,42683,'blocks_3_split_5050_content',''),(344500,42683,'_blocks_3_split_5050_content','field_61767afceb8ba'),(344501,42683,'blocks_4_acfe_flexible_toggle',''),(344502,42683,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344503,42683,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(344504,42683,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344505,42683,'blocks_4_options_theme','#ffffff'),(344506,42683,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(344507,42683,'blocks_4_options_reverse','1'),(344508,42683,'_blocks_4_options_reverse','field_61768049bb8ac'),(344509,42683,'blocks_4_options',''),(344510,42683,'_blocks_4_options','field_617682517c334'),(344511,42683,'blocks_4_split_5050_image','27963'),(344512,42683,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(344513,42683,'blocks_4_split_5050_video',''),(344514,42683,'_blocks_4_split_5050_video','field_6239f3160848a'),(344515,42683,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(344516,42683,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(344517,42683,'blocks_4_split_5050_content_heading',''),(344518,42683,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(344519,42683,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(344520,42683,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(344521,42683,'blocks_4_split_5050_content_actions',''),(344522,42683,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(344523,42683,'blocks_4_split_5050_content',''),(344524,42683,'_blocks_4_split_5050_content','field_61767afceb8ba'),(344525,42683,'blocks_5_acfe_flexible_toggle',''),(344526,42683,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344527,42683,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(344528,42683,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344529,42683,'blocks_5_options_theme','#ffffff'),(344530,42683,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(344531,42683,'blocks_5_options_reverse','1'),(344532,42683,'_blocks_5_options_reverse','field_61768049bb8ac'),(344533,42683,'blocks_5_options',''),(344534,42683,'_blocks_5_options','field_617682517c334'),(344535,42683,'blocks_5_split_5050_image','35755'),(344536,42683,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(344537,42683,'blocks_5_split_5050_video',''),(344538,42683,'_blocks_5_split_5050_video','field_6239f3160848a'),(344539,42683,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(344540,42683,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(344541,42683,'blocks_5_split_5050_content_heading',''),(344542,42683,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(344543,42683,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(344544,42683,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(344545,42683,'blocks_5_split_5050_content_actions',''),(344546,42683,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(344547,42683,'blocks_5_split_5050_content',''),(344548,42683,'_blocks_5_split_5050_content','field_61767afceb8ba'),(344549,42683,'blocks_6_acfe_flexible_toggle',''),(344550,42683,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344551,42683,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(344552,42683,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344553,42683,'blocks_6_options_theme','#ffffff'),(344554,42683,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(344555,42683,'blocks_6_options_reverse','1'),(344556,42683,'_blocks_6_options_reverse','field_61768049bb8ac'),(344557,42683,'blocks_6_options',''),(344558,42683,'_blocks_6_options','field_617682517c334'),(344559,42683,'blocks_6_split_5050_image','39334'),(344560,42683,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(344561,42683,'blocks_6_split_5050_video',''),(344562,42683,'_blocks_6_split_5050_video','field_6239f3160848a'),(344563,42683,'blocks_6_split_5050_content_title','Research & Academia'),(344564,42683,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(344565,42683,'blocks_6_split_5050_content_heading',''),(344566,42683,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(344567,42683,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(344568,42683,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(344569,42683,'blocks_6_split_5050_content_actions',''),(344570,42683,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(344571,42683,'blocks_6_split_5050_content',''),(344572,42683,'_blocks_6_split_5050_content','field_61767afceb8ba'),(344573,42683,'blocks_7_acfe_flexible_toggle',''),(344574,42683,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(344575,42683,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(344576,42683,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(344577,42683,'blocks_7_options_theme','#f5f5f5'),(344578,42683,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(344579,42683,'blocks_7_options_state','0'),(344580,42683,'_blocks_7_options_state','field_6239fcb7508c5'),(344581,42683,'blocks_7_options',''),(344582,42683,'_blocks_7_options','field_6177e2991ac44'),(344583,42683,'blocks_7_content_title',''),(344584,42683,'_blocks_7_content_title','field_64d237e8bb1e2'),(344585,42683,'blocks_7_content_heading','Evaluate Course Content'),(344586,42683,'_blocks_7_content_heading','field_64d237e8bb1e3'),(344587,42683,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(344588,42683,'_blocks_7_content_text','field_64d237e8bb1e4'),(344589,42683,'blocks_7_content_actions',''),(344590,42683,'_blocks_7_content_actions','field_64d237e8bb1e5'),(344591,42683,'blocks_7_content_align','left'),(344592,42683,'_blocks_7_content_align','field_64d2443e6b6aa'),(344593,42683,'blocks_7_content',''),(344594,42683,'_blocks_7_content','field_64d237e8bb1e1'),(344595,42683,'blocks_7_accordion_content','custom'),(344596,42683,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(344597,42683,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(344598,42683,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(344599,42683,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(344600,42683,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(344601,42683,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(344602,42683,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(344603,42683,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(344604,42683,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(344605,42683,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(344606,42683,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(344607,42683,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(344608,42683,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(344609,42683,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(344610,42683,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(344611,42683,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(344612,42683,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(344613,42683,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(344614,42683,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(344615,42683,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(344616,42683,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(344617,42683,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(344618,42683,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(344619,42683,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(344620,42683,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(344621,42683,'blocks_7_accordion_items','6'),(344622,42683,'_blocks_7_accordion_items','field_6177e2991ac4c'),(344623,42683,'blocks_7_actions',''),(344624,42683,'_blocks_7_actions','field_61a746a817f7a'),(344625,42683,'blocks_8_acfe_flexible_toggle',''),(344626,42683,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(344627,42683,'blocks_8_acfe_flexible_layout_title','Accreditation and Recognition[anchor]'),(344628,42683,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(344629,42683,'blocks_8_options_theme','#b61234'),(344630,42683,'_blocks_8_options_theme','field_6176830e2ad17'),(344631,42683,'blocks_8_options',''),(344632,42683,'_blocks_8_options','field_6176830e2ad16'),(344633,42683,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(344634,42683,'_blocks_8_text_block_heading','field_617669d413097'),(344635,42683,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(344636,42683,'_blocks_8_text_block_content','field_617669ec13098'),(344637,42683,'blocks_9_acfe_flexible_toggle',''),(344638,42683,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(344639,42683,'blocks_9_acfe_flexible_layout_title','Icons'),(344640,42683,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(344641,42683,'blocks_9_options_theme','#b61234'),(344642,42683,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(344643,42683,'blocks_9_options_format','row'),(344644,42683,'_blocks_9_options_format','field_64bfde9a90690'),(344645,42683,'blocks_9_options',''),(344646,42683,'_blocks_9_options','field_64bfdd9b90684'),(344647,42683,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(344648,42683,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(344649,42683,'blocks_9_icon_row_items_0_label','Industry Recognition'),(344650,42683,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(344651,42683,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(344652,42683,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(344653,42683,'blocks_9_icon_row_items_1_icon','qualification.svg'),(344654,42683,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(344655,42683,'blocks_9_icon_row_items_1_label','University Accreditation'),(344656,42683,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(344657,42683,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(344658,42683,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(344659,42683,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(344660,42683,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(344661,42683,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(344662,42683,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(344663,42683,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(344664,42683,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(344665,42683,'blocks_9_icon_row_items','3'),(344666,42683,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(344667,42683,'blocks_10_acfe_flexible_toggle',''),(344668,42683,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(344669,42683,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(344670,42683,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(344671,42683,'blocks_10_options_theme','#ffffff'),(344672,42683,'_blocks_10_options_theme','field_6176830e2ad17'),(344673,42683,'blocks_10_options',''),(344674,42683,'_blocks_10_options','field_6176830e2ad16'),(344675,42683,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(344676,42683,'_blocks_10_text_block_heading','field_617669d413097'),(344677,42683,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(344678,42683,'_blocks_10_text_block_content','field_617669ec13098'),(344679,42683,'blocks_11_acfe_flexible_toggle',''),(344680,42683,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344681,42683,'blocks_11_acfe_flexible_layout_title','Opportunities (1) '),(344682,42683,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344683,42683,'blocks_11_options_theme','#ffffff'),(344684,42683,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(344685,42683,'blocks_11_options_reverse','0'),(344686,42683,'_blocks_11_options_reverse','field_61768049bb8ac'),(344687,42683,'blocks_11_options',''),(344688,42683,'_blocks_11_options','field_617682517c334'),(344689,42683,'blocks_11_split_5050_image','31614'),(344690,42683,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(344691,42683,'blocks_11_split_5050_video',''),(344692,42683,'_blocks_11_split_5050_video','field_6239f3160848a'),(344693,42683,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(344694,42683,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(344695,42683,'blocks_11_split_5050_content_heading',''),(344696,42683,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(344697,42683,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(344698,42683,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(344699,42683,'blocks_11_split_5050_content_actions',''),(344700,42683,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(344701,42683,'blocks_11_split_5050_content',''),(344702,42683,'_blocks_11_split_5050_content','field_61767afceb8ba'),(344703,42683,'blocks_12_acfe_flexible_toggle',''),(344704,42683,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344705,42683,'blocks_12_acfe_flexible_layout_title','Opportunities (2)'),(344706,42683,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344707,42683,'blocks_12_options_theme','#ffffff'),(344708,42683,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(344709,42683,'blocks_12_options_reverse','0'),(344710,42683,'_blocks_12_options_reverse','field_61768049bb8ac'),(344711,42683,'blocks_12_options',''),(344712,42683,'_blocks_12_options','field_617682517c334'),(344713,42683,'blocks_12_split_5050_image','42682'),(344714,42683,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(344715,42683,'blocks_12_split_5050_video',''),(344716,42683,'_blocks_12_split_5050_video','field_6239f3160848a'),(344717,42683,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(344718,42683,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(344719,42683,'blocks_12_split_5050_content_heading',''),(344720,42683,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(344721,42683,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(344722,42683,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(344723,42683,'blocks_12_split_5050_content_actions',''),(344724,42683,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(344725,42683,'blocks_12_split_5050_content',''),(344726,42683,'_blocks_12_split_5050_content','field_61767afceb8ba'),(344727,42683,'blocks_13_acfe_flexible_toggle',''),(344728,42683,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344729,42683,'blocks_13_acfe_flexible_layout_title','Opportunities (3)'),(344730,42683,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344731,42683,'blocks_13_options_theme','#ffffff'),(344732,42683,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(344733,42683,'blocks_13_options_reverse','0'),(344734,42683,'_blocks_13_options_reverse','field_61768049bb8ac'),(344735,42683,'blocks_13_options',''),(344736,42683,'_blocks_13_options','field_617682517c334'),(344737,42683,'blocks_13_split_5050_image','40310'),(344738,42683,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(344739,42683,'blocks_13_split_5050_video',''),(344740,42683,'_blocks_13_split_5050_video','field_6239f3160848a'),(344741,42683,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(344742,42683,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(344743,42683,'blocks_13_split_5050_content_heading',''),(344744,42683,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(344745,42683,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(344746,42683,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(344747,42683,'blocks_13_split_5050_content_actions',''),(344748,42683,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(344749,42683,'blocks_13_split_5050_content',''),(344750,42683,'_blocks_13_split_5050_content','field_61767afceb8ba'),(344751,42683,'blocks_14_acfe_flexible_toggle',''),(344752,42683,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344753,42683,'blocks_14_acfe_flexible_layout_title','Opportunities (4)'),(344754,42683,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344755,42683,'blocks_14_options_theme','#ffffff'),(344756,42683,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(344757,42683,'blocks_14_options_reverse','0'),(344758,42683,'_blocks_14_options_reverse','field_61768049bb8ac'),(344759,42683,'blocks_14_options',''),(344760,42683,'_blocks_14_options','field_617682517c334'),(344761,42683,'blocks_14_split_5050_image','39483'),(344762,42683,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(344763,42683,'blocks_14_split_5050_video',''),(344764,42683,'_blocks_14_split_5050_video','field_6239f3160848a'),(344765,42683,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(344766,42683,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(344767,42683,'blocks_14_split_5050_content_heading',''),(344768,42683,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(344769,42683,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(344770,42683,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(344771,42683,'blocks_14_split_5050_content_actions',''),(344772,42683,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(344773,42683,'blocks_14_split_5050_content',''),(344774,42683,'_blocks_14_split_5050_content','field_61767afceb8ba'),(344775,42683,'blocks_15_acfe_flexible_toggle',''),(344776,42683,'_blocks_15_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(344777,42683,'blocks_15_acfe_flexible_layout_title','Course Format[anchor]'),(344778,42683,'_blocks_15_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(344779,42683,'blocks_15_options_theme','#f5f5f5'),(344780,42683,'_blocks_15_options_theme','field_6177de53d1196_field_6176830e2ad17'),(344781,42683,'blocks_15_options',''),(344782,42683,'_blocks_15_options','field_6177de53d1195'),(344783,42683,'blocks_15_timeline_content_title',''),(344784,42683,'_blocks_15_timeline_content_title','field_6177de53d1198'),(344785,42683,'blocks_15_timeline_content_heading','Evaluate Course Format and Flexibility'),(344786,42683,'_blocks_15_timeline_content_heading','field_6177de53d1199'),(344787,42683,'blocks_15_timeline_content_text','Biomechanics courses can vary in structure, offering different formats to accommodate students with varying schedules, learning preferences, and career commitments. Whether you’re looking for a full-time degree, a part-time professional development course, or an online programme that fits around your work, understanding the course format is essential in making the right choice. A well-structured course should provide a balance of flexibility and practical engagement, ensuring you gain the knowledge and hands-on experience needed for your career.\r\n\r\nWhen considering a biomechanics course, think about how the course format aligns with your lifestyle and career ambitions. Below are some key factors to evaluate when selecting the right learning structure.'),(344788,42683,'_blocks_15_timeline_content_text','field_6177de53d119a'),(344789,42683,'blocks_15_timeline_content_actions',''),(344790,42683,'_blocks_15_timeline_content_actions','field_6177de53d119b'),(344791,42683,'blocks_15_timeline_content',''),(344792,42683,'_blocks_15_timeline_content','field_6177de53d1197'),(344793,42683,'blocks_15_timeline_items_0_title','Full-Time vs. Part-Time Study'),(344794,42683,'_blocks_15_timeline_items_0_title','field_6177de53d119f'),(344795,42683,'blocks_15_timeline_items_0_text','Full-time biomechanics courses offer an immersive learning experience, allowing students to complete their qualifications more quickly. However, part-time courses can be beneficial for those who are already working in the field and want to upskill while maintaining their job. Choosing between these options depends on your availability, learning pace, and career progression plans.'),(344796,42683,'_blocks_15_timeline_items_0_text','field_6177de53d11a0'),(344797,42683,'blocks_15_timeline_items_1_title','Online, In-Person, and Hybrid Learning'),(344798,42683,'_blocks_15_timeline_items_1_title','field_6177de53d119f'),(344799,42683,'blocks_15_timeline_items_1_text','While some biomechanics courses are delivered entirely in-person, others incorporate online modules to provide greater flexibility. Online learning can be useful for covering theoretical concepts, but biomechanics is a highly practical subject, meaning hybrid programmes that include both online theory and in-person practical sessions can be the most effective for building applied skills.'),(344800,42683,'_blocks_15_timeline_items_1_text','field_6177de53d11a0'),(344801,42683,'blocks_15_timeline_items_2_title','Degree Level and Course Duration'),(344802,42683,'_blocks_15_timeline_items_2_title','field_6177de53d119f'),(344803,42683,'blocks_15_timeline_items_2_text','Depending on your career goals, you may need to choose between a short biomechanics certification, a diploma, or a full degree (BSc, MSc, or PhD). Short courses and diplomas are useful for professionals looking to specialise or upskill, while degree-level courses provide a more in-depth understanding of biomechanics, research methods, and applied movement science.'),(344804,42683,'_blocks_15_timeline_items_2_text','field_6177de53d11a0'),(344805,42683,'blocks_15_timeline_items','3'),(344806,42683,'_blocks_15_timeline_items','field_6177de53d119d'),(344807,42683,'blocks_16_acfe_flexible_toggle',''),(344808,42683,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(344809,42683,'blocks_16_acfe_flexible_layout_title','Tutor Expertise[anchor] '),(344810,42683,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(344811,42683,'blocks_16_options_theme','#ffffff'),(344812,42683,'_blocks_16_options_theme','field_6176830e2ad17'),(344813,42683,'blocks_16_options',''),(344814,42683,'_blocks_16_options','field_6176830e2ad16'),(344815,42683,'blocks_16_text_block_heading','Assess Tutor Expertise and Industry Connections'),(344816,42683,'_blocks_16_text_block_heading','field_617669d413097'),(344817,42683,'blocks_16_text_block_content','The quality of a biomechanics course is not just determined by its content but also by the expertise of the tutors delivering it and the industry connections it provides. Learning from experienced professionals with strong backgrounds in biomechanics, sports science, rehabilitation, or engineering ensures that you receive relevant, up-to-date knowledge that aligns with industry standards. Additionally, courses with strong industry links can open doors to valuable networking opportunities, mentorship, and potential career placements.\r\n\r\nWhen evaluating a biomechanics course, consider the credibility of the teaching staff and the programme’s industry connections. Below are key factors to assess.'),(344818,42683,'_blocks_16_text_block_content','field_617669ec13098'),(344819,42683,'blocks_17_acfe_flexible_toggle',''),(344820,42683,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344821,42683,'blocks_17_acfe_flexible_layout_title','Experienced Training Providers'),(344822,42683,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344823,42683,'blocks_17_options_theme','#ffffff'),(344824,42683,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(344825,42683,'blocks_17_options_reverse','1'),(344826,42683,'_blocks_17_options_reverse','field_61768049bb8ac'),(344827,42683,'blocks_17_options',''),(344828,42683,'_blocks_17_options','field_617682517c334'),(344829,42683,'blocks_17_split_5050_image','41330'),(344830,42683,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(344831,42683,'blocks_17_split_5050_video',''),(344832,42683,'_blocks_17_split_5050_video','field_6239f3160848a'),(344833,42683,'blocks_17_split_5050_content_title','Experienced Training Providers'),(344834,42683,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(344835,42683,'blocks_17_split_5050_content_heading',''),(344836,42683,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(344837,42683,'blocks_17_split_5050_content_text','Tutors with extensive experience in biomechanics bring real-world insights to the classroom, bridging the gap between theory and practice. Look for instructors with backgrounds in academia, professional sports, rehabilitation, or biomechanics research, as their expertise can enhance the learning experience.'),(344838,42683,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(344839,42683,'blocks_17_split_5050_content_actions',''),(344840,42683,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(344841,42683,'blocks_17_split_5050_content',''),(344842,42683,'_blocks_17_split_5050_content','field_61767afceb8ba'),(344843,42683,'blocks_18_acfe_flexible_toggle',''),(344844,42683,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344845,42683,'blocks_18_acfe_flexible_layout_title','Industry Collaborations and Professional Networks'),(344846,42683,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344847,42683,'blocks_18_options_theme','#ffffff'),(344848,42683,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(344849,42683,'blocks_18_options_reverse','1'),(344850,42683,'_blocks_18_options_reverse','field_61768049bb8ac'),(344851,42683,'blocks_18_options',''),(344852,42683,'_blocks_18_options','field_617682517c334'),(344853,42683,'blocks_18_split_5050_image','31747'),(344854,42683,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(344855,42683,'blocks_18_split_5050_video',''),(344856,42683,'_blocks_18_split_5050_video','field_6239f3160848a'),(344857,42683,'blocks_18_split_5050_content_title','Industry Collaborations and Professional Networks'),(344858,42683,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(344859,42683,'blocks_18_split_5050_content_heading',''),(344860,42683,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(344861,42683,'blocks_18_split_5050_content_text','Courses that have partnerships with sports teams, healthcare organisations, universities, or biomechanics companies provide students with access to industry professionals and potential career opportunities. These collaborations can also lead to internships, research projects, or direct job placements after completing the course.'),(344862,42683,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(344863,42683,'blocks_18_split_5050_content_actions',''),(344864,42683,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(344865,42683,'blocks_18_split_5050_content',''),(344866,42683,'_blocks_18_split_5050_content','field_61767afceb8ba'),(344867,42683,'blocks_19_acfe_flexible_toggle',''),(344868,42683,'_blocks_19_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344869,42683,'blocks_19_acfe_flexible_layout_title','Graduate Success and Alumni Network'),(344870,42683,'_blocks_19_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344871,42683,'blocks_19_options_theme','#ffffff'),(344872,42683,'_blocks_19_options_theme','field_617682847c335_field_6176830e2ad17'),(344873,42683,'blocks_19_options_reverse','1'),(344874,42683,'_blocks_19_options_reverse','field_61768049bb8ac'),(344875,42683,'blocks_19_options',''),(344876,42683,'_blocks_19_options','field_617682517c334'),(344877,42683,'blocks_19_split_5050_image','41312'),(344878,42683,'_blocks_19_split_5050_image','field_6239f527a0c3a'),(344879,42683,'blocks_19_split_5050_video',''),(344880,42683,'_blocks_19_split_5050_video','field_6239f3160848a'),(344881,42683,'blocks_19_split_5050_content_title','Graduate Success and Alumni Network'),(344882,42683,'_blocks_19_split_5050_content_title','field_61767bfca3fc0'),(344883,42683,'blocks_19_split_5050_content_heading',''),(344884,42683,'_blocks_19_split_5050_content_heading','field_61767b26eb8bb'),(344885,42683,'blocks_19_split_5050_content_text','A strong alumni network and positive graduate success stories indicate the effectiveness of a biomechanics course. Research where previous students have progressed in their careers, as this can provide insight into the opportunities available after completing the programme.'),(344886,42683,'_blocks_19_split_5050_content_text','field_61767b3beb8bc'),(344887,42683,'blocks_19_split_5050_content_actions',''),(344888,42683,'_blocks_19_split_5050_content_actions','field_61767b68eb8bd'),(344889,42683,'blocks_19_split_5050_content',''),(344890,42683,'_blocks_19_split_5050_content','field_61767afceb8ba'),(344891,42683,'blocks_20_acfe_flexible_toggle',''),(344892,42683,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(344893,42683,'blocks_20_acfe_flexible_layout_title','Costs and Payment[anchor]'),(344894,42683,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(344895,42683,'blocks_20_options_theme','#b61234'),(344896,42683,'_blocks_20_options_theme','field_6176830e2ad17'),(344897,42683,'blocks_20_options',''),(344898,42683,'_blocks_20_options','field_6176830e2ad16'),(344899,42683,'blocks_20_text_block_heading','Compare Costs, Payment & Finance Options'),(344900,42683,'_blocks_20_text_block_heading','field_617669d413097'),(344901,42683,'blocks_20_text_block_content','Biomechanics courses can vary significantly in cost, depending on factors such as course level, institution, and delivery format. While investing in your education is important, it’s equally essential to choose a course that provides good value for money and aligns with your career goals. Understanding the financial commitment involved and exploring available funding options can help you make an informed decision without unnecessary financial strain.'),(344902,42683,'_blocks_20_text_block_content','field_617669ec13098'),(344903,42683,'blocks_21_acfe_flexible_toggle',''),(344904,42683,'_blocks_21_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(344905,42683,'blocks_21_acfe_flexible_layout_title','Icons - Costs and Payment'),(344906,42683,'_blocks_21_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(344907,42683,'blocks_21_options_theme','#b61234'),(344908,42683,'_blocks_21_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(344909,42683,'blocks_21_options_format','row'),(344910,42683,'_blocks_21_options_format','field_64bfde9a90690'),(344911,42683,'blocks_21_options',''),(344912,42683,'_blocks_21_options','field_64bfdd9b90684'),(344913,42683,'blocks_21_icon_row_items_0_icon','payment-plans.svg'),(344914,42683,'_blocks_21_icon_row_items_0_icon','field_64bfdd9b9068d'),(344915,42683,'blocks_21_icon_row_items_0_label','Course Costs'),(344916,42683,'_blocks_21_icon_row_items_0_label','field_64bfdd9c9068e'),(344917,42683,'blocks_21_icon_row_items_0_text','Compare costs across providers to find an option that fits your budget.'),(344918,42683,'_blocks_21_icon_row_items_0_text','field_64bfdd9c9068f'),(344919,42683,'blocks_21_icon_row_items_1_icon','start-earning-in.svg'),(344920,42683,'_blocks_21_icon_row_items_1_icon','field_64bfdd9b9068d'),(344921,42683,'blocks_21_icon_row_items_1_label','Grants'),(344922,42683,'_blocks_21_icon_row_items_1_label','field_64bfdd9c9068e'),(344923,42683,'blocks_21_icon_row_items_1_text','Some universities may offer financial aid for biomechanics students, especially in research-intensive programmes.'),(344924,42683,'_blocks_21_icon_row_items_1_text','field_64bfdd9c9068f'),(344925,42683,'blocks_21_icon_row_items_2_icon','return-on-investment-1.svg'),(344926,42683,'_blocks_21_icon_row_items_2_icon','field_64bfdd9b9068d'),(344927,42683,'blocks_21_icon_row_items_2_label','Return on Investment'),(344928,42683,'_blocks_21_icon_row_items_2_label','field_64bfdd9c9068e'),(344929,42683,'blocks_21_icon_row_items_2_text','Consider the earning potential in your chosen biomechanics career and whether the programme justifies the cost.'),(344930,42683,'_blocks_21_icon_row_items_2_text','field_64bfdd9c9068f'),(344931,42683,'blocks_21_icon_row_items','3'),(344932,42683,'_blocks_21_icon_row_items','field_64bfdd9b9068c'),(344933,42683,'blocks_22_acfe_flexible_toggle',''),(344934,42683,'_blocks_22_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(344935,42683,'blocks_22_acfe_flexible_layout_title','Conclusion[anchor]'),(344936,42683,'_blocks_22_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(344937,42683,'blocks_22_options_theme','#ffffff'),(344938,42683,'_blocks_22_options_theme','field_617682847c335_field_6176830e2ad17'),(344939,42683,'blocks_22_options_reverse','1'),(344940,42683,'_blocks_22_options_reverse','field_61768049bb8ac'),(344941,42683,'blocks_22_options',''),(344942,42683,'_blocks_22_options','field_617682517c334'),(344943,42683,'blocks_22_split_5050_image','42679'),(344944,42683,'_blocks_22_split_5050_image','field_6239f527a0c3a'),(344945,42683,'blocks_22_split_5050_video',''),(344946,42683,'_blocks_22_split_5050_video','field_6239f3160848a'),(344947,42683,'blocks_22_split_5050_content_title',''),(344948,42683,'_blocks_22_split_5050_content_title','field_61767bfca3fc0'),(344949,42683,'blocks_22_split_5050_content_heading','Conclusion'),(344950,42683,'_blocks_22_split_5050_content_heading','field_61767b26eb8bb'),(344951,42683,'blocks_22_split_5050_content_text','Choosing the right biomechanics course is a key step in shaping your career and expanding your expertise in human movement. With so many options available, it’s important to take the time to evaluate courses based on your career goals, the content they offer, accreditation, practical learning opportunities, and industry connections. A well-structured course should provide both theoretical knowledge and hands-on experience, ensuring that you develop the skills needed to apply biomechanics effectively in your chosen field.\r\n\r\nBy considering factors such as course format, tutor expertise, financial investment, and long-term career prospects, you can make an informed decision that aligns with your aspirations. Take the time to research programmes, speak with faculty or alumni, and explore available learning pathways to find the biomechanics course that best supports your professional development.'),(344952,42683,'_blocks_22_split_5050_content_text','field_61767b3beb8bc'),(344953,42683,'blocks_22_split_5050_content_actions',''),(344954,42683,'_blocks_22_split_5050_content_actions','field_61767b68eb8bd'),(344955,42683,'blocks_22_split_5050_content',''),(344956,42683,'_blocks_22_split_5050_content','field_61767afceb8ba'),(344957,42683,'blocks_23_acfe_flexible_toggle',''),(344958,42683,'_blocks_23_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(344959,42683,'blocks_23_acfe_flexible_layout_title','Promo Panel'),(344960,42683,'_blocks_23_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(344961,42683,'blocks_23_options_alignment','center'),(344962,42683,'_blocks_23_options_alignment','field_61769449f5490'),(344963,42683,'blocks_23_options',''),(344964,42683,'_blocks_23_options','field_617693e1428f0'),(344965,42683,'blocks_23_promo_panel_image','41307'),(344966,42683,'_blocks_23_promo_panel_image','field_617693e1428f3'),(344967,42683,'blocks_23_promo_panel_content_heading','Want to Get Started?'),(344968,42683,'_blocks_23_promo_panel_content_heading','field_617693e1428f6'),(344969,42683,'blocks_23_promo_panel_content_text','Would you like help finding a biomechanics course tailored to your career goals? Get in touch to explore your options and take the next step in your biomechanics journey.'),(344970,42683,'_blocks_23_promo_panel_content_text','field_617693e1428f7'),(344971,42683,'blocks_23_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(344972,42683,'_blocks_23_promo_panel_content_actions_0_button','field_617693e1428f9'),(344973,42683,'blocks_23_promo_panel_content_actions','1'),(344974,42683,'_blocks_23_promo_panel_content_actions','field_617693e1428f8'),(344975,42683,'blocks_23_promo_panel_content',''),(344976,42683,'_blocks_23_promo_panel_content','field_617693e1428f4'),(344977,42683,'blocks','a:24:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:13:\"step_timeline\";i:16;s:10:\"text_block\";i:17;s:10:\"split_5050\";i:18;s:10:\"split_5050\";i:19;s:10:\"split_5050\";i:20;s:10:\"text_block\";i:21;s:5:\"icons\";i:22;s:10:\"split_5050\";i:23;s:11:\"promo_panel\";}'),(344978,42683,'_blocks','field_6176696113096'),(344979,42683,'_acf_changed','1'),(344981,42684,'hide_hero','0'),(344982,42684,'_hide_hero','field_66a2380fcda39'),(344983,42684,'hero_title',''),(344984,42684,'_hero_title','field_617571fe285e8'),(344985,42684,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(344986,42684,'_hero_text','field_6175723c285e9'),(344987,42684,'hero_actions',''),(344988,42684,'_hero_actions','field_61757270285ea'),(344989,42684,'hero_style','default'),(344990,42684,'_hero_style','field_62051d9dc5324'),(344991,42684,'hero_image_pos_x','right'),(344992,42684,'_hero_image_pos_x','field_62ec3d05390bb'),(344993,42684,'hero_image_pos_y','top'),(344994,42684,'_hero_image_pos_y','field_62ec3d05390bc'),(344995,42684,'hero_image_pos',''),(344996,42684,'_hero_image_pos','field_62ec3d05390ba'),(344997,42684,'fft_hide_from_listings','0'),(344998,42684,'_fft_hide_from_listings','field_61f1320446ab2'),(344999,42684,'post_format','402'),(345000,42684,'_post_format','field_61756bfb51898'),(345001,42684,'post_author',''),(345002,42684,'_post_author','field_62ec389d22113'),(345003,42684,'post_reviewer',''),(345004,42684,'_post_reviewer','field_627140a2a9800'),(345005,42684,'post_table_of_contents','0'),(345006,42684,'_post_table_of_contents','field_65c503bc846a6'),(345007,42684,'blocks','a:24:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:13:\"step_timeline\";i:16;s:10:\"text_block\";i:17;s:10:\"split_5050\";i:18;s:10:\"split_5050\";i:19;s:10:\"split_5050\";i:20;s:10:\"text_block\";i:21;s:5:\"icons\";i:22;s:10:\"split_5050\";i:23;s:11:\"promo_panel\";}'),(345008,42684,'_blocks','field_6176696113096'),(345009,42684,'_thumbnail_id','42680'),(345010,42684,'__thumbnail_id','field_617570855ddaf'),(345011,42684,'blocks_0_acfe_flexible_toggle',''),(345012,42684,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(345013,42684,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(345014,42684,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(345015,42684,'blocks_0_options_theme','#ffffff'),(345016,42684,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(345017,42684,'blocks_0_options',''),(345018,42684,'_blocks_0_options','field_6177b758246ae'),(345019,42684,'blocks_0_link_stack_content_title',''),(345020,42684,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(345021,42684,'blocks_0_link_stack_content_heading','Introduction'),(345022,42684,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(345023,42684,'blocks_0_link_stack_content_text','This guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(345024,42684,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(345025,42684,'blocks_0_link_stack_content_actions_0_button',''),(345026,42684,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(345027,42684,'blocks_0_link_stack_content_actions','1'),(345028,42684,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(345029,42684,'blocks_0_link_stack_content',''),(345030,42684,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(345031,42684,'blocks_0_link_stack_0_label','1.'),(345032,42684,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(345033,42684,'blocks_0_link_stack_0_title','Overview'),(345034,42684,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(345035,42684,'blocks_0_link_stack_0_url','#overview'),(345036,42684,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(345037,42684,'blocks_0_link_stack_1_label','2.'),(345038,42684,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(345039,42684,'blocks_0_link_stack_1_title','Define Your Career Goals'),(345040,42684,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(345041,42684,'blocks_0_link_stack_1_url','#define-your-career-goals'),(345042,42684,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(345043,42684,'blocks_0_link_stack_2_label','3.'),(345044,42684,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(345045,42684,'blocks_0_link_stack_2_title','Evaluate Course Content'),(345046,42684,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(345047,42684,'blocks_0_link_stack_2_url','#evaluate-course-content'),(345048,42684,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(345049,42684,'blocks_0_link_stack_3_label','4.'),(345050,42684,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(345051,42684,'blocks_0_link_stack_3_title','Accreditation and Recognition'),(345052,42684,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(345053,42684,'blocks_0_link_stack_3_url','#accreditation-and-recognition'),(345054,42684,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(345055,42684,'blocks_0_link_stack_4_label','5.'),(345056,42684,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(345057,42684,'blocks_0_link_stack_4_title','Experience & Opportunities'),(345058,42684,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(345059,42684,'blocks_0_link_stack_4_url','#experience-and-opportunities'),(345060,42684,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(345061,42684,'blocks_0_link_stack_5_label','6.'),(345062,42684,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(345063,42684,'blocks_0_link_stack_5_title','Evaluate Course Format and Flexibility'),(345064,42684,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(345065,42684,'blocks_0_link_stack_5_url','#course-format'),(345066,42684,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(345067,42684,'blocks_0_link_stack','9'),(345068,42684,'_blocks_0_link_stack','field_6177b7f600cff'),(345069,42684,'blocks_1_acfe_flexible_toggle',''),(345070,42684,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345071,42684,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(345072,42684,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345073,42684,'blocks_1_options_theme','#f5f5f5'),(345074,42684,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(345075,42684,'blocks_1_options_reverse','0'),(345076,42684,'_blocks_1_options_reverse','field_61768049bb8ac'),(345077,42684,'blocks_1_options',''),(345078,42684,'_blocks_1_options','field_617682517c334'),(345079,42684,'blocks_1_split_5050_image','42678'),(345080,42684,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(345081,42684,'blocks_1_split_5050_video',''),(345082,42684,'_blocks_1_split_5050_video','field_6239f3160848a'),(345083,42684,'blocks_1_split_5050_content_title',''),(345084,42684,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(345085,42684,'blocks_1_split_5050_content_heading','Overview'),(345086,42684,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(345087,42684,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(345088,42684,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(345089,42684,'blocks_1_split_5050_content_actions',''),(345090,42684,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(345091,42684,'blocks_1_split_5050_content',''),(345092,42684,'_blocks_1_split_5050_content','field_61767afceb8ba'),(345093,42684,'blocks_3_acfe_flexible_toggle',''),(345094,42684,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345095,42684,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(345096,42684,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345097,42684,'blocks_3_options_theme','#ffffff'),(345098,42684,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(345099,42684,'blocks_3_options_reverse','1'),(345100,42684,'_blocks_3_options_reverse','field_61768049bb8ac'),(345101,42684,'blocks_3_options',''),(345102,42684,'_blocks_3_options','field_617682517c334'),(345103,42684,'blocks_3_split_5050_image','31069'),(345104,42684,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(345105,42684,'blocks_3_split_5050_video',''),(345106,42684,'_blocks_3_split_5050_video','field_6239f3160848a'),(345107,42684,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(345108,42684,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(345109,42684,'blocks_3_split_5050_content_heading',''),(345110,42684,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(345111,42684,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(345112,42684,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(345113,42684,'blocks_3_split_5050_content_actions',''),(345114,42684,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(345115,42684,'blocks_3_split_5050_content',''),(345116,42684,'_blocks_3_split_5050_content','field_61767afceb8ba'),(345117,42684,'blocks_13_acfe_flexible_toggle',''),(345118,42684,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345119,42684,'blocks_13_acfe_flexible_layout_title','Opportunities (3)'),(345120,42684,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345121,42684,'blocks_13_options_theme','#ffffff'),(345122,42684,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(345123,42684,'blocks_13_options_reverse','0'),(345124,42684,'_blocks_13_options_reverse','field_61768049bb8ac'),(345125,42684,'blocks_13_options',''),(345126,42684,'_blocks_13_options','field_617682517c334'),(345127,42684,'blocks_13_split_5050_image','40310'),(345128,42684,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(345129,42684,'blocks_13_split_5050_video',''),(345130,42684,'_blocks_13_split_5050_video','field_6239f3160848a'),(345131,42684,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(345132,42684,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(345133,42684,'blocks_13_split_5050_content_heading',''),(345134,42684,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(345135,42684,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(345136,42684,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(345137,42684,'blocks_13_split_5050_content_actions',''),(345138,42684,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(345139,42684,'blocks_13_split_5050_content',''),(345140,42684,'_blocks_13_split_5050_content','field_61767afceb8ba'),(345141,42684,'blocks_6_acfe_flexible_toggle',''),(345142,42684,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345143,42684,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(345144,42684,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345145,42684,'blocks_6_options_theme','#ffffff'),(345146,42684,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(345147,42684,'blocks_6_options_reverse','1'),(345148,42684,'_blocks_6_options_reverse','field_61768049bb8ac'),(345149,42684,'blocks_6_options',''),(345150,42684,'_blocks_6_options','field_617682517c334'),(345151,42684,'blocks_6_split_5050_image','39334'),(345152,42684,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(345153,42684,'blocks_6_split_5050_video',''),(345154,42684,'_blocks_6_split_5050_video','field_6239f3160848a'),(345155,42684,'blocks_6_split_5050_content_title','Research & Academia'),(345156,42684,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(345157,42684,'blocks_6_split_5050_content_heading',''),(345158,42684,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(345159,42684,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(345160,42684,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(345161,42684,'blocks_6_split_5050_content_actions',''),(345162,42684,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(345163,42684,'blocks_6_split_5050_content',''),(345164,42684,'_blocks_6_split_5050_content','field_61767afceb8ba'),(345165,42684,'blocks_5_acfe_flexible_toggle',''),(345166,42684,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345167,42684,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(345168,42684,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345169,42684,'blocks_5_options_theme','#ffffff'),(345170,42684,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(345171,42684,'blocks_5_options_reverse','1'),(345172,42684,'_blocks_5_options_reverse','field_61768049bb8ac'),(345173,42684,'blocks_5_options',''),(345174,42684,'_blocks_5_options','field_617682517c334'),(345175,42684,'blocks_5_split_5050_image','35755'),(345176,42684,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(345177,42684,'blocks_5_split_5050_video',''),(345178,42684,'_blocks_5_split_5050_video','field_6239f3160848a'),(345179,42684,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(345180,42684,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(345181,42684,'blocks_5_split_5050_content_heading',''),(345182,42684,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(345183,42684,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(345184,42684,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(345185,42684,'blocks_5_split_5050_content_actions',''),(345186,42684,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(345187,42684,'blocks_5_split_5050_content',''),(345188,42684,'_blocks_5_split_5050_content','field_61767afceb8ba'),(345189,42684,'blocks_14_acfe_flexible_toggle',''),(345190,42684,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345191,42684,'blocks_14_acfe_flexible_layout_title','Opportunities (4)'),(345192,42684,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345193,42684,'blocks_14_options_theme','#ffffff'),(345194,42684,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(345195,42684,'blocks_14_options_reverse','0'),(345196,42684,'_blocks_14_options_reverse','field_61768049bb8ac'),(345197,42684,'blocks_14_options',''),(345198,42684,'_blocks_14_options','field_617682517c334'),(345199,42684,'blocks_14_split_5050_image','39483'),(345200,42684,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(345201,42684,'blocks_14_split_5050_video',''),(345202,42684,'_blocks_14_split_5050_video','field_6239f3160848a'),(345203,42684,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(345204,42684,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(345205,42684,'blocks_14_split_5050_content_heading',''),(345206,42684,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(345207,42684,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(345208,42684,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(345209,42684,'blocks_14_split_5050_content_actions',''),(345210,42684,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(345211,42684,'blocks_14_split_5050_content',''),(345212,42684,'_blocks_14_split_5050_content','field_61767afceb8ba'),(345213,42684,'blocks_20_acfe_flexible_toggle',''),(345214,42684,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(345215,42684,'blocks_20_acfe_flexible_layout_title','Costs and Payment[anchor]'),(345216,42684,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(345217,42684,'blocks_20_options_theme','#b61234'),(345218,42684,'_blocks_20_options_theme','field_6176830e2ad17'),(345219,42684,'blocks_20_options',''),(345220,42684,'_blocks_20_options','field_6176830e2ad16'),(345221,42684,'blocks_20_text_block_heading','Compare Costs, Payment & Finance Options'),(345222,42684,'_blocks_20_text_block_heading','field_617669d413097'),(345223,42684,'blocks_20_text_block_content','Biomechanics courses can vary significantly in cost, depending on factors such as course level, institution, and delivery format. While investing in your education is important, it’s equally essential to choose a course that provides good value for money and aligns with your career goals. Understanding the financial commitment involved and exploring available funding options can help you make an informed decision without unnecessary financial strain.'),(345224,42684,'_blocks_20_text_block_content','field_617669ec13098'),(345225,42684,'blocks_10_acfe_flexible_toggle',''),(345226,42684,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(345227,42684,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(345228,42684,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(345229,42684,'blocks_10_options_theme','#ffffff'),(345230,42684,'_blocks_10_options_theme','field_6176830e2ad17'),(345231,42684,'blocks_10_options',''),(345232,42684,'_blocks_10_options','field_6176830e2ad16'),(345233,42684,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(345234,42684,'_blocks_10_text_block_heading','field_617669d413097'),(345235,42684,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(345236,42684,'_blocks_10_text_block_content','field_617669ec13098'),(345237,42684,'blocks_2_acfe_flexible_toggle',''),(345238,42684,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(345239,42684,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(345240,42684,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(345241,42684,'blocks_2_options_theme','#ffffff'),(345242,42684,'_blocks_2_options_theme','field_6176830e2ad17'),(345243,42684,'blocks_2_options',''),(345244,42684,'_blocks_2_options','field_6176830e2ad16'),(345245,42684,'blocks_2_text_block_heading','Define Your Career Goals'),(345246,42684,'_blocks_2_text_block_heading','field_617669d413097'),(345247,42684,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(345248,42684,'_blocks_2_text_block_content','field_617669ec13098'),(345249,42684,'blocks_4_acfe_flexible_toggle',''),(345250,42684,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345251,42684,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(345252,42684,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345253,42684,'blocks_4_options_theme','#ffffff'),(345254,42684,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(345255,42684,'blocks_4_options_reverse','1'),(345256,42684,'_blocks_4_options_reverse','field_61768049bb8ac'),(345257,42684,'blocks_4_options',''),(345258,42684,'_blocks_4_options','field_617682517c334'),(345259,42684,'blocks_4_split_5050_image','27963'),(345260,42684,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(345261,42684,'blocks_4_split_5050_video',''),(345262,42684,'_blocks_4_split_5050_video','field_6239f3160848a'),(345263,42684,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(345264,42684,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(345265,42684,'blocks_4_split_5050_content_heading',''),(345266,42684,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(345267,42684,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(345268,42684,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(345269,42684,'blocks_4_split_5050_content_actions',''),(345270,42684,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(345271,42684,'blocks_4_split_5050_content',''),(345272,42684,'_blocks_4_split_5050_content','field_61767afceb8ba'),(345273,42684,'blocks_7_acfe_flexible_toggle',''),(345274,42684,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(345275,42684,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(345276,42684,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(345277,42684,'blocks_7_options_theme','#f5f5f5'),(345278,42684,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(345279,42684,'blocks_7_options_state','0'),(345280,42684,'_blocks_7_options_state','field_6239fcb7508c5'),(345281,42684,'blocks_7_options',''),(345282,42684,'_blocks_7_options','field_6177e2991ac44'),(345283,42684,'blocks_7_content_title',''),(345284,42684,'_blocks_7_content_title','field_64d237e8bb1e2'),(345285,42684,'blocks_7_content_heading','Evaluate Course Content'),(345286,42684,'_blocks_7_content_heading','field_64d237e8bb1e3'),(345287,42684,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(345288,42684,'_blocks_7_content_text','field_64d237e8bb1e4'),(345289,42684,'blocks_7_content_actions',''),(345290,42684,'_blocks_7_content_actions','field_64d237e8bb1e5'),(345291,42684,'blocks_7_content_align','left'),(345292,42684,'_blocks_7_content_align','field_64d2443e6b6aa'),(345293,42684,'blocks_7_content',''),(345294,42684,'_blocks_7_content','field_64d237e8bb1e1'),(345295,42684,'blocks_7_accordion_content','custom'),(345296,42684,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(345297,42684,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(345298,42684,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(345299,42684,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(345300,42684,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(345301,42684,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(345302,42684,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(345303,42684,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(345304,42684,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(345305,42684,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(345306,42684,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(345307,42684,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(345308,42684,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(345309,42684,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(345310,42684,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(345311,42684,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(345312,42684,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(345313,42684,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(345314,42684,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(345315,42684,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(345316,42684,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(345317,42684,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(345318,42684,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(345319,42684,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(345320,42684,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(345321,42684,'blocks_7_accordion_items','6'),(345322,42684,'_blocks_7_accordion_items','field_6177e2991ac4c'),(345323,42684,'blocks_7_actions',''),(345324,42684,'_blocks_7_actions','field_61a746a817f7a'),(345325,42684,'blocks_8_acfe_flexible_toggle',''),(345326,42684,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(345327,42684,'blocks_8_acfe_flexible_layout_title','Accreditation and Recognition[anchor]'),(345328,42684,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(345329,42684,'blocks_8_options_theme','#b61234'),(345330,42684,'_blocks_8_options_theme','field_6176830e2ad17'),(345331,42684,'blocks_8_options',''),(345332,42684,'_blocks_8_options','field_6176830e2ad16'),(345333,42684,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(345334,42684,'_blocks_8_text_block_heading','field_617669d413097'),(345335,42684,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(345336,42684,'_blocks_8_text_block_content','field_617669ec13098'),(345337,42684,'blocks_9_acfe_flexible_toggle',''),(345338,42684,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(345339,42684,'blocks_9_acfe_flexible_layout_title','Icons'),(345340,42684,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(345341,42684,'blocks_9_options_theme','#b61234'),(345342,42684,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(345343,42684,'blocks_9_options_format','row'),(345344,42684,'_blocks_9_options_format','field_64bfde9a90690'),(345345,42684,'blocks_9_options',''),(345346,42684,'_blocks_9_options','field_64bfdd9b90684'),(345347,42684,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(345348,42684,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(345349,42684,'blocks_9_icon_row_items_0_label','Industry Recognition'),(345350,42684,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(345351,42684,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(345352,42684,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(345353,42684,'blocks_9_icon_row_items_1_icon','qualification.svg'),(345354,42684,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(345355,42684,'blocks_9_icon_row_items_1_label','University Accreditation'),(345356,42684,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(345357,42684,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(345358,42684,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(345359,42684,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(345360,42684,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(345361,42684,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(345362,42684,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(345363,42684,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(345364,42684,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(345365,42684,'blocks_9_icon_row_items','3'),(345366,42684,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(345367,42684,'blocks_11_acfe_flexible_toggle',''),(345368,42684,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345369,42684,'blocks_11_acfe_flexible_layout_title','Opportunities (1) '),(345370,42684,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345371,42684,'blocks_11_options_theme','#ffffff'),(345372,42684,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(345373,42684,'blocks_11_options_reverse','0'),(345374,42684,'_blocks_11_options_reverse','field_61768049bb8ac'),(345375,42684,'blocks_11_options',''),(345376,42684,'_blocks_11_options','field_617682517c334'),(345377,42684,'blocks_11_split_5050_image','31614'),(345378,42684,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(345379,42684,'blocks_11_split_5050_video',''),(345380,42684,'_blocks_11_split_5050_video','field_6239f3160848a'),(345381,42684,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(345382,42684,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(345383,42684,'blocks_11_split_5050_content_heading',''),(345384,42684,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(345385,42684,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(345386,42684,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(345387,42684,'blocks_11_split_5050_content_actions',''),(345388,42684,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(345389,42684,'blocks_11_split_5050_content',''),(345390,42684,'_blocks_11_split_5050_content','field_61767afceb8ba'),(345391,42684,'blocks_12_acfe_flexible_toggle',''),(345392,42684,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345393,42684,'blocks_12_acfe_flexible_layout_title','Opportunities (2)'),(345394,42684,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345395,42684,'blocks_12_options_theme','#ffffff'),(345396,42684,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(345397,42684,'blocks_12_options_reverse','0'),(345398,42684,'_blocks_12_options_reverse','field_61768049bb8ac'),(345399,42684,'blocks_12_options',''),(345400,42684,'_blocks_12_options','field_617682517c334'),(345401,42684,'blocks_12_split_5050_image','42682'),(345402,42684,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(345403,42684,'blocks_12_split_5050_video',''),(345404,42684,'_blocks_12_split_5050_video','field_6239f3160848a'),(345405,42684,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(345406,42684,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(345407,42684,'blocks_12_split_5050_content_heading',''),(345408,42684,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(345409,42684,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(345410,42684,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(345411,42684,'blocks_12_split_5050_content_actions',''),(345412,42684,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(345413,42684,'blocks_12_split_5050_content',''),(345414,42684,'_blocks_12_split_5050_content','field_61767afceb8ba'),(345415,42684,'blocks_17_acfe_flexible_toggle',''),(345416,42684,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345417,42684,'blocks_17_acfe_flexible_layout_title','Experienced Training Providers'),(345418,42684,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345419,42684,'blocks_17_options_theme','#ffffff'),(345420,42684,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(345421,42684,'blocks_17_options_reverse','1'),(345422,42684,'_blocks_17_options_reverse','field_61768049bb8ac'),(345423,42684,'blocks_17_options',''),(345424,42684,'_blocks_17_options','field_617682517c334'),(345425,42684,'blocks_17_split_5050_image','41330'),(345426,42684,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(345427,42684,'blocks_17_split_5050_video',''),(345428,42684,'_blocks_17_split_5050_video','field_6239f3160848a'),(345429,42684,'blocks_17_split_5050_content_title','Experienced Training Providers'),(345430,42684,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(345431,42684,'blocks_17_split_5050_content_heading',''),(345432,42684,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(345433,42684,'blocks_17_split_5050_content_text','Tutors with extensive experience in biomechanics bring real-world insights to the classroom, bridging the gap between theory and practice. Look for instructors with backgrounds in academia, professional sports, rehabilitation, or biomechanics research, as their expertise can enhance the learning experience.'),(345434,42684,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(345435,42684,'blocks_17_split_5050_content_actions',''),(345436,42684,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(345437,42684,'blocks_17_split_5050_content',''),(345438,42684,'_blocks_17_split_5050_content','field_61767afceb8ba'),(345439,42684,'blocks_15_acfe_flexible_toggle',''),(345440,42684,'_blocks_15_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(345441,42684,'blocks_15_acfe_flexible_layout_title','Course Format[anchor]'),(345442,42684,'_blocks_15_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(345443,42684,'blocks_15_options_theme','#f5f5f5'),(345444,42684,'_blocks_15_options_theme','field_6177de53d1196_field_6176830e2ad17'),(345445,42684,'blocks_15_options',''),(345446,42684,'_blocks_15_options','field_6177de53d1195'),(345447,42684,'blocks_15_timeline_content_title',''),(345448,42684,'_blocks_15_timeline_content_title','field_6177de53d1198'),(345449,42684,'blocks_15_timeline_content_heading','Evaluate Course Format and Flexibility'),(345450,42684,'_blocks_15_timeline_content_heading','field_6177de53d1199'),(345451,42684,'blocks_15_timeline_content_text','Biomechanics courses can vary in structure, offering different formats to accommodate students with varying schedules, learning preferences, and career commitments. Whether you’re looking for a full-time degree, a part-time professional development course, or an online programme that fits around your work, understanding the course format is essential in making the right choice. A well-structured course should provide a balance of flexibility and practical engagement, ensuring you gain the knowledge and hands-on experience needed for your career.\r\n\r\nWhen considering a biomechanics course, think about how the course format aligns with your lifestyle and career ambitions. Below are some key factors to evaluate when selecting the right learning structure.'),(345452,42684,'_blocks_15_timeline_content_text','field_6177de53d119a'),(345453,42684,'blocks_15_timeline_content_actions',''),(345454,42684,'_blocks_15_timeline_content_actions','field_6177de53d119b'),(345455,42684,'blocks_15_timeline_content',''),(345456,42684,'_blocks_15_timeline_content','field_6177de53d1197'),(345457,42684,'blocks_15_timeline_items_0_title','Full-Time vs. Part-Time Study'),(345458,42684,'_blocks_15_timeline_items_0_title','field_6177de53d119f'),(345459,42684,'blocks_15_timeline_items_0_text','Full-time biomechanics courses offer an immersive learning experience, allowing students to complete their qualifications more quickly. However, part-time courses can be beneficial for those who are already working in the field and want to upskill while maintaining their job. Choosing between these options depends on your availability, learning pace, and career progression plans.'),(345460,42684,'_blocks_15_timeline_items_0_text','field_6177de53d11a0'),(345461,42684,'blocks_15_timeline_items_1_title','Online, In-Person, and Hybrid Learning'),(345462,42684,'_blocks_15_timeline_items_1_title','field_6177de53d119f'),(345463,42684,'blocks_15_timeline_items_1_text','While some biomechanics courses are delivered entirely in-person, others incorporate online modules to provide greater flexibility. Online learning can be useful for covering theoretical concepts, but biomechanics is a highly practical subject, meaning hybrid programmes that include both online theory and in-person practical sessions can be the most effective for building applied skills.'),(345464,42684,'_blocks_15_timeline_items_1_text','field_6177de53d11a0'),(345465,42684,'blocks_15_timeline_items_2_title','Degree Level and Course Duration'),(345466,42684,'_blocks_15_timeline_items_2_title','field_6177de53d119f'),(345467,42684,'blocks_15_timeline_items_2_text','Depending on your career goals, you may need to choose between a short biomechanics certification, a diploma, or a full degree (BSc, MSc, or PhD). Short courses and diplomas are useful for professionals looking to specialise or upskill, while degree-level courses provide a more in-depth understanding of biomechanics, research methods, and applied movement science.'),(345468,42684,'_blocks_15_timeline_items_2_text','field_6177de53d11a0'),(345469,42684,'blocks_15_timeline_items','3'),(345470,42684,'_blocks_15_timeline_items','field_6177de53d119d'),(345471,42684,'blocks_16_acfe_flexible_toggle',''),(345472,42684,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(345473,42684,'blocks_16_acfe_flexible_layout_title','Tutor Expertise[anchor] '),(345474,42684,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(345475,42684,'blocks_16_options_theme','#ffffff'),(345476,42684,'_blocks_16_options_theme','field_6176830e2ad17'),(345477,42684,'blocks_16_options',''),(345478,42684,'_blocks_16_options','field_6176830e2ad16'),(345479,42684,'blocks_16_text_block_heading','Assess Tutor Expertise and Industry Connections'),(345480,42684,'_blocks_16_text_block_heading','field_617669d413097'),(345481,42684,'blocks_16_text_block_content','The quality of a biomechanics course is not just determined by its content but also by the expertise of the tutors delivering it and the industry connections it provides. Learning from experienced professionals with strong backgrounds in biomechanics, sports science, rehabilitation, or engineering ensures that you receive relevant, up-to-date knowledge that aligns with industry standards. Additionally, courses with strong industry links can open doors to valuable networking opportunities, mentorship, and potential career placements.\r\n\r\nWhen evaluating a biomechanics course, consider the credibility of the teaching staff and the programme’s industry connections. Below are key factors to assess.'),(345482,42684,'_blocks_16_text_block_content','field_617669ec13098'),(345483,42684,'blocks_18_acfe_flexible_toggle',''),(345484,42684,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345485,42684,'blocks_18_acfe_flexible_layout_title','Industry Collaborations and Professional Networks'),(345486,42684,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345487,42684,'blocks_18_options_theme','#ffffff'),(345488,42684,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(345489,42684,'blocks_18_options_reverse','1'),(345490,42684,'_blocks_18_options_reverse','field_61768049bb8ac'),(345491,42684,'blocks_18_options',''),(345492,42684,'_blocks_18_options','field_617682517c334'),(345493,42684,'blocks_18_split_5050_image','31747'),(345494,42684,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(345495,42684,'blocks_18_split_5050_video',''),(345496,42684,'_blocks_18_split_5050_video','field_6239f3160848a'),(345497,42684,'blocks_18_split_5050_content_title','Industry Collaborations and Professional Networks'),(345498,42684,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(345499,42684,'blocks_18_split_5050_content_heading',''),(345500,42684,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(345501,42684,'blocks_18_split_5050_content_text','Courses that have partnerships with sports teams, healthcare organisations, universities, or biomechanics companies provide students with access to industry professionals and potential career opportunities. These collaborations can also lead to internships, research projects, or direct job placements after completing the course.'),(345502,42684,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(345503,42684,'blocks_18_split_5050_content_actions',''),(345504,42684,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(345505,42684,'blocks_18_split_5050_content',''),(345506,42684,'_blocks_18_split_5050_content','field_61767afceb8ba'),(345507,42684,'blocks_19_acfe_flexible_toggle',''),(345508,42684,'_blocks_19_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345509,42684,'blocks_19_acfe_flexible_layout_title','Graduate Success and Alumni Network'),(345510,42684,'_blocks_19_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345511,42684,'blocks_19_options_theme','#ffffff'),(345512,42684,'_blocks_19_options_theme','field_617682847c335_field_6176830e2ad17'),(345513,42684,'blocks_19_options_reverse','1'),(345514,42684,'_blocks_19_options_reverse','field_61768049bb8ac'),(345515,42684,'blocks_19_options',''),(345516,42684,'_blocks_19_options','field_617682517c334'),(345517,42684,'blocks_19_split_5050_image','41312'),(345518,42684,'_blocks_19_split_5050_image','field_6239f527a0c3a'),(345519,42684,'blocks_19_split_5050_video',''),(345520,42684,'_blocks_19_split_5050_video','field_6239f3160848a'),(345521,42684,'blocks_19_split_5050_content_title','Graduate Success and Alumni Network'),(345522,42684,'_blocks_19_split_5050_content_title','field_61767bfca3fc0'),(345523,42684,'blocks_19_split_5050_content_heading',''),(345524,42684,'_blocks_19_split_5050_content_heading','field_61767b26eb8bb'),(345525,42684,'blocks_19_split_5050_content_text','A strong alumni network and positive graduate success stories indicate the effectiveness of a biomechanics course. Research where previous students have progressed in their careers, as this can provide insight into the opportunities available after completing the programme.'),(345526,42684,'_blocks_19_split_5050_content_text','field_61767b3beb8bc'),(345527,42684,'blocks_19_split_5050_content_actions',''),(345528,42684,'_blocks_19_split_5050_content_actions','field_61767b68eb8bd'),(345529,42684,'blocks_19_split_5050_content',''),(345530,42684,'_blocks_19_split_5050_content','field_61767afceb8ba'),(345531,42684,'blocks_21_acfe_flexible_toggle',''),(345532,42684,'_blocks_21_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(345533,42684,'blocks_21_acfe_flexible_layout_title','Icons - Costs and Payment'),(345534,42684,'_blocks_21_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(345535,42684,'blocks_21_options_theme','#b61234'),(345536,42684,'_blocks_21_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(345537,42684,'blocks_21_options_format','row'),(345538,42684,'_blocks_21_options_format','field_64bfde9a90690'),(345539,42684,'blocks_21_options',''),(345540,42684,'_blocks_21_options','field_64bfdd9b90684'),(345541,42684,'blocks_21_icon_row_items_0_icon','payment-plans.svg'),(345542,42684,'_blocks_21_icon_row_items_0_icon','field_64bfdd9b9068d'),(345543,42684,'blocks_21_icon_row_items_0_label','Course Costs'),(345544,42684,'_blocks_21_icon_row_items_0_label','field_64bfdd9c9068e'),(345545,42684,'blocks_21_icon_row_items_0_text','Compare costs across providers to find an option that fits your budget.'),(345546,42684,'_blocks_21_icon_row_items_0_text','field_64bfdd9c9068f'),(345547,42684,'blocks_21_icon_row_items_1_icon','start-earning-in.svg'),(345548,42684,'_blocks_21_icon_row_items_1_icon','field_64bfdd9b9068d'),(345549,42684,'blocks_21_icon_row_items_1_label','Grants'),(345550,42684,'_blocks_21_icon_row_items_1_label','field_64bfdd9c9068e'),(345551,42684,'blocks_21_icon_row_items_1_text','Some universities may offer financial aid for biomechanics students, especially in research-intensive programmes.'),(345552,42684,'_blocks_21_icon_row_items_1_text','field_64bfdd9c9068f'),(345553,42684,'blocks_21_icon_row_items_2_icon','return-on-investment-1.svg'),(345554,42684,'_blocks_21_icon_row_items_2_icon','field_64bfdd9b9068d'),(345555,42684,'blocks_21_icon_row_items_2_label','Return on Investment'),(345556,42684,'_blocks_21_icon_row_items_2_label','field_64bfdd9c9068e'),(345557,42684,'blocks_21_icon_row_items_2_text','Consider the earning potential in your chosen biomechanics career and whether the programme justifies the cost.'),(345558,42684,'_blocks_21_icon_row_items_2_text','field_64bfdd9c9068f'),(345559,42684,'blocks_21_icon_row_items','3'),(345560,42684,'_blocks_21_icon_row_items','field_64bfdd9b9068c'),(345561,42684,'blocks_22_acfe_flexible_toggle',''),(345562,42684,'_blocks_22_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345563,42684,'blocks_22_acfe_flexible_layout_title','Conclusion[anchor]'),(345564,42684,'_blocks_22_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345565,42684,'blocks_22_options_theme','#ffffff'),(345566,42684,'_blocks_22_options_theme','field_617682847c335_field_6176830e2ad17'),(345567,42684,'blocks_22_options_reverse','1'),(345568,42684,'_blocks_22_options_reverse','field_61768049bb8ac'),(345569,42684,'blocks_22_options',''),(345570,42684,'_blocks_22_options','field_617682517c334'),(345571,42684,'blocks_22_split_5050_image','42679'),(345572,42684,'_blocks_22_split_5050_image','field_6239f527a0c3a'),(345573,42684,'blocks_22_split_5050_video',''),(345574,42684,'_blocks_22_split_5050_video','field_6239f3160848a'),(345575,42684,'blocks_22_split_5050_content_title',''),(345576,42684,'_blocks_22_split_5050_content_title','field_61767bfca3fc0'),(345577,42684,'blocks_22_split_5050_content_heading','Conclusion'),(345578,42684,'_blocks_22_split_5050_content_heading','field_61767b26eb8bb'),(345579,42684,'blocks_22_split_5050_content_text','Choosing the right biomechanics course is a key step in shaping your career and expanding your expertise in human movement. With so many options available, it’s important to take the time to evaluate courses based on your career goals, the content they offer, accreditation, practical learning opportunities, and industry connections. A well-structured course should provide both theoretical knowledge and hands-on experience, ensuring that you develop the skills needed to apply biomechanics effectively in your chosen field.\r\n\r\nBy considering factors such as course format, tutor expertise, financial investment, and long-term career prospects, you can make an informed decision that aligns with your aspirations. Take the time to research programmes, speak with faculty or alumni, and explore available learning pathways to find the biomechanics course that best supports your professional development.'),(345580,42684,'_blocks_22_split_5050_content_text','field_61767b3beb8bc'),(345581,42684,'blocks_22_split_5050_content_actions',''),(345582,42684,'_blocks_22_split_5050_content_actions','field_61767b68eb8bd'),(345583,42684,'blocks_22_split_5050_content',''),(345584,42684,'_blocks_22_split_5050_content','field_61767afceb8ba'),(345585,42684,'blocks_23_acfe_flexible_toggle',''),(345586,42684,'_blocks_23_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(345587,42684,'blocks_23_acfe_flexible_layout_title','Promo Panel'),(345588,42684,'_blocks_23_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(345589,42684,'blocks_23_options_alignment','center'),(345590,42684,'_blocks_23_options_alignment','field_61769449f5490'),(345591,42684,'blocks_23_options',''),(345592,42684,'_blocks_23_options','field_617693e1428f0'),(345593,42684,'blocks_23_promo_panel_image','41307'),(345594,42684,'_blocks_23_promo_panel_image','field_617693e1428f3'),(345595,42684,'blocks_23_promo_panel_content_heading','Want to Get Started?'),(345596,42684,'_blocks_23_promo_panel_content_heading','field_617693e1428f6'),(345597,42684,'blocks_23_promo_panel_content_text','Would you like help finding a biomechanics course tailored to your career goals? Get in touch to explore your options and take the next step in your biomechanics journey.'),(345598,42684,'_blocks_23_promo_panel_content_text','field_617693e1428f7'),(345599,42684,'blocks_23_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(345600,42684,'_blocks_23_promo_panel_content_actions_0_button','field_617693e1428f9'),(345601,42684,'blocks_23_promo_panel_content_actions','1'),(345602,42684,'_blocks_23_promo_panel_content_actions','field_617693e1428f8'),(345603,42684,'blocks_23_promo_panel_content',''),(345604,42684,'_blocks_23_promo_panel_content','field_617693e1428f4'),(345605,42684,'blocks_0_link_stack_6_label','7.'),(345606,42684,'_blocks_0_link_stack_6_label','field_6177b80900d00'),(345607,42684,'blocks_0_link_stack_6_title','Assess Tutor Expertise and Industry Connections'),(345608,42684,'_blocks_0_link_stack_6_title','field_6177b80f00d01'),(345609,42684,'blocks_0_link_stack_6_url','#tutor-expertise'),(345610,42684,'_blocks_0_link_stack_6_url','field_6177b82200d02'),(345611,42684,'blocks_0_link_stack_7_label','8.'),(345612,42684,'_blocks_0_link_stack_7_label','field_6177b80900d00'),(345613,42684,'blocks_0_link_stack_7_title','Compare Costs, Payment & Finance Options'),(345614,42684,'_blocks_0_link_stack_7_title','field_6177b80f00d01'),(345615,42684,'blocks_0_link_stack_7_url','#costs-and-payment'),(345616,42684,'_blocks_0_link_stack_7_url','field_6177b82200d02'),(345617,42684,'blocks_0_link_stack_8_label','9.'),(345618,42684,'_blocks_0_link_stack_8_label','field_6177b80900d00'),(345619,42684,'blocks_0_link_stack_8_title','Conclusion'),(345620,42684,'_blocks_0_link_stack_8_title','field_6177b80f00d01'),(345621,42684,'blocks_0_link_stack_8_url','#conclusion'),(345622,42684,'_blocks_0_link_stack_8_url','field_6177b82200d02'),(345624,42685,'hide_hero','0'),(345625,42685,'_hide_hero','field_66a2380fcda39'),(345626,42685,'hero_title',''),(345627,42685,'_hero_title','field_617571fe285e8'),(345628,42685,'hero_text','Find the right biomechanics course to match your career goals, enhance your expertise, and advance your future in movement science.'),(345629,42685,'_hero_text','field_6175723c285e9'),(345630,42685,'hero_actions',''),(345631,42685,'_hero_actions','field_61757270285ea'),(345632,42685,'hero_style','default'),(345633,42685,'_hero_style','field_62051d9dc5324'),(345634,42685,'hero_image_pos_x','right'),(345635,42685,'_hero_image_pos_x','field_62ec3d05390bb'),(345636,42685,'hero_image_pos_y','top'),(345637,42685,'_hero_image_pos_y','field_62ec3d05390bc'),(345638,42685,'hero_image_pos',''),(345639,42685,'_hero_image_pos','field_62ec3d05390ba'),(345640,42685,'fft_hide_from_listings','0'),(345641,42685,'_fft_hide_from_listings','field_61f1320446ab2'),(345642,42685,'post_format','402'),(345643,42685,'_post_format','field_61756bfb51898'),(345644,42685,'post_author',''),(345645,42685,'_post_author','field_62ec389d22113'),(345646,42685,'post_reviewer',''),(345647,42685,'_post_reviewer','field_627140a2a9800'),(345648,42685,'post_table_of_contents','0'),(345649,42685,'_post_table_of_contents','field_65c503bc846a6'),(345650,42685,'blocks','a:24:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:13:\"step_timeline\";i:16;s:10:\"text_block\";i:17;s:10:\"split_5050\";i:18;s:10:\"split_5050\";i:19;s:10:\"split_5050\";i:20;s:10:\"text_block\";i:21;s:5:\"icons\";i:22;s:10:\"split_5050\";i:23;s:11:\"promo_panel\";}'),(345651,42685,'_blocks','field_6176696113096'),(345652,42685,'_thumbnail_id','42680'),(345653,42685,'__thumbnail_id','field_617570855ddaf'),(345654,42685,'blocks_0_acfe_flexible_toggle',''),(345655,42685,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(345656,42685,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(345657,42685,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(345658,42685,'blocks_0_options_theme','#ffffff'),(345659,42685,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(345660,42685,'blocks_0_options',''),(345661,42685,'_blocks_0_options','field_6177b758246ae'),(345662,42685,'blocks_0_link_stack_content_title',''),(345663,42685,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(345664,42685,'blocks_0_link_stack_content_heading','Introduction'),(345665,42685,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(345666,42685,'blocks_0_link_stack_content_text','This guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(345667,42685,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(345668,42685,'blocks_0_link_stack_content_actions_0_button',''),(345669,42685,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(345670,42685,'blocks_0_link_stack_content_actions','1'),(345671,42685,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(345672,42685,'blocks_0_link_stack_content',''),(345673,42685,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(345674,42685,'blocks_0_link_stack_0_label','1.'),(345675,42685,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(345676,42685,'blocks_0_link_stack_0_title','Overview'),(345677,42685,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(345678,42685,'blocks_0_link_stack_0_url','#overview'),(345679,42685,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(345680,42685,'blocks_0_link_stack_1_label','2.'),(345681,42685,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(345682,42685,'blocks_0_link_stack_1_title','Define Your Career Goals'),(345683,42685,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(345684,42685,'blocks_0_link_stack_1_url','#define-your-career-goals'),(345685,42685,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(345686,42685,'blocks_0_link_stack_2_label','3.'),(345687,42685,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(345688,42685,'blocks_0_link_stack_2_title','Evaluate Course Content'),(345689,42685,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(345690,42685,'blocks_0_link_stack_2_url','#evaluate-course-content'),(345691,42685,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(345692,42685,'blocks_0_link_stack_3_label','4.'),(345693,42685,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(345694,42685,'blocks_0_link_stack_3_title','Accreditation and Recognition'),(345695,42685,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(345696,42685,'blocks_0_link_stack_3_url','#accreditation-and-recognition'),(345697,42685,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(345698,42685,'blocks_0_link_stack_4_label','5.'),(345699,42685,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(345700,42685,'blocks_0_link_stack_4_title','Experience & Opportunities'),(345701,42685,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(345702,42685,'blocks_0_link_stack_4_url','#experience-and-opportunities'),(345703,42685,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(345704,42685,'blocks_0_link_stack_5_label','6.'),(345705,42685,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(345706,42685,'blocks_0_link_stack_5_title','Evaluate Course Format and Flexibility'),(345707,42685,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(345708,42685,'blocks_0_link_stack_5_url','#course-format'),(345709,42685,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(345710,42685,'blocks_0_link_stack','9'),(345711,42685,'_blocks_0_link_stack','field_6177b7f600cff'),(345712,42685,'blocks_1_acfe_flexible_toggle',''),(345713,42685,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345714,42685,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(345715,42685,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345716,42685,'blocks_1_options_theme','#f5f5f5'),(345717,42685,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(345718,42685,'blocks_1_options_reverse','0'),(345719,42685,'_blocks_1_options_reverse','field_61768049bb8ac'),(345720,42685,'blocks_1_options',''),(345721,42685,'_blocks_1_options','field_617682517c334'),(345722,42685,'blocks_1_split_5050_image','42678'),(345723,42685,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(345724,42685,'blocks_1_split_5050_video',''),(345725,42685,'_blocks_1_split_5050_video','field_6239f3160848a'),(345726,42685,'blocks_1_split_5050_content_title',''),(345727,42685,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(345728,42685,'blocks_1_split_5050_content_heading','Overview'),(345729,42685,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(345730,42685,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(345731,42685,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(345732,42685,'blocks_1_split_5050_content_actions',''),(345733,42685,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(345734,42685,'blocks_1_split_5050_content',''),(345735,42685,'_blocks_1_split_5050_content','field_61767afceb8ba'),(345736,42685,'blocks_3_acfe_flexible_toggle',''),(345737,42685,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345738,42685,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(345739,42685,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345740,42685,'blocks_3_options_theme','#ffffff'),(345741,42685,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(345742,42685,'blocks_3_options_reverse','1'),(345743,42685,'_blocks_3_options_reverse','field_61768049bb8ac'),(345744,42685,'blocks_3_options',''),(345745,42685,'_blocks_3_options','field_617682517c334'),(345746,42685,'blocks_3_split_5050_image','31069'),(345747,42685,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(345748,42685,'blocks_3_split_5050_video',''),(345749,42685,'_blocks_3_split_5050_video','field_6239f3160848a'),(345750,42685,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(345751,42685,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(345752,42685,'blocks_3_split_5050_content_heading',''),(345753,42685,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(345754,42685,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(345755,42685,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(345756,42685,'blocks_3_split_5050_content_actions',''),(345757,42685,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(345758,42685,'blocks_3_split_5050_content',''),(345759,42685,'_blocks_3_split_5050_content','field_61767afceb8ba'),(345760,42685,'blocks_13_acfe_flexible_toggle',''),(345761,42685,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345762,42685,'blocks_13_acfe_flexible_layout_title','Opportunities (3)'),(345763,42685,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345764,42685,'blocks_13_options_theme','#ffffff'),(345765,42685,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(345766,42685,'blocks_13_options_reverse','0'),(345767,42685,'_blocks_13_options_reverse','field_61768049bb8ac'),(345768,42685,'blocks_13_options',''),(345769,42685,'_blocks_13_options','field_617682517c334'),(345770,42685,'blocks_13_split_5050_image','40310'),(345771,42685,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(345772,42685,'blocks_13_split_5050_video',''),(345773,42685,'_blocks_13_split_5050_video','field_6239f3160848a'),(345774,42685,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(345775,42685,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(345776,42685,'blocks_13_split_5050_content_heading',''),(345777,42685,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(345778,42685,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(345779,42685,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(345780,42685,'blocks_13_split_5050_content_actions',''),(345781,42685,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(345782,42685,'blocks_13_split_5050_content',''),(345783,42685,'_blocks_13_split_5050_content','field_61767afceb8ba'),(345784,42685,'blocks_6_acfe_flexible_toggle',''),(345785,42685,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345786,42685,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(345787,42685,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345788,42685,'blocks_6_options_theme','#ffffff'),(345789,42685,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(345790,42685,'blocks_6_options_reverse','1'),(345791,42685,'_blocks_6_options_reverse','field_61768049bb8ac'),(345792,42685,'blocks_6_options',''),(345793,42685,'_blocks_6_options','field_617682517c334'),(345794,42685,'blocks_6_split_5050_image','39334'),(345795,42685,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(345796,42685,'blocks_6_split_5050_video',''),(345797,42685,'_blocks_6_split_5050_video','field_6239f3160848a'),(345798,42685,'blocks_6_split_5050_content_title','Research & Academia'),(345799,42685,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(345800,42685,'blocks_6_split_5050_content_heading',''),(345801,42685,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(345802,42685,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(345803,42685,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(345804,42685,'blocks_6_split_5050_content_actions',''),(345805,42685,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(345806,42685,'blocks_6_split_5050_content',''),(345807,42685,'_blocks_6_split_5050_content','field_61767afceb8ba'),(345808,42685,'blocks_5_acfe_flexible_toggle',''),(345809,42685,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345810,42685,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(345811,42685,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345812,42685,'blocks_5_options_theme','#ffffff'),(345813,42685,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(345814,42685,'blocks_5_options_reverse','1'),(345815,42685,'_blocks_5_options_reverse','field_61768049bb8ac'),(345816,42685,'blocks_5_options',''),(345817,42685,'_blocks_5_options','field_617682517c334'),(345818,42685,'blocks_5_split_5050_image','35755'),(345819,42685,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(345820,42685,'blocks_5_split_5050_video',''),(345821,42685,'_blocks_5_split_5050_video','field_6239f3160848a'),(345822,42685,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(345823,42685,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(345824,42685,'blocks_5_split_5050_content_heading',''),(345825,42685,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(345826,42685,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(345827,42685,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(345828,42685,'blocks_5_split_5050_content_actions',''),(345829,42685,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(345830,42685,'blocks_5_split_5050_content',''),(345831,42685,'_blocks_5_split_5050_content','field_61767afceb8ba'),(345832,42685,'blocks_14_acfe_flexible_toggle',''),(345833,42685,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345834,42685,'blocks_14_acfe_flexible_layout_title','Opportunities (4)'),(345835,42685,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345836,42685,'blocks_14_options_theme','#ffffff'),(345837,42685,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(345838,42685,'blocks_14_options_reverse','0'),(345839,42685,'_blocks_14_options_reverse','field_61768049bb8ac'),(345840,42685,'blocks_14_options',''),(345841,42685,'_blocks_14_options','field_617682517c334'),(345842,42685,'blocks_14_split_5050_image','39483'),(345843,42685,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(345844,42685,'blocks_14_split_5050_video',''),(345845,42685,'_blocks_14_split_5050_video','field_6239f3160848a'),(345846,42685,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(345847,42685,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(345848,42685,'blocks_14_split_5050_content_heading',''),(345849,42685,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(345850,42685,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(345851,42685,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(345852,42685,'blocks_14_split_5050_content_actions',''),(345853,42685,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(345854,42685,'blocks_14_split_5050_content',''),(345855,42685,'_blocks_14_split_5050_content','field_61767afceb8ba'),(345856,42685,'blocks_20_acfe_flexible_toggle',''),(345857,42685,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(345858,42685,'blocks_20_acfe_flexible_layout_title','Costs and Payment[anchor]'),(345859,42685,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(345860,42685,'blocks_20_options_theme','#b61234'),(345861,42685,'_blocks_20_options_theme','field_6176830e2ad17'),(345862,42685,'blocks_20_options',''),(345863,42685,'_blocks_20_options','field_6176830e2ad16'),(345864,42685,'blocks_20_text_block_heading','Compare Costs, Payment & Finance Options'),(345865,42685,'_blocks_20_text_block_heading','field_617669d413097'),(345866,42685,'blocks_20_text_block_content','Biomechanics courses can vary significantly in cost, depending on factors such as course level, institution, and delivery format. While investing in your education is important, it’s equally essential to choose a course that provides good value for money and aligns with your career goals. Understanding the financial commitment involved and exploring available funding options can help you make an informed decision without unnecessary financial strain.'),(345867,42685,'_blocks_20_text_block_content','field_617669ec13098'),(345868,42685,'blocks_10_acfe_flexible_toggle',''),(345869,42685,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(345870,42685,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(345871,42685,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(345872,42685,'blocks_10_options_theme','#ffffff'),(345873,42685,'_blocks_10_options_theme','field_6176830e2ad17'),(345874,42685,'blocks_10_options',''),(345875,42685,'_blocks_10_options','field_6176830e2ad16'),(345876,42685,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(345877,42685,'_blocks_10_text_block_heading','field_617669d413097'),(345878,42685,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(345879,42685,'_blocks_10_text_block_content','field_617669ec13098'),(345880,42685,'blocks_2_acfe_flexible_toggle',''),(345881,42685,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(345882,42685,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(345883,42685,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(345884,42685,'blocks_2_options_theme','#ffffff'),(345885,42685,'_blocks_2_options_theme','field_6176830e2ad17'),(345886,42685,'blocks_2_options',''),(345887,42685,'_blocks_2_options','field_6176830e2ad16'),(345888,42685,'blocks_2_text_block_heading','Define Your Career Goals'),(345889,42685,'_blocks_2_text_block_heading','field_617669d413097'),(345890,42685,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(345891,42685,'_blocks_2_text_block_content','field_617669ec13098'),(345892,42685,'blocks_4_acfe_flexible_toggle',''),(345893,42685,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(345894,42685,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(345895,42685,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(345896,42685,'blocks_4_options_theme','#ffffff'),(345897,42685,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(345898,42685,'blocks_4_options_reverse','1'),(345899,42685,'_blocks_4_options_reverse','field_61768049bb8ac'),(345900,42685,'blocks_4_options',''),(345901,42685,'_blocks_4_options','field_617682517c334'),(345902,42685,'blocks_4_split_5050_image','27963'),(345903,42685,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(345904,42685,'blocks_4_split_5050_video',''),(345905,42685,'_blocks_4_split_5050_video','field_6239f3160848a'),(345906,42685,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(345907,42685,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(345908,42685,'blocks_4_split_5050_content_heading',''),(345909,42685,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(345910,42685,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(345911,42685,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(345912,42685,'blocks_4_split_5050_content_actions',''),(345913,42685,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(345914,42685,'blocks_4_split_5050_content',''),(345915,42685,'_blocks_4_split_5050_content','field_61767afceb8ba'),(345916,42685,'blocks_7_acfe_flexible_toggle',''),(345917,42685,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(345918,42685,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(345919,42685,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(345920,42685,'blocks_7_options_theme','#f5f5f5'),(345921,42685,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(345922,42685,'blocks_7_options_state','0'),(345923,42685,'_blocks_7_options_state','field_6239fcb7508c5'),(345924,42685,'blocks_7_options',''),(345925,42685,'_blocks_7_options','field_6177e2991ac44'),(345926,42685,'blocks_7_content_title',''),(345927,42685,'_blocks_7_content_title','field_64d237e8bb1e2'),(345928,42685,'blocks_7_content_heading','Evaluate Course Content'),(345929,42685,'_blocks_7_content_heading','field_64d237e8bb1e3'),(345930,42685,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(345931,42685,'_blocks_7_content_text','field_64d237e8bb1e4'),(345932,42685,'blocks_7_content_actions',''),(345933,42685,'_blocks_7_content_actions','field_64d237e8bb1e5'),(345934,42685,'blocks_7_content_align','left'),(345935,42685,'_blocks_7_content_align','field_64d2443e6b6aa'),(345936,42685,'blocks_7_content',''),(345937,42685,'_blocks_7_content','field_64d237e8bb1e1'),(345938,42685,'blocks_7_accordion_content','custom'),(345939,42685,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(345940,42685,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(345941,42685,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(345942,42685,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(345943,42685,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(345944,42685,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(345945,42685,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(345946,42685,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(345947,42685,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(345948,42685,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(345949,42685,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(345950,42685,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(345951,42685,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(345952,42685,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(345953,42685,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(345954,42685,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(345955,42685,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(345956,42685,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(345957,42685,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(345958,42685,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(345959,42685,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(345960,42685,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(345961,42685,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(345962,42685,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(345963,42685,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(345964,42685,'blocks_7_accordion_items','6'),(345965,42685,'_blocks_7_accordion_items','field_6177e2991ac4c'),(345966,42685,'blocks_7_actions',''),(345967,42685,'_blocks_7_actions','field_61a746a817f7a'),(345968,42685,'blocks_8_acfe_flexible_toggle',''),(345969,42685,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(345970,42685,'blocks_8_acfe_flexible_layout_title','Accreditation and Recognition[anchor]'),(345971,42685,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(345972,42685,'blocks_8_options_theme','#b61234'),(345973,42685,'_blocks_8_options_theme','field_6176830e2ad17'),(345974,42685,'blocks_8_options',''),(345975,42685,'_blocks_8_options','field_6176830e2ad16'),(345976,42685,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(345977,42685,'_blocks_8_text_block_heading','field_617669d413097'),(345978,42685,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(345979,42685,'_blocks_8_text_block_content','field_617669ec13098'),(345980,42685,'blocks_9_acfe_flexible_toggle',''),(345981,42685,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(345982,42685,'blocks_9_acfe_flexible_layout_title','Icons'),(345983,42685,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(345984,42685,'blocks_9_options_theme','#b61234'),(345985,42685,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(345986,42685,'blocks_9_options_format','row'),(345987,42685,'_blocks_9_options_format','field_64bfde9a90690'),(345988,42685,'blocks_9_options',''),(345989,42685,'_blocks_9_options','field_64bfdd9b90684'),(345990,42685,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(345991,42685,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(345992,42685,'blocks_9_icon_row_items_0_label','Industry Recognition'),(345993,42685,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(345994,42685,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(345995,42685,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(345996,42685,'blocks_9_icon_row_items_1_icon','qualification.svg'),(345997,42685,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(345998,42685,'blocks_9_icon_row_items_1_label','University Accreditation'),(345999,42685,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(346000,42685,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(346001,42685,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(346002,42685,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(346003,42685,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(346004,42685,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(346005,42685,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(346006,42685,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(346007,42685,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(346008,42685,'blocks_9_icon_row_items','3'),(346009,42685,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(346010,42685,'blocks_11_acfe_flexible_toggle',''),(346011,42685,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346012,42685,'blocks_11_acfe_flexible_layout_title','Opportunities (1) '),(346013,42685,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346014,42685,'blocks_11_options_theme','#ffffff'),(346015,42685,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(346016,42685,'blocks_11_options_reverse','0'),(346017,42685,'_blocks_11_options_reverse','field_61768049bb8ac'),(346018,42685,'blocks_11_options',''),(346019,42685,'_blocks_11_options','field_617682517c334'),(346020,42685,'blocks_11_split_5050_image','31614'),(346021,42685,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(346022,42685,'blocks_11_split_5050_video',''),(346023,42685,'_blocks_11_split_5050_video','field_6239f3160848a'),(346024,42685,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(346025,42685,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(346026,42685,'blocks_11_split_5050_content_heading',''),(346027,42685,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(346028,42685,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle activation patterns, and functional movement tests, all of which are essential for roles in sports performance, rehabilitation, and injury prevention.'),(346029,42685,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(346030,42685,'blocks_11_split_5050_content_actions',''),(346031,42685,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(346032,42685,'blocks_11_split_5050_content',''),(346033,42685,'_blocks_11_split_5050_content','field_61767afceb8ba'),(346034,42685,'blocks_12_acfe_flexible_toggle',''),(346035,42685,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346036,42685,'blocks_12_acfe_flexible_layout_title','Opportunities (2)'),(346037,42685,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346038,42685,'blocks_12_options_theme','#ffffff'),(346039,42685,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(346040,42685,'blocks_12_options_reverse','0'),(346041,42685,'_blocks_12_options_reverse','field_61768049bb8ac'),(346042,42685,'blocks_12_options',''),(346043,42685,'_blocks_12_options','field_617682517c334'),(346044,42685,'blocks_12_split_5050_image','42682'),(346045,42685,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(346046,42685,'blocks_12_split_5050_video',''),(346047,42685,'_blocks_12_split_5050_video','field_6239f3160848a'),(346048,42685,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(346049,42685,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(346050,42685,'blocks_12_split_5050_content_heading',''),(346051,42685,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(346052,42685,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(346053,42685,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(346054,42685,'blocks_12_split_5050_content_actions',''),(346055,42685,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(346056,42685,'blocks_12_split_5050_content',''),(346057,42685,'_blocks_12_split_5050_content','field_61767afceb8ba'),(346058,42685,'blocks_17_acfe_flexible_toggle',''),(346059,42685,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346060,42685,'blocks_17_acfe_flexible_layout_title','Experienced Training Providers'),(346061,42685,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346062,42685,'blocks_17_options_theme','#ffffff'),(346063,42685,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(346064,42685,'blocks_17_options_reverse','1'),(346065,42685,'_blocks_17_options_reverse','field_61768049bb8ac'),(346066,42685,'blocks_17_options',''),(346067,42685,'_blocks_17_options','field_617682517c334'),(346068,42685,'blocks_17_split_5050_image','41330'),(346069,42685,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(346070,42685,'blocks_17_split_5050_video',''),(346071,42685,'_blocks_17_split_5050_video','field_6239f3160848a'),(346072,42685,'blocks_17_split_5050_content_title','Experienced Training Providers'),(346073,42685,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(346074,42685,'blocks_17_split_5050_content_heading',''),(346075,42685,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(346076,42685,'blocks_17_split_5050_content_text','Tutors with extensive experience in biomechanics bring real-world insights to the classroom, bridging the gap between theory and practice. Look for instructors with backgrounds in academia, professional sports, rehabilitation, or biomechanics research, as their expertise can enhance the learning experience.'),(346077,42685,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(346078,42685,'blocks_17_split_5050_content_actions',''),(346079,42685,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(346080,42685,'blocks_17_split_5050_content',''),(346081,42685,'_blocks_17_split_5050_content','field_61767afceb8ba'),(346082,42685,'blocks_15_acfe_flexible_toggle',''),(346083,42685,'_blocks_15_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(346084,42685,'blocks_15_acfe_flexible_layout_title','Course Format[anchor]'),(346085,42685,'_blocks_15_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(346086,42685,'blocks_15_options_theme','#f5f5f5'),(346087,42685,'_blocks_15_options_theme','field_6177de53d1196_field_6176830e2ad17'),(346088,42685,'blocks_15_options',''),(346089,42685,'_blocks_15_options','field_6177de53d1195'),(346090,42685,'blocks_15_timeline_content_title',''),(346091,42685,'_blocks_15_timeline_content_title','field_6177de53d1198'),(346092,42685,'blocks_15_timeline_content_heading','Evaluate Course Format and Flexibility'),(346093,42685,'_blocks_15_timeline_content_heading','field_6177de53d1199'),(346094,42685,'blocks_15_timeline_content_text','Biomechanics courses can vary in structure, offering different formats to accommodate students with varying schedules, learning preferences, and career commitments. Whether you’re looking for a full-time degree, a part-time professional development course, or an online programme that fits around your work, understanding the course format is essential in making the right choice. A well-structured course should provide a balance of flexibility and practical engagement, ensuring you gain the knowledge and hands-on experience needed for your career.\r\n\r\nWhen considering a biomechanics course, think about how the course format aligns with your lifestyle and career ambitions. Below are some key factors to evaluate when selecting the right learning structure.'),(346095,42685,'_blocks_15_timeline_content_text','field_6177de53d119a'),(346096,42685,'blocks_15_timeline_content_actions',''),(346097,42685,'_blocks_15_timeline_content_actions','field_6177de53d119b'),(346098,42685,'blocks_15_timeline_content',''),(346099,42685,'_blocks_15_timeline_content','field_6177de53d1197'),(346100,42685,'blocks_15_timeline_items_0_title','Full-Time vs. Part-Time Study'),(346101,42685,'_blocks_15_timeline_items_0_title','field_6177de53d119f'),(346102,42685,'blocks_15_timeline_items_0_text','Full-time biomechanics courses offer an immersive learning experience, allowing students to complete their qualifications more quickly. However, part-time courses can be beneficial for those who are already working in the field and want to upskill while maintaining their job. Choosing between these options depends on your availability, learning pace, and career progression plans.'),(346103,42685,'_blocks_15_timeline_items_0_text','field_6177de53d11a0'),(346104,42685,'blocks_15_timeline_items_1_title','Online, In-Person, and Hybrid Learning'),(346105,42685,'_blocks_15_timeline_items_1_title','field_6177de53d119f'),(346106,42685,'blocks_15_timeline_items_1_text','While some biomechanics courses are delivered entirely in-person, others incorporate online modules to provide greater flexibility. Online learning can be useful for covering theoretical concepts, but biomechanics is a highly practical subject, meaning hybrid programmes that include both online theory and in-person practical sessions can be the most effective for building applied skills.'),(346107,42685,'_blocks_15_timeline_items_1_text','field_6177de53d11a0'),(346108,42685,'blocks_15_timeline_items_2_title','Degree Level and Course Duration'),(346109,42685,'_blocks_15_timeline_items_2_title','field_6177de53d119f'),(346110,42685,'blocks_15_timeline_items_2_text','Depending on your career goals, you may need to choose between a short biomechanics certification, a diploma, or a full degree (BSc, MSc, or PhD). Short courses and diplomas are useful for professionals looking to specialise or upskill, while degree-level courses provide a more in-depth understanding of biomechanics, research methods, and applied movement science.'),(346111,42685,'_blocks_15_timeline_items_2_text','field_6177de53d11a0'),(346112,42685,'blocks_15_timeline_items','3'),(346113,42685,'_blocks_15_timeline_items','field_6177de53d119d'),(346114,42685,'blocks_16_acfe_flexible_toggle',''),(346115,42685,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(346116,42685,'blocks_16_acfe_flexible_layout_title','Tutor Expertise[anchor] '),(346117,42685,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(346118,42685,'blocks_16_options_theme','#ffffff'),(346119,42685,'_blocks_16_options_theme','field_6176830e2ad17'),(346120,42685,'blocks_16_options',''),(346121,42685,'_blocks_16_options','field_6176830e2ad16'),(346122,42685,'blocks_16_text_block_heading','Assess Tutor Expertise and Industry Connections'),(346123,42685,'_blocks_16_text_block_heading','field_617669d413097'),(346124,42685,'blocks_16_text_block_content','The quality of a biomechanics course is not just determined by its content but also by the expertise of the tutors delivering it and the industry connections it provides. Learning from experienced professionals with strong backgrounds in biomechanics, sports science, rehabilitation, or engineering ensures that you receive relevant, up-to-date knowledge that aligns with industry standards. Additionally, courses with strong industry links can open doors to valuable networking opportunities, mentorship, and potential career placements.\r\n\r\nWhen evaluating a biomechanics course, consider the credibility of the teaching staff and the programme’s industry connections. Below are key factors to assess.'),(346125,42685,'_blocks_16_text_block_content','field_617669ec13098'),(346126,42685,'blocks_18_acfe_flexible_toggle',''),(346127,42685,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346128,42685,'blocks_18_acfe_flexible_layout_title','Industry Collaborations and Professional Networks'),(346129,42685,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346130,42685,'blocks_18_options_theme','#ffffff'),(346131,42685,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(346132,42685,'blocks_18_options_reverse','1'),(346133,42685,'_blocks_18_options_reverse','field_61768049bb8ac'),(346134,42685,'blocks_18_options',''),(346135,42685,'_blocks_18_options','field_617682517c334'),(346136,42685,'blocks_18_split_5050_image','31747'),(346137,42685,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(346138,42685,'blocks_18_split_5050_video',''),(346139,42685,'_blocks_18_split_5050_video','field_6239f3160848a'),(346140,42685,'blocks_18_split_5050_content_title','Industry Collaborations and Professional Networks'),(346141,42685,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(346142,42685,'blocks_18_split_5050_content_heading',''),(346143,42685,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(346144,42685,'blocks_18_split_5050_content_text','Courses that have partnerships with sports teams, healthcare organisations, universities, or biomechanics companies provide students with access to industry professionals and potential career opportunities. These collaborations can also lead to internships, research projects, or direct job placements after completing the course.'),(346145,42685,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(346146,42685,'blocks_18_split_5050_content_actions',''),(346147,42685,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(346148,42685,'blocks_18_split_5050_content',''),(346149,42685,'_blocks_18_split_5050_content','field_61767afceb8ba'),(346150,42685,'blocks_19_acfe_flexible_toggle',''),(346151,42685,'_blocks_19_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346152,42685,'blocks_19_acfe_flexible_layout_title','Graduate Success and Alumni Network'),(346153,42685,'_blocks_19_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346154,42685,'blocks_19_options_theme','#ffffff'),(346155,42685,'_blocks_19_options_theme','field_617682847c335_field_6176830e2ad17'),(346156,42685,'blocks_19_options_reverse','1'),(346157,42685,'_blocks_19_options_reverse','field_61768049bb8ac'),(346158,42685,'blocks_19_options',''),(346159,42685,'_blocks_19_options','field_617682517c334'),(346160,42685,'blocks_19_split_5050_image','41312'),(346161,42685,'_blocks_19_split_5050_image','field_6239f527a0c3a'),(346162,42685,'blocks_19_split_5050_video',''),(346163,42685,'_blocks_19_split_5050_video','field_6239f3160848a'),(346164,42685,'blocks_19_split_5050_content_title','Graduate Success and Alumni Network'),(346165,42685,'_blocks_19_split_5050_content_title','field_61767bfca3fc0'),(346166,42685,'blocks_19_split_5050_content_heading',''),(346167,42685,'_blocks_19_split_5050_content_heading','field_61767b26eb8bb'),(346168,42685,'blocks_19_split_5050_content_text','A strong alumni network and positive graduate success stories indicate the effectiveness of a biomechanics course. Research where previous students have progressed in their careers, as this can provide insight into the opportunities available after completing the programme.'),(346169,42685,'_blocks_19_split_5050_content_text','field_61767b3beb8bc'),(346170,42685,'blocks_19_split_5050_content_actions',''),(346171,42685,'_blocks_19_split_5050_content_actions','field_61767b68eb8bd'),(346172,42685,'blocks_19_split_5050_content',''),(346173,42685,'_blocks_19_split_5050_content','field_61767afceb8ba'),(346174,42685,'blocks_21_acfe_flexible_toggle',''),(346175,42685,'_blocks_21_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(346176,42685,'blocks_21_acfe_flexible_layout_title','Icons - Costs and Payment'),(346177,42685,'_blocks_21_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(346178,42685,'blocks_21_options_theme','#b61234'),(346179,42685,'_blocks_21_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(346180,42685,'blocks_21_options_format','row'),(346181,42685,'_blocks_21_options_format','field_64bfde9a90690'),(346182,42685,'blocks_21_options',''),(346183,42685,'_blocks_21_options','field_64bfdd9b90684'),(346184,42685,'blocks_21_icon_row_items_0_icon','payment-plans.svg'),(346185,42685,'_blocks_21_icon_row_items_0_icon','field_64bfdd9b9068d'),(346186,42685,'blocks_21_icon_row_items_0_label','Course Costs'),(346187,42685,'_blocks_21_icon_row_items_0_label','field_64bfdd9c9068e'),(346188,42685,'blocks_21_icon_row_items_0_text','Compare costs across providers to find an option that fits your budget.'),(346189,42685,'_blocks_21_icon_row_items_0_text','field_64bfdd9c9068f'),(346190,42685,'blocks_21_icon_row_items_1_icon','start-earning-in.svg'),(346191,42685,'_blocks_21_icon_row_items_1_icon','field_64bfdd9b9068d'),(346192,42685,'blocks_21_icon_row_items_1_label','Grants'),(346193,42685,'_blocks_21_icon_row_items_1_label','field_64bfdd9c9068e'),(346194,42685,'blocks_21_icon_row_items_1_text','Some universities may offer financial aid for biomechanics students, especially in research-intensive programmes.'),(346195,42685,'_blocks_21_icon_row_items_1_text','field_64bfdd9c9068f'),(346196,42685,'blocks_21_icon_row_items_2_icon','return-on-investment-1.svg'),(346197,42685,'_blocks_21_icon_row_items_2_icon','field_64bfdd9b9068d'),(346198,42685,'blocks_21_icon_row_items_2_label','Return on Investment'),(346199,42685,'_blocks_21_icon_row_items_2_label','field_64bfdd9c9068e'),(346200,42685,'blocks_21_icon_row_items_2_text','Consider the earning potential in your chosen biomechanics career and whether the programme justifies the cost.'),(346201,42685,'_blocks_21_icon_row_items_2_text','field_64bfdd9c9068f'),(346202,42685,'blocks_21_icon_row_items','3'),(346203,42685,'_blocks_21_icon_row_items','field_64bfdd9b9068c'),(346204,42685,'blocks_22_acfe_flexible_toggle',''),(346205,42685,'_blocks_22_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346206,42685,'blocks_22_acfe_flexible_layout_title','Conclusion[anchor]'),(346207,42685,'_blocks_22_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346208,42685,'blocks_22_options_theme','#ffffff'),(346209,42685,'_blocks_22_options_theme','field_617682847c335_field_6176830e2ad17'),(346210,42685,'blocks_22_options_reverse','1'),(346211,42685,'_blocks_22_options_reverse','field_61768049bb8ac'),(346212,42685,'blocks_22_options',''),(346213,42685,'_blocks_22_options','field_617682517c334'),(346214,42685,'blocks_22_split_5050_image','42679'),(346215,42685,'_blocks_22_split_5050_image','field_6239f527a0c3a'),(346216,42685,'blocks_22_split_5050_video',''),(346217,42685,'_blocks_22_split_5050_video','field_6239f3160848a'),(346218,42685,'blocks_22_split_5050_content_title',''),(346219,42685,'_blocks_22_split_5050_content_title','field_61767bfca3fc0'),(346220,42685,'blocks_22_split_5050_content_heading','Conclusion'),(346221,42685,'_blocks_22_split_5050_content_heading','field_61767b26eb8bb'),(346222,42685,'blocks_22_split_5050_content_text','Choosing the right biomechanics course is a key step in shaping your career and expanding your expertise in human movement. With so many options available, it’s important to take the time to evaluate courses based on your career goals, the content they offer, accreditation, practical learning opportunities, and industry connections. A well-structured course should provide both theoretical knowledge and hands-on experience, ensuring that you develop the skills needed to apply biomechanics effectively in your chosen field.\r\n\r\nBy considering factors such as course format, tutor expertise, financial investment, and long-term career prospects, you can make an informed decision that aligns with your aspirations. Take the time to research programmes, speak with faculty or alumni, and explore available learning pathways to find the biomechanics course that best supports your professional development.'),(346223,42685,'_blocks_22_split_5050_content_text','field_61767b3beb8bc'),(346224,42685,'blocks_22_split_5050_content_actions',''),(346225,42685,'_blocks_22_split_5050_content_actions','field_61767b68eb8bd'),(346226,42685,'blocks_22_split_5050_content',''),(346227,42685,'_blocks_22_split_5050_content','field_61767afceb8ba'),(346228,42685,'blocks_23_acfe_flexible_toggle',''),(346229,42685,'_blocks_23_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(346230,42685,'blocks_23_acfe_flexible_layout_title','Promo Panel'),(346231,42685,'_blocks_23_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(346232,42685,'blocks_23_options_alignment','center'),(346233,42685,'_blocks_23_options_alignment','field_61769449f5490'),(346234,42685,'blocks_23_options',''),(346235,42685,'_blocks_23_options','field_617693e1428f0'),(346236,42685,'blocks_23_promo_panel_image','41307'),(346237,42685,'_blocks_23_promo_panel_image','field_617693e1428f3'),(346238,42685,'blocks_23_promo_panel_content_heading','Want to Get Started?'),(346239,42685,'_blocks_23_promo_panel_content_heading','field_617693e1428f6'),(346240,42685,'blocks_23_promo_panel_content_text','Would you like help finding a biomechanics course tailored to your career goals? Get in touch to explore your options and take the next step in your biomechanics journey.'),(346241,42685,'_blocks_23_promo_panel_content_text','field_617693e1428f7'),(346242,42685,'blocks_23_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(346243,42685,'_blocks_23_promo_panel_content_actions_0_button','field_617693e1428f9'),(346244,42685,'blocks_23_promo_panel_content_actions','1'),(346245,42685,'_blocks_23_promo_panel_content_actions','field_617693e1428f8'),(346246,42685,'blocks_23_promo_panel_content',''),(346247,42685,'_blocks_23_promo_panel_content','field_617693e1428f4'),(346248,42685,'blocks_0_link_stack_6_label','7.'),(346249,42685,'_blocks_0_link_stack_6_label','field_6177b80900d00'),(346250,42685,'blocks_0_link_stack_6_title','Assess Tutor Expertise and Industry Connections'),(346251,42685,'_blocks_0_link_stack_6_title','field_6177b80f00d01'),(346252,42685,'blocks_0_link_stack_6_url','#tutor-expertise'),(346253,42685,'_blocks_0_link_stack_6_url','field_6177b82200d02'),(346254,42685,'blocks_0_link_stack_7_label','8.'),(346255,42685,'_blocks_0_link_stack_7_label','field_6177b80900d00'),(346256,42685,'blocks_0_link_stack_7_title','Compare Costs, Payment & Finance Options'),(346257,42685,'_blocks_0_link_stack_7_title','field_6177b80f00d01'),(346258,42685,'blocks_0_link_stack_7_url','#costs-and-payment'),(346259,42685,'_blocks_0_link_stack_7_url','field_6177b82200d02'),(346260,42685,'blocks_0_link_stack_8_label','9.'),(346261,42685,'_blocks_0_link_stack_8_label','field_6177b80900d00'),(346262,42685,'blocks_0_link_stack_8_title','Conclusion'),(346263,42685,'_blocks_0_link_stack_8_title','field_6177b80f00d01'),(346264,42685,'blocks_0_link_stack_8_url','#conclusion'),(346265,42685,'_blocks_0_link_stack_8_url','field_6177b82200d02'),(346267,42635,'_yoast_wpseo_focuskw','biomechanics course'),(346268,42635,'_yoast_wpseo_metadesc','Find the best biomechanics course for your career. Explore course content, accreditation, and hands-on learning for your professional growth.'),(346269,42635,'_yoast_wpseo_linkdex','40'),(346270,42686,'hide_hero','0'),(346271,42686,'_hide_hero','field_66a2380fcda39'),(346272,42686,'fft_hide_from_listings','1'),(346273,42686,'_fft_hide_from_listings','field_61f1320446ab2'),(346274,42686,'fft_page_format','default'),(346275,42686,'_fft_page_format','field_61ae213f1f218'),(346276,42686,'fft_hide_nav','1'),(346277,42686,'_fft_hide_nav','field_635bd5e43527c'),(346278,42686,'fft_hide_header_call_to_action','0'),(346279,42686,'_fft_hide_header_call_to_action','field_635bd6723527d'),(346280,42686,'fft_page_sitemap','1'),(346281,42686,'_fft_page_sitemap','field_61af9b34e8181'),(346282,42686,'blocks','a:9:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:5:\"cards\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:10:\"split_5050\";i:7;s:4:\"form\";i:8;s:10:\"accordions\";}'),(346283,42686,'_blocks','field_6176696113096'),(346284,42686,'hero_title',''),(346285,42686,'_hero_title','field_617571fe285e8'),(346286,42686,'hero_text',''),(346287,42686,'_hero_text','field_6175723c285e9'),(346288,42686,'hero_actions',''),(346289,42686,'_hero_actions','field_61757270285ea'),(346290,42686,'hero_style','default'),(346291,42686,'_hero_style','field_62051d9dc5324'),(346292,42686,'hero_image_pos_x','right'),(346293,42686,'_hero_image_pos_x','field_62ec3d05390bb'),(346294,42686,'hero_image_pos_y','top'),(346295,42686,'_hero_image_pos_y','field_62ec3d05390bc'),(346296,42686,'hero_image_pos',''),(346297,42686,'_hero_image_pos','field_62ec3d05390ba'),(346298,42686,'blocks_0_acfe_flexible_toggle',''),(346299,42686,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346300,42686,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(346301,42686,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346302,42686,'blocks_0_options_theme','#ffffff'),(346303,42686,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(346304,42686,'blocks_0_options_reverse','0'),(346305,42686,'_blocks_0_options_reverse','field_61768049bb8ac'),(346306,42686,'blocks_0_options',''),(346307,42686,'_blocks_0_options','field_617682517c334'),(346308,42686,'blocks_0_split_5050_image','40848'),(346309,42686,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(346310,42686,'blocks_0_split_5050_video',''),(346311,42686,'_blocks_0_split_5050_video','field_6239f3160848a'),(346312,42686,'blocks_0_split_5050_content_title',''),(346313,42686,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(346314,42686,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(346315,42686,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(346316,42686,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re a fitness professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(346317,42686,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(346318,42686,'blocks_0_split_5050_content_actions','1'),(346319,42686,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(346320,42686,'blocks_0_split_5050_content',''),(346321,42686,'_blocks_0_split_5050_content','field_61767afceb8ba'),(346322,42686,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(346323,42686,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(346324,42686,'blocks_1_acfe_flexible_toggle',''),(346325,42686,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346326,42686,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(346327,42686,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346328,42686,'blocks_1_options_theme','#ffffff'),(346329,42686,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(346330,42686,'blocks_1_options_reverse','1'),(346331,42686,'_blocks_1_options_reverse','field_61768049bb8ac'),(346332,42686,'blocks_1_options',''),(346333,42686,'_blocks_1_options','field_617682517c334'),(346334,42686,'blocks_1_split_5050_image','41312'),(346335,42686,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(346336,42686,'blocks_1_split_5050_video',''),(346337,42686,'_blocks_1_split_5050_video','field_6239f3160848a'),(346338,42686,'blocks_1_split_5050_content_title',''),(346339,42686,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(346340,42686,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(346341,42686,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(346342,42686,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nWhether delivered in-person or through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally recognised certification to boost career opportunities</li>\r\n 	<li>Learn from leading biomechanics experts with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(346343,42686,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(346344,42686,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(346345,42686,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(346346,42686,'blocks_1_split_5050_content_actions','1'),(346347,42686,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(346348,42686,'blocks_1_split_5050_content',''),(346349,42686,'_blocks_1_split_5050_content','field_61767afceb8ba'),(346350,42686,'blocks_2_acfe_flexible_toggle',''),(346351,42686,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(346352,42686,'blocks_2_acfe_flexible_layout_title','Text Block'),(346353,42686,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(346354,42686,'blocks_2_options_theme','#ffffff'),(346355,42686,'_blocks_2_options_theme','field_6176830e2ad17'),(346356,42686,'blocks_2_options',''),(346357,42686,'_blocks_2_options','field_6176830e2ad16'),(346358,42686,'blocks_2_text_block_heading','Our Popular Courses:'),(346359,42686,'_blocks_2_text_block_heading','field_617669d413097'),(346360,42686,'blocks_2_text_block_content',''),(346361,42686,'_blocks_2_text_block_content','field_617669ec13098'),(346362,42686,'blocks_3_acfe_flexible_toggle',''),(346363,42686,'_blocks_3_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(346364,42686,'blocks_3_acfe_flexible_layout_title','Cards'),(346365,42686,'_blocks_3_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(346366,42686,'blocks_3_options_theme','#ffffff'),(346367,42686,'_blocks_3_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(346368,42686,'blocks_3_options_format','carousel'),(346369,42686,'_blocks_3_options_format','field_617a7b15245b5'),(346370,42686,'blocks_3_options_style','default'),(346371,42686,'_blocks_3_options_style','field_6278ffb63484a'),(346372,42686,'blocks_3_options_cards_current_listing','0'),(346373,42686,'_blocks_3_options_cards_current_listing','field_6193d7effb7a4'),(346374,42686,'blocks_3_options_cards_content','selection'),(346375,42686,'_blocks_3_options_cards_content','field_617aba6122688'),(346376,42686,'blocks_3_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(346377,42686,'_blocks_3_options_cards_select_posts','field_6193f85fbaea1'),(346378,42686,'blocks_3_options',''),(346379,42686,'_blocks_3_options','field_617a7b15245b3'),(346380,42686,'blocks_4_acfe_flexible_toggle',''),(346381,42686,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(346382,42686,'blocks_4_acfe_flexible_layout_title','Quote'),(346383,42686,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(346384,42686,'blocks_4_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(346385,42686,'_blocks_4_quote_content','field_6177cdacdd67a'),(346386,42686,'blocks_4_quote_author','Alex Carter, Certified Biomechanics Coach'),(346387,42686,'_blocks_4_quote_author','field_6177cdc6dd67b'),(346388,42686,'blocks_5_acfe_flexible_toggle',''),(346389,42686,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(346390,42686,'blocks_5_acfe_flexible_layout_title','Timeline'),(346391,42686,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(346392,42686,'blocks_5_options_theme','#ffffff'),(346393,42686,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(346394,42686,'blocks_5_options',''),(346395,42686,'_blocks_5_options','field_6177de53d1195'),(346396,42686,'blocks_5_timeline_content_title',''),(346397,42686,'_blocks_5_timeline_content_title','field_6177de53d1198'),(346398,42686,'blocks_5_timeline_content_heading','Why choose Biomechanics Education?'),(346399,42686,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(346400,42686,'blocks_5_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(346401,42686,'_blocks_5_timeline_content_text','field_6177de53d119a'),(346402,42686,'blocks_5_timeline_content_actions',''),(346403,42686,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(346404,42686,'blocks_5_timeline_content',''),(346405,42686,'_blocks_5_timeline_content','field_6177de53d1197'),(346406,42686,'blocks_5_timeline_items_0_title','Industry-Leading Expertise'),(346407,42686,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(346408,42686,'blocks_5_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(346409,42686,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(346410,42686,'blocks_5_timeline_items_1_title','Global Accessibility'),(346411,42686,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(346412,42686,'blocks_5_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(346413,42686,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(346414,42686,'blocks_5_timeline_items_2_title','Internationally Recognised Certification'),(346415,42686,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(346416,42686,'blocks_5_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(346417,42686,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(346418,42686,'blocks_5_timeline_items_3_title','Career Opportunities Worldwide'),(346419,42686,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(346420,42686,'blocks_5_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(346421,42686,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(346422,42686,'blocks_5_timeline_items','4'),(346423,42686,'_blocks_5_timeline_items','field_6177de53d119d'),(346424,42686,'_thumbnail_id','40818'),(346425,42686,'__thumbnail_id','field_617570855ddaf'),(346426,42686,'blocks_6_acfe_flexible_toggle',''),(346427,42686,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346428,42686,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(346429,42686,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346430,42686,'blocks_6_options_theme','#ffffff'),(346431,42686,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(346432,42686,'blocks_6_options_reverse','0'),(346433,42686,'_blocks_6_options_reverse','field_61768049bb8ac'),(346434,42686,'blocks_6_options',''),(346435,42686,'_blocks_6_options','field_617682517c334'),(346436,42686,'blocks_6_split_5050_image','41300'),(346437,42686,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(346438,42686,'blocks_6_split_5050_video',''),(346439,42686,'_blocks_6_split_5050_video','field_6239f3160848a'),(346440,42686,'blocks_6_split_5050_content_title',''),(346441,42686,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(346442,42686,'blocks_6_split_5050_content_heading','International Support & Learning Experience'),(346443,42686,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(346444,42686,'blocks_6_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(346445,42686,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(346446,42686,'blocks_6_split_5050_content_actions',''),(346447,42686,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(346448,42686,'blocks_6_split_5050_content',''),(346449,42686,'_blocks_6_split_5050_content','field_61767afceb8ba'),(346450,42686,'blocks_7_acfe_flexible_toggle',''),(346451,42686,'_blocks_7_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(346452,42686,'blocks_7_acfe_flexible_layout_title','Form'),(346453,42686,'_blocks_7_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(346454,42686,'blocks_7_row_content_format','standard'),(346455,42686,'_blocks_7_row_content_format','field_6481ead962881'),(346456,42686,'blocks_7_row_content_title',''),(346457,42686,'_blocks_7_row_content_title','field_61a0f5f5b3db1'),(346458,42686,'blocks_7_row_content_heading','Contact Us Today'),(346459,42686,'_blocks_7_row_content_heading','field_61a0f5f5b3db2'),(346460,42686,'blocks_7_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(346461,42686,'_blocks_7_row_content_text','field_61a0f5f5b3db3'),(346462,42686,'blocks_7_row_content_actions',''),(346463,42686,'_blocks_7_row_content_actions','field_61a0f5f5b3db4'),(346464,42686,'blocks_7_row_content',''),(346465,42686,'_blocks_7_row_content','field_61a0f5f5b3db0'),(346466,42686,'blocks_7_row_form','40394'),(346467,42686,'_blocks_7_row_form','field_61a4ff2c0b08e'),(346468,42686,'blocks_7_row_form_button_label',''),(346469,42686,'_blocks_7_row_form_button_label','field_61e12cf6fe412'),(346470,42686,'blocks_8_acfe_flexible_toggle',''),(346471,42686,'_blocks_8_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(346472,42686,'blocks_8_acfe_flexible_layout_title','Accordions / FAQs'),(346473,42686,'_blocks_8_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(346474,42686,'blocks_8_options_theme','#ffffff'),(346475,42686,'_blocks_8_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(346476,42686,'blocks_8_options_state','0'),(346477,42686,'_blocks_8_options_state','field_6239fcb7508c5'),(346478,42686,'blocks_8_options',''),(346479,42686,'_blocks_8_options','field_6177e2991ac44'),(346480,42686,'blocks_8_content_title',''),(346481,42686,'_blocks_8_content_title','field_64d237e8bb1e2'),(346482,42686,'blocks_8_content_heading','FAQs'),(346483,42686,'_blocks_8_content_heading','field_64d237e8bb1e3'),(346484,42686,'blocks_8_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(346485,42686,'_blocks_8_content_text','field_64d237e8bb1e4'),(346486,42686,'blocks_8_content_actions',''),(346487,42686,'_blocks_8_content_actions','field_64d237e8bb1e5'),(346488,42686,'blocks_8_content_align','left'),(346489,42686,'_blocks_8_content_align','field_64d2443e6b6aa'),(346490,42686,'blocks_8_content',''),(346491,42686,'_blocks_8_content','field_64d237e8bb1e1'),(346492,42686,'blocks_8_accordion_content','custom'),(346493,42686,'_blocks_8_accordion_content','field_6177e2c81ac4f'),(346494,42686,'blocks_8_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(346495,42686,'_blocks_8_accordion_items_0_title','field_6177e2991ac4d'),(346496,42686,'blocks_8_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(346497,42686,'_blocks_8_accordion_items_0_text','field_6177e2991ac4e'),(346498,42686,'blocks_8_accordion_items_1_title','Is the qualification recognised globally?'),(346499,42686,'_blocks_8_accordion_items_1_title','field_6177e2991ac4d'),(346500,42686,'blocks_8_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(346501,42686,'_blocks_8_accordion_items_1_text','field_6177e2991ac4e'),(346502,42686,'blocks_8_accordion_items_2_title','What are the study options for international students?'),(346503,42686,'_blocks_8_accordion_items_2_title','field_6177e2991ac4d'),(346504,42686,'blocks_8_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(346505,42686,'_blocks_8_accordion_items_2_text','field_6177e2991ac4e'),(346506,42686,'blocks_8_accordion_items_3_title','Who is this course suitable for?'),(346507,42686,'_blocks_8_accordion_items_3_title','field_6177e2991ac4d'),(346508,42686,'blocks_8_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(346509,42686,'_blocks_8_accordion_items_3_text','field_6177e2991ac4e'),(346510,42686,'blocks_8_accordion_items_4_title','How do I enrol and what are the payment options?'),(346511,42686,'_blocks_8_accordion_items_4_title','field_6177e2991ac4d'),(346512,42686,'blocks_8_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(346513,42686,'_blocks_8_accordion_items_4_text','field_6177e2991ac4e'),(346514,42686,'blocks_8_accordion_items','5'),(346515,42686,'_blocks_8_accordion_items','field_6177e2991ac4c'),(346516,42686,'blocks_8_actions',''),(346517,42686,'_blocks_8_actions','field_61a746a817f7a'),(346518,40264,'_fft_metadata_instant_access','1'),(346519,41598,'_fft_metadata_instant_access','1'),(346520,41403,'_fft_metadata_instant_access','1'),(346521,40265,'_fft_metadata_instant_access','1'),(346522,40273,'_fft_metadata_instant_access','1'),(346523,40274,'_fft_metadata_instant_access','1'),(346524,40275,'_fft_metadata_instant_access','1'),(346525,40272,'_fft_metadata_instant_access','1'),(346526,40271,'_fft_metadata_instant_access','1'),(346527,40270,'_fft_metadata_instant_access','1'),(346528,40263,'_fft_metadata_instant_access','1'),(346529,40276,'_fft_metadata_instant_access','1'),(346530,40279,'_fft_metadata_instant_access','1'),(346531,40277,'_fft_metadata_instant_access','1'),(346532,40282,'_fft_metadata_instant_access','1'),(346533,40283,'_fft_metadata_instant_access','1'),(346534,40285,'_fft_metadata_instant_access','1'),(346535,40284,'_fft_metadata_instant_access','1'),(346536,40280,'_fft_metadata_instant_access','1'),(346537,40281,'_fft_metadata_instant_access','1'),(346538,40286,'_fft_metadata_instant_access','1'),(346540,42796,'hide_hero','0'),(346541,42796,'_hide_hero','field_66a2380fcda39'),(346542,42796,'hero_title',''),(346543,42796,'_hero_title','field_617571fe285e8'),(346544,42796,'hero_text','Find the right biomechanics course to match your career goals, enhance your expertise, and advance your future in movement science.'),(346545,42796,'_hero_text','field_6175723c285e9'),(346546,42796,'hero_actions',''),(346547,42796,'_hero_actions','field_61757270285ea'),(346548,42796,'hero_style','default'),(346549,42796,'_hero_style','field_62051d9dc5324'),(346550,42796,'hero_image_pos_x','right'),(346551,42796,'_hero_image_pos_x','field_62ec3d05390bb'),(346552,42796,'hero_image_pos_y','top'),(346553,42796,'_hero_image_pos_y','field_62ec3d05390bc'),(346554,42796,'hero_image_pos',''),(346555,42796,'_hero_image_pos','field_62ec3d05390ba'),(346556,42796,'fft_hide_from_listings','0'),(346557,42796,'_fft_hide_from_listings','field_61f1320446ab2'),(346558,42796,'post_format','402'),(346559,42796,'_post_format','field_61756bfb51898'),(346560,42796,'post_author',''),(346561,42796,'_post_author','field_62ec389d22113'),(346562,42796,'post_reviewer',''),(346563,42796,'_post_reviewer','field_627140a2a9800'),(346564,42796,'post_table_of_contents','0'),(346565,42796,'_post_table_of_contents','field_65c503bc846a6'),(346566,42796,'blocks','a:24:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:10:\"split_5050\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"accordions\";i:8;s:10:\"text_block\";i:9;s:5:\"icons\";i:10;s:10:\"text_block\";i:11;s:10:\"split_5050\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:13:\"step_timeline\";i:16;s:10:\"text_block\";i:17;s:10:\"split_5050\";i:18;s:10:\"split_5050\";i:19;s:10:\"split_5050\";i:20;s:10:\"text_block\";i:21;s:5:\"icons\";i:22;s:10:\"split_5050\";i:23;s:11:\"promo_panel\";}'),(346567,42796,'_blocks','field_6176696113096'),(346568,42796,'_thumbnail_id','42680'),(346569,42796,'__thumbnail_id','field_617570855ddaf'),(346570,42796,'blocks_0_acfe_flexible_toggle',''),(346571,42796,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(346572,42796,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(346573,42796,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(346574,42796,'blocks_0_options_theme','#ffffff'),(346575,42796,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(346576,42796,'blocks_0_options',''),(346577,42796,'_blocks_0_options','field_6177b758246ae'),(346578,42796,'blocks_0_link_stack_content_title',''),(346579,42796,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(346580,42796,'blocks_0_link_stack_content_heading','Introduction'),(346581,42796,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(346582,42796,'blocks_0_link_stack_content_text','This guide will walk you through the key factors to consider when selecting a biomechanics course, from defining your career path and evaluating course content to understanding accreditation, practical applications, and financial considerations. By the end, you’ll have a clear roadmap to choosing a programme that supports your professional development and sets you up for long-term success in the world of biomechanics.'),(346583,42796,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(346584,42796,'blocks_0_link_stack_content_actions_0_button',''),(346585,42796,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(346586,42796,'blocks_0_link_stack_content_actions','1'),(346587,42796,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(346588,42796,'blocks_0_link_stack_content',''),(346589,42796,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(346590,42796,'blocks_0_link_stack_0_label','1.'),(346591,42796,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(346592,42796,'blocks_0_link_stack_0_title','Overview'),(346593,42796,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(346594,42796,'blocks_0_link_stack_0_url','#overview'),(346595,42796,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(346596,42796,'blocks_0_link_stack_1_label','2.'),(346597,42796,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(346598,42796,'blocks_0_link_stack_1_title','Define Your Career Goals'),(346599,42796,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(346600,42796,'blocks_0_link_stack_1_url','#define-your-career-goals'),(346601,42796,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(346602,42796,'blocks_0_link_stack_2_label','3.'),(346603,42796,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(346604,42796,'blocks_0_link_stack_2_title','Evaluate Course Content'),(346605,42796,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(346606,42796,'blocks_0_link_stack_2_url','#evaluate-course-content'),(346607,42796,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(346608,42796,'blocks_0_link_stack_3_label','4.'),(346609,42796,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(346610,42796,'blocks_0_link_stack_3_title','Accreditation and Recognition'),(346611,42796,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(346612,42796,'blocks_0_link_stack_3_url','#accreditation-and-recognition'),(346613,42796,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(346614,42796,'blocks_0_link_stack_4_label','5.'),(346615,42796,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(346616,42796,'blocks_0_link_stack_4_title','Experience & Opportunities'),(346617,42796,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(346618,42796,'blocks_0_link_stack_4_url','#experience-and-opportunities'),(346619,42796,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(346620,42796,'blocks_0_link_stack_5_label','6.'),(346621,42796,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(346622,42796,'blocks_0_link_stack_5_title','Evaluate Course Format and Flexibility'),(346623,42796,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(346624,42796,'blocks_0_link_stack_5_url','#course-format'),(346625,42796,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(346626,42796,'blocks_0_link_stack','9'),(346627,42796,'_blocks_0_link_stack','field_6177b7f600cff'),(346628,42796,'blocks_1_acfe_flexible_toggle',''),(346629,42796,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346630,42796,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(346631,42796,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346632,42796,'blocks_1_options_theme','#f5f5f5'),(346633,42796,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(346634,42796,'blocks_1_options_reverse','0'),(346635,42796,'_blocks_1_options_reverse','field_61768049bb8ac'),(346636,42796,'blocks_1_options',''),(346637,42796,'_blocks_1_options','field_617682517c334'),(346638,42796,'blocks_1_split_5050_image','42678'),(346639,42796,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(346640,42796,'blocks_1_split_5050_video',''),(346641,42796,'_blocks_1_split_5050_video','field_6239f3160848a'),(346642,42796,'blocks_1_split_5050_content_title',''),(346643,42796,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(346644,42796,'blocks_1_split_5050_content_heading','Overview'),(346645,42796,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(346646,42796,'blocks_1_split_5050_content_text','Biomechanics is an exciting and rapidly expanding field that bridges the gap between movement science, health, and performance. Whether you’re working in sports science, physiotherapy, rehabilitation, or research, studying biomechanics courses can provide the expertise needed to analyse movement, prevent injuries, and optimise physical function.\r\n\r\nPeople choose to study biomechanics courses for a variety of reasons. Some aim to enhance their careers in healthcare or fitness by gaining a deeper understanding of human movement, while others may be interested in injury prevention, rehabilitation, or performance optimisation. Biomechanics is also essential in fields like ergonomics, prosthetics, and wearable technology development, where understanding movement mechanics leads to better product design and improved patient outcomes. No matter your background, the right biomechanics course can equip you with the skills and knowledge needed to advance in your chosen industry.'),(346647,42796,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(346648,42796,'blocks_1_split_5050_content_actions',''),(346649,42796,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(346650,42796,'blocks_1_split_5050_content',''),(346651,42796,'_blocks_1_split_5050_content','field_61767afceb8ba'),(346652,42796,'blocks_3_acfe_flexible_toggle',''),(346653,42796,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346654,42796,'blocks_3_acfe_flexible_layout_title','50/50 Split - Sports Science, Exercise & Performance Analysis'),(346655,42796,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346656,42796,'blocks_3_options_theme','#ffffff'),(346657,42796,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(346658,42796,'blocks_3_options_reverse','1'),(346659,42796,'_blocks_3_options_reverse','field_61768049bb8ac'),(346660,42796,'blocks_3_options',''),(346661,42796,'_blocks_3_options','field_617682517c334'),(346662,42796,'blocks_3_split_5050_image','31069'),(346663,42796,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(346664,42796,'blocks_3_split_5050_video',''),(346665,42796,'_blocks_3_split_5050_video','field_6239f3160848a'),(346666,42796,'blocks_3_split_5050_content_title','Sports Science, Exercise & Performance Analysis'),(346667,42796,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(346668,42796,'blocks_3_split_5050_content_heading',''),(346669,42796,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(346670,42796,'blocks_3_split_5050_content_text','For those looking to work with athletes, fitness clients, or in sports prehabilitation, biomechanics is essential for assessing movement, reducing injury risk, and optimising performance. Courses in this area focus on understanding human movement efficiency and improving athletic outcomes.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Movement assessment and analysis</li>\r\n 	<li>Risk reduction and injury prevention</li>\r\n 	<li>Performance optimisation and training techniques</li>\r\n</ul>'),(346671,42796,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(346672,42796,'blocks_3_split_5050_content_actions',''),(346673,42796,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(346674,42796,'blocks_3_split_5050_content',''),(346675,42796,'_blocks_3_split_5050_content','field_61767afceb8ba'),(346676,42796,'blocks_13_acfe_flexible_toggle',''),(346677,42796,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346678,42796,'blocks_13_acfe_flexible_layout_title','Opportunities (3)'),(346679,42796,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346680,42796,'blocks_13_options_theme','#ffffff'),(346681,42796,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(346682,42796,'blocks_13_options_reverse','0'),(346683,42796,'_blocks_13_options_reverse','field_61768049bb8ac'),(346684,42796,'blocks_13_options',''),(346685,42796,'_blocks_13_options','field_617682517c334'),(346686,42796,'blocks_13_split_5050_image','40310'),(346687,42796,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(346688,42796,'blocks_13_split_5050_video',''),(346689,42796,'_blocks_13_split_5050_video','field_6239f3160848a'),(346690,42796,'blocks_13_split_5050_content_title','Industry Collaborations & Work Placements'),(346691,42796,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(346692,42796,'blocks_13_split_5050_content_heading',''),(346693,42796,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(346694,42796,'blocks_13_split_5050_content_text','Some biomechanics courses offer partnerships with sports teams, hospitals, or research institutions, allowing students to gain direct experience in their chosen field. These collaborations provide a bridge between education and industry, helping students build connections, gain mentorship, and apply their knowledge in professional settings.'),(346695,42796,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(346696,42796,'blocks_13_split_5050_content_actions',''),(346697,42796,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(346698,42796,'blocks_13_split_5050_content',''),(346699,42796,'_blocks_13_split_5050_content','field_61767afceb8ba'),(346700,42796,'blocks_6_acfe_flexible_toggle',''),(346701,42796,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346702,42796,'blocks_6_acfe_flexible_layout_title','50/50 Split - Research & Academia'),(346703,42796,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346704,42796,'blocks_6_options_theme','#ffffff'),(346705,42796,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(346706,42796,'blocks_6_options_reverse','1'),(346707,42796,'_blocks_6_options_reverse','field_61768049bb8ac'),(346708,42796,'blocks_6_options',''),(346709,42796,'_blocks_6_options','field_617682517c334'),(346710,42796,'blocks_6_split_5050_image','39334'),(346711,42796,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(346712,42796,'blocks_6_split_5050_video',''),(346713,42796,'_blocks_6_split_5050_video','field_6239f3160848a'),(346714,42796,'blocks_6_split_5050_content_title','Research & Academia'),(346715,42796,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(346716,42796,'blocks_6_split_5050_content_heading',''),(346717,42796,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(346718,42796,'blocks_6_split_5050_content_text','For those passionate about advancing the scientific understanding of human movement, biomechanics research provides opportunities in academia, lab-based studies, and data-driven analysis. Courses in this area typically involve motion analysis, computational biomechanics, and research methodology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Motion capture and movement analysis</li>\r\n 	<li>Computational biomechanics and modelling</li>\r\n 	<li>Research methods and academic publication</li>\r\n</ul>'),(346719,42796,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(346720,42796,'blocks_6_split_5050_content_actions',''),(346721,42796,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(346722,42796,'blocks_6_split_5050_content',''),(346723,42796,'_blocks_6_split_5050_content','field_61767afceb8ba'),(346724,42796,'blocks_5_acfe_flexible_toggle',''),(346725,42796,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346726,42796,'blocks_5_acfe_flexible_layout_title','50/50 Split - Engineering & Ergonomics'),(346727,42796,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346728,42796,'blocks_5_options_theme','#ffffff'),(346729,42796,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(346730,42796,'blocks_5_options_reverse','1'),(346731,42796,'_blocks_5_options_reverse','field_61768049bb8ac'),(346732,42796,'blocks_5_options',''),(346733,42796,'_blocks_5_options','field_617682517c334'),(346734,42796,'blocks_5_split_5050_image','35755'),(346735,42796,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(346736,42796,'blocks_5_split_5050_video',''),(346737,42796,'_blocks_5_split_5050_video','field_6239f3160848a'),(346738,42796,'blocks_5_split_5050_content_title','Engineering & Ergonomics'),(346739,42796,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(346740,42796,'blocks_5_split_5050_content_heading',''),(346741,42796,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(346742,42796,'blocks_5_split_5050_content_text','Those interested in biomechanics for product design, prosthetics, and ergonomic solutions will need courses that integrate engineering principles with human movement. This field is ideal for those developing medical devices, workplace ergonomics, or wearable technology.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Human factors and ergonomics</li>\r\n 	<li>Prosthetics and orthotic design</li>\r\n 	<li>Biomechanical modelling and mechanical engineering principles</li>\r\n</ul>'),(346743,42796,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(346744,42796,'blocks_5_split_5050_content_actions',''),(346745,42796,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(346746,42796,'blocks_5_split_5050_content',''),(346747,42796,'_blocks_5_split_5050_content','field_61767afceb8ba'),(346748,42796,'blocks_14_acfe_flexible_toggle',''),(346749,42796,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346750,42796,'blocks_14_acfe_flexible_layout_title','Opportunities (4)'),(346751,42796,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346752,42796,'blocks_14_options_theme','#ffffff'),(346753,42796,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(346754,42796,'blocks_14_options_reverse','0'),(346755,42796,'_blocks_14_options_reverse','field_61768049bb8ac'),(346756,42796,'blocks_14_options',''),(346757,42796,'_blocks_14_options','field_617682517c334'),(346758,42796,'blocks_14_split_5050_image','39483'),(346759,42796,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(346760,42796,'blocks_14_split_5050_video',''),(346761,42796,'_blocks_14_split_5050_video','field_6239f3160848a'),(346762,42796,'blocks_14_split_5050_content_title','Research Opportunities & Academic Development'),(346763,42796,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(346764,42796,'blocks_14_split_5050_content_heading',''),(346765,42796,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(346766,42796,'blocks_14_split_5050_content_text','For those interested in biomechanics research, programmes that provide access to research projects, funding opportunities, and academic publications can be highly beneficial. Research-based biomechanics courses often allow students to contribute to the advancement of movement science by conducting studies, presenting findings, and working with experts in the field.'),(346767,42796,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(346768,42796,'blocks_14_split_5050_content_actions',''),(346769,42796,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(346770,42796,'blocks_14_split_5050_content',''),(346771,42796,'_blocks_14_split_5050_content','field_61767afceb8ba'),(346772,42796,'blocks_20_acfe_flexible_toggle',''),(346773,42796,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(346774,42796,'blocks_20_acfe_flexible_layout_title','Costs and Payment[anchor]'),(346775,42796,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(346776,42796,'blocks_20_options_theme','#b61234'),(346777,42796,'_blocks_20_options_theme','field_6176830e2ad17'),(346778,42796,'blocks_20_options',''),(346779,42796,'_blocks_20_options','field_6176830e2ad16'),(346780,42796,'blocks_20_text_block_heading','Compare Costs, Payment & Finance Options'),(346781,42796,'_blocks_20_text_block_heading','field_617669d413097'),(346782,42796,'blocks_20_text_block_content','Biomechanics courses can vary significantly in cost, depending on factors such as course level, institution, and delivery format. While investing in your education is important, it’s equally essential to choose a course that provides good value for money and aligns with your career goals. Understanding the financial commitment involved and exploring available funding options can help you make an informed decision without unnecessary financial strain.'),(346783,42796,'_blocks_20_text_block_content','field_617669ec13098'),(346784,42796,'blocks_10_acfe_flexible_toggle',''),(346785,42796,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(346786,42796,'blocks_10_acfe_flexible_layout_title','Experience and Opportunities[anchor] '),(346787,42796,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(346788,42796,'blocks_10_options_theme','#ffffff'),(346789,42796,'_blocks_10_options_theme','field_6176830e2ad17'),(346790,42796,'blocks_10_options',''),(346791,42796,'_blocks_10_options','field_6176830e2ad16'),(346792,42796,'blocks_10_text_block_heading','Consider Hands-On Experience & Opportunities'),(346793,42796,'_blocks_10_text_block_heading','field_617669d413097'),(346794,42796,'blocks_10_text_block_content','Biomechanics is a highly practical field, and hands-on experience is essential for developing the skills needed to apply movement analysis, injury prevention strategies, and rehabilitation techniques in real-world settings. A strong biomechanics course should go beyond theory, offering opportunities to work with motion analysis tools, test movement mechanics, and apply biomechanical principles in clinical, sports, or research environments. Practical training ensures that you develop the ability to assess, interpret, and improve movement patterns effectively, making you more prepared for your career.\r\n\r\nWhen selecting a biomechanics course, consider the level of hands-on experience provided. Courses that include laboratory work, industry placements, and real-world applications will give you a competitive advantage in the field. Below are some key areas to look for when evaluating the practical components of a programme.'),(346795,42796,'_blocks_10_text_block_content','field_617669ec13098'),(346796,42796,'blocks_2_acfe_flexible_toggle',''),(346797,42796,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(346798,42796,'blocks_2_acfe_flexible_layout_title','Define Your Career Goals[anchor]'),(346799,42796,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(346800,42796,'blocks_2_options_theme','#ffffff'),(346801,42796,'_blocks_2_options_theme','field_6176830e2ad17'),(346802,42796,'blocks_2_options',''),(346803,42796,'_blocks_2_options','field_6176830e2ad16'),(346804,42796,'blocks_2_text_block_heading','Define Your Career Goals'),(346805,42796,'_blocks_2_text_block_heading','field_617669d413097'),(346806,42796,'blocks_2_text_block_content','Choosing the right biomechanics course starts with understanding both your career aspirations and your interest in the field. Biomechanics spans multiple industries, including sports science, healthcare, rehabilitation, and ergonomics, so it’s important to select a course that not only supports your professional goals but also aligns with what genuinely excites you.\r\n\r\nWhether you’re passionate about helping athletes improve performance, working in injury rehabilitation, or applying biomechanics in technology and product design, having a real interest in the subject will make your studies more engaging and your career more fulfilling. By clarifying what drives you and where you want to apply your skills, you can find a course that provides the right balance of knowledge, practical application, and career opportunities.'),(346807,42796,'_blocks_2_text_block_content','field_617669ec13098'),(346808,42796,'blocks_4_acfe_flexible_toggle',''),(346809,42796,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346810,42796,'blocks_4_acfe_flexible_layout_title','50/50 Split - Healthcare & Rehabilitation'),(346811,42796,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346812,42796,'blocks_4_options_theme','#ffffff'),(346813,42796,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(346814,42796,'blocks_4_options_reverse','1'),(346815,42796,'_blocks_4_options_reverse','field_61768049bb8ac'),(346816,42796,'blocks_4_options',''),(346817,42796,'_blocks_4_options','field_617682517c334'),(346818,42796,'blocks_4_split_5050_image','27963'),(346819,42796,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(346820,42796,'blocks_4_split_5050_video',''),(346821,42796,'_blocks_4_split_5050_video','field_6239f3160848a'),(346822,42796,'blocks_4_split_5050_content_title','Healthcare & Rehabilitation'),(346823,42796,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(346824,42796,'blocks_4_split_5050_content_heading',''),(346825,42796,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(346826,42796,'blocks_4_split_5050_content_text','Biomechanics is a crucial component of physical therapy, prosthetics, and orthotics, helping professionals diagnose and treat movement-related conditions. If you\'re interested in rehabilitation, look for courses that explore clinical biomechanics and therapy-based interventions.\r\n\r\nKey course topics:\r\n<ul>\r\n 	<li>Musculoskeletal assessment</li>\r\n 	<li>Clinical biomechanics and rehabilitation technologies</li>\r\n 	<li>Human movement disorders and therapeutic exercise</li>\r\n</ul>'),(346827,42796,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(346828,42796,'blocks_4_split_5050_content_actions',''),(346829,42796,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(346830,42796,'blocks_4_split_5050_content',''),(346831,42796,'_blocks_4_split_5050_content','field_61767afceb8ba'),(346832,42796,'blocks_7_acfe_flexible_toggle',''),(346833,42796,'_blocks_7_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(346834,42796,'blocks_7_acfe_flexible_layout_title','Evaluate Course Content[anchor]'),(346835,42796,'_blocks_7_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(346836,42796,'blocks_7_options_theme','#f5f5f5'),(346837,42796,'_blocks_7_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(346838,42796,'blocks_7_options_state','0'),(346839,42796,'_blocks_7_options_state','field_6239fcb7508c5'),(346840,42796,'blocks_7_options',''),(346841,42796,'_blocks_7_options','field_6177e2991ac44'),(346842,42796,'blocks_7_content_title',''),(346843,42796,'_blocks_7_content_title','field_64d237e8bb1e2'),(346844,42796,'blocks_7_content_heading','Evaluate Course Content'),(346845,42796,'_blocks_7_content_heading','field_64d237e8bb1e3'),(346846,42796,'blocks_7_content_text','Not all biomechanics courses cover the same material, and selecting the right programme means understanding what topics will best support your career goals. The right course should provide a balance of theoretical understanding and hands-on application, equipping you with the expertise to work effectively in your chosen field.'),(346847,42796,'_blocks_7_content_text','field_64d237e8bb1e4'),(346848,42796,'blocks_7_content_actions',''),(346849,42796,'_blocks_7_content_actions','field_64d237e8bb1e5'),(346850,42796,'blocks_7_content_align','left'),(346851,42796,'_blocks_7_content_align','field_64d2443e6b6aa'),(346852,42796,'blocks_7_content',''),(346853,42796,'_blocks_7_content','field_64d237e8bb1e1'),(346854,42796,'blocks_7_accordion_content','custom'),(346855,42796,'_blocks_7_accordion_content','field_6177e2c81ac4f'),(346856,42796,'blocks_7_accordion_items_0_title','Fundamentals of Biomechanics'),(346857,42796,'_blocks_7_accordion_items_0_title','field_6177e2991ac4d'),(346858,42796,'blocks_7_accordion_items_0_text','Every biomechanics course should start with the fundamental principles of human movement. This includes an in-depth understanding of anatomy, joint mechanics, and how forces interact with the body. These core principles form the basis for more advanced applications in sports science, rehabilitation, and engineering.'),(346859,42796,'_blocks_7_accordion_items_0_text','field_6177e2991ac4e'),(346860,42796,'blocks_7_accordion_items_1_title','Advanced Motion Analysis'),(346861,42796,'_blocks_7_accordion_items_1_title','field_6177e2991ac4d'),(346862,42796,'blocks_7_accordion_items_1_text','Biomechanics involves detailed movement analysis using specialised tools and technology. Courses that include 3D motion capture, electromyography (EMG), and force plate analysis allow students to assess movement patterns in real-time, which is essential for high-performance sports, injury prevention, and clinical diagnostics.'),(346863,42796,'_blocks_7_accordion_items_1_text','field_6177e2991ac4e'),(346864,42796,'blocks_7_accordion_items_2_title','Risk Reduction, Prehabilitation & Rehabilitation'),(346865,42796,'_blocks_7_accordion_items_2_title','field_6177e2991ac4d'),(346866,42796,'blocks_7_accordion_items_2_text','Injury prevention and rehabilitation are key areas of biomechanics, especially for those working in healthcare, sports therapy, or personal training. This topic focuses on musculoskeletal dysfunction, clinical biomechanics, and therapeutic exercise strategies that help individuals recover from or prevent injuries.'),(346867,42796,'_blocks_7_accordion_items_2_text','field_6177e2991ac4e'),(346868,42796,'blocks_7_accordion_items_3_title','Sports Biomechanics'),(346869,42796,'_blocks_7_accordion_items_3_title','field_6177e2991ac4d'),(346870,42796,'blocks_7_accordion_items_3_text','For those interested in performance enhancement, sports biomechanics delves into movement efficiency, force application, and injury prevention for athletes. Topics often include gait analysis, technique refinement, and training adaptations to improve athletic performance while reducing strain on the body.'),(346871,42796,'_blocks_7_accordion_items_3_text','field_6177e2991ac4e'),(346872,42796,'blocks_7_accordion_items_4_title','Biomedical Engineering Applications'),(346873,42796,'_blocks_7_accordion_items_4_title','field_6177e2991ac4d'),(346874,42796,'blocks_7_accordion_items_4_text','Biomechanics plays a crucial role in the development of prosthetics, orthotics, and wearable technology. Courses with a focus on biomedical applications will cover how mechanical principles are integrated with human anatomy to create devices that enhance mobility, support rehabilitation, and improve quality of life.'),(346875,42796,'_blocks_7_accordion_items_4_text','field_6177e2991ac4e'),(346876,42796,'blocks_7_accordion_items_5_title','Computational Biomechanics'),(346877,42796,'_blocks_7_accordion_items_5_title','field_6177e2991ac4d'),(346878,42796,'blocks_7_accordion_items_5_text','This field applies software modelling and simulation techniques to understand human movement and predict injury risks. It is particularly valuable for those interested in research, product development, or designing interventions for rehabilitation and sports performance.'),(346879,42796,'_blocks_7_accordion_items_5_text','field_6177e2991ac4e'),(346880,42796,'blocks_7_accordion_items','6'),(346881,42796,'_blocks_7_accordion_items','field_6177e2991ac4c'),(346882,42796,'blocks_7_actions',''),(346883,42796,'_blocks_7_actions','field_61a746a817f7a'),(346884,42796,'blocks_8_acfe_flexible_toggle',''),(346885,42796,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(346886,42796,'blocks_8_acfe_flexible_layout_title','Accreditation and Recognition[anchor]'),(346887,42796,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(346888,42796,'blocks_8_options_theme','#b61234'),(346889,42796,'_blocks_8_options_theme','field_6176830e2ad17'),(346890,42796,'blocks_8_options',''),(346891,42796,'_blocks_8_options','field_6176830e2ad16'),(346892,42796,'blocks_8_text_block_heading','Check Accreditation and Recognition'),(346893,42796,'_blocks_8_text_block_heading','field_617669d413097'),(346894,42796,'blocks_8_text_block_content','<p data-start=\"47\" data-end=\"520\">Choosing an accredited biomechanics course ensures that your qualification meets industry standards and is recognised by employers and professional bodies. Accreditation adds credibility to your training, improving job prospects and opportunities for further study or certification. Whether you’re aiming for a career in sports science, rehabilitation, or biomechanics research, selecting a recognised course helps validate your expertise and enhances career progression.</p>'),(346895,42796,'_blocks_8_text_block_content','field_617669ec13098'),(346896,42796,'blocks_9_acfe_flexible_toggle',''),(346897,42796,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(346898,42796,'blocks_9_acfe_flexible_layout_title','Icons'),(346899,42796,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(346900,42796,'blocks_9_options_theme','#b61234'),(346901,42796,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(346902,42796,'blocks_9_options_format','row'),(346903,42796,'_blocks_9_options_format','field_64bfde9a90690'),(346904,42796,'blocks_9_options',''),(346905,42796,'_blocks_9_options','field_64bfdd9b90684'),(346906,42796,'blocks_9_icon_row_items_0_icon','pliates-stamp.svg'),(346907,42796,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(346908,42796,'blocks_9_icon_row_items_0_label','Industry Recognition'),(346909,42796,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(346910,42796,'blocks_9_icon_row_items_0_text','If you’re pursuing a clinical or sports career, check whether the programme is recognised by relevant professional associations.'),(346911,42796,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(346912,42796,'blocks_9_icon_row_items_1_icon','qualification.svg'),(346913,42796,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(346914,42796,'blocks_9_icon_row_items_1_label','University Accreditation'),(346915,42796,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(346916,42796,'blocks_9_icon_row_items_1_text','Ensure the institution is recognised by a national or international accrediting body.'),(346917,42796,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(346918,42796,'blocks_9_icon_row_items_2_icon','accreditation.svg'),(346919,42796,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(346920,42796,'blocks_9_icon_row_items_2_label','Programme Accreditation'),(346921,42796,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(346922,42796,'blocks_9_icon_row_items_2_text','Some courses may be accredited by professional organisations such as the International Society of Biomechanics (ISB) or national sports science and physiotherapy boards.'),(346923,42796,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(346924,42796,'blocks_9_icon_row_items','3'),(346925,42796,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(346926,42796,'blocks_11_acfe_flexible_toggle',''),(346927,42796,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346928,42796,'blocks_11_acfe_flexible_layout_title','Opportunities (1) '),(346929,42796,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346930,42796,'blocks_11_options_theme','#ffffff'),(346931,42796,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(346932,42796,'blocks_11_options_reverse','0'),(346933,42796,'_blocks_11_options_reverse','field_61768049bb8ac'),(346934,42796,'blocks_11_options',''),(346935,42796,'_blocks_11_options','field_617682517c334'),(346936,42796,'blocks_11_split_5050_image','31614'),(346937,42796,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(346938,42796,'blocks_11_split_5050_video',''),(346939,42796,'_blocks_11_split_5050_video','field_6239f3160848a'),(346940,42796,'blocks_11_split_5050_content_title','Extensive Hands-On Techniques for Movement Assessment'),(346941,42796,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(346942,42796,'blocks_11_split_5050_content_heading',''),(346943,42796,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(346944,42796,'blocks_11_split_5050_content_text','A strong biomechanics course should offer practical training in movement assessment, allowing you to apply theoretical knowledge to real-world scenarios. This may include evaluating joint mechanics, muscle function, and nerve tension, all of which are essential for roles in basic function for day to day lifestyle, sports performance, rehabilitation, and reduction of risk of injury.'),(346945,42796,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(346946,42796,'blocks_11_split_5050_content_actions',''),(346947,42796,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(346948,42796,'blocks_11_split_5050_content',''),(346949,42796,'_blocks_11_split_5050_content','field_61767afceb8ba'),(346950,42796,'blocks_12_acfe_flexible_toggle',''),(346951,42796,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346952,42796,'blocks_12_acfe_flexible_layout_title','Opportunities (2)'),(346953,42796,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346954,42796,'blocks_12_options_theme','#ffffff'),(346955,42796,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(346956,42796,'blocks_12_options_reverse','0'),(346957,42796,'_blocks_12_options_reverse','field_61768049bb8ac'),(346958,42796,'blocks_12_options',''),(346959,42796,'_blocks_12_options','field_617682517c334'),(346960,42796,'blocks_12_split_5050_image','42682'),(346961,42796,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(346962,42796,'blocks_12_split_5050_video',''),(346963,42796,'_blocks_12_split_5050_video','field_6239f3160848a'),(346964,42796,'blocks_12_split_5050_content_title','Lab Work & Motion Capture Facilities'),(346965,42796,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(346966,42796,'blocks_12_split_5050_content_heading',''),(346967,42796,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(346968,42796,'blocks_12_split_5050_content_text','Access to well-equipped biomechanics labs enhances your ability to analyse movement in detail. Motion capture systems, force plates, and electromyography (EMG) tools are commonly used in biomechanics to measure human movement with precision. Hands-on experience with these technologies is invaluable for those pursuing careers in sports science, clinical biomechanics, or research.'),(346969,42796,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(346970,42796,'blocks_12_split_5050_content_actions',''),(346971,42796,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(346972,42796,'blocks_12_split_5050_content',''),(346973,42796,'_blocks_12_split_5050_content','field_61767afceb8ba'),(346974,42796,'blocks_17_acfe_flexible_toggle',''),(346975,42796,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(346976,42796,'blocks_17_acfe_flexible_layout_title','Experienced Training Providers'),(346977,42796,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(346978,42796,'blocks_17_options_theme','#ffffff'),(346979,42796,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(346980,42796,'blocks_17_options_reverse','1'),(346981,42796,'_blocks_17_options_reverse','field_61768049bb8ac'),(346982,42796,'blocks_17_options',''),(346983,42796,'_blocks_17_options','field_617682517c334'),(346984,42796,'blocks_17_split_5050_image','41330'),(346985,42796,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(346986,42796,'blocks_17_split_5050_video',''),(346987,42796,'_blocks_17_split_5050_video','field_6239f3160848a'),(346988,42796,'blocks_17_split_5050_content_title','Experienced Training Providers'),(346989,42796,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(346990,42796,'blocks_17_split_5050_content_heading',''),(346991,42796,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(346992,42796,'blocks_17_split_5050_content_text','Tutors with extensive experience in biomechanics bring real-world insights to the classroom, bridging the gap between theory and practice. Look for instructors with backgrounds in academia, professional sports, rehabilitation, or biomechanics research, as their expertise can enhance the learning experience.'),(346993,42796,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(346994,42796,'blocks_17_split_5050_content_actions',''),(346995,42796,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(346996,42796,'blocks_17_split_5050_content',''),(346997,42796,'_blocks_17_split_5050_content','field_61767afceb8ba'),(346998,42796,'blocks_15_acfe_flexible_toggle',''),(346999,42796,'_blocks_15_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(347000,42796,'blocks_15_acfe_flexible_layout_title','Course Format[anchor]'),(347001,42796,'_blocks_15_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(347002,42796,'blocks_15_options_theme','#f5f5f5'),(347003,42796,'_blocks_15_options_theme','field_6177de53d1196_field_6176830e2ad17'),(347004,42796,'blocks_15_options',''),(347005,42796,'_blocks_15_options','field_6177de53d1195'),(347006,42796,'blocks_15_timeline_content_title',''),(347007,42796,'_blocks_15_timeline_content_title','field_6177de53d1198'),(347008,42796,'blocks_15_timeline_content_heading','Evaluate Course Format and Flexibility'),(347009,42796,'_blocks_15_timeline_content_heading','field_6177de53d1199'),(347010,42796,'blocks_15_timeline_content_text','Biomechanics courses can vary in structure, offering different formats to accommodate students with varying schedules, learning preferences, and career commitments. Whether you’re looking for a full-time degree, a part-time professional development course, or an online programme that fits around your work, understanding the course format is essential in making the right choice. A well-structured course should provide a balance of flexibility and practical engagement, ensuring you gain the knowledge and hands-on experience needed for your career.\r\n\r\nWhen considering a biomechanics course, think about how the course format aligns with your lifestyle and career ambitions. Below are some key factors to evaluate when selecting the right learning structure.'),(347011,42796,'_blocks_15_timeline_content_text','field_6177de53d119a'),(347012,42796,'blocks_15_timeline_content_actions',''),(347013,42796,'_blocks_15_timeline_content_actions','field_6177de53d119b'),(347014,42796,'blocks_15_timeline_content',''),(347015,42796,'_blocks_15_timeline_content','field_6177de53d1197'),(347016,42796,'blocks_15_timeline_items_0_title','Full-Time vs. Part-Time Study'),(347017,42796,'_blocks_15_timeline_items_0_title','field_6177de53d119f'),(347018,42796,'blocks_15_timeline_items_0_text','Full-time biomechanics courses offer an immersive learning experience, allowing students to complete their qualifications more quickly. However, part-time courses can be beneficial for those who are already working in the field and want to upskill while maintaining their job. Choosing between these options depends on your availability, learning pace, and career progression plans.'),(347019,42796,'_blocks_15_timeline_items_0_text','field_6177de53d11a0'),(347020,42796,'blocks_15_timeline_items_1_title','Online, In-Person, and Hybrid Learning'),(347021,42796,'_blocks_15_timeline_items_1_title','field_6177de53d119f'),(347022,42796,'blocks_15_timeline_items_1_text','While some biomechanics courses are delivered entirely in-person, others incorporate online modules to provide greater flexibility. Online learning can be useful for covering theoretical concepts, but biomechanics is a highly practical subject, meaning hybrid programmes that include both online theory and in-person practical sessions can be the most effective for building applied skills.'),(347023,42796,'_blocks_15_timeline_items_1_text','field_6177de53d11a0'),(347024,42796,'blocks_15_timeline_items_2_title','Degree Level and Course Duration'),(347025,42796,'_blocks_15_timeline_items_2_title','field_6177de53d119f'),(347026,42796,'blocks_15_timeline_items_2_text','Depending on your career goals, you may need to choose between a short biomechanics certification, a diploma, or a full degree (BSc, MSc, or PhD). Short courses and diplomas are useful for professionals looking to specialise or upskill, while degree-level courses provide a more in-depth understanding of biomechanics, research methods, and applied movement science.'),(347027,42796,'_blocks_15_timeline_items_2_text','field_6177de53d11a0'),(347028,42796,'blocks_15_timeline_items','3'),(347029,42796,'_blocks_15_timeline_items','field_6177de53d119d'),(347030,42796,'blocks_16_acfe_flexible_toggle',''),(347031,42796,'_blocks_16_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(347032,42796,'blocks_16_acfe_flexible_layout_title','Tutor Expertise[anchor] '),(347033,42796,'_blocks_16_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(347034,42796,'blocks_16_options_theme','#ffffff'),(347035,42796,'_blocks_16_options_theme','field_6176830e2ad17'),(347036,42796,'blocks_16_options',''),(347037,42796,'_blocks_16_options','field_6176830e2ad16'),(347038,42796,'blocks_16_text_block_heading','Assess Tutor Expertise and Industry Connections'),(347039,42796,'_blocks_16_text_block_heading','field_617669d413097'),(347040,42796,'blocks_16_text_block_content','The quality of a biomechanics course is not just determined by its content but also by the expertise of the tutors delivering it and the industry connections it provides. Learning from experienced professionals with strong backgrounds in biomechanics, sports science, rehabilitation, or engineering ensures that you receive relevant, up-to-date knowledge that aligns with industry standards. Additionally, courses with strong industry links can open doors to valuable networking opportunities, mentorship, and potential career placements.\r\n\r\nWhen evaluating a biomechanics course, consider the credibility of the teaching staff and the programme’s industry connections. Below are key factors to assess.'),(347041,42796,'_blocks_16_text_block_content','field_617669ec13098'),(347042,42796,'blocks_18_acfe_flexible_toggle',''),(347043,42796,'_blocks_18_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(347044,42796,'blocks_18_acfe_flexible_layout_title','Industry Collaborations and Professional Networks'),(347045,42796,'_blocks_18_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(347046,42796,'blocks_18_options_theme','#ffffff'),(347047,42796,'_blocks_18_options_theme','field_617682847c335_field_6176830e2ad17'),(347048,42796,'blocks_18_options_reverse','1'),(347049,42796,'_blocks_18_options_reverse','field_61768049bb8ac'),(347050,42796,'blocks_18_options',''),(347051,42796,'_blocks_18_options','field_617682517c334'),(347052,42796,'blocks_18_split_5050_image','31747'),(347053,42796,'_blocks_18_split_5050_image','field_6239f527a0c3a'),(347054,42796,'blocks_18_split_5050_video',''),(347055,42796,'_blocks_18_split_5050_video','field_6239f3160848a'),(347056,42796,'blocks_18_split_5050_content_title','Industry Collaborations and Professional Networks'),(347057,42796,'_blocks_18_split_5050_content_title','field_61767bfca3fc0'),(347058,42796,'blocks_18_split_5050_content_heading',''),(347059,42796,'_blocks_18_split_5050_content_heading','field_61767b26eb8bb'),(347060,42796,'blocks_18_split_5050_content_text','Courses that have partnerships with sports teams, healthcare organisations, universities, or biomechanics companies provide students with access to industry professionals and potential career opportunities. These collaborations can also lead to internships, research projects, or direct job placements after completing the course.'),(347061,42796,'_blocks_18_split_5050_content_text','field_61767b3beb8bc'),(347062,42796,'blocks_18_split_5050_content_actions',''),(347063,42796,'_blocks_18_split_5050_content_actions','field_61767b68eb8bd'),(347064,42796,'blocks_18_split_5050_content',''),(347065,42796,'_blocks_18_split_5050_content','field_61767afceb8ba'),(347066,42796,'blocks_19_acfe_flexible_toggle',''),(347067,42796,'_blocks_19_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(347068,42796,'blocks_19_acfe_flexible_layout_title','Graduate Success and Alumni Network'),(347069,42796,'_blocks_19_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(347070,42796,'blocks_19_options_theme','#ffffff'),(347071,42796,'_blocks_19_options_theme','field_617682847c335_field_6176830e2ad17'),(347072,42796,'blocks_19_options_reverse','1'),(347073,42796,'_blocks_19_options_reverse','field_61768049bb8ac'),(347074,42796,'blocks_19_options',''),(347075,42796,'_blocks_19_options','field_617682517c334'),(347076,42796,'blocks_19_split_5050_image','41312'),(347077,42796,'_blocks_19_split_5050_image','field_6239f527a0c3a'),(347078,42796,'blocks_19_split_5050_video',''),(347079,42796,'_blocks_19_split_5050_video','field_6239f3160848a'),(347080,42796,'blocks_19_split_5050_content_title','Graduate Success and Alumni Network'),(347081,42796,'_blocks_19_split_5050_content_title','field_61767bfca3fc0'),(347082,42796,'blocks_19_split_5050_content_heading',''),(347083,42796,'_blocks_19_split_5050_content_heading','field_61767b26eb8bb'),(347084,42796,'blocks_19_split_5050_content_text','A strong alumni network and positive graduate success stories indicate the effectiveness of a biomechanics course. Research where previous students have progressed in their careers, as this can provide insight into the opportunities available after completing the programme.'),(347085,42796,'_blocks_19_split_5050_content_text','field_61767b3beb8bc'),(347086,42796,'blocks_19_split_5050_content_actions',''),(347087,42796,'_blocks_19_split_5050_content_actions','field_61767b68eb8bd'),(347088,42796,'blocks_19_split_5050_content',''),(347089,42796,'_blocks_19_split_5050_content','field_61767afceb8ba'),(347090,42796,'blocks_21_acfe_flexible_toggle',''),(347091,42796,'_blocks_21_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(347092,42796,'blocks_21_acfe_flexible_layout_title','Icons - Costs and Payment'),(347093,42796,'_blocks_21_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(347094,42796,'blocks_21_options_theme','#b61234'),(347095,42796,'_blocks_21_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(347096,42796,'blocks_21_options_format','row'),(347097,42796,'_blocks_21_options_format','field_64bfde9a90690'),(347098,42796,'blocks_21_options',''),(347099,42796,'_blocks_21_options','field_64bfdd9b90684'),(347100,42796,'blocks_21_icon_row_items_0_icon','payment-plans.svg'),(347101,42796,'_blocks_21_icon_row_items_0_icon','field_64bfdd9b9068d'),(347102,42796,'blocks_21_icon_row_items_0_label','Course Costs'),(347103,42796,'_blocks_21_icon_row_items_0_label','field_64bfdd9c9068e'),(347104,42796,'blocks_21_icon_row_items_0_text','Compare costs across providers to find an option that fits your budget.'),(347105,42796,'_blocks_21_icon_row_items_0_text','field_64bfdd9c9068f'),(347106,42796,'blocks_21_icon_row_items_1_icon','start-earning-in.svg'),(347107,42796,'_blocks_21_icon_row_items_1_icon','field_64bfdd9b9068d'),(347108,42796,'blocks_21_icon_row_items_1_label','Grants'),(347109,42796,'_blocks_21_icon_row_items_1_label','field_64bfdd9c9068e'),(347110,42796,'blocks_21_icon_row_items_1_text','Some universities may offer financial aid for biomechanics students, especially in research-intensive programmes.'),(347111,42796,'_blocks_21_icon_row_items_1_text','field_64bfdd9c9068f'),(347112,42796,'blocks_21_icon_row_items_2_icon','return-on-investment-1.svg'),(347113,42796,'_blocks_21_icon_row_items_2_icon','field_64bfdd9b9068d'),(347114,42796,'blocks_21_icon_row_items_2_label','Return on Investment'),(347115,42796,'_blocks_21_icon_row_items_2_label','field_64bfdd9c9068e'),(347116,42796,'blocks_21_icon_row_items_2_text','Consider the earning potential in your chosen biomechanics career and whether the programme justifies the cost.'),(347117,42796,'_blocks_21_icon_row_items_2_text','field_64bfdd9c9068f'),(347118,42796,'blocks_21_icon_row_items','3'),(347119,42796,'_blocks_21_icon_row_items','field_64bfdd9b9068c'),(347120,42796,'blocks_22_acfe_flexible_toggle',''),(347121,42796,'_blocks_22_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(347122,42796,'blocks_22_acfe_flexible_layout_title','Conclusion[anchor]'),(347123,42796,'_blocks_22_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(347124,42796,'blocks_22_options_theme','#ffffff'),(347125,42796,'_blocks_22_options_theme','field_617682847c335_field_6176830e2ad17'),(347126,42796,'blocks_22_options_reverse','1'),(347127,42796,'_blocks_22_options_reverse','field_61768049bb8ac'),(347128,42796,'blocks_22_options',''),(347129,42796,'_blocks_22_options','field_617682517c334'),(347130,42796,'blocks_22_split_5050_image','42679'),(347131,42796,'_blocks_22_split_5050_image','field_6239f527a0c3a'),(347132,42796,'blocks_22_split_5050_video',''),(347133,42796,'_blocks_22_split_5050_video','field_6239f3160848a'),(347134,42796,'blocks_22_split_5050_content_title',''),(347135,42796,'_blocks_22_split_5050_content_title','field_61767bfca3fc0'),(347136,42796,'blocks_22_split_5050_content_heading','Conclusion'),(347137,42796,'_blocks_22_split_5050_content_heading','field_61767b26eb8bb'),(347138,42796,'blocks_22_split_5050_content_text','Choosing the right biomechanics course is a key step in shaping your career and expanding your expertise in human movement. With so many options available, it’s important to take the time to evaluate courses based on your career goals, the content they offer, accreditation, practical learning opportunities, and industry connections. A well-structured course should provide both theoretical knowledge and hands-on experience, ensuring that you develop the skills needed to apply biomechanics effectively in your chosen field.\r\n\r\nBy considering factors such as course format, tutor expertise, financial investment, and long-term career prospects, you can make an informed decision that aligns with your aspirations. Take the time to research programmes, speak with faculty or alumni, and explore available learning pathways to find the biomechanics course that best supports your professional development.'),(347139,42796,'_blocks_22_split_5050_content_text','field_61767b3beb8bc'),(347140,42796,'blocks_22_split_5050_content_actions',''),(347141,42796,'_blocks_22_split_5050_content_actions','field_61767b68eb8bd'),(347142,42796,'blocks_22_split_5050_content',''),(347143,42796,'_blocks_22_split_5050_content','field_61767afceb8ba'),(347144,42796,'blocks_23_acfe_flexible_toggle',''),(347145,42796,'_blocks_23_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(347146,42796,'blocks_23_acfe_flexible_layout_title','Promo Panel'),(347147,42796,'_blocks_23_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(347148,42796,'blocks_23_options_alignment','center'),(347149,42796,'_blocks_23_options_alignment','field_61769449f5490'),(347150,42796,'blocks_23_options',''),(347151,42796,'_blocks_23_options','field_617693e1428f0'),(347152,42796,'blocks_23_promo_panel_image','41307'),(347153,42796,'_blocks_23_promo_panel_image','field_617693e1428f3'),(347154,42796,'blocks_23_promo_panel_content_heading','Want to Get Started?'),(347155,42796,'_blocks_23_promo_panel_content_heading','field_617693e1428f6'),(347156,42796,'blocks_23_promo_panel_content_text','Would you like help finding a biomechanics course tailored to your career goals? Get in touch to explore your options and take the next step in your biomechanics journey.'),(347157,42796,'_blocks_23_promo_panel_content_text','field_617693e1428f7'),(347158,42796,'blocks_23_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(347159,42796,'_blocks_23_promo_panel_content_actions_0_button','field_617693e1428f9'),(347160,42796,'blocks_23_promo_panel_content_actions','1'),(347161,42796,'_blocks_23_promo_panel_content_actions','field_617693e1428f8'),(347162,42796,'blocks_23_promo_panel_content',''),(347163,42796,'_blocks_23_promo_panel_content','field_617693e1428f4'),(347164,42796,'blocks_0_link_stack_6_label','7.'),(347165,42796,'_blocks_0_link_stack_6_label','field_6177b80900d00'),(347166,42796,'blocks_0_link_stack_6_title','Assess Tutor Expertise and Industry Connections'),(347167,42796,'_blocks_0_link_stack_6_title','field_6177b80f00d01'),(347168,42796,'blocks_0_link_stack_6_url','#tutor-expertise'),(347169,42796,'_blocks_0_link_stack_6_url','field_6177b82200d02'),(347170,42796,'blocks_0_link_stack_7_label','8.'),(347171,42796,'_blocks_0_link_stack_7_label','field_6177b80900d00'),(347172,42796,'blocks_0_link_stack_7_title','Compare Costs, Payment & Finance Options'),(347173,42796,'_blocks_0_link_stack_7_title','field_6177b80f00d01'),(347174,42796,'blocks_0_link_stack_7_url','#costs-and-payment'),(347175,42796,'_blocks_0_link_stack_7_url','field_6177b82200d02'),(347176,42796,'blocks_0_link_stack_8_label','9.'),(347177,42796,'_blocks_0_link_stack_8_label','field_6177b80900d00'),(347178,42796,'blocks_0_link_stack_8_title','Conclusion'),(347179,42796,'_blocks_0_link_stack_8_title','field_6177b80f00d01'),(347180,42796,'blocks_0_link_stack_8_url','#conclusion'),(347181,42796,'_blocks_0_link_stack_8_url','field_6177b82200d02'),(347366,42536,'blocks_2_acfe_flexible_toggle',''),(347367,42536,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(347368,42536,'blocks_2_acfe_flexible_layout_title','Video'),(347369,42536,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(347370,42536,'blocks_2_size','large'),(347371,42536,'_blocks_2_size','field_6487038f297c1'),(347372,42536,'blocks_2_row_content_title',''),(347373,42536,'_blocks_2_row_content_title','field_64870132a865d'),(347374,42536,'blocks_2_row_content_heading','Coaching the World to Move Better'),(347375,42536,'_blocks_2_row_content_heading','field_64870142a865e'),(347376,42536,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(347377,42536,'_blocks_2_row_content_text','field_64870148a865f'),(347378,42536,'blocks_2_row_content',''),(347379,42536,'_blocks_2_row_content','field_6487008ba865c'),(347380,42536,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(347381,42536,'_blocks_2_video_src','field_6193c4a98ec07'),(347382,42536,'blocks_2_video_thumbnail',''),(347383,42536,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(347384,42536,'blocks_3_acfe_flexible_toggle',''),(347385,42536,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(347386,42536,'blocks_3_acfe_flexible_layout_title','Text Block'),(347387,42536,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(347388,42536,'blocks_3_options_theme','#f5f5f5'),(347389,42536,'_blocks_3_options_theme','field_6176830e2ad17'),(347390,42536,'blocks_3_options',''),(347391,42536,'_blocks_3_options','field_6176830e2ad16'),(347392,42536,'blocks_3_text_block_heading','Our Industry Defining Diploma:'),(347393,42536,'_blocks_3_text_block_heading','field_617669d413097'),(347394,42536,'blocks_3_text_block_content',''),(347395,42536,'_blocks_3_text_block_content','field_617669ec13098'),(347550,42817,'hide_hero','0'),(347551,42817,'_hide_hero','field_66a2380fcda39'),(347552,42817,'fft_hide_from_listings','1'),(347553,42817,'_fft_hide_from_listings','field_61f1320446ab2'),(347554,42817,'fft_page_format','default'),(347555,42817,'_fft_page_format','field_61ae213f1f218'),(347556,42817,'fft_hide_nav','1'),(347557,42817,'_fft_hide_nav','field_635bd5e43527c'),(347558,42817,'fft_hide_header_call_to_action','0'),(347559,42817,'_fft_hide_header_call_to_action','field_635bd6723527d'),(347560,42817,'fft_page_sitemap','1'),(347561,42817,'_fft_page_sitemap','field_61af9b34e8181'),(347562,42817,'blocks','a:10:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:5:\"quote\";i:6;s:13:\"step_timeline\";i:7;s:10:\"split_5050\";i:8;s:4:\"form\";i:9;s:10:\"accordions\";}'),(347563,42817,'_blocks','field_6176696113096'),(347564,42817,'hero_title',''),(347565,42817,'_hero_title','field_617571fe285e8'),(347566,42817,'hero_text',''),(347567,42817,'_hero_text','field_6175723c285e9'),(347568,42817,'hero_actions',''),(347569,42817,'_hero_actions','field_61757270285ea'),(347570,42817,'hero_style','default'),(347571,42817,'_hero_style','field_62051d9dc5324'),(347572,42817,'hero_image_pos_x','right'),(347573,42817,'_hero_image_pos_x','field_62ec3d05390bb'),(347574,42817,'hero_image_pos_y','top'),(347575,42817,'_hero_image_pos_y','field_62ec3d05390bc'),(347576,42817,'hero_image_pos',''),(347577,42817,'_hero_image_pos','field_62ec3d05390ba'),(347578,42817,'blocks_0_acfe_flexible_toggle',''),(347579,42817,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(347580,42817,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(347581,42817,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(347582,42817,'blocks_0_options_theme','#ffffff'),(347583,42817,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(347584,42817,'blocks_0_options_reverse','0'),(347585,42817,'_blocks_0_options_reverse','field_61768049bb8ac'),(347586,42817,'blocks_0_options',''),(347587,42817,'_blocks_0_options','field_617682517c334'),(347588,42817,'blocks_0_split_5050_image','40848'),(347589,42817,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(347590,42817,'blocks_0_split_5050_video',''),(347591,42817,'_blocks_0_split_5050_video','field_6239f3160848a'),(347592,42817,'blocks_0_split_5050_content_title',''),(347593,42817,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(347594,42817,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(347595,42817,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(347596,42817,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re a fitness professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health and fitness to rehabilitation and performance coaching.'),(347597,42817,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(347598,42817,'blocks_0_split_5050_content_actions','1'),(347599,42817,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(347600,42817,'blocks_0_split_5050_content',''),(347601,42817,'_blocks_0_split_5050_content','field_61767afceb8ba'),(347602,42817,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(347603,42817,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(347604,42817,'blocks_1_acfe_flexible_toggle',''),(347605,42817,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(347606,42817,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(347607,42817,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(347608,42817,'blocks_1_options_theme','#ffffff'),(347609,42817,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(347610,42817,'blocks_1_options_reverse','1'),(347611,42817,'_blocks_1_options_reverse','field_61768049bb8ac'),(347612,42817,'blocks_1_options',''),(347613,42817,'_blocks_1_options','field_617682517c334'),(347614,42817,'blocks_1_split_5050_image','41312'),(347615,42817,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(347616,42817,'blocks_1_split_5050_video',''),(347617,42817,'_blocks_1_split_5050_video','field_6239f3160848a'),(347618,42817,'blocks_1_split_5050_content_title',''),(347619,42817,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(347620,42817,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(347621,42817,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(347622,42817,'blocks_1_split_5050_content_text','Our internationally recognised coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nWhether delivered in-person or through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally recognised certification to boost career opportunities</li>\r\n 	<li>Learn from leading biomechanics experts with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(347623,42817,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(347624,42817,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(347625,42817,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(347626,42817,'blocks_1_split_5050_content_actions','1'),(347627,42817,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(347628,42817,'blocks_1_split_5050_content',''),(347629,42817,'_blocks_1_split_5050_content','field_61767afceb8ba'),(347630,42817,'_thumbnail_id','40818'),(347631,42817,'__thumbnail_id','field_617570855ddaf'),(347632,42817,'blocks_2_acfe_flexible_toggle',''),(347633,42817,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(347634,42817,'blocks_2_acfe_flexible_layout_title','Video'),(347635,42817,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(347636,42817,'blocks_2_size','large'),(347637,42817,'_blocks_2_size','field_6487038f297c1'),(347638,42817,'blocks_2_row_content_title',''),(347639,42817,'_blocks_2_row_content_title','field_64870132a865d'),(347640,42817,'blocks_2_row_content_heading','Coaching the World to Move Better'),(347641,42817,'_blocks_2_row_content_heading','field_64870142a865e'),(347642,42817,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(347643,42817,'_blocks_2_row_content_text','field_64870148a865f'),(347644,42817,'blocks_2_row_content',''),(347645,42817,'_blocks_2_row_content','field_6487008ba865c'),(347646,42817,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(347647,42817,'_blocks_2_video_src','field_6193c4a98ec07'),(347648,42817,'blocks_2_video_thumbnail',''),(347649,42817,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(347650,42817,'blocks_3_acfe_flexible_toggle',''),(347651,42817,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(347652,42817,'blocks_3_acfe_flexible_layout_title','Text Block'),(347653,42817,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(347654,42817,'blocks_3_options_theme','#f5f5f5'),(347655,42817,'_blocks_3_options_theme','field_6176830e2ad17'),(347656,42817,'blocks_3_options',''),(347657,42817,'_blocks_3_options','field_6176830e2ad16'),(347658,42817,'blocks_3_text_block_heading','Our Popular Courses:'),(347659,42817,'_blocks_3_text_block_heading','field_617669d413097'),(347660,42817,'blocks_3_text_block_content',''),(347661,42817,'_blocks_3_text_block_content','field_617669ec13098'),(347662,42817,'blocks_4_acfe_flexible_toggle',''),(347663,42817,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(347664,42817,'blocks_4_acfe_flexible_layout_title','Cards'),(347665,42817,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(347666,42817,'blocks_4_options_theme','#f5f5f5'),(347667,42817,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(347668,42817,'blocks_4_options_format','carousel'),(347669,42817,'_blocks_4_options_format','field_617a7b15245b5'),(347670,42817,'blocks_4_options_style','default'),(347671,42817,'_blocks_4_options_style','field_6278ffb63484a'),(347672,42817,'blocks_4_options_cards_current_listing','0'),(347673,42817,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(347674,42817,'blocks_4_options_cards_content','selection'),(347675,42817,'_blocks_4_options_cards_content','field_617aba6122688'),(347676,42817,'blocks_4_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(347677,42817,'_blocks_4_options_cards_select_posts','field_6193f85fbaea1'),(347678,42817,'blocks_4_options',''),(347679,42817,'_blocks_4_options','field_617a7b15245b3'),(347680,42817,'blocks_5_acfe_flexible_toggle',''),(347681,42817,'_blocks_5_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(347682,42817,'blocks_5_acfe_flexible_layout_title','Quote'),(347683,42817,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(347684,42817,'blocks_5_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(347685,42817,'_blocks_5_quote_content','field_6177cdacdd67a'),(347686,42817,'blocks_5_quote_author','Alex Carter, Certified Biomechanics Coach'),(347687,42817,'_blocks_5_quote_author','field_6177cdc6dd67b'),(347688,42817,'blocks_6_acfe_flexible_toggle',''),(347689,42817,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(347690,42817,'blocks_6_acfe_flexible_layout_title','Timeline'),(347691,42817,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(347692,42817,'blocks_6_options_theme','#ffffff'),(347693,42817,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(347694,42817,'blocks_6_options',''),(347695,42817,'_blocks_6_options','field_6177de53d1195'),(347696,42817,'blocks_6_timeline_content_title',''),(347697,42817,'_blocks_6_timeline_content_title','field_6177de53d1198'),(347698,42817,'blocks_6_timeline_content_heading','Why choose Biomechanics Education?'),(347699,42817,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(347700,42817,'blocks_6_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(347701,42817,'_blocks_6_timeline_content_text','field_6177de53d119a'),(347702,42817,'blocks_6_timeline_content_actions',''),(347703,42817,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(347704,42817,'blocks_6_timeline_content',''),(347705,42817,'_blocks_6_timeline_content','field_6177de53d1197'),(347706,42817,'blocks_6_timeline_items_0_title','Industry-Leading Expertise'),(347707,42817,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(347708,42817,'blocks_6_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(347709,42817,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(347710,42817,'blocks_6_timeline_items_1_title','Global Accessibility'),(347711,42817,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(347712,42817,'blocks_6_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(347713,42817,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(347714,42817,'blocks_6_timeline_items_2_title','Internationally Recognised Certification'),(347715,42817,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(347716,42817,'blocks_6_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(347717,42817,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(347718,42817,'blocks_6_timeline_items_3_title','Career Opportunities Worldwide'),(347719,42817,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(347720,42817,'blocks_6_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(347721,42817,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(347722,42817,'blocks_6_timeline_items','4'),(347723,42817,'_blocks_6_timeline_items','field_6177de53d119d'),(347724,42817,'blocks_7_acfe_flexible_toggle',''),(347725,42817,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(347726,42817,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(347727,42817,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(347728,42817,'blocks_7_options_theme','#ffffff'),(347729,42817,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(347730,42817,'blocks_7_options_reverse','0'),(347731,42817,'_blocks_7_options_reverse','field_61768049bb8ac'),(347732,42817,'blocks_7_options',''),(347733,42817,'_blocks_7_options','field_617682517c334'),(347734,42817,'blocks_7_split_5050_image','41300'),(347735,42817,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(347736,42817,'blocks_7_split_5050_video',''),(347737,42817,'_blocks_7_split_5050_video','field_6239f3160848a'),(347738,42817,'blocks_7_split_5050_content_title',''),(347739,42817,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(347740,42817,'blocks_7_split_5050_content_heading','International Support & Learning Experience'),(347741,42817,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(347742,42817,'blocks_7_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(347743,42817,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(347744,42817,'blocks_7_split_5050_content_actions',''),(347745,42817,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(347746,42817,'blocks_7_split_5050_content',''),(347747,42817,'_blocks_7_split_5050_content','field_61767afceb8ba'),(347748,42817,'blocks_8_acfe_flexible_toggle',''),(347749,42817,'_blocks_8_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(347750,42817,'blocks_8_acfe_flexible_layout_title','Form'),(347751,42817,'_blocks_8_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(347752,42817,'blocks_8_row_content_format','standard'),(347753,42817,'_blocks_8_row_content_format','field_6481ead962881'),(347754,42817,'blocks_8_row_content_title',''),(347755,42817,'_blocks_8_row_content_title','field_61a0f5f5b3db1'),(347756,42817,'blocks_8_row_content_heading','Contact Us Today'),(347757,42817,'_blocks_8_row_content_heading','field_61a0f5f5b3db2'),(347758,42817,'blocks_8_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(347759,42817,'_blocks_8_row_content_text','field_61a0f5f5b3db3'),(347760,42817,'blocks_8_row_content_actions',''),(347761,42817,'_blocks_8_row_content_actions','field_61a0f5f5b3db4'),(347762,42817,'blocks_8_row_content',''),(347763,42817,'_blocks_8_row_content','field_61a0f5f5b3db0'),(347764,42817,'blocks_8_row_form','40394'),(347765,42817,'_blocks_8_row_form','field_61a4ff2c0b08e'),(347766,42817,'blocks_8_row_form_button_label',''),(347767,42817,'_blocks_8_row_form_button_label','field_61e12cf6fe412'),(347768,42817,'blocks_9_acfe_flexible_toggle',''),(347769,42817,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(347770,42817,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(347771,42817,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(347772,42817,'blocks_9_options_theme','#ffffff'),(347773,42817,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(347774,42817,'blocks_9_options_state','0'),(347775,42817,'_blocks_9_options_state','field_6239fcb7508c5'),(347776,42817,'blocks_9_options',''),(347777,42817,'_blocks_9_options','field_6177e2991ac44'),(347778,42817,'blocks_9_content_title',''),(347779,42817,'_blocks_9_content_title','field_64d237e8bb1e2'),(347780,42817,'blocks_9_content_heading','FAQs'),(347781,42817,'_blocks_9_content_heading','field_64d237e8bb1e3'),(347782,42817,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(347783,42817,'_blocks_9_content_text','field_64d237e8bb1e4'),(347784,42817,'blocks_9_content_actions',''),(347785,42817,'_blocks_9_content_actions','field_64d237e8bb1e5'),(347786,42817,'blocks_9_content_align','left'),(347787,42817,'_blocks_9_content_align','field_64d2443e6b6aa'),(347788,42817,'blocks_9_content',''),(347789,42817,'_blocks_9_content','field_64d237e8bb1e1'),(347790,42817,'blocks_9_accordion_content','custom'),(347791,42817,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(347792,42817,'blocks_9_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(347793,42817,'_blocks_9_accordion_items_0_title','field_6177e2991ac4d'),(347794,42817,'blocks_9_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(347795,42817,'_blocks_9_accordion_items_0_text','field_6177e2991ac4e'),(347796,42817,'blocks_9_accordion_items_1_title','Is the qualification recognised globally?'),(347797,42817,'_blocks_9_accordion_items_1_title','field_6177e2991ac4d'),(347798,42817,'blocks_9_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(347799,42817,'_blocks_9_accordion_items_1_text','field_6177e2991ac4e'),(347800,42817,'blocks_9_accordion_items_2_title','What are the study options for international students?'),(347801,42817,'_blocks_9_accordion_items_2_title','field_6177e2991ac4d'),(347802,42817,'blocks_9_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(347803,42817,'_blocks_9_accordion_items_2_text','field_6177e2991ac4e'),(347804,42817,'blocks_9_accordion_items_3_title','Who is this course suitable for?'),(347805,42817,'_blocks_9_accordion_items_3_title','field_6177e2991ac4d'),(347806,42817,'blocks_9_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(347807,42817,'_blocks_9_accordion_items_3_text','field_6177e2991ac4e'),(347808,42817,'blocks_9_accordion_items_4_title','How do I enrol and what are the payment options?'),(347809,42817,'_blocks_9_accordion_items_4_title','field_6177e2991ac4d'),(347810,42817,'blocks_9_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(347811,42817,'_blocks_9_accordion_items_4_text','field_6177e2991ac4e'),(347812,42817,'blocks_9_accordion_items','5'),(347813,42817,'_blocks_9_accordion_items','field_6177e2991ac4c'),(347814,42817,'blocks_9_actions',''),(347815,42817,'_blocks_9_actions','field_61a746a817f7a'),(347816,42818,'hide_hero','0'),(347817,42818,'_hide_hero','field_66a2380fcda39'),(347818,42818,'fft_hide_from_listings','1'),(347819,42818,'_fft_hide_from_listings','field_61f1320446ab2'),(347820,42818,'fft_page_format','default'),(347821,42818,'_fft_page_format','field_61ae213f1f218'),(347822,42818,'fft_hide_nav','1'),(347823,42818,'_fft_hide_nav','field_635bd5e43527c'),(347824,42818,'fft_hide_header_call_to_action','0'),(347825,42818,'_fft_hide_header_call_to_action','field_635bd6723527d'),(347826,42818,'fft_page_sitemap','1'),(347827,42818,'_fft_page_sitemap','field_61af9b34e8181'),(347828,42818,'blocks','a:10:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:5:\"quote\";i:6;s:13:\"step_timeline\";i:7;s:10:\"split_5050\";i:8;s:4:\"form\";i:9;s:10:\"accordions\";}'),(347829,42818,'_blocks','field_6176696113096'),(347830,42818,'hero_title',''),(347831,42818,'_hero_title','field_617571fe285e8'),(347832,42818,'hero_text',''),(347833,42818,'_hero_text','field_6175723c285e9'),(347834,42818,'hero_actions',''),(347835,42818,'_hero_actions','field_61757270285ea'),(347836,42818,'hero_style','default'),(347837,42818,'_hero_style','field_62051d9dc5324'),(347838,42818,'hero_image_pos_x','right'),(347839,42818,'_hero_image_pos_x','field_62ec3d05390bb'),(347840,42818,'hero_image_pos_y','top'),(347841,42818,'_hero_image_pos_y','field_62ec3d05390bc'),(347842,42818,'hero_image_pos',''),(347843,42818,'_hero_image_pos','field_62ec3d05390ba'),(347844,42818,'blocks_0_acfe_flexible_toggle',''),(347845,42818,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(347846,42818,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(347847,42818,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(347848,42818,'blocks_0_options_theme','#ffffff'),(347849,42818,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(347850,42818,'blocks_0_options_reverse','0'),(347851,42818,'_blocks_0_options_reverse','field_61768049bb8ac'),(347852,42818,'blocks_0_options',''),(347853,42818,'_blocks_0_options','field_617682517c334'),(347854,42818,'blocks_0_split_5050_image','40848'),(347855,42818,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(347856,42818,'blocks_0_split_5050_video',''),(347857,42818,'_blocks_0_split_5050_video','field_6239f3160848a'),(347858,42818,'blocks_0_split_5050_content_title',''),(347859,42818,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(347860,42818,'blocks_0_split_5050_content_heading','Biomechanics Education: International Training and Courses'),(347861,42818,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(347862,42818,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re an exercise professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health, exercise and wellness to rehabilitation and performance coaching.'),(347863,42818,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(347864,42818,'blocks_0_split_5050_content_actions','1'),(347865,42818,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(347866,42818,'blocks_0_split_5050_content',''),(347867,42818,'_blocks_0_split_5050_content','field_61767afceb8ba'),(347868,42818,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(347869,42818,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(347870,42818,'blocks_1_acfe_flexible_toggle',''),(347871,42818,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(347872,42818,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(347873,42818,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(347874,42818,'blocks_1_options_theme','#ffffff'),(347875,42818,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(347876,42818,'blocks_1_options_reverse','1'),(347877,42818,'_blocks_1_options_reverse','field_61768049bb8ac'),(347878,42818,'blocks_1_options',''),(347879,42818,'_blocks_1_options','field_617682517c334'),(347880,42818,'blocks_1_split_5050_image','41312'),(347881,42818,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(347882,42818,'blocks_1_split_5050_video',''),(347883,42818,'_blocks_1_split_5050_video','field_6239f3160848a'),(347884,42818,'blocks_1_split_5050_content_title',''),(347885,42818,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(347886,42818,'blocks_1_split_5050_content_heading','International Coaching Programmes: Become a Biomechanics Coach'),(347887,42818,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(347888,42818,'blocks_1_split_5050_content_text','Our internationally renowned coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nCourses are blended for in-person and through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally renowned certification to boost career opportunities</li>\r\n 	<li>Learn from leading experts in biomechanics with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(347889,42818,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(347890,42818,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(347891,42818,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(347892,42818,'blocks_1_split_5050_content_actions','1'),(347893,42818,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(347894,42818,'blocks_1_split_5050_content',''),(347895,42818,'_blocks_1_split_5050_content','field_61767afceb8ba'),(347896,42818,'_thumbnail_id','40818'),(347897,42818,'__thumbnail_id','field_617570855ddaf'),(347898,42818,'blocks_2_acfe_flexible_toggle',''),(347899,42818,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(347900,42818,'blocks_2_acfe_flexible_layout_title','Video'),(347901,42818,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(347902,42818,'blocks_2_size','large'),(347903,42818,'_blocks_2_size','field_6487038f297c1'),(347904,42818,'blocks_2_row_content_title',''),(347905,42818,'_blocks_2_row_content_title','field_64870132a865d'),(347906,42818,'blocks_2_row_content_heading','Coaching the World to Move Better'),(347907,42818,'_blocks_2_row_content_heading','field_64870142a865e'),(347908,42818,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(347909,42818,'_blocks_2_row_content_text','field_64870148a865f'),(347910,42818,'blocks_2_row_content',''),(347911,42818,'_blocks_2_row_content','field_6487008ba865c'),(347912,42818,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(347913,42818,'_blocks_2_video_src','field_6193c4a98ec07'),(347914,42818,'blocks_2_video_thumbnail',''),(347915,42818,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(347916,42818,'blocks_3_acfe_flexible_toggle',''),(347917,42818,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(347918,42818,'blocks_3_acfe_flexible_layout_title','Text Block'),(347919,42818,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(347920,42818,'blocks_3_options_theme','#f5f5f5'),(347921,42818,'_blocks_3_options_theme','field_6176830e2ad17'),(347922,42818,'blocks_3_options',''),(347923,42818,'_blocks_3_options','field_6176830e2ad16'),(347924,42818,'blocks_3_text_block_heading','Our Popular Courses:'),(347925,42818,'_blocks_3_text_block_heading','field_617669d413097'),(347926,42818,'blocks_3_text_block_content',''),(347927,42818,'_blocks_3_text_block_content','field_617669ec13098'),(347928,42818,'blocks_4_acfe_flexible_toggle',''),(347929,42818,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(347930,42818,'blocks_4_acfe_flexible_layout_title','Cards'),(347931,42818,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(347932,42818,'blocks_4_options_theme','#f5f5f5'),(347933,42818,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(347934,42818,'blocks_4_options_format','carousel'),(347935,42818,'_blocks_4_options_format','field_617a7b15245b5'),(347936,42818,'blocks_4_options_style','default'),(347937,42818,'_blocks_4_options_style','field_6278ffb63484a'),(347938,42818,'blocks_4_options_cards_current_listing','0'),(347939,42818,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(347940,42818,'blocks_4_options_cards_content','selection'),(347941,42818,'_blocks_4_options_cards_content','field_617aba6122688'),(347942,42818,'blocks_4_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(347943,42818,'_blocks_4_options_cards_select_posts','field_6193f85fbaea1'),(347944,42818,'blocks_4_options',''),(347945,42818,'_blocks_4_options','field_617a7b15245b3'),(347946,42818,'blocks_5_acfe_flexible_toggle',''),(347947,42818,'_blocks_5_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(347948,42818,'blocks_5_acfe_flexible_layout_title','Quote'),(347949,42818,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(347950,42818,'blocks_5_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(347951,42818,'_blocks_5_quote_content','field_6177cdacdd67a'),(347952,42818,'blocks_5_quote_author','Alex Carter, Certified Biomechanics Coach'),(347953,42818,'_blocks_5_quote_author','field_6177cdc6dd67b'),(347954,42818,'blocks_6_acfe_flexible_toggle',''),(347955,42818,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(347956,42818,'blocks_6_acfe_flexible_layout_title','Timeline'),(347957,42818,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(347958,42818,'blocks_6_options_theme','#ffffff'),(347959,42818,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(347960,42818,'blocks_6_options',''),(347961,42818,'_blocks_6_options','field_6177de53d1195'),(347962,42818,'blocks_6_timeline_content_title',''),(347963,42818,'_blocks_6_timeline_content_title','field_6177de53d1198'),(347964,42818,'blocks_6_timeline_content_heading','Why choose Biomechanics Education?'),(347965,42818,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(347966,42818,'blocks_6_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(347967,42818,'_blocks_6_timeline_content_text','field_6177de53d119a'),(347968,42818,'blocks_6_timeline_content_actions',''),(347969,42818,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(347970,42818,'blocks_6_timeline_content',''),(347971,42818,'_blocks_6_timeline_content','field_6177de53d1197'),(347972,42818,'blocks_6_timeline_items_0_title','Industry-Leading Expertise'),(347973,42818,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(347974,42818,'blocks_6_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(347975,42818,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(347976,42818,'blocks_6_timeline_items_1_title','Global Accessibility'),(347977,42818,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(347978,42818,'blocks_6_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(347979,42818,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(347980,42818,'blocks_6_timeline_items_2_title','Internationally Recognised Certification'),(347981,42818,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(347982,42818,'blocks_6_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(347983,42818,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(347984,42818,'blocks_6_timeline_items_3_title','Career Opportunities Worldwide'),(347985,42818,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(347986,42818,'blocks_6_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(347987,42818,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(347988,42818,'blocks_6_timeline_items','4'),(347989,42818,'_blocks_6_timeline_items','field_6177de53d119d'),(347990,42818,'blocks_7_acfe_flexible_toggle',''),(347991,42818,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(347992,42818,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(347993,42818,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(347994,42818,'blocks_7_options_theme','#ffffff'),(347995,42818,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(347996,42818,'blocks_7_options_reverse','0'),(347997,42818,'_blocks_7_options_reverse','field_61768049bb8ac'),(347998,42818,'blocks_7_options',''),(347999,42818,'_blocks_7_options','field_617682517c334'),(348000,42818,'blocks_7_split_5050_image','41300'),(348001,42818,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(348002,42818,'blocks_7_split_5050_video',''),(348003,42818,'_blocks_7_split_5050_video','field_6239f3160848a'),(348004,42818,'blocks_7_split_5050_content_title',''),(348005,42818,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(348006,42818,'blocks_7_split_5050_content_heading','International Support & Learning Experience'),(348007,42818,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(348008,42818,'blocks_7_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(348009,42818,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(348010,42818,'blocks_7_split_5050_content_actions',''),(348011,42818,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(348012,42818,'blocks_7_split_5050_content',''),(348013,42818,'_blocks_7_split_5050_content','field_61767afceb8ba'),(348014,42818,'blocks_8_acfe_flexible_toggle',''),(348015,42818,'_blocks_8_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(348016,42818,'blocks_8_acfe_flexible_layout_title','Form'),(348017,42818,'_blocks_8_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(348018,42818,'blocks_8_row_content_format','standard'),(348019,42818,'_blocks_8_row_content_format','field_6481ead962881'),(348020,42818,'blocks_8_row_content_title',''),(348021,42818,'_blocks_8_row_content_title','field_61a0f5f5b3db1'),(348022,42818,'blocks_8_row_content_heading','Contact Us Today'),(348023,42818,'_blocks_8_row_content_heading','field_61a0f5f5b3db2'),(348024,42818,'blocks_8_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(348025,42818,'_blocks_8_row_content_text','field_61a0f5f5b3db3'),(348026,42818,'blocks_8_row_content_actions',''),(348027,42818,'_blocks_8_row_content_actions','field_61a0f5f5b3db4'),(348028,42818,'blocks_8_row_content',''),(348029,42818,'_blocks_8_row_content','field_61a0f5f5b3db0'),(348030,42818,'blocks_8_row_form','40394'),(348031,42818,'_blocks_8_row_form','field_61a4ff2c0b08e'),(348032,42818,'blocks_8_row_form_button_label',''),(348033,42818,'_blocks_8_row_form_button_label','field_61e12cf6fe412'),(348034,42818,'blocks_9_acfe_flexible_toggle',''),(348035,42818,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(348036,42818,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(348037,42818,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(348038,42818,'blocks_9_options_theme','#ffffff'),(348039,42818,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(348040,42818,'blocks_9_options_state','0'),(348041,42818,'_blocks_9_options_state','field_6239fcb7508c5'),(348042,42818,'blocks_9_options',''),(348043,42818,'_blocks_9_options','field_6177e2991ac44'),(348044,42818,'blocks_9_content_title',''),(348045,42818,'_blocks_9_content_title','field_64d237e8bb1e2'),(348046,42818,'blocks_9_content_heading','FAQs'),(348047,42818,'_blocks_9_content_heading','field_64d237e8bb1e3'),(348048,42818,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(348049,42818,'_blocks_9_content_text','field_64d237e8bb1e4'),(348050,42818,'blocks_9_content_actions',''),(348051,42818,'_blocks_9_content_actions','field_64d237e8bb1e5'),(348052,42818,'blocks_9_content_align','left'),(348053,42818,'_blocks_9_content_align','field_64d2443e6b6aa'),(348054,42818,'blocks_9_content',''),(348055,42818,'_blocks_9_content','field_64d237e8bb1e1'),(348056,42818,'blocks_9_accordion_content','custom'),(348057,42818,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(348058,42818,'blocks_9_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(348059,42818,'_blocks_9_accordion_items_0_title','field_6177e2991ac4d'),(348060,42818,'blocks_9_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(348061,42818,'_blocks_9_accordion_items_0_text','field_6177e2991ac4e'),(348062,42818,'blocks_9_accordion_items_1_title','Is the qualification recognised globally?'),(348063,42818,'_blocks_9_accordion_items_1_title','field_6177e2991ac4d'),(348064,42818,'blocks_9_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(348065,42818,'_blocks_9_accordion_items_1_text','field_6177e2991ac4e'),(348066,42818,'blocks_9_accordion_items_2_title','What are the study options for international students?'),(348067,42818,'_blocks_9_accordion_items_2_title','field_6177e2991ac4d'),(348068,42818,'blocks_9_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(348069,42818,'_blocks_9_accordion_items_2_text','field_6177e2991ac4e'),(348070,42818,'blocks_9_accordion_items_3_title','Who is this course suitable for?'),(348071,42818,'_blocks_9_accordion_items_3_title','field_6177e2991ac4d'),(348072,42818,'blocks_9_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(348073,42818,'_blocks_9_accordion_items_3_text','field_6177e2991ac4e'),(348074,42818,'blocks_9_accordion_items_4_title','How do I enrol and what are the payment options?'),(348075,42818,'_blocks_9_accordion_items_4_title','field_6177e2991ac4d'),(348076,42818,'blocks_9_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(348077,42818,'_blocks_9_accordion_items_4_text','field_6177e2991ac4e'),(348078,42818,'blocks_9_accordion_items','5'),(348079,42818,'_blocks_9_accordion_items','field_6177e2991ac4c'),(348080,42818,'blocks_9_actions',''),(348081,42818,'_blocks_9_actions','field_61a746a817f7a'),(348082,42819,'hide_hero','0'),(348083,42819,'_hide_hero','field_66a2380fcda39'),(348084,42819,'fft_hide_from_listings','1'),(348085,42819,'_fft_hide_from_listings','field_61f1320446ab2'),(348086,42819,'fft_page_format','default'),(348087,42819,'_fft_page_format','field_61ae213f1f218'),(348088,42819,'fft_hide_nav','1'),(348089,42819,'_fft_hide_nav','field_635bd5e43527c'),(348090,42819,'fft_hide_header_call_to_action','0'),(348091,42819,'_fft_hide_header_call_to_action','field_635bd6723527d'),(348092,42819,'fft_page_sitemap','1'),(348093,42819,'_fft_page_sitemap','field_61af9b34e8181'),(348094,42819,'blocks','a:10:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:5:\"quote\";i:6;s:13:\"step_timeline\";i:7;s:10:\"split_5050\";i:8;s:4:\"form\";i:9;s:10:\"accordions\";}'),(348095,42819,'_blocks','field_6176696113096'),(348096,42819,'hero_title',''),(348097,42819,'_hero_title','field_617571fe285e8'),(348098,42819,'hero_text',''),(348099,42819,'_hero_text','field_6175723c285e9'),(348100,42819,'hero_actions',''),(348101,42819,'_hero_actions','field_61757270285ea'),(348102,42819,'hero_style','default'),(348103,42819,'_hero_style','field_62051d9dc5324'),(348104,42819,'hero_image_pos_x','right'),(348105,42819,'_hero_image_pos_x','field_62ec3d05390bb'),(348106,42819,'hero_image_pos_y','top'),(348107,42819,'_hero_image_pos_y','field_62ec3d05390bc'),(348108,42819,'hero_image_pos',''),(348109,42819,'_hero_image_pos','field_62ec3d05390ba'),(348110,42819,'blocks_0_acfe_flexible_toggle',''),(348111,42819,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(348112,42819,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(348113,42819,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(348114,42819,'blocks_0_options_theme','#ffffff'),(348115,42819,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(348116,42819,'blocks_0_options_reverse','0'),(348117,42819,'_blocks_0_options_reverse','field_61768049bb8ac'),(348118,42819,'blocks_0_options',''),(348119,42819,'_blocks_0_options','field_617682517c334'),(348120,42819,'blocks_0_split_5050_image','40848'),(348121,42819,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(348122,42819,'blocks_0_split_5050_video',''),(348123,42819,'_blocks_0_split_5050_video','field_6239f3160848a'),(348124,42819,'blocks_0_split_5050_content_title','Biomechanics Education'),(348125,42819,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(348126,42819,'blocks_0_split_5050_content_heading','International Training and Courses'),(348127,42819,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(348128,42819,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re an exercise professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health, exercise and wellness to rehabilitation and performance coaching.'),(348129,42819,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(348130,42819,'blocks_0_split_5050_content_actions','1'),(348131,42819,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(348132,42819,'blocks_0_split_5050_content',''),(348133,42819,'_blocks_0_split_5050_content','field_61767afceb8ba'),(348134,42819,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(348135,42819,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(348136,42819,'blocks_1_acfe_flexible_toggle',''),(348137,42819,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(348138,42819,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(348139,42819,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(348140,42819,'blocks_1_options_theme','#ffffff'),(348141,42819,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(348142,42819,'blocks_1_options_reverse','1'),(348143,42819,'_blocks_1_options_reverse','field_61768049bb8ac'),(348144,42819,'blocks_1_options',''),(348145,42819,'_blocks_1_options','field_617682517c334'),(348146,42819,'blocks_1_split_5050_image','41312'),(348147,42819,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(348148,42819,'blocks_1_split_5050_video',''),(348149,42819,'_blocks_1_split_5050_video','field_6239f3160848a'),(348150,42819,'blocks_1_split_5050_content_title','Become a Biomechanics Coach'),(348151,42819,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(348152,42819,'blocks_1_split_5050_content_heading','International Coaching Programmes'),(348153,42819,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(348154,42819,'blocks_1_split_5050_content_text','Our internationally renowned coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nCourses are blended for in-person and through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally renowned certification to boost career opportunities</li>\r\n 	<li>Learn from leading experts in biomechanics with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(348155,42819,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(348156,42819,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:1:\"#\";s:6:\"target\";s:0:\"\";}'),(348157,42819,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(348158,42819,'blocks_1_split_5050_content_actions','1'),(348159,42819,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(348160,42819,'blocks_1_split_5050_content',''),(348161,42819,'_blocks_1_split_5050_content','field_61767afceb8ba'),(348162,42819,'_thumbnail_id','40818'),(348163,42819,'__thumbnail_id','field_617570855ddaf'),(348164,42819,'blocks_2_acfe_flexible_toggle',''),(348165,42819,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(348166,42819,'blocks_2_acfe_flexible_layout_title','Video'),(348167,42819,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(348168,42819,'blocks_2_size','large'),(348169,42819,'_blocks_2_size','field_6487038f297c1'),(348170,42819,'blocks_2_row_content_title',''),(348171,42819,'_blocks_2_row_content_title','field_64870132a865d'),(348172,42819,'blocks_2_row_content_heading','Coaching the World to Move Better'),(348173,42819,'_blocks_2_row_content_heading','field_64870142a865e'),(348174,42819,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(348175,42819,'_blocks_2_row_content_text','field_64870148a865f'),(348176,42819,'blocks_2_row_content',''),(348177,42819,'_blocks_2_row_content','field_6487008ba865c'),(348178,42819,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(348179,42819,'_blocks_2_video_src','field_6193c4a98ec07'),(348180,42819,'blocks_2_video_thumbnail',''),(348181,42819,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(348182,42819,'blocks_3_acfe_flexible_toggle',''),(348183,42819,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(348184,42819,'blocks_3_acfe_flexible_layout_title','Text Block'),(348185,42819,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(348186,42819,'blocks_3_options_theme','#f5f5f5'),(348187,42819,'_blocks_3_options_theme','field_6176830e2ad17'),(348188,42819,'blocks_3_options',''),(348189,42819,'_blocks_3_options','field_6176830e2ad16'),(348190,42819,'blocks_3_text_block_heading','Our Popular Courses:'),(348191,42819,'_blocks_3_text_block_heading','field_617669d413097'),(348192,42819,'blocks_3_text_block_content',''),(348193,42819,'_blocks_3_text_block_content','field_617669ec13098'),(348194,42819,'blocks_4_acfe_flexible_toggle',''),(348195,42819,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(348196,42819,'blocks_4_acfe_flexible_layout_title','Cards'),(348197,42819,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(348198,42819,'blocks_4_options_theme','#f5f5f5'),(348199,42819,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(348200,42819,'blocks_4_options_format','carousel'),(348201,42819,'_blocks_4_options_format','field_617a7b15245b5'),(348202,42819,'blocks_4_options_style','default'),(348203,42819,'_blocks_4_options_style','field_6278ffb63484a'),(348204,42819,'blocks_4_options_cards_current_listing','0'),(348205,42819,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(348206,42819,'blocks_4_options_cards_content','selection'),(348207,42819,'_blocks_4_options_cards_content','field_617aba6122688'),(348208,42819,'blocks_4_options_cards_select_posts','a:4:{i:0;s:5:\"41425\";i:1;s:5:\"41520\";i:2;s:5:\"41455\";i:3;s:5:\"41533\";}'),(348209,42819,'_blocks_4_options_cards_select_posts','field_6193f85fbaea1'),(348210,42819,'blocks_4_options',''),(348211,42819,'_blocks_4_options','field_617a7b15245b3'),(348212,42819,'blocks_5_acfe_flexible_toggle',''),(348213,42819,'_blocks_5_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(348214,42819,'blocks_5_acfe_flexible_layout_title','Quote'),(348215,42819,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(348216,42819,'blocks_5_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(348217,42819,'_blocks_5_quote_content','field_6177cdacdd67a'),(348218,42819,'blocks_5_quote_author','Alex Carter, Certified Biomechanics Coach'),(348219,42819,'_blocks_5_quote_author','field_6177cdc6dd67b'),(348220,42819,'blocks_6_acfe_flexible_toggle',''),(348221,42819,'_blocks_6_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(348222,42819,'blocks_6_acfe_flexible_layout_title','Timeline'),(348223,42819,'_blocks_6_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(348224,42819,'blocks_6_options_theme','#ffffff'),(348225,42819,'_blocks_6_options_theme','field_6177de53d1196_field_6176830e2ad17'),(348226,42819,'blocks_6_options',''),(348227,42819,'_blocks_6_options','field_6177de53d1195'),(348228,42819,'blocks_6_timeline_content_title',''),(348229,42819,'_blocks_6_timeline_content_title','field_6177de53d1198'),(348230,42819,'blocks_6_timeline_content_heading','Why choose Biomechanics Education?'),(348231,42819,'_blocks_6_timeline_content_heading','field_6177de53d1199'),(348232,42819,'blocks_6_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(348233,42819,'_blocks_6_timeline_content_text','field_6177de53d119a'),(348234,42819,'blocks_6_timeline_content_actions',''),(348235,42819,'_blocks_6_timeline_content_actions','field_6177de53d119b'),(348236,42819,'blocks_6_timeline_content',''),(348237,42819,'_blocks_6_timeline_content','field_6177de53d1197'),(348238,42819,'blocks_6_timeline_items_0_title','Industry-Leading Expertise'),(348239,42819,'_blocks_6_timeline_items_0_title','field_6177de53d119f'),(348240,42819,'blocks_6_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(348241,42819,'_blocks_6_timeline_items_0_text','field_6177de53d11a0'),(348242,42819,'blocks_6_timeline_items_1_title','Global Accessibility'),(348243,42819,'_blocks_6_timeline_items_1_title','field_6177de53d119f'),(348244,42819,'blocks_6_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(348245,42819,'_blocks_6_timeline_items_1_text','field_6177de53d11a0'),(348246,42819,'blocks_6_timeline_items_2_title','Internationally Recognised Certification'),(348247,42819,'_blocks_6_timeline_items_2_title','field_6177de53d119f'),(348248,42819,'blocks_6_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(348249,42819,'_blocks_6_timeline_items_2_text','field_6177de53d11a0'),(348250,42819,'blocks_6_timeline_items_3_title','Career Opportunities Worldwide'),(348251,42819,'_blocks_6_timeline_items_3_title','field_6177de53d119f'),(348252,42819,'blocks_6_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(348253,42819,'_blocks_6_timeline_items_3_text','field_6177de53d11a0'),(348254,42819,'blocks_6_timeline_items','4'),(348255,42819,'_blocks_6_timeline_items','field_6177de53d119d'),(348256,42819,'blocks_7_acfe_flexible_toggle',''),(348257,42819,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(348258,42819,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(348259,42819,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(348260,42819,'blocks_7_options_theme','#ffffff'),(348261,42819,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(348262,42819,'blocks_7_options_reverse','0'),(348263,42819,'_blocks_7_options_reverse','field_61768049bb8ac'),(348264,42819,'blocks_7_options',''),(348265,42819,'_blocks_7_options','field_617682517c334'),(348266,42819,'blocks_7_split_5050_image','41300'),(348267,42819,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(348268,42819,'blocks_7_split_5050_video',''),(348269,42819,'_blocks_7_split_5050_video','field_6239f3160848a'),(348270,42819,'blocks_7_split_5050_content_title',''),(348271,42819,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(348272,42819,'blocks_7_split_5050_content_heading','International Support & Learning Experience'),(348273,42819,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(348274,42819,'blocks_7_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(348275,42819,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(348276,42819,'blocks_7_split_5050_content_actions',''),(348277,42819,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(348278,42819,'blocks_7_split_5050_content',''),(348279,42819,'_blocks_7_split_5050_content','field_61767afceb8ba'),(348280,42819,'blocks_8_acfe_flexible_toggle',''),(348281,42819,'_blocks_8_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(348282,42819,'blocks_8_acfe_flexible_layout_title','Form'),(348283,42819,'_blocks_8_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(348284,42819,'blocks_8_row_content_format','standard'),(348285,42819,'_blocks_8_row_content_format','field_6481ead962881'),(348286,42819,'blocks_8_row_content_title',''),(348287,42819,'_blocks_8_row_content_title','field_61a0f5f5b3db1'),(348288,42819,'blocks_8_row_content_heading','Contact Us Today'),(348289,42819,'_blocks_8_row_content_heading','field_61a0f5f5b3db2'),(348290,42819,'blocks_8_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(348291,42819,'_blocks_8_row_content_text','field_61a0f5f5b3db3'),(348292,42819,'blocks_8_row_content_actions',''),(348293,42819,'_blocks_8_row_content_actions','field_61a0f5f5b3db4'),(348294,42819,'blocks_8_row_content',''),(348295,42819,'_blocks_8_row_content','field_61a0f5f5b3db0'),(348296,42819,'blocks_8_row_form','40394'),(348297,42819,'_blocks_8_row_form','field_61a4ff2c0b08e'),(348298,42819,'blocks_8_row_form_button_label',''),(348299,42819,'_blocks_8_row_form_button_label','field_61e12cf6fe412'),(348300,42819,'blocks_9_acfe_flexible_toggle',''),(348301,42819,'_blocks_9_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(348302,42819,'blocks_9_acfe_flexible_layout_title','Accordions / FAQs'),(348303,42819,'_blocks_9_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(348304,42819,'blocks_9_options_theme','#ffffff'),(348305,42819,'_blocks_9_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(348306,42819,'blocks_9_options_state','0'),(348307,42819,'_blocks_9_options_state','field_6239fcb7508c5'),(348308,42819,'blocks_9_options',''),(348309,42819,'_blocks_9_options','field_6177e2991ac44'),(348310,42819,'blocks_9_content_title',''),(348311,42819,'_blocks_9_content_title','field_64d237e8bb1e2'),(348312,42819,'blocks_9_content_heading','FAQs'),(348313,42819,'_blocks_9_content_heading','field_64d237e8bb1e3'),(348314,42819,'blocks_9_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(348315,42819,'_blocks_9_content_text','field_64d237e8bb1e4'),(348316,42819,'blocks_9_content_actions',''),(348317,42819,'_blocks_9_content_actions','field_64d237e8bb1e5'),(348318,42819,'blocks_9_content_align','left'),(348319,42819,'_blocks_9_content_align','field_64d2443e6b6aa'),(348320,42819,'blocks_9_content',''),(348321,42819,'_blocks_9_content','field_64d237e8bb1e1'),(348322,42819,'blocks_9_accordion_content','custom'),(348323,42819,'_blocks_9_accordion_content','field_6177e2c81ac4f'),(348324,42819,'blocks_9_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(348325,42819,'_blocks_9_accordion_items_0_title','field_6177e2991ac4d'),(348326,42819,'blocks_9_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(348327,42819,'_blocks_9_accordion_items_0_text','field_6177e2991ac4e'),(348328,42819,'blocks_9_accordion_items_1_title','Is the qualification recognised globally?'),(348329,42819,'_blocks_9_accordion_items_1_title','field_6177e2991ac4d'),(348330,42819,'blocks_9_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(348331,42819,'_blocks_9_accordion_items_1_text','field_6177e2991ac4e'),(348332,42819,'blocks_9_accordion_items_2_title','What are the study options for international students?'),(348333,42819,'_blocks_9_accordion_items_2_title','field_6177e2991ac4d'),(348334,42819,'blocks_9_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(348335,42819,'_blocks_9_accordion_items_2_text','field_6177e2991ac4e'),(348336,42819,'blocks_9_accordion_items_3_title','Who is this course suitable for?'),(348337,42819,'_blocks_9_accordion_items_3_title','field_6177e2991ac4d'),(348338,42819,'blocks_9_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(348339,42819,'_blocks_9_accordion_items_3_text','field_6177e2991ac4e'),(348340,42819,'blocks_9_accordion_items_4_title','How do I enrol and what are the payment options?'),(348341,42819,'_blocks_9_accordion_items_4_title','field_6177e2991ac4d'),(348342,42819,'blocks_9_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(348343,42819,'_blocks_9_accordion_items_4_text','field_6177e2991ac4e'),(348344,42819,'blocks_9_accordion_items','5'),(348345,42819,'_blocks_9_accordion_items','field_6177e2991ac4c'),(348346,42819,'blocks_9_actions',''),(348347,42819,'_blocks_9_actions','field_61a746a817f7a'),(348865,42536,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(348866,42536,'_hero_actions_0_button','field_61757281285eb'),(348867,42536,'blocks_4_acfe_flexible_toggle',''),(348868,42536,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(348869,42536,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(348870,42536,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(348871,42536,'blocks_4_options_theme','#f5f5f5'),(348872,42536,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(348873,42536,'blocks_4_options_reverse','1'),(348874,42536,'_blocks_4_options_reverse','field_61768049bb8ac'),(348875,42536,'blocks_4_options',''),(348876,42536,'_blocks_4_options','field_617682517c334'),(348877,42536,'blocks_4_split_5050_image','41330'),(348878,42536,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(348879,42536,'blocks_4_split_5050_video',''),(348880,42536,'_blocks_4_split_5050_video','field_6239f3160848a'),(348881,42536,'blocks_4_split_5050_content_title','Course Overview:'),(348882,42536,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(348883,42536,'blocks_4_split_5050_content_heading','Diploma in Biomechanics Coaching'),(348884,42536,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(348885,42536,'blocks_4_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.'),(348886,42536,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(348887,42536,'blocks_4_split_5050_content_actions',''),(348888,42536,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(348889,42536,'blocks_4_split_5050_content',''),(348890,42536,'_blocks_4_split_5050_content','field_61767afceb8ba'),(348891,42536,'blocks_5_acfe_flexible_toggle',''),(348892,42536,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(348893,42536,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(348894,42536,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(348895,42536,'blocks_5_options_theme','#f5f5f5'),(348896,42536,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(348897,42536,'blocks_5_options_reverse','0'),(348898,42536,'_blocks_5_options_reverse','field_61768049bb8ac'),(348899,42536,'blocks_5_options',''),(348900,42536,'_blocks_5_options','field_617682517c334'),(348901,42536,'blocks_5_split_5050_image','40503'),(348902,42536,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(348903,42536,'blocks_5_split_5050_video',''),(348904,42536,'_blocks_5_split_5050_video','field_6239f3160848a'),(348905,42536,'blocks_5_split_5050_content_title',''),(348906,42536,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(348907,42536,'blocks_5_split_5050_content_heading',''),(348908,42536,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(348909,42536,'blocks_5_split_5050_content_text','While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(348910,42536,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(348911,42536,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(348912,42536,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(348913,42536,'blocks_5_split_5050_content_actions','1'),(348914,42536,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(348915,42536,'blocks_5_split_5050_content',''),(348916,42536,'_blocks_5_split_5050_content','field_61767afceb8ba'),(348917,42536,'blocks_6_acfe_flexible_toggle',''),(348918,42536,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(348919,42536,'blocks_6_acfe_flexible_layout_title','Quote'),(348920,42536,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(348921,42536,'blocks_6_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(348922,42536,'_blocks_6_quote_content','field_6177cdacdd67a'),(348923,42536,'blocks_6_quote_author','Alex Carter, Certified Biomechanics Coach'),(348924,42536,'_blocks_6_quote_author','field_6177cdc6dd67b'),(348925,42536,'blocks_7_acfe_flexible_toggle',''),(348926,42536,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(348927,42536,'blocks_7_acfe_flexible_layout_title','Timeline'),(348928,42536,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(348929,42536,'blocks_7_options_theme','#ffffff'),(348930,42536,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(348931,42536,'blocks_7_options',''),(348932,42536,'_blocks_7_options','field_6177de53d1195'),(348933,42536,'blocks_7_timeline_content_title',''),(348934,42536,'_blocks_7_timeline_content_title','field_6177de53d1198'),(348935,42536,'blocks_7_timeline_content_heading','Why choose Biomechanics Education?'),(348936,42536,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(348937,42536,'blocks_7_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients - from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and certification provide the tools you need to succeed.'),(348938,42536,'_blocks_7_timeline_content_text','field_6177de53d119a'),(348939,42536,'blocks_7_timeline_content_actions',''),(348940,42536,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(348941,42536,'blocks_7_timeline_content',''),(348942,42536,'_blocks_7_timeline_content','field_6177de53d1197'),(348943,42536,'blocks_7_timeline_items_0_title','Industry-Leading Expertise'),(348944,42536,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(348945,42536,'blocks_7_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(348946,42536,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(348947,42536,'blocks_7_timeline_items_1_title','Global Accessibility'),(348948,42536,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(348949,42536,'blocks_7_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(348950,42536,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(348951,42536,'blocks_7_timeline_items_2_title','Internationally Applicable Certification'),(348952,42536,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(348953,42536,'blocks_7_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(348954,42536,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(348955,42536,'blocks_7_timeline_items_3_title','Career Opportunities Worldwide'),(348956,42536,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(348957,42536,'blocks_7_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(348958,42536,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(348959,42536,'blocks_7_timeline_items','4'),(348960,42536,'_blocks_7_timeline_items','field_6177de53d119d'),(348961,42536,'blocks_8_acfe_flexible_toggle',''),(348962,42536,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(348963,42536,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(348964,42536,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(348965,42536,'blocks_8_options_theme','#ffffff'),(348966,42536,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(348967,42536,'blocks_8_options_reverse','0'),(348968,42536,'_blocks_8_options_reverse','field_61768049bb8ac'),(348969,42536,'blocks_8_options',''),(348970,42536,'_blocks_8_options','field_617682517c334'),(348971,42536,'blocks_8_split_5050_image','41300'),(348972,42536,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(348973,42536,'blocks_8_split_5050_video',''),(348974,42536,'_blocks_8_split_5050_video','field_6239f3160848a'),(348975,42536,'blocks_8_split_5050_content_title',''),(348976,42536,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(348977,42536,'blocks_8_split_5050_content_heading','International Support & Learning Experience'),(348978,42536,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(348979,42536,'blocks_8_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(348980,42536,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(348981,42536,'blocks_8_split_5050_content_actions',''),(348982,42536,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(348983,42536,'blocks_8_split_5050_content',''),(348984,42536,'_blocks_8_split_5050_content','field_61767afceb8ba'),(348985,42536,'blocks_9_acfe_flexible_toggle',''),(348986,42536,'_blocks_9_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(348987,42536,'blocks_9_acfe_flexible_layout_title','Contact Us[anchor]'),(348988,42536,'_blocks_9_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(348989,42536,'blocks_9_row_content_format','standard'),(348990,42536,'_blocks_9_row_content_format','field_6481ead962881'),(348991,42536,'blocks_9_row_content_title',''),(348992,42536,'_blocks_9_row_content_title','field_61a0f5f5b3db1'),(348993,42536,'blocks_9_row_content_heading','Contact Us Today'),(348994,42536,'_blocks_9_row_content_heading','field_61a0f5f5b3db2'),(348995,42536,'blocks_9_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(348996,42536,'_blocks_9_row_content_text','field_61a0f5f5b3db3'),(348997,42536,'blocks_9_row_content_actions',''),(348998,42536,'_blocks_9_row_content_actions','field_61a0f5f5b3db4'),(348999,42536,'blocks_9_row_content',''),(349000,42536,'_blocks_9_row_content','field_61a0f5f5b3db0'),(349001,42536,'blocks_9_row_form','42449'),(349002,42536,'_blocks_9_row_form','field_61a4ff2c0b08e'),(349003,42536,'blocks_9_row_form_button_label',''),(349004,42536,'_blocks_9_row_form_button_label','field_61e12cf6fe412'),(349053,42854,'hide_hero','0'),(349054,42854,'_hide_hero','field_66a2380fcda39'),(349055,42854,'fft_hide_from_listings','1'),(349056,42854,'_fft_hide_from_listings','field_61f1320446ab2'),(349057,42854,'fft_page_format','default'),(349058,42854,'_fft_page_format','field_61ae213f1f218'),(349059,42854,'fft_hide_nav','1'),(349060,42854,'_fft_hide_nav','field_635bd5e43527c'),(349061,42854,'fft_hide_header_call_to_action','0'),(349062,42854,'_fft_hide_header_call_to_action','field_635bd6723527d'),(349063,42854,'fft_page_sitemap','1'),(349064,42854,'_fft_page_sitemap','field_61af9b34e8181'),(349065,42854,'blocks','a:11:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:5:\"quote\";i:7;s:13:\"step_timeline\";i:8;s:10:\"split_5050\";i:9;s:4:\"form\";i:10;s:10:\"accordions\";}'),(349066,42854,'_blocks','field_6176696113096'),(349067,42854,'hero_title',''),(349068,42854,'_hero_title','field_617571fe285e8'),(349069,42854,'hero_text',''),(349070,42854,'_hero_text','field_6175723c285e9'),(349071,42854,'hero_actions','1'),(349072,42854,'_hero_actions','field_61757270285ea'),(349073,42854,'hero_style','default'),(349074,42854,'_hero_style','field_62051d9dc5324'),(349075,42854,'hero_image_pos_x','right'),(349076,42854,'_hero_image_pos_x','field_62ec3d05390bb'),(349077,42854,'hero_image_pos_y','top'),(349078,42854,'_hero_image_pos_y','field_62ec3d05390bc'),(349079,42854,'hero_image_pos',''),(349080,42854,'_hero_image_pos','field_62ec3d05390ba'),(349081,42854,'blocks_0_acfe_flexible_toggle',''),(349082,42854,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(349083,42854,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(349084,42854,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(349085,42854,'blocks_0_options_theme','#ffffff'),(349086,42854,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(349087,42854,'blocks_0_options_reverse','0'),(349088,42854,'_blocks_0_options_reverse','field_61768049bb8ac'),(349089,42854,'blocks_0_options',''),(349090,42854,'_blocks_0_options','field_617682517c334'),(349091,42854,'blocks_0_split_5050_image','40848'),(349092,42854,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(349093,42854,'blocks_0_split_5050_video',''),(349094,42854,'_blocks_0_split_5050_video','field_6239f3160848a'),(349095,42854,'blocks_0_split_5050_content_title','Biomechanics Education'),(349096,42854,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(349097,42854,'blocks_0_split_5050_content_heading','International Training and Courses'),(349098,42854,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(349099,42854,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re an exercise professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health, exercise and wellness to rehabilitation and performance coaching.'),(349100,42854,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(349101,42854,'blocks_0_split_5050_content_actions','1'),(349102,42854,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(349103,42854,'blocks_0_split_5050_content',''),(349104,42854,'_blocks_0_split_5050_content','field_61767afceb8ba'),(349105,42854,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(349106,42854,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(349107,42854,'blocks_1_acfe_flexible_toggle',''),(349108,42854,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(349109,42854,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(349110,42854,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(349111,42854,'blocks_1_options_theme','#ffffff'),(349112,42854,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(349113,42854,'blocks_1_options_reverse','1'),(349114,42854,'_blocks_1_options_reverse','field_61768049bb8ac'),(349115,42854,'blocks_1_options',''),(349116,42854,'_blocks_1_options','field_617682517c334'),(349117,42854,'blocks_1_split_5050_image','41312'),(349118,42854,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(349119,42854,'blocks_1_split_5050_video',''),(349120,42854,'_blocks_1_split_5050_video','field_6239f3160848a'),(349121,42854,'blocks_1_split_5050_content_title','Become a Biomechanics Coach'),(349122,42854,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(349123,42854,'blocks_1_split_5050_content_heading','International Coaching Programmes'),(349124,42854,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(349125,42854,'blocks_1_split_5050_content_text','Our internationally renowned coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nCourses are blended for in-person and through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally renowned certification to boost career opportunities</li>\r\n 	<li>Learn from leading experts in biomechanics with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(349126,42854,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(349127,42854,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(349128,42854,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(349129,42854,'blocks_1_split_5050_content_actions','1'),(349130,42854,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(349131,42854,'blocks_1_split_5050_content',''),(349132,42854,'_blocks_1_split_5050_content','field_61767afceb8ba'),(349133,42854,'_thumbnail_id','40818'),(349134,42854,'__thumbnail_id','field_617570855ddaf'),(349135,42854,'blocks_2_acfe_flexible_toggle',''),(349136,42854,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(349137,42854,'blocks_2_acfe_flexible_layout_title','Video'),(349138,42854,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(349139,42854,'blocks_2_size','large'),(349140,42854,'_blocks_2_size','field_6487038f297c1'),(349141,42854,'blocks_2_row_content_title',''),(349142,42854,'_blocks_2_row_content_title','field_64870132a865d'),(349143,42854,'blocks_2_row_content_heading','Coaching the World to Move Better'),(349144,42854,'_blocks_2_row_content_heading','field_64870142a865e'),(349145,42854,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(349146,42854,'_blocks_2_row_content_text','field_64870148a865f'),(349147,42854,'blocks_2_row_content',''),(349148,42854,'_blocks_2_row_content','field_6487008ba865c'),(349149,42854,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(349150,42854,'_blocks_2_video_src','field_6193c4a98ec07'),(349151,42854,'blocks_2_video_thumbnail',''),(349152,42854,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(349153,42854,'blocks_3_acfe_flexible_toggle',''),(349154,42854,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(349155,42854,'blocks_3_acfe_flexible_layout_title','Text Block'),(349156,42854,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(349157,42854,'blocks_3_options_theme','#f5f5f5'),(349158,42854,'_blocks_3_options_theme','field_6176830e2ad17'),(349159,42854,'blocks_3_options',''),(349160,42854,'_blocks_3_options','field_6176830e2ad16'),(349161,42854,'blocks_3_text_block_heading','Our Industry Defining Diploma in Biomechanics Coaching'),(349162,42854,'_blocks_3_text_block_heading','field_617669d413097'),(349163,42854,'blocks_3_text_block_content',''),(349164,42854,'_blocks_3_text_block_content','field_617669ec13098'),(349165,42854,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(349166,42854,'_hero_actions_0_button','field_61757281285eb'),(349167,42854,'blocks_4_acfe_flexible_toggle',''),(349168,42854,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(349169,42854,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(349170,42854,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(349171,42854,'blocks_4_options_theme','#f5f5f5'),(349172,42854,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(349173,42854,'blocks_4_options_reverse','0'),(349174,42854,'_blocks_4_options_reverse','field_61768049bb8ac'),(349175,42854,'blocks_4_options',''),(349176,42854,'_blocks_4_options','field_617682517c334'),(349177,42854,'blocks_4_split_5050_image','41330'),(349178,42854,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(349179,42854,'blocks_4_split_5050_video',''),(349180,42854,'_blocks_4_split_5050_video','field_6239f3160848a'),(349181,42854,'blocks_4_split_5050_content_title',''),(349182,42854,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(349183,42854,'blocks_4_split_5050_content_heading','Course Overview'),(349184,42854,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(349185,42854,'blocks_4_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.'),(349186,42854,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(349187,42854,'blocks_4_split_5050_content_actions',''),(349188,42854,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(349189,42854,'blocks_4_split_5050_content',''),(349190,42854,'_blocks_4_split_5050_content','field_61767afceb8ba'),(349191,42854,'blocks_5_acfe_flexible_toggle',''),(349192,42854,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(349193,42854,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(349194,42854,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(349195,42854,'blocks_5_options_theme','#f5f5f5'),(349196,42854,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(349197,42854,'blocks_5_options_reverse','0'),(349198,42854,'_blocks_5_options_reverse','field_61768049bb8ac'),(349199,42854,'blocks_5_options',''),(349200,42854,'_blocks_5_options','field_617682517c334'),(349201,42854,'blocks_5_split_5050_image','40503'),(349202,42854,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(349203,42854,'blocks_5_split_5050_video',''),(349204,42854,'_blocks_5_split_5050_video','field_6239f3160848a'),(349205,42854,'blocks_5_split_5050_content_title',''),(349206,42854,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(349207,42854,'blocks_5_split_5050_content_heading','Learn More'),(349208,42854,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(349209,42854,'blocks_5_split_5050_content_text','While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(349210,42854,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(349211,42854,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(349212,42854,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(349213,42854,'blocks_5_split_5050_content_actions','1'),(349214,42854,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(349215,42854,'blocks_5_split_5050_content',''),(349216,42854,'_blocks_5_split_5050_content','field_61767afceb8ba'),(349217,42854,'blocks_6_acfe_flexible_toggle',''),(349218,42854,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(349219,42854,'blocks_6_acfe_flexible_layout_title','Quote'),(349220,42854,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(349221,42854,'blocks_6_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(349222,42854,'_blocks_6_quote_content','field_6177cdacdd67a'),(349223,42854,'blocks_6_quote_author','Alex Carter, Certified Biomechanics Coach'),(349224,42854,'_blocks_6_quote_author','field_6177cdc6dd67b'),(349225,42854,'blocks_7_acfe_flexible_toggle',''),(349226,42854,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(349227,42854,'blocks_7_acfe_flexible_layout_title','Timeline'),(349228,42854,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(349229,42854,'blocks_7_options_theme','#ffffff'),(349230,42854,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(349231,42854,'blocks_7_options',''),(349232,42854,'_blocks_7_options','field_6177de53d1195'),(349233,42854,'blocks_7_timeline_content_title',''),(349234,42854,'_blocks_7_timeline_content_title','field_6177de53d1198'),(349235,42854,'blocks_7_timeline_content_heading','Why choose Biomechanics Education?'),(349236,42854,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(349237,42854,'blocks_7_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(349238,42854,'_blocks_7_timeline_content_text','field_6177de53d119a'),(349239,42854,'blocks_7_timeline_content_actions',''),(349240,42854,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(349241,42854,'blocks_7_timeline_content',''),(349242,42854,'_blocks_7_timeline_content','field_6177de53d1197'),(349243,42854,'blocks_7_timeline_items_0_title','Industry-Leading Expertise'),(349244,42854,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(349245,42854,'blocks_7_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(349246,42854,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(349247,42854,'blocks_7_timeline_items_1_title','Global Accessibility'),(349248,42854,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(349249,42854,'blocks_7_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(349250,42854,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(349251,42854,'blocks_7_timeline_items_2_title','Internationally Recognised Certification'),(349252,42854,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(349253,42854,'blocks_7_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(349254,42854,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(349255,42854,'blocks_7_timeline_items_3_title','Career Opportunities Worldwide'),(349256,42854,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(349257,42854,'blocks_7_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(349258,42854,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(349259,42854,'blocks_7_timeline_items','4'),(349260,42854,'_blocks_7_timeline_items','field_6177de53d119d'),(349261,42854,'blocks_8_acfe_flexible_toggle',''),(349262,42854,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(349263,42854,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(349264,42854,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(349265,42854,'blocks_8_options_theme','#ffffff'),(349266,42854,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(349267,42854,'blocks_8_options_reverse','0'),(349268,42854,'_blocks_8_options_reverse','field_61768049bb8ac'),(349269,42854,'blocks_8_options',''),(349270,42854,'_blocks_8_options','field_617682517c334'),(349271,42854,'blocks_8_split_5050_image','41300'),(349272,42854,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(349273,42854,'blocks_8_split_5050_video',''),(349274,42854,'_blocks_8_split_5050_video','field_6239f3160848a'),(349275,42854,'blocks_8_split_5050_content_title',''),(349276,42854,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(349277,42854,'blocks_8_split_5050_content_heading','International Support & Learning Experience'),(349278,42854,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(349279,42854,'blocks_8_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(349280,42854,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(349281,42854,'blocks_8_split_5050_content_actions',''),(349282,42854,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(349283,42854,'blocks_8_split_5050_content',''),(349284,42854,'_blocks_8_split_5050_content','field_61767afceb8ba'),(349285,42854,'blocks_9_acfe_flexible_toggle',''),(349286,42854,'_blocks_9_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(349287,42854,'blocks_9_acfe_flexible_layout_title','Contact Us[anchor]'),(349288,42854,'_blocks_9_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(349289,42854,'blocks_9_row_content_format','standard'),(349290,42854,'_blocks_9_row_content_format','field_6481ead962881'),(349291,42854,'blocks_9_row_content_title',''),(349292,42854,'_blocks_9_row_content_title','field_61a0f5f5b3db1'),(349293,42854,'blocks_9_row_content_heading','Contact Us Today'),(349294,42854,'_blocks_9_row_content_heading','field_61a0f5f5b3db2'),(349295,42854,'blocks_9_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(349296,42854,'_blocks_9_row_content_text','field_61a0f5f5b3db3'),(349297,42854,'blocks_9_row_content_actions',''),(349298,42854,'_blocks_9_row_content_actions','field_61a0f5f5b3db4'),(349299,42854,'blocks_9_row_content',''),(349300,42854,'_blocks_9_row_content','field_61a0f5f5b3db0'),(349301,42854,'blocks_9_row_form','40394'),(349302,42854,'_blocks_9_row_form','field_61a4ff2c0b08e'),(349303,42854,'blocks_9_row_form_button_label',''),(349304,42854,'_blocks_9_row_form_button_label','field_61e12cf6fe412'),(349305,42854,'blocks_10_acfe_flexible_toggle',''),(349306,42854,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(349307,42854,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(349308,42854,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(349309,42854,'blocks_10_options_theme','#ffffff'),(349310,42854,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(349311,42854,'blocks_10_options_state','0'),(349312,42854,'_blocks_10_options_state','field_6239fcb7508c5'),(349313,42854,'blocks_10_options',''),(349314,42854,'_blocks_10_options','field_6177e2991ac44'),(349315,42854,'blocks_10_content_title',''),(349316,42854,'_blocks_10_content_title','field_64d237e8bb1e2'),(349317,42854,'blocks_10_content_heading','FAQs'),(349318,42854,'_blocks_10_content_heading','field_64d237e8bb1e3'),(349319,42854,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(349320,42854,'_blocks_10_content_text','field_64d237e8bb1e4'),(349321,42854,'blocks_10_content_actions',''),(349322,42854,'_blocks_10_content_actions','field_64d237e8bb1e5'),(349323,42854,'blocks_10_content_align','left'),(349324,42854,'_blocks_10_content_align','field_64d2443e6b6aa'),(349325,42854,'blocks_10_content',''),(349326,42854,'_blocks_10_content','field_64d237e8bb1e1'),(349327,42854,'blocks_10_accordion_content','custom'),(349328,42854,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(349329,42854,'blocks_10_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(349330,42854,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(349331,42854,'blocks_10_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(349332,42854,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(349333,42854,'blocks_10_accordion_items_1_title','Is the qualification recognised globally?'),(349334,42854,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(349335,42854,'blocks_10_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(349336,42854,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(349337,42854,'blocks_10_accordion_items_2_title','What are the study options for international students?'),(349338,42854,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(349339,42854,'blocks_10_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(349340,42854,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(349341,42854,'blocks_10_accordion_items_3_title','Who is this course suitable for?'),(349342,42854,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(349343,42854,'blocks_10_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(349344,42854,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(349345,42854,'blocks_10_accordion_items_4_title','How do I enrol and what are the payment options?'),(349346,42854,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(349347,42854,'blocks_10_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(349348,42854,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(349349,42854,'blocks_10_accordion_items','5'),(349350,42854,'_blocks_10_accordion_items','field_6177e2991ac4c'),(349351,42854,'blocks_10_actions',''),(349352,42854,'_blocks_10_actions','field_61a746a817f7a'),(349561,40273,'_yoast_wpseo_inclusive_language_score','90'),(349750,42867,'hide_hero','0'),(349751,42867,'_hide_hero','field_66a2380fcda39'),(349752,42867,'fft_hide_from_listings','1'),(349753,42867,'_fft_hide_from_listings','field_61f1320446ab2'),(349754,42867,'fft_page_format','default'),(349755,42867,'_fft_page_format','field_61ae213f1f218'),(349756,42867,'fft_hide_nav','1'),(349757,42867,'_fft_hide_nav','field_635bd5e43527c'),(349758,42867,'fft_hide_header_call_to_action','0'),(349759,42867,'_fft_hide_header_call_to_action','field_635bd6723527d'),(349760,42867,'fft_page_sitemap','1'),(349761,42867,'_fft_page_sitemap','field_61af9b34e8181'),(349762,42867,'blocks','a:11:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:5:\"quote\";i:7;s:13:\"step_timeline\";i:8;s:10:\"split_5050\";i:9;s:4:\"form\";i:10;s:10:\"accordions\";}'),(349763,42867,'_blocks','field_6176696113096'),(349764,42867,'hero_title',''),(349765,42867,'_hero_title','field_617571fe285e8'),(349766,42867,'hero_text',''),(349767,42867,'_hero_text','field_6175723c285e9'),(349768,42867,'hero_actions','1'),(349769,42867,'_hero_actions','field_61757270285ea'),(349770,42867,'hero_style','default'),(349771,42867,'_hero_style','field_62051d9dc5324'),(349772,42867,'hero_image_pos_x','right'),(349773,42867,'_hero_image_pos_x','field_62ec3d05390bb'),(349774,42867,'hero_image_pos_y','top'),(349775,42867,'_hero_image_pos_y','field_62ec3d05390bc'),(349776,42867,'hero_image_pos',''),(349777,42867,'_hero_image_pos','field_62ec3d05390ba'),(349778,42867,'blocks_0_acfe_flexible_toggle',''),(349779,42867,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(349780,42867,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(349781,42867,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(349782,42867,'blocks_0_options_theme','#ffffff'),(349783,42867,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(349784,42867,'blocks_0_options_reverse','0'),(349785,42867,'_blocks_0_options_reverse','field_61768049bb8ac'),(349786,42867,'blocks_0_options',''),(349787,42867,'_blocks_0_options','field_617682517c334'),(349788,42867,'blocks_0_split_5050_image','40848'),(349789,42867,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(349790,42867,'blocks_0_split_5050_video',''),(349791,42867,'_blocks_0_split_5050_video','field_6239f3160848a'),(349792,42867,'blocks_0_split_5050_content_title','Biomechanics Education'),(349793,42867,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(349794,42867,'blocks_0_split_5050_content_heading','International Training and Courses'),(349795,42867,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(349796,42867,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re an exercise professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health, exercise and wellness to rehabilitation and performance coaching.'),(349797,42867,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(349798,42867,'blocks_0_split_5050_content_actions','1'),(349799,42867,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(349800,42867,'blocks_0_split_5050_content',''),(349801,42867,'_blocks_0_split_5050_content','field_61767afceb8ba'),(349802,42867,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(349803,42867,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(349804,42867,'blocks_1_acfe_flexible_toggle',''),(349805,42867,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(349806,42867,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(349807,42867,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(349808,42867,'blocks_1_options_theme','#ffffff'),(349809,42867,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(349810,42867,'blocks_1_options_reverse','1'),(349811,42867,'_blocks_1_options_reverse','field_61768049bb8ac'),(349812,42867,'blocks_1_options',''),(349813,42867,'_blocks_1_options','field_617682517c334'),(349814,42867,'blocks_1_split_5050_image','41312'),(349815,42867,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(349816,42867,'blocks_1_split_5050_video',''),(349817,42867,'_blocks_1_split_5050_video','field_6239f3160848a'),(349818,42867,'blocks_1_split_5050_content_title','Become a Biomechanics Coach'),(349819,42867,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(349820,42867,'blocks_1_split_5050_content_heading','International Coaching Programmes'),(349821,42867,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(349822,42867,'blocks_1_split_5050_content_text','Our internationally renowned coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nCourses are blended for in-person and through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally renowned certification to boost career opportunities</li>\r\n 	<li>Learn from leading experts in biomechanics with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(349823,42867,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(349824,42867,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(349825,42867,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(349826,42867,'blocks_1_split_5050_content_actions','1'),(349827,42867,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(349828,42867,'blocks_1_split_5050_content',''),(349829,42867,'_blocks_1_split_5050_content','field_61767afceb8ba'),(349830,42867,'_thumbnail_id','40818'),(349831,42867,'__thumbnail_id','field_617570855ddaf'),(349832,42867,'blocks_2_acfe_flexible_toggle',''),(349833,42867,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(349834,42867,'blocks_2_acfe_flexible_layout_title','Video'),(349835,42867,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(349836,42867,'blocks_2_size','large'),(349837,42867,'_blocks_2_size','field_6487038f297c1'),(349838,42867,'blocks_2_row_content_title',''),(349839,42867,'_blocks_2_row_content_title','field_64870132a865d'),(349840,42867,'blocks_2_row_content_heading','Coaching the World to Move Better'),(349841,42867,'_blocks_2_row_content_heading','field_64870142a865e'),(349842,42867,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(349843,42867,'_blocks_2_row_content_text','field_64870148a865f'),(349844,42867,'blocks_2_row_content',''),(349845,42867,'_blocks_2_row_content','field_6487008ba865c'),(349846,42867,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(349847,42867,'_blocks_2_video_src','field_6193c4a98ec07'),(349848,42867,'blocks_2_video_thumbnail',''),(349849,42867,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(349850,42867,'blocks_3_acfe_flexible_toggle',''),(349851,42867,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(349852,42867,'blocks_3_acfe_flexible_layout_title','Text Block'),(349853,42867,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(349854,42867,'blocks_3_options_theme','#f5f5f5'),(349855,42867,'_blocks_3_options_theme','field_6176830e2ad17'),(349856,42867,'blocks_3_options',''),(349857,42867,'_blocks_3_options','field_6176830e2ad16'),(349858,42867,'blocks_3_text_block_heading','Our Industry Defining Diploma:'),(349859,42867,'_blocks_3_text_block_heading','field_617669d413097'),(349860,42867,'blocks_3_text_block_content',''),(349861,42867,'_blocks_3_text_block_content','field_617669ec13098'),(349862,42867,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(349863,42867,'_hero_actions_0_button','field_61757281285eb'),(349864,42867,'blocks_4_acfe_flexible_toggle',''),(349865,42867,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(349866,42867,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(349867,42867,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(349868,42867,'blocks_4_options_theme','#f5f5f5'),(349869,42867,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(349870,42867,'blocks_4_options_reverse','1'),(349871,42867,'_blocks_4_options_reverse','field_61768049bb8ac'),(349872,42867,'blocks_4_options',''),(349873,42867,'_blocks_4_options','field_617682517c334'),(349874,42867,'blocks_4_split_5050_image','41330'),(349875,42867,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(349876,42867,'blocks_4_split_5050_video',''),(349877,42867,'_blocks_4_split_5050_video','field_6239f3160848a'),(349878,42867,'blocks_4_split_5050_content_title','Course Overview:'),(349879,42867,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(349880,42867,'blocks_4_split_5050_content_heading','Diploma in Biomechanics Coaching'),(349881,42867,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(349882,42867,'blocks_4_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.'),(349883,42867,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(349884,42867,'blocks_4_split_5050_content_actions',''),(349885,42867,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(349886,42867,'blocks_4_split_5050_content',''),(349887,42867,'_blocks_4_split_5050_content','field_61767afceb8ba'),(349888,42867,'blocks_5_acfe_flexible_toggle',''),(349889,42867,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(349890,42867,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(349891,42867,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(349892,42867,'blocks_5_options_theme','#f5f5f5'),(349893,42867,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(349894,42867,'blocks_5_options_reverse','0'),(349895,42867,'_blocks_5_options_reverse','field_61768049bb8ac'),(349896,42867,'blocks_5_options',''),(349897,42867,'_blocks_5_options','field_617682517c334'),(349898,42867,'blocks_5_split_5050_image','40503'),(349899,42867,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(349900,42867,'blocks_5_split_5050_video',''),(349901,42867,'_blocks_5_split_5050_video','field_6239f3160848a'),(349902,42867,'blocks_5_split_5050_content_title',''),(349903,42867,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(349904,42867,'blocks_5_split_5050_content_heading',''),(349905,42867,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(349906,42867,'blocks_5_split_5050_content_text','While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(349907,42867,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(349908,42867,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(349909,42867,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(349910,42867,'blocks_5_split_5050_content_actions','1'),(349911,42867,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(349912,42867,'blocks_5_split_5050_content',''),(349913,42867,'_blocks_5_split_5050_content','field_61767afceb8ba'),(349914,42867,'blocks_6_acfe_flexible_toggle',''),(349915,42867,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(349916,42867,'blocks_6_acfe_flexible_layout_title','Quote'),(349917,42867,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(349918,42867,'blocks_6_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(349919,42867,'_blocks_6_quote_content','field_6177cdacdd67a'),(349920,42867,'blocks_6_quote_author','Alex Carter, Certified Biomechanics Coach'),(349921,42867,'_blocks_6_quote_author','field_6177cdc6dd67b'),(349922,42867,'blocks_7_acfe_flexible_toggle',''),(349923,42867,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(349924,42867,'blocks_7_acfe_flexible_layout_title','Timeline'),(349925,42867,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(349926,42867,'blocks_7_options_theme','#ffffff'),(349927,42867,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(349928,42867,'blocks_7_options',''),(349929,42867,'_blocks_7_options','field_6177de53d1195'),(349930,42867,'blocks_7_timeline_content_title',''),(349931,42867,'_blocks_7_timeline_content_title','field_6177de53d1198'),(349932,42867,'blocks_7_timeline_content_heading','Why choose Biomechanics Education?'),(349933,42867,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(349934,42867,'blocks_7_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(349935,42867,'_blocks_7_timeline_content_text','field_6177de53d119a'),(349936,42867,'blocks_7_timeline_content_actions',''),(349937,42867,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(349938,42867,'blocks_7_timeline_content',''),(349939,42867,'_blocks_7_timeline_content','field_6177de53d1197'),(349940,42867,'blocks_7_timeline_items_0_title','Industry-Leading Expertise'),(349941,42867,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(349942,42867,'blocks_7_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(349943,42867,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(349944,42867,'blocks_7_timeline_items_1_title','Global Accessibility'),(349945,42867,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(349946,42867,'blocks_7_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(349947,42867,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(349948,42867,'blocks_7_timeline_items_2_title','Internationally Recognised Certification'),(349949,42867,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(349950,42867,'blocks_7_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(349951,42867,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(349952,42867,'blocks_7_timeline_items_3_title','Career Opportunities Worldwide'),(349953,42867,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(349954,42867,'blocks_7_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(349955,42867,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(349956,42867,'blocks_7_timeline_items','4'),(349957,42867,'_blocks_7_timeline_items','field_6177de53d119d'),(349958,42867,'blocks_8_acfe_flexible_toggle',''),(349959,42867,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(349960,42867,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(349961,42867,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(349962,42867,'blocks_8_options_theme','#ffffff'),(349963,42867,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(349964,42867,'blocks_8_options_reverse','0'),(349965,42867,'_blocks_8_options_reverse','field_61768049bb8ac'),(349966,42867,'blocks_8_options',''),(349967,42867,'_blocks_8_options','field_617682517c334'),(349968,42867,'blocks_8_split_5050_image','41300'),(349969,42867,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(349970,42867,'blocks_8_split_5050_video',''),(349971,42867,'_blocks_8_split_5050_video','field_6239f3160848a'),(349972,42867,'blocks_8_split_5050_content_title',''),(349973,42867,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(349974,42867,'blocks_8_split_5050_content_heading','International Support & Learning Experience'),(349975,42867,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(349976,42867,'blocks_8_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(349977,42867,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(349978,42867,'blocks_8_split_5050_content_actions',''),(349979,42867,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(349980,42867,'blocks_8_split_5050_content',''),(349981,42867,'_blocks_8_split_5050_content','field_61767afceb8ba'),(349982,42867,'blocks_9_acfe_flexible_toggle',''),(349983,42867,'_blocks_9_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(349984,42867,'blocks_9_acfe_flexible_layout_title','Contact Us[anchor]'),(349985,42867,'_blocks_9_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(349986,42867,'blocks_9_row_content_format','standard'),(349987,42867,'_blocks_9_row_content_format','field_6481ead962881'),(349988,42867,'blocks_9_row_content_title',''),(349989,42867,'_blocks_9_row_content_title','field_61a0f5f5b3db1'),(349990,42867,'blocks_9_row_content_heading','Contact Us Today'),(349991,42867,'_blocks_9_row_content_heading','field_61a0f5f5b3db2'),(349992,42867,'blocks_9_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(349993,42867,'_blocks_9_row_content_text','field_61a0f5f5b3db3'),(349994,42867,'blocks_9_row_content_actions',''),(349995,42867,'_blocks_9_row_content_actions','field_61a0f5f5b3db4'),(349996,42867,'blocks_9_row_content',''),(349997,42867,'_blocks_9_row_content','field_61a0f5f5b3db0'),(349998,42867,'blocks_9_row_form','40394'),(349999,42867,'_blocks_9_row_form','field_61a4ff2c0b08e'),(350000,42867,'blocks_9_row_form_button_label',''),(350001,42867,'_blocks_9_row_form_button_label','field_61e12cf6fe412'),(350002,42867,'blocks_10_acfe_flexible_toggle',''),(350003,42867,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(350004,42867,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(350005,42867,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(350006,42867,'blocks_10_options_theme','#ffffff'),(350007,42867,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(350008,42867,'blocks_10_options_state','0'),(350009,42867,'_blocks_10_options_state','field_6239fcb7508c5'),(350010,42867,'blocks_10_options',''),(350011,42867,'_blocks_10_options','field_6177e2991ac44'),(350012,42867,'blocks_10_content_title',''),(350013,42867,'_blocks_10_content_title','field_64d237e8bb1e2'),(350014,42867,'blocks_10_content_heading','FAQs'),(350015,42867,'_blocks_10_content_heading','field_64d237e8bb1e3'),(350016,42867,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(350017,42867,'_blocks_10_content_text','field_64d237e8bb1e4'),(350018,42867,'blocks_10_content_actions',''),(350019,42867,'_blocks_10_content_actions','field_64d237e8bb1e5'),(350020,42867,'blocks_10_content_align','left'),(350021,42867,'_blocks_10_content_align','field_64d2443e6b6aa'),(350022,42867,'blocks_10_content',''),(350023,42867,'_blocks_10_content','field_64d237e8bb1e1'),(350024,42867,'blocks_10_accordion_content','custom'),(350025,42867,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(350026,42867,'blocks_10_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(350027,42867,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(350028,42867,'blocks_10_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(350029,42867,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(350030,42867,'blocks_10_accordion_items_1_title','Is the qualification recognised globally?'),(350031,42867,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(350032,42867,'blocks_10_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(350033,42867,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(350034,42867,'blocks_10_accordion_items_2_title','What are the study options for international students?'),(350035,42867,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(350036,42867,'blocks_10_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(350037,42867,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(350038,42867,'blocks_10_accordion_items_3_title','Who is this course suitable for?'),(350039,42867,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(350040,42867,'blocks_10_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(350041,42867,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(350042,42867,'blocks_10_accordion_items_4_title','How do I enrol and what are the payment options?'),(350043,42867,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(350044,42867,'blocks_10_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(350045,42867,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(350046,42867,'blocks_10_accordion_items','5'),(350047,42867,'_blocks_10_accordion_items','field_6177e2991ac4c'),(350048,42867,'blocks_10_actions',''),(350049,42867,'_blocks_10_actions','field_61a746a817f7a'),(350050,42868,'hide_hero','0'),(350051,42868,'_hide_hero','field_66a2380fcda39'),(350052,42868,'fft_hide_from_listings','1'),(350053,42868,'_fft_hide_from_listings','field_61f1320446ab2'),(350054,42868,'fft_page_format','default'),(350055,42868,'_fft_page_format','field_61ae213f1f218'),(350056,42868,'fft_hide_nav','1'),(350057,42868,'_fft_hide_nav','field_635bd5e43527c'),(350058,42868,'fft_hide_header_call_to_action','0'),(350059,42868,'_fft_hide_header_call_to_action','field_635bd6723527d'),(350060,42868,'fft_page_sitemap','1'),(350061,42868,'_fft_page_sitemap','field_61af9b34e8181'),(350062,42868,'blocks','a:11:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:5:\"quote\";i:7;s:13:\"step_timeline\";i:8;s:10:\"split_5050\";i:9;s:4:\"form\";i:10;s:10:\"accordions\";}'),(350063,42868,'_blocks','field_6176696113096'),(350064,42868,'hero_title',''),(350065,42868,'_hero_title','field_617571fe285e8'),(350066,42868,'hero_text',''),(350067,42868,'_hero_text','field_6175723c285e9'),(350068,42868,'hero_actions','1'),(350069,42868,'_hero_actions','field_61757270285ea'),(350070,42868,'hero_style','default'),(350071,42868,'_hero_style','field_62051d9dc5324'),(350072,42868,'hero_image_pos_x','right'),(350073,42868,'_hero_image_pos_x','field_62ec3d05390bb'),(350074,42868,'hero_image_pos_y','top'),(350075,42868,'_hero_image_pos_y','field_62ec3d05390bc'),(350076,42868,'hero_image_pos',''),(350077,42868,'_hero_image_pos','field_62ec3d05390ba'),(350078,42868,'blocks_0_acfe_flexible_toggle',''),(350079,42868,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350080,42868,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(350081,42868,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350082,42868,'blocks_0_options_theme','#ffffff'),(350083,42868,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(350084,42868,'blocks_0_options_reverse','0'),(350085,42868,'_blocks_0_options_reverse','field_61768049bb8ac'),(350086,42868,'blocks_0_options',''),(350087,42868,'_blocks_0_options','field_617682517c334'),(350088,42868,'blocks_0_split_5050_image','40848'),(350089,42868,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(350090,42868,'blocks_0_split_5050_video',''),(350091,42868,'_blocks_0_split_5050_video','field_6239f3160848a'),(350092,42868,'blocks_0_split_5050_content_title','Biomechanics Education'),(350093,42868,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(350094,42868,'blocks_0_split_5050_content_heading','International Training and Courses'),(350095,42868,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(350096,42868,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re an exercise professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health, exercise and wellness to rehabilitation and performance coaching.'),(350097,42868,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(350098,42868,'blocks_0_split_5050_content_actions','1'),(350099,42868,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(350100,42868,'blocks_0_split_5050_content',''),(350101,42868,'_blocks_0_split_5050_content','field_61767afceb8ba'),(350102,42868,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(350103,42868,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(350104,42868,'blocks_1_acfe_flexible_toggle',''),(350105,42868,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350106,42868,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(350107,42868,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350108,42868,'blocks_1_options_theme','#ffffff'),(350109,42868,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(350110,42868,'blocks_1_options_reverse','1'),(350111,42868,'_blocks_1_options_reverse','field_61768049bb8ac'),(350112,42868,'blocks_1_options',''),(350113,42868,'_blocks_1_options','field_617682517c334'),(350114,42868,'blocks_1_split_5050_image','41312'),(350115,42868,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(350116,42868,'blocks_1_split_5050_video',''),(350117,42868,'_blocks_1_split_5050_video','field_6239f3160848a'),(350118,42868,'blocks_1_split_5050_content_title','Become a Biomechanics Coach'),(350119,42868,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(350120,42868,'blocks_1_split_5050_content_heading','International Coaching Programmes'),(350121,42868,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(350122,42868,'blocks_1_split_5050_content_text','Our internationally renowned coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nCourses are blended for in-person and through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally renowned certification to boost career opportunities</li>\r\n 	<li>Learn from leading experts in biomechanics with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(350123,42868,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(350124,42868,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(350125,42868,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(350126,42868,'blocks_1_split_5050_content_actions','1'),(350127,42868,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(350128,42868,'blocks_1_split_5050_content',''),(350129,42868,'_blocks_1_split_5050_content','field_61767afceb8ba'),(350130,42868,'_thumbnail_id','40818'),(350131,42868,'__thumbnail_id','field_617570855ddaf'),(350132,42868,'blocks_2_acfe_flexible_toggle',''),(350133,42868,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(350134,42868,'blocks_2_acfe_flexible_layout_title','Video'),(350135,42868,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(350136,42868,'blocks_2_size','large'),(350137,42868,'_blocks_2_size','field_6487038f297c1'),(350138,42868,'blocks_2_row_content_title',''),(350139,42868,'_blocks_2_row_content_title','field_64870132a865d'),(350140,42868,'blocks_2_row_content_heading','Coaching the World to Move Better'),(350141,42868,'_blocks_2_row_content_heading','field_64870142a865e'),(350142,42868,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(350143,42868,'_blocks_2_row_content_text','field_64870148a865f'),(350144,42868,'blocks_2_row_content',''),(350145,42868,'_blocks_2_row_content','field_6487008ba865c'),(350146,42868,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(350147,42868,'_blocks_2_video_src','field_6193c4a98ec07'),(350148,42868,'blocks_2_video_thumbnail',''),(350149,42868,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(350150,42868,'blocks_3_acfe_flexible_toggle',''),(350151,42868,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(350152,42868,'blocks_3_acfe_flexible_layout_title','Text Block'),(350153,42868,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(350154,42868,'blocks_3_options_theme','#f5f5f5'),(350155,42868,'_blocks_3_options_theme','field_6176830e2ad17'),(350156,42868,'blocks_3_options',''),(350157,42868,'_blocks_3_options','field_6176830e2ad16'),(350158,42868,'blocks_3_text_block_heading','Our Industry Defining Diploma:'),(350159,42868,'_blocks_3_text_block_heading','field_617669d413097'),(350160,42868,'blocks_3_text_block_content',''),(350161,42868,'_blocks_3_text_block_content','field_617669ec13098'),(350162,42868,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(350163,42868,'_hero_actions_0_button','field_61757281285eb'),(350164,42868,'blocks_4_acfe_flexible_toggle',''),(350165,42868,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350166,42868,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(350167,42868,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350168,42868,'blocks_4_options_theme','#f5f5f5'),(350169,42868,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(350170,42868,'blocks_4_options_reverse','1'),(350171,42868,'_blocks_4_options_reverse','field_61768049bb8ac'),(350172,42868,'blocks_4_options',''),(350173,42868,'_blocks_4_options','field_617682517c334'),(350174,42868,'blocks_4_split_5050_image','41330'),(350175,42868,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(350176,42868,'blocks_4_split_5050_video',''),(350177,42868,'_blocks_4_split_5050_video','field_6239f3160848a'),(350178,42868,'blocks_4_split_5050_content_title','Course Overview:'),(350179,42868,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(350180,42868,'blocks_4_split_5050_content_heading','Diploma in Biomechanics Coaching'),(350181,42868,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(350182,42868,'blocks_4_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.'),(350183,42868,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(350184,42868,'blocks_4_split_5050_content_actions',''),(350185,42868,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(350186,42868,'blocks_4_split_5050_content',''),(350187,42868,'_blocks_4_split_5050_content','field_61767afceb8ba'),(350188,42868,'blocks_5_acfe_flexible_toggle',''),(350189,42868,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350190,42868,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(350191,42868,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350192,42868,'blocks_5_options_theme','#f5f5f5'),(350193,42868,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(350194,42868,'blocks_5_options_reverse','0'),(350195,42868,'_blocks_5_options_reverse','field_61768049bb8ac'),(350196,42868,'blocks_5_options',''),(350197,42868,'_blocks_5_options','field_617682517c334'),(350198,42868,'blocks_5_split_5050_image','40503'),(350199,42868,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(350200,42868,'blocks_5_split_5050_video',''),(350201,42868,'_blocks_5_split_5050_video','field_6239f3160848a'),(350202,42868,'blocks_5_split_5050_content_title',''),(350203,42868,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(350204,42868,'blocks_5_split_5050_content_heading',''),(350205,42868,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(350206,42868,'blocks_5_split_5050_content_text','While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(350207,42868,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(350208,42868,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(350209,42868,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(350210,42868,'blocks_5_split_5050_content_actions','1'),(350211,42868,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(350212,42868,'blocks_5_split_5050_content',''),(350213,42868,'_blocks_5_split_5050_content','field_61767afceb8ba'),(350214,42868,'blocks_6_acfe_flexible_toggle',''),(350215,42868,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(350216,42868,'blocks_6_acfe_flexible_layout_title','Quote'),(350217,42868,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(350218,42868,'blocks_6_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(350219,42868,'_blocks_6_quote_content','field_6177cdacdd67a'),(350220,42868,'blocks_6_quote_author','Alex Carter, Certified Biomechanics Coach'),(350221,42868,'_blocks_6_quote_author','field_6177cdc6dd67b'),(350222,42868,'blocks_7_acfe_flexible_toggle',''),(350223,42868,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(350224,42868,'blocks_7_acfe_flexible_layout_title','Timeline'),(350225,42868,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(350226,42868,'blocks_7_options_theme','#ffffff'),(350227,42868,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(350228,42868,'blocks_7_options',''),(350229,42868,'_blocks_7_options','field_6177de53d1195'),(350230,42868,'blocks_7_timeline_content_title',''),(350231,42868,'_blocks_7_timeline_content_title','field_6177de53d1198'),(350232,42868,'blocks_7_timeline_content_heading','Why choose Biomechanics Education?'),(350233,42868,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(350234,42868,'blocks_7_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(350235,42868,'_blocks_7_timeline_content_text','field_6177de53d119a'),(350236,42868,'blocks_7_timeline_content_actions',''),(350237,42868,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(350238,42868,'blocks_7_timeline_content',''),(350239,42868,'_blocks_7_timeline_content','field_6177de53d1197'),(350240,42868,'blocks_7_timeline_items_0_title','Industry-Leading Expertise'),(350241,42868,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(350242,42868,'blocks_7_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(350243,42868,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(350244,42868,'blocks_7_timeline_items_1_title','Global Accessibility'),(350245,42868,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(350246,42868,'blocks_7_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(350247,42868,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(350248,42868,'blocks_7_timeline_items_2_title','Internationally Recognised Certification'),(350249,42868,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(350250,42868,'blocks_7_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(350251,42868,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(350252,42868,'blocks_7_timeline_items_3_title','Career Opportunities Worldwide'),(350253,42868,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(350254,42868,'blocks_7_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(350255,42868,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(350256,42868,'blocks_7_timeline_items','4'),(350257,42868,'_blocks_7_timeline_items','field_6177de53d119d'),(350258,42868,'blocks_8_acfe_flexible_toggle',''),(350259,42868,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350260,42868,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(350261,42868,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350262,42868,'blocks_8_options_theme','#ffffff'),(350263,42868,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(350264,42868,'blocks_8_options_reverse','0'),(350265,42868,'_blocks_8_options_reverse','field_61768049bb8ac'),(350266,42868,'blocks_8_options',''),(350267,42868,'_blocks_8_options','field_617682517c334'),(350268,42868,'blocks_8_split_5050_image','41300'),(350269,42868,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(350270,42868,'blocks_8_split_5050_video',''),(350271,42868,'_blocks_8_split_5050_video','field_6239f3160848a'),(350272,42868,'blocks_8_split_5050_content_title',''),(350273,42868,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(350274,42868,'blocks_8_split_5050_content_heading','International Support & Learning Experience'),(350275,42868,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(350276,42868,'blocks_8_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(350277,42868,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(350278,42868,'blocks_8_split_5050_content_actions',''),(350279,42868,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(350280,42868,'blocks_8_split_5050_content',''),(350281,42868,'_blocks_8_split_5050_content','field_61767afceb8ba'),(350282,42868,'blocks_9_acfe_flexible_toggle',''),(350283,42868,'_blocks_9_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(350284,42868,'blocks_9_acfe_flexible_layout_title','Contact Us[anchor]'),(350285,42868,'_blocks_9_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(350286,42868,'blocks_9_row_content_format','standard'),(350287,42868,'_blocks_9_row_content_format','field_6481ead962881'),(350288,42868,'blocks_9_row_content_title',''),(350289,42868,'_blocks_9_row_content_title','field_61a0f5f5b3db1'),(350290,42868,'blocks_9_row_content_heading','Contact Us Today'),(350291,42868,'_blocks_9_row_content_heading','field_61a0f5f5b3db2'),(350292,42868,'blocks_9_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(350293,42868,'_blocks_9_row_content_text','field_61a0f5f5b3db3'),(350294,42868,'blocks_9_row_content_actions',''),(350295,42868,'_blocks_9_row_content_actions','field_61a0f5f5b3db4'),(350296,42868,'blocks_9_row_content',''),(350297,42868,'_blocks_9_row_content','field_61a0f5f5b3db0'),(350298,42868,'blocks_9_row_form','42449'),(350299,42868,'_blocks_9_row_form','field_61a4ff2c0b08e'),(350300,42868,'blocks_9_row_form_button_label',''),(350301,42868,'_blocks_9_row_form_button_label','field_61e12cf6fe412'),(350302,42868,'blocks_10_acfe_flexible_toggle',''),(350303,42868,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(350304,42868,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(350305,42868,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(350306,42868,'blocks_10_options_theme','#ffffff'),(350307,42868,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(350308,42868,'blocks_10_options_state','0'),(350309,42868,'_blocks_10_options_state','field_6239fcb7508c5'),(350310,42868,'blocks_10_options',''),(350311,42868,'_blocks_10_options','field_6177e2991ac44'),(350312,42868,'blocks_10_content_title',''),(350313,42868,'_blocks_10_content_title','field_64d237e8bb1e2'),(350314,42868,'blocks_10_content_heading','FAQs'),(350315,42868,'_blocks_10_content_heading','field_64d237e8bb1e3'),(350316,42868,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(350317,42868,'_blocks_10_content_text','field_64d237e8bb1e4'),(350318,42868,'blocks_10_content_actions',''),(350319,42868,'_blocks_10_content_actions','field_64d237e8bb1e5'),(350320,42868,'blocks_10_content_align','left'),(350321,42868,'_blocks_10_content_align','field_64d2443e6b6aa'),(350322,42868,'blocks_10_content',''),(350323,42868,'_blocks_10_content','field_64d237e8bb1e1'),(350324,42868,'blocks_10_accordion_content','custom'),(350325,42868,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(350326,42868,'blocks_10_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(350327,42868,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(350328,42868,'blocks_10_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(350329,42868,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(350330,42868,'blocks_10_accordion_items_1_title','Is the qualification recognised globally?'),(350331,42868,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(350332,42868,'blocks_10_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(350333,42868,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(350334,42868,'blocks_10_accordion_items_2_title','What are the study options for international students?'),(350335,42868,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(350336,42868,'blocks_10_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(350337,42868,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(350338,42868,'blocks_10_accordion_items_3_title','Who is this course suitable for?'),(350339,42868,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(350340,42868,'blocks_10_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(350341,42868,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(350342,42868,'blocks_10_accordion_items_4_title','How do I enrol and what are the payment options?'),(350343,42868,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(350344,42868,'blocks_10_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(350345,42868,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(350346,42868,'blocks_10_accordion_items','5'),(350347,42868,'_blocks_10_accordion_items','field_6177e2991ac4c'),(350348,42868,'blocks_10_actions',''),(350349,42868,'_blocks_10_actions','field_61a746a817f7a'),(350350,42869,'hide_hero','0'),(350351,42869,'_hide_hero','field_66a2380fcda39'),(350352,42869,'hero_title',''),(350353,42869,'_hero_title','field_617571fe285e8'),(350354,42869,'hero_text',''),(350355,42869,'_hero_text','field_6175723c285e9'),(350356,42869,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(350357,42869,'_hero_actions_0_button','field_61757281285eb'),(350358,42869,'hero_actions','1'),(350359,42869,'_hero_actions','field_61757270285ea'),(350360,42869,'hero_style','default'),(350361,42869,'_hero_style','field_62051d9dc5324'),(350362,42869,'_thumbnail_id','40818'),(350363,42869,'__thumbnail_id','field_617570855ddaf'),(350364,42869,'hero_image_pos_x','right'),(350365,42869,'_hero_image_pos_x','field_62ec3d05390bb'),(350366,42869,'hero_image_pos_y','top'),(350367,42869,'_hero_image_pos_y','field_62ec3d05390bc'),(350368,42869,'hero_image_pos',''),(350369,42869,'_hero_image_pos','field_62ec3d05390ba'),(350370,42869,'fft_hide_from_listings','1'),(350371,42869,'_fft_hide_from_listings','field_61f1320446ab2'),(350372,42869,'fft_page_format','default'),(350373,42869,'_fft_page_format','field_61ae213f1f218'),(350374,42869,'fft_hide_nav','1'),(350375,42869,'_fft_hide_nav','field_635bd5e43527c'),(350376,42869,'fft_hide_header_call_to_action','0'),(350377,42869,'_fft_hide_header_call_to_action','field_635bd6723527d'),(350378,42869,'fft_page_sitemap','1'),(350379,42869,'_fft_page_sitemap','field_61af9b34e8181'),(350380,42869,'blocks_0_acfe_flexible_toggle',''),(350381,42869,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350382,42869,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(350383,42869,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350384,42869,'blocks_0_options_theme','#ffffff'),(350385,42869,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(350386,42869,'blocks_0_options_reverse','0'),(350387,42869,'_blocks_0_options_reverse','field_61768049bb8ac'),(350388,42869,'blocks_0_options',''),(350389,42869,'_blocks_0_options','field_617682517c334'),(350390,42869,'blocks_0_split_5050_image','40848'),(350391,42869,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(350392,42869,'blocks_0_split_5050_video',''),(350393,42869,'_blocks_0_split_5050_video','field_6239f3160848a'),(350394,42869,'blocks_0_split_5050_content_title','Biomechanics Education'),(350395,42869,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(350396,42869,'blocks_0_split_5050_content_heading','International Training and Courses'),(350397,42869,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(350398,42869,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re an exercise professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health, exercise and wellness to rehabilitation and performance coaching.'),(350399,42869,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(350400,42869,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(350401,42869,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(350402,42869,'blocks_0_split_5050_content_actions','1'),(350403,42869,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(350404,42869,'blocks_0_split_5050_content',''),(350405,42869,'_blocks_0_split_5050_content','field_61767afceb8ba'),(350406,42869,'blocks_1_acfe_flexible_toggle',''),(350407,42869,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350408,42869,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(350409,42869,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350410,42869,'blocks_1_options_theme','#ffffff'),(350411,42869,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(350412,42869,'blocks_1_options_reverse','1'),(350413,42869,'_blocks_1_options_reverse','field_61768049bb8ac'),(350414,42869,'blocks_1_options',''),(350415,42869,'_blocks_1_options','field_617682517c334'),(350416,42869,'blocks_1_split_5050_image','41312'),(350417,42869,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(350418,42869,'blocks_1_split_5050_video',''),(350419,42869,'_blocks_1_split_5050_video','field_6239f3160848a'),(350420,42869,'blocks_1_split_5050_content_title','Become a Biomechanics Coach'),(350421,42869,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(350422,42869,'blocks_1_split_5050_content_heading','International Coaching Programmes'),(350423,42869,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(350424,42869,'blocks_1_split_5050_content_text','Our internationally renowned coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nCourses are blended for in-person and through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally renowned certification to boost career opportunities</li>\r\n 	<li>Learn from leading experts in biomechanics with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(350425,42869,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(350426,42869,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(350427,42869,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(350428,42869,'blocks_1_split_5050_content_actions','1'),(350429,42869,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(350430,42869,'blocks_1_split_5050_content',''),(350431,42869,'_blocks_1_split_5050_content','field_61767afceb8ba'),(350432,42869,'blocks_2_acfe_flexible_toggle',''),(350433,42869,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(350434,42869,'blocks_2_acfe_flexible_layout_title','Video'),(350435,42869,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(350436,42869,'blocks_2_size','large'),(350437,42869,'_blocks_2_size','field_6487038f297c1'),(350438,42869,'blocks_2_row_content_title',''),(350439,42869,'_blocks_2_row_content_title','field_64870132a865d'),(350440,42869,'blocks_2_row_content_heading','Coaching the World to Move Better'),(350441,42869,'_blocks_2_row_content_heading','field_64870142a865e'),(350442,42869,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(350443,42869,'_blocks_2_row_content_text','field_64870148a865f'),(350444,42869,'blocks_2_row_content',''),(350445,42869,'_blocks_2_row_content','field_6487008ba865c'),(350446,42869,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(350447,42869,'_blocks_2_video_src','field_6193c4a98ec07'),(350448,42869,'blocks_2_video_thumbnail',''),(350449,42869,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(350450,42869,'blocks_3_acfe_flexible_toggle',''),(350451,42869,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(350452,42869,'blocks_3_acfe_flexible_layout_title','Text Block'),(350453,42869,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(350454,42869,'blocks_3_options_theme','#f5f5f5'),(350455,42869,'_blocks_3_options_theme','field_6176830e2ad17'),(350456,42869,'blocks_3_options',''),(350457,42869,'_blocks_3_options','field_6176830e2ad16'),(350458,42869,'blocks_3_text_block_heading','Our Industry Defining Diploma:'),(350459,42869,'_blocks_3_text_block_heading','field_617669d413097'),(350460,42869,'blocks_3_text_block_content',''),(350461,42869,'_blocks_3_text_block_content','field_617669ec13098'),(350462,42869,'blocks_4_acfe_flexible_toggle',''),(350463,42869,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350464,42869,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(350465,42869,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350466,42869,'blocks_4_options_theme','#f5f5f5'),(350467,42869,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(350468,42869,'blocks_4_options_reverse','1'),(350469,42869,'_blocks_4_options_reverse','field_61768049bb8ac'),(350470,42869,'blocks_4_options',''),(350471,42869,'_blocks_4_options','field_617682517c334'),(350472,42869,'blocks_4_split_5050_image','41330'),(350473,42869,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(350474,42869,'blocks_4_split_5050_video',''),(350475,42869,'_blocks_4_split_5050_video','field_6239f3160848a'),(350476,42869,'blocks_4_split_5050_content_title','Course Overview:'),(350477,42869,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(350478,42869,'blocks_4_split_5050_content_heading','Diploma in Biomechanics Coaching'),(350479,42869,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(350480,42869,'blocks_4_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.'),(350481,42869,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(350482,42869,'blocks_4_split_5050_content_actions',''),(350483,42869,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(350484,42869,'blocks_4_split_5050_content',''),(350485,42869,'_blocks_4_split_5050_content','field_61767afceb8ba'),(350486,42869,'blocks_5_acfe_flexible_toggle',''),(350487,42869,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350488,42869,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(350489,42869,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350490,42869,'blocks_5_options_theme','#f5f5f5'),(350491,42869,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(350492,42869,'blocks_5_options_reverse','0'),(350493,42869,'_blocks_5_options_reverse','field_61768049bb8ac'),(350494,42869,'blocks_5_options',''),(350495,42869,'_blocks_5_options','field_617682517c334'),(350496,42869,'blocks_5_split_5050_image','40503'),(350497,42869,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(350498,42869,'blocks_5_split_5050_video',''),(350499,42869,'_blocks_5_split_5050_video','field_6239f3160848a'),(350500,42869,'blocks_5_split_5050_content_title',''),(350501,42869,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(350502,42869,'blocks_5_split_5050_content_heading',''),(350503,42869,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(350504,42869,'blocks_5_split_5050_content_text','While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(350505,42869,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(350506,42869,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(350507,42869,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(350508,42869,'blocks_5_split_5050_content_actions','1'),(350509,42869,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(350510,42869,'blocks_5_split_5050_content',''),(350511,42869,'_blocks_5_split_5050_content','field_61767afceb8ba'),(350512,42869,'blocks_6_acfe_flexible_toggle',''),(350513,42869,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(350514,42869,'blocks_6_acfe_flexible_layout_title','Quote'),(350515,42869,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(350516,42869,'blocks_6_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(350517,42869,'_blocks_6_quote_content','field_6177cdacdd67a'),(350518,42869,'blocks_6_quote_author','Alex Carter, Certified Biomechanics Coach'),(350519,42869,'_blocks_6_quote_author','field_6177cdc6dd67b'),(350520,42869,'blocks_7_acfe_flexible_toggle',''),(350521,42869,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(350522,42869,'blocks_7_acfe_flexible_layout_title','Timeline'),(350523,42869,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(350524,42869,'blocks_7_options_theme','#ffffff'),(350525,42869,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(350526,42869,'blocks_7_options',''),(350527,42869,'_blocks_7_options','field_6177de53d1195'),(350528,42869,'blocks_7_timeline_content_title',''),(350529,42869,'_blocks_7_timeline_content_title','field_6177de53d1198'),(350530,42869,'blocks_7_timeline_content_heading','Why choose Biomechanics Education?'),(350531,42869,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(350532,42869,'blocks_7_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients—from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and industry-recognised certification provide the tools you need to succeed.'),(350533,42869,'_blocks_7_timeline_content_text','field_6177de53d119a'),(350534,42869,'blocks_7_timeline_content_actions',''),(350535,42869,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(350536,42869,'blocks_7_timeline_content',''),(350537,42869,'_blocks_7_timeline_content','field_6177de53d1197'),(350538,42869,'blocks_7_timeline_items_0_title','Industry-Leading Expertise'),(350539,42869,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(350540,42869,'blocks_7_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(350541,42869,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(350542,42869,'blocks_7_timeline_items_1_title','Global Accessibility'),(350543,42869,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(350544,42869,'blocks_7_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(350545,42869,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(350546,42869,'blocks_7_timeline_items_2_title','Internationally Recognised Certification'),(350547,42869,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(350548,42869,'blocks_7_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(350549,42869,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(350550,42869,'blocks_7_timeline_items_3_title','Career Opportunities Worldwide'),(350551,42869,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(350552,42869,'blocks_7_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(350553,42869,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(350554,42869,'blocks_7_timeline_items','4'),(350555,42869,'_blocks_7_timeline_items','field_6177de53d119d'),(350556,42869,'blocks_8_acfe_flexible_toggle',''),(350557,42869,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350558,42869,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(350559,42869,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350560,42869,'blocks_8_options_theme','#ffffff'),(350561,42869,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(350562,42869,'blocks_8_options_reverse','0'),(350563,42869,'_blocks_8_options_reverse','field_61768049bb8ac'),(350564,42869,'blocks_8_options',''),(350565,42869,'_blocks_8_options','field_617682517c334'),(350566,42869,'blocks_8_split_5050_image','41300'),(350567,42869,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(350568,42869,'blocks_8_split_5050_video',''),(350569,42869,'_blocks_8_split_5050_video','field_6239f3160848a'),(350570,42869,'blocks_8_split_5050_content_title',''),(350571,42869,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(350572,42869,'blocks_8_split_5050_content_heading','International Support & Learning Experience'),(350573,42869,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(350574,42869,'blocks_8_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(350575,42869,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(350576,42869,'blocks_8_split_5050_content_actions',''),(350577,42869,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(350578,42869,'blocks_8_split_5050_content',''),(350579,42869,'_blocks_8_split_5050_content','field_61767afceb8ba'),(350580,42869,'blocks_9_acfe_flexible_toggle',''),(350581,42869,'_blocks_9_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(350582,42869,'blocks_9_acfe_flexible_layout_title','Contact Us[anchor]'),(350583,42869,'_blocks_9_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(350584,42869,'blocks_9_row_content_format','standard'),(350585,42869,'_blocks_9_row_content_format','field_6481ead962881'),(350586,42869,'blocks_9_row_content_title',''),(350587,42869,'_blocks_9_row_content_title','field_61a0f5f5b3db1'),(350588,42869,'blocks_9_row_content_heading','Contact Us Today'),(350589,42869,'_blocks_9_row_content_heading','field_61a0f5f5b3db2'),(350590,42869,'blocks_9_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(350591,42869,'_blocks_9_row_content_text','field_61a0f5f5b3db3'),(350592,42869,'blocks_9_row_content_actions',''),(350593,42869,'_blocks_9_row_content_actions','field_61a0f5f5b3db4'),(350594,42869,'blocks_9_row_content',''),(350595,42869,'_blocks_9_row_content','field_61a0f5f5b3db0'),(350596,42869,'blocks_9_row_form','42449'),(350597,42869,'_blocks_9_row_form','field_61a4ff2c0b08e'),(350598,42869,'blocks_9_row_form_button_label',''),(350599,42869,'_blocks_9_row_form_button_label','field_61e12cf6fe412'),(350600,42869,'blocks_10_acfe_flexible_toggle',''),(350601,42869,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(350602,42869,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(350603,42869,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(350604,42869,'blocks_10_options_theme','#ffffff'),(350605,42869,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(350606,42869,'blocks_10_options_state','0'),(350607,42869,'_blocks_10_options_state','field_6239fcb7508c5'),(350608,42869,'blocks_10_options',''),(350609,42869,'_blocks_10_options','field_6177e2991ac44'),(350610,42869,'blocks_10_content_title',''),(350611,42869,'_blocks_10_content_title','field_64d237e8bb1e2'),(350612,42869,'blocks_10_content_heading','FAQs'),(350613,42869,'_blocks_10_content_heading','field_64d237e8bb1e3'),(350614,42869,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(350615,42869,'_blocks_10_content_text','field_64d237e8bb1e4'),(350616,42869,'blocks_10_content_actions',''),(350617,42869,'_blocks_10_content_actions','field_64d237e8bb1e5'),(350618,42869,'blocks_10_content_align','left'),(350619,42869,'_blocks_10_content_align','field_64d2443e6b6aa'),(350620,42869,'blocks_10_content',''),(350621,42869,'_blocks_10_content','field_64d237e8bb1e1'),(350622,42869,'blocks_10_accordion_content','custom'),(350623,42869,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(350624,42869,'blocks_10_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(350625,42869,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(350626,42869,'blocks_10_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(350627,42869,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(350628,42869,'blocks_10_accordion_items_1_title','Is the qualification recognised globally?'),(350629,42869,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(350630,42869,'blocks_10_accordion_items_1_text','Our Diploma in Biomechanics Coaching is industry-recognised and can enhance your career opportunities in fitness, rehabilitation, and performance coaching worldwide.\r\n\r\n&nbsp;'),(350631,42869,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(350632,42869,'blocks_10_accordion_items_2_title','What are the study options for international students?'),(350633,42869,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(350634,42869,'blocks_10_accordion_items_2_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(350635,42869,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(350636,42869,'blocks_10_accordion_items_3_title','Who is this course suitable for?'),(350637,42869,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(350638,42869,'blocks_10_accordion_items_3_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(350639,42869,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(350640,42869,'blocks_10_accordion_items_4_title','How do I enrol and what are the payment options?'),(350641,42869,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(350642,42869,'blocks_10_accordion_items_4_text','You can enrol by filling out our enquiry form. We offer flexible payment plans to make the course accessible, no matter where you are in the world.'),(350643,42869,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(350644,42869,'blocks_10_accordion_items','5'),(350645,42869,'_blocks_10_accordion_items','field_6177e2991ac4c'),(350646,42869,'blocks_10_actions',''),(350647,42869,'_blocks_10_actions','field_61a746a817f7a'),(350648,42869,'blocks','a:11:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:5:\"quote\";i:7;s:13:\"step_timeline\";i:8;s:10:\"split_5050\";i:9;s:4:\"form\";i:10;s:10:\"accordions\";}'),(350649,42869,'_blocks','field_6176696113096'),(350650,42875,'hide_hero','0'),(350651,42875,'_hide_hero','field_66a2380fcda39'),(350652,42875,'fft_hide_from_listings','1'),(350653,42875,'_fft_hide_from_listings','field_61f1320446ab2'),(350654,42875,'fft_page_format','default'),(350655,42875,'_fft_page_format','field_61ae213f1f218'),(350656,42875,'fft_hide_nav','1'),(350657,42875,'_fft_hide_nav','field_635bd5e43527c'),(350658,42875,'fft_hide_header_call_to_action','0'),(350659,42875,'_fft_hide_header_call_to_action','field_635bd6723527d'),(350660,42875,'fft_page_sitemap','1'),(350661,42875,'_fft_page_sitemap','field_61af9b34e8181'),(350662,42875,'blocks','a:11:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:5:\"quote\";i:7;s:13:\"step_timeline\";i:8;s:10:\"split_5050\";i:9;s:4:\"form\";i:10;s:10:\"accordions\";}'),(350663,42875,'_blocks','field_6176696113096'),(350664,42875,'hero_title',''),(350665,42875,'_hero_title','field_617571fe285e8'),(350666,42875,'hero_text',''),(350667,42875,'_hero_text','field_6175723c285e9'),(350668,42875,'hero_actions','1'),(350669,42875,'_hero_actions','field_61757270285ea'),(350670,42875,'hero_style','default'),(350671,42875,'_hero_style','field_62051d9dc5324'),(350672,42875,'hero_image_pos_x','right'),(350673,42875,'_hero_image_pos_x','field_62ec3d05390bb'),(350674,42875,'hero_image_pos_y','top'),(350675,42875,'_hero_image_pos_y','field_62ec3d05390bc'),(350676,42875,'hero_image_pos',''),(350677,42875,'_hero_image_pos','field_62ec3d05390ba'),(350678,42875,'blocks_0_acfe_flexible_toggle',''),(350679,42875,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350680,42875,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(350681,42875,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350682,42875,'blocks_0_options_theme','#ffffff'),(350683,42875,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(350684,42875,'blocks_0_options_reverse','0'),(350685,42875,'_blocks_0_options_reverse','field_61768049bb8ac'),(350686,42875,'blocks_0_options',''),(350687,42875,'_blocks_0_options','field_617682517c334'),(350688,42875,'blocks_0_split_5050_image','40848'),(350689,42875,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(350690,42875,'blocks_0_split_5050_video',''),(350691,42875,'_blocks_0_split_5050_video','field_6239f3160848a'),(350692,42875,'blocks_0_split_5050_content_title','Biomechanics Education'),(350693,42875,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(350694,42875,'blocks_0_split_5050_content_heading','International Training and Courses'),(350695,42875,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(350696,42875,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re an exercise professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health, exercise and wellness to rehabilitation and performance coaching.'),(350697,42875,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(350698,42875,'blocks_0_split_5050_content_actions','1'),(350699,42875,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(350700,42875,'blocks_0_split_5050_content',''),(350701,42875,'_blocks_0_split_5050_content','field_61767afceb8ba'),(350702,42875,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(350703,42875,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(350704,42875,'blocks_1_acfe_flexible_toggle',''),(350705,42875,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350706,42875,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(350707,42875,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350708,42875,'blocks_1_options_theme','#ffffff'),(350709,42875,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(350710,42875,'blocks_1_options_reverse','1'),(350711,42875,'_blocks_1_options_reverse','field_61768049bb8ac'),(350712,42875,'blocks_1_options',''),(350713,42875,'_blocks_1_options','field_617682517c334'),(350714,42875,'blocks_1_split_5050_image','41312'),(350715,42875,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(350716,42875,'blocks_1_split_5050_video',''),(350717,42875,'_blocks_1_split_5050_video','field_6239f3160848a'),(350718,42875,'blocks_1_split_5050_content_title','Become a Biomechanics Coach'),(350719,42875,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(350720,42875,'blocks_1_split_5050_content_heading','International Coaching Programmes'),(350721,42875,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(350722,42875,'blocks_1_split_5050_content_text','Our internationally renowned coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nCourses are blended for in-person and through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally renowned certification to boost career opportunities</li>\r\n 	<li>Learn from leading experts in biomechanics with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(350723,42875,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(350724,42875,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(350725,42875,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(350726,42875,'blocks_1_split_5050_content_actions','1'),(350727,42875,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(350728,42875,'blocks_1_split_5050_content',''),(350729,42875,'_blocks_1_split_5050_content','field_61767afceb8ba'),(350730,42875,'_thumbnail_id','40818'),(350731,42875,'__thumbnail_id','field_617570855ddaf'),(350732,42875,'blocks_2_acfe_flexible_toggle',''),(350733,42875,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(350734,42875,'blocks_2_acfe_flexible_layout_title','Video'),(350735,42875,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(350736,42875,'blocks_2_size','large'),(350737,42875,'_blocks_2_size','field_6487038f297c1'),(350738,42875,'blocks_2_row_content_title',''),(350739,42875,'_blocks_2_row_content_title','field_64870132a865d'),(350740,42875,'blocks_2_row_content_heading','Coaching the World to Move Better'),(350741,42875,'_blocks_2_row_content_heading','field_64870142a865e'),(350742,42875,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(350743,42875,'_blocks_2_row_content_text','field_64870148a865f'),(350744,42875,'blocks_2_row_content',''),(350745,42875,'_blocks_2_row_content','field_6487008ba865c'),(350746,42875,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(350747,42875,'_blocks_2_video_src','field_6193c4a98ec07'),(350748,42875,'blocks_2_video_thumbnail',''),(350749,42875,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(350750,42875,'blocks_3_acfe_flexible_toggle',''),(350751,42875,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(350752,42875,'blocks_3_acfe_flexible_layout_title','Text Block'),(350753,42875,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(350754,42875,'blocks_3_options_theme','#f5f5f5'),(350755,42875,'_blocks_3_options_theme','field_6176830e2ad17'),(350756,42875,'blocks_3_options',''),(350757,42875,'_blocks_3_options','field_6176830e2ad16'),(350758,42875,'blocks_3_text_block_heading','Our Industry Defining Diploma:'),(350759,42875,'_blocks_3_text_block_heading','field_617669d413097'),(350760,42875,'blocks_3_text_block_content',''),(350761,42875,'_blocks_3_text_block_content','field_617669ec13098'),(350762,42875,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(350763,42875,'_hero_actions_0_button','field_61757281285eb'),(350764,42875,'blocks_4_acfe_flexible_toggle',''),(350765,42875,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350766,42875,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(350767,42875,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350768,42875,'blocks_4_options_theme','#f5f5f5'),(350769,42875,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(350770,42875,'blocks_4_options_reverse','1'),(350771,42875,'_blocks_4_options_reverse','field_61768049bb8ac'),(350772,42875,'blocks_4_options',''),(350773,42875,'_blocks_4_options','field_617682517c334'),(350774,42875,'blocks_4_split_5050_image','41330'),(350775,42875,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(350776,42875,'blocks_4_split_5050_video',''),(350777,42875,'_blocks_4_split_5050_video','field_6239f3160848a'),(350778,42875,'blocks_4_split_5050_content_title','Course Overview:'),(350779,42875,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(350780,42875,'blocks_4_split_5050_content_heading','Diploma in Biomechanics Coaching'),(350781,42875,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(350782,42875,'blocks_4_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.'),(350783,42875,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(350784,42875,'blocks_4_split_5050_content_actions',''),(350785,42875,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(350786,42875,'blocks_4_split_5050_content',''),(350787,42875,'_blocks_4_split_5050_content','field_61767afceb8ba'),(350788,42875,'blocks_5_acfe_flexible_toggle',''),(350789,42875,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350790,42875,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(350791,42875,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350792,42875,'blocks_5_options_theme','#f5f5f5'),(350793,42875,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(350794,42875,'blocks_5_options_reverse','0'),(350795,42875,'_blocks_5_options_reverse','field_61768049bb8ac'),(350796,42875,'blocks_5_options',''),(350797,42875,'_blocks_5_options','field_617682517c334'),(350798,42875,'blocks_5_split_5050_image','40503'),(350799,42875,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(350800,42875,'blocks_5_split_5050_video',''),(350801,42875,'_blocks_5_split_5050_video','field_6239f3160848a'),(350802,42875,'blocks_5_split_5050_content_title',''),(350803,42875,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(350804,42875,'blocks_5_split_5050_content_heading',''),(350805,42875,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(350806,42875,'blocks_5_split_5050_content_text','While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(350807,42875,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(350808,42875,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(350809,42875,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(350810,42875,'blocks_5_split_5050_content_actions','1'),(350811,42875,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(350812,42875,'blocks_5_split_5050_content',''),(350813,42875,'_blocks_5_split_5050_content','field_61767afceb8ba'),(350814,42875,'blocks_6_acfe_flexible_toggle',''),(350815,42875,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(350816,42875,'blocks_6_acfe_flexible_layout_title','Quote'),(350817,42875,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(350818,42875,'blocks_6_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(350819,42875,'_blocks_6_quote_content','field_6177cdacdd67a'),(350820,42875,'blocks_6_quote_author','Alex Carter, Certified Biomechanics Coach'),(350821,42875,'_blocks_6_quote_author','field_6177cdc6dd67b'),(350822,42875,'blocks_7_acfe_flexible_toggle',''),(350823,42875,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(350824,42875,'blocks_7_acfe_flexible_layout_title','Timeline'),(350825,42875,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(350826,42875,'blocks_7_options_theme','#ffffff'),(350827,42875,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(350828,42875,'blocks_7_options',''),(350829,42875,'_blocks_7_options','field_6177de53d1195'),(350830,42875,'blocks_7_timeline_content_title',''),(350831,42875,'_blocks_7_timeline_content_title','field_6177de53d1198'),(350832,42875,'blocks_7_timeline_content_heading','Why choose Biomechanics Education?'),(350833,42875,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(350834,42875,'blocks_7_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients - from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and certification provide the tools you need to succeed.'),(350835,42875,'_blocks_7_timeline_content_text','field_6177de53d119a'),(350836,42875,'blocks_7_timeline_content_actions',''),(350837,42875,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(350838,42875,'blocks_7_timeline_content',''),(350839,42875,'_blocks_7_timeline_content','field_6177de53d1197'),(350840,42875,'blocks_7_timeline_items_0_title','Industry-Leading Expertise'),(350841,42875,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(350842,42875,'blocks_7_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(350843,42875,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(350844,42875,'blocks_7_timeline_items_1_title','Global Accessibility'),(350845,42875,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(350846,42875,'blocks_7_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(350847,42875,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(350848,42875,'blocks_7_timeline_items_2_title','Internationally Applicable Certification'),(350849,42875,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(350850,42875,'blocks_7_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(350851,42875,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(350852,42875,'blocks_7_timeline_items_3_title','Career Opportunities Worldwide'),(350853,42875,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(350854,42875,'blocks_7_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(350855,42875,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(350856,42875,'blocks_7_timeline_items','4'),(350857,42875,'_blocks_7_timeline_items','field_6177de53d119d'),(350858,42875,'blocks_8_acfe_flexible_toggle',''),(350859,42875,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350860,42875,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(350861,42875,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350862,42875,'blocks_8_options_theme','#ffffff'),(350863,42875,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(350864,42875,'blocks_8_options_reverse','0'),(350865,42875,'_blocks_8_options_reverse','field_61768049bb8ac'),(350866,42875,'blocks_8_options',''),(350867,42875,'_blocks_8_options','field_617682517c334'),(350868,42875,'blocks_8_split_5050_image','41300'),(350869,42875,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(350870,42875,'blocks_8_split_5050_video',''),(350871,42875,'_blocks_8_split_5050_video','field_6239f3160848a'),(350872,42875,'blocks_8_split_5050_content_title',''),(350873,42875,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(350874,42875,'blocks_8_split_5050_content_heading','International Support & Learning Experience'),(350875,42875,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(350876,42875,'blocks_8_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(350877,42875,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(350878,42875,'blocks_8_split_5050_content_actions',''),(350879,42875,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(350880,42875,'blocks_8_split_5050_content',''),(350881,42875,'_blocks_8_split_5050_content','field_61767afceb8ba'),(350882,42875,'blocks_9_acfe_flexible_toggle',''),(350883,42875,'_blocks_9_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(350884,42875,'blocks_9_acfe_flexible_layout_title','Contact Us[anchor]'),(350885,42875,'_blocks_9_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(350886,42875,'blocks_9_row_content_format','standard'),(350887,42875,'_blocks_9_row_content_format','field_6481ead962881'),(350888,42875,'blocks_9_row_content_title',''),(350889,42875,'_blocks_9_row_content_title','field_61a0f5f5b3db1'),(350890,42875,'blocks_9_row_content_heading','Contact Us Today'),(350891,42875,'_blocks_9_row_content_heading','field_61a0f5f5b3db2'),(350892,42875,'blocks_9_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(350893,42875,'_blocks_9_row_content_text','field_61a0f5f5b3db3'),(350894,42875,'blocks_9_row_content_actions',''),(350895,42875,'_blocks_9_row_content_actions','field_61a0f5f5b3db4'),(350896,42875,'blocks_9_row_content',''),(350897,42875,'_blocks_9_row_content','field_61a0f5f5b3db0'),(350898,42875,'blocks_9_row_form','42449'),(350899,42875,'_blocks_9_row_form','field_61a4ff2c0b08e'),(350900,42875,'blocks_9_row_form_button_label',''),(350901,42875,'_blocks_9_row_form_button_label','field_61e12cf6fe412'),(350902,42875,'blocks_10_acfe_flexible_toggle',''),(350903,42875,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(350904,42875,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(350905,42875,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(350906,42875,'blocks_10_options_theme','#ffffff'),(350907,42875,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(350908,42875,'blocks_10_options_state','0'),(350909,42875,'_blocks_10_options_state','field_6239fcb7508c5'),(350910,42875,'blocks_10_options',''),(350911,42875,'_blocks_10_options','field_6177e2991ac44'),(350912,42875,'blocks_10_content_title',''),(350913,42875,'_blocks_10_content_title','field_64d237e8bb1e2'),(350914,42875,'blocks_10_content_heading','FAQs'),(350915,42875,'_blocks_10_content_heading','field_64d237e8bb1e3'),(350916,42875,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(350917,42875,'_blocks_10_content_text','field_64d237e8bb1e4'),(350918,42875,'blocks_10_content_actions',''),(350919,42875,'_blocks_10_content_actions','field_64d237e8bb1e5'),(350920,42875,'blocks_10_content_align','left'),(350921,42875,'_blocks_10_content_align','field_64d2443e6b6aa'),(350922,42875,'blocks_10_content',''),(350923,42875,'_blocks_10_content','field_64d237e8bb1e1'),(350924,42875,'blocks_10_accordion_content','custom'),(350925,42875,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(350926,42875,'blocks_10_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(350927,42875,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(350928,42875,'blocks_10_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(350929,42875,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(350930,42875,'blocks_10_accordion_items_1_title','What are the study options for international students?'),(350931,42875,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(350932,42875,'blocks_10_accordion_items_1_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(350933,42875,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(350934,42875,'blocks_10_accordion_items_2_title','Who is this course suitable for?'),(350935,42875,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(350936,42875,'blocks_10_accordion_items_2_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(350937,42875,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(350938,42875,'blocks_10_accordion_items_3_title','What are the next steps to get started?'),(350939,42875,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(350940,42875,'blocks_10_accordion_items_3_text','Fill out our enquiry form or give us a call and we can guide you through the process, wherever you are in the world.'),(350941,42875,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(350942,42875,'blocks_10_accordion_items','4'),(350943,42875,'_blocks_10_accordion_items','field_6177e2991ac4c'),(350944,42875,'blocks_10_actions',''),(350945,42875,'_blocks_10_actions','field_61a746a817f7a'),(350946,42876,'hide_hero','0'),(350947,42876,'_hide_hero','field_66a2380fcda39'),(350948,42876,'fft_hide_from_listings','1'),(350949,42876,'_fft_hide_from_listings','field_61f1320446ab2'),(350950,42876,'fft_page_format','default'),(350951,42876,'_fft_page_format','field_61ae213f1f218'),(350952,42876,'fft_hide_nav','1'),(350953,42876,'_fft_hide_nav','field_635bd5e43527c'),(350954,42876,'fft_hide_header_call_to_action','0'),(350955,42876,'_fft_hide_header_call_to_action','field_635bd6723527d'),(350956,42876,'fft_page_sitemap','1'),(350957,42876,'_fft_page_sitemap','field_61af9b34e8181'),(350958,42876,'blocks','a:11:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:5:\"quote\";i:7;s:13:\"step_timeline\";i:8;s:10:\"split_5050\";i:9;s:4:\"form\";i:10;s:10:\"accordions\";}'),(350959,42876,'_blocks','field_6176696113096'),(350960,42876,'hero_title',''),(350961,42876,'_hero_title','field_617571fe285e8'),(350962,42876,'hero_text',''),(350963,42876,'_hero_text','field_6175723c285e9'),(350964,42876,'hero_actions','1'),(350965,42876,'_hero_actions','field_61757270285ea'),(350966,42876,'hero_style','default'),(350967,42876,'_hero_style','field_62051d9dc5324'),(350968,42876,'hero_image_pos_x','right'),(350969,42876,'_hero_image_pos_x','field_62ec3d05390bb'),(350970,42876,'hero_image_pos_y','top'),(350971,42876,'_hero_image_pos_y','field_62ec3d05390bc'),(350972,42876,'hero_image_pos',''),(350973,42876,'_hero_image_pos','field_62ec3d05390ba'),(350974,42876,'blocks_0_acfe_flexible_toggle',''),(350975,42876,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(350976,42876,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(350977,42876,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(350978,42876,'blocks_0_options_theme','#ffffff'),(350979,42876,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(350980,42876,'blocks_0_options_reverse','0'),(350981,42876,'_blocks_0_options_reverse','field_61768049bb8ac'),(350982,42876,'blocks_0_options',''),(350983,42876,'_blocks_0_options','field_617682517c334'),(350984,42876,'blocks_0_split_5050_image','40848'),(350985,42876,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(350986,42876,'blocks_0_split_5050_video',''),(350987,42876,'_blocks_0_split_5050_video','field_6239f3160848a'),(350988,42876,'blocks_0_split_5050_content_title','Biomechanics Education'),(350989,42876,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(350990,42876,'blocks_0_split_5050_content_heading','International Training and Courses'),(350991,42876,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(350992,42876,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re an exercise professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health, exercise and wellness to rehabilitation and performance coaching.'),(350993,42876,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(350994,42876,'blocks_0_split_5050_content_actions','1'),(350995,42876,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(350996,42876,'blocks_0_split_5050_content',''),(350997,42876,'_blocks_0_split_5050_content','field_61767afceb8ba'),(350998,42876,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(350999,42876,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(351000,42876,'blocks_1_acfe_flexible_toggle',''),(351001,42876,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351002,42876,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(351003,42876,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351004,42876,'blocks_1_options_theme','#ffffff'),(351005,42876,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(351006,42876,'blocks_1_options_reverse','1'),(351007,42876,'_blocks_1_options_reverse','field_61768049bb8ac'),(351008,42876,'blocks_1_options',''),(351009,42876,'_blocks_1_options','field_617682517c334'),(351010,42876,'blocks_1_split_5050_image','41312'),(351011,42876,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(351012,42876,'blocks_1_split_5050_video',''),(351013,42876,'_blocks_1_split_5050_video','field_6239f3160848a'),(351014,42876,'blocks_1_split_5050_content_title','Become a Biomechanics Coach'),(351015,42876,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(351016,42876,'blocks_1_split_5050_content_heading','International Coaching Programmes'),(351017,42876,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(351018,42876,'blocks_1_split_5050_content_text','Our internationally renowned coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nCourses are blended for in-person and through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally renowned certification to boost career opportunities</li>\r\n 	<li>Learn from leading experts in biomechanics with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(351019,42876,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(351020,42876,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(351021,42876,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(351022,42876,'blocks_1_split_5050_content_actions','1'),(351023,42876,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(351024,42876,'blocks_1_split_5050_content',''),(351025,42876,'_blocks_1_split_5050_content','field_61767afceb8ba'),(351026,42876,'_thumbnail_id','40818'),(351027,42876,'__thumbnail_id','field_617570855ddaf'),(351028,42876,'blocks_2_acfe_flexible_toggle',''),(351029,42876,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(351030,42876,'blocks_2_acfe_flexible_layout_title','Video'),(351031,42876,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(351032,42876,'blocks_2_size','large'),(351033,42876,'_blocks_2_size','field_6487038f297c1'),(351034,42876,'blocks_2_row_content_title',''),(351035,42876,'_blocks_2_row_content_title','field_64870132a865d'),(351036,42876,'blocks_2_row_content_heading','Coaching the World to Move Better'),(351037,42876,'_blocks_2_row_content_heading','field_64870142a865e'),(351038,42876,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(351039,42876,'_blocks_2_row_content_text','field_64870148a865f'),(351040,42876,'blocks_2_row_content',''),(351041,42876,'_blocks_2_row_content','field_6487008ba865c'),(351042,42876,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(351043,42876,'_blocks_2_video_src','field_6193c4a98ec07'),(351044,42876,'blocks_2_video_thumbnail',''),(351045,42876,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(351046,42876,'blocks_3_acfe_flexible_toggle',''),(351047,42876,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(351048,42876,'blocks_3_acfe_flexible_layout_title','Text Block'),(351049,42876,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(351050,42876,'blocks_3_options_theme','#f5f5f5'),(351051,42876,'_blocks_3_options_theme','field_6176830e2ad17'),(351052,42876,'blocks_3_options',''),(351053,42876,'_blocks_3_options','field_6176830e2ad16'),(351054,42876,'blocks_3_text_block_heading','Our Industry Defining Diploma:'),(351055,42876,'_blocks_3_text_block_heading','field_617669d413097'),(351056,42876,'blocks_3_text_block_content',''),(351057,42876,'_blocks_3_text_block_content','field_617669ec13098'),(351058,42876,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(351059,42876,'_hero_actions_0_button','field_61757281285eb'),(351060,42876,'blocks_4_acfe_flexible_toggle',''),(351061,42876,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351062,42876,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(351063,42876,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351064,42876,'blocks_4_options_theme','#f5f5f5'),(351065,42876,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(351066,42876,'blocks_4_options_reverse','1'),(351067,42876,'_blocks_4_options_reverse','field_61768049bb8ac'),(351068,42876,'blocks_4_options',''),(351069,42876,'_blocks_4_options','field_617682517c334'),(351070,42876,'blocks_4_split_5050_image','41330'),(351071,42876,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(351072,42876,'blocks_4_split_5050_video',''),(351073,42876,'_blocks_4_split_5050_video','field_6239f3160848a'),(351074,42876,'blocks_4_split_5050_content_title','Course Overview:'),(351075,42876,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(351076,42876,'blocks_4_split_5050_content_heading','Diploma in Biomechanics Coaching'),(351077,42876,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(351078,42876,'blocks_4_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.'),(351079,42876,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(351080,42876,'blocks_4_split_5050_content_actions',''),(351081,42876,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(351082,42876,'blocks_4_split_5050_content',''),(351083,42876,'_blocks_4_split_5050_content','field_61767afceb8ba'),(351084,42876,'blocks_5_acfe_flexible_toggle',''),(351085,42876,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351086,42876,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(351087,42876,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351088,42876,'blocks_5_options_theme','#f5f5f5'),(351089,42876,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(351090,42876,'blocks_5_options_reverse','0'),(351091,42876,'_blocks_5_options_reverse','field_61768049bb8ac'),(351092,42876,'blocks_5_options',''),(351093,42876,'_blocks_5_options','field_617682517c334'),(351094,42876,'blocks_5_split_5050_image','40503'),(351095,42876,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(351096,42876,'blocks_5_split_5050_video',''),(351097,42876,'_blocks_5_split_5050_video','field_6239f3160848a'),(351098,42876,'blocks_5_split_5050_content_title',''),(351099,42876,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(351100,42876,'blocks_5_split_5050_content_heading',''),(351101,42876,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(351102,42876,'blocks_5_split_5050_content_text','While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(351103,42876,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(351104,42876,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(351105,42876,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(351106,42876,'blocks_5_split_5050_content_actions','1'),(351107,42876,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(351108,42876,'blocks_5_split_5050_content',''),(351109,42876,'_blocks_5_split_5050_content','field_61767afceb8ba'),(351110,42876,'blocks_6_acfe_flexible_toggle',''),(351111,42876,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(351112,42876,'blocks_6_acfe_flexible_layout_title','Quote'),(351113,42876,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(351114,42876,'blocks_6_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(351115,42876,'_blocks_6_quote_content','field_6177cdacdd67a'),(351116,42876,'blocks_6_quote_author','Alex Carter, Certified Biomechanics Coach'),(351117,42876,'_blocks_6_quote_author','field_6177cdc6dd67b'),(351118,42876,'blocks_7_acfe_flexible_toggle',''),(351119,42876,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(351120,42876,'blocks_7_acfe_flexible_layout_title','Timeline'),(351121,42876,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(351122,42876,'blocks_7_options_theme','#ffffff'),(351123,42876,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(351124,42876,'blocks_7_options',''),(351125,42876,'_blocks_7_options','field_6177de53d1195'),(351126,42876,'blocks_7_timeline_content_title',''),(351127,42876,'_blocks_7_timeline_content_title','field_6177de53d1198'),(351128,42876,'blocks_7_timeline_content_heading','Why choose Biomechanics Education?'),(351129,42876,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(351130,42876,'blocks_7_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients - from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and certification provide the tools you need to succeed.'),(351131,42876,'_blocks_7_timeline_content_text','field_6177de53d119a'),(351132,42876,'blocks_7_timeline_content_actions',''),(351133,42876,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(351134,42876,'blocks_7_timeline_content',''),(351135,42876,'_blocks_7_timeline_content','field_6177de53d1197'),(351136,42876,'blocks_7_timeline_items_0_title','Industry-Leading Expertise'),(351137,42876,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(351138,42876,'blocks_7_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(351139,42876,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(351140,42876,'blocks_7_timeline_items_1_title','Global Accessibility'),(351141,42876,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(351142,42876,'blocks_7_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(351143,42876,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(351144,42876,'blocks_7_timeline_items_2_title','Internationally Applicable Certification'),(351145,42876,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(351146,42876,'blocks_7_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(351147,42876,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(351148,42876,'blocks_7_timeline_items_3_title','Career Opportunities Worldwide'),(351149,42876,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(351150,42876,'blocks_7_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(351151,42876,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(351152,42876,'blocks_7_timeline_items','4'),(351153,42876,'_blocks_7_timeline_items','field_6177de53d119d'),(351154,42876,'blocks_8_acfe_flexible_toggle',''),(351155,42876,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351156,42876,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(351157,42876,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351158,42876,'blocks_8_options_theme','#ffffff'),(351159,42876,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(351160,42876,'blocks_8_options_reverse','0'),(351161,42876,'_blocks_8_options_reverse','field_61768049bb8ac'),(351162,42876,'blocks_8_options',''),(351163,42876,'_blocks_8_options','field_617682517c334'),(351164,42876,'blocks_8_split_5050_image','41300'),(351165,42876,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(351166,42876,'blocks_8_split_5050_video',''),(351167,42876,'_blocks_8_split_5050_video','field_6239f3160848a'),(351168,42876,'blocks_8_split_5050_content_title',''),(351169,42876,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(351170,42876,'blocks_8_split_5050_content_heading','International Support & Learning Experience'),(351171,42876,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(351172,42876,'blocks_8_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(351173,42876,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(351174,42876,'blocks_8_split_5050_content_actions',''),(351175,42876,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(351176,42876,'blocks_8_split_5050_content',''),(351177,42876,'_blocks_8_split_5050_content','field_61767afceb8ba'),(351178,42876,'blocks_9_acfe_flexible_toggle',''),(351179,42876,'_blocks_9_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(351180,42876,'blocks_9_acfe_flexible_layout_title','Contact Us[anchor]'),(351181,42876,'_blocks_9_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(351182,42876,'blocks_9_row_content_format','standard'),(351183,42876,'_blocks_9_row_content_format','field_6481ead962881'),(351184,42876,'blocks_9_row_content_title',''),(351185,42876,'_blocks_9_row_content_title','field_61a0f5f5b3db1'),(351186,42876,'blocks_9_row_content_heading','Contact Us Today'),(351187,42876,'_blocks_9_row_content_heading','field_61a0f5f5b3db2'),(351188,42876,'blocks_9_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(351189,42876,'_blocks_9_row_content_text','field_61a0f5f5b3db3'),(351190,42876,'blocks_9_row_content_actions',''),(351191,42876,'_blocks_9_row_content_actions','field_61a0f5f5b3db4'),(351192,42876,'blocks_9_row_content',''),(351193,42876,'_blocks_9_row_content','field_61a0f5f5b3db0'),(351194,42876,'blocks_9_row_form','42449'),(351195,42876,'_blocks_9_row_form','field_61a4ff2c0b08e'),(351196,42876,'blocks_9_row_form_button_label',''),(351197,42876,'_blocks_9_row_form_button_label','field_61e12cf6fe412'),(351198,42876,'blocks_10_acfe_flexible_toggle',''),(351199,42876,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(351200,42876,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(351201,42876,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(351202,42876,'blocks_10_options_theme','#ffffff'),(351203,42876,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(351204,42876,'blocks_10_options_state','0'),(351205,42876,'_blocks_10_options_state','field_6239fcb7508c5'),(351206,42876,'blocks_10_options',''),(351207,42876,'_blocks_10_options','field_6177e2991ac44'),(351208,42876,'blocks_10_content_title',''),(351209,42876,'_blocks_10_content_title','field_64d237e8bb1e2'),(351210,42876,'blocks_10_content_heading','FAQs'),(351211,42876,'_blocks_10_content_heading','field_64d237e8bb1e3'),(351212,42876,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(351213,42876,'_blocks_10_content_text','field_64d237e8bb1e4'),(351214,42876,'blocks_10_content_actions',''),(351215,42876,'_blocks_10_content_actions','field_64d237e8bb1e5'),(351216,42876,'blocks_10_content_align','left'),(351217,42876,'_blocks_10_content_align','field_64d2443e6b6aa'),(351218,42876,'blocks_10_content',''),(351219,42876,'_blocks_10_content','field_64d237e8bb1e1'),(351220,42876,'blocks_10_accordion_content','custom'),(351221,42876,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(351222,42876,'blocks_10_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(351223,42876,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(351224,42876,'blocks_10_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(351225,42876,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(351226,42876,'blocks_10_accordion_items_1_title','What are the study options for international students?'),(351227,42876,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(351228,42876,'blocks_10_accordion_items_1_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(351229,42876,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(351230,42876,'blocks_10_accordion_items_2_title','Who is this course suitable for?'),(351231,42876,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(351232,42876,'blocks_10_accordion_items_2_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(351233,42876,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(351234,42876,'blocks_10_accordion_items_3_title','What are the next steps to get started?'),(351235,42876,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(351236,42876,'blocks_10_accordion_items_3_text','Fill out our enquiry form or give us a call and we can guide you through the process, wherever you are in the world.'),(351237,42876,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(351238,42876,'blocks_10_accordion_items','4'),(351239,42876,'_blocks_10_accordion_items','field_6177e2991ac4c'),(351240,42876,'blocks_10_actions',''),(351241,42876,'_blocks_10_actions','field_61a746a817f7a'),(351242,42877,'hide_hero','0'),(351243,42877,'_hide_hero','field_66a2380fcda39'),(351244,42877,'fft_hide_from_listings','1'),(351245,42877,'_fft_hide_from_listings','field_61f1320446ab2'),(351246,42877,'fft_page_format','default'),(351247,42877,'_fft_page_format','field_61ae213f1f218'),(351248,42877,'fft_hide_nav','1'),(351249,42877,'_fft_hide_nav','field_635bd5e43527c'),(351250,42877,'fft_hide_header_call_to_action','0'),(351251,42877,'_fft_hide_header_call_to_action','field_635bd6723527d'),(351252,42877,'fft_page_sitemap','1'),(351253,42877,'_fft_page_sitemap','field_61af9b34e8181'),(351254,42877,'blocks','a:11:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:5:\"quote\";i:7;s:13:\"step_timeline\";i:8;s:10:\"split_5050\";i:9;s:4:\"form\";i:10;s:10:\"accordions\";}'),(351255,42877,'_blocks','field_6176696113096'),(351256,42877,'hero_title',''),(351257,42877,'_hero_title','field_617571fe285e8'),(351258,42877,'hero_text',''),(351259,42877,'_hero_text','field_6175723c285e9'),(351260,42877,'hero_actions','1'),(351261,42877,'_hero_actions','field_61757270285ea'),(351262,42877,'hero_style','default'),(351263,42877,'_hero_style','field_62051d9dc5324'),(351264,42877,'hero_image_pos_x','right'),(351265,42877,'_hero_image_pos_x','field_62ec3d05390bb'),(351266,42877,'hero_image_pos_y','top'),(351267,42877,'_hero_image_pos_y','field_62ec3d05390bc'),(351268,42877,'hero_image_pos',''),(351269,42877,'_hero_image_pos','field_62ec3d05390ba'),(351270,42877,'blocks_0_acfe_flexible_toggle',''),(351271,42877,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351272,42877,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(351273,42877,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351274,42877,'blocks_0_options_theme','#ffffff'),(351275,42877,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(351276,42877,'blocks_0_options_reverse','0'),(351277,42877,'_blocks_0_options_reverse','field_61768049bb8ac'),(351278,42877,'blocks_0_options',''),(351279,42877,'_blocks_0_options','field_617682517c334'),(351280,42877,'blocks_0_split_5050_image','40848'),(351281,42877,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(351282,42877,'blocks_0_split_5050_video',''),(351283,42877,'_blocks_0_split_5050_video','field_6239f3160848a'),(351284,42877,'blocks_0_split_5050_content_title','Biomechanics Education'),(351285,42877,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(351286,42877,'blocks_0_split_5050_content_heading','International Training and Courses'),(351287,42877,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(351288,42877,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re an exercise professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health, exercise and wellness to rehabilitation and performance coaching.'),(351289,42877,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(351290,42877,'blocks_0_split_5050_content_actions','1'),(351291,42877,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(351292,42877,'blocks_0_split_5050_content',''),(351293,42877,'_blocks_0_split_5050_content','field_61767afceb8ba'),(351294,42877,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(351295,42877,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(351296,42877,'blocks_1_acfe_flexible_toggle',''),(351297,42877,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351298,42877,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(351299,42877,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351300,42877,'blocks_1_options_theme','#ffffff'),(351301,42877,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(351302,42877,'blocks_1_options_reverse','1'),(351303,42877,'_blocks_1_options_reverse','field_61768049bb8ac'),(351304,42877,'blocks_1_options',''),(351305,42877,'_blocks_1_options','field_617682517c334'),(351306,42877,'blocks_1_split_5050_image','41312'),(351307,42877,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(351308,42877,'blocks_1_split_5050_video',''),(351309,42877,'_blocks_1_split_5050_video','field_6239f3160848a'),(351310,42877,'blocks_1_split_5050_content_title','Become a Biomechanics Coach'),(351311,42877,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(351312,42877,'blocks_1_split_5050_content_heading','International Coaching Programmes'),(351313,42877,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(351314,42877,'blocks_1_split_5050_content_text','Our internationally renowned coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nCourses are blended for in-person and through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally renowned certification to boost career opportunities</li>\r\n 	<li>Learn from leading experts in biomechanics with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(351315,42877,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(351316,42877,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(351317,42877,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(351318,42877,'blocks_1_split_5050_content_actions','1'),(351319,42877,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(351320,42877,'blocks_1_split_5050_content',''),(351321,42877,'_blocks_1_split_5050_content','field_61767afceb8ba'),(351322,42877,'_thumbnail_id','40818'),(351323,42877,'__thumbnail_id','field_617570855ddaf'),(351324,42877,'blocks_2_acfe_flexible_toggle',''),(351325,42877,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(351326,42877,'blocks_2_acfe_flexible_layout_title','Video'),(351327,42877,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(351328,42877,'blocks_2_size','large'),(351329,42877,'_blocks_2_size','field_6487038f297c1'),(351330,42877,'blocks_2_row_content_title',''),(351331,42877,'_blocks_2_row_content_title','field_64870132a865d'),(351332,42877,'blocks_2_row_content_heading','Coaching the World to Move Better'),(351333,42877,'_blocks_2_row_content_heading','field_64870142a865e'),(351334,42877,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(351335,42877,'_blocks_2_row_content_text','field_64870148a865f'),(351336,42877,'blocks_2_row_content',''),(351337,42877,'_blocks_2_row_content','field_6487008ba865c'),(351338,42877,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(351339,42877,'_blocks_2_video_src','field_6193c4a98ec07'),(351340,42877,'blocks_2_video_thumbnail',''),(351341,42877,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(351342,42877,'blocks_3_acfe_flexible_toggle',''),(351343,42877,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(351344,42877,'blocks_3_acfe_flexible_layout_title','Text Block'),(351345,42877,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(351346,42877,'blocks_3_options_theme','#f5f5f5'),(351347,42877,'_blocks_3_options_theme','field_6176830e2ad17'),(351348,42877,'blocks_3_options',''),(351349,42877,'_blocks_3_options','field_6176830e2ad16'),(351350,42877,'blocks_3_text_block_heading','Our Industry Defining Diploma:'),(351351,42877,'_blocks_3_text_block_heading','field_617669d413097'),(351352,42877,'blocks_3_text_block_content',''),(351353,42877,'_blocks_3_text_block_content','field_617669ec13098'),(351354,42877,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(351355,42877,'_hero_actions_0_button','field_61757281285eb'),(351356,42877,'blocks_4_acfe_flexible_toggle',''),(351357,42877,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351358,42877,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(351359,42877,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351360,42877,'blocks_4_options_theme','#f5f5f5'),(351361,42877,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(351362,42877,'blocks_4_options_reverse','1'),(351363,42877,'_blocks_4_options_reverse','field_61768049bb8ac'),(351364,42877,'blocks_4_options',''),(351365,42877,'_blocks_4_options','field_617682517c334'),(351366,42877,'blocks_4_split_5050_image','41330'),(351367,42877,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(351368,42877,'blocks_4_split_5050_video',''),(351369,42877,'_blocks_4_split_5050_video','field_6239f3160848a'),(351370,42877,'blocks_4_split_5050_content_title','Course Overview:'),(351371,42877,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(351372,42877,'blocks_4_split_5050_content_heading','Diploma in Biomechanics Coaching'),(351373,42877,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(351374,42877,'blocks_4_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.'),(351375,42877,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(351376,42877,'blocks_4_split_5050_content_actions',''),(351377,42877,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(351378,42877,'blocks_4_split_5050_content',''),(351379,42877,'_blocks_4_split_5050_content','field_61767afceb8ba'),(351380,42877,'blocks_5_acfe_flexible_toggle',''),(351381,42877,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351382,42877,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(351383,42877,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351384,42877,'blocks_5_options_theme','#f5f5f5'),(351385,42877,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(351386,42877,'blocks_5_options_reverse','0'),(351387,42877,'_blocks_5_options_reverse','field_61768049bb8ac'),(351388,42877,'blocks_5_options',''),(351389,42877,'_blocks_5_options','field_617682517c334'),(351390,42877,'blocks_5_split_5050_image','40503'),(351391,42877,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(351392,42877,'blocks_5_split_5050_video',''),(351393,42877,'_blocks_5_split_5050_video','field_6239f3160848a'),(351394,42877,'blocks_5_split_5050_content_title',''),(351395,42877,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(351396,42877,'blocks_5_split_5050_content_heading',''),(351397,42877,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(351398,42877,'blocks_5_split_5050_content_text','While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(351399,42877,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(351400,42877,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(351401,42877,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(351402,42877,'blocks_5_split_5050_content_actions','1'),(351403,42877,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(351404,42877,'blocks_5_split_5050_content',''),(351405,42877,'_blocks_5_split_5050_content','field_61767afceb8ba'),(351406,42877,'blocks_6_acfe_flexible_toggle',''),(351407,42877,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(351408,42877,'blocks_6_acfe_flexible_layout_title','Quote'),(351409,42877,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(351410,42877,'blocks_6_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(351411,42877,'_blocks_6_quote_content','field_6177cdacdd67a'),(351412,42877,'blocks_6_quote_author','Alex Carter, Certified Biomechanics Coach'),(351413,42877,'_blocks_6_quote_author','field_6177cdc6dd67b'),(351414,42877,'blocks_7_acfe_flexible_toggle',''),(351415,42877,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(351416,42877,'blocks_7_acfe_flexible_layout_title','Timeline'),(351417,42877,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(351418,42877,'blocks_7_options_theme','#ffffff'),(351419,42877,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(351420,42877,'blocks_7_options',''),(351421,42877,'_blocks_7_options','field_6177de53d1195'),(351422,42877,'blocks_7_timeline_content_title',''),(351423,42877,'_blocks_7_timeline_content_title','field_6177de53d1198'),(351424,42877,'blocks_7_timeline_content_heading','Why choose Biomechanics Education?'),(351425,42877,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(351426,42877,'blocks_7_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients - from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and certification provide the tools you need to succeed.'),(351427,42877,'_blocks_7_timeline_content_text','field_6177de53d119a'),(351428,42877,'blocks_7_timeline_content_actions',''),(351429,42877,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(351430,42877,'blocks_7_timeline_content',''),(351431,42877,'_blocks_7_timeline_content','field_6177de53d1197'),(351432,42877,'blocks_7_timeline_items_0_title','Industry-Leading Expertise'),(351433,42877,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(351434,42877,'blocks_7_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(351435,42877,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(351436,42877,'blocks_7_timeline_items_1_title','Global Accessibility'),(351437,42877,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(351438,42877,'blocks_7_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(351439,42877,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(351440,42877,'blocks_7_timeline_items_2_title','Internationally Applicable Certification'),(351441,42877,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(351442,42877,'blocks_7_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(351443,42877,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(351444,42877,'blocks_7_timeline_items_3_title','Career Opportunities Worldwide'),(351445,42877,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(351446,42877,'blocks_7_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(351447,42877,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(351448,42877,'blocks_7_timeline_items','4'),(351449,42877,'_blocks_7_timeline_items','field_6177de53d119d'),(351450,42877,'blocks_8_acfe_flexible_toggle',''),(351451,42877,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351452,42877,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(351453,42877,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351454,42877,'blocks_8_options_theme','#ffffff'),(351455,42877,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(351456,42877,'blocks_8_options_reverse','0'),(351457,42877,'_blocks_8_options_reverse','field_61768049bb8ac'),(351458,42877,'blocks_8_options',''),(351459,42877,'_blocks_8_options','field_617682517c334'),(351460,42877,'blocks_8_split_5050_image','41300'),(351461,42877,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(351462,42877,'blocks_8_split_5050_video',''),(351463,42877,'_blocks_8_split_5050_video','field_6239f3160848a'),(351464,42877,'blocks_8_split_5050_content_title',''),(351465,42877,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(351466,42877,'blocks_8_split_5050_content_heading','International Support & Learning Experience'),(351467,42877,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(351468,42877,'blocks_8_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(351469,42877,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(351470,42877,'blocks_8_split_5050_content_actions',''),(351471,42877,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(351472,42877,'blocks_8_split_5050_content',''),(351473,42877,'_blocks_8_split_5050_content','field_61767afceb8ba'),(351474,42877,'blocks_9_acfe_flexible_toggle',''),(351475,42877,'_blocks_9_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(351476,42877,'blocks_9_acfe_flexible_layout_title','Contact Us[anchor]'),(351477,42877,'_blocks_9_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(351478,42877,'blocks_9_row_content_format','standard'),(351479,42877,'_blocks_9_row_content_format','field_6481ead962881'),(351480,42877,'blocks_9_row_content_title',''),(351481,42877,'_blocks_9_row_content_title','field_61a0f5f5b3db1'),(351482,42877,'blocks_9_row_content_heading','Contact Us Today'),(351483,42877,'_blocks_9_row_content_heading','field_61a0f5f5b3db2'),(351484,42877,'blocks_9_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(351485,42877,'_blocks_9_row_content_text','field_61a0f5f5b3db3'),(351486,42877,'blocks_9_row_content_actions',''),(351487,42877,'_blocks_9_row_content_actions','field_61a0f5f5b3db4'),(351488,42877,'blocks_9_row_content',''),(351489,42877,'_blocks_9_row_content','field_61a0f5f5b3db0'),(351490,42877,'blocks_9_row_form','42449'),(351491,42877,'_blocks_9_row_form','field_61a4ff2c0b08e'),(351492,42877,'blocks_9_row_form_button_label',''),(351493,42877,'_blocks_9_row_form_button_label','field_61e12cf6fe412'),(351494,42877,'blocks_10_acfe_flexible_toggle',''),(351495,42877,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(351496,42877,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(351497,42877,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(351498,42877,'blocks_10_options_theme','#ffffff'),(351499,42877,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(351500,42877,'blocks_10_options_state','0'),(351501,42877,'_blocks_10_options_state','field_6239fcb7508c5'),(351502,42877,'blocks_10_options',''),(351503,42877,'_blocks_10_options','field_6177e2991ac44'),(351504,42877,'blocks_10_content_title',''),(351505,42877,'_blocks_10_content_title','field_64d237e8bb1e2'),(351506,42877,'blocks_10_content_heading','FAQs'),(351507,42877,'_blocks_10_content_heading','field_64d237e8bb1e3'),(351508,42877,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(351509,42877,'_blocks_10_content_text','field_64d237e8bb1e4'),(351510,42877,'blocks_10_content_actions',''),(351511,42877,'_blocks_10_content_actions','field_64d237e8bb1e5'),(351512,42877,'blocks_10_content_align','left'),(351513,42877,'_blocks_10_content_align','field_64d2443e6b6aa'),(351514,42877,'blocks_10_content',''),(351515,42877,'_blocks_10_content','field_64d237e8bb1e1'),(351516,42877,'blocks_10_accordion_content','custom'),(351517,42877,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(351518,42877,'blocks_10_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(351519,42877,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(351520,42877,'blocks_10_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(351521,42877,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(351522,42877,'blocks_10_accordion_items_1_title','What are the study options for international students?'),(351523,42877,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(351524,42877,'blocks_10_accordion_items_1_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(351525,42877,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(351526,42877,'blocks_10_accordion_items_2_title','Who is this course suitable for?'),(351527,42877,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(351528,42877,'blocks_10_accordion_items_2_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(351529,42877,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(351530,42877,'blocks_10_accordion_items_3_title','What are the next steps to get started?'),(351531,42877,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(351532,42877,'blocks_10_accordion_items_3_text','Fill out our enquiry form or give us a call and we can guide you through the process, wherever you are in the world.'),(351533,42877,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(351534,42877,'blocks_10_accordion_items','4'),(351535,42877,'_blocks_10_accordion_items','field_6177e2991ac4c'),(351536,42877,'blocks_10_actions',''),(351537,42877,'_blocks_10_actions','field_61a746a817f7a'),(351538,42878,'hide_hero','0'),(351539,42878,'_hide_hero','field_66a2380fcda39'),(351540,42878,'fft_hide_from_listings','0'),(351541,42878,'_fft_hide_from_listings','field_61f1320446ab2'),(351542,42878,'fft_page_format','default'),(351543,42878,'_fft_page_format','field_61ae213f1f218'),(351544,42878,'fft_hide_nav','0'),(351545,42878,'_fft_hide_nav','field_635bd5e43527c'),(351546,42878,'fft_hide_header_call_to_action','0'),(351547,42878,'_fft_hide_header_call_to_action','field_635bd6723527d'),(351548,42878,'fft_page_sitemap','0'),(351549,42878,'_fft_page_sitemap','field_61af9b34e8181'),(351550,42878,'blocks','a:11:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:5:\"quote\";i:7;s:13:\"step_timeline\";i:8;s:10:\"split_5050\";i:9;s:4:\"form\";i:10;s:10:\"accordions\";}'),(351551,42878,'_blocks','field_6176696113096'),(351552,42878,'hero_title',''),(351553,42878,'_hero_title','field_617571fe285e8'),(351554,42878,'hero_text',''),(351555,42878,'_hero_text','field_6175723c285e9'),(351556,42878,'hero_actions','1'),(351557,42878,'_hero_actions','field_61757270285ea'),(351558,42878,'hero_style','default'),(351559,42878,'_hero_style','field_62051d9dc5324'),(351560,42878,'hero_image_pos_x','right'),(351561,42878,'_hero_image_pos_x','field_62ec3d05390bb'),(351562,42878,'hero_image_pos_y','top'),(351563,42878,'_hero_image_pos_y','field_62ec3d05390bc'),(351564,42878,'hero_image_pos',''),(351565,42878,'_hero_image_pos','field_62ec3d05390ba'),(351566,42878,'blocks_0_acfe_flexible_toggle',''),(351567,42878,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351568,42878,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(351569,42878,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351570,42878,'blocks_0_options_theme','#ffffff'),(351571,42878,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(351572,42878,'blocks_0_options_reverse','0'),(351573,42878,'_blocks_0_options_reverse','field_61768049bb8ac'),(351574,42878,'blocks_0_options',''),(351575,42878,'_blocks_0_options','field_617682517c334'),(351576,42878,'blocks_0_split_5050_image','40848'),(351577,42878,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(351578,42878,'blocks_0_split_5050_video',''),(351579,42878,'_blocks_0_split_5050_video','field_6239f3160848a'),(351580,42878,'blocks_0_split_5050_content_title','Biomechanics Education'),(351581,42878,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(351582,42878,'blocks_0_split_5050_content_heading','International Training and Courses'),(351583,42878,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(351584,42878,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re an exercise professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health, exercise and wellness to rehabilitation and performance coaching.'),(351585,42878,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(351586,42878,'blocks_0_split_5050_content_actions','1'),(351587,42878,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(351588,42878,'blocks_0_split_5050_content',''),(351589,42878,'_blocks_0_split_5050_content','field_61767afceb8ba'),(351590,42878,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(351591,42878,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(351592,42878,'blocks_1_acfe_flexible_toggle',''),(351593,42878,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351594,42878,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(351595,42878,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351596,42878,'blocks_1_options_theme','#ffffff'),(351597,42878,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(351598,42878,'blocks_1_options_reverse','1'),(351599,42878,'_blocks_1_options_reverse','field_61768049bb8ac'),(351600,42878,'blocks_1_options',''),(351601,42878,'_blocks_1_options','field_617682517c334'),(351602,42878,'blocks_1_split_5050_image','41312'),(351603,42878,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(351604,42878,'blocks_1_split_5050_video',''),(351605,42878,'_blocks_1_split_5050_video','field_6239f3160848a'),(351606,42878,'blocks_1_split_5050_content_title','Become a Biomechanics Coach'),(351607,42878,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(351608,42878,'blocks_1_split_5050_content_heading','International Coaching Programmes'),(351609,42878,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(351610,42878,'blocks_1_split_5050_content_text','Our internationally renowned coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nCourses are blended for in-person and through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally renowned certification to boost career opportunities</li>\r\n 	<li>Learn from leading experts in biomechanics with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(351611,42878,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(351612,42878,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(351613,42878,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(351614,42878,'blocks_1_split_5050_content_actions','1'),(351615,42878,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(351616,42878,'blocks_1_split_5050_content',''),(351617,42878,'_blocks_1_split_5050_content','field_61767afceb8ba'),(351618,42878,'_thumbnail_id','40818'),(351619,42878,'__thumbnail_id','field_617570855ddaf'),(351620,42878,'blocks_2_acfe_flexible_toggle',''),(351621,42878,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(351622,42878,'blocks_2_acfe_flexible_layout_title','Video'),(351623,42878,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(351624,42878,'blocks_2_size','large'),(351625,42878,'_blocks_2_size','field_6487038f297c1'),(351626,42878,'blocks_2_row_content_title',''),(351627,42878,'_blocks_2_row_content_title','field_64870132a865d'),(351628,42878,'blocks_2_row_content_heading','Coaching the World to Move Better'),(351629,42878,'_blocks_2_row_content_heading','field_64870142a865e'),(351630,42878,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(351631,42878,'_blocks_2_row_content_text','field_64870148a865f'),(351632,42878,'blocks_2_row_content',''),(351633,42878,'_blocks_2_row_content','field_6487008ba865c'),(351634,42878,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(351635,42878,'_blocks_2_video_src','field_6193c4a98ec07'),(351636,42878,'blocks_2_video_thumbnail',''),(351637,42878,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(351638,42878,'blocks_3_acfe_flexible_toggle',''),(351639,42878,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(351640,42878,'blocks_3_acfe_flexible_layout_title','Text Block'),(351641,42878,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(351642,42878,'blocks_3_options_theme','#f5f5f5'),(351643,42878,'_blocks_3_options_theme','field_6176830e2ad17'),(351644,42878,'blocks_3_options',''),(351645,42878,'_blocks_3_options','field_6176830e2ad16'),(351646,42878,'blocks_3_text_block_heading','Our Industry Defining Diploma:'),(351647,42878,'_blocks_3_text_block_heading','field_617669d413097'),(351648,42878,'blocks_3_text_block_content',''),(351649,42878,'_blocks_3_text_block_content','field_617669ec13098'),(351650,42878,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(351651,42878,'_hero_actions_0_button','field_61757281285eb'),(351652,42878,'blocks_4_acfe_flexible_toggle',''),(351653,42878,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351654,42878,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(351655,42878,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351656,42878,'blocks_4_options_theme','#f5f5f5'),(351657,42878,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(351658,42878,'blocks_4_options_reverse','1'),(351659,42878,'_blocks_4_options_reverse','field_61768049bb8ac'),(351660,42878,'blocks_4_options',''),(351661,42878,'_blocks_4_options','field_617682517c334'),(351662,42878,'blocks_4_split_5050_image','41330'),(351663,42878,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(351664,42878,'blocks_4_split_5050_video',''),(351665,42878,'_blocks_4_split_5050_video','field_6239f3160848a'),(351666,42878,'blocks_4_split_5050_content_title','Course Overview:'),(351667,42878,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(351668,42878,'blocks_4_split_5050_content_heading','Diploma in Biomechanics Coaching'),(351669,42878,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(351670,42878,'blocks_4_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.'),(351671,42878,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(351672,42878,'blocks_4_split_5050_content_actions',''),(351673,42878,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(351674,42878,'blocks_4_split_5050_content',''),(351675,42878,'_blocks_4_split_5050_content','field_61767afceb8ba'),(351676,42878,'blocks_5_acfe_flexible_toggle',''),(351677,42878,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351678,42878,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(351679,42878,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351680,42878,'blocks_5_options_theme','#f5f5f5'),(351681,42878,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(351682,42878,'blocks_5_options_reverse','0'),(351683,42878,'_blocks_5_options_reverse','field_61768049bb8ac'),(351684,42878,'blocks_5_options',''),(351685,42878,'_blocks_5_options','field_617682517c334'),(351686,42878,'blocks_5_split_5050_image','40503'),(351687,42878,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(351688,42878,'blocks_5_split_5050_video',''),(351689,42878,'_blocks_5_split_5050_video','field_6239f3160848a'),(351690,42878,'blocks_5_split_5050_content_title',''),(351691,42878,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(351692,42878,'blocks_5_split_5050_content_heading',''),(351693,42878,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(351694,42878,'blocks_5_split_5050_content_text','While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(351695,42878,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(351696,42878,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(351697,42878,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(351698,42878,'blocks_5_split_5050_content_actions','1'),(351699,42878,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(351700,42878,'blocks_5_split_5050_content',''),(351701,42878,'_blocks_5_split_5050_content','field_61767afceb8ba'),(351702,42878,'blocks_6_acfe_flexible_toggle',''),(351703,42878,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(351704,42878,'blocks_6_acfe_flexible_layout_title','Quote'),(351705,42878,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(351706,42878,'blocks_6_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(351707,42878,'_blocks_6_quote_content','field_6177cdacdd67a'),(351708,42878,'blocks_6_quote_author','Alex Carter, Certified Biomechanics Coach'),(351709,42878,'_blocks_6_quote_author','field_6177cdc6dd67b'),(351710,42878,'blocks_7_acfe_flexible_toggle',''),(351711,42878,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(351712,42878,'blocks_7_acfe_flexible_layout_title','Timeline'),(351713,42878,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(351714,42878,'blocks_7_options_theme','#ffffff'),(351715,42878,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(351716,42878,'blocks_7_options',''),(351717,42878,'_blocks_7_options','field_6177de53d1195'),(351718,42878,'blocks_7_timeline_content_title',''),(351719,42878,'_blocks_7_timeline_content_title','field_6177de53d1198'),(351720,42878,'blocks_7_timeline_content_heading','Why choose Biomechanics Education?'),(351721,42878,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(351722,42878,'blocks_7_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients - from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and certification provide the tools you need to succeed.'),(351723,42878,'_blocks_7_timeline_content_text','field_6177de53d119a'),(351724,42878,'blocks_7_timeline_content_actions',''),(351725,42878,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(351726,42878,'blocks_7_timeline_content',''),(351727,42878,'_blocks_7_timeline_content','field_6177de53d1197'),(351728,42878,'blocks_7_timeline_items_0_title','Industry-Leading Expertise'),(351729,42878,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(351730,42878,'blocks_7_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(351731,42878,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(351732,42878,'blocks_7_timeline_items_1_title','Global Accessibility'),(351733,42878,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(351734,42878,'blocks_7_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(351735,42878,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(351736,42878,'blocks_7_timeline_items_2_title','Internationally Applicable Certification'),(351737,42878,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(351738,42878,'blocks_7_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(351739,42878,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(351740,42878,'blocks_7_timeline_items_3_title','Career Opportunities Worldwide'),(351741,42878,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(351742,42878,'blocks_7_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(351743,42878,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(351744,42878,'blocks_7_timeline_items','4'),(351745,42878,'_blocks_7_timeline_items','field_6177de53d119d'),(351746,42878,'blocks_8_acfe_flexible_toggle',''),(351747,42878,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(351748,42878,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(351749,42878,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(351750,42878,'blocks_8_options_theme','#ffffff'),(351751,42878,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(351752,42878,'blocks_8_options_reverse','0'),(351753,42878,'_blocks_8_options_reverse','field_61768049bb8ac'),(351754,42878,'blocks_8_options',''),(351755,42878,'_blocks_8_options','field_617682517c334'),(351756,42878,'blocks_8_split_5050_image','41300'),(351757,42878,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(351758,42878,'blocks_8_split_5050_video',''),(351759,42878,'_blocks_8_split_5050_video','field_6239f3160848a'),(351760,42878,'blocks_8_split_5050_content_title',''),(351761,42878,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(351762,42878,'blocks_8_split_5050_content_heading','International Support & Learning Experience'),(351763,42878,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(351764,42878,'blocks_8_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(351765,42878,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(351766,42878,'blocks_8_split_5050_content_actions',''),(351767,42878,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(351768,42878,'blocks_8_split_5050_content',''),(351769,42878,'_blocks_8_split_5050_content','field_61767afceb8ba'),(351770,42878,'blocks_9_acfe_flexible_toggle',''),(351771,42878,'_blocks_9_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(351772,42878,'blocks_9_acfe_flexible_layout_title','Contact Us[anchor]'),(351773,42878,'_blocks_9_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(351774,42878,'blocks_9_row_content_format','standard'),(351775,42878,'_blocks_9_row_content_format','field_6481ead962881'),(351776,42878,'blocks_9_row_content_title',''),(351777,42878,'_blocks_9_row_content_title','field_61a0f5f5b3db1'),(351778,42878,'blocks_9_row_content_heading','Contact Us Today'),(351779,42878,'_blocks_9_row_content_heading','field_61a0f5f5b3db2'),(351780,42878,'blocks_9_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(351781,42878,'_blocks_9_row_content_text','field_61a0f5f5b3db3'),(351782,42878,'blocks_9_row_content_actions',''),(351783,42878,'_blocks_9_row_content_actions','field_61a0f5f5b3db4'),(351784,42878,'blocks_9_row_content',''),(351785,42878,'_blocks_9_row_content','field_61a0f5f5b3db0'),(351786,42878,'blocks_9_row_form','42449'),(351787,42878,'_blocks_9_row_form','field_61a4ff2c0b08e'),(351788,42878,'blocks_9_row_form_button_label',''),(351789,42878,'_blocks_9_row_form_button_label','field_61e12cf6fe412'),(351790,42878,'blocks_10_acfe_flexible_toggle',''),(351791,42878,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(351792,42878,'blocks_10_acfe_flexible_layout_title','Accordions / FAQs'),(351793,42878,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(351794,42878,'blocks_10_options_theme','#ffffff'),(351795,42878,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(351796,42878,'blocks_10_options_state','0'),(351797,42878,'_blocks_10_options_state','field_6239fcb7508c5'),(351798,42878,'blocks_10_options',''),(351799,42878,'_blocks_10_options','field_6177e2991ac44'),(351800,42878,'blocks_10_content_title',''),(351801,42878,'_blocks_10_content_title','field_64d237e8bb1e2'),(351802,42878,'blocks_10_content_heading','FAQs'),(351803,42878,'_blocks_10_content_heading','field_64d237e8bb1e3'),(351804,42878,'blocks_10_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(351805,42878,'_blocks_10_content_text','field_64d237e8bb1e4'),(351806,42878,'blocks_10_content_actions',''),(351807,42878,'_blocks_10_content_actions','field_64d237e8bb1e5'),(351808,42878,'blocks_10_content_align','left'),(351809,42878,'_blocks_10_content_align','field_64d2443e6b6aa'),(351810,42878,'blocks_10_content',''),(351811,42878,'_blocks_10_content','field_64d237e8bb1e1'),(351812,42878,'blocks_10_accordion_content','custom'),(351813,42878,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(351814,42878,'blocks_10_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(351815,42878,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(351816,42878,'blocks_10_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(351817,42878,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(351818,42878,'blocks_10_accordion_items_1_title','What are the study options for international students?'),(351819,42878,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(351820,42878,'blocks_10_accordion_items_1_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(351821,42878,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(351822,42878,'blocks_10_accordion_items_2_title','Who is this course suitable for?'),(351823,42878,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(351824,42878,'blocks_10_accordion_items_2_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(351825,42878,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(351826,42878,'blocks_10_accordion_items_3_title','What are the next steps to get started?'),(351827,42878,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(351828,42878,'blocks_10_accordion_items_3_text','Fill out our enquiry form or give us a call and we can guide you through the process, wherever you are in the world.'),(351829,42878,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(351830,42878,'blocks_10_accordion_items','4'),(351831,42878,'_blocks_10_accordion_items','field_6177e2991ac4c'),(351832,42878,'blocks_10_actions',''),(351833,42878,'_blocks_10_actions','field_61a746a817f7a'),(351834,42880,'_menu_item_type','post_type'),(351835,42880,'_menu_item_menu_item_parent','39281'),(351836,42880,'_menu_item_object_id','42536'),(351837,42880,'_menu_item_object','page'),(351838,42880,'_menu_item_target',''),(351839,42880,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(351840,42880,'_menu_item_xfn',''),(351841,42880,'_menu_item_url',''),(351843,42880,'menu_item_card_image',''),(351844,42880,'_menu_item_card_image','field_618cf50fb8716'),(351845,42880,'menu_item_card_title',''),(351846,42880,'_menu_item_card_title','field_618cf51cb8717'),(351847,42880,'menu_item_card_text',''),(351848,42880,'_menu_item_card_text','field_618cf521b8718'),(351849,42880,'menu_item_card_link',''),(351850,42880,'_menu_item_card_link','field_618cf52eb8719'),(351851,42880,'menu_item_card',''),(351852,42880,'_menu_item_card','field_618cf506b8715'),(351853,39278,'_wp_old_date','2025-03-05'),(351854,40906,'_wp_old_date','2025-03-05'),(351855,40858,'_wp_old_date','2025-03-05'),(351856,41573,'_wp_old_date','2025-03-05'),(351857,41574,'_wp_old_date','2025-03-05'),(351858,41576,'_wp_old_date','2025-03-05'),(351859,41575,'_wp_old_date','2025-03-05'),(351860,39348,'_wp_old_date','2025-03-05'),(351861,39486,'_wp_old_date','2025-03-05'),(351862,39485,'_wp_old_date','2025-03-05'),(351863,39487,'_wp_old_date','2025-03-05'),(351864,39279,'_wp_old_date','2025-03-05'),(351865,39325,'_wp_old_date','2025-03-05'),(351866,39324,'_wp_old_date','2025-03-05'),(351867,39323,'_wp_old_date','2025-03-05'),(351868,39322,'_wp_old_date','2025-03-05'),(351869,39321,'_wp_old_date','2025-03-05'),(351870,39320,'_wp_old_date','2025-03-05'),(351871,39319,'_wp_old_date','2025-03-05'),(351872,39281,'_wp_old_date','2025-03-05'),(351873,39344,'_wp_old_date','2025-03-05'),(351874,39318,'_wp_old_date','2025-03-05'),(351875,39522,'_wp_old_date','2025-03-05'),(351876,41605,'_wp_old_date','2025-03-05'),(351877,42484,'_wp_old_date','2025-03-05'),(351878,41286,'_wp_old_date','2025-03-05'),(351879,39280,'_wp_old_date','2025-03-05'),(351880,42883,'hero_style','default'),(351881,42883,'_hero_style','field_62051d9dc5324'),(351882,42883,'hero_image_pos_x','right'),(351883,42883,'_hero_image_pos_x','field_62ec3d05390bb'),(351884,42883,'hero_image_pos_y','top'),(351885,42883,'_hero_image_pos_y','field_62ec3d05390bc'),(351886,42883,'hero_image_pos',''),(351887,42883,'_hero_image_pos','field_62ec3d05390ba'),(351888,42883,'hero_title','Biomechanics Education'),(351889,42883,'_hero_title','field_617571fe285e8'),(351890,42883,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(351891,42883,'_hero_text','field_6175723c285e9'),(351892,42883,'hero_actions','1'),(351893,42883,'_hero_actions','field_61757270285ea'),(351894,42883,'hero_icon',''),(351895,42883,'_hero_icon','field_61a6182199d03'),(351896,42883,'fft_hide_from_listings','0'),(351897,42883,'_fft_hide_from_listings','field_61f1320446ab2'),(351898,42883,'fft_page_format','default'),(351899,42883,'_fft_page_format','field_61ae213f1f218'),(351900,42883,'fft_hide_nav','0'),(351901,42883,'_fft_hide_nav','field_635bd5e43527c'),(351902,42883,'fft_hide_header_call_to_action','0'),(351903,42883,'_fft_hide_header_call_to_action','field_635bd6723527d'),(351904,42883,'fft_page_sitemap','0'),(351905,42883,'_fft_page_sitemap','field_61af9b34e8181'),(351906,42883,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:5:\"video\";i:7;s:5:\"quote\";i:8;s:8:\"template\";}'),(351907,42883,'_blocks','field_6176696113096'),(351908,42883,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:13:\"#introduction\";s:6:\"target\";s:0:\"\";}'),(351909,42883,'_hero_actions_0_button','field_61757281285eb'),(351910,42883,'_thumbnail_id','38951'),(351911,42883,'__thumbnail_id','field_617570855ddaf'),(351912,42883,'hide_hero','0'),(351913,42883,'_hide_hero','field_66a2380fcda39'),(351914,42883,'blocks_3_acfe_flexible_toggle',''),(351915,42883,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(351916,42883,'blocks_3_acfe_flexible_layout_title','Text Block'),(351917,42883,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(351918,42883,'blocks_3_options_theme','#ffffff'),(351919,42883,'_blocks_3_options_theme','field_6176830e2ad17'),(351920,42883,'blocks_3_options',''),(351921,42883,'_blocks_3_options','field_6176830e2ad16'),(351922,42883,'blocks_3_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines '),(351923,42883,'_blocks_3_text_block_heading','field_617669d413097'),(351924,42883,'blocks_3_text_block_content',''),(351925,42883,'_blocks_3_text_block_content','field_617669ec13098'),(351926,42883,'blocks_4_acfe_flexible_toggle',''),(351927,42883,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(351928,42883,'blocks_4_acfe_flexible_layout_title','Cards'),(351929,42883,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(351930,42883,'blocks_4_options_theme','#ffffff'),(351931,42883,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(351932,42883,'blocks_4_options_format','carousel'),(351933,42883,'_blocks_4_options_format','field_617a7b15245b5'),(351934,42883,'blocks_4_options_style','default'),(351935,42883,'_blocks_4_options_style','field_6278ffb63484a'),(351936,42883,'blocks_4_options_cards_current_listing','0'),(351937,42883,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(351938,42883,'blocks_4_options_cards_content','custom'),(351939,42883,'_blocks_4_options_cards_content','field_617aba6122688'),(351940,42883,'blocks_4_options',''),(351941,42883,'_blocks_4_options','field_617a7b15245b3'),(351942,42883,'blocks_4_cards_custom_0_image','39215'),(351943,42883,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(351944,42883,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(351945,42883,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(351946,42883,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(351947,42883,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(351948,42883,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(351949,42883,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(351950,42883,'blocks_4_cards_custom_1_image','39243'),(351951,42883,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(351952,42883,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(351953,42883,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(351954,42883,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(351955,42883,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(351956,42883,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(351957,42883,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(351958,42883,'blocks_4_cards_custom_2_image','39247'),(351959,42883,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(351960,42883,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(351961,42883,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(351962,42883,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(351963,42883,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(351964,42883,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(351965,42883,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(351966,42883,'blocks_4_cards_custom_3_image','39256'),(351967,42883,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(351968,42883,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(351969,42883,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(351970,42883,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(351971,42883,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(351972,42883,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(351973,42883,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(351974,42883,'blocks_4_cards_custom_4_image','39251'),(351975,42883,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(351976,42883,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(351977,42883,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(351978,42883,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(351979,42883,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(351980,42883,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(351981,42883,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(351982,42883,'blocks_4_cards_custom_5_image','39240'),(351983,42883,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(351984,42883,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(351985,42883,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(351986,42883,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(351987,42883,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(351988,42883,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(351989,42883,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(351990,42883,'blocks_4_cards_custom_6_image','39454'),(351991,42883,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(351992,42883,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(351993,42883,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(351994,42883,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(351995,42883,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(351996,42883,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(351997,42883,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(351998,42883,'blocks_4_cards_custom','7'),(351999,42883,'_blocks_4_cards_custom','field_6194cbf84d386'),(352000,42883,'blocks_5_acfe_flexible_toggle',''),(352001,42883,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(352002,42883,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(352003,42883,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(352004,42883,'blocks_5_options_theme','#f5f5f5'),(352005,42883,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(352006,42883,'blocks_5_options_reverse','1'),(352007,42883,'_blocks_5_options_reverse','field_61768049bb8ac'),(352008,42883,'blocks_5_options',''),(352009,42883,'_blocks_5_options','field_617682517c334'),(352010,42883,'blocks_5_split_5050_image','38960'),(352011,42883,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(352012,42883,'blocks_5_split_5050_video',''),(352013,42883,'_blocks_5_split_5050_video','field_6239f3160848a'),(352014,42883,'blocks_5_split_5050_content_title',''),(352015,42883,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(352016,42883,'blocks_5_split_5050_content_heading','Biomechanics Education & Future Fit'),(352017,42883,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(352018,42883,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(352019,42883,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(352020,42883,'blocks_5_split_5050_content_actions','1'),(352021,42883,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(352022,42883,'blocks_5_split_5050_content',''),(352023,42883,'_blocks_5_split_5050_content','field_61767afceb8ba'),(352024,42883,'blocks_1_acfe_flexible_toggle',''),(352025,42883,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(352026,42883,'blocks_1_acfe_flexible_layout_title','Introduction[anchor]'),(352027,42883,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(352028,42883,'blocks_1_size','large'),(352029,42883,'_blocks_1_size','field_6487038f297c1'),(352030,42883,'blocks_1_row_content_title',''),(352031,42883,'_blocks_1_row_content_title','field_64870132a865d'),(352032,42883,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(352033,42883,'_blocks_1_row_content_heading','field_64870142a865e'),(352034,42883,'blocks_1_row_content_text',''),(352035,42883,'_blocks_1_row_content_text','field_64870148a865f'),(352036,42883,'blocks_1_row_content',''),(352037,42883,'_blocks_1_row_content','field_6487008ba865c'),(352038,42883,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(352039,42883,'_blocks_1_video_src','field_6193c4a98ec07'),(352040,42883,'blocks_1_video_thumbnail','39175'),(352041,42883,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(352042,42883,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(352043,42883,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(352044,42883,'blocks_0_acfe_flexible_toggle',''),(352045,42883,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(352046,42883,'blocks_0_acfe_flexible_layout_title','Template'),(352047,42883,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(352048,42883,'blocks_0_template','39087'),(352049,42883,'_blocks_0_template','field_617bdd570fe01'),(352050,42883,'blocks_2_acfe_flexible_toggle',''),(352051,42883,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(352052,42883,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(352053,42883,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(352054,42883,'blocks_2_options_theme','#b61234'),(352055,42883,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(352056,42883,'blocks_2_options_reverse','0'),(352057,42883,'_blocks_2_options_reverse','field_61768049bb8ac'),(352058,42883,'blocks_2_options',''),(352059,42883,'_blocks_2_options','field_617682517c334'),(352060,42883,'blocks_2_split_5050_image',''),(352061,42883,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(352062,42883,'blocks_2_split_5050_video','https://www.youtube.com/watch?v=x_yYzgAqcbY'),(352063,42883,'_blocks_2_split_5050_video','field_6239f3160848a'),(352064,42883,'blocks_2_split_5050_content_title',''),(352065,42883,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(352066,42883,'blocks_2_split_5050_content_heading','What is Biomechanics Education?'),(352067,42883,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(352068,42883,'blocks_2_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(352069,42883,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(352070,42883,'blocks_2_split_5050_content_actions',''),(352071,42883,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(352072,42883,'blocks_2_split_5050_content',''),(352073,42883,'_blocks_2_split_5050_content','field_61767afceb8ba'),(352074,42883,'blocks_6_acfe_flexible_toggle',''),(352075,42883,'_blocks_6_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(352076,42883,'blocks_6_acfe_flexible_layout_title','Video'),(352077,42883,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(352078,42883,'blocks_6_size','large'),(352079,42883,'_blocks_6_size','field_6487038f297c1'),(352080,42883,'blocks_6_row_content_title',''),(352081,42883,'_blocks_6_row_content_title','field_64870132a865d'),(352082,42883,'blocks_6_row_content_heading','Hear from our Learners'),(352083,42883,'_blocks_6_row_content_heading','field_64870142a865e'),(352084,42883,'blocks_6_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(352085,42883,'_blocks_6_row_content_text','field_64870148a865f'),(352086,42883,'blocks_6_row_content',''),(352087,42883,'_blocks_6_row_content','field_6487008ba865c'),(352088,42883,'blocks_6_video_src','https://www.youtube.com/watch?v=CAwcWfVzc1c'),(352089,42883,'_blocks_6_video_src','field_6193c4a98ec07'),(352090,42883,'blocks_6_video_thumbnail',''),(352091,42883,'_blocks_6_video_thumbnail','field_6193c4a08ec06'),(352092,42883,'blocks_7_acfe_flexible_toggle',''),(352093,42883,'_blocks_7_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(352094,42883,'blocks_7_acfe_flexible_layout_title','Quote'),(352095,42883,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(352096,42883,'blocks_7_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(352097,42883,'_blocks_7_quote_content','field_6177cdacdd67a'),(352098,42883,'blocks_7_quote_author','Sharon Clare, Body Coach Fitness'),(352099,42883,'_blocks_7_quote_author','field_6177cdc6dd67b'),(352100,42883,'blocks_8_acfe_flexible_toggle',''),(352101,42883,'_blocks_8_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(352102,42883,'blocks_8_acfe_flexible_layout_title','Template'),(352103,42883,'_blocks_8_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(352104,42883,'blocks_8_template','39207'),(352105,42883,'_blocks_8_template','field_617bdd570fe01'),(352106,42884,'hero_style','default'),(352107,42884,'_hero_style','field_62051d9dc5324'),(352108,42884,'hero_image_pos_x','right'),(352109,42884,'_hero_image_pos_x','field_62ec3d05390bb'),(352110,42884,'hero_image_pos_y','top'),(352111,42884,'_hero_image_pos_y','field_62ec3d05390bc'),(352112,42884,'hero_image_pos',''),(352113,42884,'_hero_image_pos','field_62ec3d05390ba'),(352114,42884,'hero_title','Biomechanics Education'),(352115,42884,'_hero_title','field_617571fe285e8'),(352116,42884,'hero_text','Elevate your career with Biomechanics Education: Unlock potential, master time, and expand opportunities.'),(352117,42884,'_hero_text','field_6175723c285e9'),(352118,42884,'hero_actions','1'),(352119,42884,'_hero_actions','field_61757270285ea'),(352120,42884,'hero_icon',''),(352121,42884,'_hero_icon','field_61a6182199d03'),(352122,42884,'fft_hide_from_listings','0'),(352123,42884,'_fft_hide_from_listings','field_61f1320446ab2'),(352124,42884,'fft_page_format','default'),(352125,42884,'_fft_page_format','field_61ae213f1f218'),(352126,42884,'fft_hide_nav','0'),(352127,42884,'_fft_hide_nav','field_635bd5e43527c'),(352128,42884,'fft_hide_header_call_to_action','0'),(352129,42884,'_fft_hide_header_call_to_action','field_635bd6723527d'),(352130,42884,'fft_page_sitemap','0'),(352131,42884,'_fft_page_sitemap','field_61af9b34e8181'),(352132,42884,'blocks','a:9:{i:0;s:8:\"template\";i:1;s:5:\"video\";i:2;s:10:\"split_5050\";i:3;s:10:\"text_block\";i:4;s:5:\"cards\";i:5;s:10:\"split_5050\";i:6;s:5:\"video\";i:7;s:5:\"quote\";i:8;s:8:\"template\";}'),(352133,42884,'_blocks','field_6176696113096'),(352134,42884,'hero_actions_0_button','a:3:{s:5:\"title\";s:13:\"Find Out More\";s:3:\"url\";s:13:\"#introduction\";s:6:\"target\";s:0:\"\";}'),(352135,42884,'_hero_actions_0_button','field_61757281285eb'),(352136,42884,'_thumbnail_id','38951'),(352137,42884,'__thumbnail_id','field_617570855ddaf'),(352138,42884,'hide_hero','0'),(352139,42884,'_hide_hero','field_66a2380fcda39'),(352140,42884,'blocks_3_acfe_flexible_toggle',''),(352141,42884,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(352142,42884,'blocks_3_acfe_flexible_layout_title','Text Block'),(352143,42884,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(352144,42884,'blocks_3_options_theme','#ffffff'),(352145,42884,'_blocks_3_options_theme','field_6176830e2ad17'),(352146,42884,'blocks_3_options',''),(352147,42884,'_blocks_3_options','field_6176830e2ad16'),(352148,42884,'blocks_3_text_block_heading','Learn About Biomechanics Coaching for Different Disciplines '),(352149,42884,'_blocks_3_text_block_heading','field_617669d413097'),(352150,42884,'blocks_3_text_block_content',''),(352151,42884,'_blocks_3_text_block_content','field_617669ec13098'),(352152,42884,'blocks_4_acfe_flexible_toggle',''),(352153,42884,'_blocks_4_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(352154,42884,'blocks_4_acfe_flexible_layout_title','Cards'),(352155,42884,'_blocks_4_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(352156,42884,'blocks_4_options_theme','#ffffff'),(352157,42884,'_blocks_4_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(352158,42884,'blocks_4_options_format','carousel'),(352159,42884,'_blocks_4_options_format','field_617a7b15245b5'),(352160,42884,'blocks_4_options_style','default'),(352161,42884,'_blocks_4_options_style','field_6278ffb63484a'),(352162,42884,'blocks_4_options_cards_current_listing','0'),(352163,42884,'_blocks_4_options_cards_current_listing','field_6193d7effb7a4'),(352164,42884,'blocks_4_options_cards_content','custom'),(352165,42884,'_blocks_4_options_cards_content','field_617aba6122688'),(352166,42884,'blocks_4_options',''),(352167,42884,'_blocks_4_options','field_617a7b15245b3'),(352168,42884,'blocks_4_cards_custom_0_image','39215'),(352169,42884,'_blocks_4_cards_custom_0_image','field_6194cc284d387'),(352170,42884,'blocks_4_cards_custom_0_title','Biomechanics and Personal Training'),(352171,42884,'_blocks_4_cards_custom_0_title','field_6194cc454d388'),(352172,42884,'blocks_4_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(352173,42884,'_blocks_4_cards_custom_0_text','field_6194cc4a4d389'),(352174,42884,'blocks_4_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(352175,42884,'_blocks_4_cards_custom_0_link','field_6194cc534d38a'),(352176,42884,'blocks_4_cards_custom_1_image','39243'),(352177,42884,'_blocks_4_cards_custom_1_image','field_6194cc284d387'),(352178,42884,'blocks_4_cards_custom_1_title','Biomechanics and Pilates'),(352179,42884,'_blocks_4_cards_custom_1_title','field_6194cc454d388'),(352180,42884,'blocks_4_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(352181,42884,'_blocks_4_cards_custom_1_text','field_6194cc4a4d389'),(352182,42884,'blocks_4_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(352183,42884,'_blocks_4_cards_custom_1_link','field_6194cc534d38a'),(352184,42884,'blocks_4_cards_custom_2_image','39247'),(352185,42884,'_blocks_4_cards_custom_2_image','field_6194cc284d387'),(352186,42884,'blocks_4_cards_custom_2_title','Biomechanics and Podiatrists'),(352187,42884,'_blocks_4_cards_custom_2_title','field_6194cc454d388'),(352188,42884,'blocks_4_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(352189,42884,'_blocks_4_cards_custom_2_text','field_6194cc4a4d389'),(352190,42884,'blocks_4_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(352191,42884,'_blocks_4_cards_custom_2_link','field_6194cc534d38a'),(352192,42884,'blocks_4_cards_custom_3_image','39256'),(352193,42884,'_blocks_4_cards_custom_3_image','field_6194cc284d387'),(352194,42884,'blocks_4_cards_custom_3_title','Biomechanics and S&C coaches'),(352195,42884,'_blocks_4_cards_custom_3_title','field_6194cc454d388'),(352196,42884,'blocks_4_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(352197,42884,'_blocks_4_cards_custom_3_text','field_6194cc4a4d389'),(352198,42884,'blocks_4_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(352199,42884,'_blocks_4_cards_custom_3_link','field_6194cc534d38a'),(352200,42884,'blocks_4_cards_custom_4_image','39251'),(352201,42884,'_blocks_4_cards_custom_4_image','field_6194cc284d387'),(352202,42884,'blocks_4_cards_custom_4_title','Biomechanics and Sports Coaches '),(352203,42884,'_blocks_4_cards_custom_4_title','field_6194cc454d388'),(352204,42884,'blocks_4_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(352205,42884,'_blocks_4_cards_custom_4_text','field_6194cc4a4d389'),(352206,42884,'blocks_4_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(352207,42884,'_blocks_4_cards_custom_4_link','field_6194cc534d38a'),(352208,42884,'blocks_4_cards_custom_5_image','39240'),(352209,42884,'_blocks_4_cards_custom_5_image','field_6194cc284d387'),(352210,42884,'blocks_4_cards_custom_5_title','Biomechanics and Sports Massage'),(352211,42884,'_blocks_4_cards_custom_5_title','field_6194cc454d388'),(352212,42884,'blocks_4_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(352213,42884,'_blocks_4_cards_custom_5_text','field_6194cc4a4d389'),(352214,42884,'blocks_4_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(352215,42884,'_blocks_4_cards_custom_5_link','field_6194cc534d38a'),(352216,42884,'blocks_4_cards_custom_6_image','39454'),(352217,42884,'_blocks_4_cards_custom_6_image','field_6194cc284d387'),(352218,42884,'blocks_4_cards_custom_6_title','How to Become a Biomechanics Coach'),(352219,42884,'_blocks_4_cards_custom_6_title','field_6194cc454d388'),(352220,42884,'blocks_4_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(352221,42884,'_blocks_4_cards_custom_6_text','field_6194cc4a4d389'),(352222,42884,'blocks_4_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(352223,42884,'_blocks_4_cards_custom_6_link','field_6194cc534d38a'),(352224,42884,'blocks_4_cards_custom','7'),(352225,42884,'_blocks_4_cards_custom','field_6194cbf84d386'),(352226,42884,'blocks_5_acfe_flexible_toggle',''),(352227,42884,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(352228,42884,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(352229,42884,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(352230,42884,'blocks_5_options_theme','#f5f5f5'),(352231,42884,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(352232,42884,'blocks_5_options_reverse','1'),(352233,42884,'_blocks_5_options_reverse','field_61768049bb8ac'),(352234,42884,'blocks_5_options',''),(352235,42884,'_blocks_5_options','field_617682517c334'),(352236,42884,'blocks_5_split_5050_image','38960'),(352237,42884,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(352238,42884,'blocks_5_split_5050_video',''),(352239,42884,'_blocks_5_split_5050_video','field_6239f3160848a'),(352240,42884,'blocks_5_split_5050_content_title',''),(352241,42884,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(352242,42884,'blocks_5_split_5050_content_heading','Biomechanics Education & Future Fit'),(352243,42884,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(352244,42884,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(352245,42884,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(352246,42884,'blocks_5_split_5050_content_actions','1'),(352247,42884,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(352248,42884,'blocks_5_split_5050_content',''),(352249,42884,'_blocks_5_split_5050_content','field_61767afceb8ba'),(352250,42884,'blocks_1_acfe_flexible_toggle',''),(352251,42884,'_blocks_1_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(352252,42884,'blocks_1_acfe_flexible_layout_title','Video'),(352253,42884,'_blocks_1_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(352254,42884,'blocks_1_size','large'),(352255,42884,'_blocks_1_size','field_6487038f297c1'),(352256,42884,'blocks_1_row_content_title',''),(352257,42884,'_blocks_1_row_content_title','field_64870132a865d'),(352258,42884,'blocks_1_row_content_heading','Welcome to Biomechanics Education'),(352259,42884,'_blocks_1_row_content_heading','field_64870142a865e'),(352260,42884,'blocks_1_row_content_text',''),(352261,42884,'_blocks_1_row_content_text','field_64870148a865f'),(352262,42884,'blocks_1_row_content',''),(352263,42884,'_blocks_1_row_content','field_6487008ba865c'),(352264,42884,'blocks_1_video_src','https://www.youtube.com/watch?v=xgRiAj1qEog'),(352265,42884,'_blocks_1_video_src','field_6193c4a98ec07'),(352266,42884,'blocks_1_video_thumbnail','39175'),(352267,42884,'_blocks_1_video_thumbnail','field_6193c4a08ec06'),(352268,42884,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(352269,42884,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(352270,42884,'blocks_0_acfe_flexible_toggle',''),(352271,42884,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(352272,42884,'blocks_0_acfe_flexible_layout_title','Template'),(352273,42884,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(352274,42884,'blocks_0_template','39087'),(352275,42884,'_blocks_0_template','field_617bdd570fe01'),(352276,42884,'blocks_2_acfe_flexible_toggle',''),(352277,42884,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(352278,42884,'blocks_2_acfe_flexible_layout_title','Introduction[anchor]'),(352279,42884,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(352280,42884,'blocks_2_options_theme','#b61234'),(352281,42884,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(352282,42884,'blocks_2_options_reverse','0'),(352283,42884,'_blocks_2_options_reverse','field_61768049bb8ac'),(352284,42884,'blocks_2_options',''),(352285,42884,'_blocks_2_options','field_617682517c334'),(352286,42884,'blocks_2_split_5050_image',''),(352287,42884,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(352288,42884,'blocks_2_split_5050_video','https://www.youtube.com/watch?v=x_yYzgAqcbY'),(352289,42884,'_blocks_2_split_5050_video','field_6239f3160848a'),(352290,42884,'blocks_2_split_5050_content_title',''),(352291,42884,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(352292,42884,'blocks_2_split_5050_content_heading','What is Biomechanics Education?'),(352293,42884,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(352294,42884,'blocks_2_split_5050_content_text','Unlock a profound understanding of human movement and intrinsic biomechanics with Biomechanics Education. Our evidence-based MSK assessment system reduces risk and enhances performance, equipping you with anatomical language for professional discussions. Discover the \"Missing Link\" for guaranteed results, pinpointing the root causes of your client\'s limitations and discomfort. Take home effective movement techniques to swiftly improve their abilities and boost your programming confidence. Master simple movement principles that significantly elevate your clients\' quality of life. Join us and transform your approach to training today.'),(352295,42884,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(352296,42884,'blocks_2_split_5050_content_actions',''),(352297,42884,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(352298,42884,'blocks_2_split_5050_content',''),(352299,42884,'_blocks_2_split_5050_content','field_61767afceb8ba'),(352300,42884,'blocks_6_acfe_flexible_toggle',''),(352301,42884,'_blocks_6_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(352302,42884,'blocks_6_acfe_flexible_layout_title','Video'),(352303,42884,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(352304,42884,'blocks_6_size','large'),(352305,42884,'_blocks_6_size','field_6487038f297c1'),(352306,42884,'blocks_6_row_content_title',''),(352307,42884,'_blocks_6_row_content_title','field_64870132a865d'),(352308,42884,'blocks_6_row_content_heading','Hear from our Learners'),(352309,42884,'_blocks_6_row_content_heading','field_64870142a865e'),(352310,42884,'blocks_6_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(352311,42884,'_blocks_6_row_content_text','field_64870148a865f'),(352312,42884,'blocks_6_row_content',''),(352313,42884,'_blocks_6_row_content','field_6487008ba865c'),(352314,42884,'blocks_6_video_src','https://www.youtube.com/watch?v=CAwcWfVzc1c'),(352315,42884,'_blocks_6_video_src','field_6193c4a98ec07'),(352316,42884,'blocks_6_video_thumbnail',''),(352317,42884,'_blocks_6_video_thumbnail','field_6193c4a08ec06'),(352318,42884,'blocks_7_acfe_flexible_toggle',''),(352319,42884,'_blocks_7_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(352320,42884,'blocks_7_acfe_flexible_layout_title','Quote'),(352321,42884,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(352322,42884,'blocks_7_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(352323,42884,'_blocks_7_quote_content','field_6177cdacdd67a'),(352324,42884,'blocks_7_quote_author','Sharon Clare, Body Coach Fitness'),(352325,42884,'_blocks_7_quote_author','field_6177cdc6dd67b'),(352326,42884,'blocks_8_acfe_flexible_toggle',''),(352327,42884,'_blocks_8_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(352328,42884,'blocks_8_acfe_flexible_layout_title','Template'),(352329,42884,'_blocks_8_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(352330,42884,'blocks_8_template','39207'),(352331,42884,'_blocks_8_template','field_617bdd570fe01'),(352332,42986,'_edit_lock','1751385203:17'),(352333,42986,'_edit_last','17'),(352334,42986,'_oembed_c22c7c570f0cbda976d5c7a37138c071','<iframe title=\"iMoveFreely Breathe Introduction\" width=\"1297\" height=\"730\" src=\"https://www.youtube.com/embed/fKhQ_LdTUAo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(352335,42986,'_oembed_time_c22c7c570f0cbda976d5c7a37138c071','1737133079'),(352336,42986,'hide_hero','0'),(352337,42986,'_hide_hero','field_66a2380fcda39'),(352338,42986,'hero_title','Anatomy for Personal Trainers: What Every PT Should Know'),(352339,42986,'_hero_title','field_617571fe285e8'),(352340,42986,'hero_text',''),(352341,42986,'_hero_text','field_6175723c285e9'),(352342,42986,'hero_actions',''),(352343,42986,'_hero_actions','field_61757270285ea'),(352344,42986,'hero_style','default'),(352345,42986,'_hero_style','field_62051d9dc5324'),(352346,42986,'__thumbnail_id','field_617570855ddaf'),(352347,42986,'hero_image_pos_x','right'),(352348,42986,'_hero_image_pos_x','field_62ec3d05390bb'),(352349,42986,'hero_image_pos_y','top'),(352350,42986,'_hero_image_pos_y','field_62ec3d05390bc'),(352351,42986,'hero_image_pos',''),(352352,42986,'_hero_image_pos','field_62ec3d05390ba'),(352353,42986,'fft_hide_from_listings','0'),(352354,42986,'_fft_hide_from_listings','field_61f1320446ab2'),(352355,42986,'post_format','2'),(352356,42986,'_post_format','field_61756bfb51898'),(352357,42986,'post_author',''),(352358,42986,'_post_author','field_62ec389d22113'),(352359,42986,'post_reviewer',''),(352360,42986,'_post_reviewer','field_627140a2a9800'),(352361,42986,'post_table_of_contents','1'),(352362,42986,'_post_table_of_contents','field_65c503bc846a6'),(352363,42986,'_yoast_wpseo_primary_category','5'),(352364,42986,'_yoast_wpseo_primary_blog-format',''),(352365,42986,'_yoast_wpseo_content_score','60'),(352366,42986,'_yoast_wpseo_inclusive_language_score','90'),(352367,42986,'_yoast_wpseo_estimated-reading-time-minutes','6'),(352368,42986,'_oembed_67c38e0f65b4ed34ed0c27f9225d4a92','<iframe title=\"iMoveFreely Breathe Introduction\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/fKhQ_LdTUAo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(352369,42986,'_oembed_time_67c38e0f65b4ed34ed0c27f9225d4a92','1737380376'),(352370,42986,'_oembed_0aee560c831630482a051ff99ab007d4','<iframe title=\"iMoveFreely Breathe Introduction\" width=\"1377\" height=\"775\" src=\"https://www.youtube.com/embed/fKhQ_LdTUAo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(352371,42986,'_oembed_time_0aee560c831630482a051ff99ab007d4','1737133326'),(352372,42986,'_oembed_b4442501448401cbb17de6637d98e9d5','<iframe title=\"iMoveFreely Breathe Introduction\" width=\"1778\" height=\"1000\" src=\"https://www.youtube.com/embed/fKhQ_LdTUAo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>'),(352373,42986,'_oembed_time_b4442501448401cbb17de6637d98e9d5','1737380312'),(352374,42986,'_thumbnail_id','40635'),(352375,42987,'_edit_lock','1745508766:17'),(352376,42987,'_edit_last','17'),(352377,42987,'hide_hero','0'),(352378,42987,'_hide_hero','field_66a2380fcda39'),(352379,42987,'hero_title','Download Price Guide - Validation Test'),(352380,42987,'_hero_title','field_617571fe285e8'),(352381,42987,'hero_text',''),(352382,42987,'_hero_text','field_6175723c285e9'),(352383,42987,'hero_actions',''),(352384,42987,'_hero_actions','field_61757270285ea'),(352385,42987,'hero_style','default'),(352386,42987,'_hero_style','field_62051d9dc5324'),(352387,42987,'__thumbnail_id','field_617570855ddaf'),(352388,42987,'hero_image_pos_x','right'),(352389,42987,'_hero_image_pos_x','field_62ec3d05390bb'),(352390,42987,'hero_image_pos_y','top'),(352391,42987,'_hero_image_pos_y','field_62ec3d05390bc'),(352392,42987,'hero_image_pos',''),(352393,42987,'_hero_image_pos','field_62ec3d05390ba'),(352394,42987,'fft_hide_from_listings','0'),(352395,42987,'_fft_hide_from_listings','field_61f1320446ab2'),(352396,42987,'fft_page_format','default'),(352397,42987,'_fft_page_format','field_61ae213f1f218'),(352398,42987,'fft_hide_nav','0'),(352399,42987,'_fft_hide_nav','field_635bd5e43527c'),(352400,42987,'fft_hide_header_call_to_action','0'),(352401,42987,'_fft_hide_header_call_to_action','field_635bd6723527d'),(352402,42987,'fft_page_sitemap','0'),(352403,42987,'_fft_page_sitemap','field_61af9b34e8181'),(352404,42987,'blocks','a:6:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:5:\"quote\";i:4;s:10:\"link_stack\";i:5;s:18:\"testimonial_slider\";}'),(352405,42987,'_blocks','field_6176696113096'),(352406,42987,'_yoast_wpseo_estimated-reading-time-minutes','1'),(352407,42987,'_yoast_wpseo_focuskw','Download price guide'),(352408,42987,'_yoast_wpseo_title','Price Guide | Biomechanics Education'),(352409,42987,'_yoast_wpseo_metadesc','Explore our price guide to find detailed information on course fees and packages. Plan your professional development with comprehensive pricing options.'),(352410,42987,'_yoast_wpseo_linkdex','33'),(352411,42987,'_thumbnail_id','40294'),(352412,42987,'blocks_0_acfe_flexible_toggle',''),(352413,42987,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(352414,42987,'blocks_0_acfe_flexible_layout_title','Form'),(352415,42987,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(352416,42987,'blocks_0_row_content_format','standard'),(352417,42987,'_blocks_0_row_content_format','field_6481ead962881'),(352418,42987,'blocks_0_row_content_title','Enquire Now'),(352419,42987,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(352420,42987,'blocks_0_row_content_heading','Course Information and Price Guide'),(352421,42987,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(352422,42987,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain an overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(352423,42987,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(352424,42987,'blocks_0_row_content_actions',''),(352425,42987,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(352426,42987,'blocks_0_row_content',''),(352427,42987,'_blocks_0_row_content','field_61a0f5f5b3db0'),(352428,42987,'blocks_0_row_form','43045'),(352429,42987,'_blocks_0_row_form','field_61a4ff2c0b08e'),(352430,42987,'blocks_0_row_form_button_label',''),(352431,42987,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(352432,42987,'blocks_1_acfe_flexible_toggle','1'),(352433,42987,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(352434,42987,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(352435,42987,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(352436,42987,'blocks_1_options_theme','#ffffff'),(352437,42987,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(352438,42987,'blocks_1_options_reverse','0'),(352439,42987,'_blocks_1_options_reverse','field_61768049bb8ac'),(352440,42987,'blocks_1_options',''),(352441,42987,'_blocks_1_options','field_617682517c334'),(352442,42987,'blocks_1_split_5050_image','39271'),(352443,42987,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(352444,42987,'blocks_1_split_5050_video',''),(352445,42987,'_blocks_1_split_5050_video','field_6239f3160848a'),(352446,42987,'blocks_1_split_5050_content_title',''),(352447,42987,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(352448,42987,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(352449,42987,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(352450,42987,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(352451,42987,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(352452,42987,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(352453,42987,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(352454,42987,'blocks_1_split_5050_content_actions','1'),(352455,42987,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(352456,42987,'blocks_1_split_5050_content',''),(352457,42987,'_blocks_1_split_5050_content','field_61767afceb8ba'),(352458,42987,'blocks_2_acfe_flexible_toggle',''),(352459,42987,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(352460,42987,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(352461,42987,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(352462,42987,'blocks_2_options_theme','#ffffff'),(352463,42987,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(352464,42987,'blocks_2_options_reverse','0'),(352465,42987,'_blocks_2_options_reverse','field_61768049bb8ac'),(352466,42987,'blocks_2_options',''),(352467,42987,'_blocks_2_options','field_617682517c334'),(352468,42987,'blocks_2_split_5050_image','39271'),(352469,42987,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(352470,42987,'blocks_2_split_5050_video',''),(352471,42987,'_blocks_2_split_5050_video','field_6239f3160848a'),(352472,42987,'blocks_2_split_5050_content_title',''),(352473,42987,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(352474,42987,'blocks_2_split_5050_content_heading','What\'s included in this guide?'),(352475,42987,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(352476,42987,'blocks_2_split_5050_content_text','[accordion title=\"Understand our prices\" content=\"we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\"]\r\n\r\n[accordion title=\"Get to know our courses\" content=\"Access a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you’ll receive, awarding bodies and accreditations.\"]\r\n\r\n[accordion title=\"Learn about us as a business\" content=\"Get valuable information about Biomechanics Education and Future Fit Group. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.\"]'),(352477,42987,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(352478,42987,'blocks_2_split_5050_content_actions','1'),(352479,42987,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(352480,42987,'blocks_2_split_5050_content',''),(352481,42987,'_blocks_2_split_5050_content','field_61767afceb8ba'),(352482,42987,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(352483,42987,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(352484,42987,'blocks_3_acfe_flexible_toggle',''),(352485,42987,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(352486,42987,'blocks_3_acfe_flexible_layout_title','Quote'),(352487,42987,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(352488,42987,'blocks_3_quote_content','I just wanted to say thank you for transforming my knowledge. Without the Biomechanics Coaching Diploma, I would have been lost, but now I feel like I\'m not only giving clients a better understanding of their body but also further education is making more sense to me.  '),(352489,42987,'_blocks_3_quote_content','field_6177cdacdd67a'),(352490,42987,'blocks_3_quote_author',''),(352491,42987,'_blocks_3_quote_author','field_6177cdc6dd67b'),(352492,42987,'blocks_4_acfe_flexible_toggle',''),(352493,42987,'_blocks_4_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(352494,42987,'blocks_4_acfe_flexible_layout_title','Link Stack'),(352495,42987,'_blocks_4_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(352496,42987,'blocks_4_options_theme','#ffffff'),(352497,42987,'_blocks_4_options_theme','field_6177b758246af_field_6176830e2ad17'),(352498,42987,'blocks_4_options',''),(352499,42987,'_blocks_4_options','field_6177b758246ae'),(352500,42987,'blocks_4_link_stack_content_title',''),(352501,42987,'_blocks_4_link_stack_content_title','field_6177b7b600cf9'),(352502,42987,'blocks_4_link_stack_content_heading','Discover our expertise'),(352503,42987,'_blocks_4_link_stack_content_heading','field_6177b7b600cfa'),(352504,42987,'blocks_4_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(352505,42987,'_blocks_4_link_stack_content_text','field_6177b7b600cfb'),(352506,42987,'blocks_4_link_stack_content_actions',''),(352507,42987,'_blocks_4_link_stack_content_actions','field_6177b7b600cfc'),(352508,42987,'blocks_4_link_stack_content',''),(352509,42987,'_blocks_4_link_stack_content','field_6177b7b600cf8'),(352510,42987,'blocks_4_link_stack_0_label','Personal Training'),(352511,42987,'_blocks_4_link_stack_0_label','field_6177b80900d00'),(352512,42987,'blocks_4_link_stack_0_title','Discover Biomechanics in Personal Training'),(352513,42987,'_blocks_4_link_stack_0_title','field_6177b80f00d01'),(352514,42987,'blocks_4_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(352515,42987,'_blocks_4_link_stack_0_url','field_6177b82200d02'),(352516,42987,'blocks_4_link_stack_1_label','Pilates'),(352517,42987,'_blocks_4_link_stack_1_label','field_6177b80900d00'),(352518,42987,'blocks_4_link_stack_1_title','Discover Biomechanics in Pilates'),(352519,42987,'_blocks_4_link_stack_1_title','field_6177b80f00d01'),(352520,42987,'blocks_4_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(352521,42987,'_blocks_4_link_stack_1_url','field_6177b82200d02'),(352522,42987,'blocks_4_link_stack_2_label','Sports Coaches'),(352523,42987,'_blocks_4_link_stack_2_label','field_6177b80900d00'),(352524,42987,'blocks_4_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(352525,42987,'_blocks_4_link_stack_2_title','field_6177b80f00d01'),(352526,42987,'blocks_4_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(352527,42987,'_blocks_4_link_stack_2_url','field_6177b82200d02'),(352528,42987,'blocks_4_link_stack_3_label','SMT'),(352529,42987,'_blocks_4_link_stack_3_label','field_6177b80900d00'),(352530,42987,'blocks_4_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(352531,42987,'_blocks_4_link_stack_3_title','field_6177b80f00d01'),(352532,42987,'blocks_4_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(352533,42987,'_blocks_4_link_stack_3_url','field_6177b82200d02'),(352534,42987,'blocks_4_link_stack_4_label','Podiatrists'),(352535,42987,'_blocks_4_link_stack_4_label','field_6177b80900d00'),(352536,42987,'blocks_4_link_stack_4_title','Discover Biomechanics in Podiatry'),(352537,42987,'_blocks_4_link_stack_4_title','field_6177b80f00d01'),(352538,42987,'blocks_4_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(352539,42987,'_blocks_4_link_stack_4_url','field_6177b82200d02'),(352540,42987,'blocks_4_link_stack_5_label','Biomechanics Coach'),(352541,42987,'_blocks_4_link_stack_5_label','field_6177b80900d00'),(352542,42987,'blocks_4_link_stack_5_title','How to Become a Biomechanics Coach'),(352543,42987,'_blocks_4_link_stack_5_title','field_6177b80f00d01'),(352544,42987,'blocks_4_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(352545,42987,'_blocks_4_link_stack_5_url','field_6177b82200d02'),(352546,42987,'blocks_4_link_stack','6'),(352547,42987,'_blocks_4_link_stack','field_6177b7f600cff'),(352548,42987,'blocks_5_acfe_flexible_toggle','1'),(352549,42987,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(352550,42987,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(352551,42987,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(352552,42987,'blocks_5_testimonial_slider_content_title',''),(352553,42987,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(352554,42987,'blocks_5_testimonial_slider_content_heading','Testimonials'),(352555,42987,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(352556,42987,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(352557,42987,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(352558,42987,'blocks_5_testimonial_slider_content_actions',''),(352559,42987,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(352560,42987,'blocks_5_testimonial_slider_content',''),(352561,42987,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(352562,42987,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(352563,42987,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(352564,42987,'blocks_5_testimonial_slider_ambassador_bool','0'),(352565,42987,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(352566,42987,'_yoast_wpseo_inclusive_language_score','90'),(352573,42987,'_yoast_wpseo_content_score','90'),(352574,42988,'hide_hero','0'),(352575,42988,'_hide_hero','field_66a2380fcda39'),(352576,42988,'hero_title','Download Price Guide - Validation Test'),(352577,42988,'_hero_title','field_617571fe285e8'),(352578,42988,'hero_text',''),(352579,42988,'_hero_text','field_6175723c285e9'),(352580,42988,'hero_actions',''),(352581,42988,'_hero_actions','field_61757270285ea'),(352582,42988,'hero_style','default'),(352583,42988,'_hero_style','field_62051d9dc5324'),(352584,42988,'hero_image_pos_x','right'),(352585,42988,'_hero_image_pos_x','field_62ec3d05390bb'),(352586,42988,'hero_image_pos_y','top'),(352587,42988,'_hero_image_pos_y','field_62ec3d05390bc'),(352588,42988,'hero_image_pos',''),(352589,42988,'_hero_image_pos','field_62ec3d05390ba'),(352590,42988,'fft_hide_from_listings','0'),(352591,42988,'_fft_hide_from_listings','field_61f1320446ab2'),(352592,42988,'fft_page_format','default'),(352593,42988,'_fft_page_format','field_61ae213f1f218'),(352594,42988,'fft_hide_nav','0'),(352595,42988,'_fft_hide_nav','field_635bd5e43527c'),(352596,42988,'fft_hide_header_call_to_action','0'),(352597,42988,'_fft_hide_header_call_to_action','field_635bd6723527d'),(352598,42988,'fft_page_sitemap','0'),(352599,42988,'_fft_page_sitemap','field_61af9b34e8181'),(352600,42988,'blocks','a:7:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:5:\"quote\";i:4;s:10:\"link_stack\";i:5;s:18:\"testimonial_slider\";i:6;s:16:\"standard_content\";}'),(352601,42988,'_blocks','field_6176696113096'),(352602,42988,'_thumbnail_id','40294'),(352603,42988,'__thumbnail_id','field_617570855ddaf'),(352604,42988,'blocks_0_acfe_flexible_toggle',''),(352605,42988,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(352606,42988,'blocks_0_acfe_flexible_layout_title','Form'),(352607,42988,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(352608,42988,'blocks_0_row_content_format','standard'),(352609,42988,'_blocks_0_row_content_format','field_6481ead962881'),(352610,42988,'blocks_0_row_content_title','Enquire Now'),(352611,42988,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(352612,42988,'blocks_0_row_content_heading','Course Information and Price Guide'),(352613,42988,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(352614,42988,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain an overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(352615,42988,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(352616,42988,'blocks_0_row_content_actions',''),(352617,42988,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(352618,42988,'blocks_0_row_content',''),(352619,42988,'_blocks_0_row_content','field_61a0f5f5b3db0'),(352620,42988,'blocks_0_row_form','40394'),(352621,42988,'_blocks_0_row_form','field_61a4ff2c0b08e'),(352622,42988,'blocks_0_row_form_button_label',''),(352623,42988,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(352624,42988,'blocks_1_acfe_flexible_toggle','1'),(352625,42988,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(352626,42988,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(352627,42988,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(352628,42988,'blocks_1_options_theme','#ffffff'),(352629,42988,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(352630,42988,'blocks_1_options_reverse','0'),(352631,42988,'_blocks_1_options_reverse','field_61768049bb8ac'),(352632,42988,'blocks_1_options',''),(352633,42988,'_blocks_1_options','field_617682517c334'),(352634,42988,'blocks_1_split_5050_image','39271'),(352635,42988,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(352636,42988,'blocks_1_split_5050_video',''),(352637,42988,'_blocks_1_split_5050_video','field_6239f3160848a'),(352638,42988,'blocks_1_split_5050_content_title',''),(352639,42988,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(352640,42988,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(352641,42988,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(352642,42988,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(352643,42988,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(352644,42988,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(352645,42988,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(352646,42988,'blocks_1_split_5050_content_actions','1'),(352647,42988,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(352648,42988,'blocks_1_split_5050_content',''),(352649,42988,'_blocks_1_split_5050_content','field_61767afceb8ba'),(352650,42988,'blocks_2_acfe_flexible_toggle',''),(352651,42988,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(352652,42988,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(352653,42988,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(352654,42988,'blocks_2_options_theme','#ffffff'),(352655,42988,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(352656,42988,'blocks_2_options_reverse','0'),(352657,42988,'_blocks_2_options_reverse','field_61768049bb8ac'),(352658,42988,'blocks_2_options',''),(352659,42988,'_blocks_2_options','field_617682517c334'),(352660,42988,'blocks_2_split_5050_image','39271'),(352661,42988,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(352662,42988,'blocks_2_split_5050_video',''),(352663,42988,'_blocks_2_split_5050_video','field_6239f3160848a'),(352664,42988,'blocks_2_split_5050_content_title',''),(352665,42988,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(352666,42988,'blocks_2_split_5050_content_heading','What\'s included in this guide?'),(352667,42988,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(352668,42988,'blocks_2_split_5050_content_text','[accordion title=\"Understand our prices\" content=\"we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\"]\r\n\r\n[accordion title=\"Get to know our courses\" content=\"Access a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you’ll receive, awarding bodies and accreditations.\"]\r\n\r\n[accordion title=\"Learn about us as a business\" content=\"Get valuable information about Biomechanics Education and Future Fit Group. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.\"]'),(352669,42988,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(352670,42988,'blocks_2_split_5050_content_actions','1'),(352671,42988,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(352672,42988,'blocks_2_split_5050_content',''),(352673,42988,'_blocks_2_split_5050_content','field_61767afceb8ba'),(352674,42988,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(352675,42988,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(352676,42988,'blocks_3_acfe_flexible_toggle',''),(352677,42988,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(352678,42988,'blocks_3_acfe_flexible_layout_title','Quote'),(352679,42988,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(352680,42988,'blocks_3_quote_content','I just wanted to say thank you for transforming my knowledge. Without the Biomechanics Coaching Diploma, I would have been lost, but now I feel like I\'m not only giving clients a better understanding of their body but also further education is making more sense to me.  '),(352681,42988,'_blocks_3_quote_content','field_6177cdacdd67a'),(352682,42988,'blocks_3_quote_author',''),(352683,42988,'_blocks_3_quote_author','field_6177cdc6dd67b'),(352684,42988,'blocks_4_acfe_flexible_toggle',''),(352685,42988,'_blocks_4_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(352686,42988,'blocks_4_acfe_flexible_layout_title','Link Stack'),(352687,42988,'_blocks_4_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(352688,42988,'blocks_4_options_theme','#ffffff'),(352689,42988,'_blocks_4_options_theme','field_6177b758246af_field_6176830e2ad17'),(352690,42988,'blocks_4_options',''),(352691,42988,'_blocks_4_options','field_6177b758246ae'),(352692,42988,'blocks_4_link_stack_content_title',''),(352693,42988,'_blocks_4_link_stack_content_title','field_6177b7b600cf9'),(352694,42988,'blocks_4_link_stack_content_heading','Discover our expertise'),(352695,42988,'_blocks_4_link_stack_content_heading','field_6177b7b600cfa'),(352696,42988,'blocks_4_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(352697,42988,'_blocks_4_link_stack_content_text','field_6177b7b600cfb'),(352698,42988,'blocks_4_link_stack_content_actions',''),(352699,42988,'_blocks_4_link_stack_content_actions','field_6177b7b600cfc'),(352700,42988,'blocks_4_link_stack_content',''),(352701,42988,'_blocks_4_link_stack_content','field_6177b7b600cf8'),(352702,42988,'blocks_4_link_stack_0_label','Personal Training'),(352703,42988,'_blocks_4_link_stack_0_label','field_6177b80900d00'),(352704,42988,'blocks_4_link_stack_0_title','Discover Biomechanics in Personal Training'),(352705,42988,'_blocks_4_link_stack_0_title','field_6177b80f00d01'),(352706,42988,'blocks_4_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(352707,42988,'_blocks_4_link_stack_0_url','field_6177b82200d02'),(352708,42988,'blocks_4_link_stack_1_label','Pilates'),(352709,42988,'_blocks_4_link_stack_1_label','field_6177b80900d00'),(352710,42988,'blocks_4_link_stack_1_title','Discover Biomechanics in Pilates'),(352711,42988,'_blocks_4_link_stack_1_title','field_6177b80f00d01'),(352712,42988,'blocks_4_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(352713,42988,'_blocks_4_link_stack_1_url','field_6177b82200d02'),(352714,42988,'blocks_4_link_stack_2_label','Sports Coaches'),(352715,42988,'_blocks_4_link_stack_2_label','field_6177b80900d00'),(352716,42988,'blocks_4_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(352717,42988,'_blocks_4_link_stack_2_title','field_6177b80f00d01'),(352718,42988,'blocks_4_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(352719,42988,'_blocks_4_link_stack_2_url','field_6177b82200d02'),(352720,42988,'blocks_4_link_stack_3_label','SMT'),(352721,42988,'_blocks_4_link_stack_3_label','field_6177b80900d00'),(352722,42988,'blocks_4_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(352723,42988,'_blocks_4_link_stack_3_title','field_6177b80f00d01'),(352724,42988,'blocks_4_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(352725,42988,'_blocks_4_link_stack_3_url','field_6177b82200d02'),(352726,42988,'blocks_4_link_stack_4_label','Podiatrists'),(352727,42988,'_blocks_4_link_stack_4_label','field_6177b80900d00'),(352728,42988,'blocks_4_link_stack_4_title','Discover Biomechanics in Podiatry'),(352729,42988,'_blocks_4_link_stack_4_title','field_6177b80f00d01'),(352730,42988,'blocks_4_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(352731,42988,'_blocks_4_link_stack_4_url','field_6177b82200d02'),(352732,42988,'blocks_4_link_stack_5_label','Biomechanics Coach'),(352733,42988,'_blocks_4_link_stack_5_label','field_6177b80900d00'),(352734,42988,'blocks_4_link_stack_5_title','How to Become a Biomechanics Coach'),(352735,42988,'_blocks_4_link_stack_5_title','field_6177b80f00d01'),(352736,42988,'blocks_4_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(352737,42988,'_blocks_4_link_stack_5_url','field_6177b82200d02'),(352738,42988,'blocks_4_link_stack','6'),(352739,42988,'_blocks_4_link_stack','field_6177b7f600cff'),(352740,42988,'blocks_5_acfe_flexible_toggle','1'),(352741,42988,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(352742,42988,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(352743,42988,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(352744,42988,'blocks_5_testimonial_slider_content_title',''),(352745,42988,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(352746,42988,'blocks_5_testimonial_slider_content_heading','Testimonials'),(352747,42988,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(352748,42988,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(352749,42988,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(352750,42988,'blocks_5_testimonial_slider_content_actions',''),(352751,42988,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(352752,42988,'blocks_5_testimonial_slider_content',''),(352753,42988,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(352754,42988,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(352755,42988,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(352756,42988,'blocks_5_testimonial_slider_ambassador_bool','0'),(352757,42988,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(352758,42988,'blocks_6_acfe_flexible_toggle',''),(352759,42988,'_blocks_6_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(352760,42988,'blocks_6_acfe_flexible_layout_title','Standard/Editorial Content'),(352761,42988,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(352762,42988,'blocks_6_content',''),(352763,42988,'_blocks_6_content','field_6193c9b5eac84'),(352961,42992,'hide_hero','0'),(352962,42992,'_hide_hero','field_66a2380fcda39'),(352963,42992,'hero_title','Anatomy for Personal Trainers: What Every PT Should Know'),(352964,42992,'_hero_title','field_617571fe285e8'),(352965,42992,'hero_text','Written by Rachel Frances Thomson\r\n\r\n'),(352966,42992,'_hero_text','field_6175723c285e9'),(352967,42992,'hero_actions',''),(352968,42992,'_hero_actions','field_61757270285ea'),(352969,42992,'hero_style','default'),(352970,42992,'_hero_style','field_62051d9dc5324'),(352971,42992,'hero_image_pos_x','right'),(352972,42992,'_hero_image_pos_x','field_62ec3d05390bb'),(352973,42992,'hero_image_pos_y','top'),(352974,42992,'_hero_image_pos_y','field_62ec3d05390bc'),(352975,42992,'hero_image_pos',''),(352976,42992,'_hero_image_pos','field_62ec3d05390ba'),(352977,42992,'fft_hide_from_listings','0'),(352978,42992,'_fft_hide_from_listings','field_61f1320446ab2'),(352979,42992,'post_format','2'),(352980,42992,'_post_format','field_61756bfb51898'),(352981,42992,'post_author',''),(352982,42992,'_post_author','field_62ec389d22113'),(352983,42992,'post_reviewer',''),(352984,42992,'_post_reviewer','field_627140a2a9800'),(352985,42992,'post_table_of_contents','0'),(352986,42992,'_post_table_of_contents','field_65c503bc846a6'),(352987,42992,'_thumbnail_id','40635'),(352988,42992,'__thumbnail_id','field_617570855ddaf'),(352989,42993,'hide_hero','0'),(352990,42993,'_hide_hero','field_66a2380fcda39'),(352991,42993,'hero_title','Download Price Guide - Validation Test'),(352992,42993,'_hero_title','field_617571fe285e8'),(352993,42993,'hero_text',''),(352994,42993,'_hero_text','field_6175723c285e9'),(352995,42993,'hero_actions',''),(352996,42993,'_hero_actions','field_61757270285ea'),(352997,42993,'hero_style','default'),(352998,42993,'_hero_style','field_62051d9dc5324'),(352999,42993,'hero_image_pos_x','right'),(353000,42993,'_hero_image_pos_x','field_62ec3d05390bb'),(353001,42993,'hero_image_pos_y','top'),(353002,42993,'_hero_image_pos_y','field_62ec3d05390bc'),(353003,42993,'hero_image_pos',''),(353004,42993,'_hero_image_pos','field_62ec3d05390ba'),(353005,42993,'fft_hide_from_listings','0'),(353006,42993,'_fft_hide_from_listings','field_61f1320446ab2'),(353007,42993,'fft_page_format','default'),(353008,42993,'_fft_page_format','field_61ae213f1f218'),(353009,42993,'fft_hide_nav','0'),(353010,42993,'_fft_hide_nav','field_635bd5e43527c'),(353011,42993,'fft_hide_header_call_to_action','0'),(353012,42993,'_fft_hide_header_call_to_action','field_635bd6723527d'),(353013,42993,'fft_page_sitemap','0'),(353014,42993,'_fft_page_sitemap','field_61af9b34e8181'),(353015,42993,'blocks','a:7:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:5:\"quote\";i:4;s:10:\"link_stack\";i:5;s:18:\"testimonial_slider\";i:6;s:16:\"standard_content\";}'),(353016,42993,'_blocks','field_6176696113096'),(353017,42993,'_thumbnail_id','40294'),(353018,42993,'__thumbnail_id','field_617570855ddaf'),(353019,42993,'blocks_0_acfe_flexible_toggle',''),(353020,42993,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(353021,42993,'blocks_0_acfe_flexible_layout_title','Form'),(353022,42993,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(353023,42993,'blocks_0_row_content_format','standard'),(353024,42993,'_blocks_0_row_content_format','field_6481ead962881'),(353025,42993,'blocks_0_row_content_title','Enquire Now'),(353026,42993,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(353027,42993,'blocks_0_row_content_heading','Course Information and Price Guide'),(353028,42993,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(353029,42993,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain an overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(353030,42993,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(353031,42993,'blocks_0_row_content_actions',''),(353032,42993,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(353033,42993,'blocks_0_row_content',''),(353034,42993,'_blocks_0_row_content','field_61a0f5f5b3db0'),(353035,42993,'blocks_0_row_form','40394'),(353036,42993,'_blocks_0_row_form','field_61a4ff2c0b08e'),(353037,42993,'blocks_0_row_form_button_label',''),(353038,42993,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(353039,42993,'blocks_1_acfe_flexible_toggle','1'),(353040,42993,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(353041,42993,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(353042,42993,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(353043,42993,'blocks_1_options_theme','#ffffff'),(353044,42993,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(353045,42993,'blocks_1_options_reverse','0'),(353046,42993,'_blocks_1_options_reverse','field_61768049bb8ac'),(353047,42993,'blocks_1_options',''),(353048,42993,'_blocks_1_options','field_617682517c334'),(353049,42993,'blocks_1_split_5050_image','39271'),(353050,42993,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(353051,42993,'blocks_1_split_5050_video',''),(353052,42993,'_blocks_1_split_5050_video','field_6239f3160848a'),(353053,42993,'blocks_1_split_5050_content_title',''),(353054,42993,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(353055,42993,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(353056,42993,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(353057,42993,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(353058,42993,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(353059,42993,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(353060,42993,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(353061,42993,'blocks_1_split_5050_content_actions','1'),(353062,42993,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(353063,42993,'blocks_1_split_5050_content',''),(353064,42993,'_blocks_1_split_5050_content','field_61767afceb8ba'),(353065,42993,'blocks_2_acfe_flexible_toggle',''),(353066,42993,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(353067,42993,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(353068,42993,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(353069,42993,'blocks_2_options_theme','#ffffff'),(353070,42993,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(353071,42993,'blocks_2_options_reverse','0'),(353072,42993,'_blocks_2_options_reverse','field_61768049bb8ac'),(353073,42993,'blocks_2_options',''),(353074,42993,'_blocks_2_options','field_617682517c334'),(353075,42993,'blocks_2_split_5050_image','39271'),(353076,42993,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(353077,42993,'blocks_2_split_5050_video',''),(353078,42993,'_blocks_2_split_5050_video','field_6239f3160848a'),(353079,42993,'blocks_2_split_5050_content_title',''),(353080,42993,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(353081,42993,'blocks_2_split_5050_content_heading','What\'s included in this guide?'),(353082,42993,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(353083,42993,'blocks_2_split_5050_content_text','[accordion title=\"Understand our prices\" content=\"we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\"]\r\n\r\n[accordion title=\"Get to know our courses\" content=\"Access a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you’ll receive, awarding bodies and accreditations.\"]\r\n\r\n[accordion title=\"Learn about us as a business\" content=\"Get valuable information about Biomechanics Education and Future Fit Group. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.\"]'),(353084,42993,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(353085,42993,'blocks_2_split_5050_content_actions','1'),(353086,42993,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(353087,42993,'blocks_2_split_5050_content',''),(353088,42993,'_blocks_2_split_5050_content','field_61767afceb8ba'),(353089,42993,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(353090,42993,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(353091,42993,'blocks_3_acfe_flexible_toggle',''),(353092,42993,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(353093,42993,'blocks_3_acfe_flexible_layout_title','Quote'),(353094,42993,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(353095,42993,'blocks_3_quote_content','I just wanted to say thank you for transforming my knowledge. Without the Biomechanics Coaching Diploma, I would have been lost, but now I feel like I\'m not only giving clients a better understanding of their body but also further education is making more sense to me.  '),(353096,42993,'_blocks_3_quote_content','field_6177cdacdd67a'),(353097,42993,'blocks_3_quote_author',''),(353098,42993,'_blocks_3_quote_author','field_6177cdc6dd67b'),(353099,42993,'blocks_4_acfe_flexible_toggle',''),(353100,42993,'_blocks_4_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(353101,42993,'blocks_4_acfe_flexible_layout_title','Link Stack'),(353102,42993,'_blocks_4_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(353103,42993,'blocks_4_options_theme','#ffffff'),(353104,42993,'_blocks_4_options_theme','field_6177b758246af_field_6176830e2ad17'),(353105,42993,'blocks_4_options',''),(353106,42993,'_blocks_4_options','field_6177b758246ae'),(353107,42993,'blocks_4_link_stack_content_title',''),(353108,42993,'_blocks_4_link_stack_content_title','field_6177b7b600cf9'),(353109,42993,'blocks_4_link_stack_content_heading','Discover our expertise'),(353110,42993,'_blocks_4_link_stack_content_heading','field_6177b7b600cfa'),(353111,42993,'blocks_4_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(353112,42993,'_blocks_4_link_stack_content_text','field_6177b7b600cfb'),(353113,42993,'blocks_4_link_stack_content_actions',''),(353114,42993,'_blocks_4_link_stack_content_actions','field_6177b7b600cfc'),(353115,42993,'blocks_4_link_stack_content',''),(353116,42993,'_blocks_4_link_stack_content','field_6177b7b600cf8'),(353117,42993,'blocks_4_link_stack_0_label','Personal Training'),(353118,42993,'_blocks_4_link_stack_0_label','field_6177b80900d00'),(353119,42993,'blocks_4_link_stack_0_title','Discover Biomechanics in Personal Training'),(353120,42993,'_blocks_4_link_stack_0_title','field_6177b80f00d01'),(353121,42993,'blocks_4_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(353122,42993,'_blocks_4_link_stack_0_url','field_6177b82200d02'),(353123,42993,'blocks_4_link_stack_1_label','Pilates'),(353124,42993,'_blocks_4_link_stack_1_label','field_6177b80900d00'),(353125,42993,'blocks_4_link_stack_1_title','Discover Biomechanics in Pilates'),(353126,42993,'_blocks_4_link_stack_1_title','field_6177b80f00d01'),(353127,42993,'blocks_4_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(353128,42993,'_blocks_4_link_stack_1_url','field_6177b82200d02'),(353129,42993,'blocks_4_link_stack_2_label','Sports Coaches'),(353130,42993,'_blocks_4_link_stack_2_label','field_6177b80900d00'),(353131,42993,'blocks_4_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(353132,42993,'_blocks_4_link_stack_2_title','field_6177b80f00d01'),(353133,42993,'blocks_4_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(353134,42993,'_blocks_4_link_stack_2_url','field_6177b82200d02'),(353135,42993,'blocks_4_link_stack_3_label','SMT'),(353136,42993,'_blocks_4_link_stack_3_label','field_6177b80900d00'),(353137,42993,'blocks_4_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(353138,42993,'_blocks_4_link_stack_3_title','field_6177b80f00d01'),(353139,42993,'blocks_4_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(353140,42993,'_blocks_4_link_stack_3_url','field_6177b82200d02'),(353141,42993,'blocks_4_link_stack_4_label','Podiatrists'),(353142,42993,'_blocks_4_link_stack_4_label','field_6177b80900d00'),(353143,42993,'blocks_4_link_stack_4_title','Discover Biomechanics in Podiatry'),(353144,42993,'_blocks_4_link_stack_4_title','field_6177b80f00d01'),(353145,42993,'blocks_4_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(353146,42993,'_blocks_4_link_stack_4_url','field_6177b82200d02'),(353147,42993,'blocks_4_link_stack_5_label','Biomechanics Coach'),(353148,42993,'_blocks_4_link_stack_5_label','field_6177b80900d00'),(353149,42993,'blocks_4_link_stack_5_title','How to Become a Biomechanics Coach'),(353150,42993,'_blocks_4_link_stack_5_title','field_6177b80f00d01'),(353151,42993,'blocks_4_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(353152,42993,'_blocks_4_link_stack_5_url','field_6177b82200d02'),(353153,42993,'blocks_4_link_stack','6'),(353154,42993,'_blocks_4_link_stack','field_6177b7f600cff'),(353155,42993,'blocks_5_acfe_flexible_toggle','1'),(353156,42993,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(353157,42993,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(353158,42993,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(353159,42993,'blocks_5_testimonial_slider_content_title',''),(353160,42993,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(353161,42993,'blocks_5_testimonial_slider_content_heading','Testimonials'),(353162,42993,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(353163,42993,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(353164,42993,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(353165,42993,'blocks_5_testimonial_slider_content_actions',''),(353166,42993,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(353167,42993,'blocks_5_testimonial_slider_content',''),(353168,42993,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(353169,42993,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(353170,42993,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(353171,42993,'blocks_5_testimonial_slider_ambassador_bool','0'),(353172,42993,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(353173,42993,'blocks_6_acfe_flexible_toggle',''),(353174,42993,'_blocks_6_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(353175,42993,'blocks_6_acfe_flexible_layout_title','Standard/Editorial Content'),(353176,42993,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(353177,42993,'blocks_6_content','[tcm id=\"1\"]'),(353178,42993,'_blocks_6_content','field_6193c9b5eac84'),(353179,42995,'hide_hero','0'),(353180,42995,'_hide_hero','field_66a2380fcda39'),(353181,42995,'hero_title','Anatomy for Personal Trainers: What Every PT Should Know'),(353182,42995,'_hero_title','field_617571fe285e8'),(353183,42995,'hero_text','\r\n\r\n'),(353184,42995,'_hero_text','field_6175723c285e9'),(353185,42995,'hero_actions',''),(353186,42995,'_hero_actions','field_61757270285ea'),(353187,42995,'hero_style','default'),(353188,42995,'_hero_style','field_62051d9dc5324'),(353189,42995,'hero_image_pos_x','right'),(353190,42995,'_hero_image_pos_x','field_62ec3d05390bb'),(353191,42995,'hero_image_pos_y','top'),(353192,42995,'_hero_image_pos_y','field_62ec3d05390bc'),(353193,42995,'hero_image_pos',''),(353194,42995,'_hero_image_pos','field_62ec3d05390ba'),(353195,42995,'fft_hide_from_listings','0'),(353196,42995,'_fft_hide_from_listings','field_61f1320446ab2'),(353197,42995,'post_format','2'),(353198,42995,'_post_format','field_61756bfb51898'),(353199,42995,'post_author',''),(353200,42995,'_post_author','field_62ec389d22113'),(353201,42995,'post_reviewer',''),(353202,42995,'_post_reviewer','field_627140a2a9800'),(353203,42995,'post_table_of_contents','0'),(353204,42995,'_post_table_of_contents','field_65c503bc846a6'),(353205,42995,'_thumbnail_id','40635'),(353206,42995,'__thumbnail_id','field_617570855ddaf'),(353207,42996,'hide_hero','0'),(353208,42996,'_hide_hero','field_66a2380fcda39'),(353209,42996,'hero_title','Anatomy for Personal Trainers: What Every PT Should Know'),(353210,42996,'_hero_title','field_617571fe285e8'),(353211,42996,'hero_text','\r\n\r\n'),(353212,42996,'_hero_text','field_6175723c285e9'),(353213,42996,'hero_actions',''),(353214,42996,'_hero_actions','field_61757270285ea'),(353215,42996,'hero_style','default'),(353216,42996,'_hero_style','field_62051d9dc5324'),(353217,42996,'hero_image_pos_x','right'),(353218,42996,'_hero_image_pos_x','field_62ec3d05390bb'),(353219,42996,'hero_image_pos_y','top'),(353220,42996,'_hero_image_pos_y','field_62ec3d05390bc'),(353221,42996,'hero_image_pos',''),(353222,42996,'_hero_image_pos','field_62ec3d05390ba'),(353223,42996,'fft_hide_from_listings','0'),(353224,42996,'_fft_hide_from_listings','field_61f1320446ab2'),(353225,42996,'post_format','2'),(353226,42996,'_post_format','field_61756bfb51898'),(353227,42996,'post_author',''),(353228,42996,'_post_author','field_62ec389d22113'),(353229,42996,'post_reviewer',''),(353230,42996,'_post_reviewer','field_627140a2a9800'),(353231,42996,'post_table_of_contents','0'),(353232,42996,'_post_table_of_contents','field_65c503bc846a6'),(353233,42996,'_thumbnail_id','40635'),(353234,42996,'__thumbnail_id','field_617570855ddaf'),(353235,42997,'hide_hero','0'),(353236,42997,'_hide_hero','field_66a2380fcda39'),(353237,42997,'hero_title','Download Price Guide - Validation Test'),(353238,42997,'_hero_title','field_617571fe285e8'),(353239,42997,'hero_text',''),(353240,42997,'_hero_text','field_6175723c285e9'),(353241,42997,'hero_actions',''),(353242,42997,'_hero_actions','field_61757270285ea'),(353243,42997,'hero_style','default'),(353244,42997,'_hero_style','field_62051d9dc5324'),(353245,42997,'hero_image_pos_x','right'),(353246,42997,'_hero_image_pos_x','field_62ec3d05390bb'),(353247,42997,'hero_image_pos_y','top'),(353248,42997,'_hero_image_pos_y','field_62ec3d05390bc'),(353249,42997,'hero_image_pos',''),(353250,42997,'_hero_image_pos','field_62ec3d05390ba'),(353251,42997,'fft_hide_from_listings','0'),(353252,42997,'_fft_hide_from_listings','field_61f1320446ab2'),(353253,42997,'fft_page_format','default'),(353254,42997,'_fft_page_format','field_61ae213f1f218'),(353255,42997,'fft_hide_nav','0'),(353256,42997,'_fft_hide_nav','field_635bd5e43527c'),(353257,42997,'fft_hide_header_call_to_action','0'),(353258,42997,'_fft_hide_header_call_to_action','field_635bd6723527d'),(353259,42997,'fft_page_sitemap','0'),(353260,42997,'_fft_page_sitemap','field_61af9b34e8181'),(353261,42997,'blocks','a:7:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:5:\"quote\";i:4;s:10:\"link_stack\";i:5;s:18:\"testimonial_slider\";i:6;s:16:\"standard_content\";}'),(353262,42997,'_blocks','field_6176696113096'),(353263,42997,'_thumbnail_id','40294'),(353264,42997,'__thumbnail_id','field_617570855ddaf'),(353265,42997,'blocks_0_acfe_flexible_toggle',''),(353266,42997,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(353267,42997,'blocks_0_acfe_flexible_layout_title','Form'),(353268,42997,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(353269,42997,'blocks_0_row_content_format','standard'),(353270,42997,'_blocks_0_row_content_format','field_6481ead962881'),(353271,42997,'blocks_0_row_content_title','Enquire Now'),(353272,42997,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(353273,42997,'blocks_0_row_content_heading','Course Information and Price Guide'),(353274,42997,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(353275,42997,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain an overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(353276,42997,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(353277,42997,'blocks_0_row_content_actions',''),(353278,42997,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(353279,42997,'blocks_0_row_content',''),(353280,42997,'_blocks_0_row_content','field_61a0f5f5b3db0'),(353281,42997,'blocks_0_row_form','40394'),(353282,42997,'_blocks_0_row_form','field_61a4ff2c0b08e'),(353283,42997,'blocks_0_row_form_button_label',''),(353284,42997,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(353285,42997,'blocks_1_acfe_flexible_toggle','1'),(353286,42997,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(353287,42997,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(353288,42997,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(353289,42997,'blocks_1_options_theme','#ffffff'),(353290,42997,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(353291,42997,'blocks_1_options_reverse','0'),(353292,42997,'_blocks_1_options_reverse','field_61768049bb8ac'),(353293,42997,'blocks_1_options',''),(353294,42997,'_blocks_1_options','field_617682517c334'),(353295,42997,'blocks_1_split_5050_image','39271'),(353296,42997,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(353297,42997,'blocks_1_split_5050_video',''),(353298,42997,'_blocks_1_split_5050_video','field_6239f3160848a'),(353299,42997,'blocks_1_split_5050_content_title',''),(353300,42997,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(353301,42997,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(353302,42997,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(353303,42997,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(353304,42997,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(353305,42997,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(353306,42997,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(353307,42997,'blocks_1_split_5050_content_actions','1'),(353308,42997,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(353309,42997,'blocks_1_split_5050_content',''),(353310,42997,'_blocks_1_split_5050_content','field_61767afceb8ba'),(353311,42997,'blocks_2_acfe_flexible_toggle',''),(353312,42997,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(353313,42997,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(353314,42997,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(353315,42997,'blocks_2_options_theme','#ffffff'),(353316,42997,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(353317,42997,'blocks_2_options_reverse','0'),(353318,42997,'_blocks_2_options_reverse','field_61768049bb8ac'),(353319,42997,'blocks_2_options',''),(353320,42997,'_blocks_2_options','field_617682517c334'),(353321,42997,'blocks_2_split_5050_image','39271'),(353322,42997,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(353323,42997,'blocks_2_split_5050_video',''),(353324,42997,'_blocks_2_split_5050_video','field_6239f3160848a'),(353325,42997,'blocks_2_split_5050_content_title',''),(353326,42997,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(353327,42997,'blocks_2_split_5050_content_heading','What\'s included in this guide?'),(353328,42997,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(353329,42997,'blocks_2_split_5050_content_text','[accordion title=\"Understand our prices\" content=\"we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\"]\r\n\r\n[accordion title=\"Get to know our courses\" content=\"Access a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you’ll receive, awarding bodies and accreditations.\"]\r\n\r\n[accordion title=\"Learn about us as a business\" content=\"Get valuable information about Biomechanics Education and Future Fit Group. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.\"]'),(353330,42997,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(353331,42997,'blocks_2_split_5050_content_actions','1'),(353332,42997,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(353333,42997,'blocks_2_split_5050_content',''),(353334,42997,'_blocks_2_split_5050_content','field_61767afceb8ba'),(353335,42997,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(353336,42997,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(353337,42997,'blocks_3_acfe_flexible_toggle',''),(353338,42997,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(353339,42997,'blocks_3_acfe_flexible_layout_title','Quote'),(353340,42997,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(353341,42997,'blocks_3_quote_content','I just wanted to say thank you for transforming my knowledge. Without the Biomechanics Coaching Diploma, I would have been lost, but now I feel like I\'m not only giving clients a better understanding of their body but also further education is making more sense to me.  '),(353342,42997,'_blocks_3_quote_content','field_6177cdacdd67a'),(353343,42997,'blocks_3_quote_author',''),(353344,42997,'_blocks_3_quote_author','field_6177cdc6dd67b'),(353345,42997,'blocks_4_acfe_flexible_toggle',''),(353346,42997,'_blocks_4_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(353347,42997,'blocks_4_acfe_flexible_layout_title','Link Stack'),(353348,42997,'_blocks_4_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(353349,42997,'blocks_4_options_theme','#ffffff'),(353350,42997,'_blocks_4_options_theme','field_6177b758246af_field_6176830e2ad17'),(353351,42997,'blocks_4_options',''),(353352,42997,'_blocks_4_options','field_6177b758246ae'),(353353,42997,'blocks_4_link_stack_content_title',''),(353354,42997,'_blocks_4_link_stack_content_title','field_6177b7b600cf9'),(353355,42997,'blocks_4_link_stack_content_heading','Discover our expertise'),(353356,42997,'_blocks_4_link_stack_content_heading','field_6177b7b600cfa'),(353357,42997,'blocks_4_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(353358,42997,'_blocks_4_link_stack_content_text','field_6177b7b600cfb'),(353359,42997,'blocks_4_link_stack_content_actions',''),(353360,42997,'_blocks_4_link_stack_content_actions','field_6177b7b600cfc'),(353361,42997,'blocks_4_link_stack_content',''),(353362,42997,'_blocks_4_link_stack_content','field_6177b7b600cf8'),(353363,42997,'blocks_4_link_stack_0_label','Personal Training'),(353364,42997,'_blocks_4_link_stack_0_label','field_6177b80900d00'),(353365,42997,'blocks_4_link_stack_0_title','Discover Biomechanics in Personal Training'),(353366,42997,'_blocks_4_link_stack_0_title','field_6177b80f00d01'),(353367,42997,'blocks_4_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(353368,42997,'_blocks_4_link_stack_0_url','field_6177b82200d02'),(353369,42997,'blocks_4_link_stack_1_label','Pilates'),(353370,42997,'_blocks_4_link_stack_1_label','field_6177b80900d00'),(353371,42997,'blocks_4_link_stack_1_title','Discover Biomechanics in Pilates'),(353372,42997,'_blocks_4_link_stack_1_title','field_6177b80f00d01'),(353373,42997,'blocks_4_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(353374,42997,'_blocks_4_link_stack_1_url','field_6177b82200d02'),(353375,42997,'blocks_4_link_stack_2_label','Sports Coaches'),(353376,42997,'_blocks_4_link_stack_2_label','field_6177b80900d00'),(353377,42997,'blocks_4_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(353378,42997,'_blocks_4_link_stack_2_title','field_6177b80f00d01'),(353379,42997,'blocks_4_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(353380,42997,'_blocks_4_link_stack_2_url','field_6177b82200d02'),(353381,42997,'blocks_4_link_stack_3_label','SMT'),(353382,42997,'_blocks_4_link_stack_3_label','field_6177b80900d00'),(353383,42997,'blocks_4_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(353384,42997,'_blocks_4_link_stack_3_title','field_6177b80f00d01'),(353385,42997,'blocks_4_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(353386,42997,'_blocks_4_link_stack_3_url','field_6177b82200d02'),(353387,42997,'blocks_4_link_stack_4_label','Podiatrists'),(353388,42997,'_blocks_4_link_stack_4_label','field_6177b80900d00'),(353389,42997,'blocks_4_link_stack_4_title','Discover Biomechanics in Podiatry'),(353390,42997,'_blocks_4_link_stack_4_title','field_6177b80f00d01'),(353391,42997,'blocks_4_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(353392,42997,'_blocks_4_link_stack_4_url','field_6177b82200d02'),(353393,42997,'blocks_4_link_stack_5_label','Biomechanics Coach'),(353394,42997,'_blocks_4_link_stack_5_label','field_6177b80900d00'),(353395,42997,'blocks_4_link_stack_5_title','How to Become a Biomechanics Coach'),(353396,42997,'_blocks_4_link_stack_5_title','field_6177b80f00d01'),(353397,42997,'blocks_4_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(353398,42997,'_blocks_4_link_stack_5_url','field_6177b82200d02'),(353399,42997,'blocks_4_link_stack','6'),(353400,42997,'_blocks_4_link_stack','field_6177b7f600cff'),(353401,42997,'blocks_5_acfe_flexible_toggle','1'),(353402,42997,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(353403,42997,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(353404,42997,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(353405,42997,'blocks_5_testimonial_slider_content_title',''),(353406,42997,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(353407,42997,'blocks_5_testimonial_slider_content_heading','Testimonials'),(353408,42997,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(353409,42997,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(353410,42997,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(353411,42997,'blocks_5_testimonial_slider_content_actions',''),(353412,42997,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(353413,42997,'blocks_5_testimonial_slider_content',''),(353414,42997,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(353415,42997,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(353416,42997,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(353417,42997,'blocks_5_testimonial_slider_ambassador_bool','0'),(353418,42997,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(353419,42997,'blocks_6_acfe_flexible_toggle',''),(353420,42997,'_blocks_6_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(353421,42997,'blocks_6_acfe_flexible_layout_title','Standard/Editorial Content - SCRIPT TEST VIA SHORTCODE'),(353422,42997,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(353423,42997,'blocks_6_content','[tcm id=\"1\"]'),(353424,42997,'_blocks_6_content','field_6193c9b5eac84'),(353425,42998,'_wp_attached_file','2025/04/BE-System-of-Exercise.png'),(353426,42998,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:300;s:6:\"height\";i:287;s:4:\"file\";s:33:\"2025/04/BE-System-of-Exercise.png\";s:8:\"filesize\";i:26862;s:5:\"sizes\";a:2:{s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:33:\"BE-System-of-Exercise-300x266.png\";s:5:\"width\";i:300;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8881;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:33:\"BE-System-of-Exercise-300x225.png\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5261;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(353427,42999,'hide_hero','0'),(353428,42999,'_hide_hero','field_66a2380fcda39'),(353429,42999,'hero_title','Anatomy for Personal Trainers: What Every PT Should Know'),(353430,42999,'_hero_title','field_617571fe285e8'),(353431,42999,'hero_text','\r\n\r\n'),(353432,42999,'_hero_text','field_6175723c285e9'),(353433,42999,'hero_actions',''),(353434,42999,'_hero_actions','field_61757270285ea'),(353435,42999,'hero_style','default'),(353436,42999,'_hero_style','field_62051d9dc5324'),(353437,42999,'hero_image_pos_x','right'),(353438,42999,'_hero_image_pos_x','field_62ec3d05390bb'),(353439,42999,'hero_image_pos_y','top'),(353440,42999,'_hero_image_pos_y','field_62ec3d05390bc'),(353441,42999,'hero_image_pos',''),(353442,42999,'_hero_image_pos','field_62ec3d05390ba'),(353443,42999,'fft_hide_from_listings','0'),(353444,42999,'_fft_hide_from_listings','field_61f1320446ab2'),(353445,42999,'post_format','2'),(353446,42999,'_post_format','field_61756bfb51898'),(353447,42999,'post_author',''),(353448,42999,'_post_author','field_62ec389d22113'),(353449,42999,'post_reviewer',''),(353450,42999,'_post_reviewer','field_627140a2a9800'),(353451,42999,'post_table_of_contents','0'),(353452,42999,'_post_table_of_contents','field_65c503bc846a6'),(353453,42999,'_thumbnail_id','40635'),(353454,42999,'__thumbnail_id','field_617570855ddaf'),(353455,43001,'hide_hero','0'),(353456,43001,'_hide_hero','field_66a2380fcda39'),(353457,43001,'hero_title','Anatomy for Personal Trainers: What Every PT Should Know'),(353458,43001,'_hero_title','field_617571fe285e8'),(353459,43001,'hero_text','\r\n\r\n'),(353460,43001,'_hero_text','field_6175723c285e9'),(353461,43001,'hero_actions',''),(353462,43001,'_hero_actions','field_61757270285ea'),(353463,43001,'hero_style','default'),(353464,43001,'_hero_style','field_62051d9dc5324'),(353465,43001,'hero_image_pos_x','right'),(353466,43001,'_hero_image_pos_x','field_62ec3d05390bb'),(353467,43001,'hero_image_pos_y','top'),(353468,43001,'_hero_image_pos_y','field_62ec3d05390bc'),(353469,43001,'hero_image_pos',''),(353470,43001,'_hero_image_pos','field_62ec3d05390ba'),(353471,43001,'fft_hide_from_listings','0'),(353472,43001,'_fft_hide_from_listings','field_61f1320446ab2'),(353473,43001,'post_format','2'),(353474,43001,'_post_format','field_61756bfb51898'),(353475,43001,'post_author',''),(353476,43001,'_post_author','field_62ec389d22113'),(353477,43001,'post_reviewer',''),(353478,43001,'_post_reviewer','field_627140a2a9800'),(353479,43001,'post_table_of_contents','0'),(353480,43001,'_post_table_of_contents','field_65c503bc846a6'),(353481,43001,'_thumbnail_id','40635'),(353482,43001,'__thumbnail_id','field_617570855ddaf'),(353483,43002,'hide_hero','0'),(353484,43002,'_hide_hero','field_66a2380fcda39'),(353485,43002,'hero_title','Anatomy for Personal Trainers: What Every PT Should Know'),(353486,43002,'_hero_title','field_617571fe285e8'),(353487,43002,'hero_text','\r\n\r\n'),(353488,43002,'_hero_text','field_6175723c285e9'),(353489,43002,'hero_actions',''),(353490,43002,'_hero_actions','field_61757270285ea'),(353491,43002,'hero_style','default'),(353492,43002,'_hero_style','field_62051d9dc5324'),(353493,43002,'hero_image_pos_x','right'),(353494,43002,'_hero_image_pos_x','field_62ec3d05390bb'),(353495,43002,'hero_image_pos_y','top'),(353496,43002,'_hero_image_pos_y','field_62ec3d05390bc'),(353497,43002,'hero_image_pos',''),(353498,43002,'_hero_image_pos','field_62ec3d05390ba'),(353499,43002,'fft_hide_from_listings','0'),(353500,43002,'_fft_hide_from_listings','field_61f1320446ab2'),(353501,43002,'post_format','2'),(353502,43002,'_post_format','field_61756bfb51898'),(353503,43002,'post_author',''),(353504,43002,'_post_author','field_62ec389d22113'),(353505,43002,'post_reviewer',''),(353506,43002,'_post_reviewer','field_627140a2a9800'),(353507,43002,'post_table_of_contents','0'),(353508,43002,'_post_table_of_contents','field_65c503bc846a6'),(353509,43002,'_thumbnail_id','40635'),(353510,43002,'__thumbnail_id','field_617570855ddaf'),(353511,42986,'_yoast_wpseo_metadesc','Why anatomy matters for Personal Trainers: Improve results, reduce injury, and boost coaching confidence through movement analysis.'),(353512,43010,'hide_hero','0'),(353513,43010,'_hide_hero','field_66a2380fcda39'),(353514,43010,'hero_title','Download Price Guide - Validation Test'),(353515,43010,'_hero_title','field_617571fe285e8'),(353516,43010,'hero_text',''),(353517,43010,'_hero_text','field_6175723c285e9'),(353518,43010,'hero_actions',''),(353519,43010,'_hero_actions','field_61757270285ea'),(353520,43010,'hero_style','default'),(353521,43010,'_hero_style','field_62051d9dc5324'),(353522,43010,'hero_image_pos_x','right'),(353523,43010,'_hero_image_pos_x','field_62ec3d05390bb'),(353524,43010,'hero_image_pos_y','top'),(353525,43010,'_hero_image_pos_y','field_62ec3d05390bc'),(353526,43010,'hero_image_pos',''),(353527,43010,'_hero_image_pos','field_62ec3d05390ba'),(353528,43010,'fft_hide_from_listings','0'),(353529,43010,'_fft_hide_from_listings','field_61f1320446ab2'),(353530,43010,'fft_page_format','default'),(353531,43010,'_fft_page_format','field_61ae213f1f218'),(353532,43010,'fft_hide_nav','0'),(353533,43010,'_fft_hide_nav','field_635bd5e43527c'),(353534,43010,'fft_hide_header_call_to_action','0'),(353535,43010,'_fft_hide_header_call_to_action','field_635bd6723527d'),(353536,43010,'fft_page_sitemap','0'),(353537,43010,'_fft_page_sitemap','field_61af9b34e8181'),(353538,43010,'blocks','a:7:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:5:\"quote\";i:4;s:10:\"link_stack\";i:5;s:18:\"testimonial_slider\";i:6;s:16:\"standard_content\";}'),(353539,43010,'_blocks','field_6176696113096'),(353540,43010,'_thumbnail_id','40294'),(353541,43010,'__thumbnail_id','field_617570855ddaf'),(353542,43010,'blocks_0_acfe_flexible_toggle',''),(353543,43010,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(353544,43010,'blocks_0_acfe_flexible_layout_title','Form'),(353545,43010,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(353546,43010,'blocks_0_row_content_format','standard'),(353547,43010,'_blocks_0_row_content_format','field_6481ead962881'),(353548,43010,'blocks_0_row_content_title','Enquire Now'),(353549,43010,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(353550,43010,'blocks_0_row_content_heading','Course Information and Price Guide'),(353551,43010,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(353552,43010,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain an overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(353553,43010,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(353554,43010,'blocks_0_row_content_actions',''),(353555,43010,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(353556,43010,'blocks_0_row_content',''),(353557,43010,'_blocks_0_row_content','field_61a0f5f5b3db0'),(353558,43010,'blocks_0_row_form','40394'),(353559,43010,'_blocks_0_row_form','field_61a4ff2c0b08e'),(353560,43010,'blocks_0_row_form_button_label',''),(353561,43010,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(353562,43010,'blocks_1_acfe_flexible_toggle','1'),(353563,43010,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(353564,43010,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(353565,43010,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(353566,43010,'blocks_1_options_theme','#ffffff'),(353567,43010,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(353568,43010,'blocks_1_options_reverse','0'),(353569,43010,'_blocks_1_options_reverse','field_61768049bb8ac'),(353570,43010,'blocks_1_options',''),(353571,43010,'_blocks_1_options','field_617682517c334'),(353572,43010,'blocks_1_split_5050_image','39271'),(353573,43010,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(353574,43010,'blocks_1_split_5050_video',''),(353575,43010,'_blocks_1_split_5050_video','field_6239f3160848a'),(353576,43010,'blocks_1_split_5050_content_title',''),(353577,43010,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(353578,43010,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(353579,43010,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(353580,43010,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(353581,43010,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(353582,43010,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(353583,43010,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(353584,43010,'blocks_1_split_5050_content_actions','1'),(353585,43010,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(353586,43010,'blocks_1_split_5050_content',''),(353587,43010,'_blocks_1_split_5050_content','field_61767afceb8ba'),(353588,43010,'blocks_2_acfe_flexible_toggle',''),(353589,43010,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(353590,43010,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(353591,43010,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(353592,43010,'blocks_2_options_theme','#ffffff'),(353593,43010,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(353594,43010,'blocks_2_options_reverse','0'),(353595,43010,'_blocks_2_options_reverse','field_61768049bb8ac'),(353596,43010,'blocks_2_options',''),(353597,43010,'_blocks_2_options','field_617682517c334'),(353598,43010,'blocks_2_split_5050_image','39271'),(353599,43010,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(353600,43010,'blocks_2_split_5050_video',''),(353601,43010,'_blocks_2_split_5050_video','field_6239f3160848a'),(353602,43010,'blocks_2_split_5050_content_title',''),(353603,43010,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(353604,43010,'blocks_2_split_5050_content_heading','What\'s included in this guide?'),(353605,43010,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(353606,43010,'blocks_2_split_5050_content_text','[accordion title=\"Understand our prices\" content=\"we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\"]\r\n\r\n[accordion title=\"Get to know our courses\" content=\"Access a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you’ll receive, awarding bodies and accreditations.\"]\r\n\r\n[accordion title=\"Learn about us as a business\" content=\"Get valuable information about Biomechanics Education and Future Fit Group. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.\"]'),(353607,43010,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(353608,43010,'blocks_2_split_5050_content_actions','1'),(353609,43010,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(353610,43010,'blocks_2_split_5050_content',''),(353611,43010,'_blocks_2_split_5050_content','field_61767afceb8ba'),(353612,43010,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(353613,43010,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(353614,43010,'blocks_3_acfe_flexible_toggle',''),(353615,43010,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(353616,43010,'blocks_3_acfe_flexible_layout_title','Quote'),(353617,43010,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(353618,43010,'blocks_3_quote_content','I just wanted to say thank you for transforming my knowledge. Without the Biomechanics Coaching Diploma, I would have been lost, but now I feel like I\'m not only giving clients a better understanding of their body but also further education is making more sense to me.  '),(353619,43010,'_blocks_3_quote_content','field_6177cdacdd67a'),(353620,43010,'blocks_3_quote_author',''),(353621,43010,'_blocks_3_quote_author','field_6177cdc6dd67b'),(353622,43010,'blocks_4_acfe_flexible_toggle',''),(353623,43010,'_blocks_4_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(353624,43010,'blocks_4_acfe_flexible_layout_title','Link Stack'),(353625,43010,'_blocks_4_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(353626,43010,'blocks_4_options_theme','#ffffff'),(353627,43010,'_blocks_4_options_theme','field_6177b758246af_field_6176830e2ad17'),(353628,43010,'blocks_4_options',''),(353629,43010,'_blocks_4_options','field_6177b758246ae'),(353630,43010,'blocks_4_link_stack_content_title',''),(353631,43010,'_blocks_4_link_stack_content_title','field_6177b7b600cf9'),(353632,43010,'blocks_4_link_stack_content_heading','Discover our expertise'),(353633,43010,'_blocks_4_link_stack_content_heading','field_6177b7b600cfa'),(353634,43010,'blocks_4_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(353635,43010,'_blocks_4_link_stack_content_text','field_6177b7b600cfb'),(353636,43010,'blocks_4_link_stack_content_actions',''),(353637,43010,'_blocks_4_link_stack_content_actions','field_6177b7b600cfc'),(353638,43010,'blocks_4_link_stack_content',''),(353639,43010,'_blocks_4_link_stack_content','field_6177b7b600cf8'),(353640,43010,'blocks_4_link_stack_0_label','Personal Training'),(353641,43010,'_blocks_4_link_stack_0_label','field_6177b80900d00'),(353642,43010,'blocks_4_link_stack_0_title','Discover Biomechanics in Personal Training'),(353643,43010,'_blocks_4_link_stack_0_title','field_6177b80f00d01'),(353644,43010,'blocks_4_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(353645,43010,'_blocks_4_link_stack_0_url','field_6177b82200d02'),(353646,43010,'blocks_4_link_stack_1_label','Pilates'),(353647,43010,'_blocks_4_link_stack_1_label','field_6177b80900d00'),(353648,43010,'blocks_4_link_stack_1_title','Discover Biomechanics in Pilates'),(353649,43010,'_blocks_4_link_stack_1_title','field_6177b80f00d01'),(353650,43010,'blocks_4_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(353651,43010,'_blocks_4_link_stack_1_url','field_6177b82200d02'),(353652,43010,'blocks_4_link_stack_2_label','Sports Coaches'),(353653,43010,'_blocks_4_link_stack_2_label','field_6177b80900d00'),(353654,43010,'blocks_4_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(353655,43010,'_blocks_4_link_stack_2_title','field_6177b80f00d01'),(353656,43010,'blocks_4_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(353657,43010,'_blocks_4_link_stack_2_url','field_6177b82200d02'),(353658,43010,'blocks_4_link_stack_3_label','SMT'),(353659,43010,'_blocks_4_link_stack_3_label','field_6177b80900d00'),(353660,43010,'blocks_4_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(353661,43010,'_blocks_4_link_stack_3_title','field_6177b80f00d01'),(353662,43010,'blocks_4_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(353663,43010,'_blocks_4_link_stack_3_url','field_6177b82200d02'),(353664,43010,'blocks_4_link_stack_4_label','Podiatrists'),(353665,43010,'_blocks_4_link_stack_4_label','field_6177b80900d00'),(353666,43010,'blocks_4_link_stack_4_title','Discover Biomechanics in Podiatry'),(353667,43010,'_blocks_4_link_stack_4_title','field_6177b80f00d01'),(353668,43010,'blocks_4_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(353669,43010,'_blocks_4_link_stack_4_url','field_6177b82200d02'),(353670,43010,'blocks_4_link_stack_5_label','Biomechanics Coach'),(353671,43010,'_blocks_4_link_stack_5_label','field_6177b80900d00'),(353672,43010,'blocks_4_link_stack_5_title','How to Become a Biomechanics Coach'),(353673,43010,'_blocks_4_link_stack_5_title','field_6177b80f00d01'),(353674,43010,'blocks_4_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(353675,43010,'_blocks_4_link_stack_5_url','field_6177b82200d02'),(353676,43010,'blocks_4_link_stack','6'),(353677,43010,'_blocks_4_link_stack','field_6177b7f600cff'),(353678,43010,'blocks_5_acfe_flexible_toggle','1'),(353679,43010,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(353680,43010,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(353681,43010,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(353682,43010,'blocks_5_testimonial_slider_content_title',''),(353683,43010,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(353684,43010,'blocks_5_testimonial_slider_content_heading','Testimonials'),(353685,43010,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(353686,43010,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(353687,43010,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(353688,43010,'blocks_5_testimonial_slider_content_actions',''),(353689,43010,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(353690,43010,'blocks_5_testimonial_slider_content',''),(353691,43010,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(353692,43010,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(353693,43010,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(353694,43010,'blocks_5_testimonial_slider_ambassador_bool','0'),(353695,43010,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(353696,43010,'blocks_6_acfe_flexible_toggle',''),(353697,43010,'_blocks_6_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(353698,43010,'blocks_6_acfe_flexible_layout_title','Standard/Editorial Content - SCRIPT TEST VIA SHORTCODE'),(353699,43010,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(353700,43010,'blocks_6_content',''),(353701,43010,'_blocks_6_content','field_6193c9b5eac84'),(353702,42986,'_yoast_wpseo_focuskw','Anatomy for Personal Trainers'),(353703,42986,'_yoast_wpseo_linkdex','64'),(353704,43016,'hide_hero','0'),(353705,43016,'_hide_hero','field_66a2380fcda39'),(353706,43016,'hero_title','Anatomy for Personal Trainers: What Every PT Should Know'),(353707,43016,'_hero_title','field_617571fe285e8'),(353708,43016,'hero_text',''),(353709,43016,'_hero_text','field_6175723c285e9'),(353710,43016,'hero_actions',''),(353711,43016,'_hero_actions','field_61757270285ea'),(353712,43016,'hero_style','default'),(353713,43016,'_hero_style','field_62051d9dc5324'),(353714,43016,'hero_image_pos_x','right'),(353715,43016,'_hero_image_pos_x','field_62ec3d05390bb'),(353716,43016,'hero_image_pos_y','top'),(353717,43016,'_hero_image_pos_y','field_62ec3d05390bc'),(353718,43016,'hero_image_pos',''),(353719,43016,'_hero_image_pos','field_62ec3d05390ba'),(353720,43016,'fft_hide_from_listings','0'),(353721,43016,'_fft_hide_from_listings','field_61f1320446ab2'),(353722,43016,'post_format','2'),(353723,43016,'_post_format','field_61756bfb51898'),(353724,43016,'post_author',''),(353725,43016,'_post_author','field_62ec389d22113'),(353726,43016,'post_reviewer',''),(353727,43016,'_post_reviewer','field_627140a2a9800'),(353728,43016,'post_table_of_contents','0'),(353729,43016,'_post_table_of_contents','field_65c503bc846a6'),(353730,43016,'_thumbnail_id','40635'),(353731,43016,'__thumbnail_id','field_617570855ddaf'),(353732,43019,'_edit_lock','1751534476:17'),(353733,43019,'_edit_last','17'),(353734,42431,'_yoast_wpseo_content_score','90'),(353736,43020,'hide_hero','0'),(353737,43020,'_hide_hero','field_66a2380fcda39'),(353738,43020,'hero_title',''),(353739,43020,'_hero_title','field_617571fe285e8'),(353740,43020,'hero_text','A Guide to Musculoskeletal Education and Its Role in Biomechanics'),(353741,43020,'_hero_text','field_6175723c285e9'),(353742,43020,'hero_actions',''),(353743,43020,'_hero_actions','field_61757270285ea'),(353744,43020,'hero_style','default'),(353745,43020,'_hero_style','field_62051d9dc5324'),(353746,43020,'hero_image_pos_x','right'),(353747,43020,'_hero_image_pos_x','field_62ec3d05390bb'),(353748,43020,'hero_image_pos_y','top'),(353749,43020,'_hero_image_pos_y','field_62ec3d05390bc'),(353750,43020,'hero_image_pos',''),(353751,43020,'_hero_image_pos','field_62ec3d05390ba'),(353752,43020,'fft_hide_from_listings','0'),(353753,43020,'_fft_hide_from_listings','field_61f1320446ab2'),(353754,43020,'post_format','402'),(353755,43020,'_post_format','field_61756bfb51898'),(353756,43020,'post_author',''),(353757,43020,'_post_author','field_62ec389d22113'),(353758,43020,'post_reviewer',''),(353759,43020,'_post_reviewer','field_627140a2a9800'),(353760,43020,'post_table_of_contents','0'),(353761,43020,'_post_table_of_contents','field_65c503bc846a6'),(353762,43020,'blocks','a:22:{i:0;s:10:\"link_stack\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:10:\"split_5050\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:10:\"split_5050\";i:8;s:10:\"split_5050\";i:9;s:10:\"split_5050\";i:10;s:10:\"accordions\";i:11;s:10:\"text_block\";i:12;s:10:\"split_5050\";i:13;s:10:\"split_5050\";i:14;s:10:\"split_5050\";i:15;s:10:\"text_block\";i:16;s:5:\"icons\";i:17;s:10:\"split_5050\";i:18;s:10:\"text_block\";i:19;s:10:\"text_block\";i:20;s:10:\"text_block\";i:21;s:11:\"promo_panel\";}'),(353763,43020,'_blocks','field_6176696113096'),(353764,43020,'_thumbnail_id','40618'),(353765,43020,'__thumbnail_id','field_617570855ddaf'),(353766,43020,'blocks_0_acfe_flexible_toggle',''),(353767,43020,'_blocks_0_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(353768,43020,'blocks_0_acfe_flexible_layout_title','Learn More[anchor]'),(353769,43020,'_blocks_0_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(353770,43020,'blocks_0_options_theme','#ffffff'),(353771,43020,'_blocks_0_options_theme','field_6177b758246af_field_6176830e2ad17'),(353772,43020,'blocks_0_options',''),(353773,43020,'_blocks_0_options','field_6177b758246ae'),(353774,43020,'blocks_0_link_stack_content_title',''),(353775,43020,'_blocks_0_link_stack_content_title','field_6177b7b600cf9'),(353776,43020,'blocks_0_link_stack_content_heading','What is MSK?'),(353777,43020,'_blocks_0_link_stack_content_heading','field_6177b7b600cfa'),(353778,43020,'blocks_0_link_stack_content_text','<p data-start=\"0\" data-end=\"179\">Have you come across the term MSK and wondered what it means? Or perhaps you\'re considering studying musculoskeletal (MSK) health but aren\'t sure if it’s the right path for you?</p>\r\n<p data-start=\"181\" data-end=\"442\">MSK refers to the musculoskeletal system—a complex network of muscles, bones, joints, and connective tissues that enable movement and support daily function. When this system is compromised, it can lead to pain, mobility issues, and long-term health concerns.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\"></p>'),(353779,43020,'_blocks_0_link_stack_content_text','field_6177b7b600cfb'),(353780,43020,'blocks_0_link_stack_content_actions_0_button',''),(353781,43020,'_blocks_0_link_stack_content_actions_0_button','field_6177b7b600cfd'),(353782,43020,'blocks_0_link_stack_content_actions','1'),(353783,43020,'_blocks_0_link_stack_content_actions','field_6177b7b600cfc'),(353784,43020,'blocks_0_link_stack_content',''),(353785,43020,'_blocks_0_link_stack_content','field_6177b7b600cf8'),(353786,43020,'blocks_0_link_stack_0_label','1.'),(353787,43020,'_blocks_0_link_stack_0_label','field_6177b80900d00'),(353788,43020,'blocks_0_link_stack_0_title','Overview'),(353789,43020,'_blocks_0_link_stack_0_title','field_6177b80f00d01'),(353790,43020,'blocks_0_link_stack_0_url','#overview'),(353791,43020,'_blocks_0_link_stack_0_url','field_6177b82200d02'),(353792,43020,'blocks_0_link_stack_1_label','2.'),(353793,43020,'_blocks_0_link_stack_1_label','field_6177b80900d00'),(353794,43020,'blocks_0_link_stack_1_title','Understanding Musculoskeletal (MSK) Health'),(353795,43020,'_blocks_0_link_stack_1_title','field_6177b80f00d01'),(353796,43020,'blocks_0_link_stack_1_url','#understanding-musculoskeletal-msk-health'),(353797,43020,'_blocks_0_link_stack_1_url','field_6177b82200d02'),(353798,43020,'blocks_0_link_stack_2_label','3.'),(353799,43020,'_blocks_0_link_stack_2_label','field_6177b80900d00'),(353800,43020,'blocks_0_link_stack_2_title','Who Should Study MSK?'),(353801,43020,'_blocks_0_link_stack_2_title','field_6177b80f00d01'),(353802,43020,'blocks_0_link_stack_2_url','#who-should-study-msk'),(353803,43020,'_blocks_0_link_stack_2_url','field_6177b82200d02'),(353804,43020,'blocks_0_link_stack_3_label','4.'),(353805,43020,'_blocks_0_link_stack_3_label','field_6177b80900d00'),(353806,43020,'blocks_0_link_stack_3_title','Common MSK Conditions'),(353807,43020,'_blocks_0_link_stack_3_title','field_6177b80f00d01'),(353808,43020,'blocks_0_link_stack_3_url','#common-msk-conditions'),(353809,43020,'_blocks_0_link_stack_3_url','field_6177b82200d02'),(353810,43020,'blocks_0_link_stack_4_label','5.'),(353811,43020,'_blocks_0_link_stack_4_label','field_6177b80900d00'),(353812,43020,'blocks_0_link_stack_4_title','The Importance of MSK Education'),(353813,43020,'_blocks_0_link_stack_4_title','field_6177b80f00d01'),(353814,43020,'blocks_0_link_stack_4_url','#the-importance-of-msk-education'),(353815,43020,'_blocks_0_link_stack_4_url','field_6177b82200d02'),(353816,43020,'blocks_0_link_stack_5_label','6.'),(353817,43020,'_blocks_0_link_stack_5_label','field_6177b80900d00'),(353818,43020,'blocks_0_link_stack_5_title','The Role of MSK Education in Workplace Health'),(353819,43020,'_blocks_0_link_stack_5_title','field_6177b80f00d01'),(353820,43020,'blocks_0_link_stack_5_url','#the-role-of-msk-education-in-workplace-health'),(353821,43020,'_blocks_0_link_stack_5_url','field_6177b82200d02'),(353822,43020,'blocks_0_link_stack','6'),(353823,43020,'_blocks_0_link_stack','field_6177b7f600cff'),(353824,43020,'blocks_1_acfe_flexible_toggle',''),(353825,43020,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(353826,43020,'blocks_1_acfe_flexible_layout_title','Overview[anchor]'),(353827,43020,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(353828,43020,'blocks_1_options_theme','#ffffff'),(353829,43020,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(353830,43020,'blocks_1_options_reverse','0'),(353831,43020,'_blocks_1_options_reverse','field_61768049bb8ac'),(353832,43020,'blocks_1_options',''),(353833,43020,'_blocks_1_options','field_617682517c334'),(353834,43020,'blocks_1_split_5050_image','40615'),(353835,43020,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(353836,43020,'blocks_1_split_5050_video',''),(353837,43020,'_blocks_1_split_5050_video','field_6239f3160848a'),(353838,43020,'blocks_1_split_5050_content_title',''),(353839,43020,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(353840,43020,'blocks_1_split_5050_content_heading','Overview'),(353841,43020,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(353842,43020,'blocks_1_split_5050_content_text','<p data-start=\"444\" data-end=\"822\">In the UK, MSK conditions are widespread, impacting over 20 million people. These conditions range from minor discomfort to chronic issues like arthritis and osteoporosis. While MSK health is often linked to medical treatment, fitness professionals, movement specialists, and rehabilitation experts also play a vital role in maintaining and improving musculoskeletal function.</p>\r\n<p data-start=\"824\" data-end=\"1173\" data-is-last-node=\"\" data-is-only-node=\"\">At Biomechanics Education, we believe that knowledge of musculoskeletal health isn’t just for healthcare professionals—it’s valuable for anyone working with human movement. Whether you\'re in fitness, rehabilitation, or workplace wellness, understanding MSK health can help you enhance movement, prevent injuries, and improve overall quality of life.</p>'),(353843,43020,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(353844,43020,'blocks_1_split_5050_content_actions',''),(353845,43020,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(353846,43020,'blocks_1_split_5050_content',''),(353847,43020,'_blocks_1_split_5050_content','field_61767afceb8ba'),(353848,43020,'blocks_3_acfe_flexible_toggle','1'),(353849,43020,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(353850,43020,'blocks_3_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health (2)'),(353851,43020,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(353852,43020,'blocks_3_options_theme','#f5f5f5'),(353853,43020,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(353854,43020,'blocks_3_options_reverse','1'),(353855,43020,'_blocks_3_options_reverse','field_61768049bb8ac'),(353856,43020,'blocks_3_options',''),(353857,43020,'_blocks_3_options','field_617682517c334'),(353858,43020,'blocks_3_split_5050_image','41330'),(353859,43020,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(353860,43020,'blocks_3_split_5050_video',''),(353861,43020,'_blocks_3_split_5050_video','field_6239f3160848a'),(353862,43020,'blocks_3_split_5050_content_title',''),(353863,43020,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(353864,43020,'blocks_3_split_5050_content_heading',''),(353865,43020,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(353866,43020,'blocks_3_split_5050_content_text',''),(353867,43020,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(353868,43020,'blocks_3_split_5050_content_actions',''),(353869,43020,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(353870,43020,'blocks_3_split_5050_content',''),(353871,43020,'_blocks_3_split_5050_content','field_61767afceb8ba'),(353872,43020,'blocks_7_acfe_flexible_toggle',''),(353873,43020,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(353874,43020,'blocks_7_acfe_flexible_layout_title','50/50 Split - Fitness and Sports Professionals'),(353875,43020,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(353876,43020,'blocks_7_options_theme','#ffffff'),(353877,43020,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(353878,43020,'blocks_7_options_reverse','0'),(353879,43020,'_blocks_7_options_reverse','field_61768049bb8ac'),(353880,43020,'blocks_7_options',''),(353881,43020,'_blocks_7_options','field_617682517c334'),(353882,43020,'blocks_7_split_5050_image','41539'),(353883,43020,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(353884,43020,'blocks_7_split_5050_video',''),(353885,43020,'_blocks_7_split_5050_video','field_6239f3160848a'),(353886,43020,'blocks_7_split_5050_content_title','Fitness and Sports Professionals'),(353887,43020,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(353888,43020,'blocks_7_split_5050_content_heading',''),(353889,43020,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(353890,43020,'blocks_7_split_5050_content_text','Personal trainers, coaches, and therapists looking to refine their understanding of movement, injury prevention, and rehabilitation.\r\n<ul>\r\n 	<li><strong>Provides deeper insight</strong> into movement mechanics and injury prevention.</li>\r\n 	<li><strong>Enhances coaching skills</strong> to help clients achieve better mobility and performance.</li>\r\n 	<li><strong>Increases earning potential</strong> by offering specialised MSK-focused training programs.</li>\r\n 	<li>Allows professionals to <strong>work alongside</strong> healthcare providers in rehabilitation settings.</li>\r\n</ul>'),(353891,43020,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(353892,43020,'blocks_7_split_5050_content_actions',''),(353893,43020,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(353894,43020,'blocks_7_split_5050_content',''),(353895,43020,'_blocks_7_split_5050_content','field_61767afceb8ba'),(353896,43020,'blocks_8_acfe_flexible_toggle',''),(353897,43020,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(353898,43020,'blocks_8_acfe_flexible_layout_title','50/50 Split - Educators and Researchers'),(353899,43020,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(353900,43020,'blocks_8_options_theme','#ffffff'),(353901,43020,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(353902,43020,'blocks_8_options_reverse','0'),(353903,43020,'_blocks_8_options_reverse','field_61768049bb8ac'),(353904,43020,'blocks_8_options',''),(353905,43020,'_blocks_8_options','field_617682517c334'),(353906,43020,'blocks_8_split_5050_image','41502'),(353907,43020,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(353908,43020,'blocks_8_split_5050_video',''),(353909,43020,'_blocks_8_split_5050_video','field_6239f3160848a'),(353910,43020,'blocks_8_split_5050_content_title','Educators and Researchers'),(353911,43020,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(353912,43020,'blocks_8_split_5050_content_heading',''),(353913,43020,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(353914,43020,'blocks_8_split_5050_content_text','Those studying human movement, biomechanics, or rehabilitation methods.\r\n<ul>\r\n 	<li><strong>Supports in-depth analysis</strong> of human movement and performance.</li>\r\n 	<li>Contributes to the <strong>development of innovative injury prevention</strong> strategies.</li>\r\n 	<li><strong>Enhances credibility</strong> in academic and research settings.</li>\r\n 	<li><strong>Opens opportunities</strong> for collaborations with healthcare and sports industries.</li>\r\n</ul>'),(353915,43020,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(353916,43020,'blocks_8_split_5050_content_actions',''),(353917,43020,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(353918,43020,'blocks_8_split_5050_content',''),(353919,43020,'_blocks_8_split_5050_content','field_61767afceb8ba'),(353920,43020,'blocks_9_acfe_flexible_toggle',''),(353921,43020,'_blocks_9_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(353922,43020,'blocks_9_acfe_flexible_layout_title','50/50 Split - Ergonomists and Occupational Health Specialists'),(353923,43020,'_blocks_9_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(353924,43020,'blocks_9_options_theme','#ffffff'),(353925,43020,'_blocks_9_options_theme','field_617682847c335_field_6176830e2ad17'),(353926,43020,'blocks_9_options_reverse','0'),(353927,43020,'_blocks_9_options_reverse','field_61768049bb8ac'),(353928,43020,'blocks_9_options',''),(353929,43020,'_blocks_9_options','field_617682517c334'),(353930,43020,'blocks_9_split_5050_image','41506'),(353931,43020,'_blocks_9_split_5050_image','field_6239f527a0c3a'),(353932,43020,'blocks_9_split_5050_video',''),(353933,43020,'_blocks_9_split_5050_video','field_6239f3160848a'),(353934,43020,'blocks_9_split_5050_content_title','Ergonomists and Occupational Health Specialists'),(353935,43020,'_blocks_9_split_5050_content_title','field_61767bfca3fc0'),(353936,43020,'blocks_9_split_5050_content_heading',''),(353937,43020,'_blocks_9_split_5050_content_heading','field_61767b26eb8bb'),(353938,43020,'blocks_9_split_5050_content_text','Professionals working to reduce workplace strain, improve posture, and prevent MSK injuries.\r\n<ul>\r\n 	<li>Helps identify and <strong>reduce workplace-related MSK risks</strong>.</li>\r\n 	<li><strong>Improves posture and movement efficiency</strong> in professional environments.</li>\r\n 	<li><strong>Enhances career prospects</strong> in corporate wellness and occupational health.</li>\r\n 	<li><strong>Supports compliance</strong> with health and safety regulations, reducing workplace injuries.</li>\r\n</ul>'),(353939,43020,'_blocks_9_split_5050_content_text','field_61767b3beb8bc'),(353940,43020,'blocks_9_split_5050_content_actions',''),(353941,43020,'_blocks_9_split_5050_content_actions','field_61767b68eb8bd'),(353942,43020,'blocks_9_split_5050_content',''),(353943,43020,'_blocks_9_split_5050_content','field_61767afceb8ba'),(353944,43020,'blocks_13_acfe_flexible_toggle',''),(353945,43020,'_blocks_13_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(353946,43020,'blocks_13_acfe_flexible_layout_title','The Importance of MSK Education (2) '),(353947,43020,'_blocks_13_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(353948,43020,'blocks_13_options_theme','#ffffff'),(353949,43020,'_blocks_13_options_theme','field_617682847c335_field_6176830e2ad17'),(353950,43020,'blocks_13_options_reverse','1'),(353951,43020,'_blocks_13_options_reverse','field_61768049bb8ac'),(353952,43020,'blocks_13_options',''),(353953,43020,'_blocks_13_options','field_617682517c334'),(353954,43020,'blocks_13_split_5050_image','40387'),(353955,43020,'_blocks_13_split_5050_image','field_6239f527a0c3a'),(353956,43020,'blocks_13_split_5050_video',''),(353957,43020,'_blocks_13_split_5050_video','field_6239f3160848a'),(353958,43020,'blocks_13_split_5050_content_title','Early Detection and Targeted Interventions'),(353959,43020,'_blocks_13_split_5050_content_title','field_61767bfca3fc0'),(353960,43020,'blocks_13_split_5050_content_heading',''),(353961,43020,'_blocks_13_split_5050_content_heading','field_61767b26eb8bb'),(353962,43020,'blocks_13_split_5050_content_text','A deeper understanding of MSK health enables professionals to identify movement dysfunctions, provide tailored interventions, and improve long-term outcomes. Knowledge of biomechanics and movement helps reduce the risk of injuries, particularly in physically active individuals or those recovering from previous issues. Recognising the early signs of MSK conditions allows for quicker, more effective action before minor issues develop into chronic problems.'),(353963,43020,'_blocks_13_split_5050_content_text','field_61767b3beb8bc'),(353964,43020,'blocks_13_split_5050_content_actions',''),(353965,43020,'_blocks_13_split_5050_content_actions','field_61767b68eb8bd'),(353966,43020,'blocks_13_split_5050_content',''),(353967,43020,'_blocks_13_split_5050_content','field_61767afceb8ba'),(353968,43020,'blocks_14_acfe_flexible_toggle',''),(353969,43020,'_blocks_14_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(353970,43020,'blocks_14_acfe_flexible_layout_title','The Importance of MSK Education (3) '),(353971,43020,'_blocks_14_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(353972,43020,'blocks_14_options_theme','#ffffff'),(353973,43020,'_blocks_14_options_theme','field_617682847c335_field_6176830e2ad17'),(353974,43020,'blocks_14_options_reverse','1'),(353975,43020,'_blocks_14_options_reverse','field_61768049bb8ac'),(353976,43020,'blocks_14_options',''),(353977,43020,'_blocks_14_options','field_617682517c334'),(353978,43020,'blocks_14_split_5050_image','18856'),(353979,43020,'_blocks_14_split_5050_image','field_6239f527a0c3a'),(353980,43020,'blocks_14_split_5050_video',''),(353981,43020,'_blocks_14_split_5050_video','field_6239f3160848a'),(353982,43020,'blocks_14_split_5050_content_title','Bridging the Gap Between Disciplines'),(353983,43020,'_blocks_14_split_5050_content_title','field_61767bfca3fc0'),(353984,43020,'blocks_14_split_5050_content_heading',''),(353985,43020,'_blocks_14_split_5050_content_heading','field_61767b26eb8bb'),(353986,43020,'blocks_14_split_5050_content_text','MSK education also supports collaboration between different fields, bridging the gap between healthcare, fitness, and rehabilitation professionals. As MSK conditions continue to affect millions of people, the demand for professionals with expertise in movement science and injury prevention is increasing. Having the right knowledge and skills can make a significant difference in improving mobility, reducing pain, and maintaining long-term musculoskeletal health.'),(353987,43020,'_blocks_14_split_5050_content_text','field_61767b3beb8bc'),(353988,43020,'blocks_14_split_5050_content_actions',''),(353989,43020,'_blocks_14_split_5050_content_actions','field_61767b68eb8bd'),(353990,43020,'blocks_14_split_5050_content',''),(353991,43020,'_blocks_14_split_5050_content','field_61767afceb8ba'),(353992,43020,'blocks_19_acfe_flexible_toggle',''),(353993,43020,'_blocks_19_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(353994,43020,'blocks_19_acfe_flexible_layout_title','The Role of Intrinsic Biomechanics in MSK Health'),(353995,43020,'_blocks_19_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(353996,43020,'blocks_19_options_theme','#ffffff'),(353997,43020,'_blocks_19_options_theme','field_6176830e2ad17'),(353998,43020,'blocks_19_options',''),(353999,43020,'_blocks_19_options','field_6176830e2ad16'),(354000,43020,'blocks_19_text_block_heading','The Role of Intrinsic Biomechanics in MSK Health'),(354001,43020,'_blocks_19_text_block_heading','field_617669d413097'),(354002,43020,'blocks_19_text_block_content','Intrinsic biomechanics focuses on the body\'s internal systems—how muscles, joints, nerves, and connective tissues interact to produce movement. Unlike traditional biomechanical approaches that often assess movement from an external perspective, intrinsic biomechanics looks at the deeper neuromuscular factors that influence motion quality.\r\n\r\nBy incorporating intrinsic biomechanics into MSK education, professionals gain a more refined understanding of how movement dysfunctions develop. These dysfunctions often start as subtle imbalances within the nervous and musculoskeletal systems before manifesting as pain, stiffness, or injuries. Addressing these intrinsic factors allows for a more preventative approach to MSK care rather than just managing symptoms after an issue arises.'),(354003,43020,'_blocks_19_text_block_content','field_617669ec13098'),(354004,43020,'blocks_20_acfe_flexible_toggle',''),(354005,43020,'_blocks_20_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(354006,43020,'blocks_20_acfe_flexible_layout_title','Conclusion'),(354007,43020,'_blocks_20_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(354008,43020,'blocks_20_options_theme','#b61234'),(354009,43020,'_blocks_20_options_theme','field_6176830e2ad17'),(354010,43020,'blocks_20_options',''),(354011,43020,'_blocks_20_options','field_6176830e2ad16'),(354012,43020,'blocks_20_text_block_heading','Conclusion'),(354013,43020,'_blocks_20_text_block_heading','field_617669d413097'),(354014,43020,'blocks_20_text_block_content','For personal trainers, sports coaches, and rehabilitation specialists, having a strong grasp of intrinsic biomechanics within MSK education means they can support clients with a more refined, evidence-based approach. Whether working with athletes aiming to enhance performance, clients recovering from injuries, or individuals looking to maintain mobility as they age, an understanding of intrinsic biomechanics ensures that movement interventions are more precise, effective, and sustainable.\r\n\r\nRather than just correcting poor movement habits at a surface level, this approach allows professionals to address the root causes of dysfunction, leading to long-term improvements in strength, mobility, and overall musculoskeletal health.'),(354015,43020,'_blocks_20_text_block_content','field_617669ec13098'),(354016,43020,'blocks_6_acfe_flexible_toggle',''),(354017,43020,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(354018,43020,'blocks_6_acfe_flexible_layout_title','50/50 Split - Current Practitioners'),(354019,43020,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(354020,43020,'blocks_6_options_theme','#ffffff'),(354021,43020,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(354022,43020,'blocks_6_options_reverse','0'),(354023,43020,'_blocks_6_options_reverse','field_61768049bb8ac'),(354024,43020,'blocks_6_options',''),(354025,43020,'_blocks_6_options','field_617682517c334'),(354026,43020,'blocks_6_split_5050_image','41505'),(354027,43020,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(354028,43020,'blocks_6_split_5050_video',''),(354029,43020,'_blocks_6_split_5050_video','field_6239f3160848a'),(354030,43020,'blocks_6_split_5050_content_title','Current Practitioners'),(354031,43020,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(354032,43020,'blocks_6_split_5050_content_heading',''),(354033,43020,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(354034,43020,'blocks_6_split_5050_content_text','Medical and allied health professionals who want to expand their skills in MSK assessment and treatment.\r\n<ul>\r\n 	<li><strong>Expands expertise</strong> in MSK assessment, allowing for more effective treatment plans.</li>\r\n 	<li><strong>Helps integrate</strong> evidence-based movement strategies into patient care.</li>\r\n 	<li><strong>Increases client satisfaction</strong> through improved rehabilitation outcomes.</li>\r\n 	<li><strong>Opens doors</strong> to higher-paying specialist roles or private practice opportunities.</li>\r\n</ul>'),(354035,43020,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(354036,43020,'blocks_6_split_5050_content_actions',''),(354037,43020,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(354038,43020,'blocks_6_split_5050_content',''),(354039,43020,'_blocks_6_split_5050_content','field_61767afceb8ba'),(354040,43020,'blocks_2_acfe_flexible_toggle',''),(354041,43020,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(354042,43020,'blocks_2_acfe_flexible_layout_title','Understanding Musculoskeletal (MSK) Health[anchor]'),(354043,43020,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(354044,43020,'blocks_2_options_theme','#f5f5f5'),(354045,43020,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(354046,43020,'blocks_2_options_reverse','1'),(354047,43020,'_blocks_2_options_reverse','field_61768049bb8ac'),(354048,43020,'blocks_2_options',''),(354049,43020,'_blocks_2_options','field_617682517c334'),(354050,43020,'blocks_2_split_5050_image','41307'),(354051,43020,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(354052,43020,'blocks_2_split_5050_video',''),(354053,43020,'_blocks_2_split_5050_video','field_6239f3160848a'),(354054,43020,'blocks_2_split_5050_content_title',''),(354055,43020,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(354056,43020,'blocks_2_split_5050_content_heading','Understanding Musculoskeletal (MSK) Health'),(354057,43020,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(354058,43020,'blocks_2_split_5050_content_text','MSK stands for musculoskeletal, which refers to the combined systems of muscles and bones that allow movement and provide structural support. The term is often used in clinical settings when discussing MSK conditions, but it also applies to the way the body functions in everyday movement.\r\n\r\n<strong>Bones: </strong>Providing structure and protecting vital organs.\r\n\r\n<strong>Muscles: </strong>Enabling movement by contracting and relaxing.\r\n\r\n<strong>Joints: </strong>Connecting bones and allowing flexibility and a range of motion.\r\n\r\n<strong>Connective Tissues: </strong>Including tendons, ligaments, and cartilage, which support and stabilise the system.\r\n\r\nMaintaining MSK health is essential for staying active, preventing discomfort, and reducing the risk of long-term issues. While medical professionals often focus on treating MSK conditions, movement specialists, fitness trainers, and rehabilitation professionals work on optimising movement and preventing dysfunction before it becomes a clinical issue.'),(354059,43020,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(354060,43020,'blocks_2_split_5050_content_actions',''),(354061,43020,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(354062,43020,'blocks_2_split_5050_content',''),(354063,43020,'_blocks_2_split_5050_content','field_61767afceb8ba'),(354064,43020,'blocks_4_acfe_flexible_toggle',''),(354065,43020,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(354066,43020,'blocks_4_acfe_flexible_layout_title','Who Should Study MSK?[anchor]'),(354067,43020,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(354068,43020,'blocks_4_options_theme','#ffffff'),(354069,43020,'_blocks_4_options_theme','field_6176830e2ad17'),(354070,43020,'blocks_4_options',''),(354071,43020,'_blocks_4_options','field_6176830e2ad16'),(354072,43020,'blocks_4_text_block_heading','Who Should Study MSK?'),(354073,43020,'_blocks_4_text_block_heading','field_617669d413097'),(354074,43020,'blocks_4_text_block_content','Musculoskeletal (MSK) education isn’t just for medical professionals—it’s valuable for anyone who works with movement, rehabilitation, or physical health. Whether you’re in healthcare, fitness, sports, or workplace health, a solid understanding of MSK principles can help you support better movement, prevent injuries, and improve overall well-being.\r\n\r\nStudying MSK helps individuals make informed decisions, apply effective interventions, and promote better movement strategies. The right education can enhance careers, improve client outcomes, and contribute to long-term musculoskeletal health.\r\n\r\nHere are some of the professionals who benefit from MSK education:'),(354075,43020,'_blocks_4_text_block_content','field_617669ec13098'),(354076,43020,'blocks_5_acfe_flexible_toggle',''),(354077,43020,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(354078,43020,'blocks_5_acfe_flexible_layout_title','50/50 Split - Aspiring Healthcare Professionals'),(354079,43020,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(354080,43020,'blocks_5_options_theme','#ffffff'),(354081,43020,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(354082,43020,'blocks_5_options_reverse','0'),(354083,43020,'_blocks_5_options_reverse','field_61768049bb8ac'),(354084,43020,'blocks_5_options',''),(354085,43020,'_blocks_5_options','field_617682517c334'),(354086,43020,'blocks_5_split_5050_image','41542'),(354087,43020,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(354088,43020,'blocks_5_split_5050_video',''),(354089,43020,'_blocks_5_split_5050_video','field_6239f3160848a'),(354090,43020,'blocks_5_split_5050_content_title','Aspiring Healthcare Professionals'),(354091,43020,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(354092,43020,'blocks_5_split_5050_content_heading',''),(354093,43020,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(354094,43020,'blocks_5_split_5050_content_text','Those looking to build a career in physiotherapy, sports therapy, chiropractic care, or orthopaedics.\r\n<ul>\r\n 	<li><strong>Builds a strong foundation</strong> for careers in rehabilitation and injury management.</li>\r\n 	<li><strong>Enhances diagnostic skills</strong> for assessing movement dysfunctions.</li>\r\n 	<li><strong>Increases employability</strong> in hospitals, clinics, and private practice.</li>\r\n 	<li><strong>Provides a competitive edge</strong> in securing specialist roles.</li>\r\n</ul>'),(354095,43020,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(354096,43020,'blocks_5_split_5050_content_actions',''),(354097,43020,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(354098,43020,'blocks_5_split_5050_content',''),(354099,43020,'_blocks_5_split_5050_content','field_61767afceb8ba'),(354100,43020,'blocks_10_acfe_flexible_toggle',''),(354101,43020,'_blocks_10_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(354102,43020,'blocks_10_acfe_flexible_layout_title','Common MSK Conditions[anchor]'),(354103,43020,'_blocks_10_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(354104,43020,'blocks_10_options_theme','#f5f5f5'),(354105,43020,'_blocks_10_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(354106,43020,'blocks_10_options_state','0'),(354107,43020,'_blocks_10_options_state','field_6239fcb7508c5'),(354108,43020,'blocks_10_options',''),(354109,43020,'_blocks_10_options','field_6177e2991ac44'),(354110,43020,'blocks_10_content_title',''),(354111,43020,'_blocks_10_content_title','field_64d237e8bb1e2'),(354112,43020,'blocks_10_content_heading','Common MSK Conditions'),(354113,43020,'_blocks_10_content_heading','field_64d237e8bb1e3'),(354114,43020,'blocks_10_content_text','Understanding musculoskeletal (MSK) conditions is important for recognising early signs of dysfunction, preventing injuries, and managing long-term issues.\r\n\r\nMany of these conditions develop gradually due to movement imbalances, poor mechanics, or a lack of physical activity. While medical treatment is sometimes required, proactive movement strategies and preventative care play a key role in reducing risk and managing symptoms effectively.'),(354115,43020,'_blocks_10_content_text','field_64d237e8bb1e4'),(354116,43020,'blocks_10_content_actions',''),(354117,43020,'_blocks_10_content_actions','field_64d237e8bb1e5'),(354118,43020,'blocks_10_content_align','left'),(354119,43020,'_blocks_10_content_align','field_64d2443e6b6aa'),(354120,43020,'blocks_10_content',''),(354121,43020,'_blocks_10_content','field_64d237e8bb1e1'),(354122,43020,'blocks_10_accordion_content','custom'),(354123,43020,'_blocks_10_accordion_content','field_6177e2c81ac4f'),(354124,43020,'blocks_10_accordion_items_0_title','Osteoarthritis'),(354125,43020,'_blocks_10_accordion_items_0_title','field_6177e2991ac4d'),(354126,43020,'blocks_10_accordion_items_0_text','A degenerative joint condition where cartilage wears down over time, leading to pain, stiffness, and reduced mobility.'),(354127,43020,'_blocks_10_accordion_items_0_text','field_6177e2991ac4e'),(354128,43020,'blocks_10_accordion_items_1_title','Rheumatoid Arthritis'),(354129,43020,'_blocks_10_accordion_items_1_title','field_6177e2991ac4d'),(354130,43020,'blocks_10_accordion_items_1_text','An autoimmune disorder that causes chronic inflammation in the joints, often resulting in pain, swelling, and joint deformities.'),(354131,43020,'_blocks_10_accordion_items_1_text','field_6177e2991ac4e'),(354132,43020,'blocks_10_accordion_items_2_title','Back Pain'),(354133,43020,'_blocks_10_accordion_items_2_title','field_6177e2991ac4d'),(354134,43020,'blocks_10_accordion_items_2_text','One of the most widespread MSK issues, often caused by muscle imbalances or prolonged inactivity.'),(354135,43020,'_blocks_10_accordion_items_2_text','field_6177e2991ac4e'),(354136,43020,'blocks_10_accordion_items_3_title','Osteoporosis'),(354137,43020,'_blocks_10_accordion_items_3_title','field_6177e2991ac4d'),(354138,43020,'blocks_10_accordion_items_3_text','A condition that weakens bones, making them more prone to fractures, particularly in older adults.'),(354139,43020,'_blocks_10_accordion_items_3_text','field_6177e2991ac4e'),(354140,43020,'blocks_10_accordion_items_4_title','Tendinitis'),(354141,43020,'_blocks_10_accordion_items_4_title','field_6177e2991ac4d'),(354142,43020,'blocks_10_accordion_items_4_text','Inflammation of a tendon, usually due to repetitive movements or overuse, causing pain and discomfort around the affected joint.'),(354143,43020,'_blocks_10_accordion_items_4_text','field_6177e2991ac4e'),(354144,43020,'blocks_10_accordion_items_5_title','Carpal Tunnel Syndrome'),(354145,43020,'_blocks_10_accordion_items_5_title','field_6177e2991ac4d'),(354146,43020,'blocks_10_accordion_items_5_text','Compression of the median nerve in the wrist, leading to numbness, tingling, and weakness in the hand.'),(354147,43020,'_blocks_10_accordion_items_5_text','field_6177e2991ac4e'),(354148,43020,'blocks_10_accordion_items_6_title','Fibromyalgia'),(354149,43020,'_blocks_10_accordion_items_6_title','field_6177e2991ac4d'),(354150,43020,'blocks_10_accordion_items_6_text','A chronic condition characterised by widespread pain, fatigue, and increased sensitivity to pressure in muscles and joints.'),(354151,43020,'_blocks_10_accordion_items_6_text','field_6177e2991ac4e'),(354152,43020,'blocks_10_accordion_items_7_title','Repetitive Strain Injuries (RSIs)'),(354153,43020,'_blocks_10_accordion_items_7_title','field_6177e2991ac4d'),(354154,43020,'blocks_10_accordion_items_7_text','A group of conditions caused by repetitive movements, overuse, or poor ergonomics, commonly seen in office workers and manual labourers.'),(354155,43020,'_blocks_10_accordion_items_7_text','field_6177e2991ac4e'),(354156,43020,'blocks_10_accordion_items','8'),(354157,43020,'_blocks_10_accordion_items','field_6177e2991ac4c'),(354158,43020,'blocks_10_actions',''),(354159,43020,'_blocks_10_actions','field_61a746a817f7a'),(354160,43020,'blocks_11_acfe_flexible_toggle',''),(354161,43020,'_blocks_11_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(354162,43020,'blocks_11_acfe_flexible_layout_title','The Importance of MSK Education[anchor] '),(354163,43020,'_blocks_11_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(354164,43020,'blocks_11_options_theme','#ffffff'),(354165,43020,'_blocks_11_options_theme','field_6176830e2ad17'),(354166,43020,'blocks_11_options',''),(354167,43020,'_blocks_11_options','field_6176830e2ad16'),(354168,43020,'blocks_11_text_block_heading','The Importance of MSK Education'),(354169,43020,'_blocks_11_text_block_heading','field_617669d413097'),(354170,43020,'blocks_11_text_block_content','Musculoskeletal (MSK) education is essential for professionals working with human movement, whether in healthcare, fitness, or rehabilitation. A strong understanding of MSK health enables better assessment, injury prevention, and movement optimisation. By equipping professionals with the knowledge to identify and address dysfunctions early, MSK education helps improve long-term physical well-being and overall quality of life.'),(354171,43020,'_blocks_11_text_block_content','field_617669ec13098'),(354172,43020,'blocks_12_acfe_flexible_toggle',''),(354173,43020,'_blocks_12_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(354174,43020,'blocks_12_acfe_flexible_layout_title','The Importance of MSK Education (1) '),(354175,43020,'_blocks_12_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(354176,43020,'blocks_12_options_theme','#ffffff'),(354177,43020,'_blocks_12_options_theme','field_617682847c335_field_6176830e2ad17'),(354178,43020,'blocks_12_options_reverse','1'),(354179,43020,'_blocks_12_options_reverse','field_61768049bb8ac'),(354180,43020,'blocks_12_options',''),(354181,43020,'_blocks_12_options','field_617682517c334'),(354182,43020,'blocks_12_split_5050_image','41498'),(354183,43020,'_blocks_12_split_5050_image','field_6239f527a0c3a'),(354184,43020,'blocks_12_split_5050_video',''),(354185,43020,'_blocks_12_split_5050_video','field_6239f3160848a'),(354186,43020,'blocks_12_split_5050_content_title','Building a Strong Foundation in MSK Health'),(354187,43020,'_blocks_12_split_5050_content_title','field_61767bfca3fc0'),(354188,43020,'blocks_12_split_5050_content_heading',''),(354189,43020,'_blocks_12_split_5050_content_heading','field_61767b26eb8bb'),(354190,43020,'blocks_12_split_5050_content_text','Musculoskeletal (MSK) education goes beyond simply understanding conditions; it provides professionals with the knowledge to prevent issues, improve movement, and enhance physical health. Whether in clinical practice, fitness coaching, or rehabilitation, a strong foundation in MSK health allows for more effective assessment, treatment, and injury prevention.'),(354191,43020,'_blocks_12_split_5050_content_text','field_61767b3beb8bc'),(354192,43020,'blocks_12_split_5050_content_actions',''),(354193,43020,'_blocks_12_split_5050_content_actions','field_61767b68eb8bd'),(354194,43020,'blocks_12_split_5050_content',''),(354195,43020,'_blocks_12_split_5050_content','field_61767afceb8ba'),(354196,43020,'blocks_15_acfe_flexible_toggle',''),(354197,43020,'_blocks_15_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(354198,43020,'blocks_15_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education[anchor]'),(354199,43020,'_blocks_15_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(354200,43020,'blocks_15_options_theme','#b61234'),(354201,43020,'_blocks_15_options_theme','field_6176830e2ad17'),(354202,43020,'blocks_15_options',''),(354203,43020,'_blocks_15_options','field_6176830e2ad16'),(354204,43020,'blocks_15_text_block_heading','How Intrinsic Biomechanics Enhances MSK Education'),(354205,43020,'_blocks_15_text_block_heading','field_617669d413097'),(354206,43020,'blocks_15_text_block_content',''),(354207,43020,'_blocks_15_text_block_content','field_617669ec13098'),(354208,43020,'blocks_16_acfe_flexible_toggle',''),(354209,43020,'_blocks_16_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(354210,43020,'blocks_16_acfe_flexible_layout_title','How Intrinsic Biomechanics Enhances MSK Education'),(354211,43020,'_blocks_16_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(354212,43020,'blocks_16_options_theme','#b61234'),(354213,43020,'_blocks_16_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(354214,43020,'blocks_16_options_format','row'),(354215,43020,'_blocks_16_options_format','field_64bfde9a90690'),(354216,43020,'blocks_16_options',''),(354217,43020,'_blocks_16_options','field_64bfdd9b90684'),(354218,43020,'blocks_16_icon_row_items_0_icon','pass-rate.svg'),(354219,43020,'_blocks_16_icon_row_items_0_icon','field_64bfdd9b9068d'),(354220,43020,'blocks_16_icon_row_items_0_label','More Accurate Assessments'),(354221,43020,'_blocks_16_icon_row_items_0_label','field_64bfdd9c9068e'),(354222,43020,'blocks_16_icon_row_items_0_text','Understanding the internal interactions of the musculoskeletal system helps professionals identify underlying dysfunctions that may not be immediately visible in standard movement assessments'),(354223,43020,'_blocks_16_icon_row_items_0_text','field_64bfdd9c9068f'),(354224,43020,'blocks_16_icon_row_items_1_icon','exceptional-support.svg'),(354225,43020,'_blocks_16_icon_row_items_1_icon','field_64bfdd9b9068d'),(354226,43020,'blocks_16_icon_row_items_1_label','Personalised Movement Strategies'),(354227,43020,'_blocks_16_icon_row_items_1_label','field_64bfdd9c9068e'),(354228,43020,'blocks_16_icon_row_items_1_text','Instead of applying generalised training or rehabilitation plans, fitness and rehabilitation professionals can develop individualised programmes that target specific neuromusculoskeletal imbalances'),(354229,43020,'_blocks_16_icon_row_items_1_text','field_64bfdd9c9068f'),(354230,43020,'blocks_16_icon_row_items_2_icon','lifetime-course-access.svg'),(354231,43020,'_blocks_16_icon_row_items_2_icon','field_64bfdd9b9068d'),(354232,43020,'blocks_16_icon_row_items_2_label','Injury Prevention and Longevity'),(354233,43020,'_blocks_16_icon_row_items_2_label','field_64bfdd9c9068e'),(354234,43020,'blocks_16_icon_row_items_2_text','By identifying and addressing compensatory movement and inefficient neuromuscular function, intrinsic biomechanics helps prevent chronic MSK conditions before they develop'),(354235,43020,'_blocks_16_icon_row_items_2_text','field_64bfdd9c9068f'),(354236,43020,'blocks_16_icon_row_items_3_icon','recognised.svg'),(354237,43020,'_blocks_16_icon_row_items_3_icon','field_64bfdd9b9068d'),(354238,43020,'blocks_16_icon_row_items_3_label','Optimised Performance'),(354239,43020,'_blocks_16_icon_row_items_3_label','field_64bfdd9c9068e'),(354240,43020,'blocks_16_icon_row_items_3_text','Athletes and active individuals benefit from improved movement efficiency, strength, and resilience when their training is informed by a deeper understanding of intrinsic biomechanics'),(354241,43020,'_blocks_16_icon_row_items_3_text','field_64bfdd9c9068f'),(354242,43020,'blocks_16_icon_row_items','4'),(354243,43020,'_blocks_16_icon_row_items','field_64bfdd9b9068c'),(354244,43020,'blocks_17_acfe_flexible_toggle',''),(354245,43020,'_blocks_17_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(354246,43020,'blocks_17_acfe_flexible_layout_title','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(354247,43020,'_blocks_17_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(354248,43020,'blocks_17_options_theme','#ffffff'),(354249,43020,'_blocks_17_options_theme','field_617682847c335_field_6176830e2ad17'),(354250,43020,'blocks_17_options_reverse','0'),(354251,43020,'_blocks_17_options_reverse','field_61768049bb8ac'),(354252,43020,'blocks_17_options',''),(354253,43020,'_blocks_17_options','field_617682517c334'),(354254,43020,'blocks_17_split_5050_image','41501'),(354255,43020,'_blocks_17_split_5050_image','field_6239f527a0c3a'),(354256,43020,'blocks_17_split_5050_video',''),(354257,43020,'_blocks_17_split_5050_video','field_6239f3160848a'),(354258,43020,'blocks_17_split_5050_content_title',''),(354259,43020,'_blocks_17_split_5050_content_title','field_61767bfca3fc0'),(354260,43020,'blocks_17_split_5050_content_heading','MSK Education for Fitness and Sports Professionals: Integrating Intrinsic Biomechanics'),(354261,43020,'_blocks_17_split_5050_content_heading','field_61767b26eb8bb'),(354262,43020,'blocks_17_split_5050_content_text','For fitness professionals, sports coaches, and rehabilitation specialists, understanding musculoskeletal (MSK) health is crucial for optimising movement, preventing injuries, and improving performance. However, to truly enhance movement efficiency and long-term musculoskeletal health, it’s important to look beyond surface-level mechanics. This is where intrinsic biomechanics plays a key role in MSK education.'),(354263,43020,'_blocks_17_split_5050_content_text','field_61767b3beb8bc'),(354264,43020,'blocks_17_split_5050_content_actions',''),(354265,43020,'_blocks_17_split_5050_content_actions','field_61767b68eb8bd'),(354266,43020,'blocks_17_split_5050_content',''),(354267,43020,'_blocks_17_split_5050_content','field_61767afceb8ba'),(354268,43020,'blocks_18_acfe_flexible_toggle',''),(354269,43020,'_blocks_18_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(354270,43020,'blocks_18_acfe_flexible_layout_title','The Role of MSK Education in Workplace Health[anchor]'),(354271,43020,'_blocks_18_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(354272,43020,'blocks_18_options_theme','#ffffff'),(354273,43020,'_blocks_18_options_theme','field_6176830e2ad17'),(354274,43020,'blocks_18_options',''),(354275,43020,'_blocks_18_options','field_6176830e2ad16'),(354276,43020,'blocks_18_text_block_heading','The Role of MSK Education in Workplace Health'),(354277,43020,'_blocks_18_text_block_heading','field_617669d413097'),(354278,43020,'blocks_18_text_block_content','Musculoskeletal conditions are one of the leading causes of workplace absence in the UK. Many employees experience back pain, repetitive strain injuries, or discomfort caused by prolonged sitting or physically demanding tasks. Without proper intervention, these issues can lead to long-term pain, reduced productivity, and increased sick leave.\r\n\r\nWorkplace health initiatives that focus on MSK education can help prevent these problems before they escalate. Simple changes, such as adjusting workstation ergonomics, incorporating movement breaks, and improving manual handling techniques, can significantly reduce the risk of injury. Occupational health professionals trained in MSK support can assess workplace risks, recommend practical solutions, and provide training to employees on safe movement and posture.\r\n\r\nEmployers who invest in MSK education for their staff often see a reduction in absenteeism, improved workplace morale, and increased efficiency. By addressing movement-related issues early, businesses can create healthier, more productive work environments while reducing the strain on healthcare services.'),(354279,43020,'_blocks_18_text_block_content','field_617669ec13098'),(354280,43020,'blocks_21_acfe_flexible_toggle',''),(354281,43020,'_blocks_21_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(354282,43020,'blocks_21_acfe_flexible_layout_title','Promo Panel'),(354283,43020,'_blocks_21_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(354284,43020,'blocks_21_options_alignment','center'),(354285,43020,'_blocks_21_options_alignment','field_61769449f5490'),(354286,43020,'blocks_21_options',''),(354287,43020,'_blocks_21_options','field_617693e1428f0'),(354288,43020,'blocks_21_promo_panel_image','41307'),(354289,43020,'_blocks_21_promo_panel_image','field_617693e1428f3'),(354290,43020,'blocks_21_promo_panel_content_heading','Want to Get Started?'),(354291,43020,'_blocks_21_promo_panel_content_heading','field_617693e1428f6'),(354292,43020,'blocks_21_promo_panel_content_text','Enhance your expertise in movement, injury prevention, and performance. Start your MSK and biomechanics journey today.'),(354293,43020,'_blocks_21_promo_panel_content_text','field_617693e1428f7'),(354294,43020,'blocks_21_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get Started!\";s:3:\"url\";s:42:\"https://biomechanicseducation.com/courses/\";s:6:\"target\";s:0:\"\";}'),(354295,43020,'_blocks_21_promo_panel_content_actions_0_button','field_617693e1428f9'),(354296,43020,'blocks_21_promo_panel_content_actions','1'),(354297,43020,'_blocks_21_promo_panel_content_actions','field_617693e1428f8'),(354298,43020,'blocks_21_promo_panel_content',''),(354299,43020,'_blocks_21_promo_panel_content','field_617693e1428f4'),(354300,43019,'hide_hero','0'),(354301,43019,'_hide_hero','field_66a2380fcda39'),(354302,43019,'hero_title','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes'),(354303,43019,'_hero_title','field_617571fe285e8'),(354304,43019,'hero_text',''),(354305,43019,'_hero_text','field_6175723c285e9'),(354306,43019,'hero_actions',''),(354307,43019,'_hero_actions','field_61757270285ea'),(354308,43019,'hero_style','default'),(354309,43019,'_hero_style','field_62051d9dc5324'),(354311,43019,'__thumbnail_id','field_617570855ddaf'),(354312,43019,'hero_image_pos_x','right'),(354313,43019,'_hero_image_pos_x','field_62ec3d05390bb'),(354314,43019,'hero_image_pos_y','top'),(354315,43019,'_hero_image_pos_y','field_62ec3d05390bc'),(354316,43019,'hero_image_pos',''),(354317,43019,'_hero_image_pos','field_62ec3d05390ba'),(354318,43019,'fft_hide_from_listings','0'),(354319,43019,'_fft_hide_from_listings','field_61f1320446ab2'),(354320,43019,'post_format','2'),(354321,43019,'_post_format','field_61756bfb51898'),(354322,43019,'post_author',''),(354323,43019,'_post_author','field_62ec389d22113'),(354324,43019,'post_reviewer',''),(354325,43019,'_post_reviewer','field_627140a2a9800'),(354326,43019,'post_table_of_contents','1'),(354327,43019,'_post_table_of_contents','field_65c503bc846a6'),(354328,43019,'_yoast_wpseo_primary_category',''),(354329,43019,'_yoast_wpseo_primary_blog-format',''),(354330,43019,'_yoast_wpseo_content_score','90'),(354331,43019,'_yoast_wpseo_inclusive_language_score','90'),(354332,43019,'_yoast_wpseo_estimated-reading-time-minutes','3'),(354333,43021,'hide_hero','0'),(354334,43021,'_hide_hero','field_66a2380fcda39'),(354335,43021,'hero_title','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes'),(354336,43021,'_hero_title','field_617571fe285e8'),(354337,43021,'hero_text',''),(354338,43021,'_hero_text','field_6175723c285e9'),(354339,43021,'hero_actions',''),(354340,43021,'_hero_actions','field_61757270285ea'),(354341,43021,'hero_style','default'),(354342,43021,'_hero_style','field_62051d9dc5324'),(354343,43021,'_thumbnail_id','41490'),(354344,43021,'__thumbnail_id','field_617570855ddaf'),(354345,43021,'hero_image_pos_x','right'),(354346,43021,'_hero_image_pos_x','field_62ec3d05390bb'),(354347,43021,'hero_image_pos_y','top'),(354348,43021,'_hero_image_pos_y','field_62ec3d05390bc'),(354349,43021,'hero_image_pos',''),(354350,43021,'_hero_image_pos','field_62ec3d05390ba'),(354351,43021,'fft_hide_from_listings','0'),(354352,43021,'_fft_hide_from_listings','field_61f1320446ab2'),(354353,43021,'post_format',''),(354354,43021,'_post_format','field_61756bfb51898'),(354355,43021,'post_author',''),(354356,43021,'_post_author','field_62ec389d22113'),(354357,43021,'post_reviewer',''),(354358,43021,'_post_reviewer','field_627140a2a9800'),(354359,43021,'post_table_of_contents','0'),(354360,43021,'_post_table_of_contents','field_65c503bc846a6'),(354362,43022,'hide_hero','0'),(354363,43022,'_hide_hero','field_66a2380fcda39'),(354364,43022,'hero_title','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes'),(354365,43022,'_hero_title','field_617571fe285e8'),(354366,43022,'hero_text',''),(354367,43022,'_hero_text','field_6175723c285e9'),(354368,43022,'hero_actions',''),(354369,43022,'_hero_actions','field_61757270285ea'),(354370,43022,'hero_style','default'),(354371,43022,'_hero_style','field_62051d9dc5324'),(354372,43022,'hero_image_pos_x','right'),(354373,43022,'_hero_image_pos_x','field_62ec3d05390bb'),(354374,43022,'hero_image_pos_y','top'),(354375,43022,'_hero_image_pos_y','field_62ec3d05390bc'),(354376,43022,'hero_image_pos',''),(354377,43022,'_hero_image_pos','field_62ec3d05390ba'),(354378,43022,'fft_hide_from_listings','0'),(354379,43022,'_fft_hide_from_listings','field_61f1320446ab2'),(354380,43022,'post_format',''),(354381,43022,'_post_format','field_61756bfb51898'),(354382,43022,'post_author',''),(354383,43022,'_post_author','field_62ec389d22113'),(354384,43022,'post_reviewer',''),(354385,43022,'_post_reviewer','field_627140a2a9800'),(354386,43022,'post_table_of_contents','0'),(354387,43022,'_post_table_of_contents','field_65c503bc846a6'),(354388,43022,'_thumbnail_id','41498'),(354389,43022,'__thumbnail_id','field_617570855ddaf'),(354391,43023,'hide_hero','0'),(354392,43023,'_hide_hero','field_66a2380fcda39'),(354393,43023,'hero_title','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes'),(354394,43023,'_hero_title','field_617571fe285e8'),(354395,43023,'hero_text',''),(354396,43023,'_hero_text','field_6175723c285e9'),(354397,43023,'hero_actions',''),(354398,43023,'_hero_actions','field_61757270285ea'),(354399,43023,'hero_style','default'),(354400,43023,'_hero_style','field_62051d9dc5324'),(354401,43023,'hero_image_pos_x','right'),(354402,43023,'_hero_image_pos_x','field_62ec3d05390bb'),(354403,43023,'hero_image_pos_y','top'),(354404,43023,'_hero_image_pos_y','field_62ec3d05390bc'),(354405,43023,'hero_image_pos',''),(354406,43023,'_hero_image_pos','field_62ec3d05390ba'),(354407,43023,'fft_hide_from_listings','0'),(354408,43023,'_fft_hide_from_listings','field_61f1320446ab2'),(354409,43023,'post_format',''),(354410,43023,'_post_format','field_61756bfb51898'),(354411,43023,'post_author',''),(354412,43023,'_post_author','field_62ec389d22113'),(354413,43023,'post_reviewer',''),(354414,43023,'_post_reviewer','field_627140a2a9800'),(354415,43023,'post_table_of_contents','0'),(354416,43023,'_post_table_of_contents','field_65c503bc846a6'),(354417,43023,'_thumbnail_id','21789'),(354418,43023,'__thumbnail_id','field_617570855ddaf'),(354419,43027,'_wp_attached_file','2025/04/System-of-Exercise-Biomechanics-Education-2025.jpg'),(354420,43027,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:848;s:4:\"file\";s:58:\"2025/04/System-of-Exercise-Biomechanics-Education-2025.jpg\";s:8:\"filesize\";i:68802;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-900x636.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:636;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70098;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-400x283.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23646;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-768x543.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:543;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58279;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31290;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-900x848.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91602;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22986;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71911;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:59:\"System-of-Exercise-Biomechanics-Education-2025-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89693;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24957;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-675x848.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73719;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-900x848.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:848;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91602;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23720;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77655;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17159;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:58:\"System-of-Exercise-Biomechanics-Education-2025-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54558;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:59:\"System-of-Exercise-Biomechanics-Education-2025-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85464;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(354421,43028,'hide_hero','0'),(354422,43028,'_hide_hero','field_66a2380fcda39'),(354423,43028,'hero_title','Anatomy for Personal Trainers: What Every PT Should Know'),(354424,43028,'_hero_title','field_617571fe285e8'),(354425,43028,'hero_text',''),(354426,43028,'_hero_text','field_6175723c285e9'),(354427,43028,'hero_actions',''),(354428,43028,'_hero_actions','field_61757270285ea'),(354429,43028,'hero_style','default'),(354430,43028,'_hero_style','field_62051d9dc5324'),(354431,43028,'_thumbnail_id','40635'),(354432,43028,'__thumbnail_id','field_617570855ddaf'),(354433,43028,'hero_image_pos_x','right'),(354434,43028,'_hero_image_pos_x','field_62ec3d05390bb'),(354435,43028,'hero_image_pos_y','top'),(354436,43028,'_hero_image_pos_y','field_62ec3d05390bc'),(354437,43028,'hero_image_pos',''),(354438,43028,'_hero_image_pos','field_62ec3d05390ba'),(354439,43028,'fft_hide_from_listings','0'),(354440,43028,'_fft_hide_from_listings','field_61f1320446ab2'),(354441,43028,'post_format','2'),(354442,43028,'_post_format','field_61756bfb51898'),(354443,43028,'post_author',''),(354444,43028,'_post_author','field_62ec389d22113'),(354445,43028,'post_reviewer',''),(354446,43028,'_post_reviewer','field_627140a2a9800'),(354447,43028,'post_table_of_contents','1'),(354448,43028,'_post_table_of_contents','field_65c503bc846a6'),(354450,43029,'hide_hero','0'),(354451,43029,'_hide_hero','field_66a2380fcda39'),(354452,43029,'hero_title','Anatomy for Personal Trainers: What Every PT Should Know'),(354453,43029,'_hero_title','field_617571fe285e8'),(354454,43029,'hero_text',''),(354455,43029,'_hero_text','field_6175723c285e9'),(354456,43029,'hero_actions',''),(354457,43029,'_hero_actions','field_61757270285ea'),(354458,43029,'hero_style','default'),(354459,43029,'_hero_style','field_62051d9dc5324'),(354460,43029,'hero_image_pos_x','right'),(354461,43029,'_hero_image_pos_x','field_62ec3d05390bb'),(354462,43029,'hero_image_pos_y','top'),(354463,43029,'_hero_image_pos_y','field_62ec3d05390bc'),(354464,43029,'hero_image_pos',''),(354465,43029,'_hero_image_pos','field_62ec3d05390ba'),(354466,43029,'fft_hide_from_listings','0'),(354467,43029,'_fft_hide_from_listings','field_61f1320446ab2'),(354468,43029,'post_format','2'),(354469,43029,'_post_format','field_61756bfb51898'),(354470,43029,'post_author',''),(354471,43029,'_post_author','field_62ec389d22113'),(354472,43029,'post_reviewer',''),(354473,43029,'_post_reviewer','field_627140a2a9800'),(354474,43029,'post_table_of_contents','0'),(354475,43029,'_post_table_of_contents','field_65c503bc846a6'),(354476,43029,'_thumbnail_id','40635'),(354477,43029,'__thumbnail_id','field_617570855ddaf'),(354479,43019,'_yoast_wpseo_focuskw','Intrinsic biomechanics in everyday life'),(354480,43019,'_yoast_wpseo_metadesc','Discover how intrinsic biomechanics supports daily movement, reduces injury risk, and promotes long-term health—it\'s not just for athletes.'),(354481,43019,'_yoast_wpseo_linkdex','73'),(354482,43030,'hide_hero','0'),(354483,43030,'_hide_hero','field_66a2380fcda39'),(354484,43030,'hero_title','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes'),(354485,43030,'_hero_title','field_617571fe285e8'),(354486,43030,'hero_text',''),(354487,43030,'_hero_text','field_6175723c285e9'),(354488,43030,'hero_actions',''),(354489,43030,'_hero_actions','field_61757270285ea'),(354490,43030,'hero_style','default'),(354491,43030,'_hero_style','field_62051d9dc5324'),(354492,43030,'hero_image_pos_x','right'),(354493,43030,'_hero_image_pos_x','field_62ec3d05390bb'),(354494,43030,'hero_image_pos_y','top'),(354495,43030,'_hero_image_pos_y','field_62ec3d05390bc'),(354496,43030,'hero_image_pos',''),(354497,43030,'_hero_image_pos','field_62ec3d05390ba'),(354498,43030,'fft_hide_from_listings','0'),(354499,43030,'_fft_hide_from_listings','field_61f1320446ab2'),(354500,43030,'post_format',''),(354501,43030,'_post_format','field_61756bfb51898'),(354502,43030,'post_author',''),(354503,43030,'_post_author','field_62ec389d22113'),(354504,43030,'post_reviewer',''),(354505,43030,'_post_reviewer','field_627140a2a9800'),(354506,43030,'post_table_of_contents','0'),(354507,43030,'_post_table_of_contents','field_65c503bc846a6'),(354508,43030,'_thumbnail_id','21789'),(354509,43030,'__thumbnail_id','field_617570855ddaf'),(354510,43028,'_acf_changed','1'),(354511,43033,'hide_hero','0'),(354512,43033,'_hide_hero','field_66a2380fcda39'),(354513,43033,'hero_title','Anatomy for Personal Trainers: What Every PT Should Know'),(354514,43033,'_hero_title','field_617571fe285e8'),(354515,43033,'hero_text',''),(354516,43033,'_hero_text','field_6175723c285e9'),(354517,43033,'hero_actions',''),(354518,43033,'_hero_actions','field_61757270285ea'),(354519,43033,'hero_style','default'),(354520,43033,'_hero_style','field_62051d9dc5324'),(354521,43033,'hero_image_pos_x','right'),(354522,43033,'_hero_image_pos_x','field_62ec3d05390bb'),(354523,43033,'hero_image_pos_y','top'),(354524,43033,'_hero_image_pos_y','field_62ec3d05390bc'),(354525,43033,'hero_image_pos',''),(354526,43033,'_hero_image_pos','field_62ec3d05390ba'),(354527,43033,'fft_hide_from_listings','0'),(354528,43033,'_fft_hide_from_listings','field_61f1320446ab2'),(354529,43033,'post_format','2'),(354530,43033,'_post_format','field_61756bfb51898'),(354531,43033,'post_author',''),(354532,43033,'_post_author','field_62ec389d22113'),(354533,43033,'post_reviewer',''),(354534,43033,'_post_reviewer','field_627140a2a9800'),(354535,43033,'post_table_of_contents','1'),(354536,43033,'_post_table_of_contents','field_65c503bc846a6'),(354537,43033,'_thumbnail_id','40635'),(354538,43033,'__thumbnail_id','field_617570855ddaf'),(354540,43034,'hide_hero','0'),(354541,43034,'_hide_hero','field_66a2380fcda39'),(354542,43034,'hero_title','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes'),(354543,43034,'_hero_title','field_617571fe285e8'),(354544,43034,'hero_text',''),(354545,43034,'_hero_text','field_6175723c285e9'),(354546,43034,'hero_actions',''),(354547,43034,'_hero_actions','field_61757270285ea'),(354548,43034,'hero_style','default'),(354549,43034,'_hero_style','field_62051d9dc5324'),(354550,43034,'hero_image_pos_x','right'),(354551,43034,'_hero_image_pos_x','field_62ec3d05390bb'),(354552,43034,'hero_image_pos_y','top'),(354553,43034,'_hero_image_pos_y','field_62ec3d05390bc'),(354554,43034,'hero_image_pos',''),(354555,43034,'_hero_image_pos','field_62ec3d05390ba'),(354556,43034,'fft_hide_from_listings','0'),(354557,43034,'_fft_hide_from_listings','field_61f1320446ab2'),(354558,43034,'post_format','2'),(354559,43034,'_post_format','field_61756bfb51898'),(354560,43034,'post_author',''),(354561,43034,'_post_author','field_62ec389d22113'),(354562,43034,'post_reviewer',''),(354563,43034,'_post_reviewer','field_627140a2a9800'),(354564,43034,'post_table_of_contents','1'),(354565,43034,'_post_table_of_contents','field_65c503bc846a6'),(354566,43034,'_thumbnail_id','21789'),(354567,43034,'__thumbnail_id','field_617570855ddaf'),(354568,43019,'_thumbnail_id','21789'),(354569,43035,'hide_hero','0'),(354570,43035,'_hide_hero','field_66a2380fcda39'),(354571,43035,'hero_title','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes'),(354572,43035,'_hero_title','field_617571fe285e8'),(354573,43035,'hero_text',''),(354574,43035,'_hero_text','field_6175723c285e9'),(354575,43035,'hero_actions',''),(354576,43035,'_hero_actions','field_61757270285ea'),(354577,43035,'hero_style','default'),(354578,43035,'_hero_style','field_62051d9dc5324'),(354579,43035,'hero_image_pos_x','right'),(354580,43035,'_hero_image_pos_x','field_62ec3d05390bb'),(354581,43035,'hero_image_pos_y','top'),(354582,43035,'_hero_image_pos_y','field_62ec3d05390bc'),(354583,43035,'hero_image_pos',''),(354584,43035,'_hero_image_pos','field_62ec3d05390ba'),(354585,43035,'fft_hide_from_listings','0'),(354586,43035,'_fft_hide_from_listings','field_61f1320446ab2'),(354587,43035,'post_format','2'),(354588,43035,'_post_format','field_61756bfb51898'),(354589,43035,'post_author',''),(354590,43035,'_post_author','field_62ec389d22113'),(354591,43035,'post_reviewer',''),(354592,43035,'_post_reviewer','field_627140a2a9800'),(354593,43035,'post_table_of_contents','1'),(354594,43035,'_post_table_of_contents','field_65c503bc846a6'),(354595,43035,'_thumbnail_id','21789'),(354596,43035,'__thumbnail_id','field_617570855ddaf'),(354597,43037,'hide_hero','0'),(354598,43037,'_hide_hero','field_66a2380fcda39'),(354599,43037,'hero_title','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes'),(354600,43037,'_hero_title','field_617571fe285e8'),(354601,43037,'hero_text',''),(354602,43037,'_hero_text','field_6175723c285e9'),(354603,43037,'hero_actions',''),(354604,43037,'_hero_actions','field_61757270285ea'),(354605,43037,'hero_style','default'),(354606,43037,'_hero_style','field_62051d9dc5324'),(354607,43037,'hero_image_pos_x','right'),(354608,43037,'_hero_image_pos_x','field_62ec3d05390bb'),(354609,43037,'hero_image_pos_y','top'),(354610,43037,'_hero_image_pos_y','field_62ec3d05390bc'),(354611,43037,'hero_image_pos',''),(354612,43037,'_hero_image_pos','field_62ec3d05390ba'),(354613,43037,'fft_hide_from_listings','0'),(354614,43037,'_fft_hide_from_listings','field_61f1320446ab2'),(354615,43037,'post_format','2'),(354616,43037,'_post_format','field_61756bfb51898'),(354617,43037,'post_author',''),(354618,43037,'_post_author','field_62ec389d22113'),(354619,43037,'post_reviewer',''),(354620,43037,'_post_reviewer','field_627140a2a9800'),(354621,43037,'post_table_of_contents','1'),(354622,43037,'_post_table_of_contents','field_65c503bc846a6'),(354623,43037,'_thumbnail_id','21789'),(354624,43037,'__thumbnail_id','field_617570855ddaf'),(354625,43040,'_edit_lock','1751534747:17'),(354626,43040,'_edit_last','17'),(354627,43040,'hide_hero','0'),(354628,43040,'_hide_hero','field_66a2380fcda39'),(354629,43040,'hero_title','Strength Training for Injury Prevention: Building Resilience and Joint Health'),(354630,43040,'_hero_title','field_617571fe285e8'),(354631,43040,'hero_text',''),(354632,43040,'_hero_text','field_6175723c285e9'),(354633,43040,'hero_actions',''),(354634,43040,'_hero_actions','field_61757270285ea'),(354635,43040,'hero_style','default'),(354636,43040,'_hero_style','field_62051d9dc5324'),(354638,43040,'__thumbnail_id','field_617570855ddaf'),(354639,43040,'hero_image_pos_x','right'),(354640,43040,'_hero_image_pos_x','field_62ec3d05390bb'),(354641,43040,'hero_image_pos_y','top'),(354642,43040,'_hero_image_pos_y','field_62ec3d05390bc'),(354643,43040,'hero_image_pos',''),(354644,43040,'_hero_image_pos','field_62ec3d05390ba'),(354645,43040,'fft_hide_from_listings','0'),(354646,43040,'_fft_hide_from_listings','field_61f1320446ab2'),(354647,43040,'post_format','2'),(354648,43040,'_post_format','field_61756bfb51898'),(354649,43040,'post_author',''),(354650,43040,'_post_author','field_62ec389d22113'),(354651,43040,'post_reviewer',''),(354652,43040,'_post_reviewer','field_627140a2a9800'),(354653,43040,'post_table_of_contents','1'),(354654,43040,'_post_table_of_contents','field_65c503bc846a6'),(354655,43040,'_yoast_wpseo_primary_category',''),(354656,43040,'_yoast_wpseo_primary_blog-format',''),(354657,43040,'_yoast_wpseo_content_score','90'),(354658,43040,'_yoast_wpseo_inclusive_language_score','90'),(354659,43040,'_yoast_wpseo_estimated-reading-time-minutes','4'),(354660,43041,'hide_hero','0'),(354661,43041,'_hide_hero','field_66a2380fcda39'),(354662,43041,'hero_title','Strength Training for Injury Prevention: Building Resilience and Joint Health'),(354663,43041,'_hero_title','field_617571fe285e8'),(354664,43041,'hero_text',''),(354665,43041,'_hero_text','field_6175723c285e9'),(354666,43041,'hero_actions',''),(354667,43041,'_hero_actions','field_61757270285ea'),(354668,43041,'hero_style','default'),(354669,43041,'_hero_style','field_62051d9dc5324'),(354670,43041,'_thumbnail_id','40675'),(354671,43041,'__thumbnail_id','field_617570855ddaf'),(354672,43041,'hero_image_pos_x','right'),(354673,43041,'_hero_image_pos_x','field_62ec3d05390bb'),(354674,43041,'hero_image_pos_y','top'),(354675,43041,'_hero_image_pos_y','field_62ec3d05390bc'),(354676,43041,'hero_image_pos',''),(354677,43041,'_hero_image_pos','field_62ec3d05390ba'),(354678,43041,'fft_hide_from_listings','0'),(354679,43041,'_fft_hide_from_listings','field_61f1320446ab2'),(354680,43041,'post_format','2'),(354681,43041,'_post_format','field_61756bfb51898'),(354682,43041,'post_author',''),(354683,43041,'_post_author','field_62ec389d22113'),(354684,43041,'post_reviewer',''),(354685,43041,'_post_reviewer','field_627140a2a9800'),(354686,43041,'post_table_of_contents','1'),(354687,43041,'_post_table_of_contents','field_65c503bc846a6'),(354689,43040,'_yoast_wpseo_focuskw','Strength training for injury prevention'),(354690,43040,'_yoast_wpseo_metadesc','Discover how strength training builds resilience, improves joint stability, and reduces injury risk—essential for athletes and everyday movement alike.'),(354691,43040,'_yoast_wpseo_linkdex','71'),(354692,43042,'hide_hero','0'),(354693,43042,'_hide_hero','field_66a2380fcda39'),(354694,43042,'hero_title','Strength Training for Injury Prevention: Building Resilience and Joint Health'),(354695,43042,'_hero_title','field_617571fe285e8'),(354696,43042,'hero_text',''),(354697,43042,'_hero_text','field_6175723c285e9'),(354698,43042,'hero_actions',''),(354699,43042,'_hero_actions','field_61757270285ea'),(354700,43042,'hero_style','default'),(354701,43042,'_hero_style','field_62051d9dc5324'),(354702,43042,'hero_image_pos_x','right'),(354703,43042,'_hero_image_pos_x','field_62ec3d05390bb'),(354704,43042,'hero_image_pos_y','top'),(354705,43042,'_hero_image_pos_y','field_62ec3d05390bc'),(354706,43042,'hero_image_pos',''),(354707,43042,'_hero_image_pos','field_62ec3d05390ba'),(354708,43042,'fft_hide_from_listings','0'),(354709,43042,'_fft_hide_from_listings','field_61f1320446ab2'),(354710,43042,'post_format','2'),(354711,43042,'_post_format','field_61756bfb51898'),(354712,43042,'post_author',''),(354713,43042,'_post_author','field_62ec389d22113'),(354714,43042,'post_reviewer',''),(354715,43042,'_post_reviewer','field_627140a2a9800'),(354716,43042,'post_table_of_contents','1'),(354717,43042,'_post_table_of_contents','field_65c503bc846a6'),(354718,43042,'_thumbnail_id','40675'),(354719,43042,'__thumbnail_id','field_617570855ddaf'),(354720,43040,'_thumbnail_id','40675'),(354721,43043,'hide_hero','0'),(354722,43043,'_hide_hero','field_66a2380fcda39'),(354723,43043,'hero_title','Strength Training for Injury Prevention: Building Resilience and Joint Health'),(354724,43043,'_hero_title','field_617571fe285e8'),(354725,43043,'hero_text',''),(354726,43043,'_hero_text','field_6175723c285e9'),(354727,43043,'hero_actions',''),(354728,43043,'_hero_actions','field_61757270285ea'),(354729,43043,'hero_style','default'),(354730,43043,'_hero_style','field_62051d9dc5324'),(354731,43043,'hero_image_pos_x','right'),(354732,43043,'_hero_image_pos_x','field_62ec3d05390bb'),(354733,43043,'hero_image_pos_y','top'),(354734,43043,'_hero_image_pos_y','field_62ec3d05390bc'),(354735,43043,'hero_image_pos',''),(354736,43043,'_hero_image_pos','field_62ec3d05390ba'),(354737,43043,'fft_hide_from_listings','0'),(354738,43043,'_fft_hide_from_listings','field_61f1320446ab2'),(354739,43043,'post_format','2'),(354740,43043,'_post_format','field_61756bfb51898'),(354741,43043,'post_author',''),(354742,43043,'_post_author','field_62ec389d22113'),(354743,43043,'post_reviewer',''),(354744,43043,'_post_reviewer','field_627140a2a9800'),(354745,43043,'post_table_of_contents','1'),(354746,43043,'_post_table_of_contents','field_65c503bc846a6'),(354747,43043,'_thumbnail_id','40675'),(354748,43043,'__thumbnail_id','field_617570855ddaf'),(354750,43039,'_edit_lock','1745581004:1'),(354751,43045,'_edit_lock','1745570928:17'),(354752,43045,'_edit_last','17'),(354753,43045,'form_action','https://analytics-eu.clickdimensions.com/forms/h/aZXTzqdXOkSsA0GdWlyuA'),(354754,43045,'_form_action','field_61a50501a49c0'),(354755,43045,'form_fields_0_acfe_layout_col','6'),(354756,43045,'_form_fields_0_acfe_layout_col','field_layout_634557f2ac428_col'),(354757,43045,'form_fields_0_layout_settings_required','1'),(354758,43045,'_form_fields_0_layout_settings_required','field_63457a5c4b908'),(354759,43045,'form_fields_0_layout_settings_hidden','0'),(354760,43045,'_form_fields_0_layout_settings_hidden','field_63457a704b909'),(354761,43045,'form_fields_0_layout_settings',''),(354762,43045,'_form_fields_0_layout_settings','field_layout_634557f2ac428_settings'),(354763,43045,'form_fields_0_acfe_flexible_layout_title','First Name'),(354764,43045,'_form_fields_0_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(354765,43045,'form_fields_0_name','firstname'),(354766,43045,'_form_fields_0_name','field_634558471d0f0'),(354767,43045,'form_fields_0_label','First Name'),(354768,43045,'_form_fields_0_label','field_634558271d0ef'),(354769,43045,'form_fields_0_description',''),(354770,43045,'_form_fields_0_description','field_6389047cb4655'),(354771,43045,'form_fields_1_acfe_layout_col','6'),(354772,43045,'_form_fields_1_acfe_layout_col','field_layout_634557f2ac428_col'),(354773,43045,'form_fields_1_layout_settings_required','1'),(354774,43045,'_form_fields_1_layout_settings_required','field_63457a5c4b908'),(354775,43045,'form_fields_1_layout_settings_hidden','0'),(354776,43045,'_form_fields_1_layout_settings_hidden','field_63457a704b909'),(354777,43045,'form_fields_1_layout_settings',''),(354778,43045,'_form_fields_1_layout_settings','field_layout_634557f2ac428_settings'),(354779,43045,'form_fields_1_acfe_flexible_layout_title','Last Name'),(354780,43045,'_form_fields_1_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(354781,43045,'form_fields_1_name','lastname'),(354782,43045,'_form_fields_1_name','field_634558471d0f0'),(354783,43045,'form_fields_1_label','Last Name'),(354784,43045,'_form_fields_1_label','field_634558271d0ef'),(354785,43045,'form_fields_1_description',''),(354786,43045,'_form_fields_1_description','field_6389047cb4655'),(354787,43045,'form_fields_2_acfe_layout_col','12'),(354788,43045,'_form_fields_2_acfe_layout_col','field_layout_634558b01d0f2_col'),(354789,43045,'form_fields_2_layout_settings_required','1'),(354790,43045,'_form_fields_2_layout_settings_required','field_63457a5c4b908'),(354791,43045,'form_fields_2_layout_settings_hidden','0'),(354792,43045,'_form_fields_2_layout_settings_hidden','field_63457a704b909'),(354793,43045,'form_fields_2_layout_settings',''),(354794,43045,'_form_fields_2_layout_settings','field_layout_634558b01d0f2_settings'),(354795,43045,'form_fields_2_acfe_flexible_layout_title','Email'),(354796,43045,'_form_fields_2_acfe_flexible_layout_title','field_layout_634558b01d0f2_title'),(354797,43045,'form_fields_2_name','email'),(354798,43045,'_form_fields_2_name','field_634558b01d0f4'),(354799,43045,'form_fields_2_label','Email'),(354800,43045,'_form_fields_2_label','field_634558b01d0f3'),(354801,43045,'form_fields_2_description','This is how we\'ll send you a copy of your guide.'),(354802,43045,'_form_fields_2_description','field_6389049db4656'),(354803,43045,'form_fields_3_acfe_layout_col','12'),(354804,43045,'_form_fields_3_acfe_layout_col','field_layout_634557f2ac428_col'),(354805,43045,'form_fields_3_layout_settings_required','1'),(354806,43045,'_form_fields_3_layout_settings_required','field_63457a5c4b908'),(354807,43045,'form_fields_3_layout_settings_hidden','0'),(354808,43045,'_form_fields_3_layout_settings_hidden','field_63457a704b909'),(354809,43045,'form_fields_3_layout_settings',''),(354810,43045,'_form_fields_3_layout_settings','field_layout_634557f2ac428_settings'),(354811,43045,'form_fields_3_acfe_flexible_layout_title','Phone Number'),(354812,43045,'_form_fields_3_acfe_flexible_layout_title','field_layout_634557f2ac428_title'),(354813,43045,'form_fields_3_name','contactnumber'),(354814,43045,'_form_fields_3_name','field_634558471d0f0'),(354815,43045,'form_fields_3_label','Phone Number'),(354816,43045,'_form_fields_3_label','field_634558271d0ef'),(354817,43045,'form_fields_3_description','So that we can provide you with quick, easy information about your enquiry.'),(354818,43045,'_form_fields_3_description','field_6389047cb4655'),(354819,43045,'form_fields_4_layout_settings_required','1'),(354820,43045,'_form_fields_4_layout_settings_required','field_63457a5c4b908'),(354821,43045,'form_fields_4_layout_settings_hidden','0'),(354822,43045,'_form_fields_4_layout_settings_hidden','field_63457a704b909'),(354823,43045,'form_fields_5_layout_settings_required','1'),(354824,43045,'_form_fields_5_layout_settings_required','field_63457a5c4b908'),(354825,43045,'form_fields_5_layout_settings_hidden','1'),(354826,43045,'_form_fields_5_layout_settings_hidden','field_63457a704b909'),(354827,43045,'form_fields','a:6:{i:0;s:4:\"text\";i:1;s:4:\"text\";i:2;s:5:\"email\";i:3;s:4:\"text\";i:4;s:6:\"select\";i:5;s:6:\"hidden\";}'),(354828,43045,'_form_fields','field_634557ea1d0ee'),(354829,43045,'form_fields_code',''),(354830,43045,'_form_fields_code','field_61a4f967fdc46'),(354831,43045,'form_hidden_fields_code',''),(354832,43045,'_form_hidden_fields_code','field_61a50668a49c3'),(354833,43045,'form_small_print','By submitting this form, you agree to Biomechanics Education processing your data in accordance with our <a href=\"https://biomechanicseducation.com/privacy-policy/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a> and <a href=\"https://biomechanicseducation.com/terms-conditions/\" target=\"_blank\" rel=\"noopener\">Terms &amp; Conditions.</a>'),(354834,43045,'_form_small_print','field_61a50510a49c1'),(354835,43045,'form_button_label',''),(354836,43045,'_form_button_label','field_61a50530a49c2'),(354837,43045,'form_gtm_id',''),(354838,43045,'_form_gtm_id','field_63dbc2797b66f'),(354839,43045,'form_fields_4_acfe_layout_col','12'),(354840,43045,'_form_fields_4_acfe_layout_col','field_layout_634558b91d0f6_col'),(354841,43045,'form_fields_4_layout_settings',''),(354842,43045,'_form_fields_4_layout_settings','field_layout_634558b91d0f6_settings'),(354843,43045,'form_fields_4_acfe_flexible_layout_title','Dropdown'),(354844,43045,'_form_fields_4_acfe_flexible_layout_title','field_layout_634558b91d0f6_title'),(354845,43045,'form_fields_4_name','currentwork'),(354846,43045,'_form_fields_4_name','field_634558b91d0f8'),(354847,43045,'form_fields_4_label','What area do you currently work in?'),(354848,43045,'_form_fields_4_label','field_634558b91d0f7'),(354849,43045,'form_fields_4_description',''),(354850,43045,'_form_fields_4_description','field_638904adb4657'),(354851,43045,'form_fields_4_options','Personal Training\r\nPilates\r\nSports Massage\r\nPodiatrist\r\nSports Coaching\r\nStrength and Conditioning\r\nNone of the above'),(354852,43045,'_form_fields_4_options','field_634558c91d0fa'),(354867,43045,'_wp_old_slug','biomechanics-education-enquiry-form-lead-gen-september-2024-ep-copy'),(354868,43045,'form_fields_5_acfe_layout_col','12'),(354869,43045,'_form_fields_5_acfe_layout_col','field_layout_63f8cefd3464c_col'),(354870,43045,'form_fields_5_acfe_flexible_layout_title','Admin Only'),(354871,43045,'_form_fields_5_acfe_flexible_layout_title','field_layout_63f8cefd3464c_title'),(354872,43045,'form_fields_5_name','interestedin'),(354873,43045,'_form_fields_5_name','field_63f8cefd3464d'),(354874,43045,'form_fields_5_value','Biomechanics Coaching'),(354875,43045,'_form_fields_5_value','field_63f8cefd34650'),(354884,43046,'hide_hero','0'),(354885,43046,'_hide_hero','field_66a2380fcda39'),(354886,43046,'hero_title','Download Price Guide - Validation Test'),(354887,43046,'_hero_title','field_617571fe285e8'),(354888,43046,'hero_text',''),(354889,43046,'_hero_text','field_6175723c285e9'),(354890,43046,'hero_actions',''),(354891,43046,'_hero_actions','field_61757270285ea'),(354892,43046,'hero_style','default'),(354893,43046,'_hero_style','field_62051d9dc5324'),(354894,43046,'hero_image_pos_x','right'),(354895,43046,'_hero_image_pos_x','field_62ec3d05390bb'),(354896,43046,'hero_image_pos_y','top'),(354897,43046,'_hero_image_pos_y','field_62ec3d05390bc'),(354898,43046,'hero_image_pos',''),(354899,43046,'_hero_image_pos','field_62ec3d05390ba'),(354900,43046,'fft_hide_from_listings','0'),(354901,43046,'_fft_hide_from_listings','field_61f1320446ab2'),(354902,43046,'fft_page_format','default'),(354903,43046,'_fft_page_format','field_61ae213f1f218'),(354904,43046,'fft_hide_nav','0'),(354905,43046,'_fft_hide_nav','field_635bd5e43527c'),(354906,43046,'fft_hide_header_call_to_action','0'),(354907,43046,'_fft_hide_header_call_to_action','field_635bd6723527d'),(354908,43046,'fft_page_sitemap','0'),(354909,43046,'_fft_page_sitemap','field_61af9b34e8181'),(354910,43046,'blocks','a:7:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:5:\"quote\";i:4;s:10:\"link_stack\";i:5;s:18:\"testimonial_slider\";i:6;s:16:\"standard_content\";}'),(354911,43046,'_blocks','field_6176696113096'),(354912,43046,'_thumbnail_id','40294'),(354913,43046,'__thumbnail_id','field_617570855ddaf'),(354914,43046,'blocks_0_acfe_flexible_toggle',''),(354915,43046,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(354916,43046,'blocks_0_acfe_flexible_layout_title','Form'),(354917,43046,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(354918,43046,'blocks_0_row_content_format','standard'),(354919,43046,'_blocks_0_row_content_format','field_6481ead962881'),(354920,43046,'blocks_0_row_content_title','Enquire Now'),(354921,43046,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(354922,43046,'blocks_0_row_content_heading','Course Information and Price Guide'),(354923,43046,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(354924,43046,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain an overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(354925,43046,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(354926,43046,'blocks_0_row_content_actions',''),(354927,43046,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(354928,43046,'blocks_0_row_content',''),(354929,43046,'_blocks_0_row_content','field_61a0f5f5b3db0'),(354930,43046,'blocks_0_row_form','43045'),(354931,43046,'_blocks_0_row_form','field_61a4ff2c0b08e'),(354932,43046,'blocks_0_row_form_button_label',''),(354933,43046,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(354934,43046,'blocks_1_acfe_flexible_toggle','1'),(354935,43046,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(354936,43046,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(354937,43046,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(354938,43046,'blocks_1_options_theme','#ffffff'),(354939,43046,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(354940,43046,'blocks_1_options_reverse','0'),(354941,43046,'_blocks_1_options_reverse','field_61768049bb8ac'),(354942,43046,'blocks_1_options',''),(354943,43046,'_blocks_1_options','field_617682517c334'),(354944,43046,'blocks_1_split_5050_image','39271'),(354945,43046,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(354946,43046,'blocks_1_split_5050_video',''),(354947,43046,'_blocks_1_split_5050_video','field_6239f3160848a'),(354948,43046,'blocks_1_split_5050_content_title',''),(354949,43046,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(354950,43046,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(354951,43046,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(354952,43046,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(354953,43046,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(354954,43046,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(354955,43046,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(354956,43046,'blocks_1_split_5050_content_actions','1'),(354957,43046,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(354958,43046,'blocks_1_split_5050_content',''),(354959,43046,'_blocks_1_split_5050_content','field_61767afceb8ba'),(354960,43046,'blocks_2_acfe_flexible_toggle',''),(354961,43046,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(354962,43046,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(354963,43046,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(354964,43046,'blocks_2_options_theme','#ffffff'),(354965,43046,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(354966,43046,'blocks_2_options_reverse','0'),(354967,43046,'_blocks_2_options_reverse','field_61768049bb8ac'),(354968,43046,'blocks_2_options',''),(354969,43046,'_blocks_2_options','field_617682517c334'),(354970,43046,'blocks_2_split_5050_image','39271'),(354971,43046,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(354972,43046,'blocks_2_split_5050_video',''),(354973,43046,'_blocks_2_split_5050_video','field_6239f3160848a'),(354974,43046,'blocks_2_split_5050_content_title',''),(354975,43046,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(354976,43046,'blocks_2_split_5050_content_heading','What\'s included in this guide?'),(354977,43046,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(354978,43046,'blocks_2_split_5050_content_text','[accordion title=\"Understand our prices\" content=\"we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\"]\r\n\r\n[accordion title=\"Get to know our courses\" content=\"Access a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you’ll receive, awarding bodies and accreditations.\"]\r\n\r\n[accordion title=\"Learn about us as a business\" content=\"Get valuable information about Biomechanics Education and Future Fit Group. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.\"]'),(354979,43046,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(354980,43046,'blocks_2_split_5050_content_actions','1'),(354981,43046,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(354982,43046,'blocks_2_split_5050_content',''),(354983,43046,'_blocks_2_split_5050_content','field_61767afceb8ba'),(354984,43046,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(354985,43046,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(354986,43046,'blocks_3_acfe_flexible_toggle',''),(354987,43046,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(354988,43046,'blocks_3_acfe_flexible_layout_title','Quote'),(354989,43046,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(354990,43046,'blocks_3_quote_content','I just wanted to say thank you for transforming my knowledge. Without the Biomechanics Coaching Diploma, I would have been lost, but now I feel like I\'m not only giving clients a better understanding of their body but also further education is making more sense to me.  '),(354991,43046,'_blocks_3_quote_content','field_6177cdacdd67a'),(354992,43046,'blocks_3_quote_author',''),(354993,43046,'_blocks_3_quote_author','field_6177cdc6dd67b'),(354994,43046,'blocks_4_acfe_flexible_toggle',''),(354995,43046,'_blocks_4_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(354996,43046,'blocks_4_acfe_flexible_layout_title','Link Stack'),(354997,43046,'_blocks_4_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(354998,43046,'blocks_4_options_theme','#ffffff'),(354999,43046,'_blocks_4_options_theme','field_6177b758246af_field_6176830e2ad17'),(355000,43046,'blocks_4_options',''),(355001,43046,'_blocks_4_options','field_6177b758246ae'),(355002,43046,'blocks_4_link_stack_content_title',''),(355003,43046,'_blocks_4_link_stack_content_title','field_6177b7b600cf9'),(355004,43046,'blocks_4_link_stack_content_heading','Discover our expertise'),(355005,43046,'_blocks_4_link_stack_content_heading','field_6177b7b600cfa'),(355006,43046,'blocks_4_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(355007,43046,'_blocks_4_link_stack_content_text','field_6177b7b600cfb'),(355008,43046,'blocks_4_link_stack_content_actions',''),(355009,43046,'_blocks_4_link_stack_content_actions','field_6177b7b600cfc'),(355010,43046,'blocks_4_link_stack_content',''),(355011,43046,'_blocks_4_link_stack_content','field_6177b7b600cf8'),(355012,43046,'blocks_4_link_stack_0_label','Personal Training'),(355013,43046,'_blocks_4_link_stack_0_label','field_6177b80900d00'),(355014,43046,'blocks_4_link_stack_0_title','Discover Biomechanics in Personal Training'),(355015,43046,'_blocks_4_link_stack_0_title','field_6177b80f00d01'),(355016,43046,'blocks_4_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(355017,43046,'_blocks_4_link_stack_0_url','field_6177b82200d02'),(355018,43046,'blocks_4_link_stack_1_label','Pilates'),(355019,43046,'_blocks_4_link_stack_1_label','field_6177b80900d00'),(355020,43046,'blocks_4_link_stack_1_title','Discover Biomechanics in Pilates'),(355021,43046,'_blocks_4_link_stack_1_title','field_6177b80f00d01'),(355022,43046,'blocks_4_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(355023,43046,'_blocks_4_link_stack_1_url','field_6177b82200d02'),(355024,43046,'blocks_4_link_stack_2_label','Sports Coaches'),(355025,43046,'_blocks_4_link_stack_2_label','field_6177b80900d00'),(355026,43046,'blocks_4_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(355027,43046,'_blocks_4_link_stack_2_title','field_6177b80f00d01'),(355028,43046,'blocks_4_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(355029,43046,'_blocks_4_link_stack_2_url','field_6177b82200d02'),(355030,43046,'blocks_4_link_stack_3_label','SMT'),(355031,43046,'_blocks_4_link_stack_3_label','field_6177b80900d00'),(355032,43046,'blocks_4_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(355033,43046,'_blocks_4_link_stack_3_title','field_6177b80f00d01'),(355034,43046,'blocks_4_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(355035,43046,'_blocks_4_link_stack_3_url','field_6177b82200d02'),(355036,43046,'blocks_4_link_stack_4_label','Podiatrists'),(355037,43046,'_blocks_4_link_stack_4_label','field_6177b80900d00'),(355038,43046,'blocks_4_link_stack_4_title','Discover Biomechanics in Podiatry'),(355039,43046,'_blocks_4_link_stack_4_title','field_6177b80f00d01'),(355040,43046,'blocks_4_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(355041,43046,'_blocks_4_link_stack_4_url','field_6177b82200d02'),(355042,43046,'blocks_4_link_stack_5_label','Biomechanics Coach'),(355043,43046,'_blocks_4_link_stack_5_label','field_6177b80900d00'),(355044,43046,'blocks_4_link_stack_5_title','How to Become a Biomechanics Coach'),(355045,43046,'_blocks_4_link_stack_5_title','field_6177b80f00d01'),(355046,43046,'blocks_4_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(355047,43046,'_blocks_4_link_stack_5_url','field_6177b82200d02'),(355048,43046,'blocks_4_link_stack','6'),(355049,43046,'_blocks_4_link_stack','field_6177b7f600cff'),(355050,43046,'blocks_5_acfe_flexible_toggle','1'),(355051,43046,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(355052,43046,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(355053,43046,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(355054,43046,'blocks_5_testimonial_slider_content_title',''),(355055,43046,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(355056,43046,'blocks_5_testimonial_slider_content_heading','Testimonials'),(355057,43046,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(355058,43046,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(355059,43046,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(355060,43046,'blocks_5_testimonial_slider_content_actions',''),(355061,43046,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(355062,43046,'blocks_5_testimonial_slider_content',''),(355063,43046,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(355064,43046,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(355065,43046,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(355066,43046,'blocks_5_testimonial_slider_ambassador_bool','0'),(355067,43046,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(355068,43046,'blocks_6_acfe_flexible_toggle',''),(355069,43046,'_blocks_6_acfe_flexible_toggle','field_layout_6193c9b5eac80_toggle'),(355070,43046,'blocks_6_acfe_flexible_layout_title','Standard/Editorial Content - SCRIPT TEST VIA SHORTCODE'),(355071,43046,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c9b5eac80_title'),(355072,43046,'blocks_6_content',''),(355073,43046,'_blocks_6_content','field_6193c9b5eac84'),(355074,43051,'hide_hero','0'),(355075,43051,'_hide_hero','field_66a2380fcda39'),(355076,43051,'hero_title','Download Price Guide - Validation Test'),(355077,43051,'_hero_title','field_617571fe285e8'),(355078,43051,'hero_text',''),(355079,43051,'_hero_text','field_6175723c285e9'),(355080,43051,'hero_actions',''),(355081,43051,'_hero_actions','field_61757270285ea'),(355082,43051,'hero_style','default'),(355083,43051,'_hero_style','field_62051d9dc5324'),(355084,43051,'hero_image_pos_x','right'),(355085,43051,'_hero_image_pos_x','field_62ec3d05390bb'),(355086,43051,'hero_image_pos_y','top'),(355087,43051,'_hero_image_pos_y','field_62ec3d05390bc'),(355088,43051,'hero_image_pos',''),(355089,43051,'_hero_image_pos','field_62ec3d05390ba'),(355090,43051,'fft_hide_from_listings','0'),(355091,43051,'_fft_hide_from_listings','field_61f1320446ab2'),(355092,43051,'fft_page_format','default'),(355093,43051,'_fft_page_format','field_61ae213f1f218'),(355094,43051,'fft_hide_nav','0'),(355095,43051,'_fft_hide_nav','field_635bd5e43527c'),(355096,43051,'fft_hide_header_call_to_action','0'),(355097,43051,'_fft_hide_header_call_to_action','field_635bd6723527d'),(355098,43051,'fft_page_sitemap','0'),(355099,43051,'_fft_page_sitemap','field_61af9b34e8181'),(355100,43051,'blocks','a:6:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";i:3;s:5:\"quote\";i:4;s:10:\"link_stack\";i:5;s:18:\"testimonial_slider\";}'),(355101,43051,'_blocks','field_6176696113096'),(355102,43051,'_thumbnail_id','40294'),(355103,43051,'__thumbnail_id','field_617570855ddaf'),(355104,43051,'blocks_0_acfe_flexible_toggle',''),(355105,43051,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(355106,43051,'blocks_0_acfe_flexible_layout_title','Form'),(355107,43051,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(355108,43051,'blocks_0_row_content_format','standard'),(355109,43051,'_blocks_0_row_content_format','field_6481ead962881'),(355110,43051,'blocks_0_row_content_title','Enquire Now'),(355111,43051,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(355112,43051,'blocks_0_row_content_heading','Course Information and Price Guide'),(355113,43051,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(355114,43051,'blocks_0_row_content_text','<ul>\r\n 	<li>Gain an overview of pricing and payment options.</li>\r\n 	<li>Discover valuable insights on fees and funding opportunities.</li>\r\n 	<li>Receive exclusive offers.</li>\r\n</ul>'),(355115,43051,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(355116,43051,'blocks_0_row_content_actions',''),(355117,43051,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(355118,43051,'blocks_0_row_content',''),(355119,43051,'_blocks_0_row_content','field_61a0f5f5b3db0'),(355120,43051,'blocks_0_row_form','43045'),(355121,43051,'_blocks_0_row_form','field_61a4ff2c0b08e'),(355122,43051,'blocks_0_row_form_button_label',''),(355123,43051,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(355124,43051,'blocks_1_acfe_flexible_toggle','1'),(355125,43051,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(355126,43051,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(355127,43051,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(355128,43051,'blocks_1_options_theme','#ffffff'),(355129,43051,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(355130,43051,'blocks_1_options_reverse','0'),(355131,43051,'_blocks_1_options_reverse','field_61768049bb8ac'),(355132,43051,'blocks_1_options',''),(355133,43051,'_blocks_1_options','field_617682517c334'),(355134,43051,'blocks_1_split_5050_image','39271'),(355135,43051,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(355136,43051,'blocks_1_split_5050_video',''),(355137,43051,'_blocks_1_split_5050_video','field_6239f3160848a'),(355138,43051,'blocks_1_split_5050_content_title',''),(355139,43051,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(355140,43051,'blocks_1_split_5050_content_heading','What\'s included in this guide? '),(355141,43051,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(355142,43051,'blocks_1_split_5050_content_text','<strong>Understand our prices</strong>\r\n\r\nThat’s why we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\r\n\r\n<strong>Get to know our courses</strong>\r\n\r\nAccess a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you\'ll receive, awarding bodies and accreditations.\r\n\r\n<strong>Learn about us as a business</strong>\r\n\r\nGet valuable information about Biomechanics Education and Future Fit Training. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.'),(355143,43051,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(355144,43051,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Download our Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(355145,43051,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(355146,43051,'blocks_1_split_5050_content_actions','1'),(355147,43051,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(355148,43051,'blocks_1_split_5050_content',''),(355149,43051,'_blocks_1_split_5050_content','field_61767afceb8ba'),(355150,43051,'blocks_2_acfe_flexible_toggle',''),(355151,43051,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(355152,43051,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(355153,43051,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(355154,43051,'blocks_2_options_theme','#ffffff'),(355155,43051,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(355156,43051,'blocks_2_options_reverse','0'),(355157,43051,'_blocks_2_options_reverse','field_61768049bb8ac'),(355158,43051,'blocks_2_options',''),(355159,43051,'_blocks_2_options','field_617682517c334'),(355160,43051,'blocks_2_split_5050_image','39271'),(355161,43051,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(355162,43051,'blocks_2_split_5050_video',''),(355163,43051,'_blocks_2_split_5050_video','field_6239f3160848a'),(355164,43051,'blocks_2_split_5050_content_title',''),(355165,43051,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(355166,43051,'blocks_2_split_5050_content_heading','What\'s included in this guide?'),(355167,43051,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(355168,43051,'blocks_2_split_5050_content_text','[accordion title=\"Understand our prices\" content=\"we’ve developed a complete range of payment options, including 0% finance, to allow anyone to reach their career goals and leave a lasting legacy in the health and fitness industry.\"]\r\n\r\n[accordion title=\"Get to know our courses\" content=\"Access a full breakdown of all of our leading courses, including the Diploma in Biomechanics Coaching. This part of the guide will also walk through what qualifications you’ll receive, awarding bodies and accreditations.\"]\r\n\r\n[accordion title=\"Learn about us as a business\" content=\"Get valuable information about Biomechanics Education and Future Fit Group. See for yourselves exactly what makes us stand out from the rest and how we are dedicated to getting the best out of our students.\"]'),(355169,43051,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(355170,43051,'blocks_2_split_5050_content_actions','1'),(355171,43051,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(355172,43051,'blocks_2_split_5050_content',''),(355173,43051,'_blocks_2_split_5050_content','field_61767afceb8ba'),(355174,43051,'blocks_2_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:12:\"#row-39270-1\";s:6:\"target\";s:0:\"\";}'),(355175,43051,'_blocks_2_split_5050_content_actions_0_button','field_61767b72eb8be'),(355176,43051,'blocks_3_acfe_flexible_toggle',''),(355177,43051,'_blocks_3_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(355178,43051,'blocks_3_acfe_flexible_layout_title','Quote'),(355179,43051,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(355180,43051,'blocks_3_quote_content','I just wanted to say thank you for transforming my knowledge. Without the Biomechanics Coaching Diploma, I would have been lost, but now I feel like I\'m not only giving clients a better understanding of their body but also further education is making more sense to me.  '),(355181,43051,'_blocks_3_quote_content','field_6177cdacdd67a'),(355182,43051,'blocks_3_quote_author',''),(355183,43051,'_blocks_3_quote_author','field_6177cdc6dd67b'),(355184,43051,'blocks_4_acfe_flexible_toggle',''),(355185,43051,'_blocks_4_acfe_flexible_toggle','field_layout_6177b758246ad_toggle'),(355186,43051,'blocks_4_acfe_flexible_layout_title','Link Stack'),(355187,43051,'_blocks_4_acfe_flexible_layout_title','field_layout_6177b758246ad_title'),(355188,43051,'blocks_4_options_theme','#ffffff'),(355189,43051,'_blocks_4_options_theme','field_6177b758246af_field_6176830e2ad17'),(355190,43051,'blocks_4_options',''),(355191,43051,'_blocks_4_options','field_6177b758246ae'),(355192,43051,'blocks_4_link_stack_content_title',''),(355193,43051,'_blocks_4_link_stack_content_title','field_6177b7b600cf9'),(355194,43051,'blocks_4_link_stack_content_heading','Discover our expertise'),(355195,43051,'_blocks_4_link_stack_content_heading','field_6177b7b600cfa'),(355196,43051,'blocks_4_link_stack_content_text','Discover the fields in which our expertise will benefit you'),(355197,43051,'_blocks_4_link_stack_content_text','field_6177b7b600cfb'),(355198,43051,'blocks_4_link_stack_content_actions',''),(355199,43051,'_blocks_4_link_stack_content_actions','field_6177b7b600cfc'),(355200,43051,'blocks_4_link_stack_content',''),(355201,43051,'_blocks_4_link_stack_content','field_6177b7b600cf8'),(355202,43051,'blocks_4_link_stack_0_label','Personal Training'),(355203,43051,'_blocks_4_link_stack_0_label','field_6177b80900d00'),(355204,43051,'blocks_4_link_stack_0_title','Discover Biomechanics in Personal Training'),(355205,43051,'_blocks_4_link_stack_0_title','field_6177b80f00d01'),(355206,43051,'blocks_4_link_stack_0_url','https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/'),(355207,43051,'_blocks_4_link_stack_0_url','field_6177b82200d02'),(355208,43051,'blocks_4_link_stack_1_label','Pilates'),(355209,43051,'_blocks_4_link_stack_1_label','field_6177b80900d00'),(355210,43051,'blocks_4_link_stack_1_title','Discover Biomechanics in Pilates'),(355211,43051,'_blocks_4_link_stack_1_title','field_6177b80f00d01'),(355212,43051,'blocks_4_link_stack_1_url','https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/'),(355213,43051,'_blocks_4_link_stack_1_url','field_6177b82200d02'),(355214,43051,'blocks_4_link_stack_2_label','Sports Coaches'),(355215,43051,'_blocks_4_link_stack_2_label','field_6177b80900d00'),(355216,43051,'blocks_4_link_stack_2_title','Discover Biomechanics in Sports Coaching'),(355217,43051,'_blocks_4_link_stack_2_title','field_6177b80f00d01'),(355218,43051,'blocks_4_link_stack_2_url','https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/'),(355219,43051,'_blocks_4_link_stack_2_url','field_6177b82200d02'),(355220,43051,'blocks_4_link_stack_3_label','SMT'),(355221,43051,'_blocks_4_link_stack_3_label','field_6177b80900d00'),(355222,43051,'blocks_4_link_stack_3_title','Discover Biomechanics in Sports Massage Therapy'),(355223,43051,'_blocks_4_link_stack_3_title','field_6177b80f00d01'),(355224,43051,'blocks_4_link_stack_3_url','https://biomechanicseducation.com/getting-started/sports-massage-therapy/'),(355225,43051,'_blocks_4_link_stack_3_url','field_6177b82200d02'),(355226,43051,'blocks_4_link_stack_4_label','Podiatrists'),(355227,43051,'_blocks_4_link_stack_4_label','field_6177b80900d00'),(355228,43051,'blocks_4_link_stack_4_title','Discover Biomechanics in Podiatry'),(355229,43051,'_blocks_4_link_stack_4_title','field_6177b80f00d01'),(355230,43051,'blocks_4_link_stack_4_url','https://biomechanicseducation.com/getting-started/podiatrists/'),(355231,43051,'_blocks_4_link_stack_4_url','field_6177b82200d02'),(355232,43051,'blocks_4_link_stack_5_label','Biomechanics Coach'),(355233,43051,'_blocks_4_link_stack_5_label','field_6177b80900d00'),(355234,43051,'blocks_4_link_stack_5_title','How to Become a Biomechanics Coach'),(355235,43051,'_blocks_4_link_stack_5_title','field_6177b80f00d01'),(355236,43051,'blocks_4_link_stack_5_url','https://biomechanicseducation.com/getting-started/biomechanics-coach/'),(355237,43051,'_blocks_4_link_stack_5_url','field_6177b82200d02'),(355238,43051,'blocks_4_link_stack','6'),(355239,43051,'_blocks_4_link_stack','field_6177b7f600cff'),(355240,43051,'blocks_5_acfe_flexible_toggle','1'),(355241,43051,'_blocks_5_acfe_flexible_toggle','field_layout_617c034a39a65_toggle'),(355242,43051,'blocks_5_acfe_flexible_layout_title','Testimonial Slider'),(355243,43051,'_blocks_5_acfe_flexible_layout_title','field_layout_617c034a39a65_title'),(355244,43051,'blocks_5_testimonial_slider_content_title',''),(355245,43051,'_blocks_5_testimonial_slider_content_title','field_617c033b39a60'),(355246,43051,'blocks_5_testimonial_slider_content_heading','Testimonials'),(355247,43051,'_blocks_5_testimonial_slider_content_heading','field_617c033b39a61'),(355248,43051,'blocks_5_testimonial_slider_content_text','Read testimonials from real customers sharing their experiences'),(355249,43051,'_blocks_5_testimonial_slider_content_text','field_617c033b39a62'),(355250,43051,'blocks_5_testimonial_slider_content_actions',''),(355251,43051,'_blocks_5_testimonial_slider_content_actions','field_617c033b39a63'),(355252,43051,'blocks_5_testimonial_slider_content',''),(355253,43051,'_blocks_5_testimonial_slider_content','field_617c033b39a5f'),(355254,43051,'blocks_5_testimonial_slider_items','a:5:{i:0;s:5:\"39168\";i:1;s:5:\"39170\";i:2;s:5:\"38964\";i:3;s:5:\"38965\";i:4;s:5:\"39169\";}'),(355255,43051,'_blocks_5_testimonial_slider_items','field_61812eaeb20eb'),(355256,43051,'blocks_5_testimonial_slider_ambassador_bool','0'),(355257,43051,'_blocks_5_testimonial_slider_ambassador_bool','field_61a4a386704cf'),(355258,43066,'_edit_lock','1751533987:17'),(355259,43066,'_edit_last','17'),(355260,43066,'hide_hero','0'),(355261,43066,'_hide_hero','field_66a2380fcda39'),(355262,43066,'hero_title','The Link Between Movement Biomechanics and Risk Reduction'),(355263,43066,'_hero_title','field_617571fe285e8'),(355264,43066,'hero_text',''),(355265,43066,'_hero_text','field_6175723c285e9'),(355266,43066,'hero_actions',''),(355267,43066,'_hero_actions','field_61757270285ea'),(355268,43066,'hero_style','default'),(355269,43066,'_hero_style','field_62051d9dc5324'),(355271,43066,'__thumbnail_id','field_617570855ddaf'),(355272,43066,'hero_image_pos_x','right'),(355273,43066,'_hero_image_pos_x','field_62ec3d05390bb'),(355274,43066,'hero_image_pos_y','top'),(355275,43066,'_hero_image_pos_y','field_62ec3d05390bc'),(355276,43066,'hero_image_pos',''),(355277,43066,'_hero_image_pos','field_62ec3d05390ba'),(355278,43066,'fft_hide_from_listings','0'),(355279,43066,'_fft_hide_from_listings','field_61f1320446ab2'),(355280,43066,'post_format','2'),(355281,43066,'_post_format','field_61756bfb51898'),(355282,43066,'post_author',''),(355283,43066,'_post_author','field_62ec389d22113'),(355284,43066,'post_reviewer',''),(355285,43066,'_post_reviewer','field_627140a2a9800'),(355286,43066,'post_table_of_contents','1'),(355287,43066,'_post_table_of_contents','field_65c503bc846a6'),(355288,43066,'_yoast_wpseo_primary_category','5'),(355289,43066,'_yoast_wpseo_primary_blog-format',''),(355290,43066,'_yoast_wpseo_focuskw','Movement biomechanics and injury prevention'),(355291,43066,'_yoast_wpseo_metadesc','Learn how understanding intrinsic biomechanics helps reduce injury risk, improve movement efficiency, and support long-term performance.'),(355292,43066,'_yoast_wpseo_linkdex','64'),(355293,43066,'_yoast_wpseo_content_score','90'),(355294,43066,'_yoast_wpseo_inclusive_language_score','90'),(355295,43066,'_yoast_wpseo_estimated-reading-time-minutes','4'),(355296,43067,'hide_hero','0'),(355297,43067,'_hide_hero','field_66a2380fcda39'),(355298,43067,'hero_title','The Link Between Movement Biomechanics and Risk Reduction'),(355299,43067,'_hero_title','field_617571fe285e8'),(355300,43067,'hero_text',''),(355301,43067,'_hero_text','field_6175723c285e9'),(355302,43067,'hero_actions',''),(355303,43067,'_hero_actions','field_61757270285ea'),(355304,43067,'hero_style','default'),(355305,43067,'_hero_style','field_62051d9dc5324'),(355306,43067,'_thumbnail_id','41332'),(355307,43067,'__thumbnail_id','field_617570855ddaf'),(355308,43067,'hero_image_pos_x','right'),(355309,43067,'_hero_image_pos_x','field_62ec3d05390bb'),(355310,43067,'hero_image_pos_y','top'),(355311,43067,'_hero_image_pos_y','field_62ec3d05390bc'),(355312,43067,'hero_image_pos',''),(355313,43067,'_hero_image_pos','field_62ec3d05390ba'),(355314,43067,'fft_hide_from_listings','0'),(355315,43067,'_fft_hide_from_listings','field_61f1320446ab2'),(355316,43067,'post_format','2'),(355317,43067,'_post_format','field_61756bfb51898'),(355318,43067,'post_author',''),(355319,43067,'_post_author','field_62ec389d22113'),(355320,43067,'post_reviewer',''),(355321,43067,'_post_reviewer','field_627140a2a9800'),(355322,43067,'post_table_of_contents','1'),(355323,43067,'_post_table_of_contents','field_65c503bc846a6'),(355324,43066,'_thumbnail_id','41332'),(355325,43068,'hide_hero','0'),(355326,43068,'_hide_hero','field_66a2380fcda39'),(355327,43068,'hero_title','The Link Between Movement Biomechanics and Risk Reduction'),(355328,43068,'_hero_title','field_617571fe285e8'),(355329,43068,'hero_text',''),(355330,43068,'_hero_text','field_6175723c285e9'),(355331,43068,'hero_actions',''),(355332,43068,'_hero_actions','field_61757270285ea'),(355333,43068,'hero_style','default'),(355334,43068,'_hero_style','field_62051d9dc5324'),(355335,43068,'hero_image_pos_x','right'),(355336,43068,'_hero_image_pos_x','field_62ec3d05390bb'),(355337,43068,'hero_image_pos_y','top'),(355338,43068,'_hero_image_pos_y','field_62ec3d05390bc'),(355339,43068,'hero_image_pos',''),(355340,43068,'_hero_image_pos','field_62ec3d05390ba'),(355341,43068,'fft_hide_from_listings','0'),(355342,43068,'_fft_hide_from_listings','field_61f1320446ab2'),(355343,43068,'post_format','2'),(355344,43068,'_post_format','field_61756bfb51898'),(355345,43068,'post_author',''),(355346,43068,'_post_author','field_62ec389d22113'),(355347,43068,'post_reviewer',''),(355348,43068,'_post_reviewer','field_627140a2a9800'),(355349,43068,'post_table_of_contents','1'),(355350,43068,'_post_table_of_contents','field_65c503bc846a6'),(355351,43068,'_thumbnail_id','41332'),(355352,43068,'__thumbnail_id','field_617570855ddaf'),(355353,43069,'_edit_lock','1751534750:17'),(355354,43008,'_edit_lock','1745570897:22'),(355355,43069,'_edit_last','17'),(355356,43025,'_edit_lock','1745571087:22'),(355357,43069,'hide_hero','0'),(355358,43069,'_hide_hero','field_66a2380fcda39'),(355359,43069,'hero_title','The Role of Joint Health in Preventing Common Fitness Injuries'),(355360,43069,'_hero_title','field_617571fe285e8'),(355361,43069,'hero_text',''),(355362,43069,'_hero_text','field_6175723c285e9'),(355363,43069,'hero_actions',''),(355364,43069,'_hero_actions','field_61757270285ea'),(355365,43069,'hero_style','default'),(355366,43069,'_hero_style','field_62051d9dc5324'),(355368,43069,'__thumbnail_id','field_617570855ddaf'),(355369,43069,'hero_image_pos_x','right'),(355370,43069,'_hero_image_pos_x','field_62ec3d05390bb'),(355371,43069,'hero_image_pos_y','top'),(355372,43069,'_hero_image_pos_y','field_62ec3d05390bc'),(355373,43069,'hero_image_pos',''),(355374,43069,'_hero_image_pos','field_62ec3d05390ba'),(355375,43069,'fft_hide_from_listings','0'),(355376,43069,'_fft_hide_from_listings','field_61f1320446ab2'),(355377,43069,'post_format','2'),(355378,43069,'_post_format','field_61756bfb51898'),(355379,43069,'post_author',''),(355380,43069,'_post_author','field_62ec389d22113'),(355381,43069,'post_reviewer',''),(355382,43069,'_post_reviewer','field_627140a2a9800'),(355383,43069,'post_table_of_contents','1'),(355384,43069,'_post_table_of_contents','field_65c503bc846a6'),(355385,43069,'_yoast_wpseo_primary_category',''),(355386,43069,'_yoast_wpseo_primary_blog-format',''),(355387,43069,'_yoast_wpseo_focuskw','Joint health and injury prevention'),(355388,43069,'_yoast_wpseo_metadesc','Learn how joint health reduces injury risk and boosts training performance. Support mobility, stability, and long-term movement.'),(355389,43069,'_yoast_wpseo_linkdex','64'),(355390,43069,'_yoast_wpseo_content_score','90'),(355391,43069,'_yoast_wpseo_inclusive_language_score','90'),(355392,43069,'_yoast_wpseo_estimated-reading-time-minutes','4'),(355393,43070,'hide_hero','0'),(355394,43070,'_hide_hero','field_66a2380fcda39'),(355395,43070,'hero_title','The Role of Joint Health in Preventing Common Fitness Injuries'),(355396,43070,'_hero_title','field_617571fe285e8'),(355397,43070,'hero_text',''),(355398,43070,'_hero_text','field_6175723c285e9'),(355399,43070,'hero_actions',''),(355400,43070,'_hero_actions','field_61757270285ea'),(355401,43070,'hero_style','default'),(355402,43070,'_hero_style','field_62051d9dc5324'),(355403,43070,'_thumbnail_id','40812'),(355404,43070,'__thumbnail_id','field_617570855ddaf'),(355405,43070,'hero_image_pos_x','right'),(355406,43070,'_hero_image_pos_x','field_62ec3d05390bb'),(355407,43070,'hero_image_pos_y','top'),(355408,43070,'_hero_image_pos_y','field_62ec3d05390bc'),(355409,43070,'hero_image_pos',''),(355410,43070,'_hero_image_pos','field_62ec3d05390ba'),(355411,43070,'fft_hide_from_listings','0'),(355412,43070,'_fft_hide_from_listings','field_61f1320446ab2'),(355413,43070,'post_format','2'),(355414,43070,'_post_format','field_61756bfb51898'),(355415,43070,'post_author',''),(355416,43070,'_post_author','field_62ec389d22113'),(355417,43070,'post_reviewer',''),(355418,43070,'_post_reviewer','field_627140a2a9800'),(355419,43070,'post_table_of_contents','1'),(355420,43070,'_post_table_of_contents','field_65c503bc846a6'),(355421,43069,'_thumbnail_id','40812'),(355422,43072,'hide_hero','0'),(355423,43072,'_hide_hero','field_66a2380fcda39'),(355424,43072,'hero_title','The Role of Joint Health in Preventing Common Fitness Injuries'),(355425,43072,'_hero_title','field_617571fe285e8'),(355426,43072,'hero_text',''),(355427,43072,'_hero_text','field_6175723c285e9'),(355428,43072,'hero_actions',''),(355429,43072,'_hero_actions','field_61757270285ea'),(355430,43072,'hero_style','default'),(355431,43072,'_hero_style','field_62051d9dc5324'),(355432,43072,'hero_image_pos_x','right'),(355433,43072,'_hero_image_pos_x','field_62ec3d05390bb'),(355434,43072,'hero_image_pos_y','top'),(355435,43072,'_hero_image_pos_y','field_62ec3d05390bc'),(355436,43072,'hero_image_pos',''),(355437,43072,'_hero_image_pos','field_62ec3d05390ba'),(355438,43072,'fft_hide_from_listings','0'),(355439,43072,'_fft_hide_from_listings','field_61f1320446ab2'),(355440,43072,'post_format','2'),(355441,43072,'_post_format','field_61756bfb51898'),(355442,43072,'post_author',''),(355443,43072,'_post_author','field_62ec389d22113'),(355444,43072,'post_reviewer',''),(355445,43072,'_post_reviewer','field_627140a2a9800'),(355446,43072,'post_table_of_contents','1'),(355447,43072,'_post_table_of_contents','field_65c503bc846a6'),(355448,43072,'_thumbnail_id','40812'),(355449,43072,'__thumbnail_id','field_617570855ddaf'),(355450,43073,'_edit_lock','1751534120:17'),(355451,43073,'_edit_last','17'),(355452,43073,'hide_hero','0'),(355453,43073,'_hide_hero','field_66a2380fcda39'),(355454,43073,'hero_title','Understanding the Connection Between Movement and Symptoms'),(355455,43073,'_hero_title','field_617571fe285e8'),(355456,43073,'hero_text',''),(355457,43073,'_hero_text','field_6175723c285e9'),(355458,43073,'hero_actions',''),(355459,43073,'_hero_actions','field_61757270285ea'),(355460,43073,'hero_style','default'),(355461,43073,'_hero_style','field_62051d9dc5324'),(355463,43073,'__thumbnail_id','field_617570855ddaf'),(355464,43073,'hero_image_pos_x','right'),(355465,43073,'_hero_image_pos_x','field_62ec3d05390bb'),(355466,43073,'hero_image_pos_y','top'),(355467,43073,'_hero_image_pos_y','field_62ec3d05390bc'),(355468,43073,'hero_image_pos',''),(355469,43073,'_hero_image_pos','field_62ec3d05390ba'),(355470,43073,'fft_hide_from_listings','0'),(355471,43073,'_fft_hide_from_listings','field_61f1320446ab2'),(355472,43073,'post_format','2'),(355473,43073,'_post_format','field_61756bfb51898'),(355474,43073,'post_author',''),(355475,43073,'_post_author','field_62ec389d22113'),(355476,43073,'post_reviewer',''),(355477,43073,'_post_reviewer','field_627140a2a9800'),(355478,43073,'post_table_of_contents','1'),(355479,43073,'_post_table_of_contents','field_65c503bc846a6'),(355480,43073,'_yoast_wpseo_primary_category','5'),(355481,43073,'_yoast_wpseo_primary_blog-format',''),(355482,43073,'_yoast_wpseo_focuskw','Preparation exercise and symptom management'),(355483,43073,'_yoast_wpseo_metadesc','Learn how preparation exercise uses biomechanics and neuromuscular science to improve movement and reduce symptoms.'),(355484,43073,'_yoast_wpseo_linkdex','60'),(355485,43073,'_yoast_wpseo_content_score','90'),(355486,43073,'_yoast_wpseo_inclusive_language_score','90'),(355487,43073,'_yoast_wpseo_estimated-reading-time-minutes','4'),(355488,43075,'hide_hero','0'),(355489,43075,'_hide_hero','field_66a2380fcda39'),(355490,43075,'hero_title','Understanding the Connection Between Movement and Symptoms'),(355491,43075,'_hero_title','field_617571fe285e8'),(355492,43075,'hero_text',''),(355493,43075,'_hero_text','field_6175723c285e9'),(355494,43075,'hero_actions',''),(355495,43075,'_hero_actions','field_61757270285ea'),(355496,43075,'hero_style','default'),(355497,43075,'_hero_style','field_62051d9dc5324'),(355498,43075,'_thumbnail_id',''),(355499,43075,'__thumbnail_id','field_617570855ddaf'),(355500,43075,'hero_image_pos_x','right'),(355501,43075,'_hero_image_pos_x','field_62ec3d05390bb'),(355502,43075,'hero_image_pos_y','top'),(355503,43075,'_hero_image_pos_y','field_62ec3d05390bc'),(355504,43075,'hero_image_pos',''),(355505,43075,'_hero_image_pos','field_62ec3d05390ba'),(355506,43075,'fft_hide_from_listings','0'),(355507,43075,'_fft_hide_from_listings','field_61f1320446ab2'),(355508,43075,'post_format','2'),(355509,43075,'_post_format','field_61756bfb51898'),(355510,43075,'post_author',''),(355511,43075,'_post_author','field_62ec389d22113'),(355512,43075,'post_reviewer',''),(355513,43075,'_post_reviewer','field_627140a2a9800'),(355514,43075,'post_table_of_contents','1'),(355515,43075,'_post_table_of_contents','field_65c503bc846a6'),(355517,43076,'hide_hero','0'),(355518,43076,'_hide_hero','field_66a2380fcda39'),(355519,43076,'hero_title','Understanding the Connection Between Movement and Symptoms'),(355520,43076,'_hero_title','field_617571fe285e8'),(355521,43076,'hero_text',''),(355522,43076,'_hero_text','field_6175723c285e9'),(355523,43076,'hero_actions',''),(355524,43076,'_hero_actions','field_61757270285ea'),(355525,43076,'hero_style','default'),(355526,43076,'_hero_style','field_62051d9dc5324'),(355527,43076,'hero_image_pos_x','right'),(355528,43076,'_hero_image_pos_x','field_62ec3d05390bb'),(355529,43076,'hero_image_pos_y','top'),(355530,43076,'_hero_image_pos_y','field_62ec3d05390bc'),(355531,43076,'hero_image_pos',''),(355532,43076,'_hero_image_pos','field_62ec3d05390ba'),(355533,43076,'fft_hide_from_listings','0'),(355534,43076,'_fft_hide_from_listings','field_61f1320446ab2'),(355535,43076,'post_format','2'),(355536,43076,'_post_format','field_61756bfb51898'),(355537,43076,'post_author',''),(355538,43076,'_post_author','field_62ec389d22113'),(355539,43076,'post_reviewer',''),(355540,43076,'_post_reviewer','field_627140a2a9800'),(355541,43076,'post_table_of_contents','1'),(355542,43076,'_post_table_of_contents','field_65c503bc846a6'),(355543,43076,'_thumbnail_id','41326'),(355544,43076,'__thumbnail_id','field_617570855ddaf'),(355545,43073,'_thumbnail_id','41326'),(355546,43077,'hide_hero','0'),(355547,43077,'_hide_hero','field_66a2380fcda39'),(355548,43077,'hero_title','Understanding the Connection Between Movement and Symptoms'),(355549,43077,'_hero_title','field_617571fe285e8'),(355550,43077,'hero_text',''),(355551,43077,'_hero_text','field_6175723c285e9'),(355552,43077,'hero_actions',''),(355553,43077,'_hero_actions','field_61757270285ea'),(355554,43077,'hero_style','default'),(355555,43077,'_hero_style','field_62051d9dc5324'),(355556,43077,'hero_image_pos_x','right'),(355557,43077,'_hero_image_pos_x','field_62ec3d05390bb'),(355558,43077,'hero_image_pos_y','top'),(355559,43077,'_hero_image_pos_y','field_62ec3d05390bc'),(355560,43077,'hero_image_pos',''),(355561,43077,'_hero_image_pos','field_62ec3d05390ba'),(355562,43077,'fft_hide_from_listings','0'),(355563,43077,'_fft_hide_from_listings','field_61f1320446ab2'),(355564,43077,'post_format','2'),(355565,43077,'_post_format','field_61756bfb51898'),(355566,43077,'post_author',''),(355567,43077,'_post_author','field_62ec389d22113'),(355568,43077,'post_reviewer',''),(355569,43077,'_post_reviewer','field_627140a2a9800'),(355570,43077,'post_table_of_contents','1'),(355571,43077,'_post_table_of_contents','field_65c503bc846a6'),(355572,43077,'_thumbnail_id','41326'),(355573,43077,'__thumbnail_id','field_617570855ddaf'),(355574,43078,'_edit_lock','1751534749:17'),(355575,43078,'_edit_last','17'),(355576,43078,'hide_hero','0'),(355577,43078,'_hide_hero','field_66a2380fcda39'),(355578,43078,'hero_title','Top 5 Preparation Exercises Every Trainer Should Know'),(355579,43078,'_hero_title','field_617571fe285e8'),(355580,43078,'hero_text',''),(355581,43078,'_hero_text','field_6175723c285e9'),(355582,43078,'hero_actions',''),(355583,43078,'_hero_actions','field_61757270285ea'),(355584,43078,'hero_style','default'),(355585,43078,'_hero_style','field_62051d9dc5324'),(355587,43078,'__thumbnail_id','field_617570855ddaf'),(355588,43078,'hero_image_pos_x','right'),(355589,43078,'_hero_image_pos_x','field_62ec3d05390bb'),(355590,43078,'hero_image_pos_y','top'),(355591,43078,'_hero_image_pos_y','field_62ec3d05390bc'),(355592,43078,'hero_image_pos',''),(355593,43078,'_hero_image_pos','field_62ec3d05390ba'),(355594,43078,'fft_hide_from_listings','0'),(355595,43078,'_fft_hide_from_listings','field_61f1320446ab2'),(355596,43078,'post_format','2'),(355597,43078,'_post_format','field_61756bfb51898'),(355598,43078,'post_author',''),(355599,43078,'_post_author','field_62ec389d22113'),(355600,43078,'post_reviewer',''),(355601,43078,'_post_reviewer','field_627140a2a9800'),(355602,43078,'post_table_of_contents','1'),(355603,43078,'_post_table_of_contents','field_65c503bc846a6'),(355604,43078,'_yoast_wpseo_primary_category',''),(355605,43078,'_yoast_wpseo_primary_blog-format',''),(355606,43078,'_yoast_wpseo_focuskw','Preparation exercises for trainers'),(355607,43078,'_yoast_wpseo_metadesc','Discover 5 essential preparation exercises every fitness trainer should use to improve movement, reduce injury risk, and enhance performance.'),(355608,43078,'_yoast_wpseo_linkdex','69'),(355609,43078,'_yoast_wpseo_content_score','90'),(355610,43078,'_yoast_wpseo_inclusive_language_score','90'),(355611,43078,'_yoast_wpseo_estimated-reading-time-minutes','4'),(355612,43079,'hide_hero','0'),(355613,43079,'_hide_hero','field_66a2380fcda39'),(355614,43079,'hero_title','Top 5 Preparation Exercises Every Trainer Should Know'),(355615,43079,'_hero_title','field_617571fe285e8'),(355616,43079,'hero_text',''),(355617,43079,'_hero_text','field_6175723c285e9'),(355618,43079,'hero_actions',''),(355619,43079,'_hero_actions','field_61757270285ea'),(355620,43079,'hero_style','default'),(355621,43079,'_hero_style','field_62051d9dc5324'),(355622,43079,'_thumbnail_id','40615'),(355623,43079,'__thumbnail_id','field_617570855ddaf'),(355624,43079,'hero_image_pos_x','right'),(355625,43079,'_hero_image_pos_x','field_62ec3d05390bb'),(355626,43079,'hero_image_pos_y','top'),(355627,43079,'_hero_image_pos_y','field_62ec3d05390bc'),(355628,43079,'hero_image_pos',''),(355629,43079,'_hero_image_pos','field_62ec3d05390ba'),(355630,43079,'fft_hide_from_listings','0'),(355631,43079,'_fft_hide_from_listings','field_61f1320446ab2'),(355632,43079,'post_format','2'),(355633,43079,'_post_format','field_61756bfb51898'),(355634,43079,'post_author',''),(355635,43079,'_post_author','field_62ec389d22113'),(355636,43079,'post_reviewer',''),(355637,43079,'_post_reviewer','field_627140a2a9800'),(355638,43079,'post_table_of_contents','1'),(355639,43079,'_post_table_of_contents','field_65c503bc846a6'),(355640,43078,'_thumbnail_id','40615'),(355641,43080,'hide_hero','0'),(355642,43080,'_hide_hero','field_66a2380fcda39'),(355643,43080,'hero_title','Top 5 Preparation Exercises Every Trainer Should Know'),(355644,43080,'_hero_title','field_617571fe285e8'),(355645,43080,'hero_text',''),(355646,43080,'_hero_text','field_6175723c285e9'),(355647,43080,'hero_actions',''),(355648,43080,'_hero_actions','field_61757270285ea'),(355649,43080,'hero_style','default'),(355650,43080,'_hero_style','field_62051d9dc5324'),(355651,43080,'hero_image_pos_x','right'),(355652,43080,'_hero_image_pos_x','field_62ec3d05390bb'),(355653,43080,'hero_image_pos_y','top'),(355654,43080,'_hero_image_pos_y','field_62ec3d05390bc'),(355655,43080,'hero_image_pos',''),(355656,43080,'_hero_image_pos','field_62ec3d05390ba'),(355657,43080,'fft_hide_from_listings','0'),(355658,43080,'_fft_hide_from_listings','field_61f1320446ab2'),(355659,43080,'post_format','2'),(355660,43080,'_post_format','field_61756bfb51898'),(355661,43080,'post_author',''),(355662,43080,'_post_author','field_62ec389d22113'),(355663,43080,'post_reviewer',''),(355664,43080,'_post_reviewer','field_627140a2a9800'),(355665,43080,'post_table_of_contents','1'),(355666,43080,'_post_table_of_contents','field_65c503bc846a6'),(355667,43080,'_thumbnail_id','40615'),(355668,43080,'__thumbnail_id','field_617570855ddaf'),(355669,43081,'_edit_lock','1751534750:17'),(355670,43081,'_edit_last','17'),(355671,43081,'hide_hero','0'),(355672,43081,'_hide_hero','field_66a2380fcda39'),(355673,43081,'hero_title','What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?'),(355674,43081,'_hero_title','field_617571fe285e8'),(355675,43081,'hero_text',''),(355676,43081,'_hero_text','field_6175723c285e9'),(355677,43081,'hero_actions',''),(355678,43081,'_hero_actions','field_61757270285ea'),(355679,43081,'hero_style','default'),(355680,43081,'_hero_style','field_62051d9dc5324'),(355682,43081,'__thumbnail_id','field_617570855ddaf'),(355683,43081,'hero_image_pos_x','right'),(355684,43081,'_hero_image_pos_x','field_62ec3d05390bb'),(355685,43081,'hero_image_pos_y','top'),(355686,43081,'_hero_image_pos_y','field_62ec3d05390bc'),(355687,43081,'hero_image_pos',''),(355688,43081,'_hero_image_pos','field_62ec3d05390ba'),(355689,43081,'fft_hide_from_listings','0'),(355690,43081,'_fft_hide_from_listings','field_61f1320446ab2'),(355691,43081,'post_format','2'),(355692,43081,'_post_format','field_61756bfb51898'),(355693,43081,'post_author',''),(355694,43081,'_post_author','field_62ec389d22113'),(355695,43081,'post_reviewer',''),(355696,43081,'_post_reviewer','field_627140a2a9800'),(355697,43081,'post_table_of_contents','1'),(355698,43081,'_post_table_of_contents','field_65c503bc846a6'),(355699,43081,'_yoast_wpseo_primary_category',''),(355700,43081,'_yoast_wpseo_primary_blog-format',''),(355701,43081,'_yoast_wpseo_focuskw','Corrective exercise for personal trainers'),(355702,43081,'_yoast_wpseo_metadesc','Learn what ‘corrective’ exercise really means, how it supports movement quality, and why every fitness professional should include it.'),(355703,43081,'_yoast_wpseo_linkdex','64'),(355704,43081,'_yoast_wpseo_content_score','90'),(355705,43081,'_yoast_wpseo_inclusive_language_score','90'),(355706,43081,'_yoast_wpseo_estimated-reading-time-minutes','4'),(355707,43082,'hide_hero','0'),(355708,43082,'_hide_hero','field_66a2380fcda39'),(355709,43082,'hero_title','What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?'),(355710,43082,'_hero_title','field_617571fe285e8'),(355711,43082,'hero_text',''),(355712,43082,'_hero_text','field_6175723c285e9'),(355713,43082,'hero_actions',''),(355714,43082,'_hero_actions','field_61757270285ea'),(355715,43082,'hero_style','default'),(355716,43082,'_hero_style','field_62051d9dc5324'),(355717,43082,'_thumbnail_id','41189'),(355718,43082,'__thumbnail_id','field_617570855ddaf'),(355719,43082,'hero_image_pos_x','right'),(355720,43082,'_hero_image_pos_x','field_62ec3d05390bb'),(355721,43082,'hero_image_pos_y','top'),(355722,43082,'_hero_image_pos_y','field_62ec3d05390bc'),(355723,43082,'hero_image_pos',''),(355724,43082,'_hero_image_pos','field_62ec3d05390ba'),(355725,43082,'fft_hide_from_listings','0'),(355726,43082,'_fft_hide_from_listings','field_61f1320446ab2'),(355727,43082,'post_format','2'),(355728,43082,'_post_format','field_61756bfb51898'),(355729,43082,'post_author',''),(355730,43082,'_post_author','field_62ec389d22113'),(355731,43082,'post_reviewer',''),(355732,43082,'_post_reviewer','field_627140a2a9800'),(355733,43082,'post_table_of_contents','1'),(355734,43082,'_post_table_of_contents','field_65c503bc846a6'),(355735,43081,'_thumbnail_id','41189'),(355736,43083,'hide_hero','0'),(355737,43083,'_hide_hero','field_66a2380fcda39'),(355738,43083,'hero_title','What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?'),(355739,43083,'_hero_title','field_617571fe285e8'),(355740,43083,'hero_text',''),(355741,43083,'_hero_text','field_6175723c285e9'),(355742,43083,'hero_actions',''),(355743,43083,'_hero_actions','field_61757270285ea'),(355744,43083,'hero_style','default'),(355745,43083,'_hero_style','field_62051d9dc5324'),(355746,43083,'hero_image_pos_x','right'),(355747,43083,'_hero_image_pos_x','field_62ec3d05390bb'),(355748,43083,'hero_image_pos_y','top'),(355749,43083,'_hero_image_pos_y','field_62ec3d05390bc'),(355750,43083,'hero_image_pos',''),(355751,43083,'_hero_image_pos','field_62ec3d05390ba'),(355752,43083,'fft_hide_from_listings','0'),(355753,43083,'_fft_hide_from_listings','field_61f1320446ab2'),(355754,43083,'post_format','2'),(355755,43083,'_post_format','field_61756bfb51898'),(355756,43083,'post_author',''),(355757,43083,'_post_author','field_62ec389d22113'),(355758,43083,'post_reviewer',''),(355759,43083,'_post_reviewer','field_627140a2a9800'),(355760,43083,'post_table_of_contents','1'),(355761,43083,'_post_table_of_contents','field_65c503bc846a6'),(355762,43083,'_thumbnail_id','41189'),(355763,43083,'__thumbnail_id','field_617570855ddaf'),(355764,43036,'_edit_lock','1745581000:1'),(355765,43048,'_edit_lock','1745581009:1'),(355766,43057,'_edit_lock','1745581014:1'),(355767,43153,'_wp_attached_file','2025/05/co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-scaled.png'),(355768,43153,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:487;s:4:\"file\";s:83:\"2025/05/co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-scaled.png\";s:8:\"filesize\";i:51616;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-900x171.png\";s:5:\"width\";i:900;s:6:\"height\";i:171;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13702;}s:5:\"large\";a:5:{s:4:\"file\";s:77:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-1200x228.png\";s:5:\"width\";i:1200;s:6:\"height\";i:228;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19171;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-400x76.png\";s:5:\"width\";i:400;s:6:\"height\";i:76;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5370;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-768x146.png\";s:5:\"width\";i:768;s:6:\"height\";i:146;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11405;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:77:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-1536x292.png\";s:5:\"width\";i:1536;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27590;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:77:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-2048x389.png\";s:5:\"width\";i:2048;s:6:\"height\";i:389;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39566;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9919;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30239;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:78:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-1200x1200.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44370;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9244;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27369;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:77:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40807;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4941;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13664;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:77:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-900x1200.png\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19652;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9649;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28648;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:77:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-1200x900.png\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42776;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8382;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23976;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:77:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36048;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:68:\"co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background.png\";}'),(355769,43154,'_wp_attached_file','2025/05/co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-scaled.png'),(355770,43154,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:2001;s:4:\"file\";s:82:\"2025/05/co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-scaled.png\";s:8:\"filesize\";i:108657;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-900x703.png\";s:5:\"width\";i:900;s:6:\"height\";i:703;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29725;}s:5:\"large\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-1200x938.png\";s:5:\"width\";i:1200;s:6:\"height\";i:938;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42545;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-400x313.png\";s:5:\"width\";i:400;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11594;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-768x600.png\";s:5:\"width\";i:768;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24569;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:77:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-1536x1200.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57895;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:77:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-2048x1601.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1601;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82942;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-400x400.png\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14924;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-900x900.png\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:39476;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:77:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-1200x1200.png\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56268;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-400x266.png\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11202;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-900x600.png\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29459;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-1200x800.png\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42178;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-300x400.png\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10421;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-675x900.png\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28151;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-900x1200.png\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40513;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-400x300.png\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11245;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-900x675.png\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29368;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-1200x900.png\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42277;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-400x225.png\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11140;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:75:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-900x506.png\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29199;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:76:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background-1200x675.png\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41910;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:67:\"co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background.png\";}'),(356091,42536,'_yoast_wpseo_content_score','90'),(356093,42536,'blocks_10_acfe_flexible_toggle',''),(356094,42536,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356095,42536,'blocks_10_acfe_flexible_layout_title','Partnership Block '),(356096,42536,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356097,42536,'blocks_10_options_theme','#ffffff'),(356098,42536,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(356099,42536,'blocks_10_options_reverse','0'),(356100,42536,'_blocks_10_options_reverse','field_61768049bb8ac'),(356101,42536,'blocks_10_options',''),(356102,42536,'_blocks_10_options','field_617682517c334'),(356103,42536,'blocks_10_split_5050_image','43154'),(356104,42536,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(356105,42536,'blocks_10_split_5050_video',''),(356106,42536,'_blocks_10_split_5050_video','field_6239f3160848a'),(356107,42536,'blocks_10_split_5050_content_title',''),(356108,42536,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(356109,42536,'blocks_10_split_5050_content_heading',''),(356110,42536,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(356111,42536,'blocks_10_split_5050_content_text','Our international course is brought to you by Biomechanics Education founder Rachel Thomson in collaboration<span data-teams=\"true\"> with international presenter and subject expert Tom Waldron</span>.'),(356112,42536,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(356113,42536,'blocks_10_split_5050_content_actions',''),(356114,42536,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(356115,42536,'blocks_10_split_5050_content',''),(356116,42536,'_blocks_10_split_5050_content','field_61767afceb8ba'),(356117,42536,'blocks_11_acfe_flexible_toggle',''),(356118,42536,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(356119,42536,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(356120,42536,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(356121,42536,'blocks_11_options_theme','#ffffff'),(356122,42536,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(356123,42536,'blocks_11_options_state','0'),(356124,42536,'_blocks_11_options_state','field_6239fcb7508c5'),(356125,42536,'blocks_11_options',''),(356126,42536,'_blocks_11_options','field_6177e2991ac44'),(356127,42536,'blocks_11_content_title',''),(356128,42536,'_blocks_11_content_title','field_64d237e8bb1e2'),(356129,42536,'blocks_11_content_heading','FAQs'),(356130,42536,'_blocks_11_content_heading','field_64d237e8bb1e3'),(356131,42536,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(356132,42536,'_blocks_11_content_text','field_64d237e8bb1e4'),(356133,42536,'blocks_11_content_actions',''),(356134,42536,'_blocks_11_content_actions','field_64d237e8bb1e5'),(356135,42536,'blocks_11_content_align','left'),(356136,42536,'_blocks_11_content_align','field_64d2443e6b6aa'),(356137,42536,'blocks_11_content',''),(356138,42536,'_blocks_11_content','field_64d237e8bb1e1'),(356139,42536,'blocks_11_accordion_content','custom'),(356140,42536,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(356141,42536,'blocks_11_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(356142,42536,'_blocks_11_accordion_items_0_title','field_6177e2991ac4d'),(356143,42536,'blocks_11_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(356144,42536,'_blocks_11_accordion_items_0_text','field_6177e2991ac4e'),(356145,42536,'blocks_11_accordion_items_1_title','What are the study options for international students?'),(356146,42536,'_blocks_11_accordion_items_1_title','field_6177e2991ac4d'),(356147,42536,'blocks_11_accordion_items_1_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(356148,42536,'_blocks_11_accordion_items_1_text','field_6177e2991ac4e'),(356149,42536,'blocks_11_accordion_items_2_title','Who is this course suitable for?'),(356150,42536,'_blocks_11_accordion_items_2_title','field_6177e2991ac4d'),(356151,42536,'blocks_11_accordion_items_2_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(356152,42536,'_blocks_11_accordion_items_2_text','field_6177e2991ac4e'),(356153,42536,'blocks_11_accordion_items_3_title','What are the next steps to get started?'),(356154,42536,'_blocks_11_accordion_items_3_title','field_6177e2991ac4d'),(356155,42536,'blocks_11_accordion_items_3_text','Fill out our enquiry form or give us a call and we can guide you through the process, wherever you are in the world.'),(356156,42536,'_blocks_11_accordion_items_3_text','field_6177e2991ac4e'),(356157,42536,'blocks_11_accordion_items','4'),(356158,42536,'_blocks_11_accordion_items','field_6177e2991ac4c'),(356159,42536,'blocks_11_actions',''),(356160,42536,'_blocks_11_actions','field_61a746a817f7a'),(356161,43156,'hide_hero','0'),(356162,43156,'_hide_hero','field_66a2380fcda39'),(356163,43156,'fft_hide_from_listings','0'),(356164,43156,'_fft_hide_from_listings','field_61f1320446ab2'),(356165,43156,'fft_page_format','default'),(356166,43156,'_fft_page_format','field_61ae213f1f218'),(356167,43156,'fft_hide_nav','0'),(356168,43156,'_fft_hide_nav','field_635bd5e43527c'),(356169,43156,'fft_hide_header_call_to_action','0'),(356170,43156,'_fft_hide_header_call_to_action','field_635bd6723527d'),(356171,43156,'fft_page_sitemap','0'),(356172,43156,'_fft_page_sitemap','field_61af9b34e8181'),(356173,43156,'blocks','a:12:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:5:\"quote\";i:7;s:13:\"step_timeline\";i:8;s:10:\"split_5050\";i:9;s:4:\"form\";i:10;s:10:\"split_5050\";i:11;s:10:\"accordions\";}'),(356174,43156,'_blocks','field_6176696113096'),(356175,43156,'hero_title',''),(356176,43156,'_hero_title','field_617571fe285e8'),(356177,43156,'hero_text',''),(356178,43156,'_hero_text','field_6175723c285e9'),(356179,43156,'hero_actions','1'),(356180,43156,'_hero_actions','field_61757270285ea'),(356181,43156,'hero_style','default'),(356182,43156,'_hero_style','field_62051d9dc5324'),(356183,43156,'hero_image_pos_x','right'),(356184,43156,'_hero_image_pos_x','field_62ec3d05390bb'),(356185,43156,'hero_image_pos_y','top'),(356186,43156,'_hero_image_pos_y','field_62ec3d05390bc'),(356187,43156,'hero_image_pos',''),(356188,43156,'_hero_image_pos','field_62ec3d05390ba'),(356189,43156,'blocks_0_acfe_flexible_toggle',''),(356190,43156,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356191,43156,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(356192,43156,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356193,43156,'blocks_0_options_theme','#ffffff'),(356194,43156,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(356195,43156,'blocks_0_options_reverse','0'),(356196,43156,'_blocks_0_options_reverse','field_61768049bb8ac'),(356197,43156,'blocks_0_options',''),(356198,43156,'_blocks_0_options','field_617682517c334'),(356199,43156,'blocks_0_split_5050_image','40848'),(356200,43156,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(356201,43156,'blocks_0_split_5050_video',''),(356202,43156,'_blocks_0_split_5050_video','field_6239f3160848a'),(356203,43156,'blocks_0_split_5050_content_title','Biomechanics Education'),(356204,43156,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(356205,43156,'blocks_0_split_5050_content_heading','International Training and Courses'),(356206,43156,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(356207,43156,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re an exercise professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health, exercise and wellness to rehabilitation and performance coaching.'),(356208,43156,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(356209,43156,'blocks_0_split_5050_content_actions','1'),(356210,43156,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(356211,43156,'blocks_0_split_5050_content',''),(356212,43156,'_blocks_0_split_5050_content','field_61767afceb8ba'),(356213,43156,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(356214,43156,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(356215,43156,'blocks_1_acfe_flexible_toggle',''),(356216,43156,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356217,43156,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(356218,43156,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356219,43156,'blocks_1_options_theme','#ffffff'),(356220,43156,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(356221,43156,'blocks_1_options_reverse','1'),(356222,43156,'_blocks_1_options_reverse','field_61768049bb8ac'),(356223,43156,'blocks_1_options',''),(356224,43156,'_blocks_1_options','field_617682517c334'),(356225,43156,'blocks_1_split_5050_image','41312'),(356226,43156,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(356227,43156,'blocks_1_split_5050_video',''),(356228,43156,'_blocks_1_split_5050_video','field_6239f3160848a'),(356229,43156,'blocks_1_split_5050_content_title','Become a Biomechanics Coach'),(356230,43156,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(356231,43156,'blocks_1_split_5050_content_heading','International Coaching Programmes'),(356232,43156,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(356233,43156,'blocks_1_split_5050_content_text','Our internationally renowned coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nCourses are blended for in-person and through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally renowned certification to boost career opportunities</li>\r\n 	<li>Learn from leading experts in biomechanics with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(356234,43156,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(356235,43156,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(356236,43156,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(356237,43156,'blocks_1_split_5050_content_actions','1'),(356238,43156,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(356239,43156,'blocks_1_split_5050_content',''),(356240,43156,'_blocks_1_split_5050_content','field_61767afceb8ba'),(356241,43156,'_thumbnail_id','40818'),(356242,43156,'__thumbnail_id','field_617570855ddaf'),(356243,43156,'blocks_2_acfe_flexible_toggle',''),(356244,43156,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(356245,43156,'blocks_2_acfe_flexible_layout_title','Video'),(356246,43156,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(356247,43156,'blocks_2_size','large'),(356248,43156,'_blocks_2_size','field_6487038f297c1'),(356249,43156,'blocks_2_row_content_title',''),(356250,43156,'_blocks_2_row_content_title','field_64870132a865d'),(356251,43156,'blocks_2_row_content_heading','Coaching the World to Move Better'),(356252,43156,'_blocks_2_row_content_heading','field_64870142a865e'),(356253,43156,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(356254,43156,'_blocks_2_row_content_text','field_64870148a865f'),(356255,43156,'blocks_2_row_content',''),(356256,43156,'_blocks_2_row_content','field_6487008ba865c'),(356257,43156,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(356258,43156,'_blocks_2_video_src','field_6193c4a98ec07'),(356259,43156,'blocks_2_video_thumbnail',''),(356260,43156,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(356261,43156,'blocks_3_acfe_flexible_toggle',''),(356262,43156,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(356263,43156,'blocks_3_acfe_flexible_layout_title','Text Block'),(356264,43156,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(356265,43156,'blocks_3_options_theme','#f5f5f5'),(356266,43156,'_blocks_3_options_theme','field_6176830e2ad17'),(356267,43156,'blocks_3_options',''),(356268,43156,'_blocks_3_options','field_6176830e2ad16'),(356269,43156,'blocks_3_text_block_heading','Our Industry Defining Diploma:'),(356270,43156,'_blocks_3_text_block_heading','field_617669d413097'),(356271,43156,'blocks_3_text_block_content',''),(356272,43156,'_blocks_3_text_block_content','field_617669ec13098'),(356273,43156,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(356274,43156,'_hero_actions_0_button','field_61757281285eb'),(356275,43156,'blocks_4_acfe_flexible_toggle',''),(356276,43156,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356277,43156,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(356278,43156,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356279,43156,'blocks_4_options_theme','#f5f5f5'),(356280,43156,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(356281,43156,'blocks_4_options_reverse','1'),(356282,43156,'_blocks_4_options_reverse','field_61768049bb8ac'),(356283,43156,'blocks_4_options',''),(356284,43156,'_blocks_4_options','field_617682517c334'),(356285,43156,'blocks_4_split_5050_image','41330'),(356286,43156,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(356287,43156,'blocks_4_split_5050_video',''),(356288,43156,'_blocks_4_split_5050_video','field_6239f3160848a'),(356289,43156,'blocks_4_split_5050_content_title','Course Overview:'),(356290,43156,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(356291,43156,'blocks_4_split_5050_content_heading','Diploma in Biomechanics Coaching'),(356292,43156,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(356293,43156,'blocks_4_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.'),(356294,43156,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(356295,43156,'blocks_4_split_5050_content_actions',''),(356296,43156,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(356297,43156,'blocks_4_split_5050_content',''),(356298,43156,'_blocks_4_split_5050_content','field_61767afceb8ba'),(356299,43156,'blocks_5_acfe_flexible_toggle',''),(356300,43156,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356301,43156,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(356302,43156,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356303,43156,'blocks_5_options_theme','#f5f5f5'),(356304,43156,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(356305,43156,'blocks_5_options_reverse','0'),(356306,43156,'_blocks_5_options_reverse','field_61768049bb8ac'),(356307,43156,'blocks_5_options',''),(356308,43156,'_blocks_5_options','field_617682517c334'),(356309,43156,'blocks_5_split_5050_image','40503'),(356310,43156,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(356311,43156,'blocks_5_split_5050_video',''),(356312,43156,'_blocks_5_split_5050_video','field_6239f3160848a'),(356313,43156,'blocks_5_split_5050_content_title',''),(356314,43156,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(356315,43156,'blocks_5_split_5050_content_heading',''),(356316,43156,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(356317,43156,'blocks_5_split_5050_content_text','While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(356318,43156,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(356319,43156,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(356320,43156,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(356321,43156,'blocks_5_split_5050_content_actions','1'),(356322,43156,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(356323,43156,'blocks_5_split_5050_content',''),(356324,43156,'_blocks_5_split_5050_content','field_61767afceb8ba'),(356325,43156,'blocks_6_acfe_flexible_toggle',''),(356326,43156,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(356327,43156,'blocks_6_acfe_flexible_layout_title','Quote'),(356328,43156,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(356329,43156,'blocks_6_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(356330,43156,'_blocks_6_quote_content','field_6177cdacdd67a'),(356331,43156,'blocks_6_quote_author','Alex Carter, Certified Biomechanics Coach'),(356332,43156,'_blocks_6_quote_author','field_6177cdc6dd67b'),(356333,43156,'blocks_7_acfe_flexible_toggle',''),(356334,43156,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(356335,43156,'blocks_7_acfe_flexible_layout_title','Timeline'),(356336,43156,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(356337,43156,'blocks_7_options_theme','#ffffff'),(356338,43156,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(356339,43156,'blocks_7_options',''),(356340,43156,'_blocks_7_options','field_6177de53d1195'),(356341,43156,'blocks_7_timeline_content_title',''),(356342,43156,'_blocks_7_timeline_content_title','field_6177de53d1198'),(356343,43156,'blocks_7_timeline_content_heading','Why choose Biomechanics Education?'),(356344,43156,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(356345,43156,'blocks_7_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients - from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and certification provide the tools you need to succeed.'),(356346,43156,'_blocks_7_timeline_content_text','field_6177de53d119a'),(356347,43156,'blocks_7_timeline_content_actions',''),(356348,43156,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(356349,43156,'blocks_7_timeline_content',''),(356350,43156,'_blocks_7_timeline_content','field_6177de53d1197'),(356351,43156,'blocks_7_timeline_items_0_title','Industry-Leading Expertise'),(356352,43156,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(356353,43156,'blocks_7_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(356354,43156,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(356355,43156,'blocks_7_timeline_items_1_title','Global Accessibility'),(356356,43156,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(356357,43156,'blocks_7_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(356358,43156,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(356359,43156,'blocks_7_timeline_items_2_title','Internationally Applicable Certification'),(356360,43156,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(356361,43156,'blocks_7_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(356362,43156,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(356363,43156,'blocks_7_timeline_items_3_title','Career Opportunities Worldwide'),(356364,43156,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(356365,43156,'blocks_7_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(356366,43156,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(356367,43156,'blocks_7_timeline_items','4'),(356368,43156,'_blocks_7_timeline_items','field_6177de53d119d'),(356369,43156,'blocks_8_acfe_flexible_toggle',''),(356370,43156,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356371,43156,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(356372,43156,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356373,43156,'blocks_8_options_theme','#ffffff'),(356374,43156,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(356375,43156,'blocks_8_options_reverse','0'),(356376,43156,'_blocks_8_options_reverse','field_61768049bb8ac'),(356377,43156,'blocks_8_options',''),(356378,43156,'_blocks_8_options','field_617682517c334'),(356379,43156,'blocks_8_split_5050_image','41300'),(356380,43156,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(356381,43156,'blocks_8_split_5050_video',''),(356382,43156,'_blocks_8_split_5050_video','field_6239f3160848a'),(356383,43156,'blocks_8_split_5050_content_title',''),(356384,43156,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(356385,43156,'blocks_8_split_5050_content_heading','International Support & Learning Experience'),(356386,43156,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(356387,43156,'blocks_8_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(356388,43156,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(356389,43156,'blocks_8_split_5050_content_actions',''),(356390,43156,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(356391,43156,'blocks_8_split_5050_content',''),(356392,43156,'_blocks_8_split_5050_content','field_61767afceb8ba'),(356393,43156,'blocks_9_acfe_flexible_toggle',''),(356394,43156,'_blocks_9_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(356395,43156,'blocks_9_acfe_flexible_layout_title','Contact Us[anchor]'),(356396,43156,'_blocks_9_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(356397,43156,'blocks_9_row_content_format','standard'),(356398,43156,'_blocks_9_row_content_format','field_6481ead962881'),(356399,43156,'blocks_9_row_content_title',''),(356400,43156,'_blocks_9_row_content_title','field_61a0f5f5b3db1'),(356401,43156,'blocks_9_row_content_heading','Contact Us Today'),(356402,43156,'_blocks_9_row_content_heading','field_61a0f5f5b3db2'),(356403,43156,'blocks_9_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(356404,43156,'_blocks_9_row_content_text','field_61a0f5f5b3db3'),(356405,43156,'blocks_9_row_content_actions',''),(356406,43156,'_blocks_9_row_content_actions','field_61a0f5f5b3db4'),(356407,43156,'blocks_9_row_content',''),(356408,43156,'_blocks_9_row_content','field_61a0f5f5b3db0'),(356409,43156,'blocks_9_row_form','42449'),(356410,43156,'_blocks_9_row_form','field_61a4ff2c0b08e'),(356411,43156,'blocks_9_row_form_button_label',''),(356412,43156,'_blocks_9_row_form_button_label','field_61e12cf6fe412'),(356413,43156,'blocks_10_acfe_flexible_toggle',''),(356414,43156,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356415,43156,'blocks_10_acfe_flexible_layout_title','Partnership Block '),(356416,43156,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356417,43156,'blocks_10_options_theme','#ffffff'),(356418,43156,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(356419,43156,'blocks_10_options_reverse','0'),(356420,43156,'_blocks_10_options_reverse','field_61768049bb8ac'),(356421,43156,'blocks_10_options',''),(356422,43156,'_blocks_10_options','field_617682517c334'),(356423,43156,'blocks_10_split_5050_image','43154'),(356424,43156,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(356425,43156,'blocks_10_split_5050_video',''),(356426,43156,'_blocks_10_split_5050_video','field_6239f3160848a'),(356427,43156,'blocks_10_split_5050_content_title',''),(356428,43156,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(356429,43156,'blocks_10_split_5050_content_heading',''),(356430,43156,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(356431,43156,'blocks_10_split_5050_content_text','Our international course is brought to you by Biomechanics Education founder Rachel Thomson in collaboration with Tom Waldron.'),(356432,43156,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(356433,43156,'blocks_10_split_5050_content_actions',''),(356434,43156,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(356435,43156,'blocks_10_split_5050_content',''),(356436,43156,'_blocks_10_split_5050_content','field_61767afceb8ba'),(356437,43156,'blocks_11_acfe_flexible_toggle',''),(356438,43156,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(356439,43156,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(356440,43156,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(356441,43156,'blocks_11_options_theme','#ffffff'),(356442,43156,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(356443,43156,'blocks_11_options_state','0'),(356444,43156,'_blocks_11_options_state','field_6239fcb7508c5'),(356445,43156,'blocks_11_options',''),(356446,43156,'_blocks_11_options','field_6177e2991ac44'),(356447,43156,'blocks_11_content_title',''),(356448,43156,'_blocks_11_content_title','field_64d237e8bb1e2'),(356449,43156,'blocks_11_content_heading','FAQs'),(356450,43156,'_blocks_11_content_heading','field_64d237e8bb1e3'),(356451,43156,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(356452,43156,'_blocks_11_content_text','field_64d237e8bb1e4'),(356453,43156,'blocks_11_content_actions',''),(356454,43156,'_blocks_11_content_actions','field_64d237e8bb1e5'),(356455,43156,'blocks_11_content_align','left'),(356456,43156,'_blocks_11_content_align','field_64d2443e6b6aa'),(356457,43156,'blocks_11_content',''),(356458,43156,'_blocks_11_content','field_64d237e8bb1e1'),(356459,43156,'blocks_11_accordion_content','custom'),(356460,43156,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(356461,43156,'blocks_11_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(356462,43156,'_blocks_11_accordion_items_0_title','field_6177e2991ac4d'),(356463,43156,'blocks_11_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(356464,43156,'_blocks_11_accordion_items_0_text','field_6177e2991ac4e'),(356465,43156,'blocks_11_accordion_items_1_title','What are the study options for international students?'),(356466,43156,'_blocks_11_accordion_items_1_title','field_6177e2991ac4d'),(356467,43156,'blocks_11_accordion_items_1_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(356468,43156,'_blocks_11_accordion_items_1_text','field_6177e2991ac4e'),(356469,43156,'blocks_11_accordion_items_2_title','Who is this course suitable for?'),(356470,43156,'_blocks_11_accordion_items_2_title','field_6177e2991ac4d'),(356471,43156,'blocks_11_accordion_items_2_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(356472,43156,'_blocks_11_accordion_items_2_text','field_6177e2991ac4e'),(356473,43156,'blocks_11_accordion_items_3_title','What are the next steps to get started?'),(356474,43156,'_blocks_11_accordion_items_3_title','field_6177e2991ac4d'),(356475,43156,'blocks_11_accordion_items_3_text','Fill out our enquiry form or give us a call and we can guide you through the process, wherever you are in the world.'),(356476,43156,'_blocks_11_accordion_items_3_text','field_6177e2991ac4e'),(356477,43156,'blocks_11_accordion_items','4'),(356478,43156,'_blocks_11_accordion_items','field_6177e2991ac4c'),(356479,43156,'blocks_11_actions',''),(356480,43156,'_blocks_11_actions','field_61a746a817f7a'),(356481,43157,'hide_hero','0'),(356482,43157,'_hide_hero','field_66a2380fcda39'),(356483,43157,'fft_hide_from_listings','0'),(356484,43157,'_fft_hide_from_listings','field_61f1320446ab2'),(356485,43157,'fft_page_format','default'),(356486,43157,'_fft_page_format','field_61ae213f1f218'),(356487,43157,'fft_hide_nav','0'),(356488,43157,'_fft_hide_nav','field_635bd5e43527c'),(356489,43157,'fft_hide_header_call_to_action','0'),(356490,43157,'_fft_hide_header_call_to_action','field_635bd6723527d'),(356491,43157,'fft_page_sitemap','0'),(356492,43157,'_fft_page_sitemap','field_61af9b34e8181'),(356493,43157,'blocks','a:12:{i:0;s:10:\"split_5050\";i:1;s:10:\"split_5050\";i:2;s:5:\"video\";i:3;s:10:\"text_block\";i:4;s:10:\"split_5050\";i:5;s:10:\"split_5050\";i:6;s:5:\"quote\";i:7;s:13:\"step_timeline\";i:8;s:10:\"split_5050\";i:9;s:4:\"form\";i:10;s:10:\"split_5050\";i:11;s:10:\"accordions\";}'),(356494,43157,'_blocks','field_6176696113096'),(356495,43157,'hero_title',''),(356496,43157,'_hero_title','field_617571fe285e8'),(356497,43157,'hero_text',''),(356498,43157,'_hero_text','field_6175723c285e9'),(356499,43157,'hero_actions','1'),(356500,43157,'_hero_actions','field_61757270285ea'),(356501,43157,'hero_style','default'),(356502,43157,'_hero_style','field_62051d9dc5324'),(356503,43157,'hero_image_pos_x','right'),(356504,43157,'_hero_image_pos_x','field_62ec3d05390bb'),(356505,43157,'hero_image_pos_y','top'),(356506,43157,'_hero_image_pos_y','field_62ec3d05390bc'),(356507,43157,'hero_image_pos',''),(356508,43157,'_hero_image_pos','field_62ec3d05390ba'),(356509,43157,'blocks_0_acfe_flexible_toggle',''),(356510,43157,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356511,43157,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(356512,43157,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356513,43157,'blocks_0_options_theme','#ffffff'),(356514,43157,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(356515,43157,'blocks_0_options_reverse','0'),(356516,43157,'_blocks_0_options_reverse','field_61768049bb8ac'),(356517,43157,'blocks_0_options',''),(356518,43157,'_blocks_0_options','field_617682517c334'),(356519,43157,'blocks_0_split_5050_image','40848'),(356520,43157,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(356521,43157,'blocks_0_split_5050_video',''),(356522,43157,'_blocks_0_split_5050_video','field_6239f3160848a'),(356523,43157,'blocks_0_split_5050_content_title','Biomechanics Education'),(356524,43157,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(356525,43157,'blocks_0_split_5050_content_heading','International Training and Courses'),(356526,43157,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(356527,43157,'blocks_0_split_5050_content_text','At Biomechanics Education, we are proud to provide our industry-leading courses and training on a global scale. Whether you’re an exercise professional, therapist, coach or looking to embark on a new career path, our internationally available training ensures you receive a high-standard, evidence-based education, no matter where you are in the world. Our evidence-based courses are designed to equip you with the expertise needed to work across a range of environments, from health, exercise and wellness to rehabilitation and performance coaching.'),(356528,43157,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(356529,43157,'blocks_0_split_5050_content_actions','1'),(356530,43157,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(356531,43157,'blocks_0_split_5050_content',''),(356532,43157,'_blocks_0_split_5050_content','field_61767afceb8ba'),(356533,43157,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(356534,43157,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(356535,43157,'blocks_1_acfe_flexible_toggle',''),(356536,43157,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356537,43157,'blocks_1_acfe_flexible_layout_title','50/50 Split - BE Coaches'),(356538,43157,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356539,43157,'blocks_1_options_theme','#ffffff'),(356540,43157,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(356541,43157,'blocks_1_options_reverse','1'),(356542,43157,'_blocks_1_options_reverse','field_61768049bb8ac'),(356543,43157,'blocks_1_options',''),(356544,43157,'_blocks_1_options','field_617682517c334'),(356545,43157,'blocks_1_split_5050_image','41312'),(356546,43157,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(356547,43157,'blocks_1_split_5050_video',''),(356548,43157,'_blocks_1_split_5050_video','field_6239f3160848a'),(356549,43157,'blocks_1_split_5050_content_title','Become a Biomechanics Coach'),(356550,43157,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(356551,43157,'blocks_1_split_5050_content_heading','International Coaching Programmes'),(356552,43157,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(356553,43157,'blocks_1_split_5050_content_text','Our internationally renowned coaching programmes allow you to become a certified Biomechanics Coach from anywhere in the world. Designed for professionals seeking to enhance their knowledge and career opportunities, our comprehensive training equips you with the skills to assess, coach, and support individuals in optimising movement and reducing injury risk.\r\n\r\nCourses are blended for in-person and through our flexible online learning platform, our training allows you to:\r\n<ul>\r\n 	<li>Master movement assessment techniques to support clients effectively</li>\r\n 	<li>Gain a globally renowned certification to boost career opportunities</li>\r\n 	<li>Learn from leading experts in biomechanics with over 20 years of research-backed education</li>\r\n 	<li>Study flexibly to fit around your professional and personal commitments</li>\r\n</ul>'),(356554,43157,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(356555,43157,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:10:\"Contact Us\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(356556,43157,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(356557,43157,'blocks_1_split_5050_content_actions','1'),(356558,43157,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(356559,43157,'blocks_1_split_5050_content',''),(356560,43157,'_blocks_1_split_5050_content','field_61767afceb8ba'),(356561,43157,'_thumbnail_id','40818'),(356562,43157,'__thumbnail_id','field_617570855ddaf'),(356563,43157,'blocks_2_acfe_flexible_toggle',''),(356564,43157,'_blocks_2_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(356565,43157,'blocks_2_acfe_flexible_layout_title','Video'),(356566,43157,'_blocks_2_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(356567,43157,'blocks_2_size','large'),(356568,43157,'_blocks_2_size','field_6487038f297c1'),(356569,43157,'blocks_2_row_content_title',''),(356570,43157,'_blocks_2_row_content_title','field_64870132a865d'),(356571,43157,'blocks_2_row_content_heading','Coaching the World to Move Better'),(356572,43157,'_blocks_2_row_content_heading','field_64870142a865e'),(356573,43157,'blocks_2_row_content_text','Join Rachel Frances Thomson and Tom Waldron as they introduce our globally expanding coaching programmes. With courses now running in Singapore, the US, and across Europe, you’ll hear how the Biomechanics Coaching system is equipping fitness and therapy professionals worldwide with the skills to transform client movement—both in group settings and one-to-one.'),(356574,43157,'_blocks_2_row_content_text','field_64870148a865f'),(356575,43157,'blocks_2_row_content',''),(356576,43157,'_blocks_2_row_content','field_6487008ba865c'),(356577,43157,'blocks_2_video_src','https://www.youtube.com/watch?v=y_Pt0kd-TGI'),(356578,43157,'_blocks_2_video_src','field_6193c4a98ec07'),(356579,43157,'blocks_2_video_thumbnail',''),(356580,43157,'_blocks_2_video_thumbnail','field_6193c4a08ec06'),(356581,43157,'blocks_3_acfe_flexible_toggle',''),(356582,43157,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(356583,43157,'blocks_3_acfe_flexible_layout_title','Text Block'),(356584,43157,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(356585,43157,'blocks_3_options_theme','#f5f5f5'),(356586,43157,'_blocks_3_options_theme','field_6176830e2ad17'),(356587,43157,'blocks_3_options',''),(356588,43157,'_blocks_3_options','field_6176830e2ad16'),(356589,43157,'blocks_3_text_block_heading','Our Industry Defining Diploma:'),(356590,43157,'_blocks_3_text_block_heading','field_617669d413097'),(356591,43157,'blocks_3_text_block_content',''),(356592,43157,'_blocks_3_text_block_content','field_617669ec13098'),(356593,43157,'hero_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(356594,43157,'_hero_actions_0_button','field_61757281285eb'),(356595,43157,'blocks_4_acfe_flexible_toggle',''),(356596,43157,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356597,43157,'blocks_4_acfe_flexible_layout_title','50/50 Split'),(356598,43157,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356599,43157,'blocks_4_options_theme','#f5f5f5'),(356600,43157,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(356601,43157,'blocks_4_options_reverse','1'),(356602,43157,'_blocks_4_options_reverse','field_61768049bb8ac'),(356603,43157,'blocks_4_options',''),(356604,43157,'_blocks_4_options','field_617682517c334'),(356605,43157,'blocks_4_split_5050_image','41330'),(356606,43157,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(356607,43157,'blocks_4_split_5050_video',''),(356608,43157,'_blocks_4_split_5050_video','field_6239f3160848a'),(356609,43157,'blocks_4_split_5050_content_title','Course Overview:'),(356610,43157,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(356611,43157,'blocks_4_split_5050_content_heading','Diploma in Biomechanics Coaching'),(356612,43157,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(356613,43157,'blocks_4_split_5050_content_text','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists. In a crowded landscape of movement assessment programmes, our approach stands out for its simplicity and evidence-based methodology, aimed at both identifying risks and optimising performance in clients. Drawing from over 20 years of data collection involving thousands of subjects, including elite athletes and gym-goers, our system integrates various skills into a cohesive framework.'),(356614,43157,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(356615,43157,'blocks_4_split_5050_content_actions',''),(356616,43157,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(356617,43157,'blocks_4_split_5050_content',''),(356618,43157,'_blocks_4_split_5050_content','field_61767afceb8ba'),(356619,43157,'blocks_5_acfe_flexible_toggle',''),(356620,43157,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356621,43157,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(356622,43157,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356623,43157,'blocks_5_options_theme','#f5f5f5'),(356624,43157,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(356625,43157,'blocks_5_options_reverse','0'),(356626,43157,'_blocks_5_options_reverse','field_61768049bb8ac'),(356627,43157,'blocks_5_options',''),(356628,43157,'_blocks_5_options','field_617682517c334'),(356629,43157,'blocks_5_split_5050_image','40503'),(356630,43157,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(356631,43157,'blocks_5_split_5050_video',''),(356632,43157,'_blocks_5_split_5050_video','field_6239f3160848a'),(356633,43157,'blocks_5_split_5050_content_title',''),(356634,43157,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(356635,43157,'blocks_5_split_5050_content_heading',''),(356636,43157,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(356637,43157,'blocks_5_split_5050_content_text','While rooted in physiotherapy, our focus shifts towards assessing movement quality rather than diagnostics. Rigorous testing showed in some cases 97% gold standard lab test accuracy in comparison to very expensive isokinetic machinery for identifying movement limitations. Through our programme, you’ll gain the skills to assess your clients’ bodies systematically, pinpoint areas of risk, and enhance movement quality.'),(356638,43157,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(356639,43157,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:11:\"#contact-us\";s:6:\"target\";s:0:\"\";}'),(356640,43157,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(356641,43157,'blocks_5_split_5050_content_actions','1'),(356642,43157,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(356643,43157,'blocks_5_split_5050_content',''),(356644,43157,'_blocks_5_split_5050_content','field_61767afceb8ba'),(356645,43157,'blocks_6_acfe_flexible_toggle',''),(356646,43157,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(356647,43157,'blocks_6_acfe_flexible_layout_title','Quote'),(356648,43157,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(356649,43157,'blocks_6_quote_content','\"Completing the Biomechanics Education course has completely transformed the way I work with clients. The depth of knowledge, practical application, and expert guidance have given me the confidence to assess and coach movement with real precision. Since becoming a certified Biomechanics Coach, I’ve been able to help clients reduce pain, improve performance, and move more efficiently – wherever they are in the world.\"'),(356650,43157,'_blocks_6_quote_content','field_6177cdacdd67a'),(356651,43157,'blocks_6_quote_author','Alex Carter, Certified Biomechanics Coach'),(356652,43157,'_blocks_6_quote_author','field_6177cdc6dd67b'),(356653,43157,'blocks_7_acfe_flexible_toggle',''),(356654,43157,'_blocks_7_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(356655,43157,'blocks_7_acfe_flexible_layout_title','Timeline'),(356656,43157,'_blocks_7_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(356657,43157,'blocks_7_options_theme','#ffffff'),(356658,43157,'_blocks_7_options_theme','field_6177de53d1196_field_6176830e2ad17'),(356659,43157,'blocks_7_options',''),(356660,43157,'_blocks_7_options','field_6177de53d1195'),(356661,43157,'blocks_7_timeline_content_title',''),(356662,43157,'_blocks_7_timeline_content_title','field_6177de53d1198'),(356663,43157,'blocks_7_timeline_content_heading','Why choose Biomechanics Education?'),(356664,43157,'_blocks_7_timeline_content_heading','field_6177de53d1199'),(356665,43157,'blocks_7_timeline_content_text','At Biomechanics Education, we are committed to delivering world-class training that empowers professionals to elevate their expertise in movement assessment and performance optimisation.\r\n\r\nOur internationally accessible Diploma in Biomechanics Coaching is built on over 20 years of research, equipping graduates with the skills to assess, prevent injury, and enhance movement quality in a wide range of clients - from elite athletes to everyday gym-goers. Whether you’re looking to expand your career globally or refine your approach with evidence-based biomechanics techniques, our flexible learning options and certification provide the tools you need to succeed.'),(356666,43157,'_blocks_7_timeline_content_text','field_6177de53d119a'),(356667,43157,'blocks_7_timeline_content_actions',''),(356668,43157,'_blocks_7_timeline_content_actions','field_6177de53d119b'),(356669,43157,'blocks_7_timeline_content',''),(356670,43157,'_blocks_7_timeline_content','field_6177de53d1197'),(356671,43157,'blocks_7_timeline_items_0_title','Industry-Leading Expertise'),(356672,43157,'_blocks_7_timeline_items_0_title','field_6177de53d119f'),(356673,43157,'blocks_7_timeline_items_0_text','Learn from leading biomechanics specialists with over 20 years of research-backed experience, ensuring you receive the highest quality education.'),(356674,43157,'_blocks_7_timeline_items_0_text','field_6177de53d11a0'),(356675,43157,'blocks_7_timeline_items_1_title','Global Accessibility'),(356676,43157,'_blocks_7_timeline_items_1_title','field_6177de53d119f'),(356677,43157,'blocks_7_timeline_items_1_text','Train from anywhere in the world with our internationally available courses, designed to fit around your lifestyle and professional commitments.'),(356678,43157,'_blocks_7_timeline_items_1_text','field_6177de53d11a0'),(356679,43157,'blocks_7_timeline_items_2_title','Internationally Applicable Certification'),(356680,43157,'_blocks_7_timeline_items_2_title','field_6177de53d119f'),(356681,43157,'blocks_7_timeline_items_2_text','Gain an industry-approved qualification that enhances your professional credibility and allows you to work with clients across multiple sectors, worldwide.'),(356682,43157,'_blocks_7_timeline_items_2_text','field_6177de53d11a0'),(356683,43157,'blocks_7_timeline_items_3_title','Career Opportunities Worldwide'),(356684,43157,'_blocks_7_timeline_items_3_title','field_6177de53d119f'),(356685,43157,'blocks_7_timeline_items_3_text','Qualify as a Biomechanics Coach and unlock diverse career paths in sports performance, rehabilitation, and movement coaching across international markets.'),(356686,43157,'_blocks_7_timeline_items_3_text','field_6177de53d11a0'),(356687,43157,'blocks_7_timeline_items','4'),(356688,43157,'_blocks_7_timeline_items','field_6177de53d119d'),(356689,43157,'blocks_8_acfe_flexible_toggle',''),(356690,43157,'_blocks_8_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356691,43157,'blocks_8_acfe_flexible_layout_title','50/50 Split'),(356692,43157,'_blocks_8_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356693,43157,'blocks_8_options_theme','#ffffff'),(356694,43157,'_blocks_8_options_theme','field_617682847c335_field_6176830e2ad17'),(356695,43157,'blocks_8_options_reverse','0'),(356696,43157,'_blocks_8_options_reverse','field_61768049bb8ac'),(356697,43157,'blocks_8_options',''),(356698,43157,'_blocks_8_options','field_617682517c334'),(356699,43157,'blocks_8_split_5050_image','41300'),(356700,43157,'_blocks_8_split_5050_image','field_6239f527a0c3a'),(356701,43157,'blocks_8_split_5050_video',''),(356702,43157,'_blocks_8_split_5050_video','field_6239f3160848a'),(356703,43157,'blocks_8_split_5050_content_title',''),(356704,43157,'_blocks_8_split_5050_content_title','field_61767bfca3fc0'),(356705,43157,'blocks_8_split_5050_content_heading','International Support & Learning Experience'),(356706,43157,'_blocks_8_split_5050_content_heading','field_61767b26eb8bb'),(356707,43157,'blocks_8_split_5050_content_text','We understand that studying from another country comes with unique challenges, which is why we offer dedicated support for international students. From expert guidance and access to online resources to live Q&amp;A sessions and a global community of biomechanics coaches, we ensure you stay connected and supported throughout your learning journey.\r\n\r\nWith our flexible learning options and personalised tutor support, you can study with confidence—no matter where you are in the world.'),(356708,43157,'_blocks_8_split_5050_content_text','field_61767b3beb8bc'),(356709,43157,'blocks_8_split_5050_content_actions',''),(356710,43157,'_blocks_8_split_5050_content_actions','field_61767b68eb8bd'),(356711,43157,'blocks_8_split_5050_content',''),(356712,43157,'_blocks_8_split_5050_content','field_61767afceb8ba'),(356713,43157,'blocks_9_acfe_flexible_toggle',''),(356714,43157,'_blocks_9_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(356715,43157,'blocks_9_acfe_flexible_layout_title','Contact Us[anchor]'),(356716,43157,'_blocks_9_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(356717,43157,'blocks_9_row_content_format','standard'),(356718,43157,'_blocks_9_row_content_format','field_6481ead962881'),(356719,43157,'blocks_9_row_content_title',''),(356720,43157,'_blocks_9_row_content_title','field_61a0f5f5b3db1'),(356721,43157,'blocks_9_row_content_heading','Contact Us Today'),(356722,43157,'_blocks_9_row_content_heading','field_61a0f5f5b3db2'),(356723,43157,'blocks_9_row_content_text','If you’re looking to advance your career in movement assessment, injury prevention, or performance coaching, our internationally accessible Biomechanics Education courses provide the perfect pathway to success. Whether you’re a fitness professional, therapist, or coach, our evidence-based training can help you work with clients worldwide.\r\n\r\nFill out the form to receive a detailed course guide and speak with one of our expert Careers Advisors for no-obligation advice on your next steps.'),(356724,43157,'_blocks_9_row_content_text','field_61a0f5f5b3db3'),(356725,43157,'blocks_9_row_content_actions',''),(356726,43157,'_blocks_9_row_content_actions','field_61a0f5f5b3db4'),(356727,43157,'blocks_9_row_content',''),(356728,43157,'_blocks_9_row_content','field_61a0f5f5b3db0'),(356729,43157,'blocks_9_row_form','42449'),(356730,43157,'_blocks_9_row_form','field_61a4ff2c0b08e'),(356731,43157,'blocks_9_row_form_button_label',''),(356732,43157,'_blocks_9_row_form_button_label','field_61e12cf6fe412'),(356733,43157,'blocks_10_acfe_flexible_toggle',''),(356734,43157,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356735,43157,'blocks_10_acfe_flexible_layout_title','Partnership Block '),(356736,43157,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356737,43157,'blocks_10_options_theme','#ffffff'),(356738,43157,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(356739,43157,'blocks_10_options_reverse','0'),(356740,43157,'_blocks_10_options_reverse','field_61768049bb8ac'),(356741,43157,'blocks_10_options',''),(356742,43157,'_blocks_10_options','field_617682517c334'),(356743,43157,'blocks_10_split_5050_image','43154'),(356744,43157,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(356745,43157,'blocks_10_split_5050_video',''),(356746,43157,'_blocks_10_split_5050_video','field_6239f3160848a'),(356747,43157,'blocks_10_split_5050_content_title',''),(356748,43157,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(356749,43157,'blocks_10_split_5050_content_heading',''),(356750,43157,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(356751,43157,'blocks_10_split_5050_content_text','Our international course is brought to you by Biomechanics Education founder Rachel Thomson in collaboration<span data-teams=\"true\"> with international presenter and subject expert Tom Waldron</span>.'),(356752,43157,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(356753,43157,'blocks_10_split_5050_content_actions',''),(356754,43157,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(356755,43157,'blocks_10_split_5050_content',''),(356756,43157,'_blocks_10_split_5050_content','field_61767afceb8ba'),(356757,43157,'blocks_11_acfe_flexible_toggle',''),(356758,43157,'_blocks_11_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(356759,43157,'blocks_11_acfe_flexible_layout_title','Accordions / FAQs'),(356760,43157,'_blocks_11_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(356761,43157,'blocks_11_options_theme','#ffffff'),(356762,43157,'_blocks_11_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(356763,43157,'blocks_11_options_state','0'),(356764,43157,'_blocks_11_options_state','field_6239fcb7508c5'),(356765,43157,'blocks_11_options',''),(356766,43157,'_blocks_11_options','field_6177e2991ac44'),(356767,43157,'blocks_11_content_title',''),(356768,43157,'_blocks_11_content_title','field_64d237e8bb1e2'),(356769,43157,'blocks_11_content_heading','FAQs'),(356770,43157,'_blocks_11_content_heading','field_64d237e8bb1e3'),(356771,43157,'blocks_11_content_text','Please see our most frequently asked questions.\r\n\r\nCan’t find the answer you’re looking for?\r\n\r\nCall us today: 02038 416 151'),(356772,43157,'_blocks_11_content_text','field_64d237e8bb1e4'),(356773,43157,'blocks_11_content_actions',''),(356774,43157,'_blocks_11_content_actions','field_64d237e8bb1e5'),(356775,43157,'blocks_11_content_align','left'),(356776,43157,'_blocks_11_content_align','field_64d2443e6b6aa'),(356777,43157,'blocks_11_content',''),(356778,43157,'_blocks_11_content','field_64d237e8bb1e1'),(356779,43157,'blocks_11_accordion_content','custom'),(356780,43157,'_blocks_11_accordion_content','field_6177e2c81ac4f'),(356781,43157,'blocks_11_accordion_items_0_title','Can I complete the Biomechanics Coaching Diploma from outside the UK?'),(356782,43157,'_blocks_11_accordion_items_0_title','field_6177e2991ac4d'),(356783,43157,'blocks_11_accordion_items_0_text','Yes! Our training programmes are available internationally, with flexible learning options including online study and in-person workshops in select locations.'),(356784,43157,'_blocks_11_accordion_items_0_text','field_6177e2991ac4e'),(356785,43157,'blocks_11_accordion_items_1_title','What are the study options for international students?'),(356786,43157,'_blocks_11_accordion_items_1_title','field_6177e2991ac4d'),(356787,43157,'blocks_11_accordion_items_1_text','We offer a combination of live virtual sessions, self-paced online learning, and in-person training, allowing you to choose the best format for your schedule and location.'),(356788,43157,'_blocks_11_accordion_items_1_text','field_6177e2991ac4e'),(356789,43157,'blocks_11_accordion_items_2_title','Who is this course suitable for?'),(356790,43157,'_blocks_11_accordion_items_2_title','field_6177e2991ac4d'),(356791,43157,'blocks_11_accordion_items_2_text','Our programme is designed for personal trainers, therapists, rehab specialists, sports coaches, and movement professionals looking to deepen their expertise in biomechanics.'),(356792,43157,'_blocks_11_accordion_items_2_text','field_6177e2991ac4e'),(356793,43157,'blocks_11_accordion_items_3_title','What are the next steps to get started?'),(356794,43157,'_blocks_11_accordion_items_3_title','field_6177e2991ac4d'),(356795,43157,'blocks_11_accordion_items_3_text','Fill out our enquiry form or give us a call and we can guide you through the process, wherever you are in the world.'),(356796,43157,'_blocks_11_accordion_items_3_text','field_6177e2991ac4e'),(356797,43157,'blocks_11_accordion_items','4'),(356798,43157,'_blocks_11_accordion_items','field_6177e2991ac4c'),(356799,43157,'blocks_11_actions',''),(356800,43157,'_blocks_11_actions','field_61a746a817f7a'),(356801,39196,'blocks_1_acfe_flexible_toggle',''),(356802,39196,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356803,39196,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(356804,39196,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356805,39196,'blocks_1_options_theme','#ffffff'),(356806,39196,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(356807,39196,'blocks_1_options_reverse','0'),(356808,39196,'_blocks_1_options_reverse','field_61768049bb8ac'),(356809,39196,'blocks_1_options',''),(356810,39196,'_blocks_1_options','field_617682517c334'),(356811,39196,'blocks_1_split_5050_image','40342'),(356812,39196,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(356813,39196,'blocks_1_split_5050_video',''),(356814,39196,'_blocks_1_split_5050_video','field_6239f3160848a'),(356815,39196,'blocks_1_split_5050_content_title',''),(356816,39196,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(356817,39196,'blocks_1_split_5050_content_heading','Let\'s connect!'),(356818,39196,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(356819,39196,'blocks_1_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/company/biomechanics-education/\">LinkedIn</a>'),(356820,39196,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(356821,39196,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:30:\"Course Information & Enquiries\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:0:\"\";}'),(356822,39196,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(356823,39196,'blocks_1_split_5050_content_actions','1'),(356824,39196,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(356825,39196,'blocks_1_split_5050_content',''),(356826,39196,'_blocks_1_split_5050_content','field_61767afceb8ba'),(356827,39196,'_yoast_wpseo_content_score','90'),(356828,43185,'hide_hero','0'),(356829,43185,'_hide_hero','field_66a2380fcda39'),(356830,43185,'fft_hide_from_listings','0'),(356831,43185,'_fft_hide_from_listings','field_61f1320446ab2'),(356832,43185,'fft_page_format','default'),(356833,43185,'_fft_page_format','field_61ae213f1f218'),(356834,43185,'fft_hide_nav','0'),(356835,43185,'_fft_hide_nav','field_635bd5e43527c'),(356836,43185,'fft_hide_header_call_to_action','0'),(356837,43185,'_fft_hide_header_call_to_action','field_635bd6723527d'),(356838,43185,'fft_page_sitemap','0'),(356839,43185,'_fft_page_sitemap','field_61af9b34e8181'),(356840,43185,'blocks_0_acfe_flexible_toggle',''),(356841,43185,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(356842,43185,'blocks_0_acfe_flexible_layout_title','Text Block'),(356843,43185,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(356844,43185,'blocks_0_options_theme','#ffffff'),(356845,43185,'_blocks_0_options_theme','field_6176830e2ad17'),(356846,43185,'blocks_0_options',''),(356847,43185,'_blocks_0_options','field_6176830e2ad16'),(356848,43185,'blocks_0_text_block_heading','Get in Touch'),(356849,43185,'_blocks_0_text_block_heading','field_617669d413097'),(356850,43185,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support you. Whether you’re interested in courses, or looking for a bespoke solution, or you\'re part of an organisation that wants a bespoke service, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(356851,43185,'_blocks_0_text_block_content','field_617669ec13098'),(356852,43185,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";}'),(356853,43185,'_blocks','field_6176696113096'),(356854,43185,'hero_title','Contact us'),(356855,43185,'_hero_title','field_617571fe285e8'),(356856,43185,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your Intrinsic biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in Biomechanics Coaching.'),(356857,43185,'_hero_text','field_6175723c285e9'),(356858,43185,'hero_actions','1'),(356859,43185,'_hero_actions','field_61757270285ea'),(356860,43185,'hero_style','default'),(356861,43185,'_hero_style','field_62051d9dc5324'),(356862,43185,'hero_icon','lines'),(356863,43185,'_hero_icon','field_61a6182199d03'),(356864,43185,'_thumbnail_id','40339'),(356865,43185,'__thumbnail_id','field_617570855ddaf'),(356866,43185,'hero_image_pos_x','right'),(356867,43185,'_hero_image_pos_x','field_62ec3d05390bb'),(356868,43185,'hero_image_pos_y','top'),(356869,43185,'_hero_image_pos_y','field_62ec3d05390bc'),(356870,43185,'hero_image_pos',''),(356871,43185,'_hero_image_pos','field_62ec3d05390ba'),(356872,43185,'blocks_2_acfe_flexible_toggle',''),(356873,43185,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356874,43185,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(356875,43185,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356876,43185,'blocks_2_options_theme','#ffffff'),(356877,43185,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(356878,43185,'blocks_2_options_reverse','1'),(356879,43185,'_blocks_2_options_reverse','field_61768049bb8ac'),(356880,43185,'blocks_2_options',''),(356881,43185,'_blocks_2_options','field_617682517c334'),(356882,43185,'blocks_2_split_5050_image','40349'),(356883,43185,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(356884,43185,'blocks_2_split_5050_video',''),(356885,43185,'_blocks_2_split_5050_video','field_6239f3160848a'),(356886,43185,'blocks_2_split_5050_content_title',''),(356887,43185,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(356888,43185,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(356889,43185,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(356890,43185,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(356891,43185,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(356892,43185,'blocks_2_split_5050_content_actions',''),(356893,43185,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(356894,43185,'blocks_2_split_5050_content',''),(356895,43185,'_blocks_2_split_5050_content','field_61767afceb8ba'),(356896,43185,'hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in Touch\";s:3:\"url\";s:12:\"#row-39196-2\";s:6:\"target\";s:0:\"\";}'),(356897,43185,'_hero_actions_0_button','field_61757281285eb'),(356898,43185,'blocks_1_acfe_flexible_toggle',''),(356899,43185,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356900,43185,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(356901,43185,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356902,43185,'blocks_1_options_theme','#ffffff'),(356903,43185,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(356904,43185,'blocks_1_options_reverse','0'),(356905,43185,'_blocks_1_options_reverse','field_61768049bb8ac'),(356906,43185,'blocks_1_options',''),(356907,43185,'_blocks_1_options','field_617682517c334'),(356908,43185,'blocks_1_split_5050_image','40342'),(356909,43185,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(356910,43185,'blocks_1_split_5050_video',''),(356911,43185,'_blocks_1_split_5050_video','field_6239f3160848a'),(356912,43185,'blocks_1_split_5050_content_title',''),(356913,43185,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(356914,43185,'blocks_1_split_5050_content_heading','Let\'s connect!'),(356915,43185,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(356916,43185,'blocks_1_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/company/biomechanics-education/\">LinkedIn</a>'),(356917,43185,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(356918,43185,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:34:\"Course Information &amp; Enquiries\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:0:\"\";}'),(356919,43185,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(356920,43185,'blocks_1_split_5050_content_actions','1'),(356921,43185,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(356922,43185,'blocks_1_split_5050_content',''),(356923,43185,'_blocks_1_split_5050_content','field_61767afceb8ba'),(356924,43186,'hide_hero','0'),(356925,43186,'_hide_hero','field_66a2380fcda39'),(356926,43186,'hero_title','Contact us'),(356927,43186,'_hero_title','field_617571fe285e8'),(356928,43186,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your Intrinsic biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in Biomechanics Coaching.'),(356929,43186,'_hero_text','field_6175723c285e9'),(356930,43186,'hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in Touch\";s:3:\"url\";s:12:\"#row-39196-2\";s:6:\"target\";s:0:\"\";}'),(356931,43186,'_hero_actions_0_button','field_61757281285eb'),(356932,43186,'hero_actions','1'),(356933,43186,'_hero_actions','field_61757270285ea'),(356934,43186,'hero_style','default'),(356935,43186,'_hero_style','field_62051d9dc5324'),(356936,43186,'_thumbnail_id','40339'),(356937,43186,'__thumbnail_id','field_617570855ddaf'),(356938,43186,'hero_image_pos_x','right'),(356939,43186,'_hero_image_pos_x','field_62ec3d05390bb'),(356940,43186,'hero_image_pos_y','top'),(356941,43186,'_hero_image_pos_y','field_62ec3d05390bc'),(356942,43186,'hero_image_pos',''),(356943,43186,'_hero_image_pos','field_62ec3d05390ba'),(356944,43186,'fft_hide_from_listings','0'),(356945,43186,'_fft_hide_from_listings','field_61f1320446ab2'),(356946,43186,'fft_page_format','default'),(356947,43186,'_fft_page_format','field_61ae213f1f218'),(356948,43186,'fft_hide_nav','0'),(356949,43186,'_fft_hide_nav','field_635bd5e43527c'),(356950,43186,'fft_hide_header_call_to_action','0'),(356951,43186,'_fft_hide_header_call_to_action','field_635bd6723527d'),(356952,43186,'fft_page_sitemap','0'),(356953,43186,'_fft_page_sitemap','field_61af9b34e8181'),(356954,43186,'blocks_0_acfe_flexible_toggle',''),(356955,43186,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(356956,43186,'blocks_0_acfe_flexible_layout_title','Text Block'),(356957,43186,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(356958,43186,'blocks_0_options_theme','#f5f5f5'),(356959,43186,'_blocks_0_options_theme','field_6176830e2ad17'),(356960,43186,'blocks_0_options',''),(356961,43186,'_blocks_0_options','field_6176830e2ad16'),(356962,43186,'blocks_0_text_block_heading','Get in Touch'),(356963,43186,'_blocks_0_text_block_heading','field_617669d413097'),(356964,43186,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support you. Whether you’re interested in courses, or looking for a bespoke solution, or you\'re part of an organisation that wants a bespoke service, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(356965,43186,'_blocks_0_text_block_content','field_617669ec13098'),(356966,43186,'blocks_1_acfe_flexible_toggle','');
INSERT INTO `6m7_postmeta` VALUES (356967,43186,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356968,43186,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(356969,43186,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356970,43186,'blocks_1_options_theme','#ffffff'),(356971,43186,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(356972,43186,'blocks_1_options_reverse','0'),(356973,43186,'_blocks_1_options_reverse','field_61768049bb8ac'),(356974,43186,'blocks_1_options',''),(356975,43186,'_blocks_1_options','field_617682517c334'),(356976,43186,'blocks_1_split_5050_image','40342'),(356977,43186,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(356978,43186,'blocks_1_split_5050_video',''),(356979,43186,'_blocks_1_split_5050_video','field_6239f3160848a'),(356980,43186,'blocks_1_split_5050_content_title',''),(356981,43186,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(356982,43186,'blocks_1_split_5050_content_heading','Let\'s connect!'),(356983,43186,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(356984,43186,'blocks_1_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/company/biomechanics-education/\">LinkedIn</a>'),(356985,43186,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(356986,43186,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:30:\"Course Information & Enquiries\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:0:\"\";}'),(356987,43186,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(356988,43186,'blocks_1_split_5050_content_actions','1'),(356989,43186,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(356990,43186,'blocks_1_split_5050_content',''),(356991,43186,'_blocks_1_split_5050_content','field_61767afceb8ba'),(356992,43186,'blocks_2_acfe_flexible_toggle',''),(356993,43186,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(356994,43186,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(356995,43186,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(356996,43186,'blocks_2_options_theme','#ffffff'),(356997,43186,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(356998,43186,'blocks_2_options_reverse','1'),(356999,43186,'_blocks_2_options_reverse','field_61768049bb8ac'),(357000,43186,'blocks_2_options',''),(357001,43186,'_blocks_2_options','field_617682517c334'),(357002,43186,'blocks_2_split_5050_image','40349'),(357003,43186,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(357004,43186,'blocks_2_split_5050_video',''),(357005,43186,'_blocks_2_split_5050_video','field_6239f3160848a'),(357006,43186,'blocks_2_split_5050_content_title',''),(357007,43186,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(357008,43186,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(357009,43186,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(357010,43186,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(357011,43186,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(357012,43186,'blocks_2_split_5050_content_actions',''),(357013,43186,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(357014,43186,'blocks_2_split_5050_content',''),(357015,43186,'_blocks_2_split_5050_content','field_61767afceb8ba'),(357016,43186,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";}'),(357017,43186,'_blocks','field_6176696113096'),(357018,43186,'hero_icon','lines'),(357019,43186,'_hero_icon','field_61a6182199d03'),(357020,43186,'_acf_changed','1'),(357021,43187,'hide_hero','0'),(357022,43187,'_hide_hero','field_66a2380fcda39'),(357023,43187,'fft_hide_from_listings','0'),(357024,43187,'_fft_hide_from_listings','field_61f1320446ab2'),(357025,43187,'fft_page_format','default'),(357026,43187,'_fft_page_format','field_61ae213f1f218'),(357027,43187,'fft_hide_nav','0'),(357028,43187,'_fft_hide_nav','field_635bd5e43527c'),(357029,43187,'fft_hide_header_call_to_action','0'),(357030,43187,'_fft_hide_header_call_to_action','field_635bd6723527d'),(357031,43187,'fft_page_sitemap','0'),(357032,43187,'_fft_page_sitemap','field_61af9b34e8181'),(357033,43187,'blocks_0_acfe_flexible_toggle',''),(357034,43187,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(357035,43187,'blocks_0_acfe_flexible_layout_title','Text Block'),(357036,43187,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(357037,43187,'blocks_0_options_theme','#f5f5f5'),(357038,43187,'_blocks_0_options_theme','field_6176830e2ad17'),(357039,43187,'blocks_0_options',''),(357040,43187,'_blocks_0_options','field_6176830e2ad16'),(357041,43187,'blocks_0_text_block_heading','Get in Touch'),(357042,43187,'_blocks_0_text_block_heading','field_617669d413097'),(357043,43187,'blocks_0_text_block_content','Get in touch with us today, and we can begin the process of working together to support you. Whether you’re interested in courses, or looking for a bespoke solution, or you\'re part of an organisation that wants a bespoke service, please fill in the form and one of our team will reach out to discuss your needs. Don’t worry if you are not available, we can call back at a convenient time for you.'),(357044,43187,'_blocks_0_text_block_content','field_617669ec13098'),(357045,43187,'blocks','a:3:{i:0;s:10:\"text_block\";i:1;s:10:\"split_5050\";i:2;s:10:\"split_5050\";}'),(357046,43187,'_blocks','field_6176696113096'),(357047,43187,'hero_title','Contact us'),(357048,43187,'_hero_title','field_617571fe285e8'),(357049,43187,'hero_text','We’re here to help you with all your questions, whether you\'re curious about our courses, need guidance on your Intrinsic biomechanics journey, or are looking for a custom solution. Our team is always ready to support your growth in Biomechanics Coaching.'),(357050,43187,'_hero_text','field_6175723c285e9'),(357051,43187,'hero_actions','1'),(357052,43187,'_hero_actions','field_61757270285ea'),(357053,43187,'hero_style','default'),(357054,43187,'_hero_style','field_62051d9dc5324'),(357055,43187,'hero_icon','lines'),(357056,43187,'_hero_icon','field_61a6182199d03'),(357057,43187,'_thumbnail_id','40339'),(357058,43187,'__thumbnail_id','field_617570855ddaf'),(357059,43187,'hero_image_pos_x','right'),(357060,43187,'_hero_image_pos_x','field_62ec3d05390bb'),(357061,43187,'hero_image_pos_y','top'),(357062,43187,'_hero_image_pos_y','field_62ec3d05390bc'),(357063,43187,'hero_image_pos',''),(357064,43187,'_hero_image_pos','field_62ec3d05390ba'),(357065,43187,'blocks_2_acfe_flexible_toggle',''),(357066,43187,'_blocks_2_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(357067,43187,'blocks_2_acfe_flexible_layout_title','50/50 Split'),(357068,43187,'_blocks_2_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(357069,43187,'blocks_2_options_theme','#ffffff'),(357070,43187,'_blocks_2_options_theme','field_617682847c335_field_6176830e2ad17'),(357071,43187,'blocks_2_options_reverse','1'),(357072,43187,'_blocks_2_options_reverse','field_61768049bb8ac'),(357073,43187,'blocks_2_options',''),(357074,43187,'_blocks_2_options','field_617682517c334'),(357075,43187,'blocks_2_split_5050_image','40349'),(357076,43187,'_blocks_2_split_5050_image','field_6239f527a0c3a'),(357077,43187,'blocks_2_split_5050_video',''),(357078,43187,'_blocks_2_split_5050_video','field_6239f3160848a'),(357079,43187,'blocks_2_split_5050_content_title',''),(357080,43187,'_blocks_2_split_5050_content_title','field_61767bfca3fc0'),(357081,43187,'blocks_2_split_5050_content_heading','Find a Biomechanics Coach in your area'),(357082,43187,'_blocks_2_split_5050_content_heading','field_61767b26eb8bb'),(357083,43187,'blocks_2_split_5050_content_text','Looking to work with an expert Biomechanics Coach in your area? Find out more on our dedicated page, including an interactive map with our certified Biomechanics Coaches <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.\r\n\r\n<strong>Can\'t find what you\'re looking for?</strong>\r\n\r\nCall us on <a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nEmail us at: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>'),(357084,43187,'_blocks_2_split_5050_content_text','field_61767b3beb8bc'),(357085,43187,'blocks_2_split_5050_content_actions',''),(357086,43187,'_blocks_2_split_5050_content_actions','field_61767b68eb8bd'),(357087,43187,'blocks_2_split_5050_content',''),(357088,43187,'_blocks_2_split_5050_content','field_61767afceb8ba'),(357089,43187,'hero_actions_0_button','a:3:{s:5:\"title\";s:12:\"Get in Touch\";s:3:\"url\";s:12:\"#row-39196-2\";s:6:\"target\";s:0:\"\";}'),(357090,43187,'_hero_actions_0_button','field_61757281285eb'),(357091,43187,'blocks_1_acfe_flexible_toggle',''),(357092,43187,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(357093,43187,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(357094,43187,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(357095,43187,'blocks_1_options_theme','#ffffff'),(357096,43187,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(357097,43187,'blocks_1_options_reverse','0'),(357098,43187,'_blocks_1_options_reverse','field_61768049bb8ac'),(357099,43187,'blocks_1_options',''),(357100,43187,'_blocks_1_options','field_617682517c334'),(357101,43187,'blocks_1_split_5050_image','40342'),(357102,43187,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(357103,43187,'blocks_1_split_5050_video',''),(357104,43187,'_blocks_1_split_5050_video','field_6239f3160848a'),(357105,43187,'blocks_1_split_5050_content_title',''),(357106,43187,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(357107,43187,'blocks_1_split_5050_content_heading','Let\'s connect!'),(357108,43187,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(357109,43187,'blocks_1_split_5050_content_text','<strong>Give us a call: </strong><a href=\"tel:02038416151\">020 3841 6151</a>\r\n\r\nWe\'re available Monday to Friday, 9.00am - 5.00pm. Speak to our experts and find out how we can help enhance your career or business with our evidence based biomechanics coaching methods.\r\n\r\n<strong>Send us an email:</strong> <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a>\r\n\r\nPrefer writing? Send us an email and we\'ll get back to you within 1-2 business days.\r\n\r\n<strong>Connect on social media</strong>\r\n\r\nFollow us on our social channels to stay up-to-date with the latest news, events, and tips from the world of intrinsic biomechanics.\r\n\r\n<a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a>\r\n\r\n<a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a>\r\n\r\n<a href=\"https://www.linkedin.com/company/biomechanics-education/\">LinkedIn</a>'),(357110,43187,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(357111,43187,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:30:\"Course Information & Enquiries\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:0:\"\";}'),(357112,43187,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(357113,43187,'blocks_1_split_5050_content_actions','1'),(357114,43187,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(357115,43187,'blocks_1_split_5050_content',''),(357116,43187,'_blocks_1_split_5050_content','field_61767afceb8ba'),(357117,43306,'hide_hero','0'),(357118,43306,'_hide_hero','field_66a2380fcda39'),(357119,43306,'hero_title','Anatomy for Personal Trainers: What Every PT Should Know'),(357120,43306,'_hero_title','field_617571fe285e8'),(357121,43306,'hero_text',''),(357122,43306,'_hero_text','field_6175723c285e9'),(357123,43306,'hero_actions',''),(357124,43306,'_hero_actions','field_61757270285ea'),(357125,43306,'hero_style','default'),(357126,43306,'_hero_style','field_62051d9dc5324'),(357127,43306,'hero_image_pos_x','right'),(357128,43306,'_hero_image_pos_x','field_62ec3d05390bb'),(357129,43306,'hero_image_pos_y','top'),(357130,43306,'_hero_image_pos_y','field_62ec3d05390bc'),(357131,43306,'hero_image_pos',''),(357132,43306,'_hero_image_pos','field_62ec3d05390ba'),(357133,43306,'fft_hide_from_listings','0'),(357134,43306,'_fft_hide_from_listings','field_61f1320446ab2'),(357135,43306,'post_format','2'),(357136,43306,'_post_format','field_61756bfb51898'),(357137,43306,'post_author',''),(357138,43306,'_post_author','field_62ec389d22113'),(357139,43306,'post_reviewer',''),(357140,43306,'_post_reviewer','field_627140a2a9800'),(357141,43306,'post_table_of_contents','1'),(357142,43306,'_post_table_of_contents','field_65c503bc846a6'),(357143,43306,'_thumbnail_id','40635'),(357144,43306,'__thumbnail_id','field_617570855ddaf'),(357145,43308,'hide_hero','0'),(357146,43308,'_hide_hero','field_66a2380fcda39'),(357147,43308,'hero_title','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes'),(357148,43308,'_hero_title','field_617571fe285e8'),(357149,43308,'hero_text',''),(357150,43308,'_hero_text','field_6175723c285e9'),(357151,43308,'hero_actions',''),(357152,43308,'_hero_actions','field_61757270285ea'),(357153,43308,'hero_style','default'),(357154,43308,'_hero_style','field_62051d9dc5324'),(357155,43308,'hero_image_pos_x','right'),(357156,43308,'_hero_image_pos_x','field_62ec3d05390bb'),(357157,43308,'hero_image_pos_y','top'),(357158,43308,'_hero_image_pos_y','field_62ec3d05390bc'),(357159,43308,'hero_image_pos',''),(357160,43308,'_hero_image_pos','field_62ec3d05390ba'),(357161,43308,'fft_hide_from_listings','0'),(357162,43308,'_fft_hide_from_listings','field_61f1320446ab2'),(357163,43308,'post_format','2'),(357164,43308,'_post_format','field_61756bfb51898'),(357165,43308,'post_author',''),(357166,43308,'_post_author','field_62ec389d22113'),(357167,43308,'post_reviewer',''),(357168,43308,'_post_reviewer','field_627140a2a9800'),(357169,43308,'post_table_of_contents','1'),(357170,43308,'_post_table_of_contents','field_65c503bc846a6'),(357171,43308,'_thumbnail_id','21789'),(357172,43308,'__thumbnail_id','field_617570855ddaf'),(357173,43310,'hide_hero','0'),(357174,43310,'_hide_hero','field_66a2380fcda39'),(357175,43310,'hero_title','The Link Between Movement Biomechanics and Risk Reduction'),(357176,43310,'_hero_title','field_617571fe285e8'),(357177,43310,'hero_text',''),(357178,43310,'_hero_text','field_6175723c285e9'),(357179,43310,'hero_actions',''),(357180,43310,'_hero_actions','field_61757270285ea'),(357181,43310,'hero_style','default'),(357182,43310,'_hero_style','field_62051d9dc5324'),(357183,43310,'hero_image_pos_x','right'),(357184,43310,'_hero_image_pos_x','field_62ec3d05390bb'),(357185,43310,'hero_image_pos_y','top'),(357186,43310,'_hero_image_pos_y','field_62ec3d05390bc'),(357187,43310,'hero_image_pos',''),(357188,43310,'_hero_image_pos','field_62ec3d05390ba'),(357189,43310,'fft_hide_from_listings','0'),(357190,43310,'_fft_hide_from_listings','field_61f1320446ab2'),(357191,43310,'post_format','2'),(357192,43310,'_post_format','field_61756bfb51898'),(357193,43310,'post_author',''),(357194,43310,'_post_author','field_62ec389d22113'),(357195,43310,'post_reviewer',''),(357196,43310,'_post_reviewer','field_627140a2a9800'),(357197,43310,'post_table_of_contents','1'),(357198,43310,'_post_table_of_contents','field_65c503bc846a6'),(357199,43310,'_thumbnail_id','41332'),(357200,43310,'__thumbnail_id','field_617570855ddaf'),(357201,43312,'hide_hero','0'),(357202,43312,'_hide_hero','field_66a2380fcda39'),(357203,43312,'hero_title','The Role of Joint Health in Preventing Common Fitness Injuries'),(357204,43312,'_hero_title','field_617571fe285e8'),(357205,43312,'hero_text',''),(357206,43312,'_hero_text','field_6175723c285e9'),(357207,43312,'hero_actions',''),(357208,43312,'_hero_actions','field_61757270285ea'),(357209,43312,'hero_style','default'),(357210,43312,'_hero_style','field_62051d9dc5324'),(357211,43312,'hero_image_pos_x','right'),(357212,43312,'_hero_image_pos_x','field_62ec3d05390bb'),(357213,43312,'hero_image_pos_y','top'),(357214,43312,'_hero_image_pos_y','field_62ec3d05390bc'),(357215,43312,'hero_image_pos',''),(357216,43312,'_hero_image_pos','field_62ec3d05390ba'),(357217,43312,'fft_hide_from_listings','0'),(357218,43312,'_fft_hide_from_listings','field_61f1320446ab2'),(357219,43312,'post_format','2'),(357220,43312,'_post_format','field_61756bfb51898'),(357221,43312,'post_author',''),(357222,43312,'_post_author','field_62ec389d22113'),(357223,43312,'post_reviewer',''),(357224,43312,'_post_reviewer','field_627140a2a9800'),(357225,43312,'post_table_of_contents','1'),(357226,43312,'_post_table_of_contents','field_65c503bc846a6'),(357227,43312,'_thumbnail_id','40812'),(357228,43312,'__thumbnail_id','field_617570855ddaf'),(357229,43314,'hide_hero','0'),(357230,43314,'_hide_hero','field_66a2380fcda39'),(357231,43314,'hero_title','Understanding the Connection Between Movement and Symptoms'),(357232,43314,'_hero_title','field_617571fe285e8'),(357233,43314,'hero_text',''),(357234,43314,'_hero_text','field_6175723c285e9'),(357235,43314,'hero_actions',''),(357236,43314,'_hero_actions','field_61757270285ea'),(357237,43314,'hero_style','default'),(357238,43314,'_hero_style','field_62051d9dc5324'),(357239,43314,'hero_image_pos_x','right'),(357240,43314,'_hero_image_pos_x','field_62ec3d05390bb'),(357241,43314,'hero_image_pos_y','top'),(357242,43314,'_hero_image_pos_y','field_62ec3d05390bc'),(357243,43314,'hero_image_pos',''),(357244,43314,'_hero_image_pos','field_62ec3d05390ba'),(357245,43314,'fft_hide_from_listings','0'),(357246,43314,'_fft_hide_from_listings','field_61f1320446ab2'),(357247,43314,'post_format','2'),(357248,43314,'_post_format','field_61756bfb51898'),(357249,43314,'post_author',''),(357250,43314,'_post_author','field_62ec389d22113'),(357251,43314,'post_reviewer',''),(357252,43314,'_post_reviewer','field_627140a2a9800'),(357253,43314,'post_table_of_contents','1'),(357254,43314,'_post_table_of_contents','field_65c503bc846a6'),(357255,43314,'_thumbnail_id','41326'),(357256,43314,'__thumbnail_id','field_617570855ddaf'),(357257,43316,'hide_hero','0'),(357258,43316,'_hide_hero','field_66a2380fcda39'),(357259,43316,'hero_title','What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?'),(357260,43316,'_hero_title','field_617571fe285e8'),(357261,43316,'hero_text',''),(357262,43316,'_hero_text','field_6175723c285e9'),(357263,43316,'hero_actions',''),(357264,43316,'_hero_actions','field_61757270285ea'),(357265,43316,'hero_style','default'),(357266,43316,'_hero_style','field_62051d9dc5324'),(357267,43316,'hero_image_pos_x','right'),(357268,43316,'_hero_image_pos_x','field_62ec3d05390bb'),(357269,43316,'hero_image_pos_y','top'),(357270,43316,'_hero_image_pos_y','field_62ec3d05390bc'),(357271,43316,'hero_image_pos',''),(357272,43316,'_hero_image_pos','field_62ec3d05390ba'),(357273,43316,'fft_hide_from_listings','0'),(357274,43316,'_fft_hide_from_listings','field_61f1320446ab2'),(357275,43316,'post_format','2'),(357276,43316,'_post_format','field_61756bfb51898'),(357277,43316,'post_author',''),(357278,43316,'_post_author','field_62ec389d22113'),(357279,43316,'post_reviewer',''),(357280,43316,'_post_reviewer','field_627140a2a9800'),(357281,43316,'post_table_of_contents','1'),(357282,43316,'_post_table_of_contents','field_65c503bc846a6'),(357283,43316,'_thumbnail_id','41189'),(357284,43316,'__thumbnail_id','field_617570855ddaf'),(357285,43318,'hide_hero','0'),(357286,43318,'_hide_hero','field_66a2380fcda39'),(357287,43318,'hero_title','Top 5 Preparation Exercises Every Trainer Should Know'),(357288,43318,'_hero_title','field_617571fe285e8'),(357289,43318,'hero_text',''),(357290,43318,'_hero_text','field_6175723c285e9'),(357291,43318,'hero_actions',''),(357292,43318,'_hero_actions','field_61757270285ea'),(357293,43318,'hero_style','default'),(357294,43318,'_hero_style','field_62051d9dc5324'),(357295,43318,'hero_image_pos_x','right'),(357296,43318,'_hero_image_pos_x','field_62ec3d05390bb'),(357297,43318,'hero_image_pos_y','top'),(357298,43318,'_hero_image_pos_y','field_62ec3d05390bc'),(357299,43318,'hero_image_pos',''),(357300,43318,'_hero_image_pos','field_62ec3d05390ba'),(357301,43318,'fft_hide_from_listings','0'),(357302,43318,'_fft_hide_from_listings','field_61f1320446ab2'),(357303,43318,'post_format','2'),(357304,43318,'_post_format','field_61756bfb51898'),(357305,43318,'post_author',''),(357306,43318,'_post_author','field_62ec389d22113'),(357307,43318,'post_reviewer',''),(357308,43318,'_post_reviewer','field_627140a2a9800'),(357309,43318,'post_table_of_contents','1'),(357310,43318,'_post_table_of_contents','field_65c503bc846a6'),(357311,43318,'_thumbnail_id','40615'),(357312,43318,'__thumbnail_id','field_617570855ddaf'),(357313,43320,'hide_hero','0'),(357314,43320,'_hide_hero','field_66a2380fcda39'),(357315,43320,'hero_title','Strength Training for Injury Prevention: Building Resilience and Joint Health'),(357316,43320,'_hero_title','field_617571fe285e8'),(357317,43320,'hero_text',''),(357318,43320,'_hero_text','field_6175723c285e9'),(357319,43320,'hero_actions',''),(357320,43320,'_hero_actions','field_61757270285ea'),(357321,43320,'hero_style','default'),(357322,43320,'_hero_style','field_62051d9dc5324'),(357323,43320,'hero_image_pos_x','right'),(357324,43320,'_hero_image_pos_x','field_62ec3d05390bb'),(357325,43320,'hero_image_pos_y','top'),(357326,43320,'_hero_image_pos_y','field_62ec3d05390bc'),(357327,43320,'hero_image_pos',''),(357328,43320,'_hero_image_pos','field_62ec3d05390ba'),(357329,43320,'fft_hide_from_listings','0'),(357330,43320,'_fft_hide_from_listings','field_61f1320446ab2'),(357331,43320,'post_format','2'),(357332,43320,'_post_format','field_61756bfb51898'),(357333,43320,'post_author',''),(357334,43320,'_post_author','field_62ec389d22113'),(357335,43320,'post_reviewer',''),(357336,43320,'_post_reviewer','field_627140a2a9800'),(357337,43320,'post_table_of_contents','1'),(357338,43320,'_post_table_of_contents','field_65c503bc846a6'),(357339,43320,'_thumbnail_id','40675'),(357340,43320,'__thumbnail_id','field_617570855ddaf'),(357341,40321,'blocks_0_acfe_flexible_toggle',''),(357342,40321,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(357343,40321,'blocks_0_acfe_flexible_layout_title','Form'),(357344,40321,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(357345,40321,'blocks_0_row_content_format','standard'),(357346,40321,'_blocks_0_row_content_format','field_6481ead962881'),(357347,40321,'blocks_0_row_content_title','psst'),(357348,40321,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(357349,40321,'blocks_0_row_content_heading','Can we trouble you for a few more details? '),(357350,40321,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(357351,40321,'blocks_0_row_content_text','We want to make sure your experience with us is as relevant and supportive as it can possibly be, so we would love to learn a bit more about you.\r\n\r\nWe promise it won\'t take more than 1.5 minutes and we won\'t share this information with anyone else.'),(357352,40321,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(357353,40321,'blocks_0_row_content_actions',''),(357354,40321,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(357355,40321,'blocks_0_row_content',''),(357356,40321,'_blocks_0_row_content','field_61a0f5f5b3db0'),(357357,40321,'blocks_0_row_form','40410'),(357358,40321,'_blocks_0_row_form','field_61a4ff2c0b08e'),(357359,40321,'blocks_0_row_form_button_label','Next'),(357360,40321,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(357361,40321,'blocks_1_acfe_flexible_toggle',''),(357362,40321,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(357363,40321,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(357364,40321,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(357365,40321,'blocks_1_options_theme','#ffffff'),(357366,40321,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(357367,40321,'blocks_1_options_reverse','0'),(357368,40321,'_blocks_1_options_reverse','field_61768049bb8ac'),(357369,40321,'blocks_1_options',''),(357370,40321,'_blocks_1_options','field_617682517c334'),(357371,40321,'blocks_1_split_5050_image',''),(357372,40321,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(357373,40321,'blocks_1_split_5050_video','https://www.youtube.com/watch?v=xgRiAj1qEog&t=1s'),(357374,40321,'_blocks_1_split_5050_video','field_6239f3160848a'),(357375,40321,'blocks_1_split_5050_content_title',''),(357376,40321,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(357377,40321,'blocks_1_split_5050_content_heading','Congratulations!'),(357378,40321,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(357379,40321,'blocks_1_split_5050_content_text','We will be in touch to discuss your enquiry shortly.\r\n\r\nBut first, the founder, Rachel Frances Thomson would like to welcome you to Biomechanics Education in this short video.'),(357380,40321,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(357381,40321,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:16:\"OPEN PRICE GUIDE\";s:3:\"url\";s:83:\"https://resources.futurefit.co.uk/biomechanics-education-price-guide/full-view.html\";s:6:\"target\";s:0:\"\";}'),(357382,40321,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(357383,40321,'blocks_1_split_5050_content_actions','1'),(357384,40321,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(357385,40321,'blocks_1_split_5050_content',''),(357386,40321,'_blocks_1_split_5050_content','field_61767afceb8ba'),(357387,40321,'_yoast_wpseo_content_score','90'),(357388,40321,'_yoast_wpseo_inclusive_language_score','90'),(357389,43373,'hide_hero','0'),(357390,43373,'_hide_hero','field_66a2380fcda39'),(357391,43373,'hero_title','Thank you!'),(357392,43373,'_hero_title','field_617571fe285e8'),(357393,43373,'hero_text','Your digital price guide has been sent directly to your email inbox, but if you can\'t wait to get your hands on it you can access your guide straight away below!'),(357394,43373,'_hero_text','field_6175723c285e9'),(357395,43373,'hero_actions','1'),(357396,43373,'_hero_actions','field_61757270285ea'),(357397,43373,'hero_style','default'),(357398,43373,'_hero_style','field_62051d9dc5324'),(357399,43373,'hero_image_pos_x','right'),(357400,43373,'_hero_image_pos_x','field_62ec3d05390bb'),(357401,43373,'hero_image_pos_y','top'),(357402,43373,'_hero_image_pos_y','field_62ec3d05390bc'),(357403,43373,'hero_image_pos',''),(357404,43373,'_hero_image_pos','field_62ec3d05390ba'),(357405,43373,'fft_hide_from_listings','0'),(357406,43373,'_fft_hide_from_listings','field_61f1320446ab2'),(357407,43373,'fft_page_format','default'),(357408,43373,'_fft_page_format','field_61ae213f1f218'),(357409,43373,'fft_hide_nav','0'),(357410,43373,'_fft_hide_nav','field_635bd5e43527c'),(357411,43373,'fft_hide_header_call_to_action','0'),(357412,43373,'_fft_hide_header_call_to_action','field_635bd6723527d'),(357413,43373,'fft_page_sitemap','0'),(357414,43373,'_fft_page_sitemap','field_61af9b34e8181'),(357415,43373,'blocks','a:2:{i:0;s:4:\"form\";i:1;s:10:\"split_5050\";}'),(357416,43373,'_blocks','field_6176696113096'),(357417,43373,'hero_actions_0_button','a:3:{s:5:\"title\";s:14:\"Get Your Guide\";s:3:\"url\";s:12:\"#row-40321-2\";s:6:\"target\";s:0:\"\";}'),(357418,43373,'_hero_actions_0_button','field_61757281285eb'),(357419,43373,'_thumbnail_id','39186'),(357420,43373,'__thumbnail_id','field_617570855ddaf'),(357421,43373,'blocks_0_acfe_flexible_toggle',''),(357422,43373,'_blocks_0_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(357423,43373,'blocks_0_acfe_flexible_layout_title','Form'),(357424,43373,'_blocks_0_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(357425,43373,'blocks_0_row_content_format','standard'),(357426,43373,'_blocks_0_row_content_format','field_6481ead962881'),(357427,43373,'blocks_0_row_content_title','psst'),(357428,43373,'_blocks_0_row_content_title','field_61a0f5f5b3db1'),(357429,43373,'blocks_0_row_content_heading','Can we trouble you for a few more details? '),(357430,43373,'_blocks_0_row_content_heading','field_61a0f5f5b3db2'),(357431,43373,'blocks_0_row_content_text','We want to make sure your experience with us is as relevant and supportive as it can possibly be, so we would love to learn a bit more about you.\r\n\r\nWe promise it won\'t take more than 1.5 minutes and we won\'t share this information with anyone else.'),(357432,43373,'_blocks_0_row_content_text','field_61a0f5f5b3db3'),(357433,43373,'blocks_0_row_content_actions',''),(357434,43373,'_blocks_0_row_content_actions','field_61a0f5f5b3db4'),(357435,43373,'blocks_0_row_content',''),(357436,43373,'_blocks_0_row_content','field_61a0f5f5b3db0'),(357437,43373,'blocks_0_row_form','40410'),(357438,43373,'_blocks_0_row_form','field_61a4ff2c0b08e'),(357439,43373,'blocks_0_row_form_button_label','Next'),(357440,43373,'_blocks_0_row_form_button_label','field_61e12cf6fe412'),(357441,43373,'blocks_1_acfe_flexible_toggle',''),(357442,43373,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(357443,43373,'blocks_1_acfe_flexible_layout_title','50/50 Split'),(357444,43373,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(357445,43373,'blocks_1_options_theme','#ffffff'),(357446,43373,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(357447,43373,'blocks_1_options_reverse','0'),(357448,43373,'_blocks_1_options_reverse','field_61768049bb8ac'),(357449,43373,'blocks_1_options',''),(357450,43373,'_blocks_1_options','field_617682517c334'),(357451,43373,'blocks_1_split_5050_image',''),(357452,43373,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(357453,43373,'blocks_1_split_5050_video','https://www.youtube.com/watch?v=xgRiAj1qEog&t=1s'),(357454,43373,'_blocks_1_split_5050_video','field_6239f3160848a'),(357455,43373,'blocks_1_split_5050_content_title',''),(357456,43373,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(357457,43373,'blocks_1_split_5050_content_heading','Congratulations!'),(357458,43373,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(357459,43373,'blocks_1_split_5050_content_text','We will be in touch to discuss your enquiry shortly.\r\n\r\nBut first, the founder, Rachel Frances Thomson would like to welcome you to Biomechanics Education in this short video.'),(357460,43373,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(357461,43373,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:16:\"OPEN PRICE GUIDE\";s:3:\"url\";s:83:\"https://resources.futurefit.co.uk/biomechanics-education-price-guide/full-view.html\";s:6:\"target\";s:0:\"\";}'),(357462,43373,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(357463,43373,'blocks_1_split_5050_content_actions','1'),(357464,43373,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(357465,43373,'blocks_1_split_5050_content',''),(357466,43373,'_blocks_1_split_5050_content','field_61767afceb8ba'),(357467,43389,'_edit_lock','1750147457:18'),(357468,43389,'_edit_last','18'),(357469,43389,'hide_hero','0'),(357470,43389,'_hide_hero','field_66a2380fcda39'),(357471,43389,'hero_title','Welcome to Biomechanics Education '),(357472,43389,'_hero_title','field_617571fe285e8'),(357473,43389,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support every step of the way, from foundational knowledge to advanced, evidence-based training '),(357474,43389,'_hero_text','field_6175723c285e9'),(357475,43389,'hero_actions','1'),(357476,43389,'_hero_actions','field_61757270285ea'),(357477,43389,'hero_style','default'),(357478,43389,'_hero_style','field_62051d9dc5324'),(357480,43389,'__thumbnail_id','field_617570855ddaf'),(357481,43389,'hero_image_pos_x','right'),(357482,43389,'_hero_image_pos_x','field_62ec3d05390bb'),(357483,43389,'hero_image_pos_y','top'),(357484,43389,'_hero_image_pos_y','field_62ec3d05390bc'),(357485,43389,'hero_image_pos',''),(357486,43389,'_hero_image_pos','field_62ec3d05390ba'),(357487,43389,'fft_hide_from_listings','0'),(357488,43389,'_fft_hide_from_listings','field_61f1320446ab2'),(357489,43389,'fft_page_format','default'),(357490,43389,'_fft_page_format','field_61ae213f1f218'),(357491,43389,'fft_hide_nav','0'),(357492,43389,'_fft_hide_nav','field_635bd5e43527c'),(357493,43389,'fft_hide_header_call_to_action','0'),(357494,43389,'_fft_hide_header_call_to_action','field_635bd6723527d'),(357495,43389,'fft_page_sitemap','0'),(357496,43389,'_fft_page_sitemap','field_61af9b34e8181'),(357661,43389,'blocks','a:12:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:8:\"template\";i:4;s:10:\"split_5050\";i:5;s:13:\"step_timeline\";i:6;s:5:\"stats\";i:7;s:5:\"video\";i:8;s:5:\"quote\";i:9;s:5:\"icons\";i:10;s:4:\"form\";i:11;s:10:\"split_5050\";}'),(357662,43389,'_blocks','field_6176696113096'),(357663,43389,'_yoast_wpseo_content_score','90'),(357664,43389,'_yoast_wpseo_inclusive_language_score','90'),(357665,43389,'_yoast_wpseo_estimated-reading-time-minutes','1'),(357666,43390,'hide_hero','0'),(357667,43390,'_hide_hero','field_66a2380fcda39'),(357668,43390,'hero_title','Ready to ‘Elevate’ your education and workforce development strategy? '),(357669,43390,'_hero_title','field_617571fe285e8'),(357670,43390,'hero_text','As the Official Education Partner of Elevate 2025, you\'ve hopefully seen a little of what Future Fit can provide to your organisation - but we\'re here to guide you every step of the way. '),(357671,43390,'_hero_text','field_6175723c285e9'),(357672,43390,'hero_actions',''),(357673,43390,'_hero_actions','field_61757270285ea'),(357674,43390,'hero_style','default'),(357675,43390,'_hero_style','field_62051d9dc5324'),(357676,43390,'_thumbnail_id',''),(357677,43390,'__thumbnail_id','field_617570855ddaf'),(357678,43390,'hero_image_pos_x','right'),(357679,43390,'_hero_image_pos_x','field_62ec3d05390bb'),(357680,43390,'hero_image_pos_y','top'),(357681,43390,'_hero_image_pos_y','field_62ec3d05390bc'),(357682,43390,'hero_image_pos',''),(357683,43390,'_hero_image_pos','field_62ec3d05390ba'),(357684,43390,'fft_hide_from_listings','0'),(357685,43390,'_fft_hide_from_listings','field_61f1320446ab2'),(357686,43390,'fft_page_format','default'),(357687,43390,'_fft_page_format','field_61ae213f1f218'),(357688,43390,'fft_hide_nav','0'),(357689,43390,'_fft_hide_nav','field_635bd5e43527c'),(357690,43390,'fft_hide_header_call_to_action','0'),(357691,43390,'_fft_hide_header_call_to_action','field_635bd6723527d'),(357692,43390,'fft_page_sitemap','0'),(357693,43390,'_fft_page_sitemap','field_61af9b34e8181'),(357694,43390,'blocks_0_acfe_flexible_toggle',''),(357695,43390,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(357696,43390,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(357697,43390,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(357698,43390,'blocks_0_options_theme','#ffffff'),(357699,43390,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(357700,43390,'blocks_0_options_reverse','1'),(357701,43390,'_blocks_0_options_reverse','field_61768049bb8ac'),(357702,43390,'blocks_0_options',''),(357703,43390,'_blocks_0_options','field_617682517c334'),(357704,43390,'blocks_0_split_5050_image','5758'),(357705,43390,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(357706,43390,'blocks_0_split_5050_video',''),(357707,43390,'_blocks_0_split_5050_video','field_6239f3160848a'),(357708,43390,'blocks_0_split_5050_content_title',''),(357709,43390,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(357710,43390,'blocks_0_split_5050_content_heading','Driven by a desire to make a difference '),(357711,43390,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(357712,43390,'blocks_0_split_5050_content_text','Offering unparalleled learning and networking opportunities, Elevate brings together over 250 leading suppliers with game-changers and decision makers, and over 6,000 attendees. Returning as Official Education Partner for the fourth year, on our renewed agreement has cemented Future Fit’s industry-leading reputation for raising the bar in the world of physical activity.\r\n\r\nWe hope that our panel discussions, presentations and interviews have demonstrated a little of the expertise that Future Fit has to offer, but to learn more about our innovative training and development solutions then reach out and we’ll be in touch to discuss how we can work together.'),(357713,43390,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(357714,43390,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:28:\"Enquire about our solutions \";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(357715,43390,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(357716,43390,'blocks_0_split_5050_content_actions','1'),(357717,43390,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(357718,43390,'blocks_0_split_5050_content',''),(357719,43390,'_blocks_0_split_5050_content','field_61767afceb8ba'),(357720,43390,'blocks_1_acfe_flexible_toggle',''),(357721,43390,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(357722,43390,'blocks_1_acfe_flexible_layout_title','Template'),(357723,43390,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(357724,43390,'blocks_1_template','955'),(357725,43390,'_blocks_1_template','field_617bdd570fe01'),(357726,43390,'blocks_2_acfe_flexible_toggle',''),(357727,43390,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(357728,43390,'blocks_2_acfe_flexible_layout_title','Quote'),(357729,43390,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(357730,43390,'blocks_2_quote_content','Future Fit for Business has given us a large menu of training courses and Flex has given us more options in how we deliver training. And, it’s not just for fitness staff either, it’s even lifeguards, managers and front of house.\r\n'),(357731,43390,'_blocks_2_quote_content','field_6177cdacdd67a'),(357732,43390,'blocks_2_quote_author','Nick Denslow, Fitness Manager, Mid Devon Leisure'),(357733,43390,'_blocks_2_quote_author','field_6177cdc6dd67b'),(357734,43390,'blocks_3_acfe_flexible_toggle',''),(357735,43390,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(357736,43390,'blocks_3_acfe_flexible_layout_title','50/50 Split'),(357737,43390,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(357738,43390,'blocks_3_options_theme','#b1ede8'),(357739,43390,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(357740,43390,'blocks_3_options_reverse','1'),(357741,43390,'_blocks_3_options_reverse','field_61768049bb8ac'),(357742,43390,'blocks_3_options',''),(357743,43390,'_blocks_3_options','field_617682517c334'),(357744,43390,'blocks_3_split_5050_image','5761'),(357745,43390,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(357746,43390,'blocks_3_split_5050_video',''),(357747,43390,'_blocks_3_split_5050_video','field_6239f3160848a'),(357748,43390,'blocks_3_split_5050_content_title',''),(357749,43390,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(357750,43390,'blocks_3_split_5050_content_heading','How we can support your organisation '),(357751,43390,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(357752,43390,'blocks_3_split_5050_content_text','<span class=\"TextRun SCXW163987708 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW163987708 BCX8\">As </span><span class=\"NormalTextRun SCXW163987708 BCX8\">you’ll</span><span class=\"NormalTextRun SCXW163987708 BCX8\"> know from seeing our talks at Elevate, we aim to shape the future of the industry through unparalleled learning and development provision. Over the last thirty years, </span><span class=\"NormalTextRun SCXW163987708 BCX8\">we’ve</span><span class=\"NormalTextRun SCXW163987708 BCX8\"> worked with some of the most prominent organisations in the UK, providing support with upskilling staff, increasing member retention, training, and building employee engagement so you can attract and </span><span class=\"NormalTextRun SCXW163987708 BCX8\">retain</span><span class=\"NormalTextRun SCXW163987708 BCX8\"> the best people.</span></span><span class=\"EOP SCXW163987708 BCX8\" data-ccp-props=\"{}\"> </span>'),(357753,43390,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(357754,43390,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:13:\"Enquire today\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(357755,43390,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(357756,43390,'blocks_3_split_5050_content_actions','1'),(357757,43390,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(357758,43390,'blocks_3_split_5050_content',''),(357759,43390,'_blocks_3_split_5050_content','field_61767afceb8ba'),(357760,43390,'blocks_4_acfe_flexible_toggle',''),(357761,43390,'_blocks_4_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(357762,43390,'blocks_4_acfe_flexible_layout_title','Accordions / FAQs'),(357763,43390,'_blocks_4_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(357764,43390,'blocks_4_options_theme','#ffffff'),(357765,43390,'_blocks_4_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(357766,43390,'blocks_4_options_state','0'),(357767,43390,'_blocks_4_options_state','field_6239fcb7508c5'),(357768,43390,'blocks_4_options',''),(357769,43390,'_blocks_4_options','field_6177e2991ac44'),(357770,43390,'blocks_4_content_title',''),(357771,43390,'_blocks_4_content_title','field_64d237e8bb1e2'),(357772,43390,'blocks_4_content_heading','Our Solutions'),(357773,43390,'_blocks_4_content_heading','field_64d237e8bb1e3'),(357774,43390,'blocks_4_content_text',' \r\n\r\n<span class=\"TextRun SCXW134344125 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW134344125 BCX8\">We</span><span class=\"NormalTextRun SCXW134344125 BCX8\"> proudly</span><span class=\"NormalTextRun SCXW134344125 BCX8\"> offer a range of solutions to empower your staff, build your </span><span class=\"NormalTextRun SCXW134344125 BCX8\">business</span><span class=\"NormalTextRun SCXW134344125 BCX8\"> and support the wellbeing of your communities.</span></span><span class=\"EOP SCXW134344125 BCX8\" data-ccp-props=\"{}\"> </span>'),(357775,43390,'_blocks_4_content_text','field_64d237e8bb1e4'),(357776,43390,'blocks_4_content_actions',''),(357777,43390,'_blocks_4_content_actions','field_64d237e8bb1e5'),(357778,43390,'blocks_4_content_align','left'),(357779,43390,'_blocks_4_content_align','field_64d2443e6b6aa'),(357780,43390,'blocks_4_content',''),(357781,43390,'_blocks_4_content','field_64d237e8bb1e1'),(357782,43390,'blocks_4_accordion_content','custom'),(357783,43390,'_blocks_4_accordion_content','field_6177e2c81ac4f'),(357784,43390,'blocks_4_accordion_items_0_title','Training and Education  '),(357785,43390,'_blocks_4_accordion_items_0_title','field_6177e2991ac4d'),(357786,43390,'blocks_4_accordion_items_0_text','<span class=\"TextRun SCXW196635941 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW196635941 BCX8\">From industry-specific mandatory training,</span><span class=\"NormalTextRun SCXW196635941 BCX8\"> to core qualifications such as Level 4 Personal Training, to industry-guiding releases including Navigating GLP-1 and the Transformational Leadership Programme, we proudly offer a leading training provision that supports your staff end-to-end. </span></span><span class=\"EOP SCXW196635941 BCX8\" data-ccp-props=\"{}\"> </span>'),(357787,43390,'_blocks_4_accordion_items_0_text','field_6177e2991ac4e'),(357788,43390,'blocks_4_accordion_items_1_title','Management & Leadership Suite '),(357789,43390,'_blocks_4_accordion_items_1_title','field_6177e2991ac4d'),(357790,43390,'blocks_4_accordion_items_1_text','<span class=\"TextRun SCXW39974623 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW39974623 BCX8\">Developed with subject-matter experts, we are supporting organisations just like yours to build the leaders of tomorrow. From aspiring managers to strategic change-makers this </span><span class=\"NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW39974623 BCX8\">highly-regarded</span><span class=\"NormalTextRun SCXW39974623 BCX8\"> suite of education paves the way.</span></span><span class=\"EOP SCXW39974623 BCX8\" data-ccp-props=\"{}\"> </span>'),(357791,43390,'_blocks_4_accordion_items_1_text','field_6177e2991ac4e'),(357792,43390,'blocks_4_accordion_items_2_title','Partner Network '),(357793,43390,'_blocks_4_accordion_items_2_title','field_6177e2991ac4d'),(357794,43390,'blocks_4_accordion_items_2_text','<span class=\"TextRun SCXW200426383 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW200426383 BCX8\">Our Partner Network brings together a diverse range of trusted experts who specialise in the </span><span class=\"NormalTextRun SCXW200426383 BCX8\">real challenges</span><span class=\"NormalTextRun SCXW200426383 BCX8\"> organisations face today. Whether </span><span class=\"NormalTextRun SCXW200426383 BCX8\">it’s</span><span class=\"NormalTextRun SCXW200426383 BCX8\"> navigating policy change, driving retention, embedding systems leadership, or delivering niche training in areas like water safety, SEND education or GLP-1, our partners provide deep, targeted </span><span class=\"NormalTextRun SCXW200426383 BCX8\">expertise</span><span class=\"NormalTextRun SCXW200426383 BCX8\">. Each one is carefully selected for their proven impact, sector insight, and ability to deliver practical, high-quality solutions, all under one trusted Future Fit relationship.</span></span><span class=\"EOP SCXW200426383 BCX8\" data-ccp-props=\"{}\"> </span>'),(357795,43390,'_blocks_4_accordion_items_2_text','field_6177e2991ac4e'),(357796,43390,'blocks_4_accordion_items_3_title','Flex LMS '),(357797,43390,'_blocks_4_accordion_items_3_title','field_6177e2991ac4d'),(357798,43390,'blocks_4_accordion_items_3_text','<span class=\"TextRun SCXW253193910 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW253193910 BCX8\">The first choice LMS for the sport and physical activity sector, Flex is our proven solution, built by our team, for yours. Providing a centralised, compliant, </span><span class=\"NormalTextRun SCXW253193910 BCX8\">agile</span><span class=\"NormalTextRun SCXW253193910 BCX8\"> and accessible way for you to manage your </span><span class=\"NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW253193910 BCX8\">staffs</span><span class=\"NormalTextRun SCXW253193910 BCX8\"> development. </span></span><span class=\"EOP SCXW253193910 BCX8\" data-ccp-props=\"{}\"> </span>'),(357799,43390,'_blocks_4_accordion_items_3_text','field_6177e2991ac4e'),(357800,43390,'blocks_4_accordion_items_4_title','Prozone '),(357801,43390,'_blocks_4_accordion_items_4_title','field_6177e2991ac4d'),(357802,43390,'blocks_4_accordion_items_4_text','<span class=\"TextRun SCXW165858647 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SpellingErrorV2Themed SCXW165858647 BCX8\">ProZone</span><span class=\"NormalTextRun SCXW165858647 BCX8\"> is widely recognised as a must-have content hub and engagement tool and the premium solution for ongoing CPD training. Providing a dynamic library of on-demand content, from our 15 curated categories</span><span class=\"NormalTextRun SCXW165858647 BCX8\"> directly to your staff.</span></span><span class=\"EOP SCXW165858647 BCX8\" data-ccp-props=\"{}\"> </span>'),(357803,43390,'_blocks_4_accordion_items_4_text','field_6177e2991ac4e'),(357804,43390,'blocks_4_accordion_items_5_title','Bespoke and L&D Consultancy '),(357805,43390,'_blocks_4_accordion_items_5_title','field_6177e2991ac4d'),(357806,43390,'blocks_4_accordion_items_5_text','<span class=\"TextRun SCXW212842262 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW212842262 BCX8\">We will work closely with you to deliver the solution you need, without reliance on ‘off the shelf’ training, we can </span><span class=\"NormalTextRun SCXW212842262 BCX8\">operate</span><span class=\"NormalTextRun SCXW212842262 BCX8\"> as your agile, bespoke delivery partner offering support on a range of initiatives from course creation, workshop delivery, support with projects and beyond.</span></span><span class=\"EOP SCXW212842262 BCX8\" data-ccp-props=\"{}\"> </span>'),(357807,43390,'_blocks_4_accordion_items_5_text','field_6177e2991ac4e'),(357808,43390,'blocks_4_accordion_items','6'),(357809,43390,'_blocks_4_accordion_items','field_6177e2991ac4c'),(357810,43390,'blocks_4_actions',''),(357811,43390,'_blocks_4_actions','field_61a746a817f7a'),(357812,43390,'blocks_5_acfe_flexible_toggle',''),(357813,43390,'_blocks_5_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(357814,43390,'blocks_5_acfe_flexible_layout_title','form[anchor]'),(357815,43390,'_blocks_5_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(357816,43390,'blocks_5_row_content_format','standard'),(357817,43390,'_blocks_5_row_content_format','field_6481ead962881'),(357818,43390,'blocks_5_row_content_title',''),(357819,43390,'_blocks_5_row_content_title','field_61a0f5f5b3db1'),(357820,43390,'blocks_5_row_content_heading','Elevate your workforce and education today '),(357821,43390,'_blocks_5_row_content_heading','field_61a0f5f5b3db2'),(357822,43390,'blocks_5_row_content_text','<span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\">If </span><span class=\"NormalTextRun SCXW54314338 BCX8\">you’d</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> like to find out more about how Future Fit for Business can support your organisation, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">enquire today</span><span class=\"NormalTextRun SCXW54314338 BCX8\">. From training courses to bespoke solutions and learner management, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">we’re</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> here to do the heavy lifting.</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> To celebrate another fantastic year of Elevate, all enquiries made between 18</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun Superscript SCXW54314338 BCX8\" data-fontsize=\"12\">th</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\"> – 30</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun Superscript SCXW54314338 BCX8\" data-fontsize=\"12\">th</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\"> June 2025 will be entered into a prize draw to win a year free </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW54314338 BCX8\">ProZone</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> subscription. </span></span><span class=\"EOP SCXW54314338 BCX8\" data-ccp-props=\"{}\"> </span>'),(357823,43390,'_blocks_5_row_content_text','field_61a0f5f5b3db3'),(357824,43390,'blocks_5_row_content_actions',''),(357825,43390,'_blocks_5_row_content_actions','field_61a0f5f5b3db4'),(357826,43390,'blocks_5_row_content',''),(357827,43390,'_blocks_5_row_content','field_61a0f5f5b3db0'),(357828,43390,'blocks_5_row_form','4914'),(357829,43390,'_blocks_5_row_form','field_61a4ff2c0b08e'),(357830,43390,'blocks_5_row_form_button_label','Enquire Now'),(357831,43390,'_blocks_5_row_form_button_label','field_61e12cf6fe412'),(357832,43390,'blocks_6_acfe_flexible_toggle',''),(357833,43390,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(357834,43390,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(357835,43390,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(357836,43390,'blocks_6_options_theme','#ffffff'),(357837,43390,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(357838,43390,'blocks_6_options_reverse','1'),(357839,43390,'_blocks_6_options_reverse','field_61768049bb8ac'),(357840,43390,'blocks_6_options',''),(357841,43390,'_blocks_6_options','field_617682517c334'),(357842,43390,'blocks_6_split_5050_image','5763'),(357843,43390,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(357844,43390,'blocks_6_split_5050_video',''),(357845,43390,'_blocks_6_split_5050_video','field_6239f3160848a'),(357846,43390,'blocks_6_split_5050_content_title',''),(357847,43390,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(357848,43390,'blocks_6_split_5050_content_heading','Elevate X Future Fit '),(357849,43390,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(357850,43390,'blocks_6_split_5050_content_text','<span data-contrast=\"auto\">Future Fit have proudly attended Elevate as the Official Education Partner for 4 consecutive years, with a recent 3-year renewal to our lasting partnership. </span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Both of our businesses have a shared desire to improve the health of our nation, and through Elevates impressive 6,000+ annual attendee presence, with 250+ of the best businesses in our sector exhibiting, it really is the leading conference to dramatically shape and nurture our beloved sector.</span><span data-ccp-props=\"{}\"> </span>'),(357851,43390,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(357852,43390,'blocks_6_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:13:\"Enquire today\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(357853,43390,'_blocks_6_split_5050_content_actions_0_button','field_61767b72eb8be'),(357854,43390,'blocks_6_split_5050_content_actions','1'),(357855,43390,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(357856,43390,'blocks_6_split_5050_content',''),(357857,43390,'_blocks_6_split_5050_content','field_61767afceb8ba'),(357858,43390,'blocks','a:7:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:5:\"quote\";i:3;s:10:\"split_5050\";i:4;s:10:\"accordions\";i:5;s:4:\"form\";i:6;s:10:\"split_5050\";}'),(357859,43390,'_blocks','field_6176696113096'),(357860,43389,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(357861,43389,'_hero_actions_0_button','field_61757281285eb'),(357975,43391,'hide_hero','0'),(357976,43391,'_hide_hero','field_66a2380fcda39'),(357977,43391,'hero_title','Ready to ‘Elevate’ your education and workforce development strategy? '),(357978,43391,'_hero_title','field_617571fe285e8'),(357979,43391,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support your organisation every step of the way, from foundational knowledge to advanced, evidence-based training.'),(357980,43391,'_hero_text','field_6175723c285e9'),(357981,43391,'hero_actions','1'),(357982,43391,'_hero_actions','field_61757270285ea'),(357983,43391,'hero_style','default'),(357984,43391,'_hero_style','field_62051d9dc5324'),(357985,43391,'hero_image_pos_x','right'),(357986,43391,'_hero_image_pos_x','field_62ec3d05390bb'),(357987,43391,'hero_image_pos_y','top'),(357988,43391,'_hero_image_pos_y','field_62ec3d05390bc'),(357989,43391,'hero_image_pos',''),(357990,43391,'_hero_image_pos','field_62ec3d05390ba'),(357991,43391,'fft_hide_from_listings','0'),(357992,43391,'_fft_hide_from_listings','field_61f1320446ab2'),(357993,43391,'fft_page_format','default'),(357994,43391,'_fft_page_format','field_61ae213f1f218'),(357995,43391,'fft_hide_nav','0'),(357996,43391,'_fft_hide_nav','field_635bd5e43527c'),(357997,43391,'fft_hide_header_call_to_action','0'),(357998,43391,'_fft_hide_header_call_to_action','field_635bd6723527d'),(357999,43391,'fft_page_sitemap','0'),(358000,43391,'_fft_page_sitemap','field_61af9b34e8181'),(358001,43391,'blocks_0_acfe_flexible_toggle',''),(358002,43391,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(358003,43391,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(358004,43391,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(358005,43391,'blocks_0_options_theme','#ffffff'),(358006,43391,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(358007,43391,'blocks_0_options_reverse','1'),(358008,43391,'_blocks_0_options_reverse','field_61768049bb8ac'),(358009,43391,'blocks_0_options',''),(358010,43391,'_blocks_0_options','field_617682517c334'),(358011,43391,'blocks_0_split_5050_image','41332'),(358012,43391,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(358013,43391,'blocks_0_split_5050_video',''),(358014,43391,'_blocks_0_split_5050_video','field_6239f3160848a'),(358015,43391,'blocks_0_split_5050_content_title','Biomechanics Education and Future Fit'),(358016,43391,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(358017,43391,'blocks_0_split_5050_content_heading','Working in Partnership'),(358018,43391,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(358019,43391,'blocks_0_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(358020,43391,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(358021,43391,'blocks_0_split_5050_content_actions',''),(358022,43391,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(358023,43391,'blocks_0_split_5050_content',''),(358024,43391,'_blocks_0_split_5050_content','field_61767afceb8ba'),(358025,43391,'blocks_2_acfe_flexible_toggle',''),(358026,43391,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(358027,43391,'blocks_2_acfe_flexible_layout_title','Quote'),(358028,43391,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(358029,43391,'blocks_2_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(358030,43391,'_blocks_2_quote_content','field_6177cdacdd67a'),(358031,43391,'blocks_2_quote_author',''),(358032,43391,'_blocks_2_quote_author','field_6177cdc6dd67b'),(358033,43391,'blocks_6_acfe_flexible_toggle',''),(358034,43391,'_blocks_6_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(358035,43391,'blocks_6_acfe_flexible_layout_title','50/50 Split'),(358036,43391,'_blocks_6_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(358037,43391,'blocks_6_options_theme','#f8f8f8'),(358038,43391,'_blocks_6_options_theme','field_617682847c335_field_6176830e2ad17'),(358039,43391,'blocks_6_options_reverse','1'),(358040,43391,'_blocks_6_options_reverse','field_61768049bb8ac'),(358041,43391,'blocks_6_options',''),(358042,43391,'_blocks_6_options','field_617682517c334'),(358043,43391,'blocks_6_split_5050_image','11916'),(358044,43391,'_blocks_6_split_5050_image','field_6239f527a0c3a'),(358045,43391,'blocks_6_split_5050_video',''),(358046,43391,'_blocks_6_split_5050_video','field_6239f3160848a'),(358047,43391,'blocks_6_split_5050_content_title','About Rachel'),(358048,43391,'_blocks_6_split_5050_content_title','field_61767bfca3fc0'),(358049,43391,'blocks_6_split_5050_content_heading',''),(358050,43391,'_blocks_6_split_5050_content_heading','field_61767b26eb8bb'),(358051,43391,'blocks_6_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel\'s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(358052,43391,'_blocks_6_split_5050_content_text','field_61767b3beb8bc'),(358053,43391,'blocks_6_split_5050_content_actions',''),(358054,43391,'_blocks_6_split_5050_content_actions','field_61767b68eb8bd'),(358055,43391,'blocks_6_split_5050_content',''),(358056,43391,'_blocks_6_split_5050_content','field_61767afceb8ba'),(358057,43391,'blocks','a:8:{i:0;s:10:\"split_5050\";i:1;s:4:\"form\";i:2;s:5:\"quote\";i:3;s:8:\"template\";i:4;s:5:\"video\";i:5;s:10:\"split_5050\";i:6;s:10:\"split_5050\";i:7;s:5:\"cards\";}'),(358058,43391,'_blocks','field_6176696113096'),(358059,43391,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(358060,43391,'_hero_actions_0_button','field_61757281285eb'),(358061,43391,'_thumbnail_id',''),(358062,43391,'__thumbnail_id','field_617570855ddaf'),(358063,43391,'blocks_1_acfe_flexible_toggle',''),(358064,43391,'_blocks_1_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(358065,43391,'blocks_1_acfe_flexible_layout_title','Form [anchor]'),(358066,43391,'_blocks_1_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(358067,43391,'blocks_1_row_content_format','standard'),(358068,43391,'_blocks_1_row_content_format','field_6481ead962881'),(358069,43391,'blocks_1_row_content_title',''),(358070,43391,'_blocks_1_row_content_title','field_61a0f5f5b3db1'),(358071,43391,'blocks_1_row_content_heading','Elevate your workforce and education today '),(358072,43391,'_blocks_1_row_content_heading','field_61a0f5f5b3db2'),(358073,43391,'blocks_1_row_content_text','<span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\">If </span><span class=\"NormalTextRun SCXW54314338 BCX8\">you’d</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> like to find out more about how Biomechanics Education can support your organisation, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">enquire today</span><span class=\"NormalTextRun SCXW54314338 BCX8\">. From training courses to bespoke solutions and learner management, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">we’re</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> here to do the heavy lifting.</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> To celebrate another fantastic year of Elevate, all enquiries made between 18</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun Superscript SCXW54314338 BCX8\" data-fontsize=\"12\">th</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\"> – 30</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun Superscript SCXW54314338 BCX8\" data-fontsize=\"12\">th</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\"> June 2025 will be entered into a prize draw to win a year free </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW54314338 BCX8\">ProZone</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> subscription. </span></span><span class=\"EOP SCXW54314338 BCX8\" data-ccp-props=\"{}\"> </span>'),(358074,43391,'_blocks_1_row_content_text','field_61a0f5f5b3db3'),(358075,43391,'blocks_1_row_content_actions',''),(358076,43391,'_blocks_1_row_content_actions','field_61a0f5f5b3db4'),(358077,43391,'blocks_1_row_content',''),(358078,43391,'_blocks_1_row_content','field_61a0f5f5b3db0'),(358079,43391,'blocks_1_row_form','40394'),(358080,43391,'_blocks_1_row_form','field_61a4ff2c0b08e'),(358081,43391,'blocks_1_row_form_button_label',''),(358082,43391,'_blocks_1_row_form_button_label','field_61e12cf6fe412'),(358083,43391,'blocks_3_acfe_flexible_toggle',''),(358084,43391,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(358085,43391,'blocks_3_acfe_flexible_layout_title','Template'),(358086,43391,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(358087,43391,'blocks_3_template','39207'),(358088,43391,'_blocks_3_template','field_617bdd570fe01'),(358089,43391,'blocks_4_acfe_flexible_toggle',''),(358090,43391,'_blocks_4_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(358091,43391,'blocks_4_acfe_flexible_layout_title','Video'),(358092,43391,'_blocks_4_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(358093,43391,'blocks_4_size','large'),(358094,43391,'_blocks_4_size','field_6487038f297c1'),(358095,43391,'blocks_4_row_content_title',''),(358096,43391,'_blocks_4_row_content_title','field_64870132a865d'),(358097,43391,'blocks_4_row_content_heading','Hear from our Learners'),(358098,43391,'_blocks_4_row_content_heading','field_64870142a865e'),(358099,43391,'blocks_4_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(358100,43391,'_blocks_4_row_content_text','field_64870148a865f'),(358101,43391,'blocks_4_row_content',''),(358102,43391,'_blocks_4_row_content','field_6487008ba865c'),(358103,43391,'blocks_4_video_src','https://www.youtube.com/watch?v=CAwcWfVzc1c'),(358104,43391,'_blocks_4_video_src','field_6193c4a98ec07'),(358105,43391,'blocks_4_video_thumbnail',''),(358106,43391,'_blocks_4_video_thumbnail','field_6193c4a08ec06'),(358107,43391,'blocks_5_acfe_flexible_toggle',''),(358108,43391,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(358109,43391,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(358110,43391,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(358111,43391,'blocks_5_options_theme','#f5f5f5'),(358112,43391,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(358113,43391,'blocks_5_options_reverse','1'),(358114,43391,'_blocks_5_options_reverse','field_61768049bb8ac'),(358115,43391,'blocks_5_options',''),(358116,43391,'_blocks_5_options','field_617682517c334'),(358117,43391,'blocks_5_split_5050_image','38960'),(358118,43391,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(358119,43391,'blocks_5_split_5050_video',''),(358120,43391,'_blocks_5_split_5050_video','field_6239f3160848a'),(358121,43391,'blocks_5_split_5050_content_title',''),(358122,43391,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(358123,43391,'blocks_5_split_5050_content_heading','Biomechanics Education & Future Fit'),(358124,43391,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(358125,43391,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(358126,43391,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(358127,43391,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(358128,43391,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(358129,43391,'blocks_5_split_5050_content_actions','1'),(358130,43391,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(358131,43391,'blocks_5_split_5050_content',''),(358132,43391,'_blocks_5_split_5050_content','field_61767afceb8ba'),(358133,43391,'blocks_7_acfe_flexible_toggle',''),(358134,43391,'_blocks_7_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(358135,43391,'blocks_7_acfe_flexible_layout_title','Cards'),(358136,43391,'_blocks_7_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(358137,43391,'blocks_7_options_theme','#ffffff'),(358138,43391,'_blocks_7_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(358139,43391,'blocks_7_options_format','carousel'),(358140,43391,'_blocks_7_options_format','field_617a7b15245b5'),(358141,43391,'blocks_7_options_style','default'),(358142,43391,'_blocks_7_options_style','field_6278ffb63484a'),(358143,43391,'blocks_7_options_cards_current_listing','0'),(358144,43391,'_blocks_7_options_cards_current_listing','field_6193d7effb7a4'),(358145,43391,'blocks_7_options_cards_content','custom'),(358146,43391,'_blocks_7_options_cards_content','field_617aba6122688'),(358147,43391,'blocks_7_options',''),(358148,43391,'_blocks_7_options','field_617a7b15245b3'),(358149,43391,'blocks_7_cards_custom_0_image','8891'),(358150,43391,'_blocks_7_cards_custom_0_image','field_6194cc284d387'),(358151,43391,'blocks_7_cards_custom_0_title','Biomechanics Coach Course'),(358152,43391,'_blocks_7_cards_custom_0_title','field_6194cc454d388'),(358153,43391,'blocks_7_cards_custom_0_text','Hone your existing skills, training as a Biomechanics Coach so you can assess your client’s body and understand where there is risk and where you can help them improve.'),(358154,43391,'_blocks_7_cards_custom_0_text','field_6194cc4a4d389'),(358155,43391,'blocks_7_cards_custom_0_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:12:\"#row-14152-3\";s:6:\"target\";s:0:\"\";}'),(358156,43391,'_blocks_7_cards_custom_0_link','field_6194cc534d38a'),(358157,43391,'blocks_7_cards_custom_1_image','7846'),(358158,43391,'_blocks_7_cards_custom_1_image','field_6194cc284d387'),(358159,43391,'blocks_7_cards_custom_1_title','Personal Training Courses'),(358160,43391,'_blocks_7_cards_custom_1_title','field_6194cc454d388'),(358161,43391,'blocks_7_cards_custom_1_text','Choose from our Level 2, 3 or 4 Personal Training Course, written and taught by industry-leading experts through a combination of online learning and in-person workshops. '),(358162,43391,'_blocks_7_cards_custom_1_text','field_6194cc4a4d389'),(358163,43391,'blocks_7_cards_custom_1_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:12:\"#row-14152-3\";s:6:\"target\";s:0:\"\";}'),(358164,43391,'_blocks_7_cards_custom_1_link','field_6194cc534d38a'),(358165,43391,'blocks_7_cards_custom_2_image','10080'),(358166,43391,'_blocks_7_cards_custom_2_image','field_6194cc284d387'),(358167,43391,'blocks_7_cards_custom_2_title','Pilates Instructor Courses'),(358168,43391,'_blocks_7_cards_custom_2_title','field_6194cc454d388'),(358169,43391,'blocks_7_cards_custom_2_text','We enable devoted health enthusiasts to become highly skilled, sought-after Pilates Instructors, by delivering world-class training in our Level 3 or 4 Pilates Courses.'),(358170,43391,'_blocks_7_cards_custom_2_text','field_6194cc4a4d389'),(358171,43391,'blocks_7_cards_custom_2_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:12:\"#row-14152-3\";s:6:\"target\";s:0:\"\";}'),(358172,43391,'_blocks_7_cards_custom_2_link','field_6194cc534d38a'),(358173,43391,'blocks_7_cards_custom','3'),(358174,43391,'_blocks_7_cards_custom','field_6194cbf84d386'),(358398,43393,'hide_hero','0'),(358399,43393,'_hide_hero','field_66a2380fcda39'),(358400,43393,'hero_title','Ready to ‘Elevate’ your workforce with Biomechanics Education?'),(358401,43393,'_hero_title','field_617571fe285e8'),(358402,43393,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support your organisation every step of the way, from foundational knowledge to advanced, evidence-based training.'),(358403,43393,'_hero_text','field_6175723c285e9'),(358404,43393,'hero_actions','1'),(358405,43393,'_hero_actions','field_61757270285ea'),(358406,43393,'hero_style','default'),(358407,43393,'_hero_style','field_62051d9dc5324'),(358408,43393,'hero_image_pos_x','right'),(358409,43393,'_hero_image_pos_x','field_62ec3d05390bb'),(358410,43393,'hero_image_pos_y','top'),(358411,43393,'_hero_image_pos_y','field_62ec3d05390bc'),(358412,43393,'hero_image_pos',''),(358413,43393,'_hero_image_pos','field_62ec3d05390ba'),(358414,43393,'fft_hide_from_listings','0'),(358415,43393,'_fft_hide_from_listings','field_61f1320446ab2'),(358416,43393,'fft_page_format','default'),(358417,43393,'_fft_page_format','field_61ae213f1f218'),(358418,43393,'fft_hide_nav','0'),(358419,43393,'_fft_hide_nav','field_635bd5e43527c'),(358420,43393,'fft_hide_header_call_to_action','0'),(358421,43393,'_fft_hide_header_call_to_action','field_635bd6723527d'),(358422,43393,'fft_page_sitemap','0'),(358423,43393,'_fft_page_sitemap','field_61af9b34e8181'),(358424,43393,'blocks_0_acfe_flexible_toggle',''),(358425,43393,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(358426,43393,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(358427,43393,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(358428,43393,'blocks_0_options_theme','#ffffff'),(358429,43393,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(358430,43393,'blocks_0_options_reverse','1'),(358431,43393,'_blocks_0_options_reverse','field_61768049bb8ac'),(358432,43393,'blocks_0_options',''),(358433,43393,'_blocks_0_options','field_617682517c334'),(358434,43393,'blocks_0_split_5050_image','41332'),(358435,43393,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(358436,43393,'blocks_0_split_5050_video',''),(358437,43393,'_blocks_0_split_5050_video','field_6239f3160848a'),(358438,43393,'blocks_0_split_5050_content_title','Biomechanics Education and Future Fit'),(358439,43393,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(358440,43393,'blocks_0_split_5050_content_heading','Working in Partnership'),(358441,43393,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(358442,43393,'blocks_0_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(358443,43393,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(358444,43393,'blocks_0_split_5050_content_actions','1'),(358445,43393,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(358446,43393,'blocks_0_split_5050_content',''),(358447,43393,'_blocks_0_split_5050_content','field_61767afceb8ba'),(358448,43393,'blocks_2_acfe_flexible_toggle',''),(358449,43393,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(358450,43393,'blocks_2_acfe_flexible_layout_title','Quote'),(358451,43393,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(358452,43393,'blocks_2_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(358453,43393,'_blocks_2_quote_content','field_6177cdacdd67a'),(358454,43393,'blocks_2_quote_author',''),(358455,43393,'_blocks_2_quote_author','field_6177cdc6dd67b'),(358456,43393,'blocks','a:12:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:5:\"quote\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:4:\"form\";i:7;s:10:\"split_5050\";i:8;s:10:\"text_block\";i:9;s:5:\"cards\";i:10;s:10:\"text_block\";i:11;s:5:\"cards\";}'),(358457,43393,'_blocks','field_6176696113096'),(358458,43393,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(358459,43393,'_hero_actions_0_button','field_61757281285eb'),(358460,43393,'blocks_5_acfe_flexible_toggle',''),(358461,43393,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(358462,43393,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(358463,43393,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(358464,43393,'blocks_5_options_theme','#ffffff'),(358465,43393,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(358466,43393,'blocks_5_options_reverse','1'),(358467,43393,'_blocks_5_options_reverse','field_61768049bb8ac'),(358468,43393,'blocks_5_options',''),(358469,43393,'_blocks_5_options','field_617682517c334'),(358470,43393,'blocks_5_split_5050_image','38960'),(358471,43393,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(358472,43393,'blocks_5_split_5050_video',''),(358473,43393,'_blocks_5_split_5050_video','field_6239f3160848a'),(358474,43393,'blocks_5_split_5050_content_title',''),(358475,43393,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(358476,43393,'blocks_5_split_5050_content_heading',''),(358477,43393,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(358478,43393,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(358479,43393,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(358480,43393,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(358481,43393,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(358482,43393,'blocks_5_split_5050_content_actions','1'),(358483,43393,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(358484,43393,'blocks_5_split_5050_content',''),(358485,43393,'_blocks_5_split_5050_content','field_61767afceb8ba'),(358486,43393,'_thumbnail_id',''),(358487,43393,'__thumbnail_id','field_617570855ddaf'),(358488,43393,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(358489,43393,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(358490,43393,'blocks_1_acfe_flexible_toggle',''),(358491,43393,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(358492,43393,'blocks_1_acfe_flexible_layout_title','Template'),(358493,43393,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(358494,43393,'blocks_1_template','39207'),(358495,43393,'_blocks_1_template','field_617bdd570fe01'),(358496,43393,'blocks_3_acfe_flexible_toggle',''),(358497,43393,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(358498,43393,'blocks_3_acfe_flexible_layout_title','Video'),(358499,43393,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(358500,43393,'blocks_3_size','large'),(358501,43393,'_blocks_3_size','field_6487038f297c1'),(358502,43393,'blocks_3_row_content_title',''),(358503,43393,'_blocks_3_row_content_title','field_64870132a865d'),(358504,43393,'blocks_3_row_content_heading','Hear from our Learners'),(358505,43393,'_blocks_3_row_content_heading','field_64870142a865e'),(358506,43393,'blocks_3_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(358507,43393,'_blocks_3_row_content_text','field_64870148a865f'),(358508,43393,'blocks_3_row_content',''),(358509,43393,'_blocks_3_row_content','field_6487008ba865c'),(358510,43393,'blocks_3_video_src','https://www.youtube.com/watch?v=CAwcWfVzc1c'),(358511,43393,'_blocks_3_video_src','field_6193c4a98ec07'),(358512,43393,'blocks_3_video_thumbnail',''),(358513,43393,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(358514,43393,'blocks_4_acfe_flexible_toggle',''),(358515,43393,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(358516,43393,'blocks_4_acfe_flexible_layout_title','Text Block'),(358517,43393,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(358518,43393,'blocks_4_options_theme','#ffffff'),(358519,43393,'_blocks_4_options_theme','field_6176830e2ad17'),(358520,43393,'blocks_4_options',''),(358521,43393,'_blocks_4_options','field_6176830e2ad16'),(358522,43393,'blocks_4_text_block_heading',''),(358523,43393,'_blocks_4_text_block_heading','field_617669d413097'),(358524,43393,'blocks_4_text_block_content','<h2 style=\"text-align: center;\">Biomechanics Education &amp; Future Fit</h2>'),(358525,43393,'_blocks_4_text_block_content','field_617669ec13098'),(358526,43393,'blocks_6_acfe_flexible_toggle',''),(358527,43393,'_blocks_6_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(358528,43393,'blocks_6_acfe_flexible_layout_title','Form [anchor]'),(358529,43393,'_blocks_6_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(358530,43393,'blocks_6_row_content_format','standard'),(358531,43393,'_blocks_6_row_content_format','field_6481ead962881'),(358532,43393,'blocks_6_row_content_title',''),(358533,43393,'_blocks_6_row_content_title','field_61a0f5f5b3db1'),(358534,43393,'blocks_6_row_content_heading','Elevate your workforce and education today '),(358535,43393,'_blocks_6_row_content_heading','field_61a0f5f5b3db2'),(358536,43393,'blocks_6_row_content_text','<span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\">If </span><span class=\"NormalTextRun SCXW54314338 BCX8\">you’d</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> like to find out more about how Biomechanics Education can support your organisation, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">enquire today</span><span class=\"NormalTextRun SCXW54314338 BCX8\">. From training courses to bespoke solutions and learner management, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">we’re</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> here to do the heavy lifting.</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> To celebrate another fantastic year of Elevate, all enquiries made between 18</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun Superscript SCXW54314338 BCX8\" data-fontsize=\"12\">th</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\"> – 30</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun Superscript SCXW54314338 BCX8\" data-fontsize=\"12\">th</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\"> June 2025 will be entered into a prize draw to win a year free </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW54314338 BCX8\">ProZone</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> subscription. </span></span><span class=\"EOP SCXW54314338 BCX8\" data-ccp-props=\"{}\"> </span>'),(358537,43393,'_blocks_6_row_content_text','field_61a0f5f5b3db3'),(358538,43393,'blocks_6_row_content_actions',''),(358539,43393,'_blocks_6_row_content_actions','field_61a0f5f5b3db4'),(358540,43393,'blocks_6_row_content',''),(358541,43393,'_blocks_6_row_content','field_61a0f5f5b3db0'),(358542,43393,'blocks_6_row_form','40394'),(358543,43393,'_blocks_6_row_form','field_61a4ff2c0b08e'),(358544,43393,'blocks_6_row_form_button_label',''),(358545,43393,'_blocks_6_row_form_button_label','field_61e12cf6fe412'),(358546,43393,'blocks_7_acfe_flexible_toggle',''),(358547,43393,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(358548,43393,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(358549,43393,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(358550,43393,'blocks_7_options_theme','#ffffff'),(358551,43393,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(358552,43393,'blocks_7_options_reverse','1'),(358553,43393,'_blocks_7_options_reverse','field_61768049bb8ac'),(358554,43393,'blocks_7_options',''),(358555,43393,'_blocks_7_options','field_617682517c334'),(358556,43393,'blocks_7_split_5050_image','11916'),(358557,43393,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(358558,43393,'blocks_7_split_5050_video',''),(358559,43393,'_blocks_7_split_5050_video','field_6239f3160848a'),(358560,43393,'blocks_7_split_5050_content_title','About Rachel'),(358561,43393,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(358562,43393,'blocks_7_split_5050_content_heading',''),(358563,43393,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(358564,43393,'blocks_7_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel\'s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(358565,43393,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(358566,43393,'blocks_7_split_5050_content_actions',''),(358567,43393,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(358568,43393,'blocks_7_split_5050_content',''),(358569,43393,'_blocks_7_split_5050_content','field_61767afceb8ba'),(358570,43393,'blocks_8_acfe_flexible_toggle',''),(358571,43393,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(358572,43393,'blocks_8_acfe_flexible_layout_title','Text Block'),(358573,43393,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(358574,43393,'blocks_8_options_theme','#ffffff'),(358575,43393,'_blocks_8_options_theme','field_6176830e2ad17'),(358576,43393,'blocks_8_options',''),(358577,43393,'_blocks_8_options','field_6176830e2ad16'),(358578,43393,'blocks_8_text_block_heading',''),(358579,43393,'_blocks_8_text_block_heading','field_617669d413097'),(358580,43393,'blocks_8_text_block_content','<h2 style=\"text-align: center;\">Our Courses</h2>'),(358581,43393,'_blocks_8_text_block_content','field_617669ec13098'),(358582,43393,'blocks_9_acfe_flexible_toggle',''),(358583,43393,'_blocks_9_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(358584,43393,'blocks_9_acfe_flexible_layout_title','Cards'),(358585,43393,'_blocks_9_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(358586,43393,'blocks_9_options_theme','#ffffff'),(358587,43393,'_blocks_9_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(358588,43393,'blocks_9_options_format','carousel'),(358589,43393,'_blocks_9_options_format','field_617a7b15245b5'),(358590,43393,'blocks_9_options_style','default'),(358591,43393,'_blocks_9_options_style','field_6278ffb63484a'),(358592,43393,'blocks_9_options_cards_current_listing','0'),(358593,43393,'_blocks_9_options_cards_current_listing','field_6193d7effb7a4'),(358594,43393,'blocks_9_options_cards_content','custom'),(358595,43393,'_blocks_9_options_cards_content','field_617aba6122688'),(358596,43393,'blocks_9_options',''),(358597,43393,'_blocks_9_options','field_617a7b15245b3'),(358598,43393,'blocks_9_cards_custom_0_image','8891'),(358599,43393,'_blocks_9_cards_custom_0_image','field_6194cc284d387'),(358600,43393,'blocks_9_cards_custom_0_title','Biomechanics Coach Course'),(358601,43393,'_blocks_9_cards_custom_0_title','field_6194cc454d388'),(358602,43393,'blocks_9_cards_custom_0_text','Hone your existing skills, training as a Biomechanics Coach so you can assess your client’s body and understand where there is risk and where you can help them improve.'),(358603,43393,'_blocks_9_cards_custom_0_text','field_6194cc4a4d389'),(358604,43393,'blocks_9_cards_custom_0_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:12:\"#row-14152-3\";s:6:\"target\";s:0:\"\";}'),(358605,43393,'_blocks_9_cards_custom_0_link','field_6194cc534d38a'),(358606,43393,'blocks_9_cards_custom_1_image','7846'),(358607,43393,'_blocks_9_cards_custom_1_image','field_6194cc284d387'),(358608,43393,'blocks_9_cards_custom_1_title','Personal Training Courses'),(358609,43393,'_blocks_9_cards_custom_1_title','field_6194cc454d388'),(358610,43393,'blocks_9_cards_custom_1_text','Choose from our Level 2, 3 or 4 Personal Training Course, written and taught by industry-leading experts through a combination of online learning and in-person workshops. '),(358611,43393,'_blocks_9_cards_custom_1_text','field_6194cc4a4d389'),(358612,43393,'blocks_9_cards_custom_1_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:12:\"#row-14152-3\";s:6:\"target\";s:0:\"\";}'),(358613,43393,'_blocks_9_cards_custom_1_link','field_6194cc534d38a'),(358614,43393,'blocks_9_cards_custom_2_image','10080'),(358615,43393,'_blocks_9_cards_custom_2_image','field_6194cc284d387'),(358616,43393,'blocks_9_cards_custom_2_title','Pilates Instructor Courses'),(358617,43393,'_blocks_9_cards_custom_2_title','field_6194cc454d388'),(358618,43393,'blocks_9_cards_custom_2_text','We enable devoted health enthusiasts to become highly skilled, sought-after Pilates Instructors, by delivering world-class training in our Level 3 or 4 Pilates Courses.'),(358619,43393,'_blocks_9_cards_custom_2_text','field_6194cc4a4d389'),(358620,43393,'blocks_9_cards_custom_2_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:12:\"#row-14152-3\";s:6:\"target\";s:0:\"\";}'),(358621,43393,'_blocks_9_cards_custom_2_link','field_6194cc534d38a'),(358622,43393,'blocks_9_cards_custom','3'),(358623,43393,'_blocks_9_cards_custom','field_6194cbf84d386'),(358624,43393,'blocks_10_acfe_flexible_toggle',''),(358625,43393,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(358626,43393,'blocks_10_acfe_flexible_layout_title','Text Block'),(358627,43393,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(358628,43393,'blocks_10_options_theme','#ffffff'),(358629,43393,'_blocks_10_options_theme','field_6176830e2ad17'),(358630,43393,'blocks_10_options',''),(358631,43393,'_blocks_10_options','field_6176830e2ad16'),(358632,43393,'blocks_10_text_block_heading',''),(358633,43393,'_blocks_10_text_block_heading','field_617669d413097'),(358634,43393,'blocks_10_text_block_content','<h2 style=\"text-align: center;\">Learn About Biomechanics Coaching for Different Disciplines</h2>'),(358635,43393,'_blocks_10_text_block_content','field_617669ec13098'),(358636,43393,'blocks_11_acfe_flexible_toggle',''),(358637,43393,'_blocks_11_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(358638,43393,'blocks_11_acfe_flexible_layout_title','Cards'),(358639,43393,'_blocks_11_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(358640,43393,'blocks_11_options_theme','#ffffff'),(358641,43393,'_blocks_11_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(358642,43393,'blocks_11_options_format','carousel'),(358643,43393,'_blocks_11_options_format','field_617a7b15245b5'),(358644,43393,'blocks_11_options_style','default'),(358645,43393,'_blocks_11_options_style','field_6278ffb63484a'),(358646,43393,'blocks_11_options_cards_current_listing','0'),(358647,43393,'_blocks_11_options_cards_current_listing','field_6193d7effb7a4'),(358648,43393,'blocks_11_options_cards_content','custom'),(358649,43393,'_blocks_11_options_cards_content','field_617aba6122688'),(358650,43393,'blocks_11_options',''),(358651,43393,'_blocks_11_options','field_617a7b15245b3'),(358652,43393,'blocks_11_cards_custom_0_image','39215'),(358653,43393,'_blocks_11_cards_custom_0_image','field_6194cc284d387'),(358654,43393,'blocks_11_cards_custom_0_title','Biomechanics and Personal Training'),(358655,43393,'_blocks_11_cards_custom_0_title','field_6194cc454d388'),(358656,43393,'blocks_11_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(358657,43393,'_blocks_11_cards_custom_0_text','field_6194cc4a4d389'),(358658,43393,'blocks_11_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(358659,43393,'_blocks_11_cards_custom_0_link','field_6194cc534d38a'),(358660,43393,'blocks_11_cards_custom_1_image','39243'),(358661,43393,'_blocks_11_cards_custom_1_image','field_6194cc284d387'),(358662,43393,'blocks_11_cards_custom_1_title','Biomechanics and Pilates'),(358663,43393,'_blocks_11_cards_custom_1_title','field_6194cc454d388'),(358664,43393,'blocks_11_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(358665,43393,'_blocks_11_cards_custom_1_text','field_6194cc4a4d389'),(358666,43393,'blocks_11_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(358667,43393,'_blocks_11_cards_custom_1_link','field_6194cc534d38a'),(358668,43393,'blocks_11_cards_custom_2_image','39247'),(358669,43393,'_blocks_11_cards_custom_2_image','field_6194cc284d387'),(358670,43393,'blocks_11_cards_custom_2_title','Biomechanics and Podiatrists'),(358671,43393,'_blocks_11_cards_custom_2_title','field_6194cc454d388'),(358672,43393,'blocks_11_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(358673,43393,'_blocks_11_cards_custom_2_text','field_6194cc4a4d389'),(358674,43393,'blocks_11_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(358675,43393,'_blocks_11_cards_custom_2_link','field_6194cc534d38a'),(358676,43393,'blocks_11_cards_custom_3_image','39256'),(358677,43393,'_blocks_11_cards_custom_3_image','field_6194cc284d387'),(358678,43393,'blocks_11_cards_custom_3_title','Biomechanics and S&C coaches'),(358679,43393,'_blocks_11_cards_custom_3_title','field_6194cc454d388'),(358680,43393,'blocks_11_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(358681,43393,'_blocks_11_cards_custom_3_text','field_6194cc4a4d389'),(358682,43393,'blocks_11_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(358683,43393,'_blocks_11_cards_custom_3_link','field_6194cc534d38a'),(358684,43393,'blocks_11_cards_custom_4_image','39251'),(358685,43393,'_blocks_11_cards_custom_4_image','field_6194cc284d387'),(358686,43393,'blocks_11_cards_custom_4_title','Biomechanics and Sports Coaches '),(358687,43393,'_blocks_11_cards_custom_4_title','field_6194cc454d388'),(358688,43393,'blocks_11_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(358689,43393,'_blocks_11_cards_custom_4_text','field_6194cc4a4d389'),(358690,43393,'blocks_11_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(358691,43393,'_blocks_11_cards_custom_4_link','field_6194cc534d38a'),(358692,43393,'blocks_11_cards_custom_5_image','39240'),(358693,43393,'_blocks_11_cards_custom_5_image','field_6194cc284d387'),(358694,43393,'blocks_11_cards_custom_5_title','Biomechanics and Sports Massage'),(358695,43393,'_blocks_11_cards_custom_5_title','field_6194cc454d388'),(358696,43393,'blocks_11_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(358697,43393,'_blocks_11_cards_custom_5_text','field_6194cc4a4d389'),(358698,43393,'blocks_11_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(358699,43393,'_blocks_11_cards_custom_5_link','field_6194cc534d38a'),(358700,43393,'blocks_11_cards_custom_6_image','39454'),(358701,43393,'_blocks_11_cards_custom_6_image','field_6194cc284d387'),(358702,43393,'blocks_11_cards_custom_6_title','How to Become a Biomechanics Coach'),(358703,43393,'_blocks_11_cards_custom_6_title','field_6194cc454d388'),(358704,43393,'blocks_11_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(358705,43393,'_blocks_11_cards_custom_6_text','field_6194cc4a4d389'),(358706,43393,'blocks_11_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(358707,43393,'_blocks_11_cards_custom_6_link','field_6194cc534d38a'),(358708,43393,'blocks_11_cards_custom','7'),(358709,43393,'_blocks_11_cards_custom','field_6194cbf84d386'),(358712,43394,'hide_hero','0'),(358713,43394,'_hide_hero','field_66a2380fcda39'),(358714,43394,'hero_title','Ready to ‘Elevate’ your workforce with Biomechanics Education?'),(358715,43394,'_hero_title','field_617571fe285e8'),(358716,43394,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support your organisation every step of the way, from foundational knowledge to advanced, evidence-based training.'),(358717,43394,'_hero_text','field_6175723c285e9'),(358718,43394,'hero_actions','1'),(358719,43394,'_hero_actions','field_61757270285ea'),(358720,43394,'hero_style','default'),(358721,43394,'_hero_style','field_62051d9dc5324'),(358722,43394,'hero_image_pos_x','right'),(358723,43394,'_hero_image_pos_x','field_62ec3d05390bb'),(358724,43394,'hero_image_pos_y','top'),(358725,43394,'_hero_image_pos_y','field_62ec3d05390bc'),(358726,43394,'hero_image_pos',''),(358727,43394,'_hero_image_pos','field_62ec3d05390ba'),(358728,43394,'fft_hide_from_listings','0'),(358729,43394,'_fft_hide_from_listings','field_61f1320446ab2'),(358730,43394,'fft_page_format','default'),(358731,43394,'_fft_page_format','field_61ae213f1f218'),(358732,43394,'fft_hide_nav','0'),(358733,43394,'_fft_hide_nav','field_635bd5e43527c'),(358734,43394,'fft_hide_header_call_to_action','0'),(358735,43394,'_fft_hide_header_call_to_action','field_635bd6723527d'),(358736,43394,'fft_page_sitemap','0'),(358737,43394,'_fft_page_sitemap','field_61af9b34e8181'),(358738,43394,'blocks_0_acfe_flexible_toggle',''),(358739,43394,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(358740,43394,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(358741,43394,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(358742,43394,'blocks_0_options_theme','#ffffff'),(358743,43394,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(358744,43394,'blocks_0_options_reverse','1'),(358745,43394,'_blocks_0_options_reverse','field_61768049bb8ac'),(358746,43394,'blocks_0_options',''),(358747,43394,'_blocks_0_options','field_617682517c334'),(358748,43394,'blocks_0_split_5050_image','41332'),(358749,43394,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(358750,43394,'blocks_0_split_5050_video',''),(358751,43394,'_blocks_0_split_5050_video','field_6239f3160848a'),(358752,43394,'blocks_0_split_5050_content_title','Biomechanics Education and Future Fit'),(358753,43394,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(358754,43394,'blocks_0_split_5050_content_heading','Working in Partnership'),(358755,43394,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(358756,43394,'blocks_0_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(358757,43394,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(358758,43394,'blocks_0_split_5050_content_actions','1'),(358759,43394,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(358760,43394,'blocks_0_split_5050_content',''),(358761,43394,'_blocks_0_split_5050_content','field_61767afceb8ba'),(358762,43394,'blocks_2_acfe_flexible_toggle',''),(358763,43394,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(358764,43394,'blocks_2_acfe_flexible_layout_title','Quote'),(358765,43394,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(358766,43394,'blocks_2_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(358767,43394,'_blocks_2_quote_content','field_6177cdacdd67a'),(358768,43394,'blocks_2_quote_author',''),(358769,43394,'_blocks_2_quote_author','field_6177cdc6dd67b'),(358770,43394,'blocks','a:12:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:5:\"quote\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:4:\"form\";i:7;s:10:\"split_5050\";i:8;s:10:\"text_block\";i:9;s:5:\"cards\";i:10;s:10:\"text_block\";i:11;s:5:\"cards\";}'),(358771,43394,'_blocks','field_6176696113096'),(358772,43394,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(358773,43394,'_hero_actions_0_button','field_61757281285eb'),(358774,43394,'blocks_5_acfe_flexible_toggle',''),(358775,43394,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(358776,43394,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(358777,43394,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(358778,43394,'blocks_5_options_theme','#ffffff'),(358779,43394,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(358780,43394,'blocks_5_options_reverse','1'),(358781,43394,'_blocks_5_options_reverse','field_61768049bb8ac'),(358782,43394,'blocks_5_options',''),(358783,43394,'_blocks_5_options','field_617682517c334'),(358784,43394,'blocks_5_split_5050_image','38960'),(358785,43394,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(358786,43394,'blocks_5_split_5050_video',''),(358787,43394,'_blocks_5_split_5050_video','field_6239f3160848a'),(358788,43394,'blocks_5_split_5050_content_title',''),(358789,43394,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(358790,43394,'blocks_5_split_5050_content_heading',''),(358791,43394,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(358792,43394,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(358793,43394,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(358794,43394,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(358795,43394,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(358796,43394,'blocks_5_split_5050_content_actions','1'),(358797,43394,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(358798,43394,'blocks_5_split_5050_content',''),(358799,43394,'_blocks_5_split_5050_content','field_61767afceb8ba'),(358800,43394,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(358801,43394,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(358802,43394,'blocks_1_acfe_flexible_toggle',''),(358803,43394,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(358804,43394,'blocks_1_acfe_flexible_layout_title','Template'),(358805,43394,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(358806,43394,'blocks_1_template','39207'),(358807,43394,'_blocks_1_template','field_617bdd570fe01'),(358808,43394,'blocks_3_acfe_flexible_toggle',''),(358809,43394,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(358810,43394,'blocks_3_acfe_flexible_layout_title','Video'),(358811,43394,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(358812,43394,'blocks_3_size','large'),(358813,43394,'_blocks_3_size','field_6487038f297c1'),(358814,43394,'blocks_3_row_content_title',''),(358815,43394,'_blocks_3_row_content_title','field_64870132a865d'),(358816,43394,'blocks_3_row_content_heading','Hear from our Learners'),(358817,43394,'_blocks_3_row_content_heading','field_64870142a865e'),(358818,43394,'blocks_3_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(358819,43394,'_blocks_3_row_content_text','field_64870148a865f'),(358820,43394,'blocks_3_row_content',''),(358821,43394,'_blocks_3_row_content','field_6487008ba865c'),(358822,43394,'blocks_3_video_src','https://www.youtube.com/watch?v=CAwcWfVzc1c'),(358823,43394,'_blocks_3_video_src','field_6193c4a98ec07'),(358824,43394,'blocks_3_video_thumbnail',''),(358825,43394,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(358826,43394,'blocks_4_acfe_flexible_toggle',''),(358827,43394,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(358828,43394,'blocks_4_acfe_flexible_layout_title','Text Block'),(358829,43394,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(358830,43394,'blocks_4_options_theme','#ffffff'),(358831,43394,'_blocks_4_options_theme','field_6176830e2ad17'),(358832,43394,'blocks_4_options',''),(358833,43394,'_blocks_4_options','field_6176830e2ad16'),(358834,43394,'blocks_4_text_block_heading',''),(358835,43394,'_blocks_4_text_block_heading','field_617669d413097'),(358836,43394,'blocks_4_text_block_content','<h2 style=\"text-align: center;\">Biomechanics Education &amp; Future Fit</h2>'),(358837,43394,'_blocks_4_text_block_content','field_617669ec13098'),(358838,43394,'blocks_6_acfe_flexible_toggle',''),(358839,43394,'_blocks_6_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(358840,43394,'blocks_6_acfe_flexible_layout_title','Form [anchor]'),(358841,43394,'_blocks_6_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(358842,43394,'blocks_6_row_content_format','standard'),(358843,43394,'_blocks_6_row_content_format','field_6481ead962881'),(358844,43394,'blocks_6_row_content_title',''),(358845,43394,'_blocks_6_row_content_title','field_61a0f5f5b3db1'),(358846,43394,'blocks_6_row_content_heading','Elevate your workforce and education today '),(358847,43394,'_blocks_6_row_content_heading','field_61a0f5f5b3db2'),(358848,43394,'blocks_6_row_content_text','<span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\">If </span><span class=\"NormalTextRun SCXW54314338 BCX8\">you’d</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> like to find out more about how Biomechanics Education can support your organisation, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">enquire today</span><span class=\"NormalTextRun SCXW54314338 BCX8\">. From training courses to bespoke solutions and learner management, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">we’re</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> here to do the heavy lifting.</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> To celebrate another fantastic year of Elevate, all enquiries made between 18</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun Superscript SCXW54314338 BCX8\" data-fontsize=\"12\">th</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\"> – 30</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun Superscript SCXW54314338 BCX8\" data-fontsize=\"12\">th</span></span><span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\"> June 2025 will be entered into a prize draw to win a year free </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW54314338 BCX8\">ProZone</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> subscription. </span></span><span class=\"EOP SCXW54314338 BCX8\" data-ccp-props=\"{}\"> </span>'),(358849,43394,'_blocks_6_row_content_text','field_61a0f5f5b3db3'),(358850,43394,'blocks_6_row_content_actions',''),(358851,43394,'_blocks_6_row_content_actions','field_61a0f5f5b3db4'),(358852,43394,'blocks_6_row_content',''),(358853,43394,'_blocks_6_row_content','field_61a0f5f5b3db0'),(358854,43394,'blocks_6_row_form','40394'),(358855,43394,'_blocks_6_row_form','field_61a4ff2c0b08e'),(358856,43394,'blocks_6_row_form_button_label',''),(358857,43394,'_blocks_6_row_form_button_label','field_61e12cf6fe412'),(358858,43394,'blocks_7_acfe_flexible_toggle',''),(358859,43394,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(358860,43394,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(358861,43394,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(358862,43394,'blocks_7_options_theme','#ffffff'),(358863,43394,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(358864,43394,'blocks_7_options_reverse','1'),(358865,43394,'_blocks_7_options_reverse','field_61768049bb8ac'),(358866,43394,'blocks_7_options',''),(358867,43394,'_blocks_7_options','field_617682517c334'),(358868,43394,'blocks_7_split_5050_image',''),(358869,43394,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(358870,43394,'blocks_7_split_5050_video',''),(358871,43394,'_blocks_7_split_5050_video','field_6239f3160848a'),(358872,43394,'blocks_7_split_5050_content_title','About Rachel'),(358873,43394,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(358874,43394,'blocks_7_split_5050_content_heading',''),(358875,43394,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(358876,43394,'blocks_7_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel\'s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(358877,43394,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(358878,43394,'blocks_7_split_5050_content_actions',''),(358879,43394,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(358880,43394,'blocks_7_split_5050_content',''),(358881,43394,'_blocks_7_split_5050_content','field_61767afceb8ba'),(358882,43394,'blocks_8_acfe_flexible_toggle',''),(358883,43394,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(358884,43394,'blocks_8_acfe_flexible_layout_title','Text Block'),(358885,43394,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(358886,43394,'blocks_8_options_theme','#ffffff'),(358887,43394,'_blocks_8_options_theme','field_6176830e2ad17'),(358888,43394,'blocks_8_options',''),(358889,43394,'_blocks_8_options','field_6176830e2ad16'),(358890,43394,'blocks_8_text_block_heading',''),(358891,43394,'_blocks_8_text_block_heading','field_617669d413097'),(358892,43394,'blocks_8_text_block_content','<h2 style=\"text-align: center;\">Our Courses</h2>'),(358893,43394,'_blocks_8_text_block_content','field_617669ec13098'),(358894,43394,'blocks_9_acfe_flexible_toggle',''),(358895,43394,'_blocks_9_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(358896,43394,'blocks_9_acfe_flexible_layout_title','Cards'),(358897,43394,'_blocks_9_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(358898,43394,'blocks_9_options_theme','#ffffff'),(358899,43394,'_blocks_9_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(358900,43394,'blocks_9_options_format','carousel'),(358901,43394,'_blocks_9_options_format','field_617a7b15245b5'),(358902,43394,'blocks_9_options_style','default'),(358903,43394,'_blocks_9_options_style','field_6278ffb63484a'),(358904,43394,'blocks_9_options_cards_current_listing','0'),(358905,43394,'_blocks_9_options_cards_current_listing','field_6193d7effb7a4'),(358906,43394,'blocks_9_options_cards_content','custom'),(358907,43394,'_blocks_9_options_cards_content','field_617aba6122688'),(358908,43394,'blocks_9_options',''),(358909,43394,'_blocks_9_options','field_617a7b15245b3'),(358910,43394,'blocks_9_cards_custom_0_image','41540'),(358911,43394,'_blocks_9_cards_custom_0_image','field_6194cc284d387'),(358912,43394,'blocks_9_cards_custom_0_title','Biomechanics Coach Course'),(358913,43394,'_blocks_9_cards_custom_0_title','field_6194cc454d388'),(358914,43394,'blocks_9_cards_custom_0_text','Hone your existing skills, training as a Biomechanics Coach so you can assess your client’s body and understand where there is risk and where you can help them improve.'),(358915,43394,'_blocks_9_cards_custom_0_text','field_6194cc4a4d389'),(358916,43394,'blocks_9_cards_custom_0_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(358917,43394,'_blocks_9_cards_custom_0_link','field_6194cc534d38a'),(358918,43394,'blocks_9_cards_custom_1_image','38323'),(358919,43394,'_blocks_9_cards_custom_1_image','field_6194cc284d387'),(358920,43394,'blocks_9_cards_custom_1_title','Personal Training Courses'),(358921,43394,'_blocks_9_cards_custom_1_title','field_6194cc454d388'),(358922,43394,'blocks_9_cards_custom_1_text','Choose from our Level 2, 3 or 4 Personal Training Course, written and taught by industry-leading experts through a combination of online learning and in-person workshops. '),(358923,43394,'_blocks_9_cards_custom_1_text','field_6194cc4a4d389'),(358924,43394,'blocks_9_cards_custom_1_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(358925,43394,'_blocks_9_cards_custom_1_link','field_6194cc534d38a'),(358926,43394,'blocks_9_cards_custom_2_image','41526'),(358927,43394,'_blocks_9_cards_custom_2_image','field_6194cc284d387'),(358928,43394,'blocks_9_cards_custom_2_title','Pilates Instructor Courses'),(358929,43394,'_blocks_9_cards_custom_2_title','field_6194cc454d388'),(358930,43394,'blocks_9_cards_custom_2_text','We enable devoted health enthusiasts to become highly skilled, sought-after Pilates Instructors, by delivering world-class training in our Level 3 or 4 Pilates Courses.'),(358931,43394,'_blocks_9_cards_custom_2_text','field_6194cc4a4d389'),(358932,43394,'blocks_9_cards_custom_2_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(358933,43394,'_blocks_9_cards_custom_2_link','field_6194cc534d38a'),(358934,43394,'blocks_9_cards_custom','3'),(358935,43394,'_blocks_9_cards_custom','field_6194cbf84d386'),(358936,43394,'blocks_10_acfe_flexible_toggle',''),(358937,43394,'_blocks_10_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(358938,43394,'blocks_10_acfe_flexible_layout_title','Text Block'),(358939,43394,'_blocks_10_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(358940,43394,'blocks_10_options_theme','#ffffff'),(358941,43394,'_blocks_10_options_theme','field_6176830e2ad17'),(358942,43394,'blocks_10_options',''),(358943,43394,'_blocks_10_options','field_6176830e2ad16'),(358944,43394,'blocks_10_text_block_heading',''),(358945,43394,'_blocks_10_text_block_heading','field_617669d413097'),(358946,43394,'blocks_10_text_block_content','<h2 style=\"text-align: center;\">Learn About Biomechanics Coaching for Different Disciplines</h2>'),(358947,43394,'_blocks_10_text_block_content','field_617669ec13098'),(358948,43394,'blocks_11_acfe_flexible_toggle',''),(358949,43394,'_blocks_11_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(358950,43394,'blocks_11_acfe_flexible_layout_title','Cards'),(358951,43394,'_blocks_11_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(358952,43394,'blocks_11_options_theme','#ffffff'),(358953,43394,'_blocks_11_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(358954,43394,'blocks_11_options_format','carousel'),(358955,43394,'_blocks_11_options_format','field_617a7b15245b5'),(358956,43394,'blocks_11_options_style','default'),(358957,43394,'_blocks_11_options_style','field_6278ffb63484a'),(358958,43394,'blocks_11_options_cards_current_listing','0'),(358959,43394,'_blocks_11_options_cards_current_listing','field_6193d7effb7a4'),(358960,43394,'blocks_11_options_cards_content','custom'),(358961,43394,'_blocks_11_options_cards_content','field_617aba6122688'),(358962,43394,'blocks_11_options',''),(358963,43394,'_blocks_11_options','field_617a7b15245b3'),(358964,43394,'blocks_11_cards_custom_0_image','39215'),(358965,43394,'_blocks_11_cards_custom_0_image','field_6194cc284d387'),(358966,43394,'blocks_11_cards_custom_0_title','Biomechanics and Personal Training'),(358967,43394,'_blocks_11_cards_custom_0_title','field_6194cc454d388'),(358968,43394,'blocks_11_cards_custom_0_text','Stand out from the crowd with Biomechanics Coaching as a Personal Trainer'),(358969,43394,'_blocks_11_cards_custom_0_text','field_6194cc4a4d389'),(358970,43394,'blocks_11_cards_custom_0_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:85:\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\";s:6:\"target\";s:0:\"\";}'),(358971,43394,'_blocks_11_cards_custom_0_link','field_6194cc534d38a'),(358972,43394,'blocks_11_cards_custom_1_image','39243'),(358973,43394,'_blocks_11_cards_custom_1_image','field_6194cc284d387'),(358974,43394,'blocks_11_cards_custom_1_title','Biomechanics and Pilates'),(358975,43394,'_blocks_11_cards_custom_1_title','field_6194cc454d388'),(358976,43394,'blocks_11_cards_custom_1_text','Stand out from the crowd with Biomechanics Coaching for Pilates instructors'),(358977,43394,'_blocks_11_cards_custom_1_text','field_6194cc4a4d389'),(358978,43394,'blocks_11_cards_custom_1_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:75:\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\";s:6:\"target\";s:0:\"\";}'),(358979,43394,'_blocks_11_cards_custom_1_link','field_6194cc534d38a'),(358980,43394,'blocks_11_cards_custom_2_image','39247'),(358981,43394,'_blocks_11_cards_custom_2_image','field_6194cc284d387'),(358982,43394,'blocks_11_cards_custom_2_title','Biomechanics and Podiatrists'),(358983,43394,'_blocks_11_cards_custom_2_title','field_6194cc454d388'),(358984,43394,'blocks_11_cards_custom_2_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(358985,43394,'_blocks_11_cards_custom_2_text','field_6194cc4a4d389'),(358986,43394,'blocks_11_cards_custom_2_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:62:\"https://biomechanicseducation.com/getting-started/podiatrists/\";s:6:\"target\";s:0:\"\";}'),(358987,43394,'_blocks_11_cards_custom_2_link','field_6194cc534d38a'),(358988,43394,'blocks_11_cards_custom_3_image','39256'),(358989,43394,'_blocks_11_cards_custom_3_image','field_6194cc284d387'),(358990,43394,'blocks_11_cards_custom_3_title','Biomechanics and S&C coaches'),(358991,43394,'_blocks_11_cards_custom_3_title','field_6194cc454d388'),(358992,43394,'blocks_11_cards_custom_3_text','Gain a deeper understanding of anatomy and client movement through Intrinsic Biomechanics.'),(358993,43394,'_blocks_11_cards_custom_3_text','field_6194cc4a4d389'),(358994,43394,'blocks_11_cards_custom_3_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/getting-started/sc-coaches/\";s:6:\"target\";s:0:\"\";}'),(358995,43394,'_blocks_11_cards_custom_3_link','field_6194cc534d38a'),(358996,43394,'blocks_11_cards_custom_4_image','39251'),(358997,43394,'_blocks_11_cards_custom_4_image','field_6194cc284d387'),(358998,43394,'blocks_11_cards_custom_4_title','Biomechanics and Sports Coaches '),(358999,43394,'_blocks_11_cards_custom_4_title','field_6194cc454d388'),(359000,43394,'blocks_11_cards_custom_4_text','Revolutionise your understanding of anatomy and mobility to help optimise client performance movement quality.'),(359001,43394,'_blocks_11_cards_custom_4_text','field_6194cc4a4d389'),(359002,43394,'blocks_11_cards_custom_4_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:82:\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\";s:6:\"target\";s:0:\"\";}'),(359003,43394,'_blocks_11_cards_custom_4_link','field_6194cc534d38a'),(359004,43394,'blocks_11_cards_custom_5_image','39240'),(359005,43394,'_blocks_11_cards_custom_5_image','field_6194cc284d387'),(359006,43394,'blocks_11_cards_custom_5_title','Biomechanics and Sports Massage'),(359007,43394,'_blocks_11_cards_custom_5_title','field_6194cc454d388'),(359008,43394,'blocks_11_cards_custom_5_text','Stand out from the crowd with Biomechanics Coaching for sports massage therapists'),(359009,43394,'_blocks_11_cards_custom_5_text','field_6194cc4a4d389'),(359010,43394,'blocks_11_cards_custom_5_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:73:\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\";s:6:\"target\";s:0:\"\";}'),(359011,43394,'_blocks_11_cards_custom_5_link','field_6194cc534d38a'),(359012,43394,'blocks_11_cards_custom_6_image','39454'),(359013,43394,'_blocks_11_cards_custom_6_image','field_6194cc284d387'),(359014,43394,'blocks_11_cards_custom_6_title','How to Become a Biomechanics Coach'),(359015,43394,'_blocks_11_cards_custom_6_title','field_6194cc454d388'),(359016,43394,'blocks_11_cards_custom_6_text','Understand the root cause of client movement through proven techniques to help your clients move more freely. '),(359017,43394,'_blocks_11_cards_custom_6_text','field_6194cc4a4d389'),(359018,43394,'blocks_11_cards_custom_6_link','a:3:{s:5:\"title\";s:12:\"Learn More !\";s:3:\"url\";s:69:\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\";s:6:\"target\";s:0:\"\";}'),(359019,43394,'_blocks_11_cards_custom_6_link','field_6194cc534d38a'),(359020,43394,'blocks_11_cards_custom','7'),(359021,43394,'_blocks_11_cards_custom','field_6194cbf84d386'),(359022,43394,'_thumbnail_id',''),(359023,43394,'__thumbnail_id','field_617570855ddaf'),(359025,43395,'hide_hero','0'),(359026,43395,'_hide_hero','field_66a2380fcda39'),(359027,43395,'hero_title','Ready to ‘Elevate’ your workforce with Biomechanics Education?'),(359028,43395,'_hero_title','field_617571fe285e8'),(359029,43395,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support your organisation every step of the way, from foundational knowledge to advanced, evidence-based training.'),(359030,43395,'_hero_text','field_6175723c285e9'),(359031,43395,'hero_actions','1'),(359032,43395,'_hero_actions','field_61757270285ea'),(359033,43395,'hero_style','default'),(359034,43395,'_hero_style','field_62051d9dc5324'),(359035,43395,'hero_image_pos_x','right'),(359036,43395,'_hero_image_pos_x','field_62ec3d05390bb'),(359037,43395,'hero_image_pos_y','top'),(359038,43395,'_hero_image_pos_y','field_62ec3d05390bc'),(359039,43395,'hero_image_pos',''),(359040,43395,'_hero_image_pos','field_62ec3d05390ba'),(359041,43395,'fft_hide_from_listings','0'),(359042,43395,'_fft_hide_from_listings','field_61f1320446ab2'),(359043,43395,'fft_page_format','default'),(359044,43395,'_fft_page_format','field_61ae213f1f218'),(359045,43395,'fft_hide_nav','0'),(359046,43395,'_fft_hide_nav','field_635bd5e43527c'),(359047,43395,'fft_hide_header_call_to_action','0'),(359048,43395,'_fft_hide_header_call_to_action','field_635bd6723527d'),(359049,43395,'fft_page_sitemap','0'),(359050,43395,'_fft_page_sitemap','field_61af9b34e8181'),(359051,43395,'blocks_0_acfe_flexible_toggle',''),(359052,43395,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(359053,43395,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(359054,43395,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(359055,43395,'blocks_0_options_theme','#ffffff'),(359056,43395,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(359057,43395,'blocks_0_options_reverse','1'),(359058,43395,'_blocks_0_options_reverse','field_61768049bb8ac'),(359059,43395,'blocks_0_options',''),(359060,43395,'_blocks_0_options','field_617682517c334'),(359061,43395,'blocks_0_split_5050_image','41332'),(359062,43395,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(359063,43395,'blocks_0_split_5050_video',''),(359064,43395,'_blocks_0_split_5050_video','field_6239f3160848a'),(359065,43395,'blocks_0_split_5050_content_title','Biomechanics Education and Future Fit'),(359066,43395,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(359067,43395,'blocks_0_split_5050_content_heading','Working in Partnership'),(359068,43395,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(359069,43395,'blocks_0_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(359070,43395,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(359071,43395,'blocks_0_split_5050_content_actions','1'),(359072,43395,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(359073,43395,'blocks_0_split_5050_content',''),(359074,43395,'_blocks_0_split_5050_content','field_61767afceb8ba'),(359075,43395,'blocks_2_acfe_flexible_toggle',''),(359076,43395,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(359077,43395,'blocks_2_acfe_flexible_layout_title','Quote'),(359078,43395,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(359079,43395,'blocks_2_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(359080,43395,'_blocks_2_quote_content','field_6177cdacdd67a'),(359081,43395,'blocks_2_quote_author',''),(359082,43395,'_blocks_2_quote_author','field_6177cdc6dd67b'),(359083,43395,'blocks','a:10:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:5:\"quote\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:4:\"form\";i:7;s:10:\"split_5050\";i:8;s:10:\"text_block\";i:9;s:5:\"cards\";}'),(359084,43395,'_blocks','field_6176696113096'),(359085,43395,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359086,43395,'_hero_actions_0_button','field_61757281285eb'),(359087,43395,'blocks_5_acfe_flexible_toggle',''),(359088,43395,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(359089,43395,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(359090,43395,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(359091,43395,'blocks_5_options_theme','#ffffff'),(359092,43395,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(359093,43395,'blocks_5_options_reverse','1'),(359094,43395,'_blocks_5_options_reverse','field_61768049bb8ac'),(359095,43395,'blocks_5_options',''),(359096,43395,'_blocks_5_options','field_617682517c334'),(359097,43395,'blocks_5_split_5050_image','38960'),(359098,43395,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(359099,43395,'blocks_5_split_5050_video',''),(359100,43395,'_blocks_5_split_5050_video','field_6239f3160848a'),(359101,43395,'blocks_5_split_5050_content_title',''),(359102,43395,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(359103,43395,'blocks_5_split_5050_content_heading',''),(359104,43395,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(359105,43395,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(359106,43395,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(359107,43395,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:45:\"https://biomechanicseducation.com/contact-us/\";s:6:\"target\";s:0:\"\";}'),(359108,43395,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(359109,43395,'blocks_5_split_5050_content_actions','1'),(359110,43395,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(359111,43395,'blocks_5_split_5050_content',''),(359112,43395,'_blocks_5_split_5050_content','field_61767afceb8ba'),(359113,43395,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359114,43395,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(359115,43395,'blocks_1_acfe_flexible_toggle',''),(359116,43395,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(359117,43395,'blocks_1_acfe_flexible_layout_title','Template'),(359118,43395,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(359119,43395,'blocks_1_template','39207'),(359120,43395,'_blocks_1_template','field_617bdd570fe01'),(359121,43395,'blocks_3_acfe_flexible_toggle',''),(359122,43395,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(359123,43395,'blocks_3_acfe_flexible_layout_title','Video'),(359124,43395,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(359125,43395,'blocks_3_size','large'),(359126,43395,'_blocks_3_size','field_6487038f297c1'),(359127,43395,'blocks_3_row_content_title',''),(359128,43395,'_blocks_3_row_content_title','field_64870132a865d'),(359129,43395,'blocks_3_row_content_heading','Hear from our Learners'),(359130,43395,'_blocks_3_row_content_heading','field_64870142a865e'),(359131,43395,'blocks_3_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(359132,43395,'_blocks_3_row_content_text','field_64870148a865f'),(359133,43395,'blocks_3_row_content',''),(359134,43395,'_blocks_3_row_content','field_6487008ba865c'),(359135,43395,'blocks_3_video_src','https://www.youtube.com/watch?v=CAwcWfVzc1c'),(359136,43395,'_blocks_3_video_src','field_6193c4a98ec07'),(359137,43395,'blocks_3_video_thumbnail',''),(359138,43395,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(359139,43395,'blocks_4_acfe_flexible_toggle',''),(359140,43395,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(359141,43395,'blocks_4_acfe_flexible_layout_title','Text Block'),(359142,43395,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(359143,43395,'blocks_4_options_theme','#ffffff'),(359144,43395,'_blocks_4_options_theme','field_6176830e2ad17'),(359145,43395,'blocks_4_options',''),(359146,43395,'_blocks_4_options','field_6176830e2ad16'),(359147,43395,'blocks_4_text_block_heading',''),(359148,43395,'_blocks_4_text_block_heading','field_617669d413097'),(359149,43395,'blocks_4_text_block_content','<h2 style=\"text-align: center;\">Biomechanics Education &amp; Future Fit</h2>'),(359150,43395,'_blocks_4_text_block_content','field_617669ec13098'),(359151,43395,'blocks_6_acfe_flexible_toggle',''),(359152,43395,'_blocks_6_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(359153,43395,'blocks_6_acfe_flexible_layout_title','Form [anchor]'),(359154,43395,'_blocks_6_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(359155,43395,'blocks_6_row_content_format','standard'),(359156,43395,'_blocks_6_row_content_format','field_6481ead962881'),(359157,43395,'blocks_6_row_content_title',''),(359158,43395,'_blocks_6_row_content_title','field_61a0f5f5b3db1'),(359159,43395,'blocks_6_row_content_heading','Elevate your workforce with Biomechanics Education'),(359160,43395,'_blocks_6_row_content_heading','field_61a0f5f5b3db2'),(359161,43395,'blocks_6_row_content_text','<span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\">If </span><span class=\"NormalTextRun SCXW54314338 BCX8\">you’d</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> like to find out more about how Biomechanics Education can support your organisation, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">enquire today</span><span class=\"NormalTextRun SCXW54314338 BCX8\">. </span></span>'),(359162,43395,'_blocks_6_row_content_text','field_61a0f5f5b3db3'),(359163,43395,'blocks_6_row_content_actions',''),(359164,43395,'_blocks_6_row_content_actions','field_61a0f5f5b3db4'),(359165,43395,'blocks_6_row_content',''),(359166,43395,'_blocks_6_row_content','field_61a0f5f5b3db0'),(359167,43395,'blocks_6_row_form','40394'),(359168,43395,'_blocks_6_row_form','field_61a4ff2c0b08e'),(359169,43395,'blocks_6_row_form_button_label',''),(359170,43395,'_blocks_6_row_form_button_label','field_61e12cf6fe412'),(359171,43395,'blocks_7_acfe_flexible_toggle',''),(359172,43395,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(359173,43395,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(359174,43395,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(359175,43395,'blocks_7_options_theme','#ffffff'),(359176,43395,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(359177,43395,'blocks_7_options_reverse','1'),(359178,43395,'_blocks_7_options_reverse','field_61768049bb8ac'),(359179,43395,'blocks_7_options',''),(359180,43395,'_blocks_7_options','field_617682517c334'),(359181,43395,'blocks_7_split_5050_image','41484'),(359182,43395,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(359183,43395,'blocks_7_split_5050_video',''),(359184,43395,'_blocks_7_split_5050_video','field_6239f3160848a'),(359185,43395,'blocks_7_split_5050_content_title','About Rachel'),(359186,43395,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(359187,43395,'blocks_7_split_5050_content_heading',''),(359188,43395,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(359189,43395,'blocks_7_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel\'s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(359190,43395,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(359191,43395,'blocks_7_split_5050_content_actions',''),(359192,43395,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(359193,43395,'blocks_7_split_5050_content',''),(359194,43395,'_blocks_7_split_5050_content','field_61767afceb8ba'),(359195,43395,'blocks_8_acfe_flexible_toggle',''),(359196,43395,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(359197,43395,'blocks_8_acfe_flexible_layout_title','Text Block'),(359198,43395,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(359199,43395,'blocks_8_options_theme','#ffffff'),(359200,43395,'_blocks_8_options_theme','field_6176830e2ad17'),(359201,43395,'blocks_8_options',''),(359202,43395,'_blocks_8_options','field_6176830e2ad16'),(359203,43395,'blocks_8_text_block_heading',''),(359204,43395,'_blocks_8_text_block_heading','field_617669d413097'),(359205,43395,'blocks_8_text_block_content','<h2 style=\"text-align: center;\">Our Courses</h2>'),(359206,43395,'_blocks_8_text_block_content','field_617669ec13098'),(359207,43395,'blocks_9_acfe_flexible_toggle',''),(359208,43395,'_blocks_9_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(359209,43395,'blocks_9_acfe_flexible_layout_title','Cards'),(359210,43395,'_blocks_9_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(359211,43395,'blocks_9_options_theme','#ffffff'),(359212,43395,'_blocks_9_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(359213,43395,'blocks_9_options_format','carousel'),(359214,43395,'_blocks_9_options_format','field_617a7b15245b5'),(359215,43395,'blocks_9_options_style','default'),(359216,43395,'_blocks_9_options_style','field_6278ffb63484a'),(359217,43395,'blocks_9_options_cards_current_listing','0'),(359218,43395,'_blocks_9_options_cards_current_listing','field_6193d7effb7a4'),(359219,43395,'blocks_9_options_cards_content','custom'),(359220,43395,'_blocks_9_options_cards_content','field_617aba6122688'),(359221,43395,'blocks_9_options',''),(359222,43395,'_blocks_9_options','field_617a7b15245b3'),(359223,43395,'blocks_9_cards_custom_0_image','41540'),(359224,43395,'_blocks_9_cards_custom_0_image','field_6194cc284d387'),(359225,43395,'blocks_9_cards_custom_0_title','Biomechanics Coach Course'),(359226,43395,'_blocks_9_cards_custom_0_title','field_6194cc454d388'),(359227,43395,'blocks_9_cards_custom_0_text','Hone your existing skills, training as a Biomechanics Coach so you can assess your client’s body and understand where there is risk and where you can help them improve.'),(359228,43395,'_blocks_9_cards_custom_0_text','field_6194cc4a4d389'),(359229,43395,'blocks_9_cards_custom_0_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359230,43395,'_blocks_9_cards_custom_0_link','field_6194cc534d38a'),(359231,43395,'blocks_9_cards_custom_1_image','38323'),(359232,43395,'_blocks_9_cards_custom_1_image','field_6194cc284d387'),(359233,43395,'blocks_9_cards_custom_1_title','Personal Training Courses'),(359234,43395,'_blocks_9_cards_custom_1_title','field_6194cc454d388'),(359235,43395,'blocks_9_cards_custom_1_text','Choose from our Level 2, 3 or 4 Personal Training Course, written and taught by industry-leading experts through a combination of online learning and in-person workshops. '),(359236,43395,'_blocks_9_cards_custom_1_text','field_6194cc4a4d389'),(359237,43395,'blocks_9_cards_custom_1_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359238,43395,'_blocks_9_cards_custom_1_link','field_6194cc534d38a'),(359239,43395,'blocks_9_cards_custom_2_image','41526'),(359240,43395,'_blocks_9_cards_custom_2_image','field_6194cc284d387'),(359241,43395,'blocks_9_cards_custom_2_title','Pilates Instructor Courses'),(359242,43395,'_blocks_9_cards_custom_2_title','field_6194cc454d388'),(359243,43395,'blocks_9_cards_custom_2_text','We enable devoted health enthusiasts to become highly skilled, sought-after Pilates Instructors, by delivering world-class training in our Level 3 or 4 Pilates Courses.'),(359244,43395,'_blocks_9_cards_custom_2_text','field_6194cc4a4d389'),(359245,43395,'blocks_9_cards_custom_2_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359246,43395,'_blocks_9_cards_custom_2_link','field_6194cc534d38a'),(359247,43395,'blocks_9_cards_custom','3'),(359248,43395,'_blocks_9_cards_custom','field_6194cbf84d386'),(359249,43395,'_thumbnail_id',''),(359250,43395,'__thumbnail_id','field_617570855ddaf'),(359251,43389,'_thumbnail_id','36390'),(359479,43397,'hide_hero','0'),(359480,43397,'_hide_hero','field_66a2380fcda39'),(359481,43397,'hero_title','Ready to ‘Elevate’ your workforce with Biomechanics Education?'),(359482,43397,'_hero_title','field_617571fe285e8'),(359483,43397,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support your organisation every step of the way, from foundational knowledge to advanced, evidence-based training.'),(359484,43397,'_hero_text','field_6175723c285e9'),(359485,43397,'hero_actions','1'),(359486,43397,'_hero_actions','field_61757270285ea'),(359487,43397,'hero_style','default'),(359488,43397,'_hero_style','field_62051d9dc5324'),(359489,43397,'hero_image_pos_x','right'),(359490,43397,'_hero_image_pos_x','field_62ec3d05390bb'),(359491,43397,'hero_image_pos_y','top'),(359492,43397,'_hero_image_pos_y','field_62ec3d05390bc'),(359493,43397,'hero_image_pos',''),(359494,43397,'_hero_image_pos','field_62ec3d05390ba'),(359495,43397,'fft_hide_from_listings','0'),(359496,43397,'_fft_hide_from_listings','field_61f1320446ab2'),(359497,43397,'fft_page_format','default'),(359498,43397,'_fft_page_format','field_61ae213f1f218'),(359499,43397,'fft_hide_nav','0'),(359500,43397,'_fft_hide_nav','field_635bd5e43527c'),(359501,43397,'fft_hide_header_call_to_action','0'),(359502,43397,'_fft_hide_header_call_to_action','field_635bd6723527d'),(359503,43397,'fft_page_sitemap','0'),(359504,43397,'_fft_page_sitemap','field_61af9b34e8181'),(359505,43397,'blocks_0_acfe_flexible_toggle',''),(359506,43397,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(359507,43397,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(359508,43397,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(359509,43397,'blocks_0_options_theme','#ffffff'),(359510,43397,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(359511,43397,'blocks_0_options_reverse','1'),(359512,43397,'_blocks_0_options_reverse','field_61768049bb8ac'),(359513,43397,'blocks_0_options',''),(359514,43397,'_blocks_0_options','field_617682517c334'),(359515,43397,'blocks_0_split_5050_image','41332'),(359516,43397,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(359517,43397,'blocks_0_split_5050_video',''),(359518,43397,'_blocks_0_split_5050_video','field_6239f3160848a'),(359519,43397,'blocks_0_split_5050_content_title','Biomechanics Education and Future Fit'),(359520,43397,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(359521,43397,'blocks_0_split_5050_content_heading','Working in Partnership'),(359522,43397,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(359523,43397,'blocks_0_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(359524,43397,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(359525,43397,'blocks_0_split_5050_content_actions','1'),(359526,43397,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(359527,43397,'blocks_0_split_5050_content',''),(359528,43397,'_blocks_0_split_5050_content','field_61767afceb8ba'),(359529,43397,'blocks_2_acfe_flexible_toggle',''),(359530,43397,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(359531,43397,'blocks_2_acfe_flexible_layout_title','Quote'),(359532,43397,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(359533,43397,'blocks_2_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(359534,43397,'_blocks_2_quote_content','field_6177cdacdd67a'),(359535,43397,'blocks_2_quote_author',''),(359536,43397,'_blocks_2_quote_author','field_6177cdc6dd67b'),(359537,43397,'blocks','a:10:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:5:\"quote\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:4:\"form\";i:7;s:10:\"split_5050\";i:8;s:10:\"text_block\";i:9;s:5:\"cards\";}'),(359538,43397,'_blocks','field_6176696113096'),(359539,43397,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359540,43397,'_hero_actions_0_button','field_61757281285eb'),(359541,43397,'blocks_5_acfe_flexible_toggle',''),(359542,43397,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(359543,43397,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(359544,43397,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(359545,43397,'blocks_5_options_theme','#ffffff'),(359546,43397,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(359547,43397,'blocks_5_options_reverse','1'),(359548,43397,'_blocks_5_options_reverse','field_61768049bb8ac'),(359549,43397,'blocks_5_options',''),(359550,43397,'_blocks_5_options','field_617682517c334'),(359551,43397,'blocks_5_split_5050_image','38960'),(359552,43397,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(359553,43397,'blocks_5_split_5050_video',''),(359554,43397,'_blocks_5_split_5050_video','field_6239f3160848a'),(359555,43397,'blocks_5_split_5050_content_title',''),(359556,43397,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(359557,43397,'blocks_5_split_5050_content_heading',''),(359558,43397,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(359559,43397,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(359560,43397,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(359561,43397,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359562,43397,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(359563,43397,'blocks_5_split_5050_content_actions','1'),(359564,43397,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(359565,43397,'blocks_5_split_5050_content',''),(359566,43397,'_blocks_5_split_5050_content','field_61767afceb8ba'),(359567,43397,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359568,43397,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(359569,43397,'blocks_1_acfe_flexible_toggle',''),(359570,43397,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(359571,43397,'blocks_1_acfe_flexible_layout_title','Template'),(359572,43397,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(359573,43397,'blocks_1_template','39207'),(359574,43397,'_blocks_1_template','field_617bdd570fe01'),(359575,43397,'blocks_3_acfe_flexible_toggle',''),(359576,43397,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(359577,43397,'blocks_3_acfe_flexible_layout_title','Video'),(359578,43397,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(359579,43397,'blocks_3_size','large'),(359580,43397,'_blocks_3_size','field_6487038f297c1'),(359581,43397,'blocks_3_row_content_title',''),(359582,43397,'_blocks_3_row_content_title','field_64870132a865d'),(359583,43397,'blocks_3_row_content_heading','Hear from our Learners'),(359584,43397,'_blocks_3_row_content_heading','field_64870142a865e'),(359585,43397,'blocks_3_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(359586,43397,'_blocks_3_row_content_text','field_64870148a865f'),(359587,43397,'blocks_3_row_content',''),(359588,43397,'_blocks_3_row_content','field_6487008ba865c'),(359589,43397,'blocks_3_video_src','https://www.youtube.com/watch?v=CAwcWfVzc1c'),(359590,43397,'_blocks_3_video_src','field_6193c4a98ec07'),(359591,43397,'blocks_3_video_thumbnail',''),(359592,43397,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(359593,43397,'blocks_4_acfe_flexible_toggle',''),(359594,43397,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(359595,43397,'blocks_4_acfe_flexible_layout_title','Text Block'),(359596,43397,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(359597,43397,'blocks_4_options_theme','#ffffff'),(359598,43397,'_blocks_4_options_theme','field_6176830e2ad17'),(359599,43397,'blocks_4_options',''),(359600,43397,'_blocks_4_options','field_6176830e2ad16'),(359601,43397,'blocks_4_text_block_heading',''),(359602,43397,'_blocks_4_text_block_heading','field_617669d413097'),(359603,43397,'blocks_4_text_block_content','<h2 style=\"text-align: center;\">Biomechanics Education &amp; Future Fit</h2>'),(359604,43397,'_blocks_4_text_block_content','field_617669ec13098'),(359605,43397,'blocks_6_acfe_flexible_toggle',''),(359606,43397,'_blocks_6_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(359607,43397,'blocks_6_acfe_flexible_layout_title','Form [anchor]'),(359608,43397,'_blocks_6_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(359609,43397,'blocks_6_row_content_format','standard'),(359610,43397,'_blocks_6_row_content_format','field_6481ead962881'),(359611,43397,'blocks_6_row_content_title',''),(359612,43397,'_blocks_6_row_content_title','field_61a0f5f5b3db1'),(359613,43397,'blocks_6_row_content_heading','Elevate your workforce with Biomechanics Education'),(359614,43397,'_blocks_6_row_content_heading','field_61a0f5f5b3db2'),(359615,43397,'blocks_6_row_content_text','<span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\">If </span><span class=\"NormalTextRun SCXW54314338 BCX8\">you’d</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> like to find out more about how Biomechanics Education can support your organisation, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">enquire today</span><span class=\"NormalTextRun SCXW54314338 BCX8\">. </span></span>'),(359616,43397,'_blocks_6_row_content_text','field_61a0f5f5b3db3'),(359617,43397,'blocks_6_row_content_actions',''),(359618,43397,'_blocks_6_row_content_actions','field_61a0f5f5b3db4'),(359619,43397,'blocks_6_row_content',''),(359620,43397,'_blocks_6_row_content','field_61a0f5f5b3db0'),(359621,43397,'blocks_6_row_form','40394'),(359622,43397,'_blocks_6_row_form','field_61a4ff2c0b08e'),(359623,43397,'blocks_6_row_form_button_label',''),(359624,43397,'_blocks_6_row_form_button_label','field_61e12cf6fe412'),(359625,43397,'blocks_7_acfe_flexible_toggle',''),(359626,43397,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(359627,43397,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(359628,43397,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(359629,43397,'blocks_7_options_theme','#ffffff'),(359630,43397,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(359631,43397,'blocks_7_options_reverse','1'),(359632,43397,'_blocks_7_options_reverse','field_61768049bb8ac'),(359633,43397,'blocks_7_options',''),(359634,43397,'_blocks_7_options','field_617682517c334'),(359635,43397,'blocks_7_split_5050_image','41484'),(359636,43397,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(359637,43397,'blocks_7_split_5050_video',''),(359638,43397,'_blocks_7_split_5050_video','field_6239f3160848a'),(359639,43397,'blocks_7_split_5050_content_title','About Rachel'),(359640,43397,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(359641,43397,'blocks_7_split_5050_content_heading',''),(359642,43397,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(359643,43397,'blocks_7_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel\'s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(359644,43397,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(359645,43397,'blocks_7_split_5050_content_actions',''),(359646,43397,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(359647,43397,'blocks_7_split_5050_content',''),(359648,43397,'_blocks_7_split_5050_content','field_61767afceb8ba'),(359649,43397,'blocks_8_acfe_flexible_toggle',''),(359650,43397,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(359651,43397,'blocks_8_acfe_flexible_layout_title','Text Block'),(359652,43397,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(359653,43397,'blocks_8_options_theme','#ffffff'),(359654,43397,'_blocks_8_options_theme','field_6176830e2ad17'),(359655,43397,'blocks_8_options',''),(359656,43397,'_blocks_8_options','field_6176830e2ad16'),(359657,43397,'blocks_8_text_block_heading',''),(359658,43397,'_blocks_8_text_block_heading','field_617669d413097'),(359659,43397,'blocks_8_text_block_content','<h2 style=\"text-align: center;\">Our Courses</h2>'),(359660,43397,'_blocks_8_text_block_content','field_617669ec13098'),(359661,43397,'blocks_9_acfe_flexible_toggle',''),(359662,43397,'_blocks_9_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(359663,43397,'blocks_9_acfe_flexible_layout_title','Cards'),(359664,43397,'_blocks_9_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(359665,43397,'blocks_9_options_theme','#ffffff'),(359666,43397,'_blocks_9_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(359667,43397,'blocks_9_options_format','carousel'),(359668,43397,'_blocks_9_options_format','field_617a7b15245b5'),(359669,43397,'blocks_9_options_style','default'),(359670,43397,'_blocks_9_options_style','field_6278ffb63484a'),(359671,43397,'blocks_9_options_cards_current_listing','0'),(359672,43397,'_blocks_9_options_cards_current_listing','field_6193d7effb7a4'),(359673,43397,'blocks_9_options_cards_content','custom'),(359674,43397,'_blocks_9_options_cards_content','field_617aba6122688'),(359675,43397,'blocks_9_options',''),(359676,43397,'_blocks_9_options','field_617a7b15245b3'),(359677,43397,'blocks_9_cards_custom_0_image','41540'),(359678,43397,'_blocks_9_cards_custom_0_image','field_6194cc284d387'),(359679,43397,'blocks_9_cards_custom_0_title','Biomechanics Coach Course'),(359680,43397,'_blocks_9_cards_custom_0_title','field_6194cc454d388'),(359681,43397,'blocks_9_cards_custom_0_text','Hone your existing skills, training as a Biomechanics Coach so you can assess your client’s body and understand where there is risk and where you can help them improve.'),(359682,43397,'_blocks_9_cards_custom_0_text','field_6194cc4a4d389'),(359683,43397,'blocks_9_cards_custom_0_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359684,43397,'_blocks_9_cards_custom_0_link','field_6194cc534d38a'),(359685,43397,'blocks_9_cards_custom_1_image','38323'),(359686,43397,'_blocks_9_cards_custom_1_image','field_6194cc284d387'),(359687,43397,'blocks_9_cards_custom_1_title','Personal Training Courses'),(359688,43397,'_blocks_9_cards_custom_1_title','field_6194cc454d388'),(359689,43397,'blocks_9_cards_custom_1_text','Choose from our Level 2, 3 or 4 Personal Training Course, written and taught by industry-leading experts through a combination of online learning and in-person workshops. '),(359690,43397,'_blocks_9_cards_custom_1_text','field_6194cc4a4d389'),(359691,43397,'blocks_9_cards_custom_1_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359692,43397,'_blocks_9_cards_custom_1_link','field_6194cc534d38a'),(359693,43397,'blocks_9_cards_custom_2_image','41526'),(359694,43397,'_blocks_9_cards_custom_2_image','field_6194cc284d387'),(359695,43397,'blocks_9_cards_custom_2_title','Pilates Instructor Courses'),(359696,43397,'_blocks_9_cards_custom_2_title','field_6194cc454d388'),(359697,43397,'blocks_9_cards_custom_2_text','We enable devoted health enthusiasts to become highly skilled, sought-after Pilates Instructors, by delivering world-class training in our Level 3 or 4 Pilates Courses.'),(359698,43397,'_blocks_9_cards_custom_2_text','field_6194cc4a4d389'),(359699,43397,'blocks_9_cards_custom_2_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359700,43397,'_blocks_9_cards_custom_2_link','field_6194cc534d38a'),(359701,43397,'blocks_9_cards_custom','3'),(359702,43397,'_blocks_9_cards_custom','field_6194cbf84d386'),(359703,43397,'_thumbnail_id','36390'),(359704,43397,'__thumbnail_id','field_617570855ddaf'),(359789,43398,'hide_hero','0'),(359790,43398,'_hide_hero','field_66a2380fcda39'),(359791,43398,'hero_title','Ready to ‘Elevate’ your workforce with Biomechanics Education?'),(359792,43398,'_hero_title','field_617571fe285e8'),(359793,43398,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support your organisation every step of the way, from foundational knowledge to advanced, evidence-based training.'),(359794,43398,'_hero_text','field_6175723c285e9'),(359795,43398,'hero_actions','1'),(359796,43398,'_hero_actions','field_61757270285ea'),(359797,43398,'hero_style','default'),(359798,43398,'_hero_style','field_62051d9dc5324'),(359799,43398,'hero_image_pos_x','right'),(359800,43398,'_hero_image_pos_x','field_62ec3d05390bb'),(359801,43398,'hero_image_pos_y','top'),(359802,43398,'_hero_image_pos_y','field_62ec3d05390bc'),(359803,43398,'hero_image_pos',''),(359804,43398,'_hero_image_pos','field_62ec3d05390ba'),(359805,43398,'fft_hide_from_listings','0'),(359806,43398,'_fft_hide_from_listings','field_61f1320446ab2'),(359807,43398,'fft_page_format','default'),(359808,43398,'_fft_page_format','field_61ae213f1f218'),(359809,43398,'fft_hide_nav','0'),(359810,43398,'_fft_hide_nav','field_635bd5e43527c'),(359811,43398,'fft_hide_header_call_to_action','0'),(359812,43398,'_fft_hide_header_call_to_action','field_635bd6723527d'),(359813,43398,'fft_page_sitemap','0'),(359814,43398,'_fft_page_sitemap','field_61af9b34e8181'),(359815,43398,'blocks_0_acfe_flexible_toggle',''),(359816,43398,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(359817,43398,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(359818,43398,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(359819,43398,'blocks_0_options_theme','#ffffff'),(359820,43398,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(359821,43398,'blocks_0_options_reverse','1'),(359822,43398,'_blocks_0_options_reverse','field_61768049bb8ac'),(359823,43398,'blocks_0_options',''),(359824,43398,'_blocks_0_options','field_617682517c334'),(359825,43398,'blocks_0_split_5050_image','41332'),(359826,43398,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(359827,43398,'blocks_0_split_5050_video',''),(359828,43398,'_blocks_0_split_5050_video','field_6239f3160848a'),(359829,43398,'blocks_0_split_5050_content_title','Biomechanics Education and Future Fit'),(359830,43398,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(359831,43398,'blocks_0_split_5050_content_heading','Working in Partnership'),(359832,43398,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(359833,43398,'blocks_0_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(359834,43398,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(359835,43398,'blocks_0_split_5050_content_actions','1'),(359836,43398,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(359837,43398,'blocks_0_split_5050_content',''),(359838,43398,'_blocks_0_split_5050_content','field_61767afceb8ba'),(359839,43398,'blocks_2_acfe_flexible_toggle',''),(359840,43398,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(359841,43398,'blocks_2_acfe_flexible_layout_title','Quote'),(359842,43398,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(359843,43398,'blocks_2_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(359844,43398,'_blocks_2_quote_content','field_6177cdacdd67a'),(359845,43398,'blocks_2_quote_author',''),(359846,43398,'_blocks_2_quote_author','field_6177cdc6dd67b'),(359847,43398,'blocks','a:11:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:5:\"quote\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:4:\"form\";i:7;s:10:\"split_5050\";i:8;s:10:\"text_block\";i:9;s:5:\"cards\";i:10;s:5:\"cards\";}'),(359848,43398,'_blocks','field_6176696113096'),(359849,43398,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359850,43398,'_hero_actions_0_button','field_61757281285eb'),(359851,43398,'blocks_5_acfe_flexible_toggle',''),(359852,43398,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(359853,43398,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(359854,43398,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(359855,43398,'blocks_5_options_theme','#ffffff'),(359856,43398,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(359857,43398,'blocks_5_options_reverse','1'),(359858,43398,'_blocks_5_options_reverse','field_61768049bb8ac'),(359859,43398,'blocks_5_options',''),(359860,43398,'_blocks_5_options','field_617682517c334'),(359861,43398,'blocks_5_split_5050_image','38960'),(359862,43398,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(359863,43398,'blocks_5_split_5050_video',''),(359864,43398,'_blocks_5_split_5050_video','field_6239f3160848a'),(359865,43398,'blocks_5_split_5050_content_title',''),(359866,43398,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(359867,43398,'blocks_5_split_5050_content_heading',''),(359868,43398,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(359869,43398,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(359870,43398,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(359871,43398,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359872,43398,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(359873,43398,'blocks_5_split_5050_content_actions','1'),(359874,43398,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(359875,43398,'blocks_5_split_5050_content',''),(359876,43398,'_blocks_5_split_5050_content','field_61767afceb8ba'),(359877,43398,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359878,43398,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(359879,43398,'blocks_1_acfe_flexible_toggle',''),(359880,43398,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(359881,43398,'blocks_1_acfe_flexible_layout_title','Template'),(359882,43398,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(359883,43398,'blocks_1_template','39207'),(359884,43398,'_blocks_1_template','field_617bdd570fe01'),(359885,43398,'blocks_3_acfe_flexible_toggle',''),(359886,43398,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(359887,43398,'blocks_3_acfe_flexible_layout_title','Video'),(359888,43398,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(359889,43398,'blocks_3_size','large'),(359890,43398,'_blocks_3_size','field_6487038f297c1'),(359891,43398,'blocks_3_row_content_title',''),(359892,43398,'_blocks_3_row_content_title','field_64870132a865d'),(359893,43398,'blocks_3_row_content_heading','Hear from our Learners'),(359894,43398,'_blocks_3_row_content_heading','field_64870142a865e'),(359895,43398,'blocks_3_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(359896,43398,'_blocks_3_row_content_text','field_64870148a865f'),(359897,43398,'blocks_3_row_content',''),(359898,43398,'_blocks_3_row_content','field_6487008ba865c'),(359899,43398,'blocks_3_video_src','https://www.youtube.com/watch?v=CAwcWfVzc1c'),(359900,43398,'_blocks_3_video_src','field_6193c4a98ec07'),(359901,43398,'blocks_3_video_thumbnail',''),(359902,43398,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(359903,43398,'blocks_4_acfe_flexible_toggle',''),(359904,43398,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(359905,43398,'blocks_4_acfe_flexible_layout_title','Text Block'),(359906,43398,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(359907,43398,'blocks_4_options_theme','#ffffff'),(359908,43398,'_blocks_4_options_theme','field_6176830e2ad17'),(359909,43398,'blocks_4_options',''),(359910,43398,'_blocks_4_options','field_6176830e2ad16'),(359911,43398,'blocks_4_text_block_heading',''),(359912,43398,'_blocks_4_text_block_heading','field_617669d413097'),(359913,43398,'blocks_4_text_block_content','<h2 style=\"text-align: center;\">Biomechanics Education &amp; Future Fit</h2>'),(359914,43398,'_blocks_4_text_block_content','field_617669ec13098'),(359915,43398,'blocks_6_acfe_flexible_toggle',''),(359916,43398,'_blocks_6_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(359917,43398,'blocks_6_acfe_flexible_layout_title','Form [anchor]'),(359918,43398,'_blocks_6_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(359919,43398,'blocks_6_row_content_format','standard'),(359920,43398,'_blocks_6_row_content_format','field_6481ead962881'),(359921,43398,'blocks_6_row_content_title',''),(359922,43398,'_blocks_6_row_content_title','field_61a0f5f5b3db1'),(359923,43398,'blocks_6_row_content_heading','Elevate your workforce with Biomechanics Education'),(359924,43398,'_blocks_6_row_content_heading','field_61a0f5f5b3db2'),(359925,43398,'blocks_6_row_content_text','<span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\">If </span><span class=\"NormalTextRun SCXW54314338 BCX8\">you’d</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> like to find out more about how Biomechanics Education can support your organisation, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">enquire today</span><span class=\"NormalTextRun SCXW54314338 BCX8\">. </span></span>'),(359926,43398,'_blocks_6_row_content_text','field_61a0f5f5b3db3'),(359927,43398,'blocks_6_row_content_actions',''),(359928,43398,'_blocks_6_row_content_actions','field_61a0f5f5b3db4'),(359929,43398,'blocks_6_row_content',''),(359930,43398,'_blocks_6_row_content','field_61a0f5f5b3db0'),(359931,43398,'blocks_6_row_form','40394'),(359932,43398,'_blocks_6_row_form','field_61a4ff2c0b08e'),(359933,43398,'blocks_6_row_form_button_label',''),(359934,43398,'_blocks_6_row_form_button_label','field_61e12cf6fe412'),(359935,43398,'blocks_7_acfe_flexible_toggle',''),(359936,43398,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(359937,43398,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(359938,43398,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(359939,43398,'blocks_7_options_theme','#ffffff'),(359940,43398,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(359941,43398,'blocks_7_options_reverse','1'),(359942,43398,'_blocks_7_options_reverse','field_61768049bb8ac'),(359943,43398,'blocks_7_options',''),(359944,43398,'_blocks_7_options','field_617682517c334'),(359945,43398,'blocks_7_split_5050_image','41484'),(359946,43398,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(359947,43398,'blocks_7_split_5050_video',''),(359948,43398,'_blocks_7_split_5050_video','field_6239f3160848a'),(359949,43398,'blocks_7_split_5050_content_title','About Rachel'),(359950,43398,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(359951,43398,'blocks_7_split_5050_content_heading',''),(359952,43398,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(359953,43398,'blocks_7_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel\'s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(359954,43398,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(359955,43398,'blocks_7_split_5050_content_actions',''),(359956,43398,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(359957,43398,'blocks_7_split_5050_content',''),(359958,43398,'_blocks_7_split_5050_content','field_61767afceb8ba'),(359959,43398,'blocks_8_acfe_flexible_toggle',''),(359960,43398,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(359961,43398,'blocks_8_acfe_flexible_layout_title','Text Block'),(359962,43398,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(359963,43398,'blocks_8_options_theme','#ffffff'),(359964,43398,'_blocks_8_options_theme','field_6176830e2ad17'),(359965,43398,'blocks_8_options',''),(359966,43398,'_blocks_8_options','field_6176830e2ad16'),(359967,43398,'blocks_8_text_block_heading',''),(359968,43398,'_blocks_8_text_block_heading','field_617669d413097'),(359969,43398,'blocks_8_text_block_content','<h2 style=\"text-align: center;\">Our Courses</h2>'),(359970,43398,'_blocks_8_text_block_content','field_617669ec13098'),(359971,43398,'blocks_9_acfe_flexible_toggle',''),(359972,43398,'_blocks_9_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(359973,43398,'blocks_9_acfe_flexible_layout_title','Cards'),(359974,43398,'_blocks_9_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(359975,43398,'blocks_9_options_theme','#ffffff'),(359976,43398,'_blocks_9_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(359977,43398,'blocks_9_options_format','carousel'),(359978,43398,'_blocks_9_options_format','field_617a7b15245b5'),(359979,43398,'blocks_9_options_style','default'),(359980,43398,'_blocks_9_options_style','field_6278ffb63484a'),(359981,43398,'blocks_9_options_cards_current_listing','0'),(359982,43398,'_blocks_9_options_cards_current_listing','field_6193d7effb7a4'),(359983,43398,'blocks_9_options_cards_content','custom'),(359984,43398,'_blocks_9_options_cards_content','field_617aba6122688'),(359985,43398,'blocks_9_options',''),(359986,43398,'_blocks_9_options','field_617a7b15245b3'),(359987,43398,'blocks_9_cards_custom_0_image','38321'),(359988,43398,'_blocks_9_cards_custom_0_image','field_6194cc284d387'),(359989,43398,'blocks_9_cards_custom_0_title','CPD Courses'),(359990,43398,'_blocks_9_cards_custom_0_title','field_6194cc454d388'),(359991,43398,'blocks_9_cards_custom_0_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(359992,43398,'_blocks_9_cards_custom_0_text','field_6194cc4a4d389'),(359993,43398,'blocks_9_cards_custom_0_link','a:3:{s:5:\"title\";s:17:\"Find a CPD Course\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(359994,43398,'_blocks_9_cards_custom_0_link','field_6194cc534d38a'),(359995,43398,'blocks_9_cards_custom_1_image','39047'),(359996,43398,'_blocks_9_cards_custom_1_image','field_6194cc284d387'),(359997,43398,'blocks_9_cards_custom_1_title','Diploma in Biomechanics Coaching'),(359998,43398,'_blocks_9_cards_custom_1_title','field_6194cc454d388'),(359999,43398,'blocks_9_cards_custom_1_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(360000,43398,'_blocks_9_cards_custom_1_text','field_6194cc4a4d389'),(360001,43398,'blocks_9_cards_custom_1_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360002,43398,'_blocks_9_cards_custom_1_link','field_6194cc534d38a'),(360003,43398,'blocks_9_cards_custom_2_image','39437'),(360004,43398,'_blocks_9_cards_custom_2_image','field_6194cc284d387'),(360005,43398,'blocks_9_cards_custom_2_title','Lvl 4 Personal Trainer with Biomechanics Diploma'),(360006,43398,'_blocks_9_cards_custom_2_title','field_6194cc454d388'),(360007,43398,'blocks_9_cards_custom_2_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(360008,43398,'_blocks_9_cards_custom_2_text','field_6194cc4a4d389'),(360009,43398,'blocks_9_cards_custom_2_link','a:3:{s:5:\"title\";s:10:\"Learn More\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360010,43398,'_blocks_9_cards_custom_2_link','field_6194cc534d38a'),(360011,43398,'blocks_9_cards_custom','3'),(360012,43398,'_blocks_9_cards_custom','field_6194cbf84d386'),(360013,43398,'_thumbnail_id','36390'),(360014,43398,'__thumbnail_id','field_617570855ddaf'),(360015,43398,'blocks_10_acfe_flexible_toggle','1'),(360016,43398,'_blocks_10_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(360017,43398,'blocks_10_acfe_flexible_layout_title','Cards'),(360018,43398,'_blocks_10_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(360019,43398,'blocks_10_options_theme','#ffffff'),(360020,43398,'_blocks_10_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(360021,43398,'blocks_10_options_format','carousel'),(360022,43398,'_blocks_10_options_format','field_617a7b15245b5'),(360023,43398,'blocks_10_options_style','default'),(360024,43398,'_blocks_10_options_style','field_6278ffb63484a'),(360025,43398,'blocks_10_options_cards_current_listing','0'),(360026,43398,'_blocks_10_options_cards_current_listing','field_6193d7effb7a4'),(360027,43398,'blocks_10_options_cards_content','custom'),(360028,43398,'_blocks_10_options_cards_content','field_617aba6122688'),(360029,43398,'blocks_10_options',''),(360030,43398,'_blocks_10_options','field_617a7b15245b3'),(360031,43398,'blocks_10_cards_custom_0_image','41540'),(360032,43398,'_blocks_10_cards_custom_0_image','field_6194cc284d387'),(360033,43398,'blocks_10_cards_custom_0_title','Biomechanics Coach Course'),(360034,43398,'_blocks_10_cards_custom_0_title','field_6194cc454d388'),(360035,43398,'blocks_10_cards_custom_0_text','Hone your existing skills, training as a Biomechanics Coach so you can assess your client’s body and understand where there is risk and where you can help them improve.'),(360036,43398,'_blocks_10_cards_custom_0_text','field_6194cc4a4d389'),(360037,43398,'blocks_10_cards_custom_0_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360038,43398,'_blocks_10_cards_custom_0_link','field_6194cc534d38a'),(360039,43398,'blocks_10_cards_custom_1_image','38323'),(360040,43398,'_blocks_10_cards_custom_1_image','field_6194cc284d387'),(360041,43398,'blocks_10_cards_custom_1_title','Personal Training Courses'),(360042,43398,'_blocks_10_cards_custom_1_title','field_6194cc454d388'),(360043,43398,'blocks_10_cards_custom_1_text','Choose from our Level 2, 3 or 4 Personal Training Course, written and taught by industry-leading experts through a combination of online learning and in-person workshops. '),(360044,43398,'_blocks_10_cards_custom_1_text','field_6194cc4a4d389'),(360045,43398,'blocks_10_cards_custom_1_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360046,43398,'_blocks_10_cards_custom_1_link','field_6194cc534d38a'),(360047,43398,'blocks_10_cards_custom_2_image','41526'),(360048,43398,'_blocks_10_cards_custom_2_image','field_6194cc284d387'),(360049,43398,'blocks_10_cards_custom_2_title','Pilates Instructor Courses'),(360050,43398,'_blocks_10_cards_custom_2_title','field_6194cc454d388'),(360051,43398,'blocks_10_cards_custom_2_text','We enable devoted health enthusiasts to become highly skilled, sought-after Pilates Instructors, by delivering world-class training in our Level 3 or 4 Pilates Courses.'),(360052,43398,'_blocks_10_cards_custom_2_text','field_6194cc4a4d389'),(360053,43398,'blocks_10_cards_custom_2_link','a:3:{s:5:\"title\";s:11:\"Get Started\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360054,43398,'_blocks_10_cards_custom_2_link','field_6194cc534d38a'),(360055,43398,'blocks_10_cards_custom','3'),(360056,43398,'_blocks_10_cards_custom','field_6194cbf84d386'),(360057,43399,'hide_hero','0'),(360058,43399,'_hide_hero','field_66a2380fcda39'),(360059,43399,'hero_title','Ready to ‘Elevate’ your workforce with Biomechanics Education?'),(360060,43399,'_hero_title','field_617571fe285e8'),(360061,43399,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support your organisation every step of the way, from foundational knowledge to advanced, evidence-based training.'),(360062,43399,'_hero_text','field_6175723c285e9'),(360063,43399,'hero_actions','1'),(360064,43399,'_hero_actions','field_61757270285ea'),(360065,43399,'hero_style','default'),(360066,43399,'_hero_style','field_62051d9dc5324'),(360067,43399,'hero_image_pos_x','right'),(360068,43399,'_hero_image_pos_x','field_62ec3d05390bb'),(360069,43399,'hero_image_pos_y','top'),(360070,43399,'_hero_image_pos_y','field_62ec3d05390bc'),(360071,43399,'hero_image_pos',''),(360072,43399,'_hero_image_pos','field_62ec3d05390ba'),(360073,43399,'fft_hide_from_listings','0'),(360074,43399,'_fft_hide_from_listings','field_61f1320446ab2'),(360075,43399,'fft_page_format','default'),(360076,43399,'_fft_page_format','field_61ae213f1f218'),(360077,43399,'fft_hide_nav','0'),(360078,43399,'_fft_hide_nav','field_635bd5e43527c'),(360079,43399,'fft_hide_header_call_to_action','0'),(360080,43399,'_fft_hide_header_call_to_action','field_635bd6723527d'),(360081,43399,'fft_page_sitemap','0'),(360082,43399,'_fft_page_sitemap','field_61af9b34e8181'),(360083,43399,'blocks_0_acfe_flexible_toggle',''),(360084,43399,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(360085,43399,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(360086,43399,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(360087,43399,'blocks_0_options_theme','#ffffff'),(360088,43399,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(360089,43399,'blocks_0_options_reverse','1'),(360090,43399,'_blocks_0_options_reverse','field_61768049bb8ac'),(360091,43399,'blocks_0_options',''),(360092,43399,'_blocks_0_options','field_617682517c334'),(360093,43399,'blocks_0_split_5050_image','41332'),(360094,43399,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(360095,43399,'blocks_0_split_5050_video',''),(360096,43399,'_blocks_0_split_5050_video','field_6239f3160848a'),(360097,43399,'blocks_0_split_5050_content_title','Biomechanics Education and Future Fit'),(360098,43399,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(360099,43399,'blocks_0_split_5050_content_heading','Working in Partnership'),(360100,43399,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(360101,43399,'blocks_0_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(360102,43399,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(360103,43399,'blocks_0_split_5050_content_actions','1'),(360104,43399,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(360105,43399,'blocks_0_split_5050_content',''),(360106,43399,'_blocks_0_split_5050_content','field_61767afceb8ba'),(360107,43399,'blocks_2_acfe_flexible_toggle',''),(360108,43399,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(360109,43399,'blocks_2_acfe_flexible_layout_title','Quote'),(360110,43399,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(360111,43399,'blocks_2_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(360112,43399,'_blocks_2_quote_content','field_6177cdacdd67a'),(360113,43399,'blocks_2_quote_author',''),(360114,43399,'_blocks_2_quote_author','field_6177cdc6dd67b'),(360115,43399,'blocks','a:10:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:5:\"quote\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:10:\"split_5050\";i:6;s:4:\"form\";i:7;s:10:\"split_5050\";i:8;s:10:\"text_block\";i:9;s:5:\"cards\";}'),(360116,43399,'_blocks','field_6176696113096'),(360117,43399,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360118,43399,'_hero_actions_0_button','field_61757281285eb'),(360119,43399,'blocks_5_acfe_flexible_toggle',''),(360120,43399,'_blocks_5_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(360121,43399,'blocks_5_acfe_flexible_layout_title','50/50 Split'),(360122,43399,'_blocks_5_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(360123,43399,'blocks_5_options_theme','#ffffff'),(360124,43399,'_blocks_5_options_theme','field_617682847c335_field_6176830e2ad17'),(360125,43399,'blocks_5_options_reverse','1'),(360126,43399,'_blocks_5_options_reverse','field_61768049bb8ac'),(360127,43399,'blocks_5_options',''),(360128,43399,'_blocks_5_options','field_617682517c334'),(360129,43399,'blocks_5_split_5050_image','38960'),(360130,43399,'_blocks_5_split_5050_image','field_6239f527a0c3a'),(360131,43399,'blocks_5_split_5050_video',''),(360132,43399,'_blocks_5_split_5050_video','field_6239f3160848a'),(360133,43399,'blocks_5_split_5050_content_title',''),(360134,43399,'_blocks_5_split_5050_content_title','field_61767bfca3fc0'),(360135,43399,'blocks_5_split_5050_content_heading',''),(360136,43399,'_blocks_5_split_5050_content_heading','field_61767b26eb8bb'),(360137,43399,'blocks_5_split_5050_content_text','In 2022, Biomechanics Education proudly became part of the Future Fit Group, marking an exciting new chapter in our journey. This partnership brings together our expertise, skills, and network with Future Fit’s resources to create even more opportunities for our learners and help drive positive change in the health and fitness industry.\r\n\r\nAs a result of this collaboration, we’re able to offer you even greater benefits, including:\r\n<ul>\r\n 	<li>Access to the renowned Flex Learning Management System platform for enhanced support and resources</li>\r\n 	<li>Exclusive discounts on popular brands and businesses</li>\r\n 	<li>Industry-recognised training and qualifications</li>\r\n 	<li>Continuous support throughout your training and beyond</li>\r\n</ul>\r\nTogether, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.'),(360138,43399,'_blocks_5_split_5050_content_text','field_61767b3beb8bc'),(360139,43399,'blocks_5_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360140,43399,'_blocks_5_split_5050_content_actions_0_button','field_61767b72eb8be'),(360141,43399,'blocks_5_split_5050_content_actions','1'),(360142,43399,'_blocks_5_split_5050_content_actions','field_61767b68eb8bd'),(360143,43399,'blocks_5_split_5050_content',''),(360144,43399,'_blocks_5_split_5050_content','field_61767afceb8ba'),(360145,43399,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360146,43399,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(360147,43399,'blocks_1_acfe_flexible_toggle',''),(360148,43399,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(360149,43399,'blocks_1_acfe_flexible_layout_title','Template'),(360150,43399,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(360151,43399,'blocks_1_template','39207'),(360152,43399,'_blocks_1_template','field_617bdd570fe01'),(360153,43399,'blocks_3_acfe_flexible_toggle',''),(360154,43399,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(360155,43399,'blocks_3_acfe_flexible_layout_title','Video'),(360156,43399,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(360157,43399,'blocks_3_size','large'),(360158,43399,'_blocks_3_size','field_6487038f297c1'),(360159,43399,'blocks_3_row_content_title',''),(360160,43399,'_blocks_3_row_content_title','field_64870132a865d'),(360161,43399,'blocks_3_row_content_heading','Hear from our Learners'),(360162,43399,'_blocks_3_row_content_heading','field_64870142a865e'),(360163,43399,'blocks_3_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(360164,43399,'_blocks_3_row_content_text','field_64870148a865f'),(360165,43399,'blocks_3_row_content',''),(360166,43399,'_blocks_3_row_content','field_6487008ba865c'),(360167,43399,'blocks_3_video_src','https://www.youtube.com/watch?v=CAwcWfVzc1c'),(360168,43399,'_blocks_3_video_src','field_6193c4a98ec07'),(360169,43399,'blocks_3_video_thumbnail',''),(360170,43399,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(360171,43399,'blocks_4_acfe_flexible_toggle',''),(360172,43399,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(360173,43399,'blocks_4_acfe_flexible_layout_title','Text Block'),(360174,43399,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(360175,43399,'blocks_4_options_theme','#ffffff'),(360176,43399,'_blocks_4_options_theme','field_6176830e2ad17'),(360177,43399,'blocks_4_options',''),(360178,43399,'_blocks_4_options','field_6176830e2ad16'),(360179,43399,'blocks_4_text_block_heading',''),(360180,43399,'_blocks_4_text_block_heading','field_617669d413097'),(360181,43399,'blocks_4_text_block_content','<h2 style=\"text-align: center;\">Biomechanics Education &amp; Future Fit</h2>'),(360182,43399,'_blocks_4_text_block_content','field_617669ec13098'),(360183,43399,'blocks_6_acfe_flexible_toggle',''),(360184,43399,'_blocks_6_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(360185,43399,'blocks_6_acfe_flexible_layout_title','Form [anchor]'),(360186,43399,'_blocks_6_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(360187,43399,'blocks_6_row_content_format','standard'),(360188,43399,'_blocks_6_row_content_format','field_6481ead962881'),(360189,43399,'blocks_6_row_content_title',''),(360190,43399,'_blocks_6_row_content_title','field_61a0f5f5b3db1'),(360191,43399,'blocks_6_row_content_heading','Elevate your workforce with Biomechanics Education'),(360192,43399,'_blocks_6_row_content_heading','field_61a0f5f5b3db2'),(360193,43399,'blocks_6_row_content_text','<span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\">If </span><span class=\"NormalTextRun SCXW54314338 BCX8\">you’d</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> like to find out more about how Biomechanics Education can support your organisation, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">enquire today</span><span class=\"NormalTextRun SCXW54314338 BCX8\">. </span></span>'),(360194,43399,'_blocks_6_row_content_text','field_61a0f5f5b3db3'),(360195,43399,'blocks_6_row_content_actions',''),(360196,43399,'_blocks_6_row_content_actions','field_61a0f5f5b3db4'),(360197,43399,'blocks_6_row_content',''),(360198,43399,'_blocks_6_row_content','field_61a0f5f5b3db0'),(360199,43399,'blocks_6_row_form','40394'),(360200,43399,'_blocks_6_row_form','field_61a4ff2c0b08e'),(360201,43399,'blocks_6_row_form_button_label',''),(360202,43399,'_blocks_6_row_form_button_label','field_61e12cf6fe412'),(360203,43399,'blocks_7_acfe_flexible_toggle',''),(360204,43399,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(360205,43399,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(360206,43399,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(360207,43399,'blocks_7_options_theme','#ffffff'),(360208,43399,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(360209,43399,'blocks_7_options_reverse','1'),(360210,43399,'_blocks_7_options_reverse','field_61768049bb8ac'),(360211,43399,'blocks_7_options',''),(360212,43399,'_blocks_7_options','field_617682517c334'),(360213,43399,'blocks_7_split_5050_image','41484'),(360214,43399,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(360215,43399,'blocks_7_split_5050_video',''),(360216,43399,'_blocks_7_split_5050_video','field_6239f3160848a'),(360217,43399,'blocks_7_split_5050_content_title','About Rachel'),(360218,43399,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(360219,43399,'blocks_7_split_5050_content_heading',''),(360220,43399,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(360221,43399,'blocks_7_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel\'s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(360222,43399,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(360223,43399,'blocks_7_split_5050_content_actions',''),(360224,43399,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(360225,43399,'blocks_7_split_5050_content',''),(360226,43399,'_blocks_7_split_5050_content','field_61767afceb8ba'),(360227,43399,'blocks_8_acfe_flexible_toggle',''),(360228,43399,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(360229,43399,'blocks_8_acfe_flexible_layout_title','Text Block'),(360230,43399,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(360231,43399,'blocks_8_options_theme','#ffffff'),(360232,43399,'_blocks_8_options_theme','field_6176830e2ad17'),(360233,43399,'blocks_8_options',''),(360234,43399,'_blocks_8_options','field_6176830e2ad16'),(360235,43399,'blocks_8_text_block_heading',''),(360236,43399,'_blocks_8_text_block_heading','field_617669d413097'),(360237,43399,'blocks_8_text_block_content','<h2 style=\"text-align: center;\">Our Courses</h2>'),(360238,43399,'_blocks_8_text_block_content','field_617669ec13098'),(360239,43399,'blocks_9_acfe_flexible_toggle',''),(360240,43399,'_blocks_9_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(360241,43399,'blocks_9_acfe_flexible_layout_title','Cards'),(360242,43399,'_blocks_9_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(360243,43399,'blocks_9_options_theme','#ffffff'),(360244,43399,'_blocks_9_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(360245,43399,'blocks_9_options_format','carousel'),(360246,43399,'_blocks_9_options_format','field_617a7b15245b5'),(360247,43399,'blocks_9_options_style','default'),(360248,43399,'_blocks_9_options_style','field_6278ffb63484a'),(360249,43399,'blocks_9_options_cards_current_listing','0'),(360250,43399,'_blocks_9_options_cards_current_listing','field_6193d7effb7a4'),(360251,43399,'blocks_9_options_cards_content','custom'),(360252,43399,'_blocks_9_options_cards_content','field_617aba6122688'),(360253,43399,'blocks_9_options',''),(360254,43399,'_blocks_9_options','field_617a7b15245b3'),(360255,43399,'blocks_9_cards_custom_0_image','39047'),(360256,43399,'_blocks_9_cards_custom_0_image','field_6194cc284d387'),(360257,43399,'blocks_9_cards_custom_0_title','Diploma in Biomechanics Coaching'),(360258,43399,'_blocks_9_cards_custom_0_title','field_6194cc454d388'),(360259,43399,'blocks_9_cards_custom_0_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(360260,43399,'_blocks_9_cards_custom_0_text','field_6194cc4a4d389'),(360261,43399,'blocks_9_cards_custom_0_link','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360262,43399,'_blocks_9_cards_custom_0_link','field_6194cc534d38a'),(360263,43399,'blocks_9_cards_custom_1_image','39437'),(360264,43399,'_blocks_9_cards_custom_1_image','field_6194cc284d387'),(360265,43399,'blocks_9_cards_custom_1_title','Lvl 4 Personal Trainer with Biomechanics Diploma'),(360266,43399,'_blocks_9_cards_custom_1_title','field_6194cc454d388'),(360267,43399,'blocks_9_cards_custom_1_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(360268,43399,'_blocks_9_cards_custom_1_text','field_6194cc4a4d389'),(360269,43399,'blocks_9_cards_custom_1_link','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360270,43399,'_blocks_9_cards_custom_1_link','field_6194cc534d38a'),(360271,43399,'blocks_9_cards_custom_2_image','38321'),(360272,43399,'_blocks_9_cards_custom_2_image','field_6194cc284d387'),(360273,43399,'blocks_9_cards_custom_2_title','CPD Courses'),(360274,43399,'_blocks_9_cards_custom_2_title','field_6194cc454d388'),(360275,43399,'blocks_9_cards_custom_2_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(360276,43399,'_blocks_9_cards_custom_2_text','field_6194cc4a4d389'),(360277,43399,'blocks_9_cards_custom_2_link','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360278,43399,'_blocks_9_cards_custom_2_link','field_6194cc534d38a'),(360279,43399,'blocks_9_cards_custom','3'),(360280,43399,'_blocks_9_cards_custom','field_6194cbf84d386'),(360281,43399,'_thumbnail_id','36390'),(360282,43399,'__thumbnail_id','field_617570855ddaf'),(360799,43402,'hide_hero','0'),(360800,43402,'_hide_hero','field_66a2380fcda39'),(360801,43402,'hero_title','Ready to ‘Elevate’ your workforce with Biomechanics Education?'),(360802,43402,'_hero_title','field_617571fe285e8'),(360803,43402,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support your organisation every step of the way, from foundational knowledge to advanced, evidence-based training.'),(360804,43402,'_hero_text','field_6175723c285e9'),(360805,43402,'hero_actions','1'),(360806,43402,'_hero_actions','field_61757270285ea'),(360807,43402,'hero_style','default'),(360808,43402,'_hero_style','field_62051d9dc5324'),(360809,43402,'hero_image_pos_x','right'),(360810,43402,'_hero_image_pos_x','field_62ec3d05390bb'),(360811,43402,'hero_image_pos_y','top'),(360812,43402,'_hero_image_pos_y','field_62ec3d05390bc'),(360813,43402,'hero_image_pos',''),(360814,43402,'_hero_image_pos','field_62ec3d05390ba'),(360815,43402,'fft_hide_from_listings','0'),(360816,43402,'_fft_hide_from_listings','field_61f1320446ab2'),(360817,43402,'fft_page_format','default'),(360818,43402,'_fft_page_format','field_61ae213f1f218'),(360819,43402,'fft_hide_nav','0'),(360820,43402,'_fft_hide_nav','field_635bd5e43527c'),(360821,43402,'fft_hide_header_call_to_action','0'),(360822,43402,'_fft_hide_header_call_to_action','field_635bd6723527d'),(360823,43402,'fft_page_sitemap','0'),(360824,43402,'_fft_page_sitemap','field_61af9b34e8181'),(360825,43402,'blocks_0_acfe_flexible_toggle',''),(360826,43402,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(360827,43402,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(360828,43402,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(360829,43402,'blocks_0_options_theme','#ffffff'),(360830,43402,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(360831,43402,'blocks_0_options_reverse','1'),(360832,43402,'_blocks_0_options_reverse','field_61768049bb8ac'),(360833,43402,'blocks_0_options',''),(360834,43402,'_blocks_0_options','field_617682517c334'),(360835,43402,'blocks_0_split_5050_image','38960'),(360836,43402,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(360837,43402,'blocks_0_split_5050_video',''),(360838,43402,'_blocks_0_split_5050_video','field_6239f3160848a'),(360839,43402,'blocks_0_split_5050_content_title','Biomechanics Education and Future Fit'),(360840,43402,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(360841,43402,'blocks_0_split_5050_content_heading','Working in Partnership'),(360842,43402,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(360843,43402,'blocks_0_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(360844,43402,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(360845,43402,'blocks_0_split_5050_content_actions','1'),(360846,43402,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(360847,43402,'blocks_0_split_5050_content',''),(360848,43402,'_blocks_0_split_5050_content','field_61767afceb8ba'),(360849,43402,'blocks_2_acfe_flexible_toggle',''),(360850,43402,'_blocks_2_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(360851,43402,'blocks_2_acfe_flexible_layout_title','Quote'),(360852,43402,'_blocks_2_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(360853,43402,'blocks_2_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(360854,43402,'_blocks_2_quote_content','field_6177cdacdd67a'),(360855,43402,'blocks_2_quote_author',''),(360856,43402,'_blocks_2_quote_author','field_6177cdc6dd67b'),(360857,43402,'blocks','a:10:{i:0;s:10:\"split_5050\";i:1;s:8:\"template\";i:2;s:5:\"quote\";i:3;s:5:\"video\";i:4;s:10:\"text_block\";i:5;s:10:\"accordions\";i:6;s:4:\"form\";i:7;s:10:\"split_5050\";i:8;s:10:\"text_block\";i:9;s:5:\"cards\";}'),(360858,43402,'_blocks','field_6176696113096'),(360859,43402,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360860,43402,'_hero_actions_0_button','field_61757281285eb'),(360861,43402,'blocks_0_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360862,43402,'_blocks_0_split_5050_content_actions_0_button','field_61767b72eb8be'),(360863,43402,'blocks_1_acfe_flexible_toggle',''),(360864,43402,'_blocks_1_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(360865,43402,'blocks_1_acfe_flexible_layout_title','Template'),(360866,43402,'_blocks_1_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(360867,43402,'blocks_1_template','39207'),(360868,43402,'_blocks_1_template','field_617bdd570fe01'),(360869,43402,'blocks_3_acfe_flexible_toggle',''),(360870,43402,'_blocks_3_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(360871,43402,'blocks_3_acfe_flexible_layout_title','Video'),(360872,43402,'_blocks_3_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(360873,43402,'blocks_3_size','large'),(360874,43402,'_blocks_3_size','field_6487038f297c1'),(360875,43402,'blocks_3_row_content_title',''),(360876,43402,'_blocks_3_row_content_title','field_64870132a865d'),(360877,43402,'blocks_3_row_content_heading','Hear from our Learners'),(360878,43402,'_blocks_3_row_content_heading','field_64870142a865e'),(360879,43402,'blocks_3_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(360880,43402,'_blocks_3_row_content_text','field_64870148a865f'),(360881,43402,'blocks_3_row_content',''),(360882,43402,'_blocks_3_row_content','field_6487008ba865c'),(360883,43402,'blocks_3_video_src','https://www.youtube.com/watch?v=CAwcWfVzc1c'),(360884,43402,'_blocks_3_video_src','field_6193c4a98ec07'),(360885,43402,'blocks_3_video_thumbnail',''),(360886,43402,'_blocks_3_video_thumbnail','field_6193c4a08ec06'),(360887,43402,'blocks_4_acfe_flexible_toggle',''),(360888,43402,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(360889,43402,'blocks_4_acfe_flexible_layout_title','Text Block'),(360890,43402,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(360891,43402,'blocks_4_options_theme','#ffffff'),(360892,43402,'_blocks_4_options_theme','field_6176830e2ad17'),(360893,43402,'blocks_4_options',''),(360894,43402,'_blocks_4_options','field_6176830e2ad16'),(360895,43402,'blocks_4_text_block_heading',''),(360896,43402,'_blocks_4_text_block_heading','field_617669d413097'),(360897,43402,'blocks_4_text_block_content','<h2 style=\"text-align: center;\">Biomechanics Education &amp; Future Fit</h2>\r\n<p style=\"text-align: center;\"></p>'),(360898,43402,'_blocks_4_text_block_content','field_617669ec13098'),(360899,43402,'blocks_6_acfe_flexible_toggle',''),(360900,43402,'_blocks_6_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(360901,43402,'blocks_6_acfe_flexible_layout_title','Form [anchor]'),(360902,43402,'_blocks_6_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(360903,43402,'blocks_6_row_content_format','standard'),(360904,43402,'_blocks_6_row_content_format','field_6481ead962881'),(360905,43402,'blocks_6_row_content_title',''),(360906,43402,'_blocks_6_row_content_title','field_61a0f5f5b3db1'),(360907,43402,'blocks_6_row_content_heading','Elevate your workforce with Biomechanics Education'),(360908,43402,'_blocks_6_row_content_heading','field_61a0f5f5b3db2'),(360909,43402,'blocks_6_row_content_text','<span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\">If </span><span class=\"NormalTextRun SCXW54314338 BCX8\">you’d</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> like to find out more about how Biomechanics Education can support your organisation, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">enquire today</span><span class=\"NormalTextRun SCXW54314338 BCX8\">. </span></span>'),(360910,43402,'_blocks_6_row_content_text','field_61a0f5f5b3db3'),(360911,43402,'blocks_6_row_content_actions',''),(360912,43402,'_blocks_6_row_content_actions','field_61a0f5f5b3db4'),(360913,43402,'blocks_6_row_content',''),(360914,43402,'_blocks_6_row_content','field_61a0f5f5b3db0'),(360915,43402,'blocks_6_row_form','40394'),(360916,43402,'_blocks_6_row_form','field_61a4ff2c0b08e'),(360917,43402,'blocks_6_row_form_button_label',''),(360918,43402,'_blocks_6_row_form_button_label','field_61e12cf6fe412'),(360919,43402,'blocks_7_acfe_flexible_toggle',''),(360920,43402,'_blocks_7_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(360921,43402,'blocks_7_acfe_flexible_layout_title','50/50 Split'),(360922,43402,'_blocks_7_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(360923,43402,'blocks_7_options_theme','#ffffff'),(360924,43402,'_blocks_7_options_theme','field_617682847c335_field_6176830e2ad17'),(360925,43402,'blocks_7_options_reverse','1'),(360926,43402,'_blocks_7_options_reverse','field_61768049bb8ac'),(360927,43402,'blocks_7_options',''),(360928,43402,'_blocks_7_options','field_617682517c334'),(360929,43402,'blocks_7_split_5050_image','41484'),(360930,43402,'_blocks_7_split_5050_image','field_6239f527a0c3a'),(360931,43402,'blocks_7_split_5050_video',''),(360932,43402,'_blocks_7_split_5050_video','field_6239f3160848a'),(360933,43402,'blocks_7_split_5050_content_title','About Rachel'),(360934,43402,'_blocks_7_split_5050_content_title','field_61767bfca3fc0'),(360935,43402,'blocks_7_split_5050_content_heading',''),(360936,43402,'_blocks_7_split_5050_content_heading','field_61767b26eb8bb'),(360937,43402,'blocks_7_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel\'s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(360938,43402,'_blocks_7_split_5050_content_text','field_61767b3beb8bc'),(360939,43402,'blocks_7_split_5050_content_actions',''),(360940,43402,'_blocks_7_split_5050_content_actions','field_61767b68eb8bd'),(360941,43402,'blocks_7_split_5050_content',''),(360942,43402,'_blocks_7_split_5050_content','field_61767afceb8ba'),(360943,43402,'blocks_8_acfe_flexible_toggle',''),(360944,43402,'_blocks_8_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(360945,43402,'blocks_8_acfe_flexible_layout_title','Text Block'),(360946,43402,'_blocks_8_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(360947,43402,'blocks_8_options_theme','#ffffff'),(360948,43402,'_blocks_8_options_theme','field_6176830e2ad17'),(360949,43402,'blocks_8_options',''),(360950,43402,'_blocks_8_options','field_6176830e2ad16'),(360951,43402,'blocks_8_text_block_heading',''),(360952,43402,'_blocks_8_text_block_heading','field_617669d413097'),(360953,43402,'blocks_8_text_block_content','<h2 style=\"text-align: center;\">Our Courses</h2>'),(360954,43402,'_blocks_8_text_block_content','field_617669ec13098'),(360955,43402,'blocks_9_acfe_flexible_toggle',''),(360956,43402,'_blocks_9_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(360957,43402,'blocks_9_acfe_flexible_layout_title','Cards'),(360958,43402,'_blocks_9_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(360959,43402,'blocks_9_options_theme','#ffffff'),(360960,43402,'_blocks_9_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(360961,43402,'blocks_9_options_format','carousel'),(360962,43402,'_blocks_9_options_format','field_617a7b15245b5'),(360963,43402,'blocks_9_options_style','default'),(360964,43402,'_blocks_9_options_style','field_6278ffb63484a'),(360965,43402,'blocks_9_options_cards_current_listing','0'),(360966,43402,'_blocks_9_options_cards_current_listing','field_6193d7effb7a4'),(360967,43402,'blocks_9_options_cards_content','custom'),(360968,43402,'_blocks_9_options_cards_content','field_617aba6122688'),(360969,43402,'blocks_9_options',''),(360970,43402,'_blocks_9_options','field_617a7b15245b3'),(360971,43402,'blocks_9_cards_custom_0_image','39047'),(360972,43402,'_blocks_9_cards_custom_0_image','field_6194cc284d387'),(360973,43402,'blocks_9_cards_custom_0_title','Diploma in Biomechanics Coaching'),(360974,43402,'_blocks_9_cards_custom_0_title','field_6194cc454d388'),(360975,43402,'blocks_9_cards_custom_0_text','Transform your practice with our Diploma in Biomechanics Coaching. Designed for movement practitioners, coaches, and therapists, our evidence-based approach enhances client performance and reduces risks.'),(360976,43402,'_blocks_9_cards_custom_0_text','field_6194cc4a4d389'),(360977,43402,'blocks_9_cards_custom_0_link','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360978,43402,'_blocks_9_cards_custom_0_link','field_6194cc534d38a'),(360979,43402,'blocks_9_cards_custom_1_image','39437'),(360980,43402,'_blocks_9_cards_custom_1_image','field_6194cc284d387'),(360981,43402,'blocks_9_cards_custom_1_title','Lvl 4 Personal Trainer with Biomechanics Diploma'),(360982,43402,'_blocks_9_cards_custom_1_title','field_6194cc454d388'),(360983,43402,'blocks_9_cards_custom_1_text','Enhance your Biomechanics Coaching Diploma with our Level 4 PT qualification. Expand assessment capabilities, design adaptive programs, and differentiate yourself in the market. Boost client retention and business growth with advanced skills.'),(360984,43402,'_blocks_9_cards_custom_1_text','field_6194cc4a4d389'),(360985,43402,'blocks_9_cards_custom_1_link','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360986,43402,'_blocks_9_cards_custom_1_link','field_6194cc534d38a'),(360987,43402,'blocks_9_cards_custom_2_image','38321'),(360988,43402,'_blocks_9_cards_custom_2_image','field_6194cc284d387'),(360989,43402,'blocks_9_cards_custom_2_title','CPD Courses'),(360990,43402,'_blocks_9_cards_custom_2_title','field_6194cc454d388'),(360991,43402,'blocks_9_cards_custom_2_text','Discover a world of professional growth with Biomechanics Education’s diverse CPD offerings.'),(360992,43402,'_blocks_9_cards_custom_2_text','field_6194cc4a4d389'),(360993,43402,'blocks_9_cards_custom_2_link','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(360994,43402,'_blocks_9_cards_custom_2_link','field_6194cc534d38a'),(360995,43402,'blocks_9_cards_custom','3'),(360996,43402,'_blocks_9_cards_custom','field_6194cbf84d386'),(360997,43402,'_thumbnail_id','36390'),(360998,43402,'__thumbnail_id','field_617570855ddaf'),(360999,43402,'blocks_5_acfe_flexible_toggle',''),(361000,43402,'_blocks_5_acfe_flexible_toggle','field_layout_6177e2991ac43_toggle'),(361001,43402,'blocks_5_acfe_flexible_layout_title','Accordions / FAQs'),(361002,43402,'_blocks_5_acfe_flexible_layout_title','field_layout_6177e2991ac43_title'),(361003,43402,'blocks_5_options_theme','#ffffff'),(361004,43402,'_blocks_5_options_theme','field_6177e2991ac45_field_6176830e2ad17'),(361005,43402,'blocks_5_options_state','0'),(361006,43402,'_blocks_5_options_state','field_6239fcb7508c5'),(361007,43402,'blocks_5_options',''),(361008,43402,'_blocks_5_options','field_6177e2991ac44'),(361009,43402,'blocks_5_content_title',''),(361010,43402,'_blocks_5_content_title','field_64d237e8bb1e2'),(361011,43402,'blocks_5_content_heading','The Results of Our Collaboration '),(361012,43402,'_blocks_5_content_heading','field_64d237e8bb1e3'),(361013,43402,'blocks_5_content_text','<p style=\"text-align: left;\">Together, Biomechanics Education and Future Fit are committed to shaping the future of health and fitness, giving you the tools and knowledge to thrive.</p>'),(361014,43402,'_blocks_5_content_text','field_64d237e8bb1e4'),(361015,43402,'blocks_5_content_actions',''),(361016,43402,'_blocks_5_content_actions','field_64d237e8bb1e5'),(361017,43402,'blocks_5_content_align','left'),(361018,43402,'_blocks_5_content_align','field_64d2443e6b6aa'),(361019,43402,'blocks_5_content',''),(361020,43402,'_blocks_5_content','field_64d237e8bb1e1'),(361021,43402,'blocks_5_accordion_content','custom'),(361022,43402,'_blocks_5_accordion_content','field_6177e2c81ac4f'),(361023,43402,'blocks_5_accordion_items_0_title','Flexible Learning Through Our Advanced LMS Platform'),(361024,43402,'_blocks_5_accordion_items_0_title','field_6177e2991ac4d'),(361025,43402,'blocks_5_accordion_items_0_text','Gain 24/7 access to the renowned Flex Learning Management System, designed to enhance your learning experience. This user-friendly platform provides interactive content, progress tracking, and additional resources to support your studies anytime, anywhere.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;'),(361026,43402,'_blocks_5_accordion_items_0_text','field_6177e2991ac4e'),(361027,43402,'blocks_5_accordion_items_1_title','Exclusive Discounts with Leading Brands'),(361028,43402,'_blocks_5_accordion_items_1_title','field_6177e2991ac4d'),(361029,43402,'blocks_5_accordion_items_1_text','Enjoy special discounts and offers from a variety of popular brands and businesses within the health, fitness, and wellness industries. These exclusive deals help you access quality products and services, making your professional journey more affordable and rewarding.'),(361030,43402,'_blocks_5_accordion_items_1_text','field_6177e2991ac4e'),(361031,43402,'blocks_5_accordion_items_2_title','Industry-Recognised Training and Qualifications'),(361032,43402,'_blocks_5_accordion_items_2_title','field_6177e2991ac4d'),(361033,43402,'blocks_5_accordion_items_2_text','Earn qualifications that are respected and valued across the fitness, rehabilitation, and biomechanics sectors. Our courses are developed in collaboration with industry experts, ensuring your certification meets the highest professional standards.'),(361034,43402,'_blocks_5_accordion_items_2_text','field_6177e2991ac4e'),(361035,43402,'blocks_5_accordion_items_3_title','Ongoing Support for Your Professional Growth'),(361036,43402,'_blocks_5_accordion_items_3_title','field_6177e2991ac4d'),(361037,43402,'blocks_5_accordion_items_3_text','Receive continuous guidance and support throughout your training and well beyond completion. Our dedicated team is committed to helping you apply your knowledge effectively and progress confidently in your career.'),(361038,43402,'_blocks_5_accordion_items_3_text','field_6177e2991ac4e'),(361039,43402,'blocks_5_accordion_items','4'),(361040,43402,'_blocks_5_accordion_items','field_6177e2991ac4c'),(361041,43402,'blocks_5_actions',''),(361042,43402,'_blocks_5_actions','field_61a746a817f7a'),(361223,41115,'_oembed_a4a5552ae9f27aecab5332b41aa64bba','{{unknown}}'),(361224,43389,'blocks_0_acfe_flexible_toggle',''),(361225,43389,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(361226,43389,'blocks_0_acfe_flexible_layout_title','Section 2 USP'),(361227,43389,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(361228,43389,'blocks_0_options_theme','#b61234'),(361229,43389,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(361230,43389,'blocks_0_options_format','row'),(361231,43389,'_blocks_0_options_format','field_64bfde9a90690'),(361232,43389,'blocks_0_options',''),(361233,43389,'_blocks_0_options','field_64bfdd9b90684'),(361234,43389,'blocks_0_icon_row_items_0_icon','world.svg'),(361235,43389,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(361236,43389,'blocks_0_icon_row_items_0_label','Experience '),(361237,43389,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(361238,43389,'blocks_0_icon_row_items_0_text','Built on over 20 years dedicated experience and research '),(361239,43389,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(361240,43389,'blocks_0_icon_row_items_1_icon','magnifier.svg'),(361241,43389,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(361242,43389,'blocks_0_icon_row_items_1_label','Evidence '),(361243,43389,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(361244,43389,'blocks_0_icon_row_items_1_text','Biomechanics Education is built on extensive research and evidence-based models '),(361245,43389,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(361246,43389,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(361247,43389,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(361248,43389,'blocks_0_icon_row_items_2_label','Flexible '),(361249,43389,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(361250,43389,'blocks_0_icon_row_items_2_text','Our learning is delivered through blended learning, with a combination of online and practical '),(361251,43389,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(361252,43389,'blocks_0_icon_row_items_3_icon','star.svg'),(361253,43389,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(361254,43389,'blocks_0_icon_row_items_3_label','Recognised '),(361255,43389,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(361256,43389,'blocks_0_icon_row_items_3_text','Proudly part of the Future Fit Group and recognised a CIMSPA Enhancing training provider '),(361257,43389,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(361258,43389,'blocks_0_icon_row_items','4'),(361259,43389,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(361260,43389,'blocks_1_acfe_flexible_toggle',''),(361261,43389,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(361262,43389,'blocks_1_acfe_flexible_layout_title','Section 3 50/50 Split'),(361263,43389,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(361264,43389,'blocks_1_options_theme','#ffffff'),(361265,43389,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(361266,43389,'blocks_1_options_reverse','1'),(361267,43389,'_blocks_1_options_reverse','field_61768049bb8ac'),(361268,43389,'blocks_1_options',''),(361269,43389,'_blocks_1_options','field_617682517c334'),(361270,43389,'blocks_1_split_5050_image','41484'),(361271,43389,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(361272,43389,'blocks_1_split_5050_video',''),(361273,43389,'_blocks_1_split_5050_video','field_6239f3160848a'),(361274,43389,'blocks_1_split_5050_content_title',''),(361275,43389,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(361276,43389,'blocks_1_split_5050_content_heading','Improving movement through education  '),(361277,43389,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(361278,43389,'blocks_1_split_5050_content_text','With over twenty years of scientific research into intrinsic biomechanics, Biomechanics Education introduces a new way to optimise client performance through our Diploma in Biomechanics Coaching. Rather than being a diagnostic tool this revolutionary programme helps coaches, Personal Trainers, Pilates Instructors, and Sports Massage Therapists identify and mitigate health and movement risks in clients, enhancing movement quality. Professionally, Biomechanics Coaches can reduce client absenteeism and musculoskeletal issues.'),(361279,43389,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(361280,43389,'blocks_1_split_5050_content_actions','1'),(361281,43389,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(361282,43389,'blocks_1_split_5050_content',''),(361283,43389,'_blocks_1_split_5050_content','field_61767afceb8ba'),(361488,43425,'hide_hero','0'),(361489,43425,'_hide_hero','field_66a2380fcda39'),(361490,43425,'hero_title','Ready to ‘Elevate’ your workforce with Biomechanics Education?'),(361491,43425,'_hero_title','field_617571fe285e8'),(361492,43425,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support your organisation every step of the way, from foundational knowledge to advanced, evidence-based training.'),(361493,43425,'_hero_text','field_6175723c285e9'),(361494,43425,'hero_actions','1'),(361495,43425,'_hero_actions','field_61757270285ea'),(361496,43425,'hero_style','default'),(361497,43425,'_hero_style','field_62051d9dc5324'),(361498,43425,'hero_image_pos_x','right'),(361499,43425,'_hero_image_pos_x','field_62ec3d05390bb'),(361500,43425,'hero_image_pos_y','top'),(361501,43425,'_hero_image_pos_y','field_62ec3d05390bc'),(361502,43425,'hero_image_pos',''),(361503,43425,'_hero_image_pos','field_62ec3d05390ba'),(361504,43425,'fft_hide_from_listings','0'),(361505,43425,'_fft_hide_from_listings','field_61f1320446ab2'),(361506,43425,'fft_page_format','default'),(361507,43425,'_fft_page_format','field_61ae213f1f218'),(361508,43425,'fft_hide_nav','0'),(361509,43425,'_fft_hide_nav','field_635bd5e43527c'),(361510,43425,'fft_hide_header_call_to_action','0'),(361511,43425,'_fft_hide_header_call_to_action','field_635bd6723527d'),(361512,43425,'fft_page_sitemap','0'),(361513,43425,'_fft_page_sitemap','field_61af9b34e8181'),(361514,43425,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:10:\"split_5050\";i:4;s:13:\"step_timeline\";i:5;s:5:\"stats\";i:6;s:5:\"video\";i:7;s:5:\"quote\";i:8;s:5:\"icons\";i:9;s:4:\"form\";i:10;s:10:\"split_5050\";}'),(361515,43425,'_blocks','field_6176696113096'),(361516,43425,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(361517,43425,'_hero_actions_0_button','field_61757281285eb'),(361518,43425,'_thumbnail_id','36390'),(361519,43425,'__thumbnail_id','field_617570855ddaf'),(361520,43425,'blocks_0_acfe_flexible_toggle',''),(361521,43425,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(361522,43425,'blocks_0_acfe_flexible_layout_title','Section 2 USP'),(361523,43425,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(361524,43425,'blocks_0_options_theme','#b61234'),(361525,43425,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(361526,43425,'blocks_0_options_format','row'),(361527,43425,'_blocks_0_options_format','field_64bfde9a90690'),(361528,43425,'blocks_0_options',''),(361529,43425,'_blocks_0_options','field_64bfdd9b90684'),(361530,43425,'blocks_0_icon_row_items_0_icon','40-plus.svg'),(361531,43425,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(361532,43425,'blocks_0_icon_row_items_0_label',''),(361533,43425,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(361534,43425,'blocks_0_icon_row_items_0_text',''),(361535,43425,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(361536,43425,'blocks_0_icon_row_items_1_icon','magnifier.svg'),(361537,43425,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(361538,43425,'blocks_0_icon_row_items_1_label',''),(361539,43425,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(361540,43425,'blocks_0_icon_row_items_1_text',''),(361541,43425,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(361542,43425,'blocks_0_icon_row_items_2_icon','study.svg'),(361543,43425,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(361544,43425,'blocks_0_icon_row_items_2_label',''),(361545,43425,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(361546,43425,'blocks_0_icon_row_items_2_text',''),(361547,43425,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(361548,43425,'blocks_0_icon_row_items_3_icon','sport-england.svg'),(361549,43425,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(361550,43425,'blocks_0_icon_row_items_3_label',''),(361551,43425,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(361552,43425,'blocks_0_icon_row_items_3_text',''),(361553,43425,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(361554,43425,'blocks_0_icon_row_items','4'),(361555,43425,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(361556,43425,'blocks_1_acfe_flexible_toggle',''),(361557,43425,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(361558,43425,'blocks_1_acfe_flexible_layout_title','Section 3 50/50 Split'),(361559,43425,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(361560,43425,'blocks_1_options_theme','#ffffff'),(361561,43425,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(361562,43425,'blocks_1_options_reverse','1'),(361563,43425,'_blocks_1_options_reverse','field_61768049bb8ac'),(361564,43425,'blocks_1_options',''),(361565,43425,'_blocks_1_options','field_617682517c334'),(361566,43425,'blocks_1_split_5050_image','41484'),(361567,43425,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(361568,43425,'blocks_1_split_5050_video',''),(361569,43425,'_blocks_1_split_5050_video','field_6239f3160848a'),(361570,43425,'blocks_1_split_5050_content_title','About Rachel'),(361571,43425,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(361572,43425,'blocks_1_split_5050_content_heading',''),(361573,43425,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(361574,43425,'blocks_1_split_5050_content_text','Rachel France is the Managing Director of Biomechanics Education. Rachel\'s professional career in the health &amp; fitness industry spans more than 2 decades originally as a professional dancer travelling across Europe &amp; Asia. Her professional qualifications range from British Weight Lifting Coach, ETM, Sports Massage Therapist, Counsellor, Qualified Teacher Status, Assessor and IQA.'),(361575,43425,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(361576,43425,'blocks_1_split_5050_content_actions',''),(361577,43425,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(361578,43425,'blocks_1_split_5050_content',''),(361579,43425,'_blocks_1_split_5050_content','field_61767afceb8ba'),(361580,43425,'blocks_2_acfe_flexible_toggle',''),(361581,43425,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(361582,43425,'blocks_2_acfe_flexible_layout_title','Section 4 Quality and Trust Marker'),(361583,43425,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(361584,43425,'blocks_2_template','39207'),(361585,43425,'_blocks_2_template','field_617bdd570fe01'),(361586,43425,'blocks_3_acfe_flexible_toggle',''),(361587,43425,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(361588,43425,'blocks_3_acfe_flexible_layout_title','Section 5 Is BE right for you '),(361589,43425,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(361590,43425,'blocks_3_options_theme','#b61234'),(361591,43425,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(361592,43425,'blocks_3_options_reverse','0'),(361593,43425,'_blocks_3_options_reverse','field_61768049bb8ac'),(361594,43425,'blocks_3_options',''),(361595,43425,'_blocks_3_options','field_617682517c334'),(361596,43425,'blocks_3_split_5050_image','41540'),(361597,43425,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(361598,43425,'blocks_3_split_5050_video',''),(361599,43425,'_blocks_3_split_5050_video','field_6239f3160848a'),(361600,43425,'blocks_3_split_5050_content_title',''),(361601,43425,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(361602,43425,'blocks_3_split_5050_content_heading','Are you looking for a way to bring your coaching business or career to the next level?'),(361603,43425,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(361604,43425,'blocks_3_split_5050_content_text','With over twenty years of scientific research into intrinsic biomechanics, Biomechanics Education introduces a new way to optimise client performance through our Diploma in Biomechanics Coaching. Rather than being a diagnostic tool this revolutionary programme helps coaches, Personal Trainers, Pilates Instructors, and Sports Massage Therapists identify and mitigate health and movement risks in clients, enhancing movement quality. Professionally, Biomechanics Coaches can reduce client absenteeism and musculoskeletal issues. We also offer the Diploma alongside complete courses in Personal Training, Pilates, Sports Massage, and Strength and Conditioning'),(361605,43425,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(361606,43425,'blocks_3_split_5050_content_actions',''),(361607,43425,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(361608,43425,'blocks_3_split_5050_content',''),(361609,43425,'_blocks_3_split_5050_content','field_61767afceb8ba'),(361610,43425,'blocks_4_acfe_flexible_toggle',''),(361611,43425,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(361612,43425,'blocks_4_acfe_flexible_layout_title','Section 6 Intro to bio coach diploma'),(361613,43425,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(361614,43425,'blocks_4_options_theme','#ffffff'),(361615,43425,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(361616,43425,'blocks_4_options',''),(361617,43425,'_blocks_4_options','field_6177de53d1195'),(361618,43425,'blocks_4_timeline_content_title',''),(361619,43425,'_blocks_4_timeline_content_title','field_6177de53d1198'),(361620,43425,'blocks_4_timeline_content_heading','Diploma in Biomechanics Coaching '),(361621,43425,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(361622,43425,'blocks_4_timeline_content_text','Ready to unlock your client’s movement potential? Backed by over 20 years of research, the Diploma in Biomechanics Coaching equips you with interdisciplinary skills in movement analysis, prehabilitation, and risk reduction.\r\n\r\nWith some assessments comparing at 97% gold standard lab test accurate compared to an expensive isokinetic machine, you’ll master 42 assessments through online and practical workshops to offer tailored advice, reduce risk and enhance movement quality. Whether training elite athletes or beginners, this course helps you optimise performance and deliver results, while bridging the gap between exercise and therapy with advanced biomechanics knowledge.'),(361623,43425,'_blocks_4_timeline_content_text','field_6177de53d119a'),(361624,43425,'blocks_4_timeline_content_actions',''),(361625,43425,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(361626,43425,'blocks_4_timeline_content',''),(361627,43425,'_blocks_4_timeline_content','field_6177de53d1197'),(361628,43425,'blocks_4_timeline_items_0_title','Introduction to Intrinsic Biomechanics '),(361629,43425,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(361630,43425,'blocks_4_timeline_items_0_text',''),(361631,43425,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(361632,43425,'blocks_4_timeline_items_1_title','Shoulder, Knee and Foot Biomechanics  '),(361633,43425,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(361634,43425,'blocks_4_timeline_items_1_text',''),(361635,43425,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(361636,43425,'blocks_4_timeline_items_2_title','Pelvis and Spine Biomechanics  '),(361637,43425,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(361638,43425,'blocks_4_timeline_items_2_text',''),(361639,43425,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(361640,43425,'blocks_4_timeline_items_3_title','Back Health  '),(361641,43425,'_blocks_4_timeline_items_3_title','field_6177de53d119f'),(361642,43425,'blocks_4_timeline_items_3_text',''),(361643,43425,'_blocks_4_timeline_items_3_text','field_6177de53d11a0'),(361644,43425,'blocks_4_timeline_items','4'),(361645,43425,'_blocks_4_timeline_items','field_6177de53d119d'),(361646,43425,'blocks_5_acfe_flexible_toggle',''),(361647,43425,'_blocks_5_acfe_flexible_toggle','field_layout_64b64f1da1db2_toggle'),(361648,43425,'blocks_5_acfe_flexible_layout_title','Section 7 Coach diploma details'),(361649,43425,'_blocks_5_acfe_flexible_layout_title','field_layout_64b64f1da1db2_title'),(361650,43425,'blocks_5_row_heading','Biomechanics Coach Diploma Details'),(361651,43425,'_blocks_5_row_heading','field_64b64f2ea1db7'),(361652,43425,'blocks_5_stats_0_label','Two-day workshops, diploma taught by blended learning '),(361653,43425,'_blocks_5_stats_0_label','field_64b64f4fa1dbb'),(361654,43425,'blocks_5_stats_0_value','2x'),(361655,43425,'_blocks_5_stats_0_value','field_64b64f58a1dbc'),(361656,43425,'blocks_5_stats_1_label','Total learning hours, with 80 guided learning hours  '),(361657,43425,'_blocks_5_stats_1_label','field_64b64f4fa1dbb'),(361658,43425,'blocks_5_stats_1_value','120'),(361659,43425,'_blocks_5_stats_1_value','field_64b64f58a1dbc'),(361660,43425,'blocks_5_stats_2_label','Weeks home study, with 1 practical assessment and critical analysis report. '),(361661,43425,'_blocks_5_stats_2_label','field_64b64f4fa1dbb'),(361662,43425,'blocks_5_stats_2_value','12'),(361663,43425,'_blocks_5_stats_2_value','field_64b64f58a1dbc'),(361664,43425,'blocks_5_stats','3'),(361665,43425,'_blocks_5_stats','field_64b64f24a1db4'),(361666,43425,'blocks_6_acfe_flexible_toggle',''),(361667,43425,'_blocks_6_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(361668,43425,'blocks_6_acfe_flexible_layout_title','Section 8 Video '),(361669,43425,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(361670,43425,'blocks_6_size','large'),(361671,43425,'_blocks_6_size','field_6487038f297c1'),(361672,43425,'blocks_6_row_content_title',''),(361673,43425,'_blocks_6_row_content_title','field_64870132a865d'),(361674,43425,'blocks_6_row_content_heading','Hear from our founder Rachel Frances'),(361675,43425,'_blocks_6_row_content_heading','field_64870142a865e'),(361676,43425,'blocks_6_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(361677,43425,'_blocks_6_row_content_text','field_64870148a865f'),(361678,43425,'blocks_6_row_content',''),(361679,43425,'_blocks_6_row_content','field_6487008ba865c'),(361680,43425,'blocks_6_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(361681,43425,'_blocks_6_video_src','field_6193c4a98ec07'),(361682,43425,'blocks_6_video_thumbnail',''),(361683,43425,'_blocks_6_video_thumbnail','field_6193c4a08ec06'),(361684,43425,'blocks_7_acfe_flexible_toggle',''),(361685,43425,'_blocks_7_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(361686,43425,'blocks_7_acfe_flexible_layout_title','Section 9 Quote'),(361687,43425,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(361688,43425,'blocks_7_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(361689,43425,'_blocks_7_quote_content','field_6177cdacdd67a'),(361690,43425,'blocks_7_quote_author',''),(361691,43425,'_blocks_7_quote_author','field_6177cdc6dd67b'),(361692,43425,'blocks_8_acfe_flexible_toggle',''),(361693,43425,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(361694,43425,'blocks_8_acfe_flexible_layout_title','Why BE?'),(361695,43425,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(361696,43425,'blocks_8_options_theme','#ffffff'),(361697,43425,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(361698,43425,'blocks_8_options_format','grid'),(361699,43425,'_blocks_8_options_format','field_64bfde9a90690'),(361700,43425,'blocks_8_options',''),(361701,43425,'_blocks_8_options','field_64bfdd9b90684'),(361702,43425,'blocks_8_row_content_title',''),(361703,43425,'_blocks_8_row_content_title','field_64bfdd9b90687'),(361704,43425,'blocks_8_row_content_heading','Why Biomechanics Education'),(361705,43425,'_blocks_8_row_content_heading','field_64bfdd9b90688'),(361706,43425,'blocks_8_row_content_text','The Biomechanics Coaching Diploma can transform your career, whether pursued alone or alongside the courses in this guide. It also  deepens your understanding of your own movement. Here’s why it’s the right choice for you:'),(361707,43425,'_blocks_8_row_content_text','field_64bfdd9b90689'),(361708,43425,'blocks_8_row_content_actions',''),(361709,43425,'_blocks_8_row_content_actions','field_64bfdd9b9068a'),(361710,43425,'blocks_8_row_content',''),(361711,43425,'_blocks_8_row_content','field_64bfdd9b90686'),(361712,43425,'blocks_8_icon_row_items_0_icon','thumbs-up.svg'),(361713,43425,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(361714,43425,'blocks_8_icon_row_items_0_label','Evidence-Based Learning'),(361715,43425,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(361716,43425,'blocks_8_icon_row_items_0_text','For nearly 20 years, we’ve led the way in intrinsic biomechanics education,  offering a comprehensive, evidence-based musculoskeletal assessment  programme. This hands-on course is accessible to all learners, guided by  Master Trainers using an integrated systems approach.'),(361717,43425,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(361718,43425,'blocks_8_icon_row_items_1_icon','payment-plans.svg'),(361719,43425,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(361720,43425,'blocks_8_icon_row_items_1_label','Offer bespoke, premium packages'),(361721,43425,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(361722,43425,'blocks_8_icon_row_items_1_text','The Biomechanics Coaching Diploma distinguishes you from industry peers,  enabling you to attract clients with specific movement needs. If you’re aiming  to raise your rates, draw new clients, and retain loyal ones, then this is the  Diploma for you!'),(361723,43425,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(361724,43425,'blocks_8_icon_row_items_2_icon','qualification.svg'),(361725,43425,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(361726,43425,'blocks_8_icon_row_items_2_label','Unique training for you and your clients'),(361727,43425,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(361728,43425,'blocks_8_icon_row_items_2_text','As an enhancing recognised CIMSPA training provider and the only company  in the world delivering a Diploma in Biomechanics Coaching we specialise in  the growing field of reducing risk, post rehabilitation and prehabilitation. This  Diploma also enhances your own mobility and training—you’ll be your first  client, alongside peers on the same journey.'),(361729,43425,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(361730,43425,'blocks_8_icon_row_items_3_icon','star.svg'),(361731,43425,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(361732,43425,'blocks_8_icon_row_items_3_label','Lifetime learning and support'),(361733,43425,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(361734,43425,'blocks_8_icon_row_items_3_text','Our courses are designed with your needs in mind. Learn at your own pace  without rigid deadlines or extension fees*, choosing when and where to study.  Workshops across the UK provide in-person support from Master Trainers to  reinforce your online learning.'),(361735,43425,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(361736,43425,'blocks_8_icon_row_items','4'),(361737,43425,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(361738,43425,'blocks_9_acfe_flexible_toggle',''),(361739,43425,'_blocks_9_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(361740,43425,'blocks_9_acfe_flexible_layout_title','Form [anchor]'),(361741,43425,'_blocks_9_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(361742,43425,'blocks_9_row_content_format','standard'),(361743,43425,'_blocks_9_row_content_format','field_6481ead962881'),(361744,43425,'blocks_9_row_content_title',''),(361745,43425,'_blocks_9_row_content_title','field_61a0f5f5b3db1'),(361746,43425,'blocks_9_row_content_heading','Elevate your workforce with Biomechanics Education'),(361747,43425,'_blocks_9_row_content_heading','field_61a0f5f5b3db2'),(361748,43425,'blocks_9_row_content_text','<span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\">If </span><span class=\"NormalTextRun SCXW54314338 BCX8\">you’d</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> like to find out more about how Biomechanics Education can support your organisation, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">enquire today</span><span class=\"NormalTextRun SCXW54314338 BCX8\">. </span></span>'),(361749,43425,'_blocks_9_row_content_text','field_61a0f5f5b3db3'),(361750,43425,'blocks_9_row_content_actions',''),(361751,43425,'_blocks_9_row_content_actions','field_61a0f5f5b3db4'),(361752,43425,'blocks_9_row_content',''),(361753,43425,'_blocks_9_row_content','field_61a0f5f5b3db0'),(361754,43425,'blocks_9_row_form','40394'),(361755,43425,'_blocks_9_row_form','field_61a4ff2c0b08e'),(361756,43425,'blocks_9_row_form_button_label',''),(361757,43425,'_blocks_9_row_form_button_label','field_61e12cf6fe412'),(361758,43425,'blocks_10_acfe_flexible_toggle',''),(361759,43425,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(361760,43425,'blocks_10_acfe_flexible_layout_title','Section 11 Introduction '),(361761,43425,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(361762,43425,'blocks_10_options_theme','#ffffff'),(361763,43425,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(361764,43425,'blocks_10_options_reverse','1'),(361765,43425,'_blocks_10_options_reverse','field_61768049bb8ac'),(361766,43425,'blocks_10_options',''),(361767,43425,'_blocks_10_options','field_617682517c334'),(361768,43425,'blocks_10_split_5050_image','38960'),(361769,43425,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(361770,43425,'blocks_10_split_5050_video',''),(361771,43425,'_blocks_10_split_5050_video','field_6239f3160848a'),(361772,43425,'blocks_10_split_5050_content_title','Biomechanics Education and Future Fit'),(361773,43425,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(361774,43425,'blocks_10_split_5050_content_heading','Working in Partnership'),(361775,43425,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(361776,43425,'blocks_10_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(361777,43425,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(361778,43425,'blocks_10_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(361779,43425,'_blocks_10_split_5050_content_actions_0_button','field_61767b72eb8be'),(361780,43425,'blocks_10_split_5050_content_actions','1'),(361781,43425,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(361782,43425,'blocks_10_split_5050_content',''),(361783,43425,'_blocks_10_split_5050_content','field_61767afceb8ba'),(361786,43426,'hide_hero','0'),(361787,43426,'_hide_hero','field_66a2380fcda39'),(361788,43426,'hero_title','Ready to ‘Elevate’ your workforce with Biomechanics Education?'),(361789,43426,'_hero_title','field_617571fe285e8'),(361790,43426,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support your organisation every step of the way, from foundational knowledge to advanced, evidence-based training.'),(361791,43426,'_hero_text','field_6175723c285e9'),(361792,43426,'hero_actions','1'),(361793,43426,'_hero_actions','field_61757270285ea'),(361794,43426,'hero_style','default'),(361795,43426,'_hero_style','field_62051d9dc5324'),(361796,43426,'hero_image_pos_x','right'),(361797,43426,'_hero_image_pos_x','field_62ec3d05390bb'),(361798,43426,'hero_image_pos_y','top'),(361799,43426,'_hero_image_pos_y','field_62ec3d05390bc'),(361800,43426,'hero_image_pos',''),(361801,43426,'_hero_image_pos','field_62ec3d05390ba'),(361802,43426,'fft_hide_from_listings','0'),(361803,43426,'_fft_hide_from_listings','field_61f1320446ab2'),(361804,43426,'fft_page_format','default'),(361805,43426,'_fft_page_format','field_61ae213f1f218'),(361806,43426,'fft_hide_nav','0'),(361807,43426,'_fft_hide_nav','field_635bd5e43527c'),(361808,43426,'fft_hide_header_call_to_action','0'),(361809,43426,'_fft_hide_header_call_to_action','field_635bd6723527d'),(361810,43426,'fft_page_sitemap','0'),(361811,43426,'_fft_page_sitemap','field_61af9b34e8181'),(361812,43426,'blocks','a:11:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:8:\"template\";i:3;s:10:\"split_5050\";i:4;s:13:\"step_timeline\";i:5;s:5:\"stats\";i:6;s:5:\"video\";i:7;s:5:\"quote\";i:8;s:5:\"icons\";i:9;s:4:\"form\";i:10;s:10:\"split_5050\";}'),(361813,43426,'_blocks','field_6176696113096'),(361814,43426,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(361815,43426,'_hero_actions_0_button','field_61757281285eb'),(361816,43426,'_thumbnail_id','36390'),(361817,43426,'__thumbnail_id','field_617570855ddaf'),(361818,43426,'blocks_0_acfe_flexible_toggle',''),(361819,43426,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(361820,43426,'blocks_0_acfe_flexible_layout_title','Section 2 USP'),(361821,43426,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(361822,43426,'blocks_0_options_theme','#b61234'),(361823,43426,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(361824,43426,'blocks_0_options_format','row'),(361825,43426,'_blocks_0_options_format','field_64bfde9a90690'),(361826,43426,'blocks_0_options',''),(361827,43426,'_blocks_0_options','field_64bfdd9b90684'),(361828,43426,'blocks_0_icon_row_items_0_icon','40-plus.svg'),(361829,43426,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(361830,43426,'blocks_0_icon_row_items_0_label',''),(361831,43426,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(361832,43426,'blocks_0_icon_row_items_0_text',''),(361833,43426,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(361834,43426,'blocks_0_icon_row_items_1_icon','magnifier.svg'),(361835,43426,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(361836,43426,'blocks_0_icon_row_items_1_label',''),(361837,43426,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(361838,43426,'blocks_0_icon_row_items_1_text',''),(361839,43426,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(361840,43426,'blocks_0_icon_row_items_2_icon','study.svg'),(361841,43426,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(361842,43426,'blocks_0_icon_row_items_2_label',''),(361843,43426,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(361844,43426,'blocks_0_icon_row_items_2_text',''),(361845,43426,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(361846,43426,'blocks_0_icon_row_items_3_icon','sport-england.svg'),(361847,43426,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(361848,43426,'blocks_0_icon_row_items_3_label',''),(361849,43426,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(361850,43426,'blocks_0_icon_row_items_3_text',''),(361851,43426,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(361852,43426,'blocks_0_icon_row_items','4'),(361853,43426,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(361854,43426,'blocks_1_acfe_flexible_toggle',''),(361855,43426,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(361856,43426,'blocks_1_acfe_flexible_layout_title','Section 3 50/50 Split'),(361857,43426,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(361858,43426,'blocks_1_options_theme','#ffffff'),(361859,43426,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(361860,43426,'blocks_1_options_reverse','1'),(361861,43426,'_blocks_1_options_reverse','field_61768049bb8ac'),(361862,43426,'blocks_1_options',''),(361863,43426,'_blocks_1_options','field_617682517c334'),(361864,43426,'blocks_1_split_5050_image','41484'),(361865,43426,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(361866,43426,'blocks_1_split_5050_video',''),(361867,43426,'_blocks_1_split_5050_video','field_6239f3160848a'),(361868,43426,'blocks_1_split_5050_content_title','Intro'),(361869,43426,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(361870,43426,'blocks_1_split_5050_content_heading',''),(361871,43426,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(361872,43426,'blocks_1_split_5050_content_text',''),(361873,43426,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(361874,43426,'blocks_1_split_5050_content_actions',''),(361875,43426,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(361876,43426,'blocks_1_split_5050_content',''),(361877,43426,'_blocks_1_split_5050_content','field_61767afceb8ba'),(361878,43426,'blocks_2_acfe_flexible_toggle',''),(361879,43426,'_blocks_2_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(361880,43426,'blocks_2_acfe_flexible_layout_title','Section 4 Quality and Trust Marker'),(361881,43426,'_blocks_2_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(361882,43426,'blocks_2_template','39207'),(361883,43426,'_blocks_2_template','field_617bdd570fe01'),(361884,43426,'blocks_3_acfe_flexible_toggle',''),(361885,43426,'_blocks_3_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(361886,43426,'blocks_3_acfe_flexible_layout_title','Section 5 Is BE right for you '),(361887,43426,'_blocks_3_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(361888,43426,'blocks_3_options_theme','#b61234'),(361889,43426,'_blocks_3_options_theme','field_617682847c335_field_6176830e2ad17'),(361890,43426,'blocks_3_options_reverse','0'),(361891,43426,'_blocks_3_options_reverse','field_61768049bb8ac'),(361892,43426,'blocks_3_options',''),(361893,43426,'_blocks_3_options','field_617682517c334'),(361894,43426,'blocks_3_split_5050_image','41540'),(361895,43426,'_blocks_3_split_5050_image','field_6239f527a0c3a'),(361896,43426,'blocks_3_split_5050_video',''),(361897,43426,'_blocks_3_split_5050_video','field_6239f3160848a'),(361898,43426,'blocks_3_split_5050_content_title',''),(361899,43426,'_blocks_3_split_5050_content_title','field_61767bfca3fc0'),(361900,43426,'blocks_3_split_5050_content_heading','Are you looking for a way to bring your coaching business or career to the next level?'),(361901,43426,'_blocks_3_split_5050_content_heading','field_61767b26eb8bb'),(361902,43426,'blocks_3_split_5050_content_text','With over twenty years of scientific research into intrinsic biomechanics, Biomechanics Education introduces a new way to optimise client performance through our Diploma in Biomechanics Coaching. Rather than being a diagnostic tool this revolutionary programme helps coaches, Personal Trainers, Pilates Instructors, and Sports Massage Therapists identify and mitigate health and movement risks in clients, enhancing movement quality. Professionally, Biomechanics Coaches can reduce client absenteeism and musculoskeletal issues. We also offer the Diploma alongside complete courses in Personal Training, Pilates, Sports Massage, and Strength and Conditioning'),(361903,43426,'_blocks_3_split_5050_content_text','field_61767b3beb8bc'),(361904,43426,'blocks_3_split_5050_content_actions','1'),(361905,43426,'_blocks_3_split_5050_content_actions','field_61767b68eb8bd'),(361906,43426,'blocks_3_split_5050_content',''),(361907,43426,'_blocks_3_split_5050_content','field_61767afceb8ba'),(361908,43426,'blocks_4_acfe_flexible_toggle',''),(361909,43426,'_blocks_4_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(361910,43426,'blocks_4_acfe_flexible_layout_title','Section 6 Intro to bio coach diploma'),(361911,43426,'_blocks_4_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(361912,43426,'blocks_4_options_theme','#ffffff'),(361913,43426,'_blocks_4_options_theme','field_6177de53d1196_field_6176830e2ad17'),(361914,43426,'blocks_4_options',''),(361915,43426,'_blocks_4_options','field_6177de53d1195'),(361916,43426,'blocks_4_timeline_content_title',''),(361917,43426,'_blocks_4_timeline_content_title','field_6177de53d1198'),(361918,43426,'blocks_4_timeline_content_heading','Diploma in Biomechanics Coaching '),(361919,43426,'_blocks_4_timeline_content_heading','field_6177de53d1199'),(361920,43426,'blocks_4_timeline_content_text','Ready to unlock your client’s movement potential? Backed by over 20 years of research, the Diploma in Biomechanics Coaching equips you with interdisciplinary skills in movement analysis, prehabilitation, and risk reduction.\r\n\r\nWith some assessments comparing at 97% gold standard lab test accurate compared to an expensive isokinetic machine, you’ll master 42 assessments through online and practical workshops to offer tailored advice, reduce risk and enhance movement quality. Whether training elite athletes or beginners, this course helps you optimise performance and deliver results, while bridging the gap between exercise and therapy with advanced biomechanics knowledge.'),(361921,43426,'_blocks_4_timeline_content_text','field_6177de53d119a'),(361922,43426,'blocks_4_timeline_content_actions',''),(361923,43426,'_blocks_4_timeline_content_actions','field_6177de53d119b'),(361924,43426,'blocks_4_timeline_content',''),(361925,43426,'_blocks_4_timeline_content','field_6177de53d1197'),(361926,43426,'blocks_4_timeline_items_0_title','Introduction to Intrinsic Biomechanics '),(361927,43426,'_blocks_4_timeline_items_0_title','field_6177de53d119f'),(361928,43426,'blocks_4_timeline_items_0_text',''),(361929,43426,'_blocks_4_timeline_items_0_text','field_6177de53d11a0'),(361930,43426,'blocks_4_timeline_items_1_title','Shoulder, Knee and Foot Biomechanics  '),(361931,43426,'_blocks_4_timeline_items_1_title','field_6177de53d119f'),(361932,43426,'blocks_4_timeline_items_1_text',''),(361933,43426,'_blocks_4_timeline_items_1_text','field_6177de53d11a0'),(361934,43426,'blocks_4_timeline_items_2_title','Pelvis and Spine Biomechanics  '),(361935,43426,'_blocks_4_timeline_items_2_title','field_6177de53d119f'),(361936,43426,'blocks_4_timeline_items_2_text',''),(361937,43426,'_blocks_4_timeline_items_2_text','field_6177de53d11a0'),(361938,43426,'blocks_4_timeline_items_3_title','Back Health  '),(361939,43426,'_blocks_4_timeline_items_3_title','field_6177de53d119f'),(361940,43426,'blocks_4_timeline_items_3_text',''),(361941,43426,'_blocks_4_timeline_items_3_text','field_6177de53d11a0'),(361942,43426,'blocks_4_timeline_items','4'),(361943,43426,'_blocks_4_timeline_items','field_6177de53d119d'),(361944,43426,'blocks_5_acfe_flexible_toggle',''),(361945,43426,'_blocks_5_acfe_flexible_toggle','field_layout_64b64f1da1db2_toggle'),(361946,43426,'blocks_5_acfe_flexible_layout_title','Section 7 Coach diploma details'),(361947,43426,'_blocks_5_acfe_flexible_layout_title','field_layout_64b64f1da1db2_title'),(361948,43426,'blocks_5_row_heading','Biomechanics Coach Diploma Details'),(361949,43426,'_blocks_5_row_heading','field_64b64f2ea1db7'),(361950,43426,'blocks_5_stats_0_label','Two-day workshops, diploma taught by blended learning '),(361951,43426,'_blocks_5_stats_0_label','field_64b64f4fa1dbb'),(361952,43426,'blocks_5_stats_0_value','2x'),(361953,43426,'_blocks_5_stats_0_value','field_64b64f58a1dbc'),(361954,43426,'blocks_5_stats_1_label','Total learning hours, with 80 guided learning hours  '),(361955,43426,'_blocks_5_stats_1_label','field_64b64f4fa1dbb'),(361956,43426,'blocks_5_stats_1_value','120'),(361957,43426,'_blocks_5_stats_1_value','field_64b64f58a1dbc'),(361958,43426,'blocks_5_stats_2_label','Weeks home study, with 1 practical assessment and critical analysis report. '),(361959,43426,'_blocks_5_stats_2_label','field_64b64f4fa1dbb'),(361960,43426,'blocks_5_stats_2_value','12'),(361961,43426,'_blocks_5_stats_2_value','field_64b64f58a1dbc'),(361962,43426,'blocks_5_stats','3'),(361963,43426,'_blocks_5_stats','field_64b64f24a1db4'),(361964,43426,'blocks_6_acfe_flexible_toggle',''),(361965,43426,'_blocks_6_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(361966,43426,'blocks_6_acfe_flexible_layout_title','Section 8 Video '),(361967,43426,'_blocks_6_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(361968,43426,'blocks_6_size','large'),(361969,43426,'_blocks_6_size','field_6487038f297c1'),(361970,43426,'blocks_6_row_content_title',''),(361971,43426,'_blocks_6_row_content_title','field_64870132a865d'),(361972,43426,'blocks_6_row_content_heading','Hear from our founder Rachel Frances'),(361973,43426,'_blocks_6_row_content_heading','field_64870142a865e'),(361974,43426,'blocks_6_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(361975,43426,'_blocks_6_row_content_text','field_64870148a865f'),(361976,43426,'blocks_6_row_content',''),(361977,43426,'_blocks_6_row_content','field_6487008ba865c'),(361978,43426,'blocks_6_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(361979,43426,'_blocks_6_video_src','field_6193c4a98ec07'),(361980,43426,'blocks_6_video_thumbnail',''),(361981,43426,'_blocks_6_video_thumbnail','field_6193c4a08ec06'),(361982,43426,'blocks_7_acfe_flexible_toggle',''),(361983,43426,'_blocks_7_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(361984,43426,'blocks_7_acfe_flexible_layout_title','Section 9 Quote'),(361985,43426,'_blocks_7_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(361986,43426,'blocks_7_quote_content',' The course has helped me build my PT business successfully in my local area and beyond, and introduced me to other therapists to refer to and from.'),(361987,43426,'_blocks_7_quote_content','field_6177cdacdd67a'),(361988,43426,'blocks_7_quote_author',''),(361989,43426,'_blocks_7_quote_author','field_6177cdc6dd67b'),(361990,43426,'blocks_8_acfe_flexible_toggle',''),(361991,43426,'_blocks_8_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(361992,43426,'blocks_8_acfe_flexible_layout_title','Why BE?'),(361993,43426,'_blocks_8_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(361994,43426,'blocks_8_options_theme','#ffffff'),(361995,43426,'_blocks_8_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(361996,43426,'blocks_8_options_format','grid'),(361997,43426,'_blocks_8_options_format','field_64bfde9a90690'),(361998,43426,'blocks_8_options',''),(361999,43426,'_blocks_8_options','field_64bfdd9b90684'),(362000,43426,'blocks_8_row_content_title',''),(362001,43426,'_blocks_8_row_content_title','field_64bfdd9b90687'),(362002,43426,'blocks_8_row_content_heading','Why Biomechanics Education'),(362003,43426,'_blocks_8_row_content_heading','field_64bfdd9b90688'),(362004,43426,'blocks_8_row_content_text','The Biomechanics Coaching Diploma can transform your career, whether pursued alone or alongside the courses in this guide. It also  deepens your understanding of your own movement. Here’s why it’s the right choice for you:'),(362005,43426,'_blocks_8_row_content_text','field_64bfdd9b90689'),(362006,43426,'blocks_8_row_content_actions',''),(362007,43426,'_blocks_8_row_content_actions','field_64bfdd9b9068a'),(362008,43426,'blocks_8_row_content',''),(362009,43426,'_blocks_8_row_content','field_64bfdd9b90686'),(362010,43426,'blocks_8_icon_row_items_0_icon','thumbs-up.svg'),(362011,43426,'_blocks_8_icon_row_items_0_icon','field_64bfdd9b9068d'),(362012,43426,'blocks_8_icon_row_items_0_label','Evidence-Based Learning'),(362013,43426,'_blocks_8_icon_row_items_0_label','field_64bfdd9c9068e'),(362014,43426,'blocks_8_icon_row_items_0_text','For nearly 20 years, we’ve led the way in intrinsic biomechanics education,  offering a comprehensive, evidence-based musculoskeletal assessment  programme. This hands-on course is accessible to all learners, guided by  Master Trainers using an integrated systems approach.'),(362015,43426,'_blocks_8_icon_row_items_0_text','field_64bfdd9c9068f'),(362016,43426,'blocks_8_icon_row_items_1_icon','payment-plans.svg'),(362017,43426,'_blocks_8_icon_row_items_1_icon','field_64bfdd9b9068d'),(362018,43426,'blocks_8_icon_row_items_1_label','Offer bespoke, premium packages'),(362019,43426,'_blocks_8_icon_row_items_1_label','field_64bfdd9c9068e'),(362020,43426,'blocks_8_icon_row_items_1_text','The Biomechanics Coaching Diploma distinguishes you from industry peers,  enabling you to attract clients with specific movement needs. If you’re aiming  to raise your rates, draw new clients, and retain loyal ones, then this is the  Diploma for you!'),(362021,43426,'_blocks_8_icon_row_items_1_text','field_64bfdd9c9068f'),(362022,43426,'blocks_8_icon_row_items_2_icon','qualification.svg'),(362023,43426,'_blocks_8_icon_row_items_2_icon','field_64bfdd9b9068d'),(362024,43426,'blocks_8_icon_row_items_2_label','Unique training for you and your clients'),(362025,43426,'_blocks_8_icon_row_items_2_label','field_64bfdd9c9068e'),(362026,43426,'blocks_8_icon_row_items_2_text','As an enhancing recognised CIMSPA training provider and the only company  in the world delivering a Diploma in Biomechanics Coaching we specialise in  the growing field of reducing risk, post rehabilitation and prehabilitation. This  Diploma also enhances your own mobility and training—you’ll be your first  client, alongside peers on the same journey.'),(362027,43426,'_blocks_8_icon_row_items_2_text','field_64bfdd9c9068f'),(362028,43426,'blocks_8_icon_row_items_3_icon','star.svg'),(362029,43426,'_blocks_8_icon_row_items_3_icon','field_64bfdd9b9068d'),(362030,43426,'blocks_8_icon_row_items_3_label','Lifetime learning and support'),(362031,43426,'_blocks_8_icon_row_items_3_label','field_64bfdd9c9068e'),(362032,43426,'blocks_8_icon_row_items_3_text','Our courses are designed with your needs in mind. Learn at your own pace  without rigid deadlines or extension fees*, choosing when and where to study.  Workshops across the UK provide in-person support from Master Trainers to  reinforce your online learning.'),(362033,43426,'_blocks_8_icon_row_items_3_text','field_64bfdd9c9068f'),(362034,43426,'blocks_8_icon_row_items','4'),(362035,43426,'_blocks_8_icon_row_items','field_64bfdd9b9068c'),(362036,43426,'blocks_9_acfe_flexible_toggle',''),(362037,43426,'_blocks_9_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(362038,43426,'blocks_9_acfe_flexible_layout_title','Form [anchor]'),(362039,43426,'_blocks_9_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(362040,43426,'blocks_9_row_content_format','standard'),(362041,43426,'_blocks_9_row_content_format','field_6481ead962881'),(362042,43426,'blocks_9_row_content_title',''),(362043,43426,'_blocks_9_row_content_title','field_61a0f5f5b3db1'),(362044,43426,'blocks_9_row_content_heading','Elevate your workforce with Biomechanics Education'),(362045,43426,'_blocks_9_row_content_heading','field_61a0f5f5b3db2'),(362046,43426,'blocks_9_row_content_text','<span class=\"TextRun SCXW54314338 BCX8\" lang=\"EN-GB\" xml:lang=\"EN-GB\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW54314338 BCX8\">If </span><span class=\"NormalTextRun SCXW54314338 BCX8\">you’d</span><span class=\"NormalTextRun SCXW54314338 BCX8\"> like to find out more about how Biomechanics Education can support your organisation, </span><span class=\"NormalTextRun SCXW54314338 BCX8\">enquire today</span><span class=\"NormalTextRun SCXW54314338 BCX8\">. </span></span>'),(362047,43426,'_blocks_9_row_content_text','field_61a0f5f5b3db3'),(362048,43426,'blocks_9_row_content_actions',''),(362049,43426,'_blocks_9_row_content_actions','field_61a0f5f5b3db4'),(362050,43426,'blocks_9_row_content',''),(362051,43426,'_blocks_9_row_content','field_61a0f5f5b3db0'),(362052,43426,'blocks_9_row_form','40394'),(362053,43426,'_blocks_9_row_form','field_61a4ff2c0b08e'),(362054,43426,'blocks_9_row_form_button_label',''),(362055,43426,'_blocks_9_row_form_button_label','field_61e12cf6fe412'),(362056,43426,'blocks_10_acfe_flexible_toggle',''),(362057,43426,'_blocks_10_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(362058,43426,'blocks_10_acfe_flexible_layout_title','Section 11 Introduction '),(362059,43426,'_blocks_10_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(362060,43426,'blocks_10_options_theme','#ffffff'),(362061,43426,'_blocks_10_options_theme','field_617682847c335_field_6176830e2ad17'),(362062,43426,'blocks_10_options_reverse','1'),(362063,43426,'_blocks_10_options_reverse','field_61768049bb8ac'),(362064,43426,'blocks_10_options',''),(362065,43426,'_blocks_10_options','field_617682517c334'),(362066,43426,'blocks_10_split_5050_image','38960'),(362067,43426,'_blocks_10_split_5050_image','field_6239f527a0c3a'),(362068,43426,'blocks_10_split_5050_video',''),(362069,43426,'_blocks_10_split_5050_video','field_6239f3160848a'),(362070,43426,'blocks_10_split_5050_content_title','Biomechanics Education and Future Fit'),(362071,43426,'_blocks_10_split_5050_content_title','field_61767bfca3fc0'),(362072,43426,'blocks_10_split_5050_content_heading','Working in Partnership'),(362073,43426,'_blocks_10_split_5050_content_heading','field_61767b26eb8bb'),(362074,43426,'blocks_10_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(362075,43426,'_blocks_10_split_5050_content_text','field_61767b3beb8bc'),(362076,43426,'blocks_10_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(362077,43426,'_blocks_10_split_5050_content_actions_0_button','field_61767b72eb8be'),(362078,43426,'blocks_10_split_5050_content_actions','1'),(362079,43426,'_blocks_10_split_5050_content_actions','field_61767b68eb8bd'),(362080,43426,'blocks_10_split_5050_content',''),(362081,43426,'_blocks_10_split_5050_content','field_61767afceb8ba'),(362082,43426,'blocks_3_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(362083,43426,'_blocks_3_split_5050_content_actions_0_button','field_61767b72eb8be'),(362084,43427,'_wp_attached_file','2025/06/DSC_6118-scaled.jpg'),(362085,43427,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:27:\"2025/06/DSC_6118-scaled.jpg\";s:8:\"filesize\";i:617480;s:5:\"sizes\";a:21:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"DSC_6118-900x601.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:601;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:129551;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"DSC_6118-1200x801.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:801;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187759;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"DSC_6118-400x267.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56398;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"DSC_6118-768x513.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107296;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:22:\"DSC_6118-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:267865;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:22:\"DSC_6118-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:416182;}s:6:\"1x1-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6118-400x400.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64432;}s:6:\"1x1-md\";a:5:{s:4:\"file\";s:20:\"DSC_6118-900x900.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162319;}s:6:\"1x1-lg\";a:5:{s:4:\"file\";s:22:\"DSC_6118-1200x1200.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:241298;}s:6:\"3x2-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6118-400x266.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:266;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56263;}s:6:\"3x2-md\";a:5:{s:4:\"file\";s:20:\"DSC_6118-900x600.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:128514;}s:6:\"3x2-lg\";a:5:{s:4:\"file\";s:21:\"DSC_6118-1200x800.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:186708;}s:6:\"3x4-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6118-300x400.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52210;}s:6:\"3x4-md\";a:5:{s:4:\"file\";s:20:\"DSC_6118-675x900.jpg\";s:5:\"width\";i:675;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115255;}s:6:\"3x4-lg\";a:5:{s:4:\"file\";s:21:\"DSC_6118-900x1200.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:1200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165746;}s:6:\"4x3-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6118-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57695;}s:6:\"4x3-md\";a:5:{s:4:\"file\";s:20:\"DSC_6118-900x675.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135863;}s:6:\"4x3-lg\";a:5:{s:4:\"file\";s:21:\"DSC_6118-1200x900.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:900;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:197804;}s:7:\"16x9-sm\";a:5:{s:4:\"file\";s:20:\"DSC_6118-400x225.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52733;}s:7:\"16x9-md\";a:5:{s:4:\"file\";s:20:\"DSC_6118-900x506.jpg\";s:5:\"width\";i:900;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115437;}s:7:\"16x9-lg\";a:5:{s:4:\"file\";s:21:\"DSC_6118-1200x675.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165412;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1535278650\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"52\";s:3:\"iso\";s:4:\"1100\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:12:\"DSC_6118.jpg\";}'),(362086,43389,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"Download Course Guide\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(362087,43389,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(362088,43389,'blocks_2_acfe_flexible_toggle',''),(362089,43389,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(362090,43389,'blocks_2_acfe_flexible_layout_title','Text Block'),(362091,43389,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(362092,43389,'blocks_2_options_theme','#ffffff'),(362093,43389,'_blocks_2_options_theme','field_6176830e2ad17'),(362094,43389,'blocks_2_options',''),(362095,43389,'_blocks_2_options','field_6176830e2ad16'),(362096,43389,'blocks_2_text_block_heading',''),(362097,43389,'_blocks_2_text_block_heading','field_617669d413097'),(362098,43389,'blocks_2_text_block_content','<h2 style=\"text-align: center;\">Proudly Working With</h2>'),(362099,43389,'_blocks_2_text_block_content','field_617669ec13098'),(362100,43389,'blocks_3_acfe_flexible_toggle',''),(362101,43389,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(362102,43389,'blocks_3_acfe_flexible_layout_title','Section 4 Quality and Trust Marker'),(362103,43389,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(362104,43389,'blocks_3_template','39207'),(362105,43389,'_blocks_3_template','field_617bdd570fe01'),(362106,43389,'blocks_4_acfe_flexible_toggle',''),(362107,43389,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(362108,43389,'blocks_4_acfe_flexible_layout_title','Section 5 Is BE right for you '),(362109,43389,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(362110,43389,'blocks_4_options_theme','#b61234'),(362111,43389,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(362112,43389,'blocks_4_options_reverse','0'),(362113,43389,'_blocks_4_options_reverse','field_61768049bb8ac'),(362114,43389,'blocks_4_options',''),(362115,43389,'_blocks_4_options','field_617682517c334'),(362116,43389,'blocks_4_split_5050_image','43427'),(362117,43389,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(362118,43389,'blocks_4_split_5050_video',''),(362119,43389,'_blocks_4_split_5050_video','field_6239f3160848a'),(362120,43389,'blocks_4_split_5050_content_title',''),(362121,43389,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(362122,43389,'blocks_4_split_5050_content_heading','Is Biomechanics Coaching for you? '),(362123,43389,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(362124,43389,'blocks_4_split_5050_content_text','We are perfectly positioned to enable professional movement practitioners, from Personal Trainers to Physiotherapists, to advance their offering and take their career to the next level. If you have clients that struggle with movement limitations that affect their training, or want to remove the guess work when optimising client or group performance then we’d love to support you in developing your knowledge of intrinsic biomechanics.'),(362125,43389,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(362126,43389,'blocks_4_split_5050_content_actions',''),(362127,43389,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(362128,43389,'blocks_4_split_5050_content',''),(362129,43389,'_blocks_4_split_5050_content','field_61767afceb8ba'),(362130,43389,'blocks_5_acfe_flexible_toggle',''),(362131,43389,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(362132,43389,'blocks_5_acfe_flexible_layout_title','Section 6 Intro to bio coach diploma'),(362133,43389,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(362134,43389,'blocks_5_options_theme','#ffffff'),(362135,43389,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(362136,43389,'blocks_5_options',''),(362137,43389,'_blocks_5_options','field_6177de53d1195'),(362138,43389,'blocks_5_timeline_content_title',''),(362139,43389,'_blocks_5_timeline_content_title','field_6177de53d1198'),(362140,43389,'blocks_5_timeline_content_heading','Diploma in Biomechanics Coaching '),(362141,43389,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(362142,43389,'blocks_5_timeline_content_text','Ready to unlock your client’s movement potential? Backed by over 20 years of research, the Diploma in Biomechanics Coaching equips you with interdisciplinary skills in movement analysis, prehabilitation, and risk reduction.\r\n\r\nWith some assessments comparing at 97% gold standard lab test accurate compared to an expensive isokinetic machine, you’ll master 42 assessments through online and practical workshops to offer tailored advice, reduce risk and enhance movement quality. Whether training elite athletes or beginners, this course helps you optimise performance and deliver results, while bridging the gap between exercise and therapy with advanced biomechanics knowledge.'),(362143,43389,'_blocks_5_timeline_content_text','field_6177de53d119a'),(362144,43389,'blocks_5_timeline_content_actions',''),(362145,43389,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(362146,43389,'blocks_5_timeline_content',''),(362147,43389,'_blocks_5_timeline_content','field_6177de53d1197'),(362148,43389,'blocks_5_timeline_items_0_title','Introduction to Intrinsic Biomechanics '),(362149,43389,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(362150,43389,'blocks_5_timeline_items_0_text',''),(362151,43389,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(362152,43389,'blocks_5_timeline_items_1_title','Shoulder, Knee and Foot Biomechanics  '),(362153,43389,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(362154,43389,'blocks_5_timeline_items_1_text',''),(362155,43389,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(362156,43389,'blocks_5_timeline_items_2_title','Pelvis and Spine Biomechanics  '),(362157,43389,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(362158,43389,'blocks_5_timeline_items_2_text',''),(362159,43389,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(362160,43389,'blocks_5_timeline_items_3_title','Back Health  '),(362161,43389,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(362162,43389,'blocks_5_timeline_items_3_text',''),(362163,43389,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(362164,43389,'blocks_5_timeline_items','4'),(362165,43389,'_blocks_5_timeline_items','field_6177de53d119d'),(362166,43389,'blocks_6_acfe_flexible_toggle',''),(362167,43389,'_blocks_6_acfe_flexible_toggle','field_layout_64b64f1da1db2_toggle'),(362168,43389,'blocks_6_acfe_flexible_layout_title','Section 7 Coach diploma details'),(362169,43389,'_blocks_6_acfe_flexible_layout_title','field_layout_64b64f1da1db2_title'),(362170,43389,'blocks_6_row_heading','Biomechanics Coach Diploma Details'),(362171,43389,'_blocks_6_row_heading','field_64b64f2ea1db7'),(362172,43389,'blocks_6_stats_0_label','Two-day workshops, diploma taught by blended learning '),(362173,43389,'_blocks_6_stats_0_label','field_64b64f4fa1dbb'),(362174,43389,'blocks_6_stats_0_value','2x'),(362175,43389,'_blocks_6_stats_0_value','field_64b64f58a1dbc'),(362176,43389,'blocks_6_stats_1_label','Total learning hours, with 80 guided learning hours  '),(362177,43389,'_blocks_6_stats_1_label','field_64b64f4fa1dbb'),(362178,43389,'blocks_6_stats_1_value','120'),(362179,43389,'_blocks_6_stats_1_value','field_64b64f58a1dbc'),(362180,43389,'blocks_6_stats_2_label','Weeks home study, with 1 practical assessment and critical analysis report. '),(362181,43389,'_blocks_6_stats_2_label','field_64b64f4fa1dbb'),(362182,43389,'blocks_6_stats_2_value','12'),(362183,43389,'_blocks_6_stats_2_value','field_64b64f58a1dbc'),(362184,43389,'blocks_6_stats','3'),(362185,43389,'_blocks_6_stats','field_64b64f24a1db4'),(362186,43389,'blocks_7_acfe_flexible_toggle',''),(362187,43389,'_blocks_7_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(362188,43389,'blocks_7_acfe_flexible_layout_title','Section 8 Video '),(362189,43389,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(362190,43389,'blocks_7_size','large'),(362191,43389,'_blocks_7_size','field_6487038f297c1'),(362192,43389,'blocks_7_row_content_title',''),(362193,43389,'_blocks_7_row_content_title','field_64870132a865d'),(362194,43389,'blocks_7_row_content_heading','Hear from our founder Rachel Frances Thomson'),(362195,43389,'_blocks_7_row_content_heading','field_64870142a865e'),(362196,43389,'blocks_7_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(362197,43389,'_blocks_7_row_content_text','field_64870148a865f'),(362198,43389,'blocks_7_row_content',''),(362199,43389,'_blocks_7_row_content','field_6487008ba865c'),(362200,43389,'blocks_7_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(362201,43389,'_blocks_7_video_src','field_6193c4a98ec07'),(362202,43389,'blocks_7_video_thumbnail',''),(362203,43389,'_blocks_7_video_thumbnail','field_6193c4a08ec06'),(362204,43389,'blocks_8_acfe_flexible_toggle',''),(362205,43389,'_blocks_8_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(362206,43389,'blocks_8_acfe_flexible_layout_title','Section 9 Quote'),(362207,43389,'_blocks_8_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(362208,43389,'blocks_8_quote_content','The information that is shared and discussed is extensive and the encouragement to learn and question is part of the process. There is a strong community and an amazing array of experience on hand.\r\n'),(362209,43389,'_blocks_8_quote_content','field_6177cdacdd67a'),(362210,43389,'blocks_8_quote_author','Isobel Pilkington, Biomechanics Coach Diploma graduate  '),(362211,43389,'_blocks_8_quote_author','field_6177cdc6dd67b'),(362212,43389,'blocks_9_acfe_flexible_toggle',''),(362213,43389,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(362214,43389,'blocks_9_acfe_flexible_layout_title','Why BE?'),(362215,43389,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(362216,43389,'blocks_9_options_theme','#ffffff'),(362217,43389,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(362218,43389,'blocks_9_options_format','grid'),(362219,43389,'_blocks_9_options_format','field_64bfde9a90690'),(362220,43389,'blocks_9_options',''),(362221,43389,'_blocks_9_options','field_64bfdd9b90684'),(362222,43389,'blocks_9_row_content_title',''),(362223,43389,'_blocks_9_row_content_title','field_64bfdd9b90687'),(362224,43389,'blocks_9_row_content_heading','Why Biomechanics Education'),(362225,43389,'_blocks_9_row_content_heading','field_64bfdd9b90688'),(362226,43389,'blocks_9_row_content_text','The Biomechanics Coaching Diploma can transform your career, whether pursued alone or alongside the courses in this guide. It also  deepens your understanding of your own movement. Here’s why it’s the right choice for you:'),(362227,43389,'_blocks_9_row_content_text','field_64bfdd9b90689'),(362228,43389,'blocks_9_row_content_actions',''),(362229,43389,'_blocks_9_row_content_actions','field_64bfdd9b9068a'),(362230,43389,'blocks_9_row_content',''),(362231,43389,'_blocks_9_row_content','field_64bfdd9b90686'),(362232,43389,'blocks_9_icon_row_items_0_icon','thumbs-up.svg'),(362233,43389,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(362234,43389,'blocks_9_icon_row_items_0_label','Evidence-Based Learning'),(362235,43389,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(362236,43389,'blocks_9_icon_row_items_0_text','For nearly 20 years, we’ve led the way in intrinsic biomechanics education,  offering a comprehensive, evidence-based musculoskeletal assessment  programme. This hands-on course is accessible to all learners, guided by  Master Trainers using an integrated systems approach.'),(362237,43389,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(362238,43389,'blocks_9_icon_row_items_1_icon','payment-plans.svg'),(362239,43389,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(362240,43389,'blocks_9_icon_row_items_1_label','Offer bespoke, premium packages'),(362241,43389,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(362242,43389,'blocks_9_icon_row_items_1_text','The Biomechanics Coaching Diploma distinguishes you from industry peers,  enabling you to attract clients with specific movement needs. If you’re aiming  to raise your rates, draw new clients, and retain loyal ones, then this is the  Diploma for you!'),(362243,43389,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(362244,43389,'blocks_9_icon_row_items_2_icon','qualification.svg'),(362245,43389,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(362246,43389,'blocks_9_icon_row_items_2_label','Unique training for you and your clients'),(362247,43389,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(362248,43389,'blocks_9_icon_row_items_2_text','As an enhancing recognised CIMSPA training provider and the only company  in the world delivering a Diploma in Biomechanics Coaching we specialise in  the growing field of reducing risk, post rehabilitation and prehabilitation. This  Diploma also enhances your own mobility and training—you’ll be your first  client, alongside peers on the same journey.'),(362249,43389,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(362250,43389,'blocks_9_icon_row_items_3_icon','star.svg'),(362251,43389,'_blocks_9_icon_row_items_3_icon','field_64bfdd9b9068d'),(362252,43389,'blocks_9_icon_row_items_3_label','Lifetime learning and support'),(362253,43389,'_blocks_9_icon_row_items_3_label','field_64bfdd9c9068e'),(362254,43389,'blocks_9_icon_row_items_3_text','Our courses are designed with your needs in mind. Learn at your own pace  without rigid deadlines or extension fees*, choosing when and where to study.  Workshops across the UK provide in-person support from Master Trainers to  reinforce your online learning.'),(362255,43389,'_blocks_9_icon_row_items_3_text','field_64bfdd9c9068f'),(362256,43389,'blocks_9_icon_row_items','4'),(362257,43389,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(362258,43389,'blocks_10_acfe_flexible_toggle',''),(362259,43389,'_blocks_10_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(362260,43389,'blocks_10_acfe_flexible_layout_title','Form [anchor]'),(362261,43389,'_blocks_10_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(362262,43389,'blocks_10_row_content_format','standard'),(362263,43389,'_blocks_10_row_content_format','field_6481ead962881'),(362264,43389,'blocks_10_row_content_title',''),(362265,43389,'_blocks_10_row_content_title','field_61a0f5f5b3db1'),(362266,43389,'blocks_10_row_content_heading','Elevate your career, without limitation  '),(362267,43389,'_blocks_10_row_content_heading','field_61a0f5f5b3db2'),(362268,43389,'blocks_10_row_content_text','Enquire today to receive a full course and price guide, to learn how Biomechanics Education can support you!'),(362269,43389,'_blocks_10_row_content_text','field_61a0f5f5b3db3'),(362270,43389,'blocks_10_row_content_actions',''),(362271,43389,'_blocks_10_row_content_actions','field_61a0f5f5b3db4'),(362272,43389,'blocks_10_row_content',''),(362273,43389,'_blocks_10_row_content','field_61a0f5f5b3db0'),(362274,43389,'blocks_10_row_form','40394'),(362275,43389,'_blocks_10_row_form','field_61a4ff2c0b08e'),(362276,43389,'blocks_10_row_form_button_label',''),(362277,43389,'_blocks_10_row_form_button_label','field_61e12cf6fe412'),(362278,43389,'blocks_11_acfe_flexible_toggle',''),(362279,43389,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(362280,43389,'blocks_11_acfe_flexible_layout_title','Section 11 Introduction '),(362281,43389,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(362282,43389,'blocks_11_options_theme','#ffffff'),(362283,43389,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(362284,43389,'blocks_11_options_reverse','1'),(362285,43389,'_blocks_11_options_reverse','field_61768049bb8ac'),(362286,43389,'blocks_11_options',''),(362287,43389,'_blocks_11_options','field_617682517c334'),(362288,43389,'blocks_11_split_5050_image','38960'),(362289,43389,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(362290,43389,'blocks_11_split_5050_video',''),(362291,43389,'_blocks_11_split_5050_video','field_6239f3160848a'),(362292,43389,'blocks_11_split_5050_content_title','Biomechanics Education and Future Fit'),(362293,43389,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(362294,43389,'blocks_11_split_5050_content_heading','Working in Partnership'),(362295,43389,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(362296,43389,'blocks_11_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(362297,43389,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(362298,43389,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(362299,43389,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(362300,43389,'blocks_11_split_5050_content_actions','1'),(362301,43389,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(362302,43389,'blocks_11_split_5050_content',''),(362303,43389,'_blocks_11_split_5050_content','field_61767afceb8ba'),(362304,43428,'hide_hero','0'),(362305,43428,'_hide_hero','field_66a2380fcda39'),(362306,43428,'hero_title','Welcome to Biomechanics Education '),(362307,43428,'_hero_title','field_617571fe285e8'),(362308,43428,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support every step of the way, from foundational knowledge to advanced, evidence-based training '),(362309,43428,'_hero_text','field_6175723c285e9'),(362310,43428,'hero_actions','1'),(362311,43428,'_hero_actions','field_61757270285ea'),(362312,43428,'hero_style','default'),(362313,43428,'_hero_style','field_62051d9dc5324'),(362314,43428,'hero_image_pos_x','right'),(362315,43428,'_hero_image_pos_x','field_62ec3d05390bb'),(362316,43428,'hero_image_pos_y','top'),(362317,43428,'_hero_image_pos_y','field_62ec3d05390bc'),(362318,43428,'hero_image_pos',''),(362319,43428,'_hero_image_pos','field_62ec3d05390ba'),(362320,43428,'fft_hide_from_listings','0'),(362321,43428,'_fft_hide_from_listings','field_61f1320446ab2'),(362322,43428,'fft_page_format','default'),(362323,43428,'_fft_page_format','field_61ae213f1f218'),(362324,43428,'fft_hide_nav','0'),(362325,43428,'_fft_hide_nav','field_635bd5e43527c'),(362326,43428,'fft_hide_header_call_to_action','0'),(362327,43428,'_fft_hide_header_call_to_action','field_635bd6723527d'),(362328,43428,'fft_page_sitemap','0'),(362329,43428,'_fft_page_sitemap','field_61af9b34e8181'),(362330,43428,'blocks','a:12:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:8:\"template\";i:4;s:10:\"split_5050\";i:5;s:13:\"step_timeline\";i:6;s:5:\"stats\";i:7;s:5:\"video\";i:8;s:5:\"quote\";i:9;s:5:\"icons\";i:10;s:4:\"form\";i:11;s:10:\"split_5050\";}'),(362331,43428,'_blocks','field_6176696113096'),(362332,43428,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(362333,43428,'_hero_actions_0_button','field_61757281285eb'),(362334,43428,'_thumbnail_id','36390'),(362335,43428,'__thumbnail_id','field_617570855ddaf'),(362336,43428,'blocks_0_acfe_flexible_toggle',''),(362337,43428,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(362338,43428,'blocks_0_acfe_flexible_layout_title','Section 2 USP'),(362339,43428,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(362340,43428,'blocks_0_options_theme','#b61234'),(362341,43428,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(362342,43428,'blocks_0_options_format','row'),(362343,43428,'_blocks_0_options_format','field_64bfde9a90690'),(362344,43428,'blocks_0_options',''),(362345,43428,'_blocks_0_options','field_64bfdd9b90684'),(362346,43428,'blocks_0_icon_row_items_0_icon','world.svg'),(362347,43428,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(362348,43428,'blocks_0_icon_row_items_0_label','Experience '),(362349,43428,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(362350,43428,'blocks_0_icon_row_items_0_text','Built on over 20 years dedicated experience and research '),(362351,43428,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(362352,43428,'blocks_0_icon_row_items_1_icon','magnifier.svg'),(362353,43428,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(362354,43428,'blocks_0_icon_row_items_1_label','Evidence '),(362355,43428,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(362356,43428,'blocks_0_icon_row_items_1_text','Biomechanics Education is built on extensive research and evidence-based models '),(362357,43428,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(362358,43428,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(362359,43428,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(362360,43428,'blocks_0_icon_row_items_2_label','Flexible '),(362361,43428,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(362362,43428,'blocks_0_icon_row_items_2_text','Our learning is delivered through blended learning, with a combination of online and practical '),(362363,43428,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(362364,43428,'blocks_0_icon_row_items_3_icon','star.svg'),(362365,43428,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(362366,43428,'blocks_0_icon_row_items_3_label','Recognised '),(362367,43428,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(362368,43428,'blocks_0_icon_row_items_3_text','Proudly part of the Future Fit Group and recognised a CIMSPA Enhancing training provider '),(362369,43428,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(362370,43428,'blocks_0_icon_row_items','4'),(362371,43428,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(362372,43428,'blocks_1_acfe_flexible_toggle',''),(362373,43428,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(362374,43428,'blocks_1_acfe_flexible_layout_title','Section 3 50/50 Split'),(362375,43428,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(362376,43428,'blocks_1_options_theme','#ffffff'),(362377,43428,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(362378,43428,'blocks_1_options_reverse','1'),(362379,43428,'_blocks_1_options_reverse','field_61768049bb8ac'),(362380,43428,'blocks_1_options',''),(362381,43428,'_blocks_1_options','field_617682517c334'),(362382,43428,'blocks_1_split_5050_image','41484'),(362383,43428,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(362384,43428,'blocks_1_split_5050_video',''),(362385,43428,'_blocks_1_split_5050_video','field_6239f3160848a'),(362386,43428,'blocks_1_split_5050_content_title',''),(362387,43428,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(362388,43428,'blocks_1_split_5050_content_heading','Improving movement through education  '),(362389,43428,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(362390,43428,'blocks_1_split_5050_content_text','With over twenty years of scientific research into intrinsic biomechanics, Biomechanics Education introduces a new way to optimise client performance through our Diploma in Biomechanics Coaching. Rather than being a diagnostic tool this revolutionary programme helps coaches, Personal Trainers, Pilates Instructors, and Sports Massage Therapists identify and mitigate health and movement risks in clients, enhancing movement quality. Professionally, Biomechanics Coaches can reduce client absenteeism and musculoskeletal issues.'),(362391,43428,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(362392,43428,'blocks_1_split_5050_content_actions','1'),(362393,43428,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(362394,43428,'blocks_1_split_5050_content',''),(362395,43428,'_blocks_1_split_5050_content','field_61767afceb8ba'),(362396,43428,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"Download Course Guide\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(362397,43428,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(362398,43428,'blocks_2_acfe_flexible_toggle',''),(362399,43428,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(362400,43428,'blocks_2_acfe_flexible_layout_title','Text Block'),(362401,43428,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(362402,43428,'blocks_2_options_theme','#ffffff'),(362403,43428,'_blocks_2_options_theme','field_6176830e2ad17'),(362404,43428,'blocks_2_options',''),(362405,43428,'_blocks_2_options','field_6176830e2ad16'),(362406,43428,'blocks_2_text_block_heading',''),(362407,43428,'_blocks_2_text_block_heading','field_617669d413097'),(362408,43428,'blocks_2_text_block_content','<h2 style=\"text-align: center;\">Proudly Working With</h2>'),(362409,43428,'_blocks_2_text_block_content','field_617669ec13098'),(362410,43428,'blocks_3_acfe_flexible_toggle',''),(362411,43428,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(362412,43428,'blocks_3_acfe_flexible_layout_title','Section 4 Quality and Trust Marker'),(362413,43428,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(362414,43428,'blocks_3_template','39207'),(362415,43428,'_blocks_3_template','field_617bdd570fe01'),(362416,43428,'blocks_4_acfe_flexible_toggle',''),(362417,43428,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(362418,43428,'blocks_4_acfe_flexible_layout_title','Section 5 Is BE right for you '),(362419,43428,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(362420,43428,'blocks_4_options_theme','#b61234'),(362421,43428,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(362422,43428,'blocks_4_options_reverse','0'),(362423,43428,'_blocks_4_options_reverse','field_61768049bb8ac'),(362424,43428,'blocks_4_options',''),(362425,43428,'_blocks_4_options','field_617682517c334'),(362426,43428,'blocks_4_split_5050_image','43427'),(362427,43428,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(362428,43428,'blocks_4_split_5050_video',''),(362429,43428,'_blocks_4_split_5050_video','field_6239f3160848a'),(362430,43428,'blocks_4_split_5050_content_title',''),(362431,43428,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(362432,43428,'blocks_4_split_5050_content_heading','Is Biomechanics Coaching for you? '),(362433,43428,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(362434,43428,'blocks_4_split_5050_content_text','We are perfectly positioned to enable professional movement practitioners, from Personal Trainers to Physiotherapists, to advance their offering and take their career to the next level. If you have clients that struggle with movement limitations that affect their training, or want to remove the guess work when optimising client or group performance then we’d love to support you in developing your knowledge of intrinsic biomechanics.'),(362435,43428,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(362436,43428,'blocks_4_split_5050_content_actions',''),(362437,43428,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(362438,43428,'blocks_4_split_5050_content',''),(362439,43428,'_blocks_4_split_5050_content','field_61767afceb8ba'),(362440,43428,'blocks_5_acfe_flexible_toggle',''),(362441,43428,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(362442,43428,'blocks_5_acfe_flexible_layout_title','Section 6 Intro to bio coach diploma'),(362443,43428,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(362444,43428,'blocks_5_options_theme','#ffffff'),(362445,43428,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(362446,43428,'blocks_5_options',''),(362447,43428,'_blocks_5_options','field_6177de53d1195'),(362448,43428,'blocks_5_timeline_content_title',''),(362449,43428,'_blocks_5_timeline_content_title','field_6177de53d1198'),(362450,43428,'blocks_5_timeline_content_heading','Diploma in Biomechanics Coaching '),(362451,43428,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(362452,43428,'blocks_5_timeline_content_text','Ready to unlock your client’s movement potential? Backed by over 20 years of research, the Diploma in Biomechanics Coaching equips you with interdisciplinary skills in movement analysis, prehabilitation, and risk reduction.\r\n\r\nWith some assessments comparing at 97% gold standard lab test accurate compared to an expensive isokinetic machine, you’ll master 42 assessments through online and practical workshops to offer tailored advice, reduce risk and enhance movement quality. Whether training elite athletes or beginners, this course helps you optimise performance and deliver results, while bridging the gap between exercise and therapy with advanced biomechanics knowledge.'),(362453,43428,'_blocks_5_timeline_content_text','field_6177de53d119a'),(362454,43428,'blocks_5_timeline_content_actions',''),(362455,43428,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(362456,43428,'blocks_5_timeline_content',''),(362457,43428,'_blocks_5_timeline_content','field_6177de53d1197'),(362458,43428,'blocks_5_timeline_items_0_title','Introduction to Intrinsic Biomechanics '),(362459,43428,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(362460,43428,'blocks_5_timeline_items_0_text',''),(362461,43428,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(362462,43428,'blocks_5_timeline_items_1_title','Shoulder, Knee and Foot Biomechanics  '),(362463,43428,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(362464,43428,'blocks_5_timeline_items_1_text',''),(362465,43428,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(362466,43428,'blocks_5_timeline_items_2_title','Pelvis and Spine Biomechanics  '),(362467,43428,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(362468,43428,'blocks_5_timeline_items_2_text',''),(362469,43428,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(362470,43428,'blocks_5_timeline_items_3_title','Back Health  '),(362471,43428,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(362472,43428,'blocks_5_timeline_items_3_text',''),(362473,43428,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(362474,43428,'blocks_5_timeline_items','4'),(362475,43428,'_blocks_5_timeline_items','field_6177de53d119d'),(362476,43428,'blocks_6_acfe_flexible_toggle',''),(362477,43428,'_blocks_6_acfe_flexible_toggle','field_layout_64b64f1da1db2_toggle'),(362478,43428,'blocks_6_acfe_flexible_layout_title','Section 7 Coach diploma details'),(362479,43428,'_blocks_6_acfe_flexible_layout_title','field_layout_64b64f1da1db2_title'),(362480,43428,'blocks_6_row_heading','Biomechanics Coach Diploma Details'),(362481,43428,'_blocks_6_row_heading','field_64b64f2ea1db7'),(362482,43428,'blocks_6_stats_0_label','Two-day workshops, diploma taught by blended learning '),(362483,43428,'_blocks_6_stats_0_label','field_64b64f4fa1dbb'),(362484,43428,'blocks_6_stats_0_value','2x'),(362485,43428,'_blocks_6_stats_0_value','field_64b64f58a1dbc'),(362486,43428,'blocks_6_stats_1_label','Total learning hours, with 80 guided learning hours  '),(362487,43428,'_blocks_6_stats_1_label','field_64b64f4fa1dbb'),(362488,43428,'blocks_6_stats_1_value','120'),(362489,43428,'_blocks_6_stats_1_value','field_64b64f58a1dbc'),(362490,43428,'blocks_6_stats_2_label','Weeks home study, with 1 practical assessment and critical analysis report. '),(362491,43428,'_blocks_6_stats_2_label','field_64b64f4fa1dbb'),(362492,43428,'blocks_6_stats_2_value','12'),(362493,43428,'_blocks_6_stats_2_value','field_64b64f58a1dbc'),(362494,43428,'blocks_6_stats','3'),(362495,43428,'_blocks_6_stats','field_64b64f24a1db4'),(362496,43428,'blocks_7_acfe_flexible_toggle',''),(362497,43428,'_blocks_7_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(362498,43428,'blocks_7_acfe_flexible_layout_title','Section 8 Video '),(362499,43428,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(362500,43428,'blocks_7_size','large'),(362501,43428,'_blocks_7_size','field_6487038f297c1'),(362502,43428,'blocks_7_row_content_title',''),(362503,43428,'_blocks_7_row_content_title','field_64870132a865d'),(362504,43428,'blocks_7_row_content_heading','Hear from our founder Rachel Frances'),(362505,43428,'_blocks_7_row_content_heading','field_64870142a865e'),(362506,43428,'blocks_7_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(362507,43428,'_blocks_7_row_content_text','field_64870148a865f'),(362508,43428,'blocks_7_row_content',''),(362509,43428,'_blocks_7_row_content','field_6487008ba865c'),(362510,43428,'blocks_7_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(362511,43428,'_blocks_7_video_src','field_6193c4a98ec07'),(362512,43428,'blocks_7_video_thumbnail',''),(362513,43428,'_blocks_7_video_thumbnail','field_6193c4a08ec06'),(362514,43428,'blocks_8_acfe_flexible_toggle',''),(362515,43428,'_blocks_8_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(362516,43428,'blocks_8_acfe_flexible_layout_title','Section 9 Quote'),(362517,43428,'_blocks_8_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(362518,43428,'blocks_8_quote_content','The information that is shared and discussed is extensive and the encouragement to learn and question is part of the process. There is a strong community and an amazing array of experience on hand.'),(362519,43428,'_blocks_8_quote_content','field_6177cdacdd67a'),(362520,43428,'blocks_8_quote_author','Isobel Pilkington, Biomechanics Coach Diploma graduate  '),(362521,43428,'_blocks_8_quote_author','field_6177cdc6dd67b'),(362522,43428,'blocks_9_acfe_flexible_toggle',''),(362523,43428,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(362524,43428,'blocks_9_acfe_flexible_layout_title','Why BE?'),(362525,43428,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(362526,43428,'blocks_9_options_theme','#ffffff'),(362527,43428,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(362528,43428,'blocks_9_options_format','grid'),(362529,43428,'_blocks_9_options_format','field_64bfde9a90690'),(362530,43428,'blocks_9_options',''),(362531,43428,'_blocks_9_options','field_64bfdd9b90684'),(362532,43428,'blocks_9_row_content_title',''),(362533,43428,'_blocks_9_row_content_title','field_64bfdd9b90687'),(362534,43428,'blocks_9_row_content_heading','Why Biomechanics Education'),(362535,43428,'_blocks_9_row_content_heading','field_64bfdd9b90688'),(362536,43428,'blocks_9_row_content_text','The Biomechanics Coaching Diploma can transform your career, whether pursued alone or alongside the courses in this guide. It also  deepens your understanding of your own movement. Here’s why it’s the right choice for you:'),(362537,43428,'_blocks_9_row_content_text','field_64bfdd9b90689'),(362538,43428,'blocks_9_row_content_actions',''),(362539,43428,'_blocks_9_row_content_actions','field_64bfdd9b9068a'),(362540,43428,'blocks_9_row_content',''),(362541,43428,'_blocks_9_row_content','field_64bfdd9b90686'),(362542,43428,'blocks_9_icon_row_items_0_icon','thumbs-up.svg'),(362543,43428,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(362544,43428,'blocks_9_icon_row_items_0_label','Evidence-Based Learning'),(362545,43428,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(362546,43428,'blocks_9_icon_row_items_0_text','For nearly 20 years, we’ve led the way in intrinsic biomechanics education,  offering a comprehensive, evidence-based musculoskeletal assessment  programme. This hands-on course is accessible to all learners, guided by  Master Trainers using an integrated systems approach.'),(362547,43428,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(362548,43428,'blocks_9_icon_row_items_1_icon','payment-plans.svg'),(362549,43428,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(362550,43428,'blocks_9_icon_row_items_1_label','Offer bespoke, premium packages'),(362551,43428,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(362552,43428,'blocks_9_icon_row_items_1_text','The Biomechanics Coaching Diploma distinguishes you from industry peers,  enabling you to attract clients with specific movement needs. If you’re aiming  to raise your rates, draw new clients, and retain loyal ones, then this is the  Diploma for you!'),(362553,43428,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(362554,43428,'blocks_9_icon_row_items_2_icon','qualification.svg'),(362555,43428,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(362556,43428,'blocks_9_icon_row_items_2_label','Unique training for you and your clients'),(362557,43428,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(362558,43428,'blocks_9_icon_row_items_2_text','As an enhancing recognised CIMSPA training provider and the only company  in the world delivering a Diploma in Biomechanics Coaching we specialise in  the growing field of reducing risk, post rehabilitation and prehabilitation. This  Diploma also enhances your own mobility and training—you’ll be your first  client, alongside peers on the same journey.'),(362559,43428,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(362560,43428,'blocks_9_icon_row_items_3_icon','star.svg'),(362561,43428,'_blocks_9_icon_row_items_3_icon','field_64bfdd9b9068d'),(362562,43428,'blocks_9_icon_row_items_3_label','Lifetime learning and support'),(362563,43428,'_blocks_9_icon_row_items_3_label','field_64bfdd9c9068e'),(362564,43428,'blocks_9_icon_row_items_3_text','Our courses are designed with your needs in mind. Learn at your own pace  without rigid deadlines or extension fees*, choosing when and where to study.  Workshops across the UK provide in-person support from Master Trainers to  reinforce your online learning.'),(362565,43428,'_blocks_9_icon_row_items_3_text','field_64bfdd9c9068f'),(362566,43428,'blocks_9_icon_row_items','4'),(362567,43428,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(362568,43428,'blocks_10_acfe_flexible_toggle',''),(362569,43428,'_blocks_10_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(362570,43428,'blocks_10_acfe_flexible_layout_title','Form [anchor]'),(362571,43428,'_blocks_10_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(362572,43428,'blocks_10_row_content_format','standard'),(362573,43428,'_blocks_10_row_content_format','field_6481ead962881'),(362574,43428,'blocks_10_row_content_title',''),(362575,43428,'_blocks_10_row_content_title','field_61a0f5f5b3db1'),(362576,43428,'blocks_10_row_content_heading','Elevate your career, without limitation  '),(362577,43428,'_blocks_10_row_content_heading','field_61a0f5f5b3db2'),(362578,43428,'blocks_10_row_content_text','Enquire today to receive a full course and price guide, to learn how Biomechanics Education can support you!'),(362579,43428,'_blocks_10_row_content_text','field_61a0f5f5b3db3'),(362580,43428,'blocks_10_row_content_actions',''),(362581,43428,'_blocks_10_row_content_actions','field_61a0f5f5b3db4'),(362582,43428,'blocks_10_row_content',''),(362583,43428,'_blocks_10_row_content','field_61a0f5f5b3db0'),(362584,43428,'blocks_10_row_form','40394'),(362585,43428,'_blocks_10_row_form','field_61a4ff2c0b08e'),(362586,43428,'blocks_10_row_form_button_label',''),(362587,43428,'_blocks_10_row_form_button_label','field_61e12cf6fe412'),(362588,43428,'blocks_11_acfe_flexible_toggle',''),(362589,43428,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(362590,43428,'blocks_11_acfe_flexible_layout_title','Section 11 Introduction '),(362591,43428,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(362592,43428,'blocks_11_options_theme','#ffffff'),(362593,43428,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(362594,43428,'blocks_11_options_reverse','1'),(362595,43428,'_blocks_11_options_reverse','field_61768049bb8ac'),(362596,43428,'blocks_11_options',''),(362597,43428,'_blocks_11_options','field_617682517c334'),(362598,43428,'blocks_11_split_5050_image','38960'),(362599,43428,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(362600,43428,'blocks_11_split_5050_video',''),(362601,43428,'_blocks_11_split_5050_video','field_6239f3160848a'),(362602,43428,'blocks_11_split_5050_content_title','Biomechanics Education and Future Fit'),(362603,43428,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(362604,43428,'blocks_11_split_5050_content_heading','Working in Partnership'),(362605,43428,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(362606,43428,'blocks_11_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(362607,43428,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(362608,43428,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(362609,43428,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(362610,43428,'blocks_11_split_5050_content_actions','1'),(362611,43428,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(362612,43428,'blocks_11_split_5050_content',''),(362613,43428,'_blocks_11_split_5050_content','field_61767afceb8ba'),(362614,43429,'hide_hero','0'),(362615,43429,'_hide_hero','field_66a2380fcda39'),(362616,43429,'hero_title','Welcome to Biomechanics Education '),(362617,43429,'_hero_title','field_617571fe285e8'),(362618,43429,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support every step of the way, from foundational knowledge to advanced, evidence-based training '),(362619,43429,'_hero_text','field_6175723c285e9'),(362620,43429,'hero_actions','1'),(362621,43429,'_hero_actions','field_61757270285ea'),(362622,43429,'hero_style','default'),(362623,43429,'_hero_style','field_62051d9dc5324'),(362624,43429,'hero_image_pos_x','right'),(362625,43429,'_hero_image_pos_x','field_62ec3d05390bb'),(362626,43429,'hero_image_pos_y','top'),(362627,43429,'_hero_image_pos_y','field_62ec3d05390bc'),(362628,43429,'hero_image_pos',''),(362629,43429,'_hero_image_pos','field_62ec3d05390ba'),(362630,43429,'fft_hide_from_listings','0'),(362631,43429,'_fft_hide_from_listings','field_61f1320446ab2'),(362632,43429,'fft_page_format','default'),(362633,43429,'_fft_page_format','field_61ae213f1f218'),(362634,43429,'fft_hide_nav','0'),(362635,43429,'_fft_hide_nav','field_635bd5e43527c'),(362636,43429,'fft_hide_header_call_to_action','0'),(362637,43429,'_fft_hide_header_call_to_action','field_635bd6723527d'),(362638,43429,'fft_page_sitemap','0'),(362639,43429,'_fft_page_sitemap','field_61af9b34e8181'),(362640,43429,'blocks','a:12:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:8:\"template\";i:4;s:10:\"split_5050\";i:5;s:13:\"step_timeline\";i:6;s:5:\"stats\";i:7;s:5:\"video\";i:8;s:5:\"quote\";i:9;s:5:\"icons\";i:10;s:4:\"form\";i:11;s:10:\"split_5050\";}'),(362641,43429,'_blocks','field_6176696113096'),(362642,43429,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(362643,43429,'_hero_actions_0_button','field_61757281285eb'),(362644,43429,'_thumbnail_id','36390'),(362645,43429,'__thumbnail_id','field_617570855ddaf'),(362646,43429,'blocks_0_acfe_flexible_toggle',''),(362647,43429,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(362648,43429,'blocks_0_acfe_flexible_layout_title','Section 2 USP'),(362649,43429,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(362650,43429,'blocks_0_options_theme','#b61234'),(362651,43429,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(362652,43429,'blocks_0_options_format','row'),(362653,43429,'_blocks_0_options_format','field_64bfde9a90690'),(362654,43429,'blocks_0_options',''),(362655,43429,'_blocks_0_options','field_64bfdd9b90684'),(362656,43429,'blocks_0_icon_row_items_0_icon','world.svg'),(362657,43429,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(362658,43429,'blocks_0_icon_row_items_0_label','Experience '),(362659,43429,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(362660,43429,'blocks_0_icon_row_items_0_text','Built on over 20 years dedicated experience and research '),(362661,43429,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(362662,43429,'blocks_0_icon_row_items_1_icon','magnifier.svg'),(362663,43429,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(362664,43429,'blocks_0_icon_row_items_1_label','Evidence '),(362665,43429,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(362666,43429,'blocks_0_icon_row_items_1_text','Biomechanics Education is built on extensive research and evidence-based models '),(362667,43429,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(362668,43429,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(362669,43429,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(362670,43429,'blocks_0_icon_row_items_2_label','Flexible '),(362671,43429,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(362672,43429,'blocks_0_icon_row_items_2_text','Our learning is delivered through blended learning, with a combination of online and practical '),(362673,43429,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(362674,43429,'blocks_0_icon_row_items_3_icon','star.svg'),(362675,43429,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(362676,43429,'blocks_0_icon_row_items_3_label','Recognised '),(362677,43429,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(362678,43429,'blocks_0_icon_row_items_3_text','Proudly part of the Future Fit Group and recognised a CIMSPA Enhancing training provider '),(362679,43429,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(362680,43429,'blocks_0_icon_row_items','4'),(362681,43429,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(362682,43429,'blocks_1_acfe_flexible_toggle',''),(362683,43429,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(362684,43429,'blocks_1_acfe_flexible_layout_title','Section 3 50/50 Split'),(362685,43429,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(362686,43429,'blocks_1_options_theme','#ffffff'),(362687,43429,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(362688,43429,'blocks_1_options_reverse','1'),(362689,43429,'_blocks_1_options_reverse','field_61768049bb8ac'),(362690,43429,'blocks_1_options',''),(362691,43429,'_blocks_1_options','field_617682517c334'),(362692,43429,'blocks_1_split_5050_image','41484'),(362693,43429,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(362694,43429,'blocks_1_split_5050_video',''),(362695,43429,'_blocks_1_split_5050_video','field_6239f3160848a'),(362696,43429,'blocks_1_split_5050_content_title',''),(362697,43429,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(362698,43429,'blocks_1_split_5050_content_heading','Improving movement through education  '),(362699,43429,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(362700,43429,'blocks_1_split_5050_content_text','With over twenty years of scientific research into intrinsic biomechanics, Biomechanics Education introduces a new way to optimise client performance through our Diploma in Biomechanics Coaching. Rather than being a diagnostic tool this revolutionary programme helps coaches, Personal Trainers, Pilates Instructors, and Sports Massage Therapists identify and mitigate health and movement risks in clients, enhancing movement quality. Professionally, Biomechanics Coaches can reduce client absenteeism and musculoskeletal issues.'),(362701,43429,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(362702,43429,'blocks_1_split_5050_content_actions','1'),(362703,43429,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(362704,43429,'blocks_1_split_5050_content',''),(362705,43429,'_blocks_1_split_5050_content','field_61767afceb8ba'),(362706,43429,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"Download Course Guide\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(362707,43429,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(362708,43429,'blocks_2_acfe_flexible_toggle',''),(362709,43429,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(362710,43429,'blocks_2_acfe_flexible_layout_title','Text Block'),(362711,43429,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(362712,43429,'blocks_2_options_theme','#ffffff'),(362713,43429,'_blocks_2_options_theme','field_6176830e2ad17'),(362714,43429,'blocks_2_options',''),(362715,43429,'_blocks_2_options','field_6176830e2ad16'),(362716,43429,'blocks_2_text_block_heading',''),(362717,43429,'_blocks_2_text_block_heading','field_617669d413097'),(362718,43429,'blocks_2_text_block_content','<h2 style=\"text-align: center;\">Proudly Working With</h2>'),(362719,43429,'_blocks_2_text_block_content','field_617669ec13098'),(362720,43429,'blocks_3_acfe_flexible_toggle',''),(362721,43429,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(362722,43429,'blocks_3_acfe_flexible_layout_title','Section 4 Quality and Trust Marker'),(362723,43429,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(362724,43429,'blocks_3_template','39207'),(362725,43429,'_blocks_3_template','field_617bdd570fe01'),(362726,43429,'blocks_4_acfe_flexible_toggle',''),(362727,43429,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(362728,43429,'blocks_4_acfe_flexible_layout_title','Section 5 Is BE right for you '),(362729,43429,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(362730,43429,'blocks_4_options_theme','#b61234'),(362731,43429,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(362732,43429,'blocks_4_options_reverse','0'),(362733,43429,'_blocks_4_options_reverse','field_61768049bb8ac'),(362734,43429,'blocks_4_options',''),(362735,43429,'_blocks_4_options','field_617682517c334'),(362736,43429,'blocks_4_split_5050_image','43427'),(362737,43429,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(362738,43429,'blocks_4_split_5050_video',''),(362739,43429,'_blocks_4_split_5050_video','field_6239f3160848a'),(362740,43429,'blocks_4_split_5050_content_title',''),(362741,43429,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(362742,43429,'blocks_4_split_5050_content_heading','Is Biomechanics Coaching for you? '),(362743,43429,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(362744,43429,'blocks_4_split_5050_content_text','We are perfectly positioned to enable professional movement practitioners, from Personal Trainers to Physiotherapists, to advance their offering and take their career to the next level. If you have clients that struggle with movement limitations that affect their training, or want to remove the guess work when optimising client or group performance then we’d love to support you in developing your knowledge of intrinsic biomechanics.'),(362745,43429,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(362746,43429,'blocks_4_split_5050_content_actions',''),(362747,43429,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(362748,43429,'blocks_4_split_5050_content',''),(362749,43429,'_blocks_4_split_5050_content','field_61767afceb8ba'),(362750,43429,'blocks_5_acfe_flexible_toggle',''),(362751,43429,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(362752,43429,'blocks_5_acfe_flexible_layout_title','Section 6 Intro to bio coach diploma'),(362753,43429,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(362754,43429,'blocks_5_options_theme','#ffffff'),(362755,43429,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(362756,43429,'blocks_5_options',''),(362757,43429,'_blocks_5_options','field_6177de53d1195'),(362758,43429,'blocks_5_timeline_content_title',''),(362759,43429,'_blocks_5_timeline_content_title','field_6177de53d1198'),(362760,43429,'blocks_5_timeline_content_heading','Diploma in Biomechanics Coaching '),(362761,43429,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(362762,43429,'blocks_5_timeline_content_text','Ready to unlock your client’s movement potential? Backed by over 20 years of research, the Diploma in Biomechanics Coaching equips you with interdisciplinary skills in movement analysis, prehabilitation, and risk reduction.\r\n\r\nWith some assessments comparing at 97% gold standard lab test accurate compared to an expensive isokinetic machine, you’ll master 42 assessments through online and practical workshops to offer tailored advice, reduce risk and enhance movement quality. Whether training elite athletes or beginners, this course helps you optimise performance and deliver results, while bridging the gap between exercise and therapy with advanced biomechanics knowledge.'),(362763,43429,'_blocks_5_timeline_content_text','field_6177de53d119a'),(362764,43429,'blocks_5_timeline_content_actions',''),(362765,43429,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(362766,43429,'blocks_5_timeline_content',''),(362767,43429,'_blocks_5_timeline_content','field_6177de53d1197'),(362768,43429,'blocks_5_timeline_items_0_title','Introduction to Intrinsic Biomechanics '),(362769,43429,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(362770,43429,'blocks_5_timeline_items_0_text',''),(362771,43429,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(362772,43429,'blocks_5_timeline_items_1_title','Shoulder, Knee and Foot Biomechanics  '),(362773,43429,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(362774,43429,'blocks_5_timeline_items_1_text',''),(362775,43429,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(362776,43429,'blocks_5_timeline_items_2_title','Pelvis and Spine Biomechanics  '),(362777,43429,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(362778,43429,'blocks_5_timeline_items_2_text',''),(362779,43429,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(362780,43429,'blocks_5_timeline_items_3_title','Back Health  '),(362781,43429,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(362782,43429,'blocks_5_timeline_items_3_text',''),(362783,43429,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(362784,43429,'blocks_5_timeline_items','4'),(362785,43429,'_blocks_5_timeline_items','field_6177de53d119d'),(362786,43429,'blocks_6_acfe_flexible_toggle',''),(362787,43429,'_blocks_6_acfe_flexible_toggle','field_layout_64b64f1da1db2_toggle'),(362788,43429,'blocks_6_acfe_flexible_layout_title','Section 7 Coach diploma details'),(362789,43429,'_blocks_6_acfe_flexible_layout_title','field_layout_64b64f1da1db2_title'),(362790,43429,'blocks_6_row_heading','Biomechanics Coach Diploma Details'),(362791,43429,'_blocks_6_row_heading','field_64b64f2ea1db7'),(362792,43429,'blocks_6_stats_0_label','Two-day workshops, diploma taught by blended learning '),(362793,43429,'_blocks_6_stats_0_label','field_64b64f4fa1dbb'),(362794,43429,'blocks_6_stats_0_value','2x'),(362795,43429,'_blocks_6_stats_0_value','field_64b64f58a1dbc'),(362796,43429,'blocks_6_stats_1_label','Total learning hours, with 80 guided learning hours  '),(362797,43429,'_blocks_6_stats_1_label','field_64b64f4fa1dbb'),(362798,43429,'blocks_6_stats_1_value','120'),(362799,43429,'_blocks_6_stats_1_value','field_64b64f58a1dbc'),(362800,43429,'blocks_6_stats_2_label','Weeks home study, with 1 practical assessment and critical analysis report. '),(362801,43429,'_blocks_6_stats_2_label','field_64b64f4fa1dbb'),(362802,43429,'blocks_6_stats_2_value','12'),(362803,43429,'_blocks_6_stats_2_value','field_64b64f58a1dbc'),(362804,43429,'blocks_6_stats','3'),(362805,43429,'_blocks_6_stats','field_64b64f24a1db4'),(362806,43429,'blocks_7_acfe_flexible_toggle',''),(362807,43429,'_blocks_7_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(362808,43429,'blocks_7_acfe_flexible_layout_title','Section 8 Video '),(362809,43429,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(362810,43429,'blocks_7_size','large'),(362811,43429,'_blocks_7_size','field_6487038f297c1'),(362812,43429,'blocks_7_row_content_title',''),(362813,43429,'_blocks_7_row_content_title','field_64870132a865d'),(362814,43429,'blocks_7_row_content_heading','Hear from our founder Rachel Frances Thomson'),(362815,43429,'_blocks_7_row_content_heading','field_64870142a865e'),(362816,43429,'blocks_7_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(362817,43429,'_blocks_7_row_content_text','field_64870148a865f'),(362818,43429,'blocks_7_row_content',''),(362819,43429,'_blocks_7_row_content','field_6487008ba865c'),(362820,43429,'blocks_7_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(362821,43429,'_blocks_7_video_src','field_6193c4a98ec07'),(362822,43429,'blocks_7_video_thumbnail',''),(362823,43429,'_blocks_7_video_thumbnail','field_6193c4a08ec06'),(362824,43429,'blocks_8_acfe_flexible_toggle',''),(362825,43429,'_blocks_8_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(362826,43429,'blocks_8_acfe_flexible_layout_title','Section 9 Quote'),(362827,43429,'_blocks_8_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(362828,43429,'blocks_8_quote_content','The information that is shared and discussed is extensive and the encouragement to learn and question is part of the process. There is a strong community and an amazing array of experience on hand. - Isobel Pilkington, Biomechanics Coach Diploma graduate  '),(362829,43429,'_blocks_8_quote_content','field_6177cdacdd67a'),(362830,43429,'blocks_8_quote_author','Isobel Pilkington, Biomechanics Coach Diploma graduate  '),(362831,43429,'_blocks_8_quote_author','field_6177cdc6dd67b'),(362832,43429,'blocks_9_acfe_flexible_toggle',''),(362833,43429,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(362834,43429,'blocks_9_acfe_flexible_layout_title','Why BE?'),(362835,43429,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(362836,43429,'blocks_9_options_theme','#ffffff'),(362837,43429,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(362838,43429,'blocks_9_options_format','grid'),(362839,43429,'_blocks_9_options_format','field_64bfde9a90690'),(362840,43429,'blocks_9_options',''),(362841,43429,'_blocks_9_options','field_64bfdd9b90684'),(362842,43429,'blocks_9_row_content_title',''),(362843,43429,'_blocks_9_row_content_title','field_64bfdd9b90687'),(362844,43429,'blocks_9_row_content_heading','Why Biomechanics Education'),(362845,43429,'_blocks_9_row_content_heading','field_64bfdd9b90688'),(362846,43429,'blocks_9_row_content_text','The Biomechanics Coaching Diploma can transform your career, whether pursued alone or alongside the courses in this guide. It also  deepens your understanding of your own movement. Here’s why it’s the right choice for you:'),(362847,43429,'_blocks_9_row_content_text','field_64bfdd9b90689'),(362848,43429,'blocks_9_row_content_actions',''),(362849,43429,'_blocks_9_row_content_actions','field_64bfdd9b9068a'),(362850,43429,'blocks_9_row_content',''),(362851,43429,'_blocks_9_row_content','field_64bfdd9b90686'),(362852,43429,'blocks_9_icon_row_items_0_icon','thumbs-up.svg'),(362853,43429,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(362854,43429,'blocks_9_icon_row_items_0_label','Evidence-Based Learning'),(362855,43429,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(362856,43429,'blocks_9_icon_row_items_0_text','For nearly 20 years, we’ve led the way in intrinsic biomechanics education,  offering a comprehensive, evidence-based musculoskeletal assessment  programme. This hands-on course is accessible to all learners, guided by  Master Trainers using an integrated systems approach.'),(362857,43429,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(362858,43429,'blocks_9_icon_row_items_1_icon','payment-plans.svg'),(362859,43429,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(362860,43429,'blocks_9_icon_row_items_1_label','Offer bespoke, premium packages'),(362861,43429,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(362862,43429,'blocks_9_icon_row_items_1_text','The Biomechanics Coaching Diploma distinguishes you from industry peers,  enabling you to attract clients with specific movement needs. If you’re aiming  to raise your rates, draw new clients, and retain loyal ones, then this is the  Diploma for you!'),(362863,43429,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(362864,43429,'blocks_9_icon_row_items_2_icon','qualification.svg'),(362865,43429,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(362866,43429,'blocks_9_icon_row_items_2_label','Unique training for you and your clients'),(362867,43429,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(362868,43429,'blocks_9_icon_row_items_2_text','As an enhancing recognised CIMSPA training provider and the only company  in the world delivering a Diploma in Biomechanics Coaching we specialise in  the growing field of reducing risk, post rehabilitation and prehabilitation. This  Diploma also enhances your own mobility and training—you’ll be your first  client, alongside peers on the same journey.'),(362869,43429,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(362870,43429,'blocks_9_icon_row_items_3_icon','star.svg'),(362871,43429,'_blocks_9_icon_row_items_3_icon','field_64bfdd9b9068d'),(362872,43429,'blocks_9_icon_row_items_3_label','Lifetime learning and support'),(362873,43429,'_blocks_9_icon_row_items_3_label','field_64bfdd9c9068e'),(362874,43429,'blocks_9_icon_row_items_3_text','Our courses are designed with your needs in mind. Learn at your own pace  without rigid deadlines or extension fees*, choosing when and where to study.  Workshops across the UK provide in-person support from Master Trainers to  reinforce your online learning.'),(362875,43429,'_blocks_9_icon_row_items_3_text','field_64bfdd9c9068f'),(362876,43429,'blocks_9_icon_row_items','4'),(362877,43429,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(362878,43429,'blocks_10_acfe_flexible_toggle',''),(362879,43429,'_blocks_10_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(362880,43429,'blocks_10_acfe_flexible_layout_title','Form [anchor]'),(362881,43429,'_blocks_10_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(362882,43429,'blocks_10_row_content_format','standard'),(362883,43429,'_blocks_10_row_content_format','field_6481ead962881'),(362884,43429,'blocks_10_row_content_title',''),(362885,43429,'_blocks_10_row_content_title','field_61a0f5f5b3db1'),(362886,43429,'blocks_10_row_content_heading','Elevate your career, without limitation  '),(362887,43429,'_blocks_10_row_content_heading','field_61a0f5f5b3db2'),(362888,43429,'blocks_10_row_content_text','Enquire today to receive a full course and price guide, to learn how Biomechanics Education can support you!'),(362889,43429,'_blocks_10_row_content_text','field_61a0f5f5b3db3'),(362890,43429,'blocks_10_row_content_actions',''),(362891,43429,'_blocks_10_row_content_actions','field_61a0f5f5b3db4'),(362892,43429,'blocks_10_row_content',''),(362893,43429,'_blocks_10_row_content','field_61a0f5f5b3db0'),(362894,43429,'blocks_10_row_form','40394'),(362895,43429,'_blocks_10_row_form','field_61a4ff2c0b08e'),(362896,43429,'blocks_10_row_form_button_label',''),(362897,43429,'_blocks_10_row_form_button_label','field_61e12cf6fe412'),(362898,43429,'blocks_11_acfe_flexible_toggle',''),(362899,43429,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(362900,43429,'blocks_11_acfe_flexible_layout_title','Section 11 Introduction '),(362901,43429,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(362902,43429,'blocks_11_options_theme','#ffffff'),(362903,43429,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(362904,43429,'blocks_11_options_reverse','1'),(362905,43429,'_blocks_11_options_reverse','field_61768049bb8ac'),(362906,43429,'blocks_11_options',''),(362907,43429,'_blocks_11_options','field_617682517c334'),(362908,43429,'blocks_11_split_5050_image','38960'),(362909,43429,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(362910,43429,'blocks_11_split_5050_video',''),(362911,43429,'_blocks_11_split_5050_video','field_6239f3160848a'),(362912,43429,'blocks_11_split_5050_content_title','Biomechanics Education and Future Fit'),(362913,43429,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(362914,43429,'blocks_11_split_5050_content_heading','Working in Partnership'),(362915,43429,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(362916,43429,'blocks_11_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(362917,43429,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(362918,43429,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(362919,43429,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(362920,43429,'blocks_11_split_5050_content_actions','1'),(362921,43429,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(362922,43429,'blocks_11_split_5050_content',''),(362923,43429,'_blocks_11_split_5050_content','field_61767afceb8ba'),(362924,43430,'hide_hero','0'),(362925,43430,'_hide_hero','field_66a2380fcda39'),(362926,43430,'hero_title','Welcome to Biomechanics Education '),(362927,43430,'_hero_title','field_617571fe285e8'),(362928,43430,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support every step of the way, from foundational knowledge to advanced, evidence-based training '),(362929,43430,'_hero_text','field_6175723c285e9'),(362930,43430,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(362931,43430,'_hero_actions_0_button','field_61757281285eb'),(362932,43430,'hero_actions','1'),(362933,43430,'_hero_actions','field_61757270285ea'),(362934,43430,'hero_style','default'),(362935,43430,'_hero_style','field_62051d9dc5324'),(362936,43430,'_thumbnail_id','36390'),(362937,43430,'__thumbnail_id','field_617570855ddaf'),(362938,43430,'hero_image_pos_x','right'),(362939,43430,'_hero_image_pos_x','field_62ec3d05390bb'),(362940,43430,'hero_image_pos_y','top'),(362941,43430,'_hero_image_pos_y','field_62ec3d05390bc'),(362942,43430,'hero_image_pos',''),(362943,43430,'_hero_image_pos','field_62ec3d05390ba'),(362944,43430,'fft_hide_from_listings','0'),(362945,43430,'_fft_hide_from_listings','field_61f1320446ab2'),(362946,43430,'fft_page_format','default'),(362947,43430,'_fft_page_format','field_61ae213f1f218'),(362948,43430,'fft_hide_nav','0'),(362949,43430,'_fft_hide_nav','field_635bd5e43527c'),(362950,43430,'fft_hide_header_call_to_action','0'),(362951,43430,'_fft_hide_header_call_to_action','field_635bd6723527d'),(362952,43430,'fft_page_sitemap','0'),(362953,43430,'_fft_page_sitemap','field_61af9b34e8181'),(362954,43430,'blocks_0_acfe_flexible_toggle',''),(362955,43430,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(362956,43430,'blocks_0_acfe_flexible_layout_title','Section 2 USP'),(362957,43430,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(362958,43430,'blocks_0_options_theme','#b61234'),(362959,43430,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(362960,43430,'blocks_0_options_format','row'),(362961,43430,'_blocks_0_options_format','field_64bfde9a90690'),(362962,43430,'blocks_0_options',''),(362963,43430,'_blocks_0_options','field_64bfdd9b90684'),(362964,43430,'blocks_0_icon_row_items_0_icon','world.svg'),(362965,43430,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(362966,43430,'blocks_0_icon_row_items_0_label','Experience '),(362967,43430,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(362968,43430,'blocks_0_icon_row_items_0_text','Built on over 20 years dedicated experience and research '),(362969,43430,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(362970,43430,'blocks_0_icon_row_items_1_icon','magnifier.svg'),(362971,43430,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(362972,43430,'blocks_0_icon_row_items_1_label','Evidence '),(362973,43430,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(362974,43430,'blocks_0_icon_row_items_1_text','Biomechanics Education is built on extensive research and evidence-based models '),(362975,43430,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(362976,43430,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(362977,43430,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(362978,43430,'blocks_0_icon_row_items_2_label','Flexible '),(362979,43430,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(362980,43430,'blocks_0_icon_row_items_2_text','Our learning is delivered through blended learning, with a combination of online and practical '),(362981,43430,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(362982,43430,'blocks_0_icon_row_items_3_icon','star.svg'),(362983,43430,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(362984,43430,'blocks_0_icon_row_items_3_label','Recognised '),(362985,43430,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(362986,43430,'blocks_0_icon_row_items_3_text','Proudly part of the Future Fit Group and recognised a CIMSPA Enhancing training provider '),(362987,43430,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(362988,43430,'blocks_0_icon_row_items','4'),(362989,43430,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(362990,43430,'blocks_1_acfe_flexible_toggle',''),(362991,43430,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(362992,43430,'blocks_1_acfe_flexible_layout_title','Section 3 50/50 Split'),(362993,43430,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(362994,43430,'blocks_1_options_theme','#ffffff'),(362995,43430,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(362996,43430,'blocks_1_options_reverse','1'),(362997,43430,'_blocks_1_options_reverse','field_61768049bb8ac'),(362998,43430,'blocks_1_options',''),(362999,43430,'_blocks_1_options','field_617682517c334'),(363000,43430,'blocks_1_split_5050_image','41484'),(363001,43430,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(363002,43430,'blocks_1_split_5050_video',''),(363003,43430,'_blocks_1_split_5050_video','field_6239f3160848a'),(363004,43430,'blocks_1_split_5050_content_title',''),(363005,43430,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(363006,43430,'blocks_1_split_5050_content_heading','Improving movement through education  '),(363007,43430,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(363008,43430,'blocks_1_split_5050_content_text','With over twenty years of scientific research into intrinsic biomechanics, Biomechanics Education introduces a new way to optimise client performance through our Diploma in Biomechanics Coaching. Rather than being a diagnostic tool this revolutionary programme helps coaches, Personal Trainers, Pilates Instructors, and Sports Massage Therapists identify and mitigate health and movement risks in clients, enhancing movement quality. Professionally, Biomechanics Coaches can reduce client absenteeism and musculoskeletal issues.'),(363009,43430,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(363010,43430,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"Download Course Guide\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(363011,43430,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(363012,43430,'blocks_1_split_5050_content_actions','1'),(363013,43430,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(363014,43430,'blocks_1_split_5050_content',''),(363015,43430,'_blocks_1_split_5050_content','field_61767afceb8ba'),(363016,43430,'blocks_2_acfe_flexible_toggle',''),(363017,43430,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(363018,43430,'blocks_2_acfe_flexible_layout_title','Text Block'),(363019,43430,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(363020,43430,'blocks_2_options_theme','#ffffff'),(363021,43430,'_blocks_2_options_theme','field_6176830e2ad17'),(363022,43430,'blocks_2_options',''),(363023,43430,'_blocks_2_options','field_6176830e2ad16'),(363024,43430,'blocks_2_text_block_heading',''),(363025,43430,'_blocks_2_text_block_heading','field_617669d413097'),(363026,43430,'blocks_2_text_block_content','<h2 style=\"text-align: center;\">Proudly Working With</h2>'),(363027,43430,'_blocks_2_text_block_content','field_617669ec13098'),(363028,43430,'blocks_3_acfe_flexible_toggle',''),(363029,43430,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(363030,43430,'blocks_3_acfe_flexible_layout_title','Section 4 Quality and Trust Marker'),(363031,43430,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(363032,43430,'blocks_3_template','39207'),(363033,43430,'_blocks_3_template','field_617bdd570fe01'),(363034,43430,'blocks_4_acfe_flexible_toggle',''),(363035,43430,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(363036,43430,'blocks_4_acfe_flexible_layout_title','Section 5 Is BE right for you '),(363037,43430,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(363038,43430,'blocks_4_options_theme','#b61234'),(363039,43430,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(363040,43430,'blocks_4_options_reverse','0'),(363041,43430,'_blocks_4_options_reverse','field_61768049bb8ac'),(363042,43430,'blocks_4_options',''),(363043,43430,'_blocks_4_options','field_617682517c334'),(363044,43430,'blocks_4_split_5050_image','43427'),(363045,43430,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(363046,43430,'blocks_4_split_5050_video',''),(363047,43430,'_blocks_4_split_5050_video','field_6239f3160848a'),(363048,43430,'blocks_4_split_5050_content_title',''),(363049,43430,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(363050,43430,'blocks_4_split_5050_content_heading','Is Biomechanics Coaching for you? '),(363051,43430,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(363052,43430,'blocks_4_split_5050_content_text','We are perfectly positioned to enable professional movement practitioners, from Personal Trainers to Physiotherapists, to advance their offering and take their career to the next level. If you have clients that struggle with movement limitations that affect their training, or want to remove the guess work when optimising client or group performance then we’d love to support you in developing your knowledge of intrinsic biomechanics.'),(363053,43430,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(363054,43430,'blocks_4_split_5050_content_actions',''),(363055,43430,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(363056,43430,'blocks_4_split_5050_content',''),(363057,43430,'_blocks_4_split_5050_content','field_61767afceb8ba'),(363058,43430,'blocks_5_acfe_flexible_toggle',''),(363059,43430,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(363060,43430,'blocks_5_acfe_flexible_layout_title','Section 6 Intro to bio coach diploma'),(363061,43430,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(363062,43430,'blocks_5_options_theme','#ffffff'),(363063,43430,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(363064,43430,'blocks_5_options',''),(363065,43430,'_blocks_5_options','field_6177de53d1195'),(363066,43430,'blocks_5_timeline_content_title',''),(363067,43430,'_blocks_5_timeline_content_title','field_6177de53d1198'),(363068,43430,'blocks_5_timeline_content_heading','Diploma in Biomechanics Coaching '),(363069,43430,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(363070,43430,'blocks_5_timeline_content_text','Ready to unlock your client’s movement potential? Backed by over 20 years of research, the Diploma in Biomechanics Coaching equips you with interdisciplinary skills in movement analysis, prehabilitation, and risk reduction.\r\n\r\nWith some assessments comparing at 97% gold standard lab test accurate compared to an expensive isokinetic machine, you’ll master 42 assessments through online and practical workshops to offer tailored advice, reduce risk and enhance movement quality. Whether training elite athletes or beginners, this course helps you optimise performance and deliver results, while bridging the gap between exercise and therapy with advanced biomechanics knowledge.'),(363071,43430,'_blocks_5_timeline_content_text','field_6177de53d119a'),(363072,43430,'blocks_5_timeline_content_actions',''),(363073,43430,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(363074,43430,'blocks_5_timeline_content',''),(363075,43430,'_blocks_5_timeline_content','field_6177de53d1197'),(363076,43430,'blocks_5_timeline_items_0_title','Introduction to Intrinsic Biomechanics '),(363077,43430,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(363078,43430,'blocks_5_timeline_items_0_text',''),(363079,43430,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(363080,43430,'blocks_5_timeline_items_1_title','Shoulder, Knee and Foot Biomechanics  '),(363081,43430,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(363082,43430,'blocks_5_timeline_items_1_text',''),(363083,43430,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(363084,43430,'blocks_5_timeline_items_2_title','Pelvis and Spine Biomechanics  '),(363085,43430,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(363086,43430,'blocks_5_timeline_items_2_text',''),(363087,43430,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(363088,43430,'blocks_5_timeline_items_3_title','Back Health  '),(363089,43430,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(363090,43430,'blocks_5_timeline_items_3_text',''),(363091,43430,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(363092,43430,'blocks_5_timeline_items','4'),(363093,43430,'_blocks_5_timeline_items','field_6177de53d119d'),(363094,43430,'blocks_6_acfe_flexible_toggle',''),(363095,43430,'_blocks_6_acfe_flexible_toggle','field_layout_64b64f1da1db2_toggle'),(363096,43430,'blocks_6_acfe_flexible_layout_title','Section 7 Coach diploma details'),(363097,43430,'_blocks_6_acfe_flexible_layout_title','field_layout_64b64f1da1db2_title'),(363098,43430,'blocks_6_row_heading','Biomechanics Coach Diploma Details'),(363099,43430,'_blocks_6_row_heading','field_64b64f2ea1db7'),(363100,43430,'blocks_6_stats_0_label','Two-day workshops, diploma taught by blended learning '),(363101,43430,'_blocks_6_stats_0_label','field_64b64f4fa1dbb'),(363102,43430,'blocks_6_stats_0_value','2x'),(363103,43430,'_blocks_6_stats_0_value','field_64b64f58a1dbc'),(363104,43430,'blocks_6_stats_1_label','Total learning hours, with 80 guided learning hours  '),(363105,43430,'_blocks_6_stats_1_label','field_64b64f4fa1dbb'),(363106,43430,'blocks_6_stats_1_value','120'),(363107,43430,'_blocks_6_stats_1_value','field_64b64f58a1dbc'),(363108,43430,'blocks_6_stats_2_label','Weeks home study, with 1 practical assessment and critical analysis report. '),(363109,43430,'_blocks_6_stats_2_label','field_64b64f4fa1dbb'),(363110,43430,'blocks_6_stats_2_value','12'),(363111,43430,'_blocks_6_stats_2_value','field_64b64f58a1dbc'),(363112,43430,'blocks_6_stats','3'),(363113,43430,'_blocks_6_stats','field_64b64f24a1db4'),(363114,43430,'blocks_7_acfe_flexible_toggle',''),(363115,43430,'_blocks_7_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(363116,43430,'blocks_7_acfe_flexible_layout_title','Section 8 Video '),(363117,43430,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(363118,43430,'blocks_7_size','large'),(363119,43430,'_blocks_7_size','field_6487038f297c1'),(363120,43430,'blocks_7_row_content_title',''),(363121,43430,'_blocks_7_row_content_title','field_64870132a865d'),(363122,43430,'blocks_7_row_content_heading','Hear from our founder Rachel Frances Thomson'),(363123,43430,'_blocks_7_row_content_heading','field_64870142a865e'),(363124,43430,'blocks_7_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(363125,43430,'_blocks_7_row_content_text','field_64870148a865f'),(363126,43430,'blocks_7_row_content',''),(363127,43430,'_blocks_7_row_content','field_6487008ba865c'),(363128,43430,'blocks_7_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(363129,43430,'_blocks_7_video_src','field_6193c4a98ec07'),(363130,43430,'blocks_7_video_thumbnail',''),(363131,43430,'_blocks_7_video_thumbnail','field_6193c4a08ec06'),(363132,43430,'blocks_8_acfe_flexible_toggle',''),(363133,43430,'_blocks_8_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(363134,43430,'blocks_8_acfe_flexible_layout_title','Section 9 Quote'),(363135,43430,'_blocks_8_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(363136,43430,'blocks_8_quote_content','The information that is shared and discussed is extensive and the encouragement to learn and question is part of the process. There is a strong community and an amazing array of experience on hand.\r\nIsobel Pilkington, Biomechanics Coach Diploma graduate  '),(363137,43430,'_blocks_8_quote_content','field_6177cdacdd67a'),(363138,43430,'blocks_8_quote_author','Isobel Pilkington, Biomechanics Coach Diploma graduate  '),(363139,43430,'_blocks_8_quote_author','field_6177cdc6dd67b'),(363140,43430,'blocks_9_acfe_flexible_toggle',''),(363141,43430,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(363142,43430,'blocks_9_acfe_flexible_layout_title','Why BE?'),(363143,43430,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(363144,43430,'blocks_9_options_theme','#ffffff'),(363145,43430,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(363146,43430,'blocks_9_options_format','grid'),(363147,43430,'_blocks_9_options_format','field_64bfde9a90690'),(363148,43430,'blocks_9_options',''),(363149,43430,'_blocks_9_options','field_64bfdd9b90684'),(363150,43430,'blocks_9_row_content_title',''),(363151,43430,'_blocks_9_row_content_title','field_64bfdd9b90687'),(363152,43430,'blocks_9_row_content_heading','Why Biomechanics Education'),(363153,43430,'_blocks_9_row_content_heading','field_64bfdd9b90688'),(363154,43430,'blocks_9_row_content_text','The Biomechanics Coaching Diploma can transform your career, whether pursued alone or alongside the courses in this guide. It also  deepens your understanding of your own movement. Here’s why it’s the right choice for you:'),(363155,43430,'_blocks_9_row_content_text','field_64bfdd9b90689'),(363156,43430,'blocks_9_row_content_actions',''),(363157,43430,'_blocks_9_row_content_actions','field_64bfdd9b9068a'),(363158,43430,'blocks_9_row_content',''),(363159,43430,'_blocks_9_row_content','field_64bfdd9b90686'),(363160,43430,'blocks_9_icon_row_items_0_icon','thumbs-up.svg'),(363161,43430,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(363162,43430,'blocks_9_icon_row_items_0_label','Evidence-Based Learning'),(363163,43430,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(363164,43430,'blocks_9_icon_row_items_0_text','For nearly 20 years, we’ve led the way in intrinsic biomechanics education,  offering a comprehensive, evidence-based musculoskeletal assessment  programme. This hands-on course is accessible to all learners, guided by  Master Trainers using an integrated systems approach.'),(363165,43430,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(363166,43430,'blocks_9_icon_row_items_1_icon','payment-plans.svg'),(363167,43430,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(363168,43430,'blocks_9_icon_row_items_1_label','Offer bespoke, premium packages'),(363169,43430,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(363170,43430,'blocks_9_icon_row_items_1_text','The Biomechanics Coaching Diploma distinguishes you from industry peers,  enabling you to attract clients with specific movement needs. If you’re aiming  to raise your rates, draw new clients, and retain loyal ones, then this is the  Diploma for you!'),(363171,43430,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(363172,43430,'blocks_9_icon_row_items_2_icon','qualification.svg'),(363173,43430,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(363174,43430,'blocks_9_icon_row_items_2_label','Unique training for you and your clients'),(363175,43430,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(363176,43430,'blocks_9_icon_row_items_2_text','As an enhancing recognised CIMSPA training provider and the only company  in the world delivering a Diploma in Biomechanics Coaching we specialise in  the growing field of reducing risk, post rehabilitation and prehabilitation. This  Diploma also enhances your own mobility and training—you’ll be your first  client, alongside peers on the same journey.'),(363177,43430,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(363178,43430,'blocks_9_icon_row_items_3_icon','star.svg'),(363179,43430,'_blocks_9_icon_row_items_3_icon','field_64bfdd9b9068d'),(363180,43430,'blocks_9_icon_row_items_3_label','Lifetime learning and support'),(363181,43430,'_blocks_9_icon_row_items_3_label','field_64bfdd9c9068e'),(363182,43430,'blocks_9_icon_row_items_3_text','Our courses are designed with your needs in mind. Learn at your own pace  without rigid deadlines or extension fees*, choosing when and where to study.  Workshops across the UK provide in-person support from Master Trainers to  reinforce your online learning.'),(363183,43430,'_blocks_9_icon_row_items_3_text','field_64bfdd9c9068f'),(363184,43430,'blocks_9_icon_row_items','4'),(363185,43430,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(363186,43430,'blocks_10_acfe_flexible_toggle',''),(363187,43430,'_blocks_10_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(363188,43430,'blocks_10_acfe_flexible_layout_title','Form [anchor]'),(363189,43430,'_blocks_10_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(363190,43430,'blocks_10_row_content_format','standard'),(363191,43430,'_blocks_10_row_content_format','field_6481ead962881'),(363192,43430,'blocks_10_row_content_title',''),(363193,43430,'_blocks_10_row_content_title','field_61a0f5f5b3db1'),(363194,43430,'blocks_10_row_content_heading','Elevate your career, without limitation  '),(363195,43430,'_blocks_10_row_content_heading','field_61a0f5f5b3db2'),(363196,43430,'blocks_10_row_content_text','Enquire today to receive a full course and price guide, to learn how Biomechanics Education can support you!'),(363197,43430,'_blocks_10_row_content_text','field_61a0f5f5b3db3'),(363198,43430,'blocks_10_row_content_actions',''),(363199,43430,'_blocks_10_row_content_actions','field_61a0f5f5b3db4'),(363200,43430,'blocks_10_row_content',''),(363201,43430,'_blocks_10_row_content','field_61a0f5f5b3db0'),(363202,43430,'blocks_10_row_form','40394'),(363203,43430,'_blocks_10_row_form','field_61a4ff2c0b08e'),(363204,43430,'blocks_10_row_form_button_label',''),(363205,43430,'_blocks_10_row_form_button_label','field_61e12cf6fe412'),(363206,43430,'blocks_11_acfe_flexible_toggle',''),(363207,43430,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(363208,43430,'blocks_11_acfe_flexible_layout_title','Section 11 Introduction '),(363209,43430,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(363210,43430,'blocks_11_options_theme','#ffffff'),(363211,43430,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(363212,43430,'blocks_11_options_reverse','1'),(363213,43430,'_blocks_11_options_reverse','field_61768049bb8ac'),(363214,43430,'blocks_11_options',''),(363215,43430,'_blocks_11_options','field_617682517c334'),(363216,43430,'blocks_11_split_5050_image','38960'),(363217,43430,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(363218,43430,'blocks_11_split_5050_video',''),(363219,43430,'_blocks_11_split_5050_video','field_6239f3160848a'),(363220,43430,'blocks_11_split_5050_content_title','Biomechanics Education and Future Fit'),(363221,43430,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(363222,43430,'blocks_11_split_5050_content_heading','Working in Partnership'),(363223,43430,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(363224,43430,'blocks_11_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(363225,43430,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(363226,43430,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(363227,43430,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(363228,43430,'blocks_11_split_5050_content_actions','1'),(363229,43430,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(363230,43430,'blocks_11_split_5050_content',''),(363231,43430,'_blocks_11_split_5050_content','field_61767afceb8ba'),(363232,43430,'blocks','a:12:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:8:\"template\";i:4;s:10:\"split_5050\";i:5;s:13:\"step_timeline\";i:6;s:5:\"stats\";i:7;s:5:\"video\";i:8;s:5:\"quote\";i:9;s:5:\"icons\";i:10;s:4:\"form\";i:11;s:10:\"split_5050\";}'),(363233,43430,'_blocks','field_6176696113096'),(363234,43430,'_acf_changed','1'),(363235,43432,'hide_hero','0'),(363236,43432,'_hide_hero','field_66a2380fcda39'),(363237,43432,'hero_title','Welcome to Biomechanics Education '),(363238,43432,'_hero_title','field_617571fe285e8'),(363239,43432,'hero_text','As a leader in applied movement education and the home of Intrinsic Biomechanics Coaching™, Biomechanics Education is here to support every step of the way, from foundational knowledge to advanced, evidence-based training '),(363240,43432,'_hero_text','field_6175723c285e9'),(363241,43432,'hero_actions','1'),(363242,43432,'_hero_actions','field_61757270285ea'),(363243,43432,'hero_style','default'),(363244,43432,'_hero_style','field_62051d9dc5324'),(363245,43432,'hero_image_pos_x','right'),(363246,43432,'_hero_image_pos_x','field_62ec3d05390bb'),(363247,43432,'hero_image_pos_y','top'),(363248,43432,'_hero_image_pos_y','field_62ec3d05390bc'),(363249,43432,'hero_image_pos',''),(363250,43432,'_hero_image_pos','field_62ec3d05390ba'),(363251,43432,'fft_hide_from_listings','0'),(363252,43432,'_fft_hide_from_listings','field_61f1320446ab2'),(363253,43432,'fft_page_format','default'),(363254,43432,'_fft_page_format','field_61ae213f1f218'),(363255,43432,'fft_hide_nav','0'),(363256,43432,'_fft_hide_nav','field_635bd5e43527c'),(363257,43432,'fft_hide_header_call_to_action','0'),(363258,43432,'_fft_hide_header_call_to_action','field_635bd6723527d'),(363259,43432,'fft_page_sitemap','0'),(363260,43432,'_fft_page_sitemap','field_61af9b34e8181'),(363261,43432,'blocks','a:12:{i:0;s:5:\"icons\";i:1;s:10:\"split_5050\";i:2;s:10:\"text_block\";i:3;s:8:\"template\";i:4;s:10:\"split_5050\";i:5;s:13:\"step_timeline\";i:6;s:5:\"stats\";i:7;s:5:\"video\";i:8;s:5:\"quote\";i:9;s:5:\"icons\";i:10;s:4:\"form\";i:11;s:10:\"split_5050\";}'),(363262,43432,'_blocks','field_6176696113096'),(363263,43432,'hero_actions_0_button','a:3:{s:5:\"title\";s:15:\"Send an Enquiry\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(363264,43432,'_hero_actions_0_button','field_61757281285eb'),(363265,43432,'_thumbnail_id','36390'),(363266,43432,'__thumbnail_id','field_617570855ddaf'),(363267,43432,'blocks_0_acfe_flexible_toggle',''),(363268,43432,'_blocks_0_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(363269,43432,'blocks_0_acfe_flexible_layout_title','Section 2 USP'),(363270,43432,'_blocks_0_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(363271,43432,'blocks_0_options_theme','#b61234'),(363272,43432,'_blocks_0_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(363273,43432,'blocks_0_options_format','row'),(363274,43432,'_blocks_0_options_format','field_64bfde9a90690'),(363275,43432,'blocks_0_options',''),(363276,43432,'_blocks_0_options','field_64bfdd9b90684'),(363277,43432,'blocks_0_icon_row_items_0_icon','world.svg'),(363278,43432,'_blocks_0_icon_row_items_0_icon','field_64bfdd9b9068d'),(363279,43432,'blocks_0_icon_row_items_0_label','Experience '),(363280,43432,'_blocks_0_icon_row_items_0_label','field_64bfdd9c9068e'),(363281,43432,'blocks_0_icon_row_items_0_text','Built on over 20 years dedicated experience and research '),(363282,43432,'_blocks_0_icon_row_items_0_text','field_64bfdd9c9068f'),(363283,43432,'blocks_0_icon_row_items_1_icon','magnifier.svg'),(363284,43432,'_blocks_0_icon_row_items_1_icon','field_64bfdd9b9068d'),(363285,43432,'blocks_0_icon_row_items_1_label','Evidence '),(363286,43432,'_blocks_0_icon_row_items_1_label','field_64bfdd9c9068e'),(363287,43432,'blocks_0_icon_row_items_1_text','Biomechanics Education is built on extensive research and evidence-based models '),(363288,43432,'_blocks_0_icon_row_items_1_text','field_64bfdd9c9068f'),(363289,43432,'blocks_0_icon_row_items_2_icon','user-friendly.svg'),(363290,43432,'_blocks_0_icon_row_items_2_icon','field_64bfdd9b9068d'),(363291,43432,'blocks_0_icon_row_items_2_label','Flexible '),(363292,43432,'_blocks_0_icon_row_items_2_label','field_64bfdd9c9068e'),(363293,43432,'blocks_0_icon_row_items_2_text','Our learning is delivered through blended learning, with a combination of online and practical '),(363294,43432,'_blocks_0_icon_row_items_2_text','field_64bfdd9c9068f'),(363295,43432,'blocks_0_icon_row_items_3_icon','star.svg'),(363296,43432,'_blocks_0_icon_row_items_3_icon','field_64bfdd9b9068d'),(363297,43432,'blocks_0_icon_row_items_3_label','Recognised '),(363298,43432,'_blocks_0_icon_row_items_3_label','field_64bfdd9c9068e'),(363299,43432,'blocks_0_icon_row_items_3_text','Proudly part of the Future Fit Group and recognised a CIMSPA Enhancing training provider '),(363300,43432,'_blocks_0_icon_row_items_3_text','field_64bfdd9c9068f'),(363301,43432,'blocks_0_icon_row_items','4'),(363302,43432,'_blocks_0_icon_row_items','field_64bfdd9b9068c'),(363303,43432,'blocks_1_acfe_flexible_toggle',''),(363304,43432,'_blocks_1_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(363305,43432,'blocks_1_acfe_flexible_layout_title','Section 3 50/50 Split'),(363306,43432,'_blocks_1_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(363307,43432,'blocks_1_options_theme','#ffffff'),(363308,43432,'_blocks_1_options_theme','field_617682847c335_field_6176830e2ad17'),(363309,43432,'blocks_1_options_reverse','1'),(363310,43432,'_blocks_1_options_reverse','field_61768049bb8ac'),(363311,43432,'blocks_1_options',''),(363312,43432,'_blocks_1_options','field_617682517c334'),(363313,43432,'blocks_1_split_5050_image','41484'),(363314,43432,'_blocks_1_split_5050_image','field_6239f527a0c3a'),(363315,43432,'blocks_1_split_5050_video',''),(363316,43432,'_blocks_1_split_5050_video','field_6239f3160848a'),(363317,43432,'blocks_1_split_5050_content_title',''),(363318,43432,'_blocks_1_split_5050_content_title','field_61767bfca3fc0'),(363319,43432,'blocks_1_split_5050_content_heading','Improving movement through education  '),(363320,43432,'_blocks_1_split_5050_content_heading','field_61767b26eb8bb'),(363321,43432,'blocks_1_split_5050_content_text','With over twenty years of scientific research into intrinsic biomechanics, Biomechanics Education introduces a new way to optimise client performance through our Diploma in Biomechanics Coaching. Rather than being a diagnostic tool this revolutionary programme helps coaches, Personal Trainers, Pilates Instructors, and Sports Massage Therapists identify and mitigate health and movement risks in clients, enhancing movement quality. Professionally, Biomechanics Coaches can reduce client absenteeism and musculoskeletal issues.'),(363322,43432,'_blocks_1_split_5050_content_text','field_61767b3beb8bc'),(363323,43432,'blocks_1_split_5050_content_actions','1'),(363324,43432,'_blocks_1_split_5050_content_actions','field_61767b68eb8bd'),(363325,43432,'blocks_1_split_5050_content',''),(363326,43432,'_blocks_1_split_5050_content','field_61767afceb8ba'),(363327,43432,'blocks_1_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:21:\"Download Course Guide\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(363328,43432,'_blocks_1_split_5050_content_actions_0_button','field_61767b72eb8be'),(363329,43432,'blocks_2_acfe_flexible_toggle',''),(363330,43432,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(363331,43432,'blocks_2_acfe_flexible_layout_title','Text Block'),(363332,43432,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(363333,43432,'blocks_2_options_theme','#ffffff'),(363334,43432,'_blocks_2_options_theme','field_6176830e2ad17'),(363335,43432,'blocks_2_options',''),(363336,43432,'_blocks_2_options','field_6176830e2ad16'),(363337,43432,'blocks_2_text_block_heading',''),(363338,43432,'_blocks_2_text_block_heading','field_617669d413097'),(363339,43432,'blocks_2_text_block_content','<h2 style=\"text-align: center;\">Proudly Working With</h2>'),(363340,43432,'_blocks_2_text_block_content','field_617669ec13098'),(363341,43432,'blocks_3_acfe_flexible_toggle',''),(363342,43432,'_blocks_3_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(363343,43432,'blocks_3_acfe_flexible_layout_title','Section 4 Quality and Trust Marker'),(363344,43432,'_blocks_3_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(363345,43432,'blocks_3_template','39207'),(363346,43432,'_blocks_3_template','field_617bdd570fe01'),(363347,43432,'blocks_4_acfe_flexible_toggle',''),(363348,43432,'_blocks_4_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(363349,43432,'blocks_4_acfe_flexible_layout_title','Section 5 Is BE right for you '),(363350,43432,'_blocks_4_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(363351,43432,'blocks_4_options_theme','#b61234'),(363352,43432,'_blocks_4_options_theme','field_617682847c335_field_6176830e2ad17'),(363353,43432,'blocks_4_options_reverse','0'),(363354,43432,'_blocks_4_options_reverse','field_61768049bb8ac'),(363355,43432,'blocks_4_options',''),(363356,43432,'_blocks_4_options','field_617682517c334'),(363357,43432,'blocks_4_split_5050_image','43427'),(363358,43432,'_blocks_4_split_5050_image','field_6239f527a0c3a'),(363359,43432,'blocks_4_split_5050_video',''),(363360,43432,'_blocks_4_split_5050_video','field_6239f3160848a'),(363361,43432,'blocks_4_split_5050_content_title',''),(363362,43432,'_blocks_4_split_5050_content_title','field_61767bfca3fc0'),(363363,43432,'blocks_4_split_5050_content_heading','Is Biomechanics Coaching for you? '),(363364,43432,'_blocks_4_split_5050_content_heading','field_61767b26eb8bb'),(363365,43432,'blocks_4_split_5050_content_text','We are perfectly positioned to enable professional movement practitioners, from Personal Trainers to Physiotherapists, to advance their offering and take their career to the next level. If you have clients that struggle with movement limitations that affect their training, or want to remove the guess work when optimising client or group performance then we’d love to support you in developing your knowledge of intrinsic biomechanics.'),(363366,43432,'_blocks_4_split_5050_content_text','field_61767b3beb8bc'),(363367,43432,'blocks_4_split_5050_content_actions',''),(363368,43432,'_blocks_4_split_5050_content_actions','field_61767b68eb8bd'),(363369,43432,'blocks_4_split_5050_content',''),(363370,43432,'_blocks_4_split_5050_content','field_61767afceb8ba'),(363371,43432,'blocks_5_acfe_flexible_toggle',''),(363372,43432,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(363373,43432,'blocks_5_acfe_flexible_layout_title','Section 6 Intro to bio coach diploma'),(363374,43432,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(363375,43432,'blocks_5_options_theme','#ffffff'),(363376,43432,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(363377,43432,'blocks_5_options',''),(363378,43432,'_blocks_5_options','field_6177de53d1195'),(363379,43432,'blocks_5_timeline_content_title',''),(363380,43432,'_blocks_5_timeline_content_title','field_6177de53d1198'),(363381,43432,'blocks_5_timeline_content_heading','Diploma in Biomechanics Coaching '),(363382,43432,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(363383,43432,'blocks_5_timeline_content_text','Ready to unlock your client’s movement potential? Backed by over 20 years of research, the Diploma in Biomechanics Coaching equips you with interdisciplinary skills in movement analysis, prehabilitation, and risk reduction.\r\n\r\nWith some assessments comparing at 97% gold standard lab test accurate compared to an expensive isokinetic machine, you’ll master 42 assessments through online and practical workshops to offer tailored advice, reduce risk and enhance movement quality. Whether training elite athletes or beginners, this course helps you optimise performance and deliver results, while bridging the gap between exercise and therapy with advanced biomechanics knowledge.'),(363384,43432,'_blocks_5_timeline_content_text','field_6177de53d119a'),(363385,43432,'blocks_5_timeline_content_actions',''),(363386,43432,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(363387,43432,'blocks_5_timeline_content',''),(363388,43432,'_blocks_5_timeline_content','field_6177de53d1197'),(363389,43432,'blocks_5_timeline_items_0_title','Introduction to Intrinsic Biomechanics '),(363390,43432,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(363391,43432,'blocks_5_timeline_items_0_text',''),(363392,43432,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(363393,43432,'blocks_5_timeline_items_1_title','Shoulder, Knee and Foot Biomechanics  '),(363394,43432,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(363395,43432,'blocks_5_timeline_items_1_text',''),(363396,43432,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(363397,43432,'blocks_5_timeline_items_2_title','Pelvis and Spine Biomechanics  '),(363398,43432,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(363399,43432,'blocks_5_timeline_items_2_text',''),(363400,43432,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(363401,43432,'blocks_5_timeline_items_3_title','Back Health  '),(363402,43432,'_blocks_5_timeline_items_3_title','field_6177de53d119f'),(363403,43432,'blocks_5_timeline_items_3_text',''),(363404,43432,'_blocks_5_timeline_items_3_text','field_6177de53d11a0'),(363405,43432,'blocks_5_timeline_items','4'),(363406,43432,'_blocks_5_timeline_items','field_6177de53d119d'),(363407,43432,'blocks_6_acfe_flexible_toggle',''),(363408,43432,'_blocks_6_acfe_flexible_toggle','field_layout_64b64f1da1db2_toggle'),(363409,43432,'blocks_6_acfe_flexible_layout_title','Section 7 Coach diploma details'),(363410,43432,'_blocks_6_acfe_flexible_layout_title','field_layout_64b64f1da1db2_title'),(363411,43432,'blocks_6_row_heading','Biomechanics Coach Diploma Details'),(363412,43432,'_blocks_6_row_heading','field_64b64f2ea1db7'),(363413,43432,'blocks_6_stats_0_label','Two-day workshops, diploma taught by blended learning '),(363414,43432,'_blocks_6_stats_0_label','field_64b64f4fa1dbb'),(363415,43432,'blocks_6_stats_0_value','2x'),(363416,43432,'_blocks_6_stats_0_value','field_64b64f58a1dbc'),(363417,43432,'blocks_6_stats_1_label','Total learning hours, with 80 guided learning hours  '),(363418,43432,'_blocks_6_stats_1_label','field_64b64f4fa1dbb'),(363419,43432,'blocks_6_stats_1_value','120'),(363420,43432,'_blocks_6_stats_1_value','field_64b64f58a1dbc'),(363421,43432,'blocks_6_stats_2_label','Weeks home study, with 1 practical assessment and critical analysis report. '),(363422,43432,'_blocks_6_stats_2_label','field_64b64f4fa1dbb'),(363423,43432,'blocks_6_stats_2_value','12'),(363424,43432,'_blocks_6_stats_2_value','field_64b64f58a1dbc'),(363425,43432,'blocks_6_stats','3'),(363426,43432,'_blocks_6_stats','field_64b64f24a1db4'),(363427,43432,'blocks_7_acfe_flexible_toggle',''),(363428,43432,'_blocks_7_acfe_flexible_toggle','field_layout_6193c4908ec00_toggle'),(363429,43432,'blocks_7_acfe_flexible_layout_title','Section 8 Video '),(363430,43432,'_blocks_7_acfe_flexible_layout_title','field_layout_6193c4908ec00_title'),(363431,43432,'blocks_7_size','large'),(363432,43432,'_blocks_7_size','field_6487038f297c1'),(363433,43432,'blocks_7_row_content_title',''),(363434,43432,'_blocks_7_row_content_title','field_64870132a865d'),(363435,43432,'blocks_7_row_content_heading','Hear from our founder Rachel Frances Thomson'),(363436,43432,'_blocks_7_row_content_heading','field_64870142a865e'),(363437,43432,'blocks_7_row_content_text','Biomechanics Education offers fitness and mobility professionals an exciting new dimension of understanding physical health. Our learners gain deep and connected insights to their client\'s wellbeing and are equipped to assess and rectify issues.'),(363438,43432,'_blocks_7_row_content_text','field_64870148a865f'),(363439,43432,'blocks_7_row_content',''),(363440,43432,'_blocks_7_row_content','field_6487008ba865c'),(363441,43432,'blocks_7_video_src','https://www.youtube.com/watch?v=Iv5ZgoF0D4I'),(363442,43432,'_blocks_7_video_src','field_6193c4a98ec07'),(363443,43432,'blocks_7_video_thumbnail',''),(363444,43432,'_blocks_7_video_thumbnail','field_6193c4a08ec06'),(363445,43432,'blocks_8_acfe_flexible_toggle',''),(363446,43432,'_blocks_8_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(363447,43432,'blocks_8_acfe_flexible_layout_title','Section 9 Quote'),(363448,43432,'_blocks_8_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(363449,43432,'blocks_8_quote_content','The information that is shared and discussed is extensive and the encouragement to learn and question is part of the process. There is a strong community and an amazing array of experience on hand.\r\n'),(363450,43432,'_blocks_8_quote_content','field_6177cdacdd67a'),(363451,43432,'blocks_8_quote_author','Isobel Pilkington, Biomechanics Coach Diploma graduate  '),(363452,43432,'_blocks_8_quote_author','field_6177cdc6dd67b'),(363453,43432,'blocks_9_acfe_flexible_toggle',''),(363454,43432,'_blocks_9_acfe_flexible_toggle','field_layout_64bfdd9b90682_toggle'),(363455,43432,'blocks_9_acfe_flexible_layout_title','Why BE?'),(363456,43432,'_blocks_9_acfe_flexible_layout_title','field_layout_64bfdd9b90682_title'),(363457,43432,'blocks_9_options_theme','#ffffff'),(363458,43432,'_blocks_9_options_theme','field_64bfdd9b90685_field_6176830e2ad17'),(363459,43432,'blocks_9_options_format','grid'),(363460,43432,'_blocks_9_options_format','field_64bfde9a90690'),(363461,43432,'blocks_9_options',''),(363462,43432,'_blocks_9_options','field_64bfdd9b90684'),(363463,43432,'blocks_9_row_content_title',''),(363464,43432,'_blocks_9_row_content_title','field_64bfdd9b90687'),(363465,43432,'blocks_9_row_content_heading','Why Biomechanics Education'),(363466,43432,'_blocks_9_row_content_heading','field_64bfdd9b90688'),(363467,43432,'blocks_9_row_content_text','The Biomechanics Coaching Diploma can transform your career, whether pursued alone or alongside the courses in this guide. It also  deepens your understanding of your own movement. Here’s why it’s the right choice for you:'),(363468,43432,'_blocks_9_row_content_text','field_64bfdd9b90689'),(363469,43432,'blocks_9_row_content_actions',''),(363470,43432,'_blocks_9_row_content_actions','field_64bfdd9b9068a'),(363471,43432,'blocks_9_row_content',''),(363472,43432,'_blocks_9_row_content','field_64bfdd9b90686'),(363473,43432,'blocks_9_icon_row_items_0_icon','thumbs-up.svg'),(363474,43432,'_blocks_9_icon_row_items_0_icon','field_64bfdd9b9068d'),(363475,43432,'blocks_9_icon_row_items_0_label','Evidence-Based Learning'),(363476,43432,'_blocks_9_icon_row_items_0_label','field_64bfdd9c9068e'),(363477,43432,'blocks_9_icon_row_items_0_text','For nearly 20 years, we’ve led the way in intrinsic biomechanics education,  offering a comprehensive, evidence-based musculoskeletal assessment  programme. This hands-on course is accessible to all learners, guided by  Master Trainers using an integrated systems approach.'),(363478,43432,'_blocks_9_icon_row_items_0_text','field_64bfdd9c9068f'),(363479,43432,'blocks_9_icon_row_items_1_icon','payment-plans.svg'),(363480,43432,'_blocks_9_icon_row_items_1_icon','field_64bfdd9b9068d'),(363481,43432,'blocks_9_icon_row_items_1_label','Offer bespoke, premium packages'),(363482,43432,'_blocks_9_icon_row_items_1_label','field_64bfdd9c9068e'),(363483,43432,'blocks_9_icon_row_items_1_text','The Biomechanics Coaching Diploma distinguishes you from industry peers,  enabling you to attract clients with specific movement needs. If you’re aiming  to raise your rates, draw new clients, and retain loyal ones, then this is the  Diploma for you!'),(363484,43432,'_blocks_9_icon_row_items_1_text','field_64bfdd9c9068f'),(363485,43432,'blocks_9_icon_row_items_2_icon','qualification.svg'),(363486,43432,'_blocks_9_icon_row_items_2_icon','field_64bfdd9b9068d'),(363487,43432,'blocks_9_icon_row_items_2_label','Unique training for you and your clients'),(363488,43432,'_blocks_9_icon_row_items_2_label','field_64bfdd9c9068e'),(363489,43432,'blocks_9_icon_row_items_2_text','As an enhancing recognised CIMSPA training provider and the only company  in the world delivering a Diploma in Biomechanics Coaching we specialise in  the growing field of reducing risk, post rehabilitation and prehabilitation. This  Diploma also enhances your own mobility and training—you’ll be your first  client, alongside peers on the same journey.'),(363490,43432,'_blocks_9_icon_row_items_2_text','field_64bfdd9c9068f'),(363491,43432,'blocks_9_icon_row_items_3_icon','star.svg'),(363492,43432,'_blocks_9_icon_row_items_3_icon','field_64bfdd9b9068d'),(363493,43432,'blocks_9_icon_row_items_3_label','Lifetime learning and support'),(363494,43432,'_blocks_9_icon_row_items_3_label','field_64bfdd9c9068e'),(363495,43432,'blocks_9_icon_row_items_3_text','Our courses are designed with your needs in mind. Learn at your own pace  without rigid deadlines or extension fees*, choosing when and where to study.  Workshops across the UK provide in-person support from Master Trainers to  reinforce your online learning.'),(363496,43432,'_blocks_9_icon_row_items_3_text','field_64bfdd9c9068f'),(363497,43432,'blocks_9_icon_row_items','4'),(363498,43432,'_blocks_9_icon_row_items','field_64bfdd9b9068c'),(363499,43432,'blocks_10_acfe_flexible_toggle',''),(363500,43432,'_blocks_10_acfe_flexible_toggle','field_layout_61a0f5f5b3daf_toggle'),(363501,43432,'blocks_10_acfe_flexible_layout_title','Form [anchor]'),(363502,43432,'_blocks_10_acfe_flexible_layout_title','field_layout_61a0f5f5b3daf_title'),(363503,43432,'blocks_10_row_content_format','standard'),(363504,43432,'_blocks_10_row_content_format','field_6481ead962881'),(363505,43432,'blocks_10_row_content_title',''),(363506,43432,'_blocks_10_row_content_title','field_61a0f5f5b3db1'),(363507,43432,'blocks_10_row_content_heading','Elevate your career, without limitation  '),(363508,43432,'_blocks_10_row_content_heading','field_61a0f5f5b3db2'),(363509,43432,'blocks_10_row_content_text','Enquire today to receive a full course and price guide, to learn how Biomechanics Education can support you!'),(363510,43432,'_blocks_10_row_content_text','field_61a0f5f5b3db3'),(363511,43432,'blocks_10_row_content_actions',''),(363512,43432,'_blocks_10_row_content_actions','field_61a0f5f5b3db4'),(363513,43432,'blocks_10_row_content',''),(363514,43432,'_blocks_10_row_content','field_61a0f5f5b3db0'),(363515,43432,'blocks_10_row_form','40394'),(363516,43432,'_blocks_10_row_form','field_61a4ff2c0b08e'),(363517,43432,'blocks_10_row_form_button_label',''),(363518,43432,'_blocks_10_row_form_button_label','field_61e12cf6fe412'),(363519,43432,'blocks_11_acfe_flexible_toggle',''),(363520,43432,'_blocks_11_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(363521,43432,'blocks_11_acfe_flexible_layout_title','Section 11 Introduction '),(363522,43432,'_blocks_11_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(363523,43432,'blocks_11_options_theme','#ffffff'),(363524,43432,'_blocks_11_options_theme','field_617682847c335_field_6176830e2ad17'),(363525,43432,'blocks_11_options_reverse','1'),(363526,43432,'_blocks_11_options_reverse','field_61768049bb8ac'),(363527,43432,'blocks_11_options',''),(363528,43432,'_blocks_11_options','field_617682517c334'),(363529,43432,'blocks_11_split_5050_image','38960'),(363530,43432,'_blocks_11_split_5050_image','field_6239f527a0c3a'),(363531,43432,'blocks_11_split_5050_video',''),(363532,43432,'_blocks_11_split_5050_video','field_6239f3160848a'),(363533,43432,'blocks_11_split_5050_content_title','Biomechanics Education and Future Fit'),(363534,43432,'_blocks_11_split_5050_content_title','field_61767bfca3fc0'),(363535,43432,'blocks_11_split_5050_content_heading','Working in Partnership'),(363536,43432,'_blocks_11_split_5050_content_heading','field_61767b26eb8bb'),(363537,43432,'blocks_11_split_5050_content_text','In 2022 Biomechanics Education was welcomed into the Future Fit Group. This partnership brings Biomechanic Educations expertise, skills, connections, and offerings to our learners.\r\n\r\nBoth Biomechanics Education and Future Fit share the same ethos – providing training that helps to shape and strengthen the health and fitness industry, and the Biomechanics Coach course raises the bar again –  expanding the skills and knowledge of Personal Trainers and Pilates Instructors to broaden their scope of practice and better serve their clients.'),(363538,43432,'_blocks_11_split_5050_content_text','field_61767b3beb8bc'),(363539,43432,'blocks_11_split_5050_content_actions_0_button','a:3:{s:5:\"title\";s:11:\"Enquire Now\";s:3:\"url\";s:5:\"#form\";s:6:\"target\";s:0:\"\";}'),(363540,43432,'_blocks_11_split_5050_content_actions_0_button','field_61767b72eb8be'),(363541,43432,'blocks_11_split_5050_content_actions','1'),(363542,43432,'_blocks_11_split_5050_content_actions','field_61767b68eb8bd'),(363543,43432,'blocks_11_split_5050_content',''),(363544,43432,'_blocks_11_split_5050_content','field_61767afceb8ba');
/*!40000 ALTER TABLE `6m7_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_posts`
--

DROP TABLE IF EXISTS `6m7_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_posts` (
  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `post_parent` bigint unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `menu_order` int NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `comment_count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=43572 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_posts`
--

LOCK TABLES `6m7_posts` WRITE;
/*!40000 ALTER TABLE `6m7_posts` DISABLE KEYS */;
INSERT INTO `6m7_posts` VALUES (3,1,'2024-07-15 11:26:32','2024-07-15 11:26:32','<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://biomechanicseducation.com.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->\r\n<p>&nbsp;</p>','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2024-10-09 12:42:42','2024-10-09 12:42:42','',0,'https://biomechanicseducation.com/?page_id=3',0,'page','',0),(4,0,'2024-07-15 11:27:42','2024-07-15 11:27:42','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2024-07-15 11:27:42','2024-07-15 11:27:42','',0,'https://biomechanicseducation.com/navigation/',0,'wp_navigation','',0),(7,1,'2024-07-15 11:42:19','2024-07-15 11:42:19','','Home','','publish','closed','closed','','home','','','2025-04-08 13:28:53','2025-04-08 13:28:53','',0,'https://biomechanicseducation.com/?page_id=7',0,'page','',0),(8,1,'2024-07-15 11:42:19','2024-07-15 11:42:19','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-15 11:42:19','2024-07-15 11:42:19','',7,'https://biomechanicseducation.com/?p=8',0,'revision','',0),(9,1,'2024-07-15 11:53:21','2024-07-15 11:53:21','','9001-RGB-White-300x300','','inherit','closed','closed','','9001-rgb-white-300x300','','','2024-07-15 11:53:21','2024-07-15 11:53:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/07/9001-RGB-White-300x300-1.png',0,'attachment','image/png',0),(10,1,'2024-07-15 11:53:53','2024-07-15 11:53:53','','9001-RGB-White','','inherit','closed','closed','','9001-rgb-white','','','2024-07-15 11:53:53','2024-07-15 11:53:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/07/9001-RGB-White.jpg',0,'attachment','image/jpeg',0),(11,1,'2024-07-16 08:52:26','2024-07-16 08:52:26','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-16 08:52:26','2024-07-16 08:52:26','',7,'https://biomechanicseducation.com/?p=11',0,'revision','',0),(164,3,'2016-03-05 14:37:06','2016-03-05 14:37:06','Welcome to <a href=\"http://the7.dream-demo.com/demo/\">The7 - Ultimate WordPress Theme Sites</a>. This is your first post. Edit or delete it, then start blogging!','Hello world!','','draft','open','open','','hello-world','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'http://the7.dream-demo.com/demo/dance/?p=1',0,'post','',0),(192,0,'2016-01-27 13:56:18','2016-01-27 13:56:18','','','','inherit','open','closed','','blog_img','','','2016-01-27 13:56:18','2016-01-27 13:56:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2015/12/blog_img-3.jpg',0,'attachment','image/jpeg',0),(194,0,'2016-01-27 13:57:53','2016-01-27 13:57:53','','','','inherit','open','closed','','blog_img-3','','','2016-01-27 13:57:53','2016-01-27 13:57:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/01/blog_img-2.jpg',0,'attachment','image/jpeg',0),(205,0,'2016-01-28 09:22:08','2016-01-28 09:22:08','','','','inherit','open','closed','','blog_img-4','','','2016-01-28 09:22:08','2016-01-28 09:22:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2015/12/blog_img-2-1.jpg',0,'attachment','image/jpeg',0),(206,0,'2016-01-28 09:22:55','2016-01-28 09:22:55','','','','inherit','open','closed','','blog_img-5','','','2016-01-28 09:22:55','2016-01-28 09:22:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/01/blog_img-1-2.jpg',0,'attachment','image/jpeg',0),(208,0,'2016-01-28 09:32:19','2016-01-28 09:32:19','','','','inherit','open','closed','','blog_img-6','','','2016-01-28 09:32:19','2016-01-28 09:32:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/01/blog_img-1-1-1.jpg',0,'attachment','image/jpeg',0),(210,0,'2016-03-10 11:57:49','2016-03-10 11:57:49','','Contemporary Dance Style','','inherit','open','closed','','09','','','2016-03-10 11:57:49','2016-03-10 11:57:49','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-49.jpg',0,'attachment','image/jpeg',0),(221,0,'2016-03-10 12:31:02','2016-03-10 12:31:02','','Barre Classes','','inherit','open','closed','','12-2','','','2016-03-10 12:31:02','2016-03-10 12:31:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-1-1.jpg',0,'attachment','image/jpeg',0),(224,0,'2016-03-10 13:25:33','2016-03-10 13:25:33','','Pode Dance & Strip','','inherit','open','closed','','14','','','2016-03-10 13:25:33','2016-03-10 13:25:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-2-1.jpg',0,'attachment','image/jpeg',0),(228,0,'2016-03-10 13:30:29','2016-03-10 13:30:29','','Hip-Hop & Street Dance','','inherit','open','closed','','15','','','2016-03-10 13:30:29','2016-03-10 13:30:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-3-1.jpg',0,'attachment','image/jpeg',0),(230,0,'2016-03-10 13:37:48','2016-03-10 13:37:48','','Barre','','inherit','open','closed','','16','','','2016-03-10 13:37:48','2016-03-10 13:37:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-4-1.jpg',0,'attachment','image/jpeg',0),(237,0,'2016-03-10 13:47:11','2016-03-10 13:47:11','','Stretching','','inherit','open','closed','','19','','','2016-03-10 13:47:11','2016-03-10 13:47:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-5-1.jpg',0,'attachment','image/jpeg',0),(247,0,'2016-02-01 15:44:38','2016-02-01 15:44:38','','','','inherit','open','closed','','favicon','','','2016-02-01 15:44:38','2016-02-01 15:44:38','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/favicon-1.jpg',0,'attachment','image/jpeg',0),(248,0,'2016-02-01 15:45:09','2016-02-01 15:45:09','https://biomechanicseducation.com/wp-content/uploads/2016/02/cropped-favicon-1.jpg','','','inherit','open','closed','','cropped-favicon-jpg','','','2016-02-01 15:45:09','2016-02-01 15:45:09','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/cropped-favicon-1.jpg',0,'attachment','image/jpeg',0),(253,0,'2016-03-10 14:56:09','2016-03-10 14:56:09','','iceberg.mp4','','inherit','closed','closed','','iceberg-mp4','','','2016-03-10 14:56:09','2016-03-10 14:56:09','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-2-1.gif',0,'attachment','image/gif',0),(256,0,'2016-03-10 14:56:09','2016-03-10 14:56:09','','space.mp4','','inherit','closed','closed','','space-mp4','','','2016-03-10 14:56:09','2016-03-10 14:56:09','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-3-1.gif',0,'attachment','image/gif',0),(265,0,'2016-02-02 09:05:47','2016-02-02 09:05:47','','','','inherit','open','closed','','iba','','','2016-02-02 09:05:47','2016-02-02 09:05:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/iba-1.jpg',0,'attachment','image/jpeg',0),(266,0,'2016-02-02 09:15:07','2016-02-02 09:15:07','','biomechanics-education-direct-debit-form','','inherit','open','closed','','biomechanics-education-direct-debit-form','','','2016-02-02 09:15:07','2016-02-02 09:15:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/biomechanics-education-direct-debit-form-1.pdf',0,'attachment','application/pdf',0),(267,3,'2016-02-04 09:52:59','2016-02-04 09:52:59','In sports and fitness training a common injury is adductor strains.  They are often caused by poor spinal and pelvic biomechanics and a Biomechanics Coach™ or therapist trained in biomechanical screening would be able to find the causes of such injuries. Fitness instructor, Personal trainer and sports science qualifications are much stronger and more valuable if they have a dual Biomechanics Coaching™ qualification.\n\nThe adductors comprise of five muscles in the groin, stretching between the pelvis and the inside of the thigh bone (femur), and adductor longus is the most commonly injured of this muscle set. Its main function is to pull the legs together (adduction) and it is used extensively when playing football or rugby, sprinting, hurdling and horse-riding.\n\nAn important factor not to overlook is the risk of an adductor strain being confused with a sportsman’s hernia as it is sometimes difficult to differentiate between the two, so if there is any doubt, do get it checked by a qualified and experienced therapist or doctor.\n\nMost people usually feel pain in the groin at the top of the adductor muscle, which can radiate down the leg; there can also be swelling and bruising in the area. It usually hurts when they try and pull their legs together against a resistance and can hurt if stretching the leg out to the side. Also, if they were to try and run, it would be very painful in the groin and adductor area.\n\nMuscle tears are graded according to severity. Grade 1 is a mild tear, which presents itself as mild discomfort and a little tenderness. Grade 2 is a partial tear with more discomfort and there is often swelling, usually painful to the touch, which results in limited range of movement. Grade 3 is a severe tear or complete rupture of a muscle and is normally very painful, with swelling and an inability to walk or run. A full tear or complete rupture can be very debilitating and a small lump or gap can usually be felt in the muscle, at that point.\n\nInjuries are commonly caused by both intrinsic and extrinsic factors. Common extrinsic factors for adductor longus injuries include activities that require high speed acceleration and deceleration, such as sprinting, rapid changes of direction or sports where kicking and jumping are required. It can also be caused in football, when players stretch beyond their physical capabilities to retrieve a ball or perform a tackle.\n\nThis injury is much more likely to occur if there are intrinsic causes too. If your clients have a stiff lower back, tight nerves in your hips and legs, stiff hip joints or weakened adductors due to a twisted pelvis, which they may not even realise they have, the risk of tears is much higher. You may be able to get away with either an intrinsic or an extrinsic cause, but a combination of both represents a high risk factor.\n\nThe principles of Rest, Ice Compression and Elevation (R.I.C.E) will help with the acute symptoms. A compressive thigh sleeve can help reduce the swelling and, indeed, minimise it if they apply the support soon enough. Once the acute pain has started to subside, a gentle stretching regimen can help healing and restore the muscle’s range of movement. Also, if they see an experienced and qualified sports masseur they should find this helpful for regaining function in the muscle. Once the pain has diminished, any swelling has gone and they have regained almost full range of movement, you can start to strengthen the muscle. Try exercising with a resistance band to start working the adductor muscle again.\n\n<strong>How to prevent it</strong>\n\nTo try preventing this injury, you have to consider both extrinsic and intrinsic causes.  Look at the sport they perform and see if it demands any of the actions described above that cause the injury. If so, gradually increase the amount of work they perform in the gym to get their hips, pelvis and spine in good physical condition, and with sufficient flexibility in the nerves and muscles. Also, build up the amount of acceleration and deceleration work they do, although make sure not to rush into a new phase of training too quickly, giving their body time to adapt.\n\nMartin Haines\nBiomechanics Coach™\nChartered Physiotherapist\n\nDo You Want To Become a Biomechanics Coach™?','Adductor Strain','','draft','closed','closed','','adductor-strain','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=267',0,'post','',0),(280,0,'2016-02-03 10:26:54','2016-02-03 10:26:54','','4signtestexercisepdf_2016','','inherit','open','closed','','4signtestexercisepdf_2016','','','2016-02-03 10:26:54','2016-02-03 10:26:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/01/4signtestexercisepdf_2016-1.pdf',0,'attachment','application/pdf',0),(283,0,'2016-02-03 10:41:55','2016-02-03 10:41:55','','','','inherit','open','closed','','logosmall','','','2016-02-03 10:41:55','2016-02-03 10:41:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/logosmall-1.jpg',0,'attachment','image/jpeg',0),(284,3,'2016-02-03 10:58:44','2016-02-03 10:58:44','','','','inherit','open','closed','','adductorstrain','','','2016-02-03 10:58:44','2016-02-03 10:58:44','',267,'https://biomechanicseducation.com/wp-content/uploads/2016/02/adductorstrain.jpg',0,'attachment','image/jpeg',0),(285,0,'2016-02-03 11:03:48','2016-02-03 11:03:48','','','','inherit','open','closed','','doyouloveit','','','2016-02-03 11:03:48','2016-02-03 11:03:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/01/doyouloveit-1.jpg',0,'attachment','image/jpeg',0),(286,3,'2016-02-11 11:06:22','2016-02-11 11:06:22','<strong>BEN COOMBER of Body Type Nutrition, is someone who\'s work I admire, respect and enjoy! </strong>\n\n<strong>Having met and chatted on a number of occasions we are super excited to be working more closely throughout 2016 to bring YOU even more fabulous information and insights.</strong>\n\n<strong>\nTo broaden the Juicemail contributors and sources even further can only be a good thing right!?</strong>\n\n<strong>So in this article Ben talks to you about strength training....</strong>\n\nThere are two different types of people in the weight room (well, there are loads, but you know what I mean). There are those who are there to make improvements and there are those who are there to show off. One big distinction between these two groups is that one of them will tend to use more weight for everything than the other.\n\nNow, I’m not going to turn this into ANOTHER article about why you shouldn’t use bad form and just shift weight from A to B in any way possible. That’s boring, old information and you won’t take anything from it – everyone now knows that half-repping and using momentum to do things isn’t going to make you stronger. What I’m going to do here is take a different angle and tell you that people who make progress over time train hard – really hard – but they don’t always lift as much weight as possible for a given rep range.\n\nIf we were to take an average lifter (most of you) then we are able to roughly predict the amount of reps they are capable of performing with a given percentage of their 1 rep max. It generally goes something like the image above.\n\nThe problem with this information, however, is that it only really takes an acute session into account. Sure, you should be able to perform 4 sets of 8 using 77% of your max – it’s well within your strength ability – but then what?\n\nTotal volume, frequency of training and intensity (load on the bar) are all inter-linked factors which must be considered when creating a program for someone. What this means is that we need to make sure they are training hard enough and often enough with an appropriate amount of total volume (sets x reps x weight over the course of a week or other microcycle) to create a growth response.\n\nWe know that a load of around 65%-85% is the most effective range to work in for improving strength and size, and we also know that 2-3 sessions per week is probably as close to optimal as possible for the majority, so that leaves total within-session volume as the variable that we want to play with the most.\n\nVolume, however, is a tricky thing to maintain when intensity gets too high. If we were to perform the aforementioned 4 sets of 8 with 77% of our max it should theoretically be do-able, but the chances are that – because of total CNS and PNS fatigue - it will take a really long time to do and an even longer time to recover from. Taking multiple sets that close to failure can impact the rest of the session and even the rest of the week depending on your own personal ability to recover from lifting heavy, and that means that your performance in the rest of your training can suffer. Poor performance in other sessions will obviously hinder your ultimate results.\n\nNot only that, but beyond training volume, intensity and frequency there is one other overarching factor which we must consider in order to get stronger and bigger – progressive overload.\n\nTrain with the perfect intensity, drive up training frequency to a point where you are training as often as possible while still recovering optimally and increase sets and reps as much as you like, eventually you need to add some weight to the bar or you’re not going to get anywhere. Go too heavy and overload is going to be all but impossible.\n\nSo, lets take our 4x8@77% example above and put some real numbers in, to give you an idea of what I’m talking about.\n\nAssuming your max is 100kg for sake of ease, 4 sets of 8 at 77.5% gives you (4 x 8 x 77.5kg) 2,480kg of volume. Great. Now let’s say you complete that and want to add some weight to the bar, so we move up to the next available increment, 80kg.\n\nNot only have we moved up in weight, we have now moved up to 80% of your max, which means that we are now only able to perform 7 reps if we go to our maximum potential on each set, which would of course be all but impossible. You can’t go to absolute failure and expect performance not to dip – so let’s go to 4 sets of 6 with 80% - should be manageable, just.\n\nThat’s all well and good, but now we are only getting (4 x 6 x 80kg) 1920kg of volume, which is way less. We haven’t gotten anywhere but it’s not likely that we’re going to be able to do another set, and we certainly can’t do more reps or go heavier. We have nowhere to go and have therefore stalled.\n\nYou see it all the time in gyms. Guys will make initial progress and then stall out. They will get to a certain weight on a certain exercise and, despite evidently training REALLY hard, never actually manage to add more weight to it. It’s not uncommon to see someone busting their ass for YEARS and not actually adding weight to the bar and therefore, not actually getting any stronger.\n\nIt’s time to leave the ego at the door.\n\nSure, you may be ABLE to start off a program doing 4 sets of 8 at 77%, or any other similar rep range and intensity, but this will be exhausting as well as very, very difficult to improve upon. When looking at all successful training protocols (Smolov, Sheiko, Cube method etc) you will see that the average intensity will be somewhere around 70-73% but the rep ranges will usually leave you with 2-3 ‘in the tank’. What happens here is that the trainee is able to use a higher bar speed (thus producing more force per rep), is able to keep form perfect owing to the greater degree of control that <strong>not</strong> grinding out ugly near-to-failure reps offers you, and are, most importantly, given the opportunity to build up a progressively higher amount of total volume over time and thusly make IMPROVEMENTS.\n\nSure, you’re not going to failure and yes, this is comparatively ‘easy’ in a lot of ways to the typical ‘GO AS HARD AS POSSIBLE OR GO HOME’ advice thrown around on the internet or in magazines by guys and girls who have certain ‘advantages’ which means that they get better in spite of, rather than because of, what they do. It’s a little less taxing, but much more effective.\n\nTraining is about going into a session with the intention of doing what is necessary to improve, not with the intention of burying yourself. This means that we need to think about the variables we can control and the means by which we can alter them in our favour. Training is NOT about lifting as much as you can for as many reps as you can, it’s about planned progression.\n\nTrain smart, don’t just train hard, and you’ll go a lot further.\n\nDid you enjoy this article from Ben?\nWould you like to hear from him again in the Juicemail?\nWhat questions do you have for him?\nEmail me your questions: <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>','Building & Displaying Strength – There’s A Difference!','','draft','closed','closed','','building-displaying-strength-theres-a-difference','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=286',0,'post','',0),(287,3,'2016-02-03 11:05:44','2016-02-03 11:05:44','','','','inherit','open','closed','','buildingdisplayinh','','','2016-02-03 11:05:44','2016-02-03 11:05:44','',286,'https://biomechanicseducation.com/wp-content/uploads/2016/02/buildingdisplayinh.jpg',0,'attachment','image/jpeg',0),(289,3,'2016-02-06 11:08:17','2016-02-06 11:08:17','Having spent a day last week with 300 sports science students at Exeter University I really enjoyed their questions and was able to do what I love to do..\n\nTalk about intrinsic biomechanics\n\nHow easy it is to apply\n\nHow it can change the way you move\n\nNow these super cool driven young people were buzzing they were so passionate about their chosen subjects but they didn’t really have a clear idea of what they wanted to do with their skills\n\nWhat profession to aim for?\n\nWhat skills they needed beyond their degrees?\n\nEven which industry to work towards?\n\nIt reminded me of how confusing it was for me at roughly that age!\n\nHaving an hour ago just done a talk to all 300 students about MY professional journey just after Dr Steve Ingram (!) they came to the Biomechanics Education exhibition stand I found myself in that situation that I experienced with my own learners and I shared with you previously.\n\nAs they were asking about my opinion I realised they actually CARED about my opinion.\n\nThat feeling of responsibility…\n\nWith a group of about 20 students around the stand I demonstrated a few simple assessments on one young American Football player, explaining and showing them all what I was doing at each point.\n\nWe then released his right pec minor using the 20/20 anti-spasm technique.\n\nWELL..\n\nIf I could of captured their faces, upon doing the re-screen that showed releasing his pec minor had affected his leg length, pelvic function and both shoulders for the better, it would have been priceless!\n\nThen came the questions..\n\nWhat course to do next?\n\nWhat career prospects they had?\n\nHow they could get internships?\n\nSo what am I supposed to say?\n\nI didn’t KNOW what I wanted to do until my late 30’s!?\n\nI never had the education you\'re getting!?\n\nI am not very smart!?\n\nI was in the bottom class in maths!?\n\nAgain I was stunned they were even asking me\n\nThen it dawned on me\n\nWhat I have ALWAYS done\n\nThat it isn\'t about BEING the best\n\nIt is DOING YOUR best\n\nME? I always just did what I LOVED doing!\n\nNow I also recall thinking that I was just going to have fun and do what I enjoyed until I decided what I wanted to do or until a PROPER job came along!\n\nBut actually I just kept doing what I enjoyed\n\nhahaha and now ….. well you know what I do\n\nNow at my ripe young age, I realise the important of LIVING and not just BEING.\nTHINGS don’t make you happy\n\n(An Audi R8 might be nice)\n\nBut by being honest, true to yourself by doing something that fulfils you and your ideals, something you could do everyday for free THAT is how you become great at what you do.\n\nIt is easy to remember information about a subject you enjoy\n\nSpending time with likeminded people makes that time great fun\n\n(I get to hang out with cool dudes like Ben Coomber &amp; Brendan Chaplin!!)\n\nand\n\nYES you can have fun AND work or earn a living\n\nSo that is exactly what I told them..\n\nGet yourself out there\n\nBe helpful\n\nBe open minded\n\nBe nice!!\n\nEVERY single person you meet COULD be your next life changing connection.\n\nThis is how I ended up where I am now and seriously should it all end tomorrow\n\nI have had a blast!\n\nWhat Do You Love To Do?\n\nWould You Love To Do What I Do?','Do You Love It?','','draft','closed','closed','','do-you-love-it','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=289',0,'post','',0),(290,3,'2016-02-03 11:07:01','2016-02-03 11:07:01','','','','inherit','open','closed','','doyouloveit-2','','','2016-02-03 11:07:01','2016-02-03 11:07:01','',289,'https://biomechanicseducation.com/wp-content/uploads/2016/02/doyouloveit.jpg',0,'attachment','image/jpeg',0),(291,3,'2016-02-03 11:08:11','2016-02-03 11:08:11','','','','inherit','open','closed','','doyouloveit-3','','','2016-02-03 11:08:11','2016-02-03 11:08:11','',289,'https://biomechanicseducation.com/wp-content/uploads/2016/02/doyouloveit-1.jpg',0,'attachment','image/jpeg',0),(293,3,'2016-02-05 11:08:55','2016-02-05 11:08:55','Recently I have been amongst young fit people who have sustained both mild and more serious injuries (in the past) requiring surgery from problems that are the type of problems that occur from nerve tension.\n\nCalf and hamstring injuries are both commonly caused by a tight sciatic nerve for example.  The muscles provide a protective spasm to the nerve during movement and if stretched or loaded sufficiently the muscles can spasm enough to cause themselves to tear, or cramp up - which can FEEL like a tear.  By mobilising the nerve it releases the tension in the muscles and reduces the likelihood of this happening.\n\nThe same principle applies to ALL nerves.  In the golf swing, if the median nerve is tight it will reduce the amount the player can complete his back swing and adopt the best position at the top of his swing.  This would be due to the muscle spasm that builds up to try and protect the inflexible nerve.  The greater the muscle spasm (which is unbeknown to the player as its SUB clinical at this point) the more he\'ll try and force his shoulder turn, which in turn increases the tension etc etc.  The key to a sound and reproducible swing is to reduce any tension in the swing, so as to help with timing and rhythm.  So by mobilising the median nerve, we are helping with ALL of the above.\n\nTight calves can cause over pronation.  The dorsi-flexion (moving the ankle upwards) is not available from the ankle joint due to the tightness in the calves, so it has to come from the sub talar joint.  It comes as part of the pronation mechanism though and so increases the amount of pronation as well.  This causes shin related injuries as well as knee and Achilles problems.  Remember that tight calves is often from a tight sciatic nerve, so by mobilising the nerve, we can help with all these injuries as well.\n\nA rotated pelvis can also go unnoticed for many years until the compensations start to cause problems.  Typically a leg length discrepancy (LLD) can result from a rotated pelvis and the leg must compensate for this.  It\'ll either flatten the foot (pronate it), bend the knee more, or drop the hip more.  Pronation will increase the load on the leg (see \'Tight Calves\' paragraph), bending the knee will increase pronation (see \'Tight Calves\' paragraph), and dropping the hip will increase the spasm in the glutes/piriformis.  A vicious circle if ever their was one!  So by reducing the spasm in the piriformis, in other words preventatively, (and also if necessary), then we are helping to reduce all of the above.\n\n<strong>Interesting fact;</strong>\n\nWe tested quad strength output on a pro rugby player before and after mobilising his sciatic nerve. After 2 x 15 reps his quad strength output increased by 14%. After 10 days of nerve mobilisations it increased by 50%!!\n\nDo YOU have clients that might have any of the above mentioned dysfunctions?\n\nWould YOU like to learn how to screen and mobilise the nerves?\n\nWould you like to understand special techniques to release piriformis muscle spasm?\n\nWould YOU like to learn how to reduce injury risk while increase performance levels in your clients/athletes?\n\nEmail now <a href=\"mailto:Rachel@biomechanicseducation.com\">Rachel@biomechanicseducation.com</a>','Nerve Tension?','','draft','closed','closed','','nerve-tension','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=293',0,'post','',0),(294,3,'2016-02-03 11:08:47','2016-02-03 11:08:47','','','','inherit','open','closed','','nervetension','','','2016-02-03 11:08:47','2016-02-03 11:08:47','',293,'https://biomechanicseducation.com/wp-content/uploads/2016/02/nervetension.jpg',0,'attachment','image/jpeg',0),(296,3,'2016-02-02 11:10:11','2016-02-02 11:10:11','Day 1 Movement Compensation Screen\n\nSo I found myself back at Brunel University just a couple of weeks after passing my BWL L1 Coach qualification. This time I was there for a 4 day S&amp;C course with Elite Performance Institute.\n\n&nbsp;\n\nHaving been warmly greeted by both ..\n\nShane Cahill - From a professional rugby back ground and had booked me onto the course.\n\nand\n\nKarl Gilligan - Had been involved with IRFU, Leinster Rugby and has worked with elite athletes and players was our course tutor.\n\n.. I went into the classroom to find a mass of testosterone - 21 guys, myself and my new girl buddy, Emma.\n\nHey I am NOT complaining!!\n\nKarl took us through the back ground of his company and his experience.\n\nWith all these people I wondered how diluted the information might get to be honest but Shane and Ross we also available to answer questions as we went into the athletics centre.\n\nWe observed Karl’s methodology of body fat screening then one by one we all had a go at the vertical jump test. This was when the competitive nature of people started to come out but it was friendly and fun.\n\nI scored a measly 26.3 but was not the lowest\n\nNext he demonstrated functional movement screens and movement compensation screens one by one which we then practiced using a score sheet. This was the section I was concerned about to be honest.\n\nHowever Karl mentioned research where appropriate and was open about subjectivity too which was refreshing and a comfort about his integrity.\n\nFor an S&amp;C coach working with teams or larger groups of people I feel this is great way to identify those at high risk or with limitations. As a Biomechanics Coach™ I would then want to assess those at higher risk to have more objectivity in WHY they failed those tests.\n\nWe scored each other and practiced then started looking at range of movement tests that Karl correlated to the movement screens. Thus giving the group an insight into one method of assessing a group of athletes for risk of injury and reduced performance.\n\nObviously with my experience I have a method of screening clients that differs but I can see these methods working in different settings like this.\n\nFor example I cannot perform 27 screens on a football team of 25 players in the space of less than 3hrs, which might be the MOST time I have with them in a session.\n\nBUT\n\nWith both of these skill sets available to me I can\n\na). Assess a large group initially to identify the big risk guys\n\nb). Refer these high risk guys for the fuller screen\n\nc). Utilise different methodologies for the different circumstances or for a fuller understanding of limitations.\n\nFinally he took us through the ‘corrective’ exercise section which had some similarity to certain sections of iMoveFreely® type exercises. But again iMoveFreely® is a more specific system that is more in depth because we deliver it one to one therefore have more time.\n\nConsidered doing a gym session at the end of the day but was aware we had speed and agility training tomorrow so decided against it.\n\nSo at the end of day 1;\n\nThe REALLY cool part was all of the people around me are all a ‘type’ of person. We all;\n\nEnjoy training\n\nEnjoy learning\n\nHave a certain level of confidence\n\nAre happy to interact and share\n\nAre supportive\n\nAre motivational\n\nInspired each other\n\nIt reminds me what it might be like for MY learners and so feels a great to be able to empathise.\n\nHowever it also reminded me how bad my school education was, or at least that the timing was not right for me, because it was no where near as much fun as this!\n\nSo ready for tomorrows speed and agility training!!\n\nBetter eat and rest …….\n\nDay 2 Linear Speed &amp; Agility\n\nOk so by mid morning I was REALLY glad I hadn’t done a gym session last night.\n\nThe gang arrived and settled for a lecture on acceleration biomechanics. Looking at sprinters start position, tibia angles and back angles, arm drive, the height of foot.\n\nThis was really interesting for me as a specialist in intrinsic biomechanics considering what I would do with nerve tension to improve speed.\n\nWould LOVE to do some sessions with sprinters and utilise timer gates and nerve mobilisations on random sessions to see how this influenced the athletes speed.\n\nWe were all asked to get into groups and for one of us to deliver a warm up specific to some linear speed training. So I worked with my new buddies Nathan, Cameron and Gift.\n\nNext up was;\n\nMike McGurn (world class S&amp;C coach for 15yrs, also consulted with Man Utd)\n\nWOW!\n\nThis guys was an amazing coach.\n\nHe took us through a fantastic R.A.M.P warm up - you have to do the course to find out what that looks like but I LOVED moving, raising my heart rate and feeling those endorphins at last!\n\nSoon we were filming each others speed mechanics drills, agility training, sled pulling and viper band work, all stuff I have NEVER EVER done\n\nI don’t think I have a single fast twitch fibre in my body!\n\nBut it did begin to feel better and everyone LOOKED better by the end of the session.\n\nLunch time was a welcome break from what we had done for most of the morning. I found myself sharing a lunch table with;\n\nDavy McGregor from Era-Fit who had also played rugby for London Irish.\n\nHe had donated all of the equipment we had been using.\n\nWas tough being surrounded by all of these rugby players ! ;)\n\nThe afternoon was all about multi directional speed work.\n\nPeople started dropping out during the afternoon due to fatigue. My concern was my missing ACL but I kept having ago at the less ‘twisty’ one.\n\nBy 5pm there were just 8 of the 23 taking part in the super physical games.\n\nLOVED it though!\n\nThe designing of games to play for sports conditioning was so much fun\n\nThose of you who saw the video of me on the trampoline somersaulting into a sponge pool know what a big kid I am!\n\nAs a group we were attentive, cheering, encouraging and generally buzzing all day. It felt a bit like an adults sports day!\n\nOh boy I was ready for food and bed!!\n\nDay 3 Clean &amp; Jerk\n\nSo I woke feeling ok consider what we were put through yesterday. I was just a tiny little bit tender but nothing debilitating.\n\nI was super excited about today as it was clean and jerk day with technical application and starting to look at skills work.\n\nGoing through the break down of the clean positions was extremely helpful yet again - I am learning you cannot go over this TOO much because there is always something to work on.\n\nLecture first, then practical and in my little group (4 guys Johnny, James, Lawrence, John and me) we discussed the technicality of the skills we were practicing, observed each other and coached each other into positions. We were a really mixed group of levels from completely novice, with no mobility and wearing trainers to qualified weight lifting coaches in lifting shoes, getting full range A2G and yet we were all critiqued positively and were super helpful to each other with no egos and ALOT of fun and banter.\n\nLunchtime was upon us surprisingly quickly but we all needed FOOD.\n\nBack to a short lecture and more practical work all afternoon.\n\nWhat a great day that was over far too quickly!\n\nWe just\n\nlifted\n\ncoached\n\nlifted\n\ncoached\n\nlifted\n\ncoached\n\nthe clean and jerk\n\nSUDDENELY it was 5pm BOOOOOOOOOOOO!!\n\nGuess…..?\n\nYUP Food and bed!\n\nDay 4 Plyometrics, Energy Systems and Periodisation\n\nThe gang piled in walking slowly with various limp patterns due to the DOMS they were suffering. Mine wasn\'t too bad but I hadn\'t got the testosterone pouring round my body making me compete with everyone else like some of these guys - you know who you are (Boris &amp; Tom) !\n\nThe first lecture was all about identifying energy systems and how they contribute to our needs analysis. We looked at programming for strength and speed etc using this information and how to consider programming for adaption.\n\nAfter lunch we had our antioxidants measured by a company with a BioPhotonic Scanner just as a little bonus. This was fascinatingly presented by a physio who explained it tests you to a cellular level of roughly the last 6 weeks and how many carotenoids you have. The usual blood test would be influenced by you last meal which is why they are not as accurate and require you to be fasted.\n\nSo this scanner is basically telling you your risk is of disease and whether you need to consume better food and eat more fruit and veggies for example.\n\nNow while this is only a baseline scanner measuring you to the nearest thousand carotenoids it does identify if you, your clients or athletes are below what the expected level of carotenoids should be and therefore at risk of;\n\nHeart disease\n\nDegenerative disease\n\nReduced performance\n\nInjury\n\nand so on…\n\nApparently you can hire this machine for a month to test all of your clients <a href=\"http://www.whybioscan.com\"target=\"_blank\">www.whybioscan.com</a>\n\nAnyway this is how we SHOULD measure\n\nAverage person 40,000\n\nElite level 50,000\n\nBUT\n\nWhen they tested over 18 million people (think it was more than that actually) they found most of the population are around 28,000!!\n\nOne guy on the course was only 17,000!!\n\nAs we each got tested it was funny how we all started to make excuses about our diets recently, me included! Having had xmas in the last 6 weeks AND surviving on hotel and pub food for the last 4 days I didn’t hold out much hope for my result.\n\nI stepped up placed the other edge of my palm on the little light and rested the flat of my palm around the scanner. The dial started to climb……\n\nMy score?\n\n80,000 carotenoids!\n\nC’MON - Happy with that - being a massive fan of raw veggie and having a sushi addiction clearly help my carotenoids!\n\nNext we were back on the track doing plyometrics - tucks, high jumps, long jumps, long jumps throwing a medicine ball, hurdles and then with all this information we were writing programmes for golfers, periodising considerations over 12 months using a linear model.\n\nFascinating but I was simply so shattered my brain started to shut down during the last lecture. My attention span is so short anyway and after such a mass of information going in over the last 4 days I had to be lead by the guys in my group (Thanks you Gift, Lee, Tom &amp; Joe) when it come to the final tasks.\n\nThen we were done!\n\nWe had a group photo, collected our certificates and hugged each other goodbye having bonded so much over the 4 days of learning, moving, being challenged, discussing, coaching, helping, supporting and having fun together. We are of course now all Facebook buddies!\n\nOverall this was a fantastic experience, a lot of information over a short space of time and delivered by an extremely experienced and knowledgable professional who answered every single question really well.\n\nThanks also to Shane, Ross, Lee and Mikey all of whom couldn\'t have been more helpful.','The Last 4 Days','','draft','closed','closed','','the-last-4-days','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=296',0,'post','',0),(297,3,'2016-02-03 11:10:03','2016-02-03 11:10:03','','','','inherit','open','closed','','last4days','','','2016-02-03 11:10:03','2016-02-03 11:10:03','',296,'https://biomechanicseducation.com/wp-content/uploads/2016/02/last4days.jpg',0,'attachment','image/jpeg',0),(333,0,'2016-02-08 12:37:51','2016-02-08 12:37:51','','','','inherit','open','closed','','imovefreely','','','2016-02-08 12:37:51','2016-02-08 12:37:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/imovefreely-1.jpg',0,'attachment','image/jpeg',0),(341,3,'2016-02-10 13:07:10','2016-02-10 13:07:10','','','','inherit','open','closed','','logobg','','','2016-02-10 13:07:10','2016-02-10 13:07:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/logobg.jpg',0,'attachment','image/jpeg',0),(386,0,'2016-03-14 16:35:12','2016-03-14 16:35:12','','21','','inherit','open','closed','','21','','','2016-03-14 16:35:12','2016-03-14 16:35:12','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-6-1.jpg',0,'attachment','image/jpeg',0),(389,0,'2016-03-14 16:35:18','2016-03-14 16:35:18','','24','','inherit','open','closed','','24','','','2016-03-14 16:35:18','2016-03-14 16:35:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-7-1.jpg',0,'attachment','image/jpeg',0),(390,0,'2016-03-14 16:35:19','2016-03-14 16:35:19','','25','','inherit','open','closed','','25','','','2016-03-14 16:35:19','2016-03-14 16:35:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-8-1.jpg',0,'attachment','image/jpeg',0),(391,0,'2016-03-14 16:42:09','2016-03-14 16:42:09','','26','','inherit','open','closed','','26','','','2016-03-14 16:42:09','2016-03-14 16:42:09','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-9-1.jpg',0,'attachment','image/jpeg',0),(392,0,'2016-03-14 16:46:47','2016-03-14 16:46:47','','27','','inherit','open','closed','','27','','','2016-03-14 16:46:47','2016-03-14 16:46:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-10-1.jpg',0,'attachment','image/jpeg',0),(394,0,'2016-03-14 16:50:21','2016-03-14 16:50:21','','30','','inherit','open','closed','','30','','','2016-03-14 16:50:21','2016-03-14 16:50:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-11-1.jpg',0,'attachment','image/jpeg',0),(395,0,'2016-03-14 16:50:23','2016-03-14 16:50:23','','31','','inherit','open','closed','','31','','','2016-03-14 16:50:23','2016-03-14 16:50:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-12-1.jpg',0,'attachment','image/jpeg',0),(398,0,'2016-03-14 16:54:30','2016-03-14 16:54:30','','32','','inherit','open','closed','','32','','','2016-03-14 16:54:30','2016-03-14 16:54:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-13-1.jpg',0,'attachment','image/jpeg',0),(399,0,'2016-03-14 16:54:32','2016-03-14 16:54:32','','35','','inherit','open','closed','','35','','','2016-03-14 16:54:32','2016-03-14 16:54:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-14-1.jpg',0,'attachment','image/jpeg',0),(401,0,'2016-03-14 16:58:26','2016-03-14 16:58:26','','10','','inherit','open','closed','','10','','','2016-03-14 16:58:26','2016-03-14 16:58:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-15-1.jpg',0,'attachment','image/jpeg',0),(402,0,'2016-03-14 16:58:28','2016-03-14 16:58:28','','34','','inherit','open','closed','','34','','','2016-03-14 16:58:28','2016-03-14 16:58:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-16-1.jpg',0,'attachment','image/jpeg',0),(403,0,'2016-03-14 16:58:29','2016-03-14 16:58:29','','36','','inherit','open','closed','','36','','','2016-03-14 16:58:29','2016-03-14 16:58:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-17-1.jpg',0,'attachment','image/jpeg',0),(404,0,'2016-03-14 17:00:22','2016-03-14 17:00:22','','37','','inherit','open','closed','','37','','','2016-03-14 17:00:22','2016-03-14 17:00:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-18-1.jpg',0,'attachment','image/jpeg',0),(406,0,'2016-03-14 17:04:00','2016-03-14 17:04:00','','39','','inherit','open','closed','','39','','','2016-03-14 17:04:00','2016-03-14 17:04:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-19-1.jpg',0,'attachment','image/jpeg',0),(407,0,'2016-02-11 14:14:02','2016-02-11 14:14:02','','','','inherit','open','closed','','paypal-2','','','2016-02-11 14:14:02','2016-02-11 14:14:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/paypal-1-1.jpg',0,'attachment','image/jpeg',0),(408,0,'2016-03-14 17:09:51','2016-03-14 17:09:51','','43','','inherit','open','closed','','43','','','2016-03-14 17:09:51','2016-03-14 17:09:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-21-1.jpg',0,'attachment','image/jpeg',0),(409,0,'2016-03-14 17:19:07','2016-03-14 17:19:07','','51','','inherit','open','closed','','51','','','2016-03-14 17:19:07','2016-03-14 17:19:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-22-1.jpg',0,'attachment','image/jpeg',0),(410,0,'2016-03-14 17:19:25','2016-03-14 17:19:25','','50','','inherit','open','closed','','50','','','2016-03-14 17:19:25','2016-03-14 17:19:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-23-1.jpg',0,'attachment','image/jpeg',0),(411,0,'2016-03-14 17:24:03','2016-03-14 17:24:03','','53','','inherit','open','closed','','53','','','2016-03-14 17:24:03','2016-03-14 17:24:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-24-1.jpg',0,'attachment','image/jpeg',0),(412,0,'2016-03-14 17:24:06','2016-03-14 17:24:06','','54','','inherit','open','closed','','54','','','2016-03-14 17:24:06','2016-03-14 17:24:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-25-1.jpg',0,'attachment','image/jpeg',0),(456,3,'2016-02-01 12:18:43','2016-02-01 12:18:43','My closest colleague, a chartered physiotherapist, remedial gymnast and recreational therapist has been getting my questions on a daily basis for the last 17 years. My desire to better understand when I should refer a client or when I can use my judgement motivated me to question every scenario. He would literally ask me this question in response...\n\n&nbsp;\n<h2><em><img class=\"size-full wp-image-1052 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-14-at-11.33.28-1.png\" alt=\"\" width=\"230\" height=\"238\" />\"What do you think...?\"</em></h2>\n&nbsp;\n\nWe would then get into discussions, he might present me with another idea to consider, yet inevitably he would question me until I worked it out. He never answered my questions, and it drove me nuts...!\n\n&nbsp;\n\nYet it was the best thing he could have done, he gave me a gift, teaching me how to critically analyse my thinking, how to challenge everything until such a point when I felt I had enough information to make a decision. Eventually I realised he could have easily shut me up with an answer to my question but he knew I wouldn\'t learn that way. He took the time to teach me how to work things out for myself.\n\nIt eventually got to the point where I would have a question ready but before I asked him, I would work out my answer to his question.. <em>\"What do you think...?\"  </em>getting ready to tell him the answer. It was then that I realised what he had done for me because I didn\'t even need to ask him anymore....I had learned how to answer my own question by challenging it.\n\nThis style of \'teaching\' I now pass on to my own learners, sharing his gift also drives my learners nuts.....but they love it too!\n\n&nbsp;\n\nFor some reason it\'s very common in the physical activity sector (in my experience) for practitioners to feel they just don\'t know enough, or they know less than everyone else. Yet so many know far more than they realise when it comes to actually helping individuals to move well and pain free. Much of my time in the classroom is showing them just how much they actually do know.\n\n&nbsp;\n<h2><em>What do you focus on...?</em></h2>\nWhen I sought to expand my anatomy knowledge in cadaver labs I began to realise the true complexities and diversities of our bodies. Realising most of the books don\'t tell us about variations like triple headed biceps, 5 quads and a pec minor that ended in the opposite hip...!\n\nThis was such an enlightening moment for me, I had this <em><strong>\'So what...?\"</strong></em> moment.\n<h3><em>Yet we always seem to focus on what we don\'t know rather than what we do know.</em></h3>\n&nbsp;\n\n<img class=\"size-medium wp-image-33785 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1054776068-300x118.jpg\" alt=\"\" width=\"300\" height=\"118\" />\n\n&nbsp;\n<p class=\"p2\">So this where I have ended up over 3 decades having studied pretty much all the ideas there are in movement coaching......</p>\n<p class=\"p2\">Having been the \'ab queen\' with my six pack, \'flexibility queen\' with my splits and high combat kicks, I also felt proud of my skill in coaching the perfection of joint alignment and I knew what it was to train to being functional too, of course. So I have made every mistake going, yet from all of this I feel I have taken \'concepts and principles\' that are more true to the physical healthy movement of a human. I have learned the huge importance of developing a team around you, using  evidence based practice, modern movement and pain education and the promotion of client/athlete centred autonomy with logical progressive graded exercise for a foundation of good practice.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n\n<img class=\"size-medium wp-image-7922 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\n<h2></h2>\n<h2>Conclusion</h2>\nThere is no magic exercise or technique, just simple scientific principles applied to the very individual human in front of you allowing you to discover the intervention that works.\n\nAsk yourself lots of questions like <em>why do I think that? why did I make that choice and not this one? what are the deciding factors? what\'s the risk? what\'s the benefit?</em>\n\nJustification is key!\n\nAim to get really confident about what you do know, but also really confident about what you don\'t.\n\nNow ......\n<h3><em>\"What do you think...?\"</em></h3>','What do you think.....?','','draft','closed','closed','','so-what','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=456',0,'post','',0),(458,3,'2016-02-12 12:21:29','2016-02-12 12:21:29','','','','inherit','open','closed','','sowhat','','','2016-02-12 12:21:29','2016-02-12 12:21:29','',456,'https://biomechanicseducation.com/wp-content/uploads/2016/02/sowhat.jpg',0,'attachment','image/jpeg',0),(495,0,'2016-02-18 09:05:01','2016-02-18 09:05:01','','','','inherit','open','closed','','koala','','','2016-02-18 09:05:01','2016-02-18 09:05:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/Koala-1.jpg',0,'attachment','image/jpeg',0),(497,0,'2016-02-18 09:07:59','2016-02-18 09:07:59','','','','inherit','open','closed','','koala2','','','2016-02-18 09:07:59','2016-02-18 09:07:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/Koala2-1.jpg',0,'attachment','image/jpeg',0),(505,0,'2016-02-18 10:49:57','2016-02-18 10:49:57','','','','inherit','open','closed','','hydrangeas-2','','','2016-02-18 10:49:57','2016-02-18 10:49:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/Hydrangeas-1.jpg',0,'attachment','image/jpeg',0),(554,0,'2016-03-08 13:24:22','2016-03-08 13:24:22','','imovefreely','','inherit','open','closed','','imovefreely-2','','','2016-03-08 13:24:22','2016-03-08 13:24:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/imovefreely-1.jpg',0,'attachment','image/jpeg',0),(556,3,'2016-03-09 08:37:56','2016-03-09 08:37:56','<p class=\"p1\"><span class=\"s1\"><b>...Be Brilliant!</b></span></p>\n<p class=\"p2\"><span class=\"s2\">I am</span><span class=\"s1\"> really excited to tell you how busy I have been and why. Firstly because of the new website!</span></p>\n<p class=\"p2\"><span class=\"s1\">Go check out the 2016 schedule and KEEP WATCHING as we add MORE DATES because I have joined forces with the A.M.A.Z.I.N.G Brendan Chaplin and the A.W.E.S.O.M.E Ben Coomber.</span></p>\n<p class=\"p2\"><span class=\"s1\">Fantastic things are happening this year TRUST me!</span></p>\n<p class=\"p4\"><span class=\"s3\"><a href=\"http://summit.strengthandconditioningeducation.com/summit-teaser-rf\">The Strength Summit</a></span></p>\n<p class=\"p2\"><span class=\"s1\"><i>March 19th/20th Leeds</i></span></p>\n<p class=\"p2\"><span class=\"s1\">While I am truly gutted I cannot be there YOU need to be!</span></p>\n<p class=\"p2\"><span class=\"s1\">This event is all about developing yourself in 2016. The fitness industry is a fast evolving environment where we owe it to our clients and athletes to stay one step ahead. Thus meaning we are better placed to unlock their potential. </span></p>\n<p class=\"p2\"><span class=\"s1\">You can’t simply be a <i>good </i>trainer or coach anymore, not when there are so many of us and while there are some awful, some good and some great ones YOU can be BRILLIANT!</span></p>\n<p class=\"p2\"><span class=\"s1\">So join Brendan, Ben, Biomechanics Education\'s Master Trainer Chris Kitson, and other industry leaders, who will all be presenting and kick start YOUR journey into being brilliant in 2016!</span></p>\n<p class=\"p2\"><span class=\"s1\">On Saturday 19th Brendan will be sharing with you his blueprint to get amazing, long lasting results and having known Brendan for 6yrs take it from me - HE KNOWS! You will also learn 6 steps he has a used to grow multiple businesses. </span></p>\n<p class=\"p2\"><span class=\"s1\">After all it\'s no good being a brilliant trainer or coach if you can\'t reach the right people.</span></p>\n<p class=\"p2\"><span class=\"s1\">No one wants to miss out on helping those keen clients that, without a great business, you would never reach. Who knows they may go on to be the next Olympic champion!</span></p>\n<p class=\"p2\"><span class=\"s1\">Your special offer code is <b>BIOMECH10</b></span></p>\n<p class=\"p5\"><span class=\"s3\"><a href=\"http://summit.strengthandconditioningeducation.com/summit-teaser-rf\"><b>CLICK HERE TO BOOK NOW</b><b></b></a></span></p>\n<p class=\"p6\"><span class=\"s1\">Exciting Times!!</span></p>','Don\'t Be Good..','','draft','open','open','','dont-be-good','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=556',0,'post','',0),(557,3,'2016-03-09 08:37:42','2016-03-09 08:37:42','','','','inherit','open','closed','','fb-ad3','','','2016-03-09 08:37:42','2016-03-09 08:37:42','',556,'https://biomechanicseducation.com/wp-content/uploads/2016/03/FB-ad3.jpg',0,'attachment','image/jpeg',0),(559,3,'2016-03-09 08:38:43','2016-03-09 08:38:43','','','','inherit','open','closed','','fb-ad3-2','','','2016-03-09 08:38:43','2016-03-09 08:38:43','',556,'https://biomechanicseducation.com/wp-content/uploads/2016/03/FB-ad3-1.jpg',0,'attachment','image/jpeg',0),(561,3,'2016-03-09 08:41:32','2016-03-09 08:41:32','<p class=\"p1\"><b>Congratulations Maura!</b></p>\n<p class=\"p2\"><span class=\"s1\"><b>This nomination is for her commitment to both her personal development and fully embracing her diverse skills sets - well done Maura!</b></span></p>\n<p class=\"p3\"><span class=\"s1\">Maura says;</span></p>\n<p class=\"p3\"><span class=\"s1\">Since 1997 I have been teaching group exercise and working in gyms.  In that time I’ve lost count of the number of courses I’ve done, some good, some bad.  I have also worked as a club manager but missed the teaching aspect of fitness, so I have now come full circle</span></p>\n<p class=\"p3\"><span class=\"s1\">Following the birth of my daughter (7 years ago) I went self-employed, year by year increasing the number of classes and getting an increase in demand for 1-2-1 sessions.  This was the area I was lacking confidence, skills and knowledge. So much so that when a client presented with a faulty movement pattern I questioned what I could do to help them or, ideally, what the client could do to help themselves.</span></p>\n<p class=\"p3\"><span class=\"s1\">I looked at repeating my PT course, but then remembered the iMoveFreely® Instructor workshop I did with Rachel many years earlier, and an amazing exercise called the 4 sign.  So I got in touch and after a couple of conversations, I decided to book on and go for the course due to its content.</span></p>\n<p class=\"p3\"><span class=\"s1\">My main area of teaching is Pilates with Biomechanics and 1-2-1. (though I do still like to dabble in the cardio/combat). Following the Biomechanics Coach™ Diploma I have completely changed how I teach and I can’t believe the massive difference the course has made to all aspects of my teaching. I have managed to form a good bond with some local osteopaths and Chiropractors, some of whom attend my classes and all refer clients my way. </span></p>\n<p class=\"p3\"><span class=\"s1\">I believe Pilates/biomechanics/ corrective exercise is my pathway going forward, so I have also completed the L4 Sports Massage course with Mike Grice, Director of Active Skills/ Birmingham Movement Therapy Clinic is also a Master Trainer and Biomechanics Coach™</span></p>\n<p class=\"p3\"><span class=\"s1\">If you are thinking about enrolling on the Biomechanics Coach™ Diploma, then do not hesitate! </span></p>\n<p class=\"p3\"><span class=\"s1\">Yes you will be taken outside of your comfort zone!</span></p>\n<p class=\"p3\"><span class=\"s1\">Yes you will question what you have learned before!</span></p>\n<p class=\"p3\"><span class=\"s1\">There is definitely no spoon feeding here!</span></p>\n<p class=\"p3\"><span class=\"s1\">Just fab content and a chance for self-development.</span></p>\n<p class=\"p3\"><span class=\"s1\">Achieving the both Biomechanics Coach™ Diploma and the Sports Massage while working and juggling a family, has been slightly challenging at times, but a big personal achievement for me. As for the rest of my achievements,  none on the sporting front I’m afraid, I love to take part but am definitely not a medal winning athlete. However I did award myself a Gold Star for opening up my own little studio with a colleague of mine 18 months ago!!</span></p>\n<p class=\"p3\"><span class=\"s1\">Would you like to know more about Biomechanics Coaching™?</span></p>\n<p class=\"p4\"><span class=\"s3\"><a href=\"https://www.www.biomechanicseducation.com/\"><b>READ MORE</b></a></span></p>\n','Maura Knight is Biomechanics Coach™ of the Month!','','draft','open','open','','maura-knight-is-biomechanics-coach-of-the-month','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=561',0,'post','',0),(562,3,'2016-03-09 08:41:26','2016-03-09 08:41:26','','','','inherit','open','closed','','screen-shot-2016-03-09-at-08-41-00','','','2016-03-09 08:41:26','2016-03-09 08:41:26','',561,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-09-at-08.41.00.png',0,'attachment','image/png',0),(569,3,'2016-03-09 09:47:38','2016-03-09 09:47:38','','','','inherit','open','closed','','screen-shot-2015-04-14-at-08-40-33','','','2016-03-09 09:47:38','2016-03-09 09:47:38','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2015-04-14-at-08.40.33.png',0,'attachment','image/png',0),(575,3,'2016-03-09 10:55:06','2016-03-09 10:55:06','Was asked a question recently “Do we need to massage the ITB?\"\n\nIt\'s a common thing to see gym members rolling the outside of their thighs on a foam roller wincing in pain\n\nAs a sports massage therapist this raises for me a similar question along with others\n\n&nbsp;\n\nWhy?\n\n&nbsp;\n\nDo they know what they are doing? Or have they ever seen a qualified sports massage therapist? Is something so painful the right thing to do?\n\nIs there really any benefit to doing this? Is there a better, less painful or safer option?\n\nNow in my experience controversial topics are usually very reasonable ideas taken out of context so I did bit of my own research around this area and would like to offer some thoughts from my findings. However I always encourage you, the reader, to do a bit of your own research and feel free to come back and offer your thoughts so we can all learn from each other.\n\n&nbsp;\n\nSo firstly lets look at the anatomy of the ITB or iliotibial band;\n\nThe iliotibial band (ITB) or tract is a lateral thickening of the fascia lata in the thigh. Proximally it splits into superficial and deep layers, enclosing tensor fasciae latae and anchoring this muscle to the iliac crest. It also receives most of the tendon of gluteus maximus. (Standring, 2004 Grays Anatomy; the Anatomical Basis of Clinical Practice)\n\nDue to the angles of pull and its attachment sites it is a knee stabiliser in both extension and partial flexion of the knee joint. This means it is in constant use during gait, walking and running. It is in fact one of the main supports of the knee against gravity\n\nSo this raises a clear point for me, if the ITB is a knee stabiliser and its role is as the main support on the knee against gravity then surely it requires a good amount of tension running through it to do that. We also know that the whole point of manual therapy, massage, foam rolling, trigger pointing etc is to create blood flow by releasing tension.\n\nThis therefore might tell us that actually for a fit and healthy individual foam rolling the ITB is not good news as it may well reduce that tension and create problems of stability around the knee joint.\n\nOk so I know what you are thinking, most people do it because they have knee pain or ITB syndrome or they ‘feel tension’. Well this is different again because we should consider WHY they have these issues before assuming any are in relation to the ITB. Well let me share with you a couple of quotes from Karel Lewit a world renowned manual therapist way ahead of his time and unafraid to challenge current thinking and also open to change from his own original views:\n\n“He who treats the site of pain is lost”, “Where do you have pain? On my MRI” Karel Lewit <a href=\"http://www.rehabps.com/DATA/Karel_Lewit.pdf\">http://www.rehabps.com/DATA/Karel_Lewit.pdf</a>\n\n&nbsp;\n\nSo back to the question: “Do we need to massage the ITB?”\n\nPoint one: Not everyone and particularly if you are fit and healthy.\n\nWhat about those who are diagnosed wit ITB syndrome?\n\n&nbsp;\n\nWhat is ITB syndrome?\n\nit is commonly known as inflammation of a bursa from overuse during running, cycling etc. However there are recent studies showing it could be more related to deep fat to the ITB. http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2100245/\n\nOk well what would we do about ITB syndrome then considering both suggested causes once again I would ask WHY? Since not all runners or cyclists suffer ITB syndrome. So my train of thought is well if the ITB inserts into the TFL &amp; Glutes should that be somewhere to consider assessing? Sure thing! I certainly know some screens that involve understanding if this muscles are dysfunctional. In fact due the body being an Integrated System I would suggest that is probably a good places to start combined with the research that states 60% of dysfunction does for the pelvis.\n\n&nbsp;\n\nWe might also consider that if this tension in the TFL, Glutes is present then maybe that would be a less painful more sensible places to massage, foam roll etc.\n\nTo my mind the biggest problem that might occur from gym members foam rolling their ITB is they are not a sports massage therapists and therefore may no be aware of the anatomical structures they are pressing on, what pressure is appropriate, the risks and contraindications. Sports Massage Therapists are skilled at being able to modify for that individual, for that particular day and how the client feels and presents from the biomechanical assessment they should be making prior to the treatment.\n\nMassage should NEVER be painful but let me define pain.\n\n&nbsp;\n\n0/10 = No pain\n\n10/10 = Excruciating like having the arms ripped out of the sockets.\n\n0/10-7/10 = Discomfort which the client is able to tolerate.\n\n8/10-10/10 = Inappropriate level of pain which is likely to increase tension thought the clients body.\n\n&nbsp;\n\nThis model is in my opinion - happy to hear other professionals ideas on this.\n\nYou might have someone argue they feel better after doing foam rolling on the ITB.\n\nPoint one - The Integrated System = what you feel may not relate to the area you feel it (see Karel Lewit quote above)\n\nPoint two - By influencing one area of the body you may well have released another i.e. You released TFL, Glutes rather than the ITB itself- so which would be the sensible option? Foam Roll the painful fascial bit that is supposed to be tensioned or try the muscles higher up that can be better controlled for discomfort during rolling?\n\n&nbsp;\n\nSummary\n\nIf we are totally honest nobody really knows what is happening inside our bodies during these methods, even with evidence and research some projects contradict others and so it is always case by case.\n\nFOAM ROLLERS DO NOT REPLACE HUMAN HANDS!!\n\n&nbsp;\n\nWith this in mind I would suggest the most sensible would be to visit a recommended, qualified manual therapist over and above any form of foam rolling as by far a much safer, hopefully less painful and much more logical option. Ask them lots of questions about self management and then do what they advise rather than ignore it.\n\nIf part of what they suggest is to self massage in some form then it should be clear what you do and how you do it, if not ASK!\n\nIf you are not happy then see someone different but research their background and ask to look at certificates and insurance papers. We gain them for a reason and no client has ever asked to see mine.\n\n&nbsp;\n\nHappy to discuss …\n\nTell us what you think?','Do We Need To Massage The ITB?','','draft','open','open','','do-we-need-to-massage-the-itb','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=575',0,'post','',0),(591,3,'2016-03-11 08:31:58','2016-03-11 08:31:58','<p class=\"p1\"><span class=\"s1\">Previously I have written, and raved about, the book; ‘<i>Body by Science’</i> by Doug McGuff and John Little, for its volume of research and the logical approach to the point they were making.</span></p>\n<p class=\"p1\"><span class=\"s1\">More recently I have read another book, and been reminded of, a point they make about health and fitness being quite different goals. </span></p>\n<p class=\"p1\"><span class=\"s1\">‘<i>Intervention’</i> by Dan John is a no brainer investment for any strength training fan by the way. In this book the clarity of his logic is based on 3 decades of experience as an S&amp;C coach and he is completely honest about his failings, which also enhance his coaching. This is something I a familiar with, as I am sure you are..</span></p>\n<p class=\"p1\"><span class=\"s1\">When you get it wrong, you learn!</span></p>\n<p class=\"p1\"><span class=\"s1\">John explains, with great reasoning, the differences between health and fitness and that many clients do not realise which of these is their goal. This then interferes with the PT’s programming since the client asks for what they THINK their goal is.</span></p>\n<p class=\"p1\"><span class=\"s1\">John’s view is that <i>health</i> is the homeostasis of an organism and <i>fitness</i> is simply the ability to perform a task.</span></p>\n<p class=\"p1\"><span class=\"s1\">McGuff’s definitions;</span></p>\n<p class=\"p1\"><span class=\"s1\"><b><i>HEALTH</i></b><i>: Is a physiological state in which there is an absence of disease or pathology and that maintains the necessary biological balance between the catabolic and anabolic states.</i></span></p>\n<p class=\"p1\"><span class=\"s1\"><b><i>FITNESS</i></b><i>: The bodily state of being physiologically capable of handling challenges that exist above the resting threshold.</i></span></p>\n<p class=\"p1\"><span class=\"s1\">So the common theme is not only that they are not the same thing but also that it is important to understand how they can, and often do, impact upon each other and negatively.</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>The Problem</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Example one;</span></p>\n<p class=\"p1\"><span class=\"s1\">Training for a marathon, for example, demands hour and hours of repetitious high impact on hard surfaces for long periods of time. Not necessarily the best thing for our joints right? Yet many people really enjoy that challenge and feel great for achieving the distance/time they set out to do. So their <i>‘fitness</i>’ goal outweighed the <i>health</i> implication of wear and tear on their joints.</span></p>\n<p class=\"p1\"><span class=\"s1\">Example two;</span></p>\n<p class=\"p1\"><span class=\"s1\">Preparing for a weight lifting competition requires heavy lifting loading joints beyond what the may have done previously. Again this would stress joints and yet could bring me personally so much joy should I ever get to the desired weight I wish to snatch over my head. Therefore the training goal is ‘<i>fit’ </i>for the task rather than safest for my joints.</span></p>\n<p class=\"p1\"><span class=\"s1\">Example three;</span></p>\n<p class=\"p1\"><span class=\"s1\">Weight loss means eating less calories than the body is used to and so for many this could be a ‘<i>health’</i> related goal to reduce sugar intake for example. However if they also started running to increase calorie expenditure this could start to tip their journey into a <i>‘fitness’</i> goal should they decide to enter a race. Then we need to consider this implications of requiring MORE food again due to this higher calorie expenditure.</span></p>\n<p class=\"p1\"><span class=\"s1\">Finding a balance of homeostasis, while maintain optimal health is really NOT that easy when you think about it since..</span></p>\n<p class=\"p1\"><span class=\"s1\">The body is a MASTER OF COMPENSATION. </span></p>\n<p class=\"p1\"><span class=\"s1\">Once it has adapted something will change for either the better or worse. How you gauge better or worse is an interesting thought when you consider the goal. </span></p>\n<p class=\"p1\"><span class=\"s1\"><i>“I completed my first marathon…..but my knees are shot”</i></span></p>\n<p class=\"p1\"><span class=\"s1\"><i>“I lost 2 stone …..but I feel shattered ALL the time”</i></span></p>\n<p class=\"p1\"><span class=\"s1\">Also simply being <i>‘healthy’</i> may not have the excitement of a race or competition and so there is possibly less of a sense of ‘achievement’ as how do you measure it? I may have one example for you later…</span></p>\n<p class=\"p1\"><span class=\"s1\">Now I am not suggesting it is impossible but as PT’s and fitness professionals it is essential that we have the skills to help or clients realistically and with their goal in mind. Part of that maybe keeping them on track and educating them on the implications of changing their goal as they progress, which is highly likely in many cases.</span></p>\n<p class=\"p1\"><span class=\"s1\">We should have the skills to best prepare our clients for movement, be able to suggest general advise on eating well, ensure our clients exercise efficiently, wisely and safely to obtain success in reaching their desired goal.</span></p>\n<p class=\"p1\"><span class=\"s1\">Could we go as far as to say exercise is bad for you?</span></p>\n<p class=\"p1\"><span class=\"s1\">Well that depends on the alternative!? </span></p>\n<p class=\"p1\"><span class=\"s1\">Sedentary is not good</span></p>\n<p class=\"p1\"><span class=\"s1\">Ultimately movement is good </span></p>\n<p class=\"p1\"><span class=\"s1\">As is consuming the right food</span></p>\n<p class=\"p1\"><span class=\"s1\">I think you understand where I am coming from, right?</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>So What Do We Do?</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Let’s clarify the true desire of the client, without making assumptions, right up front by asking questions that will give more clarity on what their start and end points REALLY are. </span></p>\n<p class=\"p1\"><span class=\"s1\">Educate the client on risks or possible outcomes and the difference so they recognise the importance of moderation and appropriate adaption.</span></p>\n<p class=\"p1\"><span class=\"s1\">Mots importantly, and one of the things Dan John also discusses over and over again is, the importance of assessment - REGULARLY! Every 2-6 weeks at least. “<i>If you ain’t assessing you’re guessing”</i> John states.</span></p>\n<p class=\"p1\"><span class=\"s1\">So what kind of assessment/s do you do now?</span></p>\n<p class=\"p1\"><span class=\"s1\">ParQ?</span></p>\n<p class=\"p1\"><span class=\"s1\">Weight/Height?</span></p>\n<p class=\"p1\"><span class=\"s1\">Waist/Height?</span></p>\n<p class=\"p1\"><span class=\"s1\">Sit &amp; Reach?</span></p>\n<p class=\"p1\"><span class=\"s1\">Body Fat?</span></p>\n<p class=\"p1\"><span class=\"s1\">1 rep max?</span></p>\n<p class=\"p1\"><span class=\"s1\">VO2 max test?</span></p>\n<p class=\"p1\"><span class=\"s1\">Lifestyle Q&amp;A?</span></p>\n<p class=\"p1\"><span class=\"s1\">Food diary?</span></p>\n<p class=\"p1\"><span class=\"s1\">FMS?</span></p>\n<p class=\"p1\"><span class=\"s1\">Video analysis?</span></p>\n<p class=\"p1\"><span class=\"s1\">Biomechanics assessment?</span></p>\n<p class=\"p1\"><span class=\"s1\">How valid do you feel each of these test are in relation to your clients start point and end goal?</span></p>\n<p class=\"p1\"><span class=\"s1\">Do you feel you are adequately equipped to assess your clients start point?</span></p>\n<p class=\"p1\"><span class=\"s1\">Then can you regularly and easily re-assess AND monitor their progress objectively?</span></p>\n<p class=\"p1\"><span class=\"s1\">Assessment and re-assessment is vital in demonstrating both progression and regression to allow you/the client to adapt what is being done whether it be diet, preparation for movement, exercise, number of hrs sleep, routine, recovery, lifestyle factors and so on.</span></p>\n<p class=\"p1\"><span class=\"s1\">Without a clear training goal, which is likely to be either <i>health OR fitness</i> predominantly, and without the ability to assess and monitor we lose specificity in our planning. We need to be able to celebrate achievement by demonstrating progress through out assessment tools!</span></p>\n<p class=\"p1\"><span class=\"s1\">One size not fit all.</span></p>\n<p class=\"p1\"><span class=\"s1\">Case by case.</span></p>\n<p class=\"p1\"><span class=\"s1\">Every client is a new challenge.</span></p>\n<p class=\"p1\"><span class=\"s1\">How exciting it is to all be so different - don’t you think?</span></p>\n<p class=\"p1\"><span class=\"s1\"><b><a href=\"https://www.www.biomechanicseducation.com/diploma/dp/\">Would You Like To Be Able To Assess Your Clients Biomechanics?</a></b></span></p>','Health V’s Fitness - Can Being Fit Stop You Being Healthy?','','draft','open','open','','health-vs-fitness-can-being-fit-stop-you-being-healthy','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=591',0,'post','',0),(592,3,'2016-03-11 08:31:44','2016-03-11 08:31:44','','','','inherit','open','closed','','screen-shot-2016-03-11-at-08-31-23','','','2016-03-11 08:31:44','2016-03-11 08:31:44','',591,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-11-at-08.31.23.png',0,'attachment','image/png',0),(595,3,'2016-03-13 07:40:04','2016-03-13 07:40:04','<em></em>We are always exited to run this workshop due to such a high demand to learn from one of the best in the industry!\n\nMartin Haines is a Biomechanics Coach™ and therapist.  He is also proud to be a European Tour Performance Institute Advisory Board Member and he brings this unique golf workshop to you personally.  His own interest in the game of golf, and his work with a number of past and present tour professionals, provides a unique perspective on current thinking.\n\nThe workshop will show how you can maximise the player’s own biomechanical performance to help their golf, and reduce their risk of injury.  It is based upon Martin’s study of how the intrinsic biomechanics of the body impacts upon the swing and the evidence based education he has provided to many of the European Tour therapists.\n\nAt the end of the workshop you will have learnt some quick and simple manual tests you can perform on your players to identify any biomechanical flaws that may be preventing them from progressing and developing their swing, as well as some simple techniques you can show them to help themselves.  The principles can be used to help improve golfer’s performance, reduce their risk of injury and identify whether any biomechanical flaws are causing pain.\n\nFor existing Biomechanics Coaches™ the workshop offers a unique insight to how your existing knowledge can be applied to golf, so that you can start to understand how golf coaches and players think, and the language they use.  This will help not only your understanding of how to manage golfers that you see, but also how to pitch your services to them in a way they will understand.\n\n<em>“The variety of golf swings that exist demonstrates the variety of ways the body can compensate for its intrinsic biomechanical flaws.  Understand them, and how to improve them, and you’ll play better golf, become a better teacher and understand why injuries may be recurring ”. </em>\n\n<em>Martin Haines, Biomechanics Coach</em>™<em>.</em>\n<strong><u><a href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\" target=\"_blank\" data-cke-saved-href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\" rel=\"noopener\">BOOK</a></u></strong><a href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\" data-cke-saved-href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\"><strong><u> NOW</u></strong> </a>','Golf Biomechanics Workshop!','','draft','open','open','','golf-biomechanics-workshop','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=595',0,'post','',0),(596,3,'2016-03-13 07:39:45','2016-03-13 07:39:45','','','','inherit','open','closed','','screen-shot-2016-03-13-at-07-39-10','','','2016-03-13 07:39:45','2016-03-13 07:39:45','',595,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-13-at-07.39.10.png',0,'attachment','image/png',0),(616,3,'2016-03-15 11:35:21','2016-03-15 11:35:21','<p class=\"p1\"><span class=\"s1\"><b> ...and the Subtalar Joint.</b></span></p>\n\n<h2>A brief discussion....</h2>\n<p class=\"p2\"><span class=\"s1\">After reading about Kelly Starrett\'s suggestion of the 10 minute squat test I began to think about how it may be influenced by the rest of the body, &amp; in particular, in relation to the subtalar joint (STJ) since he mentions the forward foot position \'...<em>to encourage STJ neutral.</em>.\'</span></p>\n<p class=\"p2\"><span class=\"s1\">Question: <b><i>What influences the STJ during a 10 minute squat test/exercise?</i></b></span></p>\n<p class=\"p2\"><span class=\"s1\">With our industry being taught common generic teaching points like \'<em>toes inline with 2nd/3rd toe/centre foot\'</em> I wanted to explore this concept for an ideal to gain a deeper level of understanding from the \'intrinsic\' biomechanical view point.</span></p>\n<p class=\"p2\"><span class=\"s1\">If the tibia\'s ideal positioning is true in your client then this teaching point would be correct, however if not then a different teaching point maybe required. The reason I noticed this was my own \'normal\' tibial positioning when I tried to practice Starrett suggestion of ideal alignment, did not feel great at all. In fact it felt quite wrong to the point of being at risk!</span></p>\n<p class=\"p2\"><span class=\"s1\">If we consider that in anatomical terms, the tibia\'s typical natural alignment is with about 3-5 degrees of lateral rotation from the midline, maybe we should first discuss what influences this positioning from above &amp; below to therefore consider how many of us are in fact in this \'typical\' start point. </span></p>\n<p class=\"p2\"><span class=\"s1\">For example in a pronated foot, the STJ will make lateral rotation of the hip more challenging for a \'good\' squat position. From the foot perspective the forward foot position is probably a good position but when considering the structures above the foot they could create secondary issues: i.e. rotated pelvis, resulting in a functional leg length difference or ligament dominance causing knee valgus.</span></p>\n<p class=\"p2\"><span class=\"s1\">So all things considered there are several things that will influence the position on the STJ during the 10 minute squat test.  </span></p>\n<p class=\"p2\"><span class=\"s1\">Then there\'s the question: <em><strong>Could practicing the 10 min squat mobilise the STJ if it were considered to be stiff?</strong></em></span></p>\n<p class=\"p2\"><span class=\"s1\">The STJ moves through 3 planes, the 10 min squat coached with the feet forward simply takes it through the sagittal plane which would therefore encourage dorsi flexion of the STJ. However if you are looking for more all round mobility, the other 2 planes would need to be considered. </span></p>\n<p class=\"p2\"><span class=\"s1\"><b>So to conclude in brief</b>: To make a decision as to whether to practice the 10 minute squat with a forward foot position we must first assess pelvic biomechanics. Pelves will be as diverse as any other body part so its maybe advisable to consider this when coaching clients to squat. </span></p>\n<p class=\"p2\"><span class=\"s1\">Also in this instance, being able to assess the laxity of the STJ, would give us the advantage of a measured start point to help us best advise our clients on foot angle along with the hip width &amp; even squat depth.</span></p>\nFinally I agree with Starrett when it comes to practising positions, movements or shapes we dont do enough of or maybe even at all, to improve movement however we will always need to consider the entire picture, the integrated system, the whole client &amp; all the things that influence them before we accept any quick fix....right?\n<p class=\"p2\"><span class=\"s1\">COMING SOON....... feet &amp; footwear! </span></p>\n&nbsp;\n\n<img class=\"size-medium wp-image-5309 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/02/Is-there-a-right-shoe-for-you_-300x150.png\" alt=\"\" width=\"300\" height=\"150\" />\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Would you like to gain a deeper understanding of your client\'s bodies?</a></h1>\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Why not get in touch to find out more? &gt;&gt;CLICK HERE&lt;&lt;</a>','The 10 Minute Squat Test...','','draft','open','open','','10-minute-squat-test','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=616',0,'post','',0),(617,3,'2016-03-15 11:33:25','2016-03-15 11:33:25','','','','inherit','open','closed','','screen-shot-2016-03-15-at-11-18-22','','','2016-03-15 11:33:25','2016-03-15 11:33:25','',616,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-15-at-11.18.22.png',0,'attachment','image/png',0),(620,3,'2016-03-15 11:39:09','2016-03-15 11:39:09','','','','inherit','open','closed','','screen-shot-2016-03-15-at-11-38-32','','','2016-03-15 11:39:09','2016-03-15 11:39:09','',616,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-15-at-11.38.32.png',0,'attachment','image/png',0),(621,3,'2016-03-15 11:39:38','2016-03-15 11:39:38','','','','inherit','open','closed','','screen-shot-2016-03-15-at-11-38-32-2','','','2016-03-15 11:39:38','2016-03-15 11:39:38','',616,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-15-at-11.38.32-1.png',0,'attachment','image/png',0),(623,3,'2016-03-15 11:40:05','2016-03-15 11:40:05','','','','inherit','open','closed','','screen-shot-2016-03-15-at-11-38-32-3','','','2016-03-15 11:40:05','2016-03-15 11:40:05','',616,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-15-at-11.38.32-2.png',0,'attachment','image/png',0),(624,3,'2016-03-15 11:40:47','2016-03-15 11:40:47','','','','inherit','open','closed','','screen-shot-2016-03-15-at-11-18-22-2','','','2016-03-15 11:40:47','2016-03-15 11:40:47','',616,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-15-at-11.18.22-1.png',0,'attachment','image/png',0),(644,3,'2016-03-16 13:51:05','2016-03-16 13:51:05','','','','inherit','open','closed','','screen-shot-2016-03-16-at-13-50-14','','','2016-03-16 13:51:05','2016-03-16 13:51:05','',616,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-16-at-13.50.14.png',0,'attachment','image/png',0),(647,3,'2016-03-18 06:38:24','2016-03-18 06:38:24','Communication is a vital skill for practitioners in a service industry like ours.\n\nIt is pretty alarming how many professionals are lacking a basic understanding of the simple skills required in this vital component to our business.\n\n<em>How hard can it be? </em>I can hear you thinking\n\nWell it can be really <em>simple</em> but the true <em>skill </em>is often lost in the ‘noise’ in our brains as we live our lives a million miles per hour.\n\nAsk yourself…\n\nDo you hold eye contact with the person you are listing to?\n\nDo you have the right body language to show you are <em>truly</em> listening?\n\nDo you know with the right body language is?\n\nDo you know additional skills that will make people WANT to be in your company? Like prospective clients!\n\nDo you smile at people when you see them? Like a BIG smile!\n\nDo you wish you could be better at motivating your clients?\n\nDo you sometimes wonder how on earth you will get (NAME) to do what they need to do to achieve the goals they have set?\n\nCommunication skills are so important when it comes to how you make another person feel and this can improve your ability to encourage their motivation as well as wanting to book another session with you. We, as a race, have a desire to feel valued and accepted by others and this happens through communication, in particular the skill of listening.\n\nSo now ask yourself…\n\nDo you have the ability to <em>truly</em> listen?\n\nCan you <em>demonstrate</em> you have listening skills?\n\n<em>How</em> can you demonstrate that?\n\nWhat are the benefits &amp; to whom?\n\nWell in my experience the ‘best’ and most successful professionals out there do not necessarily have the highest qualifications (how many clients have asked to see your certificates anyway?).\n\nHowever they have a skill in listening to what their audience or clients are saying by using methods that for some people seem to come naturally and for others need to be learned, practiced and honed.\n\nNow those who do this naturally are probably the types of people you like to be around. Watch your friends, particularly those who\'s company you enjoy and see what they do that makes you feel good. See how many of the list below they do naturally.\n\n1). <strong>Paraphrasing</strong> - This technique is when you relay back to your audience/client what they have just said for example <em>“So if I am right in understanding what you just said was</em>…….?” by repeating their words back to them your audience feels heard, cared for and important to you.\n\n2). <strong>Eye contact</strong> - look interested by looking them directly in the eye, holding that eye contact lets them know they have your full attention and what they are saying holds value.\n\n3). <strong>Body language</strong> - Folding your arms creates a barrier so using ‘open’ body language by keeping your arms open and turning your body to face your audience/client you are showing them they have your attention.\n\n4). <strong>Physical touch</strong> - The power of human contact has been demonstrated in studies over and over again to have a huge impact on the way people respond to you. For example if someone is selling you something and they gently touch your elbow you are more likely to trust them and therefore buy from them.\n\nRead more about the power of touch;\n\n<a href=\"http://www.forbes.com/sites/carolkinseygoman/2014/01/28/why-you-should-reach-out-and-touch-someone/#1c293111324c\" data-cke-saved-href=\"http://www.forbes.com/sites/carolkinseygoman/2014/01/28/why-you-should-reach-out-and-touch-someone/#1c293111324c\">http://www.forbes.com/sites/carolkinseygoman/2014/01/28/why-you-should-reach-out-and-touch-someone/#1c293111324c</a>\n\n5). <strong>Remember little personal details </strong>- By asking how their pet Fido is getting on they will feel <em>heard</em> and cared for because you remembered their precious pet’s name.\n\nWhat are the benefits to YOU?\n\nWell if you want your clients to do what you ask, understand it and buy into what your saying then you need to make them feel <em>heard</em> first.\n\nThey will tell you why they want your services right? So you have to demonstrate you have heard by responding appropriately otherwise they may well go elsewhere.\n\nThe ability to listen will also tell you what language to use in response, how to explain what you want to explain and which motivators to utilise for the best results with this particular client based on what THEY HAVE SAID.\n\nSell them what they came for, using their reason for visiting as your response!\n\nWe all have a different dynamics when we are in the company of different types of clients and their different characteristics. This doesn’t mean we are acting or not being ourselves, it is simply the way we communicate with this person.\n\nYou also want them to listen to you and so if you demonstrate this skill they are more likely to WANT to listen to what you have to say.\n\nConsider this the next time YOU want to be heard.\n\nIf you don’t <em>truly</em> listen you can miss out on a lot of useful information and it could make your job a whole lot easier and WAY more fun.\n\nBy <em>truly</em> listening we achieve several things:\n\na). Identifying what the client REALLY wants - chances are they may not realise what will be required for them to achieve their goal and it may take a true listener to understand what they are actually asking for.\n\nFor example they may say <em>“I want to lose weight” </em>but actually they don’t care what they weight they simply want to feel good about themselves.\n\nb). An understanding of how we are going to help them achieve their goal - if we do not listen to them telling us that they do not enjoy running and then we give them running as an exercise we are have clearly not heard!\n\nc). A bond with that person that makes them know you care - when you feel heard you feel important and valued which is comforting and what we are all seeking.\n\nd). Each of the above results in a higher chance of compliance and therefore success - It would be crazy NOT to evaluate your communication skills and consider implementing the techniques listed above and others.\n\nAs a teacher I have engrained myself into the habit of self reflection after every session I deliver. So literally every time I teach, present or lecture I evaluate my own communication skills/performance and reflect on what went well and what could have been better. Then I create an action plan to improve the things I wasn\'t completely happy with so that should the same scenario occur again I hopefully make a better job of it next time around.\n\nMaybe this is something you might consider doing at the end of each session or day? Consider your communication skills, how effective they are and whether you could employ some new techniques to improve your listening skills for example.\n\nWhy not write and tell me about it too?..…..\n\nBother Me PLEASE, because I care!!\n\nDo you want to learn how to truly listen?\nJoin our academy\n<a href=\"https://www.www.biomechanicseducation.com   \" target=\"_blank\" data-cke-saved-href=\"https://www.www.biomechanicseducation.com   \" rel=\"noopener\"><strong><u>CLICK HERE</u></strong></a>\n\n&nbsp;','Bother Me.....PLEASE!','','draft','open','open','','bother-me-please','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=647',0,'post','',0),(648,3,'2016-03-18 06:38:17','2016-03-18 06:38:17','','','','inherit','open','closed','','screen-shot-2016-03-18-at-06-37-50','','','2016-03-18 06:38:17','2016-03-18 06:38:17','',647,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-18-at-06.37.50.png',0,'attachment','image/png',0),(651,3,'2016-03-22 07:29:16','2016-03-22 07:29:16','<p class=\"p1\"><span class=\"s1\">During over 2 decades in the health and fitness industry some of the most commonly asked questions are about squat technique and how to improve it. So I decided to start a little project which had 3 aspects to it:</span></p>\n<p class=\"p3\"><span class=\"s1\"><b>a). How does one decide on which squat technique to use?</b></span></p>\n<p class=\"p3\"><span class=\"s1\"><b>b). How do we then improve on the technique?</b></span></p>\n<p class=\"p3\"><span class=\"s1\"><b>c). Could I improve my own technique?</b></span></p>\n<p class=\"p3\"><span class=\"s1\"><b>So lets begin with;</b></span></p>\n<p class=\"p1\"><span class=\"s1\"><b>The problem</b></span></p>\n<p class=\"p1\"><span class=\"s1\">The squat is a basic fundamental movement that we use every day when we stand up and sit down, and yet when we perform them as an exercise, generally we are not doing a very good job of it. This is probably due to a variety of factors from; a lack of functional capacity (some of which we shall discuss in future articles) to poor education. By poor education I mean that maybe we were never actually taught the correct technique or we were taught incorrectly or we have been confused over which ‘style’ of squat is the most appropriate for the desired goal. So here I will be discussing many of these issues and hopefully offering some ideas into how we may be able to improve our squatting techniques and make them more efficient and therefore more effective. </span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Which squat?</b></span></p>\n<p class=\"p1\"><span class=\"s1\">There is much controversy surrounding squatting and which technique is the best. So my aim is to determine, with a logical approach, what a <b><i>good</i></b> squat might look like. However before we can do this, there needs to be some definition of which <b><i>type</i></b> of squat we are talking about. There are many variations of the squat, front and back squats, wide stance and narrow stance, high bar and low bar, deep and shallow squats, and which squat you choose should be determined by what your goals are. </span></p>\n<p class=\"p1\"><span class=\"s1\">Another vital component to consider is that for many of us there are often intrinsic biomechanical dysfunctions present which will affect the performance of our squat technique yet may not necessarily be obvious from an external or visual perspective. This therefore highlights the need for correcting those dysfunctions but also the safest technique possible which can only come from appreciating the risks we may be taking in performing squats badly or even ones that may be deemed <b><i>relatively</i></b> good squats.</span></p>\n<p class=\"p1\"><span class=\"s1\">Let’s take a look at some commonly used, and often misinterpreted, squat variations:</span></p>\n<p class=\"p1\"><span class=\"s2\">Front squat</span><span class=\"s1\"> – this technique requires the bar to be resting across the anterior deltoids, the front of the shoulder. For this reason this style expects lighter loads as the weight is dependent upon the strength of the shoulder musculature to bear the load on top of the shoulder flexed to 90</span><span class=\"s3\"><sup>0</sup></span><span class=\"s1\">. This then also creates a shear force at the lumbar spine due to its forward position and downwards force more towards the forefoot, thus resulting in what I term the Jenga effect. The shear force on the spinal vertebra replicating the perpendicular force required to push a Jenga stick (potentially a vertebra) from within the stack (the spine). </span></p>\n<p class=\"p1\"><span class=\"s2\">Back squat</span><span class=\"s1\"> – probably the most commonly used technique with the bar or load resting across the upper back. This transfers the pressure to a more compressive load on the spine due to the bar being closer to the centre of gravity (CoG), above the mid-foot.</span></p>\n<p class=\"p1\"><span class=\"s2\">High bar position</span><span class=\"s1\"> – This, like the front squat, is a favourite with athletes who desire quadriceps development and uses a more upright trunk position. With the load resting on the meaty part on the top of the upper traps or the spine of scapular, away from the neck, below C7, this is a relatively high position on the back. </span></p>\n<p class=\"p1\"><span class=\"s1\">Escamilla (2001) states “..<i>because the high bar squat is similar to the squat movement performed during the clean and jerk, it is preferred by weight lifters”.</i></span></p>\n<p class=\"p1\"><span class=\"s2\">Low bar squat</span><span class=\"s1\"> - This position requires the bar to be resting down on the mid part of the scapular and upper back muscles are pinched to support the load. </span></p>\n<p class=\"p1\"><span class=\"s1\">“<i>Powerlifters typically use a low bar squat position and greater forward trunk lean….primarily to lift more weight, because a powerful trunk (eg. Erector spinae, glutes and hamstrings) musculature is involved in this position compared to the high bar squat. Therefore a low bar squat produces greater hip extension torque and less knee extensor torque compared to the high bar squat…” Escamilla, (2001)</i></span></p>\n<p class=\"p1\"><span class=\"s1\">This means that the low bar squat is great for reducing the stress on the ACL and forward knee movement. This does however translate into greater injury risk for back musculature and ligamentous structures. </span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Which muscles?</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Gullett, et al (2008) did a study looking at which muscles are being used in 2 of these variations. The front squat and the back squat with a high bar position. The 15 healthy individuals had been performing front and back squats on a regular basis for a minimum of 12 months prior to the research. Using EMG to measure specifically the activity of <b>rectus</b> <b>femoris (RF), vastus lateralis (VL) </b>and <b>vastus medialis (VM)</b>, <b>bicep</b> <b>femoris (BF) </b>and <b>semintendinosus (ST)</b> ,and the <b>erector spinae (ES),</b>this was what they found:</span></p>\n<p class=\"p1\"><span class=\"s1\">When comparing the differences, the back squat had higher hamstring activity to the front squat. The back squat had lower quadriceps activity in VL and RF. VM was equal in both squats. Front squats had higher activity in the erectors of the spine compared to back squats. </span></p>\n<p class=\"p1\"><span class=\"s1\">When looking at the data this is how it compared:</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>EMG                                                                                  Back squat                 Front squat</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Hamstrings (BF &amp; ST)                                                Higher               Lower</span></p>\n<p class=\"p1\"><span class=\"s1\">(Quadriceps)</span></p>\n<p class=\"p1\"><span class=\"s1\">Vastus lateralis                                                         <span class=\"Apple-converted-space\">  </span>Lower                 Higher</span></p>\n<p class=\"p1\"><span class=\"s1\">Rectus femoris                                                             Lower              Higher</span></p>\n<p class=\"p1\"><span class=\"s1\">Vastus medialis                                                           <span class=\"Apple-converted-space\"> </span>Similar              Similar</span></p>\n<p class=\"p1\"><span class=\"s1\">Lower back (erector spinae)                                       Lower                Higher</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Biomechanical analysis</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Compressive force                                                       Higher               Lower</span></p>\n<p class=\"p1\"><span class=\"s1\">Knee extensor moments                                              Higher               Lower</span></p>\n<p class=\"p1\"><span class=\"s1\">Shear stress                                                                   Similar             Similar</span></p>\n<p class=\"p1\"><span class=\"s2\">Conclusion: </span><span class=\"s1\">With less weight, front squatting results in the same muscle activation as back squatting with a bigger weight. BUT using a lesser weight to perform the front squat does mean compressive forces at the knee are going to be lower. This would indicate that those who have knee problems such as ligament damage or meniscus tears, or osteoarthritis, should stick with the front squat since compressive forces can damage knee cartilage.</span></p>\n<p class=\"p1\"><span class=\"s1\">Finally, leg pressing can have up to 30-40% higher shear forces through the knee compared to front and back squats (Escamilla 2001), something to bear in mind if you have ACL problems.   </span></p>\n<p class=\"p1\"><span class=\"s1\">To keep things as simple as possible I will refer, in the second part of this squat article series, to the ‘<b><i>basic sports squat</i></b>’ in which the barbell is across the high bar position on the upper back, feet at shoulder width, depth down to thighs parallel to floor with an upright body posture, keeping knees in line with the centre of the foot and a ‘<i>neutral spine’</i> <i>(in this instance a ‘neutral spine is: the individuals normal spinal curvature, in standing, with no biomechanical dysfunction present – McGill, 2006).</i></span></p>\n<p class=\"p1\"><span class=\"s1\">Coming Soon…</span></p>\n<p class=\"p1\"><span class=\"s2\">The Squat Part 2</span><span class=\"s1\"> -<b>The Spine</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Here I will discuss and demonstrate with photos what the ‘Break point’ is as described by McGill, 2006. We will look at the spine with regards to the depth and the degree of hip flexion. </span></p>\n<p class=\"p1\"><span class=\"s2\">The Squat Part 3</span><span class=\"s1\"> – <b>The knee</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Here I will discuss back squat v’s front squat in relation to knee biomechanics also with consideration of squat width and the loads </span></p>\n<p class=\"p1\"><span class=\"s2\">The Squat Part 4</span><span class=\"s1\"> – <b>The foot</b></span></p>\n<p class=\"p1\"><span class=\"s1\">What position should we place the feet in to perform a squat and which footwear is advised?</span></p>\n<p class=\"p1\"><span class=\"s2\">The Squat Part 5</span><span class=\"s1\"> – <b>Belt or no belt?</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Its all in the title…..</span></p>\n<p class=\"p1\"><span class=\"s2\">The Squat Part 6</span><span class=\"s1\"> – <strong>The conclusion</strong>, ALL references &amp; the effects of our intrinsic biomechanics</span></p>\n<p class=\"p1\">Learn how to assess your clients pelvis &amp; improve their squat..</p>\n<p class=\"p1\"><a href=\"https://www.www.biomechanicseducation.com/workshop/pelvic-biomechanics/\">CLICK HERE TO BOOK YOUR </a>Pelvic Biomechanics Workshop</p>','The Squat Part 1','','draft','open','open','','the-squat-part-1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=651',0,'post','',0),(652,3,'2016-03-22 07:28:57','2016-03-22 07:28:57','','','','inherit','open','closed','','screen-shot-2015-11-15-at-20-37-17','','','2016-03-22 07:28:57','2016-03-22 07:28:57','',651,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2015-11-15-at-20.37.17.png',0,'attachment','image/png',0),(654,3,'2016-03-23 10:27:27','2016-03-23 10:27:27','<p class=\"p1\">As <span class=\"s1\">Biomechanics Coaches</span><span class=\"s1\">™ you</span> are professional technicians NOT marketing experts right?</p>\n<p class=\"p1\">BUT if you are self employed well then you had better be a marketing expert too because thats how you get business!</p>\n<p class=\"p1\">I am SO excited to have <span class=\"s1\">Biomechanics Coach</span><span class=\"s1\">™ AND marketing expert, Chris Wright write this blog specially for YOU <span class=\"s1\">Biomechanics Coaches</span><span class=\"s1\">™!</span></span></p>\n<p class=\"p1\">Chris says;</p>\n<p class=\"p1\"><span class=\"s1\"><b>Stop trying to sell the features of Biomechanics Coachi</b><strong>ng</strong></span><strong><span class=\"s1\">™!!</span></strong></p>\n<p class=\"p3\"><span class=\"s1\">Do you struggle to get across to people what Biomechanics Coaching</span><span class=\"s1\">™ </span><span class=\"s1\">is? Do you struggle to charge higher rates than other personal trainers in your area? Are you struggling to grow your business?</span></p>\n<p class=\"p3\"><span class=\"s1\">So often I see people set up their business, put up some form of website and hope and pray that people come in and buy their services.</span></p>\n<p class=\"p3\"><span class=\"s2\">Hope and pray is not a marketing strategy that I like to rely on!</span></p>\n<p class=\"p3\"><span class=\"s1\">I thought I would put together an introductory guide for Biomechanics Coaches</span><span class=\"s1\">™ </span><span class=\"s1\">so you can get the ball rolling.</span></p>\n<p class=\"p3\"><span class=\"s1\">This is step 1 to marketing your business, there is way more to it but we have to start here.</span></p>\n<p class=\"p3\"><span class=\"s2\"><b>Step 1: Know Your Perfect Client</b></span></p>\n<p class=\"p3\"><span class=\"s1\">And NO, it’s not everyone. When you try and market to everyone you end up hitting absolutely no one!</span></p>\n<p class=\"p3\"><span class=\"s1\">So you need to know your ideal client. Who is the type of person you most enjoy working with.</span></p>\n<p class=\"p3\"><span class=\"s1\">When I say know them, I mean know them. Here are a few things you should know….</span></p>\n\n<ul>\n	<li class=\"li5\"><span class=\"s1\">Gender</span></li>\n	<li class=\"li5\"><span class=\"s1\">Age</span></li>\n	<li class=\"li5\"><span class=\"s1\">Married?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Kids?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Where do they live?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Sports?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Injuries?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Physical Pain?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Emotional pain?</span></li>\n	<li class=\"li5\"><span class=\"s1\">House value</span></li>\n	<li class=\"li5\"><span class=\"s1\">Household income</span></li>\n	<li class=\"li5\"><span class=\"s1\">Job?</span></li>\n	<li class=\"li5\"><span class=\"s1\">What they spend their money on?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Where do they spend their time?</span></li>\n</ul>\n<p class=\"p3\"><span class=\"s1\">Now that you know this we can now market much more effectively. </span></p>\n<p class=\"p3\"><span class=\"s1\">For example, it might be that your perfect client is…</span></p>\n<p class=\"p3\"><span class=\"s1\">A 48 year old male, lets call him John, who works in finance, earns £60,000+/year. Likes to keep fit and play golf, but is plagued with low back pain, headaches and high stress. His pain stops him playing golf and football with his 12 year old son. He has no energy in the evenings is grumpy from being in pain all day and is not being a good husband or father.</span></p>\n<p class=\"p3\"><span class=\"s1\">Now can <span class=\"s1\">Biomechanics Coaching</span><span class=\"s1\">™</span> help John?</span></p>\n<p class=\"p3\"><span class=\"s1\">YOU BET!!</span></p>\n<p class=\"p3\"><span class=\"s1\">If he worked with you I have no doubt that he would become a better father, husband, probably do better at work as he is in less pain, his mood would improve, the benefits are amazing!</span></p>\n<p class=\"p3\"><span class=\"s1\">BUT when he looks at your site, or comes into contact with your business you don’t tell him that!</span></p>\n<p class=\"p3\"><span class=\"s1\">Yet what I see day in day out is <span class=\"s1\">Biomechanics Coaches</span><span class=\"s1\">™</span> trying to sell <span class=\"s1\">Biomechanics Coaching</span><span class=\"s1\">™</span>. Let me explain what I mean. All over their websites (and yes I have researched lots of them) I see long, and I mean long, pages on in depth explanation of what <span class=\"s1\">Biomechanics Coaching</span><span class=\"s1\">™</span> is. That its intrinsic biomechanics, that looks at muscle spasm of the piriformis, the sciatic nerve, that is a screening tool used to assess discrepancies in the body, the list goes on and on and on.</span></p>\n<p class=\"p3\"><span class=\"s1\">Does John need to know all that? Does John care? Do you need to explain the ins and outs of <span class=\"s1\">Biomechanics Coaching</span><span class=\"s1\">™</span>? 100% NO!</span></p>\n<p class=\"p3\"><span class=\"s1\">John wants to know that he is going to be able to sit at his desk all day pain free, play a round of golf pain free (maybe even hit the ball further), be able to kick a ball around pain free. </span></p>\n<p class=\"p3\"><span class=\"s1\">Show John this! This is your marketing. Your website should speak directly to John (or whoever your clients are).</span></p>\n<p class=\"p3\"><span class=\"s1\">Oh and by the way, when you use Facebook as an example, you can set up ads so that they are only seen by the John’s in your area. This is something we can talk about at a later stage.</span></p>\n<p class=\"p3\"><span class=\"s2\"><b>Exercise for you to do:</b></span></p>\n<p class=\"p3\"><span class=\"s1\">Write now grab a piece of paper and pen, and start scribbling. Who is your ideal client, what pains and frustrations do they have that you can solve?</span></p>\n<p class=\"p3\"><span class=\"s1\">In fact, I challenge you to put this together then post in the <span class=\"s1\">Biomechanics Coach</span><span class=\"s1\">™</span> Group on Facebook and tag me in the post so I know you have done it. I am in the group, I am a <span class=\"s1\">Biomechanics Coach</span><span class=\"s1\">™</span> myself after all :-) </span></p>\n<p class=\"p3\"><span class=\"s1\">For more articles to help with marketing your business head on over to <a href=\"http://www.level10living.co.uk\"><span class=\"s4\">www.Level10Living.co.uk</span></a> Be sure to leave me a comment on a post when you get there too.</span></p>\n<p class=\"p3\"><span class=\"s1\">Have a great day!</span></p>\n<p class=\"p3\"><span class=\"s1\">Chris Wright</span></p>\n<p class=\"p4\"><span class=\"s2\"><a href=\"http://www.level10living.co.uk\">www.Level10Living.co.uk</a></span></p>\n<p class=\"p4\"><span class=\"s2\"><a href=\"https://www.facebook.com/YourLevel10Life/\">https://www.facebook.com/YourLevel10Life/</a></span></p>\n<p class=\"p4\"><span class=\"s2\"><a href=\"https://twitter.com/YourLevel10Life\">https://twitter.com/YourLevel10Life</a></span></p>\n<p class=\"p4\"><span class=\"s2\"><a href=\"https://www.instagram.com/yourlevel10life/\">https://www.instagram.com/yourlevel10life/</a></span></p>','Marketing For A Biomechanics Coach™','','draft','open','open','','marketing-for-a-biomechanics-coach','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=654',0,'post','',0),(655,3,'2016-03-23 10:24:57','2016-03-23 10:24:57','','','','inherit','open','closed','','screen-shot-2016-03-23-at-10-23-05','','','2016-03-23 10:24:57','2016-03-23 10:24:57','',654,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-23-at-10.23.05.png',0,'attachment','image/png',0),(674,3,'2016-03-25 07:44:59','2016-03-25 07:44:59','<p class=\"p1\"><span class=\"s1\">This topic is something that follows on from my previous Juicemail about communication (Bother Me….PLEASE!) and is a question I always ask at the beginning of a workshop, presentation or lecture. </span></p>\n<p class=\"p1\"><span class=\"s1\">“Why are you here?” </span></p>\n<p class=\"p1\"><span class=\"s1\">I am sure you have asked it of your client/s in the past right? Its the same situation in many ways.</span></p>\n<p class=\"p1\"><span class=\"s1\">We will have a certain level of expectation when attending sessions based on the limited details given in flyers, brochures, adverts or promotions. We may read a session title and a short paragraph and then from that form some level of expectation. </span></p>\n<p class=\"p1\"><span class=\"s1\">So prior to starting any session or presentation it is vital to understand this expectation. This then clarifies the level, or angle, to pitch or deliver the session for the audience present thus allowing relevance and a better connection to them.</span></p>\n<p class=\"p1\"><span class=\"s1\">No point using rugby or strength training anecdotes in a room full of ballerinas or pilates teachers now is there!?  Also no point guessing what they want to learn about when you can simply ask them right!?</span></p>\n<p class=\"p1\"><span class=\"s1\">So I was at The International Fitness Showcase (IFS) Blackpool Winter Gardens over the weekend with our partners Spinning® &amp; Athleticum®. This is one of my favourite working weekends of the whole year and this year was no different, leaving me still buzzing a few days later! So much so I wanted to share my weekend of fun with you!! </span></p>\n<p class=\"p1\"><span class=\"s1\">The weekend was spent with thousands of sweaty fit pros seeking the adrenaline high of a fitness class, the calm flow of mind and body and also the experience of some new ideas in education.</span></p>\n<p class=\"p1\"><span class=\"s1\">Pelvic Biomechanics lecture</span></p>\n<p class=\"p1\"><span class=\"s1\">Friday I asked my Pelvic Biomechanics audience why they were at my lecture? Why had they chosen my session over the other 6 or 7 sessions that were running at that time? </span></p>\n<p class=\"p1\"><span class=\"s1\">They told me they wanted to: </span></p>\n<p class=\"p1\"><span class=\"s1\">Learn more about pelvic anatomy</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn how to assess pelvic asymmetry</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn how to correct it </span></p>\n<p class=\"p1\"><span class=\"s1\">….nice and simple considering that is exactly what the content was about for this one!</span></p>\n<p class=\"p1\"><span class=\"s1\">The session was fully booked and drew a keen crowd of professionals amidst which we had chiropractors, pilates teachers, therapists and PT’s. It always excites me that we get the cross over of professionals together in our workshops. This practical demonstration looked at simple evidence based techniques to assess our clients pelvic function and then how to correct it as I gave a  sample what you can learn on our Pelvic Biomechanics 2 day workshop.</span></p>\n<p class=\"p1\"><span class=\"s1\">Core Screening lecture</span></p>\n<p class=\"p1\"><span class=\"s1\">The Core screening (Spine Biomechanics) workshop which was also fully booked and so as usually I started with ..</span></p>\n<p class=\"p1\"><span class=\"s1\">“Why are you here?” </span></p>\n<p class=\"p1\"><span class=\"s1\">This group said they wanted to;</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn how to maintain good core control</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn how to get a strong core</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn how to help people with LBP</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn about improving posture</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn the best core exercises</span></p>\n<p class=\"p1\"><span class=\"s1\">Their responses made me realise they were not necessarily going to be getting what they expected but that’s the point of education isn\'t it? To be taken into areas of the unknown, to have our knowledge challenged, to enable us to develop and expand.</span></p>\n<p class=\"p1\"><span class=\"s1\">This practical session had 2 volunteers undergo 4 screens to understand their isometric core strength ratios, and therefore their injury risk, along with which areas of their core strength required focus in training</span></p>\n<p class=\"p1\"><span class=\"s1\">This session brought up some really great, interesting questions and discussions amongst the group like;</span></p>\n<p class=\"p1\"><span class=\"s1\">What is ‘weak’ anyway?</span></p>\n<p class=\"p1\"><span class=\"s1\">Are we GIVING clients back pain unknowingly?</span></p>\n<p class=\"p1\"><span class=\"s1\">Is core work gluing the wrong position?</span></p>\n<p class=\"p1\"><span class=\"s1\">How do we correct core strength ratio’s?</span></p>\n<p class=\"p1\"><span class=\"s1\">All of this gave those present an idea of what we discuss during our 2 day Spine Biomechanics workshop.</span></p>\n<p class=\"p1\"><span class=\"s1\">Foot Biomechanics lecture</span></p>\n<p class=\"p1\"><span class=\"s1\">While the final day is relatively quiet and only a half day, I wasn\'t quite prepared for the response to our Foot Biomechanics presentation which was not only fully booked - but jammed to the rafters!!</span></p>\n<p class=\"p1\"><span class=\"s1\">50 People squished into every corner of the room, standing in the doorway and on every inch of floor space to hear what we had to say about foot biomechanics. </span></p>\n<p class=\"p1\"><span class=\"s1\">“Why are you here?” </span></p>\n<p class=\"p1\"><span class=\"s1\">These guys wanted answers to all sorts of questions;</span></p>\n<p class=\"p1\"><span class=\"s1\">How can I help plantar fasciitis?</span></p>\n<p class=\"p1\"><span class=\"s1\">How do feet affect running gait?</span></p>\n<p class=\"p1\"><span class=\"s1\">How does running gait affect feet?</span></p>\n<p class=\"p1\"><span class=\"s1\">What are the best exercises for feet?</span></p>\n<p class=\"p1\"><span class=\"s1\">Does genetics affect foot function?</span></p>\n<p class=\"p1\"><span class=\"s1\">There was certainly a deep fascination from the audience recognising we really should understand foot function better. By breaking down this complex joint into what we, as PT’s, NEED to know, we then discussed what we CAN do to help our clients in relation to their feet. By increasing our understanding of both descending and ascending biomechanical influences we are better placed to refer, prescribe the right exercises or at least do something pro-active. We look at this in much more detail during our 2 day Knee &amp; Foot Biomechanics workshop. Interestingly I had a podiatry student in the lecture who came to speak to me afterwards and stated \"you have just made my entire degree make sense\"!</span></p>\n<p class=\"p1\"><span class=\"s1\">Since Monday morning I have been inundated with emails, texts and FB messages from the IFS attendees wanting to secure workshop dates before they all go - so I guess you liked it right!? The whole event was full of support and proves just what a fantastic industry it is;</span></p>\n<p class=\"p1\"><span class=\"s1\">The Spinning® gang are always super supportive and this year was no different.</span></p>\n<p class=\"p1\"><span class=\"s1\">We also had 2 volunteer Biomechanics Coaches™, newly qualified Stuart Farmer and trainee Matt Gibbs. These guys gave up valuable free time simply to support their training academy Biomechanics Education! </span></p>\n<p class=\"p1\"><span class=\"s1\">Thank you guys!!</span></p>\n<p class=\"p1\"><span class=\"s1\">There was a change of help. A group of super excitable and extremely supportive friends who come to my classes, wanted to come and see what the event was all about and again volunteer valuable free time to get involved and help Biomechanics Education.</span></p>\n<p class=\"p1\"><span class=\"s1\">Thank you SSSPA crew!</span></p>\n<p class=\"p1\"><span class=\"s1\">Do you want to learn more about the content of lectures?</span></p>\n<p class=\"p1\"><span class=\"s1\"><a href=\"https://www.www.biomechanicseducation.com/schedule/\">READ MORE</a></span></p>','Why Are You Here?','','draft','open','open','','why-are-you-here','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=674',0,'post','',0),(675,3,'2016-03-25 07:44:49','2016-03-25 07:44:49','','','','inherit','open','closed','','screen-shot-2016-03-25-at-07-44-25','','','2016-03-25 07:44:49','2016-03-25 07:44:49','',674,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-25-at-07.44.25.png',0,'attachment','image/png',0),(677,3,'2016-03-26 20:03:06','2016-03-26 20:03:06','<p class=\"p1\"><span class=\"s1\">While I was waltzing around Blackpool, the awesome Chris Kitson was at Brendan Chaplin\'s event. Here is his report of his experience...(SO wish I could have been there!)........</span></p>\n<p class=\"p1\"><span class=\"s1\">What a whirlwind weekend at the very first Strength &amp; Success Summit! An amazing event that was filled to the brim with education on training, nutrition, and movement by some of the best guys in the industry.</span></p>\n<p class=\"p1\"><span class=\"s1\">I was lucky enough to be in that line up of speakers and OH. MY. GOD. I loved it! The weekend was host to some of the most motivated and switched on Strength &amp; Conditioning Coaches and Personal Trainers in the country. A buzzing atmosphere from the start. </span></p>\n<p class=\"p1\"><span class=\"s1\">The event kicked off with some witty remarks from Mark Laws taking a pop at each presenter as he gave the audience a run down on each presenter and what to expect from their sessions. Of course I had a lovely picture of a lady in a leotard doing some crazy gymnastic style movement as my background.</span></p>\n<p class=\"p1\"><span class=\"s1\">Next up the main man Brendan Chaplin, one of the top UK Strength &amp; Conditioning Coaches. Brendan ran us through some top business tips that helped him to reach where he is now. Hitting the audience with some solid principles to build upon with their own business. His 7 killer questions were very revealing and I\'d tell you them, but I\'d have to kill you...</span></p>\n<p class=\"p1\"><span class=\"s1\">Once I\'d been inspired by Brendan, it was my turn to take the lead and introduce my group to the world of intrinsic biomechanics. We explored what this consists of, and also how it could fit in to their current practice right now. We got physical and started looking at how different sections of the body were affecting each other, as well as explaining how the skeletal, myofascial, and nervous systems were very much interrelated. Some common injuries that commonly prop up were mentioned with no answers given, but simply a thought process as to what might potentially contribute towards them. I\'m never one to give a straight answer if I know I have people in front of me that can figure things out by themselves. The session was greatly received and I had a blast presenting it to a talented group.</span></p>\n<p class=\"p1\"><span class=\"s1\">There was plenty of time for networking in the break times and there were some great new partnerships formed. Our first break led us on to the next key note speak, Karl Tanswell. This guy scared half of the room simply by walking in to it. He\'s a renowned fighting coach who has worked with many of the greats including Connor McGregor. Karl took us through a step by step process of how he deals with his fighters and how he focusses on the basics. Weakness get worked on and drilled until they become strengths. I can only imagine trying to disagree! An excellent session with lots of solid principles in there. A great guy to chat to as well!</span></p>\n<p class=\"p1\"><span class=\"s1\">Everyone\'s favourite part of the day now which is lunch time. The hotel supplied a sterling buffet lunch which was plentiful and very good quality food (you know that\'s important). </span></p>\n<p class=\"p1\"><span class=\"s1\">After everyone had filled their stomachs, it was time for a lesson in business from the one and only Russell Jolley. I remember nearly crying with laughter for most of his presentation whilst picking up some solid business tips too. Well known for the blue air when he enters the room, there was a tally running on the table in front of my counting up the swearing content, to which I believe over 120 swear words were counted over the 60min presentation. Now that\'s some going! It wasn\'t all about the language however, Russell covered important topics including; knowing your avatar, common programmes to use, how to market on social media sites, as well as how to build trust and a community within your business. Top stuff.</span></p>\n<p class=\"p1\"><span class=\"s1\">Brendan Chaplin was up again after Russell to give us some key information on the new level 4 Strength &amp; Conditioning course being launched through Strength &amp; Conditioning information. This is NOT to be missed. The content simply looks awesome. </span></p>\n<p class=\"p1\"><span class=\"s1\">On to session 2 for me of the day, looking at the same intro to intrinsic biomechanics with another amazing set of S&amp;C coaches, Personal Trainers, and therapists. The nerves had calmed by this point and again I had a blast. We had some wow-ed faces as we demo-ed some basic skills on one of the participants. A leg length discrepancy and shoulder issue that could be adapted with 1 simple pelvic exercise. Easy when you know how! </span></p>\n<p class=\"p1\"><span class=\"s1\">Presenting at the same time as myself on both session (and I\'m gutted as their content sounded great) was Steven Gordon the Kettlebell master, and also Simon Herbert from Body Type Nutrition. Ste covered the Turkish get up and kettlebell swing, whilst Simon covered Explosive Sports Nutrition. From what I hear they were great!</span></p>\n<p class=\"p1\"><span class=\"s1\">The end of day one drew in with some group photos of all the participants and presenters and there was a real sense of community, shared learning, and mutual respect. Not an ego in sight. That to me is priceless. </span></p>\n<p class=\"p1\"><span class=\"s1\">After surprise 30th birthday party on the Saturday night I was a little worse for wear Sunday morning but had to make it in to see some more knowledge bombs. On arrival it seemed I wasn\'t alone either, which made me feel slightly better.</span></p>\n<p class=\"p1\"><span class=\"s1\">Day 2 kicked off with a solid presentation from Brendan Chaplin on his principles for training and programming. The content was gold dust. Brendan took us through his thought process and gave some examples of clients that he works with including videos of exercises showing development of reactions as well as some more specific goal-driven exercises. The notepad was out and all ears were wide open in this seminar for sure. Just a reminder that the nice guy that we\'d been chatting with over the weekend was in fact one of the UK\'s top S&amp;C coaches and VERY good at what he does. His athletes are testament to that.</span></p>\n<p class=\"p1\"><span class=\"s1\">The breakout sessions day 2 included the one and only Ben Coomber covering how to optimise recovery for our athletes/clients. This was a very up close and personal talk in a room where we were free to ask questions and talk things through which was great. Ben covered the basics of optimising recovery, and threw in some interesting bits of research for us to look up too. Plenty of suggestions on what we can do to optimise all aspects of recovery, not simply nutrition alone. A solid talk with no questions left at the end. </span></p>\n<p class=\"p1\"><span class=\"s1\">At the same time we had Darren Stratton delivering a practical session on mobility, where I\'m told the ankle and low back were the main focusses. I missed this however due to being in on Ben\'s talk. All participants reported great things from Darren\'s session however.</span></p>\n<p class=\"p1\"><span class=\"s1\">Also in the break out sessions was Mark Laws demonstrating some great body weight conditioning exercises that people can try out with their clients. Again, unfortunately I missed this due to being in Ben\'s session, but the feedback was great from the participants. I know Mark has launched a body weight training workshop that is touring the UK currently, so if you see it don\'t hesitate to jump on that.</span></p>\n<p class=\"p1\"><span class=\"s1\">The second key note speaker was James Vincent who was there to speak about mindset and how it can be used to drive your business forwards. James has worked with many top businesses and coaches CEOs on a daily basis. He talked us through potential and performance and how to bridge the gap. Identifying myself as a \'workhorse\' during the talk aids me in moving forwards with my own business and plans for the future. James presented us with an update on setting SMART goals with 3 simple steps:</span></p>\n<p class=\"p1\"><span class=\"s1\">Think big</span></p>\n<p class=\"p1\"><span class=\"s1\">Act Small</span></p>\n<p class=\"p1\"><span class=\"s1\">Move Quick</span></p>\n<p class=\"p1\"><span class=\"s1\">This hit home for me and inspired me to re-think some of my current systems and processes in my business. Just 3 simple phrases can change everything. A fantastic talk from James.</span></p>\n<p class=\"p1\"><span class=\"s1\">Unfortunately at this point I had to leave due to family commitments but I would just like to say that I\'ve never been to an event with such a great atmosphere (apart from TMC of course!) and filled with so many talented individuals. I feel absolutely honoured to be a part of the speaker list and hope to be back again in the future.</span></p>\n<p class=\"p1\"><span class=\"s1\">If you\'re thinking of going to the next event, then I can\'t recommend it enough. Seriously. For the price point, the level of content along with networking and lunch etc is insane! I would recommend any of the line up\'s courses after speaking with them. These guys have some serious experience and knowledge that will help you take the next step forwards in your career, whichever path you may choose.</span></p>\n<p class=\"p1\"><span class=\"s1\">Chris Kitson, Biomechanics Coach™, Master Trainer</span></p>\n<p class=\"p1\"><span class=\"s1\">Want to do one of Chris\'s workshops?</span></p>\n<p class=\"p1\"><span class=\"s1\">Biomechanics Trainer™ 2 day workshop JUNE 4th/5th</span></p>\n<p class=\"p1\"><span class=\"s1\"><a href=\"https://www.www.biomechanicseducation.com/workshop/biomechanics-trainer-4/\">BOOK NOW</a></span></p>','Strength Summit Report','','draft','open','open','','strength-summit-report','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=677',0,'post','',0),(678,3,'2016-03-26 20:02:59','2016-03-26 20:02:59','','','','inherit','open','closed','','screen-shot-2016-03-26-at-19-59-04','','','2016-03-26 20:02:59','2016-03-26 20:02:59','',677,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-26-at-19.59.04.png',0,'attachment','image/png',0),(682,3,'2016-03-30 08:11:53','2016-03-30 08:11:53','<p class=\"p1\"><span class=\"s1\">Re-released by request another awesome insight into the thoughts of the Master of Intrinsic Biomechanics, Martin Haines. This article will fascinate anyone who trains athletes, plays sport or anyone who hasn\'t yet considered the impact of nerves within the \'integrated system\'.</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Understanding nerves…..</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Nerves have been described as the software of the body and to be able to understand this more thoroughly we have to understand about ‘nerve tension’ and ‘Adverse Neural Tension’. These concepts have been recognised for over 100 years in terms of treating patients clinically, but their full potential has never been understood until now. An analogy with the invention of the wheel is an interesting one. The discovery of nerve tension and it being used for the treatment of injuries is like the wheel being invented and placing it on its side, putting 4 legs around the underside and using it as a table. It makes a great table, but the idea to use it in the way we know it today was ground breaking. The same applies to nerve tension and its application to athletic performance and fatigue relief.</span></p>\n<p class=\"p1\"><span class=\"s1\">The entire nervous system, is a single continuous tract, so it follows that if any part of this continuous tract is trapped or tethered (as with an injury for example) then it also follows that there will be some restriction of the mobility of other parts of the nerve system. So a problem with one part of the nerve can cause pain in another – this is the clinical application. However, we have discovered that this is not always represented by pain but also by a reduction of joint range of movement and altered joint biomechanics which can affect a whole host of problems that can cause restricted performance and may ultimately lead to injury. Moreover, with the increased muscle spasm and associated factors, local fatigue increases and so understanding these principles can lead to benefits not only in human performance but also fatigue relief.</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Research</b></span></p>\n<p class=\"p1\"><span class=\"s1\">We know this happens from research performed at Liverpool Hope University College and studies their demonstrate astonishing results. One experiment showed that a muscle can increase its force output by 14% after a brief preliminary warm-up (just one 15 second workout using this concept). Another experiment showed that by following the same concept a 2 minute programme performed daily for 10 days increases muscle output by over 50%. By understanding the importance of the interaction of individual body systems with each other, we have established the worlds largest database of its kind and have included the outcomes of the auditing of this information in the Biomechanics Coaching™ Courses.</span></p>\n<p class=\"p1\"><span class=\"s1\">On the course you learn how to test your ‘nerve tension’ and prescribe movement patterns to enhance the coordinated output of your body’s systems. In terms of fatigue relief, it has been demonstrated that after 15 seconds of the programme, muscle fatigue is reduced by up to 14% immediately and sustained use led to significant and prolonged increase in muscle output. These studies have been validated at the highest level. A paper was submitted at the 6th Asian Biomechanics Congress (one of the worlds most credited) and was enthusiastically received. In a practical sense the programmes have been rigorously tested by people such as Olympic athletes through to workers on a product line and hospital health trusts.</span></p>\n<p class=\"p1\"><span class=\"s1\">Remember in most cases we are not even aware we have a problem, but even so you can still achieve these remarkable results. Just imagine what these figures could do you for your performance in your sport or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office.</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Terminology</b></span></p>\n<p class=\"p1\"><span class=\"s1\">So when it comes to exercise programming our holistic approach, which is commonly described but rarely understood and demonstrated, takes into consideration all of the body’s systems, and it has a deep understanding of how they interact and are guided by our nervous system. Description terms such as strength and power in this model are inadequate, so when we talk about exercises in these terms, we should be talking in terms of Movement Acquisition Patterns (or MAPs) which are used to enhance a given set of functional movements, not stretches or strengthening exercises, as the latter do not give credit for the full implications of the programming.</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Example</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Lets take a hamstring stretch as an example, we are not trying to stretch the hamstrings when we extend the leg out in front of us, we are trying to improve the range of hip flexion and knee extension by stretching the structures on the back of the leg and back. This brings in more than just the hamstrings, it can also be limited by a tight sciatic nerve, a rotated sacro-iliac joint in the lower back, tight gastrocnemius, tight spinal cord and indeed almost any nerve in the chain given the continuum concept described earlier. How many times have you stretched your hamstrings using the generally accepted methods only to find that their flexibility continues to be stubborn and often returns to their standard length very soon? Many people experience this phenomenon. The reason is often due to them stretching only one of the structures that limit the movement, i.e. the hamstrings. If they do not stretch the other structures as well, of course they will not be affected and so the limited range will usually return. So we are trying to acquire a pattern of movement, not just stretching the hamstrings. </span></p>\n<p class=\"p4\"><span class=\"s1\">Learn how to test nerves...</span><span class=\"s2\">\n<a href=\"https://www.www.biomechanicseducation.com/\"><span class=\"s3\"><b>READ MORE</b></span></a></span></p>','Test Your Nerve','','draft','open','open','','test-your-nerve','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',0,'https://www.www.biomechanicseducation.com/?p=682',0,'post','',0),(683,3,'2016-03-30 08:11:46','2016-03-30 08:11:46','','','','inherit','open','closed','','neuron','','','2016-03-30 08:11:46','2016-03-30 08:11:46','',682,'https://biomechanicseducation.com/wp-content/uploads/2016/03/neuron.jpg',0,'attachment','image/jpeg',0),(702,3,'2016-04-03 12:14:38','2016-04-03 12:14:38','Not Any More!!\n\nThis gorgeous young lady is April\'s Biomechanics Coach™ of the Month!\nShe was nominated for being our first ‘home grown’ Specialist Biomechanics Coach™ who took on a completely new career with 100% commitment and determination to expand her knowledge as much as she could.\nCongratulations Libby!\n\n<strong>Your biography in brief </strong>\n\nI’m a self-employed Health and Performance Coach, a Specialist Biomechanics Coach™, Sports Masseur and Nutritionist. After working 10 years in corporate and incentive events and travelling around the world,  I wanted a career change, something that I could combine with looking after my daughter. I’ve been doing this for over six years now and I absolutely love my job! I help people become pain free, move more freely and start enjoying life as they should.\n\n<strong>What made you choose Biomechanics Coaching</strong>™<strong>? </strong>\n\nI wanted a career that was flexible but most of all rewarding, both financially and emotionally. After ten years working in events, travelling eighty days a year and sat at a desk for the rest, I wanted a different future. I wanted to be fit, healthy and happy, I wanted some family time and most of all I wanted to help other people achieve this too. So, the fitness industry was calling. I started studying nutrition and taking personal training modules. Then one day in the gym changing room I met Rachel France - and I ended up changing more than my Nikes! After speaking to her, I knew Biomechanics Coaching™ was what I needed to build my knowledge, my skills and my business. I begin to study gaining my Biomechanics Coaching™ qualification and my lower back specialism. I also passed my sports massage course with the company, which works perfectly alongside the Biomechanics Coaching™.\n\n<strong>What do you specialise in outside of Biomechanics Coaching</strong><strong>™</strong><strong>? </strong>\n\nAs well as Biomechanics Coaching™, I offer sports massage and nutrition coaching to my clients. This enables me to increase clients’ performance, health and well being. A complete package. It’s truly what’s inside that counts!\n\n<strong>Where would you like to see yourself in ten years from now? </strong>\n\nDoing what I do now, still learning and developing, but maybe overseas…where the sun is shining everyday :-)\n\n<strong>What would be your advice to somebody thinking of becoming a Biomechanics Coaching</strong><strong>™? </strong>\n\nInvest in the qualifications and stand out from the rest. You will have these tools in your pocket for life, not only benefitting your clients but giving you the best foundation for a successful career in health and fitness. <strong> </strong>\n\n<strong>On the journey to where you are now what have been your achievements? </strong>\n\nProbably the biggest achievement is gaining my qualifications while working and being a single parent. At times it was hard, but it was all worth it. Then building my client base from nothing, to the successful business it is today. It means a lot to me that most of my clients come from recommendations.\n\n<strong>Personal Sporting Career highs</strong>\n\nI was never into sports as a child and I didn’t start training until I was in my twenties, but now weight lifting is a huge part of my life. It’s my release; it keeps me strong for my job as well as looking the part. I’m still looking to expand my skills in sport though, maybe tennis or hockey. Watch this space.\n\n<strong>Tell us a secret or something interesting about you that not many people know about you: </strong>\n\nI used to melt a mars bar over a packet of crisps in the microwave, the unhealthiest snack ever! I can’t imagine what effect this had on my body. My diet has improved luckily for my health and career.\n\nWhere you can find me:\n\nWest Bridgford, Nottingham\n\nt 07983 592 147\n\ne <a href=\"mailto:libby@libbyupton.com\">libby@libbyupton.com</a>\n\nw www.libbyupton.com\n\nDo you have passion for helping people like Libby?\nWould you like a career like Libby\'s?\n<a href=\"https://www.www.biomechanicseducation.com/\" target=\"_blank\" rel=\"noopener\"><u><strong>READ HERE</strong></u></a> how you too can become a Biomechanics Coach™','Melt Mars Bars Over Crisps!?','','draft','open','open','','melt-mars-bars-over-crisps','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.www.biomechanicseducation.com/?p=702',0,'post','',0),(703,3,'2016-04-03 12:14:28','2016-04-03 12:14:28','','','','inherit','open','closed','','screen-shot-2016-04-03-at-06-22-03','','','2016-04-03 12:14:28','2016-04-03 12:14:28','',702,'https://biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-03-at-06.22.03.png',0,'attachment','image/png',0),(705,3,'2016-04-04 09:10:01','2016-04-04 09:10:01','If you were at my Foot Biomechanics lecture in Blackpool last month, this article will expand on that information and if you were NOT there this is the kind of stuff we were discussing, including the fact that we as PT\'s, fitness professionals, Pilates and Yoga teachers really should know a little bit about foot function!\n\nThis is an article, my colleague and friend Fletch wrote some time ago and so I thought you might like it...\n\nThe foot is a mechanical masterpiece; it has never been re-created by man even with all the computer and technological power that we possess. This wizardry comes from the harmonious link between the 3 “separate” systems Nerve, Muscle, Joint.\n\nThe sub talar joint is one of the major reasons that an artificial foot is so hard to produce. With its infinite axis and complex articulations it is the key to the body’s ability of shock transfer. When the foot hits the floor we experience ground reaction force (shock). This force is the very reason that the subtalar joint exists, pronation is our protection against these repetitive shocks or loads.\n\n<b>We Need Shock:</b>\n\nWe have developed the ability to pronate not because we want to be rid of shock but to have the ability to control it. Shock is a major player in allowing the pelvis and spine to move properly, this shock could otherwise be explained as a pulse or signal that de rotates the pelvis and spine and evokes tensegrity in our structure (Gracovetsky 1988)\n\nThere is no discussion that we need to heel strike when it comes to walking; the interesting debate starts when we bring speed into the equation. With an increase in speed comes an increase in the potential forces that you might encounter. So when we run we put larger forces through the body and this is something the body has to adjust for. Everything in the body is kept in an exact balance, tip that balance and at best compensation is needed, at worst injury or disease can present its self. This pulse from the foot to the pelvis is no different; it has to be just enough to de-rotate the spine and pelvis but not too much so that the knee and hip have to dissipate the excess.\n\nThis pulse is also our major economiser, it allows us to switch between our muscular and fascial systems to save energy and maintain a constant work load. This oscillation between muscle and facia is achieved by the pelvis and spine receiving the perfect pulse from the heel strike.\n\nWe do have a time when a forefoot strike is perfect. Sprinting is a high power low duration gait that will require us to run on the forefoot. The stretch reflex of the gastrocnemius and soleus muscles along with the ridged supinated foot allow a large amount of power to be generated. This form of gait obviously does not produce the pulse needed to de-rotate the spine, requiring extra muscular effort to do so, but this is immaterial as the duration of the activity is only around 10-20 seconds.\n\nSo we have the 2 extremes identified. Walking is a heel strike and sprinting is on the forefoot. The big debate is what technique should the middle and long distance runners be using? There a little research out there at the moment that point to a forefoot strike and there are others that point to the heel strike.\n\nThe forefoot strike is being named as the most efficient way to run and for some populations this is probably true. If someone is lacking the ability to pronate then they will need to have another form of shock absorption, this is where the forefoot style can be used to reduce ground reaction force by the ankle joint plantar flexors acting eccentrically.\n\nHowever to suggest that forefoot striking is right for everyone is a challenging concept.  Is one technique ever suitable for anyone?  When looking at the research published in support of forefoot striking, consider whether the authors or the organisations that pay for the research, have anything to gain from the results.  If you go looking for something you are guaranteed to find it.  To reduce bias the study should include \'outside un-bias researchers\' performing the full methodology of the study.  If the outcome is the same, then the study is known to have inter-rater and intra-rater reliability and any less is merely commercial hype and too much of this exits in the fitness industry and some of it refers to the forefoot striking research.\n\nAnother variable that is not taken into account in any study that we have come across is that of intrinsic biomechanical dysfunction. Dysfunction in the pelvis for example could lead to a functional difference in leg length; this has been shown to be a predictor of injury1. So was it the type of foot strike or the dysfunctional pelvis (or one of the many other intrinsic biomechanical issues that can present) that led to the results gathered in the current research out there?\n\nThe best coaches see what the athlete’s body is doing naturally and then refine their technique to suit their natural running style rather than fit everyone into the same box.  From a coaching point of view, we need to recognise that the brain has the most amazing ability to make decisions to allow us to move our body and to compensate for any abnormal movement patterns and some biomechanical problems.  If we attempt to artificially change its instinctive genius we can easily disrupt the body’s ability to control movement.\n\nThe take home message from this is that there is a lot more work needed in the field of research on this subject.  There are as many arguments for forefoot striking as against, and while forefoot striking certainly is suitable for some runners who’s intrinsic biomechanics suit that style, there are others who clearly do not.\n\n1. Friberg O. Leg length asymmetry in stress fractures: a clinical and radiological study. J Sports Med Phys Fitness 1982; 22: 485-8\n\nAnthony Fletcher\n\nSpecialist Biomechanics Coach™\n\nThe Body Mechanic\n\n<b>Would you like to be able to assess knee and foot function?</b>\n\n<b><a href=\"https://www.www.biomechanicseducation.com/workshop/knee-foot-biomechanics/\">READ MORE</a></b>','We NEED Shock!','','draft','open','open','','we-need-shock','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.www.biomechanicseducation.com/?p=705',0,'post','',0),(706,3,'2016-04-04 09:09:48','2016-04-04 09:09:48','','','Pressure','inherit','open','closed','','pressure','','','2016-04-04 09:09:48','2016-04-04 09:09:48','',705,'https://biomechanicseducation.com/wp-content/uploads/2016/04/foot.jpg',0,'attachment','image/jpeg',0),(708,3,'2016-04-06 08:28:56','2016-04-06 08:28:56','Seriously I could burst at the seams sometimes but that just wouldn\'t be good for my biomechanics!!\n\nHowever today I want to share with you why...\n\nHave you ever thought about doing one of our workshops or even the whole <a href=\"https://www.www.biomechanicseducation.com/schedule/\">Biomechanics Coach™ Diploma workshop</a> series right?\n\nYou hear your phone ping, then read the Juicemail, absorbing what you can by scanning the words quickly on the screen of your mobile phone or laptop right?\n\nWell keep reading and let me share a little bit of my fantastic world with you and see if you would like me share even more of it with you.....\n\nThese are the kind of emails I get after a workshop....\n\n----------------------------------------------------------\n\nThanks Rachel, I did a screen yesterday, it all went well and I found the underside of the PSIS easily, now I know I was looking for the wrong point before. I found some interesting dysfunctions and am looking forward to seeing if I can improve these by following the system.\n\n----------------------------------------------------------\n\nHelloooooooooooo,\n\nI just wanted to send a quick note (although knowing me it won’t be THAT quick) to say a big thank you for last weekend. Anyone who has asked me how my course was is greeted with a massive grin when I reply with hand on heart “AWESOME – I have never found feet so disgustingly fascinating” – and that’s the truth!\n\n...... all I can tell you is how EXCITED I am to put all this into practice.\n\n----------------------------------------------------------\n\nThanks for the feedback Rach... thanks for ur support xx\n\n----------------------------------------------------------\n\nHi Rachel thank you for another amazing day. Lots to take in.\n\nHead is screaming for more knowledge haha.\n\n----------------------------------------------------------\n\nHey &#x1f60a; thank you so flipping much for a brilliant weekend! Genuinely think I\'ve found the direction I want to go in... <a href=\"https://www.www.biomechanicseducation.com/schedule/\">Biomechanics Coaching™</a> is probably the most fascinating thing I have ever come across and the passion you show when your delivering the information is unbelievable &#x1f44c;\n\nThank you for the feedback, the paperwork feedback made me chuckle &#x1f604; spot on though... I\'m determined to get my hands on as many people as possible now..already have three people who want to be my case study, there will be loads more but at least I\'ll have lots to choose from &#x1f60a; can\'t tell you how much I appreciate everything you\'ve done for me... your my hero &#x1f44d;\n\n----------------------------------------------------------\n\nAWWWWWW\n\nHey would you like to experience some of things these guys did?\n\nCome and find out why I love my job so much!\n\nCheck out our schedule <a href=\"https://www.www.biomechanicseducation.com/schedule/\">HERE</a> where there is something for everyone!','You Are My Hero!','','draft','open','open','','you-are-my-hero','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.www.biomechanicseducation.com/?p=708',0,'post','',0),(709,3,'2016-04-06 08:28:47','2016-04-06 08:28:47','','','','inherit','open','closed','','screen-shot-2016-04-06-at-09-28-28','','','2016-04-06 08:28:47','2016-04-06 08:28:47','',708,'https://biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-06-at-09.28.28.png',0,'attachment','image/png',0),(711,3,'2016-04-09 05:31:20','2016-04-09 05:31:20','<b>The Spine</b>\n\nIn part 1 of this series we discussed the various types of squats that you may have experienced or come across and some of the aspects that may influence your decision on which squat is most appropriate to you. In part 2, I would like to discuss more specifically the bodies biomechanical effects on the spine during squatting movements both with and without resistance.\n\n<b>The ‘Break Point’</b>\n\nStuart McGill refers to what he calls the ‘<i>break point’</i> which he explains is; during squatting, there is a loss of the ‘<i>neutral spine’</i>. This loss of neutral curvature is actually how our spines were designed to move while we were sitting on our haunches when cooking, eating or performing tasks on the floor. In some countries this is still the case and in fact these natives seem to have a very low incidence of low back pain.\n\nYou will see in the photo on the left an example of a break point whereas the image on the right does not have a break point:\n\n<img class=\"alignnone size-medium wp-image-712\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-08-at-20.57.10-300x111.png\" alt=\"Screen Shot 2016-04-08 at 20.57.10\" width=\"300\" height=\"111\" />\n\nWe also know from McGill’s work, and others, that each of the facet joints in the lumbar region allow a range of 5-8mm of flexion/extension and 1-5 mm of lateral flexion. This gives a total of about 45-50<sup>0</sup> of forward flexion from a fully extended position that we could call safe at the lumbar spine when squatting without resistance. Once we add some resistance, a barbell for example, this adds a compressive load onto these facet joints, whose main role is to stop excessive movement of the spine. This movement restriction protects the discs, and reduces their vulnerability and their risk of wear and tear. Consider a healthy, symmetrically stacked and robust spine and this compressive load is pretty safe, now imagine if you have asymmetry, any mechanical dysfunction or improper technique affecting the spines movement capacity and the risk increases further.\n\nSo you can see how actually there is much to consider when performing the squat with any kind of load on the spine if we are to maintain a healthy trunk long term.\n\nThe images below should help to explain what the ‘break point’ might mean to you and your technique.\n\n<img class=\"alignnone size-medium wp-image-713\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-08-at-20.57.18-300x114.png\" alt=\"Screen Shot 2016-04-08 at 20.57.18\" width=\"300\" height=\"114\" />\n\nThe image on the left shows that if there is a break point, or spinal flexion, during a weighted squat, the position of the bar/resistance in relation to the gravitational pull is too far forwards for the best balance through the feet i.e. maintaining efficient centre of gravity alignment. This increases the risk of damage to the intervertebral discs as the load on the front of the discs is disproportionate to the on the back.\n\nWith no break point, or spinal flexion (see right), the weight in relation to the gravitational pull is in a far more advantageous position for foot stability and the intervertebral discs and facets are stacked evenly and within safer ranges thus reducing the risk of incurring damage or injury.\n\nWhen considering the forces imposed upon the spine McGill states that:\n\n<i>“when a more neutral lordotic posture is adopted, the extensor musculature is responsible for creating the extensor moment and at the same time provides a posterior shear force that supports the anterior shearing action of gravity on the upper body and handheld load……Thus, using muscle to support the moment neutral posture rather than being fully flexed with ligaments supporting the moment greatly reduces shear loading” </i>\n\nWhat McGill means is the shear force is the force that causes one vertebra to move forwards (or backwards) in relation to the one above or the below and increases the pressure on the intervertebral discs and facet joints. Therefore minimising these shear forces by correct alignment during squatting is more important.\n\n“What does this mean when translated into my squat technique”? You might be thinking, well ultimately your own reason for squatting needs to be clear but here I will try to cover as many possibilities as I can starting with this example:\n\n<b>Depth of squat</b>\n\nThis is a topic of much debate and yet all of the matters covered in this series must be considered before we can identify an individual’s <i>capacity</i> for which depth is appropriate. While there are many factors that should be taken into consideration, it is my opinion that there should be 2 main determining factors:\n\n1). the pelvis &amp; spine, their health, functional capacity and safe degrees of spinal flexion, extension\n\n2). the knee, its health, functional capacity and safe degrees of flexion (see The Squat part 3)\n\nUltimately if the aim of your squat is to optimise the development of gluteus maximus then they should be performed to full range as demonstrated by Caterisano’s work. Using EMG data it was concluded\n\nthat as the depth of squatting increases, gluteus maximus activity increases by 9-14% from partial range to full. It was also found that the bicep femoris does not appear to be more active suggesting that a deeper squat would not work this hamstring muscle more than a parallel squat. Bicep femoris shows no more than 2-3% more activity between a partial squat, parallel squat and full squat. (Casterisano et al, 2002)\n\nIf however the goal is to target quadriceps, then a squat depth of 90<sup>0 </sup>appears to be optimal, as shown in several of the studies I have come across Van Eijen et al (1987), Signoile et al (1995), Isear et al (1997), Wretenberg et al (2007). Quadriceps activity will gradually increase during the descent of the squat as the degree of knee flexion increases. However beyond this point the quads are unlikely to enhance their development. On an EMG it has been demonstrated that the 2 vasti muscles produce 40-50% more activity than rectus femoris (Escamilla et al). Narrow or wide stance has not shown to have any greater or lesser effect upon hamstrings and quadriceps activation. VMO activity does increase during greater knee flexion angles as compared to the VL. (McCaw &amp; Melrose, 1999, Signorile et al,1995).\n\nTo summarise on these points;\n\nThe rules for spinal alignment during the squat change when you introduce a barbell or resistance.\n\nWhen asked a common question like “how deep should I squat?” we should really be asking a series of questions back before we can even begin to answer with any confidence, starting with ‘why are you asking and what are you trying to achieve?’. Understanding an individuals intrinsic biomechanics will also mean we have a more objective method of analysis to increase confidence in your exercise prescription.\n\nComing next….\n\n<b>The squat part 3 - The knee</b>\n\nWould you like to learn how to assess for spinal hinges and what causes them?\n\n<b><a href=\"https://www.www.biomechanicseducation.com/workshop/spinal-biomechanics-2/\">READ MORE HER</a>E</b>','The Squat Part 2/6','','draft','open','open','','the-squat-part-26','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.www.biomechanicseducation.com/?p=711',0,'post','',0),(712,3,'2016-04-09 05:28:58','2016-04-09 05:28:58','','','','inherit','open','closed','','screen-shot-2016-04-08-at-20-57-10','','','2016-04-09 05:28:58','2016-04-09 05:28:58','',711,'https://biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-08-at-20.57.10.png',0,'attachment','image/png',0),(713,3,'2016-04-09 05:29:03','2016-04-09 05:29:03','','','','inherit','open','closed','','screen-shot-2016-04-08-at-20-57-18','','','2016-04-09 05:29:03','2016-04-09 05:29:03','',711,'https://biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-08-at-20.57.18.png',0,'attachment','image/png',0),(714,3,'2016-04-09 05:29:09','2016-04-09 05:29:09','','','','inherit','open','closed','','screen-shot-2016-04-08-at-21-02-38','','','2016-04-09 05:29:09','2016-04-09 05:29:09','',711,'https://biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-08-at-21.02.38.png',0,'attachment','image/png',0),(715,3,'2016-04-09 05:31:13','2016-04-09 05:31:13','','','Lead Instructor','inherit','open','closed','','screen-shot-2016-04-08-at-21-02-38-2','','','2016-04-09 05:31:13','2016-04-09 05:31:13','',711,'https://biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-08-at-21.02.38-1.png',0,'attachment','image/png',0),(721,3,'2016-04-11 11:49:38','2016-04-11 11:49:38','<p class=\"p1\"><span class=\"s1\">When I was first approached by Fiona Mackie back in January to deliver an iMoveFreely® instructor workshop on the Isle of Man I felt excited for several reasons;</span></p>\n<p class=\"p1\"><span class=\"s1\">A). iMoveFreely was clearly continuing to spread!</span></p>\n<p class=\"p1\"><span class=\"s1\">B). A trip was in the cards! </span></p>\n<p class=\"p1\"><span class=\"s1\">C). I could visit my cousins who I hadn\'t seen in a decade! </span></p>\n<p class=\"p1\"><span class=\"s1\">But when I saw the attendee list that Fiona had gathered it amplified my excitement even further!</span></p>\n\n<ul>\n	<li class=\"li5\"><span class=\"s1\">Physiotherapist</span></li>\n	<li class=\"li5\"><span class=\"s1\">Chiropractor</span></li>\n	<li class=\"li5\"><span class=\"s1\">PT</span></li>\n	<li class=\"li5\"><span class=\"s1\">Yoga teacher</span></li>\n	<li class=\"li5\"><span class=\"s1\">Sports Masseur</span></li>\n	<li class=\"li5\"><span class=\"s1\">Gym instructor </span></li>\n	<li class=\"li5\"><span class=\"s1\">Sports therapist</span></li>\n	<li class=\"li5\"><span class=\"s1\">Bowen practitioner </span></li>\n	<li class=\"li5\"><span class=\"s1\">Holistic therapist </span></li>\n	<li class=\"li5\"><span class=\"s1\">Fitness instructor </span></li>\n	<li class=\"li5\"><span class=\"s1\">Pilates instructor </span></li>\n</ul>\n<p class=\"p1\"><span class=\"s1\">Like WOW! </span></p>\n<p class=\"p1\"><span class=\"s1\">This workshop was going to be seriously fun AND talk about a diverse range of professionals to challenge my facilitation skills! </span></p>\n<p class=\"p1\"><span class=\"s1\">A couple of months later with everything booked and a stunning line up of 14 learners, I flew from Birmingham with my mum, who was coming for a mini break and to catch up with some relatives we have who live on the island.</span></p>\n<p class=\"p1\"><span class=\"s1\">Fiona kindly collected us from the airport at the Isle of Man and dropped us at the hotel for the duration of the stay, Englewood Lodge. </span></p>\n<p class=\"p1\"><span class=\"s1\">OMG this place is amazing!! </span></p>\n<p class=\"p1\"><span class=\"s1\">Classy, stylish, luxurious and our host, Margaret, couldn\'t do enough for us. </span></p>\n<p class=\"p1\"><span class=\"s1\">In our stunning room, with heated floors, Molton Brown toiletries, beautiful decor and furniture, we settled in. </span></p>\n<p class=\"p1\"><span class=\"s1\">We decided to have a nice meal and having decided to walk by the marina we came across the ‘Little Fish Cafe’. We ate scallops and lobster (yes lobster!!) then taxied back to our room later where we both fell asleep grinning I\'m sure.</span></p>\n<p class=\"p1\"><span class=\"s1\">The following morning Fiona collected me and I left mum to a day of sight seeing!</span></p>\n<p class=\"p1\"><span class=\"s1\">14 professionals arrived, manuals ready with that quiet nervousness you get on workshops where you are going to spend time with new people learning new things that may challenge you. </span></p>\n<p class=\"p1\"><span class=\"s1\">Every workshop I deliver I give myself a little challenge too. It is to learn every single name of those present as quickly as possible. I shake hands, look in their eyes, introduce myself and ask their name repeating it a few times in my head (and sometimes out loud!) as I smile and as a few questions.</span></p>\n<p class=\"p1\"><span class=\"s1\">If you were to ask about the ethos of Biomechanics Education Ltd, this workshop really was the epitome of it.</span></p>\n<p class=\"p1\"><span class=\"s1\">To have clinicians, exercise professionals and hybrids altogether in one room learning alongside each other and I could barely contain my excitement! </span></p>\n<p class=\"p1\"><span class=\"s1\">A mild apprehension about ensuring my delivery was appropriate to all and applicable to each individual as I raised each point, reminded me how much I care about this ethos and my learners experience. </span></p>\n<p class=\"p1\"><span class=\"s1\">As a teacher, or rather I prefer facilitator, I take pride in delivering this content simply and effectively to passionate and caring people like these guys. This is the crux of why I love my job, my life and all the experiences I have the opportunity of having. I want to share the joy it brings me and judging by the response during this workshop I sense I may have succeeded in doing a little bit of that. </span></p>\n<p class=\"p1\"><span class=\"s1\">A fantastically open minded Physiotherapist, chiropractor and other therapists worked on tasks alongside smart gym instructors, pilates/yoga teachers and PTs. </span></p>\n<p class=\"p1\"><span class=\"s1\">Questions were challenging but excellent and certainly offered me the chance to learn from them too. </span></p>\n<p class=\"p1\"><span class=\"s1\">Another luxury of my job is mixing with super smart people.</span></p>\n<p class=\"p1\"><span class=\"s1\">So during the iMoveFreely® Instructor workshop we discussed movement analysis, muscle energy techniques, research, tricky clients, challenges we face in our industries, referral opportunities and of course the iMoveFreely® system of improving function and movement to reduce injury risk and improve performance by preparing the body for exercise.</span></p>\n<p class=\"p1\"><span class=\"s1\">All with a huge emphasis on knowing our remit!</span></p>\n<p class=\"p1\"><span class=\"s1\">Each professional would apply these techniques differently but had now found each other to cross refer to when they felt it necessary.</span></p>\n<p class=\"p1\"><span class=\"s1\">After a good 7hrs of learning it was time to demonstrate the magic they had all just acquired. The group watched as I showed them how we as iMoveFreely® Instructors have the ability to change orthotic prescription by releasing Pectoralis Minor in 1 min 20 seconds!! </span></p>\n<p class=\"p1\"><span class=\"s1\">Blew them away!! &#x1f633;&#x1f61c;&#x1f44f;&#x1f3fc;</span></p>\n<p class=\"p1\"><span class=\"s1\">So as we came to close all I heard was</span></p>\n<p class=\"p1\"><span class=\"s1\">\"Can we have more?”, “Will you come back again?”</span></p>\n<p class=\"p1\"><span class=\"s1\">Well you KNOW what I said right? </span></p>\n<p class=\"p1\"><span class=\"s1\">“Of course and there\'s lots more!\" </span></p>\n<p class=\"p1\"><span class=\"s1\">So as I write this while mum and I fly home, Fiona and I have already set the wheels in motion to take Biomechanics Coaching™ to the Isle of Man. </span></p>\n<p class=\"p1\"><span class=\"s1\">Would YOU like a Fast Track Biomechanics Coach™ Diploma in YOUR area? </span></p>\n<p class=\"p1\"><span class=\"s1\">Do you have a venue available?</span></p>\n<p class=\"p1\"><span class=\"s1\">Call me 07976833113</span></p>\n<p class=\"p1\"><span class=\"s1\">Or </span></p>\n<p class=\"p1\"><span class=\"s1\">Email me Rachel@Biomechanicseducation.com </span></p>\n<p class=\"p1\"><span class=\"s1\">TOGETHER by working inter professionally we demonstrate our duty of care. Let\'s get this nation moving more freely and with less pain!</span></p>','Excitement Amplified!','','draft','open','open','','excitement-amplified','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.www.biomechanicseducation.com/?p=721',0,'post','',0),(722,3,'2016-04-11 11:49:08','2016-04-11 11:49:08','','','','inherit','open','closed','','screen-shot-2016-04-11-at-12-48-41','','','2016-04-11 11:49:08','2016-04-11 11:49:08','',721,'https://biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-11-at-12.48.41.png',0,'attachment','image/png',0),(734,3,'2016-04-13 04:47:53','2016-04-13 04:47:53','<strong>If a client did 100 push ups a day for 20yrs would this have a negative impact on the mobility and strength of the shoulder?</strong>\n\nRepetitive movements are performed by us all during our everyday life. However, the movements we are required to perform now are quite different from those we were originally designed to perform several million years ago. What were once natural movements performed in a variety of environments for a number of different reasons, have become more static and repetitive in nature as we have changed from active hunter-gatherers to ‘office loungers’.\n\nOver a period of only 100 years we have become inactive; going from active work to sedentary office jobs where the main activity is walking from the house to the car and then to the office. When we are active these days, it’s often only to perform small static movements such as typing, steering and pressing the remote for the TV. It has been widely reported, in particular by University College London, that repetitive movements are responsible for many of our occupational health issues when it comes to musculoskeletal injuries. Much of this comes from the negative effects of repetitive movement on our soft tissues, including our nerves.\n\nLet’s take a look at some of the effects of repetitive movements. They have a negative effect on joints because, when subjected to prolonged pressure, the cartilage begins to lose its elasticity and become vulnerable to damage.1 Tendons are visco-elastic and repetitive movements subject them to a mechanical phenomenon known as creep, which means they deform when subjected to prolonged stress (or repetitive movements). Nerves are also visco-elastic, so fast movements are difficult without the proper training, and repetitive movements cause them to resist elongation and so muscles have to go into a protective spasm to reduce the load through them.2 High repetition work can also lead to muscle fatigue and, in some cases, Delayed Onset Muscle Soreness (DOMS) and overuse syndromes. DOMS is associated with an increase in muscle tone and faulty excitation of muscle.3 In this state, the muscle is no longer able to contract and relax properly, which means the muscle is in spasm.\n\nThere is some evidence to suggest that repetitive movements are not good for us, but exercise is repetitive; so is exercise actually good for us? As always, it depends upon how you do it. If we are to provide our clients with receptive movements, then we had better make sure they are adequately prepared. Adaptation is the whole purpose of exercise training. Adaptation requires a systematic application of exercise stress. The stress should be sufficient to stimulate adaptation, but not so severe that breakdown and injury occur.4 Using the principles of overload and specificity, researchers have shown that muscles will adapt to the stresses imposed upon them, but those loads have to be progressive. Progressive overload principles were pioneered by Thomas Delorme, MD, after World War II, and with time these principles allow the body to adapt. Ignoring these principles will likely result in poor results and, more often than not, injury.\n\nSo, having explored the background principles to the answer, let’s get back to the initial question. Put simply, if the client understood the principles of progressive overload and sensibly built up to those reps, using a technique that suited the biomechanics of his shoulders, the chances are his body would adapt to the stress and it would have a positive effect on his shoulder mobility and strength. But then there’s more to it isn’t there? A good PT and coach will recognise that working within a training system that develops the whole body as a unit is critical to avoid muscle imbalances. They will also look to understand the reason for doing 100 push-ups a day and establish whether doing that is effective.\n\nAdditionally, a biomechanics coach™ will look to understand the biomechanics of his shoulder; median nerve tension, spasm in Pec Minor, Subscapularis, Infraspinatus (and others). Any issues in these structures will compromise the function of the shoulder joint, and even if the progressive overload principles are adhered to, the muscle imbalances are minimised and the technique is excellent, if the joint is not functioning biomechanically correctly, the risk of injury is increased.\n\nSo, to reduce the negative effects of repetitive movements, it’s important to ensure the correct biomechanical function of the individual joints and systems of the body, then progressively work through a combination of training programmes that suit the needs of the client. Those needs may include strength and conditioning, functional training, bodybuilding, sports specific work, Pilates, etc., combined with the relevant cardio work and anything else that helps him achieve his goals. So would doing 100 push-ups per day for 20 years be good for a client? The answer is – only if it’s part of an overall conditioning programme and if their biomechanics were suited to performing them.\n\nMartin Haines\nBiomechanics Coach™\n\nMartin, who is also a PGA advisor, will be delivering our extremely popular Golf Biomechanics workshop this month April 22nd in London - we have just one place left;\n<a href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\" target=\"_blank\" data-cke-saved-href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\" rel=\"noopener\"><strong><u>BOOK NOW</u></strong></a>\n\n&nbsp;\n\n&nbsp;','100 Push Up\'s Daily For 20yrs','','draft','open','open','','100-push-ups-daily-for-20yrs','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.www.biomechanicseducation.com/?p=734',0,'post','',0),(735,3,'2016-04-13 04:47:46','2016-04-13 04:47:46','','','','inherit','open','closed','','screen-shot-2016-04-13-at-05-47-19','','','2016-04-13 04:47:46','2016-04-13 04:47:46','',734,'https://biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-13-at-05.47.19.png',0,'attachment','image/png',0),(750,0,'2016-03-18 10:12:46','2016-03-18 10:12:46','','icomoon-free-social-contact-16x16','','inherit','open','closed','','icomoon-free-social-contact-16x16','','','2016-03-18 10:12:46','2016-03-18 10:12:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-4-1.gif',0,'attachment','image/gif',0),(758,3,'2016-04-15 06:48:53','2016-04-15 06:48:53','Something I always encourage my learners to do is challenge everything, even what I tell them. I suggest they do not simply accept what people say as being a given but that they should gather enough information to come to a conclusion that THEY are satisfied with for their own conceptualisation, logic and application.\n\nHaving been a teacher for 25 years in various forms from delivering exercise classes to teaching PT\'s and physiotherapists about biomechanics to helping podiatrists understand how to prescribe exercises I know one thing is for sure, we all learn in different ways and at different rates. Communication is key when passing over information, which I know I have written about before, but I cannot stress this point enough.\n\nThere seems to be such an emphasis on ‘level’ in the sense that a hierarchy of intelligence exists and I am sure this is correct in some form. However some of the <i>smartest</i> people I know are not naturally ‘academic’ and some cannot even read that well or write grammatically correctly (me for one!), does that stop them, us, me being intelligent? Clearly it comes back to how you measure intelligence.\n\nSo with so many educators out there lets say we were looking for who we should be guided by when it comes to intelligence. Let us consider how we are measuring this ‘hierarchy’ of intelligence so to speak.\n\nor\n\nMore to the point how SHOULD we measure it?\n\nWell I guess that would depend upon the industry or relevance. So lets take our industry since this is the one that has inspired me to write this article.\n\nNow I meet a lot of people as I travel and many are what would be classed as very intelligent when it comes to qualifications and/or experience.\n\nYet it stuns me how badly some of these really smart people communicate that intelligence.\n\nLet me give you a couple or simple examples and you tell me..\n\n(This is simply an example to make a point by the way):\n\nExample 1:\n\nThe PT with LOADS of qualifications, piles of certificates, loads of books and the ability to cite research papers left right and centre. This guy is often so busy taking courses he barely covers costs with what he makes from his clients. He KNOWS a lot but scrapes by and wonders why.\n\nCompared to;\n\nThe PT who is not as well read or so extensively qualified but has AMAZING communication skills and makes ALL their clients feel fantastic in their company. This means they achieve client adherence and this PT is extremely successful commercially.\n\nHe is financially doing really well and has a great sense of job satisfaction.\n\nWhich PT is the <i>INTELLIGENT</i> one?\n\nExample 2:\n\nThe presenter who delivers fantastically complex information of their thoughts and ideas and concepts so mind boggling it <i>‘blows your mind’ </i>but while you’re impressed you are struggling to work out how YOU can apply the awesomeness you just heard.\n\nCompared to;\n\nThe presenter who uses economy of words, offers very simple concepts while possibly much less information overall BUT they offer you ideas to allow you to apply what they are sharing with you\n\nMy point here is that intelligence can be measured in several ways and is way more influential when it is communicated well. Lack of clarity or specificity is not helpful to others.\n\n<i>“if you cant explain it simply you do not understand it well enough”</i>\n\nAlbert Einstein\n\n<i>“simplicity is the ultimate form of sophistication”</i>\n\nLeonardo Da Vinci\n\nIs it good enough to simply hear smart people telling us what they know?\n\nOr is it enough simply having loads of knowledge, information packed away in your head if you are unable to apply it, communicate it and utilise it to your advantage?\n\nOf course intelligence can be measured by taking an IQ test or passing exams but TRUE intelligence is surely being able to use it, express it and pass it on right?\n\nNow back to my classroom where I do my very best NOT to answer questions raised by my learners. (Yes it is true, ask them!)\n\nWhen I qualified with QTLS (Qualified teacher status) one of the primary things I came away with was that a <i>‘Learner lead’</i> classroom should be how we deliver content. The learners take priority over the teacher in the way the content is discussed, facilitated and therefore delivered. Clearly there is a lesson plan but with much scope for tasks and discussion so that the individuals present can facilitate themselves to a level of understanding appropriate to their individual experiences and areas of knowledge. Peer discussions are extremely healthy where opinions are permitted with justifications for those opinions. It would be unfair to tell someone else they are wrong when the subject matter is presented based upon that individuals experiences, opinion and along side a justification for the way they have presented it, don’t you think?\n\nSo back to my point;\n\nSurely it is also healthy to accept that we may not agree on certain views or opinions again due to different experiences and back grounds, right?\n\nWe form views and attitude from our previous experiences and interactions with others right from being babies through to children and on to adulthood. The amount of variables make us individually complex and this is what makes meeting new people so fascinating and interesting.\n\nIn my experience many people in our industry are not necessarily ‘academic’ types, certainly I myself and a lot of my learners are generally more kinaesthetic leaners who process information better through doing, rather than reading or writing. So when faced with technically challenging information we often take a while to develop ways to put information into practice. The skills we require are theory, psychological and practical based to be best placed to help improve clients physicality and health. But in my opinion predominantly practical and psychological for exercise prescription based work.\n\nMy learners, the professionals I meet are REALLY intelligent people, who interact smartly, consciously, with care and thought for those they come into contact with. Just because for many of us, our learning style us such that we have to take a clini-band to a skeleton to really understand what muscles do or because we have to get up and move our legs to workout which is the agonist, which is the antagonist and which muscles are synergists doesn’t make us <i>less</i> intelligent people.\n\nCommunication is key to success when passing on information. Having some empathy for those listening to us while we deliver information (knowing our audience) is also key for learning and development to occur.\n\nWe should accept being challenged as a compliment that someone is seeking our ideas and in put but we should also <i>respect</i> their response when asking for it don’t you agree!?\n\nWould you like to experience our academy?\n\nAre you keen to sample our \'learner lead\' classroom?\n\nTake a look at the schedule and try one of our INCLUSIVE workshops, I personally guarantee you will not regret it!\n\nFor (Intrinsic) Biomechanics made simple;\n\n<a href=\"https://www.www.biomechanicseducation.com/schedule/\">CLICK HERE </a>','How Intelligent Are You?','','draft','open','open','','how-intelligent-are-you','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.www.biomechanicseducation.com/?p=758',0,'post','',0),(759,3,'2016-04-15 06:48:43','2016-04-15 06:48:43','','','','inherit','open','closed','','screen-shot-2016-04-15-at-07-48-13','','','2016-04-15 06:48:43','2016-04-15 06:48:43','',758,'https://biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-15-at-07.48.13.png',0,'attachment','image/png',0),(761,3,'2016-04-20 13:44:09','2016-04-20 13:44:09','<strong>Article Synopsis</strong>\r\n\r\nThis article examines how the needs of personal training clients have evolved in recent years, and subsequently, how we as trainers must adapt as a result.  It also dissects the existing functional training paradigm in terms of its competency in serving these ever-changing client expectations.\r\n\r\n<strong>Article  Objectives</strong>\r\n\r\n1    Understand the strengths and weaknesses of functional training.\r\n\r\n2    Explore new ways of preparing your clients for exercise to mitigate the risk of injury.\r\n\r\n3    See how an additional skill set will increase both client retention and sales.\r\n\r\n<strong>The Evolution of Personal Training &amp; The Health Continuum</strong>\r\n\r\nThe role of the personal trainer has evolved significantly in recent years to accommodate growing client needs and demands.\r\n\r\nIn the past, clients consulted personal trainers primarily with weight loss or general conditioning goals. These same consumers now expect personal trainers to have a broader scope of practice, including exercise prescription to mitigate back stiffness or soreness, along with a whole host of other musculo-skeletal issues.\r\n\r\nMoreover, the role of a personal trainer will quite likely change as a result of a financial downturn. During such challenging economic times, people are even less inclined to spend money on specialised healthcare professionals for what they perceive to be minor issues. This additional expense and inconvenience is often replaced by the preference to visit their personal trainer, whom they already know and trust. It is therefore critical to identify our client’s position on what we call the health continuum – a scale that spans from illness, to wellness, to elite performance. You will find each one of your clients somewhere on this scale, and before any trainer is serious about exercise programme design, the exact location must be determined. Most exercises are suitable for most people, but they can easily be prescribed at the wrong time. An example of this is core stability training: it can help some people but hurt others (McGill 2003). Similarly, biomechanical issues such as a rotated pelvis and leg length discrepancy, with associated muscle spasm in the hips, will likely be aggravated if an asymmetrical exercise such as a lunge was prescribed. Conversely, in the absence of any pelvic dysfunction, the risk of performing lunges would decrease.\r\n\r\nAs a result, we, as fitness professionals, must be cognizant of these parameters and guard against taking a “jack-of-all-trades” approach when engaging our clients. Knowing only enough to be dangerous can unfortunately be just that: dangerous! Therefore, as we scan the health and fitness education marketplace searching for new science, modality concepts and delivery methods, we must not only be conscious, but extremely sensitive to the changing demographic that forms the majority of our target audience. Being finely attuned to these consumer trends and needs may very well be the differentiating factor between our competition and us. So while we should not cross medical boundaries by becoming “pseudo-therapists”, we must accept the need for change and ultimately, professional growth.\r\n\r\n<strong>1. Functional Training Defined</strong>\r\n\r\nThe body is an integrated system, with each of its component parts linked together to provide coordinated movement in our daily lives. With its origins in rehabilitation, functional training helps us prepare for these tasks and engrains the correct movement patterns with which our brains are familiar rather than training isolated muscles.\r\n\r\nThere are many variations on the definition of functional training, including:\r\n\r\nI    An exercise continuum involving balance and proprioception, performed with the feet on the ground and without machine-assistance, such that strength is displayed in unstable conditions and body weight is managed in all movement planes (Boyle, 2003).\r\n\r\nI    Multi-joint, multi-planar, proprioceptively-enriched activity that involves deceleration (force reduction), acceleration (force production) and stabilisation; controlled amounts of instability; and management of gravity, ground reaction forces and momentum (Gambetta &amp; Gray, 1995; Gambetta, 1999).\r\n\r\nI    A spectrum of activities that condition the body consistent with its integrated movement and/or use (Santana, 2000).\r\n\r\nMany experts also believe that training tasks should be chosen according to their mechanical specificity and relationship to the activities of daily living (ADL). In other words, their basic mechanics – but not necessarily appearance – should correspond to one or more target activities (Santana, 2000; Baechle &amp; Earle, 2000; Siff, 2003; Zatsiorsky, 1995).\r\n\r\n<strong>2. The Functional Training Paradigm and its Flaws</strong>\r\n\r\nNeedless to say, common definitions and understanding of functional training are quite similar. And predictably, they conform to the same, existing paradigm.\r\n\r\nIn 1962, Kuhn defined <em>paradigm</em>s as “universally recognised scientific achievements that for a time provide model problems and solutions to a community of practitioners.” According to Burrell and Morgan (1979), a paradigm provides a conceptual framework for seeing and making sense of the social world. They also suggested that a paradigm “stands for the entire constellation of beliefs, values and techniques, and so on shared by the members of a community.”\r\n\r\nParadigms are shaped based on our prior observations and understandings of the world. However, they also contribute to consensual thought processes, which invariably lead to restrained innovation and progress among the community of practitioners. So even as we evaluate the current functional training paradigm, we instinctively look for ways to better deliver variations of it rather than forge forward and penetrate the confines under which we operate. This conformity is evident in most research, too.\r\n\r\nKuhn (1962) also recognised that a paradigm inherently gives rise to problems more frequently than it provides a framework for solving them. For solutions and innovation, one generally needs to depart from accepted norms and apply unconventional wisdom in order for system failings to be elucidated.\r\n\r\nIn the years that functional screening and training has existed in rehabilitation, many physical therapists found that, although helpful, large gap were apparent and client’s issues persisted. One key gap identified was the body’s ability to compensate for isolated biomechanical flaws, while maintaining acceptable positions during a functional screen.\r\n\r\nThis is well demonstrated with a traditional squat pattern. There are three main joints that perform this movement: the hips, the knees, and the ankles. Because the body is a master of compensation, it is entirely possible that your client could have a dysfunctional knee, yet still pass a functional screen due to the hip’s and ankle’s ability to compensate for it. In fact, it could be argued that abnormal functional movement patterns are merely a visible demonstration of the body’s amazing ability to compensate for its biomechanical flaws. In other words, we are very good at cheating - and the more athletic we are, the better we get.\r\n\r\n<strong>Biomechanics Defined</strong>\r\n\r\nThere are two types of biomechanics: extrinsic and <em>intrinsic</em> (Siff, 2003). Extrinsic is the study and measurement of movement patterns of a particular task.  This is widely recognised and is often on the syllabus of the university programmes in modules in the sports science courses.  This constitutes the existing paradigm and can be seen in many different types of functional screening programmes where the movement itself is the focus of assessment. An <em>Intrinsic</em> biomechanics emphasis, however, falls firmly outside of the current paradigm. It is a discipline in science that enables the analysis and assessment of an individual’s mechanical disposition and how that structure facilitates movement.  Traits can be genetically inherited or influenced by extrinsic factors such as sitting at a desk, driving, doing the wrong gym exercises or running in the wrong shoes.  <em>Intrinsic</em> biomechanics frequently affects extrinsic biomechanical performance.\r\n\r\n<strong>3. A new Paradigm and its Benefits</strong>\r\n\r\nGiven the intractable challenges we face when introducing completely new ideas and ways of thinking within a well-established paradigm, let us step outside of it for a moment and consider the following: Should we primarily focus on movement patterns and preparation for ADL tasks; or should we be more interested in the way each joint or system is actually intended to move and the best way to utilise or leverage that existing structure?  As we mentioned earlier, consider that each individual has unique, unconditioned (genetic), and conditioned (acquired), reflex codes that determine movement over the course of their life (Karel Lewitt).  Each person starts with unconditioned codes and during their life, for a variety of reasons, begins to acquire conditioned movement codes, more often than not to compensate for injury and biomechanical flaws. Compare this knowledge to the methods we currently employ under the precepts of accepted health, fitness and wellness care and a stark contrast is apparent: The current paradigm encourages us to accept that by patterning a movement ‘correctly’ we automatically ingrain the ability to perform the pattern instinctively, without taking into account the causes of the conditioned movement codes.  The new paradigm proposes to <em>first</em> identify and manage the conditioned movement codes, <em>before</em> teaching and prescribing relevant functional movements.\r\n\r\nWhile recognising the effectiveness of functional movement to prepare for function, it would seem that the logical, precursory step would be to add an <em>intrinsic</em> biomechanics component. This would illuminate unconditioned and conditioned movement codes and better prepare our client for the onset of functional movement training. By adding this practical foundation to our current training and delivery methodology we would mitigate detected biomechanical flaws. We would also remove the need for the body to intrinsically labor and compensate for flaws a functional screen would otherwise not detect.\r\n\r\nSimply put: isolate and integrate. This approach is already in use by “early adopters”, and as usual with cutting-edge science, in time, the “followers” will follow, ultimately resulting in a new and improved paradigm.\r\n\r\n<strong>    1    Conclusions</strong>\r\n\r\nThe movements we are required to perform nowadays are quite different from those performed by our ancient ancestors. The rigorous and varied movements essential for the survival of our hunter/gatherer cousins have transformed within a hundred years. Activity these days is often limited to small static movements such as typing, steering and using TV remote controls. While some people do exercise, the vast majority does not. So if functional movement and training is defined by its ability to prepare people for ADL, why are we not considering these activities when prescribing exercise in our health, fitness and wellness facilities? One might raise an eyebrow in response to this logic, but actually if we are not following this logic we are simply not adhering to the definition of function (Boyle, 2003; Gambetta &amp; Gray, 1995; Santana, 2000). Therefore, we must deduce that either the definition of, or our approach to, functional training is currently incorrect.\r\n\r\nAs functional concepts start to transcend medical fields into fitness, it is important to recognise that biomechanical screening must too. Functional and biomechanical screening and training are very important aspects of an overall conditioning program for any sport or activity and are complementary in every way. However, there are many people who pass a functional screen, yet fail a biomechanical screen. Therefore the two modalities, while both detecting different factors, provide the personal trainer and, indeed the therapist, with essential tools for safe and effective prehab, rehab and general exercise prescription.  At this point is always worth pointing out that you must always be prepared to refer to someone who is more qualified than you to perform any kind of screening, especially if you are inexperienced in the field.\r\n\r\nFundamentally, we need to develop our understanding of specific-joint biomechanics such as the pelvis, spine, shoulder and knee. We must also consider nerve biomechanics and function within this new paradigm. Once we understand these <em>intrinsic</em> biomechanics principles, how to objectively analyse screens, and how best to implement them as a system, we can prescribe the most efficient and relevant exercises to meet our client’s goals. After these biomechanical issues have been resolved, functional training and/or any other modality of training has a much greater chance for success, not to mention reduced exposure to injury for our clients and members.\r\n\r\nMany professional sports teams and organisations around the world have already adopted this <em>intrinsic</em> biomechanics approach. And daily they are realising that <em>intrinsic</em> biomechanical screening and corrective exercise prescription is a critical precursor to functional screening and training. It provides a solid foundation for movement patterns that can otherwise be flawed. On the cutting-edge of our industry you will already find “early adopters” practicing <em>intrinsic</em> biomechanics as part of their personal training client care. There are some fantastic courses currently being run in the US, the UK and many other countries, so attend an <em>intrinsic</em> biomechanics course and become a more complete trainer or therapist as a result.\r\n\r\n<strong>Martin Haines </strong>\r\n\r\n<strong>Biomechanics Coach</strong>™\r\n\r\n<strong>References</strong>\r\n\r\n1    Boyle, M. (2003). <em>Functional Training for Sports.</em> Champaign, IL: Human Kinetics.\r\n\r\n1    Gambetta, V., &amp; Gray, G. (1995). Following a functional path. <em>Training &amp; Conditioning </em>5(2): 25-30.\r\n\r\n1    Gambetta, V., &amp; Clark, M. (1998). A formula for function. <em>Training &amp; Conditioning </em>8(4): 24-29.\r\n\r\n1    Gambetta, V. (1999). Force and function. <em>Training &amp; Conditioning </em>9(5): 36-40.\r\n\r\n1    Santana, J.C. (2000). <em>Functional Training.</em> Boca Raton, FL: Optimum Performance Systems.\r\n\r\n1    Baechle, T.R. &amp; Earle, R.W. (Eds.). 2000. National Strength &amp; Conditioning Association. <em>Essentials of Strength Training &amp; Conditioning</em> (2nd ed.). Champaign, IL: Human Kinetics.\r\n\r\n1    Siff, M.C. (2003). <em>Supertraining</em> (6th ed). Denver CO: Supertraining Institute\r\n\r\n1    Zatsiorsky V.M. (1995). <em>Science &amp; Practice of Strength Training.</em> Champaign IL: Human Kinetics.\r\n\r\n1    Kuhn, T. (1962). <em>The Structure of Scientific Revolutions. </em>Chicago, IL: University of Chicago Press.\r\n\r\n1    Burrell, G. &amp; Morgan, G. (1979). Sociological Paradigms and Organisational Analysis: Elements of the Sociology of Corporate Life. London: Heinemann.\r\n\r\n<span class=\"TextRun SCXW88998908 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW88998908 BCX8\">Learn how to assess your </span><span class=\"NormalTextRun SCXW88998908 BCX8\">clients\'</span><span class=\"NormalTextRun SCXW88998908 BCX8\"> intrinsic biomechanics </span></span><a class=\"Hyperlink SCXW88998908 BCX8\" href=\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\" target=\"_blank\" rel=\"noreferrer noopener\"><span class=\"TextRun Underlined SCXW88998908 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW88998908 BCX8\" data-ccp-charstyle=\"Hyperlink\">CLICK HERE</span></span></a><span class=\"TextRun SCXW88998908 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"> <span class=\"NormalTextRun SCXW88998908 BCX8\">to learn more about our Diploma in Biomechanics Coaching.</span></span>\r\n\r\n&nbsp;','The Evolution of Functional Training','','publish','closed','closed','','the-evolution-of-functional-training','','','2025-01-20 16:04:25','2025-01-20 16:04:25','',0,'https://www.www.biomechanicseducation.com/?p=761',0,'post','',0),(762,3,'2016-04-20 13:42:50','2016-04-20 13:42:50','','','kicking','inherit','open','closed','','martial-arts','','','2016-04-20 13:42:50','2016-04-20 13:42:50','',761,'https://biomechanicseducation.com/wp-content/uploads/2016/04/iStock_000002419682Medium.jpg',0,'attachment','image/jpeg',0),(765,3,'2016-04-22 05:04:17','2016-04-22 05:04:17','...of <a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\"><b>The Movement Convention 2016</b></a> line up!?\n\nBoth TMC14 &amp; TMC15 have seen superb responseS to our amazing presenter line ups and TMC16 is going to be even more stunning!\n\nPUT THIS DATE IN YOUR DIARY NOW….\n\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\"><b>Saturday 8th October</b></a> at the incredible Loughborough University the very fabulous <b>Ben Coomber</b><b>, </b>Body Type Nutrition (BTN), an online nutrition coaching company, will be headlining at 9am which I KNOW will cause a stir because of his superb knowledge and attitude towards educating professionals about nutrition. This guy is leading the entire industry right now with common sense logic and evidence based information to give PT’s, trainers and coaches confidence when advising clients about nutrition goals.\n\nMy own personal strength and conditioning coach, <b>Stephen Aish</b>, BTN mindset coach and also owner of The Strength Academy will be talking. His coaching has given me 4 PB lifts within 2 sessions from his mindset skills! Details of his presentation will be coming soon.\n\nAlso the very cool <b>Tom Waldron</b>, Biomechanics Coach™, will be presenting his take on the Franklin method. In his practical session you will learn new and fun techniques to improve the mechanics of your shoulder girdle.\n\n<b>Friday 7th October </b>\n\nNow if you are a Biomechanics Coach™ we have an extra special WEEKENDER package for you guys that means YOU also get the chance to attend a very exclusive Biomechanics Coach™ Training Camp with the founder himself, <b>Martin Haines</b><b>, </b>Specialist Biomechanics Coach™.\n\nNot only that we also have the nicest guy in sales &amp; marketing, <b>Chris Wright</b><b>,</b> Biomechanics Coach™ delivering a short session especially for Biomechanics Coaches™ and I genuinely cannot recommend Chris’s advice highly enough.\n\n<i>This is only HALF the line up! </i>\n\nMore details COMING SOON!\n\nSomething YOU need to know is that we have sold almost half the seats already as this is a pretty intimate event to allow attendees the opportunity to  interact with these during the presentations.\n\nONLY 100 SEATS!\n\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\">Sat 8th Oct TMC16</a>\n\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\">BOOK TICKETS HERE</a>\n\nBUT if you’re quick and missed the SUPER EARLY BIRD you still have a few days to grab an EARLY BIRD seat!\n\nBook <b>BEFORE April 30th 2016</b> &amp; it is ONLY £130 (Normally £140)\n\n*Biomechanics Coaches™ YOU get the Training Camp Friday 7th Oct 1-5pm FREE as part of your Biomechanics Coach™ Weekender package\n\nIBA members contact Rachel@biomechanicseducation.com to secure your special rate seat at £100 for the entire weekender!\n\nWhy not subscribe to our Biomechanics Education YouTube channel and check out videos of TMC14 &amp; TMC15 presentations..?\n\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\">BOOK TICKETS HERE</a>','Want A Sneak Peek..?','','draft','open','open','','want-a-sneak-peek','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.www.biomechanicseducation.com/?p=765',0,'post','',0),(766,3,'2016-04-22 05:03:57','2016-04-22 05:03:57','','','','inherit','open','closed','','screen-shot-2016-04-22-at-06-03-26','','','2016-04-22 05:03:57','2016-04-22 05:03:57','',765,'https://biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-22-at-06.03.26.png',0,'attachment','image/png',0),(769,3,'2016-04-24 05:35:00','2016-04-24 05:35:00','<b>Tom Waldron</b> really is a breath of fresh air!\n\nThis smart, fun and incredibly patient nice guy is super keen to share information, ideas and even a small part of his Biomechanics Coach™ Diploma theory assessment for you to see the kind of thing I read in these reports. This will also give those of you considering entering our academy an idea of what to expect.\n\nHere are some of the Diploma report assessment criteria;\n\n<b> 1 Produced a brief and succinct introduction to case studies (ie: age, ability level, sport)</b>\n\n<b> 2 Give a brief account of all case studies in no more than 2000 words </b>\n\n<b> 3 Describe the strengths of the screening process and where it worked really well</b>\n\n<b> 4 Describe the areas for improvement of the screening process and what you found difficult</b>\n\n<b> 5 Describe how case study findings have changed the way in which you practice </b>\n\n<b> 6 Justified ALL actions taken with the clients in the case studies</b>\n\n<b> 7 Summarise thoughts in a succinct manner</b>\n\n<b>Tom wrote;</b>\n\n<i>Undertaking the Biomechanics Coach™ qualification has already drastically changed my business model and career path (no exaggeration). I’ve already dropped 3 classes which I have been teaching for the past 2 years (fitness and pilates) to dedicate more time educating myself on intrinsic biomechanics and to fill those hours up with biomechanics 1:1 assessments.</i>\n\n<i>It has been incredibly clear that this is a new and higher paradigm of exercise prescription. If we are exercising with dysfunction then we are training and strengthening that dysfunction, increasing our chance of injury. </i>\n\n<i>If we are exercising while considering and eradicating dysfunction (through measuring and re-screening), then we are encouraging healthier and more liberated movement.</i>\n\n<i>This is my ethos moving forward with clients, be it 1:1, group or workshops. Having a system in place (with 25yrs of evidence behind it) that measures a persons function has given me a great deal of clarity when approaching exercise prescription options for clients.</i>\n\n<i>Having the harmony between fitness and health goals has been an invaluable perspective to take on board. I’ve also made stronger partnerships with physiotherapists and osteopaths. Having a deeper appreciation of their skills and expertise, while being able to communicate with them on a higher level than before.</i>\n\n<i>We work together to deliver the best possible experience for our clients which has been incredible fun and I hope my partnership with other health professionals will continue to blossom and grow.</i>\n\n<i>Over all I’ve decided to steer further away from group fitness classes, with the intention of getting the best result possible with clients, (incongruence with their goals and needs) spending more energy and time promoting 1:1 classes and programmes. </i>\n\n<i>By fully optimising the intrinsic biomechanics screening system I know I am helping people to achieve their goals and improve their movement through Biomechanics Coaching™.</i>\n\nTHANK YOU for sharing Tom!\n\n----------------------------------------------------------------------------------------------------------------------\n\nTom is also one of <a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\">The Movement Convention presenters Saturday 8th October at Loughborough University</a>\n\nCome and meet Tom at TMC16\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\">BOOK YOUR PLACE HERE</a>','His Theory Report Made Public!','','draft','open','open','','his-theory-report-made-public','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.www.biomechanicseducation.com/?p=769',0,'post','',0),(770,3,'2016-04-24 05:34:44','2016-04-24 05:34:44','','','','inherit','open','closed','','img_0065','','','2016-04-24 05:34:44','2016-04-24 05:34:44','',769,'https://biomechanicseducation.com/wp-content/uploads/2016/04/IMG_0065.jpg',0,'attachment','image/jpeg',0),(803,3,'2016-04-27 15:36:30','2016-04-27 15:36:30','The plantar fascia is a band of connective tissue (rather like a ligament) which runs from the heel, along the bottom of the foot to the base of each of the toes. It fans out from the heel as it moves forwards to the toes and is a tough, fibrous structure.  Its role changes depending upon at what part of the gait cycle your foot is in contact with the ground.  Initially at impact it helps shock absorption and it stabilizes the metatarsals as you absorb shock by pronating your foot.  Then from mid-stance to push off it its helps to re-supinate the foot to make it more of a rigid leaver to improve the mechanical leverage to help propel you forwards.\n\nThe plantar fascia bears an immense amount of load when you run, in fact it has to deal with loads of up to 3 times body weight with each step and you can take as many as 90 steps per foot per minute when you run.  So an injury to the Planter Fascia can be very painful and difficult to rest, it is even loaded when you walk and stand.  It is therefore quite a common injury and occurs in about 5-10% of all running injuries and about 10% of those who see a doctor for the condition have the problem for more than a year.  It is therefore quite important to discuss how you can recognize it and the ways that you can help to manage it yourself.\n\nOutside of athletics, it affects mainly over 40’s and mainly women, but in athletics there are a number of causes that mean it can affect anyone.\n\nThe extrinsic (external) causes of plantar fasciitis include running on different surfaces, wearing inappropriate shoes, increases in body weight, as well as increased pressure through the plantar fascia as with a sudden increase in speed or hill training or block work.  Outside of athletics, if your job requires that you stand for prolonged periods, this can have a profound affect on the plantar fascia, as can being over weight, these are the two main causes of plantar faciitis in non-athletes.\n\nIntrinsic causes (internal factors within your body) of plantar faciitis consist of poor foot biomechanics (typically too much pronation or pronation that is too quick), tight calves (which can increase the amount of pronation in the foot), leg length discrepancies (which can cause the foot to over pronate), abnormal pelvic rotations (which can cause leg length discrepancies) and even tight sciatic nerves (which can cause a protective spasm of the calf muscles which can cause them to become inflexible).\n\nThe pain is usually felt just in front of your heel.  It is usually tender to touch and it is felt often in the mornings or after long periods without bearing weight through the foot.  As you walk about gently the pain usually subsides, but any over activity often aggravates it again.  On a day to day basis you can often feel pain if you misjudge a step and take weight through your forefoot rather than the whole of your foot, as the load is taken straight through the plantar fascia.  If you walk abnormally to avoid loading the plantar fascia, you can then get other symptoms as you load other structures abnormally, typically you can get pain on the outside of the foot, your knee and even your hip for this reason.\n\nWhen you have plantar fasciitis you can also develop a heel spur.  This is an area of calcium which is deposited within the plantar fascia where it suffers most damage, usually at the front of the heel bone.\n\nThere are a number of ways that you can help your plantar faciitis.  Some of these suggestions will help and others won’t, see which are best for you.  Calf stretching (with your knee bent and additionally with it straight), a temporary heel raise, applying ice to the affected area and massaging the plantar fascia can all help.  You may find it difficult to reach the sole of your foot to massage it yourself, so try sitting and putting your foot on a cricket ball pressing down on that while you roll the ball under the sole of your foot.  You can also try rolling your foot on a wine bottle or rolling pin in the same way.\n\nStretching the plantar fascia can also help.  Remember though, the plantar fascia is not a flexible structure, it stretches an additional 2% of its overall length when you take weight through your foot as you run, and it is this rigid spring-like action that is critical to its correct function.  So while we don’t particularly want to increase the flexibility of the plantar fascia, stretching can be helpful to improve its pliability and so its ability to accept load at higher speeds. Stretching the big toe upwards, while you are stretching the calf with your knee bent, can help with this.\n\nOrthotics can be very helpful when trying to manage plantar fasciitis, but do make sure you see a podiatrist who works closely with therapists who understand the biomechanics of the pelvis and spine.\n\nAnti-inflammatories, cortisone injections and surgery can sometimes be helpful but are not the first choice and all other possible options should be tried first.  In more severe cases there can be some relief from pain by using splints at night to gently stretch the Achilles tendon and the plantar fascia.\n\nPrevention is obviously important and you need to check the extrinsic and intrinsic causes listed above and deal with any of them that may be relevant to you.  You may also find that managing them will help if you currently have plantar fasciitis as this can reduce the load on the foot considerably.\n\nMartin Haines\nSpecialist Biomechanics Coach™\nChartered Physiotherapist\n\nAre you in London?\nAre you a PT? Pilates teacher? Exercise professional? Manual therapist?\n<span style=\"font-size: medium;\">Would you like to understand more about knee, feet and your client\'s plantar fascia?</span>\n\n<a href=\"https://www.www.biomechanicseducation.com/workshop/knee-foot-biomechanics-2/\" target=\"_blank\" rel=\"noopener\">READ MORE</a>','Plantar Fasciitis - What Is It?','','draft','open','open','','plantar-fasciitis-what-is-it','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.www.biomechanicseducation.com/?p=803',0,'post','',0),(804,3,'2016-04-27 15:36:03','2016-04-27 15:36:03','','','','inherit','open','closed','','screen-shot-2016-04-27-at-16-34-16','','','2016-04-27 15:36:03','2016-04-27 15:36:03','',803,'https://biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-27-at-16.34.16.png',0,'attachment','image/png',0),(813,3,'2016-04-29 10:22:07','2016-04-29 10:22:07','<b>PGA advisor, Martin Haines</b>, delivered the extremely popular <a href=\"http:/\">Golf Biomechanics</a><a href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\"> workshop</a> for us recently. We had PGA trained golf coaches, next to PT’s, next to manual therapists, next to Biomechanics Coaches™ all discussing ways to help their clients <i>hit further</i>. <i>Hitting further</i> ultimately being the aim for anyone involved in improving theirs, or their clients, game.\n\nWe discussed swing faults, slicing, the ‘ideal’ planes for the swing and we also looked at video footage of pro level golf swing variations.\n\nThen we discussed shoulder function, common limitations, influences of these on the swing and how to correct them. Also how thoracic rotation limitations can dramatically decrease velocity through the swing and how to correct it. There was considerable discussion about pelvic function and how a common dysfunction like a leg length discrepancy can change the swing and weight shift AND of course ways to correct a ‘functional’ leg length discrepancy. Finally we explored core strength and its considerations for golfers.\n\nThe 16 attendees were set tasks throughout the day to work out what, in each of these intrinsic problems, might influence what we see during the golf swing and how each might limit velocity, therefore limiting <i>hitting further</i> - the ultimate aim in golf.\n\n<b>Josh Ford is a </b><b>Specialist Biomechanics Coach™ </b>and attended this Golf Biomechanics workshop several years ago with Martin. He also has a special interest in playing golf himself and helping golfers improve there game. Here he raises some interesting points and explains the above much better than I do!\n\n<b><i>Weight Shift, Piriformis &amp; Lots of Dollars!</i></b><i>\n\n</i><b><i>The value of the weight shift in golf;</i></b>\n\n<i>The weight shift (also known as weight transfer) is widely acknowledged as a fundamental part of a good golf swing. According to Chuck Quinton, a successful golf instructor based in Florida, 14.4% more club head speed is added with correct weight shift. This will have a significant effect on performance. Being longer off the tee by this much will leave a shorter club when approaching the green, so instead of being 175-200 yards away, you may now be 125-150 yards. The nearer you are to the hole after your drive, the more likely you are to be closer after your second. And again, the nearer you are before taking your 3rd, the more like you are to get it in the hole or leave a ‘tap in’ for your 4th.</i>\n\n<i>Adam Scott, who is currently leading the PGA tour for earnings this season, when 175-200 yards has an average proximity to the hole of 24 feet 9 inches after his approach shot and is tied second in accuracy from this distance. When you get to the 125-150 yard mark the proximity becomes, for Adam Scott, 16 feet 6 inches, 3rd on tour. Okay so 9 feet doesn’t seem that much different but it can increase the amount of putts you hole, the more you hole, the lower the scores. </i>\n\n<i>Ernie Els who is top of the putting charts from 20-25 feet has a conversion rate of 25%. He is only 3rd best from the shorter distance but his conversion rate from 15-20 feet is 36%. 11% more putts made. After the longer tee shot and the second shot that has left the ball lying closer, the chances of making bogey (one over par) has diminished and there is a lot more chance of making a birdie (one under par) which can only lead to better scores. Put that into account over the standard 4 round competitions and assume it comes up only on the par 4s, which is around 10 of the 18 holes. Then there will be 3 birdies made per round instead of 2. That’s 4 shots per competition, which will be a massive difference in standings and earning. Again 1 shot per round doesn’t seem a lot but it’s the difference of this seasons current points leader Adam Scott and 45th place Jhonattan Vegas. Or money wise Adam Scott’s seasons earnings of $4,362,198 versus Jhonattan Vegas’ $535,612.</i>\n\n<b><i>What are the mechanics of the weight shift?</i></b>\n\n<i>The weight shift is simply the transfer of body weight from one foot to the other during the golf swing. Initially, as the club is drawn away, weight is partially shifted onto the right side as internal rotation of the right hip occurs. The amount of weight shifted varies from player to player and some players use a different technique called ‘stack and tilt’ which means no shift to the right, however a very high percentage of professionals will start by loading their right side. </i>\n\n<i>When the golfer reaches the top of his or her back swing, and in some cases slightly before, almost all of their weight will start to be shifted to the left side to initiate the downswing and the left hip joint will have moved from an externally rotated position into an internally rotated position as the golfer uncoils their spine. Intrinsically, if we have a leg length discrepancy, we can struggle with this fundamental of the swing. A functionally longer right leg can make it harder to shift our weight to the right during the back swing. Not only that, if your body is compensating by creating a scoliotic spine, then your facet joints can have difficulty in rotating easily, so we have noticed that the spine tends to side bend towards the hole to gap the facet joints and allow easier rotation - this can lead to a more upright swing. This changes the swing plane, club path and angle of attack and consequently the flight of the ball. </i>\n\n<i>A functionally longer left leg can make it difficult to get their weight back onto their left where they need to be for solid and well timed impact, and we have noticed that it can also cause them to lean their torso to the right in order to enable easier rotation of the spine.  This changes the swing plane, club path and angle of attack and consequently the flight of the ball. </i>\n\n<i>Another factor that will effect weight shift is if they cannot internally rotate either of their hip joints. This may reduce the normal weight shift and we have noticed that players sometimes slide their hips forwards instead, taking away the need for the rotation element. Also, with the golfers’ head needing to stay central over the ball and the hips moving over the left side on the downswing, the left quadratus lumborum would have to be functioning correctly. This should make it evident that having biomechanical dysfunctions can be inhibiting distance and therefore scores as well as affecting technique and therefore consistency. At the highest level of the sport, improving a players’ intrinsic biomechanics may only improve their scores by one or two shots over an event or even a season but those shots can mean millions of dollars in earnings. The lower the standard of golf, the more that golfers struggle with consistency and distance and therefor their need for biomechanical correction is still there and have a greater effect on performance.</i>\n\nWritten by;\n\n<b>Josh Ford </b>\n\nSpecialist Biomechanics Coach™\n\nRegister YOUR interest NOW in the <a href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\">Golf Biomechanics workshop</a> and take a priority place on the waiting list for the next one which we hope to run at Loughborough University later this year;\n\n<a href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\">CLICK HERE</a>','Weight Shift, Piriformis & Lots of Dollars!','','draft','open','open','','weight-shift-piriformis-lots-of-dollars','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=813',0,'post','',0),(814,3,'2016-04-29 10:21:50','2016-04-29 10:21:50','','','','inherit','open','closed','','screen-shot-2016-04-29-at-11-21-32','','','2016-04-29 10:21:50','2016-04-29 10:21:50','',813,'https://biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-29-at-11.21.32.png',0,'attachment','image/png',0),(824,0,'2016-03-18 16:10:29','2016-03-18 16:10:29','','103','','inherit','open','closed','','103','','','2016-03-18 16:10:29','2016-03-18 16:10:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-26-1.jpg',0,'attachment','image/jpeg',0),(825,0,'2016-03-18 16:10:31','2016-03-18 16:10:31','','104','','inherit','open','closed','','104','','','2016-03-18 16:10:31','2016-03-18 16:10:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-27-1.jpg',0,'attachment','image/jpeg',0),(826,3,'2016-05-02 06:42:17','2016-05-02 06:42:17','You may recognise<b> Biomechanics Coach™ of the Month</b> <b>Josh Ford.</b> He wrote the recent golf article and has been nominated for BCTOM for his continued commitment to the profession, his specialism in golf and his commitment to continuous self improvement.\n\nNice work Josh!!\n\n<b>Your biography in brief;</b>\n\nI have been working in the fitness industry for 10 years now. After leaving school I played full time football for 3 years, with that I developed what can be best described as a habit for training and it seemed natural to go into the fitness industry. I have since qualified as a personal trainer, sports massage therapist as well as a Specialist Biomechanics Coach™. Having worked mainly as a personal trainer in a few different gyms, I am now back in the gym I started in, Total fitness Bolton.\n\nAlong the way, because of my Biomechanics Coaching™ skills, I have worked with professional golfers and football teams as well as amateurs of many different sports and these are the types of clients that I really enjoy working with.\n\nNow I have also achieved a career goal of a full time position with a professional football team. Sadly it was short lived however after realising that being involved as staff rather than a player was very different.\n\nOutside of work I am recently married, golf obsessed and a frequenter of as many food establishments as possible.\n\n<b>What made you choose Biomechanics Coaching™?</b>\n\nI first came across Biomechanics Coaching™ when Martin presented a seminar to a personal training company I worked for. First of all, I really enjoyed Martin’s style of presentation and his way of thinking, but the content is what really resonated with me. I then looked at the website, found out a little bit more and booked onto the course at my first opportunity.\n\nAt the time I didn’t have much of a plan to take it forward but I certainly knew I needed to have this knowledge and this better understanding of how the body works. And above all else I thought I owe it to my clients to be training them properly.\n\n<b>What do you specialise in outside of Biomechanics Coaching™?</b>\n\nI specialise in sporting performance, particularly golf and football as I play both of these which enables me to have a good understanding. Particularly golf as it a more popular discipline to train for.\n\n<b>Where would you like to see yourself in ten years from now?</b>\n\nIn ten years’ time I hope to be reaping the rewards of what I am building now. Currently I am working on a website to help golfers train properly with online coaching. Also I am studying hard to improve my knowledge of the actually golf swing, which is possibly the most complicated thing I have come across so it’s slow progress. However in 10 years I hope that it is up and running and profitable.\n\nIt would be great to have a few high profile clients whose intrinsic biomechanics I could work on, preferably PGA tour players. This would nicely raise my profile and get the word out about the magic of Biomechanics Coaching™.\n\nI would also like a have plenty of spare time to spend with the wife, hopefully a family and play golf of course.\n\n<b>What would be your advice to somebody thinking of becoming a Biomechanics Coach™?</b>\n\nTo anyone thinking about becoming a Biomechanics Coach™ I would say you really should do it. Most education within the fitness industry feels like an add on course but this is genuinely a new way and approach to exercise. You will get a far better understanding of how to train you clients safely, you will get better results, you will not lose clients due to injury and you will gain clients through reputation. It will, as it has done for me, open up a lot of other opportunities. The way of thinking you gain as well will certainly benefit you.\n\n<b>On the journey to where you are now what has been your achievements? </b>\n\n<i>Personally</i> a great achievement of mine is building a business that allows me to both enjoy my work and have plenty of time for my many hobbies.\n\n<i>Sporting </i>wise, an achievement of mine is making a hole in one in a pro-am event\n\nMy <i>career high</i> was consulting for West Ham United.\n\n<b>Tell us a secret or something interesting about you that not many people know about you:</b>\n\nA secret might be that I play the guitar pretty well but it’s not that interesting so I should admit.\n\nIf I didn’t enjoy what I do so much, I would like to be a traffic warden, no joke!\n\nLOVE your honesty Josh!\n\nThank you and well done....would you like to join our academy and gain some of the skills Josh has?\n\n<a href=\"https://www.www.biomechanicseducation.com/\"><b>READ MORE</b></a>\n\n&nbsp;','\"I Would Like To Be A Traffic Warden\"','','draft','open','open','','i-would-like-to-be-a-traffic-warden','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=826',0,'post','',0),(827,3,'2016-05-02 06:42:09','2016-05-02 06:42:09','','','','inherit','open','closed','','screen-shot-2016-04-25-at-08-57-29','','','2016-05-02 06:42:09','2016-05-02 06:42:09','',826,'https://biomechanicseducation.com/wp-content/uploads/2016/05/Screen-Shot-2016-04-25-at-08.57.29.png',0,'attachment','image/png',0),(828,0,'2016-03-18 16:10:35','2016-03-18 16:10:35','','107','','inherit','open','closed','','107','','','2016-03-18 16:10:35','2016-03-18 16:10:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-30-1.jpg',0,'attachment','image/jpeg',0),(829,3,'2016-05-04 09:32:57','2016-05-04 09:32:57','<b>Back Squat v Front Squat</b>\n\nWhich is better for the knees?\n\nThinking in terms of loads and forces, there are compressive forces and shear forces to be considered here. When considering the knee, a compressive force will squeeze the cartilage.\n\n<b>The Knee</b>\n\nFirstly with regards to the knee during the squat there is a lot of evidence out there about what forces are being transferred through the knee joint and its structures. Things that need to be considered when referring to research are the health and biomechanics of the individuals, circumstances of the project and the limitations or variables of specifics to the research study. The difficulty is then for the reader to decipher what this may indicate for them as an individual. The translation of this information is often where things become distorted so I will try to be as precise as I can be with the information I have gathered, while generalising with safety in mind.\n\nQuadriceps, hamstring and gastrocnemius activity increases as knee flexion increases, which supports athletes with healthy knees performing the parallel squat (thighs parallel to the ground) between 0 and 1000 knee flexion. It is also demonstrated that the parallel squat is not necessarily a problem to knee health.\n\nFor those of you with healthy knees, the parallel squat is recommended over the deep squat (A2G or squatting down as far as possible until the posterior thighs and lower leg make contact with each other) because the risk of injury to the menisci and cruciate and collateral ligaments is likely to increase during the deep squat. The squat itself does not compromise knee stability though and in fact when performed correctly with good biomechanics, it can enhance stability. Large decelerations during the squat generate huge forces through the knees during the decent of the squat which is why this part of the movement should be performed in a slow and controlled manner to avoid higher risks of injury.\n\nFor those of you who find yourself ‘forward flexing’ or ‘trunk tilting’ the greater hip flexion has been shown to eliminate ACL stress, as stated above, mainly due to the increased hamstring activity. This could therefore indicate quadriceps dominance (Hewitt 2004). In other words the hamstring to quadriceps ratio is likely to require some form of conditioning of the hamstrings to regain a balance. What is paramount is what type of conditioning work and what must first be established is the reason for the imbalance in the first place.\n\nAt 60deg of knee flexion the forces in the knee joint change from greater posterior force to a greater anterior shear force which increases throughout the ascent. Hence performing squats at knee flexion angles of less than 900 will minimise the risk of knee injury.\n\nFry et al (2003) did a study looking at the effects of allowing the knees to move over the toes. This study found that while the NSCA cite the knees should be kept from moving forwards over the toes or to keep the trunk in an upright posture, in order to optimise the forces involved on all the joints, it may be a good thing to allow the knees to travel ‘slightly’ over the toes. This allows for a more even distribution of load through ankle, knee, hip and spine.\n\n<b>Squat width with regards to forces at the knee;</b>\n\nWhen considering the width of the squat it has been demonstrated that the wider squat has been shown to generate 15-16% significantly greater compressive forces through the knee joint than a narrow stance, McCaw et al (1999).Thus a narrow stance is a better choice if you wish to reduce the risk of compressive forces going through the knees.\n\n<b>To summarise on these points; </b>\n\nFor those with healthy knees a greater angle of knee and hip flexion is ok so long as the loads are not heavy. Periodisation techniques should always be used when performing the squat, in that the training is divided into light, medium and heavy cycles throughout the year. This also enables an individual to perform a variety of squat depths.\n\n<b>Next time: The Squat Part 4/6 – The Foot &amp; Footwear</b>\n\nFirstly I would just like to clarify part 4 relates to foot position not foot width (see part 3 for width)\n\nDo you worry about adding squats to your clients programme?\n\nDo you struggle to squat?\n\nDo you use the leg press because squatting hurts your back?\n\nWant to learn fundamentals about the pelvis when it comes to squatting?\n\n<b>Pelvic Biomechanics workshop COMING SOON!</b>\n\n<b><a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics/\">REGISTER YOUR INTEREST </a></b>','The Squat Part 3/6','','draft','open','open','','the-squat-part-36-re-released-by-request','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=829',0,'post','',0),(830,3,'2016-05-04 09:32:35','2016-05-04 09:32:35','','','','inherit','open','closed','','screen-shot-2016-05-04-at-10-32-13','','','2016-05-04 09:32:35','2016-05-04 09:32:35','',829,'https://biomechanicseducation.com/wp-content/uploads/2016/05/Screen-Shot-2016-05-04-at-10.32.13.png',0,'attachment','image/png',0),(853,3,'2016-05-06 07:19:17','2016-05-06 07:19:17','<b><i>Intrinsic Biomechanics for Personal Trainers, Pilates and Yoga teachers</i></b>\n\nYou as Personal trainers, Pilates or yoga teachers and other exercise professionals are well educated in how to teach exercises. There are many courses available to learn this critical skill, however I bet sometimes you feel anxious about whether you chose the right exercises for some of those tricky clients, right?\n\nDo you have the tools to assess your clients to identify which are the best gym and free exercises to perform relative to their personal biomechanical needs? And when the client has low grade back pain for example, do you feel confident about training them safely?\n\nDo you feel you need a simple system to fill this critical gap and answer some of those common questions?\n\n<b>The Health Continuum</b>\n\nYou need to identify where your clients are on a ‘health continuum’, which is a scale from, potentially illness/injury to wellness and on to higher performance over time. Your clients will be somewhere on this scale and you need to find out where they are before you can prescribe their conditioning exercises. Most exercises are suitable to most people; the problem is that invariably they are prescribed at the wrong time. For example, lunges can help some people and hurt others.\n\nIf someone has a rotated pelvis and a leg length discrepancy with associated muscle spasm in their hips, then lunges will most likely not be good for them. If they are functioning correctly around the pelvis, then lunges shouldn’t encourage injury or pain. That is one simple example demonstrating why some of your clients can do some of the exercises you prescribe, but others can’t.\n\nTo be able to identify where your clients are on the health continuum, you need to perform an intrinsic biomechanical assessment. These assessments are simple to perform and can take as little as 10 minutes. Once you know where they are on the health continuum then you can progress them through a sequence of exercise progressions.\n\n<b>The Biomechanics Coach™ System</b>\n\nIn the Biomechanics Coach™ system, these progressions start by improving your clients inner system by ensuring their fundamental pelvic and spinal mechanics are ‘Normalised’ and level to provide the foundation for normal movement.\n\nIn this first phase any muscle imbalances are corrected with simple release techniques and tight nerves are sorted out using nerve mobilisations. This phase is referred to as \'Before the Core\', because typically people will start their early exercise programmes with core stability-type exercises and they are simply not ready. That is why Pilates helps some people and hurts others.\n\nMany Pilates Instructors are recognising they dont want to stabilise someone in a biomechanically incorrect position. So \'Normalise\' them first, then \'Stabilise\' them. If we are not careful all we are doing is training people to compensate for their biomechanical problems rather than training correct movement patterns.\n\nSo, once the Normalise Phase has been completed the client is then progressed to the next stage which gives them the ability to consolidate and learn new motor programming strategies in the ‘Stabilisation’ phase. Here they are progressed through a series of isolated stability exercises and then work towards more functional stability patterns.\n\nThe final phase is where they learn to use their new motor programming strategies in a more functional way and then progress on to functional velocity training. Here they work towards the functional patterns and velocities that are relevant to their ‘purpose’.\n\n<b>Philosophy</b>\n\nWe should always be challenging the latest \'current\' thinking. Just because something new, like functional training and perhaps Pilates comes along to the industry, does that mean all the work you’re doing at the moment doesn’t work anymore? Of course not, it just means we have something else to integrate into what we are already doing, not necessarily discredit them.\n\nThe industry is often seduced by the \'next big thing\', but invariably this is simply another way of achieving certain targets for your clients, not necessarily the ONLY way and it certainly doesn’t mean you should be forgetting what you were doing - unless it’s been directly disproven. Nothing should ever be done in isolation, as the exercise model suggests, a series of progressions is the most effective way to progress exercise.\n\nWe should focus our attention to real issues, and using all the proven methodologies available to us, answer questions like,:\n\n•    How do I know which exercise to give to my clients – how do I know which will help them and which will hurt them?\n\n•    Apart from increasing the number of reps and sets, how should I be progressing my client’s exercise programmes?\n\n•    Why choose one particular exercise over another that seemingly does the same thing?\n\n•    Should I be using gym balls in their training and if so, when?\n\n•    Should I be using machines anymore? Are they ‘functional’? Does that matter?\n\nIt is often difficult to answer these questions for all our clients with any degree of honesty and accuracy with the assessments that are in place at the moment. Until the industry’s understanding of intrinsic biomechanics and its implications to exercise prescription is better understood our exercise prescription will not be as good or as safe as it should be.\n\nHave you ever asked yourself any of these questions?\n\nAre you a PT?\n\nDo you teach Pilates or Yoga?\n\nWould you like to experience some of the Biomechanics Coach™ System?\n\n<b><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">READ MORE </a></b>','What? When? Why?','','draft','open','open','','what-when-why','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=853',0,'post','',0),(854,3,'2016-05-06 07:19:09','2016-05-06 07:19:09','','','','inherit','open','closed','','screen-shot-2016-05-06-at-08-18-59','','','2016-05-06 07:19:09','2016-05-06 07:19:09','',853,'https://biomechanicseducation.com/wp-content/uploads/2016/05/Screen-Shot-2016-05-06-at-08.18.59.png',0,'attachment','image/png',0),(856,3,'2016-05-09 20:23:14','2016-05-09 20:23:14','WOW what a great weekend eh! How did you spend yours?\n\nWere you learning?\n\nRelaxing in the sun?\n\nSeeing family?\n\nDoing some crazy obstacle racing event?\n\nOne of the important lessons I have learned like most of us, from getting it wrong sometimes, is to get a balance of all of the above by remembering these 2 things I would like to share with you;\n\n<strong>The 4 Legs of Life</strong>\n\nThe ‘quantity’ of each of these may differ for each of us but we should all be mindful to consider how happy we are in each of these areas and maybe what we could do to improve the ones we neglect;\n\n1.Family\n\n2. Healthy nutrition\n\n3. Exercise/recovery\n\n4. A job you love\n\n<strong>The 3 x R’s</strong>\n\nHave you ever considered that ‘recovery’ comes in different forms and we actually may need a balance of each?\n\n<em>Rest</em> - Take a minute - this could be sitting down for a moment or stretching your legs if you work at a desk.\n\n<em>Relax</em> - Socialise, chill with friends or family or a bit of tv, something that takes your mind away from work.\n\n<em>Recuperation</em> - Sleep - plenty of it where possible!\n\nFor me this weekend was for enjoying my job and so after 2 days teaching knee &amp; foot biomechanics in London, I spent Saturday with 7 fantastically passionate and knowledgeable professionals discussing iMoveFreely® techniques for preparing or participants for our group exercise classes.\n\nAll thanks to Jayne Nicholls, GXTraining Ltd who is our partner for this workshop.\n\nThen the awesomely sunny Sunday was another IBA Discover Day workshop with the members and we had a guest with us too, since all professionals are welcome!\n\nThought I would share our IBA Discover Day workshop day with you so you might see how much there is to take way from these mini workshops - including CPD’s from both REPS and STA.\n\n10:00-10:10am - Welcome &amp; plan of the day - attendees were asked to write down what they wanted to gain from the workshop as part of registration as usual .\n\n10:10-10:20am - Introductions - finding out who we are networking with.\n\n10:20-10:30am - Up Dates on partnerships &amp; collaborations this year that offer IBA members special rates.\n\nWe also discussed the list of new one day workshops Biomechanics Eduction is hoping to put together to expand their portfolio.\n\nAdvanced Movement Analysis\n\nTennis Biomechanics\n\nSwimming Biomechanics\n\nRunning Biomechanics\n\nCycling Biomechanics\n\nOlympic Lifting Biomechanics\n\nBand workshop for equipment specialised function drills\n\n10:30-10:35am - We discussed all the benefits of being an IBA member including;\n\nIBA Discovery Day workshops (Aug 20th Lboro Uni, Nov 12th Scotland)\n\nMentor support\n\n*£150 voucher towards your education (*upon purchase of a 2 day pelvic biomechanics workshop)\n\nOur cool branded T shirt - one for every year of your membership!\n\nDiscounted rate &amp; priority access to TMC\n\nPriority access to events, with opportunities to shadow present &amp; demo screens\n\nDiscounts on partner courses, products &amp; equipment\n\n10:35-11:00 - Business section - This is where we discuss questions relating to business, stern up, marketing, selling and promoting what we do. We considered 3 questions put to us by our marketing specialist, Chris Wright of www.Level10Living.co.uk;\n\nDo you want to take your business to the next level?\n\nDo you want to earn more?\n\nDo you struggle to get new clients?\n\nChris has become an invaluable asset to Biomechanics Education ltd, to support our learners beyond their technical skill training. Many of our learners are (or are looking to become) self employed and feel in need of more evidence based ideas and techniques on exactly how to market their new skills, how to stand out in their area, charge more, be happier, an increased confidence in what they are doing and, the much coveted, MORE FREE TIME!\n\nThe techniques Chris teaches have done that for me and he is now also offering to our academy learners.\n\n11:00-11:10am - This was our technical section were we discuss theoretical anatomy and technical issues with clients.\n\nQuestion 1:  “Can clients get worse before they get better?”.\n\nIn response we talked about the fact that if someones intrinsic biomechanics have been out of alignment, they have had a twisted or rotate pelvis due to compensations from their lifestyle for example their brain may have become familiar with this asymmetry and so not sensed a problem as such.\n\nThus when the pelvis is de-rotated, or function is corrected the brain senses a change and alteration in loading through the joints and tissue this can potentially mean the client feels different, off centre, or even a little more uncomfortable temporarily. With close monitoring and re-assessments confidence should be restored for both practitioner and client as measurements improve. If not refer onto GP or a therapist who can offer further tests.\n\nThe other consideration might be that while you may have prescribed an exercise, and particularly when its a very low grade one, the client might perceive this as the cause of their discomfort. However upon further questioning it become obvious they didn’t account for other things that are more likely influence our biomechanics like;\n\nnew shoes\n\nan event the day before\n\ncarrying heavy shopping\n\nsleeping funny or in a strange bed\n\na day of gardening\n\na heavy night out\n\nSo we should always set up an appropriate level of expectation for our clients from our consultation and then our continuous re-assessing, questioning and evaluating of all the things they do that can influence how they feel.\n\nQuestion 2: “what direction should our feet point during the squat?”.\n\nWhile we did discuss this, there is a Juicemail on its way that explores this very point. However I also suggested that individuals might be able to form an idea for this during the next section as we look at foot and ankle biomechanics.\n\n11:10-12:00pm - This was our practical section and of this workshop the emphasis was on foot biomechanics.\n\nWe began by looking at the main bones and joints:\n\nCalcaneous - heel bone\n\nTalus - sits onto of the calcaneous and underneath the fibula and tibia.\n\nSubtalar joint - the joint surface between the talus and the calcaneous.\n\nWe discussed the tri- planar motions of pronation and supination and the fact we NEED BOTH to happen:\n\nPronation = dorsiflexion, eversion, abduction is for shock absorbtion\n\nSupination = plantarflexion, inversion, adduction is for propulsion.\n\nAlso the potentially misguiding phrase \'OVER pronation\' might be more accurately described as \'LATE supination\'.\n\nWe practiced the Jack’s test of the windlass mechanism which demonstrates whether your clients foot has the CAPACITY to re-supinate.\n\n12:00-12:30pm LUNCH BREAK\n\n12:30-1:20pm - Back to the foot and we looked at the alignment test. This uses the 2 talus ‘heads’ to locate a neutral position on the client while weight bearing. Once we find that ‘neutral’ position, we ask the client to relax and see what movement occurs at the foot and ankle.\n\nWe also discussed what could be done (if anything) by an exercise professional to contribute to improving foot/ankle function. With clini-bands we tried some simply but very challenging exercises which one of the attendees found virtually impossible due to his limitations so we adapted it into something he should be able to manage and to improve his foots ability to pronate - since he is a ‘supinator foot type’ and lacking an ability to dissipate shock (pronation) during the gait cycle.\n\n1:20-1:35pm - We shared some of our best case studies/client experiences and looked at some \'before and after\' shots of some athletes who have been through the iMoveFreely® programme with a qualified Biomechanics Coach™.\n\n1:35-1:50pm - At this point we put 2 very important dates in our diaries - Friday 7th Oct Biomechanics Coach™ training camp 1-5pm &amp; Saturday 8th Oct The Movement Convention 9-6pm both held at Loughborough University.\n\n1:50-2:00pm - The shop opened and orders were placed for branded clothing and quadrant mats.\n\nThis workshop ended way too soon again even though the sun was still shining outside!\n\nWould you like to join us for our next IBA Discovery Day workshop Sat 20th August at Loughborough University for free?\n\n<a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\">FIND OUT MORE</a>','The 4 \'Legs of Life\'','','draft','open','open','','the-4-legs-of-life','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=856',0,'post','',0),(857,3,'2016-05-09 20:22:59','2016-05-09 20:22:59','','','','inherit','open','closed','','screen-shot-2016-05-09-at-14-59-09','','','2016-05-09 20:22:59','2016-05-09 20:22:59','',856,'https://biomechanicseducation.com/wp-content/uploads/2016/05/Screen-Shot-2016-05-09-at-14.59.09.png',0,'attachment','image/png',0),(871,0,'2016-03-19 09:35:17','2016-03-19 09:35:17','','206','','inherit','open','closed','','206','','','2016-03-19 09:35:17','2016-03-19 09:35:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-32-1.jpg',0,'attachment','image/jpeg',0),(873,3,'2016-05-12 16:24:04','2016-05-12 16:24:04','If you were to google ‘<i>professional</i>’ these are the kind of definitions you would get;\n\n<i>relating to or belonging to a profession.</i>\n\n<i>worthy of or appropriate to a professional person; competent, skilful,  </i>\n\n<i>engaged in a specified activity as one\'s main paid occupation rather than as amateur</i>\n\n<i>a person engaged or qualified in a profession</i>\n\nBut how much do we actually really THINK about the real meaning of\n\n<i>professionalism</i>? It is a term that we tend to use quite often in our industry and yet what FEELING does it give us when we are describing someone who is <i>professional</i>? What image does it conjure up for you?\n\nCompetent, skilled?\n\nQualified?\n\nLooks the part/smartly dressed?\n\nSpeaks well/nicely?\n\nKnows their stuff/ is intelligent?\n\nThink of a moment when you FELT that you received a truly <i>professional</i> service and ask yourself;\n\n“What was it exactly that I appreciated?”\n\n“How did it make me FEEL &amp; why?”\n\n“What made my experience feel like the provider was being a true <i>professional</i>?”\n\n<b>Now ask yourself;</b>\n\n“What could I do to make MY clients FEEL like that?”\n\n“Is that the kind of service I already provide?”\n\nDo you GIVE what you would EXPECT from someone YOU receive a service from?\n\nWhen you REALLY think about it, it is more often than not the small stuff, right?\n\nFor me personally its definitely the small stuff….you can be competent, qualified, intelligent and sound like you know your stuff, you could even be super SUCCESSFUL!\n\nBUT the WAY you do something means a hell of a lot more.\n\nThe best mark of a TRUE <i>professional </i>in my opinion is someone who GOES THE EXTRA MILE.\n\nThis isn’t necessarily at any extra cost to the client nor immediate benefit to you, other than making the client happy or happier.\n\nWhat I would like to do is give you some examples of what I believe to be TRUE <i>professionalism</i> at its best including some of my own personal experiences and why.\n\nFirstly let’s take eating out as an example we should all appreciate.\n\nImagine YOU just ate the best food you have ever tasted but the service was awful. The waiter BEHAVED like you were unimportant to them and like they didn’t want to be there bringing your food.\n\nHow would that make you FEEL? Chances are you would be dissatisfied, wouldn’t you? How many friends would you tell about the bad <i>unprofessional </i>service?\n\nAnyone can cook a meal but its the EXPERIENCE we PAY for, don’t you agree?\n\nEven food that ISN’T that great but comes with a <i>professional</i> service and great attitude can save the evening, or even still be enjoyable should the waiter be accommodating, or apologetic for example, which demonstrates that they CARE how you FEEL.\n\nSomething I was taught in my very first job as a silver service waitress was by someone who, if I am honest, scared me stiff, however she ran an extremely popular restaurant that was reputed for its high end service and <i>professionalism.</i> This was what she literally demanded of ALL the staff\n\n<b>The customer is ALWAYS right!</b>\n\nNow I know you have heard that before and it is not new to you but again, what does it mean exactly ?\n\nBecause of course clients are NOT always right and more often than not its the very fact they are wrong that they are seeking your help, am I right?!!?\n\nBUT even when they are wrong we don’t necessarily TELL them that or at least we should consider how we make them feel, using our best EMPATHY skills. This can be the underpinning skill that makes you THE most professional person in your area.\n\n<b>Can you truly empathise with your clients? I mean TRULY ?</b>\n\nWhen someone has low self esteem are you able to sense that and make them feel good about themselves?\n\nDo you remember your clients birthday and buy them a card or even just text, email or call to say Have a nice birthday?\n\nDo you take joy in committing random acts of kindness for clients ?\n\nHow far would you go to make a client happy?\n\nWould you even provide or do something that actually COST you to simply make a client happy?\n\nIn his book ‘CRUSH IT’ marketing &amp; social media expert, Gary ‘VEE’\n\nVaynerchuck, describes a time when there was a problem with a wine order for an elderly client who was expecting a delivery of wine around the festive season and there was no way his team could organise a courier in the snow at that time of year in time for this client to get her order.\n\n<b>Do you know what he did?</b>\n\nHe personally drove hours and miles in the snow to deliver that order right to her door himself. Costing him a long day of his own time and way more than the order would commercially make his company.\n\nBUT..\n\nGary wanted to prove a point to both his team and his client that he would go to great lengths to demonstrate the ethos of his wine company, that <i>professionalism</i> was a priority when it came to customer service and CARE.\n\nI LOVE that story because that is how I feel about <i>professionalism</i> and I really hope it comes across to my clients that I would go to great lengths to make them happy.\n\nHowever when you love your job and love your clients, driving miles in the snow on your day off can still bring YOU pleasure to know your client is happy.\n\n<b>Isn’t that what makes YOU happy? Making others happy?</b>\n\nEven when working with a business partner or another company things that mean a lot to me are the indications from them that I am important to them. <b>Susan Findlay of North London School of Sports Massage</b> is one of THE most <i>professional</i> ladies I have ever come across.\n\nIn the last 10 yrs I have contacted, organised and hired many venues for use as a classroom and if I\'m honest it has been the bane of my life too!\n\nWhile some individuals have been helpful or polite and have even offered an adequate service, I knew I was just another client. I was always nervous driving to the venue, worried if everything was going to be provided as expected, the space would be ready, available etc. Inevitably and sadly it often went wrong.\n\nPeople like SUSAN, and her entire team, offer a service that not only makes me feel like they CARE but the give me confidence in them providing exactly what they promised when I book and hire their venue. I KNOW they will ALL go to great lengths to make me happy as their client. Having that TRUST demonstrates professionalism. So much so that I feel strongly enough that I want spend my morning writing about it!\n\n<b>HOW exactly does Susan do that?</b>\n\nA room containing the equipment I need\n\nA bowl of fruit or packets of biscuits being left for my learners to help themselves to\n\nEffort to provide information well in advance when there was some building work limiting the parking\n\nThe staff arriving early to allow me entry so I can set up\n\nPrompt replies to emails and questions\n\nPhone calls to check if I need certain equipment so that they can provide alternatives if they do not have it ALL the above ALL the time over and over again.\n\nNow read back and consider the actual COST of all of those things.\n\nMany of them COST nothing but she ALWAYS delivers her promise because she knows how important that is to me!\n\nSo what does <i>professional</i> mean to YOU as PT’s, exercise <i>professionals</i> and fit pro’s?\n\nOK so you can deliver a PT session really well, you can name the attachments sites for quadratus lumborum, you know a like a million exercises for the quads, you can list all the foods that contain iron and of course you LOOK the part in your branded kit!\n\n<b>Does this make you <i>professional</i>?</b>\n\nSending a text or a birthday card, treating someone to a bite to eat or a beer, actually answering your emails and texts is respectful let alone <i>professional</i>, remembering personal details for their benefit - these small inconsequential things can actually demonstrate to someone that they are valued by you because you thought about them or spent extra time with them.\n\nSo ask yourself.......\n\n<b>Exactly How <i>Professional </i>Are You?</b>\n\nWould you like to join a community of <em>professionals</em>?\n\n<strong><u><a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\" target=\"_blank\" rel=\"noopener\">READ MORE</a></u></strong>','How Professional Are You?','','draft','open','open','','how-professional-are-you','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=873',0,'post','',0),(874,3,'2016-05-12 16:23:47','2016-05-12 16:23:47','','','','inherit','open','closed','','screen-shot-2016-05-12-at-17-23-25','','','2016-05-12 16:23:47','2016-05-12 16:23:47','',873,'https://biomechanicseducation.com/wp-content/uploads/2016/05/Screen-Shot-2016-05-12-at-17.23.25.png',0,'attachment','image/png',0),(875,0,'2016-03-19 09:39:40','2016-03-19 09:39:40','','210','','inherit','open','closed','','210','','','2016-03-19 09:39:40','2016-03-19 09:39:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-33-1.jpg',0,'attachment','image/jpeg',0),(877,0,'2016-03-19 09:42:55','2016-03-19 09:42:55','','212','','inherit','open','closed','','212','','','2016-03-19 09:42:55','2016-03-19 09:42:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-34-1.jpg',0,'attachment','image/jpeg',0),(880,0,'2016-03-19 09:47:14','2016-03-19 09:47:14','','213','','inherit','open','closed','','213','','','2016-03-19 09:47:14','2016-03-19 09:47:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-35-1.jpg',0,'attachment','image/jpeg',0),(891,0,'2016-03-19 11:32:51','2016-03-19 11:32:51','','401','','inherit','open','closed','','401','','','2016-03-19 11:32:51','2016-03-19 11:32:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-36-1.jpg',0,'attachment','image/jpeg',0),(892,0,'2016-03-19 11:32:53','2016-03-19 11:32:53','','402','','inherit','open','closed','','402','','','2016-03-19 11:32:53','2016-03-19 11:32:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-37-1.jpg',0,'attachment','image/jpeg',0),(910,0,'2016-03-19 13:18:56','2016-03-19 13:18:56','','601','','inherit','open','closed','','601','','','2016-03-19 13:18:56','2016-03-19 13:18:56','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-3-1.png',0,'attachment','image/png',0),(911,0,'2016-03-19 13:18:58','2016-03-19 13:18:58','','602','','inherit','open','closed','','602','','','2016-03-19 13:18:58','2016-03-19 13:18:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-4-1.png',0,'attachment','image/png',0),(912,0,'2016-03-19 13:19:00','2016-03-19 13:19:00','','603','','inherit','open','closed','','603','','','2016-03-19 13:19:00','2016-03-19 13:19:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-5-1.png',0,'attachment','image/png',0),(913,0,'2016-03-19 13:19:01','2016-03-19 13:19:01','','604','','inherit','open','closed','','604','','','2016-03-19 13:19:01','2016-03-19 13:19:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-6-1.png',0,'attachment','image/png',0),(914,0,'2016-03-19 13:19:02','2016-03-19 13:19:02','','605','','inherit','open','closed','','605','','','2016-03-19 13:19:02','2016-03-19 13:19:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-7-1.png',0,'attachment','image/png',0),(936,3,'2016-05-15 05:34:32','2016-05-15 05:34:32','Something that brings me an immense amount of joy is hearing from people who have been through our academy and are thoroughly enjoying implementing the system we provide.\n\nJane Thomas is one such person and she has even written an article about it which I would like to share with you……\n\n<i>We Pilates teachers know our core, we know our balance and we know our alignment ... right? So how come we can get people to recruit their deep core muscles and do all those magnificent Joseph Pilates moves with the all singing, all dancing, spinning plates and humming the theme tune ... and yet they still wake up in the night with hip pain, or their lower back becomes uncomfortable if they sit at their computer for too long, or they come back from their run and their hamstrings feel tight and their calf muscles go into cramp? How come, eh?</i>\n\n<i>Because of course there is more to it, and as wonderful as Pilates is ... and believe me I am passionate about my Pilates and my teaching ... we know that there is always something else that needs to be taken into consideration.</i>\n\n<i>I had been happily teaching Pilates for 12 years doing mat work group classes and 1–to–1 training at my studio, and I loved what I was doing and the results I was getting with my clients. But because the left and the right side of my brain is fairly evenly balanced my left side, the analytical side, was always questioning that there could be more I could do to help my clients keep moving. Luckily for me I found the Biomechanics Education courses and in 2012 I began my training with them. Honestly, it was a bit daunting on the first day, for a couple of reasons, one I was a bit older than most of the other participants, and secondly I struggle to remember every single muscle name, its origin and attachment, in detail, and I knew this would be tested. But hey, stepping out of my comfort zone and into scary s**t zone for a few days wouldn’t do me any harm!</i>\n\n<i>Almost immediately I recognised the missing link for me — what’s the point of having a strong core if it is holding your pelvis in a dysfunctional position.</i>\n\n<i>In other words, if your pelvis is tilting and twisted your strong core will simply help to keep it tilted and twisted if there are muscles in spasm holding it there, and your movement will continue to be inhibited with muscles trying to produce movement they aren’t designed to do.</i>\n\n<i>Our intrinsic biomechanics system — how our muscles produce movement — needs our attention. Our pelvis needs to be in a position to enable the right muscles to do the right job. After that everything begins to function correctly: we can stretch effectively and we can work on our core strength to maintain this; then movement becomes more free. In other words — and in the words of <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaches™ </a>— we normalise, we stabilise, we functionalise. It all made complete sense.</i>\n\n<i>As the training days progressed my clients kept popping up in my head as I realised what I needed to do with them in order to give them those marginal gains that would make huge differences to how they felt and how they would perform and function.</i>\n\n<i>Since using the techniques and offering this facility to my clients it has made the Pilates so much more important and so much more effective as our 1–to–1 bespoke training programmes have become more specific and tailor-made. When we say our Pilates packages are bespoke, they really are bespoke, as a result of using <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaching™</a>.</i>\n\n<i>The training courses give you a depth of the knowledge needed to take your work to the next level. If like me, you are passionate about keeping people moving and active, intrinsic biomechanics training provides you with the scientific knowledge to do exactly this.</i>\n\n<i>Our clients are fully benefiting from our packages too. One client said that as a result of her programme her sons had told her they felt they had their old mum back, because she was moving more freely, more active, doing the things she wanted to do with them that she had stopped doing due to pain. Plus I feel that I continue to learn as I practice my <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaching™</a> and my teaching of Pilates has taken another step up because of this added knowledge. My aim is to get all my instructors qualified as <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaches™</a>, so that our bespoke Pilates/intrinsic biomechanics Programmes are our standard package, which will fully benefit all our clients.</i>\n\n<i>Jane Thomas is a Pilates teacher and <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Specialist Biomechanics Coach™</a></i>\n\n<i>Would you like to become a <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coach™</a>?</i>\n\n<i><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">READ MORE</a></i>','Where Form Meets Function!','','draft','open','open','','where-form-meets-function','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=936',0,'post','',0),(937,3,'2016-05-15 05:33:51','2016-05-15 05:33:51','','','','inherit','open','closed','','screen-shot-2016-04-23-at-06-41-16','','','2016-05-15 05:33:51','2016-05-15 05:33:51','',936,'https://biomechanicseducation.com/wp-content/uploads/2016/05/Screen-Shot-2016-04-23-at-06.41.16.png',0,'attachment','image/png',0),(938,0,'2016-03-19 20:20:08','2016-03-19 20:20:08','','703','','inherit','open','closed','','703','','','2016-03-19 20:20:08','2016-03-19 20:20:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-40-1.jpg',0,'attachment','image/jpeg',0),(939,0,'2016-03-19 20:20:10','2016-03-19 20:20:10','','704','','inherit','open','closed','','704','','','2016-03-19 20:20:10','2016-03-19 20:20:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-41-1.jpg',0,'attachment','image/jpeg',0),(940,3,'2016-05-17 09:26:25','2016-05-17 09:26:25','It seems a lot, if not most, people use assumption in our industry.\n\nWhy are articles also often written based on assumptions?\n\nAlso why do a few of the people who read <a href=\"https://www.www.biomechanicseducation.com/blog/\">MY articles</a> make assumptions about what I am actually saying, even when I\'ve clearly stated the example specifics for clarity of explanation?\n\nSO WHAT?\n\nWell within <a href=\"https://www.biomechanicseducation.com\">our courses</a> we discuss the idea that the body is a master of compensation and it does so for a variety of reasons AND in a variety of ways.\n\nWe use words like to desire the compensations like;\n\nSub-clinical Muscle Spasm\n\nImmobility\n\nTightness\n\nInhibition\n\nInstability\n\nWeakness\n\nNow MOST professionals know how to address the above with these interventions;\n\nRelease/ anti spasm\n\nMobilise\n\nStretch\n\nUn-inhibit\n\nStabilise\n\nStrengthen\n\nThese are all techniques that are all relatively simple to do and understand right?\n\nSo what\'s the problem?\n\nWhat is it that makes these interventions so controversial, problematic and debatable in, not only articles, but also in practice?\n\nWhy are many still making the error of assumption?\n\nWell its pretty tough to truly objectively KNOW which of the above problems is present.\n\nIn other words …..\n\nis ‘it’ WEAK or INHIBITED?\n\nis ‘it’ TIGHT or IN SPASM?\n\nis ‘it’ UNSTABLE or WEAK?\n\nis ‘it’ INHIBITED or TIGHT?\n\nEach of these examples can easily be mistaken for another and yet the corrective techniques could be contraindicating should the wrong one be prescribed. For example if you try to stretch a muscle ASSUMING it os TIGHT but in fact it is inhibited or in spasm as a protective mechanism, it could react by ‘holding on’ even more.\n\nA common issue might be the appearance of ‘tight’ hamstrings that are ‘held’ short so to speak. Quite often the sciatic nerve can be ‘tethered’ by dysfunction somewhere else, this creates nerve tension therefore the hamstrings ‘hold on’ to a shorter position, due to their close relationship with the sciatic nerve, to protect the nerve which is lacking its full capacity.\n\nNow consider if you tried to \'stretch\' this apparently ‘tight’ hamstring..!\n\nSo what should we do??\n\nObviously <a href=\"https://www.biomechanicseducation.com\">screening</a> helps but even then the screen may identify there is a problem but not which one exactly as they can ‘appear’ the same.\n\nSo possibly all we are left with is to prescribe the safest, or least contraindicating, technique first to reduce risk.\n\nUsing the lowest grade methods is surely the wisest move, don\'t you think?\n\nIn the same way a therapist might release or rub the antagonist to the injured muscle to more safely influence a damaged agonist we could consider similar concepts for clearing dysfunctions.\n\nBlood flow is key and can still be encouraged through very subtle means or even more aggressive methods.\n\nAn example of a subtle intervention might be a l<a href=\"https://www.biomechanicseducation.com\">ow grade 20% muscle</a> release technique (Ribot-Ciscar,1991) whereas something like stretching might be seen as more aggressive by comparison.\n\nSo surely it makes sense to START with the subtlest option?\n\nWhat are you thoughts?\n\nAlso let me know your thoughts on the concept of maintenance and developmental stretching as taught on personal training courses verses other methods of improving muscle function?\n\nEMAIL ME rachel@biomechanicseducation.com','Assumptions','','draft','open','open','','assumptions','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=940',0,'post','',0),(941,3,'2016-05-17 09:26:09','2016-05-17 09:26:09','','','','inherit','open','closed','','screen-shot-2016-02-16-at-06-49-29','','','2016-05-17 09:26:09','2016-05-17 09:26:09','',940,'https://biomechanicseducation.com/wp-content/uploads/2016/05/Screen-Shot-2016-02-16-at-06.49.29.png',0,'attachment','image/png',0),(948,0,'2016-03-19 21:04:58','2016-03-19 21:04:58','','901','','inherit','open','closed','','901','','','2016-03-19 21:04:58','2016-03-19 21:04:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-42-1.jpg',0,'attachment','image/jpeg',0),(951,0,'2016-03-19 21:08:10','2016-03-19 21:08:10','','903','','inherit','open','closed','','903','','','2016-03-19 21:08:10','2016-03-19 21:08:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-43-1.jpg',0,'attachment','image/jpeg',0),(955,0,'2016-05-19 11:13:05','2016-05-19 11:13:05','','','','inherit','open','closed','','moreinfo','','','2016-05-19 11:13:05','2016-05-19 11:13:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/05/moreinfo-1.jpg',0,'attachment','image/jpeg',0),(960,0,'2016-03-19 21:20:42','2016-03-19 21:20:42','','904','','inherit','open','closed','','904','','','2016-03-19 21:20:42','2016-03-19 21:20:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-44-1.jpg',0,'attachment','image/jpeg',0),(967,0,'2016-03-20 09:20:36','2016-03-20 09:20:36','','911','','inherit','open','closed','','911','','','2016-03-20 09:20:36','2016-03-20 09:20:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-45-1.jpg',0,'attachment','image/jpeg',0),(969,0,'2016-05-19 11:20:49','2016-05-19 11:20:49','','','','inherit','open','closed','','imovefreelysm','','','2016-05-19 11:20:49','2016-05-19 11:20:49','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/05/imovefreelysm-1.jpg',0,'attachment','image/jpeg',0),(970,0,'2016-03-20 09:25:08','2016-03-20 09:25:08','','913','','inherit','open','closed','','913','','','2016-03-20 09:25:08','2016-03-20 09:25:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-46-1.jpg',0,'attachment','image/jpeg',0),(985,0,'2016-03-20 20:54:33','2016-03-20 20:54:33','','667','','inherit','open','closed','','667','','','2016-03-20 20:54:33','2016-03-20 20:54:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-47-1.jpg',0,'attachment','image/jpeg',0),(991,0,'2016-03-21 13:28:11','2016-03-21 13:28:11','','bg-rev-d','','inherit','open','closed','','bg-rev-d','','','2016-03-21 13:28:11','2016-03-21 13:28:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-48-1.jpg',0,'attachment','image/jpeg',0),(1001,0,'2016-05-19 13:40:42','2016-05-19 13:40:42','','','','inherit','open','closed','','imovefreely2','','','2016-05-19 13:40:42','2016-05-19 13:40:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/05/imovefreely2-1.jpg',0,'attachment','image/jpeg',0),(1007,0,'2016-03-24 12:04:41','2016-03-24 12:04:41','','sd-logo-mob-hd','','inherit','open','closed','','sd-logo-mob-hd','','','2016-03-24 12:04:41','2016-03-24 12:04:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-8-1.png',0,'attachment','image/png',0),(1008,0,'2016-03-24 12:04:42','2016-03-24 12:04:42','','sd-logo-mob','','inherit','open','closed','','sd-logo-mob','','','2016-03-24 12:04:42','2016-03-24 12:04:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-9-1.png',0,'attachment','image/png',0),(1010,0,'2016-03-24 12:10:06','2016-03-24 12:10:06','','dance-floating-logo','','inherit','open','closed','','dance-floating-logo','','','2016-03-24 12:10:06','2016-03-24 12:10:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-10-1.png',0,'attachment','image/png',0),(1011,0,'2016-03-24 12:11:11','2016-03-24 12:11:11','','dance-floating-logo-hd','','inherit','open','closed','','dance-floating-logo-hd-2','','','2016-03-24 12:11:11','2016-03-24 12:11:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-11-1.png',0,'attachment','image/png',0),(1012,0,'2016-03-24 13:51:13','2016-03-24 13:51:13','','the7-new-fav-hd1','','inherit','open','closed','','the7-new-fav-hd1','','','2016-03-24 13:51:13','2016-03-24 13:51:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-5-1.gif',0,'attachment','image/gif',0),(1013,0,'2016-03-24 13:51:14','2016-03-24 13:51:14','','the7-new-fav1','','inherit','open','closed','','the7-new-fav1','','','2016-03-24 13:51:14','2016-03-24 13:51:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-6-1.gif',0,'attachment','image/gif',0),(1014,3,'2016-05-22 10:34:12','2016-05-22 10:34:12','It depends!\n\nMuscle spasm, nerve tension, stiff joints, inhibited muscles, tightness are a few common (not normal) dysfunctions we and our clients may experience due to our lifestyles today.\n\nEach of these impact and relate to each other as our body is an integrated system AND a true master of compensation.\n\nWhen you consider that the nervous system sends messages to the muscles to move them, the muscles create tension and pull on the bones as levers to produce movement and that this movement is noted by the proprioceptors, controlled by the nervous system, it would be prudent to accept that a problem in one area can directly influence another, don\'t you agree?\n\nSo What?\n\nSo how does that influence YOU as a PT or exercise professional since we are not trained to diagnose, nor treat, nor in many cases even assess these things in our clients?\n\nWell it would most certainly influence your exercise choice since these type of issues can result in injuries, eventually BECOME painful, also limiting, when we ask clients to move we may see strange things happen AND eventually they can also result in more clinical issues like RSI, sciatica, disc herniations, impingement issues and ligament problems etc.\n\nIn fact WE are perfectly placed to reduce these risks and prepare our clients better for movement since we see them regularly for exercise advice. So if we can recognise issues like these and address them BEFORE they become a more clinical issues this would be a great thing wouldn\'t it!?\n\nOne example of this is the common issue of \'tight\' hamstrings which we hear all of the time. Maybe your client, or even YOU, have apparently \'tight\' hamstrings that do not seem to improve even when stretched religiously?!\n\nDuring our professional education we are trained to stretch short or tight muscles however this is assuming that they are in fact \'tight\' (see previous blog ASSUMPTIONS).\n\nIf you are stretching and your hamstrings and they are not improving then it might be smart to consider that they may actually be \'hanging on\' for different reason!\n\nWhat\'s the problem?\n\nOne of the most common intrinsic biomechanical issues relating to hamstring problems is when the sciatic nerve becomes tethered. The sciatic nerve runs down the back of the leg in close relationship with the hamstring\n\nNow this tension, as mentioned, is often not a clinical issue (although if unaddressed can become one), you may have no pain but simply notice limited range and restriction.\n\nSo WE as PT\'s and exercise professionals are really best placed to understand how to assess and correct dysfunctions like mobilising and improving range though the nervous system which includes the back of the leg.\n\nWe will be directly influencing these areas when we ask our client to squat, deadlift, down dog, burpeez or even sit down, so should we not be preparing areas like the nervous system for these moment too?\n\nOften the tethering can be caused by muscle spasm in the pelvis - muscles like piriformis, which also has a close relationship with the sciatic nerve, and this then restricts the range available to the nervous system with movements around the hip like hip flexion. for example.\n\nUnaddressed this can result in more clinical issues like Sciatica which go beyond our remit and require us to refer to a good therapist.\n\nWhat can WE do?\n\nA combination of muscle releases and sciatic nerve mobilisations are a good way to find your hamstrings true full range. If we use a more subtle approach it can have astounding affects and in my professional experience it more often than not does!\n\nIt is not ALL about stretching!!!\n\nLearn how to assess the sciatic nerve AND release it...\n\n<a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics/\">CLICK HERE</a>','Stop Stretching?','','draft','open','open','','stop-stretching','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1014',0,'post','',0),(1015,3,'2016-05-22 10:34:04','2016-05-22 10:34:04','','','','inherit','open','closed','','leaping-image','','','2016-05-22 10:34:04','2016-05-22 10:34:04','',1014,'https://biomechanicseducation.com/wp-content/uploads/2016/05/leaping-image.png',0,'attachment','image/png',0),(1017,3,'2016-05-24 08:46:42','2016-05-24 08:46:42','Biomechanics Coach™ Dictionary of Definitions\n\n<i>Normalised</i> = a level and moving pelvis and spine\n\nWe as Biomechanics Coaches™ work to a pyramid approach of exercise prescription. Normalise is the first tier of that pyramid. Without Normalisation, core training could be ‘gluing’ us/our clients into a wrong position or dysfunction.\n\nOur concept is based upon the idea that muscles, joints and nerves all affect each other through the Integrated System. The iMoveFreely® programme provides techniques to effect the entire system through each individual sub system.\n\nThe initial series of iMoveFreely® techniques, to assist Normalisation, consists of muscle releases (or anti spasm exercises) based on Ribot-Ciscar’s work (1991).\n\nThen there are also some very cool nerve mobilisation techniques based on David Butlers (The Sensitive Nervous System, 2000)\n\nwork that allow the nervous system to find its ‘normal’ range should it be tethered down in some way.\n\nThen our ‘pure’ joint mobilisation approach is modified, from much of what is seen in our industry today, to very isolated joint mobility in an attempt to encourage the parts that don’t move well to move more freely.\n\nThe common way for mobility to be performed is often <i>cheating</i> us of improvement. If you ask your client to rotate their thoracic spine, to improve thoracic spine rotation, they will do whatever they can to perform that movement. Chances are that will include scapular rotation and possible some movement at the hips. The extra movement allowed at the scapular and hips creates the <i>effect</i> of great ROM, and is indeed a more ‘functional’ way to move. However the parts of their bodies that move well can actually limit the joints that don’t move so well from improving.\n\nSo while functionally we probably do want to rotate using all of these areas, if one portion isn\'t doing it’s part, we are at risk of an injury occurring from the overload in the other areas.\n\nWe can say we have <i>‘Normalised’</i> someone once their pelvis and spine are moving correctly, for that individual.\n\nLearn how to Normalise yourself AND your clients\n<a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics/\" target=\"_blank\" rel=\"noopener\">REGISTER YOUR INTEREST HERE</a>','Are You Normalised?','','draft','open','open','','are-you-normalised','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1017',0,'post','',0),(1018,3,'2016-05-24 08:44:51','2016-05-24 08:44:51','','','','inherit','open','closed','','expectation-pyramid','','','2016-05-24 08:44:51','2016-05-24 08:44:51','',1017,'https://biomechanicseducation.com/wp-content/uploads/2016/05/EXPECTATION-PYRAMID.pdf',0,'attachment','application/pdf',0),(1019,3,'2016-05-24 08:45:25','2016-05-24 08:45:25','','EXPECTATION PYRAMID','','inherit','open','closed','','expectation-pyramid-2','','','2016-05-24 08:45:25','2016-05-24 08:45:25','',1017,'https://biomechanicseducation.com/wp-content/uploads/2016/05/EXPECTATION-PYRAMID-1.pdf',0,'attachment','application/pdf',0),(1020,3,'2016-05-24 08:46:03','2016-05-24 08:46:03','','','','inherit','open','closed','','screen-shot-2016-05-24-at-09-45-45','','','2016-05-24 08:46:03','2016-05-24 08:46:03','',1017,'https://biomechanicseducation.com/wp-content/uploads/2016/05/Screen-Shot-2016-05-24-at-09.45.45.png',0,'attachment','image/png',0),(1021,3,'2016-05-24 08:46:33','2016-05-24 08:46:33','','','','inherit','open','closed','','screen-shot-2016-05-24-at-09-45-45-2','','','2016-05-24 08:46:33','2016-05-24 08:46:33','',1017,'https://biomechanicseducation.com/wp-content/uploads/2016/05/Screen-Shot-2016-05-24-at-09.45.45-1.png',0,'attachment','image/png',0),(1023,3,'2016-05-31 07:50:36','2016-05-31 07:50:36','The Foot\n\nFirstly I would just like to clarify this section relates to foot ‘position’ directionally, not foot width during squatting (see part 3/6 for width during squatting)\n\nThe Foot Direction\n\nIn my opinion, and from the evidence in the papers I have read, there is really only one deciding factor in the direction your feet should point during the squat and that is where they fall naturally for the width of squat you have chosen. So while the width may determine the degree of stress on the knee there is no substantial EMG evidence to determine that changing the foot angle or direction hits any muscle more or less. Therefore to reduce injury risk allowing the feet to fall where they want to is probably most prudent.\n\nThe reason for this is the relationship between the joints sitting above and their descending influence of load and force through the foot and ankle. We discussed previously, in The Squat Part 1/6, how hip rotator muscles, like Piriformis, can become dysfunctional with muscles spasm and so it might be prudent not to ‘fight’ this problem by ‘forcing’ feet into directions that simply don’t feel right.\n\nI experimented myself with a concept promoted by some in the industry that we should ensure a forward pointing foot. However this demonstrated that for me I was at a higher risk of a knee injury in this position (see The 10 Minute Squat Test Article)\n\nKlein’s book ‘The Knee In Sports’ states that “…the toes should be kept directly beneath the knees or slightly inside. This allows the normal relationship to be maintained between femur and tibia in the flexion movement”. However in Rippetoe’s ‘Starting Strength 3rd Edition’ he describes the need for feet to be turned out at a 300 angle. The problem arises when these types of statements are taken out of context. So I would like to clarify, the types of questions we should really be asking are ‘what is my biomechanical set up?’ and ‘what do I want to achieve from this movement?’\n\nAs stated above, during the performance of a squat, several authors have recommended various positions for placement of the foot. However a review of the literature failed to demonstrate how foot placement and lower extremity turn out during the squat affect the activity of the leg muscles (Ninos et al 1997)\n\nFootwear\n\nSomething we must consider in relation to the foot is footwear since what we wear on our feet directly impacts on the foot and how it functions. Let me explain…\n\nMany a debate is heard over what footwear should be worn when squatting. This is ultimately down to our individual biomechanics and the way we are ‘stacked up’. The foot, knee, pelvis and spine all influence each other. These influences can be ‘descending’ or ‘ascending’, in other words, if there are certain structural issues with the shoulder, this can influence what is happening at the foot (Descending) and vice versa the foot can influence what is happening at the shoulder (Ascending). This article is going to explore what these influences are and things we might want to consider as a result.\n\nTo enable you to make a choice about footwear during squatting first of all you would need to understand where your foot falls ‘naturally’ below you and then where it needs to be for stability during a squat. McBride, et al 2006, demonstrated that isometric squatting on an unstable surface significantly reduced peak force &amp; rate of force development. Which confirms that we might want to stabilise the foot and ankle during the squat. Yet if a biomechanical problem is present, loose Mid Tarsal Joint (MTJ) or Sub Talar joint (STJ) or even pelvic dysfunction then we may need to consider at least 2 ways of addressing these common (not normal) problems for when we want to squat most efficiently.\n\nIf the mechanical problem is ascending, loose or too mobile MTJ or STJ examples above, then orthotics can be prescribed while working on the biomechanics of the rest of the body, however if the issues are descending, i.e. pelvic dysfunction is present, then orthotic prescription should be avoided until the problems higher up have been eradicated.\n\nFor example in the case of a descending pattern: Jane has pelvic dysfunction that means her knees buckle inwards (knee valgus). This creates a ligament dominance which puts the medial ligaments and ACL at risk since they are taking much of the load/force through the knee during squatting or upon landing during gait. This in turn puts a rotational load around the lower leg, which directly influences the degree of pronation that occurs at the STJ, often presenting itself as OVER pronation at the foot.\n\nBy releasing the muscle spasm that created the problem in the pelvis and then strengthening these muscles using a specific and bespoke programme, Jane may be able to regain some supination capacity which may then remove the need for orthotics. Had orthotics been prescribed for this appearance of over pronation, in this particular case, they may have compounded the problem at the pelvis. I can sense some of you readers for whom orthotics failed you, nodding away out there!\n\nNow in the example of an ascending pattern: John has feet that OVER pronate because his MTJ/STJ’s are loose or ‘floppy’ . This means his feet are unable to ‘stiffen’ or ‘lock’ into enough supination naturally to ensure sufficient rigidity in his foot when he squats, or even walks. Better alignment will likely help him with his balance, and potentially his power generation, during squatting.\n\nHowever using some orthotics during the squats means the support is already there and his feet are ‘assisted’ to supinate better, giving him a more rigid foot and ankle, thus maintaining better alignment upwards through the knees, pelvis and beyond. Without the orthotics John may suffer with back problems later.\n\nWeightlifting Shoes\n\nThe effects of weightlifting shoes on squat mechanics is a subject for which I struggled to find evidence. However I did find a study by Fortenbaugh et al .(2003). They concluded that “In this study, the combined amount of anterior (forward) bar movement and posterior (backwards) hip movement was significantly less when wearing weightlifting shoes (as oppose to running shoes)….this study did not exhibit any other kinematic differences when using weight lifting shoes versus running shoes”. So this suggests the weight lifting shoes allow for a more vertical trunk position during the squat, which is what is recommended for low back health and reduced loads on the knees.\n\nTo summarise all of these points:\n\nFoot position advice should be more about where they land naturally in relation to the pelvis and width of stance.\n\nFootwear advice should always consider everything above the foot, as well as foot function, in relation to the individuals biomechanics rather than shoe ‘fashion’ or a generic concept of what should be worn.\n\nWe are all different!!!\n\nThe Squat Part 5/6 – A short one on the question of belt or no belt?\n\nLearn how to assess how the pelvis influences the knee &amp; foot during squatting in a practical 2 day workshop with No Exams!\n\n<a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics/\">REGISTER YOUR INTEREST HERE</a>','The Squat Part 4/6','','draft','open','open','','the-squat-part-46','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1023',0,'post','',0),(1024,3,'2016-05-31 07:50:22','2016-05-31 07:50:22','','','','inherit','open','closed','','feet-skele','','','2016-05-31 07:50:22','2016-05-31 07:50:22','',1023,'https://biomechanicseducation.com/wp-content/uploads/2016/05/feet-skele.jpg',0,'attachment','image/jpeg',0),(1026,3,'2016-06-02 06:28:15','2016-06-02 06:28:15','Says Biomechanics Coach™ of the Month Amanda Swallow.\n\nMany of YOU ask us what entering our academy can do for YOU and YOUR business so the BCOTM programme not only gives recognition to special people and smart professionals in our industry, it also allows YOU to see what it might be like for you to become a qualified Biomechanics Coach™.\n\nAmanda is a great example and has been nominated for her consistently positive attitude towards her work and others around her. We are so pleased to nominate her as June\'s Biomechanics Coach™ of the Month!!\n\nYour Biography in brief.\n\nMovement and music has always featured heavily in my life.  I was a semi professional ballroom, latin and jazz dancer in my younger years. In 1994 when aerobics was becoming popular in sport centres and professional clubs I fell in love with teaching group exercise, the way it brought people together, sharing the buzz, music and health benefits. I was able to combine my love for creating choreography with music and movement. I indulged my passion for fitness knowledge further by going back to Leeds University part time and completed my exercise &amp; fitness diploma and certificate, all pre-internet.\n\nDuring my first pregnancy I discovered the benefits of Yoga, later I trained in Pilates and nutrition. Being self employed in the fitness industry enabled me to work around my kids, teaching the exercises that make a difference to my clients whilst making lifelong friends.\n\nWhat made you choose Biomechanics Coaching™?\n\nI had the pleasure of meeting the amazing Rachel France when she delivered an iMoveFreely® Instructor workshop in 2011, exposing me to the amazing world of intrinsic biomechanics. After completing the certificate I always knew I had to take it further as it totally revolutionised the way I approached my teaching. It had given me an insight into a different world and how to serve my clients better.\n\nDue to family commitments this was put on the back burner until finally in 2015 I was able take advantage of the Biomechanics Coach™ Diploma.\n\nThe intrinsic biomechanics programme is now integrated into every area of my life. I am able to keep myself injury free whilst educating my clients to identify potential imbalances that lead to an inevitably increased chance of injury.\n\nWhat do you specialise in outside of Biomechanics Coaching™?\n\nMind and Body Retreat days, Pilates, Yoga, Group exercise, within the community and private clubs.\n\nWhat would be your advice to somebody thinking of becoming a Biomechanics Coach™?\n\nEach of the Biomechanics Coach™ Diploma workshop is incredibly informative and in depth. Once you complete your training the professional back up network that Rachel has developed constantly support, nurtures and expands your new skills.\n\nIf you want your clients to understand how their bodies work and why they sometimes break down do the Biomechanics Coach™ Diploma.\n\nIf you want to understand why you are prescribing an exercise and whether it is actually suitable for your clients do the Biomechanics Coach™ Diploma.\n\nIf you want to make permanent improvements to your clients using a tried and tested system then do the <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coach™ Diploma.</a>\n\nPersonal Achievements\n\nTwo wonderful kids who continue to surprise &amp; challenge me on a daily basis and sharing 28 years with my soulmate Paul. Rachel France and many of the fabulous Biomechanics Coaches™ have inspired me to blog about health and fitness through my Move Freely Forever Facebook page reaching more clients.\n\nSporting Achievements\n\nI’m not very sporty but I love to dance and was a junior Ballroom and Latin dance champion, competing In Blackpool tower when I was 16.\n\nCareer Highlights\n\nStill loving being self employed in the fitness industry for over 20 years.\n\nMy thriving very special move freely forever class using the iMoveFreely® exercises to benefit clients suffering from a wide range of problems like MS, ME, Parkinson, arthritis etc.\n\nHolding my 25th Tierra Madre Experience Mind and Body retreat on October 2016.\n\nBecoming a Biomechanics Coach™.\n\nShare a secret about you.\n\nBeing a back packer with my husband at 32. Travelling overland from Anchorage, Alaska to Tierra del Fuego, Chile for seven months.\n\nWhere do you see yourself in 10 years time?\n\nHelping women thrive as they age by providing a first class service delivering courses which integrates Biomechanics Coaching™, Nutrition, Pilates and Yoga.\n\nHaving more time to travel again.\n\nCase study\n\nMy 66 year old client was suffering from arthritis in his right hip and finding everyday tasks such as climbing stairs and even putting on his socks unbearable.  After just 6 weeks on the Biomechanics Coaching™ programme he is now a regular at my weekly Pilates class, enrolled in a dry stone walling course and returned back to hill walking after 10 years.\n\nThe system works with any client who acknowledges that their lifestyle needs addressing and is prepared to change.\n\nFundamentally, if a client takes responsibility to fix themselves, with the knowledge and regime I can then provide, they will move more freely.\n\nWould You like To Join This Band Of Elite Professionals?\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">READ MORE</a>','\"Revolutionised My Approach\"','','draft','open','open','','revolutionised-my-approach','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1026',0,'post','',0),(1027,3,'2016-06-02 06:28:05','2016-06-02 06:28:05','','','','inherit','open','closed','','13041131_1814009795494731_4065624029059179728_o','','','2016-06-02 06:28:05','2016-06-02 06:28:05','',1026,'https://biomechanicseducation.com/wp-content/uploads/2016/06/13041131_1814009795494731_4065624029059179728_o.jpeg',0,'attachment','image/jpeg',0),(1029,3,'2016-06-05 06:30:42','2016-06-05 06:30:42','Now those of you who have been in a classroom with me will probably have heard me say at some point that I am a slow learner, that its takes me a while to work things out and that I am not \'naturally\' bright nor academic (as my old school teachers may have mentioned a few times). If I have a technical question in my head it takes me a while to find a way of making sense of it.\nLike many of us right!?\nWell I\'ve had a question or 2 challenging me for a while and so having spent some months reading research papers about LLD, pelvic function, sacro iliac joint (SIJ) pain, symmetry of the pelvis, methods of measuring LLD etc, as a Biomechanics Coach™ I found it interesting that so few of the papers I found related simply to function, or how to correct it. Almost all the papers were connected to ‘clinical’ findings or ‘medical’ issues and ‘symptoms’.\n\nI mean why on earth would you research something that isn\'t a problem?\n\nWell to <em>prevent</em> the problem maybe?!\n\nAs Biomechanics Coaches™ we assess and prepare our clients to move better to avoid symptoms and clinical problems, pathology and pain. This preparation for movement is vital considering the lives we now lead amongst technology and equipment etc that make our lives ‘easier’, less effort, quicker and in fact less active than ever.\n\n<strong>My project was because I wanted to understand the relevance of a leg length discrepancy (LLD) based on as much evidence as possible.</strong>\n\nI found papers that discussed pelvic position, structural leg length discrepancy (SLLD) even functional leg length discrepancy (FLLD) and some looked at whether the LLD affected LBP\n\nMy question was - <strong>Does evidence tell us that a LLD affect low back health? and is there a difference between SLLD and FLLD and their influence on back health?</strong>\n\n<strong>Definitions;</strong>\n\nSLLD - or structural leg length discrepancy.\n\nAn example of this is the individuals femurs are genetically different in length therefore creating a structural difference that cannot be changed without surgical intervention.\n\nAnother example might be someone who has broken a bone and therefore now has a structural difference caused by the trauma\n\nFLLD - or functional leg length discrepancy.\n\nThis is discussed often in research papers and describes a twisted or rotated pelvis, around the SIJ which creates the <em>appearance</em> of a LLD. Should the dysfunction causing the rotation or twist be removed the LLD can also disappear.\n\n<strong>How do we know if we have either an SLLD or FLLD?</strong>\n\nIi is m understanding that, in podiatry, if there is a LLD that is less than 11mm it is classed as ‘insignificant’\n\nAlso in the research it almost always seems to be assumed there has a to be a clinical significance if there is a LLD present.\n\nWhile in my very limited experience as a Biomechanics Coach™ most LLD (and they are more often than not UNDER 11mm) are FLLD that are NOT clinical and can be addressed/corrected with simple exercises. The presence of a FLLD  seems to coincide with the degree of low back pain they experience.\n\n<strong>So WHY is this?</strong>\n\nLet me give you the low down about what I found out:\n\nStarting with the pelvis - there is evidence from Rose McDonalds work, when she was head physio at Crystal palace athletics club, that the hips/pelvis are at least partly responsible for 60% of lower limb injuries from a biomechanical point of view.\n\nAlso in my 10 years experience of using pelvic muscle anti spasms, particularly on the hip rotators, flexors and extensors, it has has had a huge impact on all of my clients, in particular their appearance of a FLLD.\n\nTheir ROM improves, pain is reduced, strength has increased, they report feeling more stable and overall feel they move better.\n\nNow there are groups and individuals out there who still challenge everything, which as you already know from previous Juicemails I encourage my learners to do, and they have challenged me on my methods and the evidence based programme I use.\n\nDo you know what.... it is the times when I am confronted and challenged that I grow an expand the most. When at my most uncomfortable is when I learn and absorb information best. When someone questions the very core of what I do in my practice and the method I teach in the academy, the thing I am most passionate about.\n\nThis happens sometimes and it happened recently and I am thankful for the challenge because it took me on a little journey of exploration through reams and reams of research papers and books and conversations with peers and mentors and colleagues and what fun i have had in the ‘growth zone’!\n\n<strong>Do you know where I ended up?</strong>\n\nApart form writing this for you guys of course….\n\nWell after reading complex equations, difficult language, conflicting evidence, fascinating arguments, strange opinions and lengthy articles I ended up with\n\nSO WHAT?\n\nDo you remember the SO WHAT article?\n\nWell yes thats where I ended up asking myself SO WHAT?\n\nWhat am I trying to achieve with my clients?\n\nNO\n\nHang on….what AM I achieving with my clients??\n\n<em>Their ROM improves, pain is reduced, strength has increased, they report feeling more stable and overall feel they move better.</em>\n\nSo no matter what the research states, no matter what the trolls say, no matter what challenges you, if your client feels better, moves better, experiences less pain and you have some objectivity to measuring improvements - SO WHAT?\n\nSo please feel free to read away to your hearts content some really interesting papers listed here but ultimately does your input get the desired output?\n\n<strong>References;</strong>\n\nAllyn.L e al, 1984, <em>Leg length discrepancy assessment:accuracy &amp; precision of 5 clinical method of evaluation</em>\n\nArumugam et al (2012) <em>Effects of eternal pelvic compression o form closure, force closure &amp; neuromotor control of the limbo-pelvic spine.</em>\n\nBeattie et al (1990)<em> Validity of derived measurements of leg length differences obtained by use of tape measure </em>\n\nCalvilla et al, 2000<em>, Anatomy and pathophysiology of the SIJ</em>\n\nCibulka (2002) <em>Understanding SIJ movement as a guide to the management of a patient with unilateral low back pain</em>\n\nConnell (2007) <em>A case study report - concept of assessment &amp; treatments of anterior knee pain related to altered spine &amp; pelvic biomechanics </em>\n\nCooperstein, Lew (2009)<em> The relationship between pelvic torsion &amp; anatomical leg length inequality</em>\n\nCummings et al (1993) <em>The effects of imposed leg length difference on bone pelvic asymmetry </em>\n\nCusi (2009) <em>Paradigm for assessment &amp; treatment of SIJ mechanical dysfunction</em>\n\nDillen et al (2008) <em>Hip rotation ROM in people with &amp; without LBP who participate in rotation related sports.</em>\n\nDonTigny (1985) <em>Function &amp; pathomechanics of the SIJ</em>\n\nDonTigny (1989) <em>Anterior dysfunction of the SIJ as major factor in etiology of idiopathic Low Back Pain syndrome</em>\n\nDuff et al (2000) <em>The reliability &amp; validity of the ‘tape’ &amp; ‘block’ methods for assessing anatomical leg length discrepancy.</em>\n\nForst et al (2005) <em>The SIJ; Anatomy, physiology &amp; clinical significance </em>\n\nFryer (2004) <em>Methods used by members of the Australian osteopathic professional to assess the SIJ</em>\n\nFryer (2005) <em>Factors affecting the inter-examiner &amp; inter-examiner reliability for supine medial malleoli asymmetry</em>\n\nGoode et al (2008) <em>3 dimensional movements of the SIJ </em>\n\nGurney  (2001)<em> Leg Length Discrepancy</em>\n\nHungerford et al (2003) <em>Evidence altered lumbo-pelvic muscle recruitment in the presence of SIJ pain</em>\n\nJacob, Kissling (1994)<em> The mobility of the SIJ’s in healthy volunteers between 20-50yrs</em>\n\nKasis et al (2008) <em>External fixator assisted acute shortening wit internal fixation for leg length discrepancy after retool hip replacement </em>\n\nKiapour et al (2012) <em>Relationship between limb length discrepancy &amp; load distribution across SIJ </em>\n\nKrawiec et al (2003)<em> Static innominate asymmetry &amp; leg length discrepancy in asymptomatic collegiate athletes</em>\n\nMcCaw, Bates (1991)<em> Biomechanical implications of mild leg length discrepancy</em>\n\nMcGrath (2004) <em>Clinical considerations of SIJ anatomy; A review of function, motion &amp; pain</em>\n\nMiddleton-Duff et al 2000,<em> The reliability and validity of the `Tape\' and `Block\' methods for assessing anatomical leg-length discrepancy</em>, Harcourt Publishers Ltd\n\nPel et all (2008) <em>Biomechanical analysis of reducing SIJ shear load by optimisation of pelvic muscle &amp; ligament forces</em>\n\nPreece et al (2008) <em>Variation in pelvic morphology may prevent the identification of anterior pelvic tilt </em>\n\nRichardson et al (2001) <em>The relation between the TVA, SIJ mechanics &amp; low back pain</em>\n\nSabharwal, Kumar (2008)<em> Method of assessing leg length discrepancy </em>\n\nSantaguida, McGill (1994) <em>The psoas major muscle; a 3 dimensional geometric study</em>\n\nSturesson et al (1999) <em>A radiostereometric analysis of movements of the SIJ’s during standing hip flexion</em>\n\nSuter et al (1999) <em>Decrease in quadricep inhibition after SIJ manipulation in patients with anterior knee pain</em>\n\nTakasaki et al (2008) <em>The influence is increasing SIJ closure on the hip &amp; lumbar spine extensor muscle firing pattern</em>\n\nVan Der Wurff et al (2006) <em>A multitest regimen of pain provocation tests as an aim to reduce unnecessary minimally invasive SIJ procedures.</em>\n\n<em>V</em>an Der Wurff et al (2000) <em>Clinical tests of the SIJ </em>\n\nVleeming et al, 2003<em>, Stabilisation of the SIJ in vivo: verifications of muscular contribution to force closure of the pelvic</em>\n\nVleeming et al (2012) <em>The SIJ: An overview of its anatomy, function &amp; potential clinical implications</em>\n\nWinderden et al (2003) <em>Stabilization of SIJ in vivo</em>\n\nWoerman et al (1984)<em> Leg length discrepancy assessment; Accuracy &amp; precision in 5 clinical methods of evaluation</em>\n\nWoodfield et al (2011)<em> Interexaminer reliability of supine leg checks for discriminating leg length discrepancy</em>\n\nWylde et al (2008) <em>Prevalence &amp; functional impact of patient perceived leg length discrepancy after hip replacement</em>\n\nWould you like to learn how to assess pelvic function?\n<a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics/\" rel=\"noopener\">REGISTER YOUR INTEREST HERE</a>','Pelvic Function Research Papers Simplified','','draft','open','open','','pelvic-function-research-papers-simplified','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1029',0,'post','',0),(1030,3,'2016-06-05 06:30:32','2016-06-05 06:30:32','','','','inherit','open','closed','','skele-pelvis','','','2016-06-05 06:30:32','2016-06-05 06:30:32','',1029,'https://biomechanicseducation.com/wp-content/uploads/2016/06/skele-pelvis.jpg',0,'attachment','image/jpeg',0),(1034,3,'2016-06-07 08:48:50','2016-06-07 08:48:50','<b>If you had been sitting beside me last week when I sent out the\n\"Why DON\'T You Read Our Emails?\" <a href=\"https://www.biomechanicseducation.com\">Juicemail</a> you would have probably wondered what the hell was going on!</b>\n\nThe constant ping of emails coming in responding to the SMALL PRINT would have probably driven you nuts, for me it was mind blowing!!\n\nSeriously I am stunned and humbled and so grateful to EVERY single one of you who took the time to reply….\n\n<i>Thank you for the chance to win a free 1 day workshop.  I loved your sessions at the Spin Convention in Blackpool and think you are almost the only one that keep sending information and e-mails, which I love! After studying for 2 years and not sorting things, I ended up with 1500 mails in my inbox...slowly but surely now I am getting my life back to normal and more organised. So yes, if the mail is too long I am now quick to just unsubscribe and move on.  Have to say, yours are always perfect to read as I move in between my appointments daily. Thank you for all the interesting reads, I am constantly learning and love it!</i>\n\nMH\n\n<i>Your emails keep me questioning my commitment to my professional development and my clients and that keeps me on my game!</i>\n\nRD\n\n<i>Read the small print lol. Love these emails they keep me motivated to learn more</i>\n\nDS\n\n<i>informative, educational, and easier and quicker to do than \'juicing\' in a blender!\nRead, absorb, practice….</i>\n\nSH\n\n<i>Love the emails thanks and will be booking onto courses soon!\nCheers</i>\n\nJT\n\n<i>Ha!  I do save them and read them in a block but I like to do that.\nWith doing cricket 6 days a week this term I have NO head space for anything else so with half term from tomorrow you know what I will be doing!\nLooking forward to catching up with them.</i>\n\n<i>Lots of love</i>\n\nTT\n\n<i>I love reading your emails! They are factual ground breaking information that helps and inspires me when I need it most! Please keep sending them out I receive nothing else quite like it.\nBest wishes </i>\n\nSD\n\n<i>I love your emails!\nI read, I share and I store for future reference!\nOne particular favourite was about the book Body by Science, which I bought and devoured! My husband has been following it and has recorded amazing results - I am constantly sharing little gems from the book to friends, clients and anyone who will listen! I think book sales have probably rocketed since your blog - you should get a commission!\nI hope to enrol on your coaching course in spring 2017 when I\'ve completed some further Pilates training this year.\nKeep it up - hugely inspirational and informative!</i>\n\nHL\n\n<i>I enjoy reading the emails – I’ve just proved it by even reading the small print!  Hope I win!</i>\n\nKW\n\n<i>Hi Rachel\nPersonally I love receiving your emails &#x1f60a;.\nI find them interesting and the articles very useful in improving my knowledge.\nI would love some information on becoming a biomechanics coach, and have a question: I noticed that the biomechanics coaches who have written articles are qualified in sports massage. Is this a qualification you recommend having before doing the biomechanics coach qualification? It is one I don\'t have at the moment.\nKind regards</i>\n\nAR\n\n<i>I enjoy your emails, they make me think about my daily practice and thanks for sending them.</i>\n\nRK\n\n<i>Absolutely love getting your mails … keep ‘em coming!</i>\n\nGPW\n\n<i>I try to read them as much as possible, some absolute gems of info and thought provoking content. :) </i>\n\nMC\n\n<i>Yes, I read the emails – it’s great to read about proper movement technique how different issues can be explored and fixed with biomechanices.  Please keep them coming.</i>\n\nJR\n\n<i>have not read a bad post yet, all very interesting thanks</i>\n\nD\n\n<i>I love reading <a href=\"https://www.biomechanicseducation.com\">“Juicemail”</a>, it is a quick and concise way to keep up to date. Keep ‘em coming and thank you!</i>\n\nSC\n\n<i>Hi Rachel, you send too many emails for me. One a week or even a fortnight I could cope with.Cheers</i>\n\nMS\n\n<i>i do read them. brief enough?</i>\n\nIC\n\n<i>Love your emails and philosophy x x</i>\n\nSB\n\n<i>Hi Rachel Yes I would miss reading the emails it\'s my bedtime reading!! Thxs</i>\n\nEC\n\nCongratulations to the Winner...\n\n<i>Hi Rachel,</i>\n\n<i>Very interesting timing!  I have red flagged your email ‘assumptions’ as I wanted to reply to it...but so far have just not had time!   I do read all your juicemails with interest (apart, I must admit, from the golf ones, where I try to be interested but loose it on the 5</i><i><sup>th</sup></i><i> paragraph of detail about swing and torsion!!).</i>\n\n<i>The more I have learnt over the years, the more confusing my job as an exercise teacher becomes.  It used to be short &amp; tight = stretch it    long and weak = strengthen it!   Now I realise there can be any combination of those issues, along with issues involving the nerves, psychological factors, all with many different ‘methods’ of help/intervention/relief.  How can I possibly know how to help when I am only an exercise teacher and there are so many possible ‘issues’ which I could make either better – or worse – during my classes?  So, is it a 50/50 chance of improvement?  Even if I did a 1:1 screening, would the rate of improvement be better?  How do we even define improvement? </i>\n\n<i>Minefield! </i>\n\n<i>I remember during FFY training, being in awe of Jayne Nichols when she said bravely “ I tell anyone with injuries to ‘Get Out of my class’!”  I could definitely not do that with my customer base, I would have nobody left!   Although I would love to do some ‘hard-core’ workouts, I have to learn to manage the injuries/restrictions/limitations that present themselves along with my loyal customers.</i>\n\n<i>I use a combination of many different approaches over the course of my pilates classes.  Gentle mobility – stretching – prickle ball release – anti spasms – and a variety of progressive strengthening exercises, in a bid to cover all bases.  I explain the benefits/pitfalls and hope that my customers will find something in the ‘toolbox’ that works for them.  The more I expose myself to different techniques and learn more, the deeper my toolbox becomes. </i>\n\n<i>I am lucky to have regular customers, allowing us to ‘trial’ different methods and then be around to see the effects.     But even gentle exercises can destabilise the fine balance of a body ‘coping’.  When releasing restrictions, we have to make sure we then give the body another means of support.  I regularly see emails/ articles advocating the 20/20 technique, describing how to release away all the restrictions, but with no mention of the ‘strengthening’ and toning which should follow up.  So even the gentlest intervention can be problematic.</i>\n\n<i>I used to wish I could be more precise, but now I am not sure that is either advisable, or possible.    Even if I know the exact issue a person is working with, I cannot predict how their body will respond to, or control the individual’s ‘performance’ of,  a given exercise.   How do I know an exercise won’t hurt somebody, worsen their condition or create new problems?  The answer is, I don’t, all I can do is add to that toolbox.</i>\n\nCongratulations CM!!\n\nYou highlighted some great points that I am sure many of us feel too!\n\nI will email you about claiming your FREE iMoveFreely®  Instructor workshop ;)\n\nAnyone who\'s reply and initials are posted above will also receive £100 credit towards one of our <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coach™ Diploma workshops 2016</a>/17\n\nOR\n\n£50 credit towards <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention sat 8th Oct 2016 Loughborough University.</a>\n\nThank you ALL!','Just Ridiculous!','','draft','open','open','','just-ridiculous','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1034',0,'post','',0),(1035,3,'2016-06-07 08:48:43','2016-06-07 08:48:43','','','','inherit','open','closed','','screen-shot-2016-06-07-at-09-48-25','','','2016-06-07 08:48:43','2016-06-07 08:48:43','',1034,'https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-07-at-09.48.25.png',0,'attachment','image/png',0),(1038,3,'2016-06-09 06:04:32','2016-06-09 06:04:32','<h2>How can you protect your clients against injury?</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-34808 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/06/IMG_7541-300x270.jpg\" alt=\"\" width=\"300\" height=\"270\" />\n\n&nbsp;\n\nThe way we exercise and work has changed in the last few generations. Our bodies were designed to be hunter/gatherers.  Our very physical make-up enables us to hunt, escape, harvest and gather by performing an almost unlimited number of movements like walking, running, throwing, bending, twisting and turning. As the technological revolution has enveloped our lives, these tasks are no longer necessary and our bodies have begun the process of de-conditioning in biomechanical terms. Problems then arise when we then ask our bodies to train in a gym in this biomechanically de-conditioned state; our bodies become adept at compensating for our biomechanical problems, like a rotated pelvis, leg length discrepancies, tight thoracic spines, stiff sciatic nerves and many others, which are significant factors in why we get pain despite being ‘fit’.\n<h2>Repetitive motion</h2>\nAn often unrecognised problem for us is that our training programmes are by their very nature repetitive.  Where our muscles were once responsible for performing a variety of different movements throughout the day, they are now performing, semi-static, repetitive movements when we work on our laptops or larger repetitive movements when we are in the gym.   The body does not respond well to repetitive movements; nerves in particular go through a process of de-conditioning.  De-conditioning is a mechanical phenomenon where the nature of structures (in this case, nerves) actually changes and as they do, your muscles go into a protective spasm.  Remember this is while performing exercises; this is another reason for us having pain despite being fit.\n<h2>Predisposition to injury</h2>\nWhen you look at Meeuwisse’s work in 1941, he showed that the injured individual is predisposed at a number of different levels. If you apply this to your clients when lifting weights and strength training, you can see the loop that they will commonly go through from pain to returning to training (and indeed working through pain).\n<h2>Injury Causation Factors</h2>\nAge, Somatotype, Previous Injury, Flexibility, Intrinsic Biomechanics\n\nPredisposed individual\n\nExercise\n\nExposure\n\nSusceptible\n\nInciting event\n\nInjury\n\nRehab\n\nThese same principles apply to you too.  If you do actually stop for a while to let your injury settle, even with therapy, you are still predisposed to injury if you are not correcting the biomechanical problems.\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34811 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/06/IMG_9501-300x221.jpg\" alt=\"\" width=\"300\" height=\"221\" />\n\n&nbsp;\n\nLet’s look at some more of the specific problems with repetitive movement:\n<h2>Joint loading.</h2>\nIf a joint is subjected to prolonged pressure when repetitive movements in your training are performed, the cartilage begins to lose its elasticity and therefore becomes vulnerable to damage, (Oleyede &amp; Broom 19942).  A biomechanically efficient joint will cope better.\n<h2>Tension, stress and relaxation</h2>\nTendons are visco-elastic in nature and are therefore subject to the mechanical phenomena of preconditioning, creep and hysteresis when subjected to repeated stresses and strains.  This means they will adapt to the loads being imposed upon them, but if they are unnatural loads or the technique is performed incorrectly they will adapt to the incorrect movements and over time this will increase their risk of injury.\n<h2>Muscle work</h2>\nHigh repetition work in training can lead to muscle fatigue and in some cases, Delayed Onset Muscle soreness (DOMS) and overuse syndromes.  DOMS is associated with increase in muscle tone and faulty excitation of muscle, (Janda 19833).   This phenomenon is termed \"The Calcium Paradox\".  In this state the muscle is no longer able to contract and relax properly which means the muscle is in spasm i.e. it cannot relax.\n\nIn a normal individual this chronic state is avoided because we naturally move giving the muscle a normal sensory input and allowing it to relax, if however we ignore the warning signs and continue to exercise in our training, the continual irritation of the now-shortened muscle leads to physical changes within the muscle6.  Up to 40% of muscle can be replaced in a shortened muscle by connective tissue (Tardieu &amp; Tarbary).  Once this occurs normal mechanics are no longer possible without biomechanical correction (Janda 19833).  This increases your risk of injury.\n<h2>Nerve tension</h2>\nNerve is visco-elastic in nature which means that the greater the velocity of stretch applied to your nerve then the less stretch is available and the greater the stress on the nerve.\n\nIt can be seen when a nerve is subjected to repeated stretching in training as it begins to react in an abnormal manner.  When a nerve is first stretched it begins to lengthen, but as the stress is removed and then reapplied, it reaches a certain point when repeated applications of stress cause no increase in nerve length.  Sometime after this point has been reached and if tension is continually removed and reapplied the nerve under stretch begins to show a greater resistance to elongation, (Barrow 19944).  This is similar to the mechanical concept of pre-conditioning found in other materials.  As the nerve becomes pre-conditioned, local muscles go into a protective spasm, which can cause pain and certainly compromises the quality of the movement you perform in your training.\n<h2>So what can you do?</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-34812 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/06/IMG_9026-300x214.jpg\" alt=\"\" width=\"300\" height=\"214\" />\n\n&nbsp;\n\nThere are key areas that you can work on to improve yours and your clients biomechanics:\n<h2>Reduction of muscle spasm associated with repetitive movements</h2>\nMuscle release exercises are designed to encourage the muscles in spasm to relax.  Studies by Ribot-Ciscar5 have established that a muscle relaxes maximally after it has been contracted sub-maximally and for a prolonged period.  So if you think one of your muscles is unduly tight or is not responding to stretching, then try low grade endurance isometric contractions of that muscle to release the spasm.  Contract the muscle for 20 seconds, using about 20% of your maximal contraction.  Repeat up to 4 times and then do this 3 – 4 times per day. iMoveFreely® will take you through this in more detail.\n<h2>Prevention of postural abnormality</h2>\nMany of your clients will have fundamental intrinsic biomechanical problems and these need to be addressed to have a good chance of their posture improving.  Even if they work on their posture, if they do not have the capacity to adopt and maintain good posture, that work is less likely to be effective.   Ensure they have good biomechanical foundations and their ability to adopt and hold a better posture will be enhanced.\n<h2>Nerve protection</h2>\nIn the gym we sometimes get ‘hung up’ on what type of stretching we should be doing; static, ballistic, dynamic etc.  But it has been shown that nerves can be at least as important as muscles; as a tight nerve can cause muscle and joint injuries.  So as part of your clients warm up and cool down, it’s helpful to mobilise your clients median and sciatic nerves in particular.\n\n&nbsp;\n\nMartin Haines\n\nSpecialist Biomechanics Coach&#x2122;\n<h2>References:</h2>\nMeeuwisse, W.,H., 1994, Clinical Journal of Sports Medicine 4 (3) 168\n\nOleyede &amp; Broom.  Complex nature of stress inside loaded articular cartilage.  Clinical Biomechanics 1994.\n\nJanda V. Muscle function testing.  London, Butterworths, 1983.\n\nBarrow N.  Recent advances in the use of robotic dynamometry - Measurement of Neural Tension.  European Isokinetic Congress 1994\n\nE. Ribot-Ciscar1, M. F. Tardy-Gervet1, J. P. Vedel2 and J. P. Roll1 Post Contraction Sensory Discharge.\n\n1. Laboratoire de Neurobiologie Humaine, Université Aix-Marseille I, URA CNRS, 372, Avenue Escadrille Normandie-Niemen, F-13397 Marseille Cedex 13, France\n\n2. Laboratoire de Neurosciences Fonctionnelles, CNRS-LNF3, 31 Chemin Joseph Aiguier, B.P. 71, F-13402 Marseille Cedex 9, France\n\n6. Edwards RHT.   Muscle fatigue and pain.  Acta Med Scand Supplement, 1987.\n\n&nbsp;\n<h1>Would you like to learn how to identify and correct these types of issues with your clients?</h1>\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">READ MORE HERE</a>','Repetitive Motion','','draft','open','open','','repetitive-motion','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1038',0,'post','',0),(1039,3,'2016-06-09 06:04:13','2016-06-09 06:04:13','','','','inherit','open','closed','','screen-shot-2016-06-09-at-07-03-49','','','2016-06-09 06:04:13','2016-06-09 06:04:13','',1038,'https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-09-at-07.03.49.png',0,'attachment','image/png',0),(1044,3,'2016-06-12 06:38:29','2016-06-12 06:38:29','Does Personal Training education give us skills to be ‘personal’ enough?\n\nThis is a topic I hear so often as a training provider in the fitness industry from PT’s and I want to explore it with you now.\n\nFirstly lets look at an example of the things clients ask of PT’s to understand what we is <i>expected</i> of us:\n\n•Lose weight\n\n•Tone up\n\n•Get fitter\n\n•Run faster\n\n•Gain muscle\n\n•Reduce body fat\n\n•Achieve a specific health or fitness goal\n\n•Motivation &amp; answerability\n\n•Learn why they hurt when they move and how to move better\n\nPT education does of course give you the ability to help clients achieve almost all of the above. Yet you see how I underlined the last line on the list, well this is the part that I think is one of the biggest challenges for any PT.\n\nThis point wouldn’t necessarily be an issue for PT’s if we were trained to understand how to assess and therefore PREPARE our clients bodies to move with BESPOKE exercise prescription designed for THEIR intrinsic set up. What I mean by this is that if we were trained to do simple neuro-musculoskeletal assessments simply for FUNCTION &amp; MOVEMENT capacity (which are the 3 sub systems of our clients INTEGRATED SYSTEM that our exercise prescription directly influences) we would have more confidence in which clients are actually our remit or which need to be referred to a clinician.\n\nOR\n\nIf they were set up with perfect intrinsic biomechanics when they came to us the chances are that this would never be an issue because we can simply apply all of our ‘extrinsic biomechanics’ correction techniques we are taught like “knees in line”, “back upright” or “head in line” for example.\n\nHowever exactly how many of our clients DO NOT have some kind of dysfunction, previous injury, poor posture, problem areas, stiff or aching joints that we, as PT’s, are more often than not told we probably shouldn’t be dealing with?\n\nBut we do take them on because if we didn’t we wouldn’t have any clients!\n\n<b><i>*Note: Just to be perfectly clear on this point, I am not suggesting for a minute you work with clients outside of your remit or that you are not insured to work with. </i></b>\n\nHaving read a few articles after googling <i>‘Top reasons for employing a PT’ </i>this point below stuck out for me in relation to the above;\n\n<b><i>6.</i></b><i> </i><b><i>Put the “personal” in your training </i></b>\n\n<i>A skilled trainer will assess your specific needs, injuries, health conditions or training goals (that 10km race you’re dreaming about, for example). The trainer will then develop a personalised plan with clear timelines and short-term achievement goals that will safely and effectively enable you to succeed.</i>\n\nAssess?\n\nSo what kind of assessment?\n\nWe are <i>trained </i>to go through verbal questioning and writing the answers on a ParQ - which, might I add, if the client did in fact tell us all of their aches, injuries or health conditions we are generally advised to refer them.\n\nHow many clients have none of these?\n\nHonestly?\n\nIt’s usually the previously injured, overweight, inactive people with biomechanical issues that ask for our help!!!\n\nAnd do you know what I find crazy?  ….we as PT’s are the ones <i>perfectly placed</i> to help these people should we possess the right skill set to have the confidence to do this, since we are the professionals they often see more than once a week, the one’s who are around the gym offering support even outside of sessions, also very often delivering their classes too since many of us are hybrids these days and surely <i>injury prevention</i> is better than cure - don’t you agree??\n\nSo What?\n\n(My favourite question) I was one of those fitness professionals who tried to ‘make’ clients keep their spine ‘neutral’ when squatting or keep their knees in line with their toes as i had been trained and I got frustrated when they did not do what I was teaching them, wondering how on earth they couldn’t do something as simple as keep there knees in line?… for gods sake!!\n\nThey also kept asking me\n\n<i>“what is the best exercise to help my back stop aching?”</i>\n\nErrrrr… go and see a therapist, I have no idea!?\n\nThe question I keep asking myself is;\n\nShould we as PT’s even be able to get any insurance for working one to one considering the rarity of those clients ‘technically’ within our remit or should PT education be more advanced?\n\nTricky considering most PT’s are demanding lower priced courses and more online learning, with less face to face education due to their low income and their need to be working as much as possible. In my experience no great knowledgeable PT is just a PT as they often realise the need for more information/skill’s to be able to truly PERSONALLY train someone confidently around all the issues they come to us with.\n\nBut this is just my opinion, whats yours?\n\nhttp://fashion.telegraph.co.uk/beauty/news-features/TMG11096954/Fitness-Truths-how-to-find-a-good-personal-trainer.html\n\nhttp://www.ideafit.com/fitness-library/benefits-of-a-personal-trainer\n\nhttp://www.freshvancouver.com/index.php?option=com_content&amp;view=article&amp;id=140:top-ten-reasons-to-hire-a-personal-fitness-trainer-&amp;catid=49:health&amp;Itemid=108\n\nBecome a confident PT\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Become a Biomechanics Coach™ </a>','Is Personal Training \'Personal\' Enough?','','draft','open','open','','is-personal-training-personal-enough','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1044',0,'post','',0),(1045,3,'2016-06-12 06:38:21','2016-06-12 06:38:21','','','','inherit','open','closed','','screen-shot-2016-06-12-at-07-37-45','','','2016-06-12 06:38:21','2016-06-12 06:38:21','',1044,'https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-12-at-07.37.45.png',0,'attachment','image/png',0),(1049,3,'2016-06-14 10:34:36','2016-06-14 10:34:36','Having read ALOT recently not only are my eyes hurting but I have once again been reassured that my own views are mirrored by other professionals, even when I get ‘trolled’ by others.\n\nWhile we demand Evidence Based Practice (EBP) to increase our confidence and to be our best and we also advocate research or data collection as a wise method of practice, ACTUALLY, when you really break it down, what is it that really matters?\n\nResults\n\nHappy Clients\n\nBetter Movement\n\nEducated Movement\n\nLess Pain\n\nHealthy Bodies\n\nConfident Practitioners\n\nConfident Clients\n\nTHIS might actually be achieved by stepping aside from what the evidence suggests, the research, the systems and methods you learned because YOU have a JUSTIFIED REASON for doing so based on the information YOU have or the feedback from YOUR client.\n\nNever under estimate YOUR ability, experience and expertise HOWEVER using EBP as a <i>platform</i> to base your decisions is still probably a smart starting point.\n\nDuring our Biomechanics Coach™ Diploma we require our learners to commit 12 weeks to working on case studies (at present I am thoroughly enjoying marking 9 reports). The whole point of this requirement is for individuals to self reflect on best practice FOR THEM, for THEIR CLIENTS and ALWAYS  to consider WHY they make each decision, giving JUSTIFICATIONS for them. It is this kind of practice that offers best <i>duty of care</i> and enables us to provide what our clients need for success in their goals.\n\nIf your INPUT results in achieving the desired OUTPUT when you are the professional with all the data, with the relationship with that client, who knows their motivators, their foibles, their options and their abilities then YOU are best placed to help them. If you feel you lack something then communicate with and/or REFER them to someone who has the skills or EDUCATE yourself further.\n\nThe more I have read research papers, articles and information relating to anything applicable, the more I have recognised the limitations of EBP as all of these guys also suggest….\n\n<strong>Robert Guntzberg </strong>\n\nhttp://www.helpinspire.org/DirectorProfile1.php\n\n(Former Chair of the European Spine Society) was right when he said that…\n\n<b>Evidence + Experience = Expertise</b>\n\n<strong>Dave Nicholls</strong>\n\nhttp://criticalphysio.net/2016/05/30/is-it-time-to-end-the-tyranny-of-evidence-based-practice/\n\n<strong>Trisha Parsons </strong>\n\nhttp://shoptalk.physiotherapy.ca/if-you-want-to-deliver-real-evidence-based-medicine-read-this/\n\n<strong>Todd Hargrove</strong>\n\nhttp://www.bettermovement.org/blog/2016/are-models-of-pain-accurate\n\n———————————————————————————\n\nBUT PLEASE do tell me what do YOU think?\n\nCome along and voice your ideas at an <a href=\"https://www.biomechanicseducation.com/workshop/iba-workshops-2/\">IBA Discovery Day workshop </a>\n\nSaturday 20th August\n\nLoughborough University\n\n10:00-2:00pm\n\n*INNER CIRCLE &amp; IBA members FOC\n\n*First time visitors FOC\n\n<b><a href=\"https://www.biomechanicseducation.com/workshop/iba-workshops-2/\">Non Members £40 </a></b>\n\n*Simply email your intention to attend and reason for attending to rachel@biomechanicseducation.com\n\n<a href=\"https://www.biomechanicseducation.com/workshop/iba-workshops-2/\">ALL ARE WELCOME!</a>','Evidence Based Tyranny...','','draft','open','open','','evidence-based-tyranny','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1049',0,'post','',0),(1051,3,'2016-06-14 10:33:46','2016-06-14 10:33:46','','','','inherit','open','closed','','screen-shot-2016-06-14-at-11-33-28','','','2016-06-14 10:33:46','2016-06-14 10:33:46','',1049,'https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-14-at-11.33.28.png',0,'attachment','image/png',0),(1052,0,'2016-06-14 10:34:25','2016-06-14 10:34:25','','','','inherit','open','closed','','screen-shot-2016-06-14-at-11-33-28-2','','','2016-06-14 10:34:25','2016-06-14 10:34:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-14-at-11.33.28-1-1.png',0,'attachment','image/png',0),(1054,3,'2016-06-16 06:05:09','2016-06-16 06:05:09','With half the limited seats already gone for this years AWESOME \'Movement Convention\' at Loughborough University it is countdown time for grabbing the ones that are left!\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention</a>\n\nSaturday 8th October\n\n9:00am-6:00pm\n\nLoughborough University\n\n£140 which includes NOT ONLY those previously mentioned; this fantastic lot...\n\nBen Coomber\n\nStephen Aish\n\nTom Waldron\n\nBut also.....wait for it...\n\nThe flippin\' awesome Brendan Chaplin YESSSSSSSS!\n\nBrendan owns the industry\'s first and only REPS L4 S&amp;C qualification. Having known Brendan for over 6 years and having him previously present at TMC in 2014, we are REALLY excited to tell you he is going to be in our line up for TMC16 giving YOU yet more high quality gripping content!\n\nOur very own cool and compelling, Mike Grice!\n\nThis modest and astoundingly knowledgeable professional gives you masses of fabulous information in a beautifully simply manner. (Biomechanics Coaches™ you need to attend this one!!)\n\nThe fantastic fight guru, Fletch!\n\nHaving completed one of his bucket list items this year and travelling half way round the world to Australia he is generously offering his precious time to present to YOU this year too!\n\nAlso the sizzling &amp; massively popular Mairi Taylor who\'s FABulous brand is scorching the industry with LOADS of amazing content about Juicing AND her FAB JUICEBAR will also be available again!\n\nThere is as always the free un-beige lunch, goodie bag and a promise of an electric atmosphere of \'knowledge bomb dropping\' for a breathtaking 8 hours!\n\nIf you miss this you WILL kick yourself because these people are all dominating the industry and with the focus of TMC being quality content all packed into one amazing day\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">BOOK TICKETS HERE</a>\n\nThe lecture content is Coming Soon!\n\nBiomechanics Coaches™ don\'t worry Martin Haines has been booked for your annual Training Camp Friday 7th Oct. This private facilitation session will give you the experience of witnessing the expertise that he is renowned for and that you all enjoy so much.\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">BOOK NOW!</a>','OMG CONFIRMED!!','','draft','open','open','','omg-confirmed','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1054',0,'post','',0),(1055,0,'2016-06-16 06:04:58','2016-06-16 06:04:58','','','','inherit','open','closed','','screen-shot-2016-06-14-at-11-27-18','','','2016-06-16 06:04:58','2016-06-16 06:04:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-14-at-11.27.18-1.png',0,'attachment','image/png',0),(1057,0,'2016-06-16 06:05:57','2016-06-16 06:05:57','','','','inherit','open','closed','','screen-shot-2016-06-12-at-07-37-45-2','','','2016-06-16 06:05:57','2016-06-16 06:05:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-12-at-07.37.45-1-1.png',0,'attachment','image/png',0),(1060,3,'2016-06-20 05:05:32','2016-06-20 05:05:32','Did you know stretching might be the worst thing you could do for a ‘short’ muscle?\n\n(Another past article for those who missed it and those who have asked for it!)\n\nEver heard of sub-clinical muscle spasm?\n\nNo me neither until I became a Biomechanics Coach™ and now I see 95% of my client base has sub-clinical spasm as oppose to what I previously would have assumed were \'tight\' muscles - how do I know? Ok bear with me I will get to that bit but first lets talk about what sub-clinical spasm is..\n\nLifestyle compensations\n\nWe have come from a lifestyle of being hunter gatherers but over the last 50 yrs we have seen the most dramatic evolution in our lifestyles to date with the advancements in technology\n\nOur bodies are trying to adapt to our changing lifestyles by putting muscles into different states to compensate for the fact we aren’t using them in the way we are have done in the past.\n\nEvidence suggest that our muscles are gradually going through different states of compensation prior to them actually becoming what we know as ‘tight’.\n\nWhat is it?\n\nSub-clinical spasm is the first state that more often than not we are completely unaware of. This state is a protective mechanism trying to look after a vulnerable joint, for any amount of reasons, and is easily addressed by performing an anti spasm exercise.\n\nIf unaddressed the muscle starts to become fibrotic and (research tells us about 40% of the muscle can become fibrotic) this can potentially also be addressed by using an anti spasm exercise.\n\nif still un-addressed the muscle will finally start to become ‘tight’ which is like a more ligamentous state and requires a more aggressive exercise like stretching or sports massage. The stretching debate is something I am reading around at the moment so when I have more to report I will write about that.\n\nSo you want to know what this anti-spasm exercise is now don’t you? Let me tell you its gold dust and a badly kept secret amongst all Biomechanics Coaches™, iMoveFreely® Instructor and their clients\n\nLess is more..?\n\nIf you consider that tightness requires more aggressive exercises like stretching or sports massage then it might be obvious that using a low grade 20% contraction just wont change it.\n\nSo all we need to do is identify which state the muscle is in to be able to safely address the compensation.\n\nThe problem with this is that this is virtually impossible even with EMG equipment, let alone without it.\n\nHow do I know..?\n\nThe most effective method would be to do a biomechanical assessment, perform the safest option of exercise (anti-spasm) then re-test. If there is a change you can safely assume the muscle is in spasm and so continue using this exercise. If after a couple of weeks of using the anti spasm nothing has changed then we can probably assume it needs a more aggressive technique to release it.\n\nIt is so simple anyone can do it!! It takes just 20% effort - (when do we ever do something with 20% eh?). Imagine a muscle in sub-clinical spasm is like a rope with knot in it and to stretch it could make it worse as it tries to hold on protecting the joint.\n\nClick here to see previous blog for a screen that you could use to pick this up\n\nHow to do it..?\n\nWhat does an anti-spasm look/feel like? It is a muscle contraction held at 20% effort for 20 seconds and evidence tells us if we do 4 repetitions, 4 x daily for a period of up to 6 weeks this can give the muscle the ability to fully contract and relax again.\n\nOf course this needs to be combined with addressing the reasons for being in this state as well (lifestyle) and some conditioning exercises (strength work) but its effect can work like magic on muscles you may have been stretching for weeks or even months and experiencing no change.\n\nWhere did it come from..?\n\nThe anti-spasm has been tried and tested in a study by Ribot-Ciscar et al to understand its effect on muscle spindles and releasing a muscle (Ribot-Ciscar, 1991) and Jiri Dvorak, Director of FIFA Medical Centre of Excellence (HQ Zurick) reported to have replicated the research and got corresponding results.\n\nReference:\n\nRibot-Ciscar, 1991, Post-contraction changes in human muscle spindle resting discharge and stretch sensitivity\n\nhttp://www.ncbi.nlm.nih.gov/pubmed/1836997\n\nDo you teach groups?\n\nDo you teach one to one?\n\nDo want to learn more about this technique to help your clients/participants?\n\n<a href=\"https://www.biomechanicseducation.com/imovefreely/\">CLICK HERE FOR MORE</a>','Worst Kept Secret In Our Industry ','','draft','open','open','','worst-kept-secret-in-our-industry','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1060',0,'post','',0),(1061,0,'2016-06-20 05:05:25','2016-06-20 05:05:25','','','','inherit','open','closed','','img_0065-2','','','2016-06-20 05:05:25','2016-06-20 05:05:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/06/IMG_0065-1.jpg',0,'attachment','image/jpeg',0),(1064,3,'2016-06-22 08:17:58','2016-06-22 08:17:58','<b>Belt or no belt?</b>\n\nA brief one to discuss this commonly asked, often controversial, question.\n\nIt can be a confusing subject and I would suggest you do what you feel is right for you however in McGill’s book <i>‘Ultimate Back Fitness &amp; Performance’</i> he explains what some of his research demonstrated:\n\n1). <i>Those who have never had a previous back injury appear to have no additional protective benefit to wearing a belt\n2). Those who are injured while wearing a belt seem to risk a more severe injury\n3). Belts appear to give people the perception they can lift more and may enable them to lift more\n4). Belts appear to increase intra-abdominal pressure and blood pressure\n5). Belts appear to change the lifting styles of some people to either decrease loads on the spine or increase the loads on the spine\n6). But for athletes there is no question that belts add stiffness and assist to move more load</i>\n\nIn summary considering the pros and cons it would probably not be advisable for healthy amateur lifters to wear a belt during routine exercise. However the temporary use of belts may help some individuals return to \'normal\' lifting capabilities after injuries. Extreme athletic lifters use belts to move more weight in their sporting discipline NOT for enhanced health.\n\nMany will use a belt for one of these reasons\n\n•    They have seen others wearing them and assume it’s a good idea\n\n•    Their back is sore and they believe the belt will help\n\n•    They want to lift more and feel the belt will help achieve this\n\nNone of these reasons are consistent with what the literature states or for the aim of good health. If you want to lift a few more kilos then wear a belt BUT if you want to improve and \'groove\' your own motor programming strategy and a stable trunk, then it’s probably a good idea NOT to wear a belt.\n\n<b>COMING SOON! - The Squat Part 6 - The Conclusion</b> <b>&amp; References</b>\n\nDon\'t worry if you have only just joined the Juicemail you can find all the previous Squat Articles Parts 1-4 by following these links ....\n\n<a href=\"https://www.biomechanicseducation.com/the-squat-part-46/\">Part 4/6 The Foot </a>\n\n<a href=\"https://www.biomechanicseducation.com/the-squat-part-36-re-released-by-request/\">Part 3/6 The knee</a>\n<a href=\"https://www.biomechanicseducation.com/the-squat-part-26/\">Part 2/6 The Spine</a>\n<a href=\"https://www.biomechanicseducation.com/the-squat-part-1/\">Part 1/6 The Pelvis</a>','The Squat Part 5/6','','draft','open','open','','the-squat-part-56','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1064',0,'post','',0),(1065,0,'2016-06-22 08:17:06','2016-06-22 08:17:06','','','','inherit','open','closed','','screen-shot-2016-06-22-at-09-16-39','','','2016-06-22 08:17:06','2016-06-22 08:17:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-22-at-09.16.39-1.png',0,'attachment','image/png',0),(1067,3,'2016-06-24 06:01:28','2016-06-24 06:01:28','With over half the limited seats already gone for this years AWESOME <a href=\"https://www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/events/tmc16/\" rel=\"noopener\"><strong>\'Movement Convention\'</strong></a> at Loughborough University it is countdown time for grabbing the ones that are left!\n\nThe line up is complete and I can barely contain myself!\n\nCHECK THIS OUT…\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\" data-cke-saved-href=\"https://www.biomechanicseducation.com/events/tmc16/\"><strong>Saturday 8th October</strong></a><a href=\"https://www.biomechanicseducation.com/events/tmc16/\" data-cke-saved-href=\"https://www.biomechanicseducation.com/events/tmc16/\"> </a>\n\nIf it is not in yet PUT THIS DATE IN YOUR DIARY NOW….\n\nStarting with the controversial but very cool <strong>Ben Coomber </strong>of Body Type Nutrition, who has offered to come along and share some of his health and nutrition knowledge bombs with you all.\n\nHE’S BACK!! our good friend <strong>Brendan Chaplin</strong> was a debut TMC14 presenter. Brendan has literally set the industry on fire with the very first REPS L4 Strength &amp; Conditioning mentorship course.\n\n<strong>Mike Grice</strong><strong>, </strong>with his superb delivery skills as always, is going to be bringing some new evidence based ideas for us ALL to think about.\n\nThe very passionate, <strong>Mairi Taylor</strong>, will not only be offering her FABulous juice treats ALL day, she will also grab your attention in this session.\n\n<strong>Tom Waldron</strong> is one to watch! He is making waves in the industry educating us on visualisation techniques from the Franklin method.\n\nTHE fantastic BODY MECH, <strong>Fletch</strong>, is getting personal with his session…come and find out!\n\nMy own personal strength and conditioning coach, the BOSS <strong>Stephen Aish</strong>, will share his skills on mindset.\n\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" data-cke-saved-href=\"https://www.www.biomechanicseducation.com/events/tmc16/\" rel=\"noopener\">BOOK TICKETS HERE</a>\n\nWhat do you get for the ticket price of just £140?\n\nMinimum of 7 content packed sessions from industry leaders\n\nFREE healthy lunch\n\nFREE Goodie bag\n\nFREE FABulous juicebar all day with Mairi Taylor\n\nFREE Coffee with the lovely <b>Sheryl Mchale</b>\n\nFREE Filtered water with everyones buddy <b>Matt Grice</b>\n\nThe chance to win <b>Tim Drummond’s</b> new book - coming soon!\n\nAmazing networking opportunities to take you, who knows where!\n\nBUT WAIT….. ARE YOU a Biomechanics Coach™?\n\n..well there is even more in store for YOU guys!!\n\nLOOK…\n\n<strong>Friday 7th October</strong> 1:00-5:00pm\n\n(*Biomechanics Coaches™ ONLY &amp; as part of your <a href=\"https://www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/events/tmc16/\" rel=\"noopener\">TMC16 £140</a> ticket price)\n<strong>IBA Members all this for just £100\nINNER CIRCLE members all of this FREE </strong>\n*Open to those working towards their diploma\n\nYou cannot miss <strong>Chris Wright</strong> of <a href=\"http://www.level10living.co.uk\" data-cke-saved-href=\"http://www.level10living.co.uk\">www.level10living.co.uk</a> who will be teaching you how to earn more money as a Biomechanics Coach™ but for less hours!!\n\nThis fantastic young business/marketing guru has lived and breathed it and I am so excited to have him coming along to speak to you. He has been where you are but is now living the dream and has offered to share with you how he did it.\n\nAND\n\nYes the main man himself and founder, <strong>Martin Haines</strong>, has been reserved for a facilitation session of challenging tasks to stretch your Biomechanics Coaching™ imagination to another level!\n\nAND\n\nTo share the brand new evidence based foot screening system that will be updating your skill set to the very latest level.\n\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" data-cke-saved-href=\"https://www.www.biomechanicseducation.com/events/tmc16/\" rel=\"noopener\">BOOK TICKETS HERE</a>\n\nFinally if anyone would like to join us for dinner Friday 7th (at your own expense) please confirm in an email to <a href=\"mailto:rachel@biomechanicseducation.com\" data-cke-saved-href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>. More details coming soon.\n\nDo you plan to make a WEEKENDER of this event?\n\nWe have an allocation of 45 bedrooms on hold for you at <strong>Burleigh Court</strong> on the university campus so walking distance to all the sessions over the entire weekend.\n\n<strong>Double Exec for Sole Occupancy</strong> - £77 including VAT per room\n\n<strong>Double Exec for Double Occupancy</strong> - £87 including VAT per room\n\n<strong>Lodge for Sole Occupancy</strong> - £56 including VAT per room\n\nTo obtain these special TMC16 rates please use the reference number <strong>259233 call </strong>Sean Perkins on 01509 633091\n\nHave I said this already....?\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/events/tmc16/\" rel=\"noopener\">DONT MISS OUT BOOK NOW!</a>\n\n&nbsp;','Well I Could Literally Explode!','','draft','closed','closed','','well-i-could-literally-explode','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1067',0,'post','',0),(1068,0,'2016-06-24 06:01:19','2016-06-24 06:01:19','','','','inherit','closed','closed','','screen-shot-2016-06-24-at-06-59-44','','','2016-06-24 06:01:19','2016-06-24 06:01:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-24-at-06.59.44-1.png',0,'attachment','image/png',0),(1072,3,'2016-06-26 05:20:08','2016-06-26 05:20:08','Several years ago we had a young triathlete/PT along to one of our workshops. He then went on to do our sports massage course along with his wife, who was also a PT. Together they owned a small independent gym in Dronfield, Sheffield called <a href=\"http://www.woodlandsfitnesscentre.co.uk/corrective-exercise\">Woodlands Fitness Centre</a>.\n\nThen Matt Sanderson asked if we would deliver a private Biomechanics Coach™ Diploma for his entire team at his gym and so it all began with Pelvis Biomechanics in August 2014…\n\nThe 9 x strong team who are all PT’s, massage therapists and group ex instructors work together delivering a fluid system that really is second to none and, in my opinion, exactly how ALL gym facilities should run when it comes to the way they communicate with each other and also the way they deliver their services.\n\nWith pretty much everything included within the membership; compulsory biomechanics screening and 1:1 training from fully qualified staff with diverse skills that allow best duty of care to each member. The inter referral system really is of a high standard.\n\nEach member of the team specialises in either PT, group ex, nutrition or massage but ALL of them are now fully qualified Biomechanics Coaches™. The Biomechanics Coach™ model is what seems to have cemented their connection and was the missing link which has allowed an even smoother system of cross referral and communication.\n\nWhat has struck me most about this group is not only the bond and respect between them all but the quality and efficiency in their service to their members who receive the highest standards possible.\n\nTheir members really do come first.\n\nWith all of their case studies successfully completed they can now be recognised as the largest group of fully qualified Biomechanics Coaches™ working together under one roof in the UK.\n\nEach time I have visited their facility I have noticed more and more how they excel at what they do and how Matt has created possibly one of the best clubs in the UK. With organised workshops to educate members, exciting events to encourage members to create goals, a brand new display board each visit, iMoveFreely® classes, inductions, systemised training, exercise plans with bespoke prescription, online client monitoring system, every member known by name and this beautiful fluid system of communication between everyone that results in a confident team effort that is all about looking after members and each other.\n\nWhile this might be classed as a ‘small family run’ gym I still feel the core ethos Matt has developed is how ALL gyms should run their services and the proof is in the client retention and staff turnover.\n\nHaving delivered each workshop at Woodlands myself I have to say this was a real pleasure for me and then over the last few weeks reading their case studies confirmed the level of this group. The TEAM strength is what makes the difference and I can imagine how much job satisfaction it would bring to be a part of TEAM Woodlands!\n\nAre you faced with the challenge of bringing a team together?\n\nWould you like to know more about how to find the missing link for your team?\n\nDo you want to get ahead of the game at your facility?\n\nEmail rachel@biomechanicseducation.com\n\nor\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">READ MORE</a>','Largest Team of Qualified Biomechanics Coaches™ ','','draft','closed','closed','','largest-team-of-qualified-biomechanics-coaches','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1072',0,'post','',0),(1073,0,'2016-06-26 05:19:58','2016-06-26 05:19:58','','','','inherit','closed','closed','','screen-shot-2016-06-26-at-05-52-50','','','2016-06-26 05:19:58','2016-06-26 05:19:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-26-at-05.52.50-1.png',0,'attachment','image/png',0),(1077,3,'2016-06-28 08:28:11','2016-06-28 08:28:11','...is presenting at <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention Saturday 8th October</a>??\n\nYEP I sure did my Juicy Friends!!\n\nSo just incase you have been hiding under a rock or taking time out from social media and hadn\'t heard...\n\n\"BEN COOMBER is presenting at <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention Saturday 8th October!!</a>\"\n\nSo you KNOW that I am excited about his presence and if you are still wondering WHY then you need to get your self booked in to one of the remaining seats to access time with this dude!\n\nSeriously this is deliberately an intimate event to allow you to get up close and personal with industry leaders like this very cool, smart (and handsome) young man.\n\nPersonally I have followed Ben\'s nutritional advice for a few years now and we have rubbed shoulders at events and both recognised that our communities are the same people.\n\nYOU!\n\nFor this reason we are starting to form a close collaboration now to look after YOU even more! The idea being that we recognise that value BOTH of our academy\'s can bring to trainers, coaches and athletes like YOU!\n\nSo this <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">Saturday 8th October </a>at the stunning Loughborough University I have managed to book YOU an hour of Ben\'s time so he can share some of his methods and ideas with all of you.\n\nStill not booked your seat yet????\n\nC\'MON or you will kick yourself because once all of those seats have gone, they are gone!\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">BOOK HERE NOW</a>\n\nThis is the first in a series of Juicemail\'s coming your way over the next few weeks that will be informing you all about each one of the 7 fantastic presenter\'s lined up for this amazing annual event.\n\nAND\n\nAll of the additional goodies INCLUDED in your ticket price as well as the CONTENT packed sessions...\n\nComplimentary Healthy Un-Beige Lunch\n\nAwesome Goodie Bag\n\nFABulous FREE Juicer with Mairi Taylor\n\nCaffeine Fans Coffee Bar with Sheryl McHale\n\nFine Filtered Water with Matty Grice\n\nStill not clicked...??\n\nBOOK HERE NOW\n\nP.S. Watch out for an superb article about dieting coming soon from one of Ben\'s team...Tom Bainbridge!\n\nBen Coomber is a performance nutritionist (BSc, ISSN) speaker and writer. Ben run’s Body Type Nutrition, an online nutrition coaching company that also runs a multi-level 2-20 month online nutrition course, the BTN Academy. Ben has the UK’s #1 rated health and fitness podcast on iTunes ‘Ben Coomber Radio’ with regular Q&amp;A’s and expert interviews. Connect with Ben over on Facebook, Twitter, YouTube, or Instagram.\n\nFor everything else visit: <a href=\"http://www.bencoomber.com\">http://www.bencoomber.com</a>\n\n&nbsp;','Did I Say Ben Coomber .....','','draft','closed','closed','','did-i-say-ben-coomber','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1077',0,'post','',0),(1078,0,'2016-06-28 08:28:04','2016-06-28 08:28:04','','','','inherit','closed','closed','','new-profile-pic-green','','','2016-06-28 08:28:04','2016-06-28 08:28:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/06/new-profile-pic-green-1.jpg',0,'attachment','image/jpeg',0),(1083,3,'2016-06-30 08:11:26','2016-06-30 08:11:26','My friend Steve Whittle has been a great contact in the industry for many years now and more recently as a client.\n\nAs he was connected to the PureGym group he recently asked if I would do him a favour and introduce our education programme to 4 x East Midlands PureGym PT teams.\n\nThe mini workshop attracted 35 of the self employed PT’s to leave their paying clients for a couple of hours to step into the learning environment with me and my team and see what they could pick up and learn to further help their clients movement ability and recurring injuries.\n\nSo I called in a couple of the team, Chris Kitson &amp; Mairi Taylor. Both long term Biomechanics Coaches™ with years of experience in teaching and presenting. Between us we were able to facilitate this massive group of inquisitive exercise professionals.\n\nWe discussed A&amp;P and muscle spasm with Kyle, Sam and AJ. Ricardo corrected my extrinsic biomechanics and Mia let us assess her length length. Jay and Greg tried the muscle release techniques and in fact everyone took part in some way which made the session great fun and super dynamic!\n\nThe skills we introduced them to are ones they would be able to use immediately when they returned to their clubs, to impress and attract new clients and also to understand their present clients movement capacity better.\n\nAfter a conversation with manager, Josh, we are now really excited to be putting plans into place for an PureGym In-House Fast Track Biomechanics Coach™ Diploma.\n\nWhat a great group of people though and what a joy to be able to call days like this my job!!\n\nWould you like to host a mini workshop like this one for your team?\n\nEmail me now; rachel@biomechanicseducation.com','PureGym PureFun!','','draft','closed','closed','','puregym-purefun','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',0,'https://www.biomechanicseducation.com/?p=1083',0,'post','',0),(1084,0,'2016-06-30 08:11:20','2016-06-30 08:11:20','','','','inherit','closed','closed','','screen-shot-2016-06-30-at-09-11-02','','','2016-06-30 08:11:20','2016-06-30 08:11:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-30-at-09.11.02-1.png',0,'attachment','image/png',0),(1087,3,'2016-07-04 12:58:28','2016-07-04 12:58:28','Mark is not only a Specialist level Biomechanics Coach™ but also one of our UK leading Education Provider, Master Trainers.\n\nThis nomination is in recognition of his outstanding professionalism and superb delivery of our education programmes in Liverpool!\n\nHere he shares his story...\n\nBiography in Brief\n\nI started my fitness career after leaving the military in 2007; I instantly loved it and threw myself right into it, which put me in a position to open a studio in 2009. Since then I have worked from the studio as a Personal Trainer and Biomechanics Coach™. At the studio we follow my method of MOVE-EAT-TRAIN SUSTAIN and the biomechanics assessments are pretty much the first thing that every new client will do, Biomechanics Coaching™ underpins each client’s training right from the first session.  As well as the work from the studio and within Merseycare NHS Trust creating and delivering physical health projects for a wide variety of mental health units and the local community.\n\nWhat made you choose Biomechanics Coaching™?\n\nI had done a lot of educational courses and research to try and improve how I trained and helped my client’s before choosing Biomechanics Coaching™. I had recognised that pretty much every client that came to me were not “physiologically perfect” and I could see how this would influence their movement and in turn, either had or could lead, to issues and injuries. I found that everything that I was learning could be applied with clients at the appropriate times but there was nothing that just pulled everything together as I was finding unanswered “gaps” in everything that I was learning, which I started to find frustrating. I came across an advert for the Biomechanics Diploma ™ and after a couple of conversations with Rachel I was intrigued. After the first 10 minutes of my first workshop I knew I was in the right place!\n\nWhat do you specialise in outside of Biomechanics Coaching™?\n\nTo my clients I’m a Personal Trainer but where I specialise is coaching lifestyle changes to improve quality of life though physical activity, which I realise, is what we all do to some degree! I just make it clear to my clients that whatever their goals are that I am there to facilitate the changes no matter how big or small and only by doing that will they achieve their personal goals and sustain them. Because of my work at studio and in the NHS I have an extremely diverse client group, so improving someones quality of life through physical activity can range from engaging with people for weeks and sometimes months just to get them to even considering exercising, to training people for expeditions and marathons. The outcome is relative to the client but being part of their journey and seeing how far they have come, to me, is thrilling!\n\nWhere would you like to see yourself ten years from now?\n\nI’d like to be a more involved in the education and career development of Biomechanics Coaches™ and other fitness professionals. Along with that I’d like to develop a hub for a network of Biomechanics Coaches™ and Trainers here in the North West.\n\nWhat would your advice be to anyone thinking of becoming a Biomechanics Coach™?\n\nSimply.. just do it!\n\nMy experience is that it’s a real “through the looking glass” moment once you start with Biomechanics Education and often it will challenge you, and possibly some of your long held beliefs, but your come out of it the other end on a completely other level as a fitness professional. So do it, keep you mind open and your notepad and pencil handy!\n\nOn your journey to where you are now what have been you achievements?\n\nPersonal\n\n(Cheesy comment alert)… The achievement of just being happy! Often we are dealt a hand in life that you either didn’t want or expect, it’s what you make of it that matters, if you can still smile along the way then you achieved a lot.\n\nSporting\n\nThe one that stands out the most was an ultra-marathon; it was to commemorate the 65th anniversary of the operation to capture Pegasus Bridge. We ran the route that the gliders took from RAF Tarrant Rushton in Dorset to Bénouville in Normandy. It took me 14 hours, it was an amazing event and  we managed to raise funds for a memorial to be placed there remembering every member of the unit involved in the operation, of which there were only 4 still alive.\n\nCareer Highs\n\nI trained a team to run 5 marathons in five days, none of them would of described themselves as runners prior to taking this on, in fact on the first team run (3 miles) only 3 of the 8 managed to get all of the way around without walking. I spent 10 months training the team and by the end of the training and the event they had not only changed physically but most had changed in other ways that had further reaching positive impact on their lives, we are also became and still are really good friends.\n\nTell us a secret or something interesting about you that not many people know about?\n\nMost mornings I start the day with a cold shower. I started doing this a few months before an expedition to Greenland, I felt that my life was getting a little bit too comfortable and I wanted to introduce so minor hardships, this was one of them and it stuck. I would recommend giving it a try, you do actually get sort of used to it after a few days and if you need to be sharp for an early morning meeting this defiantly gets you into focus quickly!\n\nBrief Case Study\n\nI was working with a 28 year old female client who was a teacher. Due to pain in her knees she had gone from running and exercising 4-5 times a week to now struggling to get though a full day at work due to her job requiring her to be standing most of the day, this was having a major impact on her quality of life. Following an assessment and with the prescription of some anti-spasm exercises she had reported a significant reduction in the pain in her knees within 4 weeks while in work. Within 3 months I had her back in the gym following an exercise programme, which was her main goal.\n\nDO YOU WANT TO LEARN WITH MARK?\n\nWebsite: <a href=\"http://banhus.co.uk/classes/biomechanics-trainer-workshop/\">www.banhus.co.uk</a>\n\nContact: mark@banhus.co.uk','Mark Blower is Biomechanics Coach™ of the Month July!','','draft','closed','closed','','mark-blower-is-biomechanics-coach-of-the-month-july','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1087',0,'post','',0),(1088,0,'2016-07-04 12:58:19','2016-07-04 12:58:19','','','','inherit','closed','closed','','banhus-mark','','','2016-07-04 12:58:19','2016-07-04 12:58:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/07/Banhus-Mark-1.jpg',0,'attachment','image/jpeg',0),(1093,3,'2016-07-08 10:20:19','2016-07-08 10:20:19','Cat Booker is a fantastic Biomechanics Coach™, amongst other things, and has been contributing to the improved performance of skiers. Here she shares her experiences.....\n\n<strong>Ski Biomechanics - Race Training:</strong>\n\n<em>I am Cat Booker, and I work as a personal trainer and advanced Biomechanics Coach</em>™<em>, as well as being a fitness presenter and master trainer for some U.K. and International brands.  </em>\n\n<em>Last November I spent one week working with top-level BASI Ski Trainers who work in Espace Killy, France.  How did I get the gig?  I have known one of the Directors, very talented skier and trainer Martin Jeffers, for 14 years having met him when I was working in the Three Valleys, France as a Sports Massage Therapist and Chalet Host. We have been firm friends since and followed each others progression in our careers.  So there is some background.</em>\n\n<em>Skiing and me go back a long way, and I have been very lucky to ski with some fabulous ski coaches and someone from Team GB. Anyway, let\'s move on from the name dropping, I love skiing.  I have always wanted to get involved in ski training in some way and this bright idea of mine and Martin\'s just took off.  Now, Martin runs BASS (British Association of Skiers &amp; Boarders).</em>\n\n<strong>What Was The Week About?</strong>\n\n<em>The objective of the week was to work with the trainers who were putting the ski racers through daily training, to identify technique issues that the ski trainers were looking at from an extrinsic point of view.  As intrinsic biomechanics study is my background, coupled with my extrinsic, functional assessment experience, we were looking to identify ways of improving the trainees movement to be better racers, technically, and to get faster!</em>\n\n<em><span style=\"color: #000000;\">\"To be honest, with what Cat was noticing in the trainees individually and the functional tests also helped the guys see the difference in their fitness compared to others, and some light-bulbs were going off I can tell you. This type of assisted training from another coach off the hill is unheard of in these training camps at the moment, and we were certainly the talk of the training piste that week.  The funny thing is the lads were expecting to be smashed by a physical trainer; but it was quite the opposite and was amazing\".  </span></em>Martin Jeffers - Trainer and Director of BASS MVT.\n\n<strong>Who were the trainees?</strong>\n\n<em>The all male group of trainees varied from the age of 19 years to the mid-thirties, and their goals vary within the industry, but essentially they had exams to pass, and one of which is bespoke to being able to teach in France, the Super G - speed test.</em>\n\n<strong>What happened during the race week I was there?</strong>\n\n<em>I could wax-lyrical about the great days on the piste watching the training, and the racing, including their final day of each training week, which always finishes with a gated slalom race experience. </em>\n\n<em>This means they all have to warm-up, mentally prepare, wear the race suits, have prepped their kit, food, and their study of the course before they set off for three goes and a best time</em>.\n\n<em>Every morning was an early start and all coaches got the first train through the mountain to the glacier. The gates would be skilfully laid out on the allocated pistes, after the queue for the ticket booking which the trainer had to secure the night before came through.</em>\n\n<em>The gates were left overnight on the mountain, secured in bundles in allotted spots. The race trainees would be up the hill about an hour later, ready to do warm-up runs, have skills and drills training, and then the would observe the course by snow-ploughing nearby the gates and chatting with the trainers about their focus for the day, and everyone was filmed.</em>\n\n<em>A picnic lunch (to keep the budget down for them) and then a 2pm departure as it tends to get a bit warm and everyone has trained enough by then.  This is where I came in.</em>\n\n<strong>Where did biomechanics and getting functional fit in?</strong>\n\n<em>A week is not a long time with a group size of 12, but it is enough.  </em>\n\n<em>There were trainee worksheets, pre-planned intrinsic assessments, and extrinsic functional tests to study.  The group assessments included partner work and group analysis where the guys would go through the intrinsic biomechanics protocol, as well as be filmed and observed jumping and on landing, including Mike Grice inspired work after attending the Convention last October</em>.\n\n<em>Thank you Mike!</em>\n\n<em>The agenda for the week started with their assessments, and everyone\'s case study sheets were updated, discussed with the trainers, and their notes incorporated in terms of what the racers had to achieve, and I was there to suggest how dysfunction could be holding them back. I took them through mobility and anti-spasm exercises, and some of the instant results were incredible.  We focused in small sub-groups on specific areas where the guys had similar needs, like tight posterior function, weaker core, restricted squat depth, yes I hear you cry, and this is a skiing demographic.</em>\n\n<em>The fact is some of the fellas were very fit, and invariably they were better in all the tests. However they had some dysfunction, but their range of movement was generally better. So we had a group who need to improve on becoming better as racers, and they were the same people as the ones who were less fit, mobile, or balanced.</em>\n\n<strong>What stood out more than the sub-groups and fitness levels?</strong>\n\n<em>As a group, their back rotation was really impressive. The skiers need the ability to move from the ground up and separate movement in order to move the legs underneath and achieve the appropriate angulation for the speed, style, and slope.  </em>\n\n<em>It was noticeable that the guys with better hamstring function and strength in relation to the quadriceps were generally better at squats, lunges, and incorporating the core posture technique.  Tests like the Nordic curl, leg dominance, standing overhead squats, step off, hop-test, and knee flexion range helped with this area.</em>\n\n<em>The other factor was neutral spine. For some this wasn\'t a posture they were used to, and the biomechanics core function tests as well as their position in movement proved this to be so.  Even in one week techniques and mind-sets started to change.</em>\n\n<em>As well as the assessments and exercise programs given for the week, we had workshops on Yoga and Pilates exercises for the skiers. This also encompassed myofascial and triggerpoint sessions which was another point of the week to help the guys learn how to assist their muscles in function and recovery.  Some of the group had the GRID rollers, but it was very new to most. </em>\n\n<em>As well as the assessments, anti-spasm workshop, functional assessments, release and core work, we had a circuit training format, of which different variants were left with them for training weeks to follow. They were coached in core, leg and stamina based circuits which gave them an idea of where they needed to improve fitness, which was really supportive to the BASS trainers as well, who joined in from time to time.  </em>\n\n<em>By the end of the week, each trainer had a one-to-one feedback based on their development on and off the piste in the sports centre in Tignes where we all stayed and trained.</em>\n\n<em>The success of the week was giving the trainees a better understanding of movement (particularly in their sport) and some ideas on where to focus to improve all of this for their end goal which is to pass their Speed Test (which is expensive, infrequent and their passport to having a career and life in the mountains of France).</em>\n\n<em>I love skiing but this is the one time I was on the mountain and spent the least time skiing in my life.  It was fascinating listening to the coaches, and how it synchronised with my expertise to deliver results and a new outlook on training for some potentially inspiring and dedicated British ski coaches.</em>\n\n______________\n\nCat Booker\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a> to find out how YOU can become a Biomechanics Coach™.','You Ski?','','draft','closed','closed','','you-ski','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1093',0,'post','',0),(1094,0,'2016-07-09 20:17:35','2016-07-09 20:17:35','','','','inherit','closed','closed','','ski','','','2016-07-09 20:17:35','2016-07-09 20:17:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/07/Ski-3.jpg',0,'attachment','image/jpeg',0),(1096,0,'2016-07-09 20:19:40','2016-07-09 20:19:40','','','','inherit','closed','closed','','ski-2','','','2016-07-09 20:19:40','2016-07-09 20:19:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/07/Ski-1-1.jpg',0,'attachment','image/jpeg',0),(1097,0,'2016-07-09 20:20:04','2016-07-09 20:20:04','','','','inherit','closed','closed','','ski-3','','','2016-07-09 20:20:04','2016-07-09 20:20:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/07/Ski-2-1.jpg',0,'attachment','image/jpeg',0),(1098,3,'2016-07-10 10:30:53','2016-07-10 10:30:53','Not only do we have nutrition guru Ben Coomber but also leading strength &amp; conditioning master &amp; true industry leader, Brendan Chaplin, is back at TMC16, Saturday 8th October Loughborough University!\n\nThe \'Power of 3\' is a term Ben, Brendan &amp; I have been using for our ideas of future work together and, while we each already feel strongly about our partnerships, this is where it really begins!\n\nPreviously Head of Performance at Leeds Met Uni, Brendan now delivers the first &amp; only L4 S&amp;C qualification in our industry!!\n\nSo if you\'re a PT, passionate about strength training your clients and conditioning their performance or maybe you want to stay ahead of the game, simply find out what S&amp;C is all about and actually meet one of the leading experts .... Well then come and listen to Brendan.\n\nI guarantee you will not be disappointed!\n\nWith over half the seats now gone at this one day annual event, we predict a sell out with these 2 fantastic industry leaders headlining!!\nBut there\'s so much more too!\n\nLOOK......\n\n<strong>More AMAZING presentations\nFREE FABulous juice bar\nFREE awesome coffee\nFREE wonderful filtered water\nFANTASTIC Goodie bag\nFree un-beige healthy lunch\nGREAT Raffle prizes </strong>\n\nAs you know I\'m already super excited and it\'s only July!\n<strong>But I don\'t want any of you to miss out so ...</strong>\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" rel=\"nofollow noopener\">BOOK HERE NOW</a>','A True Industry Leader','','draft','closed','closed','','a-true-industry-leader','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1098',0,'post','',0),(1099,0,'2016-07-10 10:29:15','2016-07-10 10:29:15','','','','inherit','closed','closed','','ebc934f8-53db-41b5-8b43-68e976bc064a','','','2016-07-10 10:29:15','2016-07-10 10:29:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/07/ebc934f8-53db-41b5-8b43-68e976bc064a-1.jpg',0,'attachment','image/jpeg',0),(1101,3,'2016-07-12 08:15:42','2016-07-12 08:15:42','In fact it is my belief that ANYONE promising pain relief might be promising too much since ‘<em>YOU own YOUR pain’</em>, as Lorimer Moseley (&amp; Dave Butler) would say (Explain Pain).\n\nThe expectation of our clients has become pretty steep and as a result of this we then expect too much of ourselves. We start to believe it is our JOB to remove pain and yet it is not. WE are exercise professionals and therefore experts in exercise prescription. For those of you who are manual therapists this goes for you too! Offering the suggested promise of pain relief is a risky business. This might be shocking news for some readers so let me explain...\n\nNow it would be fair to say that prescribing some exercises can reduce, or even rid, someone of pain AND that using manual therapy techniques can do the same but this is why we are faced with this very problem.\n\nDue to the complexities and uncertainties surrounding the causes of pain it is often a dilemma to understand how it actually occurs and how to get rid of it with any absolute surety. This is not only a dilemma for US but also surgeons, practitioners and in fact any professional involved in human movement or therapy.\n\nHowever <em>selling </em>pain relief is SEXY and compelling for attracting a MASSIVE market of people walking around in pain these days. So when we are SOLD professional education that TEACHES us how to <em>remove pain</em>, we are going to be tempted to use this in our marketing, right?\n\nWRONG!\n\nNot YOU, nor I, nor anyone can PROMISE pain relief at least until we find the root cause and therein lies this problem again...\n\nWHAT CAUSES PAIN?\n\nEveryone has experienced it in some form, or knows someone who experienced it, and there are many ways we can feel it. The causes are still being researched and it is so individual and subjective that it would be difficult, probably impossible, to teach education programmes that PROMISE pain relief.\n\nSo the <u>expectation</u> does not match what we can <u>promise</u>.\n\nNow saying this doesn\'t mean we CANNOT reduce our clients\' pain because if you find the root cause then you will be better placed to intervene. It is finding the root cause that is a challenge.\n\nSOOOOOOOOOO what CAN we do?\n\nWell much of what we teach within our academy is about safe practice, duty of care, confident referral and enhanced inter-professional relationships. With more than one professional involved, more than one opinion, more than one skill set, more than one set of exercises and more than one expertise WE can TOGETHER provide more chance of finding the root cause through safe elimination of possibilities.\n\nHOW do <strong><u>WE</u></strong> do this?\n\nThrough the Intrinsic Biomechanics Association (IBA) membership and also our fantastic partnerships we are proud to be able to offer a huge amount of SUPPORT which includes FREE workshops, we introduce you to other professionals, share our skills, ideas, experience and expertise to bring all of our worlds together rather than attempt to do things alone thus providing more confident services nationwide.\n\n<em>\"No one has ever been successful alone.\" </em>\nRichard Branson\n\nThere is nothing I enjoy more than being in a room with a group of open-minded, honest, intelligent, multi-skilled professionals who are passionate about enjoying sharing their thoughts on helping people move better with less pain.\n\nNow something else I would like to say is this:\n\nIF we are able to do assessments of our clients\' movement using our knowledge of their history and anatomy, combined with what we understand about the way we <em>should</em> move AND from evidence based programmes that offer at least some chance of understanding WHY our clients move the way they do, well then we are in a better position to help, right?\n\nSo while Biomechanics Coaches™ CANNOT PROMISE pain relief, IF we do identify some areas that don’t move too well and then have experience and knowledge in how to empower our clients to move better, while taking advice from our peers then, well, we MIGHT, just MIGHT, enable THEM to REDUCE or even REMOVE THEIR pain. However in THIS environment the chances of it being more long lasting are increased AND the feeling of empowerment and success for the client is increased. This MUST only be a good thing, don’t you agree??\n\nWould YOU like to JOIN ME in the IBA and start to make a difference to a culture of inflated expectation to improve OUR duty of care, our clients\' experience and results through shared skills, networking, healthy open discussion with no judgement and of course A LOT of fun at the same time!!!??\n\nTo all fellow GEEKS of human movement and anatomy….\n\n<a href=\"https://www.biomechanicseducation.com/workshop/iba-workshops-2/\" target=\"_blank\" rel=\"noopener\"><strong>JOIN ME NOW</strong></a>','Sorry,  Biomechanics Coaches™ DON’T Promise Pain Relief!','','draft','closed','closed','','sorry-biomechanics-coaches-dont-promise-pain-relief','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1101',0,'post','',0),(1106,0,'2016-07-11 19:39:07','2016-07-11 19:39:07','','','','inherit','closed','closed','','small','','','2016-07-11 19:39:07','2016-07-11 19:39:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/07/Small-1.jpg',0,'attachment','image/jpeg',0),(1108,3,'2016-07-14 08:00:41','2016-07-14 08:00:41','FINALLY… (I am actually confident that this is in fact NOT the last mention of the squat topic)\n\nAll of the research studies I have read over the years, and even more recently, are deemed valid, reliable and sound in evidence terms in that they give the standard detail required about their subjects start point (i.e. age, sex, ability). My question to this is that without a common ‘biomechanical’ start point or measurement then is all of this research flawed?\n\nNone cited details of a commonality in intrinsic biomechanical set up of the individuals taking part. There is no evidence of biomechanical screening for pelvic function, neural tension, muscle spasm, foot function and joint mobility prior to the research or, in fact, as part of the research. Therefore we could argue that the results are likely to be questionable, as while in some instances individuals have been deemed ‘healthy’ which <em>suggests</em> the same starting point, each participant\'s biomechanical set up will have affected the performance results differently according to that individual\'s intrinsic biomechanics.\n\nNow I appreciate that can be argued for all factors relating to physical analysis research projects. Height, weight, medical history, genetics, prior training experience etc… but when performing a research project looking into the effects on internal structures during movement this is what makes finding valid and reliable evidence challenging. So while we can surmise a certain degree of information from these many research papers, just how valid and reliable are they?\n\nHaving been involved as a director of an education company I recognise that we are faced with this challenge on a daily basis and therefore feel very passionate about making as much evidence as valid and reliable as possible for analysis.\n\n<strong>How does intrinsic biomechanical dysfunction affect the squat you perform and what does this mean?</strong>\n\nDue to our modern lifestyles we sit at desks, drive for hours, perform repetitive movements and perform tasks we were not actually designed to do. What this means is the body has to compensate somehow and has attempted to evolve in some way, the result is that the compensations are causing problems. The 3 systems (nerve, muscle and skeletal) typically compensate for dysfunction in each other, such as; muscle function being affected by protective spasm. Prolonged muscle spasm can cause muscle fibrosis, which may enable the body to preserve energy by not having the whole muscle in spasm, thus creating tension in other muscles along the nerve’s pathway and compromise their function as they attempt to lengthen during activity.\n\nResearch tells us that 60% of biomechanical dysfunction in the knee comes from the pelvis. So having your hips muscles in this protective spasm can commonly result in a rotated pelvis that can create a leg length difference (LLD), for example. What I would now like to explain is what happens mechanically during a squat when you have a LLD as just <strong><em>one example</em></strong> of how the body would need to compensate to allow the body to perform this movement.\n\nThe way the pelvis works is to rotate forwards and backwards on either side alternately and independently when you walk. For example when your right leg moves forwards the right side of your pelvis rotates backwards. Then as your leg moves through gait it ends up behind you and your pelvis that side will rotate forwards. It can be at any point during this action of the hip extension and flexion (during gait or any other activity) that the muscles can become ‘stuck’ or sub clinically go into a protective spasm. The theory is that if it is during hip flexion, the leg on that side can appear shorter when measured next to the other one and vice versa. Often both hips can become ‘stuck’ leaving you with a twist to both sides. More often than not we are totally unaware of this as it can cause no discomfort directly from this type of spasm, However…\n\n…Several things could happen…\n\nThe femur or thigh on the longer leg could rotate inwards to allow for the extra length meaning the knee/s has a tendency to turn in during the squat\n\nThis means the knee of the longer leg will be under more stress on the inside/medial ligaments. They could become stretched, weaker and damaged over time.\n\nThe shin or lower leg could also rotate inwards adding to this problem from below the knee joint as well as above.\n\nThe foot could pronate excessively and roll inwards leaving the squat unstable and increasingly less stable the lower you go in depth.\n\nWhen standing, the side of the pelvis with the longer leg may appear higher than the opposite side resulting in scoliosis or a curvature of the spine. This can leave you with a ‘hinge’ in the back and weaker spots between facet joints during the squat risking damage or wear and tear. The facet joints job is to protect your discs and so it is vital we do not put them at risk.\n\nThe result of this spinal curve, known as ‘functional’ scoliosis, means local muscle spasm and loss of spinal function and mobility during the squat. If you do not have full mobility and a level pelvis, then add 100kg of compressive load on top and then squat you will be restricted in depth to maintain good, safe form intrinsically.\n\nLoss of spinal mobility translates directly into the upper body and creates tension through the musculature of the shoulder and neck meaning there can be difficulties in bar positioning, particularly with low bar or front squats. These problems are likely to be asymmetrical too.\n\nIf you lose full shoulder capacity then problems can arise in the rotator cuff, elbows and even the wrists\n\nFinally just as an aside; a common reason for an inability to squat to a preferred or lower depth without passing your ‘break point’ (see The Squat Part 2/6) is poor thoracic extension capabilities caused by pec minor spasm. Yes, release the chest and you could, like I did, find you can squat lower. Mike Boyle &amp; Shirley Sahrmann are both advocates of developing thoracic mobility (<em>A joint by joint approach</em> Mike Boyle &amp; <em>Diagnosis &amp; Treatment of Movement Impaired Syndromes </em>Shirley Sahrmann).\n\nEach of these would, over time, be likely to result in discomfort, Repetitive Strain Injury (RSI) type symptoms and/or energy leaks while putting the structures at risk of an injury. So if you had pain in any of the above mentioned areas it is vital to understand that the site of discomfort or pain is not necessarily where the problem is coming from.  Each of the examples given above are as a result of some tiny muscles in the hip going into a <strong>sub clinical</strong>(asymptomatic) protective spasm. This is one of the reasons many are losing faith in the medical world. Medics and therapists are trained, and skilled up, to treat the site of pain. While some therapists do look for and address the cause of pain, it is common for this not to be done. This means that without addressing where it came from the symptoms can return and this is where you get recurring injuries and niggles that some professionals can be scratching their head over!\n\nRemember that this is just an example, there are many more ways the body can compensate for what YOU do during your squat, with your body type, your medical history, your genetics and your biomechanical set up.\n\nThe most important thing to remember if you do suffer low grade, non-specific discomfort, pain, recurring niggles or loss of performance when you squat it could have come from anywhere! Treating the site of pain may not be a long term solution. If it comes back you have not addressed the root cause and ultimately you need to try something else!\n\nSo when you have a question about your squat technique, the depth you should go to, the type of squat you should do, the position of your spine during the squat, consider all of the things that could be affecting it because interestingly <strong>your foot could be causing your shoulder pain!!</strong>\n\nDuring the writing of this article I improved my own break point &amp; technique through releasing pec minor and increasing my thoracic extension mobility……☺ so now bear with me while I start to add some weight to the bar!\n\nHAPPY SQUATTING!!\n\n<strong>Do you want to start improving your squat?\nDo you want to start improving your clients\' squat?\nDo you want to start with improving movement ability at the pelvis?</strong>\n\n<a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics-2/\" target=\"_blank\" rel=\"noopener\">CLICK HERE...</a>\n\n&nbsp;\n\n<strong>References</strong>\n\nCaterisano et al (2002) <em>The effects of the back squat depth on EMG activity of 4 superficial hip &amp; thigh muscles</em>\n\nCroisier et al (2008) <em>Strength imbalances &amp; prevention of hamstring injury in professional football players</em>\n\nColado et al (2009) <em>Technique &amp; safety aspects of resistance exercises: A systematic review of the literature</em>\n\nEscamilla et al (1998) <em>Biomechanics of the knee during closed kinetic chain &amp; open kinetic exercises</em>\n\nEscamilla.R.F (2001) <em>Knee biomechanics of the dynamic squat exercise</em>\n\nEscamilla et al (2001) <em>Effects of technique variations on knee biomechanics during the squat &amp; leg press</em>\n\nEsola et al (1996) <em>Analysis of lumbar spine &amp; hip motion during forward bending in subjects with &amp; without a history of low back pain</em>\n\nFortenbaugh.D et al (date unkown) <em>The effects if weight lifting shoes on squat kinematics</em>\n\nFry et al (2003) <em>Effects of knee position in hip and knee torques during the barbell squat</em>\n\nHewett et al (2001) <em>Rationale &amp; clinical techniques for ACL injury prevention among female athletes</em>\n\nGullett et al (2009) <em>A biomechanical comparison of back &amp; front squats in healthy trained individuals</em>\n\nIsear et al (1997) <em>EMG analysis of lower leg extremity muscle recruitment patterns during an unloaded squat</em>\n\nMcBride et al (2006) <em>Isometric squat force output &amp; muscle activity in stable &amp; unstable conditions</em>\n\nMcCaw et al (1991) <em>Biomechanical implications of a mild leg length discrepancy</em>\n\nMcCaw.S, Melrose.D.R (1998) <em>Stance width &amp; bar load effects on leg muscle activity during parallel squat</em>\n\nMcCurdy.K, Langford.G (2005) <em>Comparison of unilateral squat strength between the dominant &amp; non-dominant leg in men &amp; women</em>\n\nMcGill et al (1996) <em>Appropriate placed surface EMG electrodes reflect deep muscle activity (psoas, QL, abdominal wall) un lumbar spine</em>\n\nMcGill et al (1996) <em>A revised anatomical model of the abdominal musculature of torso flexion efforts</em>\n\nMcGill et al (2000) <em>Changes in lumbar lordosis modify the role of extensor muscles</em>\n\nMcGill et al (2007) <em>Co-activation alters the linea versus non linea impression of EMG torque relationship of trunk muscles</em>\n\nMcGill et al (2009) <em>A comparison of ultrasound &amp; EMG measures of force of activation to examine the mechanics of abdominal wall contraction.</em>\n\nMcLean et al (2005) <em>Evaluation of a 2 dimensional analysis method as a screening &amp; evaluation tool for ACL injury</em>\n\nMurray et al (2001) <em>Pelvic femoral rhythm during unilateral hip flexion in standing</em>\n\nNelson et al (1995) <em>Relative lumbar &amp; pelvic motion during loaded spinal flexion/extension</em>\n\nNinos et al (1997) <em>Electromyographical analysis of the squat performed in self-selected lower extremity neutral rotation &amp; 30</em><em><sup>0</sup></em><em> of lower extremity turn out from the self-selected neutral position</em>\n\nSchoenfeld.B, Williams.M (date unknown) <em>Are deep squats a safe viable exercise?</em>\n\nSignorile et al (1995) <em>The effect of knee &amp; foot position on the electromyographical activity of the superficial quadriceps</em>\n\nVan Eijden et al (1987) <em>Forces acting on the patella during maximal voluntary contraction of the quadriceps femoris muscle at different knee flexion/extension angles</em>\n\nWilliams (1980) <em>Biomechanical factors in spinal injuries</em>\n\nWilke et al (1996) <em>A comparison of tibiofemoral joint forces &amp; electromyographical activity during open &amp; closed kinetic chain exercises</em>\n\nWretenburg et al (1996) <em>High &amp; low bar squatting techniques during weight training</em>\n\nWretenburg et al (1993) <em>Joint movements of force &amp; quadriceps muscle activity during the squat exercise</em>\n\nWytch (1991) <em>Biomechanics of foot &amp; ankle injuries</em>\n\nYu et al (2007) <em>Mechanisms of non contact ACL injuries</em>\n\nZernicke et all (1977) <em>Human patella tendon rupture</em>','The Squat Part 6/6 - The Conclusion & References','','draft','closed','closed','','the-squat-part-66-the-conclusion-references','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1108',0,'post','',0),(1110,0,'2016-07-13 18:22:24','2016-07-13 18:22:24','','','','inherit','closed','closed','','weight-lifter-312254_1280','','','2016-07-13 18:22:24','2016-07-13 18:22:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/07/weight-lifter-312254_1280-1.png',0,'attachment','image/png',0),(1112,0,'2016-07-13 18:43:04','2016-07-13 18:43:04','','','','inherit','closed','closed','','img_7918','','','2016-07-13 18:43:04','2016-07-13 18:43:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/07/IMG_7918-1.jpg',0,'attachment','image/jpeg',0),(1114,3,'2016-07-16 15:00:58','2016-07-16 15:00:58','Now I KNOW you know I LOVE my job but I believe in sharing moments of joy where possible and so I wanted to share the joy of one of my learners with you that brought ME joy this year!\n\nI received this fantastic message from Bruce;\n\n<em>\"Hi Rachel </em>\n\n<em>I just wanted to thank you for all your help.</em>\n\n<em>The Biomechanics Coach™ workshop series has really blown me away and over the last couple of weeks two things have happened that have really boosted my confidence. </em>\n\n<em>The first was sitting in the first session of my level 4 sports massage class while everyone there was soooo much more experienced than me, and way more qualified, but I found myself actually educating the others on how the body works as an integrated system. I actually felt like I belonged and could contribute to the class. </em>\n\n<em>Yesterday I met up with a friend who has been struggling with lower back pain and recurring leg and knee injuries. She had been seeing an osteopath for 18 months who had identified a leg length discrepancy through an imbalance of the hip. Anyway she was going every few weeks for them to \'put the hip back\'. 8 weeks ago when I did a \'practise\' screen I gave her the 4 sign exercise to do. I went to do a full screen last night as she is going to be one of my case studies. It turns out she has not had any issues at all with leg, knee or back and her LLD had completely disappeared. The Downing\'s Sign pelvic function screen had massively improved from before. That was the first time I\'ve seen the long term benefits of what we do first hand and it blew me away! Anyway hope this fits as a testimonial as I am proper buzzing over it</em><em> </em><em>&#x1f600;</em><em> </em><em>Thanks again, Bruce.\"</em>\n\nSo may I suggest you don\'t put it off anymore, listen to Bruce\'s words, take his word for it not mine and take this opportunity to grab one of the last remaining seats on our Pelvic Biomechanics workshop Aug 11/12 in London.\n\nLove Your Work!!\n\n<a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics-2/\">BOOK HERE</a>','Felt Like I Belonged','','draft','closed','closed','','felt-like-i-belonged','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1114',0,'post','',0),(1116,0,'2016-07-16 15:00:20','2016-07-16 15:00:20','','','','inherit','closed','closed','','dreamstime_s_13250215','','','2016-07-16 15:00:20','2016-07-16 15:00:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/07/dreamstime_s_13250215-1.jpg',0,'attachment','image/jpeg',0),(1118,3,'2016-07-19 08:00:41','2016-07-19 08:00:41','But You Misunderstand Me…\n\nOne of the hardest things about marketing a unique practical skill is promoting what you do in text. This is why I do a lot of videos but still it won’t give you ALL of the methods, ideas and ethos that we deliver during our training because that would, well…give it away!!\n\nThis does however leave us open to being challenged about the content we deliver and what we also endeavour to communicate during our workshops.\n\nIn one respect I don’t care what the trolls say because business is doing very well thank you and we are empowering thousands of professionals to improve the quality of life of their clients (see testimonials) while increasing their confidence (and income) as practitioners.\n\nBUT\n\n...on the other hand the trolls are actually aiding the QUALITY of our marketing and HOW we communicate what we do by challenging us which is, in fact, increasing our sales and getting even more bums on seats.\n\nSo trolls, we thank you!!!\n\nThe most important thing for us about business, and our partnerships and collaborations, is integrity. This is something my mentor and the founder of the programmes we deliver, Martin Haines, taught me in the early stages of our business relationship and we have also maintained between us ever since.\n\nThat means not to ‘bite’ to the haters and also to stick to your morals and ethos without letting them get to you negatively.\n\nIt means I sleep at night since the methods of maintaining integrity allow me to stick to what I deliver but also to be transparent enough that I admit ideas, concepts and language is likely to change with development of new evidence and information over time.\n\nThis also crosses over into the partnerships we have with other industry leaders like Ben Coomber and Brendan Chaplin, who have experienced similar \'trolling\' through social media.\n\nBUT\n\nThese superb professionals maintain their integrity through openly discussing them.\n\nI have ultimate respect for the strength of character Ben Coomber has demonstrated publicly in super honest videos showing his transparent nature that his ideas can also change with time and with new evidence and experience.\n\nIn doing so I would trust him over someone who uses aggressive methods of communication in an attempt to impress others, undermine the competition and even slating old methods that they probably used themselves without mention of it!\n\nExpanding, growing and no fear of admitting being wrong, just honest people trying to help others to move better feel stronger and eat healthier\n\nWhat’s wrong with that, eh???\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" rel=\"noopener\"><strong>Come &amp; meet me, Martin, Ben AND Brendan amongst others </strong></a>\n\n<strong>Saturday 8th October 9-6pm £140\nThe Movement Convention\nLoughborough University</strong>\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" rel=\"noopener\">Hurry though this is an intimate event</a>!!!','Thank You Trolls!','','draft','closed','closed','','thank-you-trolls','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1118',0,'post','',0),(1124,3,'2016-07-22 06:37:58','2016-07-22 06:37:58','Tom Waldron is, in my opinion, an up and coming star in our industry.\n\nHaving been lucky enough to experience his gorgeous open personality in our learning environment I have thoroughly enjoyed his questions and thoughts into human movement. He has been such a joy to have around that I wanted YOU to share the experience of his knowledge combined with a quality of character that is not often found in our industry.\n\nSo on <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">Saturday 8th October at Loughborough University</a> 9:00-6:00pm Tom, along with is college and fellow Franklin Method practitioner Rachel, will be presenting at The Movement Convention.\n\nHere he gives a hint at what they will be delivering for your benefit, an insight into what is becoming a powerful tool to use with your clients...dynamic imagery.\n\nThe Franklin Method uses dynamic imagery, anatomical embodiment and educational skills to create lasting positive change in your body and mind. In this practical class we\'ll be exploring the intrinsic biomechanics of the shoulder girdle. Discovering that through imagery techniques and touch, we can improve the function of the shoulder girdle. Increasing flexibility, co-ordination and strength by strengthening the mind body connection. In the Franklin Method we say \'embodying function improves function\'\n\nIn this workshop you will learn new and fun techniques to improve the mechanics of your shoulder girdle. Perfect for athletes who are constantly looking for better ways to train or for those who simply want to have a better experience of their shoulders in daily life.\n\nNot got your seat yet?\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">OMG CLICK HERE QUICK!!!</a>','The Franklin Method','','draft','closed','closed','','the-franklin-method','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1124',0,'post','',0),(1125,0,'2016-07-22 06:37:51','2016-07-22 06:37:51','','','','inherit','closed','closed','','screen-shot-2016-07-22-at-07-33-16','','','2016-07-22 06:37:51','2016-07-22 06:37:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/07/Screen-Shot-2016-07-22-at-07.33.16-1.png',0,'attachment','image/png',0),(1128,3,'2016-07-25 07:42:41','2016-07-25 07:42:41','Having had an unsatisfactory education as a youngster and leaving school feeling pretty dumb as a \'non academic\' and then qualifying with QTLS in 2011 I have become very passionate about developing educational experiences for those who choose to enter into our academy.\n\nSo I KNEW I wasn\'t really dumb since I could communicate well, hold an audience captive and was great at inter personal relationships. I could make people laugh and coped perfectly fine living abroad for 6yrs in my early 20\'s, teaching myself to speak greek fluently and Japanese well enough to hold a conversation. My ability to remember choreography was good and I understood drachma and yen currencies.\n\nWhen I came home I got myself a mortgage and ran a house and wondered what the hell was I going to do since I was NOT AN ACADEMIC!!!! Being told this through all of my schooling made me feel like a failure without much hope in many respects, like I was not intelligent, that I had less value to offer and that I should \'make do\' relying on others to help me make decisions. My mathematical skills, in particular, or lack of them, still to this day make me extremely uncomfortable - even with a calculator!!\n\nWhat an unnecessary pressure it has been!!\n\nSince I have come to realise that ALOT of US are \'non academic\'. My \'luck\' of meeting someone who believed in my abilities (long before I did) gave rise to opportunities I had never ever dreamed I was capable of entering into!\n\nOK don\'t worry I am not about to harp on about The Education System, well not too much but there is a point......bear with me!\n\nThe point I want to make is I am the same as MANY, if not MOST, of YOU!!\n\nEven now the idea of sitting my theory assessment for my EPI S&amp;C qualification is making me say to myself....\"pah I dont need the quaification, just do the practical stuff\"...\n\n...because I HATE THEORY EXAMS! They make me SO uncomfortable that I simply want to avoid them! The concept of PROVING my intelligence through a medium I struggle with makes me fear that feeling of FAILURE since it just reminds me of what I have been told I lack!\n\nYet I teach MY leaners that failure is a good thing, something we should embrace since it is when we adjust, stretch our knowledge, correct ourselves, research and learn at a deeper level.\n\nPractical demonstrations are something I have no problem with but THEORY makes me feel really dumb all over again and I am conditioned to feel fear of failure before I even see the questions!!\n\nFEAR is only a thought in your head, nothing has happened, it is simply when we relive the feeling of failing and being told...\"you are not an academic are you\"...  like it\'s shameful!\n\nSo much pressure and yet I could prove my INTELLIGENCE or TALENTS in other ways!\n\nAnyway after watching him on a TED talk, I bought Ken Robinson\'s book\n\n\"The Element - How Finding Your Passion Changes Everything\"\n\nRobinson describes \'The Element\' as the place where the things we love to do and the things we are good at come together.\n\nWOWZERS! This guy is AMAZING!\n\nHe not only made me realise WHY I have been made to feel like I am not bright but he also showed me that not only am I NOT unintelligent, he helped me understand what INTELLIGENCE actually is and also what is, or should be, important.\n\nThere are many forms of intelligence, including academic intelligence BUT also\n\nARTISTIC intelligence, EMOTIONAL intelligence\n\nRobinson makes statements like...\n\n“How intelligent are you…? whats wrong with this question? we take the definition of intelligence for granted..”\n\n“Great education depends on great teaching”\n\n“Understand the conditions under which human talents flourish or fade…”\n\nHis ideas, explanations confirmed to me that I AM INTELLIGENT after all, that many of us are made to feel that we are lacking intelligence when we are assessed through certain mediums. This is why we have developed a broader, and in my opinion fairer, assessment process for our learners. One where we work WITH you to allow YOU to become autonomous in your own educational development so that you continue to grow beyond our academy.\n\nConsider how YOU feel about YOUR education experiences and how YOUR teachers, tutors, trainers made YOU feel?\n\nWould you like to experience an inclusive classroom?\n\nWould you like to find YOUR medium for demonstrating YOUR intelligence?\n\nWould you like to have your talents encouraged to flourish?\n\nWould you like to experience great teaching?\n\nBiomechanics Education Ltd is proud to offer all its learners a positive learning experience with full support bespoke to your needs.\n\n<a href=\"https://www.biomechanicseducation.com\">READ MORE ABOUT THE ACADEMY HERE</a>','Education Is Rubbish!','','draft','closed','closed','','education-is-rubbish','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1128',0,'post','',0),(1129,0,'2016-07-25 07:42:31','2016-07-25 07:42:31','','','','inherit','closed','closed','','screen-shot-2016-07-25-at-08-42-14','','','2016-07-25 07:42:31','2016-07-25 07:42:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/07/Screen-Shot-2016-07-25-at-08.42.14-1.png',0,'attachment','image/png',0),(1144,3,'2016-07-28 09:05:05','2016-07-28 09:05:05','If any of you follow my Facebook posts you will have seen me talk about, and show small videos clips, of my Olympic Lifting progress and coaching experiences with various S&amp;C Coaches and British Weight Lifting Coaches over the last 18 months.\n\nHaving met Stephen Aish at LIW 2015 when we were both presenting on the Jordan Fitness stand, he offered to be my \'demo model\' during my practical demonstration. Following that he gave me some guidance on my lifting technique during his session. His approach was quite different and resonated with me, so much so I booked myself some 1:1 session with him.\n\nLogistics means we meet at Peterborough Crossfit and having achieved 4 x PB\'s on the second session and then 10 PB\'s on my 4th session with him you can imagine how excited I am to have found him!!\n\nWhat I love about his guy is, of course the stuff he says, but also the stuff he doesn\'t say but that he makes me feel and think about in the few wise words he does share with me. To truly understood what I mean you need to meet this awesome character who, our partner Ben Coomber also recognises as a great industry influencer, since Steve also represents BTN on their mindset workshops.\n\nSo now I want to share my sensei with you at this year\'s <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">Movement Convention Sat 8th October Loughborough University</a> so that you can experience some of his wisdom and maybe generate some PB\'s for yourself, your training, your business, your life!\n\nSteve is an international performance coach, mentor, champion athlete and has worked with over 10,000 people. His own journey led to him realising how important the mind is for health and he now dedicates his time to helping people find inner peace and their true potential.\n\nThe Movement Convention\n\nSat 8t October\n\nLoughborough University\n\n9-6pm\n\n£140\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">CLICK HERE TO RESERVE YOUR SEAT!</a>','Sharing My Sensei','','draft','closed','closed','','sharing-my-sensei','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1144',0,'post','',0),(1145,0,'2016-07-28 09:04:58','2016-07-28 09:04:58','','','','inherit','closed','closed','','screen-shot-2016-06-24-at-08-20-20','','','2016-07-28 09:04:58','2016-07-28 09:04:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/07/Screen-Shot-2016-06-24-at-08.20.20-1.png',0,'attachment','image/png',0),(1166,3,'2016-08-02 05:13:39','2016-08-02 05:13:39','Sheila Court has been nominated <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coach™ of the Month</a> for skilfully blending her holistic approach and sharing her wonderful and honest knowledge with others in and around Scotland!\n\nShe is also demonstrating why she was voted ‘top student award’ by The Western School of Massage!!\n\nWell done Sheila!!\n\nRead her story here:\n\nI qualified with a B.Ed in Physical education in 1991 and have been teaching since then.  Also R.S.A Qualified, for the last 20 years I have been taking aerobics, step and conditioning classes.  In simple terms, I’m movement and fitness daft!\n\nHaving spent years enjoying an extremely active life and having two fantastic children, I reached the dilemma of not being able to do what I loved without persistent injury and pain.  The hard work and abuse I had given my body, pushing it to the limits and age were starting to have some major consequences.  My lack of function and pain was affecting my job, my lifestyle and basically my well being.\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaching™</a> has allowed me to sort out the key elements so my body can function to the high levels I still demand of it.  Knowing it’s worth and the benefits I have gained, it had to be something I did for other people.\n\nIn September 2012 I broadened my expertise further to give the best for my clients and qualified in Massage studying with the Western School.  Since then I have gone on to study Advanced and Sports and Remedial Techniques.  These skills couple ideally with <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaching™</a> and seem to be the kick start that some clients need to engage in the process.\n\nWhere do I see myself in 2026 is a mega question!\n\nMy family will have hopefully grown up into ‘responsible citizens’ and following their own career paths.  I still plan to be ’moving freely’ towards a happy retirement with the power to be as busy as I choose work wise!!\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Thinking of becoming a Biomechanics Coach™?</a>\n\nBiomechanics Coaching™ I feel is the missing link to quality and injury free exercise.  <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaching™</a> allows me to offer a new concept in rehabilitation and injury prevention.   I offer individual and small group sessions which centre solely on biomechanics coaching, additionally I have integrated it’s concepts into my fitness classes.\n\n2016 saw me take the big leap in becoming full time in my Now Move Freely business.  An enormous step for me after 24 years in teaching, however with the skill set I now have it has allowed me to develop a very busy business, which I love.\n\nSecrets, I’m not really big on.  What you see is what you get with me!! My passion however for fitness and health goes back a long way having been a ‘wee bit on the chubby side’ as a child!','Movement & Fitness Daft!','','draft','closed','closed','','movement-fitness-daft','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1166',0,'post','',0),(1167,0,'2016-08-02 05:13:30','2016-08-02 05:13:30','','','','inherit','closed','closed','','8-x-10-render-1-of-1','','','2016-08-02 05:13:30','2016-08-02 05:13:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/8-x-10-render-1-of-1-1.jpg',0,'attachment','image/jpeg',0),(1183,3,'2016-08-07 18:32:36','2016-08-07 18:32:36','Keeping Women Moving Freely Through All Stages Of Their Life\n\nMairi Taylor\'s session at <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention</a> 2015 went crazy with interaction and fascination as she gave us evidence based statistics and her expertise on inside out health!\n\nThis year she\'s back! Along with her amazing Juicebar!\n\nHere she gives your a teaser out her session...\n\nThis may come as a surprise to some people but women are not small men and therefore when it comes to working with and supporting them to keep moving freely it may be beneficial to understand where they are in their life cycle and how you can adapt your practice to support their needs from a hormonal as well as physical perspective.\n\nWhether it’s the young female athlete reaching puberty, the pregnant mum wanting to keep moving, the post-natal mum looking to return to fitness, the weekend warrior or elite athlete wanting to go with their flow or the peri menopausal woman looking to stay FABulous and work with her hormones rather than against,  Biomechanics Coaching™, good nutritional advice and lifestyle coaching go hand in hand to create the type of service that will ensure raving fans.\n\nAs a Perimenopausal woman Mairi Taylor not only has the education gathered through training with Burrell Education, The Integrative Women’s Health Institute and Metabolic Effect she is also walking and feeling her way through this key life stage determined to inspire and show other women that life most certainly isn’t over at 40!\n\nAs a Biomechanics Coach™, Pilates Instructor, Women’s Health Coach, Kettlercise™ Coach, Massage Therapist and Natural Juice Therapist Mairi brings all these disciplines together to provide a “whole” list approach to working with her female clients and supporting them at whatever stage of their life cycle they are to look and feel FABulous.\n\nDuring her lecture she will be sharing the impact of the hormonal changes at different stages of a woman’s lifecycle and some strategies for working with them and supporting their needs to ensure they keep moving freely.\n\nBook yourself, and your friends, one of the remaining\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">MOVEMENT CONVENTION</a> seats\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">HERE</a>','SHE\'S BACK!','','draft','closed','closed','','shes-back','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1183',0,'post','',0),(1184,0,'2016-08-07 18:32:29','2016-08-07 18:32:29','','','','inherit','closed','closed','','screen-shot-2016-08-07-at-19-31-36','','','2016-08-07 18:32:29','2016-08-07 18:32:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-07-at-19.31.36-1.png',0,'attachment','image/png',0),(1186,0,'2016-08-07 18:33:16','2016-08-07 18:33:16','','','','inherit','closed','closed','','screen-shot-2016-08-07-at-19-32-53','','','2016-08-07 18:33:16','2016-08-07 18:33:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-07-at-19.32.53-2.png',0,'attachment','image/png',0),(1187,0,'2016-08-07 18:35:48','2016-08-07 18:35:48','','','','inherit','closed','closed','','screen-shot-2016-08-07-at-19-32-53-2','','','2016-08-07 18:35:48','2016-08-07 18:35:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-07-at-19.32.53-1-1.png',0,'attachment','image/png',0),(1188,3,'2016-08-10 06:23:37','2016-08-10 06:23:37','There is a lot of media hype about people don’t move because they lack confidence and this probably isn\'t new to us as exercise professionals. The question is, is there an entire market WE are missing out on because they are actually afraid of exercise?\n\nWe are very focused on those who WANT to exercise OR those who have a specific goal, obviously, BUT what about those afraid of, or intimidated by, gyms?\n\nWhat about individuals who maybe don’t even realised it is not all about sweat, blood and tears or no pain no gain?\n\nOccupational health is a huge problem and possible one of the biggest cases of unnecessary low grade aches and pains many of the workforce is suffering today. However it is not necessarily as simple as asking them to move more…..or is it?\n\nLow grade aches, niggles and recurring injuries are accepted as NORMAL today....WHAAAAAAAAT?\n\nYes, this is what I hear some clients and participants actually saying and even those who are in their 20\'s!!\n\n\"NO THIS IS NOT \'NORMAL\'\n\nit is COMMON not normal \"...I tell them!!\n\nSo why on earth are people just accepting this as what they should live with?\n\nChances are it is because they have sought the advice of clinicians that maybe hasn\'t worked. The problem with this is if it is a biomechanical problem that is simply linked to their lack of movement rather than an actual clinical issue. The therapist hasn\'t \'failed\', they simply didn\'t get to the ROOT CAUSE.\n\nWe, exercise professionals, are perfectly placed to \'set people up\' for movement but what we lack in our exercise education is a basic preparation for movement programme that is required in this day and age. Basic warm ups and stretching is often not enough for an 8hr day sitting at a desk for example.\n\nWith all the compensations going on inside us when we are static for so long, simply jogging for 5 minutes or pre-workout stretching just isn\'t enough anymore. This fear of movement hurting them is putting people off moving and exercising, they are lacking confidence especially if the professional they saw wasn\'t able to help, they are feeling like a lost cause!\n\nThis is why as exercise professionals, we need to understand the body better and have more knowledge on improving movement capacity in our skill set. Not only does it help the \'keeno\'s\' who come to sweat, the newbie who just signed up for a years membership, but it can also increase confidence in those nervous of even leaving their desk to step into a gym, fitness class or exercise facility. So lets start introducing THEM to the safest exercise programme on the planet that prepares the body for movement and creates a safer foundation for exercise and fitness.\n\nInterestingly this programme originates from \'rehab\' but is perfect for \'pre-hab\' and it can literally be done sitting at your desk!\n\nIn studies the<a href=\"https://www.biomechanicseducation.com/imovefreely/\"> iMoveFreely®</a> programme helped reduce musculoskeletal absenteeism by 64% within 3 months. It also saved one fire service £64k over a similar period of time for the same reason.\n\nThe beauty of the <a href=\"https://www.biomechanicseducation.com/imovefreely/\">iMoveFreely®</a> programme is that it is the perfect programme to prepare your body for movement and could be called a NO SWEAT ‘work out’ that an office worker could do during their lunch break and they could then repeat as they sit at their desks or while talking on the phone for example. The low grade techniques are simple, safe and evidence based as effective for \'pre- clinical\' issues so that even the most exercise adverse individuals won’t be put off.\n\nThis awesome ‘de-sensitising’ exercise system enables individuals to manage their own physical health without stepping foot in a gym or even getting sweaty - at least to begin with anyway - while they increase their confidence in movement beyond the \'sedentary desk worker\' 90 degrees of hip flexion, for example.\n\nAs the <a href=\"https://www.biomechanicseducation.com/imovefreely/\">iMoveFreely®</a> programme increases their confidence AND ability to move it also therefore increases the likelihood of them moving more and coming to your facility for more.\n\nThis programme is perfect;\n\n<a href=\"https://www.biomechanicseducation.com/imovefreely/\">PREPARATION FOR MOVEMENT &amp; EXERCISE</a>\n\nThere is nothing like this in our industry and this can be delivered as a short \'prep clinic\' prior to present classes, one to one sessions\n\nor\n\nblended into your PT session or group exercise class\n\nor\n\ndelivered as a \'session\' or \'class\' in itself\n\nWould YOU like to learn how you can deliver this fantastic simple ‘work out’ into businesses in your local area?\n\nWould you like to generate another avenue for income?\n\nWould you like to be the first to approach local offices with an answer to some  of their occupation health costs?\n\nWould you like some quality education that comes with a huge amount of support beyond the classroom?\n\n<a href=\"https://www.biomechanicseducation.com/imovefreely/\">REGISTER YOUR INTEREST HERE</a>','Lack of Confidence','','draft','closed','closed','','lack-of-confidence','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1188',0,'post','',0),(1189,0,'2016-08-10 06:23:26','2016-08-10 06:23:26','','','An isolated shot of a businessman doing push up while working on his laptop','inherit','closed','closed','','working-businessman','','','2016-08-10 06:23:26','2016-08-10 06:23:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/pushupsiStock_000004578917Large-1.jpg',0,'attachment','image/jpeg',0),(1193,3,'2016-08-12 06:13:41','2016-08-12 06:13:41','<strong>My friend sent me this message for all of US...</strong>\n\n<em>I walked into the local chip shop the other day and asked for deep fried Gadus Morhua and similarly prepared Solanum tuberosum, proceeded to my domicile  and processed the afore mentioned through the various stages of my digestive tract along with a large quantity of fermentum….in <u>normal</u> words I went to the chippy and got cod and chips, went home and had my supper with a load of beer.</em>\n\n<em>Simple, no need to complicate and everyone knows exactly what your saying…and this is how life is in general…unless your talking to a health or fitness professional.</em>\n\n<em>Going the gym for the first few times or seeking out a personal trainer can be quite intimidating for Joe or Jill public and it’s great to find someone that is knowledgeable and helpful but please…stop using Latin or medical terms for muscles or movements….to us average Joe’s…we have thighs not quadriceps femoris (or even quinriceps femoris if modern thinking is to be believed)<strong>,</strong> I have an ASS not gluteus maximus, gluteus medius and gluteus minimus…..I have one ASS…I don’t think of it as three different entities. </em>\n\n<em>My point being, why do you feel the need to talk like this? Is it to demonstrate your knowledge or our ignorance? Do you feel the need to intimidate us, beat us into submission with your superior knowledge before we have even lifted a weight? </em>\n\n<em>If talking like that is normal to you…sorry but us ‘lay’ people just don’t talk like you do….and we, the average Joe and Jill, are people. Most of your potential clients won’t say “please stop, I’m a bit thick and I don’t have a clue what you’re talking about”</em>\n\n<em>While we are here in this ‘zone’, let’s also consider the targets that YOU set us mere mortals when WE just want to slow down the ageing process, look good in a t-shirt or keep our asses from hitting the floor when wearing leggings, six packs (or eight packs…because six isn’t enough these days) are things that Olympians and Feather weight boxers have …WE will stick to the gruelling tempo you set and thank you for the pain you have caused us at the end of the supervised session but as soon as we are on our own, we are on the phone texting while having a leisurely stroll on the treadmill. This is because you don’t understand our nature..we are not lazy..we just don’t prioritise in the same way as you. You jog to work, we drive to the shop around the corner, you get up early to go for a swim, we have a lie in because we drank too much the night before. </em>\n\n<em>Instead of screaming for one more rep on the smith machine, encourage us to walk to the shop…help us formulate a long term plan with small changes to our lifestyles rather than giving us a sudden intense shock to our systems….Its not more pain more gain..its too much pain leads us to want to miss gym days and eat ice-cream and ibuprofen in equal measures.</em>\n\n<em>After listening to your Latin lesson and all…you have looked at our diet while grimacing every now and then, you have talked about the evil of sugar, the healthy fats and horrors of low density liposomes, You have described in great detail the wonders of egg whites, whey protein and tuna, you have imparted your knowledge and expertise..jeez..some of you even go as far as supplying recipes for colossal success….guess what…we are going to continue with beer, chocolate and Friday night pizza…but you will catch us with a protein shake at the gym….its even the one you recommended!</em>\n\n<em>So my dear Health or Fitness professional…try to be realistic with OUR goals, help US achieve some semblance of initial success without huge amounts of pain or inconvenience and wonder of wonders we might just stick with it and make it part of our lives instead of just another discarded new year’s resolution.</em>\n\n<em>Regards Fatty ☺</em>\n\n-----------------------------------------------------------------------------------------------------------\n\nSomething that is a key part of our education programmes is encouraging professionals to communicate more effectively with clients.\nKeeping THEIR goals relevant to what THEY want, THEIR lives, THEIR ideals while managing expectation on BOTH sides.\nWe shouldn\'t push OUR ideals onto THEM.\nYES educate\nYES motivate\nOH YES\nBUT we should be careful of <em>imposing </em>OUR<em> </em>unrealistic goals based on what WE feel they SHOULD do when it does not matter as much to THEM.\n\nLet us know your thoughts...?\nrachel@biomechanicsducation.com','A Message From Fatty...','','draft','closed','closed','','a-message-from-fatty','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1193',0,'post','',0),(1194,0,'2016-08-12 06:13:21','2016-08-12 06:13:21','','','','inherit','closed','closed','','screen-shot-2016-08-12-at-07-13-04','','','2016-08-12 06:13:21','2016-08-12 06:13:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-12-at-07.13.04-1.png',0,'attachment','image/png',0),(1196,3,'2016-08-15 16:58:08','2016-08-15 16:58:08','This message came to me from another learner training in our academy this year;\n\nHi Rach,\n\n<i>My mind was blown today...</i>\n\n<i>I did a biomechanics session with one of my close friends at the yard, it\'s the first time she had done a session with the jacket and the software that I use and she was very surprised to see how wonky she was! </i>\n\n<i>As a bit of an experiment (we hadn\'t done a screening before) I got her off the horse and got her to do the 4 sign exercise. </i>\n\n<i>She then got back on the horse, and with absolutely no other direction or instruction I got her to ride the same line and filmed her...we were both amazed to see the difference in the positioning of her pelvis, feet and the improvement it had immediately on the horse\'s straightness! </i>\n\n<i>I have attached the photos *see right. </i>\n\n<i>I did the screens afterwards and found a huge difference in range and symmetry particularly on the 4 sign test. I have set her about doing the 4 sign test everyday four times a day and we have another intrinsic biomechanics screening session scheduled in a week to see the difference. </i>\n\n<i>I absolutely LOVE seeing the improvement in riders but this stuff is ridiculously good!!</i>\n\n<i>Can\'t wait to learn more and the end of the month!!</i>\n\n<i>Hope you don\'t mind the update but just had to share this!</i>\n\nDo you want to learn these skills too?\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">REGISTER YOUR INTEREST HERE</a>','My Mind Was Blown..','','draft','closed','closed','','my-mind-was-blown','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1196',0,'post','',0),(1197,0,'2016-08-15 16:58:02','2016-08-15 16:58:02','','','','inherit','closed','closed','','screen-shot-2016-08-15-at-17-56-12','','','2016-08-15 16:58:02','2016-08-15 16:58:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-15-at-17.56.12-1.png',0,'attachment','image/png',0),(1200,0,'2016-08-16 08:19:56','2016-08-16 08:19:56','','no_image','','inherit','closed','closed','','no_image','','','2016-08-16 08:19:56','2016-08-16 08:19:56','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/no_image-1.gif',0,'attachment','image/gif',0),(1201,0,'2016-08-16 12:30:25','2016-08-16 12:30:25','','','','inherit','closed','closed','','no_image-2','','','2016-08-16 12:30:25','2016-08-16 12:30:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/No_Image-1.jpg',0,'attachment','image/jpeg',0),(1202,0,'2016-08-17 07:31:31','2016-08-17 07:31:31','','','','inherit','closed','closed','','tom_waldron','','','2016-08-17 07:31:31','2016-08-17 07:31:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/tom_waldron-2.jpg',0,'attachment','image/jpeg',0),(1203,0,'2016-08-17 07:31:51','2016-08-17 07:31:51','','','','inherit','closed','closed','','ben_coomber','','','2016-08-17 07:31:51','2016-08-17 07:31:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/Ben_Coomber-1.jpg',0,'attachment','image/jpeg',0),(1204,0,'2016-08-17 07:32:10','2016-08-17 07:32:10','','','','inherit','closed','closed','','brendan_chaplin','','','2016-08-17 07:32:10','2016-08-17 07:32:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/Brendan_Chaplin-1.jpg',0,'attachment','image/jpeg',0),(1205,0,'2016-08-17 07:32:30','2016-08-17 07:32:30','','','','inherit','closed','closed','','stephen_aish','','','2016-08-17 07:32:30','2016-08-17 07:32:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/Stephen_Aish-2.jpg',0,'attachment','image/jpeg',0),(1206,0,'2016-08-17 07:32:55','2016-08-17 07:32:55','','','','inherit','closed','closed','','flech','','','2016-08-17 07:32:55','2016-08-17 07:32:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/Flech-1.jpg',0,'attachment','image/jpeg',0),(1207,0,'2016-08-17 07:33:11','2016-08-17 07:33:11','','','','inherit','closed','closed','','mairi_taylor','','','2016-08-17 07:33:11','2016-08-17 07:33:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/Mairi_Taylor-1.jpg',0,'attachment','image/jpeg',0),(1209,0,'2016-08-17 07:40:52','2016-08-17 07:40:52','','','','inherit','closed','closed','','tom_waldron-2','','','2016-08-17 07:40:52','2016-08-17 07:40:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/tom_waldron-1-1.jpg',0,'attachment','image/jpeg',0),(1210,0,'2016-08-17 07:41:08','2016-08-17 07:41:08','','','','inherit','closed','closed','','stephen_aish-2','','','2016-08-17 07:41:08','2016-08-17 07:41:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/Stephen_Aish-1-1.jpg',0,'attachment','image/jpeg',0),(1211,0,'2016-08-17 07:41:26','2016-08-17 07:41:26','','','','inherit','closed','closed','','mike_grice','','','2016-08-17 07:41:26','2016-08-17 07:41:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/Mike_Grice-1.jpg',0,'attachment','image/jpeg',0),(1212,0,'2016-08-17 07:44:32','2016-08-17 07:44:32','','','','inherit','closed','closed','','rachel_france','','','2016-08-17 07:44:32','2016-08-17 07:44:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/Rachel_France-1.jpg',0,'attachment','image/jpeg',0),(1213,0,'2016-08-17 10:02:22','2016-08-17 10:02:22','','','','inherit','closed','closed','','biomachanices_logo','','','2016-08-17 10:02:22','2016-08-17 10:02:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/biomachanices_logo-2.jpg',0,'attachment','image/jpeg',0),(1214,0,'2016-08-17 10:05:39','2016-08-17 10:05:39','','','','inherit','closed','closed','','biomachanices_logo-2','','','2016-08-17 10:05:39','2016-08-17 10:05:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/02/biomachanices_logo-1-1.jpg',0,'attachment','image/jpeg',0),(1219,3,'2016-08-19 11:42:03','2016-08-19 11:42:03','<b>Another re-post by request, of a Juicemail we published in 2015 to explain the roots of <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaching™</a>...</b>\n\nRecently I decided to do some research into the origins of my profession having known, and taught for many years, that the education programmes we deliver all started with ‘Remedial Gymnastics’ (RG).\n\nWhat I found interesting was the definition of the role of an RG still to this day holds true to what a <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coach™</a> (BC) does too.\n\nRemedial Gymnastics is a special treatment method that involves the means of preventative physical training to accelerate patients working capacity and avoid consequences of pathological process.\n\nAnother definition I came across based on the understanding of this type of approach was:\n\nUses movement as the basic means for the purpose of prevention and correction. Correctly chosen and well directed movements help faster and more successful restoration of impaired function of certain segments of the organism as a whole\n\n<strong>AIMS &amp; APPLICATION (of RG/BC)</strong>\n\n<strong>Increase in the scope of movement of the joint</strong>\n\n<strong>Increase in muscle power </strong>\n\n<strong>Maintenance and improvement in coordination of movement</strong>\n\n<strong>Rise in the speed of movement</strong>\n\n<strong>Improvement in general and local stamina</strong>\n\nBy certain exercises a series of our objectives are realised: improvement of circulation, after transportation of energetic potential to feed tissues, improvement in metabolic and regeneration processes, reduction of pain, relaxation, psychological balance or such\n\nFounder of the Intrinsic Biomechanics method that we call Biomechanics Coaching™, Martin Haines, was originally an RG before it merged with physiotherapy and he went on to become a chartered physiotherapist.\n\nHe recognised the value in having BOTH the RG and physiotherapy methods combined available to individuals since many of the ‘injuries’ or low grade non specific problems people were experiencing did not require site specific treatment but a more general means to over come discomfort with the use of simple exercises. He recognised that should this type of problem go unaddressed for a period of time it may well result in a more severe condition the requiring the attention of a physiotherapist. Therefore the 2 professionals working along side each other is a perfect combination for the overall recovery and improvement in movement of the client.\n\nHowever Haines took his ideas even further. Having access to isokinetic equipment meant he could trial and test his, and his colleague Nick Barrow’s ideas. This evolved a tried and tested series of manual assessments to identify where an individual may have a risk of injury waiting to occur. This systematic ‘functional’ approach to injury prevention is quite unique in that level 3 exercise professionals are perfectly placed to deliver this kind of programming.\n\nSo, we as PT’s, Fitness professional’s, Pilates or Yoga teacher’s are the exercise experts and we are crying out for objectivity in our assessment and exercise prescription process! Which is why the Intrinsic Biomechanics methodology of Biomechanics Coaching™, that has evolved from the RG professional since the 1980’s, is having such a massive success in the fitness industry.\n\nThe badge you see above depicts the Society of RG’s crest with the motto in latin;\n\n<em>SPES SIBI QUISQUE</em>\n\n<em>Let each man’s hope be in himself </em>\n\nor put another way, <em>‘rely on his own resources’</em>.\n\nThis is absolutely the ethos of being a BC. To empower individual’s, clients, participants, patients, whatever we define them as, to care for themselves, take ownership of their physical state and consider the impacts of their chosen lifestyle.\n\nWe are the professionals who prepare people for movement, educate people how to regain functional capacity, inform people where to begin using a tried and tested system, identify risk, teach true function, all with simple logic and exercise guidance.\n\nWe form alliances with those who have a different skill sets, knowing what WE know really well and accepting we do not have certain skills therefore utilising our clinically trained colleagues for occasions where clients have ‘true’ medical injuries.\n\nDo You Want To Join Us?\n\nAre you A PT? Exercise Professional? Pilates Instructor? Yoga Teacher?\n\nDo You Want To Help More People?\n\nDo You Want Simple Principles To Gain Confidence?\n\nDo You Want Full Support In The Application Of ALL Of Your Skills?\n\nHurry Time Flies…..Places Are Already Going Fast...!!\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">REGISTER YOUR INTEREST for 2017 WORKSHOPS HERE </a>\n\nArticle References:\n\n<a href=\"http://www.mediclub.az/en/35\">http://www.mediclub.az/en/35</a>\n\n<a href=\"http://hansard.millbanksystems.com/lords/1986/mar/24/professions-supplementary-to-medicine\">http://hansard.millbanksystems.com/lords/1986/mar/24/professions-supplementary-to-medicine</a>\n\n<a href=\"http://archives.wellcome.ac.uk/DServe/dserve.exe?dsqIni=Dserve.ini&amp;dsqApp=Archive&amp;dsqDb=Catalog&amp;dsqCmd=show.tcl&amp;dsqSearch=(RefNo==\'SACSP%2FL\')\">http://archives.wellcome.ac.uk/DServe/dserve.exe?dsqIni=Dserve.ini&amp;dsqApp=Archive&amp;dsqDb=Catalog&amp;dsqCmd=show.tcl&amp;dsqSearch=(RefNo==\'SACSP%2FL\')</a>\n\n<a href=\"http://www.health.nsw.gov.au/careers/conditions/Awards/dt_hsu_remedial_gymnast.pdf\">http://www.health.nsw.gov.au/careers/conditions/Awards/dt_hsu_remedial_gymnast.pdf</a>\n\n<a href=\"http://www.feellife.rs/eng/remedial-gymnastics.html\">http://www.feellife.rs/eng/remedial-gymnastics.html</a>','Remedial Gymnastics','','draft','closed','closed','','remedial-gymnastics','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1219',0,'post','',0),(1220,0,'2016-08-19 11:41:54','2016-08-19 11:41:54','','','','inherit','closed','closed','','screen-shot-2016-08-19-at-12-31-22','','','2016-08-19 11:41:54','2016-08-19 11:41:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-19-at-12.31.22-1.png',0,'attachment','image/png',0),(1222,3,'2016-08-22 20:18:46','2016-08-22 20:18:46','Grace is a 23yr old writer, and a very gifted one at that.\n\nGrace sees value in telling others how she feels and also telling people why she communicates in a certain way or feels better when WE communicate with HER in a certain way.\n\nHow refreshingly simple…To tell others how you best receive and process information!\n\nSurely this should be encouraged in education facilities from schools to colleges, to universities and further education beyond, right…?\n\nI know I certainly appreciate it when MY learners tell ME how they best receive the information in my classroom and in fact the sessions I enjoy most are the learner lead, facilitation session that FEEL more like a group discussion\n\nWHY?\n\nBecause there is far more going on than simply passing on information.\n\nANYONE can pass on information\n\nANYONE can show you an image or some text or read to you or play you a video..\n\nBUT\n\nCan you create an unforgettable experience ..?\n\nHere are what I believe to be 2 of the key factors to delivering really great educational experiences;\n\nManaging facilitation of discussions that remain inclusive and relevant to the aims and objectives of the session.\n\nWhile doing so remaining confident in this style of ‘ad- lib’ teaching that doesn’t come in the lesson plan, isn\'t ‘prepared’ for in the reading the night before, wasn’t necessarily on the syllabus or the curriculum, but at THAT moment, for WHATEVER reason it has come up in a group discussion and the teacher recognises it as a ‘learning rich moment’ for development of those individuals present!\n\nMy own learning expands during MY teaching as I absorb information from my learners experiences, knowledge and expertise during those group discussions. Since I am in an industry where the people I teach are already qualified, insured, practicing and have loads of experience…\n\nWHY WOULDN’T I LEARN FROM THEM TOO…!?\n\nAnyway where was I?\n\nYes, Grace …..\n\nGrace communicates really well how she feels and she does this to enable others to understand how she thinks, feels and communicates and she does this in a positive way for both parties, with a fantastic sprinkle of her humour too!\n\nFor YOU as a PT, exercise professional, fitness professional or therapist do you think understanding how to communicate with clients would be helpful too?\n\nObviously, right?\n\nYet it takes time to learn the best communication techniques for each person, the mediums and motivators that help them flourish and feel successful.\n\nIf YOU would like to learn how some others communicate please take a moment to read Grace’s blog and raise awareness that we..\n\nDO NOT ALL give and receive information in the same way.\n\n<a href=\"http://unwrittengrace.wordpress.com\">READ GRACE\'S BLOG </a>\n\nThank you Grace!!\n\n<a href=\"http://www.autism.org.uk/get-involved/tmi/stories/grace-liu.aspx\">READ MORE </a>','Unwritten Grace','','draft','closed','closed','','unwritten-grace','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1222',0,'post','',0),(1223,0,'2016-08-22 20:18:37','2016-08-22 20:18:37','','','','inherit','closed','closed','','screen-shot-2016-08-22-at-20-59-30','','','2016-08-22 20:18:37','2016-08-22 20:18:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-22-at-20.59.30-1.png',0,'attachment','image/png',0),(1225,3,'2016-08-24 08:32:15','2016-08-24 08:32:15','Are you caught up INSIDE your business wondering how you can make more AND do less?\n\nor\n\nMaybe you just want to do more of the stuff you LOVE to do?\n\nMarketing magician to the fitness industry, Chris Wright, is changing the working lives of Biomechanics Coaches™ &amp; PT\'s all over the UK, who are just like YOU!\n\nHere in this Juicemail, this super cool guy is offering an insight into his <a href=\"http://biomechanicseducation.us3.list-manage.com/track/click?u=6f458d653bd47a8a28461394b&amp;id=06352f1f1c&amp;e=5903c8c1c6\">one day business workshop Sat 8th Sept at Loughborough University.</a>\n\nREAD ON MY FRIENDS…\n\n<i>I have tons of memories when that phrase, “It’s right in front of your nose” was shouted at me by my mum or dad growing up…. Ok I’ll be honest, Shelly even said it to me just yesterday :-)</i>\n\n<i>You go into the kitchen looking for something, and you have already told yourself that you don’t know where it is. You look, but don’t see it. Someone else comes in and there it is staring back you in the most obvious place possible. “It’s right there!!!!!” It is literally right in front of your nose…..How did you miss it?</i>\n\n<i>You saw it, you must of have done, it\'s right there, but the brain didn\'t register it because you told it not to. You said, “I am not going to find it because I don’t know where it is”, so the brain did as instructed.</i>\n\n<i>And we do this all the time with our lives, and businesses.</i>\n\n<i>I see this all the time with clients (note this is why it’s always good to have a coach in areas that you are working on). It’s often the things and people right in front of us that could be hugely helpful to us and our businesses that we completely skip over. Not intentionally (sometimes subconsciously), but we just don’t think about it. </i>\n\n<i>We tell ourselves that our friends probably can’t help us, so we don’t even ask. We tell ourselves that we won’t ever meet or connect with certain individuals, so we don’t even try. And then moan that others get lucky when they meet them….they didn’t get lucky. They put themselves in positions to meet them.</i>\n\n<i>I want to first tell you that no one is successful by themselves. Amazingly successful people have teams of people around them, friends, family etc that have all helped them become who they are. </i>\n\n<i>What I want you to do is look at the potential opportunities or relationships around you.</i>\n\n<i>I am going to use an example of a client I have been working with recently, they laughed a lot with this and I hope won’t mind me sharing it, as it will help so many other people.</i>\n\n<i>This person is currently employed and looking to leave their job to do what their true passion is, help people be healthier, fitter have more confidence and just be even more awesome. Best of all, they have a truly supportive team around them that are encouraging them to take the leap.</i>\n\n<i>Looking for ways to launch the business and get it off the ground quickly, I asked….. “How many employees are there in your building?”</i>\n\n<i>Answer: 400 or so.</i>\n\n<i>Me: And none of them want to help with their health and fitness?</i>\n\n<i>Answer: I have never asked!</i>\n\n<i>Me: There are 400 people in your office, and you have never asked even one of them if they would like some help getting fit?</i>\n\n<i>Answer: When you put it like that it sounds ridiculous. I will do something about that immediately.</i>\n\n<i>These people either already know them, or at least are familiar with other people who may use their services.</i>\n\n<i>Me: The boss already knows, likes &amp; trusts you and wants to support you with your leap into your new business. Do you think they might be willing to pop an email round all the employees promoting you, or even set up an employee fitness programme?</i>\n\n<i>Answer: There’s no harm in asking</i>\n\n<i>EXACTLY!! Even if the answer is no...it doesn’t matter!</i>\n\n<i>Put this way… If you set up a group programme and get 20 people to pay you £97/month - you have £1,940/month….. And you have a captive audience of 400! Go get those 20 people :-) </i>\n\n<i>Now not everyone will have this, but I am telling you there are opportunities all around you that you will be missing out on.</i>\n\n<i>So it’s time to make a list :-) </i>\n\n<i>Look at your family, friends, colleagues, your current clients.</i>\n\n<i>Who do they know? Have you ever told them that you are looking to get into certain places or meet certain people? </i>\n\n<i>Have you even told them what your business is about and who you serve? Often the answer is no. And yet how often does someone tell you something, or about a restuarant, or activity they went on, and you go… “You know who would love this… Julie. I will tell her about this”</i>\n\n<i>Where do your friends work? What roles do they have in those companies? They may not be the managing director of a company that has 400 people on site, but could they introduce you to someone who you would need to speak to about setting up a programme to help their employees move better. Of course!</i>\n\n<i>Where do your clients work? Who do they know that would help you grow your business?</i>\n\n<i>Are you part of sports clubs, communities, groups of people? Can you promote through those?</i>\n\n<i>All you have to do is ask.</i>\n\n<i>And that’s the bit everyone really struggles with. Why? Because we freak out that answer will be NO…. why do we freak out about that? It doesn’t matter.</i>\n\n<i>Or perhaps we say we don’t want to ask our friends for help…. Why? If a friend came to me, and asked me for help, and I could help them, or introduce them to someone I would happily do it! </i>\n\n<i>You see it’s our own insecurities that stop us from asking, that stop us from growing. So it’s time to get over it :-) </i>\n\n<i>Also, I do understand that people often don’t know what to ask for, right? Well, this post has hopefully got you thinking, and should as a result have given you some ideas.</i>\n\n<i>Here is how a conversation with a friend could go…..</i>\n\n<i>You: “Hey Mark, I know you work at (insert company name), I would love to come in and do a free talk for your team, who do you think would be best to talk to about that?</i>\n\n<i>Mark: That would probably be John.</i>\n\n<i>You: Great, could you introduce me to them?</i>\n\n<i>Mark: Sure thing. Email ok?</i>\n\n<i>As a Biomechanics Coach™ for example who are you looking for as clients? Who is already serving those clients? Or where are those potential clients? Who do you need to connect with to be in front of those people?</i>\n\n<i>So get out there start looking for the opportunities and start ASKING :-)</i>\n\n<a href=\"https://www.biomechanicseducation.com/workshop/launching-growing-your-business-with-biomechanics-coaching/\">CLICK HERE TO BOOK </a>\n\nLAUNCH &amp; GROW YOUR BUSINESS\n\n1 Day Workshop\n\nSaturday 8th September\n\n9:30-4:00pm\n\nLoughborough University\n\n£180\n\nIf you have enjoyed this post, then make sure you tune in to my new podcast, The Entrepreneur Playbook: Strategies For Success In Business &amp; Life. Subscribe now CLICK ON;\n\n<a href=\"https://itunes.apple.com/gb/podcast/entrepreneur-playbook-podcast/id1133978599?mt=2\">iTunes </a>\n\nor\n\n<a href=\"http://subscribeonandroid.com/level10living.co.uk/feed/podcast/\">Android  </a>\n\nor\n\n<a href=\"https://soundcloud.com/the-entrepreneur-playbook\">Soundcloud</a>\n\nAlso I would love to connect with you, so make sure you come and join the community in these various places:\n\nFacebook: https:<a href=\"https://www.facebook.com/YourLevel10Life/\">//www.facebook.com/YourLevel10Life/</a>\n\nTwitter: https:<a href=\"https://twitter.com/YourLevel10Life\">//twitter.com/YourLevel10Life</a>\n\nInstagram: https:<a href=\"https://www.instagram.com/yourlevel10life/\">//www.instagram.com/yourlevel10life/</a>\n\nSnapchat: https:<a href=\"//snapchat.com/add/level10living\">//snapchat.com/add/level10living</a>\n\nMy personal facebook: https:<a href=\"https://www.facebook.com/ChrisWright17\">//www.facebook.com/ChrisWright17</a>\n\nAll I ask is that if you connect with me personally, just pop me a message saying HI, tell me a little about you, what most excites you in your world right now, and that you read this and wanted to connect.','\"It\'s Right In Front Of Your Nose\"','','draft','closed','closed','','its-right-in-front-of-your-nose','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1225',0,'post','',0),(1226,0,'2016-08-24 08:31:58','2016-08-24 08:31:58','','','','inherit','closed','closed','','screen-shot-2016-08-24-at-09-31-37','','','2016-08-24 08:31:58','2016-08-24 08:31:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-24-at-09.31.37-2.png',0,'attachment','image/png',0),(1228,0,'2016-08-24 08:36:15','2016-08-24 08:36:15','','','','inherit','closed','closed','','screen-shot-2016-08-24-at-09-31-37-2','','','2016-08-24 08:36:15','2016-08-24 08:36:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-24-at-09.31.37-1-1.png',0,'attachment','image/png',0),(1231,3,'2016-08-26 07:02:02','2016-08-26 07:02:02','PGA advisor, Martin Haines, is back!!\n\nDo you play golf?\n\nDo your clients play golf?\n\nWould you like to play golf without feeling back pain?\n\nWould your clients like to play golf without feeling back pain?\n\nWell one of the luxuries of my job is working with some of the smartest, nicest and coolest people in our industry, as you probably already know because I like to share!\n\nHaving a world leader in biomechanics as, not only a colleague, but also as a close friend means I get to bring this fantastic opportunity to those of you who have an interest in golf...\n\nHere is a sample of the kind of things Martin talks about in relation to golfers;\n\n<i>One of the most disabling and common ailments in our golfers today (and our society in general) is back pain.  In fact according to a top researcher, lower back pain is as common as headaches in modern society. </i>\n\n<i>A recent study showed that if you see your GP with your back pain, if he then refers you to a specialist, who then sends you for X-rays and MRI scans, the accuracy of diagnosis is 15-20%.  A frightening yet little known fact.  Unfortunately the principles of modern medicine mean that the medical profession cannot treat an injury without an accurate diagnosis; so is there any wonder why the incidence of back pain has doubled every 10 years for the last 30 years?  </i>\n\n<i>As you can imagine, the problem is made even worse when you have had back pain for some time, especially if you are a golfer where the high speed spinal movements increase the pressure on your spine significantly.  The problem is that when you have had an injury for more than 6 weeks, another part of your body will start to compensate so you can have new pains as your condition deteriorates.  So you can actually end up with more than one injury due to the mechanical compensations, which makes diagnosis even more difficult. We need to shift the paradigm and look at back pain differently.  </i>\n\n<i>Scientists, called Biomechanists, have been looking at back pain quite differently for some time.  They look at the mechanical causes of back pain rather than focusing on the pain itself. They have found that they get better results by managing the biomechanical causes than many in the medical profession achieve by treating the symptoms. </i>\n\n<i>In fact independent research has shown that if you see at Physiotherapist over a 6 week period for your low grade back pain, your average improvement will be around 39% in functional capacity (the capacity of your back to perform work).  If however you were to perform an exercise programme to manage the mechanical causes of your back pain, your average improvement would be around 140%.  A profound difference and one that cannot be ignored.</i>\n\n<i>This biomechanical approach is rapidly taking over from the medical approach in popularity as a much more effective method of treating back pain.</i>\n\n<i>Of course no single method can be the panacea of all ills, but what we are finding is that if the mechanical causes are addressed, the pain can subside without treatment on the \'injury\', whatever it might be.  Sometimes treatment is also required, however, but often golfers find that once they\'ve committed to an exercise programme to address the causes of their pain, they are then more able to manage the problem themselves.  Then if local treatment is necessary, it is more likely to be successful, as the mechanical causes are no longer present.</i>\n\n<i>Considering the problems that golfers can have with back pain, prevention is important as it’s far less painful, less inconvenient and far less expensive! The same biomechanical principles that can help manage back pain, can be adopted to minimise the risk.  So the ‘take home message’ for them is to find a Biomechanics Coach™, get screened and learn which are the best exercises for you personally.</i>\n\nOR\n\nWould you like to learn more about how you can help yourself AND your golf players?\n\n<a href=\"https://www.biomechanicseducation.com/workshop/golf-workshop/\">GOLF BIOMECHANICS WORKSHOP</a>\n\nSATURDAY 17th SEPTEMBER\n\nLOUGHBOROUGH UNIVERSITY\n\n9:30AM-4:00PM\n\n£150\n\nBOOK YOUR PLACE NOW','Back Pain Playing Golf?','','draft','closed','closed','','back-pain-playing-golf','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1231',0,'post','',0),(1232,0,'2016-08-26 07:01:43','2016-08-26 07:01:43','','','','inherit','closed','closed','','screen-shot-2016-08-26-at-08-01-16','','','2016-08-26 07:01:43','2016-08-26 07:01:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-26-at-08.01.16-1.png',0,'attachment','image/png',0),(1234,3,'2016-08-28 06:37:54','2016-08-28 06:37:54','THIS was one of the most profound influences on my own confidence about my knowledge of anatomy.\n\nAs you know (because I keep harping on about it) I am NOT academic, so learning muscles names and where they attach and how they move the joints/bones etc was an area I liked confidence in. This was particularly an issue since my job was teaching about it.\n\nMy wonderful mentor put me in situations that challenged me, with methods to fall back on should I be faced with a question I didn’t know the answer to.  I have since learned (and now practice) to NEVER to give the answer - this is known as a LEARNER LEAD classroom and allows for exploratory discussion about the logical principles of anatomy which makes remembering it much easier.\n\nClearly knowing the anatomy is very important when teaching how we understand movement and the way tissues and structures within the body work and influence each other..\n\nBUT\n\nThe more I have learned the more I have realised just how GREY this subject is ….in that there aren\'t so many hard and fast rules as most of the anatomy books would imply.\n\nHowever we require some clarity using certain rules to follow in the beginning to allow us to understand and comprehend certain things in a layered leaning way. Hence level 2 gym instructor qualifications, followed by level 3 PT and so on…\n\nSo I was lucky enough to have the opportunity to access Keele Medical labs through Master Trainer, Biomechanics Coach and TMC16 presenter, Mike Grice. In fact attended several cadaver days there back in around 2009-2011\n\nNow like most people my initial feeling about seeing a dead body, known in this instance as a \'cadaver\', was one of anxiety about the smell and that kind of weird feeling that you might imagine goes along with being in the presence of someone who is actually not alive any more.\n\nHOWEVER the medical lab technicians were just AMAZING at educating us on everything so that we could in fact just get stuck into learning REAL anatomy, so to speak. The embalming fluid (made up of formaldehyde, glutaraldehyde, methanol and other solvents) did smell a bit funny but ANY chemical does.\n\nAlso the technicians did an excellent job of explaining that these people had offered their bodies to science to educate people like us and to help us all understand all the stuff that is really inside of us a little bit better. This impacted on me in a big way hearing this and how I felt about being in there. So I felt more of a respect for the bodies/people I was analysing than the immaturity of it being weird, if you like.\n\nANYWAY with my hair tied back, aprons and gloves on we were all taken into a seating area at one end of the lab. I noticed there were blue plastic covers over the cadavers as we were offered seats in front of a slide presentation. Here embryology was explained to us in its simplest terms, which was fascinating. It was explained to us how they do the embalming process, how long the bodies were kept and of course the laws, rules and regulations of being involved in touching human tissue of the deceased.\n\n10 minutes later when we turned around, I noticed the blue covers had been removed and we were taken towards the first 2 bodies. The one male and one female actually looked like they were sleeping and they had been dissected slightly differently to show us different things. For example the male\'s chest was dissected to show us the muscle tissue layers on one side but the other side was dissected to show the ribs and then the organs underneath as we were told we could lift each part up and fold them back to see.\n\nWOWZERS!\n\nAny remaining feelings of weirdness simply disappeared with pure fascination at what we were actually looking at and TOUCHING! This wonderful gentleman had wanted US to study HIM from the inside to understand better how to help others.\n\nYou know what, I actually felt honoured!\n\nSo we started to look for the pec minor attachments since we have an assessment we do for this very muscle in our programme. The anatomy books will show you a very sharply defined 2D view of how this muscles looks to represent what, in reality, is not so smooth and more of a rugged texture and the attachments on THIS person did not simply attach to, and stop on, the corocoid process and 3-5th ribs. The ‘striations’ of the fibres actually continued across and down into the opposite hip!\n\nAnother cadaver\'s pec minor presented completely differently again…..we went on to look at all sorts of fascinating things including the now much talked about 5 x quads!\n\nYep 5 QUADS! Tensa Fascia Intermedius, of TFI it has now been named, challenges the very roots of some of what we knew about human anatomy in that they cannot really be \'quadraceps\' if there are actually 5 of them in some people!\n\nI LOVE this because this is the way we teach our learners within our academy. That we should always challenge everything until we can gain clarity and understanding, no matter who is telling or what the books say because they could be out of date of unaware of some new evidence or discovery.\n\nAnyway we moved onto a section of various knee joints all in different states of degeneration and the lab technician suggested we try to determine the order of least to worst degeneration. As we studied them but moving them into flexion to look at the ACL, cartilage and inner surfaces it wasn\'t as difficult as you might imagine. Specially when we found one with a chunk of metal in it!\n\nI rolled a sciatic nerve between my fingers, \'squished\' a healthy lung v\'s an unhealthy one, felt different muscle types, looked at a row of foetus displayed in jars (a bit like at the Body Work\'s exhibitions) at various stages of development and even conjoined twins that had deceased at a few months within the womb. This whole experience was mind blowing, humbling and educational on another level.\n\nWhat was most profound was;\n\nThe realisation that we are all as different on the inside as we are on the outside, maybe even more so!\n\nThat while books are created to enable us to understand anatomy better, they are very general and based on what we know SO FAR.\n\nThat we are still scratching the surface when ti comes to understanding the ways in which the human body works, adapts, evolves and functions.\n\nIf lab technicians who teach medical students anatomy don\'t always know the answer then how could WE exercise professionals expect to!?\n\nWhat I would most like to communicate across in this Juicemail is the lesson I took from my experience in the cadaver labs. That we should know what we NEED to know really well and not feel so much pressure to \'know it all\' because NO ONE does! Not event the lab technicians who teach detailed anatomy to budding surgeons!\n\nBy all means use the books to process the basics but also keep in mind that they are teaching us a very GREY subject area in a black and white way to simplify a very complex subject.\n\nLike one of my past learners who called me and said \"I don\'t agree with what the book is saying because......am I right?\' He had a very logical JUSTIFICATION as to why he wanted to challenge what the book said but he was almost nervous about challenging the book. I congratulated him on this and said the most important thing is that you are thinking like this and using logic from your own understanding and not simply accepting what another is telling you.\n\nENJOY the process!\n\nTry not to allow anxiety or doubt to affect your learning experience and rest assured if you are one of those considering joining our academy we are a constant support for you along your fantastic journey in this wonderful world of the human body and movement!\n\nOur waiting list is growing so don\'t miss out, simply leave us your email to receive our priority email with the 2017 schedule upon release..\n\n<a href=\"https://www.biomechanicseducation.com/contact-us/\">JOIN US in 2017 by registering your interest early HERE</a>','Feeling Dead Bodies!','','draft','closed','closed','','feeling-dead-bodies','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1234',0,'post','',0),(1235,0,'2016-08-28 06:37:44','2016-08-28 06:37:44','','','','inherit','closed','closed','','screen-shot-2016-08-28-at-07-37-26','','','2016-08-28 06:37:44','2016-08-28 06:37:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-28-at-07.37.26-1.png',0,'attachment','image/png',0),(1238,3,'2016-08-31 05:52:28','2016-08-31 05:52:28','This Juicemail is dedicated to a gorgeous young lady who I met through my S&amp;C buddy, Boris, at the Elite Sports Performance Expo where I was exhibiting with our partners, the Sports Therapy Association. After a brief chat I also find out she had been training with some of my Biomechanics Coach™ guys for years, Daryl and Rob!\n\nAmber and I hit it off straight away and it was clear she has a really passion for our industry and, to my joy, superb event management skills!\n\nWithin a very short space of time she became our <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">TMC16</a> events manager and so I wanted to introduce you to just one of our newest team members.\n\nThe other person this is dedicated to is Sam, whom I never got the opportunity to meet but I will let Amber tell you about here in her own words...\n\n<i>By day… straight haired, clean cut, smartly dressed, heels when really put under duress - Head of Events for London based corporate agency. Literally feeling my shoulders drag forward, hip flexors tighten and shoulders/traps tense as I sit at my desk striving to meet my next deadline!</i>\n\n<i>By evening and weekend… workout clothes, trainers or lifting shoes, hair up or in lazy curls and after much mobilisation and activations, moving freely – training, lifting, cycling, laughing and pushing myself towards the me I want to be… strong, athletic, healthy and happy!</i>\n\n<i>My professional background is 16 years in the agency world of corporate event management which I do enjoy! I meet amazing people, travel the world and have the privilege of mentoring and coaching a remarkable team in operational event management, client relationships and on a subliminal and sometimes not too subtle level, gently encouraging each of them to balance their diets and the benefits of using exercise as a stress reliever as opposed to that nightly bottle of wine! I have had some success. My proudest is now one of my best friends who has truly changed her mind set and lifestyle; she loves lifting, looks forward to the gym and is well along the way to achieving her goals! Hey I was proud when she was even in the right frame of mind and asked me to help her set goals!</i>\n\n<i>On a health and fitness level, I have always been sporty but never dedicated myself to one particular sport; I just love being active and the feeling of a hard training session! I was introduced to lifting in my early 20’s and instantly hooked! My desire to be thin turned into a desire to be strong and beat PR’s, and then my hobby turned into my passion! My genuine passion found me reading constantly and irritating my trainers by questioning everything! I owe a lot to the fab trainers I’ve worked with over the years whom I can now call my friends, mentors and people I aspire to be like.</i>\n\n<i>It’s simple, I love to train. When the rest of the world makes no sense, I jump on my bike, go for a run or my first thought is straight down the gym, lifting shoes on and pushing myself to achieve more. I love goal setting and smashing those goals. But I live a balanced life and I love to socialise and I still love my food. Lucky I genuinely enjoy good food and have a fascination for nutrition and its effects. More recently my fascination has turned to the psychology of exercise and I am desperate to spread this message and get people helping themselves and being proud of themselves, their achievements, their bodies and having respect for themselves. </i>\n\n<i>So when Rachel asked me to be involved in <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">TMC16</a> and allow me this amazing opportunity to listen to, meet and work with such an inspirational group of industry professionals, how could I say no? I cannot wait for October 8th where you will find me running around keeping the event running smoothly but also sneaking into the back of the seminars to absorb as much information as I possibly can!</i>\n\n<i>More important, I was truly touched when Rachel offered for this years’ <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">TMC 2016 </a>chosen charity to be The Big Cheese Society, a name I appreciate will need some explaining. Cheeseman was the nickname of my amazing, truly unique, huge hearted, loved by all boyfriend Sam Rowley who was in a fatal cycle accident earlier this year. He was training for Lands Ends to John O Groats 900mile Ride Across Britain this coming September. Sam adored cycling and sport in general but his real passion was basketball, he used to say it was in his DNA! My Sam had a huge heart; he was always looking to help others and mentored younger members of both his teams, often going out of his way to pick them up if they were unable to find transport to a match. The only downside of this was you had to join in on his pre-game sing/shout along in the car to his latest pump me up song! </i>\n\n<i>So after his accident, when we couldn’t find a charity which served our primary purpose of helping under privileged children to play the game they love we set up The Big Cheese Society. The idea is grants will be offered to help a team who can’t afford a kit or a child who can’t afford boots or parents who have to work so there is no transport to reach training or a game. We will provide the kit, the boots, the taxi or coach. Keeping children in sport, active, healthy and away from gaming or wandering the streets is our primary aim with the intention the charity will organically grow.</i>\n\n----------------------------------------------------------\n\nFancy joining us in celebrating life and all things intrinsically biomechanical and more....?\n\nRemember this is just part of what is happening at this tremendous annual event and there are very limited seats to create that intimate feel for great Q&amp;A session with the industry leaders presenting... <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">CHECK IT OUT!</a>\n\nI suggest you HURRY UP final seats remaining!\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">BOOK YOUR SEAT HERE </a>\n\nAND you get to meet the very gorgeous Amber!!','The Big Cheese Society','','draft','closed','closed','','the-big-cheese-society','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1238',0,'post','',0),(1239,0,'2016-08-31 05:52:20','2016-08-31 05:52:20','','','','inherit','closed','closed','','screen-shot-2016-08-31-at-06-52-01','','','2016-08-31 05:52:20','2016-08-31 05:52:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-31-at-06.52.01-1.png',0,'attachment','image/png',0),(1241,3,'2016-09-02 08:17:13','2016-09-02 08:17:13','<strong>Congratulations to Lee Hopkins who has been nominated as Biomechanics Coach™ of the Month! </strong>\n\nLee is being recognised for his loyalty and commitment to his own beliefs and also in his self development. This allows him to pass information on during both his fantastic and unique exercise classes and also in the classroom with course students.\nSo much so we have invited Lee to become one of our Master Trainers to help us continue with the high standards of educational experiences all of our learners have in the Biomechanics Education Academy.\n\n<strong>Biography in brief</strong>\n\n<em>My name is Lee Hopkins and I am a fitness professional and sports therapist based in the South West area of London</em>\n\n<em>I have been in the industry for more than 20 years in many different roles ranging from a massage therapist, personal trainer, weight lifting coach, Pilates and yoga teacher, Les Mills presenter and a posture analysis lecturer. </em>\n\n<em>I have always had a passion for movement and a desire to understand how the human body moves/functions and now base a lot of my personal and client training on this knowledge.</em>\n\n<strong>What made you choose <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" rel=\"noopener\">Biomechanics Coaching™</a>? </strong>\n\n<em>During my career I came across Rachel France who introduced me to the concept of biomechanical screening. Her passion and knowledge really resonated with me and prompted me to undertake a Biomechanics Coach</em><em>™</em><em> Diploma which lead me to completing all of the courses available including the iMoveFreely</em>® <em> programme, which has completely changed the way I move, train and think about the body. </em>\n\n<strong>What do you specialise in outside of <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" rel=\"noopener\">Biomechanics Coaching™?</a></strong>\n\n<em>I specialise in Hatha yoga, Vinyasa flow and ‘Scaravelli inspired’ yoga as well as </em>\n\n<em>Pilates reformer, matt and floor classes and private tuition.</em>\n\n<em>I also work on resistance, strength and conditioning including kettlebells and suspension training, boxing one to one and am a qualified sports massage therapist. </em>\n\n<strong>Where do you see yourself in 10 years from now?</strong>\n\n<em>In 10 years from now my aim is to run my own studio in which I’m using my intrinsic biomechanics knowledge on a daily basis with clients to help them achieve an optimum level of fitness, movement and a deeper understanding of how their body works both as private tuition and yoga therapy.</em>\n\n<strong>What would be your advice for somebody thinking of becoming a <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" rel=\"noopener\">Biomechanics Coach™</a>? </strong>\n\n<em>I would advise anyone wishing to become a Biomechanics Coach™ to be prepared for hard work that requires dedication and patience and to have the ability to look outside the box as well as a genuine love and interest for the human body.</em>\n\n<strong>On the journey to where you are now what have been your achievements?</strong>\n\n<em>One of my key achievements was working for Les Mills as a Trainer/Presenter in Bodybalance and Body Pump.</em>\n\n<em>Through the education and training I have completed I have developed my own knowledge to allow me to work across the country lecturing in anatomy, movement, posture and yoga for Drummond Education</em>\n\n<em>Having dedicated time to my own yoga practice and learning I have been head hunted to work on a yoga/mindfulness retreat, which I am proud to say I am a part of once a month.</em>\n\n<strong>Tell us a secret…………..</strong>\n\n<em>I used to compete in Latin American ballroom dancing. </em>\n\nFancy some of the skills Lee has talked about here?\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" rel=\"noopener\">READ MORE HERE!</a>\n\n&nbsp;','Lee Confesses His Secret..','','draft','closed','closed','','lee-confesses-his-secret','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1241',0,'post','',0),(1242,0,'2016-09-02 08:17:07','2016-09-02 08:17:07','','','','inherit','closed','closed','','img_1037','','','2016-09-02 08:17:07','2016-09-02 08:17:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/09/IMG_1037-1.jpg',0,'attachment','image/jpeg',0),(1245,3,'2016-09-05 14:00:14','2016-09-05 14:00:14','Several months ago I received an email from a young lady who had done some of our training many years ago. Amy was now National Education Manager for England Athletics and was an avid reader of my Juicemail.\n\nIt was after reading one in particular she wanted to meet up and discuss an event she was organising with her colleague Paul Moseley, Coach Development and Education Manager.\n\nPaul is one of those characters you will always remember. He is sharp and funny and makes you feel at ease wit his sense of humour and yet its clear he takes his role very seriously with in the organisation. His role was to create a workforce that offered the best education programmes in sport.\n\nSo the reason for us meeting was because they wanted me to deliver a session for their teachers on how to deliver a session with creative facilitation skills, to offer a more memorable experience for their learners and therefore generate a greater positive impact on the wider audience.\n\nAfter a few emails had gone backwards, I kept asking Amy questions about exactly what they wanted…..I mean being asked to teach teachers how to teach…really?!! But as you know, embracing a challenge is something I advocate to my learners.\n\nAs I did more research into their present tutor training syllabus I started to realise how tough this gig was going to be because they were already doing such an awesome job of it!! The content was already packed with all of the regular content you would expect for educating teacher training. So what on earth was I going to bring to the table?\n\nSo I went back over my old Juicemail’s, pulled out all of my DTLLS paper work and assignments and started to consider what kind of session I could run. It needed to be different, memorable and bring something new to the table for these already skilled professionals.\n\nAfter months of planning Amy started to email me about having the resources printed out and ready for the session. This is an important part of teaching and the learners experience, to have great resources for learners to utilise during teaching sessions.\n\nMy handout was virtually a manual!\n\nPaul had agreed that it would be great to actually deliver some practical content into my session which would give the coaches something they could actually use with their athletes AND then my plan was to re-visit HOW it had been taught for that learner lead environment with lots of connection that Paul and Amy were looking for.\n\nHowever I developed an idea to create a deliberate environment to highlight an important point and so if they had a resource well..\n\n1). They would be able to read about it prior to my session which would reduce impact.\n\n2). I didn’t want them to be distracted by such an extensive handout.\n\nSo I created 2 handouts, one very short one for the session and the bigger one for afterward the event with masses of content.\n\nAs the day drew near and everything was arranged for the timings of the day I saw I was up first and the line up was incredible!\n\nWhat on earth was I doing amongst these other super qualified professionals? My old insecurities about being the ‘non-academic’ crept back as I was realised I was going to be amongst qualified teachers, professionals with psychology degree’s and a whole bunch of very experienced coaches. As I discussed these feelings with my colleagues they reminded me of the things I tell my learners about stepping into the unknown and being uncomfortable, the place where we expand and grow, the place where we discover knew abilities and explore areas we might want to work on and realise skills we maybe didn’t realise we had.\n\nThe pressure was being felt and so I had practiced, rehearsed and changed my mind on serval occasions but basically knew what I wanted to do in my session. My idea was to be different and so I had an idea but having never done it before it was certainly going to be a gamble.\n\nThe day before Amy called to check I was all set and I was actually quite excited, while still anxious, but had my colleague, Kate, coming along to assist in the practical section since there was to be 60 x people! I had my bag packed, my presentation and just wanted to be able to finally see the room to allow me to imagine the session and how I would manage the practical stuff in a conference room.\n\nAs usual I arrived mega really to gather my bearings, see the room, see Paul and Amy and get set up. As it turned out there were 43 coming which meant things would be a little easier for managing the session.\n\nIt was great to see Linda Low who was presenting a session later on about team teaching and whom I had met some 18 months ago in Jersey at The Performance Movement Summit and I felt relief when Kate arrived.\n\nAs the 43 sports coach, tutors and others started to filter into the large conference room, I felt really excited and anxious at the same time about my shock opener. I had warned Paul and Amy not be worried when I began, but that there was a point being made.\n\nPaul began the day with a welcome and then introduced me. So I walked to the front, turned my back to the group, slowly took a drink of water, turned and stood pan faced barking orders to cross one ankle over the other, change sides, speaking monotonously while looking upwards with no facial expression, that if they were asymmetrical then there was a good chance they had pelvic dysfunction.\n\nSome smiled, realising that I was making a point, others muttered to their neighbours but they did as they were told and I turned my back again and took another drink of water hearing them still quietly questioning what was going on.\n\nThe discomfort I had wanted to create is what many, maybe most, if not all learners feel stepping inside the classroom. Going into the unknown, like me in this session we were all feeling awkward, unsure, questioning what would happen next and wondering what everyone else was thinking!!?!?!\n\nMy point here was that teaching is not simply passing on knowledge, telling people what you know or how to do a practical skill like this 4 sign pelvic function screen I had just taken around 40 seconds to TELL them.\n\nSo I turned, smiled and introduced myself properly, also asking them to consider how they had felt during my opener.\n\nDid they wonder what on earth was going on?\n\nWhy was I asking them to do that movement?\n\nWhat was the point of this?\n\nWho is this strange woman and why have they asked her to teach us?\n\nI went on to deliver a section of our education programme that TEACHES the background, they how’s, they why’s and the details of this simple practical skill to connect better with the learners, enhance their experience, create relevance to them individually (as much as possible) and hopefully empower them to go on an autonomous learning experience beyond the classroom. Using direct questions, asking names, sports, professional background amongst other things.\n\nPart of my ‘lesson’ is about being in your element, which is something I experience when teaching and is clearly defined by Ken Robinson’s 2014 book THE ELEMENT which I have mentioned in a previous Juicemail. The Element is when you are unaware of time, feel most passionate, are enjoying what you are doing and revelling in the moment.\n\nSO here I am in my element and suddenly I look at the clock thinking “Oh no, time has gone quick, I only have 10 minutes left!”.\n\nMy panic sets in that I haven’t got much time to connect the points of my teaching methods having done the practical stuff. So I organise the group to take a seat, flick through my remaining slides, annoyed at myself for not checking the time more effectively, and I round up my session.\n\nThe applause was slow to come and I thought “oh crap they hated it!”, as Paul came up seeing I was finishing and stated “actually you have another 20 minutes Rachel…”\n\nWHAT?\n\nI had mistimed the wrong way and UNDER timed it!!\n\nDOH!\n\nI was gutted to say the least but Paul handled my massive error superbly and summed up the purpose of my session suggesting we open the floor for a Q&amp;A session to finish off.\n\nHands went up, questions came in and it was clear they had enjoyed the practical session very much as their questions all related to the topic and were fantastically relevant and showed their interest.\n\nUnder the table I was mentally kicking my self and then Kurt Lindley spoke. Kurt, who is Development Lead Officer (Coach Developer) at Sports Coach UK, asked me to elaborate on my experience as a ‘non academic’ and how, and at what point, I overcame the anxiety that I was not smart enough or intelligent enough to be able to run an eduction company AND stand in front of people presenting.\n\nHis question put me back into ‘my element’ of being as honest as I can be about insecurities and that it is something we all face at times. This gave me the opportunity to explain my meeting with my lifelong teacher and mentor, Martin Haines, who believed in me and my capabilities way before I did.\n\nKurt also went onto suggest that there is a good chance my insecurities are connected with my schooling and being told I was not academic but he pointed out that chances are it was translated in MY head as not intelligent/not good enough thus making it understandable that my teaching style and methods will reflect this.\n\nMy final Q&amp;A session came to a close with me explaining what an honour it feels to be in a teaching role and how vital it is we all respect this position of responsibility. Soon I had a queue of people lining up at the front with yet more questions and offering business cards and sharing their experiences.\n\nWhat a great opportunity and experience this was!\n\nI had desperately wanted to stay and experience Kurt’s workshop session about asking yourself “…whether you can hold two opposing views at one time without bias…?” Also Georgina Williams’ (a development practitioner amongst other things) ‘Emotional Intelligence’ session looked fascinating and of course my friend Linda Low and her colleague Jamie French were offering their insights into ‘The Art of Co-Delivery.’\n\nThe point to be raised here is we can all make a mistake and step outside our comfort zones but this is what the learning environment is like.\n\nIt is ok to ‘fail’ so long as you take something from it.\n\nIt is ok to feel uncomfortable if this expands your knowledge/learning experience.\n\nLife is too short to stay with the zones you are most comfortable…\n\nTAKE A LEAP…Who knows what might happen? You might even enjoy it!\n\nYou might even discover YOUR ELEMENT!!\n\nIt could be Biomechanics Coaching!\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">CLICK HERE FOR MORE </a>','DOH!','','draft','closed','closed','','doh','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1245',0,'post','',0),(1246,0,'2016-09-05 14:00:05','2016-09-05 14:00:05','','','','inherit','closed','closed','','screen-shot-2016-09-05-at-14-56-12','','','2016-09-05 14:00:05','2016-09-05 14:00:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/09/Screen-Shot-2016-09-05-at-14.56.12-1.png',0,'attachment','image/png',0),(1255,3,'2016-09-09 06:14:27','2016-09-09 06:14:27','So you know how I LOVE to share my moments of wonder at what comes from my JOB, that isn\'t a job but a JOY, well here\'s another one I received this morning from one of my present Biomechanics Coach™ Diploma learners who is just 2 workshop\'s into things...\n\n<em>Hi Rach,</em>\n\n<em>Thanks again for the workshop this weekend, this time I came away feeling like it all made so much sense and starting to be able to see the bigger picture. It\'s such a great learning environment and a really enjoyable weekend.</em>\n\n<em>Thought I\'d share with you my experience this morning as it felt like a bit of a game changer! </em>\n\n<em>So I was asked to do a demonstration for 18 adults who were on a riding camp, it was the last day of their three day camp so there were 18 very tired (and hungover in some cases!!) faces looking back at me. I have done a drama degree so talking in front of an audience isn\'t a problem for me. However this was the first time I\'ve demonstrated my Rider Analysis stuff to a big crowd so I was a little worried about questions I might get asked or whether the software and my knowledge would be enough....it was after all the first time I had seen this rider so I had no idea how they would present. Just to be clear this was a on the horse Rider Analysis and not one of the intrinsic biomechanics screens.</em>\n\n<em>Well, the rider presented with a prominent drop of the right shoulder and lean to the right, her right foot appearing higher than her left. She explained that she has a \'dodgy\' right knee and was seeing a biomechanist about it (will go into more depth with this later). So I explained to the group the integrated system, the fact that if her right knee was \'bad\' meant she would put less weight through this leg, perhaps lifting through the right hip and dropping the right shoulder.</em>\n\n<em>So while she was presenting as having one shoulder higher than the other but I explained to the group I absolutely would not be telling her to lift her right shoulder as that was not necessarily causing the problem and changing that wouldn\'t necessarily solve the problem. (I also explained that what I\'d like to do is a full biomechanics screen to work out exactly what was going on where - but time wouldn\'t permit!)</em>\n\n<em>Instead I thought creatively and got her to do the iMoveFreely® leg press anti spasms on the horse (both legs) in the hope that this might release the pelvis if there was something going on. I got her to ride down the centre of the school again, the only instruction being to put more weight through her right leg...</em>\n\n<em>BOOM she was straight!!</em>\n\n<em>At this point people started to pay a little more attention!</em>\n\n<em>So we moved onto the canter work, from the side view the glaringly obvious for all was that she was leaning forward, on a more detailed view of the footage they started to look beyond the obvious and saw that her pelvis was tilted forward through the whole movement.</em>\n\n<em>Again I explained what she would need is a full biomechanics screen and some more specific exercises, but for the sake of the demo we moved onto some pelvic tilts on the horse (if I\'m honest whilst this was for mobility it was more intended in order for her to feel her seatbones and sit on them!). </em>\n\n<em>She found her seatbones, practiced in the sitting trot and then in the canter. Immediately she sat better in the saddle and the horse went better! The ooohhhs and ahhhhh\'s increased and the whole group seemed to \'get it\'.</em>\n\n<em>The game changer came as I was chatting to the rider. </em>\n\n<em>I was finding out about the biomechanist she is seeing regarding her knee, what he had done with her, how he assessed her and what exercises he got her to do. She has been seeing him for about a year. He got her on a treadmill and looked at her gait in slow motion, had decided there were issues in her pelvis (didn\'t sound like he\'s done screens but he could have?) as well as her knee.</em>\n\n<em>BUT here\'s the catch, he was getting her to do CORE STRENGTH exercises and claimed that by building her core strength it would help get her pelvis back in alignment?!?!</em>\n\n<em>At this point my face winced (couldn\'t help it...I just heard your voice in my head NORMALISE THEN STABILISE)</em>\n\n<em>She has been doing these exercises for a YEAR with NO IMPROVEMENT!!!</em>\n\n<em>So I explained our way of doing it, getting the pelvis functioning first and then strengthening it. I got her off the horse and showed her 4 sign as I figured it is bound to help (obviously checking that her knee wasn\'t hurting whilst she was doing it). She is desperate for a full screening session and totally loved the session!</em>\n\n<em>The game changer for me was how naturally the language of biomechanics slipped off my tongue and how the knowledge was JUST THERE when I needed it. I felt like the expert and like I really knew what I was talking about...but not only that I BELIEVED this was the best thing for the rider and was so EXCITED to see her results!</em>\n\n<em>I cannot thank you enough for opening my eyes and changing my business and helping me be the professional I want to be...for once I feel like the expert...WOW!!</em>\n\n<em>Sorry for the essay,</em>\n\n<em>Tess x</em>\n\n----------------------------------------------------------THIS THIS THIS....\n\nWOWZERS!\n\nI LOVE these stories because I HATE selling this stuff, in my opinion it really should be part of our industry\'s standard L3 qualifications!\n\nSo emails like this one from Tess allow me to show you from the HORSES MOUTH (Sorry I couldn\'t resist it) so if YOU think you would like to try the workshops Tess has done and open up the opportunity to experience the excitement of your work like she has then why not send us your details to be added to our 2017 workshop waiting list by ..\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">REGISTERING YOUR INTEREST HERE </a>','Game Changer!','','draft','closed','closed','','game-changer','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1255',0,'post','',0),(1256,0,'2016-09-09 06:14:06','2016-09-09 06:14:06','','','','inherit','closed','closed','','screen-shot-2016-09-09-at-07-13-09','','','2016-09-09 06:14:06','2016-09-09 06:14:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/09/Screen-Shot-2016-09-09-at-07.13.09-1.png',0,'attachment','image/png',0),(1261,3,'2016-09-13 05:37:44','2016-09-13 05:37:44','Let me give you a tip...\n\nCOME AND LISTEN TO THIS GUY!\n\nIf you haven\'t yet heard of Mark Laws, well then you just aren\'t getting out enough!\n\nWith literally just under 4 weeks to go I am SO EXCITED to have managed to bag this dude for a speaking slot at <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention 2016 Saturday 8th October at Loughborough University!!</a>\n\nHaving known, and worked with, Mark over the last couple of years, as both my client and at events presenting together I have come to really enjoy his attitude towards life/work. He demonstrates integrity and a refreshing honesty which are characteristics you know I respect. So it is with great pleasure I am able to add him to our FLIPPING AMAZING line up!!\n\nMark has worked in the fitness industry full time since 2006 and has worked in a coaching capacity since 1999. He has worked for many mainstream gym chains in the UK and has an extensive background in professional sports - including spells with Yorkshire County Cricket Club, Castleford Tigers Rugby League Club, Sheffield United Football Club, Chinese Football Association, Beijing 2008 Chinese Olympic squad and Great Britain Ice Hockey.\n\nIn recent years Mark has taught educational courses to other fitness professionals on behalf of Jordan Fitness, with whom he still collaborates.\n\nHe currently works as Training Academy Manager for Strength &amp; Conditioning Education (with Brendan Chaplin)– providing a world class mentorship programme, a Level 4 S&amp;C qualification and CPD workshops to coaches all over the world.\n\nMark is one of only two ‘Elite’ PowerWave coaches in the world and is responsible for the training and development of all PowerWave instructors throughout Europe, Asia and Africa.\n\nHe regularly delivers lectures/presentations at international fitness exhibitions and in 2016 will deliver training in Europe, Dubai, India, Singapore and America.\n\nHe is going to be giving a reality check talk on...\n\n<b><i>Short Term Job V\'s Long Term Career: How to Survive in the Fitness Industry.</i></b>\n\n<b><i>The statistic are telling us that 80/90% of YOU that enter into the fitness industry will leave within 12/18 months! </i></b>\n\n<b><i>Find out how to avoid the common pitfalls during this fun and engaging talk that reflects upon all 10 years of Mark\'s experience.</i></b>\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">CLICK HERE NOW TO BOOK ONE OF THE REMAINING SEATS!</a>\n\nFacebook – marklaws2011\n\nInstagram – marklaws2011\n\nTwitter - @marklaws2011\n\nEmail – marklaws2011@hotmail.co.uk','Can You Survive The Industry..?','','draft','closed','closed','','can-you-survive-the-industry','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1261',0,'post','',0),(1262,0,'2016-09-13 05:37:33','2016-09-13 05:37:33','','','','inherit','closed','closed','','1512862_10155715079610570_2017315832845655257_n','','','2016-09-13 05:37:33','2016-09-13 05:37:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/09/1512862_10155715079610570_2017315832845655257_n-1.jpg',0,'attachment','image/jpeg',0),(1264,3,'2016-09-14 07:33:07','2016-09-14 07:33:07','Dear PT,\n\nAs you know I have been working with you now for a while and at first my abundant enthusiasm was matched only by the excellent results achieved in those early weeks.\n\nYou may of noticed that as of late my occasional missing of sessions (because my dog died or I left the oven on, I think I actually did have a date one night) have become more frequent, and this seems to be directly proportional to my dietary lapses and my shape returning to a more familiar form.\n\nI’m not sure if I’m imagining it or not but I perceive a sense of disappointment from you when I DO drag my reverting ass back in to see you. I`m not sure if this is due to my increasing BMI or your reduced income resulting from my absence, but which ever it is…I feel a great deal of shame.\n\nYour training methods are fantastic and <i>initially </i>really helped me overcome my fear of gyms and exercise in general. You acted as a guide and a mentor to help me on this quest to achieve an Olympian rivalling physique…I bought the magazines (great for reading on the loo) I bought the salad and the lean meat, I bought the shakes I even bought the latest gym wear to go along with the subscription to the gym where you ply your trade and impart your wisdom, and all was great in the world. Until..\n\nMy kids rebelled, they don’t really like all this type of food and do prefer a pizza and I know that I should insist that they eat what you suggest, but the reality is that when I’ve done the hour long commute to work, my long day at work and then the hour long commute back, sitting in traffic (I did try to cycle it as you suggested but this added <i>another</i> hour to my day) after that 8hr shift, I have neither the will nor the energy to be cooking separate meals, so my shakes sit un mixed and my salads have withered away and cheese and tomato pizza has once again became one of our staples.\n\nI can see you now, shaking your head and tutting and I feel shame, but in the world of a working parent outside the health and fitness industry our priorities and time management is somewhat misaligned to yours. On a daily basis YOU plan an epic run while WE plan a trip to the shop with little ones in tow, YOU plan a cheat day while WE just dream of a takeaway food so there are no dishes to do because this allows us to relax in front of the TV before having an early night. YOU live YOUR work and YOUR hobby so YOU plan YOUR own time around YOUR client base while US mortals plan babysitters so WE can journey to the gym and then zap our already tired depleted bodies while still trying to appear enthusiastic so as not to disappoint YOU.\n\nSo dear PT, PLEASE be patient, encourage us to eat a bit of rubbish on a regular basis, tell us to miss a session if we don’t feel up to it and we will return, refreshed and without the shameful feeling having let you and ourselves down and guess what, our enthusiasm and gains will return and put us on the road to Olympian status once again.\n\nRegards\n\nFatty\n\nPreviously … <a href=\"https://www.biomechanicseducation.com/a-message-from-fatty/\"><i>A Message From Fatty</i></a>','It\'s Fatty Again..','','draft','closed','closed','','its-fatty-again','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1264',0,'post','',0),(1265,0,'2016-09-14 07:32:59','2016-09-14 07:32:59','','','','inherit','closed','closed','','screen-shot-2016-09-14-at-08-32-41','','','2016-09-14 07:32:59','2016-09-14 07:32:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/09/Screen-Shot-2016-09-14-at-08.32.41-1.png',0,'attachment','image/png',0),(1268,3,'2016-09-16 06:36:59','2016-09-16 06:36:59','If someone told me, 6 or 7yrs ago, they were going to teach me how to breath I would have laughed. I had been breathing successfully for 47yrs, so how could someone teach me <em>HOW TO BREATH</em>!?\n\nYet I went on to experience 1:1 yoga and meditation with the A.M.A.Z.I.N.G Becs McBride who literally did teach me how to breath. What I discovered was that it wasn’t simply about learning how to breathe but it was a truly wonderful <em>experience</em> that is hugley helping those willing to try it.\n\nBecs became more than my yoga and meditation teacher because she gave me a gift....\n\n&nbsp;\n<h2>My fizzy brain</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-34943 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/jared-rice-NTyBbu66_SI-unsplash-258x300.jpg\" alt=\"\" width=\"258\" height=\"300\" />\n\n&nbsp;\n\nMy experience of yoga and meditation at that time was very limited so we arranged some private 1:1 sessions during which I wanted to learn how to calm my \'fizzy\' brain.\n\nFor me business ideas come constantly and while I do love what I do, my brain literally FILLS up with ideas, my daily schedule, jobs to do, people to see, places to go etc etc. So I wanted some calm, peace and a way to be able to focus on what was important.\n\nBecs taught me how to ‘focus on the breath’, where to breath into my body during meditation and how to breath into positions and poses during yoga poses. The incredible thing was the result of how all of this made me <em>feel </em>and also how long the effects lasted.\n\nIt was all so peaceful and undistracted and literally gave my brain TIME OUT!\n\n&nbsp;\n<h2>Hoovering my head</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-34812 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/06/IMG_9026-300x214.jpg\" alt=\"\" width=\"300\" height=\"214\" />\n\n&nbsp;\n\nBecs taught me how to feel calm and in control by using breath work as if she was running a hoover through my head. YES that exactly how is felt, like she <em>hoovered my head!</em>\n\nWhen considering the meditation aspect, Becs taught me…\n<ul>\n 	<li>imagery</li>\n 	<li>psychology</li>\n 	<li>holistic</li>\n 	<li>mind to muscle</li>\n 	<li>mind and body connection</li>\n 	<li>neuroscience</li>\n 	<li>think yourself…(something)</li>\n 	<li>mindset</li>\n 	<li>cognitive</li>\n 	<li>therapy</li>\n 	<li>the power of the mind</li>\n</ul>\n..and it was MIND BLOWING!\n\n&nbsp;\n<h2>So what?</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30606 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/luis-villasmil-mlVbMbxfWI4-unsplash-240x300.jpg\" alt=\"\" width=\"240\" height=\"300\" />\n\n&nbsp;\n\nEvidence suggests we buy based on how we <em>feel. </em>\n\nConsidering potential clients, they too are very likely to invest based on how they <em>feel.</em> How can we make others feel? what skills can we utilise or gain? Would breathwork or meditation be a solution? If it works for me could it work for my clients? Could they be in need of head hoovering?\n\nThere are many in our industry writing about the mind and its neural connection for improving physical health. Lorimer Moseley and Dave Butler wrote the ‘Explain Pain’ from the perspective of neuroscience, describing pain as an input not an output. The Franklin Method teaches imagery for improving biomechanical set up from within.\n\nSo to having a deep connection with the self through breathwork and meditation increased my confidence and allow me to feel more in control and calm...ever tried hoovering YOUR head!?\n\n<a href=\"http://www.becsmcbride.co.uk/classes\">www.becsmcbride.co.uk/classes</a>\n\n&nbsp;','She Hoovered My Head!','','draft','closed','closed','','she-hoovers-my-head','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1268',0,'post','',0),(1269,0,'2016-09-16 06:36:49','2016-09-16 06:36:49','','','','inherit','closed','closed','','screen-shot-2016-09-16-at-07-31-40','','','2016-09-16 06:36:49','2016-09-16 06:36:49','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/09/Screen-Shot-2016-09-16-at-07.31.40-1.png',0,'attachment','image/png',0),(1274,3,'2016-09-21 07:50:57','2016-09-21 07:50:57','<img class=\" wp-image-35817 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2023/04/IMG_4905-1-285x300.jpg\" alt=\"\" width=\"225\" height=\"237\" />I LOVE hearing from you guys!\n\nTHANK YOU to those who take the time to write to me! Please do always send your feedback and any topic requests. The content I produce is aimed at you so your ideas are really helpful.\n<ul>\n 	<li>Can YOU caveman squat? Send us a photo!!</li>\n 	<li>What would you like to read more of?</li>\n 	<li>Do you have a specific movement or anatomy question?</li>\n 	<li>What do you think of our Juicemail?</li>\n 	<li>Do you have a question or some feedback about anything we do here at Biomechanics Education Ltd?</li>\n</ul>\nEmail me with your movement related questions rachel@biomechanicseducation.com\n\n&nbsp;\n\n<em>Hi Rachel,</em>\n\n<em>Thank you for such a brilliant day. Excellent content and loved the way you delivered it! It was really informative and am now keen to learn more (and brush up on anatomy too!!) I also realised how dysfunctional my pelvis is atm! Will be working on this.</em>\n\n<em>Once again, many thanks, I really enjoyed Saturday and your patience and humour with us all! Looking forward to hearing from you, Hope to see you again, Aiming to move freely!!</em>\n\n<em>—————————————————————————————</em>\n\n<em>Brilliant course on Saturday, really enjoyed it. Am hoping to use some in my physio classes!</em>\n\n<em>—————————————————————————————</em>\n\n<em>Great meeting you too, again loved your session, very educational and I was left wanting more!</em>\n\n<em>—————————————————————————————</em>\n\n<em>I loved the course, want to do the whole diploma! Your delivery of it was great and funny, looking forward to the day I do the caveman squat with good form and ease and will send you a photo &#x1f606;</em>\n\n——————————————————————————————','Wanting to \'Caveman Squat\'.......!','','draft','closed','closed','','wanting-to-caveman-squat','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1274',0,'post','',0),(1275,0,'2016-09-21 07:50:47','2016-09-21 07:50:47','','','','inherit','closed','closed','','screen-shot-2016-09-21-at-08-50-14','','','2016-09-21 07:50:47','2016-09-21 07:50:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/09/Screen-Shot-2016-09-21-at-08.50.14-1.png',0,'attachment','image/png',0),(1278,3,'2016-09-25 05:50:17','2016-09-25 05:50:17','We have such a lot going on at The Movement Convention, with so many fascinating lectures and people around, it is vital we are all well hydrated throughout the day with our favourite refreshments, coffee and water!\n\nBUT we don\'t have just any coffee and water, nope we have the highest quality coffee and water coming to you from Tracey &amp; Bradley!\n\n----------------------------------------------------------\n\nTracey Peake loves life and spreads positivity and super hydration with her negative ions in Kangen water, and so for your brain buzz see Tracey to get your electric impulses flowing!\n\nTracey is CEO of Kangen Life Club, pharmacist for 32 years, director of Peake Health Ltd, advocate of natural therapies and supplements for health promotion and disease prevention.\n\nKangen restructured electolysed water is alkaline, packed full of antioxidants (free hydrogen) and provides super hydration.\n\nIt is made by a medical device called a Kangen water ioniser, which attaches to your tap in your home to make this anti-aging, detoxifying, health promoting, disease reversing pure, fresh tasting miracle water .\n\n----------------------------------------------------------\n\nBradley Marchant\n\n\"Hi everyone,\n\n..who wants a free tea or coffee?\n\nI’ve been in the coffee industry for quite a number of years now and I know just how many people can’t function without their morning cup of coffee or their fancy made beverages.\n\nBut what if your daily habit was cheaper and actually healthier for you?\n\nWhat if the habit you’ve already established could actually improve your health?\n\nI will be bringing the world’s best Ganoderma infused teas and coffee’s to your cup on this date, so leave your cash at home, this one’s on me!\n\nI look forward to seeing you at The Movement Convention\"\n\nBradley\n\n----------------------------------------------------------\n\nLAST 20 PLACES !\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">BOOK HERE QUICK!</a>','FREE Coffee & Water!','','draft','closed','closed','','free-coffee-water','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1278',0,'post','',0),(1279,0,'2016-09-25 05:50:08','2016-09-25 05:50:08','','','','inherit','closed','closed','','screen-shot-2016-09-21-at-09-03-28','','','2016-09-25 05:50:08','2016-09-25 05:50:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/09/Screen-Shot-2016-09-21-at-09.03.28-1.png',0,'attachment','image/png',0),(1311,3,'2016-09-27 05:13:33','2016-09-27 05:13:33','Neil Eriksen was one of the first ever professionals to join our academy back in 2008 and he was also previously nominated as a Biomechanics Coach™ of the Month. Here he wants to share with you one of his life changing moments..\n\n<em>That was a really funny moment I\'ll not forget in my life. This is what happened...</em>\n\n<em>I was on the full Biomechanics Coach™ Diploma, kind of the second time doing it, already done the previous model course way back in 2008 when it was first being delivered by Martin Haines and the team, just starting to put it out there for use in the fitness industry.</em>\n\n<em>The more modern expanded model of Biomechanics Coaching™ I wanted to re-sit had evolved. It had been through years of development so I was keen to get on it to learn any new techniques and refresh on the old ones.</em>\n\n<em>Although I had been practicing the screens and exercise prescription with clients to some degree over the 6 year gap, I definitely felt that I\'d been playing Chinese whispers with myself and lost the way somewhat.</em>\n\n<em>Mostly I simply ‘personal trained’ my clients and put a few bits of the Biomechanics Coach™ programme in there if it seemed applicable.</em>\n\n<em>In fact I remember Martin sending me a nice email commenting on how \'low key\' my website presentation of the system was and that\'s exactly how he liked to see it. I\'d learned about sports injuries, sports massage and remedial therapy in my health and fitness degree so it was just another set of cool assessments…or so I thought.</em>\n\n<em>Back to the diploma;</em>\n\n<em>Rachel had just done my whole body assessment in class at the end of the complete Biomechanics Coach™ Diploma using me as the demo (I basically told her to DO ME! DO ME!). There were a number of things still showing dysfunctional after doing my 4 Sign and Leg Press anti spasms for a number of weeks and my back was still not a nice back to live with.</em>\n\n<em>Things improved but I was not there yet; Downings Sign, Leg Length Discrepancy, Sciatic Nerve, Spinal Flexion, Pec Minor, Median Nerve, Upper Traps, Infraspinatus were all still positive for dysfunction.</em>\n\n<em>So Rachel just tried the anti spasm on my Pec Minor left side, it was showing more tension than the right side, which we duly did. Then the retest of the whole body, all in front of the watching class and we wrote the results up on the flip chart for everyone to follow.</em>\n\n<em>It was surreal over the next few minutes as the retest was being done. I remember the sound of jaws hitting the ground and watching the shaking of heads of disbelief. That was the sound of a paradigm shift in action, it was funny to watch. I didn\'t really feel anything so I was a bit left out of the action as everyone else was seeing the, no less than astonishing, results.</em>\n\n<em>And then Matt made his classic comment \"he\'s a stooge!\".</em>\n\n<em>Was it so amazing that he didn\'t believe his own eyes?</em>\n\n<em>Well yes it certainly was, that\'s the integrated system in all it\'s glory and it appears that seeing is disbelieving!</em>\n\n<em>That one moment has changed my life, not only because since releasing Pec Minor on the left side my whole body has become way more \'bullet proof\', everything changed and I got myself a new upgraded body, but also because my quest is always to find that magic for other people.</em>\n\n<em>Now as Rachel said at that time \"Yeah, that was a good one, it doesn\'t always happen like that!\" Things can become quite confusing/difficult/complicated etc when you concentrate on changing specific things that may well have been adapted to for many years for a myriad of reasons.</em>\n\n<em>So I would to impart some advice to other professionals out there, it has been said before but here it is again: use it as a cool-tool guide but do not concentrate on fixing people with Biomechanics Coaching™, do what YOU do, whether that\'s PT, massage, yoga or whatever. That way when complications arise, and they will, or there is no magic, and sometimes there isn\'t, you\'re still doing you job, but with amazing insights and information from a very special systematic approach.</em>\n\n<em>It is easy to get caught up in a personal quest for magic and forget the client\'s goals or that there\'s more than one way skin the old cat. It\'s got to kind of run as a background programme, it\'s certainly one that I would never uninstall, I\'d rather chop off an arm!</em>\n\n<em>I would love nothing more than to ramble on about the infinitesimal layers of the onion that you peel away over time using Biomechanics Coaching™, maybe I will, but that\'s for another day.</em>\n\n<em>So to Matt, I\'m not a stooge mate, just living the dream ;)</em>\n\n<em>Thanks Martin and Rachel for helping me fix myself and helping me to help others (even when oftentimes they have no idea on what level we\'re working on).</em>\n\n<em>Kind regards</em>\n\n<em>Neil</em>\n\n----------------------------------------------------------\n\nHave YOU been thinking about becoming a Biomechanics Coach™?\n\nMaybe Neil\'s story has helped you to make up your mind?\n\nWhy not join our waiting list for the 2017 Biomechanics Coach™ Diploma workshops series dates?\n\nEmail in reply to this Juicemail\n\nOR\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">CLICK HERE to register your interest</a>','He\'s A Stooge!','','draft','closed','closed','','hes-a-stooge','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1311',0,'post','',0),(1312,0,'2016-09-27 05:13:24','2016-09-27 05:13:24','','','','inherit','closed','closed','','screen-shot-2016-09-27-at-06-13-02','','','2016-09-27 05:13:24','2016-09-27 05:13:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/09/Screen-Shot-2016-09-27-at-06.13.02-1.png',0,'attachment','image/png',0),(1315,3,'2016-09-29 06:55:58','2016-09-29 06:55:58','<b>If you work in the field of martial arts OR feel desperate to connect with other health care professionals keep reading..\n\nThese are 2 of the UK\'s leading presenters and we are really excited that they are coming along to speak to you at;\n</b><a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention Saturday 8th October at Loughborough University. </a>\n\nMike &amp; Fletch are special guys and really awesome Master Trainers amongst other things!\n\nJust check out their session content..\n\nFletch - <b>Biomechanics of Combat</b>: <i>\"We have been involved in combat sports as far back as language could be used to talk about it. But is it functional for today\'s human. We look at the requirements of sports such as boxing, kickboxing and jujitsu and how they affect our body.\"</i>\n\nMike - <b>Introduction to working with allied healthcare professionals</b>. Where does Biomechanics Coaching™ fit in? What can the other professions do for us and how we can communicate effectively with each other.\n\nThis uniquely intimate event will allow you to meet them in person and interact with both presenters.\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">GRAB A PLACE HERE!</a>\n\nP.S. We will provide a healthy lunch and refreshments are available all day\n\nIncluding a FRESH Juicebar and raw chocolate by Mairi of FABfitness!','YUP Check Out Ma Boys!','','draft','closed','closed','','yup-check-out-ma-boys','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1315',0,'post','',0),(1316,0,'2016-09-29 06:55:48','2016-09-29 06:55:48','','','','inherit','closed','closed','','screen-shot-2016-09-29-at-07-55-35','','','2016-09-29 06:55:48','2016-09-29 06:55:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/09/Screen-Shot-2016-09-29-at-07.55.35-1.png',0,'attachment','image/png',0),(1319,3,'2016-10-01 04:55:31','2016-10-01 04:55:31','Having travelled for a number of years around the UK delivering workshops, presentations and lecturing at events and universities I have developed an appreciation of what is needed for me to be fresh and ready from a good nights sleep, feeling safe while travelling and staying away from home alone.\n\nCombine this with having set up 8 companies I have learned, and now understand better, the value of familiarity, knowing what you will and the confidence in my expectation.\n\nNow as I use Premier Inns it was Lenny Henry who not only promised me a good nights sleep guarantee, but he delivered and continues to deliver on this promise...\n\nEvery\n\nSingle\n\nTime\n\nHOW?\n\nBefore I even leave the house, and no matter where in the country I am going, I know exactly what to expect right from when I arrive at the car park, enter reception, enter my room, climb into my bed and anything in between.\n\nI know there will be a restaurant downstairs for food both in the evening and for breakfast.\n\nAND\n\nI know there will be a certain smell and temperature as I climb the stairs. In my room there will be a large bed made up in crisp white sheets with a purple runner, a choice of pillows, a hair dryer, shampoo and a TV that I can watch from my bed.\n\nThis hotel’s business model, in my opinion, is superb since they deliver on their promise every - single - time.\n\nThis hotel chain for me has been one of the best examples of customer confidence in knowing what to expect because it is my \'home from home\' even if I sometimes might pay a bit more. I am happy to pay knowing I will get exactly what they promise or I get my money back. There are other businesses that do this really well too…also known as the franchise model\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36692 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/10/Screenshot-2023-08-23-at-08.44.24-300x188.png\" alt=\"\" width=\"300\" height=\"188\" />\n\n&nbsp;\n\n&nbsp;\n\nMcDonalds do it - whatever you think of them they deliver on their promise (and yes I have been known to slurp on the occasional Crunchie McFlurry). Listen to Michael E Gerber\'s audio book, The E Myth Revisited and he will tell you the whole story of how Ray Kroc saw the McDonalds brothers flipping burgers back in the 60\' and knew immediately there was something special about their business.\n\nLes Mills is probably the most famous company for setting this trend in our sector. You can go to any country in the world and know what to expect from a BodyPump or BodyAttack class. Now there are numerous examples from Zumba to Pilates and yet why am I writing to you about this?\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36693 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/10/Screenshot-2023-08-23-at-08.44.39-300x77.png\" alt=\"\" width=\"300\" height=\"77\" />\n\n&nbsp;\n\n&nbsp;\n\nIt is a bold statement to make a guarantee or promise about your product or service isn\'t it?\n\nDo you believe you could be that confident stating benefits about your services to potential clients?\n\nWhat could be your promise?\n\nConsider how you might develop your \'promise\' and also your client and potential client\'s expectation. Here is one idea.....\n\nIts something I have had to practice gaining confidence about but I am now in a position to make bold statements about my education company because I have proved it over and over again consistently for almost 18 years now. In fact I no longer need to make the statement because my customers do.\n\nEveryone who attends one of our workshops or joins our academy tells us they have a fantastic learning experience, I may even be so bold as to say, it changes lives. We also take pride in the amount of support we offer even beyond the classroom...\n\n<em>Hi Rachel,</em>\n\n<em>Thank you for a fantastic course last weekend. It was everything I was hoping for and really helped me understand why current training systems aren\'t working as they should be.</em>\n\n<em>I have already adapted some of my clients programs to include the anti-spasm exercises with good results in just a few days. The course has left me questioning everything I do as a PT, which is definitely a positive thing.</em>\n\n<em>I definitely want/need to complete the rest of the workshops as soon as possible.</em>\n\n<em>Thanks again for providing a fantastic course. I am really looking forward to the next courses.</em>\n\n<em>——————————————————————————————————————————————————————————————</em>\n\n&nbsp;\n\n<em><img class=\"size-medium wp-image-35285 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6931-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></em>\n\n&nbsp;\n\n<em>——————————————————————————————————————————————————————————————</em>\n\n<em>Hi Rachel</em>\n\n<em>Thank you very much for the Pelvic &amp; Spine Biomechanics workshop, I enjoyed every moment of it. I must say it is the first course when my brain was alert from 9  to 5 and there was no desire to have any conversation within my head , I do that when I am getting bored. You are an amazing tutor and a coach, you know how to make people feel important and have time to understand each and everyone. I did feel a lot of support whilst on the workshop and I think everyone felt that. The world is a much better place to live in, when people like you are around. Once again an enormous thank you.</em>\n\n<em>——————————————————————————————————————————————————————————————</em>\n\n<img class=\"size-medium wp-image-35276 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6385-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n<em>——————————————————————————————————————————————————————————————</em>\n\n<em>I’m not normally big on writing reviews or testimonials, but I\'m making an exception for this 2 day Pelvis &amp; Spine Biomechanics workshop for a number of reasons</em>\n\n<em>To start,  I\'ve never felt so excited about what I\'ve learnt from a workshop or course before.</em>\n\n<em>Whilst some of it really challenged my thinking, and made me feel slightly uncomfortable at times (it made me question some of the ways I\'ve always done things).  Rachel explains it in such a way that it all makes perfect sense.</em>\n\n<em>I now have information that is scientifically proven, that makes me believe I need to change the way I work, and to incorporate biomechanics screens into much more of what I do.</em>\n\n<em>The tools and system that Rachel give you are so powerfulI both for you, and to get your clients onboard, they cannot be ignored.</em>\n\n<em>It’s going to take me a while to put everything I’ve learnt into practice.  But there’s a few things I know for sure.  I need to know more.  Everything I do in future must be backed up with science.  I need to question everything.   And I most definitely want biomechanics screens to be a much bigger part of what I do.</em>\n\n<em>Adding biomechanics screens to the way I work will most definitely, give me the confidence to charge more, have a real niche and elevate me far above my competitors.   I know I will get a return on this investment, and most importantly be able to help more people, and improve the service to the clients I already have.</em>\n\n<em>If you are unsure about committing to the Biomechanics Coach&#x2122; Diploma, attend the iMoveFreely® workshop as a starting point.  It’s a good way to sample it,  and come away with useful material without committing too much financially.</em>\n\n<em>I cannot recommend any of Rachel’s courses highly enough.  From the the content of the course, Rachel’s energy, knowledge, enthusiasm and obviously love of what she does.  I for one will definitely be back for more.</em>\n\n<em>Thanks Rachel</em>\n\n———————————————————————————————\n<h2><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">So why not join our academy in 2023/24 ?</a></h2>\nUse the skills the way we teach you to and…\n\nWe promise you will LOVE them!\n\nWe promise they will change the way you think!\n\nWe promise you will want more!\n\nWe promise full support even beyond your training!\n\n&nbsp;\n<h1><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">Now there’s some promises! &gt;&gt;CLICK HERE TO FIND OUT</a></h1>\n&nbsp;\n\n<img class=\" wp-image-36450 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/07/DSC_6439-1-300x200.jpg\" alt=\"\" width=\"461\" height=\"307\" />','What do Les Mills, Premier Inn and Crunchy McFlurry have in common?','','draft','closed','closed','','crunchy-mcflurry-promise','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1319',0,'post','',0),(1320,0,'2016-10-01 04:55:24','2016-10-01 04:55:24','','','','inherit','closed','closed','','screen-shot-2016-10-01-at-05-55-06','','','2016-10-01 04:55:24','2016-10-01 04:55:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/Screen-Shot-2016-10-01-at-05.55.06-1.png',0,'attachment','image/png',0),(1325,3,'2016-10-10 18:56:48','2016-10-10 18:56:48','..if you didn\'t attend The Movement Convention,\n\nWHERE WERE YOU?!\n\nTMC16 was BUZZING!\n\nSocial media STILL IS!!\n\nThe entire even has been such a massive success, social media has been going nuts, I am literally floating and still feel quite emotional.\n\nThis awesome event began in 2014 and really has evolved since our debut! With twice as many attendees and such a fantastic line up of presenters we completely nailed it this year!\n\nI am not sure where to begin to describe this amazing experience but I will have a go with the help of the attendee feedback…\n\nFirstly Friday saw the gathering of the Biomechanics Education Master Trainers for our annual standardisation meeting. Some of these guys drove for 3hrs to attend a 3hr conference only to then drive back 3hrs to service their clients. THIS is the commitment and calibre of trainers we take on!\n\nWith such talent in front of me all feeling passionately about spreading the word and ethos of our academy I felt moved AND responsible. This special team are going to be delivering even more of our education programmes moving into 2017 -\n\nRead on to hear about those already representing us by presenting at TMC16!\n\nThen Friday afternoon saw the largest national gathering of Biomechanics Coaches™, who ravelled from Cumbria, Amsterdam, Dorset, Bristol, Norfolk and all the corners of the UK for a private mentoring session;\n\n<b>Chris Wright</b> - A business mentoring guru who\'s energy infected us all as he shared his skills with humour and vitality\n\nAND\n\n<b>Martin Haines</b> delivered an inclusive and very advanced Movement Analysis session that took our programming to the next level while confirming the INTEGRATED SYSTEM approach that Biomechanics Coaching™ is.\n\nFriday evening was a bit of a social at the Universities, Burleigh Court for a few drinks! Some of whom took great advantage of!\n\nBUT\n\nTMC16 was what it was really all about and so Saturday began at 7am at Loughborough University as the SSSPA crew arrived to help get us set up!\n\n<b>Amber Keats</b>, events manager, was cool as a cucumber organising things as I ran round like a headless chicken, not much use to anyone!\n\nAmber - is an outstanding example of both a stunningly skilled professional AND flipping awesome friend.\n\nEverything apparently fell into place pretty easily although I shouldn\'t have been surprised because the team was well prepared with Amber at the helm!\n\nEveryone arrived to an apple and ginger shot from Mairi of FABfitness, Gandorma coffee from Brendan and Kengan water from Tracey to set them up for the first session.\n\nA very professional, slick and fascinating presentation from <b>Ben Coomber</b> about ‘<i>Recovery &amp; Performance Strategies’.</i>\n\nPost event Ben said<i> “Strong morning presenting at The Movement Convention 2016 run by Biomechanics Education </i>\n\n<i>Rachel France a strong host as ever, quality line up for one day of</i>\n\n<i>learning, get there next year </i><i>”</i>\n\n<b>Brendan Chaplin</b>’s session ‘<i>Forget Strength, Let’s Build Power!’</i> demonstrated his clear knowledge in the very popular subject of strength and conditioning.\n\nPost event Brendan said;\n\n<i>“Enjoyed talking at the movement convention today, great event with a really cool crowd thanks for having me” </i>\n\n<b>Chris Kitson</b> - This up and coming industry influencer is a breath of fresh air and keen to communicate some simple but useful ideas from his session ‘<i>Dealing with Symptomatic Clients’</i>\n\nPost event Chris said;\n\n<i>‘What a whirlwind weekend at The Movement Convention in Loughborough! Met some awesome people and caught up with a few too! Can\'t wait for next year now”</i>\n\n‘<i>Going with the Flow</i>’ was the FABulous <b>Mairi Taylor’s </b>session - She’s seriously passionate and very candid in her sessions expanding on training women through the cycle and post event Mairi said;\n\n<i>“So I am going to share some of take homes from this weekends awesome event as one of them may just resonate with you and ensure you keep following your \"North Star\" - because as Mark Laws</i><i> said \"one should be an eternal white belt\" and one of the great things about this weekend was Rachel France</i><i> had brought some new ( WELL new to me) speakers into the arena and it was so refreshing to hear new and different perspectives on such important aspects of coaching and WELLness ! </i>\n\n<i>\"Stop waiting for permission to live\"</i>\n\n<i>\"Circle gets smaller pain gets bigger\"</i>\n\n<i>\"Focus on innercise\"</i>\n\n<i>\"Let\'s build power\"</i>\n\n<i>\"Sweet taste makes you work harder\" </i>\n\n<i>\"If you put your body in a place where it can recover then it will perform\"</i>\n\n<i>\"Biopyschosocial model\"</i>\n\n<i>\"It\'s about movement and capacity\"</i>\n\n<i>\"Try not to be a wally\"</i>\n\n<i>And of course for me look after your hormones and surround yourself with people who get it - are happy to disagree and have an open minded conversation where we can respect each other\'s maps of the world - unless of course they are a wally!”</i>\n\nLUNCH BREAK included a fabulous healthy choice of salmon with noddles, chicken with rice of tofu noddles all with salad.\n\n<b>Stephen Aish</b> - WOWZERS! My personal favourite 10 minutes of the whole event was watching 70 people completely under his spell of meditation - Emotional for the WHOLE room if you read social media, he literally changed lives in his ‘<i>Mindset Coaching</i>’ session. Perfect after lunch and to relax everyone.\n\nStephen said post event;\n\n“<i>Huge thank you to the superstar that is Rachel France</i><i> for inviting me to speak at The Movement Convention today.</i>\n\n<i>I got to meet friends old and new, hear some fantastic speakers and see the impact some very basic material can have on those ready to take it on board with an open mind and learn.</i>\n\n<i>There is no higher purpose than helping others and I am always grateful for the opportunity to impact lives”</i>\n\n<b>Mike Grice</b> - My all round favourite speaker on my professional subject with the kind of vocabulary I only dream of. <i>‘Working with Allied Health Care Professionals</i>’. Mike’s session was an eye opener for all of us not just the Biomechanics Coaches™ about being mindful of the langue we use with both clients AND other health care professionals to keep us all up to date and have some clarity.\n\n<b>Tom Waldron</b> along with his beautiful sister Rachel gave us an ‘I<i>ntroduction to the Franklin Method</i>’ with a fresh, interesting and very modern approach, Tom had us all on our feet moving which fitted perfectly in the schedule of the day. This presenter is one to watch!\n\nPost Tom’s debut presentation he was rather pleased with how things went stating…<i> “Nailed it!!!!” ..</i>you certainly did Tom!!\n\n<b>Mark Laws</b> - Hilariously honest - LOVE this guy! His session called ‘<i>Surviving the Industry</i>’ had the whole room belly laughing at just the right time in the day when everyone had taken on a lot of new information and really needed some light hearted humour.\n\nMark had made a huge effort to deliver his 45 minute session;\n\n<i>“Made it back to Fitness Fiesta in time for a couple of well earned beers with some fellow presenters!!!!</i>\n\n<i>7 hour, 392 mile, round trip journey to Loughborough was well worth it to be able to start to pay back Rachel France</i><i> for all the awesome things she has done for me in the past!!</i>\n\n<i>Shame I didn\'t get to see anyone else present at the Biomechanics Education Movement Conference but it was a huge honour to be invited to share my ramblings with such a good crowd and close up the day!!!</i>\n\n<i>Today has been a good day!!!</i><i>“</i>\n\n—————————————————————————————\n\nWe had a Twitter competition for the most and the easy winner was Hazel Oliver who took home £30 worth of cinema tickets!\n\nThe TMC16 Raffle was for The Big Cheese Society in honour of Sam who was killed in a cycling accident in may this year. Sam was passionate about helping kids to play sports who may have limited access due to funds. He was also our events organiser, Amber’s boyfriends and so\n\nwe are really thankful to all those of you who helped us to raise over £450!\n\nNow we couldn’t have done this with out our amazing sponsor donations;\n\nIndigo Fitness\n\nGroup X Training\n\niamtools\n\nFABfitness\n\nBTN\n\nS&amp;C Education\n\nThe Strength Academy\n\nMark Laws\n\nMovement Therapy Clinics\n\nTom Waldron\n\nCarbon Claw\n\nJordan Fitness\n\nAwesome Supps\n\nBrasilfit\n\nGrypit\n\nWe also had a small exhibition with;\n\nGrypit\n\nKengan Water\n\nOrgano Coffee\n\nBrasilfit\n\n———————————————————————————————\n\nThe Audience…\n\nNow I did attempt to close the event with a speech of thanks you’s but I got so emotional looking out at all of you and feeling the atmosphere in the room that I couldn’t speak, SO to officially close TMC16….\n\nTHANK <b>YOU!</b>\n\nTo all of YOU who attended the event. Those of you who travelled huge distances, flew overseas and took time out of work, clients and family to INVEST in this stupendous event.\n\nEverything WE do is because of YOU!\n\nSo spread the word, <a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\">join the IBA</a>, lets support each other and share our experiences!\n\n———————————————————————————————\n\n<i>TESTIMONIALS…..</i>\n\n<i>Dear Rach,</i>\n\n<i>Totally brilliant my dear!! </i>\n\n<i>I enjoyed last year\'s convention but this year blew it out of the water. Exceeded all my expectations (&amp; they were decently high!).</i>\n\n<i>The presenters today were great &amp; you scheduled them brilliantly - presentations to match energy levels throughout the day. I got seriously good things to take home from every single one.</i>\n\n<i>I\'ve come home on a high, buzzing, motivated, and really excited to be part of such a cool crowd.</i>\n\n<i>Huge thanks to you and the whole dancing team for all your hard work.</i>\n\n<i>———————————————</i>\n\n<i>Those who really know me will vouch that I usually talk rubbish, so this next bit may come as a surprise. I get up every morning with the intention of helping someone, a random act of kindness or helping someone achieve something, today was different,I was invited by Rachel France </i><i>to the Movement Convention 2016 at Loughborough University to meet some fitness professionals and like minded people, I listened intently to some very interesting speakers, however to get to the point, someone who I don\'t know, have never met and didn\'t speak directly to me had a remarkable effect on me, his words meant something to me and has helped me to see that I need to live life in the present, I hold toxic nocebo thoughts from previous jobs, relationships and decisions that spoil the moment that is now, I spend(waste) many hours worrying over things that have already happened or may never happen. I overthink things but now realise that I never actually had an influence on others behaviour, that was all down to them. Tonight I will sleep well, content with my life and my decisions. Tomorrow I resume posting shi7e and rants about BMW drivers just so the world won\'t stop spinning. Good night all x</i>\n\n—————————-\n\n<i>What a superb day at the Movement Convention. Rachel France</i><i> your hard work has paid off. The lectures and lecturers were brilliant, I even got a bit star struck meeting Ben Coomber! </i><i> I have no more words but if I had one, you\'d go in my gratitude book!</i>\n\n—————————————-\n\n<i>Great day at the Movement Convention with Rachel France </i><i>the day flew by with lots of take home snippets for clients this week.</i>\n\n<i>—————————</i>\n\n<i>Just wanted to say briefly how much I enjoyed today, some great speakers but your S&amp;C coach ..... I was guilt initially of being judgemental about meditation but he just made sense of the last 5 years of my life and given me a new perspective in which I can move on, so please pass on my thanks, he will make a difference to so many people in my life, clients, family, friends, I spoke at length to a friend on the way home who is suffering from previous relationships and I can say definitively that I have already made a change to her by relaying some of the info. Thanks again to your wonderful team and if I can do anything to promote them to my members then please just ask ,</i>\n\n<i>———————————</i>\n\n<i>Have had a fab time at the movement conference learning from the best in the movement biomechanics and therapy world. It\'s always a pleasure to spend time with these amazing people thanks Rachel France </i><i>and all the other Biomechanics C</i><i>oaches</i>\n\n<i>——————————-</i>\n\n<i>Hi Rachel! Just thought I\'d text to as didn\'t get a chance to say thank you for the movement convention! I have already learnt so much and loved everybody I met! &#x1f600; see you Thursday morning in London for the shoulder! X</i>\n\n——————————————-\n\n<i>Back safe and sound from The Movement Convention at Loughborough University.</i>\n\n<i>Great event from Rachel France</i><i> and the rest of the Biomechanics Education team.</i>\n\n<i>Enjoyed the lectures today and a few cheeky cold ones last night!</i>\n\n<i>—————————————</i>\n\n<i>An amazing day of learning &amp; listening at the TMC16 </i><i>at Loughborough University with </i><i>Mairi Taylor</i><i>, and a room full of other professionals and of course all the brilliant speakers .. thank you Rachel France</i><i> for such a Fab event .</i><i> </i><i>&#x1f61c;</i><i> </i><i>&#x1f4aa;</i><i> </i><i>&#x1f44d;x</i>\n\n<i>———————————————</i>\n\n<i>Thank you Rachel France</i><i> for a fab day. You have an amazing job and an amazing group of inspirational friends. </i>\n\n<i>Now on my way home back to Suffolk to get booked in onto your iMoveFreely course. </i>\n\n<i>Hope to see you then x</i>\n\n—————————————————————————————-\n\n<i>Hi Rachel- just a quick note to say what a great day it was on Saturday-the range of speakers was good and everyone was so friendly and positive.</i>\n\n<i>I stopped going to lots of fitness industry stuff as it can be very “superficial” but really love the vibe of other biomechanics trainers/coaches.</i>\n\n<i>Have a great week,</i>\n\n——————————————————\n\nFINALLY….!\n\nSomeone asked me what the purpose of TMC16 was and it set me off thinking and this is where we have realised its true purpose…\n\n<b><i>The Movement Convention is a celebration of beautiful human movement and ways to improve human movement through education. Changing lives by empowering others. </i></b>\n\n<b><i>One very special person changed my life by empowering me thus allowing me to do the same for others. </i></b>\n\n<b><i>So through this annual celebration WE share his gift. THIS is the purpose of TMC!</i></b>\n\nWANT TO BOOK NOW?\n\nIf you do it’s ONLY £100 no matter how many days TMC17 is or what the price increase is next year. So book NOW guarantee your place and guarantee your price!\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">BOOK HERE !!</a>','YOU seriously missed out...','','draft','closed','closed','','you-seriously-missed-out','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1325',0,'post','',0),(1326,0,'2016-10-10 18:56:34','2016-10-10 18:56:34','','','','inherit','closed','closed','','screen-shot-2016-10-10-at-19-55-53','','','2016-10-10 18:56:34','2016-10-10 18:56:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/Screen-Shot-2016-10-10-at-19.55.53-1.png',0,'attachment','image/png',0),(1333,3,'2016-10-14 06:07:00','2016-10-14 06:07:00','<ul>\n 	<li>Do you have clients who just can\'t move very well?</li>\n 	<li>Do they stretch regularly but still don\'t improve their posture or movement?</li>\n 	<li>Do you wish you had something new in your tool box?</li>\n 	<li>Do you wish you knew more about how to help clients with movement \'issues\'?</li>\n</ul>\nWhat if I suggested to you that not all muscles only need to be stretched and that more often than not muscles may require a low level contraction to improve function? If you have never heard of subclinical muscle spasm or Post Contraction Sensory Discharge please do read on....\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26985\" src=\"https://biomechanicseducation.com/wp-content/uploads/2016/10/shutterstock_1054776068-scaled-1.jpg\" alt=\"\" width=\"755\" height=\"296\" />\n\n&nbsp;\n<h2><span style=\"color: #808080;\"><b>Question</b>: What is muscle spasm?<i> …’A muscle that cannot relax’ , </i>Dvorak</span></h2>\nRibot-Ciscar et al has established that a muscle relaxes maximally after it has been contracted sub-maximally and for a prolonged period. He refers to it as <i>Post Contraction Sensory Discharge. </i>\n\nThe anti-spasm, or 20/20 muscle energy technique (M.E.T) as we refer to it (20% effort muscle contraction held for 20 seconds), is described below by E. Ribot-Ciscar, M. F. Tardy-Gervet, J. P. Vedel and J. P. Roll.\n<blockquote><i>Summary</i><i> “The activities of human muscle spindle primary endings were recorded in the lateral peroneal nerve using the microneurographic method. The aim of the study was to test whether voluntary isometric contraction causes any after-effects, first in the resting discharge of muscle spindle primary endings and secondly in their responses to a slow ramp stretch. To investigate the latter point, the initial angular position of the ankle was passively adjusted until the unit fell silent, in order to introduce a delay in the responses to muscle stretch”....they found that “Isometric voluntary contraction led to changes in muscle spindle stretch sensitivity which resulted in a reduction in the stretch threshold and a decrease in the muscle spindle dynamic sensitivity. These data suggest that the after-effects observed may have been triggered by static fusimotor neurones. The results are discussed with reference to the theory according to which the processing by the CNS of muscular proprioceptive messages deals mainly with signals arising from muscles stretched during movement, and it is concluded that the coactivation of alpha and gamma motoneurones during the contraction facilitates the coding of the parameters of forthcoming stretching movements, by the muscle spindles”. </i></blockquote>\n&nbsp;\n\nSo in other words the M.E.T exercises like the 4 Sign or Leg Press, allow the muscle to stretch easier after the ‘contraction’, and consequently <b>improves the overall function</b> of the muscle.\n\nNo single method will help all ‘types’ of muscle spasm of course, this is one of many ways that can help. What this technique is great for is a great way to provide your clients with a method that they can help themselves so they’re don’t become reliant on their therapist or trainer. It’s something to empower them to have control over their own movement limitations between sessions with their practitioner.\n\n&nbsp;\n\n<hr />\n\n<blockquote>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><strong><img class=\"wp-image-25128 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1520541617-scaled.jpg\" alt=\"\" width=\"302\" height=\"231\" /></strong></span></h2>\n<h2>Muscle in subclinical spasm</h2>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><span style=\"color: #000000;\"><strong>What it is?</strong></span>: A muscle in spasm is one that cannot relax in other words it is in a state of constant contraction (tension).</span></h2>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><span style=\"color: #000000;\">Why?</span>: Usually because it’s trying to protect something (a joint or nerve perhaps) or its being loaded from another biomechanical problem remote from that muscle.</span></h2>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><span style=\"color: #000000;\">Management?:</span> Helped by M.E.T\'s and maybe massage techniques.</span></h2>\n</blockquote>\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h2>Muscle that is \'tight\'</h2>\n<blockquote>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><span style=\"color: #000000;\"><b>What it is?</b></span>: A short/inflexible muscle (tight) is one that is not in spasm, it is merely shorter in length than it was</span></h2>\n<img class=\"wp-image-23770 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/08/shutterstock_1176407491-2.jpg\" alt=\"\" width=\"172\" height=\"230\" />\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"> intended (or needs) to be.</span></h2>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><span style=\"color: #000000;\"><b>Why?</b></span>: Often adaptive shortening caused by adapting to inactivity, lack of use through full range, poor posture or poor technique.</span></h2>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><span style=\"color: #000000;\"><b>Management?</b></span>: Helped by stretching techniques, some massage techniques may also help.</span></h2>\n</blockquote>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<blockquote>\n<h2><span style=\"color: #808080;\"><b><img class=\"wp-image-23141 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/shutterstock_383061178-scaled.jpg\" alt=\"\" width=\"361\" height=\"271\" /></b></span></h2>\n<h2></h2>\n<h2><em><span style=\"color: #808080;\">Tardeau and Tarbury in the late 90’s found that up to 40% of a muscle can change its composition if its been in spasm for more than 6 weeks to become more tendon-like (none contractile) to avoid the muscle having to exert energy to contract the muscle to protect (a joint for example). </span></em></h2>\n<h2><em><span style=\"color: #808080;\">If the muscle is fibrotic, it requires less effort and therefore is less susceptible to fatigue, it is a body’s way of compensating and being ‘efficient’; not always productive or effective though as its painful of course.</span></em></h2>\n<h2></h2>\n</blockquote>\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2>Finally..</h2>\nRibot-Ciscar et al refers to a muscle relaxing optimally after a prolonged sub maximal contractions. Jiri Dvorak (Neuroscientist &amp; FIFA Chief Medical Officer) refers to <i>Post Contraction Sensory Discharge</i>. Ribot-Ciscar looked at human muscle spindle primary endings to test whether voluntary isometric contraction causes any after-effects, first in the resting discharge of muscle spindle primary endings and secondly in their responses to a slow ramp stretch. This physiology has not been shown to be present in a ‘tight’ muscle.\n<h2>Would you like to learn more about techniques like this?</h2>\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a></h1>','Post-contraction Sensory Discharge','','draft','closed','closed','','1333-2','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1333',0,'post','',0),(1334,0,'2016-10-14 05:49:36','2016-10-14 05:49:36','','','','inherit','closed','closed','','woman-on-beach','','','2016-10-14 05:49:36','2016-10-14 05:49:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/woman-on-beach-1.jpg',0,'attachment','image/jpeg',0),(1337,3,'2016-10-17 05:44:44','2016-10-17 05:44:44','You want to move more freely, right?\n\nYour clients want to move more freely too, don\'t they?\n\nIn fact, do you know anyone who doesn\'t want to move more freely?\n\nIn many cases, moving more freely also = less pain\n\nIt really isn\'t that complicated to be honest but we do need to consider WHY we/our clients seem to be suffering so much with our movement. Even as fitness/exercise professionals WE often find the hectic lives we lead reduce the time we spend on ourselves and even WE need to regain responsibility for our own physical health to set an example to our clients.\n\nConsidering the average healthy adult (that includes YOU) spends a high proportion of their time (certainly compared to 50 years ago) either sitting at a desk, driving, travelling or hunched over phones for example, it’s no surprise we are suffering these low grade non specific aches and niggles, is it!? Our hips are forgetting they are capable of more than 90 degrees of flexion and our thoracic spine rarely seems to find extension these days.\n\nSo by setting an example to our clients and taking ownership, making a few small changes to OUR own lifestyles (and maybe some bigger ones for some of us too) we can reduce OUR risk of injury, while teaching our clients AND feel the benefits of the freedom of movement with these 6 really simple tips:\n\n<strong>1). See a skilled professional who can assess your intrinsic function BEFORE you have a problem</strong>\n\nNot to be confused with seeing a medical professional who\'s job is to assess medical conditions, find someone who understands intrinsic function like a Biomechanics Coach™, a Movement Specialist or Instructor who specialise in teaching you how to improve your movement .\n\n<strong>2). Do What They Say</strong>\n\nSimple = Own it!\n\nThe information they give you is what you are paying for, TRUST them!\n\nYOU’RE in the state YOU’RE in because of YOUR lifestyle.\n\n<strong>3). Get A Good Sports ‘Style’ Massage Regularly</strong>\n\nFind a good massage therapist and have a massage regularly - the good ones are the ones with a great reputation, they are NOT the cheapest!! You get what you pay for.\n\n<strong>4). Stop Carrying Your Bag On The Same Side</strong>\n\nWe would never consider going to the gym and only training one side of the body and yet every day we carry our heavy sports bags, shopping bags, laptop bags on the same side!\n\nGo shopping and get a trolley bag or a rucksack!\n\n<strong>5). Burn All Your \'Fashion\' Footwear!</strong>\n\nOk a tough one (specially for the ladies who like to party maybe) but I guess the question is this \"how much fun you gonna have sitting at home crippled with back pain looking ago those pretty high heels in the bottom of your wardrobe?\"\n\nAlso not all shoes are good for ALL feet.\n\nGet your feet assessed properly for advice on the best footwear for your foot function. If you have a loose MidTarsal Joint you probably shouldn\'t wear, lets call them \'finger\' shoes (you know the ones I mean), ballet pumps or converse.\n\n<strong>6). Move More!</strong>\n\nKind of an obvious one but one we still forget once sucked onto the TV or computer screen. Rather than set up all of your things within reach of your desk, move everything away from you so you are reaching and moving more. Offer to make drinks for everyone - all the time!\n\nInvest in a raised laptop stand onto of your desk so you can stand (this made a huge difference for me) so your hip muscles of permanently active. Or simply put your keyboard on a stack of books sometimes.\n\nFor more information on what a Biomechanics Coach™ prescribes <a href=\"https://www.biomechanicseducation.com/imovefreely/\">READ HERE</a>\n\nWe NEED YOU !\n\nDemand is increasing rapidly for this skill set so we need more Biomechanics Coaches™ around the UK!\n\nIs it you?\n\nDo you have what it takes?\n\nAre you prepared to take your profession to another level?\n\nDo you want to become part of a strong inter-professional team?\n\nBecome a Biomechanics Coaches™ <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">REGISTER YOUR INTEREST HERE </a>','6 Tips GUARANTEED To Improve Your Intrinsic Biomechanics!','','draft','closed','closed','','6-tips-guaranteed-to-improve-your-intrinsic-biomechanics','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1337',0,'post','',0),(1338,0,'2016-10-17 05:40:41','2016-10-17 05:40:41','','','','inherit','closed','closed','','biomechanics-coach-cmyk-300dpi','','','2016-10-17 05:40:41','2016-10-17 05:40:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/Biomechanics-Coach-CMYK-300dpi-1.jpg',0,'attachment','image/jpeg',0),(1339,0,'2016-10-17 05:44:11','2016-10-17 05:44:11','','','','inherit','closed','closed','','img_3647','','','2016-10-17 05:44:11','2016-10-17 05:44:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/IMG_3647-1.jpg',0,'attachment','image/jpeg',0),(1342,3,'2016-10-19 07:44:34','2016-10-19 07:44:34','A ToroPro!\n\nLearn how on this kinesiology taping course with one of The Movement Convention\'s resident international presenters, Mike Grice of Movement Therapy Clinics.\n\nMike was proud to represent Biomechanics Coaches™ throughout the world when he presented 3 workshops on <i>\'Biomechanics Screening for Lumbo-Pelvic Dysfunction\'</i> at the IOC World Conference for injury prevention in Monaco with Dr Marie-Elaine Grant.\n\nHe is also an exceptional Master Trainer and teacher of therapies amongst our things.\n\nExperience Mike\'s classroom first hand\n\nNovember 16th 10am-4pm\n\nBirmingham Movement Therapy Clinic\n\nHarbourne\n\nLearn how to tape the ToroPro way..\n\n<a href=\"http://www.birminghammovementtherapy.co.uk/active-skills/\">BOOK HERE</a>','Kinesio Tape Like A \'Pro\'','','draft','closed','closed','','kinesio-tape-like-a-pro','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1342',0,'post','',0),(1343,0,'2016-10-19 07:44:27','2016-10-19 07:44:27','','','','inherit','closed','closed','','screen-shot-2016-10-19-at-08-44-06','','','2016-10-19 07:44:27','2016-10-19 07:44:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/Screen-Shot-2016-10-19-at-08.44.06-1.png',0,'attachment','image/png',0),(1346,3,'2016-10-21 05:41:00','2016-10-21 05:41:00','This Biomechanics Coach™ of the Month nomination is the fantastic Lorna Wilson!\n\nShe is spreading the word internationally over in Amsterdam and we speak regularly every month to discuss all things \'intrinsically biomechanical\' amongst the things.\n\nLorna\'s nomination is not only for flying the Biomechanics Coach™ flag internationally but also for staying so committed and actively up to date even from so far away. She really does an awesome job with her clients - see her case study below.\n\n<b>What made you choose Biomechanics Coaching™?</b>\n\n<i>I felt that I was missing something in my personal training and doing the Biomechanics Coaching™ qualification was suggested by another Personal Trainer.  I jumped right in!</i>\n\n<b>What do you specialise in outside of Biomechanics Coaching™?</b>\n\n<i>I am a personal trainer and mostly trained more with people who had either never trained or hadn\'t trained for a long time.  Often this would be in the own house where they felt most comfortable and also outside.  People who needed a little bit more TLC to get them started.  Also, when I started this job in Amsterdam I worked with a lot of Expats.  At that time personal training wasn\'t very common.  Now I am working more with people like myself who are into running and triathlon.</i>\n\n<b>Where would you like to see yourself in ten years from now?</b>\n\n<i>I would like to have made Biomechanics Coaching™ more known in Amsterdam especially in the endurance world.  Also, I would like to have clients coming from all round the country as they have heard how amazing I am!</i>\n\n<b>What would be your advice to somebody thinking of becoming a Biomechanics Coach™?</b>\n\n<i>It is a very powerful tool to add to what you are currently doing.  I feel so much more confident in how I can help my clients than I have ever done before.  </i>\n\n<b>On the journey to where you are now what has been your achievements?</b>\n\n<i>• Personal - Successfully moving away from corporate life and being less stressed and loving what I do</i>\n\n<i>• Sporting - Despite currently planning to run Boston Marathon completing my first marathon still remains one of my sporting highlights.</i>\n\n<i>• Career highs - Being asked to talk at a conference for women doing triathlon.  It really made me feel I had made it even though the conference never went ahead :(</i>\n\n<b>Tell us a secret or something interesting about you that not many people know about</b>\n\n<b>you: </b> <i>I\'ve lived in the Netherlands for more than 14 years and still take Dutch lessons!</i>\n\nFancy joining Lorna in raising the profile of Biomechanics Coaching™Amsterdam? or anywhere?\n\n<a href=\"https://www.biomechanicseducation.com/schedule/\"><b>2017 dates are LIVE and the waiting list is immense!</b><b>\n</b><b>Register your interest QUICK!</b></a>\n\nHere is one of Lorna\'s case studies;  <a href=\"http://wilsonsworkouts.nl/success-of-a-runner/\">http://wilsonsworkouts.nl/success-of-a-runner/</a>\n\n&nbsp;','Less Stress in Amsterdam!','','draft','closed','closed','','less-stress-in-amsterdam','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1346',0,'post','',0),(1347,0,'2016-10-21 05:40:53','2016-10-21 05:40:53','','','','inherit','closed','closed','','screen-shot-2016-10-21-at-06-40-34','','','2016-10-21 05:40:53','2016-10-21 05:40:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/Screen-Shot-2016-10-21-at-06.40.34-1.png',0,'attachment','image/png',0),(1350,3,'2016-10-23 06:10:07','2016-10-23 06:10:07','<b>How far would YOU travel? </b>\n\n<b>How much would YOU pay?</b>\n\n<b>What lengths would YOU go to...to find answers?</b>\n\nLet me give you some examples of how much Biomechanics Coaches&#x2122; are in demand and the lengths people will go to find us.\n\nNigel McHolland was one of our first learners many years ago and has also previously been our of the Month. Based in Scotland he practices a blend of skills including Sports and Remedial Massage and he is Strength and Conditioning Coach. So is he just like many of YOU reading this now.\n\nWhat sets Nigel apart is his SYSTEM. The ability to objectively analyse, assess, screen, deduce and monitor which then allows him to understand which skills to apply, when to apply them, how to create an extremely bespoke and personalised exercise programme AND also when to refer to someone else, for each one of his clients.\n\nWe LOVE to stay in touch with people like Nigel, and as many of the people who train with us as possible, because WE are united in our common goal of <i>improving human movement </i>and helping the nation be <i>free to move </i>(and because they are really cool, nice people!)\n\nAnyway Nigel emailed me the other day to share an experience with me and with his permission I want to share it with you because THIS is the REALLY AWESOME sort of thing WE get to experience as Biomechanics Coaches&#x2122;...\n\n<i>Hi Rach,</i>\n\n<i>Below is a testimonial from my Swiss client that visited me for a week recently. Some amazing results!!</i>\n\n<i>Nigel...</i>\n\n<i>Testimonial</i>\n\n<i>“I’m not a prolific reviewer, but I feel compelled to break cover. While on my way to Gullane to see Nigel, sitting on a plane from Switzerland to Edinburgh after having booked a B&amp;B for 5 nights, I thought to myself, “What am I doing? Am I crazy”.  I lead a relatively active life and had become frustrated with little niggles, discomfort and dissatisfaction pursuing the conventional route of doctors, physios, chiros, osteopaths, self-proclaimed wonder programs. Having discovered the world of podcasts, I heard Nigel being interviewed by Christopher Kelly </i><a href=\"http://t.co/pIOtlSUrOh\"><i>http://t.co/pIOtlSUrOh</i></a><i> and it so happens that my one leg was also functionally shorter. I was very interested, but the system he described had not reached Switzerland yet, so after an initial phone call I booked my ticket and accommodation allowing for 3 rapid fire sessions. The system is very simple, but voodoo-like amazing. The mystery quickly clears with Nigel’s anatomical explanations, but the result does not. He is also very open and accommodating to my uneducated diagnosis and clearly has a wealth of knowledge and experience. On the plane back to Switzerland, I felt equipped to manage and even regress my anatomical imbalances and to date my progress is very much upward. In hind sight I would have done this as a first resort, but then again I probably would not have appreciated the simple, yet powerful system. Ps. I didn’t bring my family along, but this trip has opened my eyes as a holiday destination and if you’re into Golf, Gullane has a pilgrimage feel to it.”      </i>\n\nSo if you are thinking about sampling our courses email me rachel@biomechanicseducation.com\n\n&nbsp;','\"AM I CRAZY?\"','','draft','closed','closed','','am-i-crazy','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1350',0,'post','',0),(1351,0,'2016-10-23 06:09:58','2016-10-23 06:09:58','','','','inherit','closed','closed','','screen-shot-2015-11-21-at-20-08-59','','','2016-10-23 06:09:58','2016-10-23 06:09:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/Screen-Shot-2015-11-21-at-20.08.59-1.png',0,'attachment','image/png',0),(1353,3,'2016-10-26 07:01:29','2016-10-26 07:01:29','Do YOU wish you knew an easy way to recall muscle attachments?\n\nDo YOU wish there was a CPD that could help you understand the anatomy better from the INSIDE?\n\nWould you like to study human movement and how to improve it with your clients?\n\nAre you INSTINCTIVELY prescribing certain exercises BUT unsure if they are actually right for THAT client?\n\nWell we are confident we can help you with our CPD\'s but we asked Mark Blower, one of our previous learners this question...\n\n<b>What would your advice be to anyone thinking of joining our academy or even becoming a Biomechanics Coach™?</b>\n\n<i>\"Simple.. just do it! </i>\n\n<i>My experience is that it’s a real “through the looking glass” moment once you start with Biomechanics Education, and often it will challenge you and possibly some of your long held beliefs, but you will come out of it the other end on a completely different level as a fitness professional. So do it, keep your mind open and your notepad and pencil handy!\"</i>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">LIKE THIS?</a>','Are YOU a PT who wishes they could remember their A&P?','','draft','closed','closed','','are-you-a-pt-who-wishes-they-could-remember-their-ap','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',0,'https://www.biomechanicseducation.com/?p=1353',0,'post','',0),(1354,0,'2016-10-26 07:01:20','2016-10-26 07:01:20','','','','inherit','closed','closed','','screen-shot-2016-10-26-at-08-01-02','','','2016-10-26 07:01:20','2016-10-26 07:01:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/Screen-Shot-2016-10-26-at-08.01.02-1.png',0,'attachment','image/png',0),(1357,0,'2016-10-28 08:45:26','2016-10-28 08:45:26','','','','inherit','closed','closed','','screen-shot-2016-10-28-at-09-45-03','','','2016-10-28 08:45:26','2016-10-28 08:45:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/Screen-Shot-2016-10-28-at-09.45.03-2.png',0,'attachment','image/png',0),(1358,3,'2016-10-28 11:31:22','2016-10-28 11:31:22','Walking down the street, training at the gym, watching girls teeter in high heels on a night out or walking knock kneed and their Uggs, watching the way people sit at events, at work or in the waiting room at the doctors is something I find quite fascinating.\n\nNOOOO I’m not a voyeuristic person (HONEST I never watch reality TV - well not regularly anyway!!) but I am a geek when it comes to watching human movement and analysing physical variations in our body types and the way we move because of those variations.\n\nWhy does THAT happen? Why do THEY walk THAT way?\n\nBeing on holiday the examples of our differences are more obvious with less clothing and what I noticed while on holiday this year was that we really should..\n\n<i>..Embrace OUR Genetics!</i>\n\nHaving spent 2 weeks half naked, with half naked people, lying around a pool watching each other walk to the bar or apply cream, step into a pool, swim, pick up kids, eat ice cream etc etc...\n\nIt really does emphasise human movement variations and of course the variations of aesthetics.\n\nIt is truly fascinating to see the many different body types from large to small, tall to short etc. It made me think about the ‘ideal’ body concept and in fact how dull and boring it would be if we all looked and moved the same way or if we ALL had those \'magazine cover\' bodies, the same hair styles, the same limb lengths, waist circumferences etc!\n\nBUT\n\n..in MY opinion using aesthetics as THE goal is possibly not the best way to plan exercising programmes even if that is ultimately the end goal. Creating a goal that is health and/or fitness related will of course still result in improved aesthetics based on YOUR body type, YOUR frame and YOUR genetics. Having this shift in the training programme goal offers more opportunity for positive achievement/s AND a more positive shift towards a realistic body image.\n\n(Here I am talking about the average client as oppose to competitive body builders of course, since body building is an aesthetically judged competition rather than health and fitness being the goal)\n\nThere is of course the beautiful aspect of our differing bodies types. From the cute PSIS dimples above large OR small and maybe wide OR narrow round buttocks. These dimples can appear wide or narrow or some people don\'t see to have any! There are various textures of tanned skin, even different ‘shades’ of white skin and some have scars or birth marks that no on else in the world has!\n\nThere is a huge variety of long OR short soleus calf muscles above feet that turn out OR turn in OR <i>flick</i> a certain way during their bare foot walk across the tiles. Some spines rotate and some stay rigid during movement. LONG shins, short shins, slim arms, muscly arms, <i>baggy</i> triceps and bulging ones.\n\nSeriously imagine if we ALL actually looked the same!!! BOOOOOOORRRRIIING!!!\n\nTHEN as PT’s, Fitness instructors, exercise professionals and even therapists we get frustrated that we struggle to understand why people move the way they do.\n\nBUT WE ARE ALL DIFFERENT!\n\nSo of course this will be a challenge for anyone trying to apply a system to human movement…\n\nNO ONE SYSTEM WORKS FOR EVERYONE!\n\nSo we should receive education that embraces the differences between us all rather than EXPECTS us ALL to move the same way. We should maintain an open mind to what our clients are capable of when using their bodies. A realistic aim or goal should always be individual to that person in relation to their history, genetics, lifestyle, diet, biomechanics and movement ability or capacity.\n\nYOU do KNOW the MORE you know the LESS you know, right?\n\nSo we should also demonstrate duty of care to our clients by continuing to attend up to date CPD’s, further training and we should also read more and do our OWN research to develop our OWN methods of application for the best care of OUR clients.\n\nWELL did you know you already learnt one of the simplest and applicable methods to analyse human movement (without any fancy equipment) as an exercise professional?\n\nYUP\n\nGroup Action of Muscles is what we call our <i>movement analysis</i> study section in the Spine Biomechanics 2 day CPD workshop, that is part of our Biomechanics Coach™ workshop series. This is where we take our learners back to their A&amp;P training, which often gets forgotten due to only ever using lay language with our clients! So we lose the skill of recalling the analysis of abduction, rotation, flexion etc as part of movements during our exercise prescription. PLUS this is disguised by lots of soft tissue (muscle, fat, fascia, nerves, skin etc) covering the skeletal system which is the part of the anatomy we use to understand those joint actions.\n\nThis L3 A&amp;P knowledge is the minimum <b>pre requisite</b> for accessing our academy at the appropriate level to understand the screening system we teach. BUT it is very rare that a learner has really come in and easily nailed this session. Yet it is what we are taught right at the beginning of our training!\n\nHere are the reasons professionals give for attending our CPD workshops:\n\n<i>I want to understand the body and movement better </i>\n\n<i>I want to learn more about the anatomy </i>\n\n<i>I want to understand how we move on the inside</i>\n\n<i>I want to understand why people move badly</i>\n\n<i>I want to understand how to help people move better</i>\n\n<i>I want to understand why they ache hurt get injured</i>\n\nIf we remembered out level 3 A&amp;P we would already have many of these skills and be more confident. We also hear…\n\n<i>“but I never use this language with my client!?”</i>\n\n<i>agonist </i>\n\n<i>antagonist </i>\n\n<i>synergists</i>\n\n<i>dynamic stabilisers </i>\n\n<i>fixators</i>\n\n<i>abduction</i>\n\n<i>adduction </i>\n\n<i>rotation </i>\n\n<i>flexion </i>\n\n<i>extension </i>\n\n..of course, me neither !! BUT if we talk to <i>each other</i> this way then at least we can enhance our recall AND memory of it.\n\nSadly the fitness industry in particular causes many of us to feel we can\'t admit to how bad our A&amp;P memory really is. If we are really honest it’s really poor isn’t it and therefore not surprising many exercise professionals lose confidence in what they are looking at when watching clients move!\n\nWe are expected to achieve so much when it comes to improving movement when we cannot even work out the WHY from WHAT we see.\n\nClients are suffering more and more due to lifestyles and our job of choosing the best exercise programme is getting even harder as everyone has SOMETHING going on, eh!\n\nPreviously we didn\'t feel we had REASON TO REMEMBER our A&amp;P.\n\nIn our academy we GIVE YOU REASONS to remember your anatomy which gives you increased confidence when watching your clients move.\n\nSo while embracing our differences, lets start getting serious about understanding human movement and improving confidence in movement and of course function.\n\nRemember NO ONE IS PERFECT …that would be SO dull!\n\nThe Spine Biomechanics workshop includes WAAAAAY more than just movement analysis by the way!!\n\n<a href=\"https://www.biomechanicseducation.com/workshop/spinal-biomechanics-3/\">REGISTER YOUR INTEREST HERE</a>','Embrace YOUR Genetics! -  I Confess - I’m A Geek!!','','draft','closed','closed','','embrace-your-genetics-i-confess-im-a-geek','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1358',0,'post','',0),(1359,0,'2016-10-28 11:31:13','2016-10-28 11:31:13','','','','inherit','closed','closed','','screen-shot-2016-10-28-at-09-45-03-2','','','2016-10-28 11:31:13','2016-10-28 11:31:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/Screen-Shot-2016-10-28-at-09.45.03-1-1.png',0,'attachment','image/png',0),(1361,3,'2016-10-31 14:56:29','2016-10-31 14:56:29','Laura Walker has been nominated as Biomechanics Coach™ of the Month!\n\nWe do notice what ALL of our Biomechanics Coaches™ do that are actively promoting healthy lifestyles and ways to improve movement. We wanted to share Laura’s story with you as she is making a real difference with her wonderfully positive and motivational attitude.\n\nThank you Laura, for doing your part in getting the UK moving more freely up north in wonderful Aberdeen!\n\nLaura says…\n\n<i>In June 2015 I was delighted, and relieved, to qualify as a Biomechanics Coach™. Hooray!! </i>\n\n<i>When I was in school, I enjoyed the friendships much more than the school work, so I knew (as did my dad, to his frustration) I ‘could do better\', but I just wasn\'t interested, I was more interested in other things. </i>\n\n<i>Biomechanics Education came to my attention because it was presenting different fitness information. I\'m fascinated with how the body works and how everything is linked. Biomechanics Education gave me this important missing piece of the jigsaw. Despite my best attempts in school to do very little I have actually spent a lifetime learning and Biomechanics Education filled the gaping gaps that had been left by all of my specialist training. </i>\n\n<i>Now I am using Biomechanics Coaching™ &amp; iMoveFreely® with the older adult to improve fitness, strength &amp; balance and their quality of life. Over the last 20 years I have qualified in many fitness disciplines. As a specialist instructor with the older adult (my oldest client is 92) my oldest client in my aerobics class is 84!</i>\n\n<b><i>Where will I be in 10 yeasts time?</i></b>\n\n<i>Well to start with, I will be 63 by then so I\'m hoping I will be retired. But, with a little hard work, maybe not completely. My daughter has joined me in the business this year, which I am delighted about. We are currently working with business mentors to change how we work.</i>\n\n<b><i>To anyone THINKING of becoming a Biomechanics Coach™, THINK no more!!</i></b><i> Take action and invest the time, energy and money. The investment you make in your education, your confidence and your business is more than worth it.</i>\n\n<b><i>My Personal Achievements:</i></b>\n\n<i>Has to be my family. My husband took me to the Queens garden party at Hollyrood Palace this summer. </i>\n\n<i>I have watched my son play rugby for Scotland three years running. </i>\n\n<i>And, my two eldest girls took me to St James\'s Palace last week to collect their Duke of Edinburgh gold award,(and spoke to the duke himself.) </i>\n\n<i>Behind every great man....(or family!)</i>\n\n<b><i>My sporting achievements:</i></b>\n\n<i>These are a few: I played badminton for my university, (when I was there, </i><b><i>many</i></b><i> years ago). I Spent 10 years playing this great game. But I started with fitness in the 70\'s when it was known as Keep Fit and I was a large 10 year old girl. I loved the music, enjoyed being active as it was something I could do, and the fun we had as a group. Nothing much has changed then!!! </i>\n\n<b><i>My Career achievements: </i></b>\n\n<i>Last year I won my very first business award. It has been the highlight of my business career. I deliver fitness to what is termed \'Specialist Populations\' and so work with charities who support people back to work following long term illness or injury, adults with special needs, people who suffer stroke, MS, diabetes and more. </i>\n\n<i>The work I am most proud of is when I worked with NHS Grampian Diabetes department. At the time, the D&amp;O qualification did not exist. I wrote a training programme, delivered it to local instructors and organised a GP referral program throughout NHS Grampian for people with diabetes to receive an exercise and education session, delivering lifestyle and diabetes management and nutritional information. </i>\n\n<i>It\'s still in place today, 10 years later. </i>\n\n<b><i>Something nobody knows about me?</i></b><i> </i>\n\n<i>Some people know I speak Welsh, but few people know it was my first language. I grew up speaking Welsh, and all my education was through the medium of Welsh. I was fortunate to attend the only bi-lingual comprehensive school in Wales, at the time. </i>\n\nFinally Laura says..\n\n<i>Having had several success stories this one is the most poignant…</i>\n\n<i>This year I presented an exercise lecture at the Arthritis UK conference in Manchester. </i>\n\n<i>Those in attendance present with arthritis amongst other health conditions and pain is the one thing that\'s constant. We know as Biomechanics Coaches™ how the anti spasms have the potential help. I was fortunate enough to follow an arthritis consultant lecture. He had just used the same words and phrases Biomechanics Coaches™ use, which helped me to engage my audience with the exercise I was recommending. </i>\n\n<i>His lecture informed the audience:  if you live with pain for 6 weeks or more you\'ll change your movement pattern. This change will cause strain, and disfunction of muscles. </i>\n\n<i>In my session I then reiterated this information and added: if you perform these anti spasms, muscle function is likely to improve and the strengthening exercise will support this, thus contributing to relieving the discomfort of arthritis. </i>\n\n<i>I had a great response from the group after the session. People came up to me after class and generally commented how great they felt. However, two ladies waited till the other delegates had left to came to speak with me. They both said:  \'I  can honestly say that was superb. I\'ve not felt like this for years. I\'m amazed how well I can move\'. </i>\n\n<i>That for me was was job satisfaction. I was so pleased to be able to help those suffering long term pain to feel great. Job done!</i>\n\n<i>Thanks</i>\n\n<i>Laura</i>\n\n<i>&#x1f60a;</i>\n\n<b>Want to learn what Laura\'s missing link was?</b><b>\n</b><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">READ MORE HERE </a>\n\n&nbsp;','Have You Found Your Missing Link?','','draft','closed','closed','','have-you-found-your-missing-link','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1361',0,'post','',0),(1362,0,'2016-10-31 14:55:34','2016-10-31 14:55:34','','','','inherit','closed','closed','','img_0353','','','2016-10-31 14:55:34','2016-10-31 14:55:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/IMG_0353-1.jpg',0,'attachment','image/jpeg',0),(1365,3,'2016-11-04 07:26:48','2016-11-04 07:26:48','<b>The Integrated System</b> has been not only discussed but also sung about since I was little. For example I knew the <i>thigh bone connected to the hip bone and hip bone connected to the back bone</i>… (you know the song)\n\nBut I didn’t appreciate it like I have since becoming a <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Specialist Biomechanics Coach™</a> and this is the one of the biggest differences between <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaches™</a> and other professionals. So while other professionals TALK about the body being an <b>Integrated System</b>, here I would like to explain exactly what that means to those in the <i>intrinsic biomechanics</i> world and why I believe others talk about it but don’t actually practice it, and why.\n\nGenerally we only seek help when we have a problem otherwise, <i>why would we pay for advice?</i> is the general attitude right. We service and MOT our cars regularly (by law in fact) and yet we can buy a new car!\n\nWhat about our precious bodies?\n\nWell when we have an injury or some pain we automatically go to the locally recommended therapist, osteopath, chiropractor, physio, sports therapist or even your GP to find out what the injury or pain is, since they are <i>clinically </i>trained and understand how to ‘treat’ the <i>site of pain</i> or injury. Commonly they will then advise you what to do, maybe give you some kind of manual therapy treatment to improve the symptoms at the site of the problem to reduce the effects of the injury and generally try to make you more comfortable.\n\nSo if you are injured from a <i>trauma</i> then it is advisable to seek these professionals services for it because when there is a pathology, this is probably the most sensible way to go.\n\nYet there are many more cases of ‘low grade’ aches, pains and niggles that are <i>insidious</i> and do not fit into this category. The low grade insidious aches and pains we experience from our daily lifestyles are NOT really ‘injuries’ as they don’t always fit into this category of pathological or clinical changes. However this leaves many professionals with a <i>subjective </i>view of where injury has come from; one cause could be from sitting at a desk all day, for example. Yet there are those who sit at a desk without problems, so if it were simply the act of sitting at a desk, would we not all experience exactly the same low grade aches and pains while sitting at our desks?\n\nSo while I agree that the act of sitting at a desk can contribute, ultimately it is the individuals <i>intrinsic biomechanics </i>(part of which is the neuro-musculoskeletal system) that compensates for being static for too long when we are designed to move, maybe like hunter gatherers.  This can then cause the body to ‘grumble’ at the fact we have just been sitting and not using those hip muscles for 8 hrs giving us muscle spasm which tethers nerves and stiffens joints or any variation of those dysfunctions. These issues may initiate without pain but over time become more uncomfortable.\n\n<b>What happens if you gain mechanical compensations like this? </b>\n\nWell, this can happen in any order, but the muscle spasm might pull on a joint abnormally causing the loading to change in a subtle way that over time irritates the tissues and eventually, over time, causing areas to ache a little. If left unaddressed these low grade aches can become much more painful and eventually can result in a what is often thought of as a secondary injury.\n\n<b>How do we categorise injuries?</b>\n\nWell, there are a few ways, but as <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaches™</a>, we like the work of Sahramann when she breaks them down into 2 sections.  One is the <b>PathoKinesiology Model.</b>  This is where the injury (or pathology) causes abnormal movement and this is then picked up on a movement screen as a protective movement pattern.  The other category is the <b>KinesioPathology </b>Model where the movement causes abnormal loading on structures and it is this that causes the pathology (injury).  In these cases any abnormal movements are really compensatory movements, rather than protective movement patterns.\n\nSo, when a movement coach screens a client to look at any abnormal movements, they can not be sure of whether they are looking at a protective or compensatory movement pattern and of course its essential to understand which it is.  If it’s a pathology causing the abnormal movement, then the pathology needs to be dealt with first, but if it’s the movement causing the pathology, it’s the movement that needs to be dealt with first.  Unfortunately from a movement screen, you don’t know which is which.\n\nWith an <b><i>intrinsic </i></b><i>biomechanical</i> screen, it doesn’t matter which came first, as all we are doing is providing the <b>capacity</b> for whatever ‘normal movement’ is for that client.  We are not directly trying to ‘artificially’ change the movement, we are merely providing the building blocks for whatever pattern suits that individual.  This approach truly understands The Integrated System and compliments all other movement specialists work, as we are helping the client to be able to perform the movement patterns as directed by them.  This enables them to provide their movement correction exercises with on more stable biomechanical platform.\n\nSo, do other professionals understand <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">The Integrated System</a>?\n\nYes of course they do, but the <b><i>intrinsic </i></b><i>biomechanics</i> approach is unique and is very complimentary to other approaches.\n\nBut what do you think?','They SAY It But Do They \'Practice\' It?','','draft','closed','closed','','they-say-it-but-do-they-practice-it','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1365',0,'post','',0),(1366,0,'2016-11-04 07:26:41','2016-11-04 07:26:41','','','','inherit','closed','closed','','humerus','','','2016-11-04 07:26:41','2016-11-04 07:26:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/11/humerus-1.jpg',0,'attachment','image/jpeg',0),(1378,3,'2016-11-08 07:11:30','2016-11-08 07:11:30','<h1>WOW What a year!</h1>\n<span style=\"font-size: large;\">YOU are super lucky because we are CELEBRATING the success of our..</span>\n\n<strong><em>Life Changing Education that Moves You!</em></strong>\n\n<span style=\"font-size: large;\">To say thank you to those of you who continually support us we have not 1 but 2 AMAZING offers for YOU to choose from;</span>\n\n<em><u>November offer</u></em> - Buy <strong>Pelvis &amp; Spine Biomechanics</strong> workshops and get the <strong>Low Back Health Workshop FREE</strong> (worth £180)\n\nOR\n\nBOOK any workshop scheduled in 2017 <em><u>before Dec 20th</u> </em>and get a <strong>FREE iMoveFreely®</strong><strong><span style=\"font-size: large;\">T shirt, Grypit water bottle, AWESOME pre-workout, Jordan weight lifting gloves and a Biomechanics Education bag.</span></strong>\n\n<a href=\"https://www.biomechanicseducation.com/schedule/\" target=\"_blank\" rel=\"noopener\">BOOK HERE NOW or simply register your interest</a>\n\nBEFORE WE RUN OUT!\n\nIf you have any further questions prior to making your booking please do not hesitate to contact us and we really look forward to speaking to you soon!\n\nNote: We offer ALL of our learners FREE RE-SITS of their workshops since we pride ourselves on our inclusive learner support to give YOU life changing education experiences.','FREE Low Back Health Workshop','','draft','closed','closed','','free-low-back-health-workshop','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1378',0,'post','',0),(1379,0,'2016-11-08 07:11:17','2016-11-08 07:11:17','','','','inherit','closed','closed','','945943_687454997947221_1738088506_n1','','','2016-11-08 07:11:17','2016-11-08 07:11:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/11/945943_687454997947221_1738088506_n1-1.jpg',0,'attachment','image/jpeg',0),(1397,3,'2016-11-10 07:21:26','2016-11-10 07:21:26','<b>What is it?</b>\n\n<b>Describing plantar fasciitis is easy: It\'s simply an inflammation of the fascia on the bottom of the foot.</b>\n\n<b>Getting rid of plantar fasciitis is hard!</b>\n\nCases of plantar fasciitis can linger for months at a time, with pain increasing and decreasing in an unpredictable pattern. Often, plantar fasciitis discomfort may nearly disappear for several weeks, only to re-emerge full-blown after a single workout. About 10 per cent of individuals who see a doctor for plantar fasciitis have the problem for more than a year.\n\nThe plantar fascia is actually a thick, fibrous band of connective tissue which originates at the heel bone and runs along the bottom of the foot in a fan-like manner, attaching to the base of each of the toes. A rather tough, resilient structure, the plantar fascia takes on a number of critical functions during running and walking. It stabilises the metatarsal joints (the joints associated with the long bones of the foot) during impact with the ground, acts as a shock absorber for the entire leg, and helps to lift the longtitudinal arch of the foot to prepare it for the \'take-off\' phase of the gait cycle.\n\nAlthough the fascia is invested with countless sturdy \'cables\' of connective tissue called collagen fibres, it is certainly not immune to injury. In fact, about 5 to 10 per cent of all running injuries are inflammations of the fascia, an incidence rate which in the United States would produce about a million cases of plantar fasciitis per year, just among runners and joggers. Basketball players, tennis players, volleyballers, step-aerobics participants, and dancers are also prone to plantar problems, as are non-athletic people who spend a lot of time on their feet or suddenly become active after a long period of lethargy. A recent study found that over 50 per cent of people who suffer from plantar fasciitis are on their feet nearly all day, and many cases of plantar fasciitis seem to occur in \'sofa spuds\' shortly after they\'ve made their first trip around their garden with a lawn mower in the spring.<b> </b>The injury is usually near to where the plantar fascia attaches to the heel bone.\n\n<b>Who gets plantar fasciitis?</b>\n\nPlantar fasciitis is quite common. It mainly affects people over 40 and seems to be more common in women. However, it can occur at any age. It is also common in athletes. Situations where it is more likely include the following:\n\n•If you do lots of walking, running, standing, etc, when you are not used to it. Conversely, people with a sedentary lifestyle are also more prone to plantar fasciitis.\n\n•If you have recently started exercising on a different surface. For example, running on the road instead of a track.\n\n•Wearing shoes with poor cushioning or poor arch support.\n\n•Sudden gains in weight or being overweight will put extra strain on the heel.\n\n•Overuse or sudden stretching of the sole. For example: athletes who increase their running intensity or distance; poor technique starting \'off the blocks\', etc.\n\n•Tightness of the Achilles tendon (at the bottom of the calf muscles above the heel) causing reduced ability to flex the ankle.\n\nOften there is no apparent cause, particularly in older people. A common wrong belief is that the pain is due to a bony growth or \'spur\' coming from the heel bone (calcaneum). Many people have a bony spur of the heel bone but not everyone with this gets plantar fasciitis.\n\n<b>What is the Cause?</b>\n\nThe most common cause of plantar fasciitis is very tight calf muscles which leads to prolonged and / or high velocity pronation of the foot. This in turn produces repetitive over stretching of the plantar fascia leading to inflammation and thickening of the tendon. As the fascia thickens it loses flexibility and strength. So repetitive small injuries to the fascia with or without inflammation or by biomechanical faults that cause abnormal pronation are likely to contribute.\n\nSome practitioners think you will see pronation by dropping and rolling in of the arch. This is not always the case. Sometimes it can only be seen with foot scans, especially if the patient has a high arched foot.\n\nOther causes include high arch or low arch feet (pes cavus / planus) and other biomechanical abnormalities including over-supination which should be assessed by a podiatrist / physiotherapist / biomechanist.\n\n<b>The \'red zone of tautness’</b>\n\nWhy does the fascia flare up? Although it is a fairly rugged structure, the plantar fascia is not very receptive to stretching, and yet stretching occurs in the fascia nearly every time the foot hits the ground. Studies indicate that the fascia can unkink itself to no more than 102 per cent of its normal length without suffering at least some tearing, but the force equal to almost three times body weight which passes through the foot with each step forces the fascia to come close to this \'red zone of tautness\' 90 times per foot per minute during the act of running (\'Anatomy and Biomechanics of the Hindfoot,\' Clinical Orthopaedics, vol. 177, pp. 9-15, 1983). So, it\'s not surprising that plantar fasciitis occurs fairly frequently, nor is it a surprise that the damage - and pain - often tend to occur near the heel, where stress on the connective tissue fibres is greatest, and where the fascia itself is the thinnest (it tends to broaden out as it reaches toward the toes).\n\nWhy are some people troubled by plantar fasciitis, while others remain relatively plantar fasciitis free? Research suggests that plantar fasciitis is often associated with a change in activity (like a sudden increase in the volume or intensity of training or a simple expansion of the total time you spend on your feet). Using worn-out shoes, especially while running on pavement or hard ground, also seems to increase the risk Individuals with flat feet are said to be at higher risk for plantar fasciitis, and - somewhat paradoxically - so are people with high arches. A sudden increase in hill training may also spark a bout of plantar fasciitis, and pregnancy and plantar fasciitis go together like hand and glove.\n\nGaining weight or being obese is also a strong risk factor for plantar fasciitis. A recent study determined that 77 per cent of its sample of 411 plantar fasciitis (heel spurs) patients were overweight. Another study found that 23 per cent of overweight women had plantar fasciitis (heel spurs) compared to 8 per cent of the normal body-weight group. The additional body mass simply places increased stress on the plantar fascia.\n\n<b>What are the Symptoms of plantar fasciitis?</b>\n\nPain is the main symptom. This can be anywhere on the underside of the heel. Commonly, one spot is found as the main source of pain. This is often about 4 cms forward from the heel, and may be tender to touch.\n\nThe pain usually eases on resting the foot, but is often worst when first used in the morning or after long periods where no weight is placed on the foot. Gentle exercise may ease things a little as the day goes by, but a long walk often makes the pain worse.\n\nSudden stretching of the sole of the foot may make the pain worse. For example, walking up stairs or on tip-toes. You may limp because of pain. Some people have plantar fasciitis in both feet at the same time.\n\n<b>What is the Treatment?</b>\n\nThe traditional remedies for plantar fasciitis are - at best - quite weak. Stretching the calf muscles is often recommended, as are massage, decreasing one\'s training, losing weight, purchasing better-fitting shoes (with a raised heel and arch support), using special insoles, relying on thick heel pads, icing the sore heel, and gulping down prescription-type doses of ibuprofen.\n\nThe trouble with most of these nostrums (e. g., stretching the calf muscles, getting a massage, cutting back on training, hitting the non-steroidal anti-inflammatories, and icing) is that they don\'t really address what\'s going on. Stretching out the calf area is often a step in the right direction (tight calf muscles put extra strain on the plantar fascia), but there are many other strengthening and stretching routines which work more effectively (we\'ll describe them later). In addition, you can refrain from training, employ ice packs, and wash down dozens of ibuprofen caps over a period of many months, but when you get back into full-fledged training again, plantar fasciitis is very likely to recur with full fury. As is the case with any injury, you have to understand why plantar fasciitis cropped up before you can really rehab yourself and make the impairment a distant memory. You also need to increase the strength and resiliency of the plantar fascia and the other muscles and connective tissues of the foot - and stabilise and strengthen the entire leg - before you can expect to stay away from plantar fasciitis in the future. The exercises outlined below do just that.\n\n<b>Exercises to recover from and prevent plantar fasciitis</b>\n\nOur plantar fasciitis routines are divided into two types - those that emphasise stretching and those that stress strengthening:\n\n<b>I. Stretching Routines</b>\n\nA. The Rotational Hamstring Stretch\nTo carry out this stretch, stand with your weight on your left foot and place your right heel on a table or bench at or near waist height. Face straight forward with your upper body and keep both legs nearly straight. As you stand with your right heel on the table and your left foot on the ground, rotate your left foot outward (to the left) approximately 45 degrees, keeping your body weight on the full surface of your left foot (both heel and toes are in contact with the ground). You are now ready to begin the stretch.\n\nLean forward with your navel and shoulders until you feel a steady tension (stretch) in the hamstring of your right leg. Don\'t increase the stretch to the point of pain or severe discomfort, but do maintain an extensive stretch in your right hamstring while simultaneously rotating your right knee in a clockwise - and then counter-clockwise - direction for 20 repetitions. As you move the right leg in the clockwise and counter-clockwise directions, stay relaxed and keep your movements slow and under control.\n\nAfter the 20 reps, remove your right leg from the table and rest for a moment.\n\nThen, lift your right leg up on to the table and repeat this clockwise and counter-clockwise stretch of the right hamstring, but this time keep the left (support) foot rotated inward (to the right) approximately 10 degrees as you carry out the appropriate movements. Perform 20 repetitions (clockwise and counter-clockwise) before resting.\n\nFinally, repeat this entire sequence of stretches, but this time have the right foot in support and the left foot on the table for the repetitions (do 20 clockwise and counter-clockwise reps with the left foot on the table and the right (support) foot turned out 45 degrees, and 20 more reps with the right foot turned in).\n\n<b>Why is this stretch valuable? </b>\n\nTight hamstring muscles (which cross both the knee and hip joints on the back of the leg) can lead to limited extension and exaggerated flexion of the knee during the running stride (they tend to pull the lower part of the leg backward). This over-flexion at the knee actually increases the amount of dorsiflexion at the ankle during the landing phase of the running stride (remember that the entire leg functions as a kinetic chain; change one thing, in this case hamstring flexibility, and that change will \'ripple\' right down the leg to the ankle joint). Increased flexion of the ankle creates an inordinate amount of stress on the Achilles tendon (the Achilles tendon\'s \'job\' during running is to control dorsiflexion of the ankle), which in turn pulls on the heel bone (calcaneus) and plantar fascia. The rotational hamstring stretch ensures that hamstring flexibility is developed in the transverse (rotatory) plane as well as the sagittal plane. The hamstrings undergo movement stresses in both of these planes during the running motion and therefore must have flexibility in both planes to avoid over stressing the plantar fasciae.\n\n<b>What other treatments are there for plantar fasciitis?</b>\n\nThere is no one specific treatment that appears stand out as the best. A combination of different treatments may help.\n\n<b>Rest the foot</b>\n\nThis should be done as much as possible. Avoid running, excess walking or standing, and undue stretching of the sole. Gentle walking and exercises described below are fine.\n\n<b>Footwear</b>\n\nDo not walk barefoot on hard surfaces. Choose shoes with cushioned heels and a good arch support. A laced sports shoe rather than open sandals is probably best. Avoid old or worn shoes that may not give a good cushion to the heel.\n\n<b>Heel pads and arch supports</b>\n\nYou can buy various pads and shoe inserts to cushion the heel and support the arch of your foot. These work best if you put them in your shoes at all times. The aim is to raise the heel by about 1 cm. If the heel is tender, cut a small hole in the heel pad at the site of the tender spot. This means that the tender part of the heel will not touch anything inside the shoe. Place the inserts/pads in both shoes, even if you only have pain in one foot. Orthoses should always be broken in slowly.\n\n<b>Painkillers</b>\n\nPainkillers such as paracetamol will often ease the pain. Sometimes anti-inflammatory medicines such as ibuprofen are useful. These are painkillers but also reduce inflammation and may work better than ordinary painkillers. Some people find that rubbing a cream or gel that contains an anti-inflammatory medicine onto the heel is helpful.\n\n<b>Injections</b>\n\nA steroid (cortisone) injection is sometimes tried if the pain remains bad despite the above measures. It may relieve the pain in some people for several weeks but does not always cure the problem. It is not always successful and may be sore to have done. Steroids work by reducing inflammation. Sometimes two or three injections are tried over a period of weeks if the first is not successful. Steroid injections do carry some risks including (rarely) rupture of the plantar fascia.\n\n<b>Splint treatment</b>\n\nSome people benefit from wearing a special splint overnight to keep the Achilles tendon and plantar fascia slightly stretched. The aim is to prevent the plantar fascia from tightening up overnight. In very difficult cases, sometimes a plaster cast or a removable walking brace is put on the lower leg. This provides rest, protection, cushioning and slight stretching of the plantar fascia and Achilles tendon.\n\n<b>Extracorporeal shock-wave therapy</b>\n\nHigh pressure sound waves directed at the plantar fascia may be used to stimulate healing if other treatments have failed. However, there are some uncertainties as to how effective this treatment is, mostly because of a lack of large, well-designed clinical trials to prove this. Also, there is a possibility of side effects from the treatment. These include damage to the bone, pain, damage to the Achilles tendon or a blood-filled swelling called a haematoma. You should discuss the treatment fully with your doctor if it is available.\n\n<b>Other treatments</b>\n\nVarious studies and trials have been carried out looking at other possible treatments for plantar fasciitis. Such treatments include injection with botulinum toxin and treatment of the plantar fascia with radiotherapy. These treatments may not be widely available.\n\n<b>Surgery</b>\n\nThis may be considered in very difficult cases. Surgery is usually only advised if the pain has not eased after 12 months despite other treatments. The operation involves separating the plantar fascia from where it connects to the bone and is called a plantar fascia release. It may also involve removal of a spur on the calcaneum if one is present. Surgery is not always successful. It can cause complications in some people so it should be considered a last resort. Complications may include infection, increased pain, injury to nearby nerves, or rupture of the plantar fascia.\n\n<b>Can plantar fasciitis be prevented?</b>\n\nThere are certain things that you can do to try to prevent plantar fasciitis, especially if you have had it before. These include:\n\n•Regularly changing trainers used for running or walking.\n\n•Wearing shoes with good cushioning in the heels and good arch support.\n\n•Losing weight if you are overweight.\n\n•Regularly stretching the plantar fascia and Achilles tendon (see exercises above), especially before exercise.\n\n•Avoid exercising on hard surfaces.\n\n*Contributed by Martin Haines, Managing Director of Brytespark, Specialist Biomechanics Coach™, Chartered Physiotherapist.\n\n------------------------------------------------------------------------------------------------------------\n\n<i>Would you like to learn how to assess foot function (pronation &amp; supination) so you can  prescribe </i><b><i>Pre Orthotic Conditioning</i></b><i> exercises for your clients?</i>\n\n<i>Do you want to learn how to communicate better with therapists, podiatrists &amp; orthotists?</i>\n\n<i>Would you like to learn how to assess for any descending root causes coming from the rest of body too?</i>\n\n<i>Do YOU have a minimum level 3 qualification?</i>\n\n<i>Then you will LOVE our Biomechanics Coach</i><i>™</i><i> Diploma!! </i>\n\n<i>Book for any course in 2017 </i><b><i>before Dec 20th 2016</i></b><i> and you will also get a fantastic Goodie Bag </i><b><i>(T shirt, Grypit water bottle, Awesome Pre-Workout, Jordan lifting gloves, Biomechanics Education bag)</i></b>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\"><i>SIMPLY REGISTER YOUR INTEREST HERE NOW!</i></a><i> </i>\n\n<i>Leave your contact number and one of us will give you a call !</i>','Ever Heard of Plantar Fasciitis?','','draft','closed','closed','','ever-heard-of-plantar-fasciitis','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1397',0,'post','',0),(1398,0,'2016-11-10 07:21:21','2016-11-10 07:21:21','','','','inherit','closed','closed','','screen-shot-2016-11-10-at-07-10-48','','','2016-11-10 07:21:21','2016-11-10 07:21:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/11/Screen-Shot-2016-11-10-at-07.10.48-1.png',0,'attachment','image/png',0),(1402,3,'2016-11-12 06:38:51','2016-11-12 06:38:51','Having received a huge positive response to our recent Juicemail..\n\n<i>‘Ever Heard of Plantar Fasciitis?’</i>\n\n..it seems many of you have experienced it, or at least know someone who has. So we wanted to continue this theme with a more in depth explanation of how WE as exercise professionals and manual therapists can help AND what WE should consider if our client presents with this condition, even while another professional is treating them.\n\nThe Integrated System\n\nFirstly, there are often many ways of saying the same thing and this, in my opinion, is often what creates much of the controversy in our industry, combined with assumption.\n\nThe integrated system as we describe it, is also known as intrinsic biomechanics, bio-tensegrity, the kinetic chain and so on. Either way what is being suggested, in my understanding, is that each to these descriptions explains how all of the body’s ‘sub-systems’ (muscles, joints/bones, nerves) and they influence each other.\n\nFor example; We are taught at level 3 that the pec minor muscle attaches to the coracoid process and 3-5th ribs and that it contributes to protraction and depression of the scapular. Now IF your pec minor loses its ‘capacity’ for efficient movement due to lifestyle for example, we may find its range becomes limited, therefore ‘fixing’ the scapular forward on the rib cage into a round shouldered posture we commonly see, right?\n\nNow imagine this ‘fixed’ posture may now contribute to limited capacity for thoracic extension since the scapulae have now lost some of their movement capacity for REtraction.\n\nNext imagine if your clients thoracic spine doesn’t have the capacity to extend  due to this loss of scapula retraction, then think about how this may influence their capacity to squat.\n\nIn fact try it now…\n\nStand up, fix your shoulders in a protracted position as if dysfunctional, and then try to squat while maintaining an upright posture or imagine this a bar across your back or even to simply try brush your hair with protected scapular!\n\nCan you now feel how the shoulder/spine limitations are influencing what is possible at your pelvis?\n\nIn fact this forward scapular position may only present in one of the shoulders, thus creating a ‘twist’ at the spine. This in turn can place unnatural forces through the pelvis, which can result in a dysfunctional pelvis, meaning you could ‘functionally’ present with a leg length discrepancy or LLD.\n\nThe body will naturally try and compensate for this and part of this compensation may be internal rotation of the femur which results in a valgus/internally rotated knee in an attempt to try and shorten the leg.\n\nThese forces from above can create excessive or over pronation (or maybe late supination) on that foot which can in turn abnormally load the plantar fascia on that side. So imagine this stress on the plantar fascia combined with a common issue like tight calf muscles\n\nOne of the skills of a Biomechanics Coach™ is the ability to identify which areas of the body do not have their full capacity for function or efficiency. This as you can see from the example above, maybe areas of the body that are asymptomatic. They then apply a tried and tested system of exercise prescription to improve the movement in the areas of the body that have lost their full capacity. They can do this for the pelvis for example while their client is being treated by another professional for the foot like a podiatrist in this example. The communication between these 2 professionals is vital in delivering the best duty of care for the client.\n\nSo stay open minded when you see a Biomechanics Coach™ or if a professional doesn\'t do what you expect. Ask questions until you understand clearly WHY they are doing something like manual therapy or prescribing exercises for a different area of the body, away from the symptoms, that maybe you don\'t fully understand.\n\nAs Karel Lewitt once said..\n\n<i>“He who chases the site of pain is lost”  </i>\n\nWanna Join Us Now?\n\nWanna Learn About The Integrated System?\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">REGISTER YOUR INTEREST HERE!</a>','How Can Your Shoulder Contribute To Your Plantar Fasciitis?','','draft','closed','closed','','how-can-your-shoulder-contribute-to-your-plantar-fasciitis','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1402',0,'post','',0),(1403,0,'2016-11-12 06:38:40','2016-11-12 06:38:40','','','','inherit','closed','closed','','screen-shot-2016-11-12-at-06-37-45','','','2016-11-12 06:38:40','2016-11-12 06:38:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/11/Screen-Shot-2016-11-12-at-06.37.45-1.png',0,'attachment','image/png',0),(1405,3,'2016-11-14 06:53:57','2016-11-14 06:53:57','Ever known someone with dementia?\n\n<span style=\"font-size: large;\">It is painful to watch and brings forth that realisation of mortality - for me it does anyway. </span>\n\n<span style=\"font-size: large;\">Watching someone close to you start to grow physically fragile is bad enough but when you know, they KNOW they are losing their mind too, THATS tough.</span>\n\n<span style=\"font-size: large;\">Once a manager, leader, actor, teacher and active social person, he lost confidence some years ago when he had a hip replacement which meant he could no longer run. This was a real blow since it was why he felt he could still get away with eating bacon butties each morning.\nWhile he tried all sorts of others things instead of running, like walking more, it just didn\'t feel the same. Cycling just didn’t work, he’s always had poor coordination and I found out he actually can\'t swim either, something I had never known growing up! </span>\n\nSo he began to sit for hours at his computer, playing solitaire or trying to navigate the internet but this frustrated him too since he couldn\'t work out how to use it for certain things. Also after getting his retina re-attached (one of his nieces toddlers kicked him in the eye- accidentally!) his vision was poor which contributed to making him feel even older, BUT he tried !!\n\nOh boy did he try!\n\nSadly the fact he couldn\'t work things out for any of these things just made him feel more and more useless.\n\nHe has always used his fantastic sense of humour to generate positivity around difficult subjects and even this began to wane.\n\nShe tried hard to encourage him to walk regularly, eat better, drink less wine - god forbid - <em>drink less wine!!?!?!?</em>\n\nAnyway even she is growing fragile herself having a knee replacement, then hip replacement, radiotherapy for breast cancer (twice!) and then a pace maker!\n\n<span style=\"font-size: large;\">WOW all of this just contributed more and more to that feeling of ageing.</span>\n\nWe began to notice a change in his conversation, clarity, his confidence and then noticed he had begun to write a diary of what he had done each day, like where he had been or where he had put things.\n\nWe attempted to speak to him about it but he got annoyed, frustrated and the conversation was clearly uncomfortable for everyone.\n\nEventually when his doctor invited I\'m in for some regular testing he was put through some dementia screens and a CT scan of his brain showed damaged blood vessel’s which confirmed early onset of Alzheimers.\n\n<span style=\"font-size: large;\">His jovial way of telling family members was clearly a cover for the pain this proud man was feeling about knowing his dignity was going to begin slipping away along with an uphill battle to maintain his intelligence. </span>\n\nHaving, he himself, watched agonisingly his own mother’s cognitive decline, he knows only too well the kind of experience awaiting him and his loved ones.\n\nSo whats the point to this story?\n\n<em>WE ARE ALL GOING TO DIE, RIGHT?</em>\n\n<span style=\"font-size: large;\">Ok the point I am making in this blog is that we should recognise that we are all living longer but this experience also raises the question of whether we really <em>maintaining </em></span><em>quality of life</em><span style=\"font-size: large;\"> in that extra time?</span>\n\nCould we do more to protect these amazing organs we live in, our bodies?\n\nHow better can we serve them?\n\nAre there ways to improve both our physical and cognitive health to reduce the speed of decline?\n\nSurely improving the way we move increases blood flow thus increasing oxygen to the brain and body, right?\n\n<span style=\"font-size: large;\">We should really stimulate our brains and bodies more appropriately, maintain human contact, we should probably try harder to communication in person RATHER THAN texting and turn off the TV to talk to each other or go for a walk.\nDon\'t you think?\nSurely this is a smarter was to contribute towards maintaining a healthy cognitive power for longer, right?</span>\n\nPLEASE PLEASE PLEASE\nMOVE MORE!\nTHINK MORE\nTALK MORE\n\n&amp;\n\nBE FREE FOR LONGER!\n\nFrom my heart\n\nx','WE ARE ALL GOING TO DIE!','','draft','closed','closed','','we-are-all-going-to-die','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1405',0,'post','',0),(1406,0,'2016-11-14 06:53:49','2016-11-14 06:53:49','','','','inherit','closed','closed','','screen-shot-2016-11-14-at-06-53-33','','','2016-11-14 06:53:49','2016-11-14 06:53:49','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/11/Screen-Shot-2016-11-14-at-06.53.33-1.png',0,'attachment','image/png',0),(1409,3,'2016-11-17 07:19:27','2016-11-17 07:19:27','We are heading north to one of my favourite places in the world for our next IBA Discovery Day Workshop on <strong>Dec 3rd</strong> AND only £40 for non members.\n\n*Are you considering becoming a Biomechanics Coach™?\n\nDo you want to meet other Biomechanics Coaches™ or iMoveFreely® Instructors?\n\nDo you want to learn new practical skills or simply refresh?\n\nDo you want an insight into our academy and to meet and ask questions of one of our Master Trainers?\n\nDo you want to find other open minded high quality skilled practitioners in Scotland?\n\n<strong>We will be discussing and practicing FOOT BIOMECHANICS as part of this workshop.</strong>\n\nThis 2 in 1 workshop (for me anyway - holiday + work) means we get to gather amongst a fantastic group of professionals in <strong>Kirkcaldy</strong>, Scotland, at the venue of our host, qualified Biomechanics Coach™ and sports therapist, Graeme Temple.\n\nThis will be a SUPER workshop because it is going to run longer than the usual 4hrs - <strong>10am until 4pm</strong> - to give YOU more value in attending, MORE airtime to ask questions and plenty of time for practical up dates or refreshers.\n\nThis workshop carries 3 REPS points and HUGE value in the networking opportunity of being amongst others with your skills with the chance to ask THEM ..\n\n<em>\"how do you do it?\"</em>\n\n<em>\"whats your experience of...?\"</em>\n\n<em>\"can we cross refer our clients?\"</em>\n\nI am actually considering calling them EMPATHY DAYS lol!!\n\nThe workshop topics to be discussed as usual will be :\n<ul>\n 	<li>BUSINESS - what more can we do to improve our practices?</li>\n 	<li>TECHNICAL - discussions around different skills sets and blending them</li>\n 	<li><span style=\"font-size: large;\">PRACTICAL - A look at how we can assess foot and ankle biomechanics  </span></li>\n</ul>\nWe have several places already taken for this IBA workshop so If you are not a member it is still ONLY £40!!\n<u>(IBA &amp; INNER CIRLE members come for FREE)</u>\n\nYOU really should clear your schedule and join us to prepare for YOUR success with our support in 2017 !\n\nHow easy is it to book?\n\n<a href=\"https://www.biomechanicseducation.com/workshop/iba-workshops-3/\" target=\"_blank\" rel=\"noopener\">JUST CLICK HERE</a>','Discovery Day Workshop in Scotland!','','draft','closed','closed','','discovery-day-workshop-in-scotland','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1409',0,'post','',0),(1410,0,'2016-11-17 07:19:19','2016-11-17 07:19:19','','','','inherit','closed','closed','','screen-shot-2016-11-17-at-07-19-00','','','2016-11-17 07:19:19','2016-11-17 07:19:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/11/Screen-Shot-2016-11-17-at-07.19.00-1.png',0,'attachment','image/png',0),(1412,3,'2016-11-20 08:03:54','2016-11-20 08:03:54','<span style=\"font-size: large;\">Things can happen when you least expect it and this happened to me and someone I met at an event about teaching methods.</span>\n\nWe talked about being in our ‘element’\n\nour roles\n\nour ideals\n\nour purposes\n\nor goals\n\nWe talked non stop, bared souls and shared our common beliefs and ideas about our work and education ethos.\n\n<span style=\"font-size: large;\">We discussed</span><span style=\"font-size: large;\"> personal stories that gave some clarity of our shared feelings and empathy towards our bad learning experiences.</span>\n\n<span style=\"font-size: large;\">We had shared stuff about our long term goals and he had said his goal was \'<em>making the world a better place</em>\' - he had said it with such pride, such confidence and a smile.  But then I asked him to explain how he would measure that?</span>\n\nHe looked at me, slightly shocked and said <em>“…oh, I don\'t know…? I had never thought of it like that...??”</em>\n\nI asked him <em>“But how will you know WHEN you have succeeded?”</em>\n\n<span style=\"font-size: large;\">He was stumped! </span>\n<span style=\"font-size: large;\">He couldn\'t answer! </span>\n<span style=\"font-size: large;\">He immediately scribbled some notes and I explained something I had learned recently as a result of a very traumatic time over 3yrs ago.</span>\n\n<span style=\"font-size: large;\">At that time I had written down what I wanted the next 1 to 5 years to look like because I really needed to feel some hope and direction. The things I wrote down were very precise measurable things, figures, dates, numbers etc. </span>\n\nThe book I wrote in was then put away and over time I forgot about it.\n\nCoincidentally I had recently found that book, I explained, and I re-read those goals I had written down in 2013.\n\nWOWZERS! I HAD ACHIEVED ALL OF THEM, AND MORE!!\n\nBut I would never have felt such happiness and success had I not written them down in tangible goals!\n\nTHIS, I now believe, is vital in both business and personal settings\n\nMichael E Gerber (<em>The</em> <em>E Myth Revisited</em>) talks about your PRIMARY AIM being the end goal which allows you to work backwards in planning how you get there from today.\n\nBrian Tracy (<a href=\"http://www.briantracy.com/\">www.briantracy.com</a>) talks about Goal Setting for Self Development.\n\nSo what is YOUR primary aim?\n\nWhat does it look like?\n\nHow will you get there?\n\nWhen?\n\nWhat do you need to do this year? next year? in 5 years?\n\n<span style=\"font-size: large;\">SHARING these thoughts with your loved ones can very often be a real insight into what you see in your future. It can even bring you closer together in your ‘vision’ as often its not what people discuss when in the thick of our day to day routines.</span>\n\nHowever this can allow you to plan for both business and personal success with measurable goals.\n\nSo ask yourself this questions regularly;\n\nHow will I KNOW when I have been successful?\n\nIs joining our academy one your goals list?\nYes?\nSimply register your interest <a href=\"https://www.biomechanicseducation.com/schedule/\">HERE</a>','How Do YOU Know?','','draft','closed','closed','','how-do-you-know','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1412',0,'post','',0),(1413,0,'2016-11-20 08:03:47','2016-11-20 08:03:47','','','','inherit','closed','closed','','screen-shot-2016-11-20-at-08-02-59','','','2016-11-20 08:03:47','2016-11-20 08:03:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/11/Screen-Shot-2016-11-20-at-08.02.59-1.png',0,'attachment','image/png',0),(1415,3,'2016-11-22 10:48:58','2016-11-22 10:48:58','<b>Have you ever wondered exactly what do we get up to</b><b>?</b>\n\nAt the weekend I met with my colleague, Biomechanics Coach™, Franklin Method practitioner &amp; TMC16 presenter, Tom Waldron. We delivered our final iMoveFreely® Instructor workshop of 2016 at the Barbican Virgin Active club in London curtesy of Jayne Nicholls.\n\nThe 7hrs we spent with 11 VERY passionate professionals made for a fascinating and dynamic workshop. We had Pilates instructors, personal trainers, sports therapists, Biomechanics Coaches™ and group exercise instructors al discussing professionally about their experience and ideas.\n\nThis Juicemail is for those of YOU who want to know what one of our iMoveFreely® Instructor workshops are like. Here I will share our day AND some of the key take home messages we ALL learned.\n\nThe attendees, as you can see, were generally from the fitness industry but also (and often does) included therapists. This is such an exciting learning environment because it allows us to exploring inter-professional relationships that can enable us ALL to offer a better duty of care to our clients &amp; participants.\n\nSo the day began, as they generally do, with everyone introducing themselves so we knew who we would be spending the day with.\n\nThey said their reasons for attending were….\n\n<i>“learn more, something new, to get faster results and so that the client can feel something”</i>\n\n<i>“to help more clients and have more confidence helping with clients with problems”</i>\n\n<i>“for more skills in my tool box”</i>\n\n<i>“I want a programme that offers people a self help programme of exercises” </i>\n\n<i>“I want to learn more about how the body moves”</i>\n\n<i>“I want to help my older clients KEEP moving”</i>\n\n<i>“I feel like something is missing still”</i>\n\n<i>“my anatomy knowledge isn\'t great but with my special population I need more ideas for adaptions”</i>\n\n<i>“I help post rehab and wold like to know more about how I can help the safely”</i>\n\n<i>“More ideas for helping with my falls prevention clients”</i>\n\nWOW tall order eh!? lol\n\nSo the workshop began with some history and background about how the iMoveFreely® exercise programme &amp; system came about. We also discussed the data collected over 20+yrs from 4.5k subjects of all levels and abilities in relation to the screening system we teach on our other workshops. Some of these subjects were gold medalist olympic athletes, some were average gym goers, some elderly and some young.\n\nWe discussed this evidence of how effective these screens and exercises have been in enabling us to understand and improve function and movement in our clients even without any clinical knowledge or previous training in biomechanics.\n\nHowever we did acknowledge that a great SIDE EFFECT of giving our participants iMoveFreely® exercises can be that low grade aches, pains and recurring niggles could improve or even disappear completely.\n\nAfter a break we went through our renowned Group Action of Muscles (GAM) Movement Analysis made easy session (This will be one of the sessions we deliver at the Spinning® Showcase 2017 in Blackpool if you would like to find out more see you there!!).\n\nThis session meant in groups of 3 or 4 the group were set the task of how to analyse a movement and what it means for us a exercise professionals. The group were told they were not allowed to use muscle names at all, which some people found quite challenging.\n\nThis session is always an eye opener for most learners as to how easy movement analysis CAN be should we use some of the most basic principles we learn in our level 2 and level 3 qualifications.\n\nNext we began experimenting with the Quadra-set ‘flows’ of 4 iMoveFreely® exercises to create a better functioning pelvis, spine and shoulders. This can make up the main bulk of a ‘pure’ iMoveFreely® clinic/class for any level of participant from elderly to the super fit. Sections of them can also be used \'blended\' into our present classes.\n\nAfter lunch we discussed ‘core stability’ and what it means to us. We also looked at the evidence surrounding ‘core stability’ and ideas around training the ‘core’ in general.\n\nThis section is very simple and logical but not always what you might expect - simple and safe moves that can be super intense and nicely periodised for the ability of every client in front of you - all based on evidence.\n\nFrom here we all performed some really nice ‘pure’ mobility iMoveFreely® techniques that safely mobilise individual areas of the spine that maybe lacking capacity for movement.\n\nAt the very end of the day we demonstrated a series of just 3 intrinsic biomechanics screens that we teach in other workshops. Then the effectiveness of how, in 80 seconds, one simple iMoveFreely® anti spasm technique for the pec minor muscle of the shoulder can influence, and change, the rest of body right down the foot!!\n\nWould you like to learn more about the iMoveFreely® exercise programme or the evidence based intrinsic biomechanics screening system we deliver across 5 x 2 day workshop?\n\n<a href=\"https://www.biomechanicseducation.com/workshop/imovefreely-instructor/\">REGISTER YOUR INTEREST FOR 2017 HERE</a>\n\nJayne Nicholls, Director of Group X Training Ltd, has been a distributor of our iMoveFreely® Instructor 1 day workshop for the last 4 years. Working with her is a joy and we are proud to continue the collaboration with a professional who demonstrate such high standards of integrity.\n\nThank you Jayne!!','What Happens During An iMoveFreely® Instructor Workshop?','','draft','closed','closed','','what-happens-during-an-imovefreely-instructor-workshop','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1415',0,'post','',0),(1416,0,'2016-11-22 10:48:48','2016-11-22 10:48:48','','','','inherit','closed','closed','','img_6258','','','2016-11-22 10:48:48','2016-11-22 10:48:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/11/IMG_6258-1.jpg',0,'attachment','image/jpeg',0),(1418,3,'2016-11-25 11:14:54','2016-11-25 11:14:54','Something I have learned being in our industry for 25yrs is how small a world it is. One of the main reasons I LOVE what I do, and it doesn’t feel like work, is because of the people I am able to connect with and spend time with on a regular basis as part of my job.\n\nYesterday I was reminded of this over and over again and I am guessing that for those of you reading this Juicemail this will resonate with you too…\n\nAt 8am I drove over to the NEC Birmingham to speak at the <b>Sports Therapy Association’s </b>(STA) annual conference inside the Therapy Expo. STA founder, <b>Gary Benson</b>, had invited me to speak to his members.\n\nNow I met Gary several years ago before he founded the STA and he has become a fantastic person to know. He is trust worthy, delivers on and keeps promises, he cares and shows it in the way he communicates with everyone  and he has a reputation for all of this, it is not just my opinion, just ask anyone who knows him.\n\nNow the very core of the STA and its foundation was to advise manual therapy (and fitness) professionals on quality CPD’s, to offer members a huge amount of support, to keep the promises made and to have fun doing it. They are all REALLY nice genuine people who care about each other and their clients.\n\nSo this event was part of that support and gave STA members that chance to experience what CPD providers, like us, have to offer within our education programmes.\n\nUpon my arrival Gary was there with his phone tweeting, texting and guided me to the private STA conference theatre. He introduced the first speaker and I watched Matt’s dynamic talk as I waited for my colleague and friend, <b>Harry Snell</b> to arrive. Harry was a former student and has become a friend over the course of time as we have had many geeky conversation about human movement and intrinsic biomechanics mainly. However he has also become a great source of help at events, for videos, photos and even advice on websites.\n\nAnyway soon I was up and I saw <b>Stuart Farmer, Christine Buckley </b>and <b>Helen Stone</b>, 2 of my former students and one present one, also in the audience waving and smiling at me! Christine even came up for a hug.\n\nMy talk was titled <i>‘</i><b><i>Screening the Athlete’ - risk reduction &amp; optimising performance</i></b><i> </i>so with just 30 mins (and I always have a lot to say!) I began with a brief explanation about how our education programmes came about. From the 20+yrs of data collection from clients like Daley Thompson, Linford christie, Derek Redmond, Steve Redgrave, David Coulthard, Mica Hakjenan, Lenny Henry, Demi Moore, Will Carling, Robbie Coultrain, Anthony Ogogo and all varying sporting backgrounds and abilities of 4.5k client case studies in total.\n\nCalling for a volunteer from the audience I was able to demonstrate on a gentleman called <b>Andy Fairbrother</b>, what a mini evidence based ‘field’ test type of screen might look like ‘pitch side’ on one of the audience.\n\nAs the audience watched I explained that as simple as it may look these 3 screens, that take in total around 5 mins to perform, correlated very highly during the research to what the very expensive isokinetic machinery told us about what was happening inside the body. My triathlete ‘client’ Andy, had both pelvic and shoulder dysfunction we could see.\n\nSo I then demonstrated on him (in 1 min 20 seconds) an anti spasm on his right pec minor muscle that actually changed his pelvis right side AND both of his shoulders! As I promised I had never met Andy before he proceeded to say he knew one of my other former students, <b>Libby Upton</b>, who had been helping him with his intrinsic biomechanics and training!!\n\nSoon enough my 30 mins was up and with a whole bunch of people were giving me their business cards so I guessed it had been well received. What a wonderful feeling that people listen and care about what you have to say and then make it clear they want to hear more!\n\nAlso meeting really nice people like <b>Ed Clark</b> who came up to tell me he was gutted he had missed my session and could I still please send him the presentation!\n\nHarry and I chatted about the session as we went for a wander into the main expo. We found my log time colleague <b>Mike Grice</b> (who had introduced Harry and I a couple of years ago), after his lecture with 2 of Jessica Ennis’ professional team. Mike is now working with and delivering education programmes with these 2 professionals, <b>Poora Singh</b> and <b>Derry Suta</b>.\n\nHow cool to meet those guys and chat about their work with an olympian like Jessica!\n\nMy phone went next and it was <b>Clair Minshull</b>, whom I had spoken to earlier in the year when she called to explore commercial connections.\nWe sat down for this exploratory chat and Claire said <b>Mel Berry</b> had said to say hello! I have know Mel (a marketing expert) for several years too and she and Claire had met a few weeks earlier.\n\nAs I sat there another former student, <b>James Tomkies</b>, said hello and so as I left Claire, James and I had a good old catch up. The conversation led me to re-connect James with my fabulous Biomechanics Coach business advisor, <b>Chris Wright.</b>\n\nAs I said good bye to James, I went to connect with long time friend in the industry (after she attended some of our workshops many years ago) <b>Sue Wilkie</b> who was with <b>Suzanne Bowen</b> (also a contact of Mike\'s) on their stand promoting their <b>Toropro Products</b>.\n\nSue and I had one of our usual event girlie catch up and giggles - sssshhhhh cant tell you that bit! Then I watched as she offered a few demonstrations of the new Toropro Foam roller, trigger point ball and of course the kinesiotape.\n\nWhat a cool job eh!\n\nAs I stood there watching Sue, my present student, Christine, who had been in my session, came over for a chat. Now when Christine first came to one of our workshops we discovered we had been to the same comprehensive school!\n\nWe shared some of our thoughts on kinesiotape and diet amongst other things before I said goodbye.\n\nOn my way out I went to the STA exhibition stand and spoke to the very charming <b>Tom Sayer</b>, who said he has followed our work for some time now.\n\nFinally I began to make my way back to the car and struck up a conversation with 2 people who ad been at my session earlier. The 3 of us walked and chatted about the industry, good people, clients and the thought provoking day we had all had.\n\nTHIS is a typical event day of work for me ad see how many connections and re-connections across the industry (and even back to my school days!) there were!!?\n\nAlso having conversations or even just a smile or nod with people you have never actually met before (like Ed, Trevor, Joe, Nikki, Janet, Marcus, Patrick, Lotti, Juli, Jamie, Andy, Erica, Leon, Sharon and all the other lovely people I spoke to on the day!) who all clearly feel a connection to each other in their work and enjoy what they do makes my working life so much fun.\n\nTHANK YOU all of you!\n\nUltimately you never ever know who you might meet, what might come from that and what could happen in the future because of that connection. It always reminds me of the responsibility we have as education providers to maintain integrity when we are influencing so many people from afar and many of whom we may never even meet.\n\nMost of all I LOVE every day because THIS is one example of one of my ‘normal’ working day’s.\n\nWhat About You?\nDo you love every day?\nDo you connect with people?\nCould they be more important to you than you realise?\nMaybe one day they COULD even be your next million £ cheque!!\n\nHEY you never know!\n\nBut if you want to join into this world of connections we have already made.....\n\nEmail  me rachel@biomechanicseducation.com with ....\n\nYOUR REASON WHY !','You Just Never Know','','draft','closed','closed','','you-just-never-know','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1418',0,'post','',0),(1419,0,'2016-11-25 11:14:42','2016-11-25 11:14:42','','','','inherit','closed','closed','','screen-shot-2016-11-25-at-11-14-22','','','2016-11-25 11:14:42','2016-11-25 11:14:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/11/Screen-Shot-2016-11-25-at-11.14.22-1.png',0,'attachment','image/png',0),(1422,3,'2016-11-27 06:48:47','2016-11-27 06:48:47','Recently a friend asked me to drive them to A&amp;E as HE thought he had ‘trapped nerve’ in his neck which gave him agony with any movement of his head or upper body..\n\n..OUCH!\n\nPoor guy, anyway the receptionist (bless her) was definitely NOT particularly pleased to see us, from the expression on her face anyway, and the clear lack of joy in her voice spoke volumes as she asked the compulsory questions listed on her screen, without lifting her gaze…\n\n<i>“name..?”</i>\n\n<i>“address..?”</i>\n\n<i>“who is your doctor..?”</i>\n\n<i>“why are you here..?”</i>\n\nThen she suggested we “<i>take a seat” </i>with the tone of someone so incredibly sad, or maybe it was simply boredom? It really made you wonder how she got through each day?\n\nThere we settled to wait amongst all the other sufferers, as even more sloped, crept, limped and shuffled in, got their 2 minutes of joy with the sad receptionist and then meandered to their seat.\n\nThe sign on reception said <b><i>approx 2 hours waiting.</i></b>\n\nSome 47 mins later someone called us in to ask again <i>“what is wrong?” s</i>he made some more notes on HER screen and sent us back to the seating area to wait for the NEXT call. I wondered what the difference in notes might be from those the receptionist made..?\n\n1hr 51 mins after this we were called through to an examination room\n\n“<i>YAY”</i> my friend said …actually it was more of a sarcastic Bells Palsy type drawl “…<i>yaaay</i>…” due the pain he was feeling if he moved his jaw.\n\nAnother 26 mins after entering the examination room a lady in blue scrubs came through. Interestingly she too did not appear <i>that</i> pleased to see us and asked for the 3rd time that day <i>“what is wrong?”</i>\n\nNow my friend is what you might call stocky and muscular in frame and stature and so upon seeing him it was clear she had made up her mind about the cause of his issue as she almost immediately asked, while looking him up and down..\n\n<i>“do you go to the gym..?”</i>\n\n<i>“how often do you go..?”</i>\n\n<i>“did you do it while exercising..?”</i>\n\nThis was before she had physically examined him or asked about any previous history, oh wait no she didn\'t ask him that question at all, also before she asked what his job entailed physically or anything else.\n\nAh no hang on, she didn\'t even ask him any details of that either!\n\nJust if he used the gym and how often…YOU KNOW what I was thinking, right!?\n\nI only just managed NOT to say <i>“ffs!?!?!”</i> out loud.\n\nShe then proceeded to prod and poke his neck and glands with no warning of what she was going to do and without even looking at his reactions (she actually turned her head away from him as she did this) nor even taking her time to be tender. This caused him to yelp out in pain at the sudden discomfort. Trust me this dude is NOT a yelper!!\n\nOnce she had caused him further suffering she suggested to simply..\n\n“… <i>have a massage… try to relax</i> …<i>.and keep moving.. ” </i>\n\n(*In my head i am thinking...<i>\"but you just implied movement was the cause...????? How does the person know which movements are good and which are bad???\")</i>\n\nHe then explained that I was a Biomechanics Coach™ and manual therapist and had suggested he come to A&amp;E due to the severity of the pain, so she then went on to say..\n\n“..<i>well OK then I can give you diazepam and some extra strong pain killers but just try and relax you shoulders and neck..”</i>\n\nLIKE HE COULD JUST RELAX BY CHOICE!!\n\nNow before I continue I just want to say one of the things I LOVE about being British is the fact we actually have an NHS. How much I appreciate that the NHS gets slagged off and is under funded and staff are over worked and under paid and all of that stuff!!\n\nI am ON their side seriously\n\nBUT\n\nThis was really really quite disappointing and annoyed that the impression she was giving was that the fact he exercised was a bad thing and the cause of his suffering!! This guy trains literally, at most, 45 mins 3 x timer per week and yet he works over 50 hours a week.\n\nNow I don’t know what kind of a day any of these professionals had that day and I am quite sure they are faced with crazy schedules and miserable people all day every day, BUT to barely even smile, to make assumptions and to give the impression that exercising was the cause of his agony, made me feel such frustration, maybe I was feeling THEIR frustration that MAYBE they don\'t feel they have anything more to offer!?\n\nJust a small sign of empathy would have worked wonders and I would have expected more questions but it did make me realise the HUGE GAP between US and THEM is still far to wide. We should try and understand each other better.\n\nAs a Biomechanics Coach™, manual therapist I was demonstrating MY duty of care by suggesting he get checked out due the level of pain he was in. While massage well may help, the implication that exercise was bad for him and the cause of his pain was, in my opinion, unfair and unjust.\n\nKNOWING when it is our remit or not is vital but I really wish we were working together more.\n\nThis particular professional, on this particular day, was giving him the impression  that his exercise routine was the cause of his pain and yet also saying he needed to keep moving. Yet this advice was without guidance on the difference of the reasons why.\nThe way she dealt with him, was like she was just \'dealing with another one\' and while she may well have been right in her diagnosis and suggestion, her manner was not. In MY opinion it was inappropriate and misleading.\n\nWhat I had done as a Biomechanics Coach™ was assess him to understand which exercises were good or bad for him because THAT\'S WHAT WE DO, this trip to A&amp;E was my attempt at duty of care to him to rule out anything clinical or sinister with the support of someone medically trained. What she could have just done was just make my job harder ...\n\nLet\'s try to communicate better, more efficiently about what we do and the benefits of exercise shall we!\n\nDo you want to join me and a leading community of professionals in the UK who are on a mission to improve inter professionals relations and communication?\nWe offer massive amounts of support to all of our learners and have joined forces with likeminded associations, like the Sports Therapy Association, who feel the same.\n\nRegister your interest in the Intrinsic<a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\"> Biomechanics Association HERE</a>\n\n&nbsp;','“ffs!?!?!”','','draft','closed','closed','','ffs','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1422',0,'post','',0),(1423,0,'2016-11-27 06:48:40','2016-11-27 06:48:40','','','','inherit','closed','closed','','screen-shot-2016-11-27-at-06-48-29','','','2016-11-27 06:48:40','2016-11-27 06:48:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/11/Screen-Shot-2016-11-27-at-06.48.29-1.png',0,'attachment','image/png',0),(1429,0,'2016-11-29 06:44:17','2016-11-29 06:44:17','','','','inherit','closed','closed','','screen-shot-2016-11-13-at-07-21-13','','','2016-11-29 06:44:17','2016-11-29 06:44:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/11/Screen-Shot-2016-11-13-at-07.21.13-1.png',0,'attachment','image/png',0),(1430,0,'2016-12-01 06:46:22','2016-12-01 06:46:22','','','','inherit','closed','closed','','screen-shot-2016-12-01-at-06-46-06','','','2016-12-01 06:46:22','2016-12-01 06:46:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/12/Screen-Shot-2016-12-01-at-06.46.06-1.png',0,'attachment','image/png',0),(1432,3,'2016-12-05 07:16:50','2016-12-05 07:16:50','<strong>...of The Fitness Industry?</strong>\n\n<b>As Biomechanics Coaches™ we analyse and monitor...</b>\n\n.. and we are becoming the \'go to\' referral point for other professionals trying to find answers to their clients movement problems that are as yet unanswered.\n\nThe GP is a first point of call when you are poorly and they might be able to treat you themselves with medication or some advice  If they cannot find the answer they will refer you to a therapist, for a scan or maybe for further tests, right?\n\nThat is similar to what we do as Biomechanics Coaches™!\nWe are becoming reputed as the first point of call in both the fitness industry, and even the therapy world, to assess intrinsic function and movement. Then we prescribe iMoveFreely® exercises and/or we will refer our clients to the appropriate practitioner for any specific requirement that we feel they may be better suited to address.\n\nTo do this, with the best duty of care for each individual client, we meet several times a year, through the Intrinsic Biomechanics Association (IBA). This is to network, up date our techniques, swap contact details and to meet other Biomechanics Coaches™ with differing primary skills. We also share the common language of our Biomechanics Coach™ screening system and iMoveFreely® exercises and therefore understand each other clearly.\n\nBiomechanics Coaches™ are Personal Trainers, Physio\'s, Pilates Instructors, Podiatrists, Yoga teachers, Manual Therapists, Fitness Instructors, Sports Coaches and very often have skills in 2 or 3 of these disciplines.\n\nWe have an increased level of confidence due to this multi faceted community and the shared concept of being very open minded. We communicate through our forums and workshops, we embrace change where necessary and we also accept being challenged for service improvement.\n\nWe are not precious about keeping clients simply to pay our mortgage because we are more concerned about results and are mostly far too busy anyway.  Our income has, in most cases, doubled (or trebled) now that we are Biomechanics Coaches™ because we are getting the return on our investment from our reputations and also through the referrals network we have grown.\n\nBUT we are still in need of more Biomechanics Coaches™ from ALL disciplines due to the huge demand in the UK for this skill set that is only increasing. We have more and more practitioners and client asking for our guidance and seeking our services across every city, town and boarder in the UK, and internationally!\n\nThe most significant feedback from Biomechanics Coaches™ everywhere is the degree of job satisfaction they feel which increases massively - and this is even when they had job satisfaction before their training!\n\nDo you think you have what it takes?\n\nWould you like to be on our FIND A BIOMECHANICS COACH MAP?\n\nMaybe you simply want to find a Biomechanics Coach™ to refer your clients to?\n\nThis fantastic locator resource will be RE-launched onto the website in the new year to promote ALL the registered Biomechanics Coaches™ (on the IBA register) who are demonstrating professional commitment to their practice.\n\nAll you need is to be an IBA member and a qualified Biomechanics Coach™ and we will promote your business and services too! This band of hybrid professionals demonstrate an extremely high standard of service.\n\nSo <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">BOOK NOW</a> to become a Biomechanics Coach™\n\n<a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\">JOIN NOW</a> to become and IBA Member\n\nP.S. Some of our workshops are already fully booked or almost full so HURRY!','Are Biomechanics Coaches™ Becoming GP\'s...?','','draft','closed','closed','','are-biomechanics-coaches-becoming-gps','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1432',0,'post','',0),(1433,0,'2016-12-05 07:16:35','2016-12-05 07:16:35','','','','inherit','closed','closed','','screen-shot-2016-11-10-at-08-16-36','','','2016-12-05 07:16:35','2016-12-05 07:16:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/12/Screen-Shot-2016-11-10-at-08.16.36-1.png',0,'attachment','image/png',0),(1442,3,'2016-11-29 06:44:31','2016-11-29 06:44:31','Following on from Martin\'s recent plantar fasciitis article and my follow up about what can be contributing in the descending pattern of the integrated system, here Martin talks about another common problem that can occur.....\n\nCalf muscle injuries are common in running and can be quite debilitating as well being frustrating, as they often take a long time to heal and can become recurrent.\n\nThey are caused by both <i>extrinsic and intrinsic </i>factors.  The typical extrinsic factors will be subjecting the calf to an unexpected load or one that your calf has not been conditioned to tolerate.\nFor example doing plyometrics, hill running, speed work or even running longer distances can be sufficient to damage your calf if it’s not prepared sufficiently.\n\nTrauma is more likely when the calf is being stretched while it’s simultaneously contracting strongly.  Intrinsic factors consist of inflexible calves (both gastrocnemius; the longer calf muscle that passes over the knee, and soleus; the shorter muscle that stops just below the knee) and over pronating feet or overly supinated feet are also common causes as they alter the efficient mechanical function of the foot and so can increase the pressure on the calves.\n\nAnother very common cause is a tight sciatic nerve. The sciatic nerve runs down the back of the leg, through the hamstring and calf groups as it passes into the foot.  It can become tight due to <i>clinical or biomechanical </i>issues with your back, pelvis or even your hamstrings.\n\nIn these cases your hamstring or calf can go into a ‘protective spasm’ to minimise the stretch on the delicate nerve and render these muscles more likely to injury.\n\nThe spasm can be immediate and cause pain in the muscle itself or it can alter the ability of the muscle to contract and relax effectively and can therefore cause the muscle to tear when loaded too heavily.\n\nThere are 3 levels (or degrees) of calf strain/tear:\n\n<b> • Grade 1</b>: The muscle is damaged causing some micro tears.  It usually takes 2 weeks to recover from a grade 1 strain.\n\n<b> • Grade 2</b>: There is partial tearing of the muscle. Recovery usually takes 6-8 weeks.\n\n<b> • Grade 3</b>: This is the most severe calf strain as it is a complete tear or rupture of the muscle.  Complete recovery can take 3-4 months and occasionally surgery may be needed.\n\nDepending upon the severity of the injury, you will typically feel a sharp stabbing pain in the calf at the point of the tear or strain, and standing up on tip toes or pushing off will usually be painful.  Swelling and bruising sometimes follow with the more extensive tears and it is usually tender to touch.\n\nThe usual self management methods for muscle injuries apply for calves too.  Make sure it is rested, ice the area as often as possible, compress the muscle (especially if it is swollen, by using a compression support) and elevate the leg to help reduce the swelling too.\n\nOnce the swelling has reduced and the acuteness has started to subside, stretching and massage will help to restore the pliability of the muscle.  Gradually you can then start to teach the muscles to work again slowly using cliniband exercises and then light weight training exercises in the gym, and then progress to higher speed exercises like plyometrics.\n\nIt is important to identify the causes too. Check the list of extrinsic and intrinsic causes discussed earlier.  If you suspect an extrinsic cause make sure you address it as you start to train again.  If you feel there were intrinsic causes, check them out with a suitable practitioner who understands intrinsic biomechanics to make sure it is being dealt with while you are rehabilitating.\n\nClearly adequate warm ups are essential to prevent any injury, so make sure that you spend plenty of time working on your calves as you plan your warm up routine.\n\nLearn how to assess for causes of calf injuries<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\"> HERE</a>','Ever Injured Your Calf Muscle?','','draft','closed','closed','','ever-injured-your-calf-muscle','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1425',0,'post','',0),(1443,3,'2016-12-01 06:46:30','2016-12-01 06:46:30','So we are really excited to announce our Biomechanics Coach™ of the Month is Tom Waldron!\n\nThis nomination is for the huge committed Tom demonstrates to his personal development and education, his pro-active promotion of these skills and for being for being one the nicest guys I know both to work with and just be around.\n\nBoth his passion and kind nature are obvious to all who meet him and we feel honoured that he has chosen to represent our programmes!\n\nAs always our nominee kindly shares his story with you so you can see what it means to Tom to be a Biomechanics Coach™...\n\n<b>Your biography in short</b>\n\nProudly born and bred In Portsmouth, currently living along the coast next to the beautiful sandy beaches of North Devon. 25 years young, 2017 will be my fourth year in the health and fitness industry. I’m a Biomechanics Coach™ (training to become a Master Trainer), Pilates Instructor and Franklin Method level 1 Educator (currently doing my level 2 studies in Portland Oregon, America). Starting more studies next year to become a Sports Therapist.\n\n<b>What made you choose Biomechanics Coaching</b>™<b>? </b>\n\nI first came across Biomechanics Coaching™ when I was 18/19 years old. Rachel was delivering a one day workshop in London and I was studying Sports Science &amp; Excellence in college at the time. Although I felt I had zero knowledge of anatomy or biomechanics, Rachel and her team left a lasting impression with their passion, work ethic and integrity.\nAs I continued with my studies I followed them and when I finally had the confidence to do the Biomechanics Coach™ Diploma. So I contacted Rachel some 4 years later.\nI chose Biomechanics Coaching™ because I want to give people the tools to facilitate their own change and that’s something Rachel, Martin and the whole Biomechanics Education team value - empowering others to create their own positive change.\n\n<b>Where would you like to see yourself ten years from now?</b>\n\nTen years from today I see myself having my own clinic. Practising Biomechanics Coaching™, Franklin Method and Sports Therapy. I’d love to teach the Biomechanics Coach™ Diploma, be active in public speaking and teaching the Franklin Method teacher trainer course internationally. I also want to study more on neuroplasticity.\n\n<b>What would be your advice to somebody thinking of becoming a Biomechanics Coach</b><b>™</b><b>? </b>\n\nI only qualified as a Biomechanics Coach™ this year in March and my life/career/business has totally changed for the better!!!!!\n\nThe friends, knowledge and opportunities that have already come about from becoming a Biomechanics Coach™ is actually unreal and I’m still taking it in if I’m being honest. It’s an phenomenally loving, fun and humble community, that genuinely have people’s best interest at heart. It’s such a privilege to be apart of this movement of passionate and caring individuals. It’s like being at the cool kid’s table at school haha. So if you’re on the fence about contacting Rachel, get of the fence and contact her today!!!\n\n<b>On the journey to where you are now what has been your achievements?</b>\n\nThis might sound funny but my biggest achievement in my mind is finishing school with good grades. I was predicted very low grades through out my time at school and I was even held back a year because of my poor exam results. Finishing school with A’s and B’s and Head Of School was quite the transformation, believe me!!\n\nQualifying as a Franklin Method Educator in Paris, 2015.\n\nQualifying as a Biomechanics Coach™ 2016\n\nCo-running a successful Pilates business with my amazing sister Rachel Hall and beautiful Mum, Ruth Waldron.\n\nPresenting at Loughborough University this year at The Movement Convention.\n\n<b>Tell us a secret or something interesting about you that not many people know about..</b>\n\nWhen I was really young I had some hearing problems which meant I had a slight speech impairment, lots of stuttering, fast paced talking and un able to pronounce big words. I still have allot of that now to be honest so probably not a secret haha.\n\nStill just thinking about becoming a qualified Biomechanics Coach™?\n\nLet us know you are interested by <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">REGISTERING HERE</a> and we will send you an application form with no obligation!','Wanna Join The Cool Kids Table?','','draft','closed','closed','','wanna-join-the-cool-kids-table','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1428',0,'post','',0),(1448,0,'2016-03-14 17:04:01','2016-03-14 17:04:01','','40','','inherit','open','closed','','40','','','2016-03-14 17:04:01','2016-03-14 17:04:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-20-1.jpg',0,'attachment','image/jpeg',0),(1449,0,'2016-03-18 11:46:07','2016-03-18 11:46:07','','dance-map-img','','inherit','open','closed','','dance-map-img','','','2016-03-18 11:46:07','2016-03-18 11:46:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-2-1.png',0,'attachment','image/png',0),(1450,0,'2016-03-18 16:10:32','2016-03-18 16:10:32','','105','','inherit','open','closed','','105','','','2016-03-18 16:10:32','2016-03-18 16:10:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-28-1.jpg',0,'attachment','image/jpeg',0),(1451,0,'2016-03-18 16:10:34','2016-03-18 16:10:34','','106','','inherit','open','closed','','106','','','2016-03-18 16:10:34','2016-03-18 16:10:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-29-1.jpg',0,'attachment','image/jpeg',0),(1452,0,'2016-03-18 16:10:37','2016-03-18 16:10:37','','108','','inherit','open','closed','','108','','','2016-03-18 16:10:37','2016-03-18 16:10:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-31-1.jpg',0,'attachment','image/jpeg',0),(1453,0,'2016-03-19 20:20:04','2016-03-19 20:20:04','','701','','inherit','open','closed','','701','','','2016-03-19 20:20:04','2016-03-19 20:20:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-38-1.jpg',0,'attachment','image/jpeg',0),(1454,0,'2016-03-19 20:20:06','2016-03-19 20:20:06','','702','','inherit','open','closed','','702','','','2016-03-19 20:20:06','2016-03-19 20:20:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-39-1.jpg',0,'attachment','image/jpeg',0),(1463,0,'2016-12-06 06:29:14','2016-12-06 06:29:14','','','','inherit','closed','closed','','605-png','','','2016-12-06 06:29:14','2016-12-06 06:29:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/12/605.png',0,'attachment','image/png',0),(1468,0,'2016-12-06 06:29:37','2016-12-06 06:29:37','','','','inherit','closed','closed','','bg-rev-d-jpg','','','2016-12-06 06:29:37','2016-12-06 06:29:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/12/bg-rev-d.jpg',0,'attachment','image/jpeg',0),(1474,0,'2017-01-07 16:53:10','2017-01-07 16:53:10','The Logo for UK bassed personal trainer training  comapany Biomechanics Education - Improving Movement Through Education','','Improving Movement Through Education','inherit','closed','closed','','biomechanics-education-logo','','','2017-01-07 16:53:10','2017-01-07 16:53:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Biomechanics-Education-Logo-1.jpg',0,'attachment','image/jpeg',0),(1475,0,'2017-01-07 16:57:13','2017-01-07 16:57:13','The Logo for UK bassed personal trainer training  comapany Biomechanics Education - Improving Movement Through Education','','Improving Movement Through Education','inherit','closed','closed','','biomechanics-education-logo-for-mobile','','','2017-01-07 16:57:13','2017-01-07 16:57:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Biomechanics-Education-Logo-For-Mobile-1.jpg',0,'attachment','image/jpeg',0),(1476,0,'2017-01-07 17:20:22','2017-01-07 17:20:22','','','','inherit','closed','closed','','biomechanics-education-homepage-hero','','','2017-01-07 17:20:22','2017-01-07 17:20:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Biomechanics-Education-Homepage-Hero-1.jpg',0,'attachment','image/jpeg',0),(1478,0,'2017-01-07 17:29:55','2017-01-07 17:29:55','','','','inherit','closed','closed','','biomechanics-education-homepage-hero-2','','','2017-01-07 17:29:55','2017-01-07 17:29:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Biomechanics-Education-Homepage-Hero-2-1.jpg',0,'attachment','image/jpeg',0),(1479,0,'2017-01-17 15:45:43','2017-01-17 15:45:43','    	','','','inherit','closed','closed','','screen-shot-2017-01-13-at-10-57-16','','','2017-01-17 15:45:43','2017-01-17 15:45:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.57.16-1.png',0,'attachment','image/png',0),(1489,0,'2017-01-07 18:32:42','2017-01-07 18:32:42','','','','inherit','closed','closed','','biomechanics-education-exercise-with-ropes','','','2017-01-07 18:32:42','2017-01-07 18:32:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Biomechanics-Education-Exercise-With-Ropes-2.jpg',0,'attachment','image/jpeg',0),(1500,0,'2017-01-07 22:40:46','2017-01-07 22:40:46','The Logo for UK bassed personal trainer training  comapany Biomechanics Education - Improving Movement Through Education','','Improving Movement Through Education','inherit','closed','closed','','biomechanics-education-logo100','','','2017-01-07 22:40:46','2017-01-07 22:40:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Biomechanics-Education-Logo100-1.jpg',0,'attachment','image/jpeg',0),(1501,0,'2017-01-07 22:45:05','2017-01-07 22:45:05','','','','inherit','closed','closed','','biomechanics-education-homepage-hero-3','','','2017-01-07 22:45:05','2017-01-07 22:45:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Biomechanics-Education-Homepage-Hero-3-1.jpg',0,'attachment','image/jpeg',0),(1504,0,'2017-01-07 23:05:58','2017-01-07 23:05:58','','','','inherit','closed','closed','','biomechanics-education-banner-homepage','','','2017-01-07 23:05:58','2017-01-07 23:05:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Biomechanics-Education-Banner-Homepage-1.jpg',0,'attachment','image/jpeg',0),(1508,0,'2017-01-07 23:34:46','2017-01-07 23:34:46','','','','inherit','closed','closed','','biomechanics-education-homepage-hero-4','','','2017-01-07 23:34:46','2017-01-07 23:34:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Biomechanics-Education-Homepage-Hero-4-1.jpg',0,'attachment','image/jpeg',0),(1510,0,'2017-01-08 00:09:06','2017-01-08 00:09:06','','','','inherit','closed','closed','','biomechanics-education-exercise-with-ropes-2','','','2017-01-08 00:09:06','2017-01-08 00:09:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Biomechanics-Education-Exercise-With-Ropes-1-1.jpg',0,'attachment','image/jpeg',0),(1514,0,'2017-01-08 17:05:58','2017-01-08 17:05:58','','','','inherit','closed','closed','','banner-background-gradient','','','2017-01-08 17:05:58','2017-01-08 17:05:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/banner-background-gradient-1.jpg',0,'attachment','image/jpeg',0),(1519,3,'2017-01-31 06:48:27','2017-01-31 06:48:27','<span style=\"font-weight: 400;\">I have to be honest, the ‘weak’ core assumption is really quite frustrating for me as a fitness professional and yes I KNOW I have written about this before but hey, it’s been the hot topic like </span><i><span style=\"font-weight: 400;\">forever!</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This obsession with doing ‘core stability’ work well is it really necessary? </span>\n\n<span style=\"font-weight: 400;\">OR </span>\n\n<span style=\"font-weight: 400;\">IF it is then WHEN is it necessary? And HOW would you know?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Research papers around ‘core stability’ work identified as the best method of </span><span style=\"font-weight: 400;\">trunk conditioning</span><span style=\"font-weight: 400;\"> are often conflicting and pretty sketchy to be honest? (Akuthota, Ferreiro, Moore, Fredericson, Krabak, Kennedy). </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s explore some definitions;</span>\n\n&nbsp;\n<h2>What is core stability work?</h2>\n<span style=\"font-weight: 400;\">Exercises ONLY done to specifically to improve the cores stability ie planks, bridges, dead bugs maybe?</span>\n\n&nbsp;\n<h2>What is trunk conditioning?</h2>\n<span style=\"font-weight: 400;\">This could be deemed as generic exercises that utilise core stability while you perform a more global muscle exercise for your sport or chosen activity ie squat, clean, running, swimming etc. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT when you ask clients why they WANT to do core stability training, they often say things like:</span>\n\n&nbsp;\n\n<em><span style=\"font-weight: 400;\">“I want a 6 pack”</span></em>\n\n<em><span style=\"font-weight: 400;\">“I have poor posture”</span></em>\n\n<em><span style=\"font-weight: 400;\">“I have back pain (knee pain, shoulder pain ….fill in with any area of the body) and assume, or have been told, it\'s due to a lack of core strength “</span></em>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You get the feeling that if you\'re not doing ‘core stability’ work then it seems you\'re just plain weird!! </span>\n\n&nbsp;\n\n<b>Everyone</b><span style=\"font-weight: 400;\"> wants it, right?!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The question is does </span><b>everyone need it</b><span style=\"font-weight: 400;\">?</span>\n\n&nbsp;\n<h2>Got an injury? Do core stability work...or should you?</h2>\n<span style=\"font-weight: 400;\">Core stability training is being used as the answer to pretty much everything. My class participants and clients are coming to me with their recurring injuries having seen professionals who have advised them. It seems more often than not they insist on core stability training in addition to whatever else they prescribe due to the </span><i><span style=\"font-weight: 400;\">assumption</span></i><span style=\"font-weight: 400;\"> the individual’s core is </span><i><span style=\"font-weight: 400;\">weak</span></i><span style=\"font-weight: 400;\">.</span>\n\n&nbsp;\n<h2>Some Examples;</h2>\n<span style=\"font-weight: 400;\">If you have </span><b>low back pain…</b><span style=\"font-weight: 400;\"> “</span><i><span style=\"font-weight: 400;\">ah you must have a weak core, you should do core stability work</span></i><span style=\"font-weight: 400;\">.”  </span><span style=\"font-weight: 400;\">Very often with no assessment made of the trunks capacity or strength other than verbal questioning. </span><span style=\"font-weight: 400;\">Also very often with little advice on exactly what kind of core stability training.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you have </span><b>sore knees…</b><i><span style=\"font-weight: 400;\"> “well your core is likely to be weak so do some core stability work.” </span></i><span style=\"font-weight: 400;\">Feet and knees maybe assessed for this client but again often with no assessment made of the trunks capacity or strength. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If your </span><b>shoulders niggle…</b><span style=\"font-weight: 400;\"> “</span><i><span style=\"font-weight: 400;\">mmmmm ok shoulders need strengthening but also your core doesn’t work properly, planks it is!”</span></i><span style=\"font-weight: 400;\">. Shoulders maybe assessed but again often with no assessment made of the trunks capacity or strength.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This just shows there are far too many</span><i><span style=\"font-weight: 400;\"> assumptions </span></i><span style=\"font-weight: 400;\">that symptoms being caused by a ‘weak’ core , with not enough objectivity to the assessment, in my opinion. </span>\n\n&nbsp;\n<h2>So why does pretty much everyone go on about core stability training?</h2>\n<span style=\"font-weight: 400;\">I believe many professionals make the </span><i><span style=\"font-weight: 400;\">assumption</span></i><span style=\"font-weight: 400;\"> that everyone has a weak core these days so it’s pretty standard to prescribe core stability training work. Maybe they have been unable to find a root cause to the client’s complaint and so this “one answer fits all” type of response, is one that clients don\'t mind hearing.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me make it clear at this point that due to our lifestyles many people DO in fact require some kind of core/trunk conditioning. The problem is not enough questions seem to be asked, like; </span>\n\n&nbsp;\n\n<strong>WHEN? WHY? HOW?</strong>\n\n&nbsp;\n<h2>How can you conclude “core stability” training is actually the answer to the symptoms/problems?</h2>\n<span style=\"font-weight: 400;\">So consider exactly, how do any of these symptoms or problems tell you the core is ‘weak’ thus requiring strength work? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Evidence does tell us back pain is more often than not linked to an ‘inhibited’ core, and logic tells us </span><span style=\"font-weight: 400;\">inhibition doesn\'t automatically require strength work</span><span style=\"font-weight: 400;\">.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We also know a common issue intrinsically occurring due to our lifestyles, is the presentation of a </span><i><span style=\"font-weight: 400;\">functionally </span></i><span style=\"font-weight: 400;\">longer leg, caused by a twisted pelvis. This is due to compensations made by any of the joints, muscles or nerves being influenced by sitting, driving etc. There is also a higher incidence of low back pain reported in those with a leg length discrepancy.</span> <span style=\"font-weight: 400;\">(Friberg, Matheson et al, Giles and Taylor)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Logic would suggest this discrepancy requires being ‘uninhibited’ at the root cause first right? E.g. de-rotate the pelvis.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400; color: #ff0000;\">Do you want to learn how to release your client’s back pain with 1 simple exercise? Click here to download your free tutorial video...</span></a></p>\n<a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><img class=\"size-medium wp-image-1480 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.56.55-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></a>\n<h2>Is there ever a time when we might use core stability training?</h2>\n<span style=\"font-weight: 400;\">Well yes of course; when the core has an area that requires an increase in strength, particularly the ratios of strength around the trunk, then we need to strengthen it. Specifically when the core strength ratios have been lost due to lifestyle, injury etc, THEN we need to strengthen it. McGill has done a number of studies on a variety of subjects to understand the norms when it comes to isometric core ratio testing. (McGill 2006)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But, how many professionals actually consider the fact that all core stability training hits one area of the core more than another?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example, the Plank is a spinal </span><b>flexor</b><span style=\"font-weight: 400;\"> dominant exercise.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A 4-point kneeling leg/arm extensions are a spinal </span><b>extensor</b><span style=\"font-weight: 400;\"> dominant exercise.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Oh and let’s not forget the lateral </span><b>flexors</b><span style=\"font-weight: 400;\"> which often lose their appropriate strength ratio due to bag and baby carrying type lifestyles. Side planking on the less dominant side only, temporarily, for example would go towards improving this ratio of strength.</span>\n\n&nbsp;\n<h2>Assess the core ratios first</h2>\n<span style=\"font-weight: 400;\">If you can assess the core strength ratios first, </span><span style=\"font-weight: 400;\">then</span><span style=\"font-weight: 400;\"> prescribe an appropriate balance of core stability exercises in relation to those results, to regain the recommended norms of core strength ratios then this is when we might logically use core stability training type exercises.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you know for men the ratio of strength between spinal flexors and spinal extensors should be 84% flexor to 100% extensor and for women 72%? (McGill 2006)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is no evidence (I have found) to suggest muscle definition automatically equals strength, nor equals appropriate core strength ratios.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also who decided what poor posture looks like? WE ARE ALL DIFFERENT!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">No symptoms? Leave it alone and focus on smart programming and changing the lifestyle, maybe? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">IF they are symptomatic be aware that simply changing the posture (ie the way they stand or look aesthetically) may not reduce or address symptoms. Since it is a very subjective ‘assessment’ as so many things can be contributing to the way you stand/look.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move freely,</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel</span>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400; color: #ff0000;\">Do you want to learn how to test if your client has dysfunction in their pelvis? Click here to understand what that could mean for your client and how to release it...</span></a></p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><img class=\"size-medium wp-image-1480 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.56.55-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></a></p>','Do you REALLY have a \'weak\' core?','','draft','closed','closed','','do-you-really-have-a-weak-core','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1519',0,'post','',0),(1533,0,'2017-01-31 10:35:11','2017-01-31 10:35:11','    	','','','inherit','closed','closed','','do-you-really-have-a-weak-core-2','','','2017-01-31 10:35:11','2017-01-31 10:35:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Do-you-really-have-a-weak-core-1-2.png',0,'attachment','image/png',0),(1534,3,'2017-02-07 09:32:51','2017-02-07 09:32:51','Some time ago I headed down to London to see Trevor Prior and his wonderful team at <span style=\"color: #ff0000;\"><strong><a style=\"color: #ff0000;\" href=\"http://www.premierpodiatry.com/\" target=\"_blank\" rel=\"noopener\">Premier Podiatry</a></strong></span> to be assessed to see if my custom orthotics needed an upgrade. I took my trainers, my inov8 weightlifting shoes (Yes THOSE pink ones on instagram!) and also my favourite casual boots.\n\n&nbsp;\n\n[caption id=\"attachment_1535\" align=\"aligncenter\" width=\"840\"]<a href=\"https://www.instagram.com/biomechanics_education/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1535 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/Screen-Shot-2017-02-06-at-16.39.52-1024x661.png\" width=\"840\" height=\"542\" /></a> <span style=\"color: #333333;\">Just in case you missed them ;-)</span>[/caption]\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I had been wearing custom orthotics because my feet were uncomfortable at times h</span><span style=\"font-weight: 400;\">owever, there was a lot of conflicting research out there on custom fit insoles/orthotics, which could make our decision on whether we need them somewhat confusing.</span>\n\n<span style=\"font-weight: 400;\">Then one of my learners sent me the one shown below...</span>\n\n&nbsp;\n<h3><b>Let’s Take A Look At This Article About Insoles</b></h3>\n[caption id=\"attachment_1536\" align=\"aligncenter\" width=\"480\"]<img class=\"wp-image-1536 size-full\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/implication-of-articles-blog-.png\" width=\"480\" height=\"640\" /> <span style=\"color: #333333;\">“Runners’ insoles are ‘useless’ at stopping injury”</span>[/caption]\n\n&nbsp;\n\n&nbsp;\n\n<b>Article - </b><b><i>“Runners’ insoles are ‘useless’ at stopping injury”</i></b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The article stated… “</span><i><span style=\"font-weight: 400;\">Shock- absorbing insoles used by runners to reduce impact injuries do not work, according to a study of clinical trials</span></i><span style=\"font-weight: 400;\">”.</span>\n<span style=\"font-weight: 400;\">It mentions…”</span><i><span style=\"font-weight: 400;\">Among long distance runners and physically active defence force personnel, injuries ranged from 19-79%</span></i><span style=\"font-weight: 400;\">”.</span>\n\n&nbsp;\n\n<b>The list of injuries being:</b>\n\n<span style=\"font-weight: 400;\">→ Stress fractures of the shin</span>\n\n<span style=\"font-weight: 400;\">→ Torn Achilles’ tendons </span>\n\n<span style=\"font-weight: 400;\">→ Knee pain</span>\n\n<span style=\"font-weight: 400;\">→ Plantar fasciitis</span>\n\n<span style=\"font-weight: 400;\">→ Inflammation of conceive tissue of the foot</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The study the article was talking about, was published in the </span><i><span style=\"font-weight: 400;\">Journal of Sports Medicine </span></i><span style=\"font-weight: 400;\">and looked at 11 clinical trials relating to orthotics that are designed to re-distribute pressure and change gait.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The study suggested that the orthotics did not reduce injury risk and one study even showed them to increase risk.</span>\n<span style=\"font-weight: 400;\">Please Note; All of the above is taken from this article.</span>\n\n&nbsp;\n<h3><b>My Thoughts </b></h3>\n<span style=\"font-weight: 400;\">It appears that there is an </span><i><span style=\"font-weight: 400;\">assumption</span></i><span style=\"font-weight: 400;\"> these </span><span style=\"font-weight: 400;\">injuries</span><span style=\"font-weight: 400;\"> are coming from the the foot in the first place since no evidence is offered about why, or at least none in the article.</span>\n\n<span style=\"font-weight: 400;\">The writer of the article has a job to do, which is to help sell the paper, while I imagine they are given a limited word count for their piece.</span>\n\n<span style=\"font-weight: 400;\">The article might actually make individuals who could benefit from orthotics feel wary. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There will always be the ‘marketing’ angle of wanting to encourage people to open the email or read the article, by using a juicy title to grab attention. However, content should be unbiased to present an ethical view. if offering a personal opinion, this should be made clear and could also be valid for some justifiable reason when context is given.</span>\n\n&nbsp;\n\nSo as always when reading article (yes even this one) we should keen an open mind and read critically\n<h3><span style=\"font-weight: 400;\">If you are wondering if you need orthotics, </span><span style=\"font-weight: 400;\">as a Biomechanics Coach, </span><span style=\"font-weight: 400;\">I have 2 key tips:</span></h3>\n&nbsp;\n<h2><strong>1) Always seek the advice of specialist first and find out what is right FOR YOU.</strong></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">I would strongly recommend a visit to see someone like Trevor Prior and his team at <span style=\"color: #ff0000;\"><strong><a style=\"color: #ff0000;\" href=\"http://www.premierpodiatry.com/\" target=\"_blank\" rel=\"noopener\">Premier Podiatry</a></strong></span> for several reasons;</span>\n\n<img class=\"alignright wp-image-1547\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/IMG_7422-1024x1024.jpg\" width=\"500\" height=\"500\" />\n\n<img class=\"alignleft wp-image-1546\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/IMG_7423-1024x1024.jpg\" width=\"500\" height=\"500\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n→ They have the most up to date and fantastic equipment to be extremely thorough. With not only a gait analysis but also a full series of MSK, ROM &amp; strength tests.\n\n<span style=\"font-weight: 400;\">→ The team are extremely knowledgeable and accommodating.</span>\n\n<span style=\"font-weight: 400;\">→ The explanation of the <strong><span style=\"color: #ff0000;\"><a style=\"color: #ff0000;\" href=\"https://www.biomechanicseducation.com/so-what/\" target=\"_blank\" rel=\"noopener\">‘so what’</a></span></strong> element of what they found in my assessment was relevant and very clear.</span>\n\n<span style=\"font-weight: 400;\">→ They did NOT simply sell me more orthotics!! In fact they encouraged me to first go away and work on some strength issues around my pelvis! My present orthoses were actually doing ok since I am not in pain and injury free. </span>\n\n&nbsp;\n<h2><strong>2) Do some of your own research and don’t simply take 1 article /writers view point.</strong></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember you are always welcome to email be about any health or fitness related question on: </span><a href=\"mailto:rachel@biomechanicseducation.com\"><span style=\"font-weight: 400;\">rachel@biomechanicseducation.com</span></a><span style=\"font-weight: 400;\"> I’d love to hear from you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n<span style=\"font-weight: 400;\">Rachel</span>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><em><span style=\"color: #ff0000;\">Struggling with lower back pain? Are your clients movement patterns a bit funky? Download your Pelvic Screen &amp; Release to start releasing back pain and moving more freely --&gt;</span></em></a></p>\n<a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-1480\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.56.55-300x169.png\" width=\"500\" height=\"282\" /></a>','Can Your Custom Fit Insoles Really Be Damaging To Your Performance?','','draft','closed','closed','','custom-fit-insoles-damaging-workout-performance','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1534',0,'post','',0),(1535,0,'2017-02-06 16:41:03','2017-02-06 16:41:03','    	','','','inherit','closed','closed','','screen-shot-2017-02-06-at-16-39-52','','','2017-02-06 16:41:03','2017-02-06 16:41:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/Screen-Shot-2017-02-06-at-16.39.52-1.png',0,'attachment','image/png',0),(1536,0,'2017-02-06 16:42:42','2017-02-06 16:42:42','    	','','','inherit','closed','closed','','implication-of-articles-blog','','','2017-02-06 16:42:42','2017-02-06 16:42:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/implication-of-articles-blog-1-1.png',0,'attachment','image/png',0),(1540,0,'2017-02-06 16:58:43','2017-02-06 16:58:43','custom fit insoles    	','','','inherit','closed','closed','','insoles','','','2017-02-06 16:58:43','2017-02-06 16:58:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/insoles-3.png',0,'attachment','image/png',0),(1546,0,'2017-02-07 09:28:29','2017-02-07 09:28:29','    	','','','inherit','closed','closed','','img_7423','','','2017-02-07 09:28:29','2017-02-07 09:28:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/IMG_7423-1.jpg',0,'attachment','image/jpeg',0),(1556,0,'2017-02-07 09:39:41','2017-02-07 09:39:41','    	','','','inherit','closed','closed','','insoles-2','','','2017-02-07 09:39:41','2017-02-07 09:39:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/insoles-1-1.png',0,'attachment','image/png',0),(1566,0,'2017-02-13 17:55:40','2017-02-13 17:55:40','    	','','','inherit','closed','closed','','screen-shot-2017-02-13-at-17-54-51','','','2017-02-13 17:55:40','2017-02-13 17:55:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/Screen-Shot-2017-02-13-at-17.54.51-1.png',0,'attachment','image/png',0),(1592,3,'2017-02-20 09:43:00','2017-02-20 09:43:00','<span style=\"font-weight: 400;\">We are trained at level 2 to understand the hamstring muscle attaches from the knee, to the sitting bone. Then we go onto learn at level 3, that there are in fact 3 hamstrings that attach to the tibia, fibula (knee) and ischial tuberosity (sitting bone) - semitendinosis, semimembranosis and bicep femoris. Is it all coming back to you now? ;-)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">From there we go onto learn that they act like a horse’s reigns on the knees stability. Actually the 3 hamstrings are part of a system that continues upwards from the ischial tuberosity into the sacrotuberous ligament at the back of the pelvis. From here, the tissue blends into the thoracolumbar fascia and crosses over into the opposite latissimus dorsi. This then, inserts into the humerus. Therefore indicating that, via this integrated system, the left hamstring eventually inserts into the right shoulder!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now for some of you this is old news, I recognise that, however for some readers this will be a surprising thought... And it is crazy right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The important bit now, is what you do with that information. I like to call this the “So What?” scenario you come across, whenever you receive new information. There’s no denying it, it can take time to process new information, sometimes known as the Kubler-Ross curve stages of emotion. But when we do receive this new knowledge bomb, we should always ask ourselves, </span><i><span style=\"font-weight: 400;\">“What should I do with this information now that I have it!?”</span></i><span style=\"font-weight: 400;\">. Which means as our brains make sense of it, we need to find a way of understanding it, therefore without the answer to the “SO WHAT?” part this can be challenging.</span>\n\n&nbsp;\n<h3>Are You In Shock Or Denial? Maybe Both?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once we have a </span><span style=\"font-weight: 400;\">reason</span><span style=\"font-weight: 400;\"> to understand something, it makes it easier to process, so to start with, we pass through the stage of shock and denial… “</span><i><span style=\"font-weight: 400;\">WOW is that really true?</span></i><span style=\"font-weight: 400;\">” ... Into the stage of fear and depression… “</span><i><span style=\"font-weight: 400;\">So why wasn\'t I told that previously on my training course?</span></i><span style=\"font-weight: 400;\">”… Finally into the stage of acceptance and moving on… “</span><i><span style=\"font-weight: 400;\">Ah ok so we need a certain level, or layer, of knowledge before we can process this amount of detail?”</span></i><span style=\"font-weight: 400;\">.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is when we arrive into this layer of exploration and understanding that we recognise how little anybody truly knows about the intrinsic body’s capability and function. In fact, much of what we, as exercise professionals work with, is hypothesis. Input versus output, do that and this happens, do this and that happens… and so on.</span>\n\n&nbsp;\n<h3><strong>What’s That… There Are 5 Quads?</strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">I had the luxury of spending some time in a Cadaver Lab some years ago (very limited time I might add), accessing the superb knowledge of the medical lab technicians. Now these guys teach medical students anatomy, so you can imagine their level of knowledge.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We looked at 5 quads and triple-headed biceps inside individual cadavers, 6 orientations of the sciatic nerve and piriformis relationship. There was also an ASIS measuring 26mm on one side and then 14mm on the other side of the same individual. We even saw the striations of fascial connective tissue crossed from the right pec minor into the left hip! It was also just amazing to pick up various sizes of median nerves in our gloved hands and so as we went on, it became clearer and clearer, just how gloriously fascinating and complex human anatomy is. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s just say… My mind was blown! But it is very clear, we are as different on the inside as we are on the outside and no one person is the same intrinsically.</span>\n\n&nbsp;\n<h3>Stay Away From Pain!</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So when someone spends time doing research to discover the output of an input, to create a value in the hypothesis over many years, you start to realise just how valuable that is to us ALL.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-1478 size-medium\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/tulang-ngilu-300x219.jpg\" width=\"300\" height=\"219\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It also makes you realise why </span><b>nothing is the answer to everything</b><span style=\"font-weight: 400;\"> and why we should </span><b>stay open minded </b><span style=\"font-weight: 400;\">and</span><b> utilise other professionals</b><span style=\"font-weight: 400;\">, for best practice and duty of care to our clients. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It also highlights why, in our roles as exercise professionals (and maybe even as therapists), it might be best to </span><b>stay away from the area that hurts</b><span style=\"font-weight: 400;\"> or is sore (generally).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is certainly not our remit as PT\'s, to be working on the ‘injured\' and yet, with the right training, there is strong evidence to suggest we can take pressure off one body part by working on another area, since MOST of our clients have some low grade niggle or ailment somewhere... Don\'t they?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is where our anxiety kicks in about what to do with them doesn’t it?! Technically, there are very few people above the age of maybe even 10yrs old these days, that fit within our ‘no medical conditions’ remit!</span>\n\n&nbsp;\n<h3>Proof of The Integrated System</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a Biomechanics Coach™, the proof of seeing this this integrated system work right before my eyes, is one of the parts of my job that excites me the most. When I see how working on one area of my clients body, can directly impact upon the movement and capacity of another area, is truly amazing! For example; by releasing their pec minor, it immediately impacts directly upon the depth of my client’s loaded squat. Like WHAT? And by releasing their pec, another great side effect of this too, can potentially also be a reduction in their low grade, no specific back ache.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff0000;\"><a style=\"color: #ff0000;\" href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\">Do you want to see this in action yourself?</a></span></strong></p>\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\"><a style=\"color: #ff0000;\" href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\"><span style=\"font-weight: 400;\">Download the Pelvic screen &amp; release, to test your Pelvic function here… You can also use this on your clients to, to start improving their movement &amp; reducing their niggles.</span></a></span></p>\n&nbsp;\n<h3>It’s ALL Hypothesis!</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">How we understand the body to work is still being challenged, and rightly so, since it is almost impossible to KNOW what is happening inside a living person when it comes to their intrinsic biomechanics. Much of our research is done on cadavers, which removes all neural influences and \'live\' reactions when testing. But having access to a tried and tested input/output system, it gives me as a Biomechanics Coach™, an increased confidence in what I can do and what is likely to happen as a result of that.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Of course, it is also impossible to prove that we have </span><span style=\"font-weight: 400;\">prevented</span><span style=\"font-weight: 400;\"> an injury or even merely reduced the risk to our client. However, as a professional, to do what we enjoy with an increased level of confidence, while keeping an open mind, demonstrates good practice and duty of care to our clients (considering what evidence we have to work with), doesn’t it!?</span>\n\n&nbsp;\n<h3>What’s Your View?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">I’m always interested to hear other peoples views on any topic we write about, so please do add your comments below and tell me your thoughts, we are always keen to hear more about research!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are looking for skilled professionals who want to be part of an ever growing team of diversely skilled people working together to improve the way the nation moves. If you want to be considered, have a look at the</span><a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\" target=\"_blank\" rel=\"noopener\"> <b>Intrinsic Biomechanics Association (IBA)</b></a><b>;</b><span style=\"font-weight: 400;\"> for like minded professionals from both the exercise and medical world. Increase your confidence when referring and learn how other professions work for an increased confidence and quality of service for your clients. You can also subscribe to our mailing list for updates on new research, upcoming courses and more!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n\n<span style=\"font-weight: 400;\">Rachel</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">P: 07976 933113</span>\n\n<span style=\"font-weight: 400;\">E: rachel@biomechanicseducation.com</span>','What’s That…? There Are 5 Quads?','','draft','closed','closed','','whats-that-there-are-5-quads','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1592',0,'post','',0),(1595,0,'2017-02-20 09:41:48','2017-02-20 09:41:48','    	','','','inherit','closed','closed','','shutterstock_383061178','','','2017-02-20 09:41:48','2017-02-20 09:41:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/shutterstock_383061178-1.jpg',0,'attachment','image/jpeg',0),(1608,0,'2017-01-29 18:55:17','2017-01-29 18:55:17','','','','inherit','closed','closed','','map-marker-marker-outside-azure','','','2017-01-29 18:55:17','2017-01-29 18:55:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Map-Marker-Marker-Outside-Azure-1.png',0,'attachment','image/png',0),(1646,0,'2017-03-07 08:48:11','2017-03-07 08:48:11','    	','','','inherit','closed','closed','','_mg_0055-1-1','','','2017-03-07 08:48:11','2017-03-07 08:48:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/MG_0055-1-1-1.jpg',0,'attachment','image/jpeg',0),(1649,3,'2017-03-13 15:25:54','2017-03-13 15:25:54','<span style=\"font-weight: 400;\">Yet again I have been really grabbed by my latest audiobook </span><span style=\"font-weight: 400;\">“I </span><i><span style=\"font-weight: 400;\">KNOW</span></i><span style=\"font-weight: 400;\"> WHAT TO DO, SO </span><i><span style=\"font-weight: 400;\">WHY</span></i><span style=\"font-weight: 400;\"> DON’T I DO IT? The new science of self discipline” by Nick Hall PH.D. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hall is charismatic, funny and really honest about the evidence behind the influence of the way we think about our health and also on how we feel about situations. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is where I say it…. Yes… </span><b>“The Power Of The Mind”</b><span style=\"font-weight: 400;\">… THIS is something I believe strongly in (but clearly need more practice at) and there are industry leaders out there who are far more knowledgeable on this subject than I.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Stephen Aish and Tom Waldron for example BOTH lead sessions at The Movement Convention 2016, with a lot of evidence based information about the benefits and influence of mindset and imagery.</span>\n<h3 style=\"text-align: center;\"></h3>\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-1658\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-13-at-11.47.46-300x163.png\" alt=\"\" width=\"388\" height=\"211\" /></p>\n&nbsp;\n<h3>Have You Fallen Into The Negative Statement Trap?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We as humans, spend a lot of time making statements like this….</span>\n\n&nbsp;\n\n<b><i>“I wish…</i></b>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">..I was thinner</span></i>\n\n<i><span style=\"font-weight: 400;\">..I had more flexibility</span></i>\n\n<i><span style=\"font-weight: 400;\">..I could lift more weight</span></i>\n\n<i><span style=\"font-weight: 400;\">..I experienced less pain</span></i>\n\n<i><span style=\"font-weight: 400;\">..I could squat better</span></i>\n\n<i><span style=\"font-weight: 400;\">..I had more money</span></i>\n\n<i><span style=\"font-weight: 400;\">..I worked less hours</span></i>\n\n<i><span style=\"font-weight: 400;\">..I was not sitting in this traffic jam”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Thinking this way puts us into a negative frame of mind, that we are LACKING or MISSING out for example. I know I am guilty of this sometimes, especially when it comes to the amount of kilo’s I can chuck over my head in the snatch!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s important to become aware of when we are making these “negative” statements, so we can correct our thought process and mindset.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter size-medium wp-image-1655\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-13-at-11.45.20-300x197.png\" alt=\"\" width=\"300\" height=\"197\" /></p>\n&nbsp;\n<h3>How Can You Stop Doing This?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well there is a section in his book where Hall suggests that, when we are in a situation we don\'t like, we should say, or think…</span>\n\n&nbsp;\n\n<strong><i>“I Am Glad I Am Not…”</i></strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">… and then add the ‘thing’ you are glad that you are not in, at that moment.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This converts how we feel from a negative state of mind, to a more positive and happier state of mind.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Examples might be...</span>\n\n&nbsp;\n<h3><i>“I Am Glad I Am Not…</i></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">..morbidly obese</span>\n\n<span style=\"font-weight: 400;\">..unable to exercise</span>\n\n<span style=\"font-weight: 400;\">..unable to perform a deadlift</span>\n\n<span style=\"font-weight: 400;\">..in agony that ruins my day</span>\n\n<span style=\"font-weight: 400;\">..unable to squat!</span>\n\n<span style=\"font-weight: 400;\">..as poor as others </span>\n\n<span style=\"font-weight: 400;\">..unemployed</span>\n\n<span style=\"font-weight: 400;\">..in the traffic accident up ahead”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This simple method of mindset can be SO POWERFUL and is something I have mostly done, due to the way I was brought up of seeing the positive side of any situation, however I will also be the first to put my hand up and say I have fallen into the “negative” trap. Yet, don’t you notice in our industry in particular, we often hear our clients making the negative </span><b>“I wish…”</b><span style=\"font-weight: 400;\"> statements.</span>\n\n&nbsp;\n<h3><b>What Happens When Our Client’s Come To Us With Pain?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we can convert a negative goal into a positive one there is a higher chance of success. For example, when a client comes to us with pain and asks for our help to relieve it. Removing the pain is NOT our remit as exercise professionals, but What we COULD do, is invite them to change their goal to something their pain stops them doing. Ie; squat 60kg or play on the floor with the grandkids. </span>\n\n<span style=\"font-weight: 400;\">YES, you might well be able to improve the way they feel or even reduce their pain. </span>\n\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter size-medium wp-image-1654\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/blue-skele-man-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" /></p>\n&nbsp;\n<h3>But removing their “pain” still isn’t in your remit!</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Nor should we focus on it, follow it or try to advise PT clients that we can help their pain. If you do, then you could be running a tight rope.</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“He who chases pain, is lost”, </span></i><span style=\"font-weight: 400;\">Karel Lewitt. </span>\n\n&nbsp;\n<h3>So What CAN We Do To Help?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can convert the goal and the promises to be positive ones. For example, we can 100% guarantee we can teach them how to move better or how to improve the way they move.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember, promising what another person can achieve is always going to be ambiguous and risky… BUT THEY NEED TO OWN IT. If they </span><i><span style=\"font-weight: 400;\">don’t</span></i><span style=\"font-weight: 400;\"> take responsibility (coaching attitude and motivation is a lot of what we do, right?) then WE can’t expect success in another individual.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However HALL’s suggestion of changing the way we think about our situation in itself, can completely change how we feel. There are even studies that indicate a change of attitude towards the body has changed pain levels… CRAZY RIGHT? (</span><i><span style=\"font-weight: 400;\">Lorimer Moseley/David Butler - Explain Pain)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The mindset of our clients is key to the success of the relationship and desired outcome (even if we ask them to change it). This comes from our skills in motivation through education. So remember this, they are paying for your knowledge and skills, so why would you just do the stuff they want or expect?</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><em><span style=\"text-decoration: underline;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\">If you want to get some practical techniques to test your client\'s Pelvic function and mobility, download your FREE 4-sign screen &amp; release right now &gt;&gt;</a></span></em></p>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Stay Happy, Stay Positive Readers!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel</span>\n\n&nbsp;\n<h3>Think Differently!</h3>\n<span style=\"font-weight: 400;\">Become a <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">Biomechanics Coach™</a> today… Find out more, <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">click here.</a></span>\n\n&nbsp;','How A Simple Switch Of Language Can Foster Greater Results','','draft','closed','closed','','how-a-simple-switch-of-language-can-foster-greater-results','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1649',0,'post','',0),(1650,0,'2017-03-13 11:21:07','2017-03-13 11:21:07','    	','','','inherit','closed','closed','','img_5942','','','2017-03-13 11:21:07','2017-03-13 11:21:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/IMG_5942-1.jpg',0,'attachment','image/jpeg',0),(1654,3,'2017-01-30 11:54:06','2017-01-30 11:54:06','[vc_row type=\"vc_default\" equal_height=\"yes\" bg_type=\"bg_color\" bg_override=\"ex-full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"round_split_seperator\" seperator_position=\"bottom_seperator\" seperator_shape_size=\"36\" seperator_shape_background=\"#121927\" bg_color_value=\"#ffffff\" css=\".vc_custom_1458636939396{padding-top: 75px !important;padding-bottom: 120px !important;}\" el_id=\"instructors\"][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-0 vc_col-md-12 vc_col-sm-offset-0 vc_col-xs-offset-1 vc_col-xs-10\" css=\".vc_custom_1458828298883{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\"][vc_column_text css=\".vc_custom_1458390118620{padding-bottom: 70px !important;}\"]\n<h1 style=\"text-align: center;\">Meet Our Instructors</h1>\n[/vc_column_text][/vc_column][vc_column][rev_slider_vc alias=\"dt-dance-team-slider\"][/vc_column][/vc_row][vc_row type=\"vc_default\" equal_height=\"yes\" bg_type=\"bg_color\" bg_override=\"ex-full\" bg_color_value=\"#121927\" css=\".vc_custom_1458388682580{padding-top: 60px !important;padding-bottom: 10px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1458388147639{padding-right: 60px !important;padding-bottom: 80px !important;padding-left: 60px !important;}\"][vc_row_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1457964068329{margin: 0px !important;border-width: 0px !important;padding: 0px !important;}\"][vc_single_image image=\"871\" img_size=\"160x160\" style=\"vc_box_circle\" css=\".vc_custom_1458388035308{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1457964078126{margin: 0px !important;border-width: 0px !important;padding: 0px !important;}\"][vc_column_text css=\".vc_custom_1458388986594{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 15px !important;padding-left: 0px !important;}\"]\n<h5><span style=\"color: #f6f7fa;\"><em>Sed imperdiet id tortor eget sodales. Lorem ipsum dolor adipiscing elit. Ut elit tellus, luctus nec pulvinar dapibus leo glavrida!</em></span></h5>\n[/vc_column_text][vc_column_text css=\".vc_custom_1458388882946{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 25px !important;padding-left: 0px !important;}\"]<span style=\"color: #828894;\"><em>Proin at augue felis. Donec nibh dui, luctus vitae odio at, consequat mattis neque. Sed imperdiet id tortor eget sodales. Curabitur lacus sem, laoreet vel elit vel, eleifend rhoncus magna. Donec nec ipsum metus!</em></span>[/vc_column_text][vc_column_text css=\".vc_custom_1458389119904{border-left-width: 3px !important;padding-left: 22px !important;border-left-color: #f93b40 !important;border-left-style: solid !important;}\"]\n<h5><span style=\"color: #f6f7fa;\">Alex Greenwood</span></h5>\n[/vc_column_text][vc_column_text css=\".vc_custom_1458389134960{border-left-width: 3px !important;padding-left: 22px !important;border-left-color: #f93b40 !important;border-left-style: solid !important;}\"]\n<h6><span style=\"color: #636974;\">32, programmer</span></h6>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1458388156928{padding-right: 60px !important;padding-bottom: 80px !important;padding-left: 60px !important;}\"][vc_row_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1457964068329{margin: 0px !important;border-width: 0px !important;padding: 0px !important;}\"][vc_single_image image=\"877\" img_size=\"160x160\" style=\"vc_box_circle\" css=\".vc_custom_1458388004272{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1457964078126{margin: 0px !important;border-width: 0px !important;padding: 0px !important;}\"][vc_column_text css=\".vc_custom_1458388752002{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 15px !important;padding-left: 0px !important;}\"]\n<h5><span style=\"color: #f6f7fa;\"><em>Curabitur lacus sem, laoreet vel elit vel, eleifend rhoncus magna.</em></span></h5>\n[/vc_column_text][vc_column_text css=\".vc_custom_1458388853437{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 25px !important;padding-left: 0px !important;}\"]<span style=\"color: #828894;\"><em>Laoreet vel elit vel, eleifend rhoncus magna. Donec nec ipsum metus!Proin at augue felis. Donec nibh dui, luctus vitae odio at, consequat mattis neque. Sed imperdiet id tortor eget sodales. Curabitur lacus laoreet. Donec nec ipsum dolor metus!</em></span>[/vc_column_text][vc_column_text css=\".vc_custom_1458388731907{border-left-width: 3px !important;padding-left: 22px !important;border-left-color: #f93b40 !important;border-left-style: solid !important;}\"]\n<h5><span style=\"color: #f6f7fa;\">Miriam Bright</span></h5>\n[/vc_column_text][vc_column_text css=\".vc_custom_1458388708922{border-left-width: 3px !important;padding-left: 22px !important;border-left-color: #f93b40 !important;border-left-style: solid !important;}\"]\n<h6><span style=\"color: #636974;\">25, yoga instructor</span></h6>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1458388167061{padding-right: 60px !important;padding-bottom: 80px !important;padding-left: 60px !important;}\"][vc_row_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1457964068329{margin: 0px !important;border-width: 0px !important;padding: 0px !important;}\"][vc_single_image image=\"875\" img_size=\"160x160\" style=\"vc_box_circle\" css=\".vc_custom_1458388067088{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1457964078126{margin: 0px !important;border-width: 0px !important;padding: 0px !important;}\"][vc_column_text css=\".vc_custom_1458388924326{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 15px !important;padding-left: 0px !important;}\"]\n<h5><span style=\"color: #f6f7fa;\"><em>Donec nibh dui, luctus vitae odio elit.</em></span></h5>\n[/vc_column_text][vc_column_text css=\".vc_custom_1458389009670{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 25px !important;padding-left: 0px !important;}\"]<span style=\"color: #828894;\"><em>Curabitur lacus dolor metu. Proin at augue felis. Donec nibh dui, luctus vitae odio at, consequat mattis neque. Sed imperdiet id tortor eget sodales. Curabitur lacus sem, laoreet vel elit vel, eleifend rhoncus magna. Donec nec ipsum metus!</em></span>[/vc_column_text][vc_column_text css=\".vc_custom_1458389028780{border-left-width: 3px !important;padding-left: 22px !important;border-left-color: #f93b40 !important;border-left-style: solid !important;}\"]\n<h5><span style=\"color: #f6f7fa;\">George Black</span></h5>\n[/vc_column_text][vc_column_text css=\".vc_custom_1458389052561{border-left-width: 3px !important;padding-left: 22px !important;border-left-color: #f93b40 !important;border-left-style: solid !important;}\"]\n<h6><span style=\"color: #636974;\">48, office worker</span></h6>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1458388175108{padding-right: 60px !important;padding-bottom: 80px !important;padding-left: 60px !important;}\"][vc_row_inner][vc_column_inner width=\"1/4\" css=\".vc_custom_1457964068329{margin: 0px !important;border-width: 0px !important;padding: 0px !important;}\"][vc_single_image image=\"880\" img_size=\"160x160\" style=\"vc_box_circle\" css=\".vc_custom_1458387547122{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"3/4\" css=\".vc_custom_1457964078126{margin: 0px !important;border-width: 0px !important;padding: 0px !important;}\"][vc_column_text css=\".vc_custom_1457966943826{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 15px !important;padding-left: 0px !important;}\"]\n<h5><span style=\"color: #f6f7fa;\"><em>Lorem ipsum dolor adipiscing elit. Ut elit tellus, luctus nec pulvinar dapibus leo!</em></span></h5>\n[/vc_column_text][vc_column_text css=\".vc_custom_1457966871782{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 25px !important;padding-left: 0px !important;}\"]<span style=\"color: #828894;\"><em>Proin at augue felis. Donec nibh dui, luctus vitae odio at, consequat mattis neque. Sed imperdiet id tortor eget sodales. Curabitur lacus sem, laoreet vel elit vel, eleifend rhoncus magna. Donec nec ipsum metus!</em></span>[/vc_column_text][vc_column_text css=\".vc_custom_1458387469548{border-left-width: 3px !important;padding-left: 22px !important;border-left-color: #f93b40 !important;border-left-style: solid !important;}\"]\n<h5><span style=\"color: #f6f7fa;\">Veronica Lee</span></h5>\n[/vc_column_text][vc_column_text css=\".vc_custom_1458387836718{border-left-width: 3px !important;padding-left: 22px !important;border-left-color: #f93b40 !important;border-left-style: solid !important;}\"]\n<h6><span style=\"color: #636974;\">30, fashion designer</span></h6>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','shortcode builder','','inherit','closed','closed','','1651-revision-v1','','','2017-01-30 11:54:06','2017-01-30 11:54:06','',0,'http:///www.biomechanicseducation.com/1651-revision-v1/',0,'revision','',0),(1655,3,'2017-01-30 11:56:13','2017-01-30 11:56:13','[vc_row type=\"vc_default\" equal_height=\"yes\" bg_type=\"bg_color\" bg_override=\"ex-full\" seperator_enable=\"seperator_enable_value\" seperator_type=\"round_split_seperator\" seperator_position=\"bottom_seperator\" seperator_shape_size=\"36\" seperator_shape_background=\"#121927\" bg_color_value=\"#ffffff\" css=\".vc_custom_1458636939396{padding-top: 75px !important;padding-bottom: 120px !important;}\" el_id=\"instructors\"][vc_column offset=\"vc_col-lg-offset-0 vc_col-lg-12 vc_col-md-offset-0 vc_col-md-12 vc_col-sm-offset-0 vc_col-xs-offset-1 vc_col-xs-10\" css=\".vc_custom_1458828298883{margin-top: 0px !important;margin-right: 0px !important;margin-bottom: 0px !important;margin-left: 0px !important;border-top-width: 0px !important;border-right-width: 0px !important;border-bottom-width: 0px !important;border-left-width: 0px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\"][vc_column_text css=\".vc_custom_1458390118620{padding-bottom: 70px !important;}\"]\n<h1 style=\"text-align: center;\">Meet Our Instructors</h1>\n[/vc_column_text][/vc_column][vc_column][rev_slider_vc alias=\"dt-dance-team-slider\"][/vc_column][/vc_row]','shortcode builder','','inherit','closed','closed','','1651-revision-v1','','','2017-01-30 11:56:13','2017-01-30 11:56:13','',0,'http:///www.biomechanicseducation.com/1651-revision-v1/',0,'revision','',0),(1658,0,'2017-03-13 11:48:25','2017-03-13 11:48:25','    	','','','inherit','closed','closed','','screen-shot-2017-03-13-at-11-47-46','','','2017-03-13 11:48:25','2017-03-13 11:48:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-13-at-11.47.46-1.png',0,'attachment','image/png',0),(1660,0,'2017-03-13 15:22:19','2017-03-13 15:22:19','    	','','','inherit','closed','closed','','mindset-blog-image-3','','','2017-03-13 15:22:19','2017-03-13 15:22:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/mindset-blog-image-3-1.png',0,'attachment','image/png',0),(1666,3,'2017-03-21 07:00:35','2017-03-21 07:00:35','<h3></h3>\n<span style=\"font-weight: 400;\">It’s always healthy to do your research and as you will recall from my previous blog’s, since my school teachers constantly told me ‘</span><i><span style=\"font-weight: 400;\">you’re not an academic</span></i><span style=\"font-weight: 400;\">’, this can take me longer than most to process the technical information in written form. So I often use visual resources like <a href=\"https://www.youtube.com/user/rachfit12/feed\" target=\"_blank\" rel=\"noopener\">YouTube</a>, to help me process and learn new information. Over the last couple of years however, I have also found audiobooks and podcasts to be fantastic resources for learning, processing and absorbing information in the auditory form.</span>\n\n&nbsp;\n\n<span style=\"text-decoration: underline;\"><a href=\"https://www.youtube.com/user/rachfit12/feed\" target=\"_blank\" rel=\"noopener\">Subscribe to Biomechanic Education\'s YouTube Channel by clicking here.</a></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">During my time trawling through these awesome resources as I researched squatting and dead lifting biomechanics, I came across all sorts of fascinating things. The </span><i><span style=\"font-weight: 400;\">fun</span></i><span style=\"font-weight: 400;\"> part was that I discovered that not ALL leaders in this subject area actually agree! This encouraged me to delve even deeper to try and understand both viewpoints. It also meant I did actually even buy more books.</span>\n\n&nbsp;\n<h3>What Happens When World Leader’s In Biomechanics Disagree?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway my research also involved a chat with a friend of mine, <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">Biomechanics Coach™</a> Lawrence Farncombe, who is the head coach for our GB powerlifting team. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We discussed the debate between McGill and Gracovetsky on spine mechanics, the loads and the risk during deadlifting specifically. The fact that those two world leaders in biomechanics completely disagree with each other, was what Lawrence and I were trying to make some sense of. Interestingly this very debate came up again in an online forum recently and a healthy debate was had between several Biomechanics Coaches™.</span>\n\n&nbsp;\n\n<a href=\"https://www.amazon.co.uk/Ultimate-Fitness-Performance-Stuart-McGill/dp/0973501804/ref=sr_1_1?ie=UTF8&amp;qid=1490020052&amp;sr=8-1&amp;keywords=McGill%E2%80%99s+%E2%80%98Ultimate+Back+Fitness+%26+Performance%E2%80%99\" target=\"_blank\" rel=\"noopener\"><img class=\"size-medium wp-image-1674 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/back-mechanic-by-stuart-mcgill-300x250.jpg\" alt=\"\" width=\"300\" height=\"250\" /></a>\n\n<img class=\"alignright wp-image-1675 size-medium\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/The-Spinal-Engine-Full-cover-100-dpi-300x191.jpg\" alt=\"\" width=\"300\" height=\"191\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Basically McGill’s take is that the spine should be ‘stacked’ without deviation (ie flexion or extension) occurring during a loaded movement, which he discuss\'s in his book, </span><span style=\"text-decoration: underline;\"><a href=\"https://www.amazon.co.uk/Ultimate-Fitness-Performance-Stuart-McGill/dp/0973501804/ref=sr_1_1?ie=UTF8&amp;qid=1490020052&amp;sr=8-1&amp;keywords=McGill%E2%80%99s+%E2%80%98Ultimate+Back+Fitness+%26+Performance%E2%80%99\" target=\"_blank\" rel=\"noopener\"><span id=\"productTitle\" class=\"a-size-large\">Ultimate Back Fitness and Performance</span></a></span><span style=\"font-weight: 400;\">. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">\nGracovetsky argues in his book </span><span id=\"productTitle\" class=\"a-size-large\"><span style=\"text-decoration: underline;\"><a href=\"https://www.amazon.co.uk/d/Books/Spinal-Engine-Serge-Gracovetsky-2010-04-27/B01K3K9EKI/ref=sr_1_4?ie=UTF8&amp;qid=1490019930&amp;sr=8-4&amp;keywords=Gracovetsky%E2%80%99s+%E2%80%98The+Spinal+Engine%E2%80%99\" target=\"_blank\" rel=\"noopener\">The Spinal Engine by Serge Gracovetsky (2010-04-27)</a></span> </span><span style=\"font-weight: 400;\">that the thoraco lumbar fascia acts like an hydraulic amplifier so an amount of flexion could be helpful.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">After discussing this over several conversations, both Lawrence and I felt that McGill’s view holds a more favourable reasoning in our opinions, however there are still professionals I have also spoken to in forums who defend Gracovetsky’s view.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It just goes to show, that the best way to determine what works best for you, is by doing YOUR OWN research after finding out about something new, no matter how much evidence there is to back that particular view up. This way you can be sure you’re practicing and teaching the philosophy\'s YOU believe in with YOUR clients and for YOUR own training. If you understand the arguments for and against and you’re able to JUSTIFY your reasoning, it would be a difficult for anyone to challenge you. YOU know YOUR client that YOU care for and ALL the details required to make that decision.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YOUR knowledge and understanding will allow you to coach better and lead by example. We should NEVER use techniques we don’t fully understand or use simply because… \"</span><i><span style=\"font-weight: 400;\">Rachel said</span></i><span style=\"font-weight: 400;\">…..\" or \"...</span><i><span style=\"font-weight: 400;\">so and so said</span></i><span style=\"font-weight: 400;\">…\" or \"...</span><i><span style=\"font-weight: 400;\">no idea, I heard it on a course</span></i><span style=\"font-weight: 400;\">..\" or \"<em>...I </em></span><i><span style=\"font-weight: 400;\"><em>r</em>ead it somewhere</span></i><span style=\"font-weight: 400;\">…\"</span>\n\n&nbsp;\n<h3>So Find Ways To Process Information Until You Get It:</h3>\n&nbsp;\n\n<b>Personally….</b>\n\n<span style=\"font-weight: 400;\">In videos and the gym I would SEE &amp; FEEL moves...</span>\n\n<span style=\"font-weight: 400;\">In forums and phone calls I would DISCUSS them, hear others views … </span>\n\n<span style=\"font-weight: 400;\">In books I would READ reasoning and technical information…</span>\n\n<span style=\"font-weight: 400;\">The audiobooks, podcasts also NOW feed my auditory learning style.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Which would ALL contribute towards getting a better understanding of a particular debate or concept and allowed me to form some kind of an opinion. </span>\n\n&nbsp;\n<h3>What’s YOUR Problem?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">All too often PT’s, Pilates instructors and other exercise professionals come to us because they ENJOY discussing new research and these topics, but they also feel like they lack some of the knowledge (or resources) required to be able to challenge concepts, ideas or sometimes just to grasp and debate a technical argument. Which isn’t surprising really when even world leaders sometimes don’t even agree...!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do YOU feel </span><b>anxious</b><span style=\"font-weight: 400;\"> about YOUR anatomy knowledge...</span>\n\n<span style=\"font-weight: 400;\">Do YOU </span><b>lack confidence</b><span style=\"font-weight: 400;\"> in knowing exactly </span><i><span style=\"font-weight: 400;\">why</span></i><span style=\"font-weight: 400;\"> your clients are moving that way...</span>\n\n<span style=\"font-weight: 400;\">Are YOU looking for a </span><b>deeper understanding</b><span style=\"font-weight: 400;\"> of what’s going on inside your clients bodies..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Don’t worry! </span><span style=\"font-weight: 400;\">For years I WANTED to learn and read, but I just didn’t feel I had it in me; now I feel like a complete sponge and literally cannot get enough! I now LOVE being able to absorb and learn from various resources. So I now want to encourage YOU, if you feel you are a bit like me and were told, and maybe still believe, you are a ‘non- academic’...</span>\n\n&nbsp;\n<h3>Please Do NOT Doubt Your Intelligence!!</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Take that first step into a fantastic world exploring human movement in our inclusive, resources filled academy and meet a whole network of professionals…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...JUST LIKE </span><b>YOU!</b>\n\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><b>CLICK HERE</b></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Don’t worry if you are nervous about your experience or knowledge level as we will coach you through everything in a way that’s simple to understand. We will re-teach you the anatomy along with reasons to never ever forget it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Become a Biomechanics Coach™ today… Find out more, <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a>.</span></p>','Why Doing Your Own Research Could Lead You To Become A Better Coach, Even If You Think You’re A ‘Non-Academic’ Like Me.','','draft','closed','closed','','why-doing-your-own-research-could-lead-you-to-become-a-better-coach-even-if-you-think-youre-a-non-academic-like-me','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1666',0,'post','',0),(1667,0,'2017-03-20 07:25:46','2017-03-20 07:25:46','    	','','','inherit','closed','closed','','screen-shot-2017-03-20-at-07-25-06','','','2017-03-20 07:25:46','2017-03-20 07:25:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-20-at-07.25.06-1.png',0,'attachment','image/png',0),(1668,0,'2017-03-20 07:26:26','2017-03-20 07:26:26','    	','','','inherit','closed','closed','','screen-shot-2017-03-20-at-07-25-24','','','2017-03-20 07:26:26','2017-03-20 07:26:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-20-at-07.25.24-1.png',0,'attachment','image/png',0),(1669,0,'2017-03-20 07:27:15','2017-03-20 07:27:15','    	','','','inherit','closed','closed','','screen-shot-2017-03-20-at-07-24-55','','','2017-03-20 07:27:15','2017-03-20 07:27:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-20-at-07.24.55-1.png',0,'attachment','image/png',0),(1674,0,'2017-03-20 14:32:37','2017-03-20 14:32:37','    	','','','inherit','closed','closed','','back-mechanic-by-stuart-mcgill','','','2017-03-20 14:32:37','2017-03-20 14:32:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/back-mechanic-by-stuart-mcgill-1.jpg',0,'attachment','image/jpeg',0),(1675,0,'2017-03-20 14:32:41','2017-03-20 14:32:41','    	','','','inherit','closed','closed','','the-spinal-engine-full-cover-100-dpi','','','2017-03-20 14:32:41','2017-03-20 14:32:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/The-Spinal-Engine-Full-cover-100-dpi-1.jpg',0,'attachment','image/jpeg',0),(1698,3,'2017-03-27 15:40:30','2017-03-27 15:40:30','If you are a group exercise fan, instructor or personal trainer the International Fitness Showcase (IFS) at the Blackpool Winter Gardens was where it was ALL happening last weekend!\n\n&nbsp;\n\n<img class=\"aligncenter size-medium wp-image-1699\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/IMG_8292-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\n\n&nbsp;\n<h3>Friday Was The Boy’s Day</h3>\nFriday was the first day of the Spinning® convention inside IFS. Biomechanics Coaches™ and Master Trainers, Tom Waldron and Chris Kitson arrived for the day and also to present on behalf of Biomechanics Education.\n\n&nbsp;\n\nUp first was Chris, who is also an Osteopath, with ‘Why Your Flexibility Routines DON’T Work’.\n\n&nbsp;\n\n<img class=\"aligncenter size-medium wp-image-1705\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/IMG_7959-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\n\n&nbsp;\n\nThen Tom, who also teaches the Franklin Method &amp; Pilates, was on later in the day with ‘Why You’re Exercising Wrong’.\n\n&nbsp;\n\n<img class=\"aligncenter size-medium wp-image-1704\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/IMG_7999-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\n\n&nbsp;\n\nBoth session were full and not only was the feedback fantastic, the boys energy was infectious as they obviously enjoyed themselves!\n\n&nbsp;\n\nWendy Arthan, also a Master Trainer and Biomechanics Coach™ who also runs her own facility, did an amazing job manning the stand and offering free screens to the event attendees interested in what we do within the academy.\n\n&nbsp;\n\n<img class=\"aligncenter size-medium wp-image-1703\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/IMG_8022-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" />\n\n&nbsp;\n\nWe all had such a great day catching up AND discussion global domination ;)\n\n&nbsp;\n<h3>Saturday Was ALL About Making Things Simple</h3>\nOn Saturday my session first thing was fully booked and had such a diverse range of attendees from class participants with absolutely no anatomy training or knowledge, to L2 fitness/gym instructors and L3 PT’s, with one sports therapist.\n\n&nbsp;\n\nConsidering my session was called ‘Movement Analysis Made Easy’ I thought … ‘wowzers, how do I pitch this?’.\n\n&nbsp;\n\nAnyway, as I set the tone of the session, I explained that we were going to analyse ‘group actions of muscles’ without using ANY names of muscles.\n\n&nbsp;\n\nWhenever I teach, present or lecture, I always try to remember how I had felt as a learner or attendee in this type of environment. While not an unconfident character (as some of you may have guessed), I would however feel very anxious that I would be picked out to give an answer, that I might not know, and I would then look stupid in front of everyone else. I always thought everyone else knew so much more than me and were much smarter than me.\n\n&nbsp;\n\n<img class=\"aligncenter size-medium wp-image-1701\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/IMG_8291-169x300.png\" alt=\"\" width=\"169\" height=\"300\" />\n\n&nbsp;\n\nMy challenge (in my own head) is ALWAYS to include and connect positively with, every single audience member in some way. To remember, and to use, as many of their names as possible. To offer an inclusive learning environment where healthy discussion allows everyone to have a go. To NOT judge if someone gets it wrong or isn\'t quite right, but to praise the effort to try and share their thoughts. To encourage and facilitate discussion rather than to ‘tell people what I know’. To embrace a learner lead environment where we ALL learn from each other.\n\n&nbsp;\n\nTHIS is MY purpose.\nTHIS is what the Biomechanics Education ethos is about.\nWE give YOU the opportunity to learn, expand and grow your confidence and knowledge in the field of human movement, also known in our academy as intrinsic biomechanics.\n\n&nbsp;\n<h3>Why Analyse Movement?</h3>\nSo after my introduction to the purpose of the session I started by asking the group; “Why Analyse Movement?” …to reduce risk and improve performance… the group decided… Great!\n\n&nbsp;\n\n“So What’s The Problem?”, I asked… The problem is identifying what is influencing what, when you can’t see what’s actually happening inside the body. We all agreed!\n\n&nbsp;\n<h3>It’s All A Hypothesis!</h3>\nNo one REALLY knows, I explained, everyone (even the ‘experts’) are guessing from the ‘input/output’ studies, from cadaver studies and logical analysis and this is actually the best we have got.\n\n&nbsp;\n\nWell if it’s THAT complex and challenging how about we simplify it down to that great “SO WHAT?” question?… I suggested to the group.\n\n&nbsp;\n\nAs ‘movement specialists’ we don’t really NEED to know that anatomy of the muscles (we SHOULD know it), BUT in the meantime, while we find ways to remember it, why not use this technique to understand movement first...\n\n&nbsp;\n\n<img class=\"aligncenter size-medium wp-image-1702\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/IMG_8290-169x300.png\" alt=\"\" width=\"169\" height=\"300\" />\n\n&nbsp;\n<h3>The Session Went Like This</h3>\n<strong>Example 1 - Shoulder Abduction.</strong>\n\nWe discussed what GROUPS of muscles were the agonists, antagonists, fixators and dynamic stabilisers. i.e. The shoulder abductors, the shoulder adductors, trunk fixators.\n\n&nbsp;\n\nWe added the question, “Which part of the trunk is working hardest due to the load?”… Cobwebs were being brushed away for some people here but I could literally SEE them mentally processing the discussion. We got to our conclusion then moved on to the next one.\n\n&nbsp;\n\n<strong>Example 2 - Supine Leg Lift (30 degrees).</strong>\n\nAgain we discussed agonists, antagonists, fixators and dynamic stabilisers.\n\n&nbsp;\n\nInitially some people had opposing views until we explored their justifications for their answers. This allowed a few of the attendees to offer their ideas to then find the answer that they then all agreed on.\n\n&nbsp;\n<p style=\"text-align: center;\"><em><strong><a href=\"https://biomechanicseducation.clickfunnels.com/release-low-back5jirv1qh\" target=\"_blank\" rel=\"noopener\"> &gt;&gt; Download your own free Low Back Releases including leg press &amp; pelvic tilt by clicking here &lt;&lt;</a></strong></em></p>\n&nbsp;\n\n<strong>Example 3 - Side Lying Hip Abduction.</strong>\n\nAh ok starting to get a bit of a flow now…. still a few questions initially but the process was becoming quicker. More and more started to join in, less afraid to have a go due to the inclusive environment they realised they were in.\n\n&nbsp;\n\n<strong>Example 4 - Prone Kneeling Hip Extension.</strong>\n\nA much quicker response BUT they were now correcting and discussing with each other as a group.\n\n&nbsp;\n\nFinally;\n<strong>Example 5 - Hip Hitch.</strong>\n\nConfused looks all round as they tried to work out the joints moving and the actions involved…. hip elevation? adduction? femur rotation? So we broke it down again and gradually the group worked out exactly what the actions were.\n\n&nbsp;\n\nSo while I’d had initial reservations about the mixed ability group, by the end of the session almost everyone had taken part in some way. Even the non fit pros had been involved!\n\n&nbsp;\n\nFor the rest of the day I was networking with all sorts of fascinating people!\n\n&nbsp;\n<h3>In fact this is my favourite working weekend of the entire year for several reasons:</h3>\n1) We get a weekend in Blackpool!! (c’mon we all secretly love the place)\n\n2) My long time buddy and a partner in collaboration, Sara Morelli of Athleticum &amp; Spinning®, was there and she is ALWAYS so great to be around.\n\n3) Her A.W.E.S.O.M.E team of Master Trainers are like a family I get to see once a year - many are also trained Biomechanics Coaches™ or Trainers™!\n\n4) 3 of my team, Master Trainers, were there to present and man the stand. Tom Waldron, Chris Kitson and Wendy Arthan.\n\n5) My event staff, the SSSPA Crew, were as always lots of fun including Robbo, Funck, LK, H and Kim.\n\n6) We all get to hang out, talk biomechanics and human movement, meet new people and generally enjoy ourselves while working!\n\n&nbsp;\n<h3>So WHAT?</h3>\nWell if you missed it, you missed out!\nIf you were there, you KNOW what I am talking about.\nIf you WISH you were there, it happens every year!\n\n&nbsp;\n\nMove Freely,\nRachel\n07976933113\nrachel@biomechanicseducation.com\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>Follow Us On Social Media...</strong></p>\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/Biomechanics-Education-172683559589454/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1717 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/aquicon-icon-18718-300x300.png\" alt=\"\" width=\"98\" height=\"98\" /><img class=\"wp-image-1716 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/aquicon-icon-18708-300x300.png\" alt=\"\" width=\"97\" height=\"97\" /></a><a href=\"https://www.instagram.com/biomechanics_education/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1718 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/aquicon-icon-18774-300x287.png\" alt=\"\" width=\"98\" height=\"93\" /></a></p>','A Weekend Presenting At The International Fitness Showcase','','draft','closed','closed','','a-weekend-presenting-at-the-international-fitness-showcase','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1698',0,'post','',0),(1699,0,'2017-03-27 10:11:47','2017-03-27 10:11:47','    	','','','inherit','closed','closed','','img_8292','','','2017-03-27 10:11:47','2017-03-27 10:11:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/IMG_8292-1.jpg',0,'attachment','image/jpeg',0),(1700,0,'2017-03-27 10:12:13','2017-03-27 10:12:13','    	','','','inherit','closed','closed','','screen-shot-2017-03-27-at-11-06-01','','','2017-03-27 10:12:13','2017-03-27 10:12:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-27-at-11.06.01-1.png',0,'attachment','image/png',0),(1701,0,'2017-03-27 10:12:29','2017-03-27 10:12:29','    	','','','inherit','closed','closed','','img_8291','','','2017-03-27 10:12:29','2017-03-27 10:12:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/IMG_8291-1.png',0,'attachment','image/png',0),(1702,0,'2017-03-27 10:12:53','2017-03-27 10:12:53','    	','','','inherit','closed','closed','','img_8290','','','2017-03-27 10:12:53','2017-03-27 10:12:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/IMG_8290-1.png',0,'attachment','image/png',0),(1825,0,'2017-02-15 12:01:28','2017-02-15 12:01:28','','','','inherit','closed','closed','','chrome_2017-02-15_11-54-53','','','2017-02-15 12:01:28','2017-02-15 12:01:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/chrome_2017-02-15_11-54-53-1.png',0,'attachment','image/png',0),(2102,0,'2017-03-14 10:13:02','2017-03-14 10:13:02','','','','inherit','closed','closed','','01','','','2017-03-14 10:13:02','2017-03-14 10:13:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/01-1.png',0,'attachment','image/png',0),(2103,0,'2017-03-14 10:13:05','2017-03-14 10:13:05','','','','inherit','closed','closed','','02','','','2017-03-14 10:13:05','2017-03-14 10:13:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/02-1.png',0,'attachment','image/png',0),(2104,0,'2017-03-14 10:13:07','2017-03-14 10:13:07','','','','inherit','closed','closed','','03','','','2017-03-14 10:13:07','2017-03-14 10:13:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/03-1.png',0,'attachment','image/png',0),(2105,0,'2017-03-14 10:13:08','2017-03-14 10:13:08','','','','inherit','closed','closed','','04','','','2017-03-14 10:13:08','2017-03-14 10:13:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/04-1.png',0,'attachment','image/png',0),(2106,0,'2017-03-14 10:13:10','2017-03-14 10:13:10','','','','inherit','closed','closed','','05','','','2017-03-14 10:13:10','2017-03-14 10:13:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/05-1.png',0,'attachment','image/png',0),(2107,0,'2017-03-14 10:13:11','2017-03-14 10:13:11','','','','inherit','closed','closed','','06','','','2017-03-14 10:13:11','2017-03-14 10:13:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/06-1.png',0,'attachment','image/png',0),(2108,0,'2017-03-14 10:13:13','2017-03-14 10:13:13','','','','inherit','closed','closed','','07','','','2017-03-14 10:13:13','2017-03-14 10:13:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/07-1.png',0,'attachment','image/png',0),(2109,0,'2017-03-14 10:13:15','2017-03-14 10:13:15','','','','inherit','closed','closed','','08','','','2017-03-14 10:13:15','2017-03-14 10:13:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/08-1.png',0,'attachment','image/png',0),(2110,0,'2017-03-14 10:13:17','2017-03-14 10:13:17','','','','inherit','closed','closed','','09-2','','','2017-03-14 10:13:17','2017-03-14 10:13:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/09-1.png',0,'attachment','image/png',0),(2111,0,'2017-03-14 10:13:18','2017-03-14 10:13:18','','','','inherit','closed','closed','','10-2','','','2017-03-14 10:13:18','2017-03-14 10:13:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/10-1.png',0,'attachment','image/png',0),(2112,0,'2017-03-14 10:13:20','2017-03-14 10:13:20','','','','inherit','closed','closed','','11','','','2017-03-14 10:13:20','2017-03-14 10:13:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/11-1.png',0,'attachment','image/png',0),(2113,0,'2017-03-14 10:13:22','2017-03-14 10:13:22','','','','inherit','closed','closed','','12-2-2','','','2017-03-14 10:13:22','2017-03-14 10:13:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/12-1.png',0,'attachment','image/png',0),(2114,0,'2017-03-14 10:13:23','2017-03-14 10:13:23','','','','inherit','closed','closed','','13','','','2017-03-14 10:13:23','2017-03-14 10:13:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/13-1.jpg',0,'attachment','image/jpeg',0),(2115,0,'2017-03-14 10:13:25','2017-03-14 10:13:25','','','','inherit','closed','closed','','13-2','','','2017-03-14 10:13:25','2017-03-14 10:13:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/13-1.png',0,'attachment','image/png',0),(2217,0,'2017-03-31 07:42:46','2017-03-31 07:42:46','','','','inherit','closed','closed','','02-2','','','2017-03-31 07:42:46','2017-03-31 07:42:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/02-1.jpg',0,'attachment','image/jpeg',0),(2222,0,'2017-03-31 10:04:58','2017-03-31 10:04:58','','','','inherit','closed','closed','','imovefreely-transparent-300dpi-2-300x180','','','2017-03-31 10:04:58','2017-03-31 10:04:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/iMoveFreely-Transparent-300dpi-2-300x180-1.png',0,'attachment','image/png',0),(2229,0,'2016-12-10 07:01:01','2016-12-10 07:01:01','    	','','','inherit','closed','closed','','_mg_9943-1','','','2016-12-10 07:01:01','2016-12-10 07:01:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/12/MG_9943-1-1.jpg',0,'attachment','image/jpeg',0),(2230,0,'2016-12-12 06:39:43','2016-12-12 06:39:43','    	','','Back View of Man Running on Stairs --- Image by © Royalty-Free/Corbis','inherit','closed','closed','','back-view-of-man-running-on-stairs','','','2016-12-12 06:39:43','2016-12-12 06:39:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/12/running-up-stairs-1.jpg',0,'attachment','image/jpeg',0),(2231,0,'2016-12-14 08:02:22','2016-12-14 08:02:22','    	','','','inherit','closed','closed','','screen-shot-2016-12-14-at-08-01-47','','','2016-12-14 08:02:22','2016-12-14 08:02:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/12/Screen-Shot-2016-12-14-at-08.01.47-1.png',0,'attachment','image/png',0),(2232,0,'2016-12-17 08:19:10','2016-12-17 08:19:10','    	','','','inherit','closed','closed','','screen-shot-2016-12-17-at-08-18-50','','','2016-12-17 08:19:10','2016-12-17 08:19:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/12/Screen-Shot-2016-12-17-at-08.18.50-1.png',0,'attachment','image/png',0),(2233,0,'2016-12-19 09:06:03','2016-12-19 09:06:03','    	','','','inherit','closed','closed','','screen-shot-2016-12-19-at-09-05-47','','','2016-12-19 09:06:03','2016-12-19 09:06:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/12/Screen-Shot-2016-12-19-at-09.05.47-1.png',0,'attachment','image/png',0),(2234,0,'2016-12-21 07:29:42','2016-12-21 07:29:42','    	','','','inherit','closed','closed','','screen-shot-2016-12-21-at-07-29-24','','','2016-12-21 07:29:42','2016-12-21 07:29:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/12/Screen-Shot-2016-12-21-at-07.29.24-1.png',0,'attachment','image/png',0),(2235,0,'2016-12-24 14:22:29','2016-12-24 14:22:29','    	','','','inherit','closed','closed','','img_0065-3','','','2016-12-24 14:22:29','2016-12-24 14:22:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/12/IMG_0065-1.jpg',0,'attachment','image/jpeg',0),(2236,0,'2017-01-09 10:01:35','2017-01-09 10:01:35','    	','','','inherit','closed','closed','','screen-shot-2017-01-09-at-10-01-15','','','2017-01-09 10:01:35','2017-01-09 10:01:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-09-at-10.01.15-1.png',0,'attachment','image/png',0),(2237,0,'2017-01-17 15:32:55','2017-01-17 15:32:55','    	','','','inherit','closed','closed','','tulang-ngilu','','','2024-09-20 14:50:13','2024-09-20 14:50:13','',40946,'https://biomechanicseducation.com/wp-content/uploads/2017/01/tulang-ngilu-2.jpg',0,'attachment','image/jpeg',0),(2238,0,'2017-01-17 15:45:54','2017-01-17 15:45:54','    	','','','inherit','closed','closed','','screen-shot-2017-01-13-at-10-56-55','','','2017-01-17 15:45:54','2017-01-17 15:45:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.56.55-1.png',0,'attachment','image/png',0),(2239,0,'2017-01-17 16:05:31','2017-01-17 16:05:31','    	','','','inherit','closed','closed','','tulang-ngilu-2','','','2017-01-17 16:05:31','2017-01-17 16:05:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/tulang-ngilu-1-1.jpg',0,'attachment','image/jpeg',0),(2241,0,'2017-03-01 16:17:38','2017-03-01 16:17:38','    	','','','inherit','closed','closed','','img_7642','','','2017-03-01 16:17:38','2017-03-01 16:17:38','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/IMG_7642-1.jpg',0,'attachment','image/jpeg',0),(2242,0,'2017-03-01 16:17:43','2017-03-01 16:17:43','    	','','','inherit','closed','closed','','img_7643','','','2017-03-01 16:17:43','2017-03-01 16:17:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/IMG_7643-1.jpg',0,'attachment','image/jpeg',0),(2243,0,'2017-03-01 16:17:47','2017-03-01 16:17:47','    	','','','inherit','closed','closed','','beyv5585','','','2017-03-01 16:17:47','2017-03-01 16:17:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/BEYV5585-1.jpg',0,'attachment','image/jpeg',0),(2244,0,'2017-03-01 16:17:52','2017-03-01 16:17:52','    	','','','inherit','closed','closed','','img_7623','','','2017-03-01 16:17:52','2017-03-01 16:17:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/IMG_7623-1.jpg',0,'attachment','image/jpeg',0),(2245,0,'2017-03-01 16:19:30','2017-03-01 16:19:30','    	','','','inherit','closed','closed','','img_7612','','','2017-03-01 16:19:30','2017-03-01 16:19:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/IMG_7612-1.jpg',0,'attachment','image/jpeg',0),(2246,0,'2017-03-01 16:22:50','2017-03-01 16:22:50','    	','','','inherit','closed','closed','','screen-shot-2017-02-27-at-12-26-26-2','','','2025-02-04 12:44:47','2025-02-04 12:44:47','',40779,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-02-27-at-12.26.26-1-1.png',0,'attachment','image/png',0),(2247,0,'2017-01-23 10:55:34','2017-01-23 10:55:34','    	','','','inherit','closed','closed','','muscles-stretching-3','','','2017-01-23 10:55:34','2017-01-23 10:55:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/muscles-stretching-3-1.jpg',0,'attachment','image/jpeg',0),(2248,0,'2017-01-23 11:32:26','2017-01-23 11:32:26','    	','','','inherit','closed','closed','','why','','','2017-01-23 11:32:26','2017-01-23 11:32:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/WHY-2.png',0,'attachment','image/png',0),(2249,0,'2017-01-23 11:37:11','2017-01-23 11:37:11','    	','','','inherit','closed','closed','','why-2','','','2017-01-23 11:37:11','2017-01-23 11:37:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/WHY-1-1.png',0,'attachment','image/png',0),(2250,0,'2017-01-27 09:43:56','2017-01-27 09:43:56','    	','','','inherit','closed','closed','','screen-shot-2017-01-27-at-09-43-35','','','2017-01-27 09:43:56','2017-01-27 09:43:56','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-27-at-09.43.35-1.png',0,'attachment','image/png',0),(2251,0,'2017-01-31 06:48:16','2017-01-31 06:48:16','    	','','','inherit','closed','closed','','screen-shot-2017-01-31-at-06-45-25','','','2017-01-31 06:48:16','2017-01-31 06:48:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-31-at-06.45.25-1.png',0,'attachment','image/png',0),(2252,0,'2017-02-07 09:28:35','2017-02-07 09:28:35','    	','','','inherit','closed','closed','','img_7422','','','2017-02-07 09:28:35','2017-02-07 09:28:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/IMG_7422-1.jpg',0,'attachment','image/jpeg',0),(2253,0,'2017-02-14 09:35:14','2017-02-14 09:35:14','    	','','','inherit','closed','closed','','cs-bag-causing-back-pain-1440x810','','','2017-02-14 09:35:14','2017-02-14 09:35:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/cs-bag-causing-back-pain-1440x810-1.jpg',0,'attachment','image/jpeg',0),(2254,0,'2017-02-14 09:35:37','2017-02-14 09:35:37','    	','','','inherit','closed','closed','','sports-massage-therapy-steyning','','','2017-02-14 09:35:37','2017-02-14 09:35:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/sports-massage-therapy-steyning-1.jpg',0,'attachment','image/jpeg',0),(2255,0,'2017-02-14 09:36:13','2017-02-14 09:36:13','    	','','','inherit','closed','closed','','high-heels-for-women','','','2017-02-14 09:36:13','2017-02-14 09:36:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/high-heels-for-women-1.jpg',0,'attachment','image/jpeg',0),(2256,0,'2017-02-14 09:37:27','2017-02-14 09:37:27','    	','','','inherit','closed','closed','','img_4580','','','2017-02-14 09:37:27','2017-02-14 09:37:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/IMG_4580-1.jpg',0,'attachment','image/jpeg',0),(2257,0,'2017-02-14 09:41:07','2017-02-14 09:41:07','    	','','','inherit','closed','closed','','img_7390','','','2017-02-14 09:41:07','2017-02-14 09:41:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/IMG_7390-1.jpg',0,'attachment','image/jpeg',0),(2258,0,'2017-02-14 09:41:28','2017-02-14 09:41:28','    	','','','inherit','closed','closed','','family-running-together3','','','2017-02-14 09:41:28','2017-02-14 09:41:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/family-running-together3-1.jpg',0,'attachment','image/jpeg',0),(2259,0,'2017-02-28 08:13:18','2017-02-28 08:13:18','    	','','','inherit','closed','closed','','imovefreely-cmyk-300dpi','','','2017-02-28 08:13:18','2017-02-28 08:13:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/iMoveFreely-CMYK-300dpi-1.jpg',0,'attachment','image/jpeg',0),(2260,0,'2017-02-28 08:13:19','2017-02-28 08:13:19','    	','','','inherit','closed','closed','','imovefreely-transparent-300dpi','','','2017-02-28 08:13:19','2017-02-28 08:13:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/iMoveFreely-Transparent-300dpi-2.png',0,'attachment','image/png',0),(2261,0,'2017-02-28 08:21:28','2017-02-28 08:21:28','    	','','','inherit','closed','closed','','imovefreely-transparent-300dpi-2','','','2017-02-28 08:21:28','2017-02-28 08:21:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/iMoveFreely-Transparent-300dpi-1-1.png',0,'attachment','image/png',0),(2262,0,'2017-02-28 08:22:16','2017-02-28 08:22:16','    	','','','inherit','closed','closed','','imovefreely-transparent-300dpi-3','','','2017-02-28 08:22:16','2017-02-28 08:22:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/iMoveFreely-Transparent-300dpi-2-e1488270154255-1.png',0,'attachment','image/png',0),(2263,0,'2017-03-06 08:51:02','2017-03-06 08:51:02','    	','','','inherit','closed','closed','','imovefreely-blog','','','2017-03-06 08:51:02','2017-03-06 08:51:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/imovefreely-blog-1.png',0,'attachment','image/png',0),(2264,0,'2017-03-06 11:24:41','2017-03-06 11:24:41','    	','','','inherit','closed','closed','','swiss-ball-chest-press_1-1024x820','','','2017-03-06 11:24:41','2017-03-06 11:24:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/swiss-ball-chest-press_1-1024x820-1.jpg',0,'attachment','image/jpeg',0),(2265,0,'2017-03-13 11:21:13','2017-03-13 11:21:13','    	','','','inherit','closed','closed','','img_5917','','','2017-03-13 11:21:13','2017-03-13 11:21:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/IMG_5917-1.jpg',0,'attachment','image/jpeg',0),(2266,0,'2017-03-13 11:42:31','2017-03-13 11:42:31','    	','','','inherit','closed','closed','','shutterstock_520571764','','','2017-03-13 11:42:31','2017-03-13 11:42:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/shutterstock_520571764-1.jpg',0,'attachment','image/jpeg',0),(2267,0,'2017-03-13 11:43:20','2017-03-13 11:43:20','    	','','','inherit','closed','closed','','shutterstock_508393762','','','2017-03-13 11:43:20','2017-03-13 11:43:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/shutterstock_508393762-1.jpg',0,'attachment','image/jpeg',0),(2268,0,'2017-03-13 11:44:16','2017-03-13 11:44:16','    	','','','inherit','closed','closed','','blue-skele-man','','','2017-03-13 11:44:16','2017-03-13 11:44:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/blue-skele-man-1.jpg',0,'attachment','image/jpeg',0),(2269,0,'2017-03-13 11:45:45','2017-03-13 11:45:45','    	','','','inherit','closed','closed','','screen-shot-2017-03-13-at-11-45-20','','','2017-03-13 11:45:45','2017-03-13 11:45:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-13-at-11.45.20-1.png',0,'attachment','image/png',0),(2270,0,'2017-03-13 11:46:39','2017-03-13 11:46:39','    	','','','inherit','closed','closed','','shutterstock_259089836','','','2017-03-13 11:46:39','2017-03-13 11:46:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/shutterstock_259089836-1.jpg',0,'attachment','image/jpeg',0),(2271,0,'2017-03-21 06:58:34','2017-03-21 06:58:34','    	','','','inherit','closed','closed','','screen-shot-2017-03-21-at-06-57-52','','','2017-03-21 06:58:34','2017-03-21 06:58:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-21-at-06.57.52-1.png',0,'attachment','image/png',0),(2273,3,'2016-12-10 07:01:13','2016-12-10 07:01:13','So one of the biggest days of the year for our Biomechanics Coach™ learners is their practical assessment. Even after 5 months of training, the discomfort of being observed for how skilled you are as a practitioner is clear for most learners.\n\nAfter the 5 x 2 day workshops this is their ‘qualification’ that they are ready to do their 12 weeks of case studies.\n\nAs an assessor I perceive their nerves as a good sign because it demonstrates how much they care. The degree of nerves isn\'t always indicative of how skilled they are though!\n\nIn fact often it is those who put the most pressure on themselves that perform the best and can show they understand the system better.\n\nNow when a learner passes it feels great for both of us!\n\nAs an assessor I can see how well the information has been passed over during their training. The learner feels success from being able to demonstrating effectively what they have learned and retained over the period of the training.\n\nBut what about when someone isn\'t quite hitting the expected criteria?\n\nHaving to tell someone they haven\'t quite made it can be emotionally tough for both people involved. For myself, as the assessor, having to tell the learner the didn\'t make it is hard but I am also aware I want to do it without crushing their confidence.\n\nThe learner is obviously going to be disappointed, having to hear the news and knowing they aren\'t quite good enough yet and also then having to go back home and tell loved ones they didn\'t pass.\n\nI find it an interesting thing that we can feel so <i>personally</i> judged by our performance in these situations. For example; I am terrible in exams, I get nervous and I even lose some of the common sense I have because of those nerves, often making dumb mistakes!\n\nWHY?\n\nNo one is going to love you less, no one will think you’re a bad person, no one will stop talking to you!! And yet it can be really quite upsetting cant it?\n\nIt seems that we are seeking approval that we are good enough, that we have achieved something and surpassed where we previously were and demonstrated we have moved into a higher plane of understanding.\n\nAs I said earlier the feelings we have, show that we care about how others see us and how they perceive our ability and our performance. It represents the hard work we have put in and time spent studying and practicing and honing our skills.\n\nAs a tutor, I really feel a huge sense of responsibility when my learners are being assessed. Their performance is based on things the academy has taught them. Either myself or one of the Master Trainers I have trained to deliver the education.\n\nWOW that is a MASSIVE responsibility!!\n\nSo when one of my ‘flock’ doesn’t quite make the grade I really feel it and I also feel responsible for it.\n\nWhat more could I have done to get them ready for this moment? How am I going to ensure they reach the target next time?\n\nNow believe me, I am going to do everything in my power to support them in reaching the standards required and that we expect of our Biomechanics Coaches™.\n\nWhile not unreasonable, the standards we expect are very high and it is one of the things we are passionate about maintaining as we continue to teach these programmes. This is what creates the value, the reputation and therefore the confidence in those who pass through our academy and become qualified Biomechanics Coaches™.\n\nHowever I constantly question how I personally deliver, the methods used, did I do enough as a tutor? have I failed my learners in any way? should I have done more? could I have done more?\n\nThese thoughts all go into my reflective journal and allow me to work on areas for improvement of my own contributions to the learner experience.\n\nThen yesterday I received this email…..\n\n<i>Just a quick email to say a BIG thank you for helping me through the Biomechanics Coach™ modules and assessment today. I have really enjoyed it so far and can\'t wait to get using the system with more confidence and see how people develop.</i>\n\n<i>You have an excellent delivery style which suits the qualification content, you re-re-re-(!) emphasise the H&amp;S considerations and exactly where the Biomechanics Coach™ system fits so that learners really can\'t be mislead. There is plenty of flexibility to meet learner needs, you are easily approachable and highly supportive to everyone attending and considerate to individual situations. A major strength is your coaching style delivery of questioning learners and flipping questions back to the learner, it doesn\'t stop people questioning things but it helps learner led learning. There is plenty of \"stretch and challenge\" through resources and references learners can use from the manuals and you constantly give links to other professionals supporting this further. The practical content and receiving your feedback is invaluable.</i>\n\nBLOWN AWAY!!\n\nThe learner who sent me this email is an assessor and internal quality assurer for another fitness training provider company so her feedback how huge value. Especially after I had to tell someone they didn\'t quite make the grade.\n(If this happens we create an action plan together and the learner simply re-sits for free when we both feel they are ready)\n\nSo if you have been wondering whether the Biomechanics Education academy is for you, rest assure WE as a team will do everything in our power to support YOU in reaching a standard to be proud of!\n\nRegister your interest <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">HERE</a> today!    	','BLOWN AWAY!','','draft','closed','closed','','blown-away','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1437',0,'post','',0),(2274,3,'2016-12-12 06:40:01','2016-12-12 06:40:01','By 5:30am this morning I was out of the house, without brushing my teeth, big coat, walking boots and audiobook playing. My arms swinging as I raised my pulse, rotated and hydrated my pelvis and spine, while learning something new through my headphones.\n\nHaving discovered a ‘health app’ on my phone a few months ago I was horrified to discover it had measured the number of steps I was doing on average daily. Now before you start shouting at the screen I KNOW these apps aren\'t THAT accurate AND I often don\'t have my phone on me while I am taking steps BUT it did give me an impression and let me tell you it wasn\'t a good one.\n\nI pretty much have my phone attached to my hand MOST of the time so I knew it would give me at least a representation of my daily activity.\n\n10,000 is the suggested number for general health right? OK GUESS…..Go on! GUESS….Do you know how many I was doing daily??? C’mon….nope ….less…..closer……ALMOOOOOST!\n\n1,200 Steps on a daily average!!!!\n\nWHAAAAAT!?!?\n\nWow and this was the daily average of a human movement specialist who preaches ..”<i>we should all move more and teach our clients too…blah blah…” </i>\n\nOMG, I was literally horrified! Not only at the lack steps but also the fact I hadn\'t realised just how few I was taking until I saw this health app. BUT do you know what it did for me? It proved something to me AND taught me something at the same time.\n\n1). We are ALL at risk of not moving enough\n\n2). THIS lack of awareness might be what happens to our clients\n\nWe potentially just don\'t realise, or even have time, to consider or acknowledge things like this. My job requires several hours a day in front of a computer and 35k miles sitting in a car annually and so while I KNEW this, I was <i>getting away with it </i>because I regularly do exercises that improve my movement but long term I know this isn\'t enough.\n\nIt is our job, as exercise professionals or movement specialists, to pass on ideas (and also measure) how we can improve the way our clients move AND also how much AND how often. It has to relate to the individuals lifestyle because I am quite sure a 5:30am morning walk just wont work for some people!\n\nNo one can get away with simply doing an hour or so of exercise a day then expect this to be enough to keep a good blood flow and our intrinsic tissues and structures healthy!\n\nSo one of my New Years Resolution’s started 3 weeks ago….walk for 30-60 minutes every day.  My average step count on my health app is now up to 8,000-9,000 a day and I FEEL so much better. Not only physically but also mentally it sets me up for the day AND I get an hour or so of education from my audio book every morning too! BONUS!\n\nNow it takes some planning and I don\'t even have kids to feed and get to school BUT we must all find ways to do things like this for ourselves in our own circumstances AND also for our clients.\n\nThis needs to take a priority if we are to really have healthy pelvic and spine biomechanics, hydrated discs, joints and soft tissue.\n\nSo which New Years Resolution are you starting early??\n\nLearn ways to assess movement on our Pelvic &amp; Spine Biomechanics workshops\nBook both before Dec 20th &amp; gain a FREE Low Back Health workshop!\n\n<a href=\"https://www.biomechanicseducation.com/workshop/november-special/\">HERE</a>    	','Do You Know How Many....?','','draft','closed','closed','','do-you-know-how-many','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1440',0,'post','',0),(2275,3,'2016-12-14 08:02:28','2016-12-14 08:02:28','Ok so you qualified but....\n\n<b>Do YOU Know Enough..?</b>\n\nSo many of us have found ourselves attending more and more training to try and know as much as possible to help all of our clients to the best of our ability, right??\n\nYet we are still left feeling like we don\'t know enough or maybe we still don\'t have all the answers.\n\nMaybe you\'re just fed up with taking course after course and you just want someone to talk to and maybe refer your clients to?\n\nWhile more and more of us are starting to work together with other professionals, this style of practice should be how we are taught for the best duty of care we can offer. Here are 4 tips on how it could be done...\n\n<b>No 1. Attempt To Open Up Communication With Other Professionals.</b>\n\nThis very simple concept may feel alien to some out there BUT we shouldn\'t feel that we should try and know everything to help our clients. We should get REALLY good at the skills we possess and feel confident to refer out to someone else when we do not find the answer or feel another opinion is required.\n\nTHIS IS OUR DUTY OF CARE..\n\n…and demonstrates our commitment to it. With the clients permission we should share our view on their physicality to best advise them on how to improve their movement ability.\n(Don\'t forget you will need their permission to swap and discuss their personal details with another professional).\n\nSo rather than simply suggesting they go see ‘<i>a therapist</i>’ or someone else, actually refer them to someone you know who has different, but complementary, skills to yours. Build a relationship with practitioners you trust, who are open minded and offer you their thoughts and opinion. Getting their ideas about the issue and discussing their thoughts and yours combined allows you both to come to a joint conclusion of best practice for this individual. This is SO powerful and just makes sense!\n\nThis way YOU learn, THEY learn, the client learns AND neither professional has to worry about doing it alone, while the client gets to experience truly outstanding service.\n\nA blend of minds, experience and skills is surely better than one, right?\n\nForm a working relationship with this professional, and others, to obtain not only more information but referrals FROM them too!! Commercially this is better for you and it is a really confident professional who refers clients away!\n\nThis way each of you can focus on becoming the best you can be at YOUR skill set and service, accessing professional discussion with your ‘partners’ for added confidence in the service/s you provide.\n\nHow many practitioners do you think would turn you away if you approached them and said..\n\n<i>“I want to send my clients to you, are you interested?”</i>\n\nObviously find someone who is willing and open to reciprocate and that you can build trust with. Maybe book yourself appointments with practitioners in your area, for your own interest and based upon how you feel about the way they manage you, approach those that you felt offered a quality, knowledgeable service.\n\n<b>No 2. Get REALLY REALLY Good At Your Skill Set</b>\n\nNow you can focus on being the best at what YOU do. We are all turning into hybrids and this is a good thing to allow us to understand each style of practice;\n\nASSESS - MASSAGE- EXERCISE - TREAT\n\nASSESS - TREAT - EXERCISE - MASSAGE\n\nASSESS - EXERCISE - TREAT - MASSAGE\n\nASSESS - MASSAGE - TREAT - EXERCISE\n\nASSESS - TREAT - MASSAGE - EXERCISE\n\nASSESS - EXERCISE - MASSAGE - TREAT\n\nYou get the idea....\n\nBUT we can’t be great at everything and doing all of this during one session might be a push since the expected time slot is usually an hour.\nBy the way this doesn’t have to be how you work. Many assume the 1hr session protocol just because everyone else does but you might decide to work based on 90 min sessions. So long as this is clear up front and it could be your USP (unique selling point)\n\nAnyway if you do cram all of this into one hour or session then you may well be pushed for doing each really well - I know I would in the 1hr time frame. This could be an issue if you know your client requires all of these. So create a ‘flow’ with your team where by one is the specialist for one area, ie assessment. They then refer to the trainer about which exercises would be good and which can then be based on the assessment results. The exercise professional then refers them to the manual therapist for the hands on part. Hey then refer on to the clinician should an injury or problem arise. The clinician then refers back to the assessment professional for the clients journey back into exercise.  Maybe they need a foot specialist or a sports specific coach!?\n\nHaving massage skills doesn’t mean you have to use them, knowing about foot function and orthotics doesn\'t mean you prescribe them but this knowledge allows you to understand when to refer for this service AND how to communicate with the other professional.\n\nNow you may decide you want to offer 2 or even 3 of these services, but decide which part of the services you are able to offer within your practice appropriately in your scheduling and then refer the rest. BUT do communicate where possible or build a team around you.\n\n<b>No 3. Stay Open Minded - Things Change!!</b>\n\nThe idea that you qualify and TADAAAAH!…you’re done with training is of course out of date. Hence the plethora of CPD’s we are consistently being informed about.\n\nTHINGS CHANGE!\n\nNew ideas or research develops and new ways of doing things become available. So we need to decide when we re-train, sample the new idea and refer or amend our commercial offering. Either way remember you can only do so much really well and also we should find professionals willing to stay up to date too. We should challenge each other AND what we are taught by education providers ALL of the time! Professional open discussion should be inclusive and positive even where challenges might be made about a certain method. To have technical discussions about what is right for the individual, based in the data or evidence available and all thoughts laid out is really quite exciting and fascinating aside for it being BEST DUTY OF CARE for the client.\n\nKeep asking WHY until you understand at depth WHY that idea is better or a great addition or something to consider for that particular client for example.\n\n<b>No 4. Find Trusted Organisations Who Offer Networking Opportunities. </b>\n\nThere are some fantastic organisations out there that have set up as a support and networking system for professionals.\nThe Intrinsic Biomechanics Association (IBA) which has a monthly subscription fee offers at present 4 free workshops a year, branded clothing, £150 credit for education with the academy, discounted events, mentoring and networking opportunities for fitness professionals interested in both the study of human movement/exercise and also looking for professionals to work alongside.\n\nThe Sports Therapy Association (STA) founded by Gary Benson is a superbly run resource for manual therapists. Gary is really passionate about offering genuine support. For a very small annual fee he works very hard to give his members access to information and CPD\'s through various mediums along with his regional ambassador team.\nWe delivered a session at the STA annual conference this year inside the Therapy Expo at the NEC and the line up Gary had organised was fantastic (of course lol).\n\nGary and I are both very passionate about supporting YOUR success and confidence. We are enabling our members to meet each other and cross refer to each other allowing us all to offer great DUTY OF CARE to our clients across these 2 amazing and merging industries.\n\nTo find out more or to join the <a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\">IBA CLICK HERE </a>\n\nTo find out more or to join the <a href=\"http://www.sportstherapyassociation.co.uk/site/\">STA CLICK HERE </a>    	','TADAAAAH!','','draft','closed','closed','','tadaaaah','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1444',0,'post','',0),(2276,3,'2016-12-17 08:19:32','2016-12-17 08:19:32','<b>Change How You Feel In A Moment </b>\n\nHaving become a massive audio book fan to make use of the 35k miles I have driven over the last 12 months, I have literally filled my phone with all sorts of fabulous books FILLED with information! As a ‘non academic’ this resource is SO exciting for me and helps me to learn quickly and easily during a time that would normally be wasted. it amazes me that I can get through a book a week some times. With all sorts of subjects from business and marketing to emotional intelligence and communication skills. Me and my buddy and colleague, Chris Wright of Level 10 Living, are always swapping audio book ideas.\n\nHere’s one I would like to share with YOU (for starters)…\n\nRecently I got engrossed in the well known book by Stephen R Covey, ‘<i>7 Habits of Highly Successful People’ </i>and<i> </i>I heard the term ‘<i>Paradigm Shifting’</i>. This term is something we have used in our academy from the very beginning of our course development and design. Covey gives a fantastic example of how to understand this term.\n\n<b>But first what is a ‘Paradigm?’</b>\n\nThe internet says;\n\n<i>A typical example or pattern of something; a pattern or model.</i>\n\n<i>\"society\'s paradigm of the ‘ideal woman’”</i>\n<i>A world view underlying the theories and methodology of a particular scientific subject.</i>\n\n<i>\"the discovery of universal gravitation became the paradigm of successful science”</i>\nIn simple terms I guess it is <i>how you see things in your head.</i>\n\nThis idea would suggest it to be a great way to influence someone else behaviour by offering a new way of seeing a situation.\n\nThe example scenario Covey experienced and explained in his book went something like this;\n\nA man with his 2 kids who were being unruly, running around and disturbing people, while he sat on a bench next to Covey.\n\nCovey was trying to read his paper and felt annoyed by these ‘out of control’ kids thinking to himself.. <i>“why cant he control his kids?”</i>\n\nEventually Covey said to the man..<i>“excuse me but aren\'t your kids a little out of control?”</i>\n\nThe man replies, looking somewhat deflated.. <i>“yes yes I guess I should but well we just left the hospital and their mother just died an hour ago and I guess they don\'t know yet how to deal with it and I guess me too”</i>\n\nCovey’s paradigm shifted in a moment once he heard the plight of this poor family and his annoyance shifted to sympathy.\n\nCovey encourages US to think about how OUR feelings shifted as WE heard or read the story here.\n\nIt is evidence of how ones own perception of a situation can shift instantly the moment we realise the other view point.\n\nSo can we give more detail about how WE view a situation to enable better understanding of the circumstances surrounding it or at least our view of it?\n\nShould we be asking more questions prior to making some kind of judgement?\n\nMaybe we should open our thoughts to differing view points before we make a decision?\n\nImagine your client saying they forgot to do their exercise home work or couldn’t find time to make the healthy dinner we suggested.\n\nHOW ANNOYING!\n\nYou had created a beautiful exercise sheet and paid to get it printed at the post office. Also you had taken the time to explain each one in detail and how to perform them for better movement ability ready for their next session with you. You had spent a good hour last night typing up some really simple healthy recipes for your client to make for the whole family that will contribute to their weight loss goals.\n\nYOU would feel frustrated by the fact they turned up for they next session saying they didn\'t do anything with this wouldn\'t you!?!?\n\nIt REALLY annoys you because it will make YOU look bad as their trainer if your client is not succeeding. GGGRRRRRRR\n\nBUT now consider how you would perceive the situation if you heard this;\n\nThey are struggling to think of anything other than their really sick parent who lives 100 miles away and they had to drive to care for them after they got a call after work that their parent had fallen and couldn\'t get up. So with the kids in the back of the car they had to drive straight there from the school pick up. This also meant they were left wth no time to do their exercises and to shop and create the fantastical healthy (and easy to do) meal you had suggested. Hence the fast food meal they had ended up buying instead.\n\nParadigm shift right?\n\nWe humans are generally empathetic by nature.\n\nAnother example relevant for our industry is that there are so many articles and videos out there that are by people who are not demonstrating an inclusive view point considering ALL of its readers or viewers. What I mean is those articles that suggest that everyone should do one thing, for example;\n\n<i> • squat with toes pointing forward</i>\n\n<i> • women should do more cardio</i>\n\n<i> • everyone should eat paleo</i>\n\n<i> • dairy is bad for you </i>\n\n<i> • orthotics are bad</i>\n\n<i> • stretching is bad for you</i>\n\n<i> • we should all learn to use foam rollers</i>\n\nNone of these statements are considering every person who may squat, like dairy, need orthotics etc.\n\nIt is often a single view point that is offered into our industry about methods of exercise prescription, movement correction, risk reduction or diet etc. The author has usually had an experience that created THEIR belief or idea and maybe this happened to most of the people they knew. So they wanted to tell others in an attempt to help.\n\nYet we are all different!\n\nSome people can eat dairy, some like paleo, some do and some don\'t respond to stretching.\n\nMaybe we should be encouraged to challenge the ideas we hear more, in a positive way of course!\n\nThis would allow us to understand better the thinking behind an idea or view point we hear someone else describe. WE should give clarity on our ideas along with the WHYs.\n\nUltimately this would also allow us, our audience, clients and peers to appreciate better WHY WE feel the way WE do or WHY WE think this way about a certain situation.\n\nSo rather than simply following the crowd maybe we should learn about the thinking behind an idea, method or trend so we can consider logically our own view as to what is right for US or each of our clients - individually.\n\nNo method works for all, ALWAYS case by case or ‘it depends\' on the individual SHOULD always be considered.\n\nDon’t you think?\n\nDo you want to experience an excitingly inclusive learning environment?\n\nWould you like to learn how to positively challenge concepts?\n\nAre you looking for an open minded methodology of exercise prescription?\n\n<a href=\"https://www.biomechanicseducation.com/contact-us/\">CONTACT US HERE</a>\n\nReference; Stephen R Covey, ‘<i>7 Habits of Highly Successful People’</i>    	','Paradigm Shift','','draft','closed','closed','','paradigm-shift','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1448',0,'post','',0),(2277,3,'2016-12-19 09:06:11','2016-12-19 09:06:11','People ask me all the time about insurance cover, now I am not a legal person however I do have insurance policies.\n\nThis information is based upon my very limited knowledge and experience of insurance companies.\n\nSome insurance policies are compulsory, some are a very good idea and others are a waste of time in my opinion.\n\nNow generally we can choose who we take out insurance with for our various ‘potential’ problems, like house insurance incase it burns down or car insurance in case we have an accident.\n\nThis is the same for professional cover in case our client/patient has an accident or problem under our care or guidance for example. THIS is the cover I am going to discuss here.\n\nMy advice to anyone who is wondering about their cover is to ask yourself;\n\nIs it right?\n\nIs it enough?\n\nIs it legal?\n\nThen how do you KNOW this?\n\nThe insurance policy you take out is a legally binding contract between YOU &amp; the INSURER. Not me, not your colleague or mate who says what they have, not even the lady receptionist you chatted to on the phone, just YOU &amp; the INSURER.\n\nWhat this means is that image worst case scenario and an accident happens for example and you need to access that cover…\n\n1). The insurance company will look for a reason NOT TO PAY OUT\n\n2). In a court of law the legally binding contract is the T&amp;C’s YOU agreed with the insurer.\n\n3). The person who suggested which cover to take is not responsible at that point.\n\n4). Neither is the receptionist of the insurance company who told you stuff over the phone.\n\nNow what am I suggesting?\n\nWell YOU are the person responsible for arranging the most appropriate cover and contract with your insurer. If you don\'t like the one they have offered you, go somewhere else. The actual figure you’re covered for SOUNDS impressive at £5 million or £10 million BUT this is not the biggest deal. READ the terms and conditions of what the insurance actually covers YOU FOR.\n\nFor example;\n\nDoes it cover you for being hands on?\n\nDoes it cover you if the client falls off a step in your gym?\n\nDoes it cover every professional skill set you have?\n\nAre YOUR professional skills listed in the T&amp;C’s?\n\nIf you want to know the answer to these questions YOU ask YOUR INSURER then ask if they will write them into the T&amp;C’s. READ IT &amp; DON\'T PAY until YOU\'RE HAPPY. The clauses may already be in there in some form but written a certain way to include the things you need.\n\nYour insurer SHOULD be able to explain this if not find a legal person who can.\n\nIf they are a decent company they should take the time to advise you and create a T&amp;C’s that correlates to YOUR skill set.\n\nWe sat down with Graybrook Insurance Brokers Ltd to discuss the very unique Biomechanics Coaching™ skills. These skills give personal trainers hands on techniques which is something a large group of our learners didn\'t necessarily have in their skill set previously as PT’s and exercise professionals. We wanted to make sure they were covered for the skills we were teaching them.\n\nGraybrook recognised that while this was the case, the clients were in fact safer in our hands than a PT or exercise professional without these assessment skills. So they wrote the title Biomechanics Coach™ INTO the contract T&amp;C’s for us AND even gave us a premium rate that covers ALL their skills sets including manual therapy and group exercise.\n\nSo while we have done SOME of the work for these professionals every single insurance contact is individual and still between YOU and the INSURER.\n\nNow although these types of claims are rare, the right insurance cover is vital to cover any ‘potential’ problem or risk. They offer comfort that your assets are safe and they demonstrate good practice.\n\nThere are other great insurance companies out there, Balens Ltd for example, who are also very accommodating I am told. But do your research for your skill sets.\n\nSo my final piece of advice is this;\n\n<b><i>READ THE CONTRACT BEFORE YOU SIGN</i></b>\n\nI KNOW I KNOW …..the small print\n\nBUT you never know when you might need it and you will need it to be right!    	','Is It Legal?','','draft','closed','closed','','is-it-legal','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1451',0,'post','',0),(2278,3,'2016-12-21 07:29:55','2016-12-21 07:29:55','Approval..\n\nWe all seek it and yet what does it matter what other people think?\n\nFor some reason as a race we have a desire to fit in and be accepted by those around us. If you watch programmes that involve singing or dancing competitions on TV its ALL about acceptance and being voted in. Does this mean we feel liked? Popular? Worthy?\n\nDoes this differ when we are seeking new clients?\n\nAre we not simply in competition with others to be chosen?\n\nPick me!\n\nPick me!\n\nWhy pick me?\n\nBecause I will make you feel valuable, liked, chosen, popular, accepted!!\n\nYes it is like a continuous cycle of being liked, feeling valued and chosen, isn\'t it.\n\nWhat a fascinating thought.\n\nAre the singing show winners the best singers? Not necessarily, but they stand out or catch your heart strings for some reason. They become ‘popular’ for a reason that is generally that they are ‘liked’ and therefore get picked or chosen.\n\nHow do you demonstrate that you are ‘the one’?\n\nHow do you stand out from the crowd?\n\nHow will you become the clients choice?\n\nWell of course it is a bit of a popularity contest.\n\nSo ask yourself what makes YOU pick someone when it comes to choosing your singing competition winner, or more to the point, how do you pick someone when you’re buying services?\n\nConsider that really hard for a moment…\n\nDo you simply pick the cheapest?\n\nDo you pick the nearest?\n\nDo you pick the one with certain certificates?\n\nNone of these guarantee the best service do they?\n\nAnd none guarantee they will make YOU feel valued or accepted.\n\n(BTW How many times has the client asked to show them your certificates?)\n\nYou might read an \'advisor of trips\' for the reviews of best services for your holiday destination! This will be based one service and how well \'looked after\' they were.\n\nChances are you pick the service provider your friend or colleague or the reviews recommend because “<i>they made me feel great and they look after you with excellent service</i>\"\n\nSo what is the best service?\n\nWell I believe going the extra mile is the part we are talking about here.\n\nThe ‘service’ part of being an exercise professional isn\'t necessarily the exercises or the dietary advice specifically because there are millions of people doing that and clients would simply pick the nearest and cheapest.\n\nIt’s the WAY you do it, the WAY you make them feel at each session, and afterwards.\n\nA great service means YOU make your client feel important, valuable, successful and liked or chosen! (Along with the results of course but thats a given if they are paying for your service right?!)\n\nWe empower our clients to achieve things themselves by giving them the right information or details. We inform them fully so they know exactly what to expect and we deliver on our promise every single time.\n\nDo YOU think about how someone makes YOU feel when you are in their company or buy their services?\n\nWhat is it that THEY do to makes YOU feel that way?\n\nMaybe they smile a lot, give eye contact, maybe gently touch your elbow or shoulder as they listen to your every word. Maybe they make you feel important by simply being in your company showing understand of your situation.\n\nDo you want to know how YOU can stand out from the crowd in your profession?\n\nDo YOU want US to PICK YOU to join our community/academy?\n\nDo you want to know HOW to get chosen or picked by ALL the clients in your area?\n\n<a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\">Click here and PICK ME!!</a>    	','PICK ME! (AGAIN by request)','','draft','closed','closed','','pick-me-again-by-request','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1455',0,'post','',0),(2279,3,'2016-12-24 14:22:47','2016-12-24 14:22:47','Ok it IS xmas and everyone feels that they have earned the right to sit on their bums for several days, including YOU, am I right?\n\nWell, ok ok ok some of us might go walking or to the gyms that are open at some point, BUT xmas day is pretty much SIT ON YOUR BUM ALL DAY, DAY don’t you agree?\n\nSo this Juicemail is NOT going to tell you NOT to sit on your bum.\n\nOh no!\n\nI myself will be doing this for at least a full day or maybe even 2.\n\n<b>A Rubbish Secret</b>\n\nHowever let me tell you a really rubbish secret…..even sitting on my bum for a day I KNOW how to keep my pelvis moving freely!!\n\nThe question is DO YOU???\n\nIn fact another question is DO YOUR CLIENTS??\n\nSince they are the people who pay us to get them moving well, pain free and with reduced risk of injury, right?\n\nNow I KNOW one of your biggest problems is not only getting them moving well in the first place but also KEEPING them moving well. So the last thing you want is for all of that hard work to be undone over xmas, isn\'t it?\n\nThe practical skills a PT like YOU can learn in our academy will enable you to educate your clients how they can maintain a freely moving pelvis over the xmas break. This is even possible without getting up from their sofa!\n\nSo my xmas gift to all of YOU is a sample of one for you to use yourselves AND also to pass onto your clients right now or maybe when they came back to you a couple of pounds heavier AND feeling a little bit stiffer…\n\n<b>The 4 Sign Pelvic Function Exercise</b>\n\nSitting on your sofa, cross your right ankle over your left knee, ensure your party hat remains in place.\n\nMake sure your ankle bone is on the outside of the thigh and you’re as relaxed as possible. Maybe even with a mince pie in your left hand.\n\nNow put the wine glass thats in your right hand down on the table and place your right hand on the inside of your right knee. (Don’t worry this will only take 1 minute 20 seconds then you can pick up your wine glass again)\n\nNow while rotating your right knee/leg into your right hand so that your right ankle is also rotating down into the outside of your thigh - understand this movement should be coming from the hip - you can still talk part in the games of charades going on.\n\nIf you are doing this correctly you will be adding pressure with your hand to keep the knee from lifting - so no movement actually occurs. This creates a muscle energy technique.\n\nThis particular one requires ONLY 20% effort which wont feel like a lot, if anything at all - don’t worry this is correct and is also why this technique is so fantastic for doing while you are sitting on your bum next to your sleeping grandma!\n\n<b>How It Is Done</b>\n\nNow hold this with 20% effort as a static contraction for 20 seconds.\n\nRepeat 4 times (maybe even in between slurps of wine)\n\nThen do the same on the left leg.\n\nIf you do this periodically over the days that you are glued to the sofa it should contribute to maintaining at least some of the function of your pelvis.\n\nHigh doses of chocolate and xmas pudding have not been shown to reduce the effects of this pelvic function exercise…\n\n<b>Final Word</b>\n\nPlease do your 4 Sign, enjoy yourselves everyone and <i>KEEP MOVING FREELY!</i>!\n\nWant to LEARN MORE about Pelvic Biomechanics? <a href=\"http://%20https://biomechanicseducation.clickfunnels.com/pelvis-module\">CLICK HERE</a>','Sitting On Your Bum This Xmas?','','draft','closed','closed','','sitting-on-your-bum-this-xmas','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1458',0,'post','',0),(2280,3,'2017-01-09 10:02:26','2017-01-09 10:02:26','<h2><strong>Health V\'s Fitness</strong></h2>\n<span style=\"font-weight: 400;\">Previously I have written about the book; ‘Body by Science’ written by Doug McGuff &amp; John Little, for its research and their approach to the point they were making.</span>\n\n&nbsp;\n\nMore recently I read another book and was reminded of a point they make about health and fitness being quite different goals.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">‘Intervention’ by Dan John, is, in my opinion, an investment for any strength training fan. In this book his methods based on 3 decades of experience as a Strength &amp; Conditioning Coach and he comes across as very honest about his failings, which also enhanced his coaching. This is something I am familiar with, as I am sure you are!</span>\n\n&nbsp;\n\n<b>When you get it wrong, you learn!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">John explains, with his reasoning, the differences between health and fitness and that many clients do not realise which of these their goal is. This then interferes with the PT’s programming since the client asks for what they THINK their goal is, as opposed to what they’re really trying to achieve.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">John’s view is that </span><em><b>health</b><span style=\"font-weight: 400;\"> is the homeostasis of an organism and </span><b>fitness</b></em><span style=\"font-weight: 400;\"><em> is simply the ability to perform a task</em>.</span>\n\n&nbsp;\n<h3><b>McGuff’s definitions:</b></h3>\n<em><b>HEALTH</b><span style=\"font-weight: 400;\">: Is a physiological state in which there is an absence of disease or pathology and that maintains the necessary biological balance between the catabolic and anabolic states.</span></em>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34945 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/dan-gold-4_jhDO54BYg-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n&nbsp;\n\n<em><b>FITNESS</b><span style=\"font-weight: 400;\">: The bodily state of being physiologically capable of handling challenges that exist above the resting threshold.</span></em>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34941 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/edgar-chaparro-sHfo3WOgGTU-unsplash-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So the common theme here suggests that your </span><i><span style=\"font-weight: 400;\">health </span></i><span style=\"font-weight: 400;\">and your </span><i><span style=\"font-weight: 400;\">fitness </span></i><span style=\"font-weight: 400;\">are not the same thing. But what is more important to understand, is how they can (and often do) impact upon each other, in both a positive way but also negatively.</span>\n\n&nbsp;\n<h3><b>The Problem</b></h3>\n<b>Example one;</b>\n\n<span style=\"font-weight: 400;\">Training for a marathon demands hours and hours of repetitious high impact activity on hard surfaces for long periods of time. Some would say this is not necessarily the best thing for our joints. Yet many people really enjoy that challenge and feel great for achieving the distance/time they set out to do. So here, their ‘fitness’ goal outweighed the </span><i><span style=\"font-weight: 400;\">health</span></i><span style=\"font-weight: 400;\"> implication of wear and tear on their joints.</span>\n\n&nbsp;\n\n<b>Example two;</b>\n\n<span style=\"font-weight: 400;\">Preparing for a weightlifting competition requires heavy lifting and loading joints beyond what they may have done previously. Again, this is likely to put additional stress on the joints which some would deem a high risk for the body; yet it would bring the individual so much joy should they get to the desired weight they wished to snatch. Therefore the training goal is ‘fit’ for the task rather than the safest for the joints. Your health takes the step back.</span>\n\n&nbsp;\n\n<b>Example three;</b>\n\n<span style=\"font-weight: 400;\">Weight loss generally put, means eating less calories than the body is used to, in order for your body to use it’s own energy supplies to keep your energy going throughout the day. So for many people, losing weight could be a ‘health’ related goal, for example to reduce the risk of diabetes. However, if they also started running to increase calorie expenditure this could start to tip their journey into a ‘fitness’ goal, for example if they decided to enter a race. At this point we would then need to consider the implications of the added calorie expenditure which actually requires MORE food and therefore a higher food intake, just to keep you moving throughout the day, even with weight loss as the goal.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34942 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/jonathan-borba-lrQPTQs7nQQ-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finding a balance of homeostasis, while maintain optimal health is now necessarily that easy when you think about it..</span>\n\n&nbsp;\n\n<b>The body is a MASTER OF COMPENSATION. </b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once the body has adapted, something will change either for better or worse. How you gauge better or worse is an interesting thought when you consider the goal. </span>\n\n&nbsp;\n\n<em><span style=\"font-weight: 400;\">“I completed my first marathon!….. but my knees are shot and it hurts to walk upstairs.”</span></em>\n\n&nbsp;\n\n<em><span style=\"font-weight: 400;\">“I lost 2 stone!….. but I feel shattered ALL the time.”</span></em>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also, simply being ‘healthy’ may not have the same excitement of a race or competition and therefore it might bring less of a sense of ‘achievement’ as you may never reach a point of satisfaction or completion to the goal set. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I am not suggesting it is impossible, but as PT’s, exercise and \'fitness\' professionals, it is essential that we have the skills to help our clients </span><i><span style=\"font-weight: 400;\">realistically</span></i><span style=\"font-weight: 400;\">, while keeping their goal in mind. Part of that may be keeping them on track and educating them on the implications of changing their goal as they progress, which is highly likely in many cases. Gaining an understanding of their behaviours which they wish to change and using motivational interviewing and a person centred approach with your clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should have the skills to best prepare our clients for movement, be able to suggest general advice on eating well, ensure our clients exercise efficiently, wisely and safely in order to obtain success in reaching their desired goal but the emotional drivers MUST come from within the client.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34938 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/luke-chesser-rCOWMC8qf8A-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n<h3><b>Could We Go As Far As To Say \'Exercise\' Is Bad For You?</b></h3>\n<span style=\"font-weight: 400;\">Well that depends on the alternative!?</span>\n\nAlso \'exercise\' is just one type of <strong>movement </strong>\n\n<span style=\"font-weight: 400;\">Sedentary is </span><span style=\"font-weight: 400;\">not good.</span>\n\n<span style=\"font-weight: 400;\">But ultimately movement in general is good, if its consistent, daily and regular</span>\n\n<span style=\"font-weight: 400;\">As is consuming the right food, of course</span>\n\n<span style=\"font-weight: 400;\">I think you understand where I am coming from, right?</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34558 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/12/IMG_1564-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n<h3><b>So What Do We Do?</b></h3>\n<span style=\"font-weight: 400;\">Let’s clarify the true desire of the client from the beginning by asking questions that will give more clarity on what their start point and end goal REALLY are, to avoid any assumptions we may make. We should use our soft skills to learn the core of their emotional drivers by asking open questions, ensuring we affirm and reflect the positive language they use to avoid them sabotaging their own success and always summarising back what you understand their goal/s to be.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can also educate the client on risks, or possible outcomes of how they can achieve their goal, and the differences between health and fitness so they recognise the importance of moderation and appropriate adaption.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Most importantly, and one of the things Dan John also discusses over and over again, is the importance of assessment and repetition of them REGULARLY! Every 6 weeks at least.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><em>“If you ain’t assessing, you’re guessing”,</em> John states.</span>\n\n&nbsp;\n\n<img class=\" wp-image-34940 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/jennifer-burk-ECXB0YAZ_zU-unsplash-200x300.jpg\" alt=\"\" width=\"326\" height=\"489\" />\n<h3><b>What Kind Of Assessment/s Do You Do Now?</b></h3>\nParQ?\n\n<span style=\"font-weight: 400;\">Weight/Height?</span>\n\n<span style=\"font-weight: 400;\">Waist/Height?</span>\n\n<span style=\"font-weight: 400;\">Sit &amp; Reach?</span>\n\n<span style=\"font-weight: 400;\">Body Fat?</span>\n\n<span style=\"font-weight: 400;\">1 rep max?</span>\n\n<span style=\"font-weight: 400;\">VO2 max test?</span>\n\n<span style=\"font-weight: 400;\">Lifestyle Q&amp;A?</span>\n\n<span style=\"font-weight: 400;\">Food diary?</span>\n\n<span style=\"font-weight: 400;\">Functional movement screens?</span>\n\n<span style=\"font-weight: 400;\">Video analysis?</span>\n\nBiomechanics assessment?\n\nPsychometric testing?\n\nRoland Morris\'s pain questionnaire?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How valid do you feel each of these test are, in relation to your clients start point and end goal? Are they easily replicable?</span>\n\n&nbsp;\n\nDo you feel you are adequately equipped to assess your clients start point?\n\n&nbsp;\n\nCan you regularly and easily re-assess and monitor their progress objectively? critically?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Assessment and reassessment is vital in demonstrating of both progression and regression to allow you and the client to adapt what is being done whether it be diet, preparation for movement, exercise, number of hrs sleep, routine, recovery, lifestyle factors, psychology and so on.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-29666 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-28-at-07.31.40-1-300x236.png\" alt=\"\" width=\"300\" height=\"236\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Without a clear training goal, which is likely to be either a health OR a fitness goal, and without the ability to assess and monitor we lose \'specificity\' in our planning. We need to be able to celebrate achievement by demonstrating progress throughout with appropriate assessment tools!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">And remember - One size does not fit all, its always case by case. What may work for 1 client could be completely different to a new client, with every client bringing new goals and challenges.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How exciting it is that we are all so different - don’t you think?</span>\n\n&nbsp;\n\nMove Freely,\n\nRachel.\n\n<hr />\n\n<h1 style=\"text-align: center;\"><b>Would You Like To Be Able To Assess Your Clients Biomechanics? </b><b><a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics-2/\">CLICK HERE</a> To Find Out How.</b></h1>\n&nbsp;\n\n<img class=\"size-medium wp-image-32556 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/IMG_1591-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />','Can Being Fit Stop You Being Healthy?','','draft','closed','closed','','can-being-fit-stop-you-being-healthy','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1467',0,'post','',0),(2283,3,'2017-01-17 16:02:18','2017-01-17 16:02:18','<h3>How to Alleviate Back Pain: A Guide for Rugby Players</h3>\r\nBack pain is a widespread issue, affecting up to 80% of people at some point in their lives, including rugby players. However, traditional diagnostic methods often fall short, with accuracy rates as low as 15-20%. This underscores the need for a new approach to managing back pain.\r\n<h3>Long term back pain</h3>\r\nLong-term back pain can lead to further complications as the body compensates for the injury, making diagnosis even more challenging. Rather than merely addressing the symptoms, focusing on the mechanical causes of back pain has shown promising results.\r\n<h3>Can You Achieve Better Recovery Rates By Looking At The Mechanical Causes?</h3>\r\nBiomechanics Coaches™ advocate for this approach, which has demonstrated significant improvements in functional capacity compared to traditional treatments. For rugby players, who are prone to back injuries, this method offers a proactive way to manage and prevent pain.\r\n<h3>How Rugby Players Can Actually Help Their Own Back Pain</h3>\r\nThis intrinsic biomechanical approach is rapidly establishing itself as a much more effective method of treating back pain, especially for rugby players. Furthermore, the most interesting aspect of this approach is that players can be shown how to look after themselves. This reduces the risk of them becoming reliant upon a particular therapist or doctor and, significantly, their compliance with exercise programmes is higher too.\r\n\r\nOf course, no single method can be the panacea of all ills, but we are finding that once the mechanical causes are addressed, the pain can often subside without treatment to the ‘injury’, whatever it might be. Sometimes treatment is also required, although patients find that, once they have committed to an exercise programme that addresses the causes of pain, they are more able to manage the problem themselves. Then, should local treatment still be necessary, it is more likely to be successful, as the mechanical causes are no longer present.\r\n<h3>The 4-sign test</h3>\r\n<span data-contrast=\"auto\">The 4-sign test is a valuable tool for assessing back health. By measuring the height difference between crossed knees while seated, players can identify asymmetry that may indicate muscular tightness or spasms contributing to back pain.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Here are the steps of the 4-sign test:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sit on a chair or stool and cross one ankle over the opposite knee.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Relax the crossed knee down to a comfortable position.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Measure the height difference of the crossed knee to the grounded knee by running an imaginary line through the grounded knee, parallel to the floor, and up to your crossed knee. Your knee should be only 2-3” higher than this line.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<img class=\"aligncenter wp-image-1479\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.57.16-1024x576.png\" alt=\"Screen Shot 2017-01-13 at 10.57.16\" width=\"650\" height=\"366\" />\r\n\r\n<span class=\"TextRun SCXW147249764 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW147249764 BCX8\">4. Repeat the process with the other leg and compare the height difference between the two sides. Symmetry between the two sides </span><span class=\"NormalTextRun SCXW147249764 BCX8\">indicates</span> <span class=\"NormalTextRun SCXW147249764 BCX8\">a healthy</span><span class=\"NormalTextRun SCXW147249764 BCX8\"> range of movement, while asymmetry may </span><span class=\"NormalTextRun SCXW147249764 BCX8\">indicate</span><span class=\"NormalTextRun SCXW147249764 BCX8\"> tightness or spasm in the hip muscle.</span></span><span class=\"EOP SCXW147249764 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-1480\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.56.55-1024x577.png\" alt=\"Screen Shot 2017-01-13 at 10.56.55\" width=\"650\" height=\"367\" />\r\n\r\n<span class=\"TextRun SCXW203353283 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW203353283 BCX8\">Performing the 4-sign exercise can help alleviate tension in the pelvis, relieving pressure on the back and related structures. Consistency is key, and gradual progress should be expected over time.</span></span><span class=\"EOP SCXW203353283 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Conclusion</h3>\r\n<span data-contrast=\"auto\">Incorporating the 4-sign exercise into warm-up and cool-down routines can enhance performance on the field while reducing the risk of injury.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">By adopting a proactive approach to back pain management and focusing on mechanical causes, rugby players can enjoy greater comfort and performance on and off the field.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">[Download the 4-Sign Release </span><a href=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/01/4signtestexercisepdf_2016.pdf\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\">] to start implementing this effective strategy today.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<a href=\"https://www.youtube.com/watch?v=_Lkur9ZcNXw&amp;t=6s\"><span data-contrast=\"none\">4 Sign Screen &amp; Exercise (youtube.com)</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','How To Reduce Your Own Back Pain: The Rugby Edition','','publish','closed','closed','','how-to-reduce-back-pain-rugby-edition','','','2025-01-20 16:03:29','2025-01-20 16:03:29','',0,'https://www.biomechanicseducation.com/?p=1477',0,'post','',0),(2284,3,'2017-01-23 11:01:50','2017-01-23 11:01:50','Have you ever had a client who just cannot move in the way you are coaching them to move?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">No matter what teaching points you give, visual demonstrations you do or stretching you get them to do, they simply lack the </span><span style=\"font-weight: 400;\">ability</span><span style=\"font-weight: 400;\"> to squat or lunge, or at least to do so in a way you feel they should be capable!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Surely the first question that we should be asking ourselves is WHY? Instead of assuming what we are looking at is simply poor technique.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As PT’s we are taught to correct technique, form and the joint positions of our clients to improve the way they move, therefore improve their strength and thus reduce risk, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However it is professionals like US who continually ask ourselves the question WHY that are drawn to further educating ourselves by reading blogs and articles and by attending extra workshops. We can be found seeking out more information &amp; knowledge rather than simply continuing to try to change or force our client’s movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WE want more answers to the ‘WHY’s’ because we recognise that weird lunging movement they are doing may not be simply because of bad technique.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I KNOW you are one of these professionals because you are reading this ;)</span>\n\n&nbsp;\n<h3><b>Are You Ill Equipped?</b></h3>\n<span style=\"font-weight: 400;\">Without knowing WHY someone is moving the way they are, we are surely ill equipped to address their ‘poor’ movement or lack of capacity.  This is surely a job for the PT!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For many years I myself worked on the </span><i><span style=\"font-weight: 400;\">assumptions</span></i><span style=\"font-weight: 400;\"> that I was taught in my basic L2/3 training. If a muscle appeared short we stretch it, if it appears weak strengthen it, if someone cannot perform a movement; repeat coach repeat coach repeat - right!?</span>\n\n<img class=\"wp-image-1494 size-full aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/muscles-stretching-3.jpg\" alt=\"muscles-stretching-3\" width=\"600\" height=\"337\" />\n\n<span style=\"font-weight: 400;\">In my experience, my </span><i><span style=\"font-weight: 400;\">assumptions</span></i><span style=\"font-weight: 400;\"> were just not good enough because some people just didn’t improve, didn’t get stronger or didn’t move better. Some just looked downright uncomfortable! I just KNEW this wasn’t enough!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Instinctively we recognise there has to be more to their inability to move than we may actually have the skills for. Discovering the ability to remember and retain our anatomy knowledge, combined with gaining a good understanding of how the intrinsic biomechanics of that individual are influencing their movement can give us more confidence, more results, therefore more referrals, more clients and so increase our income - or treble it in fact as I did!</span>\n\n&nbsp;\n<h3><b>Life Changing Knowledge Bombs</b></h3>\n<span style=\"font-weight: 400;\">Recognising that not all short muscles need stretching was quite profound for me coming from a dance background that was ALL about flexibility and stretching. To discover that stretching some muscle dysfunction can actually compound a problem was a knowledge bomb that blew my mind and was truly life changing. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also learning that ‘weakness’ is a very broadly used term and can have several different meanings or causes that don’t automatically require strength work also completely changed the way I practiced.</span>\n\n&nbsp;\n<h3><b>What Is Weakness Anyway?</b></h3>\n<span style=\"font-weight: 400;\">A common ‘weakness’ could be an inhibition of a muscle, coming from the antagonist being dysfunctional. Would you want to strengthen a muscle that is inhibited? Well probably not initially at least. First you would want to remove the inhibition to then give the muscle its ‘capacity’ for strength back, don’t you agree?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The inhibition could be come from several root causes; muscle spasm of the ‘weak’ muscle, muscle spasm of its antagonist as in the example above (remember the law of reciprocal inhibition?), tethered nerves and/or stiff joints to name a few. None of which require strength work initially even though they may be </span><span style=\"font-weight: 400;\">seen</span><span style=\"font-weight: 400;\"> as a ‘weakness’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All of the above could directly impact upon the way your client moves of course and yet we might be asking them to repeat a movement in an endeavour of improving their ‘technique’ which could actually be the wrong thing to do in an effort to improve it. However hopefully you can see how there can be more to that weird lunge than simply bad technique, posture or form.</span>\n\n&nbsp;\n<h3><b>Change The Way You Think - Start With WHY?</b></h3>\n<span style=\"font-weight: 400;\">So maybe a good place to START would be to rule out &amp; correct dysfunction FIRST. To do this we need some way of measuring capacity and function. Once we have screened our client we can then apply our knowledge of corrective exercise techniques.  This then gives our client the CAPACITY to move. We then re-measure and upon observing improved movement we can apply our verbal and visual technique coaching.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Do you want to increase your confidence in assessing capacity and function for your clients?....</span></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"color: #ff0000;\"><a style=\"color: #ff0000;\" href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Check out the 4 Sign screen and exercise to get you started. Just CLICK HERE &gt;&gt;</span></a></span></span></p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-1479 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.57.16-1024x576.png\" alt=\"Screen Shot 2017-01-13 at 10.57.16\" width=\"840\" height=\"473\" /></a></p>    	','Why Can’t They Lunge..?','','draft','closed','closed','','why-cant-they-lunge','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1491',0,'post','',0),(2285,3,'2017-01-27 09:44:07','2017-01-27 09:44:07','<h3>By Ken Robinson</h3>\n<span style=\"font-size: large;\">So as you probably already know I am a massive fan of the audio book as great way to take advantage of long car journeys by immersing yourself into a mobile academy.</span>\n\nYou may, or may not, also be aware that Ken Robinson is my all time hero and the person I would most like to have dinner with. If you don\'t know of him please do go and check out his TED talk which is ranked as the most watched of all of them. He is a charismatic and funny presenter yet articulates extremely well his points of view.\n\n<span style=\"font-size: large;\">ANYWAY I have just finished his book \'Out Of Our Minds\', which is the 3rd of his books I have read now after \'The Element\' &amp; \'Finding Your Element\' and I wanted to share a portion of it with you. </span>\n\n<span style=\"font-size: large;\">Robinson is on a mission to improve the education experience since he believes the present one, that most of us experience, leaves many of us feeling less intelligent than we actually are. </span>\n<span style=\"font-size: large;\">Here he states some of his ideas on how \'teaching\' SHOULD be done:</span>\n\n<span style=\"font-size: large;\">Robinson states teachers should be able to \"<em>TEACH \'FOR\' CREATIVITY</em>\".\n<em>\"Facilitating creative work, encouraging independence of judgement, willingness to take risks, be enterprising, persistent and resilient in the face of false starts, wrong turns or dead ends.\"</em></span>\n\nAlso be able to \"<em><span style=\"font-size: large;\">Promote experiments of inquiry and willingness to make mistakes. Encourage generative thought, free from immediate criticism. Encourage expression of personal ideas and feelings.\"</span></em>\n\n<em><span style=\"font-size: large;\">\"Convey an understanding of phases in creative work and the need for time. Develop roles of intuition and aesthetic processes. Encourage learners to \'play\' with ideas, possibilities and facilitate evaluation of ideas.\"</span></em>\n\n\"Enabling learners to be more effective at handling future problems and objectives. Also to deepen and broaden awareness of the self as well as the world and to encourage openness to new ideas.\"\n\n<span style=\"font-size: large;\">Robinson says we should be \"<em>...developing independent creative work, self confidence/independence of mind and capacity to think for self. Helping individuals to identify/discover our creative strengths and capacities.\"</em>  </span>\n\n<span style=\"font-size: large;\">ALL of this resonates profoundly with me growing up being told I was a non academic. Since being open about my own insecurities, how I have dealt with them and then gone on to become Managing Director of an international education company in biomechanics, many of you have confessed to having similar feelings about your own abilities or self belief systems.</span>\n\nSo this Juicemail is for all of YOU, to say I am with you, I am like you and as an education company \'we get it\'! This is why all of our academy learners express their joy at the  inclusive learning experience/environment we provide.\n\nHave an awesome weekend!','\'Out Of Our Minds\'','','draft','closed','closed','','out-of-our-minds','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1510',0,'post','',0),(2286,3,'2017-02-13 17:56:14','2017-02-13 17:56:14','<span style=\"font-weight: 400;\">It really isn\'t that complicated to be honest, but we do need to consider WHY we/our clients have so many physical complaints. Even as exercise professionals, we often find the lives we lead with technology &amp; transport reducing how we use our bodies, we need to regain responsibility for our own biomechanical health; to set an example to our clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s no secret that the “average healthy adult” spends a good proportion of their day sitting at a desk, driving, travelling or hunched over their phones. Considering that our bodies came from a history of hunting and gathering, it is really no surprise we have started to experience these aches and niggles, is it!? We are no longer leading that lifestyle, so our bodies are slowly trying to adapt to this new sedentary way of living. They just cant adapt quick enough!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we set an example to our clients by making a few small changes to our own lifestyles (and maybe some bigger ones too), we can reduce our own risk of injury, and then, we can then teach our clients about making the right choices in their lifestyle too.</span>\n\n&nbsp;\n<h2>Feel the benefits from the freedom of movement with these 6 tips:</h2>\n&nbsp;\n<h3>1) Stop carrying our bag on the same shoulder</h3>\n<span style=\"font-weight: 400;\">We wouldn’t necessarily consider going to the gym and only training one side of the body over and over again would we!? Yet we regularly carry our heavy sports bags, shopping bags, laptop bags on the favoured side! This results in the lateral flexors on the spine of the opposite side of the trunk will be working harder than their antagonists, becoming over worked, more tense &amp; creating extra tension on the nerves that side too. </span>\n\nOver time this can result in asymmetrical adaptions that start to become more apparent unless we address the issue.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Trying using a trolley bag or a rucksack.</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-1572 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/cs-bag-causing-back-pain-1440x810-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h3>2) Get a massage regularly (when possible)</h3>\n<span style=\"font-weight: 400;\">Find a good soft tissue therapist and have a massage regularly - the good ones are the ones with a great reputation, they are NOT necessarily the cheapest!!</span>\n\n<span style=\"font-weight: 400;\">It’s the old saying… You get what you pay for.</span>\n\n&nbsp;\n\n<img class=\" wp-image-1573 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/sports-massage-therapy-steyning-300x125.jpg\" alt=\"\" width=\"403\" height=\"168\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h3></h3>\n<h3></h3>\n<h3>3) Ditch your \'fashion\' footwear</h3>\n<span style=\"font-weight: 400;\">Ok maybe a tough one when wanting to wear a certain outfit or if you want to taller!</span>\n\n<span style=\"font-weight: 400;\">However I guess the question is this <em>\"how much fun you gonna have sitting at home with back pain looking at those pretty high heels in the bottom of your wardrobe?\"</em></span>\n\n<img class=\"size-medium wp-image-1574 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/high-heels-for-women-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also not ALL shoes are good for ALL feet.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Get your feet assessed properly for advice on the best footwear for your foot function. <span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><a style=\"color: #0000ff; text-decoration: underline;\" href=\"https://www.biomechanicseducation.com/custom-fit-insoles-damaging-workout-performance/\" target=\"_blank\" rel=\"noopener\">Read my post here on my visit to Premier Podiatry and the \"need to know\" behind custom orthotics.</a></span></span> If you have a loose MidTarsal Joint you probably shouldn\'t wear, let’s call them \'finger\' shoes (you know the ones I mean), ballet pumps or converse. Trevor Prior at Premier Podiatry Ltd is someone I would strongly recommend because he does not just try to sell you orthotics, he gives you the best advice.</span>\n\n[caption id=\"attachment_1575\" align=\"alignleft\" width=\"300\"]<a href=\"https://www.biomechanicseducation.com/custom-fit-insoles-damaging-workout-performance/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1575 size-medium\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/IMG_4580-300x225.jpg\" width=\"300\" height=\"225\" /></a> My visit to Premier Podiatry. Read the post here.[/caption]\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h3>4) See a skilled professional who can assess your whole body<img class=\"size-medium wp-image-1576 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/IMG_7390-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" /></h3>\n<span style=\"font-weight: 400;\">Not to be confused with seeing a medical professional whose job is to assess medical conditions, find someone who understands intrinsic function like a Biomechanics Coach&#x2122; who specialises in movement quality evaluation.</span>\n\n&nbsp;\n\n&nbsp;\n<h3>5) Do what yhey say</h3>\n<span style=\"font-weight: 400;\">Simple = Own it!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are in the physical conditions we\'re in because of our lifestyles.</span>\n\n&nbsp;\n\n&nbsp;\n<h3>6) Move more</h3>\n<span style=\"font-weight: 400;\">Kind of an obvious one but one we still forget once we are sucked into the TV or computer screen.</span>\n\n<img class=\"size-medium wp-image-1577 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/family-running-together3-300x228.jpg\" alt=\"\" width=\"300\" height=\"228\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also rather than set up all of your things within reach of your desk, move everything away from you so you are reaching and moving more. Offer to make drinks for everyone - ALL the time!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Invest in a raised laptop stand on top of your desk so you can stand (this made a huge difference for me) so your hip muscles are permanently active.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you apply these 6 tips into your daily routine, you’ll see yourself performing better, your range of movement increasing, your recovery improving &amp; so much more. Your clients will also see the benefits if you install this lifestyle into them as well.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n\nRachel\n\n&nbsp;\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">We need more Biomechanics Coaches&#x2122; around the UK… Is it you? Do you have what it takes?</a></span></p>\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Are you prepared to take your professional career to another level?</span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Do you want to become part of a strong inter-professional community?</span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Become a Biomechanics Coach&#x2122; today… Find out more, click here.</span></a></span></p>','6 Tips Guaranteed To Improve Your Client\'s Biomechanics','','draft','closed','closed','','6-tips-guaranteed-to-improve-your-biomechanics','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1565',0,'post','',0),(2287,3,'2017-02-28 08:24:50','2017-02-28 08:24:50','<h3>Have you ever wondered…..<i> ‘What Exactly Is The iMoveFreely® Programme?’…?!</i></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well this blog has been especially written for YOU.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These ‘techniques’, individually, have been around for many years in some form.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have merged evidence that we collated, with evidence from other world leaders in biomechanics and developed an entire SYSTEM to empower manual therapy and exercise professionals, giving them access to these ‘movement preparation’ techniques. </span>\n\n&nbsp;\n<h2>So What Exactly is The iMoveFreely® Programme?</h2>\nThe iMoveFreely® Programme is a series of low grade exercise technique, which have been designed through over 25 years of research, into a logical, evidence based system that makes exercise prescription safer. It does this by improving movement ability which reduces risk using a very simple pyramid approach to exercise.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Previously these techniques have only been available to high level athletes some 25yrs ago. However, increasingly they are being recognised as the fundamental basics for anyone wishing to achieve the ability to move more freely. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The full programme is made up of the following 3 phases of exercise delivered by </span><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><b><i>Biomechanics Coaches™</i></b></a><span style=\"font-weight: 400;\"> who are able to assess clients and therefore understand WHEN they are ready for certain exercises.</span>\n\n&nbsp;\n<h3>Phase 1. Preparation &amp; Capacity<b> </b></h3>\n<span style=\"font-weight: 400;\">This phase in particular is often named ‘The missing link’ or the ‘foundation for fitness’. This is based upon the fact that the human body is an integrated system. This integrated system means muscles, joints and nerves all affect each other so we must acknowledge and demonstrate this when we prescribe exercises.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The first phase of the iMoveFreely® programme provides low grade, subtle techniques to affect each of these 3 sub-systems and create intrinsic capacity.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This initial series of techniques consists of anti spasm exercises based on Ribot-Ciscar’s work (Jiri Dvorak had the same results from similar studies) using a type of muscle energy technique. There are also a series of nerve mobilisation techniques based on David Butler’s work. These are followed by the ‘pure’ joint mobilisation techniques that isolate (as much as is possible) the joint sections that don’t move so freely.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These are modified from much of what is seen in our industry today, which is ‘combined’ movements where the body is effectively allowed to </span><i><span style=\"font-weight: 400;\">cheat</span></i><span style=\"font-weight: 400;\"> to produce the required movement. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The aim of this first phase of preparation restores an individual’s capacity around the pelvis and spine so that they are level and moving freely, or correctly, for that individual.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-1479\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.57.16-300x169.png\" width=\"450\" height=\"253\" />\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\"><a style=\"color: #0000ff; text-decoration: underline;\" href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Download your first muscle energy screen &amp; release here for free, called the 4-sign &gt;&gt;</span></a></span></span></p>\n&nbsp;\n<h3>Phase 2. Stability &amp; Control</h3>\nThis secondary phase of training for stability and control, requires phase one’s preparation to give the pelvis and spine their alignment and capacity back. This safety conscious methodology means that risk is reduced when performing any variation of core strength work.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Coming out of the first phase, we advise this is the perfect time to initiate specific, periodised core training, to promote a ‘grooving out’ of the ‘new’ level and moving position of both the pelvis and spine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We start with principles based on evidence shown in the work of Haines, McGill, Matthews and Cholwewicki’s, who each demonstrated the benefits of a logical series of neuromuscular progressions, which are in the </span><i><span style=\"font-weight: 400;\">continuum of exercise</span></i><span style=\"font-weight: 400;\"> progressions.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This then follows with isometric core ratio exercise programming, which gives our clients a good balanced base of support, around their entire trunk.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally, the more advanced functional stability exercises are periodised to allow us to confidently create stability and control, while performing more compound moves, taking your clients into their final phase of function and performance.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-1646\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/MG_0055-1-1-300x200.jpg\" width=\"450\" height=\"300\" />\n\n&nbsp;\n<h3>Phase 3. Function &amp; Performance</h3>\n<span style=\"font-weight: 400;\">This third ‘function and performance’ phase takes into account strengthening of the shoulders, knees and feet to allow better ‘function’ to be ‘fit for purpose’. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With specific exercises based on joint strength ratios of these areas. Here we consider more sport specific movements and (potentially) pre-orthotic conditioning on top of (the now built) solid foundation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All of which reduces risk and optimises performance ability.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you ever wondered if orthotics could actually be damaging your workout performance? Take a look at the blog post I wrote back in January on this very topic &gt;&gt; <span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\"><a style=\"color: #0000ff; text-decoration: underline;\" href=\"https://www.biomechanicseducation.com/custom-fit-insoles-damaging-workout-performance/\" target=\"_blank\" rel=\"noopener\"><strong>“</strong></a></span></span></span><a href=\"https://www.biomechanicseducation.com/custom-fit-insoles-damaging-workout-performance/\" target=\"_blank\" rel=\"noopener\"><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\"><b>Can Your Custom Fit Insoles Really Be Damaging To Your Performance?”</b></span></span></a><span style=\"font-weight: 400;\"> I discuss my visit to meet Trevor and his team at </span><a href=\"http://www.premierpodiatry.com/\"><span style=\"font-weight: 400;\">Premier Podiatry</span></a><span style=\"font-weight: 400;\">.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\"><a style=\"color: #0000ff; text-decoration: underline;\" href=\"https://www.groupxtraining.com/imovefreely-certification\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">If you want to find out the course information for the iMoveFreely®, just click here to register your interest.</span></a></span></span></p>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel</span>\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400; color: #ff0000;\">We need more Biomechanics Coaches™ around the UK… Is it you? Do you have what it takes?</span></a></p>\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400; color: #ff0000;\">Are you prepared to take your professional career to another level?</span></a></p>\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400; color: #ff0000;\">Do you want to become part of a strong inter-professional community?</span></a></p>\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400; color: #ff0000;\">Become a Biomechanics Coach™ today… <span style=\"text-decoration: underline;\">Find out more, click here.</span></span></a></p>','‘What Exactly Is The iMoveFreely® Programme?’','','draft','closed','closed','','what-is-the-imovefreely-programme','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1601',0,'post','',0),(2288,3,'2017-04-03 13:30:19','2017-04-03 13:30:19','<span style=\"font-weight: 400;\">It is a daily struggle for PT’s with different clients, who have different bodies, different mobility issues and different goals. The one major questions is; which assessment/s should we use to identify the best exercise programme?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">At level 3 we are taught simple tests like sit and reach, body composition or RPE but this still doesn’t really identify which exercises are good, or maybe bad, for the biomechanics of each individual client.</span>\n\n<img class=\"aligncenter size-medium wp-image-1736\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/Im48-300x108.png\" alt=\"\" width=\"300\" height=\"108\" />\n\n<b>Intrinsic Biomechanics </b>\n\n<span style=\"font-weight: 400;\">To understand this better imagine an example like this:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">1) You look at your clients squatting and their knee caves inwards.</span>\n\n<span style=\"font-weight: 400;\">2) You ask yourself WHY? And yet there are a multitude of reasons why it </span><i><span style=\"font-weight: 400;\">might</span></i><span style=\"font-weight: 400;\"> happen.</span>\n\n<span style=\"font-weight: 400;\">3) You might prompt them with verbal cues on how to correct their movement, but this starts to hurt them, or rotate them, or just doesn’t work.</span>\n\n<span style=\"font-weight: 400;\">4) So what happens? We tend to lose confidence as to whether we should be asking them to squat at all.</span>\n\n<span style=\"font-weight: 400;\">5) Rather than simply trying to coach </span><i><span style=\"font-weight: 400;\">better technique, </span></i><span style=\"font-weight: 400;\">we should ALL have the skills to identify if the cause is actually something intrinsic ‘stacked up wrong’ due to our lifestyle. The </span><i><span style=\"font-weight: 400;\">intrinsic</span></i><span style=\"font-weight: 400;\"> part relating to the 3 sub-systems also known as the neuro-musculoskeletal system.</span>\n\n<img class=\"aligncenter size-medium wp-image-1737\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/musculoskeletalpic-300x296.png\" alt=\"\" width=\"300\" height=\"296\" />\n\n&nbsp;\n\n<b>Knowing Which, When and Who?</b>\n\n<span style=\"font-weight: 400;\">So wouldn’t it be more helpful, and increase our confidence, if we had access to neuro-musculoskeletal assessments that we could use with our clients from day one?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Assessments that would allow us to identify how </span><i><span style=\"font-weight: 400;\">prepared for movement</span></i><span style=\"font-weight: 400;\"> our clients bodies actually are, how much </span><i><span style=\"font-weight: 400;\">capacity</span></i><span style=\"font-weight: 400;\"> they have and when we actually need to do some more work on the 3 subsystem\'s to prepare them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well they exist, but unfortunately, you don’t get taught about these neuro-musculoskeletal assessments in your level 3 training.</span>\n\n&nbsp;\n\n&nbsp;\n\n<b>Nate Agrees With Us </b>\n\n<span style=\"font-weight: 400;\">This isn’t just my view, there are other knowledgeable people out there who advocate the skills we give to PT’s. Nate also agrees with us…</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“This allows them to get better results, far quicker” Nate.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Who the hell is Nate?</span></i><span style=\"font-weight: 400;\"> I can hear you thinking. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well Nate works with </span><a href=\"http://www.otpbooks.com/\" target=\"_blank\" rel=\"noopener\"><b><i>On Target Publications</i></b></a><span style=\"font-weight: 400;\"> which is one of the awesome resources I found during my research in the Gracovetsky/McGill debate. Here he describes nicely how he views the problem we, as PT’s, face;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Assessments are powerful tools that allow coaches and trainers to identify the big issues holding their clients back. By arming them with the right information, assessments allow coaches and trainers to develop individualised strategies to efficiently attack the problems their clients struggle with. This allows them to get better results, far quicker. The problem for many coaches and trainers, however, is knowing which assessments to use, when, and with which clients. You see, hundreds of assessments covering a range of areas, including body composition, general health, flexibility, mobility, stability, speed, balance, endurance, power, strength and agility are available for coaches and trainers to use. And for many coaches and trainers—especially less experienced ones—this can be intimidating and confusing.</span></i><span style=\"font-weight: 400;\">” Nate. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To be fair to Nate, he was promoting strength coach, Dan John’s book </span><b>‘</b><b><i>Can You Go’</i></b> <span style=\"font-weight: 400;\">(one that I highly recommend by the way, </span><a href=\"https://www.amazon.co.uk/Can-You-Go-Assessments-Everybody-ebook/dp/B00WOQBSG8\"><span style=\"font-weight: 400;\">just click here to get it from amazon!</span></a><span style=\"font-weight: 400;\">), but it was comforting to know that as an education company, Biomechanics Education Ltd is tackling an obvious and common problem for us all!</span>\n\n<img class=\"aligncenter size-medium wp-image-857\" src=\"https://biomechanicseducation.com/wp-content/uploads/2016/05/Screen-Shot-2016-05-09-at-14.59.09-300x206.png\" alt=\"\" width=\"300\" height=\"206\" /><img class=\"aligncenter size-medium wp-image-1710\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-27-at-11.06.01-2-248x300.png\" alt=\"\" width=\"248\" height=\"300\" />\n\n&nbsp;\n\n<b>What I Wanted To Bring To YOU This Week</b>\n\n<span style=\"font-weight: 400;\">If this kind of topic interests YOU...</span>\n\n<span style=\"font-weight: 400;\">If YOU are a human movement geek...</span>\n\n<span style=\"font-weight: 400;\">If YOU enjoy studying and discussing human movement...</span>\n\n<span style=\"font-weight: 400;\">If YOU would like to learn in an inclusive classroom - where no question is a stupid one…</span>\n\n&nbsp;\n\n<b>Then THIS Might Interest YOU!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Professionals who invest time in our classroom have stated:</span>\n\n&nbsp;\n\n1) How simple our screening ‘SYSTEM’ is\n\n<span style=\"font-weight: 400;\">2) How easily they are able to monitor their clients progress</span>\n\n<span style=\"font-weight: 400;\">3) How quickly they get results</span>\n\n<span style=\"font-weight: 400;\">4) How surprised they were at how much they learned</span>\n\n<span style=\"font-weight: 400;\">5) How it hugely helps their own confidence</span>\n\n<span style=\"font-weight: 400;\">6) How much they valued the support they received before, during and after their training</span>\n\n<span style=\"font-weight: 400;\">7) How it expands their technical language to communicate with different professionals for referral  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you would like to learn ‘The System’<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"> CLICK HERE</a>.</span><b></b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let us know your thoughts on the Gracovetsky/McGill debate, <a href=\"https://www.biomechanicseducation.com/why-doing-your-own-research-could-lead-you-to-become-a-better-coach-even-if-you-think-youre-a-non-academic-like-me/\" target=\"_blank\" rel=\"noopener\">CLICK HERE </a>to see the blog.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400; color: #3366ff; text-decoration: underline;\">Become a Biomechanics Coach™ today… Find out more, <a style=\"color: #3366ff; text-decoration: underline;\" href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a>.</span></span></p>\n<p style=\"text-align: center;\"><a href=\"https://www.instagram.com/biomechanics_education/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1717 alignnone\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/aquicon-icon-18718-300x300.png\" alt=\"\" width=\"116\" height=\"116\" /></a><a href=\"https://www.instagram.com/biomechanics_education/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1718 alignnone\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/aquicon-icon-18774-300x287.png\" alt=\"\" width=\"120\" height=\"115\" /></a><a href=\"https://twitter.com/biomechanicsedu\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1716 alignnone\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/aquicon-icon-18708-300x300.png\" alt=\"\" width=\"120\" height=\"120\" /></a></p>\n<p style=\"text-align: center;\"></p>','The Struggles Being A Personal Trainer','','draft','closed','closed','','the-struggles-being-a-personal-trainer','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',0,'https://www.biomechanicseducation.com/?p=1723',0,'post','',0),(2289,0,'2017-04-04 14:33:23','2017-04-04 14:33:23','','','','inherit','closed','closed','','struggles','','','2017-04-04 14:33:23','2017-04-04 14:33:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Struggles-1-1.png',0,'attachment','image/png',0),(2291,0,'2017-04-04 14:35:52','2017-04-04 14:35:52','','','','inherit','closed','closed','','a-weekend-presenting-at-the-international-fitness-showcase-300x169','','','2017-04-04 14:35:52','2017-04-04 14:35:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/A-Weekend-Presenting-At-The-International-Fitness-Showcase-300x169-1.png',0,'attachment','image/png',0),(2293,0,'2017-04-04 14:37:09','2017-04-04 14:37:09','','','','inherit','closed','closed','','own-research','','','2017-04-04 14:37:09','2017-04-04 14:37:09','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Own-research-1.png',0,'attachment','image/png',0),(2295,0,'2017-04-04 14:41:05','2017-04-04 14:41:05','','','','inherit','closed','closed','','mindset-blog','','','2017-04-04 14:41:05','2017-04-04 14:41:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/mindset-blog-1-1.png',0,'attachment','image/png',0),(2297,0,'2017-04-04 14:44:05','2017-04-04 14:44:05','','','','inherit','closed','closed','','what-exactaly','','','2017-04-04 14:44:05','2017-04-04 14:44:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/what-exactaly-1.png',0,'attachment','image/png',0),(2299,0,'2017-04-04 14:45:26','2017-04-04 14:45:26','','','','inherit','closed','closed','','5-quads','','','2017-04-04 14:45:26','2017-04-04 14:45:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/5-quads-1.jpg',0,'attachment','image/jpeg',0),(2301,0,'2017-04-04 14:46:19','2017-04-04 14:46:19','','','','inherit','closed','closed','','6-tips','','','2017-04-04 14:46:19','2017-04-04 14:46:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/6-tips-1.png',0,'attachment','image/png',0),(2303,0,'2017-04-04 14:47:04','2017-04-04 14:47:04','','','','inherit','closed','closed','','insoles-3','','','2017-04-04 14:47:04','2017-04-04 14:47:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/02/insoles-2-1.png',0,'attachment','image/png',0),(2305,0,'2017-04-04 14:47:53','2017-04-04 14:47:53','','','','inherit','closed','closed','','do-you-really-have-a-weak-core-3','','','2017-04-04 14:47:53','2017-04-04 14:47:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Do-you-really-have-a-weak-core-1-1-1.png',0,'attachment','image/png',0),(2307,0,'2017-04-04 14:49:00','2017-04-04 14:49:00','','','','inherit','closed','closed','','out-of-minds','','','2017-04-04 14:49:00','2017-04-04 14:49:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/01/out-of-minds-1.png',0,'attachment','image/png',0),(2405,0,'2017-04-11 10:08:02','2017-04-11 10:08:02','','','iMoveFreely® Exercises To Try At Home','inherit','closed','closed','','tv-1','','','2017-04-11 10:08:02','2017-04-11 10:08:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/TV-1-1.png',0,'attachment','image/png',0),(2409,0,'2017-04-11 10:34:48','2017-04-11 10:34:48','','','Don’t Listen To Us….Listen To Them!','inherit','closed','closed','','tv-2','','','2017-04-11 10:34:48','2017-04-11 10:34:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/TV-2-1.png',0,'attachment','image/png',0),(2410,0,'2017-04-11 10:36:32','2017-04-11 10:36:32','','','Presentations at The Movement Convention','inherit','closed','closed','','tv-3','','','2017-04-11 10:36:32','2017-04-11 10:36:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/TV-3-1.png',0,'attachment','image/png',0),(2411,0,'2017-04-11 10:36:59','2017-04-11 10:36:59','','','Just For Fun','inherit','closed','closed','','tv-4','','','2017-04-11 10:36:59','2017-04-11 10:36:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/TV-4-1.png',0,'attachment','image/png',0),(2413,0,'2017-04-11 10:40:05','2017-04-11 10:40:05','','','We all Squat Differently?','inherit','closed','closed','','tv-5','','','2017-04-11 10:40:05','2017-04-11 10:40:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/TV-5-1.png',0,'attachment','image/png',0),(2415,0,'2017-04-11 10:54:14','2017-04-11 10:54:14','','','What Do Our Workshops Look Like?','inherit','closed','closed','','tv-6','','','2017-04-11 10:54:14','2017-04-11 10:54:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/TV-6-1.png',0,'attachment','image/png',0),(2530,3,'2017-04-13 12:29:09','2017-04-13 12:29:09','<span style=\"font-weight: 400;\">Something we often asked about is example case studies of people who have been to see a Biomechanics Coach</span><span style=\"font-weight: 400;\">&#x2122;, s</span><span style=\"font-weight: 400;\">o with her permission I wanted to share with you one of mine:</span>\n<h3>Gold Medalist &amp; British Champion in Olympic Weightlifting, Laura Hewitt</h3>\n<span style=\"font-weight: 400;\">Laura has been making a huge impression on the Olympic Weightlifting world! We originally met during some fitness classes I was covering at local chain gym several years ago. She eventually trained and worked there as a personal trainer.</span>\n\n<span style=\"font-weight: 400;\">The next time I saw her was while I was training at PowerBase Gym at Loughborough University. This fabulous athlete was literally lifting ridiculous amounts of rubber and steel over her head and onto her shoulders, as I stood watching in awe! She was clearly built to lift with her awesome frame and as I discovered through our conversations, had also come from a competitive gymnastic background. So she was obviously already familiar with the graft and discipline attached to being a high level athlete.</span>\n\n<span style=\"font-weight: 400;\">Having been chosen as one of the GB Olympic Lifting potentials she become semi-professional and started her training with the three girls under the guidance of Giles Greenwood. </span>\n<h3>The Problem</h3>\n<span style=\"font-weight: 400;\">However on one occasion Laura and I were training alone and started chatting. She expressed her problem in being unable to maintain an upright torso during the receive position of her clean and so I offered to screen her. </span>\n\n<span style=\"font-weight: 400;\">(The receive portion of a clean is a full range deep squat taking the full force of a loaded barbell dropping onto the front of the shoulders) </span>\n\n<span style=\"font-weight: 400;\">Screening her was really quite fascinating as she moved really well but still had some of the most common dysfunctions I often see. However the difference with a true athlete like Laura is: </span>\n\n<span style=\"font-weight: 400;\">a). They get it</span>\n\n<span style=\"font-weight: 400;\">b). They do their homework</span>\n\n<span style=\"font-weight: 400;\">c). They can see the difference in their performance</span>\n\n<span style=\"font-weight: 400;\">d). They LOVE anything that gives them an edge!</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"alignnone wp-image-31185 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/04/Screenshot-2022-01-26-at-11.34.54-300x212.png\" alt=\"\" width=\"464\" height=\"328\" />\n<h3></h3>\n<h3>The Solution</h3>\n<span style=\"font-weight: 400;\">The buzz I personally get is seeing performance improve using simple techniques from the iMoveFreely</span><span style=\"font-weight: 400;\">®</span><span style=\"font-weight: 400;\"> programme. Would you believe a low grade 20% effort muscle energy technique (<a href=\"https://www.biomechanicseducation.com/1333-2/\" target=\"_blank\" rel=\"noopener\">Ribot-Ciscar et al, 1991</a>) for the pelvis and then pec minor, were 2 of the key influencers on improving her clean receive position!? </span>\n\n<span style=\"font-weight: 400;\">Just brilliant!!</span>\n\n<span style=\"font-weight: 400;\">Easy to perform anti spasms, nerve mobilisations along with specific and very ‘pure’ joint mobility techniques, really DO enable ‘capacity’ for movement throughout ‘the integrated system’.</span>\n\n<span style=\"font-weight: 400;\">This little pocket rocket is already making waves in the comps! She is now a PT and Olympic Lifting Coach at a local Strength and Performance Gym in Nottingham called </span><a href=\"http://rwfgym.co.uk\"><i><span style=\"font-weight: 400;\">REAL WORLD FITNESS</span></i></a><i><span style=\"font-weight: 400;\">.</span></i>\n\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-1747\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-07-at-16.16.47-300x194.png\" alt=\"\" width=\"459\" height=\"297\" /></p>\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">She is such a determined and committed lifter that she spends quality time on smart training. She worked on the iMoveFreely</span><span style=\"font-weight: 400;\">®</span><span style=\"font-weight: 400;\"> techniques I gave her and within literally just 2 weeks she saw a great improvement in her front squat position and clean technique without gaining any body weight herself.</span>\n<h3>The Result</h3>\n<span style=\"font-weight: 400;\">With her Gold Medal for the British Championship now in place, she really is growing in confidence about what she can be truly capable of. Clearly it is not ALL down to the iMoveFreely</span><span style=\"font-weight: 400;\">®</span><span style=\"font-weight: 400;\"> programme but also the blend of fabulous coaches involved in Laura’s training. All will have a had an impact in some small way even though ultimately it is Laura who has done ALL of the hard work. </span>\n\n<span style=\"font-weight: 400;\">Developing her capacity, patterns, skill, technique, power, strength and performance. This fabulous athlete now invests in coaching from the A.M.A.Z.I.N.G Cyril Martin (my first ever lifting coach whom Laura originally recommended to me) and together they will, I am confident, take her back to the podium!</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-1746\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-07-at-16.16.54-271x300.png\" alt=\"\" width=\"322\" height=\"356\" /></p>\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if YOU have clients like Laura</span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">If YOU would like to work with clients like Laura</span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">If you simply want to help people to improve their performance then come along, join us and learn the very screens and exercises I used to improve her movement.</span>\n\n<a href=\"https://bit.ly/3ACboJh\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">START by clicking HERE</span></a>','[Case Study] Elite Lifter Laura Hewitt','','draft','closed','closed','','case-study-elite-lifter-laura-hewitt','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.www.biomechanicseducation.com/?p=2530',0,'post','',0),(2534,0,'2017-04-13 13:42:18','2017-04-13 13:42:18','','','','inherit','closed','closed','','laura-hewitt','','','2017-04-13 13:42:18','2017-04-13 13:42:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/laura-hewitt-2.png',0,'attachment','image/png',0),(2535,0,'2017-04-13 13:47:46','2017-04-13 13:47:46','','','','inherit','closed','closed','','laura-hewitt-2','','','2017-04-13 13:47:46','2017-04-13 13:47:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/laura-hewitt-1-1.png',0,'attachment','image/png',0),(2537,0,'2017-04-13 15:29:40','2017-04-13 15:29:40','','','','inherit','closed','closed','','screen-shot-2017-04-11-at-07-36-42','','','2017-04-13 15:29:40','2017-04-13 15:29:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-11-at-07.36.42-1.png',0,'attachment','image/png',0),(2538,0,'2017-04-13 15:29:43','2017-04-13 15:29:43','','','','inherit','closed','closed','','screen-shot-2017-04-07-at-16-16-54','','','2017-04-13 15:29:43','2017-04-13 15:29:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-07-at-16.16.54-1.png',0,'attachment','image/png',0),(2539,0,'2017-04-13 15:29:45','2017-04-13 15:29:45','','','','inherit','closed','closed','','screen-shot-2017-04-07-at-16-16-47','','','2017-04-13 15:29:45','2017-04-13 15:29:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-07-at-16.16.47-1.png',0,'attachment','image/png',0),(2540,0,'2017-04-13 15:29:48','2017-04-13 15:29:48','','','','inherit','closed','closed','','screen-shot-2017-04-07-at-16-15-59','','','2017-04-13 15:29:48','2017-04-13 15:29:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-07-at-16.15.59-1.png',0,'attachment','image/png',0),(2541,0,'2017-04-13 15:29:51','2017-04-13 15:29:51','','','','inherit','closed','closed','','screen-shot-2017-04-03-at-15-20-42','','','2017-04-13 15:29:51','2017-04-13 15:29:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-03-at-15.20.42-1.png',0,'attachment','image/png',0),(2543,3,'2017-05-01 20:04:29','2017-05-01 20:04:29','<span style=\"font-weight: 400;\">Remember Laura Hewitt, Elite Olympic Lifter, the case study from last week?</span>\n\n<span style=\"font-weight: 400;\">In that blog, I explained how we had used an anti spasm on her pec minor, to improve her front squat and clean receive position.</span>\n\n<span style=\"font-weight: 400;\">What I wanted to do in this blog, is begin to explain why that happened.</span>\n<h3>Pectoralis Minor Anatomy</h3>\n<b>Muscle Attachments:</b><span style=\"font-weight: 400;\"> As you can see from the diagram below, the </span><span style=\"font-weight: 400;\">pectoralis minor</span><span style=\"font-weight: 400;\"> attaches to the coracoid process on the front of the scapula and travels diagonally downward and medial to </span><span style=\"font-weight: 400;\">attach</span><span style=\"font-weight: 400;\"> to the 3rd, 4th, and 5th ribs.</span>\n\n<b>Function:</b><span style=\"font-weight: 400;\"> The </span><span style=\"font-weight: 400;\">pectoralis minor</span><span style=\"font-weight: 400;\"> has two main functions. On one hand, it pulls the scapula anteriorly and therefore creates scapular protraction. As a secondary function, it also has some influence on scapular depression.</span>\n<h3><img class=\"size-medium wp-image-2549 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-13.32.48-211x300.png\" alt=\"screen-shot-2017-04-13-at-13-32-48\" width=\"211\" height=\"300\" /></h3>\n<h3>The Problem</h3>\n<span style=\"font-weight: 400;\">As you can imagine, this is one of those muscles that adapts to common daily ‘activities’ like desk work, texting or driving; thus creating a round shouldered appearance or poor looking posture.</span>\n\n<span style=\"font-weight: 400;\">So while this small muscle doesn’t even attach to the humerus, you can see why it can massively impact upon your client’s ability to move their arms or even squat. Let me explain further;</span>\n<h3><img class=\"size-medium wp-image-2552 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-11.24.47-290x300.png\" alt=\"screen-shot-2017-04-13-at-11-24-47\" width=\"290\" height=\"300\" /></h3>\n<h3>Try this exaggerated practical example yourself:</h3>\n<span style=\"font-weight: 400;\">1) Stand up and protract your scapular forwards into the rounded position as if you have ‘overactive’ pec minors</span>\n\n<span style=\"font-weight: 400;\">2) While maintaining this round shouldered position try to raise your arms or extend your thoracic spine.</span>\n\n<span style=\"font-weight: 400;\">3) Now try to squat, maintaining an upright posture….</span>\n\n<span style=\"font-weight: 400;\">…. </span><span style=\"font-weight: 400;\">Difficult</span><span style=\"font-weight: 400;\"> right?</span>\n\n<span style=\"font-weight: 400;\">Now you have that practical example for a clearer understanding, just imagine what that ‘tension’ on the </span><span style=\"font-weight: 400;\">pectoralis minor </span><span style=\"font-weight: 400;\">can effect with regards to general function and movement. If your scapular are ‘locked’ around your rib cage, they can ‘fix’ your thoracic spine into flexion, which will of course, impact upon your client’s ability to move in your training session.</span>\n<h3>The Integrated System</h3>\n<span style=\"font-weight: 400;\">When we refer to the integrated system, we mean all of the subsystems within the body that affect movement of the neuro-musculoskeletal system, which is basically the nerves, muscles and bones.</span>\n\n<span style=\"font-weight: 400;\">As personal trainers, we MUST consider the body as an </span><i><span style=\"font-weight: 400;\">integrated system</span></i><span style=\"font-weight: 400;\"> and so prescribe exercises with this in mind, taking into account every area of the body.</span>\n\n<span style=\"font-weight: 400;\">A common mistake among PT’s, can be to assume poor squat technique (for example) is simply because of poor pelvic or ankle mobility, however what we can see from example above and from Laura’s case study last week, this just simply isn’t the case and there may be far more to the complexity of the movement that first meets the eye.</span>\n<h3>The Solution</h3>\n<span style=\"font-weight: 400;\">So I have a short video clip for you to watch and learn how to anti spasm your client’s pec minor if you feel they may benefit.</span>\n\n<span style=\"font-weight: 400;\">Complement this with some antagonist strength work, like *‘pure’ </span><i><span style=\"font-weight: 400;\">retraction</span></i><span style=\"font-weight: 400;\"> (retraction being the opposite movement to the pec minors protraction) band or cable training, and see if this goes towards improving their movement. </span>\n\n<span style=\"font-weight: 400;\">*When I say ‘pure’ what I mean by this is do not bend the elbows, as in a row, but keep the arms long and simply retract against the resistance. This can be more effective at regaining strength ratios around the shoulder.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-2550 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-11.30.58-300x123.png\" alt=\"screen-shot-2017-04-13-at-11-30-58\" width=\"300\" height=\"123\" /></span>\n\n<span style=\"font-weight: 400;\">Another great complement to these 2 exercises is one of my favourites. Very simply lie </span><i><span style=\"font-weight: 400;\">long ways</span></i><span style=\"font-weight: 400;\"> on a long foam roller for a 2 minutes each day. Ie Sit the bum on one end and rest the back of the head on the other. Then simply relax over it.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-2551 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-11.25.50-300x148.png\" alt=\"screen-shot-2017-04-13-at-11-25-50\" width=\"300\" height=\"148\" /></span>\n\n<span style=\"font-weight: 400;\">A dysfunctional Pec Minor and shoulder function is one consideration BUT remember it is just one example of an adaption to our lifestyles. There are many things that can contribute so please keep an open mind. </span>\n\n<span style=\"font-weight: 400;\">You never know what could change by simply giving your clients Pec Minor and Thoracic Spine their capacity back….!!</span>\n<h3>Shoulder Biomechanics</h3>\n<span style=\"font-weight: 400;\">If this blog has left you eager to find out more, we have a Shoulder Biomechanics module as part of the Shoulder, Knee &amp; Foot Biomechanics Workshop during which we teach you how to </span><b>assess and improve</b><span style=\"font-weight: 400;\"> the function of Pec Minor along with the Median Nerve, Radial Nerve, Ulna Nerve, Subscapularis, Infraspinatus and the Upper traps.</span>\n\n<span style=\"font-weight: 400;\">We’ve only discussed 1 muscle in basic terms in this blog today, imagine the mind-blowing learning development you could gain by doing your FULL shoulder biomechanics module!</span>\n\n<span style=\"font-weight: 400;\">You should note that this is a very practical and evidence based workshop. So you will be practicing these screens and exercises on your peers and WON’T be brain dead from a lack of stimulation! This is complimented with all of the relevant strength training principles and there are no exams.</span>\n<h3>Click below to find out where you can enrol for the Shoulder, Knee &amp; Foot Biomechanics Workshop...</h3>\n<h1><a href=\"https://www.biomechanicseducation.com/product/shoulder-knee-foot-biomechanics-workshop-entry-level-3/\" target=\"_blank\" rel=\"noopener\"><b>CLICK HERE </b></a></h1>','How Your Pectoralis Minor Can Affect Your Squat Depth','','draft','closed','closed','','how-your-pectoralis-minor-can-affect-your-squat-depth','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.www.biomechanicseducation.com/?p=2543',0,'post','',0),(2548,0,'2017-04-18 07:13:02','2017-04-18 07:13:02','','','','inherit','closed','closed','','screen-shot-2017-04-13-at-13-42-07','','','2017-04-18 07:13:02','2017-04-18 07:13:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-13.42.07-1.png',0,'attachment','image/png',0),(2549,0,'2017-04-18 07:13:04','2017-04-18 07:13:04','','','','inherit','closed','closed','','screen-shot-2017-04-13-at-13-32-48','','','2017-04-18 07:13:04','2017-04-18 07:13:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-13.32.48-1.png',0,'attachment','image/png',0),(2550,0,'2017-04-18 07:13:08','2017-04-18 07:13:08','','','','inherit','closed','closed','','screen-shot-2017-04-13-at-11-30-58','','','2017-04-18 07:13:08','2017-04-18 07:13:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-11.30.58-1.png',0,'attachment','image/png',0),(2551,0,'2017-04-18 07:13:12','2017-04-18 07:13:12','','','','inherit','closed','closed','','screen-shot-2017-04-13-at-11-25-50','','','2017-04-18 07:13:12','2017-04-18 07:13:12','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-11.25.50-1.png',0,'attachment','image/png',0),(2552,0,'2017-04-18 07:13:15','2017-04-18 07:13:15','','','','inherit','closed','closed','','screen-shot-2017-04-13-at-11-24-47','','','2017-04-18 07:13:15','2017-04-18 07:13:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-11.24.47-1.png',0,'attachment','image/png',0),(2611,0,'2017-04-24 09:48:44','2017-04-24 09:48:44','','','','inherit','closed','closed','','img_8821','','','2017-04-24 09:48:44','2017-04-24 09:48:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/IMG_8821-1.jpg',0,'attachment','image/jpeg',0),(2612,0,'2017-04-24 09:48:47','2017-04-24 09:48:47','','','','inherit','closed','closed','','screen-shot-2017-04-24-at-10-29-43','','','2017-04-24 09:48:47','2017-04-24 09:48:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-24-at-10.29.43-1.png',0,'attachment','image/png',0),(2613,0,'2017-04-24 09:48:50','2017-04-24 09:48:50','','','','inherit','closed','closed','','screen-shot-2017-04-24-at-10-29-29','','','2017-04-24 09:48:50','2017-04-24 09:48:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-24-at-10.29.29-1.png',0,'attachment','image/png',0),(2614,0,'2017-04-24 09:48:53','2017-04-24 09:48:53','','','','inherit','closed','closed','','screen-shot-2017-04-18-at-10-55-17','','','2017-04-24 09:48:53','2017-04-24 09:48:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-18-at-10.55.17-1.png',0,'attachment','image/png',0),(2615,0,'2017-04-24 09:48:59','2017-04-24 09:48:59','','','','inherit','closed','closed','','img_4580-2','','','2017-04-24 09:48:59','2017-04-24 09:48:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/IMG_4580-1.jpg',0,'attachment','image/jpeg',0),(2655,0,'2017-05-01 20:01:29','2017-05-01 20:01:29','','','','inherit','closed','closed','','screen-shot-2017-05-01-at-20-58-33','','','2017-05-01 20:01:29','2017-05-01 20:01:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-01-at-20.58.33-1.png',0,'attachment','image/png',0),(2656,0,'2017-05-01 20:01:32','2017-05-01 20:01:32','','','','inherit','closed','closed','','screen-shot-2017-05-01-at-20-49-59','','','2017-05-01 20:01:32','2017-05-01 20:01:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-01-at-20.49.59-1.png',0,'attachment','image/png',0),(2657,0,'2017-05-01 20:01:34','2017-05-01 20:01:34','','','','inherit','closed','closed','','screen-shot-2017-04-25-at-07-39-55','','','2017-05-01 20:01:34','2017-05-01 20:01:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-04-25-at-07.39.55-1.png',0,'attachment','image/png',0),(2658,0,'2017-05-01 20:01:36','2017-05-01 20:01:36','','','','inherit','closed','closed','','screen-shot-2017-04-25-at-07-35-11','','','2017-05-01 20:01:36','2017-05-01 20:01:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-04-25-at-07.35.11-1.png',0,'attachment','image/png',0),(2668,3,'2017-05-03 10:54:35','2017-05-03 10:54:35','<span style=\"font-weight: 400;\">Foot Biomechanics has gone down a storm with exercise professionals when we have presented or lectured on this topic at events and conferences. In 2016, after a 1hr lecture a newly qualified podiatrist stated...</span>\n\n<i><span style=\"font-weight: 400;\">“Thank you, that 1 hour lecture has just made my entire podiatry degree make complete sense!”</span></i>\n\n<span style=\"font-weight: 400;\">As exercise professionals we really should understand a little bit more about foot function. While a very complex part of the anatomy, it is still a part of The Integrated System that we are working with, when we exercise and train our clients. </span>\n\n<span style=\"font-weight: 400;\">So let’s break it down to the simplest level...</span>\n\n&nbsp;\n<h2><em><b>What do we, as exercise professionals, need to know about foot function and exercise that can contribute to helping our clients movement ability?</b></em></h2>\n<h3>Foot Function</h3>\n<span style=\"font-weight: 400;\">Firstly once we understand </span><b>pronation</b><span style=\"font-weight: 400;\"> and </span><b>supination</b><span style=\"font-weight: 400;\"> the rest is relatively easy. These 2 actions are </span><b>‘triplanar’</b><span style=\"font-weight: 400;\"> meaning there are 3 components to 1 motion. (Donatelli.R, ‘</span><i><span style=\"font-weight: 400;\">The Biomechanics of the Foot &amp; Ankle</span></i><span style=\"font-weight: 400;\">’ 1980) </span>\n<h4><span style=\"color: #33cccc;\"><b>PRONATION</b></span></h4>\n<span style=\"font-weight: 400;\">- Dorsiflexion - Eversion - Abduction = ‘unlocks’ MidTarsalJoint (MTJ), flatter, longer, wider, flexible, mobile foot which enables </span><b>shock absorption</b>\n<h4><span style=\"color: #33cccc;\"><b>SUPINATION</b></span></h4>\n<b>- </b><span style=\"font-weight: 400;\">Plantarflexion - Inversion - Adduction = ‘Locks’ MidTarsalJoint (MTJ), higher, shorter, narrower, stiff, rigid foot which enables a </span><b>rigid foot to ‘toe off’</b><span style=\"font-weight: 400;\"> and therefore propels you forwards during the gait cycle. </span>\n\n<span style=\"font-weight: 400;\">So during the gait cycle the foot SHOULD be able to achieve both pronation and supination. However, we also need them to occur at the appropriate phase of the cycle, in order for it to be </span><span style=\"font-weight: 400;\">biomechanically efficient.</span>\n\n<span style=\"font-weight: 400;\">In this image you can see the gait cycle broken down into its stages.</span>\n\n<img class=\"aligncenter wp-image-1784\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-18-at-10.55.17-1024x642.png\" alt=\"\" width=\"600\" height=\"376\" />\n<h4><span style=\"font-weight: 400; color: #33cccc;\">HS OR HEEL STRIKE</span></h4>\n<span style=\"font-weight: 400;\">When the heel first comes into contact with the floor and so the foot is pronating to absorb the force or shock. </span>\n<h4><span style=\"font-weight: 400; color: #33cccc;\">FFL OR FOREFOOT LANDING</span></h4>\n<span style=\"font-weight: 400;\">When the forefoot then lands coming into contact with the floor and so is still pronating.</span>\n<h4><span style=\"font-weight: 400; color: #33cccc;\">MIDSTANCE</span></h4>\n<span style=\"font-weight: 400;\">When the weight of the body starts to shift over the ankle. This is when the foot transitions from pronation to supination via the ‘windlass mechanism’ (see below), that initiates tension in the plantar fascia taught.</span>\n<h4><span style=\"font-weight: 400; color: #33cccc;\">HL OR HEEL LIFT</span></h4>\n<span style=\"font-weight: 400;\">When the foot starts to become more rigid. The more the big toe (also known as the Halux or 1st metatarsal) extends, the more the plantar fascia tension increases. This creates a more rigid arch for the propulsion phase of supination.</span>\n<h4><span style=\"font-weight: 400; color: #33cccc;\">TO OR TOE OFF</span></h4>\n<span style=\"font-weight: 400;\">The extension of the big toe completes the cycle, eventually lifting to the swing phase.</span>\n<h3>The Problem</h3>\n<span style=\"font-weight: 400;\">One of the most common problems identified is ‘</span><i><span style=\"font-weight: 400;\">over</span></i><span style=\"font-weight: 400;\"> pronation’ and so prescriptions are given to </span><i><span style=\"font-weight: 400;\">reduce</span></i><span style=\"font-weight: 400;\"> the degree of pronation ie; shoes with a supporting arch. This could be the right thing to do if symptoms are occurring.</span>\n\n<span style=\"font-weight: 400;\">However we must be mindful of the fact that our feet </span><i><span style=\"font-weight: 400;\">need</span></i><span style=\"font-weight: 400;\"> to pronate. So considering the gait cycle above, it can be more helpful to consider this foot type as a </span><i><span style=\"font-weight: 400;\">late</span></i><span style=\"font-weight: 400;\"> supinator. In other words, the foot doesn\'t ‘lock’ in time to re-supinate at the midstance phase. This means the foot is still pronating and unlocked leaving the foot in a lax position for propulsion. </span>\n\n<strong>Now there are many things that can influence these triplanar motions as you can imagine:</strong>\n\n<span style=\"font-weight: 400;\">1) Footwear</span>\n\n2) Impact force and frequency\n\n<span style=\"font-weight: 400;\">3) Descending Biomechanical issues (i.e. pelvic dysfunction)</span>\n\n<span style=\"font-weight: 400;\">4) Previous injury</span>\n\n<span style=\"font-weight: 400;\">5) Genetics</span>\n\n<span style=\"font-weight: 400;\">6) Ground surfaces</span>\n\n<span style=\"font-weight: 400;\">7) </span><span style=\"font-weight: 400;\">Job type</span>\n\n<span style=\"font-weight: 400;\">8) Sports</span>\n\n<span style=\"font-weight: 400;\">And so on...</span>\n\n<span style=\"font-weight: 400;\">If we look at the potential problems, it can allow us to understand what we can and can’t influence, or do.</span>\n\n<span style=\"font-weight: 400;\">Orthotic and footwear prescriptions should always be left to the professionals trained to deal with these, like podiatrists for example. However, descending biomechanical problems are certainly within the remit of a PT or exercise professional.</span>\n\n<a href=\"https://www.biomechanicseducation.com/custom-fit-insoles-damaging-workout-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Check out my blog about my visit to Premier Podiatry by clicking here.</a>\n\n<span style=\"font-weight: 400;\">As personal trainers we could conduct a </span><span style=\"font-weight: 400;\">series</span><span style=\"font-weight: 400;\"> of foot screens or use a foot posture index, to get a good idea of whether our client has a propensity for pronation or supination or in fact has a neutral foot. Once we’ve concluded the outcome that most suits our client, we can start to plan the right exercises to prescribe, to either contribute to better foot function or as pre-orthotic conditioning process (see below). This allows us to communicate much more effectively with podiatrists when we need to make a referral.</span>\n\n<span style=\"font-weight: 400;\">We would </span><i><span style=\"font-weight: 400;\">ALWAYS </span></i><span style=\"font-weight: 400;\">advise performing more than one screen, due to the complex nature of the movement planes in the foot and ankle, as it can commonly occur that your client may present as having a propensity for pronation in one screen and a propensity for supination in another.</span>\n<h3>The Solution</h3>\n<span style=\"font-weight: 400;\">What CAN WE do?</span>\n\n<span style=\"font-weight: 400;\">The first thing is to get an understanding of foot anatomy and function, in relation to pronation and supination. Visually someone might look like a pronator yet they are structurally a supinator. If they have a fat pad on the arch for example, it may give the impression of a low arch or pronated foot. So we must never assume anything and certainly not when we don\'t need to!</span>\n\n<span style=\"font-weight: 400;\">This screen is just one example of a foot screen and how simple they can be. This particular screen is simply to identify if the foot has the </span><i><span style=\"font-weight: 400;\">capacity </span></i><span style=\"font-weight: 400;\">to re-supinate.</span>\n<h3>Jacks test (ascending influencer)</h3>\n<img class=\"aligncenter wp-image-1785\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/IMG_4580-1024x768.jpg\" alt=\"\" width=\"600\" height=\"450\" />\n<h3>Why?</h3>\n<span style=\"font-weight: 400;\">The Jack’s test assesses the force required to activate the windlass mechanism. This test assesses the tension in the plantar fascia associated with Heel Lift, Toe Off and Propulsion to identify the foot\'s capacity to supinate. </span>\n\n<span style=\"font-weight: 400;\">The way in which the terminal strands of the plantar fascia wind around the metatarsal heads, has been called the Windlass Mechanism (Hicks, 1954). What is fascinating is that people vary greatly in the force required to dorsiflex the big toe, to activate this Windlass Mechanism. It is believed that orthoses that decrease this force, reducing the strain in the Plantar Fascia and thus improving the efficiency of gait.</span>\n<h3>The Windlass Mechanism</h3>\n<span style=\"font-weight: 400;\">The term ‘Windlass Mechanism’ is used to describe the function of the plantar fascia. </span><span style=\"font-weight: 400;\">The Jack’s test can be used to assess the effect of devices on the establishment of the Windlass Mechanism.</span>\n\n<span style=\"font-weight: 400;\">The plantar fascia is drawn tightly around the big toe joint, so as the big toe moves upwards (dorsiflexes), it develops tension within it. This tension pulls the joints of the foot tightly together, and converts the foot to a rigid structure, in preparation for the forward thrust of propulsion. This increased foot rigidity is reflected by the increase in arch height, as the fore-foot is drawn down and closer to the rear-foot. This is also very important in relation to shoe design.</span>\n<h3>What?</h3>\n<span style=\"font-weight: 400;\">You’ll be using the 1</span><span style=\"font-weight: 400;\">st</span><span style=\"font-weight: 400;\"> metatarsal (big toe) as a lever in the sagittal plane </span>\n<h3>How?</h3>\n<span style=\"font-weight: 400;\">You manually dorsiflex the big toe and estimate the force required. Kneeling in front of your client, who should be standing naturally, place hands flat on either side of their foot. Slide both your thumbs underneath their big toe and pressing the fingers into the floor for support you push the big toe upwards sagittally and as far as it will go. Look to see if the inside of the foot lifts into an arch.</span>\n\n<span style=\"font-weight: 400;\">This effort or resistance it takes to do this can be graded from 1 to 5. </span>\n\n<span style=\"font-weight: 400;\">1= no effort at all to push the toe up</span>\n\n<span style=\"font-weight: 400;\">5= toe impossible to lift and engage any arch or supination </span>\n\n<span style=\"font-weight: 400;\">The tension in the plantar fascia increases as the big toe is dorsiflexed and the subtalar joint must supinate to raise the arch.</span>\n\n<span style=\"font-weight: 400;\">A score of 2-3 is a pass, anything higher or lower is a fail.</span>\n\n4-5 is difficult to lift and therefore means that the subtalar joint has limited capacity to re-supinate the STJ and so they are more likely to be a pronator.\n\n0-1 is really easy to lift and therefore means the subtalar joint easily supinates and the client is less likely to be a pronator.\n<h3>Ok Now What?</h3>\nWell we must still be mindful of appropriate referral and duty of care if we are ever unsure or particularly if clients are symptomatic. However an example of something safe we could do is POC-ing.\n<h3>POC-ing</h3>\nPOC-ing or pre-orthotic conditioning is simply a series of exercises that prepare the lower limb, ankle and foot for orthotics. Often the leg is unprepared for changes to the new position under foot. This can sometimes result in discomfort or achy muscles (DOMS) even though the orthotic is correct for that individual. They may simply need some ‘preparation’ for their new position.\n\n<span style=\"font-weight: 400;\">(Note: Likewise sometimes a wrong orthotic can alleviate pain even though a prescription might be inaccurate, as the simple act of changing the load going through the joints could alleviate loads to a different place.)</span>\n<h4><span style=\"color: #33cccc;\"><strong>EXAMPLE;</strong></span></h4>\n<span style=\"font-weight: 400;\">If you feel your client lacks the capacity to supinate have them sit down and place a resistance band around the inside of their foot, like the image below. Tie or hold the band to give the resistance. </span>\n\n<span style=\"font-weight: 400;\">Now encourage them to turn the foot inwards against the resistance band for 15 reps and 3 sets or as you see fit.</span>\n\n<img class=\"aligncenter wp-image-1786\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/IMG_8821-1024x1024.jpg\" alt=\"\" width=\"600\" height=\"600\" />\n<h3>Final note;</h3>\n<span style=\"font-weight: 400;\">Always use inter-professional relationships for optimum duty of care.</span>\n<h1 style=\"text-align: left;\"><a href=\"https://futurefittraining.gemalpha.com/view/f9bda512d28d43c98e059c7872a146ac0e943b51f6954ebc939e435a4ab0b43f/Bio+Sales+toolkit+Guide\" target=\"_blank\" rel=\"noopener\">Would you like to learn more about foot biomechanics on our Biomechanics Coach course?</a></h1>\n<h2>FIND OUR MORE BY CLICKING HERE <em>I want to learn more please!!</em></h2>\n<p style=\"text-align: center;\"></p>','Over Pronation Or Late Supination?','','draft','closed','closed','','over-pronation-or-late-supination','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.www.biomechanicseducation.com/?p=2668',0,'post','',0),(2671,3,'2017-05-03 10:56:33','2017-05-03 10:56:33','<b>Do Your Knees Knock?</b>\n\n<span style=\"font-weight: 400;\">Only during Halloween? Haha no I mean during exercise or your chosen sport…</span>\n\n<span style=\"font-weight: 400;\">Something prevalent in observing our client’s knees during movement is knock knees, otherwise known as knee valgus.</span>\n\n<span style=\"font-weight: 400;\">Now while looking at the mechanics of the knee, during gait for example, what we see in simple terms is knee flexion and extension, but it is a bit more complex than that.</span>\n\n<span style=\"font-weight: 400;\">For the purposes of this article I am going to keep it simple but, if looking at what happens intrinsically during knee flexion and extension does excite you as much as it does me, and you want to find out more, just leave your email below and I can get in touch about our knee &amp; foot biomechanics workshop.</span>\n\n<b><span style=\"color: #008080;\">Ligament Dominance</span></b>\n\n<span style=\"font-weight: 400;\">Now if we are truly following The Integrated System idea that people have talked about for years (but often still don’t </span><i><span style=\"font-weight: 400;\">really</span></i><span style=\"font-weight: 400;\"> practice), it goes without saying, there are likely to be both ascending and descending biomechanical influences upon human movement.</span>\n\n<span style=\"font-weight: 400;\">Last week we discussed just one of the possible ascending biomechanical issues in the blog </span><b><i>‘Over Pronation or Late Supination’</i></b><span style=\"font-weight: 400;\"> that may affect your client\'s movement, but this week we will be discussing a potential descending influencer.</span>\n<h3>The Problem</h3>\n<span style=\"color: #008080;\"><b>Ligament Dominance</b></span>\n\n<span style=\"font-weight: 400;\">Ligament</span> <span style=\"font-weight: 400;\">dominance occurs when your client allows the knee ligaments, rather than the extremity musculature, to absorb a significant portion of the ground reaction force, during their chosen activity or an exercise you have given them. (</span><i><span style=\"font-weight: 400;\">Hewitt TE, Paterno MV, Myer GD. Strategies for enhancing proprioception and neuromuscular control of the knee. Clin Orthop 2002</span></i><span style=\"font-weight: 400;\">).</span>\n\n<span style=\"font-weight: 400;\">Typically during single-leg landing, pivoting or declaration (all common Anterior Cruciate Ligament (ACL) injury mechanisms), your client may allow the ground reaction force to control the direction of motion of the lower extremity joints. This motion is especially evident at the knee; which is not only influenced by direct external moments (the floor), but also by the ankle and hip internal moments. (</span><i><span style=\"font-weight: 400;\">Winter DA, Biomechanics and Motor Control of Human Movement 2</span></i><i><span style=\"font-weight: 400;\">nd</span></i><i><span style=\"font-weight: 400;\"> Ed. New York, NY: John Wiley and Sons; 1990). </span></i><span style=\"font-weight: 400;\">In these instances the neuromuscular and ligamentous control of the joint is unbalanced</span><i><span style=\"font-weight: 400;\">, (Hewett TE, Myer GD, Ford KR, et al</span></i><span style=\"font-weight: 400;\">).</span>\n<h3>So What?</h3>\n<span style=\"font-weight: 400;\">Measurement of neuromuscular imbalances allows individuals who are at potential risk of ACL injury to be identified. A client may display techniques that place them at an increased risk because of one or more imbalances. During single-leg landing, pivoting or deceleration, the motion of a </span><i><span style=\"font-weight: 400;\">ligament dominant knee</span></i><span style=\"font-weight: 400;\"> in a client may be directed by the external ground reaction forces, rather than by their musculature.</span>\n\n<span style=\"color: #008080;\"><strong>A Runner</strong></span>\n\n<span style=\"font-weight: 400;\">For example the client who wants to train with you to prepare for a race will ultimately need to practice running, of course. However it would be prudent to identify if they have any knee stability issues while running, because if they do, they may require bespoke strength work to reduce their risk of injury. As we know, the impact and repetitive nature of this kind of activity, has a high instance of ‘overuse’ symptoms. This force of landing transfers up *The Integrated System, through the pelvis and spine, at which point there is a rotational force too. If the ligaments are dominate in taking the impact, rather than the lateral hip muscles, this ‘shock’ can stress not only the knee, but also the body higher up.</span>\n\n<span style=\"font-weight: 400;\">So if we can assess, monitor, exercise, re-assess and create more stability with smart individualised programming, your client will be a more efficient runner, with a reduced risk of hurting their knee.</span>\n\n<span style=\"font-weight: 400;\">*See more detail below about further considerations </span>\n<h3>How To Identify If Your Client Is Ligament Dominant</h3>\n<span style=\"font-weight: 400;\">The evaluation of a client’s level of </span><i><span style=\"font-weight: 400;\">ligament dominance</span></i><span style=\"font-weight: 400;\"> can be accomplished using a 31cm box-drop test combined with a maximum effort vertical leap. (</span><i><span style=\"font-weight: 400;\">Ford KR, Myer GD, Hewett TE. Valgus knee motion during landing in high school female and male basketball players. Med Sci Sports Exerc. 2003</span></i><span style=\"font-weight: 400;\">).</span>\n\n<img class=\"aligncenter size-full wp-image-1802\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-04-25-at-07.39.55.png\" alt=\"\" width=\"612\" height=\"318\" />\n\n<span style=\"font-weight: 400;\">When dropping from a box, a </span><i><span style=\"font-weight: 400;\">ligament dominant</span></i><span style=\"font-weight: 400;\"> client displays substantial medial knee motion in the transverse plane which is visually identified upon the point of the foot contacting the floor. </span>\n\n<span style=\"font-weight: 400;\">Medial knee motion may be related to an overall dynamic knee valgus ie; femoral adduction, femoral internal rotation in relation to the hip, tibial external rotation in relation to the femur with or without foot pronation.</span>\n\n<span style=\"font-weight: 400;\">Movement patterns that place your client in positions of high ACL load (excessive external knee abduction moments), combined with a low knee flexion angle, may well increase the risk for ligament injury or failure (</span><i><span style=\"font-weight: 400;\">Lloyd DG</span></i><span style=\"font-weight: 400;\">).</span>\n<h3>Now It’s Your Turn</h3>\n<span style=\"font-weight: 400;\">So using your slow motion setting on your phone or camera, squat down in front of your client and ask them to let one leg hang off the box. Then ask them to drop onto the hanging leg allowing the knee to flex to 30 degrees upon landing. Now watch back the slow mo and notice the exact point the foot comes into contact with the floor and notice what action occurs at the knee. </span>\n\n<strong><span style=\"color: #008080;\">You can see an example of the drop box test in action here:</span></strong>\n\n<iframe src=\"https://www.youtube.com/embed/1dZ_Ta3S00U\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\n<span style=\"color: #008080;\"><b>Ask yourself;</b></span>\n\n<span style=\"font-weight: 400;\">Does the knee ‘flick’ inwards?</span>\n\n<span style=\"font-weight: 400;\">Does the knee land medially?</span>\n\n<span style=\"font-weight: 400;\">If you answer yes to one of these then the test is positive and this would indicate an unstable knee which increases their risk of injury. Always reassure your client this is quite common and more often than not, a simple bespoke exercise programme will address it.</span>\n<h3>The Solution</h3>\n<span style=\"font-weight: 400;\">If we consider that the ligaments are taking the force, then the muscles that would limit this knee valgus would logically produce the opposite movement.</span>\n\n<span style=\"font-weight: 400;\">What is knee valgus in terms of </span><i><span style=\"font-weight: 400;\">movement?</span></i>\n\n<span style=\"font-weight: 400;\">Well if the knee is dropping inwards in terms of </span><i><span style=\"font-weight: 400;\">analysing the movement</span></i><span style=\"font-weight: 400;\"> this would be hip adduction and internal rotation of the hip. This movement comes from the pelvis of course but what this means is there are simple ways of strengthening the hip that will contribute to a more stable knee upon landing and taking load.</span>\n\n<span style=\"font-weight: 400;\">The opposing movements to hip adduction and hip internal rotation would be hip abduction and hip external rotation.</span>\n\n<span style=\"font-weight: 400;\">So any strengthening exercises for these 2 movements individually or combined would likely contribute to improving ligament dominance and therefore create a more stable load through the knee.</span>\n\n<img class=\"aligncenter size-large wp-image-1804\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-01-at-20.58.33-1024x416.png\" alt=\"\" width=\"840\" height=\"341\" />\n\n<span style=\"font-weight: 400;\">This is just one of the knee assessments we teach during the </span><b>Knee and Foot Biomechanics workshop</b><span style=\"font-weight: 400;\"> and we should always take into account The Integrated System when it comes to assessment and exercise prescription for true long term objectivity in improving human movement.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><b>If you are interested in learning more about this 2-day workshop; fill in your details below and we’ll get in touch to tell you more.</b></p>\n<img class=\"aligncenter wp-image-1801\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-01-at-20.49.59-1024x508.png\" alt=\"\" width=\"600\" height=\"298\" />\n\n[activecampaign form=19]\n\n<b>Other References</b>','How To Measure Neuromuscular Imbalances & Identify If Your Client Is At Risk Of ACL Injury','','draft','closed','closed','','how-to-measure-neuromuscular-imbalances-identify-if-your-client-is-at-risk-of-acl-injury','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.www.biomechanicseducation.com/?p=2671',0,'post','',0),(2720,3,'2017-05-16 08:18:03','2017-05-16 08:18:03','<span style=\"font-weight: 400;\">Anatomy Is Pretty Grey… Movement Is More Black &amp; White. </span>\n\n<span style=\"font-weight: 400;\">Anatomy on the whole can be very a complex subject and a nightmare for some to learn and grasp. Yet there are very simple ways of applying what you NEED to know when it comes to initially analysing movement and exercise prescription.</span>\n\n<span style=\"font-weight: 400;\">One of the things we teach during our workshops is to forget the muscles at first, analyse the movement in relation to joint actions, THEN go back and look at which muscles contribute to that movement.</span>\n\n<span style=\"font-weight: 400;\">This blog is to talk about the complexities of one particular muscle and how this may or may not influence your exercise prescription. </span>\n\n<b>Why The Adductor Magnus Muscle?</b>\n\n<span style=\"font-weight: 400;\">Well first of all it is my favorite muscle because as I began to research its attachments and actions several years ago, I became quite fascinated by all that it does. Particularly, its involvement in opposing actions and the idea of it being also known as, “the extra hamstring”!</span>\n\n<span style=\"font-weight: 400;\">Clearly I am not the only one fascinated by the adductor magnus….</span>\n\n<i><span style=\"font-weight: 400;\">“Just as we must be cognisant of the potential injuries that can result from an imbalance between the quads and hamstrings, we must recognise that the adductor/abductor strength ratio must be appropriate as well.” Eric Cressey (Construction by adduction - T nation 2004)</span></i>\n\n<b>Where Is It? What Does It Do?</b>\n\n<img class=\"size-medium wp-image-2762 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2016-12-18-at-06.52.03-224x300.png\" alt=\"screen-shot-2016-12-18-at-06-52-03\" width=\"224\" height=\"300\" />\n\n<span style=\"font-weight: 400;\">The word </span><b>adductor</b><span style=\"font-weight: 400;\"> comes from the Latin words “</span><b>ad</b><span style=\"font-weight: 400;\">” which means </span><b>toward</b><span style=\"font-weight: 400;\"> and “</span><b>ducere</b><span style=\"font-weight: 400;\">” which means </span><b>to lead</b><span style=\"font-weight: 400;\">.</span>\n\n<span style=\"font-weight: 400;\">The word </span><b>magnus</b><span style=\"font-weight: 400;\"> is a Latin word meaning </span><b>large.</b>\n\n<span style=\"font-weight: 400;\">Adductor magnus then, is a large muscle that leads something toward the body.</span>\n\n<span style=\"font-weight: 400;\">This muscle is the largest of the adductor muscles and, by some measures, the second largest muscle in the body after Gluteus maximus. It is also often underestimated when it comes to good pelvic function.</span>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">Would you like a muscle energy technique to check your pelvic function &amp; release any spasm there might be, allowing you to see improved movement and potentially reduced pain?</span></i></a></p>\n<p style=\"text-align: center;\"><i><span style=\"font-weight: 400;\">Download your 4-Sign Screen &amp; Release by Clicking HERE</span></i></p>\n<b>Adductor Magnus has 2 parts; according to the sports injury clinic</b>\n\n<b>Adductor Head</b><span style=\"font-weight: 400;\"> = Inferior Ramus of Pubis. Gluteal Tuberosity, Linea Aspera &amp; proximal Supracondylar line. Adducts, flexes &amp; medially rotates the hip.</span>\n\n<b>Hamstring Head</b><span style=\"font-weight: 400;\"> = Ischial Tuberosity. Adductor Tubercle of the Femur. Extends the hip.</span>\n\n<span style=\"font-weight: 400;\">Due to this wonderful meshy fan of fibres, this beast not only adducts the hip but it also can flex AND extend the hip!</span>\n\n<span style=\"font-weight: 400;\">WHAT???</span>\n\n<span style=\"font-weight: 400;\">How on earth can one muscle contract in opposite directions?</span>\n\n<span style=\"font-weight: 400;\">Yes this is a “</span><i><span style=\"font-weight: 400;\">I need to </span></i><b><i>see</i></b><i><span style=\"font-weight: 400;\"> this</span></i><span style=\"font-weight: 400;\">” moment isn\'t it. Rubber band, life sized skeleton and several pairs of hands. </span>\n\n<img class=\"size-medium wp-image-2765 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/05/IMG_9354-300x300.jpg\" alt=\"img_9354\" width=\"300\" height=\"300\" />\n\n<span style=\"font-weight: 400;\">BUT WAIT!</span>\n\n<span style=\"font-weight: 400;\">It does more! The part that attaches to the linea aspera can also act as BOTH a medial and lateral rotator - really?! OK now I sense heads exploding.</span>\n\n<span style=\"font-weight: 400;\">Once you change hip angles, or start points, the ‘line of pull’ can change, therefore potentially (and beautifully in the case of this particular muscle) changing the muscles action to be antagonistic to itself. </span>\n\n<b>Other Descriptions and Research</b>\n\n<i><span style=\"font-weight: 400;\">“While adduction is the primary function of each, the amount of hip flexion present determines whether or not some of the adductors work on the femur as medial or lateral rotators and extensors or flexors. As odd as it may sound, the adductors are important as both hip flexors and extensors during the sprinting motion. Depending on the individual, the shift from flexor to extensor role occurs between 50 and 70 degrees of hip flexion. This phenomenon is possible due to the distal insertion point on the femur. When the hip is extended, the adductors\' line of pull is anterior to the hip joint axis, whereas this line of pull is posterior to the axis when the hip is flexed.” Cressey (2004)</span></i>\n\n<span style=\"font-weight: 400;\">EMG studies also show that ‘</span><i><span style=\"font-weight: 400;\">adductor magnus was most active during internal rotation and  extension. This may imply a great potential to absorb vertical ground reaction forces in functional tasks like walking and running and contribute to hi and pelvic rotation during gait’ (Benn et al, jsams 2017)</span></i>\n\n<span style=\"font-weight: 400;\">Reading several articles and studies reported in </span><a href=\"http://www.strengthandconditioningresearch.com\"><span style=\"font-weight: 400;\">www.strengthandconditioningresearch.com</span></a>\n\n<i><span style=\"font-weight: 400;\">“….Despite its name, the adductor magnus is actually a very important hip extensor when the hip is flexed. Németh and Ohlsén (1985) reported that the adductor magnus muscle moment arm length for hip extension was 5.7 – 6.1cm at 90 degrees of hip flexion, compared to 4.0 – 4.8cm for the hamstrings, and 3.1 – 3.3cm for the gluteus maximus</span></i>\n\n<i><span style=\"font-weight: 400;\">This means that exercises that have peak contractions in positions of hip flexion (like full squats) likely train the adductor magnus very effectively. </span></i>\n\n<i><span style=\"font-weight: 400;\">Ignoring the adductor magnus is therefore likely to lead to a failure to maximise overall muscular hypertrophy in the lower body.</span></i>\n\n<i><span style=\"font-weight: 400;\">The adductor magnus appears to display a relatively mixed muscle fibre type proportion, albeit with a greater proportion of type I muscle fibres. Garrett et al. (1984)The adductor magnus displays a mixed-to-slow muscle fibre type, which may imply higher repetitions with lower loads and slower bar speeds may be beneficial.”...</span></i><span style=\"font-weight: 400;\">Chris Beardsley definitely puts some interesting stuff out!</span>\n\n<img class=\"size-medium wp-image-2761 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-01-11-at-10.11.31-300x166.png\" alt=\"screen-shot-2017-01-11-at-10-11-31\" width=\"300\" height=\"166\" />\n\n<span style=\"font-weight: 400;\">We should note that each part (hamstring and adductor) has different nerve supply, so some may say it is not such a big deal, as each component doesn’t have to engage at the same time as the other. The </span><b>adductor</b><span style=\"font-weight: 400;\"> portion is innervated by the posterior division of the obturator </span><b>nerve,</b><span style=\"font-weight: 400;\"> while the hamstring portion is innervated by the tibial </span><b>nerve</b><span style=\"font-weight: 400;\">. But if you are like me, we are simply trying to move on from those anatomy books, right!?</span>\n\n<span style=\"font-weight: 400;\">Yes I know - NOW can you understand why this is my favourite muscle!? </span>\n\n<span style=\"font-weight: 400;\">No? OK OK, hands up, I am a geek. :D</span>\n\n<span style=\"font-weight: 400;\">However this one beautiful piece of human tissue explains why the human body is both fantastical and complex and why it contributes to so much controversy when we are trying to learn about it and understand it.</span>\n\n<span style=\"font-weight: 400;\">We ALL LOVE a bit of controversy right!? (that’s why everyone loves the BGT auditions more than the actually live show isn\'t it?)</span>\n\n<span style=\"font-weight: 400;\">Sorry back to the blog….</span>\n\n<b>SO WHAT? </b>\n\n<span style=\"font-weight: 400;\">A problem with this muscle could influence the integrated system in so many ways but here is an example...</span>\n\n<i><span style=\"font-weight: 400;\">“Additionally, those of you that suffer from patellofemoral pain syndrome might be interested to note that weak adductors are one of several potential causes for your persistent knee troubles. The origin of the vastus medialis oblique is at the tendon of the adductor magnus, so adductor based strength training merits inclusion in a rehabilitation program” </span></i>\n\n<i><span style=\"font-weight: 400;\">“If being fast tickles your fancy more than moving big weights, you\'ll be interested to note that the adductor magnus rivals the hamstrings and gluteus maximus in terms of its contribution to sprinting speed”, Cressey (2004).</span></i>\n\n<b>In Conclusion</b>\n\n<span style=\"font-weight: 400;\">We are taught at L2/3 that muscles go from point A to B and do an action. </span>\n\n<span style=\"font-weight: 400;\">That they have an antagonist. </span>\n\n<span style=\"font-weight: 400;\">That they are part of a group. </span>\n\n<span style=\"font-weight: 400;\">However as you </span><i><span style=\"font-weight: 400;\">really</span></i><span style=\"font-weight: 400;\"> learn about them you realise the laws don\'t </span><i><span style=\"font-weight: 400;\">always</span></i><span style=\"font-weight: 400;\"> apply </span><i><span style=\"font-weight: 400;\">so</span></i><span style=\"font-weight: 400;\"> simply in every case; like in the case of Adductor Magnus. </span>\n\n<span style=\"font-weight: 400;\">In the gym, we don’t really NEED to know the exact attachments of Adductor Magnus, in order to teach someone an exercise. It might also be argued that we don’t really </span><i><span style=\"font-weight: 400;\">need</span></i><span style=\"font-weight: 400;\"> to know the exact attachments, to do soft tissue work on the adductor group too.</span>\n\n<span style=\"font-weight: 400;\">My suggestion is of course to study anatomy for confidence and for fascination, but try NOT to get caught up in the stress of trying to recall it all </span><span style=\"font-weight: 400;\">immediately,</span><span style=\"font-weight: 400;\"> while in a session with a client. </span>\n\n<span style=\"font-weight: 400;\">Over time, as you find reasons to study a particular area or muscle, for some reason you will start to recall it more easily. You will also realise just how </span><i><span style=\"font-weight: 400;\">GREY</span></i><span style=\"font-weight: 400;\"> this subject matter is when it comes to laws (s’cuse the pun!), in fact, it creates debates even among the experts - (as I research the Psoas Paradox for another Juicemail!).</span>\n\n<span style=\"font-weight: 400;\">Adductor Magnus is one example of why, as exercise professionals, we should find ways to recall detailed anatomy, even if we do firstly focus on the movement/s. This then allows us to understand movement and exercise in even greater detail for designing our client programme. </span>\n\n<span style=\"font-weight: 400;\">GO ON Geek confessional = tell me which is your favourite muscle and why….? lol.</span>\n<img class=\"size-medium wp-image-2760 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-16-at-06.15.15-300x147.png\" alt=\"screen-shot-2017-05-16-at-06-15-15\" width=\"300\" height=\"147\" />\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/pelvis-module\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">If Pelvic Biomechanics interests you, click here to check out the fantastic 2-day practical workshop we have that will see your skill set hugely improved for your clients.</span></i></a></p>\n<b>References;</b>\n\n<a href=\"https://en.wikipedia.org/wiki/Adductor_magnus_muscle\"><span style=\"font-weight: 400;\">https://en.wikipedia.org/wiki/Adductor_magnus_muscle</span></a>\n\n<a href=\"http://www.sportsinjuryclinic.net/anatomy/human-muscles/adductor-magnus\"><span style=\"font-weight: 400;\">http://www.sportsinjuryclinic.net/anatomy/human-muscles/adductor-magnus</span></a>\n\n<a href=\"http://rad.washington.edu/muscle-atlas/adductor-magnus/\"><span style=\"font-weight: 400;\">http://rad.washington.edu/muscle-atlas/adductor-magnus/</span></a>\n\n<a href=\"http://www.lumen.luc.edu/lumen/meded/grossanatomy/dissector/mml/admg.htm\"><span style=\"font-weight: 400;\">http://www.lumen.luc.edu/lumen/meded/grossanatomy/dissector/mml/admg.htm</span></a>\n\n<a href=\"http://www.teachpe.com/anatomy/muscles/add_magnus.php\"><span style=\"font-weight: 400;\">http://www.teachpe.com/anatomy/muscles/add_magnus.php</span></a>\n\n<a href=\"http://www.orthobullets.com/anatomy/10067/adductor-magnus\"><span style=\"font-weight: 400;\">http://www.orthobullets.com/anatomy/10067/adductor-magnus</span></a>\n\n<a href=\"https://www.yoganatomy.com/adductor-magnus-muscle/\"><span style=\"font-weight: 400;\">https://www.yoganatomy.com/adductor-magnus-muscle/</span></a>\n\n<a href=\"http://ericcressey.com/strength-and-conditioning-textbook-synergists-and-antagonists\"><span style=\"font-weight: 400;\">http://ericcressey.com/strength-and-conditioning-textbook-synergists-and-antagonists</span></a>\n\n<a href=\"https://www.t-nation.com/training/construction-by-adduction\"><span style=\"font-weight: 400;\">https://www.t-nation.com/training/construction-by-adduction</span></a>\n\n<a href=\"http://rhinofitness.ca/articles/article_trigger_point_adductors.html\"><span style=\"font-weight: 400;\">http://rhinofitness.ca/articles/article_trigger_point_adductors.html</span></a>\n\n<a href=\"http://www.jsams.org/article/S1440-2440(17)30012-9/abstract\"><span style=\"font-weight: 400;\">http://www.jsams.org/article/S1440-2440(17)30012-9/abstract</span></a>\n\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2989399/\"><span style=\"font-weight: 400;\">https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2989399/</span></a>\n\n<span style=\"font-weight: 400;\">https://www.strengthandconditioningresearch.com/muscles/adductors/</span>','Anatomy 50 Shades Of Grey','','draft','closed','closed','','anatomy-50-shades-of-grey','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.www.biomechanicseducation.com/?p=2720',0,'post','',0),(2721,0,'2017-05-16 08:17:34','2017-05-16 08:17:34','','','','inherit','closed','closed','','screen-shot-2017-05-16-at-06-19-57','','','2017-05-16 08:17:34','2017-05-16 08:17:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-16-at-06.19.57-1.png',0,'attachment','image/png',0),(2722,0,'2017-05-16 08:17:35','2017-05-16 08:17:35','','','','inherit','closed','closed','','img_9354','','','2017-05-16 08:17:35','2017-05-16 08:17:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/IMG_9354-1.jpg',0,'attachment','image/jpeg',0),(2723,0,'2017-05-16 08:17:37','2017-05-16 08:17:37','','','','inherit','closed','closed','','screen-shot-2017-05-16-at-06-15-24','','','2017-05-16 08:17:37','2017-05-16 08:17:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-16-at-06.15.24-1.png',0,'attachment','image/png',0),(2724,0,'2017-05-16 08:17:39','2017-05-16 08:17:39','','','','inherit','closed','closed','','screen-shot-2017-05-16-at-06-15-15','','','2017-05-16 08:17:39','2017-05-16 08:17:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-16-at-06.15.15-1.png',0,'attachment','image/png',0),(2725,0,'2017-05-16 08:17:41','2017-05-16 08:17:41','','','','inherit','closed','closed','','img_9448','','','2017-05-16 08:17:41','2017-05-16 08:17:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/IMG_9448-1.png',0,'attachment','image/png',0),(2726,0,'2017-05-16 08:17:43','2017-05-16 08:17:43','','','','inherit','closed','closed','','img_9327','','','2017-05-16 08:17:43','2017-05-16 08:17:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/IMG_9327-1.jpg',0,'attachment','image/jpeg',0),(2727,0,'2017-05-16 08:17:45','2017-05-16 08:17:45','','','','inherit','closed','closed','','screen-shot-2017-01-11-at-10-11-31','','','2017-05-16 08:17:45','2017-05-16 08:17:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-01-11-at-10.11.31-1.png',0,'attachment','image/png',0),(2728,0,'2017-05-16 08:17:47','2017-05-16 08:17:47','','','','inherit','closed','closed','','screen-shot-2016-12-18-at-06-52-03','','','2017-05-16 08:17:47','2017-05-16 08:17:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2016-12-18-at-06.52.03-1.png',0,'attachment','image/png',0),(2729,0,'2017-05-16 08:17:49','2017-05-16 08:17:49','','','','inherit','closed','closed','','screen-shot-2016-12-18-at-06-51-56','','','2017-05-16 08:17:49','2017-05-16 08:17:49','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2016-12-18-at-06.51.56-1.png',0,'attachment','image/png',0),(2755,3,'2017-05-22 20:02:25','2017-05-22 20:02:25','One of the most disabling and common problems in golfers today (and our society in general) is back pain.  In fact, according to a top researcher, lower back pain is as common as headaches in modern society. Crazy right?\n\n<span style=\"font-weight: 400;\">A recent study also showed that if you see your GP with your back pain, and he then refers you to a specialist, who then sends you for X-rays and MRI scans, the accuracy of diagnosis is 15-20%.  A frightening, yet little known fact.</span>\n\n<span style=\"font-weight: 400;\">Unfortunately the principles of modern medicine mean that the medical profession cannot treat an injury without an accurate diagnosis; so is there any wonder why the incidence of back pain has doubled every 10 years for the last 30 years?</span>\n\n<span style=\"font-weight: 400;\">As you can imagine, the problem is made even worse when you have had back pain for some time, especially if you are a golfer where the high speed spinal movements increase the pressure on your spine significantly.</span>\n\n<span style=\"font-weight: 400;\">The problem is, when you’ve had an injury for more than 6 weeks, another part of your body will start to compensate, leading to new pains and a deterioration in your condition. So you can actually end up with more than one injury due to the mechanical compensations, which makes diagnosis even more difficult. We need to shift the paradigm and look at back pain differently.</span>\n<h3><b>A New Way Of Looking At Back Pain</b></h3>\n<span style=\"font-weight: 400;\">Scientists, called Biomechanists, and exercise professionals trained as Biomechanics Coaches</span><span style=\"font-weight: 400;\">™</span><span style=\"font-weight: 400;\"> have been looking at back pain quite differently for some time. They look at the </span><i><span style=\"font-weight: 400;\">mechanical</span></i><span style=\"font-weight: 400;\"> causes of back pain rather than focusing on the pain itself. They have found that they get better results by managing the biomechanical causes than many in the medical profession achieve by treating the symptoms.</span>\n\n<span style=\"font-weight: 400;\">In fact, independent research has shown that if you see a Physiotherapist over a 6 week period for your low grade back pain, your average improvement will be around 39% in functional capacity (the capacity of your back to perform work). If however, you were to perform an exercise programme to manage the mechanical causes of your back pain, your average improvement would be around 140%. A profound difference and one that cannot be ignored!</span>\n\n<span style=\"font-weight: 400;\">This biomechanical approach is rapidly taking over from the medical approach in popularity, as it is a much more effective method of treating back pain.</span>\n<h3><b>How The Median Nerve Can Affect A Golfer\'s Swing</b></h3>\n<span style=\"font-weight: 400;\">A compensation that is often found in golfers is a tight median nerve. Nerves really don’t like to be stretched and particularly at high speed. The anatomy of the Median Nerve and the positions required in the golf swing will also reduce the amount the player can complete his back swing and adopt the best position at the top of his swing.  This would be due to the muscle spasm that builds up in muscles like Pectoralis Minor to try and protect the inflexible nerve.</span>\n<p style=\"text-align: center;\"><img class=\"alignnone size-medium wp-image-2775\" src=\"http://dev-biomechanicseducation-com.stackstaging.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-22-at-07.13.31-300x137.png\" alt=\"screen-shot-2017-05-22-at-07-13-31\" width=\"300\" height=\"137\" /></p>\n<span style=\"font-weight: 400;\">The greater the muscle spasm (which is unbeknown to the player as its sub clinical at this point) the more he\'ll try and force his shoulder turn, which then increases the tension etc etc.</span>\n<h3><b>Pectoralis Minor</b></h3>\n<span style=\"font-weight: 400;\">If we consider the Pectoralis Minor (PM) muscle again from a previous Juicemail <a href=\"https://www.biomechanicseducation.com/case-study-elite-lifter-laura-hewitt/\" target=\"_blank\" rel=\"noopener\">(Case Study Elite Lifter Laura Hewitt)</a> you may recall how we discussed how it could limit your thoracic spines ability to extend.</span>\n\n<span style=\"font-weight: 400;\">What is also apparent here therefore is how the PM muscle would also limit thoracic rotation</span>\n\n<span style=\"font-weight: 400;\">If your thoracic spine doesn’t have the capacity to rotate, the golf swing movement has to come from somewhere, right? This could then contribute to excessive movement around joints lower down in the lumbar spine for example and could eventually if unaddressed result in low back pain.</span>\n\n<span style=\"font-weight: 400;\">The key to a sound and reproducible swing, is to obviate any tension in the swing, so help with timing and rhythm.  So by also mobilising the median nerve, we are helping with all of the above.</span>\n<h3><b>The Take Home Message</b></h3>\n<span style=\"font-weight: 400;\">Of course no single method can be the panacea of all ills, but what we are finding is that if the mechanical causes are addressed, the pain can subside without treatment on the \'injury\', whatever it might be.  Sometimes treatment is also required, but often golfers find that once they\'ve committed to an exercise programme to address the causes of their pain, they are then more able to manage the problem themselves.  Then if local treatment is necessary, it is more likely to be successful, as the mechanical causes are no longer present.</span>\n\n<span style=\"font-weight: 400;\">Considering the problems that golfers can have with back pain, prevention is important as it’s far less painful, less inconvenient and far less expensive! The same biomechanical principles that can help manage back pain, can be adopted to minimise the risk.  </span>\n\n<span style=\"font-weight: 400;\">So the ‘take home message’ is to find a professional who can assess your mechanic (like a Biomechanics Coach</span><span style=\"font-weight: 400;\">™</span><span style=\"font-weight: 400;\">) get yourself or your golfer screened and learn which are the best exercises for those results.</span>\n<h3><b>Practical Tasks To Think About:</b></h3>\n<strong>Thoracic Spine;</strong>\n\n<span style=\"font-weight: 400;\">When considering how we might mobilise the thoracic spine what kind of exercises can you think of that would improve ‘pure’ thoracic rotation?</span>\n\n<strong>Median Nerve;</strong>\n\n<span style=\"font-weight: 400;\">If you look at the pathway the Median Nerve follows in the arm, try working out how you might put it onto a stretched position, to then release and add the tension very slowly as a nerve mobilisation technique.</span>\n<h3><b>How We Can Help...</b></h3>\n<span style=\"font-weight: 400;\">Another option is to attend our one day <a href=\"https://biomechanicseducation.clickfunnels.com/golf-biomechanics-workshop\" target=\"_blank\" rel=\"noopener\">Golf Biomechanics workshop</a> June 30th at NLSSM.</span>\n\n<span style=\"font-weight: 400;\">This fantastic sports specific workshop will be delivered by Martin Haines, PGA advisor, Biomechanics Coach</span><span style=\"font-weight: 400;\">™</span><span style=\"font-weight: 400;\"> and chartered Physiotherapist. During the day you will learn about:</span>\n\n<span style=\"font-weight: 400;\">✓ The correct terminology to approach golf clubs</span>\n\n<span style=\"font-weight: 400;\">✓ How to assess your golf players biomechanics</span>\n\n<span style=\"font-weight: 400;\">✓ How to improve your golf players biomechanics</span>\n\n<span style=\"font-weight: 400;\">✓ How to improve velocity &amp; planes of swing</span>\n\n<span style=\"font-weight: 400;\">✓ How to better prepare your player for reduced risk of injury</span>\n\n<span style=\"font-weight: 400;\">This workshop is aimed at Fitness Professionals, PT’s, Golf Coaches and practitioners involved in or interested in Golf Performance. Learn from the best and enter professional discussions with like-minded people.</span>\n\n<img class=\"size-medium wp-image-2774 aligncenter\" src=\"http://dev-biomechanicseducation-com.stackstaging.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-22-at-07.13.21-300x155.png\" alt=\"screen-shot-2017-05-22-at-07-13-21\" width=\"300\" height=\"155\" />\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/golf-biomechanics-workshop\" target=\"_blank\" rel=\"noopener\"><b>If you’re interested in finding out more, click here.</b></a></p>\n<p style=\"text-align: center;\"><img class=\"size-medium wp-image-2781 aligncenter\" src=\"http://dev-biomechanicseducation-com.stackstaging.com/wp-content/uploads/2017/05/BIOMECHANICS-COACH-300x157.png\" alt=\"biomechanics-coach\" width=\"300\" height=\"157\" /></p>\n<span style=\"font-weight: 400;\">Finally if you have a minimum of level 3 anatomy knowledge you could just go straight into our <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Biomechanics Coach</a></span><span style=\"font-weight: 400;\">™</span><span style=\"font-weight: 400;\"> Diploma to learn the entire system. This enables you to assess and correct every joint and structure within the Integrated System of our bodies to help ALL of your clients whatever their sport or lifestyle.</span>\n\n&nbsp;','How Back Pain Whilst Playing Golf Can Stem From A Dysfunction In The Median Nerve','','draft','closed','closed','','how-back-pain-whilst-playing-golf-can-stem-from-a-dysfunction-in-the-median-nerve','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=2755',0,'post','',0),(2756,0,'2017-05-22 20:01:57','2017-05-22 20:01:57','','','','inherit','closed','closed','','screen-shot-2017-05-22-at-21-01-16','','','2017-05-22 20:01:57','2017-05-22 20:01:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-22-at-21.01.16-1.png',0,'attachment','image/png',0),(2759,0,'2017-05-23 05:27:05','2017-05-23 05:27:05','','','','inherit','closed','closed','','screen-shot-2017-05-23-at-06-26-43','','','2017-05-23 05:27:05','2017-05-23 05:27:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-23-at-06.26.43-1.png',0,'attachment','image/png',0),(2760,3,'2017-05-23 05:27:30','2017-05-23 05:27:30','One of the most disabling and common problems in golfers today (and our society in general) is back pain.  In fact, according to a top researcher, lower back pain is as common as headaches in modern society. Crazy right?\n\n<span style=\"font-weight: 400;\">A recent study also showed that if you see your GP with your back pain, and he then refers you to a specialist, who then sends you for X-rays and MRI scans, the accuracy of diagnosis is 15-20%.  A frightening, yet little known fact.</span>\n\n<span style=\"font-weight: 400;\">Unfortunately the principles of modern medicine mean that the medical profession cannot treat an injury without an accurate diagnosis; so is there any wonder why the incidence of back pain has doubled every 10 years for the last 30 years?</span>\n\n<span style=\"font-weight: 400;\">As you can imagine, the problem is made even worse when you have had back pain for some time, especially if you are a golfer where the high speed spinal movements increase the pressure on your spine significantly.</span>\n\n<span style=\"font-weight: 400;\">The problem is, when you’ve had an injury for more than 6 weeks, another part of your body will start to compensate, leading to new pains and a deterioration in your condition. So you can actually end up with more than one injury due to the mechanical compensations, which makes diagnosis even more difficult. We need to shift the paradigm and look at back pain differently.</span>\n<h3><b>A New Way Of Looking At Back Pain</b></h3>\n<span style=\"font-weight: 400;\">Scientists, called Biomechanists, and exercise professionals trained as Biomechanics Coaches</span><span style=\"font-weight: 400;\">™</span><span style=\"font-weight: 400;\"> have been looking at back pain quite differently for some time. They look at the </span><i><span style=\"font-weight: 400;\">mechanical</span></i><span style=\"font-weight: 400;\"> causes of back pain rather than focusing on the pain itself. They have found that they get better results by managing the biomechanical causes than many in the medical profession achieve by treating the symptoms.</span>\n\n<span style=\"font-weight: 400;\">In fact, independent research has shown that if you see a Physiotherapist over a 6 week period for your low grade back pain, your average improvement will be around 39% in functional capacity (the capacity of your back to perform work). If however, you were to perform an exercise programme to manage the mechanical causes of your back pain, your average improvement would be around 140%. A profound difference and one that cannot be ignored!</span>\n\n<span style=\"font-weight: 400;\">This biomechanical approach is rapidly taking over from the medical approach in popularity, as it is a much more effective method of treating back pain.</span>\n<h3><b>How The Median Nerve Can Affect A Golfer\'s Swing</b></h3>\n<span style=\"font-weight: 400;\">A compensation that is often found in golfers is a tight median nerve. Nerves really don’t like to be stretched and particularly at high speed. The anatomy of the Median Nerve and the positions required in the golf swing will also reduce the amount the player can complete his back swing and adopt the best position at the top of his swing.  This would be due to the muscle spasm that builds up in muscles like Pectoralis Minor to try and protect the inflexible nerve.</span>\n<p style=\"text-align: center;\"><img class=\"alignnone size-medium wp-image-2775\" src=\"http://dev-biomechanicseducation-com.stackstaging.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-22-at-07.13.31-300x137.png\" alt=\"screen-shot-2017-05-22-at-07-13-31\" width=\"300\" height=\"137\" /></p>\n<span style=\"font-weight: 400;\">The greater the muscle spasm (which is unbeknown to the player as its sub clinical at this point) the more he\'ll try and force his shoulder turn, which then increases the tension etc etc.</span>\n<h3><b>Pectoralis Minor</b></h3>\n<span style=\"font-weight: 400;\">If we consider the Pectoralis Minor (PM) muscle again from a previous Juicemail <a href=\"https://www.biomechanicseducation.com/case-study-elite-lifter-laura-hewitt/\" target=\"_blank\" rel=\"noopener\">(Case Study Elite Lifter Laura Hewitt)</a> you may recall how we discussed how it could limit your thoracic spines ability to extend.</span>\n\n<span style=\"font-weight: 400;\">What is also apparent here therefore is how the PM muscle would also limit thoracic rotation</span>\n\n<span style=\"font-weight: 400;\">If your thoracic spine doesn’t have the capacity to rotate, the golf swing movement has to come from somewhere, right? This could then contribute to excessive movement around joints lower down in the lumbar spine for example and could eventually if unaddressed result in low back pain.</span>\n\n<span style=\"font-weight: 400;\">The key to a sound and reproducible swing, is to obviate any tension in the swing, so help with timing and rhythm.  So by also mobilising the median nerve, we are helping with all of the above.</span>\n<h3><b>The Take Home Message</b></h3>\n<span style=\"font-weight: 400;\">Of course no single method can be the panacea of all ills, but what we are finding is that if the mechanical causes are addressed, the pain can subside without treatment on the \'injury\', whatever it might be.  Sometimes treatment is also required, but often golfers find that once they\'ve committed to an exercise programme to address the causes of their pain, they are then more able to manage the problem themselves.  Then if local treatment is necessary, it is more likely to be successful, as the mechanical causes are no longer present.</span>\n\n<span style=\"font-weight: 400;\">Considering the problems that golfers can have with back pain, prevention is important as it’s far less painful, less inconvenient and far less expensive! The same biomechanical principles that can help manage back pain, can be adopted to minimise the risk.  </span>\n\n<span style=\"font-weight: 400;\">So the ‘take home message’ is to find a professional who can assess your mechanic (like a Biomechanics Coach</span><span style=\"font-weight: 400;\">™</span><span style=\"font-weight: 400;\">) get yourself or your golfer screened and learn which are the best exercises for those results.</span>\n<h3><b>Practical Tasks To Think About:</b></h3>\n<strong>Thoracic Spine;</strong>\n\n<span style=\"font-weight: 400;\">When considering how we might mobilise the thoracic spine what kind of exercises can you think of that would improve ‘pure’ thoracic rotation?</span>\n\n<strong>Median Nerve;</strong>\n\n<span style=\"font-weight: 400;\">If you look at the pathway the Median Nerve follows in the arm, try working out how you might put it onto a stretched position, to then release and add the tension very slowly as a nerve mobilisation technique.</span>\n<h3><b>How We Can Help...</b></h3>\n<span style=\"font-weight: 400;\">Another option is to attend our one day <a href=\"https://biomechanicseducation.clickfunnels.com/golf-biomechanics-workshop\" target=\"_blank\" rel=\"noopener\">Golf Biomechanics workshop</a> June 30th at NLSSM.</span>\n\n<span style=\"font-weight: 400;\">This fantastic sports specific workshop will be delivered by Martin Haines, PGA advisor, Biomechanics Coach</span><span style=\"font-weight: 400;\">™</span><span style=\"font-weight: 400;\"> and chartered Physiotherapist. During the day you will learn about:</span>\n\n<span style=\"font-weight: 400;\">✓ The correct terminology to approach golf clubs</span>\n\n<span style=\"font-weight: 400;\">✓ How to assess your golf players biomechanics</span>\n\n<span style=\"font-weight: 400;\">✓ How to improve your golf players biomechanics</span>\n\n<span style=\"font-weight: 400;\">✓ How to improve velocity &amp; planes of swing</span>\n\n<span style=\"font-weight: 400;\">✓ How to better prepare your player for reduced risk of injury</span>\n\n<span style=\"font-weight: 400;\">This workshop is aimed at Fitness Professionals, PT’s, Golf Coaches and practitioners involved in or interested in Golf Performance. Learn from the best and enter professional discussions with like-minded people.</span>\n\n<img class=\"size-medium wp-image-2774 aligncenter\" src=\"http://dev-biomechanicseducation-com.stackstaging.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-22-at-07.13.21-300x155.png\" alt=\"screen-shot-2017-05-22-at-07-13-21\" width=\"300\" height=\"155\" />\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/golf-biomechanics-workshop\" target=\"_blank\" rel=\"noopener\"><b>If you’re interested in finding out more, click here.</b></a></p>\n<p style=\"text-align: center;\"><img class=\"size-medium wp-image-2781 aligncenter\" src=\"http://dev-biomechanicseducation-com.stackstaging.com/wp-content/uploads/2017/05/BIOMECHANICS-COACH-300x157.png\" alt=\"biomechanics-coach\" width=\"300\" height=\"157\" /></p>\n<span style=\"font-weight: 400;\">Finally if you have a minimum of level 3 anatomy knowledge you could just go straight into our <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Biomechanics Coach</a></span><span style=\"font-weight: 400;\">™</span><span style=\"font-weight: 400;\"> Diploma to learn the entire system. This enables you to assess and correct every joint and structure within the Integrated System of our bodies to help ALL of your clients whatever their sport or lifestyle.</span>\n\n&nbsp;','How Back Pain Whilst Playing Golf Can Stem From A Dysfunction In The Median Nerve','','inherit','closed','closed','','2755-revision-v1','','','2017-05-23 05:27:30','2017-05-23 05:27:30','',2755,'https://www.biomechanicseducation.com/2755-revision-v1/',0,'revision','',0),(2780,3,'2017-06-02 05:48:10','2017-06-02 05:48:10','<b>Why Don’t They Listen?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you ever feel utterly convinced that you KNOW you could help someone, but they just wouldn’t listen? It is often someone you really care about right? How frustrating is it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well in the past it has driven me completely nuts with frustration when they did not listen, until eventually it dawned on me that in fact I was the one in the wrong…. ARGH!!....</span><i><span style=\"font-weight: 400;\">Why?</span></i><span style=\"font-weight: 400;\"> I can hear you thinking...</span>\n\n&nbsp;\n<ol>\n 	<li><span style=\"font-weight: 400;\">a) …for thinking I was the one who could make a difference</span></li>\n 	<li><span style=\"font-weight: 400;\">b) ...for trying to impress MY ideas of what was best for someone else without being asked</span></li>\n</ol>\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-2269\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-13-at-11.45.20.png\" alt=\"Screen Shot 2017-03-13 at 11.45.20\" width=\"600\" height=\"394\" />\n\n&nbsp;\n\n<b>Tough Lesson</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This tough lesson made me take a good look at the way I practice and communicate and is now a big part of what we now teach within our academy. It’s the idea that you cannot help someone if they are not receptive to helping themselves; no matter what you say or do!</span>\n\n<span style=\"font-weight: 400;\">Our workshops we discuss the fact that a practitioner shouldn’t offer to </span><i><span style=\"font-weight: 400;\">fix you</span></i><span style=\"font-weight: 400;\">, they should however teach you how to look after your own body and to improve your own biomechanics, with simple exercises and lifestyle advice. Of course within professions like manual therapy there is likely to be some external input BUT for long term success empowering the client is vital.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Without this approach clients aren’t made aware of addressing the very lifestyle issues that have often been the very reason for seeking advice in the first place. Thus meaning the ‘problem’ can often recur!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my situation, my friend had not come to me for help, I just </span><i><span style=\"font-weight: 400;\">felt</span></i><span style=\"font-weight: 400;\"> at that time that I could make him feel better… how arrogant of me!</span>\n\n&nbsp;\n\n<b>We Only Want To Help, Right?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is often hard to take this since we are, as exercise professionals and therapists by nature, ‘helpers’ who want to make everyone feel better. However, while I now have a much better system of approach with my clients and also my loved ones, my previous experience of wanting to help my friend, exposed this area for improvement. My reflective journal exposed the true cause of my dilemma.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My efforts to try everything to ‘help’ him when he did not WANT that help, was not in fact helpful at all. It actually made them feel useless, because they felt they were letting me down. Individuals really need to be ready and open or at least willing, to receive information or it gets lost. </span>\n\n&nbsp;\n\n<b>He Proved Me Wrong!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My friend proved me wrong and that is not his fault, it was MY fault.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We must remind ourselves that as much as we want to help and want to change things for others; we also need to </span><span style=\"font-weight: 400;\">keep in mind</span><span style=\"font-weight: 400;\"> they may not want our help, no matter how well intended. And you shouldn’t take that personally!</span>\n\n&nbsp;\n\n<b>Unwanted Advice is Not Helpful</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Advice is not helpful if it’s not wanted is it!?</span>\n\n<span style=\"font-weight: 400;\">As coaches, we must be mindful of knowing our boundaries as well (as much as our remit) with clients by ensuring we LISTEN and take on board what THEY tell us.</span>\n\n&nbsp;\n\n<b>What Can YOU Do?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The real skill is in a more subtle approach and being great at asking questions. This way they often TELL YOU what they WANT, giving you more information about what to then SELL to them. This is a basic sales technique and opens any opportunity that </span><i><span style=\"font-weight: 400;\">might</span></i><span style=\"font-weight: 400;\"> be available to you. At the same time, it also makes them feel </span><i><span style=\"font-weight: 400;\">valued</span></i><span style=\"font-weight: 400;\"> by you because you’re interested in them and encouraging them to talk.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Try this next time you want to help someone. </span>\n\n<span style=\"font-weight: 400;\">Try NOT to offer help at all. </span>\n\n<span style=\"font-weight: 400;\">Try just asking lots of questions and really listen to what they tell you. </span>\n\n<span style=\"font-weight: 400;\">Paraphrase back the specific language THEY use. </span>\n\n<span style=\"font-weight: 400;\">Make lots of eye contact, nodding and smiling.</span>\n\n<span style=\"font-weight: 400;\">Wait until THEY ask YOU a question but DON’T offer to help unless they ask!</span>\n\n<span style=\"font-weight: 400;\">See what happens as you practice this method. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another HUGE benefit is if THEY approach YOU, they are far more likely to comply and do their homework to get results. If you approach them, chances are they won’t be motivated to do their homework and this would make you look bad!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WE shouldn’t try to fix people anyway, but we should </span><b><i>teach them</i></b><span style=\"font-weight: 400;\"> how they can help themselves. This way, they can choose the direction they want to go in, ultimately feeling more successful and therefore more likely to adhere.</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-2759\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-23-at-06.26.43.png\" alt=\"screen-shot-2017-05-23-at-06-26-43\" width=\"594\" height=\"308\" />\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/#coach\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">If you are interested in become a Biomechanics Coach™ and joining our community of like-minded Master Trainers, click here.</span></i></a></p>','This Tough Lesson Could See Your Client Relationships & Success Excel','','draft','closed','closed','','this-tough-lesson-could-see-your-client-relationships-success-excel','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=2780',0,'post','',0),(2781,0,'2017-05-27 08:18:25','2017-05-27 08:18:25','','','','inherit','closed','closed','','this-tough-lesson-could-see-your-client-relationships-excel','','','2017-05-27 08:18:25','2017-05-27 08:18:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/This-Tough-Lesson-Could-See-Your-Client-Relationships-Excel-1.png',0,'attachment','image/png',0),(2785,3,'2017-05-29 19:08:02','2017-05-29 19:08:02','<h2>Identifying Quadratus Lumborum Spasm and Its Impact on Lower Back Pain and Mobility</h2>\r\nThe quadratus lumborum (QL) muscle plays a crucial role in the stabilization and movement of the pelvis and spine. Understanding its function and identifying when it is in spasm can help manage lower back pain and improve movement ability.\r\n<h3>What is the Quadratus Lumborum?</h3>\r\nThe QL is a deep muscle located in the lower back, with one on each side of the spine. It attaches to the 12th rib, the iliac crest, and the transverse processes of the lumbar spine.\r\n<h3>Function of the Quadratus Lumborum</h3>\r\nWhen both QL muscles contract simultaneously, they extend the spine. When one QL contracts, it causes lateral flexion of the spine or hip hitching.\r\n<h3>Common Problems with the Quadratus Lumborum</h3>\r\nDue to sedentary lifestyles, we often spend extended periods sitting in lumbar flexion. This can lead to the QL being in a state of subclinical spasm, which restricts movement and can cause discomfort.\r\n<h3>Effects of QL Spasm on Movement</h3>\r\nA QL spasm limits the spine’s ability to laterally flex, making activities such as bending to pick up objects or turning in a car challenging. For physical activities like bear crawls or rock climbing, where hip hitching is necessary, a QL spasm can hinder speed and control.\r\n\r\nA spasm in the QL can also cause mechanical compensation, leading to a functional leg length discrepancy. The spasm lifts the ilium on one side, affecting pelvic function and potentially causing issues in the knee and foot.\r\n<h3>Testing for QL Spasm</h3>\r\nTo test for QL spasm, ask your client to sit and perform lateral flexion. Observe the spine’s movement and shape; a smooth curve is normal, while a ‘hinge’ in the lumbar area indicates a spasm.\r\n\r\n<em>This video shows a few QL tests in action: QL Hinge Positive &amp; Negative Test Results (youtube.com)</em>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/xWlGWanUOPE\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<h3>Solution: Wall Glides</h3>\r\nWall Glides are an effective technique to alleviate QL spasms. This is not a mobility exercise but a proprioceptive method to desensitize the QL spasm.\r\n<ul>\r\n 	<li>Have your client stand side-on to a wall and measure their foot distance from the wall.</li>\r\n 	<li>Rest the whole upper arm against the wall, fixing the ribs to the inside of the arm as if holding a newspaper.</li>\r\n 	<li>Bend the elbow to 90 degrees at the waist while keeping the body straight.</li>\r\n 	<li>Glide the hips gently towards the wall by an inch or two, then return to the original position.</li>\r\n 	<li>Repeat slowly for 8 reps on both sides, twice daily. If tender, reduce the range of motion.</li>\r\n 	<li>Clients with any clinical conditions affecting the lower back should consult their Biomechanics Coach™ first.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter size-large wp-image-2787\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/MG_9964-683x1024.jpg\" alt=\"_mg_9964\" width=\"683\" height=\"1024\" />\r\n<h3>Considerations</h3>\r\nRemember, the body is an integrated system and a master of compensation. Both descending and ascending compensations can cause or result from a QL spasm.\r\n\r\nUnderstanding and addressing QL spasms can significantly improve lower back health and overall mobility. By incorporating techniques like Wall Glides and assessing for compensations, you can help clients manage pain and enhance their movement abilities effectively.\r\n<p style=\"text-align: center;\"><strong>For further information and guidance, feel free to reach out:</strong></p>\r\n<p style=\"text-align: center;\">Phone: <em>020 3841 6151</em></p>\r\n<p style=\"text-align: center;\">Email: <em>rachel@biomechanicseducation.com</em></p>','How To Identify If Your Quadratus Lumborum Muscle Is In Spasm & It’s Effect On Lower Back Pain & Movement Ability','','publish','closed','closed','','how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm','','','2025-01-20 16:03:29','2025-01-20 16:03:29','',0,'https://www.biomechanicseducation.com/?p=2785',0,'post','',0),(2786,0,'2017-05-27 08:23:54','2017-05-27 08:23:54','','','','inherit','closed','closed','','spine-biomechanics-blog','','','2017-05-27 08:23:54','2017-05-27 08:23:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/SPINE-Biomechanics-blog-1.png',0,'attachment','image/png',0),(2787,0,'2017-05-27 08:26:20','2017-05-27 08:26:20','','','','inherit','closed','closed','','_mg_9964','','','2017-05-27 08:26:20','2017-05-27 08:26:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/MG_9964-1.jpg',0,'attachment','image/jpeg',0),(2788,0,'2017-05-27 08:29:11','2017-05-27 08:29:11','','','','inherit','closed','closed','','how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability-1','','','2017-05-27 08:29:11','2017-05-27 08:29:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/How-To-Identify-If-Your-Quadratus-Lumborum-Muscle-Is-In-Spasm-Its-Effect-On-Lower-Back-Pain-Movement-Ability-1.png',0,'attachment','image/png',0),(2808,3,'2017-06-19 10:20:09','2017-06-19 10:20:09','<span style=\"font-weight: 400;\">Ever had a question spinning around in your head for ages? A client issue that you just can’t work out?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Me too! I had a couple of things bugging me for a while and so I spent some time reading research papers about leg length discrepancy (LLD), pelvic function, sacro iliac joint (SIJ) pain, symmetry of the pelvis, methods of measuring LLD etc. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now as a Biomechanics Coach™ I found it interesting that so few of the papers I found related simply to function, or how to correct it. Almost all the papers were connected to ‘clinical’ findings or ‘medical’ issues and ‘symptoms’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well why on earth would you do a research study on something that isn\'t already a ‘problem’? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well….actually to </span><i><span style=\"font-weight: 400;\">prevent</span></i><span style=\"font-weight: 400;\"> the problem might be a good reason, right?!</span>\n\n&nbsp;\n<h2><b>The Problem</b></h2>\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-2815\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-18-at-20.24.53.png\" alt=\"screen-shot-2017-06-18-at-20-24-53\" width=\"842\" height=\"608\" />\n\n<span style=\"font-weight: 400;\">So imagine all of your clients for a moment… yep ALL of them, past and present! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok now ask yourself how many of them were without any pain, previous injury, moved really well, had full capacity to squat, lunge, pull and push easily? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is my bet that, like mine, most of your clients (maybe all of them for some of you) have something they find is a niggle, a limitation or impedes their movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When our clients come to us we have some kind of initial consultation where we ask questions to understand how we are going to help our clients to get fit, lose weight, build muscle, move better, avoid symptoms and clinical problems, pathology and pain. Some of us may use postural assessments and range of movement tests too. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we really need a series of objective physical screens for each joint and structure of their body, this allows us to monitor their progress and KNOW what actually helps them to move better. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Screen - Exercise - Re-screen</span>\n\n&nbsp;\n<h2><b>Preparation for Movement</b></h2>\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-2814\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-18-at-20.22.27.png\" alt=\"screen-shot-2017-06-18-at-20-22-27\" width=\"526\" height=\"548\" />\n\n<span style=\"font-weight: 400;\">So ask yourself...</span>\n\n<span style=\"font-weight: 400;\">Do you wonder about some of your clients and whether you have done the right thing with them or chosen the right exercises simply because of their physical limitations, eh?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you ever thought a 5 minute treadmill warm up may not be adequate?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ever wondered if there is something you should do when your client explains they have been told they have a leg length discrepancy?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you ever considered if their back pain related to that leg length discrepancy?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe you thought “</span><i><span style=\"font-weight: 400;\">well everyone has a leg length discrepancy...it’s normal right?</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well these are questions I used to ask myself and I really wanted to understand these things better. This is when I really became a </span><i><span style=\"font-weight: 400;\">human movement</span></i><span style=\"font-weight: 400;\"> geek!</span>\n\n&nbsp;\n<h2><b>The Cause/s</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The key component that can often be missing is a true </span><i><span style=\"font-weight: 400;\">preparation for movement</span></i><span style=\"font-weight: 400;\"> programme which, due to our lifestyles, is vital for long term physical health. The lives we now lead is amongst technology, gadgets, a lot of sitting and equipment that all make our lives ‘easier’, less effort, quicker and in fact, </span><span style=\"font-weight: 400;\">less active than ever.</span><span style=\"font-weight: 400;\"> The body is TRYING to evolve to this sedentary routine but can’t do it quick enough and so we are experiencing all sorts of compensatory problems. </span>\n\n&nbsp;\n<h2><b>Leg Length Discrepancy</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway my project was because I wanted to understand </span><i><span style=\"font-weight: 400;\">the relevance</span></i><span style=\"font-weight: 400;\"> of a leg length discrepancy (LLD), based on as much evidence as possible.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I found papers that discussed pelvic position, structural leg length discrepancy (SLLD), even functional leg length discrepancy (FLLD) and some looked at whether the LLD affected lower back pain (LBP).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My question was - does the evidence tell us that a LLD affects low back health? And is there a difference between SLLD and FLLD and their influence on back health?</span>\n\n&nbsp;\n<h2><b>Structural Leg Length Discrepancy</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">SLLD - or structural leg length discrepancy.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">An example of this is the individual\'s femurs are genetically different in length, therefore creating a structural difference that cannot be changed without surgical intervention. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another example might be someone who has broken a bone and therefore now has a structural difference caused by the trauma.</span>\n\n&nbsp;\n\n&nbsp;\n<h2><b>Functional Leg Length Discrepancy</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">FLLD - or functional leg length discrepancy.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is discussed often in research papers and describes a twisted or rotated pelvis, around the SIJ which creates the appearance of a LLD. Should the dysfunction causing the rotation or twist be removed, the LLD can also disappear. Hooray!</span>\n\n&nbsp;\n<h2><b>How do we know if we have either an SLLD or FLLD?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Good question! In podiatry, it is my understanding that if there is a LLD that is less than around 11mm it is classed as clinically ‘insignificant’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also, in the research, it almost always seems to be assumed there has a to be a clinical significance, if there is a LLD present. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While in my very limited experience as a Biomechanics Coach™ most LLD’s (and they are more often than not, UNDER 11mm) are FLLD that are NOT clinical and can be addressed/corrected with simple exercises. The presence of a FLLD also seems in many cases to coincide with the degree of low back pain they experience.  </span>\n\n&nbsp;\n<h2><b>Why Does Function Leg Length Discrepancy Coincide With Low Back Pain?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me give you the lowdown about what I found out:</span>\n\n&nbsp;\n\n<b>Pelvis</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is evidence from Rose McDonald\'s work when she was head physio at Crystal palace athletics club, that the hips/pelvis are at least partly responsible for 60% of lower limb injuries from a biomechanical point of view.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also in my 10 years experience of using pelvic muscle anti spasms, particularly on the hip rotators, flexors and extensors, it has has had a huge impact on all of my clients, in particular the appearance of a FLLD.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Their range of movement (ROM) improves, pain is reduced, strength has increased, they report feeling more stable and overall feel they move better. They certainly get better results in the screens I do!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is also mirrored in what all qualified Biomechanics Coaches™ report with their clients. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I am confident many of you reading this now have had success with making clients feel less low back pain. Yet this common issue is rife and still only an add on course for L3 PT’s! How many people do you know who have ever experienced some kind of low back pain? Exactly, our basic training should have compulsory screens and preparation exercises these days since we are intrinsically physically different to how we were when PT education was researched and designed. </span>\n\n&nbsp;\n<h2><b>A Solution</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Better preparation for movement first, BEFORE the warm up even! Yes BEFORE the warm up! A warm up is a warm up, this does not necessarily set the body up to move again and undo those static compensations and adaptations. We need to get moving more freely FIRST - THEN warm up.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A common issue or adaptation like a FLLD can addressed often very simply in less than 5 minutes with an easy to do technique like this one below. Download your FREE muscle energy technique by clicking below.</span>\n\n<b> </b>\n\n<a href=\"http://bit.ly/2jrj9NK\" target=\"_blank\" rel=\"noopener\">FREE Muscle Energy Technique </a>\n\n&nbsp;\n<h2><b>How do you know if they have a FLLD OR SLLD?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can be really quite simple - KNOW that their pelvis is fully functional! However if you don’t know how to assess for a functioning pelvis then this might be a challenge SOOOOO you could attend a Pelvic Biomechanics workshop to learn a whole series of pelvic assessments AND a whole series of techniques, including specific strength and conditioning work, to improve your clients pelvic function.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If this would be of interest to you, <a href=\"http://bit.ly/2svUc5o\" target=\"_blank\" rel=\"noopener\">click here</a> to find out more and fill in your name to show your interested in a spot on this fascinating 2-day workshop.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter size-large wp-image-2810\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-19-at-11.13.10-1024x509.png\" alt=\"screen-shot-2017-06-19-at-11-13-10\" width=\"1024\" height=\"509\" />\n</span>\n\n<a href=\"http://bit.ly/2svUc5o\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Click here to find out more about the Pelvic Biomechanic Workshop.</span></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In the meantime please feel free to read away to your heart’s content some really interesting papers listed here ;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">And as always …….keep moving freely!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you have any questions, feedback, want to discuss this topic further or you want to find out about our courses, just pop me an email on: rachel@biomechanicseducation.com, I’d love to hear from my readers :-).</span>\n\n&nbsp;\n\n<b>References;</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Allyn.L e al, 1984, Leg length discrepancy assessment:accuracy &amp; precision of 5 clinical method of evaluation</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Arumugam et al (2012) Effects of eternal pelvic compression o form closure, force closure &amp; neuromotor control of the limbo-pelvic spine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Beattie et al (1990) Validity of derived measurements of leg length differences obtained by use of tape measure </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Calvilla et al, 2000, Anatomy and pathophysiology of the SIJ</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cibulka (2002) Understanding SIJ movement as a guide to the management of a patient with unilateral low back pain</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Connell (2007) A case study report - concept of assessment &amp; treatments of anterior knee pain related to altered spine &amp; pelvic biomechanics </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cooperstein, Lew (2009) The relationship between pelvic torsion &amp; anatomical leg length inequality</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cummings et al (1993) The effects of imposed leg length difference on bone pelvic asymmetry </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cusi (2009) Paradigm for assessment &amp; treatment of SIJ mechanical dysfunction</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Dillen et al (2008) Hip rotation ROM in people with &amp; without LBP who participate in rotation related sports.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">DonTigny (1985) Function &amp; pathomechanics of the SIJ</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">DonTigny (1989) Anterior dysfunction of the SIJ as major factor in etiology of idiopathic Low Back Pain syndrome</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Duff et al (2000) The reliability &amp; validity of the ‘tape’ &amp; ‘block’ methods for assessing anatomical leg length discrepancy.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Forst et al (2005) The SIJ; Anatomy, physiology &amp; clinical significance </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Fryer (2004) Methods used by members of the Australian osteopathic professional to assess the SIJ</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Fryer (2005) Factors affecting the inter-examiner &amp; inter-examiner reliability for supine medial malleoli asymmetry</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Goode et al (2008) 3 dimensional movements of the SIJ </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Gurney  (2001) Leg Length Discrepancy</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hungerford et al (2003) Evidence altered lumbo-pelvic muscle recruitment in the presence of SIJ pain</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Jacob, Kissling (1994) The mobility of the SIJ’s in healthy volunteers between 20-50yrs</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Kasis et al (2008) External fixator assisted acute shortening wit internal fixation for leg length discrepancy after retool hip replacement </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Kiapour et al (2012) Relationship between limb length discrepancy &amp; load distribution across SIJ </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Krawiec et al (2003) Static innominate asymmetry &amp; leg length discrepancy in asymptomatic collegiate athletes</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">McCaw, Bates (1991) Biomechanical implications of mild leg length discrepancy</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">McGrath (2004) Clinical considerations of SIJ anatomy; A review of function, motion &amp; pain</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Middleton-Duff et al 2000, The reliability and validity of the `Tape\' and `Block\' methods for assessing anatomical leg-length discrepancy, Harcourt Publishers Ltd</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pel et all (2008) Biomechanical analysis of reducing SIJ shear load by optimisation of pelvic muscle &amp; ligament forces</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Preece et al (2008) Variation in pelvic morphology may prevent the identification of anterior pelvic tilt </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Richardson et al (2001) The relation between the TVA, SIJ mechanics &amp; low back pain</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sabharwal, Kumar (2008) Method of assessing leg length discrepancy </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Santaguida, McGill (1994) The psoas major muscle; a 3 dimensional geometric study</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sturesson et al (1999) A radiostereometric analysis of movements of the SIJ’s during standing hip flexion</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Suter et al (1999) Decrease in quadricep inhibition after SIJ manipulation in patients with anterior knee pain</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Takasaki et al (2008) The influence is increasing SIJ closure on the hip &amp; lumbar spine extensor muscle firing pattern</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Van Der Wurff et al (2006) A multitest regimen of pain provocation tests as an aim to reduce unnecessary minimally invasive SIJ procedures.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Van Der Wurff et al (2000) Clinical tests of the SIJ </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Vleeming et al, 2003, Stabilisation of the SIJ in vivo: verifications of muscular contribution to force closure of the pelvic</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Vleeming et al (2012) The SIJ: An overview of its anatomy, function &amp; potential clinical implications</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Winderden et al (2003) Stabilization of SIJ in vivo</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Woerman et al (1984) Leg length discrepancy assessment; Accuracy &amp; precision in 5 clinical methods of evaluation</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Woodfield et al (2011) Interexaminer reliability of supine leg checks for discriminating leg length discrepancy</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Wylde et al (2008) Prevalence &amp; functional impact of patient perceived leg length discrepancy after hip replacement</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to learn how to assess pelvic function?</span>\n\n<a href=\"http://bit.ly/2svUc5o\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">REGISTER YOUR INTEREST HERE</span></a>','Why The Pelvis Should Be The First Place You Look When Assessing Clients','','draft','closed','closed','','why-the-pelvis-should-be-the-first-place-you-look-when-assessing-clients','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=2808',0,'post','',0),(2810,0,'2017-06-19 10:13:27','2017-06-19 10:13:27','','','','inherit','closed','closed','','screen-shot-2017-06-19-at-11-13-10','','','2017-06-19 10:13:27','2017-06-19 10:13:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-19-at-11.13.10-1.png',0,'attachment','image/png',0),(2811,0,'2017-06-19 10:16:25','2017-06-19 10:16:25','','','','inherit','closed','closed','','screen-shot-2017-06-18-at-20-23-23','','','2017-06-19 10:16:25','2017-06-19 10:16:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-18-at-20.23.23-1.png',0,'attachment','image/png',0),(2812,0,'2017-06-19 10:16:28','2017-06-19 10:16:28','','','','inherit','closed','closed','','screen-shot-2017-06-18-at-20-22-11','','','2017-06-19 10:16:28','2017-06-19 10:16:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-18-at-20.22.11-1.png',0,'attachment','image/png',0),(2813,0,'2017-06-19 10:16:31','2017-06-19 10:16:31','','','','inherit','closed','closed','','screen-shot-2017-06-18-at-20-22-59','','','2017-06-19 10:16:31','2017-06-19 10:16:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-18-at-20.22.59-1.png',0,'attachment','image/png',0),(2814,0,'2017-06-19 10:16:33','2017-06-19 10:16:33','','','','inherit','closed','closed','','screen-shot-2017-06-18-at-20-22-27','','','2017-06-19 10:16:33','2017-06-19 10:16:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-18-at-20.22.27-1.png',0,'attachment','image/png',0),(2815,0,'2017-06-19 10:16:36','2017-06-19 10:16:36','','','','inherit','closed','closed','','screen-shot-2017-06-18-at-20-24-53','','','2017-06-19 10:16:36','2017-06-19 10:16:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-18-at-20.24.53-1.png',0,'attachment','image/png',0),(2816,0,'2017-06-19 10:16:37','2017-06-19 10:16:37','','','','inherit','closed','closed','','shutterstock_82385002','','','2017-06-19 10:16:37','2017-06-19 10:16:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/shutterstock_82385002-1.jpeg',0,'attachment','image/jpeg',0),(2817,0,'2017-06-19 10:16:38','2017-06-19 10:16:38','','','','inherit','closed','closed','','shutterstock_251044630','','','2017-06-19 10:16:38','2017-06-19 10:16:38','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/shutterstock_251044630-1.jpeg',0,'attachment','image/jpeg',0),(2818,0,'2017-06-19 10:16:40','2017-06-19 10:16:40','','','','inherit','closed','closed','','shutterstock_415217266','','','2017-06-19 10:16:40','2017-06-19 10:16:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/shutterstock_415217266-1.jpeg',0,'attachment','image/jpeg',0),(2837,0,'2017-06-21 12:45:18','2017-06-21 12:45:18','','','','inherit','closed','closed','','knee%2ffoot-biomechanics-blog','','','2017-06-21 12:45:18','2017-06-21 12:45:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/05/knee2FFoot-Biomechanics-blog-1.png',0,'attachment','image/png',0),(2845,3,'2017-06-26 16:41:26','2017-06-26 16:41:26','<b>The Problem</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you ever get anxious about sitting exams?</span>\n\n<span style=\"font-weight: 400;\">Maybe you care so much, your nerves can impede your performance?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well then, you’re pretty much like all the rest of us!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In fact, just like my 11 learners the other weekend at Loughborough University.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I bet on that roasting hot fabulous weekend, some of you took the chance to lie in some grass or go for a bike ride or run, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Not us!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2847\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/IMG_0101-1024x1024.jpg\" alt=\"img_0101\" width=\"559\" height=\"559\" />\n\n<span style=\"font-weight: 400;\">Ok I tell a lie, while the fire alarms went off we took advantage of the sunshine and the steps ….</span>\n\n&nbsp;\n\n<iframe src=\"https://www.youtube.com/embed/ZimgNHcDPes\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway, as a tutor and mentor to these wonderful and diverse professionals I </span><i><span style=\"font-weight: 400;\">always</span></i><span style=\"font-weight: 400;\"> feel a huge sense of responsibility; but there are particular moments that I feel it most profoundly. I felt it very strongly for the whole of Sunday!</span>\n\n&nbsp;\n\n<b>What Does That Responsibility Mean Exactly?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Teaching is a position of trust, students/learners can feel vulnerable being asked questions or when they’re given ideas that take their thinking to a different place and maybe deeper level. As teachers we should be trained to recognise and respect this vulnerability, so we can make sure we coach our students to find the answers they need.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It means we have to be honest, genuine and confident in what are delivering, while recognising what we are not delivering when questions arise, to maintain our professional integrity and to encourage a positive learning environment.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This fact is never more apparent than when we are assessing our learners. Assessment creates a particularly vulnerable time for their weaknesses to be exposed; since we always focus on our own weaknesses, rather than our strengths which I think is part of human nature.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">On Sunday I had many “moments of realisation”, as I assessed 11 nervous learners for their Biomechanics Coach Diploma™ practical assessment.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Assessing brilliant, smart, intelligent and open minded people who inspire ME, made ME really emotional too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes my learners were nervous, as they spent an hour demonstrating the practical skills they have learned over several months with me observing and making notes.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes I could tell they were nervous because as I watched them I could see a quiver or wobble during the Downing’s sign pelvic function screen; or their fingers shook during the midtarsal joint screen.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But the thing that makes me SO emotional with the impact of responsibility, is that they desperately want my approval and do you know why?</span>\n\n&nbsp;\n\n<iframe src=\"https://www.youtube.com/embed/yQYEBcNSJSg\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These fantastic people are nervously showing;</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How much they care </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How badly they want this </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How much they improved since the mock exam</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How clearly they have practiced </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How safe their clients will be </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How impressed their peers will be </span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">And as I sit watching, with my straight face giving nothing away, focussed on the job of maintaining a fair unbiased assessor, I realise (maybe with wet eyes);</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How their journeys are just beginning </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How much I love my job</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How proud I am </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How lucky I feel </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How excited I am about these Biomechanics Coaches™ </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How excited I am for those of you booked onto the Aug intake already </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How Biomechanics Coaches™ everywhere are making a real difference to the way the nation moves and feels</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">I am living a dream</span></li>\n</ol>\n&nbsp;\n\n&nbsp;\n\n<b>Would You Like An Education Experience?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So for all of you reading this who have been </span><i><span style=\"font-weight: 400;\">thinking</span></i><span style=\"font-weight: 400;\"> about attending our workshop but feel nervous about the level and the intensity of the content, please understand the importance we put on YOU. Here at Biomechanics Education ALL of our learners become a part of a team, a community and a even a revolutionary movement of professionals changing the industry. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We appreciate that you have a busy schedule, a family you would love to see more of and yet a desire to learn more cool skills to help this tricky clients (that are actually becoming the norm these days!)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We understand that maybe finances can be a balancing act with time away from paying clients to learn and also all of those costs that seem to eat away at all you income.</span>\n\n&nbsp;\n\n<b>How We Can Help?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we offer is a solution to all of these problems. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We break things down for you to make learning this complex subject of intrinsic biomechanics, simpler that you can imagine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are super proud to offer a massive amount of support to ALL of our learners and this goes beyond your training days with us in the academy. </span>\n\n&nbsp;\n\n<b><i>Tommy Berrabe says.....</i></b>\n\n<strong><em>You are such an amazingly passionate and inspiring lady I feel so lucky to have picked this course, and even more lucky to have you delivering it. </em></strong>\n\n<strong><em>After spending those 2 days in the class taking in what I can, I actually leave feeling not just more knowledgeable but more enthusiastic about life in general, and I think that\'s all down to you. </em></strong>\n\n<strong><em>I\'m not a very confident person at this time in my life but you put me at ease, you don\'t just rush through it you make time for everyone. You\'re always more than happy to be challenged on anything. </em></strong>\n\n<strong><em>You\'ve got some teaching techniques that just work for everyone, understanding of where people are at, and give an explanation in a way that\'s suited to the individual\'s needs. </em></strong>\n\n<strong><em>It\'s clear to see that you literally love, live and breathe what you do. </em></strong>\n\n<strong><em>How you do all what you do and make time for so many people, your drive and passion is just mind blowing, and I will say again, truly inspiring. </em></strong>\n\n<strong><em>For myself moving forward in life this course is probably the best thing I had ever done, so lucky that I didn\'t miss out on this. Thank you for all you do Rachel </em></strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The workshops are designed for easy attendance across a short space of time with the diploma optionally spread  over between 5-24 months.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also we have put together payment options that are attractive to everyone - we listen and create a plan WITH you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our ethos is our passion, to work as a team toward a common goal of improving the movement of our nation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We believe YOUR success is OUR success.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So ask yourself this question….</span>\n\n&nbsp;\n\n<b>Are You Living Your Dream Yet?</b>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">If not JOIN US <span style=\"text-decoration: underline;\"><strong>&lt;&lt;CLICK HERE&gt;&gt;</strong></span></span></a>\n\n&nbsp;\n\n<iframe src=\"https://www.youtube.com/embed/hzryoGqyF3M\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','Why You Shouldn\'t Let Your Nerves Hold You Back From Living Your Dream','','draft','closed','closed','','why-you-shouldnt-let-your-nerves-hold-you-back-from-living-your-dream','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=2845',0,'post','',0),(2846,0,'2017-06-26 09:26:29','2017-06-26 09:26:29','','','','inherit','closed','closed','','img_0096','','','2017-06-26 09:26:29','2017-06-26 09:26:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/IMG_0096-1.jpg',0,'attachment','image/jpeg',0),(2847,0,'2017-06-26 09:26:32','2017-06-26 09:26:32','','','','inherit','closed','closed','','img_0101','','','2017-06-26 09:26:32','2017-06-26 09:26:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/IMG_0101-1.jpg',0,'attachment','image/jpeg',0),(2855,3,'2017-07-03 11:09:47','2017-07-03 11:09:47','<span style=\"font-weight: 400;\">The rivalry between these 2 professionals has been apparent for years, often with a ‘them and us’ type of mentality in gym facilities. </span>\n\n&nbsp;\n\n<b>The Rivalry</b>\n\n&nbsp;\n\n<img class=\"wp-image-2858 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.05.55-1024x643.png\" alt=\"screen-shot-2017-06-27-at-19-05-55\" width=\"390\" height=\"245\" />\n\n<span style=\"font-weight: 400;\">Many PT’s do not think it is possible to safely coach a group of different levels at one time AND to music!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT’s get frustrated by new members simply going straight into classes when they have not been coached into good movement by them first.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT’s can also get frustrated by Group Ex Instructors who simply beast their participants ruining their knees and backs.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2860\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.13.59-1024x513.png\" alt=\"screen-shot-2017-06-27-at-19-13-59\" width=\"462\" height=\"232\" />\n\n<span style=\"font-weight: 400;\">Group Ex Instructors often do not really understand why 1:1 PT is popular since it must be SO boring exercising with one person.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group Ex Instructors see PT’s doing group PT and wonder why they don’t simply send them into the classes?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">ALL Group Ex Instructors KNOW the challenges they face teaching exercise to a group of people.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group Ex Instructors get frustrated by... </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">..the newbies who ALWAYS stand at the back?</span>\n\n<span style=\"font-weight: 400;\">..the participants who never tell you about their injury until halfway through the class?</span>\n\n<span style=\"font-weight: 400;\">..the fact everyone is so different you have to be seriously skilled at your verbal cueing to get everyone doing the same thing but within their limits?</span>\n\n<span style=\"font-weight: 400;\">..that you have newbies with advanced in the same class?</span>\n\n<span style=\"font-weight: 400;\">..that your clients ask you impossible questions about their bodies that you really don’t feel are possible to answer when you start your next class in 20 seconds?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now most of you will know group exercise has certainly been a passion of mine for almost 30yrs because I really enjoy the atmosphere of a group. The key principle being that we have a lot of fun while getting fit.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Asking your PT client to break into their favourite dance moves probably isn\'t appropriate in one to one sessions right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then there are also the ‘moments’ like when one of the very quiet ‘back row’ girls came up to me at the end of a class with tears in her eyes, put her hand on my arm and said emphatically; </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Thank you I really needed to laugh like that after the week I have had”. </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I have no idea what happened to her that week, and I don’t need to, but that demonstrated how we can even unknowingly be helping others within the group setting without individuals feeling exposed.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n\n<b>Group Exercise Also Drives Us NUTS Too!!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone is different, moves differently, has different body types, different injury history, different lifestyles, are different ages, has different levels of fitness and different characters. Hell we all wake up in different moods some days!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As we look at one person who we feel could squat a bit lower, we worry about saying it out loud as the one who is already almost at full range may try to go further due to hearing the verbal cue for someone else to go lower!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Encouraging one to do a tuck jump while simultaneously saying to others to simply box jump.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It seems the days of beginners, intermediate and advanced classes have gone!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So for those PT’s who might consider group exercise as unsafe or is ruining people, please recognise how we can work TOGETHER for the health of our gym members.</span>\n\n&nbsp;\n\n<b>Let’s Work Together!!</b>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2857\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.04.21-1024x675.png\" alt=\"screen-shot-2017-06-27-at-19-04-21\" width=\"475\" height=\"313\" />\n\n<span style=\"font-weight: 400;\">So with good intention, often I find myself doing ‘clinics’ at the beginning or at the end of my classes to educate them on WHY they might be unable to squat or what a good deadlift should look like, how they can use foam rollers or should see a one to one professional for bespoke exercise prescription.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sometimes I have done handouts and have been known to set them homework or tasks to make them aware of their own physical abilities. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Their movement issues often have nothing to do with </span><i><span style=\"font-weight: 400;\">technique </span></i><span style=\"font-weight: 400;\">because no amount of teaching points, coaching cues or guidance can help them during a group class or even if I try speaking to them individually afterwards. Just this week we had a 4 Sign and foam roller education for 10 minutes before the class. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Out of 22 participants just 3 had used a foam roller and none really understood what it was for! Most knew me and so had done my 4 Sign pelvic anti spasm previously so we all did that prior to starting the class, while I explained how these complementary preparation techniques were not really even a warm up, they were actually </span><i><span style=\"font-weight: 400;\">preparation for the warm up!</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However what I do recognise is that some of these individuals really do need some one-to-one training, to improve the way they move with bespoke exercises. This is where I refer them to the PT within the club. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I am stunned that ALL clubs don’t have this set up as a trained SYSTEM!!</span>\n\n&nbsp;\n\n<b>A Member/Participant Pathway System</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now if both Group Ex instructors AND the PT’s within the club had common skills AND were given a system to follow when someone presented with a particular issue this would solve a lot of this. Group Ex instructors support who they can (the low risk participants) and identify the higher risk ones to refer out the their PT colleagues. </span>\n\n<span style=\"font-weight: 400;\">The PTs learn to assess and correct intrinsic biomechanics and prepare members for the classes while giving them some bespoke training. </span>\n\n&nbsp;\n\n<b>What Group Ex Instructors Can Do</b>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2859\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.13.05.png\" alt=\"screen-shot-2017-06-27-at-19-13-05\" width=\"288\" height=\"344\" />\n\n<span style=\"font-weight: 400;\">OK so I recognise not all group exercise fans/participants are going to buy into some one to one sessions but with a little bit of education on what could be causing their knees to cave in during lunges during our classes can go along way - they trust us!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More often than not they have just spent 8 hours sitting at a desk after driving to work and then they drive to your class and expect their hips and spine to function normally!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group Ex participants make up a huge % of gym membership, they are super keen to improve the way they look and move and are an avid and trusting audience that come back to see their group fitness instructor week in week out, often multiple times a week.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine how many members we influence up to every week AND while getting paid to market our ideas to them. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group Ex instructors you could approach the PT’s in your gym and ask them if they would like you to refer your participants to them. If they are open to this (they would be daft to turn you down right?!) ask if you could sample a session so you could talk to your people about it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group Ex instructors could design handouts that help clients beyond your classes and cross link it to the PT’s.</span>\n\n&nbsp;\n\n<b>What PT’s Can Do</b>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2862\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.25.30-1024x685.png\" alt=\"screen-shot-2017-06-27-at-19-25-30\" width=\"348\" height=\"233\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT’s really should start talking to the Group Ex instructors more, building a relationship with these passionate professionals who can directly refer people with good reason and regularly. Maybe offer to train the instructors at a reduced rate or even for free so they can talk about the benefits of your one to one training to their class members.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT’s could design a small group PT package or a special arrangement for these participants where they can share the cost with their friend and still enjoy the ‘group’ feel even if it is just 2 or 3 of them for example.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Even as PT’s you might want to consider delivering group exercise as a paid way to advertise yourself to a new market of gym members!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For those clients you have, who can’t afford as many session as you feel they need each week, you could suggest they attend your Group Ex colleagues classes to ensure they are more likely to reach their goal, by increasing their activity levels and keeping them moving.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I recognise many of you may well be doing some of this already but for those who aren\'t it might be something to seriously consider. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is room for all types of exercise from group to one to one - lets work together for better duty of care of our people, right!?</span>\n\n&nbsp;\n\n<b>A Ready Made System To Connect PT’s &amp; Group Ex Instructors</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have a ready made system that can help initiate the connection between you both...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you already deliver both group AND 1:1 training then either option below...</span>\n\n&nbsp;\n\n<b>Group Ex Instructors = <a href=\"https://www.biomechanicseducation.com/#movefreely\" target=\"_blank\" rel=\"noopener\">iMoveFreely® Instructor workshop</a></b>\n\n<span style=\"font-weight: 400;\">The revolutionary iMoveFreely® Instructor workshop gives you a common language and set of techniques that link straight into 1:1 training with a PT/Biomechanics Coach</span><span style=\"font-weight: 400;\">™</span><span style=\"font-weight: 400;\">. This awesome one day workshop is a great resource for any club wanting to start connecting these 2 worlds and we have 2 dates remaining this year.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To find out more and register your interest, <a href=\"https://www.biomechanicseducation.com/#movefreely\" target=\"_blank\" rel=\"noopener\">click here</a>. </span>\n\n&nbsp;\n\n<b>Personal Trainers = <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Biomechanics Coach</a></b><b>™</b><b> Diploma Workshop Series </b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To really stand out from the rest of the team AND to have a common link with all iMoveFreely® Instructors, this evidence based workshop series will really elevate you to another level. Being the resident Biomechanics Coach</span><span style=\"font-weight: 400;\">™</span><span style=\"font-weight: 400;\"> in your facility opens so many referral opportunities.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To find out everything you need to know about the diploma, </span><b><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">click here</a>.</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You can register your interest and discuss the opportunities there are for you with a member of the team.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Don’t delay, </span><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><b>click here</b></a><span style=\"font-weight: 400;\"> to find out more.</span>','Why Group Exercise Instructors & PT\'s Are Missing A Huge Referral Market!','','draft','closed','closed','','why-group-exercise-instructors-pts-are-missing-a-huge-referral-market','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=2855',0,'post','',0),(2856,0,'2017-06-27 18:01:08','2017-06-27 18:01:08','','','','inherit','closed','closed','','screen-shot-2017-06-27-at-19-00-46','','','2017-06-27 18:01:08','2017-06-27 18:01:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.00.46-1.png',0,'attachment','image/png',0),(2857,0,'2017-06-27 18:16:41','2017-06-27 18:16:41','','','','inherit','closed','closed','','screen-shot-2017-06-27-at-19-04-21','','','2017-06-27 18:16:41','2017-06-27 18:16:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.04.21-1.png',0,'attachment','image/png',0),(2858,0,'2017-06-27 18:16:46','2017-06-27 18:16:46','','','','inherit','closed','closed','','screen-shot-2017-06-27-at-19-05-55','','','2017-06-27 18:16:46','2017-06-27 18:16:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.05.55-1.png',0,'attachment','image/png',0),(2859,0,'2017-06-27 18:16:49','2017-06-27 18:16:49','','','','inherit','closed','closed','','screen-shot-2017-06-27-at-19-13-05','','','2017-06-27 18:16:49','2017-06-27 18:16:49','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.13.05-1.png',0,'attachment','image/png',0),(2860,0,'2017-06-27 18:16:55','2017-06-27 18:16:55','','','','inherit','closed','closed','','screen-shot-2017-06-27-at-19-13-59','','','2017-06-27 18:16:55','2017-06-27 18:16:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.13.59-1.png',0,'attachment','image/png',0),(2861,0,'2017-06-27 18:20:55','2017-06-27 18:20:55','','','','inherit','closed','closed','','screen-shot-2017-06-27-at-19-20-34','','','2017-06-27 18:20:55','2017-06-27 18:20:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.20.34-1.png',0,'attachment','image/png',0),(2862,0,'2017-06-27 18:25:47','2017-06-27 18:25:47','','','','inherit','closed','closed','','screen-shot-2017-06-27-at-19-25-30','','','2017-06-27 18:25:47','2017-06-27 18:25:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.25.30-1.png',0,'attachment','image/png',0);
INSERT INTO `6m7_posts` VALUES (2866,3,'2017-07-11 07:13:00','2017-07-11 07:13:00','Have you ever had to have surgery?\n\n<span style=\"font-weight: 400;\">Luckily I haven’t (in fact I decided against ACL surgery).... But it shocks me more and more every day, when I’m around fit, young people who have had to have surgery because of injuries that have occurred from preventable things like nerve tension.</span>\n\n&nbsp;\n<h3><b>Median Nerve Tension?</b></h3>\n<img class=\"aligncenter wp-image-2871\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.07.42-1024x462.png\" alt=\"screen-shot-2017-06-29-at-08-07-42\" width=\"528\" height=\"238\" />\n\n<span style=\"font-weight: 400;\">This is an issue because it can be very uncomfortable, debilitating in some cases, and is most commonly simply a result of our evolving lifestyles. You see nerves don’t like being held in a stretch when they are tethered down somewhere in the body. They also hate fine repetition, like the constant handling of a computer mouse. In this case more likely the median nerve in the arm. Over time these issues can potentially result in more severe problems like Carpel Tunnel Syndrome. Once this diagnosis has been made it is definitely NOT an exercise professional’s remit. However<em> risk reduction</em> definitely is.</span>\n\n&nbsp;\n<h3><b>Hamstring Injuries</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hamstring injuries are also commonly caused by a tight nerve, in this particular case it is more likely to be the sciatic nerve. Nerves also dislike high speed so the muscles often provide a protective spasm during movements, like running for example, in an attempt to limit adding tension to the nerve. However if stretched, or loaded sufficiently, the muscles can spasm enough to cause themselves to tear, or even simply cramp up, which can FEEL like a tear.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If this has happened to you, or your client, you know it really sucks right?</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2870\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.08.25-681x1024.png\" alt=\"screen-shot-2017-06-29-at-08-08-25\" width=\"309\" height=\"464\" />\n<h3><b>Tight Calves</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Calves are also often one area of the body that are neglected. Whether that be training them, or understanding the role they have on the rest of the bodies movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As discussed above when there is nerve tension causing ‘tightness’ in the calves, a whole cascade of problems can occur as a result, if not properly prepared or addressed.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s look at what tight calves can lead to...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They can cause overpronation in the feet.</span>\n\n<span style=\"font-weight: 400;\">Why? </span>\n\n<span style=\"font-weight: 400;\">This happens because the dorsi-flexion (moving the toes/foot up towards the shin) is not available from the ankle joint, due to the tightness in the calves, so it has to come from the sub talar joint.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This comes as part of the pronation mechanism though and so </span><i><span style=\"font-weight: 400;\">increases</span></i><span style=\"font-weight: 400;\"> the amount of pronation as well.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So overpronation can cause shin related injuries, as well as knee and Achilles problems.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The list can go on..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT there are things WE can to do </span><i><span style=\"font-weight: 400;\">reduce the risk </span></i><span style=\"font-weight: 400;\">of this happening!</span>\n\n&nbsp;\n<h3><b>So What CAN We Do About It?</b></h3>\n&nbsp;\n\n<img class=\"aligncenter wp-image-2869\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.09.23-1024x694.png\" alt=\"screen-shot-2017-06-29-at-08-09-23\" width=\"440\" height=\"298\" />\n\n<span style=\"font-weight: 400;\">As exercise professionals we can prepare the nervous system better and we are perfectly placed to educate our clients on how to improve their intrinsic biomechanics. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now if you’re nervous (s’cuse the pun) about ‘exercising’ your clients nerves, consider this...</span>\n\n<span style=\"font-weight: 400;\">What happens to your nerves when you bend down to put your socks on or perform kicks in martial arts classes for example?</span>\n\n<span style=\"font-weight: 400;\">Yep you guessed it, you’re stretching your nerves, and if kicking in a class, this is also at relatively high speed!</span>\n\n&nbsp;\n<h3><b>Nerve Mobilisations</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">By mobilising the nerve it can release the tension in the muscles and reduce the risk of more sinister complications as previously mentioned.</span>\n\n<span style=\"font-weight: 400;\">Now keeping in mind the ‘visco-elastic’ nature of the nervous system (ie; tight nerves don’t like high speed, fine repetition or being </span><i><span style=\"font-weight: 400;\">held</span></i><span style=\"font-weight: 400;\"> in a stretch), nerves should be mobilised slowly, with control and taken only just to the point, or beginnings, of tension. This can be done for 2 sets of 8 reps to begin and gradually over time up to 3 sets of 15 reps. NO MORE than 2 x daily.</span>\n\n&nbsp;\n\n<iframe src=\"https://www.youtube.com/embed/AUc5Yq0Y7FU\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\n&nbsp;\n\n&nbsp;\n<h3><b>This Technique Also Increased Muscle Output By 50% In 10 Days!</b></h3>\n<h3></h3>\n<h3><b>The Evidence</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Research performed at Liverpool Hope University College demonstrated astonishing results.  One experiment showed that a muscle can increase its force output by 14% after mobilising the sciatic nerve. Another experiment showed that by following the same concept daily for 10 days increased muscle output by over 50%!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Who would like 50% stronger quads?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now remember in most cases we are not even aware we have a problem, but even so you can still achieve these remarkable results. Just imagine what these figures could do for your clients performance in their sport or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you suspect you have clients who have any of the above mentioned problems?</span>\n\n<span style=\"font-weight: 400;\">Would you like to learn how to assess the nerves for tension?</span>\n\n&nbsp;\n<h3><b><i>SIDE NOTE: The Pelvis Can Contribute too...</i></b></h3>\n<i><span style=\"font-weight: 400;\">A rotated pelvis can also go unnoticed for many years until the compensations start to cause problems.  Typically a leg length discrepancy (LLD) can result from a twisted pelvis and the leg must compensate for this.  It\'ll either flatten the foot (pronate it), bend the knee more, or drop the hip more.  Pronation will increase the load on the leg (see \'Tight Calves\' paragraph), bending the knee will increase pronation (see \'Tight Calves\' paragraph), and dropping the hip will increase the spasm in the glutes/piriformis.   These muscles have a close relationship with the sciatic nerve and can create nerve tethering resulting in any of the afore mentioned compensations. </span></i>\n\n<i><span style=\"font-weight: 400;\">A vicious circle if ever there was one!  </span></i>\n\n<i><span style=\"font-weight: 400;\">So by reducing the spasm in the piriformis, in other words preventatively, then we can be helping to reduce all of the above. </span></i>\n\n<i><span style=\"font-weight: 400;\">So great place to start is the brilliant </span></i><a href=\"http://bit.ly/2jrj9NK\" target=\"_blank\" rel=\"noopener\"><b><i>4 Sign Anti Spasm Technique</i></b></a><i><span style=\"font-weight: 400;\">? This improves the function of the piriformis muscle in your hip that can the reduce sciatic nerve tension.</span></i>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">CLICK HERE TO FIND OUT MORE</a>\n\n&nbsp;','Want To Increase Muscle Output By 50% In 10 Days?','','draft','closed','closed','','want-to-increase-muscle-output-by-50-in-10-days','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=2866',0,'post','',0),(2868,0,'2017-06-29 06:44:38','2017-06-29 06:44:38','','','','inherit','closed','closed','','want-50-more-muscle-output','','','2017-06-29 06:44:38','2017-06-29 06:44:38','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Want-50-More-Muscle-Output-1.png',0,'attachment','image/png',0),(2869,0,'2017-06-29 07:10:05','2017-06-29 07:10:05','','','','inherit','closed','closed','','screen-shot-2017-06-29-at-08-09-23','','','2017-06-29 07:10:05','2017-06-29 07:10:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.09.23-1.png',0,'attachment','image/png',0),(2870,0,'2017-06-29 07:10:08','2017-06-29 07:10:08','','','','inherit','closed','closed','','screen-shot-2017-06-29-at-08-08-25','','','2017-06-29 07:10:08','2017-06-29 07:10:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.08.25-1.png',0,'attachment','image/png',0),(2871,0,'2017-06-29 07:10:12','2017-06-29 07:10:12','','','','inherit','closed','closed','','screen-shot-2017-06-29-at-08-07-42','','','2017-06-29 07:10:12','2017-06-29 07:10:12','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.07.42-1.png',0,'attachment','image/png',0),(2874,3,'2017-07-17 12:00:27','2017-07-17 12:00:27','<span style=\"font-weight: 400;\">Feel you deserved a weekend lying on the sofa?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well some of you probably do...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...but Stuart McGill suggests for many, particularly those who experience low back pain, this may not be as beneficial as you might hope. In fact... it could be detrimental!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the things you know I feel passionately about is educating and encouraging the world; to move more freely and with less pain. </span>\n\n&nbsp;\n<h2><b>The Evidence</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Professor Stuart McGill (also known as Dr Spine at Waterloo University in Canada) has done literally hundreds of studies of the spine evidencing what he has discovered about the biomechanics of the spine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">His ethos, like ours here at the Biomechanics Education Academy and also neuroscientists, Lorimer Moseley and Dave Butler’s, is not to blanket prescribe or to </span><i><span style=\"font-weight: 400;\">assume,</span></i><span style=\"font-weight: 400;\"> what can be causing an individual\'s back pain or movement problem. In some cases less is more, especially in the scenario of movement repetition and back pain. One example of this might be a factory worker who repeatedly twists or rotates around their spine all day long. The last thing they need to do in an exercise class is twist the spine for reps, don\'t you think?!  </span>\n<img class=\"aligncenter wp-image-2877\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.54.01-1024x485.png\" alt=\"screen-shot-2017-06-29-at-08-54-01\" width=\"391\" height=\"185\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While in other situations, more movement is necessary. One example might be the overweight client who comfort eats and prefers to watch TV all evening, every day.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Much to the annoyance of the learners who enter our academy and ask </span><i><span style=\"font-weight: 400;\">generic</span></i><span style=\"font-weight: 400;\"> client questions during their time in the academy, they more often than not hear us say “</span><i><span style=\"font-weight: 400;\">it depends…</span></i><span style=\"font-weight: 400;\">.”, because we should never generalise what we do with our clients. </span>\n\n&nbsp;\n<h2><b>So This Creates A Problem For PT\'s</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move more?</span>\n\n<span style=\"font-weight: 400;\">Move less?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How on earth do we find the balance when giving advice to our clients?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well remember, when you read an article it will more often than have not been written with a specific reader or case study in mind. The clarity of this depends upon either the skill or mindframe of the writer. </span>\n\n&nbsp;\n<h2><b>Move More</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you read \'move more\' articles they are likely to be aimed to those leading a more sedentary lifestyles. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Example One</span><span style=\"font-weight: 400;\">; The individual who doesn\'t exercise AND has a relatively sedentary job.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Example Two</span><span style=\"font-weight: 400;\">; The individual who trains for 1hr a day 6 x per week, then sits behind a desk or on their sofa the rest of it, they’re overall relatively sedentary. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Generally increasing the regularity of moving their body would be advisable in both of these examples</span>\n\n<span style=\"font-weight: 400;\">.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2879\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.57.16-1024x503.png\" alt=\"screen-shot-2017-06-29-at-08-57-16\" width=\"454\" height=\"223\" />\n<h2><b>Move Less</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">These kind of articles are for those who do</span><i><span style=\"font-weight: 400;\"> excessive</span></i><span style=\"font-weight: 400;\"> reps of the same kind of movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Example One</span><span style=\"font-weight: 400;\">; The individual who runs for miles and miles every day, would be going through a lot of reps with impact on the knees. Also a cyclist who rides for miles and miles every day, is also putting a lot of reps on the knee joints. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Example Two;</span><span style=\"font-weight: 400;\"> The individual who plays a \'batting\' or racket sport regularly may experience problems in the arm they are using for that particular sport. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sport is sport and not necessarily the ‘healthiest’ thing for the body\'s structures and tissues but something we choose to do because we enjoy it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-2878\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.57.56-1024x554.png\" alt=\"screen-shot-2017-06-29-at-08-57-56\" width=\"456\" height=\"247\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe your client moves a lot in their job but they don\'t normally do gym type \'exercises\'. Remember that while we are very accustomed to gyms, they have only really been fashionable since the days of Arnie, Gold’s Gym &amp; Muscle Beach. Back then, many people were simply ‘fit’ from their manual labour jobs like working in factories or down mines. </span><span style=\"font-weight: 400;\">Here is a snippet of McGill\'s advice from <a href=\"https://www.theptdc.com/2017/04/back-pain-myths/\" target=\"_blank\" rel=\"noopener\">THIS ARTICLE</a></span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2875\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.46.51-955x1024.png\" alt=\"screen-shot-2017-06-29-at-08-46-51\" width=\"583\" height=\"625\" />\n<h2><strong>SO IN CONCLUSION…...</strong></h2>\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-2786\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/SPINE-Biomechanics-blog-300x150.png\" alt=\"spine-biomechanics-blog\" width=\"500\" height=\"250\" /></span>\n\n<span style=\"font-weight: 400;\">Why not check out our<a href=\"https://biomechanicseducation.clickfunnels.com/spine-biomechanics-workshop\" target=\"_blank\" rel=\"noopener\"> Spine Biomechanics workshop within our diploma</a>? We share with you our Integrated System which is blended with some of the science and evidence based assessments and corrective methods from both McGill’s work and Mosely and Butler’s work. This brilliantly gives you a very extensive series of tools to enhance what you do as a PT.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; color: #ff0000;\"><strong><a style=\"color: #ff0000; text-decoration: underline;\" href=\"https://biomechanicseducation.clickfunnels.com/spine-biomechanics-workshop\" target=\"_blank\" rel=\"noopener\">CLICK HERE TO REGISTER YOUR INTEREST</a></strong></span></p>','Are Your Client\'s Moving Too Much Or Not Enough?','','draft','closed','closed','','are-your-clients-moving-too-much-or-not-enough','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=2874',0,'post','',0),(2875,0,'2017-06-29 07:47:29','2017-06-29 07:47:29','','','','inherit','closed','closed','','screen-shot-2017-06-29-at-08-46-51','','','2017-06-29 07:47:29','2017-06-29 07:47:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.46.51-1.png',0,'attachment','image/png',0),(2876,0,'2017-06-29 07:53:03','2017-06-29 07:53:03','','','','inherit','closed','closed','','move-more-or-move-less','','','2017-06-29 07:53:03','2017-06-29 07:53:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Move-more-or-move-less-1.png',0,'attachment','image/png',0),(2877,0,'2017-06-29 07:54:22','2017-06-29 07:54:22','','','','inherit','closed','closed','','screen-shot-2017-06-29-at-08-54-01','','','2017-06-29 07:54:22','2017-06-29 07:54:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.54.01-1.png',0,'attachment','image/png',0),(2878,0,'2017-06-29 07:58:19','2017-06-29 07:58:19','','','','inherit','closed','closed','','screen-shot-2017-06-29-at-08-57-56','','','2017-06-29 07:58:19','2017-06-29 07:58:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.57.56-1.png',0,'attachment','image/png',0),(2879,0,'2017-06-29 07:58:23','2017-06-29 07:58:23','','','','inherit','closed','closed','','screen-shot-2017-06-29-at-08-57-16','','','2017-06-29 07:58:23','2017-06-29 07:58:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.57.16-1.png',0,'attachment','image/png',0),(2894,0,'2017-06-29 13:58:51','2017-06-29 13:58:51','','','','inherit','closed','closed','','cimspa_partner_logo_trans','','','2017-06-29 13:58:51','2017-06-29 13:58:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/CIMSPA_Partner_Logo_trans-1.png',0,'attachment','image/png',0),(2896,0,'2017-06-30 08:01:42','2017-06-30 08:01:42','','','','inherit','closed','closed','','table_pic','','','2017-06-30 08:01:42','2017-06-30 08:01:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/table_pic-1.jpg',0,'attachment','image/jpeg',0),(2959,3,'2017-07-31 12:00:45','2017-07-31 12:00:45','<b>...What Is It?</b>\n\n<b>Why Does Everyone Want It?</b>\n\n<b>Should We Even Do It?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When searching around for definitions of \'core stability\' the internet will come up with many terms like ‘base of support’, ‘central balance’, ‘foundation’ and so on, but I feel it is prudent to define it in a little more detail than that.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Mel Siff (2004), gives a definition for \'segmental stability\' as..\"</span><i><span style=\"font-weight: 400;\">Muscles stabilising or supporting </span></i><b><i>a body segment</i></b><i><span style=\"font-weight: 400;\"> statically or dynamically while other muscles carry out a movement involving other joints</span></i><span style=\"font-weight: 400;\">\".</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Therefore it might be safe to say \'</span><span style=\"font-weight: 400;\">Core Stability’ is</span><span style=\"font-weight: 400;\">:</span>\n\n<span style=\"font-weight: 400;\">\"</span><i><span style=\"font-weight: 400;\">Muscles stabilising or supporting </span></i><b><i>the spine </i></b><i><span style=\"font-weight: 400;\">statically or dynamically while other muscles carry out a movement involving other joints</span></i><span style=\"font-weight: 400;\">”.</span>\n\n&nbsp;\n\n<b>BUT</b>\n\n&nbsp;\n<h3>Why Do Core Stability Training?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-2966\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-10-at-16.21.37.png\" alt=\"screen-shot-2017-07-10-at-16-21-37\" width=\"369\" height=\"259\" /></span>\n\nWhy do so many people feel they need it, or at least feel like they don’t have it, therefore seek out ways to train the core specifically?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For some it is still the idea of having a nice flat washboard stomach that drives them to perform core stability moves, for others it maybe they feel they have \'weaknesses\' around their abdominal, or lower back area and for others, it may well just be habit as part of their daily routine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now while we, as fit pros, are wiser these days to the notion that a flat stomach comes from the kitchen, not core stability training specifically, the media still tell us it is! Then surely it is up to us to educate our clients and participants with the truth, right!? So we get educated and then pass it on to them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The biggest challenge being, as always, the fact that we are all different and therefore require a one to one consultation to really get to the nitty gritty of things.</span>\n\n&nbsp;\n<h3>Is The Core Prepared For Core Stability Training?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In a previous article we did, we let you into a cool, core preparation technique called gliding. If you missed it </span>\n\n&nbsp;\n\n<strong><a href=\"https://www.biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability/\" target=\"_blank\" rel=\"noopener\">CLICK HERE FOR THE WALL GLIDES TECHNIQUE</a></strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For those who feel core stability training is necessary due to a \'weakness\', let us consider this question..</span>\n\n&nbsp;\n<h4><i><span style=\"font-weight: 400;\">What does the term ‘weak core\' actually mean?</span></i></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my previous training this meant the core required ‘strength’ work as this is the opposite meaning to ‘weak’.</span>\n\n&nbsp;\n\n<strong>However since then I have come to realise there are many definitions of the term ‘weakness’ in relation to the core, like the following examples:</strong>\n\n&nbsp;\n<ul>\n 	<li><span style=\"font-weight: 400;\">Inhibited trunk muscles due to muscle spasm</span></li>\n 	<li><span style=\"font-weight: 400;\">Inhibited trunk joints due to muscle spasm</span></li>\n 	<li><span style=\"font-weight: 400;\">Inhibited trunk joints due to neural tension</span></li>\n 	<li><span style=\"font-weight: 400;\">Inhibited trunk muscles due to neural tension</span></li>\n 	<li><span style=\"font-weight: 400;\">Inhibited trunk muscles due to joint immobility</span></li>\n 	<li><span style=\"font-weight: 400;\">Inhibited trunk muscles due to injury related scar tissue</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">...and I am sure there are other variations of this theme too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If the above is correct then do you think we need to implement ‘core stability’ training to improve core control? Probably not.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Is it likely we would be conditioning an asymmetry or at least a dysfunction? Yes.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So surely the ideal initial exercise prescription would be to </span><i><span style=\"font-weight: 400;\">prepare</span></i><span style=\"font-weight: 400;\"> the core; for core stability training.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First, remove the inhibition with muscle release work, nerve mobilisations, joint mobility work and/or manual therapy? In other words a core stability  ‘preparation’ exercise programme.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once this is in place THEN progressive core stability training it is likely to be far more effective following neuromuscular periodised training methods like those we deliver in Step 1 of our Core Training Pyramid in the Spine Biomechanics Workshop.</span>\n\n&nbsp;\n<h3>The 3 Step Pyramid Approach</h3>\n&nbsp;\n\n<img class=\"aligncenter wp-image-2963\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-06-30-at-08.23.34-1024x764.png\" alt=\"screen-shot-2017-06-30-at-08-23-34\" width=\"380\" height=\"284\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once the preparation work is in place we follow this with the progressive neuromuscular core training using firstly static, then more dynamic, core training methods.</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-2962\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-03-at-10.01.47-1024x236.png\" alt=\"screen-shot-2017-07-03-at-10-01-47\" width=\"1024\" height=\"236\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once low level neuromuscular ‘core stability’ skills are achieved, it is probably wise to perform some really simple assessments and exercises to correct and regain the ‘Core Strength Ratios’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><span style=\"text-decoration: underline;\"><strong>Step 2</strong></span> is based on</span><b> McGill’s (2003)</b><span style=\"font-weight: 400;\"> work. He discusses that our asymmetrical lifestyles create these imbalances of strength around the trunk.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><span style=\"text-decoration: underline;\"><strong>Finally, Step 3</strong></span> is what we call ‘Functional Stability’ in which we show you how to assess core control during more gross compound movements. Aberrant Gross Lumbar screen, spinal hinges during kneeling and standing squats and cross pelvic syndromes are all screens we show our learners during the Spine Biomechanics workshop. </span>\n\n&nbsp;\n<h3>The REAL Question</h3>\n&nbsp;\n\nHowever this then begs the question that is often discussed;\n\n&nbsp;\n\n<strong>Is performing squats, deadlifts, pushups, sporting activity or likewise, all our core needs!?</strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well many would like to think so, however if we continue to choose a life in front of a screen or with 90 degrees of hip flexion maintained for long periods of time, pushing the pelvis into a posterior tilt and the spine into lumbar flexion; there is a good chance we will need to constantly monitor or core’s capacity. This would then enable us as PT’s to decide which exercises is right, for that client, at that time, due to their intrinsic biomechanics rather than utilising generic core stability training exercises for all clients. </span>\n\n<span style=\"font-weight: 400;\">  </span>\n\n<span style=\"font-weight: 400;\">I mean, wouldn\'t you like to KNOW which exercise is “good” and which is “bad” for your client?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let us keep in mind that everything you do uses your ‘core’! So (once prepared) maybe designing a training programme that considers the whole body, would mean you don’t actually need to spend </span><i><span style=\"font-weight: 400;\">additional</span></i><span style=\"font-weight: 400;\"> time training the core at the end of a class or training session, because the whole session was functionally training our core throughout!?</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2786\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/SPINE-Biomechanics-blog-300x150.png\" alt=\"spine-biomechanics-blog\" width=\"500\" height=\"250\" />\n\n<span style=\"font-weight: 400;\">So if you find any of this interesting you will find the core training pyramid, along with all of these screens and exercises and more in our 2 day <strong><a href=\"https://biomechanicseducation.clickfunnels.com/spine-biomechanics-workshop\" target=\"_blank\" rel=\"noopener\">Spine Biomechanics Workshop, just click here to find out more.</a></strong></span>\n\n&nbsp;\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff0000;\">The <a style=\"color: #ff0000;\" href=\"https://biomechanicseducation.clickfunnels.com/spine-biomechanics-workshop\" target=\"_blank\" rel=\"noopener\">Spine Biomechanics Workshop</a> is a stand alone workshop, but it does also count as 1/5th towards a <a style=\"color: #ff0000;\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Diploma in Biomechanics Coaching. Click here to find out more about the diploma.</a></span></strong></p>','Could The Core Stability Training Your Prescribing Your Clients, Actually Be Damaging Them?','','draft','closed','closed','','core-stability-training-damaging-clients','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=2959',0,'post','',0),(2960,0,'2017-07-10 15:12:25','2017-07-10 15:12:25','','','','inherit','closed','closed','','istock_000016731739large','','','2017-07-10 15:12:25','2017-07-10 15:12:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/iStock_000016731739Large-1.jpg',0,'attachment','image/jpeg',0),(2961,0,'2017-07-10 15:12:31','2017-07-10 15:12:31','','','','inherit','closed','closed','','screen-shot-2017-06-30-at-08-38-12','','','2017-07-10 15:12:31','2017-07-10 15:12:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-06-30-at-08.38.12-1.png',0,'attachment','image/png',0),(2962,0,'2017-07-10 15:12:33','2017-07-10 15:12:33','','','','inherit','closed','closed','','screen-shot-2017-07-03-at-10-01-47','','','2017-07-10 15:12:33','2017-07-10 15:12:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-03-at-10.01.47-1.png',0,'attachment','image/png',0),(2963,0,'2017-07-10 15:15:51','2017-07-10 15:15:51','','','','inherit','closed','closed','','screen-shot-2017-06-30-at-08-23-34','','','2017-07-10 15:15:51','2017-07-10 15:15:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-06-30-at-08.23.34-1.png',0,'attachment','image/png',0),(2964,0,'2017-07-10 15:17:42','2017-07-10 15:17:42','','','','inherit','closed','closed','','screen-shot-2017-07-03-at-10-10-13','','','2017-07-10 15:17:42','2017-07-10 15:17:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-03-at-10.10.13-1.png',0,'attachment','image/png',0),(2965,0,'2017-07-10 15:23:25','2017-07-10 15:23:25','','','','inherit','closed','closed','','screen-shot-2017-07-10-at-16-21-26','','','2017-07-10 15:23:25','2017-07-10 15:23:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-10-at-16.21.26-1.png',0,'attachment','image/png',0),(2966,0,'2017-07-10 15:23:27','2017-07-10 15:23:27','','','','inherit','closed','closed','','screen-shot-2017-07-10-at-16-21-37','','','2017-07-10 15:23:27','2017-07-10 15:23:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-10-at-16.21.37-1.png',0,'attachment','image/png',0),(2967,0,'2017-07-10 15:23:32','2017-07-10 15:23:32','','','','inherit','closed','closed','','screen-shot-2017-07-10-at-16-22-33','','','2017-07-10 15:23:32','2017-07-10 15:23:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-10-at-16.22.33-1.png',0,'attachment','image/png',0),(2968,0,'2017-07-10 15:31:15','2017-07-10 15:31:15','','','','inherit','closed','closed','','could-the-core-stability-training-your-prescribing-your-clients-actually-be-damaging-them','','','2017-07-10 15:31:15','2017-07-10 15:31:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/Could-The-Core-Stability-Training-Your-Prescribing-Your-Clients-Actually-Be-Damaging-Them-1.png',0,'attachment','image/png',0),(2969,0,'2017-07-10 15:34:48','2017-07-10 15:34:48','','','','inherit','closed','closed','','2could-the-core-stability-training-your-prescribing-your-clients-actually-be-damaging-them','','','2017-07-10 15:34:48','2017-07-10 15:34:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/2Could-The-Core-Stability-Training-Your-Prescribing-Your-Clients-Actually-Be-Damaging-Them-1.png',0,'attachment','image/png',0),(2972,3,'2017-08-07 12:00:25','2017-08-07 12:00:25','<span style=\"font-weight: 400;\">Ever had a perfect client?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You know the one who does everything you suggest, enjoys it and gets the results they came for?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">HOORAAYY!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I had one of these perfect clients BUT at the same time, he had the most challenging of circumstances.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We’re going to call this client Simon for this blog. I don’t know why, it just felt right haha.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Simon gave me permission to use his information anonymously to share his story with you all, which I am forever grateful for!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now bear in mind, Simon had to fight to get a consultation with me in the first place, as I don’t usually take on clients in pain like he was. My usual clients are athletes looking for the performance edge. He lives in Brighton, my clinic is in Nottingham and yet even when I tried to point him the direction of a Biomechanics Coach nearer to him, he was not deterred. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“You helped my wife a few years ago, I want to see you” </span></i><span style=\"font-weight: 400;\"> he said adamantly. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My initial email to him set up all levels of expectation as I explained what I do and don’t do, how I work, what I expect of him and what he should expect while working with me along with what to bring or wear, that would help me assess him easily. It also states very clearly that I do not promise pain relief. </span>\n\n&nbsp;\n<h3>Back Pain &amp; Shoulder Pain</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now the whole point to Simon’s reason for contacting me was shoulder and low back pain. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So after he had read and agreed to my initial email, we spoke over the phone so I could clarify a few things in advance of us booking the face to face sessions. He was happy to discuss his goal and we agreed to address it upon meeting. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We booked in 3 sessions over the course of 2 weeks, to give me a good grasp of his biomechanics, his adherence, how his body responds to the programme or whether there might be a need for the skills of a different professional for best duty of care to Simon.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also unusual to my practice, I actually collected Simon from the train station and it was like we had actually known each other for a long time already, even though we had never met or spoken before that week.</span>\n\n&nbsp;\n<h3><b>The Consultation </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The initial consultation was a couple of hours during which we discussed his daily routine, working hours, home situation, previous injuries, training or sporting activities, sleeping habits, footwear and anything else that might influence his biomechanics.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With a sick wife, a toddler and 9 month old baby, Simon was literally doing everything from going to work all day, cooking dinner and getting up through the night to help with the baby.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It was clear there was no way I could suggest any kind of gym training or really even any banded resistance work. There needed to be a clear plan of things he could do within these very limiting parameters. </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2963\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-06-30-at-08.23.34-1024x764.png\" alt=\"screen-shot-2017-06-30-at-08-23-34\" width=\"310\" height=\"231\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The full assessment I did on Simon included pelvic, spine and shoulder function screens, knee stability screens, foot function screens and I assessed for subclinical muscle spasm, nerve tension and joint immobility. There was a lot of common dysfunction present but nothing that concerned me, other than how we would fit in what was needed to help him function and move better. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We sat down to discuss the results and I reminded him that I couldn’t promise pain relief BUT could guarantee teach him how to improve his own function and movement. So we started to discuss how his pain influenced his daily routine and quality of life. This gave us an opportunity to explore the real reason for his visit. </span>\n\n&nbsp;\n<h3><b>The Real Goal/s</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">He simply wanted to be able to get down onto the floor to play with his daughter and to feed his baby girl in the night, without his arm fatiguing. This is what became the goal but it also became a measurement. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I asked Simon to physically show me how he did these tasks at present. His cumbersome way of bending his back and not his knees to get to the floor was telling. His methods to lift his baby girl from her crib and then to hold her and feed her, also spoke volumes to me about his upper body positioning. I had even noticed the way he sat down and got up out of the chair with a huge forward lean, massively folding at the hip. All putting a lot of pressure and strain on his lower back particularly.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So while all of this was based on my subjective judgements, it gave me some ideas on what more we might be able to do with Simon’s very limited time and equipment. </span>\n\n&nbsp;\n<h3><b>Links Man &amp; Screening Form</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">With my links man and screening form, I explained the screening results to Simon, where he was intrinsically dysfunctional was marked in green and what it might all meant to him. Breaking everything down into what it might mean with regards to his daily routine. Simon was very keen and eager to take on board everything I was suggesting. </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3014\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/sample-case-study-1-738x1024.jpeg\" alt=\"sample-case-study-1\" width=\"306\" height=\"424\" />\n<h3><b>Prescribing Homework</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">His homework was just 2 simple pelvic anti spasm techniques Leg Press &amp; 4 Sign </span><b>&lt;&lt;see the 4 Sign muscle energy technique in this article&gt;&gt;</b><span style=\"font-weight: 400;\"> to practice at least 4 times a day. As we discussed his usual day, I encouraged him to be involved in the decisions around his homework. So he suggested he could do it while sitting at work or at home with his family. I also taught him how to sit down and stand up and how to get down and up from the floor, while putting less pressure on his back. Everything was designed to fit in with HIS lifestyle and to be realistic and achievable, even with his circumstances. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As I explained what this could do IF he did his homework and what the next steps might be, Simon nodded looking completely committed to what I was suggesting. We had already agreed his next visit would be in 2 days and so I dropped him back at the train station with his exercise sheet looking very hopeful.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over the next 48hours I texted him regularly … “</span><i><span style=\"font-weight: 400;\">have you done your homework this morning…</span></i><span style=\"font-weight: 400;\">?”. He would reply…</span><i><span style=\"font-weight: 400;\"> “I have done 3 sets already!</span></i><span style=\"font-weight: 400;\">” WOWZERS it was only 10am this guy was serious. So serious in fact, that he did his anti spasms 12 times a day!! Now please understand while the dosage we recommend is 4 x daily, they can be performed more which is likely to give a quicker, more effective response. Great start! I thought, excited about the re-screen.</span>\n\n&nbsp;\n<h3><b>The Re-Screen </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Just 2 days later and Simon was back. He said he felt he could move a bit better, but the pain was the same. He had done all of his homework, and more, AND was using his body better in general with the sit/stand techniques and lifting of his daughters. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The re-screen showed an incredible different in ares that weren\'t quite moving so well and looked like this on the Links Man screening form..</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3015\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/sample-case-study-2-741x1024.jpeg\" alt=\"sample-case-study-2\" width=\"298\" height=\"411\" />\n\n<i><span style=\"font-weight: 400;\">“WELL DONE!!” </span></i><span style=\"font-weight: 400;\">I said and while he could see the difference on the 2 links men forms and he was pleased, I knew there was still some convincing to do. We added in some lumber mobility work and removed Leg Press as he felt 4 Sign was the one that made the difference. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Off he went and this time for a week. So I continued to text or call regularly to check on how we getting on and feeling. He was still doing everything as prescribed and felt good but still had pain. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">His 3rd appointment we met after a workshop I had delivered in London and I was REALLY excited to see the results. Simon showed even more improvement and explained how he could now get down easily to play with his daughter and can hold his baby girl all night with much less fatigue. However his pain/discomfort wasn’t really much different.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3016\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/sample-case-study-3-746x1024.jpeg\" alt=\"sample-case-study-3\" width=\"301\" height=\"413\" />\n\n<span style=\"font-weight: 400;\">Now I knew Simon trusted me and when I asked him to be patient and persistent I knew he would. This time we integrated thoracic mobility and also some low grade supine core bracing that he could do while lying on the floor with is little girl.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I also did was teach him some shoulder anti spasms but I asked him not to do them yet, we would talk over skype and I would let him know when he could introduce this technique. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because of where we had got to and the vast improvement he had achieved, I explained we didn’t need to meet for 4 weeks now. He had his homework and I felt his schedule was so hectic that now we had built our relationship and I knew he did his homework, we could for now work together via phone or skype etc. </span>\n\n&nbsp;\n<h3><b>Pain Relief</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over the next few weeks he did his homework religiously, committed to generally moving better now that he was more body aware and finally in week number 6 he called. </span>\n\n&nbsp;\n\n<span style=\"color: #ff0000;\"><i><span style=\"font-weight: 400;\">“MY PAIN HAS GONE!”</span></i></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He was so happy and relieved and to be honest, so was I. He explained that he thought it was when he introduced the shoulder anti spasms. We created an action plan for him moving forward and I advised him that this would probably be a long term maintenance programme now. BUT rather than 4 times daily (or 12 in Simon’s case!) he could reduce the dosage to 2 x daily and see how he got on. </span>\n\n&nbsp;\n<h3><b>Summary</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here I have listed all the messages this ‘perfect’ client experience showed me;</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Never promise pain relief</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Trust an evidence based system</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The body is an integrated system</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Empower your client to take control of their own body</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Offer MORE than the session for success</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Never promise pain relief</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Include them in their homework design</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Helping clients move better with less pain doesn’t have to be in a gym</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Explain in detail only what the client cares about in relation to their goal.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Convert their goal if necessary to be a more realistic one</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Offer realistic solutions based on the individual\'s lifestyle</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Never promise pain relief</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember had I done this, not only would the goal have been a negative one, Simon may not have returned or listened when his pain wasn’t changing. Had it not, I would have referred him to a colleague for some further tests but nothing gave me a red flag.</span>\n\n&nbsp;\n\nThe screening system and exercises I used with Simon were from the Biomechanics Coaching Diploma.\n\n&nbsp;\n<h3>The benefits;</h3>\nThis evidence based system has been tried and tested over 25 years on over 4.5k subjects.\n\n&nbsp;\n\nIt is amazingly easy to perform without any special equipment other than a chair or step.\n\n&nbsp;\n\nYou can assess the results immediately!\n\n&nbsp;\n\nEach screen comes with the relevant iMoveFreely exercise techniques like the ones I prescribed to Simon to improve his movement.\n\n&nbsp;\n\nIf you are like thousand of other PT\'s out there and you face doubt when trying to work out where your clients movement limitations are actually coming from <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a>.\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2759 size-full\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-23-at-06.26.43.png\" alt=\"screen-shot-2017-05-23-at-06-26-43\" width=\"594\" height=\"308\" />\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; color: #ff0000;\"><a style=\"color: #ff0000; text-decoration: underline;\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">I WANT TO FIND OUT MORE!</a></span></p>','[CASE STUDY] How Simon Reduced His Low Back And Shoulder Pain','','draft','closed','closed','','case-study-simon','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=2972',0,'post','',0),(2976,0,'2017-07-11 16:39:25','2017-07-11 16:39:25','','','','inherit','closed','closed','','core-stability','','','2017-07-11 16:39:25','2017-07-11 16:39:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/core-stability-1.png',0,'attachment','image/png',0),(2978,3,'2017-07-24 12:00:01','2017-07-24 12:00:01','Todays blog was inspired by a Facebook post ….\n\n&nbsp;\n\n<img class=\"wp-image-3004 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.14.53.png\" alt=\"screen-shot-2017-07-12-at-15-14-53\" width=\"247\" height=\"351\" /><img class=\"wp-image-3003 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.15.42-654x1024.png\" alt=\"screen-shot-2017-07-12-at-15-15-42\" width=\"228\" height=\"357\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly I would like to explain the difference between extrinsic and intrinsic biomechanics. It can be confusing to analyse your clients movement if you are unaware of the difference, so let’s have a lookere..</span>\n\n&nbsp;\n<h2><i><span style=\"font-weight: 400;\">Extrinsic Biomechanics</span></i></h2>\n<i><span style=\"font-weight: 400;\">This can be a very complex analysis of the performance of movements using high level and</span></i> <i><span style=\"font-weight: 400;\">expensive machinery like isokinetics and kinematics to help us understand forces, loads and levers. In a practical sense this also includes</span></i> <i><span style=\"font-weight: 400;\">what an exercise professional sees when they look at their client move and then correct it with interventions such as verbal and visual cues.</span></i>\n\n&nbsp;\n<h2><i><span style=\"font-weight: 400;\">Intrinsic Biomechanics</span></i></h2>\n<i><span style=\"font-weight: 400;\">This is the analysis of what is happening inside the body which</span></i> <i><span style=\"font-weight: 400;\">creates the extrinsic movements. An understanding of the internal neuro-musculoskeletal system and how this integrated system is the basis for what we see through the extrinsic analysis.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It was clear from the Facebook comment that I had not clarified the difference for those reading it and so I realised that this might be something you and other fitness professionals struggle with too. </span>\n\n&nbsp;\n<h2><b>Have You Ever Coached A Client &amp; Wondered WHY They Aren’t Symmetrical? </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">You can tell something isn’t level, because their knees aren\'t the same height or one shoulder is a tiny further forwards than that other. Postural assessment kinda stuff.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet they may have pretty good movement ability, they may have no pain or injuries but your thinking ….</span><i><span style=\"font-weight: 400;\">do I try to correct that? </span></i><span style=\"font-weight: 400;\">then</span><i><span style=\"font-weight: 400;\"> …if so, how and from where??</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yeah, me too!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3005\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.37.03.png\" alt=\"screen-shot-2017-07-12-at-15-37-03\" width=\"268\" height=\"362\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Something I have found a challenge, having spent over 25yrs in the industry of ‘coaching movement’, is finding the balance between trying to change the lines of symmetry with visual and verbal cues and simply letting the client MOVE the way their body needs to because of how they are stacked up on the inside. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The overhead squat position above is the most comfortable and stable position for me. I know that whenever I have tried to do to become more extrinsically symmetrical, it has felt really awkward, slightly uncomfortable and not at all stable; so I don\'t worry too much about trying to force a position that I know just feels wrong, even if it </span><i><span style=\"font-weight: 400;\">looks</span></i><span style=\"font-weight: 400;\"> better.</span>\n\n&nbsp;\n<h2><b>What Is The Point?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It was a friend of mine that challenged me on my statement “</span><i><span style=\"font-weight: 400;\">If I perfect my lines, I’d likely injure myself”. </span></i><span style=\"font-weight: 400;\">Now I LOVE to be challenged and she had every right to challenge me and as her point was important. As it turns out, we actually were agreeing on MY point BUT I hadn’t made clear what I was trying to highlight. What she was pointing out was; for those out there who read posts like mine, it could have been interpreted wrongly. She was absolutely right.</span>\n\n&nbsp;\n<h2><b>Out Of Date Education?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a professional dancer symmetrical arm lines were literally everything on stage in my dance troupe. Then in my fitness industry qualifications I was taught to correct lines of movement so joints were stacked, knees in line etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if you had similar training then you will recognise it was really about coaching the </span><i><span style=\"font-weight: 400;\">extrinsic </span></i><span style=\"font-weight: 400;\">movement you can see. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">An example is when you ask your client to squat and their knee drops inwards, you might verbally and/or visually coach them to keep the knee ‘in line’ with the midfoot for example…right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">…and in some cases that would be correct BUT consider this…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What if your client has been sitting at their desk all day and comes to your session with a ‘functional’ twist at their pelvis? Something neither of you are aware of. This can be caused by their ‘intrinsic biomechanics’ adapting to that sedentary static desk posture, with muscles potentially going into subclinical spasm (a constant contraction). This can in turn limit the movement at the joints these muscles cross, thus creating the ‘impression’ of a longer limb as one side of the pelvis is ‘stuck’ rotated forward and down. This can result in a </span><i><span style=\"font-weight: 400;\">deliberate</span></i><span style=\"font-weight: 400;\"> compensation by the body (a true master of compensation by the way) of requiring the knee to buckle inwards to allow the body to descend into a squat without hurting the lower back; for example.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If this were the case do you think trying to encourage your client to get their knees ‘</span><i><span style=\"font-weight: 400;\">in line’</span></i><span style=\"font-weight: 400;\"> would be the best course of action?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">… Well probably not.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So how on earth are we supposed to KNOW what is simply poor technique and requires verbal or visual coaching and what is in fact a result of the way their intrinsic biomechanics are stacked up??</span>\n\n&nbsp;\n<h2><b>Good Question eh!</b></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-3006\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.40.22.png\" alt=\"screen-shot-2017-07-12-at-15-40-22\" width=\"326\" height=\"216\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well ideally we have screening or assessment skills to identify what isn\'t working properly BEFORE we train their movement/s. This then guides us on which exercises are good for them on that day and which might create a problem.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Note: Doing a movement on dysfunction won’t immediately ‘break’ your client BUT if undetected, overtime if they repeat movements on dysfunctional areas (sometimes with loads too) they could be raising the risk. </span>\n\n&nbsp;\n<h2><b>What Can We Do?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we really should be doing is educating clients on how to move more freely, by improving and </span><i><span style=\"font-weight: 400;\">preparing</span></i><span style=\"font-weight: 400;\"> their intrinsic biomechanical set up first. Then train or exercise upon a neuro-musculoskeletal system that has its capacity back which reduces risk and optimises performance for their daily task/s or chosen sport or activity.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This could be as simple as performing a range and symmetry test, then introducing an anti spasm or muscle energy technique like 4 sign. Then redo the range and symmetry test and if it has improved you KNOW they need to do that technique BEFORE they train or even warm up.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all appreciate the body is a complex series of structures and tissues so it can often be quite overwhelming when you are trying to decide where to start and how to proceed.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So let me give you a simple evidence based pyramid system of approach. </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2963\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-06-30-at-08.23.34-1024x764.png\" alt=\"screen-shot-2017-06-30-at-08-23-34\" width=\"380\" height=\"283\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">1) Start with preparation and capacity from the inside, considering all structures and tissues of our integrated system. Anti spasms, MET’S, massage, foam rolling, nerve mobilisations, joint mobilisations etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">2) Next train stability and control to proprioceptively remind the ‘core’ or trunk what this new position feels like. Remember, core control SHOULD be a reflex NOT something we have to think about. (Note: If someone appears to have a </span><a href=\"https://www.biomechanicseducation.com/do-you-really-have-a-weak-core/\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">weak</span></i></a><span style=\"font-weight: 400;\"> core remember it COULD be they are in fact not stacked up well intrinsically rather than actually ‘weak’.)</span>\n\n&nbsp;\n\n<span style=\"color: #ff0000;\"><em><a style=\"color: #ff0000;\" href=\"https://www.biomechanicseducation.com/do-you-really-have-a-weak-core/\" target=\"_blank\" rel=\"noopener\">Read my post \"Do you really have a weak core?\" here, if you\'re interested in finding out more on this.</a></em></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">3). Finally and only once the previous 2 points have been addressed, we train function and performance of the chosen sport or activity.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Matthews &amp; Norris, 2008 &amp; Krabak &amp; Kennedy, 2008)</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-3034\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/BIOMECHANICS-COACH-2-300x157.png\" width=\"500\" height=\"262\" /></span></a>\n\n<span style=\"font-weight: 400;\">If YOU would like to learn an evidence base system that enables PT’s like YOU to perform a whole series of 42 assessments on your clients, in advance of deciding which exercises to give them ……...weeeeell…... you are reading the right blog because all you need to do is …..</span>\n\n&nbsp;\n<h2 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><b>CLICK HERE TO FIND OUT MORE</b></a></h2>','Extrinsic Technique V’s Intrinsic Biomechanics','','draft','closed','closed','','extrinsic-technique-vs-intrinsic-biomechanics','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=2978',0,'post','',0),(2986,0,'2017-07-12 08:58:57','2017-07-12 08:58:57','','','','inherit','closed','closed','','simon-case-study-2','','','2017-07-12 08:58:57','2017-07-12 08:58:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/simon-case-study-2-1.png',0,'attachment','image/png',0),(2999,0,'2017-07-12 10:19:11','2017-07-12 10:19:11','','','','inherit','closed','closed','','ex-vs-in','','','2017-07-12 10:19:11','2017-07-12 10:19:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/ex-vs-in-1.png',0,'attachment','image/png',0),(3002,0,'2017-07-12 10:45:15','2017-07-12 10:45:15','','','','inherit','closed','closed','','clients-moving','','','2017-07-12 10:45:15','2017-07-12 10:45:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/clients-moving-1.png',0,'attachment','image/png',0),(3003,0,'2017-07-12 14:31:32','2017-07-12 14:31:32','','','','inherit','closed','closed','','screen-shot-2017-07-12-at-15-15-42','','','2017-07-12 14:31:32','2017-07-12 14:31:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.15.42-1.png',0,'attachment','image/png',0),(3004,0,'2017-07-12 14:31:42','2017-07-12 14:31:42','','','','inherit','closed','closed','','screen-shot-2017-07-12-at-15-14-53','','','2017-07-12 14:31:42','2017-07-12 14:31:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.14.53-1.png',0,'attachment','image/png',0),(3005,0,'2017-07-12 14:39:04','2017-07-12 14:39:04','','','','inherit','closed','closed','','screen-shot-2017-07-12-at-15-37-03','','','2017-07-12 14:39:04','2017-07-12 14:39:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.37.03-1.png',0,'attachment','image/png',0),(3006,0,'2017-07-12 14:40:44','2017-07-12 14:40:44','','','','inherit','closed','closed','','screen-shot-2017-07-12-at-15-40-22','','','2017-07-12 14:40:44','2017-07-12 14:40:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.40.22-1.png',0,'attachment','image/png',0),(3014,0,'2017-07-13 07:51:46','2017-07-13 07:51:46','','','','inherit','closed','closed','','sample-case-study-1-2','','','2017-07-13 07:51:46','2017-07-13 07:51:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/sample-case-study-1-1.jpeg',0,'attachment','image/jpeg',0),(3015,0,'2017-07-13 07:52:41','2017-07-13 07:52:41','','','','inherit','closed','closed','','sample-case-study-2-2','','','2017-07-13 07:52:41','2017-07-13 07:52:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/sample-case-study-2-1.jpeg',0,'attachment','image/jpeg',0),(3016,0,'2017-07-13 07:53:13','2017-07-13 07:53:13','','','','inherit','closed','closed','','sample-case-study-3-2','','','2017-07-13 07:53:13','2017-07-13 07:53:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/sample-case-study-3-1.jpeg',0,'attachment','image/jpeg',0),(3034,0,'2017-07-18 07:57:50','2017-07-18 07:57:50','','','','inherit','closed','closed','','biomechanics-coach-2','','','2017-07-18 07:57:50','2017-07-18 07:57:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/BIOMECHANICS-COACH-2-1.png',0,'attachment','image/png',0),(3173,0,'2017-08-10 15:21:39','2017-08-10 15:21:39','','','','inherit','closed','closed','','muscle-output','','','2017-08-10 15:21:39','2017-08-10 15:21:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/07/muscle-output-1.png',0,'attachment','image/png',0),(3174,0,'2017-08-11 11:02:35','2017-08-11 11:02:35','','','','inherit','closed','closed','','why-you-shouldnt-let-your-nerves-hold-you-back-from-living-your-dream-2','','','2017-08-11 11:02:35','2017-08-11 11:02:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Why-You-Shouldnt-Let-Your-Nerves-Hold-You-Back-From-Living-Your-Dream-1.png',0,'attachment','image/png',0),(3178,3,'2017-08-16 05:55:48','2017-08-16 05:55:48','<h3>The Problem Facing Our Learners Today</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you pass your A&amp;P and promptly forget all those muscle attachments?</span>\n\n<span style=\"font-weight: 400;\">Does the thought of attending a course raise your anxiety about being asked any anatomy questions in front of your peers?</span>\n\n<span style=\"font-weight: 400;\">Do you look at your client moving and wish you could remember your A&amp;P to work out which muscle isn’t doing its job?</span>\n\n<span style=\"font-weight: 400;\">Do you feel ashamed at how much of your anatomy training you can’t remember?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is one of the most common things that most of our learners share with us confidentially, prior to attending our workshops. Our workshops are designed to INCREASE knowledge and deepen understanding, but they are absolutely perfect and specifically designed for L2 fitness instructors or L3 PT’s, sports masseurs and coaches (depending upon which workshop/s) who want to increase their confidence and skills combined.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also as an education provider we take our role very seriously in never ever setting anyone up to fail…. Yet so many of you still actually FEAR not knowing enough to attend. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now the whole point of attending a course or workshop is to discuss, explore and learn things you didn’t know before, right? So they are SUPPOSED to be somewhat uncomfortable. We should expect a new level of thinking, for our paradigm to potentially shift and to potentially be taken through the Kubler-Ross curve of emotions. Shock, denial, fear and eventually acceptance.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Recently we had messages like…. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Very scared about tomorrow. I know nothing and am a slow learner! And getting old.............”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Oh dear god my anxiety levels have just  shot through the roof when I skimmed this email...Hopefully I shall calm down by Saturday lol”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Upon receiving these kinds of emails, we obviously contact the learners to reassure them that they are more than qualified to attend the workshops, as it is compulsory they provide evidence of the pre-requisite requirements.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We pride ourselves on the huge level of support we offer, taking it very seriously by providing a wide range of resources for our learners to access;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Screening forms</span>\n\n<span style=\"font-weight: 400;\">Webinars</span>\n\n<span style=\"font-weight: 400;\">Mentoring</span>\n\n<span style=\"font-weight: 400;\">Skype</span>\n\n<span style=\"font-weight: 400;\">Texts</span>\n\n<span style=\"font-weight: 400;\">Calls</span>\n\n<span style=\"font-weight: 400;\">Emails</span>\n\n<span style=\"font-weight: 400;\">Diversely skilled Master Trainer’s</span>\n\n<span style=\"font-weight: 400;\">Books</span>\n\n<span style=\"font-weight: 400;\">Videos - YouTube</span>\n\n<span style=\"font-weight: 400;\">Photos</span>\n\n<span style=\"font-weight: 400;\">Forums</span>\n\n<span style=\"font-weight: 400;\">Free Workshops</span>\n\n<span style=\"font-weight: 400;\">Find a Biomechanics Coach map</span>\n\n<span style=\"font-weight: 400;\">Events</span>\n\n<span style=\"font-weight: 400;\">Newsletters</span>\n\n<span style=\"font-weight: 400;\">Blogs</span>\n\n<span style=\"font-weight: 400;\">Articles</span>\n\n<span style=\"font-weight: 400;\">Website</span>\n\n&nbsp;\n<h3>The Solution</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I am fully aware that the industry is full of egos which includes presenters, teachers, tutors and mentors. There are gurus out there who seem to take pleasure in telling people what they know, rather than actually demonstrating a desire to create supportive educational environments, that not only allow individual growth but also contribute to improving the entire industry. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A true educator will admit when they don’t know the answer to a question. They will facilitate rather than simply lecture. They will encourage and provoke thought rather than simply recite information. They will ask questions rather than state facts. They will encourage learners to challenge everything rather than just accept what they are told. True educators will wait for the learners questions rather than push the detail too soon. True educators accept they too are continually learning alongside and from their learners. A true educator does not KNOW everything but guides, supports and encourages thinking.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3179\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/IMG_1180-1024x768.jpg\" alt=\"img_1180\" width=\"590\" height=\"442\" />\n<h3>How We Can Help</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">At Biomechanics Education Ltd our mission statement and ethos is ….</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“To Improve Movement Through Education, While Improving Education Through A Movement”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By creating inclusive education experiences that embrace diverse interprofessional relationships, we embrace small steps towards improvement not just for the individual, but also for the entire industry.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are examples of feedback after recent workshops…..</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“I have already expressed how great it was to meet you and you certainly surpassed my expectations of how great a tutor you are.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">You made me feel at ease when chatting with you and even when I wasn\'t confident in answering any questions, I wasn\'t made to feel silly or stupid.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">I def would pick you to be lost on a desert island with,  as I would be in total awe of your knowledge and enthusiasm.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Attending on Saturday has brought my excitement back for learning and I definitely want to explore biomechanics further. I for one would love to commit to learning more and would love to have the chance to study the diploma. (I found my old flash cards for muscles) </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Look forward to hearing from you :-)”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Hi Rachel</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Thanks for a great course I learnt a lot and it was a great pace! I actually feel confident that I can go away and use those tests not like other courses I have done when I go away overwhelmed and confused. I realise I still have more to learn and practice though.”</span></i>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3188\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/imovefreely-blog-2-300x169.png\" alt=\"imovefreely-blog-2\" width=\"600\" height=\"338\" />\n<p style=\"text-align: center;\"><strong>Would you like to start with a 1 day workshop like the <a href=\"https://www.biomechanicseducation.com/event/imovefreely-instructor-2/\" target=\"_blank\" rel=\"noopener\">iMoveFreely Instructor Workshop Saturday 2nd Sept London?</a> </strong></p>\n<p style=\"text-align: center;\"><strong><a href=\"https://www.biomechanicseducation.com/event/imovefreely-instructor-2/\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a></strong></p>\n&nbsp;\n\n<img class=\"size-full wp-image-3180 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-12-at-16.23.04.png\" alt=\"screen-shot-2017-08-12-at-16-23-04\" width=\"566\" height=\"312\" />','Do You Fear You Just Don\'t Know Enough?','','draft','closed','closed','','do-you-fear-you-just-dont-know-enough','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=3178',0,'post','',0),(3179,0,'2017-08-15 09:49:02','2017-08-15 09:49:02','','','','inherit','closed','closed','','img_1180','','','2017-08-15 09:49:02','2017-08-15 09:49:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/IMG_1180-1.jpg',0,'attachment','image/jpeg',0),(3180,0,'2017-08-15 09:49:05','2017-08-15 09:49:05','','','','inherit','closed','closed','','screen-shot-2017-08-12-at-16-23-04','','','2017-08-15 09:49:05','2017-08-15 09:49:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-12-at-16.23.04-1.png',0,'attachment','image/png',0),(3183,0,'2017-08-16 05:54:37','2017-08-16 05:54:37','','','','inherit','closed','closed','','screen-shot-2017-08-16-at-06-51-38','','','2017-08-16 05:54:37','2017-08-16 05:54:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-16-at-06.51.38-1.png',0,'attachment','image/png',0),(3188,0,'2017-08-16 08:28:21','2017-08-16 08:28:21','','','','inherit','closed','closed','','imovefreely-blog-2','','','2017-08-16 08:28:21','2017-08-16 08:28:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/imovefreely-blog-2-1.png',0,'attachment','image/png',0),(3191,0,'2017-08-16 13:27:55','2017-08-16 13:27:55','','','','inherit','closed','closed','','do-you-fear-3','','','2017-08-16 13:27:55','2017-08-16 13:27:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Do-you-fear-3-1.png',0,'attachment','image/png',0),(3198,3,'2017-08-21 07:00:41','2017-08-21 07:00:41','<span style=\"font-weight: 400;\">Do you wish you could see what we REALLY look like on the inside?</span>\n\n<span style=\"font-weight: 400;\">Are you fascinated by anatomy?</span>\n\n<span style=\"font-weight: 400;\">Do you wonder why people move the way they do?</span>\n\n<span style=\"font-weight: 400;\">Would you like an anatomy experience like no other?</span>\n\n<span style=\"font-weight: 400;\">Do you want an opportunity to ask the experts about REAL A&amp;P?</span>\n\n<span style=\"font-weight: 400;\">Would you like to see just how different we all are on the inside too?</span>\n\n<span style=\"font-weight: 400;\">If you answered yes to any of the above then this blog is definitely for you…..now bare with me while I set the scene…</span>\n\n<span style=\"font-weight: 400;\">Have you ever met someone in one of the most unlikely circumstances and they have turned out to be someone much more valuable than you might have imagined?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the things I was trained for in my very first job as a silver service waitress at the tender age of 14yrs was..</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Treat everyone you meet like they could change your life for the better</span></i><span style=\"font-weight: 400;\">”. </span>\n\n<span style=\"font-weight: 400;\">This attitude has stood me in good stead over the years and so I want to share with you an unlikely meeting that has resulted in an incredible, and exclusive, opportunity I am now able to offer to YOU and all of our academy learners. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you want to hear about it?</span>\n\n<span style=\"font-weight: 400;\">Thought you might ;)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Read on..</span>\n\n&nbsp;\n\n<b>It All Started In A Sauna..</b>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3206\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.57.23-1024x413.png\" alt=\"screen-shot-2017-08-21-at-14-57-23\" width=\"570\" height=\"230\" />\n\n<span style=\"font-weight: 400;\">Yup a sauna! </span>\n\n<span style=\"font-weight: 400;\">At one of my local gyms after a hard training session I had taken myself down to the quiet spa area. Finding the quietest sauna of the five there I settled into the opposite corner from a gentleman already in there. We exchanged </span><i><span style=\"font-weight: 400;\">‘hello’s</span></i><span style=\"font-weight: 400;\">’. He then asked about my training in a soft german accent and so we got chatting. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It turns out he’s a professor at <a href=\"http://bit.ly/2vXvlci\" target=\"_blank\" rel=\"noopener\">Nottingham Medical School, Queen’s Medical Centre.</a> Dr Michael Rittig actually teaches medical students in the </span><span style=\"font-weight: 400;\">Anatomy Teaching Suite. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">WOWZERS!</span></i><span style=\"font-weight: 400;\">” I exclaimed to him “</span><i><span style=\"font-weight: 400;\">How I would LOVE to be able to take my learners into a cadaver lab!”. </span></i>\n\n<span style=\"font-weight: 400;\">Having experienced about 3 ‘cadaver days’ myself at Keele Medical labs several years ago I had known then it was a privilege.</span>\n\n&nbsp;\n\n<b>Guess What He Said…..?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Well I am confident I can arrange that for you</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My jaw literally hit the floor. I knew how difficult this could have been to arrange as an ‘outsider’ without ‘clinical’ qualifications. </span>\n\n<span style=\"font-weight: 400;\">For just a moment I felt slightly weird sitting there sweating in my swim wear, jaw on the floor, wishing I had a pen and paper to take his number…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The opportunity was far too exciting to feel weird for long!</span>\n\n<span style=\"font-weight: 400;\">He promised to leave his email address at reception on his way out.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As I changed, very quickly, I wondered if he would actually leave his email or even if he would remember! Feeling so excited for my learners I made my way back to the car and home imagining their faces when I sent out the email saying we have a <a href=\"http://bit.ly/2vXvlci\" target=\"_blank\" rel=\"noopener\">cadaver experience </a>on the schedule.</span>\n\n<span style=\"font-weight: 400;\">During my lessons I had been telling them about my experience and how it had boosted my own confidence in anatomy due to the complexity of it all. It had reassured me not to feel I had to know everything. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, yes you guessed it, I had forgotten to ask for his email as I left </span>\n\n<span style=\"font-weight: 400;\">DOH!</span>\n\n<span style=\"font-weight: 400;\">I rang reception immediately and they eventually found it but couldn\'t read his writing. So I typed out an email and wrote every version of the spelling I could imagine it might be.</span>\n\n&nbsp;\n\n<b>Then I Finally Got My Reply!!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHOOP WHOOP!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So as I started to schedule potential dates we put out a ‘</span><i><span style=\"font-weight: 400;\">who’s interested?</span></i><span style=\"font-weight: 400;\">’ email to create a waiting list.</span>\n\n<span style=\"font-weight: 400;\">Within 4hrs we had 27 names, after 24 hrs we had 46! We had 2 organisations contact us one with 65 people the other with 103!</span>\n\n&nbsp;\n\n<a href=\"http://bit.ly/2vXvlci\" target=\"_blank\" rel=\"noopener\"><b>The First Biomechanics Education Cadaver Experience</b></a>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3207\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.58.44.png\" alt=\"screen-shot-2017-08-21-at-14-58-44\" width=\"172\" height=\"244\" />\n\n&nbsp;\n\nBiomechanics Education Ltd’s first <a href=\"http://bit.ly/2vXvlci\" target=\"_blank\" rel=\"noopener\">Cadaver Experience</a> was on a Monday…\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some learners felt trepidation at this first experience and ALL of them confirmed afterwards they did feel freaked out after all once inside. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As we donned our white lab coats and latex gloves, Dr Mike and Dr Rana were both poised ready, one at the upper limb station and the other at the lower limb station.</span>\n\n<span style=\"font-weight: 400;\">We split into 2 groups and listened intently for around 2 hrs before we took a break for lunch.</span>\n\n<span style=\"font-weight: 400;\">We then continued until around 3pm and moved to different stations to discuss and explore the foot, spine, pelvis and shoulder.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sadly no photos are permitted because I would have loved to show you the looks of awe on the learners faces, as they held various body parts, peeled back different layers of dissection while studying these amazing specimens. It was just fantastic!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3208\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-15.02.45.png\" alt=\"screen-shot-2017-08-21-at-15-02-45\" width=\"462\" height=\"247\" />\n\n<span style=\"font-weight: 400;\">Would YOU like to experience real anatomy?</span>\n\n<span style=\"font-weight: 400;\">YES? <a href=\"http://bit.ly/2vXvlci\" target=\"_blank\" rel=\"noopener\">CLICK HERE TO REGISTER</a></span>\n\n&nbsp;\n\n<b>Just check out the feedback…..</b>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3201\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.45.38-1024x772.png\" alt=\"screen-shot-2017-08-21-at-14-45-38\" width=\"528\" height=\"398\" />\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3203\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.45.13-942x1024.png\" alt=\"screen-shot-2017-08-21-at-14-45-13\" width=\"514\" height=\"559\" />\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3202\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.45.28-769x1024.png\" alt=\"screen-shot-2017-08-21-at-14-45-28\" width=\"511\" height=\"680\" />\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3200\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.45.45-749x1024.png\" alt=\"screen-shot-2017-08-21-at-14-45-45\" width=\"495\" height=\"677\" />','THE Cadaver Experience','','draft','closed','closed','','the-cadaver-experience','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=3198',0,'post','',0),(3200,0,'2017-08-21 13:46:15','2017-08-21 13:46:15','','','','inherit','closed','closed','','screen-shot-2017-08-21-at-14-45-45','','','2017-08-21 13:46:15','2017-08-21 13:46:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.45.45-1.png',0,'attachment','image/png',0),(3201,0,'2017-08-21 13:46:19','2017-08-21 13:46:19','','','','inherit','closed','closed','','screen-shot-2017-08-21-at-14-45-38','','','2017-08-21 13:46:19','2017-08-21 13:46:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.45.38-1.png',0,'attachment','image/png',0),(3202,0,'2017-08-21 13:46:24','2017-08-21 13:46:24','','','','inherit','closed','closed','','screen-shot-2017-08-21-at-14-45-28','','','2017-08-21 13:46:24','2017-08-21 13:46:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.45.28-1.png',0,'attachment','image/png',0),(3203,0,'2017-08-21 13:46:29','2017-08-21 13:46:29','','','','inherit','closed','closed','','screen-shot-2017-08-21-at-14-45-13','','','2017-08-21 13:46:29','2017-08-21 13:46:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.45.13-1.png',0,'attachment','image/png',0),(3205,0,'2017-08-21 13:52:00','2017-08-21 13:52:00','','','','inherit','closed','closed','','screen-shot-2017-08-21-at-14-50-57','','','2017-08-21 13:52:00','2017-08-21 13:52:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.50.57-1.png',0,'attachment','image/png',0),(3206,0,'2017-08-21 13:57:57','2017-08-21 13:57:57','','','','inherit','closed','closed','','screen-shot-2017-08-21-at-14-57-23','','','2017-08-21 13:57:57','2017-08-21 13:57:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.57.23-1.png',0,'attachment','image/png',0),(3207,0,'2017-08-21 13:59:04','2017-08-21 13:59:04','','','','inherit','closed','closed','','screen-shot-2017-08-21-at-14-58-44','','','2017-08-21 13:59:04','2017-08-21 13:59:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.58.44-1.png',0,'attachment','image/png',0),(3208,0,'2017-08-21 14:03:04','2017-08-21 14:03:04','','','','inherit','closed','closed','','screen-shot-2017-08-21-at-15-02-45','','','2017-08-21 14:03:04','2017-08-21 14:03:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-15.02.45-1.png',0,'attachment','image/png',0),(3213,0,'2017-08-22 05:22:15','2017-08-22 05:22:15','','','','inherit','closed','closed','','craftsmen-1-1','','','2017-08-22 05:22:15','2017-08-22 05:22:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Craftsmen-1-1-1.png',0,'attachment','image/png',0),(3214,0,'2017-08-22 05:22:18','2017-08-22 05:22:18','','','','inherit','closed','closed','','craftsmen-6-1','','','2017-08-22 05:22:18','2017-08-22 05:22:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Craftsmen-6-1-1.png',0,'attachment','image/png',0),(3227,3,'2017-08-29 08:48:21','2017-08-29 08:48:21','<h2><span style=\"font-weight: 400;\">The Problem </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The<a href=\"http://bit.ly/2lTqLtc\" target=\"_blank\" rel=\"noopener\"> ‘Weak Core’ </a>Epidemic - everyone is talking about it but what is it exactly?</span>\n\n<span style=\"font-weight: 400;\">You get a new client and they say they want to strengthen their core. Maybe they have a sore lower back or have recently been to a therapist who suggested they need strengthen their core.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sound familiar?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If something is ‘weak’ you strengthen it, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well not necessarily so let’s start by clearing a few things up….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). Pain or discomfort is not indicative of  being ‘weak’.</span>\n\n<span style=\"font-weight: 400;\">2). An apparent ‘weakness’ can be caused by several things, many of which do NOT, initially at least, require ‘strength’ work. In fact strength work could actually compound issues in some cases.</span>\n\n<span style=\"font-weight: 400;\">3). A ‘weak’ core is being used as a blanket term for a variety of problems.</span>\n\n<span style=\"font-weight: 400;\">4). If you can walk around and hold your body upright then chances are your core ain’t simply in need of strengthening!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The big question is WHY are is your core ‘weak’???</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3229\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-29-at-09.45.59.png\" alt=\"screen-shot-2017-08-29-at-09-45-59\" width=\"353\" height=\"235\" />\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">The Solution </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is the kind of question we really need to start asking ourselves along with;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What exactly does the term ‘weak’ really mean in relation to the core?</span>\n\n<span style=\"font-weight: 400;\">Why are people being told they have a ‘weak’ core if this isn\'t the case?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly let’s attempt to define the term ‘weak’.....</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">WEAK</span></i><span style=\"font-weight: 400;\">; Oxford Dictionary’s Definition;</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">lacking the power to perform physically demanding tasks; having little physical strength or energy.</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok we get that but how does this translate into this discussion? Well let’s consider a few of the common problems that could contribute to an apparent ‘weakness’ in relation to the core. </span>\n\n<span style=\"font-weight: 400;\">Well we have 3 sub systems within our bodies that make up our intrinsic biomechanical setup. </span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Myofascial</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Neural </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Skeletal </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">These 3 sub systems can directly influence each other in a variety of ways through the kinetic chain or integrated system of how our bodies function. Now should any one of them become problematic they can compensate for each other or because of each other. Here are some common adaptations or compensations we might find in someone identified as having a ‘weak’ core;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Subclinical muscle spasm (eg; QL, Psoas)</span>\n\n<span style=\"font-weight: 400;\">Antagonist inhibition (eg; glutes, erectors)</span>\n\n<span style=\"font-weight: 400;\">Joint Stiffness (eg; thoracic spine)</span>\n\n<span style=\"font-weight: 400;\">Nerve Tension (eg; sciatic nerve)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we should be mindful of is identifying the root cause of the ‘weakness’ FIRST, to then address is appropriately rather than assuming it requires core strength work.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3228\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-29-at-09.46.31-1024x421.png\" alt=\"screen-shot-2017-08-29-at-09-46-31\" width=\"513\" height=\"211\" />\n<h2><span style=\"font-weight: 400;\">How We Can Help</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having looked at the evidence that is out there in relation to assessing and understanding dysfunction around the core area we have developed, tried and tested a system that enables you to do just this. To identify WHY the core maybe ‘weak’. This then allows you to know what to do to correct it with a safe and logical series of periodised core exercise we can show you. This creates a prepared trunk with improved capacity. It would then be logical to follow this with some core strength ratio screening and correction based upon McGill’s work to give your client stability and control. Finally some functional stability screens and exercises would give your clients a greater function and performance ability fit for purpose (client relative). Some of this will certainly include strength work BUT not before creating the base of prepared and improved intrinsic function, capacity and then movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you fancy spending a couple of days discussing the evidence and what we can do to better provide safe training and exercise for your clients?</span>\n\n&nbsp;\n\n<a href=\"http://bit.ly/2lTqLtc\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">CLICK HERE TO REGISTER YOUR INTEREST </span></a>\n\n&nbsp;\n\n<a href=\"http://bit.ly/2lTqLtc\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Spine Biomechanics Workshop</span></a>\n\n<span style=\"font-weight: 400;\">Sept 7th/8th London (NLSSM) </span>\n\n<span style=\"font-weight: 400;\">Sept 16th/17h Loughborough University</span>','The ‘Weak Core’ Epidemic!','','draft','closed','closed','','298-the-weak-core-epidemic','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=3227',0,'post','',0),(3228,0,'2017-08-29 08:47:01','2017-08-29 08:47:01','','','','inherit','closed','closed','','screen-shot-2017-08-29-at-09-46-31','','','2017-08-29 08:47:01','2017-08-29 08:47:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-29-at-09.46.31-1.png',0,'attachment','image/png',0),(3229,0,'2017-08-29 08:47:03','2017-08-29 08:47:03','','','','inherit','closed','closed','','screen-shot-2017-08-29-at-09-45-59','','','2017-08-29 08:47:03','2017-08-29 08:47:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-29-at-09.45.59-1.png',0,'attachment','image/png',0),(3230,0,'2017-08-29 08:47:06','2017-08-29 08:47:06','','','','inherit','closed','closed','','brunch','','','2017-08-29 08:47:06','2017-08-29 08:47:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/brunch-1.png',0,'attachment','image/png',0),(3234,0,'2017-08-29 11:21:28','2017-08-29 11:21:28','','','The weak core epidemic. Learn how to strengthen your core by investigating the causation and result.','inherit','closed','closed','','the-weak-core','','','2017-08-29 11:21:28','2017-08-29 11:21:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/08/The-Weak-Core-1.png',0,'attachment','image/png',0),(3239,3,'2017-09-04 16:55:54','2017-09-04 16:55:54','Has Periodisation Disappeared OR Maybe We Just Didn’t Get It!?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT’s are rarely employed anymore and so you find yourself competing with each other. The problem with this is that others are using their clients training sessions to ‘show off’ the funky looking methods they have to offer, trying to look interesting so as to stand out from the crowd, swinging from TRX’s, hollering at them to swat the heavy ropes up and down or loading up the squat rack. Which is kind of understandable if these PT’s feel they have to ‘perform’ in the gym to gain more clients. When actually, it’s your current client\'s long term results that speak for themselves and actually draw more and more people in.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, it is our professional duty as PT’s to ensure that the very basic preparation for movement is in place prior to introducing any of the sexy stuff wouldn\'t you agree!? In fact, not even just professional duty, if you want your clients to stick around for a long time, then you had better start with the foundation\'s first.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sometimes I wonder if periodization has been lost as it appears almost non-existent in the gym these days.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Clients want ‘beasting\' because that’s what they have been conditioning to think makes it a good session. They are often ignorant of the fact that ‘more is NOT better’, ‘harder does NOT mean healthier’ and actually some low grade possibly even, dare I say it, boring unsexy stuff, will, in fact, mean they can train for longer, with less risk of injury and also increase their strength output possibly by 50% over just 10 days! </span><a href=\"https://www.biomechanicseducation.com/want-to-increase-muscle-output-by-50-in-10-days/\" target=\"_blank\" rel=\"noopener\"><b>&gt;&gt;see that blog here</b></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We as trainers are </span><i><span style=\"font-weight: 400;\">educators and teachers </span></i><span style=\"font-weight: 400;\">and we all have a duty of care to our clients to make them aware of the importance of periodization. We don’t even have to call it that, we can call it preparation for movement or giving the body the ability or capacity for movement. While using some sensible conditioning principles we don\'t have to avoid strength work completely either. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Spending almost 30yrs in various gyms across the world, I have listened to and seen many trainers at work with clients, some fantastic ones and some not so great. As they chat to their clients, maybe count their reps, show caring and empathy and offer motivation and support, it can appear to be a relatively easy job. (This might be why the industry is now saturated with PT’s). Yet recently, and over the last few years in particular, the training sessions have become almost ridiculously complex. It has now reached a point where the client is virtually incapable of performing the movements or shows a much bigger increase in risking an injury.</span>\n\n<span style=\"font-weight: 400;\">Push ups can no longer simply be push ups on the floor, on the knees or on the toes. They have to be in a TRX and/or with feet on a stability ball. Core work seems to be no good unless you are rotating on one arm and one leg with a dumbbell in one hand. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Where have the basics gone?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All of this and many of us are not even </span><i><span style=\"font-weight: 400;\">prepared</span></i><span style=\"font-weight: 400;\"> for the basics especially with the lifestyles we now lead!</span>\n\n<span style=\"font-weight: 400;\">Think for a moment how many times or how many places you sat down, hips at 90 degrees, knees flexed, knee and hip muscles held long or short for long periods. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our clients come from sitting behind their desk all day and while I am an advocate of ‘movement is good’ the movement also has to ultimately be safe but also effective and appropriate to the clients biomechanics. In other words, rather than a show for the other people in the gym watching, it should be practical movements because this could compromise the individual in front of you paying for your professional advice. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what do we need to consider to get back to fundamentals of movement and the ability to train our clients appropriately? We need an objective and systemised approach for each client. So we have our ParQ, ask verbal questions and make notes on their forms and then ‘induct’ the client to understand how they move and what they might enjoy doing in the gym. We might use weighing scales, body fat callipers, fitness tests, movement tests but just how objective is this in relation to their intrinsic movement ability?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having an evidence based objective biomechanics assessment that is easy to apply here would mean you </span><span style=\"font-weight: 400;\">know</span><span style=\"font-weight: 400;\"> which exercises might harm them or help them. This then allows you to create a very bespoke thorough plan based on all of the information gathered. It also gives you the ability to monitor progress accurately with the screening forms - Here is an example we use to identify where the client is at risk from our screening system: </span>\n\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-3015\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/sample-case-study-2-741x1024.jpeg\" alt=\"Biomechanics Screening system for personal trainers\" width=\"741\" height=\"1024\" />\n\n<span style=\"font-weight: 400;\">Then depending on the client and the results we can start simply to a). Consider safety &amp; adaptions b). Allow the client to gradually build confidence in the way they move c). Build a rapport with the client feeling successful d). Allow the clients body enough time to adapt to their new training regime.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s look at a simple system of thought for any trainer, coach or exercise professional. The pyramid example:</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-2963\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-06-30-at-08.23.34-1024x764.png\" alt=\"Pyramid For Movement Progression For Personal Trainers\" width=\"1024\" height=\"764\" />\n\n<span style=\"font-weight: 400;\">If we consider this as a simple way of explaining the periodisation process to a client right through to their GOAL at the top it sets up an appropriate level of expectation from the outset. So when they tell you their GOAL you might actually ask them to write it into the top circle thus making it more real to them and empowering them more in committing to the achievement THEY have set. This really passes the responsibility onto them for reaching it, which ultimately it is, as we are simply facilitators, assessors, analysts and advisors.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can then explain simply to our clients why intrinsically they need to prepare for that GOAL, by showing them the layers of periodisation from preparation for movement first so they are level and moving freely. Explaining that while in this phase they might be using machines to simplify with symmetry, thus making movement easier while in the preparation phase. It also limits the core work while the pelvis and spine are encouraged to move better with anti spasm techniques and mobilisations until they are more aligned and level. This also means we are less likely to be ‘gluing’ them into an asymmetry before we even begin.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As you re-assess them you will know from your screens when they are ready for the next phase (Stability &amp; Control) which might include specific and periodised core training, less machine work, more free weights and maybe you can start to introduce some asymmetrical challenges too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Phase three is now the more functional part, now that they move better, have stronger muscles, tendons, ligaments, joints and proprioception has improved, all stacked on top of a strong foundation, we can start to challenge with functional specifics. This piece may even be over weeks too and as a trainer can you now see how you can create logical longevity to their requirement of your services with this approach? Starting simpler is not only safer but also gives your session long term progressive and interesting exercise content. Clients LOVE this!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The time lines on this periodisation is always going to be case by case and client specific but unless we continue to assess, re-assess and monitor progress sensibly with a periodised training system we could, in fact, be setting our clients up for injury albeit without knowing it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if you really care about your clients, educate them, rather than trying to be sexy, funky and exotic with your exercise choice.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Make it smart! </span>\n\n<span style=\"font-weight: 400;\">And</span>\n\n<span style=\"font-weight: 400;\">Remember smarter does NOT mean harder!</span>\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">CLICK HERE <b>If you need some help with periodisation for your clients, or you worry about the order that you are doing things</b></a>','Warning For PT\'s: Don’t Get Caught In The “Sexy” Trap','','draft','closed','closed','','warning-for-pts-dont-get-caught-in-the-sexy-trap','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=3239',0,'post','',0),(3242,0,'2017-09-04 16:47:59','2017-09-04 16:47:59','','','','inherit','closed','closed','','warning-for-pts-dont-get-caught-in-the-sexy-trap-2','','','2017-09-04 16:47:59','2017-09-04 16:47:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/WARNING-For-PTs-Dont-Get-Caught-In-The-Sexy-Trap-2.png',0,'attachment','image/png',0),(3243,0,'2017-09-04 16:49:17','2017-09-04 16:49:17','','','','inherit','closed','closed','','warning-for-pts-dont-get-caught-in-the-sexy-trap-1','','','2017-09-04 16:49:17','2017-09-04 16:49:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/WARNING-For-PTs-Dont-Get-Caught-In-The-Sexy-Trap-1-1.png',0,'attachment','image/png',0),(3321,3,'2017-09-11 19:24:53','2017-09-11 19:24:53','<b>‘Bacon Can Cure Nosebleeds’ </b><span style=\"font-weight: 400;\">was an actual study done by researchers!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you read research papers along with all the details surrounding them it really is quite fascinating and certainly, makes you think. Take this scientific study ‘</span><i><span style=\"font-weight: 400;\">Bacon Can Cure Nosebleeds</span></i><span style=\"font-weight: 400;\">’ as an example…. </span>\n\n<i><span style=\"font-weight: 400;\">According to a study conducted by Ian Humphreys and his team, bacon can quickly and effectively treat a nosebleed by serving as a nasal tampon. For this bizarre method to work, one must plug the bleeding nostril with a piece of </span></i><a href=\"http://www.theguardian.com/education/2012/jan/23/improbable-research-pork-nosebleeds\"><i><span style=\"font-weight: 400;\">cured pork</span></i></a><i><span style=\"font-weight: 400;\">. The meat must be uncooked.</span></i>\n\n<i><span style=\"font-weight: 400;\">At Detroit Medical Center, Humphreys and his colleagues tested their bacon hypothesis on a girl who had Glanzmann thrombasthenia, a rare hereditary disease that causes prolonged bleeding. After sticking a piece of cured pork inside the girl’s bloody nose, the bleeding stopped immediately.</span></i>\n\n<i><span style=\"font-weight: 400;\">The results of this bizarre scientific research were published in the Annals of Otology, Rhinology, and Laryngology. The researchers acknowledged that doctors had used cured pork to treat nosebleeds in the past. However, the practice was discontinued.</span></i>\n\n<i><span style=\"font-weight: 400;\">Humphreys and his colleagues speculate that the high risk of acquiring parasitic and bacterial complications from stuffing one’s nose with cured pork caused the unconventional treatment to be abandoned.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">..OR this one….</span>\n\n&nbsp;\n\n<a href=\"http://www.independent.co.uk/news/science/study-that-said-diet-fizzy-drunks-can-help-weight-loss-was-quietly-funded-by-coca-cola-and-pepsi-a6817686.html\" target=\"_blank\" rel=\"noopener\"><b>A recent study that said Diet Coke can help you lose weight was quietly funded by Coca-Cola</b></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It brings up a lot of questions about the validity of scientific studies, doesn’t it? </span>\n\n<span style=\"font-weight: 400;\">Whether it be the duration, the organisation funding the study, the number of subjects or the even the method of ‘proving or disproving’ something scientifically. </span>\n\n<span style=\"font-weight: 400;\">In fact don’t you hate how much conflicting evidence we see in the fitness industry?</span>\n\n&nbsp;\n\n<b>The Problem</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I find interesting is that if you read research papers you will see how sketchy and conflicting it can be when it comes to the </span><i><span style=\"font-weight: 400;\">evidence</span></i><span style=\"font-weight: 400;\">. However, when a study is done across a long period of time, on a large group of subjects and they are from a variety of levels &amp; backgrounds it offers a far more robust argument for its results. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example, many studies around movement, biomechanics, force, loads and relevant topics we PT’s might be interested in, usually average 20-30 subjects. The subjects are often young athletes at the university that are conducting the study. Also while the ‘start point’ is often ‘</span><i><span style=\"font-weight: 400;\">all subjects are healthy adults</span></i><span style=\"font-weight: 400;\">’ they rarely (if ever) have an assessment to check they are starting with a common ‘biomechanical’ start point.</span>\n\n<span style=\"font-weight: 400;\">Yet you would imagine this would be a vital component for a biomechanics study, don’t you think? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider that if you are analysing loads and forces on the limbs of one subject who has a tight sciatic nerve, another subject in the study has a functional leg length discrepancy and another has an overactive pec minor creating a stiff thoracic spine - ALL of whom are ‘</span><i><span style=\"font-weight: 400;\">healthy adults</span></i><span style=\"font-weight: 400;\">’...well how much will these very common </span><i><span style=\"font-weight: 400;\">intrinsic</span></i><span style=\"font-weight: 400;\"> biomechanical compensations give you a different starting load in joints? Or a limitation of the individual’s movement that differs from the other subjects? </span>\n\n&nbsp;\n\n<b>The Evidence</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With this in mind, if you consider a study with the input/output repetition of 4,500 subjects across 20+ years, from GB levels to sedentary, with an intrinsic biomechanical assessment at each point of analysis, the work we did was pretty groundbreaking. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The high volume of data allowed us to establish a system which we have developed into the high standards of content that we now teach exercise professionals like YOU, during our workshops. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our sample size = 4500 subjects.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our study duration = 20+ yrs </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The results we discovered, allowed us to develop a simple system based on how to assess the entire integrated system, from the joints, muscles and nerves. Which allows YOU to screen and prescribe exercises to improve capacity &amp; function in every area of the body and in everyone.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How does this affect YOU the exercise professional?</span>\n\n<span style=\"font-weight: 400;\">Learn a system and always have a methodology to your programme design for beginners, elite, elderly and right through to post rehab, and be confident in the fact that it is backed by a whole stack of evidence in the real world!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To find out more about our programmes developed from this massive research study <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a> now!!</span>\n\n&nbsp;\n\nP.S. Our 2018 schedule is now <a href=\"https://www.biomechanicseducation.com/events/2018-01/\" target=\"_blank\" rel=\"noopener\">LIVE on the website </a>\n\n&nbsp;\n\n<a href=\"https://www.healthambition.com/7-steps-to-replace-diet-soda/\" target=\"_blank\" rel=\"noopener\">7 STEPS HOW TO REPLACE COKE BY HELEN SANDERS OF HEALTH AMBITION </a>','Did You Know Bacon Can Cure Nosebleeds?','','draft','closed','closed','','did-you-know-bacon-can-cure-nosebleeds','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=3321',0,'post','',0),(3325,0,'2017-09-11 19:10:19','2017-09-11 19:10:19','','','','inherit','closed','closed','','nose-bleed','','','2017-09-11 19:10:19','2017-09-11 19:10:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Nose-Bleed-1.png',0,'attachment','image/png',0),(3478,3,'2017-09-18 12:31:02','2017-09-18 12:31:02','<h2>Are You Confused?</h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you been wondering what all this fuss is about Biomechanics Coaching</span><b>™</b><span style=\"font-weight: 400;\">? Does it leave you feeling confused and wondering how on earth it can help you or your clients? Maybe you’re anxious that it is far too complex for you to apply within your PT sessions?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, let me take you right back to the beginning….</span>\n\n&nbsp;\n<h3>Remedial Gymnastics</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ever heard of this profession?</span>\n\n<span style=\"font-weight: 400;\">No, I hadn’t either until  2006 when I met Martin Haines, a world leader in biomechanics and founder of the Intrinsic Biomechanics Method.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A few years ago I decided to do some research into the origins of my profession and the skills I have taught for many years. The education programmes we deliver at Biomechanics Education all started with a profession called ‘Remedial Gymnastics’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I found interesting was the definition of the role of a Remedial Gymnastics still to this day holds true to what we as Biomechanics Coaches™ do. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Remedial Gymnastics is a special treatment method that involves the means of preventative physical training to accelerate patient’s working capacity and avoid consequences of the pathological process.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another definition I came across based on the understanding of this type of approach was:</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Uses movement as the basic means for the p</span></i><span style=\"font-weight: 400;\">urpose of prevention and correction. Correctly chosen and well-directed movements help faster and more successful restoration of impaired function of certain segments of the organism as a whole</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">AIMS &amp; APPLICATION </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Increase in the scope of movement of the joint</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Increase in muscle power </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Maintenance and improvement in coordination of movement</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Rise in the speed of movement</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Improvement in general and local stamina</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">By certain exercises a series of our objectives are realised: improvement of circulation, after transportation of energetic potential to feed tissues, improvement in metabolic and regeneration processes, reduction of pain, relaxation, psychological balance or such</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Founder of the Intrinsic Biomechanics method that we call Biomechanics Coaching™, Martin Haines, was originally a Remedial Gymnast before it merged with physiotherapy and he went on to become a chartered physiotherapist. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He recognised the value in having BOTH, the Remedial Gymnastics and physiotherapy, methods combined available to individuals since many of the ‘injuries’ or low-grade non-specific problems people were experiencing did not require site-specific treatment but a more general means to overcome discomfort with the use of simple exercises. He recognised that should this type of problem go unaddressed for a period of time it may well result in a more severe condition then requiring the attention of a physiotherapist. Therefore the 2 professionals working alongside each other is a perfect combination for the overall recovery and improvement in the movement of the client.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, Haines took his ideas even further. Having access to isokinetic equipment meant he could trial and test his, and his colleague Nick Barrow’s, ideas. This evolved a tried and tested series of manual assessments to identify where an individual may have a risk of an injury waiting to occur. This systematic ‘functional’ approach to injury prevention is quite unique in that level 3 exercise professionals are perfectly placed to deliver this kind of programming. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So, we as PT’s, Fitness professional’s, Pilates or Yoga teachers are the exercise experts and we are crying out for objectivity in our assessment and exercise prescription process! Which is why the Intrinsic Biomechanics methodology of Biomechanics Coaching™, that has evolved from the Remedial Gymnastics professional since the 1980’s, is having such a massive success in the fitness industry. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The badge of the Society of Remedial Gymnastics has a motto in Latin;</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">SPES SIBI QUISQUE</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Let each man’s hope be in himself </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">or put another way, ‘rely on his own resources’. </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is absolutely the ethos of being a Biomechanics Coach™. To empower individual’s, clients, participants, patients, whatever we define them as, to care for themselves, take ownership of their physical state and consider the impacts of their chosen lifestyle. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are the professionals who prepare people for movement, educate people how to regain functional capacity, inform people where to begin using a tried and tested system, identify risk, teach true function, all with simple logic and exercise guidance.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We form alliances with those who have different skill sets, knowing what WE know really well and accepting we do not have certain skills, therefore, utilising our clinically trained colleagues for occasions where clients have ‘true’ medical injuries.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hopefully, this gives you some idea of what Biomechanics Coaching™ is, where it comes from and the benefits gained from our practice. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So are you a PT who would like to help more people move better?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to become a Biomechanics Coach™?</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Register your interest in our 2018 workshops HERE &gt;&gt;</span></a>\n\nP.S. Our 2018 schedule is now <a href=\"https://www.biomechanicseducation.com/events/2018-01/\" target=\"_blank\" rel=\"noopener\">LIVE on our website </a>\n\n<span style=\"font-weight: 400;\">Article References:</span>\n\n&nbsp;\n\n<a href=\"http://www.mediclub.az/en/35\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">http://www.mediclub.az/en/35</span></i></a>\n\n&nbsp;\n\n<a href=\"http://hansard.millbanksystems.com/lords/1986/mar/24/professions-supplementary-to-medicine\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">http://hansard.millbanksystems.com/lords/1986/mar/24/professions-supplementary-to-medicine</span></i></a>\n\n&nbsp;\n\n<a href=\"http://archives.wellcome.ac.uk/DServe/dserve.exe?dsqIni=Dserve.ini&amp;dsqApp=Archive&amp;dsqDb=Catalog&amp;dsqCmd=show.tcl&amp;dsqSearch=(RefNo==\'SACSP%2FL\')\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">http://archives.wellcome.ac.uk/DServe/dserve.exe?dsqIni=Dserve.ini&amp;dsqApp=Archive&amp;dsqDb=Catalog&amp;dsqCmd=show.tcl&amp;dsqSearch=(RefNo==\'SACSP%2FL\')</span></i></a>\n\n&nbsp;\n\n<a href=\"http://www.health.nsw.gov.au/careers/conditions/Awards/dt_hsu_remedial_gymnast.pdf\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">http://www.health.nsw.gov.au/careers/conditions/Awards/dt_hsu_remedial_gymnast.pdf</span></i></a>\n\n&nbsp;\n\n<a href=\"http://www.feellife.rs/eng/remedial-gymnastics.html\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">http://www.feellife.rs/eng/remedial-gymnastics.html</span></i></a>\n\n&nbsp;','Are You Confused?','','draft','closed','closed','','are-you-confused','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=3478',0,'post','',0),(3479,0,'2017-09-18 12:25:01','2017-09-18 12:25:01','','','','inherit','closed','closed','','home-brewing-2','','','2017-09-18 12:25:01','2017-09-18 12:25:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Home-Brewing-2-1.png',0,'attachment','image/png',0),(3496,0,'2017-09-25 08:42:46','2017-09-25 08:42:46','','','','inherit','closed','closed','','rachel-france','','','2017-09-25 08:42:46','2017-09-25 08:42:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Rachel-France-1.jpg',0,'attachment','image/jpeg',0),(3497,0,'2017-09-25 09:05:32','2017-09-25 09:05:32','','','','inherit','closed','closed','','wendy','','','2017-09-25 09:05:32','2017-09-25 09:05:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Wendy-1.jpg',0,'attachment','image/jpeg',0),(3498,0,'2017-09-25 09:33:50','2017-09-25 09:33:50','','','','inherit','closed','closed','','chris','','','2017-09-25 09:33:50','2017-09-25 09:33:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Chris-1.jpg',0,'attachment','image/jpeg',0),(3499,0,'2017-09-25 10:00:34','2017-09-25 10:00:34','','','','inherit','closed','closed','','tom','','','2017-09-25 10:00:34','2017-09-25 10:00:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Tom-1.jpg',0,'attachment','image/jpeg',0),(3501,3,'2017-09-25 21:59:21','2017-09-25 21:59:21','<h3 style=\"text-align: center;\"><b>How Would You Feel If We Made The Costs A Bit Easier For You? </b></h3>\n<h6><span style=\"font-weight: 400;\">Wowzers! </span></h6>\n<h6><span style=\"font-weight: 400;\">It\'s almost October already and that means we have just 5 of our amazing workshops remaining. </span></h6>\n<h6><span style=\"font-weight: 400;\">What an incredible year this has been for everyone involved in the Biomechanics Education Academy. </span></h6>\n<h6></h6>\n<h6><span style=\"font-weight: 400;\">The Master Trainers have felt privileged to see so many of our academy learners gain more confidence, improve their communication skills, increase their knowledge and earn more money than ever before. </span></h6>\n<h6></h6>\n<h6><span style=\"font-weight: 400;\">For many, completing the Biomechanics Coach™ Diploma workshop series has brought them far more than they anticipated, just check out some of the feedback below….</span></h6>\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"wp-image-3506 alignnone\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.17.15-1-1024x588.png\" alt=\"screen-shot-2017-09-14-at-11-17-15\" width=\"368\" height=\"211\" /> <img class=\"wp-image-3505 alignnone\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.17.01-1-1024x640.png\" alt=\"screen-shot-2017-09-14-at-11-17-01\" width=\"333\" height=\"208\" /></span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n<h6><span style=\"font-weight: 400;\">So, have YOU been thinking about doing our workshops? Or have YOU ever said to yourself </span><i><span style=\"font-weight: 400;\">“That looks fantastic I will do that next year”? …. Well </span></i><span style=\"font-weight: 400;\">then keep reading because we have a special offer especially just for YOU. If you have been following our community for a while you are likely to know all about our fantastic dynamic workshops. We help PT\'s, Yoga instructors Pilates instructors like YOU to better serve your clients.</span></h6>\n<h6><span style=\"font-weight: 400;\">So do any of these questions make YOU say YES..?</span></h6>\n<h6><span style=\"font-weight: 400;\">Do YOU feel frustrated by not knowing why your client moves the way they do?</span></h6>\n<h6><span style=\"font-weight: 400;\">Would YOU like to help MORE of your clients get even better results?</span></h6>\n<h6><span style=\"font-weight: 400;\">Would YOU like to have more confidence when assessing your clients?</span></h6>\n<h6><span style=\"font-weight: 400;\">Do YOU feel like you\'re guessing about the root causes of their movement issues? </span></h6>\n<h6><span style=\"font-weight: 400;\">Embarrassed you have forgotten all, or some, of your A&amp;P?</span></h6>\n<h6><span style=\"font-weight: 400;\">Well, it is time to remove the guesswork, increase your confidence and teach YOU how to never forget your A&amp;P with these evidence-based assessment skills. During our workshops, we will show you how to assess your clients from their nerves, to their muscles, to their joints and know exactly which exercises will help and which could hinder their progress. All of this getting them, and YOU, better results, sounds amazing right?</span></h6>\n<h6> <img class=\"aligncenter wp-image-3507\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.16.10-1-1024x329.png\" alt=\"screen-shot-2017-09-14-at-11-16-10\" width=\"514\" height=\"165\" /></h6>\n<h6><span style=\"font-weight: 400;\">We are super pumped to let you know that we have a special offer just for YOU up until the Dec 31st, 2017 after which we will be increasing our prices for 2018.</span></h6>\n<h6><span style=\"font-weight: 400;\">YOUR special offer is that YOU have the chance to keep the 2017 prices for our 2018 workshops. But you must act fast! All YOU need to do is contact us NOW to tell us you are mega keen, pay a small deposit to secure your place and BOOM you’re in!</span></h6>\n<h6><span style=\"font-weight: 400;\">We don’t want YOU to miss out on these massively popular workshops that literally EVERYONE is talking about!</span></h6>\n<img class=\"wp-image-3511 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.15.58-1-1024x526.png\" alt=\"screen-shot-2017-09-14-at-11-15-58\" width=\"374\" height=\"192\" />\n<h6><span style=\"font-weight: 400;\">So, to grab a quick call with one of the Biomechanics Education team simply <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">[CLICK HERE]</a></span>. Fill out a few details and we will give YOU a call. </span></h6>\n<h6><span style=\"font-weight: 400;\">......Move Freely!</span></h6>\n<h6><span style=\"font-weight: 400;\">Rachel</span></h6>\n<h6><span style=\"font-weight: 400;\">\nP.s. We run workshops all over the UK and have plans to also come to <a href=\"https://www.biomechanicseducation.com/event/special-fast-track-3-day-pelvic-spine-biomechanics-workshop/\" target=\"_blank\" rel=\"noopener\">Scotland in Jan 2018.</a>. The team are always excited to support you and the superb Master Trainers always look forward to welcoming you onto the workshops. <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">[CLICK HERE]</a></span> to find out more information and to request a call.</span></h6>\n<h6> <img class=\"aligncenter wp-image-3528\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-26-at-06.36.47-1.png\" alt=\"screen-shot-2017-09-26-at-06-36-47\" width=\"530\" height=\"194\" /><img class=\"aligncenter wp-image-3504\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.16.38-1-1024x421.png\" alt=\"screen-shot-2017-09-14-at-11-16-38\" width=\"559\" height=\"230\" /></h6>','I B***** LOVE This System!','','draft','closed','closed','','fancy-locking-your-price-for-all-2018-workshops-at-2017-price','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=3501',0,'post','',0),(3502,0,'2017-09-25 21:08:38','2017-09-25 21:08:38','','','','inherit','closed','closed','','2018-locked-prices','','','2017-09-25 21:08:38','2017-09-25 21:08:38','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/2018-locked-prices-1.png',0,'attachment','image/png',0),(3504,0,'2017-09-25 21:12:59','2017-09-25 21:12:59','','','','inherit','closed','closed','','screen-shot-2017-09-14-at-11-16-38','','','2017-09-25 21:12:59','2017-09-25 21:12:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.16.38-1.png',0,'attachment','image/png',0),(3505,0,'2017-09-25 21:13:02','2017-09-25 21:13:02','','','','inherit','closed','closed','','screen-shot-2017-09-14-at-11-17-01','','','2017-09-25 21:13:02','2017-09-25 21:13:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.17.01-1.png',0,'attachment','image/png',0),(3506,0,'2017-09-25 21:13:06','2017-09-25 21:13:06','','','','inherit','closed','closed','','screen-shot-2017-09-14-at-11-17-15','','','2017-09-25 21:13:06','2017-09-25 21:13:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.17.15-1.png',0,'attachment','image/png',0),(3507,0,'2017-09-25 21:15:53','2017-09-25 21:15:53','','','','inherit','closed','closed','','screen-shot-2017-09-14-at-11-16-10','','','2017-09-25 21:15:53','2017-09-25 21:15:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.16.10-1.png',0,'attachment','image/png',0),(3511,0,'2017-09-25 21:24:56','2017-09-25 21:24:56','','','','inherit','closed','closed','','screen-shot-2017-09-14-at-11-15-58','','','2017-09-25 21:24:56','2017-09-25 21:24:56','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.15.58-1.png',0,'attachment','image/png',0),(3528,0,'2017-09-26 05:37:02','2017-09-26 05:37:02','','','','inherit','closed','closed','','screen-shot-2017-09-26-at-06-36-47','','','2017-09-26 05:37:02','2017-09-26 05:37:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-26-at-06.36.47-1.png',0,'attachment','image/png',0),(3534,0,'2017-09-27 09:32:48','2017-09-27 09:32:48','','','','inherit','closed','closed','','chris01','','','2017-09-27 09:32:48','2017-09-27 09:32:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Chris01-1.jpg',0,'attachment','image/jpeg',0),(3535,0,'2017-09-27 09:32:49','2017-09-27 09:32:49','','','','inherit','closed','closed','','rachel-france01','','','2017-09-27 09:32:49','2017-09-27 09:32:49','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Rachel-France01-1.jpg',0,'attachment','image/jpeg',0),(3536,0,'2017-09-27 09:32:51','2017-09-27 09:32:51','','','','inherit','closed','closed','','tom01','','','2017-09-27 09:32:51','2017-09-27 09:32:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Tom01-1.jpg',0,'attachment','image/jpeg',0),(3537,0,'2017-09-27 09:32:53','2017-09-27 09:32:53','','','','inherit','closed','closed','','wendy01','','','2017-09-27 09:32:53','2017-09-27 09:32:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Wendy01-1.jpg',0,'attachment','image/jpeg',0),(3550,3,'2017-10-09 13:03:05','2017-10-09 13:03:05','&nbsp;\n\n<span style=\"font-weight: 400;\">Do you wonder what more you can do to help your clients with recurring injuries?</span>\n\n<span style=\"font-weight: 400;\">Do you have CrossFit clients who want to increase their performance level for their regionals?</span>\n\n<span style=\"font-weight: 400;\">Do you gain back pain clients in your Pilates class and worry if you are giving them the right exercises?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here we are looking at one of the main reasons why our clients suffer discomfort from their lifestyles and fall short of their optimal performance level during exercise. We are also going to explain how you can get immediate results easily with this revolutionary technique which, while relatively new to the fitness industry, has been around for many years. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly, let’s look at the problem:</span>\n\n<span style=\"font-weight: 400;\">Since technology has taken such a dramatic role in our lives we, and our clients have become more sedentary and often find ourselves bent over our iPhones, computer screens and spending many hours driving around all over the place because it’s easier and faster. Then as we understand that movement is good we go and use repetitive exercise movements in an attempt to counterbalance this.</span>\n\n<span style=\"font-weight: 400;\">However, the body has not had time to evolve to this kind of environment and is attempting to compensate with a variety of adaptations. Muscles are reacting to protect joints that have spent much of the day static and are then expected to function to full capacity during our favorite activities. Nerves can become tethered and joints become stiff and we wonder why we and so many of our clients have low-grade non-specific aches and niggles and also what on earth can we do about it?! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But when clients want to compete with peers in our HIIT, insanity, Metafit or Grit classes they are struggling with stiffness in their burpees, tuck jumps and plyometrics. They have functional asymmetries like a rotated pelvis and functional scoliosis that during our Pilates or Core Conditioning classes become ‘glued’ into place potentially enhancing their low back pain. Overactive Pec Minor gives them a protracted shoulder posture which hinders their thoracic spines’ ability to extend during their overhead squat in CrossFit or push presses in BODYpump. Functional leg length discrepancies and quadricep dominance give our runners, cyclists, and triathletes achy knees. </span>\n\n<span style=\"font-weight: 400;\">Maybe you have an overweight client who doesn’t do any of the above but simply wants you to help him lose weight? Well, they will also need the ability to move freely right? </span>\n\n<span style=\"font-weight: 400;\">So let’s look at one of these compensations in more detail:</span>\n\n&nbsp;\n\n<b>SubClinical Muscle Spasm</b>\n\n&nbsp;\n\n<b>What is Muscle Spasm? </b><span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">In practical terms, it is “A muscle that cannot relax” applied from the work by Jiri Dvorak &amp; Ribot-Ciscar</span>\n\n<span style=\"font-weight: 400;\">SubClinical Muscle Spasm is muscle spasm that is not painful.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Work carried out by Ribot-Ciscar and colleagues, abstract below...</span>\n\n&nbsp;\n<ol>\n 	<li><i><span style=\"font-weight: 400;\"> Ribot-Ciscar, M. F. Tardy-Gervet, J. P. Vedel and J. P. Roll </span></i></li>\n</ol>\n<i><span style=\"font-weight: 400;\">Summary “The activities of human muscle spindle primary endings were recorded in the lateral peroneal nerve using the microneurographic method. The aim of the study was to test whether voluntary isometric contraction causes any after-effects, first in the resting discharge of muscle spindle primary endings and secondly in their responses to a slow ramp stretch. To investigate the latter point, the initial angular position of the ankle was passively adjusted until the unit fell silent, in order to introduce a delay in the responses to muscle stretch”</span></i><span style=\"font-weight: 400;\">............they found that</span><i><span style=\"font-weight: 400;\"> “Isometric voluntary contraction led to changes in muscle spindle stretch sensitivity which resulted in a reduction in the stretch threshold and a decrease in the muscle spindle dynamic sensitivity. These data suggest that the after-effects observed may have been triggered by static fusimotor neurones. The results are discussed with reference to the theory according to which the processing by the CNS of muscular proprioceptive messages deals mainly with signals arising from muscles stretched during movement, and it is concluded that the coactivation of any motoneurones during the contraction facilitates the coding of the parameters of forthcoming stretching movements, by the muscle spindles”. </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This physiology has not been shown to be present in what is considered a ‘tight’ muscle. </span>\n\n<span style=\"font-weight: 400;\">No single method will help all ‘types’ of muscle spasm of course, this is one of many ways that can potentially help, including trigger points, soft tissue massage etc too. </span>\n\n<span style=\"font-weight: 400;\">Typically if the muscle has an EMG signal and the client has positive test (and it improves by doing anti spasms) then it’s likely to be in spasm.  If the test result does not change after the anti spasm then the chances are that it does not have an EMG signal and is then simply tight or fibrotic. You can then select your intervention accordingly.</span>\n\n&nbsp;\n\n<b>Why Does It Happen?</b>\n\n<span style=\"font-weight: 400;\">Usually, because it’s trying to protect something (a joint or nerve perhaps) or it’s being loaded from another biomechanical problem remote from that muscle. Often adaptive shortening caused by adapting to inactivity, lack of use through the full range, poor posture or poor technique. </span>\n\n&nbsp;\n\n<b>How can we reduce Muscle Spasm?</b>\n\n<span style=\"font-weight: 400;\">Ribot-Ciscar has established that a muscle relaxes maximally after it has been contracted submaximally and for a prolonged period. He and Jiri Dvorak (FIFA Chief Medical Officer, also senior Editor of British Journal of Sports Medicine) refer to it as Post Contraction Sensory Discharge. </span>\n\n<span style=\"font-weight: 400;\">So, in other words, the anti-spasm exercises allow the muscle to lengthen easier after the ‘contraction’ and consequently improves the function of the muscle. </span>\n\n<span style=\"font-weight: 400;\">This technique, also known as a muscle energy technique (MET), is a great way to provide your clients with a way that they can help themselves so they’re don’t become reliant on their coach, therapist or trainer. It’s something to empower them to contribute to improving their own problems between sessions with you and the responsibility. </span>\n\n&nbsp;\n\n<b>The Anti-Spasm Technique</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider the muscle you would like to release, let’s take pec minor as an example, then look at its attachments - 3rd-5th ribs and coracoid process. Consider its main action - protraction (it will also aid scapular depression but let’s keep it simple for now). Take the muscles attachments away from each other into retraction, making sure you stop before the point of stretching it. Now place resistance onto the shoulder with the opposite hand or using a door frame and then press the shoulder into protraction isometrically with ONLY 20% effort and hold for 20 seconds. Repeat this 4 times and then repeat periodically throughout the day. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The less we change our lifestyles the longer we will need to do this but we can also use strength work to specifically address this issue and reduce the chances of the problem recurring. </span>\n\n<span style=\"font-weight: 400;\">Antagonist strength training is a simple, logical and effective method to do this and this will be discussed in a future Juicemail!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to learn how to manually screen for pec minor muscle spasm?</span>\n\n<span style=\"font-weight: 400;\">Join us for the full <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Biomechanics Coach™ Diploma</a> starting Feb 2018</span>','Frustrated By Recurring Injuries?? Our bodies just can’t evolve quickly enough!  In the meantime what should we do?','','draft','closed','closed','','frustrated-by-recurring-injuries-our-bodies-just-cant-evolve-quickly-enough-in-the-meantime-what-should-we-do','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=3550',0,'post','',0),(3551,0,'2017-10-09 12:47:46','2017-10-09 12:47:46','','','','inherit','closed','closed','','fustrated-by-recurring-injuries','','','2017-10-09 12:47:46','2017-10-09 12:47:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/Fustrated-by-Recurring-Injuries-1.png',0,'attachment','image/png',0),(3628,3,'2017-10-17 05:50:46','2017-10-17 05:50:46','<h2 style=\"text-align: center;\"><b>Are You Up To The Beyond 90 Challenge? </b></h2>\n<h2 style=\"text-align: center;\"><b>Win A Low Back Health Workshop worth £187</b></h2>\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Are YOU up for the challenge?</span></h3>\n<span style=\"font-weight: 400;\">More and more I am aware of how much sitting we all do and it is scary how </span><i><span style=\"font-weight: 400;\">normal </span></i><span style=\"font-weight: 400;\">it is! How ‘lazy’ we have all got simply because of what is deemed </span><i><span style=\"font-weight: 400;\">normal </span></i><span style=\"font-weight: 400;\">now. Here is an example of how ludicrous it is;</span>\n\n<span style=\"font-weight: 400;\">I went to get my nails done (as you do) and the little man on reception there offered me a seat to wait, as you would </span><i><span style=\"font-weight: 400;\">expect,</span></i><span style=\"font-weight: 400;\"> right? </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">\nNO WRONG - WHY? <img class=\"wp-image-3630 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/arms-crossed-1.png\" alt=\"arms-crossed\" width=\"103\" height=\"103\" />\n</span></h3>\n<span style=\"font-weight: 400;\">Look, I did say thanks in order to let him know that I had heard him but I continued to wait standing up. He came back and said again “</span><i><span style=\"font-weight: 400;\">please have a seat</span></i><span style=\"font-weight: 400;\">”, “</span><i><span style=\"font-weight: 400;\">no I am fine, thanks,</span></i><span style=\"font-weight: 400;\">” I said. He offered it to me 3 more times &amp; actually looked confused\nlike he had done something wrong or I was testing him like I was a secret shopper or something. So much so I actually felt sorry for him and nearly sat down!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Whoah Rach</span></i><span style=\"font-weight: 400;\">!”, I said to myself, “</span><i><span style=\"font-weight: 400;\">this is your body and you know how much you sit down for work already AND you’re about to sit for the next 45 mins having your nails done!”</span></i><span style=\"font-weight: 400;\">  (Yes I too talk to myself in my head just like you)\n</span>\n\n&nbsp;\n\n&nbsp;\n\nAnyway, this is not the first time I have experienced odd looks for choosing to stand in ‘sitting’ situations. At the doctor\'s, for example, I walk <img class=\"wp-image-3632 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/I-will-stand-1-1024x683.jpg\" alt=\"i-will-stand\" width=\"239\" height=\"159\" />around reading the leaflets and posters about incontinence, dementia, and mental health, that I have read before (several times), just so that no one thinks I am standing, maybe due to piles or something<span style=\"font-weight: 400;\">, when there are 80 empty seats! Because there must be something WRONG if I am standing right?\n</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Choosing to stand on a bus when there are loads of empty seats gets me sideways glances. </span>\n\n<span style=\"font-weight: 400;\">I mean I can’t just be standing because I want to when there is the option to sit, can I?????</span>\n\n&nbsp;\n\n<img class=\"wp-image-3634 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/Question-myself-1-1024x1024.jpg\" alt=\"3d human with a red question mark\" width=\"185\" height=\"185\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Errrrrrrr, actually yes and I have now started to tell people who offer me seat that </span><i><span style=\"font-weight: 400;\">“hey I sit all day and the LAST thing I want to do is sit again”</span></i><span style=\"font-weight: 400;\"> because I want to <strong>start a trend</strong> and make it ok to stand and hopefully reduce the prejudice towards the ‘<strong>Beyond 90 Challengers</strong>’.</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Who are the ‘Beyond 90 Challengers’?</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Look we all have sofas, dining chairs, cars (unless your </span><i><span style=\"font-weight: 400;\">Katy Bowman</span></i><span style=\"font-weight: 400;\"> of course). There are seats in bars, restaurants, bus stops, doctors waiting rooms, in market squares, coffee shops, airports. Our toilets even sit us at 90 degrees just like pretty much every other seat or chair around us - unless of course, you have a ‘Squatty Potty??’...that’s a whole other blog…..YouTube it…it has over 32,341,095 views </span>&#x1f633;&#x1f633;&#x1f633;\n\n&nbsp;\n\n<a href=\"https://youtu.be/YbYWhdLO43Q\"><img class=\"aligncenter wp-image-3635\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/squatty-potty-unicorn-1.png\" alt=\"squatty-potty-unicorn\" width=\"329\" height=\"163\" /></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway imagine for a moment sitting on a toddlers little chair…..yeah you would probably FEEL weird and look funny but actually….it is truer to how we are physically designed to sit.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I want to set you a challenge….<strong>The Beyond 90 Challenge</strong>.</span>\n\n&nbsp;\n<h3><b>The Beyond 90 Challenge</b></h3>\n<img class=\"aligncenter wp-image-3636\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/Beyond-90-Challenge-3-1-1024x536.png\" alt=\"beyond-90-challenge-3\" width=\"454\" height=\"238\" />\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">This is quite a simple challenge BUT is likely to take you out of your comfort zone on a couple of levels.</span></p>\n<p style=\"text-align: center;\">But if you are able to make it to the other side, the rewards are GREAT!</p>\n\n<h3></h3>\n<h3><span style=\"font-weight: 400;\">The Rules</span></h3>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Avoid sitting at 90° as often as possible.</span></li>\n</ul>\n<span style=\"font-weight: 400;\">Either stand with hips ‘beyond 90°’ = fully extended</span>\n\n<span style=\"font-weight: 400;\">Or</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Sit with hips ‘beyond 90°’ = fully flexed so you are sitting on your haunches like the cavemen did.</span></li>\n</ul>\n<span style=\"font-weight: 400;\">Now if you <strong>collect evidence</strong> by way of photos &amp; videos of your situation and post them on the <strong>Biomechanics Education Facebook</strong> page and across social media with #beyond90 and you could <strong>win a FREE workshop</strong> with Biomechanics Education Ltd!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The winner of </span><span style=\"font-weight: 400;\">The Beyond 90 Challenge</span><span style=\"font-weight: 400;\"> is the person who posts the most </span><i><span style=\"font-weight: 400;\">different</span></i><span style=\"font-weight: 400;\"> ‘Beyond 90 Challenge’ images/videos. So get creative. </span><b>Remember you MUST post to the Biomechanics Education Facebook page so you can be judged as we get to see ALL of your videos and photos.  </b>\n\n<span style=\"font-weight: 400;\">The winner will receive a 1 day Low Back Health Workshop worth £187!</span>\n\nIf this article has now got you questioning what else are we could be doing to better correct our bodies, then you are in luck. We have a whole Diploma where we cover much more. Click <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">HERE</a> to learn more.','Are You Up To The Beyond 90 Challenge?','','draft','closed','closed','','are-you-up-to-the-beyond-90-challenge','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=3628',0,'post','',0),(3629,0,'2017-10-17 04:58:13','2017-10-17 04:58:13','','','Maximise your bodies potential by going beyond 90','inherit','closed','closed','','beyond-90-challenge','','','2017-10-17 04:58:13','2017-10-17 04:58:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/Beyond-90-Challenge-1.png',0,'attachment','image/png',0),(3630,0,'2017-10-17 05:02:23','2017-10-17 05:02:23','','','','inherit','closed','closed','','arms-crossed','','','2017-10-17 05:02:23','2017-10-17 05:02:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/arms-crossed-1.png',0,'attachment','image/png',0),(3631,0,'2017-10-17 05:02:25','2017-10-17 05:02:25','','','','inherit','closed','closed','','avoid-sitting','','','2017-10-17 05:02:25','2017-10-17 05:02:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/Avoid-Sitting-1.jpg',0,'attachment','image/jpeg',0),(3632,0,'2017-10-17 05:02:30','2017-10-17 05:02:30','','','','inherit','closed','closed','','i-will-stand','','','2017-10-17 05:02:30','2017-10-17 05:02:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/I-will-stand-1.jpg',0,'attachment','image/jpeg',0),(3633,0,'2017-10-17 05:02:43','2017-10-17 05:02:43','','','','inherit','closed','closed','','standing-desk','','','2017-10-17 05:02:43','2017-10-17 05:02:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/standing-desk-1.jpg',0,'attachment','image/jpeg',0),(3634,0,'2017-10-17 05:08:25','2017-10-17 05:08:25','','','3d human with a red question mark','inherit','closed','closed','','question-mark','','','2017-10-17 05:08:25','2017-10-17 05:08:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/Question-myself-1.jpg',0,'attachment','image/jpeg',0),(3635,0,'2017-10-17 05:12:09','2017-10-17 05:12:09','','','','inherit','closed','closed','','squatty-potty-unicorn','','','2017-10-17 05:12:09','2017-10-17 05:12:09','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/squatty-potty-unicorn-1.png',0,'attachment','image/png',0),(3636,0,'2017-10-17 05:17:36','2017-10-17 05:17:36','','','','inherit','closed','closed','','beyond-90-challenge-3','','','2017-10-17 05:17:36','2017-10-17 05:17:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/Beyond-90-Challenge-3-1.png',0,'attachment','image/png',0),(3655,0,'2017-10-18 13:13:04','2017-10-18 13:13:04','','','','inherit','closed','closed','','cimspa_partner_logo_trans_113x53','','','2017-10-18 13:13:04','2017-10-18 13:13:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/CIMSPA_Partner_Logo_trans_113x53-1.png',0,'attachment','image/png',0),(3689,3,'2017-10-23 15:35:50','2017-10-23 15:35:50','<b>You want to move more freely, right?</b>\n\n<b>Your clients want to move more freely too, don\'t they?</b>\n\n<b>In fact, do you know anyone who doesn\'t want to move more freely?</b>\n\n<b>In many cases, moving more freely also = less pain</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It really isn\'t that complicated, to be honest but we do need to consider WHY we and our clients are in such dysfunctional states. Even as exercise professionals we often find the hectic lives we lead to reduce the time we spend on ourselves and we need to regain responsibility for our own biomechanical health to set an example to our clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Considering the average healthy adult (chances are that includes you) spends a high proportion of their time sitting at a desk, driving, travelling or hunched over their phones for example, so much so it is no surprise we are suffering these low grade non-specific aches and niggles, is it!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So by setting an example to our clients and taking ownership, making a few small changes to our own lifestyles (and maybe some bigger ones too) we can reduce our risk of injury, teach our clients and feel the benefits of the freedom of movement with these 6 tips:</span>\n\n&nbsp;\n\n<b>1). See A Skilled Professional Who Can Assess Your Intrinsic Function</b>\n\n<span style=\"font-weight: 400;\">Not to be confused with seeing a medical professional whose job is to assess medical conditions, find someone who understands intrinsic function like a Biomechanics Coach&#x2122; or iMoveFreely® Instructor who all specialise in this area of expertise. </span>\n\n<b><img class=\"aligncenter wp-image-3693\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/seek-a-professional-1.jpg\" alt=\"seek-a-professional\" width=\"410\" height=\"273\" /></b>\n\n<b>2). Then Do What They Say...</b>\n\n<span style=\"font-weight: 400;\"><b><img class=\"wp-image-3694 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/you-1-1024x1024.jpg\" alt=\"you\" width=\"84\" height=\"84\" /></b></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Simple = Own it!</span>\n\n<span style=\"font-weight: 400;\">You\'re in the state you\'re in because of your lifestyle, now do what you coach/trainer advised you!</span>\n\n&nbsp;\n\n&nbsp;\n\n<b>3). Get A Good Sports Massage Regularly</b>\n\n<span style=\"font-weight: 400;\">Find a good sports massage therapist or manual therapist and have body work done regularly - the good ones are the ones with a great reputation, they are NOT the cheapest!! You will get what you pay for.</span>\n\n<b><img class=\"wp-image-3692 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/Biomechanics-physio-1-1024x683.jpg\" alt=\"Chiropractor massage the female patient spine and back\" width=\"386\" height=\"257\" /></b>\n\n&nbsp;\n\n<b>4). Stop Carrying Your Bag On The Same Side</b>\n\n<span style=\"font-weight: 400;\">We would never consider going to the gym and only training one side of the body and yet every day we carry our heavy sports bags, shopping bags, laptop bags on the same side!</span>\n\n<span style=\"font-weight: 400;\">Get a trolley bag or use a rucksack.</span>\n\n<b><img class=\"aligncenter wp-image-3695\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/shoulder-blade-pain-1.jpg\" alt=\"shoulder-blade-pain\" width=\"450\" height=\"225\" /></b>\n\n&nbsp;\n\n<b>5). Burn All Your \'Fashion\' Footwear</b>\n\n<span style=\"font-weight: 400;\">Ok, a tough one but I guess the question is this ‘how much fun are you gonna have sitting at home crippled with back pain looking at those pretty high heels in the bottom of your wardrobe?’</span>\n\n<span style=\"font-weight: 400;\">Also, not all shoes are good for all feet.</span>\n\n<span style=\"font-weight: 400;\">Get your feet assessed properly for advice on the best footwear for your foot function. If you have a loose MidTarsal Joint you probably shouldn\'t wear minimalist shoes, ballet pumps or converse for example.</span>\n\n&nbsp;\n\n<b>6). Move More<img class=\"wp-image-3699 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/ballet-pumps-1.jpg\" alt=\"ballet-pumps\" width=\"120\" height=\"173\" /></b>\n\n<span style=\"font-weight: 400;\">Kind of an obvious one but one we still forget once we get sucked into the TV or computer screen. Rather than set up all of your things within reach of your desk, move everything away from you so you are reaching and moving more. Offer to make drinks for everyone - all the time!</span>\n\n<span style=\"font-weight: 400;\">Invest in a changeable laptop stand that you can put on top of your desk so you can change position regularly and easily so your body is permanently active. Ask for a FitBit for Xmas - I LOVE mine!!</span>\n\n&nbsp;\n\nWe NEED YOU!\n\n<span style=\"font-weight: 400;\">We need more Biomechanics Coaches&#x2122; around the UK</span>\n\n<span style=\"font-weight: 400;\">Is it you?</span>\n\n<span style=\"font-weight: 400;\">Do you have what it takes?</span>\n\n<span style=\"font-weight: 400;\">Are you prepared to take your profession to another level?</span>\n\n<span style=\"font-weight: 400;\">Do you want to become part of a strong inter-professional team?</span>\n\n<span style=\"font-weight: 400;\">Become a Biomechanics Coaches&#x2122; </span><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><b>BOOK YOUR PLACE HERE!</b></a>','You Want To Move More Freely, Right?','','draft','closed','closed','','you-want-to-move-more-freely-right','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=3689',0,'post','',0),(3690,0,'2017-10-23 14:27:52','2017-10-23 14:27:52','','','','inherit','closed','closed','','move-freely-2','','','2017-10-23 14:27:52','2017-10-23 14:27:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/move-freely-2-1.png',0,'attachment','image/png',0),(3692,0,'2017-10-23 14:35:54','2017-10-23 14:35:54','','','Chiropractor correcting a patient\'s spine and back','inherit','closed','closed','','chiropractor-massage-the-female-patient-spine-and-back','','','2017-10-23 14:35:54','2017-10-23 14:35:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/Biomechanics-physio-1.jpg',0,'attachment','image/jpeg',0),(3693,0,'2017-10-23 14:40:51','2017-10-23 14:40:51','','','','inherit','closed','closed','','seek-a-professional','','','2017-10-23 14:40:51','2017-10-23 14:40:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/seek-a-professional-1.jpg',0,'attachment','image/jpeg',0),(3694,0,'2017-10-23 14:43:34','2017-10-23 14:43:34','','','','inherit','closed','closed','','you','','','2017-10-23 14:43:34','2017-10-23 14:43:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/you-1.jpg',0,'attachment','image/jpeg',0),(3695,0,'2017-10-23 14:57:26','2017-10-23 14:57:26','','','','inherit','closed','closed','','shoulder-blade-pain','','','2017-10-23 14:57:26','2017-10-23 14:57:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/shoulder-blade-pain-1.jpg',0,'attachment','image/jpeg',0),(3699,0,'2017-10-23 15:05:17','2017-10-23 15:05:17','','','','inherit','closed','closed','','ballet-pumps','','','2017-10-23 15:05:17','2017-10-23 15:05:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/ballet-pumps-1.jpg',0,'attachment','image/jpeg',0),(3783,3,'2017-10-31 06:09:12','2017-10-31 06:09:12','<h4><b>Do you know what one looks like?</b></h4>\n<h4><b>Do you know what to do when your client has a hernia?</b></h4>\n<h4><b>Do you have a clear idea of what to do if you or someone you know has one?</b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are many different causes of abdominal pain, but despite being quite common, there is little written about abdominal pain from a musculoskeletal perspective. Read on as we discuss some of the more common musculoskeletal disorders.</span>\n\n&nbsp;\n<h3><b>Incipient (Sportsman’s) Hernia</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The various muscles of the abdominal wall are penetrated by the inguinal canal, which contains nerves and, in men, the spermatic cord, in women the inguinal canal, contains a small fibrous ligament. Where the inguinal canal penetrates the abdominal wall, weak spots arise, and this is the site of an incipient inguinal hernia. It is effectively a tear of the muscles and connective tissue in the area.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"wp-image-3789 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/hernia-1.jpg\" alt=\"hernia\" width=\"516\" height=\"298\" /></span>\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is some debate in the literature as to how this is diagnosed, but the symptoms include the following:</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Lower abdominal pain</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Stiffness or soreness after training.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Groin pain that is increased by running, sprinting, twisting and turning.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Groin pain that is increased when coughing, sneezing, etc.</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is claimed that in 30 percent of athletes, there is a history of sudden injury, but the majority indicate an incipient hernia is a gradual overuse injury. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It depends upon the skills of the doctor or therapist as to whether a sportsman’s hernia can be diagnosed, but this problem accounts for many of the unsuccessfully treated abdominal and groin injuries seen in sports today. If any of your clients complain of the above types of symptoms, one of the main areas to check first is the sacro-iliac (SI) joint function.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If there is an abnormal positioning of the SI joint, this can increase the load on the external and internal obliques and consequently the inguinal canal, causing damage. So before trying to manage a hernia, you need to try to correct any biomechanical causes that may be loading the area. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The two best tests to check for correct biomechanical function of the pelvis are Downing’s Sign and the 4-Sign (Patrick Fabre’s sign). This was established by Barrow and Haines when they biomechanically tested over 4,000 people to look at which manual tests had the highest correlation with the biomechanical tests in the Lab for establishing pelvic function. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Downing’s sign is a non-weight bearing test and also establishes whether there is a functional or apparent leg length discrepancy.  While this test is difficult to describe in text try this (or go to our YouTube Channel); lay your client supine, ask them to do a bridge, then taking their legs you lift their knees to their chest and then straighten their legs out to the floor or couch.  At this point measure any difference in height between their medial malleoli. Now move their hips by rotating them passively into adduction, then flexion, then abduction and then back down into extension.  Then take a look at the heights of their medial malleolus.  If their pelvis is working correctly that leg should have lengthened and the malleolus on that side should be lower.  Then reverse the movement and when you now measure the medial malleolus height that leg should have shortened again, making the leg lengths the same as they were after they bridged.  </span>\n\n<span style=\"font-weight: 400;\">Try on both sides. If the legs both lengthen and shorten, then the pelvis is working correctly.  If they don’t, then the pelvis is dysfunctional and can be loading the hernia area.  The 4-Sign can be found when you Google Patrick Fabre’s Sign and has much more written about it, but it’s usually applied clinically rather than biomechanically.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With this test, you lay your client supine (or you can do it seated) and cross one ankle over the other with the lateral malleolus placed outside the lower quad of the opposite leg.  Look at how low the knee drops to the floor or mat. Then repeat on the other side. They should be symmetrical, if they aren’t symmetrical then the pelvis is dysfunctional. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In addition, if the pelvis is abnormally rotated, as well as causing a functional leg length discrepancy, it can increase the load on the symphysis pubis, which can also refer pain into the lower abdominals. The best way to mobilise the pelvis and correct any SI dysfunction through exercise is to perform anti-spasm exercises (a form of hold-relax exercise) for the hip extensors and specifically glutes and piriformis. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once the pelvis is in good biomechanical shape, then core work can help to stabilise the pelvis after it’s in a correct biomechanical position and also working on the scar tissue around the inguinal canal to help the healing. Then when your client is ready, you can progress onto the functional stability work. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is critical that you work the adductors of the hip as well. This is because the adductors and the trunk muscles work closely to control and stabilise the pelvis, and for men especially, their adductors are often “weak” or inhibited. This may be one of the reasons that they have an incipient hernia in the first place. While today the latest trend is “functional movements,” there are times in rehab and conditioning when you need to isolate muscles first, and this is one example. As Mark Verstegen says: “First isolate, then integrate.” Working the hip adductors symmetrically in the seated adductor machine helps engage the adductors (and core when positioned correctly) and mobilise the symphysis pubis. Then progressing to asymmetrical adductor work on the total hip machine (hip conditioner) will introduce a more weight-bearing challenge with additional torque through the pelvis, and then functional movements can be a very effective way of integrating the pelvic and trunk musculature.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The problem with functional movements, in this example, is that if one of the muscles is not firing correctly or is inhibited (in this case the adductors), and you do functional training for the hip and trunk, the body is a master of compensation, and other muscles can take over to protect it. The muscle needs to be “taught” how to contract and fire again, so it is able to be integrated into a functional pattern of movement. So in this case (as with many others), isolate then integrate.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More often than not, the incipient hernias can be managed through exercise rather than surgery. Just try to make sure you correct the mechanical faults with the pelvis as well as strengthening the obliques.</span>\n\n&nbsp;\n<h3><b>Referred Abdominal Pain</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Referred pain is a term used to describe the phenomenon of pain perceived at a site adjacent to or at a distance from the site of an injury origin. The International Association for the Study of Pain, as of 2001, has not officially defined the term, so several authors have defined the term differently. Despite an increasing amount of literature on the subject, there is no definitive answer regarding the mechanism behind this phenomenon. Physicians and scientists have known about referred pain since the late 1880s, yet the true origins and causes of referred pain are unknown. However, we do know that referred pain can come from a number of areas, like the thorax (pneumonia, pulmonary embolism, ischemic heart disease and pericarditis), the spine (radiculitis) and from the genitals (testicular torsion). </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if you have any uncertainty at all, refer your client to a relevant medical specialist. If you think there may be some cardiac involvement, refer to a cardiologist, and if you are concerned that the pain may be referred from the spine, then any good manual therapist should be able to help. Don’t worry too much about whether it’s a physiotherapist, osteopath or chiropractor. Consider the person rather than the qualification. Try to find one who understands biomechanics so he/she can work out why your client has the pain and also someone who understands exercise and is prepared to discuss the science with you to come to a logical conclusion.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As long as there is no underlying clinical pathology, exercise is an excellent way of managing musculoskeletal-related abdominal pain and its many causes. The key is to identify the biomechanical causes (rotated pelvis, weak or inhibited adductors, tight lumbar spine, tight thoracic spine etc) and manage them. Then progressively condition the relevant muscles, and the abdominal pain usually looks after itself. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">With thanks to Martin Haines, Specialist Biomechanics Coach, Chartered Physiotherapist.</span></i>\n\nIf you would like to find out more about Biomechanics Education and how you can benefit from our research, <a href=\"http://bit.ly/2svUc5o\" target=\"_blank\" rel=\"noopener\">Click Here</a>.\n<h3><b>References</b></h3>\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Anderson, DM, Mosby\'s Medical Dictionary 6th ed, St Louis, Mo: Mosby; 2002. </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Fredberg U, Kissmeyer-Nielsen P, The sportsman\'s hernia – fact or fiction? Scand J Med Sci Sports, 1996 Aug;6(4):201-4. </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Giles LGF, Taylor JR, Low back pain associated with leg length inequality, Spine 6:5, 510, 1981. </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Lacroix VJ, Kinnear DG, Mulder DS, Brown RA, Lower abdominal pain syndrome in national hockey league players: a report of 11 cases, Clin J Sport Med, 1998 Jan;8(1):5-9. </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Marx J, Rosens Emergency Medicine: Concepts and Clinical Practice 6th ed, St Louis, Mo: Mosby; 2006. </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Thompson, Ann and Skinner, Alison. eds. \"Tidy\'s Physiotherapy.\" Butterworth-Heinemann Ltd. 12th ed. 31 Mar 1991</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">http://www.sportnetdoc.com/injury/09-02.htm</span></li>\n</ol>','Abdominal Injuries - Hernia','','draft','closed','closed','','abdominal-injuries-hernia','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=3783',0,'post','',0),(3784,0,'2017-10-30 10:42:52','2017-10-30 10:42:52','','','','inherit','closed','closed','','abdominal-injuries-1','','','2017-10-30 10:42:52','2017-10-30 10:42:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/Abdominal-Injuries-1-1.png',0,'attachment','image/png',0),(3789,0,'2017-10-31 06:14:28','2017-10-31 06:14:28','','','','inherit','closed','closed','','hernia','','','2017-10-31 06:14:28','2017-10-31 06:14:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/10/hernia-1.jpg',0,'attachment','image/jpeg',0),(3800,3,'2017-11-06 18:00:13','2017-11-06 18:00:13','<h3><span style=\"font-weight: 400;\">We regularly test every system in our body to predict problems <em>except</em> our musculoskeletal system - WHY??</span></h3>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Yearly eye test</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Regular hearing tests</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Dentists once a year</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Wellman/Wellwoman screening </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Breast screening</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Cholesterol testing </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Blood pressure testing</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet with the musculoskeletal system we literally WAIT until we have symptoms before we seek help! Usually by this time it’s probably been hanging around for some time because of our body’s amazing ability to compensate, adapt and yet continue to function.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2814\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-18-at-20.22.27.png\" alt=\"screen-shot-2017-06-18-at-20-22-27\" width=\"235\" height=\"245\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our body has proven to be ingenious at evolving to its environment, which we see very obviously in various situation. Take bodybuilding competitions for example, with the right environment in place i.e. training and diet etc, muscles can grow.</span>\n\n<span style=\"font-weight: 400;\">A runner will adapt to their sport and a desk workers body will also adapt to prolonged sitting with certain areas in their bodies staying in lengthened or shortened positions as they sit and type.</span>\n\n<span style=\"font-weight: 400;\">Even a bricklayer\'s hands can develop a thick layer of calluses on the skin that’s to protect their hands.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-3803\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/calluses-on-hand-1-1.jpg\" alt=\"calluses-on-hand-1\" width=\"336\" height=\"224\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With all of this evidence and information I find it incredible, particularly with the amount of musculoskeletal problems commonly suffered today, that there is not a compulsory standardised annual musculoskeletal screening system. This could then be offered to everyone to help reduce NHS costs and absenteeism costs for businesses both large and small? Medical insurance companies would LOVE something like this, right!? They are happy to pay out for you to have other physical examinations to avoid problems later on that might cost them even more.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As movement/exercise specialists we could all contribute to reducing these costs with risk reduction screenings and bespoke exercise programming. Some barely even speak to each other professionally because of a fear of losing clients but thats a whole other Juicemail topic! ;)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Not only would having these skills enable us to assist reduction  unnecessary injuries and recurring ones, it could reduce insidious low grade aches and niggles, improve the way people move and all while increasing performance levels!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The bodybuilders gain symmetry<img class=\"wp-image-2964 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-03-at-10.10.13-1024x813.png\" alt=\"screen-shot-2017-07-03-at-10-10-13\" width=\"373\" height=\"296\" /></span>\n\n<span style=\"font-weight: 400;\">The runner gets faster\n</span>\n\n<span style=\"font-weight: 400;\">The desk worker had less fatigue &amp; pain thus reducing absenteeism</span>\n\n<span style=\"font-weight: 400;\">The bricklayer would probably still have hardened skin on his hands but hopefully, would have less back &amp; knee problems!</span>\n\nCommon problems like non specific low back pain could be addressed bespokely instead of a uniform method that is based on assumptions.\n\n<span style=\"font-weight: 400;\">We are perfectly placed with our exercise knowledge for this very role!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">People employe our services for the fun stuff, they see us sometimes several times a week. With us they have positive goals because we are the movement specialists and THAT is more commonly the problem isn’t it!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should stop slagging PT Education off and take some responsibility to improving it. L3 PT, Pilates or Sports Massage are superb base level qualifications to get started.</span>\n\n<span style=\"font-weight: 400;\">We cannot appreciate L3 without demonstrating the ability to appreciate L2 first. It’s called layered learning.</span>\n\n<span style=\"font-weight: 400;\">So once you’ve gained L3, practise it and understand the right questions you need answers to THEN we go on to learn more. With our personal development and education ultimately being our responsibility, surely learning how to perform these types of musculoskeletal screens/assessments would be ideal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WE, as movement specialists, could be the first point of call each year for assessing the nation’s physical health to REDUCE injury risk and improve movement ability through appropriate exercise  preparation to improve intrinsic capacity.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having a standardised, evidence-based, reproducible system could make a huge deal of difference to our client\'s success and achievements.</span>\n\n<span style=\"font-weight: 400;\">And in fact to our Nation!</span>\n\n<span style=\"font-weight: 400;\">And of course over-time the NHS </span>\n\n&nbsp;\n\nWho’s in?\n\nCheck out our Diploma and learn how you can increase your knowledge so you can better serve your clients through our <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Biomechanics Education Diploma</a>\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3502\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/2018-locked-prices-1-1024x536.png\" alt=\"2018-locked-prices\" width=\"361\" height=\"189\" /></a>','Why Go To The Dentist?','','draft','closed','closed','','why-go-to-the-dentist','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=3800',0,'post','',0),(3801,0,'2017-11-06 17:36:24','2017-11-06 17:36:24','','','','inherit','closed','closed','','why-go-to-the-dentist-1','','','2017-11-06 17:36:24','2017-11-06 17:36:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/11/Why-Go-to-The-Dentist-1-1.png',0,'attachment','image/png',0),(3803,0,'2017-11-06 17:54:53','2017-11-06 17:54:53','','','','inherit','closed','closed','','calluses-on-hand-1','','','2017-11-06 17:54:53','2017-11-06 17:54:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/11/calluses-on-hand-1-1.jpg',0,'attachment','image/jpeg',0),(3815,0,'2017-11-09 13:09:59','2017-11-09 13:09:59','','kaizen_white_on_black','','inherit','closed','closed','','kaizen_white_on_black','','','2017-11-09 13:09:59','2017-11-09 13:09:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Kaizen_white_on_black-1.jpg',0,'attachment','image/jpeg',0),(3817,3,'2017-11-14 05:45:01','2017-11-14 05:45:01','<h2><span style=\"font-weight: 400;\">Do You Ever Wonder If The Terminology You Use Is Right?</span></h2>\n<span style=\"font-weight: 400;\">Maybe you get flummoxed between lay language and technical speak when switching chat between clients and peers?</span>\n\n<span style=\"font-weight: 400;\">Or </span>\n\n<span style=\"font-weight: 400;\">Maybe you have simply got so used to speaking that language with clients that you have forgotten how to use technical jargon which makes you anxious when speaking your thoughts to peers or on courses?</span>\n<h4></h4>\n<h4>Language in relation to the human body can be rather ambiguous.</h4>\n<h4><span style=\"font-weight: 400;\">- Tight</span></h4>\n<h4><span style=\"font-weight: 400;\">- Inhibited</span></h4>\n<h4><span style=\"font-weight: 400;\">- Overactive</span></h4>\n<h4><span style=\"font-weight: 400;\">- Dysfunctional</span></h4>\n<h4><span style=\"font-weight: 400;\">- Spasmodic</span></h4>\n<h4><span style=\"font-weight: 400;\">- Weak</span></h4>\n<h4><span style=\"font-weight: 400;\">- Dominant</span></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s language that very often causes great controversy in the health &amp; fitness industry and in my opinion, often unnecessarily.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-3821\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/communication-1.png\" alt=\"communication\" width=\"555\" height=\"222\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The language we use can potentially result in a great session or a not so great one - Are our choice of words hitting the spot with the person receiving the information?</span>\n\n<span style=\"font-weight: 400;\">Or</span>\n\n<span style=\"font-weight: 400;\">Do they look at you confused when you try to communicate what you feel might be going on?</span>\n\n<span style=\"font-weight: 400;\">Or</span>\n\n<span style=\"font-weight: 400;\">Are the words we choose relevant to their capabilities of understanding or even what they give a damn about to be blunt!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-3693\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/seek-a-professional-1.jpg\" alt=\"\" width=\"567\" height=\"378\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Communication is absolutely paramount in, not only for our client\'s sessions but between us and our peers.</span>\n\n<span style=\"font-weight: 400;\">And there is still a gap between us.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT’s generally call problem muscles tight or short</span>\n\n<span style=\"font-weight: 400;\">Therapists mostly call them overactive or inhibited</span>\n\n<span style=\"font-weight: 400;\">But what’s the difference?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, it doesn’t really matter too much what you call it in your own thoughts….</span>\n\n<span style=\"font-weight: 400;\">It’s what you\'re going to do about it and to whom you want to communicate it with that is key.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example, you wouldn’t be explaining to a client that </span><i><span style=\"font-weight: 400;\">you feel their piriformis muscle may be reciprocally inhibited by the gluteal muscles due to the laws found in a research paper a or b.</span></i>\n\n<span style=\"font-weight: 400;\">No! You would likely just say </span><i><span style=\"font-weight: 400;\">your hips are a little stiff or limited</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But when seeking ideas from a peer then your language should switch to a more technical vocabulary. This allows you to have an absolute clarity to discuss thoughts on potential causes of musculoskeletal ‘issues’ and therefore the various interventions you may have between you. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As an education company, we are very pedantic about the language we use during our workshops. We train all of our Master Trainers to speak with absolute clarity otherwise what we are saying can be misinterpreted.When it comes to the duty of care for our learner\'s skills clarity is imperative. This also goes for our learner\'s ability to communicate with their clients, which is often a whole different set of words. It kind of like being bilingual!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2896\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/table_pic.jpg\" alt=\"\" width=\"648\" height=\"351\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">‘Language’ and the problems it can cause means we are faced with challenges when it comes to choosing the right words. This is something I would like to talk about in more detail in an endeavor to bridge the gap between all practitioners. Ultimately this offers further opportunity for us to provide an even better duty of care to our clients. Doing this </span><i><span style=\"font-weight: 400;\">together </span></i><span style=\"font-weight: 400;\">through inter referral sites and systems has got to be smarter than possibly struggling on our own; don’t you think?!</span>\n\n<span style=\"font-weight: 400;\">So with meetings planned with colleagues to discuss this very topic keep your eyes peeled for more information and resources coming your way!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Within our <a href=\"https://www.biomechanicseducation.com\" target=\"_blank\" rel=\"noopener\">academy</a>, we provide all of our learners with all they need to utilise the most appropriate language to communicate professionally with both clients and peers.</span>\n\n<span style=\"font-weight: 400;\">If you would like to improve your communication skills when talking human movement stuff why not try one of our really cool workshops?</span>\n\nClick <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">HERE</a> to find out more.','Is Your Choice Of Language Confusing Your Client?','','draft','closed','closed','','is-your-choice-of-language-confusing-your-client','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',0,'https://www.biomechanicseducation.com/?p=3817',0,'post','',0),(3819,0,'2017-11-14 05:36:59','2017-11-14 05:36:59','','home-brewing-3','','inherit','closed','closed','','home-brewing-3','','','2017-11-14 05:36:59','2017-11-14 05:36:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/11/Home-Brewing-3-1.png',0,'attachment','image/png',0),(3820,0,'2017-11-14 05:37:08','2017-11-14 05:37:08','','home-brewing','','inherit','closed','closed','','home-brewing','','','2017-11-14 05:37:08','2017-11-14 05:37:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/11/Home-Brewing-4.png',0,'attachment','image/png',0),(3821,0,'2017-11-14 05:38:42','2017-11-14 05:38:42','','communication','','inherit','closed','closed','','communication','','','2017-11-14 05:38:42','2017-11-14 05:38:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/11/communication-1.png',0,'attachment','image/png',0),(3827,3,'2017-11-19 22:42:45','2017-11-19 22:42:45','<h1><b><i>NO, I DAMN WELL CAN\'T!</i></b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So there will be endless opportunities coming up for PT\'s everywhere this week/month BUT be prepared to be faced with a common problem and misconception I have experienced for the entire 25 years of my career.</span>\n\n<span style=\"font-weight: 400;\">It never ceases to amaze me how many people approach me expecting literally 5 minutes of advice on how to cure all of their physical problems, ailments, ache and pains.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<img class=\"aligncenter wp-image-3830\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/PT-FUSTRATION-1.jpg\" alt=\"pt-fustration\" width=\"358\" height=\"269\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why do people/clients still think that all they need to do is a little exercise for a day or 2 to completely rid themselves of all their aches and pains long term!?</span>\n\n<span style=\"font-weight: 400;\">Now for a small number of people, this may well be the case but I am not talking about them. I’m talking about the people who have been to see their GP, physio, massage therapist, chiro, podiatrist and so on and have still not found the root cause of their problem.</span>\n\n<span style=\"font-weight: 400;\">The type of client who thinks that after say 30 years of a crappy lifestyle, sitting at a desk, walking around in high heels, carrying heavy bags on one shoulder and their babies on their hip, that we can simply give them an exercise for the specific area of the body and cure them!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Seriously!?</span>\n\n&nbsp;\n\n<b>Typical Conversation;</b>\n\n<i><span style=\"font-weight: 400;\">Potential Client; “Hi, I hear you are the \'go to\' person for helping back pain and I was wondering if you can give me an exercise for this bit….(points to lower back)”</span></i>\n\n<i><span style=\"font-weight: 400;\">Me; “Sorry but I would need to do a full assessment to understand better what might be causing it and to understand your medical history…”</span></i>\n\n<i><span style=\"font-weight: 400;\">Potential Client;“…can’t you just give me an exercise for that area..?”</span></i>\n\n<i><span style=\"font-weight: 400;\">Me; “NO I DAMN WELL CAN’T &amp; IF IT WERE THAT FLIPPIN’ SIMPLE DON’T YOU THINK I WOULD BE A MILLIONAIRE!?”……</span></i><span style=\"font-weight: 400;\">this part happens in my head so what I actually say is</span><i><span style=\"font-weight: 400;\">…..</span></i>\n\n<i><span style=\"font-weight: 400;\">“Not if you want a long-term improvement that is based on the parts of your body that need addressing rather than simply the area that hurts. Often the area that hurts is not that area where the problem has occurred …….” blah blah blah</span></i>\n\n<i><span style=\"font-weight: 400;\">   <img class=\"aligncenter wp-image-3831\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/coaching-1.png\" alt=\"coaching\" width=\"278\" height=\"278\" /></span></i><i><span style=\"font-weight: 400;\">     </span></i>\n\n<span style=\"font-weight: 400;\">Then I begin my spiel…but ONLY if I think I can genuinely help and sadly often, with this type of client, I cannot because they are the types of client who just won’t do their homework and so I refer them otherwise there is a high chance they will make me look bad!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Attitude towards what we CAN do to help ourselves is still very lazy and of the mindset that WE, as practitioners, therapists, Biomechanics Coaches&#x2122;, personal trainers, actually ‘fix’ people and that it can be done quickly.</span>\n\n&nbsp;\n\n<b>This Is Simply NOT TRUE!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Seriously, \'quick fixes\' would be an arrogant, and potentially can be harmful (to your business)!</span>\n\n<span style=\"font-weight: 400;\">How can anyone truly KNOW what is happening inside a ‘healthy’ but dysfunctional body? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine that we study on cadavers (dead bodies), pigs spines, take samples OUT of the body and using extrinsic video analysis, none of which replicate a live human on the inside.</span>\n\n<span style=\"font-weight: 400;\">YES, pretty much EVERYTHING we \'know\' about what’s happening inside the body, is a hypothesis!</span>\n\n<span style=\"font-weight: 400;\">This is why even the world leading experts often disagree because they both prove AND disprove concepts with their research.</span>\n\n<span style=\"font-weight: 400;\">Often with convincing data for both!</span>\n\n&nbsp;\n\n<b>So What The Hell Are WE PT\'s Supposed To Do?</b>\n\n<span style=\"font-weight: 400;\">Well, we have logic and the hypothesis built from whatever we DO know and trials of input/output.</span>\n\n<span style=\"font-weight: 400;\">World leaders like Haines, Chek, Poliquin, Gray, McGill, Gracovetsky and others have hypothesised their ideas from the research they have done, or data they have collected over many years, on many subjects, and used both their educated logic and results from the input/output.</span>\n\n<span style=\"font-weight: 400;\">This is why they are deemed ‘experts’.</span>\n<p style=\"text-align: center;\"><b>Education + Experience = Expert </b></p>\n<img class=\"aligncenter wp-image-3832\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/sprinterglow-1-1024x735.png\" alt=\"sprinterglow\" width=\"415\" height=\"298\" />\n\n<span style=\"font-weight: 400;\">This is also why those in the industry (like any of us) that are maybe not so experienced or are not necessarily in a position to collect data and perform research, seek out tried and tested input/output ‘systems’. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are ALL after the same end result - to look after our clients - and we go about it via the route that makes the most sense to us, from the way we are educated, the way our brain processes that information plus other things we read, learn, hear. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my opinion, the simpler to apply the better- would you agree!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also, don’t undervalue what you gain from your own service since we do in fact, gather ‘results’ from our own clients and form our own opinions on what might help, with a whole battery of ideas, tools, resources and methods in an endeavour to help each client.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More often than not, and on a superficial level, the client actually KNOWS what they SHOULD do, to some degree at least, to feel better or to lose weight.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">-Move More</span>\n\n<span style=\"font-weight: 400;\">-Eat Better</span>\n\n<span style=\"font-weight: 400;\">Yep that’s pretty much the entire industry\'s requirement, isn\'t it!? - think about it!</span>\n\n&nbsp;\n\n<b>But It’s NEVER That Simple - WHY?</b>\n\n<span style=\"font-weight: 400;\">ATTITUDE </span>\n\n<span style=\"font-weight: 400;\">&amp;</span>\n\n<span style=\"font-weight: 400;\">EXPECTATION</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We ALL need to be working towards changing our client’s attitude and expectation by EDUCATING them on how to better help themselves, WITH OUR GUIDANCE of course!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whilst we are doing this, we would be gaining experience, learning what works and what doesn’t by our own methods, effectively trialling and testing what we have learned, so far. </span>\n\n<span style=\"font-weight: 400;\">So why not learn an ‘experts’ tried and tested system to improve your confidence and better serve them?!</span>\n\n<span style=\"font-weight: 400;\">Experts like Ben Coomber of Body Type Nutrition, and his team, will educate you with a smart, yet simple system of ideas on how to advise clients how to fuel their bodies.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Mike Grice of Movement Therapy Clinics, and his team will give you awesome practical manual therapy skills using a logical system.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Chris Wright of Level 10 Living, and his team will teach you a fantastic system to help your business succeed.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our own workshops offer you a physical assessment system or ‘benchmark’, to decide which exercises will help and which will hinder your client.  With movement preparation techniques to reduce injury risk, improve movement performance and often with the awesome side effect of pain relief.</span>\n\n<img class=\"aligncenter wp-image-3833\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/shutterstock_52725265-1.jpg\" alt=\"shutterstock_52725265\" width=\"507\" height=\"189\" />\n\n<span style=\"font-weight: 400;\">So even if you attended ALL of these courses the question is; </span>\n\n<span style=\"font-weight: 400;\">How are YOU going to change YOUR client’s attitude?</span>\n\n<span style=\"font-weight: 400;\">Firstly we need to change OURS!</span>\n\n<span style=\"font-weight: 400;\">We need to start learning HOW to educate them on what is happening to their bodies.</span>\n\n<span style=\"font-weight: 400;\">We need to take TIME, to be honest </span>\n\n<span style=\"font-weight: 400;\">We need to allow for time to EXPLAIN things</span>\n\n<span style=\"font-weight: 400;\">We need to understand what we are explaining technically and then make it SIMPLE for the layperson to grasp</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">‘If you can’t explain it simply, you don’t understand it well enough’ </span></i><span style=\"font-weight: 400;\">Albert Einstein</span>\n\n&nbsp;\n\n<b>We Don’t Have An Easy Job!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But this is vital if we are to maintain our ‘duty of care’, get the best long-term results we can and built on a ‘system’ to demonstrate from our own results something that is valid, reliable and reproducible.</span>\n\n<span style=\"font-weight: 400;\">Without a system, we are GUESSING, flailing around from one idea to the next with no way of measuring what actually worked which means we lose our confidence.</span>\n\n<span style=\"font-weight: 400;\">If we don’t know what worked how can we repeat it and help the next person?</span>\n\n<span style=\"font-weight: 400;\">So the value in taking longer to do things initially is VITAL for our future client\'s long-term success and the long-term success of our services. Over time we will become quicker and slicker at this method of delivery. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Really we should simply refuse to take on clients who do not adopt the methods or system we teach.</span>\n\n<span style=\"font-weight: 400;\">WHY pay for my expertise and then not heed it?!</span>\n\n<span style=\"font-weight: 400;\">We should </span><i><span style=\"font-weight: 400;\">interview</span></i><span style=\"font-weight: 400;\"> clients to decide if they a suitable to OUR method.</span>\n\n<span style=\"font-weight: 400;\">Because if we do not filter out the ‘liggers\', as I call them, they will make us look rubbish!</span>\n\n&nbsp;\n\n<b>(Urban Dictionary ‘</b><b><i>ligger\' = along for a free ride)</i></b><span style=\"font-weight: 400;\"> the ones who want that a quick fix, the ones who think a little exercise will fix them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you KNOW you could help someone IF they did as they were told BUT they didn’t like it or buy in - what’s the point!?!?</span>\n\n&nbsp;\n\n<b>Get Rid Of Those Clients</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Attract the type of clients you ENJOY working with because they trust YOU, respect your professionalism, do what you suggest and therefore change their bad habits</span>\n\n<span style=\"font-weight: 400;\">Be confident about turning people away </span>\n\n<span style=\"font-weight: 400;\">Meaning you enjoy working more</span>\n\n<span style=\"font-weight: 400;\">Allowing you to focus on people who get results following your system</span>\n\n<span style=\"font-weight: 400;\">Allowing you to charge more based on results </span>\n\n<span style=\"font-weight: 400;\">Allowing you to increase your income</span>\n\n<span style=\"font-weight: 400;\">This will reduce the stress of clients not adhering to the system and making YOU look bad!</span>\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n<span style=\"font-weight: 400;\">I agree it is never simple</span>\n\n<span style=\"font-weight: 400;\">Everything is hypothesis</span>\n\n<span style=\"font-weight: 400;\">Just find a ‘system’ (create one or, if you do not have the resources, utilise a tried and tested one)</span>\n\n<span style=\"font-weight: 400;\">Stick to the ‘system’</span>\n\n<span style=\"font-weight: 400;\">Interview clients to find the ones who will follow your ‘system’</span>\n\n<span style=\"font-weight: 400;\">Explain what that ‘system’ is on day 1</span>\n\n<span style=\"font-weight: 400;\">Create the appropriate expectation in them on day 1</span>\n\n<span style=\"font-weight: 400;\">Maintain integrity by being honest.</span>\n\n<span style=\"font-weight: 400;\">Carefully use the right language</span>\n\n<span style=\"font-weight: 400;\">Just make sure your ‘system’ is;</span>\n\n<span style=\"font-weight: 400;\">Tried and tested</span>\n\n<span style=\"font-weight: 400;\">Simple</span>\n\n<span style=\"font-weight: 400;\">Logical </span>\n\n<span style=\"font-weight: 400;\">Easy to follow</span>\n\n<span style=\"font-weight: 400;\">Removes guesswork</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<b>Would You Like A Ready Made ‘System’?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You already know my next question, don’t you?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So remember if I TURN YOU AWAY it’s because I don’t believe you will follow MY system!</span>\n\n<span style=\"font-weight: 400;\">But you won’t know unless you ask …….</span>\n\n<span style=\"font-weight: 400;\">So why not start with a 2-Day Pelvic Biomechanics Workshop Feb in North London or Loughborough?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">P.S. Did you know we have an offer on????</span>\n\n<span style=\"font-weight: 400;\">Click <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Here</a> Discover It!</span>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>','NO, I DAMN WELL CAN\'T!','','draft','closed','closed','','no-i-damn-well-cant','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=3827',0,'post','',0),(3829,0,'2017-11-19 21:57:38','2017-11-19 21:57:38','','home-brewing-2','','inherit','closed','closed','','home-brewing-2-2','','','2017-11-19 21:57:38','2017-11-19 21:57:38','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/11/Home-Brewing-2-1.png',0,'attachment','image/png',0),(3830,0,'2017-11-19 22:12:55','2017-11-19 22:12:55','','pt-fustration','','inherit','closed','closed','','pt-fustration','','','2017-11-19 22:12:55','2017-11-19 22:12:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/11/PT-FUSTRATION-1.jpg',0,'attachment','image/jpeg',0),(3831,0,'2017-11-19 22:14:54','2017-11-19 22:14:54','','coaching','','inherit','closed','closed','','coaching','','','2017-11-19 22:14:54','2017-11-19 22:14:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/11/coaching-1.png',0,'attachment','image/png',0),(3832,0,'2017-11-19 22:40:38','2017-11-19 22:40:38','','sprinterglow','','inherit','closed','closed','','sprinterglow','','','2017-11-19 22:40:38','2017-11-19 22:40:38','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/11/sprinterglow-1.png',0,'attachment','image/png',0),(3833,0,'2017-11-19 22:41:39','2017-11-19 22:41:39','','shutterstock_52725265','','inherit','closed','closed','','shutterstock_52725265','','','2017-11-19 22:41:39','2017-11-19 22:41:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/11/shutterstock_52725265-1.jpg',0,'attachment','image/jpeg',0),(3902,3,'2017-11-27 19:10:46','2017-11-27 19:10:46','<h2><b><i>28/11 SO WHAT?</i></b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having come from a fitness/exercise profession background with some sports massage skills my knowledge of clinical ‘stuff’ is understandably limited.</span>\n\n<span style=\"font-weight: 400;\">Although having a mentor and good friend who is a chartered physiotherapist, remedial gymnast and recreational therapist to question on a daily basis for the last 10 years has helped me to understand, at least more clearly what my limitations are and when I need to refer clients or when I can\'t simply carry on what I am doing with exercise. </span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-1232\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-26-at-08.01.16.png\" alt=\"\" width=\"264\" height=\"221\" />\n</span>\n\n<span style=\"font-weight: 400;\">One thing I learned during my time in cadaver labs (highly recommended if you get the chance by the way) was that for my role I don’t NEED nor WANT to know everything. That\'s a pretty tall order to expect of yourself right!? There is enough STUFF bouncing around in MY head that I want to keep it to a minimum thank you very much!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what I need is to know MY preferred specialist subject REALLY well (that’s </span><b><i>intrinsic biomechanics </i></b><span style=\"font-weight: 400;\">of competitive strength athletes in particular in case you didn’t know) to do my best and provide the best duty of care I can. This understanding also allows me to best advise my learners. It is a lot of responsibility advising learners on their remit and can be quite challenging when they are from such diverse backgrounds. However, the really exciting thing is that often we get both therapists and exercise professionals together on our workshops.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-1045\" src=\"https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-12-at-07.37.45.png\" alt=\"\" width=\"434\" height=\"235\" /></span>\n\n<span style=\"font-weight: 400;\">Anyway, while I NEVER diagnose nor do I do ‘clinical’ work I DO want to understand enough that I am realistic about my clients best interest when they have a clinical issue or question. So reading research is something I TRY to do regularly.</span>\n\n<span style=\"font-weight: 400;\">Now if you are a fitness professional like me, with clients who have medical conditions and you wish you understood these conditions better have you ever tried to read clinical research or ANY kind of research in fact!?</span>\n\n<span style=\"font-weight: 400;\">Brain frying right?!</span>\n\nNow I don’t know about you but I am definitely NOT a ‘reader’\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">Ever heard of the V.A.R.K principles?</span></h2>\n<span style=\"font-weight: 400;\">VISUAL</span>\n\n<span style=\"font-weight: 400;\">AURAL</span>\n\n<span style=\"font-weight: 400;\">READER</span>\n\n<span style=\"font-weight: 400;\">KINESTHETIC</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, there are simple tests you can do to discover which ‘style’ of learning is your prefered method to absorb information but most of us already instinctively know which one it is. That is not to say we don’t learn for all of these by any means, they enhance each other.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I am SO kinesthetic!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I am a fidget. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Kinesthetic, or practical, all the way, I am a doer, a performer, tactile, physical, a people person and do not like the act of reading a lot of text (it kinda hurts my eyes) but LOVE reading to gain understanding at the same time.</span>\n\n<span style=\"font-weight: 400;\">My attention span is very short and so I have developed techniques that allow me to absorb information on ‘reading material’ because I recognise the value of information gained this way or that is only represented in this way.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having discovered audiobooks, which are a godsend, and one of the things I LOVE about technology for when I drive for hours around the UK (I have a LOVE/HATE relationship with technology like most of us I think) BUT frustratingly not all of the books I want to read are on audio.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having amassed over years literally hundreds of research papers online that relate to the grassroots of some of the techniques I use, I do take time out to ‘practice’ reading them. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">My method:</span></h2>\n<span style=\"font-weight: 400;\">Print off papers with a common theme or around a subject I want to study.</span>\n\n<span style=\"font-weight: 400;\">Then I highlight the key areas as I ‘scan’ read the content. Then I repeat until I have found all the ones with something to interesting in that I want to learn more about or understand better.</span>\n\n<span style=\"font-weight: 400;\">Then I put time aside to read a few, or maybe I simply read for a set time, due to having the attention span of a fish.</span>\n\n<span style=\"font-weight: 400;\">Then I do this repeatedly and periodically over time. This allows the information to pass into my thoughts during movement or exercise (the kinesthetic bit) or when I teach fitness classes or when I am watching people move in the gym (I KNOW you do that too!!)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THEN when I feel I have something of relevance that I can understand or put into practice, then I discuss it or share it with my learners and then you guys.</span>\n\n<span style=\"font-weight: 400;\">Now please understand, as my school teachers constantly told me, I am </span><i><span style=\"font-weight: 400;\">not an academic</span></i><span style=\"font-weight: 400;\"> this does not mean I am stupid (well I keep telling myself that anyway) and for me I always look for the ‘SO WHAT?’ in things otherwise without having a reason to my brain simply as no reason to retain it!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I have read a huge pile of papers that relate to leg length discrepancy, SIJ function and pathology, different methods of assessing these areas, ideas on what the results mean, relevance or significance and also how they related to symptoms and pain.</span>\n\n<span style=\"font-weight: 400;\">This is all with the hope that I can find and then bring you, my learners, something of interest to read, discuss and maybe put into practice with your clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How do YOU adapt to your areas of weakness?</span>\n\n<img class=\"wp-image-3634 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/Question-myself-1-1024x1024.jpg\" alt=\"3d human with a red question mark\" width=\"189\" height=\"189\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What methods do YOU use to get around this?</span>\n\n<span style=\"font-weight: 400;\">What strategies do YOU use to improve your skill set?</span>\n\n<span style=\"font-weight: 400;\">With all of this in mind let me also encourage you to consider the best question ever….. SO WHAT?</span>\n\n&nbsp;\n<h2></h2>\n<h2><b>The Results Speak For Themselves</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now there are groups and individuals out there who still challenge everything which I would always encourage anyone to do since we should always seek clarity for understanding. My learners have definitely challenged ME on my methods and the evidence-based programme I use, many times.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is these times, when confronted and challenged, that I grow and expand the most. When at my most uncomfortable is when the real learning takes place because I NEED to understand it. When someone questions the very core of what I do in my practice and the methods we teach in the academy, which I am most passionate about, well that’s when I learn!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having been challenged I found myself on this exploration through reams and reams of research papers and books and conversations with peers, mentors and colleagues and wowzers I was in the ‘growth zone’!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you know where I ended up?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Apart from writing this for you guys of course….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well after reading complex equations, difficult language, conflicting evidence, fascinating arguments, strange opinions and lengthy articles I ended up with…</span>\n\n&nbsp;\n<h2><b>SO WHAT?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well yes, that’s where I ended up asking myself SO WHAT? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What am I trying to achieve with my clients?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Wait NO… </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What </span><i><span style=\"font-weight: 400;\">AM</span></i><span style=\"font-weight: 400;\"> I achieving with my clients?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Their ROM improves, pain is reduced, strength has increased, they report feeling more stable and overall feel they move better.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So no matter what the research states, no matter what the trolls say, no matter what challenges you, if your client feels better, moves better, experiences less pain and you have some objectivity to measuring improvements - SO WHAT?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However the learning never stops and we can always do more, learn more. So if you want to add some more tools to your kit bag to offer you more confidence when you ask the SO WHAT question why not try one of our workshops in 2018?</span>\n\n&nbsp;\n\n<b><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a> To Grab Our Xmas Offer! </b>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>','28/11 SO WHAT?','','draft','closed','closed','','2811-so-what','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=3902',0,'post','',0),(3903,0,'2017-11-27 19:00:28','2017-11-27 19:00:28','','home-brewing','','inherit','closed','closed','','home-brewing-4','','','2017-11-27 19:00:28','2017-11-27 19:00:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/11/Home-Brewing-1-1.png',0,'attachment','image/png',0),(3913,3,'2017-12-04 15:46:57','2017-12-04 15:46:57','<span style=\"font-weight: 400;\">Nerves have been described as the software of the body and to be able to understand this more thoroughly we have to build an understanding of ‘nerve tension’ and ‘Adverse Neural Tension’. These concepts have been recognised for over 100 years in terms of treating patients clinically, but their full potential has never been understood until now. An analogy with the invention of the wheel is an interesting one. The discovery of nerve-tension and it being used for the treatment of injuries is like the wheel being invented and placing it on its side, putting 4 legs around the underside and using it as a table. It makes a great table, but the idea to use it in the way we know it today was groundbreaking. The same applies to nerve tension and its application to athletic performance and fatigue relief.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3914\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/12/0x0ss-85-1.jpg\" alt=\"0x0ss-85\" width=\"224\" height=\"224\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The entire nervous system is a single continuous track, so it follows that if any part of this continuous track is trapped or tethered (as with an injury for example) then it also follows that there will be some restriction of the mobility of other parts of the nerve system. So a problem with one part of the nerve can cause pain in another – this is the clinical application. However, we have discovered that this is not always represented by pain but also by a reduction of a joints range of movement and altered joint biomechanics which can affect a whole host of problems that can cause restricted performance and may ultimately lead to injury. Moreover, with the increased muscle dysfunction and associated factors, local fatigue increases and so understanding these principles can lead to benefits not only in human performance but also fatigue relief.</span>\n<h3><b><img class=\"aligncenter wp-image-3832\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/sprinterglow-1-1024x735.png\" alt=\"sprinterglow\" width=\"349\" height=\"250\" /></b></h3>\n<h3></h3>\n<h3><b>Research</b></h3>\nWe know this happens from research performed at Liverpool Hope University College, and studies there have given astonishing results. One experiment showed that a muscle can increase its force output by 14% after a brief preliminary warm-up (just one 15 second workout using this concept). Another experiment showed that by following the same concept of a 2-minute programme performed daily for 10 days increases muscle output by over 50%. By understanding the importance of the interaction of individual body systems with each other, we have established the world\'s largest database of its kind and have included the outcomes of the auditing of this information in the Biomechanics Coaching&#x2122; Diploma workshop series.\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-3502\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/2018-locked-prices-1-1024x536.png\" width=\"413\" height=\"216\" /></span></a>\n\n<span style=\"font-weight: 400;\">On the diploma, you learn how to test your ‘nerve tension’ and prescribe movement patterns to enhance the coordinated output of your body’s systems. In terms of fatigue relief, it has been demonstrated that after 15 seconds of the programme, muscle fatigue is reduced by up to 14% immediately and sustained use led to a significant and prolonged increase in muscle output. These studies have been validated at the highest level. A paper was submitted at the 6th Asian Biomechanics Congress (one of the world’s most credited) and was enthusiastically received. In a practical sense, the programmes have been rigorously tested by people such as Olympic athletes through to workers on a product line and hospital health trusts.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-2896\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/table_pic.jpg\" alt=\"\" width=\"418\" height=\"226\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember in most cases we are not even aware we have a problem, like nerve tension, but even so, you can still achieve these remarkable results. Just imagine what these figures could do for your performance in your sport or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office. </span>\n\n&nbsp;\n<h3><b>Terminology</b></h3>\n<span style=\"font-weight: 400;\">So when it comes to exercise programming our holistic approach, which is commonly described but rarely understood and demonstrated, takes into consideration all of the body’s systems, and it has a deep understanding of how they interact and are guided by our nervous system. Description terms such as strength and power in this model are inadequate, so when we talk about exercises in these terms, we should be talking in terms of Movement Acquisition Patterns (or MAPs) which are used to enhance a given set of functional movements, not stretches or strengthening exercises, as the latter does not give credit for the full implications of the programming. </span>\n\n&nbsp;\n<h3><b>Example</b></h3>\n<span style=\"font-weight: 400;\">Let\'s take a hamstring stretch as an example, we are not trying to stretch the hamstrings when we extend the leg out in front of us, we are trying to improve the range of hip flexion and knee extension by stretching the structures on the back of the leg and back. This brings in more than just the hamstrings, it can also be limited by a tight sciatic nerve, a rotated sacro-iliac joint in the lower back, tight gastrocnemius, tight spinal cord and indeed almost any nerve in the chain given the continuum concept described earlier. </span>\n\n&nbsp;\n<h3><b>The problem</b></h3>\n<span style=\"font-weight: 400;\">How many times have you stretched your hamstrings using the generally accepted methods only to find that their flexibility continues to be stubborn and often returns to their standard length very soon? Many people experience this phenomenon. The reason is often due to them stretching only one of the structures that limit the movement, i.e. the hamstrings. If they do not stretch the other structures as well, of course, they will not be affected and so the limited range will usually return. So we are trying to acquire a pattern of movement, not just stretching the hamstrings.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-2962\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-03-at-10.01.47-1024x236.png\" alt=\"\" width=\"520\" height=\"120\" /></span>\n<h3></h3>\n<h3><strong>How we can help</strong></h3>\n<span style=\"font-weight: 400;\">If you would like to learn how to assess for where limitation may come from within the pelvis and sciatic nerve, for example,  we would recommend having a look into our biomechanics course where we cover this topic and much more.</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><b>Click Here</b></a><span style=\"font-weight: 400;\"> for more information.</span>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>','Understanding Your Nerves','','draft','closed','closed','','understanding-your-nerves','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=3913',0,'post','',0),(3914,0,'2017-12-04 15:25:18','2017-12-04 15:25:18','','0x0ss-85','','inherit','closed','closed','','0x0ss-85','','','2017-12-04 15:25:18','2017-12-04 15:25:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/12/0x0ss-85-1.jpg',0,'attachment','image/jpeg',0),(3915,0,'2017-12-04 15:41:19','2017-12-04 15:41:19','','home-brewing-3','','inherit','closed','closed','','home-brewing-3-2','','','2017-12-04 15:41:19','2017-12-04 15:41:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/12/Home-Brewing-3-1.png',0,'attachment','image/png',0),(3920,3,'2017-12-11 12:29:26','2017-12-11 12:29:26','<span style=\"font-weight: 400;\">Me neither until I began listening to my latest audible investment from The Great Courses Series ‘</span><i><span style=\"font-weight: 400;\">Mind-Body Medicine - The New Science Of Optimal Health’ by Jason M Satterfield. </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A really fascinating book throughout but in chapter 31 he really caught my attention when he described Occam’s Razor because it really is the ethos of what we communicate within or academy. </span>\n\n&nbsp;\n\n<b><i>Occam\'s razor</i></b><i><span style=\"font-weight: 400;\"> is a problem-solving principle attributed to</span></i><a href=\"https://en.wikipedia.org/wiki/William_of_Ockham\"> <i><span style=\"font-weight: 400;\">William of Ockham</span></i></a><i><span style=\"font-weight: 400;\"> (c. 1287–1347), who was an English friar, scholastic philosopher, and theologian. </span></i><i><span style=\"font-weight: 400;\">The principle states that \"</span></i><b><i>Entities should not be multiplied unnecessarily.</i></b><i><span style=\"font-weight: 400;\">\" </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also known as The Law Of Parsimony which suggests we investigate the simplest ideas first.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-2896\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/table_pic.jpg\" alt=\"\" width=\"606\" height=\"328\" /></span>\n\n<span style=\"font-weight: 400;\">As Biomechanics Coaches our tried and tested system of ‘exercise’ prescription is based on this concept to utilise the least intrusive interventions first. Then with our evidence based assessment skills, we analyse what changes occur prior to prescribing the next intervention. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having this really simple, logical approach to designing a movement programme for our clients gives us a huge increase in confidence KNOWING that we are following the least intrusive/safest first problem-solving principles. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When something doesn’t change or improve we then prescribe the next option or ‘level’ within our system. Alongside all of this is clarity of our individual remit. With such a broad spectrum of practitioner skills joining our academy, Biomechanics Coaches come from every kind of movement profession. This ranges from PT’s, Pilates &amp; Yoga Teachers, to manual therapists, podiatrists and other clinicians. So while many of us are becoming hybrids there should still be a clear parameter of the scope of service we individually offer.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hopefully you, like me, would all agree with most, if not all, of the statements below with regards to exercise prescription, treatment or intervention for our clients…</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">The most useful statement of the principle for scientists is..</span></i>\n\n<i><span style=\"font-weight: 400;\">\"</span></i><b><i>when you have two competing theories that make exactly the same predictions, the simpler one is the better</i></b><i><span style=\"font-weight: 400;\">.”</span></i>\n\n<i><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-3006\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.40.22.png\" alt=\"\" width=\"569\" height=\"376\" /></span></i>\n\n<i><span style=\"font-weight: 400;\">Occam\'s razor is often cited in </span></i><i><span style=\"font-weight: 400;\">stronger</span></i><i><span style=\"font-weight: 400;\"> forms than Occam intended, as in the following statements. . .</span></i>\n\n<i><span style=\"font-weight: 400;\">\"</span></i><b><i>If you have two theories that both explain the observed facts, then you should use the simplest until more evidence comes along</i></b><i><span style=\"font-weight: 400;\">\"</span></i>\n\n<i><span style=\"font-weight: 400;\">\"</span></i><b><i>The simplest explanation for some phenomenon is more likely to be accurate than more complicated explanations.</i></b><i><span style=\"font-weight: 400;\">\"</span></i>\n\n<i><span style=\"font-weight: 400;\">\"</span></i><b><i>If you have two equally likely solutions to a problem, choose the simplest.</i></b><i><span style=\"font-weight: 400;\">\"</span></i>\n\n<i><span style=\"font-weight: 400;\">\"</span></i><b><i>The explanation requiring the fewest assumptions is most likely to be correct.</i></b><i><span style=\"font-weight: 400;\">\"</span></i>\n\n<i><span style=\"font-weight: 400;\">. . .or in the only form that takes its own advice. . .</span></i>\n\n<i><span style=\"font-weight: 400;\">\"</span></i><b><i>Keep things simple!</i></b><i><span style=\"font-weight: 400;\">”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">The final word is of unknown origin, although it\'s often attributed to Einstein, himself a master of the quotable one liner:</span></i>\n\n<b><i>\"Everything should be made as simple as possible, but not simpler.\"</i></b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So once again I suggest that if you are anything like me and feel like a sponge for this kind of information, yet slightly ‘allergic’ to reading lots of text in one go, check out the audiobook mediums.</span>\n\nAnd, if you would like to find out how we implement this mentality into our Diploma simply <a href=\"http://bit.ly/2svUc5o\" target=\"_blank\" rel=\"noopener\"><strong>Click Here</strong></a>.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"wp-image-3923 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/12/Everything-should-be-made-as-simple-as-possible-but-not-simpler.-Albert-Einstein-1024x1024.jpg\" alt=\"everything-should-be-made-as-simple-as-possible-but-not-simpler-albert-einstein\" width=\"398\" height=\"398\" /></span>\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">References;</span>\n\n<a href=\"https://en.wikipedia.org/wiki/Occam%27s_razor\"><span style=\"font-weight: 400;\">https://en.wikipedia.org/wiki/Occam%27s_razor</span></a>\n\n<a href=\"http://math.ucr.edu/home/baez/physics/General/occam.html\"><span style=\"font-weight: 400;\">http://math.ucr.edu/home/baez/physics/General/occam.html</span></a>\n\n<a href=\"https://science.howstuffworks.com/innovation/scientific-experiments/occams-razor.htm\"><span style=\"font-weight: 400;\">https://science.howstuffworks.com/innovation/scientific-experiments/occams-razor.htm</span></a>\n\n<a href=\"https://www.britannica.com/topic/Occams-razor\"><span style=\"font-weight: 400;\">https://www.britannica.com/topic/Occams-razor</span></a>\n\n<a href=\"https://www.urbandictionary.com/define.php?term=occam%27s%20razor\"><span style=\"font-weight: 400;\">https://www.urbandictionary.com/define.php?term=occam%27s%20razor</span></a>\n\n<a href=\"https://explorable.com/occams-razor\"><span style=\"font-weight: 400;\">https://explorable.com/occams-razor</span></a>\n\n<a href=\"http://lesswrong.com/lw/jp/occams_razor/\"><span style=\"font-weight: 400;\">http://lesswrong.com/lw/jp/occams_razor/</span></a>\n\n<a href=\"https://www.youtube.com/watch?v=9XEA3k_QIKo\"><span style=\"font-weight: 400;\">https://www.youtube.com/watch?v=9XEA3k_QIKo</span></a>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>','Ever Heard Of Occam’s Razor ?','','draft','closed','closed','','ever-heard-of-occams-razor','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=3920',0,'post','',0),(3921,0,'2017-12-11 12:18:15','2017-12-11 12:18:15','','find-us-at-homebrewing-com','','inherit','closed','closed','','find-us-at-homebrewing-com','','','2017-12-11 12:18:15','2017-12-11 12:18:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/12/Find-us-at-homebrewing.com_-1.png',0,'attachment','image/png',0),(3923,0,'2017-12-11 12:19:02','2017-12-11 12:19:02','','everything-should-be-made-as-simple-as-possible-but-not-simpler-albert-einstein','','inherit','closed','closed','','everything-should-be-made-as-simple-as-possible-but-not-simpler-albert-einstein','','','2017-12-11 12:19:02','2017-12-11 12:19:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/12/Everything-should-be-made-as-simple-as-possible-but-not-simpler.-Albert-Einstein-1.jpg',0,'attachment','image/jpeg',0),(3947,3,'2017-12-19 02:31:54','2017-12-19 02:31:54','<h2><span style=\"font-weight: 400;\">Preparation &amp; Capacity - The Missing Link </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok, would you like to hear one of our academy secrets?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is a phase PT’s are missing that needs to be added PRIOR to the warm up!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes BEFORE the warm up!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Look, you keep asking us “</span><i><span style=\"font-weight: 400;\">why does my client move that badly</span></i><span style=\"font-weight: 400;\">?” or “</span><i><span style=\"font-weight: 400;\">why do they move that way?</span></i><span style=\"font-weight: 400;\">” or “ </span><i><span style=\"font-weight: 400;\">why can’t they do those moves like everyone else</span></i><span style=\"font-weight: 400;\">?”. Your instinct is telling you the answer to that question…’</span><i><span style=\"font-weight: 400;\">because they sit on their backsides….because they have a sedentary job...because they have been injured</span></i><span style=\"font-weight: 400;\">..’</span>\n<h3><span style=\"font-weight: 400;\"><img class=\"aligncenter  wp-image-3006\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.40.22.png\" alt=\"\" width=\"416\" height=\"275\" /></span></h3>\n<h3><span style=\"font-weight: 400;\">BUT </span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The BIGGER question is ‘</span><i><span style=\"font-weight: 400;\">What is the missing link that helps me, help them move better BEFORE I warm them up</span></i><span style=\"font-weight: 400;\">?”..right?!!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We recently did a live webinar to share the answer to this question and WOW it was stunning to have doctors, PTs, S&amp;C Coaches, Manual Therapists, Pilates Teachers and they were all asking the same questions!</span>\n\n<a href=\"https://events.genndi.com/replay/169105139238457911/f4f41782f3/0/0\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3950\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-19-at-02.28.14-1024x600.png\" alt=\"screen-shot-2017-12-19-at-02-28-14\" width=\"429\" height=\"251\" /></a>\n\n<i><span style=\"font-weight: 400;\">How do I reduce risk?</span></i>\n\n<i><span style=\"font-weight: 400;\">How do I improve movement?</span></i>\n\n<i><span style=\"font-weight: 400;\">How do I KNOW I am improving function?</span></i>\n\n<i><span style=\"font-weight: 400;\">How do I know I am prescribing the right exercises?</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This phase of training is what we call ‘Preparation &amp; Capacity’ and is based upon 25 yrs of data collection showing us that muscles, joints and nerves all affect each other. So we developed a system that provides techniques to affect each system and improve basic function and movement capacity. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The initial series of techniques, our start point (remember the <a href=\"https://www.biomechanicseducation.com/ever-heard-of-occams-razor/\" target=\"_blank\" rel=\"noopener\">Occam’s Razor blog</a>?), consists of anti-spasm exercises based on Ribot-Ciscar’s work (Jiri Dvorak had the same results from similar studies) using a specific type of muscle energy technique. This is the safest, least intrusive and is actually superbly effective at improving muscle function.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The aim of this first phase of preparation restores an individual’s capacity around the pelvis and spine so that they are level and moving freely, or correctly, for that individual.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These are modified from much of what is seen in our industry today, which is ‘combined’ movements where the body is effectively allowed to </span><i><span style=\"font-weight: 400;\">cheat</span></i><span style=\"font-weight: 400;\"> to produce the required movement. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you would like to understand our system in more detail and join an amazingly robust and fast-growing community of Biomechanics Coaches there is a multitude of platforms for you to gain access to this first phase and further phases to work towards becoming a Biomechanics Coach with our Diploma.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here at Biomechanics Education, we are so excited about our 2017 success at getting the nation moving more freely through our academy learners that we wanted to celebrate the end of the year with a special gift to all those secretly wishing they could grab a seat on our workshops in 2018…</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><b>Click Here</b></a><span style=\"font-weight: 400;\"> so you don’t miss out</span>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>','Preparation & Capacity - The Missing Link','','draft','closed','closed','','preparation-capacity-the-missing-link','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=3947',0,'post','',0),(3948,0,'2017-12-19 02:07:01','2017-12-19 02:07:01','','19-12-17-preparation-and-capacity','','inherit','closed','closed','','19-12-17-preparation-and-capacity','','','2017-12-19 02:07:01','2017-12-19 02:07:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/12/19.12.17-Preparation-and-capacity-1.png',0,'attachment','image/png',0),(3950,0,'2017-12-19 02:30:06','2017-12-19 02:30:06','','screen-shot-2017-12-19-at-02-28-14','','inherit','closed','closed','','screen-shot-2017-12-19-at-02-28-14','','','2017-12-19 02:30:06','2017-12-19 02:30:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-19-at-02.28.14-1.png',0,'attachment','image/png',0),(3953,3,'2017-12-25 23:30:45','2017-12-25 23:30:45','<span style=\"font-weight: 400;\">My core values are something I am </span><i><span style=\"font-weight: 400;\">extremely</span></i><span style=\"font-weight: 400;\"> aware</span> <span style=\"font-weight: 400;\">of all the time.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of Biomechanics Education’s strongest core values is; </span>\n\n<i><span style=\"font-weight: 400;\">Our Responsibility To Our Learners</span></i><span style=\"font-weight: 400;\">.</span>\n\n<span style=\"font-weight: 400;\">We always want to look after those in the Biomechanics Education academy ‘family’ and maybe this business is in fact, a second family? It certainly feels like it because of the strong bond I personally feel to each and every learner that sets foot into one of our classrooms. Along with our passion for the provision of a high level service with support beyond their training, there is certainly a huge sense of connection.</span>\n\n<img class=\"aligncenter wp-image-2847\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/IMG_0101-1024x1024.jpg\" alt=\"\" width=\"309\" height=\"309\" />\n<h3><b>\nUnlike Any Other JOB</b></h3>\n<span style=\"font-weight: 400;\">\nBiomechanics Education is something I think about it every single day, I talk about it all day and in fact, my whole life revolves around the company and what it is doing, not only for the individuals who enter the academy but also for the entire industry and of course the wider population.</span>\n<h3><b>\nHelping the Nation Move More Freely</b></h3>\n&nbsp;\n<h3><img class=\"aligncenter wp-image-3957\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/12/20689649_10154903127672081_9002171364846902606_o-1024x1024.jpg\" alt=\"20689649_10154903127672081_9002171364846902606_o\" width=\"309\" height=\"309\" /></h3>\nYou see WE are together<i></i><span style=\"font-weight: 400;\"> helping the nation to more freely with less pain while we also increase movement skill and performance levels for all abilities!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WOW, now that’s something special right? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If I were to get philosophical right now and be really honest about what I would like to see as a legacy, the reason that I was here, my reason for being, my point of existence ….well this is what happens when you become middle-aged...gotta think HUGE right..?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">iMoveFreely®  free on the NHS!</span>\n\n<span style=\"font-weight: 400;\">Biomechanics Coaches&#x2122; top of the list on medical insurance company policies </span>\n\n<span style=\"font-weight: 400;\">Biomechanics Coaches&#x2122; top of the list for ALL referrals to signpost clients/patients to the right specialist.</span>\n\n<span style=\"font-weight: 400;\">iMoveFreely®  on Aeroplane TV screens in front of your chair</span>\n\n<span style=\"font-weight: 400;\">GB Olympians lying down to do 4 sign by the track prior to the race</span>\n\n<span style=\"font-weight: 400;\">Soap stars doing their pec minor release over the dinner table …..ok ok ok maybe I\'m getting carried away here…but maybe not….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">..ok SERIOUSLY</span>\n\n&nbsp;\n<h3><b>Gotta Dream Big</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Dream BIG people because it is such a short time we each are here so do what you love, make a difference, show you care, don’t hold back and please spread the word. </span>\n<h3></h3>\n<h3>We can do this together!</h3>\n&nbsp;\n\n<span style=\"color: #999999;\">If you would like to find out more about Biomechanics Education and help spread the amazing work that we do, simply <strong><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Click Here</a></strong>. </span>\n\n<img class=\"aligncenter size-full wp-image-2896\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/table_pic.jpg\" alt=\"\" width=\"787\" height=\"426\" />\n<div class=\"grammarly-disable-indicator\"></div>','How Strong Are Your Core Values?','','draft','closed','closed','','how-strong-are-your-core-values','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=3953',0,'post','',0),(3954,0,'2017-12-24 17:40:29','2017-12-24 17:40:29','','certificate','','inherit','closed','closed','','certificate','','','2017-12-24 17:40:29','2017-12-24 17:40:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/12/certificate-1.png',0,'attachment','image/png',0),(3957,0,'2017-12-24 17:53:21','2017-12-24 17:53:21','','20689649_10154903127672081_9002171364846902606_o','','inherit','closed','closed','','20689649_10154903127672081_9002171364846902606_o','','','2017-12-24 17:53:21','2017-12-24 17:53:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/12/20689649_10154903127672081_9002171364846902606_o-1.jpg',0,'attachment','image/jpeg',0),(3968,3,'2018-01-02 08:09:19','2018-01-02 08:09:19','<h3><b>So 2018 is here and you’re left wondering where the hell 2017 went…?</b></h3>\nDid you make any new year resolutions for 2018?\n\n<span style=\"font-weight: 400;\">Did you successfully achieve last years resolution?</span>\n\n<span style=\"font-weight: 400;\">Do you feel you could have done more in 2017?</span>\n\n<span style=\"font-weight: 400;\">Personally, I have always wondered why people wait for Dec 31st to create change when changes can be made all year, probably to better effect too!</span>\n\n<span style=\"font-weight: 400;\">Would 1% be a lot to ask of yourself?</span>\n\n&nbsp;\n<h3><b>What Could You Do 1% Better Today? </b></h3>\n&nbsp;\n\n<a href=\"http://kaizen-project.co.uk/events/the-kaizen-project/\"><b>Kaizen</b></a><span style=\"font-weight: 400;\"> is a Japanese term meaning </span><i><span style=\"font-weight: 400;\">Continual Improvement </span></i><span style=\"font-weight: 400;\">and I believe this is a great concept to keep in mind when settings new year resolutions or goals at any time of year, particularly big goals. Let me give you one example;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I am never going to be a competitive Olympic lifter, it is just not something that appeals or motivates me, but anyone who has attempted a snatch or clean will appreciate it is not an exercise or movement that immediately comes naturally nor quickly. The technical aspect is far too complex and inevitably requires numerous adjustments to each segment of the movement that can only be done over time. The simple laws of proprioception, gravity &amp; load in this high-speed movement require such precision to avoid failure that it would be impossible to nail it in a few weeks let alone one or two sessions. There is so much to learn and much of it will and should eventually become subconscious, for example;</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Set up</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Hook grip</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Foot position</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Start position </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">First pull</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Second pull</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">High Hang</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Low Hang</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Triple extension</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The drop under the bar</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Locking out the arms</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Hitting the receive position </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Rising out of the bottom position </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Maintaining the overhead or front rack position to complete the ascent</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Throwing the bar so it doesn’t fall on you or anyone else!</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">However small goals can encourage every session in the gym, even if it is just small tweaks to each part of the movement. Consistency is key to anything and over time things really do add up. </span>\n\n<span style=\"font-weight: 400;\">Taking the stairs instead of the lift, parking at the back of the car park furthest away from the door so you have further to walk, eating just one piece of chocolate instead of the whole 200g bar, having smaller glasses of wine, walking to the shop instead of driving, meditating for 10 minutes is better than not at all….you know what I am talking about, right?!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now, do you remember in our basic PT or Massage training the idea of SMART GOALS is often introduced to help us to help our clients when goal setting?</span>\n\n<span style=\"font-weight: 400;\">Small, Measurable, Achievable, Relevant, Timely goals. This concept fits perfectly with The Kaizen Project, however, the question is...</span>\n\n<img class=\"aligncenter wp-image-3978\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/smart-goals1-1-1024x507.jpg\" alt=\"smart-goals1-1\" width=\"497\" height=\"246\" />\n<h3><b>Do You Create (SMART) Goals In ALL Aspects Of Your Own Life?</b></h3>\n&nbsp;\n\n<b>Once Again, Ask Yourself...</b>\n\n<b>What Could You Do 1% Better Today?\n</b>\n<h3></h3>\n<span style=\"font-weight: 400;\">Now you may have heard me mention the word</span> <a href=\"http://kaizen-project.co.uk\"><b>Kaizen</b></a> <span style=\"font-weight: 400;\">a lot recently in relation to </span><a href=\"http://kaizen-project.co.uk\"><b>The Kaizen Project</b></a><span style=\"font-weight: 400;\"> and after spending several hours, some months ago, in the same room as Ben Coomber, Mike Grice, Stephen Aish and Amber Keats, as a group we felt this word summed up the concept of our project perfectly. </span>\n\n<span style=\"font-weight: 400;\">We all feel very strongly about continuous learning, giving you nuggets of great information that you can actually apply with your clients immediately to get results. We do this via social media, our workshops, events, webinars and our blogs and emails. </span>\n\n<span style=\"font-weight: 400;\">We all feel very strongly about influencing the entire nation to move better, feel less pain, eat healthier, be more body/mind aware, understand business and to understand simple mindset techniques for a happier outlook. </span>\n\n<span style=\"font-weight: 400;\">The problem is we can’t do it alone and so we are reaching out to professionals like you so that together we can achieve a healthier nation. People like you who are committed to educating and supporting your clients and their well being….yes YOU..!</span>\n<h3></h3>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Human Movement Geeks </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Nutrition Fanatics</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Mindset Believers </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Therapy Lovers...</span></li>\n</ul>\n&nbsp;\n\n<b>...Are YOU One, Or More, Of These?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YOU ARE…!?!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">AWESOME so why not make a 1% change to your day TODAY by clicking this link to reserve your place; </span>\n\n<a href=\"http://kaizen-project.co.uk/events/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\"><b>The Kaizen Project</b></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THEN when you join us Feb 25th, 2018 in Northampton for </span><a href=\"http://kaizen-project.co.uk/events/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\"><b>The Kaizen Project</b></a><span style=\"font-weight: 400;\"> you will gain AT LEAST 1% improvement from every session you attend.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THEN you go home and apply what you learned from each session to your business/client’s sessions...this is continuous learning.</span>\n\n&nbsp;\n\n<b>Finally, Ask Yourself Regularly...</b>\n\n<b>What Could YOU Do 1% Better Today?</b>','What Could You Do 1% Better Today?','','draft','closed','closed','','so-2018-is-here','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=3968',0,'post','',0),(3969,0,'2018-01-02 08:04:47','2018-01-02 08:04:47','','find-us-at-homebrewing-com','','inherit','closed','closed','','find-us-at-homebrewing-com-2','','','2018-01-02 08:04:47','2018-01-02 08:04:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Find-us-at-homebrewing.com_-1.png',0,'attachment','image/png',0),(3970,0,'2018-01-02 08:05:31','2018-01-02 08:05:31','','find-us-at-homebrewing-com-2','','inherit','closed','closed','','find-us-at-homebrewing-com-2-2','','','2018-01-02 08:05:31','2018-01-02 08:05:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Find-us-at-homebrewing.com-2-1.png',0,'attachment','image/png',0),(3978,0,'2018-01-02 10:07:51','2018-01-02 10:07:51','','smart-goals1-1','','inherit','closed','closed','','smart-goals1-1','','','2018-01-02 10:07:51','2018-01-02 10:07:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/smart-goals1-1-1.jpg',0,'attachment','image/jpeg',0),(4004,3,'2018-01-09 01:43:40','2018-01-09 01:43:40','<b>Do You Make Assumptions?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Often I hear and see people make assumptions in our industry.</span>\n\n<span style=\"font-weight: 400;\">Articles I read are so often written based on assumptions, lacking context for clarity.</span>\n\n<span style=\"font-weight: 400;\">Within our academy, we discuss the idea that the body is a master of compensation. Now, this is for a variety of reasons &amp; also in a variety of ways.</span>\n\nWe use words such as those found below to describe these compensations. Words like...\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sub-clinical Muscle Spasm </span>\n\n<span style=\"font-weight: 400;\">Immobility </span>\n\n<span style=\"font-weight: 400;\">Tightness </span>\n\n<span style=\"font-weight: 400;\">Inhibition </span>\n\n<span style=\"font-weight: 400;\">Instability </span>\n\n<span style=\"font-weight: 400;\">Weakness </span>\n\n...to name a few.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now, MOST professionals know how to address the above with the various interventions...</span>\n\n<span style=\"font-weight: 400;\">Anti spasm</span>\n\n<span style=\"font-weight: 400;\">Mobilise </span>\n\n<span style=\"font-weight: 400;\">Stretch </span>\n\n<span style=\"font-weight: 400;\">Un-inhibit</span>\n\n<span style=\"font-weight: 400;\">Stabilise </span>\n\n<span style=\"font-weight: 400;\">Strengthen </span>\n\n&nbsp;\n\nThese are all techniques that are all relatively simple to do and understand, right?\n\n&nbsp;\n\n<b>So What\'s The Problem?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What is it that makes these interventions so controversial, problematic and debatable, not only articles but also in practice?</span>\n\nWhy are many still making the error of assumption?\n\nSometimes it isn’t obvious and this makes our job tough when trying to truly objectively KNOW which problem is presenting.\n\nIn other words, the question is…\n\n<span style=\"font-weight: 400;\">is ‘it’ WEAK or INHIBITED?</span>\n\n<span style=\"font-weight: 400;\">is ‘it’ TIGHT or IN SPASM?</span>\n\n<span style=\"font-weight: 400;\">is ‘it’ UNSTABLE or WEAK?</span>\n\n<span style=\"font-weight: 400;\">is ‘it’ INHIBITED or TIGHT?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Each of these examples can easily be mistaken for another and yet the corrective techniques could be contraindicating should the wrong one be prescribed. For example; if you try to stretch a muscle ASSUMING it is TIGHT when in fact it is inhibited or in a protective spasm, it could respond by ‘holding on’ even more.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A common example might be the appearance of ‘tight’ hamstrings that are ‘held under tension’ so to speak. Quite often the sciatic nerve can be ‘tethered’ by dysfunction somewhere else, this creates nerve tension. Therefore the hamstrings ‘hold on’ to a ‘tense’ position due to their close relationship with the sciatic nerve. This is because they are trying to protect the nerve which is lacking its full capacity. </span>\n\n<span style=\"font-weight: 400;\">Now consider if you tried to \'stretch\' this apparently ‘tight’ hamstring..!?</span>\n\n&nbsp;\n\n<b>So What Should We Do?? </b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Obviously having a testing system that identifies which dysfunction is presenting would make absolute sense, wouldn’t it?</span>\n\nIf you do not have a testing system available to you then it is probably prudent to prescribe the least contraindicating technique first to reduce risk.\n\n<span style=\"font-weight: 400;\">Remember <a href=\"https://www.biomechanicseducation.com/ever-heard-of-occams-razor/\" target=\"_blank\" rel=\"noopener\">Occum’s Razor</a>?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">An example of a safe intervention would be the low grade 20% muscle energy technique researched by <a href=\"https://www.biomechanicseducation.com/1333-2/\" target=\"_blank\" rel=\"noopener\">Ribot-Ciscar,1991</a>. This has been proven to have huge success at improving muscle function especially when something like stretching hasn’t shown any benefit.</span>\n\n&nbsp;\n\n<b>Your 7 Tips:</b>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Don’t assume anything! </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Get a movement baseline before &amp; after using an intervention</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Use the least intrusive intervention first</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Discuss with your peers for new ideas and viewpoints</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Invest in learning an evidence-based objective testing system </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Monitor your client\'s movement progress closely using photos, video &amp; clear benchmarks.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Learn, trust and encourage even the smallest and simplest of techniques, like low-grade anti spasms - Trust me, they can make all the difference!</span></li>\n</ul>\n&nbsp;\n\n<b>What Are Your Thoughts?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">EMAIL ME rachel@biomechanicseducation.com</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you would like to learn the evidence-based exercises we prescribe to help improve function, the safest on the planet, then simply </span><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><b>Click Here</b></a><span style=\"font-weight: 400;\">.</span>','Do You Make Assumptions?','','draft','closed','closed','','do-you-make-assumptions','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=4004',0,'post','',0),(4012,0,'2018-01-09 01:37:43','2018-01-09 01:37:43','','which-came-first','','inherit','closed','closed','','which-came-first-2','','','2018-01-09 01:37:43','2018-01-09 01:37:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Which-Came-First-1.png',0,'attachment','image/png',0),(4022,0,'2018-01-09 11:37:56','2018-01-09 11:37:56','','biomechanics-education-logo-for-mobile','','inherit','closed','closed','','biomechanics-education-logo-for-mobile-2','','','2018-01-09 11:37:56','2018-01-09 11:37:56','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Education-Logo-For-Mobile-1.jpg',0,'attachment','image/jpeg',0),(4106,3,'2018-01-15 19:18:55','2018-01-15 19:18:55','<h2>What Exactly Is Intrinsic Biomechanics?</h2>\r\n<span data-contrast=\"auto\">At Biomechanics Education, we often encounter questions about the type of biomechanics we specialise in. This blog aims to clarify this by defining key terms and concepts related to our field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Definitions</h3>\r\n<span style=\"font-weight: 400;\">The study of the mechanical laws relating to the movement or structure of living organisms.</span>\r\n\r\n<strong><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW255872933 BCX8\"><strong><span class=\"SCXW255872933 BCX8\"> </span></strong><br class=\"SCXW255872933 BCX8\" /></span><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">The study of mechanical laws relating to the movement or structure of living organisms.</span></span><span class=\"EOP SCXW255872933 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">Extrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW13749985 BCX8\"><strong><span class=\"SCXW13749985 BCX8\"> </span></strong><br class=\"SCXW13749985 BCX8\" /></span><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">This involves analysing movement performance using advanced machinery like </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW13749985 BCX8\">isokinetics</span><span class=\"NormalTextRun SCXW13749985 BCX8\"> and kinematics to understand forces, loads, and levers. Practically, it includes observing and correcting client movements using verbal and visual cues.</span></span><span class=\"EOP SCXW13749985 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-4110\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/ankleinvsupine.jpg\" alt=\"ankleinvsupine\" width=\"318\" height=\"270\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><strong><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">Intrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW41082360 BCX8\"><br class=\"SCXW41082360 BCX8\" /></span><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">This focuses on understanding the internal neuro-musculoskeletal system, which creates external movements. It examines what happens inside the body to produce the movements we see externally.</span></span></span><span style=\"font-weight: 400;\"><span class=\"EOP SCXW41082360 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></span><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4111\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Picture1-1.png\" alt=\"picture1-1\" width=\"376\" height=\"270\" /></span></span>\r\n<h2>iMoveFreely® (IMF) Programme</h2>\r\n<span data-contrast=\"auto\">The iMoveFreely® programme is a system of low-intensity exercises designed to prepare the body for movement, reduce injury risk, and enhance performance. Initially exclusive to high-level athletes, it is now recognised as fundamental for anyone seeking to move more freely. The programme consists of three phases:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"wp-image-4114 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3491-1024x768.jpg\" alt=\"img_3491\" width=\"354\" height=\"266\" /></span></span></h3>\r\n<h3><span style=\"text-decoration: underline;\">Preparation and Capacity</span></h3>\r\n<span data-contrast=\"auto\">This phase addresses the interconnectedness of muscles, joints, and nerves with techniques that:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Use specific muscle energy techniques to reduce spasms (based on Ribot-Ciscar and Jiri Dvorak’s research).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Incorporate nerve mobilization techniques (based on David Butler’s work).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Apply joint mobilisation techniques to improve movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"297\" height=\"297\" /></span>\r\n\r\n<span data-contrast=\"auto\">The goal is to restore capacity around the pelvis, spine, and shoulders, ensuring they move freely and correctly.</span>\r\n<h2><span style=\"text-decoration: underline;\">Stability and Control</span></h2>\r\n<span data-contrast=\"auto\">Building on the first phase, this stage focuses on:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Aligning the spine and enhancing capacity.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Reducing risk when performing core strength exercises.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span data-contrast=\"auto\">Using a three-step approach based on research by Haines, McGill, Matthews, and Cholwewicki to stabilize and control the pelvis, spine, and shoulders.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span><span data-contrast=\"auto\">This phase prepares clients for more advanced movements, promoting overall stability and control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4115\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1024x576.jpg\" alt=\"romanian-deadlifts-training-the-other-half-of-your-leg-header-v2\" width=\"368\" height=\"207\" /></span></span>\r\n<h3><span style=\"text-decoration: underline;\"> Function &amp; Performance</span></h3>\r\n<span data-contrast=\"auto\">The final phase strengthens key areas like the pelvis, shoulders, knees, and feet. It involves:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Assessing joint strength ratios.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Considering sport-specific movements and pre-orthotic conditioning.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">This phase aims to reduce injury risk and optimize performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4116\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2.jpg\" alt=\"olympic-lifting-2\" width=\"444\" height=\"283\" /></span></span></h3>\r\n<h2>Biomechanics Education Programmes</h2>\r\n<h3><span style=\"font-weight: 400;\">Biomechanics Coach™ (BC)</span></h3>\r\n<span style=\"font-weight: 400;\">This is an 6-8-month diploma with 4-6 days face to face, a 1hr practical assessment and home study, open to level 3 exercise professionals and above including therapists and coaches with an equivalent level of anatomy knowledge and exercise prescription skills. There are a total of 42 manual and visual assessments based on over 20yrs of research comparing them to isokinetic results for accuracy. BC’s are encouraged and reputed, to have a high level of inter-professional language skills giving them the ability to cross both exercise and therapy worlds while maintaining their professional scope of practice. </span>\r\n<h3><span style=\"font-weight: 400;\">Intrinsic Biomechanics Association (IBA)</span></h3>\r\n<span style=\"font-weight: 400;\">An organisation offering education, support, networking opportunities and encouragement of inter-professional relationships between exercise professionals, sports coaches, therapists, clinicians, podiatrists and any professional working one to one or in group exercise. It is also for those interested in learning and sharing anything that helps us all improve health, function and fitness while reducing injury risk in our clients. The IBA runs 6 annual Discovery Day workshops/webinars that are open to both members (free) and non-members who will pay a small access fee. </span>\r\n<h3><span style=\"font-weight: 400;\">Master Trainer (MT)</span></h3>\r\n<span style=\"font-weight: 400;\">An individual trained to deliver the intrinsic biomechanics education programmes through a licensed Education Provider. Open to BC’s demonstrating teaching and communication skills while pro-actively promoting intrinsic biomechanics education and skills. </span>\r\n<h2>Join Us</h2>\r\n<span data-contrast=\"auto\">Would you like to be part of this fast-growing, highly reputed group of practitioners contributing to improving movement, reducing discomfort, and lowering injury risk?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">YES? </span><a href=\"https://biomechanicseducation.com/courses/cpd-courses/imovefreely/\"><span data-contrast=\"none\">CLICK HERE</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">By joining, you\'ll gain access to a network of professionals and the latest biomechanics education to enhance your practice and client outcomes.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>','What Exactly Is Intrinsic Biomechanics?','','publish','closed','closed','','what-exactly-is-intrinsic-biomechanics','','','2025-01-20 16:01:07','2025-01-20 16:01:07','',0,'https://www.biomechanicseducation.com/?p=4106',0,'post','',0),(4107,0,'2018-01-15 18:57:13','2018-01-15 18:57:13','','what-exactly-is-intrinsic-biomechanics','','inherit','closed','closed','','what-exactly-is-intrinsic-biomechanics-3','','','2018-01-15 18:57:13','2018-01-15 18:57:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/What-exactly-is-Intrinsic-Biomechanics-1.png',0,'attachment','image/png',0),(4108,0,'2018-01-15 18:58:40','2018-01-15 18:58:40','','what-exactly-is-intrinsic-biomechanics-2','','inherit','closed','closed','','what-exactly-is-intrinsic-biomechanics-2','','','2024-09-06 14:54:24','2024-09-06 14:54:24','',4106,'https://biomechanicseducation.com/wp-content/uploads/2018/01/What-exactly-is-Intrinsic-Biomechanics-2-1.png',0,'attachment','image/png',0),(4110,0,'2018-01-15 18:59:48','2018-01-15 18:59:48','','ankleinvsupine','','inherit','closed','closed','','ankleinvsupine','','','2018-01-15 18:59:48','2018-01-15 18:59:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/ankleinvsupine-1.jpg',0,'attachment','image/jpeg',0),(4111,0,'2018-01-15 19:00:01','2018-01-15 19:00:01','','picture1-1','','inherit','closed','closed','','picture1-1','','','2018-01-15 19:00:01','2018-01-15 19:00:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Picture1-1-1.png',0,'attachment','image/png',0),(4112,0,'2018-01-15 19:00:18','2018-01-15 19:00:18','','23279787_145150382772305_2188784676288593920_n','','inherit','closed','closed','','23279787_145150382772305_2188784676288593920_n','','','2018-01-15 19:00:18','2018-01-15 19:00:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n-1.jpg',0,'attachment','image/jpeg',0),(4113,0,'2018-01-15 19:00:42','2018-01-15 19:00:42','','img_3483','','inherit','closed','closed','','img_3483','','','2018-01-15 19:00:42','2018-01-15 19:00:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3483-1.jpg',0,'attachment','image/jpeg',0),(4114,0,'2018-01-15 19:00:44','2018-01-15 19:00:44','','img_3491','','inherit','closed','closed','','img_3491','','','2018-01-15 19:00:44','2018-01-15 19:00:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3491-1.jpg',0,'attachment','image/jpeg',0),(4115,0,'2018-01-15 19:01:43','2018-01-15 19:01:43','','romanian-deadlifts-training-the-other-half-of-your-leg-header-v2','','inherit','closed','closed','','romanian-deadlifts-training-the-other-half-of-your-leg-header-v2','','','2018-01-15 19:01:43','2018-01-15 19:01:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1.jpg',0,'attachment','image/jpeg',0),(4116,0,'2018-01-15 19:01:59','2018-01-15 19:01:59','','olympic-lifting-2','','inherit','closed','closed','','olympic-lifting-2','','','2018-01-15 19:01:59','2018-01-15 19:01:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2-1.jpg',0,'attachment','image/jpeg',0),(4221,3,'2018-01-19 09:10:16','2018-01-19 09:10:16','<p>[vc_row][vc_column][/vc_column][/vc_row]</p>\n','Test Product -01','','inherit','closed','closed','','4219-revision-v1','','','2018-01-19 09:10:16','2018-01-19 09:10:16','',0,'http://www.biomechanicseducation.com/4219-revision-v1/',0,'revision','',0),(4247,0,'2018-01-19 15:18:51','2018-01-19 15:18:51','','allsportsbanner','','inherit','closed','closed','','allsportsbanner','','','2018-01-19 15:18:51','2018-01-19 15:18:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/allsportsbanner-1.jpg',0,'attachment','image/jpeg',0),(4253,0,'2018-01-22 06:54:18','2018-01-22 06:54:18','','Print','','inherit','closed','closed','','print','','','2018-01-22 06:54:18','2018-01-22 06:54:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/all-sportsbanner-1.jpg',0,'attachment','image/jpeg',0),(4377,3,'2018-01-23 01:36:21','2018-01-23 01:36:21','<h2><b>Ever Heard Of The Happiness Baseline?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you ever read one of those stories about a lottery winner who celebrated when they won lots of money, however they then soon discover that the money doesn’t actually increase their happiness long term?</span>\n\n<span style=\"font-weight: 400;\">Their ‘happiness’ goes back to their happiness baseline.</span>\n<h3><img class=\"wp-image-4136 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/hombre-con-dinero-1024x576.jpg\" alt=\"hombre-con-dinero\" width=\"361\" height=\"203\" /><img class=\"wp-image-4134 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Man-Money-Leaving-Wallet-547096873-pathdoc-4096x2885-1024x721.jpg\" alt=\"man-money-leaving-wallet-547096873-pathdoc-4096x2885\" width=\"287\" height=\"202\" /></h3>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n&nbsp;\n<h3><b>So what is the ‘happiness baseline’ exactly?</b></h3>\n<span style=\"font-weight: 400;\">It has been suggested that it is the standard level of happiness we feel, </span><i><span style=\"font-weight: 400;\">most </span></i><span style=\"font-weight: 400;\">of the time, deep within us. Our happiness can rise with something great happening in our lives from simply eating a wonderful, tasty meal to winning a lottery prize. However, it can also drop when something bad happens like we hit a traffic jam to suffering a bereavement.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-4137\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/depresie.jpg\" alt=\"depresie\" width=\"446\" height=\"312\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When things happen it can take us time to process the event and the effects, or even get through to a point of acceptance, so we can then return to our baseline level of happiness. </span>\n\nThis happiness baseline can be moved and elevated or can even drop depending upon how we process what is happening in our lives, how content we feel, what ‘things’ affect our sense of happiness and how we perceive events, loved ones around us and the way we perceive the cards we are dealt in life in general.\n\n&nbsp;\n<h3><b>Here Are 5 Effective Ways To Improve Your Happiness</b> <b>Baseline</b></h3>\n&nbsp;\n<ol>\n<ol>\n 	<li style=\"font-weight: 400;\"><b>Network</b><span style=\"font-weight: 400;\">: Surround yourself with awesome people. This number can be as little as two but can have drastic effects on your mental health and physical state. </span></li>\n 	<li style=\"font-weight: 400;\"><b>Move: </b><span style=\"font-weight: 400;\">This can vary from something as simple as a daily 10 min walk before work to clear your head each day to 3 to 4 times a week gym sessions to have you feeling stronger.</span></li>\n 	<li style=\"font-weight: 400;\"><b>Good Nutrition: <span style=\"font-weight: 400;\">Plenty of water, fresh vegetables and fruit, good lean protein and the appropriate volume of carbs.</span></b></li>\n 	<li style=\"font-weight: 400;\"><b>Think Right:</b><span style=\"font-weight: 400;\"> PMA - Positive mental attitude towards anything can greatly impact your happiness and its baseline!</span></li>\n 	<li style=\"font-weight: 400;\"><b>Purpose:</b><span style=\"font-weight: 400;\"> Have a purpose in all you do! Commit and stay committed until the goal is achieved. Never give up!</span></li>\n</ol>\n</ol>\n<h3><em><span style=\"font-weight: 400;\">Another way to focus on improving your happiness baseline is to </span><span style=\"font-weight: 400;\">find your element</span><span style=\"font-weight: 400;\">...</span></em></h3>\n&nbsp;\n<h3><span style=\"text-decoration: underline;\"><b>Find Your Element!</b></span></h3>\n&nbsp;\n\n<a href=\"https://youtu.be/wX78iKhInsc\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4138\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Mezzanine_126-1024x576.jpg\" alt=\"mezzanine_126\" width=\"416\" height=\"234\" /></span></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Again it comes back to your attitude and purpose. When you find your Element </span><b>(Ken Robinson ‘</b><b><i>The Element</i></b><b>’ is a book recommendation He is also known for the most watched <a href=\"https://youtu.be/wX78iKhInsc\" target=\"_blank\" rel=\"noopener\">TED talk</a>) </b><span style=\"font-weight: 400;\">your purpose or your legacy it becomes everything, Finding your element is finding the thing you are good at AND LOVE doing, then doing it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So much has happened to me over the last couple of years both personally and in business. The most profound thing is the elevation of my happiness baseline </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While I appreciate mine was already a relatively high happiness baseline it has elevated even higher. </span>\n\n<span style=\"font-weight: 400;\">This elevation of the happiness baseline, I believe, comes from gratitude for the people who enrich my life and the experiences I am able to share...let me share those from my </span><b><i>working life</i></b><span style=\"font-weight: 400;\">...</span>\n\n&nbsp;\n\n<b>Martin Haines</b><span style=\"font-weight: 400;\"> changed my perception of myself and my ability which has completely changed my life.</span>\n\n<b>Mike Grice</b><span style=\"font-weight: 400;\"> keeps me inspired to read &amp; learn</span>\n\n<b>Fletch</b><span style=\"font-weight: 400;\"> is like a warm hug each time I think of his companionship</span>\n\n<b>Sam ilelaboye</b><span style=\"font-weight: 400;\"> makes me feel very humble &amp; reminds me of the joy of youth</span>\n\n<b>Chris Wright</b><span style=\"font-weight: 400;\"> always makes me feel positive &amp; instilling confidence</span>\n\n<b>Maxine Crowe</b><span style=\"font-weight: 400;\"> has taught me loyalty to the core</span>\n\n<b>Ben Coomber</b><span style=\"font-weight: 400;\"> restored my faith in partnerships</span>\n\n<b>Steve Aish</b><span style=\"font-weight: 400;\"> lifts me &amp; reminds me of what’s important</span>\n\n<b>Stevie Barr</b><span style=\"font-weight: 400;\"> show commitment &amp; expects nothing in return</span>\n\n<b>Amber Keats</b><span style=\"font-weight: 400;\"> has shown a strength of character I respect and admire</span>\n\n<span style=\"font-weight: 400;\">My amazing </span><b>Team</b><span style=\"font-weight: 400;\"> of Master Trainers are like my family in pursuit of a common purpose &amp; passion</span>\n\n&nbsp;\n\n<b>So What Could YOU Do To Improve Your Happiness Baseline?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Try any of the above ideas and please please please share your thoughts, I always love hearing from you...</span>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><strong><a href=\"http://kaizen-project.co.uk\" target=\"_blank\" rel=\"noopener\">(Click Here)</a></strong></p>\n<a href=\"http://kaizen-project.co.uk\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4140\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/images.png\" alt=\"images\" width=\"483\" height=\"172\" /></a>\n\nIf you have not yet checked out our awesome event arriving early this year, (25th of Feb 2018) <strong><a href=\"http://kaizen-project.co.uk\" target=\"_blank\" rel=\"noopener\">Click Here</a></strong> to save your seat!!!','The Happiness Baseline','','draft','closed','closed','','the-happiness-baseline','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'http://www.biomechanicseducation.com/?p=4377',0,'post','',0),(4399,0,'2018-01-29 11:05:37','2018-01-29 11:05:37','','special-fast-track-3-day-pelvic-spine-biomechanics-workshop','','inherit','closed','closed','','special-fast-track-3-day-pelvic-spine-biomechanics-workshop-2','','','2018-01-29 11:05:37','2018-01-29 11:05:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Special-Fast-Track-3-Day-Pelvic-Spine-Biomechanics-Workshop-1.jpg',0,'attachment','image/jpeg',0),(4593,0,'2018-02-02 09:32:37','2018-02-02 09:32:37','','product_place-holder','','inherit','closed','closed','','product_place-holder','','','2018-02-02 09:32:37','2018-02-02 09:32:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Product_place-holder-1.png',0,'attachment','image/png',0),(4601,0,'2018-02-02 10:32:01','2018-02-02 10:32:01','','','','inherit','closed','closed','','chrome_2018-02-02_10-29-22','','','2018-02-02 10:32:01','2018-02-02 10:32:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/chrome_2018-02-02_10-29-22-1.png',0,'attachment','image/png',0),(4705,0,'2018-02-06 12:13:06','2018-02-06 12:13:06','','imovefreely-instructor','','inherit','closed','closed','','imovefreely-instructor-4','','','2018-02-06 12:13:06','2018-02-06 12:13:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/iMoveFreely®-Instructor-1.jpg',0,'attachment','image/jpeg',0),(4707,0,'2018-02-06 12:18:33','2018-02-06 12:18:33','','','','inherit','closed','closed','','golf-day','','','2018-02-06 12:18:33','2018-02-06 12:18:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/GOLF-DAY-1-1.jpg',0,'attachment','image/jpeg',0),(4709,0,'2018-02-06 12:20:41','2018-02-06 12:20:41','','intrinsic-biomechanics-taster','','inherit','closed','closed','','intrinsic-biomechanics-taster-8','','','2018-02-06 12:20:41','2018-02-06 12:20:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Intrinsic-Biomechanics-Taster-1.jpg',0,'attachment','image/jpeg',0),(4711,0,'2018-02-06 12:22:40','2018-02-06 12:22:40','','bio-assessment','','inherit','closed','closed','','bio-assessment','','','2018-02-06 12:22:40','2018-02-06 12:22:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/BIO-ASSESSMENT-1-1.png',0,'attachment','image/png',0),(4715,0,'2018-02-06 12:26:58','2018-02-06 12:26:58','','low-back-health-workshop','','inherit','closed','closed','','low-back-health-workshop-8','','','2018-02-06 12:26:58','2018-02-06 12:26:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Low-Back-Health-Workshop-2.jpg',0,'attachment','image/jpeg',0),(4717,0,'2018-02-06 12:28:06','2018-02-06 12:28:06','','knee-foot-biomechanics-2-day-workshop','','inherit','closed','closed','','knee-foot-biomechanics-2-day-workshop','','','2018-02-06 12:28:06','2018-02-06 12:28:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Knee-Foot-Biomechanics-2-Day-Workshop-1.jpg',0,'attachment','image/jpeg',0),(4719,0,'2018-02-06 12:33:01','2018-02-06 12:33:01','','shoulder-biomechanics-workshop','','inherit','closed','closed','','shoulder-biomechanics-workshop-5','','','2018-02-06 12:33:01','2018-02-06 12:33:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Shoulder-Biomechanics-Workshop-1.jpg',0,'attachment','image/jpeg',0),(4725,0,'2018-02-06 12:38:14','2018-02-06 12:38:14','','iba-memberhsip','','inherit','closed','closed','','iba-memberhsip','','','2024-09-05 09:17:55','2024-09-05 09:17:55','',39553,'https://biomechanicseducation.com/wp-content/uploads/2018/01/IBA-MEMBERHSIP-1-1.jpg',0,'attachment','image/jpeg',0),(4729,0,'2018-02-06 12:40:39','2018-02-06 12:40:39','','spine-biomechanics-2-day-workshop','','inherit','closed','closed','','spine-biomechanics-2-day-workshop','','','2018-02-06 12:40:39','2018-02-06 12:40:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Spine-Biomechanics-2-Day-Workshop-2.jpg',0,'attachment','image/jpeg',0),(4731,0,'2018-02-06 12:46:18','2018-02-06 12:46:18','','pelvic-biomechanics-2-day-workshop','','inherit','closed','closed','','pelvic-biomechanics-2-day-workshop-5','','','2018-02-06 12:46:18','2018-02-06 12:46:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Pelvic-Biomechanics-2-Day-Workshop-2.jpg',0,'attachment','image/jpeg',0),(4733,0,'2018-02-06 12:52:33','2018-02-06 12:52:33','','iba-discovery-day-workshop','','inherit','closed','closed','','iba-discovery-day-workshop-5','','','2018-02-06 12:52:33','2018-02-06 12:52:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/IBA-Discovery-Day-Workshop-1.jpg',0,'attachment','image/jpeg',0),(4779,3,'2018-02-06 15:33:19','2018-02-06 15:33:19','<h2>gh</h2>\r\n<h2></h2>\r\n<h2>Introduction</h2>\r\nIn the realm of personal training, regardless of the sports or exercises your clients engage in, understanding and optimizing their intrinsic biomechanics is paramount. It serves as a crucial complement to their physiological and functional training, forming the foundation upon which a safe and effective functional training program can be built.\r\n\r\n&nbsp;\r\n\r\n<b><img class=\"aligncenter wp-image-3693\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/seek-a-professional-1.jpg\" alt=\"\" width=\"372\" height=\"248\" /></b>\r\n<h3>Risk Reduction</h3>\r\nInjuries can stem from various factors such as poor technique, inadequate core function, lack of preparation, or limited range of motion in relevant structures. However, one often overlooked aspect is correct biomechanical function. An intrinsic biomechanical screening can unveil flaws in pelvic, spinal, shoulder, knee, and foot function. Additionally, it can detect low-grade muscle spasms that may hinder movement and joint function.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"279\" height=\"279\" /></span>\r\n\r\n&nbsp;\r\n\r\nFor instance, a rotated pelvis leading to a functional leg length discrepancy can predispose individuals to diverse injuries, ranging from lower back pain and knee pain to hamstring strains and shoulder discomfort. By addressing issues like pelvic function through screening, the risk of such injuries can be significantly mitigated.\r\n<h3>Screening Protocols</h3>\r\nIntrinsic biomechanical screening involves assessing various aspects of musculoskeletal and nervous system function. These screens aim to identify potential areas of dysfunction or compensation that could predispose clients to injuries. Some common screening protocols include the 4 Sign Screen &amp; Exercise and techniques like improving squat form with chest release.\r\n<h4>4 Sign Screen &amp; Exercise</h4>\r\nhttps://youtu.be/_Lkur9ZcNXw\r\n<h4>Improve Your Squat with Chest Release</h4>\r\nhttps://youtu.be/544p5UVtFXY\r\n<h4>Want to Learn More?</h4>\r\nIf you\'re eager to deepen your understanding of intrinsic biomechanics and how it can be applied in personal training, consider booking a consultation with us. Our experts can provide tailored guidance and insights to enhance your training programs and minimize injury risks for your clients.','Risk Reduction & Intrinsic Biomechanics','','publish','closed','closed','','risk-reduction-intrinsic-biomechanics','','','2025-01-20 16:03:29','2025-01-20 16:03:29','',0,'http://www.biomechanicseducation.com/?p=4779',0,'post','',0),(4785,0,'2018-02-06 15:32:57','2018-02-06 15:32:57','','screen-shot-2018-02-06-at-15-32-25','','inherit','closed','closed','','screen-shot-2018-02-06-at-15-32-25','','','2024-09-05 10:14:22','2024-09-05 10:14:22','',4779,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Screen-Shot-2018-02-06-at-15.32.25-1.png',0,'attachment','image/png',0),(4791,3,'2018-02-06 15:36:36','2018-02-06 15:36:36','<span style=\"font-weight: 400;\">The skills of the personal trainer have increased dramatically over recent years.  The demand of their clients has driven their development down paths that hadn’t previously been considered.  Clients generally go to personal trainers to get fitter or lose weight, but as consumers have become more intelligent, sophisticated and more demanding, so their needs have evolved.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now clients will commonly expect you to provide ‘some exercises for my back, as it’s a bit sore today’.  Also, you will hear them ask for advice and exercises for a knee problem they felt while training for example.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This evolving role will likely increase further as the credit crunch escalates.  This will likely result in people being even less likely to want to spend extra money on seeing a health professional for what they perceive to be a ‘niggle’ and not want to go to the expense or hassle of seeing anyone else.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As personal training qualifications develop, we must be careful here that we don’t train ‘jack-of-all-trades’ who know only enough to be dangerous, but with the new methods of screening coming up like functional and biomechanical screening, there is much that personal trainers can do to help in a very real way while retaining their professional integrity and not becoming ‘pseudo-physios’. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The body is an integrated system, each of its component parts links together to provide coordinated movement as we move in our daily lives.  Functional training helps us prepare each unit for these tasks and engrains the correct movement patterns that our brains are used to rather than by training ‘muscles’ as we used to a few years ago.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Functional training has its origins in rehabilitation and has been around for 40 years or more. In this time we have established that it can help your client’s performance and preparation for their common tasks, and possibly also reduce their risk of injury.    </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over the time that functional training has been around in rehabilitation, we have found that biomechanical screening is a critical precursor to functional screening and functional training, otherwise the foundations for the movement patterns can be flawed and although they may cosmetically look OK, intrinsically the body can be working hard to compensate for flaws in the system that functional screening doesn’t pick up.</span>\n\n<img class=\"aligncenter size-large wp-image-1339\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/10/IMG_3647-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\n\n<span style=\"font-weight: 400;\">As the functional concepts start to become more widely accepted in fitness and conditioning, it is important to recognise that the biomechanical screening has not yet followed into these arenas.  Functional and biomechanical screening and training are very important aspects of an overall conditioning programme for any sport or activity and are complementary in every way. For example, there are many people who pass a functional screen, yet fail a biomechanical screen.  They detect different factors, both of which are important to the trainer.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Specifically, we need to develop our understanding of nerve biomechanics and the biomechanics of specific joints, like the pelvis, spine, shoulder and knee.  Once we understand these principles and how to screen our clients with them in mind, we can prescribe very precise exercises that relate specifically to their problems and goals.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once these biomechanical issues have been resolved then functional training or any other form of training you may wish to do has more chance of being successful and there is less risk of your client becoming injured.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ultimately as a trainer, you should specialise in certain areas, and you should never stop learning. However, as a trainer, you take a client through some form of movement in every session so your understanding of how they move and why they move like they do need to be at the top of that list. </span>\n\n&nbsp;\n\nThe trainer that stops learning will soon be obsolete. Why? Because the trainers that do evolve will be able to get their clients better results. Clients will flock to them, whilst the others are left behind.\n\nEvolve or Become Obsolete… It’s your choice!\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To learn all about biomechanics screening why not look at our flagship programme the Biomechanics Coach Diploma?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Movement analysis made easy</span>\n\n<span style=\"font-weight: 400;\">Gain confidence </span>\n\n<span style=\"font-weight: 400;\">Stand out from your PT colleagues</span>\n\n<span style=\"font-weight: 400;\">Get instant results </span>\n\n<span style=\"font-weight: 400;\">Increase your fees</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">August 2018 intake is open for bookings &lt;&lt;HURRY CLICK HERE&gt;&gt; </span></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Not ready to commit to the full diploma?</span>\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Take a look at our 1 day workshop Roadshow &lt;&lt;HERE&gt;&gt;</span></a>','As A Personal Trainer You Either Evolve Or You Become Obsolete…. What Will You Do?','','draft','closed','closed','','as-a-personal-trainer-you-either-evolve-or-you-become-obsolete-what-will-you-do','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'http://www.biomechanicseducation.com/?p=4791',0,'post','',0),(4793,0,'2018-02-06 15:36:21','2018-02-06 15:36:21','','screen-shot-2018-02-06-at-15-35-57','','inherit','closed','closed','','screen-shot-2018-02-06-at-15-35-57','','','2018-02-06 15:36:21','2018-02-06 15:36:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Screen-Shot-2018-02-06-at-15.35.57-1.png',0,'attachment','image/png',0),(4927,0,'2018-02-08 08:16:21','2018-02-08 08:16:21','','all-sports-banner-grey','','inherit','closed','closed','','all-sports-banner-grey','','','2018-02-08 08:16:21','2018-02-08 08:16:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/all-sports-banner-grey-1.jpg',0,'attachment','image/jpeg',0),(5073,0,'2018-02-09 10:38:49','2018-02-09 10:38:49','','logosmall','','inherit','closed','closed','','logosmall-2','','','2018-02-09 10:38:49','2018-02-09 10:38:49','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/logosmall-1.jpg',0,'attachment','image/jpeg',0),(5131,3,'2018-02-12 11:37:00','2018-02-12 11:37:00','<h2><b>2 Important Lessons About Yourself And How You Train</b></h2>\n<span style=\"font-weight: 400;\">Did you ever wish you had a body part like someone, Arnold’s biceps perhaps? Or Gerrard\'s abs in the film ‘300’? The part of your body you like the least can be a subconscious or conscious focal point in our self critique and we can be so hard on ourselves!</span>\n\nIn my younger years Christie Brinkley was my idol....(yes that was a while ago for those who have never heard of her!).....or rather I fantasised about having legs like hers; long, slim, THE inner thigh ‘gap’, slender ankles and smooth soft skin. My own? Well, they were just HUGE, in my eyes!\n\nNow I was a girl who never wore dresses or skirts because of my ‘big’ legs. I was a girl who didn’t feel feminine because of the size of my legs. In my head, my legs weren’t the ‘norm’.\n\nWhat I hadn’t realised was the legs I had were actually athletic and muscular, and in my younger years, this was much more unique than it is today. Having begun to lift weights in my early 20’s this meant my ‘dancer’ legs developed further with even more muscular curves.\n\n<span style=\"font-weight: 400;\">I spent 15 years distance running with much of my time in running pants or running tights. What genuinely stunned me was the amount of attention my legs would get, and I mean from all sorts of people!</span>\n\n&nbsp;\n\n&nbsp;\n<h3><b>Lesson No 1 - You Cannot Change Your Genetic Make-Up</b></h3>\n&nbsp;\n\n<img class=\"wp-image-4221 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/02/Christie-Brinkley-1.jpg\" alt=\"Christie Brinkley\" width=\"324\" height=\"479\" />\n\n<span style=\"font-weight: 400;\">The first important lesson I learned quite early on was that you cannot change your genetic makeup, you certainly cannot easily change your basic shape (ask any drug-free bodybuilder), in fact, no one can have Christie Brinkley legs except for Christie Brinkley!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In fact, if you haven\'t ever heard of her, here she is.</span>\n\n&nbsp;\n\nYou are YOU! Be the best version of YOU!\n\n&nbsp;\n<h3><b>Lesson No 2 - Stop Focusing On Aesthetics</b></h3>\n<span style=\"font-weight: 400;\">The second lesson I learned was using health, fitness and wellness for goal setting over aesthetics. This, in my opinion, gives a far higher chance to feel successful and, chances are, the aesthetics follow anyway. </span>\n\n<span style=\"font-weight: 400;\">The profound moment for me was when I received a ‘backhanded’ compliment from a male friend, who is also a football fan. “</span><i><span style=\"font-weight: 400;\">Wow, you have legs like Stuart Pearce</span></i><span style=\"font-weight: 400;\">!” “</span><i><span style=\"font-weight: 400;\">No</span></i><span style=\"font-weight: 400;\">..” I said “ …</span><i><span style=\"font-weight: 400;\">these are MY legs</span></i><span style=\"font-weight: 400;\">”.</span>\n\n<span style=\"font-weight: 400;\">This is the same for your Intrinsic Biomechanics - you have what you have and for some there is a higher risk of injury simply due to genetic makeup - hypermobility, femoral anteversion, structural asymmetries etc. So it is vital we look after what we have, make it stronger, train smarter and love our differences.</span>\n\n&nbsp;\n<h3><b>The Problem</b></h3>\n<span style=\"font-weight: 400;\">Identifying what is happening naturally and what is dysfunction within your client\'s body/movement is paramount to us being able to prescribe the right exercises, at the right time, for the right person and their goal.</span>\n\n&nbsp;\n<h3><b>Why Not Sample A Taster Biomechanics Workshop?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have an awesome 1 day </span><b>Intrinsic Biomechanics Workshop </b><span style=\"font-weight: 400;\">in </span><b>Nottingham Feb 24th 10:30-6pm </b><span style=\"font-weight: 400;\">no exams, no obligation, pelvis, spine and shoulder tests and exercises you can apply immediately.</span>\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">JOIN ME &lt;&lt;CLICK HERE&gt;&gt;</span></a>\n\n<img class=\"size-large wp-image-4709\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/02/Intrinsic-Biomechanics-Taster-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\n\n&nbsp;','Stop Wishing For Someone Else’s Body…Make Yours The Best It Can Be!','','draft','closed','closed','','stop-wishing-for-someone-elses-bodymake-yours-the-best-it-can-be','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'http://www.biomechanicseducation.com/?p=5131',0,'post','',0),(5133,0,'2018-02-12 11:27:20','2018-02-12 11:27:20','','Fast Track 3 Day Pelvic & Spine Biomechanics','','inherit','closed','closed','','fast-track-3-day-pelvic-spine-biomechanics','','','2018-02-12 11:27:20','2018-02-12 11:27:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Fast-Track-3-Day-Pelvic-Spine-Biomechanics-1-1.jpg',0,'attachment','image/jpeg',0),(5135,0,'2018-02-12 11:29:59','2018-02-12 11:29:59','','Biomechanics Coach&#x2122; Diploma Workshop Series','','inherit','closed','closed','','biomechanics-coach-diploma-workshop-series-2','','','2018-02-12 11:29:59','2018-02-12 11:29:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach™-Diploma-Workshop-Series-1-1.jpg',0,'attachment','image/jpeg',0),(5137,0,'2018-02-12 11:31:29','2018-02-12 11:31:29','','Fast Track 3 Day Shoulder, Knee & Foot','','inherit','closed','closed','','fast-track-3-day-shoulder-knee-foot','','','2018-02-12 11:31:29','2018-02-12 11:31:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Fast-Track-3-Day-Shoulder-Knee-Foot-1-1.jpg',0,'attachment','image/jpeg',0),(5139,0,'2018-02-12 11:34:51','2018-02-12 11:34:51','','Low Back Health Workshop','','inherit','closed','closed','','low-back-health-workshop-9','','','2018-02-12 11:34:51','2018-02-12 11:34:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Low-Back-Health-Workshop-1-1.jpg',0,'attachment','image/jpeg',0),(5141,0,'2018-02-12 11:36:01','2018-02-12 11:36:01','','82da4fb4-df15-48b9-93b3-b67b9fb8d252','','inherit','closed','closed','','82da4fb4-df15-48b9-93b3-b67b9fb8d252','','','2018-02-12 11:36:01','2018-02-12 11:36:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/82da4fb4-df15-48b9-93b3-b67b9fb8d252-1.jpg',0,'attachment','image/jpeg',0),(5143,0,'2018-02-12 11:36:13','2018-02-12 11:36:13','','Spine Biomechanics 2 Day Workshop','','inherit','closed','closed','','spine-biomechanics-2-day-workshop-2','','','2018-02-12 11:36:13','2018-02-12 11:36:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Spine-Biomechanics-2-Day-Workshop-1-1.jpg',0,'attachment','image/jpeg',0),(5145,0,'2018-02-12 11:36:38','2018-02-12 11:36:38','','Screen Shot 2018-02-12 at 11.35.33','','inherit','closed','closed','','screen-shot-2018-02-12-at-11-35-33','','','2018-02-12 11:36:38','2018-02-12 11:36:38','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Screen-Shot-2018-02-12-at-11.35.33-1.png',0,'attachment','image/png',0),(5149,0,'2018-02-12 11:37:23','2018-02-12 11:37:23','','Pelvic Biomechanics 2 Day Workshop','','inherit','closed','closed','','pelvic-biomechanics-2-day-workshop-6','','','2018-02-12 11:37:23','2018-02-12 11:37:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Pelvic-Biomechanics-2-Day-Workshop-1-1.jpg',0,'attachment','image/jpeg',0),(5151,0,'2018-02-12 11:39:03','2018-02-12 11:39:03','','Shoulder Biomechanics 2 Day Workshop','','inherit','closed','closed','','shoulder-biomechanics-2-day-workshop','','','2018-02-12 11:39:03','2018-02-12 11:39:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Shoulder-Biomechanics-2-Day-Workshop-1.jpg',0,'attachment','image/jpeg',0),(5153,0,'2018-02-12 11:40:27','2018-02-12 11:40:27','','Biomechanics Coach&#x2122; Practical Assessment','','inherit','closed','closed','','biomechanics-coach-practical-assessment-5','','','2018-02-12 11:40:27','2018-02-12 11:40:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach™-Practical-Assessment-2.jpg',0,'attachment','image/jpeg',0),(5155,0,'2018-02-12 11:41:57','2018-02-12 11:41:57','','Biomechanics-Coach&#x2122;-Practical-Assessment-1','','inherit','closed','closed','','biomechanics-coach-practical-assessment-6','','','2018-02-12 11:41:57','2018-02-12 11:41:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach™-Practical-Assessment-1-1.jpg',0,'attachment','image/jpeg',0),(5253,0,'2018-02-15 10:19:01','2018-02-15 10:19:01','','Christie Brinkley, Swimsuit Issue 1979','Swimsuit: 1979 Issue: Portrait of Christie Brinkley during photo shoot on beach. \nSeychelles 11/22/1978\nCREDIT: Walter Iooss Jr. (Photo by Walter Iooss Jr. /Sports Illustrated/Contour by Getty Images)\n(Set Number: X22862 TK1 )','inherit','closed','closed','','christie-brinkley-swimsuit-issue-1979','','','2018-02-15 10:19:01','2018-02-15 10:19:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Christie-Brinkley-1-1.jpg',0,'attachment','image/jpeg',0),(5255,0,'2018-02-15 10:19:04','2018-02-15 10:19:04','','Stop Wishing For Someone Else’s Body…Make Yours The Best It Can Be!','','inherit','closed','closed','','stop-wishing-for-someone-elses-bodymake-yours-the-best-it-can-be-2','','','2018-02-15 10:19:04','2018-02-15 10:19:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Stop-Wishing-For-Someone-Elses-Body…Make-Yours-The-Best-It-Can-Be.png',0,'attachment','image/png',0),(5279,3,'2018-02-19 20:01:34','2018-02-19 20:01:34','<span style=\"font-weight: 400;\">Having spent many years ‘collecting’ shoes, boots, sandals, high heels and some really truly </span><i><span style=\"font-weight: 400;\">beautiful </span></i><span style=\"font-weight: 400;\">footwear, since learning about intrinsic biomechanics I have come to realise how detrimental most footwear can be for us. In particular if we have particular foot types.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cute looking or leg flattering fashion isn\'t designed for optimising our biomechanics, quite the opposite in fact. While it\'s a choice what we put on our feet...</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">...how are we supposed to know what\'s going to happen if we wear certain footwear for long periods? </span></li>\n 	<li><span style=\"font-weight: 400;\">...how do we advise our clients when they ask us our opinion on footwear? </span></li>\n 	<li><span style=\"font-weight: 400;\">...what contributes to \'sensible\' footwear choices? </span></li>\n 	<li>...which shoe companies can we trust?</li>\n 	<li><span style=\"font-weight: 400;\">...should we ignore fashion and simply wear the most \'functional\' shoes? </span></li>\n 	<li><span style=\"font-weight: 400;\">....which are the most functional shoes and....</span></li>\n 	<li><span style=\"font-weight: 400;\">.....how do we know?</span></li>\n</ul>\n&nbsp;\n\nThis blog wont necessarily be able answer all of these questions but they are the ones I have considered for some time now.\n\n<span style=\"font-weight: 400;\">If you have feet like mine, with a ‘loose’ Midtarsal Joint (MTJ), loose Subtalar Joint (STJ), low arch height and limited capacity for supination, you may have been described by a foot practitioner as an ‘over pronator’. </span>\n\nTo better understand \'over pronation\' read my previous <a href=\"https://www.biomechanicseducation.com/foot-biomechanics-made-simple-part-1-the-over-pronation-fallacy/\" target=\"_blank\" rel=\"noopener\">Juicemail Foot Biomechanics Made Simple</a>\n<h2></h2>\n<h2>So what?</h2>\n&nbsp;\n\nWell this could have been impacted by our footwear choices.\n\nImagine for a moment an over pronator (technically this is late supination) - what might their feet look like?\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36119 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2018/02/IMG_4960-1-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" />\n\n&nbsp;\n\nMaybe something like this image above?\n\nWell as you can see this result of over pronating (or late supinating) has resulted in the body starting to adapt and develop the onset of a bunion to allow for the force being put through the inside of that big toe (Halux) since the ankle joints are loose, the active myofascial tissue at the pelvis hasn\'t been strong enough to counter react to the ground reaction force resulting in a bony lump forming.\n\nThis means it is not simply going to go away.\n\nImagine growing an extra bit of bone on your foot...!\n\n&nbsp;\n<ul>\n 	<li>...how do you think this will this affect the way you move?</li>\n 	<li>...how might it alter the force going through the body?</li>\n 	<li>...where will the ground reaction forces now travel?</li>\n 	<li>...how do we decide on what to wear on our feet?</li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are like me in the image above, and you wish to reduce the onset of any further degradation to your foot function you may also seek out better footwear to allow the toes to splay out more but </span><span style=\"font-weight: 400;\">you may well experience from the struggle to find comfortable &amp; appropriate shoes that even look nice. this is of course mostly down to personal taste and fashion sense. So how important is the style of the shoe versus that fit and freedom of the foot?</span>\n\n<span style=\"font-weight: 400;\">Well I had no problem ditching my high heels since they were always extremely uncomfortable anyway &amp; so have spent many years using mainly trainers as my regular footwear.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Have you been trainer shopping recently?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is almost nothing for my foot type, that looks ok but is comfortable, doesnt keep the heel higher than the toes thus shortening the calf and also spreads my toes out (I use spacers when barefoot since they don\'t fit in any shoes I own). When you consider the volume of trainers there are to choose from, it can be really frustrating. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Knowing a little bit about foot biomechanics I realise the challenge for client\'s who are \'sold\' to by marketing adverts suggesting their shoes \"...<em>are comfy, like pillows..\" </em>or they are designed with huge heels that shorten the calf muscles, thick soles that limit movement in the arch, narrow toe boxes that squish our toes together but all of these reduce our foot biomechanics function over time. </span>\n\n<span style=\"font-weight: 400;\">How many shoe sales people understand foot biomechanics and their ascending influence? let alone about the biomechanics of the rest of the body and the descending influence? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are thinking what has the rest of the body got to do with shoe choice, well consider this…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you know that one of the most common biomechanical presentations we have today is abnormal pelvic biomechanics. This area then influences the knee, often inwards when walking/running. This in turn rotates the ankle and therefore the foot into ‘over pronation’ - which is actually ‘late supination’ .....these individuals are \'propelling\' their body while still in pronation when they should be in supination. Pronation = loose, wide, long, mobile foot for shock dissipation. Supination = stiff, rigid, narrow, shorter foot for stability in propulsion phase.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you know even your shoulder biomechanics can impact upon your feet via the integrated system - shoulder to spine to pelvis to knee to foot? Come and meet me in the classroom one day and I will show you very easily how they are linked!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if this is the case should shoes be designed, or at least fitted, by people who understand all of this? or at least for our children?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Martin Haines, founder of the Intrinsic Biomechanics method, has been a lead consultant for Start-rite children’s shoes for some time now and is also an advisor to Scholl.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He committed over 20 years of his life to collecting data and, along with his team, developed exceptional education programmes with simple methods to understand foot function along with capacity in other areas of the body. These education programmes give us assessment skills to help us, as trainers understand the integrated system, how it works and how each area of the body impacts upon the other. Maybe also an understanding of how to advise our clients on footwear or at least when they might need to see a podiatrist.</span>\n\n<a href=\"https://www.startriteshoes.com/\"><img class=\"aligncenter size-large wp-image-5281\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/02/Start-Rite-Shoes-1024x649.jpg\" alt=\"\" width=\"1024\" height=\"649\" /></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In his work with Start-rite he discussed with them how children walk, what should happen during their gait cycle and at what stages in their development and why. How they should develop naturally and how this impacts upon their movement as they grow from pre 18 months up to 6yrs of age and with the emphasis on how shoes need to reflect this natural development of human intrinsic biomechanics.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Design considerations they discussed took into account things like the influence of a heel raise, joint flexibility, shock absorption, what wearing a boot might do to the child’s ankle and how all of the changes that occur during childhood occur for a reason and can be impacted upon should inappropriate footwear be worn.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So Start-rite really are the UK leaders setting standards in shoe design for children with this modern approach.  They recognise the need for a screening system to fit our children into the most appropriate shoes for, not only their foot type but also their functional capacity at that point in time.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Would you like to learn more about foot function?</span></h2>\n<h2><span style=\"font-weight: 400;\">Would you like to understand how to change foot function by improving shoulder muscle function?</span></h2>\n<h2>Are ready to take your skills to the next level?</h2>\n<h2>.... then<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\"> jump on one of our upcoming courses, just click here to find out more.</a></h2>\n<h2></h2>','Shoe\'s - Fashion or Function?','','draft','closed','closed','','is-there-a-right-shoe-for-you','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=5279',0,'post','',0),(5281,0,'2018-02-19 08:00:57','2018-02-19 08:00:57','','Start Rite Shoes','','inherit','closed','closed','','start-rite-shoes','','','2018-02-19 08:00:57','2018-02-19 08:00:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Start-Rite-Shoes-1.jpg',0,'attachment','image/jpeg',0),(5309,0,'2018-02-19 19:59:13','2018-02-19 19:59:13','','Is there a right shoe for you_','','inherit','closed','closed','','is-there-a-right-shoe-for-you_','','','2018-02-19 19:59:13','2018-02-19 19:59:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Is-there-a-right-shoe-for-you_-1.png',0,'attachment','image/png',0),(5323,3,'2018-02-26 22:15:19','2018-02-26 22:15:19','<span style=\"font-weight: 400;\">So a topic we hear a lot about is stress. There is a lot of talk about how it influences our mood, behaviour and even health. Most of you, I am sure, will have felt stressed at some point in your life and maybe regularly, but do you know how to manage it? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What happens when you feel stressed? </span>\n\n<span style=\"font-weight: 400;\">Maybe you have clients who get stressed?</span>\n\n<span style=\"font-weight: 400;\">Do you wonder what you can do to help them? </span>\n\n<span style=\"font-weight: 400;\">Do you really understand what is causing their stress?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Is stress actually a bad thing?</span>\n\n<span style=\"font-weight: 400;\">Now before you jump all over that last question, read the rest of this post...</span>\n\n&nbsp;\n\n<b>What Is Stress?</b>\n\n<span style=\"font-weight: 400;\">Before we explore this, let’s have a quick look at some of the Oxford Dictionary’s definitions of stress;</span>\n\n<i><span style=\"font-weight: 400;\">A state of mental or emotional strain or tension resulting from adverse or demanding circumstances.</span></i>\n\n<i><span style=\"font-weight: 400;\">‘he\'s obviously under a lot of stress’</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Something that causes a state of strain or tension.</span></i>\n\n<i><span style=\"font-weight: 400;\">‘the stresses and strains of public life’</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Subject to pressure or tension.</span></i>\n\n<i><span style=\"font-weight: 400;\">\"this type of workout stresses the shoulder and knee joints\" </span></i>\n\n&nbsp;\n\n<b><i>Stress</i></b><i><span style=\"font-weight: 400;\"> is primarily a physical response. When </span></i><b><i>stressed</i></b><i><span style=\"font-weight: 400;\">, the body thinks it is under attack and switches to \'fight or flight\' mode, releasing a complex mix of hormones and chemicals such as adrenaline, cortisol and norepinephrine to prepare the body for physical action. www.anxietyuk.org.uk</span></i>\n\n&nbsp;\n<h3><b><img class=\"aligncenter size-large wp-image-5363\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/02/Is-stress-a-bad-thing--1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" />Is Stress Good or Bad?</b></h3>\n<span style=\"font-weight: 400;\">In his book </span><b>‘‘</b><b><i>We KNOW what to do, so WHY don’t we do it?</i></b><b>’, </b><span style=\"font-weight: 400;\">Nick Hall suggests that we should not be looking to </span><i><span style=\"font-weight: 400;\">reduce </span></i><span style=\"font-weight: 400;\">the stress, but to </span><i><span style=\"font-weight: 400;\">increase</span></i><span style=\"font-weight: 400;\"> the recovery.</span>\n\n<span style=\"font-weight: 400;\">He suggests we NEED stress!</span>\n\n<span style=\"font-weight: 400;\">The brain AND body both need stress for stimulation, to grow, to develop and to maintain a healthy system. </span>\n\n<span style=\"font-weight: 400;\">The problem often isn’t how much we DO, but how much we DON’T DO. </span>\n\n<span style=\"font-weight: 400;\">Personally, I am a big believer in the power of the mind and that having methods in place to improve the way we think can be extremely powerful. </span>\n\n&nbsp;\n<h3><b>The Stress Of Exercise Is A Good Thing, Right..?</b></h3>\n<span style=\"font-weight: 400;\">It is well documented that stressing the body with physical activity is good for us. Within our professions we advise people on how to move, to move well and to move more. The physical stress of exercise replacing our previous physical demands as hunter-gatherers of building fires, climbing trees and running away from sabre-toothed tigers.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have learned that when we don\'t move we gain all sort of undesirable compensations and adaptations that we, as exercise professionals, spend our careers helping our clients with. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Going for a run would be a form of stress on the body and would be seen by most as a </span><i><span style=\"font-weight: 400;\">good or acceptable</span></i><span style=\"font-weight: 400;\"> form of stress; as it exercises the cardiovascular system and the leg muscles, for example, to name just a couple of the positive physical demands. But to make that ‘stress’ </span><i><span style=\"font-weight: 400;\">valuable</span></i><span style=\"font-weight: 400;\"> we then need to recover and rest. If we just went running again straight away without recovery the body would begin to feel TOO stressed and eventually would start to break down. </span>\n\n&nbsp;\n<h3><b>Mental Stress… Same or Different?</b></h3>\n<span style=\"font-weight: 400;\">Mental stress is the same, or similar, if you consider that mental stimulation/stress, is how we gain knowledge and process information. Mental stress requires some kind of a recovery phase too, like meditation for example. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Basically what Hall is saying in his book, is that the problem isn’t necessarily the STRESS itself but more often than not, the fact that we are not recovering from the stress or stimulation well enough. We should measure the stress with enough, equal or ample recovery. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He uses the example of Newton’s law of physics, where each action causes a reaction, as something of which we should be mindful in this example. The reason for this, Hall says, is because it is during the recovery phase that we grow and when the ‘de-stressing’ occurs. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It reminds me of the Kubler Ross curve we discuss during our workshops, that we receive information and may go through a phase of discomfort while we process it. However, with time we can start to make sense of it to allow homeostasis to return to both our mind and body.</span>\n\n&nbsp;\n\n<b>So Ask Yourself This…</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Are you experiencing too much stress?</span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">Are you simply lacking recovery?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What changes do you need to make to your routine to allow for sufficient recovery?</span>\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h2 style=\"text-align: center;\">Are you ready to take your skills to the next level?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<p style=\"text-align: center;\"><img class=\"aligncenter size-large wp-image-4709\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/02/Intrinsic-Biomechanics-Taster-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></p>\n<p style=\"text-align: center;\"></p>','Do You Feel Stressed? And Is Stress Actually A Bad Thing?','','draft','closed','closed','','do-you-feel-stressed-and-is-stress-actually-a-bad-thing','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=5323',0,'post','',0),(5325,0,'2018-02-26 09:35:06','2018-02-26 09:35:06','','Is Stress A Bad Thing? Biomechanics Coach, Biomechanics Education','','inherit','closed','closed','','is-stress-a-bad-thing_-biomechanics-coach-biomechanics-education','','','2018-02-26 09:35:06','2018-02-26 09:35:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Is-Stress-A-Bad-Thing_-Biomechanics-Coach-Biomechanics-Education-1.png',0,'attachment','image/png',0),(5329,0,'2018-02-26 09:41:50','2018-02-26 09:41:50','','Is Stress A Bad Thing_ Biomechanics Coach, Biomechanics Education, Personal Trainers','','inherit','closed','closed','','is-stress-a-bad-thing_-biomechanics-coach-biomechanics-education-personal-trainers','','','2018-02-26 09:41:50','2018-02-26 09:41:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Is-Stress-A-Bad-Thing_-Biomechanics-Coach-Biomechanics-Education-Personal-Trainers-1.png',0,'attachment','image/png',0),(5363,0,'2018-02-26 22:22:33','2018-02-26 22:22:33','','Is stress a bad thing?','','inherit','closed','closed','','is-stress-a-bad-thing','','','2018-02-26 22:22:33','2018-02-26 22:22:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Is-stress-a-bad-thing-1-1.jpg',0,'attachment','image/jpeg',0),(5409,3,'2018-03-05 19:59:15','2018-03-05 19:59:15','<h3><b>The Problem - How Can You Tell If Your Client Is At Risk Of A Knee Injury</b></h3>\n<span style=\"font-weight: 400;\">You get a new client and wonder where to begin.</span>\n\n<span style=\"font-weight: 400;\">You use the ParQ and ask a few simple questions.</span>\n\n<span style=\"font-weight: 400;\">However, you wonder if this is enough?</span>\n\n<span style=\"font-weight: 400;\">Which exercises are right for them?</span>\n\n<span style=\"font-weight: 400;\">Which might be wrong?</span>\n\n<span style=\"font-weight: 400;\">How would you know?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s take a common issue seen in beginners to exercise like poor knee stability. </span>\n\n<span style=\"font-weight: 400;\">Why are they unstable? </span>\n\n<span style=\"font-weight: 400;\">Are they weak? If so where? And which strength moves would be appropriate?</span>\n\n<span style=\"font-weight: 400;\">Every time your client runs or jumps they seem to almost fall over with wobbly knees.</span>\n\n<span style=\"font-weight: 400;\">How can you identify the root cause and then rectify it?</span>\n\n&nbsp;\n<h3><b>The Solution - How To Know If Your Client Is At Risk Of Knee Injuries...</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well here is a method that is helping PT’s like you, identify if your clients are quad dominant.</span>\n\n&nbsp;\n<h3><strong>What do I mean when I say “quad dominant”?</strong></h3>\n<b>Biomechanical Issue;</b>\n\n<span style=\"font-weight: 400;\">Quadriceps Dominance</span>\n\n<span style=\"font-weight: 400;\">An imbalance between knee extensor and flexor strength, recruitment, and coordination.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Basically, the muscles that surround the knee and allow it to function are either not strong enough and/or lack the ability to move in the right way.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Relevance:</span>\n\n<span style=\"font-weight: 400;\">If the peak hamstring torques are down this will de-stabilises the knee. And thus increase the risk of injury.</span>\n\n<span style=\"font-weight: 400;\">The more a person bends their knee, the more the hamstrings engage to stabilise it.</span>\n\n&nbsp;\n\n<b>0 - 30 degrees of knee flexion = </b><span style=\"font-weight: 400;\">quadriceps pull the tibia forward with little opposition from hamstrings</span>\n\n<img class=\"aligncenter wp-image-5413 size-full\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/03/Quadriceps-Dominance-0-30-degrees-knee-flexion.png\" alt=\"\" width=\"416\" height=\"418\" />\n\n<b>30 – 90 degrees of flexion = </b><span style=\"font-weight: 400;\">the quadriceps have comparatively less effect and the hamstrings engage more</span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter size-full wp-image-5415\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/03/Quadriceps-Dominance-30-90-degrees-knee-flexion.png\" alt=\"\" width=\"404\" height=\"416\" />Normal Quads/hams ratio established from </span><span style=\"font-weight: 400;\">isokinetic testing:</span>\n\n<span style=\"font-weight: 400;\">Sprinting/rugby/football = Hamstrings are 70% of Quads</span>\n\n<span style=\"font-weight: 400;\">Long distance runners = Hamstrings are 60% of Quads</span>\n\n<span style=\"font-weight: 400;\">Race walkers = Hamstrings are 90% of Quads</span>\n\n&nbsp;\n<h3><b>How To Test For Quadriceps Dominance</b></h3>\nSo how on earth do you find out if your client is quad dominant? Well, I am not just going to freak you out and then leave you, I have a test for you try today….\n<h4><span style=\"font-weight: 400;\">The Test For Quadriceps Dominance:</span></h4>\n<span style=\"font-weight: 400;\">Test the ability to leap/hop forwards about 1 metre, land in 90 degrees of knee flexion, with the hips at 45 degrees and then hold this single-leg stance for 3 seconds.</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">To maintain upright posture (45 degrees at hip)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Land in deep knee flexion (90 degrees at knee) </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Hold for 3 seconds</span></li>\n</ul>\n<img class=\"aligncenter size-full wp-image-5417\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/03/Quadriceps-Dominance-Test.png\" alt=\"\" width=\"279\" height=\"503\" />\n\n<span style=\"font-weight: 400;\">Did They Pass?</span>\n\n<span style=\"font-weight: 400;\">YES - Negative Result:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The client passes if they have the ability to maintain stance with deep knee flexion and control = good hamstring control</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">NO - Positive Result:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The client fails if they have an inability to maintain stance with deep knee flexion indicates quadriceps dominance = poor hamstring control</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Stroup AL, Nance TA, Noyes FR, Hewett TE)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now ask yourself this question </span><i><span style=\"font-weight: 400;\">“if the hamstrings are unable to contribute enough to stabilise the knee upon landing at 90 degrees, what should you do?”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In other words what exercises would encourage the function of the hamstrings and improve the quads/hamstring ratio?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is very simple….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). You would need to strengthen the hamstrings</span>\n\n<span style=\"font-weight: 400;\">2). Specifically the hamstrings, which means we need to understand their action/s</span>\n\n<span style=\"font-weight: 400;\">3). Then isolate that movement in a resistance exercise...yes I said isolate</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember we all want to be functional but if something (ie the hamstrings) aren’t function’ING’ then you cannot be fully function’AL’</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The hamstrings assist hip extension (with the glutes) but are really the main knee flexors.</span>\n\n<span style=\"font-weight: 400;\">So consider how many exercises you know that isolate knee flexion?</span>\n<h4><strong>Isolated Hamstring Strengthening Exercises:</strong></h4>\n<b>Leg Curl Machines </b>\n\n<b>Nordic Leans</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These are really great exercise examples that contribute to changing the ham to quad strength ratio.</span>\n\n&nbsp;\n\nIf you discover that your client is quad dominant, then start building in those hamstring strengthening exercises into their programme.\n\n&nbsp;\n<h3><b>Want To Take This Further? </b></h3>\n<span style=\"font-weight: 400;\">Usually delivered on our Biomechanics Coach Diploma, Knee &amp; Foot Biomechanics workshop, here we are giving it to you to try out for free to see if it helps. So please get in touch with your results or questions </span><a href=\"mailto:rachel@biomechanicseducation.com\"><span style=\"font-weight: 400;\">rachel@biomechanicseducation.com</span></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you would like to know more there is an entire workshop dedicated to assessing knee stability and foot function. This workshop also includes all of the relevant exercises to help you in your session programming.</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Want more info? Then click here fill in your info and speak to one of the team.</span></a>\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h2 style=\"text-align: center;\"><b>Imagine Being Able To Do This Type Of Test For The Whole Body…</b></h2>\n<span style=\"font-weight: 400;\">If you want to be able to do this kind of analysis for the whole body then you should really check out our full diploma.</span>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5153 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a>','Are Your Clients At Risk Of Knee Problems?','','draft','closed','closed','','are-your-clients-at-risk-of-knee-problems-quadricep-dominance','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=5409',0,'post','',0),(5413,0,'2018-03-05 09:47:02','2018-03-05 09:47:02','','Quadriceps Dominance - 0-30 degrees knee flexion','','inherit','closed','closed','','quadriceps-dominance-0-30-degrees-knee-flexion','','','2018-03-05 09:47:02','2018-03-05 09:47:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Quadriceps-Dominance-0-30-degrees-knee-flexion-1.png',0,'attachment','image/png',0),(5415,0,'2018-03-05 09:47:12','2018-03-05 09:47:12','','Quadriceps Dominance - 30-90 degrees knee flexion','','inherit','closed','closed','','quadriceps-dominance-30-90-degrees-knee-flexion','','','2018-03-05 09:47:12','2018-03-05 09:47:12','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Quadriceps-Dominance-30-90-degrees-knee-flexion-1.png',0,'attachment','image/png',0),(5417,0,'2018-03-05 09:47:19','2018-03-05 09:47:19','','Quadriceps Dominance Test','','inherit','closed','closed','','quadriceps-dominance-test','','','2018-03-05 09:47:19','2018-03-05 09:47:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Quadriceps-Dominance-Test-1.png',0,'attachment','image/png',0),(6309,0,'2018-03-05 12:51:04','2018-03-05 12:51:04','','Are your clients at risk of knee injury_ Do the quadriceps dominant test and find out!','','inherit','closed','closed','','are-your-clients-at-risk-of-knee-injury_-do-the-quadriceps-dominant-test-and-find-out','','','2018-03-05 12:51:04','2018-03-05 12:51:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Are-your-clients-at-risk-of-knee-injury_-Do-the-quadriceps-dominant-test-and-find-out-1.png',0,'attachment','image/png',0),(6336,3,'2018-03-12 21:23:36','2018-03-12 21:23:36','<span style=\"font-weight: 400;\">So I am confident you will have heard of the piriformis muscle and that you are aware of, at least, some of its functions within the body, right? Don\'t panic if you don\'t I\'ll explain in a second.</span>\n\n<span style=\"font-weight: 400;\">But d</span><span style=\"font-weight: 400;\">o you know how well it functions in you, or your client?</span>\n\n<span style=\"font-weight: 400;\">Or</span>\n\n<span style=\"font-weight: 400;\">Do you know what can happen when it doesn’t function well?</span>\n\n<span style=\"font-weight: 400;\">Imagine if you were able to test its ability to function?</span>\n\n&nbsp;\n\nIn fact, I am going to show you (video below) an example of how the pelvis can be affected by the shoulder.\n\n&nbsp;\n<h3>How The Piriformis Can Contribute To Back Pain, Even Shoulder Dysfunction</h3>\n<span style=\"font-weight: 400;\">The piriformis muscle is one most fit pros are familiar with. Deep to the glutes, this fan-shaped muscle is often blamed for many misdemeanours in the pelvic area BUT through the integrated system, it can also affect function in other areas of the body. When rubbed, massaged or pressed it can often feel tender, sore or even painful.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Attaching from the anterior surface of the sacrum to the greater trochanter it, therefore, crosses the Sacroiliac Joint, thus contributing to movements like external rotation and abduction of the femur or leg. However, when inhibited it can also contribute to problems with movement around the pelvis and even lower back pain. This little blighter can actually contribute to, OR be affected by, shoulder dysfunction and even problem feet!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So just think for a moment about how much of your daily movement comes from the pelvis…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The tricky part is knowing when this muscle is inhibited, amongst others, because the body is such a </span><i><span style=\"font-weight: 400;\">master of compensation</span></i><span style=\"font-weight: 400;\"> that it will make adaptations to allow you to move </span><i><span style=\"font-weight: 400;\">normally </span></i><span style=\"font-weight: 400;\">without even realising that there is an intrinsic compensation to your natural movement. </span>\n\n<span style=\"font-weight: 400;\">There is a good chance you will, in fact, have no pain or discomfort, certainly initially, and so the insidious nature of this very common problem fools us into thinking it was one single event that caused us to (finally) experience backache or sore knees. </span>\n\n&nbsp;\n<h3>When The Back Isn\'t The Cause Of Back Pain</h3>\n<span style=\"font-weight: 400;\">Also, we then blame the back and the knees because they are the sore areas BUT if we are to be practitioners that really do believe the body works as an </span><i><span style=\"font-weight: 400;\">integrated system</span></i><span style=\"font-weight: 400;\"> then why are we not testing the entire body when clients present with a poor movement profile, low-grade aches and niggles?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone agrees and talks about the </span><i><span style=\"font-weight: 400;\">kinetic chains</span></i><span style=\"font-weight: 400;\"> within the body and yet still appear to be stunned when having applied manual therapy techniques or exercises to the problem area it does not solve the problem, particularly long-term. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is still amazement to discover that clients bad back is being caused by their pelvic dysfunction, ‘floppy’ feet or even inhibited shoulders. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Guess who is perfectly placed to improve an individual\'s pelvic function BEFORE there is a need to visit a clinician or medic?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YES, YOU! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can show you simple techniques that enable you to start testing your client\'s body to avoid the need for a medical profession, OR at least to enable better communication between you and the medics, as you both work within your remit to help the individual.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Watch the short video below because I SHOW you exactly how the integrated system works from one end to the other when a shoulder technique releases and changes the function of the pelvis and muscles like piriformis in just 1 minute and 20 seconds</span>\n\n&nbsp;\n<h3>Watch Now - Shoulder Release Affects Leg Length Discrepancy</h3>\nhttps://www.youtube.com/watch?v=la6jOLuMSiU\n\nHow cool is that?\n\nAnd what happens when you correct someone\'s leg length discrepancy? Do you think they would be at lower risk of injury? Do you think they would be able to put more force &amp;strength through their movements? YOU BET! You could help someone squat better, move better, simply by doing this exercise. Cool huh!?\n\nBeing able to affect someone\'s pelvis by releasing their pec minor. Just think how knowing this could affect your ability to train clients. It would take it up a notch right!\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to learn those tests and the exercises that go with them, that I demonstrated in the video? If you would, then check out</span><span style=\"font-weight: 400;\"> our extremely popular 1-day workshop during which you will learn how to assess the pelvis, spine and shoulders. <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to find out more information and simply fill in the form to get a call from one of the team to find out more.</a></span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\"><b>Imagine Being Able To Do This Type Of Test For The Whole Body…</b></h2>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">If you want to be able to do this kind of analysis for the whole body then you should really check out our full diploma.</span></p>\n\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5153 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a>','Discover How 1 Simple Shoulder Exercise Could Help Reduce Back Pain & Improve Movement','','draft','closed','closed','','discover-how-1-simple-shoulder-exercise-could-help-reduce-back-pain-improve-movement','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=6336',0,'post','',0),(6342,0,'2018-03-12 21:18:57','2018-03-12 21:18:57','','Discover 1 Simple Shoulder Exercise That Could Help Reduce Back Pain & Improve Movement','','inherit','closed','closed','','discover-1-simple-shoulder-exercise-that-could-help-reduce-back-pain-improve-movement','','','2018-03-12 21:18:57','2018-03-12 21:18:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Discover-1-Simple-Shoulder-Exercise-That-Could-Help-Reduce-Back-Pain-Improve-Movement-1.png',0,'attachment','image/png',0),(6391,3,'2018-03-19 21:46:23','2018-03-19 21:46:23','<span style=\"font-weight: 400;\">Ok so one of the biggest issues in our industry is ignorance. We live our lives at 100 miles per hour and ‘scan’ read all sort of things on social media like ‘</span><i><span style=\"font-weight: 400;\">how fruit bats love oral sex’</span></i><span style=\"font-weight: 400;\"> or ‘</span><i><span style=\"font-weight: 400;\">if you name a cow it will produce more milk’</span></i><span style=\"font-weight: 400;\"> and even that ‘</span><i><span style=\"font-weight: 400;\">viagra helps hamsters recover faster from jet lag</span></i><span style=\"font-weight: 400;\">’...seriously see the references at the bottom…</span>\n\n<strong>But these are TRUE by research standards, the issue is context.</strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my experience a lot of PT’s take what some ‘guru’s’ tell them literally and then regurgitate what they heard, or read, as fact but maybe without even truly understanding it or with a degree of Chinese whispers when they relay it. The reason I know this is because I used to do the same. Yup, I would nod at my mentor and agree without even considering challenging them. </span>\n\n&nbsp;\n<h3>Fitness Guru\'s Make Mistakes Too...</h3>\n<span style=\"font-weight: 400;\">My god, they have written books or are famous so who am I to challenge them? I used to think, even when it didn’t make sense to me. I assumed I was being dumb and just took their word for it. Maybe you have done that too eh? </span>\n\n<span style=\"font-weight: 400;\">Another error I used to make was ASSUMPTION of the context. The writer means one set of circumstances and I am thinking of others. This, in my opinion, is the writer\'s responsibility since context MUST be set for clarity of what the writer is trying to convey in their message, don’t you agree?</span>\n\n<span style=\"font-weight: 400;\">As an educator, I learned very quickly NEVER to wing it. You can’t or you get caught out eventually and then it looks like you lack integrity. We have to lead by example about being honest when we don’t know BUT we do need to KNOW what we NEED and know REALLY well. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My favourite mentor taught me a very important lesson that I now pass over to our academy learners. </span>\n\n&nbsp;\n<h3 style=\"text-align: center;\"><em><strong>TO CHALLENGE EVERYTHING!</strong></em></h3>\n&nbsp;\n<blockquote><i><span style=\"font-weight: 400;\">“The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge” </span></i>\n\n<span style=\"font-weight: 400;\">Stephen Hawkin </span></blockquote>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We really should challenge what we are told until we understand it fully ourselves within our context of thinking or with a context set by the author. Also thinking with depth as well as breadth.</span>\n\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">If you can’t explain it simply, you don’t understand it well enough”</span></i>\n\n<span style=\"font-weight: 400;\">Albert Einstein</span></blockquote>\n<img class=\" wp-image-6410 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/03/Rachel-France-Listening-to-Dan-John-Never-Let-Go-768x1024.jpg\" alt=\"\" width=\"338\" height=\"450\" />\n\n<span style=\"font-weight: 400;\">What I mean by this is we should not be afraid to challenge what we hear no matter who says it. Those celebrities or guru’s are still just humans like you and me. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My Audible addiction has allowed me to absorb a ridiculous number of books by some of my favourite people. <a href=\"http://danjohn.net\" target=\"_blank\" rel=\"noopener\">Dan John, strength, track and throwing coach</a> has been at the top of my listen to list for some time now</span><span style=\"font-weight: 400;\">. In fact, I recently listened to my 5th Dan John book ‘</span><i><span style=\"font-weight: 400;\">Never Let Go</span></i><span style=\"font-weight: 400;\">’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now, I am a <strong>massive fan,</strong> however as I listened I wanted to challenge a statement he made. USA guru of strength coaching or not, I did not agree with a statement he made. </span>\n\n&nbsp;\n<h3>Where I Believe Dan John Is Wrong...</h3>\n<span style=\"font-weight: 400;\">Dan John rubbed me up the wrong way when he talked about the ‘innie and outie’ machines like they are a total waste of time. He means the abductor/adductor machines by the way, or at least that’s my understanding of what he describes.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">None of his training suggestions (that I have come across so far) advocate any kind of frontal plane nor rotational work. He doesn’t see the point apparently!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I have tried to come up with situations where this might be the case….errr….mmmm….NONE!?!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We ALL need ALL movement abilities to be efficient in our individual movement profile otherwise we will end up with poor strength ratios and have an increased risk of injury. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you look at George Davies work into joint strength ratios in ‘</span><i><span style=\"font-weight: 400;\">Compendium of Isokinetics’ </span></i><span style=\"font-weight: 400;\">he discusses the hip flexors/extensor ideal strength ratio as 1:1 as are the hip abb/adductors. We found the same when we collected data from 4.5k subjects over 20+ years of using isokinetics. However, if you only train strength sagittally then chances are you will be lacking frontal plane stability. We do not simply move or require strength sagittally and to be fair I am confident Dan John would find it hard to disagree. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">SO WHAT? (Great question eh…)</span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-6415\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/03/Walking-1024x512.png\" alt=\"\" width=\"642\" height=\"321\" />Well now have a think about the gait cycle and the effects of movement through the body when you walk. Imagine as you heel strike and your subtalar joint goes from pronation to supination, which by the way require triplanar motions (eversion/abduction/dorsiflexion for pronation and inversion/adduction/plantar flexion for supination). </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then imagine the effects of this force as it travels up through the lower leg and that torsional rotation hits the knee joint, which by the way doesn\'t just flex as I discovered upon reading Brunnstrom’s book ‘</span><i><span style=\"font-weight: 400;\">Clinical Kinesiology</span></i><span style=\"font-weight: 400;\">’ (gliding, rotation and flexion occur at the knee). This influences some internal rotation at the femur which in turn influences the pelvis, which by the way rotates around the Sacroiliac Joint (where the spine sits between the ilium) as you walk. Thus requiring the abd/adductors, for example, to ‘stabilise’ through the frontal plane as you lift one leg from the floor they because they will co-contract with the spinal lateral flexors, like QL, on the opposite side.</span>\n\n<span style=\"font-weight: 400;\">The spine clearly rotates in dudes like Dan John because you can see it as they swagger round the gym, shoulders rotating….;)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">... you understand my point?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I disagreed with his statement about ‘innie and outie’ machines being a waste of time, he did NOT add context for me to accept it either. Had he done so then I may not be writing this blog.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Abd/adductor strength is vital for risk reduction of common injuries like inguinal hernias and dysfunctions like ligament dominance (knee valgus upon landing) that can result in ACL injuries. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now had he stated that he felt the abd/add machines were for some reason not as beneficial and had then given a reason and the alternative examples it might have softened the blow to my disappointment</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Non-machine examples he could have given might have been side planks, weight on the top leg, which is placed on top of the bench for adductors or weight on bottom leg for abductors.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter size-large wp-image-6395\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/03/Side-Plank-Biomechanics-Education-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" />But wait...there is a still a challenge to this in context. Side planks are bloody hard! Imagine all client types...ok so a strength athlete might get away with side planks, but what about 70yr old Ethel? CONTEXT!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does it change my respect for Dan John? Not at all, it makes me remember <strong>he is human like me</strong> and is writing the book for a specific demographic. He is also very honest about his own humble beginnings and mistakes and I like that. </span>\n\n<span style=\"font-weight: 400;\">The lesson here is for YOU to notice when an author doesn’t write the context because they assume the reader will be their demographic. This is one of the main rules of marketing, write in the words of your audience/demographic, so I understand what Dan John is doing in his book. I can reason with my frustration at his flippancy over dismissing a certain exercise as useless because I can see he is ‘in character’ as he writes. </span>\n\n&nbsp;\n<h3><b>Challenge EVERYTHING! Yes, Even Me!</b></h3>\n<span style=\"font-weight: 400;\">So where am I going with this?</span>\n\n<span style=\"font-weight: 400;\">Well, it is simple really, I would like to encourage you to challenge everything you are told or read, until you have absolute clarity of what the writer or orator is trying to communicate. Once understanding is clear then surely we can feel confident about our contribution to the discussion.</span>\n\n<span style=\"font-weight: 400;\">Finally just because Dan John says innie &amp; outie machines are useless please don’t take it literally and think that your elderly client Ethel won’t benefit from them…..</span>\n\n&nbsp;\n<h3><b>How Do We, Biomechanics Education, Help?</b></h3>\n<span style=\"font-weight: 400;\">It is an education company’s responsibility to encourage an individual\'s ability to express themselves through various platforms or mediums. Autonomous learning comes from developing the inquisitive nature in our learners. This vital lesson really increases confidence when it comes to receiving new information. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Something we are renowned for is enabling huge increases in confidence in our learners.  We advise them the learning only begins once they finish their training with us and so our support is lifelong. </span>\n\n<span style=\"font-weight: 400;\">We permit, and encourage, our learners to re-sit their workshop as many times as they wish for free until they qualify and feel happy with their depth of understanding. A human is available to talk to over the phone, via skype or any other medium to support you before, during and after your training with us. We get together 4 times a year to network, discuss, troubleshoot, share, review, refresh and continue our lifelong learning journey. We have recently added an online resource provision called the IBA member portal. This contains all the most up to date resources we have to offer, including manuals, screening forms, reading lists and webinars and online workshops will be coming very soon! Then once a year we come together to celebrate Biomechanics Coaching and its phenomenal evolution over 30yrs with some fabulous dates and discussions around human movement and the latest research. </span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Would YOU Like To Experience The Buzz With Us?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\"><img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a>\n\n<hr />\n\n&nbsp;\n\nOh and just for your amusement is the research I mentioned at the beginning....\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Fruit Bats Love Oral Sex</span></h2>\n<span style=\"font-weight: 400;\">Animals have sex primarily for reproduction rather than pleasure. The male inserts his penis into the female’s vagina, and after a minute or two, the deed is done.</span>\n\n<span style=\"font-weight: 400;\">Sex among animals is so basic and boring that it’s fascinating to know that certain mammals engage in sexual activities that are </span><a href=\"http://www.livescience.com/9754-surprising-sex-behavior-bats.html\"><span style=\"font-weight: 400;\">associated with humans and pleasure</span></a><span style=\"font-weight: 400;\">, such as fellatio and cunnilingus.</span>\n\n<span style=\"font-weight: 400;\">In 2009, researchers from the Guangdong Entomological Institute in Guangzhou, China, accidentally discovered that short-nosed fruit bats engage in oral sex. During the study, the scientists expected to see typical animal behavior such as grooming. Instead, they observed that female fruit bats licked the male’s penis during sex.</span>\n\n<span style=\"font-weight: 400;\">In another study conducted in 2010 and 2011, researchers discovered that </span><a href=\"http://phenomena.nationalgeographic.com/2013/03/28/youve-seen-fruit-bat-fellatio-now-fruit-bat-\"><span style=\"font-weight: 400;\">flying foxes</span></a><span style=\"font-weight: 400;\"> (another fruit bat species) engage in oral sex, too. This time, it was the male bat that licked the female’s vagina. In both studies, researchers discovered that engaging in fellatio and cunnilingus prolonged sex among the bats. </span>\n\n<span style=\"font-weight: 400;\">Scientists have not yet discovered the evolutionary basis of oral sex among fruit bats. But they suggest that it might help in sperm transportation, stimulation of female glandular secretions, and prevention of sexually transmitted diseases.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Cows With Names Produce More Milk</span></h2>\n<span style=\"font-weight: 400;\">Dairy farmers could potentially increase their incomes with one </span><a href=\"http://www.telegraph.co.uk/news/earth/agriculture/farming/4358115/Cows-with-names-produce-more-milk-scientists-say.html\"><span style=\"font-weight: 400;\">simple but weird trick</span></a><span style=\"font-weight: 400;\">—give their cows names. A scientific study published in Anthrozoos suggested that cows with names produce more milk than their nameless counterparts.</span>\n\n<span style=\"font-weight: 400;\">This bizarre study was conducted by Drs. Catherine Douglas and Peter Rowlinson of Newcastle University, and it involved over 500 dairy farmers from the United Kingdom. </span>\n\n<span style=\"font-weight: 400;\">On average, cows produce 7,500 liters (2,000 gal) of milk over a period of 10 months. But Douglas and Rowlinson discovered that cows with names produced 260 liters (70 gal) more.</span>\n\n<span style=\"font-weight: 400;\">Many dairy farmers have long suspected that giving their cattle some “one-to-one attention” increases milk production, but this research was the first that tried to prove it scientifically. According to the study, cows that are herded as a group also produce less milk.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Viagra Helps Hamsters Recover Faster From Jet Lag</span></h2>\n<span style=\"font-weight: 400;\">We all know that Viagra is used to treat erectile dysfunction. However, Diego Golombek of the National University of Quilmes in Buenos Aires, Argentina, has discovered that this light blue pill might also help to </span><a href=\"http://www.nature.com/news/2007/070521/full/news070521-1.html\"><span style=\"font-weight: 400;\">treat jet lag</span></a><span style=\"font-weight: 400;\">.</span>\n\n<span style=\"font-weight: 400;\">This bizarre scientific research was conducted on hamsters that were injected with Viagra. After administering the drug, the rodents’ sleep cycles were pushed ahead by six hours—the approximate amount of time needed to fly from New York to Paris.</span>\n\n<span style=\"font-weight: 400;\">The hamsters on Viagra recovered from jet lag as much as 50 percent faster than the hamsters without Viagra. Although the results were fairly positive, scientists do not know if the same effect will occur in humans.</span>\n\n<span style=\"font-weight: 400;\">Furthermore, Viagra was administered to the hamsters via injection. Scientists are uncertain if taking the drug as a pill will produce the same effect.</span>','Why I Believe Best Selling Author & Strength Guru, Dan John, Was Wrong...','','draft','closed','closed','','why-i-believe-best-selling-author-strength-guru-dan-john-was-wrong','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=6391',0,'post','',0),(6395,0,'2018-03-19 08:42:10','2018-03-19 08:42:10','','','','inherit','closed','closed','','side-plank-biomechanics-education','','','2018-03-19 08:42:10','2018-03-19 08:42:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Side-Plank-Biomechanics-Education-1.jpg',0,'attachment','image/jpeg',0),(6409,0,'2018-03-19 21:16:38','2018-03-19 21:16:38','','depositphotos_116037318-stock-photo-woman-exercising-in-gym','','inherit','closed','closed','','depositphotos_116037318-stock-photo-woman-exercising-in-gym','','','2018-03-19 21:16:38','2018-03-19 21:16:38','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/03/depositphotos_116037318-stock-photo-woman-exercising-in-gym-1.jpg',0,'attachment','image/jpeg',0),(6410,0,'2018-03-19 21:20:57','2018-03-19 21:20:57','','Rachel France - Listening to Dan John, Never Let Go','','inherit','closed','closed','','rachel-france-listening-to-dan-john-never-let-go','','','2018-03-19 21:20:57','2018-03-19 21:20:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Rachel-France-Listening-to-Dan-John-Never-Let-Go-1.jpg',0,'attachment','image/jpeg',0),(6415,0,'2018-03-19 21:37:55','2018-03-19 21:37:55','','Walking','','inherit','closed','closed','','walking','','','2018-03-19 21:37:55','2018-03-19 21:37:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Walking-1.png',0,'attachment','image/png',0),(6417,0,'2018-03-19 21:45:08','2018-03-19 21:45:08','','Why I Believe Best Selling Author & Strength Guru, Dan John, Was Wrong...','','inherit','closed','closed','','why-i-believe-best-selling-author-strength-guru-dan-john-was-wrong-2','','','2018-03-19 21:45:08','2018-03-19 21:45:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Why-I-Believe-Best-Selling-Author-Strength-Guru-Dan-John-Was-Wrong.png',0,'attachment','image/png',0),(6451,3,'2018-03-26 21:25:34','2018-03-26 21:25:34','<span style=\"font-weight: 400;\">From my humble beginnings, I most definitely have felt like a fraud at times. Thinking things like... \"how on earth did I get on this stage speaking to hundreds of fitness professionals.\" </span>\n\n<span style=\"font-weight: 400;\">My colleague, Mark Laws, is also very open and honest about not having a degree nor even spending any time studying at a university, yet we both find ourselves in influential positions in the health and fitness industry. We regularly find ourselves presenting to hundreds, maybe thousands of people regularly across all media and face to face platforms which is a huge responsibility neither of us takes lightly. </span>\n\n<span style=\"font-weight: 400;\">The fact we do NOT have a degree under our belts is by no means any reflection of our intelligence, nor our passion for learning. In fact, this is quite likely the very reason we have so much passion and desire to learn and also share our experiences.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">During all of my schooling years, I was told I was ‘non-academic’ even by my parents, who were both teachers! They meant well however it had left me with the belief that I was not intelligent and so would have to accept a less ambitious work lifestyle. </span>\n\n&nbsp;\n<h3><b>Did You Ever Experience This Kind Of Feeling?</b></h3>\n<span style=\"font-weight: 400;\">So many learners that come into our academy, privately take me to one side, call or email me at some point to explain their knowledge of anatomy isn’t that great and would I bear that in mind when asking questions in front of the group. The fear of being caught out as a fake when it comes to, in particular, A&amp;P knowledge is extremely common in my 12 years experience of teaching.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone thinks everyone else knows more than them!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This I find fascinating but it also drives me to do all I can to pass on the techniques I used to improve my learning ability, self belief and therefore confidence to do what I now do. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all managed to pass our level 2 A&amp;P, then dread our level 3 A&amp;P because they then want us to recall all of those damned muscle attachments. If you were anything like me back then, I ignorantly/arrogantly wondered why I needed to remember where vastus medialis was when I knew how to teach someone to squat, for goodness sake!?!?! Oh how naive I was.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But let me tell you that I have yet to meet any learner who comes into our academy either </span><i><span style=\"font-weight: 400;\">knowing</span></i><span style=\"font-weight: 400;\"> their anatomy or that </span><i><span style=\"font-weight: 400;\">think</span></i><span style=\"font-weight: 400;\"> they know their anatomy and then we do tasks that prove we literally forgot everything we were taught, right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We had no practical reason to remember them! Clients only ever really needed to know ‘bum’, ‘thigh’ or ‘arm’ didn’t they?</span>\n\n&nbsp;\n<h3><b>Talking Anatomy To Physiotherapists Or Even Surgeons</b></h3>\n<span style=\"font-weight: 400;\">When things go wrong that\'s when you realise you don\'t know enough or you talk to a physio or therapist and they can recall more of the theory A&amp;P and there is a good chance this makes you feel inferior</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Stop!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because what Mark and I have proved is ‘non academics’ are not dumb, not unintelligent nor actually not academic, we just didn\'t find our reason to recall it yet or our preferred method to truly absorb the information. We were not inspired when at school or in that particular learning environment.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what can we do to improve our confidence?</span>\n<h3>How Do You Improve Your Anatomy &amp; Physiology Knowledge &amp; Recall?</h3>\n<span style=\"font-weight: 400;\">Well we could simply read for hours about muscle attachments but this was the problem in the first place for many of us. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We could find </span><i><span style=\"font-weight: 400;\">reasons</span></i><span style=\"font-weight: 400;\"> to recall them or </span><i><span style=\"font-weight: 400;\">methods</span></i><span style=\"font-weight: 400;\"> that help recall them. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This ability to recall then increases our confidence and when you feel confident you enjoy it more and it starts to become something you want to do it more.</span>\n\n&nbsp;\n\n<strong>Example: I bet if you have ever had an injury that you <i>know</i> the anatomy of that injury, right!?</strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You looked in the books, researched and found all of the details you needed to understand how YOU could make it better so you could help yourself recover quicker. You had an important reason to research and recall!</span>\n\n<span style=\"font-weight: 400;\">So let’s find good reasons to recall our anatomy and start with the easy stuff. Like understanding movement. If you are in the fitness industry you MUST surely be a human movement geek?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">During every single one of our workshops we meet all sorts of human movement geeks just like you and me. We quite deliberately make things as simple as possible. With a subject like ‘biomechanics’, things can be really complex simply because of the many differences between us. For example:  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Somatotype</span>\n\n<span style=\"font-weight: 400;\">Previous injury</span>\n\n<span style=\"font-weight: 400;\">Daily routine</span>\n\n<span style=\"font-weight: 400;\">Chosen sport</span>\n\n<span style=\"font-weight: 400;\">Job</span>\n\n<span style=\"font-weight: 400;\">Ability </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some of these things we can change, some we can’t but each will make us move slightly differently to the next person. </span>\n\n&nbsp;\n<h3>3 Step Process For Personal Trainers Wanting To Improve Their Anatomy &amp; Physiology Knowledge</h3>\n<span style=\"font-weight: 400;\">Back To Basics - </span><i><span style=\"font-weight: 400;\">Group Action of Muscles Task </span></i>\n\n<span style=\"font-weight: 400;\">Let me give you some tips that we give to our learners within our academy:</span>\n<ol>\n 	<li><span style=\"font-weight: 400;\"><strong>Start simple -</strong> Unless you are an </span><i><span style=\"font-weight: 400;\">anatomist</span></i><span style=\"font-weight: 400;\">, the most important part to gaining confidence in anatomy is understanding </span><i><span style=\"font-weight: 400;\">movement</span></i><span style=\"font-weight: 400;\">. This is why we learned skeletal movements first. Flexion, extension, abduction, adduction, rotation etc. There is no point moving onto learning the muscles until you are confident with movement analysis since this is more important part of our job as a trainer or coach.</span><strong> </strong></li>\n 	<li><strong>You should know your major muscle GROUPS.</strong> The hip flexors, the hip extensors, the knee extensors etc. Confidence in this language allows you to communicate with your peers about movement. It also allows you to programme more effectively when you understand how much of your programming works each of these movements.</li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>Then start watching your clients movement and see if you can work out, during specific exercises what is happening.</strong> Forget muscles ONLY think of the movements and ask yourself </span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Which joint is moving? </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What action it is going into?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What are the prime movers? (Groups of muscles)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What are the antagonists? (Groups of muscles)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What are the synergists? (Groups of muscles)</span></li>\n</ol>\n</li>\n</ol>\n<span style=\"font-weight: 400;\">Once you are nailing these 3 skills, THEN, go back and start to learn which individual muscles make up the groups. This is when it starts to be more challenging because some muscles do more than one thing. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have a go and let me know how you get on but if you would prefer to do this in a classroom or on a webinar PLEASE do hit the link below or send your details and we will happily teach you just how simple it can be to remember all of the necessary anatomy you need!</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Would YOU Like To Experience The Buzz With Us?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','Do You Ever Feel Like A Fraud? 3 Steps To Learning Anatomy & Physiology','','draft','closed','closed','','3-steps-to-learning-anatomy-physiology','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=6451',0,'post','',0),(6453,0,'2018-03-26 16:26:26','2018-03-26 16:26:26','','3 Steps To Learn Anatomy & Physiology','','inherit','closed','closed','','3-steps-to-learn-anatomy-physiology','','','2018-03-26 16:26:26','2018-03-26 16:26:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/03/3-Steps-To-Learn-Anatomy-Physiology-2.png',0,'attachment','image/png',0),(6456,0,'2018-03-26 21:19:03','2018-03-26 21:19:03','','3 Steps To Learn Anatomy & Physiology (1)','','inherit','closed','closed','','3-steps-to-learn-anatomy-physiology-1','','','2018-03-26 21:19:03','2018-03-26 21:19:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/03/3-Steps-To-Learn-Anatomy-Physiology-1-1.png',0,'attachment','image/png',0),(6471,3,'2018-04-02 20:23:26','2018-04-02 20:23:26','<h4><b>Guest Article by Chartered Physiotherapist, Martin Haines</b></h4>\n<span style=\"font-weight: 400;\">In sports and fitness training a common injury for clients is adductor strains.  They are often caused by poor spinal and pelvic biomechanics and a Biomechanics Coach or therapist trained in biomechanical screening would be able to find the causes of such injuries.  Fitness instructor and Personal Training qualifications are much stronger and valuable to the client if they have a this dual Biomechanics Coaching qualification.</span>\n\n&nbsp;\n<h3>What Do The Adductors Do?</h3>\n<span style=\"font-weight: 400;\">To learn more about this condition, the adductor muscles comprise five adductor muscles in the groin, stretching between the pelvis and the inside of the thigh bone (femur), and adductor longus is the most commonly injured of this muscle set. Its function is to pull the legs together (adduction) and it is used extensively when playing football or rugby, sprinting, hurdling and horse-riding. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">An important factor not to be overlooked is the risk of an adductor strain being confused with a <a href=\"https://www.biomechanicseducation.com/abdominal-injuries-hernia/\" target=\"_blank\" rel=\"noopener\">sportsman’s hernia</a>,</span><span style=\"font-weight: 400;\"> it is sometimes difficult to differentiate between the two, so if there is any doubt, do get it checked by a qualified and experienced therapist or doctor.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Most people usually feel pain in the groin at the top of the adductor muscle, which can radiate down the leg; there can also be swelling and bruising in the area. It usually hurts when they try and pull their legs together against a resistance and can hurt if stretching the leg out to the side. Also, if they were to try and run, it would be very painful in the groin and adductor area. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Muscle tears are graded according to severity. Grade 1 is a mild tear, which presents itself as mild discomfort and a little tenderness. Grade 2 is a partial tear with more discomfort and there is often swelling, usually painful to the touch, which results in limited range of movement. Grade 3 is a severe tear or complete rupture of a muscle and is normally very painful, with swelling and an inability to walk or run. A full tear or complete rupture can be very debilitating and a small lump or gap can usually be felt in the muscle, at that point.  </span>\n\n&nbsp;\n<h3><strong>The Causes Of An Adductor Muscle Tear</strong></h3>\n<span style=\"font-weight: 400;\">Injuries are commonly caused by both intrinsic and extrinsic factors. Common extrinsic factors for adductor longus injuries include activities that require high-speed acceleration and deceleration, such as sprinting, rapid changes of direction or sports where kicking and jumping are required. It can also be caused in football, when players stretch beyond their physical capabilities to retrieve a ball or perform a tackle.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This injury is much more likely to occur if there are intrinsic causes too. If your clients have a stiff lower back, tight nerves in your hips and legs, stiff hip joints or weakened adductors due to a twisted pelvis, which they may not even realise they have, the risk of tears are much higher. You may be able to get away with either an intrinsic or an extrinsic cause, but a combination of both represents a high-risk factor.</span>\n\n&nbsp;\n<h3><b>Recovering From An Adductor Muscle Tear</b></h3>\n<span style=\"font-weight: 400;\">The principles of Rest, Ice Compression and Elevation (R.I.C.E) will help with the acute symptoms. A compressive thigh sleeve can help reduce the swelling and, indeed, minimise it if they apply the support soon enough. Once the acute pain has started to subside, a gentle stretching regimen can help healing and restore the muscle’s range of movement. Also, if they see an experienced and qualified sports masseur they should find this helpful for regaining function in the muscle. Once the pain has diminished, any swelling has gone and they have regained almost full range of movement, you can start to strengthen the muscle. Try exercising with a Cliniband to start working the adductor muscle again, eventually working on the ‘innie &amp; outie’ machines that Dan John states are useless (<a href=\"https://www.biomechanicseducation.com/why-i-believe-best-selling-author-strength-guru-dan-john-was-wrong/\" target=\"_blank\" rel=\"noopener\">see Rachel\'s post from last week</a>).</span>\n\n&nbsp;\n<h3><b>How To Prevent Adductor Muscle Tears </b></h3>\n<span style=\"font-weight: 400;\">To try preventing this injury, you have to consider both extrinsic and intrinsic causes.  Look at the sport they perform and see if it demands any of the actions described above that cause the injury. If so, gradually increase the amount of work they perform in the gym to get their hips, pelvis and spine in good physical condition, and with sufficient flexibility in the nerves and muscles (<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">and yes this is what Rachel shows you from an intrinsic point of view on the Biomechanics Coaching programmes</a>). Also, build up the amount of acceleration and deceleration work they do, although make sure not to rush into a new phase of training too quickly, giving their body time to adapt.</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','The Cause, Treatment & Prevention Of Adductor Muscle Tears In Sports Players & Fitness Clients','','draft','closed','closed','','the-cause-treatment-prevention-of-adductor-muscle-tears-in-sports-players-fitness-clients','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=6471',0,'post','',0),(6472,0,'2018-03-30 09:53:05','2018-03-30 09:53:05','','The Cause, Treatment & Prevention Of Adductor Muscle Tears In Sports Players & Fitness Clients','','inherit','closed','closed','','the-cause-treatment-prevention-of-adductor-muscle-tears-in-sports-players-fitness-clients-2','','','2018-03-30 09:53:05','2018-03-30 09:53:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/03/The-Cause-Treatment-Prevention-Of-Adductor-Muscle-Tears-In-Sports-Players-Fitness-Clients-1.jpg',0,'attachment','image/jpeg',0),(6680,3,'2018-04-10 07:14:44','2018-04-10 07:14:44','<span style=\"font-weight: 400;\">Group exercise has certainly been a passion of mine for 25yrs because I really enjoy the atmosphere of a group. </span>\n\n<span style=\"font-weight: 400;\">My group exercise ‘style’, if you like, is one of humour, promoting laughter where possible, each person has a nickname based on their personality and I also encourage ‘freestyle’ moments for them to break into some of their own moves during specific sections of the class sometimes for example. (This is hilarious fun).</span>\n\n<span style=\"font-weight: 400;\">This kind of thing probably isn\'t appropriate in one to one sessions right!?</span>\n\n&nbsp;\n<h3>The Good Side Of Group Exercise</h3>\n<span style=\"font-weight: 400;\">As a group we all enjoy the banter, the energy and the social aspect of exercising together.</span>\n\n<span style=\"font-weight: 400;\">Then there are also the ‘moments’ like the one I had last week when one of the very quiet ‘back row’ girls came up to me at the end of the class with tears in her eyes, put her hand on my arm and said emphatically; </span>\n\n<span style=\"font-weight: 400;\">“Thank you I really needed to laugh like that after the week I have had”. </span>\n\n<span style=\"font-weight: 400;\">Now I have no idea what happened to her that week, and I don’t need to, but that demonstrated how we can even unknowingly be helping others within the group setting without individuals feeling exposed.</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-6683\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/04/Rachel-France-Biomechanics-Education-Group-Exercise-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group exercise also drives me NUTS!!</span>\n\n&nbsp;\n<h3>The Bad Side Of Group Exercise.... The Limitations</h3>\n<span style=\"font-weight: 400;\">Everyone is different, moves differently, has different somatotype, different injury history, different lifestyles, are different ages, have different levels of fitness and different characters.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As we look at one person who we feel could squat a bit lower, we worry about saying it out loud as the one who is already almost at full range may try to go further due to hearing the verbal cue for someone else to go lower!</span>\n\n<span style=\"font-weight: 400;\">Encouraging one to do a tuck jump while simultaneously saying to others to simply box jump.</span>\n\n<span style=\"font-weight: 400;\">Gone, it seems, are the days of beginners, intermediate and advanced classes!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So for those who might consider group exercise as unsafe, is ruining people (some may well be!) or that L2 group exercise instructors are not appropriately trained (this is a governing body issue for a future Juicemail) please recognise how we can work together for the health and fitness of our gym members.</span>\n\n&nbsp;\n<h3>Adapting A Group Exercise Session</h3>\n<span style=\"font-weight: 400;\">Quite regularly, and due to my background, I am known for getting ‘on one’ about the quality of my participants\' movements. Now please understand these are my little group exercise family and we share moments every week, so I care about them, we even go to Yo Sushi some Wednesdays!!</span>\n\n<span style=\"font-weight: 400;\">So with good intention often I find myself offering a ‘clinic’ at the beginning or at the end of a class to educate them on WHY they might be unable to squat or what a good deadlift should look like, how they can use foam rollers or should see a PT for bespoke exercise prescription. Sometimes I have done handouts and have been known to set them homework or tasks to make them aware of their own physical abilities. </span>\n\n<span style=\"font-weight: 400;\">Their movement issues often have nothing to do with </span><i><span style=\"font-weight: 400;\">technique</span></i><span style=\"font-weight: 400;\"> because no amount of teaching points, coaching cues or guidance can help them during a group class. </span>\n\n<span style=\"font-weight: 400;\">What I recognise is that some of these individuals really need some one to one training to improve the way they move with bespoke exercises. This is where I refer them and this may be to a PT, a Biomechanics Coach&#x2122;, a massage therapist or the appropriate person for their requirement. </span>\n\n<span style=\"font-weight: 400;\">I am stunned that most clubs don’t have this \'system\' set up and in place!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is a real challenge during a one hour group exercise session to coach 20-30 people to timed music and steps with some of the class participants being unable to get their squat ‘technique’ right or who literally cannot plank at all or tell you they have a shoulder problem during the push up section (as they forgot to when you asked if anyone had any injuries at the beginning of the class - I know all the group exercise instructors are nodding right now!)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OK so I recognise not all group exercise fans/participants are going to buy into some one to one sessions but with a little bit of education on what could be causing their knees to cave in during lunges in our classes can go along way - they trust us!!</span>\n\n<span style=\"font-weight: 400;\">More often than not they have intrinsic biomechanical issues that need addressing to improve the way they move and enable them move more efficiently first.</span>\n\n<span style=\"font-weight: 400;\">Fair enough I may have different skills to a L2 Exercise to Music Instructor but seriously, PT’s everywhere you are missing a trick if you DON’T build a relationship with the group exercise instructor in your clubs and support them more!!</span>\n\n<span style=\"font-weight: 400;\">Group exercise participants make up a huge percentage of gym membership, they are super keen to improve the way they look and move and are an avid and trusting audience that come back to see their group fitness instructor week in, week out.</span>\n\n<span style=\"font-weight: 400;\">Imagine that I influence up to 60-80 gym members across 2 hours every week AND getting paid to market myself to them (I don’t work one to one from this club and so I always refer).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What\'s the message here?</span>\n\n&nbsp;\n<h3>3 Key Points For Personal Trainers Who Want To Grow Thier Business &amp; Influence More People</h3>\n<span style=\"font-weight: 400;\">Well there are 3 key points to note;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). PT’s you really should start talking to the group exercise instructors more, building a relationship with these passionate professionals who can directly refer people with good reason and regularly. Maybe offer to train them at a reduced rate or even for free so they can talk about the benefits of your one to one training to their class members.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">2). Design a small group PT package or a special arrangement for these participants where they can share the cost with their friend and still enjoy the ‘group’ feel even if it is just 2 or 3 of them for example.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">3). Even as PT’s you might want to consider delivering group exercise as a paid way to advertise yourself to a new market of gym members!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I recognise some of you are doing this already but for those who aren\'t it might be something to seriously consider. </span>\n\n<span style=\"font-weight: 400;\">If not simply use points 1 &amp; 2!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally please understand the challenge we face as group exercise instructors. We may well be a superb resource for your one to one client market. Why not approach us to offer us support?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is room for all types of exercise from group to one to one - let\'s work together for better duty of care of our people - because Dr Funck (this is actually her real name), Laura ‘Ninja Turtle’ Loud, Mr C, Mr B, Jerry Pop and the quiet back row lady are all people who certainly make MY week special along with all the other group exercise participants, and I really genuinely care about them after 13 years of teaching them every week.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are a formidable team every Wednesday if you fancy joining us!? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">;)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you want to learn one to one techniques to enhance what you do with our participants when we refer them to you with a problem? Imagine being the personal trainer that all the group exercise instructors in your gym referred people too...</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\"><span style=\"font-weight: 400;\">Then you should seriously consider becoming a Biomechanics Coach&#x2122; in 2018, click here to find out more.</span></a>\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-6682\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/04/Rachel-France-Group-Exercise.jpg\" alt=\"\" width=\"960\" height=\"638\" />\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','Why Personal Trainers Need To Get Over Their Issues With Group Exercise','','draft','closed','closed','','why-personal-trainers-need-to-get-over-their-issues-with-group-exercise','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=6680',0,'post','',0),(6681,0,'2018-04-09 09:41:05','2018-04-09 09:41:05','','Why personal trainers need to get over their issues with group exercise','','inherit','closed','closed','','why-personal-trainers-need-to-get-over-their-issues-with-group-exercise-2','','','2018-04-09 09:41:05','2018-04-09 09:41:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/04/Why-personal-trainers-need-to-get-over-their-issues-with-group-exercise-1.png',0,'attachment','image/png',0),(6682,0,'2018-04-09 09:43:02','2018-04-09 09:43:02','','Rachel France - Group Exercise','','inherit','closed','closed','','rachel-france-group-exercise','','','2024-08-07 10:36:15','2024-08-07 10:36:15','',39349,'https://biomechanicseducation.com/wp-content/uploads/2018/04/Rachel-France-Group-Exercise-1.jpg',0,'attachment','image/jpeg',0),(6683,0,'2018-04-09 09:44:23','2018-04-09 09:44:23','','Rachel France - Biomechanics Education - Group Exercise','','inherit','closed','closed','','rachel-france-biomechanics-education-group-exercise','','','2018-04-09 09:44:23','2018-04-09 09:44:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/04/Rachel-France-Biomechanics-Education-Group-Exercise-1.jpg',0,'attachment','image/jpeg',0),(6721,3,'2018-04-16 19:30:47','2018-04-16 19:30:47','<h2>How Personal Trainers Can Think Differently To Be Better Coaches</h2>\n<span style=\"font-weight: 400;\">Having become a massive audiobook fan to make use of the 35k miles I have driven regularly each year, I have literally filled my phone with all sorts of fabulous books FILLED with information! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a ‘non-academic’ this resource is SO exciting for me and helps me to learn quickly and easily during a time that I would normally feel to be wasted. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It amazes me that I can get through a book a week sometimes. With all sorts of subjects from business and marketing to emotional intelligence and communication skills. Me and my buddy and colleague, <a href=\"https://www.youtube.com/channel/UCvWp3M2Bz5MoYclt1FIJkOw\" target=\"_blank\" rel=\"noopener\">Chris Wright</a>, are always swapping audiobook ideas.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here’s one I would like to share with YOU (for starters)…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Recently I’ve been engrossed in the well-known book by Stephen R Covey, ‘</span><i><span style=\"font-weight: 400;\">7 Habits of Highly Successful People’ </span></i><span style=\"font-weight: 400;\">again</span> <span style=\"font-weight: 400;\">and</span> <span style=\"font-weight: 400;\">he uses the term ‘</span><i><span style=\"font-weight: 400;\">Paradigm Shifting’</span></i><span style=\"font-weight: 400;\">. This term is something we have used in our academy from the very beginning of our programme development and design. Covey gives a fantastic example of how to understand this term.</span>\n\n&nbsp;\n<h3><b>But First What Is A ‘Paradigm?’</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The internet says;</span>\n\n<i><span style=\"font-weight: 400;\">A typical example or pattern of something; a pattern or model.</span></i>\n\n<i><span style=\"font-weight: 400;\">\"society\'s paradigm of the ‘ideal woman’”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">A world view underlying the theories and methodology of a particular scientific subject.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">\"the discovery of universal gravitation became the paradigm of successful science”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In simple terms I guess it is </span><i><span style=\"font-weight: 400;\">how you see things in your head.</span></i>\n\n&nbsp;\n\n<em><strong>This idea would suggest it to be a great way to influence someone else\'s behaviour by offering a new way of seeing a situation. </strong></em>\n\n&nbsp;\n<h3>An Example Of A Paradigm Shift - Imagine You Were Cover In This Situation...</h3>\n<span style=\"font-weight: 400;\">The example scenario Covey experienced and explained in his book went something like this; </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A man with his 2 kids who were being unruly, running around and disturbing people, while he sat on a bench next to Covey.</span>\n\n<span style=\"font-weight: 400;\">Covey was trying to read his paper and felt annoyed by these ‘out of control’ kids thinking to himself.. </span><i><span style=\"font-weight: 400;\">“why can’t he control his kids?”</span></i>\n\n<span style=\"font-weight: 400;\">Eventually, Covey said to the man..</span><i><span style=\"font-weight: 400;\">“excuse me but aren\'t your kids a little out of control?”</span></i>\n\n<span style=\"font-weight: 400;\">The man replies, looking somewhat deflated.. </span><i><span style=\"font-weight: 400;\">“yes yes I guess I should but well we just left the hospital and their mother just died an hour ago and I guess they don\'t know yet how to deal with it and I guess me too”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Covey’s paradigm shifted in a moment once he heard the plight of this poor family and his annoyance shifted to sympathy. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Covey encourages us to think about how OUR feelings shifted as WE heard or read the story here.</span>\n\n<span style=\"font-weight: 400;\">It is evidence of how one\'s own perception of a situation can shift instantly the moment we realise the other view point.</span>\n\n&nbsp;\n<h3>How Can We Use The Paradigm Shift To Help Us As Personal Trainers?</h3>\n<span style=\"font-weight: 400;\">So can we give more detail about how WE view a situation to enable a better understanding of the circumstances surrounding it or at least our view of it? </span>\n\n<span style=\"font-weight: 400;\">Should we be asking more questions prior to making some kind of judgement?</span>\n\n<span style=\"font-weight: 400;\">Maybe we should open our thoughts to differing viewpoints before we make a decision?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine your client saying they forgot to do their exercise home work or couldn’t find time to make the healthy dinner we suggested. </span>\n\n<i><span style=\"font-weight: 400;\">HOW ANNOYING! </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You had created a beautiful exercise sheet and paid to get it printed at the post office. Also, you had taken the time to explain each one in detail and how to perform them for better movement ability ready for their next session with you. You had spent a good hour last night typing up some really simple healthy recipes for your client to make for the whole family that will contribute to their weight loss goals.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YOU would feel frustrated by the fact they turned up for the next session saying they didn\'t do anything with this wouldn\'t you!?!?</span>\n\n<span style=\"font-weight: 400;\">It REALLY annoys you because it will make YOU look bad as their trainer if your client is not succeeding. GGGRRRRRRR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT now consider how you would perceive the situation if you heard this;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They are struggling to think of anything other than their really sick parent who lives 100 miles away and they had to drive to care for them after they got a call after work that their parent had fallen and couldn\'t get up. So with the kids in the back of the car they had to drive straight there from the school pick up. This also meant they were left with no time to do their exercises and to shop and create the fantastical healthy (and easy to do) meal you had suggested. Hence the fast food meal they had ended up buying instead.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Paradigm shift right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We humans are generally empathetic by nature.</span>\n\n<span style=\"font-weight: 400;\">Another example relevant for our industry is that there are so many articles and videos out there that are by people who are not demonstrating an inclusive view point considering ALL of its readers or viewers. What I mean is those articles that suggest that everyone should do one thing, for example; </span>\n\n&nbsp;\n<ul>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">squat with toes pointing forward</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">women should do more cardio</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">everyone should eat paleo</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">dairy is bad for you </span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">orthotics are bad</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">stretching is bad for you</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">we should all learn to use foam rollers</span></i></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">None of these statements consider every person who may squat, like dairy, need orthotics etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is often a single viewpoint that is offered into our industry about methods of exercise prescription, movement correction, risk reduction or diet etc. The author has usually had an experience that created THEIR belief or idea and maybe this happened to most of the people they knew. So they wanted to tell others in an attempt to help. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet we are all different!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some people can eat dairy, some like paleo, some do and some don\'t respond to stretching.</span>\n\n<span style=\"font-weight: 400;\">Maybe we should be encouraged to challenge the ideas we hear more, in a positive way of course! </span>\n\n<span style=\"font-weight: 400;\">This would allow us to understand better the thinking behind an idea or viewpoint we hear someone else describe. WE should give clarity on our ideas along with the WHYs.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ultimately this would also allow us, our audience, clients and peers to appreciate better WHY WE feel the way WE do or WHY WE think this way about a certain situation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So rather than simply following the crowd maybe we should learn about the thinking behind an idea, method or trend so we can consider logically our own view as to what is right for US or each of our clients - individually.</span>\n\n<span style=\"font-weight: 400;\">No method works for all, ALWAYS case by case or ‘it depends\' on the individual SHOULD always be considered. </span>\n\n<span style=\"font-weight: 400;\">Don’t you think?</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to experience paradigm shifting?</span>\n\n<span style=\"font-weight: 400;\">Do you want to experience an excitingly inclusive learning environment?</span>\n\n<span style=\"font-weight: 400;\">Would you like to learn how to positively challenge concepts?</span>\n\n<span style=\"font-weight: 400;\">Are you looking for an open minded methodology of exercise prescription?</span>\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">If you answered yes to those then you should definitely check our programmes. Click here to find out more.</a>\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','How A Paradigm Shift Can Change How You Feel In A Moment & Why You Should Get The Whole Story First','','draft','closed','closed','','how-a-paradigm-shift-can-change-how-you-feel-in-a-moment','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=6721',0,'post','',0),(6724,0,'2018-04-16 15:31:36','2018-04-16 15:31:36','','Paradigm Shift - Biomechanics Coaching','','inherit','closed','closed','','paradigm-shift-2','','','2018-04-16 15:31:36','2018-04-16 15:31:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/04/Paradigm-Shift-1.png',0,'attachment','image/png',0),(6769,3,'2018-04-23 12:34:17','2018-04-23 12:34:17','So many of us have found ourselves attending more and more training to try and know as much as possible to help all of our clients to the best of our ability, right??\n\nYet we are still left feeling like we don\'t know enough or maybe we still don\'t have all the answers.\n\nMaybe you\'re just fed up with taking course after course and you just want someone to talk to and/or maybe refer your clients to?\n\nWhile more and more of us are starting to work together with other professionals, this style of practice should be how we are taught for the best duty of care we can offer.\n\nHere are 4 tips on how it could be done...\n\n&nbsp;\n<h3>No 1. Attempt To Open Up Communication With Other Professionals</h3>\nThis very simple concept may feel alien to some of you out there BUT we shouldn\'t feel that we should try and know everything to help our clients. We should get REALLY good at the skills we possess and feel confident to refer out to someone else when we do not find the answer or if we feel another opinion is required.\n\nTHIS IS OUR DUTY OF CARE..\n\n…and demonstrates our commitment to it. With the client\'s permission, we should share our view on their physicality to best advise the other professional on how we have been advising the client improve.\n(Don\'t forget you MUST get the clients permission, in writing ideally, to swap and discuss their personal details with another professional otherwise they are able to claim a breach of confidentiality. Simply add it to the T&amp;C’s or ParQ you ask them to sign in their initial consultation BUT also tell them that they are signing that too).\n\nSo rather than simply suggesting they go to see ‘a therapist’ or someone else, actually refer them to someone you know who has different, but complementary, skills to yours. Build a relationship with practitioners you trust, who are open minded and offer you their thoughts and opinion. Getting their ideas about the issue and discussing their thoughts and yours combined allows you both to come to a joint conclusion of best practice for this individual. This is SO powerful and just makes sense!\n\nThis way YOU learn, THEY learn, the client learns AND neither professional has to worry about doing it alone, while the client gets to experience truly outstanding service.\n\nA blend of minds, experience and skills is surely better than one, right?\n\nForm a working relationship with this professional, and others, to obtain not only more information but referrals FROM them too!! Commercially this is better for you and it is a really confident professional who refers clients away!\n\nThis way each of you can focus on becoming the best you can be at YOUR skill set and service, accessing professional discussion with your ‘partners’ for added confidence in the service/s you provide.\n\nHow many practitioners do you think would turn you away if you approached them and said..\n\n“I want to send my clients to you, are you interested?”\n\nObviously, find someone who is willing and open to reciprocate and that you can build trust with. Maybe book yourself appointments with practitioners in your area, for your own interest and based upon how you feel about the way they manage you, approach those that you felt offered a quality, knowledgeable service.\n<h3></h3>\n<h3>No 2. Get REALLY REALLY Good At Your Skill Set</h3>\nNow you can focus on being the best at what YOU do. We are all turning into hybrids and this is a good thing to allow us to understand each style of practice;\n\nASSESS - MASSAGE- EXERCISE - TREAT\nASSESS - TREAT - EXERCISE - MASSAGE\nASSESS - EXERCISE - TREAT - MASSAGE\nASSESS - MASSAGE - TREAT - EXERCISE\nASSESS - TREAT - MASSAGE - EXERCISE\nASSESS - EXERCISE - MASSAGE - TREAT\n\nYou get the idea....\n\nBUT we can’t be great at everything and doing all of this during one session might be a push since the expected time slot is usually an hour.\n\nBy the way, this doesn’t have to be how you work!\nMany assumes or false into the 1hr session protocol just because everyone else does but you might decide to work based on 90 min sessions or even longer, maybe shorter. So long as this is clear up front and it could be your USP (unique selling point)\n\nAnyway if you do cram all of this into one hour or session then you may well be pushed for doing each really well - I know I would in the 1hr time frame. However, this could be an issue if you know your client requires all of these. So create a ‘flow’ with your team where by one is the specialist for one area, ie assessment. They then refer to the trainer about which exercises would be good and which can then be based on the assessment results. The exercise professional then refers them to the manual therapist for the hands on part. Then refer on to the clinician should an injury or problem arise. The clinician then refers back to the assessment professional for the clients journey back into exercise. Maybe they need a foot specialist or a sports specific coach!?\n\nHaving massage skills doesn’t mean you have to use them, knowing about foot function and orthotics doesn\'t mean you prescribe them but this knowledge allows you to understand when to refer for this service AND how to communicate with the other professional.\nNow you may decide you want to offer 2 or even 3 of these services, but decide which part of the services you are able to offer within your practice appropriately in your scheduling and then refer the rest. BUT do communicate where possible or build a team around you.\n<h3></h3>\n<h3>No 3. Stay Open Minded - Things Change!!</h3>\nThe idea that you qualify and TADAAAAH!…you’re done with training is, of course, out of date. Hence the plethora of CPD’s we are consistently being informed about.\n\nTHINGS CHANGE!\n\nNew ideas or research develops and new ways of doing things become available AND of course we are not using our bodies on the way they have been used for millions of years!\n\nSo we need to decide when we re-train, sample a new idea and refer, or amend, our commercial offering. Either way remember you can only do so much really well and also we should find professionals willing to stay up to date too. We should challenge each other AND what we are taught by education providers ALL of the time!\n\nProfessional open discussion should be inclusive and positive even where challenges might be made about a certain method. To have technical discussions about what is right for the individual, based on the data or evidence available and all thoughts laid out is really quite exciting and fascinating aside from it being BEST DUTY OF CARE for the client.\n\nKeep asking WHY until you understand at depth WHY that idea is better or a great addition or something to consider for that particular client for example.\n\n&nbsp;\n<h3>No 4. Find Trusted Organisations Who Offer Networking Opportunities.</h3>\nThere are some fantastic organisations out there that have set up as a support and networking system for professionals.\nThe Intrinsic Biomechanics Association (IBA) which has a monthly subscription fee offers at present 4 free workshops a year, branded clothing, £150 credit for education with the academy, discounted events, an amazing new online portal FULL of resources, personal mentoring and networking opportunities for fitness professionals interested in both the study of human movement/exercise and also looking for professionals to work alongside.\n\nThe Sports Therapy Association (STA) founded by Gary Benson is a superbly run resource for manual therapists. Gary is really passionate about offering genuine support. For a very small annual fee he works very hard to give his members access to information and CPD\'s through various mediums along with his regional ambassador team.\n\nGary and I are both very passionate about supporting YOUR success and confidence. We are enabling our members to meet each other and cross-refer to each other allowing us all to offer great DUTY OF CARE to our learners, clients across these 2 amazing and merging industries.\n\n&nbsp;\n\n&nbsp;\n\nTo find out more or to join the <a href=\"https://www.biomechanicseducation.com/intrinsic-biomechanics-association/\" target=\"_blank\" rel=\"noopener\">IBA CLICK HERE</a>\n\nTo find out more or to join the <a href=\"http://www.thesta.co.uk/\" target=\"_blank\" rel=\"noopener\">STA CLICK HERE</a>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','4 Tips To Better Serving Your Clients Through Referrals','','draft','closed','closed','','4-tips-to-better-serving-your-clients-through-referrals','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=6769',0,'post','',0),(6771,0,'2018-04-23 11:12:16','2018-04-23 11:12:16','','4 Tips To Better Serving Your Clients Through Referrals','','inherit','closed','closed','','4-tips-to-better-serving-your-clients-through-referrals-2','','','2018-04-23 11:12:16','2018-04-23 11:12:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/04/4-Tips-To-Better-Serving-Your-Clients-Through-Referrals-1.png',0,'attachment','image/png',0),(6843,3,'2018-04-30 17:48:13','2018-04-30 17:48:13','<h2>The Problem Of Selecting Exercises For Personal Trainers - Tired Vs Better.</h2>\n<span style=\"font-weight: 400;\">Have you ever struggled with exactly which exercise/s to prescribe your client?</span>\n\n<span style=\"font-weight: 400;\">Are you conscious of the exact reason why you choose the exercise/s you do for your client?</span>\n\n<span style=\"font-weight: 400;\">Why that exercise over that one?</span>\n\n<span style=\"font-weight: 400;\">Do you consider which movement/action you are strengthening?</span>\n\n<span style=\"font-weight: 400;\">Do you think about </span><i><span style=\"font-weight: 400;\">why?</span></i>\n\n<span style=\"font-weight: 400;\">Could you logically explain your choices?</span>\n\n<span style=\"font-weight: 400;\">Can you confirm the relevance of that specific exercise to their goal?</span>\n\n<span style=\"font-weight: 400;\">Are you able to assess and monitor their progress objectively?</span>\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having read a post from one of my previous learners, Biomechanics Coach&#x2122;, Garry Thompson...</span>\n<blockquote><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">“Any PT can make a client tired, but a great PT makes them better”. </span></i></blockquote>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It made me think...</span>\n\n&nbsp;\n<h3><strong>How do you decide which exercises to prescribe to your clients to make them better?</strong></h3>\n<span style=\"font-weight: 400;\">One of the gaps in our basic exercise prescription education is the true specificity of exercise prescription.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Generally, at level 3, we are taught squats are for legs or push ups for chest as a simplistic view of what I mean.</span>\n\n<span style=\"font-weight: 400;\">Yes some PT’s who recognise this are going too far the other way and making things far too complex with funky ‘functional’ training that is often too much and not appropriate for some individuals. They might also still be of the old mindset of a PT session should be all or nothing, no pain no gain, its gotta hurt, it’s gotta be sweaty….gotta make sure my clients knackered. Read Garry’s post title again!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does that make them better? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well of course it depends on their goal/s but what I am talking about is truly individual bespoke exercise prescription specifically based on the client\'s body, their movement capacity AND also their goal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whatever their goal, be it fat loss, muscle gain, tone up, event prep, post rehab etc all of them desire improved movement and some will require sport/activity specific movement training.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ask yourself this question </span><b><i>“can you justify every exercise choice you make?”</i></b><i><span style=\"font-weight: 400;\">  </span></i><span style=\"font-weight: 400;\">or are you simply giving squats for legs and push ups for chest?</span>\n\n&nbsp;\n<h3><b>How Do You Decide Which Exercises To Prescribe?</b></h3>\n<span style=\"font-weight: 400;\">We need to have a system or logical method to decide which specific exercises to prescribe. </span>\n\n<span style=\"font-weight: 400;\">Our generic education encourages us to consider training opposing muscle groups. i.e. if you perform chest exercises you should also perform back exercises. That makes sense, right!?</span>\n\n<span style=\"font-weight: 400;\">Of course but let\'s look at one example:</span>\n\n&nbsp;\n\n<strong>Example; Client has poor posture, rounded shoulders</strong>\n\n<span style=\"font-weight: 400;\">Train the back more?  Rows? Reverse fly? Lat pulldown?</span>\n\n<span style=\"font-weight: 400;\">Well you could but that would be </span><i><span style=\"font-weight: 400;\">assuming </span></i><span style=\"font-weight: 400;\">the back is ‘weaker’ and by doing back strength work will help open the chest, and it might! How do we KNOW that is the right choice of exercise based on what we are looking at?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A better question might be ‘</span><i><span style=\"font-weight: 400;\">WHY are they round shouldered in the first place?’</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Is the chest ‘tight’? so stretch first? (lengthen the agonist)</span>\n\n<span style=\"font-weight: 400;\">or in a subclinical spasm? or anti spasm? (contract the agonist 20%)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These 2 exercise contradict each other and one could compound the other problem.</span>\n\n<span style=\"font-weight: 400;\">So which one do we start with? </span>\n\n<span style=\"font-weight: 400;\">Do we only train the back? </span>\n\n<span style=\"font-weight: 400;\">Or only stretch the chest? </span>\n\n<span style=\"font-weight: 400;\">Or only anti spasm the chest?</span>\n\n<span style=\"font-weight: 400;\">Does stretching the chest make enough of a difference so we can then work the back?</span>\n\n<span style=\"font-weight: 400;\">Or anti spasm, then stretch, then strengthen the back?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Each of the above consideration leaves us with a different exercise choice. So which exercise do we choose? Which order to do them? How do we make that decision without KNOWING what the root cause of that specific posture is?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We NEED to be able to assess more objectively of course. Therapists do and so should we. Let\'s learn how to assess our clients\' </span><i><span style=\"font-weight: 400;\">intrinsic</span></i><span style=\"font-weight: 400;\"> biomechanics to make our exercise prescription more specific to their ‘capacity’ thus enabling us to JUSTIFY exactly WHY we are choosing this exercise over that one with a logical reasoning.</span>\n\n&nbsp;\n<h3><b>How Can We Assess The Client So We KNOW?</b></h3>\n<span style=\"font-weight: 400;\">Commonly PT’s are accessing postural assessment courses which can help but are subjective so still leave us with questions and feeling like we might be guessing. </span>\n\n<span style=\"font-weight: 400;\">This is </span><strong><i>extrinsic</i> biomechanics. </strong>\n\n<span style=\"font-weight: 400;\">This is what we do as exercise professionals already. We analyse the way clients move and coach them into better technique. </span><i><span style=\"font-weight: 400;\">“knees in line, back straight, feet in line!”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, if that poor technique is actually a lack of capacity due to muscle spasm, tight nerves or stiff joints, then attempting to correct it with verbal coaching and strength work may not get you the results you want. It may also make you anxious about whether you are actually giving the best exercises to your client since they can’t physically perform them well. Ever been there? I certainly have in the past.</span>\n\n&nbsp;\n<h3><b>Increase Your Confidence &amp; Improve Your Clients Results</b></h3>\n<span style=\"font-weight: 400;\">Understanding how to logically justify your actions will massively increase your confidence. It will also mean you improve your results and client satisfaction. They will recognise and respect your guidance even if it is different to other PT’s because you can always justify WHY you are asking them to do certain things. </span>\n\n<span style=\"font-weight: 400;\">Do you want more objectivity in your assessment/induction skills?</span>\n\n<span style=\"font-weight: 400;\">Do you want to increase your ability to justify your exercise prescription?</span>\n\n<span style=\"font-weight: 400;\">Would you like to increase your confidence in choosing the right exercises at the right time for your clients?</span>\n\n<span style=\"font-weight: 400;\">Would you like to retain your clients?</span>\n\n<span style=\"font-weight: 400;\">Do you want to improve results even more?</span>\n\n<span style=\"font-weight: 400;\">Understanding how to assess </span><strong><i>intrinsic</i></strong><span style=\"font-weight: 400;\"><strong> biomechanics</strong> is vital for us as exercise professionals. PT’s, Pilates or Yoga teachers otherwise we are GUESSING! We need to analyse and monitor our clients with more than just fat calipers, fitness testing and weighing scales. We need to understand their physical capacity for movement before we do anything. Don’t you agree?</span>\n\n&nbsp;\n\nIf you would like to find out more about our programmes and courses then just click here...\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','How Should Personal Trainer\'s Choose Exercises For Their Client\'s?','','draft','closed','closed','','how-should-personal-trainers-choose-exercises-for-their-clients','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=6843',0,'post','',0),(6846,0,'2018-04-30 17:45:13','2018-04-30 17:45:13','','Personal Trainers - Exercise Prescription - Tired vs Better (Biomechanics Coaching)','','inherit','closed','closed','','personal-trainers-exercise-prescription-tired-vs-better-biomechanics-coaching','','','2018-04-30 17:45:13','2018-04-30 17:45:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/04/Personal-Trainers-Exercise-Prescription-Tired-vs-Better-Biomechanics-Coaching-1.png',0,'attachment','image/png',0),(7024,3,'2018-05-07 19:31:54','2018-05-07 19:31:54','<span style=\"font-weight: 400;\">As you may, or may not, know I get to travel quite a bit around the UK delivering workshops, presentations and lecturing at various events and universities.</span>\n\n<span style=\"font-weight: 400;\">Also having studied business for a few years I have learned, and now understand a little better, the value of<em> familiarity. </em></span>\n\n<span style=\"font-weight: 400;\">Lenny Henry not only promises me a good night sleep guarantee, he delivers this promise...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Every </span>\n\n<span style=\"font-weight: 400;\">Single</span>\n\n<span style=\"font-weight: 400;\">Time</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">HOW?</span>\n<h3>Premier Inn &amp; Lenny Henry\'s Guaranteed Good Night Sleep</h3>\n<span style=\"font-weight: 400;\">I mean before I even leave the house, and no matter where in the country I am going, I KNOW exactly what to expect right from when I arrive at the car park, enter reception, to when I enter my room, to when I climb into my bed and anything in between.</span>\n\n<span style=\"font-weight: 400;\">I KNOW there will be a restaurant nearby for food both in the evening and for breakfast. </span>\n\n<span style=\"font-weight: 400;\">AND</span>\n\n<span style=\"font-weight: 400;\">I KNOW there will be a certain smell and temperature as I climb the stairs. In my room there will be a large bed made up in crisp white sheets with a purple runner, a choice of pillows, a hair dryer, shampoo and a TV that I can watch from my bed. </span>\n\n<span style=\"font-weight: 400;\">This hotel’s business model, in my opinion, is superb since they deliver on their promise</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Every </span>\n\n<span style=\"font-weight: 400;\">Single </span>\n\n<span style=\"font-weight: 400;\">Time</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This hotel chain is probably one of my favourite examples of this as it is my \'<em>home from home\'</em> but other businesses do it too…</span>\n\n&nbsp;\n<h3>The McDonalds Promise</h3>\n<span style=\"font-weight: 400;\">McDonalds do it - whatever you think of them, they deliver on their promise (and yes I have been known to slurp on the occasional Crunchie McFlurry, after my sushi of course! ;-p ). Listen to Michael E Gerber\'s audio book, The E Myth Revisited and he will tell you the whole story.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is a bold statement to make a guarantee or promise about your product or service isn\'t it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe you\'re nervous about stating something so confidently?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are not.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what’s our promise?</span>\n\n&nbsp;\n<h3>The Biomechanics Education Promise</h3>\n<span style=\"font-weight: 400;\">Everyone who attends one of our workshops or joins our academy tells us they have a fantastic learning experience, I may even be so bold as to say from their comments, that it changes lives. We also take pride in the amount of support we offer even beyond the classroom...</span>\n\n&nbsp;\n<blockquote><i><span style=\"font-weight: 400;\">Hi Rachel,</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Thank you for a fantastic course last weekend. It was everything I was hoping for and really helped me understand why current training systems aren\'t working as they should be. </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">I have already adapted some of my clients programs to include the anti-spasm exercises with good results in just a few days. The course has left me questioning everything I do as a PT, which is definitely a positive thing.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">I definitely want/need to complete the rest of the workshops as soon as possible.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Thanks again for providing a fantastic course. I am really looking forward to the next courses.</span></i></blockquote>\n&nbsp;\n\n<hr />\n\n&nbsp;\n<blockquote><i><span style=\"font-weight: 400;\">Hi Rachel</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Thank you very much for the Pelvic Biomechanics workshop, I enjoyed every moment of it. I must say it is the first course when my brain was alert from 9  to 5 and there was no desire to have any conversation within my head , I do that when I am getting bored. You are an amazing tutor and a coach, you know how to make people feel important and have time to understand each and everyone. I did feel a lot of support whilst on the workshop and I think everyone felt that. The world is a much better place to live in, when people like you are around. Once again an enormous thank you.</span></i>\n\n&nbsp;</blockquote>\n\n<hr />\n\n&nbsp;\n<blockquote><i><span style=\"font-weight: 400;\">I’m not normally big on writing reviews or testimonials, but I\'m making an exception for this 2 day Pelvis Biomechanics workshop for a number of reasons</span></i>\n\n<i><span style=\"font-weight: 400;\">To start,  I\'ve never felt so excited about what I\'ve learnt from a workshop or course before.</span></i>\n\n<i><span style=\"font-weight: 400;\">Whilst some of it really challenged my thinking, and made me feel slightly uncomfortable at times (it made me question some of the ways I\'ve always done things).  Rachel explains it in such a way that it all makes perfect sense. </span></i>\n\n<i><span style=\"font-weight: 400;\">I now have information that is scientifically proven, that makes me believe I need to change the way I work, and to incorporate biomechanics screens into much more of what I do.</span></i>\n\n<i><span style=\"font-weight: 400;\">The tools and system that Rachel give you are so powerful both for you, and to get your clients onboard, they cannot be ignored.  </span></i>\n\n<i><span style=\"font-weight: 400;\">It’s going to take me a while to put everything I’ve learnt into practice.  But there’s a few things I know for sure. I need to know more. Everything I do in future must be backed up with science.  I need to question everything. And I most definitely want biomechanics screens to be a much bigger part of what I do. </span></i>\n\n<i><span style=\"font-weight: 400;\">Adding biomechanics screens to the way I work will most definitely, give me the confidence to charge more, have a real niche and elevate me far above my competitors.   I know I will get a return on this investment, and most importantly be able to help more people, and improve the service to the clients I already have.</span></i>\n\n<i><span style=\"font-weight: 400;\">If you are unsure about committing to the Biomechanics Coach&#x2122; Diploma, attend the iMoveFreely® workshop as a starting point.  It’s a good way to sample it, and come away with useful material without committing too much financially. </span></i>\n\n<i><span style=\"font-weight: 400;\">I cannot recommend any of Rachel’s courses highly enough.  From the the content of the course, Rachel’s energy, knowledge, enthusiasm and obviously love of what she does.  I for one will definitely be back for more. </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Thanks Rachel </span></i>\n\n&nbsp;</blockquote>\n\n<hr />\n\n&nbsp;\n<h3>What Can You Learn From These Examples?</h3>\nWhat experience do you provide for your clients?\n\nWhat promise do you have for them?\n\nWhat guarantee can you offer?\n\n&nbsp;\n<h4>Your Guarantee...</h4>\nCan you guarantee results?\n\nIf they follow everything you tell them do will they get results?\n\nYou bet they will!\n\n&nbsp;\n<h4>The Experience You Give Them...</h4>\nRemember that the experience a client has with you is so much more than just the coaching they get from you.\n\nIt\'s the walk into the facility entrance.\n\nIt\'s the smell as they walk in.\n\nIt\'s the greeting they get.\n\nIt\'s the cleanliness of the gym.\n\nIt\'s the other people in the gym.\n\nAnd so much more.\n\nYour coaching is just ONE part of their whole experience.\n\n&nbsp;\n\nNow if you are based in a gym, you may not be able to control some of these factors, but there is still a lot you can.\n\nLike how you greet them.\n\nHow you make them feel part of a community.\n\nHow quickly you follow up with them.\n\nYour coaching.\n\nYour level of support away from sessions.\n\nYou see there is a lot that you can control of the client experience and I encourage you to take a look at the whole customer journey and make sure that at every stage you are making sure its the environment you want it to be for them.\n\nBecause when you do this, you will start creating raving fans, and raving fans tell all of their friends about you and that will help you grow your business and gain even more clients.\n\n&nbsp;\n\n&nbsp;\n\nNow if you would like to take your coaching to the next level then <span style=\"font-weight: 400;\">why not join our academy in 2018/19?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YES, The 2018 schedule is NOW LIVE!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Use the skills the way we teach you to and…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We promise you will LOVE them!</span>\n\n&nbsp;\n\nWe promise your clients will LOVE them!\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We promise they will change the way you think!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We promise you will want more!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We promise full support even beyond your training!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YOUR MONEY BACK!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now there’s a promise!</span>\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">Click here to request a callback and for more information on our courses and programmes.</a>\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','What Do A Good Night Sleep, A Crunchy McFlurry & An Amazing Learning Experience Have To Do With You?','','draft','closed','closed','','personal-trainer-guarantee-customer-experience','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=7024',0,'post','',0),(7025,0,'2018-05-07 09:49:50','2018-05-07 09:49:50','','What Is Your Personal Training Guarantee_ Biomechanics Coaching','','inherit','closed','closed','','what-is-your-personal-training-guarantee_-biomechanics-coaching','','','2024-10-29 09:18:09','2024-10-29 09:18:09','',41179,'https://biomechanicseducation.com/wp-content/uploads/2018/05/What-Is-Your-Personal-Training-Guarantee_-Biomechanics-Coaching-1.png',0,'attachment','image/png',0),(7098,3,'2018-05-14 19:13:04','2018-05-14 19:13:04','<span style=\"font-weight: 400;\">Something I always encourage my learners to do is challenge everything, even what I tell them. I suggest they do not simply accept what people say as being fact but that they should gather enough information to come to a conclusion that THEY are satisfied with for their own conceptualisation, logic and application.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having been a teacher for 25 years in various forms from delivering exercise classes to teaching PT’s and physiotherapists about biomechanics to helping podiatrists understand how to prescribe exercises I know one thing is for sure, we all learn in different ways and at different rates. Communication is key when passing on information, which I know I have written about before, but I cannot stress this point enough. The WAY we say things or even deliberate silences can have a huge impact on a learner receiving new information, which for some can be a daunting time. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There seems to be such an emphasis on ‘level’ in the sense that a hierarchy of intelligence exists and I am sure this is correct in some form. However some of the </span><i><span style=\"font-weight: 400;\">smartest</span></i><span style=\"font-weight: 400;\"> people I know are not naturally ‘academic’ and some cannot even read that well or write grammatically correctly (me included!!), does that stop them, us, me being intelligent? Clearly, it comes back to how you </span><span style=\"font-weight: 400;\">measure</span><span style=\"font-weight: 400;\"> intelligence.</span>\n\n<span style=\"font-weight: 400;\">So with so many educators out there let\'s consider who we should be guided by when it comes to intelligence. Let us consider how we are </span><span style=\"font-weight: 400;\">measuring</span><span style=\"font-weight: 400;\"> this ‘hierarchy’ of intelligence so to speak.</span>\n\n<span style=\"font-weight: 400;\">or </span>\n\n<span style=\"font-weight: 400;\">More to the point how SHOULD we measure it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, I guess that would depend upon the industry or relevance. So let\'s take our industry since this is the one that has inspired me to write this article. </span>\n\n<span style=\"font-weight: 400;\">Now I meet a lot of people as I travel and many are what would be classed as very intelligent when it comes to qualifications and/or experience. </span>\n\n<span style=\"font-weight: 400;\">Yet it stuns me how badly some of these really smart people communicate that intelligence.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me give you a couple or simple examples and you tell me..</span>\n\n<span style=\"font-weight: 400;\">(This is simply an example to make a point by the way):</span>\n\n&nbsp;\n<h3><strong>Which Personal Trainer is the <i>INTELLIGENT</i> one?</strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Example 1:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The PT with LOADS of qualifications, piles of certificates, loads of books and the ability to cite research papers left right and centre. This guy is often so busy taking courses he barely covers costs with what he makes from his clients. He KNOWS a lot but scrapes by and wonders why.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Compared to;</span>\n\n<span style=\"font-weight: 400;\">The PT who is not as well read or so extensively qualified but has AMAZING communication skills and makes ALL their clients feel fantastic while in their company. This means they achieve client adherence and this PT is extremely successful commercially. </span>\n\n<span style=\"font-weight: 400;\">He is financially doing really well and has a great sense of job satisfaction.</span>\n\n&nbsp;\n<h3>Which Teacher/Presenter Is The INTELLIGENT One?</h3>\n<span style=\"font-weight: 400;\">The presenter who delivers fantastically complex information of their thoughts and ideas and concepts so mind-boggling it </span><i><span style=\"font-weight: 400;\">‘blows your mind’ </span></i><span style=\"font-weight: 400;\">but while you’re impressed you are struggling to work out how YOU can apply the awesomeness you just heard.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Compared to;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The presenter who uses an economy of words, offers very simple concepts with more audience interaction, while delivering possibly less information overall BUT they give you ideas to allow you to apply what they are sharing with you</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My point here is that intelligence can be measured in several ways and is way more influential when it is communicated well. Lack of clarity or specificity is not helpful to others.</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“If you can\'t explain it simply you do not understand it well enough”</span></i>\n\n<span style=\"font-weight: 400;\">Albert Einstein </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Simplicity is the ultimate form of sophistication”</span></i>\n\n<span style=\"font-weight: 400;\">Leonardo Da Vinci</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Complexity is the enemy of execution</span></i><span style=\"font-weight: 400;\">”</span>\n\n<span style=\"font-weight: 400;\">Tony Robbins</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Is it good enough to simply hear smart people telling us what they know?</span>\n\n<span style=\"font-weight: 400;\">Or is it enough simply having loads of knowledge, information packed away in your head if you are unable to apply it, communicate it and utilise it to your advantage?</span>\n\n<span style=\"font-weight: 400;\">Of course intelligence can be measured by taking an IQ test or passing exams but TRUE intelligence is surely being able to use it, express it and pass it on right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now back to my classroom where I do my very best NOT to answer questions raised by my learners. (Yes it is true, ask them!)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When I qualified with QTLS (Qualified Teacher Learning &amp; Skills Status) one of the primary things I came away with was that a </span><i><span style=\"font-weight: 400;\">‘Learner lead’</span></i><span style=\"font-weight: 400;\"> classroom should be how we deliver content. The learners take priority over the teacher in the way the content is discussed, facilitated and therefore delivered. Clearly, there is a lesson plan but with much scope for tasks and discussion so that the individuals present can facilitate themselves to a level of understanding appropriate to their individual experiences and areas of knowledge. Peer discussions are extremely healthy where opinions are permitted with justifications for those opinions. It would be unfair to tell someone else they are wrong when the subject matter is presented based upon that individuals experiences, opinion and alongside a justification for the way they have presented it, don’t you think?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So back to my point; </span>\n\n<span style=\"font-weight: 400;\">Surely it is also healthy to accept that we may not agree on certain views or opinions due to our different experiences and backgrounds, right?</span>\n\n<span style=\"font-weight: 400;\">We form views and attitude from our previous experiences and interactions with others right from being babies through to children and on to adulthood. The amount of variables make us individually complex and this is what makes meeting new people so fascinating and interesting.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my experience many people in our industry are not necessarily ‘academic’ types, certainly I myself and a lot of my learners are generally more kinesthetic learners who process information better through doing, rather than reading or writing. So when faced with technically challenging information we often take a while to develop ways to put information into practice. The skills we ALL require are theory, psychological and practical based to be best placed to help improve clients physicality and health. But in my opinion predominantly practical and psychological for exercise prescription based work. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My learners, the professionals I meet are REALLY intelligent people, who interact smartly, consciously, with care and thought for those they come into contact with. Just because for many of us, our learning style is such that we have to take a clini-band to a skeleton to really understand what muscles do while we ‘work it out in our heads’ or because we have to get up and move our legs to workout which is the agonist, which is the antagonist and which muscles are synergists doesn’t make us </span><i><span style=\"font-weight: 400;\">less</span></i><span style=\"font-weight: 400;\"> intelligent people.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Communication is key to success when passing on information. Having some empathy for those listening to us while we deliver information (knowing our audience) is also key for learning and development to occur.</span>\n\n<span style=\"font-weight: 400;\">We should accept being challenged as a compliment that someone is seeking our ideas and input but we should also </span><i><span style=\"font-weight: 400;\">respect</span></i><span style=\"font-weight: 400;\"> their response when asking for it!</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','How \"Intelligent\" Are You? And Does It Actually Matter?','','draft','closed','closed','','how-intelligent-are-you-and-does-it-actually-matter','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=7098',0,'post','',0),(7099,0,'2018-05-14 18:56:59','2018-05-14 18:56:59','','How intelligent are you_ And does it actually matter_ Biomechanics Coach, Personal Trainer','','inherit','closed','closed','','how-intelligent-are-you_-and-does-it-actually-matter_-biomechanics-coach-personal-trainer','','','2018-05-14 18:56:59','2018-05-14 18:56:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/05/How-intelligent-are-you_-And-does-it-actually-matter_-Biomechanics-Coach-Personal-Trainer-1.png',0,'attachment','image/png',0),(7191,0,'2018-05-24 09:36:29','2018-05-24 09:36:29','','Fundamental movement principles','','inherit','closed','closed','','fundamental-movement-principles','','','2018-05-24 09:36:29','2018-05-24 09:36:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/05/Fundamental-movement-principles-1.pptx',0,'attachment','application/vnd.openxmlformats-officedocument.presentationml.presentation',0),(7228,3,'2018-05-28 18:47:45','2018-05-28 18:47:45','<span style=\"font-weight: 400;\">Walking down the street, training at the gym, watching girls teeter in high heels on a night out or walking knock kneed in their Uggs, watching the way people sit at events, at work or in the waiting room at the doctors is something I find quite fascinating. </span>\n\n<span style=\"font-weight: 400;\">Call me voyeuristic but I genuinely am just a geek and fascinated when it comes to watching human movement and analysing physical variations in our body types and the way we move because of those variations. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Why does THAT happen? Why do THEY walk THAT way?</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Being on holiday the examples of our differences are more obvious with less clothing and what I noticed while on holiday was that we really should...</span>\n\n<i><span style=\"font-weight: 400;\">..Embrace OUR Genetics!</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having spent 2 weeks half naked, with half naked people, lying around a pool watching each other walk to the bar or apply cream, step into a pool, swim, pick up kids, eat ice cream etc etc...</span>\n\n<span style=\"font-weight: 400;\">It really does emphasise human movement variations and of course the variations of aesthetics. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is truly fascinating to see the many different body types from large to small, tall to short etc. It made me think about the ‘ideal’ body concept and in fact how dull and boring it would be if we all looked and moved the same way or if we ALL had those \'magazine cover\' bodies, the same hair styles, the same limb lengths, waist circumferences etc!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What Do You Think?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">..in MY opinion using aesthetics as THE goal is possibly not the best way to plan exercise programmes even if that is ultimately the clients perceived end goal. If you were to delve deeper with the client about their TRUE goal there is a good chance it is really all about how they FEEL about themselves, inside their skin. </span>\n\n<span style=\"font-weight: 400;\">(Here I am talking about the average client as opposed to competitive bodybuilders of course, since bodybuilding is an aesthetically judged competition rather than health and fitness being the goal)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Creating a goal that is more health and/or fitness related will of course still result in improved aesthetics based on THEIR body type, THEIR frame and THEIR genetics. Having this shift in the training programme goal offers more opportunity for positive achievement/s AND a more positive shift towards a realistic body image. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Which is better...A better you or striving to look like someone else?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is of course the beautiful aspect of our differing bodies types. From the cute PSIS dimples above large OR small and maybe wide OR narrow round buttocks. These dimples can appear wide or narrow or some people don\'t see to have any! There are various textures of tanned skin, even different ‘shades’ of white skin and some have scars or birthmarks that no one else in the world has!  </span>\n\n<span style=\"font-weight: 400;\">There is a huge variety of long OR short soleus calf muscles above feet that turn out OR turn in OR </span><i><span style=\"font-weight: 400;\">flick</span></i><span style=\"font-weight: 400;\"> a certain way during their bare foot walk across the tiles. Some spines rotate and some stay rigid during movement. LONG shins, short shins, slim arms, muscly arms, baggy triceps and bulging ones.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Seriously imagine if we ALL actually looked the same!!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BOOOOOOORRRRIIING!!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As exercise professionals we get frustrated that every client wanting to look a certain way, like in the magazines. Asking for 6 pack abs, more rounded delts, pert buttocks, slimmer thighs and yet some of us are just not built that way. </span>\n\n<span style=\"font-weight: 400;\">We also struggle to understand why people move the way they do, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT WE ARE ALL DIFFERENT!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So of course this will be a challenge for anyone trying to apply a system to human movement…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">NO ONE SYSTEM WORKS THE SAME FOR EVERYONE!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So we should receive an education that embraces the differences between us all rather than EXPECTS us ALL to look or move the same way. We should maintain an open mind to what our clients are capable of when using their bodies. A realistic aim or goal should always be individual to that person in relation to their history, genetics, lifestyle, diet, biomechanics and movement ability or capacity.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You do realise the MORE you know, the LESS you realise you know, right? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So we should also demonstrate duty of care to our clients by continuing to attend up to date CPD’s, further training and we should also read more and do our OWN research to develop our OWN methods of application for the best care of OUR clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WELL did you know as a fitness professional you already learn\'t one of the simplest and applicable methods to analyse human movement (without any fancy equipment) as an exercise professional?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YUP</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group Action of Muscles is what we call our </span><i><span style=\"font-weight: 400;\">movement analysis</span></i><span style=\"font-weight: 400;\"> study in our academy. This is where we take our learners back to their A&amp;P training, which often gets forgotten due to the fact we only ever using lay language with our clients! So we lose the skill of recalling the analysis of abduction, rotation, flexion etc as part of movements during our exercise prescription. PLUS the skeletal movement is disguised by lots of soft tissue (muscle, fat, fascia, nerves, skin etc) covering it which is the part of the anatomy we use to understand those joint actions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my experience it is very rare that a learner has come in and easily nailed this session. Yet it is what we are taught right at the beginning of our training!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are the reasons professionals give for attending our CPD workshops:</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">I want to understand the body and movement better </span></i>\n\n<i><span style=\"font-weight: 400;\">I want to learn more about the anatomy </span></i>\n\n<i><span style=\"font-weight: 400;\">I want to understand how we move on the inside</span></i>\n\n<i><span style=\"font-weight: 400;\">I want to understand why people move badly</span></i>\n\n<i><span style=\"font-weight: 400;\">I want to understand how to help people move better</span></i>\n\n<i><span style=\"font-weight: 400;\">I want to understand why they ache hurt get injured</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we remembered out level 3 A&amp;P we would already have many of these skills and be more confident. We also hear…</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“but I never use this language with my client!?”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">agonist </span></i>\n\n<i><span style=\"font-weight: 400;\">antagonist </span></i>\n\n<i><span style=\"font-weight: 400;\">synergists</span></i>\n\n<i><span style=\"font-weight: 400;\">dynamic stabilisers </span></i>\n\n<i><span style=\"font-weight: 400;\">fixators</span></i>\n\n<i><span style=\"font-weight: 400;\">abduction</span></i>\n\n<i><span style=\"font-weight: 400;\">adduction </span></i>\n\n<i><span style=\"font-weight: 400;\">rotation </span></i>\n\n<i><span style=\"font-weight: 400;\">flexion </span></i>\n\n<i><span style=\"font-weight: 400;\">extension </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">..of course, me neither !! BUT if we talk to </span><i><span style=\"font-weight: 400;\">each other</span></i><span style=\"font-weight: 400;\"> this way then at least we can enhance our recall AND memory of it. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sadly the fitness industry in particular causes many of us to feel we can\'t admit to how bad our A&amp;P memory really is. If we are really honest it’s really poor isn’t it and therefore not surprising many exercise professionals lose confidence in what they are looking at when watching clients move! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are expected to achieve so much when it comes to improving movement when we cannot even work out the WHY from WHAT we see. </span>\n\n<span style=\"font-weight: 400;\">Clients are suffering more and more due to lifestyles and our job of choosing the best exercise programme is getting even harder as everyone has SOMETHING limiting them, eh!</span>\n\n<span style=\"font-weight: 400;\">In our academy we GIVE YOU REASONS to remember your anatomy which gives you increased confidence when watching your clients move. </span>\n\n<span style=\"font-weight: 400;\">So while embracing our differences, let\'s start getting serious about understanding human movement and improving confidence in movement, being in our own skin and of course function.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember PERFECTION does not exist…that would be SO dull! In fact... embrace the imperfections!</span>\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\n\n&nbsp;','Embrace Your Genetics & Imperfections & Why Personal Trainers Should Treat Every Client As An Individual','','draft','closed','closed','','embrace-your-imperfections-treat-every-client-as-an-individual','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=7228',0,'post','',0),(7229,0,'2018-05-28 18:34:58','2018-05-28 18:34:58','','Embrace the Imperfections - why personal trainers need to treat everyone as individuals','','inherit','closed','closed','','embrace-the-imperfections-why-personal-trainers-need-to-treat-everyone-as-individuals','','','2018-05-28 18:34:58','2018-05-28 18:34:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/05/Embrace-the-Imperfections-why-personal-trainers-need-to-treat-everyone-as-individuals-1.png',0,'attachment','image/png',0),(7297,3,'2018-06-04 19:40:05','2018-06-04 19:40:05','<h3><strong>All Biomechanical Studies Are Flawed</strong></h3>\n<span style=\"font-weight: 400;\">Pretty bold statement eh?</span>\n\n<span style=\"font-weight: 400;\">You see I like to challenge things to enable me to truly understand the information I am processing, don’t you?</span>\n\n<span style=\"font-weight: 400;\">Have you ever discovered something that completely changes your paradigm?  </span><span style=\"font-weight: 400;\"><a href=\"https://www.biomechanicseducation.com/how-a-paradigm-shift-can-change-how-you-feel-in-a-moment/\" target=\"_blank\" rel=\"noopener\">Read my previous blog Paradigm Shifting</a> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You cannot UNLEARN something can you? Once you hear it and the thought goes in it can shift all of your thinking to another way of viewing things.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me give you an example I have experienced and hopefully explain why I feel that all biomechanical studies are flawed.</span>\n\n<span style=\"font-weight: 400;\">Biomechanical studies usually start with subjects described as...</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">‘Twenty five subjects volunteered to participate in the study (age range 21-53).......All subjects met the criteria of full range of motion in the joints of the lower limb (</span></i><i><span style=\"font-weight: 400;\">McRae 1990</span></i><i><span style=\"font-weight: 400;\">). Any subject, patient or staff was excluded if they were suffering from any disease that compromised lower limb function (e.g. osteoarthritis) or who presented with pelvic or spinal problems that can often mimic LLD symptoms. </span></i>\n\n<i><span style=\"font-weight: 400;\">Subjects that demonstrated a functional LLD were also excluded’</span></i>\n\n<b>(The reliability and validity of the `Tape\' and `Block\' methods for assessing anatomical leg-length discrepancy - </b><span style=\"font-weight: 400;\">Tracy Middleton-Duff, Keith George and Alan Batterham 1999-2000</span><b>)</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However I am quite sure, you can imagine, that when it comes to the human body, your clients bodies, it is never just a single answer to our movement limitations. </span>\n\n<span style=\"font-weight: 400;\">What does this mean? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well those 25 subjects may well have all been between certain ages, had a structural LLD and full ROM in the lower limb joints (McRae 1990) BUT was the rest of thier biomechanics assessed for similarities or differences?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What would be an example?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok literally EVERYONE is harping on about the whole body being connected, kinetic chains, myofascial trains etc BUT who is actually practicing this in terms of analysis for research into biomechanical questions?</span>\n\n&nbsp;\n<h3>How The Shoulder Influence\'s The Foot.... Or Visa Versa</h3>\n<span style=\"font-weight: 400;\">So here is a 7 minute video (in case you missed it) where I demonstrate the shoulder influence on the foot…</span>\n\n&nbsp;\n\nhttps://youtu.be/la6jOLuMSiU\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway being slightly into biomechanics I have read one or two papers around this area and each time I see the subjects description of commonality, I see that they are only ever really compared by age, sex, skills level, sport, injury and maybe duration of training for example. </span>\n\n<span style=\"font-weight: 400;\">Nowhere have I seen biomechanical studies with a common </span><i><span style=\"font-weight: 400;\">biomechanical</span></i><span style=\"font-weight: 400;\"> start point in terms of pelvic function, spine mobility and strength ratio comparisons, shoulder function, knee and foot stability all giving a common </span><i><span style=\"font-weight: 400;\">biomechanical </span></i><span style=\"font-weight: 400;\">start point. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">An example might be a study measuring forces at the knee of a group of subjects of the same/similar age, some sport and with a similar training history/duration. However there is not record of their pelvic function, if they have tight sciatic nerves or hinges in their QL - ALL of which could contribute to changing the loads being measured at the knee.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does this make sense? It all means that the more I learn about research, the more I learn about biomechanics, the more I challenge it because of what I have learned. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I see this as a good thing - frustrating but healthy.</span>\n\n&nbsp;\n<h3>How To Improve YOUR Squat - The Biomechanical Guide</h3>\n<span style=\"font-weight: 400;\">Now recently I have been getting a lot of messages from those of you who watch my Instagram videos, about comparing your squats to mine. </span>\n\n<span style=\"font-weight: 400;\">The most common question being how do you manage to squat A2G or bum to the floor?</span>\n\n<span style=\"font-weight: 400;\">This has set me thinking about how the body works as an integrated system and how we all squat differently and probably actually should all squat differently too. </span>\n\n<span style=\"font-weight: 400;\">So how would you like me to start a </span><b><i>‘How To Improve Your Squat’</i></b><span style=\"font-weight: 400;\"> video tutorial series?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over this series of short videos I will endeavour to answer all of your squatting questions and dilemmas and demonstrate some really cool techniques to both test and improve your intrinsic biomechanics function. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like that?</span>\n\n<span style=\"font-weight: 400;\">Hit me with your squat questions and here are a few that I have on my list already…</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“What if we can’t break parallel…what can we do to help that?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Are there more benefits of A2G over say a parallel squat?</span></i>\n\n<i><span style=\"font-weight: 400;\">“What about knees over toes….?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“How can I get my back straighter during the squat?”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All really great questions and I will address each over the </span><b><i>How To Improve Your Squat’</i></b><span style=\"font-weight: 400;\"> video tutorial series.</span>\n\n<span style=\"font-weight: 400;\">You can follow it on <a href=\"https://www.instagram.com/biomechanics_education/\" target=\"_blank\" rel=\"noopener\">Instagram</a>, <a href=\"https://www.youtube.com/user/rachfit12\" target=\"_blank\" rel=\"noopener\">Youtube</a> or <a href=\"https://www.facebook.com/biomechanicseducation/\" target=\"_blank\" rel=\"noopener\">Facebook</a></span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','Are All Biomechanical Studies Flawed? And Would You Like To Squat Better?','','draft','closed','closed','','are-all-biomechanical-studies-flawed-and-would-you-like-to-squat-better','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=7297',0,'post','',0),(7303,0,'2018-06-04 15:58:40','2018-06-04 15:58:40','','','','inherit','closed','closed','','are-all-biomechanical-studies-flawed_-and-would-you-like-to-squat-better_-biomechanics-coaching','','','2018-06-04 15:58:40','2018-06-04 15:58:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/06/Are-All-Biomechanical-Studies-Flawed_-And-Would-You-Like-To-Squat-Better_-Biomechanics-Coaching-1.png',0,'attachment','image/png',0),(7474,3,'2018-06-13 08:45:00','2018-06-13 08:45:00','<span style=\"font-weight: 400;\">Functional, multi-joint screening and conditioning has been around for 50 years or more.  We have been using those principles for the last 20 years in our facilities and these principles can have a profound effect on human performance, risk reduction and management.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, having used them for 10 years we began to realise that functional screening is not the panacea for all ills and there are fundamental areas that it does not address. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">People still get injured and their performances can still be compromised despite being functionally trained.  The problem with the fitness industry, in particular, is that functional training has only been recently introduced so it\'s not at the point where it\'s been able to work this out yet, it\'s not been around for long enough in this area.  As specialists in rehabilitation and conditioning for elite and recreational sportspeople, we have found that there are huge flaws in only using one type of screening. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over the last 20 years, we have developed a screen that compliments all other forms of screening, including functional, postural, physiological and even psychological screening. It\'s called Biomechanical screening. Nothing new in the name, but this is ‘Intrinsic’ Biomechanical screening, not the extrinsic, which is usually associated with the word Biomechanical.  Here we work on single joints and systems. The principle is simple; with functional screening, by definition more than one joint is being tested, otherwise it wouldn’t be functional. The problem is that if one joint is dysfunctional, with the body being a master of compensation, other joints can take over and you can still pass a functional screen and you don’t always have a visual movement impairment. In fact, often you don’t. So it is important to have a single joint screen to compliment any functional screen to ensure this does not occur. <strong> In</strong> <strong>fact, we have found with our work that you can have clients who pass a functional screen but still have single joint problems</strong>; and the biomechanical screen picks them up. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Often we find that by taking someone through a biomechanical screen and getting them through that, they frequently pass a functional screen anyway. The brain is the most sophisticated engine management chip, often you can provide it with the right equipment and it will sort out the functional movement by itself.....that’s what its designed to do, and often far better than any exercise programme you or I can provide.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Even our functional training gurus have started to realise this is true. One of our Biomechanics Coaches&#x2122;, who is also an international Strength and Conditioning Coach, sent a quote from an extract by Mike Boyle from a blog, <em>“[Gray] Cook\'s thoughts were simple and led me to </em>realise<em> that the future of training may be a joint-by-joint approach rather than a movement-based approach. Gray\'s analysis of the body was a straightforward one; in his mind, the body is a just a stack of joints. Each joint or series of joints has a specific function and is prone to specific, predictable levels of dysfunction. As a result, each joint has specific training needs.”</em>  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They are right, and I’m delighted for their ‘functional disciples’ that they have finally come round to recognise this essential point of view.  Hopefully now they will open their minds to this critical factor now they have ‘permission’.</span>\n\n&nbsp;\n\nThis post was brought to you by Martin Haines, Specialist <span style=\"font-weight: 400;\">Biomechanics Coach&#x2122; &amp; Chartered Physiotherapist.</span>\n\n&nbsp;\n\n<em>And I would like to add a few of my own thoughts... I am sure Martin won\'t mind....</em>\n\n<em>This brings a whole host of other questions and thoughts... If you can pass a functional screen but fail a single joint screen, then what is going on?</em>\n\n<em>As Martin says, the body is amazing and will help you create whatever movement you want to. The problem is, often you will create the movement in a way that is not the most efficient. Muscles doing other muscles jobs or compensating for their partners etc.</em>\n\n<em>All this leads to a much higher risk of injury or at best a decrease in performance.</em>\n\n<em>As a movement coach, you have the ability to improve their movement and performance dramatically if you help each joint function better.</em>\n\n<i>So this topic is what has driven my desire to release a series of squat video tutorials and of course also a result all of the questions I receive about squatting!</i>\n\n<em>The squat is an example of one of Gray\'s functional movement screens and also a fundamental human movement required for every day life and yet so many of us struggle with it, why? Well there are so many reasons why due to all of the joints involved and t</em><em>hat is exactly what I will be exploring with you so keep watching....</em>\n\n&nbsp;\n\n&nbsp;\n\n<em>Rachel France</em>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','Single Joint Vs Functional Assessments - A Personal Trainer\'s Guide','','draft','closed','closed','','single-joint-vs-functional-assessments-a-personal-trainers-guide','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=7474',0,'post','',0),(7476,0,'2018-06-11 08:28:48','2018-06-11 08:28:48','','Functional Movement Tests vs Single Joint Assessment - A personal trainers guide','','inherit','closed','closed','','functional-movement-tests-vs-single-joint-assessment-a-personal-trainers-guide','','','2018-06-11 08:28:48','2018-06-11 08:28:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/06/Functional-Movement-Tests-vs-Single-Joint-Assessment-A-personal-trainers-guide-1.png',0,'attachment','image/png',0),(7522,3,'2018-06-18 14:09:05','2018-06-18 14:09:05','One thing I get asked over and over again is... \"<em>How can I improve my squat</em>?\". I get asked how to squat ass to grass (A2G), or depending on where you are from \"arse to grass\". I get asked about squat mechanics and so much more. I think I get asked about the squat a lot for a few reasons... If you follow me on instagram you will KNOW how much I love the squat and am always talking about it, but really because a lot of people use it as their standard measure of movement.\n\nSo I thought I would put together a video series to help you, and if you are a personal trainer, to help you help your clients achieve a better squat.\n\nSo take a few minutes today to watch part 1..... Just click the play button now... (if you can\'t watch for whatever reason, then you can read the post below the video...\n\nhttps://youtu.be/juSK5KxCEbg\n\nWith the day to day routines that we put our bodies through majorly affect our mechanics.... sat at desk bent over a computer, texting all day on the phone, causes our body to compensate. So first up we have to find out where the limitations in your, or your clients, body are.\n\nSo how do you know if its just simply bad technique or a limitation within the muscular system, skeletal system or your neural system? Watch the video and find out.\n<h3>Can\'t Watch The Video... Read On</h3>\n<span style=\"font-weight: 400;\">You squat right?</span>\n\n<span style=\"font-weight: 400;\">I KNOW you squat and do you know how I know?</span>\n\n<span style=\"font-weight: 400;\">Each time to sit and stand you squat (and yes that includes when you poop! see squatty potty <a href=\"https://www.youtube.com/watch?v=YbYWhdLO43Q\" target=\"_blank\" rel=\"noopener\">HERE</a> for evidence of this) </span>\n\n<span style=\"font-weight: 400;\">Squatting is a fundamental combination of human movements that contribute to your lower body function and yet still THE most common question I get asked is;</span>\n\n<i><span style=\"font-weight: 400;\">“What’s the best way to squat?”</span></i>\n\n<span style=\"font-weight: 400;\">Now I also KNOW that you have seen others squatting, chances are you even asked your client to squat and while watching them you thought; </span>\n\n<i><span style=\"font-weight: 400;\">“Heck that looks really awkward, what on earth is causing them to squat like that?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Could it be their tight calves? hey no actually it looks like it is their tight pelvis, oh wait a minute maybe it is their stiff spine….?”</span></i>\n\n<span style=\"font-weight: 400;\">I KNOW you KNOW what I am talking about and it is damned frustrating isn’t it? Especially when you can’t work out what’s limiting them, right?</span>\n\n<span style=\"font-weight: 400;\">In my opinion if we try to improve our squatting technique this crosses over into so many other movements this single focus can have a huge impact on our entire movement profile - it certainly did for me!</span>\n\n<span style=\"font-weight: 400;\">Having studied the squat for several years and being a real geek when it comes to the squat due to its impact on my own training I wanted to share some of my thoughts and attempt to help you answer some of those squat questions you have been sending me.</span>\n\n<span style=\"font-weight: 400;\">However, as with my previous squat research (initiated by a nasty trolling experience but which resulted in a 6 piece article) this ‘discussion’ will take more than one blog/video tutorial to cover all of the things we should consider when looking to improve our squatting technique.</span>\n\n<b>Goal Clarity &amp; Context</b>\n\n<span style=\"font-weight: 400;\">One of the fundamental errors when discussing squatting in our industry is </span><span style=\"font-weight: 400;\">context</span><span style=\"font-weight: 400;\">. </span>\n\n<span style=\"font-weight: 400;\">So let me clarify this first:</span>\n\n<span style=\"font-weight: 400;\">Consider your goal first, with absolute clarity asking yourself;</span>\n\n<span style=\"font-weight: 400;\">Why do I want to squat? </span>\n\n<span style=\"font-weight: 400;\">Do I want to perform a specific task?</span>\n\n<span style=\"font-weight: 400;\">Is it because I have been told I need to be able to squat?</span>\n\n<span style=\"font-weight: 400;\">Do I want to grow my leg muscles?</span>\n\n<span style=\"font-weight: 400;\">Do I want more lower body stability?</span>\n\n<span style=\"font-weight: 400;\">Do I want to become a competitive powerlifter?</span>\n\n<span style=\"font-weight: 400;\">Am I just seeking improved movement?</span>\n\n<span style=\"font-weight: 400;\">Has my present squat highlighted some movement limitations?</span>\n\n<span style=\"font-weight: 400;\">Once you have decided upon your goal make sure you keep that in focus every time you are choosing which type of squat to practice, whether you will need a load and if so what the load will be and also where will you hold it?</span>\n\n<span style=\"font-weight: 400;\">There are so many variations of the squat and they often have interesting names too, however, I will always endeavour to clarify the type of squat movement to maintain context for relevance to any points being made. </span>\n\n<span style=\"font-weight: 400;\">Let me give you an example of 2 quite different squat goals….</span>\n\n<span style=\"font-weight: 400;\">A 50 year old who wishes to simply maintain and/or improve their present movement ability.</span>\n\n<span style=\"font-weight: 400;\">A 23 year old amateur competitive powerlifter </span>\n\n<span style=\"font-weight: 400;\">Both completely different goals, therefore, different squatting programmes are required, even though there are possibly some crossover points within their training. </span>\n\n<b>Technique or Compensation? Assessing The Issues In Your Squat</b>\n\n<span style=\"font-weight: 400;\">Another BIG topic for us to discuss will be about extrinsic v’s intrinsic biomechanics or simply put, what we can see and what we can’t see.</span>\n\n<span style=\"font-weight: 400;\">As we watch our clients squatting what we see is </span><i><span style=\"font-weight: 400;\">extrinsic</span></i><span style=\"font-weight: 400;\"> and while we are experts at coaching great movement using what we see, very often clients can still struggle. </span>\n\n<span style=\"font-weight: 400;\">What we need to attempt to identify is whether they have any </span><i><span style=\"font-weight: 400;\">intrinsic</span></i><span style=\"font-weight: 400;\"> compensation that no amount of coaching can settle however by adding some simple moves to their warm up can potentially be easily improved. </span>\n\n<b>Setting A Benchmark For Your Squat</b>\n\n<span style=\"font-weight: 400;\">So I have created a short video to kick things off and set up your squat </span><i><span style=\"font-weight: 400;\">BENCHMARK</span></i>\n\n<span style=\"font-weight: 400;\">We can reproduce your benchmark over the series of tutorials to monitor your squat &amp; I will introduce you to some great apps to allow you to see your first &amp; final photo alongside each other to see just how much you improve along the way.</span>\n\n<b>Questions Please!?</b>\n\n<span style=\"font-weight: 400;\">So I need your questions to enable me to address issues YOU wish to discuss rather than what I THINK you wish to discuss!</span>\n\n<span style=\"font-weight: 400;\">Send your No.1 Squat question to </span><a href=\"mailto:rachel@biomechanicseducation.com\"><span style=\"font-weight: 400;\">rachel@biomechanicseducation.com</span></a>\n\n<span style=\"font-weight: 400;\">Feel free to share your photos / videos so we can do this together &amp; I can guide YOU more effectively.</span>\n\n<span style=\"font-weight: 400;\">Here are some examples of benchmarks sent in so far...</span>\n\n<b><img class=\"aligncenter size-large wp-image-7527\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/06/Biomechanics-Coaching-How-To-Squat-Ass-To-Grass-Project-Squat-1024x1024.jpg\" alt=\"\" width=\"1024\" height=\"1024\" /></b>\n\n<b>Safety Is Paramount</b>\n\n<span style=\"font-weight: 400;\">Never forget to never compromise safety for ROM! This will also be highlighted throughout.</span>\n<h3>Subscribe To The Biomechanics Education YouTube Channel For More</h3>\nStay tuned for the next few videos which are going to guide you through the steps to getting a better squat. <a href=\"https://www.youtube.com/channel/UCONlszVeKpExJctWwa9sjUQ?sub_confirmation=1\" target=\"_blank\" rel=\"noopener\">Make sure you subscribe to the Biomechanics Education youtube channel, just click here to do that!</a>\n\n<hr />\n\n<h2><!-- wp:heading --></h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h2><!-- /wp:heading --> <!-- wp:paragraph --></h2>\nThen <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!\n<h2><!-- /wp:paragraph --> <!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} --></h2>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>\n<h2><!-- /wp:image --> <!-- wp:paragraph --> <!-- /wp:paragraph --></h2>','How To Squat Ass To Grass (A2G) - Project Squat - Part 1','','draft','closed','closed','','how-to-squat-ass-to-grass-a2g-project-squat-part-1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=7522',0,'post','',0),(7523,0,'2018-06-18 08:11:23','2018-06-18 08:11:23','','How To Squat Ass To Grass - Project Squat - Part 1','','inherit','closed','closed','','how-to-squat-ass-to-grass-project-squat-part-1','','','2018-06-18 08:11:23','2018-06-18 08:11:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/06/How-To-Squat-Ass-To-Grass-Project-Squat-Part-1-1.png',0,'attachment','image/png',0),(7527,0,'2018-06-18 14:08:21','2018-06-18 14:08:21','','Biomechanics Coaching - How To Squat Ass To Grass - Project Squat','','inherit','closed','closed','','biomechanics-coaching-how-to-squat-ass-to-grass-project-squat','','','2018-06-18 14:08:21','2018-06-18 14:08:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/06/Biomechanics-Coaching-How-To-Squat-Ass-To-Grass-Project-Squat-1.jpg',0,'attachment','image/jpeg',0),(7591,3,'2018-06-25 20:46:24','2018-06-25 20:46:24','Welcome to part 2 of Project Squat! The ultimate guide to helping you (or your clients) reach new depths in your squat!\n\nIn today\'s article and video, I am going to answer the following questions...\n<ul>\n 	<li><span style=\"font-weight: 400;\">Does Your Pelvis Function Properly?</span></li>\n 	<li><span style=\"font-weight: 400;\">How would you know?</span></li>\n 	<li><span style=\"font-weight: 400;\">What is good function anyway?</span></li>\n 	<li><span style=\"font-weight: 400;\">What exactly is good ‘technique’?</span></li>\n 	<li>How do you test for and then improve pelvic function (see the video)</li>\n</ul>\n<span style=\"font-weight: 400;\">Well the pelvis is essentially the centerpiece of our body, the powerhouse of the most amazing organ in the world and yet we should be mindful in this series that we must always consider that it is just one part of an integrated system, since it couldn\'t do its job/s without its counterparts, right!?</span>\n\n<span style=\"font-weight: 400;\">Your pelvis can only produce propulsion when we walk or run via the use of our lower limbs during the gait cycle also through the movement and velocity of rotation being produced through the spine, combined with the swing phase of our upper limbs.</span>\n\n<span style=\"font-weight: 400;\">The integrated system is quite fascinating and still to this day challenges us in terms of its complexities. Everyone TALKS about it but how many practitioners really PRACTISE it in application?</span>\n\n<span style=\"font-weight: 400;\">But let’s keep things simple, when you want to stand, sit (squat), walk and run you need some degree of pelvic function. For these movements to feel good or natural and free from pain or discomfort we need GOOD pelvic function.</span>\n\n<span style=\"font-weight: 400;\">There is evidence that suggests that 60% of dysfunction stems from the pelvis &amp; improving movement at the pelvis has both ascending and descending influences on our function.</span>\n\n<span style=\"font-weight: 400;\">So this is why we are starting here.</span>\n<h3><b>How Deep Should Your Squat Be? A2G? </b></h3>\n<span style=\"font-weight: 400;\">This is a topic of much debate and yet all of the matters covered in this series must be considered before we can identify an individual’s capacity for which depth is appropriate. While there are many factors that should be taken into consideration, it is my opinion that there should be 2 main determining factors:</span>\n\n<span style=\"font-weight: 400;\">1) The pelvis &amp; spine, their health, functional capacity and safe degrees of spinal flexion, extension (we will discuss spine next week)</span>\n\n<span style=\"font-weight: 400;\">2) The knee, its health, functional capacity and safe degrees of flexion (see Squat Project A2G - Part 5 The Knee)</span>\n\n<span style=\"font-weight: 400;\">Ultimately if the aim of your squat is to optimise the development of gluteus maximus then they should be performed to full range as demonstrated by Caterisano’s work. Using EMG data it was concluded that as the depth of squatting increases, gluteus maximus activity increases by 9-14% from partial range to full. It was also found that the bicep femoris does not appear to be more active suggesting that a deeper squat would not work this hamstring muscle more than a parallel squat. Bicep femoris shows no more than 2-3% more activity between a partial squat, parallel squat and full squat. (Casterisano et al, 2002)</span>\n\n<span style=\"font-weight: 400;\">If however, the goal is to target quadriceps, then a squat depth of 90 degrees appears to be optimal, as shown in several of the studies I have come across Van Eijen et al (1987), Signoile et al (1995), Isear et al (1997), Wretenberg et al (2007). Quadriceps activity will gradually increase during the descent of the squat as the degree of knee flexion increases. However, beyond this point the quads are unlikely to enhance their development. On an EMG it has been demonstrated that the 2 vasti muscles produce 40-50% more activity than rectus femoris (Escamilla et al). Narrow or wide stance has not shown to have any greater or lesser effect upon hamstrings and quadriceps activation. VMO activity does increase during greater knee flexion angles as compared to the VL. (McCaw &amp; Melrose, 1999, Signorile et al,1995).</span>\n\n<span style=\"font-weight: 400;\">The rules for spinal alignment during the squat change when you introduce a barbell or resistance. (see Squat Project A2G - Part 3 The Spine)</span>\n\n<span style=\"font-weight: 400;\">When asked common questions like “</span><i><span style=\"font-weight: 400;\">how deep should I squat</span></i><span style=\"font-weight: 400;\">?” we should really be asking a series of questions back before we can even begin to answer with any confidence, starting with ‘</span><i><span style=\"font-weight: 400;\">why are you asking and what are you trying to achieve</span></i><span style=\"font-weight: 400;\">?’. Understanding an individuals intrinsic biomechanics will also mean we have a more objective method of analysis to increase confidence in your exercise prescription.</span>\n\n<span style=\"font-weight: 400;\">Consider your own reasons for squatting or wanting to improve your squat and this will help you moving forwards.</span>\n<h3><b>What Is (good) Squat Technique?</b></h3>\n<span style=\"font-weight: 400;\">My ‘technique’, if you analyse my limb alignment, is actually really out of alignment and many have commented on my photos and videos about what I should do to correct my bad technique. The problem is it is the way my body is stacked up on the inside and a portion of that is joint geometry that I cannot change. However, I am injury and pain free so who cares!?!?!</span>\n\n<span style=\"font-weight: 400;\">Also, you can have amazing ‘technique’ but awful intrinsic biomechanics. This could be an issue waiting to happen. But wait lets define technique…..</span>\n\n<span style=\"font-weight: 400;\">Technique is: </span><i><span style=\"font-weight: 400;\">a way of carrying out a particular task, especially the execution or performance of an artistic work or a scientific procedure, skill or ability in a particular field, a skillful or efficient way of doing or achieving something </span></i><span style=\"font-weight: 400;\">(online Google dictionary)</span>\n\n<span style=\"font-weight: 400;\">We are taught in our industry that knees MUST be inline with toes, backs MUST be rigidly straight and upright, joints MUST not lock out etc. Yet even when watching the ‘best’ athletes in the world you will notice in may cases their ‘technique’ may not be perfect even though they can produce phenomenal outcomes and performance. </span>\n\n<span style=\"font-weight: 400;\">However to flip that debate we do need some kind of benchmark when coaching clients movement. There are better joint alignments for force production and performance, however, there are better limb lengths for this too of which we have no choice. (oh to have short femurs like those Chinese Olympic lifters! Lol )</span>\n\n<span style=\"font-weight: 400;\">The challenge for us is what is poor technique and what is poor biomechanics?</span>\n\n<span style=\"font-weight: 400;\">Yes even top athletes carry intrinsic dysfunction, having screened a few they are in the same ‘state’ as the rest of us, probably for the same reasons. </span>\n\n<span style=\"font-weight: 400;\">Function over technique every time for long term physical health and performance. </span>\n\n<span style=\"font-weight: 400;\">If you have a client who just can’t seem to squat no matter how many of your great coaching tactics you use, well there is a good chance it could be an intrinsic factor. THIS is what we are looking at here when it comes to improving your squat.</span>\n\n<b>Preparation/Performance </b>\n<h3><b>How To Test &amp; Improve Your Pelvic Function</b></h3>\n<span style=\"font-weight: 400;\"><a href=\"https://youtu.be/Z7oSs8sxmk0\" target=\"_blank\" rel=\"noopener\">Watch the video below</a> to see how to demonstrate not only how to test and improve your pelvic function but also how you might apply strength training to ‘move’ towards a more long term solution to improved pelvic function.</span>\n\nhttps://youtu.be/Z7oSs8sxmk0\n<h3><b>Key Points To Understand To Improve Your Squat</b></h3>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The body works as an integrated system</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The body is a master of compensation </span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Everything can influence your body (mood, shoes, sleep, job, exercise, weather)</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Keep it simple, start with the least intrusive interventions first.</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Preparation is much more than a 5 minute treadmill walk/jog</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The Beyond 90 Challenge </span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Be patient!</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Move well, THEN Move more (Gray Cook)</span></li>\n</ol>\n<h3></h3>\n<h3><b>What To Expect In Part 3: The Spine....</b></h3>\n<span style=\"font-weight: 400;\">So as you work towards improved pelvic function here is what we will be discussing next time…</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">How you can test your spinal mobility </span></li>\n 	<li><span style=\"font-weight: 400;\">(QL Test, Flexion Test, Thoracic Rotation Test, Extension Test)</span></li>\n 	<li><span style=\"font-weight: 400;\">The Weak Core fallacy </span></li>\n 	<li><span style=\"font-weight: 400;\">Break Points </span></li>\n 	<li><span style=\"font-weight: 400;\">Belts or Not while squatting?</span></li>\n 	<li><span style=\"font-weight: 400;\">The weak core fallacy</span></li>\n</ul>\n<span style=\"font-weight: 400;\">---------------------------------------------------------------------------------------</span>\n\n<span style=\"font-weight: 400;\">Finally for those of you who enjoy reading research….</span>\n\n<b>Which Muscles? Front Vs Back Squat</b>\n\n<span style=\"font-weight: 400;\">Gullett, et al (2008) did a study looking at which muscles are being used in 2 of these variations. The front squat and the back squat with a high bar position. The 15 healthy individuals had been performing front and back squats on a regular basis for a minimum of 12 months prior to the research. Using EMG to measure specifically the activity of </span><b>rectus</b> <b>femoris (RF), vastus lateralis (VL) </b><span style=\"font-weight: 400;\">and </span><b>vastus medialis (VM)</b><span style=\"font-weight: 400;\">, </span><b>bicep</b> <b>femoris (BF) </b><span style=\"font-weight: 400;\">and </span><b>semintendinosus (ST)</b><span style=\"font-weight: 400;\"> ,and the </span><b>erector spinae (ES),</b><span style=\"font-weight: 400;\">this was what they found:</span>\n\n<span style=\"font-weight: 400;\">When comparing the differences, the back squat had higher hamstring activity to the front squat. The back squat had lower quadriceps activity in VL and RF. VM was equal in both squats. Front squats had higher activity in the erectors of the spine compared to back squats. </span>\n\n<span style=\"font-weight: 400;\">When looking at the data this is how it compared:</span>\n\n<b>EMG                                          Back squat Front squat</b>\n\n<span style=\"font-weight: 400;\">Hamstrings (BF &amp; ST)                    Higher Lower</span>\n\n<span style=\"font-weight: 400;\">(Quadriceps)</span>\n\n<span style=\"font-weight: 400;\">Vastus lateralis                               Lower Higher</span>\n\n<span style=\"font-weight: 400;\">Rectus femoris                               Lower Higher</span>\n\n<span style=\"font-weight: 400;\">Vastus medialis                              Similar Similar</span>\n\n<span style=\"font-weight: 400;\">Lower back (erector spinae)           Lower Higher</span>\n\n<b>Biomechanical analysis</b>\n\n<span style=\"font-weight: 400;\">Compressive force                          Higher Lower</span>\n\n<span style=\"font-weight: 400;\">Knee extensor moments                 Higher Lower</span>\n\n<span style=\"font-weight: 400;\">Shear stress                                   Similar Similar</span>\n\n<span style=\"font-weight: 400;\">Conclusion</span><span style=\"font-weight: 400;\">: With less weight, front squatting results in the same muscle activation as back squatting with a bigger weight. BUT using a lesser weight to perform the front squat does mean compressive forces at the knee are going to be lower. This would indicate that those who have knee problems such as ligament damage or meniscus tears, or osteoarthritis, should stick with the front squat since compressive forces can damage knee cartilage.</span>\n\n<hr />\n\n<h2><!-- wp:heading --></h2>\n<h2><!-- wp:heading --></h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h2><!-- /wp:heading --> <!-- wp:paragraph --></h2>\nThen <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!\n<h2><!-- /wp:paragraph --> <!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} --></h2>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>\n<h2><!-- /wp:image --></h2>\n<div class=\"wp-block-image\"></div>\n<h2><!-- /wp:image --> <!-- wp:paragraph --> <!-- /wp:paragraph --></h2>','Project Squat - Part 2 - How To Test For & Improve Your Pelvic Function & How It Affects Your Squat','','draft','closed','closed','','project-squat-part-2-how-to-test-for-improve-your-pelvic-function-how-it-affects-your-squat','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',0,'https://www.biomechanicseducation.com/?p=7591',0,'post','',0),(7592,0,'2018-06-25 14:09:59','2018-06-25 14:09:59','','Project Squat Part 2 - How To Test For And Improve Pelvic Function','','inherit','closed','closed','','project-squat-part-2-how-to-test-for-and-improve-pelvic-function','','','2018-06-25 14:09:59','2018-06-25 14:09:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/06/Project-Squat-Part-2-How-To-Test-For-And-Improve-Pelvic-Function-1.png',0,'attachment','image/png',0),(7657,3,'2018-07-02 20:13:21','2018-07-02 20:13:21','Welcome to part 3 of the Squat Project A2G, it\'s really important that you follow along in order, so if you haven\'t looked at the pelvis yet, make sure you go back to part 2 and do that first.\n\n<span style=\"font-weight: 400;\">If you have done part 2.....Did you get a result with the pelvic test and exercises?</span>\n\n<span style=\"font-weight: 400;\">How is your caveman squat looking?</span>\n\n<span style=\"font-weight: 400;\">Hopefully that has got you started towards freeing off your pelvis and kick started your journey towards improving your squat and therefore you entire movement profile. </span>\n\n<span style=\"font-weight: 400;\">Remember we are only just starting out and changing your body’s capacity for movement can take time as it adjusts. Maybe the same as it took time to stiffen up! </span>\n\nNow we are going to move up the body slightly and look at the spine and how that can be affecting your squat.\n\n<span style=\"font-weight: 400;\">Would you like to learn how you can assess your own spine too now?</span>\n\n<span style=\"font-weight: 400;\">Read on…</span>\n<h2>How To Assess For Dysfunction In The Spine</h2>\n<span style=\"font-weight: 400;\">The integrated system is a fascinating and wonderful series of pulleys, levers, sensors that all interconnect to produce movement and physical control. </span>\n\n<span style=\"font-weight: 400;\">We should ALWAYS consider this ‘system’ and how it works holistically in any exercise programme, including the squat project. Therefore I will always remind you of this throughout this project and how we believe this system impacts upon your movement profile.</span>\n\n<span style=\"font-weight: 400;\">The spine is made up of lots of vertebrae that create a curving structure and is actually extremely robust. The fact many of us are having trouble with back pain is really more shocking than most realise considering the many details within the spine that are designed to protect us. Shock absorbers, strain gauges sensors, lots and lots of muscles and ligaments specifically designed to allow movement but also to limit it and protect the discs and spinal cord.</span>\n\n<span style=\"font-weight: 400;\">The spine sits on top of the pelvis and the joint at which they meet is called the sacroiliac joint (SIJ). This is where the sacrum at the lower spine sits into the 2 ilium that makes up the pelvis thus creating a triangular shaped wedge that should allow a certain amount of movement while also creating stability while we walk, move around and of course squat.</span>\n\n<span style=\"font-weight: 400;\">What we have hopefully achieved in The Pelvis section is improved capacity for movement around this joint. However, if the spine isn’t functioning well it can also limit or impede what the pelvis can do due to the descending influence. </span>\n\n<i><span style=\"font-weight: 400;\">Note: If your pelvis and thoracic spine are both stiff your movement will have to come from somewhere. This could be one big reason why the lower back/spine is the area most commonly linked to injury and discomfort. </span></i>\n\n<span style=\"font-weight: 400;\">So squatting down on your haunches (A2G) every day to look in your lower cupboards it won’t matter if your spine flexes somewhat. This is likely to happen anyway as you get lower down due to the femur (thigh bone) hitting the ilium as you get lower down. Squatting with a wider leg position is likely to reduce the effects of this too. But put simply in an average healthy person it doesn\'t matter if you squat with a flexed spine when there is no load. </span>\n\n<span style=\"font-weight: 400;\">In fact your lumbar spine has more capacity for flexion than any other movement. </span>\n\n<img class=\"aligncenter size-large wp-image-7665\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Ranges-of-movement-in-Lumbar-spine-1024x495.png\" alt=\"\" width=\"1024\" height=\"495\" />\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n<span style=\"font-weight: 400;\">If you add load like a bar across your shoulders with some plates on either end we now need to take into account the compressive forces on top of the spine.</span>\n\n<span style=\"font-weight: 400;\">Squatting with a bit of spinal flexion (breakpoint or butt wink maybe?) with a back bar load means you are now increasing risk. If it is just a few times you will likely get away with it, maybe even weeks or months. However, what MAYBE happening inside you will start to grumble and compensate at some point and wear and tear of a joint can\'t be replaced. So ideally stop descending into your loaded squat prior to hitting your ‘breakpoint’.</span>\n<h3><b>What Is The ‘Break Point’ In The Squat And Where Is Yours?</b></h3>\n<span style=\"font-weight: 400;\">Stuart McGill refers to what he calls the ‘</span><i><span style=\"font-weight: 400;\">break point’</span></i><span style=\"font-weight: 400;\"> which he explains is; “..</span><i><span style=\"font-weight: 400;\">during squatting, there is a loss of the ‘neutral spine’. </span></i><span style=\"font-weight: 400;\">This loss of neutral curvature is actually how our spines were designed to move while we were sitting on our haunches when cooking, eating or performing tasks on the floor. In some countries this is still the case and in fact, these natives seem to have a very low incidence of low back pain.</span>\n\n<span style=\"font-weight: 400;\">We also know from McGill’s work, and others, that each of the facet joints in the lumbar region allows a range of 5-8mm of flexion/extension and 1-5 mm of lateral flexion. This gives a total of about 45-50 degrees of forward flexion from a fully extended position, that we could call safe at the lumbar spine when squatting without resistance. Once we add some resistance, a barbell, for example, this adds a compressive load onto these facet joints, whose main role is to stop excessive movement of the spine.  This movement restriction protects the discs, and reduces their vulnerability and their risk of wear and tear. Consider a healthy, symmetrically stacked and robust spine and this compressive load is pretty safe, now imagine if you have asymmetry, any mechanical dysfunction or improper technique affecting the spines movement capacity and the risk increases further. </span>\n\n<span style=\"font-weight: 400;\">So you can see how actually there is much to consider when performing the squat with any kind of load on the spine if we are to maintain a healthy trunk long term.</span>\n\n<span style=\"font-weight: 400;\">When considering the forces imposed upon the spine McGill states that:</span>\n\n<i><span style=\"font-weight: 400;\">“when a more neutral lordotic posture is adopted, the extensor musculature is responsible for creating the extensor moment and at the same time provides a posterior shear force that supports the anterior shearing action of gravity on the upper body and handheld load……Thus, using muscle to support the moment neutral posture rather than being fully flexed with ligaments supporting the moment greatly reduces shear loading</span></i><span style=\"font-weight: 400;\">” </span>\n\n<span style=\"font-weight: 400;\">What McGill means is the shear force is the force that causes one vertebra to move forwards (or backwards) in relation to the one above or the below and increases the pressure on the intervertebral discs and facet joints. Therefore minimising these shear forces by correct alignment during squatting is more important.</span>\n\n<span style=\"font-weight: 400;\">Do you struggle to maintain an upright posture when squatting with or without the bar?</span>\n\n<span style=\"font-weight: 400;\">Would you like to have a more freely moving spine?</span>\n\n<span style=\"font-weight: 400;\">Would you like to learn how to test your own spines function?</span>\n<h3><b>Watch this video for lateral flexion, flexion, extension and rotation test...</b></h3>\nhttps://youtu.be/xGmd1gsUhKs\n\nSo get to assessing for and improving any dysfunction in the spine and see if you can start taking your squat to great depths.\n\n<img class=\"aligncenter wp-image-7666\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Range-of-movement-at-each-spinal-segment-817x1024.png\" alt=\"\" width=\"528\" height=\"662\" />\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\"><img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a></p>','Project Squat A2G: Part 3 - How To Assess For Dysfunction In The Spine','','draft','closed','closed','','project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=7657',0,'post','',0),(7661,0,'2018-07-02 14:24:45','2018-07-02 14:24:45','','Project Squat Part 3 - How To Test For And Improve Spine Dysfunction','','inherit','closed','closed','','project-squat-part-3-how-to-test-for-and-improve-spine-dysfunction','','','2018-07-02 14:24:45','2018-07-02 14:24:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-Squat-Part-3-How-To-Test-For-And-Improve-Spine-Dysfunction-1.png',0,'attachment','image/png',0),(7665,0,'2018-07-02 20:09:52','2018-07-02 20:09:52','','Ranges of movement in Lumbar spine','','inherit','closed','closed','','ranges-of-movement-in-lumbar-spine','','','2018-07-02 20:09:52','2018-07-02 20:09:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Ranges-of-movement-in-Lumbar-spine-1.png',0,'attachment','image/png',0),(7666,0,'2018-07-02 20:10:43','2018-07-02 20:10:43','','Range of movement at each spinal segment','','inherit','closed','closed','','range-of-movement-at-each-spinal-segment','','','2018-07-02 20:10:43','2018-07-02 20:10:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Range-of-movement-at-each-spinal-segment-1.png',0,'attachment','image/png',0),(7690,0,'2018-07-04 12:55:20','2018-07-04 12:55:20','','Flowin','','inherit','closed','closed','','flowin','','','2018-07-04 12:55:20','2018-07-04 12:55:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Flowin-e1612198973357-1.png',0,'attachment','image/png',0),(7696,0,'2018-07-04 13:01:34','2018-07-04 13:01:34','','TherapyEmpire','','inherit','closed','closed','','therapyempire','','','2018-07-04 13:01:34','2018-07-04 13:01:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/07/TherapyEmpire-e1612199025177-1.png',0,'attachment','image/png',0),(7709,0,'2018-07-04 13:36:39','2018-07-04 13:36:39','','PulseRoll','','inherit','closed','closed','','pulseroll-2','','','2018-07-04 13:36:39','2018-07-04 13:36:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/07/PulseRoll-1-e1612199062812-1.png',0,'attachment','image/png',0),(7711,0,'2018-07-04 13:40:28','2018-07-04 13:40:28','','Wolverson','','inherit','closed','closed','','wolverson','','','2018-07-04 13:40:28','2018-07-04 13:40:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Wolverson-1.png',0,'attachment','image/png',0),(7845,3,'2018-07-09 17:00:57','2018-07-09 17:00:57','<span style=\"font-weight: 400;\">Nerves have been described as the software of the body and to be able to understand this more thoroughly we have to understand about ‘nerve tension’ and ‘Adverse Neural Tension’. These concepts have been recognised for over 100 years in terms of treating patients clinically, but their full potential has never been understood until now. An analogy with the invention of the wheel is an interesting one. The discovery of nerve tension and it being used for the treatment of injuries is like the wheel being invented and placing it on its side, putting 4 legs around the underside and using it as a table. It makes a great table, but the idea to use it in the way we know it today was groundbreaking. The same applies to nerve tension and its application to athletic performance and fatigue relief. </span>\n\n<span style=\"font-weight: 400;\">The entire nervous system, is a single continuous tract, so it follows that if any part of this continuous tract is trapped or tethered (as with an injury for example) then it also follows that there will be some restriction of the mobility of other parts of the nerve system. So a problem with one part of the nerve can cause pain in another – this is the clinical application. However, we have discovered that this is not always represented by pain but also by a reduction of joint range of movement and altered joint biomechanics which can affect a whole host of problems that can cause restricted performance and may ultimately lead to injury. Moreover, with the increased muscle spasm and associated factors, local fatigue increases and so understanding these principles can lead to benefits not only in human performance but also fatigue relief.</span>\n<h3><strong>Just How Much Can The Nervous System Affect Performance?</strong></h3>\n<span style=\"font-weight: 400;\">We know this happens from research performed at Liverpool Hope University College and studies there demonstrate astonishing results. </span>\n<blockquote><span style=\"font-weight: 400;\">One experiment showed that a muscle can increase its force output by 14% after a brief preliminary nerve warm-up (just one 15 second workout using this concept).</span>\n\n<span style=\"font-weight: 400;\">Another experiment showed that by following the same concept a 2 minute programme performed daily for 10 days increases muscle output by over 50%! </span></blockquote>\n<span style=\"font-weight: 400;\">Remember in most cases we are not even aware we have a problem, but even so you can still achieve these remarkable results. Just imagine what these figures could do you for your performance in your sport, squatting or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office. </span>\n<h3><strong>So How Do We Now Approach Exercise Programming?</strong></h3>\n<span style=\"font-weight: 400;\">So when it comes to exercise programming our holistic approach, which is commonly described but rarely understood and demonstrated, takes into consideration all of the body’s systems, and it has a deep understanding of how they interact and are guided by our nervous system. Description terms such as strength and power in this model are inadequate, so when we talk about exercises in these terms, we should be talking in terms of Movement Acquisition Patterns (or MAPs) which are used to enhance a given set of functional movements, not stretches or strengthening exercises, as the latter do not give credit for the full implications of the programming. </span>\n<h4>How The Hamstring Could Be Affected...</h4>\n<span style=\"font-weight: 400;\">Let’s take a hamstring stretch as an example, we are not trying to stretch the hamstrings when we extend the leg out in front of us, we are trying to improve the range of hip flexion and knee extension by stretching the structures on the back of the leg and back. This brings in more than just the hamstrings, it can also be limited by a tight sciatic nerve, a rotated sacro-iliac joint in the lower back, tight gastrocnemius, tight spinal cord and indeed almost any nerve in the chain given the continuum concept described earlier. </span>\n\n<span style=\"font-weight: 400;\">How many times have you stretched your hamstrings using the generally accepted methods only to find that their flexibility continues to be stubborn and often returns to their standard length very soon? Many people experience this phenomenon. The reason is often due to them stretching only one of the structures that limit the movement, i.e. the hamstrings. If they do not stretch the other structures as well, of course they will not be affected and so the limited range will usually return. <strong>So we are trying to acquire a pattern of movement, not just stretching the hamstrings. </strong></span>\n\n<span style=\"font-weight: 400;\">Young fit people who have sustained both mild and more serious injuries (in the past) requiring surgery from problems that are the type of problems that occur from nerve tension.</span>\n\n<span style=\"font-weight: 400;\">Calf and hamstring injuries are both commonly caused by a tight sciatic nerve for example.  The muscles provide a protective spasm to the nerve during movement and if stretched or loaded sufficiently the muscles can spasm enough to cause themselves to tear, or cramp up - which can FEEL like a tear.  By mobilising the nerve it releases the tension in the muscles and reduces the likelihood of this happening.</span>\n<h4>What About The Overhead Squat...</h4>\n<span style=\"font-weight: 400;\">The same principle applies to ALL nerves.  In the OH squat, if the median nerve is tight it will reduce the amount the squatter can abduct and extend the arms over head while balancing a load in their hands.  This would be due to the muscle spasm that builds up to try and protect the inflexible nerve. The greater the muscle spasm (which is unbeknown to the squatter as its SUB clinical at this point) the more he\'ll try and force his shoulder turn, which in turn increases the tension etc etc.  The key to a sound and reproducible OH squat is to reduce any tension in the movement, so as to help with performance. So by mobilising the median nerve, we are helping with ALL of the above.</span>\n\n<span style=\"font-weight: 400;\">Do YOU have any of the above mentioned movement problems?</span>\n\n<span style=\"font-weight: 400;\">Would YOU like to learn how to test and mobilise your nerves?</span>\n\n<span style=\"font-weight: 400;\">Would YOU like to learn how to reduce injury risk while increase performance levels in your squat?</span>\n\nThen start by watching the video below....\n\nhttps://youtu.be/IHKZ6Jeted0\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\"><img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a></p>','Project Squat A2G: Part 4 - The Nervous System & How It Affects The Squat','','draft','closed','closed','','project-squat-a2g-part-4-the-nervous-system-how-it-affects-the-squat','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=7845',0,'post','',0),(7852,0,'2018-07-06 11:58:39','2018-07-06 11:58:39','','Project Squat Part 4 - The Nervous System And How It Affects The Squat','','inherit','closed','closed','','project-squat-part-4-the-nervous-system-and-how-it-affects-the-squat','','','2018-07-06 11:58:39','2018-07-06 11:58:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-Squat-Part-4-The-Nervous-System-And-How-It-Affects-The-Squat-1.png',0,'attachment','image/png',0),(7920,3,'2018-07-15 10:34:19','2018-07-15 10:34:19','<span style=\"font-weight: 400;\">The Shoulders and their effect on your squat can be something quite profound and so I have written on this subject previously. It is not an area of the body that we would immediately consider as a squat limiter and yet there is a tiny muscle in the front of your chest that ‘commonly’ is problematic due to our lifestyles. </span>\n\n<span style=\"font-weight: 400;\">The body compensates for all sorts of reasons as a result of the way we are using our bodies (or in many cases NOT using them!) today and so we might consider trying a few of these techniques to address them and to enable us to MOVE WELL and also then MOVE MORE, or at least move more efficiently and often. </span>\n\n<span style=\"font-weight: 400;\">This is of course, as with anything human movement related discussion, CASE BY CASE. We must each become our own coach and with the help of the right professionals guiding and advising us we must become responsible for looking after our own body.</span>\n\n<span style=\"font-weight: 400;\">So for this Part 5 of the Squat Project A2G - The Shoulder I would like to take you back to a previous article I wrote on this very subject:</span>\n\n<a href=\"https://www.biomechanicseducation.com/how-your-pectoralis-minor-can-affect-your-squat-depth/\">Read Now: How Your Pectoralis Minor Can Affect Your Squat Depth</a>\n\nWatch today\'s video where I show you how to assess for dysfunction in the shoulder and then what you can do to correct it and get that squat even deeper. Just hit play....\n\nhttps://youtu.be/MLKcc9i5zmE\n\n<span style=\"font-weight: 400;\">By the way, if you like seeing this in the real world as it were, you will love this case study. I worked with British olympic weightlifting champion, Laura Hewitt, and here is her journey with biomechanics coaching:</span>\n\n<a href=\"https://www.biomechanicseducation.com/case-study-elite-lifter-laura-hewitt/\">British Olympic Weightlifting Champion, Laura Hewitt, Discovers Biomechanics Coaching - Read this case study now!</a>\n\n<span style=\"font-weight: 400;\">P.S. Please keep sending your caveman squat photos BEFORE &amp; AFTER so we can analyse and measure success ….</span>\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\"><img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a></p>','Project Squat A2G Part 5 - How Shoulder Mechanics Affects Your Squat','','draft','closed','closed','','project-squat-a2g-part-5-how-shoulder-mechanics-affects-your-squat','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=7920',0,'post','',0),(7922,0,'2018-07-13 05:42:47','2018-07-13 05:42:47','','Biomechanics Coaching courses UK','','inherit','closed','closed','','biomechanics-coaching-courses-uk','','','2018-07-13 05:42:47','2018-07-13 05:42:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1.jpg',0,'attachment','image/jpeg',0),(7923,0,'2018-07-13 05:50:31','2018-07-13 05:50:31','','Project squat a2g - how your shoulder affects your squat depth','','inherit','closed','closed','','project-squat-a2g-how-your-shoulder-affects-your-squat-depth','','','2018-07-13 05:50:31','2018-07-13 05:50:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-squat-a2g-how-your-shoulder-affects-your-squat-depth-1.png',0,'attachment','image/png',0),(7995,3,'2018-07-23 13:15:09','2018-07-23 13:15:09','<span style=\"font-weight: 400;\">Knee Stability is clearly a big deal when it comes to squatting! When you see someone squatting in the gym and their knees are all over the place you almost wince right? And if thats you, you probably know that your instability is limiting your strength and depth in the squat. But we aren\'t just talking about wobbly knees here. We are going to talk about how the knee is affected by other areas of the body, the link between the quadriceps and hamstrings in terms of your movement, the forces that go through the knee, why you should maybe squat with a narrower stance, how to assess for risk and so much more.</span>\n\n<span style=\"font-weight: 400;\">The knee is the area of the body has incurred the most questions from YOU, the readers and A2G fans! </span><span style=\"font-weight: 400;\">Not surprising really as I think there are probably several good reasons why this area of the body brings about so many questions. We will look at some of the evidence that is out there and I will endeavour to help/guide you towards a better understanding of what it means for you individually, or ‘case by case’, so you have more information to base your decisions on.</span>\n<h3><b>The Knee Is The Middle Sister</b></h3>\n<span style=\"font-weight: 400;\">Ever heard of the knee being called ‘The Middle Sister’? </span>\n\n<span style=\"font-weight: 400;\">Well, it gets treated a bit like one in terms of the issues coming from the pelvis above and the foot and ankle below. So much so very often the knee is NOT where the problem has stemmed from. <strong>More often than not the knees ‘stresses’ are from the joints above and/or below. </strong></span>And so our focus shouldn\'t be on the knee but on the pelvis and/or ankle and foot.\n\n<span style=\"font-weight: 400;\">I speak from experience and even with my far from perfect biomechanics and extremely active lifestyle I have only ever incurred one injury - ACL rupture caused in my opinion NOT by a \'dodgy\' knee but from a combination of a dysfunctional pelvis and very loose feet (MidTarsal Joint /SubTalar Joint). </span>\n\n<span style=\"font-weight: 400;\">Having both my pelvis and feet creating abnormal descending and ascending loads via my knee joint across a 7yrs-27yrs dancing, 30 years of endurance running, 36 years of weightlifting and the last 5 years regaining my A2G squat ability I actually feel pretty lucky. I elected NOT to have reconstruction surgery and instead used the techniques I am going to show you in the video below (once rehab was satisfactory of course). Evidence suggests that these techniques will contribute to avoiding or at least reducing the risk of an injury to the knee.</span>\n<h3><b>The Knee in Biomechanical Terms</b></h3>\n<span style=\"font-weight: 400;\">Firstly with regards to the knee during the squat there is a lot of evidence out there about what forces are being transferred through the knee joint and its structures. Things that need to be considered when referring to research are the health and biomechanics of the individual, circumstances of the project and the limitations or variables of specifics to the research study. The difficulty is then for the reader to decipher what this may indicate for them personally. The translation of this information is often where things become distorted so I will try to be as precise as I can be with the information I have gathered, while generalising with safety in mind.</span>\n\n<span style=\"font-weight: 400;\">Quadriceps, hamstring and gastrocnemius activity increases as knee flexion increases, which supports athletes with healthy knees performing the parallel squat (thighs parallel to the ground) between 0 and 100 degrees of</span><span style=\"font-weight: 400;\"> </span><span style=\"font-weight: 400;\">knee flexion. It is also demonstrated that the parallel squat is not necessarily a problem to knee health. </span>\n<h3>Have You Got Healthy Knees? Do This...</h3>\n<span style=\"font-weight: 400;\">For those of you with healthy knees, the parallel squat is recommended over the deep squat (A2G or squatting down as far as possible until the posterior thighs and lower leg make contact with each other) because the risk of injury to the menisci and cruciate and collateral ligaments is likely to increase during the deep A2G squat. The squat itself does not compromise knee stability though and in fact when performed correctly with good biomechanics, it can enhance stability. Large decelerations during the squat generate huge forces through the knees during the descent of the squat which is why this part of the movement should be performed in a slow and controlled manner to avoid higher risks of injury.</span>\n<h3>How To Help Correct The \"Forward Flex/Tilt\" In The Squat...</h3>\n<span style=\"font-weight: 400;\">For those of you who find yourself ‘forward flexing’ or ‘trunk tilting’ the greater hip flexion has been shown to eliminate ACL stress, as stated above, mainly due to the increased hamstring activity. This could, therefore, indicate quadriceps dominance (Hewitt 2004). In other words, the hamstring to quadriceps ratio is likely to require some form of <strong>conditioning of the hamstrings to regain a balance</strong>. What is paramount is what type of conditioning work and what must first be established is the reason for the imbalance in the first place.</span>\n\n<span style=\"font-weight: 400;\">At 60 degrees</span><span style=\"font-weight: 400;\"> </span><span style=\"font-weight: 400;\">of knee flexion the forces in the knee joint change from greater posterior force to a greater anterior shear force which increases throughout the ascent. Hence performing squats at knee flexion angles of less than 90 degrees</span><span style=\"font-weight: 400;\"> will minimise the risk of knee injury.</span>\n\n<span style=\"font-weight: 400;\">Fry et al (2003) did a study looking at the effects of allowing the knees to move over the toes. This study found that while the NSCA cite the knees should be kept from moving forwards over the toes or to keep the trunk in an upright posture, in order to optimise the forces involved on all the joints, it may be a good thing to allow the knees to travel ‘slightly’ over the toes. This allows for a more even distribution of load through ankle, knee, hip and spine.</span>\n<h3><b>How Squat Width Affect Forces At The Knee</b></h3>\n<span style=\"font-weight: 400;\">When considering the width of the squat it has been demonstrated that the wider squat has been shown to generate 15-16% significantly greater compressive forces through the knee joint than a narrow stance, McCaw et al (1999). Thus a narrow stance is a better choice if you wish to reduce the risk of compressive forces going through the knees. </span>\n\n<b>To Summarise The Above Data; </b>\n\n<span style=\"font-weight: 400;\">For those with healthy knees a greater angle of knee and hip flexion is ok so long as the loads are not heavy. Periodisation techniques should always be used when performing the squat, in that the training is divided into light, medium and heavy cycles throughout the year. This also enables an individual to perform a variety of squat depths.</span>\n\n<b>A2G Squat Project Questions Discussed In The Video;</b>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Catherine Turner-Perrott - Knees coming together excessively?</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Antwone Townny Aoun - Kees passing over toes?</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Ginger Ninjer - Should you be squatting with a meniscus tear?</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Jodie Law - Client has a knee injury that stops her squatting ACL &amp; MCL how can I get her squatting?</span></li>\n</ol>\n....and more!\n\nhttps://youtu.be/MhaNa5isxdc\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\"><img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a></p>','Project Squat A2G Part 6 - The Knee & Your Squat','','draft','closed','closed','','squat-project-a2g-part-6-the-knee-your-squat','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=7995',0,'post','',0),(7997,0,'2018-07-20 14:27:39','2018-07-20 14:27:39','','Project squat a2g - how your knees affect your squat','','inherit','closed','closed','','project-squat-a2g-how-your-knees-affect-your-squat','','','2018-07-20 14:27:39','2018-07-20 14:27:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-squat-a2g-how-your-knees-affect-your-squat-1.png',0,'attachment','image/png',0),(8100,3,'2018-07-30 14:16:00','2018-07-30 14:16:00','<span style=\"font-weight: 400;\">So far we have looked at the descending biomechanical issues that can impede your ability to squat. We have looked at the pelvis, the spine, the shoulders, the knees and today we will explore ascending biomechanical issues from the foot and ankle in terms of squatting.</span>\n\n<span style=\"font-weight: 400;\">Podiatrists would likely suggest we start at the feet, and in some cases this might be right, however there is an innate problem here in terms of what action maybe taken.</span>\n\n<span style=\"font-weight: 400;\">For example should your ‘overpronation’ be coming from a leg length discrepancy (LLD) that is simply a functional issue coming from above, then insoles maybe measured and fitted to that false/functional LLD. Thus compounding the functional issue above.</span>\n\n<span style=\"font-weight: 400;\">The LLD could also bend the knee more (see Part 6 Knee), or drop the hip more.  Pronation will increase the load on the leg (see \'Tight Calves\' below), bending the knee will increase pronation, and dropping the hip will increase the spasm in the glutes/piriformis (see Part 2 Pelvis).  </span>\n\n<span style=\"font-weight: 400;\">So by reducing the spasm in muscles like piriformis, in other words preventatively, (and also if necessary), then we are helping to reduce all of the above. </span>\n\n<span style=\"font-weight: 400;\">A vicious circle if ever there was one but a great example of the Integrated System!</span>\n\n<span style=\"font-weight: 400;\">All that said and done insoles are often still required but the ideal would be as minimal an insert as possible. Less intervention holds less risk and we really want the body to be doing what IT can to improve our movement profile first and foremost. </span>\n\n<span style=\"font-weight: 400;\">So a key question when, or even better, before, you go to get your feet measured is whether your LLD (if you have one) is structural or functional? If functional then we need to be doing all of those anti spasms, joint mobilisations, and nerve mobilisations just before being measured (Parts 2/3/4/5). This way we can have insoles fitted to our best biomechanical function at that point. Also be aware that if you are working towards changing your movement profile then your insoles may well change over time too.</span>\n\n<span style=\"font-weight: 400;\">However, anyone who advocates 1 type of shoe for all is clearly selling. We should NOT ALL be barefoot, we should NOT all be wearing MBT’s or even the same shoe type. </span>\n<h3><b>So Which Shoes Should We Wear While Squatting? </b></h3>\n<span style=\"font-weight: 400;\">Well some of us need a shoe to assist pronation (supinator) and others need shoe designed to assist supination (pronator), some of us need more cushioning (supinator) and others need more support (pronator). </span>\n\n<span style=\"font-weight: 400;\">Some will require a heel lift to lengthen the tibia and compensate for those ‘tight’ calves. We are all different.</span>\n\n<span style=\"font-weight: 400;\">The effects of weightlifting shoes on squat mechanics is a subject for which I struggled to find evidence. However, I did find a study by Fortenbaugh et al .(2003). They concluded that “</span><i><span style=\"font-weight: 400;\">In this study, the combined amount of anterior (forward) bar movement and posterior (backwards) hip movement was significantly less when wearing weightlifting shoes (as opposed to running shoes)….this study did not exhibit any other kinematic differences when using weight lifting shoes versus running shoes”.</span></i><span style=\"font-weight: 400;\"> So this suggests the weight lifting shoes allow for a more vertical trunk position during the squat, which is what is recommended for low back health and reduced loads on the knees.</span>\n<h3><b>Should We Even Wear Shoes While Squatting?</b></h3>\n<span style=\"font-weight: 400;\">There is a massive trend in the lifting room to remove shoes completely to be able to feel the floor under the feet for more proprioception. If you have a neutral foot then that might be ok. However, a pronator foot type is likely to a). struggle to stabilise from the foot b). increased injury risk (over time) due to ‘over’ pronation where force production is highest. c). Lose power due to the above</span>\n\n<span style=\"font-weight: 400;\">With all of this in mind, we clearly need to identify what foot type we have before removing shoes, right?</span>\n\n<span style=\"font-weight: 400;\">Also, McBride, et al 2006, demonstrated that isometric squatting on an unstable surface significantly reduced peak force &amp; rate of force development. If there is a difference then some kind of orthotics may be required. This may not be a permanent requirement if you are working on any other biomechanical dysfunctions but if your foot itself has structural issues then it is likely you will always need some kind of foot support.</span>\n<h3><b>So How Do We Identify Our Foot Type? </b></h3>\n<span style=\"font-weight: 400;\">Well, I am afraid this is a challenging one to test on yourself but I strongly recommend you watch the video to find out one way of testing your foot/ankle mobility.</span>\n\n<span style=\"font-weight: 400;\">Then pay a visit to your foot specialist or a local Biomechanics Coach who can identify if you have a</span> <i><span style=\"font-weight: 400;\">propensity to pronate</span></i><span style=\"font-weight: 400;\"> and the</span><i><span style=\"font-weight: 400;\"> capacity to re-supinate</span></i><span style=\"font-weight: 400;\">. These are the 2 key identifying factors in understanding how your foot might be influencing your squat. </span>\n<h3><b>The Integrated System - Tight Calves </b></h3>\n<b>(For Dorsiflexion Test Watch Video) </b>\n\n<span style=\"font-weight: 400;\">If you consider that most of us have ‘tight’ calves (pronators and supinators) often caused by the ‘high heels’ we are all walking on AND YES even on our trainers have a good inch or 2 underneath your heel, giving you a prolonged plantar flexed position through the ankle. This then limits your dorsiflexion range during the gait cycle. </span>\n\n<span style=\"font-weight: 400;\">Also, prolonged periods sitting won\'t be great for our ankle motion nor your nervous system. </span>\n\n<span style=\"font-weight: 400;\">This problem can result in all sort of movement related issues as well as limiting our squat. While our lifestyles will be contributing to our physical limitations and poor biomechanics we also need to identify what it is inside of our own body that is creating the compensation, as it may differ from person to person. Different root causes require different strategies in terms of exercise prescription.</span>\n\n<span style=\"font-weight: 400;\">As previously described tight calves can cause over pronation.  The dorsiflexion (moving the toes upwards) is not available from the ankle joint due to the tightness in the calves, so it has to come from the subtalar joint.  It comes as part of the pronation mechanism though and so increases the amount of pronation as well. This can cause shin related injuries, plantar fasciitis, patellofemoral syndrome as well as other knee and Achilles problems.  Remember it important to note that ‘tight’ calves are very often a result of a tight sciatic nerve, so by mobilising the nerve (Part 4 Nerves), we can help with not only our squatting capacity, range and movement but we can also reduce our injury risk at the same time. WINNER!!</span>\n<h3><b>What Is The Best Foot Position In The Squat?</b></h3>\n<span style=\"font-weight: 400;\">There is really only one deciding factor in the direction of your feet and that is where they fall naturally for the width of squat you have chosen. So while the width may determine the degree of stress on the knee there is no substantial EMG evidence to determine that changing the foot angle or direction hits any muscle more or less. Therefore to reduce injury risk allowing the feet to fall where they want to is probably most prudent.</span>\n\n<span style=\"font-weight: 400;\">Klein’s book ‘The knee in sports’ states that “…</span><i><span style=\"font-weight: 400;\">the toes should be kept directly beneath the knees or slightly inside. This allows the normal relationship to be maintained between femur and tibia in the flexion movement</span></i><span style=\"font-weight: 400;\">”. However in Rippetoe’s ‘Starting strength 3</span><span style=\"font-weight: 400;\">rd</span><span style=\"font-weight: 400;\"> edition’ he describes the need for feet to be turned out at a 30</span><span style=\"font-weight: 400;\">0</span><span style=\"font-weight: 400;\"> angle. The problem arises when these types of statements are taken out of context. So I would like to clarify, the types of questions we should be asking are ‘what is my biomechanical set up?’ and ‘what do I want to achieve from this movement?’</span>\n\n<span style=\"font-weight: 400;\">During the performance of a squat, several authors have recommended various positions for placement of the foot. However a review of the literature failed to demonstrate how foot placement and lower extremity turn out during the squat affect the activity of the leg muscles (Ninos et al 1997)</span>\n<h3><b>The Exercises</b> <b>Required To Improve Your Squat (See Video Series) </b></h3>\n<span style=\"font-weight: 400;\">Understanding whether you have a propensity to pronate and the capacity to re-supinate is key to understanding which shoes (if any) might be right or wrong for you. It also gives you the information you need to know what exercises you can try to help foot/ankle function.</span>\n\n<span style=\"font-weight: 400;\">Pronation and supination band exercises as shown in the video are a great way to contribute to improving your foot function and stability and therefore your squat movement and stability. However, if you consider this wonderful integrated system as discussed throughout this squat project A2G series, there is a whole series of things we can do isn\'t there….</span>\n\n<span style=\"font-weight: 400;\">Pelvic Anti Spasm - reduce tension around hip muscles </span>\n\n<span style=\"font-weight: 400;\">Nerve Mobilisations - moves the nerve all the way down the body</span>\n\n<span style=\"font-weight: 400;\">Spine Mobility - gives us the ability to maintain an upright posture while holding a load </span>\n\n<span style=\"font-weight: 400;\">Strength Ratio Training - evens out those joint ratios to give our squat more stability and reduce injury risk</span>\n\n<span style=\"font-weight: 400;\">Dorsiflexion work - most of us have a tension across the back of the ankle/calves but don’t forget stretching may NOT be the answer!</span>\n\nhttps://youtu.be/3eZ_XAshI_8\n\n<span style=\"font-weight: 400;\">NEXT TIME - Is the final tutorial in this squat project series! </span>\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','Project Squat A2G Part 7 - How Your Ankles & Feet Affect Your Squat','','draft','closed','closed','','project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=8100',0,'post','',0),(8104,0,'2018-07-30 14:10:26','2018-07-30 14:10:26','','Project squat a2g - part 7 - how your ankles & feet affect your squat','','inherit','closed','closed','','project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat-2','','','2018-07-30 14:10:26','2018-07-30 14:10:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat-1.png',0,'attachment','image/png',0),(8301,3,'2018-08-06 18:37:34','2018-08-06 18:37:34','<span style=\"font-weight: 400;\">In this final blog for the Squat Project A2G I would like to discuss the vital component relating to how you can truly improve your A2G squat.</span>\n\n<span style=\"font-weight: 400;\">To understand this we need to consider the reason/s we are struggling to squat in the first place. </span>\n<h3>Why Do We Struggle To Squat In The First Place?</h3>\n<span style=\"font-weight: 400;\">Due to our modern lifestyles, we sit at desks for prolonged periods, stand for long periods, drive for hours, perform repetitive movements regularly and physical tasks we were not originally designed to do. What this means is the body has to compensate and is attempting to evolve in some way. The result is muscle function is affected and nerves are tethered thus creating tension that stiffens joints OR any variation of these compensations and in any order.</span>\n\n<span style=\"font-weight: 400;\">So it is our </span><i><span style=\"font-weight: 400;\">behaviour</span></i><span style=\"font-weight: 400;\"> that we need to modify alongside this awesome monitoring and exercise programme.</span>\n\n<span style=\"font-weight: 400;\">However, behaviour change is more difficult than we might first imagine. The methods are super </span><i><span style=\"font-weight: 400;\">simple</span></i><span style=\"font-weight: 400;\"> but not necessarily </span><i><span style=\"font-weight: 400;\">easy </span></i><span style=\"font-weight: 400;\">to implement consistently.</span>\n\n<span style=\"font-weight: 400;\">You start out with all the very best intention having seen an advert and signing up for the Squat Project A2G tutorial video series and are feeling all fired up. </span>\n\n<span style=\"font-weight: 400;\">Watched the first video and had a go at the pelvic test and exercises, right?</span>\n\n<span style=\"font-weight: 400;\">Then when the next one comes through you’re in the middle of something so you file it to - </span><i><span style=\"font-weight: 400;\">WATCH LATER</span></i><span style=\"font-weight: 400;\">. The 3rd one pops up and you’re reminded “</span><i><span style=\"font-weight: 400;\">ARGH DAMMIT I haven’t watched No 2 yet!!”</span></i>\n\n<span style=\"font-weight: 400;\">...and so it continues, each one added to the FILE…</span>\n\n<span style=\"font-weight: 400;\">Hey! I have done it myself before, we are all human!</span>\n\n<span style=\"font-weight: 400;\">So how do we succeed in achieving this simple goal to squat better or A2G when our lives are so FULL of information overload, things to do, lists of jobs, errands backing up, people to see?</span>\n\n<span style=\"font-weight: 400;\">Well in fact for me there are 21 Steps ….That’s it! </span><span style=\"font-weight: 400;\">Before we get into those here are some very basic tips and considerations...</span>\n<h3>Daily Tips To Improve The Depth Of Your Squat</h3>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">An improved movement profile requires ‘training’ every day but not necessarily just in a gym </span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Remember sitting isn’t bad in itself, it’s the long periods of not moving that is the problem </span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Enjoy chores and see them as movement nutrition </span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Squat regularly even at home as you look inside low cupboards, rather than simply bending over with your spine.</span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Times when you find yourself ‘waiting’ for something (doctors, bus queue, sitting on a train etc) practice your anti spasm techniques like the 4 sign</span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Play WITH your kids on the slide, swings &amp; roundabout - it’s great fun and the kids will love it too!</span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Get into the gardening and dig, mow or trim </span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Move well first </span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Move more </span></li>\n</ul>\n<span style=\"font-weight: 400;\">Simple…!?</span>\n<h3><b>The Power Of The Mind</b></h3>\n<span style=\"font-weight: 400;\">Well, kind of but let’s delve a little deeper and think about our inner dialogue as described by Nick Hall PH.D. in his book..</span>\n<h4><strong><i>‘I </i><i>KNOW</i><i> WHAT TO DO, SO </i><i>WHY</i><i> DON’T I DO IT? The new science of self discipline’.</i></strong></h4>\n<span style=\"font-weight: 400;\">In his book, Hall is charismatic, funny and really honest about the evidence behind the influence of the way we think about our health and also on how we feel about situations. </span>\n\n<span style=\"font-weight: 400;\">This is where I say it….yes…‘the power of the mind’…THIS is something I believe strongly in having practiced it myself for many years. </span>\n\n<span style=\"font-weight: 400;\">...we spend a lot of time making statements like this….</span>\n\n<b><i>“I wish I…</i></b>\n\n<i><span style=\"font-weight: 400;\">..was thinner</span></i>\n\n<i><span style=\"font-weight: 400;\">..had more flexibility</span></i>\n\n<i><span style=\"font-weight: 400;\">..could lift more weight</span></i>\n\n<i><span style=\"font-weight: 400;\">..experienced less pain</span></i>\n\n<b><i>..could squat better</i></b>\n\n<i><span style=\"font-weight: 400;\">..had more money</span></i>\n\n<i><span style=\"font-weight: 400;\">..worked less hours</span></i>\n\n<i><span style=\"font-weight: 400;\">..was not sitting in this traffic jam</span></i>\n\n<span style=\"font-weight: 400;\">Thinking this way puts us into a </span><i><span style=\"font-weight: 400;\">negative</span></i><span style=\"font-weight: 400;\"> ‘frame of mind’, that we are lacking or missing out for example. I know I am guilty of this sometimes when it comes to the number of kilos I can(t) thrust over my head in the snatch!</span>\n<h3><b>What Should We Do To Shift Our Mindset?</b></h3>\n<span style=\"font-weight: 400;\">Well, there is a section in this book where Hall suggests, when we are in a situation that we don\'t like, that we say.. </span>\n\n<b><i>I Am Glad I Am Not…</i></b>\n\n<span style=\"font-weight: 400;\">..and then add the ‘thing’ you are glad you are not at that moment. </span>\n\n<span style=\"font-weight: 400;\">This converts how we feel from negative to a more positive and happier state of mind.</span>\n\n<span style=\"font-weight: 400;\">Examples might be..</span>\n\n<span style=\"font-weight: 400;\">..morbidly obese</span>\n\n<span style=\"font-weight: 400;\">..unable to exercise</span>\n\n<span style=\"font-weight: 400;\">..unable to perform a deadlift</span>\n\n<span style=\"font-weight: 400;\">..in agony that ruins my day</span>\n\n<b>..unable to squat at all!</b>\n\n<span style=\"font-weight: 400;\">..as poor as others </span>\n\n<span style=\"font-weight: 400;\">..unemployed</span>\n\n<span style=\"font-weight: 400;\">..in the traffic accident up ahead</span>\n\n<i><span style=\"font-weight: 400;\">Positive Mental Attitude</span></i><span style=\"font-weight: 400;\"> is a great example of the control WE have over what we do even when that </span><i><span style=\"font-weight: 400;\">Inner Dialogue</span></i><span style=\"font-weight: 400;\"> is arguing the easy option. So the biomechanics programme I have gone through is essential for reducing the risk of injury, prehab if you like, but perhaps there\'s a stage even before it. The stage of mindset, belief patterns, and other things that affect the way we move on a daily basis. And thats what I would like to discuss with you in a future series…..</span>\n\nI hope you have enjoyed the project squat series. Be sure to keep referring back to each section to make sure you get the full process, from the pelvis, to the spine, the shoulders, knees, ankles, and feet and PLEASE do send in your before and after photos of your cave mane squat progress!\n\nAnd hey if you would like to be able to take your clients through the full system then come on one of our diplomas and you soon will be able to do a full body screen, be able to assess someone from a biomechanical perspective and get them moving better.\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">Just click here and let us know you are interested</a> and one of the team will be in touch, or give me a call on <a href=\"tel:07976 933113\" target=\"_blank\" rel=\"noopener\">07976 933113</a>, yup that\'s my personal number, and throw any questions you have at me :-)\n\n<hr />\n\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','Project Squat A2G - Part 8 of 8 - When Getting A Deeper Squat Isn\'t Just About What You Do In The Gym','','draft','closed','closed','','project-squat-part-8-when-getting-a-deeper-squat-isnt-just-about-what-you-do-in-the-gym','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=8301',0,'post','',0),(8302,0,'2018-08-06 18:18:37','2018-08-06 18:18:37','','Part 8 Project Squat - When Squatting Deeper Is More Than Just About What You Do In The Gym','','inherit','closed','closed','','part-8-project-squat-when-squatting-deeper-is-more-than-just-about-what-you-do-in-the-gym','','','2018-08-06 18:18:37','2018-08-06 18:18:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/08/Part-8-Project-Squat-When-Squatting-Deeper-Is-More-Than-Just-About-What-You-Do-In-The-Gym-1.png',0,'attachment','image/png',0),(8345,3,'2018-08-13 13:47:21','2018-08-13 13:47:21','<span style=\"font-weight: 400;\">As an instructor we want to make sure that ALL of our participants are incredibly successful. However, we know it’s simpler to design a personalised programme and deliver it if they are having one to one training. </span>\n\n<span style=\"font-weight: 400;\">Group sessions allow people who don’t train at all, to train with an instructor guiding them on how to improve their movement. The problem now is creating a programme that serves each participant as individually as possible. This is a real challenge..</span>\n\n<span style=\"font-weight: 400;\">So here are 6 tips to help you personalise and improve your group exercise programmes</span>\n\n<b>1. Include a Movement Preparation Phase</b><span style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"> to the ‘warm up’ - and yes this can be personal. With a quick analysis of the group through a simple movement screen you can get an idea of what that prep needs to be. 4 Sign Test = 4 Sign Exercise for example.</span></span>\n\n&nbsp;\n\n<b>2. Encourage ‘Buddie’ Work </b><span style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">where appropriate. People who go to classes generally go because they like the camaraderie and social aspect so why not encourage this even more by adding ‘buddie’ work. Maybe they could face each other during a certain exercise to motivate each other</span></span>\n\n&nbsp;\n\n<b>3. Give Them Homework</b>! It’s called ‘<i>going the extra mile</i>’ and they will appreciate that you do more to encourage them than other instructors do. Suggest they meet a friend for a parkrun Saturday morning.\n\n&nbsp;\n\n<b>4. Arrive Early To Educate</b> them on how to improve their movement outside of the class. For example, if you teach pre-choreographed classes then you KNOW there is no time for ‘extra’ stuff. If you can bring a foam roller into the studio and teach them HOW and WHY they should try it out. Also suggest its great idea for adding to their birthday or xmas list! If you can’t access the studio suggest gathering on the gym floor.\n\n&nbsp;\n\n<b>5. Create a handout</b><span style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"> </span></span>Often people go to classes because they simply have no idea what to do in the gym! So why not write a short simple programme of exercises they can try before you see them next week?\n\n&nbsp;\n\n<b>6. Welcome Everyone &amp; Stand By The Door As They Leave</b><span style=\"font-weight: 400;\">. This for me is a vital component of ‘connecting’ with your participants and doesn\'t require much effort nor time. They are mostly all in a hurry to leave anyway but it goes along way especially if you remember their names too! Now there’s a challenge for you!</span>\n\n&nbsp;\n\n<hr />\n\n<span style=\"font-weight: 400;\">NOW I am going to give you even more ways and reason to CONNECT with your participants.. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having given you some of the </span><i><span style=\"font-weight: 400;\">iMoveFreely® </span></i><span style=\"font-weight: 400;\">techniques in the Squat Project A2G video tutorial series, we have had a MASSIVE response of the successes you are experiencing which makes me feel extremely happy indeed. My mission here has always been to help more people move more freely through YOU, than I can as individual practitioner. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have been delivering the revolutionary </span><i><span style=\"font-weight: 400;\">iMoveFreely®</span></i><span style=\"font-weight: 400;\"> Instructor programme for over 10 years now with immense success. This has resulted in us receiving hundreds of fantastic feedback emails from previous learners about their experience during the workshop and also their client/participant success stories! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are really passionate about acting upon your feedback and this is how we have evolved this programme to be user friendly and easy to blend into your present classes or to set up your own ‘pure’ </span><i><span style=\"font-weight: 400;\">iMoveFreely®</span></i><span style=\"font-weight: 400;\"> clinics/workshops. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While the simple and unique techniques are not about to make you into pseudo-therapists, we can give you the skills to potentially help prepare your clients/participants to move more freely, while reducing their injury risk and doing so with increased confidence.</span>\n\n&nbsp;\n<h3><strong>Watch this video about the I Move Freely Program:</strong></h3>\n&nbsp;\n\nhttps://youtu.be/gG6yxr0z2PE\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\"><span style=\"color: #ff0000;\"><strong>SPECIAL OFFER:</strong></span> Get an Anatomy Coloring Book worth £17.35 when you register for the upcoming iMoveFreely Instructor Workshop.</h2>\n<img class=\"wp-image-8348 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/08/Anatomy-Colouring-Book.jpg\" alt=\"\" width=\"191\" height=\"245\" />\n\n&nbsp;\n<p style=\"text-align: center;\">I know its only a small bonus but I LOVE this book, it\'s such an amazing way to learn anatomy and its really relaxing. So I thought I would give one to each of the learners who come to this upcoming workshop.</p>\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/imovefreely-3/\" target=\"_blank\" rel=\"noopener\">Click here to find out more.</a></p>\n\n\n<hr />\n\n<h2 style=\"text-align: center;\">iMoveFreely Instructor Workshop From Biomechanics Education</h2>\n<h4 style=\"text-align: center;\">Helping group exercise instructors deliver programmes to help their clients move better and get even better results</h4>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Are you an exercise to music instructor?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you teach Les mills, Indoor cycling, HIIT, circuits, Pilates, Yoga, Aerobics, Aqua?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you have participants of all different levels and abilities?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you have participants with aches and niggles?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Would you like to expand and deepen your knowledge to help them better?</span></li>\n</ul>\n<span style=\"font-weight: 400;\">We have a 1 day </span><i><span style=\"font-weight: 400;\">iMoveFreely® </span></i><span style=\"font-weight: 400;\">Instructor workshop running in Nottingham on September 16th and it is the perfect way to enhance the content you learned from the Squat Project AND every single previous workshop or course you have ever attended. </span>\n\n<span style=\"font-weight: 400;\">These fabulous evidence based techniques can be life changing for some (see below) and will give you answers to those questions about why some people move the way they do or cannot squat A2G.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Start your own ‘pure’ iMoveFreely® clinic/workshop</span>\n\n<span style=\"font-weight: 400;\">or</span>\n\n<span style=\"font-weight: 400;\">Blend these techniques into your present classes</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Get results</span></i>\n\n<i><span style=\"font-weight: 400;\">Stand out from the crowd</span></i>\n\n<i><span style=\"font-weight: 400;\">Increase your confidence</span></i>\n\n<i><span style=\"font-weight: 400;\">Increase your fees</span></i>\n\n<i><span style=\"font-weight: 400;\">Squat A2G!</span></i>\n\n&nbsp;\n\nReady? Lets go....\n\n<a href=\"https://www.biomechanicseducation.com/imovefreely-3/\" target=\"_blank\" rel=\"noopener\"><b><i>WHAT IS IT? Click here for the full outline of the imovefreely workshop! </i></b></a>\n\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/#tab-description\" target=\"_blank\" rel=\"noopener\"><b><i>&lt;&lt; BOOK HERE &gt;&gt; </i></b></a>\n\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/#tab-description\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-8351 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/08/DSC07316-576x1024.jpg\" alt=\"\" width=\"436\" height=\"775\" /></a>\n\n<em>“The iMoveFreely® programme changed the way that I teach every class &amp; client. I put this information into my Fitness Pilates, FFY &amp; Conditioning programmes to help my clients improve their movement &amp; prevent injury.</em>\n\n<b><i>IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!” </i></b>\n\n<b>Jayne Nicholls</b>\n\n<b>Director Group X Training Ltd</b>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“I really enjoyed the workshop on Sunday, mainly because of the simple form of which you delivered it. The hands on work with clients will showcase me as a top expert now! It\'s good to get a kick up the backside to remind me to keep learning about anatomy and especially movement. Can\'t wait to see my little man today and train him with this updated perspective of movement I have gained. I\'ll keep you updated with the progress!”</span></i>\n\n<b>Cathryn</b>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“I enjoyed my first (iMoveFreely®) workshop with you yesterday, and introduction to biomechanics, thank you - It all makes perfect sense! </span></i><i><span style=\"font-weight: 400;\">\n</span></i><i><span style=\"font-weight: 400;\">I\'ve just planned this weeks classes with more confidence in which order to teach the exercises, which is what I hoped to achieve and I think they should still flow quite nicely.</span></i><i><span style=\"font-weight: 400;\">\n</span></i><i><span style=\"font-weight: 400;\">Whether it\'s \'sexy\', well that\'s down to the delivery...wish me luck ;)</span></i><i><span style=\"font-weight: 400;\">\n</span></i><i><span style=\"font-weight: 400;\">I\'m going to ask for feedback from all 9 classes and that, along with my own daily practice will inform my next move in terms of training.....so, measurable,achievable goals as per your motivating Juicemail this morning fab!</span></i><i><span style=\"font-weight: 400;\">\n</span></i><i><span style=\"font-weight: 400;\">Thanks again and lovely to meet you.”</span></i>\n\n&nbsp;','6 Ways To Improve Your Group Fitness Programmes - A Personal Trainers & Group Instructors Guide','','draft','closed','closed','','6-ways-to-improve-your-group-fitness-programmes-a-personal-trainers-guide','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=8345',0,'post','',0),(8348,0,'2018-08-10 11:16:51','2018-08-10 11:16:51','','Anatomy Colouring Book','','inherit','closed','closed','','anatomy-colouring-book','','','2018-08-10 11:16:51','2018-08-10 11:16:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/08/Anatomy-Colouring-Book-1.jpg',0,'attachment','image/jpeg',0),(8351,0,'2018-08-10 11:34:16','2018-08-10 11:34:16','','IMoveFreely - Biomechanics Coaching - Biomechanics Education','','inherit','closed','closed','','dsc07316','','','2018-08-10 11:34:16','2018-08-10 11:34:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/08/DSC07316-1.jpg',0,'attachment','image/jpeg',0),(8364,0,'2018-08-10 12:59:18','2018-08-10 12:59:18','','6 Tips To Improve Your Group Fitness Programmes','','inherit','closed','closed','','6-tips-to-improve-your-group-fitness-programmes','','','2018-08-10 12:59:18','2018-08-10 12:59:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/08/6-Tips-To-Improve-Your-Group-Fitness-Programmes-1.png',0,'attachment','image/png',0),(8441,3,'2018-08-20 18:47:46','2018-08-20 18:47:46','<span style=\"font-weight: 400;\">In my opinion one of the biggest problems in the industry is that coaches, trainers and fitness professional are forgetting some of the very basics we learn at the beginning of our journey into the health and fitness industry.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More often than not PT’s, sports therapists and Pilates teachers have forgotten the anatomy they studied madly for, to gain their qualification. </span>\n\n<span style=\"font-weight: 400;\">Now hold on a minute there, I totally get it and understand that there is a reason for this! I did too!</span>\n\n<span style=\"font-weight: 400;\">We rarely speak that language and so it gets forgotten. For example, I understand that we would NEVER be heard saying to our clients…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“...r</span><i><span style=\"font-weight: 400;\">ight so today Barry, we are going to concentrically and eccentrically challenge your antagonist posterior chain of muscles, to include rhomboids, mid trapezius, so we can encourage scapular retraction via the action of your sarcomeres…” blah blah blah</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So there is a reason WHY we forget BUT it is vital we DO NOT because there was a VERY GOOD reason we learned it in the first place! RIGHT??? (</span><i><span style=\"font-weight: 400;\">I am glad you are nodding right now</span></i><span style=\"font-weight: 400;\"> :))</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok, so there were a lot of things we learned on our basic training that could actually be extremely helpful to us, that we may well have forgotten or not appreciated at the time when you think of the mass of information we have been gathering during and since our first qualification. This is what I want to remind you of, to show you how easy it can be to reignite your practice without paying for more courses, just yet…</span>\n\n&nbsp;\n<h3><b>Client Adherence - How To Get Your Clients To Follow The Plan</b></h3>\n<span style=\"font-weight: 400;\">Adherence is HUGE for getting results with our clients, right!? You sigh inwardly and deeply when they confess they didn’t do any of the stuff you asked them to over the weekend because, well they had something better to do...or there was a wedding, or they ended up going to a party, they were tired after a hard week at their desk, the kids were demanding or they just forgot….etc etc</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the things that can most effectively affect adherence is clarity in the goal. Clarity in what it looks like, feels like and how long it might take, whether it is do-able in their crazy hectic life (</span><i><span style=\"font-weight: 400;\">they will always have a more crazy hectic life than you by the way because you must have loads of time if you can go to the gym 6 days a week to train yourself and you look so buff, like you do this ALL the time and it’s really easy for you- eh!?</span></i><span style=\"font-weight: 400;\">)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So No 1 is to clarify A VERY CLEAR GOAL. </span>\n\n<span style=\"font-weight: 400;\">So clear in fact that we call it a SMART goal. </span>\n\n<span style=\"font-weight: 400;\">Too often ambiguous and vague goals are accepted... </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Weight loss</span></i>\n\n<i><span style=\"font-weight: 400;\">Get stronger</span></i>\n\n<i><span style=\"font-weight: 400;\">Be fitter</span></i>\n\n<i><span style=\"font-weight: 400;\">Less pain </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Nope not good enough, this could be a</span><i><span style=\"font-weight: 400;\"> start point</span></i><span style=\"font-weight: 400;\"> towards finding their true goal because this is what the client THINKS their goal is. It is our job to get them towards a very SMART, positive and emotional goal otherwise the point of success may well be challenged and therefore your integrity as a trainer/coach. Also there could be a negative focus which can affect motivation. It is the emotion we need to get to, this is what truly drives and motivates so we need to help the client discover what it is.</span>\n\n&nbsp;\n<h3><b>The Tool - Smart Goals For Personal Trainers &amp; Their Clients</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">You must remember SMART goal setting? One of the fundamental things taught when learning about how to manage a consultation. The client has come to see YOU because they can’t do it themselves, for some reason, so clearly they are willing to pay for YOUR advice so YOU can also hold them accountable. So be sure to </span><i><span style=\"font-weight: 400;\">listen</span></i><span style=\"font-weight: 400;\">, by allowing the client to have their say and in put but we have to help them get to the true nature of their REAL goal.</span>\n\n&nbsp;\n\n<b>S</b><span style=\"font-weight: 400;\">PECIFIC </span>\n\n<b>M</b><span style=\"font-weight: 400;\">EASUREABLE </span>\n\n<b>A</b><span style=\"font-weight: 400;\">CHIEVABLE </span>\n\n<b>R</b><span style=\"font-weight: 400;\">ELEVANT </span>\n\n<b>T</b><span style=\"font-weight: 400;\">IME BOUND </span>\n\n&nbsp;\n<h4><b>SPECIFIC </b></h4>\n<span style=\"font-weight: 400;\">Who are they? </span>\n\n<span style=\"font-weight: 400;\">What exactly do they want to achieve?</span>\n\n<span style=\"font-weight: 400;\">When in their mind do they want to achieve it by?</span>\n\n<span style=\"font-weight: 400;\">Where are they now? </span>\n\n<span style=\"font-weight: 400;\">Where will they be doing this? </span>\n\n<span style=\"font-weight: 400;\">Do they have what it takes In terms of equipment, time etc?</span>\n\n<span style=\"font-weight: 400;\">Which method will be best? </span>\n\n<span style=\"font-weight: 400;\">How do you know?</span>\n\n<span style=\"font-weight: 400;\">Why are they doing this? Why now? </span>\n\n&nbsp;\n<h4><b>M</b><span style=\"font-weight: 400;\">EASUREABLE </span></h4>\n<span style=\"font-weight: 400;\">How can you assess and measure? </span>\n\n<span style=\"font-weight: 400;\">What are your benchmarks to compare from start to finish and how will you monitor their progress??</span>\n\n&nbsp;\n<h4><b>A</b><span style=\"font-weight: 400;\">CHIEVABLE </span></h4>\n<span style=\"font-weight: 400;\">Is the goal true to all the variables? </span>\n\n<span style=\"font-weight: 400;\">Is it really attainable with the skills required? </span>\n\n<span style=\"font-weight: 400;\">Will you need to change attitudes? </span>\n\n<span style=\"font-weight: 400;\">If so how?</span>\n\n<span style=\"font-weight: 400;\">Using what tools?</span>\n\n&nbsp;\n<h4><b>R</b><span style=\"font-weight: 400;\">ELEVANT </span></h4>\n<span style=\"font-weight: 400;\">This has to make sense with the broad goal in mind </span>\n\n<span style=\"font-weight: 400;\">However there may be things that are relevant that the client hadn’t thought would contribute to their journey.</span>\n\n&nbsp;\n<h4><b>T</b><span style=\"font-weight: 400;\">IME BOUND </span></h4>\n<span style=\"font-weight: 400;\">This is one of the benchmarks in terms of when does it need to be or when do you want it to be achieved by? Is that possible with what is required ?</span>\n\n&nbsp;\n<h3><b>How Do We Gather This Information?</b></h3>\n&nbsp;\n<h4><b>Trainers/Coaches</b></h4>\n<span style=\"font-weight: 400;\">The best method for achieving this maybe speaking to your client over the phone </span><i><span style=\"font-weight: 400;\">in advance</span></i><span style=\"font-weight: 400;\"> of their first session or allowing for extra time in their first consultation. The last thing you want is for their first session to be a disappointment to them because they barely got to ‘train’ or it was more talking than doing. You could send them questions in an email in advance to discover what exactly is expected, needs to be in place, if you are the right match for each other or if you need to refer them to another professional first for clearance (ie if they have pain, symptoms or an issue you are not qualified to deal with (red flags).</span>\n\n&nbsp;\n\nOr actually take the time to sit down with this potential client and have a face to face consultation, where you talk through all of this. This allows you to get an idea of where they are to begin with and if they are going to be a good client. Make this a free session so they know your goal is not simply about taking their money and make sure the client knows its not going to be a training session. This way you both know what to expect. And for anyone thinking... I don\'t want to give an hour of my time for free... just think.... this person could potentially be paying hundreds/thousands of pounds over the next year or longer... is 1-1.5 hours of your time worth it...?. You freaking bet!\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also, explain to THEM what to expect from this professional relationship at that first point of contact. They have some control but ultimately they are paying for your guidance. For example “ </span><i><span style=\"font-weight: 400;\">I will be asking you to do this or that...ok</span></i><span style=\"font-weight: 400;\">?” Set out for them how YOU work and you do it this way because it works.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Use the questions above to really get to the crux of WHY they want to change something. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Get to the emotional part of WHY then create measurable benchmarks for the success of this. Make them as </span><i><span style=\"font-weight: 400;\">specific</span></i><span style=\"font-weight: 400;\"> as you can.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When someone is seeking to change behaviour the common theme is usually that they have lost confidence in their ability to do something or they are struggling with their strategy to achieve the task/goal.</span>\n\n&nbsp;\n<h4><b>Identify The Problem First</b></h4>\n<span style=\"font-weight: 400;\">The true problem/dilemma needs to be identified first prior to any advice or change or planning or programming. </span>\n\n<span style=\"font-weight: 400;\">This allows for appropriate planning and strategies to be implemented by the individual or with the help of the right professional </span>\n\n&nbsp;\n<h4><b>What Do We Do?</b></h4>\n<span style=\"font-weight: 400;\">Create a list of questions to help you identify the SMART goals. </span>\n\n<span style=\"font-weight: 400;\">The questions list is not exhaustive and often additional questions will come up naturally from the conversation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But please do not underestimate the value of the time you spend on the consultation and information gathering part at the beginning of your relationship with a client. Clients will often tell YOU what they want to do but we need to be able to use the information they have given us to use to support their idea with our knowledge of what is realistic or a more accurate goal. YOU are the one with the professional knowledge and experience that they are paying you for. Make it clear by paraphrasing back to them regularly what THEY have said so they know that you are listening AND hearing what they are saying.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Coach &amp; Train SMART!</span>\n\n&nbsp;\n\nhttps://www.youtube.com/watch?v=Yp8PRby27BA\n\n&nbsp;\n\n<b>Next Time More Tips On BEHAVIOUR CHANGE For Your Client:</b>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Identifying The Root Problem, Accountability &amp; Owning It!</span></i>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','How Do We As Fitness Professionals, Educate Our Clients Towards Behaviour Change?','','draft','closed','closed','','how-do-we-as-fitness-professionals-educate-our-clients-towards-behaviour-change','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=8441',0,'post','',0),(8442,0,'2018-08-17 12:58:42','2018-08-17 12:58:42','','How Do We As Fitness Professionals, Educate Our Clients Towards Behaviour Change_','','inherit','closed','closed','','how-do-we-as-fitness-professionals-educate-our-clients-towards-behaviour-change_','','','2018-08-17 12:58:42','2018-08-17 12:58:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/08/How-Do-We-As-Fitness-Professionals-Educate-Our-Clients-Towards-Behaviour-Change_-1.png',0,'attachment','image/png',0),(8529,3,'2018-08-27 10:22:00','2018-08-27 10:22:00','<h3><b>What’s The REAL Reason People Come To Train With You?</b></h3>\n<em>(You can either watch the video, just click play or read the post below it)</em>\n\nhttps://youtu.be/_BvAfkY8PYI\n\n<span style=\"font-weight: 400;\">So many of us can make that mistake of not actually getting to the true root causes and emotional reasons for goals. The power of truly identifying this is what ALL marketers will tell you sells..and believe me you are wanting to sell the goal because there is a reason why they haven\'t succeeded yet and they are seeking your advice. Goals are often superficial or ambiguous and therefore </span><i><span style=\"font-weight: 400;\">seem</span></i><span style=\"font-weight: 400;\"> simple but when it comes down to it, they feel super challenging causing frustration ….”</span><i><span style=\"font-weight: 400;\">I just don’t know why I can’t do it…</span></i><span style=\"font-weight: 400;\">?” because what we need is to fully understand that true emotional driver so we can create the motivation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This emotional driver then gives us that reason that truly pushes us towards the goal. If we imagine and feel the pain we would experience if we did NOT succeed we are more likely to stick to the programme. Research suggests more so than simply thinking of the benefit!</span>\n\n<span style=\"font-weight: 400;\">Often this is what is missing in terms of really changing our pattern of behaviour. Let me give you an example;</span>\n\n&nbsp;\n<h3><b>EXAMPLE 1: The Number On The Scales Is Not Really What They Want</b></h3>\n<span style=\"font-weight: 400;\">No one really cares about ‘weight loss’! This is a myth. They/we THINK this is what they/we want when really they/we wouldn’t care what the number is on the scales IF they/we looked and felt good naked!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Although the TRUE meaning of this goal is often CONFIDENCE over any of the above mentioned ‘goals’. Even gaining the confidence in our own skin to know we are not all going to achieve a six pack. ALL clients think they want a six pack but they wouldn’t care about a slight muffin top IF they had the confidence to wear it and didn’t compare themselves to the magazines AND if they appreciated how damn dull, stressful it can be to eat and live with a six pack!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The measurements of Ibs/kilos are a benchmarker but makes sure you tick all of the SMART requirements in terms of specific, realistic etc. Also much of your sessions will be about boosting this clients confidence on how they look and/or perceive themself.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We need to have ideas in place for creating a positive experience for the client even when the benchmark hasn’t changed. For example we should educate them on the fact that if they start lifting weights they may even gain weight in the scales but feel better, look leaner and healthier. Also diplomatically remind them of the pain they will feel if they don’t change their behaviour.</span>\n\n&nbsp;\n<h3><b>EXAMPLE 2: Lifting Heavier May Not Even Be The Real Goal</b></h3>\n<span style=\"font-weight: 400;\">Getting stronger maybe about how many kilos they can lift IF their sport means competing at lifting heavy weights as in powerlifting for example. However it is more often about having bigger muscles or feeling strong, which in turn is usually about CONFIDENCE. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Again we can measure strength in the kilos they lift as a benchmarker but also boosting this clients confidence on how they look and/or perceive themself.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here we should create positive language for when they look great and move well but the kilos on some days may not be as high or even lower during lighter training cycles.  </span>\n\n&nbsp;\n<h3><b>EXAMPLE 3: “I want to be fitter” Actually Means...</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Being fitter could be to run a marathon and if we consider what ‘being fitter’ actually means ‘fit to perform the task’ then clearly the training and measurement methods would have benchmarkers here. </span>\n\n<span style=\"font-weight: 400;\">But again what is the ultimate goal here?</span>\n\n<span style=\"font-weight: 400;\">CONFIDENCE they can finish the race, yeah!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Again some days we need to maintain a positive attitude even if we have an off day or slow day and keep the client focused on the bigger picture.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is a good example of the increased discomfort they go through to achieve their goal (helping clients to achieve long intense running sessions) giving much more satisfaction than simply going for a jog. They earned it! However we should help them realise this.</span>\n\n&nbsp;\n<h3><b>EXAMPLE 4: What About Getting Rid Of Pain?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pain reduction is an area we, exercise professionals,  must be careful of in terms of knowing the right questions to ask to understand about red flags, when to refer and how to adapt training programmes for clients with low grade non specific aches, niggles or discomfort. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is, in my opinion, a negative goal and in fact so subjective that I strongly recommend we help the client, through questions to identify the true frustration to reach a more positive goal focus. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example can we reach and agreement with them about a movement goal that is influenced by their discomfort? </span>\n\n<span style=\"font-weight: 400;\">We could ask “</span><i><span style=\"font-weight: 400;\">what does the discomfort stop you doing</span></i><span style=\"font-weight: 400;\">?” </span>\n\n<span style=\"font-weight: 400;\">(Note; I recommend not using the word ‘pain’ or at least reducing the use of it). Then if they respond with “</span><i><span style=\"font-weight: 400;\">playing on the floor with my kids” </span></i><span style=\"font-weight: 400;\">you have now reached a more positive focus, a nice goal to think about and one that is more realistic for us to be able to promise or use as a benchmark. They want CONFIDENCE in movement. Maybe they would benefit from being taught how to get up and down from the floor!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Can you see what is happening here? By asking those questions that dig deeper ...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What would you like to achieve?</span>\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n<span style=\"font-weight: 400;\">By When?</span>\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n<span style=\"font-weight: 400;\">Why haven’t you achieved it yourself?</span>\n\n<span style=\"font-weight: 400;\">Why have you approached me?</span>\n\n<span style=\"font-weight: 400;\">What have you tried in the past?</span>\n\n<span style=\"font-weight: 400;\">Why do you think that didn’t work?</span>\n\n<span style=\"font-weight: 400;\">Have you ever achieved it before?</span>\n\n<span style=\"font-weight: 400;\">How did it make you feel?</span>\n\n<span style=\"font-weight: 400;\">Why do you think things changed?</span>\n\n<span style=\"font-weight: 400;\">How serious are you about this?</span>\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n<span style=\"font-weight: 400;\">How badly do you want it?</span>\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n<span style=\"font-weight: 400;\">How would it feel to stay as you are?</span>\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n<span style=\"font-weight: 400;\">What are you prepared to do different now?</span>\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are really getting down under the skin of what makes us/our clients happy, feel confident and healthy.</span>\n\n&nbsp;\n<h3><b>The Secret To Achieving Your Goals: ACCOUNTABILITY</b></h3>\n<span style=\"font-weight: 400;\">Interestingly this is often most of what they are paying us for, they may just not realise it. Think about it, many people KNOW WHAT they should do, however they haven’t worked out HOW. Now of course we bring knowledge and expertise however much of the professional help comes from identifying and utilising the root cause to them empower the client to do what is required. We make them accountable, they have to report back to us, explain what they have/haven’t done since we saw them last. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember YOU will NOT make someone slim, muscly or faster in 1, 2 or even 3 sessions a week for a couple of months alone. Much of what is required will be within the time they are NOT with you, right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also they need to FEEL the benefits, in terms of feel they are getting to the heart of it, in terms of how they FEEL when they want to get down and play on the floor with their kids. Because if they are moving better but still not playing with the kids on the floor are the going to FEEL successful?</span>\n\n&nbsp;\n<h3><b>Owning It - Taking Personal Responsibility</b></h3>\n<span style=\"font-weight: 400;\">We have to give the responsibility back ...This is called EMPOWERMENT and is so POWERFUL in terms of creating an opportunity for success in any field, topic industry of subject.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We go to great lengths to empower our learners, we should ALL go to great lengths to empower our clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine if what most clients are looking for is confidence in something, would empowering them to achieve it more or less themselves is that going to produce a greater feeling of success?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">ABSO-BLOOMIN-LUTELY!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider when you were a child and you defended your right to …</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“...</span><i><span style=\"font-weight: 400;\">I CAN DO IT MYSELF MUMMY/DADDY</span></i><span style=\"font-weight: 400;\">….!!” </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">..what was that? Empowering yourself, feeling capable, feeling confident, feeling successful from your own actions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Guided...yes of course ...but ultimately the goal is surely to empower the client to succeed themselves….don’t you agree!?! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let Them OWN IT!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pass the responsibility back by preparing them to ‘do it alone’ as you won’t be there forever and their success is more important than keeping them as your client. However there is not reason why they cant come back for a ‘top-up’ of ‘refresher’...right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Next Time :</span>\n\n<b><i>How To Prepare For Behaviour Change Once The Root Cause Has Been Identified</i></b>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','Identifying The Root Problem, Accountability & Owning It - A Guide To Helping Your Clients Achieve Their Goals','','draft','closed','closed','','a-guide-to-helping-your-pt-clients-achieve-their-goals','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=8529',0,'post','',0),(8531,0,'2018-08-25 13:35:17','2018-08-25 13:35:17','','Revealed_ The secret to helping clients reach their goals','','inherit','closed','closed','','revealed_-the-secret-to-helping-clients-reach-their-goals','','','2018-08-25 13:35:17','2018-08-25 13:35:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/08/Revealed_-The-secret-to-helping-clients-reach-their-goals-1.png',0,'attachment','image/png',0),(8598,3,'2018-09-03 08:25:13','2018-09-03 08:25:13','<h3 style=\"text-align: center;\"><b><i>“Fail To Prepare Is Preparing To Fail”</i></b></h3>\n<span style=\"font-weight: 400;\">A lack of preparation on both sides can be the downfall of achieving the SMART goal/s, even with all the ‘why’ questions answered and accountability being addressed. So both you and your client need to be prepared with all the things you will need in advance to be ready for any pitfalls along the way. This also allows YOU to set up a appropriate level of expectation in terms of what YOU will do and what THEY will do as part of this professional contract/agreement.</span>\n\n&nbsp;\n<h3><b>1. Get Clients To Keep A Diary </b></h3>\n<span style=\"font-weight: 400;\">While this sounds like your job, ie your the trainer so you plan the schedule, right?</span>\n\n<span style=\"font-weight: 400;\">Well yes BUT the client already does a food diary...GREAT! </span>\n\n<span style=\"font-weight: 400;\">They can add in additionally, to their part of the agreement:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sleep Pattern - Hrs plus quality</span>\n\n<span style=\"font-weight: 400;\">Energy Levels Rate Perceived (RP) 0/10</span>\n\n<span style=\"font-weight: 400;\">Food &amp; Drink detailed - Volume, type, frequency</span>\n\n<span style=\"font-weight: 400;\">Exercise Including Intensity Rate of Perceived of Exertion (RPE)</span>\n\n<span style=\"font-weight: 400;\">Mental State/Stress Level - RP 0/10</span>\n\n<span style=\"font-weight: 400;\">Physical Aches/Niggles - (0= No pain/10=Having your arms ripped off) 0/10</span>\n\n<span style=\"font-weight: 400;\">ANYTHING that affects them physically/mentally each day</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This extensive information gathering only needs to be collated for a couple of weeks (if they find it hard) to tell the story of what might be interfering with success. If it can be continued then do encourage it.</span>\n\n<span style=\"font-weight: 400;\">TOGETHER you can analyse and calculate behaviours how they felt about everything that might influence it. This, done well, can be dramatic!</span>\n\n<span style=\"font-weight: 400;\">It often highlights things that you/they maybe never even have considered or noticed. It heightens awareness about behaviour and allows you both to work on a strategy what works for the CLIENT.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not buy them a diary (see Daily Greatness options for a good starting point and maybe as a gift for all new clients who sign up this week - see what I did there?) to get them started and motivated with additional personalised comments written in by you prior to passing it on. </span>\n\n<span style=\"font-weight: 400;\">What a great start to this relationship - you have shown your commitment to them by buying them a gift (which doubles up as a sales tool) and this makes them more motivated to reciprocate by doing what you ask.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We humans do feel a desire to please others and to be liked so use this behaviour and praise the client at each opportunity. </span>\n<h3><b>2. Small Gifts For Clients To Keep Them Focused</b></h3>\n<span style=\"font-weight: 400;\">Clearly many of you will be working from gyms but it might be worth considering additional investments into low cost equipment, again maybe as gifts or prizes, to also motivate your client. Buy a 30 meter roll of resistance tubing and cut it into 1 meter lengths for ‘giveaways’ to encourage clients to maybe do their exercises at work or even if they cant get to the gym or just don’t like gyms! Yup some people don’t!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Lacrosse balls, or even tennis balls, to roll into muscles having been educated properly how by you, to keep them moving more freely. Foam rollers could be another great tool that when they see it on their lounge floor by the TV it reminds them of you and all you are doing for them. Seeing their equipment is a trigger to do their homework and keep moving or move more.</span>\n\n&nbsp;\n<h3><b>3. Use Clothing To Create A Community</b></h3>\n<span style=\"font-weight: 400;\">This is an amazing opportunity to advertise while creating YOUR community of fans proud to work with you. Personalised branded T shirts with your business name on. Have an interesting design that is conversation starter so your own fans have an opening to tell others just how amazing you are. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Using your logo, branding and images that relate to you brand add interesting wording...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Rach helped my hips move!</span></i><span style=\"font-weight: 400;\">” ;)</span>\n\n&nbsp;\n<h3><b>4. Communication… Even A Text!</b></h3>\n<span style=\"font-weight: 400;\">The Biggest Excuse You Hear….Time</span>\n\n<span style=\"font-weight: 400;\">This is HUUUUUGE </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If your client is going to bale on you there is a good chance it is down to time. </span>\n\n<span style=\"font-weight: 400;\">Too busy, kids, work, shattered, just no time. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rubbish!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because right up front you will be setting up the expectation to the point where you KNOW exactly what their routine is so you can judge a genuine time issue and….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Text regularly - set this up in advance and tell them you will do this</span>\n\n<span style=\"font-weight: 400;\">How will you check they are doing their bit?</span>\n\n<span style=\"font-weight: 400;\">What tools apps could you use?</span>\n\n<span style=\"font-weight: 400;\">Ensure its client friendly in terms easily fitting into their routine</span>\n\n<span style=\"font-weight: 400;\">Information/resources that are accessible even without you </span>\n\n<span style=\"font-weight: 400;\">Success is paramount, not simply being with you </span>\n\n<span style=\"font-weight: 400;\">Give client tools </span>\n\n<span style=\"font-weight: 400;\">Give client all they need to feel successful</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you are discussing and asking the WHY questions with your client, you should have set up a pain trigger that you can remind them of when they try to use time as an excuse.  </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">*Now at this point it should go without saying but I must mention that if they suffer a bereavement or something similar we need to know when to back off in terms of driving them about goals. We must be compassionate too. </span></i>\n\n&nbsp;\n\n<b>Behaviour Change Is Just Like Marketing</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You maybe able to see how a lot of what we are discussing here feels similar to sales/marketing.</span>\n\n<span style=\"font-weight: 400;\">This is absolutely right, because you are ‘selling/marketing’ results through supporting behaviour change. </span>\n\n<span style=\"font-weight: 400;\">So you will see how many of the motivators are also great marketing tools, right? </span>\n\n&nbsp;\n\nhttps://youtu.be/AgEcJN2Rras\n\n&nbsp;\n\n&nbsp;\n\n<b><i>Next time ‘Listening To, AND HEARING, Your Inner Dialogue’</i></b>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','4 Tactics To Help Your Clients Stick To Their New Healthy Habits','','draft','closed','closed','','4-tactics-to-help-your-clients-stick-to-their-new-healthy-habits','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=8598',0,'post','',0),(8645,0,'2018-09-03 08:13:07','2018-09-03 08:13:07','','4 Tactics To Help Your Clients Stick To Their New Healthy Habits','','inherit','closed','closed','','4-tactics-to-help-your-clients-stick-to-their-new-healthy-habits-2','','','2018-09-03 08:13:07','2018-09-03 08:13:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/08/4-Tactics-To-Help-Your-Clients-Stick-To-Their-New-Healthy-Habits-1.png',0,'attachment','image/png',0),(8804,3,'2018-09-10 10:09:19','2018-09-10 10:09:19','<h2><b><i>Listening To, AND HEARING, Your Inner Dialogue</i></b></h2>\n<span style=\"font-weight: 400;\">Your inner dialogue is those voices that you hear arguing in your own head, yes both are you and both may have a valid view point. </span>\n\n<span style=\"font-weight: 400;\">The problem is we don’t take the time to listen and hear what they are saying. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you are having a battle to make your mind up over a decision be it important or simply about what filling to have on your jacket potato, we have this tendency to just listen to the loudest one.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet both may have important things to consider</span>\n\n&nbsp;\n<h3><b>The Devil vs The Angel</b></h3>\n<span style=\"font-weight: 400;\">Mine I imagine as a cheeky little devil and wonderful angel and I like both.</span>\n\n<span style=\"font-weight: 400;\">Both bring reasoning to my decisions making by offering opposing views on things like when I am deciding whether to train or not, what to eat, if I should call someone now or tomorrow.   </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It goes something like this </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Angel “.. </span><i><span style=\"font-weight: 400;\">you will feel better if you train</span></i><span style=\"font-weight: 400;\">..”</span>\n\n<span style=\"font-weight: 400;\">Devil “..</span><i><span style=\"font-weight: 400;\">neh chill out on the sofa be lazy for a day</span></i><span style=\"font-weight: 400;\">..”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Angel “.. </span><i><span style=\"font-weight: 400;\">c’mon you LOVE salad</span></i><span style=\"font-weight: 400;\"> ..”</span>\n\n<span style=\"font-weight: 400;\">Devil “..</span><i><span style=\"font-weight: 400;\">ooooo imagine the taste of those garlic dough balls</span></i><span style=\"font-weight: 400;\">..”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Angel “.. </span><i><span style=\"font-weight: 400;\">your pal will love to hear from you</span></i><span style=\"font-weight: 400;\"> ..”</span>\n\n<span style=\"font-weight: 400;\">Devil “..</span><i><span style=\"font-weight: 400;\">they haven’t bloomin rung you</span></i><span style=\"font-weight: 400;\">..”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Angel “.. </span><i><span style=\"font-weight: 400;\">remember your goals</span></i><span style=\"font-weight: 400;\">..”</span>\n\n<span style=\"font-weight: 400;\">Devil “..</span><i><span style=\"font-weight: 400;\">remember life is too short to be so serious about training, you’re doing ok for 49</span></i><span style=\"font-weight: 400;\">..!”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ring any bells for you?</span>\n\n<span style=\"font-weight: 400;\">Well both my devil and angel have moments of quality guidance. </span>\n\n<span style=\"font-weight: 400;\">The problem arises when we only listen to one or we hear one louder than the other.</span>\n\n<span style=\"font-weight: 400;\">We can become lazy, sedentary and eat badly or we can do too much, under eat and suffer fatigue.</span>\n\n&nbsp;\n<h3><b>The Practice Of Critical Thinking </b></h3>\n<span style=\"font-weight: 400;\">Critical thinking is not something that necessarily comes easily to many and even those who have had to demonstrate this skill in a Masters degree for example will tell you how complex it is. We humans are innately biased to our own view of the world and what we see MUST be right, right?!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe, maybe not….so to critically analyse a situation and make a more informed choice based on all the information our inner dialogue offers will surely result in a smarter decision or outcome, do you think?</span>\n\n&nbsp;\n<h3><b>How To Think Critically </b></h3>\n<span style=\"font-weight: 400;\">Asking ourselves a whole series of questions like... </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHAT?</span>\n\n<span style=\"font-weight: 400;\">WHICH?</span>\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n<span style=\"font-weight: 400;\">WHEN?</span>\n\n<span style=\"font-weight: 400;\">WHERE?</span>\n\n<span style=\"font-weight: 400;\">WHO?</span>\n\n<span style=\"font-weight: 400;\">HOW?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...then broadening questions to hear what our inner dialogue has to say…</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Eg: What will happen if I eat that? Or don’t eat that? What will I eat instead? Who cares? How will I feel? What might be the knock on effect? To Me? To others? How can I make a better choice? Is there a better choice? Do I have a choice right now? Why? </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Challenging each decision takes time if your not practised at taking time to consider, hear, listen to your gut instincts or both the devil and angel voices. </span>\n\n<span style=\"font-weight: 400;\">However you look at it, we all KNOW WHAT we should do each time, but we don’t always KNOW HOW we can do it. </span>\n\n&nbsp;\n<h3><b>Remember Your Diary!</b></h3>\n<span style=\"font-weight: 400;\">This is where our strategies and understanding can become enhanced with our diary for example. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">How did I feel when I chose to eat the doughnuts? Did I really enjoy them? How much other high calorie sugary food have I consumed recently? </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we write down how we felt maybe with our critical thinking notes we can start to tap into a deeper awareness of our actions behaviours towards the decisions we make and how they make us feel. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The support and motivation of you as a coach or trainer will guide clients towards a better understanding of their behaviours and how they contribute to how they feel about themselves. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should encourage our clients to understand moderation, indulgence when it’s a good thing to be enjoyed and also when its overdone and might be negatively affecting our health. Also how to adapt things for THEMSELVES not for everyone else. One individual might be able to eat more doughnuts without getting a muffin top because of their metabolic system working more efficiently. So we have to understand and hear our own inner dialogue better to really appreciate how our choices make us feel both physically and mentally.</span>\n\n&nbsp;\n\nhttps://youtu.be/YJ7dWMhlAoE\n\n&nbsp;\n\n&nbsp;\n\n<b>Next Time - </b><b><i>Danger Zones &amp; Times &amp; How To Modify Our Behaviour To Avoid Them</i></b>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','How To Stay Focused On Your Goals While The Voices In Your Head Battle It Out','','draft','closed','closed','','how-to-stay-focused-on-your-goals-while-the-voices-in-your-head-battle-it-out','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=8804',0,'post','',0),(8805,0,'2018-09-07 06:44:31','2018-09-07 06:44:31','','How To Stay Focused On Your Goals While The Voices In Your Head Battle It Out','','inherit','closed','closed','','how-to-stay-focused-on-your-goals-while-the-voices-in-your-head-battle-it-out-2','','','2018-09-07 06:44:31','2018-09-07 06:44:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/09/How-To-Stay-Focused-On-Your-Goals-While-The-Voices-In-Your-Head-Battle-It-Out-1.png',0,'attachment','image/png',0),(8890,3,'2018-09-17 07:08:24','2018-09-17 07:08:24','<h3><b>When Are Your Danger Zones/Times?</b></h3>\n<span style=\"font-weight: 400;\">You approach the supermarket till and unload your weekly food shop onto the conveyor belt, waiting patiently behind the family of four in front of you. You look to your right and see the beautiful coloured wrappers of many of your favourite chocolate bars. You mouth starts to water as you imagine the creamy chocolate melting onto your tongue. Your temptation is heightened because you feel a bit tired, maybe slightly stressed after the traffic you sat in to get here and also now knowing you’re going to hit on the way home. You’re also peckish as its been hours since lunch and you think;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">mmmm it’s only a small bar, it will be another couple of hours until I get dinner onto the table, I have been good all week so far</span></i><span style=\"font-weight: 400;\"> (even though it’s only tuesday) </span><i><span style=\"font-weight: 400;\">AND I did park miles away from the door like they suggest to get steps in and burn more calories even on a trip to the shops. Ya know what I deserve it, it’s only one small bar, in fact I am going to have that little chocolate bar and the bonus is the kids aren’t here to nick it from me or ask for one themselves so yeah I am gonna have it...’</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You begin to reach for the purple paper containing that sweet sugary fix and you hear your ‘devil’ voice ‘..</span><i><span style=\"font-weight: 400;\">yeah grab that one its gonna taste amazing...mmmm</span></i><span style=\"font-weight: 400;\">..’ encouraging you but then somewhere in the background you are faintly aware of your ‘angel’ voice saying “..</span><i><span style=\"font-weight: 400;\">uh oh you’re gonna hate yourself after that</span></i><span style=\"font-weight: 400;\">…</span><i><span style=\"font-weight: 400;\">put it back!...you will feel bad...</span></i><span style=\"font-weight: 400;\">’</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You just experienced one of your DANGER ZONES!</span>\n\n&nbsp;\n\nBy the way, if you would rather listen/watch then scroll down, I\'ve put the video below.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This week we will discuss; </span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How to recognise them </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Becoming super aware by using your diary</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How to plan &amp; be prepared for them </span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This week we will see how the tools and tactics we have already added to our behaviour change arsenal can contribute to enabling us to change our behaviour even when faced with our own personal </span>\n\n&nbsp;\n\n<strong>DANGER ZONES</strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But first we need to recognise them.</span>\n\n&nbsp;\n<h3><b>What Is A Danger Zone?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Danger Zones will differ from person to person but ultimately they are either </span><b>times or places</b><span style=\"font-weight: 400;\"> where your behaviour is hardest to control. Those moments or places where it is hardest for you to resist temptation or stop yourself from falling into the old behaviour pattern you are trying to change. </span>\n\n<span style=\"font-weight: 400;\">They can be few and far between or for some they might be plentiful at certain periods of the day or the week. </span>\n\n<span style=\"font-weight: 400;\">However they are not constant, they are ‘zones’. In other words if they are not constant then that means we can behave differently at other times so why not </span><span style=\"font-weight: 400;\">more</span><span style=\"font-weight: 400;\"> of the time or even ALL the time!?</span>\n\n&nbsp;\n<h4><b>Check Your Diary</b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So firstly go back and check your diary notes to see if you can see any of your danger zones. Some may come to your immediately and you just KNOW are a high risk ‘zone’ for you when trying to change a behaviour you don’t like. Others you might begin to notice as you become more aware and look out for them. </span>\n\n&nbsp;\n<h3><b>Another Example of a Danger Zone</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">You get home from work and you have had a hard day, you are mentally drained and while this morning you had planned to go for a walk or to the gym after work, right now you feel like a sit down on the sofa. You love your sofa and as soon as you sit down you feel much better immediately, relaxed and glad to be home. So much so that your inner dialogue is going something like this:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Angel “ ...</span><i><span style=\"font-weight: 400;\">ok just sit for a minute then I will get off to the gym</span></i><span style=\"font-weight: 400;\">…”</span>\n\n<span style=\"font-weight: 400;\">Devil “...</span><i><span style=\"font-weight: 400;\">you went to the gym last week! Chill out for today, it’s warm and cosy and you feel better here</span></i><span style=\"font-weight: 400;\">..”</span>\n\n<span style=\"font-weight: 400;\">Angel “...</span><i><span style=\"font-weight: 400;\">c’mon you will feel better if you go</span></i><span style=\"font-weight: 400;\">…’</span>\n\n<span style=\"font-weight: 400;\">Devil “...</span><i><span style=\"font-weight: 400;\">neh lie down and get those achy feet up you deserve this after the day you have had</span></i><span style=\"font-weight: 400;\">…</span><i><span style=\"font-weight: 400;\"> go tomorrow</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sound familiar?</span>\n\n&nbsp;\n<h3><b>Avoiding The Danger Zone/s</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once we become aware of when and where our Danger Zones are we then have a chance to consider how we might be able to avoid them or manage them and change our unwanted behaviour pattern. </span>\n\n&nbsp;\n\n<b>Example One</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You know you will be in the supermarket queue so have a snack before you go shopping (this helps reduce the risk of on the spot purchases too) then begin to remind yourself of how well you’re doing at changing your behaviour. Listen to your inner dialogue, hear both sides and discuss with both why you want to NOT have that chocolate bar today. How great you’re going to feel for NOT buying it. Maybe keep your hands busy with your recycled bags and commit to NOT even looking at them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">Get someone else to shop for you - do your shop online (and not when you’re hungry)</span>\n\n<span style=\"font-weight: 400;\">OR </span>\n\n<span style=\"font-weight: 400;\">Go at a time when you are less likely to queue or can use the self serve aisle to avoid the ZONE.</span>\n\n&nbsp;\n\n<b>Example Two</b>\n\n<span style=\"font-weight: 400;\">Maybe go straight to the gym or change at work for your walk so when you get home you can go straight out.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR </span>\n\n<span style=\"font-weight: 400;\">Walk or train at another time of day, maybe before work.</span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">Leave your trainers on the sofa as a reminder and then you can listen to and hear your inner dialogue to clearly state that you want to move more before you sit down for the evening. </span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">Put a fitness DVD on and workout in your front room.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The conscious effort you make each time you face one of your Danger Zones is vital in conditioning our inner dialogue to hear what you KNOW to be the best choice. The more you practice, the better you get at it. The behaviour changes start to feel easier and more natural.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Always document in your diary how it made you feel to make your prefered choice when faced with your Danger Zone. We are very quick to reprimand ourselves but often forget to give ourselves a pat on the back when we do well. Be kinder to yourself, hear the better half of your inner dialogue.</span>\n\n&nbsp;\n\nhttps://youtu.be/EmIcR7R2xwY\n\n&nbsp;\n\n&nbsp;\n\n<b>NEXT TIME: 4 Minute Rule - Breaking The Pattern</b>\n\nAnd by the way if you are reading this, and you are a personal trainer, or group fitness coach, pilates coach etc then clearly you want to help your clients get better results. So make sure you check out our Biomechanics Coach diploma which can help you, help your clients get even better results in their programmes! <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">Just click here to find out more.</a>\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','How To Stop The Bad Habits From Creeping Back In When You Begin Your Fitness Journey','','draft','closed','closed','','how-to-stop-the-bad-habits-from-creeping-back-in-when-you-begin-your-fitness-journey','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=8890',0,'post','',0),(8891,0,'2018-09-14 13:10:04','2018-09-14 13:10:04','','How to stop giving in to temptation and stay on track to your goals','','inherit','closed','closed','','how-to-stop-giving-in-to-temptation-and-stay-on-track-to-your-goals','','','2025-06-12 13:29:18','2025-06-12 13:29:18','',43389,'https://biomechanicseducation.com/wp-content/uploads/2018/09/How-to-stop-giving-in-to-temptation-and-stay-on-track-to-your-goals-1.png',0,'attachment','image/png',0),(8948,0,'2018-09-18 14:44:57','2018-09-18 14:44:57','','Biomechanics Education Data Protection Policy 2018','','inherit','closed','closed','','biomechanics-education-data-protection-policy-2018','','','2018-09-18 14:44:57','2018-09-18 14:44:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/09/Biomechanics-Education-Data-Protection-Policy-2018-1.pdf',0,'attachment','application/pdf',0),(8963,0,'2018-09-18 14:57:34','2018-09-18 14:57:34','','Biomechanics Education Appeals procedure 2018','','inherit','closed','closed','','biomechanics-education-appeals-procedure-2018','','','2018-09-18 14:57:34','2018-09-18 14:57:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/09/Biomechanics-Education-Appeals-procedure-2018-1.pdf',0,'attachment','application/pdf',0),(8964,0,'2018-09-18 14:57:51','2018-09-18 14:57:51','','Biomechanics Education Conflict of Interest 2018 copy','','inherit','closed','closed','','biomechanics-education-conflict-of-interest-2018-copy','','','2018-09-18 14:57:51','2018-09-18 14:57:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/09/Biomechanics-Education-Conflict-of-Interest-2018-copy-1.pdf',0,'attachment','application/pdf',0),(8965,0,'2018-09-18 14:57:55','2018-09-18 14:57:55','','Biomechanics Education Health & Safety 2018','','inherit','closed','closed','','biomechanics-education-health-safety-2018','','','2018-09-18 14:57:55','2018-09-18 14:57:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/09/Biomechanics-Education-Health-Safety-2018-1-1.pdf',0,'attachment','application/pdf',0),(9064,0,'2018-09-20 10:26:34','2018-09-20 10:26:34','','Biomechanics Education Diversity and equality policy 2018','','inherit','closed','closed','','biomechanics-education-diversity-and-equality-policy-2018','','','2018-09-20 10:26:34','2018-09-20 10:26:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/09/Biomechanics-Education-Diversity-and-equality-policy-2018-1.pdf',0,'attachment','application/pdf',0),(9065,0,'2018-09-20 10:26:47','2018-09-20 10:26:47','','Biomechanics education Induction pack 2018','','inherit','closed','closed','','biomechanics-education-induction-pack-2018','','','2018-09-20 10:26:47','2018-09-20 10:26:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/09/Biomechanics-education-Induction-pack-2018-1.pdf',0,'attachment','application/pdf',0),(9066,0,'2018-09-20 10:26:50','2018-09-20 10:26:50','','Biomechanics Education Malpractice Documentation 2018','','inherit','closed','closed','','biomechanics-education-malpractice-documentation-2018','','','2018-09-20 10:26:50','2018-09-20 10:26:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/09/Biomechanics-Education-Malpractice-Documentation-2018-1.pdf',0,'attachment','application/pdf',0),(9067,0,'2018-09-20 10:26:52','2018-09-20 10:26:52','','Safeguarding-Adults-Biomechanics Education','','inherit','closed','closed','','safeguarding-adults-biomechanics-education','','','2018-09-20 10:26:52','2018-09-20 10:26:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/09/Safeguarding-Adults-Biomechanics-Education-1-1.pdf',0,'attachment','application/pdf',0),(9174,0,'2018-09-24 15:03:06','2018-09-24 15:03:06','','CookiePolicy','','inherit','closed','closed','','cookiepolicy','','','2018-09-24 15:03:06','2018-09-24 15:03:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/09/CookiePolicy-1.pdf',0,'attachment','application/pdf',0),(9175,0,'2018-09-24 15:03:08','2018-09-24 15:03:08','','PrivacyPolicy','','inherit','closed','closed','','privacypolicy','','','2018-09-24 15:03:08','2018-09-24 15:03:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/09/PrivacyPolicy-1.pdf',0,'attachment','application/pdf',0),(9176,0,'2018-09-24 15:03:10','2018-09-24 15:03:10','','TermsandConditions','','inherit','closed','closed','','termsandconditions','','','2018-09-24 15:03:10','2018-09-24 15:03:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/09/TermsandConditions-1.pdf',0,'attachment','application/pdf',0),(9178,3,'2018-09-24 17:12:36','2018-09-24 17:12:36','<span style=\"font-weight: 400;\">Having spoken publicly on numerous occasions about his fantastic behaviour change tactic you\'re probably aware that it holds huge value.</span>\n\n<span style=\"font-weight: 400;\">As an ex-smoker</span> <span style=\"font-weight: 400;\">myself, of all of the behaviour change techniques I’ve tried or come across, the 4 minute rule is the standout one for me. It is the one I always go back to when I want to change my behaviour pattern and it costs nothing but 4 minutes of your time.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So let’s keep it simple</span>\n\n&nbsp;\n<h3><b>The 4 </b><b><i>Second </i></b><b>Rule</b></h3>\n<span style=\"font-weight: 400;\">You know the 4-second rule of dropping food on the floor? Right? Tell me you do otherwise I am going crazy. If you drop food on the floor you have just 4 seconds to pick it up and still be safe to eat it. Some even say its 10 seconds! It is a nonsense rule in terms of health and safety but it is based upon encouraging you to make a decision within a time frame.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well the 4 </span><i><span style=\"font-weight: 400;\">minute</span></i><span style=\"font-weight: 400;\"> rule is similar in that you have a set time to make a decision. However, we might need more than 4 seconds to make important behavior change decisions due to needing to take time to listen and hear, our inner dialogue.</span>\n\n&nbsp;\n<h3><b>The 4 Minute Rule For Breaking Bad Habits</b></h3>\n<span style=\"font-weight: 400;\">So 4 minutes is long enough to listen, and hear, your inner dialogue, have the conversation with yourself and reason with yourself.</span>\n\n<span style=\"font-weight: 400;\">Yet it’s not too long to be detrimental to you hanging around the chocolate aisle suspiciously looking like your going to steal something.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You have 4 minutes to ask yourself...</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do I really want it? /..want to do it?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Why do I want it? /..want to do it?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How will I feel if I buy it? /..do it?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How will I feel if I don’t buy it? /..don’t do it?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What are my options?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What would I think of myself if I bought it? /..didn’t buy it? /..did it? /..didn’t do it?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How would it affect my SMART goal/s?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Is it a root cause in my undesired behaviour?</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">...Keep going like this for 4 minutes!</span>\n\n&nbsp;\n\n<b>Take Just A Moment</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Most bad behaviour choices are made spontaneously, in a moment and based upon a knee jerk reaction that has no thought behind it. If we give our inner dialogue time to consider the ramifications of the decision we are far more likely to make the right one.</span>\n\n&nbsp;\n<h3><b>How Does This Work In Real Life?</b></h3>\n<span style=\"font-weight: 400;\">Having supported a No Refined Sugar Experiment Group for over 4 years now this technique of taking 4 minutes has proven to be most popular and helpful.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not try it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me know how it goes.</span>\n\n&nbsp;\n\nhttps://youtu.be/_aF05Y04v6A\n\n&nbsp;\n\n<b><i>Next Time: Attitudes, PMA &amp; Willpower!</i></b>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','4 Minutes Could Change Your Life Forever - Breaking Bad Habits','','draft','closed','closed','','4-minutes-could-change-your-life-forever-breaking-bad-habits','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=9178',0,'post','',0),(9179,0,'2018-09-24 17:11:58','2018-09-24 17:11:58','','Breaking Bad habits with the 4 minute rule','','inherit','closed','closed','','breaking-bad-habits-with-the-4-minute-rule','','','2018-09-24 17:11:58','2018-09-24 17:11:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/09/Breaking-Bad-habits-with-the-4-minute-rule-1.png',0,'attachment','image/png',0),(9226,3,'2018-10-01 13:57:57','2018-10-01 13:57:57','<span style=\"font-weight: 400;\">Something I have had to face most of my fit and healthy life is negative attitudes towards my choice of lifestyle. Weird right?!?</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">OOOOO You’re a fitness freak!”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Bet you never chill out and just eat chips, right?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Gosh you’re so skinny it makes me sick”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Bet Rachel won’t want any dessert lol”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Are you allowed ice cream Rach?</span></i><span style=\"font-weight: 400;\">”</span>\n\n<i><span style=\"font-weight: 400;\">“Do you train every day, like all of the time? Do you even have a life?</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How about you? </span>\n\n<span style=\"font-weight: 400;\">Have you ever been made to feel like your the odd ball for trying to be healthy and active?</span>\n\n<span style=\"font-weight: 400;\">Maybe you felt pressured to eat cake or not exercise by people who think a healthy lifestyle is a chore or something you must suffer?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">DOES MY NUT IN!!</span>\n\n&nbsp;\n\nhttps://youtu.be/1bRQ8HR9AEY\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The attitude of others towards your desire to change to a healthier way of living is often, I believe, jealousy. Maybe they are unable to stick to it themselves or they simply don’t believe it is possible to actually </span><i><span style=\"font-weight: 400;\">enjoy</span></i><span style=\"font-weight: 400;\"> a healthy lifestyle.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They simply do not understand how to achieve it and their reaction is one of pure ignorance.</span>\n\n&nbsp;\n<h3>How Do You Help Your Clients Deal With This?</h3>\n<span style=\"font-weight: 400;\">However, it is likely to mean that we, as trainers and coaches, must strategise how to deal with this problem and help our clients understand they may face this kind of attitude. Here are some ideas to give them a confident response when others say things like these examples above.</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">We could simply ignore them, since their opinion doesn’t matter</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Maybe we invite them to join us on our mission for finding happiness in health </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">A tougher one might be to change our friends - yes literally have a cull! </span></li>\n</ol>\n<span style=\"font-weight: 400;\">I made the tough decision to do just this in the past and as difficult as it felt at the time, it was one of the best things I ever did for my own health and happiness</span>\n\n&nbsp;\n<h3><b>Can We Practice (or Teach) Positive Mental Attitude (PMA)?</b></h3>\n<span style=\"font-weight: 400;\">Having PMA allows us to create a positive way of looking at any situation. Consider reframing a negative situation into a lesson, for example. </span>\n\n<span style=\"font-weight: 400;\">Ask yourself ‘</span><i><span style=\"font-weight: 400;\">what good can come from this situation?</span></i><span style=\"font-weight: 400;\">’</span>\n\n<span style=\"font-weight: 400;\">Even if it is learning what NOT to do. </span>\n\n<span style=\"font-weight: 400;\">Even a circumstance that makes you feel sad, like bereavement, can be reframed into being thankful for knowing the person you lost and at least you had them around for the time you did.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So behaviour change really should include encouraging a positive mental attitude towards situations. Practicing reframing a situation to enable us to succeed or remain positive. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Can we enable our clients by teaching them how to reframe? When they give an example of a danger zone when they ‘failed’ to abstain from picking up a chocolate bar, can we teach them how to see it as a learning curve to appreciate how it made them feel bad. Then use that to reduce the risk of it happening again in the future.</span>\n\n&nbsp;\n<h3><b>Endless Willpower?</b></h3>\n<span style=\"font-weight: 400;\">Now there are several industry influencers I follow that I have heard state that:</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Will power is not limitless</span></i><span style=\"font-weight: 400;\"> - It has been suggested that willpower gets used up over the day by daily demands and is probably why most of us struggle the most at the end of the day which is most often the biggest danger zone for many of us. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The time you find hardest to resist temptation is later in the day when you have probably used up most of your willpower.</span>\n\n<span style=\"font-weight: 400;\">Is that you too?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me explain:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The tougher a day is, the more easily we make bad choices because you have an excuse, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The kids create demand shouting;</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">MUUUUM….can I have</span></i><span style=\"font-weight: 400;\">…(fill the blank)”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The busy traffic had you gripping the steering wheel while you mentally created a shopping list on your way from a stressful day at work to the local supermarket, seemingly like every single other person in your area!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This makes it much easier for you to ‘treat’ yourself while in there since ‘</span><i><span style=\"font-weight: 400;\">you just got through a tough day’.</span></i><span style=\"font-weight: 400;\"> In other words it simply means that you used up all of your willpower before getting there and your devil voice was shouting loudest.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Can we use this way of thinking to our advantage?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Of course we can!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anytime we can use a tactic or a way of reframing or looking at a situation differently to our advantage has to be a good thing, don’t you agree?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Being more and more aware of how we behave a certain way and why that might be and then using our 4-minute rule maybe we can literally change our behaviour right there and then.</span>\n\n<span style=\"font-weight: 400;\">Each time we do we are conditioning our new behaviour to be more of a habit, all while listening to our inner dialogue and making the right choices.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This positive mental attitude helps us face any negative attitudes we might face and also plan for those occasions when we might use up our daily quota of willpower a bit too early.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So how is your behaviour change journey going so far?</span>\n\n&nbsp;\n\n<b><i>Next Time; Education, Research &amp; Resources.</i></b>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','Willpower & Attitude When Dealing With Bad Attitudes On A Fitness Journey','','draft','closed','closed','','willpower-attitude-when-dealing-with-bad-attitudes-on-a-fitness-journey','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=9226',0,'post','',0),(9257,0,'2018-10-01 13:56:27','2018-10-01 13:56:27','','Willpower & Attitude When Dealing With Bad Attitudes On A Fitness Journey','','inherit','closed','closed','','willpower-attitude-when-dealing-with-bad-attitudes-on-a-fitness-journey-2','','','2018-10-01 13:56:27','2018-10-01 13:56:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/10/Willpower-Attitude-When-Dealing-With-Bad-Attitudes-On-A-Fitness-Journey-1.png',0,'attachment','image/png',0),(9417,3,'2018-10-08 13:31:24','2018-10-08 13:31:24','<span style=\"font-weight: 400;\">Ok so you have got the goals set, the mindset pieces in place, you have ideas on how to stay motivated….now what?</span>\n\n<span style=\"font-weight: 400;\">So we now need to really start planning, gathering information and looking at our information sources. </span>\n\n<span style=\"font-weight: 400;\">Now the research begins…</span>\n\n<span style=\"font-weight: 400;\">Getting fully immersed into the subjects required to be in a position to pass on information to your clients is so important. In fact, we have a responsibility to them since they are PAYING for this information and your knowledge. So we MUST be sure the information we are passing on is sound. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Become informed by understanding it and living it and your clients are more likely to hit their goals.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How do we do this?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Through education, research and the right resources...</span>\n\n(You can either watch the video, or if you prefer reading then you can carry on reading below)\n\nhttps://youtu.be/33nYy-rpdmw\n\n&nbsp;\n\n&nbsp;\n<h3><b>Start With Education</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now education is my passion but what is it exactly?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">From the Oxford Dictionary: </span>\n\n<span style=\"font-weight: 400;\">education</span>\n\n<i><span style=\"font-weight: 400;\">noun</span></i>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">the process of receiving or giving systematic instruction, especially at a school or university.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">\"a course of education\"</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">an enlightening experience.</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Education that has an impact is not simply telling people information or what you know or a fact, it is giving the listener, learner a point of reference. Without a point of reference how can they see this fact from their perspective since we all see the world differently? We each need something to relate it or anchor it onto that resonates with our own way of thinking or seeing things, something intrinsic to us. Now, this could be the use of a specific kind of resource to help a certain type of learner or it could be offering examples in relation to a specific goal, in the example of a client.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How do YOU know your information is right? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Educating ourselves is clearly vital in terms of understanding options, risks and also finding out the truth about what we read or are told. However, we also need to consider our role as teachers when it comes to educating our clients about what they need to know. This can help with motivation as well as giving or clients clarity in what to expect and thus a higher chance of success. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The fear of the unknown or a distorted idea of what might be required to achieve a new behaviour can be a big reason for a client failing early on. </span>\n\n<span style=\"font-weight: 400;\">However all this said we are all more and more aware, I think, that there are those out there who will use their power of influence to affect our behaviour. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Politicians, supermarket promotions and TV adverts are all good examples of organisations, people and companies that will be doing all they can to generate a specific kind of behaviour from us. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we need to do is research...</span>\n\n&nbsp;\n<h3><b>Where Can You Research To Help Create Your Plan?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Research is also something we should do to make sure the education we pass on or learn ourselves is valid and reliable. There are many ways to do research;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Books/audiobooks</span>\n\n<span style=\"font-weight: 400;\">TV</span>\n\n<span style=\"font-weight: 400;\">Internet</span>\n\n<span style=\"font-weight: 400;\">Colleagues</span>\n\n<span style=\"font-weight: 400;\">Websites</span>\n\n<span style=\"font-weight: 400;\">Magazines/Newspapers</span>\n\n<span style=\"font-weight: 400;\">Events</span>\n\n<span style=\"font-weight: 400;\">College/University</span>\n\n<span style=\"font-weight: 400;\">Meetings</span>\n\n<span style=\"font-weight: 400;\">Focus groups</span>\n\n<span style=\"font-weight: 400;\">Observations</span>\n\n<span style=\"font-weight: 400;\">Laboratories</span>\n\n<span style=\"font-weight: 400;\">And more</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The really tricky part is finding good, high quality resources that will be giving us reliable and valid information rather than simply creating language that makes us believe something that just isn’t true.</span>\n\n&nbsp;\n<h3><b>How To Find Reliable Resources To Help You Plan</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We must understand how to differentiate good resources from bad ones. This can be a challenge but using common sense and following up on where the source of the information has come from will contribute to confidence.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example good sources will be very open about their content and access to it. Good education companies are accredited by governing bodies, sound research papers will be validated by a university or peer reviewed, politicians that are honest…..ahem let’s just leave that one there. Books should have the authors details to further research their integrity etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now there is still room for ambiguity on sound resources since some come from very large companies who can afford to do their own research and then manage to make the numbers LOOK good by paying for the study to be done in such a way to look good in their favour. Look at the large sugary drinks companies who a worth billions and their adverts show happy healthy, slim attractive actors creating a feeling in you to buy their drinks. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So common sense is also a huge player in this BUT the more articles you read and the more information you gather the more reliable it should be.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sadly there are also some really smart people out there using their power of influence to take advantage of ‘admirers’ so what out for those charmers. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Challenge Everything, use your Critical Thinking Skills</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So c’mon get out there, dive into the learning cycle, do your research, learn, grow and gather data and then implement - in fact take action right NOW!</span>\n\n&nbsp;\n\n<b><i>Next time - Paradigm Shifting &amp; Context</i></b>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','Putting Together A Plan Of Action To Ensure Success In Your Fitness Goals','','draft','closed','closed','','putting-together-a-plan-of-action-to-ensure-success-in-your-fitness-goals','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=9417',0,'post','',0),(9422,0,'2018-10-06 13:53:08','2018-10-06 13:53:08','','Creating a plan of action to ensure success with your fitness goals','','inherit','closed','closed','','creating-a-plan-of-action-to-ensure-success-with-your-fitness-goals','','','2018-10-06 13:53:08','2018-10-06 13:53:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/10/Creating-a-plan-of-action-to-ensure-success-with-your-fitness-goals-1.png',0,'attachment','image/png',0),(9448,0,'2018-10-09 09:10:01','2018-10-09 09:10:01','','STA','','inherit','closed','closed','','sta','','','2018-10-09 09:10:01','2018-10-09 09:10:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/10/STA-e1612198752810-1.png',0,'attachment','image/png',0),(9451,0,'2018-10-09 09:19:35','2018-10-09 09:19:35','','Brytespark_New_2018-1','','inherit','closed','closed','','brytespark_new_2018-1-2','','','2018-10-09 09:19:35','2018-10-09 09:19:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/10/Brytespark_New_2018-1-1-1.png',0,'attachment','image/png',0),(9453,0,'2018-10-09 09:19:39','2018-10-09 09:19:39','','CIMSPA','','inherit','closed','closed','','cimspa-2','','','2018-10-09 09:19:39','2018-10-09 09:19:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/10/CIMSPA-1.png',0,'attachment','image/png',0),(9455,0,'2018-10-09 09:29:41','2018-10-09 09:29:41','','BTN','','inherit','closed','closed','','btn','','','2018-10-09 09:29:41','2018-10-09 09:29:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/10/BTN-1.png',0,'attachment','image/png',0),(9457,0,'2018-10-09 09:31:31','2018-10-09 09:31:31','','BTN','','inherit','closed','closed','','btn-2','','','2018-10-09 09:31:31','2018-10-09 09:31:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/10/BTN-3-1.png',0,'attachment','image/png',0),(9491,3,'2018-10-15 15:51:19','2018-10-15 15:51:19','<h3><b>Change How You Feel In A Moment </b></h3>\n<span style=\"font-weight: 400;\">There are lots of things that can influence how we behave as we have discussed over the last 8 Juicemails, however sometimes a simple shift in the way we look at something can have a profound effect on our behaviour both short and long-term. </span>\n\n<span style=\"font-weight: 400;\">In Stephen R Covey’s book ‘</span><i><span style=\"font-weight: 400;\">7 Habits of Highly Successful People’ </span></i><span style=\"font-weight: 400;\">he uses the term ‘</span><i><span style=\"font-weight: 400;\">Paradigm Shifting’</span></i><span style=\"font-weight: 400;\">. This term is something we have used in our academy from the very beginning of our programme development and design. Covey gives a fantastic example of how to understand this term.</span>\n\n&nbsp;\n\nhttps://www.youtube.com/watch?v=4hmbG6K3WN0\n\n&nbsp;\n<h3><b>But First What Is A ‘Paradigm?’</b></h3>\n<span style=\"font-weight: 400;\">The internet says;</span>\n\n<i><span style=\"font-weight: 400;\">A typical example or pattern of something; a pattern or model.</span></i>\n\n<i><span style=\"font-weight: 400;\">\"society\'s paradigm of the ‘ideal woman’”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">A world view underlying the theories and methodology of a particular scientific subject.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">\"the discovery of universal gravitation became the paradigm of successful science”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In simple terms it is </span><i><span style=\"font-weight: 400;\">how you see things in your own mind.</span></i>\n\n<span style=\"font-weight: 400;\">This idea would suggest it to be a great way to influence someone else’s behaviour by offering a new way of seeing a situation. </span>\n\n<span style=\"font-weight: 400;\">The example scenario Covey experienced and explained in his book went something like this; </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A man with his 2 kids who were being unruly, running around and disturbing people, while he sat on a bench next to Covey.</span>\n\n<span style=\"font-weight: 400;\">Covey was trying to read his paper and felt annoyed by these ‘out of control’ kids thinking to himself.. </span><i><span style=\"font-weight: 400;\">“why can’t he control his kids?”</span></i>\n\n<span style=\"font-weight: 400;\">Eventually Covey said to the man..</span><i><span style=\"font-weight: 400;\">“excuse me but aren\'t your kids a little out of control?”</span></i>\n\n<span style=\"font-weight: 400;\">The man replies, looking somewhat deflated.. </span><i><span style=\"font-weight: 400;\">“yes yes I guess I should but well we just left the hospital and their mother just died an hour ago and I guess they don\'t know yet how to deal with it and I guess me too”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Covey’s paradigm shifted once he heard the plight of this poor family and his annoyance shifted from annoyance to sympathy literally in a moment. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Covey encourages us to think about how OUR feelings shifted as WE heard or read the story here.</span>\n\n<span style=\"font-weight: 400;\">It is evidence of how one\'s own perception of a situation can shift instantly the moment we realise the other view point.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So can we give more detail about how WE view a situation to enable different understanding/behaviour/reaction to the circumstances surrounding it? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Should we be asking more questions prior to behaving or re-acting in a certain way?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine your client confessing they didn’t ‘behave’ in a way they wanted to or had planned to. Discussing their thought process with them might offer you an opportunity to shift their paradigm and therefore change their behavior next time they face a similar situation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Client “</span><i><span style=\"font-weight: 400;\">I failed, I ate cake and now I may as well give up, I can’t do it, I am rubbish at this and everyone else had cake so how can I say no?”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You</span><i><span style=\"font-weight: 400;\"> “Imagine I am you, what would you say to me? How would you support me if I said this to you? Consider the bigger picture - you have done so well so far and this is one small hiccup that we can turn into a fantastic lesson for you. Imagine that you can only fail if you give up. You have already successfully changed you behaviour up to now….” etc</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Literally asking the client to imagine swapping places with you can shift their paradigm into a different view of their behaviour and therefore is more likely to encourage different behaviour next time. It gives a change of context...</span>\n\n&nbsp;\n<h3><b>How Does Context Affect Your Thoughts?</b></h3>\n<span style=\"font-weight: 400;\">Another example of how we can change our behaviour is by simply putting things into context.</span>\n\n<span style=\"font-weight: 400;\">So many articles, videos and blogs out there are written without context. What I mean is those articles that suggest that everyone should do one thing, for example; </span>\n\n&nbsp;\n<ul>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">squat with toes pointing forward</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">women should do more cardio</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">everyone should eat paleo</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">dairy is bad for you </span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">orthotics are bad</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">stretching is bad for you</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">we should all learn to use foam rollers</span></i></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">None of these statements are considering every person who may squat, like dairy, need orthotics etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is often a single viewpoint that is offered about methods of exercise, movement correction, behaviour or diet etc. The author has usually had an experience that created THEIR belief or idea and maybe this happened to most of the people they knew. So they wanted to tell others in an attempt to help. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet we are all different!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some people can eat dairy, some don’t like paleo, some do and some don\'t respond to stretching. This is the same when it comes to changing our behaviour, educating clients and all the other topics we have discussed previously. We ALWAYS need context as without it we may be using false or irrelevant information to our circumstances or fail to see how it will help us. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Giving clients a better understanding of the thinking behind an idea or viewpoint should give clarity along with the reasons WHY we make certain suggestions about how to change their behaviour.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So maybe we should ALL be braver and more ready to go against the grain and behave in a way we feel is for our best interest rather than simply following the crowd. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not try it yourself….when your client confesses something can you convert their thinking, their behaviour, by giving them a different way of looking at the situation that creates a positive outcome instead of a negative?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider a time when you did something you really didn’t want to do. You did it just because everyone else did and even though you didn’t want to. If we put it into context surely the people who care around us want us to be happy with or without having that piece of cake!! </span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','Stopping A Client\'s Small Blip Becoming A Major Fail - Shifting Paradigms','','draft','closed','closed','','stopping-a-clients-small-blip-becoming-a-major-fail-shifting-paradigms','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=9491',0,'post','',0),(9492,0,'2018-10-12 07:46:24','2018-10-12 07:46:24','','Stopping a small blip becoming a major fail - Personal Trainers Guide To Shifting Paradigms','','inherit','closed','closed','','stopping-a-small-blip-becoming-a-major-fail-personal-trainers-guide-to-shifting-paradigms','','','2018-10-12 07:46:24','2018-10-12 07:46:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/10/Stopping-a-small-blip-becoming-a-major-fail-Personal-Trainers-Guide-To-Shifting-Paradigms-1.png',0,'attachment','image/png',0),(9560,3,'2018-10-22 16:16:00','2018-10-22 16:16:00','<span style=\"font-weight: 400;\">We all have several aspects of our lives that affect our behaviour and how we feel. This applies to our clients too, who more often than not are paying us for advice on how we can help them change something. This will always relate to some kind of behaviour. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So how can we further assist them in their endeavour?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, as we have explored in previous Juicemails, we need to create benchmarks so we can analyse and monitor any changes that occur to demonstrate success. However we might also need to alter focus at times to certain areas more than others. </span>\n\n<span style=\"font-weight: 400;\">What do I mean by this? </span>\n\n&nbsp;\n<h3><b>Important Lessons Learnt</b></h3>\n<span style=\"font-weight: 400;\">One of the important lessons I have learned like most of us, from getting it wrong sometimes, is to get a </span><i><span style=\"font-weight: 400;\">balance</span></i><span style=\"font-weight: 400;\"> of all of the things that I are important in my life. </span>\n\n<span style=\"font-weight: 400;\">Having read somewhere that each of us have 4 key areas to our lives that we could imagine make up the 4 legs of a chair. If we don’t pay attention to one of these areas the balance of the chair can falter. This might result in feelings or behaviours that we don’t want. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I decided to define mine, then I started analysing the ‘quality’ of each along with how much attention I was paying to them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now the titles you give to your 4 legs may well differ to mine and that’s perfectly fine, they need to be relevant. The ‘quantity’ of focus you wish to apply to each is also likely to differ for each of us. But we should all consider just how happy we are in each of these areas and what we might be able to do to improve the ones we may neglect. </span>\n\n&nbsp;\n<h3><b>The Process For Our Clients </b></h3>\n<span style=\"font-weight: 400;\">Anything that is systemised can be taught so this method can be an awesome tool to help our clients understand how their behaviours and decisions can affect their results. </span>\n\n<span style=\"font-weight: 400;\">So to create awareness first of all we would ask them to write down the 4 key areas of their life. </span>\n\n<span style=\"font-weight: 400;\">Here is an example of my 4 legs of life;</span>\n\n&nbsp;\n<ol>\n 	<li><span style=\"font-weight: 400;\"> Family </span></li>\n 	<li><span style=\"font-weight: 400;\"> Healthy nutrition </span></li>\n 	<li><span style=\"font-weight: 400;\"> Exercise/recovery </span></li>\n 	<li><span style=\"font-weight: 400;\"> Work</span></li>\n</ol>\nExamples of legs of life could be... Friends, finances, health, spirituality, religion, personal development, contribution and many more.\n\n&nbsp;\n<h3><b>Analysing The Data</b></h3>\n<span style=\"font-weight: 400;\">Then trying to understand how happy we are with each, maybe scoring them from 1-10 on how happy we are with them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Family 9/10 </span>\n\n<span style=\"font-weight: 400;\">Nutrition 6/10 </span>\n\n<span style=\"font-weight: 400;\">Exercise 5/10 </span>\n\n<span style=\"font-weight: 400;\">Work 8/10 </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When we are able to score our 4 legs of life we can then address any discrepancy we find. This is vital in creating balance allowing us to focus on behaviours we desire rather than defaulting to behaviours that make us feel bad or sad or low in confidence. </span>\n\n&nbsp;\n<h3>But what is a 10/10 you might be thinking?</h3>\nIt\'s whatever you want it to be. What would a 10/10 look like for you? it might help to write that down. Then you can score yourself based on that.\n\nBalance does not mean spending an equal amount of time on each one. What we are looking for here is how you feel you are doing in those areas.\n\n&nbsp;\n<h3>The Next Steps</h3>\nNow that you have scored yourself, what do you do next. Well, I would say look at your 10/10 goal, then look at what you are doing now. What needs to happen to turn that 6 into a 7 for example? Don\'t look at the major things, look at the things you can do now to move you towards that 10.\n\n&nbsp;\n\nAnd then go do it!\n\n&nbsp;\n\nIf you don\'t know what you need to do, then there is this really cool thing called Google. We use it for everything right? But the truth is there is so much knowledge out there in the world for free. Or go grab a book or 4 on the subject, get a coach, find someone who you consider a 10/10 and ask them how they do it. Go and LEARN! We spoke about this last time when it came to writing a plan to improve.\n\n&nbsp;\n<h3><b>What You Think, You Feel</b></h3>\n<span style=\"font-weight: 400;\">There is growing evidence that proves where ever we focus our attention is where we can create change. If we are not aware of what needs our attention how can we focus on it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Designing our 4 legs of life scorecard allows us to invest time and focus where it is required.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not try this out for yourself first?</span>\n\n<span style=\"font-weight: 400;\">Then let me know how it goes and then try it for your clients too.</span>\n\n&nbsp;\n\nhttps://www.youtube.com/watch?v=ktPwzRtf8MU\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>\n&nbsp;','The 4 Legs of Life - The Key To Creating Balance In Your Life','','draft','closed','closed','','the-4-legs-of-life-the-key-to-creating-balance-in-your-life','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=9560',0,'post','',0),(9561,0,'2018-10-19 09:49:07','2018-10-19 09:49:07','','The 4 Legs Of Life - Creating Balance In Your Life','','inherit','closed','closed','','the-4-legs-of-life-creating-balance-in-your-life','','','2018-10-19 09:49:07','2018-10-19 09:49:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/10/The-4-Legs-Of-Life-Creating-Balance-In-Your-Life-1.png',0,'attachment','image/png',0),(9698,3,'2018-10-29 19:08:42','2018-10-29 19:08:42','<span style=\"font-weight: 400;\">This is my absolute favourite behaviour change tool and can be THE MOST inspiring, exciting and motivational tool you can offer to your client. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To explain the Ripple Effect I would like to share a story with you about a father and his daughter...</span>\n\n&nbsp;\n<h3><b>Where The Journey Begins...</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As father and daughter relationships go they were very close and he had inspired her to start jogging in her early 20’s. She began with a 10 min jog round the block and built it up gradually adding another block at a time. </span>\n\n<span style=\"font-weight: 400;\">He spoke passionately about the feeling of running, that elation as the endorphins release, the camaraderie and the feeling of freedom. </span>\n\n<span style=\"font-weight: 400;\">She began to understand what he meant and eventually entered her first half marathon. </span>\n\n<span style=\"font-weight: 400;\">The months of training, the planning and eating and timing and suddenly there she was, standing nervously at the start of her first race.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Oh boy was she excited! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The camaraderie really affected her the most as she ran the route with people around her cheering her up the hills, people watching from the streets cheering too and the motivation and excitement she felt as she saw that finish line! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Even as tired as she felt the roar of the crowds pushed her into a final sprint towards the finish line and she lifted her arms to cross the line with such a feeling of elation she wanted to hug everyone around her and so in fact she did!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THIS was ‘living’.</span>\n\n&nbsp;\n\n<b>She Was Hooked!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Each year for 25yrs she and her dad trained for their local half marathon, they entered smaller races and she even travelled to enter bigger races in other cities. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What she also learned was not everyone understood what it felt like, but her dad did.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over the years they would get excited about this race, her dad would ask “</span><i><span style=\"font-weight: 400;\">are you ready?”,”have you done the training?”, “ are you fit?</span></i><span style=\"font-weight: 400;\">”...hahaha “</span><i><span style=\"font-weight: 400;\">yes dad</span></i><span style=\"font-weight: 400;\">” she would reply and together they would warm up, discuss their planned times and set off aiming to find each other at the end of the race.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It was a highlight to their year and something they shared that bonded them tightly. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Their commitment spread and others joined them, old and young, occasionally or regularly. It was a big part of their relationship.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However over the years she got faster, he grew slower.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">After completing the half marathon, she would now run back over the race track to find him and help him finish, concerned that he was ok. He started to limp over the finish line. </span>\n\n&nbsp;\n<h3><b>The Moment It Was All Over</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">He was aging and discovered he now needed a hip replacement and afterwards was told by his surgeon not to run again.</span>\n\n<span style=\"font-weight: 400;\">He was crushed. </span>\n\n<span style=\"font-weight: 400;\">She was frustrated.</span>\n\n<span style=\"font-weight: 400;\">They felt sad BUT they stayed positive and while the running stopped their bond did not. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There was a period of around 6 years neither of them ran. Life goes on even though the routine changes. Even though they didn’t really talk about it, they both missed their running.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He changed, became sedentary, sat for hours at his computer and was going into a mild depression. </span>\n\n&nbsp;\n<h3><b>The Silver Lining </b></h3>\n<span style=\"font-weight: 400;\">Then they had the devastating news that he now had early onset dementia. You can imagine the effect this had on the entire family. </span>\n\n<span style=\"font-weight: 400;\">Yet he was lucky enough to be invited to take part in a research project. This project was collecting data on how effective physical exercise might be on those diagnosed with dementia.</span>\n\n<span style=\"font-weight: 400;\">She joined him on a 6 week course ‘living with dementia’ and he got physical therapy to understand how active he was and whether they could improve on it. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">His physio asked him “</span><i><span style=\"font-weight: 400;\">what would you like to do to be more active</span></i><span style=\"font-weight: 400;\">?”.</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Well I would like to run, but I have been told I can’t” </span></i><span style=\"font-weight: 400;\">He replied</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What this ANGEL did next had an effect that nobody could have predicted.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">She got him running again!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok so 10 mins jog to start and gradually building up but HE WAS RUNNING AGAIN!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The change in him was instant!</span>\n\n&nbsp;\n<h2><b>The Park Run</b></h2>\n<span style=\"font-weight: 400;\">His daughter felt inspired too and committed to helping to encourage him to run by joining him whenever she could on the 5k park run each Saturday morning. In fact, she too had not run for so long it felt so good to be back running AND next to her dad. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then her mum would come with her walking sticks and do a half lap while they did their 5k.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then her nephew decided to come along and jog ahead of them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then her friend decided to meet them there and jog with them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">She even began to film their story to social media. </span>\n\n<span style=\"font-weight: 400;\">What was happening here was what I call the Ripple Effect.</span>\n\n&nbsp;\n<h3><b>The Ripple Effect</b></h3>\n<span style=\"font-weight: 400;\">The research project came to an end but the park runs didn’t. In fact, when they contacted him to see how he was doing some months later and he shared the news of this amazing Ripple Effect the researchers were ecstatic and asked to write about this in a medical article. They wanted to do a presentation about their research on the health benefits of exercise on dementia patients and this example allowed them to also show the wider reaching effects on the surrounding family.  In fact, he became their star pupil and they continue to share his story to others.</span>\n\n&nbsp;\n<h3><b>How Many Times Can You Count The Ripple Effects Of This Special Bond?</b></h3>\n<span style=\"font-weight: 400;\">Now go back through this story and count how many times the relationship between this father and daughter, and their love for movement/running, affected other people?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Your behaviour has a huge impact upon the people around you. </span>\n\n<span style=\"font-weight: 400;\">You cannot change someone else\'s behavior but you CAN change yours.</span>\n\n<span style=\"font-weight: 400;\">When you change, others change around you.</span>\n\n<span style=\"font-weight: 400;\">You inspire others</span>\n\n<span style=\"font-weight: 400;\">It is suggested that you become more like the 5 people you spend the most time with.</span>\n\n<span style=\"font-weight: 400;\">So choose wisely</span>\n\n<span style=\"font-weight: 400;\">AND</span>\n\n<span style=\"font-weight: 400;\">More importantly, THINK about your behaviour </span>\n\n<span style=\"font-weight: 400;\">How many people can you affect?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You know who it was in the story don’t you?</span>\n\nIf you haven\'t guessed it already... its me and my dad!\n\n&nbsp;\n<h3><b>What’s Your Story?</b></h3>\n<span style=\"font-weight: 400;\">How can YOU use this tool to motivate your client to change their behaviour?</span>\n\n<span style=\"font-weight: 400;\">Can you find a way to help them, help their loved ones or vice versa, to move more? Eat better? </span>\n\n<span style=\"font-weight: 400;\">Maybe ask them about their family’s habits so you can see how to use this concept to help them pull the whole family together towards a united goal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The power of the Ripple Effect is real!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I hope you have enjoyed this series of videos and blogs about behaviour change - if so why not HIT REPLY and share your thoughts, questions and ideas so together WE can get the nation moving more freely!</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','The Ripple Effect - How 1 Action Can Impact Hundreds Of Others - What\'s YOUR Ripple Effect?','','draft','closed','closed','','the-ripple-effect-how-1-action-can-impact-hundreds-of-others','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=9698',0,'post','',0),(9701,0,'2018-10-29 18:59:30','2018-10-29 18:59:30','','The Ripple Effect - How 1 action can impact hundreds of people','','inherit','closed','closed','','the-ripple-effect-how-1-action-can-impact-hundreds-of-people','','','2018-10-29 18:59:30','2018-10-29 18:59:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/10/The-Ripple-Effect-How-1-action-can-impact-hundreds-of-people-1.png',0,'attachment','image/png',0),(9752,3,'2018-11-05 20:21:01','2018-11-05 20:21:01','<span style=\"font-weight: 400;\">So many people with the same, or similar, problems create an innate problem. You see we can all have similar or even the same symptoms, or pain, and yet the intervention required can be completely different from person to person. Don’t get me wrong, it can also be that the same remedy works for lots of different people. The problem for us as professionals, coaches, trainers, therapists working with the human body, is how on earth do we work out the correct solution?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The thing I personally used to find the scariest about working with the human body is in fact now the thing I love the most. You see I used to feel completely inadequate in my level of anatomy knowledge and at times I still do! There is a hell of a lot to learn, right!?!?</span>\n\n<span style=\"font-weight: 400;\">However what I have discovered by working alongside some of the most amazing professionals in the industry was that I simply needed to learn the relevant stuff. The appropriate knowledge that was relevant to enable me to help my clients move better but to also have a degree of confidence in doing that. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They taught me that I don\'t need to know everything, in fact that would be pretty darn incredible and possibly a bit arrogant should we ever get to the point where we feel we know everything about the human body!! Don’t you agree!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I discovered this really great question that I could ask myself...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">SO WHAT?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This wonderful question allowed me to accept that I should know what I need to know BUT also that I had permission to not feel that I had to know everything because I could simply refer, or get a second opinion, from someone else!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The solution for me was to gain the skills I wanted, enjoyed and could utilise in my business and then confidently refer for the stuff I wasn’t so keen on doing OR felt were beyond my remit. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So back to the pain in the bum point!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pain is a controversial subject right now and the industry is rife with education, seminars and courses that discuss pain.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The problem with pain is it is subjective, very individual and your pain (or your client\'s pain) may be similar to someone elses and yet have a very different cause.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First and foremost we must appreciate that pain is a good thing! It means your body is communicating with you to you that something needs to change.</span>\n\n&nbsp;\n<h3>What\'s The Cause Of Your Clients Pain?</h3>\n<span style=\"font-weight: 400;\">However, some causes of pain are </span><i><span style=\"font-weight: 400;\">clinical and require clinical help</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some causes of pain are </span><i><span style=\"font-weight: 400;\">compensations that simply require exercises</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Some may require BOTH</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we MUST understand is which is our remit and which is not and this is a point I make for both the clinicians and the exercise professionals. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because a clinician may apparently ‘fail’ when ‘treating’ a pain that is caused by a compensation coming from somewhere else. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">An exercise professional could be practising outside of their insurance remit if they attempted to use an exercise on an area of the body that is painful because of an underlying clinical issue they are unable to test for. Also running a risk of harming their client.</span>\n\n&nbsp;\n\n<b>So How Do We Know Which Is Which? </b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, this is a tough one because there is a good chance at first glance that we won’t know which it is since pain is simply telling us to change something but not why nor what.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So the ideal would be to have 2 things in place:</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The ability to perform physical tests to identify how well their body works, or not</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">An awesome interdisciplinary team around you who, with the clients permission, discuss a plan of action together based upon a whole series of tests that can rule things out</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">These 2 things alone create a huge increase in confidence for everyone since no one is alone in the process of decision making. It means we all get to do what we are great at and enjoy the most.</span>\n\n<span style=\"font-weight: 400;\">These 2 point also enable ‘the team’ to collectively perform both clinical tests and function tests to understand the whole picture….because that pain in your bum could have nothing to do with the area that feels painful other than that is where it is being represented. We also need to understand risk.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">That pain in the bum could be caused by any number of biomechanical compensations coming from any combination of body parts or subsystems (myofascial, skeletal, neural). It could also require BOTH clinical treatment AND exercises for various parts of the body. </span>\n\n&nbsp;\n\n<b>How We Can Help</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we do with the academy is bring ALL of these professionals together in our classroom to understand better how we can all work together for the best duty of care.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We will teach you what YOU NEED TO KNOW and then show you exactly WHEN TO REFER and WHEN TO CONTINUE based on a simple measuring system. This system can be used by both clinicians AND exercise professionals AND manual therapists to UNITE US in improving the movement of the nation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are extremely passionate about this concept that has been missing and we are showing how it can work wonderfully with our community of Biomechanics Coaches who range from backgrounds in :</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Personal Training</span>\n\n<span style=\"font-weight: 400;\">Pilates</span>\n\n<span style=\"font-weight: 400;\">Manual Therapy</span>\n\n<span style=\"font-weight: 400;\">Podiatry</span>\n\n<span style=\"font-weight: 400;\">Physiotherapy</span>\n\n<span style=\"font-weight: 400;\">Osteopathy</span>\n\n<span style=\"font-weight: 400;\">Chiropractic</span>\n\n<span style=\"font-weight: 400;\">Strength and Conditioning</span>\n\n&nbsp;\n\nTo tap into this kind of multi disciplinary network why not do some market research in your area and pay the local practitioners a visit to experience their service? If you like their methods and feel they could support you, then you could ask them if they would be happy to accept referral from you since they have skills you do not. I cannot for a moment imagine anyone saying no can you? Then you would hope that they would reciprocate but if you have a conversation about gaining your clients permission to discuss their circumstances this would certainly suggest to them that this is what you are looking to set up.\n\nIf you would like more guidance on this please do not hesitate to contact us info@biomechanicseducation.com\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we would like to do is offer you all the ability to fully assess both the pelvis and the spine of your clients to KNOW what exercise to give them or when to refer and how to refer. Should you take us up on this offer we would GIVE YOU A FREE LOW BACK HEALTH WORKSHOP!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We would also like to then give you some of the basic equipment to get you started on your journey towards improving your clients biomechanics as part of our 5th Birthday Celebration!</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','The Personal Trainers Guide To Working With Clients Who Are In Pain','','draft','closed','closed','','the-personal-trainers-guide-to-working-with-clients-who-are-in-pain','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=9752',0,'post','',0),(9753,0,'2018-11-02 11:39:43','2018-11-02 11:39:43','','Personal trainers guide to dealing with a client who is in pain','','inherit','closed','closed','','personal-trainers-guide-to-dealing-with-a-client-who-is-in-pain','','','2018-11-02 11:39:43','2018-11-02 11:39:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/11/Personal-trainers-guide-to-dealing-with-a-client-who-is-in-pain-1.png',0,'attachment','image/png',0),(9947,3,'2018-11-12 17:00:07','2018-11-12 17:00:07','<span style=\"font-weight: 400;\">If you follow me on social media you will likely know I love movement and a big part of that is strength and conditioning (you may also know I love sushi).</span>\n\n<span style=\"font-weight: 400;\">Having done the British WeightLifting Coach course and 3 or 4 other olympic lifting, kettlebell, strength and conditioning courses I feel there is always something to learn. This maybe new content, news ideas of application, or even just hearing a different professionals opinion. </span>\n\n<span style=\"font-weight: 400;\">So this month I have enrolled onto Brendan Chaplins L4 S&amp;C Course. Brendan attended our diploma many years ago and we have stayed in touch over the years as both of our businesses have evolved and grown. We have met up occasionally just to catch up and Brendan was a guest presenter at our 2016 annual event at Loughborough University. </span>\n\n<span style=\"font-weight: 400;\">Here I find myself, having not done anything more than CPD for a year or so, feeling super excited about being a student again. So as I swot up on the SCE Members Area online ready for the face to face workshop in Leeds Nov 17th/18th I wanted to share my experience with his company and also share with you, why combining strength and conditioning with biomechanics coaching is a recipe for success!</span>\n\n&nbsp;\n<h3><strong>Biomechanics Coaching + Strength &amp; Conditioning </strong></h3>\n<strong><i>\"The Biomechanics Coaching model does not work on its own which is why there is a pre-requisite to attending the Diploma. Biomechanics Coaching is an evidence based and systemised analysis and monitoring skill that also requires an understanding of strength and conditioning. Once the iMoveFreely techniques have been introduced  its vital to implement the strength work that is required to change the test results long term. Ultimately the 2 go hand in hand when it comes to both preparation for movement and optimising performance.</i></strong><strong><i>\"</i></strong>\n\n<strong><i>\"It is my belief that the Strength and Conditioning skills takes Biomechanics Coaching to a whole new level. This is because \'performance\' requires it. What I mean by this is that the Biomechanics Coaching model is based on 3 phases of training and exercise...\"</i></strong>\n\n<strong><em>Capacity &amp; Preparation </em></strong>\n\n<strong><em>Stability &amp; Control</em></strong>\n\n<strong><em>Function &amp; Performance</em></strong>\n\n<strong><i>\"The Strength and conditioning model adds huge value to the \'performance\' part. However it</i></strong><strong><i> might be considered purely an elite athletes programming however we, as Biomechanics Coaches, recognise the body will always require this pyramid of planning even to \'perform\' basic tasks. Lifestyle is massive affecting natural human movement, so as coaches and trainers, we are now required to understand in more depth what periodisation means from offering our clients basic intrinsic capacity first prior to any kind of \'functional\' training.\"</i></strong>\n\n<strong><i>\"So what?....well this model of Biomechanics Coaching + Strength &amp; Conditioning is not just for athletes but also for our every day client and will, as evidence has shown, reduce risk and optimise performance from elite sport to average gym goers and even the older populations \'performance\' of their daily tasks including using their walking stick and carrying shopping bags.\"</i></strong>\n\n<i>Rachel France Biomechanics Coach, British Weight Lifting Coach </i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I know most of you will have heard of Strength and Conditioning Education but for those who haven’t here is some background…</span>\n\n<i><span style=\"font-weight: 400;\">Strength and Conditioning Education have been developing and delivering high quality education for fitness professionals for many years; Founded in 2011, the company specialises in performance-based education that allows trainers to develop their skills to get better results with their clients and work with athletes from all sports.</span></i>\n\n<i><span style=\"font-weight: 400;\">Using a mixture of face to face and online learning SCE have courses to support personal trainers at any stage of their career.  Whether you are completely new to Strength and Conditioning or already have some knowledge they provide a variety of courses specifically in the world of Strength and Conditioning. </span></i>\n\n<i><span style=\"font-weight: 400;\">SCE are the UK’s primary deliverer of the Level 4 Strength and Conditioning course aimed at Personal Trainers looking to take the next steps into performance coaching and training.  In the past year over 1000 Personal Trainers have enrolled onto the Level 4 Award. With flexible payment options and many centres around the UK, it has never been easier to get started in Strength and Conditioning</span></i>\n\n<i><span style=\"font-weight: 400;\">They are also the only provider in the UK that offer insurance for people delivering S&amp;C coaching to people under the age of 18 through their Youth Strength and Conditioning Association Pathway.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if you fancy joining me this month on a journey towards becoming a SCE L4 S&amp;C Coach why not check them out, <a href=\"https://strengthandconditioningeducation.com\">just click here.</a></span>\n\n<img class=\"aligncenter wp-image-9948\" src=\"https://biomechanicseducation.com/wp-content/uploads/2018/11/Strength-Conditioning-Education-Biomechanics-Coaching-1-300x78.png\" alt=\"\" width=\"419\" height=\"109\" />\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>\n&nbsp;','Biomechanics Coaching & Strength & Conditioning - The Ultimate Combination','','draft','closed','closed','','intrinsic-biomechanics-coaching-strength-conditioning-the-ultimate-combination','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=9947',0,'post','',0),(9948,0,'2018-11-09 14:54:30','2018-11-09 14:54:30','','Strength & Conditioning Education & Biomechanics Coaching','','inherit','closed','closed','','strength-conditioning-education-biomechanics-coaching','','','2018-11-09 14:54:30','2018-11-09 14:54:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/11/Strength-Conditioning-Education-Biomechanics-Coaching-1.png',0,'attachment','image/png',0),(9977,0,'2018-11-12 16:57:37','2018-11-12 16:57:37','','Biomechanics Coaching & Strength & Conditioning','','inherit','closed','closed','','biomechanics-coaching-strength-conditioning','','','2018-11-12 16:57:37','2018-11-12 16:57:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/11/Biomechanics-Coaching-Strength-Conditioning-1.png',0,'attachment','image/png',0),(10018,3,'2018-11-19 11:04:46','2018-11-19 11:04:46','<span style=\"font-weight: 400;\">Wow I cannot tell you how I feel right now - excited, anxious, proud, crazy, positive, daunted all in one go! </span>\n\n&nbsp;\n<h2 style=\"text-align: center;\"><strong>WE ARE CELEBRATING!</strong></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you have waited 13 years for something and then there it is and you feel the stars have aligned, that fate has occurred, that karma is real and that we should ALWAYS dare to dream.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Coincidentally reading a fabulous book \'Ghost Boy\' by Martin Pistorious - who </span><i><span style=\"font-weight: 400;\">dared to dream</span></i><span style=\"font-weight: 400;\"> he would live to love even after suffering an illness that took away all ability to communicate. He suffered horrific abuse and judgment every day inside a shell of a body that, while fully aware, wouldn\'t let him scream, shout or communicate what was going on inside his intelligent mind. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">His lesson ‘dare to dream’ really inspired me all over again, even after I have experienced &lt;dream = reality&gt; before.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a little girl I had a secret dream of owning a business, any business, anywhere - never told anyone and often didn\'t even think about it because - well I just wasn\'t bright enough right? No academic skill and clearly you need some brains to set up a company right? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, my karma aligned OR SOMETHING because over the last 13 years been the director of 5 companies and now running a successful international education company. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The final part of the BIG dream was realised last week - when I signed contracts for the </span><b><i>Biomechanics Education Academy</i></b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my head it’s going something like this:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\"> How the hell did that happen? Well, I must be super lucky, I guess, shit!!! Now what?!!! OMG I CANNOT WAIT to get it decorated. There wasn\'t a budget for this! YIPPPPEEEEEEEE!!!”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My parents have always encouraged me to follow dreams and that life is too short to let it simply trundle along COMFORTABLY. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now, this is a keyword here - <strong>COMFORTABLE</strong> - because LIVING doesn\'t happen when you’re feeling comfortable does it? Really living and excitement and fun and joy mostly happen when you take risks. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Mel Robbins would call it THE 5 SECOND RULE (Another book bomb btw)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Only take 5 seconds to make that important decision, go with your gut, take a leap and feel that fear! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Tony Robbins would call it ‘</span><i><span style=\"font-weight: 400;\">breaking the pattern</span></i><span style=\"font-weight: 400;\">’. We can get so comfortable in life because it’s EASIER and yet the times when we take a risk, dare to dream - THAT IS WHEN THE MAGIC HAPPENS!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Someone said “</span><i><span style=\"font-weight: 400;\">you only fail when you give up” </span></i><span style=\"font-weight: 400;\">and someone else said</span><i><span style=\"font-weight: 400;\"> “failing is only failing if you don’t learn the lesson” </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I never thought I was brave and yet somewhere along the way I developed the f*** it attitude - which was probably after almost losing literally everything I had worked for over 20 years.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway I am super excited to announce that we now have a permanent HQ in Keyworth, Nottingham </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">AND </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Not only that it is in proud partnership with Aspire4Fitness Gym </span><a href=\"https://aspire4fitness.co.uk\"><span style=\"font-weight: 400;\">https://aspire4fitness.co.uk</span></a><span style=\"font-weight: 400;\"> without whom this would not be happening. Matt and his team have such a great community/team attitude already even after just opening Nov 1st 2018 and I feel honoured to have been invited to work alongside these superb professionals. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So we are still preparing the </span><b><i>Biomechanics Education Academy</i></b>\n\n<span style=\"font-weight: 400;\">Space BUT in the meantime this week\'s message is…..</span>\n\n&nbsp;\n\n<strong>Take risks </strong>\n\n<strong>Dare to dream</strong>\n\n<strong>Have faith in karma </strong>\n\n<strong>Treat every single person you meet like they could change your life forever  </strong>\n\n<strong>AND </strong>\n\n<strong>Do this knowing you could also change theirs </strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WATCH THIS SPACE </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I want to share this journey with you, so make sure you are following us on <a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a> and <a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a> and I\'ll continue to share progress reports of how the space is looking.</span>\n\nhttps://www.facebook.com/biomechanicseducation/videos/657974667938012/\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The celebration continues - remember ….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here at Biomechanics Education, we are SO EXCITED  to be celebrating our <strong>5th Anniversary! </strong></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a way of saying thank you for your interest in our passion to educate the nation in pain free movement we have a special offer that we have never done before.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You are all invited to grab your chance to celebrate with us in 2019! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So any </span><b><i>full Diploma in Biomechanics Coaching</i></b><span style=\"font-weight: 400;\"> place secured </span><b><i>before November 30th </i></b><span style=\"font-weight: 400;\">will get not 1 free gift 1, not 2 free gifts but </span><b><i>5 FREE gifts</i></b><span style=\"font-weight: 400;\"> in celebration of our 5yr milestone. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Who’s in? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s super simple call </span>\n\n<b><i>Rachel </i></b><b><i>07976933113</i></b>\n\n<span style=\"font-weight: 400;\">Or </span>\n\n<b><i>Robyn </i></b><b><i>07507 625138</i></b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">State </span><b><i>\"I Want To Celebrate With You!\"</i></b><span style=\"font-weight: 400;\"> &amp; once your place has been secured we will reserve your 5 free gifts for you to collect upon you arrival to the course! </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">SSSHHHHHHH</span></i><span style=\"font-weight: 400;\"> Bonus secret offer - during the call if you also state “</span><b><i>THE REASON I WANT TO BE A BIOMECHANICS COACH IS.....”</i></b><span style=\"font-weight: 400;\"> then tell us your vision you will also get an extra bonus secret offer!  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This CRAZY HAPPY offer starts right NOW, so pick up your phone and call us now!</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">P.S Hurry we may run out, the phone already ringing!!!</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move freely,</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel  </span>\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>\n&nbsp;\n\n&nbsp;','Dare To Dream - The Next Steps In The Biomechanics Education Story - The Academy','','draft','closed','closed','','dare-to-dream-the-next-steps-in-the-biomechanics-education-story-the-academy','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=10018',0,'post','',0),(10053,0,'2018-11-19 10:47:20','2018-11-19 10:47:20','','Biomechanics Education Academy - Dare To Dream','','inherit','closed','closed','','biomechanics-education-academy-dare-to-dream','','','2018-11-19 10:47:20','2018-11-19 10:47:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/11/Biomechanics-Education-Academy-Dare-To-Dream-1.png',0,'attachment','image/png',0),(10090,3,'2018-11-26 20:49:51','2018-11-26 20:49:51','<span style=\"font-weight: 400;\">Having booked my place on this course some time ago I was certainly ready and looking forward to being a learner again.</span>\n\n<span style=\"font-weight: 400;\">Brendan Chaplin’s L4 S&amp;C course had been on my radar for some time since he had done the Biomechanics Coach Diploma several years ago.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The portal access prior to the face to face weekend gave video footage of previous face to face days which would be helpful for people wanting to know what to expect. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Mostly I was looking forward to being immersed in a subject I love and I arrived in Leeds far too early 7:20am, the gym didn’t even open until 8am!!</span>\n\n<span style=\"font-weight: 400;\">So McD’s hot chocolate it was then …</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Clearly I wasn’t the only keeno as when I walked back to Firehouse Fitness there was another eager character waiting for the place to open. Martin and I introduced ourselves as we waited.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firehouse Fitness is a great gym and clearly very popular but they still accommodated us nicely. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As we gathered in reception it was really unexpected but made my day to find that our tutor was Stuart Aimer, whom I had previously met at the Elite Performance Institute S&amp;C Course at Brunel University some time ago! He facilitated the 9 of us with an introduction and then we got practical pretty much straight away - brilliant- just what I like!</span>\n\n&nbsp;\n<h2>Day 1 Of The Strength &amp; Conditioning Level 4 Course - Movement Assessments, Warm Up &amp; The Snatch</h2>\n<span style=\"font-weight: 400;\">Day 1 with my new weekend buddies was assessments and the R.A.M.P warm up.</span>\n\n<span style=\"font-weight: 400;\">This was where I imagined the intrinsic biomechanics tests would fit perfectly since their roots are in elite sport from 30yrs ago. So I imagined programming 4 sign, spine mobility and nerve mobilisations in here for my case study when I get started.</span>\n\n&nbsp;\n\nStuart took us through ideas for preparation, into drills and discussions around the purpose of each phase to clarify understanding.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone was on the same level and Stuart managed the group really well without anyone being made to feel uncomfortable and the perfect level of humour and fun was felt all weekend.</span>\n\n&nbsp;\n\nIt was fantastic to be a learner again for many reasons but importantly as a teacher it gives me the opportunity to be reminded of what my own learners may experience during my workshops.\n\n&nbsp;\n\nThe discussions that twist and turn as each of us questioned Stuart to better understand the concepts. The frustration and confusion until the penny drops and the excitement as we realised the reason we are each here and how we will apply these skills into our own businesses.\n\n&nbsp;\n\nThe discomfort of having our imagination stretched is something we should all learn to embrace and the teacher should support us through this which is exactly what Stuart did for us.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The afternoon was snatch down practice and most were relatively new to this so I worked with Emma and Emily on the women’s bar and we coached each other after Stuarts demos of each phase.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone had a go and there was a huge variety of movement ability but it didn’t matter as no pressure was put on the group.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By the end of the day we were all ready for our beds...well I know I was anyway!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However I was super excited to start reading my L4 S&amp;C handbook as I am keen to learn more about periodisation specifically.</span>\n\n<span style=\"font-weight: 400;\">Wow I am really impressed at the level and the amount of content within the learner manual. Much more than I had expected and a lot of detail about how to structure a periodised S&amp;C training plan. </span>\n\n&nbsp;\n<h2>Day 2 Of The Strength &amp; Conditioning Level 4 Course - Speed &amp; Agility And The Clean &amp; Jerk</h2>\n<span style=\"font-weight: 400;\">Day 2 we worked on speed and agility drills and how to build up gradually ready for team sports and/or speed work.</span>\n\n<span style=\"font-weight: 400;\">We each coached each other and after lunch, we got into groups for the clean and jerk session. Again top down.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The whole environment was friendly and accommodating and Stuart managed the group really well with a calm and approachable teaching manner. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Driving home I felt excited about the application of the periodisation aspect for my case study. In fact, I have 3 even though I only need to do one over 8 weeks. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A powerlifter</span>\n\n<span style=\"font-weight: 400;\">A rugby player </span>\n\n<span style=\"font-weight: 400;\">An olympic lifter</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I have arranged the first assessment and am looking forward to logging into the online portal for the extra tuition material SCE provides. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, my head space at the moment only has room for the brand new Biomechanics Education Academy!!</span>\n\n<span style=\"font-weight: 400;\">Photos and video coming next time!!</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','My Experience Of Being A Level 4 Strength & Conditioning Learner - Day 1 & 2','','draft','closed','closed','','my-experience-of-being-a-level-4-strength-conditioning-learner-day-1-2','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=10090',0,'post','',0),(10130,0,'2018-11-26 20:43:17','2018-11-26 20:43:17','','My Experience Of Being A Level 4 Strength & Conditioning Learner - Day 1 & 2','','inherit','closed','closed','','my-experience-of-being-a-level-4-strength-conditioning-learner-day-1-2-2','','','2018-11-26 20:43:17','2018-11-26 20:43:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/11/My-Experience-Of-Being-A-Level-4-Strength-Conditioning-Learner-Day-1-2-1.jpg',0,'attachment','image/jpeg',0),(10370,3,'2018-12-26 22:15:39','2018-12-26 22:15:39','<!-- wp:paragraph -->\n<p>Well if good news comes in one huge go this is proof of it! First we launch the new Biomechanics Education Academy, our centre of excellence if you will, our new home. If you haven’t seen the pictures.. Where have you been?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And now, finally, after a lot of hard work behind the scenes, we have our brand new Level 4 qualification. How exciting is that!?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We are going from strength to strength and each new piece of news we keep delivering is evidence of that! And so I wanted to take a moment to tell you about this new qualification we can offer and how it\'s going to help you as a Biomechanics Coach, personal trainer, pilates instructor, or sports therapist.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What Does This Mean?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well anyone who joins our academy for the full diploma gains a dual certificate!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You get your Biomechanics Coach Diploma as normal, which is already awesome, but now you will ALSO receive your Level 4 Lower Back Pain Specialist qualification. WHHHAAAAATTTT! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How cool is that!?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What Does A Level 4 Qualification Mean To You As A Trainer/Coach?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It means a few things…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol>\n<li>It’s yet another way to stand out from the crowd</li>\n<li>It makes you a specialist - and specialists get paid more than generalists.</li>\n<li>Your confidence will increase in terms of the issues you face with your clients.</li>\n<li>Job opportunities should increase due to demonstrating a commitment to your education.</li>\n<li>Increased language skills in terms of communication with other professionals, physios, consultants etc</li>\n<li>Improved service offering in terms of the diversity of you tool box</li>\n<li>An understanding of what pain is and isn’t.</li>\n<li>How to manage clients that are in pain.  </li>\n<li>An understanding of periodisation principles in terms of preparation and (performance) conditioning.</li>\n</ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What Do We Cover In The Level 4 Low Back Pain Qualification?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The aim of this qualification is to provide the learner with the appropriate knowledge and skills to design, deliver, monitor and evaluate structured, individualised physical activity programmes for adults with low back pain, in accordance with current evidence-based guidelines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learners will cover: </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Knowledge and understanding relating to the Level 4 Low Back Pain Qualification: </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul>\n<li>epidemiology of low back pain</li>\n<li>risks and causative factors involved in the development of low back pain</li>\n<li>national guidelines for the treatment and management of low back pain</li>\n<li>contraindications and psychosocial considerations when planning physical activities for the client with low back pain (risk stratification)</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Skills relating to the qualification: </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul>\n<li>subjective and objective methods to collect sufficient  information to plan safe and effective physical activity programmes for individuals with low back pain</li>\n<li>how to select safe and effective physical activities which are specific to the client’s health status, risk stratification, needs and abilities</li>\n<li>the effective use of layering / layered cueing within progressive physical activity programmes for individuals with low back pain</li>\n<li>a range of validated methods used to monitor review and adapt  physical activity programmes for individuals with low back pain</li>\n<li>advice covering lifestyle, homecare, exercise, which is suitable for the individual with low back pain</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Learner prerequisites</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Registration status of full Level 3 Exercise Referral Instructor on the Register of Exercise Professionals (REPs), or either of:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>a)    Registration at Level 4 prior to September 2011 plus achievement of a Level 3 fitness qualification</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>b)    Achievement of a Level 4 prior to September 2011 plus achievement of a Level 3 fitness qualification</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>150 hours of relevant professional practice at Level 3 in designing, delivering, monitoring, adapting and tailoring exercise programmes for individuals gained within the previous two years and at least six months experience since qualification (to be evidenced in a CV and reference letter).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Note: Learners are required to complete the online Professional Practice unit via the members area of the REPs website (free to complete) where the learner holds an NVQ exercise referral qualification on the QCF. This unit is embedded in the QCF exercise referral qualifications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>short/long answer paper</li>\n<li>worksheets</li>\n<li>case study (programme design and review)</li>\n<li>observed instruction session</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>SPECIAL OFFER £2397inc - We Are Giving The Level 4 Low Back Pain Qualification Away</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Perhaps I am still feeling a bit crazy and excited, but I wanted to open up a special offer to YOU.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So if you have been thinking about joining our academy, or if you were thinking about doing a Level 4 qualification this is for YOU.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you book onto our Biomechanics Coach Diploma this side of Christmas, I will give you the Level 4 Lower Back Pain qualification as a BONUS - YES completely free of charge!!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(RRP £500)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*But please note to gain the Level 4 is a *GP Referral Qualification that you should gain in advance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://biomechanicseducation.clickfunnels.com/l4-lower-back-offer\"><strong><em>Want to chat with one of the team about our new Level 4 Lower Back Pain Qualification? Then just click here and fill in your details!</em></strong></a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Why Attend?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Something we feel very passionately about it face to face education and that includes passing on information that is easy to apply into a training session with your clients straight after the workshops. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yes we will have in depth discussions but even at this L4 it has to be simple to apply into your sessions, right? Otherwise what’s the point in gaining knowledge!?!?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What we will do across the 5, 2 day face to face workshops is give you all of the practical hands on skills you need to discover where your clients ‘issues’ are coming from and what to do about it.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have always included far more than the Level 4 Low Back Pain qualifications content but now you actually get to call yourself a low back pain specialist, an elite PT, a Biomechanics Coach or even a <strong>Level 4 Low Back Pain Specialist Biomechanics Coach</strong>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Along with this you will also get access to the most amazing community of practitioners from ALL backgrounds to network, troubleshoot and share ideas, thoughts or dilemmas either via online forums and/or at our regular face to face IBA workshops.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We don’t simply educate, we pride ourselves on the personal touch and the level of support available to all of our learners from not only us but also the IBA and the community.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now there is still time for you to grab not only the 2018 prices for our 2019 workshops but also:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You will get the Biomechanics Coach starter kit goodie bag worth £80!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Foam Roller</li>\n<li>Lacrosse Ball</li>\n<li>Resistance Band</li>\n<li>Anatomy Book</li>\n<li>T Shirt</li>\n<li>iMoveFreely Drawstring Bag</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2><strong>&gt;&gt; <a href=\"https://biomechanicseducation.clickfunnels.com/l4-lower-back-offer\">CLICK HERE TO REQUEST MORE INFORMATION &amp; TO CHAT WITH ONE OF THE TEAM ABOUT THE LEVEL 4 LOW BACK PAIN QUALIFICATION! &lt;&lt;</a></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->','VTCT Level 4 Certificate in Exercise for Management of Low Back Pain with Biomechanics Coaching Is Here!','','draft','closed','closed','','level-4-lower-back-pain-specialist-diploma-in-biomechanics-coaching','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=10370',0,'post','',0),(10372,0,'2018-12-10 14:57:55','2018-12-10 14:57:55','','Level 4 Low Back Pain Qualification for Personal Trainers','','inherit','closed','closed','','level-4-low-back-pain-qualification-for-personal-trainers','','','2018-12-10 14:57:55','2018-12-10 14:57:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/12/Level-4-Low-Back-Pain-Qualification-for-Personal-Trainers-1.png',0,'attachment','image/png',0),(10442,3,'2018-12-17 17:53:39','2018-12-17 17:53:39','<!-- wp:paragraph -->\n<p>Growing up I was taught to be law fearing and to do right by others, to stay safe and not to take risks.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However I was also taught to live life to the fullest, recognise life is short and that stocks and shares can be fruitful.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What on earth am I talking about this week?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Taking Risks</strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>What is a risk? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>a situation involving exposure to danger.</li><li><em><strong>possibility, chance, probability, likelihood, threat, fear, prospect</strong></em></li><li>expose (someone or something valued) to danger, harm, or loss.</li><li>endanger, put at risk, take a chance with, put in jeopardy, hazard, <em><strong>gamble, bet, wager, chance, venture</strong></em></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The risk I am talking about is not the kind of risk that gets you arrested or harmed. See the definitions of risk taken from the internet defining the meaning of risk and the bold italic words could mean something quite different to the ones in normal text.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So What Do I Mean Exactly?</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Think about a time when you took a risk…<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...often we end up thinking of our childhood, when we had no fear and we maybe sped downhill on our trike, with the wind in our faces and squealing away blissfully unaware of the hazardous traffic flying past the bottom of the hill. How did that feel?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now try to remember the feeling of a risk you took that also had the feeling of fear attached to it…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...this is more likely to be when you were older and wiser like a roller coaster ride. When you knew that getting on that ride would deliberately increase fear in you due to the movements, the heights and the speed. How did that feel? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Taking Risks Can Feel Scary AND Fantastically Stimulating</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With the arrival of 2019 we generally start to (or at least hopefully) ask ourselves questions about where our life is going having maybe reflected upon 2018, right!?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is a healthy process of understanding our goals, how far away we are from them, how much closer we are to them than we were and maybe we can then analyse the gap between here and now and that end goal.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s like what we do with our clients programming. They seek our help in achieving a goal, we ask questions and assess their body, mental state, general lifestyle etc and calculate those SMART goals to help them understand the gap. We do a gap analysis.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So What?</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well this can also be applied to our life goals, desires and those big dreams. Without taking risks I know I certainly would not be where I am right now. Yet we get so comfortable and lost in our day to day, million miles an hour lifestyles that we can forget about throwing off our clothes and dancing in the rain like no one is watching (hopefully they weren\'t anyway!!)<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why? </strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Without risks are we really being true to ourselves?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ok I guess some people are happy to ‘go with the flow’ but I KNOW many of us have dreams of a different life, one with more TIME, less rushing around, less stress, maybe less work, more freedom, better health and certainly more sleep - am I right?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>So How Does All Of This Relate To Taking Risks?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well look risks don’t always have to be HIGH risk kinda risks. But the higher the risk usually means the bigger the return (particularly if you have ever studied the stocks and shares?)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let me try to give you some examples of risks I have taken that I didn’t KNOW would work out, some that didn’t work out and what they meant to me.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Bike Ride Disaster</strong> - yes that was me aged 11yrs flying down the hill on my bike. I flew splayed across the centre of the road with my mates and siblings shouting and running towards me. Much worse than the near death and bloody cuts over my body...I had torn my best khaki dungarees! To this day I adore feeling the wind in my face.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Horse Riding Disaster</strong> - aged 14yrs my first experience of riding a horse resulted my being bucked off the back and feeling the draft of 2 hooves (almost in slow motion as I recall) skim upwards inches from my face. I did NOT get back on and have since never felt the urge to either.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Travelling &amp; Working Abroad</strong> - aged 21yrs I had no idea what I wanted to do with my life and had felt for much of my youth pretty unintelligent, useless and uninspired. I was in fact going down a pretty </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>damaging route that involved me seeking fun in ways that my parents would not have been proud.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then in 1991 I got a phone call that required me responding with a decision that either I wanted to take a big risk or simply stay in this drudgery of low self esteem and confidence. With my parents encouragement I took the leap and went away for 3 months to work a cabaret dancer in Greece. This risk was profound in changing my entire outlook, perception of what I was capable of and self esteem. So much so I came home some 6 years later having travelled to live and work in Tokyo and Hong Kong too.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Buying A House</strong> - returning from my travels I had saved enough for a deposit for a house (back then £8k was enough and my house was only £50k!!). Once again this was a huge risk and commitment for me in terms of settling down with a huge investment and promise to me mortgage lender that I would pay them each month. Doing this alone felt far more risky than I imagined it would be with a partner also contributing 50% of the promise and funds. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Joining Martin </strong>- in 2006 one my gyms members approached me to help him develop some education from the 25yrs of research he had done. I took a risk and said “yeah, sure”...totally unaware at the time how much this gamble would pay off. Honestly I had no idea what he was talking about in the beginning, I just turned up, took part in the bits I understood and found myself investing a lot of time into learning more to uphold this man\'s perception of what he seemed to think I was capable of...which was waaaaaaaay beyond what I believed I was capable of.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Choosing To Close A Company</strong> - this was probably the single hardest risk decision I have had to make in my entire life. It tested my character and belief in doing the right thing. The decision to take this risk of closing a company we had committed blood, sweat and tears to for 7 years meant I was choosing to potentially lose everything I owned. The home I had taken a risk to buy and the job I had joined Martin to do that I loved. However the risk meant I maintained my integrity for any future relations I had in the industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This was also one of the best decisions I have ever made for all it taught me. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Choosing To Set Up Biomechanics Education</strong> - this decision was also a huge risk. It took me several weeks to make but in my gut I knew I didn’t want to do anything else AND I also knew I had learnt some big valuable lessons from the previous business closure. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You never fail unless you give up.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Investing Into The Biomechanics Education Academy</strong> - Last month this opportunity appeared and once I had seen the venue, I knew there was no option but to take the risk.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For the life of my work in intrinsic biomechanics I have dreamed of a venue. Over the last 9 years I have probably looked at around 12 different locations, none of which were appropriate for one reason or another. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then a brand new gym opened in my village literally 5 minutes walk from my house. A gym exactly like one I would choose to train in. The owner, Matt, is also a super nice guy who took a risk in setting up a gym in a small village with 2 other gyms. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>He invited me to join his vision and so the Biomechanics Education Academy was born!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What’s The Point?</strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Behind the risk taking is passion, dreams and drive. Yes there is fear and anxiety at times to but this risk taking always brings me back to what is my life about?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The fear I feel when things don’t go to plan or I take another risk drives me to improve all I do. I also remind myself of what my mum used to say to the painfully shy, low self esteemed little girl I used to be, as I was about to go onto the dance floor for a dancing competition….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>”<em>What’s the worst that can happen..? Just smile and enjoy yourself”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This has stayed with me and comes to mind each time I chose to gamble. I have got comfortable with losing everything because when I was living off cheap food and no luxuries to keep my house, I realised my quality of life did not change. I actually became extremely productive, inventive and imaginative.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The worst times gave me access to the best times and some self exploration of my capacity for enduring certain eventualities. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So this xmas why not consider taking some risks in 2019?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>….I certainly am!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What You Can Do To Set Yourself Up For Success In 2019?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>TASK 1:</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ok grab a pen and paper, you could open a word document or open your phone to ‘notes’ but I am a big believer in the act of physically writing this kind of thing down. In fact grab your moleskine notebook!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>First write down what you feel you did really well in 2018, the successes you experienced and where you felt you achieved things planned or unplanned. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s important we acknowledge success and I learnt this when I was setting up Biomechanics Education in 2014 because I wrote down my goals in my moleskine goas book and added to it for months. Then work/life took over and my moleskine notebook was left aside. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When I came across it in 2016 having felt I needed to make some goals again, I read back and was surprised to see I had in fact achieved everything I had written down. I would not have been able to acknowledge that had I not written the goals down so precisely. It gave me a HUGE sense of success at a time when my confidence had dropped again and I felt things weren’t going as I had hoped. This massively boosted my drive and confidence to do the same again.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Had I not written those precise goals down I wouldn’t have had the opportunity to enjoy the successes that had occured! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>TASK 2:</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now write down short, medium and long term goals with dates, deadlines and absolute clarity.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This doesn’t need to only relate to work, it could be taking risks like last minute travel, turning up on a long lost persons door step, investing in something, approaching someone or a company to make an offer or ask &nbsp;for their support, changing from the office desk job to your dream job of being a self employed manual therapist. You might even choose to buy some stocks and shares! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>TASK 3:</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Convert each of the goals into a list of jobs with deadlines that would enable you to take the leap.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>TASK 4:</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Add these deadlines to your calendar and then be committed!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>TASK 5:</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>DO IT!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>MONITOR IT!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>HOLD YOURSELF ACCOUNTABLE!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Happy Holidays Juicefans!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator is-style-wide\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noreferrer noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','When You Take Risks & Push Yourself To Grow','','draft','closed','closed','','when-you-take-risks-push-yourself-to-grow','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=10442',0,'post','',0),(10443,0,'2018-12-17 17:37:11','2018-12-17 17:37:11','','Taking Risks... Take That Leap Of Faith','','inherit','closed','closed','','taking-risks-take-that-leap-of-faith','','','2018-12-17 17:37:11','2018-12-17 17:37:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/12/Taking-Risks.-Take-That-Leap-Of-Faith.png',0,'attachment','image/png',0),(10762,3,'2019-01-07 15:02:19','2019-01-07 15:02:19','<!-- wp:paragraph -->\n<p>More and more I am hearing weird statements from people about their ‘diagnosis’. Now I am very aware that a diagnosis can be open to interpretation by the client, who may embellish what their practitioner has explained. However this is surely a very good reason for much consideration to be applied to the words we use when explaining to our clients what we have found, or we suspect, from our assessment of their bodies. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The last thing we want to hear from a client is….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“Oh my god I have an ‘anterior tilt’ and guess what else they said I have…..lordosis!!”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These kind of statements are becoming rife in our industry and they don\'t sit well with the way I understand human movement. This is because I feel they imply that we should all have a certain level at our pelvis or the same degree of curvature in our spines.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No I\'m not for a minute suggesting that there are no ‘excessive’ degrees of tilt or curves in the spine the problem is how we measure these things. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So the aim of this blog is to challenge some of these statements.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Methods like postural assessment have been a means of benchmarking and understanding how somebody stands. This is fine as a simple start point if you like. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What Does Postural Assessment Actually Tell Us? </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Or maybe more importantly why don’t we start with…..what it doesn’t tell us!?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It doesn\'t tell us WHY someone is in the position they’re in, nor WHY somebody might be in an anterior tilt or be over lordotic or hyperlordotic. So OK yes we need to take norms, BUT most importantly we need to take the individual in front of us.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>They May Misunderstand Us</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Also we must be VERY careful about the language we use to explain to a client, or each other, about the positions we are standing in or the degrees of spinal curvature we are presenting with.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For some people a slight anterior tilt maybe perfectly normal and some people may present with a ‘J’ shaped spine that is pretty flat but has a very slight curve just at the bottom and then there are others that have a very ‘S’ shaped spine. These are all normal presentations for those individuals.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>So What Exactly Am I Saying?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>I\'m saying an anterior tilt is not a diagnosis, hopefully everyone\'s pelvis will tilt anteriorly and posteriorly for that matter! An anterior tilt is not in itself a problem.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The question is how well does that individual move and function from the inside, rather than how good do they look on the outside.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also are they symptomatic? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If they aren’t symptomatic it maybe prudent to NOT attempt to alter ‘posture’ but maintain a focus on nutritious quality movement, right?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Aesthetics or…..What?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now of course how we look on the outside can be an indicator of how well we function on the inside. But how do we measure things or where can we find an evidence based approach rather than simply guessing?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We should always be mindful about what we are using as tools to dictate which exercises our clients need to prepare their bodies for movement.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How do YOU assess your clients?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What are your benchmarks? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Are they evidence based?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How objective are they?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Are there some evidence based tests out there that can help us understand why our client is presenting with poor movement capacity and/or symptoms?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Subjective or Objective?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Postural assessment alone is still pretty subjective. For example if you imagine one shoulder sitting higher than the other the questions would be <em>“is that the upper trap or median nerve elevating the shoulder?</em>” OR <em>“Could it be the QL on the opposite side is tilting the body?</em>” OR “<em>Is there a functional asymmetry at the pelvis creating a tilt there?</em>”<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each of these can result in the same visual or postural presentation.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Those tilts or curvatures of the spine may or may not help us understand how to improve their movement or even symptoms.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So having a benchmark is good and a visual assessment our clients is kind of all we can do. However it’s more about their function and movement than the aesthetics or alignments at bony prominences surely!?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We MUST be careful about what we\'re saying to our clients and be mindful of the language we use because what we don\'t want is for them to be leaving our practice thinking that an anterior tilt is a problem.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The assumptions that may go along with that ‘diagnosis’ in terms of what they do about could compound the issue.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So What?</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The solution is to make sure we are considering precisely which language to use with each client. It may even differ from one to another.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Taking the critical thinking approach….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...do I explain this clearly?<br>...do I make sure they understand what this means?<br>...do I clarify what I am telling them?<br>...do I ensure they don’t misinterpret what I am saying?<br>...will this affect my client?<br>...will they interpret this?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...do I need to say?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...should I not say?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...do they need to know to benefit?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is most/least important?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is another perspective?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is the best way to explain this?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...will they do with this information?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>…do they need to know this?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...do I need them to hear that?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...are they here?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is this relevant? Or not?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>When?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...can I tell them that?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...should I refer them?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...should I use a resource to explain things instead?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is this acceptable/unacceptable?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Where?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is best to send them?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...can we get more information?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is there a need to say that?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...will that take us?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Who?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is best placed to tell them this?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...does this benefit?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...makes that decision?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...who is affected?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you take your time and really consider what you are saying and how you are saying it and to whom, it should enable you to provide enough of the relevant information they need to improve.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Telling a client they have an anterior tilt WITHOUT explaining it can lead to misinterpretation and the belief that this is a bad thing, when in fact it could be perfectly normal for them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Reassurance of the parts of their bodies that move well is just as important as giving a ‘diagnosis’ BUT let’s stay technically accurate please!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So remember, an anterior tilt is a movement at the pelvis NOT a medical condition!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2 id=\"mce_7\"><strong>&gt;&gt; <a href=\"https://biomechanicseducation.clickfunnels.com/l4-lower-back-offer\">CLICK HERE TO REQUEST MORE INFORMATION &amp; TO CHAT WITH ONE OF THE TEAM ABOUT THE LEVEL 4 LOW BACK PAIN QUALIFICATION!&nbsp;&lt;&lt;</a></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":7922,\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image\"><a href=\"https://biomechanicseducation.clickfunnels.com/l4-lower-back-offer\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure>\n<!-- /wp:image -->','AN ‘ANTERIOR TILT’ Of The Pelvis IS NOT A DIAGNOSIS!','','draft','closed','closed','','an-anterior-tilt-of-the-pelvis-is-not-a-diagnosis','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=10762',0,'post','',0),(10763,0,'2019-01-07 14:39:30','2019-01-07 14:39:30','','AN ‘ANTERIOR TILT’ Of The Pelvis IS NOT A DIAGNOSIS!','','inherit','open','closed','','an-anterior-tilt-of-the-pelvis-is-not-a-diagnosis-2','','','2019-01-07 14:39:30','2019-01-07 14:39:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/01/AN-‘ANTERIOR-TILT-Of-The-Pelvis-IS-NOT-A-DIAGNOSIS.png',0,'attachment','image/png',0),(10832,3,'2019-01-14 20:00:25','2019-01-14 20:00:25','<!-- wp:paragraph -->\n<p>Just spent a whole week in London on a Directors Development Programme rubbing shoulders with a real mix of professionals from all kinds of industries.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Insurance</li><li>Construction</li><li>IT</li><li>Pharmaceuticals</li><li>Education</li><li>Charity</li><li>Airport</li><li>Rugby Club</li><li>Civil servant</li><li>British Rail</li><li></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We began with discussions about our mission, vision and values. This is something I wanted to share with you because it’s actually at the very core of who Biomechanics Education is.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Our Mission&nbsp;At&nbsp;Biomechanics&nbsp;Education</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>Improving Movement Through Education</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Mission, or core purpose, remains unchanged no matter what we do but like the lettering inside a stick of rock, it’s at the very heart of all we are aiming to achieve throughout the entire company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s the legacy that we hope lives on beyond the founders.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What\'s Your Mission?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Consider WHY you do what you do, I mean really deep down, what drives you? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What is your mission? purpose? Reason for being?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you realise your true mission it should be at the core of all your decisions and can actually make choices simpler….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>….ask yourself ”<em>Does that take me closer to my mission? does that fit my purpose? Is there a better option that is more relevant to my mission?</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Our Vision&nbsp;At&nbsp;Biomechanics&nbsp;Education</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>To Become The Premium Provider Of Advanced PT Education While Bridging The Gap Between Exercise, Therapy &amp; Medicine.</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our vision is the aspiration of how we do this via our mid &amp; long term goals. It guides our decisions when choosing our team, our partners, events, our academy content and our bigger picture ideas.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Whats Your Vision?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>How will you show aspiration in your mid long term goals? What does your vision hold? What reputation would you like to be known for? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This can also enable you to plan and &nbsp;strategise about what direction to take with your education, business structure, commercial offering etc.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Our Core Values </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>Integrity</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Communication</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Honesty</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Community</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Support</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Core Values are our philosophies, principles and the way we conduct ourselves as a business throughout the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Your Core Values?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>What is at the heart of your values in your business? Why do people pick you? Why do you want them to choose you? How would you like people to describe you?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WAIT!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I know what you might be thinking!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“This is not me, I am just a sole trader, small business, only me...why would I need a mission, vision etc?”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well it goes deeper than simply a business decision my lovely Juicefans!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This can be give you the framework to finding your ELEMENT! Remember Sir Ken Robinson? &lt;&lt;LINK TO THAT BLOG&gt;&gt;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>The 5 WHYS</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Another technique you could try is The 5 WHYs. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Consider what you do.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Start with <em>WHY do I do what I do?</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>WHY is that?</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Continue on asking yourself why for 5 more times, and see where your answers take you.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What Else Did We Discuss On The Course?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>LOADS!! But I will have to drip feed it to you as I process it all!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It was part of a full PGcert at Chichester University so a huge amount of content on this ‘accelerator’ module. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However to add to this Juicemail theme I would like to add a…..<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Book Recommendation Alert!</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em><a href=\"https://www.amazon.co.uk/Start-Why-Leaders-Inspire-Everyone/dp/0241958229/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1547496831&amp;sr=1-1&amp;keywords=start+with+why\">Start With Why</a></em><a href=\"https://www.amazon.co.uk/Start-Why-Leaders-Inspire-Everyone/dp/0241958229/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1547496831&amp;sr=1-1&amp;keywords=start+with+why\"> by Simon Sinek</a><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":10835,\"width\":295,\"height\":445} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Start-With-Why-Simon-Sinek-680x1024.jpg\" alt=\"\" class=\"wp-image-10835\" width=\"295\" height=\"445\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>I read this book some time ago and have also watched several of Sinek’s videos including a great TED talk - How Great Leaders Inspire Action<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://youtu.be/qp0HIF3SfI4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://youtu.be/qp0HIF3SfI4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Sinek talks about the fact that most businesses sell the WHAT &amp; the HOW</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Few sell the WHY….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WHAT- is the service you provide</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>HOW - is the platform or medium with which you deliver it but..</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WHY - that’s your <em>purpose OR mission</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your purpose will sell what you do for you. People will feel a connection with you, be drawn to you and follow you. People buy based on emotion. They could buy it from any other trainer, coach or therapist. WHY should, or would, they buy from YOU?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WHY? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>If You feel Stuck, Fed Up Or Uninspired...</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...remember those words from Tony Robbins...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“If you do what you’ve always done, you’ll get what you’ve always gotten”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WHY not take some time to work through your WHY, your MISSION?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 id=\"mce_7\"><strong>&gt;&gt; <a href=\"https://biomechanicseducation.clickfunnels.com/l4-lower-back-offer\">CLICK HERE TO REQUEST MORE INFORMATION &amp; TO CHAT WITH ONE OF THE TEAM ABOUT THE LEVEL 4 LOW BACK PAIN QUALIFICATION!&nbsp;&lt;&lt;</a></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":7922,\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image\"><a href=\"https://biomechanicseducation.clickfunnels.com/l4-lower-back-offer\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','Always, Always Start With Why','','draft','closed','closed','','always-always-start-with-why','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=10832',0,'post','',0),(10835,0,'2019-01-14 18:56:51','2019-01-14 18:56:51','','Start With Why - Simon Sinek','','inherit','open','closed','','start-with-why-simon-sinek','','','2019-01-14 18:56:51','2019-01-14 18:56:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Start-With-Why-Simon-Sinek.jpg',0,'attachment','image/jpeg',0),(10836,0,'2019-01-14 19:49:32','2019-01-14 19:49:32','','','','inherit','open','closed','','always-always-start-with-why-2','','','2019-01-14 19:49:32','2019-01-14 19:49:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png',0,'attachment','image/png',0),(10929,3,'2019-01-21 21:27:57','2019-01-21 21:27:57','<!-- wp:paragraph -->\n<p><strong>Chair Rebellion Is Back!</strong>Are YOU A Chair Rebel?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The mission continues Juicefans….JOIN US!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Improving Movement Through Education</em> <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We like to explore and share ways we can all Move Well then Move More and this weeks Juicemail is no different. We will be challenging our <em>lazy</em> culture, offering some possible reasons why and also ideas on how to nourish yours and your clients, movement capacity.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So to begin, those of you that have followed me for a while may remember the <em>Beyond 90 Challenge</em> chair rebellion. <a href=\"https://www.biomechanicseducation.com/are-you-up-to-the-beyond-90-challenge/\">If you want to see the original post, check it out here.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here are just a couple of people that joined in...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":10931} -->\n<figure class=\"wp-block-image\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Chair-Rebel-3-Biomechanics-Education-630x1024.jpg\" alt=\"\" class=\"wp-image-10931\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":10932} -->\n<figure class=\"wp-block-image\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Chair-Rebel-1-Biomechanics-Education-768x1024.jpg\" alt=\"\" class=\"wp-image-10932\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>The idea is to challenge the <em>lazy</em> culture that seems to frown upon those of us who choose NOT to sit even when a chair is available and everyone else is sitting.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the Beyond 90 Challenge I spent several weeks experimenting with NOT sitting during my days in a deliberate attempt to see how people responded and of course to nourish my movement!<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What About Working At A Desk?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So the point of this challenge is to reduce the amount of time we spend still, not moving or sedentary. Now of course we must take into account the 3 R’s - REST, RELAX &amp; RECUPERATE. However too many of us have taken this to extreme lengths in terms of using our bodies enough to nourish them and keep the joints and tissues healthy and injury and pain free.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example..<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While I do have a laptop stand you don’t need one as you can simply pile some books on top of your desk and place your laptop or keyboard on top for a period of each day/hour or session. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The key is to keep moving, try not to be too static for too long since we are designed to move! If we don’t move enough or regularly the body (being a master of compensation) will try to adapt to its environment and reserve energy by stiffening up mobile areas to reduce energy usage. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So moving a little bit more each day also means you will be burning more NEAT calories that most of us have also forgotten about.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Non Exercise Activity Thermogenesis (NEAT) </strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is the energy you burn outside of your exercise calories and can make a huge contribution to nourishing your movement.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Park as far as possible from the shop, office etc</li><li>Walk up the stairs instead of using the escalator lift</li><li>Arrange your office equipment so that things you use regularly are a walk away</li><li>Offer to help with physical tasks</li><li>Don’t fret about forgetting something upstairs, clap for joy at another excuse to run up the stairs</li><li>Invest in a FitBit or open up your iPhone health app to compare steps day to day</li><li>Enjoy physical chores because it feeds your movement profile</li><li>Practice your iMoveFreely techniques at your desk</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>So I challenge YOU to rebel against the chair. Not only that….challenge your clients, peers and colleagues! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Being a Chair Rebel will support their training goals and in fact means we/they are more likely to lose weight, move better and feel better. It promotes a healthy attitude towards movement and creates awareness of how little many of us move. Sitting should be the alternative not the norm. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Be A Fidget Pants!</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In my experience recently of 5 days standing at the back of a course, while everyone else sat, meant they asked me about why I was standing. This gave me the opportunity to encourage yet more chair rebellion. Several of my peers joining me at the back!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Mostly people are up for the challenge and everyone secretly admires a Chair Rebel when they understand the cause. Even if initially they think you are a bit weird. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Chair Rebellion Project</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So the word is spreading and<strong> </strong>having received many message from Chair Rebels around the UK, it’s clear the project is expanding.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One friend, Jennifer, messaged me on Facebook to express her frustration about the sitting epidemic at schools where children are told ‘<em>be quiet and sit still”.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>She asked if something could be done towards improving this….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WOW, things are getting serious, but ya know what, shes right!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And I LOVE the idea of encouraging and supporting schools in educating teachers/children how to nourish their movement profiles while maintaining the school curriculum and focus. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It has been shown that frequent bursts of energy and being in a heightened state of ecstacy create focus and enhance learning (Tony Robbins <em>Power From Within</em>, 2018). So shouldn’t we be doing this with the kids?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>School\'s On The Move </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If we look at the most modern education leaders in the world, Finland, they are encouraging more movement at school. <a href=\"https://liikkuvakoulu.fi/english\">Click here and check this out.</a><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Shouldn’t we be doing the same? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have children or friends with children?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How do you feel about this?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Would YOU like to join the chair rebellion?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How will you contribute?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Maybe we should be getting them to jump up and down prior to the session, or stand up telling jokes to each other in the class to stimulate their learning ‘state’ as well as their movement?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What do YOU think?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Send in your photos please and lets start a revolution!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Standing, when everyone else is sitting?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Waiting for the bus</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Waiting at the doctors</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While at work</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On a train</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In a meeting<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT WAIT!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let’s just quickly look again at that all important question….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>SO WHAT?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>The Technical Argument For Chair Rebellion</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Any ‘fixed’ position for long periods is not natural for our bodies. Humans are physically designed to move and so it isn’t just the act of sitting that results in compensations and adaptations that create aches and niggles. Standing for long periods can also starve us of movement nutrition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However sitting has to be the most prevalent and here we will explore why.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Sitting Compensations </strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When sitting for long periods generally the lower limb joints will be ‘fixed’ into hip flexion, knee flexion and ankle dorsiflexion with the pelvis tilted posteriorly so the lumbar spine is also flexed. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The sitting/sedentary lifestyle has been linked to Low Grade Low Back Pain or Non Specific Low Back Pain.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are simple techniques we can add into our daily routines like moving more but also exercise programmes like iMoveFreely that can even be done while sitting at your desk, or as a warm up to improve your movement along with those, low grade aches and niggles. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dare to be a Chair Rebel - Start sending in your PHOTOS Please, load them up to Instagram and use the hashtags #ChairRebel and #Beyond90</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->','Rebel Against The Chair - How Avoiding Sitting Can Dramatically Improve Our Health','','draft','closed','closed','','rebel-against-the-chair-how-standing-can-dramatically-improve-our-health','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=10929',0,'post','',0),(10930,0,'2019-01-21 20:32:24','2019-01-21 20:32:24','','Chair Rebellion - Biomechanics Education','','inherit','open','closed','','chair-rebellion-biomechanics-education','','','2019-01-21 20:32:24','2019-01-21 20:32:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Chair-Rebellion-Biomechanics-Education.png',0,'attachment','image/png',0),(10931,0,'2019-01-21 21:13:15','2019-01-21 21:13:15','','Chair Rebel 3 - Biomechanics Education','','inherit','open','closed','','chair-rebel-3-biomechanics-education','','','2019-01-21 21:13:15','2019-01-21 21:13:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Chair-Rebel-3-Biomechanics-Education.jpg',0,'attachment','image/jpeg',0),(10932,0,'2019-01-21 21:15:58','2019-01-21 21:15:58','','Chair Rebel 1 - Biomechanics Education','','inherit','open','closed','','chair-rebel-1-biomechanics-education','','','2019-01-21 21:15:58','2019-01-21 21:15:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Chair-Rebel-1-Biomechanics-Education.jpg',0,'attachment','image/jpeg',0),(11024,3,'2019-01-28 15:19:58','2019-01-28 15:19:58','<!-- wp:paragraph -->\n<p>As trainers and coaches ‘selling’ your services, whether as a sole trader or employed professional, I would bet highly that you are aiming to ACHIEVE something, right? Success measured by income, reduced hours or even simply job satisfaction for example…<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This could also cross into your personal life in terms of wanting to ACHIEVE something like maybe enter a fitness competition or travel to a certain country...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...and we ALL know our CLIENTS want to achieve SOMETHING! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is precisely our job!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So what’s the difference between grit and talent?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How might this influence what we do or how we approach it?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do we have an unconscious bias towards talent over actual achievement? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Why would we do that?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Problem</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well the problem is when we are glued to talent shows on TV or recognised for ‘talent’ at school. Also having a talent for a sport or skill doesn\'t necessarily mean we, or our client, will achieve at it. For your client to succeed they need persistence!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let’s dive a little deeper into the difference between them.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Definitions</strong> <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Talent - Skill, ability, natural aptitude</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Grit - Persistence, effort, courage, resolve strength of character </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So What? </strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We all remember the kids at school who winning a race came easy to and those who were always last. I mean who got rewarded for being last?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But what about the kids who kept on trying no matter what?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What about when they continued trying into their teens and 20’s and maybe even adulthood?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Which one were / are you?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Which one is your client?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Is it that talent gives a perception or an excuse for the rest of us to feel that well we don’t need to try because, well we will never be that ‘good’? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How many kids gave up or how many adults give up before finding out if they could actually, with a big dose of grit achieve what they set out to do?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ever thought..</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“Oh that\'s not me I\'m therefore not going to exert the same kind of effort into what I do”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We should recognise that we can learn skills, we can also learn &nbsp;persistence of course we can but is that not a more innate part of a character rather than a talent?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So are you talented? Do you have a talent? Or do you have grit? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Or maybe you have both?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Grit Scale Test</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Having read Angela Duckworth’s book Grit: <em>The Power Of Passion and Perseverance, </em>it had so much of what was at the heart of Ken Robinson’s theory on <em>Finding Your Element</em>. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can you can learn a skill but can you learn grit or passion?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here is Duckworth’s Grit Scale so that you can see where you are right now. But if you read her book you will see how this scale can indicate way more than simply grit.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":11026,\"width\":427,\"height\":637} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/THE-GRIT-SCALE--687x1024.png\" alt=\"\" class=\"wp-image-11026\" width=\"427\" height=\"637\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":11027,\"width\":429,\"height\":622} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/THE-GRIT-SCALE-2-706x1024.png\" alt=\"\" class=\"wp-image-11027\" width=\"429\" height=\"622\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>To Conclude</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Demonstrating persistence has been shown through research to be far more likely to equal achievement and it has been demonstrated time &amp; time again.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>IN FACT it might be argued that having natural talent at a young age could be detrimental to your grit scale or persistence, if gaining positive reinforcement about talent alone comes easily. &nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Those with natural talent may exert less effort due to the ease of their skill. However those determined to put in more effort due to a lack of skill ....well could they end up more feeling /being more successful? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let’s consider the reasons our clients come to us. Often this is because they have been unable to persist with things themselves. The better we understand this and the reasons why, the more opportunities we have to help them make changes. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Persistence and Consistency = Achievement and Success - No Talent Required!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Duckworth opinion is to go from talent to achievement this is what is required:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Talent x Effort = Skill </em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Skill x Effort = Achievement </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Talent matters but effort is required twice within this equation! </em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','Grit Vs Talent: Which Will More Likely Result In Achievement?','','draft','closed','closed','','grit-vs-talent-which-will-more-likely-result-in-achievement','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=11024',0,'post','',0),(11025,0,'2019-01-28 14:55:52','2019-01-28 14:55:52','','Grit Vs Talent','','inherit','open','closed','','grit-vs-talent','','','2019-01-28 14:55:52','2019-01-28 14:55:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Grit-Vs-Talent.png',0,'attachment','image/png',0),(11026,0,'2019-01-28 15:06:18','2019-01-28 15:06:18','','THE GRIT SCALE','','inherit','open','closed','','the-grit-scale','','','2019-01-28 15:06:18','2019-01-28 15:06:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/01/THE-GRIT-SCALE-.png',0,'attachment','image/png',0),(11027,0,'2019-01-28 15:06:36','2019-01-28 15:06:36','','THE GRIT SCALE 2','','inherit','open','closed','','the-grit-scale-2','','','2019-01-28 15:06:36','2019-01-28 15:06:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/01/THE-GRIT-SCALE-2.png',0,'attachment','image/png',0),(11098,0,'2019-02-01 12:20:03','2019-02-01 12:20:03','','CPD Points IconsEndorsed 10PTS1600','','inherit','open','closed','','cpd-points-iconsendorsed-10pts1600','','','2019-02-01 12:20:03','2019-02-01 12:20:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/06/CPD-Points-IconsEndorsed-10PTS1600.jpg',0,'attachment','image/jpeg',0),(11099,0,'2019-02-01 12:54:01','2019-02-01 12:54:01','','STA LOGO cpd 16','','inherit','open','closed','','sta-logo-cpd-16','','','2019-02-01 12:54:01','2019-02-01 12:54:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/06/STA-LOGO-cpd-16.jpg',0,'attachment','image/jpeg',0),(11104,0,'2019-02-01 12:55:42','2019-02-01 12:55:42','','Screenshot 2019-02-01 at 12.55.16','','inherit','open','closed','','screenshot-2019-02-01-at-12-55-16','','','2019-02-01 12:55:42','2019-02-01 12:55:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/06/Screenshot-2019-02-01-at-12.55.16.png',0,'attachment','image/png',0),(11106,0,'2019-02-01 13:00:32','2019-02-01 13:00:32','','Screenshot 2019-02-01 at 12.58.18','','inherit','open','closed','','screenshot-2019-02-01-at-12-58-18','','','2019-02-01 13:00:32','2019-02-01 13:00:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Screenshot-2019-02-01-at-12.58.18.png',0,'attachment','image/png',0),(11107,0,'2019-02-01 13:44:53','2019-02-01 13:44:53','','Screenshot 2019-02-01 at 13.44.26','','inherit','open','closed','','screenshot-2019-02-01-at-13-44-26','','','2019-02-01 13:44:53','2019-02-01 13:44:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Screenshot-2019-02-01-at-13.44.26.png',0,'attachment','image/png',0),(11109,0,'2019-02-01 13:54:21','2019-02-01 13:54:21','','IMG_2009','','inherit','open','closed','','img_2009','','','2019-02-01 13:54:21','2019-02-01 13:54:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/02/IMG_2009.jpeg',0,'attachment','image/jpeg',0),(11155,3,'2019-02-04 15:33:18','2019-02-04 15:33:18','<!-- wp:paragraph -->\n<p>Assumption is often used to identify WHY someone maybe limited in the much coveted Front Squat or OverHead Squat. This blog will discuss and explore more objective, and ultimately safer means of ‘measuring’ the WHYS rather than the obvious WHAT\'S when it comes to these often more challenging squat positions.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What&nbsp;Is&nbsp;Happening&nbsp;vs&nbsp;Why&nbsp;It\'s&nbsp;Happening</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is very easy to see WHAT is happening when a client doesn’t perform a squat ‘very well’. Add the challenge of some kind of compressive or shear load on top of this and things can be dramatically highlighted.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ok so why would someone want to do these kind of squat variations? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Why Do The Front Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This technique requires the bar to be upon the front of the shoulders, with the arms lifted to balance the bar close to the throat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This position challenges trunk stability differently, compared to the more popular back squat, due to the shear force positioning of the bar. The back squat is a more compressive load as the bar is behind the head upon the meaty part of the shoulders. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The bar position on any style of squat should be as close to above the midfoot as possible for reduced risk and improved movement efficiency of the load. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The front bar position requires a more upright posture to achieve this. For many this upright position is a challenge because it requires a wonderfully mobile and yet solid and stable pelvis and trunk. This is something many of us lack due to our lifestyles hunched over laptops, phones etc.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Why Do The Overhead Squat</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This techniques requires the bar to be held and balanced with the arms extended over head.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This particular squat variation is possibly the toughest to master due to the added challenge of shoulder mobility and stability. The front and back squat positions keep the load very close to the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The overhead squat position also creates virtually a full stretch through the nervous system which again can highlight any areas the individual may lack a capacity for movement in.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Why Do Them Then?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well, they can add variety, alternative stimulations to the same movement, they challenge stability more, particularly the overhead squat and they are in themselves benchmarkers or measurements of movement capacity. They do hold <g class=\"gr_ gr_5 gr-alert gr_gramm gr_inline_cards gr_run_anim Grammar only-ins replaceWithoutSep\" id=\"5\" data-gr-id=\"5\">risk</g> of course which increases further with added kilos/load as I am sure you would be aware.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So What?</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well have you ever watched someone do one of these variations and thought…<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“I’d love to try that”</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“WHOAH, they shouldn’t be doing that!”</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>OR</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“I wish I felt more comfortable/confident doing these”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Assumptions That&nbsp;Are Often&nbsp;Made</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Assumptions are often made about WHY we struggle with some of these techniques in terms of what we need to do about it. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Immobile Pelvis</li><li>Stiff Spine</li><li>Tight Calves</li><li>Tight Nerves </li><li></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In fact all of these can be contributing to a poorly performed Front or OH Squat. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Not just these, in fact the chest muscles, in particular Pectoralis Minor. This tiny muscle can inhibit your squat performance by pulling the scapular around the thoracic spine and rib cage and thus stiffen and limit thoracic extension. A key component of keeping that bar above the midfoot during any squat.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Improving&nbsp;Your&nbsp;Overhead&nbsp;Squat&nbsp;Or&nbsp;Front&nbsp;Squat</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well of course my advice is to hire a highly qualified movement specialist or coach because it is a challenge to observe your own Front or OH squat technique from all angles. Ideally someone who can assess your body prior to squatting to understand which of the above limitations are relevant to you.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However in the meantime following a system of approach would make sense rather than just hammering away at something and not knowing if you are making a difference, right??<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>How To Discover Your WHY’S To Improve Your Front &amp; OH Squat</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Evidence shows that around 60% of ‘dysfunction’ stems from the pelvis.</li><li>Changing too many things at once won’t allow you to be objective as you won’t know what has worked</li><li>Follow an evidence based system of approaching your programme design will increase confidence </li><li>Repetition - Use the same movement benchmarks, with the same setting, equipment, video/photo angles etc </li><li>Video / photo evidence will allow you to make clear analysis of what is or isn’t changing/improving</li><li>Be patient but consistent. Often the changes can be subtle and chances are it will take time </li><li>Ask the professionals or get educated on evidence based physical assessments </li><li>Specificity - Always keep the goal in mind</li><li>Take each body part at a time. Start with the pelvis, then spine, shoulders, knees and feet since this is a logical evidence based approach.</li><li>Try a variety of techniques for each area not just stretching for example. Ie Muscle energy techniques, nerve mobilisations, joint mobilisations etc</li><li>Don’t forget to strengthen other planes of motion for all round stability. Ie Frontal plane work can dramatically improve even sagittal plane movement performance </li><li>Use antagonist strength work to improve overall squat strength</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Last year I put together the \"Project Squat\" Series which was all about showing you the techniques and assessments you could use to identify the reasons WHY the squat wasn\'t improving and how you could correct those things.  Here are the links to each of the sessions:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/how-to-squat-ass-to-grass-a2g-project-squat-part-1/\">Part 1: How To Squat Ass To Grass</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/project-squat-part-2-how-to-test-for-improve-your-pelvic-function-how-it-affects-your-squat/\">Part 2: How To Test For &amp; Improve Your Pelvic Function &amp; How It Affects Your Squat</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/\">Part 3: How To Assess For Dysfunction In The Spine</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/project-squat-a2g-part-4-the-nervous-system-how-it-affects-the-squat/\">Part 4: The Nervous System &amp; How It Affects The Squat</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/project-squat-a2g-part-5-how-shoulder-mechanics-affects-your-squat/\">Part 5: How Shoulder Mechanics Affects Your Squat</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/squat-project-a2g-part-6-the-knee-your-squat/\">Part 6: The Knee &amp; Your Squat</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat/\">Part 7: How Your Ankles &amp; Feet Affect Your Squat</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Conclusion:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It would be prudent to stay open minded about how many things can influence your squatting ability, particularly when choosing more advanced squat techniques like the front squat or overhead squat. Try not to assume anything, taking the time use measurements gives us confidence in what is or isn\'t working. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally and as always please do get in touch with all of your movement related questions! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>rachel@biomechanicseducation.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','How To Improve Your Front Squat Or Over Head Squat','','draft','closed','closed','','how-to-improve-your-front-squat-or-over-head-squat','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=11155',0,'post','',0),(11156,0,'2019-02-04 09:33:24','2019-02-04 09:33:24','','Overhead Squat & Front Squat - Why we do them and how to improve them','','inherit','open','closed','','overhead-squat-front-squat-why-we-do-them-and-how-to-improve-them','','','2024-09-20 15:20:15','2024-09-20 15:20:15','',16935,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Overhead-Squat-Front-Squat-Why-we-do-them-and-how-to-improve-them.png',0,'attachment','image/png',0),(11285,0,'2019-02-06 10:42:18','2019-02-06 10:42:18','','Screenshot 2019-02-06 at 10.41.33','','inherit','open','closed','','screenshot-2019-02-06-at-10-41-33','','','2019-02-06 10:42:18','2019-02-06 10:42:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Screenshot-2019-02-06-at-10.41.33.png',0,'attachment','image/png',0),(11407,3,'2019-02-11 16:02:42','2019-02-11 16:02:42','<!-- wp:heading -->\r\n<h2><strong>What Exactly Is Periodisation Training?</strong></h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span data-contrast=\"auto\">Periodisation is the systematic planning of athletic or physical training. It involves cycling various aspects of a training program over a specific period to optimize performance and reduce the risk of injury. Conditioning programs often divide training into off-season, preseason, in-season, and postseason phases.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Tudor Bompa, a pioneer in periodisation strategies, explains:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">\"Periodisation of strength is structured into phases to maximize sport-specific strength. These phases include muscle endurance, hypertrophy, maximum strength, anatomical adaptation, and reactive training, incorporating power and explosiveness.\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">In our academy, we approach \'periodisation\' differently. Here, we’ll explore various models and their applications.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} -->\r\n<h3><strong>The Standard Models For Periodisation Training</strong></h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW15764234 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SpellingErrorV2Themed SCXW15764234 BCX8\">Periodisation</span><span class=\"NormalTextRun SCXW15764234 BCX8\"> training is primarily associated with elite sports and training for strength, energy systems, and skills. It provides a comprehensive plan for an athlete\'s training year, breaking it into manageable cycles.</span></span><span class=\"EOP SCXW15764234 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":4} -->\r\n<h4><strong>The 3 Cycles Of Periodisation Training </strong></h4>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:heading {\"level\":4} -->\r\n<h4><strong>MACROCYCLES</strong></h4>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW106858704 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW106858704 BCX8\">The longest cycle, typically spanning an entire year. It outlines the overall training plan, including seasons and competitions.</span></span><span class=\"EOP SCXW106858704 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":4} -->\r\n<h4><strong>MESOCYCLES</strong></h4>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW224646188 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW224646188 BCX8\">These are intermediate cycles, usually lasting 3-4 weeks, focusing on specific training phases like strength or endurance. Mesocycles align with competitions and skills development, incorporating tapering and recovery.</span></span><span class=\"EOP SCXW224646188 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":4} -->\r\n<h4><strong>MICROCYCLES</strong></h4>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW223884621 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW223884621 BCX8\">The shortest cycle, often a </span><span class=\"NormalTextRun SCXW223884621 BCX8\">weeklong</span><span class=\"NormalTextRun SCXW223884621 BCX8\">, involves detailed planning and measurement. </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW223884621 BCX8\">Microcycles</span><span class=\"NormalTextRun SCXW223884621 BCX8\"> include rest days and specific training requirements, with 3-4 </span><span class=\"NormalTextRun SCXW223884621 BCX8\">microcycles</span><span class=\"NormalTextRun SCXW223884621 BCX8\"> forming a mesocycle.</span></span><span class=\"EOP SCXW223884621 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} -->\r\n<h3><strong>Why The Increase In Demand/Popularity?</strong></h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span data-contrast=\"auto\">Level 3 PT education doesn\'t require an understanding of periodisation, traditionally the realm of strength and conditioning (S&amp;C) coaches. However, more clients are entering competitive amateur sports, making annual training plans more appealing and beneficial.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">This planning method enhances personal training programs, broadening the concept of adaptation with specificity and complexity. It adds variety and likely success with fewer injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Understanding each decision in periodisation is intricate, requiring more than just exercise selection.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<h3>Variations of Periodisation Models </h3>\r\n<p><span data-contrast=\"auto\">Personal trainers can use different periodisation models to tailor training to clients\' needs.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} -->\r\n<h3><strong>Strength &amp; Conditioning Education; Force Velocity Curve</strong></h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW127695535 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW127695535 BCX8\">This model starts with strength development, progresses to strength with speed, and finally to power. As Brendan Chaplin notes, power </span><span class=\"NormalTextRun SCXW127695535 BCX8\">can\'t</span><span class=\"NormalTextRun SCXW127695535 BCX8\"> be developed without first building strength. This model suits Olympic lifters and rugby players.</span></span><span class=\"EOP SCXW127695535 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p>Strength &amp; Conditioning Education gives the example of the force velocity curve example:</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image -->\r\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/jx5IMOX39RqSg5mr2EtrHEKu7p4xnkLh4xcnNRN_iTxRZ9nlh97flQ6tCo3_8syidmpQu6N7HjBGh-d8sBrMrt6hIvAlI7eQitMID8ojuLJ_NELUEIT_UrWRUM7uiLdysH2xbTFC\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} -->\r\n<h3><strong>Chuck Wolf : Periodised Programme Hybrid Model</strong></h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span data-contrast=\"auto\">Chuck’s model layers skill development in a pyramid plan:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Develop joint flexibility.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Develop tendon strength.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Develop core strength.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"4\" data-aria-level=\"1\"><span data-contrast=\"auto\">Develop stabilizers.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"5\" data-aria-level=\"1\"><span data-contrast=\"auto\">Train movements, not individual muscles.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<p><span data-contrast=\"auto\">Each law supports the others, creating a comprehensive training programme.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image -->\r\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/7BSuu6WtrUyIJdxUw9jCqhIkJ6EFMfH_ivPmk0BmIFpXz7KBFkptzCMfDWCn6r2ZGjqGLYdmlQPXMZx9Q0BM9dN7yXj3DuNbiw93o-2Wg22H_8FPnbcRzRfyuq77XMf1bHwq5NPs\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} -->\r\n<h3><strong>Biomechanics Education Periodisation Pyramid Model </strong></h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW23591604 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW23591604 BCX8\">This pyramid model begins with \'intrinsic biomechanics,\' developing good muscle function, mobile nerves, and joints before stabilizing the integrated system. It progresses to developing basic agonist/antagonist joint strength ratios and then to specific activity or sport training. This model benefits both elite athletes and average clients, such as desk workers or those aiming for fat loss.</span></span><span class=\"EOP SCXW23591604 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image -->\r\n<figure class=\"wp-block-image\"><img src=\"https://lh5.googleusercontent.com/zckayMOEf2i91zbFSjTGVbtgugArh-ROo-KHyjuqPbc2ncfmc1YdS0loNz-7bHreJ01Fmu_gAQ8n3ZAyCM7fw43l6phKx65kL5X50K5EGoa7EGbKz0m7HS1sywsf50mOv5rlH_-N\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} -->\r\n<h3><strong>Do You Use Periodisation?</strong></h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW45592290 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW45592290 BCX8\">While these </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW45592290 BCX8\">periodisation</span><span class=\"NormalTextRun SCXW45592290 BCX8\"> models offer great frameworks, the most crucial factor in planning a </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW45592290 BCX8\">periodisation</span><span class=\"NormalTextRun SCXW45592290 BCX8\"> program is the individual client. Always prioritize the client’s needs and preferences. For many, adherence to the program is the biggest challenge, so simplicity might be key, although some clients thrive on more complex challenges.</span></span><span class=\"EOP SCXW45592290 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong>Tell Me Your Thoughts!</strong></p>\r\n<p><span class=\"TextRun SCXW78386671 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW78386671 BCX8\">Would you like to reduce your clients\' risk of injury and help them achieve better results? Click </span></span><a class=\"Hyperlink SCXW78386671 BCX8\" href=\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\" target=\"_blank\" rel=\"noreferrer noopener\"><span class=\"TextRun Underlined SCXW78386671 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW78386671 BCX8\" data-ccp-charstyle=\"Hyperlink\">here</span></span></a><span class=\"TextRun SCXW78386671 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW78386671 BCX8\"> to learn more about our Biomechanics Coach Diploma, which includes a Level 4 Low Back Pain Qualification, and enhance your personal training skills.</span></span><span class=\"EOP SCXW78386671 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Contact us here: rachel@biomechanicseducation.com</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\r\n</div>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>&nbsp;</p>\r\n<!-- /wp:paragraph -->','Personal Trainers & Periodisation: What Is It and Why Should We Be Using it?','','publish','closed','closed','','personal-trainers-periodisation-what-is-it-and-why-should-they-be-using-it','','','2025-01-20 16:04:17','2025-01-20 16:04:17','',0,'https://www.biomechanicseducation.com/?p=11407',0,'post','',0),(11408,0,'2019-02-11 15:46:02','2019-02-11 15:46:02','','Periodisation and personal trainers','','inherit','open','closed','','periodisation-and-personal-trainers','','','2024-09-04 15:22:22','2024-09-04 15:22:22','',11407,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Periodisation-and-personal-trainers.png',0,'attachment','image/png',0),(11549,3,'2019-02-18 18:33:51','2019-02-18 18:33:51','<!-- wp:paragraph -->\n<p>Calling All Soldiers!!  FUNDING is HERE!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A.M.A.Z.I.N.G. News!! - AGAIN!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally after months and months of evidencing we now have Military Of Defence backing for funding and accreditation of our L4 LBP Specialist Diploma in Biomechanics Coaching through Enhanced Learning Credits Administration Services!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is an extremely important milestone in the existence of Biomechanics Education and our mission to always improve on what and how we deliver our programmes. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We feel passionately about our promise to every single learner that comes into the academy, whether you are on a 1 day workshop or a full L4 Diploma learner. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>We promise you quality content</li><li>We promise you an inclusive classroom</li><li>We promise you our full support </li><li>We promise you more than just education</li><li>We promise you opportunities</li><li>We promise you will not be disappointed </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We can not only promise you this but we have evidence of it because this is what the MOD require as part of the application process. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Over 6 months, 26 documents, 6 files of evidence of legal, quality, declarations, insurance, references, demands and financial statements. We had to re-submit 5 times before they would accept our application due to the amount of detail they required. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let me tell you this has been an extremely stressful and time consuming process….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>….why do it then eh??<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well let me tell you we have literally got everything covered to protect YOU and be in a position to promise YOU everything we promise you because if I don’t…..well I will be in trouble with the Military of Defence!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The business has been fully scrutinised from every damn angle to make sure our amazing ex military service men and women get the training standards they deserve once they leave and want to re-train back into a civilian job, like becoming a L4 LBP Specialist Biomechanics Coach!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So ex military guys who can access funding can get their L4 LBP Specialist Diploma in Biomechanics Coaching paid for by the MOD!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT wait….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You’re not ex military? … well so what?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Even if you’re NOT an <g class=\"gr_ gr_9 gr-alert gr_spell gr_inline_cards gr_disable_anim_appear ContextualSpelling multiReplace\" id=\"9\" data-gr-id=\"9\">ex </g><g class=\"gr_ gr_6 gr-alert gr_spell gr_inline_cards gr_disable_anim_appear ContextualSpelling ins-del\" id=\"6\" data-gr-id=\"6\"><g class=\"gr_ gr_9 gr-alert gr_spell gr_inline_cards gr_disable_anim_appear ContextualSpelling multiReplace\" id=\"9\" data-gr-id=\"9\">service</g> man</g> or woman...well guess what….? YOU TOO get the gold standard level of training that has been through rigorous testing. YOU TOO can gain access to the level of service expected from us by the Military of Defence. OK OK OK yes you, yourself have to invest in yourself and jump on the course, BUT if the Ministry of Defence <g class=\"gr_ gr_115 gr-alert gr_gramm gr_inline_cards gr_run_anim Grammar multiReplace\" id=\"115\" data-gr-id=\"115\">trust</g> us, that should give you confidence in us too!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','Funding For Ex-Military via ELCAS - Become A Level 4 Low Back Pain Specialist Biomechanics Coach','','draft','closed','closed','','funding-for-ex-military-via-elcas-biomechanics-coach','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=11549',0,'post','',0),(11550,0,'2019-02-18 10:49:08','2019-02-18 10:49:08','','ELCAS Funding - Ex-Military Funding For Biomechanics Education','','inherit','open','closed','','elcas-funding-ex-military-funding-for-biomechanics-education','','','2019-02-18 10:49:08','2019-02-18 10:49:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/02/ELCAS-Funding-Ex-Military-Funding-For-Biomechanics-Education.png',0,'attachment','image/png',0),(11702,3,'2019-02-26 18:22:03','2019-02-26 18:22:03','<!-- wp:paragraph -->\n<p>WOW!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What an incredible weekend! After months and months of planning and organising, with the usual chaos and changes all at the last minute, we finally saw the fruition of our efforts come to life.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And it could not have any any better!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>First up saturday morning was in The Biomechanics Education Academy...<em> </em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><em>The Annual Master Trainer Standardisation Meeting</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>8 of the very best Biomechanics Education Master Trainers gathered to discuss:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Mission</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Vision</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Values <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We explored self reflection, personal development techniques, how we constantly strive to create the best learning environment for our academy learners, we asked ourselves WHY (Simon Sinek ‘<em>Start With Why</em>’), we did a personal effectiveness scale test and also discussed how to be aware that we each see the world differently - yeah pretty deep stuff!!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>After a light lunch we went into our saturday afternoon gathering.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><em>The Annual Biomechanics Coach Training Camp</em></strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There were 46 Biomechanics Coaches in the room and after a quick annual update about our progressive (and so far successful) plans towards global domination we began with our first session.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Mike Grice</strong> who is also an Osteopath and world leader in intrinsic biomechanics lead this interactive thought provoking session. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>His session discussed interdisciplinary communications and understanding. He set tasks for the delegates to discuss ways to explore and understand the mindset of an interdisciplinary practitioner. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next up was…<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Martin Haines</strong>, Chartered Physiotherapist and also another world leader in intrinsic biomechanics. He lead a fantastic session discussing running biomechanics. Going into details about the challenges of alignment as a measure due to the diverse nature of pelvic geometry. He also discussed foot and ankle biomechanics and how these to can miss guide practitioners. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Saturday evening we all met at the local Tavern Pub for a social gathering of Biomechanics Coaches to wind down from the days events. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Sunday was...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><em>The Kaizen Project</em></strong><em> </em><strong><em>2019</em></strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Delegates vegan to arrive from around 8am from all over the UK literally for this awesome much awaited event! That went something like this:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Jonathan Broom Edwards </strong>delivered at very honest session about GB level mindset and how he developed his to win a Silver Medal high jump in 2012. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":11706,\"width\":1226,\"height\":818} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/02/Jonathan-Broom-Edwards-1024x683.jpg\" alt=\"\" class=\"wp-image-11706\" width=\"1226\" height=\"818\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Mike Grice</strong> was back to deliver a stunning practical session with more mic drops than an pne mic club!! Using therapy to specifically improve performance in a way many delegates hadn’t heard before. In fact he challenged many of the concepts many are still being taught about what is actually happening to the body when you have manual therapy. Fantastically controversial BUT all evidence provided.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":11707,\"width\":1227,\"height\":818} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/02/Mike-Grice-Kaizen-Project-2019-1024x683.jpg\" alt=\"\" class=\"wp-image-11707\" width=\"1227\" height=\"818\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Ben Coomber</strong> appeared next to deliver a dynamic session that included all aspects of health when considering performance, from sleep &amp; hydration to of course, nutrition. His suggestion towards a simplistic approach with awareness and consistency was fantastic. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":11708,\"width\":1231,\"height\":821} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/02/Ben-Coomber-Kaizen-Project-2019-1024x683.jpg\" alt=\"\" class=\"wp-image-11708\" width=\"1231\" height=\"821\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Chris Wright</strong> was our business mentor for the day. Chris showed us a simple blueprint for coaches to apply to their business to help them grow.  Being a great coach is only part of the formula, we dived into the other aspects that you, as a coach, need to have in place to take your business to the next level.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":11703,\"width\":1229,\"height\":820} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/02/Chris-Kaizen-Project-1024x683.jpg\" alt=\"\" class=\"wp-image-11703\" width=\"1229\" height=\"820\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>From here we all made our way downstairs into the Aspire4Fitness Gym to first of all eat!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>FREE fish n chips from the Mobile Chip Shop went down a treat with everyone!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Exhibition stands were all set up... <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Super Seven Coffee</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sanctum Apparel </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Awesome Supplements<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...and there was Pulseroll - I delivered a practical session showing delegates how to take advantage of this awesome tool.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally after 140 people had a photo with him…. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Eddie Hall </em></strong>sat and shared his personal story as an athlete how he successfully achieved his goal/s through mindset, therapy, specific performance training and diet and never giving up. The Q&amp;A session was also revealing, honest and personal, allowing delegates to interact with The Beast!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Myself and my fellow organiser Matt Kirk Ellis, MD of Aspire4Fitness Gym, felt that the day/s went extremely well and couldn\'t in fact have gone any better than planned. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So much so we are planning a meeting about the next event….but not before we have both taken a holiday!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Thanks to everyone who supported us, all our sponsors and of course the guest speakers, without whom there would be no event! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Until next time….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','The BIG Biomechanics Coach Weekender! Master Trainers, Biomechanics Coach Training Camp & The Kaizen Project','','draft','closed','closed','','the-big-biomechanics-coach-weekender','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',0,'https://www.biomechanicseducation.com/?p=11702',0,'post','',0),(11703,0,'2019-02-26 14:33:50','2019-02-26 14:33:50','','Chris - Kaizen Project','','inherit','open','closed','','chris-kaizen-project','','','2019-02-26 14:33:50','2019-02-26 14:33:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Chris-Kaizen-Project.jpg',0,'attachment','image/jpeg',0),(11706,0,'2019-02-26 14:53:34','2019-02-26 14:53:34','','Jonathan Broom Edwards','','inherit','open','closed','','jonathan-broom-edwards','','','2019-02-26 14:53:34','2019-02-26 14:53:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Jonathan-Broom-Edwards.jpg',0,'attachment','image/jpeg',0),(11707,0,'2019-02-26 14:55:02','2019-02-26 14:55:02','','Mike Grice - Kaizen Project 2019','','inherit','open','closed','','mike-grice-kaizen-project-2019','','','2019-02-26 14:55:02','2019-02-26 14:55:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Mike-Grice-Kaizen-Project-2019.jpg',0,'attachment','image/jpeg',0),(11708,0,'2019-02-26 14:55:34','2019-02-26 14:55:34','','Ben Coomber - Kaizen Project 2019','','inherit','open','closed','','ben-coomber-kaizen-project-2019','','','2024-12-04 14:10:20','2024-12-04 14:10:20','',40779,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Ben-Coomber-Kaizen-Project-2019.jpg',0,'attachment','image/jpeg',0),(11712,0,'2019-02-26 18:19:47','2019-02-26 18:19:47','','Eddie Hall Kaizen Project','','inherit','open','closed','','eddie-hall-kaizen-project','','','2019-02-26 18:19:47','2019-02-26 18:19:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Eddie-Hall-Kaizen-Project.jpeg',0,'attachment','image/jpeg',0),(11824,3,'2019-03-04 16:50:38','2019-03-04 16:50:38','<!-- wp:paragraph -->\n<p>Its possibly THE biggest year of my life so far...WHY?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I HAVE BEEN ALIVE FOR HALF A CENTURY!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Not so long ago we didn’t live much past this age and we certainly didn’t look or feel as great as we do now going into our older years. Well that is what I thought anyway. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now I’m a massive fan of natural health, PMA, silver linings, fate, karma and keep my focus on all the good and simple things in life.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A good night’s sleep is far better than any pharmaceutical for MOST health issues in my opinion. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However when something comes along, creeps up on you gradually in such a subtle way initially….well it can eventually totally change you! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There had been signs years earlier and I wasn\'t daft I knew I was going through the menopause but had even been glad when my buddies had described their symptoms and their need for HRT, knowing I was doing ok in comparison. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I had spoken too soon….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Menopause Hit Me<g class=\"gr_ gr_19 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation multiReplace\" id=\"19\" data-gr-id=\"19\">....</g>Hard</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Over time I noticed I was waking up with a body that ached all over, I could barely put my feet on the floor, my back shoulder neck pain woke me up. In my mind I would question my training, DOMS maybe? Also how long I had been sitting at my desk etc.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then there was this waking up with anxiety in the middle of the night !?!? Heart racing and pounding in my chest like how I imagined a panic attack might feel.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>My brain fizzing with thoughts that stopped me going back to sleep. Ok so I reasoned that work was pretty chaotic and I had a lot going on right now.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A massive loss of focus and a constant fatigue that left me so lethargic I couldn’t be bothered to train and could have almost stayed in bed. This began alarm bells.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Motivation was at zero and energy levels were zapped BUT THEN...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The very worst of all…..Not hot flushes oh no, these were literally &nbsp;HOT SEIZURES! Seriously one minute we are driving along the next minute the entire car has steamed up or waking up dripping with sweat, throwing back the covers then instantly freezing cold as the air hits me. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I realised my life had become miserable I was not happy anymore and I felt really old physically when I couldn’t be bothered to train. That was it, I’d had enough.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This just wasn’t me...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Seriously I actually thought it was just because I’m approaching 50 <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So I read up on menopause symptoms and began ticking off the ones I had….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Hot flashes</li><li>Depression</li><li>Aching joints &amp; muscles</li><li>Anxiety</li><li>Irritability</li><li>Insomnia</li><li>Mood swings</li><li>Fatigue</li><li>Racing heart</li><li>Headaches</li><li></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>OMG that’s me?! &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Or not me <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WOW</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So off I went to the doctors to ask for some help….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Blood tests </li><li>ECG </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>All Fine. Normal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But not REALLY normal as I was confirmed as menopausal BUT I KNEW that! I wanted something to help my symptoms.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The doctors asked me the usual stuff….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Diet? </li><li>Sleep? </li><li>Caffeine? </li><li>Stress? </li><li>Exercise? </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Ticked all of those boxes and so she asked me what I wanted to do?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Is It Time For HRT?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>I said <em>“Can I have a low dose HRT please?</em>”<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now I had done my research, read articles and research papers, asked my pals who were on it etc etc and had decided my quality of life was such that it required a stronger intervention. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 weeks into taking my HRT WOW I KNEW it had been the right thing to do because OMG I had forgotten how great I <strong><em>normally</em></strong> feel!!! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The side effects of putting some of the hormones back into my body….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Training again</li><li>Sleeping solidly through the night</li><li>Energy back up</li><li>Motivation back in order</li><li>My skin even looks better</li><li>Wrinkles reduced</li><li>Belly fat down</li><li>Focus is back</li><li>Not feeling stresses</li><li>No anxiety</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>It SOOOOO Taboo!</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So WHY on earth am I telling you all of this???<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well it is not a subject most women would discuss openly and I also wonder if some women, like me, might not even realise some of what they are feeling may be a result of hitting the menopause.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Personally, I have no issue discussing it and would like to encourage others to share their experiences of it too so we can learn from each other. I know some of my friends who have struggled even more than I did so maybe, just maybe, with some encouragement to be more open we can support and learn from each other.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Can Personal Trainers Learn From This?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So to all of those Personal Trainers out there, please note...the old saying ‘<em>Going through the change’ </em>could not be put any more accurately. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please be mindful of your middle aged female clients whom I know are one of the biggest demographic seeking our advice. They too could potentially be experiencing any of these symptoms. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It may not simply be that they are just ignoring your motivation or that they can never be arsed. It may not simply be that they aren’t trying hard enough. It maybe they are changing and please understand I am NOT for a moment suggesting you tell them they need HRT or to see a GP!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However hormones changing can change the person and having been through it, I was surprised by just how much it changed me…..BUT....<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>I am back!!!</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','My Secret Revealed… How Menopause Has Affected Me','','draft','closed','closed','','my-secret-revealed-how-menopause-has-affected-me','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=11824',0,'post','',0),(11825,0,'2019-03-04 16:40:32','2019-03-04 16:40:32','','Menopause & Personal Trainers - Biomechanics Coach','','inherit','open','closed','','menopause-personal-trainers-biomechanics-coach','','','2019-03-04 16:40:32','2019-03-04 16:40:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Menopause-Personal-Trainers-Biomechanics-Coach.png',0,'attachment','image/png',0),(12073,3,'2019-03-11 18:38:21','2019-03-11 18:38:21','<!-- wp:paragraph -->\n<p>Well I started writing this blog initially about the <em>Top 10 Best Moves To Use In The Gym</em> however it changed as I wrote because I had you trainers &amp; coaches in my mind. So decided to change the topic to <em>Top 7 Squat Styles, When &amp; Why To Use Which With Your Clients. </em>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The reason for this was that I felt this detail might be more helpful to trainers &amp; coaches when it comes to designing client programmes &amp; choosing the right squats at certain points on their development.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(Don’t worry if you still wanted to hear my Top 10 Best Moves though since this will be coming in the form of yet another blog series as you will see later) </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>The Squat </strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Squatting, as you know from my many ‘squat’ blogs, is basically the combination of ankle, knee &amp; hip flexion all performed at the same time &nbsp;during the descent followed by ankle, knee &amp; hip extension during the ascent. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In my opinion the squat is probably top of the tree in terms of simple fundamentals. The basic act of sitting and standing has so many variables it’s often a controversial topic due to a lack of clarity around its context. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the load, it’s position or absence of it, isn’t made clear often the reader or listener may hold a different context in their mind resulting in confusion or a conflict of understanding. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(Ie; A body weight caveman style A2G squat holds different loads, force and risk factors compared to a 30kg front squat performed to 90 degrees at the knee.)<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here I will briefly discuss different squat types &amp; therefore the differences in risk &amp; benefit. Unless otherwise stated please note the comparisons are like for like in terms of squat depth/width for these examples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style a). &nbsp;Caveman Squat or A2G - bodyweight only! </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is a natural position for the human form to rest in, however for many they either rarely or no longer rest in this almost foetal sitting position. The body compensates for those NOT using up these fuller ranges (ie only ever ‘sitting’ or squatting to 90 degrees into a chair for long periods - like desk workers)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The compensation is to reserve energy by adapting and limiting the use of certain muscles for example, therefore resulting in ‘stiffer’ joints, tight nerves and muscles that don’t function to their full capacity any longer.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Use It Or Lose It! </strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By simply asking the body to perform a new or <em>unused</em> physcial task chances are it will of course feel awkward, difficult and sometimes uncomfortable. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However like the <em>degradation</em> of your caveman squat the body can adapt the other way too! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now it’s relevant at this point to point out unless mentioned please assume the context I am using is in a healthy adult body without ailments or injuries. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Use This One?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It’s a fundamental human movement &amp; the crossover equates to :</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Improved dorsiflexion or calf range &nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Improved muscle flexibility in hip, knee extensors </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Improved joint lubrication &amp; mobility in knees, hips and spine </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Improved nerve mobility throughout the integrated system <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Use It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Demographics with joint conditions / injuries that may be exacerbated with these fuller ranges.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Less stable or low strength demographics might be advised to use less depth/ranges certainly initially while they ‘practise’ better function using methods like the iMoveFreely programme to improve their intrinsic function first.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style b). Back Squat (high bar/low bar)</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This style specifically uses a load / bar positioned across the shoulders. The high bar upon the meaty part of the top of the shoulders and the low bar further down towards mid traps. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The high bar tends to be a more popular position amongst recreational lifters. The reason for this is likely to be the advantage &amp; ease of ‘balancing’ a compressive load on top of the spine &amp; over the centre of gravity thus allowing the lifter to have increased equilibrium during the descent/ascent. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is of course if they have the ability to maintain this line of force by keeping the weight over the midfoot during the squat. A lack of range across joints, flexibility in muscles, tension in nerves or any combination of these can inhibit this equilibrium or at least the degree of depth the lifter maybe able to perform while maintaining a midfoot bar position.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Alter the bar position &amp; this too will alter the downward force through the body &amp; its structures &amp; subsystems. Ie the low bar will move the force posteriorly. For some this can feel better, others it can degrade their performance. It is the combination of capacity through the lifters subsystems &amp; the load position that increases or decreases benefits &amp; risks. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is without even taking into account the number of kilos on the bar nor reps or sets being performed. So lots to think about, right!?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Do It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is a fantastic way to start loading the squat simply to challenge &amp; strengthen the body. It can be used for all sorts of adaptations to the lower body &amp; trunk in terms of hypertrophy, strength, stability, metabolic crossover, proprioception &amp; mobility.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Do It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This back bar position may feel challenging if the lifter has limited range across the chest or limited thoracic spine extension. This could cause protraction of the neck since the position would need to come from somewhere. If the individual cannot retract the scapula this compensation may occur increasing risk. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another compensation for a stiff spine or lack of thoracic extension might be that the lifter leans forwards allowing the downward load of the bar to transition forward and over to the forefoot. This can excessively load the lumbar spine which overtime could have a detrimental effect.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Obviously there is the option to descend only to the point the lifter can maintain the mid foot balanced load while working on ranges and capacity of the subsystems with muscle energy techniques and nerve mobilisations for example. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style c). Front Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It?</strong> </h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This style requires the bar or load to be resting upon the front of the shoulders. This means the arms must be extended out in front either crossing both the arms in front of the chest, over to the opposite shoulder or, if mobility allows, with the bar resting in the hands with both elbows pointing straight ahead. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Often a lighter load is used due to the force upon the smaller muscles of the shoulders. However if a good position can be achieved &amp; maintained the bar can be held close to the throat &amp; stabilised above and to the front of the shoulder joint. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The downward force produced by the weight of the bar in this forward position means there is a more shear load being put through the spine. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Therefore great technique is vital for reducing risk with this style. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Do It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The crossover of transference into trunk stability is fantastic IF a good position can be achieved.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Do It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Without the upright position during this holds a higher risk than a back bar squat due to the shear loading. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember that understanding the influence of good spine biomechanics can dramatically improve your squat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style d). Overhead Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It? &nbsp;</strong>&nbsp;</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Usually performed with a very wide grip bar elevated / pressed over the head during the squat. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is possible the most challenging of all the squats I’m describing here because of the instability of the load balancing on the arms overhead. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Literally balanced on top of the scapular, arms extended over head. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Any amount of limitation will be really highlighted during an OH squat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fabulous crossover into the Olympic lifts, stability &amp; scapular control. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Do It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Can be used as a Functional Movement Screen (FMS) with just a pole overhead to assess &amp; monitor a group of athletes to identify those at a high risk.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To improve OH stability of trunk &amp; scapular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Looks &amp; feels soooooo damn cool! IMO<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Do It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For the same reasons!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This holds high risk for lifters with any lack of range or functional capacity. Improve the intrinsic function, prepare the body with a specific preparation periodisation programme first.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember that even tiny muscles like Pec Minor can impact on your ability to overhead squat dramatically. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/how-your-pectoralis-minor-can-affect-your-squat-depth/\" target=\"_blank\" rel=\"noreferrer noopener\">> (opens in a new tab)\">&lt;&lt;see pec minor squat article>></a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style e). Goblet Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Usually done with a kettlebell &amp; the bell is held with both hands in front of &amp; close to the chest. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A nice variation on the front squat but risk is reduced in terms of the load being a bell (smaller &amp; lighter) rather than a bar &amp; also there is less demand for upper body mobility.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifters could use this in preparation for the front bar squat. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Do It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As a variation &amp; in preparation for the front bar squat. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another ‘cute’ variation is to lean the body back at the same time as out stretching the bell / arms at the bottom range before ascending. This creates alterations of the force, load &amp; joint positions under the load.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Do It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If the arm / bicep strength limits the individual or once again if their capacity limits their ROM. The 4 sign anti spasm exercise prior to this can make a huge difference - try it!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style f). Sumo Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A super wide foot position variation of the squat. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Do It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To alter the joint positions under load and this can, for some, allow them to achieve a deeper ROM due to their pelvic geometry. For some this wider leg position can mean the depth at which the femur hits the pelvis (altering the pelvic position by tilting it posteriorly) occurs later in the descent. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Do It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Again pelvic geometry will influence comfort levels during these types of moves at increased ranges. Personally the wider foot position doesn’t work for my hips but I do alter my foot width regularly to take into account the various positions I require my hips to be strong during everyday movements. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style g). Jump / Plyometric Squat</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Any of the above done explosively so that the feet leave the floor. Jumping so the muscles exert maximum effort for short intervals. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Do It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It improves the power (speed-strength) drive from hips / legs as well as give us a nice cardio kick<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Do It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If there are stability issues or any medical conditions that impact would be detrimental to.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>The Squat In Summary</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There’s a lot of fuss about squatting &amp; much debate about which one is best &amp; it’s the exercise I get the most questions about. But let me try to sum this up in my opinion….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We should all have the capacity to squat to some degree. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each time you sit / stand you are performing a squat</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Squatting is what we have done for millions of years to empty our bowls, make &amp; eat meals &amp; to have a rest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is only in the recent technical era we have really stopped squatting </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can learn to squat again though! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The squat is defined simply as ankle, knee &amp; hip flexion/ extension </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Squatting can be done to various ranges to remain within safe parameters during a periodised training plan to improve your squat <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://bit.ly/ProjectSquat\" target=\"_blank\" rel=\"noreferrer noopener\">> (opens in a new tab)\">&lt;&lt;see A2G project>></a><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A certain style of squat can be safe for one lifter but not for another due to the individuals intrinsic biomechanics</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The squat is a fantastic exercise to strengthen the lower body &amp; train stability &amp; control of the trunk </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The squat style should match the goal </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Using iMoveFreely has proven to dramatically improve the squat for hundreds of people<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But IMO everyone SHOULD be able to squat <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>----------------<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><em>Top 10 Best Moves To Use In The Gym</em></strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ok so I mentioned my original blog idea earlier and that I would come back to it, so….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Why pick 10 when there are LOADS!?!??!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well if we were to fill a blog with ALL of the great moves we like, see or use in the gym it would take a very long time. So my 10 go to moves during various phases of any clients training planning will be revealed over this series of blogs. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We all understand variety is healthy and fun but if you could pick your top 10 gym moves what would they be and why?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s what I am going to TRY to do in this blog series. Choosing favourites will be more generic here in terms of my top 10 for the reasons as stated above, which is why I want to explore each one in a little detail each week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also they are in no particular order…<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Squat - see above!</li><li>Walking Lunge </li><li>Deadlift</li><li>Turkish Get Up</li><li>Military Pressing</li><li>Push Up</li><li>Pull Up</li><li>Hip Adduction / Abduction </li><li>Hip Flexion</li><li>‘Mobility’ Drills </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>P.S. OK OK OK I have x 11 I cheated ….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Walking</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->','Top 7 Squat Styles, When & Why To Use Which With Your Personal Training Clients','','draft','closed','closed','','top-7-squat-styles-personal-trainers','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=12073',0,'post','',0),(12076,0,'2019-03-11 18:26:22','2019-03-11 18:26:22','','Top 7 Squat Styles For Personal Trainers - Biomechanics Education','','inherit','open','closed','','top-7-squat-styles-for-personal-trainers-biomechanics-education','','','2019-03-11 18:26:22','2019-03-11 18:26:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Top-7-Squat-Styles-For-Personal-Trainers-Biomechanics-Education.png',0,'attachment','image/png',0),(12216,3,'2019-03-18 15:48:51','2019-03-18 15:48:51','<!-- wp:paragraph -->\n<p><br>To continue on &amp; having discussed 7 squat variations last time I felt this would be a great time to also discuss lunges, their variations, value, risk factors along with regressions &amp; progressions for programming into your clients training plan. Lunges are a fantastic alternative to the squat, since they utilise the same joint actions. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The lunge, in my opinion, is fabulous way of conditioning the lower body for hypertrophy, strength, shape and stability all in one simple movement. The increased challenge compared to the squat is in the balance upon and asymmetrical base of support. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Like the squat there are several variations that make this movement interesting as well as easy to regress or progress within your clients training plan. Let’s discuss..</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style a). Static Lunge </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One foot placed in-front of the body, the other foot behind resting on the ball of the foot with the heel lifted. The width of stance can be altered however generally there is more balance if done with a natural hip to shoulder width between the feet when looking into the mirror. Also generally the body will be positioned midway between the 2 feet. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The individual moves straight down &amp; up with or without bar using knee, hip and ankle flexion &amp; extension.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Great hip extensor &amp; thigh conditioner</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Great for lower limb stability - If your client is ready for this as part of their programme  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Allows individual to achieve increased range of motion under load through the hip in particular, compared to the squat for example. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If an individual struggles with balance, coordination and/ or basic leg strength this could be a very challenging move. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Body weight low range squatting possibly holding onto a static support might be a regression option here.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style b). Walking Lunge </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As the title states this type of lunge uses a walking motion. Including a deep lunge down &amp; up for each step taken <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A personal favourite again as a variation with great transference into movement health &amp; sport.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Great for fuller range through hips under a variable functional load.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Increased load through each leg versus a body weight squat</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also allows for variations (like the squat) in terms of equipment. Ie back bar position, front bar position, overhead bar, single arm overhead KB/DB, suitcase carry single or double KB/DB etc<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Again if the individual struggles with coordination and/or lower body strength this maybe too advanced initially. However shallow ranges might be an option initially performed slowly to allow time to control the movement.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style c). Bulgarian Split Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With the back leg elevated upon a bench/block or box, while performing a static lunging taking most of the load through the front leg, with the option of a bar across the back / shoulders. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Great to load front leg more specifically as it alters angles in relation to gravity &amp; load.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is an pretty advanced move particularly for a beginner due to the lack of neuromuscular feedback (ie balancing on just 2 points - front entire foot, back foot just the toes)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Balance will be challenged as well as strength. However using just bodyweight and possibly even using something static to hold onto for additional balance can help regress this great move.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style d). Pistol Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This move is in here because its single leg movement, although some may deem it a squat variation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Standing on one leg only, with the spare leg out in front, lower the body down into the A2G position (full range of motion) before standing back up - all while balancing only on the one leg. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is probably the toughest ‘lunge’ type of movement but it has lots of crossover considering that, even with only body weight, it is a very advanced &amp; for most a massive challenge. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Can be done using a TRX for support but this can also result in a cheat compensation by using the upper body to pull out of bottom position. However this ‘cheat’ is also a great regression<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The large increase of forces transferring through the knee taking the entire body weight through its full range.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style e). Shrimp Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is almost the same as the pistol squat above.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However the spare leg is held behind the body so the back knee may touch the floor at the bottom position or the individual may kneel between alternating reps.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also often performed from a kneeling start position stepping forwards into a single leg ascending lunge movement.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also often performed holding a rack or static rig for assistance or as a cheat or regression<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Same as pistol squat.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Same risk factors as the pistol squat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style f). Corkscrew Lunge</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Similar to a Bulgarian - this style of lunge adds the component of literally a ‘corkscrew’ motion on the front hip.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Back leg elevated on a bench or box. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As the individual lowers the body into the front leg, they allow the pelvis to adduct towards the front leg by dropping the hip (on the back leg). This creates a transverse loading &amp; the need for some hip abduction in the front leg on both the eccentric &amp; concentric phases.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is a fantastic move for really challenging pelvic strength as it brings in frontal, transverse loading on the front hip thus creating a variable of planes into the movement - possibly closer to a functional for most sports.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s an advanced move for someone with a lack of coordination and/or lower body strength.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style g). Plyometric (or plyo) Lunge</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The most commonly used version of this is when the individual starts in a bodyweight regular lunge position. Then having lowered down to the bottom position, used the momentum of swinging the arms (forwards &amp; upwards) to assist jumping in the air, while switching the legs mid air to then land in the opposite leg forwards - repeated a certain number of times.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is a fantastic cardio kicker &amp; helps to develop explosive leg power as well as leg strength, conditioning etc.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Again a tough option for those with less balance &amp; coordination.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Summary </strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The lunge has been a favourite of mine for 3 decades. It’s versatility &amp; transference, again similar to the squat, gives it huge value in any clients training programme. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Everything we do sagittally with our lower body during movement will be a variation of a squat or lunge, thus giving us all good reason to include them into our clients training plans.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please recognise the variations for periodisation &amp; understand how you might develop a programme for an individual that fits their ability &amp; goal.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Next Time...The Deadlift</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','A Personal Trainers Guide To 7 Styles Of Lunge: When & Why To Use Which','','draft','closed','closed','','a-personal-trainers-guide-to-7-styles-of-lunge','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=12216',0,'post','',2),(12217,0,'2019-03-18 15:43:47','2019-03-18 15:43:47','','Personal Trainers Guide To Lunges','','inherit','open','closed','','personal-trainers-guide-to-lunges','','','2019-03-18 15:43:47','2019-03-18 15:43:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Personal-Trainers-Guide-To-Lunges.png',0,'attachment','image/png',0),(12344,3,'2019-03-25 12:29:45','2019-03-25 12:29:45','<!-- wp:paragraph -->\n<p>The deadlift is one of the first moves I learned during my basic L2 training almost 3 decades ago. The reason given for this was that it is one of the basic moves we should understand how to perform to safely move large weights from the floor. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Dead</em>-Lift = lifting a ‘dead’ weight<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now for some this movement is their nemesis. This is possibly because of the force predominantly going into the lower back during the lift and the commonality of low back ‘issues’ today.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However it is a combination of joint actions and forces that we are likely to experience during our daily lives in some form or another. &nbsp;So it may be worth exploring as a component of our clients training plan. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What needs to be considered is how well our clients are prepared for performing this movement, combined with the risk factors of ranges and loads. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember in its simplest form it is a fundamental movement that is basically hip extension. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This might even be chosen instead of squats to load the hip extensors as it might feel better for some to have the load hanging in front instead of being placed on top of the body. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yet the ability for our client’s to increase the weight might be more closely linked to their grip strength rather than simply the strength of their hip extensors</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style a). Stiff Leg Deadlift</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":12347} -->\n<figure class=\"wp-block-image\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/03/Stiff-leg-Deadlift-Biomechanics-Coach-1024x743.png\" alt=\"\" class=\"wp-image-12347\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This version basically requires the lifter to lift a deadweight (usually a barbell) from the floor with straight or ‘stiff’ legs. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s great for a large ROM at the hip &amp; good for hamstring &amp; sciatic nerve mobility <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a huge load going into the spinal extensors so any fragility there, this is a risky move with its shear force. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also lifters with a tight nervous system probably won’t like this movement due to increased tension under load across the entire posterior system.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style b). Single Leg Deadlift </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":12346} -->\n<figure class=\"wp-block-image\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/03/Single-Leg-Deadlift-Biomechanics-Coach-1024x718.png\" alt=\"\" class=\"wp-image-12346\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The same as above but with only one foot on the floor. &nbsp;Usually performed with the other leg lifting straight out behind the body as a counter balance. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s great for an added stability challenge and can really focus on the ‘anti rotation’ aspect at the frontal plane loading of the hip of the standing leg. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The load is likely to decrease considerably due to only utilising the strength of one set of hip extensors. Also due to the decrease in neuromuscular feedback (less base of support) balance maybe an issue for some clients to control.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style c). Romanian Deadlift</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is still a hip extension movement however Romanian deadlifting is with some degree of knee flexion. Also sometimes performed straight from, &amp; back onto, a rack.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This variation helps if your nerve is tight by taking some tension off at the knee due to the flexion. It can also reduce some of the spinal extensor loading depending upon the centre of gravity shift. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This variation uses less ROM on knee flexors / hamstrings. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style d). Sumo Deadlift</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The bar is lifted from the floor with the feet positioned as wide as comfortable for the lifter. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Powerlifters often use this version due to the closer proximity to the floor while lifting heaviest 1 RM possible thus meaning a reduced ROM is required to shift the heaviest weight possible. Also a nice option for strengthening the hip extensors at a different angle.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hip joint geometry variations might alter risk factor of this more extreme position under load. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Summary</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hip extensor strength is a necessity for force production through the pelvis during walking running, lowering the body, standing up, climbing stairs etc but also for stability around the lower body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We are swiftly losing hip extensor strength through our lifestyles that tend to have us weight bearing (sitting) on this area more than utilizing it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So considering how you move day to day and you are likely to realise how often you hinge at your hips. A lack of strength/conditioning in this area is not only going to affect our movement quality (ability to propel the body forwards, change direction safely with control amongst other things) but will also result in flatter buttock aesthetics.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Therefore surely some variation of a deadlift might be a good idea in any training programme for good healthy biomechanics and lifting, don’t you agree?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','The Deadlift - Should We Or Shouldn’t We?','','draft','closed','closed','','the-deadlift-should-we-or-shouldnt-we','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=12344',0,'post','',0),(12345,0,'2019-03-25 12:09:23','2019-03-25 12:09:23','','Personal Trainers - Deadlift - Biomechanics Coach','','inherit','open','closed','','personal-trainers-deadlift-biomechanics-coach','','','2019-03-25 12:09:23','2019-03-25 12:09:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Personal-Trainers-Deadlift-Biomechanics-Coach.png',0,'attachment','image/png',0),(12346,0,'2019-03-25 12:12:15','2019-03-25 12:12:15','','Single Leg Deadlift - Biomechanics Coach','','inherit','open','closed','','single-leg-deadlift-biomechanics-coach','','','2019-03-25 12:12:15','2019-03-25 12:12:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Single-Leg-Deadlift-Biomechanics-Coach.png',0,'attachment','image/png',0),(12347,0,'2019-03-25 12:13:23','2019-03-25 12:13:23','','Stiff leg Deadlift - Biomechanics Coach','','inherit','open','closed','','stiff-leg-deadlift-biomechanics-coach','','','2019-03-25 12:13:23','2019-03-25 12:13:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Stiff-leg-Deadlift-Biomechanics-Coach.png',0,'attachment','image/png',0),(12393,0,'2019-03-27 14:34:30','2019-03-27 14:34:30','','filip-mroz-167499-unsplash','','inherit','open','closed','','filip-mroz-167499-unsplash','','','2019-03-27 14:34:30','2019-03-27 14:34:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/02/filip-mroz-167499-unsplash.jpg',0,'attachment','image/jpeg',0),(12394,0,'2019-03-27 14:35:44','2019-03-27 14:35:44','','william-stitt-111353-unsplash (1)','','inherit','open','closed','','william-stitt-111353-unsplash-1','','','2019-03-27 14:35:44','2019-03-27 14:35:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/02/william-stitt-111353-unsplash-1.jpg',0,'attachment','image/jpeg',0),(12400,0,'2019-03-27 15:24:36','2019-03-27 15:24:36','','tammy-gann-733591-unsplash','','inherit','open','closed','','tammy-gann-733591-unsplash','','','2019-03-27 15:24:36','2019-03-27 15:24:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/03/tammy-gann-733591-unsplash.jpg',0,'attachment','image/jpeg',0),(12493,3,'2019-04-01 17:40:31','2019-04-01 17:40:31','<!-- wp:heading {\"level\":4} -->\n<h4><strong>Frontal plane hip training can be so underrated!</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In terms of function and stability trainers sometimes miss this epic contribution to powerful pelvic biomechanics and reducing the risk of groin strains and hernias.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our frontal plane strength ratio requirement is 1:1 as suggested George Davies, who wrote about joint strength ratios and who found that hip adduction &amp; abduction should be able to generate around 100% of our body weight.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What do frontal plane exercise look like?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well there are hip abductor/adductor machines in gyms that are perfect for this type of exercise.  However they are often categorised as not being <em>functional</em> due to the isolated way they condition hip strength. So it might be prudent to consider a couple of things before we avoid these machines altogether.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol>\n<li>We cannot be fully functional if we are not functioning well first - function requires each component / area involved to be able to contribute its role in movement. If any area does not do this then we could be at risk of compensation and isolation training can be a way to optimise function in a specific area to reduce risk.</li>\n<li>Considering what is functional today, ie sitting at a desk, then the definition of ‘function’ is actually more accurate to this machine than maybe we give it credit for!</li>\n</ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style a). Seated flexed hip abductor/adductor machine exercise </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A great simple starter exercise for those wanting to focus on strengthening these 2 sides of the pelvis!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Using this to build up foundation of frontal plane strength, with the aim being to feel similar in strength during both actions by using the same reps, sets and weights. This can indicate a balance of strength which is desirable in most individuals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":12504} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-12504\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Hip-abduction-adduction.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style b). Seated hip abductor/adductor machine exercise leaning forwards or leaning back</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We could take advantage of altering the angle at the hip by leaning forwards to decrease the hip angle or leaning back to increase the hip angle might make for a nice adaption on this machine.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style c). Seated hip abductor /adductor machine kneeling on the seat facing backwards.</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let me invite you to consider alternative ways to use this machine for the benefit of great hip conditioning. Kneeling on the seat while facing backwards and placing the feet on the pads will offer a fantastic alternative to be able to condition internal or external rotation of the pelvis. Being able to condition hip rotation while it is in full extension is quite unique and also prudent for all round pelvic strength.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style d). Standing hip abductor with a band</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Standing so that the hip is extended to then strengthen hip abduction/adduction is now advancing the client towards a more neuro-muscularly challenging method for improving both pelvic and knee stability.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Start with the client holding onto something fixed, like a smith machine or squat rack, while a band is positioned around, and above, the knees. Then by moving the leg away form the midline they will be loading their abductors dynamically on the moving hip and statically on the standing leg hip. </p>\n<p>Progressing to the band below the knees and then to the ankles will gradually increase the lever length making the same exercise harder. The progressing to doing the same exercise with less support, maybe only holding on with one hand instead of 2. They could continue until they are able to perform them without holding on at all if possible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Similarly this could be done with a cable which would allow for a higher increase in resistance due to the weight options.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style e). Side lying body weight lift (adductors/internal rotators) or Copenhagen variations.</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lying on the side, on the floor, knees bent and close to a bench/padded box. While resting the upper body on the elbow to begin with. Next place the top knee on top of the bench. By pressing this top knee into the bench this will lift the body away from the floor with the adductors as the prime movers. The bottom leg can be on the floor or off the floor for added resistance and to load the adductors of the bottom leg. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Adding rotation during the lift can be a nice alternative.  Turning the body under the top hip will influence both the hip and the shoulders stability and control.</p>\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are multiple ways to condition frontal hip strength with many other ways to work these muscle groups but these suggestions are just to get you and you started. Would you like to find out how you can join our Biomechanics Coach course and learn hundreds of ways to strengthen your clients bodies!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:embed -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} --><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results? Email me now!</h2>\n<h2>rachel@biomechanicseducation.com</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>\n<!-- /wp:image -->','Frontal Plane Hip Conditioning - A Guide For Personal Trainers','','draft','closed','closed','','hip-adduction-abduction-guide-for-personal-trainers','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=12493',0,'post','',0),(12497,0,'2019-04-01 17:35:08','2019-04-01 17:35:08','','Hip Abduction - Guide For Personal Trainers','','inherit','open','closed','','hip-abduction-guide-for-personal-trainers','','','2019-04-01 17:35:08','2019-04-01 17:35:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Hip-Abduction-Guide-For-Personal-Trainers.png',0,'attachment','image/png',0),(12504,0,'2019-04-01 17:47:06','2019-04-01 17:47:06','','Hip abduction adduction','','inherit','open','closed','','hip-abduction-adduction','','','2019-04-01 17:47:06','2019-04-01 17:47:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Hip-abduction-adduction.jpg',0,'attachment','image/jpeg',0),(12547,0,'2019-04-03 13:35:45','2019-04-03 13:35:45','','william-stitt-111353-unsplash-2','','inherit','open','closed','','william-stitt-111353-unsplash-2','','','2019-04-03 13:35:45','2019-04-03 13:35:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/william-stitt-111353-unsplash-2.jpg',0,'attachment','image/jpeg',0),(12781,3,'2019-04-08 18:08:48','2019-04-08 18:08:48','<!-- wp:paragraph -->\n<p>These bad boys, like our abd/adductors that we spoke about last week require 1:1 ratio with their antagonist buddies, the hip extensors.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yet our hip flexors can very underused AND under trained, in fact often totally ignored in our exercise programming.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Unless of course you’re a Crossfitter! These guys use them a lot in their ‘toes to bar’ for example. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However individuals, possibly like yourself, who do not do CrossFit OR those who might find toes to bar an advanced move (like me), well we’re going to explore other ways to condition them ;)<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s quite possible that the underuse of hip flexor training could be due to perceived risk. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is linked to a common complaint &amp; our hip flexor attachments. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Hip Flexors &amp; Low Back Pain</strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Low back pain (LBP) is still on the rise &amp; frustratingly common, to the point of a seemingly complete acceptance from many that LBP is NORMAL!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Many simply accept it as part of their day to day chat, brushing any major concern aside, or at least any fervent attempts to address it, because ….”<em>well hey we ALL have LBP, right…</em>?!”<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WRONG <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s common but NOT <em>normal</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So you may be wondering how the hip flexors in the front of the hip can create a concern about LBP… unless of course you understand their attachments &amp; force production.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"width\":540,\"height\":513} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://mail.google.com/mail/u/1?ui=2&amp;ik=f04949745e&amp;attid=0.1.2&amp;permmsgid=msg-f:1630253690920560958&amp;th=169fd3182d16e93e&amp;view=fimg&amp;sz=s0-l75-ft&amp;attbid=ANGjdJ97flSaSvndxAMEYjrUyBCpjHrw8zzo_25m0CZprfYl7q4073wnaQ38AaTMxr3wsQD_HoFIRT-u2pFf8O-2rC7UpfkMpgoJFluemRSrca2cJ2GPY4NlVhXubAQ&amp;disp=emb\" alt=\"\" width=\"540\" height=\"513\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>The Anatomy Of The Hip Flexors </strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Specifically the large iliopsoas muscle attaches to the transverse processes of your lumbar vertebrae 1-4 - see image above.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Thus resulting in a shear force upon the lumbar spine when they contract.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This may well be contributing to our LBP but please note; it’s only one example NOT a definitive cause for yours.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now IF the hip extensors contribute to a ‘co-contraction’ balancing out this shear force<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the force is low <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are in good intrinsic Biomechanical shape</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This won’t be the issue <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing LBP there maybe some fear avoidance of hip flexor loading/strengthening </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A risk when hip flexor loading (case dependant) <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>How &amp; When?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So how do we know how &amp; when to exercise our hip flexors? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well there is a simple method of periodisation to </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Prepare your pelvis </li><li>Condition (strengthen) them safely </li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We can also test them ! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>The Modified Thomas Test</strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"width\":644,\"height\":471} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://mail.google.com/mail/u/1?ui=2&amp;ik=f04949745e&amp;attid=0.1.1&amp;permmsgid=msg-f:1630253690920560958&amp;th=169fd3182d16e93e&amp;view=fimg&amp;sz=s0-l75-ft&amp;attbid=ANGjdJ_SSQDvpXLy8D98j1g_QXU30WGBym-lMeoVpNOWpWVqqZVrMxK_hyMCulhiHKqN2UwylPjqzBzat-6MoAwsHaE_jMntYDfVRNQft8Hd_3AI2EYQLQiulcxx75w&amp;disp=emb\" alt=\"\" width=\"644\" height=\"471\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>*Image taken from Brentbrookbrush.com<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So this pelvic function test will identify the integrity of the hip flexors &amp; is much more objectively measured by someone else, like a Biomechanics Coach, click here to go and find your local Biomechanics Coach.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But a quick &amp; simple observation you could try for yourself would be to lie on a bench or plyo box. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Make sure your bum crease is at the very edge of the bench/box.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With one knee hugged to our chest, allow your other leg to lower down. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Note: if you have long legs &amp; your foot touches the floor this may skew the test </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now try to position your top leg/thigh so that it’s as close to your chest as it can go WITHOUT tipping your pelvis back posteriorly<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once here you can then either try &amp; gauge if your knee is lower than your hip <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Balance your phone at the side to film how low it drops <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>The Thomas Test: The Result </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your lateral condyle (nobbly bit on outside of your knee at the front of the crease) &nbsp;is below your greater trochanter (big bony bit at the centre of your lateral hip) you passed </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If not then we need to prepare your hip flexor BEFORE loading it <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If there is an asymmetry then we need to prepare the higher knee side as this one has come up as positive for a limitation <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Go on off you go test em….&amp; let me know <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How did you do????</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What Should You Do Now?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So if you came up as high / positive then we should probably apply an anti spasm to your hip flexors first </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Hip Flexor Anti Spasm </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now this muscle ‘state’ is not clinical &amp; can be present without discomfort as it’s simply an adaption, possibly to sitting a lot <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you have any amount of discomfort please seek face to face professional help <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>More often than not stretching is prescribed for ‘tight’ hip flexors. However stretching may be too aggressive for this type of muscle state <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So we are going to apply an anti spasm known as ‘<em>post contraction sensory discharge’</em> Ribot-Ciscar et al (1991) <a href=\"https://www.biomechanicseducation.com/1333-2/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"(See a quick explanation here) (opens in a new tab)\">(See a quick explanation here)</a><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lie on your side, position your top foot in front of your bottom thigh. Lie your head down on your bottom arm - relax.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Slightly bend your bottom foot back but keep that hip open without stretching it.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://mail.google.com/mail/u/1?ui=2&amp;ik=f04949745e&amp;attid=0.1.3&amp;permmsgid=msg-f:1630253690920560958&amp;th=169fd3182d16e93e&amp;view=fimg&amp;sz=s0-l75-ft&amp;attbid=ANGjdJ-G4fhMLazEoPcBjJGNNxoXLHs4mzb1KNCtYHhRsYZ9qP8ZiED9JrkuGW_6LdzVm9hevMfo6YdVuclIWMIPCBA658rcHk3Rz5ZEERjnZ_k8VNIXI1a0jb6DZwk&amp;disp=emb\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br>Now push the bottom thigh into the other foot with 20% of your maximum effort. Hold for 20 seconds &amp; repeat 4 times. If necessary do the other side (I suggest you always do both sides as good practise to avoid creating another asymmetry)<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Re-test in the bench/box<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How did you do??</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Periodisation Programme </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Once you feel happy that your hip flexor function ROM is improved or ok we should consider firstly working the antagonist. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WHY??</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Reciprocal Inhibition </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One of the first things we are taught as L2 gym instructors is that all muscles work in pairs. The agonist (the prime mover) will influence the antagonist (the opposite muscle) through what’s known as the law of reciprocal inhibition. This law stops us hurting ourselves as it means both muscles cannot pull or contract isotonically at the same time.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>IF your hip flexors we’re in a sub-clinical adaptive state of constant contraction, or spasm, then this would influence the function hip extensor group or the antagonist.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT WAIT……!? Weak Glutes???<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>SOOOOOOOOOO this may challenge some preconception about the term ‘weak’ being used for this glute problem epidemic<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Anyhoooooooo….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Antagonist Conditioning </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At this point doing strength work on your hip extensors will do 2 things </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1). Strengthen your hip extensors </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2). Aid the improved function in the hip flexors via the law of reciprocal inhibition </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Hip Extensor Exercises </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Glute Bridges</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Squats</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Deadlifts</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Good Mornings</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To name a few….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Back To The Front….</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>….of your pelvis, for hip flexor conditioning or strength work…...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Progressive programming might be prudent here in terms of bringing the strength back gradually since the muscles may well have been ‘coping’ up to now, so we might want to start at low level stuff<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Supine toe taps - neuromuscularly easy since the base of support is large. Also if we start with one foot on the floor &amp; with knee bent lift &amp; lower the other one this gives a short lever but we can progress to an extended leg for a longer lever &amp; harder follow on.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rules are simple here but possibly require more focus than we realise to truly achieve.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your Spine should not lift, nor lower, during any part of the movements. To test yourself rest your finger tips under your lumbar spine &amp; be sure that the pressure does not change on your hands while lifting, lowering &amp; moving your legs <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Harder than it sounds eh?!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Ok let’s explore progressions...</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dead bugs come in a variety of interpretations but the above exercises could be defined as a regressed dead bug. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>My understanding of dead bugs is that while supine, both arms &amp; legs move around to challenge ‘the trunk’.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Part of that trunk will be your hip flexors due to their involvement here. Yet these are still neuromuscularly relatively simple albeit can be progressed &amp; regressed with lever length alterations. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Prone Hip Flexor Loading</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Progression maybe done prone, for less base of support / neuromuscular feedback (ie 3-4 points of contact). For example mountain climbers where you bring the knee toward the hip (hip flexion) then switch legs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Increase Of Instability </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Use of a stability ball would double the muscular effort, should your place your toes on top of one &amp; draw your knees to your chest, rolling the ball with you. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Known as a jack knife this is pretty advanced for many IF done properly with the spine completely stiff &amp; still.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Hanging Variations</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then there are the hanging variations like knee raises performed either in a Roman chair which is easier (back is fixed to pad) than hanging from a free bar (only contact is the hand grip)<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So please understand there are of course thousands of variations to hip flexor training &amp; this is simply a few suggestions. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The main focus being on preparation &amp; periodisation of hip flexors.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>They are the only ones you will ever have so let’s look after them! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As always any questions hit me up at <a href=\"mailto:Rachel@biomechanicseducation.com\">Rachel@biomechanicseducation.com</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->','Are Your Hip Flexors Contributing To Your Back Pain? And What Can You Do About It If They Are?','','draft','closed','closed','','hip-flexors-back-pain','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=12781',0,'post','',0),(12786,0,'2019-04-08 17:52:22','2019-04-08 17:52:22','','Hip Flexors & Back Pain','','inherit','open','closed','','hip-flexors-back-pain-2','','','2019-04-08 17:52:22','2019-04-08 17:52:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Hip-Flexors-Back-Pain.png',0,'attachment','image/png',0),(12883,3,'2019-04-15 10:47:26','2019-04-15 10:47:26','<!-- wp:paragraph -->\n<p>Let\'s talk about the pull up and rowing today. This style of exercise is a big part of programmes these days due to our degraded movement quality coming from ‘over protraction’ of the shoulders or the ‘round-shouldered’ posture that we commonly see. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However there is a problem with simply training the back muscles to improve this issue.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What needs to be considered is the root causes of our ‘issue’ first. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Is&nbsp;More&nbsp;Pulling&nbsp;Actually The&nbsp;Solution?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In my professional opinion very often the true problem for many is Pec Minor. Why? Well this is a muscle I have written about a few times because of the magic that can occur when its provided with the capacity it’s expected to have.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>The Anatomy Of The Pecs...</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pec Major &amp; Minor are often grouped together as ‘chest’ muscles and yet they provide quite different movements as you can see when looking at these images here…. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pec Major is a shoulder adductor, flexor and internal rotator due to ist attachments from the clavicle, sternum, &amp; greater trochanter of the humerus. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":12884,\"width\":576,\"height\":768} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Anterior-View-of-Pectoralis-Major-Biomechanics-Education-Antony-For-Personal-Trainers-768x1024.jpeg\" alt=\"\" class=\"wp-image-12884\" width=\"576\" height=\"768\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Pec Minor however attaches to the corocoid process, the most anterior part of the scapular….see here…..</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":12886,\"width\":576,\"height\":768} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Anterior-View-of-the-Scapula-768x1024.jpeg\" alt=\"\" class=\"wp-image-12886\" width=\"576\" height=\"768\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>….then across to the 3rd/4th/5th ribs that mean it will protract (also known as scapular abduction), depress and rotate the scapula. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":12885,\"width\":576,\"height\":768} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Anatomy-of-Pec-Minor-Biomechanics-Education-768x1024.jpeg\" alt=\"\" class=\"wp-image-12885\" width=\"576\" height=\"768\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Try This …</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To appreciate the influences of having a dysfunctional pec minor try this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stand Up</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Protract both shoulders as if yours are dysfunctional</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Keeping your shoulders ‘rounded’ try to lift your arms over head &amp; then back down….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Try to extend your thoracic spine with your shoulders protracted….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s really quite detrimental to your movement quality, right?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now imagine walking around, trying to function normally with that problem day to day. Over time it is likely to cause further issues that will make your body grumble. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What&nbsp;It&nbsp;Looks&nbsp;Like&nbsp;It&nbsp;Needs&nbsp;Versus&nbsp;What&nbsp;It&nbsp;Actually&nbsp;Needs</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well this ‘poor posture’ LOOKS like it requires a ‘stronger back’ doesn’t it…? Hence most programmes will contain back training for this very reason.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WAIT<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What’s the problem or the root cause here….?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It isn’t simply a ‘weak’ back is it?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Remember The Law!</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yeah that law of reciprocal inhibition? This one….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Reciprocal inhibition</em></strong><em> describes the process of muscles on one side of a joint relaxing to accommodate contraction on the other side of that joint. ... Joints are controlled by two opposing sets of muscles, extensors and flexors, which must work in synchrony for smooth movement.</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well if the pec minor is in a constant contraction state it is likely to require addressing first, don’t you agree? This then gives your retractors/back muscles a fighting chance in fully contributing to their role in movement. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Consider that, ok your client may well be rowing, pulling etc but how much are those scapula retractors doing? Can we encourage them to do more and give us more quality to our back moves?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Let\'s&nbsp;Start&nbsp;By&nbsp;Releasing&nbsp;The&nbsp;Pec&nbsp;Minor</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well in advance of the back exercises below we might want to consider improving the function of or pec minor muscle first, do you agree?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So place your hand onto the front of the opposite shoulder like the image below. Then press your shoulder into your hand using 20% of your maximum effort and hold it for 20 second, repeat x 4 and then the same on the opposite side.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":12887,\"width\":512,\"height\":768} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Pec-Minor-Anti-Spasm-Biomechanics-Education-Biomechanics-Coach-683x1024.jpg\" alt=\"\" class=\"wp-image-12887\" width=\"512\" height=\"768\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Now&nbsp;Onto&nbsp;Back&nbsp;Training</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Does It Look Like?</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><br></strong>Now prior to the big moves we should probably include some isolation work to take advantage of that law of reciprocal inhibition. What this means is if we break down the rowing movement for example we can really get those retractors involved while at the same time encouraging those protractors to ‘let go’.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well while rowing we probably want to make sure this is happening too…reps and sets as per your regular programming.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>PURE retraction is a very isolated single joint movement, which is great to develop functional capacity once we add other joint actions….not as easy as it looks! Try it and let me know. <br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":12888} -->\n<figure class=\"wp-block-image\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Pulling-Exercises-Retraction-Biomechanics-Coaching-1024x683.jpg\" alt=\"\" class=\"wp-image-12888\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>THEN we can start adding more components to get back to what we know more commonly as <em>functional (whatever that is!?) </em>back exercises with a periodised plan like:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Resistance Band Retractions with a Row/Fly (shoulder extension added onto the end)</li><li>Cables - same as above but more kilos can be added to increase intensity. </li><li>Barbell Bent Over Row/Fly - tipping into a fixed hip hinge means we should consider the lower back will be isometrically loaded for the duration of this exercise.</li><li>Dumbbell Single Arm Row/Fly - as above but with an asymmetrical load on the trunk stabilisers.</li><li>TRX Inverted Rowing - This is great for altering the angle of lean v’s gravity. Be mindful of the instability it also creates though.</li><li>Single arm would be even more challenging.</li><li></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>So whether its in your own training or when working with clients, try the pec release before you start a day session which includes pulling or rowing. And see if it makes a difference - not jsut in their posture, but perhaps being able to actually contract the right muscles groups, they might \'feel\' it in a different place and their movement might improve. Worth giving it a go right?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The information I pass on is aimed to help you in 2 ways.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1). To offer ideas and maybe something different to add to your programming<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2). Also to encourage autonomous exploration of the wonderous ‘WHYS’ when it come to working out the human body, how it works and how, as coaches and trainers, we can help. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>CHALLENGE EVERYTHING!!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','Why More \"Pulling\" Might NOT Be The Answer To Those Rounded Shoulders','','draft','closed','closed','','why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=12883',0,'post','',0),(12884,0,'2019-04-13 14:29:43','2019-04-13 14:29:43','','Anterior View of Pectoralis Major - Biomechanics Education - Antony For Personal Trainers','','inherit','open','closed','','anterior-view-of-pectoralis-major-biomechanics-education-antony-for-personal-trainers','','','2019-04-13 14:29:43','2019-04-13 14:29:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Anterior-View-of-Pectoralis-Major-Biomechanics-Education-Antony-For-Personal-Trainers.jpeg',0,'attachment','image/jpeg',0),(12885,0,'2019-04-13 14:30:44','2019-04-13 14:30:44','','Anatomy of Pec Minor - Biomechanics Education','','inherit','open','closed','','anatomy-of-pec-minor-biomechanics-education','','','2019-04-13 14:30:44','2019-04-13 14:30:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Anatomy-of-Pec-Minor-Biomechanics-Education.jpeg',0,'attachment','image/jpeg',0),(12886,0,'2019-04-13 14:33:22','2019-04-13 14:33:22','','Anterior View of the Scapula','','inherit','open','closed','','anterior-view-of-the-scapula','','','2019-04-13 14:33:22','2019-04-13 14:33:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Anterior-View-of-the-Scapula.jpeg',0,'attachment','image/jpeg',0),(12887,0,'2019-04-13 14:36:48','2019-04-13 14:36:48','','Pec Minor Anti Spasm - Biomechanics Education - Biomechanics Coach','','inherit','open','closed','','pec-minor-anti-spasm-biomechanics-education-biomechanics-coach','','','2019-04-13 14:36:48','2019-04-13 14:36:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Pec-Minor-Anti-Spasm-Biomechanics-Education-Biomechanics-Coach.jpg',0,'attachment','image/jpeg',0),(12888,0,'2019-04-13 14:39:35','2019-04-13 14:39:35','','Pulling Exercises - Retraction - Biomechanics Coaching','','inherit','open','closed','','pulling-exercises-retraction-biomechanics-coaching','','','2019-04-13 14:39:35','2019-04-13 14:39:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Pulling-Exercises-Retraction-Biomechanics-Coaching.jpg',0,'attachment','image/jpeg',0),(12889,0,'2019-04-13 14:52:13','2019-04-13 14:52:13','','More Pulling & Rows Might NOT Be The Answer To Those Rounded Shoulders','','inherit','open','closed','','more-_pulling_-might-not-be-the-answer-to-those-rounded-shoulders','','','2019-04-13 14:52:13','2019-04-13 14:52:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/More-_Pulling_-Might-NOT-Be-The-Answer-To-Those-Rounded-Shoulders.png',0,'attachment','image/png',0),(13007,3,'2019-04-22 12:21:09','2019-04-22 12:21:09','<!-- wp:paragraph -->\n<p>Well of course we are living in this technical age where 92% of us in 2018 were bent over a mobile phone.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On average people check their phones every 12 minutes...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>40% of adults check their phone within 5 minutes of waking up (perhaps you are reading this blog in bed)...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Adults spend 2 hours 49 minutes each day on their phone (under the age of 24 and it rises to 4 hours a day)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Over the last decade a new repeated stress injury has arisen… <strong>Text Neck</strong>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Just think of your posture as you look at your phone, head forward, shoulders rounded, it doesn’t feel good does it?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Why am I sharing these stats with you?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well, <a href=\"https://www.biomechanicseducation.com/why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"last week’s blog discussing (opens in a new tab)\">last week’s blog discussing</a> the common ‘rounded shoulder’ issue caused a bit of a stir I felt we should elaborate further. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Along with phone usage, then take into account your daily routine, chances are you spend periods of your day sitting, right?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So we should start with trying to reduce long periods of time being static (both sitting &amp; standing). That’s the first thing to do. I mean for your clients who sit in offices all day, or if they work from home, just ask them to track their daily steps and see the results. Sometimes there is barely any movement at all.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Getting moving is a start, but may not fix any issues that have arisen due to years of sitting etc. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I would also get an assessment of your/your clients shoulders so we can correct &amp; improve function &amp; strength in this area. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Last week we talked about Pec Minor, its influence on shoulder function &amp; overall movement quality, if you missed that one you should start there, <a href=\"https://www.biomechanicseducation.com/why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders/\">just click here</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Improve Shoulder Stability&nbsp;-&nbsp;How&nbsp;&amp; Why</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>What we should also consider is role of the shoulders in terms of ‘stability’ too since often when we carry things we want to be stable at the shoulder. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also shoulder stability is crucial in people playing sports, both from an injury risk reduction and performance enhancement point of view. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The shoulder complex is complex in terms of actions since it is classified as a ball and socket joint. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This means they contribute to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Shoulder extension / flexion, internal / external rotation, adduction /abduction &amp; circumduction. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However something else we should consider in our clients training plan is the stabilisation component.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Improving Shoulder Stabilisation - Exercises To Add To Your Programming</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well of course once you have improved the function of pec minor and strengthened the scapular retractors, we can also add the static component to certain ‘movements’.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Examples of this would be during arm movements to keep the scapular completely or relatively still. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Overhead Military Pressing</strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This kind of movement will require controlled dynamic stability since shoulder abduction will mean the scapular will rotate somewhat. The question is how much control do you have in your scapular during an overhead press? Why not try it with a minimised amount of scapular movement.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Deadlifting </strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is also dependant upon ranges and styles of deadlift in relation to the amount the arm moves away from you. Hip hinging will generally require less movement around the scapular than overhead pressing. However good scapular control is required to stop the bar pulling the shoulder forwards in the descent. Great eccentric loading!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Push Ups &amp; Pull Ups</strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These 2 moves are commonly done poorly due to a lack of scapular control - me included! I have ‘flappy’ scaps that I am working no constantly due to daily demands and being slightly VERY mobile. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A great modification to both of these movements is to practise some sets without actually moving the arms, only using the scapular portion of the movement.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Prone Scapular Press Ups </strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get into a push up position but don’t use elbow flexion to lower your body ONLY use scapular retraction so you body lowers between your shoulders - keep arms locked straight. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then during the full push up try to keep your scapular under control!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Hanging Scapular Depressions </strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Similarly when hanging from your chin up/ pull up bar allow your shoulders to fully relax so your body hangs between your shoulders. Then ONLY depress your scapular, without bending the arms. So you challenge pure scapular motion. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The during the full pull up keep your scapular under control!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Rowing</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Again a movement commonly performed poorly quite likely due to the problems we discussed last week. Sort pec minor out then while rowing ensure scapular retraction is occuring, possibly by breaking the movement down as above. Pure scapular retraction practice first, then add the rowing action on with scapular control.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Overhead Squats </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally if you don’t have stable scapular this movement will certainly challenge it statically. However some of the above movements might be a better place to start OR overhead squat with a light bar focussing on the shoulder stability.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By developing the ability to stabilise the shoulder you are reducing the risk of injury and if your client is a sportsperson probably helping them improve their performance too. Good shoulder stabilisation often results in people seeing improvements elsewhere in their body and in other exercises too. You see once the shoulder can stabilise itself it can then apply more force in certain movements. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Go and give some of these ago, be consistent with them over a few weeks, don’t be the person who does them once and says it doesn’t work.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hopefully this series of blogs are contributing to some ideas for your clients training programme however if you REALLY want to KNOW how to bespoke their exercise plan with a periodised preparation plan then please get in touch!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','Are Shoulder Problems Are The New Low Back Pain?','','draft','closed','closed','','are-shoulder-problems-are-the-new-low-back-pain','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=13007',0,'post','',0),(13010,0,'2019-04-19 07:50:56','2019-04-19 07:50:56','','Are Shoulder Problems Are The New Low Back Pain_','','inherit','open','closed','','are-shoulder-problems-are-the-new-low-back-pain_','','','2019-04-19 07:50:56','2019-04-19 07:50:56','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Are-Shoulder-Problems-Are-The-New-Low-Back-Pain_.png',0,'attachment','image/png',0),(13140,3,'2019-04-29 15:25:06','2019-04-29 15:25:06','<!-- wp:paragraph -->\n<p>This little dude can have a huge impact upon our clients\' shoulder function too as being known as the \'Piriformis of the Shoulder\' implies!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>SO WHAT?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have previously discussed the key biomechanical pillar in our pelvic biomechanics, the Pirioformis muscle, in relation to squatting and also its influence on the quality of our pelvic function. Here we would like to discuss how the Infraspinatus muscle of the shoulder is very similar but in terms of our shoulder biomechanics. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Infraspinatus is a key biomechanical pillar in our upper body therefore if it isn\'t functioning to its full capacity there is a good chance your body will compensate for it. This alters the kinetic chain, which over time can be detrimental to the quality of our movement, this can then gradually make certain movements either uncomfortable or at least somewhat difficult. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So let\'s take a look at the anatomy of Infraspinatus and its role in movement.....</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Infraspinatus </h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":13146,\"width\":512,\"height\":354} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/image-1024x707.png\" alt=\"\" class=\"wp-image-13146\" width=\"512\" height=\"354\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>The Infraspinatus is a thick triangular muscle attaches onto the Infraspinous fossa (back of the scapular) and the greater tubercle of the humerus (it passes round the back of the upper arm onto the upper protuberance).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is primarily an external rotator of the humerus but also a shoulder stabiliser and will assist adduction from an abducted position. It is also commonly known as one of the major rotator cuff muscles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can see the similarities here and when we understand the Infraspinatus anatomy it allows us to understand how it can similarly influence shoulder movement similarly to the way the Piriformis influences the pelvis with rotation and abduction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Piriformis </h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":13147,\"width\":470,\"height\":512} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/image-1-940x1024.png\" alt=\"\" class=\"wp-image-13147\" width=\"470\" height=\"512\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong> &nbsp;What Does This Mean?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well this could impact on our clients ability to overhead press, stabilise the shoulder complex during a push or pull movement and it could also create discomfort and achy or \'tight\' feelings in the upper body which as many of us know make us tired, miserable and even stressed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Is Our Lifestyle Causing Infraspinatus Issues?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This muscle can often feels ‘stressed’ due to our lifestyles and the round shouldered posture of our clients that we have discussed previously.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you have ever had your Infraspinatus ‘rubbed’, (or god forbid frictioned!) by a massage therapist you will probably recall the discomfort vividly. However it quite likely needs a good ol ‘rub’ or some attention at least. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>How Can We Improve The Infraspinatus Function?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well yes we could get our noblers, lacrosse/tennis balls or @Pulseball\'s out and start writhing about putting pressure on it but first let’s desensitise it eh?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The good old anti spasm 20/20 technique we have been using can be applied to any muscle so let’s consider how we can use it to help our poor infraspinatus.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13148,\"width\":512,\"height\":768} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/image-2-683x1024.png\" alt=\"\" class=\"wp-image-13148\" width=\"512\" height=\"768\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>So place your opposite hand over your wrist/forearm and the press that arm out into your hand to resist external rotation 20% for 20 seconds x 4 reps.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>NOW grab your nobler / lacrosse ball or @pulseball. Lean the back onto a wall with your scapular pressing onto the equipment and either press hold until it tenderness dissipates or gently rub slowly. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>NOTE: First few goes this can feel quite uncomfortable but please please move slowly and only for around 1 minute per shoulder. It should NOT be ‘painful’ but a hedonistic discomfort that you can relax and breathe into.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once you have done this, we can move onto the Antagonist work and Activation<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Antagonist Exercise For The Infraspinatus</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13149,\"width\":768,\"height\":512} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/image-3-1024x683.png\" alt=\"\" class=\"wp-image-13149\" width=\"768\" height=\"512\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now grab a resistance band or cable for the antagonist work</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember we did this same process when working on pec minor - <a href=\"https://www.biomechanicseducation.com/why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"if you missed that, check it out here. (opens in a new tab)\">if you missed that, check it out here.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Reps and sets as per the strength programme for your client (8 x 2 - 15 x 3)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Infraspinatus - External Rotation Exercise</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13150,\"width\":768,\"height\":512} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/image-4-1024x683.png\" alt=\"\" class=\"wp-image-13150\" width=\"768\" height=\"512\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now move to do reps and sets on the agonist which would be external rotation. (8 x 2 - 15 x 3)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Why Do These Anti Spasm Techniques &amp; Exercises?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well all of this should contribute to improving your shoulder function and strength ratios for your client’s ability to perform any scapular movements or to increase their shoulder stability. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As mentioned at the beginning of the blog, for healthy upper body function or throwing, pulling, pushing, hitting a bat/ball, swimming and being generally stable we require great Infraspinatus function. Once the \'function\' is improved USE IT! This then conditions the patterns required for nutritious movement!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>MOVE WELL THEN MOVE MORE!</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Have a go yourself and then let me know what do you think?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','\'The Piriformis Of The Shoulder\' - Infraspinatus  - Guide To Programming For Personal Trainers','','draft','closed','closed','','the-piriformis-of-the-shoulder-infraspinatus-guide-to-programming-for-personal-trainers','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=13140',0,'post','',0),(13146,0,'2019-04-26 08:30:21','2019-04-26 08:30:21','','image','','inherit','open','closed','','image','','','2019-04-26 08:30:21','2019-04-26 08:30:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/image.png',0,'attachment','image/png',0),(13147,0,'2019-04-26 08:31:02','2019-04-26 08:31:02','','image','','inherit','open','closed','','image-2','','','2019-04-26 08:31:02','2019-04-26 08:31:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/image-1.png',0,'attachment','image/png',0),(13148,0,'2019-04-26 08:33:15','2019-04-26 08:33:15','','image','','inherit','open','closed','','image-3','','','2019-04-26 08:33:15','2019-04-26 08:33:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/image-2.png',0,'attachment','image/png',0),(13149,0,'2019-04-26 08:35:44','2019-04-26 08:35:44','','image','','inherit','open','closed','','image-4','','','2019-04-26 08:35:44','2019-04-26 08:35:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/image-3.png',0,'attachment','image/png',0),(13150,0,'2019-04-26 08:36:26','2019-04-26 08:36:26','','External Rotation - Shoulder - Infraspinatus','','inherit','open','closed','','image-5','','','2019-04-26 08:36:26','2019-04-26 08:36:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/image-4.png',0,'attachment','image/png',0),(13154,0,'2019-04-26 08:49:42','2019-04-26 08:49:42','','Infraspinatus - Biomechanics Education - The piriformis of the shoulder','','inherit','open','closed','','infraspinatus-biomechanics-education-the-piriformis-of-the-shoulder','','','2019-04-26 08:49:42','2019-04-26 08:49:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Infraspinatus-Biomechanics-Education-The-piriformis-of-the-shoulder.png',0,'attachment','image/png',0),(13299,3,'2019-05-06 17:38:27','2019-05-06 17:38:27','<!-- wp:paragraph -->\r\n<p><b><span data-contrast=\"auto\">Why the Turkish Get-Up is Essential for Personal Trainers</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The Turkish Get-Up (TGU) is a versatile and effective exercise that should be a staple in any personal trainer\'s programming. Its ability to engage multiple joints and muscles across various planes of movement makes it incredibly efficient, providing comprehensive benefits from just one exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><b><span data-contrast=\"auto\">Full-Body Engagement and Cardiovascular Benefits</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The TGU involves numerous joint actions and muscle groups, which can deliver a full-body workout. This exercise can be performed with different equipment, adding variety to your routine. It also offers cardiovascular benefits due to the continuous movement required to transition from lying on the floor to standing and back down again.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><b><span data-contrast=\"auto\">Expert Endorsements</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Renowned strength coach Dan John advocates for the TGU as a diagnostic tool. He uses a simple test where clients must get down on the floor and stand back up to identify mobility limitations and joint restrictions. This drill is fundamental to daily movement and reveals areas needing improvement before progressing to more dynamic exercises.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Practical Application: Getting Up and Down</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Practicing the TGU helps maintain and improve the essential ability to get up from the floor - a skill that can decline with age. This exercise is particularly valuable for older adults, helping prevent the fear and consequences of being unable to get up after a fall.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">StrongFirst Kettlebell Workshop Insights</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The StrongFirst Kettlebell workshop, led by <a href=\"https://www.strongfirst.com/about/pavel-tsatsouline/\">Pavel Tsatsouline</a>, provides excellent technical training on the TGU. This programme emphasises proper technique and progressive learning, starting without weights and gradually adding load. Investing in quality education from reputable organisations like StrongFirst can significantly enhance your understanding and execution of the TGU.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p>I recommend you check out his books…</p>\r\n<p><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --></p>\r\n<p><a href=\"https://www.amazon.co.uk/Naked-Warrior-Pavel-Tsatsouline/dp/0938045555/ref=sr_1_1?keywords=Pavel+Tsatsouline&amp;qid=1556470624&amp;s=gateway&amp;sr=8-1\">The Naked Warrior</a></p>\r\n<p><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --></p>\r\n<p><a href=\"https://www.amazon.co.uk/Kettlebell-Simple-Sinister-Pavel-Tsatsouline-ebook/dp/B00GF2HP9G/ref=sr_1_2?keywords=Pavel+Tsatsouline&amp;qid=1556470651&amp;s=gateway&amp;sr=8-2\">Kettlebell Simple &amp; Sinister</a></p>\r\n<p><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --></p>\r\n<p><a href=\"https://www.amazon.co.uk/Enter-Kettlebell-Strength-Secret-Supermen/dp/1942812132/ref=sr_1_3?keywords=Pavel+Tsatsouline&amp;qid=1556470651&amp;s=gateway&amp;sr=8-3 \" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"Enter The Kettlebell  (opens in a new tab)\">Enter The Kettlebell </a></p>\r\n<p><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --></p>\r\n<p>However, I must also make a very special mention 2 of my favourite mentors in the kettlebell, <strong>Troy Martin (TM Fitness) &amp; Stephen Aish (The mindset Coaching Academy) ,</strong> since they have also contributed a lot to my understanding of the use and variations of the kettlebell as an awesome training tool. </p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":4} --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h1><strong>How To Do A Turkish Get Up</strong></h1>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>The beauty of the TGU is that each part of the movement can be taught one move at a time, without a kettlebell to begin with, particularly if you are coaching a client or trying it for the first time.  Once you get going with the combination remember to hold each position for a moment prior to moving on so that you can feel the position and absorb the benefits of that position and that load, at each point.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<ol>\r\n<li><span class=\"TextRun SCXW103513652 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW103513652 BCX8\"><strong>Starting Position:</strong> </span></span><span class=\"TextRun SCXW103513652 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW103513652 BCX8\">Lie on your side, knees bent, hips at 90 degrees, with the </span><span class=\"NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW103513652 BCX8\">left hand</span><span class=\"NormalTextRun SCXW103513652 BCX8\"> palm </span><span class=\"NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW103513652 BCX8\">up holding</span><span class=\"NormalTextRun SCXW103513652 BCX8\"> the kettlebell.</span></span><span class=\"EOP SCXW103513652 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13430} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13430\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-1.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW186635134 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW186635134 BCX8\">2. Roll to Back:</span></span></strong><span class=\"TextRun SCXW186635134 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW186635134 BCX8\"> Extend your left arm straight up with the kettlebell resting on the back of your hand. Bend your left knee, foot flat, and extend your right leg.</span></span><span class=\"EOP SCXW186635134 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13431} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13431\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-2-Biomechanics-Education.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW81553435 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW81553435 BCX8\">3. Press and Roll:</span></span></strong><span class=\"TextRun SCXW81553435 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW81553435 BCX8\"> Press the left foot down, engage your trunk, press the kettlebell upwards, and roll onto your right elbow.</span></span><span class=\"EOP SCXW81553435 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13432} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13432\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-3-Biomechanics-Education.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW119162220 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW119162220 BCX8\">4. Sit-Up:</span></span></strong><span class=\"TextRun SCXW119162220 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW119162220 BCX8\"> Lift onto your right hand, extending both arms with the kettlebell overhead.</span></span><span class=\"EOP SCXW119162220 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13434} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13434\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-4-Biomechanics-Coach.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong>5. </strong><span class=\"TextRun SCXW170957954 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW170957954 BCX8\"><strong>Kneel:</strong> </span></span><span class=\"TextRun SCXW170957954 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW170957954 BCX8\">Shift weight onto the left foot and right hand, moving your right leg to a kneeling position behind you.</span></span><span class=\"EOP SCXW170957954 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13435} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13435\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Instruction-Biomechanics-Coach.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong>6. <span class=\"TextRun SCXW229150756 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW229150756 BCX8\">Lunge: </span></span></strong><span class=\"TextRun SCXW229150756 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW229150756 BCX8\">Move to an upright kneeling position, keeping the kettlebell overhead.</span></span><span class=\"EOP SCXW229150756 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13436} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13436\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Guide-Biomechanics-Education.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:image {\"id\":13437} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13437\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Biomechanics-Education-Kneeling-lunge-position.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW158743961 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW158743961 BCX8\">7. Stand: </span></span><span class=\"TextRun SCXW158743961 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW158743961 BCX8\">Step your left foot forward and stand up, </span><span class=\"NormalTextRun SCXW158743961 BCX8\">maintaining</span><span class=\"NormalTextRun SCXW158743961 BCX8\"> the kettlebell overhead.</span></span><span class=\"EOP SCXW158743961 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></strong></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13438} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13438\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-Stand.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW200449709 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW200449709 BCX8\">Reversing the Movement</span></span><span class=\"EOP SCXW200449709 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559685&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></strong></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>To repeat the movement in reverse it looks like this:</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Step Back:</span></b><span data-contrast=\"auto\"> Step the right leg back, kneeling down while keeping the kettlebell overhead.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li><b><span data-contrast=\"auto\">Flex and Sit:</span></b><span data-contrast=\"auto\"> Laterally flex to your right, place your right hand on the floor, and push hips back, keeping eyes on the kettlebell.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Transition:</span></b><span data-contrast=\"auto\"> Shift weight onto the left foot and right hand, moving the right leg forward to sit with the right leg extended.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li><b><span data-contrast=\"auto\">Lower: </span></b><span data-contrast=\"auto\">Brace your trunk, lower onto your right elbow, and control your descent back to the starting position.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong>The Switch or Halo </strong></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>To transition to the other side when using a KB literally drag the KB from the finishing position above, along the floor, in a halo over your head to the same position but on your right side.  </p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Repeat all the above on your right side!</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Repeat over and over for a great little cardio strength workout</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Then add more kilos… and repeat, repeat, repeat!</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><b><span data-contrast=\"auto\">Benefits for Personal Trainers</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The TGU is not just a strength and conditioning tool but also a movement enhancer, especially beneficial for older adults. It improves the ability to get up from the floor, potentially reducing injury risk and increasing confidence. This exercise is suitable for clients of all ages and fitness levels, making it a valuable addition to any training program.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Enhance Your Training Skills</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Want to reduce your clients\' risk of injury and help them achieve better results? Learn more about our Biomechanics Coach Diploma, now including a Level 4 Low Back Pain Qualification, to become an even more effective personal trainer. Click </span><a href=\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> to find out more.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>&nbsp;</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Contact: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img class=\"alignnone wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></figure>\r\n</div>\r\n<!-- /wp:image -->','Why The Turkish Get Up Is Valuable To A Personal Trainer’s Programming','','publish','closed','closed','','why-the-turkish-get-up-is-valuable-to-a-personal-trainers-programming','','','2025-01-20 16:03:29','2025-01-20 16:03:29','',0,'https://www.biomechanicseducation.com/?p=13299',0,'post','',0),(13430,0,'2019-05-06 17:21:52','2019-05-06 17:21:52','','Biomechanics Education - Turkish Get Up 1','','inherit','open','closed','','biomechanics-education-turkish-get-up-1','','','2019-05-06 17:21:52','2019-05-06 17:21:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-1.jpg',0,'attachment','image/jpeg',0),(13431,0,'2019-05-06 17:23:00','2019-05-06 17:23:00','','Turkish Get Up 2 - Biomechanics Education','','inherit','open','closed','','turkish-get-up-2-biomechanics-education','','','2019-05-06 17:23:00','2019-05-06 17:23:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-2-Biomechanics-Education.jpg',0,'attachment','image/jpeg',0),(13432,0,'2019-05-06 17:23:39','2019-05-06 17:23:39','','Turkish Get Up 3 - Biomechanics Education','','inherit','open','closed','','turkish-get-up-3-biomechanics-education','','','2019-05-06 17:23:39','2019-05-06 17:23:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-3-Biomechanics-Education.jpg',0,'attachment','image/jpeg',0),(13434,0,'2019-05-06 17:25:08','2019-05-06 17:25:08','','Turkish Get Up 4 - Biomechanics Coach','','inherit','open','closed','','turkish-get-up-4-biomechanics-coach','','','2019-05-06 17:25:08','2019-05-06 17:25:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-4-Biomechanics-Coach.jpg',0,'attachment','image/jpeg',0),(13435,0,'2019-05-06 17:27:48','2019-05-06 17:27:48','','Turkish Get Up Instruction - Biomechanics Coach','','inherit','open','closed','','turkish-get-up-instruction-biomechanics-coach','','','2019-05-06 17:27:48','2019-05-06 17:27:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Instruction-Biomechanics-Coach.jpg',0,'attachment','image/jpeg',0),(13436,0,'2019-05-06 17:29:59','2019-05-06 17:29:59','','Turkish Get Up Guide - Biomechanics Education','','inherit','open','closed','','turkish-get-up-guide-biomechanics-education','','','2019-05-06 17:29:59','2019-05-06 17:29:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Guide-Biomechanics-Education.jpg',0,'attachment','image/jpeg',0),(13437,0,'2019-05-06 17:31:42','2019-05-06 17:31:42','','Turkish Get Up - Biomechanics Education - Kneeling lunge position','','inherit','open','closed','','turkish-get-up-biomechanics-education-kneeling-lunge-position','','','2019-05-06 17:31:42','2019-05-06 17:31:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Biomechanics-Education-Kneeling-lunge-position.jpg',0,'attachment','image/jpeg',0),(13438,0,'2019-05-06 17:32:27','2019-05-06 17:32:27','','Biomechanics Education - Turkish Get Up - Stand','','inherit','open','closed','','biomechanics-education-turkish-get-up-stand','','','2019-05-06 17:32:27','2019-05-06 17:32:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-Stand.jpg',0,'attachment','image/jpeg',0),(13440,0,'2019-05-06 17:37:26','2019-05-06 17:37:26','','Why The Turkish Get Up Is Valuable To A Personal Trainer’s Programming (1)','','inherit','open','closed','','why-the-turkish-get-up-is-valuable-to-a-personal-trainers-programming-1','','','2024-09-19 14:48:49','2024-09-19 14:48:49','',40927,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Why-The-Turkish-Get-Up-Is-Valuable-To-A-Personal-Trainers-Programming-1.png',0,'attachment','image/png',0),(13618,3,'2019-05-13 20:32:58','2019-05-13 20:32:58','<!-- wp:paragraph -->\n<p>Walking... I mean literally, if you had to pick just one move to nourish your movement profile, this is it, right!?!?! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you consider the evolutionary instinct to ‘make life easier’, combined with the evolution of technology you can understand WHY we walk less and less... <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Escalators instead of stairs or hills</li><li>Gyms instead of manual labour, farming etc</li><li>Cars, Buses, Trains, Planes etc</li><li>Phones instead of going to speak to someone</li><li>TV instead of going to the event, gathering</li><li>Shopping trolleys instead of carrying things</li><li>Jobs can commonly be desk bound or static </li><li>The internet removes the need to go search in the library</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Now I could carry on but I think you get the point? Yes the simple act of walking is something our bodies LOVE.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That pump action from soleus as we plantar flex, pushes blood back up through the body. The impact from the heel strike, up through the body is like a pulse on our bones to keep them strong and dense. The combination of movements occurring at the pelvis and spine are like lotion to the motion. The effects of working our cardiovascular system and increasing the heart rate, as we all know, improve our physical health and reduce risks in many ways. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Still yet I haven’t even started on the benefits of catching some Vitamin D from the sun, breathing fresh air and NOT staring at a screen to reduce fatigue, eye problems and brain fog.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>The Benefits Of Walking</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to our clients we often have to ‘sell’ the idea of walking more because they usually don’t appreciate the <em>cumulative effect</em> of walking 20 minutes per day for example or adding 2000 steps to their daily count.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When we suggest this they may exclaim “<em>what’s 20 mins going to do?</em>” as if this won’t make much or any difference to their goal...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have to convert the benefits from technical to something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you walk for just 20 mins each day and increase your step count by 2000 steps per day<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>You will have more energy</li><li>Feel less fatigued</li><li>Feel more focussed </li><li>Reduce stress</li><li>Increase your confidence</li><li>Feel more positive &nbsp;</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p><strong>But It Is Such An Effort...</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>….or is it? I mean taking the time to think for a moment...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“should I walk up the stairs and NOT be looking at my phone or should I take the escalator and catch up on Instagram for 60 seconds?”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>...</em>even I have to be conscious NOT to take the escalators because my body responds to the thinking of ….”...<em>its easier...take the escalator</em>…”<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>THINK about how your body responds to certain situations. I mean take the \'<a rel=\"noreferrer noopener\" aria-label=\"Beyond 90 Challenge (opens in a new tab)\" href=\"https://www.biomechanicseducation.com/are-you-up-to-the-beyond-90-challenge/\" target=\"_blank\">Beyond 90 Challenge</a>\' for example, I was made to feel like I was weird for sitting on my haunches on the bus, at the doctors and various other places where chairs were available. I WAS doing what my body is designed for and yet people actually thought something MUST be wrong with me for choosing NOT to sit down.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now I consciously look for stairs instead of lifts and park at the far edge of the car park but it has to be a more conscious thing because instinct drives me towards a less active option. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Does doing 8,000 steps instead of 5,000 really matter? Why? People think doing a few extra steps isn’t going to make a difference… but they are wrong….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2,000 steps is a mile, walking…. If you do an extra 2,000 steps a day - that’s 365 miles a year… Doing an extra 365 miles a year would surely make a difference right? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So What?</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What’s my point? While SIMPLE it’s not EASY to maintain our ancestors volume of physical activity because of our culture and social conditioning. So we have to THINK of ways to teach our clients to move well and move more.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here is the point….get them walk more….it’s surely got to be the simplest place to start!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Looking at all of the health benefits BUT recognising the challenges of our lifestyles and evolutionary instincts, just the act of our clients walking more can have a huge impact. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s been shown over and over again in research that those who burn more NEAT calories (Non Exercise Activity Thermogenesis - Calories burned that aren’t while exercising) are physically healthier. <a rel=\"noreferrer noopener\" aria-label=\"I go into a bit more detail on that topic in this post, click here. (opens in a new tab)\" href=\"https://www.biomechanicseducation.com/rebel-against-the-chair-how-standing-can-dramatically-improve-our-health/\" target=\"_blank\">I go into a bit more detail on that topic in this post, click here.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>WALKING IS FREE TOO!</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>They don’t even need a gym nor fancy equipment, they can do it between other more static activities and now, thankfully, it is not uncommon to ask someone “<em>How Many Steps</em>?”<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In fact, when my FitBit battery needs charging, I now try to plan it in so I don’t lose too many of my step count!! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>YES IT IS A THING…. in our house anyway...who can get the most steps in a day!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We aim for 10k a day and when we start reaching 15-20k we really feel great! We actually brag about our step counts!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What&nbsp;If&nbsp;They&nbsp;Don\'t&nbsp;Have&nbsp;A&nbsp;FitBit?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your clients don’t have a FitBit do not despair, iPhones have an app called ‘health’ and there all kinds of step trackers on both iPhone and Android phones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ok so it may not be as accurate as the FitBit BUT they don’t need accuracy, they need a benchmark and accountability to monitor their progress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So your clients will KNOW if they move enough or not already, this is just a start. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Look back through the app and at their daily average steps. </li><li>Encourage them to take more steps and when </li><li>Help them to be more conscious about taking them EVERY DAY</li><li>Remind them of those NEAT calories </li><li>Compare today to yesterday </li><li>Set them goals to do more </li><li>Encourage them to get a family member to do the same, maybe with an in-house challenge like mine!</li><li>Educate all your clients and let’s start to change the culture</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>...Take A Moment </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So let’s recognise that even as an active fitness professional for 3 decades, I have to be <em>conscious</em> about keeping moving, I have the natural urge to sit down, take the lift, use the car just like your client...etc BUT less so, the more I <em>practise and condition</em> myself to choose movement over the easy option where possible and sensible. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Being educaTED and educaTING is a big deal for me now. The mission….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“Improve Movement Through Education’</em> <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is at the very core of what Biomechanics Education is about and I cannot do it alone. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WE NEED YOU!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So if you want to join us in this mission of educating your clients and the nation please email me <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a> to get a <strong><em>10 Day Walk More Plan</em></strong> that you can pass onto your clients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Now For Those Who Already Walk A Lot</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>OK OK OK OK there is likely to be some of you reading this who are thinking…”<em>I am a pro walker!! I already walk a lot!!”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well for you guys maybe the next challenge is running? In fact, maybe the next challenge for your clients is to get them running too?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So Next Week I will be dedicating a whole blog post to <em>Running Biomechanics….with some GREAT NEWS!!!</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','Walking - THE Most Underestimated Medicine In Modern Culture?','','draft','closed','closed','','walking-the-most-underestimated-medicine-in-modern-culture','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=13618',0,'post','',0),(13619,0,'2019-05-13 09:34:08','2019-05-13 09:34:08','','Walking - THE Most Underestimated Medicine In Modern Culture? 1','','inherit','open','closed','','walking-the-most-underestimated-medicine-in-modern-culture-1','','','2019-05-13 09:34:08','2019-05-13 09:34:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Walking-THE-Most-Underestimated-Medicine-In-Modern-Culture-1.png',0,'attachment','image/png',0),(13708,3,'2019-05-21 07:28:16','2019-05-21 07:28:16','<!-- wp:paragraph -->\n<p>We have been discussing great exercises and fundamental movements including walking but this week the topic is running, as promised.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What I thought we would do this week is get the opinion of world leader and mentor to many Biomechanics Coaches amongst others, the very special Mr Martin Haines….. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><em>Running Biomechanics</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><em>“Run The Way Nature Intended”</em></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>The Foot</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>The foot is an impressive piece of engineering, not only does it need to function independently as a unit, but it must work with, and accommodate to, all the structures above it. &nbsp;It can do this largely due to the synchronous link between the 3 “separate” systems; Nerve, Muscle, Joint (the Musculo-Skeletal System).</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>The sub talar joint in the foot has an almost infinite axis and very complex articulations, it is one of the keys to the body’s ability to absorb and transfer shock. When the foot hits the ground we experience ground reaction force (shock). This force is partially absorbed by pronation (flattening of the foot) shortly after heel strike and is our protection against these repetitive shocks or loads. &nbsp;Later in the gait cycle, supination (a reforming of the contour of the arch) helps propel us forwards by becoming a more rigid lever. </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Shock (Ground Reaction Forces/Impact Forces)</em></strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>We have developed the ability to pronate not because we want to be rid of shock but so we can control it. </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Shock is a major player in allowing the legs, pelvis and spine to move properly. This shock could otherwise be explained as a pulse that transmits through the body. &nbsp;The role of the musculo-skeletal system is to dampen that shock by the time it reaches the brain and skull.  </em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Importantly though, this shock helps our myofascial system (the soft tissue links between muscles as well as bone) to work naturally. &nbsp;Shock enables the muscles to stiffen at the right time to allow the fascia to take the brunt of the load using less energy, almost like a spring. </em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>The slower you move the more you have to engage muscles to create that forward momentum, the faster you move the more you run on your ‘springs’. &nbsp;This is facilitated in part by the reflex management of the effect of dampening the shock.  The intricate way the foot/ankle, knees, hips, pelvis and spine manage this is controlled subconsciously by the brain and our reflex systems. &nbsp;</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>While different people require different levels of cushioning for lots of reasons – body weight, impact forces, natural stiffness, running longer distances etc, if we try to control the shock too much, it may present problems.</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Running</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>There seems to be consensus that we need to heel strike when it comes to walking, the interesting debate starts when we bring speed into the equation as we run. With an increase in speed comes a change in mechanics and an increase in the forces that you might encounter. When we run, we put larger forces through the body and this is something for which the body accommodates. &nbsp;The pulse from the foot to the pelvis must be just enough to engage the leg, pelvic and spinal muscles but not too much that the knee and hip must dissipate the excess load.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>So, the faster you move, the more you naturally go up onto your toes; you would not imagine sprinting on your heels. &nbsp;The questions is; at what speed or in which circumstances should people move up onto their toes?</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>This should be a personal decision. &nbsp;Although ‘decision’ is probably too conscious, it should likely be under subconscious control. &nbsp;Our engine management chip (the brain) can understand at very high speeds what should be happening with our body and how it can react to different loads. &nbsp;If we consciously try to override it, we could compromise that process, potentially causing problems.  </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>When we move up onto our toes will likely be determined by several factors. &nbsp;Speed, our anatomy, any inflexibilities or weakness of our muscles, the terrain we run upon and our shoes. &nbsp;So, to learn a technique that dictates that you should run in a particular way could be a risk as no one system can yet accommodate all these factors and still be personalised to each runner. &nbsp;Let your engine management chip make these decisions for you naturally, based upon factors that we may not even have the ability to measure, never mind have the knowledge or ability to adapt to consciously. </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Foot Strike</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>There may be certain populations who would suit forefoot running and there may be occasions where rear foot striking is more likely to be beneficial. &nbsp;</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Runners suited to forefoot striking are those who naturally do it without being told to do so or consciously try and do it. Forefoot striking may also be suited to those with very tight or stiff calves and who have a very supinated/high arched foot. &nbsp;</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>However, the vast majority of runners naturally rearfoot strike. &nbsp;Rearfoot striking seems more suited to those who naturally rearfoot strike, without being told to do so. &nbsp;You cannot remove the impact force or shock, all you can do is move it elsewhere which is why rearfoot strikers get more knee load and forefoot strikers, more ankle load </em><em><sup>1,2. &nbsp;</sup></em><em>Impact forces are going to happen, but you may be able divert them from a vulnerable body part for a while.</em><em><sup> </sup></em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>The type of foot strike you adopt is a very personal thing, let your body do what’s natural for it, unless you have specific problems and an expert has assessed you and considered all the factors and you change the way you naturally run for good reason – and then allow for adaptation over time. </em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>It is not logical to look at a Kenyan runner, for example, and seem him or her forefoot strike and assume it’s the right thing for a British runner to do. We run based upon our anatomy and function, which will vary greatly depending on our genetics and the environment we grew up in and trained in. </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>We should be running based upon our current anatomy, terrain and limitations that 21</em><em><sup>st</sup></em><em> century living has imposed upon us. &nbsp;Letting our body make the decision as to how we run is more likely to accommodate to these factors than us consciously changing the way we run, based upon any particular theory or fad.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Understand How &amp; Why A Runner Moves First</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>If we do not understand why a runner moves in a particular way, we cannot know how to change their technique or indeed whether a technique change will be helpful. If we try to change a gait pattern that is created by a compensating for a restriction in the body, without identifying the restriction and managing it, we are at best being ineffective or at worst causing overload on the restricted or related area and potentially causing harm. </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>The variety of running styles that exist demonstrates the variety of ways the body can compensate for its biomechanical flaws and restrictions. &nbsp;Understand them, and whether to change them, and you’ll likely run more freely with less injuries.</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Martin Haines</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Biomechanics Coach and Chartered Physiotherapist</em></strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>It’s Rach again now...</em></strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Off the back of this, we really are super excited to be bringing our BRAND NEW 1 day sports specific Running Biomechanics Workshop into our portfolio. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Due to the demand for more sports specificity (like our really popular Golf Biomechanics Workshop) we are broadening our academy programmes to include this awesome addition….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading -->\n<h2><strong>Running Biomechanics Workshop</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Running is a key activity in many fitness programs, it is after all, one of the most natural of our activities as humans. &nbsp;However, there is increasingly debate about which running style is best. There are more running styles now than ever and it is hard to decide which is best for ourselves or our clients. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The principle of this Running Biomechanics Workshop is that no single running style suits everyone. &nbsp;The purpose of this workshop is to outline the evidence that exists for each running style and to provide simple methods that enable you to decide which is the most likely running technique to suit your client. &nbsp;It also covers which preparation exercises would likely help your client adapt to the method you have chosen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This one day Running Biomechanics workshop teaches you;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Understanding the mechanics and sequencing of running gaits</li><li>Extrinsically look at different styles or idiosyncrasies and Intrinsically look at what restrictions and dysfunctions can cause them</li><li>Screenings will be discussed as well as key exercise interventions to help prepare your runners for their chosen style</li><li>The correct terminology to approach your local running clubs</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Want to come along? Here are the upcoming dates...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Friday July 5th Nottingham 10-5pm</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Wednesday Sept 25th Scotland 10-5pm<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\">Want to book on? Just click here</a><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Help Runners Reduce Their Risk Injury &amp; Improve Their Performance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\">Check out the Running Biomechanics Workshop Now - Click here</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13709} -->\n<figure class=\"wp-block-image\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Running-Biomechanics-Biomechanics-Education-1-1024x512.png\" alt=\"\" class=\"wp-image-13709\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Running Biomechanics - “Run The Way Nature Intended”','','draft','closed','closed','','running-biomechanics-run-the-way-nature-intended','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=13708',0,'post','',0),(13709,0,'2019-05-17 11:45:12','2019-05-17 11:45:12','','Running Biomechanics - Biomechanics Education','','inherit','open','closed','','running-biomechanics-biomechanics-education','','','2019-05-17 11:45:12','2019-05-17 11:45:12','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Running-Biomechanics-Biomechanics-Education-1.png',0,'attachment','image/png',0),(13831,0,'2019-05-23 18:12:25','2019-05-23 18:12:25','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2019-05-23 18:12:25','2019-05-23 18:12:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/05/woocommerce-placeholder.png',0,'attachment','image/png',0);
INSERT INTO `6m7_posts` VALUES (14072,3,'2019-06-03 14:12:32','2019-06-03 14:12:32','<p><span style=\"font-weight: 400;\">20 years ago I was running a lot and trying to beat my previous times each race. However, I was just training harder not smarter to attempt to increase my speed. What I didn’t realise at the time was how walking could help me run faster!</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">My colleague, Simon Cook (Biomechanics Coach and owner of Seasons Health Club, Beccles), had a Human Lab New Leaf gas analyser that could measure my ‘system’ and tell me how to become more efficient at using energy so I could run faster. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">So I was running a half marathon (13.1miles) personal best (PB) at around 1:42. However, I was almost ‘stuck’ at that pace for some time. No matter how hard I tried to run faster I just couldn’t do it. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">My first test with Simon gave a reading that produced a 12 week workout for me based upon my gas analysis reading. This programme wanted me to WALK FOR 4 WEEKS!!!</span>  </p>\n<p><span style=\"font-weight: 400;\">Whaaaaaat?</span></p>\n<p><span style=\"font-weight: 400;\">Oh yes! Walking!</span>  </p>\n<p>&nbsp;</p>\n<h3><b>After My 4 Weeks Of Walking, What Happened?</b></h3>\n<p> <span style=\"font-weight: 400;\">After </span><i><span style=\"font-weight: 400;\">walking for 4 weeks</span></i><span style=\"font-weight: 400;\"> I actually went and ran a 1:30 PB!!</span> <span style=\"font-weight: 400;\">That’s</span><i><span style=\"font-weight: 400;\"> MORE THAN 10 MINUTES FASTER</span></i><span style=\"font-weight: 400;\">….using walking in my training. So how did that happen? How </span><i><span style=\"font-weight: 400;\">can</span></i><span style=\"font-weight: 400;\"> it happen? </span></p>\n<p><span style=\"font-weight: 400;\">This blog will attempt to explain my understanding of how the body uses and converts energy in simple terms so that we can help our client’s to, not only run faster but, also burn more body fat. This process is call Metabolism.</span>  </p>\n<h3> </h3>\n<h3><b>What is Metabolism?</b></h3>\n<p><i><span style=\"font-weight: 400;\">Metabolism is a process. It\'s the way our cells change the food we eat into the energy we need to breathe, move, think and do . . . everything. It keeps us, as it keeps all living things, alive (Rush University Medical Centre).</span></i>  </p>\n<p><span style=\"font-weight: 400;\">Your client’s ‘metabolic profile’ is their body’s ability to perform this process. Why should we care as Personal Trainers? How will it help you train your client?</span>  </p>\n<p><span style=\"font-weight: 400;\">A better understanding of some of the measurements of your clients metabolic profile allow us to better monitor and improve their metabolic performance. The knock on effect of this is a far more effective exercise programme that can actually burn more fat and improve their overall health.</span>  </p>\n<h3> </h3>\n<h3><b>The 2 Energy Systems We Need To Train</b></h3>\n<p><span style=\"font-weight: 400;\">Ok so with some degree of disbelief I knew I had to trust my coach telling me to walk not run, since the science was telling me what I needed to do. So let’s explore the science…</span>  </p>\n<p><span style=\"font-weight: 400;\">To be simplistic we have 2 energy sources - fat and sugar. We all have the ability to use them both but we need to teach the body how because if we don’t use both, then we can store body fat as a result of either source not being used. </span>  </p>\n<p><span style=\"font-weight: 400;\">Put another way, utilising both energy systems creates a more efficient metabolism or fuel burner.</span>  </p>\n<p><span style=\"font-weight: 400;\">So What?</span></p>\n<p><span style=\"font-weight: 400;\">Well what this means is we can train specifically to burn MORE body fat, train more efficiently AND, more often than not, with LESS EFFORT.</span></p>\n<p><span style=\"font-weight: 400;\">The way this works, in my understanding, is that we burn more fat, or utilise our fat source, mostly when our heart rate (HR) is in the lower ‘zones’. This means while your client\'s heart rate is elevated, but not beating overly fast, they will burn more fat.</span></p>\n<p><span style=\"font-weight: 400;\">Then when they raise their HR past a certain point they tip into their sugar source or burn more of their energy from the sugar source. </span>  </p>\n<h3> </h3>\n<h3><b>What This Meant For My Running</b></h3>\n<p><span style=\"font-weight: 400;\">So to put this into a picture for you, which will hopefully help explain it…</span>  </p>\n<p><span style=\"font-weight: 400;\">By walking, I was training my body to move quicker at a lower heart rate. </span>  </p>\n<p><span style=\"font-weight: 400;\">And by the way, when I say walking, I don’t mean a stroll around the park. It was about keeping my heart rate within a certain zone. I was walking at a fast pace. Then overtime to keep the heart rate within that zone it turned into jogging. </span>  </p>\n<p><span style=\"font-weight: 400;\">So that when I began running again, my body was able to stay in that zone, burning fat, which is much more efficient, for a greater length of time. </span>  </p>\n<p><span style=\"font-weight: 400;\">Before, my body would switch to using sugar as the energy source, and there was always going to be a limit to the time I could run. </span></p>\n<p><span style=\"font-weight: 400;\">Now, I could almost save that switch till later in my run and allow me to hit that, in my opinion, amazing personal best. </span>  </p>\n<p><span style=\"font-weight: 400;\">By the way, I really want to stress here, (especially as I know lots of you who read this blog have awesome physiology knowledge) that I am simplifying this as much as I can. Hopefully giving you the kind of language you can use to explain it to your clients. </span>    </p>\n<h3> </h3>\n<h3><b><i>They Aren\'t Shifting Body Fat But Swear They Stopped Eating Cake...</i></b></h3>\n<p><span style=\"font-weight: 400;\">Now you might not be training a whole load of runners. If you are, great. But how does this apply to your general client who is trying to lose a bit of body fat?</span> </p>\n<p><span style=\"font-weight: 400;\">The problem is that in the past we have been conditioned into thinking that working harder burns more </span><i><span style=\"font-weight: 400;\">fat</span></i><span style=\"font-weight: 400;\">. Technically this is incorrect. Working harder actually burns more sugar, that can store as fat if not utilised.</span>   <span style=\"font-weight: 400;\">OR </span>   <span style=\"font-weight: 400;\">If they are training really intensely most of the time they may not be using their fat store efficiently.</span></p>\n<p><span style=\"font-weight: 400;\">So What?</span>  </p>\n<h3> </h3>\n<h3><b><i>Too Much Pain Not Enough Gain...</i></b></h3>\n<p><span style=\"font-weight: 400;\">Well, there is a current trend of high intensity interval training (HIIT) since we all lead these relatively sedentary lifestyles and maybe you read about the study done by </span><span style=\"font-weight: 400;\">Professor Izumi Tabata, the Dean of the College of Sport and Health Science at Ritsumeikan University</span><span style=\"font-weight: 400;\">? His study on the benefits of 4 minutes HIIT training was with Olympic speed skaters in 1996. </span></p>\n<p><span style=\"font-weight: 400;\">However, the context has been marred somewhat over the period since the results of his studies were published - </span><i><span style=\"font-weight: 400;\">SURPRISE SURPRISE! </span></i> <span style=\"font-weight: 400;\">Of course, the industry got wind of being able to get </span><i><span style=\"font-weight: 400;\">MORE RESULTS in LESS TIME!</span></i>  </p>\n<p><span style=\"font-weight: 400;\">OK slow right down, back up and let\'s remember context is key. Before moving on please note the commonly referred to Tabata style training of 20 seconds high intensity you might experience in your local gym or health club isn’t at the same intensity as the original study. This had athletes performing at </span><i><span style=\"font-weight: 400;\">170%VO2 max</span></i><span style=\"font-weight: 400;\"> for 20 seconds with a 10 second rest x 7-8 cycles. Ever tried that intensity? </span>  </p>\n<h2> </h2>\n<h2><b>How Do We Train To Improve The Metabolic Profile?</b></h2>\n<h3><b>Aerobic Vs Anaerobic - What’s The Difference?</b></h3>\n<p><span style=\"font-weight: 400;\">So I feel this is a good time to discuss aerobic Vs anaerobic training since this is going to offer more insight into how we train specifically to improve our metabolic profile.</span>   <span style=\"font-weight: 400;\">So far we have used terms like fat burn and sugar burn to describe the energy systems however to be more technical let’s explore aerobic training and anaerobic training. </span>  </p>\n<p><i><span style=\"font-weight: 400;\">Aerobic training is working the cardiovascular system utilising predominantly slow twitch muscle fibres. It used </span></i><i><span style=\"font-weight: 400;\">during exercise that is sustained so will stimulate and strengthen the heart and lungs, thereby improving the body\'s utilization of oxygen.</span></i>  </p>\n<p><i><span style=\"font-weight: 400;\">Anaerobic training </span></i><i><span style=\"font-weight: 400;\">i</span></i><i><span style=\"font-weight: 400;\">s a physical exercise intense enough to cause lactate to form. It utilises fast twitch muscle fibres and therefore is favoured by athletes in non-endurance sports to promote strength, speed and power also by body builders to build muscle mass. (Maffetone, 2000)</span></i>  </p>\n<p><span style=\"font-weight: 400;\">One of the most important lessons I would like to communicate here is HEALTH. While you may prefer endurance training/sport over power lifting or vica versa, for optimum HEALTH benefits we should probably ALL train BOTH systems. The awesome </span><i><span style=\"font-weight: 400;\">side effect</span></i><span style=\"font-weight: 400;\"> is reduced body fat but MORE IMPORTANTLY there are numerous health benefits to conditioning your metabolic profile and energy systems. </span>  </p>\n<p><span style=\"font-weight: 400;\">So ok you wanna run faster like I did? That’s a great goal to have but remember this style of training goes further than simply offering that as a result. In my world being healthy is far more important than winning the park run or a half marathon.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">In the next post I am going to break down the 6 Steps to improving your clients metabolic profile, it will be out on week, so keep an eye out for it. </span>   <span style=\"font-weight: 400;\">You will be able to take this process and apply it to your clients training straight away.</span>  </p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Help Runners Reduce Their Risk Injury &amp; Improve Their Performance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\">Check out the Running Biomechanics Workshop Now - Click here</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13709} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13709\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Running-Biomechanics-Biomechanics-Education-1-1024x512.png\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>','How I Knocked 10 Minutes Off My Half Marathon Time In Just 4 Weeks','','draft','closed','closed','','how-i-knocked-10-minutes-off-my-half-marathon-time-in-just-4-weeks','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=14072',0,'post','',2),(14075,0,'2019-06-03 13:58:01','2019-06-03 13:58:01','','How I Knocked 10 Minutes Off My Half Marathon Time In Just 4 Weeks','','inherit','open','closed','','how-i-knocked-10-minutes-off-my-half-marathon-time-in-just-4-weeks-2','','','2019-06-03 13:58:01','2019-06-03 13:58:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/06/How-I-Knocked-10-Minutes-Off-My-Half-Marathon-Time-In-Just-4-Weeks-1.png',0,'attachment','image/png',0),(14118,3,'2019-06-05 19:25:06','2019-06-05 19:25:06','<p><span style=\"font-weight: 400;\">The other day I told you about how after not being able to improve my running time at all for months and months, I then started a new programme and knocked 10 minutes off my half marathon time. All by walking in my training instead of running.</span></p>\n<p><span style=\"font-weight: 400;\">Then we also looked at how this would affect your general client who wants to be healthier and perhaps lose a few pounds of fat.</span> <span style=\"font-weight: 400;\">If you missed that one, definitely go back there before reading this one, <a href=\"https://www.biomechanicseducation.com/how-i-knocked-10-minutes-off-my-half-marathon-time-in-just-4-weeks/\" target=\"_blank\" rel=\"noopener noreferrer\">just click here to go and check it out now.</a></span>  </p>\n<p><span style=\"font-weight: 400;\">Today I am going to show you the 6 steps you need to implement to improve your client’s metabolic profile and hopefully help them get even better results, whether its being able to improve their running, lose a few pounds, and/or have more energy.</span></p>\n<p><span style=\"font-weight: 400;\">So let’s talk about Dr Phili Maffetone….</span>  </p>\n<h2> </h2>\n<h2><b>The Maffetone Method (MAF Method)</b></h2>\n<p><span style=\"font-weight: 400;\"><a href=\"https://philmaffetone.com\" target=\"_blank\" rel=\"noopener noreferrer\">Dr Philip Maffetone</a> wrote a book called the Maffetone Method in 2000. It explains the science and how to train a for a more efficient and healthy metabolic profile using your aerobic and anaerobic systems in a certain way. Just like you would train your muscles in a certain way, 5 days a week working 1 body part per session for example, here we will look at Maffetone’s recommendations for training your cardiovascular system. </span>  </p>\n<h2> </h2>\n<h2><b>6 Steps To Improving Your Client’s Metabolic Profile </b></h2>\n<p><span style=\"font-weight: 400;\">Maffetone obviously goes into far more detail in his book however I will simplify this and share with you 6 steps to consider.</span></p>\n<p><span style=\"font-weight: 400;\">Step 1 - Build Your Client’s Aerobic Base - Why &amp; How? </span></p>\n<p><span style=\"font-weight: 400;\">Step 2 - Developing Your Client’s Anaerobic System - Why &amp; How? </span></p>\n<p><span style=\"font-weight: 400;\">Step 3 - The 180 Formula - What is it? How do I calculate my clients?</span></p>\n<p><span style=\"font-weight: 400;\">Step 4 - The MAF Test - What is it? How do I use it for my client?</span></p>\n<p><span style=\"font-weight: 400;\">Step 5 - Write A Plan - Always a good idea right? </span></p>\n<p><span style=\"font-weight: 400;\">Step 6 - Taking Benchmarks - Using a HR monitor and/ or RPE</span>  </p>\n<h2> </h2>\n<h2><b>Step 1 - Build Your Client’s Aerobic Base - Why &amp; How? </b></h2>\n<p><span style=\"font-weight: 400;\">A big missing part of most peoples metabolic profile is their </span><i><span style=\"font-weight: 400;\">aerobic base. </span></i><span style=\"font-weight: 400;\">It was the part I was missing back in 2006 when Simon tested my metabolic system AND the reason for him recommending that I walk instead of run for a few weeks. The idea behind this being to condition my fat zone, my lower HR and therefore my aerobic function.</span></p>\n<p><span style=\"font-weight: 400;\">After doing this I was eventually able to run and utilise this energy source because I had developed my bodies ability to tap into it. This also resulted in a low of body fat, being able to run faster without my HR going as high as it had previously. </span>  </p>\n<h3><b>Health Benefits Of Building Your Aerobic Base</b></h3>\n<p><span style=\"font-weight: 400;\">Maffetone explains the health benefits in physiological terms... </span>  </p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic muscle fibres are very resistant to injury. It is more commonly anaerobic muscle fibres that are damaged.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Joint support comes from aerobic fibres.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Better aerobic development = less risk of dehydration</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Fast burn takes place in aerobic fibres  </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic muscles provide endurance for all physical activities not just sport</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic speed - the ability to work harder/faster with the same or less energy can develop</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic development improves circulation &amp; cardiovascular (CV) function</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Increase blood circulation helps nearby anaerobic muscles fibres work better or additional power is required</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Antioxidant activity takes place in aerobic muscles - necessary for optimal health </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">High levels of aerobic function almost assure you won’t ‘overtrain’ </span></li>\n</ul>\n<p><b><i>Overtraining</i></b><i><span style=\"font-weight: 400;\"> occurs when an athlete performs more training than his or her body can recover from. Eventually, this leads to a decline in performance. </span></i><span style=\"font-weight: 400;\">(</span><a href=\"https://www.stanfordchildrens.org/en/service/sports-medicine/conditions/overtraining-burnout\"><span style=\"font-weight: 400;\">https://www.stanfordchildrens.org/en/service/sports-medicine/conditions/overtraining-burnout</span></a><span style=\"font-weight: 400;\">  )</span>  </p>\n<h2> </h2>\n<h2><b>Step 2 - Developing Your Client’s Anaerobic System - How? </b></h2>\n<p><span style=\"font-weight: 400;\">Ok, so how do we develop our clients aerobic base?</span> <span style=\"font-weight: 400;\">Well, we need to take measurements of Maximum HR and body fat (BF) as benchmarks to understand if someone is utilising their aerobic energy system and burning, or using, their fat source.</span>  </p>\n<p><span style=\"font-weight: 400;\">This a key reason why we, as personal trainers, are taught how to take body fat measurements. Not for simply for aesthetics but BF is a good indicator of how healthy you are in terms of using your stored energy. See Step 6 for the simplest measurement for BF.</span>  </p>\n<p>&nbsp;</p>\n<h3><b>Building Your Client’s Base</b></h3>\n<p><span style=\"font-weight: 400;\">Exercising above a certain HR is anaerobic and below that HR is aerobic. What we want to learn is; </span>   <i><span style=\"font-weight: 400;\">“Are you training your body to burn more fat or sugar?”</span></i>  </p>\n<p><span style=\"font-weight: 400;\">Counting the calories you burn doesn\'t tell you which calories you are burning, ie fat or sugar. So what we need is a calculation that determines how, using our HR, for example, we can be more accurate with understanding which training zone we are in during our training. </span>  </p>\n<h2> </h2>\n<h2><b>Step 3 - The 180 Formula - What is it? How do I calculate my clients?</b></h2>\n<p><span style=\"font-weight: 400;\">Also during your personal training course, I am confident you will have come across the 220 less your age as a measurement for max HR, right? Well, Maffetone developed in the 1980’s, which he found to be a far more accurate formula. Maffetone states “</span><i><span style=\"font-weight: 400;\">The 180 Formula is based on each individual\'s general health and fitness level and was derived from clinical trials and from gas analyser results”. </span></i>  </p>\n<p><span style=\"font-weight: 400;\">The 180 Formula takes into account stresses and contributing factors to the elevating or lowering of the training HR. </span>   <i><span style=\"font-weight: 400;\">“The regular 220 model relies on estimated max HR and training to a % of that based on subjective evidence.” </span></i><span style=\"font-weight: 400;\">Maffetone states. He explains that only 1 in 3 actually fit into this equation. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">The 180 Formula works like this:</span></p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Subtract your client’s age from 180</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Then modify the number by selecting the category that best matches their health and fitness profile:</span></li>\n</ul>\n<ol>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If they are recovering from a major illness (heart disease, an operation, hospital stay) or if they are on any medication, subtract an </span><span style=\"font-weight: 400;\">additional 10</span><span style=\"font-weight: 400;\">.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If they haven’t exercised before, have exercised irregularly, exercising with an injury, have regressed in competition, get more than 2 colds or cases or flu per year, have allergies or asthma, subtract an </span><span style=\"font-weight: 400;\">additional 5</span><span style=\"font-weight: 400;\">.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If they have exercised regularly (4-5 times weekly) for up to 2 years without any of the above.</span><span style=\"font-weight: 400;\"> Just use 180-age.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If they are a competitive athlete and have been training for more than 2 years without any of the above and made progress in competition without injury. </span><span style=\"font-weight: 400;\">Add 5.</span></li>\n</ol>\n<p><span style=\"font-weight: 400;\">If unsure between 2 categories use the lower score. Example, a 30yr old client who hasn’t exercised before then your maximum HR would be;</span>  </p>\n<p><span style=\"font-weight: 400;\">180 - 30 - 5 = 145</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Now you have their maximum HR we can start to calculate ranges. 10 beats below their max would be aerobic - ie max HR is 145 their aerobic training zone would be 135-145.</span>  </p>\n<p><span style=\"font-weight: 400;\">Please note when first using this method there is a good chance your client will find training in this zone feels very easy. This could indicate that they have been overtraining. Over time as their aerobic system improves, they will have to work harder to maintain the same HR. So don’t panic, the metabolic system is dynamic to their present training/lifestyle and can be developed and they will need to go faster to achieve the same rate of perceived exertion or RPE. It\'s down to use to advise and educate.</span>  </p>\n<p>&nbsp;</p>\n<h2><b>Step 4 - The MAF Test - What is it? How do I use it for my client?</b></h2>\n<p><span style=\"font-weight: 400;\">The Maximum Aerobic Function or MAF Test is to simply choose a running, cycle route, treadmill (pretty much a cardiovascular training that you can measure and time). Then for the example let’s say your clients chosen MAF test is a 2 mile run around the village, run that measured distance, to time and measure their HR during it. The idea is each time they perform the MAF test, say every 4 weeks (recommended), you always time it and measure their HR. The goal would be to gradually do the same route quicker at the same HR. </span> <span style=\"font-weight: 400;\">Another way to use the MAF test might be to cycle a 30-minute route at their max HR (after an easy cycling warm-up) then ideally the time to complete the route should decrease. </span>  </p>\n<p>&nbsp;</p>\n<h2><b>Step 5 - Write A Plan - Always a good idea right? </b></h2>\n<p><span style=\"font-weight: 400;\">Take your client\'s waist to hip ratio, monitor their resting HR, calculate their maximum HR, design a periodised plan of building their aerobic base first over several weeks, re-monitor/measure then adjust accordingly. Re-assess and re-evaluate, adjust and repeat.</span>  </p>\n<p>&nbsp;</p>\n<h2><b>Step 6 - Taking Benchmarks - Using a HR monitor and/ or RPE</b></h2>\n<p><span style=\"font-weight: 400;\">Now I am sure many of you will have fat callipers but here we will be using waist to hip ratio since it\'s very simple and yet offers more information about whether your client’s body fat content is heavily influenced by diet. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Waist to hip ratio = waist measurement divided by hip measurement </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">A ratio above 0.9 in men or 0.8 in women may indicate a significant proportion of body fat comes from excess carbohydrates, especially refined.</span> <span style=\"font-weight: 400;\">Now if you want to tap into nutritional subjects please go to the experts at BTN Academy, where they run course and train nutrition coaches to advise you far more bespoke than I can in this blog. </span>   <span style=\"font-weight: 400;\">However, most importantly the waist-hip ratio is useful for evaluating whether your client’s aerobic system is developing properly. Again once every 4 weeks take this measurement to analyse your clients\' results.</span>  </p>\n<h3> </h3>\n<h3><b>Summary </b></h3>\n<p><span style=\"font-weight: 400;\">So to summarise, with the industry obsessed with HIIIT, intervals, sweat and endorphins, it is really our job to ensure our clients aren’t, in fact, STORING body fat due to ‘overtraining’. </span> <span style=\"font-weight: 400;\">Let’s educate and support them in learning how to test and measure results with a method, that might surprise them but, that we can convince them to try because they trust us.   </span></p>\n<p><span style=\"font-weight: 400;\">Try out these 6 steps and maybe even <a href=\"https://philmaffetone.com/maf-app/\" target=\"_blank\" rel=\"noopener noreferrer\">download the MAF app, which you can find through his website.</a></span></p>\n<p>&nbsp;</p>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\">\n<p>&nbsp;</p>\n<hr /><br /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2 style=\"text-align: center;\">Help Runners Reduce Their Risk Injury &amp; Improve Their Performance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\">Check out the Running Biomechanics Workshop Now - Click here</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13709} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13709\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Running-Biomechanics-Biomechanics-Education-1-1024x512.png\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n</figure>\n</div>','6 Steps To Improving Your Clients Metabolic Profile','','draft','closed','closed','','6-steps-to-improving-your-clients-metabolic-profile','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=14118',0,'post','',0),(14133,0,'2019-06-05 19:23:54','2019-06-05 19:23:54','','6 Steps To Improving Your Metabolic Profile - Biomechanics Education','','inherit','open','closed','','6-steps-to-improving-your-metabolic-profile-biomechanics-education','','','2019-06-05 19:23:54','2019-06-05 19:23:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/06/6-Steps-To-Improving-Your-Metabolic-Profile-Biomechanics-Education-1.png',0,'attachment','image/png',0),(14386,3,'2019-06-12 16:42:20','2019-06-12 16:42:20','<h2>Why You Should Add Hip Hitching to Your Clients’ Programmes</h2>\r\n<span data-contrast=\"auto\">Incorporating hip hitching into your clients\' training can benefit both general fitness enthusiasts and athletes. Let\'s explore what the hip hitch is, its benefits, and how to integrate it effectively into training routines.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2><b><span data-contrast=\"auto\">What Is the Hip Hitch?</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">Hip hitching involves two main joint actions:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Hip Abduction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Lateral Spinal Flexion</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span data-contrast=\"auto\">Unlike the typical hip abduction where the leg moves away from the body, hip hitching involves lifting the hip away from the standing leg, causing the pelvis to move. This movement also engages the lateral flexors of the spine, making it a multifaceted exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Try This:</span></b><span data-contrast=\"auto\"> Stand on your left leg and lift your right hip up and away. Notice how your left pelvis moves—this is hip hitching in action.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b>Here is a quick video I put together to show you...</b>\r\n\r\n[embed]https://youtu.be/UhuuS6h3R6Q[/embed]\r\n<h2>Benefits of Hip Hitching</h2>\r\n<span data-contrast=\"auto\">We naturally perform a hip hitch with every step we take, though with a smaller range of motion. Here’s why practicing this movement can be valuable:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Improves Pelvic Stability: Essential for efficient walking and running.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Strengthens Key Muscles: Targets the quadratus lumborum (QL), obliques, gluteus medius, gluteus minimus, and tensor fasciae latae (TFL).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2>Anatomy of the Hip Hitch</h2>\r\n<strong>Hip hitching requires: </strong>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Right hip lifting due to spinal lateral flexion (involving QL and obliques)</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Left hip abducting to stabilize the pelvis (involving glute medius, minimus, and TFL)</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">These muscle groups work together during walking/running to maintain stability in the frontal plane.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Identifying Frontal Plane Stability Issues</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">To assess if your client needs hip hitching exercises, observe their pelvic alignment during single-leg activities. Look for:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Uneven hip levels during single-leg stands or lunges.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Lateral shifts or drops in the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span data-contrast=\"auto\">These signs may indicate weak hip abductors and lateral spinal flexors, making hip hitching an effective corrective exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2>Performing the Hip Hitch</h2>\r\n<b><span data-contrast=\"auto\">Basic Hip Hitch:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Stand on one leg with the other foot off the ground.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Lift and lower the hip through a full range of motion in the frontal plane.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Minimize rotation or excessive movement elsewhere.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<b><span data-contrast=\"auto\">Advanced Variations:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Perform on a raised surface to increase range.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Add weights for added resistance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Integrate into static or dynamic lunges for increased complexity and load.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2>Integrating Hip Hitching into Training</h2>\r\n<span data-contrast=\"auto\">Introduce hip hitching early in your clients’ programs to enhance their compound leg exercises. Progressively incorporate more advanced variations to continue challenging their stability and strength.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Incorporating hip hitching can make your training programmes more effective and engaging. Start experimenting with these techniques and observe the improvements in your clients\' performance and stability.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2>Enhance Your Training Skills</h2>\r\n<span data-contrast=\"auto\">Want to reduce your clients\' injury risk and achieve better results? Explore our Biomechanics Coach Diploma, which now includes a Level 4 Low Back Pain Qualification. </span><span data-contrast=\"auto\">Click </span><a href=\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> for more information.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<a style=\"font-family: var(--font-body); font-size: 16px; font-weight: var(--font-body-weight);\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a>','Why We Should Consider Adding Hip Hitching To Our Clients Programmes','','publish','closed','closed','','hip-hitching','','','2025-01-20 16:03:49','2025-01-20 16:03:49','',0,'https://www.biomechanicseducation.com/?p=14386',0,'post','',0),(14387,0,'2019-06-12 16:10:49','2019-06-12 16:10:49','','Why You Should Consider Adding Hip Hitching To Your Clients Programmes','','inherit','open','closed','','why-you-should-consider-adding-hip-hitching-to-your-clients-programmes','','','2024-09-06 14:41:47','2024-09-06 14:41:47','',14386,'https://biomechanicseducation.com/wp-content/uploads/2019/06/Why-You-Should-Consider-Adding-Hip-Hitching-To-Your-Clients-Programmes-1.png',0,'attachment','image/png',0),(14576,3,'2019-06-24 13:49:43','2019-06-24 13:49:43','<p><span style=\"font-weight: 400;\">Over the last 12 months I have been exploring and researching online education vs face to face in relation to the Biomechanics Education programmes. Online education is something I am asked about on a daily basis both nationally and internationally. </span>  </p>\n<p><span style=\"font-weight: 400;\">It has challenged me to struggle between my ‘commercial head’ and my passion driven bias towards actually being face to face in a classroom. </span>   <span style=\"font-weight: 400;\">With the evolution of technology and the fact, we are all leading busier lifestyles crammed with ‘things to do’ we are seeing a huge increase in the demand for accessing information online. </span>  </p>\n<p><span style=\"font-weight: 400;\">There are clearly pros and cons to this platform of information delivery and it’s obviously got some benefits over accessing information face to face like the ‘old fashioned’ way at libraries or colleges for example. However, my question is this…….is it diluting quality? and specifically in the delivery of the </span><b>education of practical skills like Personal Training</b><span style=\"font-weight: 400;\">?  </span></p>\n<p><span style=\"font-weight: 400;\">Now obviously times are changing and us old folk need to keep up with modern culture…..but is it at a cost?</span></p>\n<p><span style=\"font-weight: 400;\">In this particular Juicemail I want to ask YOU, the readers, to think about this; When it comes to face to face education vs online while learning practical skills specifically, what do YOU feel are the pros and cons of each AND is online movement education diluting quality in your opinion?</span>  </p>\n<p>&nbsp;</p>\n<h3><b>My Thoughts On The Online vs Face To Face Discussion</b></h3>\n<p><span style=\"font-weight: 400;\">Here I will look at examples of both, where they work and where they don\'t work based on my research and experience</span> <span style=\"font-weight: 400;\">Now to be clear… when I talk about Face to Face (F2F), I mean physically in a room with a teacher. </span> <span style=\"font-weight: 400;\">When I talk about “online training” (OT) I am referring to courses that are accessed online.</span>  </p>\n<h3><b>Online Learning Pros</b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Usually cheaper</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Easier to access</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Convenient</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Set your own pace taking breaks anytime </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">More easily accessible for learners with special requirements </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Offers visual (video and images) and written information</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">No peer pressure </span></li>\n</ul>\n<h3><b>Online Learning Cons</b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Less personal </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">No immediate feedback </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Can\'t get immediate answers/help</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Lack having physical experience</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Lacks judgment of tutor to offer individualised training </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Lack of diversity / professional discussion </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Practical correction unavailable </span></li>\n</ul>\n<h3><b>Face To Face Learning Pros</b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Interactive and personal </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Sense of camaraderie</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Human connection </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Experiencial, more memorable meaning more chance of retaining information</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Change of scene can be good </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Different points of view </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Immediate feedback from the tutor</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Empathetic teaching </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Networking with peers </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Great for questions on physical techniques / practical application </span></li>\n</ul>\n<h3><b>Face To Face Learning Cons</b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Cost is usually higher</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Travel and accommodation costs </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Time away for paid work / family</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Possibility of feeling judged </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Possible peer pressure </span></li>\n</ul>\n<h3><b>So How Do We Decide?</b></h3>\n<p><span style=\"font-weight: 400;\">Well, I think we each have a personal responsibility to ensure our own education is of a quality that enables us to provide/deliver an appropriate and insurable duty of care. One issue I have here is </span>  </p>\n<p><i><span style=\"font-weight: 400;\">You Don’t Know What You Don’t Know!</span></i>  </p>\n<p><span style=\"font-weight: 400;\">So research is hugely important and my guidance when asked is generally </span><i><span style=\"font-weight: 400;\">“you will get what you pay for</span></i><span style=\"font-weight: 400;\">” however there are some charlatans out there so, once again...do your research. </span>  </p>\n<h3><b>What Does The Research Say?</b>  </h3>\n<p><span style=\"font-weight: 400;\">Well, there are a lot of studies (see references) on the F2F Vs OT debate but when you whittle it down there is a clear response that a blend of BOTH is shown to be most effective. </span>  </p>\n<p><span style=\"font-weight: 400;\">Now personally I do pay for online education for all of the ‘pro’ reasons listed above. So while I prefer F2F education experiences I also believe that once we have a good quality base of education we can then apply our learning disciplines to easier to access platforms. </span></p>\n<p><span style=\"font-weight: 400;\">In all honesty, I am very biased towards F2F education certainly for gaining practical ‘qualifications’ BUT I am also practicing what I preach in terms of challenging my bias.</span>   <span style=\"font-weight: 400;\">So let me now ask you a question….</span>  </p>\n<h3><b>What Would YOU Do?</b></h3>\n<p><span style=\"font-weight: 400;\">…….. if YOU needed to employ yourself a coach, trainer, therapist, PT, doctor how would you feel about being seen by a professional who had gained their practical qualification/s online with no F2F training?</span>  </p>\n<p><span style=\"font-weight: 400;\">Of the above professions, I believe ONLY the Personal Training skill set can be accessed purely online.</span>  </p>\n<p><span style=\"font-weight: 400;\">Why is this?</span>  </p>\n<p><span style=\"font-weight: 400;\">Would you confess to being qualified purely online? If not why not?</span>  </p>\n<p><span style=\"font-weight: 400;\">Is there a problem with it?</span>  </p>\n<p><span style=\"font-weight: 400;\">We can get coached online, so why not educated?</span>  </p>\n<p><span style=\"font-weight: 400;\">How do you feel about online coaching?</span>  </p>\n<h3><b>Education &amp; Learning / Bad &amp; Good</b></h3>\n<p><span style=\"font-weight: 400;\">I have been involved in education and learning for 46 yrs, both as a learner, a teacher and also a teacher of teachers. Having had some incredibly life-changing bad F2F experiences I completely understand how people can be put off. Also, we hear so much about kids having bad experiences at school it does make you wonder. </span>  </p>\n<p><span style=\"font-weight: 400;\">However, my experiences gave me a huge passion for creating the best learner experiences I can for others. My Master Trainer team are taken through an apprenticeship that requires a particular standard of delivery with an inclusive focus that, I believe and the feedback suggests, we have gained a reputation for.</span>  </p>\n<p><span style=\"font-weight: 400;\">The inclusive and diverse nature of fantastic F2F education experiences cannot be denied and is still shown to be </span><i><span style=\"font-weight: 400;\">one of</span></i><span style=\"font-weight: 400;\"> the most successful ways to gain knowledge and skills. Sadly the research doesn’t seem to be up to date enough to provide evidence in terms of the very latest technology trends and also doesn’t seem to take into account the subject matter. </span>  </p>\n<p><span style=\"font-weight: 400;\">The ‘experience’ of F2F for learning, at least initially in my opinion, is still vital for becoming ‘qualified’ in a very practical skill set like being an exercise professional in some form.</span>  </p>\n<h3><b>When Is Online Movement Education OK? My Opinion…</b></h3>\n<p><span style=\"font-weight: 400;\">Look I am a people person, I love forging relationships, being with people, looking in their eyes, feeling their emotions and basing the moment on that. Since online there is less chemistry. </span> <span style=\"font-weight: 400;\">BUT </span> <span style=\"font-weight: 400;\">I also accept that others are NOT like me.</span>  </p>\n<p><span style=\"font-weight: 400;\">In my opinion, when OT is an upskill or CPD as an additional resource or a taster it is a brilliant compliment to a F2F qualification. </span>  </p>\n<p><span style=\"font-weight: 400;\">Here at the Biomechanics Education Academy, we offer BOTH F2F and OT through our various platforms to get our message out there BUT I am super keen to hear your views, so</span><span style=\"font-weight: 400;\"> leave a comment below and tell me what your thoughts are on F2F Vs OT.</span>  </p>\n<p><span style=\"font-weight: 400;\">Also, I just want to add, that I LOVE the fact we are having this discussion because it means people are committed to learning and continued development. </span> <span style=\"font-weight: 400;\">Ultimately as professionals, we should always be taking our skills to the next level, and as humans, our minds LOVE progression. </span> <span style=\"font-weight: 400;\">So whether your learning online or face to face I am delighted to know that you are committed to learning!</span>  </p>\n<h2>References</h2>\n<p>Alsaaty, F., Carter, E., Abrahams, D. and Alshameri, F., 2016. Traditional Versus Online Learning in Institutions of Higher Education: Minority Business Students’ Perceptions. <i>Business and Management Research</i>, 5(2).</p>\n<p>Ananga, P. and Biney, I., 2021. COMPARING FACE-TO-FACE AND ONLINE TEACHING AND LEARNING IN HIGHER EDUCATION. <i>MIER Journal of Educational Studies Trends &amp; Practices</i>, pp.165-179.</p>\n<p>Elucidat. 2022. <i>Online learning vs face to face learning | Elucidat</i>. [online] Available at: &lt;https://www.elucidat.com/blog/online-learning-vs-face-to-face-learning/&gt; [Accessed 18 June 2019].</p>\n<p>Keis, O., Grab, C., Schneider, A. and Öchsner, W., 2017. Online or face-to-face instruction? A qualitative study on the electrocardiogram course at the University of Ulm to examine why students choose a particular format. <i>BMC Medical Education</i>, 17(1).</p>\n<p>Keramidas, C., 2012. Are Undergraduate Students Ready for Online Learning? A Comparison of Online and Face-to-Face Sections of a Course. <i>Rural Special Education Quarterly</i>, 31(4), pp.25-32.</p>\n<p>Khazan, O., 2022. <i>The Myth of ‘Learning Styles’</i>. [online] The Atlantic. Available at: &lt;https://www.theatlantic.com/science/archive/2018/04/the-myth-of-learning-styles/557687/&gt; [Accessed 18 June 2019].</p>\n<p>Szeto, E., 2014. A Comparison of Online/Face-to-face Students’ and Instructor\'s Experiences: Examining Blended Synchronous Learning Effects. <i>Procedia - Social and Behavioral Sciences</i>, 116, pp.4250-4254.</p>\n<p>Voxy. 2022. <i>Research review: Online versus face-to-face learning outcomes</i>. [online] Available at: &lt;https://voxy.com/blog/2017/12/research-review-online-versus-face-face-learning-outcomes/&gt; [Accessed 18 June 2019].</p>\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Online Learning Versus Face To Face Education In The Fitness Industry. Which Is Better?','','draft','closed','closed','','online-learning-versus-face-to-face-education-in-the-fitness-industry-which-is-better','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=14576',0,'post','',0),(14577,0,'2019-06-21 08:27:40','2019-06-21 08:27:40','','Online Education Versus Face To Face Learning - Which is better_','','inherit','open','closed','','online-education-versus-face-to-face-learning-which-is-better_','','','2019-06-21 08:27:40','2019-06-21 08:27:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/06/Online-Education-Versus-Face-To-Face-Learning-Which-is-better_-1.png',0,'attachment','image/png',0),(14784,0,'2019-06-29 08:01:06','2019-06-29 08:01:06','','Diploma Handbook 2019','','inherit','open','closed','','diploma-handbook-2019','','','2019-06-29 08:01:06','2019-06-29 08:01:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/06/Diploma-Handbook-2019-1-1.pdf',0,'attachment','application/pdf',0),(14845,3,'2019-07-01 14:14:52','2019-07-01 14:14:52','<h2><b>What Does The Term \'Weak\' Mean Anyway?</b>  </h2>\n<p><span style=\"font-weight: 400;\">In our industry we are taught that if something is weak we should strengthen it, right?</span>   <span style=\"font-weight: 400;\">Yet here we discuss the true definitions of weak and the term injury and maybe we shouldn’t take these words too literally.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">First we should consider what is CAUSING the apparent ‘weakness’?</span> <span style=\"font-weight: 400;\">Because often weakness doesn’t want strength work immediately. It may require some preparation first, to enable its capacity for strength work and improve the effectiveness of the strength training. </span>  </p>\n<p><span style=\"font-weight: 400;\">This can make both subtle and huge differences in terms of how our clients perform and feel. </span>  </p>\n<h2> </h2>\n<h2><b>But How Do We Know What Is Causing The ‘Weakness’? </b>  </h2>\n<p><span style=\"font-weight: 400;\">Let me let you into a secret that altered my whole view of the complexities of the human body and improved my confidence and coaching model in application…..</span>   <span style=\"font-weight: 400;\">...no one </span><i><span style=\"font-weight: 400;\">knows!</span></i>  </p>\n<p><span style=\"font-weight: 400;\">HAHAHAHAHA Yes its true NO ONE </span><span style=\"font-weight: 400;\">KNOWS!!</span>  </p>\n<p><span style=\"font-weight: 400;\">At least not until they TRY something and see a change in performance of movement or strength. (<a href=\"https://www.biomechanicseducation.com/ever-heard-of-occams-razor/\" target=\"_blank\" rel=\"noopener noreferrer\">see Occam’s Razor Blog</a>) </span>  </p>\n<p><span style=\"font-weight: 400;\">Ok bear with me and let me explain…</span>  </p>\n<p><span style=\"font-weight: 400;\">We can use our FMS screens or biomechanics tests or sit and reach or 1 Rep Max BUT these only identify WHAT and we want to know WHY, right?</span>  </p>\n<p><span style=\"font-weight: 400;\">Remember back while learning your level 2 &amp; level 3 qualifications and we were taught generic stuff like:</span>  </p>\n<ul>\n<li><i><span style=\"font-weight: 400;\">If it\'s short, lengthen it</span></i></li>\n<li><i><span style=\"font-weight: 400;\">If it\'s weak strengthen it</span></i></li>\n<li><i><span style=\"font-weight: 400;\">Do squats for legs </span></i></li>\n<li><i><span style=\"font-weight: 400;\">Bench for chest </span></i></li>\n<li><i><span style=\"font-weight: 400;\">Hamstrings start at the tibia and finish at the ischial tuberosity </span></i>  </li>\n</ul>\n<p><span style=\"font-weight: 400;\">Do you also remember any of my past blogs that encouraged you to challenge everything?</span>  </p>\n<p><span style=\"font-weight: 400;\">Ok well in the education world (amongst other environments) it is recognised that if you are not ready to receive information, for whatever reason, its a tough deal comprehending and maybe, therefore, understanding complex subjects like </span><i><span style=\"font-weight: 400;\">how the body works.</span></i>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">At the beginning of every workshop/lecture/course or day of delivery, I will always ask my group </span>  </p>\n<p><span style=\"font-weight: 400;\">‘</span><i><span style=\"font-weight: 400;\">Why are you here? What is it you want to gain?</span></i><span style=\"font-weight: 400;\">”</span>  </p>\n<p><span style=\"font-weight: 400;\">The most common response is….</span>   <i><span style=\"font-weight: 400;\">‘I want a deeper understanding of how the body works</span></i><span style=\"font-weight: 400;\">’.</span>  </p>\n<p><span style=\"font-weight: 400;\">Then we re-learn L2/3 anatomy and vocabulary BUT we add in the concept of challenging what we </span><i><span style=\"font-weight: 400;\">heard</span></i><span style=\"font-weight: 400;\"> the first time.  </span>  </p>\n<p>&nbsp;</p>\n<h3><b>What Am I Getting At?</b>  </h3>\n<p><span style=\"font-weight: 400;\">Ok lets explore layered learning here and give you a better understanding of what I mean.</span> <span style=\"font-weight: 400;\">At L2/3 when we hear the term ‘weak’ we </span><i><span style=\"font-weight: 400;\">hear</span></i><span style=\"font-weight: 400;\"> that it needs strengthening. </span></p>\n<p><span style=\"font-weight: 400;\">However, when we get out there into the world of actually working with real bodies we realise this doesn\'t always work. We might also wonder if something else is going on… right? So let’s consider what the term ‘weak’ actually means in relation to the human body….</span>  </p>\n<p><span style=\"font-weight: 400;\">Definition from the internet…</span>  </p>\n<p>&nbsp;</p>\n<p><b>Weak:</b> <i><span style=\"font-weight: 400;\">lacking the power to perform physically demanding tasks; having little physical strength or energy</span></i> <span style=\"font-weight: 400;\">frail</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">feeble</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">puny</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">fragile</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">delicate</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">weakly</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Now let us consider some of the intrinsic things that can result in our client’s </span><i><span style=\"font-weight: 400;\">appearing </span></i><span style=\"font-weight: 400;\">‘weak’ in the realms of our specific remit..?</span></p>\n<ul>\n<li><span style=\"font-weight: 400;\">Tight Muscle</span></li>\n<li><span style=\"font-weight: 400;\">Inhibited Muscle</span></li>\n<li><span style=\"font-weight: 400;\">Subclinical Muscle Spasm</span></li>\n<li><span style=\"font-weight: 400;\">Stiff Joint</span></li>\n<li><span style=\"font-weight: 400;\">Lax Joint</span></li>\n<li><span style=\"font-weight: 400;\">Tethered Nerve</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">How many of the above require ‘strength’ training to address them? None of them!</span>  </p>\n<p><span style=\"font-weight: 400;\">If it’s tight, the muscle cannot contract in the way it’s supposed to. So </span><i><span style=\"font-weight: 400;\">appears</span></i><span style=\"font-weight: 400;\"> weak.</span>  </p>\n<p><span style=\"font-weight: 400;\">If there is a subclinical muscle spasm it has </span><i><span style=\"font-weight: 400;\">forgotten</span></i><span style=\"font-weight: 400;\"> how to fully contract and relax and so </span><i><span style=\"font-weight: 400;\">appears</span></i><span style=\"font-weight: 400;\"> weak.</span>  </p>\n<p><span style=\"font-weight: 400;\">If the muscle cannot contract properly, then attempting to strengthen it will have limited or zero effect.</span>  </p>\n<p><span style=\"font-weight: 400;\">Think of your client who has ‘weak glutes’, and yet no matter how much strengthening you do, the glutes don’t seem to improve.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Once you know what’s causing the glutes to be ‘weak’ and you address that, the glutes suddenly, as if by magic, start working. </span></p>\n<p><span style=\"font-weight: 400;\">Chances are if they haven’t been working for a while, they will need strengthening but at least now they can actually be strengthened.</span>  </p>\n<p><span style=\"font-weight: 400;\">But it’s important that you as the coach know and understand the WHY, behind your clients\' movement issues. Then, and only then, can you truly take their results to the next level.</span>  </p>\n<p><span style=\"font-weight: 400;\">Of course strength training is often ultimately the goal for a PT programme. However, there is often a preparation period to improve the chances of that strength work due to the ‘state’ many clients come to us in. </span>  </p>\n<p><span style=\"font-weight: 400;\">Once their body is prepared THEN strength work is likely to a). Be more effective b). Reduce risk in the future </span>  </p>\n<p><span style=\"font-weight: 400;\">Ok so shall we challenge other commonly used and possibly ambiguous terms that we are taught at L2/3 but should probably challenge in application. </span>   <span style=\"font-weight: 400;\">So the real question is HOW, how do we test for those things I mentioned?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Well there are a whole series of screens that we teach on our 2 day pelvic biomechanics workshop. So I would obviously highly encourage you to jump on that, and if you would like to find out more, <a href=\"https://www.biomechanicseducation.com/pelvic-biomechanics-workshops/\" target=\"_blank\" rel=\"noopener noreferrer\">then just click here and get in touch.</a> In fact here are the upcoming dates:</span></p>\n<p>&nbsp;</p>\n<p><b>Scotland Aug 2nd/3rd/4th Pelvic &amp; Spine Biomechanics Workshop</b></p>\n<p><b>Nottingham Aug 10th/11th Pelvic Biomechanics Workshop</b></p>\n<p><b>London Aug 29th/30th Pelvic Biomechanics Workshop</b>    </p>\n<p>&nbsp;</p>\n<h3>Start With Project Squat</h3>\n<p><span style=\"font-weight: 400;\">If you aren’t ready for that straight away, <a href=\"https://biomechanicseducation.clickfunnels.com/project-squat\" target=\"_blank\" rel=\"noopener noreferrer\">then check out Project Squat, just click here. It’s a FREE series</a>, all based around the squat, teaching you some of the screens and exercises we teach on the diploma. </span>  </p>\n<p>&nbsp;</p>\n<h3>Next Week - Injury</h3>\n<p><span style=\"font-weight: 400;\">Next week I am going to talk to you about another common misunderstanding that is sooooooo important for us as exercise professionals… Injury.</span>   <span style=\"font-weight: 400;\">So make sure you come back next week to see that one.</span>  </p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Why Strengthening Might Not Be The Solution To Your Clients “Weak” Glutes... Or Weak Anything...','','draft','closed','closed','','why-strengthening-might-not-be-the-solution-to-your-clients-weak-glutes-or-weak-anything','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=14845',0,'post','',0),(14846,0,'2019-07-01 13:52:21','2019-07-01 13:52:21','','Why Strengthening _Weak_ Glutes May Not Be The Answer','','inherit','open','closed','','why-strengthening-_weak_-glutes-may-not-be-the-answer','','','2019-07-01 13:52:21','2019-07-01 13:52:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Why-Strengthening-_Weak_-Glutes-May-Not-Be-The-Answer-1.png',0,'attachment','image/png',0),(15169,3,'2019-07-10 20:20:24','2019-07-10 20:20:24','<p><span style=\"font-weight: 400;\">Last week we discussed the whole ‘weak’ thing and how actually, just because something is appearing weak, doesn’t mean it actually needs strengthening, or at least maybe not right away. Think back to your clients with ‘weak glutes’... If you missed that post, <a href=\"https://www.biomechanicseducation.com/why-strengthening-might-not-be-the-solution-to-your-clients-weak-glutes-or-weak-anything/\" target=\"_blank\" rel=\"noopener noreferrer\">make sure you check it out, click here</a>.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Today I thought we would look at the world of injury. Injury can be a personal trainers nightmare. If a client is injured it means they often don’t train which, along with not doing the sessions with them, means they aren’t getting results and are less likely to come back and start training again once recovered.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">But… what if our thought process around injury was wrong?</span>  </p>\n<p><span style=\"font-weight: 400;\">What if simply stopping sessions and sending the client to see a physio when they get low grade back pain wasn’t the right approach?</span> <span style=\"font-weight: 400;\">You see, if you can keep clients training, or at least in a routine, then they are much more likely to get results. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">So let’s consider this question first...</span>  </p>\n<h2> </h2>\n<h2><b>What’s The Definition Of An Injury?</b></h2>\n<p><span style=\"font-weight: 400;\">So we are generally trained at L2/3 to send anyone with an injury away since it is not our remit, right? The problem is what our clients call an injury, might simply be a low grade ache or stiff back that needs some exercise. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Definition from the internet…</span>  </p>\n<h3><b>Injury:</b></h3>\n<p><i><span style=\"font-weight: 400;\">an instance of being injured, she suffered an injury to her back </span></i><b>wound</b><b>, </b><b>bruise</b><b>, </b><b>cut</b><b>, </b><b>gash</b><b>, </b><b>tear</b><b>, </b><b>rent</b><b>, </b><b>slash</b><b>, </b><b>gouge</b><b>, </b><b>scratch</b><b>, </b><b>graze, laceration</b><b>, </b><b>abrasion</b><b>, </b><b>contusion</b><b>, </b><b>lesion</b><b>, </b><b>sore, trauma</b>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">In my experience, the term ‘injury’ is being attached to literally ANYTHING that hurts or is uncomfortable or long term.</span>  </p>\n<p><span style=\"font-weight: 400;\">The term injury is being attached to ‘issues’ that are neither an ‘injury’ nor even anything ‘clinical’. There are a very high percentage of ‘issues’ that in my experience are simply poor biomechanics, for example. </span>  </p>\n<p>&nbsp;</p>\n<h3><b>What’s Does This Mean For Exercise Professionals &amp; Medical Professionals?</b></h3>\n<p><span style=\"font-weight: 400;\">Well I believe it means 2 things </span>  </p>\n<p><span style=\"font-weight: 400;\">1). Exercise professionals (in most cases) could help more by prescribing exercises instead of just referring away.</span>  </p>\n<p><span style=\"font-weight: 400;\">2). Medical professionals often ‘fail’ when using clinical assessments and treatments for something that is simply biomechanical (ie nothing shows up on an MRI, they are told nothing is wrong but they still hurt)</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">There is a huge problem with this because some professionals are being labelled as rubbish or not very good at their job when in fact they simply aren’t the right professional for the job. GP’s, physios and so on are getting a bad rap unnecessarily (Ok for some it may well be right).  </span> <span style=\"font-weight: 400;\"> </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">What I mean by this is if your ‘injury’ isn’t in fact an </span><i><span style=\"font-weight: 400;\">injury</span></i><span style=\"font-weight: 400;\"> then a professional that is skilled in addressing </span><i><span style=\"font-weight: 400;\">injuries</span></i><span style=\"font-weight: 400;\"> may well fail you in their methods.</span>  </p>\n<p>&nbsp;</p>\n<h2><b>When Niggles Become Injuries</b></h2>\n<p><span style=\"font-weight: 400;\">Low grade non-specific ‘niggles’ or ‘aches’ that are insidious and possibly recurring are often NOT an injury but they can become one if unaddressed. </span>  </p>\n<p><span style=\"font-weight: 400;\">They are more often than not caused by a lifestyle factor that can be addressed by a fitness professional with an understanding of assessments and prescribing safe exercises to improve movement. </span>  </p>\n<p><span style=\"font-weight: 400;\">This accompanied with some discussion about lifestyle can have the desired effect where clinical intervention has failed. This happens very commonly because the ‘issue’ is often not where they hurt! So treating the site of pain doesn’t actually solve this type of issue.</span>  </p>\n<p><span style=\"font-weight: 400;\">You have to know where the issue stems from to be able to get the client moving better even though the area of the root cause may well not hurt at all!</span>  </p>\n<h2> </h2>\n<h2><b>So Where Does This Leave Fitness Professionals?</b></h2>\n<p><span style=\"font-weight: 400;\">So fitness professionals wanting to confidently work within this demographic MUST gain the right skill set for insurance purposes. This would also give you a set of exercise techniques that are even safer, or less contraindicated than the standard strength moves we learn during our L2/3 education. This means learning about low-grade techniques that can, not only keep them moving but also, prepare them better for movement. </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Biomechanic Coaches are experts in this field of assessment, preparation and quality referral. Not sure whether this is too brazen?</span> <span style=\"font-weight: 400;\">While a reciprocal arrangement with a physio might seem a challenge, we MUST be proactive in showing how much we can contribute to a multidisciplinary team by gaining specialist skills beyond L3 PT.</span> <span style=\"font-weight: 400;\">While clients might automatically seek a physio for something that hurts, if we have close relations with these other professionals the clients is more likely to trust your recommendation of referral. </span> <span style=\"font-weight: 400;\">We should also set the bar higher in terms of seeking to build relations with GP clinics for referral which is the whole point of this qualification. Now that CIMSPA are supporting the recognition of this role maybe seek their advice, help?</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Simply stopping training to let the ‘injury’ subside isn’t enough. We need to rebuild our clients\' movement ability and confidence in moving safely and with special techniques.</span> <span style=\"font-weight: 400;\">A perfect example of S.M.A.R.T goal setting here would be NOT smashing a client to the point of puking. It is vital that we consider the capacity for load with all our training programmes not matter what the level or ability.</span> <span style=\"font-weight: 400;\">So from that first induction, we should be using compulsory preparation techniques and assessment tools with our S.M.A.R.T goals for confidence, safety and success.</span>  </p>\n<p><span style=\"font-weight: 400;\">So remember this tick list:</span></p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Does the consultation bring up anything of concern?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Who is the best person to deal with that?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If you continue are you staying within your remit?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How do you know?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What tests can YOU do?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Could you gain more skills to help with identifying causes?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Can you forge relations with a multi diciplinary team?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Are you demonstrating a duty of care?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Is the clients\' description of ‘weak’, ‘injury’ or ‘pain’ ambiguous?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What questions could you ask to find out?</span></li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">What an amazing world it would be if we ALL had a great referral network that enabled us to support our clients and offer a duty of care that is most appropriate for their needs.</span> <span style=\"font-weight: 400;\">It is my belief that a very large portion of pain and ‘injury’ is actually remedied with the simplest intervention fit pros can provide - exercise!</span> <span style=\"font-weight: 400;\">Yet it takes a confident professional to refer their client away to someone else.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">It is also vital that we always remember that... </span>  </p>\n<p><i><span style=\"font-weight: 400;\">WE DON’T KNOW WHAT WE DON’T KNOW</span></i>  </p>\n<p><span style=\"font-weight: 400;\">So having a second, third, fourth opinion is not only vital, helpful and fascinating in terms of what we can learn from others views but also it increases the confidence of everyone involved. </span>    </p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Is It Actually An Injury? Who Should You Send Your Client To, To Get It Fixed?','','draft','closed','closed','','is-it-actually-an-injury-who-should-you-send-your-client-to-to-get-it-fixed','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=15169',0,'post','',0),(15175,0,'2019-07-10 20:03:36','2019-07-10 20:03:36','','Is It Actually An Injury_','','inherit','open','closed','','is-it-actually-an-injury_','','','2019-07-10 20:03:36','2019-07-10 20:03:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Is-It-Actually-An-Injury_-1.png',0,'attachment','image/png',0),(15291,3,'2019-07-15 16:32:38','2019-07-15 16:32:38','<p>[vc_row][vc_column][vc_column_text]<i><span style=\"font-weight: 400;\">Have you read ‘<a href=\"https://www.amazon.co.uk/This-Going-Hurt-Secret-Diaries/dp/1509858636/ref=sr_1_1?keywords=this+is+going+to+hurt&amp;qid=1563206903&amp;s=gateway&amp;sr=8-1\" target=\"_blank\" rel=\"noopener noreferrer\">This Is Going To Hurt’</a></span></i><span style=\"font-weight: 400;\"> by Adam Kay yet? Well, that book has inspired this blog post…</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">I never thought I would ask the question… “Do You Care Too Much?”, because </span><i><span style=\"font-weight: 400;\">surely</span></i><span style=\"font-weight: 400;\"> that’s not possible, right?</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">It kind of bothers me somewhat and not because I am cold and heartless but because of the very reason I too DO CARE, A LOT.</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">So, why on earth would it matter if you care a lot?</span></p>\n<p>&nbsp;</p>\n<h2><b>Do You Care Too Much?</b></h2>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">I think when we really care and we really want to help someone, we can sometimes overstep our remit because we THINK we can help, and </span><i><span style=\"font-weight: 400;\">maybe</span></i><span style=\"font-weight: 400;\"> our client hasn’t had a great experience with each/most or some of the professionals they have seen previously. </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">The client desperately WANTS you to be able to help them, and you want to be able solve their problem.</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">So you do everything you can, and then sometimes, try new things, different things, things that might just fall outside of your scope.</span></p>\n<p>&nbsp;</p>\n<h2><b>Do You Try Things You Shouldn’t?</b></h2>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Well this might just mean we run the risk of being negligent or unknowingly be prescribing contraindicated exercises or giving inappropriate advice and therefore risking the physical health of the client.</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">The biggest problem is something I mentioned in last weeks blog about injuries…. WE </span><i><span style=\"font-weight: 400;\">DON’T KNOW WHAT WE DON’T KNOW</span></i><span style=\"font-weight: 400;\">!</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">We need the help of a multidisciplinary team around us to gain second, third and maybe fourth opinions. WHY? Because most of what is going on inside the clients body is based upon hypothesis. Which means NO ONE KNOWS, thus leaving us all at risk of making the wrong decision based upon our expertise. </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">By the way:</span></p>\n<p><span style=\"font-weight: 400;\">Knowledge + Experience = EXPERTISE</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">BUT</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Other professionals are likely to have different tests, knowledge, questions to ask based on their expertise and skill sets that can help US and all those involved make a much more </span><i><span style=\"font-weight: 400;\">informed</span></i><span style=\"font-weight: 400;\"> decision on how to support our client in their physical health and wellbeing. </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">It doesn’t matter how many years of practise and piles of certificates we collect, we still see the world different to our counterparts. So while we MIGHT be able to help it’s ALWAYS best to get a second opinion if you aren’t 100% sure or if there is a red or even yellow flag found during the initial consultation/assessment. </span></p>\n<p><span style=\"font-weight: 400;\">(A Red Flag example might be a clinical condition that could be contraindicated by movement - ie Osteoarthritis</span></p>\n<p><span style=\"font-weight: 400;\">A Yellow Flag example might be mental health condition that must be taken into account but may not in itself directly inhibit movement - ie depression)</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">It is vital we improve our reputation for good practise because we NEED to help the NHS and at present no one really trusts exercise professionals enough to willingly open up GP referral schemes. </span></p>\n<p>&nbsp;</p>\n<h2><b>Caring is The Whole Point To Many Jobs</b></h2>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">However there are always examples of caring  </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">To give you an example of JUST how much the NHS is struggling from an extremely qualified and experienced consultant doctor I strongly recommend you read this book….  </span></p>\n<p>&nbsp;</p>\n<h2><b>The NHS Is Struggling - From The Horse\'s Mouth</b></h2>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">What does it mean to be a doctor ?</span></p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.amazon.co.uk/This-Going-Hurt-Secret-Diaries/dp/1509858636/ref=sr_1_1?keywords=this+is+going+to+hurt&amp;qid=1563206903&amp;s=gateway&amp;sr=8-1\" target=\"_blank\" rel=\"noopener noreferrer\"><i><span style=\"font-weight: 400;\">“This is Going To Hurt” Adam Kay</span></i></a></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Adam Kay wrote an award winning book about his diaries as a doctor and, while hilarious, it is also a very sad but enlightening read that describes the real struggles of going into an often thankless job </span><i><span style=\"font-weight: 400;\">because you care</span></i><span style=\"font-weight: 400;\">. </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">His cathartic practise of writing down all of his experiences in such a way as to bring you to tears of both laughter and utter sadness. </span></p>\n<p><span style=\"font-weight: 400;\">If you read one book this year, please read this one. </span></p>\n<p>&nbsp;</p>\n<p><b>Why?</b></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Why am I suggesting you read it? </span></p>\n<p><span style=\"font-weight: 400;\">1). It will make you laugh </span></p>\n<p><span style=\"font-weight: 400;\">2). It is a disturbingly honest account of our NHS</span></p>\n<p><span style=\"font-weight: 400;\">3). To understand that ….</span></p>\n<p>&nbsp;</p>\n<h2><b>How Can Exercise Professional’s Help?</b></h2>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">How we can help is by demonstrating duty of care, gaining good quality education, developing and working within a multidisciplinary team and working hard to assess/monitor/reassess and self reflect.</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">We really need to up our game individually so that as a group of professionals we are taken more seriously. Because I am convinced that MOST of the time, educated exercise can help MOST of the nations health issues. </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Who are the exercise experts????</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">US!</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">I want to challenge you to continue your education, never stop learning, push yourself to learn new things. That\'s how you will help your clients.</span>[/vc_column_text][/vc_column][vc_column][vc_column_text] </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>','Is There Such A Thing As Caring Too Much? And Can It Adversely Affect Your Client?','','draft','closed','closed','','is-there-such-a-thing-as-caring-too-much','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=15291',0,'post','',0),(15294,0,'2019-07-15 16:28:52','2019-07-15 16:28:52','','Is There Such A Thing As Caring Too Much_ And Can It Adversely Affect Your Client_','','inherit','open','closed','','is-there-such-a-thing-as-caring-too-much_-and-can-it-adversely-affect-your-client_','','','2019-07-15 16:28:52','2019-07-15 16:28:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Is-There-Such-A-Thing-As-Caring-Too-Much_-And-Can-It-Adversely-Affect-Your-Client_-1.png',0,'attachment','image/png',0),(15432,3,'2019-07-22 14:11:29','2019-07-22 14:11:29','<p><span style=\"font-weight: 400;\">Passive income is NOT a quick fix to living on a beach while money pours in and Gary Vee is the genius in telling you HOW and WHY this is the case. In this video he explains simply WHY the false belief of building your ‘passive income’ will create a lazy life for you living on a beach.</span></p>\n<p>[embed]https://www.facebook.com/gary/videos/2336471133290315/[/embed]</p>\n<p><span style=\"font-weight: 400;\">Now don’t get me (or Gary) wrong, there are some that have managed to do exactly that and I know a couple….BUT…. a). At what cost? b). For how long? c). How many have done it both successfully AND long term?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">We are fed all sorts of emotive videos, articles and promotions of techniques or systems that mean you can SIMPLY create passive income out of nowhere and retire on a beach in a short space of time. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Gary will tell you his story of long long hours, dedicated hard work, for many many years, with commitment and passion that had the side effect of allowing him to now do what he LOVES most…..and here\'s the thing…..what he LOVES the most others would call WORK!!</span>  </p>\n<p>&nbsp;</p>\n<p><b>What Am I Getting At….?</b>  </p>\n<p><span style=\"font-weight: 400;\">Well it’s the same with the body…**SHOCKER ALERT**</span>  </p>\n<p><span style=\"font-weight: 400;\">...there are NO quick fixes to LONG TERM physical health. </span>  </p>\n<p><span style=\"font-weight: 400;\">There I said it! </span>  </p>\n<p><span style=\"font-weight: 400;\">Those adverts about pain reducing body straps to hold you in good posture, 12 weeks to a six pack, those medicated smelly muscle rubs, those promises of </span><i><span style=\"font-weight: 400;\">in just so many days, hours, minutes you will be painfree</span></i><span style=\"font-weight: 400;\">…...please take them ALL with a pinch of salt. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Now everything will, of course, help someone but for how long and how effectively and at what cost?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Your intrinsic biomechanics are so dynamic and adaptive to the environment that we need to constantly maintain homeostasis. Constant nourishment, hydration, sleep, mental stimulation, healthy movement….and of course lots of hugs, sex and laughter for good measure, right!??! </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Too many people are making a shed load of money off those suckers who believe there is a magic timescale or number to fixing your body, or making loads of money easily or moving more efficiently without much commitment.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Quick fixes might work in a very small percentage of cases for both my example and Gary’s example.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">But certainly not for most of us</span>   <i><span style=\"font-weight: 400;\">‘The 4hr Work Week’</span></i><span style=\"font-weight: 400;\"> by Timothy Ferris, gives a fantastic system of approach to working less while generating income and holds a fascinating way of looking at your job. However this is not what most of us are after in terms of </span><i><span style=\"font-weight: 400;\">purpose</span></i><span style=\"font-weight: 400;\"> or maybe I am wrongly assuming you are like me?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Surely the act of doing what you love, whether that be work or movement based, will result in you not working and being more consistent in your movement nourishment?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">YES Sometimes a quick massage or chucking in orthotics can ease symptoms…. and I have done both!</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">However LONG TERM happiness in ‘work’ and healthy pain free movement BOTH come from accepting that it\'s highly likely not to last if you take the quick fix approach.  </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">C’MON, We ALL know the answer reeeeaaaaallly, don’t we?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">If you never want to work again it’s really easy to find the solution... </span>  </p>\n<p><span style=\"font-weight: 400;\">Do something you love and get really good at it! I absolutely LOVE what I do and cannot wait each day to get going on things. Of course I would be lying if I said I didn’t want more freedom BUT the actual act of working TOWARDS a goal gives me </span><i><span style=\"font-weight: 400;\">purpose</span></i><span style=\"font-weight: 400;\"> and is what I get a huge amount of satisfaction from.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">It is the same for your clients movement goals….yes you can tell them they will look amazing in 12 weeks and of course they may well look great and feel improvements. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Yet it is our duty of care to educate our clients on long term healthy, pain free movement even if aesthetics is an initial goal or driver.  </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">So yes the answer is </span><i><span style=\"font-weight: 400;\">simple</span></i> <span style=\"font-weight: 400;\">But the solution is a long term commitment, since your body is with you for life, not just while you want to look great.</span>  </p>\n<p>&nbsp;</p>\n<p><b>So What?</b>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">So in terms of doing a job you LOVE read </span><i><span style=\"font-weight: 400;\">‘Finding Your Element’ </span></i><span style=\"font-weight: 400;\">by Sir Ken Robinson.</span>   <span style=\"font-weight: 400;\">In terms of long term healthy intrinsic biomechanics for your clients learn how to educate them to move more freely no matter what their original goal is, that really what they are paying you for.</span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<hr />\n<h2> </h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Stop Chasing Quick Fixes - Gary V & I Agree On This','','draft','closed','closed','','stop-chasing-quick-fixes-gary-v-i-agree-on-this','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=15432',0,'post','',0),(15434,0,'2019-07-22 14:03:00','2019-07-22 14:03:00','','Stop Chasing Quick Fixes - Gary V & I Agree On This','','inherit','open','closed','','stop-chasing-quick-fixes-gary-v-i-agree-on-this-2','','','2019-07-22 14:03:00','2019-07-22 14:03:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Stop-Chasing-Quick-Fixes-Gary-V-I-Agree-On-This-1.png',0,'attachment','image/png',0),(15602,3,'2019-07-29 15:16:33','2019-07-29 15:16:33','<h3>Foot Biomechanics Made Simple: The Overpronation Fallacy </h3>\r\n<p><b><span data-contrast=\"auto\">Introduction</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">With summer around the corner, it\'s the perfect time to kick off your shoes and take a good look at your feet. Notice anything unusual? Are your toes straight, or does your big toe angle inward, mimicking the shape of your shoes? Perhaps your smaller toes curl under, or you see varied skin textures from footwear. These changes, unlike our youthful feet, occur due to the following reasons.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Complexity of Feet</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Feet endure significant stress daily - walking, running, jumping, and more. They’re encased in various \"casts\" we call shoes, which alter their natural movement and structure. Each foot comprises 26 bones, 19 muscles, and 107 ligaments, contributing to the intricate biomechanics that support our gait cycle. Despite their importance, foot biomechanics often receive minimal attention from personal trainers and coaches.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Pronation and Supination: Key Terms</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Understanding pronation and supination is crucial for appreciating foot biomechanics. Both involve tri-planar actions—combinations of three movements.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Pronation</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><img class=\"alignnone size-full wp-image-40932\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Pronation-of-the-foot-Foot-Biomechanics-104x300-1.png\" alt=\"Pronation-of-the-foot-Foot-Biomechanics-\" width=\"104\" height=\"300\" /></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Eversion:</span></b><span data-contrast=\"auto\"> Heel base turns outward.</span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Abduction:</span></b><span data-contrast=\"auto\"> Toes move away from the body.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Dorsiflexion: </span></b><span data-contrast=\"auto\">Toes move closer to the shin, reducing the ankle\'s anterior angle.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><span data-contrast=\"auto\">In the pronated state, the foot is wide, loose, and the midtarsal joint is \"unlocked.\" This phase of the gait cycle acts as a shock absorber, protecting the body from impact as the foot hits the ground.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Supination</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><img class=\"alignnone size-full wp-image-40933\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Supination-of-the-foot-Foot-Biomechanics-110x300-1.png\" alt=\"Image of supination of the foot\" width=\"110\" height=\"300\" /></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Inversion:</span></b><span data-contrast=\"auto\"> Heel base turns inward.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Adduction:</span></b><span data-contrast=\"auto\"> Toes move towards the body.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Plantarflexion:</span></b><span data-contrast=\"auto\"> Toes move away from the shin, increasing the ankle\'s anterior angle.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><span data-contrast=\"auto\">During supination, the foot is narrow, stiff, and the midtarsal joint is \"locked.\" This provides the rigidity needed for the \"toe off\" phase, propelling the body forward.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Overpronation Fallacy</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The concept of \"overpronation\" is often misunderstood. Examining the gait cycle reveals that what’s often labeled as overpronation might be a misinterpretation of late supination.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Gait Cycle</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><img class=\"alignnone size-full wp-image-40931\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/The-Gait-Cycle-Foot-Biomechanics-768x487-1.png\" alt=\"Diagram of the gait cycle\" width=\"768\" height=\"487\" /></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Heel Strike: Pronation for shock absorption.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Forefoot Landing: Continued pronation for shock absorption.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Neutral: Midpoint as the body moves over the foot.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Heel Lift: Transition to supination, big toe extends to initiate propulsion.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Toe Off: Complete supination for rigid foot propulsion.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><b><span data-contrast=\"auto\">Root Theory vs. Modern Understanding</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Root Theory significantly influenced the podiatric and orthotic professions, labelling \"loose\" feet as overpronators due to inward rolling and prolonged pronation during the heel lift phase. This was thought to cause issues as the foot should be transitioning to a rigid state.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">However, this approach often created new problems by restricting necessary pronation, increasing shock impact up the body. Modern orthotic design, influenced by Panjabi’s model, addresses this by improving the timing of supination with smaller wedges, allowing a more natural gait.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Overprescription of Orthotics</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">It\'s essential to ensure your podiatrist is updated with the latest theories. Over-prescription based on outdated theories can cause more harm than good. Always verify your podiatrist\'s credentials and training.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Conclusion</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Today, we explored the theory behind foot movement, the biomechanics involved, and their broader implications on body function. By understanding these concepts, we can better advise clients on their foot health and overall biomechanics.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Interested in learning more about foot biomechanics? <a href=\"mailto:info@biomechanicseducation.com\">Contact us</a> for more information.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Enhance Your Skills</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Would you like to reduce your clients\' injury risks and improve their results? Learn more about our Biomechanics Coach Diploma, now including a Level 4 Low Back Pain Qualification. Find out more </span><a href=\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> about becoming an even better personal trainer.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">References</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">For more information, visit Hersco\'s Education Center on Foot Biomechanics </span><a href=\"https://hersco.com/education-center/foot-biomechanics-root-theory/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\">.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<hr />\r\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\r\n<p><span data-contrast=\"auto\"><a href=\"mailto:info@biomechanicseducation.com\">Contact us</a></span> to find our more.</p>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img class=\"alignnone wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></figure>\r\n</div>','Foot Biomechanics : The Over Pronation Fallacy','','publish','closed','closed','','foot-biomechanics-made-simple-part-1-the-over-pronation-fallacy','','','2025-01-20 16:03:28','2025-01-20 16:03:28','',0,'https://www.biomechanicseducation.com/?p=15602',0,'post','',0),(15604,0,'2019-07-29 07:53:50','2019-07-29 07:53:50','','Pronation of the foot - Foot Biomechanics','','inherit','open','closed','','pronation-of-the-foot-foot-biomechanics','','','2019-07-29 07:53:50','2019-07-29 07:53:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Pronation-of-the-foot-Foot-Biomechanics-1.png',0,'attachment','image/png',0),(15605,0,'2019-07-29 07:53:56','2019-07-29 07:53:56','','Supination of the foot - Foot Biomechanics','','inherit','open','closed','','supination-of-the-foot-foot-biomechanics','','','2019-07-29 07:53:56','2019-07-29 07:53:56','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Supination-of-the-foot-Foot-Biomechanics-1.png',0,'attachment','image/png',0),(15606,0,'2019-07-29 07:53:59','2019-07-29 07:53:59','','The Gait Cycle - Foot Biomechanics','','inherit','open','closed','','the-gait-cycle-foot-biomechanics','','','2019-07-29 07:53:59','2019-07-29 07:53:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/07/The-Gait-Cycle-Foot-Biomechanics-1.png',0,'attachment','image/png',0),(15609,0,'2019-07-29 08:03:19','2019-07-29 08:03:19','','Foot Biomechanics Part 1 - The Over-Pronation Fallacy','','inherit','open','closed','','foot-biomechanics-part-1-the-over-pronation-fallacy','','','2024-09-19 14:55:04','2024-09-19 14:55:04','',15602,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Foot-Biomechanics-Part-1-The-Over-Pronation-Fallacy-1.png',0,'attachment','image/png',0),(15786,3,'2019-08-05 18:07:29','2019-08-05 18:07:29','<p>Last week we started to take a look at the feet and ankles, and if you haven\'t read that one, I suggest you start there, just click here to go back and read that one.  </p>\n<h2><b>What </b><b><i>Can</i></b><b> We Do In Terms Of Exercise?</b>  </h2>\n<p><span style=\"font-weight: 400;\">So this is the really cool part, we are the exercise experts, right? </span></p>\n<p><span style=\"font-weight: 400;\">So some non-contraindicated simple lower limb/foot exercises could be a real help AND would mean we stand out and have an increased confidence when working with clients requiring foot attention… not THAT kind….c’mon stay with me….I mean pronation and supination exercises.</span>  </p>\n<p><span style=\"font-weight: 400;\">Firstly we need to assess the foot to check if it is loose at the MTJ and/or if they struggle to supinate by applying the Jacks Test.</span>   <span style=\"font-weight: 400;\">There are 2 simple tests that can contribute to…</span>  </p>\n<ol>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Our understanding of the foot function of our clients</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Our confidence in then prescribing exercises </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Our ability to communicate more effectively and confidently with foot specialists </span></li>\n</ol>\n<p>&nbsp;</p>\n<h2><b>SubTalar Motion Test (Testing for Mobility of the STJ)</b></h2>\n<p>[embed]https://youtu.be/19cTcHQp5hQ[/embed]</p>\n<p>&nbsp;</p>\n<ol>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Have your client lie prone (face down) on a massage table, bed or bench and with their ankles free of the edge of the surface. Encourage them to relax.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Now facing their feet, place your right hand on top of the left calf to keep the leg still. </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Using your left thumb and forefinger to take hold of the ball of the 5th met (little toe).</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Push the 5th met towards the centre of the knee, into dorsi flexion, the ‘wiggle’ the foot from side to side to get a sense of its laxity. </span></li>\n</ol>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If it feels loose this foot/ankle has a propensity to pronate</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If it feels very stiff it might have a propensity to supination</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Somewhere in the middle is more or less neutral</span></li>\n</ul>\n<p>  <img class=\"aligncenter size-large wp-image-15788\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Subtalar-Motion-Test-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">This test can feel subjective until you have felt a few or been taught by someone more experienced at this particular test. </span> <span style=\"font-weight: 400;\">It is probably best to start by comparing the left to the right to see if one feels looser or stiffer, then decide which feels more so to start your analysis and make a decision.</span>  </p>\n<h3><b>If It Feels Loose… What Do You Do?</b></h3>\n<p><strong>Result = Loose</strong></p>\n<p><span style=\"font-weight: 400;\">I</span><span style=\"font-weight: 400;\">f the foot feels loose (that it has a propensity to pronate) then there is a chance it struggles with supination. So we might prescribe supination exercises.</span> <span style=\"font-weight: 400;\">Using a resistance band, place it around the inside of your client\'s right foot (for example) also the inside of their big toe, then offer resistance from their right side.</span> <span style=\"font-weight: 400;\">Now ask them to pull/turn the foot inwards, adducting it, inverting the heel and if possible adding some plantar flexion - remember that triplanar motion for pronation?</span></p>\n<p><span style=\"font-weight: 400;\">Reps and sets are just common sense and client dependant - 2 x 8 up to 3 x 15 for example. </span></p>\n<p><span style=\"font-weight: 400;\">Repeat on both feet if they are both loose of course.</span>  </p>\n<h3><b>If The Joint Is Stiff - What Can You Do?</b></h3>\n<p><strong>Result = Stiff</strong></p>\n<p><span style=\"font-weight: 400;\">However, if the foot feels stiff then we might consider prescribing pronation exercises along with mobility work.</span> <span style=\"font-weight: 400;\">This time we would take the resistance band around the outside of the right foot for example, close to the outside of the toes, then offer resistance from the left side of the client. </span> <span style=\"font-weight: 400;\">Now ask them to pull/turn the foot outwards, abducting it, everting the heel and if possible dorsi flexing to take into account the triplanar action of supination.</span> <span style=\"font-weight: 400;\">Mobility for the ankle might include what you would expect, calf stretching, joint mobilising etc.</span> <span style=\"font-weight: 400;\">Reps and sets as above.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Now let’s have a look at the second screen we can do...</span>  </p>\n<h3><b>Jack’s Test (To Understand Capacity to Re-Supinate)</b></h3>\n<p><i><span style=\"font-weight: 400;\">This is my favourite of all the tests I do because it shows very simply the nature of our body as an integrated system. Watch whats happens to the shoulders and upper body when you do it on someone who scores a 2-3.</span></i></p>\n<p>&nbsp;</p>\n<p>[embed]https://youtu.be/iW7uAzKJmgs[/embed]</p>\n<p>&nbsp;</p>\n<ol>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Have your clients stand upright and relaxed, looking straight ahead and ask them to take a couple of steps to allow their feet to land where they want to.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">While kneeling down in front of them, explain “</span><i><span style=\"font-weight: 400;\">try not to help nor resist against this movement and keep looking straight ahead, not down, arms by your sides”</span></i></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Now place open hands onto the floor in front of their right foot, place both of your thumbs underneath their big toe, with the rest of your hands, fingers spread out on the floor. </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Push the big toe upwards about 45 degrees towards the middle shin with as much effort as is required to see how ‘heavy’ this feels. Watch for if the foot arches and assess how easy of difficult it is to do this.</span></li>\n</ol>\n<p><img class=\"aligncenter wp-image-15787 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Jacks-test-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /> <span style=\"font-weight: 400;\">This movement should functionally activate the </span><b>Windlass Mechanism</b><span style=\"font-weight: 400;\">.</span> <span style=\"font-weight: 400;\">The Windlass Mechanism is when the plantar fascia that is ‘wrapped’ around the head of the Hallux (big toe) pulls the foot into that arched, supinated, rigid foot for Toe Off. (Imagine walking over the foot, the point at which your big toe extends)</span> <span style=\"font-weight: 400;\">However, when we score the effort it takes to do this we can get an impression of its influence on the gait cycle.</span>  </p>\n<p><span style=\"font-weight: 400;\">We have a scoring like this :</span>  </p>\n<p><span style=\"font-weight: 400;\">0-    Very Low Resistance</span></p>\n<p><span style=\"font-weight: 400;\">1 -</span> <span style=\"font-weight: 400;\">Low Resistance</span></p>\n<p><span style=\"font-weight: 400;\">2 - </span> <span style=\"font-weight: 400;\">Moderate Resistance</span></p>\n<p><span style=\"font-weight: 400;\">3 -</span> <span style=\"font-weight: 400;\">High Resistance</span></p>\n<p><span style=\"font-weight: 400;\">4 - </span> <span style=\"font-weight: 400;\">Very High Resistance</span></p>\n<p><span style=\"font-weight: 400;\">5 - </span> <span style=\"font-weight: 400;\">Impossible to Move</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">You are again subjectively (initially at least) measuring the amount of effort it takes to push the toe into extension. This ‘action’ is part of Toe Off during the gait cycle.</span> <span style=\"font-weight: 400;\">If the toe lifts so easily, it almost flies off the floor with virtually no effort, that is a 0-1 score. </span> <span style=\"font-weight: 400;\">If the toe is so heavy that no movement or arch happens, even when you apply a huge effort this is a 5.</span> <span style=\"font-weight: 400;\">If it is really heavy but there is a small arching this is a 4.</span> <span style=\"font-weight: 400;\">The effort should score around a 2-3. This indicates there is some rigidity but its not so easy that it becomes unstable.</span>  </p>\n<p>&nbsp;</p>\n<h3><b>Exercise Prescription After The Screen</b></h3>\n<p>&nbsp;</p>\n<h4><strong>Result = 4-5</strong></h4>\n<p><span style=\"font-weight: 400;\">If the score is heavy and 4-5 then this indicates the foot struggles with supination. So we might prescribe supination exercises.</span> <span style=\"font-weight: 400;\">Using a resistance band, place it around the inside of your clients right foot (for example) also the inside of their big toe, then offer resistance from their right side.</span> <span style=\"font-weight: 400;\">Now ask them to pull/turn the foot inwards, adducting it, inverting the heel and if possible adding some plantar flexion.</span> <span style=\"font-weight: 400;\">Same as the previous test/exercise.</span>  </p>\n<h4><strong>Result = 0-2</strong></h4>\n<p><span style=\"font-weight: 400;\">However, if the foot moves too easily into supination then we might consider prescribing pronation exercises.</span></p>\n<p><span style=\"font-weight: 400;\">This time we would take the resistance band around the outside of the right foot for example, close to the outside of the toes, then offer resistance from the left side of the client. </span></p>\n<p><span style=\"font-weight: 400;\">Now ask them to pull/turn the foot outwards, abducting it, everting the heel and if possible dorsi flexing.</span></p>\n<p><span style=\"font-weight: 400;\">Same as the previous test/exercise.</span></p>\n<p>&nbsp;</p>\n<h3><b>Summary </b></h3>\n<p><span style=\"font-weight: 400;\">Pronation and supination exercises (of which there are several by they way) as you can imagine, are not likely to be contraindicated on the kind of clients we are generally insured to work with.</span> <span style=\"font-weight: 400;\">The really cool thing here is that we can use really simply to apply tests and exercises like these that offer us additional insights for improving our clients capacity for movement. </span> <span style=\"font-weight: 400;\">We should also gain some degree of confidence to approach foot specialists and we are also in a great position to prepare the lower body system/s for pre-orthotic conditioning.</span> <span style=\"font-weight: 400;\">Try them out and please let me know how you get on….</span>    </p>\n<hr />\n<h2> </h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Foot Biomechanics Made Simple - Part 2 - How To Test & Correct Imbalances In Foot Biomechanics','','draft','closed','closed','','foot-biomechanics-made-simple-part-2-how-to-test-correct-imbalances-in-foot-biomechanics','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=15786',0,'post','',0),(15787,0,'2019-08-05 17:48:40','2019-08-05 17:48:40','','Jacks test','','inherit','open','closed','','jacks-test','','','2019-08-05 17:48:40','2019-08-05 17:48:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Jacks-test-1.jpg',0,'attachment','image/jpeg',0),(15788,0,'2019-08-05 17:48:45','2019-08-05 17:48:45','','Subtalar Motion Test','','inherit','open','closed','','subtalar-motion-test','','','2019-08-05 17:48:45','2019-08-05 17:48:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Subtalar-Motion-Test-1.jpg',0,'attachment','image/jpeg',0),(15789,0,'2019-08-05 17:56:50','2019-08-05 17:56:50','','Foot Biomechanics Part 2','','inherit','open','closed','','foot-biomechanics-part-2','','','2019-08-05 17:56:50','2019-08-05 17:56:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Foot-Biomechanics-Part-2-1.png',0,'attachment','image/png',0),(16054,3,'2019-08-14 13:04:47','2019-08-14 13:04:47','<h2><b>Is It Time To Take Your Skills Up Another Level?</b></h2>\n<p><span style=\"font-weight: 400;\">If you are a personal trainer, sports therapist etc etc and you are looking for CPD and/or to simply improve your knowledge and skill set in the world of Intrinsic biomechanics then you need to check out our 1 day workshops.</span>   <span style=\"font-weight: 400;\">If you haven’t stepped into our world yet, I recommend checking out the Intrinsic Biomechanics Workshop as that will set the grounding for the rest of it.</span>  </p>\n<h3><b>Already A Biomechanics Coach?</b></h3>\n<p><span style=\"font-weight: 400;\">If you are already a Biomechanics Coach then make sure you jump on the sport-specific ones… you are going to love them.</span> I thought I would take a moment to give you a brief intro to each of our workshops and if you would like to have a chat and hear what they are all about then <a href=\"https://www.biomechanicseducation.com/contact-us/\" target=\"_blank\" rel=\"noopener noreferrer\">click here</a>, fill in the form and we can get on a call to see if they are right for you.</p>\n<p>&nbsp;</p>\n<h2><b>Intrinsic Biomechanics Workshop </b></h2>\n<p><span style=\"font-weight: 400;\">Perfect for trainers and coaches looking to access elite skills easily that will impress both your clients and potential clients on the gym floor. </span></p>\n<p><span style=\"font-weight: 400;\">Commonly these days clients come to us with some kind of physical complaint and chances are you feel ill equipped to deal with this, right?</span></p>\n<p><span style=\"font-weight: 400;\">If you find yourself lacking confidence and really wishing you had a deeper level of understanding of the body then this is the workshop for you.</span></p>\n<p><span style=\"font-weight: 400;\">Find the root causes of their low grade discomforts with evidence based pelvic, spine and shoulder tests that can be done anywhere, without any equipment and really easily. But just watch those results when you re-test after the iMoveFreely exercises you will also learn!!</span></p>\n<p>&nbsp;</p>\n<h2><b>iMoveFreely Instructor Workshop</b></h2>\n<p><span style=\"font-weight: 400;\">If you teach group exercise THIS IS A MUST! </span></p>\n<p><span style=\"font-weight: 400;\">The foundation for all movement these movement preparation flows are fantastic as a warm up, workshop or even blended into your present class.</span></p>\n<p><span style=\"font-weight: 400;\">Teaching movement to a group of people can feel frustrating when they all move so differently and come with such a variety of problems.</span></p>\n<p><span style=\"font-weight: 400;\">This workshop will give you an increased confidence and so many more tools for your tool box. The results are stunning and your participants will LOVE absolutely them.</span></p>\n<p><i><span style=\"font-weight: 400;\">“THIS IS THE BEST COURSE I HAVE EVER DONE”</span></i><span style=\"font-weight: 400;\"> - Jayne Nicholls. </span></p>\n<p>&nbsp;</p>\n<h2><b>Golf Biomechanics Workshop</b></h2>\n<p><img class=\"aligncenter size-large wp-image-16056\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Golf-Biomechanics-Workshop-1-1024x512.png\" alt=\"\" width=\"1024\" height=\"512\" /></p>\n<h3>Are You A Golf Teaching Professional?</h3>\n<p>If you\'re a golf teaching professional, you probably know all too well the feeling of analysing someones swing, giving them tips, cues, training drills only to find that no matter what they try they simply can\'t do what your asking. So often this has nothing to do with you as a coach and everything to do with what their body will physically let them do. If they can\'t physically get into the right positions it doesn\'t matter how much you tell them or coach them into it. The body will compensate and find different ways. </p>\n<p>&nbsp;</p>\n<p>You as a coach assess the extrinisic biomechanics, you look at the swing plane, where the cub and hands are at impact and hundreds of other points. Well we are going to help you see it from the inside of the body too. You see there are all kinds of ways the body compensates and those lead to a lot of the movement patterns that create certain shot shapes. For example, a leg length discrepancy can easily lead to a slice. A lack of thoracic mobility can easily lead to tilting in the spine. The list goes on and on. And when you understand these principles, you\'ll be able to provide your clients with exercises to help improve their game. </p>\n<p>&nbsp;</p>\n<h3>Are You A Personal Trainer Or Strength &amp; Conditioning Coach Interested In Golf Or Working With Golfers?</h3>\n<p>Imagine being able to help someone dramatically improve their game without ever touching a golf club. As a coach you can help get people physically and biomechanically ready to swing the club. You can support golf coaches and make their life so much easier. </p>\n<p>If you want to get into the world of golf and working with golfers, then you need to be on this workshop!</p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Delivered by world leader of Intrinsic Biomechanics, Martin Haines - Biomechanics Coach, Chartered Physiotherapist &amp; PGA advisor he brings to you this fantastic golf specific workshop.</span> <span style=\"font-weight: 400;\">Ideal for both amateur and professional players and coaches OR even personal trainers looking to offer their services to golf clubs.</span> <span style=\"font-weight: 400;\">Learn from the best! </span>  </p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.biomechanicseducation.com/contact-us/\">Click here to enquire and find out more</a></p>\n<p>&nbsp;</p>\n<h2><b>Running Biomechanics Workshop</b></h2>\n<p><span style=\"font-weight: 400;\"><img class=\"aligncenter size-large wp-image-16057\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Running-Biomechanics-Workshop-1-1024x512.png\" alt=\"\" width=\"1024\" height=\"512\" /></span></p>\n<p><span style=\"font-weight: 400;\">Our BRAND NEW Running specific workshop - BY DEMAND! </span></p>\n<p><span style=\"font-weight: 400;\">Yes this workshop has been designed specifically for those who run, coach running or train clients who run from beginner, amateur to athlete. </span></p>\n<p><span style=\"font-weight: 400;\">The trends and fads we hear about can leave us feeling unsure about what is best for our runners, cant it? Barefoot? Forefoot strike Pose running? Mid foot strike? What’s best? How would I know?</span></p>\n<p><span style=\"font-weight: 400;\">Learn all about the different running gaits and what is best for your running client/s.</span><span style=\"font-weight: 400;\"><br /></span></p>\n<p>&nbsp;</p>\n<h2><b>Low Back Health Workshop</b></h2>\n<p><span style=\"font-weight: 400;\">This hugely educational day will deepen your knowledge and understanding of spine anatomy, MRI scan, reports, clinical conditions that can affect low back health, pain science, manual articulations and how to support a client who lives with chronic low grade low back pain. </span></p>\n<p><span style=\"font-weight: 400;\">Back problems are rife and as a trainer or coach you want to provide an informed exercise programme that will help them. However gaining a deeper level of understanding of the anatomy and also clinical conditions your client may present with can make all the difference to your business so why not join us?</span></p>\n<p><span style=\"font-weight: 400;\">A great </span><i><span style=\"font-weight: 400;\">introduction</span></i><span style=\"font-weight: 400;\"> to the industry recognised L4 Low Back Pain anatomy and theory.</span></p>\n<p>&nbsp;</p>\n<h2><b>What’s The Investment?</b></h2>\n<p><span style=\"font-weight: 400;\">If you only want to do one workshop then the investment is £188. </span></p>\n<p><strong>However, our most popular option is the <span style=\"color: #ff0000;\">3 workshops for the price of 2</span>. Which means your investment is just £376 (saving you £188)</strong></p>\n<p><span style=\"font-weight: 400;\">So if you like the sound of several of the workshops that is definitely the best option for you. </span> <span style=\"font-weight: 400;\">You could start with the Intrinsic Biomechanics Workshop and then do the Running and the Golf specific ones. It’s totally up to you.</span> <span style=\"font-weight: 400;\">To find out upcoming dates and to chat with one of the team to see if this is the right workshop for you, simply click here, fill in your details and we will be in touch shortly.</span>  </p>\n<p>&nbsp;</p>\n<h3><b>Where &amp; When Are The Biomechanics Workshops?</b></h3>\n<p><span style=\"font-weight: 400;\">We have 4 venues that the workshops are taking place at, in London, Nottingham, Scotland and Belfast.</span> <span style=\"font-weight: 400;\">We have a whole load of upcoming dates. So if you are interested, the best thing to do is enquire and let me know which workshops your interested in and then we can have a chat and I can let you know the dates.</span>  </p>\n<p>&nbsp;</p>\n<h3><b>Want To Find Out More?</b></h3>\n<p><span style=\"font-weight: 400;\">If you want to find out more, then click here, fill in your information on the form and one of the team will be in touch to have a chat, let you know the upcoming dates and locations and see if there is a workshop for you.</span>  </p>\n<p>&nbsp;</p>\n<h2 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/contact-us/\"><strong>--&gt; CLICK HERE TO ENQUIRE NOW &lt;--</strong></a></h2>\n<p>&nbsp;</p>\n<hr />\n<h2> </h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Biomechanics Education 1 Day Workshops For Personal Trainers, Sports Therapists, S&C Coaches And More...','','draft','closed','closed','','biomechanics-education-1-day-workshops-for-personal-trainers','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=16054',0,'post','',0),(16056,0,'2019-08-12 12:23:27','2019-08-12 12:23:27','','Golf Biomechanics Workshop','','inherit','open','closed','','golf-biomechanics-workshop-3','','','2019-08-12 12:23:27','2019-08-12 12:23:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Golf-Biomechanics-Workshop-1.png',0,'attachment','image/png',0),(16057,0,'2019-08-12 12:25:44','2019-08-12 12:25:44','','Running Biomechanics Workshop','','inherit','open','closed','','running-biomechanics-workshop-2','','','2024-09-05 10:25:25','2024-09-05 10:25:25','',33064,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Running-Biomechanics-Workshop-1.png',0,'attachment','image/png',0),(16225,3,'2019-08-19 10:06:48','2019-08-19 10:06:48','<p><span style=\"font-weight: 400;\">The industry is obsessed with thinking everyone has a ‘weak’ core, clients think they have a ‘weak’ core, therapists are sending their patients to Pilates class because they think they have a ‘weak’ core.</span>  </p>\n<p><span style=\"font-weight: 400;\">How did we ALL OF A SUDDEN apparently get ‘weak’ cores? </span></p>\n<p><span style=\"font-weight: 400;\">I will tell you why - it is NOT as simple as them being ‘WEAK’!</span>  </p>\n<p><span style=\"font-weight: 400;\">Let me explain….</span>   <span style=\"font-weight: 400;\">If something is weak, what are we taught to do? Strength it, right? </span></p>\n<p><span style=\"font-weight: 400;\">Okaaaaay …..</span> <span style=\"font-weight: 400;\">So how do we identify a ‘weak’ core?</span> <span style=\"font-weight: 400;\">What does ‘weak’ actually mean? </span></p>\n<p><span style=\"font-weight: 400;\">The definition of ‘weak’ is ….what?</span> <span style=\"font-weight: 400;\">What is the question…???</span>   <span style=\"font-weight: 400;\">Let us first ask...</span>  </p>\n<p>&nbsp;</p>\n<h2><b>What </b><b><i>Causes</i></b><b> A ‘Weakness’?</b></h2>\n<p><span style=\"font-weight: 400;\">Well in my experience as a Biomechanics Coach, having tested many peoples bodies, I rarely see a core that is simply ‘weak’ or that only requires core stability/strength work. In my experience, the ‘weakness’ is actually what I would classify as dysfunction. For example, there could be...</span></p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Muscle spasm</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Joint immobility</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Nerve inhibition</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Reciprocal inhibition </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Combinations of the above </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">A lack of endurance capacity</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Oh and just weak of course!</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">So looking at each of these - how many purely require strength work when identified? </span></p>\n<p><span style=\"font-weight: 400;\">Surely it makes sense to reduce the dysfunction, prescribe the appropriate intervention THEN condition with some relevant strength/stability work.</span> <span style=\"font-weight: 400;\">This could be identified as Core Progressions and, once again, from our very basic training neuromuscular progressions would make sense dont you agree….?</span>  </p>\n<p>&nbsp;</p>\n<h2><b>Neuromuscular Core Progressions </b></h2>\n<p><span style=\"font-weight: 400;\">There is a very cool and VERY simple (we LOVE simple) way of applying this logical system and what can come of it, very often, is a rapid improvement that you can prove…..</span> <span style=\"font-weight: 400;\">Using the underpinning knowledge we learn at level 2, consider neuromuscular progression.</span>  </p>\n<p>&nbsp;</p>\n<p><b>But First Let Remember…..</b> <span style=\"font-weight: 400;\">What Is A ‘Neuromuscular’ </span><i><span style=\"font-weight: 400;\">Exercise</span></i><span style=\"font-weight: 400;\">?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">The rationale for </span><b>Neuromuscular Exercises</b><span style=\"font-weight: 400;\">. </span><b>Neuromuscular</b><span style=\"font-weight: 400;\"> control is defined as the unconscious trained response of a muscle to a signal regarding dynamic joint stability. ... </span><b>Neuromuscular exercise</b><span style=\"font-weight: 400;\"> has effects on functional performance, biomechanics, and muscle activation patterns of the surrounding joint musculature.</span>  </p>\n<p>&nbsp;</p>\n<h3><b>OK So Now, What Is ‘Neuromuscular’ </b><b><i>Progression</i></b><b>?</b></h3>\n<p>  <span style=\"font-weight: 400;\">Ok, let’s just pause for a second, if we are going to start at the very beginning then I would suggest you go through the FREE Project Squat series I have which will show you how to look for and improve dysfunction in the pelvis.</span> <span style=\"font-weight: 400;\">OR attend the 1 day intrinsic biomechanics workshop we told you about last week...</span>  </p>\n<p>&nbsp;</p>\n<p>[dt_divider style=\"thick\" /]</p>\n<table style=\"height: 178px;\" width=\"1327\">\n<tbody>\n<tr>\n<td>\n<h2><b>Intrinsic Biomechanics Workshop</b></h2>\n<p><span style=\"font-weight: 400;\">Nov 2nd in Nottingham</span></p>\n<p><span style=\"font-weight: 400;\">Nov 16th in Belfast</span></p>\n<p><span style=\"font-weight: 400;\">Nov 23rd in London</span></p>\n<p><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-taster/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">Click here to find out more</a></p>\n<p><b>Just £188 --- Or FREE when you book 2 other 1 day workshops</b></p>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[dt_divider style=\"thick\" /]</p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Once the intrinsic subsystems are moving more freely THIS is the time to start a periodised progressive core training programme like this one:</span>  </p>\n<h2> </h2>\n<h2><span style=\"font-weight: 400;\">STEP ONE: </span><b>Can They Engage Their Core?</b></h2>\n<p><span style=\"font-weight: 400;\">The Test + Exercise</span>   <span style=\"font-weight: 400;\">1). Lie your client on their back, knees bent,</span><span style=\"font-weight: 400;\"> arms on the floor by their sides - this gives them a good ‘base of support’.</span>  </p>\n<p><span style=\"font-weight: 400;\">Next, place your fingertips under the natural lumbar curve so you can just feel their natural position.</span> <span style=\"font-weight: 400;\">Now ask them to ‘brace’. A good brace is when they tense their entire core as if they were going to take a punch in the stomach. </span>  </p>\n<p><span style=\"font-weight: 400;\">They pass this test if they can do this without the pressure of their back changing at all on your fingers. If they move, lift or press down onto your fingers they failed the test. This means we keep coaching until they have the capacity to ‘control their core’. If they still struggle then they are not ready and must go back to the iMoveFreely base exercises (anti spasms, nerve mobilisations &amp; pure isolated joint mobilisations).</span>  </p>\n<p><span style=\"font-weight: 400;\">You (and they) might be surprised by how difficult this is IF you\'re not prepared for it. However, one moving more freely on the inside, the progress is often very quick. </span>  </p>\n<p>&nbsp;</p>\n<h2><span style=\"font-weight: 400;\">STEP TWO: </span><b>Can They Engage Their Core Maximally?</b></h2>\n<p><span style=\"font-weight: 400;\">Each of these is a Test + an Exercise</span></p>\n<p><span style=\"font-weight: 400;\">2). Crook Lying Brace - practice various percentages of muscular effort. </span></p>\n<p><span style=\"font-weight: 400;\">E.G 40% effort, 60% effort, 80% effort maybe up to 100% effort of muscular contraction. They only progress if they can achieve each ‘level’. If they lose their lumbar position at any point this is their failure point, so keep them here while you coach them further OR go back to the iMoveFreely base exercises (anti spasms, nerve mobilisations &amp; pure isolated joint mobilisations).</span>  </p>\n<p>&nbsp;</p>\n<h2><span style=\"font-weight: 400;\">STEP THREE: </span><b>Can They Engage Their Core With Control?</b></h2>\n<p><span style=\"font-weight: 400;\">Each of these is a Test + an Exercise</span> <span style=\"font-weight: 400;\">3). If they fly through these well then they are ready to be tested on their ability to control their core/trunk. Now we ask them to continue to maintain their spine position while moving their arms and legs by varying degrees SUPER SLOWLY. These are flexor dominant.</span>  </p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Lift foot off the floor, taking 8 seconds from the initial brace, to lifting and hovering foot 1” off the floor, to replacing the foot and finally letting the brace go. Repeat other side.</span></li>\n</ul>\n<p><img class=\"aligncenter size-large wp-image-16241\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-for-personal-trainers-1-1-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" /></p>\n<p>&nbsp;</p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Brace, now lift foot 1”, then extend the leg keeping it 1” off the floor, taking 8 seconds from start to finish as before. Repeat other side.</span></li>\n</ul>\n<p><img class=\"aligncenter size-large wp-image-16245\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-progressions-for-personal-trainers-2-1-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" /></p>\n<p>&nbsp;</p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Brace, lift foot 1”, now externally rotate the knee 30 degrees. Repeat other side.</span></li>\n</ul>\n<p>    <span style=\"font-weight: 400;\">This continues as you gradually increase the neuromuscular complexity through the use of lever lengths, removing different bases of support - legs, arms etc.</span>  </p>\n<p><img class=\"aligncenter size-large wp-image-16252\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-for-personal-trainers-to-use-with-clients-3-1-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" />   <img class=\"aligncenter size-large wp-image-16251\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-all-personal-trainers-should-know-4-1-1024x727.jpg\" alt=\"\" width=\"1024\" height=\"727\" /></p>\n<p><span style=\"font-weight: 400;\">Then once they are successfully doing all of this while maintaining a stable core/trunk then you progress to prone kneeling, </span> <span style=\"font-weight: 400;\">Each of these is a Test + an Exercise</span>   <span style=\"font-weight: 400;\">4). Prone kneeling is the subsequent neuromuscular challenge and is extensor dominant. </span></p>\n<p><img class=\"aligncenter size-large wp-image-16254\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-Prone-Kneeling-1-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" /></p>\n<p>&nbsp;</p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">As before encouraging them to brace, maintaining their ‘neutral’ position, then ask them to lift one arm in front of them without losing their pelvic/spine position. Repeat on the other side.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Brace - take arm to side. Repeat other side.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Brace - lift and extend leg. Repeat other side.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Brace - take leg to side. Repeat other side.</span></li>\n</ul>\n<p>  <span style=\"font-weight: 400;\">This also continues through to lifting opposite arm and leg for example. </span></p>\n<p><img class=\"aligncenter size-large wp-image-16258\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-Prone-Kneeling-2-1-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" /></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">5). This phase takes them through similar variations while - Seated, seated on an unstable surface, standing, standing on an unstable surface.</span>  </p>\n<p><span style=\"font-weight: 400;\">Bear in mind if they cannot control their core while flat on their back, with no extra challenge and a huge base of support, imagine what their TRUE core control is like upright with weights being moved around their body!</span>        </p>\n<p>I want to once again just state that you should be working on improving any dysfunction in the pelvis, spine, shoulders, before you start working on the core. However, these guidelines we have covered today will give you a good grounding and route to follow as you help clients improve their core function.</p>\n<p>&nbsp;</p>\n<hr />\n<h2> </h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','The Weak Core Myth: Core Progressions That All Personal Trainers Should Know','','draft','closed','closed','','the-weak-core-myth-core-progressions-that-all-personal-trainers-should-know','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=16225',0,'post','',0),(16228,0,'2019-08-19 09:47:12','2019-08-19 09:47:12','','The Weak Core Myth_ Core Progressions That All Personal Trainers Should Know','','inherit','open','closed','','the-weak-core-myth_-core-progressions-that-all-personal-trainers-should-know','','','2019-08-19 09:47:12','2019-08-19 09:47:12','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/The-Weak-Core-Myth_-Core-Progressions-That-All-Personal-Trainers-Should-Know-1.png',0,'attachment','image/png',0),(16241,0,'2019-08-19 09:49:47','2019-08-19 09:49:47','','Core Progressions for personal trainers 1','','inherit','open','closed','','core-progressions-for-personal-trainers-1','','','2019-08-19 09:49:47','2019-08-19 09:49:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-for-personal-trainers-1-1.jpg',0,'attachment','image/jpeg',0),(16245,0,'2019-08-19 09:51:40','2019-08-19 09:51:40','','Core progressions for personal trainers 2','','inherit','open','closed','','core-progressions-for-personal-trainers-2','','','2019-08-19 09:51:40','2019-08-19 09:51:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-progressions-for-personal-trainers-2-1.jpg',0,'attachment','image/jpeg',0),(16251,0,'2019-08-19 09:54:20','2019-08-19 09:54:20','','Core Progressions all personal trainers should know 4','','inherit','open','closed','','core-progressions-all-personal-trainers-should-know-4','','','2019-08-19 09:54:20','2019-08-19 09:54:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-all-personal-trainers-should-know-4-1.jpg',0,'attachment','image/jpeg',0),(16252,0,'2019-08-19 09:54:33','2019-08-19 09:54:33','','Core Progressions for personal trainers to use with clients 3','','inherit','open','closed','','core-progressions-for-personal-trainers-to-use-with-clients-3','','','2019-08-19 09:54:33','2019-08-19 09:54:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-for-personal-trainers-to-use-with-clients-3-1.jpg',0,'attachment','image/jpeg',0),(16254,0,'2019-08-19 09:56:32','2019-08-19 09:56:32','','Core Progressions - Prone Kneeling','','inherit','open','closed','','core-progressions-prone-kneeling','','','2019-08-19 09:56:32','2019-08-19 09:56:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-Prone-Kneeling-1.jpg',0,'attachment','image/jpeg',0),(16258,0,'2019-08-19 09:57:48','2019-08-19 09:57:48','','Core Progressions - Prone Kneeling - 2','','inherit','open','closed','','core-progressions-prone-kneeling-2','','','2019-08-19 09:57:48','2019-08-19 09:57:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-Prone-Kneeling-2-1.jpg',0,'attachment','image/jpeg',0),(16411,3,'2019-08-26 14:54:33','2019-08-26 14:54:33','<h2>Introduction</h2>\r\nA key component of training stability and control for movement and sports is understanding the strength ratios around the trunk or core. This essential aspect of core assessment and training is often overlooked in the fitness industry. Without balanced strength ratios, clients are at a higher risk of injury.\r\n<h3>Why Are Core Strength Ratios Important?</h3>\r\nConsider this: would you train your core by doing side bridges on only one side? It wouldn\'t make sense, yet many core training programs lack balance, often focusing on flexion (e.g., plank variations) without enough extension exercises. This imbalance neglects the principle that muscles work in pairs, leading to either flexion-dominant or extension-dominant programs. To create effective core training routines, personal trainers need to measure and consider their clients\' core strength ratios.\r\n\r\nFortunately, Professor Stuart McGill from Waterloo University has conducted extensive research on this topic. His studies, initially involving 20 athletes and later expanding to 150 subjects of various demographics, found consistent core strength ratios.\r\n<h3>How to Test Core Strength Ratios</h3>\r\nTo assess a client\'s core strength ratios, follow these steps for isometric core ratio testing:\r\n<ul>\r\n 	<li>Isometric Flexion</li>\r\n 	<li>Isometric Side Bridging (both sides)</li>\r\n 	<li>Isometric Extension</li>\r\n</ul>\r\nEach test should be performed in this order, timed, and observed for technique. Clients must hold each position as long as possible without encouragement to ensure natural results.\r\n<h3>Calculating the Ratios</h3>\r\nAfter testing, calculate the core strength ratios:\r\n<ul>\r\n 	<li><strong>Draw a Grid</strong>: Note the times in seconds for each test.</li>\r\n 	<li><strong>Calculate Ratios</strong>: Divide the flexion time by the extension time to get the flexor-to-extensor strength ratio. Repeat for side bridging to assess lateral flexor strength ratios, which can indicate asymmetries.</li>\r\n</ul>\r\n<h3>Using the Data to Build Training Programs</h3>\r\nWith the ratios calculated, you can design a balanced training program:\r\n<ul>\r\n 	<li>Flexor Training: If the flexor ratio is low, incorporate isometric flexion exercises.</li>\r\n 	<li>Lateral Training: If one side\'s ratio is low, include isometric side bridging.</li>\r\n 	<li>Extension Training: If the extension ratio is low, add isometric extension exercises.</li>\r\n 	<li>Monitor progress closely and re-measure ratios regularly to prevent overcompensation.</li>\r\n</ul>\r\n<h3>Achieving Balance and Stability</h3>\r\nOnce the ratios align with the norms, shift the focus to endurance for stability and trunk control.\r\n<h3>Enhance Your Training Skills</h3>\r\nWould you like to reduce your clients\' risk of injury and help them achieve even better results? Learn more about our Biomechanics Coach Diploma, which now includes a Level 4 Low Back Pain Qualification. Click here to start your journey toward becoming an expert personal trainer.','The Core Ratios: The Personal Trainers Guide To Assessing & Programming For The Core','','publish','closed','closed','','the-core-ratios-the-personal-trainers-guide-to-assessing-programming-for-the-core','','','2025-01-20 16:03:43','2025-01-20 16:03:43','',0,'https://www.biomechanicseducation.com/?p=16411',0,'post','',2),(16412,0,'2019-08-26 08:00:20','2019-08-26 08:00:20','','Bridge - Extension Core Training','','inherit','open','closed','','bridge-extension-core-training','','','2019-08-26 08:00:20','2019-08-26 08:00:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Bridge-Extension-Core-Training-1.jpg',0,'attachment','image/jpeg',0),(16413,0,'2019-08-26 08:00:31','2019-08-26 08:00:31','','Flexor Core Training','','inherit','open','closed','','flexor-core-training','','','2019-08-26 08:00:31','2019-08-26 08:00:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Flexor-Core-Training-1.jpg',0,'attachment','image/jpeg',0),(16415,0,'2019-08-26 08:10:04','2019-08-26 08:10:04','','Core Ratios_ The Personal Trainers Guide To Assessing & Programming For The Core','','inherit','open','closed','','core-ratios_-the-personal-trainers-guide-to-assessing-programming-for-the-core','','','2024-09-05 09:41:33','2024-09-05 09:41:33','',16411,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Ratios_-The-Personal-Trainers-Guide-To-Assessing-Programming-For-The-Core-1.png',0,'attachment','image/png',0),(16420,0,'2019-08-26 08:13:37','2019-08-26 08:13:37','','Core Ratios: Side Bridge 2','','inherit','open','closed','','core-ratios-side-bridge-2','','','2019-08-26 08:13:37','2019-08-26 08:13:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Ratios-Side-Bridge-2-1.jpg',0,'attachment','image/jpeg',0),(16422,0,'2019-08-26 08:16:51','2019-08-26 08:16:51','','Isometric Flexion Test','','inherit','open','closed','','isometric-flexion-test','','','2019-08-26 08:16:51','2019-08-26 08:16:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Isometric-Flexion-Test-1.png',0,'attachment','image/png',0),(16423,0,'2019-08-26 08:18:31','2019-08-26 08:18:31','','Isometric Extension Test','','inherit','open','closed','','isometric-extension-test','','','2019-08-26 08:18:31','2019-08-26 08:18:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Isometric-Extension-Test-1.png',0,'attachment','image/png',0),(16424,0,'2019-08-26 08:18:34','2019-08-26 08:18:34','','Isometric Lateral Test','','inherit','open','closed','','isometric-lateral-test','','','2019-08-26 08:18:34','2019-08-26 08:18:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Isometric-Lateral-Test-1.png',0,'attachment','image/png',0),(16425,3,'2019-08-26 08:22:49','2019-08-26 08:22:49','','Static Isometric Scores - Core Ratios','','inherit','open','closed','','static-isometric-scores-core-ratios','','','2019-08-26 08:22:49','2019-08-26 08:22:49','',16411,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Static-Isometric-Scores-Core-Ratios.png',0,'attachment','image/png',0),(16601,3,'2019-09-02 16:10:45','2019-09-02 16:10:45','<span style=\"font-weight: 400;\">So over the last couple of weeks we have been discussing a periodisation model for core stability training</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><strong>Step 1</strong> - Challenges the common misunderstanding of what a weak core is, how to test it and also how to challenge it through neuromuscular progression.</span>\n\n<span style=\"font-weight: 400;\"><strong>Step 2</strong> - We took advantage of an evidence based method McGill has tried and tested for understanding the ideal core strength ratios of our clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This week we will explore Step 3 Functional Stability. This is now with the expectation that our clients are pretty solid in their Step 1 performance and have decent core ratios from Step 2. </span>\n\n<span style=\"font-weight: 400;\">The point here is  to understand how well our clients core can control the entire body\'s stability during more gross movement like bending over, squatting and when challenged rotationally.</span>\n\nJust remember this is still simply preparing the core/ trunk/body to have stability and control.\n\n&nbsp;\n<h2><b>The Functional Stability Tests</b></h2>\n<span style=\"font-weight: 400;\"> </span>\n<h3><strong>Test 1 - Aberrant Gross Lumbar Motion </strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">What’s the purpose of this test?</span>\n\n<span style=\"font-weight: 400;\">Well we want to see how well the client can control movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Demonstrate to the clients that you would like them to perform a roll down with their back to you. This should be done with a very relaxed posture so that the arms literally hang in both the descent and ascent. </span>\n\n<span style=\"font-weight: 400;\">Do not tell them what you are looking for just that they should relax.</span>\n\n<img class=\"aligncenter wp-image-16602\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Aberrant-Gross-Lumbar-Motion-683x1024.jpg\" alt=\"\" width=\"493\" height=\"739\" />\n\n<span style=\"font-weight: 400;\">What you are observing is how smoothly they do this. Do they rotate? Do they wobble slightly? Do they end up off to one side? </span>\n\n<span style=\"font-weight: 400;\">Basically, anything that shows they have deviated from a smooth, linear roll down. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If they deviate in anyway the test is positive and we will be giving them the exercises later in this blog.</span>\n\n&nbsp;\n<h3><strong>Test 2 - Spinal Hinge Kneeling</strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We want to see if the client\'s spine ‘hinges’ during this move.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ask your client to kneel on 4 points like the image. Ideally, you should observe from the side with their top off or lifted so you can see their spine. Then maintaining their neutral spine, ask them to slowly sit back onto their heels. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you have a light pole or broom stick handle, you could place this longways down their spine as a visual and proprioceptive tool for you to see when they hinge and as feedback for them to try to keep their spine/ pelvis still.</span>\n\n<img class=\"aligncenter size-large wp-image-16603\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Spinal-Hinge-Kneeling-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" />\n\n<span style=\"font-weight: 400;\">If they are unable to maintain neutral spine positioning the are positive and we can give them the exercise flows that follow later.</span>\n\n&nbsp;\n<h3><strong>Test 3 - Spinal Hinge Squatting</strong></h3>\n<span style=\"font-weight: 400;\">What\'s the point?</span>\n\n<span style=\"font-weight: 400;\">We want to see if the client\'s spine ‘hinges’ during this move.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ask your client to rest their hands across their chest, feet just outside hips and to sink slowly into a bodyweight squat. Ideally you should observe from the side with their top off or lifted so you can see their spine. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They should be able to reach 90 degrees at the knee without losing their neutral spine. So if you see the pelvis tilt or their spine flex or extend this can indicate a positive result. </span>\n\n<span style=\"font-weight: 400;\">Yes, they can have another go…</span>\n\n<img class=\"aligncenter size-large wp-image-16604\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Spinal-Hinge-Squatting-1024x568.png\" alt=\"\" width=\"1024\" height=\"568\" />\n\n<span style=\"font-weight: 400;\">However, if they cannot control their spine alignment the test is positive and they are ready for the following exercises. </span>\n\n&nbsp;\n<h3><strong>Test 4 - Cross Pelvic Syndrome</strong></h3>\n<span style=\"font-weight: 400;\">What\'s the point?</span>\n\n<span style=\"font-weight: 400;\">We want to see if the client has torsional control.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally and this is the most challenging so again a decent demo would be ideal for clarity of what is expected. (yup we need to be able to demo, or at least coach, a negative result or a pass).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So basically get into a push up/plank position, feet 6” apart no more and hands underneath the shoulders. Now with no rotation at all slowly place one hand onto the others one, then switch.</span>\n\n<img class=\"aligncenter size-large wp-image-16605\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Cross-Pelvic-Syndrome-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" />\n\n<span style=\"font-weight: 400;\">The key is to be able to do this with zero rotation SLOWLY both sides. If not its a positive test result and your client and maybe you should try out the following exercise progressions. </span>\n\n&nbsp;\n<h2><b>The Exercise Progressions</b><span style=\"font-weight: 400;\">  </span></h2>\n&nbsp;\n<h3><strong>Rotating Plank Variations </strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Starting with the elbows against the wall, feet apart, lift up onto the toes and start to rotate so that one arm comes off the wall. Now the purpose here is to ensure that your entire body moves as a unit without any twist. Hips, spine, shoulders should all be moving together. </span>\n\n<img class=\"aligncenter wp-image-16607\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Rotating-Plank-Variations-Wall-1024x677.png\" alt=\"\" width=\"703\" height=\"465\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can then be taken to a more advanced position like elbows on a table, bench with the same rules for technique. Then the floor…</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-16606\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Rotating-Plank-Variations-Floor-1024x618.png\" alt=\"\" width=\"1024\" height=\"618\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do not advance on until you/they have achieved a successful rolling plank at the easier height.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More progressions could include both prone and / or supine work that removes one of the bases of support like these examples…..same rules apply - no twisting otherwise that indicates you are not ready to move on…</span>\n\n<img class=\"aligncenter size-full wp-image-16608\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Fewer-Bases-of-support-Core.png\" alt=\"\" width=\"714\" height=\"410\" />\n<h3><img class=\"aligncenter size-full wp-image-16609\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Stability-Ball-Bridge-Biomechanics-Education.png\" alt=\"\" width=\"696\" height=\"484\" /></h3>\n<h3><img class=\"aligncenter wp-image-16610\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Stability-Ball-Plank-Core-Series-3.png\" alt=\"\" width=\"713\" height=\"546\" /></h3>\n<h3><b>Summary</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As trainers and coaches, performing physical assessments, benchmarking and monitoring of your clients\' progress is vital. Without these kinds of tools, how do we know what we are doing is working?</span>\n\n<span style=\"font-weight: 400;\">This all sounds obvious when we discuss it however there is a lack of education in how to really understand and assess our clients\' bodies. </span>\n\n<span style=\"font-weight: 400;\">Those tests that are out there often lack intrinsic preparation and THIS is ultimately what can lead to all of these insidious aches, niggles, recurring injuries and common problems we are hearing our clients talk about. </span>\n\n<span style=\"font-weight: 400;\">A key point to remember is - keep it simple!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Find a system, use it and watch the magic!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">GOOD LUCK!</span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Take Your Skills &amp; Your Clients\' Results To The Next Level?</h2>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\">Then click here to request more information about our Biomechanics Coach Diploma and to speak with one of our team to see if its right for you.</a></p>\n<img class=\"aligncenter wp-image-16228 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/The-Weak-Core-Myth_-Core-Progressions-That-All-Personal-Trainers-Should-Know-1-1024x512.png\" alt=\"\" width=\"1024\" height=\"512\" />\n\n&nbsp;','Does Your Client Have Functional Stability?  The Core Series Part 3','','draft','closed','closed','','does-your-client-have-functional-stability-the-core-series-part-3','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=16601',0,'post','',0),(16935,3,'2019-09-09 12:54:46','2019-09-09 12:54:46','<span data-contrast=\"auto\">Recently, I sparked a debate on Facebook regarding the impact of foot position on squats and its influence on quadricep growth. This led me to delve deeper into the subject, prompting me to share insights and continue the discussion with you. In this article, we\'ll explore how altering foot position during squats affects muscle engagement and growth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Understanding Foot Position</h3>\r\n<span data-contrast=\"auto\">The width of your foot placement during squats can significantly influence muscle engagement. Comments from the Facebook post highlighted various perspectives:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Wide stance targets glutes, while narrow stance emphasises quads.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Different foot widths engage inner and outer quads.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Altered foot position affects the feeling of the exercise, but not necessarily the anatomy.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"4\" data-aria-level=\"1\"><span data-contrast=\"auto\">There\'s a debate on whether specific foot positions can isolate and stimulate individual quad muscles for growth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<h3>Anatomy vs. Feeling</h3>\r\n<span data-contrast=\"auto\">While altering foot position may change how a squat feels, its anatomical impact is more nuanced. The quadricep muscles, including rectus femoris and vastus group, are minimally affected by foot width variations.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Research Insights</h3>\r\n<span data-contrast=\"auto\"> Several studies, including those by Greg Nuckols and Paoli et al., found no significant differences in quadricep muscle activation with varying stance widths. While foot position may affect other muscles like the gluteus maximus, its impact on quadricep isolation is inconclusive.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Considering Other Muscles</h3>\r\n<span data-contrast=\"auto\">Squatting engages a network of muscles beyond the quadriceps, including hamstrings, glutes, and adductors. While foot position may alter their engagement, its direct influence on quadricep hypertrophy remains debatable.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-7592 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/06/Project-Squat-Part-2-How-To-Test-For-And-Improve-Pelvic-Function-300x150.png\" alt=\"\" width=\"300\" height=\"150\" />\r\n<h3>Practical Applications</h3>\r\n<span data-contrast=\"auto\">Despite the lack of concrete evidence for foot position\'s direct impact on quadricep growth, incorporating varied angles and foot placements in training can enhance overall strength and performance. This approach prepares the body for diverse movement patterns, reducing the risk of injury and optimizing results.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Conclusion</h3>\r\n<span data-contrast=\"auto\">While foot position in squats may not directly isolate and stimulate individual quad muscles for growth, it plays a role in overall muscle engagement and movement mechanics. By understanding the nuances of foot placement and incorporating diverse training strategies, we can optimize client outcomes and foster ongoing learning and discussion within the fitness community.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><span data-contrast=\"auto\">References:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\r\n<a href=\"https://bmcsportsscimedrehabil.biomedcentral.com/track/pdf/10.1186/s13102-018-0103-7\"><span data-contrast=\"none\">https://bmcsportsscimedrehabil.biomedcentral.com/track/pdf/10.1186/s13102-018-0103-7</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<a href=\"https://www.strongerbyscience.com/squat-stance-width/amp/\"><span data-contrast=\"none\">https://www.strongerbyscience.com/squat-stance-width/amp/</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Finally, three studies (</span><a href=\"https://www.ncbi.nlm.nih.gov/pubmed/19130646?_ga=2.106178947.1285553477.1717682013-558813559.1717682013\"><span data-contrast=\"none\">one</span></a><span data-contrast=\"auto\">, </span><a href=\"https://www.ncbi.nlm.nih.gov/pubmed/11528346?_ga=2.106178947.1285553477.1717682013-558813559.1717682013\"><span data-contrast=\"none\">two</span></a><span data-contrast=\"auto\">, </span><a href=\"https://www.ncbi.nlm.nih.gov/pubmed/10188748?_ga=2.106178947.1285553477.1717682013-558813559.1717682013\"><span data-contrast=\"none\">three</span></a><span data-contrast=\"auto\">) have compared muscle activation (</span><a href=\"https://www.strongerbyscience.com/emg-amplitude-tell-us-muscle-hypertrophy/?_ga=2.106178947.1285553477.1717682013-558813559.1717682013\"><span data-contrast=\"none\">using EMG</span></a><span data-contrast=\"auto\">) in squats of varying stance widths.  None of them found any differences in any of the quad muscle...Greg Nuckols</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/11404665\"><span data-contrast=\"none\">https://www.ncbi.nlm.nih.gov/pubmed/11404665</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<a href=\"https://www.strongerbyscience.com/squats-adductors/\"><span data-contrast=\"none\">https://www.strongerbyscience.com/squats-adductors/</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><span data-contrast=\"auto\">Join the Conversation.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\r\n<span data-contrast=\"auto\">I invite you to continue this discussion and explore further insights in our classroom. Together, we can enhance our understanding of biomechanics and empower clients to move better and achieve their fitness goals. Learn more about our courses <a href=\"https://biomechanicseducation.com/courses/\">here</a>.</span>\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">Ready To Help Your Clients\' Move Better &amp; Get Better Results In Their Training?</h2>\r\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-10836 size-full\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png\" alt=\"\" width=\"1225\" height=\"612\" /></p>','Can Changing Your Foot Position Isolate And Grow Different Quadricep Muscles?','','publish','closed','closed','','foot-position-and-the-quadricep','','','2025-01-20 16:03:28','2025-01-20 16:03:28','',0,'https://www.biomechanicseducation.com/?p=16935',0,'post','',0),(17101,3,'2019-09-16 15:51:11','2019-09-16 15:51:11','<h2>Showing Others How Smart They Really Are IF They Let Go Of Their Inflated Or Deflated Egos</h2>\n<span style=\"font-weight: 400;\">If you follow my <a href=\"https://www.facebook.com/rachel.france06\" target=\"_blank\" rel=\"noopener noreferrer\">Rachel France FB</a> or <a href=\"https://www.instagram.com/biomechanics_education/\" target=\"_blank\" rel=\"noopener noreferrer\">Instagram</a> pages you may notice I try to stimulate conversation with questions around training methods, common ways of thinking, how to better understand human movement and ultimately how we can better help our clients. </span>\n\n&nbsp;\n\nYou\'ll also see that my posts often spark both excitement, engaged discussions and then also rudeness, anger and ignorance. Don\'t get me wrong, I LOVE being challenged, that\'s what we will discuss today. But there is a difference between a discussion and putting your side of the argument or opinion across and just being a ... rude person.\n\nAnd sometimes, you put out a post or an email and you can feel like the guy in the picture at the top, feeling battered and bruised all because you put out a piece of content with the goal of helping someone.\n\n&nbsp;\n\nUnfortunately, the way that we are wired as humans mean we always focus more on the negative sides. Do you ever find that?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I am VERY conscious of my choice of words, use of questions and I am fully aware of how they may or may not be perceived or interpreted.</span>\n\n<span style=\"font-weight: 400;\">Several things often become apparent…</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">People use throwaway comments that can be easily misunderstood both online and face to face.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">People read and believe things just because </span><i><span style=\"font-weight: 400;\">Gary down the gym  said so</span></i></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">There is often a lack of clarity about WHY things work</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Text/copy can read with differing emphasis depending upon the reader bias</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">People can feel threatened and become very defensive during debate </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Sometimes I just like to discuss thoughts on subjects that will ALWAYS be a hypothesis</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">ANYONE who posts educational content should feel a very heavy sense of responsibility for the information they put out </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Just because something happens does not always indicate WHY it happened</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I love is a really good discussion that is healthy and yet challenges research, common bias and what is taught on courses, even the really good ones.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My true passion is in education, educating and the experience of learning. Enabling autonomous learning and showing others how smart they </span><i><span style=\"font-weight: 400;\">really</span></i><span style=\"font-weight: 400;\"> are IF they let go of their inflated or deflated egos. </span>\n\n<span style=\"font-weight: 400;\">School for me was a bad experience, as it is for many and can leave us feeling or thinking, we are not very bright or capable when in fact school should be doing the exact opposite.</span>\n\n&nbsp;\n<h3><b>Why Is This?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">School, for me, was a lesson in box-ticking. There is one answer and you should know it but more often than not, I had nothing to anchor it to!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I want to try to show others is how to question things logically and systematically to work a solution out by linking it to something of relevance to them. This is what educators should do. This is also imperative if you work with another human’s body, that faces so many variables, and have to make decisions about them. What we shouldn’t be doing is </span><i><span style=\"font-weight: 400;\">winging</span></i><span style=\"font-weight: 400;\"> it or doing something because that is what your tutor said.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The single most important thing in YOUR personal training business is THE CLIENT stood in front of you. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Chances are YOU are the best person to help them even if it means a referral.</span>\n\n&nbsp;\n<h3><b>The Point Of This Blog</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">I want YOU to have the confidence to challenge people like ME.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Being an educator is such a cool job but some do it better than others and maybe that is because some see it as a job and others as a purpose.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The point I want to make is that educators don’t necessarily KNOW MORE. They simply have a skill or qualification in influencing others. We should also be creating autonomous learners, not parrots or followers</span>\n\n<span style=\"font-weight: 400;\">Being influenced by and educator holds risk </span>\n\n<span style=\"font-weight: 400;\">Because who should we trust to educate us, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me give you an example to the point I am trying to make ….. </span>\n\n&nbsp;\n<h2><b>Social Media/Internet For Information/Education</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Clearly, times have changed from when education was solely done from schools, colleges, universities and libraries. We now have the ‘luxury’ of the internet and social media! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is a fantastic way of accessing information and education from our own homes, while on a bus, training or pretty much anywhere with some wifi. For some demographics, this may be the only source of education they can access. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The problem with this is clear….very often, we have no idea of the background, nor the intent, of the individual we are learning from.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Are they even qualified?</span>\n\n<span style=\"font-weight: 400;\">What are they achieving from putting information online?</span>\n\n<span style=\"font-weight: 400;\">Do they follow guidelines?</span>\n\n<span style=\"font-weight: 400;\">Are they governed by a recognised body?</span>\n\n<span style=\"font-weight: 400;\">Do they know YOUR limitations?</span>\n\n<span style=\"font-weight: 400;\">Do you know theirs?</span>\n\n<span style=\"font-weight: 400;\">Is the information accurate?</span>\n\n<span style=\"font-weight: 400;\">How would you know? </span>\n\n<span style=\"font-weight: 400;\">What would you gain or lose from following their programme, advice, training?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Educators should always be accredited, recognised, validated by governing bodies who quality assure their content and its delivery along with the entire process to protect YOU, the learners, from potential charlatans. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now don’t get me wrong there are some educators and some subjects doing an AWESOME job online but again it’s not these guys I am talking about. It’s those </span><i><span style=\"font-weight: 400;\">keyboard warriors</span></i><span style=\"font-weight: 400;\">….</span>\n\n&nbsp;\n<h3><b>Keyboard Warriors - Who Are They?</b></h3>\n<span style=\"font-weight: 400;\">If you use social media a lot</span>\n\n<span style=\"font-weight: 400;\">If you have ever been ‘trolled’ </span>\n\n<span style=\"font-weight: 400;\">You will know what I am talking about but there was a time when I had no idea what an online ‘troll’ was. I still had the image of a book I read as a child and the troll that goes </span><i><span style=\"font-weight: 400;\">clip clip clop on the bridge</span></i><span style=\"font-weight: 400;\">….you know the one, right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway, the problem with gaining education or seeking information online is that without clarity throw away comments can be very misleading and social media is rife with it.</span>\n\n&nbsp;\n\n<b>So Beware!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do your homework and research the people you are following online, investigate their backgrounds their intent, they experience, their success - if they have any? - their purpose. Ask them for evidence of their claims or accolades and make your decision to take advice an informed one!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally, let’s flip this on its head and consider an alternative view….</span>\n\n&nbsp;\n<h2><b>For Those Too Scared To Post Because Of The Trolls </b></h2>\n<span style=\"font-weight: 400;\">I know a lot of you are growing your personal training businesses, yoga and pilates business, sports therapy businesses and more. And when you want to grow your business it means putting yourself out there. I know some people don\'t post at all, for fear of what others will think or say. </span>\n\n<span style=\"font-weight: 400;\">To those in fear of posting because a troll might slate you or your work just remember...</span>\n\nI understand that fear! Putting yourself out there can be terrifying!\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Always remember, <strong>hurt people tend to hurt others!</strong></span>\n\n<span style=\"font-weight: 400;\">It will happen, people will leave stupid comments, but hey let it go, do not bite instead rise above them, ignore or block, delete or use them to learn what not to do!</span>\n\n<span style=\"font-weight: 400;\">I am afraid it is what social media does to those who post. We will be judged when we put content out so we must accept this or not use social media!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Stay focused on those messages telling you how much you’re helping someone.</span>\n\n<span style=\"font-weight: 400;\">Ignore that 1 troll and enjoy the hundreds of messages thanks!</span>\n\n&nbsp;\n<h2><b>A Message To The Trolls/Keyboard Warriors…</b></h2>\n<span style=\"font-weight: 400;\">...if putting someone down makes you feel big and important then you have serious issues! </span>\n\n&nbsp;\n\n&nbsp;\n<h3>Let\'s Do Good In This World!</h3>\nAnyway, my hope is that you put yourself out there, spread your message and help as many people as you can!\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Take Your Skills To The Next Level? Want To Help Your Clients Move More Freely?</h2>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\" target=\"_blank\" rel=\"noopener noreferrer\">Then come and join us on one of our diplomas! Click here to find out more and speak with one of the team!</a></p>\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" />','Great Discussions vs Egos & Trolls - The 2 Sides Of Social Media','','draft','closed','closed','','great-discussions-egos-trolls-the-2-sides-of-social-media','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=17101',0,'post','',2),(17261,3,'2019-09-23 13:53:48','2019-09-23 13:53:48','<h3><span style=\"font-weight: 400;\">By Rachel France Turning 50!</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok, so I’ve been alive for half a century!!! Wowzers that’s incredible! </span>\n\n<span style=\"font-weight: 400;\">Each decade has got better so I’m super excited about hitting 60!</span>\n\n<span style=\"font-weight: 400;\">I sweat far less of the small stuff, surround myself with people I actually like, I schedule time off and I do work that I adore and affords me that freedom! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, I sense I’m one of a small percentage of people and I’m not sure why?</span>\n\n<span style=\"font-weight: 400;\">I was lucky to be born to my amazing parents who enabled me to develop into a rather happy soul. </span>\n\n<span style=\"font-weight: 400;\">Now hitting my 50th year I find myself reflecting a lot and I’ve not always felt so calm and content but I have felt mostly happy.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I started thinking about the things that make me feel such contentment and thought I’d share them in this Juicemail special. Kind of a celebration really because you know what? It’s not complicated. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Here I’d like to share my top tips for feeling great at 50...</span>\n\n&nbsp;\n<h2><b>#1 - Make A SMART Plan </b></h2>\n<span style=\"font-weight: 400;\">What’s the end goal? </span>\n\n<span style=\"font-weight: 400;\">Retire in Marbella? </span>\n\n<span style=\"font-weight: 400;\">Run a B&amp;B in Lochness?</span>\n\n<span style=\"font-weight: 400;\">Build mud huts in a 3rd world country?</span>\n\n<span style=\"font-weight: 400;\">Be specific so that you can actually measure it. It MUST be achievable and realistic otherwise what\'s the point? Then stick a timeline on it!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider the above long term goal to enable you to plan backwards, like a marathon runner does with their training. Once you know the end goal, you can design a schedule that runs from the end goal, back a chunk at a time. This gives you something to measure at each stage of your life plan so you can check, adjust if necessary and monitor how you\'re doing with reference points. </span>\n\n<span style=\"font-weight: 400;\">By the way …. it’s ok to change your mind!</span>\n\n&nbsp;\n<h2><b>#2 - Nourish Your Movement - Prepare Your Body</b></h2>\n<span style=\"font-weight: 400;\">Nourishing movement is all about treating the body you live in with respect and love.</span>\n\n<span style=\"font-weight: 400;\">You cannot buy a new one, wear and tear will happen but…..</span>\n\n<span style=\"font-weight: 400;\">….using your body in a variety of ways consistently maintains healthy joints, tissues and bones. The beautiful knock-on effect is a healthy mind!</span>\n\n<span style=\"font-weight: 400;\">Exercise Is Movement Medicine</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The things we put inside our bodies to fuel us make a huge difference, if not always immediately, certainly over time.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You will look and feel a representation of the way you fuel your body. </span>\n\n<span style=\"font-weight: 400;\">It is NOT complex!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Balanced and considered with consistent moderation.</span>\n\n&nbsp;\n<h2><b>#3 - Sleep Plan - No Excuses!</b></h2>\n<span style=\"font-weight: 400;\">An extremely underrated medicinal tool and another very simple one!</span>\n\n<span style=\"font-weight: 400;\">Get 8 hours each night </span><span style=\"font-weight: 400;\">minimum</span><span style=\"font-weight: 400;\"> (as the research states ‘</span><i><span style=\"font-weight: 400;\">Why We sleep’ </span></i><span style=\"font-weight: 400;\">Matthew Walker) by following a routine of bedtime, room temperature and waking when you wake NOT to an alarm. </span>\n\n<span style=\"font-weight: 400;\">See the difference when you do!   </span>\n\n<span style=\"font-weight: 400;\">Sleep Is Mental Medicine</span>\n\n&nbsp;\n<h2><b>#4 - Prioritise Time Out - The 3 x R’s</b></h2>\n<span style=\"font-weight: 400;\">With consistent rest, relaxation and recuperation planned into your schedule your body will thank you! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rest - Sitting for a moment </span>\n\n<span style=\"font-weight: 400;\">Relax - being sociable or spending time talking to family/friends</span>\n\n<span style=\"font-weight: 400;\">Recuperation - sleep &amp; holidays </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All are required!</span>\n\n&nbsp;\n<h2><b>#5 - Do Something You Never Dared </b></h2>\n<span style=\"font-weight: 400;\">Life is too short to NOT do something you have always wanted but never dared. </span>\n\n<span style=\"font-weight: 400;\">Do not put it off! </span>\n\n<span style=\"font-weight: 400;\">Let your hair down and swim naked or jump on that trampoline!</span>\n\n&nbsp;\n<h2><b>#6 - Commit A Random Act Of Kindness Each Week </b></h2>\n<span style=\"font-weight: 400;\">This is vital for your contribution to world peace and showing compassion. Even more joyous and fun if the receiver doesn\'t realise it was you or even that you made their life easier in some way.</span>\n\n<span style=\"font-weight: 400;\">This morning I took my neighbours bag of glass bottles to the bottle bank…...ssssssssh don’t tell them it was me!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Volunteer Your Time Once A Month.</span> <span style=\"font-weight: 400;\">Give a little, it means a lot!</span>\n\n&nbsp;\n<h2><b>#7 - Learn A New Skill Each Quarter </b></h2>\n<span style=\"font-weight: 400;\">Enhance your skills, knowledge or contribution to society. </span>\n\n<span style=\"font-weight: 400;\">Stimulate you brain it certainly will prove worthwhile one day!</span>\n\n&nbsp;\n<h2><b>#8 - Live In The Moment  </b></h2>\n<span style=\"font-weight: 400;\">You cannot change the past, you have no idea of the future but OH BOY you can enjoy this moment!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Never forget to savour the sunshine, a blue sky, a beautiful flower or giggling children.</span>\n\n&nbsp;\n<h2><b>#9 - Tell Them You Love Them </b></h2>\n<span style=\"font-weight: 400;\">Always</span><span style=\"font-weight: 400;\"> tell your loved ones how you feel ...you just never know! </span>\n\n&nbsp;\n<h2><b>#10 - Don’t Give A Damn...</b></h2>\n<span style=\"font-weight: 400;\">What others think </span>\n\n<span style=\"font-weight: 400;\">Wear those hot pants</span>\n\n<span style=\"font-weight: 400;\">Make snow angels</span>\n\n<span style=\"font-weight: 400;\">Jump on a trampoline</span>\n\n<span style=\"font-weight: 400;\">Lie on grass, watching clouds</span>\n\n<span style=\"font-weight: 400;\">Sing at the top of your voice</span>\n\n<span style=\"font-weight: 400;\">Dance like everyone\'s watching!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By the way I also want to tell you a small secret …...you don’t actually need to be turning 50 to try these out!</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h2 style=\"text-align: center;\">Discover What The Biomechanics Coaching System Could Do For Your Business &amp; For Your Clients</h2>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Click here, fill in your details and let\'s have a chat about the Biomechanics Coach diploma</a></p>\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-10836\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" alt=\"\" width=\"1024\" height=\"512\" />','10 Ways To Feel Great At Any Age - Lessons Learned From 50 Years On This Planet','','draft','closed','closed','','10-ways-to-feel-great-at-any-age-lessons-learned-from-50-years-on-this-planet','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=17261',0,'post','',5),(17377,3,'2019-09-30 17:13:30','2019-09-30 17:13:30','<span style=\"font-weight: 400;\">Occasionally an individual comes along who totally blows your mind, I mean literally shakes your whole world. Elliott is someone who made me question a lot about myself. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I grew up with parents who taught me and my siblings that we are all </span><i><span style=\"font-weight: 400;\">human</span></i><span style=\"font-weight: 400;\"> no matter what our skin colour or what clothes we wear and we should respect that in the way we treat others by treating them the way we would like to be treated. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">At the same time, there was only 1 black kid at my school and his name was Richard. Not everyone at my school had been brought up to not judge others. Richard also had a bad facial disfigurement from a car accident. Anyway, this kid got really badly bullied and picked on. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He was defensive as you can imagine and I found myself being protective of him in the playground. He was a couple of years younger and so I would ‘look out’ for him at breaks to warn off any of the bullies because I felt I should.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It was around this time my mum had the title of ‘special needs teacher’ due to the kids she worked with, teaching them geography and crafts. </span>\n\n<span style=\"font-weight: 400;\">My favourite days of the year were when the boiler broke at my own school and she got the call that it would be closed for the day because of this! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YAY!! </span><i><span style=\"font-weight: 400;\">Can I come to school with you mum?</span></i>\n\n<span style=\"font-weight: 400;\">I would say</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I would go along to her </span><i><span style=\"font-weight: 400;\">special needs</span></i><span style=\"font-weight: 400;\"> class and meet all the kids in wheelchairs, callipers, some had mental conditions and many often had a combination.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Helping these people made me feel good. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now this was all at least 33 years ago and I classed myself as being a non racist /non prejudiced character because of all I had done. Yet when I watched, transfixed by Jane Elliott, as she demonstrated the blue eyed brown eyed experiment, it really caught me off guard!</span>\n\n<span style=\"font-weight: 400;\"> </span>\n<h3><b>Was I In Fact Being Prejudiced?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me re-write my previous statement above with a different emphasis.</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Helping these people made ME feel good. </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Was I still being prejudiced by treating Richard as ‘special’ or different because I felt sorry for him? </span>\n\n<span style=\"font-weight: 400;\">Why did I do that? because it made me feel good? is there a difference?</span>\n\n<span style=\"font-weight: 400;\">Am I ignorant? </span>\n\n<span style=\"font-weight: 400;\">Am I compounding issues?</span>\n\n<span style=\"font-weight: 400;\">Elliott made me question my behaviour towards others </span>\n\n<span style=\"font-weight: 400;\">How am I received? </span>\n\n<span style=\"font-weight: 400;\">Perceived? </span>\n\n<span style=\"font-weight: 400;\">What were/are my intentions?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now while I would never intentionally demonstrate prejudice, Elliott proves that prejudice still exists in her blue eyes, brown eyes experiments. Elliott challenges that fact we still hear prejudice jokes, often spoken by that minority &amp; do she asks </span><i><span style=\"font-weight: 400;\">does this make it still ok?</span></i>\n\n<span style=\"font-weight: 400;\">Why does it seem ok to use Ginger as a derogatory term? </span>\n\n<span style=\"font-weight: 400;\">Is that still derogatory if said by someone with ginger hair?</span>\n\n<span style=\"font-weight: 400;\">Should we be standing up to ANY torment of differentiating individuals for their appearance? Even if it is ‘just a joke?’</span>\n\n<span style=\"font-weight: 400;\">How is dressing it up in a joke making it ok?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As Elliott puts it, accept we are different because in fact we are by our skin colour BUT we are ALL of the human race.</span>\n\n&nbsp;\n<h2><b>What Does This Mean In The Fitness Industry?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is undeniable that the health &amp; fitness industry is one of the MOST judgemental.</span>\n\n<span style=\"font-weight: 400;\">We have fat shaming, skinny shaming, males vs female and adductor machines are of course only for girls, right!? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Or wrong??</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ever heard terms like….</span>\n\n&nbsp;\n\n<strong>“<i>Girly press-ups” </i></strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do we make assumptions on what people should be able to do based on how they look?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Muscles = Strength?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Girls with muscles look manly</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What about based on what people wear?</span>\n\n<span style=\"font-weight: 400;\">Nike sports gear vs Puma </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Assessments are a natural part of what we do when we meet potential clients. We analyse them without even thinking. We suss them out by how they speak, move &amp; dress but how much assumption is appropriate &amp; how much needs to be more accurate?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THINK long and hard about how you judge others, how you speak, the jokes you make or laugh at, the marketing copy you post, the things you put in your videos, your entire social media content because the ignorance we have could be as dramatic to our behaviour and as damaging to another’s feelings as outright nastiness.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember we are in the service &amp; influence industry so we must feel responsible for ANY message we are putting out. We are in powerful positions with our tens of thousands of insta followers. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Just remember... </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Insite can be wonderful, &amp; sometimes uncomfortable, as I learnt from Jane Elliott </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are the links to her site and a video that is well worth your time to watch.</span>\n\n<a href=\"https://janeelliott.com\" target=\"_blank\" rel=\"noopener noreferrer\">Jane Elliot Website</a>\n\n&nbsp;\n\nWatch This:\n\nhttps://youtu.be/1mcCLm_LwpE\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h1 style=\"text-align: center;\"><strong>Discover What The Biomechanics Coaching System Could Do For Your Business &amp; Your Clients</strong></h1>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Click here, fill in your details and let\'s abve a chat about the Biomechanics Coach Diploma</a></h3>\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter size-large wp-image-10836\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" alt=\"\" width=\"1024\" height=\"512\" /></a>','Prejudice In The Fitness Industry - Lessons From Jane Elliott','','draft','closed','closed','','prejudice-in-the-fitness-industry-lessons-from-jane-elliott','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=17377',0,'post','',0),(17661,3,'2019-10-07 13:41:11','2019-10-07 13:41:11','<span data-contrast=\"auto\">Absolutely. As a personal trainer, sports therapist, biomechanics coach, or anyone working with people in one-on-one or group settings, communication skills can set you apart from the competition. You might have extensive knowledge of strength programming, but without effective communication, your expertise won\'t translate into client success.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Consider this: </span></b><span data-contrast=\"auto\">how often do you see highly educated personal trainers struggling to get clients, while someone with minimal qualifications but excellent communication skills is fully booked? This difference often comes down to communication and emotional intelligence.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>What Are Communication Skills? And Can We Improve Them?</h3>\r\n<span data-contrast=\"auto\">Communication skills involve the ways we interact with others, which can be visual, auditory, verbal, or kinesthetic, often combining these elements. Humans are incredibly sensitive to emotions conveyed through facial expressions, voice tones, and body language. This sensitivity allows us to communicate a lot through subtle cues.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Even those who are blind can sense emotions through voice tone, understanding mood or feelings. Physical touch also plays a significant role, with evidence showing its power in manual therapy, hugging, or even a simple pat on the back to convey emotion.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>How Can Communication Skills Be Utilised?</h3>\r\n<h4><b><span data-contrast=\"auto\">Physical Communication Skills</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h4>\r\n<span data-contrast=\"auto\">In the fitness industry, communication skills are invaluable. A famous sales technique involves lightly touching a customer’s elbow at the point of sale while maintaining eye contact. This establishes a connection, an essential part of providing service, ideas, and motivation as a trainer or coach. If clients don’t enjoy your company, your business is likely to fail.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">For manual therapists, touch is a crucial part of the job, and when done with permission, it can enhance the client-trainer connection. Physical assessments offer a professional excuse to connect through touch, adding depth to functional tests beyond mere measurements.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4><b><span data-contrast=\"auto\">Are They Always A Good Thing?</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h4>\r\n<span data-contrast=\"auto\">While effective communication can significantly benefit your practice, it can also backfire if misinterpreted. We are highly sensitive to emotional cues, and a misunderstood gesture or expression can lead to negative consequences. Maintaining professionalism and always asking permission helps ensure positive interactions.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>How Can Improving Communication Skills Help Us in Life, Business, and Relationships?</h3>\r\n<span data-contrast=\"auto\">Improving communication skills can enhance relationships in all areas of life. Practice and hone these skills to improve interactions, whether in business or personal relationships.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4>Powerful Communication Through the Written Word</h4>\r\n<span data-contrast=\"auto\">When crafting marketing materials, blog posts, or social media content, imagine you are your customer. Consider their state of mind, knowledge level, and frustrations. By understanding their perspective, you can write more effectively, addressing their concerns and questions as if you were speaking directly to them.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4>Examples of Poor &amp; Good Communication</h4>\r\n<b><span data-contrast=\"auto\">Verbal</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Client 1:</strong> \"What exercise can I do to lose weight?\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>PT:</strong> \"Any\" or \"Shall I book you in?\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Client 2:</strong> \"How do I get toned?\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>PT:</strong> \"Eat well and exercise\" or \"Just lift weights.\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">While technically correct, these responses don\'t educate or connect with the client. </span><b><span data-contrast=\"auto\">Instead, try:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Client 2 Alternative:</strong> \"What have you tried so far?\" or \"Are you new to exercise?\" or \"What’s your long-term goal?\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Engage clients with questions that show interest and provide tailored advice, enhancing their experience and trust in your expertise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4>Staying Positive</h4>\r\n<span data-contrast=\"auto\">Focus on positive goals rather than negative ones. Clients often aim to reduce pain or achieve specific physical changes. Empathize with their struggles and guide them towards realistic, positive outcomes.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4>Empathy</h4>\r\n<span data-contrast=\"auto\">Sharing personal experiences can build empathy and trust with potential clients. Being honest about your journey, including challenges and successes, can make you relatable. Mindfulness practices can enhance this skill, helping you communicate more effectively in person or through written content.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4>Listening Skills</h4>\r\n<span data-contrast=\"auto\">Listening is arguably the most critical communication skill and often underutilized. Asking the right questions and actively listening to responses can reveal valuable insights into how to best assist your clients. Demonstrate active listening by maintaining eye contact, nodding, and paraphrasing what the client says.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4>Other – Legal</h4>\r\n<span data-contrast=\"auto\">Effective communication extends beyond verbal interactions. Clear, detailed documentation, such as client notes, screening forms, and reports, is crucial for legal purposes and demonstrates your duty of care. This practice also supports your professional credibility and insurance validation.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Communication Skills Training Plan</h3>\r\n<span data-contrast=\"auto\">Communication is a trainable skill that can improve with practice. Here’s a plan to enhance your communication skills:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Step 1: Pick One Aspect to Focus On – E.g., Listening</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Concentrate on one area at a time to avoid feeling overwhelmed.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Step 2: Select 1-3 Techniques to Practice</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Wait for people to finish their sentences before responding.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Recap what you heard them say in their words.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Ask questions to delve deeper into their responses.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Practice these techniques consistently, reflecting on your progress daily. As these habits become second nature, move on to the next skill.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Conclusion</h3>\r\n<span data-contrast=\"auto\">Never underestimate the power of communication skills. They can significantly improve your success in the fitness industry and beyond. The most successful trainers may not have the highest qualifications but excel in making clients feel valued and understood.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Discover What the Biomechanics Coaching System Could Do for Your Business &amp; Your Clients. Click </span><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/?_ga=2.4785264.2129125191.1717683341-768987886.1717683341#row-8880-2\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> to fill in your details and let\'s discuss if our diploma is right for you.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2 style=\"text-align: center;\"><strong>Discover What The Biomechanics Coaching System Could Do For Your Business &amp; Your Clients</strong></h2>\r\n<h3 style=\"text-align: center;\">Contact us: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a></h3>\r\n<img class=\"aligncenter wp-image-7922 size-full\" src=\"https://biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1440\" />','Are communication skills, something we can improve?','','publish','closed','closed','','guide-to-communication-skills-for-the-fitness-industry','','','2025-01-20 16:02:36','2025-01-20 16:02:36','',0,'https://www.biomechanicseducation.com/?p=17661',0,'post','',0),(17662,0,'2019-10-07 13:26:08','2019-10-07 13:26:08','','Communication Skills For Personal Trainers','','inherit','open','closed','','communication-skills-for-personal-trainers','','','2019-10-07 13:26:08','2019-10-07 13:26:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/10/Communication-Skills-For-Personal-Trainers-1.png',0,'attachment','image/png',0),(17664,0,'2019-10-07 13:39:14','2019-10-07 13:39:14','','Communication Skills For Personal Trainers - Biomechanics Coach','','inherit','open','closed','','communication-skills-for-personal-trainers-biomechanics-coach','','','2024-09-20 15:25:59','2024-09-20 15:25:59','',17661,'https://biomechanicseducation.com/wp-content/uploads/2019/10/Communication-Skills-For-Personal-Trainers-Biomechanics-Coach-1.jpg',0,'attachment','image/jpeg',0),(17815,3,'2019-10-15 19:39:19','2019-10-15 19:39:19','<h1><b>The Cossack Squat</b></h1>\n&nbsp;\n\nThe purpose of this blog is to analyse this movement (that was new to me only a couple of years ago!) so we can better understand any benefits or challenges of moving in this way.....\n\n&nbsp;\n\nhttps://youtu.be/4YZqwufM5Jk\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So my confidence in performing this movement dissipated the very first tried it because</span><span style=\"font-weight: 400;\"> it didn’t come naturally first time </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because I had never DONE it before! There was no proprioception set up, no memory of that movement or positioning &amp; certainly not in that combination. Also I am anteverted at the hip joint. This means my genetic structure where the head of the femur sits in the acetabulum is more internally rotated that most hip joints. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I tried a couple of sets, 1 really slowly to feeeel the movement, get the pattern in place &amp; to give my brain something to use. My final set being faster &amp; far more fluid &amp; efficient. </span>\n\n&nbsp;\n<h2><b>Why Do The Cossack Squat Movement?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s start by analysing the movement/s first, look at joint actions &amp; this way we can technically understand the benefits for our client’s in more detail.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The movement is an asymmetrical lower body action....</span>\n\n<span style=\"font-weight: 400;\">The first basic actions in the descent are …</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Hip Flexion </span></li>\n 	<li><span style=\"font-weight: 400;\">Knee Flexion </span></li>\n 	<li><span style=\"font-weight: 400;\">Ankle Dorsi Flexion </span></li>\n</ul>\n<span style=\"font-weight: 400;\">So the prime movers must be... </span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Hip Extensors - Eccentric</span></li>\n 	<li><span style=\"font-weight: 400;\">Knee Extensors - Eccentric</span></li>\n 	<li><span style=\"font-weight: 400;\">Ankle Dorsi Flexors - Eccentric</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">During the ascent, the prime movers must therefore be...</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Hip Extensors - Concentric </span></li>\n 	<li><span style=\"font-weight: 400;\">Knee Extensors - Concentric</span></li>\n 	<li><span style=\"font-weight: 400;\">Ankle Dorsi Flexors - Concentric</span></li>\n</ul>\n<span style=\"font-weight: 400;\">The benefits here are clear for those wanting to strengthen, develop &amp; condition these particular muscle groups it’s a great move! </span>\n\n&nbsp;\n<h2><b>What Else Is The Cossack Move Good For?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In this particular version being demonstrated see how wide the femur is in relation to the pelvis. This can help with mobility OR in fact hinder if hip mobility is inhibited in some way, as with my example above - femoral ante version.</span>\n\n<span style=\"font-weight: 400;\">Also, the depth being shown can have a similar effect at the ankle for those wanting more joint range here but could also create a problem when trying it out if the Subtalar Joint is stiff of limited by Plantar flexors lacking range. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Clearly there is a very wide stance which certainly gives a wider base however the side shift creates an asymmetrical load through the system. This is still while balancing in 2 small points of contact (the feet) so any instability can transfer up from the feet while also down from the upper body. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The KB adds a ‘counter balance’ as the body weight shifts back at the hips, the KB is forwards as a counter to it. </span>\n\n&nbsp;\n<h2><strong>Variations Of The Cossack</strong></h2>\n<span style=\"font-weight: 400;\">Speed made a big difference for me during this move. </span>\n\n<span style=\"font-weight: 400;\">Take another look at my hip, knee &amp; ankle joints during the slow version than the faster version. </span>\n\n<span style=\"font-weight: 400;\">What can you see happening….? </span>\n\n&nbsp;\n\nhttps://youtu.be/4YZqwufM5Jk\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In summary, I would suggest this is an advanced movement &amp; likely particularly difficult for those lacking hip or ankle mobility. </span>\n\n<span style=\"font-weight: 400;\">It’s an alternative to regular sagittal plane lunging &amp; squatting for leg strength development.</span>\n\n<span style=\"font-weight: 400;\">While it might appear to be a frontal plane action, the joint actions are clearly still relatively sagittal event though we have widened the base through the frontal plane. </span>\n\n<span style=\"font-weight: 400;\">It will limit the kilos a lifter might add though due to the challenge of balance, the asymmetry, with weight being loaded through one leg at a time &amp; held in the hands.</span>\n\n<span style=\"font-weight: 400;\">Weight free it might be a cool addition to a mobility drill!</span>\n\n&nbsp;\n\nChallenge Yourself...\n\n<span style=\"font-weight: 400;\">Send us a video or tag Biomechanics Education in a video on Facebook or Instagram.</span>\n\n&nbsp;\n<h3>Future Movements We Can Break Down</h3>\n<span style=\"font-weight: 400;\">Are there any moves or exercises you would like us to analyse in a future blog? </span>\n\n<span style=\"font-weight: 400;\">If so leave a comment below or send me a message/email....info@biomechanicseducation.com</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">If You\'re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-17662 size-full\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/10/Communication-Skills-For-Personal-Trainers-1.png\" alt=\"\" width=\"1225\" height=\"612\" /></a>','The Cossack Movement Analysis Made Simple - Why You Should/Could/Would A Client Do It?','','draft','closed','closed','','the-cossack-movement-analysis-made-simple','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=17815',0,'post','',0),(17850,0,'2019-10-15 14:33:07','2019-10-15 14:33:07','','The Cossack - Should it be in your or your clients training plans','','inherit','open','closed','','the-cossack-should-it-be-in-your-or-your-clients-training-plans','','','2019-10-15 14:33:07','2019-10-15 14:33:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/10/The-Cossack-Should-it-be-in-your-or-your-clients-training-plans-1.png',0,'attachment','image/png',0),(17917,0,'2019-10-18 17:15:12','2019-10-18 17:15:12','','products-icon','','inherit','open','closed','','products-icon','','','2019-10-18 17:15:12','2019-10-18 17:15:12','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/10/products-icon-1.png',0,'attachment','image/png',0),(17991,3,'2019-10-21 10:47:13','2019-10-21 10:47:13','<span style=\"font-weight: 400;\">Whether it’s getting that “Insta Butt” (yes that’s a thing), building strength and power for rugby, or just simply building up an awesome amount of total body strength, the deadlift is a vital component of any programme.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have certainly discussed the Squat for some time now here at Biomechanics Education Academy and across all our social media platforms we have given you tips, maybe some new ideas and information on how to work out the best way to squat for you. We even delivered you guys a free squat seminar at HQ!</span>\n\n&nbsp;\n\n<span style=\"color: #ff0000;\"><i><span style=\"font-weight: 400;\">By the way, we are running another FREE SQUAT SEMINAR Nov 2nd 3-5pm in Nottingham - just send me an email to <a href=\"mailto:rachel@biomechanicseducation.com\" target=\"_blank\" rel=\"noopener noreferrer\">rachel@biomechanicseducation.com</a> with your name, email, contact number, profession &amp; reason for coming.</span></i></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Due to the results people are reporting in their squatting movement we are now getting inundated with new questions and one of those questions is...</span>\n\n&nbsp;\n<h2><b>What Is The Best Way To Deadlift?</b></h2>\n<span style=\"font-weight: 400;\">So to begin with, as we did with the squat, we will analyse this movement, try to understand its benefits, consider the contraindications and then explore the </span><span style=\"font-weight: 400;\">best questions </span><span style=\"font-weight: 400;\">to understand if the exercise is right for us or not. And if the deadlift is deemed to fit into your programming, which variation and why?</span>\n\n&nbsp;\n<h2><b>What Is The Deadlift?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The term dead-lift came about from the fact that it is a ‘lift’ of a ‘dead’ weight from the floor. In other words, unlike the squat there is no rebound effects from the descent to initiate the ascent because the move starts from the floor as a dead weight.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It also requires the lifter to be in a certain amount of hip flexion (style dependent) that requires a). good hip mobility b). a rigid controlled trunk to stabilise the spine &amp; shoulders during the lift</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So yet again, like the squat, it is a fundamental movement in life to move things from the floor. Imagine moving a chair from one area to another, you might hold the seat with both hands either side and lift it from a dead-weight to move it across the room. A chair, however, requires less range and likely holds considerably less kilos than the kind of deadlifts we see a powerlifter doing in a gym/competition and with a barbell for example!</span>\n\n&nbsp;\n<h2><b>Why Do Deadlifts As An Exercise?</b></h2>\n<span style=\"font-weight: 400;\">The deadlift requires predominantly, hip extension to initiate the lift from the floor. So we hinge forwards into a flexed hip position, take hold of the bar and stiffen the spine into a position that allows us to lift the deadweight. This is often one of the heaviest lifts we are physically able to perform since the hip extensors are, or should be, one of our most powerful muscle groups, predominantly the gluteus maximus that runs across the back of the hip. With a little help from the hamstring group that runs from the bottom of the hip (ischial tuberosity), to the back of the knee (tibia).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now, these muscles are used for all sorts of movements other than simply lifting a load off the floor, they contribute to propelling us forwards, the hamstrings flex the knee and also cushion us along with the buttocks (gluteus maximus) when we sit.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This mention of sitting is likely one of the contributing factors to why we may need to work these muscles more than we may have done in the past. We spend a lot of time sitting bent over our computers or watching TV sitting on them thus making them more and more redundant. This also means that when we want to use them they appear ‘lazy’ and under worked….because…..well they are!</span>\n\n&nbsp;\n<h3><b>Insta Butts!</b></h3>\n<span style=\"font-weight: 400;\">The posterior hip muscles have also become quite an aphrodisiac these days (apparently) thanks to Instagram and maybe Kim Kardashian. However many are resorting to surgery to achieve the fashionably large buttocks when simply lifting weights and eating well consistently can do this naturally.</span>\n\n&nbsp;\n<h2><b>The Deadlift Variations </b></h2>\n<span style=\"font-weight: 400;\">Now similar to the squat again there are going to be deadlift variations that suit certain genetics better due to joint angle variations etc. So when considering which one to use injury history, genetics and the goal are obviously to contribute to the one/s you choose for your client...</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Standard Deadlift</span></h3>\n<span style=\"font-weight: 400;\">Possibly the most commonly used because you simply have a midfoot stance, bend the knees, stiffen the spine &amp; lift, like a kind of bent over squat. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A lower risk by comparison to following examples in terms of joint ranges &amp; force of load (kilo dependant of course). </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The quads help out with the bend at the knee on this one similar to when we squat. The difference is the extra load on the spine extensors due to a greater forward flexion of the hip. More range, more risk but more benefit!</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Romanian Deadlift</span></h3>\n<span style=\"font-weight: 400;\">Also known as RDL this variation is generally performed with less knee flexion thus requiring more range at the hip. This will of course therefore give more work across that joint &amp; less across the knee into the quads. </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Rack Pulls</span></h3>\n<span style=\"font-weight: 400;\">This is in this blog since the joint actions and areas worked are fundamentally the same as in a deadlift. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However here we simply pull from the rack and replace for each each rep - Less working range means less risk so someone learning this movement </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Those concerned about lifting from the floor might consider this as an alternative to the deadlift.</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Stiff Leg Deadlift</span></h3>\n<span style=\"font-weight: 400;\">My favourite! This movement, exactly as it suggests, requires the lifter to keep a straight &amp; stiff leg / knee - It results in a much bigger ROM on hamstrings due to a bigger knee angle. </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Sumo Deadlift</span></h3>\n<span style=\"font-weight: 400;\">My least fav possibly due to my pelvic geometry. Performed with very wide foot stance like a sumo wrestler would stand with a wide foot position to avoid being toppled over by their opponent. This style of lifting a weight is often seen in powerlifting since this wide foot/knee position means the lifter is closer to the floor, thus leaving less range required to pull the weight from the floor. It also has less forward flexion at the hip thus loading the lower spine with slightly less range. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So the use of variations likely came about due to the risk factors a true deadlift can impose and to make the competition of lifting as much weight as possible from the floor easier. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Each can have varying degrees of range at an individual\'s joints - hip, knee and ankle as described above.</span>\n\n&nbsp;\n\n<b>Summary </b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So while it is an exercise that is often generalized we can see here how the variations can differ quite a bit. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You need to look at your client, assess their goals and their needs, look at what movements they need to create in their sport, als consider any joint limitations and then make a decision on which style of deadlifts most suit their programme and intrinsic biomechanics.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then, as we did with the squat, we can look out how using the Biomechanics Coach system we can see improvements in the deadlift by helping them move better. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For a much more extensive educational read please please read this by Greg Nuckols who is FANTASTIC at giving much more detail and evidence around the details of the deadlift for those wanting more ...</span>\n\n<a href=\"https://www.strongerbyscience.com/how-to-deadlift/\"><span style=\"font-weight: 400;\">https://www.strongerbyscience.com/how-to-deadlift/</span></a><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><span style=\"color: #3a9bfc;\"><a style=\"color: #3a9bfc;\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></span></h3>\n<img class=\"aligncenter size-full wp-image-17664\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/10/Communication-Skills-For-Personal-Trainers-Biomechanics-Coach-1.jpg\" alt=\"\" width=\"2766\" height=\"1312\" />','The Deadlift - Which Variation Is Right For You?','','draft','closed','closed','','the-deadlift-which-variation-is-right-for-you','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',0,'https://www.biomechanicseducation.com/?p=17991',0,'post','',0),(17992,0,'2019-10-21 10:23:31','2019-10-21 10:23:31','','The Deadlift - Which variation is right for you - Biomechanics Coach','','inherit','open','closed','','the-deadlift-which-variation-is-right-for-you-biomechanics-coach','','','2019-10-21 10:23:31','2019-10-21 10:23:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/10/The-Deadlift-Which-variation-is-right-for-you-Biomechanics-Coach-1.png',0,'attachment','image/png',0),(18161,3,'2019-10-28 18:41:19','2019-10-28 18:41:19','<h2><b>Are You REALLY Committed To Your Professional Development?</b></h2>\n<span style=\"font-weight: 400;\">There is always one thing great coaches have in common…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They NEVER stop learning!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They never assume they know everything. The seek out experts, learn and grow… continuously.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They are great coaches BECAUSE they are great students!</span>\n\n&nbsp;\n<h2><b>When’s Your Next Course Booked?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When we speak with most personal trainers, sports therapists, sports coaches etc, they often have some course or workshop that they want to go on, but for whatever reason haven’t actually booked.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They KNOW it will improve their skills, they KNOW it will help their clients, they KNOW it will help their business, but they just don’t “...</span><b><i>find the time...</i></b><span style=\"font-weight: 400;\">” to research it more, or to simply sign up.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Where have you heard that excuse before eh?…. Oh yeah… your clients that don’t do what YOU ask them to after your sessions!! Right?!?!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s scary investing in yourself. we get it! BUT investing in yourself is the greatest thing you can do. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You see,......YOU are the only <em>limit</em> to your success</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By improving yourself, you get to increase the potential that YOU are able to reach.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are 2 types of development that we believe are key to all coaches...</span>\n\n&nbsp;\n\n&nbsp;\n<h2><b>On-Going Personal Development</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are big believers that coaches should ALWAYS be developing themselves. There should be on going, daily / weekly plan for personal development and education, like listening to podcasts and reading books.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We know that finding time can feel really challenging. You have those early mornings, split shifts, late nights and still a ‘to do’ list a month long, right? And that’s without your down time being scheduled in. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Actually one of the biggest reasons coaches don’t do this comes down to the fact it’s not scheduled into their diary. So here is a small tip, make sure your development time is booked in. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you drive to work, switch off the music and listen to podcasts or a book.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Don’t be the client who can’t FIND the time to exercise.</span>\n\n&nbsp;\n\n&nbsp;\n<h2><b>The One Big Course</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">For us, there should be at least one big skill development project each year.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Doing one course or workshop, that really pushes you, that challenges you, that helps you really grow as a coach.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When it comes to the one big course that could change your business into one that actually finally serves YOU… </span>\n\n<span style=\"font-weight: 400;\">Well, this is more of a decision to take action and book on!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s time you were a good client! It’s time you MADE the time to invest in yourself. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You are asking people to invest in you and yet you aren’t willing to invest in coaching yourself. How do you think you are going to sell coaching if you aren’t willing to invest in it yourself?</span>\n\n&nbsp;\n<h2><b>Stop Putting It Off</b></h2>\n<span style=\"font-weight: 400;\">We have spoken to a lot of coaches this year who have told us…</span>\n\n<span style=\"font-weight: 400;\">“I am definitely going to do this <em>at some point”</em></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We know that those people very rarely actually make the leap and do it. In fact, we often see or speak to them a year or 2 later and they haven’t done any further development and guess what… they’re exactly where they were before. Still not entirely happy but still wanting a different result.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Doesn’t that remind you of the person who complains about their weight, or their injury, but does nothing to actually fix it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Either do something about it, or stop complaining. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Agreed?</span>\n\n&nbsp;\n<h2><b>2020 Personal Trainer Goals</b></h2>\n<span style=\"font-weight: 400;\">Just like you set goals with your clients, we want you to set a goal for you to achieve next year for when it comes to your development. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If it’s to do a course, which course? </span>\n\n<span style=\"font-weight: 400;\">Go sign up to it now!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once you’ve made a decision, go and commit to it right now.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Don’t leave it till next week… or we both know that it will never happen. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sign up to it now! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Go look at their website, click the button that says find out more or sign up and take action!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If the company is anything like us, there are various different ways you can pay for the course. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So today’s post has really, hopefully, been a bit of a kick up the backside for those of you who haven’t been learning and growing recently.</span>\n\n&nbsp;\n<h3><strong>Your Challenge</strong></h3>\n<span style=\"font-weight: 400;\">In fact, the challenge we are going to leave you with is this…</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">30 minutes of personal development each day - podcasts, reading, watching - anything that is going to help you develop as a coach. Book it into your diary… now! If you are going to listen to podcasts, go download them and line them up for your car journey. Download an audio book. </span></li>\n 	<li style=\"font-weight: 400;\">Book on to one BIG course that is going to really take your skills to the next level. (Remember, if it scares you, it means it’s probably a good thing to do.. Easy courses… won’t push you to grow.)</li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now obviously we would love for the big course you do to be ours. We know it might not be and thats ok. We want all coaches to be developing themselves and our courses aren’t for everyone.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, for some of you, our Biomechanics Coach Diploma will be exactly what you need. So we have a bit of info and a promise for you...</span>\n\n&nbsp;\n<h2><b>The Biomechanics Education Promise</b></h2>\n<span style=\"font-weight: 400;\">We are going to make you a promise here, so open up your diary …. Yes right now...... waiting…. Ok so for those of you who have been meaning to book on for AGES see listed below options at ALL price points. So no matter what you feel comfortable with there is always an option for you to experience our training.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Promise?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We ALWAYS promise you will get value, quality and skills that you can apply immediately into your business. We promise standards that are of the highest level in our industry because YOUR classroom experience is of utmost importance to us. We passionately care about your experience and we have a vested interest in your success. We can help more people through YOU.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So we are on the lookout for brand bearers who care, representatives of the intrinsic biomechanics &amp; iMoveFreely programmes to continue to grow our community of phenomenal professionals whose confidence does not exceed their skill set but DOES shine out in their facility. </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Don’t just take my word for it though, have a look at what these guys have to say about it:</span></h3>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">The iMoveFreely® programme changed the way that I teach every class &amp; client. I put this information into my Fitness Pilates, FFY &amp; Conditioning programmes to help my clients improve their movement &amp; prevent injury. </span></i><b><i>IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!” </i></b>\n\n<b>Jayne Nicholls Director Group X Training Ltd</b></blockquote>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">Hello Rachel,</span>\n\n<span style=\"font-weight: 400;\">Just wanted to say thank you so much for all of your help and support through doing the Biomechanics Diploma.</span>\n\n<span style=\"font-weight: 400;\">It has truly and honestly changed my life for the better.</span>\n\n<span style=\"font-weight: 400;\">When I signed up I was in a situation of being unsure where to take my business or whether to give up all together.</span>\n\n<span style=\"font-weight: 400;\">Doing the course has not only expanded my knowledge and given an increased skill base, but also totally lifted the work to another level! It’s helped with personal and business growth.</span>\n\n<span style=\"font-weight: 400;\">I have had support and access to services via the Biomechanics community which in 2 months has expanded my business, which is incredible.</span>\n\n<span style=\"font-weight: 400;\">The future is looking a lot more promising!</span>\n\n<span style=\"font-weight: 400;\">It’s instilled faith, confidence, excitement and a passion for the work I do, helping people to achieve their goals, and be even better versions of themselves.</span>\n\n<span style=\"font-weight: 400;\">It really is a supportive helpful, interesting community of people and further training. As long as I listen and do the work, there’s no reason why great things can’t be achieved!</span>\n\n<span style=\"font-weight: 400;\">Will highly recommend to others &#x1f601;</span>\n\n<b>Louise Pitt</b></blockquote>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">Gosh!! Thanks so much Rachel for amazing feedback super helpful!,</span>\n\n<span style=\"font-weight: 400;\">What a great way to start the New Year! It has been a truly wonderful course, have learnt so much and so grateful for all the teams support. Having opened my Pilates studio in September I felt a bit overwhelmed with everything, thank you for your patience and  giving me the extra time to complete my case studies, and yes can use them no worries.</span>\n\n<span style=\"font-weight: 400;\"> For sure will keep in touch, as you said this is just the beginning!! Looking forward to seeing you hopefully in June for the workshop, and looking forward to the next step L4 lower back.</span>\n\n<span style=\"font-weight: 400;\"> Have a great day, you have made mine!</span>\n\n<b>Lucia xxx</b></blockquote>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">Hi Rachel!</span>\n\n<span style=\"font-weight: 400;\">Firstly I wanted to thank you for a fab couple of days.  Really buzzing from it, and already thinking about how I will use it going forward.  I can\'t wait to start putting it into practice, and for the next workshop!</span>\n\n<span style=\"font-weight: 400;\">Thanks again, and see you next month.</span>\n\n<b>Tracy Swindell</b>\n\n<b>(I left a commercial gym &amp; doubled my salary in year 1 and predict triple year 2)</b></blockquote>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">You are such an amazingly passionate and inspiring lady I feel so lucky to have picked this course, and even more lucky to have you delivering it. </span>\n\n<span style=\"font-weight: 400;\">After spending those 2 days in the class taking in what I can, I actually leave feeling not just more knowledgeable but more enthusiastic about life in general, and I think that\'s all down to you. </span>\n\n<span style=\"font-weight: 400;\">I\'m not a very confident person at this time in my life but you put me at ease, you don\'t just rush through it you make time for everyone. Your always more than happy to be challenged on anything. </span>\n\n<span style=\"font-weight: 400;\">You\'ve got some teaching techniques that just work for everyone, understanding of where people are at, and give an explanation in a way that\'s suited to the individuals needs. </span>\n\n<span style=\"font-weight: 400;\">It\'s clear to see that you literally love, live and breathe what you do. </span>\n\n<span style=\"font-weight: 400;\">How you do what you do and make time for so many people, your drive and passion is just mind blowing, and i\'ll say again, truly inspiring. </span>\n\n<span style=\"font-weight: 400;\">For myself moving forward in life this course is probably the best thing I had ever done, so lucky that I didn\'t miss out on this. Thank you for all you do Rachel </span>\n\n<b>Tommy Berrabe </b></blockquote>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">Hi Rachel</span>\n\n<span style=\"font-weight: 400;\">I just wanted to thank you for your time and expertise over this weekend. You have invaluable knowledge but deliver the training in a practical way to suit the learners on the course (underpinned by the manuals) and at a level to suit all, whilst achieving the standards you require. The environment was informal, yet the emphasis on professionalism extremely high. The pace matched the needs of the whole group, giving time to ask questions and ponder on the new skills and knowledge and your method of questioning ensures learners are thinking critically and independently. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">For me personally, it has reiterated key points from the Biomechanics Trainer workshop and given me plenty of practical tips to develop my business further. This was exactly what I wanted to achieve from the course having noticed that I am not quite getting the results I think intrinsic biomechanics can offer my clients and their perception of the service provided is not always accurate. </span>\n\n<span style=\"font-weight: 400;\"> Looking forward to the next workshop :) </span>\n\n<span style=\"font-weight: 400;\"> Thanks again,</span>\n\n<b> Becky Eagling</b></blockquote>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">I have been meaning to drop you an email. Myself and my clients have been buzzing with the remarkable improvements the screens and releases etc have achieved. </span>\n\n<span style=\"font-weight: 400;\">I have 1 client who has been struggling with a grumbly SIJ issue every time she squats or deadlifts. 10 days of 4Sign release and now squatting and deadlifting without any problems! </span>\n\n<span style=\"font-weight: 400;\">My Osteopath has been very interested in the courses and I wouldn\'t be surprised if she signs up for a course at some point.</span>\n\n<span style=\"font-weight: 400;\">Really looking forward to the next courses to build on the skills.</span>\n\n<b>Jason Howard</b></blockquote>\n<span style=\"font-weight: 400;\">  </span>\n<h2><b>Are You Ready To Commit To Improving Your Service?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Introducing you to the Biomechanics Coach Diploma...</span>\n\n<span style=\"font-weight: 400;\">Our Groundbreaking Diploma in Biomechanics Coaching is bridging the gap between the exercise and medical worlds.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It continues to have a reputation for giving personal trainers a much deeper understanding of the body and movement with evidence-based assessment skills for every joint in the body and all of the 3 subsystems including myofascial, skeletal and neural.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We enable learners to improve their anatomy knowledge &amp; interdisciplinary communication skills while introducing you to a fast-growing network of diverse professionals to gain second and third opinions from allowing you to become the confident practitioners we know you can be. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For those who also have an Exercise Referral Qualification we can upgrade you to Level 4 LBP with a few</span><b> extra exams</b><span style=\"font-weight: 400;\"> BUT this is not a requirement for gaining the Diploma in Biomechanics Coaching nor accessing it on as a stand-alone.</span>\n\n&nbsp;\n<h2><strong>SPECIAL OFFER - Ends December 16th 2019</strong></h2>\n<span style=\"font-weight: 400;\">Secure your spot for one of our 2020 diplomas before Dec 16th 2019 and you\'ll also get a special offer...</span>\n<h3>Option 1: Payment Plan Option - Total Investment = £2397</h3>\n<span style=\"font-weight: 400;\">£150 x 15 + 1 X £147 (Ends Jan 2021)</span>\n\n<span style=\"font-weight: 400;\">You get a goodie bag (including Wolverson lacrosse ball, resistance band, foam roller, iMoveFreely bag, colouring anatomy book)</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\"><strong>Option 2: Pay in Full</strong> </span>- Total Investment = £2397 + BONUSES</h3>\n<span style=\"font-weight: 400;\">You get a goodie bag as above <em>AND a 12 months IBA Membership worth £432</em></span>\n<h3>- Total Investment = £2397</h3>\n<span style=\"font-weight: 400;\">(inc clothing, online courses, portal, videos, resources and 4 extra face to face workshops etc)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These courses are already filling up so do not hesitate, do not miss out because you simply don’t take action. <a href=\"https://biomechanicseducation.clickfunnels.com/tell-me-more\">Click here to register your interest and chat with one of the team!</a></span>\n\n&nbsp;\n<h3><b>NOTTINGHAM <span style=\"color: #ff0000;\">(50% places already sold)</span></b></h3>\n<b>FRI-SUN </b>\n\n<span style=\"font-weight: 400;\">Mar 10th-12th Pelvic Spine Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Apr 17th/19th Shoulder, Knee/Foot Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">May 16th/17th Low Back Health Workshop </span>\n\n<span style=\"font-weight: 400;\">June 20th Exam </span>\n\n&nbsp;\n<h3><b>BELFAST </b></h3>\n<b>FRI-SUN</b>\n\n<span style=\"font-weight: 400;\">Apr 3rd-5th Pelvic Spine Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Jun 12th-14th Shoulder, Knee/Foot Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Oct 16th/17th Low Back Health Workshop </span>\n\n<span style=\"font-weight: 400;\">Nov 13th Exam </span>\n\n&nbsp;\n<h3><b>LONDON  <span style=\"color: #ff0000;\">(50% places already sold)</span></b></h3>\n<b>WED-FRI</b>\n\n<span style=\"font-weight: 400;\">Apr 22nd-24th Pelvic Spine Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">May 20th-22nd Shoulder, Knee/Foot Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Jun 18th/19th Low Back Health Workshop </span>\n\n<span style=\"font-weight: 400;\">July 30th Exam</span>\n\n&nbsp;\n<h3><b>SCOTLAND - AUGUST START</b></h3>\n<b>FRI-SUN </b>\n\n<span style=\"font-weight: 400;\">Aug 7th-9th Pelvic Spine Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Sept 11th-13th Shoulder, Knee/Foot Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Dec 4th/5th Low Back Health Workshop </span>\n\n<span style=\"font-weight: 400;\">Jan 2021 TBC</span>\n\n&nbsp;\n<h3><b>NOTTINGHAM - SEPTEMBER START</b></h3>\n<b>FRI-SUN</b>\n\n<span style=\"font-weight: 400;\">Sept 4th-6th Pelvic Spine Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Oct 2nd-4th Shoulder, Knee/Foot Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Oct 30th/31st Low Back Health Workshop </span>\n\n<span style=\"font-weight: 400;\">Nov 21st Exam </span>\n\n&nbsp;\n<h3><b>LONDON - SEPTEMBER START</b></h3>\n<b>WED-FRI</b>\n\n<span style=\"font-weight: 400;\">Sept 23rd-25th Pelvic Spine Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Oct 21st-23rd Shoulder, Knee/Foot Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Nov 19th/20th Low Back Health Workshop </span>\n\n<span style=\"font-weight: 400;\">Dec 10th Exam </span>\n\n&nbsp;\n\n<b>If you are ready to invest in yourself then we want you to take action now. <a href=\"https://biomechanicseducation.clickfunnels.com/tell-me-more\">Click here, enter your details and let’s connect on the phone to see if this is the right programme for you. </a></b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">P.S. If you’re scared about going onto a course, it\'s ok. Pushing ourselves out of our comfort zones is scary. It’s a sign that you are doing something that is good for you!</span>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><a style=\"color: #3366ff;\" href=\"https://biomechanicseducation.clickfunnels.com/tell-me-morea73nqyqr\">CLICK HERE to go and register your interest and request a call back from one of the team!</a></span></h2>\n&nbsp;','Be A Great Coach By Being An Even Better Student','','draft','closed','closed','','be-a-great-coach-by-being-an-even-better-student','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=18161',0,'post','',0),(18162,0,'2019-10-28 16:26:51','2019-10-28 16:26:51','','Great Coaches are Great Students','','inherit','open','closed','','great-coaches-are-great-students','','','2019-10-28 16:26:51','2019-10-28 16:26:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/10/Great-Coaches-are-Great-Students-1.jpg',0,'attachment','image/jpeg',0),(18287,3,'2019-11-04 11:12:30','2019-11-04 11:12:30','<h1><span style=\"font-weight: 400;\">…. And What We Can All Learn From It!!</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">While most people were getting Halloween outfits sorted for themselves or their kids, I found myself in a chair, with a suction tube and a long spoon in my ear…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I was having my ears cleaned out and it was both horrendous and incredible!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There were so many lessons to learn from my experience that I just had to share it with you (no pictures I promise)...</span>\n\n&nbsp;\n<h2><b>Why EarWax Removal?</b></h2>\n<span style=\"font-weight: 400;\">Yes that’s right I had my ears cleansed of earwax and the experience I had was so impactful it made me cry and unable to speak (I know!!) for around an hour. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This goes all the way back to my childhood when I had numerous ear infections and experienced 2 x agonisingly painful perforated eardrums a couple of times to the detriment of my hearing. However, my hearing loss wasn’t so apparent at the time yet when I look back now I recognise how much it did indeed affected me.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My teachers would make me sit at the front because they thought I wasn\'t listening when in fact I hadn\'t heard them. It also made to feel stupid because I didn\'t know the answer to a question because I actually hadn\'t heard it the first time and I got so sick of asking people to repeat themselves that I gave up.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Giving up asking people to repeat what they had said inevitably brought more problems and in some cases, I simply avoided certain situations.</span>\n\n<span style=\"font-weight: 400;\">There were times when they looked at me when I replied with the answer I THOUGHT was required only to be made to feel more stupid as I had guessed wrong. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Years of this can have its toll on a kid and I just accepted that I probably was pretty dumb, when you get told often enough - I mean I am certainly NOT academic since every teacher I ever has felt compelled to tell me!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My enjoyment of music was possibly because of all of the above and also resulted in my enjoyment for expression through dance and became (god knows how!?!?!?) a professional dancer.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I also got away with my bad hearing in my decade working as a carer with the elderly and disabled. Many of them were not so great at hearing or being academic either so we all spoke pretty loud and about basic stuff. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway, over the years I gained confidence in myself but simply accepted my hearing loss as part of my poorly ears during my childhood.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then my boyfriend who uses earbuds at work suddenly lost his hearing so he found an ear clinic locally to go and get his ears checked out for excessive earwax. </span>\n\n<span style=\"font-weight: 400;\">His hearing returned immediately and he told me proudly about his MASSIVE lumps of earwax - gross eh! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He suggested I get mine checked out…”...</span><i><span style=\"font-weight: 400;\">you never know</span></i><span style=\"font-weight: 400;\">…” he said.</span>\n\n<span style=\"font-weight: 400;\">So I soon found myself on the way. As I drove there I realised how crackly my ears are and they always buzz a bit and I often get tinnitus too which I have simply learned to live with!</span>\n\n&nbsp;\n<h3><b>The Earwax Experience </b></h3>\n<span style=\"font-weight: 400;\">The ear clinic was in a high street and had very smart clear branding with lettering that gave the impression of intelligence - don\'t ask my why it just did.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I was greeted warmly by Alan who was going to check out my ears. </span>\n\n<span style=\"font-weight: 400;\">Dressed in a way that made him look clever (again he just did). He smiled as he looked straight at me and shaking my hand and invite me inside his room. The image he gave was just perfect - I trusted him immediately! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">His room was super clean, slightly clinical, with nice artwork of the inside of an ear hanging from the wall.</span>\n\n&nbsp;\n<h3><b>SMART Goal</b></h3>\n<span style=\"font-weight: 400;\">Alan started by asking me about my REASON FOR VISIT. As I explained my lifelong hearing issues, recent degradation of hearing and other symptoms he took notes, nodding and asking a few questions for CLARITY. </span>\n\n<span style=\"font-weight: 400;\">He paraphrased to let me know he heard what I was saying. He was sympathetic, understanding and made me feel like I must be the same as so many other patents he sees on a regular basis. I wasn’t necessarily losing my hearing. </span>\n\n<span style=\"font-weight: 400;\">He explained simply what often happens in cases like my REASON FOR VISIT and that he would do his utmost to help based upon my REASON FOR VISIT. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The goal was SMART and related specifically to my RFV</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">S - Ear wax removal</span>\n\n<span style=\"font-weight: 400;\">M - Locate wax and removal can be measured by extracting it.</span>\n\n<span style=\"font-weight: 400;\">A - Alan’s training, experience and equipment meant he felt it was achievable as he stated.</span>\n\n<span style=\"font-weight: 400;\">R - Realistically Alan had such a high success rate he promised free treatments if it wasn’t possible which showed confidence that the goal was realistic and he has integrity </span>\n\n<span style=\"font-weight: 400;\">T - Alan regularly does each ear in 10 minutes but professionally allows an hour per appointment giving us both a suitable time limit for the goal</span>\n\n&nbsp;\n<h3><b>The Procedure</b></h3>\n<span style=\"font-weight: 400;\">Alan explained all of the equipment in the room and what he would be doing step by step. This gave me absolute clarity and comfort in what to expect since there was some mild anxiety about what this was going to entail. </span>\n\n<span style=\"font-weight: 400;\">First, he asked if I would like to see what he could see as he looked in my ears. He could show me a magnified version on the screen in front of me.</span>\n\n<i><span style=\"font-weight: 400;\">“OH Yes please!”</span></i>\n\n<span style=\"font-weight: 400;\">I replied eager to understand my body better. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OMFG!!!! Can I say that in a blog? - apologies for the profanity but the sight that came into view on the screen was literally something out of a horror show….dark, grungy, cloggy, brown/black, matted awful horrid earwax! </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“I never realised it was that colour</span></i><span style=\"font-weight: 400;\">?” I said. Alan replied “</span><i><span style=\"font-weight: 400;\">oh this wax has been here for years and years, compacted down on top of more and more, so it becomes hard and dark and very difficult to remove by yourself”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet he seemed really confident he could remove it. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">PLEASE GET IT OUT NOW!!!</span></i><span style=\"font-weight: 400;\"> My mind screamed! I was now horrified, glad Alan had made me feel trust in him when I realised the horrific truth about what I was hiding in my ears all along!</span>\n\n&nbsp;\n<h3><b>Reality</b></h3>\n<span style=\"font-weight: 400;\">He explained it might feel tender at times as he might need to scrape away at my funky old ear wax and to let him know so he could ease off if it did. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I leaned my head to one side and he started by using a machine that I can only describe as a being like a dehumidifier with a very narrow suction tube with a thinker see-through tube connecting them. </span>\n\n<span style=\"font-weight: 400;\">The suction kicked on once he switched it on and was loud in my ear but it was kinda nice to think he would be pulling that sucker out of my poor ear. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Small glugs of brown sludge scooted up the tube, the sucking sound was weirdly satisfying as I imagined what it was removing. He would swap between the sucker and a teeny weeny very long-handled spoon thing that he used to scrape the sides with the help of a metal cone thing for positioning. </span>\n\n<span style=\"font-weight: 400;\">I meditated</span>\n\n<span style=\"font-weight: 400;\">However 30 minutes later he was still at it! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PHEW!! Even Alan confessed that this was a tough set of ear sludge. YUCK!</span>\n\n<span style=\"font-weight: 400;\">He sprayed olive oil in and started the other ear while the first one had a soak to loosen off.</span>\n\n<span style=\"font-weight: 400;\">All the time he is soothing me with confidence in his ability to remove what was beginning to feel like a small alien life inside my ears. </span>\n\n<span style=\"font-weight: 400;\">The second ear began to feel sore and I had to ask him to stop for a break so he went back to the first ear. He sprayed oil in then changed back to the first ear.</span>\n\n<span style=\"font-weight: 400;\">10 minutes more this side and suddenly it was like he had experienced something wonderful as he held proudly a large clump of disgusting ear wax the size of a squished olive!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Jeeeeeezee!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This just seemed to froth us both up into a determined frenzy to get the other side completely clear! </span>\n\n<span style=\"font-weight: 400;\">Scraping, sucking, scraping away and it was soooo tender but he was just as desperate to remove it as I was. He dug and scraped and sucked and FINALLY…..</span>\n\n<span style=\"font-weight: 400;\">10 more minutes later, totalling 1 hour altogether, the second alien appeared stuck to the end of his suction tube! No less disgusting either! </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“WOW” </span></i><span style=\"font-weight: 400;\">Alan exclaimed </span><i><span style=\"font-weight: 400;\">“This normally takes around 10 mins per ear &amp; yours is probably the second toughest ear wax removal I have done in my career! </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ah the honour! </span>\n\n&nbsp;\n<h3><b>My Life Changed In That Moment</b></h3>\n<span style=\"font-weight: 400;\">Total elation first, then wait what sorry your shouting Alan, ssshhhhh WHOAH Hang on a minute why do I want to cry? It was THAT painful but, just a minute, I can actually hear crystal clearly! Like TURN THE SOUND DOWN FFS!!</span>\n\n<span style=\"font-weight: 400;\">I was smiling like a kid trick or treating with their pumpkin bursting with sweets already</span>\n\n<span style=\"font-weight: 400;\">My face was aching from smiling as I shook Alan’s hand vigorously, he was smiling too and I think he understood because as I was leaving saying thank you over and over I was almost crying, overcome with the joy of sound.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">And then I was outside in the street with everyone walking around as if no miracles had occurred, like it was another normal day, shopping and MAKING SO MUCH FREAKIN NOISE!!! JEEEZE SHHHHHHHHH EVERYONE!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then there were tears as I stumbled back to my car due to the amplification of my sense altering my balance somehow.</span>\n\n<span style=\"font-weight: 400;\">Unable to call my boyfriend because I knew I wouldn\'t be able to speak and because of the hyper sensitivity of my ears. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I drove home smiling</span>\n\n<span style=\"font-weight: 400;\">I had to turn my stereo down</span>\n\n<span style=\"font-weight: 400;\">I enjoyed sounds </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally I did call my boyfriend and had to put him on loud speaker because my hearing was so sensitive against the phone. I filled up again as I described my experience.</span>\n\n&nbsp;\n<h2><b>What Lessons Can We Learn From This?</b></h2>\n&nbsp;\n<h3><b>Tip One - Subject Lines</b></h3>\n<span style=\"font-weight: 400;\">Firstly email headers are vital to encouraging your followers to actually be motivated to open &amp; read what you have to say, so we are constantly having to come up with interesting titles. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Mine has relevance because of the time of year and also an experience I had that taught me several things about my own business.</span>\n\n<span style=\"font-weight: 400;\">By relating to a current event, you enter the conversation people are already having</span>\n\n&nbsp;\n<h3><b>Tip Two - Ask For Testimonials</b></h3>\n<span style=\"font-weight: 400;\">Always ask for feedback at the point when you see your clients joy at feeling successful! Ask them to answer a few questions on camera or to take 2 minutes to write down how they are feeling and why WHILE they are in that state or emotion. I would have literally sold this experience to anyone who asked me at this moment I wanted to </span><i><span style=\"font-weight: 400;\">scream</span></i><span style=\"font-weight: 400;\"> from the rooftops (see what I did there?) how amazing it was! </span>\n\n&nbsp;\n<h3><b>Tip 3: The Experience Matters</b></h3>\n<span style=\"font-weight: 400;\">What’s the first impression someone gets when they walk into your facility? From the look, the smell, to how they are greeted and everything in between. </span>\n\n&nbsp;\n<h3><b>Tip 4: Do Your Prices Reflect The Value?</b></h3>\n<span style=\"font-weight: 400;\">At £40 per ear, for what normally takes 10 minutes, you might think that sounds expensive.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But it’s not about the time I was there, even though I used my full hour. It\'s about the value the result brings.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">£80 for that feeling I talked about… worth it EVERY time! I’d pay it again tomorrow! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What results do you get your clients? Think about that? Helping people move better, allows them to play with their children pain free… that’s worth a lot of money!</span>\n\n&nbsp;\n<h3><b>Tip 5: Set Expectations</b></h3>\n<span style=\"font-weight: 400;\">One of the biggest reasons people get upset with a service is because their understanding of what results they can get are not realistic. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“I thought I was going to lose 3 stone in 3 days?”</span>\n\n<span style=\"font-weight: 400;\">It’s your job to make sure the expectations are clear and realistic. </span>\n\n&nbsp;\n<h3><b>Tip Three</b></h3>\n<span style=\"font-weight: 400;\">Be careful what you tell someone</span>\n\n&nbsp;\n<h3><b>Tip Four</b></h3>\n<span style=\"font-weight: 400;\">Get your earwax checked!</span>\n\n&nbsp;\n\n<hr />\n\n<h1 style=\"text-align: center;\">Are You Ready To Help Your Clients Move More Freely?</h1>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Click here if you would like to find out more about the Biomechanics Coach Diploma and let\'s have a chat</a></h3>\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter size-full wp-image-10836\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png\" alt=\"\" width=\"1225\" height=\"612\" /></a>\n\n&nbsp;','My Horrific Halloween Earwax Experience','','draft','closed','closed','','my-horrific-halloween-earwax-experience','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=18287',0,'post','',0),(18288,0,'2019-11-04 10:59:35','2019-11-04 10:59:35','','Earwax Experience - Halloween - Biomechanics Education','','inherit','open','closed','','earwax-experience-halloween-biomechanics-education','','','2019-11-04 10:59:35','2019-11-04 10:59:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Earwax-Experience-Halloween-Biomechanics-Education-1.png',0,'attachment','image/png',0),(18457,3,'2019-11-11 14:05:36','2019-11-11 14:05:36','<h1><b>Helping your clients run faster and reduce their risk of injury</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you work with clients who run? </span>\n\n<span style=\"font-weight: 400;\">Whether you’re a running coach, triathlon coach, personal trainer helping people go from couch to 5k then this is a post for you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is so much conflicting advice in the running world and today we wanted to get to the bottom of some of the myths and advice out there.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These could be things your clients say or perhaps even things you say that could be slowing them down (in both actual times and their performance) or worse, increasing their risk of injury.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This week we are very honoured to have a world leader in intrinsic biomechanics Martin Haines, offer us insights into key questions and the evidence around running form.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So many of us have clients who run, or want to run, remain injury free and maybe even gain a few PB’s along the way!</span>\n\n<span style=\"font-weight: 400;\">How can we help?</span>\n\n<span style=\"font-weight: 400;\">Well with guidance and evidence based information from a world leader we can pass on great advice to our clients by staying up to date with superior quality information. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This guest blog from Martin also gives you an insight into the Running Biomechanics workshop we deliver in our programmes if you would like more practical skills to improve your service to clients who run…..</span>\n\n&nbsp;\n<h2><b>Is Running Form Important? </b></h2>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">The way you run can be the difference between fulfilling your potential and never quite being as good as you’d hoped. However, running form/technique/style is very personal and depends upon a number of factors which should be assessed by an experienced coach familiar with biomechanical principles or by a Biomechanics Coach.  There is little evidence that the alignment of various body segments statically or dynamically alters your injury risk or indeed improves performance, in fact you will see some runner’s in your group who demonstrate personalised styles and techniques that include for example buckling knees, flailing arms and flat feet and some seem to get injured no more than those who run with a more orthodox style (and sometimes injured less frequently!). </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">There are also a number of running coaches who encourage you to run using ‘their method’.  Their method may coincidentally suit you and work well, but unless you are analysed carefully and the results find that particular style is suited to your mechanics and anatomy, it may cause you more problems.  Don’t be seduced by pseudo-science suggesting one style suits everyone – you are an individual and deserve to be trained as one. One size does not fit all. Find your own style that works for you; and that may be simply going out and running, doing what you feel is comfortable.</span></i>\n\n&nbsp;\n<h2><b>It\'s Suggested That Everyone Should Have A Cadence Of 180 Strides Per Minute To Prevent Knee Injuries, Is This True?  </b></h2>\n<i><span style=\"font-weight: 400;\">Actually, 180 cadence (number of strides per minute or stride frequency) is supposed to be the ideal cadence for optimal running at elite level, but this is meant as a “barometer not a governor” (Hailey Middlebrook, Runner’s need 2019).  Whether there is an injury risk reduction is not clear. This cadence is based upon some anecdotal observations by legendary coach Jack Daniels as far back as 1984. Then a paper by Burns et al in 2019</span></i><i><span style=\"font-weight: 400;\">1  </span></i><i><span style=\"font-weight: 400;\">suggested that while this is an average cadence for many elite level distance runners (in fact Burns found it was 182 in his test cohort), cadence seems to be dependent upon the speed you run and your height.  The quicker you run, the higher your cadence (the greater number of steps you take per minute) and the taller you are, the lower your cadence (less number of steps required per minute as</span></i><i><span style=\"font-weight: 400;\"> you can take fewer steps per minute to cover the same distance)</span></i><i><span style=\"font-weight: 400;\">.  </span></i><i><span style=\"font-weight: 400;\">Weight, age, speed and running experience did not seem to be relevant.  You may also consider that </span></i><i><span style=\"font-weight: 400;\">cadence would likely depend upon your type of foot strike, any leg length discrepancies, hip mobility, calf mobility, nerve mobility in the back of your leg or even spinal mobility.  So, your cadence can be used to benchmark improvement, but there is no evidence to suggest that a higher cadence means you are more likely to prevent injury.</span></i>\n\n&nbsp;\n<h2><b>What Is Gait Analysis &amp; How Accurate Is It? </b></h2>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">This is an assessment of how you run; it can be as sophisticated as using high speed cameras and analysis software, but it can be as simple as someone watching you run. Both can be of value.  The sophisticated methods are accurate enough to be able to help you, but equally an experienced and skilled coach can be very helpful by visually analysing how you run too. You may also be aware that there are some “APPs for that” too.  Do be careful though, don’t change your style based upon an analysis that encourages you to run closer to a theoretically ‘correct’ style. Your anatomy and mechanical make-up may suit your current style better than something that is more orthodox or a coach’s preferred teaching method. Make any changes under close supervision and don’t change for changes sake.</span></i>\n\n&nbsp;\n<h2><b>I\'m Injury Free, But I\'ve Been Told My Form Is Off - Should I Change Anything?</b></h2>\n<i><span style=\"font-weight: 400;\">Despite our advances in technology and our understanding of the body, as well as training and conditioning techniques, many experts suggest that the old adage; “If it aint broke, don’t fix it”, still applies today.  Your body moves how it needs to move to accommodate your anatomy and personal mechanics. If you do have a personalised style, make sure anyone who wants to change that style (to make it theoretically better) first understands precisely why you are running as you do.  If you are running as you do to accommodate a genetically stiff hip for example and your technique is changed to something theoretically better, you may no longer be able to accommodate that stiffness and end up loading the hip, potentially causing problems. If the hip problem is something that is correctable then make the changes to your hip by exercise or treatment, and make sure that the rest of your body has the capacity to adapt to those changes, then make slow alterations to your style – if indeed any change is still necessary.  It takes a skilled coach and a detailed assessment to make these changes to minimise the risk of causing problems as your body adapts to the style changes.</span></i>\n\n&nbsp;\n<h2><b>I’ve Been Told I Pronate &amp; Have Been Advised To Wear Shoes To Help Support The Arch Of My Foot</b></h2>\n<i><span style=\"font-weight: 400;\">The term pronation and its relevance to running performance and injury prevention is still not fully understood.  Pronation is a rolling of the foot inwards and its part of the shock-absorbing mechanism when your foot lands on the floor; along with movement from your ankles, knees, hips and spine.  That’s the easy bit, the difficulty is establishing how much pronation is right for each individual. There some runners who seem to have a lot of pronation but who rarely get injured and others who seem to have much less pronation are injured frequently – clearly there is more to it than simply the amount of pronation.  The consensus from the recognised experts seems to be that if you are not getting injured frequently then there is no need to interfere with your pronation – and even if you are getting injured more than you would like, there may be other areas that you would look to address first anyway. This may include areas such as your pelvis, a dysfunction in which can create an apparent leg length discrepancy. This may not be an issue in itself, but your foot may alter its amount of pronation to accommodate the leg length discrepancy – so any apparent pronation issues may simply be a compensation from higher up the leg.  Perhaps you can see how correcting the problem at the foot in this example could be counterproductive. There are many more examples which can get quite complicated, so get checked out by someone who is an expert in the field before you change your shoes to support your arch or reduce your pronation. </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Anti pronator shoes or ‘corrective’ insoles do have their place and can help runners, but make sure they’re necessary and are prescribed at the right time.  Also note that insoles are often temporary measures to offload an injured structure until it has healed and your rehab is completed, they can then often be removed or at least the support reduced. </span></i>\n\n&nbsp;\n<h2><b>How Can The Upper Body Influence Running Form? </b></h2>\n<i><span style=\"font-weight: 400;\">Typically the upper and lower body are synchronised to optimise your running style.  So, if your legs have a personalised style your arms will likely move differently too to accommodate and visa versa. So, if you had a stiff upper back or a long-term shoulder injury for example, it is likely that your upper body movements will accommodate the resulting mechanical issues.  This will likely cause some form of compensation in your hips and/or legs too. This shows how important it is to make sure you deal with the causes of the movement style issues before you correct the style issue itself. Also, any change in arm movement style should be accompanied by suitable measures to understand the likely hip/leg compensations and then exercises to help them adapt should be provided. </span></i>\n\n&nbsp;\n<h2><b>Is There A Hierarchy Of Things That I Could Work On? And Where Does Running Form Adaptions Sit Into That? </b></h2>\n<i><span style=\"font-weight: 400;\">It is difficult to say with any certainty that injuries or running styles are linked to a particular body part, we perform any movement based upon learned patterns, movement experiences, our anatomy and past injuries.  There are however occasions when a ‘system re-boot’ is helpful. We are born with unconditioned reflexes</span></i><i><span style=\"font-weight: 400;\">2</span></i><i><span style=\"font-weight: 400;\"> which enable us to perform movements seemingly without thinking about them; such as when we are babies - lifting our head, rolling, lifting our hands to our mouths to feed for example. Then as get older we perform tasks that are less natural; such as sitting in chairs rather than sitting down on our haunches. We also get injured for various reasons and perform unusual movement patterns to protect the injured area – these movements can become permanent if you’re not careful.  All of these problems cause something called conditioned reflexes</span></i><i><span style=\"font-weight: 400;\">2</span></i><i><span style=\"font-weight: 400;\">; ones that our bodies have created to enable us to move to compensate for pain or unaccustomed stiffness or weakness. Our bodies were not originally designed to move in this way and so further problems can result due to the causes of these unnatural movements.  One way of identifying these causes is to be screened or tested – the resultant exercises to help with any issues can be thought of as a ‘system reboot’. Biomechanics Coaches or a Physiotherapist skilled in the science of Biomechanics could help you with this.</span></i>\n\n&nbsp;\n<h2><b>If You Could Offer The General Public One Piece Of Advice What Would It Be?</b></h2>\n<i><span style=\"font-weight: 400;\">Run how nature intended you to run, without any thought to it.  Progress your mileage slowly and let your body run freely. If you have regular or recurrent problems then look to understand why, by having an assessment of your body’s mechanics. Not necessarily a running analysis, an analysis of your body – to see if your body has the capacity to run the sort of distances and frequencies that you are doing. If it highlights correctable issues, then perform exercises to correct them and then carry on running using your previous style. Interestingly, you may find that your style changes naturally (without trying) when your body has the capacity to move differently, perhaps better. If the assessment shows that you have a structural or anatomical anomaly then you should see a coach to help you change your style to work around that anomaly, which may not be orthodox, but will work for you.  </span></i>\n\n&nbsp;\n<h3><b>Summary from Rachel</b></h3>\n<span style=\"font-weight: 400;\">So as you see Martin challenges some pretty common misconceptions about running form. If you would like to discuss any of these issues while having an opportunity to also learn practical skills to support you when coaching your running clients, why not join us for Running Biomechanics in 2020?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you want to help your clients run faster, achieve personal bests, or perhaps just reduce their risk of injury while training for that marathon they signed up for having never run before then this one day workshop is for you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By the end of the day you’ll know how to…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Feel comfortable and confident in assessing your runners to help them gain their next PB!</span>\n\n<span style=\"font-weight: 400;\">Imagine you being known as the ‘go to PT’ for runners, even high level runners!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You will learn;</span>\n\n<span style=\"font-weight: 400;\">6 Foot Tests from the ‘Foot Posture Index’  </span>\n\n<span style=\"font-weight: 400;\">2 Calf Tests - Range &amp; Strength </span>\n\n<span style=\"font-weight: 400;\">5 Hip Tests </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Each of the above come with relevant biomechanical exercise interventions.</span>\n\n&nbsp;\n<h2>When &amp; Where Are The Upcoming Running Biomechanics Workshops?</h2>\n<span style=\"font-weight: 400;\">Running Biomechanics Workshops 2020</span>\n\n&nbsp;\n\n<b>Nottingham - </b><span style=\"font-weight: 400;\">Feb 29th or Oct 25th 10:00-4:00</span>\n\n&nbsp;\n\n<b>London - </b><span style=\"font-weight: 400;\">July 2nd 10:00-4:00</span>\n\n&nbsp;\n\n<b>Belfast  - </b><span style=\"font-weight: 400;\">Nov 15th 10:00-4:00</span>\n<h2></h2>\n<h2>What\'s the investment?</h2>\nJust <span style=\"font-weight: 400;\">£188 per person!</span>\n\n&nbsp;\n<h2>How Do I Book?</h2>\nWant to get booked on immediately? <a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\">Then click here and book your place! </a>\n\nif you have more questions and would like to find out more, just pop me an email at <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a> with the best number to reach you on and we can get on a call and have a chat about the workshop.\n\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\"><img class=\"aligncenter wp-image-18460 size-full\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png\" alt=\"\" width=\"1225\" height=\"612\" /></a>\n\n<b><i>References</i></b>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><i><span style=\"font-weight: 400;\">Burns GT, Zendler JM, Zernicke RF. Step frequency patterns of elite ultramarathon runners during a 100km road race. J Appl. Physiol (1985). 2019 Feb 1;126(2):462-468. </span></i></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Karel Lewit. Manipulative therapy. Published by Churchill Livingstone, 2010</span></li>\n</ul>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Martin Haines DipRGRT MCSP SRP IBAM</span></i>\n\n<i><span style=\"font-weight: 400;\">Founder and Director Brytspark Limited</span></i>\n\n<a href=\"http://www.brytespark.com\"><i><span style=\"font-weight: 400;\">www.brytespark.com</span></i></a>','The Biomechanics Of Running - Myths & Advice','','draft','closed','closed','','the-biomechanics-of-running-myths-advice','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=18457',0,'post','',0),(18460,0,'2019-11-11 13:42:05','2019-11-11 13:42:05','','Running Biomechanics - Myths - Martin Haines','','inherit','open','closed','','running-biomechanics-myths-martin-haines','','','2019-11-11 13:42:05','2019-11-11 13:42:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png',0,'attachment','image/png',0),(18476,0,'2019-11-12 12:13:19','2019-11-12 12:13:19','','pelvic spine image','','inherit','open','closed','','pelvic-spine-image','','','2024-09-05 09:01:04','2024-09-05 09:01:04','',2785,'https://biomechanicseducation.com/wp-content/uploads/2019/11/pelvic-spine-image-1.jpg',0,'attachment','image/jpeg',0),(18477,0,'2019-11-12 12:26:01','2019-11-12 12:26:01','','pelvic spine image416x278','','inherit','open','closed','','pelvic-spine-image416x278','','','2019-11-12 12:26:01','2019-11-12 12:26:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/11/pelvic-spine-image416x278-1.jpg',0,'attachment','image/jpeg',0),(18485,0,'2019-11-12 13:03:23','2019-11-12 13:03:23','','shoulder knee foot 416x278','','inherit','open','closed','','shoulder-knee-foot-416x278','','','2019-11-12 13:03:23','2019-11-12 13:03:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/11/shoulder-knee-foot-416x278-1.jpg',0,'attachment','image/jpeg',0),(18628,3,'2019-11-18 17:56:06','2019-11-18 17:56:06','<h2><span class=\"TextRun SCXW80803991 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW80803991 BCX8\">Are Your Clients Really Dealing with Tight Hip Flexors or an Anterior Pelvic Tilt?</span></span><span class=\"EOP SCXW80803991 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">It\'s a common narrative: hours spent at a desk, followed by complaints of tight hip flexors and an anterior pelvic tilt. But before we jump to conclusions, let\'s challenge two misconceptions surrounding hip flexors.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">The Problems:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Who determines the ideal pelvic posture when we\'re all built differently?</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Rarely do we observe a positive Modified Thomas Test on range.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<span data-contrast=\"auto\">While these issues exist, it\'s crucial to explore other factors before making assumptions about our clients\' conditions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Understanding Anterior Tilt:</h3>\r\n<span data-contrast=\"auto\">Anterior tilt isn\'t a diagnosis; it\'s a description of pelvic position relative to anatomical neutral. It occurs when the front hip bones (ASIS) are lower than the back ones (PSIS). But is it \"wrong\" for everyone?</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Assessing Hip Flexors:</h3>\r\n<span data-contrast=\"auto\">Let\'s dive into the anatomy of hip flexors. These muscles, including the Psoas Major and others, play a crucial role in hip flexion. However, blaming tight hip flexors for an anterior tilt isn\'t always accurate.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>The Modified Thomas Test:</h3>\r\n<span data-contrast=\"auto\">To assess hip flexor function, we employ the Modified Thomas Test. This updated version fixes the pelvis at a neutral position, allowing for more precise measurements.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h4><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span><b><span data-contrast=\"auto\">How to Conduct the Test:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span></h4>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Support the client supine, with one leg hanging freely off the table.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Fix the pelvis in a neutral position.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Measure the drop of the hanging leg with precise bony landmarks.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"4\" data-aria-level=\"1\"><span data-contrast=\"auto\">Repeat on both sides for comparison.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<h3>Interpreting the Results:</h3>\r\n<span data-contrast=\"auto\">A good measurement should consider symmetry between both sides. An asymmetry doesn\'t necessarily mean tight hip flexors; other factors may be at play.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Addressing Hip Flexor Dysfunction:</h3>\r\n<span data-contrast=\"auto\">If dysfunction is identified, it\'s crucial to address it effectively. Rather than solely focusing on stretching, consider techniques like Muscle Energy Techniques (MET) and specific strength exercises.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Conclusion:<span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span></h3>\r\n<span data-contrast=\"auto\">Understanding the Modified Thomas Test provides valuable insights into hip flexor function. By assessing accurately and addressing dysfunction effectively, we can help our clients move better and more freely.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Ready to Enhance Your Skills?</h3>\r\n<span data-contrast=\"auto\">If you\'re eager to integrate the Biomechanics Coach System into your practice, click </span><a href=\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> to learn more!</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: left;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\r\nContact us <a href=\"mailto:info@biomechanicseducation.com\">here</a> to find out more.\r\n\r\n<img class=\"aligncenter wp-image-10836 size-full\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png\" alt=\"\" width=\"1225\" height=\"612\" />','Debunking the Tight Hip Flexor Myth: Understanding the Modified Thomas Test','','publish','closed','closed','','the-tight-hip-flexor-misconception-modified-thomas-test','','','2025-01-20 16:01:57','2025-01-20 16:01:57','',0,'https://www.biomechanicseducation.com/?p=18628',0,'post','',0),(18633,0,'2019-11-18 16:54:21','2019-11-18 16:54:21','','Hip Flexors - Are they actually tight_','','inherit','open','closed','','hip-flexors-are-they-actually-tight_','','','2024-09-19 15:13:05','2024-09-19 15:13:05','',18628,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Hip-Flexors-Are-they-actually-tight_-1.png',0,'attachment','image/png',0),(18634,0,'2019-11-18 16:55:46','2019-11-18 16:55:46','','Modified Thomas Test - Biomechanics Education','','inherit','open','closed','','modified-thomas-test-biomechanics-education','','','2019-11-18 16:55:46','2019-11-18 16:55:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Modified-Thomas-Test-Biomechanics-Education-1.jpeg',0,'attachment','image/jpeg',0),(18735,3,'2019-11-25 13:08:08','2019-11-25 13:08:08','<h2><b>iMoveFreely For Life - Your Guide For Clients</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are moving less, feeling more aches &amp; pains, struggling with recurring injures &amp; feeling stressed much of the time.</span>\n\n<span style=\"font-weight: 400;\">While we know that exercise comes as a recommended activity, many consider ‘exercising’ is something to be done at the local gym, leisure centre or village hall class. </span>\n\n<span style=\"font-weight: 400;\">With that said we are starting to appreciate the value of movement improvement techniques &amp; not just simply having aesthetic goals or a sporting task to dictate their ‘exercise’ routine. However there is an easier was to move well &amp; move more. </span>\n\n<span style=\"font-weight: 400;\">One problem can be a lack of time, another barrier might be that they just don\'t enjoy \'exercising\' even though they know they feel better afterwards &amp; then there is the fact many just aren\'t aware of how simple it can be to improve movement frequency &amp; quality.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So we need to make it clear &amp; simple for our clients…by simply adding one thing at a time regularly &amp; consistently this can result in.....burning more NEAT Calories!</span>\n\n*Non Exercise Activity Thermogenisis - basically the calories you burn from just moving as oppose to specifically \'exercising\'\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">More energy</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Less pain </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Less fatigue</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Less stress</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Improved mental health </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Improved heart health</span></li>\n</ul>\n<span style=\"font-weight: 400;\">......to name a few!</span>\n\n<span style=\"font-weight: 400;\">Therefore this blog aims to offer insights, ideas &amp; suggestions that we can offer to support those who just don\'t have time, don\'t like \'exercise\' or struggle to be consistent. </span>\n\n&nbsp;\n<h2><b>Tip 1 - Digital de-clutter</b></h2>\n<span style=\"font-weight: 400;\">Encourage clients to consider time limits which can now actually be set into iPhones! </span>\n\nSwitch OFF all alerts &amp; set times when you will allow yourself 20-30 mins, maybe morning &amp; evening, to catch up on social stuff\n\n<span style=\"font-weight: 400;\">Scrolling through instagram reels or Facebook for example can literally suck time away in a vacuum that will never be regained!</span>\n\nAsk your clients how they feel about this, ask them what they think they could do differently.\n\n&nbsp;\n<h2><b>Tip 2 - Walk more</b></h2>\n<span style=\"font-weight: 400;\">Walking at every opportunity….this has got to be one of the easiest things to start doing to add to the *NEAT calorie count!</span>\n\nYou may, or may not, already know that 10,000 steps a day should be the goal - no matter when, how fast or even in several periods throughout the day rather than one big long walk.\n\n<span style=\"font-weight: 400;\">Very often we form habits to make ‘life easier’ even though it reduces movement opportunities. </span>\n\nAsk your client if they can think of an opportunity to add extra walking or steps into each day, a little each day &amp; consistently = a big difference over time!\n\n&nbsp;\n<h2><b>Tip 3 - Wriggle &amp; fidget</b></h2>\n<span style=\"font-weight: 400;\">It’s good to wriggle, fidget &amp; alter position regularly while sitting for achieving extra *NEAT calorie burn. Yet we are conditioned from a young age to sit still at school or college. </span>\n\n<span style=\"font-weight: 400;\">If clients are going to sit for long periods ask them to alter their position frequently, maybe using a reminder alert from a device every hour. The alteration doesn\'t need to be dramatic, maybe just have a variety of sitting height options. Foot stools, chairs, boxes to place the computer on so you can stand for a bit &amp; maybe a kneeling mat.</span>\n\nMaybe ask the client how they might feel about sitting on the floor for a period of time in the evenings. This is less \'comfortable\' and therefore increases the desire to fidget &amp; wriggle more.\n\nWhy not ask your clients whether they might try spending time on the floor &amp; if they have a foam roller or tennis ball they could use that to massage their buttocks, thighs or calves even while catching up on their favourite TV programme.\n\n&nbsp;\n<h2><b>Tip 4 - Cook from scratch</b></h2>\n<span style=\"font-weight: 400;\">Actually cooking from scratch has 2 fabulous health benefits for clients! </span>\n\n<span style=\"font-weight: 400;\">No packets or tins means not only are they going to eat healthier but chances are they will need to chop, slice &amp; peel more too which adds to their *NEAT calorie count yet again! </span>\n\nGetting others involved makes for quite a social event in the kitchen &amp; possible even some real quality time too!\n\nAsk your clients how they feel about this\n<h2></h2>\n<h2><b>Tip 5 - Grow your own veg</b></h2>\n<span style=\"font-weight: 400;\">Growing our own veg helps contribute even more to points on Tip No 4 &amp; 1!</span>\n\n4. Tasty fresh produce AND more moves during gardening!\n\n1.  Less screen time too!\n\n&nbsp;\n<h2><b>Tip 6 - Cycle</b></h2>\n<span style=\"font-weight: 400;\">Cycling instead of drive might be an alternative to walking when the distance is longer!</span>\n\nIt also reduces pollution &amp; gives an opportunity to soak up that all important Vitamin D too!\n\n&nbsp;\n<h2><b>Tip 7 - Ditch the TV</b></h2>\n<span style=\"font-weight: 400;\">Ditch the TV...YES sell it! This is a tough one for many but only because of our cultures conditioning!</span>\n\n<span style=\"font-weight: 400;\">Selling the TV might also improve relationships because we connect &amp; talk more without them! </span>\n\n<span style=\"font-weight: 400;\">And could save a fortune on broadband bills…!!</span>\n\n&nbsp;\n<h2><b>Tip 8 - Stop saying yes!</b></h2>\n<span style=\"font-weight: 400;\">Try to NOT say yes to everything! </span>\n\n<span style=\"font-weight: 400;\">Ok this might surprise some clients but in this present lifestyle, we are all rushing about doing ‘stuff’ because we can rather than we actually want or need to.</span>\n\n<span style=\"font-weight: 400;\">Talking clients though how to analyse each potential invitation to meet for a coffee &amp; seriously consider would it be more beneficial to say no &amp; exercise instead!? </span>\n\n<span style=\"font-weight: 400;\">Or what about suggesting a workout instead of coffee?</span>\n\n&nbsp;\n<h2><b>Tip 9 - Smile more &amp; a lot</b></h2>\n<span style=\"font-weight: 400;\">Smile more - ever heard of face yoga?</span>\n\nThere are lots of tiny muscles in our faces that show the expressions we use the most.\n\nLaughter lines are a joy\n\n<span style=\"font-weight: 400;\">Even just the act of smiling helps your face and body into a posture that could help improve our psychology. </span>\n\nWhy not try it now......go on...SMILE...keeping smiling....keep smiling .....how does it make you feel?\n\nWhy not pass it on to the next person you see?\n\n&nbsp;\n<h2><b>Tip 10 - Play</b></h2>\n<span style=\"font-weight: 400;\">Take a ball to the park, and go and just play, play games with kids or friends.</span>\n\n<span style=\"font-weight: 400;\">So simple but suggest they swap a tv night or afternoon for this once a week &amp; see what happens! </span>\n\n&nbsp;\n<h2><b>Tip 11 - Hoovering</b></h2>\n<span style=\"font-weight: 400;\">Enjoying the hoovering as it’s an excuse to move can also alter our perceptions of daily movement. </span>\n\n<span style=\"font-weight: 400;\">Ask clients how they would feel about considering hoovering as an excuse to move, or maybe sweeping up instead &amp; how about vigorously cleaning windows!</span>\n\n&nbsp;\n<h2><b>Tip 12 - Wash the car</b></h2>\n<span style=\"font-weight: 400;\">Washing the car - same as above!!</span>\n\n&nbsp;\n<h2>Summary</h2>\n<span style=\"font-weight: 400;\">Why do any of these……?</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Saves money</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Moves you more </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Saves time </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Makes better use of time </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Is soup for the soul </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Makes others feel good </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Makes you feel good </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Gives you a healthier life all round </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Without taking up EXTRA time…...mostly</span></li>\n</ul>\n&nbsp;\n<h3><b>Tasks For Your Clients </b></h3>\n<span style=\"font-weight: 400;\">In fact ask your client to grab a pen &amp; ask them to take a moment to imagine they have literally all the money they need - £10million</span>\n\n<span style=\"font-weight: 400;\">Now explain to them to imagine they have had it for some time, they did the big holiday, bought a car, nice house etc </span>\n\n<span style=\"font-weight: 400;\">Now ask them to….write HONESTLY…., exactly what their perfect day would go like...</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What time would they wake?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Where would they be??</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Who with?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What would they wear?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What would they do?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What makes them feel blissfully happy more than anything else?</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now show them that if they are really honest to go back &amp; check how much of it could actually be possible TODAY without a huge amount of money.</span>\n\n&nbsp;\n<h3><b>What Else Can They Do?</b></h3>\n<span style=\"font-weight: 400;\">What else could we help clients do today that can contribute to making them feel happier, fitter, healthier, </span><i><span style=\"font-weight: 400;\">richer</span></i><span style=\"font-weight: 400;\">?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A rich life doesn’t necessarily come from a huge bank account </span>\n\n<span style=\"font-weight: 400;\">A truly rich life comes from great relationships </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If driven solely by money, the emotional drivers are usually missing, financial wealth is less likely to come without emotional drivers as gaining money takes work! Right!?!</span>\n\n&nbsp;\n<h2><b>How Does iMoveFreely Fit In?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">I think we can all agree that a quality in life would include an absence of pain and the freedom to move freely and confidently. How many people wouldn’t wish for this? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">And what if I said people could work towards that in just a couple minutes each day? Potentially not needing ANY extra time at all! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the roles we have as trainers/coaches is to educate, facilitate and empower our clients on how simple this can be for so many that are living with chronic pain, recurring injuries or physical limitations. We have a duty of care to show others just how simple it can be. We are exactly that, facilitators offering our clients simple solutions that fit with their beliefs &amp; goals to support their choice only when they are ready, in altering their daily habits for habits that bring an improved quality of life.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The reason iMoveFreely is such a perfect fit is that no gym or equipment or even much energy for these fabulous special techniques is required to contribute to an improved quality of life.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Clients who choose to continue the lifestyles they lead (desk-bound, sedentary etc) will stil benefit from iMoveFreely techniques being introduced into their daily routines. </span>\n\n<span style=\"font-weight: 400;\">However, the techniques also work perfectly as a warm-up for our training sessions. </span>\n\n<span style=\"font-weight: 400;\">iMoveFreely is a series of special techniques we can demonstrate to our clients both online and in person, so they fit easily into our business model and also our clients daily life to initiate movement nourishment &amp; improvement.</span>\n\n&nbsp;\n<h2><b>How to fit iMoveFreely into your training programme.....</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). Taking Advantage of Recovery Time </span>\n\n<span style=\"font-weight: 400;\">One of the simplest methods if your clients are time restricted is to teach clients to perform iMoveFreely during recovery or between sets of strength training. </span>\n\n&nbsp;\n<h3><b>Example One: When Squatting</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Perform 4 Sign once per side (1 rep of 20% for 20 seconds)</span>\n\n<span style=\"font-weight: 400;\">Do your squat set (alter weights of necessary) </span>\n\n<span style=\"font-weight: 400;\">Repeat 4 Sign each side as before </span>\n\n<span style=\"font-weight: 400;\">Repeat for every set </span>\n<ol>\n 	<li><span style=\"font-weight: 400;\"> S. If you do more than 4 Sets of squats, do more sets of 4 Sign!</span></li>\n</ol>\n&nbsp;\n<h3><b>Example Two: When Deadlifting</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Perform pec min anti spasm  (1 rep of 20% for 20 seconds)</span>\n\n<span style=\"font-weight: 400;\">Perform banded scapular retraction off the rack </span>\n\n<span style=\"font-weight: 400;\">Perform deadlifts with a focus on scapular &amp; stiffness in spine </span>\n\n<span style=\"font-weight: 400;\">Repeat </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">2). Take Advantage of Sitting</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">LOVE this one! </span>\n\n<span style=\"font-weight: 400;\">Every single time your client sits down, on a bus, train, waiting for someone, in a meeting, cinema ....etc....teach them to do the relevant muscle energy techniques. </span>\n\n<span style=\"font-weight: 400;\">The beauty of iMoveFreely is that much of it can be done in a chair, so if your client finds they are having to sit for any amount of time they can DO iMoveFreely!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">3). Take Advantage of TV Time or Evenings </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is nothing wrong with a little downtime and for most that\'s going to be in the evening, maybe with the TV or with family.</span><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Life is what it is today so rather than expecting clients to fit in TIME to do iMoveFreely at a set time of the day, separate to the daily routine see how many ways you can teach them to combine them into things they are already doing.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">No excuses for NOT nourishing movement!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Be Happy </span>\n\n<span style=\"font-weight: 400;\">Move Freely</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h1 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h1>\n<h1 style=\"text-align: center;\">Ready for a game changing face to face workshop?</h1>\n<h3 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/#tab-description\" target=\"_blank\" rel=\"noopener\">If You’re Ready To Add The iMoveFreely Instructor Reconditioning Programme To Your Skillset Then Click Here!</a></h3>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a>\n\n&nbsp;','12 Simple Tips For Feeling Happier & Healthier','','draft','closed','closed','','12-simple-tips-for-feeling-happier-healthier-client-guide','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=18735',0,'post','',0),(18736,0,'2019-11-25 12:51:51','2019-11-25 12:51:51','','iMoveFreely - 12 tips for a healthier, happier life','','inherit','open','closed','','imovefreely-12-tips-for-a-healthier-happier-life','','','2019-11-25 12:51:51','2019-11-25 12:51:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/11/iMoveFreely-12-tips-for-a-healthier-happier-life-1.png',0,'attachment','image/png',0),(18855,3,'2019-12-09 15:30:31','2019-12-09 15:30:31','<h2><b>The SMART Question Challenge </b></h2>\n<span style=\"font-weight: 400;\">Today I have a challenge for you, but first we need to set some foundations…</span>\n\n<span style=\"font-weight: 400;\">A lot of coaches, I find are very curious… they like to explore, challenge themselves, learn new things and with that comes a lot of questioning.</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Do you ask a lot of questions?</span></li>\n 	<li><span style=\"font-weight: 400;\">Do you get into debates online about anatomy or exercises?</span></li>\n 	<li><span style=\"font-weight: 400;\">Maybe you are in a Facebook group that is set up to answer your questions, or for you to find answers? </span></li>\n 	<li><span style=\"font-weight: 400;\">Do you get frustrated by some of the answers you get?</span></li>\n 	<li><span style=\"font-weight: 400;\">Have you ever considered that the answer you get may in fact highlight a problem with the quality of your question?</span></li>\n</ul>\n<span style=\"font-weight: 400;\">This isn\'t just my opinion, you will here my buddy, Ben Coomber of the BTN Academy, also advocating the practice and use of great questions for a better chance of getting good quality answers.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did your parents ever give you a stupid answer to a question, full well knowing what they were doing and then follow it up with…</span>\n<blockquote><span style=\"font-weight: 400;\"> “</span><i><span style=\"font-weight: 400;\">Ask a stupid question, get a stupid answer?”</span></i></blockquote>\n&nbsp;\n\n<span style=\"font-weight: 400;\">That was an early teaching moment for lots of us to make sure we asked the right question.</span>\n\n<span style=\"font-weight: 400;\">The question I would like to ask you is <a href=\"https://coachfoundation.com/blog/effective-coaching-techniques/\">are your questions S.M.A.R.T</a>?</span>\n\n&nbsp;\n<h3><b>Are You Asking SMART Questions?</b></h3>\n<span style=\"font-weight: 400;\">Yup I just made that a thing or maybe someone else did, in fact, use the SMART acronym in relation to great questioning &amp; I just </span><i><span style=\"font-weight: 400;\">thought </span></i><span style=\"font-weight: 400;\">I made it up...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here we will discuss and challenge the vague nature of many common questions since they </span>\n<ol>\n 	<li><span style=\"font-weight: 400;\">Do not equip one with enough information to respond with clarity </span></li>\n 	<li><span style=\"font-weight: 400;\">Leave room for ambiguity and a response that is coming from a different mindset to that of the person asking the question - which commonly leads to misinterpretation.</span></li>\n</ol>\n&nbsp;\n<h3><b>Cognitively Biased?</b><span style=\"font-weight: 400;\">  </span></h3>\n<span style=\"font-weight: 400;\">The most common question I get asked is </span><i><span style=\"font-weight: 400;\">“what\'s the best way to squat?”. </span></i>\n\n<span style=\"font-weight: 400;\">Well I am unable to answer this with such a poor quality of question, its far too ambiguous. Much more information is required to gain a decent response. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When I get asked this (which is a lot) my reply is always </span><i><span style=\"font-weight: 400;\">“why are you asking?</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The information needed to be in a position to offer a helpful reply is:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Goal</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Level/Experience</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Ability</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Injury History</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Mindset</span></li>\n</ul>\n<span style=\"font-weight: 400;\">Etc etc</span>\n\n<span style=\"font-weight: 400;\">Once this information is gathered a half decent reply is more likely to be coming your way!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet learners, and even my social media ‘friends’, often ask me ambiguous questions like</span><i><span style=\"font-weight: 400;\"> “what’s your opinion on…?”. </span></i>\n\n<span style=\"font-weight: 400;\">The very nature of this question fascinates me since why would my </span><i><span style=\"font-weight: 400;\">opinion</span></i><span style=\"font-weight: 400;\"> matter? The questions are more often than not technical in nature so a solution based response is in fact what most people are really after...my <em>opinion</em> is irrelevant!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all have a biased view of the world and if someone asks your </span><i><span style=\"font-weight: 400;\">opinion</span></i><span style=\"font-weight: 400;\"> on squatting for example it leaves far too much information out.</span>\n\n<span style=\"font-weight: 400;\">For example…...</span>\n\n&nbsp;\n<h3><b><i>Are Squats Dangerous?</i></b></h3>\n<span style=\"font-weight: 400;\">Imagine an article with this title. In fact, it wouldn\'t be uncommon in today\'s clickbait society. A reader might be thinking </span><i><span style=\"font-weight: 400;\">squats</span></i><span style=\"font-weight: 400;\"> are bad for us after reading an article about risk during squats. Yet the article was in fact related to the ‘overhead’ squat specifically for example. If the author didn\'t communicate well the specific style of squat or if the reader only read a portion of (or just scanned) the article this creates a room for misinterpretation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another reader might be left thinking of a bodyweight squat and develop a fear of squatting in general, even squatting down to her kids.</span>\n\n<span style=\"font-weight: 400;\">Yet these are very different variables being considered. The style or type of squat must be clarified since there are far to many variations of squatting to simply suggest... all squats are dangerous </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Asking great questions gives you a much better chance of getting a really good answer. </span>\n\n<span style=\"font-weight: 400;\">Questions that gain information that are:</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Specific - what type of squat? </span></li>\n 	<li><span style=\"font-weight: 400;\">Measurable - the range of motion?</span></li>\n 	<li><span style=\"font-weight: 400;\">Achievable - individual limitations? knowledge/language </span></li>\n 	<li><span style=\"font-weight: 400;\">Realistic - does it fit the person and the goal?</span></li>\n 	<li><span style=\"font-weight: 400;\">Timely - when do you need to know by? </span></li>\n</ul>\n<span style=\"font-weight: 400;\">This then gives more clarity to the subject being questioned like the example in the article </span><i><span style=\"font-weight: 400;\">Are Squats Dangerous?</span></i>\n\n&nbsp;\n<h3><b>Questions (And Answers) On Social Media</b></h3>\n<span style=\"font-weight: 400;\">Remember social media isn’t really monitored that heavily for ‘quality’ of even authenticity of the publisher/s… that’s YOU &amp; Me too by the way! So we are left to post pretty much whatever we want AND to choose who we question and who we choose to believe.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A great starting point is to ask yourself these questions first…</span>\n\n&nbsp;\n<ol>\n 	<li><span style=\"font-weight: 400;\">Why you’re asking? </span></li>\n 	<li><span style=\"font-weight: 400;\">Who are you asking?</span></li>\n 	<li><span style=\"font-weight: 400;\">The detail behind it the point of the question</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you want an opinion on something that someone has never experienced they surely cannot answer with integrity, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The key to great questioning is clarity in what you’re really trying to find out.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Poor Questioning</span>\n\n<i><span style=\"font-weight: 400;\">What’s your opinion….</span></i>\n\n<i><span style=\"font-weight: 400;\">What do you think about…</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These are often too open &amp; flaky </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Great Questioning:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Defines the problem </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Explains what it is your trying to find the answer to and for</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Keeps it SMART.</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This allows for a clear response from them since the goal is clearer</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are giving your opinion or your thoughts, or even presenting research to back up your argument… before you say anything….. ask yourself…Have I FULLY understood the question? Do I know EXACTLY what they are asking? If the answer is no, then I suggest responding with a question first to clarify their question and help them ask a better question. You might notice this is something I do a lot, and even more so on our courses.</span>\n\n&nbsp;\n<h2><b>SMART Question Challenge </b></h2>\n<span style=\"font-weight: 400;\">If you had just one question opportunity with the person you admire &amp; respect the most in your industry, what would it be &amp; to whom??</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Mine would be :</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To Professor Stuart McGill - \"If money wasn\'t an issue who would be your favourite clients type to train / coach exercise to and why?\"</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a>','How To Ask SMART Questions, To Get A Great Answer','','draft','closed','closed','','how-to-ask-smart-questions-to-get-a-great-answer','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=18855',0,'post','',0),(18856,0,'2019-12-05 09:01:47','2019-12-05 09:01:47','','Asking SMART Questions - Biomechanics Coaching','','inherit','open','closed','','asking-smart-questions-biomechanics-coaching','','','2025-03-05 11:28:28','2025-03-05 11:28:28','',42438,'https://biomechanicseducation.com/wp-content/uploads/2019/12/Asking-SMART-Questions-Biomechanics-Coaching-1.png',0,'attachment','image/png',0),(19072,3,'2019-12-18 17:08:13','2019-12-18 17:08:13','<span style=\"font-weight: 400;\">As Personal Trainers, we are well educated in HOW to teach exercises. There are many courses available to learn this critical skill, however I bet sometimes you feel anxious about whether you chose the right exercises for some of those tricky clients, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you have the tools to assess your clients to identify which are the best gym, body weight or free weight exercises to perform relative to their personal biomechanical needs? And when the client has low grade back pain for example, do you feel confident about training them safely? Maybe you are looking at some clients and wondering why on earth they move that way or which part of their body is the limiting one?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you feel you need a simple system to fill this critical gap and answer some of those common questions?</span>\n\n&nbsp;\n<h2><b>The Health Continuum</b></h2>\n<span style=\"font-weight: 400;\">First, we need to identify where our clients are on a ‘health continuum’, which is a scale from, potentially illness/injury to wellness and on to higher performance over time. All of our clients will be somewhere on this scale and we need to find out where they are before we can prescribe their conditioning exercises. Most exercises are suitable to most people; the problem is that invariably they can be prescribed at the </span><i><span style=\"font-weight: 400;\">wrong time</span></i><span style=\"font-weight: 400;\">. For example, lunges can help some people and hurt others. </span>\n\n<span style=\"font-weight: 400;\">If someone has a rotated pelvis and a functional leg length discrepancy with associated muscle spasm in their hips, then lunges will most likely not be good for them….at the time. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If they are functioning correctly around the pelvis, then lunges shouldn’t encourage injury or pain. That is one simple example demonstrating why some of your clients can do some of the exercises you prescribe, but others can’t.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To be able to identify where our clients are on the health continuum, we need to perform an assessment of their body or an intrinsic biomechanical assessment. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These assessments can be super simple to perform and can take as little as 10 minutes. Once we know where they are on the health continuum then we can progress them through a sequence of exercise progressions.</span>\n\n&nbsp;\n<h1><b>The Biomechanics Coach&#x2122; System</b></h1>\n<span style=\"font-weight: 400;\">In the Biomechanics Coach&#x2122; system, these progressions start by improving our clients\' inner system by ensuring their fundamental pelvic and spinal mechanics are ‘normalised’ and level to provide the foundation for normal movement. </span>\n\n&nbsp;\n<h2><b>Phase 1: Preparation &amp; Capacity (or Before The Core) </b></h2>\n<span style=\"font-weight: 400;\">In this first phase, any muscle imbalances are corrected with simple muscle energy techniques and tight nerves are addressed using nerve mobilisations. This phase can often be referred to as \'Before the Core\', because typically people will start their early exercise programmes with core stability-type exercises and they are simply not ready. That is why (core training) </span><i><span style=\"font-weight: 400;\">helps some people and hurts others (McGill) </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Many PT’s are recognising they don’t want to stabilise someone in a biomechanically incorrect position. So if we prepare their body first giving it some capacity back, then train stability and control it would make sense, right? </span>\n\n<span style=\"font-weight: 400;\">If we are not careful all we are doing is training people to compensate for their biomechanical problems rather than training correct movement patterns.</span>\n\n&nbsp;\n<h2><b>Phase 2: Stability &amp; Control</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So, once the preparation and capacity phase has been completed the client is then progressed to the next stage which gives them the ability to consolidate and learn new motor programming strategies in this stability and control phase. Here they are progressed through a series of isolated stability exercises and then work towards more functional stability patterns, in effect reprogramming their reflex core control.</span>\n\n&nbsp;\n<h2><b>Phase 3: Function &amp; Performance</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The final phase is where we teach them to use their new motor programming strategies in a more functional way and then progress on to functional velocity training. Here they work towards the functional patterns, velocities and tissue tolerances that are relevant to their ‘purpose’.</span>\n\n&nbsp;\n<h3><b>Philosophy</b></h3>\n<span style=\"font-weight: 400;\">We should always be challenging the latest \'current\' thinking. Just because something new, like functional training and perhaps Pilates comes along to the industry, does that mean all the work you’re doing at the moment doesn’t work anymore? Of course not, it just means we have something else to integrate into what we are already doing, not necessarily discredit them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The industry is often seduced by the \'next big thing\', but invariably this is simply another way of achieving certain targets for your clients, not necessarily the ONLY way and it certainly doesn’t mean you should be forgetting what you were doing - unless it’s been directly disproven. Nothing should ever be done in isolation, as the exercise model suggests, a series of progressions is the most effective way to progress exercise.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should focus our attention to real issues, and using all the proven methodologies available to us, answer questions like:</span>\n\n&nbsp;\n<ul>\n 	<li><span style=\"font-weight: 400;\">   How do I know which exercise to give to my clients – how do I know which will help them and which will hurt them?</span></li>\n 	<li><span style=\"font-weight: 400;\">   Apart from increasing the number of reps and sets, how should I be progressing my client’s exercise programmes?</span></li>\n 	<li><span style=\"font-weight: 400;\">   Why choose one particular exercise over another that seemingly does the same thing?</span></li>\n 	<li><span style=\"font-weight: 400;\">   Should I be using gym balls in their training and if so, when?</span></li>\n 	<li><span style=\"font-weight: 400;\">  Should I be using machines anymore? Are they ‘functional’? Does that matter?</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is often difficult to answer these questions for all our clients with any degree of honesty and accuracy with the assessments that are in place at the moment. Until the industry’s understanding of intrinsic biomechanics and its implications to exercise prescription is better understood our exercise prescription will not be as good or as safe as it should be.</span>\n\n&nbsp;\n\nIf you would like to find out more about the <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Biomechanics Coach Diploma, then click here</a>, enter your details and let\'s get on a call to see if its right for you. Or if you would like to dip your toe in and start with a <a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-taster/\">1-day workshop you can check those out by clicking here</a>.\n\n&nbsp;','Intrinsic Biomechanics for Personal Trainers - Knowing The HOW & The WHY For Exercise Prescription','','draft','closed','closed','','intrinsic-biomechanics-for-personal-trainers','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=19072',0,'post','',2),(19073,0,'2019-12-18 15:47:06','2019-12-18 15:47:06','','Intrinsic Biomechanics For Personal Trainers - 3 Phase System For Health, Function & Performance','','inherit','open','closed','','intrinsic-biomechanics-for-personal-trainers-3-phase-system-for-health-function-performance','','','2019-12-18 15:47:06','2019-12-18 15:47:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/12/Intrinsic-Biomechanics-For-Personal-Trainers-3-Phase-System-For-Health-Function-Performance-1.png',0,'attachment','image/png',0),(19124,3,'2019-12-23 17:03:28','2019-12-23 17:03:28','<h2>Reflect, Celebrate &amp; Plan</h2>\n<span style=\"font-weight: 400;\">This is such a great time of year to reflect on what we have done, achieved and learned to then look forwards and plan our next 12 months.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I think as trainers and coaches we spend all of our time helping others, telling them to hold themselves accountable, track their results and celebrate their wins…. And then we fail to follow our own advice. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are self employed or have your own studio, it’s so easy to achieve goals and barely give them any acknowledgement as you fly onto the next one! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I know that’s not just me… right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So as we approach the end of 2019 I want to encourage YOU to take some time to reflect on the year. Look at what you have achieved.. Write it down and then celebrate the wins. Acknowledge the wins, give yourself a pat on the back. You are building a business and helping lots of people along the way…. Be proud of that!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we don’t celebrate the wins, then why are we doing this?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I thought I would share with you the things I am most proud of that happened for Biomechanics Education in 2019. One, because it holds me accountable to doing the exercise. Two, because you are a big part of this journey. Whether you are a Biomechanics Coach, in training to become one, or someone who likes to come on here and absorb the content, you <em>make</em> Biomechanics Education what it is. And so it only feels right to share the journey we have had with you!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here is the Biomechanics Education 2019 Year In Review:</span>\n\n<span style=\"font-weight: 400;\">Maybe you could try our model of looking at each month’s highlights….</span>\n\n&nbsp;\n<h3><strong>January</strong></h3>\n<span style=\"font-weight: 400;\">At the beginning of 2019 we had just moved into our brand new premises and were super excited about having a ‘fixed’ abode partnering with the awesome Aspire4Fitness Health Club/Gym! </span>\n\n<span style=\"font-weight: 400;\">Their style being right up our street!</span>\n\n&nbsp;\n<h3><strong>February </strong></h3>\n<span style=\"font-weight: 400;\">Saw the start of our ¼ 1 Diplomas in Biomechanics Coaching - NOW with both ELCAS registered provider status, meaning our courses are now funded by the M.O.D </span>\n\n<span style=\"font-weight: 400;\">AND</span>\n\n<span style=\"font-weight: 400;\">We got the YMCA awarding organisations backing to offer the L4 LBP qualification within our Diploma in Biomechanics Coaching for those who have an Exercise Referral Qualification </span>\n\n<span style=\"font-weight: 400;\">AND </span>\n\n<span style=\"font-weight: 400;\">We had our 6th annual conference and the 2nd Kaizen Project with lots of inspiring, knowledgeable and interesting lectures from industry leaders and celebrities like Eddie Hall, Jonathan Broom Edwards, Martin Haines, Ben Coomber, Mike Grice and Chris Wright….BTW - SAVE THE DATE - 2020 Kaizen Project is Saturday 10th October - see next week’s Juicemail!</span>\n\n&nbsp;\n<h3><strong>March</strong></h3>\n<span style=\"font-weight: 400;\">This month was our favourite annual event that is held in Blackpool. The International Fitness Showcase where we exhibit and lecture within the Spinning Conference alongside our partners at Athleticum &amp; Spinning. Such good fun &amp; such a great response to our 6 x lectures &amp; workshops! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Master Trainer Apprenticeship was well underway this month too! The team having done their AET training were now getting stuck into their assessor training. I cannot tell you how excited we are about this team of FABULOUS teachers!</span>\n\n&nbsp;\n<h3><strong>April </strong></h3>\n<span style=\"font-weight: 400;\">Belfast Diploma in Biomechanics Coaching kicked off &amp; our partnership with the Platinum Training Institute based in the Queen’s Belfast University, and was truly sealed! </span>\n\n<span style=\"font-weight: 400;\">With their 2020 plans to include our training programme within their Personal Trainer qualification! </span>\n\n&nbsp;\n<h3><strong>May</strong></h3>\n<span style=\"font-weight: 400;\">This month we launched our brand new <a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">Running Biomechanics Workshop</a></span><span style=\"font-weight: 400;\"> to a large group of trainers &amp; coaches with some AWESOME feedback. Written by world leader in Biomechanics, Martin Haines, this 1 day workshop is full of evidence based information - you missed it? Oh don’t worry, there are more scheduled for 2020</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also a highlight for this month for me was delivering a workshop at Mark Laws facility with a fantastic crowd! I have a lot of time for this man and so it was an honour to be invited over. </span>\n\n&nbsp;\n<h3><strong>June</strong></h3>\n<span style=\"font-weight: 400;\">While already heavily involved with the brilliant <a href=\"https://herspirit.co.uk/\" target=\"_blank\" rel=\"noopener noreferrer\">HERSPSIRIT app</a></span><span style=\"font-weight: 400;\">, by contributing free videos of iMoveFreely techniques you can apply at home….yes, get the app for more….all the HS coaches paid a visit to Earnst &amp; Young in London. This was a coaching celebration event alongside Coaching UK to encourage movement &amp; healthy choices via any means available - like the HS App. </span>\n\n<span style=\"font-weight: 400;\">However additionally this was where I became completely mesmerized by <a href=\"https://www.a-speakers.com/speakers/frank-dick-obe/?utm_source=google&amp;utm_medium=cpc&amp;utm_term=%2B%5Bfrank%20dick%20obe%5D%20%2B%5Bspeaker%5D&amp;gclid=CjwKCAiA__HvBRACEiwAbViuU6pRz4zPALRjy2w55HESBsERrg5zGj1sBg6jra2QVHFn7uQCHkQzWRoCxBcQAvD_BwE\" target=\"_blank\" rel=\"noopener noreferrer\">Frank Dick OBE </a></span><span style=\"font-weight: 400;\">, chief GB coach some years ago. I was SO captivated &amp; enthralled by his talk I booked him for this years Kaizen Project - yes he is our keynote speaker!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This month also saw us finally manage to arrange a meeting with <a href=\"http://www.canvastgo.co.uk/ftscotland/\" target=\"_blank\" rel=\"noopener noreferrer\">Fitness Education Scotland’s </a></span><span style=\"font-weight: 400;\"> founder, Paul Garvie. We have for some time been looking to partner up and work alongside each other in delivering high standards of health and fitness education. WATCH THIS SPACE!</span>\n\n&nbsp;\n<h3><strong>July </strong></h3>\n<span style=\"font-weight: 400;\">We are very impressed with the work <a href=\"https://www.cimspa.co.uk/\" target=\"_blank\" rel=\"noopener noreferrer\">CIMSPA</a></span><span style=\"font-weight: 400;\"> are doing to help improve standards in our industry. So I was invited along to contribute to a Pilates standardisation meeting at Sportpark, Loughborough University. WOW! Fascinating to hear 30 educators, employers &amp; industry representatives debating what they feel should make up YOUR industry recognised standard! Lots of passion &amp; disagreement with justifications &amp; well managed by CIMSPA facilitators.</span>\n\n<span style=\"font-weight: 400;\">If you are an employer, you too could come along &amp; offer your thoughts, it’s very interesting &amp; CIMSPA would love to hear from you!</span>\n\n&nbsp;\n\n<a href=\"http://www.fab-fitness.com/\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">Mairi Taylor of FABfitness</span></a><span style=\"font-weight: 400;\"> ran an Aromatouch essential oils workshop at the Biomechanics Education Academy which I strongly recommend! Passion oozes our of her &amp; who doesn\'t love lying down, smelling essential oils for prolonged periods!!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally this month I flew to Cyprus to deliver 2 workshops to 26 wonderful exercise professionals - the only complaint I have about the entire trip was that it was over far too quickly! So going back in 2020 for a Diploma in Biomechanics Coaching! Whoo hoo!!</span>\n\n&nbsp;\n<h3><strong>August</strong></h3>\n<span style=\"font-weight: 400;\">Our link with the Edinburgh Napier University saw our Scotland Diploma in Biomechanics Coaching kick off. A superb group of practitioners who have been such a joy to work with since they formed such a bond they now work together at events! TEAM!</span>\n\n&nbsp;\n<h3><strong>September </strong></h3>\n<span style=\"font-weight: 400;\">Well I pretty much spent this entire month celebrating turning 50yrs of age! </span>\n\n<span style=\"font-weight: 400;\">It’s times like these when you find yourself taking stock of where you have come from, where you are &amp; where you are heading - ALL mine are really great places since the tough times bring lessons, the mellow times peace &amp; the good times a warm heart! </span>\n\n&nbsp;\n<h3><strong>October </strong></h3>\n<span style=\"font-weight: 400;\">We set up another PureGym Roadshow of workshops this month again &amp; after 5 in house workshops around the UK we are looking forward to doing more with this PT group thanks to Nik Hanley!</span>\n\n&nbsp;\n<h3><strong>November</strong></h3>\n<span style=\"font-weight: 400;\">This month I went to assess some Bristol Biomechanics Coach practical exams after Master Trainer, Tom Waldron delivered the entire course single handedly. </span>\n\n<span style=\"font-weight: 400;\">Bursting with pride would be an understatement as I watched every single learner demonstrated superb Biomechanics Coach practical skills - just their case study work to complete now! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also Tom delivered a private Biomechanics Coach Diploma module/workshop in Lewes.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">GREAT JOB TOM!! Thank you x</span>\n\n&nbsp;\n<h3><strong>December</strong></h3>\n<span style=\"font-weight: 400;\">WOW What an end to the year with a meeting at CIMSPA head office in Sportpark, Loughborough University. Alongside Martin Haines, we met with Nick Sellwood, who is the Chartered Status Assessor. </span>\n\n<span style=\"font-weight: 400;\">We discussed the <a href=\"https://www.cimspa.co.uk/chartered-status\" target=\"_blank\" rel=\"noopener noreferrer\">Chartered status</a></span><span style=\"font-weight: 400;\"> at length &amp; I have to say it looks phenomenal. So if you haven’t seen it yet go check it out on the CIMSPA website ASAP! It will dramatically alter the entire industry - come on get on board!</span>\n\n&nbsp;\n<h3><b>Now It’s Your Turn</b></h3>\n<ul>\n 	<li><span style=\"font-weight: 400;\">So how did your 2019 go?</span></li>\n 	<li><span style=\"font-weight: 400;\">Did you achieve all you wanted? (Did you have clear goals of what you wanted?)</span></li>\n 	<li><span style=\"font-weight: 400;\">If not, simply ask yourself why not? </span></li>\n 	<li><span style=\"font-weight: 400;\">What can you do in 2020 to make your come back?</span></li>\n 	<li><span style=\"font-weight: 400;\">How will you be making a difference?</span></li>\n 	<li><span style=\"font-weight: 400;\">How will you make sure your business serves YOU?</span></li>\n 	<li><span style=\"font-weight: 400;\">What training do you plan on attending?</span></li>\n 	<li><span style=\"font-weight: 400;\">What changes are you going to make to personally develop?</span></li>\n 	<li><span style=\"font-weight: 400;\">Who will you look to for help? As a mentor?</span></li>\n 	<li><span style=\"font-weight: 400;\">What excites you?</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Take some time, a few hours ideally, to reflect on 2019 and then create your vision for 2020!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BRING ON 2020, LET’S DO THIS!</span>\n\n&nbsp;\n\nIf one of your goals is to do more CPD, learn a new skill set and be able to serve your clients to an even higher level then I would love to have you on one of our Diplomas or Workshops in 2020.\n\nTo find out what is the best route for you to go down then let\'s have a chat and see where you are at now and what you want to achieve with your coaching.\n\nWe have various payment plans available for our courses, just in case you are concerned about payment... I know Christmas tends to be an expensive time of year, but I would hate for you to miss out on starting one of our diplomas.\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Just click here, fill in your details and let\'s jump on a call.</a>\n\n&nbsp;','2019 A Year In Review For Biomechanics Education','','draft','closed','closed','','2019-a-year-in-review-for-biomechanics-education','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=19124',0,'post','',0),(19125,0,'2019-12-23 16:57:20','2019-12-23 16:57:20','','2019 A Year In Review For Biomechanics Education','','inherit','open','closed','','2019-a-year-in-review-for-biomechanics-education-2','','','2019-12-23 16:57:20','2019-12-23 16:57:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/12/2019-A-Year-In-Review-For-Biomechanics-Education-1.png',0,'attachment','image/png',0),(19203,3,'2019-12-30 11:03:55','2019-12-30 11:03:55','<span style=\"font-weight: 400;\">WOW! Another year ends &amp; this brings opportunities for developing &amp; learning from it as we move into a fresh one!</span>\n\n&nbsp;\n<h2><b>Plan For 2020 </b></h2>\n<span style=\"font-weight: 400;\">How do we create &amp; develop a realistic plan for an entire year when it can often seem completely overwhelming? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We want to do SOOO many things, yet we are already SOOO busy, where do we even start????</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok well, it’s well written that we should always start with the end in mind. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then we can plan backwards, to structure systematically what &amp; when to do things to take us toward the ultimate end goal. Like planning our training for a marathon!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are a series of questions to help you plan forwards from starting backwards…..</span>\n\n&nbsp;\n<h3><b>Question 1: </b><b><i>If you could see into the future to Christmas 2020 what would you like to think your circumstances would be then, that are different to what they are right now?</i></b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe it is to have 10 more clients or 1 new staff member. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe it is to be a Biomechanics Coach or qualify at L4 in something?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe it is move house, own a premises or clinic.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It can be as dramatic or undramatic as you feel, it is all about vision. </span>\n\n<span style=\"font-weight: 400;\">Actually take time out to consider realistically where you would like to be in a years time? Don’t hold back!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I would even go as far as costing it all out. If you want a new house… how much will you have to save each month? Want to take an extra holiday…. How much do you need to save? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember, your business is there to help you create the life you want! But it doesn’t happen by accident. You have to know what you’re aiming for.</span>\n\n&nbsp;\n<h3><b>Question 2: </b><b><i>What steps would it take to achieve that desired goal?</i></b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This takes some time as each &amp; every single step must be laid out very clearly, in timing order so that you can develop a strategy.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you start going through all the things you need or could do to make that goal a reality is where it can very quickly become overwhelming. So what I want you to do is the following…</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Write down ALL the ideas you can think of that will help you get towards your goal. Go crazy… every idea however mad it seems, big or small, anything you want to do… write it down.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Highlight the 3 actions that you think will have the biggest impact on your business.</span></li>\n</ol>\n<span style=\"font-weight: 400;\">We often get so caught up being busy, doing tasks and activities that never actually drastically move the needle. Always remember Paretos law…</span>\n\n&nbsp;\n<h4><b>The 80:20 Rule</b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">80% of your results will come from 20% of your efforts!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So make sure you focus your efforts on the important things first! Work out what you think those things in the 20% are that will generate the 80%!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then take those 3 core goals and let’s break them down into their parts. It’s very rarely one task to complete. It will take a series of tasks and actions… so what are they?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So let’s look at an example. Perhaps you decide that in order to really grow your business you need to hire a member of staff. Perhaps an admin assistant or another coach to work with you.</span>\n\n&nbsp;\n<h4><b>Goal = Get a new member of staff</b></h4>\n<span style=\"font-weight: 400;\">Step 1 - Decide what you want them to contribute, skills, hours, arrangement (consultant or employed) </span>\n\n<span style=\"font-weight: 400;\">Step 2 - Design an advert</span>\n\n<span style=\"font-weight: 400;\">Step 3 - Make advert available to potential professionals </span>\n\n<span style=\"font-weight: 400;\">Step 4 - Create job description </span>\n\n<span style=\"font-weight: 400;\">Step 5 - Arrange interviews </span>\n\n&nbsp;\n<h3><b>Question 3: </b><b><i>Can the steps be slotted into a timeline that you feel is realistic?</i></b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now once you have broken down the 3 core actions, let’s put them on a timeline… a realistic one, but I still like to add a bit of pressure to a job. How often do you have a deadline that’s months away and still you end up doing most of the work 3 days before its due.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Creating deadlines based upon your present and projected schedule. </span>\n\n<span style=\"font-weight: 400;\">For this example of finding a new staff member, if you have decided you want them up &amp; running by xmas 2020, this gives you plenty of time to add the above steps into your year planner. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Step 1 - by Feb</span>\n\n<span style=\"font-weight: 400;\">Step 2 - by Mar</span>\n\n<span style=\"font-weight: 400;\">Step 3 - April-July</span>\n\n<span style=\"font-weight: 400;\">Step 4 - July</span>\n\n<span style=\"font-weight: 400;\">Step 5 - July-Aug</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Etc etc</span>\n\n&nbsp;\n<h3><b>Question 4 - </b><b><i>What is your PLAN B? </i></b></h3>\n<span style=\"font-weight: 400;\">This is a really important one!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What if you cannot find the right person? </span>\n\n<span style=\"font-weight: 400;\">What if this idea changes? </span>\n\n<span style=\"font-weight: 400;\">What does this mean for your business? </span>\n\n<span style=\"font-weight: 400;\">What other ideas do you have to solve your problem?</span>\n\n&nbsp;\n<h3><b>Question 5: </b><b><i>Do I feel this is still the right vision now I have planned it out?</i></b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Challenge everything - over &amp; over again.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You know that’s my philosophy by now, and it includes my own goals and vision. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Every now and again, when people go through this process, they realise that they don’t want a particular goal, or perhaps aren’t willing to do the things it’s going to take to get them there.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Or sometimes, they feel like they could actually accomplish MORE! You see when you break things down, it becomes much more manageable.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Often they realise that getting to their end goal actually isn’t as far away as they feel it is now. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does your vision get you excited?</span>\n\n<span style=\"font-weight: 400;\">Are you excited to get out and attack it next year? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If so…. You’re on the right track!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT… a word of warning… a BIG Goal will cause an element of FEAR! That’s ok! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">That means you are pushing your boundaries, heading out of your comfort zone and leveling up! That’s a good thing!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Don’t be put off by the fear! Acknowledge it and use it!</span>\n\n&nbsp;\n<h3><b>Question 6</b><span style=\"font-weight: 400;\">:</span> <b><i>Are you always conscious of the things you have already achieved?</i></b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Something I learned was to write plans, dreams, visions down &amp; re-visit them. Often we are so lost in the next goal, or vision, that we forget to recognise how successful we already are. Just because your goal posts have changed doesn’t mean you shouldn’t celebrate the previous success!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So let’s celebrate our previous successes this New Years Eve 2019!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have fun!</span>\n\n&nbsp;\n\n&nbsp;\n\nP.S. If one of your goals is to do more CPD, learn a new skill set and be able to serve your clients to an even higher level then I would love to have you on one of our Diplomas or Workshops in 2020.\n\nTo find out what is the best route for you to go down then let’s have a chat and see where you are at now and what you want to achieve with your coaching.\n\nWe have various payment plans available for our courses, just in case you are concerned about payment… I know Christmas tends to be an expensive time of year, but I would hate for you to miss out on starting one of our diplomas.\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Just click here, fill in your details and let’s jump on a call.</a>','6 Questions To Ask Yourself To Make Sure 2020 Is Your Best Year Yet!','','draft','closed','closed','','6-questions-to-ask-yourself-to-make-sure-2020-is-your-best-year-yet','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=19203',0,'post','',0),(19204,0,'2019-12-30 09:44:01','2019-12-30 09:44:01','','6 Questions To Get You Started In 2020','','inherit','open','closed','','6-questions-to-get-you-started-in-2020','','','2019-12-30 09:44:01','2019-12-30 09:44:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/12/6-Questions-To-Get-You-Started-In-2020-1.png',0,'attachment','image/png',0),(19320,3,'2020-01-06 17:52:26','2020-01-06 17:52:26','<h1>And Why It\'s Your Job As A Coach To Make Sure They Don\'t</h1>\n<h2><span style=\"font-weight: 400;\">New Year, New You….</span></h2>\n<span style=\"font-weight: 400;\">That phrase will be plastered everywhere. Every gym, personal trainer, nutrition coach, everyone talks about it. Maybe I have even been heard saying it!!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The new year feels like a great time to start fresh, doesn’t it!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But when it comes to health and fitness we all know the trend…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The gyms get super busy for 3 weeks and then…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">…….NOTHING……..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s back to normal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why do people with such great intentions just disappear after a few weeks?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So many of them will literally NOT step back into that gym again for the year… even though they PAY their membership fees.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So….and listen carefully…. I believe it’s </span><i><span style=\"font-weight: 400;\">our responsibility as coaches</span></i><span style=\"font-weight: 400;\"> to make sure this doesn’t happen</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why Do People Stop?</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>Too Fast, Too Soon</strong> - go full throttle in every session, ache for 6 days after and think this sucks… because it does. The goal isn’t to not be able to walk!!</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>They Get injured</strong>… they haven’t worked out for 5 years, but workout as if they are an elite athlete…. Of course there is a chance they might break...</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>21 sessions in 21 days</strong>…. Even if they achieve it….they think…</span><i><span style=\"font-weight: 400;\"> I can’t keep this up I don’t have the time</span></i><span style=\"font-weight: 400;\">. I agree… you don’t need to workout 14 hours a week, but that’s what they do… it’s unrealistic</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>Too Strict on Nutrition</strong> - on top of the crazy intense workouts, they then decide to go full vegan… having watched Game Changers on Netflix, having eaten only meat and no veg since they can remember, they then spend 7 hours a day cooking and preparing their meals. They manage it for 3 weeks and then think…. Screw this I don’t have the time or energy for this. </span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because what they do is soooo unrealistic for long term lifestyle change, they give up.</span>\n\n&nbsp;\n<h2><b>What Can We The Coach/Personal Trainer Do?</b></h2>\n<span style=\"font-weight: 400;\">Well why is it our responsibility and what can we do?</span>\n\n<span style=\"font-weight: 400;\">THIS is precisely our job to make sure as many of those people continue these healthy habits forever….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">….Ok so how do we do it?</span>\n\n&nbsp;\n<h3><b>Educate</b></h3>\n<span style=\"font-weight: 400;\">Everyone that steps foot in your gym, new members, new pt clients, give them information that will actually help them get results. Give it for FREE! </span>\n\n<span style=\"font-weight: 400;\">By the way…. If you are a PT in a gym with loads of other PTs … what a way to stand out. There’s no catch, no email handed over, just great info given in welcome packs, or handed out to members. Who are they going to come and see if they decide they need some extra support?</span>\n\n&nbsp;\n<h3><b>Give Them ONE Thing</b></h3>\n<span style=\"font-weight: 400;\">Instead of giving them 700 things to do… give them ONE thing.</span>\n\n<span style=\"font-weight: 400;\">What’s the ONE thing that’s going to help that person get results in the next few weeks. One thing that is manageable, that is realistic.</span>\n\n&nbsp;\n<h3><b>Set the expectations early on</b></h3>\n<span style=\"font-weight: 400;\">If they think they are going to lose 6 stone in the next 3 weeks and you don’t tell them that’s not possible, or safe to try. You are setting them up to fail. Because when they don’t do it, they won’t be pleased by the 6 pounds they lost, they’ll be gutted it wasn’t more.</span>\n<h3><b>Support &amp; Accountability</b></h3>\n<span style=\"font-weight: 400;\">If you want people to continue long term, you need to check in with them regularly. Hold them accountable to their goals. Again trust me on this… not only will this help them achieve their goals, but they’ll actually be amazed that someone cares about them, someone actually listens to them.</span>\n\n&nbsp;\n<h3><b>Bonus… Build A Community</b></h3>\n<span style=\"font-weight: 400;\">Bring people together who are on a similar journey, and they will support and motivate each other. Facebook groups are such an easy way to do this. Invite your clients and anyone who wants support to your group.</span>\n\n&nbsp;\n\nAnd by the way, if you do these things, if you give people small, manageable changes to make, guess what.... In a years time, not only are they still going, but they really could be a \"New You\"... it just took a bit of time and patience to get there, but the important things is that they do.\n\n&nbsp;\n<h3><strong>What\'s Next For You?</strong></h3>\nI hope that as a coach you have set yourself some goals this year for own personal development. Continuing development is essential to be able to continue to serve our clients to the highest level, don\'t you agree?\n\nIt would be great to see you on our diploma or one of ours workshops, so if you would like to find out more about the <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Biomechanics Coach Diploma, then click here</a>, enter your details and let’s get on a call to see if its right for you. Or if you would like to dip your toe in and start with a <a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-taster/\">1-day workshop you can check those out by clicking here</a>.\n\n&nbsp;','New Year, New You...Why It Sets Up Gym Goers To Fail','','draft','closed','closed','','new-year-new-you-why-it-sets-up-gym-goers-to-fail','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=19320',0,'post','',0),(19321,0,'2020-01-06 17:30:39','2020-01-06 17:30:39','','New Year New You - Set Up To Fail','','inherit','open','closed','','new-year-new-you-set-up-to-fail','','','2020-01-06 17:30:39','2020-01-06 17:30:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/01/New-Year-New-You-Set-Up-To-Fail-1.png',0,'attachment','image/png',0),(19426,3,'2020-01-13 16:30:26','2020-01-13 16:30:26','<span style=\"font-weight: 400;\">Strength training is what the client came for right? So we should give them a lot of that right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Often as coaches and trainers we might feel concerned as to whether we engage our clients enough that they don\'t feel bored when THEY think they just wanna sweat and lift but WE want them to move better first...right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Recently the concept of actually preparing the body for exercise has surfaced, and I don’t mean what is traditionally considered a warm up. Traditional warms up come second in preparing to exercise because often we are coming at it with biomechanical adaptations due to our more and more techy, static lifestyles.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The lesson exercise professionals are starting to recognise is risk reduction and performance optimisation. This PREPARES the body for movement because……</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">GUESS WHAT?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...our bodies have forgotten how to move ‘normally’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The body is a </span><i><span style=\"font-weight: 400;\">Master Of Compensation </span></i>\n\n<span style=\"font-weight: 400;\">Brilliant at adapting to its surroundings </span>\n\n<span style=\"font-weight: 400;\">Fantastic at reserving energy</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However we are already pushed for time in our sessions and clients generally want the FUN STUFF! How on earth do we fit it all in?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me introduce you to NET Training…. Meaning “No Extra Time”. You see if we can bring in activities/exercises that are beneficial but don’t take up any extra time or interfere with their strength training then they don’t feel like they have lost out on anything.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I can’t claim the whole NET idea… but I can’t remember where I heard it. It might be from a book on building great habits, but I just can’t remember.</span>\n\n&nbsp;\n<h2><b>NET Training (No Extra Time)</b></h2>\n<h3><b>Fillers - What Are They?</b></h3>\n<span style=\"font-weight: 400;\">Here is a solution that we have discovered works fantastically within your clients training session and ticks every box for optimizing performance, reducing risk AND taking no extra time!!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You ready….??</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Net Training or ‘Fillers’ and iMoveFreely is a perfect example of these. This blog is about to show you a SUPER EASY way to:</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Educate clients </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Improve performance</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Reduce risk</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Engage clients even more </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Keep the sessions interesting </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Reduce their low grade aches and niggles</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">ALL THIS without taking up more time! </span>\n\n<span style=\"font-weight: 400;\">I know cool eh, read on….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is when iMoveFreely REALLY hits the mark….it doesn’t interfere with your recovery NOR your reps/sets. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In fact it’s also PERFECT for ‘looking busy’ between sets while still using your equipment &amp; someone is waiting to jump on. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me show you how you can use iMoveFreely as a FILLER, optimise performance &amp; reduce risk/recurring issues.....without using ANY MORE TIME!!  </span>\n\n&nbsp;\n\n<b>What Does iMoveFreely Look Like?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok so in a regular programme (I will keep it very simple here)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">SQUATS </span>\n\n<span style=\"font-weight: 400;\">BENCH </span>\n\n<span style=\"font-weight: 400;\">MILITARY PRESS</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s say REPS are x 8 Sets x 4</span>\n\n<span style=\"font-weight: 400;\">So in between each SET apply 1 round of an iMoveFreely technique.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For Example:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">4 Sign 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Squats x 8 reps</span>\n\n<span style=\"font-weight: 400;\">4 Sign 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Squats x 8 reps</span>\n\n<span style=\"font-weight: 400;\">4 Sign 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Squats x 8 reps</span>\n\n<span style=\"font-weight: 400;\">4 Sign 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Squats x 8 reps</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This would be non stop but the 4 Sign is still a recovery due to the nature of it.</span>\n\n<span style=\"font-weight: 400;\">Another Example:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pec Minor MET 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Bench x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Pec Minor MET 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Bench x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Pec Minor MET 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Bench x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Pec Minor MET 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Bench x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Pec Minor MET 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Bench x 8 reps</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Median Nerve Mobilisation x 6 reps each side</span>\n\n<span style=\"font-weight: 400;\">Military Press x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Median Nerve Mobilisation x 6 reps each side</span>\n\n<span style=\"font-weight: 400;\">Military Press x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Median Nerve Mobilisation x 6 reps each side</span>\n\n<span style=\"font-weight: 400;\">Military Press x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Median Nerve Mobilisation x 6 reps each side</span>\n\n<span style=\"font-weight: 400;\">Military Press x 8 reps</span>\n\n<span style=\"font-weight: 400;\">These are just examples and by no means strictly these combinations however it would be ideal to build a whole tool box of FILLERS to use between sets for all of the reasons given above.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Obviously the ideal situation would be to do ALL the required iMoveFreely techniques BEFORE the session. However, until clients recognise their value we must somehow drip feed ideas to them during our sessions and what a great way to do so without losing or reducing the volume of their endorphin hitting strength exercises in the training session.</span>\n\n&nbsp;\n<h3><strong>What’s Next For You?</strong></h3>\nI hope that as a coach you have set yourself some goals this year for own personal development. Continuing development is essential to be able to continue to serve our clients to the highest level, don’t you agree?\n\nIt would be great to see you on our diploma or one of ours workshops, so if you would like to find out more about the <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Biomechanics Coach Diploma, then click here</a>, enter your details and let’s get on a call to see if its right for you. Or if you would like to dip your toe in and start with a <a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-taster/\">1-day workshop you can check those out by clicking here</a>.\n\n&nbsp;','How To Add Mobility To Your Strength Training With No Extra Time Needed (NET Training)','','draft','closed','closed','','how-to-add-mobility-to-your-strength-training-with-no-extra-time-needed-net-training','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=19426',0,'post','',0),(19427,0,'2020-01-13 14:43:16','2020-01-13 14:43:16','','NET Training - How to fit mobility into strength training programmes','','inherit','open','closed','','net-training-how-to-fit-mobility-into-strength-training-programmes','','','2020-01-13 14:43:16','2020-01-13 14:43:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/01/NET-Training-How-to-fit-mobility-into-strength-training-programmes-1.png',0,'attachment','image/png',0),(19515,3,'2020-01-20 15:03:02','2020-01-20 15:03:02','<p style=\"text-align: center;\">As personal trainers, certain teachings become so ingrained that we rarely question them. One such principle is: “If it’s tight, stretch it.” However, sometimes this approach doesn\'t yield results. Let\'s explore why stretching alone might not be effective and what alternative solutions exist.</p>\r\n<p style=\"text-align: center;\"><strong>The Problem with Stretching Tight Calves</strong></p>\r\n<p style=\"text-align: center;\">Imagine a client whose squat isn’t improving due to tight calves and poor ankle dorsiflexion. You perform ankle mobility exercises, but the improvement is short-lived. Stretching the calves repeatedly doesn’t seem to help either. This situation is frustrating and calls for a reevaluation of the problem.</p>\r\n<p style=\"text-align: center;\"><strong>Rethinking Muscle Tightness</strong></p>\r\n<p style=\"text-align: center;\">If stretching isn\'t effective, it’s essential to consider other causes for muscle tightness. The gastrocnemius and soleus muscles, commonly referred to as the calves, often limit ankle dorsiflexion. However, persistent tightness might be due to factors beyond muscle flexibility.</p>\r\n<p style=\"text-align: center;\"><strong>The Role of the Sciatic Nerve</strong></p>\r\n<p style=\"text-align: center;\">Did you know that the sciatic nerve can inhibit calf muscles? The sciatic nerve runs beneath these muscles and can become tight or tethered. When this happens, the body may induce calf muscle tension to protect the nerve from damage. This protective mechanism prioritizes nerve safety over muscle flexibility, as nerves are more critical and harder to repair than muscles.</p>\r\n<p style=\"text-align: center;\"><strong>Addressing Sciatic Nerve Tension: The Slump Exercise</strong></p>\r\n<p style=\"text-align: center;\">To alleviate this issue, consider sciatic nerve mobilization exercises, like the Slump. This exercise is straightforward but should only be performed by individuals without neural conditions like sciatica. Always advise clients to consult a professional if they have any concerns.</p>\r\n<p style=\"text-align: center;\"><strong>Here\'s how to perform the Slump exercise:</strong></p>\r\n\r\n<ul>\r\n 	<li style=\"text-align: center;\">Have your client sit with their thighs supported and hips at 90 degrees.</li>\r\n 	<li style=\"text-align: center;\">Ask them to gently lower their chin and slowly round their back, relaxing their hands behind them.</li>\r\n 	<li style=\"text-align: center;\">Have them slowly extend one knee until they feel the onset of tension, then stop.</li>\r\n 	<li style=\"text-align: center;\">They should then slowly lower and lift the leg to add and reduce tension.</li>\r\n 	<li style=\"text-align: center;\">Emphasise that this is not a stretch; they should only find the start of tension.</li>\r\n</ul>\r\n<p style=\"text-align: center;\"><strong>Recommended Routine:</strong></p>\r\n<p style=\"text-align: center;\">Perform 8 reps for 2 sets before training.</p>\r\n<p style=\"text-align: center;\">Begin with no more than twice daily to gauge the appropriate dosage and response.</p>\r\n&nbsp;\r\n\r\nhttps://youtu.be/Vr4ItLOv0zk\r\n<p style=\"text-align: center;\"><span data-contrast=\"auto\">By incorporating the Slump exercise, you may notice improved range of motion in posterior chain muscles, reduced calf tension, increased dorsiflexion, and significantly better squat performance. This approach addresses the root cause of tightness, leading to more effective and lasting results.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p style=\"text-align: center;\"><b><span data-contrast=\"auto\">Ready to Enhance Your Clients\' Mobility?</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p style=\"text-align: center;\"><span data-contrast=\"auto\">If you’re ready to expand your skillset with the Biomechanics Coach System, <a href=\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\">click here</a>.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p style=\"text-align: center;\"><span data-contrast=\"auto\">Empower your clients to move better and more freely by tackling the underlying issues behind muscle tightness. Cool, huh?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>','When Stretching a Tight Muscle Doesn’t Work – A Look at the Gastrocnemius & Soleus','','publish','closed','closed','','when-stretching-a-tight-muscle-doesnt-work-a-look-at-the-gastrocnemius-soleus','','','2025-01-20 16:01:57','2025-01-20 16:01:57','',0,'https://www.biomechanicseducation.com/?p=19515',0,'post','',0),(19518,3,'2020-01-20 14:46:40','2020-01-20 14:46:40','','When stretching doesnt work - Gastrocnemius','','inherit','open','closed','','when-stretching-doesnt-work-gastrocnemius','','','2020-01-20 14:46:40','2020-01-20 14:46:40','',19515,'https://biomechanicseducation.com/wp-content/uploads/2020/01/When-stretching-doesnt-work-Gastrocnemius.png',0,'attachment','image/png',0),(19587,3,'2020-01-27 13:49:06','2020-01-27 13:49:06','<h2><b>Most Of Your Facebook Friends Are Not Really Your Friends! They may well be Vampires!</b></h2>\n<span style=\"font-weight: 400;\">How much do you actually think about who you interact with on social media?</span>\n\n<span style=\"font-weight: 400;\">Often we can find that TIME is scarce when considering all of the things we want to do, are trying to do and need to do. BUT how do we FILTER out those unnecessary TIME VAMPIRES?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They suck the life out of you in terms of time, emotion and willpower.</span>\n\n<span style=\"font-weight: 400;\">You find yourself shouting at your phone, although no one can actually hear you</span>\n\n<span style=\"font-weight: 400;\">Maybe you are rolling your eyes at some keyboard warriors comments</span>\n\n<span style=\"font-weight: 400;\">OR </span>\n\n<span style=\"font-weight: 400;\">Maybe you’re even getting social media rage at the ludicrous posts or comments some weirdo you never met, don’t even know and don’t want to know has made on YOUR PAGE!!!  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">STOP!!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">RIGHT NOW….STOP!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Think about it…..remember that 10 minute rule, 4 minute rule whatever make it a 10 second rule….and JUST STOP</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why would you waste TIME?</span>\n\n<span style=\"font-weight: 400;\"> TIME ….that thing that you NEVER GET BACK - TIME that thing that you CANNOT BUY - TIME that thing that you feel you lack so severely - WHY WASTE IT ON TIME VAMPIRES WHO MEAN NOTHING TO YOU????</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OK so I’m not saying you should be rude or mean to them but you can:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">IGNORE</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">DELETE</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">SCROLL ON</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">UNFRIEND</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">UNFOLLOW</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In fact, the act of any of these listed above on your social media channels could be quite cathartic! </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">A study done by an Oxford University professor of more than 3,300 Facebook users in the UK concluded that there were only 4.1 “dependable” friends out of a typical user’s 150 Facebook friends. “Friendships,” our brave professor </span></i><a href=\"http://rsos.royalsocietypublishing.org/content/3/1/150292\"><i><span style=\"font-weight: 400;\">concluded</span></i></a><i><span style=\"font-weight: 400;\">. “Have a natural decay rate in the absence of contact, and social media may well function to slow down the rate of decay. However, that alone may not be sufficient to prevent friendships eventually dying naturally if they are not occasionally reinforced by face-to-face interaction.”</span></i>\n\n<i><span style=\"font-weight: 400;\">Social networks “typically encourage promiscuous ‘friending’ of individuals who often have very tenuous links to ego.” </span></i>\n\n<a href=\"https://www.entrepreneur.com/article/275060\"><i><span style=\"font-weight: 400;\">https://www.entrepreneur.com/article/275060</span></i></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I know some of you are like us; running a business for which you wish to ATTRACT customers, so the trick is to consider exactly HOW MUCH TIME to go through your social media. </span>\n\n&nbsp;\n<h2><b>Finding Balance OR Finding Counterbalance?</b></h2>\n<span style=\"font-weight: 400;\">In his AWESOME book,</span><i><span style=\"font-weight: 400;\"> ‘The ONE Thing’,</span></i><span style=\"font-weight: 400;\"> Gary Keller challenges the concept of “work/life balance” and suggests maybe it’s more about the counterbalance…?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OK I hear ya….what’s the counterbalance?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well when you LOVE WHAT YOU DO you wanna do it a lot, right? But some may see this as unbalanced AND, if you’re like me, you would work every day BUT you also really love spending time with family and friends SOOOOOOO what we really need to do is rather than try to simply spend MORE TIME in another zone, we just regularly make sure we counterbalance back and forth to COUNTER balance out time. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Keller’s analogy being that a ballerina LOOKS ‘balanced’ when en pointe BUT if you look really closely they are in fact making minuscule adjustments back and forth to COUNTER balance their weight.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Make sense?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So consider these points:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Are you wasting time on time vampires who bring zero quality to your life?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Are you feeling bad about spending more time in one zone than another?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you know what you can do about it?</span></li>\n</ul>\n&nbsp;\n<h2><strong>How To Avoid Time &amp; Energy Vampires</strong></h2>\nIf you just simply, let life happen to you, I can guarantee your time and energy will be sucked away (pun intended). You\'ll find yourself mindlessly scrolling, getting involved in discussions that are a waster of time and your business and life won\'t move forwards.\n\n<strong>The key is to be totally intentional with everything you do! </strong>\n\nLook at the result you want, then make a plan of actions that are going to get you there. And then take massive action on those things!\n\n&nbsp;\n\nThis applies to ALL areas of your life.\n\nWant to improve your relationship with your partner? Plan date days, date nights, actually communicate with them... not just sitting there on your phones. The easy thing, the comfortable thing is to get home, sit on the sofa together, tv on and scroll through Facebook.... not even acknowledging the other person is there. That might be time together but it\'s not improving your relationship.\n\nTake MEANINGFUL action!\n\n&nbsp;\n\nThe meaningful action might be to unfollow or unfriend certain people on social media. It could be a whole load of things. So the biggest tip is...\n<h3></h3>\n<h3><b>Take Meaningful Action</b></h3>\n<span style=\"font-weight: 400;\">THE SINGLE MOST IMPORTANT THING FOR ANYONE RUNNING A BUSINESS OR TRYING TO FIND A HAPPY MEDIUM IN THEIR LIFE!!</span>\n\n<span style=\"font-weight: 400;\">I will say that again….</span>\n\n&nbsp;\n<h3><b>Take </b><b>Meaningful </b><b>Action</b></h3>\n<span style=\"font-weight: 400;\">THE SINGLE MOST IMPORTANT THING FOR ANYONE RUNNING A BUSINESS OR TRYING TO FIND A HAPPY MEDIUM IN THEIR LIFE!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...and one more time….</span>\n\n&nbsp;\n<h3><b>Take </b><b>Meaningful </b><b>Action</b></h3>\n<span style=\"font-weight: 400;\">THE SINGLE MOST IMPORTANT THING FOR ANYONE RUNNING A BUSINESS OR TRYING TO FIND A HAPPY MEDIUM IN THEIR LIFE!!</span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a>','You’re Surrounded By Vampires… Here’s What To Do...','','draft','closed','closed','','youre-surrounded-by-vampires-heres-what-to-do','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=19587',0,'post','',0),(19588,0,'2020-01-27 13:29:16','2020-01-27 13:29:16','','Time & Energy Vampires - Biomechanics Education','','inherit','open','closed','','time-energy-vampires-biomechanics-education','','','2020-01-27 13:29:16','2020-01-27 13:29:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/01/Time-Energy-Vampires-Biomechanics-Education-1.png',0,'attachment','image/png',0),(19607,0,'2020-01-28 11:25:07','2020-01-28 11:25:07','','Screenshot 2020-01-28 at 11.24.14','','inherit','open','closed','','screenshot-2020-01-28-at-11-24-14','','','2020-01-28 11:25:07','2020-01-28 11:25:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/01/Screenshot-2020-01-28-at-11.24.14-1.png',0,'attachment','image/png',0),(19677,3,'2020-02-03 15:02:02','2020-02-03 15:02:02','<h3><b>Do We Move Without Thinking ... </b><b>Or </b><b>Are We Thinking About Movement Too Much?</b><b>\n</b></h3>\n<span style=\"font-weight: 400;\">Clearly moving is what we are designed to do, we need to move to get food, water, reproduce &amp; well live!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But how much do we, or should we, think about it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As trainers and coaches it is our job to teach people about movement; how to, when too, how often, in what way….etc but as always let\'s challenge this for a moment….WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why are we having to teach the basics….c’mon I KNOW you have watched your client, Barry, and wondered how on earth another human being can be so clumsy or poor at the very basic movements right?</span>\n\n<span style=\"font-weight: 400;\">Did he forget how to move? </span>\n\n<span style=\"font-weight: 400;\">Is he injured? </span>\n\n<span style=\"font-weight: 400;\">In pain? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Chances are he did kinda forget, or his subsystems did. Let me explain…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Movement should feel natural &amp; when it doesn’t there is a specific reason, likely one that needs addressing </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The subsystems of our bodies - neural, myofascial &amp; skeletal - require motion/movement to function well. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Barry sits at his desk all day and likes to relax ALL evening, or perhaps he is overweight so struggles to move easily...so his subsystems don’t get the movement nourishment they require to get the required nutrients around his body.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Movement should be done unconsciously at least most of the time and in the words of Katy Bowman….</span>\n\n<i><span style=\"font-weight: 400;\">Movement is not optional - but compulsory for life</span></i><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what happened to Barry? Did he forget or lose capacity?...well they are kinda the same thing in terms of what we see when we coach a client to move/exercise.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our job is to bring back consciousness of movement, patterning and also capacity. This is done through proprioception training that happens when we teach exercises and movement </span>\n\n&nbsp;\n\n<b>Proprioception</b><span style=\"font-weight: 400;\">; </span><i><span style=\"font-weight: 400;\">perception or awareness of the position &amp; movement of the body.</span></i>\n\n<i><span style=\"font-weight: 400;\">\"exercises to improve balance and proprioception\"</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This term is a fantastic way of understanding what we are doing when we train or coach…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Barry’s body has ‘forgotten’ certain patterns or moves due to maybe inactivity. So we give him a Muscle Energy Technique for example to prepare his body for some strength training. This ‘reminds’ the muscles to prepare for activity and ‘engages’ the spindles in preparation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then we get Barry to squat for example and this reminds his body it doesn’t actually need to compensate after all, his body CAN do this movement it just hasn’t PRACTISED it since he was maybe even 6 years old...maybe….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We use load to build tolerance and reduce the risk of injury and maybe other stuff too like hypertrophy, BUT even more importantly, so that during our lives we can move without thinking.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Those initial PT sessions are often bringing back consciousness to movement so that the neural pathways are re-connected BUT then they should be less conscious, otherwise can you imagine life with permanently conscious movement…!?!! Have a go...too much right!?</span>\n\n<span style=\"font-weight: 400;\">As trainers and coaches we must take into account a lot of things when designing our clients exercise programmes because it isn’t as simple as adding kilos.</span>\n\n&nbsp;\n<h2>How Long Does It Take To Re-Learn How To Move?</h2>\nThe obvious answer is... it depends. Have they had any major, or perhaps even minor injuries? How long have they been sedentary for?\n\nSometimes with the right coaching, it can be almost immediate. And if you are working on the intrinsic biomechanics you are going to speed the process up for sure.\n\nThe research suggests that it can take around 6 weeks... but this would be with consistent practice of movement, not just 1 hour a week. Our iMoveFreely programme will allow you take your clients on an 18 week journey, alongside their training, to make sure they are learning to move properly. This can take us on to a whole other topic of how often your clients see you and what they are actually doing in that first few months of training and making life changing habits.\n\n&nbsp;\n<h2>Re-Introducing Movement - How To Keep Clients Engaged</h2>\nOne of the hardest parts of learning a new skill is sticking with it when you are continually \"failing\" when just starting out. Take a trip down to a golf driving range to see this in action. Golf is an incredibly difficult skill to learn, and keeping beginners practising and not giving up in those first few weeks is tough. It\'s not fun, it\'s freaking hard and it doesn\'t appear that you get any better... so why bother?\n\nThen all of a sudden something clicks, and you get a dramatic improvement. Then you get stuck at a certain level and have to practice new skills.\n\nChances are it\'s similar with your clients who forgot how to move. They might feel silly that they can\'t do simple movements, or things that other people in the gym are making look easy. In fact, they might even avoid exercises that they struggle with all together.\n\nYour job as the coach is to keep them on track, get them wins in every session, show them how their movement is improving, manage their expectations, guide them on a journey and make it clear where they are heading and how you are going to get there.\n\n&nbsp;\n<h2>Join The Biomechanics Education Tribe</h2>\n<span style=\"font-weight: 400;\">The most common reasons we get professionals, like you, in our workshops is because you want more confidence in understanding why all those Barry’s seem to be struggling to perform what you perceive as very simply movements.  </span>\n\n<span style=\"font-weight: 400;\">You want a deeper level of understanding the human body and the differences in anatomy and how this may affect what you see happen when they move. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You want to be able to get Barry back to moving as he, as a human, was designed to.</span>\n\n&nbsp;\n<h2><b>Why Not Join Us On One Of Our Upcoming Workshops</b></h2>\n<h3><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-taster/#tab-description\"><b>1 Day Intrinsic Biomechanics </b></a></h3>\n<span style=\"font-weight: 400;\">Feb 22nd Nottm</span>\n<h3><a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/#tab-description\"><b>iMoveFreely Instructor Workshop </b></a></h3>\n<span style=\"font-weight: 400;\">Mar 15th Belfast</span>\n\n<a href=\"https://www.biomechanicseducation.com/product/golf-biomechanics-workshop/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Golf Biomechanics Workshop</b></a>\n\n<span style=\"font-weight: 400;\">Mar 1st Nottm</span>\n\n<a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Running Biomechanics Workshop</b></a>\n\n<span style=\"font-weight: 400;\">Feb 29th Nottm</span>\n\n<span style=\"font-weight: 400;\">Mar 14th Belfast</span>\n\n&nbsp;\n\nWe have a load more workshops too, running, golf and more. So make sure you go and check those out too. If you are not sure where to start, but know you want to do something.... <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Then just click here, fill in your details and schedule a time to book a call with me.</a> And we can have a chat about the best plan for you.','Can We Actually Forget How To Move?','','draft','closed','closed','','can-we-actually-forget-how-to-move','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=19677',0,'post','',0),(19678,0,'2020-02-03 13:57:10','2020-02-03 13:57:10','','Can we forget how to move - Biomechanics Education','','inherit','open','closed','','can-we-forget-how-to-move-biomechanics-education','','','2020-02-03 13:57:10','2020-02-03 13:57:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Can-we-forget-how-to-move-Biomechanics-Education-1.png',0,'attachment','image/png',0),(19844,3,'2020-02-10 20:05:39','2020-02-10 20:05:39','<h2><b>Don’t Just Take My Word For It!</b></h2>\n<span style=\"font-weight: 400;\">Now, something I hope you know me for is being very honest about being a sales person. If something isn’t a good fit for you, I will tell you, and if I believe you should it then I’ll tell you that too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, I always encourage those of you showing an interest in our workshops to speak to any of the practitioners we have trained. Why do I do this? </span>\n\n<span style=\"font-weight: 400;\">Well, because it’s my business, so your thought process is going to be… “of course you’re going to tell me to do it”. </span>\n\n<span style=\"font-weight: 400;\">And actually, it’s great for you to hear from someone who perhaps was in a similar position to where you are now, and to hear and see how they have taken the qualification and what they have done with it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This blog is an example of that from Graham, who recently attended the full Diploma in Biomechanics Coaching at the end of 2019. Graham owns <a href=\"https://missionfitnessuk.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Mission Fitness</a> with daughter in 2013.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While he is still in the process of completing some home study to gain his full Diploma in Biomechanics Coaching certificate, he is very keen to share his experience with those of you yet to decide on whether to commit to the course or not.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I will pass this blog over to him to tell you in his own words what his experience has been like so far….</span>\n\n&nbsp;\n<h1><b>Graham Pardew (Military ELCAS), From Retiring From The Armed Forces, Becoming A Personal Trainer And Now Biomechanics Coach</b></h1>\n&nbsp;\n<h2><b>Why did you decide to join the Biomechanics Coach diploma?</b></h2>\n<span style=\"font-weight: 400;\">“When I retired from the Armed Forces in December 2012, I decided to go into the fitness industry, an area I had devoted much of my time in the military and something which I have always had a real passion for. I used my first ELCAS grant to become a Personal Trainer and opened a small gym with my daughter in February 2013.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">At this time, I was still lacking in sufficient depth of knowledge in anatomy and physiology and the general functionality of how the body works and reacts in a health and fitness environment.  However, there were no ELCAS listed providers with the appropriate knowledge and skills for me to undertake such a course.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Fortunately, I saw Rachel France in action (Director Biomechanics Education), at a very popular Fitness Expo.  I was blown away by her knowledge and passion, her team’s skills and experience. Her company soon gained service provider status and I immediately checked out the details online and spoke to her in person.  The course criteria would definitely meet all my requirements and more! I successfully applied for the course starting monthly workshops in August 2019.</span>\n\n&nbsp;\n\n&nbsp;\n<h2><b>What Did You Like About The Biomechanics Coach Diploma?</b></h2>\n<span style=\"font-weight: 400;\">I had already completed many other fitness related courses, but none of them gave me the breadth of knowledge, skills, confidence and such useful practical workshops, provided by a very capable company with the best instructors and such a wide cross-section of health and fitness professionals.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The course joining process was clear and simple, supporting administration and course manuals top form and content of the five 2-day workshops spot on !!  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Instructor was extremely professional and obviously very knowledgeable across a wide range of areas, easily able to explain in as much detail or ‘lay-man’ terms as required.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The balance of theory and practical was very good.  The workshops are mainly practical in nature, which is exactly what is required to obtain the necessary safe and effective skills to become a fully qualified ‘Biomechanics Coach’.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I really loved the ‘hands-on’ approach which was very new to me and although I was very nervous and lacked experience, was soon made to feel at ease and quickly gained the necessary techniques required.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Students were extremely well prepared for the practical examination and case studies, which took a lot of pressure from them requiring to do additional research in their own times.</span>\n\n&nbsp;\n<h2><b>What benefits have you had as a result of doing the Biomechanics Coach diploma?</b></h2>\n<span style=\"font-weight: 400;\">This course is a particularly niche area, which can be used to pursue an independent career as a ‘Biomechanics Coach’, or to supplement many other professions, such as Personal Trainer, Sports Massage Therapists, Osteopaths, Rugby coaches, Pilates Instructors et al.  I will certainly be using all the knowledge and skills gained to provide much needed ‘clinics’ to clients in the local area.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are many Fitness Trainers out there but not many Biomechanics Coaches!  This course can add a much-needed extra skill to your portfolio and a better opportunity to get more clients and expand your business.</span>\n\n&nbsp;\n<h2><b>What would say to others who are thinking about doing the Biomechanics Coach diploma? Or perhaps have left/are leaving the armed forces and looking for a course to complete?</b></h2>\n<span style=\"font-weight: 400;\">If you have already left, or are planning to leave the forces in the near future, I would strongly encourage you to complete this course.  This is without doubt the most professional company I have had the privilege to work with since my retirement and fully endorse them and the course and hope that they get better visibility across the three services and MOD”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Thank you Graham!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are thinking about doing the diploma but perhaps have a few questions before you join then let’s have a chat. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Click here, fill in your details and book a call. I look forward to chatting with you.</a></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">*Note: The first Diploma starting in March Nottingham is now fully booked and we are already taking bookings for the September dates. </span>\n\n<span style=\"font-weight: 400;\">London starts April has just 2 places left and we are already taking bookings for that Sept start date as well.</span>','Becoming A Biomechanics Coach After Retiring From The Armed Forces','','draft','closed','closed','','becoming-a-biomechanics-coach-after-retiring-from-the-armed-forces','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=19844',0,'post','',0),(19852,0,'2020-02-10 19:54:28','2020-02-10 19:54:28','','Retiring From Armed Forces & Becoming A Biomechanics Coach','','inherit','open','closed','','retiring-from-armed-forces-becoming-a-biomechanics-coach','','','2020-02-10 19:54:28','2020-02-10 19:54:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Retiring-From-Armed-Forces-Becoming-A-Biomechanics-Coach-1.png',0,'attachment','image/png',0),(19916,0,'2020-02-14 15:53:13','2020-02-14 15:53:13','','Kaizen_white_on_black-e1497196549198','','inherit','open','closed','','kaizen_white_on_black-e1497196549198','','','2020-02-14 15:53:13','2020-02-14 15:53:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Kaizen_white_on_black-e1497196549198-1.jpg',0,'attachment','image/jpeg',0),(19918,0,'2020-02-14 15:56:21','2020-02-14 15:56:21','','Kaizen_Profile_Rachel','','inherit','open','closed','','kaizen_profile_rachel','','','2024-08-07 10:36:42','2024-08-07 10:36:42','',39349,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Kaizen_Profile_Rachel-1.png',0,'attachment','image/png',0),(19975,3,'2020-02-17 14:05:38','2020-02-17 14:05:38','<span style=\"font-weight: 400;\">Recently I have been getting my running mojo back after over a decade of not really feeling it since rupturing my ACL back in 2009.</span>\n\n<span style=\"font-weight: 400;\">The reason I lost it is likely clear - injury - but I feel there was more to it than that. </span>\n\n<span style=\"font-weight: 400;\">I had been at the peak of my ‘fitness’ and faster than I had ever been (even with my slow twitch muscle fibre dominance). Yet I had lost my purpose in running, the reason I ran in the first place….the simple joy of ‘healthy’ movement. Becoming obsessed with the time stopped me taking in the scenery, all I thought about was the seconds ticking away on my Garmin combined with the next mile alert coming up.</span>\n\n<span style=\"font-weight: 400;\">Anyway this meant I had also lost my health radar. When I look back now I realise I was overtraining, not taking time out for body AND mind and thus resulting in a major injury that literally stopped me in my tracks. </span>\n\n<span style=\"font-weight: 400;\">For those of you reading this who have experienced this or maybe have seen a client experience it, when an injury strikes...well that forces time to reflect, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I am not suggesting that it has taken me 11 years to realise this as my mojo is coming back, no what I am saying is now that I am starting to enjoy running (ie NOT jogging) again I am considering how and why it has happened.  </span>\n\n&nbsp;\n<h3><b>How?</b><span style=\"font-weight: 400;\"> </span></h3>\n<span style=\"font-weight: 400;\">Well this is easy…..my 84yr old dad. Most of you will recall my social media posts, blogs, videos running with my dad after we discovered he had early signs of dementia. He was the motivation for me starting to run 30 years ago and more recently as he was keen to exercise. We have motivated each other over the years and he gave me back my joy of running by being by my side. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THIS is WHY I run!</span>\n\n&nbsp;\n<h3><b>Why?</b></h3>\n<span style=\"font-weight: 400;\">The pure joy of it, the camaraderie that has always given my dad so much joy is what I recognise as the reason I enjoy it. It doesn’t mean I cannot race, it just keeps it in perspective and also keeps me mindful of my health. Health is much more important to me now than fitness and so I felt this Juicemail from back in 2016…..</span>\n\n&nbsp;\n<h2><b>Can You Be Fit And Unhealthy?</b></h2>\n<span style=\"font-weight: 400;\">Interesting conundrum right? Having been an endurance runner for over 20 years I stopped running through injury some 7 years ago and just lost my mojo. Actually looking back I think it was almost a relief NOT to be pounding the streets anymore as I now had a reason not to run. Instinctively, I knew running the number of miles I was running was physically probably not good for me and the injury just proved it. Also, the time I had been spending exercising had been a challenge to fit into my routine of daily runs, lifting weights, work, family and other regular activities.</span>\n\n<span style=\"font-weight: 400;\">Having always lifted weights anyway I decided to refuse knee surgery and began to focus my attention on improving my intrinsic biomechanics, including knee stability, with specific training of the strength ratios on my leg musculature. Most of you will be familiar with my squat, snatch projects over the years.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then I read a fascinating book </span><i><span style=\"font-weight: 400;\">Body By Science by Doug McGuff &amp; John Little. </span></i>\n\n<span style=\"font-weight: 400;\">In their book,</span> <span style=\"font-weight: 400;\">McGuff &amp; Little define words like ‘health’ and ‘fitness’ in an endeavour to understand what amount of exercise we could deem as optimal for health. Now, something I quite enjoy these days is the concept of challenging what most of the society accepts because…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">…</span><i><span style=\"font-weight: 400;\"> it’s what we have always done</span></i>\n\n<i><span style=\"font-weight: 400;\">…everybody else does it</span></i>\n\n<span style=\"font-weight: 400;\">…</span><i><span style=\"font-weight: 400;\">I read it somewhere</span></i>\n\n<span style=\"font-weight: 400;\">….</span><i><span style=\"font-weight: 400;\">that’s what Olympians do</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">McGuff &amp; Little certainly challenge current thinking in their book by promoting </span><b><i>”a research-based program for strength training, bodybuilding and complete fitness in 12 minutes a week”</i></b><span style=\"font-weight: 400;\">. That’s a pretty bold statement to make, isn\'t it? However, they have provided a huge amount of references from valid sources while they have also been doing studies of their own for many years too.</span>\n\n<span style=\"font-weight: 400;\">In their book, they explore definitions of words we use all the time in this industry. They state;</span>\n\n&nbsp;\n\n<b><i>HEALTH</i></b><i><span style=\"font-weight: 400;\">: Is a physiological state in which there is an absence of disease or pathology and that maintains the necessary biological balance between the catabolic and anabolic states.</span></i>\n\n<b><i>CATABOLIC: </i></b><i><span style=\"font-weight: 400;\">Anything that results in the breakdown of the organism</span></i>\n\n<b><i>ANABOLIC:</i></b><i><span style=\"font-weight: 400;\"> Anything that results in the growth and differentiation of the organism</span></i>\n\n<b><i>FITNESS</i></b><i><span style=\"font-weight: 400;\">: The bodily state of being physiologically capable of handling challenges that exist above the resting threshold.</span></i>\n\n<b><i>EXERCISE</i></b><i><span style=\"font-weight: 400;\">: A specific activity that stimulates a positive psychological adaptation that serves to enhance fitness and health and does not undermine the latter in the process of enhancing the former.</span></i>\n\n<i><span style=\"font-weight: 400;\">(McGuff, Little: Body By Science 2009)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Basically what I interpreted from this is that you can be recognised as ‘FIT’ (see above) and yet be ‘UNHEALTHY’ on a cellular level (see above) and in a ‘CATABOLIC’ state (see above) from activities like endurance running, my previous choice of sport. Interestingly, since I was forced to stop running initially from the injury, I have ‘felt healthier’ since simply lifting weights once or twice per week (subjective, I know).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway, controversially McGuff &amp; Little promote a 12-minute strength workout every 7-14 days using 3-5 moves combined with push and pull exercises. They encourage super slow long reps of around 20 seconds or so and to failure, of course. They describe in great detail how this style of training promotes improved health on several levels including strength, gastrointestinal transit time, resting metabolism, glucose metabolism, insulin sensitivity, release of body fat stores, cholesterol levels, blood pressure, bone mineral density, symptoms of arthritis, lower back pain, flexibility and Cardiovascular stimulation. Big claims but most, if not all, with some evidence and science to back them up.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I read this book while on holiday in Cyprus and you know what hotel gyms are like right? Well of course they didn’t have the machines that these guys recommend or use in their studies but I managed to find 2 x 7kg dumbbells (a relatively light weight for me) and decided to have a go at these </span><i><span style=\"font-weight: 400;\">TIME UNDER LOAD</span></i><span style=\"font-weight: 400;\"> (TUL) 20 second reps for push-ups, bent over rows, shoulder press and static lunges which were about all I could do with 2 dumbbells. I set my iPad timer and aimed for 10 second concentric 10 seconds eccentric contractions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WOW! Blew my mind how tough this was and I was managing about 5 reps at most! The intensity of the endurance effect on the muscle was quite different to anything I had tried previously and with so few reps going through the joints, such a light load and the safety of the speed it just made sense. It was all over within minutes too. My colleagues who have tried it have also been ringing me after trying it with severe DOMS from considerably reduced training times, reps and exercises using these methods. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One thing I didn’t really get to the bottom of in the book, and I am hoping they write a second book to cover, is how much your ADL influences the effects of this style of training. How being a manual labourer or desk worker might affect this style of training with requiring long periods of recovery and what can be done about this.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now one of the obvious considerations has to be training goals and how this style of programming fits or maybe it just doesn’t?! Well hey, if your sport is running then I too can appreciate the joy of a peaceful run in the countryside but the evidence in this book does indicate that we need to seriously consider how much time we allow for recovery and, from my personal experience, how we should really prepare the body for movement to reduce the risk of injury. Which is where programmes like iMoveFreely fit perfectly since this does not require any sweat nor impact and can be done without impeding on this TUL training method and by virtually anyone since it’s the safest exercise programme on the planet!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally, if you like research-driven information, running, strength training or anything to do with exercise I would strongly recommend giving this book a read. It is full of research, references and information right down to both a historic and cellular level. p.249-275 is simply pages of research sources and references!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I would be really interested to hear your opinions too by the way particularly if you read the book!</span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a>','Can You Be Fit, But Unhealthy At The Same Time?','','draft','closed','closed','','can-you-be-fit-but-unhealthy-at-the-same-time','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=19975',0,'post','',2),(19976,0,'2020-02-17 13:13:28','2020-02-17 13:13:28','','Can You Be Fit, But Unhealthy At The Same Time_','','inherit','open','closed','','can-you-be-fit-but-unhealthy-at-the-same-time_','','','2020-02-17 13:13:28','2020-02-17 13:13:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Can-You-Be-Fit-But-Unhealthy-At-The-Same-Time_-1.png',0,'attachment','image/png',0),(19983,0,'2020-02-17 14:44:21','2020-02-17 14:44:21','','Can You Be Fit, But Unhealthy At The Same Time - Why I stopped running','','inherit','open','closed','','can-you-be-fit-but-unhealthy-at-the-same-time-why-i-stopped-running','','','2020-02-17 14:44:21','2020-02-17 14:44:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Can-You-Be-Fit-But-Unhealthy-At-The-Same-Time-Why-I-stopped-running-1.png',0,'attachment','image/png',0),(20048,0,'2020-02-19 13:37:53','2020-02-19 13:37:53','','Screenshot 2020-02-19 at 09.24.55','','inherit','open','closed','','screenshot-2020-02-19-at-09-24-55','','','2020-02-19 13:37:53','2020-02-19 13:37:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Screenshot-2020-02-19-at-09.24.55-2.png',0,'attachment','image/png',0),(20049,0,'2020-02-19 13:38:21','2020-02-19 13:38:21','','Screenshot 2020-02-19 at 09.24.55','','inherit','open','closed','','screenshot-2020-02-19-at-09-24-55-2','','','2020-02-19 13:38:21','2020-02-19 13:38:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Screenshot-2020-02-19-at-09.24.55-1-1.png',0,'attachment','image/png',0),(20050,0,'2020-02-19 13:41:24','2020-02-19 13:41:24','','IMG_2750','','inherit','open','closed','','img_2750','','','2020-02-19 13:41:24','2020-02-19 13:41:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/IMG_2750-2.jpg',0,'attachment','image/jpeg',0),(20051,0,'2020-02-19 13:42:44','2020-02-19 13:42:44','','IMG_2750','','inherit','open','closed','','img_2750-2','','','2020-02-19 13:42:44','2020-02-19 13:42:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/IMG_2750-1-1.jpg',0,'attachment','image/jpeg',0),(20056,0,'2020-02-19 13:48:29','2020-02-19 13:48:29','','Screenshot 2020-02-19 at 09.08.09','','inherit','open','closed','','screenshot-2020-02-19-at-09-08-09','','','2020-02-19 13:48:29','2020-02-19 13:48:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Screenshot-2020-02-19-at-09.08.09-1.png',0,'attachment','image/png',0),(20060,0,'2020-02-19 13:52:35','2020-02-19 13:52:35','','Screenshot 2020-02-19 at 13.52.00','','inherit','open','closed','','screenshot-2020-02-19-at-13-52-00','','','2020-02-19 13:52:35','2020-02-19 13:52:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Screenshot-2020-02-19-at-13.52.00-1.png',0,'attachment','image/png',0),(20064,0,'2020-02-19 13:57:35','2020-02-19 13:57:35','','Screenshot 2020-02-19 at 09.09.01','','inherit','open','closed','','screenshot-2020-02-19-at-09-09-01','','','2020-02-19 13:57:35','2020-02-19 13:57:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Screenshot-2020-02-19-at-09.09.01-1.png',0,'attachment','image/png',0),(20066,0,'2020-02-19 13:59:50','2020-02-19 13:59:50','','IMG_6077','','inherit','open','closed','','img_6077','','','2020-02-19 13:59:50','2020-02-19 13:59:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/IMG_6077-1.jpg',0,'attachment','image/jpeg',0),(20168,3,'2020-02-24 14:46:19','2020-02-24 14:46:19','<span style=\"font-weight: 400;\">I often speak to coaches who worry that they don’t know enough. That they feel there is a missing link. A gap perhaps in their anatomy knowledge. So much so that they are worried they can’t help their clients as much as they would like to and even worried they may lose clients as a result. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you wish you had a magic exercise you could give them to help?</span>\n\n<span style=\"font-weight: 400;\">Are you getting disheartened by the numbers of clients you have with ‘issues’?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly let me reassure you that there are many things we can do for clients with ‘issues’, even within our remit. With the understanding that your consultation was thorough and there were no red flags.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So let’s take a look at elbow pain, or tingly fingers as an example…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you have any clients that get tingly fingers or pain in their elbow when pulling, gripping or pressing then read on...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They could have the </span><i><span style=\"font-weight: 400;\">beginnings</span></i><span style=\"font-weight: 400;\"> of an RSI for example (repetitive strain injury) like Tennis Elbow or Carpel Tunnel Syndrome. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The nervous system is a single continuum throughout the entire body &amp; so symptoms can show up almost anywhere but be caused by another part of the kinetic chain. This can make our job difficult in identifying root causes &amp; knowing what to do about them.</span>\n\n&nbsp;\n<h1><b>Common Causes Of Elbow Pain When Pulling, Gripping Or Pressing</b></h1>\n<span style=\"font-weight: 400;\">Common contributors are overactive pec minor, subscapularis, infraspinatus, upper traps, stiff thoracic spine and a tight median nerve. </span>\n\n<span style=\"font-weight: 400;\">There could also be any combination of these (along with a multitude of more distal contributors but that\'s another blog!)</span>\n\n<span style=\"font-weight: 400;\">The muscles provide an ‘over’ protective spasm to the nerve during movement and if stretched or loaded sufficiently the muscles can spasm enough to cause themselves to tense up - which can FEEL like a tear even.  By mobilising the nerve it releases the tension in the muscles &amp; reduces the likelihood of this actually happening.</span>\n\n&nbsp;\n<h2><b>Example While Gripping</b></h2>\n<span style=\"font-weight: 400;\">During the golf swing when ‘gripping’ for example, if the median nerve is tight it can reduce the amount the player can complete his backswing &amp; adopt the best position at the top of his swing.  </span>\n\n<span style=\"font-weight: 400;\">This would be due to the muscle spasm that builds up to try &amp; protect the inflexible nerve.  The greater the muscle spasm (which is unbeknown to the player as it is ‘sub’ clinical at this point) the more he\'ll try &amp; force his shoulder turn, which in turn increases the tension etc.  The key to a sound &amp; reproducible swing is to reduce any tension in the swing, so as to help with timing &amp; rhythm. So by mobilising the median nerve, we are helping with ALL of the above.</span>\n\n<span style=\"font-weight: 400;\">So during our practical anatomy workshops, we discuss how to test and exercise these areas to not only reduce the risk of this problem occurring but also to reduce recurring issues like tingly fingers or sore elbows AND a fantastic side effect is optimized performance!! Whoohoo!</span>\n\n<span style=\"font-weight: 400;\">Here is a video to explain more …</span>\n\nhttps://youtu.be/Ggalmxs6ziQ\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a>\n\n&nbsp;','Got Any Clients Who Experience Elbow Pain When Pulling, Gripping Or Pressing?','','draft','closed','closed','','elbow-pain-when-pulling-gripping-or-pressing','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=20168',0,'post','',0),(20169,0,'2020-02-24 14:27:03','2020-02-24 14:27:03','','Elbow pain when gripping or pulling_','','inherit','open','closed','','elbow-pain-when-gripping-or-pulling_','','','2020-02-24 14:27:03','2020-02-24 14:27:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Elbow-pain-when-gripping-or-pulling_-1.png',0,'attachment','image/png',0),(20290,3,'2020-03-02 14:59:08','2020-03-02 14:59:08','<span style=\"font-weight: 400;\">We tested the quad strength output on a pro rugby player before and after mobilising his sciatic nerve. After 2 x 15 reps his quad strength output increased by 14%. After 10 days of nerve mobilisations it increased by 50%!!</span>\n\n<i><span style=\"font-weight: 400;\">It Has Been Demonstrated That Reduced Nerve Mobility Inhibits Muscle Performance (Greening J, Smart S, Leary R, Hall-Craggs M, </span></i>\n\n<i><span style=\"font-weight: 400;\">O\'Higgins P, Lynn B , Butler, DS. Lancet. 1999.)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you consider a hamstring stretch for example, we are not trying to stretch the hamstrings when we extend the leg out in front of us, we are trying to improve the range of hip flexion and knee extension by stretching the structures on the back of the leg and back. This brings in more than just the hamstrings, it can also be limited by a tight sciatic nerve, a rotated sacroiliac joint in the lower back, tight gastrocnemius, tight spinal cord and indeed almost any nerve in the chain given the continuum concept of the nervous system being one structure. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How many times have you stretched your hamstrings using the generally accepted methods only to find that their flexibility continues to be stubborn and often returns to their standard length very soon? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Many people experience this phenomenon. The reason is often due to them stretching only one of the structures that limit the movement, i.e. the hamstrings. If they do not stretch the other structures as well, of course, they will not be affected and so the limited range will usually return. So we are trying to acquire a pattern of movement, not just stretching the hamstrings. </span>\n\n&nbsp;\n<h2><b>Other Examples of The Effect/s of Nerve Tension </b></h2>\n<span style=\"font-weight: 400;\">Tight calves can cause overpronation. What happens is the dorsi-flexion (moving the ankle upwards) is not available from the ankle joint due to the tightness in the calves, so it has to come from the subtalar joint.  It comes as part of the pronation mechanism though and so increases the amount of pronation as well. This causes shin related injuries as well as knee &amp; Achilles problems. More often than not that tight calves are caused by a tight sciatic nerve, so by mobilising the nerve, we can help with all these injuries as well.</span>\n\n<span style=\"font-weight: 400;\">A rotated pelvis can also go unnoticed for many years until the compensations start to cause problems.  Typically a leg length discrepancy (LLD) can result from a rotated pelvis and the leg must compensate for this.  It\'ll either flatten the foot (pronate it), bend the knee more, or drop the hip more. Pronation will increase the load on the leg, bending the knee will increase pronation, &amp; dropping the hip will increase the spasm in the glutes/piriformis.  A vicious circle if ever there was one! So by reducing the spasm in the piriformis, in other words preventatively, (&amp; also if necessary), then we are helping to reduce all of the above.</span>\n\n<b>Just Imagine!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember in most cases we are not even aware we have a problem, but even so, you can still achieve these remarkable results. Just imagine what these figures could do for your performance in your sport or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office. </span>\n\nhttps://youtu.be/xMDNnhoXWRs\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider positions that may cause the nerves to become tensioned in your clients sport or activity, then plan how to mobilise the nerves in preparation for their sport similar to the ‘slump’ technique in the video above.</span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a></p>','Reduced Nerve Mobility Inhibits Muscle Performance - And What Can Personal Trainers Do About It?','','draft','closed','closed','','reduced-nerve-mobility-inhibits-muscle-performance-and-what-can-personal-trainers-do-about-it','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=20290',0,'post','',0),(20291,0,'2020-03-02 14:56:48','2020-03-02 14:56:48','','Reduced Nerve Mobility Inhibits Muscle Performance','','inherit','open','closed','','reduced-nerve-mobility-inhibits-muscle-performance','','','2020-03-02 14:56:48','2020-03-02 14:56:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Reduced-Nerve-Mobility-Inhibits-Muscle-Performance-1.png',0,'attachment','image/png',0),(20459,3,'2020-03-09 19:38:08','2020-03-09 19:38:08','<h3><b>By Master Trainer, Dean Connolly </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over the coming months I will be proudly introducing you to an amazing team of people who both inspire and stimulate me in my own business. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They are our Master Trainer Team and have been handpicked from the best we have seen in the industry and on our workshops. So much so they have been through around 2 years of training to up skill, gain experience and now begin to deliver the precious revolutionary intrinsic biomechanics programmes.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I literally cannot tell you how excited I am by this team of professionals who are already making a huge difference to, not only their own clients but also the Biomechanics Education learners.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So with 9 of these wonderful people to introduce I had better crack on and hand you over to get to know…..Dean Connolly to offer some of his insights into this Juicemail since I fear creating and sending you content solely from my own crazy brain!!</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Dean began his career in health and fitness as a youth football coach, working with local junior premier league side and eventually Chelsea FC outreach academies.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">He then turned more attention to the physical side of training as he developed his career as a personal trainer. Now developing his own PT business that has been running for the last 4 years.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">His own passion is a love for obstacle racing and all things muddy!!</span></i>\n\n&nbsp;\n<h2><b>What Happens When Motivation Dies?</b></h2>\n<h3><b>How Can Our Clients Continue To Get Results Once Motivation Goes?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The fitness industry is filled with some of the most poetic quotes, with a lovely background image of a sunrise over at a tropical beach far away.</span>\n\n<span style=\"font-weight: 400;\">It’s enough to get the average person pumped and say, “today is my day”. </span>\n\n<span style=\"font-weight: 400;\">Anyone that has worked with clients knows that this doesn’t last too long.</span>\n\n<span style=\"font-weight: 400;\">Yes, it takes motivation and a lot of the time incredible courage to ask for help from a professional, especially when dealing with fat loss or injured clients.</span>\n\n<span style=\"font-weight: 400;\">So, motivation is a powerful tool that can kick start someone’s decision process.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But what happens when the motivation dies away, what happens when their results plateau. What do you do as a coach to keep them motivated?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The biggest thing we work on with our clients is habits. Forming positive habits and disrupting negative habits.</span>\n\n<span style=\"font-weight: 400;\">Habits are something we all have good or bad they help us short cut or go on autopilot for a desired outcome. They essentially become our “go too” when we desire a specific result or reward.</span>\n\n<span style=\"font-weight: 400;\">They are part of who we are and how we work day in, day out </span>\n\n<span style=\"font-weight: 400;\">“They (habits) are not about having something. they are about becoming something” – James Clear</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The biggest challenge for any coach is to identify what these habits are and are they helping or hindering their clients progress.</span>\n\n<span style=\"font-weight: 400;\">Essentially as a coach we are looking to change part of their identity, who the client is in order to get them closer to who they want to be.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It all starts with clarity.</span>\n\n<span style=\"font-weight: 400;\">You’ve probably come across the S.M.A.R.T. goals before</span>\n\n&nbsp;\n\n<b>Specific – exactly what do they want to achieve</b>\n\n<b>Measurable – how will we measure success</b>\n\n<b>Achievable – Is it possible to do</b>\n\n<b>Realistic – It may be possible, but is it really going to reachable with the client’s lifestyle</b>\n\n<b>Time – When? A target date.</b>\n\n<span style=\"font-weight: 400;\">Depending on your clients, you may work with people from a fat loss goal to injury rehab to a running PB goal, either way most people will come to you wanting a specific solution to a specific problem.</span>\n\n<span style=\"font-weight: 400;\">So, our job as coaches is to find out which habits, they make day in ands day out will either</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Help them achieve their goal</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Stop them achieving their goal</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once we see what habits are working for and against their goals we can then start to focus on changing habits, that all starts with awareness.</span>\n\n<span style=\"font-weight: 400;\">What are the first 5 things someone does every morning, what are the first 5 things you do, write it down.</span>\n\n<span style=\"font-weight: 400;\">Do they work towards or against your goals?</span>\n\n<span style=\"font-weight: 400;\">I.e. If my goal was to be more productive and my morning routine was</span>\n\n<span style=\"font-weight: 400;\">- wake up</span>\n\n<span style=\"font-weight: 400;\">- press snooze</span>\n\n<span style=\"font-weight: 400;\">- check social media</span>\n\n<span style=\"font-weight: 400;\">- get changed</span>\n\n<span style=\"font-weight: 400;\">- go for breakfast</span>\n\n<span style=\"font-weight: 400;\">Not all bad there, but maybe if I’m learning to be more productive, snoozing and social media may not be helping me get to that goal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe in the gym you’ll see similar conflicting habits</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do a set</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Drink some water</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Check phone/ social media</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Talk to friend</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do set 2</span></li>\n</ul>\n<span style=\"font-weight: 400;\">Depending on what type of training, rest period, etc or how long you have to train you may be wasting time. But to another person if it’s just a case of getting them to the gym more distractions may help make the habit of going to the gym stick.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So as always it will depend on the context of the client you’re working with.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First, find out what they want and ask if they are helping themselves work towards that goal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are 2 things to then do to either:</span>\n\n<span style=\"font-weight: 400;\">Help get rid of a bad habit or Help create a positive habit</span>\n\n&nbsp;\n<h3><b>Make it obvious or make it hard</b></h3>\n<span style=\"font-weight: 400;\">Let’s start with the tougher challenge of the 2, making a bad habit harder to do.</span>\n\n<span style=\"font-weight: 400;\">So, this is quite literally the out of sight out of mind idea. How obvious are your bad habits to do? </span>\n\n<span style=\"font-weight: 400;\">Client spending too much time on your phone at the gym. Maybe not take their phone into the gym or at least put in airplane mode, so they can’t be distracted by messages.</span>\n\n<span style=\"font-weight: 400;\">Eating too much junk food or drinking too much alcohol? Is chocolate and wine the first thing they see when they open their fridge? Less tempting.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Again, this will be dependent on your client’s journey, but will ultimately make that bad habit harder to do as the option may not be available at the time. No motivation or willpower is required if it’s not even an option in the first place.</span>\n\n&nbsp;\n<h3><b>To build a good habit, is the exact opposite, make it obvious and easy.</b></h3>\n<span style=\"font-weight: 400;\">This is just a case of putting a cue or item right under their nose to make it easier to follow through with.</span>\n\n<span style=\"font-weight: 400;\">Clients can take their gym kit to work so they can go on the way home, take away the temptation of sitting down and relaxing or at least kit already out by the door so they don’t need to go hunting to find trainers and kit before a run or gym session.</span>\n\n<span style=\"font-weight: 400;\">Replace the beer and sweets in the middle shelf for fruit maybe, so when the fridge is opened you see a pot of strawberries or apples.</span>\n\n<span style=\"font-weight: 400;\">There are 100 different ways to do this, but it all comes down to as always what actually works for your clients, their goals and their lifestyle. Does the habit change fall into their goals and is it S.M.A.R.T.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So before we set them the best training programme, recovery plan or diet to follow check first if the small things they do day in and day out are going to help them achieve their results and more importantly empower them to sustain them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Oh and by the way, Dean has gone through all the programmes, he invested in them himself, to apply to his own coaching programmes. Hear what he had to say about his journey…..</span>\n\n&nbsp;\n\nhttps://youtu.be/aHsrJipzsTA\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h1 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h1>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a></p>','Building New Healthy Habits & Disrupting Old Unhealthy Habits','','draft','closed','closed','','building-new-healthy-habits-disrupting-old-unhealthy-habits','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=20459',0,'post','',0),(20461,0,'2020-03-09 13:16:58','2020-03-09 13:16:58','','Building healthy habits - Biomechanics Education','','inherit','open','closed','','building-healthy-habits-biomechanics-education','','','2020-03-09 13:16:58','2020-03-09 13:16:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Building-healthy-habits-Biomechanics-Education-1.png',0,'attachment','image/png',0),(20624,3,'2020-03-18 16:51:23','2020-03-18 16:51:23','<span style=\"font-weight: 400;\">Everyone gets it!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Its impossible to get away from it and its driving so many people insane!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The stress and fear of not knowing what\'s to come creates a sense of panic even in the most calm and relaxed characters. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are messages coming through asking \'</span><i><span style=\"font-weight: 400;\">What Can I Do?</span></i><span style=\"font-weight: 400;\">\"</span>\n\n<span style=\"font-weight: 400;\">My response?..... there is both good and bad news.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The bad news is that we cannot change the fact the Coronavirus is rife in every corner of the world that can be deadly for our vulnerable loved ones.</span>\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n<span style=\"font-weight: 400;\">There is ALWAYS a but because there is ALWAYS 2 ways to view any situation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is good news.....this situation brings OPPORTUNITIES!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The great things about this opportunity is the one thing we have all been so desperate for, for so long……..TIME!</span>\n\n<span style=\"font-weight: 400;\">​</span>\n\n<span style=\"font-weight: 400;\">Yes we are uncomfortable with change &amp; loss of control</span>\n\n<span style=\"font-weight: 400;\">We could spend time in panic, stressing, fretting &amp; worrying about what might happen, could happen &amp; may happen. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can be PRO-ACTIVE about the situation by taking advantage of time by TAKING MASSIVE POSITIVE ACTION and do all things things we never had time for!</span>\n\n&nbsp;\n<h2><b>6 Positive Actions To Take - RIGHT NOW!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). Draw 2 large circles on a piece of paper. Write Circle of Care over one then write Circle of Control over the second. </span>\n\n<span style=\"font-weight: 400;\">Now take some time to list in the Circle of Care all of the things that you care about right now that you CANNOT change. </span><span style=\"font-weight: 400;\">Then list in the Circle of Control all of the things you can change.</span>\n\n<span style=\"font-weight: 400;\">Next rip the page in two and take the  Circle of Care and tear it up into pieces and place it in the bin. </span><span style=\"font-weight: 400;\">Read the list in your Circle of Control - FOCUS ON THIS!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">2). Look at this list of things you can control. Add to it all of the things you previously have never had time for but now do.</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Phone your friend</span></li>\n 	<li><span style=\"font-weight: 400;\">Have a lie in</span></li>\n 	<li><span style=\"font-weight: 400;\">Design some training programmes </span></li>\n 	<li><span style=\"font-weight: 400;\">Create some meal plans </span></li>\n 	<li><span style=\"font-weight: 400;\">Write some content copy</span></li>\n 	<li><span style=\"font-weight: 400;\">Create some videos </span></li>\n 	<li><span style=\"font-weight: 400;\">Analyse your business</span></li>\n 	<li><span style=\"font-weight: 400;\">Educate yourself</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">3). Next write a number beside to each item in order of importance. No.1. being the most important item to do on your list.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">4). Beside each item write out what it will take to achieve that task, step by step. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">5). Add each item and the steps to your schedule with consideration to the time each step might take.</span>\n\n&nbsp;\n<h4><span style=\"font-weight: 400;\">6). Dont Delay <strong>Take Action</strong> Now! - it could all change before you know it, don\'t get left behind!</span></h4>\nWhy Not Start With This Awesomely Popular Online Course, CLICK LINK:\n\n&nbsp;\n<h2><a href=\"https://www.biomechanicseducation.com/product/fundamental-principles-of-movement-analysis/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><strong><em>FUNDAMENTAL PRINCIPLES OF MOVEMENT ANALYSIS</em></strong></a></h2>\n&nbsp;\n\nNOTE: If you are feeling overwhelmed please get in touch info@biomechanicseducation.com so we can offer you support, guidance or information about where to get the best advice for your circumstances.\n\n&nbsp;\n\nSTAY POSITIVE ;)','6 Positive Actions To Take - RIGHT NOW!','','draft','closed','closed','','6-positive-actions-to-take-right-now','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=20624',0,'post','',0),(20625,0,'2020-03-18 16:11:17','2020-03-18 16:11:17','','Screenshot 2020-03-18 at 16.10.48','','inherit','open','closed','','screenshot-2020-03-18-at-16-10-48','','','2020-03-18 16:11:17','2020-03-18 16:11:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Screenshot-2020-03-18-at-16.10.48-1.png',0,'attachment','image/png',0),(20627,0,'2020-03-18 16:14:53','2020-03-18 16:14:53','','Screenshot 2020-03-18 at 16.14.04','','inherit','open','closed','','screenshot-2020-03-18-at-16-14-04','','','2020-03-18 16:14:53','2020-03-18 16:14:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Screenshot-2020-03-18-at-16.14.04-1.png',0,'attachment','image/png',0),(20628,0,'2020-03-18 16:23:37','2020-03-18 16:23:37','','Screenshot 2020-03-18 at 16.23.00','','inherit','open','closed','','screenshot-2020-03-18-at-16-23-00','','','2020-03-18 16:23:37','2020-03-18 16:23:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Screenshot-2020-03-18-at-16.23.00-1.png',0,'attachment','image/png',0),(20629,0,'2020-03-18 16:27:27','2020-03-18 16:27:27','','Screenshot 2020-03-18 at 16.26.37','','inherit','open','closed','','screenshot-2020-03-18-at-16-26-37','','','2020-03-18 16:27:27','2020-03-18 16:27:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Screenshot-2020-03-18-at-16.26.37-1.png',0,'attachment','image/png',0),(20631,0,'2020-03-18 16:34:15','2020-03-18 16:34:15','','nadine-shaabana-2JjDzTll6eA-unsplash','','inherit','open','closed','','nadine-shaabana-2jjdztll6ea-unsplash','','','2020-03-18 16:34:15','2020-03-18 16:34:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/nadine-shaabana-2JjDzTll6eA-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(20632,0,'2020-03-18 16:35:31','2020-03-18 16:35:31','','daoudi-aissa-absT1BNRDAI-unsplash','','inherit','open','closed','','daoudi-aissa-abst1bnrdai-unsplash','','','2020-03-18 16:35:31','2020-03-18 16:35:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/daoudi-aissa-absT1BNRDAI-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(20671,0,'2020-03-20 14:49:14','2020-03-20 14:49:14','','Screenshot 2020-03-20 at 14.49.01','','inherit','open','closed','','screenshot-2020-03-20-at-14-49-01','','','2020-03-20 14:49:14','2020-03-20 14:49:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Screenshot-2020-03-20-at-14.49.01-1.png',0,'attachment','image/png',0),(20709,0,'2020-03-22 16:05:15','2020-03-22 16:05:15','','IMG_0096','','inherit','open','closed','','img_0096-2','','','2020-03-22 16:05:15','2020-03-22 16:05:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/IMG_0096-scaled-1.jpg',0,'attachment','image/jpeg',0),(21235,3,'2020-04-13 14:54:03','2020-04-13 14:54:03','<span style=\"font-weight: 400;\">Ok so you have now survived 3 weeks on lockdown, you realised everyone feels the same as you do and the initial panic, shock &amp; horror have started to dissipate. Now you are starting to get comfy in an environment where no one expects anything of you, all finance services have been asked to give you a bit of breathing space and life is starting to feel a new kinda normal where walking in the sun is the highlight of the day.….right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So how far have you come in 3 weeks of lockdown?</span>\n\n<span style=\"font-weight: 400;\">Did you go down the procrastination route or did you get proactive on your business? </span>\n\n<span style=\"font-weight: 400;\">You have done the maths, realised what you can really survive on and now need to make a plan for the future. </span>\n\n<span style=\"font-weight: 400;\">But what more could you do, if anything?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well in the world of Biomechanics Education we have recognised we are well into stage 3 of the Kubler Ross Curve!</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-21236\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/04/Screenshot-2020-04-13-at-15.45.37.png\" alt=\"\" width=\"1142\" height=\"784\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are as always 2 directions you can go in….and both are an option….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Option 1 - Continue to panic, continue the give up and continue to feel useless because technology is moving far too fast for you, thinking you might as well put your head in the sand until its all over - eh!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Option 2 - Panic, feel useless but start by cracking on and having a go, make mistakes and realise no one is expecting anything from you so literally anything you do is a bonus!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Seriously the entire nation were in Kubler Ross stages 1 &amp; 2 for a while too but I then remembered my Circle of Control and chucked away my Circle of Care. </span>\n\n<span style=\"font-weight: 400;\">So after you have read that blog this is geared to support you and offer our assistance in moving forwards...</span>\n\n&nbsp;\n\n<b>6 Tips To Saving Your Business AND Improving It During Lockdown!</b>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><a href=\"https://www.biomechanicseducation.com/6-positive-actions-to-take-right-now/\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">Circle of Control - CLICK HERE Literally do this, grab paper and a pen and write as many things as you can think of in each circle. Then actually physically tear up that circle of care and throw it in the bin or burn it. There is something very powerful in that physical act. </span></a></li>\n</ul>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Create a Schedule - Just like you did when we weren’t locked down. Having a clear schedule gives you a sense of purpose and proactivity each day. Getting up each morning with a plan means you are far more likely to achieve the goals you set out than if you simply rely on memory or ‘working’ ad hoc when you feel like it. We humans like order, discipline &amp; routine as it helps offer a feeling of control during uncertain times.</span></li>\n</ul>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Spend Time Learning - Face your fears and study the areas you are weakest.Technology, anatomy or creating content, videos, blogging or website designing. Time did stand still for a while but will soon start to pick up pace again and you might wish you had made the most of having more time. Everyone has worked out Zoom, Webinarjam, facebook live or even Facetime or Whatsapp video calls - it doesn\'t matter so long as you stay connected!</span></li>\n</ul>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Have A Weekly Goal - Having a goal is so important and generating one bigger goal each week gives each week a primary focus, that can then be divided into smaller goals to help support you to achieve the bigger one. There is something about writing things down and then crossing them off a list as you get each task done towards that big weekly goal!  A great idea might be to set up a private Facebook group, which is free, then offer your financially stretched clients the option to subscribe for £5/£10/£20 per week/month to your group where you will be offering daily insights, videos, education. </span></li>\n</ul>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Think Long Term - Try to keep in mind the struggle everyone has had to adapt to this ‘new normal’ BUT also remember there will also be a time of adaption back again - our businesses may well survive but how will the industry have changed long term for you, your clients, the market in general, what will be the new trends? How could what you do right now give you an advantage in the future? In business we should ALWAYS think long term and even more so now - plan B / C / D can be helpful but also be sure your present \'system\' doesn\'t shoot you in the foot when \'back to normal\' price and service wise. Create and offer alternatives for all.</span></li>\n</ul>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Looking Forward - Get excited about this as a time of growth as all painful times can be. We are forced to reflect and ponder our purpose, drivers, goals and dreams. This is a great OPPORTUNITY to change what you are doing, re-focus and maybe make your future even better! </span></li>\n</ul>\n<strong>BONUS Tips....</strong>\n\n<b>4 Tips For Supporting Your Clients Health At Home!</b>\n\n&nbsp;\n<ul>\n 	<li><span style=\"font-weight: 400;\">Get Creative With Household Items For Equipment - This is an important part of how we can maintain our support for clients\' health at home. It is our job to teach them how to use body weight, stairs or steps, chairs, bottles etc as a strength tool during home exercise.</span></li>\n</ul>\n&nbsp;\n<ul>\n 	<li><span style=\"font-weight: 400;\">Encourage Them To Do Some Of Your Exercise Programmes Outside - The outside fresh air &amp; vit D from the glorious spring sunshine we are getting are also vital aspects of teaching our clients how to stay healthy. So if they can show you what kind of space they have access to then you can potentially offer them a mini 20-30 minute outdoor interval bodyweight circuit like this for example:</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">JUMP JACKS 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">INCHWORM 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">SKATERS 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">V SITS 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">PLYO LUNGES 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">INVERTED PRESS 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">TUCK JUMPS 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">SIDE STARS 20 seconds with 10 seconds recovery</span></li>\n</ul>\n<span style=\"font-weight: 400;\">4 rounds with 60 seconds recovery between each round</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Play Music, Sing &amp; Dance - Advise &amp; recommend them to stay focused on what they CAN do &amp; celebrating things that make them feel good like music, singing &amp; dancing. It can be infectious in a good way!</span></li>\n</ul>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Ladies You Can Get FREE ACCESS until June 30th To <a href=\"https://herspirit.co.uk/\" target=\"_blank\" rel=\"noopener noreferrer\">@herspirit App</a> - This fantastic online support platform has gained funding from Sport England to provide all women with 3 months completely free. There you &amp; your clients can gain access to qualified coaches delivering live sessions for the mind, body and about fuelling well. Yo can even experience on of my iMoveFreely sessions!</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Keep watching for ideas or ping me a message if you have any specific questions.</span>\n\n&nbsp;\n\nEvery Wednesday 4 weeks 12pm LIVE Biomechanics Q&amp;A FREE for all fitness professionals April 8th/15th/22nd/29th via ZOOM - Link available upon request - rachel@biomechanicseducation.com\n<a href=\"https://biomechanicseducation.acemlnb.com/lt.php?notrack=1&amp;notrack=1&amp;s=bad97c655476f96a390a72c05a742011&amp;i=454A3764A11A12279\" data-ac-default-color=\"1\"><b>Intro to Intrinsic Biomechanics Online Training</b> £87  available anytime</a>\n\n<a href=\"https://www.biomechanicseducation.com/product/introduction-to-running-biomechanics-online-cpd-training/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">April 14th 10-2pm - <b>Running Biomechanics Online Training </b>£87</a>\n\n<a href=\"https://biomechanicseducation.acemlnb.com/lt.php?notrack=1&amp;notrack=1&amp;s=bad97c655476f96a390a72c05a742011&amp;i=454A3764A11A12280\" data-ac-default-color=\"1\">April 17th/18th 10-3:30pm - <b>Pelvic &amp; Spine Biomechanics Online Training </b>£357 </a>\n\n<a href=\"https://biomechanicseducation.acemlnb.com/lt.php?notrack=1&amp;notrack=1&amp;s=bad97c655476f96a390a72c05a742011&amp;i=454A3764A11A12281\" data-ac-default-color=\"1\">April 23rd/24th 10-3:30pm - <b>Shoulder, Knee, Foot Biomechanics Online Training </b>£357 </a>\n\n<a href=\"https://biomechanicseducation.acemlnb.com/lt.php?notrack=1&amp;notrack=1&amp;s=bad97c655476f96a390a72c05a742011&amp;i=454A3764A11A12282\" data-ac-default-color=\"1\">April 28th 10-2pm - <b>iMoveFreely instructor Online Training </b>£94 </a>\n\n<a href=\"https://biomechanicseducation.acemlnb.com/lt.php?notrack=1&amp;notrack=1&amp;s=bad97c655476f96a390a72c05a742011&amp;i=454A3764A11A12283\" data-ac-default-color=\"1\"><b>Fundamental Principles of Movement Analysis Online</b> pdf £27 available anytime.</a>\n\nNOTE: There will be an opportunity to \'upgrade\' and attend the face to face education experiences at a later date to gain certificates and qualifications.\n\n&nbsp;','6 Tips To Saving Your Business AND Improving It During Lockdown!','','draft','closed','closed','','6-tips-to-saving-your-business-and-improving-it-during-lockdown','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=21235',0,'post','',0),(21236,0,'2020-04-13 14:46:09','2020-04-13 14:46:09','','Screenshot 2020-04-13 at 15.45.37','','inherit','open','closed','','screenshot-2020-04-13-at-15-45-37','','','2020-04-13 14:46:09','2020-04-13 14:46:09','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/04/Screenshot-2020-04-13-at-15.45.37-1.png',0,'attachment','image/png',0),(21237,0,'2020-04-13 14:49:21','2020-04-13 14:49:21','','kari-shea-qa1wvrlWCio-unsplash','','inherit','open','closed','','kari-shea-qa1wvrlwcio-unsplash','','','2020-04-13 14:49:21','2020-04-13 14:49:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/04/kari-shea-qa1wvrlWCio-unsplash-1.jpg',0,'attachment','image/jpeg',0),(21476,0,'2020-04-27 16:03:47','2020-04-27 16:03:47','','Screenshot 2020-04-27 at 17.03.32','','inherit','open','closed','','screenshot-2020-04-27-at-17-03-32','','','2020-04-27 16:03:47','2020-04-27 16:03:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Screenshot-2020-04-27-at-17.03.32-2.png',0,'attachment','image/png',0),(21477,0,'2020-04-27 16:05:11','2020-04-27 16:05:11','','Screenshot 2020-04-27 at 17.03.32','','inherit','open','closed','','screenshot-2020-04-27-at-17-03-32-2','','','2020-04-27 16:05:11','2020-04-27 16:05:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Screenshot-2020-04-27-at-17.03.32-1-1.png',0,'attachment','image/png',0),(21527,0,'2020-04-30 06:53:31','2020-04-30 06:53:31','','IMG_5656','','inherit','open','closed','','img_5656','','','2020-04-30 06:53:31','2020-04-30 06:53:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/IMG_5656-1.jpeg',0,'attachment','image/jpeg',0),(21528,0,'2020-04-30 06:54:53','2020-04-30 06:54:53','','IMG_5657','','inherit','open','closed','','img_5657','','','2020-04-30 06:54:53','2020-04-30 06:54:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/IMG_5657-1.jpeg',0,'attachment','image/jpeg',0),(21629,0,'2020-05-05 16:02:18','2020-05-05 16:02:18','','Screenshot 2020-04-30 at 08.02.13','','inherit','open','closed','','screenshot-2020-04-30-at-08-02-13','','','2020-05-05 16:02:18','2020-05-05 16:02:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Screenshot-2020-04-30-at-08.02.13-1.png',0,'attachment','image/png',0),(21685,0,'2020-05-07 07:08:04','2020-05-07 07:08:04','','william-iven-SpVHcbuKi6E-unsplash','','inherit','open','closed','','william-iven-spvhcbuki6e-unsplash','','','2020-05-07 07:08:04','2020-05-07 07:08:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/05/william-iven-SpVHcbuKi6E-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(21788,3,'2020-05-11 10:35:48','2020-05-11 10:35:48','<span style=\"font-weight: 400;\">Why would I tell you to try and get rid of all your clients? And how am I suggesting you do this? This might sound like a weird way of thinking but it might be a way to appeal to more clients in the long run. </span>\n\n&nbsp;\n<h2><b>The Problem </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In this cutthroat period of lockdown, competing in online exercise and fitness marketing it is likely to feel intimidating for many of you. Competitors may seem to be more knowledgeable and you are worried you are being left behind. They may appear to be able to better serve people and you just can\'t imagine how to get your practical skills online, and safely.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Add into that the fact you don\'t want to be insensitive about ‘selling’ your services during this financially challenging time (for everyone) and it can literally stop you in your tracks, from even getting started, right?!</span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">Maybe you are online but still feel reticent about ‘promoting and selling’ in these cash poor times even though you KNOW you can, and WANT, to help.</span>\n\n&nbsp;\n<h2><b>The Solution</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The solution could be really simple = advertise that your aim is to get rid of your clients as quickly as possible!</span>\n\n<span style=\"font-weight: 400;\">Yes, you heard me….THIS kind of advertising a). STANDS OUT b). Comes from a place of integrity.</span>\n\n<span style=\"font-weight: 400;\">Ok, you may choose not to literally use those words BUT when written, promoted and explained from that perspective it feels different on both sides of the fence.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my opinion it is our job, as exercise professionals &amp; trainers, to predominantly....EMPOWER clients to take ownership of their own bodies!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WE cannot ‘fix’ them </span>\n\n<span style=\"font-weight: 400;\">WE cannot ‘make’ them lose weight</span>\n\n<span style=\"font-weight: 400;\">WE cannot ‘give’ them strength </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes we can ‘empower’ them</span>\n\n<span style=\"font-weight: 400;\">Yes we can ‘teach’ them </span>\n\n<span style=\"font-weight: 400;\">Yes we can ‘equip’ them</span>\n\n<span style=\"font-weight: 400;\">Yes we can ‘coach’ their technique</span>\n\n<span style=\"font-weight: 400;\">Yes we can ‘advise’ what to do &amp; when to do it</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So maybe by amending and tweaking our marketing copy/language to promote that our aim is to work with a client temporarily, with the purpose of educating and empowering them with the skills to look after their own bodies, it could feel easier to both the seller and the buyer. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When the client really gets it, they start to do it alone, they begin to tell you about the things THEY achieved…..well then you really have succeeded. Because the better our clients understand how, why and what...the better our results, the more they refer and then we can work on helping more people.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I mean you could literally tell them “</span><i><span style=\"font-weight: 400;\">If you really take on board everything I give you, it will cost you far less. My aim is to be able to get rid of you as quickly as possible by educating and equipping you with all you need to feel great and move well….for life!”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is how I have always tried to work and explain my methods. They are intended as a temporary phase of assessment and education in understanding one\'s own body, lifestyles, environment and how to identify their key biomechanical pillars. We then work together to design their maintenance programme which they can then go back to at any time, with or without, my help. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">NOTE: This comes with the caveat that ok maybe 90% of your clients will fall into this category of people who simply need educating and access to the right tools and information. This is as opposed to an elite athlete who requires a longer term periodised plan. I am fully aware that some clients hang around and the relationship works for both parties since their goals change, they will inevitably return. Yet by equipping them to be autonomous they are more likely to refer friends our way too. </span>\n\n<span style=\"font-weight: 400;\">Also coaching can get harder if we become more friendly with long term clients and holding them accountable, so while long term may seem a nice idea, this \'get rid\' concept I believe is good for most.  </span>\n\n&nbsp;\n<h2><b>How We Can Help You</b></h2>\n<span style=\"font-weight: 400;\">With us all being forced online it may give you more confidence having a deeper level of understanding your client\'s body.</span>\n\n<span style=\"font-weight: 400;\">Being able to use bench-markers and physical tests that allow you to identify where issues may well be coming from and...</span>\n\n<span style=\"font-weight: 400;\">How to then prescribe exercises to improve their movement before your very eyes….and theirs!</span>\n\n<span style=\"font-weight: 400;\">All via an online platform that PROVES they are looking after themselves!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have created a super low investment bundle for you to get started. It includes:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pelvic &amp; Spine Biomechanics Online Assessment Skills - £357</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Fundamental principles of movement analysis online course - £27</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">iMoveFreely Instructor Online Training - £94</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Introduction to Running Biomechanics - £87</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">5 Steps to a successful online presence webinar </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">1:1 phone consultation with me (Rach) to get started and put this into action - £120</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Feedback and support during lockdown - £100</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">TOTAL VALUE: £785</span>\n<h3><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/\"><span style=\"text-decoration: underline;\"><strong>To get all of this you only pay £357</strong></span></a></h3>\n<strong>AND if you decide to do our diploma in the next year after purchasing this bundle, I will take £357 off the investment of the diploma!</strong>\n<h2><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/\">--&gt; Click here to purchase the bundle now! &lt;--</a></span></h2>\n&nbsp;\n\n&nbsp;','You Should Be Trying Get Rid Of All Of Your Clients As Quickly As You Can!','','draft','closed','closed','','you-should-be-trying-get-rid-of-all-of-your-clients-as-quickly-as-you-can','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=21788',0,'post','',0),(21789,0,'2020-05-11 10:33:00','2020-05-11 10:33:00','','Get rid of your clients - Biomechanics Education','','inherit','open','closed','','get-rid-of-your-clients-biomechanics-education','','','2025-04-24 13:40:59','2025-04-24 13:40:59','',43019,'https://biomechanicseducation.com/wp-content/uploads/2020/05/Get-rid-of-your-clients-Biomechanics-Education-1.png',0,'attachment','image/png',0),(21886,0,'2020-05-15 18:22:41','2020-05-15 18:22:41','','Screenshot 2020-05-15 at 19.06.58','','inherit','open','closed','','screenshot-2020-05-15-at-19-06-58','','','2020-05-15 18:22:41','2020-05-15 18:22:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/05/Screenshot-2020-05-15-at-19.06.58-1.png',0,'attachment','image/png',0),(21887,0,'2020-05-15 18:30:48','2020-05-15 18:30:48','','bewakoof-com-official-mtOMSpOWxRI-unsplash','','inherit','open','closed','','bewakoof-com-official-mtomspowxri-unsplash','','','2020-05-15 18:30:48','2020-05-15 18:30:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/05/bewakoof-com-official-mtOMSpOWxRI-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(21937,0,'2020-05-18 06:41:25','2020-05-18 06:41:25','','diego-lozano-yZQ9PCabSoM-unsplash','','inherit','open','closed','','diego-lozano-yzq9pcabsom-unsplash','','','2020-05-18 06:41:25','2020-05-18 06:41:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/05/diego-lozano-yZQ9PCabSoM-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(21940,0,'2020-05-18 07:48:19','2020-05-18 07:48:19','','_MG_9952','','inherit','open','closed','','_mg_9952','','','2020-05-18 07:48:19','2020-05-18 07:48:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/MG_9952-scaled-1.jpg',0,'attachment','image/jpeg',0),(21948,3,'2020-05-18 10:12:33','2020-05-18 10:12:33','If you have never heard of a MET or have always wondered what they are and why or when you might use them, then this is for you!\n<h2>What Does MET Stand For?</h2>\nChances are you have heard this code name or acronym for a technique known as a ‘Muscle Energy Technique’, however would you know when to use them or how to apply them? Maybe you thought there was only one method? Or maybe you aren\'t sure when to use them?\nThis Juicemail has been written to explain the benefits, the safest &amp; simplest MET method and when and how to programme it into a clients programme.\n\n&nbsp;\n<h2>What Is A MET?</h2>\nAn MET is a contraction of the muscle with origin &amp; insertion getting closer together statically or isometrically thus creating energy within the muscle. So opposite to stretching BUT often a ‘kinder’ way to improve muscle function AND far more effective at this shown by some research.\n\nStretching is most commonly taught during our basic training and therefore can often be interpreted as range of motion being the most important thing we should aim for with a client. However, that may not be technically quite accurate for many of our clients.\n\nRange of motion isn’t necessarily the most important goal for good quality movement, particularly for those super mobile body types. Yet optimising muscle function is a priority for everyone in terms of risk reduction &amp; improving performance.\n\nThis is where a MET trumps methods like stretching, which by comparison could be deemed relatively aggressive, in some cases uncomfortable and often ineffective long term.\n\n&nbsp;\n<h2>Methods For Applying MET’s</h2>\nThere are various methods to applying an MET &amp; one of the most commonly taught is PNF or Proprioceptive Neuromuscular Facilitation. While this model of ‘contract then stretch’ can be helpful it is also harder to perform on oneself &amp; requires the stretch component which again maybe a little too much for some. Also known as Autogenic Inhibition and Reciprocal Inhibition within the therapy world we could define and differentiate these further …..\n\nIf a sub-maximal contraction of the muscle is followed by stretching of the same muscle it is known as Autogenic Inhibition MET, and if a submaximal contraction of a muscle is followed by stretching of the opposite muscle than this is known as Reciprocal Inhibition MET (Physiopedia)\n\nRibot-Ciscar et al (&amp; subsequently Jiri Dvorak) did some work on what is also known as Post Contraction Sensory Discharge.\n\nBoth found that a sub maximal endurance isometric muscle contraction proved to be a superb method to improve the function of a muscle that, in our words….“..forgot how to relax..”\n\nSub maximal - means less than the maximum &amp; we found that cueing around 20% effort was most effective.\n\nEndurance hold - is to sustain the isometric contraction for a period of time &amp; we found around 20 seconds was most effective\n\n&nbsp;\n<h2>So As A Personal Trainer When Do I Use It?</h2>\nPossibly prior to anything else since it’s easy, anyone can do it, it is an empowering technique as they can perform it on themselves, it holds the least risk of most other techniques AND for almost 2 decades Biomechanics Coaches &amp; iMoveFreely Instructors everywhere have consistently had phenomenal results with clients &amp; participants who have often also reported being suddenly pain-free for the first time in years where the clinical world had failed them.\n\n&nbsp;\n<h2>How Do I Teach It To My Clients?</h2>\nWell if you follow us on Instagram, Facebook etc you would already know many of the ways to apply them to your client’s programme. If not you could attend one of our online or face to face classes.\n\nOtherwise here are some extra links to research them further so you can create your own. Then teaching a client is all about education as they often don\'t understand this new weird and wonderful technique BUT if you can do that they will LOVE you for it and come back for more!\n\n...Love Movement &#x2764;&#xfe0f;\n\n&nbsp;\n<h3>Here are some more links and information on the topic of Muscle Energy Techniques...</h3>\n<a href=\"https://www.biomechanicseducation.com/1333-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Post Contraction Sensory Discharge</a>\n\n<a href=\"https://leggehealth.ca/portfolio-item/muscle-energy-technique-met/\" target=\"_blank\" rel=\"noopener noreferrer\">Legge Health Clinic - MET </a>\n\n<a href=\"https://www.physio-pedia.com/Muscle_Energy_Technique\" target=\"_blank\" rel=\"noopener noreferrer\">Physio-Pedia </a>\n\n<a href=\"https://www.acefitness.org/fitness-certifications/ace-answers/exam-preparation-blog/5336/golgi-tendon-organs-and-muscle-spindles-explained/\" target=\"_blank\" rel=\"noopener noreferrer\">ACE Fitness - Golgi Tendon Organs and Muscle Spindles Explained</a>\n\n&nbsp;\n\n<hr />\n\n<h1 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely - ONLINE?</h1>\n<h3 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle\">Why not get started with our BRAND NEW ONLINE CPD\'s, giving you the flexibility to learn from home... Find out more, just CLICK HERE TO SEE THE MEGA BUNDLE!</a></h3>\n&nbsp;','What Is A MET, Why Would I Need To Know & How Do We Do Them?','','draft','closed','closed','','what-is-a-met-why-would-i-need-to-know-how-do-we-do-them','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=21948',0,'post','',0),(21949,0,'2020-05-18 10:01:15','2020-05-18 10:01:15','','MET- Muscle Energy Techniques - Biomechanics Education 2020','','inherit','open','closed','','met-muscle-energy-techniques-biomechanics-education-2020','','','2020-05-18 10:01:15','2020-05-18 10:01:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/05/MET-Muscle-Energy-Techniques-Biomechanics-Education-2020-1.png',0,'attachment','image/png',0),(22127,3,'2020-05-26 15:08:32','2020-05-26 15:08:32','<h2>Do You, As A Personal Trainer, Know Your Remit &amp; Do You Practice It?</h2>\nI am excited about how the industry is going to be raising standards and we need to know what it means for each of us and what we need to do!\n<h3><b>What If Your Potential Clients Actually Asked This…</b></h3>\n<span style=\"font-weight: 400;\">Let me ask you a question….imagine a brand new client of yours and they said to you </span><i><span style=\"font-weight: 400;\">“please can I see all of your certificates, accreditation and insurance papers…?” </span></i><span style=\"font-weight: 400;\">Go on be honest, take a moment and then tell me, how would that make you feel?</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Relieved you got what you needed in place?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Annoyed that they don’t trust you?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Confident they wouldn’t understand it or challenge it?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Shocked because you have never been asked before!?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Super happy that finally you get to show someone all of those certificates you have been collecting over the years?</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok let me now ask you another question….why do you do it? </span>\n\n<span style=\"font-weight: 400;\">Why get insured? </span>\n\n<span style=\"font-weight: 400;\">Why gain CPD? </span>\n\n<span style=\"font-weight: 400;\">Why take more qualifications? </span>\n\n<span style=\"font-weight: 400;\">Why gain accreditations?? </span>\n\n<span style=\"font-weight: 400;\">Why…...if no client checks them?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another question to consider, as you gain new skills is…..Is Your insurance policy still valid?</span>\n\n<span style=\"font-weight: 400;\">How Would You Know?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe you are of the mind that </span><i><span style=\"font-weight: 400;\">“a claim?......it will never happen to me” or “...I am sure it will be fine…”</span></i>\n\n&nbsp;\n<h2><b>Physical Activity (Health &amp; Fitness) Industry Standards </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well you may be in for a surprise if you haven\'t heard yet, since the industry is moving towards CIMSPA chartered status </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you haven\'t yet heard about CIMSPA - Chartered Institute for the Management of Sport &amp; Physical Activity here they are:  <a href=\"https://www.cimspa.co.uk/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.cimspa.co.uk/</a></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally!!!.....Our industry is being moved confidently, transparently and positively towards a safer, improved set of standards and overall better quality of practice in the fields of movement, sports, participation and exercise. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Led superbly by the CEO, Tara Dillon, her team are tirelessly working to drive the standards up towards a recognition that somewhat equals (in recognition) that of ‘Allied Professionals’ like Osteopaths, physiotherapists etc as a registered body of practitioners through a brand new status;</span>\n\n&nbsp;\n\n<b><i>Chartered status</i></b><i><span style=\"font-weight: 400;\"> is awarded to those who have shown real excellence, innovation and quality within their field. </span></i><b><i>CIMSPA chartered status</i></b><i><span style=\"font-weight: 400;\"> acts as a hallmark of an experienced and qualified professional, allowing everybody within your professional sphere to see and acknowledge your achievements. </span></i>\n\n&nbsp;\n<h2><b>What Does This Mean For The Future?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is my prediction (and hope) that there will come a time when those movement practitioners that DO NOT have a chartered status will just not be seen in the same light or respected as much as those with chartered status. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More and more the UK is being told by the government to move well, move more, exercise regularly and consider the health of our bodies and minds. Even through this lockdown there is a constant reminder to go for a walk. Many are not ‘prepared’ for movement, some are scared of movement and so many are uncomfortable during movement to the point where they need help.</span>\n\n&nbsp;\n<h3><b>Help With Exercise Is Our Job!!</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet WE, the movement/exercise professional, are (seemingly and up to now) the least recognised, least ‘qualified’, least regulated and we have a stigma attached to our level of knowledge that I believe stunts both our self belief in what we are capable of but also elevates and inflates our expectation of what a clinician knows about exercise. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The CIMSPA chartered status is only for those who go the extra mile and want to gain recognition of that, in terms of being seen as delivering expertise, quality and of course, a high level of duty of care. It is for those who take pride in their role and want to make the effort it will take to gain that status.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Under the current online boom in offering movement advice and services we are all being forced (I HOPE!) towards checking and amending our insurances. Those who were not up to date are now being exposed to maybe a demand to advertise their qualifications and insurance cover moving forwards, since the whole world can pretty much see what we are all doing, right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">GOOD! This is a great thing!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We want a reason to pay for all those CPD’s, insurances and memberships surely!? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We want to proudly display our practitioner status to all and sundry without concern of being outside of our remit - don’t we!? We want to understand exactly our remit and remain with our boundaries to have confidence in who and what we are covered to deal with. </span>\n\n<span style=\"font-weight: 400;\">It is my belief many do NOT feel this way right now, many come to me unsure or actually misunderstanding the types of clients ‘issues’ they are qualified and insured to deal with.</span>\n\n&nbsp;\n<h2><b>We Want To Help! So We Will Pay For Your CIMPSA Membership For A Year When...</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We feel SOOOOOOO strongly about the work CIMSPA is doing that we want to offer you a gift of 1yr FREE CIMSPA membership to everyone who purchases </span><i><span style=\"font-weight: 400;\">The Lockdown Mega Bundle</span></i><span style=\"font-weight: 400;\"> that we have created specifically to support you through this period of change.</span>\n\n&nbsp;\n<h3><b>What Is The Lockdown Mega Bundle? </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This HUGE bundle of 8 educational resources, membership and content has been put together and designed specifically to assist any trainer or coach who is looking to put their service online OR improve the scope of their already online service. If YOU are looking for solutions THIS IS IT!</span>\n\n<span style=\"font-weight: 400;\">In fact, this is literally a gift...especially if you have been thinking about doing our Diploma in Biomechanics Coaching as a step forward with ⅖ of the credit you need to gain towards your Diploma…..and ultimately CIMSPA Chartered status!</span>\n\n<span style=\"font-weight: 400;\">Check this out….</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pelvic &amp; Spine Biomechanics Online Assessment &amp; Exercise Skills £357 (⅖ credit towards Diploma)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">iMoveFreely Instructor Online Training £94 (online service no brainer!)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Introduction to Running Biomechanics £87 (perfect during lockdown)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Fundamental principles of movement analysis online course £27 (theory of intrinsic &amp; extrinsic biomechanics)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">5 Steps to a successful online presence webinar (from a tonne of research about what to do in your business during lockdown)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">1:1 phone consultation with Rachel France to get started and put this into action £120 (allow Rachel to support your journey personally)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Feedback and support during lockdown £100 (As always!)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">12 months CIMSPA membership £30 (WOW! This really is a special gift)</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Value £815)</span>\n\n<strong>Your investment ONLY £397</strong>\n<h3><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/\">Click here to grab your bundle now!</a></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">ONLY AVAILABLE DURING LOCKDOWN</span>\n\n<span style=\"font-weight: 400;\">We are also offering the full Diploma in Biomechanics Coaching (which includes all of the above plus the final 3 credits/modules) for just £100 per month to those who sign up during lockdown.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR </span>\n\n&nbsp;\n\n<a href=\"https://calendly.com/biomechanicsrach/introcall\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">If you have more questions, just book a call with me, just click here!</span></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Next week we will talk about sports therapists and manual therapists and how this affects them too.</span>','How The Personal Training Industry Is (Finally) Raising Standards','','draft','closed','closed','','how-the-personal-training-industry-is-finally-raising-standards','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=22127',0,'post','',0),(22132,0,'2020-05-26 11:07:52','2020-05-26 11:07:52','','Raising Standards of Personal Trainers in the UK - Biomechanics Education + CIMPSA (1)','','inherit','open','closed','','raising-standards-of-personal-trainers-in-the-uk-biomechanics-education-cimpsa-1','','','2020-05-26 11:07:52','2020-05-26 11:07:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/05/Raising-Standards-of-Personal-Trainers-in-the-UK-Biomechanics-Education-CIMPSA-1-1.png',0,'attachment','image/png',0),(22301,3,'2020-06-03 09:50:11','2020-06-03 09:50:11','<h1><b>A Look Into Sports Therapy Training &amp; What It Means For The Therapist!</b></h1>\n&nbsp;\n\n<b>SPORTS THERAPISTS</b>\n\n<b>MANUAL THERAPISTS</b>\n\n<b>We want to help….</b>\n\n&nbsp;\n<h2><b>Doing Research &amp; Gathering Quality Information</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Last week we covered personal trainers and exercise professionals remit, this week will endeavour to cover sports therapists and sports massage therapists, who are another demographic we serve with biomechanics education.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I have discovered is that even within the last 10 years, what sports therapists are taught on courses has changed so much that previously a level taught could “treat” injuries, but now they can’t! Let’s take a deeper look and see what\'s going on….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whenever doing research we should ALWAYS check we are gathering information from reliable resources. To gather the best information for you I have spoken to both a Sports Therapy (ST) degree level lecturer with an Osteopathy degree (along with PT &amp; S&amp;C), a Chartered physiotherapist AND the founder of Sports Therapy Association (STA) who is an ST and heavily involved in the education system with QTLS letters after his name, as I do. This extensive group of practitioners backgrounds of education, experience and expertise are collectively what I would class as a highly respectful amount of professional opinion, knowledge and expertise. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is what we discussed:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sports Therapy (ST) is NOT a regulated profession. While you can experience a good level of training on a degree, pretty much anyone with any amount of manual therapy training can call themselves a sports therapist - even after a one day course!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Even at degree level a Sports Therapist (ST) won’t be able to officially ‘diagnose’ sports injuries. <a href=\"https://society-of-sports-therapists.org/wp-content/uploads/2018/11/Standards-of-Proficiency.pdf#page7\" target=\"_blank\" rel=\"noopener noreferrer\">Degree level ST will likely become a member of the Society of Sports Therapists or SST and these are the list of proficiencies for the remit of their members  CLICK HERE FOR LIST</a></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We MUST be very careful about the wording we use and understand for our remit and skills as they may be misinterpreted or misunderstood which could take you, the practitioner, outside of your remit. It is YOUR responsibility to research YOUR professional language, vocabulary and skills as covered by YOUR insurer. Also to then discuss with your insurer any detail you may wish to clarify ie can I offer my service online? Does anything change by doing this?</span>\n\n&nbsp;\n<h1><b>Diagnosis or Diagnosing; By Clinicians ONLY </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">SST describes a degree level ST learner as having the ability to </span><i><span style=\"font-weight: 400;\">clinically </span></i><span style=\"font-weight: 400;\">hypothesise but would still have to refer for a </span><i><span style=\"font-weight: 400;\">diagnosis</span></i><span style=\"font-weight: 400;\">. Also, if the problem their client had was non-sports therapy related then the ST wouldn’t have had the necessary training to assess that and therefore wouldn’t know the things to look out for or the questions to ask.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When learning on any sports therapy degree programme it should be made very clear that this level of training </span><i><span style=\"font-weight: 400;\">cannot officially diagnose.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In Osteopathy standards of practise it is quite clear - <a href=\"https://www.osteopathy.org.uk/news-and-resources/document-library/osteopathic-practice-standards/updated-osteopathic-practice-standards/updated-ops-01092018.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">HERE A4 7; A6 2.3, C1 1.3,1.4</a></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also in physiotherapy practise - <a href=\"https://www.hcpc-uk.org/globalassets/resources/standards/standards-of-proficiency---physiotherapists.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">HERE 14.8</a></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are unsure we recommend you talk to a membership organisation to ask for clarification. Alternatively talk to Gary Benson via the STA, who is extremely proactive in communicating the remit of every level of ‘sports therapist’ from a short workshop right up to degree level. He is also the founder of the STA, which is a not for profit organisation that supports ALL sports therapists and bodyworkers in a huge variety of ways.</span>\n\n&nbsp;\n<h1><b>Who Are Classed as Clinicians or Allied Health Professionals?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The </span><a href=\"http://www.hcpc-uk.org/\"><b>Health and Care Professions Council</b></a><span style=\"font-weight: 400;\"> are an organisation which regulates health, psychological and care professionals in the United Kingdom. They set standards, hold a register, quality assure education and investigate complaints. They regulate:</span>\n<table>\n<tbody>\n<tr>\n<td>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Arts therapists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Biomedical scientists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Chiropodists/Podiatrists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Clinical scientists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Dieticians</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Hearing aid dispensers</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Occupational therapists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Operating department practitioners</span></li>\n</ul>\n</td>\n<td>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Orthoptists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Paramedics</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Physiotherapists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Practitioner psychologists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Prosthetists/Orthotists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Radiographers</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Speech and language therapists.</span></li>\n</ul>\n</td>\n</tr>\n</tbody>\n</table>\n&nbsp;\n<h1><b>How Level 3 Sports Massage Has Changed From Pre 2009-Now</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Gary explains here to try and offer some level of clarity in terms of the evolution of the education of ‘sports therapists’ at each level…</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Level 3 Sports Massage qualification issued before 2009, included remedial techniques and insurable for “treating” injuries</span></i>\n\n<i><span style=\"font-weight: 400;\">Level 3 Sports Massage qualification issued between 2009 and 2014 MAY have included remedial techniques and MAY be insurable for “treating” injuries</span></i>\n\n<i><span style=\"font-weight: 400;\">Level 3 Sports Massage qualification issued 2015 - present does not include remedial techniques and is not insurable to “treat” injuries and does not contain prerequisite criteria to access Dry Needling or other invasive treatment courses.</span></i>\n\n<i><span style=\"font-weight: 400;\">Level 3 Sports Massage is aligned to 1 or 2 National Occupational competencies </span></i>\n\n<i><span style=\"font-weight: 400;\">Level 4 Sports Massage qualifications, since launched are insurable to ‘treat” injuries</span></i>\n\n<i><span style=\"font-weight: 400;\">Level 4 Sports Massage is aligned to 2 or 3 National Occupational competencies </span></i>\n\n<i><span style=\"font-weight: 400;\">Level 5 Sports Massage as Level 4 above</span></i>\n\n<i><span style=\"font-weight: 400;\">Level 5 Sports Massage is aligned to 3 or 4 National Occupational competencies </span></i>\n\n&nbsp;\n<h1><b>Research Education Providers With Integrity</b></h1>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Private training providers use numerical descriptors for courses that MAY not align with  QCF/RQF qualification levels and are for marketing purposes only.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Sports Therapy is aligned to 14 National Occupational competencies but still not able to diagnose as this is the preserve of Allied Health Professionals or Regulated Professions as mentioned above (Osteopathy, Physiotherapy etc)</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">There are variations in Sports Therapy qualifications across FdSc, BSc and Diploma courses, the latter do not appear on any qualification framework.</span></i>\n\n&nbsp;\n<h1><b>It’s Your Responsibility...</b></h1>\n<span style=\"font-weight: 400;\">If you want to keep up with the direction these industries are going in (even more so since lockdown) then check your education provider for their evidence of quality, speak to different insurance brokers about your training and the relevant cover (it\'s your responsibility to make sure you\'re covered) and stay on top of the very latest information through your accrediting bodies like CIMSPA.</span>\n\n<span style=\"font-weight: 400;\">Things change, as you can see from what Gary shared above, and sometimes without warning as lockdown has proven, so committing to good quality education, regular CPD’s, appropriate insurance cover and then </span><i><span style=\"font-weight: 400;\">PRACTICING WITHIN YOUR REMIT</span></i><span style=\"font-weight: 400;\"> protects everyone while </span><i><span style=\"font-weight: 400;\">INCREASING CONFIDENCE </span></i><span style=\"font-weight: 400;\">both in ourselves AND in how we are perceived as an industry. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We give all of this support and guidance to our Biomechanics Coaches via the Intrinsic Biomechanics Association &amp; with the support of the Sports Therapy Association.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Challenge the system!</span>\n\n&nbsp;\n<h1><b>Building Your Referral Network</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are in the process of trialling a brand new online </span><b><i>Clinical Clearance Consultation System</i></b><span style=\"font-weight: 400;\"> that can speed up the process for PT’s &amp; ST’s in gaining clinical input, with meaningful transfer of information as guided by the government for consistent duty of care throughout the entire process.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More information coming soon!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">During lockdown, here at Biomechanics Education, we have been working hard to support as many professionals as possible to help the nation keep moving well and more freely. </span>\n\n<span style=\"font-weight: 400;\">We view our role as vital in contributing to the health and wellness of everyone as much as possible. We can help more people through joining forces and sharing information we have with you about movement improvement techniques that can be taught, learned, delivered and received both online and in person.  </span>\n\n<span style=\"font-weight: 400;\">So to enable you to sustain your ongoing professional development and service delivery while finances are tight we have come up with what we think is an unbelievable investment.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We know the current situation sucks but there is light at the end of the tunnel now. </span>\n\n<span style=\"font-weight: 400;\">And if you would like to add new skill’s to your locker then this is for you….</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Would YOU Like To Access Our Lockdown Bundle?</b></a></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are doing all we can to support and help YOU all during the period of lockdown. So not only did we create a </span><b>Lockdown Bundle</b><span style=\"font-weight: 400;\"> we have also created a plan that means you pay </span><b>ONLY £397</b><span style=\"font-weight: 400;\"> to access:</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">The Lockdown Bundle;</span></a></h1>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pelvic &amp; Spine Biomechanics Online Assessment &amp; Exercise Skills</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">iMoveFreely Instructor Online Training</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Introduction to Running Biomechanics</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Fundamental principles of movement analysis online course</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">5 Steps to a successful online presence webinar </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">1:1 phone consultation with Rachel France </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Feedback and support during lockdown</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">CIMSPA Membership for 1 year</span></li>\n</ul>\n<h1><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">VIEW THE LOCKDOWN BUNDLE BY CLICKING HERE </a></h1>','Sports Therapists… Are You Actually Qualified To “Treat” Injuries?','','draft','closed','closed','','sports-therapists-are-you-actually-qualified-to-treat-injuries','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=22301',0,'post','',0),(22306,0,'2020-06-03 09:59:46','2020-06-03 09:59:46','','jesper-aggergaard-CEM52sAHR80-unsplash','','inherit','open','closed','','jesper-aggergaard-cem52sahr80-unsplash','','','2020-06-03 09:59:46','2020-06-03 09:59:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/06/jesper-aggergaard-CEM52sAHR80-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(22612,0,'2020-06-15 10:58:29','2020-06-15 10:58:29','','CIMSPA-Education-Partner-Training-Provider-Logo-Navy-RGB','','inherit','open','closed','','cimspa-education-partner-training-provider-logo-navy-rgb','','','2020-06-15 10:58:29','2020-06-15 10:58:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/06/CIMSPA-Education-Partner-Training-Provider-Logo-Navy-RGB-1.png',0,'attachment','image/png',0),(22617,3,'2020-06-15 14:25:09','2020-06-15 14:25:09','<span style=\"font-weight: 400;\">It is the question on everyone\'s lips, so let\'s explore it….</span>\n\n&nbsp;\n<h1><b>What Has Changed?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">One way of looking at this is that we have been shunted forwards 10-15 years when it comes to technology in our industry.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Those (like me) who have always been adamant about the face to face aspect of our work have had to adapt very quickly to survive the effects of the virus and being forced into a lockdown. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have had to find ways to communicate online to stay in touch and offer our help while everyone has had both limited access to or no access to resources in gyms or facilities. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have had to get creative with bodyweight, household items, engagement tactics and communication skills. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have been encouraged to find lower cost solutions for those less financially able to afford our services either just now or always have.</span>\n\n<span style=\"font-weight: 400;\">All of this also under the cloud of fear about the risk of losing our vulnerable loved ones.</span>\n\n&nbsp;\n<h1><b>What Has Happened As A Result?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have become more technically savvy maybe, I certainly have!</span>\n\n<span style=\"font-weight: 400;\">Our confidence dropped and then rose again as we discovered solutions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We realised (having underestimated) how much we COULD do online AND how much clients could enjoy it!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We discovered new commercial pathways to reach even more people, maybe even your old school buddy who now lives 300 miles away…! </span>\n\n<span style=\"font-weight: 400;\">How cool is that!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We also realised maybe how little we could spend by stripping back our costs out of necessity. I am sure many of us have noticed how much we might have been spending on things we probably didn\'t really need…!?</span>\n\n&nbsp;\n<h1><b>What Does This All Mean?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well if I am honest, we all feel a certain degree of anxiety simply due to these unprecedented circumstances and the unknown. Yet I also feel there are positive things we could take from this whole experience, long term. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having done a small poll on social media to ask what people did NOT miss during lockdown, I learned it has been a break for those who were stuck in that groundhog day, rushing around with no time to think, frustrated by not quite getting everything done, working long hours and feeling stuck in the slog. I also asked in my poll what people did miss and almost unanimously they stated physical contact, hugs and human contact.</span>\n\n&nbsp;\n<h1><b>What Does The Future Look Like For The Fitness Industry?</b></h1>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Online training is here to stay &amp; so the quality will improve dramatically</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Teaching PT’s how to deliver an online service will become apart of qualifications </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Online training will expose weak players</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Group training will overtake 1:1 for the face to face aspect of exercise for cost effectiveness </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Training clients all over the world will be commonplace</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">While we have been discussing the effects of Covid-19 on our future, I also want to mention here my previous blogs about CIMSPA’s Chartered status and how they are both moulding the future of our industry. </span>\n\n<span style=\"font-weight: 400;\">So further predictions with this in mind…...</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Displaying your insurance &amp; qualification certificates will become a requirement </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Clients will want to know you have Chartered Status</span></li>\n</ul>\n&nbsp;\n<h1><b>What Should We Do? Expect?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This really comes down to us, each of us individually and collectively.</span>\n\n<span style=\"font-weight: 400;\">If we listen, learn and invest into a carefully thought out future business plan that has all of the old traits blended with our plethora of new traits - surely that can only mean one thing?</span>\n\n<span style=\"font-weight: 400;\">We will bounce back!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The UK (and everywhere) has been conditioned for the last 3 months to think about their physical health, to invest wisely into it, to take care of their mental health, to support each other….WE are the movement and exercise experts. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WE are the ones who have sustained whatever we could offer and some are now able to offer more services than ever before, with lower costs, at lower prices!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is our voices that have been heard when we demanded more standards, better education, more skills, better recognition and look at us now!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone wants to access our services and there is plenty of room for everyone too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Together we have the skills, the ability and the resilience to provide what the government has encouraged the entire nation to stick to above anything else over the lockdown - movement and exercise.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With the emergence of fabulous applications like <a href=\"https://herspirit.co.uk/\" target=\"_blank\" rel=\"noopener noreferrer\">HERSPIRT</a>, the rapid growth of <a href=\"https://www.cimspa.co.uk/\" target=\"_blank\" rel=\"noopener noreferrer\">CIMSPA</a> who have absorbed REPS membership and education companies doing all they can to offer you online education programmes in an endeavour to support you while you have the time to study during lockdown….we are still adapting and growing in a fluid economy that is unable to predict anything. </span>\n\n&nbsp;\n<h1><b>Can We Predict What The Future?</b></h1>\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Sure why not?</span>\n\n<span style=\"font-weight: 400;\">We can schedule time for positive action…... right now! Go on, do it! Find your diary….we will wait!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok now you\'re back, we can book CPD’s and courses to improve our knowledge and skills while we can and while its cheaper! Yes add this to your diary now….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can hone and practise our ability to deliver movement programmes online - with a view to this complimenting our face to face services. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we ALL do ALL of the above sure we can predict a bright future for our wonderful industry?!!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PLEASE don\'t get left behind...reach out if you need some help!</span>\n\n&nbsp;\n<h1><b>What Can WE Do To Help YOU?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We would like to hear from you about your biggest struggles, your ideas and thoughts for the future and ways in which you feel Biomechanics Education might be able to help…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One thing you have been asking of us has been online education and so we have done this and created an entire portfolio including the amazingly popular LOCKDOWN BUNDLE </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You also asked for cheaper monthly payments for the <a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Biomechanics Coach Diploma</a> payment plan so here it is:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have a brand new structure and payment plan for our <a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Biomechanics Coach Diploma</a> that should enable anyone who has been considering attending for some time to start immediately!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We DO NOT want to make anyone financially uncomfortable but we DO want to help!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our brand new £100pm plan gives you ALL you need to up skill, in your own time, with blended learning resources and both online and face to face workshops that are all CIMSPA &amp; STA accredited.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We want to help as so many of you are wanting to access this course so we have created a plan that we hope will help at this current time!</span>\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">LOOK &amp; BOOK HERE - Diploma in Biomechanics Coaching</span></a></h1>\n&nbsp;','What Does The Future Look Like For The Fitness Industry?','','draft','closed','closed','','what-does-the-future-look-like-for-the-fitness-industry','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=22617',0,'post','',0),(22619,0,'2020-06-15 14:18:00','2020-06-15 14:18:00','','lindsey-saenz-kR3X9NxgW7E-unsplash','','inherit','open','closed','','lindsey-saenz-kr3x9nxgw7e-unsplash','','','2020-06-15 14:18:00','2020-06-15 14:18:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/06/lindsey-saenz-kR3X9NxgW7E-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(22621,0,'2020-06-15 14:24:33','2020-06-15 14:24:33','','drew-beamer-xU5Mqq0Chck-unsplash','','inherit','open','closed','','drew-beamer-xu5mqq0chck-unsplash','','','2020-06-15 14:24:33','2020-06-15 14:24:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/06/drew-beamer-xU5Mqq0Chck-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(22622,0,'2020-06-15 14:24:47','2020-06-15 14:24:47','','martin-sanchez-JQ0YVavMKLo-unsplash','','inherit','open','closed','','martin-sanchez-jq0yvavmklo-unsplash','','','2020-06-15 14:24:47','2020-06-15 14:24:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/06/martin-sanchez-JQ0YVavMKLo-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(22758,3,'2020-06-23 04:37:17','2020-06-23 04:37:17','<h1><b>PICK ME!</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all seek approval and yet what does it matter what other people think?</span>\n\n<span style=\"font-weight: 400;\">For some reason we have the desire to fit in and be accepted by those around us. If you watch programmes that involve singing or dancing competitions on TV it’s ALL about acceptance and being chosen.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does this differ when we are seeking approval of new clients?</span>\n\n<span style=\"font-weight: 400;\">Are we not simply in competition with others to be picked?</span>\n\n<span style=\"font-weight: 400;\">Pick me!</span>\n\n<span style=\"font-weight: 400;\">Pick me!</span>\n\n<i><span style=\"font-weight: 400;\">Why pick me?</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is like a continuous cycle of wanting to be chosen!</span>\n\n&nbsp;\n<h1><b>Does The Best Singer Always Get Picked? </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does the best PT get all the clients?</span>\n\n<span style=\"font-weight: 400;\">How do you demonstrate that you are ‘the one’?</span>\n\n<span style=\"font-weight: 400;\">How do you stand out from the crowd?</span>\n\n<span style=\"font-weight: 400;\">How will you become the chosen one?</span>\n\n<span style=\"font-weight: 400;\">WHY would they PICK YOU?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">No, you know as well as I do, that the best singer doesn\'t necessarily get picked, but the ones who do will most likely catch your heartstrings because they tell you their story. They are open and honest about who they are and what they want to achieve.  </span>\n\n<span style=\"font-weight: 400;\">As a trainer or coach you may notice we can become more ‘popular’ when we share our story. Clients feel that they know us, this enables them to connect with us which is vital if we want to attract new clients and gain trust.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ask yourself what makes YOU pick someone when it comes to choosing your singing competition winner, or more to the point, how do you pick someone when you’re investing in services?</span>\n\n<span style=\"font-weight: 400;\">Consider that really hard for a moment…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you simply pick the cheapest? </span>\n\n<span style=\"font-weight: 400;\">Do you pick the easiest to access? </span>\n\n<span style=\"font-weight: 400;\">Do you pick the one with certain certificates? </span>\n\n<span style=\"font-weight: 400;\">How do you KNOW who is the ‘best’ if you have never experienced what they offer?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How can we enable a client to experience us, our service or something that means they feel they trust us enough to invest in our time?</span>\n\n&nbsp;\n<h1><b>How Do You Get Picked Amongst The Competition?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Use Your Story &amp; Your Client\'s Story!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First share YOUR story about why you became a PT, what it means to you to help people and how you intend to do that. Hit an emotional spot, be true to yourself and they will see that and most importantly feel it. Speak from your heart and let them know you care. Speak to the camera like you are talking directly to the person you see as your perfect client. </span>\n\n<span style=\"font-weight: 400;\">Talk to an individual but know you are speaking to many. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Second, invite your happy present clients to share with you what they enjoy most about your sessions and offer them a free session if they do it on camera!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Its so simple and remember people buy on emotion far more than they buy for necessity.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Think about this next time you experience great service…..</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Click here and PICK ME!!</strong></a></h1>\n&nbsp;','PICK ME! - Seeking Approval','','draft','closed','closed','','pick-me-seeking-approval','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=22758',0,'post','',0),(22760,0,'2020-06-22 14:08:51','2020-06-22 14:08:51','','felix-koutchinski-FOro6jhMw30-unsplash','','inherit','open','closed','','felix-koutchinski-foro6jhmw30-unsplash','','','2020-06-22 14:08:51','2020-06-22 14:08:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/06/felix-koutchinski-FOro6jhMw30-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(22780,0,'2020-06-23 04:45:10','2020-06-23 04:45:10','','felix-koutchinski-FOro6jhMw30-unsplash','','inherit','open','closed','','felix-koutchinski-foro6jhmw30-unsplash-2','','','2020-06-23 04:45:10','2020-06-23 04:45:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/06/felix-koutchinski-FOro6jhMw30-unsplash-1-1.jpg',0,'attachment','image/jpeg',0),(22901,3,'2020-06-29 21:07:54','2020-06-29 21:07:54','<span style=\"font-weight: 400;\">Right now we are all feeling challenged by the limitations we are faced with trying to help our clients in achieving their goals.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More and more clients are ‘virtually’ begging for help due to their achy back, sore shoulders, painful knees and weight gain!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet we have been stopped from using gyms, we are forced to work online (unless we can find an open space) wash equipment between every client and keep them a good distance apart….all very annoying, right?!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Are there other ways to help them or at least to consider? </span>\n\n<span style=\"font-weight: 400;\">What more could we do or offer?</span>\n\n<span style=\"font-weight: 400;\">What is going to happen in the future???</span>\n\n&nbsp;\n<h2><b>Is The Personal Trainer’s Role Becoming More Complex?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ultimately our role is to </span><span style=\"font-weight: 400;\">restore our clients movement quality to a more natural state thus enabling them to feel stronger, fitter, faster, lose excess body fat and gain confidence.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sadly lockdown has limited our options but not the ability to educate, demonstrate and offer solutions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Exercise professional’s roles are becoming more and more demanding, seemingly more complex and yet more and more limited, which can feel very frustrating.</span>\n\n&nbsp;\n<h2><b>Biomechanical Causes Of Modern Ailments </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When everything seems to be getting out of hand I find that simplifying things helps calm the crazy going on around us. So when ‘exercise’ seems almost impossible without a gym or appropriate equipment, why not shift our thinking towards NOT ‘exercising’ instead?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I mean is when you think about it ‘exercise’ is actually often a replacement for lost movement capacity or a reduction in the required time spent being dynamic to remain physically healthy…...</span>\n\n&nbsp;\n\n<b><i>Definition</i></b><i><span style=\"font-weight: 400;\">. </span></i><b><i>Exercise</i></b><i><span style=\"font-weight: 400;\">; activity requiring physical effort, carried out to sustain or improve health and fitness.</span></i>\n\n&nbsp;\n\n<b><i>Exercise</i></b><i><span style=\"font-weight: 400;\"> is </span></i><b><i>physical activity</i></b><i><span style=\"font-weight: 400;\"> that is planned, structured, and repetitive for the purpose of conditioning any part of the body. </span></i><b><i>Exercise</i></b><i><span style=\"font-weight: 400;\"> is used to improve health, maintain fitness and is important as a </span></i><b><i>means</i></b><i><span style=\"font-weight: 400;\"> of physical rehabilitation.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet when we l</span><span style=\"font-weight: 400;\">ook at the <a href=\"https://www.who.int/dietphysicalactivity/factsheet_adults/en/\" target=\"_blank\" rel=\"noopener noreferrer\">guidelines for movement health from the W.H.O….</a></span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Adults aged 18–64 should do at least 150 minutes of moderate-intensity aerobic physical activity throughout the week or do at least 75 minutes of vigorous-intensity aerobic physical activity throughout the week or an equivalent combination of moderate- and vigorous-intensity activity.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic activity should be performed in bouts of at least 10 minutes duration.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">For additional health benefits, adults should increase their moderate-intensity aerobic physical activity to 300 minutes per week, or engage in 150 minutes of vigorous-intensity aerobic physical activity per week, or an equivalent combination of moderate- and vigorous-intensity activity.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Muscle-strengthening activities should be done involving major muscle groups on 2 or more days a week.</span></li>\n</ul>\n<span style=\"font-weight: 400;\">….there is no mention of ‘exercise’ or reps or sets.  </span>\n\n<span style=\"font-weight: 400;\">How does this translate into options? Nothing stating weight lifting, lunges, bicep curls, 15 reps x 5 sets, 30 second recovery\'s etc etc</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So when you think about the options for achieving “....</span><i><span style=\"font-weight: 400;\">150 minutes of moderate-intensity aerobic physical activity throughout the week…” </span></i><span style=\"font-weight: 400;\">that leaves a huge amount of room for interpretation. As does “....</span><i><span style=\"font-weight: 400;\">Muscle-strengthening activities should be done involving major muscle groups on 2 or more days a week</span></i><span style=\"font-weight: 400;\">…”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cleaning and gardening can fit in here, painting &amp; decorating, moving furniture, playing with kids in the garden, litter picking, hiking, chopping wood, dog walking, activities that can improve the home or environment or even living conditions! Climbing trees, hanging from branches and carrying things up and down stairs. Rearranging things, digging holes, cleaning windows...some of this stuff could even save our client’s money!</span>\n\n&nbsp;\n<h2><b>So What?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we focus on what we can achieve with our clients through whatever medium we have available, get creative with our programming and educate our clients on long term health models, are we not likely to have more success long term? Of course we all know this from lockdown.</span>\n\n<span style=\"font-weight: 400;\">By using their homes as their gym, creating easy to use household items as tools and bodyweight sessions will have replaced the use of gym equipment for many of you already I am quite sure.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But is it enough? Are our clients now at a higher risk since we are so limited? What more can we do?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Movement improvement techniques do not only improve movement, they reduce risk as well as low grade modern ailments caused by poor biomechanics. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While clients are unable to use the gym our job is to show them how to take advantage of every opportunity to avoid movement degradation while improving movement quality.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Of course the gym is a great place for sculpting and strengthening and having access to lots of equipment for variety with BUT surely we can take advantage of right now?</span>\n\n&nbsp;\n<h2><b>BOTH Exercise &amp; Natural Movement Then?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes there is room for both!</span>\n\n<span style=\"font-weight: 400;\">And here we have a solution for those of you with tricky clients who are complaining of those modern ailments, back ache, sore shoulders and knee pain. </span>\n\n<span style=\"font-weight: 400;\">In the words of Katy Bowman…”</span><i><span style=\"font-weight: 400;\">Natural movement solves a myriad of issues”</span></i><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">iMoveFreely returns our intrinsic biomechanics to a more natural state, it has proven over and over for decades to restore natural movement thus reducing modern ailments caused by biomechanical issues. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Movement improvement programmes like iMoveFreely don\'t replace medical interventions and shouldnt be used as such. Yet they DO what they suggest if we consider the whole body.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">iMoveFreely cardio</span>\n\n<span style=\"font-weight: 400;\">iMoveFreely strength</span>\n\n<span style=\"font-weight: 400;\">iMoveFreely pilates </span>\n\n<span style=\"font-weight: 400;\">iMoveFreely yoga</span>\n\n<span style=\"font-weight: 400;\">iMoveFreely at your desk</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Make them your own style or blend them into circuits or design an iMoveFreely clinic where you educate clients on how to utilise the techniques during long periods of sitting working at home.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Learn online AND face to face how to instruct an iMoveFreely session.</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor-online-virtual-workshop/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>iMoveFreely Instructor Online CPD Training</b></a></h1>\n<h1><b>or </b></h1>\n<h1><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Get the Lockdown CPD Bundle </b></a></h1>','Should We Encourage Clients To Exercise Less?','','draft','closed','closed','','should-we-encourage-clients-to-exercise-less','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=22901',0,'post','',2),(23077,3,'2020-07-07 16:05:06','2020-07-07 16:05:06','<h1><b>How Does The Fitness Industry Need To Adapt…?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This week\'s Juicemail is primarily to provoke thinking however we would like to understand from you what you feel is required to support you, as individuals and small businesses, to adapt.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The virus has really shaken things up for everyone, and there is a chance we ain\'t seen nothing yet! As the fitness industry is preparing to emerge from lockdown, how do </span><i><span style=\"font-weight: 400;\">WE</span></i><span style=\"font-weight: 400;\"> need to adapt to meet the needs of this new world and are there opportunities amidst the mayhem?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly I would like to assure you that </span><i><span style=\"font-weight: 400;\">WE</span></i><span style=\"font-weight: 400;\"> are stronger together and there are associations, groups, organisations and people who are fighting your corner. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Due to unprecedented circumstances we need to educate, prepare, educate (yes I did say it twice) and be aware of all possible eventualities. This breeds confidence and enables us to lead the nation towards improved physical health that will benefit individuals as well as the nation long term. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can unburden the NHS through guided exercise and improved movement but what exactly needs to happen?</span>\n\n&nbsp;\n<h1><b>Group Discussion</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Last week I spoke on a panel invited together by CIMSPA including: </span>\n\n<span style=\"font-weight: 400;\">Phill Wright Business Transformation Manager CIMSPA</span>\n\n<span style=\"font-weight: 400;\">Colin Huffen Head of Education CIMSPA, </span>\n\n<span style=\"font-weight: 400;\">Steve Osbourne from Cardiff Met Uni</span>\n\n<span style=\"font-weight: 400;\">Sean Greeley of NPE</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We discussed the question </span><i><span style=\"font-weight: 400;\">“How Does The Sport &amp; Physical Activity Sector Need To Adapt…?”  </span></i><span style=\"font-weight: 400;\">from each of our perspectives and we each offered our thoughts based on what we predict from the limited information we have. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With Phill facilitating we discussed; </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How has behaviour changed?</span>\n\n<span style=\"font-weight: 400;\">How does the workforce need to change in this new norm?</span>\n\n<span style=\"font-weight: 400;\">How does delivery need to change? </span>\n\n<span style=\"font-weight: 400;\">How does the message need to adapt?</span>\n\n<span style=\"font-weight: 400;\">How do our products &amp; services need to adapt?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I will share some of my thoughts later in this blog but if you are a member in the CIMSPA Stronger Together facebook page you can go an watch it - </span><a href=\"https://www.facebook.com/groups/cimspa.strongertogether/\"><span style=\"font-weight: 400;\">https://www.facebook.com/groups/cimspa.strongertogether/</span></a>\n\n&nbsp;\n<h1><b>IBA Webinar Discussion &amp; Lectures </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sunday 5th July we invited 2 guest lecturers to speak at our IBA Webinar;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Naomi McArdle MSc, CISSN, from the Platinum Training Institute, Belfast, presented an overview of ‘Exercise &amp; Mental Health: Research &amp; Practice’.  </span>\n\n<span style=\"font-weight: 400;\">Then Hunter Thomson, Health &amp; Safety Expert / Consultant, shared guidance about risk assessments, the law, PPE, government guidance and where to get the most accurate information.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Both offered great insight from their areas of expertise and again if you are an IBA member you can access the recording by hitting reply and asking or if you are not a member you can buy this 3hr webinar for £7! Also hit reply and ask!</span>\n<h1></h1>\n<h1><b>What Statistics Do We Have To Help Us Moving Forwards?</b></h1>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">According to the </span></i><a href=\"https://www.ipse.co.uk/ipse-news/news-listing/coronavirus-ipse-activity-and-advice-freelancers.html\"><i><span style=\"font-weight: 400;\">Association of Independent Professionals and the Self-Employed (IPSE)</span></i></a><i><span style=\"font-weight: 400;\">, prior to the coronavirus outbreak, self-employed people contributed £305 billion to the British economy.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sport England’s insight on the changes in attitudes/behaviours towards physical activity during lockdown should also provoke discussion and I invite you to consider your own service offering while taking these numbers into account….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Savanta ComRes (member of the British polling council) conducted this data capture over 8 x weekly ‘waves’ across 4 days (Fri-Mon)in Englan</span><span style=\"font-weight: 400;\">d</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">‘Around 20% of adults not active on any day; and around 33% active on at least 5 days.’</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">‘Other Circumstances are also correlated with </span></i><i><span style=\"font-weight: 400;\">lesser</span></i><i><span style=\"font-weight: 400;\"> rates of inactivity.’</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">These numbers below indicate the % of each group who have done 0 days of 30 mins+ physical activity (Wave 1 data - 03/04/20-11/05/20)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">24% without kids in the house v’s 12% with kids (will do 0 days of physical activity)</span>\n\n<span style=\"font-weight: 400;\">25% without outdoor space v’s 18% with outdoors space</span>\n\n<span style=\"font-weight: 400;\">28% that live alone v’s 18% live with others </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">‘28% of older people (55+) not doing 30 mins+ activity on any given day’</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Question: Can we adapt to ensure inclusivity for those in different circumstances and what does this mean for our businesses?</span>\n\n<i><span style=\"font-weight: 400;\">In wave 3: of those who viewed activity/ fitness/ exercise content.. 73% cited YouTube platform used; 19% Facebook; 19% Instagram; 9% the ‘website of my gym.’</span></i>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">60% adults walked for weekly exercise </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">18% run or jog</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">12% cycled</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">21% home activity, fitness or exercise class (not viewed)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">21% home activity, fitness or exercise class (viewed online)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">15% informal active play in the house or garden  </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">58% adults stated they now have new habits like walking, jogging, cycling. 8/10 members say they are likely to continue with gym </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally this graph shows apprehension about returning to gyms…..</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-23080\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/07/Screenshot-2020-07-06-at-11.06.38.png\" alt=\"\" width=\"788\" height=\"704\" />\n\n&nbsp;\n\n&nbsp;\n<h1><b>So How Does The Fitness Industry Need To Adapt…?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">From the information I have read, the professionals I have spoken to, the panels I have discussed this with and the information I have found on the most reliable sources, plus some common sense; here are my thoughts &amp; suggestions on how we might want to consider adapting….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are things that will affect our businesses &amp; things that </span><i><span style=\"font-weight: 400;\">may </span></i><span style=\"font-weight: 400;\">affect them, let\'s break them down so we can consider each and prepare to adapt ourselves and our businesses systematically and logically. </span>\n<h1></h1>\n<h1><b>Risk &amp; Risk Assessment </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Risk assessing has NOT changed!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is the same as it was before covid and we do it all of the time. We assess risk daily, as well as periodically when circumstances change. </span>\n\n<span style=\"font-weight: 400;\">So please do not panic! Think of it like this:</span>\n\n<span style=\"font-weight: 400;\">You assess the risk on the road before you cross it checking for cars coming</span>\n\n<span style=\"font-weight: 400;\">You assess risk in the gym environment before you use it by checking if the weights are lying around.</span>\n\n<span style=\"font-weight: 400;\">You assess risk without thinking too much about it simply to protect yourself when using scissors, a knife or an electric power tool. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The key factors to consider when risk assessing for your work environment:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Only if there are 5 or more employees is it law to have a written risk assessment. However good practise would be to have something documented for the worst case scenario and to highlight if you need tp put anything in place.</span>\n\n<span style=\"font-weight: 400;\">Health &amp; Safety Consultant, Hunter Thomson, suggests using these 3 simple questions for logic and common sense to evaluate:</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">HAZARDS? - what can you see (or not see) that could be deemed a hazard?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">SEVERITY? - what would the severity of that hazard be should it occur?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">LIKELIHOOD? - how likely is it to happen?</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are lots of templates around or you could make your own and then ask a colleague, or several, to check it over and see if they have any suggestions to add. Then repeat the process periodically to ensure its up to date.</span>\n\n&nbsp;\n<h1><b>Duty of Care</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have a duty of care to help and educate our nation in moving better and with less pain. Our role is also to empower and enable as many people as possible towards a quality of life that can begin to unburden the NHS of many modern ailments caused by poor lifestyle choices. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We MUST see our role in this way and understand, behave and attain the right skills to do this to show the nation what we are capable of as a profession. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">How do we do this?</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We MUST demand better education, not cheaper or easier to access but better quality that is of a standard comparable to our camarades in the clinical world.</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">How good is your report writing?</span></i>\n\n<i><span style=\"font-weight: 400;\">How well do you transfer meaningful information about clients between a multidisciplinary team?</span></i>\n\n<i><span style=\"font-weight: 400;\">How good is your vocabulary when speaking to the medical world?</span></i>\n\n<i><span style=\"font-weight: 400;\">How much detail do you know about what your insurance covers you for?</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should also aim to deliver our services to as many people as possible, in whatever way we can. </span>\n\n<span style=\"font-weight: 400;\">Design a system that provides an appropriate service, to the right person, at the right time, from the right professional and prioritising the clients welfare.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WAIT...there\'s more…</span>\n\n&nbsp;\n<h1><b>Service Provision </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We now have a digital world that is a commercial no brainer! </span>\n\n<span style=\"font-weight: 400;\">When we decided to become trainers or coaches we didn\'t do it for the high income and so seem to get uncomfortable when talking about money and thinking</span><i><span style=\"font-weight: 400;\"> commercially….</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">LIsten, we MUST THINK commercially or we won\'t survive and then we cannot offer our service and help people!</span>\n\n<span style=\"font-weight: 400;\">So start thinking about the commercial opportunity to HELP MORE PEOPLE rather than simply make more money, with less cost.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This shunt forward in time with technology has offered us this fantastic opportunity to get online, reduce costs AND our need to be present WITHOUT the cost of staff!.....for at least a portion of our service offering, which means we can serve even more people all around the nation and even the world!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WOW!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We must move (scuse the pun) with the times and adapt by educating ourselves and maybe watching what others do but please don\'t get left behind or you could find yourself with no business due to the competition. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Like it or not (if self employed or a director) you are in the business of business!</span>\n\n&nbsp;\n<h1><b>Behaviour Change </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is a subject we need to study further and be aware of since behaviour has changed, attitudes towards health and fitness have changed and all of this means we need to be mindful of our message and platforms we use for delivering our services. Researching modern behaviour change studies will be vital. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some gym goers are now afraid</span>\n\n<span style=\"font-weight: 400;\">Some no gym goers now want to go</span>\n\n<span style=\"font-weight: 400;\">Some sedentary people are no longer sedentary</span>\n\n<span style=\"font-weight: 400;\">Some active people are no longer active </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe you could create a questionnaire for your clients or members to better understand how they are feeling about their overall health, going out to your facility/gym or even for a walk? </span>\n\n<span style=\"font-weight: 400;\">This market research will help you to adapt to their altered patterns of behaviour or views of health and fitness. </span>\n\n<span style=\"font-weight: 400;\">PLUS the act of asking them their views/opinions lets them know how much you care and wish to accommodate them.</span>\n\n&nbsp;\n<h1><b>Mental Health Awareness </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This has got to be something we educate ourselves more on moving forwards due to the implications of covid and the sheer number of cases both diagnosed and undiagnosed, of individuals with some mental health issue or concern, and the numbers are quite possibly on the rise!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also the fact that many of our clients won\'t even share this detail with us due to the stigma still attached and yet studies show mental health, and the medications that may be prescribed, can impact on their physical performance and therefore programme design. </span>\n\n<span style=\"font-weight: 400;\">Yet studies also show clearly the benefit of being physically active for our mental health and wellbeing </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This subject is one I will be immersing myself into with the </span><b><i>Level 4 Award in Physical Activity for Adults with Mental Health Conditions</i></b>\n\n<span style=\"font-weight: 400;\">qualification through Platinum Training Institute, Queens Belfast Uni </span><span style=\"font-weight: 400;\">since they are a training provider with integrity and to encourage you to do the same.</span>\n\n&nbsp;\n<h1><b>Finally…...</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">May I suggest that, if you haven\'t already, you set aside some time to consider the points raised in this blog and questions like these below…...</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel equipped with an awareness of your client’s vulnerability? </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel attitudes towards health have changed? </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you need to alter your hygiene/ cleaning protocols?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Are you expecting costs to your business to increase or decrease?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Have you discovered a new work / life balance?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you / could you have more options/packages/value add’s with a digital service?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Has your income decreased per session due to distancing regulations? </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel you need extra training in risk?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How important do you feel the exercise professionals role is now more important or less so?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Have you considered the thought we may have simply been nudged forward 10-15yrs technically?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How will you reach more people? </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How do you feel about your duty of care to help the nation?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Would you be happily, &amp; publicly, transparent about your qualifications?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel that the education standards &amp; quality in our industry are adequate for the demand today?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel you would benefit from education into how the virus spreads?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you think digital fitness is here to stay?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you think the 400% increase in home gym equipment sales could be detrimental to gyms?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel you are good at embracing change?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How do you measure the health &amp; safety of your business?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Has your insurance changed? Does it need to? How would you know?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you plan to add technology into your programming?</span></li>\n</ul>\n<span style=\"font-weight: 400;\">Please do hit reply if you wish to share or discuss your fears, frustrations, ideas and thoughts - let\'s do this together!</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">References;</span></h3>\n<a href=\"https://www.platinumtraininginstitute.com/Personal-Trainer-Course/level-4-award-in-physical-activity-for-adults-with-mental-health-conditions/\"><span style=\"font-weight: 400;\">https://www.platinumtraininginstitute.com/Personal-Trainer-Course/level-4-award-in-physical-activity-for-adults-with-mental-health-conditions/</span></a><span style=\"font-weight: 400;\"> </span>\n\n<a href=\"https://www.cimspa.co.uk/\"><span style=\"font-weight: 400;\">https://www.cimspa.co.uk/</span></a>\n\n<a href=\"https://www.sportengland.org/\"><span style=\"font-weight: 400;\">https://www.sportengland.org/</span></a>\n\n<a href=\"https://www.wellnessliving.com/blog/covid-19-changing-fitness-industry-forever/\"><span style=\"font-weight: 400;\">https://www.wellnessliving.com/blog/covid-19-changing-fitness-industry-forever/</span></a>\n\n<a href=\"https://www.thetrainingroom.com/blog/fitness/may-2013/changes-in-the-fitness-industry\"><span style=\"font-weight: 400;\">https://www.thetrainingroom.com/blog/fitness/may-2013/changes-in-the-fitness-industry</span></a>\n\n<a href=\"https://www.adammendler.com/blog/gymguyz-ceo-josh-york\"><span style=\"font-weight: 400;\">https://www.adammendler.com/blog/gymguyz-ceo-josh-york</span></a>\n\n<a href=\"https://www.glofox.com/blog/fitness-technology-is-transforming-the-industry/\"><span style=\"font-weight: 400;\">https://www.glofox.com/blog/fitness-technology-is-transforming-the-industry/</span></a>\n\n<a href=\"https://www.welltodoglobal.com/how-the-fitness-industry-is-rising-to-the-covid-19-challenge/\"><span style=\"font-weight: 400;\">https://www.welltodoglobal.com/how-the-fitness-industry-is-rising-to-the-covid-19-challenge/</span></a>\n\n<a href=\"https://frntofficesport.com/fitness-industry-digital-changes/\"><span style=\"font-weight: 400;\">https://frntofficesport.com/fitness-industry-digital-changes/</span></a>\n\n<a href=\"https://www.precor.com/en-us/resources/how-clubs-can-survive-in-a-changing-industry\"><span style=\"font-weight: 400;\">https://www.precor.com/en-us/resources/how-clubs-can-survive-in-a-changing-industry</span></a>\n\n&nbsp;\n\nYour feedback is invaluable to our offering, why not share it with us by leaving comments and feed back about how covid has affected your business and what you feel we can do to help?\n\nor\n\nemail info@biomechanicseducation.com\n\n&nbsp;','How Does The Fitness Industry Need To Adapt…?','','draft','closed','closed','','how-does-the-fitness-industry-need-to-adapt','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=23077',0,'post','',0),(23078,0,'2020-07-07 15:50:11','2020-07-07 15:50:11','','Screenshot 2020-07-07 at 16.49.55','','inherit','open','closed','','screenshot-2020-07-07-at-16-49-55','','','2020-07-07 15:50:11','2020-07-07 15:50:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/07/Screenshot-2020-07-07-at-16.49.55-e1594137121921-1.png',0,'attachment','image/png',0),(23080,0,'2020-07-07 15:58:18','2020-07-07 15:58:18','','Screenshot 2020-07-06 at 11.06.38','','inherit','open','closed','','screenshot-2020-07-06-at-11-06-38','','','2020-07-07 15:58:18','2020-07-07 15:58:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/07/Screenshot-2020-07-06-at-11.06.38-1.png',0,'attachment','image/png',0),(23081,0,'2020-07-07 16:01:19','2020-07-07 16:01:19','','ani-kolleshi-vu-DaZVeny0-unsplash','','inherit','open','closed','','ani-kolleshi-vu-dazveny0-unsplash','','','2020-07-07 16:01:19','2020-07-07 16:01:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/07/ani-kolleshi-vu-DaZVeny0-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(23138,0,'2020-07-09 11:15:42','2020-07-09 11:15:42','','shutterstock_128700983','','inherit','open','closed','','shutterstock_128700983','','','2020-07-09 11:15:42','2020-07-09 11:15:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/shutterstock_128700983-scaled-1.jpg',0,'attachment','image/jpeg',0),(23139,0,'2020-07-09 11:17:06','2020-07-09 11:17:06','','shutterstock_147789482','','inherit','open','closed','','shutterstock_147789482','','','2020-07-09 11:17:06','2020-07-09 11:17:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/shutterstock_147789482-scaled-1.jpg',0,'attachment','image/jpeg',0),(23140,0,'2020-07-09 11:17:24','2020-07-09 11:17:24','','shutterstock_172528928','','inherit','open','closed','','shutterstock_172528928','','','2020-07-09 11:17:24','2020-07-09 11:17:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/shutterstock_172528928-scaled-1.jpg',0,'attachment','image/jpeg',0),(23141,0,'2020-07-09 11:17:57','2020-07-09 11:17:57','','shutterstock_383061178','','inherit','open','closed','','shutterstock_383061178-2','','','2020-07-09 11:17:57','2020-07-09 11:17:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/shutterstock_383061178-scaled-1.jpg',0,'attachment','image/jpeg',0),(23142,0,'2020-07-09 11:18:24','2020-07-09 11:18:24','','shutterstock_619010450','','inherit','open','closed','','shutterstock_619010450','','','2020-07-09 11:18:24','2020-07-09 11:18:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/shutterstock_619010450-scaled-1.jpg',0,'attachment','image/jpeg',0),(23143,0,'2020-07-09 11:18:41','2020-07-09 11:18:41','','shutterstock_326244254','','inherit','open','closed','','shutterstock_326244254','','','2020-07-09 11:18:41','2020-07-09 11:18:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/shutterstock_326244254-scaled-1.jpg',0,'attachment','image/jpeg',0),(23144,0,'2020-07-09 11:23:25','2020-07-09 11:23:25','','DSC_6800','','inherit','open','closed','','dsc_6800','','','2020-07-09 11:23:25','2020-07-09 11:23:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6800-scaled-1.jpg',0,'attachment','image/jpeg',0),(23145,0,'2020-07-09 11:23:43','2020-07-09 11:23:43','','DSC_6730','','inherit','open','closed','','dsc_6730','','','2024-09-19 15:22:42','2024-09-19 15:22:42','',33066,'https://biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6730-scaled-1.jpg',0,'attachment','image/jpeg',0),(23146,0,'2020-07-09 11:24:04','2020-07-09 11:24:04','','DSC_7052','','inherit','open','closed','','dsc_7052','','','2020-07-09 11:24:04','2020-07-09 11:24:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/DSC_7052-scaled-1.jpg',0,'attachment','image/jpeg',0),(23147,0,'2020-07-09 11:24:24','2020-07-09 11:24:24','','DSC_6608','','inherit','open','closed','','dsc_6608','','','2020-07-09 11:24:24','2020-07-09 11:24:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6608-scaled-1.jpg',0,'attachment','image/jpeg',0),(23148,0,'2020-07-09 11:24:45','2020-07-09 11:24:45','','DSC_6610','','inherit','open','closed','','dsc_6610','','','2020-07-09 11:24:45','2020-07-09 11:24:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6610-scaled-1.jpg',0,'attachment','image/jpeg',0),(23305,3,'2020-07-26 09:39:24','2020-07-26 09:39:24','<span style=\"font-weight: 400;\">WARNING; During lockdown de-conditioning will likely have occurred in our clients depending upon access to equipment, regular personal training/coaching and possibly low motivation levels.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We may have felt the same but for us this has also been the perfect time to educate ourselves, learn new skills and gain new tools to better serve our clients. This blog is about highlighting something we really must consider to avoid risk of injury for our clients both old and new. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Something we could consider is adding a few simple additional calculations to our programme design. </span>\n\n&nbsp;\n<h2><b>Load Management - Why?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Risk reduction and optimisation of performance! </span>\n\n<span style=\"font-weight: 400;\">Risk factors can be intrinsic like age, flexibility, previous injury etc and extrinsic factors can be ability/level, load, force etc. That said risk factors can be present but no injuries may occur so understand here we are wanting to demonstrate our duty of care by reducing risk.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However chronic load application can be missing from training programmes and training really is a balance. As Tim Gabbett says “</span><i><span style=\"font-weight: 400;\">Load being a vehicle to drive clients or athletes to, or from, injury</span></i><span style=\"font-weight: 400;\">”  If load is ramped up too quickly, performance can decline. Increasing capacity involves more than simply increasing load and so this is what we are exploring here in this blog. </span>\n\n<span style=\"font-weight: 400;\">Note; we should also monitor, and take note of, health factors such as sleep, diet, stress, hydration and hormones if not already. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Managing the amount of load our clients bodies go through during our training sessions and programming, overtime is something we are all aware of and holds valuable for very simple and obvious reasons. As a profession we are notoriously reputed for NOT having the kind of assessment and monitoring skills that other practitioners, like clinicians maybe, have. However we can often be the first person a client seeks out when emerging from lockdown.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of our industries main roles is to build endurance strength in our clients bodies, whatever their goal, since we are ‘exercise’ professionals, this more often than not means putting their bodies under load. But how do we ‘measure’ that load? When considering the main factor of a strength requirement (aside from aesthetics) the reason we coach strength training is, in basic form, for...</span>\n\n&nbsp;\n<h2><b>Building Tissue Tolerance</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We want to build tissue tolerance gradually to avoid risk of injury, overtraining or loss of gains or performance. The very basic level of this is in our basic training when we are taught to use reps, sets &amp; kilos in a gym. But this has limitations for measuring tissue tolerance, other than waiting for an injury! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we only think of ‘load’ as the kilos, reps or sets we could miss other important influencing factors. We have all experienced a client with low energy, motivation or post rehab or a weekend warrior who overtrains haven\'t we!?</span>\n\n<span style=\"font-weight: 400;\">So to truly understand the loads their body manages over time it takes more than mapping kilos, reps and sets.</span>\n\n&nbsp;\n<h2><b>Athletic Spectrum</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">After attending Tim Gabbett’s ‘</span><i><span style=\"font-weight: 400;\">Load Management’</span></i><span style=\"font-weight: 400;\"> workshop there were so many magic takeaways from the masses of information he gave us and so I would like to share some of his ideas that he shared with us that day. One of the most profound and useful was a pen and paper formula to measure, monitor &amp; evaluate the overall loads our client’s body is put under. So please understand this content has been taken from his workshop and hopefully condensed into something that can be useful to those of you trainers and coaches who are looking for measuring tools to monitor your clients progress, so you can manage their programming.</span>\n\n<span style=\"font-weight: 400;\">We all know once we can measure something, we can manage it !</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So, Gabbett, recommends if we can put our clients into a load continuum or Athletic Spectrum by calculating a few numbers, then monitor those numbers over time we can identify when they are overtraining or could take advantage of the loads they experience during training based on our monitoring of where they are on the spectrum.</span>\n\n&nbsp;\n<h2><b>Frequency + Volume  + intensity = Load</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This total load can be measured into units which is something we can then monitor and measure over time.</span>\n\n<span style=\"font-weight: 400;\">Often only used in elite sport, why would we NOT use the same simple measuring system for our clients to demonstrate how we are guiding them towards their goals in a calculated way to reduce risk by assessing the overall loads their body is under. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can all be added to a simple graph on a spreadsheet &amp; analysed over weeks/months taking into account all influencers BUT we MUST also record their </span><i><span style=\"font-weight: 400;\">response</span></i><span style=\"font-weight: 400;\"> to the loads so that overtime we can evaluate their </span><i><span style=\"font-weight: 400;\">tolerance</span></i><span style=\"font-weight: 400;\"> to that load. A balance is required in recognising BOTH negative &amp; positive responses to load, is what Gabbett suggests</span>\n\n&nbsp;\n<h2><b>Task Specificity</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Task specific relative capacity is also key so that load management relates to the task at hand. So finding numbers that relate could be include distance, heart rate and speed for a runner for example</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone is on an Athletic Spectrum to some degree and the principles of progressive overload, specificity and recovery are effectively the same for our regular clients and not just our athletes. Using load measurements allows us to manage, periodise and also amend or alter when necessary depending upon their response &amp; also their schedule.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The more we measure, the more we can manage, the more options and alternatives for their programme can be utilised.  </span>\n\n&nbsp;\n<h2><b>Tolerance to Load </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can’t predict injury but we can prepare our client’s </span><i><span style=\"font-weight: 400;\">tolerance to load</span></i><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As suggested, load isn’t the problem BUT the loads that our client’s are not prepared for, are.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Training is needed to allow you to check responses to load and should be followed with adequate recovery. Monitoring over time allows us to adjust their programme according to results.</span>\n\n&nbsp;\n<h2><b>What Does The Spreadsheet Look Like?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When we think about numbers to measure we may view RPE as subjective however this measurement does allow for <em>perception</em> that equipment doesn’t. </span>\n\n<span style=\"font-weight: 400;\">We must also remember our vocabulary may affect clarity so if using this score to understand chronic load over time we need to educate our clients what training feels like for this RPE score and how to communicate it. Ideally it should be reported by the client at 30 minutes after the session for how the actual session felt as opposed to during it. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rating        Descriptor      </span><span style=\"font-weight: 400;\">        </span>\n\n<span style=\"font-weight: 400;\">0                Resting</span>\n\n<span style=\"font-weight: 400;\">1                Very, very easy</span>\n\n<span style=\"font-weight: 400;\">2               Easy</span>\n\n<span style=\"font-weight: 400;\">3               Moderate</span>\n\n<span style=\"font-weight: 400;\">4               Somewhat hard</span>\n\n<span style=\"font-weight: 400;\">5               Hard</span>\n\n<span style=\"font-weight: 400;\">6              -</span>\n\n<span style=\"font-weight: 400;\">7               Very Hard</span>\n\n<span style=\"font-weight: 400;\">8               -</span>\n\n<span style=\"font-weight: 400;\">9               -</span>\n\n<span style=\"font-weight: 400;\">10             Maximal</span>\n\n&nbsp;\n\n<img class=\"size-full wp-image-23307\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/07/Screenshot-2020-07-25-at-13.57.41.png\" alt=\"\" width=\"2644\" height=\"936\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So notice in the graph the use of <em>frequency, intensity &amp; duration</em> to give us the load scores. </span>\n\n<span style=\"font-weight: 400;\">Frequency is shown by the number of days and training sessions.</span>\n\n<span style=\"font-weight: 400;\">Intensity is using the RPE scale x duration which uses the minutes of training.</span>\n\n<span style=\"font-weight: 400;\">Using intensity x duration we get = load for that session or day. </span>\n\n<span style=\"font-weight: 400;\">Then we can total the weekly numbers to get the weekly load. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can then also give us a monthly load and so on. Over time this allows us to monitor and manage the chronic load, thus enabling us to evaluate response and therefore allow us to understand when to manage load by decreasing or increasing it. If our client shows signs of overtraining, fatigue or stress we can reduced load. If they are progressing well we can increase load. Remember noting stressors like overtime at work, family illness, bouts of a cold or even reduced performance during their training session should also be a part of that monitoring response and risk.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This reduces injury risk as much as possible and allows for performance optimisation at the appropriate time for their goal, race, match, game or simply quality of life.  </span>\n\n&nbsp;\n<h2><b>How Do You Decide When &amp; What To Progress or Regress?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">With the measurements in place we can analyse how our client is ‘performing’ at any given period. Noticing their response to load is a bIg part of our role. Gabbett, during his lecture, talked about the 10% rule or ‘gossip rule’ of not increasing more than 10% BUT the rule needs to be contextualised he added.</span>\n\n<span style=\"font-weight: 400;\">Also he recommended being mindful that it doesn\'t necessarily address chronic load or current capacity however w</span><span style=\"font-weight: 400;\">e could use a basic 10% in either direction to de-load or increase load. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><em>What</em> to tweak comes down to your knowledge of the goals, timelines and motivators for your client. So it will to differ from client to client but could be anything from adding or reducing the number of session per week, increasing or decreasing duration of sessions, reducing or increasing recovery, lighter or heavier weights, more or less miles or simply altering from a weights session to a yoga &amp; meditation session. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Communication is key and understanding enough about your client to do the right thing, at the right time, with integrity and from an informed place. Using logic of justification and thinking things through, solutions will come. Just know there are always a variety of options so that\'s where you must trust your judgement and reasoning since you are the best person to help your client, since you know them best.</span>\n\n&nbsp;\n\nUsing a reflective journal along side the other programming tools, allow us to write our critical thinking and ideas for options and is one of my personal favourite tools for subjective monitoring and documentation of thoughts for each clients progress which might offer new ideas future clients.\n<h2></h2>\n<h2><b>Final Words</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Your clients need you!</span>\n\n<span style=\"font-weight: 400;\">Don\'t doubt yourself and what you can offer, simply seek to learn new skills to pull out of the tool box when you feel it is necessary and appropriate for each client. One tool may not be right for one client and another may need lots of tools to help. Hopefully this great idea shared from Tim Gabbett\'s tool box will become a useful option for you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If however you are looking for intrinsic biomechanics assessment tools to add to the mix, to monitor your clients movement and if you would love a deeper level of understanding your clients body PLEASE GET IN TOUCH to arrange a call back to discuss joining our awesome community of <a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Biomechanics Coaches!</a> We are always looking for the best and most passionate trainers and coaches to join us in improving the movement of the nation and really make a difference!</span>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">We are changing the face or what \'personal training\' SHOULD be like!</a>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">JOIN US!</a>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">BECOME A BIOMECHANICS COACH</a>\n\n&nbsp;\n<h1>Check out  <a href=\"https://gabbettperformance.com.au/profile/\" target=\"_blank\" rel=\"noopener noreferrer\">Tim Gabbett</a></h1>','Have You Considered Your Client\'s Load Management Post Lockdown?','','draft','closed','closed','','have-you-considered-your-clients-load-management-post-lockdown','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=23305',0,'post','',0),(23306,0,'2020-07-25 12:56:14','2020-07-25 12:56:14','','Daily Load','','inherit','open','closed','','daily-load','','','2020-07-25 12:56:14','2020-07-25 12:56:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/07/Daily-Load-1.pdf',0,'attachment','application/pdf',0),(23307,0,'2020-07-25 12:57:50','2020-07-25 12:57:50','','Screenshot 2020-07-25 at 13.57.41','','inherit','open','closed','','screenshot-2020-07-25-at-13-57-41','','','2020-07-25 12:57:50','2020-07-25 12:57:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/07/Screenshot-2020-07-25-at-13.57.41-1.png',0,'attachment','image/png',0),(23317,3,'2020-07-26 09:16:34','2020-07-26 09:16:34','','shutterstock_238685191','','inherit','open','closed','','shutterstock_238685191','','','2020-07-26 09:16:34','2020-07-26 09:16:34','',23305,'https://biomechanicseducation.com/wp-content/uploads/2020/07/shutterstock_238685191-scaled-1.jpg',0,'attachment','image/jpeg',0),(23383,3,'2020-08-01 05:53:41','2020-08-01 05:53:41','<h1><b>Did You Know....? </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a personal trainer, strength coach, pilates / yoga teacher we are at the front line of professionals the UK’s public seeks out for guidance and advice on how to move well and move more. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The World Health Organisation (WHO) recommends exercise as one of the primary solutions to not only the UK but in fact the global health crisis that now includes a pandemic.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What this means is that we, as exercise professionals, have a duty of care to equip ourselves with the most appropriate and relevant tools and skills to educate, teach, guide, programme and promote safe and effective ‘movement’ prescription.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WE have a hugely important role to play in the WHO’s global plan for improving physical activity levels by 2030 AND  to assist in unburdening the NHS through promoting physical activity. </span>\n<h1></h1>\n<h1><span style=\"font-weight: 400;\">Did you know? There are 37,000 UK deaths annually from </span><b><i>inactivity related causes</i></b><span style=\"font-weight: 400;\">!</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Vulnerable individuals are those at highest risk but more so during a pandemic, which isn\'t simply going to disappear and is also highly likely to reoccur in the future. </span>\n\n<span style=\"font-weight: 400;\">Being vulnerable in health terms in many cases could be avoidable if we look at some of the top causes of death worldwide. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHO reports that ‘..</span><i><span style=\"font-weight: 400;\">of the 56.9 deaths worldwide in 2016, 54% were due to the top 10 causes. The top 2 being Ischaemic heart disease and strokes consistently for the last 15 years. </span></i>\n<h2></h2>\n<h2><i><span style=\"font-weight: 400;\">Diabetes killed 1.6 million in 2016, up from less than 1 million in 2000.</span></i></h2>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Deaths due to dementias more than doubled between 2000 and 2016, making it the 5th leading cause of global deaths in 2016 compared to 14th in 2000. </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Lower respiratory infection remained the most deadly communicable disease, causing 3 million deaths worldwide in 2016.’</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is strong evidence pointing towards physical activity being one of the most effective, cheapest, simplest solutions to many of the above health issues. </span>\n\n<span style=\"font-weight: 400;\">Those being more physically active…..</span>\n\n&nbsp;\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><i><span style=\"font-weight: 400;\">have lower rates of all-cause mortality, coronary heart disease, high blood pressure, stroke, type 2 diabetes, metabolic syndrome, colon and breast cancer, and depression;</span></i></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">are likely to have less risk of a hip or vertebral fracture;</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">exhibit a higher level of cardiorespiratory and muscular fitness; and</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">are more likely to achieve weight maintenance, have a healthier body mass and composition.</span></li>\n</ul>\n&nbsp;\n<h1></h1>\n<h1><b>Key facts from W.H.O….</b></h1>\n&nbsp;\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><i><span style=\"font-weight: 400;\">Insufficient physical activity is one of the leading risk factors for death worldwide.</span></i></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Insufficient physical activity is a key risk factor for noncommunicable diseases (NCDs) such as cardiovascular diseases, cancer and diabetes.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Physical activity has significant health benefits and contributes to preventing NCDs.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Globally, 1 in 4 adults is not active enough.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">More than 80% of the world\'s adolescent population is insufficiently physically active.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Policies to address insufficient physical activity are operational in 56% of WHO Member States.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">WHO Member States have agreed to reduce insufficient physical activity by 10% by 2025.</span></li>\n</ul>\n&nbsp;\n<h2></h2>\n<h2><b>How much should we be teaching our clients to move?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">UK Chief Medical Officer Guidelines for 2019 are:</span>\n<h3><b><i>Children and adolescents aged 5-17years</i></b></h3>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><i><span style=\"font-weight: 400;\">Should do at least 60 minutes of moderate to vigorous-intensity physical activity daily.</span></i></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Physical activity of amounts greater than 60 minutes daily will provide additional health benefits.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Should include activities that strengthen muscle and bone, at least 3 times per week.</span></li>\n</ul>\n&nbsp;\n<h3><b><i>Adults aged 18-64 years</i></b></h3>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><i><span style=\"font-weight: 400;\">Should do at least 150 minutes of moderate-intensity aerobic physical activity throughout the week or do at least 75 minutes of vigorous-intensity aerobic physical activity throughout the week or an equivalent combination of moderate- and vigorous-intensity activity.</span></i></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic activity should be performed in bouts of at least 10 minutes duration.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">For additional health benefits, adults should increase their moderate-intensity aerobic physical activity to 300 minutes per week, or engage in 150 minutes of vigorous-intensity aerobic physical activity per week, or an equivalent combination of moderate- and vigorous-intensity activity.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Muscle-strengthening activities should be done involving major muscle groups on 2 or more days a week</span></li>\n</ul>\n&nbsp;\n<h3><em><b>Adults aged 65 years and above</b></em></h3>\n<ul>\n 	<li style=\"font-weight: 400;\"><em><span style=\"font-weight: 400;\">Should do at least 150 minutes of moderate-intensity physical activity throughout the week, or at least 75 minutes of vigorous-intensity physical activity throughout the week, or an equivalent combination of moderate- and vigorous-intensity activity.</span></em></li>\n 	<li style=\"font-weight: 400;\"><em><span style=\"font-weight: 400;\">For additional health benefits, they should increase moderate-intensity physical activity to 300 minutes per week, or equivalent.</span></em></li>\n 	<li style=\"font-weight: 400;\"><em><span style=\"font-weight: 400;\">Those with poor mobility should perform physical activity to enhance balance and prevent falls, 3 or more days per week.</span></em></li>\n 	<li style=\"font-weight: 400;\"><em><span style=\"font-weight: 400;\">Muscle-strengthening activities should be done involving major muscle groups, 2 or more days a week.</span></em></li>\n</ul>\n&nbsp;\n<h2><b>What equates to ‘activity’?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">THIS is the beautiful thing about these recommendations…</span>\n\n&nbsp;\n<h2><i><span style=\"font-weight: 400;\">YOU DON\'T NEED A GYM! </span></i></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">No need to panic or worry about your access to a gym BUT you may wish to consider your LONG TERM business model to include solutions that don\'t only require hiring gym space that you may be limited by should a pandemic alert re-occur.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHO and the British government recommend….. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Walking &#x1f6b6;&#x200d;&#x2640;&#xfe0f; </span>\n\n<span style=\"font-weight: 400;\">Swimming &#x1f3ca;&#x200d;&#x2642;&#xfe0f; </span>\n\n<span style=\"font-weight: 400;\">Dancing &#x1f483;&#x1f3fc; </span>\n\n<span style=\"font-weight: 400;\">Cycling &#x1f6b4;&#x200d;&#x2640;&#xfe0f; </span>\n\n<span style=\"font-weight: 400;\">Gardening &#x1f337;</span>\n\n<span style=\"font-weight: 400;\">Housework &#x1f3e1;</span>\n\n<span style=\"font-weight: 400;\">Occupational tasks &#x1f393;</span>\n\n<span style=\"font-weight: 400;\">And anything that moves and loads you and also elevates your client’s heart rate. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So our jobs as exercise professionals may require adjusting somewhat to allow for this changing landscape of exercise prescription. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PLEASE PLEASE PLEASE </span>\n\n<span style=\"font-weight: 400;\">Move Well &amp; Move More! Your country needs you!</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">NEXT TIME…..</span><b>Dont get caught out! Do you have a plan B?</b></h2>\n<span style=\"font-weight: 400;\">Next week we discuss the importance of having a plan B and what that might look like, along with maybe a plan C, plan D….Ask yourself…..do you have a plan ready for the next pandemic alert or lockdown? Can your business survive? Have you adapted to solutions purely for the short term or long term? Should you prepare a plan for long term changes commercially to your service? </span>\n\nReference;\n\n<a href=\"https://www.who.int/news-room/fact-sheets/detail/the-top-10-causes-of-death\"><span style=\"font-weight: 400;\">https://www.who.int/news-room/fact-sheets/detail/the-top-10-causes-of-death</span></a>','Did You Know....? 37,000 UK deaths annually from inactivity related causes!','','draft','closed','closed','','did-you-know-37000-uk-deaths-annually-from-inactivity-related-causes','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=23383',0,'post','',0),(23386,3,'2020-08-01 05:42:49','2020-08-01 05:42:49','','shutterstock_76949212','','inherit','open','closed','','shutterstock_76949212','','','2020-08-01 05:42:49','2020-08-01 05:42:49','',23383,'https://biomechanicseducation.com/wp-content/uploads/2020/08/shutterstock_76949212-scaled-1.jpg',0,'attachment','image/jpeg',0),(23526,3,'2020-08-10 14:42:53','2020-08-10 14:42:53','<span style=\"font-weight: 400;\">Look I don\'t want you to be left with egg on your face after everything you have likely gone through over the last 4/5 months </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We cannot just be PT’s any more, we really have to step up our game and consider our role in the bigger picture, how our role is evolving and we MUST stay business savvy. Yet technology is not the only thing dramatically changing/affecting our businesses. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We need to start questioning, and for some maybe RE-questioning, if you did this before lockdown or even early lockdown…..</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">What\'s your brand?</span></i>\n\n<i><span style=\"font-weight: 400;\">Who’s your audience/demographic?</span></i>\n\n<i><span style=\"font-weight: 400;\">Who do you speak to? </span></i>\n\n<i><span style=\"font-weight: 400;\">Who\'s your raving fan?</span></i>\n\n<i><span style=\"font-weight: 400;\">What do they want?</span></i>\n\n<i><span style=\"font-weight: 400;\">How can you serve them?</span></i>\n\n<i><span style=\"font-weight: 400;\">Is there another way?</span></i>\n\n&nbsp;\n<h2><b>Diversify</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Take the likes of lululemon, they sell beautiful high end activewear, yet they recently invested in something called Mirror.co. This is a completely different business BUT has a link to their target market so fits their overall purpose and ethos. So now they are not just clothing, AND also more importantly, they are not solely reliant on one revenue stream. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The question is could Plan B be to expand your brand before</span> <span style=\"font-weight: 400;\">simply trying to get more clients for personal training in this new challenging climate? Remember change can often feel uncomfortable initially but eventually we all adapt however I believe we should have an honest look at what we do and seriously consider a long term change.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It\'s highly likely you will have considered all sorts of things when we were locked down, maybe thinking things like….</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“...how the hell can I make money to pay my bills…?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“...should I get a job at Tesco....?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“...OMG, what can I do differently in my business that isn\'t what I normally do..?”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...you probably (hopefully) became SUPER productive and resourceful eventually, right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what did you come up with and was it enough or did you simply alter temporarily and wait for lockdown to lift and gyms to open so you could go back to what you </span><i><span style=\"font-weight: 400;\">normally</span></i><span style=\"font-weight: 400;\"> do or are familiar with?</span>\n\n<span style=\"font-weight: 400;\">This tough time can be an </span><i><span style=\"font-weight: 400;\">opportunity</span></i><span style=\"font-weight: 400;\"> that I want to encourage you NOT to miss!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Think about what WE do in the bigger picture, movement health, mindset and wellbeing, and what services, products or concepts can you create to develop income streams to stay afloat even if one area of your businesses gets shut down again with a NEW LOCKDOWN or future pandemic!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have a duty or care and a HUGE role to play in finding ways to continue doing what we do but we need our businesses to survive to do this!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what could you do now that if life/work becomes restrictive again you are not left high and dry? </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Thinking outside the box allows for innovation and could save you during another lockdown…</span>\n\n&nbsp;\n<h2><b>A Solution…?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Think about your ideal client and what other things you talk about with them? Is there something in those conversations that could give you an idea of another business opportunity to connect with a wider audience of your kind of people?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Apps</span>\n\n<span style=\"font-weight: 400;\">Retreats </span>\n\n<span style=\"font-weight: 400;\">Clothing</span>\n\n<span style=\"font-weight: 400;\">Community links/collaborations</span>\n\n<span style=\"font-weight: 400;\">Veg delivery </span>\n\n<span style=\"font-weight: 400;\">Affiliate links</span>\n\n<span style=\"font-weight: 400;\">Online delivery of education </span>\n\n<span style=\"font-weight: 400;\">Online sessions </span>\n\n<span style=\"font-weight: 400;\">Memberships/Subscriptions </span>\n\n<span style=\"font-weight: 400;\">Or even quite simply…..</span>\n\n<i><span style=\"font-weight: 400;\">How do I deliver something new?</span></i>\n\n&nbsp;\n<h1><b>Possible Solutions</b></h1>\n&nbsp;\n<h2><strong>Online Service</strong></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok we are not about to tell you the obvious which is to be offering an online service, long term. THIS alone is a commercial no brainer! While we, like many of you, much prefered face to face there are people we know who are anxious and looking to find alternatives to the higher risk environments, even if for a while. This has always been an option but since the landscape of our industry has changed we must challenge our own biases to enable us to continue doing what we love - helping people move better AND serving ALL those who need our help.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here is a simple idea and possibly one of the easiest to set up technically and can be done pretty much for free:</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Set up a facebook ‘group’</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Set it to ‘private’ </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Invite your paying clients </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Upload generic articles, videos, live tutorials/sessions, educational information, health advice - daily, weeky, monthly</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Charge via BACS or Paypal (Paypal will incur a small % charge) a small weekly/monthly fee for access.</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are of course various platforms like Zoom, Webinarjam, Youtube etc that allow you to stream or offer live sessions but you may need to research the best one to suit your requirements.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also if you are still challenged technically - ASK for help! Family members, mentors, educators - there are many who I am sure would be willing to help you to initiate something like this. </span>\n\n&nbsp;\n<h2><b>Improve Skills </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Learning new skills that we may not have considered before might be a good idea right now. Suddenly becoming ‘time rich’ in lockdown many of us embarked on an education journey while we had the chance which proves how much we really WANT to learn!</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">What did you learn though?</span></i>\n\n<i><span style=\"font-weight: 400;\">Has it helped you so far?</span></i>\n\n<i><span style=\"font-weight: 400;\">Did it help your current business?</span></i>\n\n<i><span style=\"font-weight: 400;\">Are there more diverse skills you now realise you need?</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Things are changing swiftly as are education opportunities so keep a track of where you feel weakest or least confident, then research good education companies or ask colleagues or trusted professionals who they recommend and who may be able to guide you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you thought of learning more about things like:</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Video creation</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Business </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Building an app</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Creating a brand</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Copywriting</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Communication skills</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Covid-19 training/hygiene</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Health &amp; safety/risk assessment</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Management</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Mental health</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Creating posts</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Online programme designing</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Helping problem/tricky clients (in pain/injured)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"> Delivering educational sessions</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This list is not exhaustive but try not to rule things out too quickly as some things could convert into something really helpful if you put some real thought into it.</span>\n\n&nbsp;\n<h2><b>Invest in Help/Support </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Is there someone who you feel could be of help to you or your mindset or business? Or is there an area of your business you would LIKE TO FIND someone to help you with?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Delegation of certain jobs can leave you free to do the jobs you prefer or are better at and possibly even that make you more money. This is something I have learned with technology in particular. While I do quite a bit there are some jobs that would take me days to do so it is much more cost effective to pay someone who can do it in a few hours!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the most valuable lessons I learned as a ‘coach’ is that I too need coaching. In fact I have several! So I strongly recommend you reach out, invest or maybe you can swap skills.</span>\n\n<span style=\"font-weight: 400;\">You could write them an exercise programme for some business advice? </span>\n\n<span style=\"font-weight: 400;\">It\'s how business used to be done and a totally logical way of doing business when cash is low AND there is no harm in asking!!</span>\n\n&nbsp;\n<h2><b>Recommendations </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are companies that I personally respect and trust to give you a little starter....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BTN Academy - nutrition</span>\n\n<span style=\"font-weight: 400;\">MTE Academy - therapy</span>\n\n<span style=\"font-weight: 400;\">Pulseroll - vibration tools </span>\n\n<span style=\"font-weight: 400;\">Future Fit Training - fitness education provision</span>\n\n<span style=\"font-weight: 400;\">DTS Fitness Education - system programming</span>\n\n<span style=\"font-weight: 400;\">Chris Wright HQ - business &amp; marketing </span>\n\n<span style=\"font-weight: 400;\">PM2 Media - Video creation</span>\n\n<span style=\"font-weight: 400;\">Therapy Empire - Therapy equipment </span>\n\n<span style=\"font-weight: 400;\">Wolverson Fitness - Gym/fitness equipment </span>\n\n<span style=\"font-weight: 400;\">STA - accreditation / recognition in therapy </span>\n\n<span style=\"font-weight: 400;\">CIMSPA - accreditation / recognition in exercise &amp; fitness </span>\n\n&nbsp;\n<h1><b>Plan C, D…..</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally keep planning all the time and try to remain open to opportunities since we have all learned recently how things can change drastically in a flash. So even if you work out your plan B, work out plan C and D too - because you just never know!!!</span>\n\n&nbsp;\n<h2>Another plan option...</h2>\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">....Become a Biomechanics Coach CLICK HERE</a>','Don\'t get left behind! Do you have a plan B? plan C? And maybe even a plan D?','','draft','closed','closed','','dont-get-left-behind-do-you-have-a-plan-b-plan-c-and-maybe-even-a-plan-d','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=23526',0,'post','',0),(23541,3,'2020-08-10 14:44:49','2020-08-10 14:44:49','','diggity-marketing-s8HyIEe7lF0-unsplash','','inherit','open','closed','','diggity-marketing-s8hyiee7lf0-unsplash','','','2020-08-10 14:44:49','2020-08-10 14:44:49','',23526,'https://biomechanicseducation.com/wp-content/uploads/2020/08/diggity-marketing-s8HyIEe7lF0-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(23634,0,'2020-08-17 12:55:27','2020-08-17 12:55:27','','shutterstock_127096280','','inherit','open','closed','','shutterstock_127096280','','','2020-08-17 12:55:27','2020-08-17 12:55:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/08/shutterstock_127096280.jpg',0,'attachment','image/jpeg',0),(23636,3,'2020-08-17 14:44:54','2020-08-17 14:44:54','<span style=\"font-weight: 400;\">Personal training is becoming a far more complex skill with the evolution of our client’s bodies, the ever changing environment including more &amp; more technology and the limitations surrounding us as a result of a virus. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Personal training originally evolved predominantly as a standard to support our client’s in improving their aesthetics, to reduce body fat and increase muscle mass or to ‘tone up’ if you were a </span><i><span style=\"font-weight: 400;\">lady</span></i><span style=\"font-weight: 400;\"> of course….(tongue in cheek).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What has happened, as with many things, is the requirement of our role has grown out of the original scope and with it additional responsibility. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More &amp; more of our clients come with a modern ailment due to lifestyle. They expect us to ‘fix it’ or give them a specific exercise to solve the problem.</span>\n\n<span style=\"font-weight: 400;\">Yet we feel inadequate when it comes to responding to this kind of request. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We need more assessments skills, more knowledge around pain science &amp; a deeper level of understanding the body when things are quite right. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However we need to be sure we remain within our insurance remit or we must gain these additional qualifications or additional skills so we can upgrade our insured to continue to support and serve the new ‘pandemic’ of poor movers that we are gaining as clients today.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Poor movement from a sedentary lifestyle can often come with pain. This is when movement practitioners (personal trainers, pilates &amp; yoga teachers, S&amp;C coaches) MUST be careful about scope of practice.  </span>\n\n<span style=\"font-weight: 400;\">Yet there are possibly MORE people out there experiencing a type of ‘pain’ that we CAN HELP WITH.</span>\n\n&nbsp;\n<h2><b>The Problem?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The problem is recognising and practicing in a way that demonstrates the limitations of our training in pain science and shows we appreciate we DON\'T KNOW WHAT WE DON\'T KNOW.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So how do we exercise/movement practitioners, work with clients in pain? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We MUST gain an understanding of pain</span>\n\n<span style=\"font-weight: 400;\">We MUST gain a clear understanding of red flags</span>\n\n<span style=\"font-weight: 400;\">We should work in a multidisciplinary team</span>\n\n<span style=\"font-weight: 400;\">We must utilise a thorough consultation process with clear referral points for red flags</span>\n\n<span style=\"font-weight: 400;\">We must ALWAYS refer when unsure</span>\n\n<span style=\"font-weight: 400;\">We must NEVER think </span><i><span style=\"font-weight: 400;\">“ah I am sure it will be nothing</span></i><span style=\"font-weight: 400;\">”</span>\n\n<span style=\"font-weight: 400;\">We MUST always put the client’s health &amp; safety first</span>\n\n<span style=\"font-weight: 400;\">We MUST NEVER KNOWINGLY CAUSE HARM</span>\n\n&nbsp;\n<h2><b>How do we do this?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are some of the basics to start you off that come from the book </span><i><span style=\"font-weight: 400;\">Explain Pain </span></i><span style=\"font-weight: 400;\">by Lorimer Moseley and David Butler, who are world leading neuroscientists. Their world renowned research is demonstrating how our clients experience pain and what we can do to help.</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain is good </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain is a warning signal</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain is telling you to change something </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain is subjective </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain is an input not an output</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain isn’t necessarily indicative of its location</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain is not necessarily indicative of pathology</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The degree of pain felt is not indicative of the amount of tissue damage </span></li>\n</ul>\n<span style=\"font-weight: 400;\">So we strongly recommend investing in this book to learn more about the science of pain. </span>\n\n<span style=\"font-weight: 400;\">Also how to communicate the above with clients who experience pain or even live with chronic pain, often this alone enables them to feel less pain. </span>\n\n&nbsp;\n<h2><b>What else can we do?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Skilled communication is a huge contributor to understanding and reducing pain. We can support our clients\' experience by offering them language appreciation to enable them to communicate better what they are experiencing. Thus allowing us to better understand how to support or refer them to another practitioner better suited to their requirements.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then we can use considered language to help clients better understand how pain works therefore offering a form of CBT to contribute to reducing their experience of pain. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">One common miscommunication I come across a lot is when a client describes ‘tension’ or ‘stiffness’ as pain. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So my role includes helping clients to differentiate </span><i><span style=\"font-weight: 400;\">pain</span></i><span style=\"font-weight: 400;\"> from </span><i><span style=\"font-weight: 400;\">tension</span></i><span style=\"font-weight: 400;\"> or stiffness. This may sound to some like a crazy notion and yet could be a game changer in how we work with a client or even IF we work with them. </span>\n\n&nbsp;\n<h2><b>Definitions </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pain comes under the descriptive group term for SENSATION. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Examples of </span><i><span style=\"font-weight: 400;\">Sensations </span></i><span style=\"font-weight: 400;\">are; </span>\n\n<span style=\"font-weight: 400;\">Pain </span>\n\n<span style=\"font-weight: 400;\">Tension </span>\n\n<span style=\"font-weight: 400;\">Stiffness </span>\n\n<span style=\"font-weight: 400;\">Ache</span>\n\n<span style=\"font-weight: 400;\">Niggle</span>\n\n<span style=\"font-weight: 400;\">Tingle </span>\n\n<span style=\"font-weight: 400;\">Stretch </span>\n\n<span style=\"font-weight: 400;\">Pulling </span>\n\n<span style=\"font-weight: 400;\">Pinching </span>\n\n<span style=\"font-weight: 400;\">Numbness </span>\n\n<span style=\"font-weight: 400;\">Throbbing </span>\n\n<span style=\"font-weight: 400;\">Itching </span>\n\n<span style=\"font-weight: 400;\">Cramp</span>\n\n<span style=\"font-weight: 400;\">Stabbing </span>\n\n<span style=\"font-weight: 400;\">Sharpness</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Depending upon how you ‘read the client’ and other details of their history will dictate whether you deem any of these descriptions to be red flags. For example we could ask them to score their ‘sensations’....</span>\n\n&nbsp;\n<h2><b>Scoring Pain (or Sensations)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Using the adapted Borg scale 0-10 to score the level of pain we can ask a client to give us a number out of 10 that is representative of how much pain, or sensation, they feel. We also need to give them examples of extremes like...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">0 being no pain at all</span>\n\n<span style=\"font-weight: 400;\">10 having their arms ripped from the sockets </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once they’ve given a score remember PERCEPTION can often be distorted when someone has </span><i><span style=\"font-weight: 400;\">chronic</span></i><span style=\"font-weight: 400;\"> pain or even a fear of movement OR even a fear you will send them away and refuse to work with them! Which is another reason to gather a team around you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However you can also ask questions like…. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Can you describe the </span><i><span style=\"font-weight: 400;\">quality</span></i><span style=\"font-weight: 400;\"> of your pain? Is it sharp or dull?</span>\n\n<span style=\"font-weight: 400;\">Do you feel better moving or when still? Morning or evening? </span>\n\n<span style=\"font-weight: 400;\">Are there specific movements or positions that increase it? Or decrease it?</span>\n\n<span style=\"font-weight: 400;\">Is it constant or erratic? </span>\n\n<span style=\"font-weight: 400;\">Does it radiate or remain in a fixed point? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This kind of questioning has several benefits other than the actual details. Clients will feel heard and valued when you spend time asking about how they feel. This has been shown to improve the likelihood of pain reduction and adherence. </span>\n\n<span style=\"font-weight: 400;\">Each of these, along with having the ability to read your clients face &amp; body language (sometimes quite separate to what they actually say) allow us to evaluate risk to make the decision as to whether we work with them or not.</span>\n\n&nbsp;\n<h2><b>So can I still work with a client in pain? </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some sensations a client initially describes as ‘pain’, upon further questioning, you may find are in fact simply ‘tight or stiff’. So our communication and interview skills are paramount when considering taking on a client who tells you they experience any degree of pain.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pain itself should be deemed a red flag until further questioning takes place like the above or for referral. This is why having a team of diverse professionals around you is vital in being able to retain clients while remaining with your own remit.</span>\n\n&nbsp;\n<h2><b>Our role in reducing clients pain</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s worth keeping in mind a ‘pain’ or sensation that is low in grade, insidious &amp; has not come from a specific trauma, or with any red flags, is quite likely simply a biomechanical issue or you could describe it as a physical adaption or compensation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What this means is that there is a high chance it can be improved by changing something in your clients movement profile. So ‘remedial exercise’ movement techniques, like the iMoveFreely Programme, are hugely beneficial and greatly improve the results of any application of ‘strength’ training.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can teaching clients how to avoid things that irritate </span>\n\n<span style=\"font-weight: 400;\">We can monitor &amp; assess their movement quality</span>\n\n<span style=\"font-weight: 400;\">We can add in a special technique like an MET that is safe &amp; low grade</span>\n\n<span style=\"font-weight: 400;\">Then we can re-assess &amp; evaluate</span>\n\n<span style=\"font-weight: 400;\">..Add something else like a pure mobility technique </span>\n\n<span style=\"font-weight: 400;\">..re-assess &amp; evaluate </span>\n\n<span style=\"font-weight: 400;\">...add something else like a nerve mobilisation </span>\n\n<span style=\"font-weight: 400;\">...re-assess &amp; evaluate </span>\n\n<span style=\"font-weight: 400;\">Do this segmentally for each part of your clients body...ie pelvic, spine etc</span>\n\n<span style=\"font-weight: 400;\">It’s not complicated, but does it take time? Yes of course!! </span>\n\n<span style=\"font-weight: 400;\">Just remember it takes months/years of compensation to get to the point your client starts to feel discomfort...reducing it may well take a while too!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">AND....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">....ignoring or simply resting doesn\'t address the warning signal so they shouldn\'t be surprised if old pains recur. Recurring ‘issues’ indicate the root cause hasn’t been addressed. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A clinician\'s job is to diagnose and treat a clinical problem.</span>\n\n<span style=\"font-weight: 400;\">Our role (exercise/movement professionals) is to improve movement quality.</span>\n\n<span style=\"font-weight: 400;\">If pain dissipates through movement there\'s a good chance it was a movement issue.</span>\n\n<span style=\"font-weight: 400;\">If clinicians struggle to identify a root cause of pain through diagnostics there\'s a chance its a biomechanical issue.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have a vital role in pain reduction BUT remember </span>\n\n&nbsp;\n<h3><strong>WE DON\'T KNOW WHAT WE DON\'T KNOW!!</strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Build a team around you</span>\n\n<span style=\"font-weight: 400;\">Assess &amp; question often</span>\n\n<span style=\"font-weight: 400;\">Transfer meaningful information between your team</span>\n\n<span style=\"font-weight: 400;\">Never knowingly do harm</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Keep them moving, moving well &amp; moving more in less pain!</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/low-back-health-pain-online-cpd-training/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">Learn more about pain science HERE</a></h1>','Does your client experience pain while training?','','draft','closed','closed','','does-your-client-experience-pain-while-training','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',0,'https://www.biomechanicseducation.com/?p=23636',0,'post','',0),(23637,3,'2020-08-17 14:44:41','2020-08-17 14:44:41','','blue skele man','','inherit','open','closed','','blue-skele-man-2','','','2020-08-17 14:44:41','2020-08-17 14:44:41','',23636,'https://biomechanicseducation.com/wp-content/uploads/2020/08/blue-skele-man.jpg',0,'attachment','image/jpeg',0),(23765,3,'2020-08-25 05:44:20','2020-08-25 05:44:20','<span style=\"font-weight: 400;\">On the first day in the classroom, the first thing I ask my learners is “</span><i><span style=\"font-weight: 400;\">why are you here?”</span></i>\n\n<span style=\"font-weight: 400;\">The single most common request learners come to us with is….</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“I want a deeper level of understanding the human body”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then I ask them </span><i><span style=\"font-weight: 400;\">“why?”.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Often times its because we feel we lack some vocabulary skills when communicating with a physio or surgeon, or reading the medical report our client came with. </span>\n\n<span style=\"font-weight: 400;\">We want to feel like we are on some kind of level to be able to work out how we can help even when our clients have something kind of issue, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But does recalling all those muscle attachments really make you a better coach? Does it actually help?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well yes it may do BUT it shouldnt inhibit you helping your clients to move better. Just because the other PT in your gym can recite most of the muscles to their client while they train them doesn\'t mean they’re a better coach….in fact this can be off putting for a client!</span>\n\n&nbsp;\n<h2><b>Let me tell you a secret….</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">….having taught the subject of anatomy, muscles, joints, nerves and movement (intrinsic biomechanics) for over 16 years now 99% of our learners are also looking for a deeper understanding of the body! </span>\n\n<span style=\"font-weight: 400;\">You are not the only one! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe during lockdown you decided to go back into the online classroom to gain a deeper level of understanding the body and movement and the reasons why clients move the way they do compared to each other!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you find clarity?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Or do you feel like the things you learned about muscle attachments don\'t directly help you back in the gym when applying the knowledge practically?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It often seems to be that the more you learn, the more complex it becomes.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All you want is something more helpful ‘in application’...right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What do I mean?</span>\n\n&nbsp;\n<h2><b>The Problem</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">You want to be able to help those tricky clients who don\'t move well, have little aches or niggles, recurring injuries or a condition you have never heard of!</span>\n\n&nbsp;\n<h2><b>The Solution </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Think differently - when something isn\'t working, change what you do!</span>\n\n<span style=\"font-weight: 400;\">So learning the attachments of pectineus doesn\'t give you the solution for your clients knee valgus. </span>\n\n<span style=\"font-weight: 400;\">However learning movement can be so simple which is why during your level 2 training we learned this first.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Adduction/Abduction, Flexion/Extension, Rotation etc</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The analysis of movements or joint actions is one we seem to do really well but for some reason we remain fixed on the idea that knowing all of the muscle attachments will be the thing that solves our clients problems. </span>\n\n<span style=\"font-weight: 400;\">Yet SIMPLY understanding the movement they can or can\'t do is far more helpful. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once we know what movement they cannot do we can consider what ‘exercises’ or techniques we can offer as a solution to the movement issue.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It would make sense to start with the least contraindicated exercise first, then systematically re-evaluate their movement overtime to understand if that exercise was helpful. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then repeat!</span>\n\n&nbsp;\n<h2><b>The Application Theory</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Something my long term colleague, mentor and business partner have discussed for many years is the ‘Application Theory’. If you look it up you won\'t find it because we made it up! It\'s our best (and probably most used) tool in the classroom and I want to teach it to you....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Application Theory = SIMPLE - COMPLEX - SIMPLE</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">That\'s it!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Just that pretty much - the point being even that with the more you learn in the complex phase rarely does it dramatically alter what you do in application. </span>\n\n&nbsp;\n<h2><b>The WAY We Think, Conceptually</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In the </span><i><span style=\"font-weight: 400;\">School of Intrinsic Biomechanics</span></i><span style=\"font-weight: 400;\"> we teach this from day 1 when ALL of our learners arrive with some degree of anxiety about being asked an A&amp;P question they feel they will be unable to answer. For some reason this peer pressure has come about over the years that we should apparently have the ability to recall ALL of those damn muscle attachments by heart, I am not sure why its such a THING!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First let me ask you…..</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Are you still worried that you just don’t know enough?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you wish you had a deeper understanding of the human body?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Would you love to recall all of the anatomy you learned during your training?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What do you do about it? .</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you use anatomy books? </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Follow anatomy geeks hoping to pick up some nuggets?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel you can ‘get away’ without remembering all those muscle attachments?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you wonder why we forget them all? or</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Maybe you wonder why we bother learning them all for an exam? </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here\'s the thing MOST of the industry, and I mean MOST, DOES NOT have the ability to recall muscle attachments. Even those with a lot of training or even years of experience in the industry.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So here\'s a question….Does this stop them / you from helping people? </span>\n\n<span style=\"font-weight: 400;\">No!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does it limit what can be done?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe, but clearly there are some GREAT PT’s who DON\'T know their anatomy that are helping LOADS of clients achieve either goals!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Please understand I am not suggesting you do not need to study anatomy and gain a better understanding of the body, if it can be made fun and memorable with a reason to remember it then it is more likely to be easier to recall. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we teach you a biomechanics test, we give you a reason to remember the anatomy because if you don\'t know the anatomy you won\'t understand the test. What this then does is it creates a reason to remember where pec minor attaches, because we offer you a visual assessment skill that deepens your appreciation of how, when dysfunctional, it will pull the scapular forwards into that round shouldered posture we often see. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then we offer you that chance to come up with ideas as to what can be done about this and we give suggestions for alternatives. Once you have applied the test, followed by an intervention, you can retest and actually see the change occur…..this is where understanding anatomy gets really exciting - because you can see the change AND understand how it relates to the anatomy! </span>\n\n&nbsp;\n<h2><b>The Biomechanics Education Classroom</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another important aspect to learning complex subjects, and that we endeavour to encourage in our classroom, is for our learners to never be afraid to;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A). ....give the wrong answer</span>\n\n<span style=\"font-weight: 400;\">B). .... say “I don’t know..?”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As practitioners we MUST not wing it when it comes to another person\'s body .</span>\n\n<span style=\"font-weight: 400;\">We MUST be honest when we don’t have the answer or need to seek a second opinion</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Too often the ego encourage a fear of not knowing or being wrong &amp; yet if we are honest when we don’t know we would be providing a better duty of care</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Never be afraid to have a go &amp; be wrong in the learning environment.</span>\n\n<span style=\"font-weight: 400;\">Always admit when you don’t know the answer .</span>\n\n<span style=\"font-weight: 400;\">To all the educators out there...remember we must NEVER judge a learner who is honest enough to say “</span><i><span style=\"font-weight: 400;\">I don’t know</span></i><span style=\"font-weight: 400;\">” when we ask them a question!</span>\n\n&nbsp;\n<h2><b>Simplicity In Application </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY do we feel this pressure, even on ourselves, to recall the A&amp;P when application of safe movement coaching is far more important!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Theory of Application SIMPLE - COMPLEX - SIMPLE</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">SIMPLE - when you look at or speak to your client the ‘WHAT’ is obvious to you, for example...their knee caves in or their back hurts or one shoulder is higher than the other….or they have sore knees when they run.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">COMPLEX….Most PT’s I talk to then have this habit of trying to work out which muscle it is….well good luck with that! This is not helpful particularly at this point </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why? Because even if you could recall every single muscle attachment it wont give you the answer as to what to do to help your client!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">SIMPLE….watch them, question them, write down your thinking, get a second opinion, check your remit, any reg flags….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then if cleared give them a safe movement technique and watch the movement again…..repeat until improvement occurs or you need a second opinion or further learning but don\'t ever underestimate what you CAN do! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Experience our classroom and you will learn far more than simply how to assess your clients body!</span>\n<h2></h2>\n<h2><b>Would YOU Like To Learn New Skills AND How To Apply Them SIMPLY Into Your Service BOTH Online AND Face to Face?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let us show you!</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/shop/\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">CLICK HERE FOR Online Education</span></a></h1>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">CLICK HERE FOR Face to Face Education</span></a></h1>','Does having a better understanding of the body make you a better coach?','','draft','closed','closed','','does-having-a-better-understanding-of-the-body-make-you-a-better-coach','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=23765',0,'post','',0),(23766,3,'2020-08-25 05:42:26','2020-08-25 05:42:26','','shutterstock_1176407491','','inherit','open','closed','','shutterstock_1176407491','','','2020-08-25 05:42:26','2020-08-25 05:42:26','',23765,'https://biomechanicseducation.com/wp-content/uploads/2020/08/shutterstock_1176407491-scaled-1.jpg',0,'attachment','image/jpeg',0),(23769,3,'2020-08-25 05:46:27','2020-08-25 05:46:27','','shutterstock_1176407491','','inherit','open','closed','','shutterstock_1176407491-2','','','2020-08-25 05:46:27','2020-08-25 05:46:27','',23765,'https://biomechanicseducation.com/wp-content/uploads/2020/08/shutterstock_1176407491-1.jpg',0,'attachment','image/jpeg',0),(23770,3,'2020-08-25 05:47:28','2020-08-25 05:47:28','','shutterstock_1176407491','','inherit','open','closed','','shutterstock_1176407491-3','','','2020-08-25 05:47:28','2020-08-25 05:47:28','',23765,'https://biomechanicseducation.com/wp-content/uploads/2020/08/shutterstock_1176407491-2.jpg',0,'attachment','image/jpeg',0),(23939,3,'2020-09-08 10:24:00','2020-09-08 10:24:00','<h1><b>When Coaching Technique Just Doesn\'t Work…. </b></h1>\n&nbsp;\n<h2><b>There’s those occasions when you have a new client &amp; you get them into position ready to squat but then they begin to move….their face contorts, knees buckle in, back bends awkwardly, elbows flare about &amp; your arms shoot forwards ready to catch them incase they topple over!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Back up straight, lift your chest, push your knees out</span></i><span style=\"font-weight: 400;\">…” you encourage but inside your head you’re actually face palming as you silently wonder how on earth they can’t understand such simple cues!?!?!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However no amount of teaching or coaching cues seem to help them improve, so you decide to lose the bar &amp; head back over to the machines….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In your mind you’re questioning…. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“What should I do with them to improve their movement?”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“I wonder if it’s their calves? Or back? I wish I could remember my muscle attachments to work it out”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“How can I work out where the problem is coming from?”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Why can’t I work it out?”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Other PTs seem to always know more than me, why is that?”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“How can I get a deeper level of understanding my clients body?”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You may even doubt your ability to coach!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can be a real challenge for PT\'s trying to work out which area of the body the limitation/compensation is coming from since every joint is involved in some way.</span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">Actually more commonly which ‘combination’ of limitations!!?</span>\n\n&nbsp;\n<h2><b>Finding A System That Works</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we learn or create a system that enables us to use a step by step approach to addressing our clients movement issues, then we can monitor progress, just as we would with their nutrition plan or strength training programme. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Being able to evaluate the movement quality of each joint &amp; structure one at a time to systematically either address them or rule them out of the list of potential compensation areas, we can have confidence in knowing what steps to take towards movement improvements</span>\n\n&nbsp;\n<h2><b>A System Suggestion Based On Evidence</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is evidence to suggest 60% of dysfunction comes from the pelvis so this could be a logical place to start</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The spine sits in the pelvis so would be a sensible place to address next</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Shoulders have a biomechanical link to the opposite side of the pelvis so might be a great place to follow onto.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Knees &amp; their stability would require everything above to have been prepared since their degree of control comes from above and of course the feet following on from that offer, would offer a </span><i><span style=\"font-weight: 400;\">systematic approach</span></i><span style=\"font-weight: 400;\"> to ‘ruling things out’ </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Other systems may suggest starting at the feet of course….and so to be clear it is more important that you follow a system, than which system you choose to follow. If you are following a system, clarity can be gained so start where you like &amp; follow a logic that works for you, your training and your logic.</span>\n\n&nbsp;\n<h2><b>A System Within A System </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">While we have divided the body into areas for a suggested system above, we should probably also consider the sub-systems. For example the muscles, nerves &amp; joints as a way to work systematically in each area too. So being able to test each sub-system of each body part can also make our detective work both fascinating &amp; rewarding.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whichever ‘system’, or series of systems, you follow the point to all of them is to know what has worked, what hasn\'t worked and what to do next. Rather than randomly addressing various issues, not knowing what’s affecting what, if we follow a system we can be more confident about our clients key biomechanical pillars</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With a system we can monitor &amp; demonstrate progress which offers our client clear results and we can know what is affecting what more logically coming from an informed place.</span>\n<h2></h2>\n<h2><b>What’s your system?</b></h2>\n<h2></h2>\n<h2><b>Would you like to learn an evidence based one?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Biomechanics Coaching teaches coaches &amp; trainers a very simple evidence based system of tests &amp; special techniques that give you absolute clarity &amp; confidence about what to do &amp; when...even when things don\'t happen in the way you expected or even when the ‘issues’ your clients presents with are vague, various and often complex.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So when your new client gets under that squat bar, as you throw your arms out ready to catch them…you’re thinking “</span><i><span style=\"font-weight: 400;\">I know exactly what I need to do here…</span></i><span style=\"font-weight: 400;\">.”</span>\n\n<a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>October 17th/18th in Nottingham</b></a><span style=\"font-weight: 400;\"> we have only 6 places for a </span><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Pelvic &amp; Spine Biomechanics Workshop</b></a><span style=\"font-weight: 400;\"> that is a fantastic start point for any PT looking to advance their knowledge and gain access to an entire community of professionals. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not begin your journey towards becoming a Biomechanics Coach and get more results, with more clients, while having the confidence to also charge more for your time as a ‘specialist’!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to join us?</span>\n\n<span style=\"font-weight: 400;\">How would you feel if we helped you deepen your anatomy knowledge?</span>\n\n<span style=\"font-weight: 400;\">Do you want to learn anatomy &amp; medical language to get you a solid reputation with clinicians?</span>\n\n<span style=\"font-weight: 400;\">Have you been thinking about our Diploma for a while already?</span>\n\n<span style=\"font-weight: 400;\">Can you get to Nottingham on these dates?</span>\n\n<span style=\"font-weight: 400;\">Would you like to learn more?</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">BOOK HERE </span></a></h1>\n<span style=\"font-weight: 400;\">OR</span>\n<h1><span style=\"font-weight: 400;\">Call now 07976 933113 </span></h1>\n<span style=\"font-weight: 400;\">OR</span>\n<h1><span style=\"font-weight: 400;\">Email info@biomechanicseducation.com</span></h1>','Do you wonder what\'s going on when coaching technique just doesn\'t work?','','draft','closed','closed','','do-you-wonder-whats-going-on-when-coaching-technique-just-doesnt-work','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=23939',0,'post','',0),(23947,3,'2020-09-08 10:23:45','2020-09-08 10:23:45','','IMG_3042','','inherit','open','closed','','img_3042','','','2020-09-08 10:23:45','2020-09-08 10:23:45','',23939,'https://biomechanicseducation.com/wp-content/uploads/2020/09/IMG_3042-scaled-1.jpeg',0,'attachment','image/jpeg',0),(23949,3,'2020-09-08 10:25:13','2020-09-08 10:25:13','','IMG_3042','','inherit','open','closed','','img_3042-2','','','2020-09-08 10:25:13','2020-09-08 10:25:13','',23939,'https://biomechanicseducation.com/wp-content/uploads/2020/09/IMG_3042-1-e1599560790546.jpeg',0,'attachment','image/jpeg',0),(24097,3,'2020-09-21 14:19:34','2020-09-21 14:19:34','<h2><b>What is Biomechanics?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Biomechanics is mostly considered a complex subject. Those who study biomechanics at university usually find it the most challenging of subjects to learn. In this blog I’d like to remove some of that challenge or at least reduce it &amp; explain to you how you can become a specialist in this subject without going to university...like me!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s the study of human movement, the body’s ‘mechanics’ if you like. Some will argue that it is an outdated way of looking at the body since it’s far more complex than simply the mechanical aspect of levers &amp; pulleys.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I would agree that it can be extremely complex AND I’d also agree that we must consider so much more than simply the ‘mechanical’ view of our clients body and movement.</span>\n\n<span style=\"font-weight: 400;\">However this method allows us to begin to appreciate the body to a deeper level from at first a simple application of basic rules of movement. This I have found, and still do find, is a brilliant system to utilise even when it comes to appreciating all the nuances of our clients bodies.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So when we study biomechanics we must always keep an open mind to the complexities of variants that will very likely influence our clients movement quality. Anatomy and movement educators will encourage discussion throughout our education programmes with a layered approach to deepening our understanding. There are  few layers to get through and much of that is in the application process which is why practice is key. The more bodies you watch, analyse and monitor, the more you learn and by the way that learning never ends. Every clients is a new subject, a new set of variants and a new way of watching movement and all that contributes to it.</span>\n\n&nbsp;\n<h2><b>Different Types of Biomechanics </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is one way we could differentiate how we look at &amp; understanding anatomy &amp; movement in our clients; </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Extrinsic Biomechanics</span></i><span style=\"font-weight: 400;\"> is the study of looking at a movement, seeing the angles in the joints, the movement performance &amp; also maybe measuring them- force, angles, speed etc </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Intrinsic Biomechanics</span></i><span style=\"font-weight: 400;\"> is considering what is going on inside the body that influences what we see extrinsically. Ie the use of the logic of anatomy, ideal muscle lengths &amp; actions, nerve ranges, pure joint ranges &amp; how each individual substructure &amp; area of the body contributed is required performance </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sounds complicated? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok ok ok let me give you the </span><span style=\"font-weight: 400;\">spectrum</span><span style=\"font-weight: 400;\"> of biomechanics …..</span>\n\n&nbsp;\n<h3><i><span style=\"font-weight: 400;\">Complex Biomechanics </span></i><span style=\"font-weight: 400;\">- this could be interpreted as the study of forces, vectors and 1st/2nd/3rd class levers and often requires video analysis most probably at uni or in a lab.</span></h3>\n&nbsp;\n<h3><i><span style=\"font-weight: 400;\">Simple Biomechanics </span></i><span style=\"font-weight: 400;\">- this might be interpreted simply as the hip should flex &amp; extend, the thoracic spine should rotate etc</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s start at the simple end so I can explain how movement practitioners like you and I are already specialists in biomechanics </span>\n\n&nbsp;\n<h2><b>Bad Technique or Problem Biomechanics? </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Your new client is on time &amp; the consultation went as expected …. wants to get fit, lose some weight &amp; has a bit of low back pain. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You warm them up &amp; you notice one shoulder seems higher than the other, one foot flicks out a bit &amp; they look rather round shouldered.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So you decide you want to see the quality of their movement without weights first to be safe &amp; so ask them to show you some body weight squats </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The look on their face offers you some early indication that even this might be challenging for them so you take them over to a rig to hold onto or maybe position them to just do a bodyweight squat to a box/bench </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Their reticence is confirmed when their knees cave in, upper body folds forwards, neck retracts and extends, feet seem to be pointing almost to 9 &amp; 3 o.clock!....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You swap places to demonstrate but when they try again it’s not much better, in fact possibly worse </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You verbally cue “</span><i><span style=\"font-weight: 400;\">knees out, back up straight, eyes forwards</span></i><span style=\"font-weight: 400;\">”</span>\n\n<span style=\"font-weight: 400;\">Nope...still no good…</span>\n\n&nbsp;\n<h1><strong><i>PAUSE &gt;&gt;&gt;&gt;&gt;</i></strong></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Right let’s stop here for a moment &amp; try to understand this very common scenario we all seem to experience at some point in our careers, and sometimes very often...weekly...or even daily!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). You did a biomechanical assessment by watching the squat. This is subjective but extremely relevant for understand their ranges, coordination &amp; control in a fundamental movement required for ADL</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">2). You evaluated the risk &amp; feel you want to reduce it</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">3). What you evaluated was their </span><i><span style=\"font-weight: 400;\">extrinsic biomechanics </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">4). At a Uni you might include mathematical equations of force production &amp; optimal joint angle requirements to reduce risk &amp; optimise performance etc - but this client really doesn’t need all that - they just want to move well enough to lose weight </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">5). So let\'s now consider their </span><i><span style=\"font-weight: 400;\">intrinsic biomechanics</span></i><span style=\"font-weight: 400;\"> …...myofascial, neural and skeletal systems…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Is it their pelvis, spine, shoulders?</span>\n\n<span style=\"font-weight: 400;\">Is it their muscles, nerves or the joints?</span>\n\n<span style=\"font-weight: 400;\">Are they just really bad at the technique or maybe they’re just not ready to squat?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT at this point you might be starting to think…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Well where do I start?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Where is the problem coming from?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“How would I know?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“How do I help her when no amount of coaching improves technique &amp; I\'m worried I might hurt her in the process of programming exercises?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“What system can I follow to address her limitations without worrying about if I’m doing the right thing?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Am I really qualified enough?” </span></i>\n\n<i><span style=\"font-weight: 400;\">“Do I need to refer her to a clinician first?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“I feel like I am guessing here!”</span></i>\n\n<i><span style=\"font-weight: 400;\">“I really feel like I don’t know what I’m doing!!”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you have ever thought any of these things then well done….it demonstrates you care! Also the next step, which is really important, is finding solutions to each of your questions, starting with “</span><i><span style=\"font-weight: 400;\">how can I help this client right now?”.....</span></i><span style=\"font-weight: 400;\">keep it simple!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then look for education that will give you new tools and skills to fill these gaps and answer these questions just like Sam did ….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here Sam shares his experience of gaining a deeper level of understanding his clients bodies…..</span>\n\n&nbsp;\n<h1><a href=\"https://youtu.be/UFkDTq2bZAw\" target=\"_blank\" rel=\"noopener noreferrer\"><strong><em>CLICK HERE TO WATCH SAM\'S VIDEO....</em></strong></a></h1>\nEmail rachel@biomechanicseducaton.com to enquire about the final places remaining this year on our workshops!','Will understanding biomechanics take me to the next level?','','draft','closed','closed','','will-understanding-biomechanics-take-me-to-the-next-level','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=24097',0,'post','',0),(24100,3,'2020-09-21 14:17:10','2020-09-21 14:17:10','','DSC01482','','inherit','open','closed','','dsc01482','','','2020-09-21 14:17:10','2020-09-21 14:17:10','',24097,'https://biomechanicseducation.com/wp-content/uploads/2020/09/DSC01482-scaled-1.jpg',0,'attachment','image/jpeg',0),(24186,3,'2020-09-29 12:23:57','2020-09-29 12:23:57','<h2><a href=\"https://www.biomechanicseducation.com/product/shoulder-knee-foot-biomechanics-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Is shoulder pain the new back pain?</b></a></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So many clients are coming to us for help with their shoulder ‘issues’ and we can feel ill equipped to evaluate their problem and offer movement advice when some movements may hurt.</span>\n\n<span style=\"font-weight: 400;\">Yet shoulder pain is presenting as often as back pain these days…..right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The shoulder joint is capable of A LOT! However, there are also things it should NOT be expected to do.</span>\n\n<span style=\"font-weight: 400;\">Here we will explore considerations that might influence your clients programme based upon a deeper understanding of their shoulder biomechanics. </span>\n\n&nbsp;\n<h2><b>The Problem</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The shoulder joint is a relatively shallow ball &amp; socket. There are both benefits &amp; problems that come with its unique structure.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Fundamentally it’s moveable in a large range, &amp; combination of, movements, however this leaves it at risk of a low level of stability </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Tasks are generally performed from the shoulder that should be stabilised not only from its own tissues &amp; design but also from the whole spine, pelvis, knees &amp; feet they sit above </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So the fluidity &amp; control the shoulders require are, should we say, multidisciplinary!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sadly for many they can be ‘stuck’ in a sedentary rounded position for many hours. Then the extremities that are driven, so to speak, by the brachial plexus in the neck/shoulder area could experience nerve tethering or tension from adapted muscle tone that means the integrated system grumbles &amp; complains.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This could simply present as a stiff neck or as severe as an agonising, &amp; sadly not uncommon, case of carpal tunnel syndrome </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We might choose to play a sport that just requires 1 shoulder to swing at speed with a club, bat or racket fixed &amp; weighted at the end, pressing into already annoyed nerves crossing the palm &amp; resulting in ‘overuse’ problems!</span>\n\n&nbsp;\n<h2><b>So What?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should probably seek to find a balance of both movement &amp; control</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our bodies LOVE consistent controlled subconscious &amp; conscious movement as this lubricates joints, exercises muscles &amp; mobilises nerves </span>\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n<span style=\"font-weight: 400;\">Not too extreme, too often nor for too long</span>\n<h2></h2>\n<h2><b>The Anatomy </b></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter  wp-image-24188\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_147943874-scaled-1.jpg\" alt=\"\" width=\"478\" height=\"382\" />\n<h2></h2>\n<span style=\"font-weight: 400;\">Shoulders are not really limited to specific planes due to their shallow ball and socket design. They can circumduct which means they can move pretty much in every plane / direction that you can imagine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Individually we are born with certain genetic predispositions. This means some individuals have more ‘laxity’ to their joints, some sit at certain geometric angles naturally to their body &amp; our lever lengths can also differ, for example.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all have a series of bones, muscles &amp; nerves that are relatively consistent.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In simple terms….</span>\n\n<span style=\"font-weight: 400;\">Humerus</span>\n\n<span style=\"font-weight: 400;\">Glenohumeral joint</span>\n\n<span style=\"font-weight: 400;\">Scapular</span>\n\n<span style=\"font-weight: 400;\">Clavicle</span>\n\n<span style=\"font-weight: 400;\">Subscapularis</span>\n\n<span style=\"font-weight: 400;\">Infraspinatus </span>\n\n<span style=\"font-weight: 400;\">Pectorals </span>\n\n<span style=\"font-weight: 400;\">Trapezius</span>\n\n<span style=\"font-weight: 400;\">Teres Major/Minor</span>\n\n<span style=\"font-weight: 400;\">Serratus </span>\n\n<span style=\"font-weight: 400;\">Median nerve</span>\n\n<span style=\"font-weight: 400;\">Radial nerve</span>\n\n<span style=\"font-weight: 400;\">Ulnar nerve </span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter  wp-image-24190\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/Screenshot-2020-09-29-at-13.19.57.png\" alt=\"\" width=\"627\" height=\"429\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are also other things like bursa, blood vessels etc but let’s keep it simple for the purpose of this blog being translated into something usable for your PT sessions..</span>\n\n&nbsp;\n<h2><b>Example of a Common Error</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The lateral raise is a favourite for those wanting to work/build the deltoid\'s appearance. It is a great movement for strengthening our ability to lift things.</span>\n\n<span style=\"font-weight: 400;\"> Yet the shoulder abduction action can be misunderstood in terms of our shoulder design. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The shoulder joint generally isn’t structurally designed to pass smoothly beyond 90degrees of frontal plane abduction while the humerus is internally rotated for example (or palm/thumb pointing down to floor) and particularly while under load - also as in an high upright row with elbows lifted.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is how impingements can occur overtime or an overactive pec minor altering scapular positioning means the humeral head is in the wrong position as we raise our arms laterally.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is therefore probably prudent to externally rotate prior to around 80/90 degrees of shoulder abduction. </span>\n\n<span style=\"font-weight: 400;\">Understanding that the body will endeavour to do what you ask it to, it will adapt to the movements &amp; environment you put it into but that doesn\'t mean that movement, particularly when repeated over and over again, is ok long term.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So FULL ROM does not guarantee safe ROM depending upon the individual &amp; their biomechanical set up.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What can be done to improve our clients shoulder biomechanics BEFORE an injury occurs? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First &amp; foremost let’s evaluate our clients shoulder function by testing key movements, muscles &amp; nerves.</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter  wp-image-24187\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_109415894-scaled-1.jpg\" alt=\"\" width=\"516\" height=\"516\" />\n\n&nbsp;\n<h2><b>Common Shoulder Issues</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Problem 1;</span>\n\n<span style=\"font-weight: 400;\">Pec minor is a key muscle due to its common shortened adaption creating that round shouldered, or protracted, position we often see in clients. So having the skills to test it will give us an indication of what to do.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Solution;</span>\n\n<span style=\"font-weight: 400;\">Apply the 20/20 MET, strengthen its antagonists &amp; then condition its own functional capacity through isolation then integration strength movements.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Problem 2; </span>\n\n<span style=\"font-weight: 400;\">Upper Trapezius dysfunction causing elevated scapular position. This can also be a compensation that is deliberately trying to reduce Median nerve tension at the brachial plexus. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Solution;</span>\n\n<span style=\"font-weight: 400;\">Test both structures (Upper traps &amp; Median nerve) &amp; if the tests are positive we are likely to want to improve their functional capacity to get a negative test result. </span>\n\n<span style=\"font-weight: 400;\">Reduce trap tension using the 20/20 MET then prescribe very slow gentle median nerve mobilisations to ‘calm the nervous system down’ or desensitise it.</span>\n\n<span style=\"font-weight: 400;\">We can also prescribe scapular depression strength work followed by shrugs.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Problem 3;</span>\n\n<span style=\"font-weight: 400;\">Overactive Subscapularis or Infraspinatus can directly affect healthy shoulder biomechanics. As shoulder rotators these muscles often require some love &amp; attention. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Solution;</span>\n\n<span style=\"font-weight: 400;\">Test both muscles &amp; if positive…</span>\n\n<span style=\"font-weight: 400;\">Apply the 20/20 MET &amp; then using a resistance band or light cable work both internal &amp; external rotation of the humerus.</span>\n\n&nbsp;\n<h2><b>The Tests &amp; Exercises </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you have a client who has shoulder problems?</span>\n\n<span style=\"font-weight: 400;\">Maybe you’re really keen to gain a deeper level of understanding shoulder biomechanics so you can help them?</span>\n\n<span style=\"font-weight: 400;\">Are you frustrated because you cannot work out what to do to help them?</span>\n\n<span style=\"font-weight: 400;\">Or you\'re worried you could make them worse?</span>\n\n<span style=\"font-weight: 400;\">Would you like to learn each of these tests mentioned above?</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/shoulder-knee-foot-biomechanics-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">Look at our workshops CLICK HERE </span></a></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Contact us directly on </span><a href=\"mailto:info@biomechanicseducation.com\"><span style=\"font-weight: 400;\">info@biomechanicseducation.com</span></a></h1>\n<h1><span style=\"font-weight: 400;\">07976 933113</span></h1>\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Further reading;</span></h3>\n<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/8421011\"><span style=\"font-weight: 400;\">https://www.ncbi.nlm.nih.gov/pubmed/8421011</span></a>\n\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/7931787/\"><span style=\"font-weight: 400;\">https://pubmed.ncbi.nlm.nih.gov/7931787/</span></a>\n\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/7661251/\"><span style=\"font-weight: 400;\">https://pubmed.ncbi.nlm.nih.gov/7661251/</span></a>\n\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/20133443/\"><span style=\"font-weight: 400;\">https://pubmed.ncbi.nlm.nih.gov/20133443/</span></a>\n\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/16826111/\"><span style=\"font-weight: 400;\">https://pubmed.ncbi.nlm.nih.gov/16826111/</span></a>\n\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/9697636/\"><span style=\"font-weight: 400;\">https://pubmed.ncbi.nlm.nih.gov/9697636/</span></a>\n\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4668174/\"><span style=\"font-weight: 400;\">https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4668174/</span></a>\n\n&nbsp;','Is shoulder pain the new back pain?','','draft','closed','closed','','is-shoulder-pain-the-new-back-pain','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=24186',0,'post','',0),(24187,3,'2020-09-29 12:19:23','2020-09-29 12:19:23','','shutterstock_109415894','','inherit','open','closed','','shutterstock_109415894','','','2020-09-29 12:19:23','2020-09-29 12:19:23','',24186,'https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_109415894-scaled-1.jpg',0,'attachment','image/jpeg',0),(24188,3,'2020-09-29 12:19:29','2020-09-29 12:19:29','','shutterstock_147943874','','inherit','open','closed','','shutterstock_147943874','','','2020-09-29 12:19:29','2020-09-29 12:19:29','',24186,'https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_147943874-scaled-1.jpg',0,'attachment','image/jpeg',0),(24189,3,'2020-09-29 12:19:34','2020-09-29 12:19:34','','shutterstock_172528928','','inherit','open','closed','','shutterstock_172528928-2','','','2020-09-29 12:19:34','2020-09-29 12:19:34','',24186,'https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_172528928-scaled-1.jpg',0,'attachment','image/jpeg',0),(24190,3,'2020-09-29 12:20:09','2020-09-29 12:20:09','','Screenshot 2020-09-29 at 13.19.57','','inherit','open','closed','','screenshot-2020-09-29-at-13-19-57','','','2020-09-29 12:20:09','2020-09-29 12:20:09','',24186,'https://biomechanicseducation.com/wp-content/uploads/2020/09/Screenshot-2020-09-29-at-13.19.57.png',0,'attachment','image/png',0),(24262,3,'2020-10-06 09:38:25','2020-10-06 09:38:25','<h2>Did You Know Some People Have Six Quadriceps Muscles?</h2>\r\nThe human body is full of surprises, and the cadaver labs consistently reveal just how much we have yet to learn.\r\n<h3>The Mystery of the Extra Quadriceps</h3>\r\nWe are typically taught that the quadriceps consist of four muscles—hence the name \"quad.\" However, there are fascinating cases where individuals have five or even six quadriceps muscles. Yes, six!\r\n\r\nThe human body is a marvel of complexity, and those of us passionate about understanding it are always eager to explore these anomalies. Discovering these additional muscles can deepen our comprehension of movement and anatomy.\r\n<h3>Exploring the Fifth and Sixth Quadriceps</h3>\r\nThrough my research on these extra quadriceps, I\'ve learned that these muscles, which might more accurately be called \"sexticeps,\" can play unique roles in movement.\r\n<h3>Tensa Vastus Intermedius</h3>\r\n<strong>Definition</strong>: This muscle tenses the aponeurosis (a type of fascia) of the vastus intermedius and medially rotates the action of the muscle.\r\n\r\n<strong>Function</strong>: It may act as a second tensor in addition to the tensor fascia lata (TFL), suggesting it assists the TFL by tensing a similar area rather than contracting as an agonist.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24267\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/TENSA-VASTUS-INTERMEDIUS.png\" alt=\"\" width=\"409\" height=\"393\" />\r\n<h3>Articularis Genus</h3>\r\n<strong>Definition</strong>: This muscle is not thought to act independently. It retracts the suprapatellar bursa during knee extension, preventing impingement between the patella and femur.\r\n\r\n<strong>Function</strong>: It coordinates the movement of the suprapatellar bursa during knee flexion and extension and contributes to proprioception. However, studies question its capability based on its structure.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24266\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/ARTICULARIS-GENUS.png\" alt=\"\" width=\"417\" height=\"413\" />\r\n<h3>Implications of Additional Quadriceps</h3>\r\nSo, what does it mean if someone has a fifth or sixth quadriceps muscle? Could this anatomical variation provide an advantage or pose a disadvantage? How might it affect movement?\r\n\r\nWhile I don\'t have definitive answers, these questions open the door to intriguing discussions. I invite you to share your thoughts and join me for an inclusive conversation on anatomy and movement.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\">Join the Conversation</h4>\r\n<p style=\"text-align: center;\">Would you like to dive deeper into anatomy and movement? Consider joining our Diploma in Biomechanics Coaching.</p>\r\n<p style=\"text-align: center;\"><strong>Contact Us:</strong></p>\r\n<p style=\"text-align: center;\">Email:<em> rachel@biomechanicseducation.com</em></p>\r\n<p style=\"text-align: center;\">Phone: <em>020 3841 6151</em></p>\r\n<p style=\"text-align: center;\">Let\'s explore the fascinating complexities of the human body together!</p>','Did You Know….some people have 6 Quadricep Muscles?','','publish','closed','closed','','did-you-know-some-people-have-6-quadricep-muscles','','','2025-01-20 16:01:57','2025-01-20 16:01:57','',0,'https://www.biomechanicseducation.com/?p=24262',0,'post','',0),(24266,3,'2020-10-06 09:32:49','2020-10-06 09:32:49','','ARTICULARIS GENUS','','inherit','open','closed','','articularis-genus','','','2020-10-06 09:32:49','2020-10-06 09:32:49','',24262,'https://biomechanicseducation.com/wp-content/uploads/2020/10/ARTICULARIS-GENUS.png',0,'attachment','image/png',0),(24267,3,'2020-10-06 09:34:08','2020-10-06 09:34:08','','TENSA VASTUS INTERMEDIUS','','inherit','open','closed','','tensa-vastus-intermedius','','','2020-10-06 09:34:08','2020-10-06 09:34:08','',24262,'https://biomechanicseducation.com/wp-content/uploads/2020/10/TENSA-VASTUS-INTERMEDIUS.png',0,'attachment','image/png',0),(24268,3,'2020-10-06 09:37:59','2020-10-06 09:37:59','','shutterstock_1401205709','','inherit','open','closed','','shutterstock_1401205709','','','2020-10-06 09:37:59','2020-10-06 09:37:59','',24262,'https://biomechanicseducation.com/wp-content/uploads/2020/10/shutterstock_1401205709-scaled-1.jpg',0,'attachment','image/jpeg',0),(24335,0,'2020-10-09 11:35:36','2020-10-09 11:35:36','','IMG_0670','','inherit','open','closed','','img_0670','','','2020-10-09 11:35:36','2020-10-09 11:35:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/10/IMG_0670-1.jpg',0,'attachment','image/jpeg',0),(24449,3,'2020-10-19 10:00:38','2020-10-19 10:00:38','<h1><b>Remember the weak glutes debate?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well once again let’s consider if this is really the right question? </span>\n\n&nbsp;\n<h2><b>Weak - definition </b></h2>\n<i><span style=\"font-weight: 400;\">Lacking the power to perform physically demanding tasks.</span></i>\n\n<i><span style=\"font-weight: 400;\">Having little physical strength or energy </span></i>\n\n<i><span style=\"font-weight: 400;\">Liable to break or give way under pressure; easily damaged</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me offer some of my thoughts &amp; I\'d love to hear yours.....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Using the term ‘weak core’ is often interpreted as meaning it simply requires strengthening.</span>\n\n<span style=\"font-weight: 400;\">However let’s challenge this for a moment shall we…?</span>\n\n&nbsp;\n<h2><b>What could be the right question?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">How would one come to the conclusion that a client has a weak core?</span>\n\n<span style=\"font-weight: 400;\">What test identifies it?</span>\n\n<span style=\"font-weight: 400;\">If a client can walk into the gym, move around &amp; perform daily tasks does that indicate a weak core?</span>\n\n<span style=\"font-weight: 400;\">If it’s being determined by pain then I would also challenge this to be ambiguous as a ‘diagnosis’ for a ‘weak’ core.</span>\n\n<span style=\"font-weight: 400;\">Pain may indicate a ‘weakness’ or rather a dysfunction or problem </span>\n\n<span style=\"font-weight: 400;\">BUT </span>\n\n<span style=\"font-weight: 400;\">Should we be strengthening a dysfunction?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rather than focusing on ‘what’....lets shift the focus onto the ‘WHY?’</span>\n\n&nbsp;\n<h2><b>Why not what?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why do we think it\'s weak?</span>\n\n<span style=\"font-weight: 400;\">How strong is that reasoning?</span>\n\n<span style=\"font-weight: 400;\">Can your reasoning be evidenced?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To be clear I’m not suggesting strength work isn’t required at all however what might be prudent is to identify potential causes for the apparent weakness first. Consider all intervention options and then possibly the timing of when we apply strength training. </span>\n\n&nbsp;\n<h2><b>If not weak then what?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Examples of intrinsic dysfunctions that could give the appearance of a weak core;</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">QL Hinge/s or quadratus lumborum ‘sub clinical’ (not clinical) spasm - can be addressed with the wall glide technique</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Glute dysfunction - ‘sub clinical’ (not clinical) spasm - can be addressed with an MET (Muscle energy technique)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Hip flexor dysfunction - ‘sub clinical’ (not clinical) spasm - can be addressed with an MET (Muscle energy technique)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Stiff lumbar spine - Can be addressed with lumbar tilts and/or kee rolls</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Stiff thoracic spine - Can be addressed with Thoracic rotation drills  </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The core strength ratios are poor (due to any of the above and/or lifestyle) - measure the ratios &amp; prescribe appropriate loading to the area where the ratio is off. </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also considering this last point on the list above its vital we understand that all ‘core stability’ strength work will emphasise one area of the trunk over the others. For example supine leg extension will strengthen the flexors or anterior trunk predominantly. So do planks and mountain climbers. So we must consider how many core stability exercises we teach and how many strengthen which part of the trunk. Are we hitting a balance? Or are we overloading the flexors or maybe the extensors get overloaded more? How would we know?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Improving the intrinsic function of each substructure first with an understanding how the myofascial, skeletal &amp; neural systems are integrated &amp; influence each other is a vital component in understanding how the body works. </span>\n\n<span style=\"font-weight: 400;\">There is a small gap in our education that really highlights &amp; proves this which is the ability to test, monitor &amp; re test our clients intrinsic function</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With this ability we as exercise professionals can better serve our client when designing a movement programme </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Without it.....well we are simply guessing </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Forcing techniques or repeating patterns does NOT address the root cause unless by chance or maybe temporarily </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I urge you to challenge everything! </span>\n\n<span style=\"font-weight: 400;\">Do not accept a term like weak core or weak glutes as simply needing strength work </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First understand the underlying causes/reasons behind this ‘diagnosis’ </span>\n\n&nbsp;\n<h1>Would you like to learn how to assess your PT client both online &amp; in person?</h1>\n<h2><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">CLICK HERE TO BOOK YOUR PLACE ON OUR 2021 PELVIC &amp; SPINE BIOMECHANICS WORKSHOP </a></h2>\n&nbsp;\n<h2><a href=\"https://youtu.be/5GxKxl4X-sw\" target=\"_blank\" rel=\"noopener noreferrer\">&gt;&gt; FREE WEAK GLUTES WEBINAR CLICK HERE &lt;&lt;</a></h2>','Does Your Client Really Have A Weak Core?','','draft','closed','closed','','does-your-client-really-have-a-weak-core','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=24449',0,'post','',0),(24451,3,'2020-10-19 09:59:54','2020-10-19 09:59:54','','shutterstock_619010450','','inherit','open','closed','','shutterstock_619010450-2','','','2020-10-19 09:59:54','2020-10-19 09:59:54','',24449,'https://biomechanicseducation.com/wp-content/uploads/2020/10/shutterstock_619010450-scaled-1.jpg',0,'attachment','image/jpeg',0),(24544,3,'2020-10-27 07:49:45','2020-10-27 07:49:45','<h2><b><span data-contrast=\"auto\">Enhancing Your Anatomy Knowledge</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">Many learners express a desire to deepen their understanding of anatomy and the body. You might recall passing your anatomy exam and thinking, \"I don’t need to remember everything; I know how to teach a client to squat!\" However, when unexpected challenges arise or clients move in ways that puzzle us, we often wish we could recall our anatomy lessons better.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">As a kinesthetic learner and an educator for the past 16 years, I understand the difficulty of teaching complex subjects like anatomy. The key is to provide techniques that help learners anchor each body part to a memorable reference.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">This blog series aims to offer movement practitioners a systematic approach to remembering anatomy, making it relevant and applicable in practice. I\'ll share insights and techniques, including word association, history, and tactics, to make anatomy recall useful for training clients.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2><b>Interesting Pelvis Facts </b></h2>\r\n<ol>\r\n 	<li><span data-contrast=\"auto\">Elvis the Pelvis: Elvis Presley earned this nickname for his hip-thrusting dance moves. The pelvis is often linked to sexuality, which can influence how clients perceive their pelvis and its function.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Pelvis Functions: The pelvis supports the hip joints and protects digestive and reproductive organs. Understanding its functionality helps broaden our perspective beyond just movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Plural of Pelvis: The correct plural term is \"pelves,\" not \"pelvises.\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"4\" data-aria-level=\"1\"><span data-contrast=\"auto\">Gender Differences: Male and female pelves differ significantly. The female pelvis is wider and more shallow to accommodate childbirth, a fact that changes with age and should be considered during assessments.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Childbirth Effects: The hormone relaxin softens the pelvic joints during pregnancy and childbirth, permanently changing the pelvis. This should be considered when working with clients who are pregnant or have given birth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"6\" data-aria-level=\"1\"><span data-contrast=\"auto\">Fetal Development: The development of the pelvis and acetabulum in fetuses is influenced by mechanical stimuli, particularly gluteal muscle activity and femoral head pressure, highlighting the importance of pelvic muscles even before birth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<h2><span class=\"TextRun SCXW176767768 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW176767768 BCX8\">Understanding Pelvic Biomechanics: The Bony Anatomy</span></span><span class=\"EOP SCXW176767768 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span class=\"TextRun SCXW27846784 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW27846784 BCX8\">Anatomy books and skeleton models only </span><span class=\"NormalTextRun SCXW27846784 BCX8\">provide</span><span class=\"NormalTextRun SCXW27846784 BCX8\"> a limited view of the pelvis. Observing real </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW27846784 BCX8\">pelves</span><span class=\"NormalTextRun SCXW27846784 BCX8\"> reveals the structural diversity among individuals. </span><span class=\"NormalTextRun SCXW27846784 BCX8\">Here’s</span><span class=\"NormalTextRun SCXW27846784 BCX8\"> a closer look at the key bones and their meanings:</span></span><span class=\"EOP SCXW27846784 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24547\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.18.14.png\" alt=\"\" width=\"511\" height=\"476\" />\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ilium: Latin for \"flank\" or \"groin,\" this large, flat bone forms the upper part of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Pubis: Named for the pubic hair that appears during puberty, this bone forms the front part of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Symphysis: Meaning \"fusion,\" this term describes where the pubic bones meet at the front.</span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ischium: Latin for \"hip joint\" or \"loin,\" this bone forms the lower and back part of the pelvis. It’s where the \"sitting bones\" are located.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sacrum: Known as the \"holy bone,\" it’s a triangular bone at the base of the spine that protects the genitalia.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Coccyx: Greek for \"cuckoo,\" this \"tailbone\" resembles a bird’s bill and is located at the base of the spine.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2><img class=\"aligncenter wp-image-24645\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.50.51-2.png\" alt=\"\" width=\"411\" height=\"354\" /><b><span data-contrast=\"auto\">Key Bony Landmarks</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Iliac Spine: The upper rim of the ilium, used in pelvic function tests. (Iliac) </span><b><span data-contrast=\"auto\">Fossa</span></b><span data-contrast=\"auto\"> is the Greek word for </span><i><span data-contrast=\"auto\">ditch </span></i><span data-contrast=\"auto\">describes the dip of the concave surface on the inner surface of the ilium.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Acetabulum: Latin for \"vinegar cup,\" this is the hip socket where the femur head fits.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2><b>Acronyms for Bony Areas &amp; Prominences </b></h2>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">SIJ: Sacroiliac Joint, where the sacrum meets the ilium, often associated with lower back pain.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">PSIS: Posterior Superior Iliac Spine, located at the back of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">ASIS: Anterior Superior Iliac Spine, located at the front of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">AIIS: Anterior Inferior Iliac Spine, below the ASIS.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2><b><span data-contrast=\"auto\">Structural Variations</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">Understanding genetic differences in pelvic structure is crucial for tailoring exercise programmes:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-24550\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.20.58.png\" alt=\"\" width=\"454\" height=\"424\" />\r\n\r\n<span style=\"font-weight: 400;\">We know we genetically differ and as you can see here we can differ inside our bodies as much as we do on the outside but what does that mean to us as trainers? </span>\r\n\r\n<span style=\"font-weight: 400;\">Coxa Valgus or Vara &amp; Femoral Version are good examples of terminologies for clients pelvis/hip geometry that differ in a way that may have clinical or movement relevance for their practitioner.</span>\r\n\r\n<span style=\"font-weight: 400;\">These can be identified using simple manual tests that we offer on our <a href=\"https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/\" target=\"_blank\" rel=\"noopener noreferrer\">Running Biomechanics Workshops</a> for example. They can change the way we prescribe exercises or what we expect of our clients when they move. Hopefully these descriptions help to appreciate this….</span>\r\n\r\n<b>The Femur</b> <span style=\"font-weight: 400;\">is the largest bone in the body &amp; we will only discuss here the top (proximal) portion that relates to the pelvis. The other end (distal) will be discussed in the Knee Series.</span>\r\n\r\n<b>Trochanter</b><span style=\"font-weight: 400;\"> comes from the Greek word </span><i><span style=\"font-weight: 400;\">trokhos</span></i><span style=\"font-weight: 400;\"> for wheel. It describes the large round feeling bony prominence at the side of the pelvis. It is a key landing site for the lateral glutes &amp; piriformis - to be discussed next time. </span>\r\n\r\n<b>Neck of femur</b><span style=\"font-weight: 400;\"> is the part of the femur that looks like a neck sticking out from the medial side of the main femur thigh bone where the greater trochanter is lateral &amp; then ends in the ‘ball’ of the hip’s ball &amp; socket joint.</span>\r\n\r\n<img class=\"aligncenter wp-image-24646\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.57.12.png\" alt=\"\" width=\"342\" height=\"301\" />\r\n\r\n<b>Coxa</b><span style=\"font-weight: 400;\"> is a Latin word meaning hip or limb joint (koks-h)  </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Coxa Vara:</strong> A decreased angle at the hip, potentially limiting abduction.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Coxa Valga:</strong> An increased angle at the hip, potentially limiting adduction.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">Imagine you have a client who has been diagnosed as Coxa Valga….how might this alter your expectations when you write them a programme or train them in your facility?</span>\r\n\r\n<img class=\"aligncenter wp-image-24548\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.48.png\" alt=\"\" width=\"315\" height=\"217\" />\r\n\r\n<b>Femoral</b><span style=\"font-weight: 400;\"> is </span><span style=\"font-weight: 400;\">related to the thigh or </span><b>femur. </b>\r\n\r\n<b>Version</b><span style=\"font-weight: 400;\"> or </span><span style=\"font-weight: 400;\">Vers is Latin for turned or to turn.</span>\r\n\r\n<b>Femoral Version</b><span style=\"font-weight: 400;\"> describes the rotation (of turn) of the femur in relation to the pelvis. </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Femoral Anteversion:</strong> Medial rotation of the femur.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Femoral Retroversion:</strong> Lateral rotation of the femur.</span>\r\n\r\n<span style=\"font-weight: 400;\">Imagine you have a client who has been diagnosed as femoral anteversion….how might this alter your expectations when you write them a squat programme or train them in your facility?</span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter size-full wp-image-24549\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.18.png\" alt=\"\" width=\"866\" height=\"408\" />\r\n\r\n&nbsp;\r\n\r\n<b><span data-contrast=\"auto\">Application in Training</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Knowing these anatomical details helps explain why clients move differently. This knowledge is vital for designing effective training programs and assessing pelvic function.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h1>Learn more with our Pelvic &amp; Spine Biomechanics Online CPD Training <a href=\"https://biomechanicseducation.com/courses/online-cpd-courses/\">here</a>.</h1>\r\n<span class=\"TextRun SCXW264464150 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW264464150 BCX8\">Discover more with our Diploma in Biomechanics Coaching </span></span><a class=\"Hyperlink SCXW264464150 BCX8\" href=\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\" target=\"_blank\" rel=\"noreferrer noopener\"><span class=\"TextRun Underlined SCXW264464150 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW264464150 BCX8\" data-ccp-charstyle=\"Hyperlink\">here</span></span></a><span class=\"EOP SCXW264464150 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2><b>References:</b></h2>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Benson, Emily. A Woman’s Pelvis Narrows as She Ages. 25 Apr. 2016, Science.org.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Cooperstein R, Hickey M. The Reliability of Palpating the Posterior Superior Iliac Spine: A Systematic Review. J Can Chiropr Assoc. 2016 Mar;60(1):36-46. PMID: 27069265; PMCID: PMC4807681.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Coxa Vara / Coxa Valga. Physiopedia, Physio-Pedia.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Delaere O, Dhem A. Prenatal Development of the Human Pelvis and Acetabulum. Acta Orthop Belg. 1999 Sep;65(3):255-60. PMID: 10546347.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">The Femur. TeachMeAnatomy, TeachMeAnatomy.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Rosenfeld, Jordan. 7 Essential Facts about the Pelvis. Mental Floss, 21 Sept. 2017, Mental Floss.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>','Pelvic (Hip) Biomechanics - Part 1 - The Bones of the Hip','','publish','closed','closed','','pelvic-hip-biomechanics-part-1-the-bones','','','2025-01-20 15:59:55','2025-01-20 15:59:55','',0,'https://www.biomechanicseducation.com/?p=24544',0,'post','',0),(24546,3,'2020-10-26 20:13:47','2020-10-26 20:13:47','','shutterstock_1339561676','','inherit','open','closed','','shutterstock_1339561676','','','2020-10-26 20:13:47','2020-10-26 20:13:47','',24544,'https://biomechanicseducation.com/wp-content/uploads/2020/10/shutterstock_1339561676.pdf',0,'attachment','application/pdf',0),(24547,3,'2020-10-26 20:18:37','2020-10-26 20:18:37','','Screenshot 2020-10-26 at 20.18.14','','inherit','open','closed','','screenshot-2020-10-26-at-20-18-14','','','2020-10-26 20:18:37','2020-10-26 20:18:37','',24544,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.18.14.png',0,'attachment','image/png',0),(24548,3,'2020-10-26 20:19:25','2020-10-26 20:19:25','','Screenshot 2020-10-26 at 19.30.48','','inherit','open','closed','','screenshot-2020-10-26-at-19-30-48','','','2020-10-26 20:19:25','2020-10-26 20:19:25','',24544,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.48.png',0,'attachment','image/png',0),(24549,3,'2020-10-26 20:19:57','2020-10-26 20:19:57','','Screenshot 2020-10-26 at 19.30.18','','inherit','open','closed','','screenshot-2020-10-26-at-19-30-18','','','2020-10-26 20:19:57','2020-10-26 20:19:57','',24544,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.18.png',0,'attachment','image/png',0),(24550,3,'2020-10-26 20:21:11','2020-10-26 20:21:11','','Screenshot 2020-10-26 at 20.20.58','','inherit','open','closed','','screenshot-2020-10-26-at-20-20-58','','','2020-10-26 20:21:11','2020-10-26 20:21:11','',24544,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.20.58.png',0,'attachment','image/png',0),(24642,3,'2020-11-03 11:51:20','2020-11-03 11:51:20','','Screenshot 2020-11-03 at 11.50.51','','inherit','open','closed','','screenshot-2020-11-03-at-11-50-51','','','2020-11-03 11:51:20','2020-11-03 11:51:20','',24544,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.50.51.png',0,'attachment','image/png',0),(24644,3,'2020-11-03 11:54:30','2020-11-03 11:54:30','','Screenshot 2020-11-03 at 11.50.51','','inherit','open','closed','','screenshot-2020-11-03-at-11-50-51-2','','','2020-11-03 11:54:30','2020-11-03 11:54:30','',24544,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.50.51-1.png',0,'attachment','image/png',0),(24645,3,'2020-11-03 11:56:36','2020-11-03 11:56:36','','Screenshot 2020-11-03 at 11.50.51','','inherit','open','closed','','screenshot-2020-11-03-at-11-50-51-3','','','2020-11-03 11:56:36','2020-11-03 11:56:36','',24544,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.50.51-2.png',0,'attachment','image/png',0),(24646,3,'2020-11-03 11:59:03','2020-11-03 11:59:03','','Screenshot 2020-11-03 at 11.57.12','','inherit','open','closed','','screenshot-2020-11-03-at-11-57-12','','','2020-11-03 11:59:03','2020-11-03 11:59:03','',24544,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.57.12.png',0,'attachment','image/png',0),(24648,3,'2020-11-03 14:11:50','2020-11-03 14:11:50','<span style=\"font-weight: 400;\">If you are concerned about losing clients AGAIN I urge you to stay with me &amp; keep reading. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Most of you will have concerns about how you will keep clients during yet another lockdown. Some of you will have already adapted but may be looking for ideas to attract lost or new clients and of course there are some of you that if you are having success PLEASE PLEASE PLEASE SHARE your ideas. We are in this together so when it works tell your peers!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let\'s strategise, stay focused &amp; feel in control during lockdown 2.0</span>\n\n&nbsp;\n<h2><b>1). Reduce fear/anxiety </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Covid-19 Awareness CPD training certificate! </span>\n\n<span style=\"font-weight: 400;\">Have you got yours?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If not then I encourage you to get one - see CIMSPA or THINKTREE for the most relevant one to your industry. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then DISPLAY IT! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We must let our clients know how qualified we are instead of waiting for them to ask to see these things. This reduces concerns that they may not raise with you &amp; if they are choosing between practitioners it might be the thing that makes their mind up!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider this as a way to reduce anxieties by letting clients, present clients &amp; potential clients, know that you take pride in your role &amp; have all of the safety requirements in place. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter  wp-image-24649\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-03-at-12.38.44.png\" alt=\"\" width=\"693\" height=\"434\" />\n\n&nbsp;\n<h2><b>2). Pick up the phone &amp; call them!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When was the last time you actually sat down and rang all of your clients? </span>\n\n<span style=\"font-weight: 400;\">Even the ones that you haven\'t seen for a while?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having spoken to several of you over the last 7 months it\'s clear we are losing a degree of connection with our clients, more so when training them online or via zoom or facebook.</span>\n\n<span style=\"font-weight: 400;\">We really must remind them WE CARE!</span>\n\n<span style=\"font-weight: 400;\">Picking up the phone (no selling unless they ask) &amp; actually talking to them brings back a degree of connection. Asking them how they are getting on. Telling them they aren\'t alone &amp; showing you care by offering (No 4) accessible content that won\'t cost them anything if they are concerned about finances. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine how YOU would feel if you got a call from someone who made you feel like they actually cared about you?</span>\n\n&nbsp;\n<h2><b>3). LISTEN!!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you call start with an open ended question like “</span><i><span style=\"font-weight: 400;\">Hey…&lt;name&gt;...how have you been?</span></i> <i><span style=\"font-weight: 400;\">Tell me how are you getting on?</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then SSSSSSSHHHHHHHHHHHHH……..Listen…….the more you can get them to open up &amp; talk to you the more you can discover what they really need. This feeds into your ability to plan your business based on the MOST relevant market research you have available to you!</span>\n\n<span style=\"font-weight: 400;\">Make notes, ask lots of questions to find out their emotional pain, struggles &amp; problems - this then enables you to create content.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A skilled listener can extract exactly the right information to their advantage particularly under this current climate!  </span>\n\n&nbsp;\n<h2><b>4) Create free &amp; low cost content</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Based upon these conversions (the more the better) you now have super hot relevant information for creating market specific content. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Make your videos engaging, smile, talk TO THEM not the camera ie look at the lens &amp; speak to the person. </span>\n\n<span style=\"font-weight: 400;\">Do they have equipment? No - Create videos of how to use their furniture or household items. </span>\n\n<span style=\"font-weight: 400;\">Are they in a bubble with other family members? Yes - create content that relates to working in pairs</span>\n\n<span style=\"font-weight: 400;\">Maybe they have lost confidence? Create content about behaviour change, tactics to stay positive etc Teach them about their circle of control. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not? </span>\n\n<span style=\"font-weight: 400;\">Look if you have time due to less clients stay pro active and create. You could charge for it later. </span>\n\n<span style=\"font-weight: 400;\">If you\'re busy consider what is making you busy - if its LOADS of clients GREAT! If it’s procrastination - C’MON!!</span>\n\n&nbsp;\n<h2><b>5). Circle of Control </b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Create a video or even a campaign to teach them about the circle of control vs the circle of care.</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Draw 2 large circles on a piece of paper </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Write over one CONTROL &amp; the other CARE</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Inside the circle titled CARE write in all the things you care about but cannot control </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Inside the circle title CONTROL write all of the things you can control</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Now rip the 2 circles apart</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Take the CARE circle &amp; rip it into tiny pieces - bin it!</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Focus ALL of your attention onto the CIRCLE OF CONTROL!</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Positive focus is vital right now. Social media and a constant dialect around covid can drag us down. So tactics to remain pro-active are vital even for our own state of mind!</span>\n\n&nbsp;\n<h2><b>6). Self care - this one\'s for YOU!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">NOW is the time to look after yourself, learn some more skills, practise technology, read &amp;....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PLEASE PLEASE PLEASE SHARE your ideas...this is when we should endeavour to lift each other up - right !? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not?</span>\n\n&nbsp;\n<h1><b>FREE STUFF!</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our friends at <a href=\"https://platform.archon-app.com/register\" target=\"_blank\" rel=\"noopener noreferrer\">Archon-app</a> have a site that allows you to test your physical performance for free on their platform through 6 categories</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Anaerobic</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Agility</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Strength</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Power</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Bodyweight</span></li>\n</ol>\n<span style=\"font-weight: 400;\">We would LOVE your feedback please;</span>\n<h3><a href=\"https://platform.archon-app.com/register\" target=\"_blank\" rel=\"noopener noreferrer\">CLICK HERE TO ACCESS ARCHON-APP</a></h3>\n&nbsp;\n<h3><b>Did you hear it? </b></h3>\n<span style=\"font-weight: 400;\">I was interviewed by<a href=\"https://youtu.be/K9NEixSs7eo\" target=\"_blank\" rel=\"noopener noreferrer\"> Mark Laws &amp; Josh Mullin for the UK PT’s Podcast - BE WARNED </a></span>\n\n&nbsp;\n<h3><b>MORE FREE STUFF</b></h3>\n<span style=\"font-weight: 400;\">Have you seen these? Please share with both clients &amp; colleagues - let\'s help each other....</span>\n<h3><a href=\"https://youtu.be/7sHZC53mxmI\" target=\"_blank\" rel=\"noopener noreferrer\"><b>5 Steps To A Successful Online Presence Webinar</b></a></h3>\n<h3><a href=\"https://www.biomechanicseducation.com/product/weak-glutes-free-webinar/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Weak Glutes Webinar</b></a></h3>\n<h2></h2>\n<h2><b>NEXT WEEK: </b></h2>\n&nbsp;\n<h2><b>Pelvis (Hip) Biomechanics - Part 2 - The Muscles of the Hip</b></h2>\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Remember we have a growing portfolio of ONLINE educational content that each counts towards gaining certificates &amp; ALL offer you CPD points. </span></h3>\n<h3><span style=\"font-weight: 400;\">Check them out <a href=\"https://www.biomechanicseducation.com/shop/\" target=\"_blank\" rel=\"noopener noreferrer\">HERE</a>: </span></h3>','5 Steps To Keep Your Clients During Lockdown 2.0','','draft','closed','closed','','5-steps-to-keep-your-clients-during-lockdown-2-0','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=24648',0,'post','',0),(24649,3,'2020-11-03 14:03:45','2020-11-03 14:03:45','','Screenshot 2020-11-03 at 12.38.44','','inherit','open','closed','','screenshot-2020-11-03-at-12-38-44','','','2020-11-03 14:03:45','2020-11-03 14:03:45','',24648,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-03-at-12.38.44.png',0,'attachment','image/png',0),(24653,3,'2020-11-03 14:11:35','2020-11-03 14:11:35','','photo-boards-25QCezs8-oo-unsplash','','inherit','open','closed','','photo-boards-25qcezs8-oo-unsplash','','','2020-11-03 14:11:35','2020-11-03 14:11:35','',24648,'https://biomechanicseducation.com/wp-content/uploads/2020/11/photo-boards-25QCezs8-oo-unsplash.jpg',0,'attachment','image/jpeg',0),(24674,0,'2020-11-05 10:21:59','2020-11-05 10:21:59','','CAR 05112020','','inherit','open','closed','','car-05112020-2','','','2020-11-05 10:21:59','2020-11-05 10:21:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/CAR-05112020-1-1.pdf',0,'attachment','application/pdf',0),(24676,0,'2020-11-05 10:22:36','2020-11-05 10:22:36','','CAR grid form SAMPLE 2020','','inherit','open','closed','','car-grid-form-sample-2020','','','2020-11-05 10:22:36','2020-11-05 10:22:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/CAR-grid-form-SAMPLE-2020-1.pdf',0,'attachment','application/pdf',0),(24677,0,'2020-11-05 10:22:44','2020-11-05 10:22:44','','Written Report Template Sample 2019:20','','inherit','open','closed','','written-report-template-sample-201920','','','2020-11-05 10:22:44','2020-11-05 10:22:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Written-Report-Template-Sample-201920-1.pdf',0,'attachment','application/pdf',0),(24690,0,'2020-11-05 11:36:57','2020-11-05 11:36:57','','EXAMPLE DW Biomechanics Coach Case Study','','inherit','open','closed','','example-dw-biomechanics-coach-case-study','','','2020-11-05 11:36:57','2020-11-05 11:36:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/EXAMPLE-DW-Biomechanics-Coach-Case-Study-1.pdf',0,'attachment','application/pdf',0),(24764,3,'2020-11-09 09:23:52','2020-11-09 09:23:52','<h2>Introduction</h2>\r\nIn this second part of our series on pelvic biomechanics, we shift our focus from the bones of the hip to the muscles that control and influence hip movement. Understanding these muscles and their functions is crucial for improving client mobility, confidence, and reducing pain.\r\n<h3>Visual and Practical Learning Approach</h3>\r\n<strong>To enhance your learning experience:</strong>\r\n<ol>\r\n 	<li>Visualize Muscle Attachments: Use anatomy books or skeleton models to see where muscles attach.</li>\r\n 	<li>Simulate Actions: Use resistance bands to replicate muscle actions on a skeleton.</li>\r\n 	<li>Engage Physically: Perform the muscle actions yourself and palpate the areas involved.</li>\r\n 	<li>Document Movements: Write down the movements and exercises each muscle contributes to in your anatomy notebook.</li>\r\n</ol>\r\n<h3>The Gluteal Muscles</h3>\r\n<strong>Gluteus Maximus</strong>\r\n<ul>\r\n 	<li>Function: Primary hip extensor, lateral rotator, abductor (through the ITB), and adductor.</li>\r\n 	<li>Attachments: Coccyx, sacrum, posterior iliac crest, ITB, and gluteal tuberosity.</li>\r\n 	<li>Role: Involved in squats, deadlifts, standing, sitting, walking, and stair climbing. Maintains a balance with hip flexors in a 1:1 strength ratio.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24770\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/1401137150-huge-scaled-1.jpg\" alt=\"\" width=\"560\" height=\"560\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Gluteus Medius</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Abducts the hip; anterior fibers flex and medially rotate the hip, posterior fibers extend and laterally rotate the hip.</li>\r\n 	<li>Attachments: Ilium to the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24771\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1377046316-scaled-1.jpg\" alt=\"\" width=\"419\" height=\"559\" />\r\n\r\n&nbsp;\r\n<h3>Gluteus Minimus</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Abducts, flexes, and internally rotates the hip.</li>\r\n 	<li>Attachments: Outer surface of the ilium to the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24772\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1350320282-scaled-1.jpg\" alt=\"\" width=\"376\" height=\"501\" />\r\n\r\n<span style=\"font-weight: 400;\">All this said, let\'s simplify the role of the glutei in movement.</span>\r\n\r\n<span style=\"font-weight: 400;\">Collectively they produce ‘primarily’ hip extension, hip abduction &amp; hip stabilisation during fundamental movements. Max being the big hip extensor &amp; Min/Med the main Abductors…..see other contributors coming up.</span>\r\n\r\n&nbsp;\r\n\r\n<b>So What?</b><span style=\"font-weight: 400;\"> - Well we do spend quite a bit of time squelched on top of Glute Max, maybe if we sit on the side of our hip we are also squelching glute min/med somewhat too. We do this for prolonged periods then we expect them to produce all of these actions as well as stabilise our spine/upper body &amp; head on top while controlling the motion of our limbs below!</span>\r\n\r\nThe brain is fantastic at creating physical compensations to adapt to the environment we live in &amp; enable our body to reserve energy. This alters the functionality of the compensatory structures. so the example of sitting isn\'t necessarily bad for us, its the lack of physical variety that our body responds negatively to over time.  The best &amp; simplest advice we can give to our clients is to keep changing position &amp; keep moving, along with safe, effective &amp; evidence backed techniques like the ones in the iMoveFreely programme.\r\n\r\n&nbsp;\r\n<h3><b>Hip Flexors </b></h3>\r\n<ul>\r\n 	<li>Iliopsoas (Iliacus and Psoas Major)</li>\r\n 	<li>Iliacus: Flexes the hip or trunk; tilts the pelvis anteriorly.</li>\r\n 	<li>Psoas Major: Flexes the hip or trunk; tilts the pelvis anteriorly.</li>\r\n 	<li>Psoas Minor: Present in 40% of people; assists in lumbar extension and posteriorly tilts the pelvis.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24773\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293557031-scaled-1.jpg\" alt=\"\" width=\"466\" height=\"622\" />\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24774\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_223319263-scaled-1.jpg\" alt=\"\" width=\"472\" height=\"630\" />\r\n\r\n&nbsp;\r\n<h3>Tensor Fasciae Latae (TFL)</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Hip flexion, internal rotation, and abduction.</li>\r\n 	<li><strong>Attachments</strong>: Iliac crest to the ITB.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24775\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_149230190-scaled-1.jpg\" alt=\"\" width=\"520\" height=\"650\" />\r\n<h3>Sartorius</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Flexes, laterally rotates, and abducts the hip; flexes and medially rotates the knee.</li>\r\n 	<li><strong>Attachments</strong>: ASIS to the medial tibia.</li>\r\n 	<li><strong>Unique Feature</strong>: Known as the \"4 Sign positioner\" due to its action resembling a number 4.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24776\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_303065684-scaled-1.jpg\" alt=\"\" width=\"422\" height=\"562\" />\r\n<h5>Lateral Rotators</h5>\r\n<h3>Piriformis</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Laterally rotates the hip when extended, becomes an internal rotator when the hip is flexed above 70-90 degrees, and always acts as an abductor.</li>\r\n 	<li><strong>Attachments</strong>: Sacrum to the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24777\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293555465-scaled-1.jpg\" alt=\"\" width=\"462\" height=\"615\" />\r\n<h3>Quadratus Femoris</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Laterally rotates the hip.</li>\r\n 	<li><strong>Attachments</strong>: Ischium to the posterior femur.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24786\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-09.03.16.png\" alt=\"\" width=\"249\" height=\"354\" />\r\n<h3>Obturator Internus and Externus</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Laterally rotate the thigh and abduct it in a flexed position.</li>\r\n 	<li><strong>Attachments</strong>: Inferior obturator foramen to the medial surface of the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24784\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.59.52.png\" alt=\"\" width=\"252\" height=\"339\" />\r\n<h3><b>Obturator Externus</b></h3>\r\n<span style=\"font-weight: 400;\">See above for actions &amp; this muscle</span><span style=\"font-weight: 400;\"> does this because of its attachments from the Rami (meaning branch - remus is singular, rami plural) of pubis (part of pelvis behind the pubic hair) &amp; itchy bum (ischium) to the trochanter fossa (ditch) - anything being memorised yet???</span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24785\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.59.31.png\" alt=\"\" width=\"232\" height=\"339\" />\r\n<h3>Gemellus Superior and Inferior</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Laterally rotate the hip.</li>\r\n 	<li><strong>Attachments</strong>: Ischial spine (superior) and ischial tuberosity (inferior) to the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24781\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1757766335-scaled-1.jpg\" alt=\"\" width=\"478\" height=\"478\" />\r\n\r\n&nbsp;\r\n<h3>Pelvic Floor and Adductors</h3>\r\n<h4>Pelvic Floor</h4>\r\n<strong>Function</strong>: Supports pelvic organs, controls bowel and bladder movements, and plays a role in sexual function.\r\n\r\n<strong>Training</strong>: Important to maintain flexibility and strength, similar to other muscles.\r\n<ul>\r\n 	<li><strong>Adductors</strong> (Magnus, Longus, Brevis, Pectineus, Gracilis)</li>\r\n 	<li><strong>Function</strong>: Adduct the hip and assist in other movements like hip extension.</li>\r\n 	<li><strong>Attachments</strong>: Pubis and ischium to the femur and tibia.</li>\r\n 	<li><strong>Unique Features</strong>: Adductor Magnus also known as the \"4th hamstring\" due to its role in hip extension.</li>\r\n</ul>\r\n<h4>Key Actions and Movement Assessment</h4>\r\n<ul>\r\n 	<li><strong>Posterior and Anterior Tilt</strong>: Movements that tilt the pelvis forward or backward.</li>\r\n 	<li><strong>Circumduction</strong>: Circular movement of the hip.</li>\r\n 	<li><strong>Abduction and Adduction</strong>: Movements that take the leg away from or towards the body.</li>\r\n 	<li><strong>Flexion and Extension</strong>: Bending and straightening of the hip.</li>\r\n 	<li><strong>Internal and External Rotation</strong>: Rotating the hip inwards or outwards.</li>\r\n</ul>\r\nBy understanding the detailed anatomy and function of these muscles, you can better assess and enhance your client\'s hip function. To learn more and gain practical skills, consider attending our online workshops and webinars.\r\n\r\nFurther Learning and Certification:\r\n\r\nPelvic &amp; Spine Biomechanics Online CPD Training\r\n\r\nPelvic Biomechanics Practical Anatomy Webinar – Part 1 &amp; 2\r\n\r\nStay tuned for the next part of this series where we will delve deeper into the intricate workings of the hip musculature and their implications in movement and stability.','Pelvic (Hip) Biomechanics – Part 2 – The Muscles of the Hip','','publish','closed','closed','','pelvic-hip-biomechanics-part-1-the-muscles-of-the-hip','','','2025-01-20 15:59:55','2025-01-20 15:59:55','',0,'https://www.biomechanicseducation.com/?p=24764',0,'post','',2),(24770,3,'2020-11-09 08:19:31','2020-11-09 08:19:31','','1401137150-huge','','inherit','open','closed','','1401137150-huge','','','2020-11-09 08:19:31','2020-11-09 08:19:31','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/1401137150-huge-scaled-1.jpg',0,'attachment','image/jpeg',0),(24771,3,'2020-11-09 08:21:55','2020-11-09 08:21:55','','shutterstock_1377046316','','inherit','open','closed','','shutterstock_1377046316','','','2020-11-09 08:21:55','2020-11-09 08:21:55','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1377046316-scaled-1.jpg',0,'attachment','image/jpeg',0),(24772,3,'2020-11-09 08:22:36','2020-11-09 08:22:36','','shutterstock_1350320282','','inherit','open','closed','','shutterstock_1350320282','','','2020-11-09 08:22:36','2020-11-09 08:22:36','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1350320282-scaled-1.jpg',0,'attachment','image/jpeg',0),(24773,3,'2020-11-09 08:33:58','2020-11-09 08:33:58','','shutterstock_293557031','','inherit','open','closed','','shutterstock_293557031','','','2020-11-09 08:33:58','2020-11-09 08:33:58','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293557031-scaled-1.jpg',0,'attachment','image/jpeg',0),(24774,3,'2020-11-09 08:34:35','2020-11-09 08:34:35','','shutterstock_223319263','','inherit','open','closed','','shutterstock_223319263','','','2020-11-09 08:34:35','2020-11-09 08:34:35','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_223319263-scaled-1.jpg',0,'attachment','image/jpeg',0),(24775,3,'2020-11-09 08:49:30','2020-11-09 08:49:30','','shutterstock_149230190','','inherit','open','closed','','shutterstock_149230190','','','2020-11-09 08:49:30','2020-11-09 08:49:30','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_149230190-scaled-1.jpg',0,'attachment','image/jpeg',0),(24776,3,'2020-11-09 08:51:32','2020-11-09 08:51:32','','shutterstock_303065684','','inherit','open','closed','','shutterstock_303065684','','','2020-11-09 08:51:32','2020-11-09 08:51:32','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_303065684-scaled-1.jpg',0,'attachment','image/jpeg',0),(24777,3,'2020-11-09 08:52:08','2020-11-09 08:52:08','','shutterstock_293555465','','inherit','open','closed','','shutterstock_293555465','','','2020-11-09 08:52:08','2020-11-09 08:52:08','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293555465-scaled-1.jpg',0,'attachment','image/jpeg',0),(24778,3,'2020-11-09 08:53:49','2020-11-09 08:53:49','','shutterstock_303067988','','inherit','open','closed','','shutterstock_303067988','','','2020-11-09 08:53:49','2020-11-09 08:53:49','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_303067988-scaled-1.jpg',0,'attachment','image/jpeg',0),(24779,3,'2020-11-09 08:54:44','2020-11-09 08:54:44','','shutterstock_293550401','','inherit','open','closed','','shutterstock_293550401','','','2020-11-09 08:54:44','2020-11-09 08:54:44','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293550401-scaled-1.jpg',0,'attachment','image/jpeg',0),(24780,3,'2020-11-09 08:55:19','2020-11-09 08:55:19','','shutterstock_303082580','','inherit','open','closed','','shutterstock_303082580','','','2020-11-09 08:55:19','2020-11-09 08:55:19','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_303082580-scaled-1.jpg',0,'attachment','image/jpeg',0),(24781,3,'2020-11-09 08:56:30','2020-11-09 08:56:30','','shutterstock_1757766335','','inherit','open','closed','','shutterstock_1757766335','','','2020-11-09 08:56:30','2020-11-09 08:56:30','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1757766335-scaled-1.jpg',0,'attachment','image/jpeg',0),(24782,3,'2020-11-09 08:57:36','2020-11-09 08:57:36','','shutterstock_293551259','','inherit','open','closed','','shutterstock_293551259','','','2020-11-09 08:57:36','2020-11-09 08:57:36','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293551259-scaled-1.jpg',0,'attachment','image/jpeg',0),(24783,3,'2020-11-09 08:58:44','2020-11-09 08:58:44','','Screenshot 2020-11-09 at 08.58.26','','inherit','open','closed','','screenshot-2020-11-09-at-08-58-26','','','2020-11-09 08:58:44','2020-11-09 08:58:44','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.58.26.png',0,'attachment','image/png',0),(24784,3,'2020-11-09 09:00:24','2020-11-09 09:00:24','','Screenshot 2020-11-09 at 08.59.52','','inherit','open','closed','','screenshot-2020-11-09-at-08-59-52','','','2020-11-09 09:00:24','2020-11-09 09:00:24','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.59.52.png',0,'attachment','image/png',0),(24785,3,'2020-11-09 09:00:48','2020-11-09 09:00:48','','Screenshot 2020-11-09 at 08.59.31','','inherit','open','closed','','screenshot-2020-11-09-at-08-59-31','','','2020-11-09 09:00:48','2020-11-09 09:00:48','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.59.31.png',0,'attachment','image/png',0),(24786,3,'2020-11-09 09:03:33','2020-11-09 09:03:33','','Screenshot 2020-11-09 at 09.03.16','','inherit','open','closed','','screenshot-2020-11-09-at-09-03-16','','','2020-11-09 09:03:33','2020-11-09 09:03:33','',24764,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-09.03.16.png',0,'attachment','image/png',0),(24805,0,'2020-11-09 14:39:45','2020-11-09 14:39:45','','IMG_1593','','inherit','open','closed','','img_1593','','','2020-11-09 14:39:45','2020-11-09 14:39:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/IMG_1593-1.jpg',0,'attachment','image/jpeg',0),(24806,0,'2020-11-09 15:01:14','2020-11-09 15:01:14','','adrian-rosco-stef-EO1_9Z2yPQQ-unsplash','','inherit','open','closed','','adrian-rosco-stef-eo1_9z2ypqq-unsplash','','','2020-11-09 15:01:14','2020-11-09 15:01:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/adrian-rosco-stef-EO1_9Z2yPQQ-unsplash-scaled-e1604934352547-1.jpg',0,'attachment','image/jpeg',0),(24809,0,'2020-11-09 15:23:55','2020-11-09 15:23:55','','olia-nayda-3TQ8I-sR9a8-unsplash','','inherit','open','closed','','olia-nayda-3tq8i-sr9a8-unsplash','','','2020-11-09 15:23:55','2020-11-09 15:23:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/olia-nayda-3TQ8I-sR9a8-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(24894,3,'2020-11-16 14:00:50','2020-11-16 14:00:50','<span style=\"font-weight: 400;\">From what I have read most of the world leaders in biomechanics feel that the spine is the centerpiece of movement &amp; it\'s easy to understand why. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is a beautifully robust piece of architecture that connects the upper &amp; lower body, allowing us to move in so many planes, actions &amp; combinations. So much so that we might appreciate it as hard to damage!</span>\n\n<span style=\"font-weight: 400;\">As we dive into the anatomy of the spine here hopefully it is recognisable that it takes years to really do any damage biomechanically through lifestyle.</span>\n\n<span style=\"font-weight: 400;\">The exciting thing about this means we could, as movement practitioners, potentially reduce the risk of future problems. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So through this 3rd blog in this practical anatomy series lets explore the wonderful intricacies of the bones of the spine!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But first…..</span>\n\n&nbsp;\n<h2><b>Interesting facts </b></h2>\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Babies spines develop 2 months after conception </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">From birth, the baby\'s spine is only kyphotic. From the time they begin to hold their head up &amp; start walking they will begin to develop lordosis </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">We have the same number of cervical (nack) vertebrae as giraffes! </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">There are 120 muscles that relate to the spine offering lots of movements. Thankfully we won\'t be covering every single one of these in part 4!</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The spine has 220 individual ligaments for dynamic support - it needs it right!?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Wow...there are 100 joints! </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Spine cartilage can expand &amp; contract. This means you are (on average) ½” taller in the mornings due to lying down as opposed to having gravity compressing your spine downwards while standing upright throughout the day.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Your spine has exceptional memory as it becomes used to, &amp; remembers, positions.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">At birth we generally have 33 bones but as adults we can have just 25 as the lower vertebrae fuse together.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The spinal cord weighs 35 grammes! That’s a similar weight as a 60 watt lightbulb.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The length of an average male spine is 70cm &amp; female’s around 60cm </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Cartilage makes up 25% of the length of the spine </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">We shrink on average about ⅓ inch every 10 years - I know this because my mum is now 5ft 4” having previously been 5ft 8”...oooer!</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Around 80% of back pain does NOT need treatment, which is why we need to gain skills to understand pain &amp; things that can cause it.</span></li>\n</ol>\n&nbsp;\n<h1><b>The Bones</b></h1>\n&nbsp;\n<h2><b>Vertebrae</b></h2>\n<span style=\"font-weight: 400;\">Let us begin at the top this time with the vertebrae! Vertebrae being plural of vertebra (individual) &amp; the word vertebra in latin means ‘joint’. It also has history from the word </span><i><span style=\"font-weight: 400;\">vertere</span></i><span style=\"font-weight: 400;\"> which means ‘to turn’, which is easy to imagine due to turning or rotating being one of the primary actions produced from the spine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The vertebrae make up 5 sections that create those curved lines on a side view of a client’s back as we look at them standing.</span>\n\n&nbsp;\n<h2><b>Cervical Spine (Vertebrae)</b></h2>\n<span style=\"font-weight: 400;\">Cervical is the first or upper most portion of the spine &amp; is made up of 7 vertebrae. Its name ‘</span><i><span style=\"font-weight: 400;\">cervical</span></i><span style=\"font-weight: 400;\">’ comes from the latin word for ‘neck’. You may also be familiar with its use in relation to the </span><i><span style=\"font-weight: 400;\">cervix</span></i><span style=\"font-weight: 400;\"> or ‘neck’ of the womb.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have 7 cervical vertebrae &amp; this is the most mobile portion of our spines to allow us to pivot our heads on top of our body so we can see around us - hopefully!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our top 2 cervical vertebrae have their own names too!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The </span><b>Atlas</b><span style=\"font-weight: 400;\">, also known as C1, is named from Greek mythology. Atlas was the son of the God Titus &amp; was condemned to hold the sky up - poor bloke! So we can visualise our C1 holding up our head as poor Atlas did the world! </span>\n\n<span style=\"font-weight: 400;\">Glad he did though otherwise who knows where we would be right now!?!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then we have </span><b>Axis</b><span style=\"font-weight: 400;\"> (from the latin word </span><i><span style=\"font-weight: 400;\">axle</span></i><span style=\"font-weight: 400;\">) also known as </span><i><span style=\"font-weight: 400;\">vertebra cervicalis II</span></i><span style=\"font-weight: 400;\"> or </span><i><span style=\"font-weight: 400;\">epistropheus</span></i> <span style=\"font-weight: 400;\">OR </span><span style=\"font-weight: 400;\"> in my world for simplicity\'s sake C2! Axle probably because it forms a </span><i><span style=\"font-weight: 400;\">pivot!</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These top 2 vertebrae form the</span> <i><span style=\"font-weight: 400;\">atlanto-</span></i><b><i>axial</i></b><i><span style=\"font-weight: 400;\"> joint</span></i><span style=\"font-weight: 400;\"> - whoop whoop!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now here\'s a tip to finding C7 if it ever takes your fancy. Sit or stand upright, place your hand onto the back of your neck &amp; then protract, or jut, your chin forwards. The most prominent spinous process (nobly bit that pokes out at the back) when you do this is likely to be C7. </span>\n\n&nbsp;\n<h2><b>Thoracic Spine</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This section of your spine has minimal movement by comparison to the other sections, although more than most of us can actually do these days!!!! but it’s 7 vertebrae are designed for stability &amp; protection of your organs in partnership with the ribs (see rib anatomy below) </span>\n\n<img class=\"aligncenter wp-image-24895\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.37.56.png\" alt=\"\" width=\"543\" height=\"405\" />\n\n<span style=\"font-weight: 400;\">As you look from over the top, as in this example, of a thoracic vertebrae, you can see all sorts of portions that have been named. Now some may appear to be more valuable than others but they’re all good to remember if you can. So I will add a test at the bottom of this blog for you to complete because I know you LOVE a test...right!?!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway here are the names, their definitions &amp; reasons for being;</span>\n\n&nbsp;\n<h2><b>Body </b></h2>\n<span style=\"font-weight: 400;\">The large </span><span style=\"font-weight: 400;\">front portion of the vertebra also known as the </span><i><span style=\"font-weight: 400;\">centrum</span></i><span style=\"font-weight: 400;\">. The body is made of cancellous bone (also called either trabecular or spongy because of its appearance) &amp; ‘sandwiches’ the discs in between the vertebrae above/below to contribute to absorption of pressure. </span>\n\n<span style=\"font-weight: 400;\">Then there is a more compact outer layer of bone (also called the ‘cortical rim’ or dense) due to its contribution to supporting &amp; limiting movement.</span>\n\n&nbsp;\n<h2><b>Spinous process</b><span style=\"font-weight: 400;\"> </span></h2>\n<span style=\"font-weight: 400;\">This is the bony part that pokes out of the back (posteriorly) &amp; can be felt if you run your finger down someone\'s spine, maybe in the heat of the moment!?</span>\n\n<span style=\"font-weight: 400;\">It is also a muscle attachment site to pull &amp; lever actions like spinal extension, rotation or to stabilise of course!</span>\n\n&nbsp;\n<h2><b>Transverse process</b><span style=\"font-weight: 400;\"> </span></h2>\n<span style=\"font-weight: 400;\">These poke out to the sides &amp; aren\'t so easy to feel on yourself! Transverse comes from the latin word, </span><i><span style=\"font-weight: 400;\">transvertere</span></i><span style=\"font-weight: 400;\"> - which means ‘across’ &amp; ‘turn’. </span>\n\n<span style=\"font-weight: 400;\">These also act as a muscle attachment site to pull &amp; lever actions like lateral flexion, rotation or stabilisation as above.</span>\n\n&nbsp;\n<h2><b>Foramen</b><span style=\"font-weight: 400;\"> </span></h2>\n<span style=\"font-weight: 400;\">This word literally means ‘opening or hole’ inside the body. This is an important gap because it\'s where the spinal cord sits!</span>\n\n<span style=\"font-weight: 400;\">Now this ‘hole’ is made up of 4 ‘sides’ that have names too…..</span>\n\n&nbsp;\n<h2><b>Lamina</b></h2>\n<span style=\"font-weight: 400;\">Means</span><span style=\"font-weight: 400;\"> ‘plate’ or ‘layer’ &amp; this makes up some of the walls that form the vertebral foramen.</span>\n\n&nbsp;\n<h2><b>Pedicle </b></h2>\n<span style=\"font-weight: 400;\">Meaning ‘little foot’ but is a </span><span style=\"font-weight: 400;\">cylinder-shape that sticks out from the back of the vertebral body, providing side protection &amp; sides of the foramen encasing the spinal cord &amp; nerves. </span>\n\n&nbsp;\n<h2><b>Facet joint</b><span style=\"font-weight: 400;\"> </span></h2>\n<span style=\"font-weight: 400;\">Facet means smooth flat surface. </span>\n\n<span style=\"font-weight: 400;\">This is a key joint in the spine because of its role &amp; risk. Being a joint it’s simply where 2 bones meet. The superior articular facet of the vertebra below the inferior articular facet of the vertebra above. Where these 2 surfaces meet creates a facet joint. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The key role of this joint is to limit movement due to its influence on the distance between each vertebrae where the discs are. These discs require space to squish, absorb &amp; cushion movement when we bend in any direction. If these facet joints get too close to each other there is a risk of wear. Now if their job is to limit movement to protect discs &amp; the spinal cord, well wearing of them is bad news as you can imagine!</span>\n\n<span style=\"font-weight: 400;\">How might why wear? Well if that QL muscle (see next blog for spine muscles) gets tight or inhibited it can result in reducing the space between the facet joint = wear</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Or</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If the pelvis is ‘dysfunctional’, shall we say, this can result in one ilium sitting higher than the other, also causing a closing of the gap at the facet joint.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So What? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The brilliantly simple iMoveFreely programme is designed specifically to reduce the risk of these issues through freedom of movement in each part of the body. They are such specific, low grade techniques that they can dramatically influence specific areas of your client’s anatomy, like taking pressure off these facet joints.</span>\n\n&nbsp;\n<h2><b>Thoracic Spine Ranges of Motion </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When we look at these ‘norms’ of movement in degrees at each thoracic vertebrae, it helps us appreciate what we might expect if we were to test each of these actions listed in the grid below. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Looking at this graph it\'s clear that the thoracic spine tots up its highest ranges of motion in rotation. If we add up the total from C7-L1 it equals 57 degrees of thoracic rotation in either direction…..hopefully!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if you can keep everything else that contributes to rotation static as best you can then ask your client to rotate their spine, observe how far they rotate, eyeballing from an aerial view, you can evaluate how close, or far, they are to/from the norms below….</span>\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-24896\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.40.48.png\" alt=\"\" width=\"624\" height=\"430\" /></p>\n\n<h2><b>Ribs</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now we really MUST talk about these bony ‘arches’ - rib meaning ‘</span><i><span style=\"font-weight: 400;\">cover, ceiling or arch</span></i><span style=\"font-weight: 400;\">’. The ribs will ONLY attach to the thoracic vertebrae, not the lumbars, not the cervical. </span>\n\n<span style=\"font-weight: 400;\">They’re typically made up of a body, neck, head, tubercle, angle &amp; costal groove - see image.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you look back up to the image of the thoracic vertebra again &amp; see these 2 areas…….</span>\n\n<b>Transverse costal facet - </b><span style=\"font-weight: 400;\">Transverse you know, costal means relating to ribs, facet - smooth/flat</span>\n\n<b>Superior costal facet - </b><span style=\"font-weight: 400;\">You getting the idea? Superior - upper. Costal - relates to rib. Facet - smooth/flat.</span>\n\n<span style=\"font-weight: 400;\">….these are the landing sites for the ribs to attach to.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OK I\'d like you to try something now to appreciate rib movements;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sit or stand upright &amp; place your palm across your top 5 ribs…..take a breath &amp; feel their movement. </span>\n\n<span style=\"font-weight: 400;\">Now place your palms around your 6-10 ribs &amp; breath, feel the difference in action. </span>\n\n<span style=\"font-weight: 400;\">Now finally place your palms around your last/lowest ribs 11-12 - known as ‘floating’ ribs since they ONLY attach at the back, not at the front, in fact they\'re half the size &amp; therefore can\'t reach the front!! They move quite a bit if you press them, they almost bounce, to allow for large intakes of breath!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Ribs 1-8 are known as ‘true’ - why? They truly do attach to the sternum</span>\n\n<span style=\"font-weight: 400;\">Ribs 8-10 known as ‘false’ - why? The just </span><i><span style=\"font-weight: 400;\">pretend</span></i><span style=\"font-weight: 400;\"> to attach to the sternum via the cartilage)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now repeat this &amp; imagine their relationship with the thoracic spine &amp; your overall spine\'s mobility. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Can you understand how a stiff thoracic spine can limit breathing capacity? </span>\n\n<span style=\"font-weight: 400;\">Or </span>\n\n<span style=\"font-weight: 400;\">Can you understand how improving your clients thoracic mobility can increase lung capacity?</span>\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-24897\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.42.30.png\" alt=\"\" width=\"531\" height=\"334\" /></p>\n\n<h2><b>Interesting Facts about Ribs </b></h2>\n<b>(</b><a href=\"https://www.mentalfloss.com/article/502701/9-interesting-facts-about-ribs\"><span style=\"font-weight: 400;\">https://www.mentalfloss.com/article/502701/9-interesting-facts-about-ribs</span></a><b>)</b>\n\n&nbsp;\n<h3><b>In rare instances we can have a Gorilla Rib!</b></h3>\n<i><span style=\"font-weight: 400;\">In rare cases, which have nothing to do with gender, a human might turn up sporting extra lumbar ribs, for a total of 13 pairs of ribs, much like our distant cousins, the gorillas. Thus, it\'s colloquially known as a \"</span></i><a href=\"https://books.google.com/books?id=9ySapTadd6kC&amp;pg=PA98&amp;lpg=PA98&amp;dq=gorilla+anatomy,+ribs&amp;source=bl&amp;ots=0nYerPFCmB&amp;sig=Dv2nSGDid8va2bZGhWth17MSMg8&amp;hl=en&amp;sa=X&amp;ved=0ahUKEwjR95j_tKrWAhXqgFQKHc8LBKkQ6AEIUTAK#v=onepage&amp;q=gorilla%20anatomy%2C%20ribs&amp;f=false\"><i><span style=\"font-weight: 400;\">gorilla rib</span></i></a><i><span style=\"font-weight: 400;\">.\"</span></i>\n<h3><b>Ribs are the reason Neanderthals didn\'t need belts!</b></h3>\n<h4><i><span style=\"font-weight: 400;\">Neanderthals had </span></i><a href=\"https://books.google.com/books?id=NYg0CwAAQBAJ&amp;pg=PT156&amp;lpg=PT156&amp;dq=neanderthals+rib+cage+shape&amp;source=bl&amp;ots=uGdUFQTT6h&amp;sig=-ugu-Q_8Wa71I8O-jmkmr0dUj98&amp;hl=en&amp;sa=X&amp;ved=0ahUKEwjrjtXjo7TWAhVn5YMKHWUyB5UQ6AEIggEwEw#v=onepage&amp;q=neanderthals%20rib%20cage%20shape&amp;f=false\"><i><span style=\"font-weight: 400;\">wider, thicker rib cages</span></i></a><i><span style=\"font-weight: 400;\"> than we modern slim-waisted humans, which would have made them terrible models for skinny jeans. A </span></i><a href=\"https://www.aftau.org/news-page-archaeology?=&amp;storyid4677=2262&amp;ncs4677=3%5C\"><i><span style=\"font-weight: 400;\">2016 study</span></i></a><i><span style=\"font-weight: 400;\"> in American Journal of Physical Anthropology found that the Ice-Age diet is likely responsible for the larger ribcage and wider pelvis in Neanderthals. Essentially, carbs were scarce and fat was abundant. This led to an enlarged liver, kidneys and \"their corresponding morphological manifestations,\" the authors write. In other words, they needed more space to house bigger organs.</span></i></h4>\n<h3><b>2 Very different kinds of athletes share one common injury…</b></h3>\n<h4><i><span style=\"font-weight: 400;\">\"Rowers and baseball pitchers are the most common athletes to suffer from stress fractures of the ribs,\" Martinez says. This is caused by the serratus anterior muscle pulling on the delicate ribs. \"Other athletes that may be more likely to suffer from rib stress fractures include golfers, dancers, weightlifters and volleyball players,\" he adds.</span></i></h4>\n<h3><b>You can sneeze your way to a rib fracture!</b></h3>\n<h4><i><span style=\"font-weight: 400;\">\"True\" rib fractures—where the bone breaks all the way through—are usually from traumatic events such as \"a hard football tackle [or] car accident,\" Martinez says. However, sometimes a rib fracture can occur \"from sneezing or coughing due to the force of the contracting chest wall muscles on the ribs.\" Treatment for true rib fractures is the same as rib stress fractures.</span></i></h4>\n<h3><b>‘Waist Training’ used to be all the rage….still sometimes is!  </b></h3>\n<h4><i><span style=\"font-weight: 400;\">Women have historically worn corsets, undergarments that cinch the torso in, particularly at the waist, bringing ribs and organs closer together for a smaller waist and more prominent bust. Despite corsets having gone out of fashion </span></i><a href=\"http://tahliamckellartextiles.weebly.com/corset-timeline.html\"><i><span style=\"font-weight: 400;\">by the 1920s</span></i></a><i><span style=\"font-weight: 400;\">, when women began to prefer the looser, more flowing garments of the Flapper era, a number of contemporary women still wear them for reasons ranging from aesthetics to performance art, spawning a practice known as </span></i><a href=\"https://lucycorsetry.com/2013/10/13/waist-training-vs-tight-lacing/\"><i><span style=\"font-weight: 400;\">tight lacing or waist training</span></i></a><i><span style=\"font-weight: 400;\">. In this movement, women actively whittle their waists down to exceptionally small circumferences.</span></i></h4>\n<a href=\"https://www.usatoday.com/story/news/nation-now/2015/11/05/waist-whittlers-dangers/75225022/\"><i><span style=\"font-weight: 400;\">Doctors warn</span></i></a><i><span style=\"font-weight: 400;\"> that there is risk of permanent damage to squished organs, as well as such uncomfortable syndromes as acid reflux syndrome and back pain. But it doesn\'t stop those who love the look!</span></i>\n\n&nbsp;\n<h2><b>Sternum &amp; friends...                                                               <img class=\"wp-image-24898 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.45.41.png\" alt=\"\" width=\"248\" height=\"377\" /></b></h2>\n&nbsp;\n<h2><b>Jugular notch</b><span style=\"font-weight: 400;\"> </span></h2>\n<span style=\"font-weight: 400;\">Latin roots, </span><i><span style=\"font-weight: 400;\">Jugulum</span></i><span style=\"font-weight: 400;\"> meaning </span><span style=\"font-weight: 400;\">throat or collarbone</span>\n<h2><b>Manubrium</b><span style=\"font-weight: 400;\"> </span></h2>\n<span style=\"font-weight: 400;\">F</span><span style=\"font-weight: 400;\">rom </span><i><span style=\"font-weight: 400;\">manus</span></i><span style=\"font-weight: 400;\"> for hand. </span><span style=\"font-weight: 400;\">Manubrium</span><span style=\"font-weight: 400;\"> means to be a handle.\n</span>\n<h3><b>Sternum </b></h3>\n<b> </b><span style=\"font-weight: 400;\">From the </span><span style=\"font-weight: 400;\">Greek word </span><i><span style=\"font-weight: 400;\">sternon</span></i><span style=\"font-weight: 400;\">, ‘chest, breast, or breastbone’ from a root that means ‘flat surface.’</span>\n<h2><b>Xiphoid process</b></h2>\n<span style=\"font-weight: 400;\">Greek </span><span style=\"font-weight: 400;\">word </span><i><span style=\"font-weight: 400;\">xiphos</span></i><span style=\"font-weight: 400;\"> for ‘straight sword’</span>\n\n&nbsp;\n<h2><b>Lumbar Spine </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Lumbar vertebrae, of which there are 5, are much stockier than their thoracic buddies due to having more load on top of them, therefore designed wider to support the extra load. Look at the difference here then go back to compare to the thoracic vertebrae above…..  </span>\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-24899\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.47.56.png\" alt=\"\" width=\"416\" height=\"366\" /></p>\n\n<h2><b>Lumbar Spine Ranges of Motion</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As we did earlier for the thoracic spine, here we can see the ‘norms’ of ranges in degrees for the lumbar spine. Can you see that the lumbar spine has more capacity for flexion? Interesting eh! Remember the lumbar spine is ‘normally’ in extension, or lordosis, so it should make sense that the ranges it can achieve in flexion will be greater. However its capacity for rotation is only 3-4 degrees at each joint.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How do you imagine this would relate to movement or assessing movement?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember we can use these norms to evaluate a client\'s capacity. Subjective - yes to some degree but better than no evaluation at all, right!? </span>\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-24900\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.49.35.png\" alt=\"\" width=\"463\" height=\"271\" /></p>\n<span style=\"font-weight: 400;\">For </span><b>Sacrum &amp; Coccyx</b><span style=\"font-weight: 400;\"> - see Pelvis Biomechanics Part 1- The Bones!</span>\n\n&nbsp;\n<h2><b>Neutral Spine</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The neutral spine position can be a controversial topic, which is likely due to the varying presentations that could be deemed ‘neutral’, the fact we are rarely in our ‘neutral’ &amp; yet some schools of thought teach ‘</span><i><span style=\"font-weight: 400;\">neutral spine</span></i><span style=\"font-weight: 400;\">’ as a position we should be able to get into &amp; sustain while moving. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What is a neutral spine anyway?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well I will have a go at explaining my thoughts based upon my limited knowledge &amp; understanding of its definition. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Regular spines are usually made up of a series of curves that either curve away from or toward the body</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cervical &amp; Lumbar areas are concave or are </span><i><span style=\"font-weight: 400;\">lordotic</span></i><span style=\"font-weight: 400;\">. </span>\n\n<b>Lordotic - </b><span style=\"font-weight: 400;\">Greek word from lordos meaning ‘bent backward’</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whereas the Thoracic &amp; Sacrum areas are convex or kyphotic. </span><b>Kyphotic - </b><span style=\"font-weight: 400;\">Greek word </span><i><span style=\"font-weight: 400;\">kyphos</span></i><span style=\"font-weight: 400;\"> ‘crooked’</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">From the side view this gives an ‘S’ shape….or that\'s what we would normally expect.</span>\n\n<span style=\"font-weight: 400;\">When these ‘normal’ curves are present it should mean the discs have the same pressure around the outer edges - anterior to posterior &amp; laterally. </span>\n\n<span style=\"font-weight: 400;\">So when our client’s round their spine forwards into flexion or over a computer, they are creating more pressure to the anterior (front) of the spine/discs etc, which is fine - until it\'s done consistently for days, weeks, months &amp; years. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As our bodies evolve &amp; adapt to our surroundings it\'s no surprise that our spinal curves are changing. So much so that different cultures, different people, different lifestyles can result in different degrees of ‘S’ shape.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This means that being able to coach a neutral spine is contentious if/when we have a variety of presentations. How would we know what neutral spine is when we cannot see the actual spine? It\'s subjective but it shouldn’t stop us coaching better intrinsic function &amp; movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In some individuals they can even present with a more J shape to their spine. Flatter but with a curve at the top of the buttocks!</span>\n\n&nbsp;\n<h2><b>Hyper Spines !!!???</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is misinterpreted that lordosis is a </span><span style=\"font-weight: 400;\">condition or diagnosis</span><span style=\"font-weight: 400;\">. In fact I have often been told by clients “</span><i><span style=\"font-weight: 400;\">I have lordosis</span></i><span style=\"font-weight: 400;\">” because they were told this by their practitioner, or had read it somewhere, but this statement is not technically accurate &amp; can be confusing. </span>\n\n<span style=\"font-weight: 400;\">Lordosis is a position NOT a diagnosis &amp; this is the same with kyphosis.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However HYPERlordosis or HYPERkyphosis could be deemed excessive curvature. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hyper = ‘over &amp; beyond’</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The ‘diagnosis’ can only be made by a qualified practitioner &amp; would likely be because they suspected that this exaggerated spine shape is the cause of reported symptoms. </span>\n\n<span style=\"font-weight: 400;\">To ‘measure’ degrees of curvature could be challenging when you consider how unique we all are. So addressing the symptoms rather than the actual curve, or the things that can affect our curves, would probably result in more success…...what do you think?</span>\n\n&nbsp;\n<h2><b>Scoliosis</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is a structural lateral curve of the bones that is likely more visible from the back. Severity again can vary greatly &amp; it doesn\'t guarantee having symptoms.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However the appearance of a lateral ‘scoliotic’ curve can be caused by soft tissue tensions too! </span>\n\n<span style=\"font-weight: 400;\">That pesky lil QL again! </span>\n\n<span style=\"font-weight: 400;\">Ooooooo betcha can\'t wait for </span>\n\n<span style=\"font-weight: 400;\">Spine Biomechanics - Part 4 The Muscles of the Spine now!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whoah before that…...</span>\n\n&nbsp;\n<h2><b>Spine Biomechanics So what?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Look, keeping this super simple in application, the spine SHOULD present with a nice smooth ‘C’ shaped curve when we bend in any direction. </span>\n\n<span style=\"font-weight: 400;\">If it does not, what direction does your client struggle with? Flexion?</span>\n\n<span style=\"font-weight: 400;\">Extension? Rotation?</span>\n\n<span style=\"font-weight: 400;\">Is there an asymmetry from one side to the other?</span>\n\n<span style=\"font-weight: 400;\">Does it feel stiff or tight?</span>\n\n<span style=\"font-weight: 400;\">What would you understand to be the intervention for a stiff joint?</span>\n\n<span style=\"font-weight: 400;\">Remember ‘pain’ is a red flag &amp; only the remit of a qualified practitioner. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OPTIONAL TEST -Can you name these diagrams?</span>\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-24901\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.51.37.png\" alt=\"\" width=\"411\" height=\"564\" /></p>\n\n<h3><span style=\"font-weight: 400;\">Any questions please hit reply/comment &amp; share if you think it will be helpful to others!</span></h3>\n&nbsp;\n<h1><span style=\"font-weight: 400;\">NEXT TIME;</span></h1>\n<h1><b>Spine Biomechanics - Part 4 The Muscles of the Spine now!</b></h1>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Remember we have several online educational programmes to compliment this blog series!</span></h2>\n<h2>Why not CLICK ON one now?</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">Lockdown Bundle Online CPD Training </span></a></h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/pelvic-spine-biomechanics-online-cpd-training/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">Pelvic &amp; Spine Biomechanics Online CPD Training </span></a></h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor-online-virtual-workshop/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">iMoveFreely Instructor Online CPD Training</span></a></h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/weak-glutes-free-webinar/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">FREE Weak Glutes Webinar </span></a></h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/5-steps-to-a-successful-online-presence-free-webinar/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">FREE 5 Steps to a successful online presence </span></a></h2>','Spine Biomechanics - Part 3 - The Bones of the Spine','','draft','closed','closed','','spine-biomechanics-part-3-the-bones-of-the-spine','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=24894',0,'post','',0),(24895,3,'2020-11-16 13:38:23','2020-11-16 13:38:23','','Screenshot 2020-11-16 at 13.37.56','','inherit','open','closed','','screenshot-2020-11-16-at-13-37-56','','','2020-11-16 13:38:23','2020-11-16 13:38:23','',24894,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.37.56.png',0,'attachment','image/png',0),(24896,3,'2020-11-16 13:41:30','2020-11-16 13:41:30','','Screenshot 2020-11-16 at 13.40.48','','inherit','open','closed','','screenshot-2020-11-16-at-13-40-48','','','2020-11-16 13:41:30','2020-11-16 13:41:30','',24894,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.40.48.png',0,'attachment','image/png',0),(24897,3,'2020-11-16 13:42:51','2020-11-16 13:42:51','','Screenshot 2020-11-16 at 13.42.30','','inherit','open','closed','','screenshot-2020-11-16-at-13-42-30','','','2020-11-16 13:42:51','2020-11-16 13:42:51','',24894,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.42.30.png',0,'attachment','image/png',0),(24898,3,'2020-11-16 13:45:54','2020-11-16 13:45:54','','Screenshot 2020-11-16 at 13.45.41','','inherit','open','closed','','screenshot-2020-11-16-at-13-45-41','','','2020-11-16 13:45:54','2020-11-16 13:45:54','',24894,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.45.41.png',0,'attachment','image/png',0),(24899,3,'2020-11-16 13:48:28','2020-11-16 13:48:28','','Screenshot 2020-11-16 at 13.47.56','','inherit','open','closed','','screenshot-2020-11-16-at-13-47-56','','','2020-11-16 13:48:28','2020-11-16 13:48:28','',24894,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.47.56.png',0,'attachment','image/png',0),(24900,3,'2020-11-16 13:50:04','2020-11-16 13:50:04','','Screenshot 2020-11-16 at 13.49.35','','inherit','open','closed','','screenshot-2020-11-16-at-13-49-35','','','2020-11-16 13:50:04','2020-11-16 13:50:04','',24894,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.49.35.png',0,'attachment','image/png',0),(24901,3,'2020-11-16 13:52:05','2020-11-16 13:52:05','','Screenshot 2020-11-16 at 13.51.37','','inherit','open','closed','','screenshot-2020-11-16-at-13-51-37','','','2020-11-16 13:52:05','2020-11-16 13:52:05','',24894,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.51.37.png',0,'attachment','image/png',0),(24903,3,'2020-11-16 13:58:37','2020-11-16 13:58:37','','shutterstock_128700983','','inherit','open','closed','','shutterstock_128700983-2','','','2020-11-16 13:58:37','2020-11-16 13:58:37','',24894,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_128700983.jpg',0,'attachment','image/jpeg',0),(24937,0,'2020-11-18 07:35:02','2020-11-18 07:35:02','','IMG_1450','','inherit','open','closed','','img_1450','','','2020-11-18 07:35:02','2020-11-18 07:35:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/IMG_1450-e1605684970838-1.jpg',0,'attachment','image/jpeg',0),(24938,0,'2020-11-18 07:37:59','2020-11-18 07:37:59','','IMG_1450','','inherit','open','closed','','img_1450-2','','','2020-11-18 07:37:59','2020-11-18 07:37:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/IMG_1450-1-1.jpg',0,'attachment','image/jpeg',0),(25092,3,'2020-12-01 07:53:39','2020-12-01 07:53:39','<h3>Spine Biomechanics Part 4 – The Muscles of the Spine</h3>\r\n<b><span data-contrast=\"auto\">Introduction</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Understanding the intricate web of muscles around your spine is like unlocking the secret to its strength and flexibility. In this guide, we\'ll dive deep into the core muscles that hold the key to a healthy and agile spine.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Core Muscles</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">The Backbone of Stability When we talk about core muscles, we\'re essentially talking about the muscles that have a direct impact on your spine\'s health and stability. Let\'s break them down for a better understanding of how they work together to keep your spine in top shape.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Transversospinalis Group</h3>\r\n<span data-contrast=\"auto\">These muscles, nestled deep within your core, act like your body\'s own internal support system. They stabilize your spine, allowing for controlled movements without compromising on stability.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Task: </span></b><span data-contrast=\"auto\">Ever wondered why you feel so steady when you stand up straight? That\'s these muscles kicking in to keep your spine solid as a rock. Try standing up and feel them in action.</span>\r\n\r\n<b><img class=\"aligncenter wp-image-25119\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1709130394-scaled.jpg\" alt=\"\" width=\"504\" height=\"504\" /></b>\r\n\r\n&nbsp;\r\n\r\n<b><span data-contrast=\"auto\">Multifidus</span></b><span data-contrast=\"auto\">: Think of the Multifidus as the backbone\'s best friend – thick, strong, and always there to lend support. Regular movement keeps them lean and mean, ensuring your spine stays healthy and happy.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Task: </span></b><span data-contrast=\"auto\">Give these muscles some love by incorporating movements that activate and strengthen them. Your spine will thank you later.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Rotatores</h3>\r\n<span data-contrast=\"auto\">These little guys might be small, but they play a big role in keeping your spine flexible and agile. They\'re like the lace-up corset of your spine, providing support without restricting movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Semispinalis</h3>\r\n<span data-contrast=\"auto\">From your neck to your thoracic spine, the Semispinalis muscles are like the unsung heroes of your core. They work tirelessly to keep your spine stable and mobile, no matter what life throws your way.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Erecta Spinae Group</h3>\r\n<span data-contrast=\"auto\">Picture these muscles as the sturdy pillars holding up your spine. They\'re not just there to look pretty – they\'re essential for preventing your spine from bending too far forward and causing injury.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW143920741 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW143920741 BCX8\">Task: </span></span></strong><span class=\"TextRun SCXW143920741 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW143920741 BCX8\">Stand up and feel these muscles engage as you lean forward slightly. Notice how they kick into action to keep your spine </span><span class=\"NormalTextRun SCXW143920741 BCX8\">safe and sound</span><span class=\"NormalTextRun SCXW143920741 BCX8\">.</span></span><span class=\"EOP SCXW143920741 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Longissimus</h3>\r\n<span style=\"font-weight: 400;\">This is obviously the longest one due to its name! To the side (lateral to) of the semispinalis muscles. Travelling from rectus abdominus to the transverse process.</span>\r\n<h3>Iliocostalis <i> </i></h3>\r\n<i><span style=\"font-weight: 400;\">(ilio - from the ilium costalis - to the ribs)</span></i><span style=\"font-weight: 400;\"> - attaches from the most lateral portion of ribs, to the sacrum, the iliac crest, spinous &amp; transverse processes.</span>\r\n<h3>Spinalis<span style=\"font-weight: 400;\"> </span></h3>\r\n<span style=\"font-weight: 400;\">The most medial sibling of the group, splits into spinalis dorsi, spinalis cervicis &amp; spinalis capitis. Travelling into the spinous processes &amp; occiput at the back of the head.</span>\r\n\r\n&nbsp;\r\n<h2><b><img class=\"aligncenter wp-image-25121\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1800824056-scaled-1.jpg\" alt=\"\" width=\"581\" height=\"581\" /></b></h2>\r\n<h2><b>Quadratus Lumborum </b></h2>\r\n<span data-contrast=\"auto\">Meet the spine\'s notorious troublemaker – the Quadratus Lumborum. Despite its reputation, it\'s actually crucial for maintaining spinal alignment and keeping you moving with ease.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Task</span></b><span data-contrast=\"auto\">: Pay attention to how your spine feels as you lift one hip. That\'s the Quadratus Lumborum at work, ensuring your spine stays straight and strong.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25099\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1544639351-scaled.jpg\" alt=\"\" width=\"427\" height=\"570\" />\r\n<h2><b>The Abdominals</b></h2>\r\n<span style=\"font-weight: 400;\">This group is often considered ‘the core’ by clients since their focus is on the front &amp; sides of their torso or the parts they can see.</span>\r\n\r\n<span style=\"font-weight: 400;\">They all dream of a </span><i><span style=\"font-weight: 400;\">6 pack stomach </span></i><span style=\"font-weight: 400;\">&amp; see adverts about how they can get one in 12 weeks or even 6 weeks or if they follow someone with abs showing on Instagram. You can even download an app that superimposes abs onto your photo…for goodness sake!</span>\r\n\r\n<span style=\"font-weight: 400;\">The ‘abs’ are written about in magazines as an area to focus on when considering strengthening the core </span><i><span style=\"font-weight: 400;\">for that washboard abs look! </span></i>\r\n\r\n<span style=\"font-weight: 400;\">We should understand them better anatomically to understand how to ‘condition’ them for function &amp; therefore result in whatever is achievable realistically in terms of aesthetics. </span>\r\n\r\n<span style=\"font-weight: 400;\">Anyway, we all have a 6 pack underneath the skin, and they have an important job to do!</span>\r\n<h2><b>Rectus abdominus </b></h2>\r\n<span style=\"font-weight: 400;\">Rectus means</span> <i><span style=\"font-weight: 400;\">straight </span></i><span style=\"font-weight: 400;\">&amp; abdominis relating to the abdomen. Now this could logically be classified as a core muscle. However when looking at its attachments it does not actually attach directly to the spine but instead to the pubic symphysis (behind the pubes), to the xiphoid process (bottom of the sternum) &amp; the costal cartilages of ribs 5-7. </span>\r\n\r\n<span style=\"font-weight: 400;\">Generally considered as a flexor of the spine (&amp; of course it will flex the spine) however its main purpose is probably to act as part of the ‘hydraulic amplifier’ mechanism. This is where Transverse Abdominis (TA) &amp; the thoraco-lumbar fascia create tension to stabilise the spine when performing tasks that require spinal stability. </span>\r\n\r\n<span style=\"font-weight: 400;\">The tendinous junctions of rectus abdominis are designed to help mitigate the lateral forces created by the TA contraction and help with the efficiency of the amplifier. (FANTASTIC BOOK -</span><i><span style=\"font-weight: 400;\">Spinal Engine, Gracovetsky, March 1989</span></i><span style=\"font-weight: 400;\">).</span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-25123\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641526-scaled.jpg\" alt=\"\" width=\"436\" height=\"581\" /></span>\r\n\r\n<span style=\"font-weight: 400;\">The Oblique Non-identical Twins (I LOVE the obliques) are considering lateral flexors &amp; again they do assist this action however their role is far more important than that when you study their fibres &amp; the lines of pull they are capable of with the attachments they cling onto….</span>\r\n<h2><b>Internal obliques </b></h2>\r\n<span style=\"font-weight: 400;\">This layer travels from the front (</span><span style=\"font-weight: 400;\">Anterior) of the iliac crest, lateral half of inguinal (of the groin) ligament, to the thoracolumbar fascia (big diamond shaped fascial sheet on the lower back) onto the costal cartilages of ribs 8-12; Also via the abdominal aponeurosis to the linea alba (the fascial line down the middle of the tummy of the middle of that 6 pack!)</span>\r\n<h2><b>External obliques </b></h2>\r\n<span style=\"font-weight: 400;\">External surfaces of ribs 5-12. ... At the midclavicular (middle of the clavicle) line medially &amp; spinoumbilical line inferiorly, external abdominal oblique continues as an aponeurosis via which it inserts to the linea alba, pubic tubercle &amp; anterior half of iliac crest.</span>\r\n\r\n&nbsp;\r\n<h2><img class=\"aligncenter wp-image-25125\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666655449-scaled.jpg\" alt=\"\" width=\"607\" height=\"607\" /></h2>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25124\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666658332-scaled.jpg\" alt=\"\" width=\"608\" height=\"608\" />\r\n<h2 style=\"text-align: left;\"><b>Transverse Abdominis (TVA) </b></h2>\r\n<span style=\"font-weight: 400;\">(or unmoving point) of the TA muscles is on the costal (rib) margin, iliac crest, &amp; inguinal ligament. The insertion (or moveable piece) of the TA muscles is located on the xiphoid process, symphysis pubis, &amp; linea alba….hopefully by now we are starting to remember some of these terminologies! </span>\r\n\r\n&nbsp;\r\n<h2><b><img class=\"aligncenter wp-image-25126\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641502-scaled.jpg\" alt=\"\" width=\"391\" height=\"522\" /></b></h2>\r\n<h2><b>Hip flexors  </b></h2>\r\n<span style=\"font-weight: 400;\"> See pelvis <a href=\"https://www.biomechanicseducation.com/pelvic-hip-biomechanics-part-1-the-muscles-of-the-hip/\" target=\"_blank\" rel=\"noopener noreferrer\">CLICK HERE</a></span>\r\n<h2><b>Diaphragm </b></h2>\r\n<span style=\"font-weight: 400;\">Greek word <em>diaphragma</em> meaning partition or barrier. Primarily it is attached to the sternum at the xiphoid process, the lower six ribs &amp; the spaces in between, also the lower part of the spine. ... The spinal attachment is in the upper lumbar section. The diaphragm\'s insertion point is called the central tendon.</span>\r\n\r\n&nbsp;\r\n<h3><b><img class=\"aligncenter wp-image-25127\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_303082082-scaled.jpg\" alt=\"\" width=\"387\" height=\"516\" /></b></h3>\r\n<h3>Interesting facts</h3>\r\n<span style=\"font-weight: 400;\">No one muscle, or muscle group, is more important than any other.  Many will talk of Transverse Abdominis (TVA or TA) &amp; Multifidus as the most important muscles in the core, but if only one group or muscle of the full range of stability muscles is not functioning correctly, then the trunk is unstable.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\"> (</span><i><span style=\"font-weight: 400;\">Cholwewicki and McGill, 1996, O’Sullivan et al, 1997, 1998, Allison et al, 1998)</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Trunk or core stability in motion should be a reflex reaction as opposed to a conscious effort….like core stability training.</span>\r\n\r\n<span style=\"font-weight: 400;\">The core muscles are often inhibited in cases of low back pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">Psoas Major &amp; also Latissimus Dorsi could (&amp; probably should) be deemed ‘core’ muscles based on their involvement in trunk/spine stability &amp; connecting the upper &amp; lower body</span>\r\n<h3>Conclusion</h3>\r\n<span data-contrast=\"auto\">Understanding your core muscles is like having the keys to a strong and resilient spine. By giving them the attention they deserve through targeted exercises and movements, you\'ll not only improve stability but also reduce the risk of injury and keep your spine functioning at its best.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>','Spine Biomechanics Part 4 - The Muscles of the Spine','','publish','closed','closed','','spine-biomechanics-part-4-the-muscles-of-the-spine','','','2025-01-20 15:59:55','2025-01-20 15:59:55','',0,'https://www.biomechanicseducation.com/?p=25092',0,'post','',0),(25095,3,'2020-11-30 11:05:10','2020-11-30 11:05:10','','max-okhrimenko-L3FHnmrPyCI-unsplash','','inherit','open','closed','','max-okhrimenko-l3fhnmrpyci-unsplash','','','2020-11-30 11:05:10','2020-11-30 11:05:10','',25092,'https://biomechanicseducation.com/wp-content/uploads/2020/11/max-okhrimenko-L3FHnmrPyCI-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(25096,3,'2020-11-30 11:06:29','2020-11-30 11:06:29','','Screenshot 2020-11-30 at 09.38.00','','inherit','open','closed','','screenshot-2020-11-30-at-09-38-00','','','2020-11-30 11:06:29','2020-11-30 11:06:29','',25092,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-30-at-09.38.00.png',0,'attachment','image/png',0),(25097,3,'2020-11-30 11:09:14','2020-11-30 11:09:14','','Screenshot 2020-11-30 at 11.09.03','','inherit','open','closed','','screenshot-2020-11-30-at-11-09-03','','','2020-11-30 11:09:14','2020-11-30 11:09:14','',25092,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-30-at-11.09.03.png',0,'attachment','image/png',0),(25098,0,'2020-11-30 11:10:25','2020-11-30 11:10:25','','Screenshot 2020-11-30 at 11.08.12','','inherit','open','closed','','screenshot-2020-11-30-at-11-08-12','','','2020-11-30 11:10:25','2020-11-30 11:10:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-30-at-11.08.12-1.png',0,'attachment','image/png',0),(25099,0,'2020-11-30 11:11:01','2020-11-30 11:11:01','','shutterstock_1544639351','','inherit','open','closed','','shutterstock_1544639351','','','2020-11-30 11:11:01','2020-11-30 11:11:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1544639351-scaled-1.jpg',0,'attachment','image/jpeg',0),(25100,0,'2020-11-30 11:12:32','2020-11-30 11:12:32','','Screenshot 2020-11-30 at 11.12.14','','inherit','open','closed','','screenshot-2020-11-30-at-11-12-14','','','2020-11-30 11:12:32','2020-11-30 11:12:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-30-at-11.12.14-1.png',0,'attachment','image/png',0),(25101,0,'2020-11-30 11:13:36','2020-11-30 11:13:36','','Screenshot 2020-11-30 at 11.13.25','','inherit','open','closed','','screenshot-2020-11-30-at-11-13-25','','','2020-11-30 11:13:36','2020-11-30 11:13:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-30-at-11.13.25-1.png',0,'attachment','image/png',0),(25102,0,'2020-11-30 11:14:35','2020-11-30 11:14:35','','Screenshot 2020-11-30 at 11.14.26','','inherit','open','closed','','screenshot-2020-11-30-at-11-14-26','','','2020-11-30 11:14:35','2020-11-30 11:14:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-30-at-11.14.26-1.png',0,'attachment','image/png',0),(25103,0,'2020-11-30 11:14:57','2020-11-30 11:14:57','','Screenshot 2020-11-30 at 11.08.22','','inherit','open','closed','','screenshot-2020-11-30-at-11-08-22','','','2020-11-30 11:14:57','2020-11-30 11:14:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-30-at-11.08.22-1.png',0,'attachment','image/png',0),(25104,0,'2020-11-30 11:17:31','2020-11-30 11:17:31','','Screenshot 2020-11-30 at 11.17.22','','inherit','open','closed','','screenshot-2020-11-30-at-11-17-22','','','2020-11-30 11:17:31','2020-11-30 11:17:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-30-at-11.17.22-1.png',0,'attachment','image/png',0),(25119,0,'2020-12-01 07:44:01','2020-12-01 07:44:01','','shutterstock_1709130394','','inherit','open','closed','','shutterstock_1709130394','','','2020-12-01 07:44:01','2020-12-01 07:44:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1709130394-scaled-1.jpg',0,'attachment','image/jpeg',0),(25121,3,'2020-12-01 07:44:50','2020-12-01 07:44:50','','shutterstock_1800824056','','inherit','open','closed','','shutterstock_1800824056','','','2020-12-01 07:44:50','2020-12-01 07:44:50','',25092,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1800824056-scaled-1.jpg',0,'attachment','image/jpeg',0),(25123,0,'2020-12-01 07:46:03','2020-12-01 07:46:03','','shutterstock_1544641526','','inherit','open','closed','','shutterstock_1544641526','','','2020-12-01 07:46:03','2020-12-01 07:46:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641526-scaled-1.jpg',0,'attachment','image/jpeg',0),(25124,0,'2020-12-01 07:46:55','2020-12-01 07:46:55','','shutterstock_1666658332','','inherit','open','closed','','shutterstock_1666658332','','','2020-12-01 07:46:55','2020-12-01 07:46:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666658332-scaled-1.jpg',0,'attachment','image/jpeg',0),(25125,0,'2020-12-01 07:47:57','2020-12-01 07:47:57','','shutterstock_1666655449','','inherit','open','closed','','shutterstock_1666655449','','','2020-12-01 07:47:57','2020-12-01 07:47:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666655449-scaled-1.jpg',0,'attachment','image/jpeg',0),(25126,0,'2020-12-01 07:50:35','2020-12-01 07:50:35','','shutterstock_1544641502','','inherit','open','closed','','shutterstock_1544641502','','','2020-12-01 07:50:35','2020-12-01 07:50:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641502-scaled-1.jpg',0,'attachment','image/jpeg',0),(25127,0,'2020-12-01 07:52:08','2020-12-01 07:52:08','','shutterstock_303082082','','inherit','open','closed','','shutterstock_303082082','','','2020-12-01 07:52:08','2020-12-01 07:52:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_303082082-scaled-1.jpg',0,'attachment','image/jpeg',0),(25128,0,'2020-12-01 07:53:08','2020-12-01 07:53:08','','shutterstock_1520541617','','inherit','open','closed','','shutterstock_1520541617','','','2024-09-20 15:00:57','2024-09-20 15:00:57','',25092,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1520541617-scaled-1.jpg',0,'attachment','image/jpeg',0),(25168,0,'2020-12-04 11:14:18','2020-12-04 11:14:18','','Screenshot 2020-12-04 at 11.05.19','','inherit','open','closed','','screenshot-2020-12-04-at-11-05-19','','','2020-12-04 11:14:18','2020-12-04 11:14:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/Screenshot-2020-12-04-at-11.05.19-1.png',0,'attachment','image/png',0),(25169,0,'2020-12-04 11:22:30','2020-12-04 11:22:30','','IMG_9214','','inherit','open','closed','','img_9214','','','2020-12-04 11:22:30','2020-12-04 11:22:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/IMG_9214-scaled-1.jpg',0,'attachment','image/jpeg',0),(25170,0,'2020-12-04 11:25:01','2020-12-04 11:25:01','','Screenshot 2020-12-04 at 11.24.44','','inherit','open','closed','','screenshot-2020-12-04-at-11-24-44','','','2020-12-04 11:25:01','2020-12-04 11:25:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/Screenshot-2020-12-04-at-11.24.44-1.png',0,'attachment','image/png',0),(25171,0,'2020-12-04 11:26:58','2020-12-04 11:26:58','','Screenshot 2020-12-04 at 11.26.36','','inherit','open','closed','','screenshot-2020-12-04-at-11-26-36','','','2020-12-04 11:26:58','2020-12-04 11:26:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/Screenshot-2020-12-04-at-11.26.36-1.png',0,'attachment','image/png',0),(25354,0,'2020-12-09 10:45:44','2020-12-09 10:45:44','','CIMSPA-Endorsed-Logo-Navy-RGB_1.eps','','inherit','open','closed','','cimspa-endorsed-logo-navy-rgb_1-eps','','','2020-12-09 10:45:44','2020-12-09 10:45:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/CIMSPA-Endorsed-Logo-Navy-RGB_1.eps_-1.png',0,'attachment','image/png',0),(25355,0,'2020-12-09 10:45:55','2020-12-09 10:45:55','','CIMSPA-Education-Partner-Training-Provider-Logo-Na.eps','','inherit','open','closed','','cimspa-education-partner-training-provider-logo-na-eps','','','2020-12-09 10:45:55','2020-12-09 10:45:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/CIMSPA-Education-Partner-Training-Provider-Logo-Na.eps_-1.png',0,'attachment','image/png',0),(25356,0,'2020-12-09 10:46:08','2020-12-09 10:46:08','','CIMSPA-Education-Partner-Training-Provider-Logo-Bl.eps','','inherit','open','closed','','cimspa-education-partner-training-provider-logo-bl-eps','','','2020-12-09 10:46:08','2020-12-09 10:46:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/CIMSPA-Education-Partner-Training-Provider-Logo-Bl.eps_-1.png',0,'attachment','image/png',0),(25357,0,'2020-12-09 10:46:19','2020-12-09 10:46:19','','CIMSPA_CIMSPA_Stronger_Together_Logo_Navy.eps','','inherit','open','closed','','cimspa_cimspa_stronger_together_logo_navy-eps','','','2020-12-09 10:46:19','2020-12-09 10:46:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/CIMSPA_CIMSPA_Stronger_Together_Logo_Navy.eps_-1.png',0,'attachment','image/png',0),(25358,0,'2020-12-09 10:46:42','2020-12-09 10:46:42','','CIMSPA-Endorsed-Logo-Navy-RGB_2.eps','','inherit','open','closed','','cimspa-endorsed-logo-navy-rgb_2-eps','','','2020-12-09 10:46:42','2020-12-09 10:46:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/CIMSPA-Endorsed-Logo-Navy-RGB_2.eps_-1.png',0,'attachment','image/png',0),(25457,3,'2020-12-15 10:20:26','2020-12-15 10:20:26','<h1><span style=\"font-weight: 400;\">Part 5 - Shoulder time!</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the most complex joints in our client’s body &amp; becoming a problem area for common problems just like the lower back!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Shall we dive straight in….?</span>\n\n&nbsp;\n<h2><b>The Bones </b></h2>\n&nbsp;\n<h2><b>Clavicle (Collar bone) </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The word clavicle comes from the latin for ‘tendril’ due to its meagre connection from the scapula to sternum.</span>\n\n<span style=\"font-weight: 400;\">It is also known as the collarbone, the ‘beauty bone’ or the ‘skinny bone’ since those awful times when ‘skinny’ was perceived as attractive. </span>\n\n<span style=\"font-weight: 400;\">AND….it is the only bony connection between our shoulder &amp; the rest of our skeleton! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WOW! No wonder shoulder ‘issues’ are a common thing our clients complain about!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The clavicle is the first bone to harden in the fetus but interestingly the last to completely develop! </span><span style=\"font-weight: 400;\">With this in mind &amp; the fact that it\'s a </span><i><span style=\"font-weight: 400;\">force transmitter</span></i><span style=\"font-weight: 400;\"> from the arms to the upper body/skeleton you can appreciate </span><span style=\"font-weight: 400;\">why youngsters can often break theirs. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you were to view it from overhead it has an S shape &amp; try</span><span style=\"font-weight: 400;\"> placing your fingers/hand onto your clavicle then shrug up your shoulder….can you feel it articulate with the sternum?</span>\n\n&nbsp;\n<h2><b><img class=\"aligncenter wp-image-25462\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/Screenshot-2020-12-15-at-10.17.34.png\" alt=\"\" width=\"735\" height=\"722\" />Humerus</b></h2>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Umerus</span></i><span style=\"font-weight: 400;\"> means upper arm from its latin origins but also history from the Greek word </span><i><span style=\"font-weight: 400;\">omos</span></i><span style=\"font-weight: 400;\"> for arm. The top end (proximal portion) of the humerus joins the glenoid fossa to create what\'s known as the glenohumeral joint. </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25461\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_305274299-scaled-1.jpg\" alt=\"\" width=\"270\" height=\"789\" />\n\n<span style=\"font-weight: 400;\">Glenoid means smooth shallow depression or slightly cupped.</span>\n\n<span style=\"font-weight: 400;\">Fossa meaning ‘ditch’ or pit.</span>\n\n<span style=\"font-weight: 400;\">Head of humerus is also called the </span><i><span style=\"font-weight: 400;\">caput humeri -</span></i><span style=\"font-weight: 400;\"> caput meaning head in this instance.</span>\n\n<span style=\"font-weight: 400;\">Greater tubercle is from latin </span><i><span style=\"font-weight: 400;\">tuberculum</span></i><span style=\"font-weight: 400;\"> or small swelling </span>\n\n<span style=\"font-weight: 400;\">Lesser tubercle or </span><i><span style=\"font-weight: 400;\">tuberculum minus</span></i>\n\n&nbsp;\n<h2><b>Scapular </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The shoulder ‘blade’ or scapula is an attachment site for around 17 muscles &amp; glides on the scapulothoracic joint, also described as a false joint since it doesn\'t have the usual joint components. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The front facing (anterior) side is called the costal surface as it relates to the ribs/costals. It is also the subscapular fossa where the subscapularis sits between the scapular &amp; ribs.</span>\n\n<span style=\"font-weight: 400;\">The dorsal surface (posterior) or side &amp; also known as the infraspinous fossa - why? Go on guess….???? YES the infraspinatus muscle sits on there!!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25460\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_278017295-scaled-1.jpg\" alt=\"\" width=\"555\" height=\"605\" />\n\n<span style=\"font-weight: 400;\">The scapular’s triangular in shape &amp; so has 3 sides;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Superior border (top)</span>\n\n<span style=\"font-weight: 400;\">Lateral border (axillary which relates to the armpit, so outer edge)</span>\n\n<span style=\"font-weight: 400;\">Medial border (or vertebral border or medial margin, closest to the vertebrae)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">At each corner where these ‘sides meet are the angles;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Superior angle (top &amp; medial)</span>\n\n<span style=\"font-weight: 400;\">Inferior angle (bottom &amp; medial)</span>\n\n<span style=\"font-weight: 400;\">Lateral or glenoid angle also known as the head of the scapular </span>\n\n<span style=\"font-weight: 400;\">Glenoid cavity (or fossa) where the humerus ‘connects’</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">The other key landmarks;</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Acromion process - allows us to do a pec minor test when clients lies supine - this process should measure 2.5cm or 1” front the floor  or massage bed</span>\n\n<span style=\"font-weight: 400;\">Coracoid process - upper attachment site for pec minor in the hollow on the front of the shoulder </span>\n\n<span style=\"font-weight: 400;\">Spine of scapular - the ledge that sweeps across the top back portion. Place your hand over the opposite shoulder to feel this ledge.</span>\n\n<span style=\"font-weight: 400;\">Subscapular fossa - front surface against ribs</span>\n\n<span style=\"font-weight: 400;\">Infraspinous fossa - back surface that gives hedonistic discomfort when you rub it against a ball, against a wall!!</span>\n\n&nbsp;\n<h2><b>The meeting places….</b></h2>\n&nbsp;\n<h2><b>Sternoclavicular Joint (S/C)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Where the sternum &amp; clavicle meet!</span>\n\n&nbsp;\n<h2><b>Acromioclavicular Joint (A/C)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Where the acromion &amp; clavicle meet!</span>\n\n&nbsp;\n<h2><b>Glenohumeral Joint </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Where the Glenoid fossa &amp; humerus meet!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24189\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_172528928-scaled-1.jpg\" alt=\"\" width=\"509\" height=\"482\" />\n<h2><b>Interesting shoulder facts </b></h2>\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">There’s no actual socket!</span></li>\n</ol>\n<span style=\"font-weight: 400;\">When we learn our anatomy the shoulder is described as a ball &amp; socket joint even though technically there isn\'t a socket! </span><span style=\"font-weight: 400;\">. The ball of the humerus instead moves against the flat surface of the glenoid fossa! The shoulder barely connects to the rest of the skeleton.</span>\n\n<span style=\"font-weight: 400;\">The only bony connection is at the collarbone as described above!</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">It goes all over the place!</span></li>\n</ol>\n<span style=\"font-weight: 400;\">When healthy, your shoulder should allow your arm to go in pretty much any directions. Its also </span><span style=\"font-weight: 400;\">considered a multiaxial joint due to its multiplanar capability.</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Muscles REALLY matter for your shoulder.</span></li>\n</ol>\n<span style=\"font-weight: 400;\">Because of the low level of bony connection to the rest of the skeleton, the lack of a socket, and the many directions of its movement mean that muscles have a much more critical job in this region. </span>\n<h1></h1>\n<h1>Would you like to learn more about shoulder biomechanics?</h1>\n&nbsp;\n\nPete Banbury, The Body Mapper &amp; Rachel Frances Thomson, Biomechanics Education share a passion for the same things\n\n&nbsp;\n<h2>Anatomy, Movement &amp; Education Experiences</h2>\n&nbsp;\n\nWith a combined 5 decades working within these fields this dedicated duo wanted to share some nuggets of functional / practical shoulder anatomy. Not only tips to recall the relevant anatomy but also how to understand it biomechanically in application\n\nSo if you are involved in improving movement in anyway &amp; looking for a deeper level of understand the anatomy &amp; biomechanics of your client’s shoulder, how to assess, monitor &amp; condition improved joint strength ratios this 2hr webinar is aimed specifically at you!\n\n&nbsp;\n<h3 class=\"p1\">Peter will show you how to EXPERIENCE anatomy in as many ways as possible</h3>\n<h3 class=\"p1\">Then Rachel will SHOW you how to assess your clients biomechanics to allow clever programme design</h3>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/working-with-shoulder-issues-webinar-dec-9th-2020-10am-12pm/#tab-description\" target=\"_blank\" rel=\"noopener\"> &gt;&gt;CLICK HERE TO GET THIS WEBINAR &lt;&lt;</a></h1>\n&nbsp;','Shoulder Biomechanics Part 5 -  The Bones of the Shoulder','','draft','closed','closed','','shoulder-biomechanics-part-5-the-bones-of-the-shoulder','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=25457',0,'post','',0),(25460,3,'2020-12-15 10:15:51','2020-12-15 10:15:51','','shutterstock_278017295','','inherit','open','closed','','shutterstock_278017295','','','2020-12-15 10:15:51','2020-12-15 10:15:51','',25457,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_278017295-scaled-1.jpg',0,'attachment','image/jpeg',0),(25461,3,'2020-12-15 10:16:20','2020-12-15 10:16:20','','shutterstock_305274299','','inherit','open','closed','','shutterstock_305274299','','','2020-12-15 10:16:20','2020-12-15 10:16:20','',25457,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_305274299-scaled-1.jpg',0,'attachment','image/jpeg',0),(25462,3,'2020-12-15 10:17:46','2020-12-15 10:17:46','','Screenshot 2020-12-15 at 10.17.34','','inherit','open','closed','','screenshot-2020-12-15-at-10-17-34','','','2020-12-15 10:17:46','2020-12-15 10:17:46','',25457,'https://biomechanicseducation.com/wp-content/uploads/2020/12/Screenshot-2020-12-15-at-10.17.34.png',0,'attachment','image/png',0),(25466,3,'2021-01-04 15:12:00','2021-01-04 15:12:00','The shoulder is a marvel of biomechanics, heavily reliant on robust muscle tone and function for optimal performance. In this exploration, we delve into the intricate web of shoulder muscles to illuminate their roles and significance in movement and stability.\r\n<h3>Deltoids</h3>\r\nThe Powerhouses Formerly known as deltoidious, these muscles are the largest and strongest in the shoulder region. Their name derives from the Greek letter delta, symbolizing change. With origins spanning the spine of the scapula, acromion, and clavicle, they extend to the deltoid tuberosity of the humerus. Divided into anterior, lateral, and posterior parts, they facilitate a range of movements including flexion, abduction, and extension.\r\n\r\n<span style=\"font-weight: 400;\">  </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25696\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1697704519-scaled-1.jpg\" alt=\"\" width=\"533\" height=\"533\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h3>Supraspinatus</h3>\r\nThe Stabilizer Despite its relatively small size, the supraspinatus plays a crucial role in shoulder stability. Positioned atop the scapular spine, it aids deltoids in abduction and humeral head stabilization, particularly in the initial phase of abduction.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25468\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_293547812-scaled.jpg\" alt=\"\" width=\"449\" height=\"599\" />\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h3>Teres Minor</h3>\r\nThe Rotator Situated between the infraspinatus and teres major, this muscle assists in lateral rotation of the arm and stabilizes the glenohumeral joint, contributing to overall shoulder mobility and stability.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25698\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_293546465-scaled-1.jpg\" alt=\"\" width=\"495\" height=\"660\" />\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h3>Infraspinatus</h3>\r\nThe Biscuit Muscle Located posteriorly on the scapula, the infraspinatus earns its nickname due to its texture resembling biscuit crumbs. As a lateral rotator, it helps maintain shoulder function and can be tested through specific range of motion exercises.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24188\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_147943874-scaled-1.jpg\" alt=\"\" width=\"646\" height=\"517\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Subscapularis</h3>\r\nThe Internal Rotator Working in tandem with the pectoralis major, the subscapularis aids internal rotation of the arm. Positioned on the anterior surface of the scapula, it attaches to the humerus, contributing to shoulder stability and mobility.\r\n<h3>Trapezius</h3>\r\nThe Shoulder Blanket With its distinct diamond shape, the trapezius covers the back of the shoulders, comprising upper, medial, and lower fibers. Its actions include shoulder elevation, depression, retraction, and neck movements, offering essential support during various upper body activities.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25700\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1335929453-scaled-1.jpg\" alt=\"\" width=\"586\" height=\"782\" />\r\n\r\n&nbsp;\r\n<h3>Latissimus Dorsi</h3>\r\nThe Broad Puller As the broadest muscle of the back, the latissimus dorsi aids in arm adduction, extension, and internal rotation. Its attachment from the scapula to the humerus enables powerful pulling movements.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25701\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_145358134-scaled-1.jpg\" alt=\"\" width=\"510\" height=\"510\" />\r\n\r\n&nbsp;\r\n<h3>Teres Major</h3>\r\nThe Lats\' Ally Functioning similarly to the latissimus dorsi, the teres major assists in shoulder extension, adduction, and internal rotation, complementing the actions of its larger counterpart.\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25470\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1697704909-scaled.jpg\" alt=\"\" width=\"619\" height=\"619\" />\r\n\r\n&nbsp;\r\n<h3>Rhomboids Major &amp; Minor</h3>\r\nThe Scapular Stabilizers These muscles work together to retract and stabilize the scapula, counteracting the effects of prolonged forward shoulder posture.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25471\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_293547224-scaled.jpg\" alt=\"\" width=\"653\" height=\"870\" />\r\n\r\n&nbsp;\r\n<h3>Levator Scapulae</h3>\r\nThe Scapula Elevator Originating from the cervical spine, the levator scapulae aids in scapular elevation and rotation, playing a pivotal role in neck and shoulder movements.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25472\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1800822229-scaled-1.jpg\" alt=\"\" width=\"596\" height=\"596\" />\r\n\r\n&nbsp;\r\n<h3>Serratus Anterior</h3>\r\nThe Scapula Protractor Despite its intricate anatomy, the serratus anterior is crucial for scapular protraction and upward rotation, contributing to shoulder stability and range of motion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25703\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_293547815-scaled-1.jpg\" alt=\"\" width=\"600\" height=\"800\" />\r\n\r\n&nbsp;\r\n<h3>Pectoralis Minor</h3>\r\nThe Shoulder Depressor Attached to the coracoid process, the pectoralis minor aids in scapular protraction and depression, particularly affected by prolonged sitting and rounded shoulder posture.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25705\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_151422785-scaled-1.jpg\" alt=\"\" width=\"524\" height=\"698\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h3>Pectoralis Major</h3>\r\nThe Chest Powerhouse Distinct from the pectoralis minor, the pectoralis major facilitates arm adduction, flexion, and internal rotation, playing a significant role in upper body movements.\r\n<h4 style=\"text-align: center;\">Conclusion</h4>\r\n<p style=\"text-align: center;\">A World of Shoulder Movements From abduction to rotation, the shoulder boasts a myriad of movements, underscoring its complexity and vulnerability to dysfunction. Understanding the intricacies of shoulder anatomy enhances our ability to address issues and optimize performance.</p>\r\n<p style=\"text-align: center;\">This glimpse into shoulder biomechanics serves as a foundation for further exploration, emphasising the continuous learning journey inherent in anatomy study.</p>','Shoulder Biomechanics Part 6 – The Muscles of the Shoulder','','publish','closed','closed','','shoulder-biomechanics-part-6-the-muscles-of-the-shoulder','','','2025-01-20 15:59:55','2025-01-20 15:59:55','',0,'https://www.biomechanicseducation.com/?p=25466',0,'post','',0),(25467,0,'2020-12-15 10:49:56','2020-12-15 10:49:56','','shutterstock_1697704519','','inherit','open','closed','','shutterstock_1697704519','','','2020-12-15 10:49:56','2020-12-15 10:49:56','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1697704519-scaled-1.jpg',0,'attachment','image/jpeg',0),(25468,0,'2020-12-15 10:50:49','2020-12-15 10:50:49','','shutterstock_293547812','','inherit','open','closed','','shutterstock_293547812','','','2020-12-15 10:50:49','2020-12-15 10:50:49','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_293547812-scaled-1.jpg',0,'attachment','image/jpeg',0),(25469,0,'2020-12-15 10:51:34','2020-12-15 10:51:34','','shutterstock_293546465','','inherit','open','closed','','shutterstock_293546465','','','2020-12-15 10:51:34','2020-12-15 10:51:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_293546465-scaled-1.jpg',0,'attachment','image/jpeg',0),(25470,0,'2020-12-15 10:52:50','2020-12-15 10:52:50','','shutterstock_1697704909','','inherit','open','closed','','shutterstock_1697704909','','','2020-12-15 10:52:50','2020-12-15 10:52:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1697704909-scaled-1.jpg',0,'attachment','image/jpeg',0),(25471,0,'2020-12-15 10:53:36','2020-12-15 10:53:36','','shutterstock_293547224','','inherit','open','closed','','shutterstock_293547224','','','2020-12-15 10:53:36','2020-12-15 10:53:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_293547224-scaled-1.jpg',0,'attachment','image/jpeg',0),(25472,0,'2020-12-15 10:54:32','2020-12-15 10:54:32','','shutterstock_1800822229','','inherit','open','closed','','shutterstock_1800822229','','','2020-12-15 10:54:32','2020-12-15 10:54:32','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1800822229-scaled-1.jpg',0,'attachment','image/jpeg',0),(25473,0,'2020-12-15 10:55:31','2020-12-15 10:55:31','','Screenshot 2020-12-15 at 10.55.19','','inherit','open','closed','','screenshot-2020-12-15-at-10-55-19','','','2020-12-15 10:55:31','2020-12-15 10:55:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/Screenshot-2020-12-15-at-10.55.19-1.png',0,'attachment','image/png',0),(25474,0,'2020-12-15 10:56:14','2020-12-15 10:56:14','','shutterstock_1663518505','','inherit','open','closed','','shutterstock_1663518505','','','2020-12-15 10:56:14','2020-12-15 10:56:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1663518505-scaled-1.jpg',0,'attachment','image/jpeg',0),(25551,0,'2020-12-21 16:57:06','2020-12-21 16:57:06','','CIMSPA-Education-Partner-Training-Provider','','inherit','open','closed','','cimspa-education-partner-training-provider-logo-white-rgb','','','2020-12-21 16:57:06','2020-12-21 16:57:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/CIMSPA-Education-Partner-Training-Provider-Logo-White-RGB-1.png',0,'attachment','image/png',0),(25582,0,'2020-12-23 15:12:46','2020-12-23 15:12:46','','Pelvic Biomechanics Practical Anatomy Part 1 – The Bones, Muscles & Actions - Google Docs','','inherit','open','closed','','pelvic-biomechanics-practical-anatomy-part-1-the-bones-muscles-actions-google-docs','','','2020-12-23 15:12:46','2020-12-23 15:12:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/12/Pelvic-Biomechanics-Practical-Anatomy-Part-1-–-The-Bones-Muscles-Actions-Google-Docs-1.pdf',0,'attachment','application/pdf',0),(25696,0,'2021-01-04 14:39:10','2021-01-04 14:39:10','','shutterstock_1697704519','','inherit','open','closed','','shutterstock_1697704519-2','','','2021-01-04 14:39:10','2021-01-04 14:39:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1697704519-scaled-1.jpg',0,'attachment','image/jpeg',0),(25697,0,'2021-01-04 14:43:02','2021-01-04 14:43:02','','shutterstock_293547812','','inherit','open','closed','','shutterstock_293547812-2','','','2021-01-04 14:43:02','2021-01-04 14:43:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_293547812-scaled-1.jpg',0,'attachment','image/jpeg',0),(25698,0,'2021-01-04 14:44:18','2021-01-04 14:44:18','','shutterstock_293546465','','inherit','open','closed','','shutterstock_293546465-2','','','2021-01-04 14:44:18','2021-01-04 14:44:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_293546465-scaled-1.jpg',0,'attachment','image/jpeg',0),(25700,0,'2021-01-04 14:59:56','2021-01-04 14:59:56','','shutterstock_1335929453','','inherit','open','closed','','shutterstock_1335929453','','','2021-01-04 14:59:56','2021-01-04 14:59:56','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1335929453-scaled-1.jpg',0,'attachment','image/jpeg',0),(25701,0,'2021-01-04 15:00:50','2021-01-04 15:00:50','','shutterstock_145358134','','inherit','open','closed','','shutterstock_145358134','','','2021-01-04 15:00:50','2021-01-04 15:00:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_145358134-scaled-1.jpg',0,'attachment','image/jpeg',0),(25703,0,'2021-01-04 15:04:26','2021-01-04 15:04:26','','shutterstock_293547815','','inherit','open','closed','','shutterstock_293547815','','','2021-01-04 15:04:26','2021-01-04 15:04:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_293547815-scaled-1.jpg',0,'attachment','image/jpeg',0),(25704,0,'2021-01-04 15:06:14','2021-01-04 15:06:14','','Screenshot 2021-01-04 at 15.06.00','','inherit','open','closed','','screenshot-2021-01-04-at-15-06-00','','','2021-01-04 15:06:14','2021-01-04 15:06:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/Screenshot-2021-01-04-at-15.06.00-1.png',0,'attachment','image/png',0),(25705,0,'2021-01-04 15:07:14','2021-01-04 15:07:14','','shutterstock_151422785','','inherit','open','closed','','shutterstock_151422785','','','2021-01-04 15:07:14','2021-01-04 15:07:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_151422785-scaled-1.jpg',0,'attachment','image/jpeg',0),(25881,0,'2021-01-19 13:21:27','2021-01-19 13:21:27','','WEBSITE PDF SPINE LINKS','','inherit','open','closed','','website-pdf-spine-links','','','2021-01-19 13:21:27','2021-01-19 13:21:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/WEBSITE-PDF-SPINE-LINKS-1-2.pdf',0,'attachment','application/pdf',0),(25882,0,'2021-01-19 13:21:40','2021-01-19 13:21:40','','WEBSITE PDF SPINE LINKS','','inherit','open','closed','','website-pdf-spine-links-2','','','2021-01-19 13:21:40','2021-01-19 13:21:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/WEBSITE-PDF-SPINE-LINKS-1-1-1.pdf',0,'attachment','application/pdf',0),(25885,0,'2021-01-19 13:31:13','2021-01-19 13:31:13','','IMG_4408','','inherit','open','closed','','img_4408','','','2021-01-19 13:31:13','2021-01-19 13:31:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/IMG_4408-1.jpg',0,'attachment','image/jpeg',0),(25907,0,'2021-01-20 08:31:48','2021-01-20 08:31:48','','tengyart-auEPahZjT40-unsplash','','inherit','open','closed','','tengyart-auepahzjt40-unsplash','','','2021-01-20 08:31:48','2021-01-20 08:31:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/tengyart-auEPahZjT40-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(25961,3,'2021-01-26 15:29:09','2021-01-26 15:29:09','<h2>\'The Middle Sister\'</h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The knee joint is sometimes described as the ‘Middle Sister’ of the lower limb, a ‘triplet’ of joints so to speak!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHAT? WHY? HOW?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Almost all common ‘knee problems’ are caused by the force from above, the force from below or maybe even both. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what...I hear ya?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This means to help clients with knee problems we need to understand those forces &amp; how to improve them. In fact it would be a challenge to truly understand knee biomechanics without at least some recognition of the ascending &amp; descending influences of the pelvis &amp; foot…...bear with me!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As the biggest synovial (</span><i><span style=\"font-weight: 400;\">synovial - surrounded by a thick flexible membrane forming a sac into which is secreted a viscous fluid that lubricates)</span></i> <span style=\"font-weight: 400;\">joint, the knee forms at the place where the distal (</span><i><span style=\"font-weight: 400;\">distant</span></i><span style=\"font-weight: 400;\">) end of the femur meets the proximal (</span><i><span style=\"font-weight: 400;\">closest proximity</span></i><span style=\"font-weight: 400;\">) end of the Tibia (</span><i><span style=\"font-weight: 400;\">also from latin for pipe or flute</span></i><span style=\"font-weight: 400;\">) meet.</span>\n\n&nbsp;\n<h2>Patella</h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25975\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_296166746-scaled-1.jpg\" alt=\"\" width=\"275\" height=\"367\" />\n\n<span style=\"font-weight: 400;\">Then the Patella (</span><i><span style=\"font-weight: 400;\">patina or patena or paten, </span></i><b><i>meaning</i></b><i><span style=\"font-weight: 400;\"> shallow dish</span></i><span style=\"font-weight: 400;\">)</span> <span style=\"font-weight: 400;\">sits at the front of the knee joint. With the Apex at the bottom &amp; the Base at the top - I HAVE ON IDEA WHY!?!? </span>\n\n<span style=\"font-weight: 400;\">Who on earth named this piece!? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The inside surface of the patella has medial &amp; lateral facets (</span><i><span style=\"font-weight: 400;\">flat surface</span></i><span style=\"font-weight: 400;\">) that come into contact with the ‘knuckles’ of the femur. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now there are all sorts of names for other bony parts (</span><i><span style=\"font-weight: 400;\">pars</span></i><span style=\"font-weight: 400;\">) in the knee like….</span>\n\n&nbsp;\n<h2><strong>Bony Pars</strong></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Plateau (</span><i><span style=\"font-weight: 400;\">flat surface</span></i><span style=\"font-weight: 400;\">)</span>\n\n<span style=\"font-weight: 400;\">Tuberosity (</span><i><span style=\"font-weight: 400;\">rounded prominence</span></i><span style=\"font-weight: 400;\">)</span>\n\n<span style=\"font-weight: 400;\">Tubercle (</span><i><span style=\"font-weight: 400;\">small nobule</span></i><span style=\"font-weight: 400;\">)</span>\n\n<span style=\"font-weight: 400;\">Epicondyle (</span><i><span style=\"font-weight: 400;\">r</span></i><i><span style=\"font-weight: 400;\">ounded eminence on a bone that lies upon a </span></i><b><i>condyle</i></b><span style=\"font-weight: 400;\">)</span>\n\n<span style=\"font-weight: 400;\">Condyle (</span><i><span style=\"font-weight: 400;\">knuckle</span></i><span style=\"font-weight: 400;\">)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These each relate to the anatomy / soft tissue etc that they are named by.</span>\n\n&nbsp;\n<h2>Meniscus</h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-25976\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1030913119-scaled-1.jpg\" alt=\"\" width=\"345\" height=\"194\" />\n\n&nbsp;\n\nThe meniscus are effectively the top 2 \'cups\' of the tibia that the femur sits onto of!\n\nThe word meniscus derives from Greek <em>meniskos</em>, meaning \'crescent\' The word was used for curved things in general, such as a necklace or a line of battle.\n\nSo when you think about your entire body resting AND moving on top of these menisci its easy to understand why they are commonly written onto medical reports after knee MRI\'s come back from the radiologist!\n\nPoor menisci!\n\n&nbsp;\n<h2>Fibula</h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then of course there is the Fibula (</span><i><span style=\"font-weight: 400;\">Latin for “brooch”, because the inner bone, the tibia, and the fibula together resemble an ancient brooch, or pin</span></i><span style=\"font-weight: 400;\">) ….Wow I learned this words history / origin while researching for this blog! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">See I am learning with you!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25977\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_199824647-scaled-1.jpg\" alt=\"\" width=\"331\" height=\"331\" />\n<h2>Tibia</h2>\n&nbsp;\n\nThe shin or lower leg bone, from Latin also \'pipe, flute\' - originally made from bone!\n\n&nbsp;\n<h2><b>The Knee Action/s</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When I ruptured (snapped) my ACL during landing from a jumping roundhouse kick I spent a lot of time researching knee anatomy, function &amp; biomechanics. I read </span><b><i>Brunnstrom’s Clinical Kinesiology</i></b><span style=\"font-weight: 400;\"> section about the knee….WOW!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When flexing, the knee does not simply hinge through single action…..oh no! It will glide, roll &amp; twist to produce what we call knee flexion. Movement produced by our wonderful integrated system is really quite stunning in its complexity that can be made so simple for application. However when building knee implants or replacement joints this level of fluidity in motion is just not possible, no matter how fabulous these implants are these days!</span>\n\n&nbsp;\n\n<b><i>During knee flexion</i></b><i><span style=\"font-weight: 400;\">, tibia glides posteriorly on femur and from full </span></i><b><i>knee</i></b><i><span style=\"font-weight: 400;\"> extension to 20</span></i><i><span style=\"font-weight: 400;\">o</span></i> <b><i>flexion</i></b><i><span style=\"font-weight: 400;\">, tibia rotates internally. Closed kinetic chain - </span></i><b><i>During knee</i></b><i><span style=\"font-weight: 400;\"> extension, femur glides posteriorly on tibia. To be more specific, from 20</span></i><i><span style=\"font-weight: 400;\">o</span></i> <b><i>knee flexion</i></b><i><span style=\"font-weight: 400;\"> to full extension, femur rotates internally on stable tibia.</span></i>\n\n<i><span style=\"font-weight: 400;\">(Physio-pedia.com)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is why I LOVE STUDYING THE BODY &amp; MOVEMENT SO MUCH!</span>\n\n&nbsp;\n\n(Did you notice the emphasis there!?!?)\n\n&nbsp;\n<h2><b>Knee Ligaments </b></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-25978\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/Screenshot-2021-01-26-at-15.10.33-1.png\" alt=\"\" width=\"366\" height=\"272\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now we should also mention ligaments when discussing knee biomechanics since they play a huge role in there….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">MCL - medial (</span><i><span style=\"font-weight: 400;\">inside</span></i><span style=\"font-weight: 400;\">) collateral (</span><i><span style=\"font-weight: 400;\">together with</span></i><span style=\"font-weight: 400;\">) ligament (</span><i><span style=\"font-weight: 400;\">bond)</span></i>\n\n<span style=\"font-weight: 400;\">LCL - lateral (</span><i><span style=\"font-weight: 400;\">outside</span></i><span style=\"font-weight: 400;\">) collateral (</span><i><span style=\"font-weight: 400;\">together with</span></i><span style=\"font-weight: 400;\">) ligament (</span><i><span style=\"font-weight: 400;\">bond)</span></i>\n\n<span style=\"font-weight: 400;\">ACL - anterior </span><i><span style=\"font-weight: 400;\">(front</span></i><span style=\"font-weight: 400;\">) cruciate (</span><i><span style=\"font-weight: 400;\">cross shaped</span></i><span style=\"font-weight: 400;\">) ligament (</span><i><span style=\"font-weight: 400;\">bond)</span></i>\n\n<span style=\"font-weight: 400;\">PCL - posterior (</span><i><span style=\"font-weight: 400;\">back</span></i><span style=\"font-weight: 400;\">) cruciate (</span><i><span style=\"font-weight: 400;\">cross shaped</span></i><span style=\"font-weight: 400;\">) ligament (</span><i><span style=\"font-weight: 400;\">bond</span></i><span style=\"font-weight: 400;\">)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These </span><i><span style=\"font-weight: 400;\">bonds </span></i><span style=\"font-weight: 400;\">play a key role in knee stability, as you can imagine, with the amount of force we repeatedly put through &amp; across our knee joint. </span>\n\n<span style=\"font-weight: 400;\">These ligamentous structures connect bone to bone &amp; so are (&amp; need to be) stronger than tendons that connect muscle to bone. It does however mean they are also less elastic than tendons.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A brief &amp; special mention to the Patella </span><i><span style=\"font-weight: 400;\">tendon</span></i><span style=\"font-weight: 400;\">! </span>\n\n<span style=\"font-weight: 400;\">WHOOP WHOOP!</span>\n\n<span style=\"font-weight: 400;\">This bad boy will get another mention in the next of this series Part 8 - ‘</span><b>Muscles of the Knee’</b>\n\n&nbsp;\n<h1><b>Interesting Facts About Your Knees </b></h1>\n&nbsp;\n\n<img class=\"aligncenter wp-image-25979\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/Screenshot-2021-01-26-at-15.10.45-1.png\" alt=\"\" width=\"366\" height=\"363\" />\n\n<i><span style=\"font-weight: 400;\">Walking up &amp; down stairs can put 600lbs of pressure on the patella BUT has the protection of the thickest layer of cartilage on the posterior surface of the patella </span></i>\n\n<i><span style=\"font-weight: 400;\">(Andrew Biel)</span></i>\n\n&nbsp;\n<h1><b>Babies are born without kneecaps!</b></h1>\n&nbsp;\n<h4><span style=\"font-weight: 400;\">When we are born we have soft cartilage where our kneecaps will eventually develop. However they do not ossify or show up on x rays until around 2-6yrs</span></h4>\n<h1><b>You can walk without a kneecap.</b></h1>\n&nbsp;\n<h4><span style=\"font-weight: 400;\">If you break your kneecap badly enough, it is likely to have to be</span><span style=\"font-weight: 400;\"> removed surgically. Surgeons do not fit a kneecap prostheses—because you can walk without a kneecap!</span></h4>\n<h4><span style=\"font-weight: 400;\">Kneeling, however, may be uncomfortable without one, meaning you may require a protective padding.</span></h4>\n&nbsp;\n<h1>ACL Reconstruction ?</h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">ACL reconstruction can be done using either a portion from your hamstring or your patella tendon - patella tendon grafts are prone to leave patients with knee pain when kneeling. So top knee surgeon Dr Hahn, offered me a hamstring graft instead - I decided against it, some may not have such a choice but I really didn\'t fancy also rehabbing my wonderful hammies. They are the envy of some &amp; I knew from my MRI that I had a little proprioception where my ACL had latched onto the PCL….said Dr Hahn!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This super pair of hams have stood me in good stead so far &amp; allowed me to live with a ruptured ACL in my left knee with absolutely no detriment my lifestyle whatsoever. </span>\n\n&nbsp;\n<h2>Are you enjoying these blogs?</h2>\n<h2>Would you like to invest in CPD videos online?</h2>\n<h2>Why not look:</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/pelvic-biomechanics-practical-anatomy-part-1-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\"> CLICK HERE FOR &gt;&gt;PELVIC ANATOMY</a></h2>\n<h2>OR</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/spine-biomechanics-practical-anatomy-part-2-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\">CLICK HERE FOR &gt;&gt;SPINE ANATOMY</a></h2>\n<h2>OR</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/shoulder-biomechanics-practical-anatomy-part-3-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\">CLICK HERE FOR &gt;&gt;SHOULDER ANATOMY</a></h2>\n<h2>&amp;</h2>\n<h2>KNEE ANATOMY &gt;&gt; Coming Soon!!</h2>','Knee Biomechanics Part 7 -  The Bones of the Knee','','draft','closed','closed','','knee-biomechanics-part-7-the-bones-of-the-knee','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=25961',0,'post','',2),(25974,0,'2021-01-26 15:03:46','2021-01-26 15:03:46','','Anatomy,Of,Human,Knee,Joint.,3d,Illustration','','inherit','open','closed','','anatomyofhumankneejoint-3dillustration','','','2021-01-26 15:03:46','2021-01-26 15:03:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1141946069-scaled-1.jpg',0,'attachment','image/jpeg',0),(25975,0,'2021-01-26 15:05:31','2021-01-26 15:05:31','','shutterstock_296166746','','inherit','open','closed','','shutterstock_296166746','','','2021-01-26 15:05:31','2021-01-26 15:05:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_296166746-scaled-1.jpg',0,'attachment','image/jpeg',0),(25976,0,'2021-01-26 15:07:44','2021-01-26 15:07:44','','shutterstock_1030913119','','inherit','open','closed','','shutterstock_1030913119','','','2021-01-26 15:07:44','2021-01-26 15:07:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1030913119-scaled-1.jpg',0,'attachment','image/jpeg',0),(25977,0,'2021-01-26 15:08:57','2021-01-26 15:08:57','','shutterstock_199824647','','inherit','open','closed','','shutterstock_199824647','','','2021-01-26 15:08:57','2021-01-26 15:08:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_199824647-scaled-1.jpg',0,'attachment','image/jpeg',0),(25978,0,'2021-01-26 15:10:58','2021-01-26 15:10:58','','Screenshot 2021-01-26 at 15.10.33','','inherit','open','closed','','screenshot-2021-01-26-at-15-10-33','','','2021-01-26 15:10:58','2021-01-26 15:10:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/Screenshot-2021-01-26-at-15.10.33-1.png',0,'attachment','image/png',0),(25979,0,'2021-01-26 15:11:41','2021-01-26 15:11:41','','Screenshot 2021-01-26 at 15.10.45','','inherit','open','closed','','screenshot-2021-01-26-at-15-10-45','','','2021-01-26 15:11:41','2021-01-26 15:11:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/01/Screenshot-2021-01-26-at-15.10.45-1.png',0,'attachment','image/png',0),(26047,0,'2021-02-01 08:23:28','2021-02-01 08:23:28','','IMG_4410','','inherit','open','closed','','img_4410','','','2021-02-01 08:23:28','2021-02-01 08:23:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/IMG_4410-1.jpg',0,'attachment','image/jpeg',0),(26048,0,'2021-02-01 08:24:41','2021-02-01 08:24:41','','Screenshot 2021-02-01 at 08.24.11','','inherit','open','closed','','screenshot-2021-02-01-at-08-24-11','','','2021-02-01 08:24:41','2021-02-01 08:24:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-01-at-08.24.11-1.png',0,'attachment','image/png',0),(26053,0,'2021-02-01 12:30:12','2021-02-01 12:30:12','','Vgym','','inherit','open','closed','','vgym','','','2021-02-01 12:30:12','2021-02-01 12:30:12','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/Vgym-1.png',0,'attachment','image/png',0),(26101,3,'2021-02-02 13:20:43','2021-02-02 13:20:43','<span style=\"font-weight: 400;\">OK OK OK Yes this is a tough one because technically we don\'t have ‘knee muscles’ do we?? Or do we???</span>\n\n<span style=\"font-weight: 400;\">Well when considering this very point it would probably be prudent to discuss the muscles that cross the knee, right?</span>\n<h2></h2>\n<h1><b>Anterior Knee </b></h1>\n<h2></h2>\n<h2><b>The ‘Quadricep Femoris’ Group</b></h2>\n<h2></h2>\n<span style=\"font-weight: 400;\">‘Quad’ meaning quadruple - </span><i><span style=\"font-weight: 400;\">quattuor</span></i> <span style=\"font-weight: 400;\">or 4 &amp;</span> <i><span style=\"font-weight: 400;\">caput </span></i><span style=\"font-weight: 400;\">meaning ‘head’</span>\n\n<span style=\"font-weight: 400;\">‘Femoris’ meaning relating to the femur or thigh bone. </span>\n<h2></h2>\n<span style=\"font-weight: 400;\">This group is made up of 4 muscles….or maybe 5….or 6…!?!? Read on...</span>\n<h2></h2>\n<h2><b>Rectus Femoris</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Meaning ‘</span><i><span style=\"font-weight: 400;\">straight’</span></i><span style=\"font-weight: 400;\"> &amp; femur related.</span>\n\n<span style=\"font-weight: 400;\">The only one in this group to cross 2 joints as opposed to 1. Reaching from the AIIS (anterior inferior iliac spine - feel your most pokey out front hip bone, then this prominence is just below it) to the patella (kneeling bone) ligament/ tibial (shin bone) tuberosity to both flex the hip AND extend the knee…..busy busy busy!!</span>\n<h2></h2>\n<img class=\"aligncenter wp-image-26107\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_309794156-scaled-1.jpg\" alt=\"\" width=\"273\" height=\"364\" />\n<h2></h2>\n&nbsp;\n<h2><b>Vastus Lateralis (or Vastus Externus)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">‘</span><i><span style=\"font-weight: 400;\">Vastus</span></i><span style=\"font-weight: 400;\">’ meaning vast or immense &amp; positioned laterally or externally. </span>\n\n<span style=\"font-weight: 400;\">Technically the only muscle of the lateral thigh, its back (posterior) edge lies next to </span><i><span style=\"font-weight: 400;\">bicep femoris</span></i><span style=\"font-weight: 400;\"> (one of the hamstrings - coming up) &amp; it lies deep to that ITB. </span>\n\n<span style=\"font-weight: 400;\">Tracking from linea aspera, gluteal tuberosity, greater trochanter to the tibial tuberosity to extend the knee…...go back to each one of these prominences &amp; press your finger onto each one while visualising the muscle’s placement...go on, try it….</span>\n<h2></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-26106\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_1401205709-scaled-1.jpg\" alt=\"\" width=\"346\" height=\"346\" />\n<h2></h2>\n<h2><b>Vastus Medialis (or Vastus Internus)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The word’s meaning, I am pretty confident you can work out now right!? ‘</span><i><span style=\"font-weight: 400;\">Vastus Medialis’....</span></i><span style=\"font-weight: 400;\">have you read everything up to this point?</span>\n\n<span style=\"font-weight: 400;\">It’s inside the thigh with a kind of tear drop shape this little beauty is also known as VMO or </span><i><span style=\"font-weight: 400;\">vastus medialis oblique</span></i><span style=\"font-weight: 400;\">. </span>\n\n<span style=\"font-weight: 400;\">Often I get asked “</span><i><span style=\"font-weight: 400;\">how do I grow my VMO?”.....</span></i><span style=\"font-weight: 400;\">well it attaches from the medial lip of linea aspera to that tibial tuberosity to also extend the knee….so do that….no its never that simple…..or is it? </span>\n<h2></h2>\n&nbsp;\n<h2><b>Vastus Intermedius </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Same as above……you know don’t you!?!?</span>\n\n<span style=\"font-weight: 400;\">Central on the thigh, in the middle &amp; deep to rectus femoris, attaching anterior/lateral shaft of the femur to reach…... GUESS…?????</span>\n<h2></h2>\n<span style=\"font-weight: 400;\">….that tibial tuberosity...yup…. to also extend the knee!</span>\n<h2></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-26108\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_309793826-scaled-1.jpg\" alt=\"\" width=\"263\" height=\"350\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What a team eh! </span>\n<h2></h2>\n<span style=\"font-weight: 400;\">But wait! </span>\n<h2></h2>\n<span style=\"font-weight: 400;\">They have some cousins that can appear in some human legs….</span>\n<h2></h2>\n&nbsp;\n<h2><b>The 5th &amp; 6th Quads!?!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now the reports of a 5th &amp; 6th ‘quad’ seem nonsensical really since the name really indicates just 4 muscles so let’s look at them, what they ACTUALLY do &amp; if they can be described as extra quads…..?</span>\n<h2></h2>\n&nbsp;\n<h2><b>Tensa Vastus Intermedius</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Tenses, is vast &amp; is in the middle!)</span>\n\n<span style=\"font-weight: 400;\">Please do read these publications to understand Grob’s work better….</span>\n\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/26732825/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">(Grob et al 2016) </span></a>\n\n<span style=\"font-weight: 400;\">Staring at the proximal femur at the anterior greater trochanter anterior to (or in front of) vastus intermedius &amp; deep to rectus femoris, it also joins the quadricep tendon, medial patella to medialise the action &amp; ‘tenses’ on the aponeurosis (sheet of pearly white fibrous tissue) of vastus medialis! </span>\n<h2></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-26109\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/TENSA-VASTUS-INTERMEDIUS-1.png\" alt=\"\" width=\"315\" height=\"303\" />\n\n&nbsp;\n\n&nbsp;\n<h2><b>Articularis Genus</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Articularis</span></i><span style=\"font-weight: 400;\"> means to join with a joint - </span><i><span style=\"font-weight: 400;\">genus</span></i><span style=\"font-weight: 400;\"> means relating a family line or genetic, borrowed from latin for </span><i><span style=\"font-weight: 400;\">birth or origin</span></i><span style=\"font-weight: 400;\">, but relates also to the knee as in this case.</span>\n\n<span style=\"font-weight: 400;\">Originating from the lower (distal) front (anterior) part of the femur to then reach down to the suprapatellar bursa to lift this bursa out of the way during knee extension - how clever!!</span>\n\n&nbsp;\n\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6133144/#:~:text=The%20insertion%20of%20this%20muscle,%2C2%2C8%2D11.\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">(Grob et al 2017)</span></a>\n<h2></h2>\n<span style=\"font-weight: 400;\">So technically they are collaborating with the 4 major quads &amp; while they don’t actually extend the knee, they do play a role in the knee extensor’s performance. </span>\n<h2></h2>\n<img class=\"aligncenter wp-image-26110\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/ARTICULARIS-GENUS-1.jpg\" alt=\"\" width=\"255\" height=\"340\" />\n<h1></h1>\n<h1><b>Posterior knee </b></h1>\n<h2></h2>\n<h2><b>The ‘Hamstring’ Group </b></h2>\n<h2></h2>\n<span style=\"font-weight: 400;\">This group is positioned between vastus lateralis (see above) &amp; adductor magnus (see Pelvis HERE)</span>\n\n<i><span style=\"font-weight: 400;\">18th centurion butchers would hang the pig from the tendons at the back of the knee - hence ‘ham-string’ (Andrew Biel, 2010)</span></i>\n<h2></h2>\n<h2><b>Bicep Femoris </b></h2>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Bicep</span></i><span style=\"font-weight: 400;\"> meaning 2 heads - </span><i><span style=\"font-weight: 400;\">Femoris</span></i><span style=\"font-weight: 400;\"> links it to the femur </span>\n\n<span style=\"font-weight: 400;\">This dude has both long &amp; short heads!  Both attaching to the fibula head &amp; then…..</span>\n\n<span style=\"font-weight: 400;\">The Long head attaches to the medial ischial tuberosity </span>\n\n<span style=\"font-weight: 400;\">While the short head - attaches to the femur.</span>\n\n<span style=\"font-weight: 400;\">This anatomy means it/they will flex the knee, laterally rotate the flexed knee AND assist hip extension! Phew! Its clear why these muscles need some attention in our clients strength programme with all this going on right!?</span>\n<h2></h2>\n<img class=\"aligncenter wp-image-26111\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/BICEP-FEM-LONG-shutterstock_303082511-scaled-1.jpg\" alt=\"\" width=\"254\" height=\"339\" /><img class=\"aligncenter wp-image-26112\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/BICEP-FEM-SHORT-shutterstock_303082577-scaled-1.jpg\" alt=\"\" width=\"253\" height=\"337\" />\n<h2></h2>\n<h2><b>Semimembranosus </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The most medial hammie, flatter, wider &amp; most ‘</span><i><span style=\"font-weight: 400;\">membranous’</span></i><span style=\"font-weight: 400;\"> looking when you study its anatomy.</span>\n\n<span style=\"font-weight: 400;\">Travelling from that ischial tuberosity to the back (posterior) of the medial nobly bit (condyle) of the tibia (shin bone). </span>\n\n<span style=\"font-weight: 400;\">This also allows it to flex the knee, medially rotate when the knee is flexed AND…...yep…. assist hip extension….pheweeee!</span>\n<h2></h2>\n<img class=\"aligncenter wp-image-26113\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/SEMIMEM-shutterstock_303066836-scaled-1.jpg\" alt=\"\" width=\"234\" height=\"312\" />\n<h2></h2>\n<h2><b>Semitendinosus </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The thicker but narrower hammie hence named as more ‘</span><i><span style=\"font-weight: 400;\">tendinous</span></i><span style=\"font-weight: 400;\">’...</span>\n\n<span style=\"font-weight: 400;\">Attached from that sit bone (ischial tuberosity) to the upper (proximal) inner (medial) shaft of the tibia (shin bone) to …..yup you guessed it….flex the knee, extend the hip &amp; help lateral rotation when the knee is flexed.</span>\n<h2></h2>\n<img class=\"aligncenter wp-image-26114\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/SEMITEN-shutterstock_293552699-scaled-1.jpg\" alt=\"\" width=\"234\" height=\"312\" />\n<h2></h2>\n<h2><strong>Popliteus</strong></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">An actual ‘knee’ muscle!</span><span style=\"font-weight: 400;\"> S</span>\n\n<span style=\"font-weight: 400;\">A small muscle ‘popped’ into the back of the knee under gastroc it starts</span><span style=\"font-weight: 400;\"> at the lateral (outer edge) condyle (bony bit) of the femur then</span><span style=\"font-weight: 400;\"> grabs onto the back of the tibia.</span>\n\n<span style=\"font-weight: 400;\">While small, thin, flat, triangular it is a deep muscle &amp; could kinda help the iliotibial band in a way.....have a look &amp; see what you think..!? </span>\n\n<span style=\"font-weight: 400;\">Positioned at the back &amp; lateral it helps medial rotation of the flexed knee</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Popliteus decides its role in movement depending upon the position of the lower extremity (leg)....although a weak flexor of the knee it’s really important for ‘unlocking’ the knee joint from an extended position. </span><span style=\"font-weight: 400;\">Also occasionally (rarely in fact) an additional muscle called the popliteus minor is seen arising from the femur into the posterior ligament!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Wonder if that would alter anything in terms of movement?</span>\n<h2></h2>\n<img class=\"aligncenter wp-image-26882\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_440565091_635713970809-scaled-1.jpg\" alt=\"\" width=\"386\" height=\"514\" />\n<h2><b>Pes Anserinus Tendon</b></h2>\n<h2></h2>\n<span style=\"font-weight: 400;\">This structure requires a mention as you will see...</span>\n<h2></h2>\n<b>Pes (means foot) anserinus</b><span style=\"font-weight: 400;\"> (relating to goose) so this ‘</span><i><span style=\"font-weight: 400;\">goosefoot</span></i><span style=\"font-weight: 400;\">’ is the description of where </span><b>tendons</b><span style=\"font-weight: 400;\"> of three muscles that insert onto the proximal tibia. Namely sartorius, gracilis &amp; semitendinosus.</span>\n\n<span style=\"font-weight: 400;\">They are often described as ‘guy ropes’.</span>\n<h2></h2>\n&nbsp;\n<h1><b>Medial Knee</b></h1>\n<h2><b>Adductors - see Pelvis </b></h2>\n<h2></h2>\n&nbsp;\n<h1><b>Lateral knee</b></h1>\n<h2><b>Abductors - see Pelvis</b></h2>\n&nbsp;\n\n&nbsp;\n<h1><b>Knee Joint Actions </b></h1>\n<h2></h2>\n<span style=\"font-weight: 400;\">Flexion </span>\n\n<span style=\"font-weight: 400;\">Extension </span>\n\n<span style=\"font-weight: 400;\">Note: In knee flexion the tibia can rotate medially &amp; laterally </span>\n\n<span style=\"font-weight: 400;\">Also if you read </span><i><span style=\"font-weight: 400;\">Bruunstromm’s</span></i><span style=\"font-weight: 400;\"> knee kinematics (</span><i><span style=\"font-weight: 400;\">Clinical Kinesiology</span></i><span style=\"font-weight: 400;\">) - flexion at the knee involves a slide, roll, hinge combination! </span>\n<h2>---------------------------------------------------------------------</h2>\n<h2>Are you enjoying these blogs?</h2>\n<h2>Would you like to invest in CPD videos online?</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/pelvic-biomechanics-practical-anatomy-part-1-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\"> CLICK HERE FOR &gt;&gt;PELVIC ANATOMY</a></h2>\n<h2>OR</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/spine-biomechanics-practical-anatomy-part-2-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\">CLICK HERE FOR &gt;&gt;SPINE ANATOMY</a></h2>\n<h2>OR</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/shoulder-biomechanics-practical-anatomy-part-3-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\">CLICK HERE FOR &gt;&gt;SHOULDER ANATOMY</a></h2>\n<h2>&amp;</h2>\n<h2>KNEE ANATOMY &gt;&gt; Coming Soon!!</h2>','Knee Biomechanics Part 8 -  The Muscles of the Knee','','draft','closed','closed','','knee-biomechanics-part-8-the-muscles-of-the-knee','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=26101',0,'post','',0),(26106,0,'2021-02-02 12:55:27','2021-02-02 12:55:27','','shutterstock_1401205709','','inherit','open','closed','','shutterstock_1401205709-2','','','2021-02-02 12:55:27','2021-02-02 12:55:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_1401205709-scaled-1.jpg',0,'attachment','image/jpeg',0),(26107,0,'2021-02-02 12:56:35','2021-02-02 12:56:35','','shutterstock_309794156','','inherit','open','closed','','shutterstock_309794156','','','2021-02-02 12:56:35','2021-02-02 12:56:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_309794156-scaled-1.jpg',0,'attachment','image/jpeg',0),(26108,0,'2021-02-02 12:57:58','2021-02-02 12:57:58','','Medically,Accurate,Illustration,Of,The,Vastus,Intermedius','','inherit','open','closed','','medicallyaccurateillustrationofthevastusintermedius','','','2021-02-02 12:57:58','2021-02-02 12:57:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_309793826-scaled-1.jpg',0,'attachment','image/jpeg',0),(26109,0,'2021-02-02 12:58:55','2021-02-02 12:58:55','','TENSA VASTUS INTERMEDIUS','','inherit','open','closed','','tensa-vastus-intermedius-2','','','2021-02-02 12:58:55','2021-02-02 12:58:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/TENSA-VASTUS-INTERMEDIUS-1.png',0,'attachment','image/png',0),(26110,0,'2021-02-02 13:06:51','2021-02-02 13:06:51','','ARTICULARIS GENUS','','inherit','open','closed','','articularis-genus-2','','','2021-02-02 13:06:51','2021-02-02 13:06:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/ARTICULARIS-GENUS-1.jpg',0,'attachment','image/jpeg',0),(26111,0,'2021-02-02 13:17:08','2021-02-02 13:17:08','','Medically,Accurate,Muscle,Illustration,Of,The,Biceps,Femoris,Longus','','inherit','open','closed','','medicallyaccuratemuscleillustrationofthebicepsfemorislongus','','','2021-02-02 13:17:08','2021-02-02 13:17:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/BICEP-FEM-LONG-shutterstock_303082511-scaled-1.jpg',0,'attachment','image/jpeg',0),(26112,0,'2021-02-02 13:17:24','2021-02-02 13:17:24','','Medically,Accurate,Muscle,Illustration,Of,The,Biceps,Femoris,Short','','inherit','open','closed','','medicallyaccuratemuscleillustrationofthebicepsfemorisshort','','','2021-02-02 13:17:24','2021-02-02 13:17:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/BICEP-FEM-SHORT-shutterstock_303082577-scaled-1.jpg',0,'attachment','image/jpeg',0),(26113,0,'2021-02-02 13:18:37','2021-02-02 13:18:37','','Medically,Accurate,Muscle,Illustration,Of,The,Semimembranosus','','inherit','open','closed','','medicallyaccuratemuscleillustrationofthesemimembranosus','','','2021-02-02 13:18:37','2021-02-02 13:18:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/SEMIMEM-shutterstock_303066836-scaled-1.jpg',0,'attachment','image/jpeg',0),(26114,0,'2021-02-02 13:19:15','2021-02-02 13:19:15','','Medical,Accurate,Illustration,Of,The,Semitendinosus','','inherit','open','closed','','medicalaccurateillustrationofthesemitendinosus','','','2021-02-02 13:19:15','2021-02-02 13:19:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/SEMITEN-shutterstock_293552699-scaled-1.jpg',0,'attachment','image/jpeg',0),(26154,0,'2021-02-05 14:46:35','2021-02-05 14:46:35','','David_Lloyd_Photo','','inherit','open','closed','','david_lloyd_photo','','','2021-02-05 14:46:35','2021-02-05 14:46:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/David_Lloyd_Photo-1.jpg',0,'attachment','image/jpeg',0),(26155,0,'2021-02-05 14:49:05','2021-02-05 14:49:05','','Screenshot 2021-02-05 at 13.33.11','','inherit','open','closed','','screenshot-2021-02-05-at-13-33-11','','','2021-02-05 14:49:05','2021-02-05 14:49:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-05-at-13.33.11-1.png',0,'attachment','image/png',0),(26156,0,'2021-02-05 14:50:39','2021-02-05 14:50:39','','image','','inherit','open','closed','','image-6','','','2021-02-05 14:50:39','2021-02-05 14:50:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/image-1.png',0,'attachment','image/png',0),(26157,0,'2021-02-05 14:59:16','2021-02-05 14:59:16','','Screenshot 2021-02-05 at 14.59.03','','inherit','open','closed','','screenshot-2021-02-05-at-14-59-03','','','2021-02-05 14:59:16','2021-02-05 14:59:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-05-at-14.59.03-1.png',0,'attachment','image/png',0),(26161,0,'2021-02-06 08:39:03','2021-02-06 08:39:03','','emma-simpson-mNGaaLeWEp0-unsplash','','inherit','open','closed','','emma-simpson-mngaalewep0-unsplash','','','2021-02-06 08:39:03','2021-02-06 08:39:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/emma-simpson-mNGaaLeWEp0-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(26190,0,'2021-02-07 14:17:42','2021-02-07 14:17:42','','FUNDAMENTAL QUIZ ANSWERS','','inherit','open','closed','','fundamental-quiz-answers-5','','','2021-02-07 14:17:42','2021-02-07 14:17:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/FUNDAMENTAL-QUIZ-ANSWERS-1-1-1.pdf',0,'attachment','application/pdf',0),(26239,0,'2021-02-08 13:49:00','2021-02-08 13:49:00','','matthew-ball-3wW2fBjptQo-unsplash','','inherit','open','closed','','matthew-ball-3ww2fbjptqo-unsplash','','','2021-02-08 13:49:00','2021-02-08 13:49:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/matthew-ball-3wW2fBjptQo-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(26456,3,'2023-10-13 15:51:05','2023-10-13 15:51:05','<strong>“Move Your Spine” (#MoveYourSpine)</strong> was announced as the theme of World Spine Day 16th October 2023. So I wanted to share some simple ideas for assessing and improving your spine mobility as a way of celebrating our efforts to improve spine mobility awareness, health and to contribute to reducing spine stiffness, discomfort and ultimately pain.\n<h2>Did you know...?</h2>\n<blockquote><em>An estimated one billion people suffer with spinal pain with 540 million people at any one time. Low back pain remains the leading cause of years lived with disability on the planet. Spinal pain and disability are more prevalent than cancer, stroke, heart disease, diabetes, and Alzheimer’s Disease combined. </em></blockquote>\n*As always this comes with a caveat that anyone beginning a new movement programme should seek the guidance of their qualified local Biomechanics Coach or movement practitioner in advance and this is not the only solution for back pain.\n\n&nbsp;\n<h2>Spine Flexion &amp; Extension Tests</h2>\n<img class=\"aligncenter wp-image-26458\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.43.34-1.png\" alt=\"\" width=\"745\" height=\"263\" />\n\nDuring lockdown I noticed my own spinal mobility reduced considerably due to the increased hours I was spending at a desk for work while also having limited access to my usual movement programme. Although I didn\'t have back pain, I did experience the discomfort of spine stiffness which can be an indicator that I may be at risk of pain if I didn\'t change something soon. So I began to take myself through assessments and exercises to improve my spine health.\n\nFirstly I started by filming/photographing some spine flexion &amp; extension positions that I was aiming to improve as part of my iMoveFreely flow movement routine. This meant I had my first and most relevant benchmarks for my spine health project. They were the positions in which I had noticed my lack of movement quality so had relevance.\n\nIs there a position you feel is particularly limited? Maybe it\'s a squat or some other posture? Can you capture a benchmark image of this position to monitor your progress?<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Next I wanted to assess how much of the limitations I was feeling were coming from my spine specifically.....\n\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-26457\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.45.07-1.png\" alt=\"\" width=\"610\" height=\"337\" /></p>\n&nbsp;\n\nSo I assessed my spine flexion &amp; extension in a seated so more isolated way by capturing images of my spines curve in flexion and extension. This removed at least some of the \'cheat\' mechanisms that can make my movement look better than it is. By fixing my lower body into this seated position it \'purifies\' spine flexion and extension highlighting a more pure image of the movement I can do in this plane without other things \'getting in the way\'....like tight nerves for example.\n\nCan you capture an image of your spine curves while seated in 90 degrees of hip flexion, by placing your fists on top of thighs, aiming shoulders towards thighs?\n\nThen an image of your natural ability to produce spine extension form the same position?\n\nNotice do you feel pain? stiffness? do you flex and extend nicely with a C shaped curve? do your shoulders reach your thumbs easily?\n\n&nbsp;\n<h2>Spine Lateral Flexion &amp; QL Hinge Tests</h2>\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-26459\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.44.24-1.png\" alt=\"\" width=\"724\" height=\"389\" /></p>\n&nbsp;\n\nNext we can test our QL for \'hinges\' along with symmetry in spine lateral flexion. If you can capture an image of the curve in your spinous processes do you see a smooth curve from between the PSIS? if not what do you see? do you notice a hinge point? how does it feel do perform this movement? is there asymmetry?<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Can you spot any spinal hinges in my spine from a few years ago here in this image above? could the QL be in a subclinical spasm therefore producing a hinge rather than a smooth C shaped curve?<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />What do you think?\n\n&nbsp;\n<h2>Spine Thoracic Rotation Test</h2>\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-26460\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.46.08-1.png\" alt=\"\" width=\"753\" height=\"590\" /></p>\n&nbsp;\n\nFinally we can assess thoracic rotation...\n\nOnce again seated to limited movement at the pelvis, if we \'fix\' the scapular position, to avoid scapular rotation giving us a false measurement of thoracic rotation, we can observe how far our can spine rotate in either direction. <br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />If we take into account typical thoracic joint ranges they total around 57 degrees in one direction from C7 to L1...Notice the spinal columns degrees of rotation...not using the elbow line since my elbows are drawn back to limit scapular rotation.<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Do you have symmetry left to right...? Also how does it feel comparing one side to the other? any discomfort?<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />To measure rotation in degrees you could imagine you\'re sitting on top of a circle and taking the head with you in the movement...how many degrees of spine rotation do you think you can do comfortably without forcing movement? Is it more in one direction than the other?<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />45 deg? 50 deg? 55 deg?<br class=\"ac-designer-copy\" />or<br class=\"ac-designer-copy\" />Much less?\n\n&nbsp;\n<h2>Spine Mobility Exercises</h2>\nTo improve spine mobility based on your test results can be quite simple (*consult your local Biomechanics Coach or a qualified practitioner prior to starting any new exercise programme)\n\nIf you feel limited by spine flexion do more spine flexion...maybe 3 sets of 10-15\n\n<img class=\"size-medium wp-image-36992 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/02/MG_0073-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\nIf spine extension is the one you feel tension in so more spine extension by lying down for some pelvic tilts...also around 3 sets of 10-15...\n\n<img class=\"size-medium wp-image-36993 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/02/MG_0074-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\nFor lateral flexion use wall gliding ....one of my favourites...2 sets of 8 reps each side, leaning against a wall then \'gliding\' the hips underneath the rib cage very slowly and through a very small range of motion to affect the QL muscle gently...<img class=\"size-medium wp-image-36999 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/02/MG_9964-1-1-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\n\n&nbsp;\n\nFor rotation....guess what....yup you guessed it rotate more!!! Again 3 sets of 10-15....\n\n<img class=\"size-medium wp-image-36996 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/02/MG_0077-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /><img class=\"size-medium wp-image-36995 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/02/MG_0076-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /><img class=\"size-medium wp-image-36994 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/02/MG_0075-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\nSo in celebration of World Spine Day who will join me in the <span class=\"ac-designer-copy\">Spine Mobility Project?</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Due to current lifestyle trends many of us are experiencing more limitations in our spines natural movement which can initially start with stiffness and tightness like me but this could eventually result in other conditions, since the spine is designed to move!<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Why not try the Spine Mobility Project and share it with your clients, friends and colleagues to contribute to a world where spine health improves.....why not send us your results???\n\n&nbsp;\n\n<strong><em>Referenced</em></strong>\n\n<i>World spine day</i> (no date) <i>World Spine Day</i>. Available at: http://www.worldspineday.org/ (Accessed: 06 October 2023).\n<div></div>','Spine Mobility Project - World Spine day','','draft','closed','closed','','spine-mobility-project','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',0,'https://www.biomechanicseducation.com/?p=26456',0,'post','',0),(26457,0,'2021-02-22 15:42:19','2021-02-22 15:42:19','','Screenshot 2021-02-22 at 14.45.07','','inherit','open','closed','','screenshot-2021-02-22-at-14-45-07','','','2021-02-22 15:42:19','2021-02-22 15:42:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.45.07-1.png',0,'attachment','image/png',0),(26458,0,'2021-02-22 15:42:40','2021-02-22 15:42:40','','Screenshot 2021-02-22 at 14.43.34','','inherit','open','closed','','screenshot-2021-02-22-at-14-43-34','','','2021-02-22 15:42:40','2021-02-22 15:42:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.43.34-1.png',0,'attachment','image/png',0),(26459,0,'2021-02-22 15:42:58','2021-02-22 15:42:58','','Screenshot 2021-02-22 at 14.44.24','','inherit','open','closed','','screenshot-2021-02-22-at-14-44-24','','','2021-02-22 15:42:58','2021-02-22 15:42:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.44.24-1.png',0,'attachment','image/png',0),(26460,0,'2021-02-22 15:43:26','2021-02-22 15:43:26','','Screenshot 2021-02-22 at 14.46.08','','inherit','open','closed','','screenshot-2021-02-22-at-14-46-08','','','2021-02-22 15:43:26','2021-02-22 15:43:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.46.08-1.png',0,'attachment','image/png',0),(26468,0,'2021-02-23 07:04:48','2021-02-23 07:04:48','','WEBSITE PDF SPINE LINKS copy','','inherit','open','closed','','website-pdf-spine-links-copy','','','2021-02-23 07:04:48','2021-02-23 07:04:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/WEBSITE-PDF-SPINE-LINKS-copy-2.pdf',0,'attachment','application/pdf',0),(26476,0,'2021-02-23 13:40:56','2021-02-23 13:40:56','','WEBSITE PDF SPINE LINKS copy','','inherit','open','closed','','website-pdf-spine-links-copy-2','','','2021-02-23 13:40:56','2021-02-23 13:40:56','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/WEBSITE-PDF-SPINE-LINKS-copy-1-1.pdf',0,'attachment','application/pdf',0),(26530,0,'2021-02-28 15:24:37','2021-02-28 15:24:37','','Workshop Covid 19 questionnaire LINK','','inherit','open','closed','','workshop-covid-19-questionnaire-link','','','2021-02-28 15:24:37','2021-02-28 15:24:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/Workshop-Covid-19-questionnaire-LINK-1-1.pdf',0,'attachment','application/pdf',0),(26532,0,'2021-02-28 18:27:33','2021-02-28 18:27:33','','Workshop feedback questionnaire LINK','','inherit','open','closed','','workshop-feedback-questionnaire-link','','','2021-02-28 18:27:33','2021-02-28 18:27:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/Workshop-feedback-questionnaire-LINK-1-1.pdf',0,'attachment','application/pdf',0),(26535,0,'2021-02-28 20:28:57','2021-02-28 20:28:57','','Clinical questionnaire guidance','','inherit','open','closed','','clinical-questionnaire-guidance-2','','','2021-02-28 20:28:57','2021-02-28 20:28:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/Clinical-questionnaire-guidance-1-1.pdf',0,'attachment','application/pdf',0),(26570,0,'2021-03-03 19:43:33','2021-03-03 19:43:33','','53FD148C-1E3B-4EDB-9777-00D3DB9B3B15','','inherit','open','closed','','53fd148c-1e3b-4edb-9777-00d3db9b3b15','','','2021-03-03 19:43:33','2021-03-03 19:43:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/53FD148C-1E3B-4EDB-9777-00D3DB9B3B15-1.png',0,'attachment','image/png',0),(26572,0,'2021-03-03 19:50:11','2021-03-03 19:50:11','','Screenshot 2021-03-03 at 19.49.29','','inherit','open','closed','','screenshot-2021-03-03-at-19-49-29','','','2021-03-03 19:50:11','2021-03-03 19:50:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2021-03-03-at-19.49.29-1.png',0,'attachment','image/png',0),(26573,0,'2021-03-03 19:52:43','2021-03-03 19:52:43','','E640A33D-16F3-400E-AB36-F9CB496F07E4','','inherit','open','closed','','e640a33d-16f3-400e-ab36-f9cb496f07e4','','','2021-03-03 19:52:43','2021-03-03 19:52:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/E640A33D-16F3-400E-AB36-F9CB496F07E4-1.png',0,'attachment','image/png',0),(26749,3,'2021-03-15 20:58:36','2021-03-15 20:58:36','<span style=\"font-weight: 400;\">A very relevant topic right now since Covid-19 arrived is that it is a virus that specifically affects our respiratory system. One of the side effects is a stiffening of the lung tissue resulting in a thickening, or even scarring, that reduces our capacity to pull in air which then leads to reduced O2 (oxygen). This can then result in breathlessness &amp; de-conditioning due to inactivity &amp; this can also lead to an increase in anxiety levels for some, which could bring about hyperventilation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So a phasic approach to Covid-Rehab, OR even to those who have simply been restricted into moving less &amp; therefore exerting themselves less, means we should possibly ALL </span><span style=\"font-weight: 400;\">consider gaining a better understanding of our client’s breath biomechanics.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The better we understand breath biomechanics, the better we can support our clients &amp; ourselves in rehabilitating our breath strength &amp; O2 uptake capacity. Combine this with an understanding of the mind state of our clients &amp; the latest evidence about the physiology of Covid-19, the better equipped we will be to provide an up to date duty of care. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can be as simple as looking at the anatomy &amp; then training in Covid rehab specifically (which I strongly recommend) but this blog is to simply explore in more detail the anatomy &amp; biomechanics of breath.</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-26753\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/Screenshot-2021-03-15-at-20.51.25-1.png\" alt=\"\" width=\"1488\" height=\"960\" />\n\n&nbsp;\n<h2><b>What happens when we breathe?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The biomechanics of breathing is to enable us to pull O2 into the lungs via the mouth to then be taken around the body.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So the reason we breathe is to deliver O2 to the cells around our bodies. This distribution of O2 via the cardiovascular system should be delivered to anywhere that requires it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have 2 lungs inside the thoracic cavity, behind the ribs &amp; on top of the abdominal cavity which in turn is on top of the pelvic cavity. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26754\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/shutterstock_1811918470-scaled-1.jpg\" alt=\"\" width=\"389\" height=\"389\" />\n\n&nbsp;\n<h3><strong>Now these lungs need to stretch!</strong></h3>\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">The heart also has to work harder if the lungs stretch less or have less range of movement, ie; if they are stiffer from the effects of Covid-19. This can also often be combined with reduced activity levels.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The thoracic cavity gets bigger to pull O2 in, so the ribs need to flare &amp; therefore the thoracic spine needs to move/extend to allow the ribs to flare. This is because the lungs change shape during breathing like balloon inflating for example. </span>\n\n<span style=\"font-weight: 400;\">This also means the thoracic spine changes shape to allow the walls of the lungs to all move &amp; expand.</span>\n\n&nbsp;\n<h3><strong>Breathing alone is a ‘shape changer’ </strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if we think in shapes or breathing biomechanics the shoulders lift &amp; the ribs lift a bit like blinds opening. But rib circumference around the lungs also increases due to this rib flare too. </span>\n\n<span style=\"font-weight: 400;\">The diaphragm, a hump of muscle below, can contract &amp; drop down wards to allow more space. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The volume of breath we suck in will dictate the shape size. So the full range of motion of the lungs is based on volume of O2 or VO2.</span>\n\n&nbsp;\n<h2><b>What’s a natural breath?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This depends upon the activity!</span>\n\n<span style=\"font-weight: 400;\">The more active we are the bigger the shapes are &amp; at a faster rate. However if/when we are less active then slower &amp; smaller ranges are adequate for a ‘natural’ breath. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As the diaphragm drops down, the belly will move forward or distend.</span>\n\n<span style=\"font-weight: 400;\">If you increase load downwards towards the pelvic floor, then it will tense against the load &amp; therefore also increase the pelvic tension. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The breath required also depends upon the state of the tissues, hence consideration of </span><i><span style=\"font-weight: 400;\">long covid </span></i><span style=\"font-weight: 400;\">symptoms or breath rehabilitation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While normally we should simply practise a variety for cross training in preparation for a variety of movements, what is more relevant today is rehabilitation of the lung tissue using breathing techniques alongside our regular movement improvement techniques. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By practicing breathing in all motions &amp; movements with training in specific breath techniques we can support clients back to improved health, increase confidence &amp; get our communities moving again.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine being in a chair all day &amp; how this might affect our breathing shapes as it confines us to the same small ranges. Imagine a ‘tight’ diaphragm due to limited movement practice &amp; possibly the same for the pelvic floor, or a combination of these, then add </span><i><span style=\"font-weight: 400;\">long Covid</span></i><span style=\"font-weight: 400;\">. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If our movement scope stays the same all the time then so will our breathing requirement. However we are likely to need to re-train the intercostal muscles that have been unused/un-stretched &amp; so we could be missing a third of our space option! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As with any movement we really need a ‘reflexive’ response to movement &amp; breath so should practise variety </span>\n\n&nbsp;\n<h2><b>So What?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). Get a Covid Rehabilitation CPD under your belt! </span>\n\n<span style=\"font-weight: 400;\">Learn about the effects of the virus on both the vulnerable AND the ‘fit &amp; healthy’. This is an ongoing category of research &amp; we need to stay ahead of the game when it comes to understanding how to increase confidence in us as practitioners from….. </span>\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Clients</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Employers</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Government </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">2). By understanding breath biomechanics we can add in appropriate movement improvement techniques related to it! </span>\n\n<span style=\"font-weight: 400;\">Specific breath training, thoracic mobility &amp; intrinsic muscular energy techniques (core/trunk/pelvis)</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-26755\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/shutterstock_1711824001-scaled-1.jpg\" alt=\"\" width=\"2560\" height=\"1707\" />\n\n&nbsp;\n<h1></h1>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/imovefreely-3/\" target=\"_blank\" rel=\"noopener\"><b><i>iMoveFreely Reconditioning Programme</i></b></a></h1>\n<a href=\"https://www.biomechanicseducation.com/imovefreely-3/\" target=\"_blank\" rel=\"noopener\">BOOK NOW&gt;&gt;HERE</a>\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A progressive 6 week reconditioning exercise plan to increase energy levels, muscle tone &amp; movement quality</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A movement programme that includes breathing techniques to reduce lung stiffness</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Designed to gradually improve connective tissue tolerance for reduced risk of injury &amp; reduction in aches/pains.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Perfect for clients/participants experiencing long covid symptoms </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Perfect for clients/participants with chronic conditions </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Perfect for increasing confidence in potential clients/participants </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A great complement to the </span><a href=\"https://www.futurefit.co.uk/fitness-courses/health-and-wellbeing-courses/covid-rehabilitation-course/\" target=\"_blank\" rel=\"noopener\"><b><i>Future Fit Training Covid Rehabilitation Course 50% </i></b></a></li>\n</ul>\n&nbsp;','Breath Biomechanics','','draft','closed','closed','','breath-biomechanics','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=26749',0,'post','',0),(26750,0,'2021-03-15 20:48:43','2021-03-15 20:48:43','','Young,Girl,Does,Breathing,Exercises,In,A,Gym,With,Her','','inherit','open','closed','','younggirldoesbreathingexercisesinagymwithher','','','2021-03-15 20:48:43','2021-03-15 20:48:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/shutterstock_1744603634-scaled-1.jpg',0,'attachment','image/jpeg',0),(26752,0,'2021-03-15 20:50:51','2021-03-15 20:50:51','','Green,Lungs,Of,Planet,Earth.,3d,Rendering,Of,A,Clean','','inherit','open','closed','','greenlungsofplanetearth-3drenderingofaclean','','','2021-03-15 20:50:51','2021-03-15 20:50:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/shutterstock_1550458109-scaled-1.jpg',0,'attachment','image/jpeg',0),(26753,0,'2021-03-15 20:51:48','2021-03-15 20:51:48','','Screenshot 2021-03-15 at 20.51.25','','inherit','open','closed','','screenshot-2021-03-15-at-20-51-25','','','2021-03-15 20:51:48','2021-03-15 20:51:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/Screenshot-2021-03-15-at-20.51.25-1.png',0,'attachment','image/png',0),(26754,0,'2021-03-15 20:53:36','2021-03-15 20:53:36','','The,Diaphragm,Muscle,In,Isolation,Human,Anatomy,3d,Rendering','','inherit','open','closed','','thediaphragmmuscleinisolationhumananatomy3drendering','','','2021-03-15 20:53:36','2021-03-15 20:53:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/shutterstock_1811918470-scaled-1.jpg',0,'attachment','image/jpeg',0),(26755,0,'2021-03-15 20:55:06','2021-03-15 20:55:06','','Young,Woman,With,N95,Face,Mask,Adding,Weights,To,The','','inherit','open','closed','','youngwomanwithn95facemaskaddingweightstothe','','','2021-03-15 20:55:06','2021-03-15 20:55:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/shutterstock_1711824001-scaled-1.jpg',0,'attachment','image/jpeg',0),(26882,0,'2021-03-25 11:07:00','2021-03-25 11:07:00','','3d,Rendered,,Medically,Accurate,Illustration,Of,The,Popliteus','','inherit','open','closed','','3drenderedmedicallyaccurateillustrationofthepopliteus','','','2021-03-25 11:07:00','2021-03-25 11:07:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_440565091_635713970809-scaled-1.jpg',0,'attachment','image/jpeg',0),(26957,3,'2021-03-30 13:30:35','2021-03-30 13:30:35','<h2><span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Through an endeavour to improve the quality of our questions we can often find the answer we are looking for.”</span></i></h2>\n<h2></h2>\n<h2><i><span style=\"font-weight: 400;\">“Great questions result in solutions rather than great answers!</span></i><span style=\"font-weight: 400;\">”  Rachel Frances Thomson, (2020)</span></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26962\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/benjamin-davies-JrZ1yE1PjQ0-unsplash-scaled-1.jpg\" alt=\"\" width=\"543\" height=\"362\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all know what SMART goal setting means, right?</span>\n\n<span style=\"font-weight: 400;\">Some of us also know how to identify a great research paper </span>\n\n<span style=\"font-weight: 400;\">However rarely do I get asked really great questions </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what is the question? Haha see what I did there….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Due to the nature of my social media posts &amp; based upon both my skills as a Biomechanics Coach, iMoveFreely Instructor &amp; also as a teacher of Biomechanics Education I get asked questions literally on a daily basis…..and I love it!</span>\n\n<span style=\"font-weight: 400;\">However due to the volume of common questions I decided rather than typing to respond to every single private message (which I do endeavour to do by the way) I would run a free live Biomechanics Q&amp;A though lockdown as a way to:</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Give back through the tough times while we all had the opportunity</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Save having to answer the same questions over &amp; over </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Offer a platform for open questioning around my specialist subject of intrinsic biomechanics </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As the questions poured in, usually in advance of the live Q&amp;A, I was able to digest the content of the question &amp; realised something that is common to when teaching in the classroom. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We might want to consider developing our questioning skills.   </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I can appreciate many people will post a question quickly since everything on social media is done with haste right?!</span>\n\n<span style=\"font-weight: 400;\">Yet I don\'t want to discourage questions coming so the intention of this blog is to demonstrate how to structure a really great question.</span>\n\n<span style=\"font-weight: 400;\">So let\'s explore what makes for a great question...</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26959\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/artem-maltsev-0CvHQ62gwY8-unsplash-scaled-1.jpg\" alt=\"\" width=\"345\" height=\"518\" />\n\n&nbsp;\n<h2><b>The Problem </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are two of the most common examples of framing for questions that I get asked are …</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“...What\'s your opinion on…?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“...What are your thoughts about…?</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are several problems with these types of questions….</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A cognitive bias can result in an individual\'s view of things which can therefore limit the information they are able to give. This information would likely also be based upon their own view of life, their experiences &amp; views </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">They are open to interpretation which means they may base their response upon incorrect assumption about the context</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">The lack of clarity about the actual problem they are trying to solve means there is a risk of incorrect or inappropriate advice being given</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I found myself doing during the LIVE Q&amp;A’s was ‘reframing’ some questions into a variety of contexts to offer ideas of how to find solutions to the problem or problems they were trying to solve. </span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26961\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/timothy-dykes-90uVYog2FKE-unsplash-scaled-1.jpg\" alt=\"\" width=\"558\" height=\"372\" />\n\n&nbsp;\n\n&nbsp;\n<h2><b>The Solution </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Even before the LIVE Q&amp;As, while teaching, it has always been apparent to me that it was more helpful to guide learners/practitioners towards improving their questions by asking them for more details.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">By understanding exactly the problem they are trying to solve or thinking about they often found they got to the answer without me having to give my ‘opinion’ or biased view based on assumption. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Opinion is all too commonly asked for &amp; given on social media &amp; can cloud reality / fact from personal bias or opinion. Personal opinion &amp; view has its place &amp; isn\'t always bad IF that is what you are looking for. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also discovering solutions can be more helpful than solid answers when learners have specified the actual problem they were trying to solve. This is often the case with gaining a deeper level of understanding clients bodies and anatomy since every-body is so different. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26964\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/windows-v94mlgvsza4-unsplash-scaled-1.jpg\" alt=\"\" width=\"567\" height=\"380\" />\n\n&nbsp;\n\n&nbsp;\n<h2><b>What techniques can we use to improve our questions?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly consider what the purpose of the question is. Then from here start developing your question into a SMART goal. By asking specific well defined, unambiguous and clear questions as you would with a client when they come for your advice. This gives you better information about what you actually want to achieve when seeking answers.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The goal therefore is creating specific, measurable, realistic questions at the very least. Then we might still want to add achievable &amp; time bound details should they be relevant.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26963\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/bruce-mars-xj8qrWvuOEs-unsplash-scaled-1.jpg\" alt=\"\" width=\"595\" height=\"396\" />\n<h2></h2>\n<h2></h2>\n<h2></h2>\n&nbsp;\n<h2><b>Good research asks SMART questions </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another way to learn about great questioning is to study research methods. Having recently signed up for the Movement Therapy Education Diploma I have been reminded about how good research asks SMART questions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My first module is called ‘Research Methods for therapists ’ but is an excellent stand alone module for anyone trying to learn how to identify what good research looks like AND with the added bonus of understanding how to develop communication skills in asking great questions. </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">So here is a question for you….</span></h3>\n<h2><b><i>What is your number one struggle in helping clients to move more freely RIGHT NOW?</i></b></h2>\n<h3><span style=\"font-weight: 400;\">HIT REPLY &amp; let me know</span></h3>\n&nbsp;\n\n<hr />\n\n<h1>Would you like help in developing your questioning skills?</h1>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Access the <strong>LIVE Biomechanics Q&amp;A’S </strong>every Wednesday at 12pm during lockdown &amp; then through the Biomechanics Q&amp;A Free Facebook group <a href=\"https://www.facebook.com/groups/341768576971345/\" target=\"_blank\" rel=\"noopener\">&gt;&gt;CLICK HERE&lt;&lt;</a></span></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-26965 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/mathew-schwartz-8rj4sz9YLCI-unsplash-scaled-1.jpg\" alt=\"\" width=\"440\" height=\"293\" /><img class=\"wp-image-26966 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/tachina-lee-wjk_SSqCE4-unsplash-scaled-1.jpg\" alt=\"\" width=\"463\" height=\"309\" />\n\n&nbsp;\n<h1></h1>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Access to the MTE <strong>Research Methods</strong> module <a href=\"https://movementtherapyeducation.thinkific.com/courses/research-methods-for-therapists\" target=\"_blank\" rel=\"noopener\">&gt;&gt;CLICK HERE&lt;&lt;</a></span></h2>','How SMART are your questions?','','draft','closed','closed','','how-smart-are-your-questions','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=26957',0,'post','',0),(26958,0,'2021-03-30 13:14:06','2021-03-30 13:14:06','','simone-secci-49uySSA678U-unsplash','','inherit','open','closed','','simone-secci-49uyssa678u-unsplash','','','2021-03-30 13:14:06','2021-03-30 13:14:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/simone-secci-49uySSA678U-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(26959,0,'2021-03-30 13:14:57','2021-03-30 13:14:57','','artem-maltsev-0CvHQ62gwY8-unsplash','','inherit','open','closed','','artem-maltsev-0cvhq62gwy8-unsplash','','','2021-03-30 13:14:57','2021-03-30 13:14:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/artem-maltsev-0CvHQ62gwY8-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(26960,0,'2021-03-30 13:16:26','2021-03-30 13:16:26','','adi-goldstein-FLANJGNY2Bk-unsplash','','inherit','open','closed','','adi-goldstein-flanjgny2bk-unsplash','','','2021-03-30 13:16:26','2021-03-30 13:16:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/adi-goldstein-FLANJGNY2Bk-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(26961,0,'2021-03-30 13:19:28','2021-03-30 13:19:28','','timothy-dykes-90uVYog2FKE-unsplash','','inherit','open','closed','','timothy-dykes-90uvyog2fke-unsplash','','','2021-03-30 13:19:28','2021-03-30 13:19:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/timothy-dykes-90uVYog2FKE-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(26962,0,'2021-03-30 13:20:03','2021-03-30 13:20:03','','benjamin-davies-JrZ1yE1PjQ0-unsplash','','inherit','open','closed','','benjamin-davies-jrz1ye1pjq0-unsplash','','','2021-03-30 13:20:03','2021-03-30 13:20:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/benjamin-davies-JrZ1yE1PjQ0-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(26963,0,'2021-03-30 13:21:25','2021-03-30 13:21:25','','bruce-mars-xj8qrWvuOEs-unsplash','','inherit','open','closed','','bruce-mars-xj8qrwvuoes-unsplash','','','2021-03-30 13:21:25','2021-03-30 13:21:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/bruce-mars-xj8qrWvuOEs-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(26964,0,'2021-03-30 13:22:00','2021-03-30 13:22:00','','windows-v94mlgvsza4-unsplash','','inherit','open','closed','','windows-v94mlgvsza4-unsplash','','','2021-03-30 13:22:00','2021-03-30 13:22:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/windows-v94mlgvsza4-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(26965,0,'2021-03-30 13:24:00','2021-03-30 13:24:00','','mathew-schwartz-8rj4sz9YLCI-unsplash','','inherit','open','closed','','mathew-schwartz-8rj4sz9ylci-unsplash','','','2021-03-30 13:24:00','2021-03-30 13:24:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/mathew-schwartz-8rj4sz9YLCI-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(26966,0,'2021-03-30 13:24:39','2021-03-30 13:24:39','','tachina-lee--wjk_SSqCE4-unsplash','','inherit','open','closed','','tachina-lee-wjk_ssqce4-unsplash','','','2021-03-30 13:24:39','2021-03-30 13:24:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/03/tachina-lee-wjk_SSqCE4-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(26985,0,'2021-03-31 12:51:36','2021-03-31 12:51:36','','Human,Anatomy,Muscular,System,3d,Rendering,With,Clipping,Path','','inherit','open','closed','','humananatomymuscularsystem3drenderingwithclippingpath','','','2021-03-31 12:51:36','2021-03-31 12:51:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/shutterstock_1054776068-scaled-1.jpg',0,'attachment','image/jpeg',0),(26986,0,'2021-03-31 12:52:02','2021-03-31 12:52:02','','Anatomy,Of,Male,And,Female,Muscular,System,-,Anterior,Posterior','','inherit','open','closed','','anatomyofmaleandfemalemuscularsystem-anteriorposterior','','','2021-03-31 12:52:02','2021-03-31 12:52:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/10/shutterstock_156616898-scaled-1.jpg',0,'attachment','image/jpeg',0),(27072,0,'2021-04-06 10:59:22','2021-04-06 10:59:22','','Screenshot 2021-02-01 at 08.24.44','','inherit','open','closed','','screenshot-2021-02-01-at-08-24-44','','','2021-04-06 10:59:22','2021-04-06 10:59:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/Screenshot-2021-02-01-at-08.24.44-1.png',0,'attachment','image/png',0),(27204,3,'2021-04-12 20:16:41','2021-04-12 20:16:41','<span style=\"font-weight: 400;\">So here we are at the lowest part of the lower extremity &amp; some anatomy that is often blamed, &amp; also the recipient, for so many presentations for biomechanical issues. </span>\n\n<span style=\"font-weight: 400;\">When studying the anatomy of the foot we should include the ankle to help to understand foot biomechanics because of its involvement in gait.</span>\n\n&nbsp;\n<h1><b>The Ankle </b></h1>\n&nbsp;\n\n<img class=\"aligncenter wp-image-27207\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/shutterstock_199824647-scaled-1.jpg\" alt=\"\" width=\"406\" height=\"406\" />\n<h2></h2>\n<h2><b>Tibia &amp; Malleolus (Medial)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The ankle is made up of the tibia (or shin bone) named after a flute or pipe due to its shape (and who knows what they did with bodies back when they were naming them? Did they make human tibia into flutes or pipes?)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">At this distal (distant/furthest away) end upon its medial side (inside) there is a malleolus (latin for small hammer or mallet) or bump that you can feel there. We all have varying shapes of medial malleolus protuberances. Some are small, some large, some are pointier hills than others &amp; some present as very smooth mounds.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some people have asymmetrical medial malleolus left to right </span><i><span style=\"font-weight: 400;\">naturally</span></i><span style=\"font-weight: 400;\">. So we should always keep an open mind to the effects of learning anatomy from one skeleton or one book of illustrations that only show small samples of shapes and sizes of any body!</span>\n\n<span style=\"font-weight: 400;\">Also these ‘normal’ asymmetries can, when measuring things like leg length discrepancies, result in a challenge for any practitioner! It is also why postural assessment &amp; alignment are not accurate measures of ‘natural’ positioning of an individual\'s bones.</span>\n\n&nbsp;\n<h2><b>Fibula &amp; Malleolus (Lateral)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The fibula makes up the lateral part of the connecting surfaces between the lower leg &amp; foot bones. Named after a clasp or brooch due apparently to how it looks like the pin of a brooch..</span>\n\n<span style=\"font-weight: 400;\">It has a lateral malleolus and so is considered part of the outside of the ankle. </span>\n\n<span style=\"font-weight: 400;\">The tibia &amp; fibula articulate with the Talus to make the talocrural joint.</span>\n\n&nbsp;\n<h1><b>The Rear Foot</b></h1>\n&nbsp;\n<h2><b>Talus</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The tibia &amp; fibula sit on top of the talus. Talus means </span><i><span style=\"font-weight: 400;\">slope or outcrop of rock at the base of a cliff </span></i><span style=\"font-weight: 400;\">which makes sense when you look at its anatomical location &amp; shape. It has 2 x ‘talus heads’ that can be palpated at the front of the ankle by a Biomechanics Coach to test an individual\'s </span><i><span style=\"font-weight: 400;\">natural foot alignment, </span></i><span style=\"font-weight: 400;\">to identify if there is a risk in the ascending biomechanical force being produced.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It also sits upon the calcaneus to create the subtalar joint (STJ) </span>\n\n<span style=\"font-weight: 400;\">The STJ is very important when looking to understand the triplanar actions of pronation &amp; supination. The STJ is literally the centre piece for these actions. </span>\n\n<span style=\"font-weight: 400;\">The congruence of its connecting surfaces (the bottom of the talus &amp; the top of the calcaneus) should allow a certain amount of movement but not too much. </span>\n\n<span style=\"font-weight: 400;\">So when you consider the load on top (pretty much the entire body) &amp; the multiple moves we put our bodies through, the ‘fashion’ shoes we wear from the early phases of walking, through teenage years &amp; then adulthood…..phew!.....it is no surprise many of us eventually experience a loose STJ!</span>\n\n&nbsp;\n<h2><b>Calcaneus</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This heel bone is below the talus &amp; takes the shock when the heel strikes. Shock isn’t all bad either! </span>\n\n<span style=\"font-weight: 400;\">This is the bottom surface of the STJ &amp; has an infinite axis, complex articulations &amp; is the key to </span><i><span style=\"font-weight: 400;\">transferring</span></i><span style=\"font-weight: 400;\"> shock. The STJ plays a major role in our ability to absorb the ground reaction force when walking/running, which is the reason why we want to pronate.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27206\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/Screenshot-2021-04-11-at-07.42.06-1.png\" alt=\"\" width=\"359\" height=\"490\" />\n<h2><b>Navicular</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The navicular is positioned in front of the calcaneus &amp; got its name from being (apparently) </span><i><span style=\"font-weight: 400;\">boat shaped or like a small ship</span></i><span style=\"font-weight: 400;\">. This has a bony prominence on the inside that can be used to identify if an individual has a propensity for pronation due to a low arch, when observed in relation to the medial malleolus &amp; the hinge point of the hallux, or big toe. </span>\n\n&nbsp;\n<h2><b>Cuboid</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Cuboid sits to the outer side of the navicular towards the outer edge of the foot. With 6 sides its known as a rectangular prism or quadrilateral.</span>\n\n&nbsp;\n<h2><b>Cuneiforms</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">These 3 bones (Medial, middle &amp; lateral) in front of the navicular &amp; to the side of the cuboid on the inside of the foot. Cuneiform means wedge.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The midtarsal joint (MTJ) is a combined articulation of talonavicular joint &amp; calcaneocuboid joints. It is also the divide between the rear foot (talus, calcaneus) &amp; the midfoot (navicular &amp; cuboid).</span>\n\n<span style=\"font-weight: 400;\">Another really important bony meeting place since if this joint becomes lax, it too can result in a loose foot that struggles to re-supinate during gait.</span>\n\n&nbsp;\n<h1><b>The Forefoot </b></h1>\n&nbsp;\n<h2><b>Metatarsals </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The origins of the word Metatarsal comes from ‘middle bones of the foot’ &amp; so describes nicely where they can be found!</span>\n\n&nbsp;\n<h2><b>Phalanges</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Phalanges literally means ‘log’ in Greek &amp; represents those longer sections of the toes (as they do in the fingers too)</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27205\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/04/Screenshot-2020-09-14-at-10.58.59.png\" alt=\"\" width=\"417\" height=\"422\" />\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">References:</span></h3>\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/20307420/#:~:text=The%20midtarsal%20joint%20(MTJt)%20consists,midfoot%20(navicular%20and%20cuboid)\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Tweed,J. L. et al.( </span><span style=\"font-weight: 400;\">2008) Elsevier</span><span style=\"font-weight: 400;\"> Mar 14</span><span style=\"font-weight: 400;\"> - accessed 11/04/21. The Function of the Midtarsal Joint - A review of the literature. </span><span style=\"font-weight: 400;\">Volume 18, Issue 2</span><span style=\"font-weight: 400;\">, June 2008, Pages 106-112</span></a>\n\n<a href=\"https://online.boneandjoint.org.uk/doi/full/10.1302/2058-5241.2.160050\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Krahenbuhl, N et al. (2017). Efort. 6 June 2017 The Subtalar Joint - A complex mechanism. Vol 2. No. 7. Accessed 12/04/21.</span></a>\n\n<a href=\"https://teachmeanatomy.info/lower-limb/bones/bones-of-the-foot-tarsals-metatarsals-and-phalanges/\" target=\"_blank\" rel=\"noopener\"><b>Teach me anatomy - Bones of the foot: Tarsals, Metatarsals &amp; Phalanges - Accessed 12/04/21. </b></a>\n\n<hr />\n\n<h2>Next time Foot Biomechanics Part 10 - The Muscles of the Foot</h2>\n&nbsp;\n<h1>Would you like to learn an evidence based system to test your client\'s foot &amp; ankle biomechanics?</h1>\n<h1></h1>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/introduction-to-the-foot-posture-index-online-cpd/#tab-description\" target=\"_blank\" rel=\"noopener\">CLICK HERE FOR &gt;&gt;Introduction to The Foot Posture Index</a></h1>\n&nbsp;\n\n&nbsp;','Foot Biomechanics Part 9 -  The Bones of the Foot & Ankle','','draft','closed','closed','','foot-biomechanics-part-9-the-bones-of-the-foot-ankle','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=27204',0,'post','',0),(27205,0,'2021-04-12 19:03:49','2021-04-12 19:03:49','','Screenshot 2020-09-14 at 10.58.59','','inherit','open','closed','','screenshot-2020-09-14-at-10-58-59','','','2021-04-12 19:03:49','2021-04-12 19:03:49','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/Screenshot-2020-09-14-at-10.58.59-1.png',0,'attachment','image/png',0),(27206,0,'2021-04-12 19:04:16','2021-04-12 19:04:16','','Screenshot 2021-04-11 at 07.42.06','','inherit','open','closed','','screenshot-2021-04-11-at-07-42-06','','','2021-04-12 19:04:16','2021-04-12 19:04:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/Screenshot-2021-04-11-at-07.42.06-1.png',0,'attachment','image/png',0),(27207,0,'2021-04-12 19:04:29','2021-04-12 19:04:29','','shutterstock_199824647','','inherit','open','closed','','shutterstock_199824647-2','','','2021-04-12 19:04:29','2021-04-12 19:04:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/shutterstock_199824647-scaled-1.jpg',0,'attachment','image/jpeg',0),(27301,0,'2021-04-19 12:18:18','2021-04-19 12:18:18','','iMoveFreely Transparent 300dpi','','inherit','open','closed','','imovefreely-transparent-300dpi-4','','','2021-04-19 12:18:18','2021-04-19 12:18:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/iMoveFreely-Transparent-300dpi-1.png',0,'attachment','image/png',0),(27302,0,'2021-04-19 12:20:16','2021-04-19 12:20:16','','DSC01963','','inherit','open','closed','','dsc01963','','','2021-04-19 12:20:16','2021-04-19 12:20:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/DSC01963-scaled-1.jpg',0,'attachment','image/jpeg',0),(27303,0,'2021-04-19 12:21:26','2021-04-19 12:21:26','','IMG_0096','','inherit','open','closed','','img_0096-3','','','2021-04-19 12:21:26','2021-04-19 12:21:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/IMG_0096-scaled-1.jpg',0,'attachment','image/jpeg',0),(27304,0,'2021-04-19 12:28:00','2021-04-19 12:28:00','','IMG_1199','','inherit','open','closed','','img_1199','','','2021-04-19 12:28:00','2021-04-19 12:28:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/IMG_1199-scaled-1.jpeg',0,'attachment','image/jpeg',0),(27321,3,'2021-04-20 17:58:09','2021-04-20 17:58:09','Shall we explore the final piece in this series to see if we can recall muscles in the foot and ankle to deepen our understanding of foot mechanics?\r\n\r\nA fascinating finisher for you...\r\n<h2><b>Gastrocnemius </b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27322\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/Gastroc-scaled-1.jpg\" alt=\"\" width=\"644\" height=\"362\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Gastrocnemius is also called a ‘calf’ muscle because it forms the large ‘belly’ of the leg &amp; those Greeks thought it resembled a calf’s stomach/belly </span>\r\n\r\n<strong>Coming from the Greek words </strong>\r\n\r\n<i><span style=\"font-weight: 400;\">gaster</span></i><span style=\"font-weight: 400;\"> =  belly </span>\r\n\r\n<i><span style=\"font-weight: 400;\">kneme</span></i><span style=\"font-weight: 400;\"> = leg</span>\r\n\r\n<span style=\"font-weight: 400;\">It is the superficial of the 2 calf muscles with 2 heads that attach to the condyles (nobly bits) on the back of the femur. It also travels down to a tendon that becomes part of the Achilles (calcaneal) tendon at the back of the ankle/heel.</span>\r\n\r\n<span style=\"font-weight: 400;\">So for this reason, when it contracts or shortens it will plant the toes down into plantar flexion which is also what happens when you stand on tiptoe.</span>\r\n\r\n<span style=\"font-weight: 400;\">However if you wanted to lengthen it fully you would need to, not only dorsiflex the ankle (pull the toes upwards), but also extend your knee to take up the slack there too! Try this by taking one heel back behind you, with the toes pointing forwards, knee straight and heel down...you should feel a stretch in the back of your leg through the calf. In fact for many this could feel REEEEAAAAAAALLLLY tight!</span>\r\n\r\n<span style=\"font-weight: 400;\">Check out all the different ‘Gastrocy’ shapes out there next time you are around lots of bare legs or people in shorts or leggings!</span>\r\n<h2><b>Soleus </b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27323\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/soleus-scaled-1.jpg\" alt=\"\" width=\"362\" height=\"482\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Soleus is the Latin word for a flat sort of sandal.</span>\r\n\r\n<span style=\"font-weight: 400;\">Deep to (underneath) gastrocnemius, this massive ‘pumper’ has an important job because it acts to pump blood back up the body, against gravity. Another great reason to suggest to our clients why walking at least 10k steps daily might be a good idea! </span>\r\n\r\n<span style=\"font-weight: 400;\">Soleus is also bigger than you think because much of its anatomy is hidden behind the gastrocnemius. It may well be flatter than gastroc but it’s muscle portion is certainly longer!</span>\r\n\r\n<span style=\"font-weight: 400;\">Starting on the back of the tibia &amp; fibula it then travels down to the calcaneal (Achilles) tendon, onto the calcaneus (heel bone). </span>\r\n\r\n<span style=\"font-weight: 400;\">It is also responsible for pointing your toe like it’s partner, Gastrocnemius BUT Soleus can be lengthened or stretched even when the knee is flexed due to its anatomy NOT crossing the knee joint!</span>\r\n\r\n<span style=\"font-weight: 400;\">So if you wanted to see how it compares with the previous gastrocnemius stretch try doing what you did before…..place your heel down behind your midline, toe pointing forwards but this time, bend the knee and lower the body, keeping the heel on the floor. You should feel the Soleus stretch a little lower down. </span>\r\n\r\n<span style=\"font-weight: 400;\">You could encourage a client to feel both variations too!</span>\r\n\r\n<span style=\"font-weight: 400;\">Gastrocnemius &amp; Soleus are also known as </span><i><span style=\"font-weight: 400;\">‘triceps surae</span></i><span style=\"font-weight: 400;\">’ because it means 3 headed muscles.</span>\r\n<h2><b>Plantaris</b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27324\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/plantaris-1-1.png\" alt=\"\" width=\"315\" height=\"443\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">This slender muscle is considered </span><i><span style=\"font-weight: 400;\">unimportant</span></i><span style=\"font-weight: 400;\"> or an ‘accessory’ muscle…</span>\r\n\r\n<strong>What is an accessory muscle?</strong>\r\n\r\n<span style=\"font-weight: 400;\">An accessory muscle provides assistance in movement but isn’t classed as primarily responsible for it.</span>\r\n\r\n<span style=\"font-weight: 400;\">When it comes to the Plantaris muscle 8-12% of us don\'t have one! (or 7-20% depending which article you read)</span>\r\n\r\n<span style=\"font-weight: 400;\">So by that calculation 88-92% of us DO have one which in MY book makes it a valid muscle </span>\r\n\r\n<strong>What do you think? </strong>\r\n\r\n<span style=\"font-weight: 400;\">Sweeping from the outside of the lateral femur, across the back of the knee &amp; down to the Achilles’ tendon, (also known as <em>tendo calcaneus</em>) it has the longest tendon in the body!</span>\r\n\r\n<span style=\"font-weight: 400;\">Whatever your opinion about Plantaris it flexes the knee &amp; plants the foot down (plantar flexion)</span>\r\n\r\n<span style=\"font-weight: 400;\">A super short muscle belly that looks like a little rope, it also assists in allowing you to stand on tiptoes to reach up high into a cupboard</span>\r\n\r\n<span style=\"font-weight: 400;\">Go Plantaris!</span>\r\n<h2><b>Fibularis Longus &amp; Fibularis Brevis</b></h2>\r\n<span style=\"font-weight: 400;\">Also known as the <strong>Peroneals</strong> OR <strong>Peroneus Longus &amp; Brevis</strong> even!</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-27325 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/Fibularis-longus-scaled-1.jpg\" alt=\"\" width=\"284\" height=\"379\" />\r\n\r\n<img class=\"aligncenter wp-image-27326\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/fibularis-brevis-scaled-1.jpg\" alt=\"\" width=\"281\" height=\"375\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Peroneals comes from the Greek word Perone (pronounced Pair-uh-knee) which was their word for the pin of a brooch or a buckle.</span>\r\n\r\n<strong>Why?</strong>\r\n\r\n<span style=\"font-weight: 400;\">Because the Greeks felt that the fibula looked like a pin at the back of the ‘tibia’ broach! </span>\r\n\r\n<span style=\"font-weight: 400;\">How to remember? Place your hands on the side of your lower legs, slide them upwards (over your perennials) towards your ‘pair uh knees’!</span>\r\n\r\n<span style=\"font-weight: 400;\">However these days they are being called the Fibularis muscles which should be even easier to remember since thats where your fibula is! It depends what resonates in your memory I guess! </span>\r\n\r\n<span style=\"font-weight: 400;\">Fibularis Longus is the long one, Fibularis Brevis the shorter one.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fibularis Longus attaches from the proximal (upper) portion of the fibular &amp; Fibularis Brevis joins in from the distal (lower) portion to travel down to the ‘plantar’ surfaces of certain tarsal &amp; metatarsal bones, meaning they play a role in the movement of the ankle. </span>\r\n\r\n<span style=\"font-weight: 400;\">Fibularis Longus is a plantar flexor &amp; everts the foot - meaning it turns the sole outwards. Through its tendon it also supports the arch of the foot.....so really multi tasking.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fibularis Brevis helps his brother out through everting the foot too</span>\r\n\r\n<span style=\"font-weight: 400;\">Interesting fact: </span><span style=\"font-weight: 400;\">Fibularis Longus contributes to BOTH pronation &amp; supination! </span>\r\n\r\n&nbsp;\r\n<h2><b>Tibialis Anterior</b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27327\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/tib-ant-scaled-1.jpg\" alt=\"\" width=\"362\" height=\"483\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">This bruiser sits on the front (anterior) of your tibia, hence tibialis anterior!</span>\r\n\r\n<span style=\"font-weight: 400;\">From the top lateral nobly bit to medial (inside) &amp; underneath the first cuneiform, a bone that makes up part of the arch of the foot.....</span>\r\n\r\n<span style=\"font-weight: 400;\">This means it is able to lift, or dorsiflex, the forefoot. It also inverts (turns in the underside of the foot) &amp; adducts the forefoot towards the midline. </span>\r\n\r\n<span style=\"font-weight: 400;\">So it should allow you to sustain an arch in your foot. The arch is important for supination, or ‘toe off’ when walking as it gives rigidity by ‘locking’ the midtarsal joints</span>\r\n\r\n<span style=\"font-weight: 400;\">Supination is the propulsion phase when walking </span>\r\n\r\n<span style=\"font-weight: 400;\">Tibialis Anterior also eccentrically decelerates your foot as you heel strike while pronated. It is often inhibited &amp; an antagonist to those ‘tight’ calves. </span><span style=\"font-weight: 400;\">Or maybe it’s the Tibialis Anterior that inhibits those calves? </span><span style=\"font-weight: 400;\">Extends, dorsiflexes &amp; everts by attaching to the lateral tibia to medial cuneiform &amp; base of 5th metatarsal</span>\r\n<h2><b>Extensor Digitorum Longus</b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27328\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-digitorum-longus-scaled-1.jpg\" alt=\"\" width=\"428\" height=\"428\" />\r\n\r\n&nbsp;\r\n\r\nIt <em>extends</em> the <em>digits</em> &amp; is <em>long</em>...\r\n\r\n<span style=\"font-weight: 400;\">In fact it extends 2-5th toes, dorsiflexes ankle &amp; everts foot by attaching from the medial anterior fibula to phalanx of the first toe</span>\r\n<h2><b>Extensor Hallucis Longus</b><span style=\"font-weight: 400;\"> </span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27329\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-hallucis-longus-scaled-1.jpg\" alt=\"\" width=\"331\" height=\"552\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIt <em>extends</em> the <em>hallux</em> &amp; is <em>long</em>....\r\n\r\n<span style=\"font-weight: 400;\">So it extends first toe, dorsiflexes ankle &amp; inverts foot by attaching from the lateral condyle of the tibia to middle phalanges of 2-5th toe </span>\r\n<h2><b>Tibialis Posterior </b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27330\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/tib-post-scaled-1.jpg\" alt=\"\" width=\"379\" height=\"379\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">So this dude is in the BACK of the lower leg...yup you guessed it...posterior to (behind) the tibia.</span>\r\n\r\n<span style=\"font-weight: 400;\">A stabilising muscle that supports the arch of the foot, i</span><span style=\"font-weight: 400;\">t can do this because it attaches from the upper lateral part of the tibia &amp; upper medial part of the fibula....</span>\r\n\r\n<span style=\"font-weight: 400;\">Then inserts down onto the navicular (meaning ‘little ship’ as this bone is boat shaped) &amp; medial cuneiform (Latin for ‘wedge-shaped’)</span>\r\n\r\n<span style=\"font-weight: 400;\">Takes care of plantar (planting down to the ground) flexion, along with its calf buddies, &amp; inversion of the sole....</span>\r\n\r\n<span style=\"font-weight: 400;\">Therefore also a potential contributor to adults presenting with flat feet when dysfunctional or inhibited....</span>\r\n\r\n<span style=\"font-weight: 400;\">... by what? </span>\r\n\r\n<span style=\"font-weight: 400;\">Think 🤔 antagonistic... maybe!?!</span>\r\n<h2><b>Flexor Digitorum Longus</b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27331\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-longus-scaled-1.jpg\" alt=\"\" width=\"341\" height=\"454\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Flexes the 2nd-5th toes &amp; is a weak plantar flexor of the ankle while inverting the sole of the foot by attaching from middle posterior tibia to phalanges of 2-5th toes</span>\r\n<h2><b>Flexor Hallucis Longus</b><span style=\"font-weight: 400;\"> </span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27332\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-hallucis-longus-scaled-1.jpg\" alt=\"\" width=\"428\" height=\"428\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Flexes the Hallux or first toe &amp; another weak plantar of ankle while inverting the foot by attaching to the middle posterior fibula to phalanx of first toe </span>\r\n<h2><b>Other muscles of the foot!</b></h2>\r\nWe could go on but how about you do some homework now?... why not research these little foot movers:\r\n<h3>Origin? Insertion? Action?</h3>\r\n<ul>\r\n 	<li><span style=\"font-weight: 400;\">Extensor digitorum brevis</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Flexor digitorum brevis</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Adductor hallucis</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Adductor digiti minimi</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Extensor digitorum brevis</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Flexor hallucis brevis </span></li>\r\n 	<li><span style=\"font-weight: 400;\">Adductor hallucis </span></li>\r\n 	<li><span style=\"font-weight: 400;\">Flexor digiti minimi brevis </span></li>\r\n 	<li><span style=\"font-weight: 400;\">Quadratus plantae</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Plantar interossei</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Dorsal interossei</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Lumbricals of the foot</span></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"wp-image-27333 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-hallucis-brevis-scaled-1.jpg\" alt=\"\" width=\"335\" height=\"251\" /><img class=\"aligncenter wp-image-27334\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-digitorum-brevis-scaled-1.jpg\" alt=\"\" width=\"348\" height=\"261\" />\r\n\r\n<img class=\"wp-image-27335 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-brevis-scaled-1.jpg\" alt=\"\" width=\"411\" height=\"308\" /><img class=\"aligncenter wp-image-27336\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-hallucis-brevis-scaled-1.jpg\" alt=\"\" width=\"458\" height=\"343\" />\r\n<h3>References</h3>\r\nDelgado, Gonzalo J. et al (2002). \"Tennis Leg: Clinical US Study of 141 Patients &amp; Anatomic Investigation of Four Cadavers with MR Imaging &amp; US1\". Radiology. 224 (1): 1129. doi:10.1148/radiol.2241011067. PMID 12091669\r\n\r\n<span class=\"reference-text\"><cite id=\"CITEREFFreemanJacobsonFogg2008\" class=\"citation journal cs1\">Freeman, A. J. et al (2008). \"Anatomical variations of the plantaris muscle &amp; a potential role in patellofemoral pain syndrome\". Clinical Anatomy. 21 (2): 178–81. doi:10.1002/ca.20594.PMID 18266282 </cite></span>\r\n\r\n<span class=\"reference-text\"><cite id=\"CITEREFSpina2007\" class=\"citation journal cs1\">Spina, A. A. (2007). \"The plantaris muscle: Anatomy, injury, imaging, and treatment\". </cite></span><span class=\"reference-text\"><cite id=\"CITEREFSpina2007\" class=\"citation journal cs1\">The Journal of the Canadian Chiropractic Association. 51 (3): 158–65. PMC 1978447. PMID 17885678 </cite></span>\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<h1></h1>\r\n<h1>Would you like to learn how to assess your clients feet?</h1>\r\nDo you feel like this is an area of the body you have yet to master?\r\n\r\nWould you like a simple way of understanding &amp; interpreting foot biomechanics to help more clients in more ways?\r\n<h1><a href=\"https://biomechanicseducation.com/courses/cpd-courses/the-foot-posture-index/\" target=\"_blank\" rel=\"noopener\">CLICK HERE &gt;&gt;&gt; Introduction to the Foot Posture Index....</a></h1>','Foot Biomechanics Part 10 -  The Muscles of the Foot & Ankle','','publish','closed','closed','','foot-biomechanics-part-10-the-muscles-of-the-foot-ankle','','','2025-01-20 15:59:55','2025-01-20 15:59:55','',0,'https://www.biomechanicseducation.com/?p=27321',0,'post','',0),(27322,0,'2021-04-20 14:13:45','2021-04-20 14:13:45','','Gastrocnemius','','inherit','open','closed','','gastroc','','','2021-04-20 14:13:45','2021-04-20 14:13:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/Gastroc-scaled-1.jpg',0,'attachment','image/jpeg',0),(27323,0,'2021-04-20 14:15:05','2021-04-20 14:15:05','','Medically,Accurate,Muscle,Illustration,Of,The,Soleus','','inherit','open','closed','','medicallyaccuratemuscleillustrationofthesoleus','','','2021-04-20 14:15:05','2021-04-20 14:15:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/soleus-scaled-1.jpg',0,'attachment','image/jpeg',0),(27324,0,'2021-04-20 14:15:53','2021-04-20 14:15:53','','plantaris','','inherit','open','closed','','plantaris','','','2021-04-20 14:15:53','2021-04-20 14:15:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/plantaris-1-1.png',0,'attachment','image/png',0),(27325,0,'2021-04-20 14:16:31','2021-04-20 14:16:31','','Medically,Accurate,Illustration,Of,The,Peroneus,Longus','','inherit','open','closed','','medicallyaccurateillustrationoftheperoneuslongus','','','2021-04-20 14:16:31','2021-04-20 14:16:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/Fibularis-longus-scaled-1.jpg',0,'attachment','image/jpeg',0),(27326,0,'2021-04-20 14:17:13','2021-04-20 14:17:13','','Medically,Accurate,Illustration,Of,The,Peroneus,Brevis','','inherit','open','closed','','medicallyaccurateillustrationoftheperoneusbrevis','','','2021-04-20 14:17:13','2021-04-20 14:17:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/fibularis-brevis-scaled-1.jpg',0,'attachment','image/jpeg',0),(27327,0,'2021-04-20 14:19:04','2021-04-20 14:19:04','','tib ant','','inherit','open','closed','','tib-ant','','','2021-04-20 14:19:04','2021-04-20 14:19:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/tib-ant-scaled-1.jpg',0,'attachment','image/jpeg',0),(27328,0,'2021-04-20 14:20:20','2021-04-20 14:20:20','','Concept,Or,Conceptual,3d,Extensor,Digitorum,Longus,,Anatomical,And,Muscle','','inherit','open','closed','','conceptorconceptual3dextensordigitorumlongusanatomicalandmuscle','','','2021-04-20 14:20:20','2021-04-20 14:20:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-digitorum-longus-scaled-1.jpg',0,'attachment','image/jpeg',0),(27329,0,'2021-04-20 14:21:03','2021-04-20 14:21:03','','Medical,Accurate,Illustration,Of,The,Extensor,Hallucis,Longus','','inherit','open','closed','','medicalaccurateillustrationoftheextensorhallucislongus','','','2021-04-20 14:21:03','2021-04-20 14:21:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-hallucis-longus-scaled-1.jpg',0,'attachment','image/jpeg',0),(27330,0,'2021-04-20 14:21:55','2021-04-20 14:21:55','','Human,Body,Muscles,Anatomy,(tibialis,Posterior).,3d','','inherit','open','closed','','humanbodymusclesanatomytibialisposterior-3d','','','2021-04-20 14:21:55','2021-04-20 14:21:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/tib-post-scaled-1.jpg',0,'attachment','image/jpeg',0),(27331,0,'2021-04-20 14:22:43','2021-04-20 14:22:43','','Medically,Accurate,Muscle,Illustration,Of,The,Flexor,Digitorum,Longus','','inherit','open','closed','','medicallyaccuratemuscleillustrationoftheflexordigitorumlongus','','','2021-04-20 14:22:43','2021-04-20 14:22:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-longus-scaled-1.jpg',0,'attachment','image/jpeg',0),(27332,0,'2021-04-20 14:23:26','2021-04-20 14:23:26','','Human,Body,Muscles,Anatomy,(flexor,Hallucis,Longus).,3d','','inherit','open','closed','','humanbodymusclesanatomyflexorhallucislongus-3d','','','2021-04-20 14:23:26','2021-04-20 14:23:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-hallucis-longus-scaled-1.jpg',0,'attachment','image/jpeg',0),(27333,0,'2021-04-20 14:24:09','2021-04-20 14:24:09','','Medical,Accurate,Illustration,Of,The,Extensor,Hallucis,Brevis','','inherit','open','closed','','medicalaccurateillustrationoftheextensorhallucisbrevis','','','2021-04-20 14:24:09','2021-04-20 14:24:09','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-hallucis-brevis-scaled-1.jpg',0,'attachment','image/jpeg',0),(27334,0,'2021-04-20 14:24:15','2021-04-20 14:24:15','','3d,Rendered,Medically,Accurate,Illustration,Of,The,Extensor,Digitorum,Brevis','','inherit','open','closed','','3drenderedmedicallyaccurateillustrationoftheextensordigitorumbrevis','','','2021-04-20 14:24:15','2021-04-20 14:24:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-digitorum-brevis-scaled-1.jpg',0,'attachment','image/jpeg',0),(27335,0,'2021-04-20 14:24:22','2021-04-20 14:24:22','','Medically,Accurate,Illustration,Of,The,Flexor,Digitorum,Brevis','','inherit','open','closed','','medicallyaccurateillustrationoftheflexordigitorumbrevis','','','2024-09-20 15:09:42','2024-09-20 15:09:42','',27321,'https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-brevis-scaled-1.jpg',0,'attachment','image/jpeg',0),(27336,0,'2021-04-20 14:24:29','2021-04-20 14:24:29','','Medically,Accurate,Illustration,Of,The,Flexor,Hallucis,Brevis','','inherit','open','closed','','medicallyaccurateillustrationoftheflexorhallucisbrevis','','','2021-04-20 14:24:29','2021-04-20 14:24:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-hallucis-brevis-scaled-1.jpg',0,'attachment','image/jpeg',0),(27351,0,'2021-04-21 07:04:22','2021-04-21 07:04:22','','BC workout card blank 2015','','inherit','open','closed','','bc-workout-card-blank-2015','','','2021-04-21 07:04:22','2021-04-21 07:04:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/04/BC-workout-card-blank-2015-1.pdf',0,'attachment','application/pdf',0),(27619,0,'2021-05-10 08:53:37','2021-05-10 08:53:37','','3AD2C09C-8D54-48D6-BDE0-BA75A551AFDF','','inherit','open','closed','','3ad2c09c-8d54-48d6-bde0-ba75a551afdf','','','2021-05-10 08:53:37','2021-05-10 08:53:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/3AD2C09C-8D54-48D6-BDE0-BA75A551AFDF-1.png',0,'attachment','image/png',0),(27620,0,'2021-05-10 08:55:44','2021-05-10 08:55:44','','IMG_4580','','inherit','open','closed','','img_4580-3','','','2021-05-10 08:55:44','2021-05-10 08:55:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/IMG_4580-scaled-1.jpg',0,'attachment','image/jpeg',0),(27622,0,'2021-05-10 09:27:25','2021-05-10 09:27:25','','Add a heading (6) copy','','inherit','open','closed','','add-a-heading-6-copy','','','2021-05-10 09:27:25','2021-05-10 09:27:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Add-a-heading-6-copy-1.png',0,'attachment','image/png',0),(27628,0,'2021-05-10 10:22:25','2021-05-10 10:22:25','','Screenshot 2021-05-10 at 11.22.06','','inherit','open','closed','','screenshot-2021-05-10-at-11-22-06','','','2021-05-10 10:22:25','2021-05-10 10:22:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Screenshot-2021-05-10-at-11.22.06-1.png',0,'attachment','image/png',0),(27663,0,'2021-05-12 12:38:42','2021-05-12 12:38:42','','Canva - Man Wearing White Long-sleeved Shirt Pushing Two Black Barbells','','inherit','open','closed','','canva-man-wearing-white-long-sleeved-shirt-pushing-two-black-barbells','','','2021-05-12 12:38:42','2021-05-12 12:38:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/Canva-Man-Wearing-White-Long-sleeved-Shirt-Pushing-Two-Black-Barbells-scaled-1.jpg',0,'attachment','image/jpeg',0),(27664,0,'2021-05-12 12:45:21','2021-05-12 12:45:21','','Canva - Photo of Man Holding Black Rope','','inherit','open','closed','','canva-photo-of-man-holding-black-rope','','','2021-05-12 12:45:21','2021-05-12 12:45:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/Canva-Photo-of-Man-Holding-Black-Rope-scaled-1.jpg',0,'attachment','image/jpeg',0),(27665,0,'2021-05-12 12:47:27','2021-05-12 12:47:27','','Canva - Woman Wearing White and Black Sweat Suit Doing Curl Ups','','inherit','open','closed','','canva-woman-wearing-white-and-black-sweat-suit-doing-curl-ups','','','2021-05-12 12:47:27','2021-05-12 12:47:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/Canva-Woman-Wearing-White-and-Black-Sweat-Suit-Doing-Curl-Ups-scaled-1.jpg',0,'attachment','image/jpeg',0),(27746,3,'2021-05-18 10:56:32','2021-05-18 10:56:32','<span style=\"font-weight: 400;\">You get a new client, they complete the ParQ and they say they have sciatica…..what do you do?</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Ask if they have been diagnosed by an AHP? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">If not …..ask how did they come to that decision?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">If they researched their symptoms themselves online then maybe we should still refer them to their GP/Physio, as this could be an incorrect ‘diagnosis’? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">*Check if they have been cleared to exercise by an AHP? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">*Ask for a letter of clearance to exercise from an AHP….with guidance? </span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you recognise any, or maybe some or even all, of these situations…?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe you have had sciatica &amp; improved your own symptoms with movements &amp; exercise? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However this series is aimed at helping PTs looking to help each client who presents with symptoms deemed as sciatica.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here is what we feel is an appropriate system of approach to what PT’s can, and also should NOT do, in these cases…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">&#x2705; This first episode will explore the definitions, symptoms, causes &amp; anatomy of sciatica</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">&#x2705; In episode 2 we will start looking at tests we might or shouldn\'t use with someone with sciatica </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">&#x2705; Finally episode 3 will be about ideas on how to train a client with sciatica (*if cleared to do so by an AHP)</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27749\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1648667119-scaled-1.jpg\" alt=\"\" width=\"437\" height=\"291\" />\n<h2></h2>\n<h2></h2>\n&nbsp;\n\n&nbsp;\n<h2><b>Definitions &amp; Symptoms of Sciatica</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Searching the internet you will likely find definitions like….</span>\n\n<i><span style=\"font-weight: 400;\">Pain that radiates along the anatomy of the sciatic nerve, usually asymmetrically in the lower back, hips, buttocks &amp; back of leg </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The problem is there are a multitude of causes (&amp; combinations of causes) of sciatica that can present these symptoms, which is why we should develop a multidisciplinary team that includes AHPs that we can rely on to evaluate our clients &amp; advise us on how to progress </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">AHP’s have different skills &amp; training to be be able to assess for more sinister causes </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Many synonyms for sciatica appear in the literature, such as lumbosacral radicular syndrome, ischias, nerve root pain, and nerve root entrapment.</span></i>\n\n&nbsp;\n<h2><b>What other definitions are there..?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">&#x1f4a5;Acute sciatica. Acute sciatica is a recent onset, 4 to 8-week duration of sciatic nerve pain. ... </span>\n\n<span style=\"font-weight: 400;\">&#x1f4a5;Chronic sciatica. ... more than 8 weeks. </span>\n\n<span style=\"font-weight: 400;\">&#x1f4a5;Alternating sciatica. ... moves from one leg to the other </span>\n\n<span style=\"font-weight: 400;\">&#x1f4a5;Bilateral sciatica...felt in both legs simultaneously</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27753\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/05/Screenshot-2021-05-18-at-10.58.01-1.png\" alt=\"\" width=\"538\" height=\"335\" />\n\n&nbsp;\n\n&nbsp;\n<h2><b>Causes of Sciatica</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Note; Sciatica; it is not a medical diagnosis but </span><span style=\"font-weight: 400;\">more a descriptive term </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">In one study it was shown that about 90% of cases sciatica are caused by a herniated disc with nerve root compression, but lumbar stenoses and (less often) tumours are possible causes.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However other medical conditions that may cause sciatica include:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Lumbar degenerative disc disease, general degenerative changes in vertebrae or discs</span>\n\n<span style=\"font-weight: 400;\">Spondylolisthesis</span>\n\n<span style=\"font-weight: 400;\">Muscle spasm and/or inflammation of the lumbar and/or pelvic muscles</span>\n\n<span style=\"font-weight: 400;\">Sacroiliac joint dysfunction</span>\n\n<span style=\"font-weight: 400;\">Rarely, tumors, blood clots, or other conditions in the lower spine may cause sciatica.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The term sciatica is used because it describes the radiculopathy that occurs when one or more of the nerves that make up the large sciatic nerve are irritated or pinched. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Most cases of sciatica will get better with time and conservative (nonsurgical) care. However, some sciatica symptoms such as progressive weakness, loss of leg sensation and incontinence may indicate a potentially serious injury to the sciatic nerve and surgery may be warranted.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27750\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_312582254-1-scaled-1.jpg\" alt=\"\" width=\"409\" height=\"511\" />\n\n&nbsp;\n\n&nbsp;\n<h2><b>Anatomy of the Sciatic Nerve</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Looking at our practical anatomy series where we explore general pelvic anatomy HERE </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The sciatic nerve is the largest section of the nervous system which is a continuum throughout the body. The sciatic portion can be around 2cm thick and is most famous when it comes to the rest of the nervous system because of its common irritation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Starting from the L4-S3 then the lumbosacral plexus (</span><i><span style=\"font-weight: 400;\">plexus means an intricate network) </span></i><span style=\"font-weight: 400;\">it emerges from the piriformis, usually inferiorly, but can be present in a variety of orientations. </span>\n\n<span style=\"font-weight: 400;\">Via the gluteal region it travels posterior to the gemellus twins, obturator internus, quadratus femoris and then passes by bicep femoris. Next behind the hamstrings &amp; the beautiful adductor magnus. </span>\n\n<span style=\"font-weight: 400;\">It innervates (supplies with nerves) the calf, the anterior and lateral lower leg and some foot muscles. </span>\n\n&nbsp;\n<h2><b>Variations of the anatomy of the Sciatic Nerve</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The evidence suggests there are around 16% of us that have a variation from the ‘normal’ or most commonly expected presentation of sciatica nerve anatomy. </span>\n\n<span style=\"font-weight: 400;\">Some variations are thought to increase the risk of developing sciatica pain due to impingement, entrapment, or irritation of the nerve root.</span>\n\n<span style=\"font-weight: 400;\">In one study (Lewis et al, 2016) it was found that 89% of the cadavers anatomy analysed were of a ‘normal’ anatomic presentation. This is where the sciatic nerve divides above the piriformis muscle with one section passing through piriformis and the second portion passing below the muscle. </span>\n\n<span style=\"font-weight: 400;\">However variations found different sciatic nerve presentations where it passed over the piriformis or simply through the centre.</span>\n\n<span style=\"font-weight: 400;\">So what?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well its thought that some anatomic variants have not only higher risk but also reduced response to treatments or interventions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ultimately no one sciatica patient is the same</span>\n\n<span style=\"font-weight: 400;\">No one intervention cures all </span>\n\n<span style=\"font-weight: 400;\">Clinicians may know more about the anatomy of our client’s sciatica based on tests or questions they may have been able to do than we realise. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So lets connect and develop our multidisciplinary team to include our clients AHP’s or AHP’s who are willing to work WITH us…</span>\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Next time</span></h1>\n<span style=\"font-weight: 400;\">In Episode 2 we will start looking at tests we might or shouldn\'t use with someone with sciatica </span>\n<h2><span style=\"font-weight: 400;\">Can we test our client’s with this condition in mind?</span></h2>\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">Would you like to learn how to assess your clients Pelvic &amp; Spine Biomechanics?</a></h1>\n&nbsp;\n\n<img class=\"aligncenter wp-image-24100\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/DSC01482-scaled-1.jpg\" alt=\"\" width=\"423\" height=\"282\" />\n\n&nbsp;\n<h2><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">We have a few places left for our London 2 day workshop June Wed 9th &amp; Thur 19th.</a></h2>\n&nbsp;\n<ul>\n 	<li>Do you have clients who struggle with range of movement in their squat?</li>\n 	<li>Want to understand how you can assess the reason why their butt winks?</li>\n 	<li>Wish you knew why their shoulders just wont allow them to press overhead?</li>\n 	<li>Do you have clients who cannot maintain a straight spine during dead lifts?</li>\n 	<li>Do you have clients afraid to do certain exercises because of their physical limitations or even pain?</li>\n 	<li>Would you like to see their movement improve before your very eyes?</li>\n 	<li>Maybe YOU want to improve your own ability to move?</li>\n</ul>\nLearn how to:\n\n•Assess where limitations are coming from with a simple evidence based screening programme<span class=\"Apple-converted-space\"> </span>\n\n•Learn the relevant techniques that improve movement &amp; function of the pelvis &amp; spine\n\n<strong>Pelvic Biomechanics</strong> - In this section we look at evidence based manual assessments for the pelvis, including how to identify sub-clinical muscle spasm, the difference between structural v’s functional leg length discrepancy and a system of exercise application to improve pelvic function in your clients.<span class=\"Apple-converted-space\"> </span>\n<ul>\n 	<li>Leg Length Discrepancy <span class=\"Apple-converted-space\"> </span></li>\n 	<li>Downings Sign</li>\n 	<li>4 Sign</li>\n 	<li>Modified Thomas Test<span class=\"Apple-converted-space\"> </span></li>\n 	<li>Gillets</li>\n 	<li>Relevant iMoveFreely® exercises &amp; application</li>\n</ul>\n<strong>Spine Biomechanics</strong> - In this section we will show you how to asses &amp; correct thoracic rotation. This stunning screen can literally be a game changer in so many ways.\n<ul>\n 	<li>Quadratus Lumborum</li>\n 	<li>Sciatic Nerve<span class=\"Apple-converted-space\"> </span></li>\n 	<li>Spinal Flexion</li>\n 	<li>Spinal Extension</li>\n 	<li>Lateral Flexion</li>\n 	<li>Thoracic Rotation mobility</li>\n 	<li>Relevant iMoveFreely® exercises &amp; application</li>\n</ul>\n<strong>Spine Biomechanics Cont/d</strong>.. The Stability &amp; Control phase of training takes us to a deeper level in understanding ‘core training’ with a 3 Step assessment system.\n\n<strong>Step 1 - These Basic Core Capacity Progression Tests</strong> will help you gain a better understand of whether your client is even ready for core training.<span class=\"Apple-converted-space\"> </span>\n\n<strong>Step 2 - Core Ratios Testing</strong> is such a cool and evidence based way to determining risk.\n\n<strong>Step 3 - Finally Functional Stability Testing</strong> is essential to understand limitations from Aberrant lumbar motion, spinal hinging (kneeling and squatting) and cross pelvic syndromes.<span class=\"Apple-converted-space\"> </span>\n\nAll of the above comes with a restorative periodised exercise programmes strategy from the iMoveFreely® programme.<span class=\"Apple-converted-space\"> </span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">&gt;&gt;CLICK HERE TO BOOK HERE NOW&lt;&lt;</a></h1>\n\n<hr />\n\n&nbsp;\n\n<strong>References:</strong>\n\n<span style=\"font-weight: 400;\">British Medical Journal (2007) Diagnosis and treatment of sciatica. </span><a href=\"https://www.bmj.com/content/334/7607/1313\"><span style=\"font-weight: 400;\">https://www.bmj.com/content/334/7607/1313</span></a><span style=\"font-weight: 400;\"> - Accessed 18/05/21</span>\n\n<span style=\"font-weight: 400;\">Lewis, S. et al (2016) Anatomical variations of the sciatic nerve, in relation to the piriformis muscle. </span><span style=\"font-weight: 400;\">Elsevier</span><span style=\"font-weight: 400;\">. Vol 5, pp.15-19</span>\n\n<span style=\"font-weight: 400;\">Mayo Clinic (date unknown) Sciatica </span><a href=\"https://www.mayoclinic.org/diseases-conditions/sciatica/symptoms-causes/syc-20377435\"><span style=\"font-weight: 400;\">https://www.mayoclinic.org/diseases-conditions/sciatica/symptoms-causes/syc-20377435</span></a><span style=\"font-weight: 400;\"> - Accessed 18/05/21</span>\n\n<span style=\"font-weight: 400;\">NHS (2020) Sciatica </span><a href=\"https://www.nhs.uk/conditions/sciatica/\"><span style=\"font-weight: 400;\">https://www.nhs.uk/conditions/sciatica/</span></a><span style=\"font-weight: 400;\"> -  Accessed 18/05/21</span>\n\n<span style=\"font-weight: 400;\">Spine Health (2019) What you need to know about sciatica </span><a href=\"https://www.spine-health.com/conditions/sciatica/what-you-need-know-about-sciatica?source=pop-block\"><span style=\"font-weight: 400;\">https://www.spine-health.com/conditions/sciatica/what-you-need-know-about-sciatica?source=pop-block</span></a><span style=\"font-weight: 400;\"> - Accessed 18/05/21</span>\n\n&nbsp;','A PT\'s Guide to Sciatica - Part 1','','draft','closed','closed','','a-pts-guide-to-sciatica','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=27746',0,'post','',0),(27747,0,'2021-05-18 09:54:39','2021-05-18 09:54:39','','Medically,Accurate,Illustration,-,Sciatic,Nerve','','inherit','open','closed','','medicallyaccurateillustration-sciaticnerve','','','2021-05-18 09:54:39','2021-05-18 09:54:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_312582254-scaled-1.jpg',0,'attachment','image/jpeg',0),(27748,0,'2021-05-18 09:54:53','2021-05-18 09:54:53','','Sciatica,Pain,Symptoms,And,Diagnosis,Medical,Concept,As,A,Disease','','inherit','open','closed','','sciaticapainsymptomsanddiagnosismedicalconceptasadisease','','','2021-05-18 09:54:53','2021-05-18 09:54:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1311339359-scaled-1.jpg',0,'attachment','image/jpeg',0),(27749,0,'2021-05-18 09:55:34','2021-05-18 09:55:34','','Pinched,Human,Sciatic,Nerve,,Anatomical,Vision.,3d,Illustration.','','inherit','open','closed','','pinchedhumansciaticnerveanatomicalvision-3dillustration','','','2021-05-18 09:55:34','2021-05-18 09:55:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1648667119-scaled-1.jpg',0,'attachment','image/jpeg',0),(27750,0,'2021-05-18 09:56:41','2021-05-18 09:56:41','','Medically,Accurate,Illustration,-,Sciatic,Nerve','','inherit','open','closed','','medicallyaccurateillustration-sciaticnerve-2','','','2021-05-18 09:56:41','2021-05-18 09:56:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_312582254-1-scaled-1.jpg',0,'attachment','image/jpeg',0),(27751,0,'2021-05-18 09:56:51','2021-05-18 09:56:51','','Sciatica,Pain,Symptoms,And,Diagnosis,Medical,Concept,As,A,Disease','','inherit','open','closed','','sciaticapainsymptomsanddiagnosismedicalconceptasadisease-2','','','2021-05-18 09:56:51','2021-05-18 09:56:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1311339359-1-scaled-1.jpg',0,'attachment','image/jpeg',0),(27752,0,'2021-05-18 09:57:05','2021-05-18 09:57:05','','Pinched,Human,Sciatic,Nerve,,Anatomical,Vision.,3d,Illustration.','','inherit','open','closed','','pinchedhumansciaticnerveanatomicalvision-3dillustration-2','','','2021-05-18 09:57:05','2021-05-18 09:57:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1648667119-1-scaled-1.jpg',0,'attachment','image/jpeg',0),(27753,0,'2021-05-18 09:58:12','2021-05-18 09:58:12','','Screenshot 2021-05-18 at 10.58.01','','inherit','open','closed','','screenshot-2021-05-18-at-10-58-01','','','2021-05-18 09:58:12','2021-05-18 09:58:12','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/Screenshot-2021-05-18-at-10.58.01-1.png',0,'attachment','image/png',0),(27787,0,'2021-05-20 12:48:08','2021-05-20 12:48:08','','Pelvis Spine Biomechanics 2 day Workshop Manual AUG 2020 pdf','','inherit','open','closed','','pelvis-spine-biomechanics-2-day-workshop-manual-aug-2020-pdf','','','2021-05-20 12:48:08','2021-05-20 12:48:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/Pelvis-Spine-Biomechanics-2-day-Workshop-Manual-AUG-2020-pdf-1.pdf',0,'attachment','application/pdf',0),(27788,0,'2021-05-20 12:49:13','2021-05-20 12:49:13','','Shoulder Knee Foot Biomechanics Workshop Manual JAN 2021 version','','inherit','open','closed','','shoulder-knee-foot-biomechanics-workshop-manual-jan-2021-version','','','2021-05-20 12:49:13','2021-05-20 12:49:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/Shoulder-Knee-Foot-Biomechanics-Workshop-Manual-JAN-2021-version-1-1.pdf',0,'attachment','application/pdf',0),(27789,0,'2021-05-20 12:49:45','2021-05-20 12:49:45','','PROGRAMMING WORK SHEETS','','inherit','open','closed','','programming-work-sheets','','','2021-05-20 12:49:45','2021-05-20 12:49:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/PROGRAMMING-WORK-SHEETS-1-1.pdf',0,'attachment','application/pdf',0),(27790,0,'2021-05-20 12:49:56','2021-05-20 12:49:56','','SCREENING FORMS, TEMPLATES & EXERCISE SHEETS 2021','','inherit','open','closed','','screening-forms-templates-exercise-sheets-2021','','','2021-05-20 12:49:56','2021-05-20 12:49:56','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/SCREENING-FORMS-TEMPLATES-EXERCISE-SHEETS-2021-1.pdf',0,'attachment','application/pdf',0),(27791,0,'2021-05-20 12:50:14','2021-05-20 12:50:14','','NEWEST Screening Form Latest 2021','','inherit','open','closed','','newest-screening-form-latest-2021','','','2021-05-20 12:50:14','2021-05-20 12:50:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/NEWEST-Screening-Form-Latest-2021-1-1.pdf',0,'attachment','application/pdf',0),(27792,0,'2021-05-20 12:50:21','2021-05-20 12:50:21','','CAR 2021:22','','inherit','open','closed','','car-202122','','','2021-05-20 12:50:21','2021-05-20 12:50:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/CAR-202122-1.pdf',0,'attachment','application/pdf',0),(27793,0,'2021-05-20 12:50:26','2021-05-20 12:50:26','','Written Report Guidance 2021:22','','inherit','open','closed','','written-report-guidance-202122','','','2021-05-20 12:50:26','2021-05-20 12:50:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/Written-Report-Guidance-202122-1.pdf',0,'attachment','application/pdf',0),(27797,0,'2021-05-20 13:16:00','2021-05-20 13:16:00','','NEW LBP workshop manual DAY 1 2019','','inherit','open','closed','','new-lbp-workshop-manual-day-1-2019-2','','','2021-05-20 13:16:00','2021-05-20 13:16:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/NEW-LBP-workshop-manual-DAY-1-2019-1-1.pdf',0,'attachment','application/pdf',0),(27798,0,'2021-05-20 13:16:47','2021-05-20 13:16:47','','L4 LBP MANUAL day 2 2019','','inherit','open','closed','','l4-lbp-manual-day-2-2019','','','2021-05-20 13:16:47','2021-05-20 13:16:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/L4-LBP-MANUAL-day-2-2019-1-1.pdf',0,'attachment','application/pdf',0),(27802,0,'2021-05-20 13:31:11','2021-05-20 13:31:11','','iMoveFreely® Instructor Reconditioning Programme Workshop Mar 2020','','inherit','open','closed','','imovefreely-instructor-reconditioning-programme-workshop-mar-2020','','','2021-05-20 13:31:11','2021-05-20 13:31:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/iMoveFreely®-Instructor-Reconditioning-Programme-Workshop-Mar-2020-1.pdf',0,'attachment','application/pdf',0),(27868,3,'2021-06-14 11:49:19','2021-06-14 11:49:19','<span style=\"font-weight: 400;\">Last week we ended with the question…</span>\n\n&nbsp;\n\n<img class=\"wp-image-27962 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/tingey-injury-law-firm-9SKhDFnw4c4-unsplash-scaled.jpg\" alt=\"\" width=\"345\" height=\"230\" />\n<h2><b>Should we test client’s who have sciatica or sciatica symptoms?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In simple terms, without clinical (Allied Healthcare Practitioner or AHP) training/insurance the answer is</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">NO</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Since we are not </span><i><span style=\"font-weight: 400;\">qualified</span></i><span style=\"font-weight: 400;\"> in understanding the risks associated with clinical causes of sciatica. This also means our insurance could be invalid if we hurt someone with our advice.</span>\n\n&nbsp;\n<h2><b>Is there anything we CAN do?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">YES </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have a really important role in helping clients who have had or are at risk of sciatica. So let\'s dive into exactly what we CAN do….</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27965\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/ryan-snaadt-sEJpq3D2vMo-unsplash-scaled.jpg\" alt=\"\" width=\"760\" height=\"427\" />\n\n&nbsp;\n<h2><b>A PT\'s Role in sciatica symptomatic clients</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As movement practitioners we have a vital role in the prevention of common modern ailments like sciatica. However due to the complex nature of pain and symptoms combined with our lack of training in clinical understanding we cannot help clients with existing or perhaps \'acute\' sciatica. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So first let\'s look at risk factors associated with individuals at risk of sciatica.</span>\n\n<b>Risk factors </b>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Previous back injury can increase the risk of experiencing sciatica.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Normal ageing causes natural wearing of the joint surfaces potentially resulting in alterations of bones, ligaments and discs which may irritate the nerve</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Being overweight can cause a shear force due to the alteration in centre of gravity </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A physically active job that requires lots of lifting </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Diabetes can increase the risk of nerve damage </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Osteoarthritis could cause spine damage putting nerves at an increased risk</span></li>\n 	<li aria-level=\"1\"><span style=\"font-weight: 400;\">Smoking can result in the nicotine damaging spinal tissue, weakening bones and discs.</span></li>\n 	<li aria-level=\"1\">Sed<span style=\"font-weight: 400;\">entary lifestyle i.e. sitting for long periods reduces may compromise muscle function which may increase the risk of sciatic nerve irritation</span></li>\n 	<li aria-level=\"1\"><em><strong>Dy</strong></em><b><i>sfunction of muscles, joints or nerves coming from other parts of the body so the body compensates &amp; may alter the biomechanical load on the nerve</i></b></li>\n</ul>\n</li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So which of the above can we as trainers and coaches help with?</span>\n\n<span style=\"font-weight: 400;\">Some, but not all, right? </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Some things we cannot change, some we need to be mindful of and others are certainly what we are trained in helping with. However the more we understand our clients lifestyles, risk factors and health conditions the better we can be a part of the multidisciplinary team supporting them through behaviour change, better eating habits and also guided movement programming.</span>\n\n&nbsp;\n<h2><b>CLIENT EXAMPLE ONE </b></h2>\n&nbsp;\n<h2><b>Any client that is symptomatic</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">For a health and activity practitioner to work with a client with sciatica symptoms (diagnosed or not!) we MUST stay in our lane for an appropriate duty of care of the suffering client.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To keep within our scope of practise we might want to consider these factors:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly the client MUST have a diagnosis or clearance from someone who is qualified to do so.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THEN if the client approaches us we must ask them for the written report that guides us on what that AHP recommends or suggests of what we can or can\'t do. (*Keep your eye out for the SafetyNet project coming very soon).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once you have this guidance in a hard copy like a report or email, this protects everyone involved. It also gives you something to work from that creates increased confidence in what you CAN do.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Following the guidelines given to you in writing and using your own previous training along with common sense to support your client in moving well. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are some examples of diagnosis and treatment for sciatica made by an AHP.</span>\n\n&nbsp;\n<h2><b>Diagnosis &amp; Treatment of Sciatica </b></h2>\n&nbsp;\n<h3><b>Sciatic neuropathy</b><span style=\"font-weight: 400;\"> - this is when the body of the sciatic nerve is affected </span></h3>\n<h3><b>Herniated disks </b><span style=\"font-weight: 400;\">- causes about 90% of sciatic symptoms although new theories are being discussed, historically, these can occur when the first layer of the cartilage cracks. The thick, clear substance that is there to keep our clients mobile and cushioned can compress your sciatic nerve, causing leg pain and even numbness. </span></h3>\n<h3><b>Spinal stenosis - </b><span style=\"font-weight: 400;\">or lumbar spinal stenosis is an abnormal narrowing of your spinal canal. This narrowing can result in pressure on the spinal cord and sciatic nerve roots.</span></h3>\n<h3><b>Spondylolisthesis - </b><span style=\"font-weight: 400;\"> can be associated with degenerative disc conditions in seniors, but can be traumatic in juniors. When one vertebrae shunts forward over another, the extended spinal bone can pinch nerves that make up your sciatic nerve.</span></h3>\n<h3><b>Piriformis syndrome - </b><span style=\"font-weight: 400;\">is when the piriformis muscle involuntarily contracts or tightens, causing sciatica. </span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Treatment that is non operative is pain killers, physiotherapy or corticosteroid injections. </span>\n<h2></h2>\n<h2><b>CLIENT EXAMPLE TWO</b></h2>\n&nbsp;\n<h2><b>Asymptomatic client at increased risk of sciatica </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When there are no symptoms present but your client is overweight, has a history of back pain and sitting a lot there may be an increased risk of sciatica. However if we are happy after a full consultation that the individual is within our scope of practise we may be able to use some of the techniques listed below to reduce the risk of an onset of sciatica. </span>\n\n&nbsp;\n<h2><b>CLIENT EXAMPLE THREE</b></h2>\n&nbsp;\n<h2><b><em>Asymptomatic</em> client with ‘performance’ issues. </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">These are the ones we can certainly look at testing for sciatic nerve tension. They might say things like </span><span style=\"font-weight: 400;\">they don’t feel their glutes firing. They might say they aren\'t progressing in their lifts or running times. They may tell you they have tight hamstrings, as if it\'s a normal thing.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">…could these be warnings that they are at risk of sciatica? YUP possibly.</span>\n\n<span style=\"font-weight: 400;\">Go back and look at the last time on the list of risk factors again….did ya see? Pretty much every client eh! The lifestyles we all lead these days pose a threat to this common modern ailment.</span>\n\n&nbsp;\n<h2><b>How can we test sciatic nerve mobility?</b></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-27964\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/shutterstock_1756367075-scaled.jpg\" alt=\"\" width=\"556\" height=\"417\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes absolutely! In my opinion, anyone working with the human body should endeavour to gain MSK assessment skills for all the reasons you’re still reading this blog! PT’s included.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider that the nervous system is one single continuum, a kinetic chain effect if you like. This means that as we saw earlier symptoms can be felt in different parts of the body to the affected area. Sensations can travel down the legs to the toes for example. This can give us the ability to test and identify if a sensation is nerve tension or not. </span>\n\n&nbsp;\n\n&nbsp;\n<h2><b>Testing the sciatic nerve </b></h2>\n&nbsp;\n\nFundamentally my strongest advice is to attend a classroom based practical course that teaches you not only how to handle a client at risk of sciatica but also more objective/ evidence bases methods of assessing your client\'s body. During our <a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">Pelvic &amp; Spine Biomechanics Workshop</a>, not only will you receive 2 online classrooms to watch before during and after your training for revision and practise, you will also join us for 2 days of experiencing how to use practical evidence based skills of assessment. During these 2 jam packed days of practical assessment and exercise skills we will teach you how to use the Straight Leg Raise test for accurately identifying sciatic nerve tension along with more than 20 other physical assessments for the pelvis &amp; spine.\n\nThe fact you have attended a training session face to face means insurance companies will see your ability far more favourably than a practitioner who only has evidence of being trained online in these types of skills.\n\n&nbsp;\n\nHowever here is something to demonstrate how (with a client who does NOT have sciatica) we can potentially test for nerve tension literally on the gym floor/bench.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First of all it\'s important to understand the visco-elasticity of the nerves. The nerves don\'t really like to be stretched, and certainly not quickly, if they are stiff or immobile somewhere in the body. So when testing we must ask the client to move very slowly.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let\'s consider the anatomy of the sciatic nerve specifically and positions that mean the sciatic nerve becomes <em>tensioned.</em> For example the sciatica nerve passes down the back of the body and divides to pass down the back of both legs. This means w</span><span style=\"font-weight: 400;\">e could ask our client to sit with the hips at 90 degrees and if possible on a high seat or table that means both thighs are fully supported while the feet are hanging freely off the floor.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now asking the client to relax the hands behind the body like this:</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27973\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8673-scaled.jpg\" alt=\"\" width=\"361\" height=\"361\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We ask them to slowly start to slump forwards, rounding the back to lengthen the sciatica nerve in the upper body, if</span><span style=\"font-weight: 400;\"> they dont get any tension here then we ask them to start to extend one knee slowly like this:</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27974\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8671-scaled.jpg\" alt=\"\" width=\"372\" height=\"372\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Until they feel THE BEGINNING of tension or tightness.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If they do and this sensation is in the upper body ask them to stay in that position and to simply lower the leg like this:</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27975\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8674-scaled.jpg\" alt=\"\" width=\"374\" height=\"374\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If the sensation in the upper body changes in anyway this confirms nerve tension because the haven\'t altered the position of the area of the body were they felt the tension.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If however the sensation occurs in the lower body, ask them to simply lift the chin, like this:</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27976\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8675-scaled.jpg\" alt=\"\" width=\"390\" height=\"390\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If this results in a change of the sensation in their leg, again this confirms nerve tension because they aren\'t moving the leg to feel the change there.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In other words; by moving the opposite end of the body if the sensation changes in any way it will likely be nerve tension they are feeling as opposed to a muscle tension.</span>\n\n&nbsp;\n\nAlternatively they could also simply move the ankle like this since the nerve also passes behind the ankle;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27977\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8676-scaled.jpg\" alt=\"\" width=\"386\" height=\"386\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">NOTE: THIS IS NOT A DIAGNOSTIC TEST FOR SCIATICA - merely sciatic nerve mobility</span></h2>\n&nbsp;\n\nWhat I hope you will find interesting is that there is still a lot we can do for our clients when learning about what can happen when the sciatic nerve simply becomes tight which could indicate a risk of sciatica but also could present other movement problems....\n\n&nbsp;\n<h2><b>Interesting fact:</b></h2>\n&nbsp;\n<h2><b>Did you know…..</b></h2>\n&nbsp;\n<h2 style=\"text-align: center;\"><i><span style=\"font-weight: 400;\">It has been demonstrated that reduced nerve mobility inhibits muscle performance</span></i></h2>\n<h2 style=\"text-align: center;\"></h2>\n<h2 style=\"text-align: center;\"><span style=\"font-weight: 400;\">Greening J, Smart S, Leary R, Hall-Craggs M, </span></h2>\n<h2 style=\"text-align: center;\"><span style=\"font-weight: 400;\">O\'Higgins P, Lynn B , Butler, DS. Lancet. (1999)</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine the anatomy of the sciatic nerve and the closely related anatomy &amp; muscles we spoke about previously in <a href=\"https://www.biomechanicseducation.com/a-pts-guide-to-sciatica/\" target=\"_blank\" rel=\"noopener\">A PT\'s Guide to Sciatic Part 1 </a></span>\n\n<span style=\"font-weight: 400;\">Also consider how brilliant the body is at compensating for this by altering our client\'s muscle tone and therefore quality of movement </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider a seated leg extension exercise for example….</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27960\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8658.jpg\" alt=\"\" width=\"478\" height=\"473\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To perform this exercise the quads need to overcome:</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Gravity</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Set resistance </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Tension in opposing tissues </span>\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"2\"><span style=\"font-weight: 400;\">knee flexors</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"2\"><span style=\"font-weight: 400;\">knee capsule</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"2\"><span style=\"font-weight: 400;\">sciatic nerve </span></li>\n</ul>\n</li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">No.s 1 &amp; 2 I think we understand pretty well but let\'s take No. 3 into a bit more detail in relation to the sciatica nerve. </span><i><span style=\"font-weight: 400;\">The mechano-receptor activity in the sciatic nerve can inhibit the quadriceps contraction</span></i><span style=\"font-weight: 400;\">. What does this mean? Well this means that if the sciatic nerve is inhibited theoretically any of its links, anywhere in the body could impede the function or contraction efficiency of a muscle and in this example the function of the quads. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So much so in a study we saw improved quad strength output of 50% in 10 days AFTER using sciatic nerve mobilisations!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So there is a lot we CAN do while staying on our lane </span>\n\n&nbsp;\n<h1><b>NEXT TIME….</b></h1>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Can we mobilise the sciatica nerve? if so how?</span></h2>\n<p class=\"p1\">Planning how to mobilise the nerves in preparation for client’s sport or chosen activity</p>\n&nbsp;\n<h2 class=\"p1\">Finally did you know….?</h2>\n<p class=\"p1\"><span class=\"s1\">The risk factors listed here can start as biomechanical dysfunction</span><span class=\"Apple-converted-space\"> </span></p>\n\n<h3 class=\"p1\">Ok so what?<span class=\"Apple-converted-space\"> </span></h3>\n<p class=\"p1\">Well the best role we can play as PTs is in risk reduction, performance optimising &amp; appropriate referral</p>\n<p class=\"p1\">Otherwise known as PREHAB – <span class=\"s1\">I also like something I heard called MEHAB, My Rehab, quite nice for your PTs</span></p>\n<p class=\"p1\">We can also play a role in POST rehab</p>\n<p class=\"p1\">Since rehab programmes consist of exercise and THIS really is our expertise</p>\n&nbsp;\n\nReferences:\n\n<span style=\"font-weight: 400;\">B W Koes, M W van Tulder, W C Peul. (2007) Diagnosis and treatment of sciatica. The British Medical Journal. </span><span style=\"font-weight: 400;\">334</span><span style=\"font-weight: 400;\"> doi: </span><a href=\"https://doi.org/10.1136/bmj.39223.428495.BE\"><span style=\"font-weight: 400;\">https://doi.org/10.1136/bmj.39223.428495.BE</span></a><span style=\"font-weight: 400;\"> </span>\n\n<a href=\"https://www.sciencedirect.com/science/article/pii/S2214854X16300218#!\"><span style=\"font-weight: 400;\">Lewis, S. Jurak, J. Lee, C. Lewis, R. Gest,T</span></a><span style=\"font-weight: 400;\">.  (2016)  </span>Anatomical variations of the sciatic nerve, in relation to the piriformis muscle.<span style=\"font-weight: 400;\">Science Direct</span> <a href=\"https://www.sciencedirect.com/science/journal/2214854X/5/supp/C\"><span style=\"font-weight: 400;\">Volume 5</span></a><span style=\"font-weight: 400;\">, Pages 15-19</span>\n\n<span style=\"font-weight: 400;\">Spine-Health (2020) Sciatic Nerve Anatomy. </span><a href=\"https://www.spine-health.com/conditions/spine-anatomy/sciatic-nerve-anatomy\"><span style=\"font-weight: 400;\">https://www.spine-health.com/conditions/spine-anatomy/sciatic-nerve-anatomy</span></a><span style=\"font-weight: 400;\"> - accessed 7/6/21</span>\n\n<span style=\"font-weight: 400;\">TeachMeAnatomy (date unknown) The Sciatic Nerve </span><a href=\"https://teachmeanatomy.info/lower-limb/nerves/sciatic-nerve/\"><span style=\"font-weight: 400;\">https://teachmeanatomy.info/lower-limb/nerves/sciatic-nerve/</span></a><span style=\"font-weight: 400;\"> - accessed 7/6/21</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h1>Would you like to learn how to assess your client\'s sciatic nerve?</h1>\nWhy not join us for our extremely popular <a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">Pelvic &amp; Spine Biomechanics Workshop?</a>\n\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">Nottingham July 24th/25th</a>\n\nNottingham Sept 11th/12th\n\nLondon Sept 23rd/24th\n\n&nbsp;\n\n<img class=\"wp-image-23147 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6608-scaled.jpg\" alt=\"\" width=\"487\" height=\"325\" /><img class=\"wp-image-23146 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/DSC_7052-scaled.jpg\" alt=\"\" width=\"494\" height=\"329\" /><img class=\"wp-image-23145 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6730-scaled.jpg\" alt=\"\" width=\"503\" height=\"336\" /><img class=\"wp-image-23144 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6800-scaled.jpg\" alt=\"\" width=\"479\" height=\"320\" />','A PT\'s Guide to Sciatica - Part 2','','draft','closed','closed','','a-pts-guide-to-sciatica-part-2','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=27868',0,'post','',0),(27903,0,'2021-05-28 08:09:19','2021-05-28 08:09:19','','2O8A3005','','inherit','open','closed','','2o8a3005','','','2021-05-28 08:09:19','2021-05-28 08:09:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/2O8A3005-scaled-1.jpg',0,'attachment','image/jpeg',0),(27906,0,'2021-05-28 08:53:20','2021-05-28 08:53:20','','DSC03820','','inherit','open','closed','','dsc03820','','','2021-05-28 08:53:20','2021-05-28 08:53:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/DSC03820-scaled-1.jpg',0,'attachment','image/jpeg',0),(27907,0,'2021-05-28 08:54:45','2021-05-28 08:54:45','','1c9de0f0-a49f-43ce-86e9-db6a0425f88d','','inherit','open','closed','','1c9de0f0-a49f-43ce-86e9-db6a0425f88d','','','2021-05-28 08:54:45','2021-05-28 08:54:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/05/1c9de0f0-a49f-43ce-86e9-db6a0425f88d-1.jpg',0,'attachment','image/jpeg',0),(27960,0,'2021-06-01 08:39:17','2021-06-01 08:39:17','','IMG_8658','','inherit','open','closed','','img_8658','','','2021-06-01 08:39:17','2021-06-01 08:39:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8658-1.jpg',0,'attachment','image/jpeg',0),(27962,0,'2021-06-01 08:43:22','2021-06-01 08:43:22','','tingey-injury-law-firm-9SKhDFnw4c4-unsplash','','inherit','open','closed','','tingey-injury-law-firm-9skhdfnw4c4-unsplash','','','2021-06-01 08:43:22','2021-06-01 08:43:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/tingey-injury-law-firm-9SKhDFnw4c4-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(27963,0,'2021-06-01 08:47:44','2021-06-01 08:47:44','','Modern,Rehabilitation,Physiotherapy','','inherit','open','closed','','modernrehabilitationphysiotherapy','','','2025-03-18 12:09:28','2025-03-18 12:09:28','',42683,'https://biomechanicseducation.com/wp-content/uploads/2021/06/shutterstock_1067442071-scaled-1.jpg',0,'attachment','image/jpeg',0),(27964,0,'2021-06-01 08:47:55','2021-06-01 08:47:55','','Podiatry,And,Biomechanics,Session,With,A,Patient','','inherit','open','closed','','podiatryandbiomechanicssessionwithapatient','','','2021-06-01 08:47:55','2021-06-01 08:47:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/shutterstock_1756367075-scaled-1.jpg',0,'attachment','image/jpeg',0),(27965,0,'2021-06-01 08:53:27','2021-06-01 08:53:27','','ryan-snaadt-sEJpq3D2vMo-unsplash','','inherit','open','closed','','ryan-snaadt-sejpq3d2vmo-unsplash','','','2021-06-01 08:53:27','2021-06-01 08:53:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/ryan-snaadt-sEJpq3D2vMo-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(27966,0,'2021-06-01 08:53:33','2021-06-01 08:53:33','','ryan-snaadt-qCPUBf1ek-Y-unsplash','','inherit','open','closed','','ryan-snaadt-qcpubf1ek-y-unsplash','','','2021-06-01 08:53:33','2021-06-01 08:53:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/ryan-snaadt-qCPUBf1ek-Y-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(27967,0,'2021-06-01 08:53:39','2021-06-01 08:53:39','','ryan-snaadt-1hI7tt6FMQg-unsplash','','inherit','open','closed','','ryan-snaadt-1hi7tt6fmqg-unsplash','','','2021-06-01 08:53:39','2021-06-01 08:53:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/ryan-snaadt-1hI7tt6FMQg-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(27968,0,'2021-06-01 08:53:46','2021-06-01 08:53:46','','annie-spratt-oQfSHQ2Uaic-unsplash','','inherit','open','closed','','annie-spratt-oqfshq2uaic-unsplash','','','2021-06-01 08:53:46','2021-06-01 08:53:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/annie-spratt-oQfSHQ2Uaic-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(27969,0,'2021-06-01 08:53:54','2021-06-01 08:53:54','','ryan-snaadt-NZ35JeEUfls-unsplash','','inherit','open','closed','','ryan-snaadt-nz35jeeufls-unsplash','','','2021-06-01 08:53:54','2021-06-01 08:53:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/ryan-snaadt-NZ35JeEUfls-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(27970,0,'2021-06-01 08:54:00','2021-06-01 08:54:00','','sule-makaroglu-PnUYkTFkOD0-unsplash','','inherit','open','closed','','sule-makaroglu-pnuyktfkod0-unsplash','','','2021-06-01 08:54:00','2021-06-01 08:54:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/sule-makaroglu-PnUYkTFkOD0-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(27971,0,'2021-06-01 08:54:07','2021-06-01 08:54:07','','victor-freitas-nlZTjUZX2qo-unsplash','','inherit','open','closed','','victor-freitas-nlztjuzx2qo-unsplash','','','2021-06-01 08:54:07','2021-06-01 08:54:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/victor-freitas-nlZTjUZX2qo-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(27972,0,'2021-06-01 09:16:01','2021-06-01 09:16:01','','IMG_8670','','inherit','open','closed','','img_8670','','','2021-06-01 09:16:01','2021-06-01 09:16:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8670-scaled-1.jpg',0,'attachment','image/jpeg',0),(27973,0,'2021-06-01 09:20:15','2021-06-01 09:20:15','','IMG_8673','','inherit','open','closed','','img_8673','','','2021-06-01 09:20:15','2021-06-01 09:20:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8673-scaled-1.jpg',0,'attachment','image/jpeg',0),(27974,0,'2021-06-01 09:20:20','2021-06-01 09:20:20','','IMG_8671','','inherit','open','closed','','img_8671','','','2021-06-01 09:20:20','2021-06-01 09:20:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8671-scaled-1.jpg',0,'attachment','image/jpeg',0),(27975,0,'2021-06-01 09:20:26','2021-06-01 09:20:26','','IMG_8674','','inherit','open','closed','','img_8674','','','2021-06-01 09:20:26','2021-06-01 09:20:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8674-scaled-1.jpg',0,'attachment','image/jpeg',0),(27976,0,'2021-06-01 09:23:15','2021-06-01 09:23:15','','IMG_8675','','inherit','open','closed','','img_8675','','','2021-06-01 09:23:15','2021-06-01 09:23:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8675-scaled-1.jpg',0,'attachment','image/jpeg',0),(27977,0,'2021-06-01 09:23:21','2021-06-01 09:23:21','','IMG_8676','','inherit','open','closed','','img_8676','','','2021-06-01 09:23:21','2021-06-01 09:23:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8676-scaled-1.jpg',0,'attachment','image/jpeg',0),(27994,0,'2021-06-02 07:31:09','2021-06-02 07:31:09','','anupam-mahapatra-Vz0RbclzG_w-unsplash','','inherit','open','closed','','anupam-mahapatra-vz0rbclzg_w-unsplash','','','2021-06-02 07:31:09','2021-06-02 07:31:09','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/anupam-mahapatra-Vz0RbclzG_w-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(28024,0,'2021-06-04 08:25:57','2021-06-04 08:25:57','','Dr Gary Mendoza','','inherit','open','closed','','dr-gary-mendoza','','','2021-06-04 08:25:57','2021-06-04 08:25:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/Dr-Gary-Mendoza-1.png',0,'attachment','image/png',0),(28083,0,'2021-06-07 12:37:02','2021-06-07 12:37:02','','Diploma Handbook NEW 2021','','inherit','open','closed','','diploma-handbook-new-2021','','','2021-06-07 12:37:02','2021-06-07 12:37:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/Diploma-Handbook-NEW-2021-1.pdf',0,'attachment','application/pdf',0),(28280,0,'2021-06-20 09:45:08','2021-06-20 09:45:08','','IMG_7323','','inherit','open','closed','','img_7323','','','2021-06-20 09:45:08','2021-06-20 09:45:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/IMG_7323-1.jpg',0,'attachment','image/jpeg',0),(28326,3,'2021-06-23 14:22:38','2021-06-23 14:22:38','&nbsp;\n\n<span style=\"font-weight: 400;\">If you have found this blog but not yet <a href=\"https://www.biomechanicseducation.com/blog/\" target=\"_blank\" rel=\"noopener\">read Part 1 &amp; Part 2 please go &amp; read them first</a> to get the most out of Part 3.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are on a mission to help PTs with skills in an assessment system that, from the evidence, guides us in pre &amp; post rehab exercise prescription techniques. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The techniques, including the nerve mobilisation described here, are NOT recommended for someone with acute symptoms </span>\n\n<span style=\"font-weight: 400;\">This client MUST seek medical advice PRIOR to working with an exercise professional or manual therapist </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However to REDUCE RISK of the onset sciatica this nerve mobilisation technique can be prescribed, and is really great, as part of a progressive movement preparation programme, like iMoveFreely. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once we have assessed their intrinsic biomechanics to better understand how to prepare them for our exercise programme our planning becomes far more bespoke to that individual &amp; their biomechanics. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If they demonstrate a tight sciatic nerve during the nerve range (lower limb tension) test we can potentially reduce risk of sciatica by prescribing a nerve gliding technique as part of their warm up</span>\n\n&nbsp;\n<h2><b>Preparation is key!</b></h2>\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s probably prudent to begin with muscle energy techniques, like the iMoveFreely 20/20, to improve the function of the muscles that relate to the sciatic nerve pathway first.</span>\n\n&nbsp;\n<h2>The 4 Sign Test &amp; Exercise</h2>\nhttps://youtu.be/_Lkur9ZcNXw\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This could be followed by subtle pure spine mobility drills, like knee rolls &amp; pelvic tilts taught in our iMoveFreely Instructor programme workshop, to prepare &amp; mobilise the nerve roots in advance of the slump. </span>\n\n&nbsp;\n\n&nbsp;\n<h2>Lumbar Tilts &amp; Knee Rolls</h2>\nhttps://youtu.be/IKdmb5L5uh8\n\n&nbsp;\n\n&nbsp;\n<h2><b>The slump nerve mobilisation technique</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Nerve mobilisation techniques require an understanding of nerve anatomy. The idea is to gradually lengthen the nerve to the point of feeling the beginning of tension. Then once the client feels the beginning of tension, we reduce it at a single joint then add it back on &amp; repeat slowly to gently ‘mobilise’ the nerve. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Moving very slowly in &amp; out of that start of tension is a really nice &amp; safe way to calm the tension down. It desensitises the nerve tension &amp; allows for improved range of motion. It could also cue muscles &amp; joints towards improved functionality too. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The slump looks almost identical to the lower limb tension test or SLR we covered last time in part 2 &gt;&gt;HERE.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By coaching your client into gradually lengthening the nervous system that relates to the sciatic nerve, we can ‘find the beginning of tension’ then reduce it at a single joint &amp; repeat SLOWLY 8 times on each leg.</span>\n\n<span style=\"font-weight: 400;\">Ideally doing one leg at a time since they may feel tension earlier in one side &amp; this allows for control over the exercise.</span>\n\n&nbsp;\n\n&nbsp;\n\nhttps://youtu.be/xMDNnhoXWRs\n\n&nbsp;\n<h2><b>Our Role</b></h2>\n&nbsp;\n\n<img class=\"wp-image-27966 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/ryan-snaadt-qCPUBf1ek-Y-unsplash-scaled.jpg\" alt=\"\" width=\"588\" height=\"331\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So we can plan how to mobilise the nerves in preparation for our client’s sport or chosen activity. As PTs its really all about risk reduction &amp; performance optimisation which could be known as PREHAB &amp; for some maybe even post rehab. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe even ME-HAB for ‘My Rehab’ which is exactly what a Biomechanics Coaches skill is in creating bespoke movement programmes that are progressive, regressive where necessary &amp; with continuous evaluation &amp; monitoring.  </span>\n\n&nbsp;\n<h2>Did you find this series helpful?</h2>\n<h2>What would you like us to write about in out next guide?</h2>\n<h2>Why not hit reply &amp; send your feedback?</h2>\n&nbsp;\n\n<hr />\n\n<h2><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Would you like to learn how to fully assess your clients biomechanics? - no expensive equipment required!</a></h2>\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Join the team! We promise all our Biomechanics Coaches support for life!</a>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">From £100 per month we can teach you how to perform a full biomechanical assessment on your clients, also how to use them to attract new clients &amp; charge more while feeling confident about all of these changes.</a>\n\nWe NEED YOU!\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Ask any Biomechanics Coach how its changed the way they think by following a very simply evidence based system. </a>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">CLICK ANY OF THE TEXT HERE TO REGISTER YOUR INTEREST</a>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-28328\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1709\" />\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-28329\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1709\" />','A PT\'s Guide to Sciatica - Part 3','','draft','closed','closed','','a-pts-guide-to-sciatica-part-3','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=28326',0,'post','',0),(28328,0,'2021-06-23 14:12:03','2021-06-23 14:12:03','','DSC_6687','','inherit','open','closed','','dsc_6687','','','2021-06-23 14:12:03','2021-06-23 14:12:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-scaled-1.jpg',0,'attachment','image/jpeg',0),(28329,0,'2021-06-23 14:13:42','2021-06-23 14:13:42','','DSC_6770','','inherit','open','closed','','dsc_6770','','','2021-06-23 14:13:42','2021-06-23 14:13:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-scaled-1.jpg',0,'attachment','image/jpeg',0),(28385,0,'2021-06-28 14:51:33','2021-06-28 14:51:33','','jenny-hill-mQVWb7kUoOE-unsplash','','inherit','open','closed','','jenny-hill-mqvwb7kuooe-unsplash','','','2021-06-28 14:51:33','2021-06-28 14:51:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/04/jenny-hill-mQVWb7kUoOE-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(28470,0,'2021-07-04 15:54:00','2021-07-04 15:54:00','','AMY LINFORD PHOTO','','inherit','open','closed','','amy-linford-photo','','','2021-07-04 15:54:00','2021-07-04 15:54:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/AMY-LINFORD-PHOTO-2.jpg',0,'attachment','image/jpeg',0),(28471,0,'2021-07-04 16:04:16','2021-07-04 16:04:16','','AMY LINFORD PHOTO','','inherit','open','closed','','amy-linford-photo-2','','','2021-07-04 16:04:16','2021-07-04 16:04:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/AMY-LINFORD-PHOTO-1-1.jpg',0,'attachment','image/jpeg',0),(28483,3,'2021-07-05 13:28:09','2021-07-05 13:28:09','<h1><b>Discussion vs Debate vs Dialectic - Part 1 </b></h1>\n&nbsp;\n<ul>\n 	<li style=\"text-align: left;\"><span style=\"font-weight: 400;\">Ever felt cyber bullied? Trolled? Attacked by a keyboard warrior? </span></li>\n 	<li style=\"text-align: left;\"><span style=\"font-weight: 400;\">Did you get annoyed and want to give them a piece of your mind? </span></li>\n 	<li style=\"text-align: left;\"><span style=\"font-weight: 400;\">Were you unable to type quickly enough, you were so frustrated and wanted to respond immediately?</span></li>\n 	<li style=\"text-align: left;\"><span style=\"font-weight: 400;\">Yet at the same time did you wonder.....<em>why this idiot is making you feel so emotional and irrational</em>? </span></li>\n 	<li style=\"text-align: left;\"><span style=\"font-weight: 400;\">Did you feel cyber rage?</span></li>\n 	<li style=\"text-align: left;\"><span style=\"font-weight: 400;\">Maybe the experience has changed the way you interact online?</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Communication is something we do every day, all the time &amp; mostly without too much thought. However our success in gaining clients, keeping them &amp; serving them is ALL down to how well we communicate. Social media may well be a key place for you to gain new clients </span><span style=\"font-weight: 400;\">BUT maybe social media isn\'t the best way to learn how to communicate OR maybe it\'s a good way to learn what not to do? </span>\n\n<span style=\"font-weight: 400;\">Good practise is to consistently challenge the way we do things, evaluate how well it works and alter when/where necessary with new techniques when things don\'t work out the way we would like. A good way of looking at this is that very failure is a lesson on what not to do. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In these 2 x Juicemail blogs we will explore some of the ways we share information, and what the evidence suggests, to enable us to plan how we might improve the way we communicate for all of the reasons above...and more!</span>\n\n&nbsp;\n<h1>Discussion</h1>\n&nbsp;\n\n<img class=\"wp-image-28488 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/peggy-anke-SjeRPKfVDj8-unsplash-scaled.jpg\" alt=\"\" width=\"422\" height=\"281\" />\n\n<span style=\"font-weight: 400;\">An interaction on social media, or with a client, for example maybe in the form of a discussion. To define this.....</span>\n\n&nbsp;\n<h2><b><i>Discussion:</i></b><i><span style=\"font-weight: 400;\"> the action or process of talking about something in order to reach a decision or to exchange ideas. a conversation or debate about a specific topic.</span></i></h2>\n&nbsp;\n<h1></h1>\n<h1></h1>\n<h1></h1>\n<h1></h1>\n<h1>Debate</h1>\n&nbsp;\n\n<img class=\"wp-image-28489 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/geron-dison-9_FmYJTSYTU-unsplash-scaled.jpg\" alt=\"\" width=\"517\" height=\"291\" />\n\n<span style=\"font-weight: 400;\">Debating on social media is more often than not the defence of an opinion which is based on bias, the individual’s view of the world, experience &amp; education &amp; it certainly has its place….</span>\n\n&nbsp;\n<h2><b><i>Debate</i></b><i><span style=\"font-weight: 400;\"> is a (formal) discussion on a particular matter in a public meeting……. in which opposing arguments are put forward….</span></i><i><span style=\"font-weight: 400;\">argue abou</span></i><i><span style=\"font-weight: 400;\">t...</span></i></h2>\n&nbsp;\n<h1></h1>\n<h1></h1>\n<h1></h1>\n<h1>Dialectic</h1>\n&nbsp;\n\n<img class=\"wp-image-28490 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/cardmapr-nl-LQZQM_z1b-s-unsplash-scaled.jpg\" alt=\"\" width=\"459\" height=\"307\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However in research papers, some describe the goal as being ‘</span><i><span style=\"font-weight: 400;\">dialectical</span></i><span style=\"font-weight: 400;\">’. So I wanted to share this with you to see what you think….</span>\n\n&nbsp;\n<h2><b><i>Dialectic</i></b><i><span style=\"font-weight: 400;\"> is defined as the art of determining the truth by the logical exchange of ideas…... </span></i></h2>\n<h2><i><span style=\"font-weight: 400;\">Engels (2006) discusses </span></i><b><i>three principal laws of dialectics</i></b><i><span style=\"font-weight: 400;\">: the </span></i><b><i>law</i></b><i><span style=\"font-weight: 400;\"> of the transformation of quantity into quality, and vice versa; the </span></i><b><i>law</i></b><i><span style=\"font-weight: 400;\"> of the interpenetration of opposites; and the </span></i><b><i>law</i></b><i><span style=\"font-weight: 400;\"> of the negation of the negation.</span></i></h2>\n<h2><a href=\"https://www.merriam-webster.com/dictionary/dialect\"><i><span style=\"font-weight: 400;\">Dialect</span></i></a><i><span style=\"font-weight: 400;\"> and </span></i><i><span style=\"font-weight: 400;\">dialectic</span></i><i><span style=\"font-weight: 400;\"> come from </span></i><i><span style=\"font-weight: 400;\">dialecktos</span></i><i><span style=\"font-weight: 400;\"> (“conversation” or “dialect”) </span></i></h2>\n&nbsp;\n\n&nbsp;\n<h2></h2>\n<h2></h2>\n<h1><b>So What?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all have our own bias, myself included, our own view of the world based on our personal environment &amp; experiences. </span>\n\n&nbsp;\n<h2><em><span style=\"font-weight: 400;\">..bias has the potential for confining &amp; limiting our beliefs, thinking, conceptualisation &amp; depth of understanding. </span></em></h2>\n&nbsp;\n<h2><b>The Difference Between Dialectic, Discussion &amp; Debate</b></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-28491\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_436476886-scaled.jpg\" alt=\"\" width=\"1098\" height=\"491\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When having a debate we are </span><i><span style=\"font-weight: 400;\">defending</span></i><span style=\"font-weight: 400;\"> our view using our bias or perceived logic. So a debate if done diplomatically can be great!</span>\n\n<span style=\"font-weight: 400;\">However typed words can lose tone or gain an inappropriate tone if read a certain way, so a debate typed out online can be frustratingly challenging. The nuances of human interaction are lost online so choice of wording becomes more important &amp; if we type how we speak we may lose some of the quality of the content of our expression.</span>\n\n&nbsp;\n<ul>\n 	<li><span style=\"font-weight: 400;\">Can we present ideas, justifications &amp; thoughts with a willingness to be challenged? </span></li>\n 	<li><span style=\"font-weight: 400;\">Can we be open to an alternative view? </span></li>\n 	<li><span style=\"font-weight: 400;\">Can we provide valid evidence of the theory or idea from a valid source?</span></li>\n 	<li>How does OUR online presence affect our ability to gain new clients?</li>\n 	<li>Could learning new communication skills improve our exposure to new clients?</li>\n</ul>\n<span style=\"font-weight: 400;\">Cyber confusion is something surely we have all experienced in some way &amp; inspired me to find solutions to this problem. Trust me I have got communicating on social media completely wrong &amp; Ive even kicked myself when with clients face to face when I felt it didn\'t go as I had hoped for some reason. By using a self reflection journal &amp; critically analysing my techniques regularly this has guided my CPD choice to find education that isn\'t just a new \'movement\' skill. </span>\n\nCommunication skills are possibly the most underrated CPD you can do as a practitioner of movement, since they are a skill we generally feel quite good at BUT as suggested....we should CHALLENGE EVERYTHING!\n\n<span style=\"font-weight: 400;\">Considering these ideas are not limited to online communication &amp; can also improve our face to face interactions with client\'s for adherence &amp; retention as well as success in behaviour change.....</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">NEXT TIME - We will explore the concept of ‘dialectical’ behaviour therapy when designing our consultations to improve adherence &amp; long term success through empowerment.</span></h2>\n<h1>How Can We Improve Client Adherence?</h1>\n<h2><b>Motivational Interviewing &amp; </b><b>Dialectical (Behaviour Therapy) Techniques </b><b>- Part 2</b></h2>\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-28492 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/mimi-thian-lp1AKIUV3yo-unsplash-scaled.jpg\" alt=\"\" width=\"570\" height=\"428\" />\n\n&nbsp;\n\n&nbsp;\n<h2><em>Would you like some practical consultation skills to compliment these communication skills? </em></h2>\n<h2><em>Why not join us for some intrinsic biomechanics - the simple \'biomechanics\' !</em></h2>\n<h2><em>While some dates are fully booked, we still have a few places for Belfast, Nottingham and London </em></h2>\n<h3></h3>\n<img class=\"wp-image-28329 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-scaled.jpg\" alt=\"\" width=\"513\" height=\"342\" />\n<h3 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">Click here for just Pelvic &amp; Spine Biomechanics Workshop.</a></h3>\n<h3 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/product/shoulder-knee-foot-biomechanics-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">Click here for just Shoulder, Knee &amp; Foot Biomechanics Workshop</a></h3>\n<h3 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/low-back-health-workshops/\" target=\"_blank\" rel=\"noopener\">Click here for just Low Back Health Workshop</a></h3>\n\n<hr />\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Click here for all 3 of the above -  Diploma in Biomechanics Coaching </a></p>\n\n<h2 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">From just £100 per month </a></h2>\n<h2></h2>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2><b>References;</b></h2>\n<span style=\"font-weight: 400;\">Dimeff, L., McDavid, J. and Linehan, M., 1999. Journal search results. </span><i><span style=\"font-weight: 400;\">Journal of Clinical Psychology in Medical Settings</span></i><span style=\"font-weight: 400;\">, 6(1), pp.113-138.</span>\n\n<span style=\"font-weight: 400;\">Kaufman, E., Douaihy, A. and Goldstein, T., 2021. Dialectical Behavior Therapy and Motivational Interviewing: Conceptual Convergence, Compatibility, and Strategies for Integration. </span><i><span style=\"font-weight: 400;\">Cognitive and Behavioral Practice</span></i><span style=\"font-weight: 400;\">, 28(1), pp.53-65.</span>\n\n<span style=\"font-weight: 400;\">Merriam-webster.com. 2021. </span><i><span style=\"font-weight: 400;\">Definition of DIALECTIC</span></i><span style=\"font-weight: 400;\">. [online] Available at: &lt;https://www.merriam-webster.com/dictionary/dialectic&gt; [Accessed 5 July 2021].</span>\n\n<span style=\"font-weight: 400;\">Robins, C., 1999. A dialectical behavior therapy perspective on the case of anna. </span><i><span style=\"font-weight: 400;\">Cognitive and Behavioral Practice</span></i><span style=\"font-weight: 400;\">, 6(1), pp.60-68.</span>\n\n<span style=\"font-weight: 400;\">Slater, E., 2017. Engels on Ireland’s Dialectics of Nature. </span><i><span style=\"font-weight: 400;\">Capitalism Nature Socialism</span></i><span style=\"font-weight: 400;\">, 29(4), pp.31-50.</span>\n\n<span style=\"font-weight: 400;\">Swales, M., 2009. Dialectical Behaviour Therapy: Description, research and future directions. </span><i><span style=\"font-weight: 400;\">International Journal of Behavioral Consultation and Therapy</span></i><span style=\"font-weight: 400;\">, 5(2), pp.164-177.</span>\n\n<hr />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Ever been attacked a Keyboard Warrior?','','draft','closed','closed','','ever-been-attacked-a-keyboard-warrior','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=28483',0,'post','',0),(28484,0,'2021-07-05 12:31:41','2021-07-05 12:31:41','','Senior,Man,And,Personal,Trainer,Writing,Results,On,A,Clipboard','','inherit','open','closed','','seniormanandpersonaltrainerwritingresultsonaclipboard','','','2021-07-05 12:31:41','2021-07-05 12:31:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_515526265-scaled-1.jpg',0,'attachment','image/jpeg',0),(28485,0,'2021-07-05 12:32:17','2021-07-05 12:32:17','','Young,Female,And,Her,Fitness,Instructor,Are,Having,Conversation,At','','inherit','open','closed','','youngfemaleandherfitnessinstructorarehavingconversationat','','','2021-07-05 12:32:17','2021-07-05 12:32:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_624551885-scaled-1.jpg',0,'attachment','image/jpeg',0),(28486,0,'2021-07-05 12:36:54','2021-07-05 12:36:54','','Group,Of,Yong,People,Using,Smart,Phone,For,Social,Media','','inherit','open','closed','','groupofyongpeopleusingsmartphoneforsocialmedia','','','2021-07-05 12:36:54','2021-07-05 12:36:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_793347169-scaled-1.jpg',0,'attachment','image/jpeg',0),(28487,0,'2021-07-05 12:38:16','2021-07-05 12:38:16','','Funny,Man,In,Helmet,With,Shotgun,Sitting,On,The,Floor','','inherit','open','closed','','funnymaninhelmetwithshotgunsittingonthefloor','','','2021-07-05 12:38:16','2021-07-05 12:38:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_409451293-scaled-1.jpg',0,'attachment','image/jpeg',0),(28488,0,'2021-07-05 12:39:08','2021-07-05 12:39:08','','peggy-anke-SjeRPKfVDj8-unsplash','','inherit','open','closed','','peggy-anke-sjerpkfvdj8-unsplash','','','2021-07-05 12:39:08','2021-07-05 12:39:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/peggy-anke-SjeRPKfVDj8-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(28489,0,'2021-07-05 12:40:15','2021-07-05 12:40:15','','geron-dison-9_FmYJTSYTU-unsplash','','inherit','open','closed','','geron-dison-9_fmyjtsytu-unsplash','','','2021-07-05 12:40:15','2021-07-05 12:40:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/geron-dison-9_FmYJTSYTU-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(28490,0,'2021-07-05 12:41:18','2021-07-05 12:41:18','','cardmapr-nl-LQZQM_z1b-s-unsplash','','inherit','open','closed','','cardmapr-nl-lqzqm_z1b-s-unsplash','','','2021-07-05 12:41:18','2021-07-05 12:41:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/cardmapr-nl-LQZQM_z1b-s-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(28491,0,'2021-07-05 12:42:37','2021-07-05 12:42:37','','Social,Media,Online,Connect,Wireless,Technology,Concept','','inherit','open','closed','','socialmediaonlineconnectwirelesstechnologyconcept','','','2021-07-05 12:42:37','2021-07-05 12:42:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_436476886-scaled-1.jpg',0,'attachment','image/jpeg',0),(28492,0,'2021-07-05 13:10:43','2021-07-05 13:10:43','','mimi-thian-lp1AKIUV3yo-unsplash','','inherit','open','closed','','mimi-thian-lp1akiuv3yo-unsplash','','','2021-07-05 13:10:43','2021-07-05 13:10:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/mimi-thian-lp1AKIUV3yo-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(28513,0,'2021-07-06 13:09:44','2021-07-06 13:09:44','','WEBSITE PDF FOOT ANATOMY PART 5','','inherit','open','closed','','website-pdf-foot-anatomy-part-5','','','2021-07-06 13:09:44','2021-07-06 13:09:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/WEBSITE-PDF-FOOT-ANATOMY-PART-5-1.pdf',0,'attachment','application/pdf',0),(28514,0,'2021-07-06 13:19:57','2021-07-06 13:19:57','','WEBSITE PDF PARTS 1-5','','inherit','open','closed','','website-pdf-parts-1-5','','','2021-07-06 13:19:57','2021-07-06 13:19:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/WEBSITE-PDF-PARTS-1-5-1.pdf',0,'attachment','application/pdf',0),(28516,0,'2021-07-06 13:35:22','2021-07-06 13:35:22','','Screenshot 2021-07-06 at 14.34.49','','inherit','open','closed','','screenshot-2021-07-06-at-14-34-49','','','2021-07-06 13:35:22','2021-07-06 13:35:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/Screenshot-2021-07-06-at-14.34.49-1.png',0,'attachment','image/png',0),(28517,0,'2021-07-06 13:39:23','2021-07-06 13:39:23','','Screenshot 2021-07-06 at 14.38.57','','inherit','open','closed','','screenshot-2021-07-06-at-14-38-57','','','2021-07-06 13:39:23','2021-07-06 13:39:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/Screenshot-2021-07-06-at-14.38.57-1.png',0,'attachment','image/png',0);
INSERT INTO `6m7_posts` VALUES (28615,3,'2021-07-12 13:51:20','2021-07-12 13:51:20','<span style=\"font-weight: 400;\">Client’s come to us to change their behaviour in some way because they are seeking to increase their confidence in something. It is pretty much always that they wish to achieve confidence in how they look, feel or move…or a combination of these...even though they may not explain it this way. They usually say something like….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">I\'d like to lose weight”</span></i><span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">I want to build muscles/tone up</span></i><span style=\"font-weight: 400;\">”</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">I want to feel stronger and fitter</span></i><span style=\"font-weight: 400;\">”</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">I wish I didn\'t have these aches and pains</span></i><span style=\"font-weight: 400;\">”</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">I want to get rid of my belly fat</span></i><span style=\"font-weight: 400;\">”</span>\n\n<i><span style=\"font-weight: 400;\">“My clothes no longer fit”</span></i>\n\n<i><span style=\"font-weight: 400;\">“I want to run a half marathon”</span></i>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-28621\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_1364554769-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1304\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Inevitably we view the answer as simple and that, with our skills, we can simply tell them what to do since that’s what we learned on our fitness qualification or therapy training...right!?</span>\n\n<span style=\"font-weight: 400;\">Yet adherence and/or long term success is far more challenging than it first seems. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In our ‘fit pro’ minds it\'s really easy!! Eg: </span><i><span style=\"font-weight: 400;\">Move more, eat less</span></i><span style=\"font-weight: 400;\">!...then why doesn\'t this work long term for so many?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, yes it is that simple but it still doesn\'t work to simply tell them what to do because it\'s not just the facts of calories in &amp; out...pretty much every client knows this concept &amp; it\'s really </span><i><span style=\"font-weight: 400;\">simple</span></i><span style=\"font-weight: 400;\"> to communicate….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“.....</span><i><span style=\"font-weight: 400;\">move more, eat less</span></i><span style=\"font-weight: 400;\">….”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">….yet it still doesn\'t help..so what is it? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They also know what they are doing wrong in terms of those food binges or long periods sitting still at their desk...SO WHAT IS IT?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...and more importantly, how can we help?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should maybe consider attending a CPD in communication &amp; consulting tactics to help our clients with their goals. Motivational interviewing techniques are an evidenced based model of approaching our consultation style for example.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having recently experienced Dr Gary Mendoza’s Behaviour Change &amp; Motivational Interviewing (MI) online course a key component that came from his research was to avoid simply giving information, even when asked. Instead employing a more ‘client centred’ approach (Rogers.C, 1983) with a dialectical style to it. The techniques Gary taught us were, at first, a challenge to implement, because they felt so different to the way consultations usually go. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Usually we</span> <span style=\"font-weight: 400;\">ask questions, the client responds &amp; this repeats until we have gathered what we feel is enough data. Then we offer our ideas based upon what the client has said, our education, experience &amp; our practice.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However the evidence behind MI &amp; these dialectical techniques is gaining strength &amp; credibility. Offering increased success for adherence &amp; long term results from enhancing a client’s motivation &amp; ability to change with the use of a ‘client centred’ approach. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When applying them they produce a difference in the </span><i><span style=\"font-weight: 400;\">quality</span></i><span style=\"font-weight: 400;\"> of the information gained from clients, this was immediately obvious in my experience during my training &amp; with clients since I completed the course. Basically it\'s changed the way I communicate with clients. </span>\n\n&nbsp;\n<h2><b>What is Motivational Interviewing (MI)?</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-28622\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_1068924428-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1440\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">MI skills empower the client to create their own solutions, since </span><b><i>they are the experts in themselves</i></b><span style=\"font-weight: 400;\">.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Gary’s research in utilising MI techniques to support individuals through a weight loss programme for example found that it had a profound effect on increasing the likelihood of subjects, not only succeeding in their weight loss goals in the short term but also in the long term. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Simple tactics like O.A.R.S help to structure a consultation to have a ‘client\'s centred’ approach. </span>\n\n&nbsp;\n\n<b>O</b><span style=\"font-weight: 400;\">pen questions - builds rapport, to gain clarity &amp; understanding of the clients world. </span>\n\n<b>A</b><span style=\"font-weight: 400;\">ffirmations - build clients\' self efficacy &amp; confidence.</span>\n\n<b>R</b><span style=\"font-weight: 400;\">eflections - to demonstrate empathy, they are valued &amp; heard. </span>\n\n<b>S</b><span style=\"font-weight: 400;\">ummary - confirm understanding &amp; move session to a close. </span>\n\n&nbsp;\n\n<a href=\"https://stagesofchange.co.uk/\" target=\"_blank\" rel=\"noopener\">Find Gary\'s courses HERE</a>\n<h2><b>What is Dialectical Behaviour Therapy?</b></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-28623\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_1107423758-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1709\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember </span>\n\n<b><i>Dialectic</i></b><i><span style=\"font-weight: 400;\"> is defined as the art of determining the truth by the logical exchange of ideas…... </span></i>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><i><span style=\"font-weight: 400;\">transformation of quantity into quality. Engels (2006) </span></i></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">DBT is a type of Cognitive Behavioural Therapy (CBT), another communication tool mainly used in therapeutic / counselling / psychology practices but also in personal training. However, the results for behaviour change are what make all of these ‘consultation techniques’ so fascinating.  </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">(DBT)...attempts to balance and integrate acceptance and change through a dialectical process…..the most fundamental dialectic addressed by DBT is that of acceptance and change…..help the client develop greater acceptance of the self, of others,</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Originating from Linehan’s work in the 1970’s and 1980’s with individuals who were experiencing chronic mental health conditions, these ‘therapeutic’ intervention techniques can go a long way to improving our consultation techniques. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The endeavour to practice these techniques can lead to identifying and altering negative thinking. This clearly crosses over into our health and activity industry as I am sure you can imagine. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The ‘dialectical’ part of behaviour change is supporting the client with their own solutions for….</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Their acceptance of situations </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Strategies to orient the change they seek</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Regulation of their negative emotions</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Their tolerance to stress</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Interpersonal effectiveness</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">DBT first focuses on stabilising the client into behavioural control, replacing certain emotional/behavioural responses with improved ones. Then it aims to get actions under control, allowing the client to feel they are the decision maker creating their new behaviour strategies. </span>\n\n&nbsp;\n<h2><b>Finally.... </b></h2>\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Do you get frustrated by clients NOT doing what you suggested?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Do you listen to your own dialect &amp; critically analyse it?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Do you consider ways to improve or structure your consultation to test its efficacy?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Do you follow evidence based ways of doing things where possible?</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have been so impressed but the results of Dr Gary Mendoza’s Behaviour Change &amp; Motivational Interviewing course that we have booked him for our intimate annual event.....</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\"><b>The Kaizen Project </b></a></h1>\n&nbsp;\n\n<img class=\"aligncenter wp-image-28625\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/Screenshot-2021-07-12-at-14.52.34.png\" alt=\"\" width=\"548\" height=\"224\" />\n<h1><span style=\"font-weight: 400;\">Friday 8th October at Loughborough University</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Not only can you come along and meet Gary, but we also have a whole day of sessions from industry leaders in Empowerment &amp; Coaching AND you get free lunch &amp; refreshments all day within your ticket price! </span>\n\n&nbsp;\n<h2>See who else is presenting</h2>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Why not join us &gt;&gt;READ MORE &amp; BOOK HERE&lt;&lt;</span></a></h1>\n\n<hr />\n\n<h2><b>References;</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Clifford, D. and Curtis, L., n.d. </span><i><span style=\"font-weight: 400;\">Motivational interviewing in nutrition and fitness</span></i><span style=\"font-weight: 400;\">.</span>\n\n<span style=\"font-weight: 400;\">Dimeff, L., McDavid, J. and Linehan, M., 1999. Journal search results. </span><i><span style=\"font-weight: 400;\">Journal of Clinical Psychology in Medical Settings</span></i><span style=\"font-weight: 400;\">, 6(1), pp.113-138.</span>\n\n<span style=\"font-weight: 400;\">Kaufman, E., Douaihy, A. and Goldstein, T., 2021. Dialectical Behavior Therapy and Motivational Interviewing: Conceptual Convergence, Compatibility, and Strategies for Integration. </span><i><span style=\"font-weight: 400;\">Cognitive and Behavioral Practice</span></i><span style=\"font-weight: 400;\">, 28(1), pp.53-65.</span>\n\n<span style=\"font-weight: 400;\">Merriam-webster.com. 2021. </span><i><span style=\"font-weight: 400;\">Definition of DIALECTIC</span></i><span style=\"font-weight: 400;\">. [online] Available at: &lt;https://www.merriam-webster.com/dictionary/dialectic&gt; [Accessed 5 July 2021].</span>\n\n<span style=\"font-weight: 400;\">Miller, W. and Rollnick, S., 2009. Ten Things that Motivational Interviewing Is Not. </span><i><span style=\"font-weight: 400;\">Behavioural and Cognitive Psychotherapy</span></i><span style=\"font-weight: 400;\">, 37(2), pp.129-140.</span>\n\n<span style=\"font-weight: 400;\">Nutrition Society.org. 2021. </span><i><span style=\"font-weight: 400;\">Dr Gary Mendoza | The Nutrition Society</span></i><span style=\"font-weight: 400;\">. [online] Available at: &lt;https://www.nutritionsociety.org/people/dr-gary-mendoza&gt; [Accessed 12 July 2021].</span>\n\n<span style=\"font-weight: 400;\">Robins, C., 1999. A dialectical behavior therapy perspective on the case of anna. </span><i><span style=\"font-weight: 400;\">Cognitive and Behavioral Practice</span></i><span style=\"font-weight: 400;\">, 6(1), pp.60-68.</span>\n\n<span style=\"font-weight: 400;\">Rogers, C., 1995. </span><i><span style=\"font-weight: 400;\">A way of being</span></i><span style=\"font-weight: 400;\">. Boston: Houghton Mifflin.</span>\n\n<span style=\"font-weight: 400;\">Rollnick, S. and Miller, W., 1995. What is Motivational Interviewing?. </span><i><span style=\"font-weight: 400;\">Behavioural and Cognitive Psychotherapy</span></i><span style=\"font-weight: 400;\">, 23(4), pp.325-334.</span>\n\n<span style=\"font-weight: 400;\">Slater, E., 2017. Engels on Ireland’s Dialectics of Nature. </span><i><span style=\"font-weight: 400;\">Capitalism Nature Socialism</span></i><span style=\"font-weight: 400;\">, 29(4), pp.31-50.</span>\n\n<span style=\"font-weight: 400;\">Sporakowski, M., Prochaska, J. and DiClemente, C., 1986. The Transtheoretical Approach: Crossing Traditional Boundaries of Therapy. </span><i><span style=\"font-weight: 400;\">Family Relations</span></i><span style=\"font-weight: 400;\">, 35(4), p.601.</span>\n\n<span style=\"font-weight: 400;\">Swales, M., 2009. Dialectical Behaviour Therapy: Description, research and future directions. </span><i><span style=\"font-weight: 400;\">International Journal of Behavioral Consultation and Therapy</span></i><span style=\"font-weight: 400;\">, 5(2), pp.164-177.</span>\n\n&nbsp;','Motivational Interviewing & Dialectical (Behaviour Therapy) Techniques- Part 2','','draft','closed','closed','','motivational-interviewing-dialectical-behaviour-therapy-techniques-part-2','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',0,'https://www.biomechanicseducation.com/?p=28615',0,'post','',0),(28620,0,'2021-07-12 13:41:13','2021-07-12 13:41:13','','shutterstock_651221473','','inherit','open','closed','','shutterstock_651221473','','','2021-07-12 13:41:13','2021-07-12 13:41:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_651221473-scaled-1.jpg',0,'attachment','image/jpeg',0),(28621,0,'2021-07-12 13:42:01','2021-07-12 13:42:01','','shutterstock_1364554769','','inherit','open','closed','','shutterstock_1364554769','','','2021-07-12 13:42:01','2021-07-12 13:42:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_1364554769-scaled-1.jpg',0,'attachment','image/jpeg',0),(28622,0,'2021-07-12 13:46:49','2021-07-12 13:46:49','','Healthy,Nutrition,Expert,Making,Weekly,Meal,Plan,For,Client,,Weight','','inherit','open','closed','','healthynutritionexpertmakingweeklymealplanforclientweight','','','2021-07-12 13:46:49','2021-07-12 13:46:49','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_1068924428-scaled-1.jpg',0,'attachment','image/jpeg',0),(28623,0,'2021-07-12 13:48:17','2021-07-12 13:48:17','','Smiling,Woman,Talking,To,A,Wellness,Coach,To,Find,Motivation','','inherit','open','closed','','smilingwomantalkingtoawellnesscoachtofindmotivation','','','2021-07-12 13:48:17','2021-07-12 13:48:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_1107423758-scaled-1.jpg',0,'attachment','image/jpeg',0),(28625,0,'2021-07-12 13:52:57','2021-07-12 13:52:57','','Screenshot 2021-07-12 at 14.52.34','','inherit','open','closed','','screenshot-2021-07-12-at-14-52-34','','','2021-07-12 13:52:57','2021-07-12 13:52:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/Screenshot-2021-07-12-at-14.52.34-1.png',0,'attachment','image/png',0),(28733,0,'2021-07-20 12:08:34','2021-07-20 12:08:34','','IMG_6257','','inherit','open','closed','','img_6257','','','2021-07-20 12:08:34','2021-07-20 12:08:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/IMG_6257-1.jpeg',0,'attachment','image/jpeg',0),(28845,3,'2021-07-30 08:07:17','2021-07-30 08:07:17','<span style=\"font-weight: 400;\">Injuries can affect us all regardless of age, sex, fitness or ability, but we can manage or limit the number of times we get injured; and we can do this by going back to basics. A topic which has been written about numerous times, but we are not talking about strength levels, stretching or core stability, we mean back to your basic intrinsic biomechanics.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By regularly assessing your intrinsic biomechanics you can help eliminate and prevent many injuries and problems. One of the fundamental causes of injury is the body compensating for weak biomechanical links in your kinetic chain which can cause unaccustomed load that in turn result in pain and injury.</span>\n\n&nbsp;\n<h2><em><b>One of the most common injuries in running is to the hamstrings. Or typically, the pain or tension that often presents itself in the hamstrings due to biomechanical load from another area of the body that is not functioning correctly. Even if you tear the hamstring during sprinting, the underlying cause is usually biomechanical, and unless that cause is addressed, the problem will become recurrent or simply just not go away. You could even just have a hamstring that feels tight or won’t stretch out properly, either way the cause is usually biomechanical.</b></em></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-28848\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/jenny-hill-mQVWb7kUoOE-unsplash-scaled.jpg\" alt=\"\" width=\"710\" height=\"472\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Example:</span>\n\n<span style=\"font-weight: 400;\">Hamstring ‘issues’ are common in runners and are caused by a number of different issues. Flat feet, tight calves, dysfunctional pelvis, poor preparation and previous injury to the hamstrings or calves or associated joints are all typically considered when trying to prevent hamstring  injuries. One commonly overlooked, but very relevant cause is a tight sciatic nerve.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If the sciatic nerve is tight or not moving freely within the structures that surround it, then the muscles in the area of stiffness provide the nerve with protective spasm during movement. In other words they contract to minimise the pressure on the nerve while you move at speed. If the nerve is loaded or stretched too much, the muscles can spasm enough to cause themselves to tear or cramp up - which can feel like a tear. The stiffness in the nerve may well be near the point where the nerve runs through the hamstring muscle, and so that can be why you have the injury in the hamstring.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To check to see if your hamstring ‘issue’ is related to your sciatic nerve, try this test:</span>\n\n<img class=\"wp-image-27968 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/annie-spratt-oQfSHQ2Uaic-unsplash-scaled.jpg\" alt=\"\" width=\"312\" height=\"468\" />\n\n&nbsp;\n<h2><strong>Test</strong></h2>\n<span style=\"font-weight: 400;\">Lay on your back and gradually lift your leg up straight with your ankle fixed at a 90 degree angle. Stop when you start to feel a tension or stretch in your leg. Notice where this tension is felt. You could feel it in the hamstring area, but also anywhere below the knee, or indeed in your buttock or back. If you feel it anywhere outside your hamstring area, the stretch you feel may be nerve related. In this example the stretch may be in the calf, which might indicate that the nerve is tightest there and can be causing the calf injuries. However if you feel the tension in the hamstring area you can test for nerve tension by pointing your toe. If this movement alters the tension in your hamstring this can indicate that the nerve is tightest there and can be causing hamstring issues. </span>\n\n&nbsp;\n<h2><b>Understanding nerves</b></h2>\n<span style=\"font-weight: 400;\">The nerves have been described as the software of the body and to be able to understand this more thoroughly we have to understand ‘nerve tension’ and ‘Adverse Neural Tension’. These concepts have been recognised for over 100 years in terms of treating patients clinically, but their full potential has never been understood until now. An analogy with the invention of the wheel is an interesting one. The discovery of nerve tension and it being used for the treatment of injuries is like the wheel being invented and placing it on its side, putting 4 legs around the underside and using it as a table. It makes a great table, but the idea to use it in the way we know it today was groundbreaking. The same applies to nerve tension and its application to athletic performance and fatigue relief.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The entire nervous system is a single continuous tract, so it follows that if any part of this continuous tract is trapped or tethered (as with an injury for example) then it also follows that there will be some restriction of the mobility of other parts of the nerve system. So a problem with one part of the nerve can cause pain in another – this is the clinical application. However, we have discovered that this is not always represented by pain but also by a reduction of joint range of movement and altered joint biomechanics which can affect a whole host of problems that can cause restricted performance and may ultimately lead to injury. Moreover, with the increased muscle spasm and associated factors, local fatigue increases and so understanding these principles can lead to benefits not only in human performance but also fatigue relief.</span>\n\n&nbsp;\n<h2><b>Research</b></h2>\n<span style=\"font-weight: 400;\">We know this happens from research performed at Liverpool Hope University College and the studies demonstrate astonishing results. One experiment showed that a muscle can increase its force output by 14% after a brief preliminary warm-up (just one 15 second workout using this concept). Another experiment showed that by following the same concept a 2 minute programme performed daily for 10 days increases muscle output by over 50%.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It has been demonstrated that after 15 seconds of the programme, muscle fatigue is reduced by up to 14% immediately and sustained use led to significant and prolonged increase in muscle output. These studies have been validated at the highest level. A paper was submitted at the 6th Asian Biomechanics Congress (one of the world\'s most credited) and was enthusiastically received.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember in most cases we are not even aware we have a problem, but even so you can still achieve these remarkable results. Just imagine what these figures could do for your performance in your sport or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office.</span>\n\n&nbsp;\n<h2><b>Example</b></h2>\n<span style=\"font-weight: 400;\">Let\'s take a hamstring stretch as an example, we are not trying to stretch the hamstrings when we extend the leg out in front of us, we are trying to improve the range of hip flexion and knee extension by stretching the structures on the back of the leg and back. This brings in more than just the hamstrings, it can also be limited by a tight sciatic nerve, a rotated sacro-iliac joint in the lower back, tight gastrocnemius, tight spinal cord and indeed almost any nerve in the chain given the continuum concept described earlier.</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\" target=\"_blank\" rel=\"noopener\">Running Biomechanics Workshop </a> teaches you;</h1>\n<ul>\n 	<li>The correct terminology to approach your local running clubs</li>\n 	<li>Understanding the mechanics and sequencing of running gaits</li>\n 	<li>Extrinsically look at different styles or idiosyncrasy’s and Intrinsically look at what restrictions and dysfunctions can cause them</li>\n 	<li>Screenings will be discussed as well as key exercise interventions to help prepare your runners for their chosen style</li>\n</ul>\n<p class=\"p1\"><b>Who is it suitable for?</b></p>\n\n<ul class=\"ul1\">\n 	<li class=\"li1\">Running coaches &amp; practitioners who wish to enhance their skills to help runners</li>\n 	<li class=\"li1\">Any professional looking for an understanding of running biomechanics</li>\n</ul>\nCreated by<a href=\"https://www.brytespark.com/portfolio/biomechanical/\" target=\"_blank\" rel=\"noopener noreferrer\"> Martin Haines Founder of Brytespark</a>\n<h1><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\" target=\"_blank\" rel=\"noopener\">&gt;&gt;TO BOOK CLICK HERE &lt;&lt;</a></h1>\n<img class=\"wp-image-18460 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png\" alt=\"\" width=\"460\" height=\"230\" />','Running with an Injury or Over Training','','draft','closed','closed','','running-with-an-injury-or-over-training','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=28845',0,'post','',0),(28847,0,'2021-07-30 07:57:58','2021-07-30 07:57:58','','filip-mroz-167499-unsplash','','inherit','open','closed','','filip-mroz-167499-unsplash-2','','','2021-07-30 07:57:58','2021-07-30 07:57:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/filip-mroz-167499-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(28848,0,'2021-07-30 08:03:42','2021-07-30 08:03:42','','jenny-hill-mQVWb7kUoOE-unsplash','','inherit','open','closed','','jenny-hill-mqvwb7kuooe-unsplash-2','','','2021-07-30 08:03:42','2021-07-30 08:03:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/07/jenny-hill-mQVWb7kUoOE-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(29056,0,'2021-08-13 07:59:03','2021-08-13 07:59:03','','Headshot 2019','','inherit','open','closed','','headshot-2019','','','2021-08-13 07:59:03','2021-08-13 07:59:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/08/Headshot-2019-1.jpg',0,'attachment','image/jpeg',0),(29093,3,'2021-08-16 13:40:34','2021-08-16 13:40:34','<span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">There has been a lot of noise from social media, PT’s, fit pro’s &amp;  movement coaches wondering why we weren\'t allowed to work, keep gyms open &amp; help keep our nation moving during lockdown.</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Yet we keep demanding for cheaper &amp; quicker qualifications….?!?!</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">So much so that what 30yrs ago was a 12 month face to face qualification can now be achieved purely online over just a few weeks!</span></span><b class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /></span></b><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">What did we expect???</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Compare this with our peers, the allied health care professionals (AHP’s) who are considered part of ‘the front line’, along with their higher level of training….we fit pros are just not perceived, nor professionalised, in the same way. This contributes to the stigma around us not being very well trained or equipped to work with clients.<br class=\"ac-designer-copy\" /></span></span>\n<h2><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">The 14 Allied Health Professions<br class=\"ac-designer-copy\" /></span></span></h2>\n<span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">Do you know how much training is involved in the 14 listed AHP\'s on the NHS England website?</span></span><b class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\"><br class=\"ac-designer-copy\" /></span><br class=\"ac-designer-copy\" /></span></b>\n<ol class=\"ac-designer-copy\">\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Art Therapists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Drama therapists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Music therapists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Chiropodists/podiatrists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Dietitians</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Occupational therapists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Operating Department Practitioners</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Orthoptists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Osteopaths</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Paramedics</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Physiotherapists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Prosthetists and Orthotists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Radiographers</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Speech and language therapists</span></li>\n</ol>\n<span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">We seriously need to raise our game, NOT cheapen it! </span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">IF we are to be truly </span><span class=\"ac-designer-copy\">professionalised</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">IF we are to aim for </span><span class=\"ac-designer-copy\">recognition</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">IF we are wanting to be </span><span class=\"ac-designer-copy\">taken seriously</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">IF we really genuinely care about our clients </span><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">IF we feel we can truly help</span></span><b class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /></span></b><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">Then each &amp; every one of us should be held accountable &amp; responsible for representing our industry with the duty of care &amp; professionalism we wish to be admired for. </span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">We should welcome </span><span class=\"ac-designer-copy\">regulation &amp; evaluation.</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">We should welcome</span><span class=\"ac-designer-copy\"> standards</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">We should be prepared to pay more</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">We should research ‘qualified’ education providers</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">We should commit time &amp; effort into ALL our skills &amp; not simply gaining leads</span><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">We should devote CPD to enhance our soft skills of communication &amp; listening</span></span><b class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /></span></b><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">How can we expect to be taken seriously if we do not behave seriously?</span></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">12 week transformations may well have their place, six packs are appropriate for a competitive bodybuilder &amp; aesthetic training is not a sin </span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">BUT</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">If in fact we wish to have the opportunity to gain more leads, change more lives, be rewarded &amp; recognised well then there is an entire nation of long Covid sufferers that require our help. </span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Phase 5 of Covid-19 Rehabilitation being movement…...that\'s us! </span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">How do you feel about gaining more specialist training? </span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Do you value &amp; invest in communication skills?</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Do you have a multidisciplinary team around you?</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Do you think we should be held accountable through regulation? </span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">How do you feel about gaining Chartered status</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">HELP TO </span><span class=\"ac-designer-copy\">PROVE</span></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\"> OUR VALUE!</span></span><b class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /></span></b><span class=\"ac-designer-marked-selection ac-designer-copy\"><a class=\"ac-designer-copy\" href=\"https://www.england.nhs.uk/ahp/role/\" data-ac-default-color=\"1\">NHS AHP\'s LIST </a></span>\n\n<b class=\"ac-designer-copy\"><span class=\"ac-designer-copy\">Would you like to join us to become a <a class=\"ac-designer-copy\" href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" data-ac-default-color=\"1\">Biomechanics Coach as</a> we are looking for brand bearers to help in our mission to improve movement through education AND access the above!?<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><a class=\"ac-designer-copy\" href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" data-ac-default-color=\"1\">CLICK HERE TO BOOK</a> <br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /></span></b>\n\nOR\n\nArrange a call by sending your details to info@biomechanicseducation.com','\'Why didn\'t Boris trust us enough to let us continue working?\'','','draft','closed','closed','','why-didnt-boris-trust-us-enough-to-let-us-continue-working','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=29093',0,'post','',0),(29095,0,'2021-08-16 13:36:11','2021-08-16 13:36:11','','Screenshot 2021-08-16 at 13.52.46','','inherit','open','closed','','screenshot-2021-08-16-at-13-52-46','','','2021-08-16 13:36:11','2021-08-16 13:36:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/08/Screenshot-2021-08-16-at-13.52.46-1.png',0,'attachment','image/png',0),(29120,0,'2021-08-18 07:14:08','2021-08-18 07:14:08','','Screenshot 2021-05-25 at 10.02.31','','inherit','open','closed','','screenshot-2021-05-25-at-10-02-31','','','2021-08-18 07:14:08','2021-08-18 07:14:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/08/Screenshot-2021-05-25-at-10.02.31-1.png',0,'attachment','image/png',0),(29230,0,'2021-08-26 17:04:25','2021-08-26 17:04:25','','Biomechanics,Of,Running,-,Gait,Cycle,Movement,Analysis,Of,Runner','','inherit','open','closed','','biomechanicsofrunning-gaitcyclemovementanalysisofrunner','','','2021-08-26 17:04:25','2021-08-26 17:04:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/08/RUN-shutterstock_1046319301-scaled-1.jpg',0,'attachment','image/jpeg',0),(29231,0,'2021-08-26 17:06:46','2021-08-26 17:06:46','','Shot,Of,Fit,Young,Man,Turning,Over,Underwater.,Pro,Male','','inherit','open','closed','','shotoffityoungmanturningoverunderwater-promale','','','2021-08-26 17:06:46','2021-08-26 17:06:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/08/SWIM-shutterstock_571053160-scaled-1.jpg',0,'attachment','image/jpeg',0),(29232,0,'2021-08-26 17:07:43','2021-08-26 17:07:43','','GOLF andrew-lomas-aGlpdQ2Yolk-unsplash','','inherit','open','closed','','golf-andrew-lomas-aglpdq2yolk-unsplash','','','2021-08-26 17:07:43','2021-08-26 17:07:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/08/GOLF-andrew-lomas-aGlpdQ2Yolk-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(29233,0,'2021-08-26 17:08:54','2021-08-26 17:08:54','','Professional,Tennis,Player,Man,Playing,On,Court,In,Afternoon.','','inherit','open','closed','','professionaltennisplayermanplayingoncourtinafternoon','','','2021-08-26 17:08:54','2021-08-26 17:08:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/08/TENNIS-shutterstock_741712714-scaled-1.jpg',0,'attachment','image/jpeg',0),(29234,0,'2021-08-26 17:10:18','2021-08-26 17:10:18','','Rugby,Stadium,Against,Rugby,Players,Tackling,During,Game','','inherit','open','closed','','rugbystadiumagainstrugbyplayerstacklingduringgame','','','2021-08-26 17:10:18','2021-08-26 17:10:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/08/RUGBY-shutterstock_327071678-scaled-1.jpg',0,'attachment','image/jpeg',0),(29235,0,'2021-08-26 17:12:11','2021-08-26 17:12:11','','coen-van-de-broek-hdyYvZ3Hj7w-unsplash','','inherit','open','closed','','coen-van-de-broek-hdyyvz3hj7w-unsplash','','','2021-08-26 17:12:11','2021-08-26 17:12:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/08/coen-van-de-broek-hdyYvZ3Hj7w-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(29236,0,'2021-08-26 17:20:22','2021-08-26 17:20:22','','Screenshot 2021-08-26 at 18.20.01','','inherit','open','closed','','screenshot-2021-08-26-at-18-20-01','','','2021-08-26 17:20:22','2021-08-26 17:20:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/08/Screenshot-2021-08-26-at-18.20.01-1.png',0,'attachment','image/png',0),(29308,0,'2021-09-01 16:07:48','2021-09-01 16:07:48','','The,Young,Female,Rugby,Player,On,Green,Backround','','inherit','open','closed','','theyoungfemalerugbyplayerongreenbackround','','','2021-09-01 16:07:48','2021-09-01 16:07:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/RUGBY-shutterstock_1405130222-scaled-1.jpg',0,'attachment','image/jpeg',0),(29333,0,'2021-09-03 10:50:13','2021-09-03 10:50:13','','SL1','','inherit','open','closed','','sl1','','','2021-09-03 10:50:13','2021-09-03 10:50:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/SL1-scaled-1.jpg',0,'attachment','image/jpeg',0),(29334,0,'2021-09-03 10:50:25','2021-09-03 10:50:25','','SL2','','inherit','open','closed','','sl2','','','2021-09-03 10:50:25','2021-09-03 10:50:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/SL2-scaled-1.jpg',0,'attachment','image/jpeg',0),(29335,0,'2021-09-03 10:50:39','2021-09-03 10:50:39','','SL3','','inherit','open','closed','','sl3','','','2021-09-03 10:50:39','2021-09-03 10:50:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/SL3-scaled-1.jpg',0,'attachment','image/jpeg',0),(29338,0,'2021-09-03 10:56:44','2021-09-03 10:56:44','','SBL1','','inherit','open','closed','','sbl1','','','2021-09-03 10:56:44','2021-09-03 10:56:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/SBL1-scaled-1.jpeg',0,'attachment','image/jpeg',0),(29339,0,'2021-09-03 10:56:58','2021-09-03 10:56:58','','SBL2','','inherit','open','closed','','sbl2','','','2021-09-03 10:56:58','2021-09-03 10:56:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/SBL2-scaled-1.jpeg',0,'attachment','image/jpeg',0),(29340,0,'2021-09-03 10:57:14','2021-09-03 10:57:14','','SBL3','','inherit','open','closed','','sbl3','','','2021-09-03 10:57:14','2021-09-03 10:57:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/SBL3-scaled-1.jpg',0,'attachment','image/jpeg',0),(29341,0,'2021-09-03 10:58:59','2021-09-03 10:58:59','','Screenshot 2021-09-03 at 11.58.39','','inherit','open','closed','','screenshot-2021-09-03-at-11-58-39','','','2021-09-03 10:58:59','2021-09-03 10:58:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-03-at-11.58.39-1.png',0,'attachment','image/png',0),(29342,0,'2021-09-03 11:00:50','2021-09-03 11:00:50','','Screenshot 2021-09-03 at 12.00.25','','inherit','open','closed','','screenshot-2021-09-03-at-12-00-25','','','2021-09-03 11:00:50','2021-09-03 11:00:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-03-at-12.00.25-1.png',0,'attachment','image/png',0),(29344,0,'2021-09-03 11:03:36','2021-09-03 11:03:36','','Screenshot 2021-09-03 at 12.03.05','','inherit','open','closed','','screenshot-2021-09-03-at-12-03-05','','','2021-09-03 11:03:36','2021-09-03 11:03:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-03-at-12.03.05-1.png',0,'attachment','image/png',0),(29346,0,'2021-09-03 11:16:41','2021-09-03 11:16:41','','Screenshot 2021-09-03 at 12.11.36','','inherit','open','closed','','screenshot-2021-09-03-at-12-11-36','','','2021-09-03 11:16:41','2021-09-03 11:16:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-03-at-12.11.36-1.png',0,'attachment','image/png',0),(29347,0,'2021-09-03 11:18:28','2021-09-03 11:18:28','','Screenshot 2021-09-03 at 12.07.59','','inherit','open','closed','','screenshot-2021-09-03-at-12-07-59','','','2021-09-03 11:18:28','2021-09-03 11:18:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-03-at-12.07.59-1.png',0,'attachment','image/png',0),(29349,0,'2021-09-03 11:20:02','2021-09-03 11:20:02','','Screenshot 2021-09-03 at 12.13.19','','inherit','open','closed','','screenshot-2021-09-03-at-12-13-19','','','2021-09-03 11:20:02','2021-09-03 11:20:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-03-at-12.13.19-1.png',0,'attachment','image/png',0),(29350,0,'2021-09-03 11:22:29','2021-09-03 11:22:29','','Screenshot 2021-09-03 at 12.15.15','','inherit','open','closed','','screenshot-2021-09-03-at-12-15-15','','','2021-09-03 11:22:29','2021-09-03 11:22:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-03-at-12.15.15-1.png',0,'attachment','image/png',0),(29351,0,'2021-09-03 11:27:14','2021-09-03 11:27:14','','Screenshot 2021-09-03 at 12.26.58','','inherit','open','closed','','screenshot-2021-09-03-at-12-26-58','','','2021-09-03 11:27:14','2021-09-03 11:27:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-03-at-12.26.58-1.png',0,'attachment','image/png',0),(29381,0,'2021-09-06 14:17:53','2021-09-06 14:17:53','','Pic for bio','','inherit','open','closed','','pic-for-bio','','','2021-09-06 14:17:53','2021-09-06 14:17:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/Pic-for-bio-1.jpg',0,'attachment','image/jpeg',0),(29405,0,'2021-09-07 12:19:19','2021-09-07 12:19:19','','Rachel France - Kaizan 2019','','inherit','open','closed','','rachel-france-kaizan-2019','','','2021-09-07 12:19:19','2021-09-07 12:19:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/Rachel-France-Kaizan-2019-1.mp4',0,'attachment','video/mp4',0),(29658,3,'2021-09-28 07:24:27','2021-09-28 07:24:27','<p class=\"p1\">Having reached the point where I have 52yrs to reflect upon, it comes with the recognition that I’m even happier than ever!</p>\n&nbsp;\n<p class=\"p1\">How could that be when I’ve lived such a happy life over all?</p>\n&nbsp;\n<p class=\"p1\">Even though I’m now technically in the ‘older pops’ demographic, &amp; mature might be another word others use now to describe me these days, I’m also a grandma to 13 wonderful kiddies through marriage<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<p class=\"p1\">Also coming through a pandemic I still feel extremely hardy as age/time brings with it the skill of being positive, logical &amp; proactive<span class=\"Apple-converted-space\"> - hey I even got married in the midst of it all!</span></p>\n&nbsp;\n<p class=\"p1\">Having practised being kinder to myself through my inner dialogue &amp; developing my skill in empathising, I feel I recognise even more how \'stuff\' matters less, while people &amp; experiences matter much more<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<p class=\"p1\">It’s becoming clearer why we assume the ‘elderly’ to be a kind bunch &amp; more self-less<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<p class=\"p1\">As I find myself listening much more carefully to what others say, prioritising others more &amp; my desire to learn amplifies, I value different things as important now like;</p>\n\n<ul>\n 	<li class=\"p1\">Cute complimentary texts for no reason from wonderfully important people<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"p1\">Seeing others demonstration altruism<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"p1\">Expecting others to be well intended</li>\n 	<li class=\"p1\">Swapping roles to give back to parents who you never felt you could repay</li>\n 	<li class=\"p1\">Realising things are far less important<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"p1\">Not sweating the small stuff</li>\n 	<li class=\"p1\">Being able to really appreciate &amp; enjoy NOW (the moment) more often</li>\n 	<li class=\"p1\">Confidence &amp; clarity in my purpose &amp; everything I do<span class=\"Apple-converted-space\"> </span></li>\n</ul>\n<p class=\"p1\">To celebrate in this Juicemail special I’m re-sharing my top tips for feeling great in your 50’s</p>\n&nbsp;\n<h2>P.s. The photos are a little celebration of my life!</h2>\n<a href=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_2697-1.heic\">\n<img class=\"aligncenter size-full wp-image-29659\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_2697-1.heic\" alt=\"\" /><img class=\"aligncenter size-full wp-image-29659\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_2697-1.heic\" alt=\"\" /></a>\n<h2><img class=\"wp-image-29665 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-28-at-07.56.39-1.png\" alt=\"\" width=\"280\" height=\"341\" /></h2>\n<h2 class=\"p3\"><b>#1 – Make A SMART Plan </b></h2>\n<p class=\"p1\">What’s the end goal?</p>\n<p class=\"p1\">Retire in Marbella?</p>\n<p class=\"p1\">Run a B&amp;B in Lochness?</p>\n<p class=\"p1\">Build mud huts in a 3rd world country?</p>\n<p class=\"p1\">Be specific so that you can actually measure it. It MUST be achievable and realistic otherwise what’s the point? Then stick to a timeline for it!</p>\n<p class=\"p1\">Consider the above long term goal to enable you to plan backwards, like a marathon runner does with their training. Once you know the end goal, you can design a schedule that runs from the end goal, back a chunk at a time. This gives you something to measure at each stage of your life plan so you can check, adjust if necessary and monitor how you’re doing with reference points.</p>\n<p class=\"p1\">By the way …. it’s ok to change your mind!</p>\n&nbsp;\n<p class=\"p1\"><img class=\"wp-image-29667 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/GetAttachmentCATNH3ZA-1.jpg\" alt=\"\" width=\"365\" height=\"459\" /></p>\n\n<h2 class=\"p3\"><b>#2 – Nourish Your Movement – Prepare Your Body</b></h2>\n<p class=\"p1\">Nourishing movement is all about treating the body you live in with respect and love.</p>\n<p class=\"p1\">You cannot buy a new one, wear and tear will happen but…..</p>\n<p class=\"p1\">….using your body in a variety of ways consistently maintains healthy joints, tissues and bones. The beautiful knock-on effect is a healthy mind!</p>\n<p class=\"p1\">Exercise Is Movement Medicine</p>\n<p class=\"p1\">The things we put inside our bodies to fuel us make a huge difference, if not always immediately, certainly over time.</p>\n<p class=\"p1\">You will look and feel a representation of the way you fuel your body.</p>\n<p class=\"p1\">It is NOT complex! Balanced, considered with consistent moderation.</p>\n&nbsp;\n<h2></h2>\n<h2></h2>\n<h2 class=\"p3\"></h2>\n&nbsp;\n\n<img class=\"wp-image-29672 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_8159-scaled-1.jpg\" alt=\"\" width=\"256\" height=\"341\" />\n\n&nbsp;\n<h2 class=\"p3\"><b>#3 – Sleep Plan – No Excuses!</b></h2>\n<p class=\"p1\">An extremely underrated medicinal tool and another very simple one!</p>\n<p class=\"p1\">Get 8 hours each night minimum (as the research states ‘Why We sleep’ Matthew Walker) by following</p>\n<p class=\"p1\">a routine of bedtime, room temperature and waking when you wake NOT to an alarm.</p>\n<p class=\"p1\">See the difference when you do!</p>\n<p class=\"p1\">Sleep Is Mental Medicine</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29668 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/Screen-Shot-2015-07-24-at-14.27.06-1.png\" alt=\"\" width=\"177\" height=\"247\" />\n<h2 class=\"p3\"><b>#4 – Prioritise Time Out – The 3 x R’s</b></h2>\n<p class=\"p1\">With consistent rest, relaxation and recuperation planned into your schedule your body will thank you!</p>\n<p class=\"p1\">Rest – Sitting for a moment</p>\n<p class=\"p1\">Relax – being sociable or spending time talking to family/friends</p>\n<p class=\"p1\">Recuperation – sleep &amp; holidays</p>\n<p class=\"p1\">All are required!</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29661 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_6265-scaled-1.jpg\" alt=\"\" width=\"333\" height=\"250\" />\n<h2 class=\"p3\"><b>#5 – Do Something You Never Dared </b></h2>\n<p class=\"p1\">Life is too short to NOT do something you have always wanted but never dared.</p>\n<p class=\"p1\">Do not put it off!</p>\n<p class=\"p1\">Let your hair down and swim naked or jump on that trampoline!</p>\n&nbsp;\n<p style=\"text-align: right;\">(See if you can find me in here)</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29660 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_0248-1.jpg\" alt=\"\" width=\"376\" height=\"267\" />\n<h2 class=\"p3\"><b>#6 – Commit A Random Act Of Kindness Each Week </b></h2>\n<p class=\"p1\">Being kind to others is vital for your contribution to world peace and showing compassion. Even more joyous and fun if the receiver doesn’t realise it was you who left those flowers at their door or even that you made their life easier by cleaning their windows while they were out.</p>\n<p class=\"p1\">This morning I took my neighbours bag of glass bottles to the bottle bank……ssssssssh don’t tell them it was me!</p>\n<p class=\"p1\">Volunteer Your Time Once A Month. Give a little, it means a lot!</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29662 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/GetAttachmentCAP825L1-1.jpg\" alt=\"\" width=\"305\" height=\"407\" />\n<h2 class=\"p3\"><b>#7 – Learn A New Skill Each Quarter </b></h2>\n<p class=\"p1\">Enhance your skills, knowledge or contribution to society.</p>\n<p class=\"p1\">Stimulate you brain it certainly will prove worthwhile one day!</p>\nSign up for a free course in something completely different\n\nHave a go at ice skating, roller blading, climbing, go to a trampoline park!\n\nVolunteer at a shelter, library, local gym\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29664 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_5232-1.jpg\" alt=\"\" width=\"359\" height=\"270\" />\n<h2 class=\"p3\"><b>#8 – Live In The Moment  </b></h2>\n<p class=\"p1\">You cannot change the past, you have no idea of the future but OH BOY you can enjoy this moment!</p>\n<p class=\"p1\">Never forget to savour the sunshine, a blue sky, a beautiful flower or giggling children.</p>\nTime with precious friends or even special times with strangers...you never know when they may disappear never to be seen again\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29663 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/heaven-2-1.jpg\" alt=\"\" width=\"284\" height=\"379\" />\n<h2 class=\"p3\"><b>#9 – Don’t Give A Damn…</b></h2>\n<p class=\"p1\">..what others think</p>\n<p class=\"p1\">Wear those hot pants!</p>\n<p class=\"p1\">Make snow angels!</p>\n<p class=\"p1\">Jump on a trampoline!</p>\n<p class=\"p1\">Lie on grass, watching clouds!</p>\n<p class=\"p1\">Sing at the top of your voice!</p>\n<p class=\"p1\">Dance like <em>everyone’s</em> watching!</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29670 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_2198-scaled-1.jpg\" alt=\"\" width=\"192\" height=\"256\" />\n<h2 class=\"p3\"><b>#10 – Tell Them You Love Them </b></h2>\n<p class=\"p1\">Always tell your loved ones how you feel …you just never know!</p>\n<img class=\"wp-image-29669 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_0497-scaled-1.jpg\" alt=\"\" width=\"209\" height=\"278\" />\n<p class=\"p1\">By the way I also want to let you in on a secret ……</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p class=\"p1\">...........you don’t actually need to be in your 50\'s to try these out!</p>\n<a href=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_0098-1.heic\"><img class=\"aligncenter size-full wp-image-29689\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_0098-1.heic\" alt=\"\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h1><b class=\"ac-designer-copy\"><span class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Join me to celebrate....email info@biomechanicseducation.com with your stories or experiences if you try any of the above </span></span></b></h1>','10 Tips To Feeling Great In Your 50\'s!','','draft','closed','closed','','10-tips-to-feeling-great-in-your-50s','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=29658',0,'post','',2),(29659,0,'2021-09-28 06:46:39','2021-09-28 06:46:39','','IMG_2697','','inherit','open','closed','','img_2697','','','2021-09-28 06:46:39','2021-09-28 06:46:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_2697-1.heic',0,'attachment','image/heic',0),(29660,0,'2021-09-28 06:51:53','2021-09-28 06:51:53','','IMG_0248','','inherit','open','closed','','img_0248','','','2021-09-28 06:51:53','2021-09-28 06:51:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_0248-1.jpg',0,'attachment','image/jpeg',0),(29661,0,'2021-09-28 06:54:30','2021-09-28 06:54:30','','IMG_6265','','inherit','open','closed','','img_6265','','','2021-09-28 06:54:30','2021-09-28 06:54:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_6265-scaled-1.jpg',0,'attachment','image/jpeg',0),(29662,0,'2021-09-28 06:55:45','2021-09-28 06:55:45','','GetAttachmentCAP825L1','','inherit','open','closed','','getattachmentcap825l1','','','2021-09-28 06:55:45','2021-09-28 06:55:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/GetAttachmentCAP825L1-1.jpg',0,'attachment','image/jpeg',0),(29663,0,'2021-09-28 06:56:31','2021-09-28 06:56:31','','heaven 2','','inherit','open','closed','','heaven-2','','','2021-09-28 06:56:31','2021-09-28 06:56:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/heaven-2-1.jpg',0,'attachment','image/jpeg',0),(29664,0,'2021-09-28 06:57:41','2021-09-28 06:57:41','','IMG_5232','','inherit','open','closed','','img_5232','','','2021-09-28 06:57:41','2021-09-28 06:57:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_5232-1.jpg',0,'attachment','image/jpeg',0),(29665,0,'2021-09-28 07:00:11','2021-09-28 07:00:11','','Screenshot 2021-09-28 at 07.56.39','','inherit','open','closed','','screenshot-2021-09-28-at-07-56-39','','','2021-09-28 07:00:11','2021-09-28 07:00:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-28-at-07.56.39-1.png',0,'attachment','image/png',0),(29666,0,'2021-09-28 07:02:15','2021-09-28 07:02:15','','Screenshot 2021-09-28 at 07.31.40','','inherit','open','closed','','screenshot-2021-09-28-at-07-31-40','','','2021-09-28 07:02:15','2021-09-28 07:02:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-28-at-07.31.40-1.png',0,'attachment','image/png',0),(29667,0,'2021-09-28 07:02:50','2021-09-28 07:02:50','','GetAttachmentCATNH3ZA','','inherit','open','closed','','getattachmentcatnh3za','','','2021-09-28 07:02:50','2021-09-28 07:02:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/GetAttachmentCATNH3ZA-1.jpg',0,'attachment','image/jpeg',0),(29668,0,'2021-09-28 07:03:57','2021-09-28 07:03:57','','Screen Shot 2015-07-24 at 14.27.06','','inherit','open','closed','','screen-shot-2015-07-24-at-14-27-06','','','2021-09-28 07:03:57','2021-09-28 07:03:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/Screen-Shot-2015-07-24-at-14.27.06-1.png',0,'attachment','image/png',0),(29669,0,'2021-09-28 07:07:37','2021-09-28 07:07:37','','IMG_0497','','inherit','open','closed','','img_0497','','','2021-09-28 07:07:37','2021-09-28 07:07:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_0497-scaled-1.jpg',0,'attachment','image/jpeg',0),(29670,0,'2021-09-28 07:11:53','2021-09-28 07:11:53','','IMG_2198','','inherit','open','closed','','img_2198','','','2021-09-28 07:11:53','2021-09-28 07:11:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_2198-scaled-1.jpg',0,'attachment','image/jpeg',0),(29671,0,'2021-09-28 07:16:26','2021-09-28 07:16:26','','IMG_2198','','inherit','open','closed','','img_2198-2','','','2021-09-28 07:16:26','2021-09-28 07:16:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_2198-1-scaled-1.jpg',0,'attachment','image/jpeg',0),(29672,0,'2021-09-28 07:20:28','2021-09-28 07:20:28','','IMG_8159','','inherit','open','closed','','img_8159','','','2021-09-28 07:20:28','2021-09-28 07:20:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_8159-scaled-1.jpg',0,'attachment','image/jpeg',0),(29689,0,'2021-09-29 10:13:58','2021-09-29 10:13:58','','IMG_0098','','inherit','open','closed','','img_0098','','','2021-09-29 10:13:58','2021-09-29 10:13:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_0098-1.heic',0,'attachment','image/heic',0),(29855,3,'2021-10-11 19:09:27','2021-10-11 19:09:27','<span style=\"font-weight: 400;\">In our running biomechanics workshop we discuss anatomy, lower limb mechanics, the integrated system, assessing pronation &amp; supination, dorsi flexion ranges &amp; hip drop. We also discuss normal anatomical variations.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the problems with simply looking at the way our client’s run (or move) is that we are often taught (&amp; assume) coaching better alignment &amp; technique can improve symptoms like runners\' knees....and it might!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Knock knees or knee valgus is a commonly seen \'issue\' in running clients but there may be a cause that we cannot see nor alter. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you know they could have been born with internally rotated femurs!? This means they could be genetically pre dispositioned to knee valgus, ligament dominance &amp; maybe runners knee!</span>\n\n&nbsp;\n\nIn this weeks juicemail we will share the femoral version tests with you &amp; how you can learn tactics, concepts &amp; principles to help your runners complaining of sore knees....\n\n&nbsp;\n<h2><b>Femoral Version  </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\"><em>Femoral</em> means relating to the femur &amp; <em>version</em> relates to angles of the bone/s</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Femoral <strong>Ante</strong>version - femur neck medially/internally rotated, towards the midline (maybe with the foot) </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Femoral <strong>Retro</strong>version - femur neck laterally/externally rotated, away from the midline (maybe with the foot)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can be assessed to allow us to appreciate the limitations we may be faced with when programming our runners\' strength training plan.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If our client is limited by a bony hip variation that we cannot change then their movement &amp; running style may not be aesthetically comparable to what is suggested as the ideal alignment.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However we can condition &amp; train the muscles &amp; nerves to control the movement for risk reduction / performance optimisation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can contribute to reducing excessive knee valgus, hip drop or a visible flick when running - none of which are inherently bad, however can be used for visual monitoring of movement quality </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To score positively you would need to observe more extreme differences ie beyond 40-45 degrees of rotation in the femoral version test.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This means that if there’s not much movement generally then we might alter what we do about it but this is not a positive result for excessive version.</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-29856\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/10/Screenshot-2021-10-11-at-19.58.41-1.png\" alt=\"\" width=\"732\" height=\"438\" />\n\n<span style=\"font-weight: 400;\">To measure version, have your client supine, hip/knee both at 90 degrees, or prone knee at 90 degree, leg should internal &amp; externally rotate 40-45 degrees to both directions - internal &amp; external rotation. </span>\n\nThis could be done prone with the knee flexed to 90 degrees &amp; <span style=\"font-weight: 400;\">internal &amp; external rotation of the hip can also be evaluated for the same degrees of rotation. </span>\n\n&nbsp;\n\n<hr />\n\n<h1><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/\" target=\"_blank\" rel=\"noopener\">Running Biomechanics Workshop </a></h1>\nJoin us n the classroom &amp; learn all the lower limb tests algn with all of the research/evidence for each running style, common injuries &amp; how to address them with your runners.....\n\nScotland Nov 5th 2021\n\nNottingham Nov 20th 2021\n\n<a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/\" target=\"_blank\" rel=\"noopener\">Click here to BOOK </a>','Solutions for runner\'s knee may not be what you think….','','draft','closed','closed','','solutions-for-runners-knee-may-not-be-what-you-think','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=29855',0,'post','',0),(29856,0,'2021-10-11 19:04:41','2021-10-11 19:04:41','','Screenshot 2021-10-11 at 19.58.41','','inherit','open','closed','','screenshot-2021-10-11-at-19-58-41','','','2021-10-11 19:04:41','2021-10-11 19:04:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/10/Screenshot-2021-10-11-at-19.58.41-1.png',0,'attachment','image/png',0),(29945,0,'2021-10-19 08:45:09','2021-10-19 08:45:09','','WEBSITE PDF SPINE LINKS','','inherit','open','closed','','website-pdf-spine-links-4','','','2021-10-19 08:45:09','2021-10-19 08:45:09','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/10/WEBSITE-PDF-SPINE-LINKS-1-1.pdf',0,'attachment','application/pdf',0),(29946,3,'2021-10-19 11:00:14','2021-10-19 11:00:14','One thing we are told in business is that we should seriously consider delegating the jobs we would rather not do or that we don\'t feel we\'re the best at! Now I have enjoyed every job I have required to run Biomechanics Education but I also recognise when I need to create more time in my schedule by delegating work out.\n\nSo bring in BETH! Out amazing new team member &amp; Digital Marketing Manager\n\nThis is her introduction to you so you know who is now creating our exciting content with me.....\n\n<em><span class=\"ac-designer-copy\">Hey everybody!<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Let me introduce myself.....I am Beth &amp; Biomechanics Education\'s creative &amp; digital media manager.</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">So.. a little bit about myself...</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">At 22 years old I have just graduated from university with a 2:1 in Equine Performance Science. I was extremely surprised at the result to be honest, because, let’s just say, I was a uni student, working from home!</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">It took me a while to figure out what my career interests were at 19yrs, I was following my equestrian interests to start a university degree, in the UK after 12yrs growing up in France. <br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />However, there are no regrets from the decisions that I made as I have met some amazing people and pursued equine job experiences that I never thought I would get the chance to do! I’ve had the opportunity to ride and compete many different horses as well as having some amazing times with my own horse, whom I brought over with me! (I don’t travel lightly, can you tell?). </span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">Growing up in France meant that I am fluent in french and did all of my A-levels equivalents there. Safe to say it was a shock to the system having to study in my mother tongue again after 12 years!</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">Now I am wanting to develop new skill sets and pursue my love of photography, videography and content creating. I have joined the Biomechanics Education</span><span class=\"ac-designer-copy\"> team to learn more about the world of digital media marketing. </span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">Previously, I have mainly photographed animals, my speciality being horses. Being a keen horse rider myself, the physiology and biomechanics aspect of the human body is extremely relevant to this field of interest.</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">Currently I am following the CIMSPA Digital Marketing Hub webinars in order to learn more about digital media influencing &amp; technology. </span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">My role consists of refining and analysing the Biomechanics Education digital media presence with the overall goal to further our reach and mission to improve the heath &amp; wellbeing of the nation.<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />As a newcomer to this particular industry, I didn’t quite know what to expect when accepting the job offer. Having only attended 2 face to face events as yet and without an extensive knowledge as to what they were, I was overwhelmed by how much I have enjoyed the education and the wonderful people so far!</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">The Kaizen Project annual event that Rachel and her partners organised was a dynamic and captivating experience! I throughly enjoyed every one of the sessions! On top of that, the day was jam packed with food and coffee on tap! Whoo hoo!</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">Now I cannot wait to experience more events and start creating more and more great content for the Biomechanics Education pages. </span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">If you have any suggestions on what you would like to see for the future of Biomechanics Education social media pages, please do also let us know!<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Hope to meet you all at an event or workshop soon!</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">....MoveFreely!</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><b class=\"ac-designer-copy\"><span class=\"ac-designer-copy\">Beth! </span></b></em>\n\n<hr />\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Diploma in Biomechanics Coaching 2022 Dates are now live! Click here!</a></h1>','Meet the Team....... Beth, Digital Marketing Manager','','draft','closed','closed','','meet-the-team-beth-digital-marketing-manager','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=29946',0,'post','',0),(29947,0,'2021-10-19 10:44:24','2021-10-19 10:44:24','','IMG_0515','','inherit','open','closed','','img_0515','','','2021-10-19 10:44:24','2021-10-19 10:44:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/10/IMG_0515-1.jpeg',0,'attachment','image/jpeg',0),(30099,3,'2021-11-02 08:10:10','2021-11-02 08:10:10','<h4><span class=\"ac-designer-copy\"><sub class=\"ac-designer-marked-selection ac-designer-copy\">Human anatomy can be so complex and creating interesting, engaging training plans to be fit for purpose can often feel challenging because of it. Clients can or can\'t do certain things with their bodies and we are constantly questioning why is that!?</sub></span><sub class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Understanding the WHYS rather than the WHATS exposes some of this complexity but is also key to developing strategies for working with the diversity of our client\'s bodies.</span></sub></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">However the more I have studied human biomechanics, the more I learn, the deeper my comprehension goes, the more I have discovered simplifying things is far more helpful in application.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have more power than we think to shape our client’s health destiny. The secret is simply to understand movement and committing to gain as many tools/skills as we can to improve it! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Considering whole body function in simple terms…. </span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Walking</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Squatting</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Pulling</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Pushing</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Bending </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Lifting </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Carrying </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Running</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Encouraging our clients to aim to ‘exercise’ less and move more. Even educating clients about cross training the eyes with different views to move our eye muscles through different ranges of motion when sitting at a desk/screen for many hours. Those ciliary muscles superior, lateral, medial rectus &amp; superior, inferior obliques need a variety of ranges of motion too!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Educating clients about how we become ‘cast’ into shoes, chairs and cars and we experience smooth level ground so much that anything beyond these feels tough. Deliberate movement excuses and variability in terrain can impact considerably on their bodies if consistently considered over time.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Teaching them that fixed hip /spine geometry with gravity applying a force down into those sitting muscles against the office chair in itself isn\'t an issue but for long periods on a regular basis is likely to result in their body complaining with danger signals through those nociceptors - resulting in pain or aches!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Letting them know that Myokines are activated when we strengthen muscles and they produce an anti-inflammatory response to fight illness. So helping clients to appreciate that muscle strengthening is way more than for aesthetic purposes and is in fact an anti inflammatory system. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet also confirming that we recognise it can be a challenge to go against our culture, those around us, furniture and technology that consistently makes life EASIER…..which is not necessarily for the better….so keeping things simple with these…..</span>\n\n&nbsp;\n<h2><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\"><b>8 Things To Remember:</b></a></h2>\n&nbsp;\n<ol>\n 	<li><span style=\"font-weight: 400;\"> ‘Comfort’ is feeling fully supported but too much of it can gradually result in low muscle tone</span></li>\n 	<li><span style=\"font-weight: 400;\"> Movement is compulsory!</span></li>\n 	<li><span style=\"font-weight: 400;\"> Tissue tolerance and load management is required for a healthy body </span></li>\n 	<li><span style=\"font-weight: 400;\"> Pain can simply be a signal to move differently or more or with more variety</span></li>\n 	<li><span style=\"font-weight: 400;\"> Your body is a master of compensation and hides issues well!</span></li>\n 	<li><span style=\"font-weight: 400;\"> Naturally we are designed to reserve energy, we must fight it!</span></li>\n 	<li><span style=\"font-weight: 400;\"> Lifestyle ‘solutions\' are creating a more sedentary lifestyle, we should challenge it!</span></li>\n 	<li><span style=\"font-weight: 400;\"> The above list is super simple but not necessarily easy to implement, urging them to NOT follow the crowd...be a chair rebel!</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Exercise reps and sets can be helpful and allow us to measure, monitor and control movement programming. Yet we need more than this to really understand our clients movement limitations and causes of modern ailments and complaints.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Keeping things simple, using assessments and benchmarks to evaluate your clients will help them appreciate what you can offer. Knowling, with confidence, what to do at any given moment for each and every client who comes with their various injuries, complaints, aims, goals and desires to move more freely and with less pain would be a dream right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is exactly what we have helped other trainers and coaches just like you to do for almost 2 decades. With 2022 just around the corner and particularly if you have been following us for a while and thinking about attending our workshops this Juicemail is for you!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are looking for a course that changes the game for you and your clients by giving you extensive knowledge, fully supported inclusive learning experience &amp; a sense of being part of something bigger rather than feeling like you are struggling alone, then keep reading!</span>\n\n&nbsp;\n<h2><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\"><b>Diploma in Biomechanics Coaching 2022</b></a></h2>\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-28328\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1709\" />\n\n<span style=\"font-weight: 400;\">Helping our clients understand their bodies, why they hurt &amp; how they can improve unwanted sensations resulting in ‘modern ailments’ has become an expectation for movement practitioners. Yet we feel ill equipped from our basic training to assess neuro-muscular skeletal function. We can feel we are lacking during consultations or while writing programmes, right!? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We will teach you how to systematically assess, programme, monitor &amp; empower your clients to move more freely &amp; with less pain. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">&#x2705; Learn 43 physical assessments </span>\n\n<span style=\"font-weight: 400;\">&#x2705; Gain a deeper understanding of the 3 subsystems &amp; intrinsic anatomy </span>\n\n<span style=\"font-weight: 400;\">&#x2705; Know how to test for muscle spasm, nerve tightness &amp; joint ranges </span>\n\n<span style=\"font-weight: 400;\">&#x2705; Develop your skills in programme design using the unique but wonderfully simple iMoveFreely programme </span>\n\n<span style=\"font-weight: 400;\">&#x2705; Learn how &amp; when to prescribe muscle energy techniques, nerve mobilisations &amp; pure joint mobilisations</span>\n\n<span style=\"font-weight: 400;\">&#x2705; Discover how to take advantage of the law of reciprocal inhibition for programme design </span>\n\n<span style=\"font-weight: 400;\">&#x2705; Gain immediate access to a multidisciplinary team for those tricky clients </span>\n\n<span style=\"font-weight: 400;\">&#x2705; Join this industry changing team of practitioners who go beyond professional &amp; set the bar in high quality service that allows them to charge more than the other PT’s</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-27304\" src=\"https://biomechanicseducation.com/wp-content/uploads/2018/02/IMG_1199-scaled-1.jpeg\" alt=\"\" width=\"2560\" height=\"1920\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">&#x1f4cd;We need passionate trainers &amp; coaches who actually care about their communities health </span>\n\n<span style=\"font-weight: 400;\">&#x1f4cd;We want individuals who want to be part of a multidisciplinary team sharing ideas &amp; skills </span>\n\n<span style=\"font-weight: 400;\">&#x1f4cd;Let us help you know your limits while gaining more clients </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">IS THIS YOU?</span>\n\n<span style=\"font-weight: 400;\">Yes? </span>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">CLICK HERE QUICK we are already almost fully booked in the first half of 2022!</span></a>\n\n&nbsp;','Keeping it simple with 8 things to remember!','','draft','closed','closed','','keeping-it-simple-with-8-things-to-remember','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=30099',0,'post','',0),(30198,3,'2021-11-09 14:17:44','2021-11-09 14:17:44','<div style=\"text-align:center;\">\nhttps://youtu.be/3MYH7mc7Aes\n</div>\n\nTeaching clients to take advantage of a screen break by trying this little iMoveFreely flow to improve upper body movement, stability &amp; control :\n<div class=\"\"></div>\n<div class=\"\">Pec Minor is responsible for scapular protraction and can become inhibited by our technology influenced lifestyles. Rather than simply stretching this small muscle why not try this M.E.T (muscle energy technique) to improve its movement quality first then…<u class=\"\"><b class=\"\">20% effort 20 sec isometric hold x 2 sets </b></u></div>\n<div class=\"\"></div>\n<div class=\"\">Strengthening the retractors, the antagonistic movement, afterwards takes advantage of the law of reciprocal inhibition to improve the strength ratios around the shoulders, then…..<b class=\"\"><u class=\"\">could add weight here if needed for strength reps and sets relevant to the individual </u></b></div>\n<div class=\"\"></div>\n<div class=\"\">Strengthening the pec minor / protractor group next makes this a home win in terms of programmes design based on science, logic and function and all round upper body movement quality! <u class=\"\"><b class=\"\">This video gives 3 options at different levels, increasing the load by moving the knees further apart from the hands - choose the best one you think for your client blog with the appropriate reps and sets for their level</b></u></div>\n<div class=\"\"></div>\n<div class=\"\"><em>GO ON! </em></div>\n<div class=\"\"><em>TRY IT WITH YOUR CLIENT’S </em></div>\n<div class=\"\"><em>LET THEM TELL YOU HOW THEY FEEL</em></div>\n&nbsp;\n\n<hr />\n\n<h1>Would you like to become an <a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/\" target=\"_blank\" rel=\"noopener\">iMoveFreely Instructor</a>?</h1>\nREAD MORE &gt;&gt; <a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/\" target=\"_blank\" rel=\"noopener\">HERE</a>\n<div></div>\n<div style=\"text-align: right;\"></div>','Give your client\'s an excuse to stop work.....','','draft','closed','closed','','give-your-clients-an-excuse-to-stop-work','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=30198',0,'post','',0),(30200,0,'2021-11-09 14:10:43','2021-11-09 14:10:43','','_MG_9971','','inherit','open','closed','','_mg_9971','','','2021-11-09 14:10:43','2021-11-09 14:10:43','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/MG_9971-scaled-1.jpg',0,'attachment','image/jpeg',0),(30202,0,'2021-11-09 14:19:40','2021-11-09 14:19:40','','Screenshot 2021-11-09 at 14.18.47','','inherit','open','closed','','screenshot-2021-11-09-at-14-18-47','','','2021-11-09 14:19:40','2021-11-09 14:19:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/Screenshot-2021-11-09-at-14.18.47-1.png',0,'attachment','image/png',0),(30273,3,'2021-11-16 13:43:41','2021-11-16 13:43:41','<span class=\"\">Today is</span><span class=\"\"> national TAKE A HIKE DAY!</span><br class=\"ac-designer-copy\" /><span class=\"\">What a </span><span class=\"\">perfect</span><span class=\"\"> </span><span class=\"\">opportunity</span><span class=\"\"> to tell a client ​just that!?!?</span><br class=\"ac-designer-copy\" /><span class=\"\">​</span><br class=\"ac-designer-copy\" /><span class=\"\">OK OK OK yes I hear ya, we could interpret this in at least 2 ways....</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"\">Yes client cull can be an interesting activity and necessary </span><span class=\"\">sometimes</span><span class=\"\"> right!?!?!?​ Referring away</span><span class=\"\"> the \'deadwood\' clients who just want YOU to FIX THEM or make them lose weight overnight! Usually the person who complains most </span><span class=\"\">about</span><span class=\"\"> how much you charge too</span><span class=\"\">..</span><span class=\"\">​</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"\">However this weeks Juicemail is more about</span><span class=\"\"> telling some clients to take a break, go away </span><span class=\"\">to</span><span class=\"\"> walk or hike for the day which can be some of the least technical but best advice we give..</span>\n\n&nbsp;\n<h1>\'Get Up\' by James Levine</h1>\n&nbsp;\n\n.....is a strong recommendation for a read or listen and he like us shares the concept of N.E.A.T Calories burn. In fact he tested in one of his labs the results of certain activities on calorie expenditure.\n\nNON\n\nEXERCISE\n\nACTIVITY\n\nTHERMOGENESIS\n\nIs one of 3 ways we burn calories but its also one of the easiest to encourage our clients to understand and therefore tap into both consistently, regularly and easily. It is how taking a hike can not only help clients to burn more calories but also to move more freely.\n\nIts gentle or strong\n\nIts slow or fast\n\nIts short or long\n\nIt allows our client to choose how they burn more NEAT calories while pumping energy and fluid through their integrated system of muscles, bones and nerves with the added bonus of seeking beautiful scenery that isnt on the TV, phone or laptop!\n\nIt can also be done with loved one, talking, opening up conversations and can end with a sense of achievement.\n\n&nbsp;\n<h1>Never underestimate</h1>\n&nbsp;\n\nAt Biomechanics Education we teach a very complex subject but we also remind our coaches regularly about simplifying their technical knowledge into \'client speak\'\n\nThe value of educating clients on the value of walking, hiking, NEAT calories and taking time out from the screens.\n\nClients value your knowledge but they ALWAYS value being able to simplify the tsk at hand, the journey to the goal and simple ways to burn more calories and move more freely!\n\n&nbsp;\n<h1>Why Not?</h1>\n&nbsp;\n\nSo why not simply challenge your client this week to go away, take a hike and walk more, walk freely and take a break from their screens!?\n\n<hr />\n\n&nbsp;\n<h1><em>We help change lives.....</em></h1>\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-30276\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/11/Screenshot-2021-11-16-at-12.25.26.png\" alt=\"\" width=\"1976\" height=\"738\" />\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">SAVE £479.40p</a> by booking your place on any 2022 <a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Diploma in Biomechanics Coaching</a></h1>\n<h1>BEFORE Dec 1st 2021</h1>\n<ul>\n 	<li>Why not join us for a learning experience like no other?</li>\n 	<li>Find out how simple this complex subject \'intrinsic biomechanics\' can be in application.</li>\n 	<li>Join our expanding community &amp; be a part of something really meaningful</li>\n 	<li>Gain skills, confidence, knowledge, friends, a multidisciplinary team around you and of course VERY HAPPY CLIENTS!</li>\n</ul>\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">JOIN US &amp; CLICK HERE &lt;&lt;</a>','Would you like to know when, and how, to tell your client to GO AWAY…..?','','draft','closed','closed','','would-you-like-to-know-when-and-how-to-tell-your-client-to-go-away','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=30273',0,'post','',0),(30274,0,'2021-11-16 12:21:07','2021-11-16 12:21:07','','take-a-hike-day-fun','','inherit','open','closed','','take-a-hike-day-fun','','','2021-11-16 12:21:07','2021-11-16 12:21:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/take-a-hike-day-fun-1.jpg',0,'attachment','image/jpeg',0),(30275,0,'2021-11-16 12:23:05','2021-11-16 12:23:05','','image0','','inherit','open','closed','','image0','','','2021-11-16 12:23:05','2021-11-16 12:23:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/image0-1.jpeg',0,'attachment','image/jpeg',0),(30369,0,'2021-11-24 11:12:58','2021-11-24 11:12:58','','WEBSITE PDF SMART LINKS','','inherit','open','closed','','website-pdf-smart-links','','','2021-11-24 11:12:58','2021-11-24 11:12:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/WEBSITE-PDF-SMART-LINKS-.pdf',0,'attachment','application/pdf',0),(30371,0,'2021-11-24 11:15:15','2021-11-24 11:15:15','','danielle-macinnes-IuLgi9PWETU-unsplash','','inherit','open','closed','','danielle-macinnes-iulgi9pwetu-unsplash','','','2021-11-24 11:15:15','2021-11-24 11:15:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/danielle-macinnes-IuLgi9PWETU-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30373,0,'2021-11-24 11:25:34','2021-11-24 11:25:34','','WEBSITE PDF WALK MORE LINKS','','inherit','open','closed','','website-pdf-walk-more-links','','','2021-11-24 11:25:34','2021-11-24 11:25:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/WEBSITE-PDF-WALK-MORE-LINKS-.pdf',0,'attachment','application/pdf',0),(30375,0,'2021-11-24 11:32:03','2021-11-24 11:32:03','','jeffrey-grospe-6djTDnq4Svw-unsplash','','inherit','open','closed','','jeffrey-grospe-6djtdnq4svw-unsplash','','','2021-11-24 11:32:03','2021-11-24 11:32:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/jeffrey-grospe-6djTDnq4Svw-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30377,0,'2021-11-24 11:36:19','2021-11-24 11:36:19','','elisa-ventur-bmJAXAz6ads-unsplash','','inherit','open','closed','','elisa-ventur-bmjaxaz6ads-unsplash','','','2021-11-24 11:36:19','2021-11-24 11:36:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/elisa-ventur-bmJAXAz6ads-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30379,0,'2021-11-24 11:38:08','2021-11-24 11:38:08','','WEBSITE PDF STRESS LINKS','','inherit','open','closed','','website-pdf-stress-links','','','2021-11-24 11:38:08','2021-11-24 11:38:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/WEBSITE-PDF-STRESS-LINKS-.pdf',0,'attachment','application/pdf',0),(30380,0,'2021-11-24 11:50:37','2021-11-24 11:50:37','','WEBSITE PDF SQUAT LINKS','','inherit','open','closed','','website-pdf-squat-links','','','2021-11-24 11:50:37','2021-11-24 11:50:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/WEBSITE-PDF-SQUAT-LINKS-.pdf',0,'attachment','application/pdf',0),(30431,3,'2021-11-30 11:43:46','2021-11-30 11:43:46','<h2 class=\"p1\">Also known as the TGU this beauty is in my top 5 fav movements.</h2>\n&nbsp;\n<h2>Why?....READ ON.....</h2>\n&nbsp;\n\nhttps://youtu.be/JnOIuIfMVQM\n<p class=\"p1\">Have a watch of this video &amp; notice the various aspects that the body can benefit from in one simple ‘flow’.</p>\n\n<ul class=\"ul1\">\n 	<li class=\"li1\">Trunk stiffness &amp; control is challenged.</li>\n 	<li class=\"li1\">Lower limb joint range, stability &amp; strength are challenged.</li>\n 	<li class=\"li1\">Upper body stability, ranges &amp; some degree of strength is challenged.</li>\n 	<li class=\"li1\">Coordination &amp; proprioception is challenged throughout.</li>\n</ul>\n&nbsp;\n<h2 class=\"p3\"><b>Ok so what?</b></h2>\n&nbsp;\n<p class=\"p1\">Imagine you are young &amp; wish to improve these elements for sport, games &amp; play.</p>\n<p class=\"p1\">Now imagine you are an adult &amp; you wish to avoid (or improve) little aches &amp; niggles from your lifestyle or your fitness &amp; aesthetics.</p>\n<p class=\"p1\">Then imagine you’re in your older years &amp; you want to be able to get up from the floor should you happen to fall.</p>\n&nbsp;\n<h2 class=\"p3\"><b>And?</b></h2>\n&nbsp;\n<p class=\"p1\">Now imagine a TGU with a weight in that top hand….imagine the effects of that load on the body….imagine the added challenge….</p>\n<p class=\"p1\">Then imagine the TGU slower…..faster….repeated from one side to the other for a few rounds, many rounds, less weight, more weight….</p>\n<p class=\"p1\">We could even consider exaggerating angles in certain positions, holding the ones we wish to focus on….</p>\n&nbsp;\n<h2 class=\"p3\"><b>The joy of movement<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p1\">This is the joy of movement (for me anyway) coming up with variations, understanding my clients unique biomechanics, considering loads, challenges, their goals &amp; how to make them all fit together for purpose.</p>\n&nbsp;\n<h2 class=\"p3\"><b>Ok what now?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p1\">So as a movement trainer/coach we should probably learn simple ways to analyse movement, learn to assess our client’s biomechanics, then apply these ideas into our programme design.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">All this while trying not to feel limited by what other (maybe more confident) PTs say is the only way a movement MUST be done….</p>\n<p class=\"p1\">Just be sure you know WHY you’re coaching a movement the way you are by considering your justifications.</p>\n<p class=\"p1\">When you pick an exercise ask yourself “why did I choose that one?”</p>\n<p class=\"p1\">“Why did I choose those reps/sets/speeds/loads?”</p>\n<p class=\"p1\">If you KNOW the answers why YOU made those choices, based on the fact YOU KNOW YOUR CLIENT, then those who don’t, have no right to tell you otherwise.</p>\n<p class=\"p1\">Be clear<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Be confident<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Keep it simple<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Invest in learning (know that it never ends)</p>\n<p class=\"p1\">Justify every decision you make - even to yourself<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Talk to different professionals from different schools of thought<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Stay open minded<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Know that everyone doubts themselves at times too<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">But most of all….</p>\n<p class=\"p1\">Love what you do &#x2764;&#xfe0f;</p>\n<p class=\"p1\">Join our fast growing team of Biomechanics Coaches &#x1f44a;&#x1f3fc;</p>\n<p class=\"p1\">We want people like you who care, want to make a difference but would like an awesome community to lean on &amp; offer support!</p>\n&nbsp;\n\n<hr />\n\n<h1><em>We help change lives.....THROUGH MOVEMENT EDUCATION....Join us!</em></h1>\n<h1></h1>\n<img class=\"alignnone size-medium wp-image-30437 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/11/IMG_1395-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">READ MORE ABOUT THE Diploma in Biomechanics Coaching 2022!</a></h1>','The Turkish Get Up','','draft','closed','closed','','the-turkish-get-up','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=30431',0,'post','',0),(30436,0,'2021-11-30 11:48:20','2021-11-30 11:48:20','','IMG_2328','','inherit','open','closed','','img_2328','','','2021-11-30 11:48:20','2021-11-30 11:48:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/IMG_2328-scaled-1.jpeg',0,'attachment','image/jpeg',0),(30437,0,'2021-11-30 11:50:23','2021-11-30 11:50:23','','IMG_1395','','inherit','open','closed','','img_1395','','','2021-11-30 11:50:23','2021-11-30 11:50:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/IMG_1395-scaled-1.jpeg',0,'attachment','image/jpeg',0),(30439,3,'2021-12-02 14:10:56','2021-12-02 14:10:56','<p class=\"p3\">We live in such a fast paced world that is literally full of distractions.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">We view, or hear, thousands of attention grabbing text, images, videos &amp; ditties on a wide variety of screens, platforms, mediums &amp; buildings.</p>\n<p class=\"p3\">We wish we had more time<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">We wish for something different<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It’s in our nature to constantly strive for a different life, a better life, a perfect day....maybe every day?</p>\n<p class=\"p3\">We can very often feel like we are never going to get to that perfect vision we have of living our life the way we want to.</p>\nWe think everyone else is richer, happier &amp; more successful....\n\n&nbsp;\n<h2 class=\"p4\"><b>But is this actually true?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n\n<img class=\"alignnone size-medium wp-image-30487 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/paola-aguilar-O-FR79xcGh8-unsplash-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\n<p class=\"p3\">A mentor once said to me ‘<em>challenge everything</em>’ &amp; this post is to suggest that we might want to consider trying the same thing in all aspects of our lives</p>\n&nbsp;\n<h3 class=\"p3\"><em><b>\"Losing everything</b><span class=\"Apple-converted-space\"> was the best thing that ever happened to me\"</span></em></h3>\n&nbsp;\n<p class=\"p3\">In 2013 I lost almost everything I had ever earned &amp; worked for. My life savings, my career &amp; almost my house.<span class=\"Apple-converted-space\"> </span></p>\nLiving on \'no frills\' tinned food, cancelling all the direct debits that I could, getting rid of all my debt using all of my savings &amp; not going out or eating out felt devastating.\n\nBut having no job I had lots of TIME.\n\nSo I started being more creative, making gifts for birthdays instead of buying them, creative cooking was essential due to the lack of income. I started walking to visit family &amp; friends locally to save fuel &amp; actually having all this time meant I was actually able to think, slow down &amp; consider \'stuff\'.\n\nI was asking myself those big questions:\n<ul>\n 	<li>What was my purpose?</li>\n 	<li>What made me happy?</li>\n 	<li>What did I enjoy doing?</li>\n 	<li>What would a perfect day look like...to me?</li>\n</ul>\n&nbsp;\n<h2>What is your purpose?</h2>\n&nbsp;\n\n<img class=\"alignnone size-medium wp-image-30488 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/joshua-earle-ICE__bo2Vws-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\nHaving so much time &amp; freedom with no job started to feel more liberating than stifling as I realised my quality of life was unchanged, in fact many things has improved! Then once I knew what I wanted to do I began to work on my new business, from scratch, no investment, no overdrafts, no loans!\n\nIt felt great!\n\nBeing in a position to get out of bed when I wanted in the mornings did not result in me lying in bed, I would jump out of bed with hundreds of ideas for my plan.\n\nI stopped thinking about what I did not have because I was driven by passion &amp; purpose.\n\nMy schedule was simple because it was up to me what I did, which also meant I could spend time listening or talking to people, friends, family &amp; even customers &amp; I really really enjoyed those conversations.\n\n&nbsp;\n<h2>Worst or best experience?</h2>\n&nbsp;\n\nThis resulted in the realisation that losing everything was the best thing to happen to me because it allowed me to compare the experiences of living with a really good income to literally no income.\n\nGoing from spending money easily, having lots of <em>things</em> \'on credit\' because I wanted stuff now &amp; paying interest wasn\'t a concern, being expected to be places at certain times, worrying about being judged on the gifts I gave based on what I was earning, stressed about the amount of outgoings I had on credit cards etc, being constantly busy, non stop, exhausted doing lots of things everyday ALL THE TIME, unable to think!\n\n...to the experience of having no job, no income, no debt, no stress, no restrictions &amp; the freedom to think &amp; realise what it really was that made me happy.\n\nHaving lots of money was proven to be more stressful or at least at that point in my life it did anyway. Having a good job, a lot going on, a busy lifestyle left me feeling like I was always trying to be somewhere else, doing something else, with someone else, never quite succeeding....I didn\'t know what at, earning even more money I guess!?!?\n\nHaving nothing changed some things but the important stuff was still there, my quality of life &amp; self respect actually began to improve.\n\n&nbsp;\n<h2>The Perfect Day</h2>\n&nbsp;\n\n<img class=\"alignnone size-medium wp-image-30489 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/frank-mckenna-OD9EOzfSOh0-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\nAs I set up my new company I had written a lot of my thoughts down &amp; one thing I did was to write down what a perfect day would look like to me.\n\nGuess which period of my life was most fulfilling...before or after losing everything?\n\nGuess which period gave me more days that felt like perfect days?\n\nYes, losing everything gave me a gift. The gift of realisation that I was indeed living far more perfect days now than I was before I had lost everything. My days were now more fulfilling, fun, challenging, interesting, exciting, calm &amp; yet full.\n\nNow I am not suggesting for a moment that you need to lose everything to have the experience I did. in fact this is the reason I wanted to share such a personal story with you, in the hope that it avoids something like that if you are in a fast paced lifestyle that feels like you\'re never gonna get <em>there</em>....wherever <em>there</em> is!\n\nHowever what I am suggesting is that you may not actually be that far away from the dream right now. If we don\'t take stock, reflect &amp; consider what we have rather than what we do not then we may miss this very important lesson.\n\nIts good to dream, plan, have a vision &amp; purpose but we should try not to let the speed of life stop us from the experience of living perfect days every day.\n\n&nbsp;\n\n<img class=\"alignnone size-medium wp-image-30491 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/sri-jalasutram-e2U-VYSY7ro-unsplash-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" />\n<h2 class=\"p3\">P.s. Let me share a old story that my buddy Mark tweaked for us &amp; he made super relevant to sum up this Juicemail enjoy!<span class=\"Apple-converted-space\"> </span></h2>\n<h1 class=\"p1\" style=\"text-align: left;\"><a href=\"https://www.facebook.com/tfimblog/photos/a.1196648380432297/1197630237000778/?type=3\" target=\"_blank\" rel=\"noopener\">READ MARK\'S VERSION HERE then come back....</a></h1>\n&nbsp;\n<h2>Grab a pen &amp; paper....!</h2>\n<p class=\"p3\">Enjoy the moment you’re in<span class=\"Apple-converted-space\"> right now &amp; s</span>tart writing…..the Perfect Day in YOUR mind right now</p>\n\n<ul>\n 	<li>Where would you be?</li>\n 	<li>Who would you be with?</li>\n 	<li>What time would you wake?</li>\n 	<li>What would you wear?</li>\n 	<li>What would you eat?</li>\n 	<li>What would you do?</li>\n</ul>\nKeep writing, keep going.....see what that Perfect Day looks like genuinely, realistically &amp; notice how far, or near, you are to it....then maybe share it on social media with a tag to us!\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h1><b class=\"ac-designer-copy\"><span class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Why not share your Perfect Days on instagram...use #myperfectday @biomechanics_education</span></span></b></h1>\n&nbsp;','The Perfect Day','','draft','closed','closed','','the-perfect-day','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=30439',0,'post','',0),(30443,0,'2021-11-30 13:25:24','2021-11-30 13:25:24','','WEBSITE PDF weak glutes LINKS','','inherit','open','closed','','website-pdf-weak-glutes-links','','','2021-11-30 13:25:24','2021-11-30 13:25:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/11/WEBSITE-PDF-weak-glutes-LINKS-.pdf',0,'attachment','application/pdf',0),(30487,0,'2021-12-02 20:40:04','2021-12-02 20:40:04','','paola-aguilar-O-FR79xcGh8-unsplash','','inherit','open','closed','','paola-aguilar-o-fr79xcgh8-unsplash','','','2021-12-02 20:40:04','2021-12-02 20:40:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/paola-aguilar-O-FR79xcGh8-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30488,0,'2021-12-02 20:41:03','2021-12-02 20:41:03','','joshua-earle-ICE__bo2Vws-unsplash','','inherit','open','closed','','joshua-earle-ice__bo2vws-unsplash','','','2021-12-02 20:41:03','2021-12-02 20:41:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/joshua-earle-ICE__bo2Vws-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30489,0,'2021-12-02 20:42:44','2021-12-02 20:42:44','','frank-mckenna-OD9EOzfSOh0-unsplash','','inherit','open','closed','','frank-mckenna-od9eozfsoh0-unsplash','','','2021-12-02 20:42:44','2021-12-02 20:42:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/frank-mckenna-OD9EOzfSOh0-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30491,0,'2021-12-02 20:47:40','2021-12-02 20:47:40','','sri-jalasutram-e2U-VYSY7ro-unsplash','','inherit','open','closed','','sri-jalasutram-e2u-vysy7ro-unsplash','','','2021-12-02 20:47:40','2021-12-02 20:47:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/sri-jalasutram-e2U-VYSY7ro-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30500,3,'2021-12-04 08:10:43','2021-12-04 08:10:43','<p class=\"p3\">Why am I making this comparison?</p>\n<p class=\"p3\">Well there are people on the internet who post that there are right &amp; wrong ways to do moves simply because of the name they have been given.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">What I aim to do in this Juicemail is clarify the naming of movements does NOT necessarily make ANY VARIATION WRONG OR BAD OR DAMAGING.</p>\n<p class=\"p3\">Variation is GOOD!<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The body LOVES it!<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">However if your clients body is unprepared<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">OR</p>\n<p class=\"p3\">A movement is misunderstood, it may not be performed as optimally as it could for the benefit/goal desired.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">So while the naming of moves can be helpful for lay people to remember their homework, it can also be detrimental for some people thinking there are only certain ways to perform certain named exercises.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p4\"><b>Where am I going with this?</b></h2>\n&nbsp;\n<p class=\"p3\">Look if it were up to me I would encourage all professionals to clarify joints actions in the description for clarity as oppose to suggesting you cannot do a windmill unless its done precisely their way.</p>\n<p class=\"p3\">Shall I explain more….?</p>\n<p class=\"p3\"><a href=\"https://www.youtube.com/watch?v=6i6Btj6Y3k8\" target=\"_blank\" rel=\"noopener\">Coach Vaughn</a> sounds very frustrated by the people he’s following or watching on social media who are doing The Triangle with a KG and calling it a Windmill….</p>\n<img class=\"alignnone size-medium wp-image-30502 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-11-26-at-15.08.58-300x143.png\" alt=\"\" width=\"300\" height=\"143\" />\n<p class=\"p3\">Now I understand that he cares about his craft &amp; he’s obviously technically very good at breaking down the move he calls The Windmill so check his video out for that as its really quite helpful!</p>\n<p class=\"p3\">BUT</p>\n<p class=\"p3\">He is comparing it to a move he calls The Triangle (from Yoga) yet it seems he doesn’t understand the technique required for what Yogi’s call a Triangle. Since it doesnt ‘require’ spine lateral flexion unless the individual is limited in their hip mobility/flexibility. So the image he’s using is (in my opinion) for provocation rather than a technical comparison.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Coach Vaughn…I get it buddy, grabbing attention often takes provocation &amp; I loved your Windmill break down video!</p>\n<p class=\"p3\">Anyhoo….</p>\n&nbsp;\n<h1 class=\"p4\"><b>The Windmill</b></h1>\n&nbsp;\n<p class=\"p3\">This is an interesting movement that shows why it was named such after those tall buildings that have spinning blades that rotate at the top.</p>\n<p class=\"p3\">The body representing the building<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The arms representing 2 blades</p>\n<p class=\"p3\">Most often the performance is seen being performed with a Kettle bell in the top hand. The Windmill’s exact origin I have so far been unable to unravel however…..</p>\n<p class=\"p3\"><i>“Kettlebell swinging and juggling was a popular “folk exercise” among Russian farming communities in the nineteenth and early twentieth centuries, but it wasn’t until 1948 that it became an official sport” stated Nick <span class=\"Apple-converted-space\">  </span>English about Victoria Felkar’s Phd research into the historical perceptions of the muscular body (</i><a href=\"https://barbend.com/kettlebell-history/\"><span class=\"s2\"><i>https://barbend.com/kettlebell-history/</i></span></a><i>)<span class=\"Apple-converted-space\"> </span></i></p>\n&nbsp;\n<h2 class=\"p4\"><b>Windmill Technique<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">Most descriptions of the technique are along these lines…..</p>\n<p class=\"p3\">….lifter stands feet apart, KB in one hand with that arm raised above the head with palm forwards. Bottom hand in-front of the opposite thigh, palm forwards. While looking up at KB, the lifter hip hinges slightly off to the side either with legs straight or a variation is with the front knee slightly bent. Going to a range that mobility &amp; flexibility allow while sliding the bottom palm down the front of the leg.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The spine will require rotation as the lifter descend to maintain a vertical KB/arm position while keeping a stiff trunk, then maybe a pause at the bottom, prior to ascending the same path back up.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">We will come back to this move in more detail in a moment, but first….</p>\n&nbsp;\n<h2 class=\"p4\"><b>Triangle Technique<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">The Triangle is a similar movement from yoga that looks very similar. Also like a tall building with 2 blades that rotate around the body.</p>\n<p class=\"p3\">This movement is focused on improving mobility &amp; flexibility through the hips &amp; spine.</p>\n<p class=\"p3\">Performed with a much wider stance &amp; more frontal plane (lateral) movement rather than a hip hinge.</p>\n&nbsp;\n<h2 class=\"p4\"><b>So what?</b></h2>\n&nbsp;\n<p class=\"p3\">Both moves are shown in the video here (or my interpretations anyway!) &amp; both are demonstrated without additional loading so we compare like for like in this instance.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The windmill as mentioned earlier, is most commonly seen performed with a KB in the top hand &amp; can also be done with a KB in the bottom hand or both!</p>\n<p class=\"p3\">The triangle is not usually loaded at all other than body weight &amp; may actually be held for a few ‘breaths’.</p>\n&nbsp;\n<h2 class=\"p4\"><b>And?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">So why do one or the other?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The intrinsic biomechanics difference between the 2 examples (if done with the same load) is where the emphasis is focused based on the lengths of the levers, the joint angles &amp; the joint ranges.</p>\n<p class=\"p3\">Firstly the windmill has a narrower stance. This reduces the base of support (making it harder) but is a more familiar leg width than compared to the triangle (making it easier).</p>\n<p class=\"p3\">The windmill can also have a slight bend in the front knee. This reduces tension on the hamstring &amp; the nervous system (sciatic nerve in this particular area) making it easier on these areas. This also drops the hip slightly on that side meaning there is less range of motion required from the lateral flexors on the opposite side of the trunk, making it easier again.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">However where this move differs most I think from the Triangle is that the hip is pushed outside the midline. This is what loads the abductors in particular.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It does this by increasing the hip angle/ range, &amp; therefore load, to focus the attention into that area. This obviously makes it harder than the triangle on this particular area of the body.</p>\n&nbsp;\n<h1 class=\"p4\"><b>The Triangle</b></h1>\n&nbsp;\n<p class=\"p3\">The Triangle with a much wider stance which should make it easier but it’s just not as ‘familiar’ a position in terms of proprioception &amp; the joints lose their surface congruency above the pull of gravity from below, thus making it harder.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It has both legs straight meaning as your client tips into the movement they will require more flexibility &amp; mobility in the hips &amp; nervous system to achieve the same range of motion as compared to the Windmill. This also makes it harder.</p>\n<p class=\"p3\">Finally the hips stay relatively central under the trunk making it more balanced &amp; symmetrical in the lower body.</p>\n<p class=\"p3\">But the trunk stiffness required to control the longer lever while the centre of gravity shifts means the hip abductors aren’t loaded in the same way as during the windmill.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">However the load on the spine lateral flexors increases quite a bit.</p>\n<p class=\"p3\">Making it feel more challenging in the trunk.</p>\n&nbsp;\n<h2 class=\"p4\"><b>How do I choose the one for my client?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">If you want to just pick one for your client then consider their limitations.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Assess their biomechanics &amp; consider the areas you wish to strengthen.</p>\n<p class=\"p3\">Take into account your system of approach - ie which comes first when programming hip abductors or spine lateral flexors?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">And why?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Then choose the variation that fits.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Or<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Simply ask them to try both</p>\n<p class=\"p3\">Assess their movement quality<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Then decide.</p>\n\n<h1 class=\"p1\"><b>KEEP IT SIMPLE!<span class=\"Apple-converted-space\"> </span></b></h1>','The Windmill V’s The Triangle ','','draft','closed','closed','','the-windmill-vs-the-triangle','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=30500',0,'post','',0),(30502,0,'2021-12-03 18:21:23','2021-12-03 18:21:23','','Screenshot 2021-11-26 at 15.08.58','','inherit','open','closed','','screenshot-2021-11-26-at-15-08-58','','','2021-12-03 18:21:23','2021-12-03 18:21:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-11-26-at-15.08.58.png',0,'attachment','image/png',0),(30503,0,'2021-12-03 18:22:11','2021-12-03 18:22:11','','IMG_2288','','inherit','open','closed','','img_2288','','','2021-12-03 18:22:11','2021-12-03 18:22:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/IMG_2288-scaled-1.jpg',0,'attachment','image/jpeg',0),(30506,3,'2021-12-09 08:20:46','2021-12-09 08:20:46','<p class=\"p1\"><strong>Michael E Gerber</strong> stated in his famous book, <strong>The E-Myth Revisited</strong>,</p>\n\n<blockquote>\n<p class=\"p1\"><i><img class=\"size-medium wp-image-30588 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-08.12.45-202x300.png\" alt=\"\" width=\"202\" height=\"300\" />“Before you can determine what that role [of your business] will be, you must ask yourself these questions:</i></p>\n\n<ul class=\"ul1\">\n 	<li class=\"li1\"><i>What do I value most?</i></li>\n 	<li class=\"li1\"><i>What kind of life do I want?</i></li>\n 	<li class=\"li1\"><i>What do I want my life to look like, to feel like?</i></li>\n 	<li class=\"li1\"><i>Who do I wish to be?</i></li>\n</ul>\n<p class=\"p1\"><i>Your PRIMARY AIM is the answer to all these questions.”</i></p>\n</blockquote>\n&nbsp;\n<h2>The Entrepreneurial Seizure</h2>\n&nbsp;\n\nWhen becoming self employed, (which so many of us are or have been) we imagine being in full control of our lives, free to choose our hours of work, what time we wake up, how much we charge and that just because everyone of our loved ones said we are good at what we do that we would succeed and have clients queing at the door.\n\nYet we very soon discover we underestimate the fact that we are then choosing to, not only be a coach or trainer but also a manager, marketer, sales person, accountant, authour, digital media manager &amp; designer, amongst other things.\n\nWe find ourselves working split shifts, getting up at all hours, working until late to accomodate the client\'s availability along with getting our books done, programmes written &amp; of course finding time with family.\n\nAs we spend hours trying to understand cash flows, P&amp;L\'s, tax, allowances, legalities, insurance cover, clickfunnels, facebook ads, the meaning of S.E.O, we discover that most of our time is doing jobs we hate or don\'t really understand.\n\nOur confidence reduces along with our hourly rate and we wonder why on earth we decided to become self employed!?!?\n\nGerber suggests you experienced an entrepreneurial seizure!\n\n&nbsp;\n<h2>The end goal comes first....</h2>\nThe primary aim we should have started with is the end goal &amp; the good news is you can try this right<img class=\"size-medium wp-image-30589 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/armand-khoury-Ba6IlmAzl-k-unsplash-212x300.jpg\" alt=\"\" width=\"212\" height=\"300\" /> now, its not too late!\n\nSo go back to the beginning of this page, answer those questions &amp; start to look at how well your business is designed to take you in that direction.\n\nIf you don\'t have a measure of where you are now, to compare to where you are trying to get to how can we plan the journey?\n\n&nbsp;\n\nGo on.....start writing!\n\n&nbsp;\n<h2 class=\"p3\"><b>Your Strategic Objective</b></h2>\n&nbsp;\n<p class=\"p1\">Once you better understand your primary aim, your end goal, this feeds into what you need your business to do for you. The clearer that picture the easier it is to plan!<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Create a clear contract of ‘employment’ for yourself that makes it clear:</p>\n\n<ul class=\"ul1\">\n 	<li class=\"li1\">What your responsibilities are<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li1\">What the rewards are<span class=\"Apple-converted-space\"> </span></li>\n</ul>\n<p class=\"p1\">By creating a statement about your vision, purpose, business in this way you are developing your strategic objective.</p>\n&nbsp;\n<h2>Add this book to your xmas list for way more detail on planning your future!!</h2>\n&nbsp;\n<h2><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Would you like help developing your primary aim by becoming a Biomechanics Coach in 2022?</a></h2>\nHave you been following us for AGES feeling unable to afford our unique training courses?\n\nDid you know we support ALL of our Biomechanics Coach learners to charge more and get a return on their investment with us?\n\nWhy not <a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">GET IN TOUCH HERE</a>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-30437 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/11/IMG_1395-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />','End goal first....','','draft','closed','closed','','end-goal-first','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=30506',0,'post','',0),(30528,3,'2021-12-09 21:23:20','2021-12-09 21:23:20','<p class=\"p1\">Brian Tracy is for me, the guru of strategies to manage time. He gives away many of them on his website, his app &amp; in e-books or you can invest in his CDs or books.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">My fizzy brain &amp; flighty attention span make it a challenge to remain focused each day while running a successful education company. <span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Without Tracy\'s advice I’m not sure I could have achieved, nor enjoyed, such productivity.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">My investments into his evidence based models for managing time, my work &amp; goal planning have allowed me to create content that has given me the life I dreamed of, a life that serves me.</p>\nHow would that feel for you?\n\nMaybe you are already there? If so well done, but this blog may not be for you, unless however you still struggle to manage your time or if you just feel like you just never have enough!\n<p class=\"p1\">Let me share a snippet from Brian Tracy with you &amp; how such simple tools, when implemented, literally change the game!</p>\n&nbsp;\n<h1 class=\"p1\">Create a simple system, then stick to it.<span class=\"Apple-converted-space\"> </span></h1>\n<h2>5 Tools &amp; Techniques</h2>\n<blockquote><b><img class=\" wp-image-30596 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-20.23.27-300x229.png\" alt=\"\" width=\"259\" height=\"198\" /><em>1. Use A Time Planner And Create A Master List </em></b>\n\n<em><b>2. Work From A List</b></em>\n\n<em><b>3. Organize By Priority</b></em>\n\n<em><b>4. Time Management Tools And Systems</b></em>\n\n<em><b>5. Organize Your Time</b></em></blockquote>\n&nbsp;\n<ol class=\"ol1\">\n 	<li class=\"li1\">First of all I spent 2 weeks writing down minute by minute literally every single thing I did. Logging which area of my business the task was for. This allowed me to measure &amp; analyse how much time I spent doing what. This extremely enlightening start point proved a few things straight away. How much time I wasted. How much time I REALLY spent in certain roles. Where I was lacking attention.<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li1\">This then allowed me to plan a list of jobs into order of attention, time.</li>\n 	<li class=\"li1\">Putting that list then into order of priority was possible.</li>\n 	<li class=\"li1\">Next I could gather &amp; implement tools &amp; strategies required for both productivity &amp; areas of weakness.<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li1\">This also allowed me to pay attention to &amp; develop a schedule of managed time.<span class=\"Apple-converted-space\"> </span></li>\n</ol>\n<p class=\"p1\">Next I was also able to refine my time management even further. Since I’d measured it I could continue to monitor it &amp; repeat the measure - which I still do periodically.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2>Adding more tools..</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30605 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/carl-heyerdahl-KE0nC8-58MQ-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\nOnce you have the 5 Tools &amp; Techniques in place for monitoring, allocating and measuring you can then add further tools and more detail into your time management.\n\n&nbsp;\n\n<strong>Psychology of Time Management</strong>\n\nBetter understanding your psychology towards time management can help or hinder it. So developing your ability to self reflect and analyse your thought processes is an important practice.\n\nGrab a notebook and regularly write date, what you are thinking including questions but not necessarily feeling the need to answer every question.\n\n&nbsp;\n<p class=\"p1\"><strong>Core Values </strong></p>\n<p class=\"p1\">What is important to you, your business and why? A great book called Your One Word, helps you with this in great detail along worth the reasons why you should. Even after reading the book I was left with 2 words that I endeavour to weave into literally everything I do within my business. It really helps me when it comes to big decisions.</p>\n\n<h1><img class=\"size-medium wp-image-30603 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-20.43.57-198x300.png\" alt=\"\" width=\"198\" height=\"300\" />Biomechanics Education =  INTEGRITY &amp; EMPOWERMENT</h1>\n&nbsp;\n\n<strong>Keep the vision &amp; gain even more clarity </strong>\n\n&nbsp;\n\nHaving that primary aim (see last weeks blog End Goal First) is a vital start point but over time we should add more details &amp; clarity to the vision to allow us to plan, in detail. Ist often the details that can get lost or create such stress for us that seems to be unimportant. However its that attention to detail that makes you and your business stand out.\n\n&nbsp;\n\n<strong>Use \'failure\' as a lesson </strong>\n\n&nbsp;\n\nAll successful business gurus will tell you they failed numerous times before they made it big. Richard Branson is very vocal about embracing failure. While you may think that you would not compare yourself to Branson, let me stop you right there....learn from those who know! They\'re just like you and me, they are human too!\n\n&nbsp;\n<p class=\"p1\"><strong>ALWAYS WRITE PLANS DOWN!</strong></p>\n&nbsp;\n\nThis is SO IMPORTANT! If you leave plans in your head they clutter your thoughts and are much harder (if not impossible) to manage, monitor and control. Your can change them, tweak them, show others, hide them, rewrite them, rearrange them, add to them, look at them and see them differently to how you might see them just in your head.\n\n&nbsp;\n<p class=\"p1\"><strong>Lists OMG I LOVE LISTS!</strong></p>\n&nbsp;\n<p class=\"p1\">Plans are one thing but lists and the ability to tick off jobs well that\'s pure joy! (See point 2 above in 5 tools). Lists allow you to set clear priorities, this helps keep you on track &amp; literally tick off completion of tasks - how satisfying!!</p>\n&nbsp;\n<p class=\"p1\"><strong>Delegation to others </strong></p>\n&nbsp;\n\nThis one is tough when you\'re not earning much yourself BUT WAIT......if you take 4hrs to mow your lawn, but some kid on the street will mow it for £10-20....how much could you earn in those 4hrs you just got back? More than £20? then its worth delegating that job...right!?!?\n\nor\n\nYou hate numbers and always dread going through receipts and accounts, so much so you keep putting that job off to the point where it backs up and you get super stressed and you eventually spend hours and hours trying to catch up.....surely it is much easier to take on a book keeper!!\n\n&nbsp;\n<p class=\"p1\"><strong>Overcome Procrastination </strong></p>\n&nbsp;\n\nThis is really really important when you\'re self employed because you don\'t have a boss checking you got all those little crappy jobs done too. (See Eat The fFog below)\n\n&nbsp;\n<p class=\"p1\"><strong>Digital de-clutter </strong></p>\n&nbsp;\n\n<img class=\"size-medium wp-image-30612 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/sabri-tuzcu-r1EwRkllP1I-unsplash-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" />\n\nLee Havern, CEO of Platinum Training Institute Belfast, delivered a fabulous workshop at one of our member workshop during lockdown, about how to declutter your digital noise! Control interruptions by switching off alerts, batching tasks into tie slots - like when to go on social media &amp; managing your phone similarly.\n\n&nbsp;\n\n<strong>Effective Meetings</strong>\n\n&nbsp;\n<p class=\"p1\">One of my favourite things is to have meetings while out walking instead of inside an office, sitting at desks whenever possible. I try to arrange calls while I am out walking with my headset on too if its feasible. They are often much shorter but far more productive!</p>\n&nbsp;\n<p class=\"p1\"><strong>Organise Your Space </strong></p>\n&nbsp;\n\nHaving a nice clear working space make a huge difference, like the idea that making your ed each morning set us up for a more proactive / productive day.\n\n&nbsp;\n<h1>Finally one of my favourites....</h1>\n<h2></h2>\n<h1 class=\"p1\">Eat that frog!</h1>\n&nbsp;\n\n<img class=\"size-medium wp-image-30610 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/stephanie-leblanc-SVwOposMxHY-unsplash-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\n\nTracy is famous for his analogy of eating frogs &amp; he also proved the efficacy of this concept with companies using the strategy &amp; increasing staff productivity by significant margins. Here I share another of my own experiences...\n\n&nbsp;\n<p class=\"p1\"><b>Having eaten 4 frogs in 2 days I was feeling pretty pleased with myself…</b>&#x1f438;&#x1f438;&#x1f438;&#x1f438;</p>\n<p class=\"p1\"><b>Eating frogs can be a game changer if you are prone to procrastination </b>&#x1f914;</p>\n\n<ul class=\"ul1\">\n 	<li class=\"li3\">&#x1f91c;&#x1f3fc;Do you write lists?<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">&#x1f91c;&#x1f3fc;Do you struggle getting through them?</li>\n 	<li class=\"li3\">&#x1f91c;&#x1f3fc;Do you find yourself picking the ‘nicer’ jobs all the time?</li>\n 	<li class=\"li3\">&#x1f91c;&#x1f3fc;Do you see that ‘big gnarly’ job &amp; keep leaving it?</li>\n 	<li class=\"li3\">&#x1f91c;&#x1f3fc;Do you re-write your list each day but continue to leave that big gnarly job untouched?</li>\n 	<li class=\"li3\">&#x1f91c;&#x1f3fc;Do you convince yourself that you get lots done even though that big gnarly job still hadn’t been started?<span class=\"Apple-converted-space\"> </span></li>\n</ul>\n<p class=\"p3\">&#x1f648;If you said yes to these questions then you &amp; I are prone to procrastinating. However many years ago Brian Tracy taught me an amazing lesson about eating frogs.&#x1f92a;</p>\n<p class=\"p3\">&#x1f60a;That big gnarly job that you just keep putting off, the one that is important, needs doing &amp; yet you can’t bring yourself to even start. It’s like thinking about eating a frog!&#x1f438;</p>\n<p class=\"p3\">Arrrrgghhhh&#x1f61d;</p>\n<p class=\"p3\">&#x270d;&#x1f3fc;Yet if you actually get up &amp; start it before you do anything else each morning…..</p>\n<p class=\"p3\">&#x203c;&#xfe0f;If you eat that frog &amp; get that gnarly job done…..</p>\n<p class=\"p3\">….you might actually realise it’s not so bad or you discover that you feel so much better that it got done!</p>\n<p class=\"p3\">&#x1f438;&#x1f438;&#x1f438;&#x1f438;I’ve had 4 frogs waiting to be eaten<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Then this week I’ve eaten all of them in 2 days!&#x1f91c;&#x1f3fc;&#x1f91b;&#x1f3fc;</p>\n<p class=\"p3\">And guess what….</p>\n<p class=\"p3\">I feel fantastic!!! &#x1f929;</p>\n<p class=\"p3\">Go on...</p>\n<p class=\"p3\">...get up tomorrow</p>\n<p class=\"p3\">&amp;</p>\n<p class=\"p3\">Eat that frog &#x1f438;!!!</p>\n&nbsp;\n<h1>How are you enjoying this advent series?</h1>\n&nbsp;\n<h2><em>Why not email me &amp; let me know if any of these posts are helping? </em></h2>\n<h2><em>Email me your experience if they have helped? </em></h2>\n<h2><em>What more we can do, create, write about to help you and your business?</em></h2>\n<h2><em>info@biomechanicseducation.com</em></h2>\n<h2></h2>\n<p class=\"p3\">Reference links</p>\n<p class=\"p3\"><a href=\"https://www.briantracy.com/blog/time-management/time-management-tools-and-techniques-time-planner-master-list/\" target=\"_blank\" rel=\"noopener\">Simple system  - 5 time management tools </a></p>\n<a href=\"https://www.amazon.co.uk/Your-One-Word-Powerful-Creating/dp/014310909X/ref=asc_df_014310909X/?tag=googshopuk-21&amp;linkCode=df0&amp;hvadid=310816411121&amp;hvpos=&amp;hvnetw=g&amp;hvrand=5546951103569016778&amp;hvpone=&amp;hvptwo=&amp;hvqmt=&amp;hvdev=c&amp;hvdvcmdl=&amp;hvlocint=&amp;hvlocphy=9046404&amp;hvtargid=pla-404289615270&amp;psc=1&amp;th=1&amp;psc=1\" target=\"_blank\" rel=\"noopener\">Your One Word </a>','Want to learn how to manage time...?','','draft','closed','closed','','want-to-learn-how-to-manage-time','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=30528',0,'post','',0),(30531,3,'2021-12-11 19:24:04','2021-12-11 19:24:04','<p class=\"p3\">Do you wish you could increase your hourly rate?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Do you wish you had the confidence to invite your clients to subscribe to a membership? <span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Would you like to learn how to reduce your anxiety about asking for money? More money?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Maybe you thought investing in learning about business would be expensive?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Would you like learn a few tips for FREE? And how to study business continuously for free?<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Attention</b> !!</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30634 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/riccardo-annandale-7e2pe9wjL9M-unsplash-300x240.jpg\" alt=\"\" width=\"300\" height=\"240\" />\n<p class=\"p3\">Ok so now I have your attention please understand this is simple but not easy</p>\n<p class=\"p3\">It’s not easy because until YOU value you &amp; what you’re offering then your clients &amp; potential clients won’t either. So it feels really really difficult, unworthy &amp; maybe almost impossible<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">But you see others doing it!! <span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">So let me share with how I do it &amp; how I’ve taught others to do it.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>I was just like you!</b></h2>\n&nbsp;\n<p class=\"p3\">Please understand I used to be just like you!<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">I would do free stuff to try to gain clients.</p>\n<p class=\"p3\">I would do offers &amp; be cheaper but I found myself not only getting fewer clients but also very low adherence to the programmes I gave them. The results weren’t possible because clients wanted ME to fix THEM &amp; for VERY little money!</p>\n<p class=\"p3\">In fact at one point I lost almost everything!<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Wait!</b></h2>\n&nbsp;\n<p class=\"p3\">Please understand this was the best thing to happen to me!<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Yes really it was.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">I didn’t know it at the time but it taught me a huge lesson that enabled me to not only charge more but gain success with my clients!</p>\n<p class=\"p3\">Every - single - time!<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>How?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">First of all I had no money so I was forced to search for as much free advice as I could get. So I followed all the top successful business people I could find.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Second I watched &amp; others grabbed my attention with their marketing.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Some I loved &amp; copied<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Some I saw exactly what I did NOT want to do<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Adding value<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30632 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/christopher-bill-rrTRZdCu7No-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<p class=\"p3\">Something that struck me from very early on, I heard over and over again. It was something that all the highly successful business gurus ALL kept saying....</p>\n<p class=\"p3\">‘…ensure you ADD VALUE…’</p>\n<p class=\"p3\">So I watched what others offered, I also considered why my clients were not adhering to my iMoveFreely programme.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">While I was studying all these business gurus online, I also became very aware of the way companies made me feel when I was buying…</p>\n\n<ul class=\"ul1\">\n 	<li class=\"li3\">Food<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Toiletries<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Clothes<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Gifts <span class=\"Apple-converted-space\"> </span></li>\n</ul>\n<p class=\"p3\">I realised that I too would be drawn into spending more money when I felt there was additional value.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The value could have been a gift, an additional item or often it was simply the experience I had or the way the company made me feel.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Always learning<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30635 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/neonbrand-1-aA2Fadydc-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<p class=\"p3\">Recognising that there are business lessons around you literally EVERYWHERE creates constant opportunities to study your craft as a business owner, entrepreneur, self employed professional.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Know your audience!<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">Knowing your customer should help you with this &amp; once you get inside the head of your audience (like I am doing in this blog) it can make a dramatic difference to the ay your marketing is received.</p>\n<p class=\"p3\">So write down all the things that your perfect client would appreciate, like, value &amp; want.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Also think about what they might need additionally to adhere &amp; succeed</p>\n&nbsp;\n<h2 class=\"p3\"><b>Creating your added value</b></h2>\n&nbsp;\n<p class=\"p3\">Now once you can describe your customer to a tee you can start to add the kind of value that would hook them in.</p>\nYou are either a JANE or a DAZ in my 2 demographic audience - you may well be a combination of both but you will definitely have been hooked by something i wrote that resonated with you &amp; made you feel like I was talking to you personally....right? How many times have you said yes in your head so far?\n\nNo Derren Brown is not my brother......anyhoo.....\n<p class=\"p3\">Let me offer you insight into some of my list of value adds for my clients, not exhaustive, not compulsory…simply ideas sometimes tweaked for some clients.<span class=\"Apple-converted-space\"> Remember NORMALLY they think they are buying \'sessions\', well my clients also get all of this when they sign up.....</span></p>\n<p class=\"p3\">Monthly subscribers =</p>\n\n<ul class=\"ul1\">\n 	<li class=\"li3\">Online Safety-net health check<span class=\"Apple-converted-space\"> for red flag clearance </span></li>\n 	<li class=\"li3\">A full health consultation 1.5hr</li>\n 	<li class=\"li3\">A full biomechanical assessment x 4pm<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Access to a multidisciplinary team including (not limited to) Chartered Physiotherapist, Osteopath, Podiatrist.<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Behaviour change guidance<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Movement guidance<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Exercise programme written out<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Access to personal Exercise Videos</li>\n 	<li class=\"li3\">Contact daily for the first 2/4 weeks as required<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">An iMoveFreely top</li>\n 	<li class=\"li3\">An iMoveFreely bag<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">A foam roller<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">A massage ball<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">An anatomy therapy colouring book<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">A resistance band<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">A water bottle<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Laminated weekly schedule</li>\n 	<li class=\"li3\">IMoveFreely fridge magnet<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Pen with phone stylus<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Access to live online iMoveFreely classes<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Access to recorded online iMoveFreely classes<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">1 month free for any referral<span class=\"Apple-converted-space\"> who subscribes for 3 months or more</span></li>\n 	<li class=\"li3\">1 week free for a video/written testimonial<span class=\"Apple-converted-space\"> </span></li>\n</ul>\n<p class=\"p3\">So now consider what you offer &amp; maybe see how many of these bullet points you already offer but don’t actually ‘list’ as a benefit for your client or potential clients to see</p>\n<p class=\"p3\">I’m quite confident that you already offer at least a few of these but don’t actually list them because you might assume the client knows that you write programmes or will teach them exercises.</p>\n<p class=\"p3\">However listing them like this helps the client PERCEIVE THE TOTAL VALUE. Otherwise they perceive what you do as just one hour of your time. It’s never just one hour though is it?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Can you see what I’ve also added in this goodie bag for client adherence?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Equipment &amp; tools that are reminders i ask them to place in certain positions around their home to remind them to practise their iMoveFreely guidance.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The daily contact could be an automated text or message, that acts as both a reminder of what to do &amp; also an extra feeling of being looked after &amp; valued by you.</p>\n&nbsp;\n<h2 class=\"p3\"><b>Client Cull<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30638 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/afif-kusuma-mv38TB_Ljj8-unsplash-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\n<p class=\"p3\">Rest assured there will be clients who leave when you transition to subscription &amp; increase your prices.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">However they’re the ones who don’t see the value so let them go to make room for the ones who do!<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Focus Group<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">Why not try gathering a focus group of present clients &amp; their friends. Offer some incentive for coming, which could simply be tea &amp; biscuits or maybe a sample class/session/demo/workshop</p>\n<p class=\"p3\">Then be sure to have prepared your questions in advance about pricing, value adds &amp; other ideas.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Let them talk freely, openly discuss the questions &amp; allow present clients to share the things they like about working with you.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">You might do this 2 or 3 times even, or maybe once each year to check in &amp; do your market research.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Perceived Value<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">Now perceived value often isn’t about the money/numbers even though every client will think it is.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">You must be confident that you can deliver results with what you can offer.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It might be that you begin by doubling your fees, then do a 50% discount offer resulting in no change to your income nor what they pay BUT an immediate alteration in perceived value. This also allows for a feeling of getting special treatment when they are offered 50% on this premium subscription service, they will wanna know what they get for paying more ....wouldn\'t you !?</p>\n<p class=\"p3\">Then you can add a time scale to this &amp; maybe even go to 25% discount for loyal members to ‘look after’ them<span class=\"Apple-converted-space\"> BUT you increase the price BEFORE making the limited offer - this way they are still intrigued!</span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Do your research<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">Consider what you’re doing now<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">What you would like to be earning<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Then research &amp; strategise ways to increase value or even perceived value....</p>\n&nbsp;\n<h1>GOOD LUCK!</h1>\n&nbsp;\n\nOR\n\n&nbsp;\n\nEmail us info@biomechanicseducation.com to find out how we can help you to add some seriously great value to your business - Biomechanics Coaching !\n\n&nbsp;\n<h1><a href=\"https://retrain.cimspa.co.uk/\" target=\"_blank\" rel=\"noopener\">P.S Did you know you can REALLY add value to your business through @CIMSPA\'s Retrain to Retain project?</a></h1>','How to add value to your business & charge more','','draft','closed','closed','','how-to-add-value-to-your-business-charge-more','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=30531',0,'post','',0),(30588,0,'2021-12-09 08:14:28','2021-12-09 08:14:28','','Screenshot 2021-12-09 at 08.12.45','','inherit','open','closed','','screenshot-2021-12-09-at-08-12-45','','','2021-12-09 08:14:28','2021-12-09 08:14:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-08.12.45.png',0,'attachment','image/png',0),(30589,0,'2021-12-09 08:14:38','2021-12-09 08:14:38','','armand-khoury-Ba6IlmAzl-k-unsplash','','inherit','open','closed','','armand-khoury-ba6ilmazl-k-unsplash','','','2021-12-09 08:14:38','2021-12-09 08:14:38','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/armand-khoury-Ba6IlmAzl-k-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30590,0,'2021-12-09 08:14:47','2021-12-09 08:14:47','','Screenshot 2021-12-09 at 08.13.15','','inherit','open','closed','','screenshot-2021-12-09-at-08-13-15','','','2021-12-09 08:14:47','2021-12-09 08:14:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-08.13.15.png',0,'attachment','image/png',0),(30595,0,'2021-12-09 20:23:55','2021-12-09 20:23:55','','Screenshot 2021-12-09 at 20.23.19','','inherit','open','closed','','screenshot-2021-12-09-at-20-23-19','','','2021-12-09 20:23:55','2021-12-09 20:23:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-20.23.19.png',0,'attachment','image/png',0),(30596,0,'2021-12-09 20:24:26','2021-12-09 20:24:26','','Screenshot 2021-12-09 at 20.23.27','','inherit','open','closed','','screenshot-2021-12-09-at-20-23-27','','','2021-12-09 20:24:26','2021-12-09 20:24:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-20.23.27.png',0,'attachment','image/png',0),(30603,0,'2021-12-09 21:23:02','2021-12-09 21:23:02','','Screenshot 2021-12-09 at 20.43.57','','inherit','open','closed','','screenshot-2021-12-09-at-20-43-57','','','2021-12-09 21:23:02','2021-12-09 21:23:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-20.43.57.png',0,'attachment','image/png',0),(30605,0,'2021-12-09 21:25:50','2021-12-09 21:25:50','','carl-heyerdahl-KE0nC8-58MQ-unsplash','','inherit','open','closed','','carl-heyerdahl-ke0nc8-58mq-unsplash','','','2021-12-09 21:25:50','2021-12-09 21:25:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/carl-heyerdahl-KE0nC8-58MQ-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30606,0,'2021-12-09 21:26:00','2021-12-09 21:26:00','','luis-villasmil-mlVbMbxfWI4-unsplash','','inherit','open','closed','','luis-villasmil-mlvbmbxfwi4-unsplash','','','2021-12-09 21:26:00','2021-12-09 21:26:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/luis-villasmil-mlVbMbxfWI4-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30609,0,'2021-12-09 21:29:34','2021-12-09 21:29:34','','david-clode-E32fGlISSBk-unsplash','','inherit','open','closed','','david-clode-e32fglissbk-unsplash','','','2021-12-09 21:29:34','2021-12-09 21:29:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/david-clode-E32fGlISSBk-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30610,0,'2021-12-09 21:29:44','2021-12-09 21:29:44','','stephanie-leblanc-SVwOposMxHY-unsplash','','inherit','open','closed','','stephanie-leblanc-svwoposmxhy-unsplash','','','2021-12-09 21:29:44','2021-12-09 21:29:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/stephanie-leblanc-SVwOposMxHY-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30611,0,'2021-12-09 21:29:49','2021-12-09 21:29:49','','david-clode-2slBHG3HtdA-unsplash','','inherit','open','closed','','david-clode-2slbhg3htda-unsplash','','','2021-12-09 21:29:49','2021-12-09 21:29:49','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/david-clode-2slBHG3HtdA-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30612,0,'2021-12-09 21:29:58','2021-12-09 21:29:58','','sabri-tuzcu-r1EwRkllP1I-unsplash','','inherit','open','closed','','sabri-tuzcu-r1ewrkllp1i-unsplash','','','2021-12-09 21:29:58','2021-12-09 21:29:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/sabri-tuzcu-r1EwRkllP1I-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30613,0,'2021-12-09 21:30:05','2021-12-09 21:30:05','','rima-kruciene-Tq9Ln3gpiG4-unsplash','','inherit','open','closed','','rima-kruciene-tq9ln3gpig4-unsplash','','','2021-12-09 21:30:05','2021-12-09 21:30:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/rima-kruciene-Tq9Ln3gpiG4-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30632,0,'2021-12-11 19:16:46','2021-12-11 19:16:46','','christopher-bill-rrTRZdCu7No-unsplash','','inherit','open','closed','','christopher-bill-rrtrzdcu7no-unsplash','','','2021-12-11 19:16:46','2021-12-11 19:16:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/christopher-bill-rrTRZdCu7No-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30633,0,'2021-12-11 19:16:54','2021-12-11 19:16:54','','mathieu-stern-1zO4O3Z0UJA-unsplash','','inherit','open','closed','','mathieu-stern-1zo4o3z0uja-unsplash','','','2021-12-11 19:16:54','2021-12-11 19:16:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/mathieu-stern-1zO4O3Z0UJA-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30634,0,'2021-12-11 19:17:01','2021-12-11 19:17:01','','riccardo-annandale-7e2pe9wjL9M-unsplash','','inherit','open','closed','','riccardo-annandale-7e2pe9wjl9m-unsplash','','','2021-12-11 19:17:01','2021-12-11 19:17:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/riccardo-annandale-7e2pe9wjL9M-unsplash.jpg',0,'attachment','image/jpeg',0),(30635,0,'2021-12-11 19:19:26','2021-12-11 19:19:26','','neonbrand-1-aA2Fadydc-unsplash','','inherit','open','closed','','neonbrand-1-aa2fadydc-unsplash','','','2021-12-11 19:19:26','2021-12-11 19:19:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/neonbrand-1-aA2Fadydc-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30636,0,'2021-12-11 19:19:34','2021-12-11 19:19:34','','merakist-RxOrX1iW15A-unsplash','','inherit','open','closed','','merakist-rxorx1iw15a-unsplash','','','2021-12-11 19:19:34','2021-12-11 19:19:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/merakist-RxOrX1iW15A-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30637,0,'2021-12-11 19:19:41','2021-12-11 19:19:41','','javier-allegue-barros-i5Kx0P8A0d4-unsplash','','inherit','open','closed','','javier-allegue-barros-i5kx0p8a0d4-unsplash','','','2021-12-11 19:19:41','2021-12-11 19:19:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/javier-allegue-barros-i5Kx0P8A0d4-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30638,0,'2021-12-11 19:22:31','2021-12-11 19:22:31','','afif-kusuma-mv38TB_Ljj8-unsplash','','inherit','open','closed','','afif-kusuma-mv38tb_ljj8-unsplash','','','2021-12-11 19:22:31','2021-12-11 19:22:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/afif-kusuma-mv38TB_Ljj8-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30642,3,'2021-12-13 11:14:38','2021-12-13 11:14:38','&nbsp;\n<h2 class=\"p3\">Remember my post about The Windmill V’s The Triangle?</h2>\n<p class=\"p3\">My goal was to clarify how naming moves from a specific context doesn’t mean that the moves cannot be performed differently for a different set of circumstances or a specific goal, in other words if it can be justified!</p>\n<p class=\"p3\">The Kettlebell swing is another example of a move, like the Windmill &amp; the Triangle, that has roots. It is also a move that can be performed in such a way that the lifter loses much of the benefit/s they are aiming for, or in a way that they may increase their risk of an injury due to where the loads are placed. in respect of their tissue tolerance to that load.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Before we get into this I would just like to make the point that like any move done ‘badly’ (I am using this term very loosely to make this point by the way) - when done just once, twice or even for a few weeks, maybe even months - things wont just break.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It takes time to cause damage because our bodies are FANTASTIC MASTERS of compensations!</p>\n<p class=\"p3\">They will adapt &amp; alter in micro moves/positions to protect while performing the moves we perform….even bad ones!<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Consider how you move day to day…’perfect technique’ 100%of the time?</p>\n<p class=\"p3\">So swinging a KB ‘badly’ wont break you unless you are either already susceptible (has previous compensation already happening) OR you have been doing it without appropriate preparation of the load<span class=\"Apple-converted-space\">  </span>being applied to the tissues involved.</p>\n&nbsp;\n<h1 class=\"p3\"><b>The Original KB Swing</b></h1>\n&nbsp;\n\nhttps://youtu.be/Z8KrxCh3Gzo\n\n&nbsp;\n<p class=\"p3\">The ‘original modern’ presentation of the KB Swing might be argued as being from Pavel Tsatsouline. However revisit my Turkish Get Up post for information around a researcher called Felkar for what she learned about the history of the Kettlebell itself &amp; probably the true roots of the Swing.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Performed with a hip hinge, the Swing is often deemed to be done ‘wrong’ or at least performed ‘badly’, by the lifter performing more of a squat. Now there is nothing wrong with squatting so be careful how you present this argument particularly without obtaining the full case history of the lifter along with their aims &amp; goals. <span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The proposed aim of the KB Swing is the action should be more of a hip hinge than a squat, the bell coming to its apex at around chest to torso height, with the elbows relatively soft &amp; relaxed to ‘allow the bell to swing’ &amp; congruency between the swing &amp; hip hinge that includes (&amp; allows for) a snap up from the hip, knee extension. A cue like you are shooting a bow and arrow might be used to coach the snap up.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">To initiate the first swing it is suggested that the lifter</p>\n<p class=\"p3\">steps back from the bell &amp; hinges with a flat in back to reach out to the bell so as to initiate momentum into the lift as it is lifted from the floor. This then allows for the ’Swing’ to continue from the hip hinge snapping through creating the force that generates the load through to move the bell.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Alternatives<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\"><img class=\"size-medium wp-image-30651 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/sergio-pedemonte-LqtHvyd80Mo-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />Without understanding this concept new lifters may perform more of a squat while ‘lifting’ the bell (since there is no momentum from the hips). This often results in a much lighter load due to shoulder flexors<span class=\"Apple-converted-space\">  </span>having less strength than the big ol’ hip extensors. The movement will usually have less speed or snap as the new lifter may not realise this is the point of the swing action.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>So What?</b></h2>\n&nbsp;\n<p class=\"p3\">Well why not do it with a squat?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Ok well we should always, I repeat ALWAYS, add context. There is absolutely no reason why anyone should not do it with a squat style of technique instead. Unless the reason they are doing the movement doesn’t match the performance of it.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Considering the load difference between (in this example) the ‘hinge’ swing &amp; the squat swing, both load the back extensors. If both are performed with a stiff/neutral spine, the hinge swing loads them at a higher speed than the squat version.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">However the squat version has more knee bend, working the knee extensors more.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It certainly works the shoulder flexors more, due to them actually lifting the bell rather than momentum lifting it.</p>\n<p class=\"p3\">The hinge swing loads the knee flexors more than the squat due to a more extended knee throughout the movement. Also there is a greater hip flexion angle adding more load into the hip extensors.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It also puts less load on the shoulders due to the swing ‘lifting’ the bell through momentum as oppose to the shoulder flexors.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Each style of performance will likely dictate how heavy the bell can be. For example the hip extensors being the prime movers in the hinge swing are a much bigger stronger muscle group than the shoulder flexors involved in the actual lifting of the bell in the squat version. This would mean most lifters are more likely to be able to move more weight in the hinge swing than the squat version.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>The above in application….?</b></h2>\n<p class=\"p3\"><img class=\"size-medium wp-image-30653 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/ivan-pergasi-7IB2ifwA21Y-unsplash-201x300.jpg\" alt=\"\" width=\"201\" height=\"300\" />The point of the above is to offer insight into how we can analyse movement, load, force etc &amp; could argue for or against any version we choose to perform a movement or that we give to our client.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">BUT MORE IMPORTANTLY….</p>\n<p class=\"p3\">…you know why you are doing it that way no matter what the keyboard warriors say!!!</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h1>Do you enjoy these movement analysis posts?</h1>\n<h3>Would you like to experience them live in a classroom?</h3>\n<h3>Maybe you would like to join in?</h3>\n<h3>or</h3>\n<h3>Maybe you would like to have fun with us in our movement analysis game?</h3>\n<h3>Why not get in touch to find out how, when &amp; where you can</h3>\ninfo@biomechanicseducation.com\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">or BOOK HERE</a></h1>','The Kettlebell Swing ','','draft','closed','closed','','the-kettlebell-swing','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=30642',0,'post','',0),(30650,0,'2021-12-11 23:10:23','2021-12-11 23:10:23','','taco-fleur-qxoOajPS55U-unsplash','','inherit','open','closed','','taco-fleur-qxooajps55u-unsplash','','','2021-12-11 23:10:23','2021-12-11 23:10:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/taco-fleur-qxoOajPS55U-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30651,0,'2021-12-11 23:10:29','2021-12-11 23:10:29','','sergio-pedemonte-LqtHvyd80Mo-unsplash','','inherit','open','closed','','sergio-pedemonte-lqthvyd80mo-unsplash','','','2021-12-11 23:10:29','2021-12-11 23:10:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/sergio-pedemonte-LqtHvyd80Mo-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30653,0,'2021-12-11 23:15:15','2021-12-11 23:15:15','','ivan-pergasi-7IB2ifwA21Y-unsplash','','inherit','open','closed','','ivan-pergasi-7ib2ifwa21y-unsplash','','','2021-12-11 23:15:15','2021-12-11 23:15:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/ivan-pergasi-7IB2ifwA21Y-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30657,3,'2021-12-13 11:50:26','2021-12-13 11:50:26','<p class=\"p3\">When I lost all of my life savings &amp; everything I had ever worked for I was forced to live on less than £9k annual income, living alone with a mortgage &amp; with no job I decided I had little to lose!</p>\n<p class=\"p3\">So bravely (it felt), passionately &amp; with a need to create an income I chose to set up Biomechanics Education Ltd instead of working for someone else. This was done without any investment, loans or overdrafts.....I knew it HAD to work.</p>\n<p class=\"p3\">Committed to 12-16hr days, driven by a feeling of both purpose, excitement &amp; at least initially some degree of desperation I began reading, researching &amp; soaking up every single piece of business guidance I could get hold of that was free....it was SOOO important to me to find a way to deliver this wonderful education programme I believed so strongly in.</p>\n<p class=\"p3\">Watching hours &amp; hours of…</p>\n\n<ul class=\"ul1\">\n 	<li class=\"li3\">Brian Tracy<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Michael E Gerber</li>\n 	<li class=\"li3\">Gary Vee</li>\n 	<li class=\"li3\">Tony Robbins<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Paul Mort<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Chris Cardell<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Grant Cardone</li>\n</ul>\n<p class=\"p3\">…to name a few, I began to write down goals, ideas, plans, systems, thoughts, dreams, literally everything I was thinking. I didn\'t spend anything on any of these guys for around 18 months. They literally gave me free advice &amp; I immediately applied it &amp; it worked!</p>\n\n<h2 class=\"p3\">I took action over &amp; over &amp; over again!</h2>\n<p class=\"p3\">My income increased, my business grew, some of my ideas worked &amp; some didn’t, I messed up, I learned, I tried something else &amp; I was really starting to enjoying myself...... but I kept thinking how long will <i>this</i> take?<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p4\"><b>Yet I kept going….</b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30661 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/quino-al-P05VBPvNr3s-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<p class=\"p3\">...but it always felt like I was still trying to get <i>there</i>, never feeling that point of <i>success</i>. Wondering….</p>\n<p class=\"p3\"><em>What would will it feel like?<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>Will I actually ‘make it’?</em></p>\n<p class=\"p3\"><em>How did they do it?<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>How did these people look so happy, so successful?</em></p>\n<p class=\"p3\"><em>I was never going to be like them?<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>I was frustrated<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>I was knackered<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>I was losing faith in these fancy ideas I’d had about being a successful business woman, running a global empire<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>How ridiculous Rach, I scalded myself<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>Just be happy with your lot silly woman!<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\">Then in 2016 I found my 2014 list of goals from Brian Tracy’s goal planner, a resource I had finally paid for....</p>\n&nbsp;\n<h1 class=\"p4\"><b>\"<i>I was stunned!\"</i></b></h1>\n&nbsp;\n<p class=\"p3\">Tracy says that when a goal is in your head it’s just a dream, when you write it down it becomes a plan. He suggests the act of actually using the neurological connections from thoughts in your head, allowing them to travelling down your arm to the pen &amp; paper in your hand, something special happens.</p>\n<p class=\"p3\">I had tried it &amp; had I not, I would not on this day in 2016, of had the epiphany I had…</p>\n&nbsp;\n<h2 class=\"p4\"><b><i>\"I was already successful!<span class=\"Apple-converted-space\">\"</span></i></b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30662 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/guille-alvarez-IcI3FizU9Cw-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<p class=\"p3\">The goals I had in 2014, having written them down, proved it.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">How?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Because literally everything I had written down as a goal, I had achieved. <span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">In fact not only had I achieved them, I had smashed way beyond them!</p>\n&nbsp;\n<h2 class=\"p4\"><b>What did I learn?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">I realised I was living perfect days over &amp; over again every day, I was able to recognise my success, I was now appreciating every moment, every day, over &amp; over again. Mistakenly I had assumed I was \'not there yet\' because I was always driven to achieve something new, something different &amp; perceived that as failing or not yet being \'there\', not yet being successful. By NOT looking at my benchmark (my goals list) I hadn\'t realised my success!</p>\n<p class=\"p3\">By comparing myself to others I was being too hard on myself &amp; trying to achieve <em>their values</em> of success or their idea of a perfect day, even though <em>my values</em> were different.</p>\n<p class=\"p3\">Once I spent a moment to write things down, create plans, take action AND literally put clarity into what my perfect day would look like AND THEN READ IT REGULARLY, I was then able to see....my success, my perfect days.</p>\n<p class=\"p3\">Living in the moment, noticing right ‘now’</p>\n<p class=\"p3\">If you try this you might realise you were living perfect days already &amp;  that you have already succeeded in achieving what you had set out to do some years ago!</p>\n<p class=\"p3\">If we continue to regret the past or strive for a different future we may miss some of the most beautiful, cherish able &amp; perfect moments that are literally happening around us right now.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">By writing down goals I was able to physically imagine them, take them out of my concern, connect them with the real world &amp; then get back to living the moment....</p>\n<p class=\"p3\">...by writing them down I was able to recognise &amp; realise when they had been achieved.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The goals were super SMART too! Now each year I continue to write my goals down. Make them SMART &amp; then crack on with appreciating the experience of feeling my success in reaching those goals on a regular basis.</p>\n<p class=\"p3\">Some may not be achieved but then we can alter the plan, to better understand why not or do things another way.</p>\n&nbsp;\n<h2 class=\"p4\"><b>So what?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">As<b> </b>a trainer or coach we have a duty to help our clients create SMART goals but we are highly likely to benefit from creating our own.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">They do not need to be limited to our training programmes.</p>\n\n<h2 class=\"p3\"><img class=\"alignnone size-medium wp-image-30681\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52be-300x193.jpeg\" alt=\"\" width=\"300\" height=\"193\" /><img class=\"alignnone size-medium wp-image-30682\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52ea-300x200.jpeg\" alt=\"\" width=\"300\" height=\"200\" /><img class=\"alignnone size-medium wp-image-30683\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/DSC03820-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /><img class=\"alignnone size-medium wp-image-30684\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/IMG_7668-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" /><img class=\"alignnone size-medium wp-image-30685\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/image0-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" /> Would you like to feel successful with us?</h2>\ninfo@biomechnanicseducation.com','Embracing Failure','','draft','closed','closed','','embracing-failure','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=30657',0,'post','',0),(30660,0,'2021-12-11 23:33:58','2021-12-11 23:33:58','','brett-jordan-nd2fFCkXWTw-unsplash','','inherit','open','closed','','brett-jordan-nd2ffckxwtw-unsplash','','','2021-12-11 23:33:58','2021-12-11 23:33:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/brett-jordan-nd2fFCkXWTw-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30661,0,'2021-12-11 23:35:18','2021-12-11 23:35:18','','quino-al-P05VBPvNr3s-unsplash','','inherit','open','closed','','quino-al-p05vbpvnr3s-unsplash','','','2021-12-11 23:35:18','2021-12-11 23:35:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/quino-al-P05VBPvNr3s-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30662,0,'2021-12-11 23:37:03','2021-12-11 23:37:03','','guille-alvarez-IcI3FizU9Cw-unsplash','','inherit','open','closed','','guille-alvarez-ici3fizu9cw-unsplash','','','2021-12-11 23:37:03','2021-12-11 23:37:03','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/guille-alvarez-IcI3FizU9Cw-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30680,0,'2021-12-13 11:33:36','2021-12-13 11:33:36','','Screenshot 2021-12-13 at 11.32.09','','inherit','open','closed','','screenshot-2021-12-13-at-11-32-09','','','2021-12-13 11:33:36','2021-12-13 11:33:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-13-at-11.32.09.png',0,'attachment','image/png',0),(30681,0,'2021-12-13 11:34:29','2021-12-13 11:34:29','','fullsizeoutput_52be','','inherit','open','closed','','fullsizeoutput_52be','','','2021-12-13 11:34:29','2021-12-13 11:34:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52be-scaled-1.jpeg',0,'attachment','image/jpeg',0),(30682,0,'2021-12-13 11:34:38','2021-12-13 11:34:38','','fullsizeoutput_52ea','','inherit','open','closed','','fullsizeoutput_52ea','','','2021-12-13 11:34:38','2021-12-13 11:34:38','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52ea.jpeg',0,'attachment','image/jpeg',0),(30683,0,'2021-12-13 11:34:55','2021-12-13 11:34:55','','DSC03820','','inherit','open','closed','','dsc03820-2','','','2021-12-13 11:34:55','2021-12-13 11:34:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/DSC03820-scaled-1.jpg',0,'attachment','image/jpeg',0),(30684,0,'2021-12-13 11:35:08','2021-12-13 11:35:08','','IMG_7668','','inherit','open','closed','','img_7668','','','2021-12-13 11:35:08','2021-12-13 11:35:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/IMG_7668-scaled-1.jpg',0,'attachment','image/jpeg',0),(30685,0,'2021-12-13 11:35:16','2021-12-13 11:35:16','','image0','','inherit','open','closed','','image0-2','','','2021-12-13 11:35:16','2021-12-13 11:35:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/image0.jpeg',0,'attachment','image/jpeg',0),(30719,3,'2021-12-16 20:24:37','2021-12-16 20:24:37','<h2>The Deadlift: A Comprehensive Guide</h2>\r\n<span data-contrast=\"auto\">The deadlift is a fundamental strength exercise with significant real-life applications in bending and lifting. Often considered the original strength move, its simplicity and effectiveness have made it a staple in strength training.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Let\'s delve into its variations, benefits, and how coaches can select the best options for their clients.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><b><span data-contrast=\"auto\">The History of the Deadlift</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\r\n<span data-contrast=\"auto\">The deadlift, named for lifting \"dead\" weight from the floor, was popularized by German circus performer Hermann Goerner between 1910-1930. Known as the \"father of the deadlift,\" Goerner showcased remarkable feats of strength, cementing the deadlift\'s place in strength training.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><b><span data-contrast=\"auto\">The Original Deadlift</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\r\n<span data-contrast=\"auto\">The traditional deadlift involves lifting a weight from the floor, demanding significant leg and back strength. This move requires good range of motion (ROM) as the lifter must flex at the knees and hips, similar to a squat but with a greater forward lean.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b>\r\n<ul>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Strengthens posterior muscles</span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Enhances tissue tolerance to heavy loads</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Utilises the thoracolumbar fascia for increased torso strength, contributing an additional 30% strength to the torso (Gracovetsky, 1988)</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3>Variations of the Deadlift</h3>\r\n<b><span data-contrast=\"auto\">Romanian Deadlift (RDL)</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">The RDL starts at the top of the movement, with the bar lifted from a rack. The lifter lowers the bar to the mid/lower shin and then lifts it again, requiring less knee ROM.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Easier on the knees</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ideal for new lifters</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Allows for controlled ROM</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Focuses on hip extensors with reduced knee stress</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3>Stiff Leg Deadlift</h3>\r\n<span data-contrast=\"auto\">Starting similarly to an RDL, this variation involves lowering the bar while keeping the knees straight, emphasizing hip ROM and targeting the glutes and hamstrings.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Greater hip ROM</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Focuses on glute and hamstring strength</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Useful for those with tight sciatic nerves</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3>Sumo Deadlift</h3>\r\n<span data-contrast=\"auto\">With a wider foot position and a narrow hand grip, the sumo deadlift is often used in powerlifting. It requires less hip ROM, making it easier on the back.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Easier on the back</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Suitable for individuals with specific quad or hip requirements</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3>Single Leg RDL (Crane)</h3>\r\n<span data-contrast=\"auto\">This variation, performed on one leg, requires a lighter load and enhances balance and stability.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Improves stability and balance</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ideal for targeting asymmetrical strength</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Useful for neuromuscular feedback</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3>Why Include Deadlifts in Your Training?</h3>\r\n<span data-contrast=\"auto\">The deadlift and its variations are excellent for developing hip, knee, and spine extensor strength. Incorporating different versions can keep training interesting and beneficial for clients. It\'s crucial to choose the right variation based on specific goals and capabilities.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Key Takeaway</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">There\'s no wrong movement - only movements that a client may not yet have the capacity for. Using this guide can help you make more informed programming choices for incorporating this powerful strength exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">References</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">BarBend. (2021). The History of the Deadlift: How Did This Lift Become So Popular? Retrieved from BarBend</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Gracovetsky, S. (1988). The Spinal Engine. Vienna: Springer Vienna.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Norris, C. (1995). Spinal Stabilisation. Physiotherapy, 81(2), 61-64.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ross, J., &amp; Ross, J. (2021). Water, Fascia Health, and Concussions. Retrieved from Trainoutpain</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Willard, F., Vleeming, A., Schuenke, M., Danneels, L., &amp; Schleip, R. (2012). The thoracolumbar fascia: anatomy, function, and clinical considerations. Journal of Anatomy, 221(6), 507-536.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>','The Deadlift: A Comprehensive Guide','','publish','closed','closed','','the-deadlift','','','2025-01-20 16:01:56','2025-01-20 16:01:56','',0,'https://www.biomechanicseducation.com/?p=30719',0,'post','',0),(30721,0,'2021-12-16 19:33:32','2021-12-16 19:33:32','','alora-griffiths-E3wehabi_B4-unsplash','','inherit','open','closed','','alora-griffiths-e3wehabi_b4-unsplash','','','2024-09-19 15:05:57','2024-09-19 15:05:57','',30719,'https://biomechanicseducation.com/wp-content/uploads/2021/12/alora-griffiths-E3wehabi_B4-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30722,0,'2021-12-16 19:54:58','2021-12-16 19:54:58','','alora-griffiths-7-ruqVJbHAo-unsplash','','inherit','open','closed','','alora-griffiths-7-ruqvjbhao-unsplash','','','2021-12-16 19:54:58','2021-12-16 19:54:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/12/alora-griffiths-7-ruqVJbHAo-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(30977,0,'2022-01-11 12:50:35','2022-01-11 12:50:35','','WEBSITE PDF GTBM LINK','','inherit','open','closed','','website-pdf-gtbm-link','','','2022-01-11 12:50:35','2022-01-11 12:50:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/01/WEBSITE-PDF-GTBM-LINK-.pdf',0,'attachment','application/pdf',0),(30991,0,'2022-01-12 10:42:23','2022-01-12 10:42:23','','Screenshot 2022-01-12 at 10.42.13','','inherit','open','closed','','screenshot-2022-01-12-at-10-42-13','','','2022-01-12 10:42:23','2022-01-12 10:42:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/01/Screenshot-2022-01-12-at-10.42.13.png',0,'attachment','image/png',0),(30993,0,'2022-01-12 10:52:24','2022-01-12 10:52:24','','FFT_logo_blue','','inherit','open','closed','','fft_logo_blue','','','2022-01-12 10:52:24','2022-01-12 10:52:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/01/FFT_logo_blue.png',0,'attachment','image/png',0),(31063,3,'2022-01-18 14:19:59','2022-01-18 14:19:59','<p><span style=\"font-weight: 400;\">Over the last 24 months </span><span style=\"font-weight: 400;\">with lockdowns, the evolution/growth of technology &amp; the fact we have seen a huge increase in the demand for accessing information online t</span><span style=\"font-weight: 400;\">here are clearly pros &amp; cons to this method of information delivery. It has pretty </span><span style=\"font-weight: 400;\">obviously benefits over accessing information face to face BUT is this diluting the quality? and specifically in the delivery of the </span><b>education of practical skills like Personal Training</b><span style=\"font-weight: 400;\">?  </span> <span style=\"font-weight: 400;\">Now obviously times are changing and we need to keep up with modern life…..but is it at a cost?</span> <span style=\"font-weight: 400;\">In this particular Juicemail I want to ask YOU, the readers, to think about this; When it comes to face to face education vs online education, while learning practical skills specifically, what do YOU feel are the pros &amp; cons of each AND is online movement education diluting the quality in your opinion?</span></p>\n<p>&nbsp;</p>\n<h3><b>Online vs Face To Face Definitions</b></h3>\n<ol>\n<li><span style=\"font-weight: 400;\">Face to Face (F2F) in this blog we are referring to being physically in a room with a teacher.</span></li>\n<li><span style=\"font-weight: 400;\">Online training (OT) we refer to courses that are accessed purely online.</span></li>\n</ol>\n<p>        Here is a break down of what we see as the main differences in terms of pros &amp; cons</p>\n<h3><b>Online Learning Pros <img class=\"size-medium wp-image-31064 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/01/chris-montgomery-smgTvepind4-unsplash-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Usually cheaper</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Easier to access </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Convenient</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Set your own pace, taking breaks anytime </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Could be more easily accessible for those with certain learning requirements </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Offers visual (video and images) and written information</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">No peer pressure</span></li>\n<li>Reduced exposure to virus/illness</li>\n<li>A good way to \'dip your toe\' &amp; sample</li>\n</ul>\n<h3 style=\"text-align: left;\"><b>Online Learning Cons</b></h3>\n<ul>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">Less personal </span></li>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">No immediate feedback </span></li>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">Can\'t get immediate answers/help</span></li>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">Lack having physical experience</span></li>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">Lacks judgment of tutor to offer individualised training </span></li>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">Lack of diversity / professional discussion </span></li>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">Practical correction unavailable </span></li>\n</ul>\n<h3><b>Face To Face Learning Pros</b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Interactive and personal </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Sense of camaraderie</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Human connection </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Experiencial, more memorable meaning more chance of retaining information</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Change of scene can be good </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Different points of view </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Immediate feedback from the tutor</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Empathetic teaching </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Networking with peers </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Great for questions on physical techniques / practical application <img class=\"size-medium wp-image-31066 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/01/sam-balye-w1FwDvIreZU-unsplash-300x212.jpg\" alt=\"\" width=\"300\" height=\"212\" /></span></li>\n</ul>\n<h3><b>Face To Face Learning Cons</b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Cost is usually higher</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Travel and accommodation costs </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Time away for paid work / family</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Possibility of feeling judged </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Possible peer pressure</span></li>\n<li>Increased exposure to virus/illness</li>\n</ul>\n<p>&nbsp;</p>\n<h3><b>So How Do We Decide?</b></h3>\n<p><span style=\"font-weight: 400;\">Well, I think we each have a personal responsibility to ensure our own education is of a quality that enables us to provide/deliver an appropriate and insurable duty of care. One potential issue here is </span>  </p>\n<h1><i><span style=\"font-weight: 400;\">You Don’t Know What You Don’t Know!</span></i></h1>\n<h1> </h1>\n<h1>&amp;</h1>\n<p>&nbsp;</p>\n<h1><span style=\"font-weight: 400;\">Y<i>ou will get what you pay for</i></span></h1>\n<p>&nbsp;</p>\n<p><img class=\"size-medium wp-image-31071 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/01/windows-v94mlgvsza4-unsplash-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" /></p>\n<h3><b>What Does The Research Say?</b></h3>\n<p><span style=\"font-weight: 400;\">Well, there are a lot of studies (see references) on the F2F Vs OT debate but when you whittle it down there is a clear response that a blend of BOTH is shown to be most effective. </span> <span style=\"font-weight: 400;\">Paying for online education for all of the ‘pro’ reasons listed above makes sense, doesn\'t it.  So while</span><span style=\"font-weight: 400;\"> F2F education experiences are (certainly in my opinion) the best when initially learning practical skills like Personal Training or Sports Massage, once we have a good foundation of knowledge we can then apply our learning disciplines to the easier to access platforms.</span>  </p>\n<h1><em><span style=\"font-weight: 400;\">So let me now ask you a question….</span>  </em></h1>\n<h3> </h3>\n<h3><img class=\"alignnone size-medium wp-image-31068\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/01/gabin-vallet-J154nEkpzlQ-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></h3>\n<p>&nbsp;</p>\n<h2><b>What Would YOU Do?</b></h2>\n<p>  <span style=\"font-weight: 400;\">…….. if YOU needed to employ a coach, trainer, therapist, PT, doctor for yourself.....how would you feel about being seen by a professional who had gained their practical qualification/s online with no F2F training?</span> <span style=\"font-weight: 400;\">Of the above professions, I believe ONLY the Personal Training skill set can be accessed purely online.</span> <span style=\"font-weight: 400;\">Why is this?</span> <span style=\"font-weight: 400;\">Would you confess to being qualified purely online? If not why not?</span> <span style=\"font-weight: 400;\">Is there a problem with it?</span> <span style=\"font-weight: 400;\">We can get coached online, so why not educated?</span>   <img class=\"size-medium wp-image-31069 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/01/jonathan-borba-R0y_bEUjiOM-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />  </p>\n<h2><b>Education &amp; Learning in General - Bad &amp; Good</b></h2>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Having been involved in education and learning for 48yrs, both as a learner, then a teacher and also a teacher of teachers, I have</span><span style=\"font-weight: 400;\"> had some incredibly life-changing bad F2F experiences. So I completely understand how people can be put off when we also might hear stories about kids having bad experiences at school being bullied. </span>  <span style=\"font-weight: 400;\">However, I also believe my bad experiences gave me a huge passion for creating the best learner experiences I can for others once I had some really great learning experiences . Out Master Trainer team are taken through an apprenticeship that requires a particular standard of delivery with an inclusive focus that, I believe and the feedback suggests, we have gained a reputation for.</span>  <span style=\"font-weight: 400;\">The inclusive and diverse nature of fantastic F2F education experiences cannot be denied and is still shown to be </span><i><span style=\"font-weight: 400;\">one of</span></i><span style=\"font-weight: 400;\"> the most successful ways to gain knowledge and skills. </span><span style=\"font-weight: 400;\">The ‘experience’ of F2F for learning, I believe is still vital for becoming ‘qualified’ in a very practical skill set like those of you wishing to become an exercise professional or therapist!</span>  </p>\n<p>&nbsp;</p>\n<p><img class=\"size-medium wp-image-31070 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/01/victor-freitas-nlZTjUZX2qo-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></p>\n<h2> </h2>\n<h2><b>When Is Online Movement Education OK?</b></h2>\n<p><span style=\"font-weight: 400;\">Look I am a people person, I love forging relationships, being with people, looking in their eyes, feeling their emotions and basing the moment on that. Since online there is less chemistry. </span> <span style=\"font-weight: 400;\">BUT </span> <span style=\"font-weight: 400;\">I also accept that others are NOT like me.</span> <span style=\"font-weight: 400;\">In my opinion, when OT is an up skill or CPD as an additional resource or a taster it is a brilliant compliment to a F2F qualification. </span> <span style=\"font-weight: 400;\">Here at Biomechanics Education, we offer BOTH F2F and OT through our various platforms to get our message out there BUT I am super keen to hear your views, so</span><span style=\"font-weight: 400;\"> leave a comment below and tell me what your thoughts are on F2F Vs OT.</span> <span style=\"font-weight: 400;\">Also, I just want to add, that I LOVE the fact we are having this discussion because it means people are committed to learning and continued development. </span> <span style=\"font-weight: 400;\">Ultimately as professionals, we should always be taking our skills to the next level, and as humans, our minds LOVE progression. </span> <span style=\"font-weight: 400;\">So whether you\'re learning online or face to face I am delighted to know that you are committed to learning!</span></p>\n<h2> </h2>\n<h2>References:</h2>\n<ol>\n<li>Alsaaty, F., Carter, E., Abrahams, D. and Alshameri, F., 2016. Traditional Versus Online Learning in Institutions of Higher Education: Minority Business Students’ Perceptions. <i>Business and Management Research</i>, 5(2).</li>\n<li>Ananga, P. and Biney, I., 2021. COMPARING FACE-TO-FACE AND ONLINE TEACHING AND LEARNING IN HIGHER EDUCATION. <i>MIER Journal of Educational Studies Trends &amp; Practices</i>, pp.165-179.</li>\n<li>Elucidat. 2022. <i>Online learning vs face to face learning | Elucidat</i>. [online] Available at: &lt;https://www.elucidat.com/blog/online-learning-vs-face-to-face-learning/&gt; [Accessed 18 June 2019].</li>\n<li>Keis, O., Grab, C., Schneider, A. and Öchsner, W., 2017. Online or face-to-face instruction? A qualitative study on the electrocardiogram course at the University of Ulm to examine why students choose a particular format. <i>BMC Medical Education</i>, 17(1).</li>\n<li>Keramidas, C., 2012. Are Undergraduate Students Ready for Online Learning? A Comparison of Online and Face-to-Face Sections of a Course. <i>Rural Special Education Quarterly</i>, 31(4), pp.25-32.</li>\n<li>Khazan, O., 2022. <i>The Myth of ‘Learning Styles’</i>. [online] The Atlantic. Available at: &lt;https://www.theatlantic.com/science/archive/2018/04/the-myth-of-learning-styles/557687/&gt; [Accessed 18 June 2019].</li>\n<li>Szeto, E., 2014. A Comparison of Online/Face-to-face Students’ and Instructor\'s Experiences: Examining Blended Synchronous Learning Effects. <i>Procedia - Social and Behavioral Sciences</i>, 116, pp.4250-4254.</li>\n<li>Voxy. 2022. <i>Research review: Online versus face-to-face learning outcomes</i>. [online] Available at: &lt;https://voxy.com/blog/2017/12/research-review-online-versus-face-face-learning-outcomes/&gt; [Accessed 18 June 2019].</li>\n</ol>\n<hr /><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2> </h2>\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Would You Like A Blended Learning Exprience</a></h1>\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">To Be Able To Reduce Your Clients Risk Of Injury?</a></h1>\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">&amp;</a></h1>\n<h1>Help Them Get Even Better Results?</h1>\n<p><!-- /wp:heading -->\n\n<!-- wp:paragraph --></p>\n<p>Then CLICK HERE how it could help you become an even better personal trainer!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Online vs Face to Face','','draft','closed','closed','','online-vs-face-to-face','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=31063',0,'post','',0),(31064,0,'2022-01-18 13:08:40','2022-01-18 13:08:40','','chris-montgomery-smgTvepind4-unsplash','','inherit','open','closed','','chris-montgomery-smgtvepind4-unsplash','','','2024-07-24 09:19:09','2024-07-24 09:19:09','',39066,'https://biomechanicseducation.com/wp-content/uploads/2022/01/chris-montgomery-smgTvepind4-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(31065,0,'2022-01-18 13:09:20','2022-01-18 13:09:20','','neonbrand-1-aA2Fadydc-unsplash','','inherit','open','closed','','neonbrand-1-aa2fadydc-unsplash-2','','','2022-01-18 13:09:20','2022-01-18 13:09:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/01/neonbrand-1-aA2Fadydc-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(31066,0,'2022-01-18 13:10:07','2022-01-18 13:10:07','','sam-balye-w1FwDvIreZU-unsplash','','inherit','open','closed','','sam-balye-w1fwdvirezu-unsplash','','','2022-01-18 13:10:07','2022-01-18 13:10:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/01/sam-balye-w1FwDvIreZU-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(31067,0,'2022-01-18 13:10:45','2022-01-18 13:10:45','','Online Learning','','inherit','open','closed','','windows-v94mlgvsza4-unsplash-2','','','2024-09-12 11:12:38','2024-09-12 11:12:38','',39043,'https://biomechanicseducation.com/wp-content/uploads/2022/01/windows-v94mlgvsza4-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(31068,0,'2022-01-18 13:14:08','2022-01-18 13:14:08','','gabin-vallet-J154nEkpzlQ-unsplash','','inherit','open','closed','','gabin-vallet-j154nekpzlq-unsplash','','','2022-01-18 13:14:08','2022-01-18 13:14:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/01/gabin-vallet-J154nEkpzlQ-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(31069,0,'2022-01-18 13:14:54','2022-01-18 13:14:54','','jonathan-borba-R0y_bEUjiOM-unsplash','','inherit','open','closed','','jonathan-borba-r0y_beujiom-unsplash','','','2024-07-16 12:36:36','2024-07-16 12:36:36','',7,'https://biomechanicseducation.com/wp-content/uploads/2022/01/jonathan-borba-R0y_bEUjiOM-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(31070,0,'2022-01-18 13:15:40','2022-01-18 13:15:40','','victor-freitas-nlZTjUZX2qo-unsplash','','inherit','open','closed','','victor-freitas-nlztjuzx2qo-unsplash-2','','','2022-01-18 13:15:40','2022-01-18 13:15:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/01/victor-freitas-nlZTjUZX2qo-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(31071,0,'2022-01-18 13:26:11','2022-01-18 13:26:11','','windows-v94mlgvsza4-unsplash','','inherit','open','closed','','windows-v94mlgvsza4-unsplash-3','','','2022-01-18 13:26:11','2022-01-18 13:26:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/01/windows-v94mlgvsza4-unsplash-1-scaled-1.jpg',0,'attachment','image/jpeg',0),(31083,0,'2022-01-19 08:57:29','2022-01-19 08:57:29','','Screenshot 2022-01-19 at 08.56.42','','inherit','open','closed','','screenshot-2022-01-19-at-08-56-42','','','2022-01-19 08:57:29','2022-01-19 08:57:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/01/Screenshot-2022-01-19-at-08.56.42.png',0,'attachment','image/png',0),(31185,0,'2022-01-26 11:35:54','2022-01-26 11:35:54','','Screenshot 2022-01-26 at 11.34.54','','inherit','open','closed','','screenshot-2022-01-26-at-11-34-54','','','2022-01-26 11:35:54','2022-01-26 11:35:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screenshot-2022-01-26-at-11.34.54.png',0,'attachment','image/png',0),(31258,3,'2022-02-02 11:48:19','2022-02-02 11:48:19','<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Nerves have been described as the software of the body and to be able to understand this more thoroughly we have to understand about ‘nerve tension’ and ‘Adverse Neural Tension’. These concepts have been recognised for over 100 years in terms of treating patients clinically, but their full potential has never been understood until now​​ An analogy with the invention of the wheel is an interesting one. The discovery of nerve tension and it being used for the treatment of injuries is like the wheel being invented and placing it on its side, putting 4 legs around the underside and using it as a table. It makes a great table, but the idea to use it in the way we know it today was groundbreaking. The same applies to nerve tension and its application to athletic performance and fatigue relief.</span></div>\n<div></div>\n<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><img class=\" wp-image-31259 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/Screenshot-2022-02-02-at-11.32.03-300x145.png\" alt=\"\" width=\"350\" height=\"169\" /><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />The entire nervous system, is a single continuous tract, so it follows that if any part of this continuous tract is trapped or tethered (as with an injury for example) then it also follows that there will be some restriction of the mobility of other parts of the nerve system. So a problem with one part of the nerve can cause pain in another – this is the clinical application. However, we have discovered that this is not always represented by pain but also by a reduction of joint range of movement and altered joint biomechanics which can affect a whole host of problems that can cause restricted performance and may ultimately lead to injury. Moreover, with the increased muscle spasm and associated factors, local fatigue increases and so understanding these principles can lead to benefits not only in human performance but also fatigue relief.</span></div>\n<div></div>\n<div></div>\n<div></div>\n<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><img class=\" wp-image-31260 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/02/shutterstock_1798734148-300x193.jpg\" alt=\"\" width=\"325\" height=\"209\" />Research<span class=\"ac-designer-copy\">​ - </span>We know this happens from research performed at Liverpool Hope University College and studies there demonstrate astonishing results. One experiment showed that a muscle can increase its force output by 14% after a brief preliminary warm-up (just one 15 second workout using this concept). Another experiment showed that by following the same concept a 2 minute programme performed daily for 10 days increases muscle output by over 50%. By understanding the importance of the interaction of individual body systems with each other, we have established the world\'s largest database of its kind and have included the outcomes of the auditing of this information in our Diploma in Biomechanics Coaching&#x2122;.</span></div>\n<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" />On the course you learn how to test your ‘nerve tension’ and prescribe movement patterns to enhance the coordinated output of your body’s systems. In terms of fatigue relief, it has been demonstrated that after 15 seconds of the programme, muscle fatigue is reduced by up to 14% immediately and sustained use led to significant and prolonged increase in muscle output. These studies have been validated at the highest level. A paper was submitted at the 6th Asian Biomechanics Congress (one of the worlds most credited) and was enthusiastically received. In a practical sense the programmes have been rigorously tested by people such as Olympic athletes through to workers on a product line and hospital health trusts.\n</span></div>\n<div></div>\n<div></div>\n<div></div>\n<div></div>\n<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><img class=\"size-medium wp-image-27964 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/shutterstock_1756367075-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></span></div>\n<div></div>\n<div></div>\n<div></div>\n<div></div>\n<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Remember in most cases we are not even aware we have a problem, but even so you can still achieve these remarkable results. Just imagine what these figures could do you for your performance in your sport or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office.<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Terminology<br class=\"ac-designer-copy\" />​</span><br class=\"ac-designer-copy\" />So when it comes to exercise programming our holistic approach, which is commonly described but rarely understood and demonstrated, takes into consideration all of the body’s systems, and it has a deep understanding of how they interact and are guided by our nervous system. Description terms such as strength and power in this model are inadequate, so when we talk about exercises in these terms, we should be talking in terms of Movement Acquisition Patterns (or MAPs) which are used to enhance a given set of functional movements, not stretches or strengthening exercises, as the latter do not give credit for the full implications of the programming.</span></div>\n<div></div>\n<div></div>\n<div></div>\n<div></div>\n<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><img class=\" wp-image-31261 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/02/shutterstock_423021502-300x200.jpg\" alt=\"\" width=\"344\" height=\"229\" /><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Example<br class=\"ac-designer-copy\" />​</span><br class=\"ac-designer-copy\" />Lets take a hamstring stretch as an example, we are not trying to stretch the hamstrings when we extend the leg out in front of us, we are trying to improve the range of hip flexion and knee extension by stretching the structures on the back of the leg and back. This brings in more than just the hamstrings, it can also be limited by a tight sciatic nerve, a rotated sacro-iliac joint in the lower back, tight gastrocnemius, tight spinal cord and indeed almost any nerve in the chain given the continuum concept described earlier. How many times have you stretched your hamstrings using the generally accepted methods only to find that their flexibility continues to be stubborn and often returns to their standard length very soon? Many people experience this phenomenon. The reason is often due to them stretching only one of the structures that limit the movement, i.e. the hamstrings. If they do not stretch the other structures as well, of course they will not be affected and so the limited range will usually return. So we are trying to acquire a pattern of movement, not just stretching the hamstrings.</span><b class=\"ac-designer-copy\"></b></div>\n<div></div>\n<div></div>\n<div></div>\n<div>\n\n<hr />\n\n</div>\n<div>\n<h2><sub class=\"ac-designer-marked-selection ac-designer-copy\"><i class=\"ac-designer-copy\">Aimed at non clinicians seeking solutions to modern ailments of their clients with a proactive approach to assessment &amp; improvement of movement.</i></sub></h2>\n&nbsp;\n\n</div>\n<h2><a href=\"https://www.biomechanicseducation.com/product/understanding-nerves-live-webinar-feb-16th-12pm/\" target=\"_blank\" rel=\"noopener\">CLICK HERE TO BOOK A PLACE: </a></h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/understanding-nerves-live-webinar-feb-16th-12pm/\" target=\"_blank\" rel=\"noopener\">LIVE WEBINAR FEB 16TH 12PM</a></h2>\n&nbsp;\n<h2>During this webinar we will share with you how to test and improve your clients nerve mobility</h2>\n<img class=\"size-medium wp-image-31262 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/02/IMG_1564-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />','Understanding Nerves','','draft','closed','closed','','understanding-nerves','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=31258',0,'post','',2),(31259,0,'2022-02-02 11:32:30','2022-02-02 11:32:30','','Screenshot 2022-02-02 at 11.32.03','','inherit','open','closed','','screenshot-2022-02-02-at-11-32-03','','','2022-02-02 11:32:30','2022-02-02 11:32:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/Screenshot-2022-02-02-at-11.32.03.png',0,'attachment','image/png',0),(31260,0,'2022-02-02 11:33:26','2022-02-02 11:33:26','','Fatigue,After,Active,Hard,Training.,Tired,Guy,With,Dumbbells,And','','inherit','open','closed','','fatigueafteractivehardtraining-tiredguywithdumbbellsand','','','2022-02-02 11:33:26','2022-02-02 11:33:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/shutterstock_1798734148-scaled-1.jpg',0,'attachment','image/jpeg',0),(31261,0,'2022-02-02 11:34:39','2022-02-02 11:34:39','','Single,Athletic,Woman,With,Blond,Hair,In,Blue,Outfit,On','','inherit','open','closed','','singleathleticwomanwithblondhairinblueoutfiton','','','2022-02-02 11:34:39','2022-02-02 11:34:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/shutterstock_423021502-scaled-1.jpg',0,'attachment','image/jpeg',0),(31262,0,'2022-02-02 11:42:50','2022-02-02 11:42:50','','IMG_1564','','inherit','open','closed','','img_1564','','','2022-02-02 11:42:50','2022-02-02 11:42:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_1564-scaled-1.jpg',0,'attachment','image/jpeg',0),(31325,0,'2022-02-08 10:00:13','2022-02-08 10:00:13','','WEBSITE PDF TENNIS LINKS','','inherit','open','closed','','website-pdf-tennis-links','','','2022-02-08 10:00:13','2022-02-08 10:00:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/WEBSITE-PDF-TENNIS-LINKS-.pdf',0,'attachment','application/pdf',0),(31386,0,'2022-02-11 11:15:47','2022-02-11 11:15:47','','foyht','','inherit','open','closed','','foyht','','','2022-02-11 11:15:47','2022-02-11 11:15:47','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/foyht.png',0,'attachment','image/png',0),(31421,3,'2022-02-14 14:12:21','2022-02-14 14:12:21','<h2>Introduction</h2>\r\nNeuromuscular exercise may sound complex, but it\'s simpler than you think. This blog will demystify the biomechanics behind neuromuscular exercise and show you how it can enhance your training.\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-31433 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4665-300x102.jpg\" alt=\"\" width=\"494\" height=\"168\" />\r\n<h1></h1>\r\n<h3>What is Neuromuscular Exercise?</h3>\r\nNeuromuscular exercise involves activities that train both nerves (neuro) and muscles (muscular) to react and communicate efficiently. It focuses on the brain\'s ability to control limb movement and enhances joint stability through specific exercises.\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-31429 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4666-300x159.jpg\" alt=\"\" width=\"300\" height=\"159\" />\r\n\r\n&nbsp;\r\n<h3>The Science Behind Neuromuscular Control</h3>\r\nNeuromuscular control is the brain\'s process of managing limb movements. By training with neuromuscular exercises, you can improve your brain\'s ability to control muscles, enhancing stability and reducing injury risk.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><img class=\"size-medium wp-image-31430 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4667-300x137.jpg\" alt=\"\" width=\"300\" height=\"137\" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Benefits of Neuromuscular Exercise</h3>\r\n<ul>\r\n 	<li>Improved Biomechanics: Enhances muscle activation and joint stability.</li>\r\n 	<li>Balance and Coordination: Essential for everyone, especially those at risk of falls.</li>\r\n 	<li>Functional Strength: Builds strength in a way that supports everyday activities.</li>\r\n</ul>\r\n<h3>Key Neuromuscular Exercises</h3>\r\n<ul>\r\n 	<li>Coordination Training</li>\r\n 	<li>Balancing Exercises</li>\r\n 	<li>Trunk Conditioning</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-31432 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4098-300x255.jpg\" alt=\"\" width=\"300\" height=\"255\" />\r\n\r\n&nbsp;\r\n<h3>Why Gym Machines Aren’t Enough</h3>\r\nWhile gym machines have their place, they often lack the dynamic environment needed for effective neuromuscular training. Machines provide stability that can reduce the neuromuscular training effects required for specific sports or functional movements.\r\n<h3>Integrating Neuromuscular Training</h3>\r\nUnderstanding when and how to introduce neuromuscular exercises is crucial. Testing and assessing your clients’ biomechanics and movement quality can guide the timing and selection of appropriate exercises.\r\n<h3>Trunk Conditioning and Core Stability</h3>\r\nTrunk conditioning, or core stability, is vital for many clients. It involves progressively challenging the body\'s stabilizers, enhancing neuromuscular control over time. This can be measured using core assessment progressions, core isometric ratio testing, and functional stability screens.\r\n<h3>Neuromuscular Progression</h3>\r\nTo train your client\'s trunk effectively, gradually reduce the base of support. This progression challenges stabilizers more over time, improving their ability to handle loads and maintain stability during activities of daily living (ADL).\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><img class=\"size-medium wp-image-31428 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4103-300x214.jpg\" alt=\"\" width=\"300\" height=\"214\" /></p>\r\n\r\n<h2></h2>\r\n<h3>Considerations for Trainers</h3>\r\n<ol>\r\n 	<li>List Neuromuscular Exercises: Identify various exercises and order them from easiest to most challenging.</li>\r\n 	<li>Client-Specific Programmes: Determine which clients need which exercises and why.</li>\r\n 	<li>Testing and Assessment: Implement a testing system to track progress and tailor exercises to client needs.</li>\r\n</ol>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-31427 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4675-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Enhance Your Knowledge</h3>\r\nFor further learning, consider our online CPD courses. Click here to book\r\n\r\nIf you have any questions, feel free to contact us at rach@biomechanicseducation.com.\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-31431 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_2336-300x176.jpeg\" alt=\"\" width=\"300\" height=\"176\" />\r\n\r\nReferences\r\n\r\nBoyd, K. (2003). Low Back Disorders: Evidence-Based Prevention and Rehabilitation. Physiotherapy Canada, 55(2), 124.\r\n\r\nClausen, B., Holsgaard-Larsen, A., &amp; Roos, E. (2017). An 8-Week Neuromuscular Exercise Program for Patients With Mild to Moderate Knee Osteoarthritis. Journal of Athletic Training, 52(6), 592-605.\r\n\r\nFaries, M., &amp; Greenwood, M. (2007). Core Training: Stabilizing the Confusion. Strength and Conditioning Journal, 29(2), 10.\r\n\r\nFilipa, A., Byrnes, R., Paterno, M., Myer, G., &amp; Hewett, T. (2010). Neuromuscular Training Improves Performance on the Star Excursion Balance Test in Young Female Athletes. Journal of Orthopaedic &amp; Sports Physical Therapy, 40(9), 551-558.\r\n\r\nGschwind, Y., et al. (2013). A best practice fall prevention exercise program. BMC Geriatrics, 13(1).\r\n\r\nHibbs, A., et al. (2008). Optimizing Performance by Improving Core Stability and Core Strength. Sports Medicine, 38(12), 995-1008.\r\n\r\nHuxel Bliven, K., &amp; Anderson, B. (2013). Core Stability Training for Injury Prevention. Sports Health, 5(6), 514-522.\r\n\r\nLee, B., &amp; McGill, S. (2015). Effect of Long-term Isometric Training on Core/Torso Stiffness. Journal of Strength and Conditioning Research, 29(6), 1515-1526.\r\n\r\nLepley, L., et al. (2017). Eccentric Exercise to Enhance Neuromuscular Control. Sports Health, 9(4), 333-340.\r\n\r\nMcGill, S., et al. (1999). Endurance times for low back stabilization exercises. Archives of Physical Medicine and Rehabilitation, 80(8), 941-944.\r\n\r\nMyer, G., et al. (2008). Trunk and Hip Control Neuromuscular Training for the Prevention of Knee Joint Injury. Clinics in Sports Medicine, 27(3), 425-448.\r\n\r\nPhysiopedia. (2022). Neuromuscular Exercise Program. [online] Available at: https://www.physio-pedia.com/Neuromuscular_Exercise_Program [Accessed 14 February 2022].\r\n\r\nReiman, M., et al. (2010). Reliability of Alternative Trunk Endurance Testing Procedures. Journal of Strength and Conditioning Research, 24(3), 730-736.\r\n\r\nRisberg, M., et al. (2001). Design and Implementation of a Neuromuscular Training Program. Journal of Orthopaedic &amp; Sports Physical Therapy, 31(11), 620-631.\r\n\r\nWillson, J., et al. (2005). Core Stability and Its Relationship to Lower Extremity Function and Injury. Journal of the American Academy of Orthopaedic Surgeons, 13(5), 316-325.\r\n\r\n&nbsp;','Understanding Neuromuscular Exercise: A Comprehensive Guide','','publish','closed','closed','','neuromuscular-exercise','','','2025-01-20 16:01:56','2025-01-20 16:01:56','',0,'https://www.biomechanicseducation.com/?p=31421',0,'post','',0),(31422,0,'2022-02-14 11:40:50','2022-02-14 11:40:50','','IMG_4529','','inherit','open','closed','','img_4529','','','2024-09-05 11:15:14','2024-09-05 11:15:14','',31421,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4529.jpg',0,'attachment','image/jpeg',0),(31424,0,'2022-02-14 14:03:53','2022-02-14 14:03:53','','IMG_4672','','inherit','open','closed','','img_4672','','','2022-02-14 14:03:53','2022-02-14 14:03:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4672.jpg',0,'attachment','image/jpeg',0),(31425,0,'2022-02-14 14:03:58','2022-02-14 14:03:58','','IMG_4673','','inherit','open','closed','','img_4673','','','2022-02-14 14:03:58','2022-02-14 14:03:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4673.jpg',0,'attachment','image/jpeg',0),(31426,0,'2022-02-14 14:04:02','2022-02-14 14:04:02','','IMG_4674','','inherit','open','closed','','img_4674','','','2022-02-14 14:04:02','2022-02-14 14:04:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4674.jpg',0,'attachment','image/jpeg',0),(31427,0,'2022-02-14 14:04:07','2022-02-14 14:04:07','','IMG_4675','','inherit','open','closed','','img_4675','','','2022-02-14 14:04:07','2022-02-14 14:04:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4675.jpg',0,'attachment','image/jpeg',0),(31428,0,'2022-02-14 14:04:11','2022-02-14 14:04:11','','IMG_4103','','inherit','open','closed','','img_4103','','','2022-02-14 14:04:11','2022-02-14 14:04:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4103.jpg',0,'attachment','image/jpeg',0),(31429,0,'2022-02-14 14:04:16','2022-02-14 14:04:16','','IMG_4666','','inherit','open','closed','','img_4666','','','2022-02-14 14:04:16','2022-02-14 14:04:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4666.jpg',0,'attachment','image/jpeg',0),(31430,0,'2022-02-14 14:04:22','2022-02-14 14:04:22','','IMG_4667','','inherit','open','closed','','img_4667','','','2022-02-14 14:04:22','2022-02-14 14:04:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4667.jpg',0,'attachment','image/jpeg',0),(31431,0,'2022-02-14 14:04:27','2022-02-14 14:04:27','','IMG_2336','','inherit','open','closed','','img_2336','','','2022-02-14 14:04:27','2022-02-14 14:04:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_2336.jpeg',0,'attachment','image/jpeg',0),(31432,0,'2022-02-14 14:04:33','2022-02-14 14:04:33','','IMG_4098','','inherit','open','closed','','img_4098','','','2022-02-14 14:04:33','2022-02-14 14:04:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4098.jpg',0,'attachment','image/jpeg',0),(31433,0,'2022-02-14 14:04:40','2022-02-14 14:04:40','','IMG_4665','','inherit','open','closed','','img_4665','','','2022-02-14 14:04:40','2022-02-14 14:04:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4665.jpg',0,'attachment','image/jpeg',0),(31478,0,'2022-02-17 10:34:52','2022-02-17 10:34:52','','WEBSITE PDF Understanding Nerves LINKS','','inherit','open','closed','','website-pdf-understanding-nerves-links','','','2022-02-17 10:34:52','2022-02-17 10:34:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/WEBSITE-PDF-Understanding-Nerves-LINKS-.pdf',0,'attachment','application/pdf',0),(31479,0,'2022-02-17 10:37:17','2022-02-17 10:37:17','','Understanding Nerves with Biomechanics Education','','inherit','open','closed','','understanding-nerves-with-biomechanics-education','','','2022-02-17 10:37:17','2022-02-17 10:37:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/Understanding-Nerves-with-Biomechanics-Education.pdf',0,'attachment','application/pdf',0),(31499,0,'2022-02-18 15:00:37','2022-02-18 15:00:37','','Screenshot 2022-02-18 at 14.56.58','','inherit','open','closed','','screenshot-2022-02-18-at-14-56-58','','','2022-02-18 15:00:37','2022-02-18 15:00:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/Screenshot-2022-02-18-at-14.56.58.png',0,'attachment','image/png',0),(31500,0,'2022-02-18 15:01:54','2022-02-18 15:01:54','','Low,Section,Of,Sportswoman,Suffering,From,Knee,Pain,While,Sitting','','inherit','open','closed','','lowsectionofsportswomansufferingfromkneepainwhilesitting','','','2022-02-18 15:01:54','2022-02-18 15:01:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/shutterstock_660966850-scaled-1.jpg',0,'attachment','image/jpeg',0),(31585,0,'2022-02-25 13:19:52','2022-02-25 13:19:52','','WEBSITE PDF DEAD LINKS','','inherit','open','closed','','website-pdf-dead-links','','','2022-02-25 13:19:52','2022-02-25 13:19:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/WEBSITE-PDF-DEAD-LINKS-.pdf',0,'attachment','application/pdf',0),(31586,0,'2022-02-25 13:24:17','2022-02-25 13:24:17','','Deadlift Analysis Made Simple','','inherit','open','closed','','deadlift-analysis-made-simple','','','2022-02-25 13:24:17','2022-02-25 13:24:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/Deadlift-Analysis-Made-Simple-.pdf',0,'attachment','application/pdf',0),(31612,0,'2022-02-28 12:35:19','2022-02-28 12:35:19','','Screenshot 2022-02-28 at 12.34.48','','inherit','open','closed','','screenshot-2022-02-28-at-12-34-48','','','2022-02-28 12:35:19','2022-02-28 12:35:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Screenshot-2022-02-28-at-12.34.48.png',0,'attachment','image/png',0),(31613,0,'2022-02-28 12:35:55','2022-02-28 12:35:55','','Screenshot 2022-02-28 at 12.33.59','','inherit','open','closed','','screenshot-2022-02-28-at-12-33-59','','','2022-02-28 12:35:55','2022-02-28 12:35:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Screenshot-2022-02-28-at-12.33.59.png',0,'attachment','image/png',0),(31614,0,'2022-02-28 12:36:18','2022-02-28 12:36:18','','IMG_5329','','inherit','open','closed','','img_5329','','','2025-03-18 12:09:28','2025-03-18 12:09:28','',42683,'https://biomechanicseducation.com/wp-content/uploads/2018/01/IMG_5329-scaled-1.jpeg',0,'attachment','image/jpeg',0),(31615,0,'2022-02-28 12:39:05','2022-02-28 12:39:05','','JoshMullin','','inherit','open','closed','','joshmullin','','','2022-02-28 12:39:05','2022-02-28 12:39:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/JoshMullin.jpg',0,'attachment','image/jpeg',0),(31651,0,'2022-03-03 09:15:21','2022-03-03 09:15:21','','WEBSITE PDF foot LINKS','','inherit','open','closed','','website-pdf-foot-links-2','','','2022-03-03 09:15:21','2022-03-03 09:15:21','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/03/WEBSITE-PDF-foot-LINKS-.pdf',0,'attachment','application/pdf',0),(31652,0,'2022-03-03 09:15:35','2022-03-03 09:15:35','','WEBSITE PDF foot LINKS','','inherit','open','closed','','website-pdf-foot-links-3','','','2022-03-03 09:15:35','2022-03-03 09:15:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/03/WEBSITE-PDF-foot-LINKS-1-1.pdf',0,'attachment','application/pdf',0),(31734,3,'2022-03-10 12:55:44','2022-03-10 12:55:44','<b>The Power of Words </b>\n\n<span style=\"font-weight: 400;\">Communication can be one of the most underrated skills we consider investing in for CPD’s in our fitpro or therapy business. Maybe because we feel we are already pretty good communicators. </span>\n\n<span style=\"font-weight: 400;\">We know without communication nothing happens but could we learn more about how to communicate better to achieve even better results?</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-30603 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-20.43.57-198x300.png\" alt=\"\" width=\"198\" height=\"300\" />\n\n<span style=\"font-weight: 400;\">We communicate in a variety of ways &amp; the evidence points to the power of words having a huge influence on our client\'s behaviour, including client adherence which can be such a challenge.</span>\n\n<span style=\"font-weight: 400;\">We might speak to others without much thought beyond our own bias &amp; opinions. In fact it’s quite hard to imagine how another person sees the world when we are so entrenched on our own. </span>\n\n<span style=\"font-weight: 400;\">Of course the grass is green, we can see that…..but maybe, just maybe, your green is different to my green? When speaking about the colour of grass it may seem unimportant but let’s switch it up a notch and consider someone with a certain facial expression….are they being miserable or are they just reflecting on something sad?</span>\n\n<span style=\"font-weight: 400;\">Imagine the world from the view of my friend Chris who lives with Asperger\'s which means he has</span>\n<ul class=\"ul1\">\n 	<li class=\"li1\">difficulty interpreting verbal &amp; non-verbal language</li>\n 	<li class=\"li1\">difficulty \'reading\' other people &amp; expressing his own emotions</li>\n</ul>\n<span style=\"font-weight: 400;\">Just imagine being unable to read a facial expression. </span>\n\nChris &amp; I became friends almost 30yrs ago when I worked in the care industry &amp; he has over the years taught me a lot about communication. We would say an emotion like happy or angry, then I would take a photo of Chris making that facial expression, then he would look at each one &amp; try to guess which one it was from just the photo as I showed them to him randomly.\n\nIt helped me to realise something I took for granted &amp; that I wanted to practise noticing more which words I chose to use to communicate emotions or feelings to help Chris who might struggle to read my expression.\n\n<span style=\"font-weight: 400;\">Because ultimately we all might assume when someone is smiling they are happy, right? </span>\n\n&nbsp;\n\n<b>The Problem</b>\n\n<img class=\"size-medium wp-image-31747 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/03/priscilla-du-preez-Q7wGvnbuwj0-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />To truly engage a client we use questions during our consultation to identify what it is they wish to achieve from employing our services. We are taught systems like S.M.A.R.T goal setting &amp; yet it is often such a struggle to support an individual in changing their behaviour from unhealthy habits to healthier ones.\n\nChanging behaviour &amp; habits is the solution to most, if not all, of our clients issues. However....\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">How many of us experience poor adherence from clients? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Thinking about our use of words &amp; the way we interpret them …..do we assume our client knows what we mean or do we ask the client …..?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">How empathic are we to your clients\' view of the world? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">How do we find out? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">How much time do we allocate to listening to our clients? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Does our choice of words resonate for them in the same way they do for us? How would we know?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">How can we PRACTISE listening &amp; develop our own self awareness to understand better how to choose the right words &amp; take advantage of the power we can have with this choice in helping more clients more often &amp; maybe without even knowing it! ?</span></li>\n</ul>\n<span style=\"font-weight: 400;\">As a practitioner WE MUST be able to speak ‘</span><i><span style=\"font-weight: 400;\">client</span></i><span style=\"font-weight: 400;\">’ but they do not need to speak ‘</span><i><span style=\"font-weight: 400;\">practitioner</span></i><span style=\"font-weight: 400;\">’</span>\n\n<span style=\"font-weight: 400;\">Neuroplasticity is the </span><span style=\"font-weight: 400;\">science</span><span style=\"font-weight: 400;\"> behind the power of words &amp; in the words of Joe Dispenza...</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Emotions are the chemical response to the environment around you”</span></i><span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Understanding how neurotags anchor onto, not only pain, but also thoughts , emotions, feelings, locations, beliefs &amp; memories. </span>\n\n&nbsp;\n\n<strong>Listening Skills</strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-31748 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/03/franco-antonio-giovanella-PVDWaEhSIAg-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />Listening to how others speak, listening to their choice of words &amp; thinking about how the words they choose make you feel can create better awareness of the power THEIR words have on you. This means we have a huge responsibility to choose our words very carefully when advising others on how to change their behaviour. </span>\n\n<span style=\"font-weight: 400;\">Taking advantage of the </span><i><span style=\"font-weight: 400;\">power of silence</span></i><span style=\"font-weight: 400;\"> to listen AND hear what is being said AND how you process words</span>\n\n<span style=\"font-weight: 400;\">The power of words affects how we feel, then how we feel affects our physiology response. </span>\n\n<span style=\"font-weight: 400;\">It has been scientifically shown to change how your body responds &amp; this can be both good &amp;/or bad. Alan Watkins, neuroscientist, demonstrates this beautifully in this video.</span>\n\n<span style=\"font-weight: 400;\">Being conscious of our language &amp; how we make another person feel is vital to our success with clients </span>\n\n<span style=\"font-weight: 400;\">We can control what we think about but not our emotions - if we can control our thoughts we can change how we OR OUR CLIENTS feel</span>\n\n<b>How can we hone our skills?</b>\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-31749 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/03/brett-jordan-Fp4ERdkR5jU-unsplash-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />TASK 1 </span>\n\n<span style=\"font-weight: 400;\">Remember a time when words affected you profoundly, maybe teacher or parent? How did they make you feel? What did they say? What words? How did they engage you? </span>\n\n<span style=\"font-weight: 400;\">TASK 2</span>\n\n<span style=\"font-weight: 400;\">Notice your inner dialogue &amp; write it into a journal/diary. This cognitive restructuring helps us notice if we bully ourselves</span>\n\n&nbsp;\n\n<a href=\"https://youtu.be/-Cca0i1EboE\" target=\"_blank\" rel=\"noopener\">CLICK HERE TO ACCESS THE KAIZEN PROJECT SESSION </a>\n\n<strong>References: </strong>\n\n<span style=\"font-weight: 400;\">YouTube: Alan Watkins  <em>Being brilliant every single day part 1 &amp; part 2 </em></span>\n\n<em>Books:</em>\n\n<span style=\"font-weight: 400;\">Moseley &amp; Butler <em>Explain Pain </em></span>\n\nEvan Carmichael <em>One Word</em>\n\n<span style=\"font-weight: 400;\">Joe Dispenza <em>The Placebo Effect</em></span>\n\n<span style=\"font-weight: 400;\">Carl Rogers <em>A Way of Being</em></span>\n\n<span style=\"font-weight: 400;\">Sir Ken Robinson <em>The Element</em></span>\n\n<hr />\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\">The Kaizen Project</a></h1>\n<h1>SAVE THE DATE Oct 8th 2022</h1>\n&nbsp;\n\nBurleigh Court Conference Centre\n\nLoughborough University\n\n&nbsp;\n<h2>info@biomechanicseducation.com to be added to our waiting list!</h2>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\">Details COMING SOON!</a></h1>','The Power of Words','','draft','closed','closed','','the-power-of-words','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=31734',0,'post','',0),(31735,0,'2022-03-09 14:43:06','2022-03-09 14:43:06','','brett-jordan-mgXsJEKse1A-unsplash','','inherit','open','closed','','brett-jordan-mgxsjekse1a-unsplash','','','2022-03-09 14:43:06','2022-03-09 14:43:06','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/03/brett-jordan-mgXsJEKse1A-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(31747,0,'2022-03-10 12:51:50','2022-03-10 12:51:50','','priscilla-du-preez-Q7wGvnbuwj0-unsplash','','inherit','open','closed','','priscilla-du-preez-q7wgvnbuwj0-unsplash','','','2025-03-18 12:09:28','2025-03-18 12:09:28','',42683,'https://biomechanicseducation.com/wp-content/uploads/2022/03/priscilla-du-preez-Q7wGvnbuwj0-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(31748,0,'2022-03-10 12:52:54','2022-03-10 12:52:54','','franco-antonio-giovanella-PVDWaEhSIAg-unsplash','','inherit','open','closed','','franco-antonio-giovanella-pvdwaehsiag-unsplash','','','2022-03-10 12:52:54','2022-03-10 12:52:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/03/franco-antonio-giovanella-PVDWaEhSIAg-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(31749,0,'2022-03-10 12:54:24','2022-03-10 12:54:24','','brett-jordan-Fp4ERdkR5jU-unsplash','','inherit','open','closed','','brett-jordan-fp4erdkr5ju-unsplash','','','2022-03-10 12:54:24','2022-03-10 12:54:24','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/03/brett-jordan-Fp4ERdkR5jU-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(31877,0,'2022-03-22 13:35:05','2022-03-22 13:35:05','','Portrait_Mike Stewart-2','','inherit','open','closed','','portrait_mike-stewart-2','','','2022-03-22 13:35:05','2022-03-22 13:35:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/03/Portrait_Mike-Stewart-2.png',0,'attachment','image/png',0),(31879,0,'2022-03-22 13:49:41','2022-03-22 13:49:41','','JBE Rio 3','','inherit','open','closed','','jbe-rio-3','','','2022-03-22 13:49:41','2022-03-22 13:49:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/03/JBE-Rio-3.jpg',0,'attachment','image/jpeg',0),(32012,0,'2022-04-05 14:20:08','2022-04-05 14:20:08','','Screenshot 2020-02-19 at 09.09.01','','inherit','open','closed','','screenshot-2020-02-19-at-09-09-01-2','','','2022-04-05 14:20:08','2022-04-05 14:20:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/04/Screenshot-2020-02-19-at-09.09.01.png',0,'attachment','image/png',0),(32172,3,'2022-05-10 09:11:04','2022-05-10 09:11:04','<h2><span style=\"font-weight: 400;\">…the <strong><em>Master of Compensation</em></strong> that is our wonderful body!!</span></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-33787 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_185177393-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When we first begin studying about the body during our entry into the health, fitness &amp; exercise industry we learn about <em>progressive overload</em> as the method for writing a client’s training programme. </span>\n\n<span style=\"font-weight: 400;\">Increased weight, altering reps &amp; sets, adding more exercises, increasing duration or mileage, these all become a part of what we do each day for each clients. </span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Frequency </span></li>\n 	<li><span style=\"font-weight: 400;\">Intensity </span></li>\n 	<li><span style=\"font-weight: 400;\">Time </span></li>\n 	<li><span style=\"font-weight: 400;\">Type</span></li>\n</ul>\n<span style=\"font-weight: 400;\">The FITT acronym is tool we are given to help us recall easily how to progress our clients through strength training with alterations in the frequency, intensity, time or type of exercises we write into their programme. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The idea of progressive overload is a deliberate endeavour towards increasing muscle mass, developing muscle tone, reducing fat &amp; improving cardiovascular health etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We know this because it’s the whole point to becoming a personal trainer!</span>\n\n<span style=\"font-weight: 400;\">It’s everything that is personal training.</span>\n\n<span style=\"font-weight: 400;\">Obviously we could add improved mental health as a result of endorphin release, reduction in cortisol etc also all part of the development.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We write programmes to help clients bodies manage load, to adapt &amp; improve resilience alongside working towards improved confidence with aesthetic opinions.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is the wonderful system of our beautiful bodies\' ability to compensate. It compensates to the environment it’s exposed to, to its most common experiences &amp; dictates at least to some degree the way we eat or is dictated BY what we eat!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet we are not given the same emphasis of training in….<strong><em>regressive under loading</em></strong>….Tissue fragility….or load risk </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34810 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/06/IMG_8906-230x300.jpg\" alt=\"\" width=\"230\" height=\"300\" />\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">What am I talking about? </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Modern ailments that result from under use, lowered tissue tolerance &amp; under exposure to force &amp; loads is what we are now faced with and yet ill equipped to deal with.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A huge problem facing personal trainers today is pain &amp; conditions caused by poor biomechanics &amp; compensations.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our training requires as much education around this aspect of client problems wouldn\'t you agree?  Almost everyone has some kind of fragility alongside the aesthetic requirements, in fact they may seek a PTs advice specifically FOR their modern ailments!</span>\n\n&nbsp;\n<h2><img class=\"size-medium wp-image-35274 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/shutterstock_1798734148-300x193.jpg\" alt=\"\" width=\"300\" height=\"193\" /></h2>\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">The problem </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The risk this brings is that when it comes to pain &amp; medical conditions we don’t know what we don’t know. </span>\n\n<span style=\"font-weight: 400;\">It is very risky to assume all low grade aches &amp; pains are biomechanical. While pain could well be psychological &amp; biomechanical, our insurance &amp; specialist training still isn’t enough to protect those with more sinister high risk red flags that can also cause low grade aches n pains.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">So what? </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is a very simple solution that could be easy to implement but would likely take time. It would require changing attitudes, education upgrades, improved communication, systemisation, data collection &amp; obviously monitoring.</span>\n\n<span style=\"font-weight: 400;\">A joining of forces &amp; in my opinion, the regulation our sector to \'professionalise\' us. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We need to be seen as part of the solution but we also require appropriate education about how to practice as a regulated practitioner.</span>\n\n<span style=\"font-weight: 400;\">We require training &amp; provisions that remove the stigma attached to being an exercise progressional. </span>\n\n<span style=\"font-weight: 400;\">This way clients, NHS &amp; regulated clinicians might start leaning into us &amp; our skill set for support!</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35275 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/Screenshot-2023-02-07-at-15.01.19-163x300.png\" alt=\"\" width=\"163\" height=\"300\" />\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">The solution </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone talks about the simplest &amp; cheapest intervention for many long term conditions, as well as the huge volume of modern ailments people complain of, as being simply ‘movement’ </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">UK Active\'s motto </span>\n\n&nbsp;\n<ul>\n 	<li><em><span style=\"font-weight: 400;\">More people </span></em></li>\n 	<li><em><span style=\"font-weight: 400;\">More active </span></em></li>\n 	<li><em><span style=\"font-weight: 400;\">More often </span></em></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The government prescribed a 1hr walk a day during the pandemic restrictions because everyone knows movement is a vital component to both physical &amp; mental health &amp; well being, </span>\n\nBy giving us education in musculoskeletal (biomechanical) assessment &amp; monitoring with regulation &amp; support so we can do our bit!\n\nIt doesnt need to be complex nor risky either, with just a few tools &amp; the right support exercise professionals are perfectly placed to re-build tissue tolerance within our clients to reverse engineer what low activity lifestyles are doing to our bodies!\n\nSimple safe interventions like muscle energy techniques, pure joint mobilisations and nerve mobilisations are a perfect series of iMoveFreely techniques to really get the nation moving more freely &amp; with less pain!\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">What can we offer? </span></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-35276 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6385-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With the right education, trust &amp; support we can offer movement advice to improve our client\'s biomechanics thus improving tolerance to forces &amp; loads to address the modern ailments of today\'s less active \'easier\' lifestyle.</span>\n\n<span style=\"font-weight: 400;\">We can do this to reduce risk &amp; recurring issues through strength training &amp; advising progressive overload to develop tissue tolerance.</span>\n\nWe want to help..right!!?\n\n&nbsp;\n\nThrough learning more about how the human body adapts to both <span style=\"font-weight: 400;\"><strong><em>regressive under loading AND progressive overloading </em></strong>we can come into our own &amp; be the go to advisors for reducing NHS waiting lists, supporting our communities &amp; being more involved in health &amp; wellness as a trusted sector/profession for reverse engineering the human body to be biomechanically healthier!</span>\n\n&nbsp;\n<h1>What do you think?</h1>\n&nbsp;\n\nIt would be great to hear your thoughts on this matter so why not email us at info@biomechanicseducation.com with your ideas after reading this blog!\n\nShould we become more regulated?\n\nHow would you like to see our sector professionalised?\n\nWhat education do you think we would require to support the NHS more? better?\n\nLet me know your thoughts...\n<h3><em>rachel@biomechanicseducation.com</em></h3>\n\n<hr />\n\n&nbsp;\n<h1>Diploma in Biomechanics Coaching</h1>\n<img class=\"size-medium wp-image-28329 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />We can offer you skills in better understanding regressive under loading\n\nOur Diploma in Biomechanics Coaching teaches coaches and trainers the art of biomechanical assessment without the need for expensive equipment, tests that can be done on the gym floor, in your studio, even at home.\n\nWe will also teach you the amazing evidence based iMoveFreely techniques to improve tissue tolerance even for those experiencing modern ailments.\n\nWe will also give you absolute clarity on what steps to take with each &amp; every client no matter how tricky or complex their circumstances.\n<h3><em>Why not get in touch for more information rachel@biomechanicseducation.com</em></h3>','Let me introduce you to our Ultimate Master…','','draft','closed','closed','','let-me-introduce-you-to-our-ultimate-master','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=32172',0,'post','',0),(32174,3,'2022-05-18 11:40:37','2022-05-18 11:40:37','<span style=\"font-weight: 400;\">Statistically whichever data / research you read there is always less than 15% of the population reported to be members of gyms. </span>\n\n<span style=\"font-weight: 400;\">So if you are struggling to gain, &amp; retain, more clients but work from a gym space it may be time to start thinking \'outside the box\'…s’cuse the pun.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With long term conditions creating increased demands on the NHS it’s time we, the health &amp; fitness sector, consider continuing our adaptations even post lockdown restrictions. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">What am I talking about?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Much of our education/training is about teaching clients to be strong, how to use machines, how to lift weights &amp; be active. But what if your promotions, instagram videos &amp; testimonials are actually putting people off?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">No matter how great your video skills, or how much you spend on fancy editing apps or particularly how challenging those funky moves are they are very likely to switch a huge % of the population off. Possibly even 85%!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes we ‘gym fanatics’ are the rarity &amp; it\'s tough to consider, &amp; empathise with, individuals who have absolutely no interest in joining a gym &amp; yet, they may still need our help. They just don’t know HOW we can help because they dont look like, nor do they feel they can look like, your Instagram clients, HIIT class participants &amp; those success story testimonial video of your amazing client, Barry, on facebook. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember if you are busy &amp; doing great in your gym this blog is NOT for you….</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How do we reach the 85% NOT in the gym?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you ever considered the language &amp; images you are using both publicly &amp; on social media? Are you able to show empathy to individuals who do NOT want to join a gym, EVER?</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Where are they?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">They wont be in your facility, so we have to look elsewhere. So where are they? GP surgeries? Village halls? Supermarkets? </span>\n\n<span style=\"font-weight: 400;\">Do you advertise there?</span>\n\n<span style=\"font-weight: 400;\">Could you? </span>\n\n<span style=\"font-weight: 400;\">And what would you advertise?</span>\n\n<span style=\"font-weight: 400;\">Remember they don\'t want to join the gym! </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">What do they want?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">To move without pain, to reduce symptoms, to feel healthier, to have more energy, to not feel so alone, lose weight, to not have diabetes, to reduce their risk of having a heart attack….but they struggle to move so ‘exercise’ can create anxiety, fear or the sense of pending failure. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How can we help?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">GP Surgeries hold regular meetings that their patients can go along to. You could find out when they are held &amp; go along, listen &amp; learn about the problems they have. Once you know the problem, you are in a better position to offer a solution. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider the old school model of flyers, posters, leaflets in your community, village hall, supermarket, local paper or at a local event/fete. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider organising a coffee morning during which you will share your solutions &amp; services. Which maybe low cost entry options or even free group sessions - if they come to your coffee morning what more could you educate them on during their coffee / social?</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Do we need additional education or special skills?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes - possibly or probably - it depends upon the audience you are looking to reach &amp; serve. </span>\n\n<span style=\"font-weight: 400;\">Programmes like GP referral, Obesity &amp; diabetes training, cardiac rehab training, mental health first aid, long covid rehabilitation &amp; of course iMoveFreely are all superb programmes to serve individuals with long term conditions, who may NOT want to join a gym but do want to help themselves or are just starting to explore solutions. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Where do I start?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Look for a long standing reputed education company, research options, talk to their sales teams, don’t just buy the cheapest!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do some research locally about what is missing in terms of services, can you be the solution to fill a gap &amp; unburden the local surgery?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider (&amp; research) asking for funding as there may well be opportunities for those who can demonstrate ways to get people more active. Speak to the right people at your local council/borough.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Collect the data! Whatever your measuring tools are from health screening, biomechanical assessment, psychometric testing, pain questionnaires, satisfaction questionnaires etc this is all evidence of your ability to support your community in being physically more active &amp; healthy. Be sure to make it easy to analyse!</span>\n\n<span style=\"font-weight: 400;\">This is when evidence has the potential for bringing funding opportunities &amp; of course the bi-product is some great marketing information!</span>\n\n&nbsp;\n\nHow will you up skill to enhance your reach?\n\nHow could you upgrade your marketing messages to engage 85% of the community NOT entering the gyms?\n\nHow will you serve them?\n\nWhat do you need?\n\nWho can help?\n\nCan we help?\n\nIf you are still reading &amp; feel you have done this successfully already we would LOVE to hear from you. So please please do get in touch &amp; tell us about your experience!\n\ninfo@biomechanicseducation.com\n\n<hr />\n\n<h2><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Why not become a Biomechanics Coach &amp; join the revolution for our industry?</a></h2>\nAsk any Biomechanics Coach about their learning experience, their level of confidence since training with us &amp; the community spirit that is within our school of intrinsic biomechanics....they will tell you all about the difference this environment can make to your business &amp; service delivery, particularly with clients who maybe deemed \'tricky\' in their physical challenges.\n\nWhy not get in touch to ask any questions you may have? info@biomechanicseducation.com\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">JOIN US</a>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">CLICK HERE TO READ MORE OR BOOK </a>\n\n&nbsp;\n\nReferences\n\n(No date a) <i>Overview of the UK population - office for national statistics</i>. Available at: https://backup.ons.gov.uk/wp-content/uploads/sites/3/2019/08/Overview-of-the-UK-population-August-2019.pdf (Accessed: 27 September 2023).\n<div></div>\n(No date b) <i>Why and how are we living longer? - wiley online library</i>. Available at: https://physoc.onlinelibrary.wiley.com/doi/full/10.1113/EP086205 (Accessed: 27 September 2023).\n<div></div>\n(No date c) <i>9 surprising gym statistics | realbuzz.com</i>. Available at: https://www.realbuzz.com/articles-interests/fitness/article/9-surprising-gym-statistics/ (Accessed: 24 March 2023).\n<div></div>\n<i>ACSM Fitness trends</i> (no date) <i>ACSM_CMS</i>. Available at: https://www.acsm.org/education-resources/trending-topics-resources/acsm-fitness-trends (Accessed: 24 March 2023).\n<div></div>\nHattie (2022) <i>The changing demographics of gym members</i>, <i>IDS Media</i>. Available at: https://www.idsmedia.co.uk/news/changing-demographics-of-gym-members/ (Accessed: 24 March 2023).\n<div></div>\nIhrsa (no date) <i>2021 IHRSA media report</i>, <i>2021 IHRSA Media Report</i>. Available at: https://hub.ihrsa.org/2021-ihrsa-media-report (Accessed: 24 March 2023).\n<div></div>\nThompson, W.R. (no date) <i>Worldwide survey of fitness trends for 2023 : ACSM’s Health &amp; Fitness Journal</i>, <i>LWW</i>. Available at: https://journals.lww.com/acsm-healthfitness/Fulltext/2023/01000/Worldwide_Survey_of_Fitness_Trends_for_2023.6.aspx?context=FeaturedArticles&amp;collectionId=1 (Accessed: 24 March 2023).\n<div></div>\n<i>The UK fitness report – 2022/23 gym statistics</i> (2022) <i>PureGym</i>. Available at: https://www.puregym.com/blog/uk-fitness-report-gym-statistics/ (Accessed: 24 March 2023).\n<div></div>\nWhite, D. (2021) <i>Gym statistics: How many people go to the gym UK 2021</i>, <i>Our Sporting Life</i>. Available at: https://oursportinglife.co.uk/gym-statistics-uk/ (Accessed: 24 March 2023).\n<div></div>','Would you like access to 85% more clients?','','draft','closed','closed','','who-would-like-access-to-85-more-clients','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=32174',0,'post','',0),(32176,3,'2022-05-19 14:25:36','2022-05-19 14:25:36','Remember my previous Juicemail about our <a href=\"https://www.biomechanicseducation.com/let-me-introduce-you-to-our-ultimate-master/\" target=\"_blank\" rel=\"noopener\">Master of Compensation</a>? This is a follow on from that since it is fundamentally what we do as movement practitioners assisting clients to build confidence in how they look, feel &amp; move..\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35280 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/2O8A2843-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are often taught to think of measuring the ‘load’ on our clients body as the weight or kilos we ask our clients to lift along with the reps and sets. However, to truly understand the loads the body experiences each day we are going to explore the theory that it takes much more than simply calculating these numbers. The aim here is to better understand how we can support the progressive development of our client\'s tissue tolerance to manage the loads they place upon them for risk reduction &amp; optimisation of performance....more importantly some of the loads the body experiences that we may not be measuring!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Tim Gabbett’s work on load management demonstrates the efficacy of understanding &amp; measuring both intrinsic &amp; extrinsic loads the body experiences. He suggests we can put each of our clients into a Load Continuum or Athletic Spectrum, no matter what their level, by calculating a range of aspects that ‘load’ the body &amp; then monitor those numbers over time </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A simple example for ‘measuring’ Load &amp; Managing, is....</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Frequency + Volume  + intensity = Load.</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can then be added to a simple graph spreadsheet &amp; analysed over weeks/months while taking into account all others influences. However Gabbett suggests we should also record their ‘response’ to load too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Balance is of course required when recognising BOTH negative &amp; positive responses to load</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Task specific relative capacity is obviously key when measuring &amp; so </span><span style=\"font-weight: 400;\">load management must relate to the task at hand. This way the spreadsheet numbers can be tweaked to include miles for a runner for example</span>\n\n&nbsp;\n<h2><a href=\"https://www.eventbrite.com/e/load-management-train-smarter-and-harder-birmingham-tickets-313176418097\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">‘Training harder is training smarter’ </span></i></a></h2>\n<h2><span style=\"font-weight: 400;\">Tim Gabbett</span></h2>\n<h2></h2>\n<img class=\"size-medium wp-image-35282 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/05/IMG_1548-1-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As stated, every client can be evaluated using an athletic, or physical spectrum &amp; the principles of progressive overload, specificity, recovery are the same but using load measurements allow us to manage, periodise &amp; also amend when necessary depending upon the response &amp; their schedule </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Load is a combination of both external stimulus &amp; Internal stimulus </span>\n\n<span style=\"font-weight: 400;\">So both the quality &amp; quantity needs to be right as opposed to simply using minutes or reps &amp; sets of training  </span>\n\n&nbsp;\n<h2><i><span style=\"font-weight: 400;\">We can’t predict injury but we can prepare the bodies tolerance to load </span></i></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Training is needed to allow us to check the response to load followed by adequate recovery. This way we can adjust the client’s programme accordingly </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When a client regresses or gains injuries, the load itself isn’t the problem, its the load the body experiences when you’re not prepared for it.</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35285 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6931-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">What measures can be used? </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">A great consultation should include these ‘measures’;</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Extensive health screening questions every 6-12 months</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Full biomechanics screen including every joint &amp; structure </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">SMART goals </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Psychometric evaluation </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Present training volumes - reps/sets/weights/miles/speed/recovery</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Type of training &amp; over how long</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Sleep duration </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Annual / seasonal recovery phases </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Hormonal cycle / health </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Medications </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">List of any regular treatments received </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Shoe types, orthoses measures </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Diet quality &amp; vices </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Support network </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">A lot of measures &amp; yet any one, or any number of these, could affect outcomes, risk &amp; performance level.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is why a structured reflection journal can help us plot &amp; monitor our clients circle of influence along with clear spreadsheets measured &amp; monitored consistently to best understand the effects of any alterations, additions or reductions of any of the influencers. </span>\n\n&nbsp;\n\n<hr />\n\n<h2>Would you like to learn evidence based methods of biomechanical assessment?</h2>\n<img class=\" wp-image-28329 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"353\" height=\"235\" />Why not join us for one of our practical intrinsic biomechanics workshops?\n<h3><em>Get in touch for more rachel@biomechanicseducation.com</em></h3>','Tissue Tolerance & Load Management - how can we measure?','','draft','closed','closed','','tissue-tolerance-load-management-how-can-we-measure','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=32176',0,'post','',0),(32178,3,'2022-05-19 11:40:39','2022-05-19 11:40:39','Posture is common part of our sector\'s vocabulary when talking about movement &amp; problems our clients have. Clients tell us they have poor posture! It\'s one of those common ailments they complain about because they sit at their desk to work which they feel causes them to have <em>BAD</em> posture. Yet even when they think bad posture is a problem they still continue to ignore it because they have to work at a desk!\n\nBad posture seems to have become <em>normalised</em> due to our desk bound lives, as if it\'s something we should just accept &amp; try to rectify in the window of around 30-60 minutes of recommended daily exercise.\n\nBack pain is still on the rise &amp; is often blamed on this poor posture epidemic\nShoulder &amp; neck \'issues\' are blamed upon bad desk posture, simply accepted &amp; even expected!\n\n&nbsp;\n\nBUT\n\n&nbsp;\n<h2>What if I said to you.... BAD POSTURE IS NOT THE PROBLEM!?</h2>\n&nbsp;\n\nSome individuals are born with naturally forward positioned, rounded shoulders (humeral anteversion)\nSome are genetically attributed with flatter backs (the J shaped spine) or a large degree of lordotic curve.\nMany have these ‘postural’ presentations WITHOUT PAIN!\n\nOR\n\nImagine a soldier in his ‘good’ posture for hours on end, he would probably hurt or ache from standing tall and upright for long periods.\n\nOR\n\nWho gets to decide on the parameters of what good posture looks like!?!?\n\nHow would good posture be measurable on the various body types we come across?!?!?\n\nSo what is really the problem and why is it so common for people who sit at desks to hurt or feel stiff?\n\n&nbsp;\n<h2>The problem is actually a LACK OF VARIETY</h2>\n&nbsp;\n\nThis is the true nature of the problem, not the posture itself.\n\nPosture, by definition, is simply a position of the body. We can demonstrate a round shouldered posture without any concern for it hurting. So it\'s not the posture that causes the problems, it\'s the duration we hold any posture/position, the long periods we spend NOT moving, that count towards our bodies attempting to evolve &amp; adapting/compensating to be less used. These compensations can result in nociceptive sensitisation or low grade aches, niggles or even recurring injuries.\n\nThis should not only alter expectation, but also intervention strategies towards what can be the simplest solution to most movement issues…\n\nMove well\nMove more\nMove Consistently\nMove freely\n\n&nbsp;\n<h2>Forget posture….. focus on function!</h2>\n&nbsp;\n\nWhat this means is teaching office workers how to move more while at their desks. This is why iMoveFreely is the perfect solution for working out at work!\n\nThe no sweat work out can be performed while reading emails &amp; making phone calls so won’t affect performance….in fact they are more likely to improve it!\n\nYes METs can reduce muscle fatigue by 14%!\n\nThe side effect is improved body stacking, joint loading, along with how our client\'s feel &amp; move!\n\nDo you feel the same or has this blog challenged your understanding of movement &amp; posture?\n\nWhat are your thoughts?\n\n&nbsp;\n\n<hr />\n\n<h2>Would you like to become an <a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/\" target=\"_blank\" rel=\"noopener\">iMoveFreely Instructor?</a></h2>\n<img class=\"size-medium wp-image-31427 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4675-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />Learn how to apply intrinsic biomechanics principles to your group exercise classes.\n\nGain a deeper understanding of why your participants move the way they do.\n<p class=\"p1\">A revolutionary workshop to enhance all previous workshops or courses attended. The aim is to<i> prehabilitate </i>participants with simple, safe &amp; low grade techniques.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">The evidence based prehabilitation techniques can be life changing for some and will give you additional solutions to helping your participants move more freely and with less pain.</p>\n<p class=\"p1\">Deliverable as a ‘pure’ iMoveFreely® clinic or can be blended into other classes</p>\n<a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/\" target=\"_blank\" rel=\"noopener\">&gt;&gt;READ MORE OR TO BOOK CLICK HERE&lt;&lt;</a>','Why All The Fuss About Posture?','','draft','closed','closed','','why-all-the-fuss-about-posture','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=32178',0,'post','',0),(32179,0,'2022-04-20 05:45:17','2022-04-20 05:45:17','','IMG_8092','','inherit','open','closed','','img_8092','','','2022-04-20 05:45:17','2022-04-20 05:45:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/04/IMG_8092.jpeg',0,'attachment','image/jpeg',0),(32181,3,'2022-05-19 14:56:08','2022-05-19 14:56:08','<span style=\"font-weight: 400;\">You are a personal trainer, or maybe a pilates teacher, and you wish to be recognised and to stand out from all the other personal trainers and pilates teachers in the area.  </span>\n\n<span style=\"font-weight: 400;\">You have been practising for many years and you feel you have earned the right to be recognised for all of the ‘other’ things you do to protect your clients and provide a service that holds duty of care in high regard and you do that with a high level of professionalism. </span>\n\n<span style=\"font-weight: 400;\">You may have heard about the Chartered Status that CIMSPA launched having gained permission from the Crown and maybe you are wondering what it is all about? Is it worth it? What does it mean? Who is it for? Would clients care? What’s the value?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I thought I would share my Pathway to Chartered status with you to offer insight into what is required, my personal experience and also what the experience might offer you, in my opinion..</span>\n\n&nbsp;\n<h2><b>The Short Version</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having heard about the Chartered status back in 2019 combined with a wonderfully insightful meeting with Nick Sellwood, the Chartered assessor, I felt extremely excited by what I saw as an industry game changer. The reason I felt this way was that it BEGINS to bring our sector\'s professionalism a small step closer to that of our \'regulated\' peers the clinicians (Osteo\'s, physio\'s, chiro\'s). As \'regulated\' practitioners they are legally expected to be registered to practise, for them having \'chartered status\' verifies this and ca be checked, monitored and also has requirements for that status. THIS is how I see the Chartered status we have also been offered the opportunity to achieve. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As soon as I’d heard about it I felt a rush of excitement that FINALLY our industry is on its way towards being </span><i><span style=\"font-weight: 400;\">professionalised</span></i><span style=\"font-weight: 400;\"> &amp; taken seriously - by Her Majesty no less! To be recognised on a parallel of sorts with our allied health care buddies while we support the health &amp; activity sector. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">September 2020 I found myself in the first cohort...and I have to say this was one of the best Continued Professional Development projects I have done in some time...let me explain why...</span>\n<h2></h2>\n<h2><b>Stage 1 </b></h2>\n<h2></h2>\n<h2><b>Are you eligible?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">WOW am I even eligible? Was I? This was literally an application process not simply purchasing a CPD. My imposter syndrome kicked in &amp; so I had a chat with myself about the fact I WANTED this to be tough. I wanted to be taken outside my comfort zone. This was important for the </span><i><span style=\"font-weight: 400;\">recognition </span></i><span style=\"font-weight: 400;\">I felt health &amp; activity practitioners deserved</span><i><span style=\"font-weight: 400;\">.</span></i><span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">I didn\'t want the process to be easy did I, that\'s the point!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In stage 1 the eligibility criteria were relatively simple to understand but it did require </span><i><span style=\"font-weight: 400;\">evidence</span></i><span style=\"font-weight: 400;\"> of experience, </span><i><span style=\"font-weight: 400;\">evidence</span></i><span style=\"font-weight: 400;\"> of the application of up to date good practise, </span><i><span style=\"font-weight: 400;\">evidence</span></i><span style=\"font-weight: 400;\"> of competence &amp; CPD. Sounds simple right? </span>\n\n<span style=\"font-weight: 400;\">Well </span><i><span style=\"font-weight: 400;\">knowing</span></i><span style=\"font-weight: 400;\"> what you have done &amp; providing </span><i><span style=\"font-weight: 400;\">evidence</span></i><span style=\"font-weight: 400;\"> of it are two very different things, I discovered! There were 3 routes to apply based upon what </span><i><span style=\"font-weight: 400;\">evidence</span></i><span style=\"font-weight: 400;\"> you have of your level of education &amp; experience combined. This could include all sorts of examples.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I dug out my old CV &amp; certificates folder to see what I actually had as my evidence for the things required to fulfill the criteria. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I have always much preferred practical sessions &amp; discussions rather than reading text or doing written work. This has resulted in a huge amount of my ‘academic’ understanding &amp; learning being done through professional discussions with clinically trained colleagues, who were very patient with me! In my own time I did read &amp; research but at my own pace as I managed to find ways to learn that suited my style &amp; pace of learning. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How could I prove everything that my clinical colleagues have taught me or what I have read…I wondered?</span>\n\n&nbsp;\n<h2><b>The Plea</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Nick Sellwood asked for me to write a ‘plea’ of around 200 words to explain my justification for my application to be recognised as Chartered. Once again this was literally plugging myself &amp; felt like I was ‘selling myself’ for an interview!</span>\n\n<span style=\"font-weight: 400;\">He was fantastically encouraging while explaining the process &amp; what was expected. This encouraged me to think about exactly what I was trying to achieve &amp; so I had begun my self reflection already.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having amassed around 84 documents of evidence, I listed them into an index for referencing due to the volume of information &amp; resources that I felt could be used as evidence of my standards &amp; professional practice. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By coding my index list to the </span><b>Viva Interview Criteria</b><span style=\"font-weight: 400;\"> I could ensure I covered all of them somewhere.</span>\n\n<span style=\"font-weight: 400;\">While I had a lot of resources for evidence I could already see areas I wanted to develop where there was less evidence or even gaps. CPD topics were clear to me before anyone had even assessed me purely based upon my own work into providing evidence to match the criteria. The criteria really made me think!</span>\n\n&nbsp;\n<h2><b>Stage 2 </b></h2>\n<h2></h2>\n<h2><b>The Viva Interview </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having been sent the questions in advance I was able to prepare. It was also another opportunity to submit further evidence I might want to refer to as part of my responses to any questions I may be asked. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There were 10 main criteria questions &amp; each once had between 4-10 smaller criteria. Somethings were easy to cross reference &amp; others I felt I would need to explain - like my professional discussions over 16 years with clinically trained colleagues. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My Viva Assessor &amp; I communicated via email prior to the interview &amp; she really was reassuring about everything. So much so I found myself actually really looking forward to the Viva interview! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This interview, I was told, could be up to 3 hrs &amp; while there are the criteria questions, the assessor may ask additional questions to offer an opportunity to explain in more detail how certain areas may have been reached, practised, delivered etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">During the interview I was offered regular breaks &amp; weirdly I enjoyed this exploration of my career as I was realising just how much I HAD done rather than feeling that sense of imposter syndrome from feelings lacking in my skills &amp; training. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This was an opportunity to self reflect &amp; deepen my understanding of the level of professionalism &amp; duty of care I could demonstrate along with the resources I had created &amp; the pathway a client may take through my involvement with them. This allowed me to be exposed to know what I needed to do to improve my practice.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The interview is transcribed within 72hrs &amp; I even had the opportunity to review &amp; amend once more at this point. </span>\n\n&nbsp;\n<h2><b>Stage 3 </b></h2>\n<h2></h2>\n<h2><b>Assessment &amp; Internal/External Verification </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Within a couple of weeks I had my result!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I had scored 159/195 points….could I have achieved higher? Possibly but I didn\'t need to, however it gave me all I needed to plan my future CPD’s!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I am now </span><b><i>A Chartered Health &amp; Activity Practitioner</i></b><span style=\"font-weight: 400;\">!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WOW it felt, &amp; still feels, great! </span>\n\n<span style=\"font-weight: 400;\">Do I recommend it? 100% YES!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What does this actually mean?</span>\n\n&nbsp;\n<h2><b>What is the point of Chartered Status?</b></h2>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Status! Clients never ask to see certificates of evidence but by promoting the fact I have it, they see the stamp as that of quality, comparable in the sense of any other Chartered professional. I can tell them I am Chartered &amp; most people would know that means something above the ordinary. </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Employability - in a list of candidates guess who would be noticed when applying for a position?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Our industry starts to gain recognition as more &amp; more of us become Chartered.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">I am held accountable by my agreement to uphold a high level of professional practice.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">My marketing can now include my status!</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Will you be able to provide the required evidence? </span>\n\n<span style=\"font-weight: 400;\">Well that is the challenge….my evidence goes back to 1997…...but that\'s <strong>The Long Version!</strong></span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">So what do you need to achieve Chartered status?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Qualifications </span>\n\n<span style=\"font-weight: 400;\">Relevant consistent CPD</span>\n\n<span style=\"font-weight: 400;\">Safety systems</span>\n\n<span style=\"font-weight: 400;\">Good practice protocols </span>\n\n<span style=\"font-weight: 400;\">Evidence of client success </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But also</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Passion for what you do</span>\n\n<span style=\"font-weight: 400;\">A desire to improve our industry</span>\n\n<span style=\"font-weight: 400;\">A desire to change the image we have</span>\n\n<span style=\"font-weight: 400;\">An open mind to critique </span>\n\n<span style=\"font-weight: 400;\">A desire to stand out </span>\n\n&nbsp;\n\nAre you Chartered yet?\n\nWould you like to be?\n\nWhat evidence do you have?\n\n&nbsp;\n\n<hr />\n\n<h2><span style=\"font-weight: 400;\">Would you like help to become Chartered? </span></h2>\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-32483 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/05/Screenshot-2022-05-19-at-15.55.07-300x257.png\" alt=\"\" width=\"300\" height=\"257\" />Becoming a Biomechanics Coach will equip you with more confidence to apply so w</span><span style=\"font-weight: 400;\">hy not get in touch to find out more?</span>\n<h2>info@biomechanicseducation.com</h2>','A Pathway to Chartered Status..','','draft','closed','closed','','a-pathway-to-chartered-status','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',0,'https://www.biomechanicseducation.com/?p=32181',0,'post','',0),(32182,0,'2022-04-20 05:54:16','2022-04-20 05:54:16','','Screenshot 2022-04-20 at 06.54.03','','inherit','open','closed','','screenshot-2022-04-20-at-06-54-03','','','2022-04-20 05:54:16','2022-04-20 05:54:16','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/04/Screenshot-2022-04-20-at-06.54.03.png',0,'attachment','image/png',0),(32475,0,'2022-05-19 10:55:58','2022-05-19 10:55:58','','CIRCLE OF CONTROL','','inherit','open','closed','','circle-of-control','','','2022-05-19 10:55:58','2022-05-19 10:55:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/CIRCLE-OF-CONTROL-.png',0,'attachment','image/png',0),(32483,0,'2022-05-19 14:55:22','2022-05-19 14:55:22','','Screenshot 2022-05-19 at 15.55.07','','inherit','open','closed','','screenshot-2022-05-19-at-15-55-07','','','2022-05-19 14:55:22','2022-05-19 14:55:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/Screenshot-2022-05-19-at-15.55.07.png',0,'attachment','image/png',0),(32556,0,'2022-05-25 15:28:35','2022-05-25 15:28:35','','Biomechanics coach workshop','','inherit','open','closed','','img_1591-1','','','2025-02-04 12:13:53','2025-02-04 12:13:53','',42171,'https://biomechanicseducation.com/wp-content/uploads/2022/05/IMG_1591-1-scaled-1.jpg',0,'attachment','image/jpeg',0),(32557,0,'2022-05-25 15:34:46','2022-05-25 15:34:46','','IMG_1595 (1)','','inherit','open','closed','','img_1595-1','','','2022-05-25 15:34:46','2022-05-25 15:34:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/IMG_1595-1.jpg',0,'attachment','image/jpeg',0),(32558,0,'2022-05-25 15:35:51','2022-05-25 15:35:51','','IMG_1597 (1)','','inherit','open','closed','','img_1597-1','','','2022-05-25 15:35:51','2022-05-25 15:35:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/IMG_1597-1.jpg',0,'attachment','image/jpeg',0),(32559,0,'2022-05-25 15:38:22','2022-05-25 15:38:22','','IMG_1597 (1) 2','','inherit','open','closed','','img_1597-1-2','','','2022-05-25 15:38:22','2022-05-25 15:38:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/IMG_1597-1-2.jpg',0,'attachment','image/jpeg',0),(32560,0,'2022-05-25 15:44:15','2022-05-25 15:44:15','','fullsizeoutput_54c2 (1)','','inherit','open','closed','','fullsizeoutput_54c2-1','','','2022-05-25 15:44:15','2022-05-25 15:44:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/fullsizeoutput_54c2-1-scaled-1.jpeg',0,'attachment','image/jpeg',0),(32561,0,'2022-05-25 15:48:25','2022-05-25 15:48:25','','fullsizeoutput_54c2 (1)','','inherit','open','closed','','fullsizeoutput_54c2-1-2','','','2022-05-25 15:48:25','2022-05-25 15:48:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/fullsizeoutput_54c2-1-1-scaled-1.jpeg',0,'attachment','image/jpeg',0),(32922,0,'2022-06-30 07:25:40','2022-06-30 07:25:40','','Screenshot 2022-06-30 at 08.14.26','','inherit','open','closed','','screenshot-2022-06-30-at-08-14-26','','','2022-06-30 07:25:40','2022-06-30 07:25:40','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Screenshot-2022-06-30-at-08.14.26.png',0,'attachment','image/png',0),(32973,0,'2022-07-05 13:31:02','2022-07-05 13:31:02','','Event links man 2021','','inherit','open','closed','','event-links-man-2021','','','2022-07-05 13:31:02','2022-07-05 13:31:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/07/Event-links-man-2021.pdf',0,'attachment','application/pdf',0),(33064,3,'2022-07-14 13:36:57','2022-07-14 13:36:57','<h2>Introduction:</h2>\r\nBiomechanics, essentially the application of mechanics to biology, plays a pivotal role in understanding how the body responds to forces and displacements. It encompasses both extrinsic and intrinsic biomechanics, each serving distinct purposes in the realm of human movement and performance.\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-30503 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/IMG_2288-300x300.jpg\" alt=\"\" width=\"356\" height=\"356\" />\r\n<h3>Extrinsic Biomechanics:</h3>\r\nExtrinsic biomechanics focuses on analysing movements and tasks to determine the most efficient ways to perform them. It is integral to sports, health, fitness, and work-related physical conditioning. Understanding fundamental mechanical principles like levers and equilibrium is crucial before delving into more complex functional movements.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2><span style=\"font-weight: 400;\"><img class=\" wp-image-27751 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1311339359-1-300x222.jpg\" alt=\"\" width=\"350\" height=\"259\" />\r\n</span></h2>\r\n<h3>Intrinsic Biomechanics:</h3>\r\nIntrinsic biomechanics delves into how the body mechanically functions during movement or tasks. It significantly influences how the body compensates during functional activities, and understanding intrinsic biomechanics is essential for identifying and addressing movement faults and minimizing injury risks.\r\n<h3>Applications of Biomechanics:</h3>\r\nBiomechanics finds extensive application in elite sports, where analyzing extrinsic biomechanics can reveal performance inefficiencies like energy leaks or suboptimal power production. However, intrinsic biomechanics provides a deeper understanding, pinpointing specific areas or structures contributing to faulty performance.\r\n<h3>Benefits of Biomechanics:</h3>\r\nBiomechanics offers numerous benefits, including evidence-based assessments, performance feedback, injury risk identification, and tailored exercise prescription. It deepens our understanding of movement and enables bespoke programming to optimize performance and minimize injury risks.\r\n<h3>Elements of Biomechanics:</h3>\r\nUnderstanding elements like equilibrium, levers, and turning forces is crucial in biomechanics. Equilibrium pertains to body balance, while levers and turning forces elucidate how forces interact within the body during movement.\r\n<h4>Equilibrium</h4>\r\nEquilibrium is often divided into 2 sections:\r\n<ol>\r\n 	<li>Static; which is concerned with the body in balance</li>\r\n 	<li>Dynamic; which is concerned with the body in a range of motion.</li>\r\n</ol>\r\n<h3>Levers</h3>\r\nA lever is a simple machine that enables work to be done more easily and/or more quickly by applying forces. A lever consists of a straight bar with 3 points:\r\n\r\nPoint 1. Where there is a fixed fulcrum\r\n\r\nPoint 2. Where there is a resistance or weight acting upon the lever\r\n\r\nPoint 3. Where the force or power is applied to the lever.\r\n\r\nThis can be applied to the body when considering the bones as the lever, the joint as a fulcrum or pivot point and the muscles contracting to produce the force.\r\n<h3>Careers in Biomechanics:</h3>\r\nThe field of biomechanics offers diverse career opportunities, ranging from biomechanics coaching and training to research and engineering. Various qualifications, from university degrees to specialized diplomas and workshops, cater to different interests and educational backgrounds.\r\n<h3>Conclusion:</h3>\r\nBiomechanics serves as a scientific foundation for understanding human movement, enhancing sports performance, and minimizing injury risks. Its evidence-based approach and multidisciplinary applications make it indispensable in various fields, from sports science to healthcare and beyond.\r\n\r\n&nbsp;\r\n<h2><span style=\"font-weight: 400;\"> </span></h2>\r\n&nbsp;\r\n<h1></h1>','What is biomechanics?','','publish','closed','closed','','what-is-biomechanics-biomechanics-education','','','2025-01-20 16:01:07','2025-01-20 16:01:07','',0,'https://www.biomechanicseducation.com/?p=33064',0,'post','',2),(33066,3,'2022-07-19 14:11:37','2022-07-19 14:11:37','<img class=\"size-medium wp-image-1338 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/10/Biomechanics-Coach-CMYK-300dpi-300x100.jpg\" alt=\"\" width=\"300\" height=\"100\" />\r\n\r\n&nbsp;\r\n<h3>Introduction:</h3>\r\n<span data-contrast=\"auto\">In the dynamic realm of functional movement, our bodies ingeniously adapt to compensate for inherent biomechanical imperfections. Rather than passively accommodating these adaptations, a Biomechanics Coach aims to address the root causes, thereby reducing injury risks and optimising performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"366\" height=\"244\" />\r\n<h3>Philosophy:</h3>\r\n<span data-contrast=\"auto\">At the heart of our philosophy lies a commitment to challenging conventional training paradigms. We integrate new methodologies like functional training while refining existing practices. By continually evolving, we ensure clients receive comprehensive, effective, and personalised guidance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Understanding Intrinsic Biomechanics:</h3>\r\n<span data-contrast=\"auto\">Unlike traditional models, our program empowers coaches to evaluate clients\' intrinsic biomechanics. Armed with this knowledge, coaches can tailor interventions that address specific movement patterns and mitigate injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-24100 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/09/DSC01482-300x200.jpg\" alt=\"\" width=\"384\" height=\"256\" />\r\n<h3>Challenges in Coaching Movement:</h3>\r\n<span data-contrast=\"auto\">Distinguishing between poor technique and issues rooted in biomechanics poses a central challenge. Sedentary lifestyles, for instance, can lead to subtle pelvic misalignments, disrupting optimal movement patterns. Incorporating intrinsic biomechanics screening enables coaches to design effective interventions.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>The Role of a Biomechanics Coach:</h3>\r\n<span data-contrast=\"auto\">Operating at the nexus of evidence-based practice and practical application, Biomechanics Coaches employ systematic screening and prehabilitation programs to optimise performance and minimise injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-33153 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.06.11-300x287.png\" alt=\"\" width=\"419\" height=\"401\" />\r\n<h3>The 3-Phase System:</h3>\r\n<b><span data-contrast=\"auto\">Preparation &amp; Capacity: </span></b><span data-contrast=\"auto\">This phase focuses on restoring functional capacity around key areas like the pelvis, spine, and shoulders. Through targeted exercises, coaches address imbalances and enhance mobility.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Stability &amp; Control: </span></b><span data-contrast=\"auto\">Building upon the foundation established in the preparation phase, this stage emphasizes core stability and neuromuscular control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Function &amp; Performance: </span></b><span data-contrast=\"auto\">Coaches shift focus to optimizing functional performance. Through targeted protocols, clients excel in their activities while minimizing injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"size-medium wp-image-33154 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.07.28-300x213.png\" alt=\"\" width=\"300\" height=\"213\" />\r\n<h3>Asking the Right Questions:</h3>\r\n<b><span data-contrast=\"auto\">Questions like:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">How do I select the most suitable exercises for my clients?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Besides increasing reps and sets, how do I progress exercise programmes?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Why choose one exercise over another with similar effects?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">When should I incorporate gym balls or machines into training? These queries highlight the importance of understanding intrinsic biomechanics for effective exercise prescription.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3>Qualifications and Finding a Biomechanics Coach:</h3>\r\n<span data-contrast=\"auto\">Entry into the Diploma in Biomechanics Coaching requires solid anatomy and physiology knowledge. Biomechanics Coaches, equipped with expertise, can be located using the Biomechanics Coach map locator <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Why People Seek Biomechanics Coaching:</h3>\r\n<span data-contrast=\"auto\">Clients seek Biomechanics Coaching for performance optimisation and injury prevention. By addressing underlying issues, coaches help clients achieve their goals safely and effectively.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-30683 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/DSC03820-300x200.jpg\" alt=\"\" width=\"353\" height=\"235\" />\r\n<h3>Conclusion:</h3>\r\n<span data-contrast=\"auto\">The Diploma in Biomechanics Coaching offers a transformative opportunity for coaches seeking to elevate their practice. Rooted in evidence-based principles, our program equips coaches to make a meaningful impact on their clients\' lives.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Ready to Embrace Biomechanics Coaching?</h3>\r\n<span data-contrast=\"auto\">Reach out to us to explore the possibilities and embark on a journey of discovery and transformation. Together, we can unlock the full potential of human movement and performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-30682 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52ea-300x200.jpeg\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<h1></h1>\r\n<h1>Would you like to discuss becoming a Biomechanics Coach?</h1>\r\nContact us <a href=\"mailto:info@biomechanicseducation\">here</a>\r\n\r\n<img class=\" wp-image-28329 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"464\" height=\"309\" />','What is a Biomechanics Coach?','','publish','closed','closed','','what-is-a-biomechanics-coach','','','2025-01-20 16:01:07','2025-01-20 16:01:07','',0,'https://www.biomechanicseducation.com/?p=33066',0,'post','',0),(33426,3,'2022-08-22 12:21:37','2022-08-22 12:21:37','&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b><i>Principle;</i></b><span style=\"font-weight: 400;\"> meaning </span><span style=\"font-weight: 400;\">\n</span><span style=\"font-weight: 400;\">a fundamental truth or proposition that serves as the foundation for a system of belief or behaviour or for a chain of reasoning.</span></li>\n</ol>\n&nbsp;\n<h2><strong>Introduction </strong></h2>\n<span style=\"font-weight: 400;\">The discussion within this </span><i><span style=\"font-weight: 400;\">Juicemail</span></i><span style=\"font-weight: 400;\"> is to better understand the importance of ‘intrinsic’ biomechanical principles and how they apply to the human body, human motion, movement, recurring injuries, symptoms and modern ailments. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As practitioners of human movement, whether from a personal training, therapy or any other </span><i><span style=\"font-weight: 400;\">unregulated</span></i><span style=\"font-weight: 400;\"> background, we are often lacking in the kind of MSK (musculoskeletal) skills training that our regulated peers (clinicians, allied healthcare professionals, GP’s, physiotherapists, osteopaths etc) are heavily trained in. Yet we are often expected to know about them by our clients, and some employers. In my opinion we should be given compulsory education in some MSK skills for assessing clients during consultations to benchmark and better understand our start point. However until this happens I will remain committed to offering them within our training programmes as an option for exceptionally great CPD’s, reputedly some of the best CPD’s in the industry!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is why the intrinsic biomechanics principles are so revolutionary because the concept has never been offered before. We developed this education programme specifically for unregulated practitioners, but also as a great tool for regulated clinicians, for all the reasons we will describe here.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The forward thinking that began over 30 year ago when we began our research is finally in demand. This is likely due to the recent health crisis and the recognition of how much movement practitioners can help, yet we have always been ill equipped. The principles of understanding intrinsic biomechanics really does offer a depth of understanding human anatomy and the application of movement programming through the use of evidence based assessment and intervention. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The modern ailments that most of our clients complain of today require these skills to identify any biomechanical root causes of their symptoms. Our peers who evaluate them from a clinical perspective can often find no apparent </span><i><span style=\"font-weight: 400;\">clinical diagnosis</span></i><span style=\"font-weight: 400;\"> for their symptoms, thus resulting in disappointment in the ‘failure’ of the clinician. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However ‘biomechanically’ there are, more often than not, lifestyle movement limitations that can be identified through the intrinsic biomechanical principles that demonstrate, and overtime prove, the root cause can in fact be coming from asymptomatic (non painful) areas of their body. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A Biomechanics Coach is trained to work as part of a multidisciplinary team. They would be able to explain to their client that the clinician does not necessarily ‘fail’ but instead, through their ‘lack of a diagnosis’ OR the symptoms recurring, can confirm they are NOT clinical and are therefore the Biomechanics Coach is perfectly placed to offer a simple movement intervention like iMoveFreely.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How great is that! Shall we dive in?</span>\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Principles of intrinsic biomechanics</span></h1>\n&nbsp;\n\n&nbsp;\n\n<img class=\" wp-image-33427 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/IMAGE-1-300x170.png\" alt=\"\" width=\"400\" height=\"227\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Those of us who prescribe exercise need to understand biomechanics (both intrinsic and extrinsic), anatomy and physiology; but perhaps the least understood is the intrinsic biomechanical principles. Unfortunately without this critical area of study, movement cannot be truly understood - and if we do not understand movement, we cannot understand exercise and physical activity.</span>\n\n&nbsp;\n<h3><b>Principle one - Biomechanical assessment (or assessing movement)</b></h3>\n&nbsp;\n<h3><i><span style=\"font-weight: 400;\">Definition - An understanding of what ‘good’ movement is. </span></i></h3>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Why is this important? </span></h2>\n<span style=\"font-weight: 400;\">Having the ability to identify the quality of movement in each body part and subsystem is vital in being able to record links (kinetic chains) of influence. Unless we are assessing every joint and structure within our client’s body we might miss the root cause of their symptoms or movement problem. However everybody’s body is different and has a huge range of variables that affect their movement. This makes ‘measuring’ by comparison a challenge. This is why gaining a good understanding of anatomy and the ‘norms’ of joint ranges, of nerve mobility and of muscle flexibility is key to then learning how much leeway is acceptable through practising on as many bodies as possible.  </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How is the principle recognised? </span></h2>\n<span style=\"font-weight: 400;\">An example of this could be demonstrated in a rotational motion / movement test of the thoracic spine. By limiting movement from all other joints (i.e. the client is seated to limit pelvic motion, shoulder position is fixed to limit scapular motion) we can then ‘measure’ degrees of rotation in either direction. The norms of each thoracic joint range added together &amp; measured in studies demonstrate an expected total range of at least 45 degrees to the right, purely from the thoracic spine, and the same to the left. </span>\n\n<span style=\"font-weight: 400;\">Once we have measured the number of degrees in our client we can then compare, not only the symmetry of the individual\'s rotation motion right to left, but also to the capacity that is evident compared to the ‘normal’ joint ranges of thoracic vertebrae. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\" wp-image-33428 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/IMAGE-2-300x168.png\" alt=\"\" width=\"432\" height=\"242\" />\n<h2></h2>\n<h3></h3>\n<h3><b>Principle two - Analysis of results (of biomechanical assessment)</b></h3>\n&nbsp;\n<h3><span style=\"font-weight: 400;\"><em>Definition -</em> <em>The interpretation of those measurements</em> </span></h3>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Why is this important?</span></h2>\n<span style=\"font-weight: 400;\">Once the measurements have been taken, they need to be analysed and evaluated to allow for decision making. The system we have developed is to work through the body part by part, subsystem by subsystem in the safest, most evidence based and logical route possible. This highlights which body part or subsystem has an influence on another for true identification of the root causes of both movement issues and symptoms that may challenge our clinical peers. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By using the evidence provided from the many years of research we can simply follow the ‘system’ for both accuracy and safety in application of an exercise /movement intervention. Providing us with a base of support in the application for the principles of intrinsic biomechanics.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How is the principle recognised?</span></h2>\n<span style=\"font-weight: 400;\">This principle can be recognised through the use of the resource known as the Links Man. A Biomechanics Coach is trained in how to present their findings by colouring the relevant boxes on the Links Man during their screening process. Then they will start by prescribing an intervention for the pelvic area since there is evidence to suggest 60% of dysfunction comes from the pelvis. (McDonald.R, 1991). By only prescribing an intervention for this area, irrelevant of the full results of the screen, we can re-screen the client immediately to see ‘what has changed’ after only performing a pelvic muscle energy technique for example.  </span>\n\n<span style=\"font-weight: 400;\">When the Biomechanics Coach is not only able to see but also show their client what has changed on their Links Man - commonly the thoracic spine will now rotate further, the shoulders will be able to retract more easily and the nerves can present with more mobility - this proves this key principle of screening, intervention and rescreening to prove the analysis rather than guess what works.</span>\n\n&nbsp;\n\n<img class=\" wp-image-33435 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/Screenshot-2022-08-19-at-09.10.32-222x300.png\" alt=\"\" width=\"276\" height=\"373\" />\n<h2></h2>\n<h2></h2>\n<h3><b>Principle three - </b><span style=\"font-weight: 400;\">Preparation &amp; Capacity </span></h3>\n&nbsp;\n<h3><em><span style=\"font-weight: 400;\">Definition - The initial phase of programming is to restore our clients capacity within the pelvis, spine and shoulder so they are level and moving freely for that individual.</span></em></h3>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Why is this important?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Due to the modern ailments of our lifestyles today the evidence suggests that the body requires preparation for movement in advance of a strength programme. This </span><i><span style=\"font-weight: 400;\">reprogramming </span></i><span style=\"font-weight: 400;\">of the subsystems gives back capacity where compensations have occured. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This phase also allows the body to move more freely and with less pain while increasing confidence in movement for our client. Through repeated assessments it is possible to rule out, or confirm, each intervention\'s influence.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By following a proven evidence based system we can have a good baseline for initiating a training programme to prepare our clients body safely using low grade interventions. By giving their intrinsic biomechanics the ‘capacity’ for movement we can then reassess to identify which intervention influences which body part and substructure. </span>\n\n<span style=\"font-weight: 400;\">This also increases tissue tolerance and client confidence, particularly if they are experiencing recurrent injuries, symptoms or poor movement and control. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How is the principle recognised?</span></h2>\n<span style=\"font-weight: 400;\">Preparation and capacity are recognised once the Biomechanics Coach sees enough improvement in the pelvic, spine and shoulde area and they will know how to decide when to move their client on to the next phase. </span>\n\n&nbsp;\n\n<img class=\" wp-image-33436 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/Screenshot-2022-08-19-at-09.11.55-300x215.png\" alt=\"\" width=\"374\" height=\"268\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This documentation of which intervention changes various parts of the integrated system shows the elimination of compensations proving the body is improving from the inside. It even offers great insight into what might make our client feel worse should the results degraded. An example of this might be a more positive (failed) screen when they have sore muscles from training, or their hormones change or even simply a day of gardening or a bad nights sleep.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<img class=\" wp-image-33431 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/IMAGE-5-300x168.png\" alt=\"\" width=\"389\" height=\"218\" />\n\n&nbsp;\n\n&nbsp;\n<h3><b>Principle four</b><b> - </b><span style=\"font-weight: 400;\">Stability &amp; Control</span></h3>\n<h3></h3>\n<h3><em><span style=\"font-weight: 400;\">Definition -  The purpose of this principle is to give the spine its ability to stabilise and control the torso during daily movement only once the alignment and movement quality has been improved. </span></em></h3>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Why is this important?</span></h2>\n<span style=\"font-weight: 400;\">This safe method of ‘core training’ reduces risk through a 3 step approach to periodising the trunk conditioning programme thus creating a reflex stiffening of the spine that is conditioned and appropriate to the requirement, at the right time and for as long as is required. </span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Basic core progressions - here we teach the simplest neuromuscular progressions right up to the level of an elite athletes requirement.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Isometric core ratios - based on McGills research, this step is all about evaluating and improving the strength ratios of each part of the core/ trunk.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Functional stability - step 3 is having the ability to assess and improve our clients stablity and control while moving. </span></li>\n</ol>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How is the principle recognised?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This principle is recognised by allowing time for evaluation and rescreening to identify trunk stiffness and tolerance. This is done through taking the client through each test and exercise progression step by step to know when they are ready to progress onto the nest step.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\" wp-image-33432 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/IMAGE-6-300x169.png\" alt=\"\" width=\"367\" height=\"207\" />\n<h2></h2>\n<h3></h3>\n<h3><b>Principle five</b><b> - </b><span style=\"font-weight: 400;\">Function &amp; Performance</span><span style=\"font-weight: 400;\"> </span></h3>\n&nbsp;\n<h3><em><span style=\"font-weight: 400;\">Definition -  This principle is the strengthening and reinforcement of the previous 2 principles to improve function and performance in any individual </span></em></h3>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Why is this important?</span></h2>\n<span style=\"font-weight: 400;\">This is important because the ability to perform a task safely and optimally can only really be done safely once principles 3 and 4 have been achieved. </span><span style=\"font-weight: 400;\">Development of the trunk\'s ability to stiffen while the limbs are being used is what gives us stability and control.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How is the principle recognised?</span></h2>\n<span style=\"font-weight: 400;\">This principles can be recognised by the specificity of the movements chosen by the practitioner based on their understanding of their clients needs/goals and the physical and psychological assessment of their client.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\" wp-image-33433 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/IMAGE-7-300x168.png\" alt=\"\" width=\"382\" height=\"214\" />\n\n&nbsp;\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Why are principles of intrinsic biomechanics important?</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hopefully the definitions given here have explained the importance of the intrinsic biomechanical principles, particularly in their application. </span>\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Conclusion</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Due to our current lifestyles we are seeing modern ailments becoming normalised. Symptoms caused by these modern ailments are blamed on clinical problems however the body is a master of compensation through its integrated system. Therefore if the body begins to hurt insidiously without any actual trauma occurring it is common for this to be a biomechanical cause that gives off an alarm bell or message to the individual to change something!</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Given the level of objectivity that can be achieved through these rigorous MSK assessments (and reassessment) it is alarming that these principles are not commonly utilised by unregulated practitioners working with clients.</span>\n\n<span style=\"font-weight: 400;\">So hopefully this particular blog has given you an understanding of the importance of intrinsic biomechanical principles…</span>\n\n&nbsp;\n\n<hr />\n\n<h1>Would you like to discuss becoming a Biomechanics Coach?</h1>\n<img class=\"size-medium wp-image-28329 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h2><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Why not get in touch HERE</a></h2>\nOR info@biomechanicseducation.com\n\n&nbsp;','Understanding the importance of Intrinsic Biomechanical principles','','draft','closed','closed','','understanding-the-importance-of-intrinsic-biomechanical-principles','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',0,'https://www.biomechanicseducation.com/?p=33426',0,'post','',0),(33779,3,'2022-09-23 13:02:57','2022-09-23 13:02:57','<h1><span style=\"font-weight: 400;\">Introduction </span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Working in the field of biomechanics has historically required extremely high level degree training. Yet the basic principles of intrinsic biomechanics can be simple to learn, and in particular to apply, for a movement practitioner without ever going to university or doing a degree.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The subject matters within the science of human movement (</span><a href=\"https://www.biomechanicseducation.com/what-is-biomechanics/\"><span style=\"font-weight: 400;\">biomechanics</span></a><span style=\"font-weight: 400;\">) means that by definition anyone who works with human bodies would benefit from a deeper understanding of biomechanics and in particular, intrinsic biomechanics. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Jobs could range from becoming a </span><a href=\"https://www.biomechanicseducation.com/what-is-a-biomechanics-coach/\"><span style=\"font-weight: 400;\">Biomechanics Coach</span></a><span style=\"font-weight: 400;\"> to working in athletic performance, becoming a researcher, performing gait analysis, specialising in sports biomechanics or becoming a qualified biomechanist. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Modern equipment &amp; teaching styles can make learning about biomechanics more accessible &amp; fun. There are also many different routes into careers that require biomechanical knowledge &amp; yet the earning potential is quite broad </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Examples of world leaders in biomechanics are:</span></h2>\n<a href=\"https://www.backfitpro.com/books/back-mechanic-the-mcgill-method-to-fix-back-pain/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-33781 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/world-leaders-in-biomechanics--300x126.png\" alt=\"\" width=\"300\" height=\"126\" />Stewart McGill, spine biomechanics expert. </span></a>\n\n<a href=\"https://www.nutritiousmovement.com/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Katy Bowman, biomechanist. </span></a>\n\n<a href=\"https://www.brytespark.com/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Martin Haines, Biomechanics Coach &amp; chartered physio. </span></a>\n\n&nbsp;\n\n&nbsp;\n<h1><img class=\"size-medium wp-image-33783 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_383085961-300x150.jpg\" alt=\"\" width=\"300\" height=\"150\" /></h1>\n<h1></h1>\n<h1><span style=\"font-weight: 400;\">Industries where skills in biomechanics are useful</span></h1>\n<h2><span style=\"font-weight: 400;\">Health &amp; fitness sector </span></h2>\n<span style=\"font-weight: 400;\">Within the health &amp; fitness sector any practitioner who has a good understanding of anatomy &amp; biomechanics will certainly stand out. The impact this skill set has already been having on our sector is that we are closing the gap between us &amp; our clinically trained peers (GP’s,physiotherapists, osteopaths, chiropractors). The reason for this is any exercise practitioner that can fully understand, appreciate and communicate their understanding of intrinsic biomechanics poses a reduced risk along with the specialist skills that can help clients with recurring issues or modern ailments. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-33782 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1846292467-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Biomechanics Coach </span></h3>\n<span style=\"font-weight: 400;\">The health, fitness and exercise sector is showing huge demand for practitioners who are skilled in understanding intrinsic biomechanics. This is the perfect place for personal trainers, pilates &amp; yoga teachers, strength &amp; conditioning coaches to reduce risk and optimise performance for their clients by training in the skills of Biomechanics Coaching for example. The skill set also allows for truly personal programming based on their ability to fully assess every joint and structure within each client.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Biomechanics Coaches typically charge 2-3 x more than personal trainers from the day to day running of their services. They also find they are more trusted &amp; sought out by clinicians due to their specialism in identifying causes of modern ailments. </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Personal trainers</span></h3>\n<span style=\"font-weight: 400;\">While their main role may well remain that of a personal trainer the skills of Biomechanics Coaching will really enhance their ability to assess risk of injury in their clients. They will also better understand how to create bespoke training programmes for improving performance. Alongside these advanced skills they will know how to communicate with clinicians, allied healthcare professionals, how &amp; when to refer tricky or symptomatic clients, while also knowing how to manage their programme if they have been referred back but still experience pain or recurring injuries.</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Pilates &amp; Yoga teachers </span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">During both one to one &amp; group pilates or yoga sessions the skills in understanding intrinsic biomechanics are particularly helpful due to many participants in these classes attending in the Hope of resolving their physical ailments or movement limitations. Should the pilates/yoga teacher have a good understanding of intrinsic biomechanics they will have confidence in which postures or positions are best for an individual. They will also have unique intervention techniques they can deliver &amp; prescribe in any environment. </span>\n\n<span style=\"font-weight: 400;\">£20-30k</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Specialist Sports Coaching Sector </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Within the sports coaching sector it is paramount the coach has a good understanding of biomechanics and in particular intrinsic biomechanics. The reason for this is the 2 priorities for any athletes are optimisation of their performance level along with reduction of risk of injury. </span>\n\n<span style=\"font-weight: 400;\">Sports coaches with a good biomechanical knowledge are certainly the most impactful and in demand coaches for this reason. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sport has become more and more popular for youngsters but also as the alternative for adults who do not enjoy being in the gym environment. The impact of this on sports coaching means gaining clients becomes harder as the competition is stronger. This is why anybody wanting to work as a coach in sport should seriously consider training specifically in intrinsic biomechanics. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-33788 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_496233847-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Strength &amp; Conditioning trainers/ Coaches</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Understanding biomechanical principles are a must have for any strength &amp; conditioning trainer/coach. The ability to better interpret angles and forces during lifts like the snatch, clean &amp; jerk is vital when coaching an athlete into the optimal position for that lift. </span>\n\n<span style=\"font-weight: 400;\">They also require an appreciation of joint biomechanics during the force production of a track athlete propelling themselves forwards when speed &amp; performance training during sprinting or upwards during a high jump for example. </span>\n\n<span style=\"font-weight: 400;\">Being able to evaluate the biomechanics of each individual athlete allows the coach to strengthen them with specificity to their performance level &amp; sport.</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Equine Biomechanics </span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are specific sporting activities where the term ‘biomechanics’ is more commonly used, horse riding is one of them. Historically equine sport has been mainly focused on understanding and improving the horses biomechanics &amp; well being. However recent trends are now encouraging riding instructors to gain skills in human biomechanics to really enhance their service provision. With Biomechanics Coaching skills they have the ability to recognise that a rider could have pelvic dysfunction presenting as a functional leg length discrepancy that can cause the horse to lean or pull in one direction due to the added pressure through one side of the saddle. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rider coaches and equine professionals are recognising the value of becoming a Biomechanics Coach as it teaches them how to assess for an issue like this and also address it with simple exercises.</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Golf Coach</span></h3>\n&nbsp;\n\nOther popular sports that really appreciate the benefit of understanding biomechanics are golf coaches. The swing of a golf club heavily relies on great biomechanical set up in the player. The corkscrew effect requires taking the club back behind the body through thoracic and hip rotation, with shoulders moving around the upper body.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Next the unleashing through the rotation starting in the legs and hips as they drive forwards above the lower limbs, unwinding the spine &amp; allowing the club to ‘swing’ through to whip the ball with enough hand eye coordination to hit the ball perfectly in order to travel hundreds of yards down the fairway &amp; hopefully into a tiny hole in the ground. They clearly must practise for many many hours to gain the quality of force production and precision of biomechanics required for this kind of accuracy.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The biggest challenge in this particular sport is the sporting injuries that can result. The repeated strengthening of asymmetry is really purely for the sport &amp; not great for healthy natural biomechanics. All players will prefer to play in one direction with their swing. The ‘conditioning’ of the spine, hips &amp; shoulders to produce force, motion &amp; synchronicity in just one direction takes its toll over time if not addressed. Overtime they will often report injuries or asymmetries that in day to day life cause problems like back pain, knee pain or neck pain.</span>\n\n<span style=\"font-weight: 400;\">This is where being able to understand the golf player\'s intrinsic biomechanics gives the coach the advantage.</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Running coach</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Running or jogging is one of the most popular sporting activities there is due to its low cost &amp; easy access with a camaraderie that becomes addictive to many keen runners. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, like all sports, running comes with common sporting injuries. So any running coach with a good understanding of lower limb &amp; foot biomechanics will have the edge when seeking optimisation of their runners biomechanical performance &amp; speed performance training.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The biomechanical analysis of running can identify both extrinsic &amp; intrinsic influence. These offer different routes for intervention with a common &amp; controversial debate being the way the foot strikes tye floor.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The evidence for &amp; against forefoot v’s rear foot striking is quite conflicting so a running coach who is trained in intrinsic biomechanics would have the ability to decide which foot strike their runner should use.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having a good understanding of foot &amp; ankle biomechanics also allows running coaches to advise when a podiatrist may be required or offer guidance on footwear. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Clinical research sector </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Within the clinical research world the impact of understanding biomechanics means researchers can use human body science (biomechanics) to prove or disprove certain elements of clinical practice. </span>\n\n<span style=\"font-weight: 400;\">In fact when any practitioner is learning about biomechanics the evidence based models will more often than not be from clinical studies. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The evidence and research behind the intrinsic biomechanics programmes is predominantly from clinical research. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-33790 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_286003427-300x182.jpg\" alt=\"\" width=\"300\" height=\"182\" />\n<h3></h3>\n<h3><span style=\"font-weight: 400;\">Biomechanist</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">To be a Biomechanist individuals would require at the very least a degree level of training in this field. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Katy Bowman is a well known &amp; respected Canadian Biomechanist. Her research into the application of engineering principles applied to human bones (levers) &amp; myofascial (pulleys) systems is documented in her books. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Prosthetists &amp; Orthotists use biomechanical principles in their line of work but may not be a biomechanist. </span>\n\n<span style=\"font-weight: 400;\">(Average £30k)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In fact an understanding of biomechanics is used in application in many ‘body worker’ roles but rarely is the term ‘biomechanics’ used in their professional title. </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Sports physiotherapist</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sports physios who specialise in sports injuries will require a good understanding of biomechanical principles to rehabilitate &amp; reduce risk of their athletes. An understanding of common sporting injuries can really help their specific choices of treatment &amp; exercises.</span>\n\n<span style=\"font-weight: 400;\">(Upwards of £35k)</span>\n\n&nbsp;\n<h3><b>Podiatry</b><span style=\"font-weight: 400;\"> </span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Professionals who analyse gait with the use of expensive video equipment also require a high level of biomechanical knowledge. Podiatrists or foot specialists are experts in the extrinsic analysis of gait, foot biomechanics &amp; the influence of footwear on foot biomechanics. This can also include interventions like orthotics, they may prescribe to improve the gait cycle, force production &amp; dynamic foot biomechanics </span>\n\n<span style=\"font-weight: 400;\">(£25-35k)</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Ergonomist</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This</span> <span style=\"font-weight: 400;\">is safety &amp; efficiency of equipment &amp; transport so a professional in this field would require a strong understanding of human biomechanics in relation to the surroundings.</span>\n\n<span style=\"font-weight: 400;\">(Earning potential £25-75k)</span>\n\n&nbsp;\n<h1><b>Conclusion</b><span style=\"font-weight: 400;\"> </span></h1>\n&nbsp;\n\n<img class=\"size-medium wp-image-33785 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1054776068-300x118.jpg\" alt=\"\" width=\"300\" height=\"118\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Jobs in biomechanics are often assumed to be solely in fields like speed performance training, sports injuries &amp; using modern expensive equipment like video or gait analysis. However as we have discussed here it is clear there are many different routes that can be taken &amp; with huge scope for earning potential.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to learn more about creating a career in intrinsic biomechanics?</span>\n\n<span style=\"font-weight: 400;\">Why not get in touch <a href=\"tel:%EF%BB%BF02038416151\">020 3841 6151</a></span>\n\n&nbsp;','How can you get a job in biomechanics?','','draft','closed','closed','','how-can-you-get-a-job-in-biomechanics','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',0,'https://www.biomechanicseducation.com/?p=33779',0,'post','',0),(34054,3,'2022-10-19 14:31:43','2022-10-19 14:31:43','<strong>Understanding the Difference Between Extrinsic and Intrinsic Biomechanics</strong>\r\n\r\nBiomechanics, the science of movement, is a broad and intricate field. Today, we\'ll explore two critical areas: extrinsic biomechanics and intrinsic biomechanics. We\'ll clarify how they differ, how they influence each other, and why understanding both is essential.\r\n\r\n&nbsp;\r\n\r\n<b>What is extrinsic biomechanics?</b>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-34061 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/10/sven-mieke-optBC2FxCfc-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></span>\r\n\r\nExtrinsic biomechanics focuses on observable movements. It\'s about what we see when someone performs an action, such as a client’s knee buckling inward (knee valgus) during a squat. Basic training might prompt us to correct this by telling the client to \"push their knees out.\" While this can sometimes work, persistent issues may require a deeper analysis through intrinsic biomechanics.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>What is Intrinsic Biomechanics?</strong>\r\n\r\nIntrinsic biomechanics delves into the anatomical substructures—myofascial, skeletal, and neural—behind movements. It seeks to understand why a movement occurs in a particular way. Using the knee valgus example, a practitioner trained in intrinsic biomechanics would evaluate the pelvis, spine, shoulders, knees, and feet. This comprehensive assessment helps identify the root causes of movement issues, which can involve multiple dysfunctions and compensations within the body\'s kinetic chains.\r\n\r\nOnce the problematic body part and substructure are identified, the practitioner can prescribe targeted interventions. They can also re-test immediately after the intervention, providing objective evidence of the cause of the client’s movement limitations.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-33792 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1520541617-300x230.jpg\" alt=\"\" width=\"300\" height=\"230\" /></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Similarities and Differences</strong>\r\n\r\n<em><strong>Similarities:</strong></em>\r\n<ul>\r\n 	<li>Both relate to movement and biomechanics.</li>\r\n 	<li>Both are observed from outside.</li>\r\n 	<li>Both are crucial for understanding movement.</li>\r\n 	<li>Both are key for practitioners involved in movement analysis.</li>\r\n</ul>\r\n<em><strong>Differences:</strong></em>\r\n<ul>\r\n 	<li>Extrinsic Biomechanics: This is the more common approach, focusing on what we see during movements. It often involves equipment like gait analysis or motion monitoring tools. It answers the \"what\" of movement analysis.</li>\r\n 	<li>Intrinsic Biomechanics: This approach is newer and less commonly understood. It stems from over 20 years of research on 4,500 subjects. It requires specialized training and a deep understanding of anatomy. Practitioners assess various body types to create customized programs, answering the \"why\" behind movements.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<b>Importance in understanding the difference - case study example</b>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\" wp-image-34059 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/10/Screenshot-2022-10-19-at-15.15.36-300x167.png\" alt=\"\" width=\"365\" height=\"203\" /></span>\r\n\r\nConsider a runner showing extrinsic over-pronation. Video gait analysis might suggest using orthotics or specific shoes to correct this. However, intrinsic biomechanics can reveal underlying causes such as:\r\n<ul>\r\n 	<li>Functional leg length discrepancy</li>\r\n 	<li>Dysfunctional pelvis</li>\r\n 	<li>Tight lateral spine flexors</li>\r\n 	<li>Overactive shoulder protractors</li>\r\n 	<li>Ligament dominance</li>\r\n 	<li>Tight calves</li>\r\n 	<li>Tight sciatic nerve</li>\r\n 	<li>Loose subtalar or midtarsal joints</li>\r\n 	<li>Low arch height</li>\r\n</ul>\r\nWithout assessing intrinsic biomechanics, these potential causes might be missed, leading to incomplete or ineffective interventions.\r\n\r\n&nbsp;\r\n\r\n<strong>Conclusion</strong>\r\n\r\nExtrinsic biomechanics can be misinterpreted without an understanding of intrinsic biomechanics. Biomechanics Coaches, specialising in intrinsic biomechanics, possess a deeper knowledge of the musculoskeletal system. They can assess clients more thoroughly and design tailored programmes to enhance movement efficiency.\r\n\r\n<strong>Interested in a Career in Biomechanics?</strong>\r\n\r\nIf you\'re passionate about biomechanics, consider becoming a Biomechanics Coach! Contact us at info@biomechanicseducation.com to discuss a career in intrinsic biomechanics and learn how you can make a difference in the science of movement.\r\n\r\n<img class=\"size-medium wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />','What is the difference between extrinsic biomechanics & intrinsic biomechanics?','','publish','closed','closed','','what-is-the-difference-between-extrinsic-biomechanics-intrinsic-biomechanics','','','2025-01-20 16:01:07','2025-01-20 16:01:07','',0,'https://www.biomechanicseducation.com/?p=34054',0,'post','',0),(34519,3,'2022-12-10 22:12:46','2022-12-10 22:12:46','<h2>Introduction</h2>\r\nIf you search for \"biomechanics,\" you\'ll mostly find information related to sports and performance. However, understanding biomechanics—both extrinsically and intrinsically—can significantly enhance the overall health and wellbeing of clients for movement/exercise coaches and trainers.\r\n<h3>What is Health and Wellbeing?</h3>\r\nAccording to the World Health Organization, \"Health is a state of complete physical, mental, and social well-being, not merely the absence of disease or infirmity.\"\r\n\r\nHealth and wellbeing often involve maintaining happiness, being free from symptoms, and feeling robust and purposeful. While this blog focuses on the physical aspect of biomechanics, it also explores how biomechanics can influence mindset and psychology.\r\n<h3>The Basics of Biomechanics</h3>\r\nIn simple terms, three key subsystems enable us to move freely and with less pain:\r\n<ul>\r\n 	<li>Skeletal System: Provides the framework for the myofascial system.</li>\r\n 	<li>Myofascial System: Acts as levers and pulleys for movement.</li>\r\n 	<li>Nervous System: Functions like the body\'s software, sending messages to the myofascial system about how much effort to apply across joints.</li>\r\n</ul>\r\nNote: The biotensegrity model (Prof. Steve Levit) suggests that the human body is more sophisticated than a machine, though a simplified biomechanical model is useful for understanding and applying human movement.\r\n<h3>Biomechanics and Movement Patterns</h3>\r\nKarel Lewitt, the \"<em>father of manual medicine</em>,\" proposed that we are born with genetic movement codes and develop conditioned movement codes as we grow. While repeating certain movements can enhance performance and coordination, over time, these compensatory factors can negatively impact our subsystems. For instance, a sedentary lifestyle can lead to tissue adaptation and asymmetries, affecting overall movement and health.\r\n<h4>Case Studies</h4>\r\n<strong>Example 1: Older Adults</strong>\r\n\r\nFor older adults (60+), maintaining joint mobility is crucial for balance and independence. The iMoveFreely program focuses on low-range joint mobility and low-level muscle energy techniques, making it a safe and effective prehabilitation program for this demographic.\r\n<h5><strong>Example 2: Individuals with Chronic Conditions</strong></h5>\r\nMovement offers protection and health benefits, especially for those with long-term conditions like diabetes, obesity, and arthritis. Understanding how these conditions impact movement can help practitioners design effective programs, such as the iMoveFreely program, which can be done at home and doesn\'t require specific equipment.\r\n\r\nQualified practitioners who understand intrinsic biomechanics and behavior change can provide valuable support in managing these conditions through movement and exercise.\r\n<h5><strong>Example 3: Athletes</strong></h5>\r\nExtrinsic biomechanics often focuses on improving sports performance through video analysis and data interpretation. However, understanding intrinsic biomechanics is essential for optimizing performance without compromising the athlete\'s natural genetic makeup. For instance, correcting movements to appear more aesthetically pleasing may not align with the athlete\'s intrinsic biomechanics and could cause problems.\r\n<h3 style=\"text-align: center;\">Conclusion</h3>\r\n<p style=\"text-align: center;\">Understanding intrinsic biomechanics benefits every client demographic, enhancing health and wellbeing across various sectors. This knowledge fills the gap between health and fitness, wellness and clinical practice, and exercise and medication.</p>\r\n<p style=\"text-align: center;\">Investing in our Diploma in Biomechanics Coaching can kickstart your career journey, supported by a community of practitioners dedicated to improving client outcomes. Contact us to learn more and reserve your place in our popular program.</p>\r\n<p style=\"text-align: center;\"><strong>Contact Us:</strong></p>\r\n<p style=\"text-align: center;\">Email:<em> rachel@biomechanicseducation.com</em></p>\r\n<p style=\"text-align: center;\">Phone: <em>020 3841 6151</em></p>\r\n<p style=\"text-align: center;\">Start your journey today and transform your approach to health and wellbeing!</p>','How Understanding Intrinsic Biomechanics Improves Overall Health and Wellbeing','','publish','closed','closed','','how-does-understanding-intrinsic-biomechanics-improve-overall-health-wellbeing','','','2025-01-20 16:01:07','2025-01-20 16:01:07','',0,'https://www.biomechanicseducation.com/?p=34519',0,'post','',0),(34558,0,'2022-12-10 22:11:08','2022-12-10 22:11:08','','IMG_1564','','inherit','open','closed','','img_1564-2','','','2024-07-16 15:42:08','2024-07-16 15:42:08','',37375,'https://biomechanicseducation.com/wp-content/uploads/2022/12/IMG_1564-scaled-1.jpg',0,'attachment','image/jpeg',0),(35126,3,'2023-02-07 20:29:07','2023-02-07 20:29:07','<h2>Introduction</h2>\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35138 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07008-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\nA biomechanical assessment evaluates how your body moves, both internally and externally. This comprehensive approach helps identify any dysfunctions or imbalances that could be affecting your performance or causing pain. There are two main types of biomechanical assessments:\r\n<ol>\r\n 	<li>Biomechanical Analysis Using Equipment</li>\r\n 	<li>Equipment-Free Biomechanical Assessment</li>\r\n</ol>\r\n&nbsp;\r\n<h3>Biomechanical Analysis Using Equipment</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35136 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.19.48-256x300.png\" alt=\"\" width=\"256\" height=\"300\" />\r\n\r\n&nbsp;\r\n<h3>Examples:</h3>\r\n<ul>\r\n 	<li><strong>Gait Analysis</strong>: Evaluates walking and running mechanics.</li>\r\n 	<li><strong>Bike Fitting</strong>: Adjusts bicycle components to fit the rider’s body.</li>\r\n 	<li><strong>Underwater Video Analysis</strong>: Observes a swimmer’s technique to identify areas for improvement.</li>\r\n</ul>\r\n<strong>Equipment-Free Biomechanical Assessment</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35139 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07295-181x300.jpg\" alt=\"\" width=\"181\" height=\"300\" />\r\n\r\n&nbsp;\r\n<h3>Examples:</h3>\r\n<ul>\r\n 	<li>Biomechanics Coach Screening: Assessing movement quality through various tests.</li>\r\n 	<li>Functional Movement Screen (FMS): Identifies movement dysfunctions.</li>\r\n 	<li>Range of Movement (ROM) Testing: Measures joint flexibility.</li>\r\n 	<li>Muscle Strength Testing: Evaluates muscle function and strength.</li>\r\n</ul>\r\n<h3>Who Conducts Biomechanical Assessments?</h3>\r\n&nbsp;\r\n<h4><b>Biomechanics Coaches </b></h4>\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35140 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07278-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBiomechanics Coaches are certified professionals who specialize in assessing and improving movement quality. They undergo extensive training, including a 7–9-month Diploma in Biomechanics Coaching, after qualifying in fields like personal training, sports therapy, or yoga. They perform detailed assessments of joint and muscle function to identify and address movement issues. You can find a registered Biomechanics Coach in the UK here.\r\n<h4>Podiatrists</h4>\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35141 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.19.56-277x300.png\" alt=\"\" width=\"277\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\nPodiatrists specialize in foot and lower limb biomechanics. They hold a degree or master’s degree and are registered with the Health &amp; Care Professions Council (HCPC). Podiatrists use advanced techniques like video gait analysis to diagnose and treat foot and ankle issues. Their interventions range from orthotic inserts to specialized exercises, and sometimes surgery.\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35142 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.14-257x300.png\" alt=\"\" width=\"257\" height=\"300\" />\r\n<h4></h4>\r\n<h4>Physiotherapists</h4>\r\nPhysiotherapists complete a minimum of a three-year degree and may specialize in various areas, including biomechanics. They assess muscle strength, range of motion, and movement patterns to diagnose and treat musculoskeletal problems. Physiotherapists often work in multidisciplinary teams in the NHS or privately and use a combination of manual therapy and exercise prescriptions to help patients recover from injuries.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35143 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.28-269x300.png\" alt=\"\" width=\"269\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4>Golf Coaches</h4>\r\nGolf coaches, often trained through the Professional Golfers Association (PGA), help players improve their biomechanics to enhance performance and reduce injury risk. They may use Functional Movement Screening (FMS) and video analysis to evaluate and refine a golfer’s swing. Look for SafeGolf or PGA-accredited coaches for certified expertise.\r\n\r\n<img class=\"size-medium wp-image-29232 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/08/GOLF-andrew-lomas-aGlpdQ2Yolk-unsplash-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\r\n\r\n&nbsp;\r\n<h4>Equine Biomechanics/Riding Coaches</h4>\r\nRiding coaches trained in equine biomechanics assess both the rider\'s and the horse\'s movement. This dual approach helps identify and correct imbalances that could affect performance. Coaches trained in human biomechanics can offer exercises to help riders maintain symmetry, benefiting both the rider and the horse. Find qualified coaches through the British Horse Society (BHS) or the Register of Biomechanics Coaches.\r\n<h3>Conclusion</h3>\r\nUnderstanding the importance of biomechanical assessments is crucial for optimizing movement and reducing pain. With various methods and professionals available, it\'s essential to choose the right type of assessment and assessor for your specific needs. Whether you’re a professional athlete, a casual exerciser, or experiencing movement issues, a biomechanical assessment can provide valuable insights and solutions.\r\n\r\nInterested in learning more? Sample our programmes to start assessing and improving your biomechanics today!\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35144 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.42-278x300.png\" alt=\"\" width=\"278\" height=\"300\" />','Biomechanical assessment: everything you need to know','','publish','closed','closed','','biomechanical-assessment-everything-you-need-to-know','','','2025-01-20 16:01:07','2025-01-20 16:01:07','',0,'https://www.biomechanicseducation.com/?p=35126',0,'post','',0),(35276,0,'2023-02-22 07:11:18','2023-02-22 07:11:18','','DSC_6385','','inherit','open','closed','','dsc_6385','','','2024-07-25 13:19:21','2024-07-25 13:19:21','',39172,'https://biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6385-scaled-1.jpg',0,'attachment','image/jpeg',0),(35279,0,'2023-02-22 07:16:33','2023-02-22 07:16:33','','2O8A2841','','inherit','open','closed','','2o8a2841','','','2023-02-22 07:16:33','2023-02-22 07:16:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/2O8A2841-scaled-1.jpg',0,'attachment','image/jpeg',0),(35280,0,'2023-02-22 07:16:55','2023-02-22 07:16:55','','2O8A2843','','inherit','open','closed','','2o8a2843','','','2023-02-22 07:16:55','2023-02-22 07:16:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/2O8A2843-scaled-1.jpg',0,'attachment','image/jpeg',0),(35281,0,'2023-02-22 07:17:11','2023-02-22 07:17:11','','IMG_4234','','inherit','open','closed','','img_4234','','','2023-02-22 07:17:11','2023-02-22 07:17:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/IMG_4234-1.jpg',0,'attachment','image/jpeg',0),(35282,0,'2023-02-22 07:17:18','2023-02-22 07:17:18','','IMG_1548','','inherit','open','closed','','img_1548','','','2023-02-22 07:17:18','2023-02-22 07:17:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/IMG_1548-1.jpg',0,'attachment','image/jpeg',0),(35283,0,'2023-02-22 07:17:23','2023-02-22 07:17:23','','IMG_2774','','inherit','open','closed','','img_2774','','','2023-02-22 07:17:23','2023-02-22 07:17:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/IMG_2774-scaled-1.jpeg',0,'attachment','image/jpeg',0),(35284,0,'2023-02-22 07:17:45','2023-02-22 07:17:45','','DSC_7309','','inherit','open','closed','','dsc_7309','','','2023-02-22 07:17:45','2023-02-22 07:17:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/DSC_7309-scaled-1.jpg',0,'attachment','image/jpeg',0),(35285,0,'2023-02-22 07:21:07','2023-02-22 07:21:07','','DSC_6931','','inherit','open','closed','','dsc_6931','','','2023-02-22 07:21:07','2023-02-22 07:21:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6931-scaled-1.jpg',0,'attachment','image/jpeg',0),(35287,0,'2023-02-22 07:23:11','2023-02-22 07:23:11','','DSC_7309','','inherit','open','closed','','dsc_7309-2','','','2023-02-22 07:23:11','2023-02-22 07:23:11','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/05/DSC_7309-1-scaled-1.jpg',0,'attachment','image/jpeg',0),(35484,0,'2023-03-14 15:52:18','2023-03-14 15:52:18','','FFG_Wordmark_Black_RGB-01','','inherit','open','closed','','ffg_wordmark_black_rgb-01','','','2023-03-14 15:52:18','2023-03-14 15:52:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/03/FFG_Wordmark_Black_RGB-01-2.png',0,'attachment','image/png',0),(35488,0,'2023-03-14 16:02:49','2023-03-14 16:02:49','','FFG_Wordmark_Black_RGB-01','','inherit','open','closed','','ffg_wordmark_black_rgb-01-2','','','2023-03-14 16:02:49','2023-03-14 16:02:49','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/03/FFG_Wordmark_Black_RGB-01-1-1.png',0,'attachment','image/png',0),(35490,0,'2023-03-14 16:38:04','2023-03-14 16:38:04','','FFT_Wordmark_FutureCoral_RGB-01','','inherit','open','closed','','fft_wordmark_futurecoral_rgb-01','','','2023-03-14 16:38:04','2023-03-14 16:38:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/03/FFT_Wordmark_FutureCoral_RGB-01-1.png',0,'attachment','image/png',0),(35742,3,'2023-04-11 19:16:16','2023-04-11 19:16:16','<h2><b>Introduction</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The aim of this Juicemail is to better understand what elements contribute to making you into an <a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">advanced personal trainer. </a></span>\n\n<span style=\"font-weight: 400;\">Personal Trainers are often the first professional that a person will go to when they want to achieve a health goal. They will also go to a PT for advice if they have an ache or pain. </span><span style=\"font-weight: 400;\">Yet personal trainers are not taught m</span><span style=\"font-weight: 400;\">usculoskeletal screening skills as a compulsory part of their training. So we lack the confidence to advise these clients beyond referring them to a clinician. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here at Biomechanics Education our team have spent 20+ yrs collecting data, then 20yrs developing an education programme that proves movement &amp; exercise are more often than not the solution to these modern ailments. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We care passionately about personal trainers\' ability to work confidently within a multidisciplinary team. So our mission has always been to upskill personal trainers to a more advanced level by giving them both the skills &amp; confidence to do just this.</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35749 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/04/sule-makaroglu-PnUYkTFkOD0-unsplash-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" />\n<h2><b>How to become a <a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">personal trainer</a></b></h2>\n<span style=\"font-weight: 400;\">Simply put, to become a personal trainer you need to obtain a minimum of a </span><a href=\"https://www.futurefit.co.uk/personal-training-courses/level-3-personal-trainer-course/\"><span style=\"font-weight: 400;\">Level 3 Personal Training Qualification</span></a><span style=\"font-weight: 400;\">. This is the minimum industry requirement but there are a few steps to follow to get to this point. </span>\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Research the required skills </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Invest in high-quality education </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Complete your training and obtain a qualification </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Invest in relevant insurance </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Gain work experience </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Start a business or seek employment </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Build your client base </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">To become an advanced personal trainer and reach a higher level of confidence in your ability with clients you will need to then invest in further training which will enable you to increase client retention and charge a higher rate. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Future Fit Training</span> are the very best &amp; as a result the largest, training provider for personal training courses in the UK today. This is why Biomechanics Education joined the Future Fit Group in 2022 to give our own learners the very best career advice &amp; employment opportunities along with job satisfaction.\n\n&nbsp;\n<h2><b>Levels of personal training </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When entering the world of personal training we hear about levels. Levels are simply layers of learning &amp; comprehension. For example when learning to become a <a href=\"https://www.futurefit.co.uk/personal-training-courses/level-2-gym-instructor-course/\" target=\"_blank\" rel=\"noopener\">level 2 Gym instructor</a> (the prerequisite to level 3 personal trainer) we must have a basic understanding of the muscles in their groups. For example ‘quadriceps are the group of muscles that extend the knee’ or ‘hamstrings flex the knee’. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then as we study as a level 3 personal trainer we learn about the muscles in more detail. That there are 4 quadriceps (rectus femoris, vastus medialis, vastus intermedius, vastus lateralis) for example &amp; 3 hamstrings (bicep femoris, semitendinosus, semimembranosus).</span>\n\n<span style=\"font-weight: 400;\">As a personal trainer we also study about the bones &amp; joints as levers &amp; fulcrums for the muscles to attach to &amp; pull the body during movement. This will help us to understand loads &amp; forces for training our clients to strengthen these muscles. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Within our <a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">Diploma in Biomechanics Coaching</a> we will bring personal trainers up another level to become more advanced in these skills. We will share with you examples of the many ‘normal’ variations, that maybe even the anatomy books don’t necessarily show you! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The 5th quadricep (tensa vastus intermedius) for example can be found in a small population.  Then there is the triple headed bicep or a view of 6 different orientations of the sciatic nerve pathway. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We will show you hip joint formations that differ enough to alter pelvic biomechanics during a squat. Understanding this can help you help your clients find the best squat width for them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Femoral anteversion (more medially rotated femur) / Coxa vara (smaller angle between the femur shaft &amp; neck of femur) are likely to prefer a narrower squat. Whereas femoral retro version (more laterally rotated femur) / coxa valga (bigger than normal angle between femur shaft &amp; neck of femur) will likely prefer wider based on their normal joint variations. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Through all of this we will show you methods to assess your clients pelvic, spine, shoulder, knee &amp; foot biomechanics. This is what will enable any personal trainer to be recognised as advanced in their level of knowledge &amp; training. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Note: We can be at a different level in different subject areas simultaneously.</span>\n\n&nbsp;\n<h2><b>How intrinsic biomechanics can help you become an <a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">advanced personal trainer</a></b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-35748 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/04/sam-moghadam-khamseh-vOZP2LojrHI-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n<span style=\"font-weight: 400;\">By studying <a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">intrinsic biomechanics</a> you will better appreciate the complexities of the anatomy &amp; how to create a bespoke programme based on assessing your clients sub systems (myofascial, skeletal &amp; neural) Along with these assessment skills this advanced level gives you specialist knowledge of unique evidence based movement improvement skills for prehabilitation &amp; an increased confidence to advise clients &amp; create bespoke programmes. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Technical skill is all good &amp; well but we will also teach you about advanced soft skills of communication, understanding behaviour &amp; report writing skills so personal trainers can confidently work within a team of practitioners from various backgrounds. </span>\n\n&nbsp;\n<h2><b><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">Advanced concepts of personal training</a> </b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-35753 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/04/toralf-thomassen-5S40ixhBK-I-unsplash-300x241.jpg\" alt=\"\" width=\"300\" height=\"241\" />\n\n<span style=\"font-weight: 400;\">There are many types of trainers out there so to become advanced we should use advanced concepts. By deepening a personal trainer\'s anatomy knowledge &amp; skills in application allows for an appropriate level of expectation from both employers &amp; clients. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While many consider biomechanics as a more ‘precise’ science, this is why we came up with the 2 definitions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Extrinsic biomechanics might be considered a harder science in terms of its view of precision in sport, timing, joint angles for performance for example. </span>\n\n<span style=\"font-weight: 400;\">However this concept is being challenged due to the diversity of body types &amp; combinations of lever lengths within each athlete. Thus creating a constant argument that using precision wil be flawed  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is why we prefer to firstly consider better understanding a client\'s intrinsic biomechanics, or the softer science, that allows for assessment &amp; taking into account these differences. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So intrinsic biomechanics is in fact the opposite of precise. It\'s a more relaxed approach to the precision of foot position, knee position, spine position during movement when we\'re coaching personal training clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This depth of understanding is what results in an advanced perspective for very \'personal\' training.</span>\n\n&nbsp;\n<h2>Would you like to learn more about becoming an <a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">advanced personal trainer?</a></h2>\n<img class=\"size-medium wp-image-35751 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/04/jonathan-borba-R0y_bEUjiOM-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n<h2>Understanding the principles &amp; application of intrinsic biomechanics is the game changer for personal trainers looking to advance their skills.</h2>\n<h1><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">Become an elite PT!</a></h1>\n<a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">Join Us or get in touch to find out more </a>\n\n&nbsp;','How to become an advanced personal trainer','','draft','closed','closed','','how-to-become-an-advanced-personal-trainer','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',0,'https://www.biomechanicseducation.com/?p=35742',0,'post','',0),(35748,0,'2023-04-11 19:10:35','2023-04-11 19:10:35','','sam-moghadam-khamseh-vOZP2LojrHI-unsplash','','inherit','open','closed','','sam-moghadam-khamseh-vozp2lojrhi-unsplash','','','2023-04-11 19:10:35','2023-04-11 19:10:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/04/sam-moghadam-khamseh-vOZP2LojrHI-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(35749,0,'2023-04-11 19:10:52','2023-04-11 19:10:52','','sule-makaroglu-PnUYkTFkOD0-unsplash','','inherit','open','closed','','sule-makaroglu-pnuyktfkod0-unsplash-2','','','2023-04-11 19:10:52','2023-04-11 19:10:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/04/sule-makaroglu-PnUYkTFkOD0-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(35750,0,'2023-04-11 19:11:08','2023-04-11 19:11:08','','nathan-dumlao-NXMZxygMw8o-unsplash','','inherit','open','closed','','nathan-dumlao-nxmzxygmw8o-unsplash','','','2023-04-11 19:11:08','2023-04-11 19:11:08','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/04/nathan-dumlao-NXMZxygMw8o-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(35751,0,'2023-04-11 19:11:29','2023-04-11 19:11:29','','jonathan-borba-R0y_bEUjiOM-unsplash','','inherit','open','closed','','jonathan-borba-r0y_beujiom-unsplash-2','','','2023-04-11 19:11:29','2023-04-11 19:11:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/04/jonathan-borba-R0y_bEUjiOM-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(35752,0,'2023-04-11 19:11:45','2023-04-11 19:11:45','','sincerely-media-5uLbdKsUXMg-unsplash','','inherit','open','closed','','sincerely-media-5ulbdksuxmg-unsplash','','','2023-04-11 19:11:45','2023-04-11 19:11:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/04/sincerely-media-5uLbdKsUXMg-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(35753,0,'2023-04-11 19:12:01','2023-04-11 19:12:01','','toralf-thomassen-5S40ixhBK-I-unsplash','','inherit','open','closed','','toralf-thomassen-5s40ixhbk-i-unsplash','','','2023-04-11 19:12:01','2023-04-11 19:12:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/04/toralf-thomassen-5S40ixhBK-I-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(35754,0,'2023-04-11 19:12:15','2023-04-11 19:12:15','','sincerely-media-mvHuY-t4QII-unsplash','','inherit','open','closed','','sincerely-media-mvhuy-t4qii-unsplash','','','2023-04-11 19:12:15','2023-04-11 19:12:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/04/sincerely-media-mvHuY-t4QII-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(35755,0,'2023-04-11 19:12:32','2023-04-11 19:12:32','','sincerely-media-LYn0koTX-oo-unsplash','','inherit','open','closed','','sincerely-media-lyn0kotx-oo-unsplash','','','2025-03-18 12:09:28','2025-03-18 12:09:28','',42683,'https://biomechanicseducation.com/wp-content/uploads/2023/04/sincerely-media-LYn0koTX-oo-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(35805,0,'2023-04-17 08:58:39','2023-04-17 08:58:39','','BROGAN NEEDHAM','','inherit','open','closed','','brogan-needham','','','2023-04-17 08:58:39','2023-04-17 08:58:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/BROGAN-NEEDHAM-1-1.png',0,'attachment','image/png',0),(35806,0,'2023-04-17 09:10:36','2023-04-17 09:10:36','','LEWIS BAKER','','inherit','open','closed','','lewis-baker','','','2023-04-17 09:10:36','2023-04-17 09:10:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/LEWIS-BAKER-1-1.png',0,'attachment','image/png',0),(35817,0,'2023-04-18 09:29:59','2023-04-18 09:29:59','','IMG_4905','','inherit','open','closed','','img_4905','','','2023-04-18 09:29:59','2023-04-18 09:29:59','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/04/IMG_4905-1.jpg',0,'attachment','image/jpeg',0),(35818,0,'2023-04-18 09:35:29','2023-04-18 09:35:29','','KIM TOMLIN','','inherit','open','closed','','kim-tomlin','','','2023-04-18 09:35:29','2023-04-18 09:35:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/04/KIM-TOMLIN-1.jpg',0,'attachment','image/jpeg',0),(35819,0,'2023-04-18 09:39:00','2023-04-18 09:39:00','','PAUL SWAINSON','','inherit','open','closed','','paul-swainson','','','2023-04-18 09:39:00','2023-04-18 09:39:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/04/PAUL-SWAINSON-1.jpg',0,'attachment','image/jpeg',0),(35837,0,'2023-04-19 09:59:35','2023-04-19 09:59:35','','Screenshot 2023-02-07 at 15.05.56','','inherit','open','closed','','screenshot-2023-02-07-at-15-05-56','','','2023-04-19 09:59:35','2023-04-19 09:59:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/09/Screenshot-2023-02-07-at-15.05.56-1.png',0,'attachment','image/png',0),(35882,0,'2023-04-24 10:22:23','2023-04-24 10:22:23','','CIMSPA--1_2-CPD-Black-RGB','','inherit','open','closed','','cimspa-1_2-cpd-black-rgb','','','2023-04-24 10:22:23','2023-04-24 10:22:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/CIMSPA-1_2-CPD-Black-RGB-1.png',0,'attachment','image/png',0),(35883,0,'2023-04-24 10:25:58','2023-04-24 10:25:58','','CIMSPA-1-CPD-Black-RGB','','inherit','open','closed','','cimspa-1-cpd-black-rgb','','','2023-04-24 10:25:58','2023-04-24 10:25:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2022/02/CIMSPA-1-CPD-Black-RGB-1.png',0,'attachment','image/png',0),(35886,0,'2023-04-24 10:47:30','2023-04-24 10:47:30','','CIMSPA-2-CPD-Black-RGB','','inherit','open','closed','','cimspa-2-cpd-black-rgb','','','2023-04-24 10:47:30','2023-04-24 10:47:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2021/02/CIMSPA-2-CPD-Black-RGB-1.png',0,'attachment','image/png',0),(35888,0,'2023-04-24 11:32:19','2023-04-24 11:32:19','','CIMSPA-10-CPD-Endorsed-Black-RGB','','inherit','open','closed','','cimspa-10-cpd-endorsed-black-rgb','','','2023-04-24 11:32:19','2023-04-24 11:32:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/CIMSPA-10-CPD-Endorsed-Black-RGB-1.png',0,'attachment','image/png',0),(35889,0,'2023-04-24 11:36:37','2023-04-24 11:36:37','','CIMSPA-2-CPD-Black-RGB','','inherit','open','closed','','cimspa-2-cpd-black-rgb-2','','','2023-04-24 11:36:37','2023-04-24 11:36:37','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/CIMSPA-2-CPD-Black-RGB-1.png',0,'attachment','image/png',0),(35890,0,'2023-04-24 11:36:42','2023-04-24 11:36:42','','CIMSPA-7-CPD-Endorsed-Black-RGB','','inherit','open','closed','','cimspa-7-cpd-endorsed-black-rgb','','','2023-04-24 11:36:42','2023-04-24 11:36:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/CIMSPA-7-CPD-Endorsed-Black-RGB-1.png',0,'attachment','image/png',0),(35891,0,'2023-04-24 11:36:46','2023-04-24 11:36:46','','CIMSPA-9-CPD-Endorsed-Black-RGB','','inherit','open','closed','','cimspa-9-cpd-endorsed-black-rgb','','','2023-04-24 11:36:46','2023-04-24 11:36:46','',0,'https://biomechanicseducation.com/wp-content/uploads/2020/03/CIMSPA-9-CPD-Endorsed-Black-RGB-1.png',0,'attachment','image/png',0),(35892,0,'2023-04-24 12:07:44','2023-04-24 12:07:44','','CIMSPA-3-CPD-Endorsed-Black-RGB','','inherit','open','closed','','cimspa-3-cpd-endorsed-black-rgb','','','2023-04-24 12:07:44','2023-04-24 12:07:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/CIMSPA-3-CPD-Endorsed-Black-RGB-1.png',0,'attachment','image/png',0),(35976,0,'2023-05-03 08:06:50','2023-05-03 08:06:50','','Screenshot 2023-05-03 at 09.06.28','','inherit','open','closed','','screenshot-2023-05-03-at-09-06-28','','','2023-05-03 08:06:50','2023-05-03 08:06:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2019/09/Screenshot-2023-05-03-at-09.06.28-1.png',0,'attachment','image/png',0),(36060,0,'2023-05-09 14:09:48','2023-05-09 14:09:48','','Screenshot-2022-02-28-at-12.33.59-218x300','','inherit','open','closed','','screenshot-2022-02-28-at-12-33-59-218x300','','','2023-05-09 14:09:48','2023-05-09 14:09:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/05/Screenshot-2022-02-28-at-12.33.59-218x300-1-1.png',0,'attachment','image/png',0),(36061,0,'2023-05-09 14:11:42','2023-05-09 14:11:42','','PAUL-SWAINSON-232x300','','inherit','open','closed','','paul-swainson-232x300','','','2023-05-09 14:11:42','2023-05-09 14:11:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/05/PAUL-SWAINSON-232x300-1-1.jpg',0,'attachment','image/jpeg',0),(36111,0,'2023-05-13 19:03:36','2023-05-13 19:03:36','','RajKharay_Stepthotix','','inherit','open','closed','','rajkharay_stepthotix','','','2023-05-13 19:03:36','2023-05-13 19:03:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/RajKharay_Stepthotix-1.png',0,'attachment','image/png',0),(36112,0,'2023-05-13 19:03:44','2023-05-13 19:03:44','','Omar, fitandfun 292 - Copy','','inherit','open','closed','','omar-fitandfun-292-copy','','','2023-05-13 19:03:44','2023-05-13 19:03:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Omar-fitandfun-292-Copy-scaled-1.jpg',0,'attachment','image/jpeg',0),(36113,0,'2023-05-13 19:10:34','2023-05-13 19:10:34','','21d7656c-9c04-41e2-8682-aff07c31d097','','inherit','open','closed','','21d7656c-9c04-41e2-8682-aff07c31d097','','','2023-05-13 19:10:34','2023-05-13 19:10:34','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/21d7656c-9c04-41e2-8682-aff07c31d097-1.jpg',0,'attachment','image/jpeg',0),(36118,0,'2023-05-14 06:39:25','2023-05-14 06:39:25','','IMG_4960','','inherit','open','closed','','img_4960','','','2023-05-14 06:39:25','2023-05-14 06:39:25','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/IMG_4960-1.heic',0,'attachment','image/heic',0),(36119,0,'2023-05-14 06:41:31','2023-05-14 06:41:31','','IMG_4960','','inherit','open','closed','','img_4960-2','','','2023-05-14 06:41:31','2023-05-14 06:41:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/02/IMG_4960-1.jpg',0,'attachment','image/jpeg',0),(36198,3,'2023-05-23 08:39:47','2023-05-23 08:39:47','<b>Introduction</b><span style=\"font-weight: 400;\"> </span>\n\n<i><span style=\"font-weight: 400;\">If we do not understand movement, we cannot understand exercise. Yet kinesiology &amp; biomechanics are the least understood after anatomy &amp; physiology (Haines)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Many personal trainers are looking for more ways to help clients with their movement problems. One way of doing this is to seek out a deeper understanding of biomechanics &amp; anatomy to gain confidence in knowing what to do, &amp; when. In particular for those who hurt, feel stiff, immobile or wish to improve at a particular sport or activity. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are many ways to break the science of biomechanics into components, so much so that it can leave personal trainers fearful about the level of knowledge required to gain skills in this field. So I want to break things down here for you to offer you insight into how our education differs from other schools of biomechanics. Our hope is to demonstrate how our approach is helping personal trainers with a more thorough biomechanical approach to assessment &amp; programme design... </span>\n\n&nbsp;\n\n<b><i>Definition of Biomechanics </i></b>\n\n<i><span style=\"font-weight: 400;\">Mechanics is the science of matter &amp; force &amp; their effects on movement &amp; equilibrium. Biomechanics is how this relates to the human body.</span></i>\n\n&nbsp;\n\n<b>Breaking down the components of biomechanics </b>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-33789 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1067442071-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here at Biomechanics Education, we categorise this science into 2 types as explained previously in this blog…</span>\n\n<a href=\"https://www.biomechanicseducation.com/what-is-the-difference-between-extrinsic-biomechanics-intrinsic-biomechanics/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">What is the difference between extrinsic biomechanics &amp; intrinsic biomechanics?</span></a>\n\n&nbsp;\n\nThis is how our categories fit into the main stream definition.\n\nExtrinsic biomechanics has 2 components as described in main steam biomechanics\n\n&nbsp;\n\n<b>2 components of extrinsic biomechanics</b><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36200 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/05/mathew-schwartz-zIIXVa5BwvM-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Kinematics ‘..</span><i><span style=\"font-weight: 400;\">the branch that deals with the geometry of motion in objects, including displacement, velocity &amp; acceleration, without taking into account the forces that produce the motion</span></i><span style=\"font-weight: 400;\">…” In other words; video analysis, observational analysis of the client moving</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Kinetics  “..</span><i><span style=\"font-weight: 400;\">.the relationships between the force system acting upon the body &amp; the changes it produces in body motion..\" </span></i><span style=\"font-weight: 400;\">This is found by equipment such as force plate platforms</span>\n\n<a href=\"https://www.physio-pedia.com/Biomechanics_In_Sport#:~:text=Biomechanics%20is%20traditionally%20divided%20into%20the%20areas%20of%20kinematics%20and%20kinetics\" target=\"_blank\" rel=\"noopener\">Physiopedia</a>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36201 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/05/kiwihug-Hld-BtdRdPU-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You may also read about biomechanics being divided into <a href=\"https://www.isnt.org.in/what-are-the-5-components-of-biomechanics.html\" target=\"_blank\" rel=\"noopener\">5 components</a> like this…</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Motion - the movement of the body, or an object, through space. Speed &amp; acceleration are important parts of motion.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Force - a push or pull that causes a person or object to speed up, slow down, stop or change direction.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Momentum - the product of a weight &amp; its velocity when moved</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Levers - could be compared to our arms &amp; legs; there are three parts to a lever – the resistance arm, the fulcrum, &amp; the axis of rotation</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Balance - being stable. An important principle of balance is the alignment of the body’s centre of gravity over the base of support. Having a good balance is important for many sporting &amp; exercise activities</span></li>\n</ul>\n&nbsp;\n\n<b>intrinsic biomechanics has 3 components</b>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36202 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/05/ta-z-Nk7hHi3I__0-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We teach personal trainers a deeper understanding of the concepts of intrinsic biomechanics by further dividing them into 3 components….</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Myofascial - muscles, fascia &amp; other connective tissues</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Skeletal - osseous substructure or bones </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Neural - central nervous system (brain &amp; spinal cord) &amp; peripheral nerves</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s clear that an understanding of biomechanics at some level is vital for coaching movement &amp; exercise programming. </span>\n\n<span style=\"font-weight: 400;\">The biomechanical influences both inside &amp; outside our client’s bodies clearly impact each other &amp; how we see them move. However, it’s important we understand the differences in application &amp; interpretation. </span><span style=\"font-weight: 400;\">The skill is in understanding what’s happening to the myofascial, skeletal, neural (or intrinsic) structures when observing the influences of motion, levers, momentum, force &amp; balance from the extrinsic biomechanics. </span>\n\n&nbsp;\n\n<strong>Put another way….</strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The skill of a Biomechanics Coach is in understanding how the intrinsic biomechanics, or anatomy, is resulting in what we see extrinsically from a mechanical movement perspective in our client’s body. </span><span style=\"font-weight: 400;\">Having an understanding of the normal or typical variations in anatomy is an important advantage for personal trainers when coaching movement or exercises. Human bodies are as diverse intrinsically as they are extrinsically </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The study of intrinsic biomechanics allows a measurable objectivity using a systemised approach to evaluating movement quality thus informing us how to programme safely &amp; systematically. Yet true comprehension comes from allowing for individuality when comparing subject to subject  </span>\n\n&nbsp;\n\n<b>Let’s look at an example during a squat </b>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35749 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/04/sule-makaroglu-PnUYkTFkOD0-unsplash-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" />\n\n<span style=\"font-weight: 400;\">There are things about our client\'s squat we can never alter. Femur length for example will dictate the tibial angle, hip socket depth will dictate the point at which the femur starts to tilt the pelvis posteriorly. The direction the acetabulum is facing in the pelvis will dictate stance widths that feel most comfortable for our clients </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These factors cannot be altered since they are osseous factors about our client\'s anatomy that they were born with. Taking an extrinsic biomechanical approach one might assume a client\'s squat is limited by mobility or tightness. However, if the trainer learns a deeper appreciation of normal anatomical variations they will feel more confident in coaching movement that is right for the individual. which may well require them to perform a squat that is ‘technically’ or extrinsically biomechanically incorrect, but it is ‘correct’ for them as an individual.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another influence we cannot alter, &amp; must take into consideration here, is joint replacements, surgery or metal plates for example. These are interventions that may alter movement capacity intrinsically.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Taking a biomechanically intrinsic approach is to appreciate the things we can potentially alter even in those with normal variations in anatomy. The goal is to improve movement quality &amp; distribution rather than simply aiming to perfectly align &amp; position to the perfect ‘posture’</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As trainers, exercise or movement coaches we also want to strengthen our client\'s bodies. We can use our knowledge of extrinsic biomechanics to increase or decrease loads, progress or regress a programme. For example, using a longer lever for a progression or to increase intensity or a shorter lever to regress or reduce intensity. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However if we want a deeper squat for our client so they can increase the joint angle at the pelvis to increase intensity on the hip extensors, we may look to assess pelvic function first using intrinsic biomechanical principles. Then improve intrinsic function using METs on the hip extensors. This could be followed by antagonist strengthening of hip flexors to take advantage of reciprocal inhibition &amp; improve joint stability. Thus gaining an advantage on strengthening the agonists or hip extensors at full ROM &amp; improving the joint\'s strength ratio. </span><span style=\"font-weight: 400;\">This could be interpreted as intrinsic biomechanical preparation for an extrinsic biomechanical advantage.</span>\n\n&nbsp;\n<ul>\n 	<li>Do you have any questions about any of the components?</li>\n 	<li>Is this a subject you would like to study?</li>\n 	<li>Would you like to enter an inclusive classroom to really deepen your understanding or anatomy?</li>\n 	<li><span style=\"font-weight: 400;\">If the intrinsic biomechanics approach in one you would like to learn more about why not get in touch? </span></li>\n</ul>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Click here to learn how you can &gt;&gt;&gt;&gt; Become a Biomechanics Coach </a></h1>\n&nbsp;\n\n<img class=\"size-medium wp-image-33810 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_7668-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />','Intrinsic Biomechanics - Understanding The Components That Make Our Bodies Move','','draft','closed','closed','','intrinsic-biomechanics-understanding-the-components-that-make-our-bodies-move','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',0,'https://www.biomechanicseducation.com/?p=36198',0,'post','',0),(36200,0,'2023-05-23 06:53:57','2023-05-23 06:53:57','','mathew-schwartz-zIIXVa5BwvM-unsplash','','inherit','open','closed','','mathew-schwartz-ziixva5bwvm-unsplash','','','2023-05-23 06:53:57','2023-05-23 06:53:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/05/mathew-schwartz-zIIXVa5BwvM-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(36201,0,'2023-05-23 06:55:15','2023-05-23 06:55:15','','kiwihug-Hld-BtdRdPU-unsplash','','inherit','open','closed','','kiwihug-hld-btdrdpu-unsplash','','','2023-05-23 06:55:15','2023-05-23 06:55:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/05/kiwihug-Hld-BtdRdPU-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(36202,0,'2023-05-23 06:55:26','2023-05-23 06:55:26','','ta-z-Nk7hHi3I__0-unsplash','','inherit','open','closed','','ta-z-nk7hhi3i__0-unsplash','','','2023-05-23 06:55:26','2023-05-23 06:55:26','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/05/ta-z-Nk7hHi3I__0-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(36214,0,'2023-05-23 11:35:02','2023-05-23 11:35:02','','Modern,Rehabilitation,Physiotherapy','','inherit','open','closed','','modernrehabilitationphysiotherapy-3','','','2023-05-23 11:35:02','2023-05-23 11:35:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/05/shutterstock_1067442071-300x200-1-1.jpg',0,'attachment','image/jpeg',0),(36327,0,'2023-06-07 15:55:41','2023-06-07 15:55:41','','Privacy Policy_2023','','inherit','open','closed','','privacy-policy_2023','','','2023-06-07 15:55:41','2023-06-07 15:55:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/06/Privacy-Policy_2023-1.pdf',0,'attachment','application/pdf',0),(36328,0,'2023-06-07 15:55:48','2023-06-07 15:55:48','','Biomechanics Education Health Safety_2023','','inherit','open','closed','','biomechanics-education-health-safety_2023','','','2023-06-07 15:55:48','2023-06-07 15:55:48','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/06/Biomechanics-Education-Health-Safety_2023-1.pdf',0,'attachment','application/pdf',0),(36349,0,'2023-06-13 12:02:53','2023-06-13 12:02:53','','The movement optimists affirmation-9','','inherit','open','closed','','the-movement-optimists-affirmation-9','','','2023-06-13 12:02:53','2023-06-13 12:02:53','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/06/The-movement-optimists-affirmation-9-1.png',0,'attachment','image/png',0),(36378,0,'2023-06-21 11:45:10','2023-06-21 11:45:10','','MicrosoftTeams-image (37)','','inherit','open','closed','','microsoftteams-image-37','','','2023-06-21 11:45:10','2023-06-21 11:45:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-37-2.jpg',0,'attachment','image/jpeg',0),(36384,0,'2023-06-21 14:24:18','2023-06-21 14:24:18','','MicrosoftTeams-image (41)','','inherit','open','closed','','microsoftteams-image-41','','','2023-06-21 14:24:18','2023-06-21 14:24:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-41-1.jpg',0,'attachment','image/jpeg',0),(36385,0,'2023-06-21 14:24:23','2023-06-21 14:24:23','','MicrosoftTeams-image (35)','','inherit','open','closed','','microsoftteams-image-35','','','2023-06-21 14:24:23','2023-06-21 14:24:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-35-1.jpg',0,'attachment','image/jpeg',0),(36386,0,'2023-06-21 14:24:30','2023-06-21 14:24:30','','MicrosoftTeams-image (36)','','inherit','open','closed','','microsoftteams-image-36','','','2023-06-21 14:24:30','2023-06-21 14:24:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-36-1.jpg',0,'attachment','image/jpeg',0),(36387,0,'2023-06-21 14:24:35','2023-06-21 14:24:35','','MicrosoftTeams-image (38)','','inherit','open','closed','','microsoftteams-image-38','','','2023-06-21 14:24:35','2023-06-21 14:24:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-38-1.jpg',0,'attachment','image/jpeg',0),(36388,0,'2023-06-21 14:24:39','2023-06-21 14:24:39','','MicrosoftTeams-image (39)','','inherit','open','closed','','microsoftteams-image-39','','','2023-06-21 14:24:39','2023-06-21 14:24:39','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-39-1.jpg',0,'attachment','image/jpeg',0),(36389,0,'2023-06-21 14:24:44','2023-06-21 14:24:44','','MicrosoftTeams-image (40)','','inherit','open','closed','','microsoftteams-image-40','','','2023-06-21 14:24:44','2023-06-21 14:24:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-40-1.jpg',0,'attachment','image/jpeg',0),(36390,0,'2023-06-21 14:24:48','2023-06-21 14:24:48','','MicrosoftTeams-image (37)','','inherit','open','closed','','microsoftteams-image-37-2','','','2024-09-17 07:16:59','2024-09-17 07:16:59','',39284,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-37-1-1.jpg',0,'attachment','image/jpeg',0),(36394,3,'2023-06-22 11:02:18','2023-06-22 11:02:18','<span style=\"font-weight: 400;\">What an exhilarating event… yet again! </span>\n\n<span style=\"font-weight: 400;\">Elevate was a fantastic two days of talks, networking and gaining insights into what is happening in our sector. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Future Fit group were once again Elevate’s Education Partner and wow some of the talks on the Thought Leaders stage were really fascinating this year. It was so great to see some of my Biomechanics Coaches there too. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">‘Intrinsic Biomechanics - The missing piece of the jigsaw for PTs?’ was the title of my session. I named it this because this is what all my learners feedback to me after they experience our face to face workshops. Gaining that deeper appreciation for the human body really boosts their confidence in every other skill they previously learned, while adding more to it. It connects all the dots and becomes the missing link between all their previous training. Learning how the body functions as an integrated system helps PTs to work more efficiently, effectively and most of all confidently, with their clients. </span>\n\n&nbsp;\n<h3><img class=\"alignnone wp-image-36386\" src=\"https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-36-1-300x135.jpg\" alt=\"\" width=\"542\" height=\"244\" /></h3>\n<h3><b>What happened during the session? </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">During my talk I made sure to interact with the audience, starting by inviting all of the them to squat with me to see how different we all are. I then invited them all to stand, roll their right foot inward to see how the body is integrated when all the way up to the opposite shoulder moved as a result of the foot roll! Then I invited one attendee onto the stage to demonstrate this again. As he stood upright, I simply pushed his big toe upwards and everyone could see his hips rock and his shoulders swing. These simple yet powerful interactions really engaged the audience and offered examples of why it’s important to always have the integrated system in mind when working with a client. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Next I coached the entire group to try a pelvic function test on themselves while seated, invited the ones who were positive (failed) to stand and almost everyone stood up. So I taught the entire group an iMoveFreely muscle energy technique (MET) and asked them to re-test, inviting those who felt or saw a change to stand again and almost 85% stood up amazed. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally I asked for a volunteer to demonstrate a mini screen. While he lay supine, I asked the audience to come and watch each measurement. Leg length discrepancy, pelvic function and a shoulder test. While he did have asymmetries, we did the MET on one shoulder and when I retested they saw how all of the tests had improved. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We had proved it over and over again with very simply physical demonstrations of how the entire body is integrated, connected and influenced even by the joints furthest away. </span>\n\n&nbsp;\n\n<img class=\"alignnone wp-image-36387\" src=\"https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-38-1-300x135.jpg\" alt=\"\" width=\"540\" height=\"243\" />\n<h3><b>Why did I choose this subject? </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The reason I’m so passionate about this field is because as a sector we are not perceived as, nor do we feel, academic or respected in the way our allied healthcare peers are. Understandably too based on our educational system. Yet the beauty of our education system allows non-academic individuals (like me) to gain access to a career relatively easily without the required degree level struggle and huge cost many might experience.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However we can prove our value easily with these intrinsic biomechanics tests and iMoveFreely interventions (that come from clinical practice) using them as prevention and prediction of risk tools.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the most interesting and exciting aspects about my session was the audience that came. Personal trainers, gym owners and pilates teachers were sitting next to podiatrists, scientists, paramedics, firemen and sports therapists. THIS is exactly my vision of how united our sectors should look. It was an emotional experience and always is for me when this happens, which regularly happens during my workshops too.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While being hybrid can help us better understand each other, it makes far more sense to do what we do really well instead of trying to do everything alone. It\'s a confident practitioner who refers a paying client away and I want to encourage it. </span>\n\n&nbsp;\n\n<img class=\"alignnone wp-image-36384\" src=\"https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-41-1-300x135.jpg\" alt=\"\" width=\"541\" height=\"243\" />\n<h3><b>So, what does this mean? </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, maybe finally things are changing, maybe we are crossing paths more, maybe there are some who agree with my vision and maybe, just maybe, we can start to improve all of our roles by working collaboratively rather than competitively. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Elevate seems to be steering this idea and I know for a fact that the Future Fit Group is, because it\'s the reason we joined forces. I believe strongly that Biomechanics Coaching is the solution and is the missing link for movement solutions for so many modern ailments. It’s also the missing link between sectors, allowing personal trainers to be taken seriously and feel confident in their ability to communicate within a multidisciplinary team.</span>','Elevate 2023: Intrinsic Biomechanics - The Missing Piece of the Jigsaw for PTs?','','draft','closed','closed','','elevate-2023-intrinsic-biomechanics-the-missing-piece-of-the-jigsaw-for-pts','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',0,'https://www.biomechanicseducation.com/?p=36394',0,'post','',0),(36400,0,'2023-06-22 10:02:58','2023-06-22 10:02:58','','MicrosoftTeams-image (45)','','inherit','open','closed','','microsoftteams-image-45','','','2023-06-22 10:02:58','2023-06-22 10:02:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-45-1.jpg',0,'attachment','image/jpeg',0),(36414,3,'2023-06-28 05:10:32','2023-06-28 05:10:32','<span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">Ever used a gym machine in a different way because you noticed the pulley system, fulcrum, angles were just right for a move it wasn’t designed for? </span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\">While there are safety factors ​to take into account, we can still use our understanding of anatomy and human biomechanics to take advantage of the machines mechanical system for alternative adaptations or additions to their purpose.<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />As I travel the UK sharing the intrinsic biomechanics education programmes with other movement practitioners I frequent various gyms all of the time. One of my very favourite things is looking for machines that might be different to ones I have used before. Studying their pulleys, pivots and levers for alternative ways to train.  </span></span>\n\n&nbsp;\n\n<b>Gym machines</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Gym machines are the perfect start point for someone new to the gym and maybe individuals who feel intimidated or nervous about doing things incorrectly. There is also an advantage when recovering from injury and / or wanting to use less trunk stiffness for whatever reason….yes there are times when we don\'t want to train the core so much…that\'s a whole other blog.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway the machines help because they often come with an image of how to use it and which muscles it targets, as well as a description of how to use the machine. However they take up a lot of room and can often be used in more than one way with a little imagination, this can help with keeping our client’s programme more interesting and maybe even more functional (yes I said \'function\' while talking about gym machines)</span>\n\n&nbsp;\n\n<b>Adapting the gym machine exercises</b>\n\n&nbsp;\n\n<b>Example 1</b>\n\n<span style=\"font-weight: 400;\">One of the simplest adaptations to advance a basic seated chest press for example would be to sit without allowing the back to touch the back rest. This would likely require a large drop in the number of plates being used as there is no resistance to push against during the movement. Try it and see how much harder a considerably lower weight feels!</span>\n\n&nbsp;\n\n<img class=\"alignnone size-medium wp-image-36415 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2023/06/Screenshot-2023-06-27-at-08.46.30-1-300x168.png\" alt=\"\" width=\"300\" height=\"168\" />\n\n&nbsp;\n\n<b>Example 2</b>\n\n<span style=\"font-weight: 400;\">Another of my favourites to adapt with clients (and myself) is the seated leg curl. This machine is designed to work the knee flexors, or hamstrings, specifically. However if you sit back against the seat the hip is more extended which shortens the hamstring at the hip. By flexing forwards to increase the angle across the back of the hip, away from the backrest, will lengthen the muscle (knee flexors/hamstring) for a better contraction. (If you lower the chin down too it would likely also mobilise the sciatic nerve…but move slowly!)</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-27960 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8658-300x297.jpg\" alt=\"\" width=\"300\" height=\"297\" />\n\n&nbsp;\n\n<b>Example 3</b>\n\n<span style=\"font-weight: 400;\">Having experienced a foot inversion strain 8 weeks ago I’ve been looking at different ways to rehab my foot back to full and pain free function. While on the standing calf raise I realised with the pads resting on the top of my shoulders I could pop a sneaky shrug while doing my calf raises! A great little scapular elevator / upper trapezius stimulus bonus!....see here….</span>\n\n&nbsp;\n\nhttps://www.youtube.com/shorts/3nJgjbDli5o\n\n&nbsp;\n\n<b>Example 4</b>\n\n<span style=\"font-weight: 400;\">Also it\'s difficult to strengthen the hip rotators when the hip is extended and we are upright as its almost impossible to get a long enough lever. Yet a seated hip ab/add machine does it brilliantly….if you kneel on it facing backwards the angle at the knee creates a brilliant lever…. Like this…..</span>\n\n&nbsp;\n\nhttps://www.youtube.com/shorts/vMyE2_RRoBc\n\n&nbsp;\n\n<b>What do you think?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you use machines differently in any way? </span>\n\n<span style=\"font-weight: 400;\">Can you see the pivots, levers and pulleys differently? </span>\n\n<span style=\"font-weight: 400;\">If so, how? </span>\n\n<span style=\"font-weight: 400;\">Why not post a video of it on social media and tag me, Biomechanics Education?!</span>\n\nor\n\nReply to this Juicemail\n\n&nbsp;\n\nAlso did you know....\n\nA Diploma in Biomechanics Coaching introduces learners to a new way to optimise client performance, bringing movement assessment programmes to the forefront through evidence-based perspectives. Through hands-on practical workshops and online learning, you will use the techniques developed through over 20 years of research to correctly assess clients’ bodies and movement beyond traditional training.\n\n<b>Plus, with our new finance options, you will be able to spread the cost of your diploma easily into manageable monthly chunks,</b> taking the stress out of starting the course and giving you the flexibility to train in a way that suits you.\n\nIf you want to know more about how a Diploma in Biomechanics Coaching can revolutionise your career, <strong>get in touch via email or phone using the details below.</strong>\n\nrachel@biomechanicseducation.com\n\n0203 841 6151','Question…Could using machines differently hold an advantage?','','draft','closed','closed','','questioncould-using-machines-differently-hold-an-advantage-2','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',0,'https://www.biomechanicseducation.com/?p=36414',0,'post','',0),(36415,0,'2023-06-27 07:58:36','2023-06-27 07:58:36','','Screenshot 2023-06-27 at 08.46.30','','inherit','open','closed','','screenshot-2023-06-27-at-08-46-30','','','2023-06-27 07:58:36','2023-06-27 07:58:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/06/Screenshot-2023-06-27-at-08.46.30-1.png',0,'attachment','image/png',0),(36419,0,'2023-06-28 04:55:31','2023-06-28 04:55:31','','amol-sonar-wUyiLNXnNHY-unsplash','','inherit','open','closed','','amol-sonar-wuyilnxnnhy-unsplash','','','2023-06-28 04:55:31','2023-06-28 04:55:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2023/06/amol-sonar-wUyiLNXnNHY-unsplash-scaled-1.jpg',0,'attachment','image/jpeg',0),(36448,3,'2023-07-05 06:57:51','2023-07-05 06:57:51','<span style=\"font-weight: 400;\">If you have ever asked yourself Why Become a Biomechanics Coach? Then this has been written specifically for you. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Biomechanics Coach profession may be one you have considered but have wondered what would this skill set offer? What would I gain? How would it benefit me? Why should I study a Biomechanics Coach course in the UK?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Within personal training courses we learn about anatomy, movement, physiology, exercise, maybe diet &amp; psychology too but when we start working with clients we suddenly realise just how different they all are. They all move differently and they also, more often than not, come with a whole list of things that we feel limited by.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Modern ailments interfere with the simple application of an exercise programme we have learned to write for a training goal. We are taught that pain and injury are outside of our remit &amp; yet so many clients come with aches, niggles and recurring injuries we feel ill-equipped to deal with. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet these ‘problems’ are being normalised due to their prevalence!</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36400 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-45-1-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While we should get clinical clearance for pain and injury, often movement is still a great compliment to recovery or even as the solution. However, we seem to be the only ‘body’ workers who lack any thorough, or evidence-based, MSK assessment skills in our basic training</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is where Biomechanics Coaching as a profession is truly <em>personalised</em> personal training. This skill offers a whole host of benefits to our skill set. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Biomechanics Coaches are able to identify, not only if an individual requires a specific specialist like a podiatrist or physiotherapist, but also how we could potentially continue to work our client alongside this practitioner.  </span>\n\n&nbsp;\n<h4><b>Widen your knowledge as a PT through the s</b><b>cience of movement and anatomical knowledge </b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">While PTs have much of what they need to improve movement, the skills of Biomechanics Coaching take you to a deeper level of understanding anatomy </span>\n\n<span style=\"font-weight: 400;\">This gives you an increased confidence in knowing what atypical genetic presentations might mean &amp; additional tools to address and reduce modern lifestyle ailments that may cause you concerns when trying to work out what to do and when with each client </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-28329 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h4></h4>\n&nbsp;\n<h4><b>Movements in anatomy</b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The ability to identify good movement with so many variations in each client\'s body can feel overwhelming. Biomechanics Coaching offers physical assessments that enable the PT to be objective about their decisions and programming. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Assessing movement becomes fun and fascinating, for both you &amp; your client, as you monitor progression, adapt the programme and see their performance improve alongside your client feeling more freedom in their movements. There is of course the potential for the byproduct, or side effect of pain reduction, at least if caused by a biomechanical adaptation or compensation.</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36450 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/07/DSC_6439-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h4></h4>\n<h4></h4>\n<h4><b>Skill </b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Gaining the skills in Biomechanics Coaching develops your confidence in assessing and understanding your clients body. You can evaluate movement quality and biomechanical limitations. You would have the ability to sit side by side with your clinical peers communicating at a common level. You would be able to gain a fluency in technical anatomy language that demonstrates why you are the ‘go to\' trainer/coach in your area.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35285 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6931-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h4></h4>\n<h4><b>Solutions</b><span style=\"font-weight: 400;\"> (</span><b>Occam’s razor)  </b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The skill of a Biomechanics Coach is in having the ability to investigate root causes of intrinsic biomechanical problems and potential influences of symptoms. You would learn the ethical Occam’s razor tactic that applies the simplest, lowest risk intervention first by following a systematic approach </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h4></h4>\n&nbsp;\n<h4><span style=\"font-weight: 400;\"> </span><b>Reputation</b><span style=\"font-weight: 400;\">, </span><b>Confidence &amp; Increased income </b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This often results in you getting noticed as a Biomechanics Coach by clinicians, GPs and other professionals. It also impresses members as you will stand out as an exceptional trainer in your area. Most Biomechanics Coaches discover the confidence to charge higher rates and begin to use a business model that has clients on subscription.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We offer you a huge amount of support to help you develop a commercial strategy to move your service provision into a more automated system. One that reduces admin, saves time and also pleases the clients. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The increase in confidence and high level reputations of Biomechanics Coaches results in the ability to increase your fees. We encourage and support you with methods to help get a return on your investment with us. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35276 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6385-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n<h4><b>Becoming a Registered IBA Biomechanics Coach</b><span style=\"font-weight: 400;\"> </span></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We care about our learners and the community of Biomechanics Coaches. We also listen to what you need to help you achieve your goals so we set up the Intrinsic Biomechanics Association to offer a membership that provides you with everything you need to help you stay up to date, gain CPDs, branded clothing, access to clinicians for their opinions, a platform to become eligible to present, a platform to become eligible to teach, safe forums and events to ask questions, learn and get support from hundreds of practising Biomechanics Coaches. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All our Biomechanics Coaches are just like you, passionate, motivated, looking to learn more, care about their clients, fascinated by human movement, and looking for solutions to tricky client issues. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-27906 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/05/DSC03820-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not ask your nearest Biomechanics Coach about their learning experience…or read below what some have said about it…</span>\n\n&nbsp;\n<h4><b>Biomechanics Coach Course Feedback</b></h4>\n&nbsp;\n<h3><em><span style=\"font-weight: 400;\">“Great mixture of practical and theory with back up from manuals and videos.”</span></em></h3>\n<h3></h3>\n<h3><em><span style=\"font-weight: 400;\">“Amazing experience and the teaching techniques used are great. The support is second to none.”</span></em></h3>\n<h3></h3>\n<h3><em><span style=\"font-weight: 400;\">“If you want to advance your skills, knowledge and experience and maintain a high level of professionalism, look no further.”</span></em></h3>\n&nbsp;\n\n<img class=\"size-medium wp-image-30682 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52ea-300x200.jpeg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if you want to book a place why not get in touch so we do just that by clicking here: </span><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">Become a Biomechanics Coach</a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Or</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are still unsure or have questions why not speak to one of our careers advisors </span>\n\n&nbsp;\n\n<a href=\"tel:%EF%BB%BF02038416151\">020 3841 6151</a><img class=\"DetectedNumberImg\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAB3RJTUUH3gcWEAU3+l7xlgAAApJJREFUOMuVkk1IVGEUht/z3TuO482s1FTIJH8wQYXsnzLLhZUWEtYuClqYiwosSyhJIZJiNkUZLoxaFEJZbQzKRQSGVIgI5cLf0HGc1HG8c0fHmTv3+75WQkSL67s85zzP5j0Emyls/upIS3LWqYqyvByJdX1p3GkAgGpXkODAoZVIrAVkuVxOtRDAVQBgduDi272aynB2ak7f+MsXcC2GVmoP3u8/Z1sQryBvIbh0hHNOBAHfgqGZMV6d0/Q90ZYgHI0VmKaZKQWHFAKQHN553RGzuMOWwAibwUg0NigF51IKSCG54NbPqXv7A7YEUdPs4UKcgeSDUnBAckOC3mCtyavv7kyt7ZJpde9erc6YXfiou6/EwVAmBQ9JwdvXJDj18Ft6JBJt9etGCknRJkG9qztbj2SEli9N+fzllmVNMKY88OfXxJIea+CWAP19WNbywZmXtSWNS8w8u1BoHWh670hK1Go8s4GO6Tk9zBTluKvi+uDp3FKuOlcwujgNZRWudn9OSdmwrsHjm2tI0pxeV9GJiYzUTdXzi4Z7zPNbYQpr1HMbe87vLuVR1YPZ8DxmlgJQ993oUjIzNm9fiZgdfQNDJXoo7FjUjbaCnK3Dk775PcPj0/FE1CSFeOFaH7LCIoRAQMWCCKK56AnU9NTkyoAedA8MjeZbXIIYw9ikN3t8aiZbAn7G1DsgeqR31nFthwuRcALai19ixPqB7ORtUFju4Ysj45NVFudEAAgSIAJB6gqjeiI8D76+bAJAbK8Fv+qDh4+gKqsSxz5WgLSTrcWQ0k1E5SBSiRgnxvpB7Kbx9tqnfxtR7hKkxkCOOHBDgwqJIIBWQD4FKbtA5JVCdEONm/hfpfyWBK5wQHBAGPgDf9c6qAYOxxMAAAAASUVORK5CYII=\" />\n\n&nbsp;\n\nrachel@biomechanicseducation.com\n\n&nbsp;\n\n<img class=\"size-medium wp-image-30685 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/image0-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />','Why Become a Biomechanics Coach?','','draft','closed','closed','','questioncould-using-machines-differently-hold-an-advantage','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',0,'https://www.biomechanicseducation.com/?p=36448',0,'post','',0),(36845,3,'2023-09-12 08:32:48','2023-09-12 08:32:48','<b>Introduction </b>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Today we will discuss the basics of understanding lifting biomechanics for personal trainers and strength coaches. The role of a personal trainer and strength coach is to coach lifting technique, so enhancing our understanding of lifting biomechanics will contribute to our programme design and may offer up more ideas for creativity, longevity, regressions and progressions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-4115 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" /> </span>\n\n&nbsp;\n\n<b>What is biomechanics?</b>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Biomechanics can be described as the study of human movement, focusing on how external forces act upon the neuro-musculoskeletal systems. This could also be described as ‘extrinsic’ biomechanics. In the field of ‘intrinsic’ biomechanics, the focus is on how these structures respond and react to these forces.   </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">As exercise professionals, we need to understand human movement in relation to this science to enable us to train clients to lift when they want to be stronger at something or reduce their risk of becoming injured when lifting things day to day. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Examples of extrinsic biomechanical influences during lifting are the ground underfoot, the object being lifted, the weight distribution and choice of hand position/grip, the reaction of gravity to that object along with how and where its force impacts upon the body, footwear, belts, straps and clothing.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Intrinsic biomechanical influences that can affect manual lifting are things like joint angles and limb lengths along with connective tissue and neural tension. </span>\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-33785 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1054776068-300x118.jpg\" alt=\"\" width=\"300\" height=\"118\" />  </span>\n\n&nbsp;\n\n<b>How does our intrinsic biomechanics impact lifting? </b>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">We already know that lifestyle creates adaptations and compensations inside our client\'s bodies, but how does this impact on lifting?</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Imagine an adaptation like subclinical muscle spasm (not clinical nor symptomatic) of the pelvic muscles, maybe from sitting for long periods. This client may come to you for help to develop their mobility or hip muscle strength. However, the adaptation may result in a compensation that leaves them with a functional leg length discrepancy FLLD). </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">This compensation alters the descending force being produced through the lower limb joints. It can also alter the ascending force being transferred up into the spine and upper body. </span>\n\n<span style=\"font-weight: 400;\">We may see an asymmetry during the lift by observing one shoulder being higher or the barbell itself not remaining level. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">It is quite possible the lift will be impacted by virtue of the fact that asymmetry and reduced muscle function can reduce stability, control and therefore strength and power. Some range of motion may also have been lost and muscle development can be inhibited. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Another example of this type of compensation might be a loose Midtarsal joint (MTJ)  in the foot, resulting in a flattening of the arch. This could encourage a knee valgus which results in a more medially loaded knee joint. These asymmetries may not be visible during lifting but could be measured in advance if the trainer has the right assessment skills. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">A simple pelvic function screen can reveal an FLLD to enable the trainer or coach to prescribe an intervention like a muscle energy technique (M.E.T), also known as an anti-spasm, prior to the lift to reduce the muscle spasm and improve muscle function along with symmetry. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-4116 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2-300x191.jpg\" alt=\"\" width=\"300\" height=\"191\" /> </span>\n\n&nbsp;\n\n<b>How does lifting impact our intrinsic biomechanics? </b>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">If we ask a client to perform a deadlift for example when they are not intrinsically prepared they may experience reduced grip strength from tightness in the median nerve for example. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">The shear force of a deadlift on the spine extensors could also increase risk should there be inhibition of either or both QL muscles. The trunk muscle\'s ability to stiffen adequately during a deadlift requires great biomechanical setup. So the body may grumble or complain when deadlifting to tell us the body isn’t yet prepared and we could experience ‘niggles’. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">It’s important to note here that these ‘compensations’ are ‘common’ modern ailments that have been ‘normalised’ so much so that it’s expected and accepted as part of life.</span>\n\n<span style=\"font-weight: 400;\">Understanding how to assess intrinsic biomechanics is a unique and specialised skill set that enables trainers and coaches to optimise performance while reducing risk when a client is lifting. The ability to measure, monitor and objectively benchmark our client\'s movement is a vital aspect of being a movement practitioner. </span>\n\n<span style=\"font-weight: 400;\">  </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-1030 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2016/06/skele-pelvis-300x214.jpg\" alt=\"\" width=\"300\" height=\"214\" />\n\n&nbsp;\n\n&nbsp;\n\n<b>The benefits of understanding lifting biomechanics </b>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">So to develop tissue tolerance &amp; load management for lifting we must take into account the reason the client is lifting in the first place. This paired with their intrinsic biomechanical measurements, their starting benchmarks and an understanding of lifting biomechanics to then create a programme that takes all of these considerations into account. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Is the recommended weight or load creating a compressive force or shear force on the body? How might shoulder width impact the lift? Can we learn ways to measure &amp; improve abdominal muscle stiffness for lifting? These might be great questions to start with.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<img class=\"size-medium wp-image-7303 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/06/Are-All-Biomechanical-Studies-Flawed_-And-Would-You-Like-To-Squat-Better_-Biomechanics-Coaching-300x150.png\" alt=\"\" width=\"300\" height=\"150\" />\n\n&nbsp;\n\n&nbsp;\n\n<b>The benefits of understanding biomechanics for overall movement </b>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Considering the integrated system during a squat/deadlift as the knee flexes, as the tibia inclines forwards over the forefoot, SubTalar Joint pronates, the plantar flexors lengthen, the Soleus muscle lengthens eccentrically, the nervous system is stretched. The weight of the body moves forward, the knee extensors lengthen eccentrically, hip extensors lengthen eccentrically, spine extensors stiffen and may lengthen depending upon technique and/or capacity under load. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">These are just a few examples of the way the body intrinsically interacts as a system during a lift and so any issues or compensation with any of these areas could influence the lift. Next, consider how much we think about each of these aspects when we bend over to pick up a towel we dropped, or if we go to pick a washing basket up. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If our client wants to develop strength for performance and risk reduction then could it be argued that conditioning their joints to experience various planes, loads, angles and alignments is best? Does cueing ‘knees in line’ degrade the knees ability to be tolerant to loads outside of ‘in line’? Should we train clients\' knees outside of the midline? If so, how far outside and what risk does it hold? </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Controversially we could argue that deliberately taking the knees into a valgus position during a squat is preparing the body for it should we take a fall. It might be wise to reduce the loads initially if doing this but leaning the body into ‘bad’ form or poor alignment could be ‘good’ for preparing a client\'s joints. This might be simply using body weight to start with.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">How would you feel about doing this? </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35135 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.17.56-300x287.png\" alt=\"\" width=\"300\" height=\"287\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Summary </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Coaching someone to lift should be about keeping things simple in application. </span>\n\n<span style=\"font-weight: 400;\">Ask yourself a few questions each time a client comes to you for a lifting programme. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">What’s the goal? </span>\n\n<span style=\"font-weight: 400;\">What’s the risk? </span>\n\n<span style=\"font-weight: 400;\">What are the influences? </span>\n\n<span style=\"font-weight: 400;\">What can I measure? </span>\n\n<span style=\"font-weight: 400;\"> </span>\n<h1>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">We can show you how to assess your clients and write programmes for improved movement quality and a lower risk of modern ailments </a></h1>\n<h2>Would you like to find out more about how to do this?</h2>\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Become a Biomechanics Coach </a><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">&lt;&lt;&lt;&lt;CLICK HERE</a>','Biomechanics of lifting: A guide for PTs & Strength Coaches','','draft','closed','closed','','biomechanics-of-lifting-a-guide-for-pts-strength-coaches','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',0,'https://www.biomechanicseducation.com/?p=36845',0,'post','',0),(37121,3,'2023-11-08 10:00:09','2023-11-08 10:00:09','<h2><strong>How can Biomechanics Effect Mobility?</strong></h2>\r\nIn today’s world, our need to move has significantly decreased. With food delivery at our fingertips, cars and public transport for travel, laptops for messaging, and video calls for virtual interactions, we are moving and loading our bodies much less. While these technological advancements offer convenience, they also lead to decreased physical activity, which can negatively impact our bodies.\r\n<h2><strong>Why Movement Matters</strong></h2>\r\nMovement is essential for maintaining the health of our body’s subsystems: bones, muscles, and nerves. Each requires regular stimulus and load to stay functional:\r\n\r\nBones gain density through impact and loading, and joint mobility is maintained by the motion that improves synovial fluid production.\r\n\r\nMuscles need strength, which comes from progressive overload.\r\n\r\nNerves require proprioceptive challenges and need to glide between structures to send efficient messages.\r\n<h2><img class=\"alignnone size-medium wp-image-37202\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/11/2-1-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></h2>\r\n<h2><strong>What is Biomechanics?</strong></h2>\r\nBiomechanics is the science of evaluating the relationship between the human body and the laws of physics. It involves understanding how force, gravity, motion, and momentum affect the body. For example, joint range of motion is influenced by:\r\n<ul>\r\n 	<li>The joint\'s ability to move</li>\r\n 	<li>Muscle strength and control</li>\r\n 	<li>Gravity’s effect on muscles and joints</li>\r\n 	<li>The length of levers involved</li>\r\n 	<li>Neuromuscular complexity related to balance and support</li>\r\n 	<li>Understanding Mobility</li>\r\n</ul>\r\nMobility refers to the range of motion in a joint, largely determined by genetics. Practitioners can analyze human movement to identify limitations in mobility. For instance, comparing current movement capabilities to previous ones can highlight reduced mobility. Common examples include difficulty bending knees and hips to pick something up, indicating potential joint limitations. Upper body mobility, especially in shoulders, can also be affected by prolonged sitting postures.\r\n\r\nEven nerve tightness can limit joint mobility by causing muscle stiffness, reducing synovial fluid production, and creating a cascade of effects throughout the body.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>How Biomechanics Enhances Mobility</h2>\r\nThe central nervous system (CNS) acts like the body’s software, sending messages from the brain to muscles via the spinal cord and peripheral nerves. Understanding biomechanics and anatomy helps in measuring and improving mobility. By assessing joint ranges and applying exercise prescriptions, practitioners can monitor and enhance clients’ mobility.\r\n<h2><img class=\"alignnone size-medium wp-image-37204\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/11/4-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></h2>\r\n<h2>Benefits of Biomechanics Knowledge</h2>\r\nA solid understanding of biomechanics is crucial for assessing movement risks and how different subsystems influence each other. Physical activity promotes optimal health by maintaining homeostasis between muscles, bones, and nerves. Expanding this knowledge to include mindset, hormones, and nutrition provides a holistic approach to health and fitness.\r\n\r\nGaining expertise in biomechanics can be invaluable for personal trainers and sports coaches, helping them feel more confident and effective in their roles. Additional training in Biomechanics Coaching or Strength and Conditioning can significantly enhance their ability to assist clients and athletes in achieving specific goals.\r\n<h3>Do You Need a Biomechanics Coach?</h3>\r\nImproving mobility can be as simple as moving more and exploring new movements. However, a Biomechanics Coach brings specialized training to assess the entire body and prescribe safe, effective techniques for improving mobility. These coaches are trained to identify injury risks and empower clients with knowledge, leading to long-term positive changes.\r\n<h3>Conclusion</h3>\r\nPractical skills in biomechanics, particularly intrinsic biomechanics, enable practitioners to assess and improve clients’ mobility effectively. This skill set not only enhances a trainer’s value but also leads to measurable improvements in clients\' movement quality.\r\n\r\nIf you\'re interested in becoming a Biomechanics Coach or expanding your knowledge in intrinsic biomechanics, consider the certified Biomechanics Coach course. For more information or to discuss your career options, contact our advisors.\r\n\r\nPhone: <em>020 3841 6151</em>\r\n\r\nEmail: info@biomechanicseducation.com','How can Biomechanics affect mobility?','','publish','closed','closed','','how-can-biomechanics-affect-mobility','','','2025-01-20 16:01:07','2025-01-20 16:01:07','',0,'https://www.biomechanicseducation.com/?p=37121',0,'post','',0),(37375,3,'2023-12-20 10:00:43','2023-12-20 10:00:43','This article will discuss the details of how learning about <a href=\"https://www.biomechanicseducation.com/intrinsic-biomechanics-understanding-the-components-that-make-our-bodies-move/\">intrinsic biomechanics</a> can help exercise professionals when working with individuals who have finished their rehabilitation, post injury. We may also have specialist skills in working with individuals with long term conditions who require rehabilitative type programming. Therefore a deeper understanding of anatomy and movement can be helpful and found through learning about the application of intrinsic biomechanical principles.\r\n<h2>What is rehabilitation?</h2>\r\n<blockquote><a href=\"https://www.biomechanicseducation.com/biomechanical-assessment-everything-you-need-to-know/\">Rehabilitation</a> is defined as “a set of interventions designed to optimise functioning and reduce disability in individuals with health conditions in interaction with their environment” (WHO)</blockquote>\r\nRehabilitation is the remit of clinically trained practitioners, also known as allied healthcare professionals (AHP). This would include osteopaths, chiropractors, physiotherapists and possibly degree level or level 5 sports therapists.\r\n<h2>What is prehabilitation?</h2>\r\n<blockquote>Prehabilitation is described as “aims to enhance general health and wellbeing prior to major surgery. By intervening in the preoperative period to modify behavioural and lifestyle risk factors, the \'physiological reserve\' of the patient is enhanced to buffer the surgical stress response” (NHS)</blockquote>\r\nPrehabilitation is also prescribed by clinically trained practitioners but could potentially be delivered by a trained exercise professional under the guidance of an AHP. This can depend upon the severity of symptoms, if they are present.\r\n\r\nNOTE: One additional consideration is to prehabilitate individuals who are not yet injured in a mode of \'preparation for movement\' due to the degradation of our movement quality from modern lifestyles that are creating modern ailments.\r\n<h2>What is post rehabilitation?</h2>\r\nThe skills of post rehabilitation are relatively new to exercise professionals due to advancements in medical interventions and surgeries and the increasing popularity of employing an exercise professional but also because of the increasing population that is living longer but with long term conditions.\r\n\r\nIt is vital we adopt an intrinsic biomechanical approach and modify our basic consultations and programming to support clients who have been released from their rehabilitation programme but don\'t yet feel physically robust or confident in movement.\r\n\r\nThese clients may be able to walk, brush their teeth and get to the bathroom, and maybe they look like they move relatively well, but it could be that they aren\'t yet confident in their strength and fitness. The key skills of biomechanical assessments allow personal trainers to evaluate these individuals while taking into account the area/s of their body that have been through rehabilitation. An example might be ACL reconstruction; once rehabilitation has stopped there may still be some work to do to achieve balance, stability, coordination and strength for optimal function and performance. A personal trainer would be well within their scope to exercise this clients pelvis function for example.\r\n\r\nExercise professionals are keen and perfectly capable of helping clients get stronger but lack basic <a href=\"https://www.biomechanicseducation.com/understanding-the-importance-of-intrinsic-biomechanical-principles/\">MSK assessment</a> skills to increase our confidence when moving individuals who have a medical history.\r\n<h3><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/12/email-image-1.-3-300x169.png\" alt=\"\" width=\"444\" height=\"250\" /></h3>\r\n<h2>Work like a clinician</h2>\r\nWe can adopt a model of practice (like intrinsic biomechanics) to deepen our understanding of anatomy, human movement and the assessment of physical limitations. This additional training in neuro-musculoskeletal (MSK) assessment along with the ability to critically analyse, write reports and offer meaningful transfer of information, enables us to ‘work like a clinician’ while being the exercise experts.\r\n\r\nThis advanced level of understanding anatomy and by practising the integrated system approach through evaluating movement of all body parts in isolation, allows us to identify root causes of movement issues. This interpretation of how each substructure responds to movement (or a lack of it) along with the systemised approach of ruling things out, elevates our skill set to bring us in line with our clinical allies.\r\n\r\nBiomechanical frame works allow a logical evidence based approach, removing bias for improved confidence in decision making and increasing options for intervention.\r\n<h2>Biomechanical Rehabilitative Frames</h2>\r\n<blockquote>Biomechanics may be defined as the application of the discipline of mechanics to biologic systems. Rehabilitation is a practice dedicated to the restoration of function to a body impaired by injury or disease. Because rehabilitation is focused on the form and motion of a system of interrelated parts, an appreciation for biomechanical theory and application is appropriate.</blockquote>\r\nHaving a good understanding of the framework and processes for rehabilitation will inform exercise professionals with additional skills in intrinsic biomechanics. The phasic approach allows us to best advise clients about who is the right professional at the right time for each area of their recovery. The intrinsic biomechanical approach also allows for a better understanding of the use of appropriate communication skills to support the client, whilst also knowing how and when to refer.\r\n<h2>Conclusion</h2>\r\nLooking at a framework we can evaluate who is the right professional for the specific phase the client is experiencing.\r\n<ul>\r\n 	<li>Phase 1 - Control Pain and Swelling.</li>\r\n 	<li>Phase 2 - Improve Range of Motion and/or Flexibility.</li>\r\n 	<li>Phase 3 - Improve Strength &amp; Begin Proprioception/Balance Training.</li>\r\n 	<li>Phase 4 - Proprioception/Balance Training &amp; Sport-Specific Training.</li>\r\n</ul>\r\nRehabilitation - Phase 1-3\r\n\r\nPrehabilitation - Phase 2-3\r\n\r\nPost rehabilitation - Phase 2-4\r\n\r\nClinician (AHP) - Phase 1-2\r\n\r\nSports therapists - Phase 1-3\r\n\r\nExercise professionals - Phase 2-4\r\n\r\nAs we can see here there is a degree of cross over and many practitioners today are hybrids, but this demonstrates the importance of working within a multidisciplinary team. Biomechanics Coaches are trained for this working environment to make decisions as part of a team through professional discussion.\r\n\r\nSo hopefully by now this article has revealed how we believe understanding intrinsic biomechanics helps rehabilitation. Also how exercise professionals can use the skills of Biomechanics Coaching to support a clinical team in the long term care of clients post injury.','How does understanding intrinsic biomechanics help rehabilitation?','','draft','closed','closed','','how-does-understanding-intrinsic-biomechanics-help-rehabilitation','','','2024-07-16 15:42:08','2024-07-16 15:42:08','',0,'https://www.biomechanicseducation.com/?p=37375',0,'post','',0),(37635,0,'2024-01-18 10:17:52','2024-01-18 10:17:52','','96a40932-e0c0-42a0-9437-d6186e878608','','inherit','closed','closed','','96a40932-e0c0-42a0-9437-d6186e878608','','','2024-01-18 10:17:52','2024-01-18 10:17:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/96a40932-e0c0-42a0-9437-d6186e878608-1.jpg',0,'attachment','image/jpeg',0),(37636,0,'2024-01-18 10:18:19','2024-01-18 10:18:19','','e488fdf8-5606-486f-b0af-66ef8325a023','','inherit','closed','closed','','e488fdf8-5606-486f-b0af-66ef8325a023','','','2024-01-18 10:18:19','2024-01-18 10:18:19','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/e488fdf8-5606-486f-b0af-66ef8325a023-1.jpg',0,'attachment','image/jpeg',0),(37640,0,'2024-01-18 11:59:01','2024-01-18 11:59:01','','IMG_8328','','inherit','closed','closed','','img_8328','','','2024-01-18 11:59:01','2024-01-18 11:59:01','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/IMG_8328-1.jpeg',0,'attachment','image/jpeg',0),(37641,0,'2024-01-18 11:59:07','2024-01-18 11:59:07','','IMG_8327','','inherit','closed','closed','','img_8327','','','2024-01-18 11:59:07','2024-01-18 11:59:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/IMG_8327-1.jpeg',0,'attachment','image/jpeg',0),(37981,0,'2024-03-11 09:49:51','2024-03-11 09:49:51','','IMG_0920','','inherit','closed','closed','','img_0920','','','2024-03-11 09:49:51','2024-03-11 09:49:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/IMG_0920-1.jpg',0,'attachment','image/jpeg',0),(37989,0,'2024-03-12 09:21:54','2024-03-12 09:21:54','','Screenshot 2024-03-12 at 09.21.42','','inherit','closed','closed','','screenshot-2024-03-12-at-09-21-42','','','2024-03-12 09:21:54','2024-03-12 09:21:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Screenshot-2024-03-12-at-09.21.42-1.png',0,'attachment','image/png',0),(37990,0,'2024-03-12 09:23:35','2024-03-12 09:23:35','','JessHairFix','','inherit','closed','closed','','jesshairfix','','','2024-03-12 09:23:35','2024-03-12 09:23:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/JessHairFix-scaled-1.jpg',0,'attachment','image/jpeg',0),(37997,0,'2024-03-13 12:06:30','2024-03-13 12:06:30','','FINDING YOUR ELEMENT WORKBOOK','','inherit','closed','closed','','finding-your-element-workbook','','','2024-03-13 12:06:30','2024-03-13 12:06:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/03/FINDING-YOUR-ELEMENT-WORKBOOK-1.pdf',0,'attachment','application/pdf',0),(37998,0,'2024-03-13 12:06:44','2024-03-13 12:06:44','','IBA Business Group Workbook','','inherit','closed','closed','','iba-business-group-workbook','','','2024-03-13 12:06:44','2024-03-13 12:06:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/03/IBA-Business-Group-Workbook-1.pdf',0,'attachment','application/pdf',0),(38011,0,'2024-03-14 15:31:14','2024-03-14 15:31:14','','2d24i6hf','','inherit','closed','closed','','2d24i6hf','','','2024-03-14 15:31:14','2024-03-14 15:31:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/03/2d24i6hf-1.png',0,'attachment','image/png',0),(38017,0,'2024-03-14 16:05:10','2024-03-14 16:05:10','','FFG_Wordmark_Black_RGB-01','','inherit','closed','closed','','ffg_wordmark_black_rgb-01-3','','','2024-03-14 16:05:10','2024-03-14 16:05:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/03/FFG_Wordmark_Black_RGB-01-e1710432922797-1.png',0,'attachment','image/png',0),(38023,0,'2024-03-14 16:26:54','2024-03-14 16:26:54','','FFG_Wordmark_White_RGB-01','','inherit','closed','closed','','ffg_wordmark_white_rgb-01','','','2024-03-14 16:26:54','2024-03-14 16:26:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/03/FFG_Wordmark_White_RGB-01-e1710433635803-1.png',0,'attachment','image/png',0),(38037,0,'2024-03-15 08:48:42','2024-03-15 08:48:42','','MIRREN KWP WALKER 2','','inherit','closed','closed','','mirren-kwp-walker-2','','','2024-08-01 08:40:19','2024-08-01 08:40:19','',39231,'https://biomechanicseducation.com/wp-content/uploads/2018/01/MIRREN-KWP-WALKER-2-scaled-1.jpg',0,'attachment','image/jpeg',0),(38038,0,'2024-03-15 09:24:36','2024-03-15 09:24:36','','Personal-trainer-teaching-class-900x600','','inherit','closed','closed','','personal-trainer-teaching-class-900x600','','','2024-07-25 14:25:58','2024-07-25 14:25:58','',39168,'https://biomechanicseducation.com/wp-content/uploads/2024/03/Personal-trainer-teaching-class-900x600-1-1.webp',0,'attachment','image/webp',0),(38136,0,'2024-03-26 13:00:45','2024-03-26 13:00:45','','FF_biomechanics logo (1)','','inherit','closed','closed','','ff_biomechanics-logo-1','','','2024-03-26 13:00:45','2024-03-26 13:00:45','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/03/FF_biomechanics-logo-1-2.png',0,'attachment','image/png',0),(38138,0,'2024-03-26 13:04:41','2024-03-26 13:04:41','','FF_biomechanics logo (1)','','inherit','closed','closed','','ff_biomechanics-logo-1-2','','','2024-03-26 13:04:41','2024-03-26 13:04:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/03/FF_biomechanics-logo-1-1-1.png',0,'attachment','image/png',0),(38316,0,'2024-04-19 10:21:48','2024-04-19 10:21:48','','core training','','inherit','closed','closed','','core-training-2','','','2024-09-06 11:15:17','2024-09-06 11:15:17','',761,'https://biomechanicseducation.com/wp-content/uploads/2024/04/core-training-1.webp',0,'attachment','image/webp',0),(38319,0,'2024-04-19 10:24:28','2024-04-19 10:24:28','','coaching fitness online','','inherit','closed','closed','','coaching-fitness-online','','','2024-07-24 13:39:33','2024-07-24 13:39:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/04/coaching-fitness-online-1.webp',0,'attachment','image/webp',0),(38321,0,'2024-04-19 12:48:49','2024-04-19 12:48:49','','building your fitness business','','inherit','closed','closed','','building-your-gitness-business','','','2024-09-12 11:22:37','2024-09-12 11:22:37','',39066,'https://biomechanicseducation.com/wp-content/uploads/2024/04/building-your-gitness-business-1.webp',0,'attachment','image/webp',0),(38323,0,'2024-04-19 13:51:02','2024-04-19 13:51:02','','behaviour change coaching','','inherit','closed','closed','','behaviour-change-coaching','','','2024-09-17 07:21:26','2024-09-17 07:21:26','',39284,'https://biomechanicseducation.com/wp-content/uploads/2024/04/behaviour-change-coaching-1.webp',0,'attachment','image/webp',0),(38324,0,'2024-04-19 13:57:58','2024-04-19 13:57:58','','FutureFitRebrand-Images-Gym-OnlineRes-169-900x600','','inherit','closed','closed','','futurefitrebrand-images-gym-onlineres-169-900x600','','','2024-04-19 13:57:58','2024-04-19 13:57:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/04/FutureFitRebrand-Images-Gym-OnlineRes-169-900x600-1-1.webp',0,'attachment','image/webp',0),(38343,0,'2024-04-22 13:06:02','2024-04-22 13:06:02','','FutureFitRebrand-Images-LV3PT-38-900x600','','inherit','closed','closed','','futurefitrebrand-images-lv3pt-38-900x600','','','2024-04-22 13:06:02','2024-04-22 13:06:02','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/04/FutureFitRebrand-Images-LV3PT-38-900x600-1-1.webp',0,'attachment','image/webp',0),(38344,0,'2024-04-22 13:10:58','2024-04-22 13:10:58','','2-Overview-1200x675','','inherit','closed','closed','','2-overview-1200x675','','','2024-07-24 13:35:29','2024-07-24 13:35:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/04/2-Overview-1200x675-1-1.webp',0,'attachment','image/webp',0),(38345,0,'2024-04-22 13:11:30','2024-04-22 13:11:30','','2-Overview-1200x675','','inherit','closed','closed','','2-overview-1200x675-2','','','2024-04-22 13:11:30','2024-04-22 13:11:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/04/2-Overview-1200x675-2-1.webp',0,'attachment','image/webp',0),(38347,0,'2024-04-22 13:22:10','2024-04-22 13:22:10','','Testimonial-2-Pilates-900x600','','inherit','closed','closed','','testimonial-2-pilates-900x600','','','2024-04-22 13:22:10','2024-04-22 13:22:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/04/Testimonial-2-Pilates-900x600-1-1.webp',0,'attachment','image/webp',0),(38348,0,'2024-04-22 13:28:33','2024-04-22 13:28:33','','shutterstock_309156773-900x600','','inherit','closed','closed','','shutterstock_309156773-900x600','','','2024-04-22 13:28:33','2024-04-22 13:28:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/04/shutterstock_309156773-900x600-1-1.webp',0,'attachment','image/webp',0),(38352,0,'2024-04-22 15:01:57','2024-04-22 15:01:57','','LC_12-900x600','','inherit','closed','closed','','lc_12-900x600','','','2024-04-22 15:01:57','2024-04-22 15:01:57','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/04/LC_12-900x600-1-1.webp',0,'attachment','image/webp',0),(38354,0,'2024-04-22 15:18:05','2024-04-22 15:18:05','','Personal-trainer-teaching-class-900x600 (1)','','inherit','closed','closed','','personal-trainer-teaching-class-900x600-1','','','2024-04-22 15:18:05','2024-04-22 15:18:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/04/Personal-trainer-teaching-class-900x600-1-1.webp',0,'attachment','image/webp',0),(38356,0,'2024-04-22 15:22:12','2024-04-22 15:22:12','','Gym-Instructor-17-900x600','','inherit','closed','closed','','gym-instructor-17-900x600','','','2024-04-22 15:22:12','2024-04-22 15:22:12','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/04/Gym-Instructor-17-900x600-1-1.webp',0,'attachment','image/webp',0),(38366,0,'2024-04-24 10:21:45','2024-04-24 10:21:45','','Qualifications-2-900x600 (1)','','inherit','closed','closed','','qualifications-2-900x600-1','','','2024-07-24 13:35:29','2024-07-24 13:35:29','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/04/Qualifications-2-900x600-1-1.webp',0,'attachment','image/webp',0),(38369,0,'2024-04-24 15:02:00','2024-04-24 15:02:00','','9001 RGB White','','inherit','closed','closed','','9001-rgb-white-2','','','2024-04-24 15:02:00','2024-04-24 15:02:00','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/04/9001-RGB-White-1.png',0,'attachment','image/png',0),(38585,0,'2024-05-31 07:24:10','2024-05-31 07:24:10','','Alanna-63','','inherit','closed','closed','','alanna-63','','','2024-05-31 07:24:10','2024-05-31 07:24:10','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Alanna-63-scaled-1.jpg',0,'attachment','image/jpeg',0),(38586,0,'2024-05-31 07:36:18','2024-05-31 07:36:18','','Screenshot 2024-05-31 at 08.36.04','','inherit','closed','closed','','screenshot-2024-05-31-at-08-36-04','','','2024-05-31 07:36:18','2024-05-31 07:36:18','',0,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Screenshot-2024-05-31-at-08.36.04-1.png',0,'attachment','image/png',0),(38587,0,'2015-12-17 13:55:07','2015-12-17 13:55:07','','logo','','inherit','open','closed','','logo','','','2015-12-17 13:55:07','2015-12-17 13:55:07','',0,'https://biomechanicseducation.com/wp-content/uploads/2015/12/logo-1.jpg',0,'attachment','image/jpeg',0),(38588,0,'2015-12-17 13:55:14','2015-12-17 13:55:14','','cropped-logo.jpg','','inherit','open','closed','','cropped-logo-jpg','','','2015-12-17 13:55:14','2015-12-17 13:55:14','',0,'https://biomechanicseducation.com/wp-content/uploads/2015/12/cropped-logo-e1450943806897-1.jpg',0,'attachment','image/jpeg',0),(38589,0,'2015-12-24 07:57:38','2015-12-24 07:57:38','','cropped-logo','','inherit','open','closed','','cropped-logo','','','2015-12-24 07:57:38','2015-12-24 07:57:38','',0,'https://biomechanicseducation.com/wp-content/uploads/2015/12/cropped-logo-1-e1450943874492-1.jpg',0,'attachment','image/jpeg',0),(38590,0,'2016-03-09 13:44:33','2016-03-09 13:44:33','','logo-dance-hd','','inherit','open','closed','','logo-dance-hd','','','2016-03-09 13:44:33','2016-03-09 13:44:33','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-12.png',0,'attachment','image/png',0),(38591,0,'2016-03-09 13:44:35','2016-03-09 13:44:35','','logo-dance','','inherit','open','closed','','logo-dance','','','2016-03-09 13:44:35','2016-03-09 13:44:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-1-1.png',0,'attachment','image/png',0),(38592,0,'2016-03-09 15:06:55','2016-03-09 15:06:55','','icomoon-brankic-32x32','','inherit','open','closed','','icomoon-brankic-32x32','','','2016-03-09 15:06:55','2016-03-09 15:06:55','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-7.gif',0,'attachment','image/gif',0),(38593,0,'2016-03-09 16:01:41','2016-03-09 16:01:41','','icomoon-elegent-line-icons-32x32','','inherit','open','closed','','icomoon-elegent-line-icons-32x32','','','2016-03-09 16:01:41','2016-03-09 16:01:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2016/03/noimage-1-1.gif',0,'attachment','image/gif',0),(38594,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','<span style=\"font-weight: 400;\">This article will discuss the details of how learning about <a href=\"https://www.biomechanicseducation.com/intrinsic-biomechanics-understanding-the-components-that-make-our-bodies-move/\">intrinsic biomechanics</a> can help exercise professionals when working with individuals who have finished their rehabilitation, post injury. We may also have specialist skills in working with individuals with long term conditions who require rehabilitative type programming. Therefore a deeper understanding of anatomy and movement can be helpful and found through learning about the application of intrinsic biomechanical principles.   </span>\n<h3>What is rehabilitation?</h3>\n<blockquote><span style=\"font-weight: 400;\"><a href=\"https://www.biomechanicseducation.com/biomechanical-assessment-everything-you-need-to-know/\">Rehabilitation</a> is defined as </span><i><span style=\"font-weight: 400;\">“</span></i><i><span style=\"font-weight: 400;\">a set of interventions designed to optimise functioning and reduce disability in individuals with health conditions in interaction with their environment</span></i><i><span style=\"font-weight: 400;\">” </span></i><span style=\"font-weight: 400;\">(WHO)</span></blockquote>\n<span style=\"font-weight: 400;\">Rehabilitation is the remit of clinically trained practitioners, also known as allied healthcare professionals (AHP). This would include osteopaths, chiropractors, physiotherapists and possibly degree level or level 5 sports therapists. </span>\n<h3>What is prehabilitation?</h3>\n<blockquote><span style=\"font-weight: 400;\">Prehabilitation is described as </span><i><span style=\"font-weight: 400;\">“aims to </span></i><i><span style=\"font-weight: 400;\">enhance general health and wellbeing prior to major surgery</span></i><i><span style=\"font-weight: 400;\">. By intervening in the preoperative period to modify behavioural and lifestyle risk factors, the \'physiological reserve\' of the patient is enhanced to buffer the surgical stress response</span></i><span style=\"font-weight: 400;\">” (NHS)</span></blockquote>\n<span style=\"font-weight: 400;\">Prehabilitation is also prescribed by clinically trained practitioners but could potentially be delivered by a trained exercise professional under the guidance of an AHP. This can depend upon the severity of symptoms, if they are present. </span>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">NOTE: One additional consideration is to prehabilitate individuals who are not yet injured in a mode of \'<strong><em>preparation for movement\'</em></strong> due to the degradation of our movement quality from modern lifestyles that are creating modern ailments. </span></p>\n\n<h3>What is post rehabilitation?</h3>\n<span style=\"font-weight: 400;\">The skills of post rehabilitation are relatively new to exercise professionals due to advancements in medical interventions and surgeries and the increasing popularity of employing an exercise professional but also because of the increasing population that is living longer but with long term conditions. </span>\n\n<span style=\"font-weight: 400;\">It is vital</span><span style=\"font-weight: 400;\"> we adopt an intrinsic biomechanical approach and modify our basic consultations and programming to support clients who have been released from their rehabilitation programme but don\'t yet feel physically robust or confident in movement. </span>\n\n<span style=\"font-weight: 400;\">These clients may be able to walk, brush their teeth and get to the bathroom, and maybe they look like they move relatively well, but it could be that they aren\'t yet confident in their strength and fitness. The key skills of biomechanical assessments allow personal trainers to evaluate these individuals while taking into account the area/s of their body that have been through rehabilitation. An example might be ACL reconstruction; once rehabilitation has stopped there may still be some work to do to achieve balance, stability, coordination and strength for optimal function and performance. A personal trainer would be well within their scope to exercise this clients pelvis function for example.</span>\n\n<span style=\"font-weight: 400;\">Exercise professionals are keen and perfectly capable of helping clients get stronger but lack basic <a href=\"https://www.biomechanicseducation.com/understanding-the-importance-of-intrinsic-biomechanical-principles/\">MSK assessment</a> skills to increase our confidence when moving individuals who have a medical history. </span>\n<h3></h3>\n<h3><img class=\" wp-image-37381 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/12/email-image-1.-3-300x169.png\" alt=\"\" width=\"444\" height=\"250\" /></h3>\n<h3>Work like a clinician</h3>\n<span style=\"font-weight: 400;\">We can adopt a model of practice (like intrinsic biomechanics) to deepen our understanding of anatomy, human movement and the assessment of physical limitations. This additional training in neuro-musculoskeletal (MSK) assessment along with the ability to critically analyse, write reports and offer meaningful transfer of information, enables us to ‘work like a clinician’ while being the exercise experts.</span>\n\n<span style=\"font-weight: 400;\">This advanced level of understanding anatomy and by practising the integrated system approach through evaluating movement of all body parts in isolation, allows us to identify root causes of movement issues. This interpretation of how each substructure responds to movement (or a lack of it) along with the systemised approach of ruling things out, elevates our skill set to bring us in line with our clinical allies. </span>\n\n<span style=\"font-weight: 400;\">Biomechanical frame works allow a logical evidence based approach, removing bias for improved confidence in decision making and increasing options for intervention.</span>\n<h3>Biomechanical Rehabilitative Frames<span style=\"font-weight: 400;\"> </span></h3>\n<blockquote><i><span style=\"font-weight: 400;\">Biomechanics may be defined as the application of the discipline of mechanics to biologic systems. Rehabilitation is a practice dedicated to the restoration of function to a body impaired by injury or disease. Because rehabilitation is focused on the form and motion of a system of interrelated parts, an appreciation for biomechanical theory and application is appropriate.</span></i></blockquote>\n<span style=\"font-weight: 400;\">Having a good understanding of the framework and processes for rehabilitation will inform exercise professionals with additional skills in intrinsic biomechanics. The phasic approach allows us to best advise clients about who is the right professional at the right time for each area of their recovery. The intrinsic biomechanical approach also allows for a better understanding of the use of appropriate communication skills to support the client, whilst also knowing how and when to refer.</span>\n<h3>Conclusion</h3>\n<span style=\"font-weight: 400;\">Looking at a framework we can evaluate who is the right professional for the specific phase the client is experiencing. </span>\n<ul>\n 	<li><span style=\"font-weight: 400;\"><strong>Phase 1</strong> - Control Pain and Swelling. </span></li>\n 	<li><span style=\"font-weight: 400;\"><strong>Phase 2</strong> - Improve Range of Motion and/or Flexibility. </span></li>\n 	<li><span style=\"font-weight: 400;\"><strong>Phase 3</strong> - Improve Strength &amp; Begin Proprioception/Balance Training. </span></li>\n 	<li><span style=\"font-weight: 400;\"><strong>Phase 4</strong> - Proprioception/Balance Training &amp; Sport-Specific Training.</span></li>\n</ul>\n<b>Rehabilitation - Phase 1-3 </b>\n\n<b>Prehabilitation - Phase 2-3</b>\n\n<b>Post rehabilitation - Phase 2-4</b>\n\nClinician (AHP) - Phase 1-2\n\nSports therapists - Phase 1-3\n\nExercise professionals - Phase 2-4\n\n<span style=\"font-weight: 400;\">As we can see here there is a degree of cross over and many practitioners today are hybrids, but this demonstrates the importance of working within a multidisciplinary team. Biomechanics Coaches are trained for this working environment to make decisions as part of a team through professional discussion. </span>\n\n<span style=\"font-weight: 400;\">So hopefully by now this article has revealed how we believe understanding intrinsic biomechanics helps rehabilitation. Also how exercise professionals can use the skills of Biomechanics Coaching to support a clinical team in the long term care of clients post injury. </span>','How does understanding intrinsic biomechanics help rehabilitation?','','inherit','closed','closed','','37375-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',37375,'https://biomechanicseducation.com/?p=38594',0,'revision','',0),(38595,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','<span style=\"font-weight: 400;\">Moving is becoming less necessary for our daily requirements. Food can be ordered from phones, travel can be achieved by cars and public transport, messages can be sent from laptops, and we can video call to ‘see’ someone. While advances in technology may be good in many ways, they are also resulting in us moving and loading our bodies far less. </span>\n\n<span style=\"font-weight: 400;\">We might question why less movement is a bad thing since it’s a natural response to reserve energy. However, the body’s subsystems, bones, muscles and nerves, require stimulus and load to maintain tolerance for when we do need to load them. Let’s break it down:</span>\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Bones</b><span style=\"font-weight: 400;\"> require density which is gained through impact and loading. They also require mobility around the joints which we get by improving synovial fluids through motion of that joint. </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Muscles</b><span style=\"font-weight: 400;\"> require strength through progressive overload. </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b>Nerves</b><span style=\"font-weight: 400;\"> require stimulus by way of proprioceptive challenges and gliding between the other structures to enable efficient messaging.</span></li>\n</ul>\n<span style=\"font-weight: 400;\">So to explore the question, “How can understanding biomechanics affect mobility?” Let’s dissect the meaning behind the question.</span>\n<h2>What is biomechanics?</h2>\n<a href=\"https://www.biomechanicseducation.com/what-is-biomechanics/\"><span style=\"font-weight: 400;\">Biomechanics</span></a><span style=\"font-weight: 400;\">, or the study of it, is a science that evaluates the relationship between the human body and the law of physics. The human body, made up of the substructures described above, is influenced by force, gravity, motion etc. Physics being force, levers, motion, momentum, gravity. </span>\n\n<span style=\"font-weight: 400;\">Ranges of motion for example will be affected by the joints ability to move, the muscles ability to produce and control that movement, how gravity affects the loads on the muscles and joints, the length of the levers involved, and of course the neuromuscular complexity related to the base up support and balance.</span>\n<h2>What is mobility?</h2>\n<span style=\"font-weight: 400;\">Mobility is the measure of a joint range of motion. Interestingly mobility is predominantly determined by genetics.</span>\n\n<span style=\"font-weight: 400;\">Practitioners can study human movement data to identify if someone’s mobility is limited or maybe a client will report a feeling of reduced mobility. They might compare how they move today with how they moved previously. An example of this might be how much they can flex their knees and hips to pick something up from the floor. </span>\n\n<span style=\"font-weight: 400;\">If they notice the hip or knee or both feel like they are limiting the movement, they might have a reduction in the joints mobility. </span>\n\n<span style=\"font-weight: 400;\">Upper extremity mobility can be harder to measure in shoulders because this joint is much shallower and can move in all directions. However our more common and prolonged sitting postures can reduce the mobility of movement in the upper body.</span>\n\n<span style=\"font-weight: 400;\">Even tightness in the nervous system can reduce mobility of a joint by stiffening or tightening a muscle to protect the nerve. The joint that this muscle crosses therefore becomes limited by this stiffness which reduces the amount of synovial fluid produced, resulting in a knock on effect throughout the integrated system. </span>\n<h2><img class=\"alignnone size-medium wp-image-37202\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/11/2-1-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></h2>\n<h2>How does biomechanics affect mobility?</h2>\n<span style=\"font-weight: 400;\">The central nervous system is like the software of the human body. It sends messages from the brain to the spinal cord. These messages continue through the peripheral nerves to communicate to the muscles about the degree of tone. </span>\n\n<span style=\"font-weight: 400;\">If we can learn about the laws of biomechanics and human anatomy, we can learn how to measure mobility. With the ability to measure things like joint ranges, and our training in exercise prescription, we can then recommend interventions, re-measure and have a better understanding of how to monitor and improve our clients overall mobility. </span>\n<h2>What are the benefits of understanding biomechanics for improved mobility?</h2>\n<span style=\"font-weight: 400;\">A Biomechanical basis for mobilisation is key to understanding the amount of movement might hold risk, but also how the subsystems influence each other. </span>\n\n<span style=\"font-weight: 400;\">Physical activity requires homeostasis for optimum health in movement. We could include the way the muscles, bones and nerves link together or we could go into a wider perspective taking into account mindset, hormones, and nutrition amongst other things. </span>\n\n<span style=\"font-weight: 400;\">This is why personal training or sports coaching can feel quite overwhelming in the early days of qualifying. Therefore gaining additional skills in subjects like Biomechanics Coaching or Strength and Conditioning can really help broaden our knowledge to help more clients or athletes with their specific goals. </span>\n<h2><img class=\"alignnone size-medium wp-image-37204\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/11/4-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></h2>\n<h2>Do you need a Biomechanics Coach to improve mobility?</h2>\n<span style=\"font-weight: 400;\">Mobility could be improved by simply moving well, moving more, and maybe trying new movements. However, </span><a href=\"https://www.biomechanicseducation.com/questioncould-using-machines-differently-hold-an-advantage/\"><span style=\"font-weight: 400;\">Biomechanics Coaches</span></a><span style=\"font-weight: 400;\"> are specifically trained in how to assess the entire body, and then how to prescribe techniques that are safe and very effective for improving mobility amongst other things. </span>\n\n<span style=\"font-weight: 400;\">Their special training in intrinsic biomechanics allows them to assess the entire human body for risk of injury. They are also trained to coach clients about how to help themselves which is extremely empowering therefore more likely to result in long term changes. </span>\n<h2>Conclusion</h2>\n<span style=\"font-weight: 400;\">Learning skills in the practical application of biomechanics and in particular </span><a href=\"https://www.biomechanicseducation.com/intrinsic-biomechanics-understanding-the-components-that-make-our-bodies-move/\"><span style=\"font-weight: 400;\">intrinsic biomechanics</span></a><span style=\"font-weight: 400;\">, can allow practitioners to assess their clients\' mobility. This allows the practitioners to prove their value when they show the individuals mobility improving through retesting their movement quality </span>\n\n<span style=\"font-weight: 400;\">So skills like Biomechanics Coaching are the perfect solution for PTs to commercialise their assessment skills.</span>\n\n&nbsp;\n\nDo you want to become Biomechanics Coach? Or expand on your intrinsic biomechanics to enhance your skillset? Then the certified <a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">Biomechanics Coach</a> course is for you.\n\nIf you are still unsure or have questions why not speak to one of our careers advisors who will be happy to help.\n\n<a href=\"tel:%EF%BB%BF02038416151\">020 3841 6151</a><img class=\"DetectedNumberImg\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAB3RJTUUH3gcWEAU3+l7xlgAAApJJREFUOMuVkk1IVGEUht/z3TuO482s1FTIJH8wQYXsnzLLhZUWEtYuClqYiwosSyhJIZJiNkUZLoxaFEJZbQzKRQSGVIgI5cLf0HGc1HG8c0fHmTv3+75WQkSL67s85zzP5j0Emyls/upIS3LWqYqyvByJdX1p3GkAgGpXkODAoZVIrAVkuVxOtRDAVQBgduDi272aynB2ak7f+MsXcC2GVmoP3u8/Z1sQryBvIbh0hHNOBAHfgqGZMV6d0/Q90ZYgHI0VmKaZKQWHFAKQHN553RGzuMOWwAibwUg0NigF51IKSCG54NbPqXv7A7YEUdPs4UKcgeSDUnBAckOC3mCtyavv7kyt7ZJpde9erc6YXfiou6/EwVAmBQ9JwdvXJDj18Ft6JBJt9etGCknRJkG9qztbj2SEli9N+fzllmVNMKY88OfXxJIea+CWAP19WNbywZmXtSWNS8w8u1BoHWh670hK1Go8s4GO6Tk9zBTluKvi+uDp3FKuOlcwujgNZRWudn9OSdmwrsHjm2tI0pxeV9GJiYzUTdXzi4Z7zPNbYQpr1HMbe87vLuVR1YPZ8DxmlgJQ993oUjIzNm9fiZgdfQNDJXoo7FjUjbaCnK3Dk775PcPj0/FE1CSFeOFaH7LCIoRAQMWCCKK56AnU9NTkyoAedA8MjeZbXIIYw9ikN3t8aiZbAn7G1DsgeqR31nFthwuRcALai19ixPqB7ORtUFju4Ysj45NVFudEAAgSIAJB6gqjeiI8D76+bAJAbK8Fv+qDh4+gKqsSxz5WgLSTrcWQ0k1E5SBSiRgnxvpB7Kbx9tqnfxtR7hKkxkCOOHBDgwqJIIBWQD4FKbtA5JVCdEONm/hfpfyWBK5wQHBAGPgDf9c6qAYOxxMAAAAASUVORK5CYII=\" />\n\nrachel@biomechanicseducation.com','How can Biomechanics affect mobility?','','inherit','closed','closed','','37121-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',37121,'https://biomechanicseducation.com/?p=38595',0,'revision','',0),(38596,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','<strong>“Move Your Spine” (#MoveYourSpine)</strong> was announced as the theme of World Spine Day 16th October 2023. So I wanted to share some simple ideas for assessing and improving your spine mobility as a way of celebrating our efforts to improve spine mobility awareness, health and to contribute to reducing spine stiffness, discomfort and ultimately pain.\n<h2>Did you know...?</h2>\n<blockquote><em>An estimated one billion people suffer with spinal pain with 540 million people at any one time. Low back pain remains the leading cause of years lived with disability on the planet. Spinal pain and disability are more prevalent than cancer, stroke, heart disease, diabetes, and Alzheimer’s Disease combined. </em></blockquote>\n*As always this comes with a caveat that anyone beginning a new movement programme should seek the guidance of their qualified local Biomechanics Coach or movement practitioner in advance and this is not the only solution for back pain.\n\n&nbsp;\n<h2>Spine Flexion &amp; Extension Tests</h2>\n<img class=\"aligncenter wp-image-26458\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.43.34-1.png\" alt=\"\" width=\"745\" height=\"263\" />\n\nDuring lockdown I noticed my own spinal mobility reduced considerably due to the increased hours I was spending at a desk for work while also having limited access to my usual movement programme. Although I didn\'t have back pain, I did experience the discomfort of spine stiffness which can be an indicator that I may be at risk of pain if I didn\'t change something soon. So I began to take myself through assessments and exercises to improve my spine health.\n\nFirstly I started by filming/photographing some spine flexion &amp; extension positions that I was aiming to improve as part of my iMoveFreely flow movement routine. This meant I had my first and most relevant benchmarks for my spine health project. They were the positions in which I had noticed my lack of movement quality so had relevance.\n\nIs there a position you feel is particularly limited? Maybe it\'s a squat or some other posture? Can you capture a benchmark image of this position to monitor your progress?<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Next I wanted to assess how much of the limitations I was feeling were coming from my spine specifically.....\n\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-26457\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.45.07-1.png\" alt=\"\" width=\"610\" height=\"337\" /></p>\n&nbsp;\n\nSo I assessed my spine flexion &amp; extension in a seated so more isolated way by capturing images of my spines curve in flexion and extension. This removed at least some of the \'cheat\' mechanisms that can make my movement look better than it is. By fixing my lower body into this seated position it \'purifies\' spine flexion and extension highlighting a more pure image of the movement I can do in this plane without other things \'getting in the way\'....like tight nerves for example.\n\nCan you capture an image of your spine curves while seated in 90 degrees of hip flexion, by placing your fists on top of thighs, aiming shoulders towards thighs?\n\nThen an image of your natural ability to produce spine extension form the same position?\n\nNotice do you feel pain? stiffness? do you flex and extend nicely with a C shaped curve? do your shoulders reach your thumbs easily?\n\n&nbsp;\n<h2>Spine Lateral Flexion &amp; QL Hinge Tests</h2>\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-26459\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.44.24-1.png\" alt=\"\" width=\"724\" height=\"389\" /></p>\n&nbsp;\n\nNext we can test our QL for \'hinges\' along with symmetry in spine lateral flexion. If you can capture an image of the curve in your spinous processes do you see a smooth curve from between the PSIS? if not what do you see? do you notice a hinge point? how does it feel do perform this movement? is there asymmetry?<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Can you spot any spinal hinges in my spine from a few years ago here in this image above? could the QL be in a subclinical spasm therefore producing a hinge rather than a smooth C shaped curve?<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />What do you think?\n\n&nbsp;\n<h2>Spine Thoracic Rotation Test</h2>\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-26460\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.46.08-1.png\" alt=\"\" width=\"753\" height=\"590\" /></p>\n&nbsp;\n\nFinally we can assess thoracic rotation...\n\nOnce again seated to limited movement at the pelvis, if we \'fix\' the scapular position, to avoid scapular rotation giving us a false measurement of thoracic rotation, we can observe how far our can spine rotate in either direction. <br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />If we take into account typical thoracic joint ranges they total around 57 degrees in one direction from C7 to L1...Notice the spinal columns degrees of rotation...not using the elbow line since my elbows are drawn back to limit scapular rotation.<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Do you have symmetry left to right...? Also how does it feel comparing one side to the other? any discomfort?<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />To measure rotation in degrees you could imagine you\'re sitting on top of a circle and taking the head with you in the movement...how many degrees of spine rotation do you think you can do comfortably without forcing movement? Is it more in one direction than the other?<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />45 deg? 50 deg? 55 deg?<br class=\"ac-designer-copy\" />or<br class=\"ac-designer-copy\" />Much less?\n\n&nbsp;\n<h2>Spine Mobility Exercises</h2>\nTo improve spine mobility based on your test results can be quite simple (*consult your local Biomechanics Coach or a qualified practitioner prior to starting any new exercise programme)\n\nIf you feel limited by spine flexion do more spine flexion...maybe 3 sets of 10-15\n\n<img class=\"size-medium wp-image-36992 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/02/MG_0073-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\nIf spine extension is the one you feel tension in so more spine extension by lying down for some pelvic tilts...also around 3 sets of 10-15...\n\n<img class=\"size-medium wp-image-36993 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/02/MG_0074-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\nFor lateral flexion use wall gliding ....one of my favourites...2 sets of 8 reps each side, leaning against a wall then \'gliding\' the hips underneath the rib cage very slowly and through a very small range of motion to affect the QL muscle gently...<img class=\"size-medium wp-image-36999 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/02/MG_9964-1-1-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\n\n&nbsp;\n\nFor rotation....guess what....yup you guessed it rotate more!!! Again 3 sets of 10-15....\n\n<img class=\"size-medium wp-image-36996 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/02/MG_0077-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /><img class=\"size-medium wp-image-36995 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/02/MG_0076-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /><img class=\"size-medium wp-image-36994 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/02/MG_0075-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\nSo in celebration of World Spine Day who will join me in the <span class=\"ac-designer-copy\">Spine Mobility Project?</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Due to current lifestyle trends many of us are experiencing more limitations in our spines natural movement which can initially start with stiffness and tightness like me but this could eventually result in other conditions, since the spine is designed to move!<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Why not try the Spine Mobility Project and share it with your clients, friends and colleagues to contribute to a world where spine health improves.....why not send us your results???\n\n&nbsp;\n\n<strong><em>Referenced</em></strong>\n\n<i>World spine day</i> (no date) <i>World Spine Day</i>. Available at: http://www.worldspineday.org/ (Accessed: 06 October 2023).\n<div></div>','Spine Mobility Project - World Spine day','','inherit','closed','closed','','26456-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',26456,'https://biomechanicseducation.com/?p=38596',0,'revision','',0),(38597,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','<b>Introduction </b>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Today we will discuss the basics of understanding lifting biomechanics for personal trainers and strength coaches. The role of a personal trainer and strength coach is to coach lifting technique, so enhancing our understanding of lifting biomechanics will contribute to our programme design and may offer up more ideas for creativity, longevity, regressions and progressions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-4115 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" /> </span>\n\n&nbsp;\n\n<b>What is biomechanics?</b>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Biomechanics can be described as the study of human movement, focusing on how external forces act upon the neuro-musculoskeletal systems. This could also be described as ‘extrinsic’ biomechanics. In the field of ‘intrinsic’ biomechanics, the focus is on how these structures respond and react to these forces.   </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">As exercise professionals, we need to understand human movement in relation to this science to enable us to train clients to lift when they want to be stronger at something or reduce their risk of becoming injured when lifting things day to day. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Examples of extrinsic biomechanical influences during lifting are the ground underfoot, the object being lifted, the weight distribution and choice of hand position/grip, the reaction of gravity to that object along with how and where its force impacts upon the body, footwear, belts, straps and clothing.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Intrinsic biomechanical influences that can affect manual lifting are things like joint angles and limb lengths along with connective tissue and neural tension. </span>\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-33785 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1054776068-300x118.jpg\" alt=\"\" width=\"300\" height=\"118\" />  </span>\n\n&nbsp;\n\n<b>How does our intrinsic biomechanics impact lifting? </b>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">We already know that lifestyle creates adaptations and compensations inside our client\'s bodies, but how does this impact on lifting?</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Imagine an adaptation like subclinical muscle spasm (not clinical nor symptomatic) of the pelvic muscles, maybe from sitting for long periods. This client may come to you for help to develop their mobility or hip muscle strength. However, the adaptation may result in a compensation that leaves them with a functional leg length discrepancy FLLD). </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">This compensation alters the descending force being produced through the lower limb joints. It can also alter the ascending force being transferred up into the spine and upper body. </span>\n\n<span style=\"font-weight: 400;\">We may see an asymmetry during the lift by observing one shoulder being higher or the barbell itself not remaining level. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">It is quite possible the lift will be impacted by virtue of the fact that asymmetry and reduced muscle function can reduce stability, control and therefore strength and power. Some range of motion may also have been lost and muscle development can be inhibited. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Another example of this type of compensation might be a loose Midtarsal joint (MTJ)  in the foot, resulting in a flattening of the arch. This could encourage a knee valgus which results in a more medially loaded knee joint. These asymmetries may not be visible during lifting but could be measured in advance if the trainer has the right assessment skills. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">A simple pelvic function screen can reveal an FLLD to enable the trainer or coach to prescribe an intervention like a muscle energy technique (M.E.T), also known as an anti-spasm, prior to the lift to reduce the muscle spasm and improve muscle function along with symmetry. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-4116 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2-300x191.jpg\" alt=\"\" width=\"300\" height=\"191\" /> </span>\n\n&nbsp;\n\n<b>How does lifting impact our intrinsic biomechanics? </b>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">If we ask a client to perform a deadlift for example when they are not intrinsically prepared they may experience reduced grip strength from tightness in the median nerve for example. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">The shear force of a deadlift on the spine extensors could also increase risk should there be inhibition of either or both QL muscles. The trunk muscle\'s ability to stiffen adequately during a deadlift requires great biomechanical setup. So the body may grumble or complain when deadlifting to tell us the body isn’t yet prepared and we could experience ‘niggles’. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">It’s important to note here that these ‘compensations’ are ‘common’ modern ailments that have been ‘normalised’ so much so that it’s expected and accepted as part of life.</span>\n\n<span style=\"font-weight: 400;\">Understanding how to assess intrinsic biomechanics is a unique and specialised skill set that enables trainers and coaches to optimise performance while reducing risk when a client is lifting. The ability to measure, monitor and objectively benchmark our client\'s movement is a vital aspect of being a movement practitioner. </span>\n\n<span style=\"font-weight: 400;\">  </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-1030 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2016/06/skele-pelvis-300x214.jpg\" alt=\"\" width=\"300\" height=\"214\" />\n\n&nbsp;\n\n&nbsp;\n\n<b>The benefits of understanding lifting biomechanics </b>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">So to develop tissue tolerance &amp; load management for lifting we must take into account the reason the client is lifting in the first place. This paired with their intrinsic biomechanical measurements, their starting benchmarks and an understanding of lifting biomechanics to then create a programme that takes all of these considerations into account. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Is the recommended weight or load creating a compressive force or shear force on the body? How might shoulder width impact the lift? Can we learn ways to measure &amp; improve abdominal muscle stiffness for lifting? These might be great questions to start with.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<img class=\"size-medium wp-image-7303 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/06/Are-All-Biomechanical-Studies-Flawed_-And-Would-You-Like-To-Squat-Better_-Biomechanics-Coaching-300x150.png\" alt=\"\" width=\"300\" height=\"150\" />\n\n&nbsp;\n\n&nbsp;\n\n<b>The benefits of understanding biomechanics for overall movement </b>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Considering the integrated system during a squat/deadlift as the knee flexes, as the tibia inclines forwards over the forefoot, SubTalar Joint pronates, the plantar flexors lengthen, the Soleus muscle lengthens eccentrically, the nervous system is stretched. The weight of the body moves forward, the knee extensors lengthen eccentrically, hip extensors lengthen eccentrically, spine extensors stiffen and may lengthen depending upon technique and/or capacity under load. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">These are just a few examples of the way the body intrinsically interacts as a system during a lift and so any issues or compensation with any of these areas could influence the lift. Next, consider how much we think about each of these aspects when we bend over to pick up a towel we dropped, or if we go to pick a washing basket up. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If our client wants to develop strength for performance and risk reduction then could it be argued that conditioning their joints to experience various planes, loads, angles and alignments is best? Does cueing ‘knees in line’ degrade the knees ability to be tolerant to loads outside of ‘in line’? Should we train clients\' knees outside of the midline? If so, how far outside and what risk does it hold? </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Controversially we could argue that deliberately taking the knees into a valgus position during a squat is preparing the body for it should we take a fall. It might be wise to reduce the loads initially if doing this but leaning the body into ‘bad’ form or poor alignment could be ‘good’ for preparing a client\'s joints. This might be simply using body weight to start with.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">How would you feel about doing this? </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35135 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.17.56-300x287.png\" alt=\"\" width=\"300\" height=\"287\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Summary </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Coaching someone to lift should be about keeping things simple in application. </span>\n\n<span style=\"font-weight: 400;\">Ask yourself a few questions each time a client comes to you for a lifting programme. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">What’s the goal? </span>\n\n<span style=\"font-weight: 400;\">What’s the risk? </span>\n\n<span style=\"font-weight: 400;\">What are the influences? </span>\n\n<span style=\"font-weight: 400;\">What can I measure? </span>\n\n<span style=\"font-weight: 400;\"> </span>\n<h1>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">We can show you how to assess your clients and write programmes for improved movement quality and a lower risk of modern ailments </a></h1>\n<h2>Would you like to find out more about how to do this?</h2>\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Become a Biomechanics Coach </a><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">&lt;&lt;&lt;&lt;CLICK HERE</a>','Biomechanics of lifting: A guide for PTs & Strength Coaches','','inherit','closed','closed','','36845-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',36845,'https://biomechanicseducation.com/?p=38597',0,'revision','',0),(38598,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','<span style=\"font-weight: 400;\">If you have ever asked yourself Why Become a Biomechanics Coach? Then this has been written specifically for you. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Biomechanics Coach profession may be one you have considered but have wondered what would this skill set offer? What would I gain? How would it benefit me? Why should I study a Biomechanics Coach course in the UK?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Within personal training courses we learn about anatomy, movement, physiology, exercise, maybe diet &amp; psychology too but when we start working with clients we suddenly realise just how different they all are. They all move differently and they also, more often than not, come with a whole list of things that we feel limited by.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Modern ailments interfere with the simple application of an exercise programme we have learned to write for a training goal. We are taught that pain and injury are outside of our remit &amp; yet so many clients come with aches, niggles and recurring injuries we feel ill-equipped to deal with. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet these ‘problems’ are being normalised due to their prevalence!</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36400 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-45-1-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While we should get clinical clearance for pain and injury, often movement is still a great compliment to recovery or even as the solution. However, we seem to be the only ‘body’ workers who lack any thorough, or evidence-based, MSK assessment skills in our basic training</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is where Biomechanics Coaching as a profession is truly <em>personalised</em> personal training. This skill offers a whole host of benefits to our skill set. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Biomechanics Coaches are able to identify, not only if an individual requires a specific specialist like a podiatrist or physiotherapist, but also how we could potentially continue to work our client alongside this practitioner.  </span>\n\n&nbsp;\n<h4><b>Widen your knowledge as a PT through the s</b><b>cience of movement and anatomical knowledge </b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">While PTs have much of what they need to improve movement, the skills of Biomechanics Coaching take you to a deeper level of understanding anatomy </span>\n\n<span style=\"font-weight: 400;\">This gives you an increased confidence in knowing what atypical genetic presentations might mean &amp; additional tools to address and reduce modern lifestyle ailments that may cause you concerns when trying to work out what to do and when with each client </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-28329 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h4></h4>\n&nbsp;\n<h4><b>Movements in anatomy</b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The ability to identify good movement with so many variations in each client\'s body can feel overwhelming. Biomechanics Coaching offers physical assessments that enable the PT to be objective about their decisions and programming. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Assessing movement becomes fun and fascinating, for both you &amp; your client, as you monitor progression, adapt the programme and see their performance improve alongside your client feeling more freedom in their movements. There is of course the potential for the byproduct, or side effect of pain reduction, at least if caused by a biomechanical adaptation or compensation.</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36450 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/07/DSC_6439-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h4></h4>\n<h4></h4>\n<h4><b>Skill </b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Gaining the skills in Biomechanics Coaching develops your confidence in assessing and understanding your clients body. You can evaluate movement quality and biomechanical limitations. You would have the ability to sit side by side with your clinical peers communicating at a common level. You would be able to gain a fluency in technical anatomy language that demonstrates why you are the ‘go to\' trainer/coach in your area.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35285 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6931-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h4></h4>\n<h4><b>Solutions</b><span style=\"font-weight: 400;\"> (</span><b>Occam’s razor)  </b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The skill of a Biomechanics Coach is in having the ability to investigate root causes of intrinsic biomechanical problems and potential influences of symptoms. You would learn the ethical Occam’s razor tactic that applies the simplest, lowest risk intervention first by following a systematic approach </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h4></h4>\n&nbsp;\n<h4><span style=\"font-weight: 400;\"> </span><b>Reputation</b><span style=\"font-weight: 400;\">, </span><b>Confidence &amp; Increased income </b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This often results in you getting noticed as a Biomechanics Coach by clinicians, GPs and other professionals. It also impresses members as you will stand out as an exceptional trainer in your area. Most Biomechanics Coaches discover the confidence to charge higher rates and begin to use a business model that has clients on subscription.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We offer you a huge amount of support to help you develop a commercial strategy to move your service provision into a more automated system. One that reduces admin, saves time and also pleases the clients. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The increase in confidence and high level reputations of Biomechanics Coaches results in the ability to increase your fees. We encourage and support you with methods to help get a return on your investment with us. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35276 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6385-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n<h4><b>Becoming a Registered IBA Biomechanics Coach</b><span style=\"font-weight: 400;\"> </span></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We care about our learners and the community of Biomechanics Coaches. We also listen to what you need to help you achieve your goals so we set up the Intrinsic Biomechanics Association to offer a membership that provides you with everything you need to help you stay up to date, gain CPDs, branded clothing, access to clinicians for their opinions, a platform to become eligible to present, a platform to become eligible to teach, safe forums and events to ask questions, learn and get support from hundreds of practising Biomechanics Coaches. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All our Biomechanics Coaches are just like you, passionate, motivated, looking to learn more, care about their clients, fascinated by human movement, and looking for solutions to tricky client issues. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-27906 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/05/DSC03820-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not ask your nearest Biomechanics Coach about their learning experience…or read below what some have said about it…</span>\n\n&nbsp;\n<h4><b>Biomechanics Coach Course Feedback</b></h4>\n&nbsp;\n<h3><em><span style=\"font-weight: 400;\">“Great mixture of practical and theory with back up from manuals and videos.”</span></em></h3>\n<h3></h3>\n<h3><em><span style=\"font-weight: 400;\">“Amazing experience and the teaching techniques used are great. The support is second to none.”</span></em></h3>\n<h3></h3>\n<h3><em><span style=\"font-weight: 400;\">“If you want to advance your skills, knowledge and experience and maintain a high level of professionalism, look no further.”</span></em></h3>\n&nbsp;\n\n<img class=\"size-medium wp-image-30682 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52ea-300x200.jpeg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if you want to book a place why not get in touch so we do just that by clicking here: </span><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">Become a Biomechanics Coach</a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Or</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are still unsure or have questions why not speak to one of our careers advisors </span>\n\n&nbsp;\n\n<a href=\"tel:%EF%BB%BF02038416151\">020 3841 6151</a><img class=\"DetectedNumberImg\" src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAB3RJTUUH3gcWEAU3+l7xlgAAApJJREFUOMuVkk1IVGEUht/z3TuO482s1FTIJH8wQYXsnzLLhZUWEtYuClqYiwosSyhJIZJiNkUZLoxaFEJZbQzKRQSGVIgI5cLf0HGc1HG8c0fHmTv3+75WQkSL67s85zzP5j0Emyls/upIS3LWqYqyvByJdX1p3GkAgGpXkODAoZVIrAVkuVxOtRDAVQBgduDi272aynB2ak7f+MsXcC2GVmoP3u8/Z1sQryBvIbh0hHNOBAHfgqGZMV6d0/Q90ZYgHI0VmKaZKQWHFAKQHN553RGzuMOWwAibwUg0NigF51IKSCG54NbPqXv7A7YEUdPs4UKcgeSDUnBAckOC3mCtyavv7kyt7ZJpde9erc6YXfiou6/EwVAmBQ9JwdvXJDj18Ft6JBJt9etGCknRJkG9qztbj2SEli9N+fzllmVNMKY88OfXxJIea+CWAP19WNbywZmXtSWNS8w8u1BoHWh670hK1Go8s4GO6Tk9zBTluKvi+uDp3FKuOlcwujgNZRWudn9OSdmwrsHjm2tI0pxeV9GJiYzUTdXzi4Z7zPNbYQpr1HMbe87vLuVR1YPZ8DxmlgJQ993oUjIzNm9fiZgdfQNDJXoo7FjUjbaCnK3Dk775PcPj0/FE1CSFeOFaH7LCIoRAQMWCCKK56AnU9NTkyoAedA8MjeZbXIIYw9ikN3t8aiZbAn7G1DsgeqR31nFthwuRcALai19ixPqB7ORtUFju4Ysj45NVFudEAAgSIAJB6gqjeiI8D76+bAJAbK8Fv+qDh4+gKqsSxz5WgLSTrcWQ0k1E5SBSiRgnxvpB7Kbx9tqnfxtR7hKkxkCOOHBDgwqJIIBWQD4FKbtA5JVCdEONm/hfpfyWBK5wQHBAGPgDf9c6qAYOxxMAAAAASUVORK5CYII=\" />\n\n&nbsp;\n\nrachel@biomechanicseducation.com\n\n&nbsp;\n\n<img class=\"size-medium wp-image-30685 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/image0-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />','Why Become a Biomechanics Coach?','','inherit','closed','closed','','36448-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',36448,'https://biomechanicseducation.com/?p=38598',0,'revision','',0),(38599,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','<span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">Ever used a gym machine in a different way because you noticed the pulley system, fulcrum, angles were just right for a move it wasn’t designed for? </span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\">While there are safety factors ​to take into account, we can still use our understanding of anatomy and human biomechanics to take advantage of the machines mechanical system for alternative adaptations or additions to their purpose.<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />As I travel the UK sharing the intrinsic biomechanics education programmes with other movement practitioners I frequent various gyms all of the time. One of my very favourite things is looking for machines that might be different to ones I have used before. Studying their pulleys, pivots and levers for alternative ways to train.  </span></span>\n\n&nbsp;\n\n<b>Gym machines</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Gym machines are the perfect start point for someone new to the gym and maybe individuals who feel intimidated or nervous about doing things incorrectly. There is also an advantage when recovering from injury and / or wanting to use less trunk stiffness for whatever reason….yes there are times when we don\'t want to train the core so much…that\'s a whole other blog.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway the machines help because they often come with an image of how to use it and which muscles it targets, as well as a description of how to use the machine. However they take up a lot of room and can often be used in more than one way with a little imagination, this can help with keeping our client’s programme more interesting and maybe even more functional (yes I said \'function\' while talking about gym machines)</span>\n\n&nbsp;\n\n<b>Adapting the gym machine exercises</b>\n\n&nbsp;\n\n<b>Example 1</b>\n\n<span style=\"font-weight: 400;\">One of the simplest adaptations to advance a basic seated chest press for example would be to sit without allowing the back to touch the back rest. This would likely require a large drop in the number of plates being used as there is no resistance to push against during the movement. Try it and see how much harder a considerably lower weight feels!</span>\n\n&nbsp;\n\n<img class=\"alignnone size-medium wp-image-36415 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2023/06/Screenshot-2023-06-27-at-08.46.30-1-300x168.png\" alt=\"\" width=\"300\" height=\"168\" />\n\n&nbsp;\n\n<b>Example 2</b>\n\n<span style=\"font-weight: 400;\">Another of my favourites to adapt with clients (and myself) is the seated leg curl. This machine is designed to work the knee flexors, or hamstrings, specifically. However if you sit back against the seat the hip is more extended which shortens the hamstring at the hip. By flexing forwards to increase the angle across the back of the hip, away from the backrest, will lengthen the muscle (knee flexors/hamstring) for a better contraction. (If you lower the chin down too it would likely also mobilise the sciatic nerve…but move slowly!)</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-27960 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8658-300x297.jpg\" alt=\"\" width=\"300\" height=\"297\" />\n\n&nbsp;\n\n<b>Example 3</b>\n\n<span style=\"font-weight: 400;\">Having experienced a foot inversion strain 8 weeks ago I’ve been looking at different ways to rehab my foot back to full and pain free function. While on the standing calf raise I realised with the pads resting on the top of my shoulders I could pop a sneaky shrug while doing my calf raises! A great little scapular elevator / upper trapezius stimulus bonus!....see here….</span>\n\n&nbsp;\n\nhttps://www.youtube.com/shorts/3nJgjbDli5o\n\n&nbsp;\n\n<b>Example 4</b>\n\n<span style=\"font-weight: 400;\">Also it\'s difficult to strengthen the hip rotators when the hip is extended and we are upright as its almost impossible to get a long enough lever. Yet a seated hip ab/add machine does it brilliantly….if you kneel on it facing backwards the angle at the knee creates a brilliant lever…. Like this…..</span>\n\n&nbsp;\n\nhttps://www.youtube.com/shorts/vMyE2_RRoBc\n\n&nbsp;\n\n<b>What do you think?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you use machines differently in any way? </span>\n\n<span style=\"font-weight: 400;\">Can you see the pivots, levers and pulleys differently? </span>\n\n<span style=\"font-weight: 400;\">If so, how? </span>\n\n<span style=\"font-weight: 400;\">Why not post a video of it on social media and tag me, Biomechanics Education?!</span>\n\nor\n\nReply to this Juicemail\n\n&nbsp;\n\nAlso did you know....\n\nA Diploma in Biomechanics Coaching introduces learners to a new way to optimise client performance, bringing movement assessment programmes to the forefront through evidence-based perspectives. Through hands-on practical workshops and online learning, you will use the techniques developed through over 20 years of research to correctly assess clients’ bodies and movement beyond traditional training.\n\n<b>Plus, with our new finance options, you will be able to spread the cost of your diploma easily into manageable monthly chunks,</b> taking the stress out of starting the course and giving you the flexibility to train in a way that suits you.\n\nIf you want to know more about how a Diploma in Biomechanics Coaching can revolutionise your career, <strong>get in touch via email or phone using the details below.</strong>\n\nrachel@biomechanicseducation.com\n\n0203 841 6151','Question…Could using machines differently hold an advantage?','','inherit','closed','closed','','36414-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',36414,'https://biomechanicseducation.com/?p=38599',0,'revision','',0),(38600,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','<span style=\"font-weight: 400;\">What an exhilarating event… yet again! </span>\n\n<span style=\"font-weight: 400;\">Elevate was a fantastic two days of talks, networking and gaining insights into what is happening in our sector. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Future Fit group were once again Elevate’s Education Partner and wow some of the talks on the Thought Leaders stage were really fascinating this year. It was so great to see some of my Biomechanics Coaches there too. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">‘Intrinsic Biomechanics - The missing piece of the jigsaw for PTs?’ was the title of my session. I named it this because this is what all my learners feedback to me after they experience our face to face workshops. Gaining that deeper appreciation for the human body really boosts their confidence in every other skill they previously learned, while adding more to it. It connects all the dots and becomes the missing link between all their previous training. Learning how the body functions as an integrated system helps PTs to work more efficiently, effectively and most of all confidently, with their clients. </span>\n\n&nbsp;\n<h3><img class=\"alignnone wp-image-36386\" src=\"https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-36-1-300x135.jpg\" alt=\"\" width=\"542\" height=\"244\" /></h3>\n<h3><b>What happened during the session? </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">During my talk I made sure to interact with the audience, starting by inviting all of the them to squat with me to see how different we all are. I then invited them all to stand, roll their right foot inward to see how the body is integrated when all the way up to the opposite shoulder moved as a result of the foot roll! Then I invited one attendee onto the stage to demonstrate this again. As he stood upright, I simply pushed his big toe upwards and everyone could see his hips rock and his shoulders swing. These simple yet powerful interactions really engaged the audience and offered examples of why it’s important to always have the integrated system in mind when working with a client. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Next I coached the entire group to try a pelvic function test on themselves while seated, invited the ones who were positive (failed) to stand and almost everyone stood up. So I taught the entire group an iMoveFreely muscle energy technique (MET) and asked them to re-test, inviting those who felt or saw a change to stand again and almost 85% stood up amazed. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally I asked for a volunteer to demonstrate a mini screen. While he lay supine, I asked the audience to come and watch each measurement. Leg length discrepancy, pelvic function and a shoulder test. While he did have asymmetries, we did the MET on one shoulder and when I retested they saw how all of the tests had improved. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We had proved it over and over again with very simply physical demonstrations of how the entire body is integrated, connected and influenced even by the joints furthest away. </span>\n\n&nbsp;\n\n<img class=\"alignnone wp-image-36387\" src=\"https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-38-1-300x135.jpg\" alt=\"\" width=\"540\" height=\"243\" />\n<h3><b>Why did I choose this subject? </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The reason I’m so passionate about this field is because as a sector we are not perceived as, nor do we feel, academic or respected in the way our allied healthcare peers are. Understandably too based on our educational system. Yet the beauty of our education system allows non-academic individuals (like me) to gain access to a career relatively easily without the required degree level struggle and huge cost many might experience.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However we can prove our value easily with these intrinsic biomechanics tests and iMoveFreely interventions (that come from clinical practice) using them as prevention and prediction of risk tools.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the most interesting and exciting aspects about my session was the audience that came. Personal trainers, gym owners and pilates teachers were sitting next to podiatrists, scientists, paramedics, firemen and sports therapists. THIS is exactly my vision of how united our sectors should look. It was an emotional experience and always is for me when this happens, which regularly happens during my workshops too.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While being hybrid can help us better understand each other, it makes far more sense to do what we do really well instead of trying to do everything alone. It\'s a confident practitioner who refers a paying client away and I want to encourage it. </span>\n\n&nbsp;\n\n<img class=\"alignnone wp-image-36384\" src=\"https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-41-1-300x135.jpg\" alt=\"\" width=\"541\" height=\"243\" />\n<h3><b>So, what does this mean? </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, maybe finally things are changing, maybe we are crossing paths more, maybe there are some who agree with my vision and maybe, just maybe, we can start to improve all of our roles by working collaboratively rather than competitively. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Elevate seems to be steering this idea and I know for a fact that the Future Fit Group is, because it\'s the reason we joined forces. I believe strongly that Biomechanics Coaching is the solution and is the missing link for movement solutions for so many modern ailments. It’s also the missing link between sectors, allowing personal trainers to be taken seriously and feel confident in their ability to communicate within a multidisciplinary team.</span>','Elevate 2023: Intrinsic Biomechanics - The Missing Piece of the Jigsaw for PTs?','','inherit','closed','closed','','36394-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',36394,'https://biomechanicseducation.com/?p=38600',0,'revision','',0),(38601,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','<b>Introduction</b><span style=\"font-weight: 400;\"> </span>\n\n<i><span style=\"font-weight: 400;\">If we do not understand movement, we cannot understand exercise. Yet kinesiology &amp; biomechanics are the least understood after anatomy &amp; physiology (Haines)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Many personal trainers are looking for more ways to help clients with their movement problems. One way of doing this is to seek out a deeper understanding of biomechanics &amp; anatomy to gain confidence in knowing what to do, &amp; when. In particular for those who hurt, feel stiff, immobile or wish to improve at a particular sport or activity. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are many ways to break the science of biomechanics into components, so much so that it can leave personal trainers fearful about the level of knowledge required to gain skills in this field. So I want to break things down here for you to offer you insight into how our education differs from other schools of biomechanics. Our hope is to demonstrate how our approach is helping personal trainers with a more thorough biomechanical approach to assessment &amp; programme design... </span>\n\n&nbsp;\n\n<b><i>Definition of Biomechanics </i></b>\n\n<i><span style=\"font-weight: 400;\">Mechanics is the science of matter &amp; force &amp; their effects on movement &amp; equilibrium. Biomechanics is how this relates to the human body.</span></i>\n\n&nbsp;\n\n<b>Breaking down the components of biomechanics </b>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-33789 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1067442071-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here at Biomechanics Education, we categorise this science into 2 types as explained previously in this blog…</span>\n\n<a href=\"https://www.biomechanicseducation.com/what-is-the-difference-between-extrinsic-biomechanics-intrinsic-biomechanics/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">What is the difference between extrinsic biomechanics &amp; intrinsic biomechanics?</span></a>\n\n&nbsp;\n\nThis is how our categories fit into the main stream definition.\n\nExtrinsic biomechanics has 2 components as described in main steam biomechanics\n\n&nbsp;\n\n<b>2 components of extrinsic biomechanics</b><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36200 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/05/mathew-schwartz-zIIXVa5BwvM-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Kinematics ‘..</span><i><span style=\"font-weight: 400;\">the branch that deals with the geometry of motion in objects, including displacement, velocity &amp; acceleration, without taking into account the forces that produce the motion</span></i><span style=\"font-weight: 400;\">…” In other words; video analysis, observational analysis of the client moving</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Kinetics  “..</span><i><span style=\"font-weight: 400;\">.the relationships between the force system acting upon the body &amp; the changes it produces in body motion..\" </span></i><span style=\"font-weight: 400;\">This is found by equipment such as force plate platforms</span>\n\n<a href=\"https://www.physio-pedia.com/Biomechanics_In_Sport#:~:text=Biomechanics%20is%20traditionally%20divided%20into%20the%20areas%20of%20kinematics%20and%20kinetics\" target=\"_blank\" rel=\"noopener\">Physiopedia</a>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36201 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/05/kiwihug-Hld-BtdRdPU-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You may also read about biomechanics being divided into <a href=\"https://www.isnt.org.in/what-are-the-5-components-of-biomechanics.html\" target=\"_blank\" rel=\"noopener\">5 components</a> like this…</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Motion - the movement of the body, or an object, through space. Speed &amp; acceleration are important parts of motion.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Force - a push or pull that causes a person or object to speed up, slow down, stop or change direction.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Momentum - the product of a weight &amp; its velocity when moved</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Levers - could be compared to our arms &amp; legs; there are three parts to a lever – the resistance arm, the fulcrum, &amp; the axis of rotation</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Balance - being stable. An important principle of balance is the alignment of the body’s centre of gravity over the base of support. Having a good balance is important for many sporting &amp; exercise activities</span></li>\n</ul>\n&nbsp;\n\n<b>intrinsic biomechanics has 3 components</b>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36202 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/05/ta-z-Nk7hHi3I__0-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We teach personal trainers a deeper understanding of the concepts of intrinsic biomechanics by further dividing them into 3 components….</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Myofascial - muscles, fascia &amp; other connective tissues</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Skeletal - osseous substructure or bones </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Neural - central nervous system (brain &amp; spinal cord) &amp; peripheral nerves</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s clear that an understanding of biomechanics at some level is vital for coaching movement &amp; exercise programming. </span>\n\n<span style=\"font-weight: 400;\">The biomechanical influences both inside &amp; outside our client’s bodies clearly impact each other &amp; how we see them move. However, it’s important we understand the differences in application &amp; interpretation. </span><span style=\"font-weight: 400;\">The skill is in understanding what’s happening to the myofascial, skeletal, neural (or intrinsic) structures when observing the influences of motion, levers, momentum, force &amp; balance from the extrinsic biomechanics. </span>\n\n&nbsp;\n\n<strong>Put another way….</strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The skill of a Biomechanics Coach is in understanding how the intrinsic biomechanics, or anatomy, is resulting in what we see extrinsically from a mechanical movement perspective in our client’s body. </span><span style=\"font-weight: 400;\">Having an understanding of the normal or typical variations in anatomy is an important advantage for personal trainers when coaching movement or exercises. Human bodies are as diverse intrinsically as they are extrinsically </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The study of intrinsic biomechanics allows a measurable objectivity using a systemised approach to evaluating movement quality thus informing us how to programme safely &amp; systematically. Yet true comprehension comes from allowing for individuality when comparing subject to subject  </span>\n\n&nbsp;\n\n<b>Let’s look at an example during a squat </b>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35749 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/04/sule-makaroglu-PnUYkTFkOD0-unsplash-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" />\n\n<span style=\"font-weight: 400;\">There are things about our client\'s squat we can never alter. Femur length for example will dictate the tibial angle, hip socket depth will dictate the point at which the femur starts to tilt the pelvis posteriorly. The direction the acetabulum is facing in the pelvis will dictate stance widths that feel most comfortable for our clients </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These factors cannot be altered since they are osseous factors about our client\'s anatomy that they were born with. Taking an extrinsic biomechanical approach one might assume a client\'s squat is limited by mobility or tightness. However, if the trainer learns a deeper appreciation of normal anatomical variations they will feel more confident in coaching movement that is right for the individual. which may well require them to perform a squat that is ‘technically’ or extrinsically biomechanically incorrect, but it is ‘correct’ for them as an individual.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another influence we cannot alter, &amp; must take into consideration here, is joint replacements, surgery or metal plates for example. These are interventions that may alter movement capacity intrinsically.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Taking a biomechanically intrinsic approach is to appreciate the things we can potentially alter even in those with normal variations in anatomy. The goal is to improve movement quality &amp; distribution rather than simply aiming to perfectly align &amp; position to the perfect ‘posture’</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As trainers, exercise or movement coaches we also want to strengthen our client\'s bodies. We can use our knowledge of extrinsic biomechanics to increase or decrease loads, progress or regress a programme. For example, using a longer lever for a progression or to increase intensity or a shorter lever to regress or reduce intensity. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However if we want a deeper squat for our client so they can increase the joint angle at the pelvis to increase intensity on the hip extensors, we may look to assess pelvic function first using intrinsic biomechanical principles. Then improve intrinsic function using METs on the hip extensors. This could be followed by antagonist strengthening of hip flexors to take advantage of reciprocal inhibition &amp; improve joint stability. Thus gaining an advantage on strengthening the agonists or hip extensors at full ROM &amp; improving the joint\'s strength ratio. </span><span style=\"font-weight: 400;\">This could be interpreted as intrinsic biomechanical preparation for an extrinsic biomechanical advantage.</span>\n\n&nbsp;\n<ul>\n 	<li>Do you have any questions about any of the components?</li>\n 	<li>Is this a subject you would like to study?</li>\n 	<li>Would you like to enter an inclusive classroom to really deepen your understanding or anatomy?</li>\n 	<li><span style=\"font-weight: 400;\">If the intrinsic biomechanics approach in one you would like to learn more about why not get in touch? </span></li>\n</ul>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Click here to learn how you can &gt;&gt;&gt;&gt; Become a Biomechanics Coach </a></h1>\n&nbsp;\n\n<img class=\"size-medium wp-image-33810 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_7668-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />','Intrinsic Biomechanics - Understanding The Components That Make Our Bodies Move','','inherit','closed','closed','','36198-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',36198,'https://biomechanicseducation.com/?p=38601',0,'revision','',0),(38602,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','<h2><b>Introduction</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The aim of this Juicemail is to better understand what elements contribute to making you into an <a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">advanced personal trainer. </a></span>\n\n<span style=\"font-weight: 400;\">Personal Trainers are often the first professional that a person will go to when they want to achieve a health goal. They will also go to a PT for advice if they have an ache or pain. </span><span style=\"font-weight: 400;\">Yet personal trainers are not taught m</span><span style=\"font-weight: 400;\">usculoskeletal screening skills as a compulsory part of their training. So we lack the confidence to advise these clients beyond referring them to a clinician. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here at Biomechanics Education our team have spent 20+ yrs collecting data, then 20yrs developing an education programme that proves movement &amp; exercise are more often than not the solution to these modern ailments. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We care passionately about personal trainers\' ability to work confidently within a multidisciplinary team. So our mission has always been to upskill personal trainers to a more advanced level by giving them both the skills &amp; confidence to do just this.</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35749 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/04/sule-makaroglu-PnUYkTFkOD0-unsplash-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" />\n<h2><b>How to become a <a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">personal trainer</a></b></h2>\n<span style=\"font-weight: 400;\">Simply put, to become a personal trainer you need to obtain a minimum of a </span><a href=\"https://www.futurefit.co.uk/personal-training-courses/level-3-personal-trainer-course/\"><span style=\"font-weight: 400;\">Level 3 Personal Training Qualification</span></a><span style=\"font-weight: 400;\">. This is the minimum industry requirement but there are a few steps to follow to get to this point. </span>\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Research the required skills </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Invest in high-quality education </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Complete your training and obtain a qualification </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Invest in relevant insurance </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Gain work experience </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Start a business or seek employment </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Build your client base </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">To become an advanced personal trainer and reach a higher level of confidence in your ability with clients you will need to then invest in further training which will enable you to increase client retention and charge a higher rate. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Future Fit Training</span> are the very best &amp; as a result the largest, training provider for personal training courses in the UK today. This is why Biomechanics Education joined the Future Fit Group in 2022 to give our own learners the very best career advice &amp; employment opportunities along with job satisfaction.\n\n&nbsp;\n<h2><b>Levels of personal training </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When entering the world of personal training we hear about levels. Levels are simply layers of learning &amp; comprehension. For example when learning to become a <a href=\"https://www.futurefit.co.uk/personal-training-courses/level-2-gym-instructor-course/\" target=\"_blank\" rel=\"noopener\">level 2 Gym instructor</a> (the prerequisite to level 3 personal trainer) we must have a basic understanding of the muscles in their groups. For example ‘quadriceps are the group of muscles that extend the knee’ or ‘hamstrings flex the knee’. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then as we study as a level 3 personal trainer we learn about the muscles in more detail. That there are 4 quadriceps (rectus femoris, vastus medialis, vastus intermedius, vastus lateralis) for example &amp; 3 hamstrings (bicep femoris, semitendinosus, semimembranosus).</span>\n\n<span style=\"font-weight: 400;\">As a personal trainer we also study about the bones &amp; joints as levers &amp; fulcrums for the muscles to attach to &amp; pull the body during movement. This will help us to understand loads &amp; forces for training our clients to strengthen these muscles. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Within our <a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">Diploma in Biomechanics Coaching</a> we will bring personal trainers up another level to become more advanced in these skills. We will share with you examples of the many ‘normal’ variations, that maybe even the anatomy books don’t necessarily show you! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The 5th quadricep (tensa vastus intermedius) for example can be found in a small population.  Then there is the triple headed bicep or a view of 6 different orientations of the sciatic nerve pathway. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We will show you hip joint formations that differ enough to alter pelvic biomechanics during a squat. Understanding this can help you help your clients find the best squat width for them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Femoral anteversion (more medially rotated femur) / Coxa vara (smaller angle between the femur shaft &amp; neck of femur) are likely to prefer a narrower squat. Whereas femoral retro version (more laterally rotated femur) / coxa valga (bigger than normal angle between femur shaft &amp; neck of femur) will likely prefer wider based on their normal joint variations. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Through all of this we will show you methods to assess your clients pelvic, spine, shoulder, knee &amp; foot biomechanics. This is what will enable any personal trainer to be recognised as advanced in their level of knowledge &amp; training. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Note: We can be at a different level in different subject areas simultaneously.</span>\n\n&nbsp;\n<h2><b>How intrinsic biomechanics can help you become an <a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">advanced personal trainer</a></b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-35748 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/04/sam-moghadam-khamseh-vOZP2LojrHI-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n<span style=\"font-weight: 400;\">By studying <a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">intrinsic biomechanics</a> you will better appreciate the complexities of the anatomy &amp; how to create a bespoke programme based on assessing your clients sub systems (myofascial, skeletal &amp; neural) Along with these assessment skills this advanced level gives you specialist knowledge of unique evidence based movement improvement skills for prehabilitation &amp; an increased confidence to advise clients &amp; create bespoke programmes. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Technical skill is all good &amp; well but we will also teach you about advanced soft skills of communication, understanding behaviour &amp; report writing skills so personal trainers can confidently work within a team of practitioners from various backgrounds. </span>\n\n&nbsp;\n<h2><b><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">Advanced concepts of personal training</a> </b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-35753 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/04/toralf-thomassen-5S40ixhBK-I-unsplash-300x241.jpg\" alt=\"\" width=\"300\" height=\"241\" />\n\n<span style=\"font-weight: 400;\">There are many types of trainers out there so to become advanced we should use advanced concepts. By deepening a personal trainer\'s anatomy knowledge &amp; skills in application allows for an appropriate level of expectation from both employers &amp; clients. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While many consider biomechanics as a more ‘precise’ science, this is why we came up with the 2 definitions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Extrinsic biomechanics might be considered a harder science in terms of its view of precision in sport, timing, joint angles for performance for example. </span>\n\n<span style=\"font-weight: 400;\">However this concept is being challenged due to the diversity of body types &amp; combinations of lever lengths within each athlete. Thus creating a constant argument that using precision wil be flawed  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is why we prefer to firstly consider better understanding a client\'s intrinsic biomechanics, or the softer science, that allows for assessment &amp; taking into account these differences. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So intrinsic biomechanics is in fact the opposite of precise. It\'s a more relaxed approach to the precision of foot position, knee position, spine position during movement when we\'re coaching personal training clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This depth of understanding is what results in an advanced perspective for very \'personal\' training.</span>\n\n&nbsp;\n<h2>Would you like to learn more about becoming an <a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">advanced personal trainer?</a></h2>\n<img class=\"size-medium wp-image-35751 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/04/jonathan-borba-R0y_bEUjiOM-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n<h2>Understanding the principles &amp; application of intrinsic biomechanics is the game changer for personal trainers looking to advance their skills.</h2>\n<h1><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">Become an elite PT!</a></h1>\n<a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">Join Us or get in touch to find out more </a>\n\n&nbsp;','How to become an advanced personal trainer','','inherit','closed','closed','','35742-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',35742,'https://biomechanicseducation.com/?p=38602',0,'revision','',0),(38603,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','<b>Introduction</b><b> </b>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35138 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07008-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A </span><a href=\"https://www.biomechanicseducation.com/\"><b>biomechanica</b><span style=\"font-weight: 400;\">l</span></a><span style=\"font-weight: 400;\"> assessment by definition is an assessment of your biomechanical systems. This could be considering what is seen both outside &amp; inside the body as we have previously shared in our blog </span><a href=\"https://www.biomechanicseducation.com/extrinsic-technique-vs-intrinsic-biomechanics/\"><b>Extrinsic vs intrinsic biomechanics</b></a><b>.</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here we will discuss 2 categories of biomechanical assessment </span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A biomechanical analysis using equipment </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">An equipment free biomechanical assessment </span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Examples of biomechanical analysis using equipment:</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35136 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.19.48-256x300.png\" alt=\"\" width=\"256\" height=\"300\" />\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Gait analysis </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Bike fitting </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Video analysing a swimmer underwater </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Examples of biomechanical analysis that is equipment free: </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35139 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07295-181x300.jpg\" alt=\"\" width=\"181\" height=\"300\" />\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanics coach screening </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Functional movement screen (FMS)</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Range of movement (ROM) testing</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Muscle strength testing </span></li>\n</ul>\n&nbsp;\n\n<a href=\"https://www.healthcareers.nhs.uk/explore-roles/allied-health-professionals/roles-allied-health-professions/podiatrist#\"><b>Who might do a biomechanical assessment?</b></a><b> </b>\n\n&nbsp;\n<ul>\n 	<li aria-level=\"1\"><b>Biomechanics Coaches </b></li>\n</ul>\n&nbsp;\n\n<img class=\"size-medium wp-image-35140 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07278-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\n\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/what-is-a-biomechanics-coach/\"><b>Biomechanics coaches</b></a><span style=\"font-weight: 400;\"> are Diploma level movement or therapy practitioners. </span>\n\n<span style=\"font-weight: 400;\">They become qualified in either PT, S&amp;C, pilates, yoga or sports therapy &amp; then go onto specialise in Biomechanics Coaching through a 7-9 month Diploma. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Biomechanics Coaches (BC) can be found all around the UK. Individuals can book a biomechanical assessment by finding an IBA Registered Biomechanics Coach </span><a href=\"https://www.biomechanicseducation.com/\"><b>HERE</b></a><b> </b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BC’s assess every joint and subsystem in the body through visual and hands on testing. The client will be assessed in various positions, some lying down passively, some standing, some sitting, some static assessments and maybe even some dynamic hopping or stepping test as the BC observes how the body moves.</span>\n\n<span style=\"font-weight: 400;\">Their skill is to evaluate the quality of movement in each area, through range of motion, symmetry etc. BC’s use an evidence based system to decide from the results which intervention is best to start, most commonly the pelvis for example. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The systematic approach allows the BC to identify the problem which  is causing issues around the body by regular assessment done in exactly the same way each time. Then they simply coach a few interventions at a time to be able to identify root causes.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This allows for objectivity and empowers the client with a long term maintenance programme designed from the individuals key biomechanical pillars identified during the process. They will also be coached with day to day techniques that can be utilised to improve the results and ultimately how they feel when they move.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">After a biomechanical assessment with a Biomechanics Coach their clients are given detailed information about how to move more freely with less pain by using the iMoveFreely movement programme otherwise known as a preparation for movement or prehabilitation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The reason an individual might require a biomechanical assessment could be that they feel they don’t move well, they wish to continue to move well or they are struggling to find a solution for their symptoms.  </span>\n\n&nbsp;\n<ul>\n 	<li aria-level=\"1\"><b>Podiatrists </b></li>\n</ul>\n&nbsp;\n\n<img class=\"size-medium wp-image-35141 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.19.56-277x300.png\" alt=\"\" width=\"277\" height=\"300\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This profession requires a degree/Masters degree level of education with registration with the Health &amp; Care Professions Council (HCPC), which would also be a good way to recognise how to find an up to date podiatrist. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Podiatrists specialise in foot care and lower limb biomechanics but may choose to specialise in certain aspects of foot health. Specialisms might be children with walking problems, diabetics along with amputations or foot issues in sports players or dancers for example.Most often they’re expected to address foot pain or ankle knee pain. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35142 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.14-257x300.png\" alt=\"\" width=\"257\" height=\"300\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Podiatrists will examine your feet or legs and closely observe your walking style or gait. They may use expensive and sophisticated video equipment along with a treadmill to analyse gait of their clients walking or running from multiple cameras, at a variety of angles. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This profession requires a great depth and comprehension of the complexities of joint surfaces, planes and combinations of foot postures. Also ground reaction force, the effects of gravity and how the foot has an ascending biomechanical influence. Additionally a good understanding of descending biomechanical influences can give a Podiatrist much more information for intervention possibilities </span>\n\n<span style=\"font-weight: 400;\">The interventions will of course vary however they are likely to range from orthotic inserts, foot supports, therapy, exercise and in some cases possibly surgery.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Should a Podiatrist learn about intrinsic biomechanics within the </span><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\"><b>Diploma in Biomechanics Coaching</b></a><span style=\"font-weight: 400;\"> they would have a much fuller tool box to identify further root causes of foot problems high up in the kinetic chain in their clients.</span>\n\n&nbsp;\n<ul>\n 	<li aria-level=\"1\"><b>Physiotherapist </b></li>\n</ul>\n&nbsp;\n\n<img class=\"size-medium wp-image-35143 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.28-269x300.png\" alt=\"\" width=\"269\" height=\"300\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyone wishing to become a qualified Physiotherapist will find the minimum education pathway would be a 3 year degree. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Like podiatrists physios can specialise in various subjects like paediatrics, neurology or biomechanics. If a physio has a special interest in biomechanics they may perform muscle strength testing, static or dynamic assessments, watching a patient\'s body moves, evaluating their range of motion to offer an intervention or treatment should they be symptomatic.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Most clients will seek out the advice and help of a physiotherapist due to symptoms that their GP is unable to identify or resolve. Otherwise individuals may seek a private physio should they feel this professional would be able to help with their musculoskeletal problem.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One physiotherapist may practise with a more hands on treatment approach whereas another may be more movement and exercise skilled. It can be misunderstood that all physios are exercise experts as there are many different specialisms in this field. A sports therapist may be more likely to be more exercise-skilled than a neurology physio for example. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Physios will be trained in anatomy and injury anatomy, rehabilitation, tissue healing processes, along with treatments and interventions. NHS physis will work as part of a multidisciplinary team whereas private physios may or may not.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you see a physio they may treat you with hands on manual therapy skills and/or give you movement advice. If you experience an accident or musculoskeletal trauma it would be advisable to seek the advice of a chartered physiotherapist on the Health &amp; Care Professions Council (HCPC).</span>\n\n&nbsp;\n<ul>\n 	<li aria-level=\"1\"><b>Golf Coach</b></li>\n</ul>\n&nbsp;\n\n<img class=\"size-medium wp-image-29232 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/08/GOLF-andrew-lomas-aGlpdQ2Yolk-unsplash-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This very affluent and popular hand eye coordination game requires great biomechanics for players to optimise their performance and drive while avoiding injury. So finding a good golf coach can make a big difference.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Golf coaching is dominated by the Professional Golfers Association of America (PGA) who’s training programmes consist of a 3 year foundation degree in golf studies, a 3 year Diploma in higher education golf and a 3 year BSc in higher golf management studies.</span>\n\n<span style=\"font-weight: 400;\">However movement practitioners with a good understanding of movement, a special interest in golf &amp; the appropriate insurance scope could access a Golf Biomechanics workshop for an improved understanding of basic golfing requirements. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This could potentially be achieved in a CPD day rather than a full degree. Although a popular level 1 training course delivered by the Titelist performance institute is also around 6 hrs they do also deliver more extensive training at higher levels. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A golf coach will want to evaluate the golfer\'s swing &amp; may use functional movement screening (FMS) and/or video analysis equipment. The FMS is to better understand the players movement qualities or limitations. Whereas the video can be used to slow things down to see exactly which plane the golfer is passing through so they can optimise their movement through whichever skill set they are qualified in.When looking for a golf coach it might be worth seeking a SafeGolf or PGA accredited practitioner. </span>\n\n&nbsp;\n<ul>\n 	<li aria-level=\"1\"><b>Equine Biomechanics / Riding coaches </b></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Equine biomechanics is another field of sport that recognises the value of riding coaches being able to assess the riders biomechanics and movement as well as the horses. Historically the focus has very much been on horse biomechanics in terms of investing time and resources. However a more modern approach will also have knowledge in the field of human biomechanics since it has been demonstrated that the influence of forces and loads caused by movement can be both ascending and descending. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This has resulted in riding coaches investing time into learning more about human movement &amp; biomechanics so they can advise the rider on exercises to help them sit more symmetrically in the saddle for example. A functional leg length discrepancy in a human caused by poor pelvic or spine biomechanics could result in the horse ‘pulling’ one way. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If riding coaches are trained in human movement they can evaluate the root causes between them and the horses movement patterns and offer appropriate interventions for both. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finding a registered riding coach through the British Horse Society (BHS) is probably a good place to start otherwise they can als be found on the Register of Biomechanics Coaches.</span>\n\n&nbsp;\n\n<b>Conclusion </b>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35144 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.42-278x300.png\" alt=\"\" width=\"278\" height=\"300\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Understanding the importance of a biomechanical assessment is one thing but with all the different methods and such a diverse scope of practitioners available its also vital we understand who the right assessor is for the intended goal. Alternatively we can learn some methods of biomechanical assessment.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would YOU like to be able to assess your clients biomechanics?</span>\n\n<span style=\"font-weight: 400;\">Why not…sample our programmes <a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">CLICK HERE </a></span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35145 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07048-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />','Biomechanical assessment: everything you need to know','','inherit','closed','closed','','35126-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',35126,'https://biomechanicseducation.com/?p=38603',0,'revision','',0),(38604,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','<h2><b>Introduction</b><b> </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you use a search engine to look up the term </span><a href=\"https://www.biomechanicseducation.com/what-is-biomechanics/\"><span style=\"font-weight: 400;\">‘biomechanics’ </span></a><span style=\"font-weight: 400;\">most, if not all, of the information that pops up will be related to sports &amp; performance.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However what we would like to highlight within this blog is how a better understanding of this science both </span><a href=\"https://www.biomechanicseducation.com/what-is-the-difference-between-extrinsic-biomechanics-intrinsic-biomechanics/\"><span style=\"font-weight: 400;\">extrinsically &amp; intrinsically</span></a><span style=\"font-weight: 400;\"> can help movement/exercise coaches &amp; trainers improve the overall health &amp; wellbeing of every single client.</span>\n\n&nbsp;\n<h2><b>What is health &amp; wellbeing?</b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30274 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/11/take-a-hike-day-fun-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The World Health Organisation constitution states:</span><i><span style=\"font-weight: 400;\"> \"Health is a state of complete physical, mental &amp; social well-being &amp; not merely the absence of disease or infirmity.\" </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To attempt to define health &amp; wellness/wellbeing is in itself an entire other blog. However here is a previous blog I wrote some years ago exploring the difference between health &amp; fitness<a href=\"https://www.biomechanicseducation.com/health-vs-fitness-can-being-fit-stop-you-being-healthy/\" target=\"_blank\" rel=\"noopener\">&gt;&gt;CLICK HERE TO READ</a></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For many it’s likely that health &amp; wellbeing is about the importance of looking after oneself to feel happy, asymptomatic, robust, capable &amp; purposeful. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For this blog we will focus on predominantly the physical aspect of </span><a href=\"https://www.biomechanicseducation.com/what-is-biomechanics/\"><span style=\"font-weight: 400;\">biomechanics </span></a><span style=\"font-weight: 400;\">because the human body is such a wonderfully complex series of systems &amp; substructures. However we will also explore some case study examples to see how biomechanics can also impact upon the mindset or psychology of our clients. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In very simplistic terms there are 3 key substructures that we rely on to enable us to move freely &amp; with less pain. The </span><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/\"><span style=\"font-weight: 400;\">skeletal system</span></a><span style=\"font-weight: 400;\"> is a framework upon which the myofascial system attaches to &amp; then relies upon to act as levers &amp; pulleys. This is why we call it bio-’mechanics’ in reference to the mechanical comparison of forces, loads, levers, pulleys &amp; pivots in engineering for example. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34553 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/12/Screenshot-2022-12-10-at-21.58.40-300x259.png\" alt=\"\" width=\"300\" height=\"259\" />\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Note: the biotensegrity model (Prof Steve Levit) challenged the ‘standard’ biomechanical model by proposing the human body is far more sophisticated in comparison to a machine. Biomechanics Education agrees but also believes in simplicity for comprehension &amp; application of human movement. So with this we teach practitioners a deeper level of understanding the 3 subsystems. This enables them to apply the skills of assessment &amp; movement using a simple biomechanical model but with the recognition of what is required to work with a complex human body AND a diverse range of clients &amp; bodies. (Rachel Frances Thomson)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally the 3rd subsystem is the incredible nervous system. This is like the software of the entire body from the </span><a href=\"https://www.biomechanicseducation.com/understanding-nerves/\"><span style=\"font-weight: 400;\">central nervous system</span></a><span style=\"font-weight: 400;\"> (CNS) that is the brain and </span><a href=\"https://www.biomechanicseducation.com/spine-mobility-project/\"><span style=\"font-weight: 400;\">spinal cord</span></a><span style=\"font-weight: 400;\">, to the peripheral nerves that continue within the torso &amp; limbs. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The nervous system sends messages through to the myofascial system about how much tone or effort to apply across a joint of the skeletal system. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34554 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/12/Screenshot-2022-12-10-at-22.00.06-300x278.png\" alt=\"\" width=\"300\" height=\"278\" />\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Note: Karel Lewitt (1916-2014) described as the father of manual medicine, a Czech neurologist (Manipulative Therapy) suggested that we are born with a set of ‘genetic movement codes’, also that we gain conditioned movement codes as we develop, grow &amp; use our bodies. This means the variety of ways in which we use our bodies results in the formation of new codes of movement/s. So in fact the human body is a real master of compensation.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now biomechanically </span><i><span style=\"font-weight: 400;\">conditioning</span></i><span style=\"font-weight: 400;\"> movement codes can be a good thing in terms of practising something to optimise performance or repeating a pattern to gain coordination or loading the body more to gain strength by developing the tissues tolerance to those loads. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However these compensatory factors can be equally bad for our inner subsystems. Imagine what happens over time when we don\'t move in a certain way or use up certain joint ranges or don’t load certain body parts very much or at all. An example could be the modern ailments that can result from our overly comfortable or easier lifestyles as technology &amp; equipment innovations continue to develop &amp; attract attention. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider a client whose desk job means they almost only ever sit &amp; stand to &amp; from 90 degrees of hip flexion in the sagittal plane (front to back). Over time the tissues across their pelvis could lose their capacity &amp; their tolerance to loads beyond that range of motion &amp;/or in that plane of motion. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">So what?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well add to that a sedentary lifestyle outside of work that could encourage further compensation. Driving a car, playing a racket sport &amp; carrying something heavy. We generally use the dominant arm, side or hand as it </span><i><span style=\"font-weight: 400;\">feels better</span></i><span style=\"font-weight: 400;\"> that way around. These asymmetries in themselves aren\'t necessarily detrimental however over time they can encourage the body to adapt tissue tolerance asymmetrically &amp; lose capacity for alternative movements, ranges &amp; loads.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Since gravity always pulls us down towards earth the more ‘off centre’ we are stacked up the more this could encourage tissue adaptation to those asymmetries. We certainly don\'t need perfect symmetry but a good balance of coordination, strength &amp; loading encourages healthier biomechanical body &amp; performance. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now the more </span><a href=\"https://www.biomechanicseducation.com/understanding-the-importance-of-intrinsic-biomechanical-principles/\"><span style=\"font-weight: 400;\">intrinsic biomechanical</span></a><span style=\"font-weight: 400;\"> problems there are combined with </span><a href=\"https://www.biomechanicseducation.com/what-is-the-difference-between-extrinsic-biomechanics-intrinsic-biomechanics/\"><span style=\"font-weight: 400;\">extrinsic problems</span></a><span style=\"font-weight: 400;\"> this increases the risk estimation. The ‘systems’ are likely to start to complain, giving warning signals through the nociceptors (danger receptors or pain signals) by way of an ache or niggle. This is the genius of our fabulous bodies, it TELLS us to change something!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So let’s explore some specific examples of how understanding intrinsic biomechanics can really contribute to improved health &amp; wellbeing. </span>\n\n<span style=\"font-weight: 400;\">As we consider our first case study example here we can assume the loading or conditioned movement coding on their bodies has been over at least 60+ years. </span>\n\n&nbsp;\n<h2><b>Example 1: Older adults </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Older adults (in this definition 60+yrs) generally want to maintain mobility in their joints to be able to balance &amp; remain confident &amp; independent in their movement. It has been suggested that physiologically our bodies decline naturally around 2% per decade however some will decline quicker than others depending upon their genetics, lifestyle choices along with diet &amp; the robustness of their </span><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-taster/\"><span style=\"font-weight: 400;\">intrinsic biomechanics.</span></a><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34555 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/12/shutterstock_520248520-300x192.jpg\" alt=\"\" width=\"300\" height=\"192\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This demographic appreciate moving freely as their joints begin to age &amp; stiffen naturally. So pure low range joint mobility like those taught in the </span><a href=\"https://www.biomechanicseducation.com/imovefreely-3/\"><span style=\"font-weight: 400;\">iMoveFreely programme</span></a><span style=\"font-weight: 400;\"> are perfect for them. Then the low level muscle energy techniques that are isometric (static 20% effort contractions that require no dynamic movement) are extremely safe &amp; effective for improving muscle function while not stressing the joints with lots of repetitions. Also combining them with the slow &amp; controlled nerve mobilisations make the intrinsic biomechanical model a safe prehabilitation programme for this demographic\'s health &amp; wellbeing.</span>\n\n&nbsp;\n<h2><b>Example 2</b><span style=\"font-weight: 400;\">: </span><b>Individuals with chronic, persistent or long term conditions</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Movement offers our bodies some really great benefits for protection as well as to stay healthy.  For the prevention &amp; management of a long term condition or comorbidities (more than one long term condition) like diabetes, obesity, COPD (chronic obstructive pulmonary disease) vascular (circulatory) disease, cancer, clinical depression, stroke, asthma, arthritis to list some of those listed on the NHS website, we can use movement to unburden the NHS.</span>\n\n<span style=\"font-weight: 400;\">By gaining high quality education in how these conditions may impact upon an individual\'s movement (amongst other things) we could also deepen our understanding of their intrinsic biomechanics to bring back some quality of life while empowering these clients to self manage with the </span><a href=\"https://www.biomechanicseducation.com/imovefreely-3/\"><span style=\"font-weight: 400;\">iMoveFreely programme</span></a><span style=\"font-weight: 400;\">. This bespoke programme doesn\'t demand they join a gym, nor do they need to have any specific equipment necessarily &amp; it could be deemed a no sweat ‘workout’ since it\'s about ‘pre-habilitating’ or preparation for movement &amp; in some cases works as post rehabilitation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While clinicians &amp; NHS staff are vital in the treatment &amp; management of these types of conditions, exercise &amp; movement interventions more often than not are the best long term solution for a variety of reasons. </span>\n\n<span style=\"font-weight: 400;\">Practitioners that specialise in exercise like </span><a href=\"https://www.futurefit.co.uk/personal-training-courses/\"><span style=\"font-weight: 400;\">personal trainers</span></a><span style=\"font-weight: 400;\">, fitness instructors &amp; </span><a href=\"https://www.futurefit.co.uk/strength-conditioning-courses/level-3-strength-conditioning/\"><span style=\"font-weight: 400;\">strength coaches</span></a><span style=\"font-weight: 400;\"> who understand specifically the application of intrinsic biomechanics, behaviour change, motivational interviewing &amp; have a qualification for working with individuals with long term conditions are the perfect referral point for a movement programme.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-34557 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/12/shutterstock_515526265-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The key requirements within referral networks are qualified individuals who understand the body really well, are able to confidently communicate with a multidisciplinary team &amp; have a clear understanding of boundaries. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But also over &amp; above all of this is the ability to assess, evaluate, monitor &amp; review each clients progress using screens &amp; assessments to prove success (or otherwise) that the appropriate intervention is being utilised. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having an evidence based intrinsic biomechanics screening system that is reproducible by all trained practitioners, like the </span><a href=\"https://www.biomechanicseducation.com/what-is-a-biomechanics-coach/\"><span style=\"font-weight: 400;\">Biomechanics Coach</span></a><span style=\"font-weight: 400;\"> skill set, is really quite unique. The iMoveFreely programme is extremely empowering to individuals who are unlikely to join a gym facility since they can be done at home or at work for example. </span>\n\n<span style=\"font-weight: 400;\">This coincides with the ability for practitioners to implement behaviour change skills into their practise, especially those who understand the impact of applying a biomechanical understanding into their programme writing.</span>\n\n&nbsp;\n<h2><b>Example 3: Athletes</b></h2>\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/what-is-the-difference-between-extrinsic-biomechanics-intrinsic-biomechanics/\"><span style=\"font-weight: 400;\">Extrinsic biomechanics</span></a><span style=\"font-weight: 400;\"> is possibly the most widely used application of the science of biomechanics. Using expensive video analysis equipment practitioners would calculate pretty complicated mathematical data to improve sports performance. They would interpret the best joint angles, timing, positioning of the body etc for that sport or specific movement. </span>\n\n<span style=\"font-weight: 400;\">However it’s extremely important that these practitioners are also trained in understanding intrinsic biomechanics &amp; how the 3 subsystems impact upon what they’re looking at on a video for example. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34556 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/12/shutterstock_375191113-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For true health &amp; wellbeing of our athletes simply trying to correct movements to be more aesthetically pleasing may not compliment the individuals natural genetic make up.</span>\n\n<span style=\"font-weight: 400;\">An example would be a normal pelvic variation like a femoral anteversion or coxa vara. This is when an individual is born with a more medially rotated femur at the hip socket &amp;/or a particularly small angle between the neck &amp; shaft of the femur. Both variations may result in a knee valgus presentation or ‘knock knees’.</span>\n\n<span style=\"font-weight: 400;\">If we simply analyse this athlete extrinsically we may want to encourage them to push their knees out to ‘look’ better. Yet biomechanically their intrinsics are stacked up that way &amp; we may in fact invite a problem. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So understanding intrinsic biomechanics could be described as the best approach for risk reduction &amp; performance optimisation based on the bespoke nature of the assessments allowing for great benefits. </span>\n\n&nbsp;\n<h2><b>Conclusion</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So the benefits of intrinsic biomechanics on our health &amp; wellbeing is evident in every type of client demographic we may work with over our careers as instructors, trainers &amp; coaches. </span>\n\n<span style=\"font-weight: 400;\">These benefits really come to the fore when we are able to develop a multidisciplinary team around us as part of our client journey for best practice.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s often once a practitioner has gained a deeper level of understanding intrinsic biomechanics they really start to appreciate the value. By applying the programme it becomes the missing link between all previous training models, as well as the missing link between diverse practitioner skill sets. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34558 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/12/IMG_1564-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As an unregulated sector we really are in need of this specialism in intrinsic biomechanics to fill the gaps between health &amp; fitness, wellness &amp; clinical practice, exercise &amp; medication. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not start your career change journey with our community around you by investing in our hugely popular </span><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\"><span style=\"font-weight: 400;\">Diploma in Biomechanics Coaching</span></a><span style=\"font-weight: 400;\">? Some of our 2023 dates are almost fully booked already so please do get in touch to find out more &amp; reserved your place! </span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">WE NEED YOU!  &gt;&gt;&gt;CLICK HERE TO FIND OUT MORE&lt;&lt;&lt;</span></a></h1>','How does understanding intrinsic biomechanics improve overall health & wellbeing?','','inherit','closed','closed','','34519-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',34519,'https://biomechanicseducation.com/?p=38604',0,'revision','',0),(38605,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','<b>Introduction </b>\n\n<span style=\"font-weight: 400;\">As we have discussed in previous blogs the science of movement known as </span><a href=\"https://www.biomechanicseducation.com/what-is-biomechanics/\"><span style=\"font-weight: 400;\">biomechanics</span></a><span style=\"font-weight: 400;\"> is a very big subject that can be quite complex.</span>\n\n<span style=\"font-weight: 400;\">Within this blog we will break it down further to discuss 2 fields of biomechanics, how they differ, how they influence each other and how the science can often be misunderstood. </span>\n\n&nbsp;\n\n<b>What is extrinsic biomechanics?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-34061 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/10/sven-mieke-optBC2FxCfc-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />While both extrinsic and intrinsic biomechanics are about understanding how to improve performance and risk of injury, extrinsic biomechanics is more specifically what we can </span><i><span style=\"font-weight: 400;\">see</span></i><span style=\"font-weight: 400;\"> when our client performs a movement by looking at WHAT is happening. </span>\n\n<span style=\"font-weight: 400;\">An example could be seeing a client\'s knee buckle inwards (knee valgus) while they perform a squat. Our basic training would teach us to coach the client to ‘</span><i><span style=\"font-weight: 400;\">push their knees out</span></i><span style=\"font-weight: 400;\">’. This might work sometimes but on those occasions that it doesn’t, or if over time it\'s still a struggle for our client, we may want to consider the intrinsic biomechanics model….</span>\n\n&nbsp;\n\n<b>What is intrinsic biomechanics?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><a href=\"https://www.biomechanicseducation.com/understanding-the-importance-of-intrinsic-biomechanical-principles/\" target=\"_blank\" rel=\"noopener\">Intrinsic biomechanics</a> considers the anatomy of the substructures (myofascial, skeletal, neural) while we analyse and measure movements to better understand WHY our client is producing that movement, in that particular way. </span>\n\n<span style=\"font-weight: 400;\">So to use the example given above of a client\'s knees buckling inwards during a squat, a practitioner who is trained in intrinsic biomechanics would have the ability to evaluate and assess their client’s pelvis, spine, shoulders, knees and feet (including myofascial, skeletal, neural). This would allow them to identify which of these areas may be resulting in the presentation of a knee valgus. This could also be a combination of dysfunctions and adoptions due to the way our amazing bodies compensate through the kinetic chains within us.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-33792 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1520541617-300x230.jpg\" alt=\"\" width=\"300\" height=\"230\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Of course once we are able to identify which body part and which substructure isn\'t moving as well as it should we can prescribe the most appropriate intervention. Practitioners who are able to understand and assess their clients intrinsic biomechanics also have the ability to re-test immediately after their client has performed the intervention technique, thus enabling them to be more objective about the causes of a clients movement limitations.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How great it is to be able to </span><i><span style=\"font-weight: 400;\">prove</span></i><span style=\"font-weight: 400;\"> our value immediately!</span>\n\n&nbsp;\n\n<b>Similarities</b><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Both relate to movement and biomechanics</span>\n\n<span style=\"font-weight: 400;\">Both are observed from outside </span>\n\n<span style=\"font-weight: 400;\">Both are important for understanding movement </span>\n\n<span style=\"font-weight: 400;\">Both are key for any practitioner whose service involves movement</span>\n\n&nbsp;\n\n<b>Differences</b><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Extrinsic - This is the most common of the 2 examples. It is what we see during a movement, gait analysis, video analysis, motion monitoring and so can often rely on equipment to make a true assessment. It is what we can watch on the TV, when we are at an event, when we see another runner. It\'s the WHAT of movement analysis - ‘knee valgus’</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Intrinsic - This is less commonly understood and a newer interpretation of the science of biomechanics. It has been developed from over 20+yrs of research on 4.5k subjects to better understand what is going on under the skin to produce what we see. This requires specialist training and a deeper knowledge of anatomy along with a lot of hands on practice. The hands-on practice allows practitioners to assess a variety of body types using the same system but to be able to write a bespoke programme for the individual. </span>\n\n&nbsp;\n\n<b>Importance in understanding the difference - case study example</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\" wp-image-34059 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/10/Screenshot-2022-10-19-at-15.15.36-300x167.png\" alt=\"\" width=\"365\" height=\"203\" />The difference is vital to best understand &amp; appreciate what we might do to address any issues identified.</span>\n\n<span style=\"font-weight: 400;\">What we might see a runner do extrinsically is ‘over’ pronate. This could also be done using very expensive video gait analysis equipment. This would show the ‘faulty’ movement i.e. pronation. Extrinsically this might suggest an orthotic or a shoe specifically designed to reduce pronation. Which may in fact be the correct intervention.</span>\n\n<span style=\"font-weight: 400;\">However intrinsically there are many reasons why we might see ‘over’ pronation. Therefore if we don’t assess our runners\' intrinsic biomechanics we may miss potential causes that are not necessarily obvious during the movement of running. There may also be combinations of causes and often there are. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Potential intrinsic contributions to the presentation of ‘over’ pronation in a runner..</span>\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-34060 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/10/Screenshot-2022-10-19-at-15.17.03-176x300.png\" alt=\"\" width=\"176\" height=\"300\" />Functional leg length discrepancy </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Dysfunctional pelvis</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Tight lateral spine flexors </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Overactive shoulder protractors </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Ligament dominance </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Tight calves</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Tight sciatic nerve </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Loose subtalar joint</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Loose midtarsal joint</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Low arch height</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">To name a few!</span>\n\n&nbsp;\n\n<b>Conclusion</b><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Extrinsic biomechanics may be misinterpreted without the practitioner having an understanding of the intrinsic biomechanics details. </span>\n\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/what-is-a-biomechanics-coach/\"><span style=\"font-weight: 400;\">Biomechanics Coaches</span></a><span style=\"font-weight: 400;\"> specialise in intrinsic biomechanics as they have a deeper understanding of the musculoskeletal system. Their skill is in using their ability to assess their clients intrinsic biomechanics to specifically write programmes and advise them on ways to move more freely.</span>\n\nWould you like a <a href=\"https://www.biomechanicseducation.com/how-can-you-get-a-job-in-biomechanics/\" target=\"_blank\" rel=\"noopener\">job in biomechanics? </a>\n\nMaybe we can help! Why not get in touch and talk to one of us about a <a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">career in intrinsic biomechanics</a>!\n\n&nbsp;\n\n<img class=\"size-medium wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n<em><strong>CALL NOW 0203 841 6151 <a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">BECOME A BIOMECHANICS COACH</a></strong></em>','What is the difference between extrinsic biomechanics & intrinsic biomechanics?','','inherit','closed','closed','','34054-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',34054,'https://biomechanicseducation.com/?p=38605',0,'revision','',0),(38606,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','<h1><span style=\"font-weight: 400;\">Introduction </span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Working in the field of biomechanics has historically required extremely high level degree training. Yet the basic principles of intrinsic biomechanics can be simple to learn, and in particular to apply, for a movement practitioner without ever going to university or doing a degree.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The subject matters within the science of human movement (</span><a href=\"https://www.biomechanicseducation.com/what-is-biomechanics/\"><span style=\"font-weight: 400;\">biomechanics</span></a><span style=\"font-weight: 400;\">) means that by definition anyone who works with human bodies would benefit from a deeper understanding of biomechanics and in particular, intrinsic biomechanics. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Jobs could range from becoming a </span><a href=\"https://www.biomechanicseducation.com/what-is-a-biomechanics-coach/\"><span style=\"font-weight: 400;\">Biomechanics Coach</span></a><span style=\"font-weight: 400;\"> to working in athletic performance, becoming a researcher, performing gait analysis, specialising in sports biomechanics or becoming a qualified biomechanist. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Modern equipment &amp; teaching styles can make learning about biomechanics more accessible &amp; fun. There are also many different routes into careers that require biomechanical knowledge &amp; yet the earning potential is quite broad </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Examples of world leaders in biomechanics are:</span></h2>\n<a href=\"https://www.backfitpro.com/books/back-mechanic-the-mcgill-method-to-fix-back-pain/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-33781 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/world-leaders-in-biomechanics--300x126.png\" alt=\"\" width=\"300\" height=\"126\" />Stewart McGill, spine biomechanics expert. </span></a>\n\n<a href=\"https://www.nutritiousmovement.com/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Katy Bowman, biomechanist. </span></a>\n\n<a href=\"https://www.brytespark.com/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Martin Haines, Biomechanics Coach &amp; chartered physio. </span></a>\n\n&nbsp;\n\n&nbsp;\n<h1><img class=\"size-medium wp-image-33783 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_383085961-300x150.jpg\" alt=\"\" width=\"300\" height=\"150\" /></h1>\n<h1></h1>\n<h1><span style=\"font-weight: 400;\">Industries where skills in biomechanics are useful</span></h1>\n<h2><span style=\"font-weight: 400;\">Health &amp; fitness sector </span></h2>\n<span style=\"font-weight: 400;\">Within the health &amp; fitness sector any practitioner who has a good understanding of anatomy &amp; biomechanics will certainly stand out. The impact this skill set has already been having on our sector is that we are closing the gap between us &amp; our clinically trained peers (GP’s,physiotherapists, osteopaths, chiropractors). The reason for this is any exercise practitioner that can fully understand, appreciate and communicate their understanding of intrinsic biomechanics poses a reduced risk along with the specialist skills that can help clients with recurring issues or modern ailments. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-33782 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1846292467-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Biomechanics Coach </span></h3>\n<span style=\"font-weight: 400;\">The health, fitness and exercise sector is showing huge demand for practitioners who are skilled in understanding intrinsic biomechanics. This is the perfect place for personal trainers, pilates &amp; yoga teachers, strength &amp; conditioning coaches to reduce risk and optimise performance for their clients by training in the skills of Biomechanics Coaching for example. The skill set also allows for truly personal programming based on their ability to fully assess every joint and structure within each client.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Biomechanics Coaches typically charge 2-3 x more than personal trainers from the day to day running of their services. They also find they are more trusted &amp; sought out by clinicians due to their specialism in identifying causes of modern ailments. </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Personal trainers</span></h3>\n<span style=\"font-weight: 400;\">While their main role may well remain that of a personal trainer the skills of Biomechanics Coaching will really enhance their ability to assess risk of injury in their clients. They will also better understand how to create bespoke training programmes for improving performance. Alongside these advanced skills they will know how to communicate with clinicians, allied healthcare professionals, how &amp; when to refer tricky or symptomatic clients, while also knowing how to manage their programme if they have been referred back but still experience pain or recurring injuries.</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Pilates &amp; Yoga teachers </span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">During both one to one &amp; group pilates or yoga sessions the skills in understanding intrinsic biomechanics are particularly helpful due to many participants in these classes attending in the Hope of resolving their physical ailments or movement limitations. Should the pilates/yoga teacher have a good understanding of intrinsic biomechanics they will have confidence in which postures or positions are best for an individual. They will also have unique intervention techniques they can deliver &amp; prescribe in any environment. </span>\n\n<span style=\"font-weight: 400;\">£20-30k</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Specialist Sports Coaching Sector </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Within the sports coaching sector it is paramount the coach has a good understanding of biomechanics and in particular intrinsic biomechanics. The reason for this is the 2 priorities for any athletes are optimisation of their performance level along with reduction of risk of injury. </span>\n\n<span style=\"font-weight: 400;\">Sports coaches with a good biomechanical knowledge are certainly the most impactful and in demand coaches for this reason. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sport has become more and more popular for youngsters but also as the alternative for adults who do not enjoy being in the gym environment. The impact of this on sports coaching means gaining clients becomes harder as the competition is stronger. This is why anybody wanting to work as a coach in sport should seriously consider training specifically in intrinsic biomechanics. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-33788 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_496233847-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Strength &amp; Conditioning trainers/ Coaches</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Understanding biomechanical principles are a must have for any strength &amp; conditioning trainer/coach. The ability to better interpret angles and forces during lifts like the snatch, clean &amp; jerk is vital when coaching an athlete into the optimal position for that lift. </span>\n\n<span style=\"font-weight: 400;\">They also require an appreciation of joint biomechanics during the force production of a track athlete propelling themselves forwards when speed &amp; performance training during sprinting or upwards during a high jump for example. </span>\n\n<span style=\"font-weight: 400;\">Being able to evaluate the biomechanics of each individual athlete allows the coach to strengthen them with specificity to their performance level &amp; sport.</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Equine Biomechanics </span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are specific sporting activities where the term ‘biomechanics’ is more commonly used, horse riding is one of them. Historically equine sport has been mainly focused on understanding and improving the horses biomechanics &amp; well being. However recent trends are now encouraging riding instructors to gain skills in human biomechanics to really enhance their service provision. With Biomechanics Coaching skills they have the ability to recognise that a rider could have pelvic dysfunction presenting as a functional leg length discrepancy that can cause the horse to lean or pull in one direction due to the added pressure through one side of the saddle. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rider coaches and equine professionals are recognising the value of becoming a Biomechanics Coach as it teaches them how to assess for an issue like this and also address it with simple exercises.</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Golf Coach</span></h3>\n&nbsp;\n\nOther popular sports that really appreciate the benefit of understanding biomechanics are golf coaches. The swing of a golf club heavily relies on great biomechanical set up in the player. The corkscrew effect requires taking the club back behind the body through thoracic and hip rotation, with shoulders moving around the upper body.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Next the unleashing through the rotation starting in the legs and hips as they drive forwards above the lower limbs, unwinding the spine &amp; allowing the club to ‘swing’ through to whip the ball with enough hand eye coordination to hit the ball perfectly in order to travel hundreds of yards down the fairway &amp; hopefully into a tiny hole in the ground. They clearly must practise for many many hours to gain the quality of force production and precision of biomechanics required for this kind of accuracy.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The biggest challenge in this particular sport is the sporting injuries that can result. The repeated strengthening of asymmetry is really purely for the sport &amp; not great for healthy natural biomechanics. All players will prefer to play in one direction with their swing. The ‘conditioning’ of the spine, hips &amp; shoulders to produce force, motion &amp; synchronicity in just one direction takes its toll over time if not addressed. Overtime they will often report injuries or asymmetries that in day to day life cause problems like back pain, knee pain or neck pain.</span>\n\n<span style=\"font-weight: 400;\">This is where being able to understand the golf player\'s intrinsic biomechanics gives the coach the advantage.</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Running coach</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Running or jogging is one of the most popular sporting activities there is due to its low cost &amp; easy access with a camaraderie that becomes addictive to many keen runners. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, like all sports, running comes with common sporting injuries. So any running coach with a good understanding of lower limb &amp; foot biomechanics will have the edge when seeking optimisation of their runners biomechanical performance &amp; speed performance training.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The biomechanical analysis of running can identify both extrinsic &amp; intrinsic influence. These offer different routes for intervention with a common &amp; controversial debate being the way the foot strikes tye floor.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The evidence for &amp; against forefoot v’s rear foot striking is quite conflicting so a running coach who is trained in intrinsic biomechanics would have the ability to decide which foot strike their runner should use.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having a good understanding of foot &amp; ankle biomechanics also allows running coaches to advise when a podiatrist may be required or offer guidance on footwear. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Clinical research sector </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Within the clinical research world the impact of understanding biomechanics means researchers can use human body science (biomechanics) to prove or disprove certain elements of clinical practice. </span>\n\n<span style=\"font-weight: 400;\">In fact when any practitioner is learning about biomechanics the evidence based models will more often than not be from clinical studies. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The evidence and research behind the intrinsic biomechanics programmes is predominantly from clinical research. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-33790 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_286003427-300x182.jpg\" alt=\"\" width=\"300\" height=\"182\" />\n<h3></h3>\n<h3><span style=\"font-weight: 400;\">Biomechanist</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">To be a Biomechanist individuals would require at the very least a degree level of training in this field. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Katy Bowman is a well known &amp; respected Canadian Biomechanist. Her research into the application of engineering principles applied to human bones (levers) &amp; myofascial (pulleys) systems is documented in her books. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Prosthetists &amp; Orthotists use biomechanical principles in their line of work but may not be a biomechanist. </span>\n\n<span style=\"font-weight: 400;\">(Average £30k)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In fact an understanding of biomechanics is used in application in many ‘body worker’ roles but rarely is the term ‘biomechanics’ used in their professional title. </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Sports physiotherapist</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sports physios who specialise in sports injuries will require a good understanding of biomechanical principles to rehabilitate &amp; reduce risk of their athletes. An understanding of common sporting injuries can really help their specific choices of treatment &amp; exercises.</span>\n\n<span style=\"font-weight: 400;\">(Upwards of £35k)</span>\n\n&nbsp;\n<h3><b>Podiatry</b><span style=\"font-weight: 400;\"> </span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Professionals who analyse gait with the use of expensive video equipment also require a high level of biomechanical knowledge. Podiatrists or foot specialists are experts in the extrinsic analysis of gait, foot biomechanics &amp; the influence of footwear on foot biomechanics. This can also include interventions like orthotics, they may prescribe to improve the gait cycle, force production &amp; dynamic foot biomechanics </span>\n\n<span style=\"font-weight: 400;\">(£25-35k)</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Ergonomist</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This</span> <span style=\"font-weight: 400;\">is safety &amp; efficiency of equipment &amp; transport so a professional in this field would require a strong understanding of human biomechanics in relation to the surroundings.</span>\n\n<span style=\"font-weight: 400;\">(Earning potential £25-75k)</span>\n\n&nbsp;\n<h1><b>Conclusion</b><span style=\"font-weight: 400;\"> </span></h1>\n&nbsp;\n\n<img class=\"size-medium wp-image-33785 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1054776068-300x118.jpg\" alt=\"\" width=\"300\" height=\"118\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Jobs in biomechanics are often assumed to be solely in fields like speed performance training, sports injuries &amp; using modern expensive equipment like video or gait analysis. However as we have discussed here it is clear there are many different routes that can be taken &amp; with huge scope for earning potential.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to learn more about creating a career in intrinsic biomechanics?</span>\n\n<span style=\"font-weight: 400;\">Why not get in touch <a href=\"tel:%EF%BB%BF02038416151\">020 3841 6151</a></span>\n\n&nbsp;','How can you get a job in biomechanics?','','inherit','closed','closed','','33779-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',33779,'https://biomechanicseducation.com/?p=38606',0,'revision','',0),(38607,0,'2024-07-16 11:26:27','2024-07-16 11:26:27','&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><b><i>Principle;</i></b><span style=\"font-weight: 400;\"> meaning </span><span style=\"font-weight: 400;\">\n</span><span style=\"font-weight: 400;\">a fundamental truth or proposition that serves as the foundation for a system of belief or behaviour or for a chain of reasoning.</span></li>\n</ol>\n&nbsp;\n<h2><strong>Introduction </strong></h2>\n<span style=\"font-weight: 400;\">The discussion within this </span><i><span style=\"font-weight: 400;\">Juicemail</span></i><span style=\"font-weight: 400;\"> is to better understand the importance of ‘intrinsic’ biomechanical principles and how they apply to the human body, human motion, movement, recurring injuries, symptoms and modern ailments. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As practitioners of human movement, whether from a personal training, therapy or any other </span><i><span style=\"font-weight: 400;\">unregulated</span></i><span style=\"font-weight: 400;\"> background, we are often lacking in the kind of MSK (musculoskeletal) skills training that our regulated peers (clinicians, allied healthcare professionals, GP’s, physiotherapists, osteopaths etc) are heavily trained in. Yet we are often expected to know about them by our clients, and some employers. In my opinion we should be given compulsory education in some MSK skills for assessing clients during consultations to benchmark and better understand our start point. However until this happens I will remain committed to offering them within our training programmes as an option for exceptionally great CPD’s, reputedly some of the best CPD’s in the industry!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is why the intrinsic biomechanics principles are so revolutionary because the concept has never been offered before. We developed this education programme specifically for unregulated practitioners, but also as a great tool for regulated clinicians, for all the reasons we will describe here.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The forward thinking that began over 30 year ago when we began our research is finally in demand. This is likely due to the recent health crisis and the recognition of how much movement practitioners can help, yet we have always been ill equipped. The principles of understanding intrinsic biomechanics really does offer a depth of understanding human anatomy and the application of movement programming through the use of evidence based assessment and intervention. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The modern ailments that most of our clients complain of today require these skills to identify any biomechanical root causes of their symptoms. Our peers who evaluate them from a clinical perspective can often find no apparent </span><i><span style=\"font-weight: 400;\">clinical diagnosis</span></i><span style=\"font-weight: 400;\"> for their symptoms, thus resulting in disappointment in the ‘failure’ of the clinician. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However ‘biomechanically’ there are, more often than not, lifestyle movement limitations that can be identified through the intrinsic biomechanical principles that demonstrate, and overtime prove, the root cause can in fact be coming from asymptomatic (non painful) areas of their body. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A Biomechanics Coach is trained to work as part of a multidisciplinary team. They would be able to explain to their client that the clinician does not necessarily ‘fail’ but instead, through their ‘lack of a diagnosis’ OR the symptoms recurring, can confirm they are NOT clinical and are therefore the Biomechanics Coach is perfectly placed to offer a simple movement intervention like iMoveFreely.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How great is that! Shall we dive in?</span>\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Principles of intrinsic biomechanics</span></h1>\n&nbsp;\n\n&nbsp;\n\n<img class=\" wp-image-33427 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/IMAGE-1-300x170.png\" alt=\"\" width=\"400\" height=\"227\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Those of us who prescribe exercise need to understand biomechanics (both intrinsic and extrinsic), anatomy and physiology; but perhaps the least understood is the intrinsic biomechanical principles. Unfortunately without this critical area of study, movement cannot be truly understood - and if we do not understand movement, we cannot understand exercise and physical activity.</span>\n\n&nbsp;\n<h3><b>Principle one - Biomechanical assessment (or assessing movement)</b></h3>\n&nbsp;\n<h3><i><span style=\"font-weight: 400;\">Definition - An understanding of what ‘good’ movement is. </span></i></h3>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Why is this important? </span></h2>\n<span style=\"font-weight: 400;\">Having the ability to identify the quality of movement in each body part and subsystem is vital in being able to record links (kinetic chains) of influence. Unless we are assessing every joint and structure within our client’s body we might miss the root cause of their symptoms or movement problem. However everybody’s body is different and has a huge range of variables that affect their movement. This makes ‘measuring’ by comparison a challenge. This is why gaining a good understanding of anatomy and the ‘norms’ of joint ranges, of nerve mobility and of muscle flexibility is key to then learning how much leeway is acceptable through practising on as many bodies as possible.  </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How is the principle recognised? </span></h2>\n<span style=\"font-weight: 400;\">An example of this could be demonstrated in a rotational motion / movement test of the thoracic spine. By limiting movement from all other joints (i.e. the client is seated to limit pelvic motion, shoulder position is fixed to limit scapular motion) we can then ‘measure’ degrees of rotation in either direction. The norms of each thoracic joint range added together &amp; measured in studies demonstrate an expected total range of at least 45 degrees to the right, purely from the thoracic spine, and the same to the left. </span>\n\n<span style=\"font-weight: 400;\">Once we have measured the number of degrees in our client we can then compare, not only the symmetry of the individual\'s rotation motion right to left, but also to the capacity that is evident compared to the ‘normal’ joint ranges of thoracic vertebrae. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\" wp-image-33428 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/IMAGE-2-300x168.png\" alt=\"\" width=\"432\" height=\"242\" />\n<h2></h2>\n<h3></h3>\n<h3><b>Principle two - Analysis of results (of biomechanical assessment)</b></h3>\n&nbsp;\n<h3><span style=\"font-weight: 400;\"><em>Definition -</em> <em>The interpretation of those measurements</em> </span></h3>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Why is this important?</span></h2>\n<span style=\"font-weight: 400;\">Once the measurements have been taken, they need to be analysed and evaluated to allow for decision making. The system we have developed is to work through the body part by part, subsystem by subsystem in the safest, most evidence based and logical route possible. This highlights which body part or subsystem has an influence on another for true identification of the root causes of both movement issues and symptoms that may challenge our clinical peers. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By using the evidence provided from the many years of research we can simply follow the ‘system’ for both accuracy and safety in application of an exercise /movement intervention. Providing us with a base of support in the application for the principles of intrinsic biomechanics.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How is the principle recognised?</span></h2>\n<span style=\"font-weight: 400;\">This principle can be recognised through the use of the resource known as the Links Man. A Biomechanics Coach is trained in how to present their findings by colouring the relevant boxes on the Links Man during their screening process. Then they will start by prescribing an intervention for the pelvic area since there is evidence to suggest 60% of dysfunction comes from the pelvis. (McDonald.R, 1991). By only prescribing an intervention for this area, irrelevant of the full results of the screen, we can re-screen the client immediately to see ‘what has changed’ after only performing a pelvic muscle energy technique for example.  </span>\n\n<span style=\"font-weight: 400;\">When the Biomechanics Coach is not only able to see but also show their client what has changed on their Links Man - commonly the thoracic spine will now rotate further, the shoulders will be able to retract more easily and the nerves can present with more mobility - this proves this key principle of screening, intervention and rescreening to prove the analysis rather than guess what works.</span>\n\n&nbsp;\n\n<img class=\" wp-image-33435 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/Screenshot-2022-08-19-at-09.10.32-222x300.png\" alt=\"\" width=\"276\" height=\"373\" />\n<h2></h2>\n<h2></h2>\n<h3><b>Principle three - </b><span style=\"font-weight: 400;\">Preparation &amp; Capacity </span></h3>\n&nbsp;\n<h3><em><span style=\"font-weight: 400;\">Definition - The initial phase of programming is to restore our clients capacity within the pelvis, spine and shoulder so they are level and moving freely for that individual.</span></em></h3>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Why is this important?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Due to the modern ailments of our lifestyles today the evidence suggests that the body requires preparation for movement in advance of a strength programme. This </span><i><span style=\"font-weight: 400;\">reprogramming </span></i><span style=\"font-weight: 400;\">of the subsystems gives back capacity where compensations have occured. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This phase also allows the body to move more freely and with less pain while increasing confidence in movement for our client. Through repeated assessments it is possible to rule out, or confirm, each intervention\'s influence.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By following a proven evidence based system we can have a good baseline for initiating a training programme to prepare our clients body safely using low grade interventions. By giving their intrinsic biomechanics the ‘capacity’ for movement we can then reassess to identify which intervention influences which body part and substructure. </span>\n\n<span style=\"font-weight: 400;\">This also increases tissue tolerance and client confidence, particularly if they are experiencing recurrent injuries, symptoms or poor movement and control. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How is the principle recognised?</span></h2>\n<span style=\"font-weight: 400;\">Preparation and capacity are recognised once the Biomechanics Coach sees enough improvement in the pelvic, spine and shoulde area and they will know how to decide when to move their client on to the next phase. </span>\n\n&nbsp;\n\n<img class=\" wp-image-33436 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/Screenshot-2022-08-19-at-09.11.55-300x215.png\" alt=\"\" width=\"374\" height=\"268\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This documentation of which intervention changes various parts of the integrated system shows the elimination of compensations proving the body is improving from the inside. It even offers great insight into what might make our client feel worse should the results degraded. An example of this might be a more positive (failed) screen when they have sore muscles from training, or their hormones change or even simply a day of gardening or a bad nights sleep.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<img class=\" wp-image-33431 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/IMAGE-5-300x168.png\" alt=\"\" width=\"389\" height=\"218\" />\n\n&nbsp;\n\n&nbsp;\n<h3><b>Principle four</b><b> - </b><span style=\"font-weight: 400;\">Stability &amp; Control</span></h3>\n<h3></h3>\n<h3><em><span style=\"font-weight: 400;\">Definition -  The purpose of this principle is to give the spine its ability to stabilise and control the torso during daily movement only once the alignment and movement quality has been improved. </span></em></h3>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Why is this important?</span></h2>\n<span style=\"font-weight: 400;\">This safe method of ‘core training’ reduces risk through a 3 step approach to periodising the trunk conditioning programme thus creating a reflex stiffening of the spine that is conditioned and appropriate to the requirement, at the right time and for as long as is required. </span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Basic core progressions - here we teach the simplest neuromuscular progressions right up to the level of an elite athletes requirement.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Isometric core ratios - based on McGills research, this step is all about evaluating and improving the strength ratios of each part of the core/ trunk.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Functional stability - step 3 is having the ability to assess and improve our clients stablity and control while moving. </span></li>\n</ol>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How is the principle recognised?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This principle is recognised by allowing time for evaluation and rescreening to identify trunk stiffness and tolerance. This is done through taking the client through each test and exercise progression step by step to know when they are ready to progress onto the nest step.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\" wp-image-33432 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/IMAGE-6-300x169.png\" alt=\"\" width=\"367\" height=\"207\" />\n<h2></h2>\n<h3></h3>\n<h3><b>Principle five</b><b> - </b><span style=\"font-weight: 400;\">Function &amp; Performance</span><span style=\"font-weight: 400;\"> </span></h3>\n&nbsp;\n<h3><em><span style=\"font-weight: 400;\">Definition -  This principle is the strengthening and reinforcement of the previous 2 principles to improve function and performance in any individual </span></em></h3>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Why is this important?</span></h2>\n<span style=\"font-weight: 400;\">This is important because the ability to perform a task safely and optimally can only really be done safely once principles 3 and 4 have been achieved. </span><span style=\"font-weight: 400;\">Development of the trunk\'s ability to stiffen while the limbs are being used is what gives us stability and control.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How is the principle recognised?</span></h2>\n<span style=\"font-weight: 400;\">This principles can be recognised by the specificity of the movements chosen by the practitioner based on their understanding of their clients needs/goals and the physical and psychological assessment of their client.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\" wp-image-33433 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/08/IMAGE-7-300x168.png\" alt=\"\" width=\"382\" height=\"214\" />\n\n&nbsp;\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Why are principles of intrinsic biomechanics important?</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hopefully the definitions given here have explained the importance of the intrinsic biomechanical principles, particularly in their application. </span>\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Conclusion</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Due to our current lifestyles we are seeing modern ailments becoming normalised. Symptoms caused by these modern ailments are blamed on clinical problems however the body is a master of compensation through its integrated system. Therefore if the body begins to hurt insidiously without any actual trauma occurring it is common for this to be a biomechanical cause that gives off an alarm bell or message to the individual to change something!</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Given the level of objectivity that can be achieved through these rigorous MSK assessments (and reassessment) it is alarming that these principles are not commonly utilised by unregulated practitioners working with clients.</span>\n\n<span style=\"font-weight: 400;\">So hopefully this particular blog has given you an understanding of the importance of intrinsic biomechanical principles…</span>\n\n&nbsp;\n\n<hr />\n\n<h1>Would you like to discuss becoming a Biomechanics Coach?</h1>\n<img class=\"size-medium wp-image-28329 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h2><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Why not get in touch HERE</a></h2>\nOR info@biomechanicseducation.com\n\n&nbsp;','Understanding the importance of Intrinsic Biomechanical principles','','inherit','closed','closed','','33426-revision-v1','','','2024-07-16 11:26:27','2024-07-16 11:26:27','',33426,'https://biomechanicseducation.com/?p=38607',0,'revision','',0),(38608,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<img class=\"size-medium wp-image-1338 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/10/Biomechanics-Coach-CMYK-300dpi-300x100.jpg\" alt=\"\" width=\"300\" height=\"100\" />\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\">\n<h2><span style=\"font-weight: 400;\">Introduction: Summary/overview of a Biomechanics Coach</span></h2>\n</li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sometimes during functional movement patterns we are simply grooving our body to compensate for our intrinsic biomechanical faults. What we should be doing is reducing the need to compensate by correcting the causes, not merely working around them.</span>\n\n<span style=\"font-weight: 400;\">There are fundamental differences between the phases of most training philosophies and our programme. Many training programmes begin with ‘functional’ training, whereas our programme sees it as being closer to the end. It is important to understand our client’s physical readiness before planning an exercise programme. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For over 30yrs we have studied the intrinsic biomechanics results of 4.5k subjects using iMoveFreely prescription to improve movement for all demographics of clients with a variety of goals. The results have been stunning and speak for themselves. </span>\n\n<span style=\"font-weight: 400;\">As coaches and trainers we mostly miss out on any education in biomechanics. It is most commonly expected that clinicians will be the practitioner best placed to assess the neuro-musculoskeletal sub systems. Yet when we get a new client we can gain a huge advantage when we can assess their intrinsic biomechanics and use the results to guide our programming. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h2></h2>\n<h2><b>Philosophy</b></h2>\n<span style=\"font-weight: 400;\">We should always be challenging the latest ‘current’ thinking. Just because something new, like functional training and perhaps Pilates comes along to the industry, does that mean all the work you’re doing at the moment doesn’t work anymore? Of course not, it just means we have something else to integrate into what we are already doing, not necessarily discredit them.</span>\n\n<span style=\"font-weight: 400;\">The industry is often seduced by the ‘next big thing’, but invariably this is simply another way of achieving certain targets for your clients, not necessarily the ONLY way and it certainly doesn’t mean you should be forgetting what you were doing – unless it’s been directly disproven. Nothing should ever be done in isolation, as the exercise model suggests, a series of progressions is the most effective way to progress exercise.</span>\n\n<span style=\"font-weight: 400;\">We should focus our attention to real issues, and using all the proven methodologies available to us, answer questions like:</span>\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">  How do I know which exercise to give to my clients – how do I know which will help them and which will hurt them?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">  Apart from increasing the number of reps and sets, how should I be progressing my client’s exercise programmes?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">  Why choose one particular exercise over another that seemingly does the same thing?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">  Should I be using gym balls in their training and if so, when?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">  Should I be using machines anymore? Are they ‘functional’? Does that matter?</span></li>\n</ul>\n<span style=\"font-weight: 400;\">It is often difficult to answer these questions for all our clients with any degree of honesty and accuracy with the assessments that are in place at the moment. Until the industry’s understanding of intrinsic biomechanics and its implications to exercise prescription is better understood our exercise prescription will not be as good or as safe as it should be.</span>\n\n<span style=\"font-weight: 400;\">Something we can find challenging when coaching movement, is getting a balance between trying to change the lines of symmetry and simply letting the client MOVE the way their body needs or wants to because of how they are stacked up on the inside.</span>\n\n<span style=\"font-weight: 400;\">…and in some cases that would be correct BUT consider this…</span>\n\n<span style=\"font-weight: 400;\">What if our client has been sitting at their desk all day and comes to our session with a ‘functional’ twist at their pelvis? Something neither are aware of. This can be caused by their ‘intrinsic biomechanics’ adapting to that sedentary static desk posture, with muscles potentially compensating with a  subclinical spasm. This can in turn limit the movement at the joints thus creating the ‘impression’ of a longer limb when one side of the pelvis is ‘stuck’ rotated forward and down. This can result in a </span><i><span style=\"font-weight: 400;\">deliberate</span></i><span style=\"font-weight: 400;\"> compensation by the body (a true master of compensation) requiring the knee to buckle inwards to allow the body to descend into a squat without hurting the lower back; for example. In this instance it may not be prudent to coach our client to push the knee out even if it is buckling in!</span>\n\n<span style=\"font-weight: 400;\">So how on earth are we supposed to KNOW what is simply poor technique and what is in fact a result of the way their intrinsic biomechanics are stacked up??</span>\n\n<span style=\"font-weight: 400;\">Ideally we have screening skills to identify what their intrinsic biomechanics are like before we train their movement/s. This then guides us on which techniques are good for them on that day and which might create a problem.  </span>\n\n<span style=\"font-weight: 400;\">This could be as simple as performing a range and symmetry test, then introducing an anti spasm or muscle energy technique, like the 4 Sign. Then perform the test again and if the result has improved this advises your programming for that session. </span>\n\n<span style=\"font-weight: 400;\">We all appreciate the body is a complex series of structures and tissues so it can often be quite overwhelming when you are trying to decide where to start and how to proceed. This is where Biomechanics Coaching fits beautifully into place.</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-24100 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/09/DSC01482-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\">\n<h2><span style=\"font-weight: 400;\">What does a Biomechanics Coach do?</span></h2>\n</li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Biomechanics Coaches use a system to help mitigate the injury risk of our athletes and clients</span><b><i>.</i></b> <span style=\"font-weight: 400;\"> Using an evidence-based system of screening and PREhabilitation exercise programme.  We have shifted the paradigm to create a system that is modular and applicable to all other forms of exercise prescription.  This will empower us to truly understand the root cause of our population’s many injuries.  The Diploma in Biomechanics Coaching&#x2122; is designed to achieve this goal and to provide you with the ability to train your clients for optimal performance while reducing the risk of injury.  With a huge number of the UK population still unmotivated to engage in regular exercise, we must address the powerful way in which pain and discomfort contribute to this statistic. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-33153 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.06.11-300x287.png\" alt=\"\" width=\"300\" height=\"287\" />\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">The 3 phase system:</span></h1>\n&nbsp;\n<h2><b>Preparation &amp; Capacity</b></h2>\n<span style=\"font-weight: 400;\">This first phase is based on the fact that muscles, joints and nerves all affect each other and so it provides techniques to affect each system. The initial series of techniques consists of anti spasm exercises based on Ribot-Ciscar’s work (Jiri Dvorak had the same results from similar studies) using a specific muscle energy technique. There is also a series of nerve mobilisation techniques based on David Butler’s work. These are followed by the ‘pure’ joint mobilisation techniques that isolate (as much as we can) the parts that don’t move so freely. These are modified from much of what is seen in our industry today, which is ‘combined’ movements where the body is effectively allowed to </span><i><span style=\"font-weight: 400;\">cheat</span></i><span style=\"font-weight: 400;\"> to produce the required movement.</span>\n\n<span style=\"font-weight: 400;\">The aim of this first phase of preparation restores an individual’s capacity around the pelvis, spine and shoulders so that they are level and moving freely, or correctly, for that individual.</span>\n<h2><strong>Stability &amp; Control</strong></h2>\n<span style=\"font-weight: 400;\">This secondary phase of training for stability and control requires phase one’s preparation to give the spine it’s alignment and capacity. This safety conscious methodology means that risk is reduced when performing any variation of core strength work. Coming out of the first phase we advise this is the perfect time to initiate a 3 step approach specific to promote a ‘grooving out’ of the ‘new’ level and moving position of the pelvis, spine and shoulders.</span>\n\n<span style=\"font-weight: 400;\">Starting with Step 1 principles based on evidence shown by Haines, McGill, Matthews and Cholwewicki’s with work on a series of periodised neuromuscular core training progressions, which are in the </span><i><span style=\"font-weight: 400;\">continuum of exercise</span></i><span style=\"font-weight: 400;\"> progressions. To follow this with Step 2 McGill’s isometric core ratio testing would give a good base of support around the entire trunk. Finally, the more advanced Step 3 functional stability screens allow us to confidently create stability and control while performing more compound moves taking your clients into their final phase of function and performance.</span>\n<h2><strong>Function &amp; Performance</strong></h2>\n<span style=\"font-weight: 400;\">This 3rd function and performance phase takes into account strengthening of the pelvis, shoulders, knees and feet to allow better ‘function’. With specific assessments based on joint strength ratios of these areas. Here we consider more sport specific movements and (potentially) pre-orthotic conditioning on top of a solid foundation. All of which reduces risk and optimises performance ability.</span>\n\n<span style=\"font-weight: 400;\">(Matthews &amp; Norris, 2008 &amp; Krabak &amp; Kennedy, 2008)</span>\n\n<span style=\"font-weight: 400;\">For the muscle work in the preparation phase we focus on muscle energy techniques, but the other phases will take us through the full Prepare-Perform Conditioning process.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">As you progress through the workshops you will see the screens and the exercises evolve, as will the timing of their prescription. By the end of the series you will be assessing the biomechanical profile of all your clients’ relevant body parts each time they come back for a screening.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">NOTE : the preparation exercises will only be prescribed in the first instance until the results dictate progress. Once the pelvis and spine are level and moving, the focus can shift to exercising other body parts. It is important to mention if the preparation exercises do not manage the pelvic issues within 3-6 weeks, progression to the next phase is advised.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-33154 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.07.28-300x213.png\" alt=\"\" width=\"300\" height=\"213\" />\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\">\n<h2><span style=\"font-weight: 400;\">What qualifications do you need?</span></h2>\n</li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The key aspects for entry into this Diploma are level 3 A&amp;P and the ability to gain insurance for exercise prescription. So</span><a href=\"https://www.futurefit.co.uk/personal-training-courses/level-3-personal-trainer-course/\"><span style=\"font-weight: 400;\"> L3 Personal trainer,</span></a> <a href=\"https://www.futurefit.co.uk/strength-conditioning-courses/level-3-strength-conditioning/\"><span style=\"font-weight: 400;\">S&amp;C Coach</span></a><span style=\"font-weight: 400;\">, </span><a href=\"https://www.futurefit.co.uk/pilates-courses/level-3-mat-pilates-instructor-course/\"><span style=\"font-weight: 400;\">L3 Pilates </span></a><span style=\"font-weight: 400;\">or Yoga and also </span><a href=\"https://www.futurefit.co.uk/sports-massage-courses/level-3-sports-massage-course/\"><span style=\"font-weight: 400;\">L3 Sports therapists</span></a><span style=\"font-weight: 400;\"> may apply.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once you have these qualifications, you will be able to study the Diploma in Biomechanics Coaching. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-33155 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.09.23-300x237.png\" alt=\"\" width=\"300\" height=\"237\" />\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\">\n<h2><span style=\"font-weight: 400;\">How to find a Biomechanics Coach?</span></h2>\n</li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finding a Biomechanics Coach can sometimes be daunting, but the important thing to remember is those qualified in this field will have extensive knowledge and understanding in intrinsic biomechanics. You can always use the Biomechanics Coach map locator </span><a href=\"https://www.biomechanicseducation.com/biomechanics-education-coach-map/\"><span style=\"font-weight: 400;\">here.</span></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Using the Biomechanics Coach map locator here: https://www.biomechanicseducation.com/biomechanics-education-coach-map/</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\">\n<h2><span style=\"font-weight: 400;\">Why do people want a Biomechanics Coach?</span></h2>\n</li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Individuals are either seeking performance optimisation or they are experiencing recurring injuries that medical professionals seem unable to solve with clinical interventions. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-30683 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/DSC03820-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\">\n<h2><span style=\"font-weight: 400;\">Conclusion</span></h2>\n</li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Biomechanics Education Ltd is convinced that our Diploma in Biomechanics Coaching  provides you with the greatest potential to engage your target demographic. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The foundations of the </span><b>intrinsic</b><span style=\"font-weight: 400;\"> biomechanics model derives from extensive research spanning 20 years. We have tested over 4,000 individuals using isokinetic machines; lumbar motion monitors and video analysis in order to better understand </span><b>intrinsic</b><span style=\"font-weight: 400;\"> biomechanical structures. To validate this work, we performed retrospective studies by analysing patterns between determined biomechanical issues and injury records. Further research identified two key findings: (a) which manual screens correlated the highest with the lab tests; and (b) which exercises managed them most effectively. Lastly, and to ensure the programs were consistent with progressive research, we performed an extensive literature review on work by global research leaders and authors in the field of biomechanics such as Twomey, Taylor, McGill, Gracovetsky, Vleeming, Nachenson, Hewitt and Janda.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Subsequently, a pilot study was conducted that examined 30 patients with long term absenteeism related to back injury. The persons spinal function was measured using a lumbar motion monitor and a series of corrective exercises were prescribed in-line with the principles of our </span><b>intrinsic</b><span style=\"font-weight: 400;\"> biomechanics model. Re-testing took place six weeks later, at which point the average improvement in functional capacity was 141%. Westfield Occupational Health and Hart Owens Insurance Company independently verified this study. By comparison, typical improvements in functional capacity following six weeks of physical therapy are measured at 39% (published in the New England Journal of Medicine 1998).</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">We have designed a cohesive and scalable education programme that can be delivered in a variety of ways and to an infinite demographic. This enables a technical subject to be delivered in a simple and efficient manner to individuals and groups. Our philosophy is simple: To convey the importance of </span><b>intrinsic</b><span style=\"font-weight: 400;\"> biomechanics to our learners and to educate in such a way that makes immediate implementation possible, while complementing existing and accepted practices.</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-30682 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52ea-300x200.jpeg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<hr />\n\n<h1>Would you like to discuss becoming a Biomechanics Coach?</h1>\n<img class=\"size-medium wp-image-28329 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h2><a href=\"https://www.biomechanicseducation.com/\" target=\"_blank\" rel=\"noopener\">Why not get in touch HERE</a></h2>\nOR info@biomechanicseducation.com','What is a Biomechanics Coach?','','inherit','closed','closed','','33066-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',33066,'https://biomechanicseducation.com/?p=38608',0,'revision','',0),(38609,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<h1><span style=\"font-weight: 400;\">What is BIOMECHANICS? </span></h1>\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">Introduction:</span></h2>\n<span style=\"font-weight: 400;\">Biomechanics is defined as mechanics applied to biology, and mechanics itself is the response of bodies to forces or displacements (ScienceDirect). When looking at what Biomechanics is we can define this into two categories, Extrinsic biomechanics and Intrinsic biomechanics. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The purpose of having an understanding of these different ways to interpret human biomechanics is to clarify how to choose where to study and what careers are potentially available</span>\n\n&nbsp;\n\n<img class=\" wp-image-30503 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/IMG_2288-300x300.jpg\" alt=\"\" width=\"356\" height=\"356\" />\n<h2><span style=\"font-weight: 400;\">Extrinsic Biomechanics</span></h2>\n<b>Extrinsic Biomechanics</b><span style=\"font-weight: 400;\"> looks at movements, the measurement of those movements or tasks, then establishes the most efficient way of performing them; it is an important science that is relevant to any sport, health, fitness or work-related physical conditioning. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We need to understand the principles of movement analysis to appreciate the following aspects of mechanics to then be able to apply them to biomechanics:</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Definitions</span> <span style=\"font-weight: 400;\">3. Levers</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Equilibrium </span> <span style=\"font-weight: 400;\">4. Turning forces</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is important to understand these basic mechanical principles and apply them to simple single joint movements before moving on to the more advanced ‘functional’ movements. This is where intrinsic biomechanics is key.</span>\n\n&nbsp;\n<h2></h2>\n<h2><span style=\"font-weight: 400;\"><img class=\" wp-image-27751 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1311339359-1-300x222.jpg\" alt=\"\" width=\"350\" height=\"259\" />\nIntrinsic Biomechanics </span></h2>\n<b>Intrinsic biomechanics </b><span style=\"font-weight: 400;\">is how the body works mechanically during</span> <span style=\"font-weight: 400;\">the performance of a movement or task. This has a major impact on how the body compensates during the performance of extrinsic biomechanical movements or tasks. Often the body is merely compensating for intrinsic biomechanical faults during functional tasks and the more we practice those tasks or movements, the more we have to compensate, and so the risk of injury increases.</span>\n\nWhat is biomechanics used for?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In elite sports analysing video footage of an athlete\'s </span><b>extrinsic</b><span style=\"font-weight: 400;\"> biomechanics could</span>\n\n<span style=\"font-weight: 400;\">identify a hip drop in a runner causing an energy leak, or over-pronation during gait analysis on a treadmill &amp; power production through pressure plates of a cyclist’s pedals.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This analysis can indicate to the coach that to optimise training an intervention may be required. However the </span><b>extrinsic</b><span style=\"font-weight: 400;\"> interpretation of biomechanics in these examples doesn’t identify which substructure is the culprit for the extrinsically observed ‘faulty’ performance since there are multiple joints and structures involved. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The hip drop for example could be caused by: </span>\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Weak abductors </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Lever lengths </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Femoral anteversion </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Coxa vara</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A combination of the above</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The science of </span><b><i>intrinsic</i></b><i><span style=\"font-weight: 400;\"> biomechanics</span></i><span style=\"font-weight: 400;\"> is used for its objectivity in assessing (benchmarking) movement quality at each joint, system and structure throughout the entire body, thus giving more detailed information about which area, structure or movement may be the culprit. There can of course be more than one root cause to biomechanical issues but the assessment process used to understand </span><b>intrinsic</b><span style=\"font-weight: 400;\"> biomechanics gives immediate feedback when prescribing an intervention and re-testing immediately.</span>\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Benefits of Biomechanics</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The benefits of biomechanics as a science are vast and can be very complex but by</span>\n\n<span style=\"font-weight: 400;\">using the standardised assessment protocols from the </span><b>intrinsic</b><span style=\"font-weight: 400;\"> biomechanics model the system of application can be stunningly simple to use and interpret by any trainer or coach insured to do so. In fact it’s extremely safe as the assessments require no specialist equipment and the interventions are very low grade.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are elements of biomechanics that include understanding momentum, levers, the center of gravity and neuromuscular concepts of training models. These can also help a coach or trainer modify a movement programme to their client\'s ability, level or present assessment results and be more bespoke to their sport or chosen task.</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanics is evidence-based</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanics can be measured </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanical assessments give a coach feedback on performance</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanical assessments help coaches understand the causes or risks of injury</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanical assessments inform exercise prescription </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanical study can deepen our understanding of movement </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A biomechanical approach to movement enables bespoke programming  </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A biomechanical approach to movement enables performance optimisation </span></li>\n</ul>\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Elements of Biomechanics</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Principles of movement analysis using the science of biomechanics </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Those of us who prescribe exercises need to understand kinesiology, biomechanics, anatomy and physiology; and perhaps the least understood is the kinesiology and biomechanics aspects.  Unfortunately, without these critical areas of study, movement cannot be truly understood - and if we do not understand movement, we cannot understand the exercise.</span>\n\n<span style=\"font-weight: 400;\">Here are some examples of elements of a biomechanical approach to understanding and analysing movement.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Equilibrium</span><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Equilibrium is often divided into 2 sections:</span>\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Static; which is concerned with the body in balance</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Dynamic; which is concerned with the body in a range of motion.</span></li>\n</ol>\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">Levers</span><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">A lever is a simple machine that enables work to be done more easily and/or more quickly by applying forces.  A lever consists of a straight bar with 3 points:</span>\n\n<span style=\"font-weight: 400;\">Point 1. Where there is a fixed fulcrum </span>\n\n<span style=\"font-weight: 400;\">Point 2. Where there is a resistance or weight acting upon the lever</span>\n\n<span style=\"font-weight: 400;\">Point 3. Where the force or power is applied to the lever.</span><b> </b>\n\n<span style=\"font-weight: 400;\">This can be applied to the body when considering the bones as the lever, the joint as a fulcrum or pivot point and the muscles contracting to produce the force. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Turning forces</span><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As joints work through a full range, the forces acting upon it will change.  At the beginning of a lateral raise exercise, for example, the force of gravity acting upon the muscle will be low but when the arm is lifted to 90 degrees, the turning forces at this point are said to be maximal.  The effects of gravity and therefore the turning forces will be increasing towards maximum moving up to 90 degrees and decreasing again as the arm moves above 90 degrees</span>\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-1338 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/10/Biomechanics-Coach-CMYK-300dpi-300x100.jpg\" alt=\"\" width=\"300\" height=\"100\" />Careers in Biomechanics</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Careers in biomechanics are greatly varied depending upon an individual\'s choice of</span>\n\n<span style=\"font-weight: 400;\">education and interpretation. </span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanics Coach</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanics Trainer</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanics Instructor</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanist</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Kinesiologist </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Gait analyst </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Podiatrist </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanical engineer</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanical researcher</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Equine biomechanics specialist</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Biomechanics analyst </span></li>\n</ul>\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Different Biomechanics qualification </span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Biomechanics can be studied at university to become a sports scientist, podiatrist, sports physio, biomechanical engineer or researcher for example. These have a more </span><b>extrinsic</b><span style=\"font-weight: 400;\"> approach to understanding and studying biomechanics.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The alternative is the Diploma in Biomechanics Coaching which is more focused on the </span><b>intrinsic</b><span style=\"font-weight: 400;\"> biomechanics system. Made up of physical assessments that can be done without the need for expensive equipment or laboratory settings and is perfect for trainers,</span>\n\n<span style=\"font-weight: 400;\">coaches, movement professionals and sports therapists. This does not require a degree</span>\n\n<span style=\"font-weight: 400;\">level length of study but does require many of the elements of studying at a degree level.  </span>\n\n<span style=\"font-weight: 400;\">There are also workshop within the health and wellness sector that offer CPD certificates at lower levels in Biomechanics Training and Instruction. </span>\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Conclusion</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Biomechanics being a science to better understand human movement can be used for improving sports performance &amp; reducing risk Biomechanics is used for measuring, benchmarking and monitoring progress and performance. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Examples of biomechanics in sport are using gait analysis, angles of joints during certain movements, momentum and force generation to better understand risk and performance optimisation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The importance and benefit of biomechanics are that it provides evidence through the law of scientific principles.</span>\n\n&nbsp;\n\n<hr />\n\n<h1><a href=\"https://www.biomechanicseducation.com/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\"><img class=\" wp-image-30682 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52ea-300x200.jpeg\" alt=\"\" width=\"332\" height=\"221\" />Have you heard...?</a></h1>\n<h2>There are now 8 phenomenal GUEST SPEAKERS joining us October 7th 2023 at Burleigh Court conference centre, Loughborough University!</h2>\n<ul>\n 	<li>\n<h3>Paul Swainson</h3>\n</li>\n 	<li>\n<h3>Kim Tomlin</h3>\n</li>\n 	<li>\n<h3>Tom Waldron</h3>\n</li>\n 	<li>\n<h3>Mark Laws</h3>\n</li>\n 	<li>\n<h3>Helen Tite</h3>\n</li>\n 	<li>\n<h3>Don Armand</h3>\n</li>\n 	<li>\n<h3>Michelle Beach</h3>\n</li>\n 	<li>\n<h3>Oh and me, Rachel frances Thomson!</h3>\n</li>\n</ul>\n<h3><span style=\"color: #ff0000;\">This is an intimate event with limited seats!</span></h3>\n<span style=\"color: #0000ff;\"><strong>FREE 3 COURSE HOT &amp; COLD BUFFET LUNCH PLUS REFRESHMENTS ALL DAY!</strong></span>\n<h1><a href=\"https://www.biomechanicseducation.com/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\">The Kaizen Project early bird tickets are ON SALE NOW!</a></h1>','What is biomechanics?','','inherit','closed','closed','','33064-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',33064,'https://biomechanicseducation.com/?p=38609',0,'revision','',0),(38610,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<span style=\"font-weight: 400;\">You are a personal trainer, or maybe a pilates teacher, and you wish to be recognised and to stand out from all the other personal trainers and pilates teachers in the area.  </span>\n\n<span style=\"font-weight: 400;\">You have been practising for many years and you feel you have earned the right to be recognised for all of the ‘other’ things you do to protect your clients and provide a service that holds duty of care in high regard and you do that with a high level of professionalism. </span>\n\n<span style=\"font-weight: 400;\">You may have heard about the Chartered Status that CIMSPA launched having gained permission from the Crown and maybe you are wondering what it is all about? Is it worth it? What does it mean? Who is it for? Would clients care? What’s the value?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I thought I would share my Pathway to Chartered status with you to offer insight into what is required, my personal experience and also what the experience might offer you, in my opinion..</span>\n\n&nbsp;\n<h2><b>The Short Version</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having heard about the Chartered status back in 2019 combined with a wonderfully insightful meeting with Nick Sellwood, the Chartered assessor, I felt extremely excited by what I saw as an industry game changer. The reason I felt this way was that it BEGINS to bring our sector\'s professionalism a small step closer to that of our \'regulated\' peers the clinicians (Osteo\'s, physio\'s, chiro\'s). As \'regulated\' practitioners they are legally expected to be registered to practise, for them having \'chartered status\' verifies this and ca be checked, monitored and also has requirements for that status. THIS is how I see the Chartered status we have also been offered the opportunity to achieve. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As soon as I’d heard about it I felt a rush of excitement that FINALLY our industry is on its way towards being </span><i><span style=\"font-weight: 400;\">professionalised</span></i><span style=\"font-weight: 400;\"> &amp; taken seriously - by Her Majesty no less! To be recognised on a parallel of sorts with our allied health care buddies while we support the health &amp; activity sector. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">September 2020 I found myself in the first cohort...and I have to say this was one of the best Continued Professional Development projects I have done in some time...let me explain why...</span>\n<h2></h2>\n<h2><b>Stage 1 </b></h2>\n<h2></h2>\n<h2><b>Are you eligible?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">WOW am I even eligible? Was I? This was literally an application process not simply purchasing a CPD. My imposter syndrome kicked in &amp; so I had a chat with myself about the fact I WANTED this to be tough. I wanted to be taken outside my comfort zone. This was important for the </span><i><span style=\"font-weight: 400;\">recognition </span></i><span style=\"font-weight: 400;\">I felt health &amp; activity practitioners deserved</span><i><span style=\"font-weight: 400;\">.</span></i><span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">I didn\'t want the process to be easy did I, that\'s the point!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In stage 1 the eligibility criteria were relatively simple to understand but it did require </span><i><span style=\"font-weight: 400;\">evidence</span></i><span style=\"font-weight: 400;\"> of experience, </span><i><span style=\"font-weight: 400;\">evidence</span></i><span style=\"font-weight: 400;\"> of the application of up to date good practise, </span><i><span style=\"font-weight: 400;\">evidence</span></i><span style=\"font-weight: 400;\"> of competence &amp; CPD. Sounds simple right? </span>\n\n<span style=\"font-weight: 400;\">Well </span><i><span style=\"font-weight: 400;\">knowing</span></i><span style=\"font-weight: 400;\"> what you have done &amp; providing </span><i><span style=\"font-weight: 400;\">evidence</span></i><span style=\"font-weight: 400;\"> of it are two very different things, I discovered! There were 3 routes to apply based upon what </span><i><span style=\"font-weight: 400;\">evidence</span></i><span style=\"font-weight: 400;\"> you have of your level of education &amp; experience combined. This could include all sorts of examples.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I dug out my old CV &amp; certificates folder to see what I actually had as my evidence for the things required to fulfill the criteria. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I have always much preferred practical sessions &amp; discussions rather than reading text or doing written work. This has resulted in a huge amount of my ‘academic’ understanding &amp; learning being done through professional discussions with clinically trained colleagues, who were very patient with me! In my own time I did read &amp; research but at my own pace as I managed to find ways to learn that suited my style &amp; pace of learning. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How could I prove everything that my clinical colleagues have taught me or what I have read…I wondered?</span>\n\n&nbsp;\n<h2><b>The Plea</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Nick Sellwood asked for me to write a ‘plea’ of around 200 words to explain my justification for my application to be recognised as Chartered. Once again this was literally plugging myself &amp; felt like I was ‘selling myself’ for an interview!</span>\n\n<span style=\"font-weight: 400;\">He was fantastically encouraging while explaining the process &amp; what was expected. This encouraged me to think about exactly what I was trying to achieve &amp; so I had begun my self reflection already.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having amassed around 84 documents of evidence, I listed them into an index for referencing due to the volume of information &amp; resources that I felt could be used as evidence of my standards &amp; professional practice. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By coding my index list to the </span><b>Viva Interview Criteria</b><span style=\"font-weight: 400;\"> I could ensure I covered all of them somewhere.</span>\n\n<span style=\"font-weight: 400;\">While I had a lot of resources for evidence I could already see areas I wanted to develop where there was less evidence or even gaps. CPD topics were clear to me before anyone had even assessed me purely based upon my own work into providing evidence to match the criteria. The criteria really made me think!</span>\n\n&nbsp;\n<h2><b>Stage 2 </b></h2>\n<h2></h2>\n<h2><b>The Viva Interview </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having been sent the questions in advance I was able to prepare. It was also another opportunity to submit further evidence I might want to refer to as part of my responses to any questions I may be asked. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There were 10 main criteria questions &amp; each once had between 4-10 smaller criteria. Somethings were easy to cross reference &amp; others I felt I would need to explain - like my professional discussions over 16 years with clinically trained colleagues. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My Viva Assessor &amp; I communicated via email prior to the interview &amp; she really was reassuring about everything. So much so I found myself actually really looking forward to the Viva interview! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This interview, I was told, could be up to 3 hrs &amp; while there are the criteria questions, the assessor may ask additional questions to offer an opportunity to explain in more detail how certain areas may have been reached, practised, delivered etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">During the interview I was offered regular breaks &amp; weirdly I enjoyed this exploration of my career as I was realising just how much I HAD done rather than feeling that sense of imposter syndrome from feelings lacking in my skills &amp; training. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This was an opportunity to self reflect &amp; deepen my understanding of the level of professionalism &amp; duty of care I could demonstrate along with the resources I had created &amp; the pathway a client may take through my involvement with them. This allowed me to be exposed to know what I needed to do to improve my practice.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The interview is transcribed within 72hrs &amp; I even had the opportunity to review &amp; amend once more at this point. </span>\n\n&nbsp;\n<h2><b>Stage 3 </b></h2>\n<h2></h2>\n<h2><b>Assessment &amp; Internal/External Verification </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Within a couple of weeks I had my result!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I had scored 159/195 points….could I have achieved higher? Possibly but I didn\'t need to, however it gave me all I needed to plan my future CPD’s!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I am now </span><b><i>A Chartered Health &amp; Activity Practitioner</i></b><span style=\"font-weight: 400;\">!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WOW it felt, &amp; still feels, great! </span>\n\n<span style=\"font-weight: 400;\">Do I recommend it? 100% YES!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What does this actually mean?</span>\n\n&nbsp;\n<h2><b>What is the point of Chartered Status?</b></h2>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Status! Clients never ask to see certificates of evidence but by promoting the fact I have it, they see the stamp as that of quality, comparable in the sense of any other Chartered professional. I can tell them I am Chartered &amp; most people would know that means something above the ordinary. </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Employability - in a list of candidates guess who would be noticed when applying for a position?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Our industry starts to gain recognition as more &amp; more of us become Chartered.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">I am held accountable by my agreement to uphold a high level of professional practice.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">My marketing can now include my status!</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Will you be able to provide the required evidence? </span>\n\n<span style=\"font-weight: 400;\">Well that is the challenge….my evidence goes back to 1997…...but that\'s <strong>The Long Version!</strong></span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">So what do you need to achieve Chartered status?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Qualifications </span>\n\n<span style=\"font-weight: 400;\">Relevant consistent CPD</span>\n\n<span style=\"font-weight: 400;\">Safety systems</span>\n\n<span style=\"font-weight: 400;\">Good practice protocols </span>\n\n<span style=\"font-weight: 400;\">Evidence of client success </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But also</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Passion for what you do</span>\n\n<span style=\"font-weight: 400;\">A desire to improve our industry</span>\n\n<span style=\"font-weight: 400;\">A desire to change the image we have</span>\n\n<span style=\"font-weight: 400;\">An open mind to critique </span>\n\n<span style=\"font-weight: 400;\">A desire to stand out </span>\n\n&nbsp;\n\nAre you Chartered yet?\n\nWould you like to be?\n\nWhat evidence do you have?\n\n&nbsp;\n\n<hr />\n\n<h2><span style=\"font-weight: 400;\">Would you like help to become Chartered? </span></h2>\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-32483 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/05/Screenshot-2022-05-19-at-15.55.07-300x257.png\" alt=\"\" width=\"300\" height=\"257\" />Becoming a Biomechanics Coach will equip you with more confidence to apply so w</span><span style=\"font-weight: 400;\">hy not get in touch to find out more?</span>\n<h2>info@biomechanicseducation.com</h2>','A Pathway to Chartered Status..','','inherit','closed','closed','','32181-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',32181,'https://biomechanicseducation.com/?p=38610',0,'revision','',0),(38611,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','Remember my previous Juicemail about our <a href=\"https://www.biomechanicseducation.com/let-me-introduce-you-to-our-ultimate-master/\" target=\"_blank\" rel=\"noopener\">Master of Compensation</a>? This is a follow on from that since it is fundamentally what we do as movement practitioners assisting clients to build confidence in how they look, feel &amp; move..\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35280 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/2O8A2843-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are often taught to think of measuring the ‘load’ on our clients body as the weight or kilos we ask our clients to lift along with the reps and sets. However, to truly understand the loads the body experiences each day we are going to explore the theory that it takes much more than simply calculating these numbers. The aim here is to better understand how we can support the progressive development of our client\'s tissue tolerance to manage the loads they place upon them for risk reduction &amp; optimisation of performance....more importantly some of the loads the body experiences that we may not be measuring!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Tim Gabbett’s work on load management demonstrates the efficacy of understanding &amp; measuring both intrinsic &amp; extrinsic loads the body experiences. He suggests we can put each of our clients into a Load Continuum or Athletic Spectrum, no matter what their level, by calculating a range of aspects that ‘load’ the body &amp; then monitor those numbers over time </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A simple example for ‘measuring’ Load &amp; Managing, is....</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Frequency + Volume  + intensity = Load.</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can then be added to a simple graph spreadsheet &amp; analysed over weeks/months while taking into account all others influences. However Gabbett suggests we should also record their ‘response’ to load too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Balance is of course required when recognising BOTH negative &amp; positive responses to load</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Task specific relative capacity is obviously key when measuring &amp; so </span><span style=\"font-weight: 400;\">load management must relate to the task at hand. This way the spreadsheet numbers can be tweaked to include miles for a runner for example</span>\n\n&nbsp;\n<h2><a href=\"https://www.eventbrite.com/e/load-management-train-smarter-and-harder-birmingham-tickets-313176418097\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">‘Training harder is training smarter’ </span></i></a></h2>\n<h2><span style=\"font-weight: 400;\">Tim Gabbett</span></h2>\n<h2></h2>\n<img class=\"size-medium wp-image-35282 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/05/IMG_1548-1-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As stated, every client can be evaluated using an athletic, or physical spectrum &amp; the principles of progressive overload, specificity, recovery are the same but using load measurements allow us to manage, periodise &amp; also amend when necessary depending upon the response &amp; their schedule </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Load is a combination of both external stimulus &amp; Internal stimulus </span>\n\n<span style=\"font-weight: 400;\">So both the quality &amp; quantity needs to be right as opposed to simply using minutes or reps &amp; sets of training  </span>\n\n&nbsp;\n<h2><i><span style=\"font-weight: 400;\">We can’t predict injury but we can prepare the bodies tolerance to load </span></i></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Training is needed to allow us to check the response to load followed by adequate recovery. This way we can adjust the client’s programme accordingly </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When a client regresses or gains injuries, the load itself isn’t the problem, its the load the body experiences when you’re not prepared for it.</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35285 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6931-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">What measures can be used? </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">A great consultation should include these ‘measures’;</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Extensive health screening questions every 6-12 months</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Full biomechanics screen including every joint &amp; structure </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">SMART goals </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Psychometric evaluation </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Present training volumes - reps/sets/weights/miles/speed/recovery</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Type of training &amp; over how long</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Sleep duration </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Annual / seasonal recovery phases </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Hormonal cycle / health </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Medications </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">List of any regular treatments received </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Shoe types, orthoses measures </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Diet quality &amp; vices </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Support network </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">A lot of measures &amp; yet any one, or any number of these, could affect outcomes, risk &amp; performance level.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is why a structured reflection journal can help us plot &amp; monitor our clients circle of influence along with clear spreadsheets measured &amp; monitored consistently to best understand the effects of any alterations, additions or reductions of any of the influencers. </span>\n\n&nbsp;\n\n<hr />\n\n<h2>Would you like to learn evidence based methods of biomechanical assessment?</h2>\n<img class=\" wp-image-28329 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"353\" height=\"235\" />Why not join us for one of our practical intrinsic biomechanics workshops?\n<h3><em>Get in touch for more rachel@biomechanicseducation.com</em></h3>','Tissue Tolerance & Load Management - how can we measure?','','inherit','closed','closed','','32176-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',32176,'https://biomechanicseducation.com/?p=38611',0,'revision','',0),(38612,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','Posture is common part of our sector\'s vocabulary when talking about movement &amp; problems our clients have. Clients tell us they have poor posture! It\'s one of those common ailments they complain about because they sit at their desk to work which they feel causes them to have <em>BAD</em> posture. Yet even when they think bad posture is a problem they still continue to ignore it because they have to work at a desk!\n\nBad posture seems to have become <em>normalised</em> due to our desk bound lives, as if it\'s something we should just accept &amp; try to rectify in the window of around 30-60 minutes of recommended daily exercise.\n\nBack pain is still on the rise &amp; is often blamed on this poor posture epidemic\nShoulder &amp; neck \'issues\' are blamed upon bad desk posture, simply accepted &amp; even expected!\n\n&nbsp;\n\nBUT\n\n&nbsp;\n<h2>What if I said to you.... BAD POSTURE IS NOT THE PROBLEM!?</h2>\n&nbsp;\n\nSome individuals are born with naturally forward positioned, rounded shoulders (humeral anteversion)\nSome are genetically attributed with flatter backs (the J shaped spine) or a large degree of lordotic curve.\nMany have these ‘postural’ presentations WITHOUT PAIN!\n\nOR\n\nImagine a soldier in his ‘good’ posture for hours on end, he would probably hurt or ache from standing tall and upright for long periods.\n\nOR\n\nWho gets to decide on the parameters of what good posture looks like!?!?\n\nHow would good posture be measurable on the various body types we come across?!?!?\n\nSo what is really the problem and why is it so common for people who sit at desks to hurt or feel stiff?\n\n&nbsp;\n<h2>The problem is actually a LACK OF VARIETY</h2>\n&nbsp;\n\nThis is the true nature of the problem, not the posture itself.\n\nPosture, by definition, is simply a position of the body. We can demonstrate a round shouldered posture without any concern for it hurting. So it\'s not the posture that causes the problems, it\'s the duration we hold any posture/position, the long periods we spend NOT moving, that count towards our bodies attempting to evolve &amp; adapting/compensating to be less used. These compensations can result in nociceptive sensitisation or low grade aches, niggles or even recurring injuries.\n\nThis should not only alter expectation, but also intervention strategies towards what can be the simplest solution to most movement issues…\n\nMove well\nMove more\nMove Consistently\nMove freely\n\n&nbsp;\n<h2>Forget posture….. focus on function!</h2>\n&nbsp;\n\nWhat this means is teaching office workers how to move more while at their desks. This is why iMoveFreely is the perfect solution for working out at work!\n\nThe no sweat work out can be performed while reading emails &amp; making phone calls so won’t affect performance….in fact they are more likely to improve it!\n\nYes METs can reduce muscle fatigue by 14%!\n\nThe side effect is improved body stacking, joint loading, along with how our client\'s feel &amp; move!\n\nDo you feel the same or has this blog challenged your understanding of movement &amp; posture?\n\nWhat are your thoughts?\n\n&nbsp;\n\n<hr />\n\n<h2>Would you like to become an <a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/\" target=\"_blank\" rel=\"noopener\">iMoveFreely Instructor?</a></h2>\n<img class=\"size-medium wp-image-31427 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4675-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />Learn how to apply intrinsic biomechanics principles to your group exercise classes.\n\nGain a deeper understanding of why your participants move the way they do.\n<p class=\"p1\">A revolutionary workshop to enhance all previous workshops or courses attended. The aim is to<i> prehabilitate </i>participants with simple, safe &amp; low grade techniques.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">The evidence based prehabilitation techniques can be life changing for some and will give you additional solutions to helping your participants move more freely and with less pain.</p>\n<p class=\"p1\">Deliverable as a ‘pure’ iMoveFreely® clinic or can be blended into other classes</p>\n<a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/\" target=\"_blank\" rel=\"noopener\">&gt;&gt;READ MORE OR TO BOOK CLICK HERE&lt;&lt;</a>','Why All The Fuss About Posture?','','inherit','closed','closed','','32178-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',32178,'https://biomechanicseducation.com/?p=38612',0,'revision','',0),(38613,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<span style=\"font-weight: 400;\">Statistically whichever data / research you read there is always less than 15% of the population reported to be members of gyms. </span>\n\n<span style=\"font-weight: 400;\">So if you are struggling to gain, &amp; retain, more clients but work from a gym space it may be time to start thinking \'outside the box\'…s’cuse the pun.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With long term conditions creating increased demands on the NHS it’s time we, the health &amp; fitness sector, consider continuing our adaptations even post lockdown restrictions. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">What am I talking about?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Much of our education/training is about teaching clients to be strong, how to use machines, how to lift weights &amp; be active. But what if your promotions, instagram videos &amp; testimonials are actually putting people off?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">No matter how great your video skills, or how much you spend on fancy editing apps or particularly how challenging those funky moves are they are very likely to switch a huge % of the population off. Possibly even 85%!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes we ‘gym fanatics’ are the rarity &amp; it\'s tough to consider, &amp; empathise with, individuals who have absolutely no interest in joining a gym &amp; yet, they may still need our help. They just don’t know HOW we can help because they dont look like, nor do they feel they can look like, your Instagram clients, HIIT class participants &amp; those success story testimonial video of your amazing client, Barry, on facebook. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember if you are busy &amp; doing great in your gym this blog is NOT for you….</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How do we reach the 85% NOT in the gym?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you ever considered the language &amp; images you are using both publicly &amp; on social media? Are you able to show empathy to individuals who do NOT want to join a gym, EVER?</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Where are they?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">They wont be in your facility, so we have to look elsewhere. So where are they? GP surgeries? Village halls? Supermarkets? </span>\n\n<span style=\"font-weight: 400;\">Do you advertise there?</span>\n\n<span style=\"font-weight: 400;\">Could you? </span>\n\n<span style=\"font-weight: 400;\">And what would you advertise?</span>\n\n<span style=\"font-weight: 400;\">Remember they don\'t want to join the gym! </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">What do they want?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">To move without pain, to reduce symptoms, to feel healthier, to have more energy, to not feel so alone, lose weight, to not have diabetes, to reduce their risk of having a heart attack….but they struggle to move so ‘exercise’ can create anxiety, fear or the sense of pending failure. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">How can we help?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">GP Surgeries hold regular meetings that their patients can go along to. You could find out when they are held &amp; go along, listen &amp; learn about the problems they have. Once you know the problem, you are in a better position to offer a solution. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider the old school model of flyers, posters, leaflets in your community, village hall, supermarket, local paper or at a local event/fete. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider organising a coffee morning during which you will share your solutions &amp; services. Which maybe low cost entry options or even free group sessions - if they come to your coffee morning what more could you educate them on during their coffee / social?</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Do we need additional education or special skills?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes - possibly or probably - it depends upon the audience you are looking to reach &amp; serve. </span>\n\n<span style=\"font-weight: 400;\">Programmes like GP referral, Obesity &amp; diabetes training, cardiac rehab training, mental health first aid, long covid rehabilitation &amp; of course iMoveFreely are all superb programmes to serve individuals with long term conditions, who may NOT want to join a gym but do want to help themselves or are just starting to explore solutions. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Where do I start?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Look for a long standing reputed education company, research options, talk to their sales teams, don’t just buy the cheapest!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do some research locally about what is missing in terms of services, can you be the solution to fill a gap &amp; unburden the local surgery?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider (&amp; research) asking for funding as there may well be opportunities for those who can demonstrate ways to get people more active. Speak to the right people at your local council/borough.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Collect the data! Whatever your measuring tools are from health screening, biomechanical assessment, psychometric testing, pain questionnaires, satisfaction questionnaires etc this is all evidence of your ability to support your community in being physically more active &amp; healthy. Be sure to make it easy to analyse!</span>\n\n<span style=\"font-weight: 400;\">This is when evidence has the potential for bringing funding opportunities &amp; of course the bi-product is some great marketing information!</span>\n\n&nbsp;\n\nHow will you up skill to enhance your reach?\n\nHow could you upgrade your marketing messages to engage 85% of the community NOT entering the gyms?\n\nHow will you serve them?\n\nWhat do you need?\n\nWho can help?\n\nCan we help?\n\nIf you are still reading &amp; feel you have done this successfully already we would LOVE to hear from you. So please please do get in touch &amp; tell us about your experience!\n\ninfo@biomechanicseducation.com\n\n<hr />\n\n<h2><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Why not become a Biomechanics Coach &amp; join the revolution for our industry?</a></h2>\nAsk any Biomechanics Coach about their learning experience, their level of confidence since training with us &amp; the community spirit that is within our school of intrinsic biomechanics....they will tell you all about the difference this environment can make to your business &amp; service delivery, particularly with clients who maybe deemed \'tricky\' in their physical challenges.\n\nWhy not get in touch to ask any questions you may have? info@biomechanicseducation.com\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">JOIN US</a>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">CLICK HERE TO READ MORE OR BOOK </a>\n\n&nbsp;\n\nReferences\n\n(No date a) <i>Overview of the UK population - office for national statistics</i>. Available at: https://backup.ons.gov.uk/wp-content/uploads/sites/3/2019/08/Overview-of-the-UK-population-August-2019.pdf (Accessed: 27 September 2023).\n<div></div>\n(No date b) <i>Why and how are we living longer? - wiley online library</i>. Available at: https://physoc.onlinelibrary.wiley.com/doi/full/10.1113/EP086205 (Accessed: 27 September 2023).\n<div></div>\n(No date c) <i>9 surprising gym statistics | realbuzz.com</i>. Available at: https://www.realbuzz.com/articles-interests/fitness/article/9-surprising-gym-statistics/ (Accessed: 24 March 2023).\n<div></div>\n<i>ACSM Fitness trends</i> (no date) <i>ACSM_CMS</i>. Available at: https://www.acsm.org/education-resources/trending-topics-resources/acsm-fitness-trends (Accessed: 24 March 2023).\n<div></div>\nHattie (2022) <i>The changing demographics of gym members</i>, <i>IDS Media</i>. Available at: https://www.idsmedia.co.uk/news/changing-demographics-of-gym-members/ (Accessed: 24 March 2023).\n<div></div>\nIhrsa (no date) <i>2021 IHRSA media report</i>, <i>2021 IHRSA Media Report</i>. Available at: https://hub.ihrsa.org/2021-ihrsa-media-report (Accessed: 24 March 2023).\n<div></div>\nThompson, W.R. (no date) <i>Worldwide survey of fitness trends for 2023 : ACSM’s Health &amp; Fitness Journal</i>, <i>LWW</i>. Available at: https://journals.lww.com/acsm-healthfitness/Fulltext/2023/01000/Worldwide_Survey_of_Fitness_Trends_for_2023.6.aspx?context=FeaturedArticles&amp;collectionId=1 (Accessed: 24 March 2023).\n<div></div>\n<i>The UK fitness report – 2022/23 gym statistics</i> (2022) <i>PureGym</i>. Available at: https://www.puregym.com/blog/uk-fitness-report-gym-statistics/ (Accessed: 24 March 2023).\n<div></div>\nWhite, D. (2021) <i>Gym statistics: How many people go to the gym UK 2021</i>, <i>Our Sporting Life</i>. Available at: https://oursportinglife.co.uk/gym-statistics-uk/ (Accessed: 24 March 2023).\n<div></div>','Would you like access to 85% more clients?','','inherit','closed','closed','','32174-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',32174,'https://biomechanicseducation.com/?p=38613',0,'revision','',0),(38614,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<h2><span style=\"font-weight: 400;\">…the <strong><em>Master of Compensation</em></strong> that is our wonderful body!!</span></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-33787 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_185177393-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When we first begin studying about the body during our entry into the health, fitness &amp; exercise industry we learn about <em>progressive overload</em> as the method for writing a client’s training programme. </span>\n\n<span style=\"font-weight: 400;\">Increased weight, altering reps &amp; sets, adding more exercises, increasing duration or mileage, these all become a part of what we do each day for each clients. </span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Frequency </span></li>\n 	<li><span style=\"font-weight: 400;\">Intensity </span></li>\n 	<li><span style=\"font-weight: 400;\">Time </span></li>\n 	<li><span style=\"font-weight: 400;\">Type</span></li>\n</ul>\n<span style=\"font-weight: 400;\">The FITT acronym is tool we are given to help us recall easily how to progress our clients through strength training with alterations in the frequency, intensity, time or type of exercises we write into their programme. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The idea of progressive overload is a deliberate endeavour towards increasing muscle mass, developing muscle tone, reducing fat &amp; improving cardiovascular health etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We know this because it’s the whole point to becoming a personal trainer!</span>\n\n<span style=\"font-weight: 400;\">It’s everything that is personal training.</span>\n\n<span style=\"font-weight: 400;\">Obviously we could add improved mental health as a result of endorphin release, reduction in cortisol etc also all part of the development.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We write programmes to help clients bodies manage load, to adapt &amp; improve resilience alongside working towards improved confidence with aesthetic opinions.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is the wonderful system of our beautiful bodies\' ability to compensate. It compensates to the environment it’s exposed to, to its most common experiences &amp; dictates at least to some degree the way we eat or is dictated BY what we eat!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet we are not given the same emphasis of training in….<strong><em>regressive under loading</em></strong>….Tissue fragility….or load risk </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34810 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/06/IMG_8906-230x300.jpg\" alt=\"\" width=\"230\" height=\"300\" />\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">What am I talking about? </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Modern ailments that result from under use, lowered tissue tolerance &amp; under exposure to force &amp; loads is what we are now faced with and yet ill equipped to deal with.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A huge problem facing personal trainers today is pain &amp; conditions caused by poor biomechanics &amp; compensations.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our training requires as much education around this aspect of client problems wouldn\'t you agree?  Almost everyone has some kind of fragility alongside the aesthetic requirements, in fact they may seek a PTs advice specifically FOR their modern ailments!</span>\n\n&nbsp;\n<h2><img class=\"size-medium wp-image-35274 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/shutterstock_1798734148-300x193.jpg\" alt=\"\" width=\"300\" height=\"193\" /></h2>\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">The problem </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The risk this brings is that when it comes to pain &amp; medical conditions we don’t know what we don’t know. </span>\n\n<span style=\"font-weight: 400;\">It is very risky to assume all low grade aches &amp; pains are biomechanical. While pain could well be psychological &amp; biomechanical, our insurance &amp; specialist training still isn’t enough to protect those with more sinister high risk red flags that can also cause low grade aches n pains.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">So what? </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is a very simple solution that could be easy to implement but would likely take time. It would require changing attitudes, education upgrades, improved communication, systemisation, data collection &amp; obviously monitoring.</span>\n\n<span style=\"font-weight: 400;\">A joining of forces &amp; in my opinion, the regulation our sector to \'professionalise\' us. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We need to be seen as part of the solution but we also require appropriate education about how to practice as a regulated practitioner.</span>\n\n<span style=\"font-weight: 400;\">We require training &amp; provisions that remove the stigma attached to being an exercise progressional. </span>\n\n<span style=\"font-weight: 400;\">This way clients, NHS &amp; regulated clinicians might start leaning into us &amp; our skill set for support!</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35275 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/Screenshot-2023-02-07-at-15.01.19-163x300.png\" alt=\"\" width=\"163\" height=\"300\" />\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">The solution </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone talks about the simplest &amp; cheapest intervention for many long term conditions, as well as the huge volume of modern ailments people complain of, as being simply ‘movement’ </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">UK Active\'s motto </span>\n\n&nbsp;\n<ul>\n 	<li><em><span style=\"font-weight: 400;\">More people </span></em></li>\n 	<li><em><span style=\"font-weight: 400;\">More active </span></em></li>\n 	<li><em><span style=\"font-weight: 400;\">More often </span></em></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The government prescribed a 1hr walk a day during the pandemic restrictions because everyone knows movement is a vital component to both physical &amp; mental health &amp; well being, </span>\n\nBy giving us education in musculoskeletal (biomechanical) assessment &amp; monitoring with regulation &amp; support so we can do our bit!\n\nIt doesnt need to be complex nor risky either, with just a few tools &amp; the right support exercise professionals are perfectly placed to re-build tissue tolerance within our clients to reverse engineer what low activity lifestyles are doing to our bodies!\n\nSimple safe interventions like muscle energy techniques, pure joint mobilisations and nerve mobilisations are a perfect series of iMoveFreely techniques to really get the nation moving more freely &amp; with less pain!\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">What can we offer? </span></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-35276 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6385-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With the right education, trust &amp; support we can offer movement advice to improve our client\'s biomechanics thus improving tolerance to forces &amp; loads to address the modern ailments of today\'s less active \'easier\' lifestyle.</span>\n\n<span style=\"font-weight: 400;\">We can do this to reduce risk &amp; recurring issues through strength training &amp; advising progressive overload to develop tissue tolerance.</span>\n\nWe want to help..right!!?\n\n&nbsp;\n\nThrough learning more about how the human body adapts to both <span style=\"font-weight: 400;\"><strong><em>regressive under loading AND progressive overloading </em></strong>we can come into our own &amp; be the go to advisors for reducing NHS waiting lists, supporting our communities &amp; being more involved in health &amp; wellness as a trusted sector/profession for reverse engineering the human body to be biomechanically healthier!</span>\n\n&nbsp;\n<h1>What do you think?</h1>\n&nbsp;\n\nIt would be great to hear your thoughts on this matter so why not email us at info@biomechanicseducation.com with your ideas after reading this blog!\n\nShould we become more regulated?\n\nHow would you like to see our sector professionalised?\n\nWhat education do you think we would require to support the NHS more? better?\n\nLet me know your thoughts...\n<h3><em>rachel@biomechanicseducation.com</em></h3>\n\n<hr />\n\n&nbsp;\n<h1>Diploma in Biomechanics Coaching</h1>\n<img class=\"size-medium wp-image-28329 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />We can offer you skills in better understanding regressive under loading\n\nOur Diploma in Biomechanics Coaching teaches coaches and trainers the art of biomechanical assessment without the need for expensive equipment, tests that can be done on the gym floor, in your studio, even at home.\n\nWe will also teach you the amazing evidence based iMoveFreely techniques to improve tissue tolerance even for those experiencing modern ailments.\n\nWe will also give you absolute clarity on what steps to take with each &amp; every client no matter how tricky or complex their circumstances.\n<h3><em>Why not get in touch for more information rachel@biomechanicseducation.com</em></h3>','Let me introduce you to our Ultimate Master…','','inherit','closed','closed','','32172-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',32172,'https://biomechanicseducation.com/?p=38614',0,'revision','',0),(38615,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<b>The Power of Words </b>\n\n<span style=\"font-weight: 400;\">Communication can be one of the most underrated skills we consider investing in for CPD’s in our fitpro or therapy business. Maybe because we feel we are already pretty good communicators. </span>\n\n<span style=\"font-weight: 400;\">We know without communication nothing happens but could we learn more about how to communicate better to achieve even better results?</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-30603 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-20.43.57-198x300.png\" alt=\"\" width=\"198\" height=\"300\" />\n\n<span style=\"font-weight: 400;\">We communicate in a variety of ways &amp; the evidence points to the power of words having a huge influence on our client\'s behaviour, including client adherence which can be such a challenge.</span>\n\n<span style=\"font-weight: 400;\">We might speak to others without much thought beyond our own bias &amp; opinions. In fact it’s quite hard to imagine how another person sees the world when we are so entrenched on our own. </span>\n\n<span style=\"font-weight: 400;\">Of course the grass is green, we can see that…..but maybe, just maybe, your green is different to my green? When speaking about the colour of grass it may seem unimportant but let’s switch it up a notch and consider someone with a certain facial expression….are they being miserable or are they just reflecting on something sad?</span>\n\n<span style=\"font-weight: 400;\">Imagine the world from the view of my friend Chris who lives with Asperger\'s which means he has</span>\n<ul class=\"ul1\">\n 	<li class=\"li1\">difficulty interpreting verbal &amp; non-verbal language</li>\n 	<li class=\"li1\">difficulty \'reading\' other people &amp; expressing his own emotions</li>\n</ul>\n<span style=\"font-weight: 400;\">Just imagine being unable to read a facial expression. </span>\n\nChris &amp; I became friends almost 30yrs ago when I worked in the care industry &amp; he has over the years taught me a lot about communication. We would say an emotion like happy or angry, then I would take a photo of Chris making that facial expression, then he would look at each one &amp; try to guess which one it was from just the photo as I showed them to him randomly.\n\nIt helped me to realise something I took for granted &amp; that I wanted to practise noticing more which words I chose to use to communicate emotions or feelings to help Chris who might struggle to read my expression.\n\n<span style=\"font-weight: 400;\">Because ultimately we all might assume when someone is smiling they are happy, right? </span>\n\n&nbsp;\n\n<b>The Problem</b>\n\n<img class=\"size-medium wp-image-31747 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/03/priscilla-du-preez-Q7wGvnbuwj0-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />To truly engage a client we use questions during our consultation to identify what it is they wish to achieve from employing our services. We are taught systems like S.M.A.R.T goal setting &amp; yet it is often such a struggle to support an individual in changing their behaviour from unhealthy habits to healthier ones.\n\nChanging behaviour &amp; habits is the solution to most, if not all, of our clients issues. However....\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">How many of us experience poor adherence from clients? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Thinking about our use of words &amp; the way we interpret them …..do we assume our client knows what we mean or do we ask the client …..?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">How empathic are we to your clients\' view of the world? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">How do we find out? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">How much time do we allocate to listening to our clients? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Does our choice of words resonate for them in the same way they do for us? How would we know?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">How can we PRACTISE listening &amp; develop our own self awareness to understand better how to choose the right words &amp; take advantage of the power we can have with this choice in helping more clients more often &amp; maybe without even knowing it! ?</span></li>\n</ul>\n<span style=\"font-weight: 400;\">As a practitioner WE MUST be able to speak ‘</span><i><span style=\"font-weight: 400;\">client</span></i><span style=\"font-weight: 400;\">’ but they do not need to speak ‘</span><i><span style=\"font-weight: 400;\">practitioner</span></i><span style=\"font-weight: 400;\">’</span>\n\n<span style=\"font-weight: 400;\">Neuroplasticity is the </span><span style=\"font-weight: 400;\">science</span><span style=\"font-weight: 400;\"> behind the power of words &amp; in the words of Joe Dispenza...</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Emotions are the chemical response to the environment around you”</span></i><span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Understanding how neurotags anchor onto, not only pain, but also thoughts , emotions, feelings, locations, beliefs &amp; memories. </span>\n\n&nbsp;\n\n<strong>Listening Skills</strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-31748 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/03/franco-antonio-giovanella-PVDWaEhSIAg-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />Listening to how others speak, listening to their choice of words &amp; thinking about how the words they choose make you feel can create better awareness of the power THEIR words have on you. This means we have a huge responsibility to choose our words very carefully when advising others on how to change their behaviour. </span>\n\n<span style=\"font-weight: 400;\">Taking advantage of the </span><i><span style=\"font-weight: 400;\">power of silence</span></i><span style=\"font-weight: 400;\"> to listen AND hear what is being said AND how you process words</span>\n\n<span style=\"font-weight: 400;\">The power of words affects how we feel, then how we feel affects our physiology response. </span>\n\n<span style=\"font-weight: 400;\">It has been scientifically shown to change how your body responds &amp; this can be both good &amp;/or bad. Alan Watkins, neuroscientist, demonstrates this beautifully in this video.</span>\n\n<span style=\"font-weight: 400;\">Being conscious of our language &amp; how we make another person feel is vital to our success with clients </span>\n\n<span style=\"font-weight: 400;\">We can control what we think about but not our emotions - if we can control our thoughts we can change how we OR OUR CLIENTS feel</span>\n\n<b>How can we hone our skills?</b>\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-31749 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/03/brett-jordan-Fp4ERdkR5jU-unsplash-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />TASK 1 </span>\n\n<span style=\"font-weight: 400;\">Remember a time when words affected you profoundly, maybe teacher or parent? How did they make you feel? What did they say? What words? How did they engage you? </span>\n\n<span style=\"font-weight: 400;\">TASK 2</span>\n\n<span style=\"font-weight: 400;\">Notice your inner dialogue &amp; write it into a journal/diary. This cognitive restructuring helps us notice if we bully ourselves</span>\n\n&nbsp;\n\n<a href=\"https://youtu.be/-Cca0i1EboE\" target=\"_blank\" rel=\"noopener\">CLICK HERE TO ACCESS THE KAIZEN PROJECT SESSION </a>\n\n<strong>References: </strong>\n\n<span style=\"font-weight: 400;\">YouTube: Alan Watkins  <em>Being brilliant every single day part 1 &amp; part 2 </em></span>\n\n<em>Books:</em>\n\n<span style=\"font-weight: 400;\">Moseley &amp; Butler <em>Explain Pain </em></span>\n\nEvan Carmichael <em>One Word</em>\n\n<span style=\"font-weight: 400;\">Joe Dispenza <em>The Placebo Effect</em></span>\n\n<span style=\"font-weight: 400;\">Carl Rogers <em>A Way of Being</em></span>\n\n<span style=\"font-weight: 400;\">Sir Ken Robinson <em>The Element</em></span>\n\n<hr />\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\">The Kaizen Project</a></h1>\n<h1>SAVE THE DATE Oct 8th 2022</h1>\n&nbsp;\n\nBurleigh Court Conference Centre\n\nLoughborough University\n\n&nbsp;\n<h2>info@biomechanicseducation.com to be added to our waiting list!</h2>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\">Details COMING SOON!</a></h1>','The Power of Words','','inherit','closed','closed','','31734-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',31734,'https://biomechanicseducation.com/?p=38615',0,'revision','',0),(38616,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<span style=\"font-weight: 400;\">Sounds fancy eh! </span>\n\n<span style=\"font-weight: 400;\">Sometimes when you look at the definitions of those fancy words you realise it is things you already do. However we can often be put off reading some articles because they sound complex and maybe beyond our remit of understanding. Yet when we dive deeper into the details we can also often find we do these types of exercises already and so this blog is about contextualising the intrinsic biomechanics of neuromuscular exercise. </span>\n\n&nbsp;\n\n<img class=\"wp-image-31433 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4665-300x102.jpg\" alt=\"\" width=\"494\" height=\"168\" />\n<h1></h1>\n<h1><span style=\"font-weight: 400;\">What Is A Neuromuscular Exercise?</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Neuromuscular means relating to both nerves (neuro) &amp; muscles (muscular)</span>\n\n<span style=\"font-weight: 400;\">Neuromuscular training focuses on performing exercises that train nerves &amp; muscles to react &amp; communicate. </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-31429 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4666-300x159.jpg\" alt=\"\" width=\"300\" height=\"159\" />\n\n&nbsp;\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Neuromuscular control is for the process of the brain controlling movement of the limbs. Optimal neuromuscular control is gained through training the brain with specific neuromuscular exercises.</span></p>\n<p style=\"text-align: left;\"><span style=\"font-weight: 400;\">Neuromuscular ‘control’ is the muscles response to a signal regarding joint stability while moving. </span></p>\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: left;\"><img class=\"size-medium wp-image-31430 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4667-300x137.jpg\" alt=\"\" width=\"300\" height=\"137\" /></p>\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Neuromuscular ‘exercise’ affects your client’s biomechanics, activation of muscles &amp; the surrounding joint musculature.</span>\n\n<span style=\"font-weight: 400;\">Basically this method of considered programming can help us help clients with balance &amp; reaction control while reducing risk. Therefore perfect for pretty much everyone but also certain populations like those at risk of falls. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-31432 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4098-300x255.jpg\" alt=\"\" width=\"300\" height=\"255\" />\n\n&nbsp;\n<h2 style=\"text-align: center;\"><span style=\"font-weight: 400;\">What DOES it look like?</span></h2>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Coordination training </span></p>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Balancing </span></p>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Trunk conditioning </span></p>\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"size-medium wp-image-31428 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4103-300x214.jpg\" alt=\"\" width=\"300\" height=\"214\" /></p>\n\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">What DOESN’T it look like? </span></h2>\n&nbsp;\n\nThis consideration is likely to be one of the main reasons gym equipment/machines have been given a bad reputation for improving function.\n\n<span style=\"font-weight: 400;\">Gym machine training is far less likely to allow for neuromuscular training effects for a given sport due to the \'support\' given by the seating, padding or stability from the machine.</span>\n\nThere is a time and a place for all modalities of training the body, including the use of gym equipment/machines but we should always consider specificity of the client\'s circumstances and goals.\n\nThe better we understand the different models of training and their pros and cons, the better placed we are to choose the most appropriate method of TIMING of introducing certain training modalities.\n\nThis is when being able to test benchmarkers of your clients intrinsic biomechanics and movement quality can be most helpful.\n\nMost clients at some point or another are likely to require trunk conditioning. This can be measured using core assessment progressions, core isometric ratio testing and functional stability screens. The beauty of these tests is that each tests becomes the exercise when coached appropriately.\n\nTrunk conditioning, also commonly described as core stability, is an important aspect of our clients programming but knowing when, what, why, how to choose the right neuromuscular exercise is often missed or can be lacking.\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Neuromuscular ‘progression’ is a great way to consider training your clients trunk to stabilise their bodies movement during ADL. This simply means progressively reducing the base of support to challenge the stabilisers more over time, thus developing the nerves and muscles tolerance to load.</span></h3>\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-31427 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4675-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\n\n&nbsp;\n\n&nbsp;\n<h1>Consider....</h1>\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-31431 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_2336-300x176.jpeg\" alt=\"\" width=\"300\" height=\"176\" />\n\n&nbsp;\n\n&nbsp;\n<ol>\n 	<li>\n<h4>how many neuromuscular exercises can you list?</h4>\n</li>\n 	<li>\n<h4>what order would they be in to go from easiest to most challenging?</h4>\n</li>\n 	<li>\n<h4>which clients would start where in the progression and why?</h4>\n</li>\n 	<li>\n<h4>how would you know?</h4>\n</li>\n</ol>\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-31426 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4674-298x300.jpg\" alt=\"\" width=\"298\" height=\"300\" />\n\n&nbsp;\n\nIf you do not have a testing / assessment system in place we can offer you this in both face to face or online training.\n\n&nbsp;\n\nIf you have any questions please do not hesitate to contact us rachel@biomechanicseducation.com\n\n<hr />\n\n<h2><span style=\"font-weight: 400;\">References</span></h2>\n<span style=\"font-weight: 400;\">Boyd, K., 2003. Low Back Disorders: Evidence-Based Prevention and Rehabilitation. </span><i><span style=\"font-weight: 400;\">Physiotherapy Canada</span></i><span style=\"font-weight: 400;\">, 55(02), p.124.</span>\n\n<span style=\"font-weight: 400;\">Clausen, B., Holsgaard-Larsen, A. and Roos, E., 2017. An 8-Week Neuromuscular Exercise Program for Patients With Mild to Moderate Knee Osteoarthritis: A Case Series Drawn From a Registered Clinical Trial. </span><i><span style=\"font-weight: 400;\">Journal of Athletic Training</span></i><span style=\"font-weight: 400;\">, 52(6), pp.592-605.</span>\n\n<span style=\"font-weight: 400;\">Faries, M. and Greenwood, M., 2007. Core Training: Stabilizing the Confusion. </span><i><span style=\"font-weight: 400;\">Strength and Conditioning Journal</span></i><span style=\"font-weight: 400;\">, 29(2), p.10.</span>\n\n<span style=\"font-weight: 400;\">Filipa, A., Byrnes, R., Paterno, M., Myer, G. and Hewett, T., 2010. Neuromuscular Training Improves Performance on the Star Excursion Balance Test in Young Female Athletes. </span><i><span style=\"font-weight: 400;\">Journal of Orthopaedic &amp; Sports Physical Therapy</span></i><span style=\"font-weight: 400;\">, 40(9), pp.551-558.</span>\n\n<span style=\"font-weight: 400;\">Gschwind, Y., Kressig, R., Lacroix, A., Muehlbauer, T., Pfenninger, B. and Granacher, U., 2013. A best practice fall prevention exercise program to improve balance, strength / power, and psychosocial health in older adults: study protocol for a randomized controlled trial. </span><i><span style=\"font-weight: 400;\">BMC Geriatrics</span></i><span style=\"font-weight: 400;\">, 13(1).</span>\n\n<span style=\"font-weight: 400;\">Hibbs, A., Thompson, K., French, D., Wrigley, A. and Spears, I., 2008. Optimizing Performance by Improving Core Stability and Core Strength. </span><i><span style=\"font-weight: 400;\">Sports Medicine</span></i><span style=\"font-weight: 400;\">, 38(12), pp.995-1008.</span>\n\n<span style=\"font-weight: 400;\">Huxel Bliven, K. and Anderson, B., 2013. Core Stability Training for Injury Prevention. </span><i><span style=\"font-weight: 400;\">Sports Health: A Multidisciplinary Approach</span></i><span style=\"font-weight: 400;\">, 5(6), pp.514-522.</span>\n\n<span style=\"font-weight: 400;\">Lee, B. and McGill, S., 2015. Effect of Long-term Isometric Training on Core/Torso Stiffness. </span><i><span style=\"font-weight: 400;\">Journal of Strength and Conditioning Research</span></i><span style=\"font-weight: 400;\">, 29(6), pp.1515-1526.</span>\n\n<span style=\"font-weight: 400;\">Lepley, L., Lepley, A., Onate, J. and Grooms, D., 2017. Eccentric Exercise to Enhance Neuromuscular Control. </span><i><span style=\"font-weight: 400;\">Sports Health: A Multidisciplinary Approach</span></i><span style=\"font-weight: 400;\">, 9(4), pp.333-340.</span>\n\n<span style=\"font-weight: 400;\">McGill, S., Childs, A. and Liebenson, C., 1999. Endurance times for low back stabilization exercises: Clinical targets for testing and training from a normal database. </span><i><span style=\"font-weight: 400;\">Archives of Physical Medicine and Rehabilitation</span></i><span style=\"font-weight: 400;\">, 80(8), pp.941-944.</span>\n\n<span style=\"font-weight: 400;\">McGill, S., n.d. </span><i><span style=\"font-weight: 400;\">Ultimate back fitness and performance</span></i><span style=\"font-weight: 400;\">.</span>\n\n<span style=\"font-weight: 400;\">Myer, G., Chu, D., Brent, J. and Hewett, T., 2008. Trunk and Hip Control Neuromuscular Training for the Prevention of Knee Joint Injury. </span><i><span style=\"font-weight: 400;\">Clinics in Sports Medicine</span></i><span style=\"font-weight: 400;\">, 27(3), pp.425-448.</span>\n\n<span style=\"font-weight: 400;\">Physiopedia. 2022. </span><i><span style=\"font-weight: 400;\">Neuromuscular Exercise Program</span></i><span style=\"font-weight: 400;\">. [online] Available at: &lt;https://www.physio-pedia.com/Neuromuscular_Exercise_Program&gt; [Accessed 14 February 2022].</span>\n\n<span style=\"font-weight: 400;\">Reiman, M., Krier, A., Nelson, J., Rogers, M., Stuke, Z. and Smith, B., 2010. Reliability of Alternative Trunk Endurance Testing Procedures Using Clinician Stabilization Vs. Traditional Methods. </span><i><span style=\"font-weight: 400;\">Journal of Strength and Conditioning Research</span></i><span style=\"font-weight: 400;\">, 24(3), pp.730-736.</span>\n\n<span style=\"font-weight: 400;\">Risberg, M., Mørk, M., Jenssen, H. and Holm, I., 2001. Design and Implementation of a Neuromuscular Training Program Following Anterior Cruciate Ligament Reconstruction. </span><i><span style=\"font-weight: 400;\">Journal of Orthopaedic &amp; Sports Physical Therapy</span></i><span style=\"font-weight: 400;\">, 31(11), pp.620-631.</span>\n\n<span style=\"font-weight: 400;\">Willson, J., Dougherty, C., Ireland, M. and Davis, I., 2005. Core Stability and Its Relationship to Lower Extremity Function and Injury. </span><i><span style=\"font-weight: 400;\">Journal of the American Academy of Orthopaedic Surgeons</span></i><span style=\"font-weight: 400;\">, 13(5), pp.316-325.</span>\n\n<span style=\"font-weight: 400;\">Willson, J., Dougherty, C., Ireland, M. and Davis, I., 2005. Core Stability and Its Relationship to Lower Extremity Function and Injury. </span><i><span style=\"font-weight: 400;\">Journal of the American Academy of Orthopaedic Surgeons</span></i><span style=\"font-weight: 400;\">, 13(5), pp.316-325.</span>','Neuromuscular Exercise','','inherit','closed','closed','','31421-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',31421,'https://biomechanicseducation.com/?p=38616',0,'revision','',0),(38617,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Nerves have been described as the software of the body and to be able to understand this more thoroughly we have to understand about ‘nerve tension’ and ‘Adverse Neural Tension’. These concepts have been recognised for over 100 years in terms of treating patients clinically, but their full potential has never been understood until now​​ An analogy with the invention of the wheel is an interesting one. The discovery of nerve tension and it being used for the treatment of injuries is like the wheel being invented and placing it on its side, putting 4 legs around the underside and using it as a table. It makes a great table, but the idea to use it in the way we know it today was groundbreaking. The same applies to nerve tension and its application to athletic performance and fatigue relief.</span></div>\n<div></div>\n<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><img class=\" wp-image-31259 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/Screenshot-2022-02-02-at-11.32.03-300x145.png\" alt=\"\" width=\"350\" height=\"169\" /><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />The entire nervous system, is a single continuous tract, so it follows that if any part of this continuous tract is trapped or tethered (as with an injury for example) then it also follows that there will be some restriction of the mobility of other parts of the nerve system. So a problem with one part of the nerve can cause pain in another – this is the clinical application. However, we have discovered that this is not always represented by pain but also by a reduction of joint range of movement and altered joint biomechanics which can affect a whole host of problems that can cause restricted performance and may ultimately lead to injury. Moreover, with the increased muscle spasm and associated factors, local fatigue increases and so understanding these principles can lead to benefits not only in human performance but also fatigue relief.</span></div>\n<div></div>\n<div></div>\n<div></div>\n<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><img class=\" wp-image-31260 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/02/shutterstock_1798734148-300x193.jpg\" alt=\"\" width=\"325\" height=\"209\" />Research<span class=\"ac-designer-copy\">​ - </span>We know this happens from research performed at Liverpool Hope University College and studies there demonstrate astonishing results. One experiment showed that a muscle can increase its force output by 14% after a brief preliminary warm-up (just one 15 second workout using this concept). Another experiment showed that by following the same concept a 2 minute programme performed daily for 10 days increases muscle output by over 50%. By understanding the importance of the interaction of individual body systems with each other, we have established the world\'s largest database of its kind and have included the outcomes of the auditing of this information in our Diploma in Biomechanics Coaching&#x2122;.</span></div>\n<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" />On the course you learn how to test your ‘nerve tension’ and prescribe movement patterns to enhance the coordinated output of your body’s systems. In terms of fatigue relief, it has been demonstrated that after 15 seconds of the programme, muscle fatigue is reduced by up to 14% immediately and sustained use led to significant and prolonged increase in muscle output. These studies have been validated at the highest level. A paper was submitted at the 6th Asian Biomechanics Congress (one of the worlds most credited) and was enthusiastically received. In a practical sense the programmes have been rigorously tested by people such as Olympic athletes through to workers on a product line and hospital health trusts.\n</span></div>\n<div></div>\n<div></div>\n<div></div>\n<div></div>\n<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><img class=\"size-medium wp-image-27964 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/shutterstock_1756367075-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></span></div>\n<div></div>\n<div></div>\n<div></div>\n<div></div>\n<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Remember in most cases we are not even aware we have a problem, but even so you can still achieve these remarkable results. Just imagine what these figures could do you for your performance in your sport or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office.<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Terminology<br class=\"ac-designer-copy\" />​</span><br class=\"ac-designer-copy\" />So when it comes to exercise programming our holistic approach, which is commonly described but rarely understood and demonstrated, takes into consideration all of the body’s systems, and it has a deep understanding of how they interact and are guided by our nervous system. Description terms such as strength and power in this model are inadequate, so when we talk about exercises in these terms, we should be talking in terms of Movement Acquisition Patterns (or MAPs) which are used to enhance a given set of functional movements, not stretches or strengthening exercises, as the latter do not give credit for the full implications of the programming.</span></div>\n<div></div>\n<div></div>\n<div></div>\n<div></div>\n<div class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><img class=\" wp-image-31261 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/02/shutterstock_423021502-300x200.jpg\" alt=\"\" width=\"344\" height=\"229\" /><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Example<br class=\"ac-designer-copy\" />​</span><br class=\"ac-designer-copy\" />Lets take a hamstring stretch as an example, we are not trying to stretch the hamstrings when we extend the leg out in front of us, we are trying to improve the range of hip flexion and knee extension by stretching the structures on the back of the leg and back. This brings in more than just the hamstrings, it can also be limited by a tight sciatic nerve, a rotated sacro-iliac joint in the lower back, tight gastrocnemius, tight spinal cord and indeed almost any nerve in the chain given the continuum concept described earlier. How many times have you stretched your hamstrings using the generally accepted methods only to find that their flexibility continues to be stubborn and often returns to their standard length very soon? Many people experience this phenomenon. The reason is often due to them stretching only one of the structures that limit the movement, i.e. the hamstrings. If they do not stretch the other structures as well, of course they will not be affected and so the limited range will usually return. So we are trying to acquire a pattern of movement, not just stretching the hamstrings.</span><b class=\"ac-designer-copy\"></b></div>\n<div></div>\n<div></div>\n<div></div>\n<div>\n\n<hr />\n\n</div>\n<div>\n<h2><sub class=\"ac-designer-marked-selection ac-designer-copy\"><i class=\"ac-designer-copy\">Aimed at non clinicians seeking solutions to modern ailments of their clients with a proactive approach to assessment &amp; improvement of movement.</i></sub></h2>\n&nbsp;\n\n</div>\n<h2><a href=\"https://www.biomechanicseducation.com/product/understanding-nerves-live-webinar-feb-16th-12pm/\" target=\"_blank\" rel=\"noopener\">CLICK HERE TO BOOK A PLACE: </a></h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/understanding-nerves-live-webinar-feb-16th-12pm/\" target=\"_blank\" rel=\"noopener\">LIVE WEBINAR FEB 16TH 12PM</a></h2>\n&nbsp;\n<h2>During this webinar we will share with you how to test and improve your clients nerve mobility</h2>\n<img class=\"size-medium wp-image-31262 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/02/IMG_1564-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />','Understanding Nerves','','inherit','closed','closed','','31258-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',31258,'https://biomechanicseducation.com/?p=38617',0,'revision','',0),(38618,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<p><span style=\"font-weight: 400;\">Over the last 24 months </span><span style=\"font-weight: 400;\">with lockdowns, the evolution/growth of technology &amp; the fact we have seen a huge increase in the demand for accessing information online t</span><span style=\"font-weight: 400;\">here are clearly pros &amp; cons to this method of information delivery. It has pretty </span><span style=\"font-weight: 400;\">obviously benefits over accessing information face to face BUT is this diluting the quality? and specifically in the delivery of the </span><b>education of practical skills like Personal Training</b><span style=\"font-weight: 400;\">?  </span> <span style=\"font-weight: 400;\">Now obviously times are changing and we need to keep up with modern life…..but is it at a cost?</span> <span style=\"font-weight: 400;\">In this particular Juicemail I want to ask YOU, the readers, to think about this; When it comes to face to face education vs online education, while learning practical skills specifically, what do YOU feel are the pros &amp; cons of each AND is online movement education diluting the quality in your opinion?</span></p>\n<p>&nbsp;</p>\n<h3><b>Online vs Face To Face Definitions</b></h3>\n<ol>\n<li><span style=\"font-weight: 400;\">Face to Face (F2F) in this blog we are referring to being physically in a room with a teacher.</span></li>\n<li><span style=\"font-weight: 400;\">Online training (OT) we refer to courses that are accessed purely online.</span></li>\n</ol>\n<p>        Here is a break down of what we see as the main differences in terms of pros &amp; cons</p>\n<h3><b>Online Learning Pros <img class=\"size-medium wp-image-31064 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/01/chris-montgomery-smgTvepind4-unsplash-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Usually cheaper</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Easier to access </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Convenient</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Set your own pace, taking breaks anytime </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Could be more easily accessible for those with certain learning requirements </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Offers visual (video and images) and written information</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">No peer pressure</span></li>\n<li>Reduced exposure to virus/illness</li>\n<li>A good way to \'dip your toe\' &amp; sample</li>\n</ul>\n<h3 style=\"text-align: left;\"><b>Online Learning Cons</b></h3>\n<ul>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">Less personal </span></li>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">No immediate feedback </span></li>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">Can\'t get immediate answers/help</span></li>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">Lack having physical experience</span></li>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">Lacks judgment of tutor to offer individualised training </span></li>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">Lack of diversity / professional discussion </span></li>\n<li style=\"font-weight: 400; text-align: left;\"><span style=\"font-weight: 400;\">Practical correction unavailable </span></li>\n</ul>\n<h3><b>Face To Face Learning Pros</b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Interactive and personal </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Sense of camaraderie</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Human connection </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Experiencial, more memorable meaning more chance of retaining information</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Change of scene can be good </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Different points of view </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Immediate feedback from the tutor</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Empathetic teaching </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Networking with peers </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Great for questions on physical techniques / practical application <img class=\"size-medium wp-image-31066 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/01/sam-balye-w1FwDvIreZU-unsplash-300x212.jpg\" alt=\"\" width=\"300\" height=\"212\" /></span></li>\n</ul>\n<h3><b>Face To Face Learning Cons</b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Cost is usually higher</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Travel and accommodation costs </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Time away for paid work / family</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Possibility of feeling judged </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Possible peer pressure</span></li>\n<li>Increased exposure to virus/illness</li>\n</ul>\n<p>&nbsp;</p>\n<h3><b>So How Do We Decide?</b></h3>\n<p><span style=\"font-weight: 400;\">Well, I think we each have a personal responsibility to ensure our own education is of a quality that enables us to provide/deliver an appropriate and insurable duty of care. One potential issue here is </span>  </p>\n<h1><i><span style=\"font-weight: 400;\">You Don’t Know What You Don’t Know!</span></i></h1>\n<h1> </h1>\n<h1>&amp;</h1>\n<p>&nbsp;</p>\n<h1><span style=\"font-weight: 400;\">Y<i>ou will get what you pay for</i></span></h1>\n<p>&nbsp;</p>\n<p><img class=\"size-medium wp-image-31071 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/01/windows-v94mlgvsza4-unsplash-1-300x201.jpg\" alt=\"\" width=\"300\" height=\"201\" /></p>\n<h3><b>What Does The Research Say?</b></h3>\n<p><span style=\"font-weight: 400;\">Well, there are a lot of studies (see references) on the F2F Vs OT debate but when you whittle it down there is a clear response that a blend of BOTH is shown to be most effective. </span> <span style=\"font-weight: 400;\">Paying for online education for all of the ‘pro’ reasons listed above makes sense, doesn\'t it.  So while</span><span style=\"font-weight: 400;\"> F2F education experiences are (certainly in my opinion) the best when initially learning practical skills like Personal Training or Sports Massage, once we have a good foundation of knowledge we can then apply our learning disciplines to the easier to access platforms.</span>  </p>\n<h1><em><span style=\"font-weight: 400;\">So let me now ask you a question….</span>  </em></h1>\n<h3> </h3>\n<h3><img class=\"alignnone size-medium wp-image-31068\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/01/gabin-vallet-J154nEkpzlQ-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></h3>\n<p>&nbsp;</p>\n<h2><b>What Would YOU Do?</b></h2>\n<p>  <span style=\"font-weight: 400;\">…….. if YOU needed to employ a coach, trainer, therapist, PT, doctor for yourself.....how would you feel about being seen by a professional who had gained their practical qualification/s online with no F2F training?</span> <span style=\"font-weight: 400;\">Of the above professions, I believe ONLY the Personal Training skill set can be accessed purely online.</span> <span style=\"font-weight: 400;\">Why is this?</span> <span style=\"font-weight: 400;\">Would you confess to being qualified purely online? If not why not?</span> <span style=\"font-weight: 400;\">Is there a problem with it?</span> <span style=\"font-weight: 400;\">We can get coached online, so why not educated?</span>   <img class=\"size-medium wp-image-31069 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/01/jonathan-borba-R0y_bEUjiOM-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />  </p>\n<h2><b>Education &amp; Learning in General - Bad &amp; Good</b></h2>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Having been involved in education and learning for 48yrs, both as a learner, then a teacher and also a teacher of teachers, I have</span><span style=\"font-weight: 400;\"> had some incredibly life-changing bad F2F experiences. So I completely understand how people can be put off when we also might hear stories about kids having bad experiences at school being bullied. </span>  <span style=\"font-weight: 400;\">However, I also believe my bad experiences gave me a huge passion for creating the best learner experiences I can for others once I had some really great learning experiences . Out Master Trainer team are taken through an apprenticeship that requires a particular standard of delivery with an inclusive focus that, I believe and the feedback suggests, we have gained a reputation for.</span>  <span style=\"font-weight: 400;\">The inclusive and diverse nature of fantastic F2F education experiences cannot be denied and is still shown to be </span><i><span style=\"font-weight: 400;\">one of</span></i><span style=\"font-weight: 400;\"> the most successful ways to gain knowledge and skills. </span><span style=\"font-weight: 400;\">The ‘experience’ of F2F for learning, I believe is still vital for becoming ‘qualified’ in a very practical skill set like those of you wishing to become an exercise professional or therapist!</span>  </p>\n<p>&nbsp;</p>\n<p><img class=\"size-medium wp-image-31070 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/01/victor-freitas-nlZTjUZX2qo-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></p>\n<h2> </h2>\n<h2><b>When Is Online Movement Education OK?</b></h2>\n<p><span style=\"font-weight: 400;\">Look I am a people person, I love forging relationships, being with people, looking in their eyes, feeling their emotions and basing the moment on that. Since online there is less chemistry. </span> <span style=\"font-weight: 400;\">BUT </span> <span style=\"font-weight: 400;\">I also accept that others are NOT like me.</span> <span style=\"font-weight: 400;\">In my opinion, when OT is an up skill or CPD as an additional resource or a taster it is a brilliant compliment to a F2F qualification. </span> <span style=\"font-weight: 400;\">Here at Biomechanics Education, we offer BOTH F2F and OT through our various platforms to get our message out there BUT I am super keen to hear your views, so</span><span style=\"font-weight: 400;\"> leave a comment below and tell me what your thoughts are on F2F Vs OT.</span> <span style=\"font-weight: 400;\">Also, I just want to add, that I LOVE the fact we are having this discussion because it means people are committed to learning and continued development. </span> <span style=\"font-weight: 400;\">Ultimately as professionals, we should always be taking our skills to the next level, and as humans, our minds LOVE progression. </span> <span style=\"font-weight: 400;\">So whether you\'re learning online or face to face I am delighted to know that you are committed to learning!</span></p>\n<h2> </h2>\n<h2>References:</h2>\n<ol>\n<li>Alsaaty, F., Carter, E., Abrahams, D. and Alshameri, F., 2016. Traditional Versus Online Learning in Institutions of Higher Education: Minority Business Students’ Perceptions. <i>Business and Management Research</i>, 5(2).</li>\n<li>Ananga, P. and Biney, I., 2021. COMPARING FACE-TO-FACE AND ONLINE TEACHING AND LEARNING IN HIGHER EDUCATION. <i>MIER Journal of Educational Studies Trends &amp; Practices</i>, pp.165-179.</li>\n<li>Elucidat. 2022. <i>Online learning vs face to face learning | Elucidat</i>. [online] Available at: &lt;https://www.elucidat.com/blog/online-learning-vs-face-to-face-learning/&gt; [Accessed 18 June 2019].</li>\n<li>Keis, O., Grab, C., Schneider, A. and Öchsner, W., 2017. Online or face-to-face instruction? A qualitative study on the electrocardiogram course at the University of Ulm to examine why students choose a particular format. <i>BMC Medical Education</i>, 17(1).</li>\n<li>Keramidas, C., 2012. Are Undergraduate Students Ready for Online Learning? A Comparison of Online and Face-to-Face Sections of a Course. <i>Rural Special Education Quarterly</i>, 31(4), pp.25-32.</li>\n<li>Khazan, O., 2022. <i>The Myth of ‘Learning Styles’</i>. [online] The Atlantic. Available at: &lt;https://www.theatlantic.com/science/archive/2018/04/the-myth-of-learning-styles/557687/&gt; [Accessed 18 June 2019].</li>\n<li>Szeto, E., 2014. A Comparison of Online/Face-to-face Students’ and Instructor\'s Experiences: Examining Blended Synchronous Learning Effects. <i>Procedia - Social and Behavioral Sciences</i>, 116, pp.4250-4254.</li>\n<li>Voxy. 2022. <i>Research review: Online versus face-to-face learning outcomes</i>. [online] Available at: &lt;https://voxy.com/blog/2017/12/research-review-online-versus-face-face-learning-outcomes/&gt; [Accessed 18 June 2019].</li>\n</ol>\n<hr /><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2> </h2>\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Would You Like A Blended Learning Exprience</a></h1>\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">To Be Able To Reduce Your Clients Risk Of Injury?</a></h1>\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">&amp;</a></h1>\n<h1>Help Them Get Even Better Results?</h1>\n<p><!-- /wp:heading -->\n\n<!-- wp:paragraph --></p>\n<p>Then CLICK HERE how it could help you become an even better personal trainer!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Online vs Face to Face','','inherit','closed','closed','','31063-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',31063,'https://biomechanicseducation.com/?p=38618',0,'revision','',0),(38619,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<p class=\"p1\">Known as a staple strength move that has great crossover into our daily lives in terms of bending &amp; lifting the deadlift could be argued as THE original strength move since we have bent &amp; lifted like...... forever!</p>\n<p class=\"p1\">It’s relatively simple to understand in terms of functionality &amp; performance however lets analyse it in a little more detail &amp; see if we can better understand all its variations, what they can offer &amp; of course how a coach or trainer can make the best choice of variation with each client.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Historically pioneered possibly by German circus performer, Hermann Goerner of Pagel’s Circus, between 1910-1930.<span class=\"Apple-converted-space\"> </span>Also referred to as the ‘father of the deadlift’ he rose to fame for his feats of strength<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p1\">The \'original\' Deadlift<span class=\"Apple-converted-space\"> </span></h2>\n&nbsp;\n<p class=\"p1\">Originally named the ‘dead’ lift since it was a dead weight that was lifted from the floor. Thus requiring great leg &amp; back strength to generate the force required to lift it with no momentum.</p>\n<p class=\"p1\">Requiring good ROM was, &amp; is, a feature of this movement since the lifter is required to flex more at the knee along with the hip flexion/ hinge so as to reach down to the bar. In fact almost a slight squatting action with a greater forward lean / hip flexion angle than in a regular squat.</p>\n<p class=\"p1\">So a great move for strengthening the posterior musculature, development of tissue tolerance to loads being lifted &amp; the thoracolumbar fascia that can be utilised as a hydraulic amplifier (The Spinal Engine, Gracovetsky, 1988). This wonderweb of diamond shaped fascia allows the erector spinae to push against it contributing 30% more strength to the torso. Nice eh!</p>\n<p class=\"p1\">Deadlifts are therefore great for hip extensor, knee extensor, spine extensor strength.</p>\n&nbsp;\n<h2 class=\"p1\">Romanian Deadlift (RDL)</h2>\n&nbsp;\n<p class=\"p1\">This differs from the original Deadlift since it starts at top of the movement. The bar is lifted usually from a rack, starts at the upper thigh &amp; is then lowered to mid/lower shin before being lifted again.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">So it requires less ROM at the knee, so has less knee extensor influence therefore could be deemed safer or easier in terms of ROM.</p>\n<p class=\"p1\">Still using the hip extensors primarily, the RDL could put more stretch through the sciatic nerve due to less knee flexion. However this could be counterbalanced by less ROM at the hip.</p>\n<p class=\"p1\">Good for new lifters, lighter weight, less knee stress, more choice over ROM control.</p>\n&nbsp;\n<h2 class=\"p1\">Stiff Leg Deadlift</h2>\n&nbsp;\n<p class=\"p1\">Most likely to start as an RDL with the bar being lifted from the rack but could be performed after a regular Deadlift from the floor to get into the top position. Then the bar is lowered while the lifter keeps the knees extended/straight. The point being to gain more ROM at the hip for those hip extensors - glutes &amp; hammies. However the limitation here again could be if the sciatic nerve is tight.</p>\n&nbsp;\n<h2 class=\"p1\">Sumo Deadlift</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30722 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/alora-griffiths-7-ruqVJbHAo-unsplash-300x168.jpg\" alt=\"\" width=\"300\" height=\"168\" />\n<p class=\"p1\">A much wider foot position, deadlifted from the floor as &amp; with a narrow hand grip. Often seen in powerlifting as the Sumo position is slightly easier on the back due to less ROM required at the hip.</p>\nHowever conventional Deadlifts are easier on the quads so this may indicate which to choose if a client has specific requirements in either of these areas.\n<h2></h2>\n<h2 class=\"p1\">Single leg RDL / Crane<span class=\"Apple-converted-space\"> </span></h2>\nSame as RDL but balancing on one leg so a lighter load will be required by comparison. Also challenges balance due to asymmetry &amp; less neuromuscular feedback. So these could be a good choice for individuals looking to improve stability\n\n&nbsp;\n<h1>So what?</h1>\n<h1></h1>\nThe deadlift &amp; all of its variations are regularly in my own training programme because they are all such great, adaptable hip/knee/spine extensor developers. Programming a variety of versions of a movement can be both helpful &amp; more interesting for our clients. So unless they have a specific goal or problem that dictates otherwise it could actually be beneficial to try each.\n\nHowever hopefully this blog helps clarify a few simple details that might contribute towards more informed programming for our client\'s when using this awesome strength move.\n\nRemember there is no right or wrong movement just one they dont have the capacity for!\n\n&nbsp;\n<h2>References</h2>\nBarBend. 2021. <i>The History of the Deadlift: How Did This Lift Become So Popular? | BarBend</i>. [online] Available at: &lt;https://barbend.com/deadlift-history/&gt; [Accessed 16 December 2021].\n\nGracovetsky, S., 1988. <i>The Spinal Engine</i>. Vienna: Springer Vienna.\n\nNorris, C., 1995. Spinal Stabilisation. <i>Physiotherapy</i>, 81(2), pp.61-64.\n\nRoss, J., Ross, J. and profile, V., 2021. <i>Water, Fascia Health and Concussions.</i>. [online] Trainoutpain.blogspot.com. Available at: &lt;https://trainoutpain.blogspot.com/2014/01/water-fascia-health-and-concussions.html&gt; [Accessed 16 December 2021].\n\nWillard, F., Vleeming, A., Schuenke, M., Danneels, L. and Schleip, R., 2012. The thoracolumbar fascia: anatomy, function and clinical considerations. <i>Journal of Anatomy</i>, 221(6), pp.507-536.\n\n<hr />\n\n<h1>Did you enjoy this Juicemail?</h1>\nWhat else would you like to read from us and why?\n\nWhy not get in touch rachel@biomechanicseducation.com','The Deadlift','','inherit','closed','closed','','30719-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',30719,'https://biomechanicseducation.com/?p=38619',0,'revision','',0),(38620,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<p class=\"p3\">When I lost all of my life savings &amp; everything I had ever worked for I was forced to live on less than £9k annual income, living alone with a mortgage &amp; with no job I decided I had little to lose!</p>\n<p class=\"p3\">So bravely (it felt), passionately &amp; with a need to create an income I chose to set up Biomechanics Education Ltd instead of working for someone else. This was done without any investment, loans or overdrafts.....I knew it HAD to work.</p>\n<p class=\"p3\">Committed to 12-16hr days, driven by a feeling of both purpose, excitement &amp; at least initially some degree of desperation I began reading, researching &amp; soaking up every single piece of business guidance I could get hold of that was free....it was SOOO important to me to find a way to deliver this wonderful education programme I believed so strongly in.</p>\n<p class=\"p3\">Watching hours &amp; hours of…</p>\n\n<ul class=\"ul1\">\n 	<li class=\"li3\">Brian Tracy<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Michael E Gerber</li>\n 	<li class=\"li3\">Gary Vee</li>\n 	<li class=\"li3\">Tony Robbins<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Paul Mort<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Chris Cardell<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Grant Cardone</li>\n</ul>\n<p class=\"p3\">…to name a few, I began to write down goals, ideas, plans, systems, thoughts, dreams, literally everything I was thinking. I didn\'t spend anything on any of these guys for around 18 months. They literally gave me free advice &amp; I immediately applied it &amp; it worked!</p>\n\n<h2 class=\"p3\">I took action over &amp; over &amp; over again!</h2>\n<p class=\"p3\">My income increased, my business grew, some of my ideas worked &amp; some didn’t, I messed up, I learned, I tried something else &amp; I was really starting to enjoying myself...... but I kept thinking how long will <i>this</i> take?<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p4\"><b>Yet I kept going….</b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30661 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/quino-al-P05VBPvNr3s-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<p class=\"p3\">...but it always felt like I was still trying to get <i>there</i>, never feeling that point of <i>success</i>. Wondering….</p>\n<p class=\"p3\"><em>What would will it feel like?<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>Will I actually ‘make it’?</em></p>\n<p class=\"p3\"><em>How did they do it?<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>How did these people look so happy, so successful?</em></p>\n<p class=\"p3\"><em>I was never going to be like them?<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>I was frustrated<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>I was knackered<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>I was losing faith in these fancy ideas I’d had about being a successful business woman, running a global empire<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>How ridiculous Rach, I scalded myself<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\"><em>Just be happy with your lot silly woman!<span class=\"Apple-converted-space\"> </span></em></p>\n<p class=\"p3\">Then in 2016 I found my 2014 list of goals from Brian Tracy’s goal planner, a resource I had finally paid for....</p>\n&nbsp;\n<h1 class=\"p4\"><b>\"<i>I was stunned!\"</i></b></h1>\n&nbsp;\n<p class=\"p3\">Tracy says that when a goal is in your head it’s just a dream, when you write it down it becomes a plan. He suggests the act of actually using the neurological connections from thoughts in your head, allowing them to travelling down your arm to the pen &amp; paper in your hand, something special happens.</p>\n<p class=\"p3\">I had tried it &amp; had I not, I would not on this day in 2016, of had the epiphany I had…</p>\n&nbsp;\n<h2 class=\"p4\"><b><i>\"I was already successful!<span class=\"Apple-converted-space\">\"</span></i></b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30662 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/guille-alvarez-IcI3FizU9Cw-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<p class=\"p3\">The goals I had in 2014, having written them down, proved it.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">How?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Because literally everything I had written down as a goal, I had achieved. <span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">In fact not only had I achieved them, I had smashed way beyond them!</p>\n&nbsp;\n<h2 class=\"p4\"><b>What did I learn?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">I realised I was living perfect days over &amp; over again every day, I was able to recognise my success, I was now appreciating every moment, every day, over &amp; over again. Mistakenly I had assumed I was \'not there yet\' because I was always driven to achieve something new, something different &amp; perceived that as failing or not yet being \'there\', not yet being successful. By NOT looking at my benchmark (my goals list) I hadn\'t realised my success!</p>\n<p class=\"p3\">By comparing myself to others I was being too hard on myself &amp; trying to achieve <em>their values</em> of success or their idea of a perfect day, even though <em>my values</em> were different.</p>\n<p class=\"p3\">Once I spent a moment to write things down, create plans, take action AND literally put clarity into what my perfect day would look like AND THEN READ IT REGULARLY, I was then able to see....my success, my perfect days.</p>\n<p class=\"p3\">Living in the moment, noticing right ‘now’</p>\n<p class=\"p3\">If you try this you might realise you were living perfect days already &amp;  that you have already succeeded in achieving what you had set out to do some years ago!</p>\n<p class=\"p3\">If we continue to regret the past or strive for a different future we may miss some of the most beautiful, cherish able &amp; perfect moments that are literally happening around us right now.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">By writing down goals I was able to physically imagine them, take them out of my concern, connect them with the real world &amp; then get back to living the moment....</p>\n<p class=\"p3\">...by writing them down I was able to recognise &amp; realise when they had been achieved.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The goals were super SMART too! Now each year I continue to write my goals down. Make them SMART &amp; then crack on with appreciating the experience of feeling my success in reaching those goals on a regular basis.</p>\n<p class=\"p3\">Some may not be achieved but then we can alter the plan, to better understand why not or do things another way.</p>\n&nbsp;\n<h2 class=\"p4\"><b>So what?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">As<b> </b>a trainer or coach we have a duty to help our clients create SMART goals but we are highly likely to benefit from creating our own.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">They do not need to be limited to our training programmes.</p>\n\n<h2 class=\"p3\"><img class=\"alignnone size-medium wp-image-30681\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52be-300x193.jpeg\" alt=\"\" width=\"300\" height=\"193\" /><img class=\"alignnone size-medium wp-image-30682\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52ea-300x200.jpeg\" alt=\"\" width=\"300\" height=\"200\" /><img class=\"alignnone size-medium wp-image-30683\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/DSC03820-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /><img class=\"alignnone size-medium wp-image-30684\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/IMG_7668-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" /><img class=\"alignnone size-medium wp-image-30685\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/image0-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" /> Would you like to feel successful with us?</h2>\ninfo@biomechnanicseducation.com','Embracing Failure','','inherit','closed','closed','','30657-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',30657,'https://biomechanicseducation.com/?p=38620',0,'revision','',0),(38621,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','&nbsp;\n<h2 class=\"p3\">Remember my post about The Windmill V’s The Triangle?</h2>\n<p class=\"p3\">My goal was to clarify how naming moves from a specific context doesn’t mean that the moves cannot be performed differently for a different set of circumstances or a specific goal, in other words if it can be justified!</p>\n<p class=\"p3\">The Kettlebell swing is another example of a move, like the Windmill &amp; the Triangle, that has roots. It is also a move that can be performed in such a way that the lifter loses much of the benefit/s they are aiming for, or in a way that they may increase their risk of an injury due to where the loads are placed. in respect of their tissue tolerance to that load.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Before we get into this I would just like to make the point that like any move done ‘badly’ (I am using this term very loosely to make this point by the way) - when done just once, twice or even for a few weeks, maybe even months - things wont just break.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It takes time to cause damage because our bodies are FANTASTIC MASTERS of compensations!</p>\n<p class=\"p3\">They will adapt &amp; alter in micro moves/positions to protect while performing the moves we perform….even bad ones!<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Consider how you move day to day…’perfect technique’ 100%of the time?</p>\n<p class=\"p3\">So swinging a KB ‘badly’ wont break you unless you are either already susceptible (has previous compensation already happening) OR you have been doing it without appropriate preparation of the load<span class=\"Apple-converted-space\">  </span>being applied to the tissues involved.</p>\n&nbsp;\n<h1 class=\"p3\"><b>The Original KB Swing</b></h1>\n&nbsp;\n\nhttps://youtu.be/Z8KrxCh3Gzo\n\n&nbsp;\n<p class=\"p3\">The ‘original modern’ presentation of the KB Swing might be argued as being from Pavel Tsatsouline. However revisit my Turkish Get Up post for information around a researcher called Felkar for what she learned about the history of the Kettlebell itself &amp; probably the true roots of the Swing.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Performed with a hip hinge, the Swing is often deemed to be done ‘wrong’ or at least performed ‘badly’, by the lifter performing more of a squat. Now there is nothing wrong with squatting so be careful how you present this argument particularly without obtaining the full case history of the lifter along with their aims &amp; goals. <span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The proposed aim of the KB Swing is the action should be more of a hip hinge than a squat, the bell coming to its apex at around chest to torso height, with the elbows relatively soft &amp; relaxed to ‘allow the bell to swing’ &amp; congruency between the swing &amp; hip hinge that includes (&amp; allows for) a snap up from the hip, knee extension. A cue like you are shooting a bow and arrow might be used to coach the snap up.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">To initiate the first swing it is suggested that the lifter</p>\n<p class=\"p3\">steps back from the bell &amp; hinges with a flat in back to reach out to the bell so as to initiate momentum into the lift as it is lifted from the floor. This then allows for the ’Swing’ to continue from the hip hinge snapping through creating the force that generates the load through to move the bell.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Alternatives<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\"><img class=\"size-medium wp-image-30651 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/sergio-pedemonte-LqtHvyd80Mo-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />Without understanding this concept new lifters may perform more of a squat while ‘lifting’ the bell (since there is no momentum from the hips). This often results in a much lighter load due to shoulder flexors<span class=\"Apple-converted-space\">  </span>having less strength than the big ol’ hip extensors. The movement will usually have less speed or snap as the new lifter may not realise this is the point of the swing action.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>So What?</b></h2>\n&nbsp;\n<p class=\"p3\">Well why not do it with a squat?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Ok well we should always, I repeat ALWAYS, add context. There is absolutely no reason why anyone should not do it with a squat style of technique instead. Unless the reason they are doing the movement doesn’t match the performance of it.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Considering the load difference between (in this example) the ‘hinge’ swing &amp; the squat swing, both load the back extensors. If both are performed with a stiff/neutral spine, the hinge swing loads them at a higher speed than the squat version.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">However the squat version has more knee bend, working the knee extensors more.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It certainly works the shoulder flexors more, due to them actually lifting the bell rather than momentum lifting it.</p>\n<p class=\"p3\">The hinge swing loads the knee flexors more than the squat due to a more extended knee throughout the movement. Also there is a greater hip flexion angle adding more load into the hip extensors.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It also puts less load on the shoulders due to the swing ‘lifting’ the bell through momentum as oppose to the shoulder flexors.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Each style of performance will likely dictate how heavy the bell can be. For example the hip extensors being the prime movers in the hinge swing are a much bigger stronger muscle group than the shoulder flexors involved in the actual lifting of the bell in the squat version. This would mean most lifters are more likely to be able to move more weight in the hinge swing than the squat version.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>The above in application….?</b></h2>\n<p class=\"p3\"><img class=\"size-medium wp-image-30653 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/ivan-pergasi-7IB2ifwA21Y-unsplash-201x300.jpg\" alt=\"\" width=\"201\" height=\"300\" />The point of the above is to offer insight into how we can analyse movement, load, force etc &amp; could argue for or against any version we choose to perform a movement or that we give to our client.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">BUT MORE IMPORTANTLY….</p>\n<p class=\"p3\">…you know why you are doing it that way no matter what the keyboard warriors say!!!</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h1>Do you enjoy these movement analysis posts?</h1>\n<h3>Would you like to experience them live in a classroom?</h3>\n<h3>Maybe you would like to join in?</h3>\n<h3>or</h3>\n<h3>Maybe you would like to have fun with us in our movement analysis game?</h3>\n<h3>Why not get in touch to find out how, when &amp; where you can</h3>\ninfo@biomechanicseducation.com\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">or BOOK HERE</a></h1>','The Kettlebell Swing ','','inherit','closed','closed','','30642-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',30642,'https://biomechanicseducation.com/?p=38621',0,'revision','',0),(38622,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<p class=\"p3\">Do you wish you could increase your hourly rate?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Do you wish you had the confidence to invite your clients to subscribe to a membership? <span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Would you like to learn how to reduce your anxiety about asking for money? More money?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Maybe you thought investing in learning about business would be expensive?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Would you like learn a few tips for FREE? And how to study business continuously for free?<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Attention</b> !!</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30634 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/riccardo-annandale-7e2pe9wjL9M-unsplash-300x240.jpg\" alt=\"\" width=\"300\" height=\"240\" />\n<p class=\"p3\">Ok so now I have your attention please understand this is simple but not easy</p>\n<p class=\"p3\">It’s not easy because until YOU value you &amp; what you’re offering then your clients &amp; potential clients won’t either. So it feels really really difficult, unworthy &amp; maybe almost impossible<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">But you see others doing it!! <span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">So let me share with how I do it &amp; how I’ve taught others to do it.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>I was just like you!</b></h2>\n&nbsp;\n<p class=\"p3\">Please understand I used to be just like you!<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">I would do free stuff to try to gain clients.</p>\n<p class=\"p3\">I would do offers &amp; be cheaper but I found myself not only getting fewer clients but also very low adherence to the programmes I gave them. The results weren’t possible because clients wanted ME to fix THEM &amp; for VERY little money!</p>\n<p class=\"p3\">In fact at one point I lost almost everything!<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Wait!</b></h2>\n&nbsp;\n<p class=\"p3\">Please understand this was the best thing to happen to me!<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Yes really it was.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">I didn’t know it at the time but it taught me a huge lesson that enabled me to not only charge more but gain success with my clients!</p>\n<p class=\"p3\">Every - single - time!<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>How?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">First of all I had no money so I was forced to search for as much free advice as I could get. So I followed all the top successful business people I could find.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Second I watched &amp; others grabbed my attention with their marketing.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Some I loved &amp; copied<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Some I saw exactly what I did NOT want to do<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Adding value<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30632 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/christopher-bill-rrTRZdCu7No-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<p class=\"p3\">Something that struck me from very early on, I heard over and over again. It was something that all the highly successful business gurus ALL kept saying....</p>\n<p class=\"p3\">‘…ensure you ADD VALUE…’</p>\n<p class=\"p3\">So I watched what others offered, I also considered why my clients were not adhering to my iMoveFreely programme.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">While I was studying all these business gurus online, I also became very aware of the way companies made me feel when I was buying…</p>\n\n<ul class=\"ul1\">\n 	<li class=\"li3\">Food<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Toiletries<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Clothes<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Gifts <span class=\"Apple-converted-space\"> </span></li>\n</ul>\n<p class=\"p3\">I realised that I too would be drawn into spending more money when I felt there was additional value.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The value could have been a gift, an additional item or often it was simply the experience I had or the way the company made me feel.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Always learning<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30635 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/neonbrand-1-aA2Fadydc-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<p class=\"p3\">Recognising that there are business lessons around you literally EVERYWHERE creates constant opportunities to study your craft as a business owner, entrepreneur, self employed professional.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Know your audience!<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">Knowing your customer should help you with this &amp; once you get inside the head of your audience (like I am doing in this blog) it can make a dramatic difference to the ay your marketing is received.</p>\n<p class=\"p3\">So write down all the things that your perfect client would appreciate, like, value &amp; want.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Also think about what they might need additionally to adhere &amp; succeed</p>\n&nbsp;\n<h2 class=\"p3\"><b>Creating your added value</b></h2>\n&nbsp;\n<p class=\"p3\">Now once you can describe your customer to a tee you can start to add the kind of value that would hook them in.</p>\nYou are either a JANE or a DAZ in my 2 demographic audience - you may well be a combination of both but you will definitely have been hooked by something i wrote that resonated with you &amp; made you feel like I was talking to you personally....right? How many times have you said yes in your head so far?\n\nNo Derren Brown is not my brother......anyhoo.....\n<p class=\"p3\">Let me offer you insight into some of my list of value adds for my clients, not exhaustive, not compulsory…simply ideas sometimes tweaked for some clients.<span class=\"Apple-converted-space\"> Remember NORMALLY they think they are buying \'sessions\', well my clients also get all of this when they sign up.....</span></p>\n<p class=\"p3\">Monthly subscribers =</p>\n\n<ul class=\"ul1\">\n 	<li class=\"li3\">Online Safety-net health check<span class=\"Apple-converted-space\"> for red flag clearance </span></li>\n 	<li class=\"li3\">A full health consultation 1.5hr</li>\n 	<li class=\"li3\">A full biomechanical assessment x 4pm<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Access to a multidisciplinary team including (not limited to) Chartered Physiotherapist, Osteopath, Podiatrist.<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Behaviour change guidance<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Movement guidance<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Exercise programme written out<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Access to personal Exercise Videos</li>\n 	<li class=\"li3\">Contact daily for the first 2/4 weeks as required<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">An iMoveFreely top</li>\n 	<li class=\"li3\">An iMoveFreely bag<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">A foam roller<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">A massage ball<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">An anatomy therapy colouring book<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">A resistance band<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">A water bottle<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Laminated weekly schedule</li>\n 	<li class=\"li3\">IMoveFreely fridge magnet<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Pen with phone stylus<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Access to live online iMoveFreely classes<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">Access to recorded online iMoveFreely classes<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">1 month free for any referral<span class=\"Apple-converted-space\"> who subscribes for 3 months or more</span></li>\n 	<li class=\"li3\">1 week free for a video/written testimonial<span class=\"Apple-converted-space\"> </span></li>\n</ul>\n<p class=\"p3\">So now consider what you offer &amp; maybe see how many of these bullet points you already offer but don’t actually ‘list’ as a benefit for your client or potential clients to see</p>\n<p class=\"p3\">I’m quite confident that you already offer at least a few of these but don’t actually list them because you might assume the client knows that you write programmes or will teach them exercises.</p>\n<p class=\"p3\">However listing them like this helps the client PERCEIVE THE TOTAL VALUE. Otherwise they perceive what you do as just one hour of your time. It’s never just one hour though is it?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Can you see what I’ve also added in this goodie bag for client adherence?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Equipment &amp; tools that are reminders i ask them to place in certain positions around their home to remind them to practise their iMoveFreely guidance.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The daily contact could be an automated text or message, that acts as both a reminder of what to do &amp; also an extra feeling of being looked after &amp; valued by you.</p>\n&nbsp;\n<h2 class=\"p3\"><b>Client Cull<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30638 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/afif-kusuma-mv38TB_Ljj8-unsplash-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\n<p class=\"p3\">Rest assured there will be clients who leave when you transition to subscription &amp; increase your prices.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">However they’re the ones who don’t see the value so let them go to make room for the ones who do!<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Focus Group<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">Why not try gathering a focus group of present clients &amp; their friends. Offer some incentive for coming, which could simply be tea &amp; biscuits or maybe a sample class/session/demo/workshop</p>\n<p class=\"p3\">Then be sure to have prepared your questions in advance about pricing, value adds &amp; other ideas.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Let them talk freely, openly discuss the questions &amp; allow present clients to share the things they like about working with you.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">You might do this 2 or 3 times even, or maybe once each year to check in &amp; do your market research.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Perceived Value<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">Now perceived value often isn’t about the money/numbers even though every client will think it is.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">You must be confident that you can deliver results with what you can offer.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It might be that you begin by doubling your fees, then do a 50% discount offer resulting in no change to your income nor what they pay BUT an immediate alteration in perceived value. This also allows for a feeling of getting special treatment when they are offered 50% on this premium subscription service, they will wanna know what they get for paying more ....wouldn\'t you !?</p>\n<p class=\"p3\">Then you can add a time scale to this &amp; maybe even go to 25% discount for loyal members to ‘look after’ them<span class=\"Apple-converted-space\"> BUT you increase the price BEFORE making the limited offer - this way they are still intrigued!</span></p>\n&nbsp;\n<h2 class=\"p3\"><b>Do your research<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">Consider what you’re doing now<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">What you would like to be earning<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Then research &amp; strategise ways to increase value or even perceived value....</p>\n&nbsp;\n<h1>GOOD LUCK!</h1>\n&nbsp;\n\nOR\n\n&nbsp;\n\nEmail us info@biomechanicseducation.com to find out how we can help you to add some seriously great value to your business - Biomechanics Coaching !\n\n&nbsp;\n<h1><a href=\"https://retrain.cimspa.co.uk/\" target=\"_blank\" rel=\"noopener\">P.S Did you know you can REALLY add value to your business through @CIMSPA\'s Retrain to Retain project?</a></h1>','How to add value to your business & charge more','','inherit','closed','closed','','30531-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',30531,'https://biomechanicseducation.com/?p=38622',0,'revision','',0),(38623,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<p class=\"p1\">Brian Tracy is for me, the guru of strategies to manage time. He gives away many of them on his website, his app &amp; in e-books or you can invest in his CDs or books.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">My fizzy brain &amp; flighty attention span make it a challenge to remain focused each day while running a successful education company. <span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Without Tracy\'s advice I’m not sure I could have achieved, nor enjoyed, such productivity.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">My investments into his evidence based models for managing time, my work &amp; goal planning have allowed me to create content that has given me the life I dreamed of, a life that serves me.</p>\nHow would that feel for you?\n\nMaybe you are already there? If so well done, but this blog may not be for you, unless however you still struggle to manage your time or if you just feel like you just never have enough!\n<p class=\"p1\">Let me share a snippet from Brian Tracy with you &amp; how such simple tools, when implemented, literally change the game!</p>\n&nbsp;\n<h1 class=\"p1\">Create a simple system, then stick to it.<span class=\"Apple-converted-space\"> </span></h1>\n<h2>5 Tools &amp; Techniques</h2>\n<blockquote><b><img class=\" wp-image-30596 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-20.23.27-300x229.png\" alt=\"\" width=\"259\" height=\"198\" /><em>1. Use A Time Planner And Create A Master List </em></b>\n\n<em><b>2. Work From A List</b></em>\n\n<em><b>3. Organize By Priority</b></em>\n\n<em><b>4. Time Management Tools And Systems</b></em>\n\n<em><b>5. Organize Your Time</b></em></blockquote>\n&nbsp;\n<ol class=\"ol1\">\n 	<li class=\"li1\">First of all I spent 2 weeks writing down minute by minute literally every single thing I did. Logging which area of my business the task was for. This allowed me to measure &amp; analyse how much time I spent doing what. This extremely enlightening start point proved a few things straight away. How much time I wasted. How much time I REALLY spent in certain roles. Where I was lacking attention.<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li1\">This then allowed me to plan a list of jobs into order of attention, time.</li>\n 	<li class=\"li1\">Putting that list then into order of priority was possible.</li>\n 	<li class=\"li1\">Next I could gather &amp; implement tools &amp; strategies required for both productivity &amp; areas of weakness.<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li1\">This also allowed me to pay attention to &amp; develop a schedule of managed time.<span class=\"Apple-converted-space\"> </span></li>\n</ol>\n<p class=\"p1\">Next I was also able to refine my time management even further. Since I’d measured it I could continue to monitor it &amp; repeat the measure - which I still do periodically.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2>Adding more tools..</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30605 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/carl-heyerdahl-KE0nC8-58MQ-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\nOnce you have the 5 Tools &amp; Techniques in place for monitoring, allocating and measuring you can then add further tools and more detail into your time management.\n\n&nbsp;\n\n<strong>Psychology of Time Management</strong>\n\nBetter understanding your psychology towards time management can help or hinder it. So developing your ability to self reflect and analyse your thought processes is an important practice.\n\nGrab a notebook and regularly write date, what you are thinking including questions but not necessarily feeling the need to answer every question.\n\n&nbsp;\n<p class=\"p1\"><strong>Core Values </strong></p>\n<p class=\"p1\">What is important to you, your business and why? A great book called Your One Word, helps you with this in great detail along worth the reasons why you should. Even after reading the book I was left with 2 words that I endeavour to weave into literally everything I do within my business. It really helps me when it comes to big decisions.</p>\n\n<h1><img class=\"size-medium wp-image-30603 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-20.43.57-198x300.png\" alt=\"\" width=\"198\" height=\"300\" />Biomechanics Education =  INTEGRITY &amp; EMPOWERMENT</h1>\n&nbsp;\n\n<strong>Keep the vision &amp; gain even more clarity </strong>\n\n&nbsp;\n\nHaving that primary aim (see last weeks blog End Goal First) is a vital start point but over time we should add more details &amp; clarity to the vision to allow us to plan, in detail. Ist often the details that can get lost or create such stress for us that seems to be unimportant. However its that attention to detail that makes you and your business stand out.\n\n&nbsp;\n\n<strong>Use \'failure\' as a lesson </strong>\n\n&nbsp;\n\nAll successful business gurus will tell you they failed numerous times before they made it big. Richard Branson is very vocal about embracing failure. While you may think that you would not compare yourself to Branson, let me stop you right there....learn from those who know! They\'re just like you and me, they are human too!\n\n&nbsp;\n<p class=\"p1\"><strong>ALWAYS WRITE PLANS DOWN!</strong></p>\n&nbsp;\n\nThis is SO IMPORTANT! If you leave plans in your head they clutter your thoughts and are much harder (if not impossible) to manage, monitor and control. Your can change them, tweak them, show others, hide them, rewrite them, rearrange them, add to them, look at them and see them differently to how you might see them just in your head.\n\n&nbsp;\n<p class=\"p1\"><strong>Lists OMG I LOVE LISTS!</strong></p>\n&nbsp;\n<p class=\"p1\">Plans are one thing but lists and the ability to tick off jobs well that\'s pure joy! (See point 2 above in 5 tools). Lists allow you to set clear priorities, this helps keep you on track &amp; literally tick off completion of tasks - how satisfying!!</p>\n&nbsp;\n<p class=\"p1\"><strong>Delegation to others </strong></p>\n&nbsp;\n\nThis one is tough when you\'re not earning much yourself BUT WAIT......if you take 4hrs to mow your lawn, but some kid on the street will mow it for £10-20....how much could you earn in those 4hrs you just got back? More than £20? then its worth delegating that job...right!?!?\n\nor\n\nYou hate numbers and always dread going through receipts and accounts, so much so you keep putting that job off to the point where it backs up and you get super stressed and you eventually spend hours and hours trying to catch up.....surely it is much easier to take on a book keeper!!\n\n&nbsp;\n<p class=\"p1\"><strong>Overcome Procrastination </strong></p>\n&nbsp;\n\nThis is really really important when you\'re self employed because you don\'t have a boss checking you got all those little crappy jobs done too. (See Eat The fFog below)\n\n&nbsp;\n<p class=\"p1\"><strong>Digital de-clutter </strong></p>\n&nbsp;\n\n<img class=\"size-medium wp-image-30612 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/sabri-tuzcu-r1EwRkllP1I-unsplash-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" />\n\nLee Havern, CEO of Platinum Training Institute Belfast, delivered a fabulous workshop at one of our member workshop during lockdown, about how to declutter your digital noise! Control interruptions by switching off alerts, batching tasks into tie slots - like when to go on social media &amp; managing your phone similarly.\n\n&nbsp;\n\n<strong>Effective Meetings</strong>\n\n&nbsp;\n<p class=\"p1\">One of my favourite things is to have meetings while out walking instead of inside an office, sitting at desks whenever possible. I try to arrange calls while I am out walking with my headset on too if its feasible. They are often much shorter but far more productive!</p>\n&nbsp;\n<p class=\"p1\"><strong>Organise Your Space </strong></p>\n&nbsp;\n\nHaving a nice clear working space make a huge difference, like the idea that making your ed each morning set us up for a more proactive / productive day.\n\n&nbsp;\n<h1>Finally one of my favourites....</h1>\n<h2></h2>\n<h1 class=\"p1\">Eat that frog!</h1>\n&nbsp;\n\n<img class=\"size-medium wp-image-30610 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/stephanie-leblanc-SVwOposMxHY-unsplash-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\n\nTracy is famous for his analogy of eating frogs &amp; he also proved the efficacy of this concept with companies using the strategy &amp; increasing staff productivity by significant margins. Here I share another of my own experiences...\n\n&nbsp;\n<p class=\"p1\"><b>Having eaten 4 frogs in 2 days I was feeling pretty pleased with myself…</b>&#x1f438;&#x1f438;&#x1f438;&#x1f438;</p>\n<p class=\"p1\"><b>Eating frogs can be a game changer if you are prone to procrastination </b>&#x1f914;</p>\n\n<ul class=\"ul1\">\n 	<li class=\"li3\">&#x1f91c;&#x1f3fc;Do you write lists?<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li3\">&#x1f91c;&#x1f3fc;Do you struggle getting through them?</li>\n 	<li class=\"li3\">&#x1f91c;&#x1f3fc;Do you find yourself picking the ‘nicer’ jobs all the time?</li>\n 	<li class=\"li3\">&#x1f91c;&#x1f3fc;Do you see that ‘big gnarly’ job &amp; keep leaving it?</li>\n 	<li class=\"li3\">&#x1f91c;&#x1f3fc;Do you re-write your list each day but continue to leave that big gnarly job untouched?</li>\n 	<li class=\"li3\">&#x1f91c;&#x1f3fc;Do you convince yourself that you get lots done even though that big gnarly job still hadn’t been started?<span class=\"Apple-converted-space\"> </span></li>\n</ul>\n<p class=\"p3\">&#x1f648;If you said yes to these questions then you &amp; I are prone to procrastinating. However many years ago Brian Tracy taught me an amazing lesson about eating frogs.&#x1f92a;</p>\n<p class=\"p3\">&#x1f60a;That big gnarly job that you just keep putting off, the one that is important, needs doing &amp; yet you can’t bring yourself to even start. It’s like thinking about eating a frog!&#x1f438;</p>\n<p class=\"p3\">Arrrrgghhhh&#x1f61d;</p>\n<p class=\"p3\">&#x270d;&#x1f3fc;Yet if you actually get up &amp; start it before you do anything else each morning…..</p>\n<p class=\"p3\">&#x203c;&#xfe0f;If you eat that frog &amp; get that gnarly job done…..</p>\n<p class=\"p3\">….you might actually realise it’s not so bad or you discover that you feel so much better that it got done!</p>\n<p class=\"p3\">&#x1f438;&#x1f438;&#x1f438;&#x1f438;I’ve had 4 frogs waiting to be eaten<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Then this week I’ve eaten all of them in 2 days!&#x1f91c;&#x1f3fc;&#x1f91b;&#x1f3fc;</p>\n<p class=\"p3\">And guess what….</p>\n<p class=\"p3\">I feel fantastic!!! &#x1f929;</p>\n<p class=\"p3\">Go on...</p>\n<p class=\"p3\">...get up tomorrow</p>\n<p class=\"p3\">&amp;</p>\n<p class=\"p3\">Eat that frog &#x1f438;!!!</p>\n&nbsp;\n<h1>How are you enjoying this advent series?</h1>\n&nbsp;\n<h2><em>Why not email me &amp; let me know if any of these posts are helping? </em></h2>\n<h2><em>Email me your experience if they have helped? </em></h2>\n<h2><em>What more we can do, create, write about to help you and your business?</em></h2>\n<h2><em>info@biomechanicseducation.com</em></h2>\n<h2></h2>\n<p class=\"p3\">Reference links</p>\n<p class=\"p3\"><a href=\"https://www.briantracy.com/blog/time-management/time-management-tools-and-techniques-time-planner-master-list/\" target=\"_blank\" rel=\"noopener\">Simple system  - 5 time management tools </a></p>\n<a href=\"https://www.amazon.co.uk/Your-One-Word-Powerful-Creating/dp/014310909X/ref=asc_df_014310909X/?tag=googshopuk-21&amp;linkCode=df0&amp;hvadid=310816411121&amp;hvpos=&amp;hvnetw=g&amp;hvrand=5546951103569016778&amp;hvpone=&amp;hvptwo=&amp;hvqmt=&amp;hvdev=c&amp;hvdvcmdl=&amp;hvlocint=&amp;hvlocphy=9046404&amp;hvtargid=pla-404289615270&amp;psc=1&amp;th=1&amp;psc=1\" target=\"_blank\" rel=\"noopener\">Your One Word </a>','Want to learn how to manage time...?','','inherit','closed','closed','','30528-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',30528,'https://biomechanicseducation.com/?p=38623',0,'revision','',0),(38624,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<p class=\"p1\"><strong>Michael E Gerber</strong> stated in his famous book, <strong>The E-Myth Revisited</strong>,</p>\n\n<blockquote>\n<p class=\"p1\"><i><img class=\"size-medium wp-image-30588 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-08.12.45-202x300.png\" alt=\"\" width=\"202\" height=\"300\" />“Before you can determine what that role [of your business] will be, you must ask yourself these questions:</i></p>\n\n<ul class=\"ul1\">\n 	<li class=\"li1\"><i>What do I value most?</i></li>\n 	<li class=\"li1\"><i>What kind of life do I want?</i></li>\n 	<li class=\"li1\"><i>What do I want my life to look like, to feel like?</i></li>\n 	<li class=\"li1\"><i>Who do I wish to be?</i></li>\n</ul>\n<p class=\"p1\"><i>Your PRIMARY AIM is the answer to all these questions.”</i></p>\n</blockquote>\n&nbsp;\n<h2>The Entrepreneurial Seizure</h2>\n&nbsp;\n\nWhen becoming self employed, (which so many of us are or have been) we imagine being in full control of our lives, free to choose our hours of work, what time we wake up, how much we charge and that just because everyone of our loved ones said we are good at what we do that we would succeed and have clients queing at the door.\n\nYet we very soon discover we underestimate the fact that we are then choosing to, not only be a coach or trainer but also a manager, marketer, sales person, accountant, authour, digital media manager &amp; designer, amongst other things.\n\nWe find ourselves working split shifts, getting up at all hours, working until late to accomodate the client\'s availability along with getting our books done, programmes written &amp; of course finding time with family.\n\nAs we spend hours trying to understand cash flows, P&amp;L\'s, tax, allowances, legalities, insurance cover, clickfunnels, facebook ads, the meaning of S.E.O, we discover that most of our time is doing jobs we hate or don\'t really understand.\n\nOur confidence reduces along with our hourly rate and we wonder why on earth we decided to become self employed!?!?\n\nGerber suggests you experienced an entrepreneurial seizure!\n\n&nbsp;\n<h2>The end goal comes first....</h2>\nThe primary aim we should have started with is the end goal &amp; the good news is you can try this right<img class=\"size-medium wp-image-30589 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/armand-khoury-Ba6IlmAzl-k-unsplash-212x300.jpg\" alt=\"\" width=\"212\" height=\"300\" /> now, its not too late!\n\nSo go back to the beginning of this page, answer those questions &amp; start to look at how well your business is designed to take you in that direction.\n\nIf you don\'t have a measure of where you are now, to compare to where you are trying to get to how can we plan the journey?\n\n&nbsp;\n\nGo on.....start writing!\n\n&nbsp;\n<h2 class=\"p3\"><b>Your Strategic Objective</b></h2>\n&nbsp;\n<p class=\"p1\">Once you better understand your primary aim, your end goal, this feeds into what you need your business to do for you. The clearer that picture the easier it is to plan!<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Create a clear contract of ‘employment’ for yourself that makes it clear:</p>\n\n<ul class=\"ul1\">\n 	<li class=\"li1\">What your responsibilities are<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"li1\">What the rewards are<span class=\"Apple-converted-space\"> </span></li>\n</ul>\n<p class=\"p1\">By creating a statement about your vision, purpose, business in this way you are developing your strategic objective.</p>\n&nbsp;\n<h2>Add this book to your xmas list for way more detail on planning your future!!</h2>\n&nbsp;\n<h2><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Would you like help developing your primary aim by becoming a Biomechanics Coach in 2022?</a></h2>\nHave you been following us for AGES feeling unable to afford our unique training courses?\n\nDid you know we support ALL of our Biomechanics Coach learners to charge more and get a return on their investment with us?\n\nWhy not <a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">GET IN TOUCH HERE</a>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-30437 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/11/IMG_1395-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />','End goal first....','','inherit','closed','closed','','30506-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',30506,'https://biomechanicseducation.com/?p=38624',0,'revision','',0),(38625,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<p class=\"p3\">Why am I making this comparison?</p>\n<p class=\"p3\">Well there are people on the internet who post that there are right &amp; wrong ways to do moves simply because of the name they have been given.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">What I aim to do in this Juicemail is clarify the naming of movements does NOT necessarily make ANY VARIATION WRONG OR BAD OR DAMAGING.</p>\n<p class=\"p3\">Variation is GOOD!<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The body LOVES it!<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">However if your clients body is unprepared<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">OR</p>\n<p class=\"p3\">A movement is misunderstood, it may not be performed as optimally as it could for the benefit/goal desired.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">So while the naming of moves can be helpful for lay people to remember their homework, it can also be detrimental for some people thinking there are only certain ways to perform certain named exercises.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<h2 class=\"p4\"><b>Where am I going with this?</b></h2>\n&nbsp;\n<p class=\"p3\">Look if it were up to me I would encourage all professionals to clarify joints actions in the description for clarity as oppose to suggesting you cannot do a windmill unless its done precisely their way.</p>\n<p class=\"p3\">Shall I explain more….?</p>\n<p class=\"p3\"><a href=\"https://www.youtube.com/watch?v=6i6Btj6Y3k8\" target=\"_blank\" rel=\"noopener\">Coach Vaughn</a> sounds very frustrated by the people he’s following or watching on social media who are doing The Triangle with a KG and calling it a Windmill….</p>\n<img class=\"alignnone size-medium wp-image-30502 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-11-26-at-15.08.58-300x143.png\" alt=\"\" width=\"300\" height=\"143\" />\n<p class=\"p3\">Now I understand that he cares about his craft &amp; he’s obviously technically very good at breaking down the move he calls The Windmill so check his video out for that as its really quite helpful!</p>\n<p class=\"p3\">BUT</p>\n<p class=\"p3\">He is comparing it to a move he calls The Triangle (from Yoga) yet it seems he doesn’t understand the technique required for what Yogi’s call a Triangle. Since it doesnt ‘require’ spine lateral flexion unless the individual is limited in their hip mobility/flexibility. So the image he’s using is (in my opinion) for provocation rather than a technical comparison.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Coach Vaughn…I get it buddy, grabbing attention often takes provocation &amp; I loved your Windmill break down video!</p>\n<p class=\"p3\">Anyhoo….</p>\n&nbsp;\n<h1 class=\"p4\"><b>The Windmill</b></h1>\n&nbsp;\n<p class=\"p3\">This is an interesting movement that shows why it was named such after those tall buildings that have spinning blades that rotate at the top.</p>\n<p class=\"p3\">The body representing the building<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The arms representing 2 blades</p>\n<p class=\"p3\">Most often the performance is seen being performed with a Kettle bell in the top hand. The Windmill’s exact origin I have so far been unable to unravel however…..</p>\n<p class=\"p3\"><i>“Kettlebell swinging and juggling was a popular “folk exercise” among Russian farming communities in the nineteenth and early twentieth centuries, but it wasn’t until 1948 that it became an official sport” stated Nick <span class=\"Apple-converted-space\">  </span>English about Victoria Felkar’s Phd research into the historical perceptions of the muscular body (</i><a href=\"https://barbend.com/kettlebell-history/\"><span class=\"s2\"><i>https://barbend.com/kettlebell-history/</i></span></a><i>)<span class=\"Apple-converted-space\"> </span></i></p>\n&nbsp;\n<h2 class=\"p4\"><b>Windmill Technique<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">Most descriptions of the technique are along these lines…..</p>\n<p class=\"p3\">….lifter stands feet apart, KB in one hand with that arm raised above the head with palm forwards. Bottom hand in-front of the opposite thigh, palm forwards. While looking up at KB, the lifter hip hinges slightly off to the side either with legs straight or a variation is with the front knee slightly bent. Going to a range that mobility &amp; flexibility allow while sliding the bottom palm down the front of the leg.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The spine will require rotation as the lifter descend to maintain a vertical KB/arm position while keeping a stiff trunk, then maybe a pause at the bottom, prior to ascending the same path back up.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">We will come back to this move in more detail in a moment, but first….</p>\n&nbsp;\n<h2 class=\"p4\"><b>Triangle Technique<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">The Triangle is a similar movement from yoga that looks very similar. Also like a tall building with 2 blades that rotate around the body.</p>\n<p class=\"p3\">This movement is focused on improving mobility &amp; flexibility through the hips &amp; spine.</p>\n<p class=\"p3\">Performed with a much wider stance &amp; more frontal plane (lateral) movement rather than a hip hinge.</p>\n&nbsp;\n<h2 class=\"p4\"><b>So what?</b></h2>\n&nbsp;\n<p class=\"p3\">Both moves are shown in the video here (or my interpretations anyway!) &amp; both are demonstrated without additional loading so we compare like for like in this instance.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The windmill as mentioned earlier, is most commonly seen performed with a KB in the top hand &amp; can also be done with a KB in the bottom hand or both!</p>\n<p class=\"p3\">The triangle is not usually loaded at all other than body weight &amp; may actually be held for a few ‘breaths’.</p>\n&nbsp;\n<h2 class=\"p4\"><b>And?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">So why do one or the other?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">The intrinsic biomechanics difference between the 2 examples (if done with the same load) is where the emphasis is focused based on the lengths of the levers, the joint angles &amp; the joint ranges.</p>\n<p class=\"p3\">Firstly the windmill has a narrower stance. This reduces the base of support (making it harder) but is a more familiar leg width than compared to the triangle (making it easier).</p>\n<p class=\"p3\">The windmill can also have a slight bend in the front knee. This reduces tension on the hamstring &amp; the nervous system (sciatic nerve in this particular area) making it easier on these areas. This also drops the hip slightly on that side meaning there is less range of motion required from the lateral flexors on the opposite side of the trunk, making it easier again.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">However where this move differs most I think from the Triangle is that the hip is pushed outside the midline. This is what loads the abductors in particular.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It does this by increasing the hip angle/ range, &amp; therefore load, to focus the attention into that area. This obviously makes it harder than the triangle on this particular area of the body.</p>\n&nbsp;\n<h1 class=\"p4\"><b>The Triangle</b></h1>\n&nbsp;\n<p class=\"p3\">The Triangle with a much wider stance which should make it easier but it’s just not as ‘familiar’ a position in terms of proprioception &amp; the joints lose their surface congruency above the pull of gravity from below, thus making it harder.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It has both legs straight meaning as your client tips into the movement they will require more flexibility &amp; mobility in the hips &amp; nervous system to achieve the same range of motion as compared to the Windmill. This also makes it harder.</p>\n<p class=\"p3\">Finally the hips stay relatively central under the trunk making it more balanced &amp; symmetrical in the lower body.</p>\n<p class=\"p3\">But the trunk stiffness required to control the longer lever while the centre of gravity shifts means the hip abductors aren’t loaded in the same way as during the windmill.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">However the load on the spine lateral flexors increases quite a bit.</p>\n<p class=\"p3\">Making it feel more challenging in the trunk.</p>\n&nbsp;\n<h2 class=\"p4\"><b>How do I choose the one for my client?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p3\">If you want to just pick one for your client then consider their limitations.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Assess their biomechanics &amp; consider the areas you wish to strengthen.</p>\n<p class=\"p3\">Take into account your system of approach - ie which comes first when programming hip abductors or spine lateral flexors?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">And why?<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Then choose the variation that fits.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Or<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Simply ask them to try both</p>\n<p class=\"p3\">Assess their movement quality<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">Then decide.</p>\n\n<h1 class=\"p1\"><b>KEEP IT SIMPLE!<span class=\"Apple-converted-space\"> </span></b></h1>','The Windmill V’s The Triangle ','','inherit','closed','closed','','30500-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',30500,'https://biomechanicseducation.com/?p=38625',0,'revision','',0),(38626,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<p class=\"p3\">We live in such a fast paced world that is literally full of distractions.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">We view, or hear, thousands of attention grabbing text, images, videos &amp; ditties on a wide variety of screens, platforms, mediums &amp; buildings.</p>\n<p class=\"p3\">We wish we had more time<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">We wish for something different<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p3\">It’s in our nature to constantly strive for a different life, a better life, a perfect day....maybe every day?</p>\n<p class=\"p3\">We can very often feel like we are never going to get to that perfect vision we have of living our life the way we want to.</p>\nWe think everyone else is richer, happier &amp; more successful....\n\n&nbsp;\n<h2 class=\"p4\"><b>But is this actually true?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n\n<img class=\"alignnone size-medium wp-image-30487 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/paola-aguilar-O-FR79xcGh8-unsplash-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\n<p class=\"p3\">A mentor once said to me ‘<em>challenge everything</em>’ &amp; this post is to suggest that we might want to consider trying the same thing in all aspects of our lives</p>\n&nbsp;\n<h3 class=\"p3\"><em><b>\"Losing everything</b><span class=\"Apple-converted-space\"> was the best thing that ever happened to me\"</span></em></h3>\n&nbsp;\n<p class=\"p3\">In 2013 I lost almost everything I had ever earned &amp; worked for. My life savings, my career &amp; almost my house.<span class=\"Apple-converted-space\"> </span></p>\nLiving on \'no frills\' tinned food, cancelling all the direct debits that I could, getting rid of all my debt using all of my savings &amp; not going out or eating out felt devastating.\n\nBut having no job I had lots of TIME.\n\nSo I started being more creative, making gifts for birthdays instead of buying them, creative cooking was essential due to the lack of income. I started walking to visit family &amp; friends locally to save fuel &amp; actually having all this time meant I was actually able to think, slow down &amp; consider \'stuff\'.\n\nI was asking myself those big questions:\n<ul>\n 	<li>What was my purpose?</li>\n 	<li>What made me happy?</li>\n 	<li>What did I enjoy doing?</li>\n 	<li>What would a perfect day look like...to me?</li>\n</ul>\n&nbsp;\n<h2>What is your purpose?</h2>\n&nbsp;\n\n<img class=\"alignnone size-medium wp-image-30488 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/joshua-earle-ICE__bo2Vws-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\nHaving so much time &amp; freedom with no job started to feel more liberating than stifling as I realised my quality of life was unchanged, in fact many things has improved! Then once I knew what I wanted to do I began to work on my new business, from scratch, no investment, no overdrafts, no loans!\n\nIt felt great!\n\nBeing in a position to get out of bed when I wanted in the mornings did not result in me lying in bed, I would jump out of bed with hundreds of ideas for my plan.\n\nI stopped thinking about what I did not have because I was driven by passion &amp; purpose.\n\nMy schedule was simple because it was up to me what I did, which also meant I could spend time listening or talking to people, friends, family &amp; even customers &amp; I really really enjoyed those conversations.\n\n&nbsp;\n<h2>Worst or best experience?</h2>\n&nbsp;\n\nThis resulted in the realisation that losing everything was the best thing to happen to me because it allowed me to compare the experiences of living with a really good income to literally no income.\n\nGoing from spending money easily, having lots of <em>things</em> \'on credit\' because I wanted stuff now &amp; paying interest wasn\'t a concern, being expected to be places at certain times, worrying about being judged on the gifts I gave based on what I was earning, stressed about the amount of outgoings I had on credit cards etc, being constantly busy, non stop, exhausted doing lots of things everyday ALL THE TIME, unable to think!\n\n...to the experience of having no job, no income, no debt, no stress, no restrictions &amp; the freedom to think &amp; realise what it really was that made me happy.\n\nHaving lots of money was proven to be more stressful or at least at that point in my life it did anyway. Having a good job, a lot going on, a busy lifestyle left me feeling like I was always trying to be somewhere else, doing something else, with someone else, never quite succeeding....I didn\'t know what at, earning even more money I guess!?!?\n\nHaving nothing changed some things but the important stuff was still there, my quality of life &amp; self respect actually began to improve.\n\n&nbsp;\n<h2>The Perfect Day</h2>\n&nbsp;\n\n<img class=\"alignnone size-medium wp-image-30489 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/frank-mckenna-OD9EOzfSOh0-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\nAs I set up my new company I had written a lot of my thoughts down &amp; one thing I did was to write down what a perfect day would look like to me.\n\nGuess which period of my life was most fulfilling...before or after losing everything?\n\nGuess which period gave me more days that felt like perfect days?\n\nYes, losing everything gave me a gift. The gift of realisation that I was indeed living far more perfect days now than I was before I had lost everything. My days were now more fulfilling, fun, challenging, interesting, exciting, calm &amp; yet full.\n\nNow I am not suggesting for a moment that you need to lose everything to have the experience I did. in fact this is the reason I wanted to share such a personal story with you, in the hope that it avoids something like that if you are in a fast paced lifestyle that feels like you\'re never gonna get <em>there</em>....wherever <em>there</em> is!\n\nHowever what I am suggesting is that you may not actually be that far away from the dream right now. If we don\'t take stock, reflect &amp; consider what we have rather than what we do not then we may miss this very important lesson.\n\nIts good to dream, plan, have a vision &amp; purpose but we should try not to let the speed of life stop us from the experience of living perfect days every day.\n\n&nbsp;\n\n<img class=\"alignnone size-medium wp-image-30491 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/sri-jalasutram-e2U-VYSY7ro-unsplash-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" />\n<h2 class=\"p3\">P.s. Let me share a old story that my buddy Mark tweaked for us &amp; he made super relevant to sum up this Juicemail enjoy!<span class=\"Apple-converted-space\"> </span></h2>\n<h1 class=\"p1\" style=\"text-align: left;\"><a href=\"https://www.facebook.com/tfimblog/photos/a.1196648380432297/1197630237000778/?type=3\" target=\"_blank\" rel=\"noopener\">READ MARK\'S VERSION HERE then come back....</a></h1>\n&nbsp;\n<h2>Grab a pen &amp; paper....!</h2>\n<p class=\"p3\">Enjoy the moment you’re in<span class=\"Apple-converted-space\"> right now &amp; s</span>tart writing…..the Perfect Day in YOUR mind right now</p>\n\n<ul>\n 	<li>Where would you be?</li>\n 	<li>Who would you be with?</li>\n 	<li>What time would you wake?</li>\n 	<li>What would you wear?</li>\n 	<li>What would you eat?</li>\n 	<li>What would you do?</li>\n</ul>\nKeep writing, keep going.....see what that Perfect Day looks like genuinely, realistically &amp; notice how far, or near, you are to it....then maybe share it on social media with a tag to us!\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h1><b class=\"ac-designer-copy\"><span class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Why not share your Perfect Days on instagram...use #myperfectday @biomechanics_education</span></span></b></h1>\n&nbsp;','The Perfect Day','','inherit','closed','closed','','30439-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',30439,'https://biomechanicseducation.com/?p=38626',0,'revision','',0),(38627,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<h2 class=\"p1\">Also known as the TGU this beauty is in my top 5 fav movements.</h2>\n&nbsp;\n<h2>Why?....READ ON.....</h2>\n&nbsp;\n\nhttps://youtu.be/JnOIuIfMVQM\n<p class=\"p1\">Have a watch of this video &amp; notice the various aspects that the body can benefit from in one simple ‘flow’.</p>\n\n<ul class=\"ul1\">\n 	<li class=\"li1\">Trunk stiffness &amp; control is challenged.</li>\n 	<li class=\"li1\">Lower limb joint range, stability &amp; strength are challenged.</li>\n 	<li class=\"li1\">Upper body stability, ranges &amp; some degree of strength is challenged.</li>\n 	<li class=\"li1\">Coordination &amp; proprioception is challenged throughout.</li>\n</ul>\n&nbsp;\n<h2 class=\"p3\"><b>Ok so what?</b></h2>\n&nbsp;\n<p class=\"p1\">Imagine you are young &amp; wish to improve these elements for sport, games &amp; play.</p>\n<p class=\"p1\">Now imagine you are an adult &amp; you wish to avoid (or improve) little aches &amp; niggles from your lifestyle or your fitness &amp; aesthetics.</p>\n<p class=\"p1\">Then imagine you’re in your older years &amp; you want to be able to get up from the floor should you happen to fall.</p>\n&nbsp;\n<h2 class=\"p3\"><b>And?</b></h2>\n&nbsp;\n<p class=\"p1\">Now imagine a TGU with a weight in that top hand….imagine the effects of that load on the body….imagine the added challenge….</p>\n<p class=\"p1\">Then imagine the TGU slower…..faster….repeated from one side to the other for a few rounds, many rounds, less weight, more weight….</p>\n<p class=\"p1\">We could even consider exaggerating angles in certain positions, holding the ones we wish to focus on….</p>\n&nbsp;\n<h2 class=\"p3\"><b>The joy of movement<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p1\">This is the joy of movement (for me anyway) coming up with variations, understanding my clients unique biomechanics, considering loads, challenges, their goals &amp; how to make them all fit together for purpose.</p>\n&nbsp;\n<h2 class=\"p3\"><b>Ok what now?<span class=\"Apple-converted-space\"> </span></b></h2>\n&nbsp;\n<p class=\"p1\">So as a movement trainer/coach we should probably learn simple ways to analyse movement, learn to assess our client’s biomechanics, then apply these ideas into our programme design.<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">All this while trying not to feel limited by what other (maybe more confident) PTs say is the only way a movement MUST be done….</p>\n<p class=\"p1\">Just be sure you know WHY you’re coaching a movement the way you are by considering your justifications.</p>\n<p class=\"p1\">When you pick an exercise ask yourself “why did I choose that one?”</p>\n<p class=\"p1\">“Why did I choose those reps/sets/speeds/loads?”</p>\n<p class=\"p1\">If you KNOW the answers why YOU made those choices, based on the fact YOU KNOW YOUR CLIENT, then those who don’t, have no right to tell you otherwise.</p>\n<p class=\"p1\">Be clear<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Be confident<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Keep it simple<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Invest in learning (know that it never ends)</p>\n<p class=\"p1\">Justify every decision you make - even to yourself<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Talk to different professionals from different schools of thought<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Stay open minded<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">Know that everyone doubts themselves at times too<span class=\"Apple-converted-space\"> </span></p>\n<p class=\"p1\">But most of all….</p>\n<p class=\"p1\">Love what you do &#x2764;&#xfe0f;</p>\n<p class=\"p1\">Join our fast growing team of Biomechanics Coaches &#x1f44a;&#x1f3fc;</p>\n<p class=\"p1\">We want people like you who care, want to make a difference but would like an awesome community to lean on &amp; offer support!</p>\n&nbsp;\n\n<hr />\n\n<h1><em>We help change lives.....THROUGH MOVEMENT EDUCATION....Join us!</em></h1>\n<h1></h1>\n<img class=\"alignnone size-medium wp-image-30437 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/11/IMG_1395-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" />\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">READ MORE ABOUT THE Diploma in Biomechanics Coaching 2022!</a></h1>','The Turkish Get Up','','inherit','closed','closed','','30431-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',30431,'https://biomechanicseducation.com/?p=38627',0,'revision','',0),(38628,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<span class=\"\">Today is</span><span class=\"\"> national TAKE A HIKE DAY!</span><br class=\"ac-designer-copy\" /><span class=\"\">What a </span><span class=\"\">perfect</span><span class=\"\"> </span><span class=\"\">opportunity</span><span class=\"\"> to tell a client ​just that!?!?</span><br class=\"ac-designer-copy\" /><span class=\"\">​</span><br class=\"ac-designer-copy\" /><span class=\"\">OK OK OK yes I hear ya, we could interpret this in at least 2 ways....</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"\">Yes client cull can be an interesting activity and necessary </span><span class=\"\">sometimes</span><span class=\"\"> right!?!?!?​ Referring away</span><span class=\"\"> the \'deadwood\' clients who just want YOU to FIX THEM or make them lose weight overnight! Usually the person who complains most </span><span class=\"\">about</span><span class=\"\"> how much you charge too</span><span class=\"\">..</span><span class=\"\">​</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"\">However this weeks Juicemail is more about</span><span class=\"\"> telling some clients to take a break, go away </span><span class=\"\">to</span><span class=\"\"> walk or hike for the day which can be some of the least technical but best advice we give..</span>\n\n&nbsp;\n<h1>\'Get Up\' by James Levine</h1>\n&nbsp;\n\n.....is a strong recommendation for a read or listen and he like us shares the concept of N.E.A.T Calories burn. In fact he tested in one of his labs the results of certain activities on calorie expenditure.\n\nNON\n\nEXERCISE\n\nACTIVITY\n\nTHERMOGENESIS\n\nIs one of 3 ways we burn calories but its also one of the easiest to encourage our clients to understand and therefore tap into both consistently, regularly and easily. It is how taking a hike can not only help clients to burn more calories but also to move more freely.\n\nIts gentle or strong\n\nIts slow or fast\n\nIts short or long\n\nIt allows our client to choose how they burn more NEAT calories while pumping energy and fluid through their integrated system of muscles, bones and nerves with the added bonus of seeking beautiful scenery that isnt on the TV, phone or laptop!\n\nIt can also be done with loved one, talking, opening up conversations and can end with a sense of achievement.\n\n&nbsp;\n<h1>Never underestimate</h1>\n&nbsp;\n\nAt Biomechanics Education we teach a very complex subject but we also remind our coaches regularly about simplifying their technical knowledge into \'client speak\'\n\nThe value of educating clients on the value of walking, hiking, NEAT calories and taking time out from the screens.\n\nClients value your knowledge but they ALWAYS value being able to simplify the tsk at hand, the journey to the goal and simple ways to burn more calories and move more freely!\n\n&nbsp;\n<h1>Why Not?</h1>\n&nbsp;\n\nSo why not simply challenge your client this week to go away, take a hike and walk more, walk freely and take a break from their screens!?\n\n<hr />\n\n&nbsp;\n<h1><em>We help change lives.....</em></h1>\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-30276\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/11/Screenshot-2021-11-16-at-12.25.26.png\" alt=\"\" width=\"1976\" height=\"738\" />\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">SAVE £479.40p</a> by booking your place on any 2022 <a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Diploma in Biomechanics Coaching</a></h1>\n<h1>BEFORE Dec 1st 2021</h1>\n<ul>\n 	<li>Why not join us for a learning experience like no other?</li>\n 	<li>Find out how simple this complex subject \'intrinsic biomechanics\' can be in application.</li>\n 	<li>Join our expanding community &amp; be a part of something really meaningful</li>\n 	<li>Gain skills, confidence, knowledge, friends, a multidisciplinary team around you and of course VERY HAPPY CLIENTS!</li>\n</ul>\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">JOIN US &amp; CLICK HERE &lt;&lt;</a>','Would you like to know when, and how, to tell your client to GO AWAY…..?','','inherit','closed','closed','','30273-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',30273,'https://biomechanicseducation.com/?p=38628',0,'revision','',0),(38629,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<div style=\"text-align:center;\">\nhttps://youtu.be/3MYH7mc7Aes\n</div>\n\nTeaching clients to take advantage of a screen break by trying this little iMoveFreely flow to improve upper body movement, stability &amp; control :\n<div class=\"\"></div>\n<div class=\"\">Pec Minor is responsible for scapular protraction and can become inhibited by our technology influenced lifestyles. Rather than simply stretching this small muscle why not try this M.E.T (muscle energy technique) to improve its movement quality first then…<u class=\"\"><b class=\"\">20% effort 20 sec isometric hold x 2 sets </b></u></div>\n<div class=\"\"></div>\n<div class=\"\">Strengthening the retractors, the antagonistic movement, afterwards takes advantage of the law of reciprocal inhibition to improve the strength ratios around the shoulders, then…..<b class=\"\"><u class=\"\">could add weight here if needed for strength reps and sets relevant to the individual </u></b></div>\n<div class=\"\"></div>\n<div class=\"\">Strengthening the pec minor / protractor group next makes this a home win in terms of programmes design based on science, logic and function and all round upper body movement quality! <u class=\"\"><b class=\"\">This video gives 3 options at different levels, increasing the load by moving the knees further apart from the hands - choose the best one you think for your client blog with the appropriate reps and sets for their level</b></u></div>\n<div class=\"\"></div>\n<div class=\"\"><em>GO ON! </em></div>\n<div class=\"\"><em>TRY IT WITH YOUR CLIENT’S </em></div>\n<div class=\"\"><em>LET THEM TELL YOU HOW THEY FEEL</em></div>\n&nbsp;\n\n<hr />\n\n<h1>Would you like to become an <a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/\" target=\"_blank\" rel=\"noopener\">iMoveFreely Instructor</a>?</h1>\nREAD MORE &gt;&gt; <a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/\" target=\"_blank\" rel=\"noopener\">HERE</a>\n<div></div>\n<div style=\"text-align: right;\"></div>','Give your client\'s an excuse to stop work.....','','inherit','closed','closed','','30198-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',30198,'https://biomechanicseducation.com/?p=38629',0,'revision','',0),(38630,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<h4><span class=\"ac-designer-copy\"><sub class=\"ac-designer-marked-selection ac-designer-copy\">Human anatomy can be so complex and creating interesting, engaging training plans to be fit for purpose can often feel challenging because of it. Clients can or can\'t do certain things with their bodies and we are constantly questioning why is that!?</sub></span><sub class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Understanding the WHYS rather than the WHATS exposes some of this complexity but is also key to developing strategies for working with the diversity of our client\'s bodies.</span></sub></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">However the more I have studied human biomechanics, the more I learn, the deeper my comprehension goes, the more I have discovered simplifying things is far more helpful in application.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have more power than we think to shape our client’s health destiny. The secret is simply to understand movement and committing to gain as many tools/skills as we can to improve it! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Considering whole body function in simple terms…. </span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Walking</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Squatting</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Pulling</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Pushing</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Bending </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Lifting </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Carrying </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Running</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Encouraging our clients to aim to ‘exercise’ less and move more. Even educating clients about cross training the eyes with different views to move our eye muscles through different ranges of motion when sitting at a desk/screen for many hours. Those ciliary muscles superior, lateral, medial rectus &amp; superior, inferior obliques need a variety of ranges of motion too!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Educating clients about how we become ‘cast’ into shoes, chairs and cars and we experience smooth level ground so much that anything beyond these feels tough. Deliberate movement excuses and variability in terrain can impact considerably on their bodies if consistently considered over time.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Teaching them that fixed hip /spine geometry with gravity applying a force down into those sitting muscles against the office chair in itself isn\'t an issue but for long periods on a regular basis is likely to result in their body complaining with danger signals through those nociceptors - resulting in pain or aches!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Letting them know that Myokines are activated when we strengthen muscles and they produce an anti-inflammatory response to fight illness. So helping clients to appreciate that muscle strengthening is way more than for aesthetic purposes and is in fact an anti inflammatory system. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet also confirming that we recognise it can be a challenge to go against our culture, those around us, furniture and technology that consistently makes life EASIER…..which is not necessarily for the better….so keeping things simple with these…..</span>\n\n&nbsp;\n<h2><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\"><b>8 Things To Remember:</b></a></h2>\n&nbsp;\n<ol>\n 	<li><span style=\"font-weight: 400;\"> ‘Comfort’ is feeling fully supported but too much of it can gradually result in low muscle tone</span></li>\n 	<li><span style=\"font-weight: 400;\"> Movement is compulsory!</span></li>\n 	<li><span style=\"font-weight: 400;\"> Tissue tolerance and load management is required for a healthy body </span></li>\n 	<li><span style=\"font-weight: 400;\"> Pain can simply be a signal to move differently or more or with more variety</span></li>\n 	<li><span style=\"font-weight: 400;\"> Your body is a master of compensation and hides issues well!</span></li>\n 	<li><span style=\"font-weight: 400;\"> Naturally we are designed to reserve energy, we must fight it!</span></li>\n 	<li><span style=\"font-weight: 400;\"> Lifestyle ‘solutions\' are creating a more sedentary lifestyle, we should challenge it!</span></li>\n 	<li><span style=\"font-weight: 400;\"> The above list is super simple but not necessarily easy to implement, urging them to NOT follow the crowd...be a chair rebel!</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Exercise reps and sets can be helpful and allow us to measure, monitor and control movement programming. Yet we need more than this to really understand our clients movement limitations and causes of modern ailments and complaints.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Keeping things simple, using assessments and benchmarks to evaluate your clients will help them appreciate what you can offer. Knowling, with confidence, what to do at any given moment for each and every client who comes with their various injuries, complaints, aims, goals and desires to move more freely and with less pain would be a dream right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is exactly what we have helped other trainers and coaches just like you to do for almost 2 decades. With 2022 just around the corner and particularly if you have been following us for a while and thinking about attending our workshops this Juicemail is for you!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are looking for a course that changes the game for you and your clients by giving you extensive knowledge, fully supported inclusive learning experience &amp; a sense of being part of something bigger rather than feeling like you are struggling alone, then keep reading!</span>\n\n&nbsp;\n<h2><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\"><b>Diploma in Biomechanics Coaching 2022</b></a></h2>\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-28328\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1709\" />\n\n<span style=\"font-weight: 400;\">Helping our clients understand their bodies, why they hurt &amp; how they can improve unwanted sensations resulting in ‘modern ailments’ has become an expectation for movement practitioners. Yet we feel ill equipped from our basic training to assess neuro-muscular skeletal function. We can feel we are lacking during consultations or while writing programmes, right!? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We will teach you how to systematically assess, programme, monitor &amp; empower your clients to move more freely &amp; with less pain. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">&#x2705; Learn 43 physical assessments </span>\n\n<span style=\"font-weight: 400;\">&#x2705; Gain a deeper understanding of the 3 subsystems &amp; intrinsic anatomy </span>\n\n<span style=\"font-weight: 400;\">&#x2705; Know how to test for muscle spasm, nerve tightness &amp; joint ranges </span>\n\n<span style=\"font-weight: 400;\">&#x2705; Develop your skills in programme design using the unique but wonderfully simple iMoveFreely programme </span>\n\n<span style=\"font-weight: 400;\">&#x2705; Learn how &amp; when to prescribe muscle energy techniques, nerve mobilisations &amp; pure joint mobilisations</span>\n\n<span style=\"font-weight: 400;\">&#x2705; Discover how to take advantage of the law of reciprocal inhibition for programme design </span>\n\n<span style=\"font-weight: 400;\">&#x2705; Gain immediate access to a multidisciplinary team for those tricky clients </span>\n\n<span style=\"font-weight: 400;\">&#x2705; Join this industry changing team of practitioners who go beyond professional &amp; set the bar in high quality service that allows them to charge more than the other PT’s</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-27304\" src=\"https://biomechanicseducation.com/wp-content/uploads/2018/02/IMG_1199-scaled-1.jpeg\" alt=\"\" width=\"2560\" height=\"1920\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">&#x1f4cd;We need passionate trainers &amp; coaches who actually care about their communities health </span>\n\n<span style=\"font-weight: 400;\">&#x1f4cd;We want individuals who want to be part of a multidisciplinary team sharing ideas &amp; skills </span>\n\n<span style=\"font-weight: 400;\">&#x1f4cd;Let us help you know your limits while gaining more clients </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">IS THIS YOU?</span>\n\n<span style=\"font-weight: 400;\">Yes? </span>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">CLICK HERE QUICK we are already almost fully booked in the first half of 2022!</span></a>\n\n&nbsp;','Keeping it simple with 8 things to remember!','','inherit','closed','closed','','30099-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',30099,'https://biomechanicseducation.com/?p=38630',0,'revision','',0),(38631,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','One thing we are told in business is that we should seriously consider delegating the jobs we would rather not do or that we don\'t feel we\'re the best at! Now I have enjoyed every job I have required to run Biomechanics Education but I also recognise when I need to create more time in my schedule by delegating work out.\n\nSo bring in BETH! Out amazing new team member &amp; Digital Marketing Manager\n\nThis is her introduction to you so you know who is now creating our exciting content with me.....\n\n<em><span class=\"ac-designer-copy\">Hey everybody!<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Let me introduce myself.....I am Beth &amp; Biomechanics Education\'s creative &amp; digital media manager.</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">So.. a little bit about myself...</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">At 22 years old I have just graduated from university with a 2:1 in Equine Performance Science. I was extremely surprised at the result to be honest, because, let’s just say, I was a uni student, working from home!</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">It took me a while to figure out what my career interests were at 19yrs, I was following my equestrian interests to start a university degree, in the UK after 12yrs growing up in France. <br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />However, there are no regrets from the decisions that I made as I have met some amazing people and pursued equine job experiences that I never thought I would get the chance to do! I’ve had the opportunity to ride and compete many different horses as well as having some amazing times with my own horse, whom I brought over with me! (I don’t travel lightly, can you tell?). </span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">Growing up in France meant that I am fluent in french and did all of my A-levels equivalents there. Safe to say it was a shock to the system having to study in my mother tongue again after 12 years!</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">Now I am wanting to develop new skill sets and pursue my love of photography, videography and content creating. I have joined the Biomechanics Education</span><span class=\"ac-designer-copy\"> team to learn more about the world of digital media marketing. </span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">Previously, I have mainly photographed animals, my speciality being horses. Being a keen horse rider myself, the physiology and biomechanics aspect of the human body is extremely relevant to this field of interest.</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">Currently I am following the CIMSPA Digital Marketing Hub webinars in order to learn more about digital media influencing &amp; technology. </span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">My role consists of refining and analysing the Biomechanics Education digital media presence with the overall goal to further our reach and mission to improve the heath &amp; wellbeing of the nation.<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />As a newcomer to this particular industry, I didn’t quite know what to expect when accepting the job offer. Having only attended 2 face to face events as yet and without an extensive knowledge as to what they were, I was overwhelmed by how much I have enjoyed the education and the wonderful people so far!</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">The Kaizen Project annual event that Rachel and her partners organised was a dynamic and captivating experience! I throughly enjoyed every one of the sessions! On top of that, the day was jam packed with food and coffee on tap! Whoo hoo!</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">Now I cannot wait to experience more events and start creating more and more great content for the Biomechanics Education pages. </span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">If you have any suggestions on what you would like to see for the future of Biomechanics Education social media pages, please do also let us know!<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" />Hope to meet you all at an event or workshop soon!</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><span class=\"ac-designer-copy\">....MoveFreely!</span></em><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><em><b class=\"ac-designer-copy\"><span class=\"ac-designer-copy\">Beth! </span></b></em>\n\n<hr />\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Diploma in Biomechanics Coaching 2022 Dates are now live! Click here!</a></h1>','Meet the Team....... Beth, Digital Marketing Manager','','inherit','closed','closed','','29946-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',29946,'https://biomechanicseducation.com/?p=38631',0,'revision','',0),(38632,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<span style=\"font-weight: 400;\">In our running biomechanics workshop we discuss anatomy, lower limb mechanics, the integrated system, assessing pronation &amp; supination, dorsi flexion ranges &amp; hip drop. We also discuss normal anatomical variations.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the problems with simply looking at the way our client’s run (or move) is that we are often taught (&amp; assume) coaching better alignment &amp; technique can improve symptoms like runners\' knees....and it might!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Knock knees or knee valgus is a commonly seen \'issue\' in running clients but there may be a cause that we cannot see nor alter. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you know they could have been born with internally rotated femurs!? This means they could be genetically pre dispositioned to knee valgus, ligament dominance &amp; maybe runners knee!</span>\n\n&nbsp;\n\nIn this weeks juicemail we will share the femoral version tests with you &amp; how you can learn tactics, concepts &amp; principles to help your runners complaining of sore knees....\n\n&nbsp;\n<h2><b>Femoral Version  </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\"><em>Femoral</em> means relating to the femur &amp; <em>version</em> relates to angles of the bone/s</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Femoral <strong>Ante</strong>version - femur neck medially/internally rotated, towards the midline (maybe with the foot) </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Femoral <strong>Retro</strong>version - femur neck laterally/externally rotated, away from the midline (maybe with the foot)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can be assessed to allow us to appreciate the limitations we may be faced with when programming our runners\' strength training plan.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If our client is limited by a bony hip variation that we cannot change then their movement &amp; running style may not be aesthetically comparable to what is suggested as the ideal alignment.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However we can condition &amp; train the muscles &amp; nerves to control the movement for risk reduction / performance optimisation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can contribute to reducing excessive knee valgus, hip drop or a visible flick when running - none of which are inherently bad, however can be used for visual monitoring of movement quality </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To score positively you would need to observe more extreme differences ie beyond 40-45 degrees of rotation in the femoral version test.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This means that if there’s not much movement generally then we might alter what we do about it but this is not a positive result for excessive version.</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-29856\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/10/Screenshot-2021-10-11-at-19.58.41-1.png\" alt=\"\" width=\"732\" height=\"438\" />\n\n<span style=\"font-weight: 400;\">To measure version, have your client supine, hip/knee both at 90 degrees, or prone knee at 90 degree, leg should internal &amp; externally rotate 40-45 degrees to both directions - internal &amp; external rotation. </span>\n\nThis could be done prone with the knee flexed to 90 degrees &amp; <span style=\"font-weight: 400;\">internal &amp; external rotation of the hip can also be evaluated for the same degrees of rotation. </span>\n\n&nbsp;\n\n<hr />\n\n<h1><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/\" target=\"_blank\" rel=\"noopener\">Running Biomechanics Workshop </a></h1>\nJoin us n the classroom &amp; learn all the lower limb tests algn with all of the research/evidence for each running style, common injuries &amp; how to address them with your runners.....\n\nScotland Nov 5th 2021\n\nNottingham Nov 20th 2021\n\n<a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/\" target=\"_blank\" rel=\"noopener\">Click here to BOOK </a>','Solutions for runner\'s knee may not be what you think….','','inherit','closed','closed','','29855-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',29855,'https://biomechanicseducation.com/?p=38632',0,'revision','',0),(38633,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<p class=\"p1\">Having reached the point where I have 52yrs to reflect upon, it comes with the recognition that I’m even happier than ever!</p>\n&nbsp;\n<p class=\"p1\">How could that be when I’ve lived such a happy life over all?</p>\n&nbsp;\n<p class=\"p1\">Even though I’m now technically in the ‘older pops’ demographic, &amp; mature might be another word others use now to describe me these days, I’m also a grandma to 13 wonderful kiddies through marriage<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<p class=\"p1\">Also coming through a pandemic I still feel extremely hardy as age/time brings with it the skill of being positive, logical &amp; proactive<span class=\"Apple-converted-space\"> - hey I even got married in the midst of it all!</span></p>\n&nbsp;\n<p class=\"p1\">Having practised being kinder to myself through my inner dialogue &amp; developing my skill in empathising, I feel I recognise even more how \'stuff\' matters less, while people &amp; experiences matter much more<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<p class=\"p1\">It’s becoming clearer why we assume the ‘elderly’ to be a kind bunch &amp; more self-less<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n<p class=\"p1\">As I find myself listening much more carefully to what others say, prioritising others more &amp; my desire to learn amplifies, I value different things as important now like;</p>\n\n<ul>\n 	<li class=\"p1\">Cute complimentary texts for no reason from wonderfully important people<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"p1\">Seeing others demonstration altruism<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"p1\">Expecting others to be well intended</li>\n 	<li class=\"p1\">Swapping roles to give back to parents who you never felt you could repay</li>\n 	<li class=\"p1\">Realising things are far less important<span class=\"Apple-converted-space\"> </span></li>\n 	<li class=\"p1\">Not sweating the small stuff</li>\n 	<li class=\"p1\">Being able to really appreciate &amp; enjoy NOW (the moment) more often</li>\n 	<li class=\"p1\">Confidence &amp; clarity in my purpose &amp; everything I do<span class=\"Apple-converted-space\"> </span></li>\n</ul>\n<p class=\"p1\">To celebrate in this Juicemail special I’m re-sharing my top tips for feeling great in your 50’s</p>\n&nbsp;\n<h2>P.s. The photos are a little celebration of my life!</h2>\n<a href=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_2697-1.heic\">\n<img class=\"aligncenter size-full wp-image-29659\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_2697-1.heic\" alt=\"\" /><img class=\"aligncenter size-full wp-image-29659\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_2697-1.heic\" alt=\"\" /></a>\n<h2><img class=\"wp-image-29665 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-28-at-07.56.39-1.png\" alt=\"\" width=\"280\" height=\"341\" /></h2>\n<h2 class=\"p3\"><b>#1 – Make A SMART Plan </b></h2>\n<p class=\"p1\">What’s the end goal?</p>\n<p class=\"p1\">Retire in Marbella?</p>\n<p class=\"p1\">Run a B&amp;B in Lochness?</p>\n<p class=\"p1\">Build mud huts in a 3rd world country?</p>\n<p class=\"p1\">Be specific so that you can actually measure it. It MUST be achievable and realistic otherwise what’s the point? Then stick to a timeline for it!</p>\n<p class=\"p1\">Consider the above long term goal to enable you to plan backwards, like a marathon runner does with their training. Once you know the end goal, you can design a schedule that runs from the end goal, back a chunk at a time. This gives you something to measure at each stage of your life plan so you can check, adjust if necessary and monitor how you’re doing with reference points.</p>\n<p class=\"p1\">By the way …. it’s ok to change your mind!</p>\n&nbsp;\n<p class=\"p1\"><img class=\"wp-image-29667 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/GetAttachmentCATNH3ZA-1.jpg\" alt=\"\" width=\"365\" height=\"459\" /></p>\n\n<h2 class=\"p3\"><b>#2 – Nourish Your Movement – Prepare Your Body</b></h2>\n<p class=\"p1\">Nourishing movement is all about treating the body you live in with respect and love.</p>\n<p class=\"p1\">You cannot buy a new one, wear and tear will happen but…..</p>\n<p class=\"p1\">….using your body in a variety of ways consistently maintains healthy joints, tissues and bones. The beautiful knock-on effect is a healthy mind!</p>\n<p class=\"p1\">Exercise Is Movement Medicine</p>\n<p class=\"p1\">The things we put inside our bodies to fuel us make a huge difference, if not always immediately, certainly over time.</p>\n<p class=\"p1\">You will look and feel a representation of the way you fuel your body.</p>\n<p class=\"p1\">It is NOT complex! Balanced, considered with consistent moderation.</p>\n&nbsp;\n<h2></h2>\n<h2></h2>\n<h2 class=\"p3\"></h2>\n&nbsp;\n\n<img class=\"wp-image-29672 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_8159-scaled-1.jpg\" alt=\"\" width=\"256\" height=\"341\" />\n\n&nbsp;\n<h2 class=\"p3\"><b>#3 – Sleep Plan – No Excuses!</b></h2>\n<p class=\"p1\">An extremely underrated medicinal tool and another very simple one!</p>\n<p class=\"p1\">Get 8 hours each night minimum (as the research states ‘Why We sleep’ Matthew Walker) by following</p>\n<p class=\"p1\">a routine of bedtime, room temperature and waking when you wake NOT to an alarm.</p>\n<p class=\"p1\">See the difference when you do!</p>\n<p class=\"p1\">Sleep Is Mental Medicine</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29668 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/Screen-Shot-2015-07-24-at-14.27.06-1.png\" alt=\"\" width=\"177\" height=\"247\" />\n<h2 class=\"p3\"><b>#4 – Prioritise Time Out – The 3 x R’s</b></h2>\n<p class=\"p1\">With consistent rest, relaxation and recuperation planned into your schedule your body will thank you!</p>\n<p class=\"p1\">Rest – Sitting for a moment</p>\n<p class=\"p1\">Relax – being sociable or spending time talking to family/friends</p>\n<p class=\"p1\">Recuperation – sleep &amp; holidays</p>\n<p class=\"p1\">All are required!</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29661 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_6265-scaled-1.jpg\" alt=\"\" width=\"333\" height=\"250\" />\n<h2 class=\"p3\"><b>#5 – Do Something You Never Dared </b></h2>\n<p class=\"p1\">Life is too short to NOT do something you have always wanted but never dared.</p>\n<p class=\"p1\">Do not put it off!</p>\n<p class=\"p1\">Let your hair down and swim naked or jump on that trampoline!</p>\n&nbsp;\n<p style=\"text-align: right;\">(See if you can find me in here)</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29660 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_0248-1.jpg\" alt=\"\" width=\"376\" height=\"267\" />\n<h2 class=\"p3\"><b>#6 – Commit A Random Act Of Kindness Each Week </b></h2>\n<p class=\"p1\">Being kind to others is vital for your contribution to world peace and showing compassion. Even more joyous and fun if the receiver doesn’t realise it was you who left those flowers at their door or even that you made their life easier by cleaning their windows while they were out.</p>\n<p class=\"p1\">This morning I took my neighbours bag of glass bottles to the bottle bank……ssssssssh don’t tell them it was me!</p>\n<p class=\"p1\">Volunteer Your Time Once A Month. Give a little, it means a lot!</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29662 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/GetAttachmentCAP825L1-1.jpg\" alt=\"\" width=\"305\" height=\"407\" />\n<h2 class=\"p3\"><b>#7 – Learn A New Skill Each Quarter </b></h2>\n<p class=\"p1\">Enhance your skills, knowledge or contribution to society.</p>\n<p class=\"p1\">Stimulate you brain it certainly will prove worthwhile one day!</p>\nSign up for a free course in something completely different\n\nHave a go at ice skating, roller blading, climbing, go to a trampoline park!\n\nVolunteer at a shelter, library, local gym\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29664 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_5232-1.jpg\" alt=\"\" width=\"359\" height=\"270\" />\n<h2 class=\"p3\"><b>#8 – Live In The Moment  </b></h2>\n<p class=\"p1\">You cannot change the past, you have no idea of the future but OH BOY you can enjoy this moment!</p>\n<p class=\"p1\">Never forget to savour the sunshine, a blue sky, a beautiful flower or giggling children.</p>\nTime with precious friends or even special times with strangers...you never know when they may disappear never to be seen again\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29663 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/heaven-2-1.jpg\" alt=\"\" width=\"284\" height=\"379\" />\n<h2 class=\"p3\"><b>#9 – Don’t Give A Damn…</b></h2>\n<p class=\"p1\">..what others think</p>\n<p class=\"p1\">Wear those hot pants!</p>\n<p class=\"p1\">Make snow angels!</p>\n<p class=\"p1\">Jump on a trampoline!</p>\n<p class=\"p1\">Lie on grass, watching clouds!</p>\n<p class=\"p1\">Sing at the top of your voice!</p>\n<p class=\"p1\">Dance like <em>everyone’s</em> watching!</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-29670 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_2198-scaled-1.jpg\" alt=\"\" width=\"192\" height=\"256\" />\n<h2 class=\"p3\"><b>#10 – Tell Them You Love Them </b></h2>\n<p class=\"p1\">Always tell your loved ones how you feel …you just never know!</p>\n<img class=\"wp-image-29669 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_0497-scaled-1.jpg\" alt=\"\" width=\"209\" height=\"278\" />\n<p class=\"p1\">By the way I also want to let you in on a secret ……</p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<p class=\"p1\">...........you don’t actually need to be in your 50\'s to try these out!</p>\n<a href=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_0098-1.heic\"><img class=\"aligncenter size-full wp-image-29689\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/IMG_0098-1.heic\" alt=\"\" /></a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h1><b class=\"ac-designer-copy\"><span class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Join me to celebrate....email info@biomechanicseducation.com with your stories or experiences if you try any of the above </span></span></b></h1>','10 Tips To Feeling Great In Your 50\'s!','','inherit','closed','closed','','29658-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',29658,'https://biomechanicseducation.com/?p=38633',0,'revision','',0),(38634,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">There has been a lot of noise from social media, PT’s, fit pro’s &amp;  movement coaches wondering why we weren\'t allowed to work, keep gyms open &amp; help keep our nation moving during lockdown.</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Yet we keep demanding for cheaper &amp; quicker qualifications….?!?!</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">So much so that what 30yrs ago was a 12 month face to face qualification can now be achieved purely online over just a few weeks!</span></span><b class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /></span></b><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">What did we expect???</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Compare this with our peers, the allied health care professionals (AHP’s) who are considered part of ‘the front line’, along with their higher level of training….we fit pros are just not perceived, nor professionalised, in the same way. This contributes to the stigma around us not being very well trained or equipped to work with clients.<br class=\"ac-designer-copy\" /></span></span>\n<h2><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">The 14 Allied Health Professions<br class=\"ac-designer-copy\" /></span></span></h2>\n<span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">Do you know how much training is involved in the 14 listed AHP\'s on the NHS England website?</span></span><b class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\"><br class=\"ac-designer-copy\" /></span><br class=\"ac-designer-copy\" /></span></b>\n<ol class=\"ac-designer-copy\">\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Art Therapists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Drama therapists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Music therapists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Chiropodists/podiatrists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Dietitians</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Occupational therapists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Operating Department Practitioners</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Orthoptists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Osteopaths</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Paramedics</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Physiotherapists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Prosthetists and Orthotists</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Radiographers</span></li>\n 	<li class=\"ac-designer-copy\" dir=\"ltr\" aria-level=\"1\"><span class=\"ac-designer-marked-selection ac-designer-copy\">Speech and language therapists</span></li>\n</ol>\n<span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">We seriously need to raise our game, NOT cheapen it! </span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">IF we are to be truly </span><span class=\"ac-designer-copy\">professionalised</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">IF we are to aim for </span><span class=\"ac-designer-copy\">recognition</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">IF we are wanting to be </span><span class=\"ac-designer-copy\">taken seriously</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">IF we really genuinely care about our clients </span><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">IF we feel we can truly help</span></span><b class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /></span></b><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">Then each &amp; every one of us should be held accountable &amp; responsible for representing our industry with the duty of care &amp; professionalism we wish to be admired for. </span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">We should welcome </span><span class=\"ac-designer-copy\">regulation &amp; evaluation.</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">We should welcome</span><span class=\"ac-designer-copy\"> standards</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">We should be prepared to pay more</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">We should research ‘qualified’ education providers</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">We should commit time &amp; effort into ALL our skills &amp; not simply gaining leads</span><br class=\"ac-designer-copy\" /></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">We should devote CPD to enhance our soft skills of communication &amp; listening</span></span><b class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /></span></b><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\">How can we expect to be taken seriously if we do not behave seriously?</span></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">12 week transformations may well have their place, six packs are appropriate for a competitive bodybuilder &amp; aesthetic training is not a sin </span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">BUT</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">If in fact we wish to have the opportunity to gain more leads, change more lives, be rewarded &amp; recognised well then there is an entire nation of long Covid sufferers that require our help. </span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Phase 5 of Covid-19 Rehabilitation being movement…...that\'s us! </span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">How do you feel about gaining more specialist training? </span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Do you value &amp; invest in communication skills?</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Do you have a multidisciplinary team around you?</span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">Do you think we should be held accountable through regulation? </span><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">How do you feel about gaining Chartered status</span><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><span class=\"ac-designer-copy\">HELP TO </span><span class=\"ac-designer-copy\">PROVE</span></span><span class=\"ac-designer-marked-selection ac-designer-copy\"><span class=\"ac-designer-copy\"> OUR VALUE!</span></span><b class=\"ac-designer-copy\"><span class=\"ac-designer-marked-selection ac-designer-copy\"><br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /></span></b><span class=\"ac-designer-marked-selection ac-designer-copy\"><a class=\"ac-designer-copy\" href=\"https://www.england.nhs.uk/ahp/role/\" data-ac-default-color=\"1\">NHS AHP\'s LIST </a></span>\n\n<b class=\"ac-designer-copy\"><span class=\"ac-designer-copy\">Would you like to join us to become a <a class=\"ac-designer-copy\" href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" data-ac-default-color=\"1\">Biomechanics Coach as</a> we are looking for brand bearers to help in our mission to improve movement through education AND access the above!?<br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /><a class=\"ac-designer-copy\" href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" data-ac-default-color=\"1\">CLICK HERE TO BOOK</a> <br class=\"ac-designer-copy\" /><br class=\"ac-designer-copy\" /></span></b>\n\nOR\n\nArrange a call by sending your details to info@biomechanicseducation.com','\'Why didn\'t Boris trust us enough to let us continue working?\'','','inherit','closed','closed','','29093-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',29093,'https://biomechanicseducation.com/?p=38634',0,'revision','',0),(38635,0,'2024-07-16 11:26:28','2024-07-16 11:26:28','<span style=\"font-weight: 400;\">Injuries can affect us all regardless of age, sex, fitness or ability, but we can manage or limit the number of times we get injured; and we can do this by going back to basics. A topic which has been written about numerous times, but we are not talking about strength levels, stretching or core stability, we mean back to your basic intrinsic biomechanics.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By regularly assessing your intrinsic biomechanics you can help eliminate and prevent many injuries and problems. One of the fundamental causes of injury is the body compensating for weak biomechanical links in your kinetic chain which can cause unaccustomed load that in turn result in pain and injury.</span>\n\n&nbsp;\n<h2><em><b>One of the most common injuries in running is to the hamstrings. Or typically, the pain or tension that often presents itself in the hamstrings due to biomechanical load from another area of the body that is not functioning correctly. Even if you tear the hamstring during sprinting, the underlying cause is usually biomechanical, and unless that cause is addressed, the problem will become recurrent or simply just not go away. You could even just have a hamstring that feels tight or won’t stretch out properly, either way the cause is usually biomechanical.</b></em></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-28848\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/jenny-hill-mQVWb7kUoOE-unsplash-scaled.jpg\" alt=\"\" width=\"710\" height=\"472\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Example:</span>\n\n<span style=\"font-weight: 400;\">Hamstring ‘issues’ are common in runners and are caused by a number of different issues. Flat feet, tight calves, dysfunctional pelvis, poor preparation and previous injury to the hamstrings or calves or associated joints are all typically considered when trying to prevent hamstring  injuries. One commonly overlooked, but very relevant cause is a tight sciatic nerve.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If the sciatic nerve is tight or not moving freely within the structures that surround it, then the muscles in the area of stiffness provide the nerve with protective spasm during movement. In other words they contract to minimise the pressure on the nerve while you move at speed. If the nerve is loaded or stretched too much, the muscles can spasm enough to cause themselves to tear or cramp up - which can feel like a tear. The stiffness in the nerve may well be near the point where the nerve runs through the hamstring muscle, and so that can be why you have the injury in the hamstring.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To check to see if your hamstring ‘issue’ is related to your sciatic nerve, try this test:</span>\n\n<img class=\"wp-image-27968 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/annie-spratt-oQfSHQ2Uaic-unsplash-scaled.jpg\" alt=\"\" width=\"312\" height=\"468\" />\n\n&nbsp;\n<h2><strong>Test</strong></h2>\n<span style=\"font-weight: 400;\">Lay on your back and gradually lift your leg up straight with your ankle fixed at a 90 degree angle. Stop when you start to feel a tension or stretch in your leg. Notice where this tension is felt. You could feel it in the hamstring area, but also anywhere below the knee, or indeed in your buttock or back. If you feel it anywhere outside your hamstring area, the stretch you feel may be nerve related. In this example the stretch may be in the calf, which might indicate that the nerve is tightest there and can be causing the calf injuries. However if you feel the tension in the hamstring area you can test for nerve tension by pointing your toe. If this movement alters the tension in your hamstring this can indicate that the nerve is tightest there and can be causing hamstring issues. </span>\n\n&nbsp;\n<h2><b>Understanding nerves</b></h2>\n<span style=\"font-weight: 400;\">The nerves have been described as the software of the body and to be able to understand this more thoroughly we have to understand ‘nerve tension’ and ‘Adverse Neural Tension’. These concepts have been recognised for over 100 years in terms of treating patients clinically, but their full potential has never been understood until now. An analogy with the invention of the wheel is an interesting one. The discovery of nerve tension and it being used for the treatment of injuries is like the wheel being invented and placing it on its side, putting 4 legs around the underside and using it as a table. It makes a great table, but the idea to use it in the way we know it today was groundbreaking. The same applies to nerve tension and its application to athletic performance and fatigue relief.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The entire nervous system is a single continuous tract, so it follows that if any part of this continuous tract is trapped or tethered (as with an injury for example) then it also follows that there will be some restriction of the mobility of other parts of the nerve system. So a problem with one part of the nerve can cause pain in another – this is the clinical application. However, we have discovered that this is not always represented by pain but also by a reduction of joint range of movement and altered joint biomechanics which can affect a whole host of problems that can cause restricted performance and may ultimately lead to injury. Moreover, with the increased muscle spasm and associated factors, local fatigue increases and so understanding these principles can lead to benefits not only in human performance but also fatigue relief.</span>\n\n&nbsp;\n<h2><b>Research</b></h2>\n<span style=\"font-weight: 400;\">We know this happens from research performed at Liverpool Hope University College and the studies demonstrate astonishing results. One experiment showed that a muscle can increase its force output by 14% after a brief preliminary warm-up (just one 15 second workout using this concept). Another experiment showed that by following the same concept a 2 minute programme performed daily for 10 days increases muscle output by over 50%.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It has been demonstrated that after 15 seconds of the programme, muscle fatigue is reduced by up to 14% immediately and sustained use led to significant and prolonged increase in muscle output. These studies have been validated at the highest level. A paper was submitted at the 6th Asian Biomechanics Congress (one of the world\'s most credited) and was enthusiastically received.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember in most cases we are not even aware we have a problem, but even so you can still achieve these remarkable results. Just imagine what these figures could do for your performance in your sport or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office.</span>\n\n&nbsp;\n<h2><b>Example</b></h2>\n<span style=\"font-weight: 400;\">Let\'s take a hamstring stretch as an example, we are not trying to stretch the hamstrings when we extend the leg out in front of us, we are trying to improve the range of hip flexion and knee extension by stretching the structures on the back of the leg and back. This brings in more than just the hamstrings, it can also be limited by a tight sciatic nerve, a rotated sacro-iliac joint in the lower back, tight gastrocnemius, tight spinal cord and indeed almost any nerve in the chain given the continuum concept described earlier.</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\" target=\"_blank\" rel=\"noopener\">Running Biomechanics Workshop </a> teaches you;</h1>\n<ul>\n 	<li>The correct terminology to approach your local running clubs</li>\n 	<li>Understanding the mechanics and sequencing of running gaits</li>\n 	<li>Extrinsically look at different styles or idiosyncrasy’s and Intrinsically look at what restrictions and dysfunctions can cause them</li>\n 	<li>Screenings will be discussed as well as key exercise interventions to help prepare your runners for their chosen style</li>\n</ul>\n<p class=\"p1\"><b>Who is it suitable for?</b></p>\n\n<ul class=\"ul1\">\n 	<li class=\"li1\">Running coaches &amp; practitioners who wish to enhance their skills to help runners</li>\n 	<li class=\"li1\">Any professional looking for an understanding of running biomechanics</li>\n</ul>\nCreated by<a href=\"https://www.brytespark.com/portfolio/biomechanical/\" target=\"_blank\" rel=\"noopener noreferrer\"> Martin Haines Founder of Brytespark</a>\n<h1><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\" target=\"_blank\" rel=\"noopener\">&gt;&gt;TO BOOK CLICK HERE &lt;&lt;</a></h1>\n<img class=\"wp-image-18460 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png\" alt=\"\" width=\"460\" height=\"230\" />','Running with an Injury or Over Training','','inherit','closed','closed','','28845-revision-v1','','','2024-07-16 11:26:28','2024-07-16 11:26:28','',28845,'https://biomechanicseducation.com/?p=38635',0,'revision','',0),(38636,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<span style=\"font-weight: 400;\">Client’s come to us to change their behaviour in some way because they are seeking to increase their confidence in something. It is pretty much always that they wish to achieve confidence in how they look, feel or move…or a combination of these...even though they may not explain it this way. They usually say something like….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">I\'d like to lose weight”</span></i><span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">I want to build muscles/tone up</span></i><span style=\"font-weight: 400;\">”</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">I want to feel stronger and fitter</span></i><span style=\"font-weight: 400;\">”</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">I wish I didn\'t have these aches and pains</span></i><span style=\"font-weight: 400;\">”</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">I want to get rid of my belly fat</span></i><span style=\"font-weight: 400;\">”</span>\n\n<i><span style=\"font-weight: 400;\">“My clothes no longer fit”</span></i>\n\n<i><span style=\"font-weight: 400;\">“I want to run a half marathon”</span></i>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-28621\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_1364554769-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1304\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Inevitably we view the answer as simple and that, with our skills, we can simply tell them what to do since that’s what we learned on our fitness qualification or therapy training...right!?</span>\n\n<span style=\"font-weight: 400;\">Yet adherence and/or long term success is far more challenging than it first seems. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In our ‘fit pro’ minds it\'s really easy!! Eg: </span><i><span style=\"font-weight: 400;\">Move more, eat less</span></i><span style=\"font-weight: 400;\">!...then why doesn\'t this work long term for so many?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, yes it is that simple but it still doesn\'t work to simply tell them what to do because it\'s not just the facts of calories in &amp; out...pretty much every client knows this concept &amp; it\'s really </span><i><span style=\"font-weight: 400;\">simple</span></i><span style=\"font-weight: 400;\"> to communicate….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“.....</span><i><span style=\"font-weight: 400;\">move more, eat less</span></i><span style=\"font-weight: 400;\">….”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">….yet it still doesn\'t help..so what is it? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They also know what they are doing wrong in terms of those food binges or long periods sitting still at their desk...SO WHAT IS IT?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...and more importantly, how can we help?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should maybe consider attending a CPD in communication &amp; consulting tactics to help our clients with their goals. Motivational interviewing techniques are an evidenced based model of approaching our consultation style for example.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having recently experienced Dr Gary Mendoza’s Behaviour Change &amp; Motivational Interviewing (MI) online course a key component that came from his research was to avoid simply giving information, even when asked. Instead employing a more ‘client centred’ approach (Rogers.C, 1983) with a dialectical style to it. The techniques Gary taught us were, at first, a challenge to implement, because they felt so different to the way consultations usually go. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Usually we</span> <span style=\"font-weight: 400;\">ask questions, the client responds &amp; this repeats until we have gathered what we feel is enough data. Then we offer our ideas based upon what the client has said, our education, experience &amp; our practice.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However the evidence behind MI &amp; these dialectical techniques is gaining strength &amp; credibility. Offering increased success for adherence &amp; long term results from enhancing a client’s motivation &amp; ability to change with the use of a ‘client centred’ approach. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When applying them they produce a difference in the </span><i><span style=\"font-weight: 400;\">quality</span></i><span style=\"font-weight: 400;\"> of the information gained from clients, this was immediately obvious in my experience during my training &amp; with clients since I completed the course. Basically it\'s changed the way I communicate with clients. </span>\n\n&nbsp;\n<h2><b>What is Motivational Interviewing (MI)?</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-28622\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_1068924428-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1440\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">MI skills empower the client to create their own solutions, since </span><b><i>they are the experts in themselves</i></b><span style=\"font-weight: 400;\">.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Gary’s research in utilising MI techniques to support individuals through a weight loss programme for example found that it had a profound effect on increasing the likelihood of subjects, not only succeeding in their weight loss goals in the short term but also in the long term. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Simple tactics like O.A.R.S help to structure a consultation to have a ‘client\'s centred’ approach. </span>\n\n&nbsp;\n\n<b>O</b><span style=\"font-weight: 400;\">pen questions - builds rapport, to gain clarity &amp; understanding of the clients world. </span>\n\n<b>A</b><span style=\"font-weight: 400;\">ffirmations - build clients\' self efficacy &amp; confidence.</span>\n\n<b>R</b><span style=\"font-weight: 400;\">eflections - to demonstrate empathy, they are valued &amp; heard. </span>\n\n<b>S</b><span style=\"font-weight: 400;\">ummary - confirm understanding &amp; move session to a close. </span>\n\n&nbsp;\n\n<a href=\"https://stagesofchange.co.uk/\" target=\"_blank\" rel=\"noopener\">Find Gary\'s courses HERE</a>\n<h2><b>What is Dialectical Behaviour Therapy?</b></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-28623\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_1107423758-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1709\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember </span>\n\n<b><i>Dialectic</i></b><i><span style=\"font-weight: 400;\"> is defined as the art of determining the truth by the logical exchange of ideas…... </span></i>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><i><span style=\"font-weight: 400;\">transformation of quantity into quality. Engels (2006) </span></i></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">DBT is a type of Cognitive Behavioural Therapy (CBT), another communication tool mainly used in therapeutic / counselling / psychology practices but also in personal training. However, the results for behaviour change are what make all of these ‘consultation techniques’ so fascinating.  </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">(DBT)...attempts to balance and integrate acceptance and change through a dialectical process…..the most fundamental dialectic addressed by DBT is that of acceptance and change…..help the client develop greater acceptance of the self, of others,</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Originating from Linehan’s work in the 1970’s and 1980’s with individuals who were experiencing chronic mental health conditions, these ‘therapeutic’ intervention techniques can go a long way to improving our consultation techniques. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The endeavour to practice these techniques can lead to identifying and altering negative thinking. This clearly crosses over into our health and activity industry as I am sure you can imagine. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The ‘dialectical’ part of behaviour change is supporting the client with their own solutions for….</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Their acceptance of situations </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Strategies to orient the change they seek</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Regulation of their negative emotions</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Their tolerance to stress</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Interpersonal effectiveness</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">DBT first focuses on stabilising the client into behavioural control, replacing certain emotional/behavioural responses with improved ones. Then it aims to get actions under control, allowing the client to feel they are the decision maker creating their new behaviour strategies. </span>\n\n&nbsp;\n<h2><b>Finally.... </b></h2>\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Do you get frustrated by clients NOT doing what you suggested?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Do you listen to your own dialect &amp; critically analyse it?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Do you consider ways to improve or structure your consultation to test its efficacy?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Do you follow evidence based ways of doing things where possible?</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have been so impressed but the results of Dr Gary Mendoza’s Behaviour Change &amp; Motivational Interviewing course that we have booked him for our intimate annual event.....</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\"><b>The Kaizen Project </b></a></h1>\n&nbsp;\n\n<img class=\"aligncenter wp-image-28625\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/Screenshot-2021-07-12-at-14.52.34.png\" alt=\"\" width=\"548\" height=\"224\" />\n<h1><span style=\"font-weight: 400;\">Friday 8th October at Loughborough University</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Not only can you come along and meet Gary, but we also have a whole day of sessions from industry leaders in Empowerment &amp; Coaching AND you get free lunch &amp; refreshments all day within your ticket price! </span>\n\n&nbsp;\n<h2>See who else is presenting</h2>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Why not join us &gt;&gt;READ MORE &amp; BOOK HERE&lt;&lt;</span></a></h1>\n\n<hr />\n\n<h2><b>References;</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Clifford, D. and Curtis, L., n.d. </span><i><span style=\"font-weight: 400;\">Motivational interviewing in nutrition and fitness</span></i><span style=\"font-weight: 400;\">.</span>\n\n<span style=\"font-weight: 400;\">Dimeff, L., McDavid, J. and Linehan, M., 1999. Journal search results. </span><i><span style=\"font-weight: 400;\">Journal of Clinical Psychology in Medical Settings</span></i><span style=\"font-weight: 400;\">, 6(1), pp.113-138.</span>\n\n<span style=\"font-weight: 400;\">Kaufman, E., Douaihy, A. and Goldstein, T., 2021. Dialectical Behavior Therapy and Motivational Interviewing: Conceptual Convergence, Compatibility, and Strategies for Integration. </span><i><span style=\"font-weight: 400;\">Cognitive and Behavioral Practice</span></i><span style=\"font-weight: 400;\">, 28(1), pp.53-65.</span>\n\n<span style=\"font-weight: 400;\">Merriam-webster.com. 2021. </span><i><span style=\"font-weight: 400;\">Definition of DIALECTIC</span></i><span style=\"font-weight: 400;\">. [online] Available at: &lt;https://www.merriam-webster.com/dictionary/dialectic&gt; [Accessed 5 July 2021].</span>\n\n<span style=\"font-weight: 400;\">Miller, W. and Rollnick, S., 2009. Ten Things that Motivational Interviewing Is Not. </span><i><span style=\"font-weight: 400;\">Behavioural and Cognitive Psychotherapy</span></i><span style=\"font-weight: 400;\">, 37(2), pp.129-140.</span>\n\n<span style=\"font-weight: 400;\">Nutrition Society.org. 2021. </span><i><span style=\"font-weight: 400;\">Dr Gary Mendoza | The Nutrition Society</span></i><span style=\"font-weight: 400;\">. [online] Available at: &lt;https://www.nutritionsociety.org/people/dr-gary-mendoza&gt; [Accessed 12 July 2021].</span>\n\n<span style=\"font-weight: 400;\">Robins, C., 1999. A dialectical behavior therapy perspective on the case of anna. </span><i><span style=\"font-weight: 400;\">Cognitive and Behavioral Practice</span></i><span style=\"font-weight: 400;\">, 6(1), pp.60-68.</span>\n\n<span style=\"font-weight: 400;\">Rogers, C., 1995. </span><i><span style=\"font-weight: 400;\">A way of being</span></i><span style=\"font-weight: 400;\">. Boston: Houghton Mifflin.</span>\n\n<span style=\"font-weight: 400;\">Rollnick, S. and Miller, W., 1995. What is Motivational Interviewing?. </span><i><span style=\"font-weight: 400;\">Behavioural and Cognitive Psychotherapy</span></i><span style=\"font-weight: 400;\">, 23(4), pp.325-334.</span>\n\n<span style=\"font-weight: 400;\">Slater, E., 2017. Engels on Ireland’s Dialectics of Nature. </span><i><span style=\"font-weight: 400;\">Capitalism Nature Socialism</span></i><span style=\"font-weight: 400;\">, 29(4), pp.31-50.</span>\n\n<span style=\"font-weight: 400;\">Sporakowski, M., Prochaska, J. and DiClemente, C., 1986. The Transtheoretical Approach: Crossing Traditional Boundaries of Therapy. </span><i><span style=\"font-weight: 400;\">Family Relations</span></i><span style=\"font-weight: 400;\">, 35(4), p.601.</span>\n\n<span style=\"font-weight: 400;\">Swales, M., 2009. Dialectical Behaviour Therapy: Description, research and future directions. </span><i><span style=\"font-weight: 400;\">International Journal of Behavioral Consultation and Therapy</span></i><span style=\"font-weight: 400;\">, 5(2), pp.164-177.</span>\n\n&nbsp;','Motivational Interviewing & Dialectical (Behaviour Therapy) Techniques- Part 2','','inherit','closed','closed','','28615-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',28615,'https://biomechanicseducation.com/?p=38636',0,'revision','',0),(38637,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<h1><b>Discussion vs Debate vs Dialectic - Part 1 </b></h1>\n&nbsp;\n<ul>\n 	<li style=\"text-align: left;\"><span style=\"font-weight: 400;\">Ever felt cyber bullied? Trolled? Attacked by a keyboard warrior? </span></li>\n 	<li style=\"text-align: left;\"><span style=\"font-weight: 400;\">Did you get annoyed and want to give them a piece of your mind? </span></li>\n 	<li style=\"text-align: left;\"><span style=\"font-weight: 400;\">Were you unable to type quickly enough, you were so frustrated and wanted to respond immediately?</span></li>\n 	<li style=\"text-align: left;\"><span style=\"font-weight: 400;\">Yet at the same time did you wonder.....<em>why this idiot is making you feel so emotional and irrational</em>? </span></li>\n 	<li style=\"text-align: left;\"><span style=\"font-weight: 400;\">Did you feel cyber rage?</span></li>\n 	<li style=\"text-align: left;\"><span style=\"font-weight: 400;\">Maybe the experience has changed the way you interact online?</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Communication is something we do every day, all the time &amp; mostly without too much thought. However our success in gaining clients, keeping them &amp; serving them is ALL down to how well we communicate. Social media may well be a key place for you to gain new clients </span><span style=\"font-weight: 400;\">BUT maybe social media isn\'t the best way to learn how to communicate OR maybe it\'s a good way to learn what not to do? </span>\n\n<span style=\"font-weight: 400;\">Good practise is to consistently challenge the way we do things, evaluate how well it works and alter when/where necessary with new techniques when things don\'t work out the way we would like. A good way of looking at this is that very failure is a lesson on what not to do. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In these 2 x Juicemail blogs we will explore some of the ways we share information, and what the evidence suggests, to enable us to plan how we might improve the way we communicate for all of the reasons above...and more!</span>\n\n&nbsp;\n<h1>Discussion</h1>\n&nbsp;\n\n<img class=\"wp-image-28488 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/peggy-anke-SjeRPKfVDj8-unsplash-scaled.jpg\" alt=\"\" width=\"422\" height=\"281\" />\n\n<span style=\"font-weight: 400;\">An interaction on social media, or with a client, for example maybe in the form of a discussion. To define this.....</span>\n\n&nbsp;\n<h2><b><i>Discussion:</i></b><i><span style=\"font-weight: 400;\"> the action or process of talking about something in order to reach a decision or to exchange ideas. a conversation or debate about a specific topic.</span></i></h2>\n&nbsp;\n<h1></h1>\n<h1></h1>\n<h1></h1>\n<h1></h1>\n<h1>Debate</h1>\n&nbsp;\n\n<img class=\"wp-image-28489 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/geron-dison-9_FmYJTSYTU-unsplash-scaled.jpg\" alt=\"\" width=\"517\" height=\"291\" />\n\n<span style=\"font-weight: 400;\">Debating on social media is more often than not the defence of an opinion which is based on bias, the individual’s view of the world, experience &amp; education &amp; it certainly has its place….</span>\n\n&nbsp;\n<h2><b><i>Debate</i></b><i><span style=\"font-weight: 400;\"> is a (formal) discussion on a particular matter in a public meeting……. in which opposing arguments are put forward….</span></i><i><span style=\"font-weight: 400;\">argue abou</span></i><i><span style=\"font-weight: 400;\">t...</span></i></h2>\n&nbsp;\n<h1></h1>\n<h1></h1>\n<h1></h1>\n<h1>Dialectic</h1>\n&nbsp;\n\n<img class=\"wp-image-28490 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/cardmapr-nl-LQZQM_z1b-s-unsplash-scaled.jpg\" alt=\"\" width=\"459\" height=\"307\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However in research papers, some describe the goal as being ‘</span><i><span style=\"font-weight: 400;\">dialectical</span></i><span style=\"font-weight: 400;\">’. So I wanted to share this with you to see what you think….</span>\n\n&nbsp;\n<h2><b><i>Dialectic</i></b><i><span style=\"font-weight: 400;\"> is defined as the art of determining the truth by the logical exchange of ideas…... </span></i></h2>\n<h2><i><span style=\"font-weight: 400;\">Engels (2006) discusses </span></i><b><i>three principal laws of dialectics</i></b><i><span style=\"font-weight: 400;\">: the </span></i><b><i>law</i></b><i><span style=\"font-weight: 400;\"> of the transformation of quantity into quality, and vice versa; the </span></i><b><i>law</i></b><i><span style=\"font-weight: 400;\"> of the interpenetration of opposites; and the </span></i><b><i>law</i></b><i><span style=\"font-weight: 400;\"> of the negation of the negation.</span></i></h2>\n<h2><a href=\"https://www.merriam-webster.com/dictionary/dialect\"><i><span style=\"font-weight: 400;\">Dialect</span></i></a><i><span style=\"font-weight: 400;\"> and </span></i><i><span style=\"font-weight: 400;\">dialectic</span></i><i><span style=\"font-weight: 400;\"> come from </span></i><i><span style=\"font-weight: 400;\">dialecktos</span></i><i><span style=\"font-weight: 400;\"> (“conversation” or “dialect”) </span></i></h2>\n&nbsp;\n\n&nbsp;\n<h2></h2>\n<h2></h2>\n<h1><b>So What?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all have our own bias, myself included, our own view of the world based on our personal environment &amp; experiences. </span>\n\n&nbsp;\n<h2><em><span style=\"font-weight: 400;\">..bias has the potential for confining &amp; limiting our beliefs, thinking, conceptualisation &amp; depth of understanding. </span></em></h2>\n&nbsp;\n<h2><b>The Difference Between Dialectic, Discussion &amp; Debate</b></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-28491\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_436476886-scaled.jpg\" alt=\"\" width=\"1098\" height=\"491\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When having a debate we are </span><i><span style=\"font-weight: 400;\">defending</span></i><span style=\"font-weight: 400;\"> our view using our bias or perceived logic. So a debate if done diplomatically can be great!</span>\n\n<span style=\"font-weight: 400;\">However typed words can lose tone or gain an inappropriate tone if read a certain way, so a debate typed out online can be frustratingly challenging. The nuances of human interaction are lost online so choice of wording becomes more important &amp; if we type how we speak we may lose some of the quality of the content of our expression.</span>\n\n&nbsp;\n<ul>\n 	<li><span style=\"font-weight: 400;\">Can we present ideas, justifications &amp; thoughts with a willingness to be challenged? </span></li>\n 	<li><span style=\"font-weight: 400;\">Can we be open to an alternative view? </span></li>\n 	<li><span style=\"font-weight: 400;\">Can we provide valid evidence of the theory or idea from a valid source?</span></li>\n 	<li>How does OUR online presence affect our ability to gain new clients?</li>\n 	<li>Could learning new communication skills improve our exposure to new clients?</li>\n</ul>\n<span style=\"font-weight: 400;\">Cyber confusion is something surely we have all experienced in some way &amp; inspired me to find solutions to this problem. Trust me I have got communicating on social media completely wrong &amp; Ive even kicked myself when with clients face to face when I felt it didn\'t go as I had hoped for some reason. By using a self reflection journal &amp; critically analysing my techniques regularly this has guided my CPD choice to find education that isn\'t just a new \'movement\' skill. </span>\n\nCommunication skills are possibly the most underrated CPD you can do as a practitioner of movement, since they are a skill we generally feel quite good at BUT as suggested....we should CHALLENGE EVERYTHING!\n\n<span style=\"font-weight: 400;\">Considering these ideas are not limited to online communication &amp; can also improve our face to face interactions with client\'s for adherence &amp; retention as well as success in behaviour change.....</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">NEXT TIME - We will explore the concept of ‘dialectical’ behaviour therapy when designing our consultations to improve adherence &amp; long term success through empowerment.</span></h2>\n<h1>How Can We Improve Client Adherence?</h1>\n<h2><b>Motivational Interviewing &amp; </b><b>Dialectical (Behaviour Therapy) Techniques </b><b>- Part 2</b></h2>\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-28492 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/07/mimi-thian-lp1AKIUV3yo-unsplash-scaled.jpg\" alt=\"\" width=\"570\" height=\"428\" />\n\n&nbsp;\n\n&nbsp;\n<h2><em>Would you like some practical consultation skills to compliment these communication skills? </em></h2>\n<h2><em>Why not join us for some intrinsic biomechanics - the simple \'biomechanics\' !</em></h2>\n<h2><em>While some dates are fully booked, we still have a few places for Belfast, Nottingham and London </em></h2>\n<h3></h3>\n<img class=\"wp-image-28329 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-scaled.jpg\" alt=\"\" width=\"513\" height=\"342\" />\n<h3 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">Click here for just Pelvic &amp; Spine Biomechanics Workshop.</a></h3>\n<h3 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/product/shoulder-knee-foot-biomechanics-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">Click here for just Shoulder, Knee &amp; Foot Biomechanics Workshop</a></h3>\n<h3 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/low-back-health-workshops/\" target=\"_blank\" rel=\"noopener\">Click here for just Low Back Health Workshop</a></h3>\n\n<hr />\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Click here for all 3 of the above -  Diploma in Biomechanics Coaching </a></p>\n\n<h2 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">From just £100 per month </a></h2>\n<h2></h2>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2><b>References;</b></h2>\n<span style=\"font-weight: 400;\">Dimeff, L., McDavid, J. and Linehan, M., 1999. Journal search results. </span><i><span style=\"font-weight: 400;\">Journal of Clinical Psychology in Medical Settings</span></i><span style=\"font-weight: 400;\">, 6(1), pp.113-138.</span>\n\n<span style=\"font-weight: 400;\">Kaufman, E., Douaihy, A. and Goldstein, T., 2021. Dialectical Behavior Therapy and Motivational Interviewing: Conceptual Convergence, Compatibility, and Strategies for Integration. </span><i><span style=\"font-weight: 400;\">Cognitive and Behavioral Practice</span></i><span style=\"font-weight: 400;\">, 28(1), pp.53-65.</span>\n\n<span style=\"font-weight: 400;\">Merriam-webster.com. 2021. </span><i><span style=\"font-weight: 400;\">Definition of DIALECTIC</span></i><span style=\"font-weight: 400;\">. [online] Available at: &lt;https://www.merriam-webster.com/dictionary/dialectic&gt; [Accessed 5 July 2021].</span>\n\n<span style=\"font-weight: 400;\">Robins, C., 1999. A dialectical behavior therapy perspective on the case of anna. </span><i><span style=\"font-weight: 400;\">Cognitive and Behavioral Practice</span></i><span style=\"font-weight: 400;\">, 6(1), pp.60-68.</span>\n\n<span style=\"font-weight: 400;\">Slater, E., 2017. Engels on Ireland’s Dialectics of Nature. </span><i><span style=\"font-weight: 400;\">Capitalism Nature Socialism</span></i><span style=\"font-weight: 400;\">, 29(4), pp.31-50.</span>\n\n<span style=\"font-weight: 400;\">Swales, M., 2009. Dialectical Behaviour Therapy: Description, research and future directions. </span><i><span style=\"font-weight: 400;\">International Journal of Behavioral Consultation and Therapy</span></i><span style=\"font-weight: 400;\">, 5(2), pp.164-177.</span>\n\n<hr />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;','Ever been attacked a Keyboard Warrior?','','inherit','closed','closed','','28483-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',28483,'https://biomechanicseducation.com/?p=38637',0,'revision','',0),(38638,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','&nbsp;\n\n<span style=\"font-weight: 400;\">If you have found this blog but not yet <a href=\"https://www.biomechanicseducation.com/blog/\" target=\"_blank\" rel=\"noopener\">read Part 1 &amp; Part 2 please go &amp; read them first</a> to get the most out of Part 3.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are on a mission to help PTs with skills in an assessment system that, from the evidence, guides us in pre &amp; post rehab exercise prescription techniques. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The techniques, including the nerve mobilisation described here, are NOT recommended for someone with acute symptoms </span>\n\n<span style=\"font-weight: 400;\">This client MUST seek medical advice PRIOR to working with an exercise professional or manual therapist </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However to REDUCE RISK of the onset sciatica this nerve mobilisation technique can be prescribed, and is really great, as part of a progressive movement preparation programme, like iMoveFreely. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once we have assessed their intrinsic biomechanics to better understand how to prepare them for our exercise programme our planning becomes far more bespoke to that individual &amp; their biomechanics. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If they demonstrate a tight sciatic nerve during the nerve range (lower limb tension) test we can potentially reduce risk of sciatica by prescribing a nerve gliding technique as part of their warm up</span>\n\n&nbsp;\n<h2><b>Preparation is key!</b></h2>\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s probably prudent to begin with muscle energy techniques, like the iMoveFreely 20/20, to improve the function of the muscles that relate to the sciatic nerve pathway first.</span>\n\n&nbsp;\n<h2>The 4 Sign Test &amp; Exercise</h2>\nhttps://youtu.be/_Lkur9ZcNXw\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This could be followed by subtle pure spine mobility drills, like knee rolls &amp; pelvic tilts taught in our iMoveFreely Instructor programme workshop, to prepare &amp; mobilise the nerve roots in advance of the slump. </span>\n\n&nbsp;\n\n&nbsp;\n<h2>Lumbar Tilts &amp; Knee Rolls</h2>\nhttps://youtu.be/IKdmb5L5uh8\n\n&nbsp;\n\n&nbsp;\n<h2><b>The slump nerve mobilisation technique</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Nerve mobilisation techniques require an understanding of nerve anatomy. The idea is to gradually lengthen the nerve to the point of feeling the beginning of tension. Then once the client feels the beginning of tension, we reduce it at a single joint then add it back on &amp; repeat slowly to gently ‘mobilise’ the nerve. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Moving very slowly in &amp; out of that start of tension is a really nice &amp; safe way to calm the tension down. It desensitises the nerve tension &amp; allows for improved range of motion. It could also cue muscles &amp; joints towards improved functionality too. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The slump looks almost identical to the lower limb tension test or SLR we covered last time in part 2 &gt;&gt;HERE.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By coaching your client into gradually lengthening the nervous system that relates to the sciatic nerve, we can ‘find the beginning of tension’ then reduce it at a single joint &amp; repeat SLOWLY 8 times on each leg.</span>\n\n<span style=\"font-weight: 400;\">Ideally doing one leg at a time since they may feel tension earlier in one side &amp; this allows for control over the exercise.</span>\n\n&nbsp;\n\n&nbsp;\n\nhttps://youtu.be/xMDNnhoXWRs\n\n&nbsp;\n<h2><b>Our Role</b></h2>\n&nbsp;\n\n<img class=\"wp-image-27966 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/ryan-snaadt-qCPUBf1ek-Y-unsplash-scaled.jpg\" alt=\"\" width=\"588\" height=\"331\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So we can plan how to mobilise the nerves in preparation for our client’s sport or chosen activity. As PTs its really all about risk reduction &amp; performance optimisation which could be known as PREHAB &amp; for some maybe even post rehab. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe even ME-HAB for ‘My Rehab’ which is exactly what a Biomechanics Coaches skill is in creating bespoke movement programmes that are progressive, regressive where necessary &amp; with continuous evaluation &amp; monitoring.  </span>\n\n&nbsp;\n<h2>Did you find this series helpful?</h2>\n<h2>What would you like us to write about in out next guide?</h2>\n<h2>Why not hit reply &amp; send your feedback?</h2>\n&nbsp;\n\n<hr />\n\n<h2><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Would you like to learn how to fully assess your clients biomechanics? - no expensive equipment required!</a></h2>\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Join the team! We promise all our Biomechanics Coaches support for life!</a>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">From £100 per month we can teach you how to perform a full biomechanical assessment on your clients, also how to use them to attract new clients &amp; charge more while feeling confident about all of these changes.</a>\n\nWe NEED YOU!\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Ask any Biomechanics Coach how its changed the way they think by following a very simply evidence based system. </a>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">CLICK ANY OF THE TEXT HERE TO REGISTER YOUR INTEREST</a>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-28328\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1709\" />\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-28329\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1709\" />','A PT\'s Guide to Sciatica - Part 3','','inherit','closed','closed','','28326-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',28326,'https://biomechanicseducation.com/?p=38638',0,'revision','',0),(38639,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<span style=\"font-weight: 400;\">Last week we ended with the question…</span>\n\n&nbsp;\n\n<img class=\"wp-image-27962 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/tingey-injury-law-firm-9SKhDFnw4c4-unsplash-scaled.jpg\" alt=\"\" width=\"345\" height=\"230\" />\n<h2><b>Should we test client’s who have sciatica or sciatica symptoms?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In simple terms, without clinical (Allied Healthcare Practitioner or AHP) training/insurance the answer is</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">NO</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Since we are not </span><i><span style=\"font-weight: 400;\">qualified</span></i><span style=\"font-weight: 400;\"> in understanding the risks associated with clinical causes of sciatica. This also means our insurance could be invalid if we hurt someone with our advice.</span>\n\n&nbsp;\n<h2><b>Is there anything we CAN do?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">YES </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have a really important role in helping clients who have had or are at risk of sciatica. So let\'s dive into exactly what we CAN do….</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27965\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/ryan-snaadt-sEJpq3D2vMo-unsplash-scaled.jpg\" alt=\"\" width=\"760\" height=\"427\" />\n\n&nbsp;\n<h2><b>A PT\'s Role in sciatica symptomatic clients</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As movement practitioners we have a vital role in the prevention of common modern ailments like sciatica. However due to the complex nature of pain and symptoms combined with our lack of training in clinical understanding we cannot help clients with existing or perhaps \'acute\' sciatica. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So first let\'s look at risk factors associated with individuals at risk of sciatica.</span>\n\n<b>Risk factors </b>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Previous back injury can increase the risk of experiencing sciatica.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Normal ageing causes natural wearing of the joint surfaces potentially resulting in alterations of bones, ligaments and discs which may irritate the nerve</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Being overweight can cause a shear force due to the alteration in centre of gravity </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A physically active job that requires lots of lifting </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Diabetes can increase the risk of nerve damage </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Osteoarthritis could cause spine damage putting nerves at an increased risk</span></li>\n 	<li aria-level=\"1\"><span style=\"font-weight: 400;\">Smoking can result in the nicotine damaging spinal tissue, weakening bones and discs.</span></li>\n 	<li aria-level=\"1\">Sed<span style=\"font-weight: 400;\">entary lifestyle i.e. sitting for long periods reduces may compromise muscle function which may increase the risk of sciatic nerve irritation</span></li>\n 	<li aria-level=\"1\"><em><strong>Dy</strong></em><b><i>sfunction of muscles, joints or nerves coming from other parts of the body so the body compensates &amp; may alter the biomechanical load on the nerve</i></b></li>\n</ul>\n</li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So which of the above can we as trainers and coaches help with?</span>\n\n<span style=\"font-weight: 400;\">Some, but not all, right? </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Some things we cannot change, some we need to be mindful of and others are certainly what we are trained in helping with. However the more we understand our clients lifestyles, risk factors and health conditions the better we can be a part of the multidisciplinary team supporting them through behaviour change, better eating habits and also guided movement programming.</span>\n\n&nbsp;\n<h2><b>CLIENT EXAMPLE ONE </b></h2>\n&nbsp;\n<h2><b>Any client that is symptomatic</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">For a health and activity practitioner to work with a client with sciatica symptoms (diagnosed or not!) we MUST stay in our lane for an appropriate duty of care of the suffering client.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To keep within our scope of practise we might want to consider these factors:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly the client MUST have a diagnosis or clearance from someone who is qualified to do so.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THEN if the client approaches us we must ask them for the written report that guides us on what that AHP recommends or suggests of what we can or can\'t do. (*Keep your eye out for the SafetyNet project coming very soon).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once you have this guidance in a hard copy like a report or email, this protects everyone involved. It also gives you something to work from that creates increased confidence in what you CAN do.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Following the guidelines given to you in writing and using your own previous training along with common sense to support your client in moving well. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are some examples of diagnosis and treatment for sciatica made by an AHP.</span>\n\n&nbsp;\n<h2><b>Diagnosis &amp; Treatment of Sciatica </b></h2>\n&nbsp;\n<h3><b>Sciatic neuropathy</b><span style=\"font-weight: 400;\"> - this is when the body of the sciatic nerve is affected </span></h3>\n<h3><b>Herniated disks </b><span style=\"font-weight: 400;\">- causes about 90% of sciatic symptoms although new theories are being discussed, historically, these can occur when the first layer of the cartilage cracks. The thick, clear substance that is there to keep our clients mobile and cushioned can compress your sciatic nerve, causing leg pain and even numbness. </span></h3>\n<h3><b>Spinal stenosis - </b><span style=\"font-weight: 400;\">or lumbar spinal stenosis is an abnormal narrowing of your spinal canal. This narrowing can result in pressure on the spinal cord and sciatic nerve roots.</span></h3>\n<h3><b>Spondylolisthesis - </b><span style=\"font-weight: 400;\"> can be associated with degenerative disc conditions in seniors, but can be traumatic in juniors. When one vertebrae shunts forward over another, the extended spinal bone can pinch nerves that make up your sciatic nerve.</span></h3>\n<h3><b>Piriformis syndrome - </b><span style=\"font-weight: 400;\">is when the piriformis muscle involuntarily contracts or tightens, causing sciatica. </span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Treatment that is non operative is pain killers, physiotherapy or corticosteroid injections. </span>\n<h2></h2>\n<h2><b>CLIENT EXAMPLE TWO</b></h2>\n&nbsp;\n<h2><b>Asymptomatic client at increased risk of sciatica </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When there are no symptoms present but your client is overweight, has a history of back pain and sitting a lot there may be an increased risk of sciatica. However if we are happy after a full consultation that the individual is within our scope of practise we may be able to use some of the techniques listed below to reduce the risk of an onset of sciatica. </span>\n\n&nbsp;\n<h2><b>CLIENT EXAMPLE THREE</b></h2>\n&nbsp;\n<h2><b><em>Asymptomatic</em> client with ‘performance’ issues. </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">These are the ones we can certainly look at testing for sciatic nerve tension. They might say things like </span><span style=\"font-weight: 400;\">they don’t feel their glutes firing. They might say they aren\'t progressing in their lifts or running times. They may tell you they have tight hamstrings, as if it\'s a normal thing.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">…could these be warnings that they are at risk of sciatica? YUP possibly.</span>\n\n<span style=\"font-weight: 400;\">Go back and look at the last time on the list of risk factors again….did ya see? Pretty much every client eh! The lifestyles we all lead these days pose a threat to this common modern ailment.</span>\n\n&nbsp;\n<h2><b>How can we test sciatic nerve mobility?</b></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-27964\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/shutterstock_1756367075-scaled.jpg\" alt=\"\" width=\"556\" height=\"417\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes absolutely! In my opinion, anyone working with the human body should endeavour to gain MSK assessment skills for all the reasons you’re still reading this blog! PT’s included.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider that the nervous system is one single continuum, a kinetic chain effect if you like. This means that as we saw earlier symptoms can be felt in different parts of the body to the affected area. Sensations can travel down the legs to the toes for example. This can give us the ability to test and identify if a sensation is nerve tension or not. </span>\n\n&nbsp;\n\n&nbsp;\n<h2><b>Testing the sciatic nerve </b></h2>\n&nbsp;\n\nFundamentally my strongest advice is to attend a classroom based practical course that teaches you not only how to handle a client at risk of sciatica but also more objective/ evidence bases methods of assessing your client\'s body. During our <a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">Pelvic &amp; Spine Biomechanics Workshop</a>, not only will you receive 2 online classrooms to watch before during and after your training for revision and practise, you will also join us for 2 days of experiencing how to use practical evidence based skills of assessment. During these 2 jam packed days of practical assessment and exercise skills we will teach you how to use the Straight Leg Raise test for accurately identifying sciatic nerve tension along with more than 20 other physical assessments for the pelvis &amp; spine.\n\nThe fact you have attended a training session face to face means insurance companies will see your ability far more favourably than a practitioner who only has evidence of being trained online in these types of skills.\n\n&nbsp;\n\nHowever here is something to demonstrate how (with a client who does NOT have sciatica) we can potentially test for nerve tension literally on the gym floor/bench.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First of all it\'s important to understand the visco-elasticity of the nerves. The nerves don\'t really like to be stretched, and certainly not quickly, if they are stiff or immobile somewhere in the body. So when testing we must ask the client to move very slowly.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let\'s consider the anatomy of the sciatic nerve specifically and positions that mean the sciatic nerve becomes <em>tensioned.</em> For example the sciatica nerve passes down the back of the body and divides to pass down the back of both legs. This means w</span><span style=\"font-weight: 400;\">e could ask our client to sit with the hips at 90 degrees and if possible on a high seat or table that means both thighs are fully supported while the feet are hanging freely off the floor.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now asking the client to relax the hands behind the body like this:</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27973\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8673-scaled.jpg\" alt=\"\" width=\"361\" height=\"361\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We ask them to slowly start to slump forwards, rounding the back to lengthen the sciatica nerve in the upper body, if</span><span style=\"font-weight: 400;\"> they dont get any tension here then we ask them to start to extend one knee slowly like this:</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27974\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8671-scaled.jpg\" alt=\"\" width=\"372\" height=\"372\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Until they feel THE BEGINNING of tension or tightness.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If they do and this sensation is in the upper body ask them to stay in that position and to simply lower the leg like this:</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27975\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8674-scaled.jpg\" alt=\"\" width=\"374\" height=\"374\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If the sensation in the upper body changes in anyway this confirms nerve tension because the haven\'t altered the position of the area of the body were they felt the tension.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If however the sensation occurs in the lower body, ask them to simply lift the chin, like this:</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27976\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8675-scaled.jpg\" alt=\"\" width=\"390\" height=\"390\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If this results in a change of the sensation in their leg, again this confirms nerve tension because they aren\'t moving the leg to feel the change there.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In other words; by moving the opposite end of the body if the sensation changes in any way it will likely be nerve tension they are feeling as opposed to a muscle tension.</span>\n\n&nbsp;\n\nAlternatively they could also simply move the ankle like this since the nerve also passes behind the ankle;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27977\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8676-scaled.jpg\" alt=\"\" width=\"386\" height=\"386\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">NOTE: THIS IS NOT A DIAGNOSTIC TEST FOR SCIATICA - merely sciatic nerve mobility</span></h2>\n&nbsp;\n\nWhat I hope you will find interesting is that there is still a lot we can do for our clients when learning about what can happen when the sciatic nerve simply becomes tight which could indicate a risk of sciatica but also could present other movement problems....\n\n&nbsp;\n<h2><b>Interesting fact:</b></h2>\n&nbsp;\n<h2><b>Did you know…..</b></h2>\n&nbsp;\n<h2 style=\"text-align: center;\"><i><span style=\"font-weight: 400;\">It has been demonstrated that reduced nerve mobility inhibits muscle performance</span></i></h2>\n<h2 style=\"text-align: center;\"></h2>\n<h2 style=\"text-align: center;\"><span style=\"font-weight: 400;\">Greening J, Smart S, Leary R, Hall-Craggs M, </span></h2>\n<h2 style=\"text-align: center;\"><span style=\"font-weight: 400;\">O\'Higgins P, Lynn B , Butler, DS. Lancet. (1999)</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine the anatomy of the sciatic nerve and the closely related anatomy &amp; muscles we spoke about previously in <a href=\"https://www.biomechanicseducation.com/a-pts-guide-to-sciatica/\" target=\"_blank\" rel=\"noopener\">A PT\'s Guide to Sciatic Part 1 </a></span>\n\n<span style=\"font-weight: 400;\">Also consider how brilliant the body is at compensating for this by altering our client\'s muscle tone and therefore quality of movement </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider a seated leg extension exercise for example….</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27960\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/IMG_8658.jpg\" alt=\"\" width=\"478\" height=\"473\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To perform this exercise the quads need to overcome:</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Gravity</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Set resistance </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Tension in opposing tissues </span>\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"2\"><span style=\"font-weight: 400;\">knee flexors</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"2\"><span style=\"font-weight: 400;\">knee capsule</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"2\"><span style=\"font-weight: 400;\">sciatic nerve </span></li>\n</ul>\n</li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">No.s 1 &amp; 2 I think we understand pretty well but let\'s take No. 3 into a bit more detail in relation to the sciatica nerve. </span><i><span style=\"font-weight: 400;\">The mechano-receptor activity in the sciatic nerve can inhibit the quadriceps contraction</span></i><span style=\"font-weight: 400;\">. What does this mean? Well this means that if the sciatic nerve is inhibited theoretically any of its links, anywhere in the body could impede the function or contraction efficiency of a muscle and in this example the function of the quads. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So much so in a study we saw improved quad strength output of 50% in 10 days AFTER using sciatic nerve mobilisations!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So there is a lot we CAN do while staying on our lane </span>\n\n&nbsp;\n<h1><b>NEXT TIME….</b></h1>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Can we mobilise the sciatica nerve? if so how?</span></h2>\n<p class=\"p1\">Planning how to mobilise the nerves in preparation for client’s sport or chosen activity</p>\n&nbsp;\n<h2 class=\"p1\">Finally did you know….?</h2>\n<p class=\"p1\"><span class=\"s1\">The risk factors listed here can start as biomechanical dysfunction</span><span class=\"Apple-converted-space\"> </span></p>\n\n<h3 class=\"p1\">Ok so what?<span class=\"Apple-converted-space\"> </span></h3>\n<p class=\"p1\">Well the best role we can play as PTs is in risk reduction, performance optimising &amp; appropriate referral</p>\n<p class=\"p1\">Otherwise known as PREHAB – <span class=\"s1\">I also like something I heard called MEHAB, My Rehab, quite nice for your PTs</span></p>\n<p class=\"p1\">We can also play a role in POST rehab</p>\n<p class=\"p1\">Since rehab programmes consist of exercise and THIS really is our expertise</p>\n&nbsp;\n\nReferences:\n\n<span style=\"font-weight: 400;\">B W Koes, M W van Tulder, W C Peul. (2007) Diagnosis and treatment of sciatica. The British Medical Journal. </span><span style=\"font-weight: 400;\">334</span><span style=\"font-weight: 400;\"> doi: </span><a href=\"https://doi.org/10.1136/bmj.39223.428495.BE\"><span style=\"font-weight: 400;\">https://doi.org/10.1136/bmj.39223.428495.BE</span></a><span style=\"font-weight: 400;\"> </span>\n\n<a href=\"https://www.sciencedirect.com/science/article/pii/S2214854X16300218#!\"><span style=\"font-weight: 400;\">Lewis, S. Jurak, J. Lee, C. Lewis, R. Gest,T</span></a><span style=\"font-weight: 400;\">.  (2016)  </span>Anatomical variations of the sciatic nerve, in relation to the piriformis muscle.<span style=\"font-weight: 400;\">Science Direct</span> <a href=\"https://www.sciencedirect.com/science/journal/2214854X/5/supp/C\"><span style=\"font-weight: 400;\">Volume 5</span></a><span style=\"font-weight: 400;\">, Pages 15-19</span>\n\n<span style=\"font-weight: 400;\">Spine-Health (2020) Sciatic Nerve Anatomy. </span><a href=\"https://www.spine-health.com/conditions/spine-anatomy/sciatic-nerve-anatomy\"><span style=\"font-weight: 400;\">https://www.spine-health.com/conditions/spine-anatomy/sciatic-nerve-anatomy</span></a><span style=\"font-weight: 400;\"> - accessed 7/6/21</span>\n\n<span style=\"font-weight: 400;\">TeachMeAnatomy (date unknown) The Sciatic Nerve </span><a href=\"https://teachmeanatomy.info/lower-limb/nerves/sciatic-nerve/\"><span style=\"font-weight: 400;\">https://teachmeanatomy.info/lower-limb/nerves/sciatic-nerve/</span></a><span style=\"font-weight: 400;\"> - accessed 7/6/21</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h1>Would you like to learn how to assess your client\'s sciatic nerve?</h1>\nWhy not join us for our extremely popular <a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">Pelvic &amp; Spine Biomechanics Workshop?</a>\n\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">Nottingham July 24th/25th</a>\n\nNottingham Sept 11th/12th\n\nLondon Sept 23rd/24th\n\n&nbsp;\n\n<img class=\"wp-image-23147 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6608-scaled.jpg\" alt=\"\" width=\"487\" height=\"325\" /><img class=\"wp-image-23146 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/DSC_7052-scaled.jpg\" alt=\"\" width=\"494\" height=\"329\" /><img class=\"wp-image-23145 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6730-scaled.jpg\" alt=\"\" width=\"503\" height=\"336\" /><img class=\"wp-image-23144 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6800-scaled.jpg\" alt=\"\" width=\"479\" height=\"320\" />','A PT\'s Guide to Sciatica - Part 2','','inherit','closed','closed','','27868-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',27868,'https://biomechanicseducation.com/?p=38639',0,'revision','',0),(38640,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<span style=\"font-weight: 400;\">You get a new client, they complete the ParQ and they say they have sciatica…..what do you do?</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Ask if they have been diagnosed by an AHP? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">If not …..ask how did they come to that decision?</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">If they researched their symptoms themselves online then maybe we should still refer them to their GP/Physio, as this could be an incorrect ‘diagnosis’? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">*Check if they have been cleared to exercise by an AHP? </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">*Ask for a letter of clearance to exercise from an AHP….with guidance? </span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you recognise any, or maybe some or even all, of these situations…?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe you have had sciatica &amp; improved your own symptoms with movements &amp; exercise? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However this series is aimed at helping PTs looking to help each client who presents with symptoms deemed as sciatica.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here is what we feel is an appropriate system of approach to what PT’s can, and also should NOT do, in these cases…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">&#x2705; This first episode will explore the definitions, symptoms, causes &amp; anatomy of sciatica</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">&#x2705; In episode 2 we will start looking at tests we might or shouldn\'t use with someone with sciatica </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">&#x2705; Finally episode 3 will be about ideas on how to train a client with sciatica (*if cleared to do so by an AHP)</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27749\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1648667119-scaled-1.jpg\" alt=\"\" width=\"437\" height=\"291\" />\n<h2></h2>\n<h2></h2>\n&nbsp;\n\n&nbsp;\n<h2><b>Definitions &amp; Symptoms of Sciatica</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Searching the internet you will likely find definitions like….</span>\n\n<i><span style=\"font-weight: 400;\">Pain that radiates along the anatomy of the sciatic nerve, usually asymmetrically in the lower back, hips, buttocks &amp; back of leg </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The problem is there are a multitude of causes (&amp; combinations of causes) of sciatica that can present these symptoms, which is why we should develop a multidisciplinary team that includes AHPs that we can rely on to evaluate our clients &amp; advise us on how to progress </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">AHP’s have different skills &amp; training to be be able to assess for more sinister causes </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Many synonyms for sciatica appear in the literature, such as lumbosacral radicular syndrome, ischias, nerve root pain, and nerve root entrapment.</span></i>\n\n&nbsp;\n<h2><b>What other definitions are there..?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">&#x1f4a5;Acute sciatica. Acute sciatica is a recent onset, 4 to 8-week duration of sciatic nerve pain. ... </span>\n\n<span style=\"font-weight: 400;\">&#x1f4a5;Chronic sciatica. ... more than 8 weeks. </span>\n\n<span style=\"font-weight: 400;\">&#x1f4a5;Alternating sciatica. ... moves from one leg to the other </span>\n\n<span style=\"font-weight: 400;\">&#x1f4a5;Bilateral sciatica...felt in both legs simultaneously</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27753\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/05/Screenshot-2021-05-18-at-10.58.01-1.png\" alt=\"\" width=\"538\" height=\"335\" />\n\n&nbsp;\n\n&nbsp;\n<h2><b>Causes of Sciatica</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Note; Sciatica; it is not a medical diagnosis but </span><span style=\"font-weight: 400;\">more a descriptive term </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">In one study it was shown that about 90% of cases sciatica are caused by a herniated disc with nerve root compression, but lumbar stenoses and (less often) tumours are possible causes.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However other medical conditions that may cause sciatica include:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Lumbar degenerative disc disease, general degenerative changes in vertebrae or discs</span>\n\n<span style=\"font-weight: 400;\">Spondylolisthesis</span>\n\n<span style=\"font-weight: 400;\">Muscle spasm and/or inflammation of the lumbar and/or pelvic muscles</span>\n\n<span style=\"font-weight: 400;\">Sacroiliac joint dysfunction</span>\n\n<span style=\"font-weight: 400;\">Rarely, tumors, blood clots, or other conditions in the lower spine may cause sciatica.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The term sciatica is used because it describes the radiculopathy that occurs when one or more of the nerves that make up the large sciatic nerve are irritated or pinched. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Most cases of sciatica will get better with time and conservative (nonsurgical) care. However, some sciatica symptoms such as progressive weakness, loss of leg sensation and incontinence may indicate a potentially serious injury to the sciatic nerve and surgery may be warranted.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27750\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_312582254-1-scaled-1.jpg\" alt=\"\" width=\"409\" height=\"511\" />\n\n&nbsp;\n\n&nbsp;\n<h2><b>Anatomy of the Sciatic Nerve</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Looking at our practical anatomy series where we explore general pelvic anatomy HERE </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The sciatic nerve is the largest section of the nervous system which is a continuum throughout the body. The sciatic portion can be around 2cm thick and is most famous when it comes to the rest of the nervous system because of its common irritation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Starting from the L4-S3 then the lumbosacral plexus (</span><i><span style=\"font-weight: 400;\">plexus means an intricate network) </span></i><span style=\"font-weight: 400;\">it emerges from the piriformis, usually inferiorly, but can be present in a variety of orientations. </span>\n\n<span style=\"font-weight: 400;\">Via the gluteal region it travels posterior to the gemellus twins, obturator internus, quadratus femoris and then passes by bicep femoris. Next behind the hamstrings &amp; the beautiful adductor magnus. </span>\n\n<span style=\"font-weight: 400;\">It innervates (supplies with nerves) the calf, the anterior and lateral lower leg and some foot muscles. </span>\n\n&nbsp;\n<h2><b>Variations of the anatomy of the Sciatic Nerve</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The evidence suggests there are around 16% of us that have a variation from the ‘normal’ or most commonly expected presentation of sciatica nerve anatomy. </span>\n\n<span style=\"font-weight: 400;\">Some variations are thought to increase the risk of developing sciatica pain due to impingement, entrapment, or irritation of the nerve root.</span>\n\n<span style=\"font-weight: 400;\">In one study (Lewis et al, 2016) it was found that 89% of the cadavers anatomy analysed were of a ‘normal’ anatomic presentation. This is where the sciatic nerve divides above the piriformis muscle with one section passing through piriformis and the second portion passing below the muscle. </span>\n\n<span style=\"font-weight: 400;\">However variations found different sciatic nerve presentations where it passed over the piriformis or simply through the centre.</span>\n\n<span style=\"font-weight: 400;\">So what?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well its thought that some anatomic variants have not only higher risk but also reduced response to treatments or interventions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ultimately no one sciatica patient is the same</span>\n\n<span style=\"font-weight: 400;\">No one intervention cures all </span>\n\n<span style=\"font-weight: 400;\">Clinicians may know more about the anatomy of our client’s sciatica based on tests or questions they may have been able to do than we realise. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So lets connect and develop our multidisciplinary team to include our clients AHP’s or AHP’s who are willing to work WITH us…</span>\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Next time</span></h1>\n<span style=\"font-weight: 400;\">In Episode 2 we will start looking at tests we might or shouldn\'t use with someone with sciatica </span>\n<h2><span style=\"font-weight: 400;\">Can we test our client’s with this condition in mind?</span></h2>\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">Would you like to learn how to assess your clients Pelvic &amp; Spine Biomechanics?</a></h1>\n&nbsp;\n\n<img class=\"aligncenter wp-image-24100\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/DSC01482-scaled-1.jpg\" alt=\"\" width=\"423\" height=\"282\" />\n\n&nbsp;\n<h2><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">We have a few places left for our London 2 day workshop June Wed 9th &amp; Thur 19th.</a></h2>\n&nbsp;\n<ul>\n 	<li>Do you have clients who struggle with range of movement in their squat?</li>\n 	<li>Want to understand how you can assess the reason why their butt winks?</li>\n 	<li>Wish you knew why their shoulders just wont allow them to press overhead?</li>\n 	<li>Do you have clients who cannot maintain a straight spine during dead lifts?</li>\n 	<li>Do you have clients afraid to do certain exercises because of their physical limitations or even pain?</li>\n 	<li>Would you like to see their movement improve before your very eyes?</li>\n 	<li>Maybe YOU want to improve your own ability to move?</li>\n</ul>\nLearn how to:\n\n•Assess where limitations are coming from with a simple evidence based screening programme<span class=\"Apple-converted-space\"> </span>\n\n•Learn the relevant techniques that improve movement &amp; function of the pelvis &amp; spine\n\n<strong>Pelvic Biomechanics</strong> - In this section we look at evidence based manual assessments for the pelvis, including how to identify sub-clinical muscle spasm, the difference between structural v’s functional leg length discrepancy and a system of exercise application to improve pelvic function in your clients.<span class=\"Apple-converted-space\"> </span>\n<ul>\n 	<li>Leg Length Discrepancy <span class=\"Apple-converted-space\"> </span></li>\n 	<li>Downings Sign</li>\n 	<li>4 Sign</li>\n 	<li>Modified Thomas Test<span class=\"Apple-converted-space\"> </span></li>\n 	<li>Gillets</li>\n 	<li>Relevant iMoveFreely® exercises &amp; application</li>\n</ul>\n<strong>Spine Biomechanics</strong> - In this section we will show you how to asses &amp; correct thoracic rotation. This stunning screen can literally be a game changer in so many ways.\n<ul>\n 	<li>Quadratus Lumborum</li>\n 	<li>Sciatic Nerve<span class=\"Apple-converted-space\"> </span></li>\n 	<li>Spinal Flexion</li>\n 	<li>Spinal Extension</li>\n 	<li>Lateral Flexion</li>\n 	<li>Thoracic Rotation mobility</li>\n 	<li>Relevant iMoveFreely® exercises &amp; application</li>\n</ul>\n<strong>Spine Biomechanics Cont/d</strong>.. The Stability &amp; Control phase of training takes us to a deeper level in understanding ‘core training’ with a 3 Step assessment system.\n\n<strong>Step 1 - These Basic Core Capacity Progression Tests</strong> will help you gain a better understand of whether your client is even ready for core training.<span class=\"Apple-converted-space\"> </span>\n\n<strong>Step 2 - Core Ratios Testing</strong> is such a cool and evidence based way to determining risk.\n\n<strong>Step 3 - Finally Functional Stability Testing</strong> is essential to understand limitations from Aberrant lumbar motion, spinal hinging (kneeling and squatting) and cross pelvic syndromes.<span class=\"Apple-converted-space\"> </span>\n\nAll of the above comes with a restorative periodised exercise programmes strategy from the iMoveFreely® programme.<span class=\"Apple-converted-space\"> </span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener\">&gt;&gt;CLICK HERE TO BOOK HERE NOW&lt;&lt;</a></h1>\n\n<hr />\n\n&nbsp;\n\n<strong>References:</strong>\n\n<span style=\"font-weight: 400;\">British Medical Journal (2007) Diagnosis and treatment of sciatica. </span><a href=\"https://www.bmj.com/content/334/7607/1313\"><span style=\"font-weight: 400;\">https://www.bmj.com/content/334/7607/1313</span></a><span style=\"font-weight: 400;\"> - Accessed 18/05/21</span>\n\n<span style=\"font-weight: 400;\">Lewis, S. et al (2016) Anatomical variations of the sciatic nerve, in relation to the piriformis muscle. </span><span style=\"font-weight: 400;\">Elsevier</span><span style=\"font-weight: 400;\">. Vol 5, pp.15-19</span>\n\n<span style=\"font-weight: 400;\">Mayo Clinic (date unknown) Sciatica </span><a href=\"https://www.mayoclinic.org/diseases-conditions/sciatica/symptoms-causes/syc-20377435\"><span style=\"font-weight: 400;\">https://www.mayoclinic.org/diseases-conditions/sciatica/symptoms-causes/syc-20377435</span></a><span style=\"font-weight: 400;\"> - Accessed 18/05/21</span>\n\n<span style=\"font-weight: 400;\">NHS (2020) Sciatica </span><a href=\"https://www.nhs.uk/conditions/sciatica/\"><span style=\"font-weight: 400;\">https://www.nhs.uk/conditions/sciatica/</span></a><span style=\"font-weight: 400;\"> -  Accessed 18/05/21</span>\n\n<span style=\"font-weight: 400;\">Spine Health (2019) What you need to know about sciatica </span><a href=\"https://www.spine-health.com/conditions/sciatica/what-you-need-know-about-sciatica?source=pop-block\"><span style=\"font-weight: 400;\">https://www.spine-health.com/conditions/sciatica/what-you-need-know-about-sciatica?source=pop-block</span></a><span style=\"font-weight: 400;\"> - Accessed 18/05/21</span>\n\n&nbsp;','A PT\'s Guide to Sciatica - Part 1','','inherit','closed','closed','','27746-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',27746,'https://biomechanicseducation.com/?p=38640',0,'revision','',0),(38641,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','Shall we explore the final piece in this series to see if we can recall muscles in the foot and ankle to deepen our understanding of foot mechanics?\n\nA fascinating finisher for you.....\n\n&nbsp;\n<h2><b>Gastrocnemius </b></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27322\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/Gastroc-scaled-1.jpg\" alt=\"\" width=\"644\" height=\"362\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Gastrocnemius is also called a ‘calf’ muscle because it forms the large ‘belly’ of the leg &amp; those Greeks thought it resembled a calf’s stomach/belly </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Coming from the Greek words </span>\n\n<i><span style=\"font-weight: 400;\">gaster</span></i><span style=\"font-weight: 400;\"> =  belly </span>\n\n<i><span style=\"font-weight: 400;\">kneme</span></i><span style=\"font-weight: 400;\"> = leg</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is the superficial of the 2 calf muscles with 2 heads that attach to the condyles (nobly bits) on the back of the femur. It also travels down to a tendon that becomes part of the Achilles (calcaneal) tendon at the back of the ankle/heel.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So for this reason, when it contracts or shortens it will plant the toes down into plantar flexion which is also what happens when you stand on tiptoe.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However if you wanted to lengthen it fully you would need to, not only dorsiflex the ankle (pull the toes upwards), but also extend your knee to take up the slack there too! Try this by taking one heel back behind you, with the toes pointing forwards, knee straight and heel down...you should feel a stretch in the back of your leg through the calf. In fact for many this could feel REEEEAAAAAAALLLLY tight!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Check out all the different ‘Gastrocy’ shapes out there next time you are around lots of bare legs or people in shorts or leggings!</span>\n<h2></h2>\n&nbsp;\n\n&nbsp;\n<h2><b>Soleus </b></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27323\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/soleus-scaled-1.jpg\" alt=\"\" width=\"362\" height=\"482\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Soleus is the Latin word for a flat sort of sandal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Deep to (underneath) gastrocnemius, this massive ‘pumper’ has an important job because it acts to pump blood back up the body, against gravity. Another great reason to suggest to our clients why walking at least 10k steps daily might be a good idea! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Soleus is also bigger than you think because much of its anatomy is hidden behind the gastrocnemius. It may well be flatter than gastroc but it’s muscle portion is certainly longer!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Starting on the back of the tibia &amp; fibula it then travels down to the calcaneal (Achilles) tendon, onto the calcaneus (heel bone). </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is also responsible for pointing your toe like it’s partner, Gastrocnemius BUT Soleus can be lengthened or stretched even when the knee is flexed due to its anatomy NOT crossing the knee joint!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if you wanted to see how it compares with the previous gastrocnemius stretch try doing what you did before…..place your heel down behind your midline, toe pointing forwards but this time, bend the knee and lower the body, keeping the heel on the floor. You should feel the Soleus stretch a little lower down. </span>\n\n<span style=\"font-weight: 400;\">You could encourage a client to feel both variations too!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Gastrocnemius &amp; Soleus are also known as </span><i><span style=\"font-weight: 400;\">‘triceps surae</span></i><span style=\"font-weight: 400;\">’ because it means 3 headed muscles.</span>\n\n&nbsp;\n<h2><b>Plantaris</b></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27324\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/plantaris-1-1.png\" alt=\"\" width=\"315\" height=\"443\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">This slender muscle is considered </span><i><span style=\"font-weight: 400;\">unimportant</span></i><span style=\"font-weight: 400;\"> or an ‘accessory’ muscle…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What is an accessory muscle!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">An accessory muscle provides assistance in movement but isn’t classed as primarily responsible for it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When it comes to the Plantaris muscle 8-12% of us don\'t have one! (or 7-20% depending which article you read)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So by that calculation 88-92% of us DO have one which in MY book makes it a valid muscle </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What do you think? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sweeping from the outside of the lateral femur, across the back of the knee &amp; down to the Achilles’ tendon, (also known as <em>tendo calcaneus</em>) it has the longest tendon in the body!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whatever your opinion about Plantaris it flexes the knee &amp; plants the foot down (plantar flexion)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A super short muscle belly that looks like a little rope, it also assists in allowing you to stand on tiptoes to reach up high into a cupboard</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Go Plantaris!!</span>\n\n&nbsp;\n<h2><b>Fibularis Longus &amp; Fibularis Brevis</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">....also known as the <strong>Peroneals</strong> OR <strong>Peroneus Longus &amp; Brevis</strong> even!</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-27325 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/Fibularis-longus-scaled-1.jpg\" alt=\"\" width=\"284\" height=\"379\" />\n\n<img class=\"aligncenter wp-image-27326\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/fibularis-brevis-scaled-1.jpg\" alt=\"\" width=\"281\" height=\"375\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Peroneals comes from the Greek word Perone (pronounced Pair-uh-knee) which was their word for the pin of a brooch or a buckle.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because the Greeks felt that the fibula looked like a pin at the back of the ‘tibia’ broach! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How to remember? Place your hands on the side of your lower legs, slide them upwards (over your perennials) towards your ‘pair uh knees’!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However these days they are being called the Fibularis muscles which should be even easier to remember since thats where your fibula is! It depends what resonates in your memory I guess! </span>\n\n<span style=\"font-weight: 400;\">Fibularis Longus is the long one, Fibularis Brevis the shorter one!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Fibularis Longus attaches from the proximal (upper) portion of the fibular &amp; Fibularis Brevis joins in from the distal (lower) portion to travel down to the ‘plantar’ surfaces of certain tarsal &amp; metatarsal bones, meaning they play a role in the movement of the ankle. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Fibularis Longus is a plantar flexor &amp; everts the foot - meaning it turns the sole outwards. Through its tendon it also supports the arch of the foot.....so really multi tasking!!!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Fibularis Brevis helps his brother out through everting the foot too</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Interesting fact; </span>\n\n<span style=\"font-weight: 400;\">Fibularis Longus contributes to BOTH pronation &amp; supination! </span>\n\n&nbsp;\n<h2><b>Tibialis Anterior</b></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27327\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/tib-ant-scaled-1.jpg\" alt=\"\" width=\"362\" height=\"483\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This bruiser sits on the front (anterior) of your tibia, hence tibialis anterior!</span>\n\n<span style=\"font-weight: 400;\">From the top lateral nobly bit to medial (inside) &amp; underneath the first cuneiform, a bone that makes up part of the arch of the foot.....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This means it is able to lift, or dorsiflex, the forefoot. It also inverts (turns in the underside of the foot) &amp; adducts the forefoot towards the midline. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So it should allow you to sustain an arch in your foot. The arch is important for supination, or ‘toe off’ when walking as it gives rigidity by ‘locking’ the midtarsal joints</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Supination is the propulsion phase when walking </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Tibialis Anterior also eccentrically decelerates your foot as you heel strike while pronated. It is often inhibited &amp; an antagonist to those ‘tight’ calves......hhhhmmmm....  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maaaaaayyybbbeeee it’s the Tibialis Anterior that inhibits those calves!?!!!???</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Extends, dorsiflexes &amp; everts by attaching to the lateral tibia to medial cuneiform &amp; base of 5th metatarsal</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Fascinating eh!</span>\n\n&nbsp;\n<h2><b>Extensor Digitorum Longus</b></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27328\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-digitorum-longus-scaled-1.jpg\" alt=\"\" width=\"428\" height=\"428\" />\n\n&nbsp;\n\nIt <em>extends</em> the <em>digits</em> &amp; is <em>long</em>....\n\n<span style=\"font-weight: 400;\">In fact it extends 2-5th toes, dorsiflexes ankle &amp; everts foot by attaching from the medial anterior fibula to phalanx of the first toe</span>\n\n&nbsp;\n<h2><b>Extensor Hallucis Longus</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27329\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-hallucis-longus-scaled-1.jpg\" alt=\"\" width=\"331\" height=\"552\" />\n\n&nbsp;\n\n&nbsp;\n\nIt <em>extends</em> the <em>hallux</em> &amp; is <em>long</em>....\n\n<span style=\"font-weight: 400;\">So it extends first toe, dorsiflexes ankle &amp; inverts foot by attaching from the lateral condyle of the tibia to middle phalanges of 2-5th toe </span>\n\n&nbsp;\n<h2><b>Tibialis Posterior </b></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27330\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/tib-post-scaled-1.jpg\" alt=\"\" width=\"379\" height=\"379\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So this dude is in the BACK of the lower leg....yup you guessed it.....posterior to (behind) the tibia </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A stabilising muscle that supports the arch of the foot, i</span><span style=\"font-weight: 400;\">t can do this because it attaches from the upper lateral part of the tibia &amp; upper medial part of the fibula....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then inserts down onto the navicular (meaning ‘little ship’ as this bone is boat shaped) &amp; medial cuneiform (Latin for ‘wedge-shaped’)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Takes care of plantar (planting down to the ground) flexion, along with its calf buddies, &amp; inversion of the sole....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...Therefore also a potential contributor to adults presenting with flat feet when dysfunctional or inhibited....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">....by what? </span>\n\n<span style=\"font-weight: 400;\">Think &#x1f914; antagonistic.... maybe!?!</span>\n\n&nbsp;\n<h2><b>Flexor Digitorum Longus</b></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27331\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-longus-scaled-1.jpg\" alt=\"\" width=\"341\" height=\"454\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Flexes the 2nd-5th toes &amp; is a weak plantar flexor of the ankle while inverting the sole of the foot by attaching from middle posterior tibia to phalanges of 2-5th toes</span>\n\n&nbsp;\n<h2><b>Flexor Hallucis Longus</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27332\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-hallucis-longus-scaled-1.jpg\" alt=\"\" width=\"428\" height=\"428\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Flexes the Hallux or first toe &amp; another weak plantar of ankle while inverting the foot by attaching to the middle posterior fibula to phalanx of first toe </span>\n\n&nbsp;\n<h2><b>Other muscles of the foot!</b></h2>\nWe could go on but how about you do some homework now?........why not research these little foot movers.....?\n<h3>Origin? Insertion? Action?</h3>\n<span style=\"font-weight: 400;\">Extensor digitorum brevis</span>\n\n<span style=\"font-weight: 400;\">Flexor digitorum brevis</span>\n\n<span style=\"font-weight: 400;\">Adductor hallucis</span>\n\n<span style=\"font-weight: 400;\">Adductor digiti minimi</span>\n\n<span style=\"font-weight: 400;\">Extensor digitorum brevis</span>\n\n<span style=\"font-weight: 400;\">Flexor hallucis brevis </span>\n\n<span style=\"font-weight: 400;\">Adductor hallucis </span>\n\n<span style=\"font-weight: 400;\">Flexor digiti minimi brevis </span>\n\n<span style=\"font-weight: 400;\">Quadratus plantae</span>\n\n<span style=\"font-weight: 400;\">Plantar interossei</span>\n\n<span style=\"font-weight: 400;\">Dorsal interossei</span>\n\n<span style=\"font-weight: 400;\">Lumbricals of the foot</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-27333 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-hallucis-brevis-scaled-1.jpg\" alt=\"\" width=\"335\" height=\"251\" /><img class=\"aligncenter wp-image-27334\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-digitorum-brevis-scaled-1.jpg\" alt=\"\" width=\"348\" height=\"261\" />\n\n<img class=\"wp-image-27335 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-brevis-scaled-1.jpg\" alt=\"\" width=\"411\" height=\"308\" /><img class=\"aligncenter wp-image-27336\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-hallucis-brevis-scaled-1.jpg\" alt=\"\" width=\"458\" height=\"343\" />\n\nDelgado, Gonzalo J. et al (2002). \"Tennis Leg: Clinical US Study of 141 Patients &amp; Anatomic Investigation of Four Cadavers with MR Imaging &amp; US1\". Radiology. 224 (1): 1129. doi:10.1148/radiol.2241011067. PMID 12091669\n\n<span class=\"reference-text\"><cite id=\"CITEREFFreemanJacobsonFogg2008\" class=\"citation journal cs1\">Freeman, A. J. et al (2008). \"Anatomical variations of the plantaris muscle &amp; a potential role in patellofemoral pain syndrome\". Clinical Anatomy. 21 (2): 178–81. doi:10.1002/ca.20594.PMID 18266282 </cite></span>\n\n<span class=\"reference-text\"><cite id=\"CITEREFSpina2007\" class=\"citation journal cs1\">Spina, A. A. (2007). \"The plantaris muscle: Anatomy, injury, imaging, and treatment\". </cite></span><span class=\"reference-text\"><cite id=\"CITEREFSpina2007\" class=\"citation journal cs1\">The Journal of the Canadian Chiropractic Association. 51 (3): 158–65. PMC 1978447. PMID 17885678 </cite></span>\n\n<hr />\n\n<h1>Would you like to learn how to assess your clients feet?</h1>\nDo you feel like this is an area of the body you have yet to master?\n\nWould you like a simple way of understanding &amp; interpreting foot biomechanics to help more clients in more ways?\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/introduction-to-the-foot-posture-index-online-cpd/#tab-description\" target=\"_blank\" rel=\"noopener\">CLICK HERE &gt;&gt;&gt; Introduction to the Foot Posture Index....</a></h1>','Foot Biomechanics Part 10 -  The Muscles of the Foot & Ankle','','inherit','closed','closed','','27321-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',27321,'https://biomechanicseducation.com/?p=38641',0,'revision','',0),(38642,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<span style=\"font-weight: 400;\">So here we are at the lowest part of the lower extremity &amp; some anatomy that is often blamed, &amp; also the recipient, for so many presentations for biomechanical issues. </span>\n\n<span style=\"font-weight: 400;\">When studying the anatomy of the foot we should include the ankle to help to understand foot biomechanics because of its involvement in gait.</span>\n\n&nbsp;\n<h1><b>The Ankle </b></h1>\n&nbsp;\n\n<img class=\"aligncenter wp-image-27207\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/shutterstock_199824647-scaled-1.jpg\" alt=\"\" width=\"406\" height=\"406\" />\n<h2></h2>\n<h2><b>Tibia &amp; Malleolus (Medial)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The ankle is made up of the tibia (or shin bone) named after a flute or pipe due to its shape (and who knows what they did with bodies back when they were naming them? Did they make human tibia into flutes or pipes?)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">At this distal (distant/furthest away) end upon its medial side (inside) there is a malleolus (latin for small hammer or mallet) or bump that you can feel there. We all have varying shapes of medial malleolus protuberances. Some are small, some large, some are pointier hills than others &amp; some present as very smooth mounds.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some people have asymmetrical medial malleolus left to right </span><i><span style=\"font-weight: 400;\">naturally</span></i><span style=\"font-weight: 400;\">. So we should always keep an open mind to the effects of learning anatomy from one skeleton or one book of illustrations that only show small samples of shapes and sizes of any body!</span>\n\n<span style=\"font-weight: 400;\">Also these ‘normal’ asymmetries can, when measuring things like leg length discrepancies, result in a challenge for any practitioner! It is also why postural assessment &amp; alignment are not accurate measures of ‘natural’ positioning of an individual\'s bones.</span>\n\n&nbsp;\n<h2><b>Fibula &amp; Malleolus (Lateral)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The fibula makes up the lateral part of the connecting surfaces between the lower leg &amp; foot bones. Named after a clasp or brooch due apparently to how it looks like the pin of a brooch..</span>\n\n<span style=\"font-weight: 400;\">It has a lateral malleolus and so is considered part of the outside of the ankle. </span>\n\n<span style=\"font-weight: 400;\">The tibia &amp; fibula articulate with the Talus to make the talocrural joint.</span>\n\n&nbsp;\n<h1><b>The Rear Foot</b></h1>\n&nbsp;\n<h2><b>Talus</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The tibia &amp; fibula sit on top of the talus. Talus means </span><i><span style=\"font-weight: 400;\">slope or outcrop of rock at the base of a cliff </span></i><span style=\"font-weight: 400;\">which makes sense when you look at its anatomical location &amp; shape. It has 2 x ‘talus heads’ that can be palpated at the front of the ankle by a Biomechanics Coach to test an individual\'s </span><i><span style=\"font-weight: 400;\">natural foot alignment, </span></i><span style=\"font-weight: 400;\">to identify if there is a risk in the ascending biomechanical force being produced.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It also sits upon the calcaneus to create the subtalar joint (STJ) </span>\n\n<span style=\"font-weight: 400;\">The STJ is very important when looking to understand the triplanar actions of pronation &amp; supination. The STJ is literally the centre piece for these actions. </span>\n\n<span style=\"font-weight: 400;\">The congruence of its connecting surfaces (the bottom of the talus &amp; the top of the calcaneus) should allow a certain amount of movement but not too much. </span>\n\n<span style=\"font-weight: 400;\">So when you consider the load on top (pretty much the entire body) &amp; the multiple moves we put our bodies through, the ‘fashion’ shoes we wear from the early phases of walking, through teenage years &amp; then adulthood…..phew!.....it is no surprise many of us eventually experience a loose STJ!</span>\n\n&nbsp;\n<h2><b>Calcaneus</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This heel bone is below the talus &amp; takes the shock when the heel strikes. Shock isn’t all bad either! </span>\n\n<span style=\"font-weight: 400;\">This is the bottom surface of the STJ &amp; has an infinite axis, complex articulations &amp; is the key to </span><i><span style=\"font-weight: 400;\">transferring</span></i><span style=\"font-weight: 400;\"> shock. The STJ plays a major role in our ability to absorb the ground reaction force when walking/running, which is the reason why we want to pronate.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27206\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/Screenshot-2021-04-11-at-07.42.06-1.png\" alt=\"\" width=\"359\" height=\"490\" />\n<h2><b>Navicular</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The navicular is positioned in front of the calcaneus &amp; got its name from being (apparently) </span><i><span style=\"font-weight: 400;\">boat shaped or like a small ship</span></i><span style=\"font-weight: 400;\">. This has a bony prominence on the inside that can be used to identify if an individual has a propensity for pronation due to a low arch, when observed in relation to the medial malleolus &amp; the hinge point of the hallux, or big toe. </span>\n\n&nbsp;\n<h2><b>Cuboid</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Cuboid sits to the outer side of the navicular towards the outer edge of the foot. With 6 sides its known as a rectangular prism or quadrilateral.</span>\n\n&nbsp;\n<h2><b>Cuneiforms</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">These 3 bones (Medial, middle &amp; lateral) in front of the navicular &amp; to the side of the cuboid on the inside of the foot. Cuneiform means wedge.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The midtarsal joint (MTJ) is a combined articulation of talonavicular joint &amp; calcaneocuboid joints. It is also the divide between the rear foot (talus, calcaneus) &amp; the midfoot (navicular &amp; cuboid).</span>\n\n<span style=\"font-weight: 400;\">Another really important bony meeting place since if this joint becomes lax, it too can result in a loose foot that struggles to re-supinate during gait.</span>\n\n&nbsp;\n<h1><b>The Forefoot </b></h1>\n&nbsp;\n<h2><b>Metatarsals </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The origins of the word Metatarsal comes from ‘middle bones of the foot’ &amp; so describes nicely where they can be found!</span>\n\n&nbsp;\n<h2><b>Phalanges</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Phalanges literally means ‘log’ in Greek &amp; represents those longer sections of the toes (as they do in the fingers too)</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-27205\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/04/Screenshot-2020-09-14-at-10.58.59.png\" alt=\"\" width=\"417\" height=\"422\" />\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">References:</span></h3>\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/20307420/#:~:text=The%20midtarsal%20joint%20(MTJt)%20consists,midfoot%20(navicular%20and%20cuboid)\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Tweed,J. L. et al.( </span><span style=\"font-weight: 400;\">2008) Elsevier</span><span style=\"font-weight: 400;\"> Mar 14</span><span style=\"font-weight: 400;\"> - accessed 11/04/21. The Function of the Midtarsal Joint - A review of the literature. </span><span style=\"font-weight: 400;\">Volume 18, Issue 2</span><span style=\"font-weight: 400;\">, June 2008, Pages 106-112</span></a>\n\n<a href=\"https://online.boneandjoint.org.uk/doi/full/10.1302/2058-5241.2.160050\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Krahenbuhl, N et al. (2017). Efort. 6 June 2017 The Subtalar Joint - A complex mechanism. Vol 2. No. 7. Accessed 12/04/21.</span></a>\n\n<a href=\"https://teachmeanatomy.info/lower-limb/bones/bones-of-the-foot-tarsals-metatarsals-and-phalanges/\" target=\"_blank\" rel=\"noopener\"><b>Teach me anatomy - Bones of the foot: Tarsals, Metatarsals &amp; Phalanges - Accessed 12/04/21. </b></a>\n\n<hr />\n\n<h2>Next time Foot Biomechanics Part 10 - The Muscles of the Foot</h2>\n&nbsp;\n<h1>Would you like to learn an evidence based system to test your client\'s foot &amp; ankle biomechanics?</h1>\n<h1></h1>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/introduction-to-the-foot-posture-index-online-cpd/#tab-description\" target=\"_blank\" rel=\"noopener\">CLICK HERE FOR &gt;&gt;Introduction to The Foot Posture Index</a></h1>\n&nbsp;\n\n&nbsp;','Foot Biomechanics Part 9 -  The Bones of the Foot & Ankle','','inherit','closed','closed','','27204-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',27204,'https://biomechanicseducation.com/?p=38642',0,'revision','',0),(38643,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<h2><span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Through an endeavour to improve the quality of our questions we can often find the answer we are looking for.”</span></i></h2>\n<h2></h2>\n<h2><i><span style=\"font-weight: 400;\">“Great questions result in solutions rather than great answers!</span></i><span style=\"font-weight: 400;\">”  Rachel Frances Thomson, (2020)</span></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26962\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/benjamin-davies-JrZ1yE1PjQ0-unsplash-scaled-1.jpg\" alt=\"\" width=\"543\" height=\"362\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all know what SMART goal setting means, right?</span>\n\n<span style=\"font-weight: 400;\">Some of us also know how to identify a great research paper </span>\n\n<span style=\"font-weight: 400;\">However rarely do I get asked really great questions </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what is the question? Haha see what I did there….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Due to the nature of my social media posts &amp; based upon both my skills as a Biomechanics Coach, iMoveFreely Instructor &amp; also as a teacher of Biomechanics Education I get asked questions literally on a daily basis…..and I love it!</span>\n\n<span style=\"font-weight: 400;\">However due to the volume of common questions I decided rather than typing to respond to every single private message (which I do endeavour to do by the way) I would run a free live Biomechanics Q&amp;A though lockdown as a way to:</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Give back through the tough times while we all had the opportunity</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Save having to answer the same questions over &amp; over </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Offer a platform for open questioning around my specialist subject of intrinsic biomechanics </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As the questions poured in, usually in advance of the live Q&amp;A, I was able to digest the content of the question &amp; realised something that is common to when teaching in the classroom. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We might want to consider developing our questioning skills.   </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I can appreciate many people will post a question quickly since everything on social media is done with haste right?!</span>\n\n<span style=\"font-weight: 400;\">Yet I don\'t want to discourage questions coming so the intention of this blog is to demonstrate how to structure a really great question.</span>\n\n<span style=\"font-weight: 400;\">So let\'s explore what makes for a great question...</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26959\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/artem-maltsev-0CvHQ62gwY8-unsplash-scaled-1.jpg\" alt=\"\" width=\"345\" height=\"518\" />\n\n&nbsp;\n<h2><b>The Problem </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are two of the most common examples of framing for questions that I get asked are …</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“...What\'s your opinion on…?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“...What are your thoughts about…?</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are several problems with these types of questions….</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A cognitive bias can result in an individual\'s view of things which can therefore limit the information they are able to give. This information would likely also be based upon their own view of life, their experiences &amp; views </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">They are open to interpretation which means they may base their response upon incorrect assumption about the context</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">The lack of clarity about the actual problem they are trying to solve means there is a risk of incorrect or inappropriate advice being given</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I found myself doing during the LIVE Q&amp;A’s was ‘reframing’ some questions into a variety of contexts to offer ideas of how to find solutions to the problem or problems they were trying to solve. </span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26961\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/timothy-dykes-90uVYog2FKE-unsplash-scaled-1.jpg\" alt=\"\" width=\"558\" height=\"372\" />\n\n&nbsp;\n\n&nbsp;\n<h2><b>The Solution </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Even before the LIVE Q&amp;As, while teaching, it has always been apparent to me that it was more helpful to guide learners/practitioners towards improving their questions by asking them for more details.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">By understanding exactly the problem they are trying to solve or thinking about they often found they got to the answer without me having to give my ‘opinion’ or biased view based on assumption. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Opinion is all too commonly asked for &amp; given on social media &amp; can cloud reality / fact from personal bias or opinion. Personal opinion &amp; view has its place &amp; isn\'t always bad IF that is what you are looking for. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also discovering solutions can be more helpful than solid answers when learners have specified the actual problem they were trying to solve. This is often the case with gaining a deeper level of understanding clients bodies and anatomy since every-body is so different. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26964\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/windows-v94mlgvsza4-unsplash-scaled-1.jpg\" alt=\"\" width=\"567\" height=\"380\" />\n\n&nbsp;\n\n&nbsp;\n<h2><b>What techniques can we use to improve our questions?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly consider what the purpose of the question is. Then from here start developing your question into a SMART goal. By asking specific well defined, unambiguous and clear questions as you would with a client when they come for your advice. This gives you better information about what you actually want to achieve when seeking answers.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The goal therefore is creating specific, measurable, realistic questions at the very least. Then we might still want to add achievable &amp; time bound details should they be relevant.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26963\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/bruce-mars-xj8qrWvuOEs-unsplash-scaled-1.jpg\" alt=\"\" width=\"595\" height=\"396\" />\n<h2></h2>\n<h2></h2>\n<h2></h2>\n&nbsp;\n<h2><b>Good research asks SMART questions </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another way to learn about great questioning is to study research methods. Having recently signed up for the Movement Therapy Education Diploma I have been reminded about how good research asks SMART questions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My first module is called ‘Research Methods for therapists ’ but is an excellent stand alone module for anyone trying to learn how to identify what good research looks like AND with the added bonus of understanding how to develop communication skills in asking great questions. </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">So here is a question for you….</span></h3>\n<h2><b><i>What is your number one struggle in helping clients to move more freely RIGHT NOW?</i></b></h2>\n<h3><span style=\"font-weight: 400;\">HIT REPLY &amp; let me know</span></h3>\n&nbsp;\n\n<hr />\n\n<h1>Would you like help in developing your questioning skills?</h1>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Access the <strong>LIVE Biomechanics Q&amp;A’S </strong>every Wednesday at 12pm during lockdown &amp; then through the Biomechanics Q&amp;A Free Facebook group <a href=\"https://www.facebook.com/groups/341768576971345/\" target=\"_blank\" rel=\"noopener\">&gt;&gt;CLICK HERE&lt;&lt;</a></span></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"wp-image-26965 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/mathew-schwartz-8rj4sz9YLCI-unsplash-scaled-1.jpg\" alt=\"\" width=\"440\" height=\"293\" /><img class=\"wp-image-26966 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/tachina-lee-wjk_SSqCE4-unsplash-scaled-1.jpg\" alt=\"\" width=\"463\" height=\"309\" />\n\n&nbsp;\n<h1></h1>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Access to the MTE <strong>Research Methods</strong> module <a href=\"https://movementtherapyeducation.thinkific.com/courses/research-methods-for-therapists\" target=\"_blank\" rel=\"noopener\">&gt;&gt;CLICK HERE&lt;&lt;</a></span></h2>','How SMART are your questions?','','inherit','closed','closed','','26957-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',26957,'https://biomechanicseducation.com/?p=38643',0,'revision','',0),(38644,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<span style=\"font-weight: 400;\">A very relevant topic right now since Covid-19 arrived is that it is a virus that specifically affects our respiratory system. One of the side effects is a stiffening of the lung tissue resulting in a thickening, or even scarring, that reduces our capacity to pull in air which then leads to reduced O2 (oxygen). This can then result in breathlessness &amp; de-conditioning due to inactivity &amp; this can also lead to an increase in anxiety levels for some, which could bring about hyperventilation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So a phasic approach to Covid-Rehab, OR even to those who have simply been restricted into moving less &amp; therefore exerting themselves less, means we should possibly ALL </span><span style=\"font-weight: 400;\">consider gaining a better understanding of our client’s breath biomechanics.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The better we understand breath biomechanics, the better we can support our clients &amp; ourselves in rehabilitating our breath strength &amp; O2 uptake capacity. Combine this with an understanding of the mind state of our clients &amp; the latest evidence about the physiology of Covid-19, the better equipped we will be to provide an up to date duty of care. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can be as simple as looking at the anatomy &amp; then training in Covid rehab specifically (which I strongly recommend) but this blog is to simply explore in more detail the anatomy &amp; biomechanics of breath.</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-26753\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/Screenshot-2021-03-15-at-20.51.25-1.png\" alt=\"\" width=\"1488\" height=\"960\" />\n\n&nbsp;\n<h2><b>What happens when we breathe?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The biomechanics of breathing is to enable us to pull O2 into the lungs via the mouth to then be taken around the body.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So the reason we breathe is to deliver O2 to the cells around our bodies. This distribution of O2 via the cardiovascular system should be delivered to anywhere that requires it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have 2 lungs inside the thoracic cavity, behind the ribs &amp; on top of the abdominal cavity which in turn is on top of the pelvic cavity. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26754\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/shutterstock_1811918470-scaled-1.jpg\" alt=\"\" width=\"389\" height=\"389\" />\n\n&nbsp;\n<h3><strong>Now these lungs need to stretch!</strong></h3>\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">The heart also has to work harder if the lungs stretch less or have less range of movement, ie; if they are stiffer from the effects of Covid-19. This can also often be combined with reduced activity levels.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The thoracic cavity gets bigger to pull O2 in, so the ribs need to flare &amp; therefore the thoracic spine needs to move/extend to allow the ribs to flare. This is because the lungs change shape during breathing like balloon inflating for example. </span>\n\n<span style=\"font-weight: 400;\">This also means the thoracic spine changes shape to allow the walls of the lungs to all move &amp; expand.</span>\n\n&nbsp;\n<h3><strong>Breathing alone is a ‘shape changer’ </strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if we think in shapes or breathing biomechanics the shoulders lift &amp; the ribs lift a bit like blinds opening. But rib circumference around the lungs also increases due to this rib flare too. </span>\n\n<span style=\"font-weight: 400;\">The diaphragm, a hump of muscle below, can contract &amp; drop down wards to allow more space. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The volume of breath we suck in will dictate the shape size. So the full range of motion of the lungs is based on volume of O2 or VO2.</span>\n\n&nbsp;\n<h2><b>What’s a natural breath?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This depends upon the activity!</span>\n\n<span style=\"font-weight: 400;\">The more active we are the bigger the shapes are &amp; at a faster rate. However if/when we are less active then slower &amp; smaller ranges are adequate for a ‘natural’ breath. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As the diaphragm drops down, the belly will move forward or distend.</span>\n\n<span style=\"font-weight: 400;\">If you increase load downwards towards the pelvic floor, then it will tense against the load &amp; therefore also increase the pelvic tension. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The breath required also depends upon the state of the tissues, hence consideration of </span><i><span style=\"font-weight: 400;\">long covid </span></i><span style=\"font-weight: 400;\">symptoms or breath rehabilitation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While normally we should simply practise a variety for cross training in preparation for a variety of movements, what is more relevant today is rehabilitation of the lung tissue using breathing techniques alongside our regular movement improvement techniques. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By practicing breathing in all motions &amp; movements with training in specific breath techniques we can support clients back to improved health, increase confidence &amp; get our communities moving again.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine being in a chair all day &amp; how this might affect our breathing shapes as it confines us to the same small ranges. Imagine a ‘tight’ diaphragm due to limited movement practice &amp; possibly the same for the pelvic floor, or a combination of these, then add </span><i><span style=\"font-weight: 400;\">long Covid</span></i><span style=\"font-weight: 400;\">. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If our movement scope stays the same all the time then so will our breathing requirement. However we are likely to need to re-train the intercostal muscles that have been unused/un-stretched &amp; so we could be missing a third of our space option! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As with any movement we really need a ‘reflexive’ response to movement &amp; breath so should practise variety </span>\n\n&nbsp;\n<h2><b>So What?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). Get a Covid Rehabilitation CPD under your belt! </span>\n\n<span style=\"font-weight: 400;\">Learn about the effects of the virus on both the vulnerable AND the ‘fit &amp; healthy’. This is an ongoing category of research &amp; we need to stay ahead of the game when it comes to understanding how to increase confidence in us as practitioners from….. </span>\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Clients</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Employers</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Government </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">2). By understanding breath biomechanics we can add in appropriate movement improvement techniques related to it! </span>\n\n<span style=\"font-weight: 400;\">Specific breath training, thoracic mobility &amp; intrinsic muscular energy techniques (core/trunk/pelvis)</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-26755\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/03/shutterstock_1711824001-scaled-1.jpg\" alt=\"\" width=\"2560\" height=\"1707\" />\n\n&nbsp;\n<h1></h1>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/imovefreely-3/\" target=\"_blank\" rel=\"noopener\"><b><i>iMoveFreely Reconditioning Programme</i></b></a></h1>\n<a href=\"https://www.biomechanicseducation.com/imovefreely-3/\" target=\"_blank\" rel=\"noopener\">BOOK NOW&gt;&gt;HERE</a>\n<ul>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A progressive 6 week reconditioning exercise plan to increase energy levels, muscle tone &amp; movement quality</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A movement programme that includes breathing techniques to reduce lung stiffness</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Designed to gradually improve connective tissue tolerance for reduced risk of injury &amp; reduction in aches/pains.</span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Perfect for clients/participants experiencing long covid symptoms </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Perfect for clients/participants with chronic conditions </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">Perfect for increasing confidence in potential clients/participants </span></li>\n 	<li style=\"font-weight: 400;\" aria-level=\"1\"><span style=\"font-weight: 400;\">A great complement to the </span><a href=\"https://www.futurefit.co.uk/fitness-courses/health-and-wellbeing-courses/covid-rehabilitation-course/\" target=\"_blank\" rel=\"noopener\"><b><i>Future Fit Training Covid Rehabilitation Course 50% </i></b></a></li>\n</ul>\n&nbsp;','Breath Biomechanics','','inherit','closed','closed','','26749-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',26749,'https://biomechanicseducation.com/?p=38644',0,'revision','',0),(38645,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<span style=\"font-weight: 400;\">OK OK OK Yes this is a tough one because technically we don\'t have ‘knee muscles’ do we?? Or do we???</span>\n\n<span style=\"font-weight: 400;\">Well when considering this very point it would probably be prudent to discuss the muscles that cross the knee, right?</span>\n<h2></h2>\n<h1><b>Anterior Knee </b></h1>\n<h2></h2>\n<h2><b>The ‘Quadricep Femoris’ Group</b></h2>\n<h2></h2>\n<span style=\"font-weight: 400;\">‘Quad’ meaning quadruple - </span><i><span style=\"font-weight: 400;\">quattuor</span></i> <span style=\"font-weight: 400;\">or 4 &amp;</span> <i><span style=\"font-weight: 400;\">caput </span></i><span style=\"font-weight: 400;\">meaning ‘head’</span>\n\n<span style=\"font-weight: 400;\">‘Femoris’ meaning relating to the femur or thigh bone. </span>\n<h2></h2>\n<span style=\"font-weight: 400;\">This group is made up of 4 muscles….or maybe 5….or 6…!?!? Read on...</span>\n<h2></h2>\n<h2><b>Rectus Femoris</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Meaning ‘</span><i><span style=\"font-weight: 400;\">straight’</span></i><span style=\"font-weight: 400;\"> &amp; femur related.</span>\n\n<span style=\"font-weight: 400;\">The only one in this group to cross 2 joints as opposed to 1. Reaching from the AIIS (anterior inferior iliac spine - feel your most pokey out front hip bone, then this prominence is just below it) to the patella (kneeling bone) ligament/ tibial (shin bone) tuberosity to both flex the hip AND extend the knee…..busy busy busy!!</span>\n<h2></h2>\n<img class=\"aligncenter wp-image-26107\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_309794156-scaled-1.jpg\" alt=\"\" width=\"273\" height=\"364\" />\n<h2></h2>\n&nbsp;\n<h2><b>Vastus Lateralis (or Vastus Externus)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">‘</span><i><span style=\"font-weight: 400;\">Vastus</span></i><span style=\"font-weight: 400;\">’ meaning vast or immense &amp; positioned laterally or externally. </span>\n\n<span style=\"font-weight: 400;\">Technically the only muscle of the lateral thigh, its back (posterior) edge lies next to </span><i><span style=\"font-weight: 400;\">bicep femoris</span></i><span style=\"font-weight: 400;\"> (one of the hamstrings - coming up) &amp; it lies deep to that ITB. </span>\n\n<span style=\"font-weight: 400;\">Tracking from linea aspera, gluteal tuberosity, greater trochanter to the tibial tuberosity to extend the knee…...go back to each one of these prominences &amp; press your finger onto each one while visualising the muscle’s placement...go on, try it….</span>\n<h2></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-26106\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_1401205709-scaled-1.jpg\" alt=\"\" width=\"346\" height=\"346\" />\n<h2></h2>\n<h2><b>Vastus Medialis (or Vastus Internus)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The word’s meaning, I am pretty confident you can work out now right!? ‘</span><i><span style=\"font-weight: 400;\">Vastus Medialis’....</span></i><span style=\"font-weight: 400;\">have you read everything up to this point?</span>\n\n<span style=\"font-weight: 400;\">It’s inside the thigh with a kind of tear drop shape this little beauty is also known as VMO or </span><i><span style=\"font-weight: 400;\">vastus medialis oblique</span></i><span style=\"font-weight: 400;\">. </span>\n\n<span style=\"font-weight: 400;\">Often I get asked “</span><i><span style=\"font-weight: 400;\">how do I grow my VMO?”.....</span></i><span style=\"font-weight: 400;\">well it attaches from the medial lip of linea aspera to that tibial tuberosity to also extend the knee….so do that….no its never that simple…..or is it? </span>\n<h2></h2>\n&nbsp;\n<h2><b>Vastus Intermedius </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Same as above……you know don’t you!?!?</span>\n\n<span style=\"font-weight: 400;\">Central on the thigh, in the middle &amp; deep to rectus femoris, attaching anterior/lateral shaft of the femur to reach…... GUESS…?????</span>\n<h2></h2>\n<span style=\"font-weight: 400;\">….that tibial tuberosity...yup…. to also extend the knee!</span>\n<h2></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-26108\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_309793826-scaled-1.jpg\" alt=\"\" width=\"263\" height=\"350\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What a team eh! </span>\n<h2></h2>\n<span style=\"font-weight: 400;\">But wait! </span>\n<h2></h2>\n<span style=\"font-weight: 400;\">They have some cousins that can appear in some human legs….</span>\n<h2></h2>\n&nbsp;\n<h2><b>The 5th &amp; 6th Quads!?!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now the reports of a 5th &amp; 6th ‘quad’ seem nonsensical really since the name really indicates just 4 muscles so let’s look at them, what they ACTUALLY do &amp; if they can be described as extra quads…..?</span>\n<h2></h2>\n&nbsp;\n<h2><b>Tensa Vastus Intermedius</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Tenses, is vast &amp; is in the middle!)</span>\n\n<span style=\"font-weight: 400;\">Please do read these publications to understand Grob’s work better….</span>\n\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/26732825/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">(Grob et al 2016) </span></a>\n\n<span style=\"font-weight: 400;\">Staring at the proximal femur at the anterior greater trochanter anterior to (or in front of) vastus intermedius &amp; deep to rectus femoris, it also joins the quadricep tendon, medial patella to medialise the action &amp; ‘tenses’ on the aponeurosis (sheet of pearly white fibrous tissue) of vastus medialis! </span>\n<h2></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-26109\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/TENSA-VASTUS-INTERMEDIUS-1.png\" alt=\"\" width=\"315\" height=\"303\" />\n\n&nbsp;\n\n&nbsp;\n<h2><b>Articularis Genus</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Articularis</span></i><span style=\"font-weight: 400;\"> means to join with a joint - </span><i><span style=\"font-weight: 400;\">genus</span></i><span style=\"font-weight: 400;\"> means relating a family line or genetic, borrowed from latin for </span><i><span style=\"font-weight: 400;\">birth or origin</span></i><span style=\"font-weight: 400;\">, but relates also to the knee as in this case.</span>\n\n<span style=\"font-weight: 400;\">Originating from the lower (distal) front (anterior) part of the femur to then reach down to the suprapatellar bursa to lift this bursa out of the way during knee extension - how clever!!</span>\n\n&nbsp;\n\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6133144/#:~:text=The%20insertion%20of%20this%20muscle,%2C2%2C8%2D11.\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">(Grob et al 2017)</span></a>\n<h2></h2>\n<span style=\"font-weight: 400;\">So technically they are collaborating with the 4 major quads &amp; while they don’t actually extend the knee, they do play a role in the knee extensor’s performance. </span>\n<h2></h2>\n<img class=\"aligncenter wp-image-26110\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/ARTICULARIS-GENUS-1.jpg\" alt=\"\" width=\"255\" height=\"340\" />\n<h1></h1>\n<h1><b>Posterior knee </b></h1>\n<h2></h2>\n<h2><b>The ‘Hamstring’ Group </b></h2>\n<h2></h2>\n<span style=\"font-weight: 400;\">This group is positioned between vastus lateralis (see above) &amp; adductor magnus (see Pelvis HERE)</span>\n\n<i><span style=\"font-weight: 400;\">18th centurion butchers would hang the pig from the tendons at the back of the knee - hence ‘ham-string’ (Andrew Biel, 2010)</span></i>\n<h2></h2>\n<h2><b>Bicep Femoris </b></h2>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Bicep</span></i><span style=\"font-weight: 400;\"> meaning 2 heads - </span><i><span style=\"font-weight: 400;\">Femoris</span></i><span style=\"font-weight: 400;\"> links it to the femur </span>\n\n<span style=\"font-weight: 400;\">This dude has both long &amp; short heads!  Both attaching to the fibula head &amp; then…..</span>\n\n<span style=\"font-weight: 400;\">The Long head attaches to the medial ischial tuberosity </span>\n\n<span style=\"font-weight: 400;\">While the short head - attaches to the femur.</span>\n\n<span style=\"font-weight: 400;\">This anatomy means it/they will flex the knee, laterally rotate the flexed knee AND assist hip extension! Phew! Its clear why these muscles need some attention in our clients strength programme with all this going on right!?</span>\n<h2></h2>\n<img class=\"aligncenter wp-image-26111\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/BICEP-FEM-LONG-shutterstock_303082511-scaled-1.jpg\" alt=\"\" width=\"254\" height=\"339\" /><img class=\"aligncenter wp-image-26112\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/BICEP-FEM-SHORT-shutterstock_303082577-scaled-1.jpg\" alt=\"\" width=\"253\" height=\"337\" />\n<h2></h2>\n<h2><b>Semimembranosus </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The most medial hammie, flatter, wider &amp; most ‘</span><i><span style=\"font-weight: 400;\">membranous’</span></i><span style=\"font-weight: 400;\"> looking when you study its anatomy.</span>\n\n<span style=\"font-weight: 400;\">Travelling from that ischial tuberosity to the back (posterior) of the medial nobly bit (condyle) of the tibia (shin bone). </span>\n\n<span style=\"font-weight: 400;\">This also allows it to flex the knee, medially rotate when the knee is flexed AND…...yep…. assist hip extension….pheweeee!</span>\n<h2></h2>\n<img class=\"aligncenter wp-image-26113\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/SEMIMEM-shutterstock_303066836-scaled-1.jpg\" alt=\"\" width=\"234\" height=\"312\" />\n<h2></h2>\n<h2><b>Semitendinosus </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The thicker but narrower hammie hence named as more ‘</span><i><span style=\"font-weight: 400;\">tendinous</span></i><span style=\"font-weight: 400;\">’...</span>\n\n<span style=\"font-weight: 400;\">Attached from that sit bone (ischial tuberosity) to the upper (proximal) inner (medial) shaft of the tibia (shin bone) to …..yup you guessed it….flex the knee, extend the hip &amp; help lateral rotation when the knee is flexed.</span>\n<h2></h2>\n<img class=\"aligncenter wp-image-26114\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/SEMITEN-shutterstock_293552699-scaled-1.jpg\" alt=\"\" width=\"234\" height=\"312\" />\n<h2></h2>\n<h2><strong>Popliteus</strong></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">An actual ‘knee’ muscle!</span><span style=\"font-weight: 400;\"> S</span>\n\n<span style=\"font-weight: 400;\">A small muscle ‘popped’ into the back of the knee under gastroc it starts</span><span style=\"font-weight: 400;\"> at the lateral (outer edge) condyle (bony bit) of the femur then</span><span style=\"font-weight: 400;\"> grabs onto the back of the tibia.</span>\n\n<span style=\"font-weight: 400;\">While small, thin, flat, triangular it is a deep muscle &amp; could kinda help the iliotibial band in a way.....have a look &amp; see what you think..!? </span>\n\n<span style=\"font-weight: 400;\">Positioned at the back &amp; lateral it helps medial rotation of the flexed knee</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Popliteus decides its role in movement depending upon the position of the lower extremity (leg)....although a weak flexor of the knee it’s really important for ‘unlocking’ the knee joint from an extended position. </span><span style=\"font-weight: 400;\">Also occasionally (rarely in fact) an additional muscle called the popliteus minor is seen arising from the femur into the posterior ligament!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Wonder if that would alter anything in terms of movement?</span>\n<h2></h2>\n<img class=\"aligncenter wp-image-26882\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_440565091_635713970809-scaled-1.jpg\" alt=\"\" width=\"386\" height=\"514\" />\n<h2><b>Pes Anserinus Tendon</b></h2>\n<h2></h2>\n<span style=\"font-weight: 400;\">This structure requires a mention as you will see...</span>\n<h2></h2>\n<b>Pes (means foot) anserinus</b><span style=\"font-weight: 400;\"> (relating to goose) so this ‘</span><i><span style=\"font-weight: 400;\">goosefoot</span></i><span style=\"font-weight: 400;\">’ is the description of where </span><b>tendons</b><span style=\"font-weight: 400;\"> of three muscles that insert onto the proximal tibia. Namely sartorius, gracilis &amp; semitendinosus.</span>\n\n<span style=\"font-weight: 400;\">They are often described as ‘guy ropes’.</span>\n<h2></h2>\n&nbsp;\n<h1><b>Medial Knee</b></h1>\n<h2><b>Adductors - see Pelvis </b></h2>\n<h2></h2>\n&nbsp;\n<h1><b>Lateral knee</b></h1>\n<h2><b>Abductors - see Pelvis</b></h2>\n&nbsp;\n\n&nbsp;\n<h1><b>Knee Joint Actions </b></h1>\n<h2></h2>\n<span style=\"font-weight: 400;\">Flexion </span>\n\n<span style=\"font-weight: 400;\">Extension </span>\n\n<span style=\"font-weight: 400;\">Note: In knee flexion the tibia can rotate medially &amp; laterally </span>\n\n<span style=\"font-weight: 400;\">Also if you read </span><i><span style=\"font-weight: 400;\">Bruunstromm’s</span></i><span style=\"font-weight: 400;\"> knee kinematics (</span><i><span style=\"font-weight: 400;\">Clinical Kinesiology</span></i><span style=\"font-weight: 400;\">) - flexion at the knee involves a slide, roll, hinge combination! </span>\n<h2>---------------------------------------------------------------------</h2>\n<h2>Are you enjoying these blogs?</h2>\n<h2>Would you like to invest in CPD videos online?</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/pelvic-biomechanics-practical-anatomy-part-1-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\"> CLICK HERE FOR &gt;&gt;PELVIC ANATOMY</a></h2>\n<h2>OR</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/spine-biomechanics-practical-anatomy-part-2-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\">CLICK HERE FOR &gt;&gt;SPINE ANATOMY</a></h2>\n<h2>OR</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/shoulder-biomechanics-practical-anatomy-part-3-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\">CLICK HERE FOR &gt;&gt;SHOULDER ANATOMY</a></h2>\n<h2>&amp;</h2>\n<h2>KNEE ANATOMY &gt;&gt; Coming Soon!!</h2>','Knee Biomechanics Part 8 -  The Muscles of the Knee','','inherit','closed','closed','','26101-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',26101,'https://biomechanicseducation.com/?p=38645',0,'revision','',0);
INSERT INTO `6m7_posts` VALUES (38646,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<h2>\'The Middle Sister\'</h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The knee joint is sometimes described as the ‘Middle Sister’ of the lower limb, a ‘triplet’ of joints so to speak!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHAT? WHY? HOW?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Almost all common ‘knee problems’ are caused by the force from above, the force from below or maybe even both. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what...I hear ya?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This means to help clients with knee problems we need to understand those forces &amp; how to improve them. In fact it would be a challenge to truly understand knee biomechanics without at least some recognition of the ascending &amp; descending influences of the pelvis &amp; foot…...bear with me!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As the biggest synovial (</span><i><span style=\"font-weight: 400;\">synovial - surrounded by a thick flexible membrane forming a sac into which is secreted a viscous fluid that lubricates)</span></i> <span style=\"font-weight: 400;\">joint, the knee forms at the place where the distal (</span><i><span style=\"font-weight: 400;\">distant</span></i><span style=\"font-weight: 400;\">) end of the femur meets the proximal (</span><i><span style=\"font-weight: 400;\">closest proximity</span></i><span style=\"font-weight: 400;\">) end of the Tibia (</span><i><span style=\"font-weight: 400;\">also from latin for pipe or flute</span></i><span style=\"font-weight: 400;\">) meet.</span>\n\n&nbsp;\n<h2>Patella</h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25975\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_296166746-scaled-1.jpg\" alt=\"\" width=\"275\" height=\"367\" />\n\n<span style=\"font-weight: 400;\">Then the Patella (</span><i><span style=\"font-weight: 400;\">patina or patena or paten, </span></i><b><i>meaning</i></b><i><span style=\"font-weight: 400;\"> shallow dish</span></i><span style=\"font-weight: 400;\">)</span> <span style=\"font-weight: 400;\">sits at the front of the knee joint. With the Apex at the bottom &amp; the Base at the top - I HAVE ON IDEA WHY!?!? </span>\n\n<span style=\"font-weight: 400;\">Who on earth named this piece!? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The inside surface of the patella has medial &amp; lateral facets (</span><i><span style=\"font-weight: 400;\">flat surface</span></i><span style=\"font-weight: 400;\">) that come into contact with the ‘knuckles’ of the femur. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now there are all sorts of names for other bony parts (</span><i><span style=\"font-weight: 400;\">pars</span></i><span style=\"font-weight: 400;\">) in the knee like….</span>\n\n&nbsp;\n<h2><strong>Bony Pars</strong></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Plateau (</span><i><span style=\"font-weight: 400;\">flat surface</span></i><span style=\"font-weight: 400;\">)</span>\n\n<span style=\"font-weight: 400;\">Tuberosity (</span><i><span style=\"font-weight: 400;\">rounded prominence</span></i><span style=\"font-weight: 400;\">)</span>\n\n<span style=\"font-weight: 400;\">Tubercle (</span><i><span style=\"font-weight: 400;\">small nobule</span></i><span style=\"font-weight: 400;\">)</span>\n\n<span style=\"font-weight: 400;\">Epicondyle (</span><i><span style=\"font-weight: 400;\">r</span></i><i><span style=\"font-weight: 400;\">ounded eminence on a bone that lies upon a </span></i><b><i>condyle</i></b><span style=\"font-weight: 400;\">)</span>\n\n<span style=\"font-weight: 400;\">Condyle (</span><i><span style=\"font-weight: 400;\">knuckle</span></i><span style=\"font-weight: 400;\">)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These each relate to the anatomy / soft tissue etc that they are named by.</span>\n\n&nbsp;\n<h2>Meniscus</h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-25976\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1030913119-scaled-1.jpg\" alt=\"\" width=\"345\" height=\"194\" />\n\n&nbsp;\n\nThe meniscus are effectively the top 2 \'cups\' of the tibia that the femur sits onto of!\n\nThe word meniscus derives from Greek <em>meniskos</em>, meaning \'crescent\' The word was used for curved things in general, such as a necklace or a line of battle.\n\nSo when you think about your entire body resting AND moving on top of these menisci its easy to understand why they are commonly written onto medical reports after knee MRI\'s come back from the radiologist!\n\nPoor menisci!\n\n&nbsp;\n<h2>Fibula</h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then of course there is the Fibula (</span><i><span style=\"font-weight: 400;\">Latin for “brooch”, because the inner bone, the tibia, and the fibula together resemble an ancient brooch, or pin</span></i><span style=\"font-weight: 400;\">) ….Wow I learned this words history / origin while researching for this blog! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">See I am learning with you!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25977\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_199824647-scaled-1.jpg\" alt=\"\" width=\"331\" height=\"331\" />\n<h2>Tibia</h2>\n&nbsp;\n\nThe shin or lower leg bone, from Latin also \'pipe, flute\' - originally made from bone!\n\n&nbsp;\n<h2><b>The Knee Action/s</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When I ruptured (snapped) my ACL during landing from a jumping roundhouse kick I spent a lot of time researching knee anatomy, function &amp; biomechanics. I read </span><b><i>Brunnstrom’s Clinical Kinesiology</i></b><span style=\"font-weight: 400;\"> section about the knee….WOW!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When flexing, the knee does not simply hinge through single action…..oh no! It will glide, roll &amp; twist to produce what we call knee flexion. Movement produced by our wonderful integrated system is really quite stunning in its complexity that can be made so simple for application. However when building knee implants or replacement joints this level of fluidity in motion is just not possible, no matter how fabulous these implants are these days!</span>\n\n&nbsp;\n\n<b><i>During knee flexion</i></b><i><span style=\"font-weight: 400;\">, tibia glides posteriorly on femur and from full </span></i><b><i>knee</i></b><i><span style=\"font-weight: 400;\"> extension to 20</span></i><i><span style=\"font-weight: 400;\">o</span></i> <b><i>flexion</i></b><i><span style=\"font-weight: 400;\">, tibia rotates internally. Closed kinetic chain - </span></i><b><i>During knee</i></b><i><span style=\"font-weight: 400;\"> extension, femur glides posteriorly on tibia. To be more specific, from 20</span></i><i><span style=\"font-weight: 400;\">o</span></i> <b><i>knee flexion</i></b><i><span style=\"font-weight: 400;\"> to full extension, femur rotates internally on stable tibia.</span></i>\n\n<i><span style=\"font-weight: 400;\">(Physio-pedia.com)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is why I LOVE STUDYING THE BODY &amp; MOVEMENT SO MUCH!</span>\n\n&nbsp;\n\n(Did you notice the emphasis there!?!?)\n\n&nbsp;\n<h2><b>Knee Ligaments </b></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-25978\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/Screenshot-2021-01-26-at-15.10.33-1.png\" alt=\"\" width=\"366\" height=\"272\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now we should also mention ligaments when discussing knee biomechanics since they play a huge role in there….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">MCL - medial (</span><i><span style=\"font-weight: 400;\">inside</span></i><span style=\"font-weight: 400;\">) collateral (</span><i><span style=\"font-weight: 400;\">together with</span></i><span style=\"font-weight: 400;\">) ligament (</span><i><span style=\"font-weight: 400;\">bond)</span></i>\n\n<span style=\"font-weight: 400;\">LCL - lateral (</span><i><span style=\"font-weight: 400;\">outside</span></i><span style=\"font-weight: 400;\">) collateral (</span><i><span style=\"font-weight: 400;\">together with</span></i><span style=\"font-weight: 400;\">) ligament (</span><i><span style=\"font-weight: 400;\">bond)</span></i>\n\n<span style=\"font-weight: 400;\">ACL - anterior </span><i><span style=\"font-weight: 400;\">(front</span></i><span style=\"font-weight: 400;\">) cruciate (</span><i><span style=\"font-weight: 400;\">cross shaped</span></i><span style=\"font-weight: 400;\">) ligament (</span><i><span style=\"font-weight: 400;\">bond)</span></i>\n\n<span style=\"font-weight: 400;\">PCL - posterior (</span><i><span style=\"font-weight: 400;\">back</span></i><span style=\"font-weight: 400;\">) cruciate (</span><i><span style=\"font-weight: 400;\">cross shaped</span></i><span style=\"font-weight: 400;\">) ligament (</span><i><span style=\"font-weight: 400;\">bond</span></i><span style=\"font-weight: 400;\">)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These </span><i><span style=\"font-weight: 400;\">bonds </span></i><span style=\"font-weight: 400;\">play a key role in knee stability, as you can imagine, with the amount of force we repeatedly put through &amp; across our knee joint. </span>\n\n<span style=\"font-weight: 400;\">These ligamentous structures connect bone to bone &amp; so are (&amp; need to be) stronger than tendons that connect muscle to bone. It does however mean they are also less elastic than tendons.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A brief &amp; special mention to the Patella </span><i><span style=\"font-weight: 400;\">tendon</span></i><span style=\"font-weight: 400;\">! </span>\n\n<span style=\"font-weight: 400;\">WHOOP WHOOP!</span>\n\n<span style=\"font-weight: 400;\">This bad boy will get another mention in the next of this series Part 8 - ‘</span><b>Muscles of the Knee’</b>\n\n&nbsp;\n<h1><b>Interesting Facts About Your Knees </b></h1>\n&nbsp;\n\n<img class=\"aligncenter wp-image-25979\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/Screenshot-2021-01-26-at-15.10.45-1.png\" alt=\"\" width=\"366\" height=\"363\" />\n\n<i><span style=\"font-weight: 400;\">Walking up &amp; down stairs can put 600lbs of pressure on the patella BUT has the protection of the thickest layer of cartilage on the posterior surface of the patella </span></i>\n\n<i><span style=\"font-weight: 400;\">(Andrew Biel)</span></i>\n\n&nbsp;\n<h1><b>Babies are born without kneecaps!</b></h1>\n&nbsp;\n<h4><span style=\"font-weight: 400;\">When we are born we have soft cartilage where our kneecaps will eventually develop. However they do not ossify or show up on x rays until around 2-6yrs</span></h4>\n<h1><b>You can walk without a kneecap.</b></h1>\n&nbsp;\n<h4><span style=\"font-weight: 400;\">If you break your kneecap badly enough, it is likely to have to be</span><span style=\"font-weight: 400;\"> removed surgically. Surgeons do not fit a kneecap prostheses—because you can walk without a kneecap!</span></h4>\n<h4><span style=\"font-weight: 400;\">Kneeling, however, may be uncomfortable without one, meaning you may require a protective padding.</span></h4>\n&nbsp;\n<h1>ACL Reconstruction ?</h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">ACL reconstruction can be done using either a portion from your hamstring or your patella tendon - patella tendon grafts are prone to leave patients with knee pain when kneeling. So top knee surgeon Dr Hahn, offered me a hamstring graft instead - I decided against it, some may not have such a choice but I really didn\'t fancy also rehabbing my wonderful hammies. They are the envy of some &amp; I knew from my MRI that I had a little proprioception where my ACL had latched onto the PCL….said Dr Hahn!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This super pair of hams have stood me in good stead so far &amp; allowed me to live with a ruptured ACL in my left knee with absolutely no detriment my lifestyle whatsoever. </span>\n\n&nbsp;\n<h2>Are you enjoying these blogs?</h2>\n<h2>Would you like to invest in CPD videos online?</h2>\n<h2>Why not look:</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/pelvic-biomechanics-practical-anatomy-part-1-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\"> CLICK HERE FOR &gt;&gt;PELVIC ANATOMY</a></h2>\n<h2>OR</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/spine-biomechanics-practical-anatomy-part-2-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\">CLICK HERE FOR &gt;&gt;SPINE ANATOMY</a></h2>\n<h2>OR</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/shoulder-biomechanics-practical-anatomy-part-3-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\">CLICK HERE FOR &gt;&gt;SHOULDER ANATOMY</a></h2>\n<h2>&amp;</h2>\n<h2>KNEE ANATOMY &gt;&gt; Coming Soon!!</h2>','Knee Biomechanics Part 7 -  The Bones of the Knee','','inherit','closed','closed','','25961-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',25961,'https://biomechanicseducation.com/?p=38646',0,'revision','',0),(38647,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','&nbsp;\n\n<span style=\"font-weight: 400;\">Muscles are important everywhere in the body BUT due to the structural design of the shoulder, it REALLY needs great muscle tone &amp; function. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So this time we will explore the wondrous complexities of your client’s shoulder muscles….</span>\n\n&nbsp;\n<h2><b>Deltoids</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Previously known as the </span><i><span style=\"font-weight: 400;\">deltoidious </span></i><span style=\"font-weight: 400;\">these are the strongest and biggest of the shoulder muscles. These mega muscles get their name from the greek word </span><i><span style=\"font-weight: 400;\">delta</span></i><span style=\"font-weight: 400;\"> 4th letter meaning ‘</span><i><span style=\"font-weight: 400;\">difference/change</span></i><span style=\"font-weight: 400;\">’ </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also known as the ‘common’ shoulder muscle but I cannot find out why!? Do you know why? Please reply and let me know if you do!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With a wide origin spanning all the way across spine of scap, acromion, clavicle to them travel down to the deltoid tuberosity of the humerus</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The fibres are divided x 3….</span>\n\n<span style=\"font-weight: 400;\">The anterior part (or clavicular pars) perform horizontal flexion/adduction &amp; internal rotation. </span>\n\n<span style=\"font-weight: 400;\">The lateral, intermediate or acromial pars are responsible for abduction</span>\n\n<span style=\"font-weight: 400;\">Then the posterior or scapular pars allow you to achieve horizontal extension/abduction &amp; external rotation  </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25696\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1697704519-scaled-1.jpg\" alt=\"\" width=\"533\" height=\"533\" />\n<h2></h2>\n<h2></h2>\n<h2><b>Supraspinatus </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Supraspinati plural) Relativity small (smallest cuff muscle), but still chunky, this beauty lies in the </span><i><span style=\"font-weight: 400;\">‘superior’</span></i><span style=\"font-weight: 400;\"> scoop on the top of the </span><i><span style=\"font-weight: 400;\">‘spine’</span></i><span style=\"font-weight: 400;\"> of the scapular. Travelling to the greater tubercle of humerus it’s interestingly the ‘rotator’ cuff muscle that doesn’t actually rotate!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It helps the delts with abduction, predominantly the first 30 degrees, &amp; also stabilises the humeral head on the glenoid cavity…..hopefully!!</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25468\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_293547812-scaled.jpg\" alt=\"\" width=\"449\" height=\"599\" />\n\n&nbsp;\n<h2></h2>\n<h2><b>Teres Minor </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This wee muscle is squished between infraspinatus &amp; Teres Major but can often blend with infraspinatus. </span>\n\n<i><span style=\"font-weight: 400;\">Teres</span></i><span style=\"font-weight: 400;\"> means round &amp; smooth or cylindrical </span>\n\n<i><span style=\"font-weight: 400;\">Minor</span></i><span style=\"font-weight: 400;\"> because its the smaller of the 2 muscles called Teres</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Travelling from the outer edge of the back (lateral/posterior) of the scapular to that greater tubercle of the humerus it helps lateral rotation of your clients arm AND also stabilises the glenohumeral joint. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25698\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_293546465-scaled-1.jpg\" alt=\"\" width=\"495\" height=\"660\" />\n\n&nbsp;\n<h2></h2>\n<h2><b>Infraspinatus </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It lies against the back of the scapular, </span><i><span style=\"font-weight: 400;\">INF(RA)erior </span></i><span style=\"font-weight: 400;\">to the </span><i><span style=\"font-weight: 400;\">spine</span></i><span style=\"font-weight: 400;\"> of the scapular &amp; inserts into the greater tubercle at the back of the humerus. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The ‘Biscuit’ Muscle is the name I’ve given this INFRAmous (see what I did there!?) muscle.</span>\n\n<span style=\"font-weight: 400;\">Why? </span>\n\n<span style=\"font-weight: 400;\">Well when your client lies face down (prone) with their arms relaxed, often you can find that when you rub this muscle it feels like it has biscuit crumbs inside it. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a manual therapist I actually quite enjoy trying to dissolve those crumbs….not sure my client ‘enjoys’ it so much but they certainly feel better afterwards.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I believe it\'s commonly crunchy because of our lifestyles and its relative position. Imagine where it is in your body, then go onto that round shouldered posture &amp; then imagine what its doing while you are slouched over your phone or computer. The weight of your arms hanging off it, forward &amp; tapping annoyingly on your keyboard.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a lateral rotator it can be tested by abducting the arms to 90degrees or parallel with the floor, then gradually internally rotating the arms to lengthen it. If the Acromion lifts during the movement this is a good indication this muscle’s function may need addressing.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How does this test show this? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By gradually lengthening the muscle your client should be able to do this standing shoulder rotation without the scapular being pulled upwards. If the muscle is however tight, inhibited or limited in any way it shows through this range of motion test. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24188\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_147943874-scaled-1.jpg\" alt=\"\" width=\"646\" height=\"517\" />\n\n&nbsp;\n\n&nbsp;\n<h2><b>Subscapularis </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So the Pectoralis major assists this biggest cuff muscle during internal rotation of the arm.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Subscapularis sits on the front (anterior) surface of your clients scapular, against the back of their ribs &amp; attaches to the lesser tubercle at the back of the humerus</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Can also be tested, similar to the way we tested infraspinatus earlier, by abducting the arms to 90 degrees or parallel with the floor, but then externally rotating the arms. If the Acromion lifts during the movement this is a good indication this muscle may need addressing.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How does this test show this? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By gradually lengthening the muscle your client should be able to do this standing shoulder rotation without the scapular being pulled upwards. If the muscle is however tight, inhibited or limited in any way it shows through this range of motion test. Same as before just turning the arms the other way.</span>\n\n&nbsp;\n\n&nbsp;\n<h2><b>Trapezius </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">A stunning diamond or </span><i><span style=\"font-weight: 400;\">trapezium</span></i><span style=\"font-weight: 400;\"> shaped wonder muscle that ‘blankets’ over the back of the shoulders!</span>\n\n<span style=\"font-weight: 400;\">So stunning we have to break it down into portions to better appreciate its role in movement…..hopefully!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The upper fibres travel from the back of the skull or occiput, to C7, to the medial edge of the lateral portion of the AC joint! </span>\n\n<span style=\"font-weight: 400;\">Whoah!? </span>\n\n<span style=\"font-weight: 400;\">What?</span>\n\n<span style=\"font-weight: 400;\">Place your hand on the opposite shoulder, lift that shoulder….in there.</span>\n\n<span style=\"font-weight: 400;\">That’s also one of their main actions, along with laterally flexing (on their own) &amp; extending (when working together) the neck &amp; rotating the head (when working alone). </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The medial fibres however attach to the spinous processes of thoracic spine then span out to the scapular for some REEEEEtraction….hopefully!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then those lower fibres also attach to the spinous processes of thoracic spine &amp; they span out to the scapular a bit lower down to aid scapular depression.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25700\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1335929453-scaled-1.jpg\" alt=\"\" width=\"586\" height=\"782\" />\n\n&nbsp;\n<h2><b>Latissimus Dorsi</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Broadest muscle of the dorsals / flanks. </span>\n\n<span style=\"font-weight: 400;\">A great big puller….ooooo yeah! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Attaching from the under (inferior) angle of the scapular to the spinous processes &amp; ribs, then the thoracolumbar fascia &amp; posterior Iliac crest.</span>\n\n<span style=\"font-weight: 400;\">It travels from there into the intertubercular groove of the humerus.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">AND apparently there is a debate about its relationship with the scapular!! Yeah that\'s a thing in the anatomy world that people can\'t always agree on…..A.P.P.A.R.E.N.T.L.Y!</span>\n\n<span style=\"font-weight: 400;\">Any thoughts?????? </span>\n\n<span style=\"font-weight: 400;\">Message me pleeeeeeease….!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">SOOOOOOOO it extends, adducts &amp; internally rotates the arm / shoulder!</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25701\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_145358134-scaled-1.jpg\" alt=\"\" width=\"510\" height=\"510\" />\n\n&nbsp;\n<h2><b>Teres Major </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">While the bigger of the 2 </span><i><span style=\"font-weight: 400;\">Teres,</span></i><span style=\"font-weight: 400;\"> hence </span><i><span style=\"font-weight: 400;\">Major,</span></i><span style=\"font-weight: 400;\"> it is also called</span><i><span style=\"font-weight: 400;\"> ‘Lats little helper’. </span></i><span style=\"font-weight: 400;\">This is because it can perform exactly the same actions at the lats….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Extension</span>\n\n<span style=\"font-weight: 400;\">Adduction</span>\n\n<span style=\"font-weight: 400;\">Internal rotation</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because it attaches to the front of the humerus from the lateral border of the back of the scapular’s inferior angle.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you lie on your side, bottom arm up by your ear, then place a ball where you imagine the Teres Major to be…..ooooooffff!!! Yeah!! Thats gonna be tender…..ask your manual therapist to give it a rub </span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">If you’re a manual therapist try some techniques on this beaut for upper body freedom!</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25470\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1697704909-scaled.jpg\" alt=\"\" width=\"619\" height=\"619\" />\n\n&nbsp;\n<h2><b>Rhomboids Major &amp; Minor </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The smaller of the 2 (minor) is higher up traveling from the spinous process of C7-T1 to the upper medial border of the scapular. Whereas Major travels from T2-T5 to the medial border of the scapular further down and right down to the inferior angle. Sandwiched under trapezius and over erector spinae</span>\n\n<span style=\"font-weight: 400;\">However they are difficult to distinguish individually.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This anatomy allows them to retract (or adduct) the scapular. </span>\n\n<span style=\"font-weight: 400;\">Also elevate &amp; downwardly rotate them due to their line of pull </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These poor muscles are pretty much hanging on for dear life as we ‘hang’ over our computers. Our arms pull the scapular forwards, protracting (see pec minor) them and giving us rounded shoulders. Which by the way, isn\'t a problem in as much as the position BUT is a problem when held for long periods.</span>\n\n<span style=\"font-weight: 400;\">Imagine what the endurance of this position does to the rhomboids that are supposed to pull the scapular back into retraction. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Poor poor rhomboids!!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Offer them some help by individually focussing on some PURE scapular retraction work - I promise they will thank you for it!</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25471\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_293547224-scaled.jpg\" alt=\"\" width=\"653\" height=\"870\" />\n\n&nbsp;\n<h2><b>Levator scapular</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">A pretty muscle that threads from the Transverse processes of C1-4 to the medial upper border of scapular. This results in its ability to elevate &amp; rotate the scapula downwards &amp; rotate the head to the side. It can also pull the head towards the shoulder or laterally flex the neck. When right &amp; left work together they can extend the neck/head. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So a busy muscle, right!? It is like a partner in crime with the upper trapezius muscle fibres!!</span>\n\n<span style=\"font-weight: 400;\">Can you see why?</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25472\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1800822229-scaled-1.jpg\" alt=\"\" width=\"596\" height=\"596\" />\n\n&nbsp;\n<h2><b>Serratus anterior</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">A muscle that held me captive for a long time because of its anatomy. My brain struggled to appreciate how it attached and how it produced its movement. Its formation is so intricate and fascinating that I couldn\'t simply grab a resistance band and put it onto a skeleton to appreciate its ability. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Still I tried that, visualised it when protracting or pressing, studied 2D images &amp; repeated this process. </span>\n\n<span style=\"font-weight: 400;\">Analysed bony images of the surfaces it connects to, visualised it again, palpated (touched) it while moving my shoulder, endeavoured to understand its line of pull….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">….until eventually it clicked into place. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A really cool rib definer I call it particularly from watching numerous bodybuilders doing a side abs pose. Front arm elevated up &amp; over their head, then depressing / protracting the scapula….are you doing it in front of the mirror yet????  Go on, have a go…...how did you do??</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So as it connects from the outer surfaces of the first/upper 8 or 9 ribs to the front side &amp; medial scapular border. This is how it can protract the scapula, meaning they also abduct away from the spine. The line of pull allows for scapula depression (&amp; upward rotation of the scapulothoracic joint - where the scapular &amp; thoracic spine meet) </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also has a partner in crime - pec minor!!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">NOTE: One of the most common questions my learners are unable to answer is the difference in the attachments for the 2 pecs. So at this point I\'d really like to make this absolutely clear, the 2 pecs perform different actions. Their influences are on different structures &amp; yes of course there is some awesome integration BUT READ CAREFULLY about how they attach &amp; therefore what they do…...this might change your programme design!</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25703\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_293547815-scaled-1.jpg\" alt=\"\" width=\"600\" height=\"800\" />\n\n&nbsp;\n<h2><b>Pectoralis Minor </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">THIS dude is really KINDA like the poor psoas muscle…..EH? WHAT????</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hang on hang on let me explain…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly let\'s discuss its position in the shoulder…..it attaches to the coracoid process (the most anterior/front point of the scapula) that pokes through the dip at the front of your upper shoulder. From there it pours downwards to just halfway across the 3-5 ribs.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This allows it to protract and depress the scapula OR LIKE PSOAS results in its ‘lax’ or shortened position as we sit round shouldered at our desks, over our phones…..make sense now?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Both pec minor &amp; psoas are ‘held short’ during prolonged sitting - trust me THEY HATE IT!!!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Go back read Rhomboids….then come back read this…...then go back read psoas &amp; glute max…...then write to me and tell me what you think….?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyhoo we ain\'t finished yet…..</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25705\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_151422785-scaled-1.jpg\" alt=\"\" width=\"524\" height=\"698\" />\n<h2></h2>\n<h2></h2>\n<h2><b>Pectoralis Major</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">DOES NOT ATTACHED TO THE SAME PLACES AS PEC MINOR!!</span>\n\n<span style=\"font-weight: 400;\">There I said it!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Monday muscle I call this one….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Go to any gym (when you can) on a Monday….what do you see??? Chest day, right? </span>\n\n<span style=\"font-weight: 400;\">Men in particular want well developed Pec Majors!   </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So let\'s study their anatomy &amp; how they differ from their sibling...Pec minor…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Attaching from the clavicle to the sternum &amp; then across to the greater tubercle of the humerus. Quite different, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This means it can adduct, horizontally flex &amp; internally rotate the shoulder. </span>\n\n<span style=\"font-weight: 400;\">Pec Major is also in partnership with Subscapularis when you look at their actions!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So now imagine a push up….Pec Major is the prime mover in horizontal flexion of the arm but Pec Minors role will depend upon your personal performance of this exercise. </span>\n\n<span style=\"font-weight: 400;\">If your scapular DON\'T move Pec Minor will be a fixtor </span>\n\n<span style=\"font-weight: 400;\">If you protract during the press the it will be a prime mover</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OOOOOOOOOOOeeeeeerrrrrr!</span>\n\n&nbsp;\n<h2><b>Shoulder Actions - SOOOOOO MANY!!!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is clearly going to be another reason why the shoulder is a commonly problematic joint!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Humerus Abd/adduction, Internal / External Rotation, Horizontal Flexion / Extension or Horizontal abd/adduction &amp; Circumduction </span>\n\n<span style=\"font-weight: 400;\">Scapular Protraction / Retraction &amp; Elevation / Depression </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So there you have it: a small snapshot of shoulder anatomy &amp; biomechanics, yes just a snapshot. There are so many things we could discuss but I find anatomy easier to absorb a bit at a time. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These blogs, &amp; the relevant videos, are written &amp; filmed to help gradually enhance &amp; add to what you already know but to be absolutely clear there is ALWAYS so much more to learn! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">That\'s what WE LOVE ABOUT ANATOMY!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like </span><b>Knee Biomechanics Part 7 -  The Bones of the Knee </b><span style=\"font-weight: 400;\">next???</span>\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">OK COMING SOON &gt;&gt;- </span><b>Knee Biomechanics Part 7 -  The Bones of the Knee</b></h1>\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/blog/\" target=\"_blank\" rel=\"noopener\">Missed the previous Pelvic &amp; Spine Biomechanics Blogs? &gt;&gt;LOOK HERE&lt;&lt;</a>\n\n&nbsp;\n<h3><a href=\"https://www.biomechanicseducation.com/product/pelvic-biomechanics-practical-anatomy-part-1-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\">Would you like to invest further by grabbing the videos during lockdown....at lockdown price of just £7! (Normally £27)</a></h3>\n<h1><a href=\"https://www.biomechanicseducation.com/product/pelvic-biomechanics-practical-anatomy-part-1-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener\">&gt;&gt;LOOK HERE&lt;&lt;</a></h1>','Shoulder Biomechanics Part 6 -  The Muscles of the Shoulder','','inherit','closed','closed','','25466-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',25466,'https://biomechanicseducation.com/?p=38647',0,'revision','',0),(38648,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<h1><span style=\"font-weight: 400;\">Part 5 - Shoulder time!</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the most complex joints in our client’s body &amp; becoming a problem area for common problems just like the lower back!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Shall we dive straight in….?</span>\n\n&nbsp;\n<h2><b>The Bones </b></h2>\n&nbsp;\n<h2><b>Clavicle (Collar bone) </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The word clavicle comes from the latin for ‘tendril’ due to its meagre connection from the scapula to sternum.</span>\n\n<span style=\"font-weight: 400;\">It is also known as the collarbone, the ‘beauty bone’ or the ‘skinny bone’ since those awful times when ‘skinny’ was perceived as attractive. </span>\n\n<span style=\"font-weight: 400;\">AND….it is the only bony connection between our shoulder &amp; the rest of our skeleton! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WOW! No wonder shoulder ‘issues’ are a common thing our clients complain about!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The clavicle is the first bone to harden in the fetus but interestingly the last to completely develop! </span><span style=\"font-weight: 400;\">With this in mind &amp; the fact that it\'s a </span><i><span style=\"font-weight: 400;\">force transmitter</span></i><span style=\"font-weight: 400;\"> from the arms to the upper body/skeleton you can appreciate </span><span style=\"font-weight: 400;\">why youngsters can often break theirs. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you were to view it from overhead it has an S shape &amp; try</span><span style=\"font-weight: 400;\"> placing your fingers/hand onto your clavicle then shrug up your shoulder….can you feel it articulate with the sternum?</span>\n\n&nbsp;\n<h2><b><img class=\"aligncenter wp-image-25462\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/Screenshot-2020-12-15-at-10.17.34.png\" alt=\"\" width=\"735\" height=\"722\" />Humerus</b></h2>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Umerus</span></i><span style=\"font-weight: 400;\"> means upper arm from its latin origins but also history from the Greek word </span><i><span style=\"font-weight: 400;\">omos</span></i><span style=\"font-weight: 400;\"> for arm. The top end (proximal portion) of the humerus joins the glenoid fossa to create what\'s known as the glenohumeral joint. </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25461\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_305274299-scaled-1.jpg\" alt=\"\" width=\"270\" height=\"789\" />\n\n<span style=\"font-weight: 400;\">Glenoid means smooth shallow depression or slightly cupped.</span>\n\n<span style=\"font-weight: 400;\">Fossa meaning ‘ditch’ or pit.</span>\n\n<span style=\"font-weight: 400;\">Head of humerus is also called the </span><i><span style=\"font-weight: 400;\">caput humeri -</span></i><span style=\"font-weight: 400;\"> caput meaning head in this instance.</span>\n\n<span style=\"font-weight: 400;\">Greater tubercle is from latin </span><i><span style=\"font-weight: 400;\">tuberculum</span></i><span style=\"font-weight: 400;\"> or small swelling </span>\n\n<span style=\"font-weight: 400;\">Lesser tubercle or </span><i><span style=\"font-weight: 400;\">tuberculum minus</span></i>\n\n&nbsp;\n<h2><b>Scapular </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The shoulder ‘blade’ or scapula is an attachment site for around 17 muscles &amp; glides on the scapulothoracic joint, also described as a false joint since it doesn\'t have the usual joint components. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The front facing (anterior) side is called the costal surface as it relates to the ribs/costals. It is also the subscapular fossa where the subscapularis sits between the scapular &amp; ribs.</span>\n\n<span style=\"font-weight: 400;\">The dorsal surface (posterior) or side &amp; also known as the infraspinous fossa - why? Go on guess….???? YES the infraspinatus muscle sits on there!!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25460\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_278017295-scaled-1.jpg\" alt=\"\" width=\"555\" height=\"605\" />\n\n<span style=\"font-weight: 400;\">The scapular’s triangular in shape &amp; so has 3 sides;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Superior border (top)</span>\n\n<span style=\"font-weight: 400;\">Lateral border (axillary which relates to the armpit, so outer edge)</span>\n\n<span style=\"font-weight: 400;\">Medial border (or vertebral border or medial margin, closest to the vertebrae)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">At each corner where these ‘sides meet are the angles;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Superior angle (top &amp; medial)</span>\n\n<span style=\"font-weight: 400;\">Inferior angle (bottom &amp; medial)</span>\n\n<span style=\"font-weight: 400;\">Lateral or glenoid angle also known as the head of the scapular </span>\n\n<span style=\"font-weight: 400;\">Glenoid cavity (or fossa) where the humerus ‘connects’</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">The other key landmarks;</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Acromion process - allows us to do a pec minor test when clients lies supine - this process should measure 2.5cm or 1” front the floor  or massage bed</span>\n\n<span style=\"font-weight: 400;\">Coracoid process - upper attachment site for pec minor in the hollow on the front of the shoulder </span>\n\n<span style=\"font-weight: 400;\">Spine of scapular - the ledge that sweeps across the top back portion. Place your hand over the opposite shoulder to feel this ledge.</span>\n\n<span style=\"font-weight: 400;\">Subscapular fossa - front surface against ribs</span>\n\n<span style=\"font-weight: 400;\">Infraspinous fossa - back surface that gives hedonistic discomfort when you rub it against a ball, against a wall!!</span>\n\n&nbsp;\n<h2><b>The meeting places….</b></h2>\n&nbsp;\n<h2><b>Sternoclavicular Joint (S/C)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Where the sternum &amp; clavicle meet!</span>\n\n&nbsp;\n<h2><b>Acromioclavicular Joint (A/C)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Where the acromion &amp; clavicle meet!</span>\n\n&nbsp;\n<h2><b>Glenohumeral Joint </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Where the Glenoid fossa &amp; humerus meet!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24189\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_172528928-scaled-1.jpg\" alt=\"\" width=\"509\" height=\"482\" />\n<h2><b>Interesting shoulder facts </b></h2>\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">There’s no actual socket!</span></li>\n</ol>\n<span style=\"font-weight: 400;\">When we learn our anatomy the shoulder is described as a ball &amp; socket joint even though technically there isn\'t a socket! </span><span style=\"font-weight: 400;\">. The ball of the humerus instead moves against the flat surface of the glenoid fossa! The shoulder barely connects to the rest of the skeleton.</span>\n\n<span style=\"font-weight: 400;\">The only bony connection is at the collarbone as described above!</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">It goes all over the place!</span></li>\n</ol>\n<span style=\"font-weight: 400;\">When healthy, your shoulder should allow your arm to go in pretty much any directions. Its also </span><span style=\"font-weight: 400;\">considered a multiaxial joint due to its multiplanar capability.</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Muscles REALLY matter for your shoulder.</span></li>\n</ol>\n<span style=\"font-weight: 400;\">Because of the low level of bony connection to the rest of the skeleton, the lack of a socket, and the many directions of its movement mean that muscles have a much more critical job in this region. </span>\n<h1></h1>\n<h1>Would you like to learn more about shoulder biomechanics?</h1>\n&nbsp;\n\nPete Banbury, The Body Mapper &amp; Rachel Frances Thomson, Biomechanics Education share a passion for the same things\n\n&nbsp;\n<h2>Anatomy, Movement &amp; Education Experiences</h2>\n&nbsp;\n\nWith a combined 5 decades working within these fields this dedicated duo wanted to share some nuggets of functional / practical shoulder anatomy. Not only tips to recall the relevant anatomy but also how to understand it biomechanically in application\n\nSo if you are involved in improving movement in anyway &amp; looking for a deeper level of understand the anatomy &amp; biomechanics of your client’s shoulder, how to assess, monitor &amp; condition improved joint strength ratios this 2hr webinar is aimed specifically at you!\n\n&nbsp;\n<h3 class=\"p1\">Peter will show you how to EXPERIENCE anatomy in as many ways as possible</h3>\n<h3 class=\"p1\">Then Rachel will SHOW you how to assess your clients biomechanics to allow clever programme design</h3>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/working-with-shoulder-issues-webinar-dec-9th-2020-10am-12pm/#tab-description\" target=\"_blank\" rel=\"noopener\"> &gt;&gt;CLICK HERE TO GET THIS WEBINAR &lt;&lt;</a></h1>\n&nbsp;','Shoulder Biomechanics Part 5 -  The Bones of the Shoulder','','inherit','closed','closed','','25457-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',25457,'https://biomechanicseducation.com/?p=38648',0,'revision','',0),(38649,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<span style=\"font-weight: 400;\">Ok so we could actually call this section Core Muscles since this might be one way of defining the muscles that connect to the spine. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This would also depend upon how we define the core muscles &amp; that creates a whole other blog…..!</span>\n\n<span style=\"font-weight: 400;\">So to keep it simple; ‘muscles of the spine’ it is!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now there are many intricacies to this group of muscles due to the intricacies of the spine, where it is located &amp; its role in movement. Remember according to world leaders, the spine is the centerpiece of locomotion &amp; researches will say that no one muscle or muscle group is more important than another. For optimum spine stabilisation they should all be able to contribute in their role. So let\'s explore the spine muscles in their layers…..</span>\n\n&nbsp;\n<h2><b>Tranversospinalis Group </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Transversus</span><i><span style=\"font-weight: 400;\">, </span></i><span style=\"font-weight: 400;\">meaning</span><i><span style=\"font-weight: 400;\"> ‘</span></i><i><span style=\"font-weight: 400;\">turned</span></i> <i><span style=\"font-weight: 400;\">across’,</span></i><i><span style=\"font-weight: 400;\"> &amp; </span></i><span style=\"font-weight: 400;\">Spina</span><i><span style=\"font-weight: 400;\">, </span></i><span style=\"font-weight: 400;\">meaning</span><i><span style=\"font-weight: 400;\"> ‘</span></i><i><span style=\"font-weight: 400;\">thorn’)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These muscles are the deepest, with an important role in ‘proprioceptive stabilisation’ as they interlace between the transverse &amp; spinous processes.(those poky out bits).</span>\n\n<span style=\"font-weight: 400;\">With their short diagonal fibres, they are grouped by the length of their fascicles (from latin, </span><i><span style=\"font-weight: 400;\">fascis</span></i><span style=\"font-weight: 400;\"> meaning ‘</span><i><span style=\"font-weight: 400;\">bundle</span></i><span style=\"font-weight: 400;\">’) &amp; also by the region of the spine they cover. </span>\n\n<span style=\"font-weight: 400;\">They have a poor mechanical advantage since they do not produce large ranges of motion.</span>\n\n<span style=\"font-weight: 400;\">However they do help to produce unilateral (one side at a time) rotation, lateral flexion &amp; bilateral (both sides at the same time) extension.  </span>\n\n<span style=\"font-weight: 400;\">These are very ‘powerful’ muscles since they engage PRIOR to movement to </span><i><span style=\"font-weight: 400;\">segmentally stabilise</span></i><span style=\"font-weight: 400;\"> the spine ready for when we move our torso &amp; limbs. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">TASK</span>\n\n<span style=\"font-weight: 400;\">For example if you stand up right now…...did you? Yes go on, stand up….now sit down. The first thing we THINK happens is the gross (large) action we produce first, (like that forward lean you did to transfer your weight ready to stand). However to perform a movement the deepest layer MUST have engaged around the spine to maintain stability so that we can actually move with control!</span>\n\n<span style=\"font-weight: 400;\">That’s the role of these lovely muscles...</span>\n\n&nbsp;\n<h2><b><img class=\"aligncenter  wp-image-25119\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1709130394-scaled.jpg\" alt=\"\" width=\"504\" height=\"504\" />Multifidus</b></h2>\n<span style=\"font-weight: 400;\">This word is latin for </span><i><span style=\"font-weight: 400;\">‘much or many’</span></i><span style=\"font-weight: 400;\"> or ‘</span><i><span style=\"font-weight: 400;\">to split into many parts</span></i><span style=\"font-weight: 400;\">’. They are the deepest layer of the back &amp; the thickest of this group. With both deep &amp; superficial variations from the sacrum to the axis (C2), PSIS &amp; iliac crest to the spinous processes, this bad boy of the deep muscles looks like a xmas tree when you see the ‘branches’ feed in &amp; up the spine.</span>\n\n<span style=\"font-weight: 400;\">So what?</span>\n\n<span style=\"font-weight: 400;\">Well need fully functioning healthy </span><span style=\"font-weight: 400;\">fat free</span><span style=\"font-weight: 400;\"> Multifidus. Yes MRI scans can show fatty deposits on this muscle if not used enough!! Goods news - movement can reduce this adaptation. Which moves? Just use them often &amp; consistently in a variety of planes! Remember a key part of multifidus’ role is also to take pressure off the discs...well worth keeping them active right!??!?</span>\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-25095\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/max-okhrimenko-L3FHnmrPyCI-unsplash-scaled-1.jpg\" alt=\"\" width=\"306\" height=\"459\" /> </span>\n<h2><b>Rotatores</b></h2>\n<span style=\"font-weight: 400;\">(or </span><i><span style=\"font-weight: 400;\">rotatores spinae</span></i><span style=\"font-weight: 400;\">) meaning ‘</span><i><span style=\"font-weight: 400;\">to rotate</span></i><span style=\"font-weight: 400;\">’ there are 22 x small quadrilateral (meaning 4 sided) of these muscles in the thoracic region or 11 each side. From those transverse processes that poke out to the side of thoracic vertebrae to the bases of spinous processes that poke out the back &amp; the laminae that is part of the thoracic vertebrae that are 2 levels above. They are also underneath the multifidus. Visually they could be the laces of a corset feeding up the spine...truly beautiful!</span>\n\n&nbsp;\n<h2><b>Semispinalis </b></h2>\n<span style=\"font-weight: 400;\">This muscle has roots from the latin word </span><i><span style=\"font-weight: 400;\">semis</span></i><span style=\"font-weight: 400;\"> that means ‘half’ &amp; </span><i><span style=\"font-weight: 400;\">spina</span></i><span style=\"font-weight: 400;\"> meaning ‘thorn’.</span>\n\n<b>Divided into Semispinalis capitis (of the head - I remember this with ‘cap’ like the hat) , Semispinalis cervicis (neck), Semispinalis thoracis (thorax).</b><span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">These lil beauties move between the transverse processes at the side &amp; spinous processes out the back of the thoracic &amp; cervical spine up to the occiput (the back portion of the skull)</span>\n\n&nbsp;\n<h2><b>Erecta Spinae group </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This next ‘layer’ are providers of ‘inter segmental stabilisation’ &amp; also ‘co contractors’ with their cousins, on the opposite side, those hip &amp; spine flexors.</span>\n\n<span style=\"font-weight: 400;\">A better mechanical advantage than the previous group based upon their length &amp; leverage. Where multifidus we likened to a xmas tree, the erecta muscle group are more of a poplar tree in their presentation, longer branches.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25096\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-30-at-09.38.00.png\" alt=\"\" width=\"334\" height=\"420\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">TASK</span>\n\n<span style=\"font-weight: 400;\">For a sense of this group stand up again…. Yup I will get you moving &amp; learning….. now place the pads of your fingers (both hands) either side of your spine, where the erecta muscles live. Now from standing upright feel what they do when you hinge at the hip to lean just a little way forwards.</span>\n\n<span style=\"font-weight: 400;\">Did you feel that?? </span>\n\n<span style=\"font-weight: 400;\">They should engage, toughen &amp; bulge a little as they stop your head pulling your upper body forwards into flexion &amp; down with the weight of the skull. Then stand back up...feel them ease off...hinge..stand up ...hinge….stand up…on...off...on….off.. you get the idea??</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Erector spinae</span> <span style=\"font-weight: 400;\">could be described as</span> <span style=\"font-weight: 400;\">an intermediate group of spine muscles. They extend both sides (bilaterally) &amp; rotates or laterally flexes one side at a time (unilaterally). </span><b>They do this through their relationships, similar to the semispinalis group, with capitis (head), cervicis (neck), thoracis (thorax).</b>\n\n&nbsp;\n<h2><b>Longissimus </b></h2>\n<span style=\"font-weight: 400;\">This is obviously the longest one due to its name! To the side (lateral to) of the semispinalis muscles. Travelling from rectus abdominus to the transverse process.</span>\n<h2><b>Iliocostalis </b><i> </i></h2>\n<i><span style=\"font-weight: 400;\">(ilio - from the ilium costalis - to the ribs)</span></i><span style=\"font-weight: 400;\"> - attaches from the most lateral portion of ribs, to the sacrum, the iliac crest, spinous &amp; transverse processes.</span>\n<h2><b>Spinalis</b><span style=\"font-weight: 400;\"> </span></h2>\n<span style=\"font-weight: 400;\">The most medial sibling of the group, splits into spinalis dorsi, spinalis cervicis &amp; spinalis capitis. Travelling into the spinous processes &amp; occiput at the back of the head.</span>\n\n&nbsp;\n<h2><b><img class=\"aligncenter  wp-image-25121\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1800824056-scaled-1.jpg\" alt=\"\" width=\"581\" height=\"581\" />Quadratus Lumborum </b></h2>\n<span style=\"font-weight: 400;\">Like the piriformis in the pelvis, this is possibly the spine’s most infamous muscle. Most practitioners are aware of this lil devil!</span> <span style=\"font-weight: 400;\">Dropping down from the bottom rib to drape over the iliac crest &amp; then hang across to the transverse processes at the side of L1-4. This much discussed muscle will individually laterally flex the spine &amp; hitch, or lift up, the hip on the same side. Both QL’s working together will also extend the lumbar spine if while sitting you stick your bum out &amp; tip your pelvis forwards or anteriorly. QL also has a really important job working on the opposite side with its cousins TFL &amp; Glute Medius/ Minimus - yup those hip abductors. </span>\n\n<span style=\"font-weight: 400;\">How?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">TASK</span>\n\n<span style=\"font-weight: 400;\">Ok stand up again….yes move again! ;)</span>\n\n<span style=\"font-weight: 400;\">Place your right hand on the right side of your waist to imagine QL, then place your left hand onto the outside of your left hip to imagine TFL/Glute med/min. Now ‘lift’ your right hip…….this ‘hip hitch’ is the action we use when walking. </span>\n\n<span style=\"font-weight: 400;\">Imagine if your client’s QL, TFL or Glute Med/min are inhibited in any way…...how will their body compensate to enable them to walk? What could we do to identify &amp; improve the function of these areas?</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25099\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1544639351-scaled.jpg\" alt=\"\" width=\"427\" height=\"570\" />\n<h2><b>The Abdominals!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This group is often considered ‘the core’ by clients since their focus is on the front &amp; sides of their torso or the parts they can see.</span>\n\n<span style=\"font-weight: 400;\">They all dream of a </span><i><span style=\"font-weight: 400;\">6 pack stomach </span></i><span style=\"font-weight: 400;\">&amp; see adverts about how they can get one in 12 weeks or even 6 weeks or if they follow someone with abs showing on instagram. You can even download an app that superimposes abs onto your photo….for goodness sake!!</span>\n\n<span style=\"font-weight: 400;\">The ‘abs’ are written about in magazines as an area to focus on when considering strengthening the core </span><i><span style=\"font-weight: 400;\">for that washboard abs look! </span></i>\n\n<span style=\"font-weight: 400;\">We should understand them better anatomically to understand how to ‘condition’ them for function &amp; therefore result in whatever is achievable realistically in terms of aesthetics. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Any hoo... we all have a 6 pack...underneath the skin &amp; they have an important job to do!</span>\n\n&nbsp;\n<h2><b>Rectus abdominus </b></h2>\n<span style=\"font-weight: 400;\">Rectus means</span> <i><span style=\"font-weight: 400;\">straight </span></i><span style=\"font-weight: 400;\">&amp; abdominis relating to the abdomen. Now this could logically be classified as a core muscle. However when looking at its attachments it does not actually attach directly to the spine but instead to the pubic symphysis (behind the pubes), to the xiphoid process (bottom of the sternum) &amp; the costal cartilages of ribs 5-7. </span>\n\n<span style=\"font-weight: 400;\">Generally considered as a flexor of the spine (&amp; of course it will flex the spine) however its main purpose is probably to act as part of the ‘hydraulic amplifier’ mechanism. This is where Transverse Abdominis (TA) &amp; the thoraco-lumbar fascia create tension to stabilise the spine when performing tasks that require spinal stability. </span>\n\n<span style=\"font-weight: 400;\">The tendinous junctions of rectus abdominis are designed to help mitigate the lateral forces created by the TA contraction and help with the efficiency of the amplifier. (FANTASTIC BOOK -</span><i><span style=\"font-weight: 400;\">Spinal Engine, Gracovetsky, March 1989</span></i><span style=\"font-weight: 400;\">).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter  wp-image-25123\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641526-scaled.jpg\" alt=\"\" width=\"436\" height=\"581\" />The Oblique Non-identical Twins (I LOVE the obliques) are considering lateral flexors &amp; again they do assist this action however their role is far more important than that when you study their fibres &amp; the lines of pull they are capable of with the attachments they cling onto….</span>\n\n&nbsp;\n<h2><b>Internal obliques </b></h2>\n<span style=\"font-weight: 400;\">This layer travels from the front (</span><span style=\"font-weight: 400;\">Anterior) of the iliac crest, lateral half of inguinal (of the groin) ligament, to the thoracolumbar fascia (big diamond shaped fascial sheet on the lower back) onto the costal cartilages of ribs 8-12; Also via the abdominal aponeurosis to the linea alba (the fascial line down the middle of the tummy of the middle of that 6 pack!)</span>\n<h2><b>External obliques </b></h2>\n<span style=\"font-weight: 400;\">External surfaces of ribs 5-12. ... At the midclavicular (middle of the clavicle) line medially &amp; spinoumbilical line inferiorly, external abdominal oblique continues as an aponeurosis via which it inserts to the linea alba, pubic tubercle &amp; anterior half of iliac crest.</span>\n\n&nbsp;\n<h2><img class=\"aligncenter  wp-image-25125\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666655449-scaled.jpg\" alt=\"\" width=\"607\" height=\"607\" /></h2>\n<h2></h2>\n<h2></h2>\n&nbsp;\n\n<img class=\"aligncenter  wp-image-25124\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666658332-scaled.jpg\" alt=\"\" width=\"608\" height=\"608\" />\n<h2 style=\"text-align: left;\"><b>Transverse Abdominis (TVA) </b></h2>\n<span style=\"font-weight: 400;\">(or unmoving point) of the TA muscles is on the costal (rib) margin, iliac crest, &amp; inguinal ligament. The insertion (or moveable piece) of the TA muscles is located on the xiphoid process, symphysis pubis, &amp; linea alba….hopefully by now we are starting to remember some of these terminologies! </span>\n\n&nbsp;\n<h2><b><img class=\"aligncenter  wp-image-25126\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641502-scaled.jpg\" alt=\"\" width=\"391\" height=\"522\" />Hip flexors  </b></h2>\n<span style=\"font-weight: 400;\"> see pelvis <a href=\"https://www.biomechanicseducation.com/pelvic-hip-biomechanics-part-1-the-muscles-of-the-hip/\" target=\"_blank\" rel=\"noopener noreferrer\">CLICK HERE</a></span>\n\n&nbsp;\n<h2><b>Diaphragm </b></h2>\n<span style=\"font-weight: 400;\">Greek word <em>diaphragma</em> meaning partition or barrier. Primarily it is attached to the sternum at the xiphoid process, the lower six ribs &amp; the spaces in between, also the lower part of the spine. ... The spinal attachment is in the upper lumbar section. The diaphragm\'s insertion point is called the central tendon.</span>\n\n&nbsp;\n<h1><b><img class=\"aligncenter  wp-image-25127\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_303082082-scaled.jpg\" alt=\"\" width=\"387\" height=\"516\" />Interesting facts </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">No one muscle, or muscle group, is more important than any other.  Many will talk of Transverse Abdominis (TVA or TA) &amp; Multifidus as the most important muscles in the core, but if only one group or muscle of the full range of stability muscles is not functioning correctly, then the trunk is unstable.</span><span style=\"font-weight: 400;\">\n</span><span style=\"font-weight: 400;\"> (</span><i><span style=\"font-weight: 400;\">Cholwewicki and McGill, 1996, O’Sullivan et al, 1997, 1998, Allison et al, 1998)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Trunk or core stability in motion should be a reflex reaction as opposed to a conscious effort….like core stability training.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The core muscles are often inhibited in cases of low back pain.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Psoas Major &amp; also Latissimus Dorsi could (&amp; probably should) be deemed ‘core’ muscles based on their involvement in trunk/spine stability &amp; connecting the upper &amp; lower body</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/pelvic-biomechanics-practical-anatomy-part-1-the-bones-muscles-actions/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">Would you like to invest in your learning by gaining access to an online CPD about Pelvic Biomechanics - The Bones, Actions &amp; Muscles?&lt;&lt;Just Click Here</a></h1>','Spine Biomechanics Part 4 - The Muscles of the Spine','','inherit','closed','closed','','25092-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',25092,'https://biomechanicseducation.com/?p=38649',0,'revision','',0),(38650,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<span style=\"font-weight: 400;\">From what I have read most of the world leaders in biomechanics feel that the spine is the centerpiece of movement &amp; it\'s easy to understand why. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is a beautifully robust piece of architecture that connects the upper &amp; lower body, allowing us to move in so many planes, actions &amp; combinations. So much so that we might appreciate it as hard to damage!</span>\n\n<span style=\"font-weight: 400;\">As we dive into the anatomy of the spine here hopefully it is recognisable that it takes years to really do any damage biomechanically through lifestyle.</span>\n\n<span style=\"font-weight: 400;\">The exciting thing about this means we could, as movement practitioners, potentially reduce the risk of future problems. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So through this 3rd blog in this practical anatomy series lets explore the wonderful intricacies of the bones of the spine!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But first…..</span>\n\n&nbsp;\n<h2><b>Interesting facts </b></h2>\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Babies spines develop 2 months after conception </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">From birth, the baby\'s spine is only kyphotic. From the time they begin to hold their head up &amp; start walking they will begin to develop lordosis </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">We have the same number of cervical (nack) vertebrae as giraffes! </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">There are 120 muscles that relate to the spine offering lots of movements. Thankfully we won\'t be covering every single one of these in part 4!</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The spine has 220 individual ligaments for dynamic support - it needs it right!?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Wow...there are 100 joints! </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Spine cartilage can expand &amp; contract. This means you are (on average) ½” taller in the mornings due to lying down as opposed to having gravity compressing your spine downwards while standing upright throughout the day.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Your spine has exceptional memory as it becomes used to, &amp; remembers, positions.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">At birth we generally have 33 bones but as adults we can have just 25 as the lower vertebrae fuse together.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The spinal cord weighs 35 grammes! That’s a similar weight as a 60 watt lightbulb.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The length of an average male spine is 70cm &amp; female’s around 60cm </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Cartilage makes up 25% of the length of the spine </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">We shrink on average about ⅓ inch every 10 years - I know this because my mum is now 5ft 4” having previously been 5ft 8”...oooer!</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Around 80% of back pain does NOT need treatment, which is why we need to gain skills to understand pain &amp; things that can cause it.</span></li>\n</ol>\n&nbsp;\n<h1><b>The Bones</b></h1>\n&nbsp;\n<h2><b>Vertebrae</b></h2>\n<span style=\"font-weight: 400;\">Let us begin at the top this time with the vertebrae! Vertebrae being plural of vertebra (individual) &amp; the word vertebra in latin means ‘joint’. It also has history from the word </span><i><span style=\"font-weight: 400;\">vertere</span></i><span style=\"font-weight: 400;\"> which means ‘to turn’, which is easy to imagine due to turning or rotating being one of the primary actions produced from the spine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The vertebrae make up 5 sections that create those curved lines on a side view of a client’s back as we look at them standing.</span>\n\n&nbsp;\n<h2><b>Cervical Spine (Vertebrae)</b></h2>\n<span style=\"font-weight: 400;\">Cervical is the first or upper most portion of the spine &amp; is made up of 7 vertebrae. Its name ‘</span><i><span style=\"font-weight: 400;\">cervical</span></i><span style=\"font-weight: 400;\">’ comes from the latin word for ‘neck’. You may also be familiar with its use in relation to the </span><i><span style=\"font-weight: 400;\">cervix</span></i><span style=\"font-weight: 400;\"> or ‘neck’ of the womb.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have 7 cervical vertebrae &amp; this is the most mobile portion of our spines to allow us to pivot our heads on top of our body so we can see around us - hopefully!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our top 2 cervical vertebrae have their own names too!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The </span><b>Atlas</b><span style=\"font-weight: 400;\">, also known as C1, is named from Greek mythology. Atlas was the son of the God Titus &amp; was condemned to hold the sky up - poor bloke! So we can visualise our C1 holding up our head as poor Atlas did the world! </span>\n\n<span style=\"font-weight: 400;\">Glad he did though otherwise who knows where we would be right now!?!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then we have </span><b>Axis</b><span style=\"font-weight: 400;\"> (from the latin word </span><i><span style=\"font-weight: 400;\">axle</span></i><span style=\"font-weight: 400;\">) also known as </span><i><span style=\"font-weight: 400;\">vertebra cervicalis II</span></i><span style=\"font-weight: 400;\"> or </span><i><span style=\"font-weight: 400;\">epistropheus</span></i> <span style=\"font-weight: 400;\">OR </span><span style=\"font-weight: 400;\"> in my world for simplicity\'s sake C2! Axle probably because it forms a </span><i><span style=\"font-weight: 400;\">pivot!</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These top 2 vertebrae form the</span> <i><span style=\"font-weight: 400;\">atlanto-</span></i><b><i>axial</i></b><i><span style=\"font-weight: 400;\"> joint</span></i><span style=\"font-weight: 400;\"> - whoop whoop!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now here\'s a tip to finding C7 if it ever takes your fancy. Sit or stand upright, place your hand onto the back of your neck &amp; then protract, or jut, your chin forwards. The most prominent spinous process (nobly bit that pokes out at the back) when you do this is likely to be C7. </span>\n\n&nbsp;\n<h2><b>Thoracic Spine</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This section of your spine has minimal movement by comparison to the other sections, although more than most of us can actually do these days!!!! but it’s 7 vertebrae are designed for stability &amp; protection of your organs in partnership with the ribs (see rib anatomy below) </span>\n\n<img class=\"aligncenter wp-image-24895\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.37.56.png\" alt=\"\" width=\"543\" height=\"405\" />\n\n<span style=\"font-weight: 400;\">As you look from over the top, as in this example, of a thoracic vertebrae, you can see all sorts of portions that have been named. Now some may appear to be more valuable than others but they’re all good to remember if you can. So I will add a test at the bottom of this blog for you to complete because I know you LOVE a test...right!?!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway here are the names, their definitions &amp; reasons for being;</span>\n\n&nbsp;\n<h2><b>Body </b></h2>\n<span style=\"font-weight: 400;\">The large </span><span style=\"font-weight: 400;\">front portion of the vertebra also known as the </span><i><span style=\"font-weight: 400;\">centrum</span></i><span style=\"font-weight: 400;\">. The body is made of cancellous bone (also called either trabecular or spongy because of its appearance) &amp; ‘sandwiches’ the discs in between the vertebrae above/below to contribute to absorption of pressure. </span>\n\n<span style=\"font-weight: 400;\">Then there is a more compact outer layer of bone (also called the ‘cortical rim’ or dense) due to its contribution to supporting &amp; limiting movement.</span>\n\n&nbsp;\n<h2><b>Spinous process</b><span style=\"font-weight: 400;\"> </span></h2>\n<span style=\"font-weight: 400;\">This is the bony part that pokes out of the back (posteriorly) &amp; can be felt if you run your finger down someone\'s spine, maybe in the heat of the moment!?</span>\n\n<span style=\"font-weight: 400;\">It is also a muscle attachment site to pull &amp; lever actions like spinal extension, rotation or to stabilise of course!</span>\n\n&nbsp;\n<h2><b>Transverse process</b><span style=\"font-weight: 400;\"> </span></h2>\n<span style=\"font-weight: 400;\">These poke out to the sides &amp; aren\'t so easy to feel on yourself! Transverse comes from the latin word, </span><i><span style=\"font-weight: 400;\">transvertere</span></i><span style=\"font-weight: 400;\"> - which means ‘across’ &amp; ‘turn’. </span>\n\n<span style=\"font-weight: 400;\">These also act as a muscle attachment site to pull &amp; lever actions like lateral flexion, rotation or stabilisation as above.</span>\n\n&nbsp;\n<h2><b>Foramen</b><span style=\"font-weight: 400;\"> </span></h2>\n<span style=\"font-weight: 400;\">This word literally means ‘opening or hole’ inside the body. This is an important gap because it\'s where the spinal cord sits!</span>\n\n<span style=\"font-weight: 400;\">Now this ‘hole’ is made up of 4 ‘sides’ that have names too…..</span>\n\n&nbsp;\n<h2><b>Lamina</b></h2>\n<span style=\"font-weight: 400;\">Means</span><span style=\"font-weight: 400;\"> ‘plate’ or ‘layer’ &amp; this makes up some of the walls that form the vertebral foramen.</span>\n\n&nbsp;\n<h2><b>Pedicle </b></h2>\n<span style=\"font-weight: 400;\">Meaning ‘little foot’ but is a </span><span style=\"font-weight: 400;\">cylinder-shape that sticks out from the back of the vertebral body, providing side protection &amp; sides of the foramen encasing the spinal cord &amp; nerves. </span>\n\n&nbsp;\n<h2><b>Facet joint</b><span style=\"font-weight: 400;\"> </span></h2>\n<span style=\"font-weight: 400;\">Facet means smooth flat surface. </span>\n\n<span style=\"font-weight: 400;\">This is a key joint in the spine because of its role &amp; risk. Being a joint it’s simply where 2 bones meet. The superior articular facet of the vertebra below the inferior articular facet of the vertebra above. Where these 2 surfaces meet creates a facet joint. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The key role of this joint is to limit movement due to its influence on the distance between each vertebrae where the discs are. These discs require space to squish, absorb &amp; cushion movement when we bend in any direction. If these facet joints get too close to each other there is a risk of wear. Now if their job is to limit movement to protect discs &amp; the spinal cord, well wearing of them is bad news as you can imagine!</span>\n\n<span style=\"font-weight: 400;\">How might why wear? Well if that QL muscle (see next blog for spine muscles) gets tight or inhibited it can result in reducing the space between the facet joint = wear</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Or</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If the pelvis is ‘dysfunctional’, shall we say, this can result in one ilium sitting higher than the other, also causing a closing of the gap at the facet joint.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So What? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The brilliantly simple iMoveFreely programme is designed specifically to reduce the risk of these issues through freedom of movement in each part of the body. They are such specific, low grade techniques that they can dramatically influence specific areas of your client’s anatomy, like taking pressure off these facet joints.</span>\n\n&nbsp;\n<h2><b>Thoracic Spine Ranges of Motion </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When we look at these ‘norms’ of movement in degrees at each thoracic vertebrae, it helps us appreciate what we might expect if we were to test each of these actions listed in the grid below. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Looking at this graph it\'s clear that the thoracic spine tots up its highest ranges of motion in rotation. If we add up the total from C7-L1 it equals 57 degrees of thoracic rotation in either direction…..hopefully!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if you can keep everything else that contributes to rotation static as best you can then ask your client to rotate their spine, observe how far they rotate, eyeballing from an aerial view, you can evaluate how close, or far, they are to/from the norms below….</span>\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-24896\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.40.48.png\" alt=\"\" width=\"624\" height=\"430\" /></p>\n\n<h2><b>Ribs</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now we really MUST talk about these bony ‘arches’ - rib meaning ‘</span><i><span style=\"font-weight: 400;\">cover, ceiling or arch</span></i><span style=\"font-weight: 400;\">’. The ribs will ONLY attach to the thoracic vertebrae, not the lumbars, not the cervical. </span>\n\n<span style=\"font-weight: 400;\">They’re typically made up of a body, neck, head, tubercle, angle &amp; costal groove - see image.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you look back up to the image of the thoracic vertebra again &amp; see these 2 areas…….</span>\n\n<b>Transverse costal facet - </b><span style=\"font-weight: 400;\">Transverse you know, costal means relating to ribs, facet - smooth/flat</span>\n\n<b>Superior costal facet - </b><span style=\"font-weight: 400;\">You getting the idea? Superior - upper. Costal - relates to rib. Facet - smooth/flat.</span>\n\n<span style=\"font-weight: 400;\">….these are the landing sites for the ribs to attach to.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OK I\'d like you to try something now to appreciate rib movements;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sit or stand upright &amp; place your palm across your top 5 ribs…..take a breath &amp; feel their movement. </span>\n\n<span style=\"font-weight: 400;\">Now place your palms around your 6-10 ribs &amp; breath, feel the difference in action. </span>\n\n<span style=\"font-weight: 400;\">Now finally place your palms around your last/lowest ribs 11-12 - known as ‘floating’ ribs since they ONLY attach at the back, not at the front, in fact they\'re half the size &amp; therefore can\'t reach the front!! They move quite a bit if you press them, they almost bounce, to allow for large intakes of breath!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Ribs 1-8 are known as ‘true’ - why? They truly do attach to the sternum</span>\n\n<span style=\"font-weight: 400;\">Ribs 8-10 known as ‘false’ - why? The just </span><i><span style=\"font-weight: 400;\">pretend</span></i><span style=\"font-weight: 400;\"> to attach to the sternum via the cartilage)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now repeat this &amp; imagine their relationship with the thoracic spine &amp; your overall spine\'s mobility. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Can you understand how a stiff thoracic spine can limit breathing capacity? </span>\n\n<span style=\"font-weight: 400;\">Or </span>\n\n<span style=\"font-weight: 400;\">Can you understand how improving your clients thoracic mobility can increase lung capacity?</span>\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-24897\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.42.30.png\" alt=\"\" width=\"531\" height=\"334\" /></p>\n\n<h2><b>Interesting Facts about Ribs </b></h2>\n<b>(</b><a href=\"https://www.mentalfloss.com/article/502701/9-interesting-facts-about-ribs\"><span style=\"font-weight: 400;\">https://www.mentalfloss.com/article/502701/9-interesting-facts-about-ribs</span></a><b>)</b>\n\n&nbsp;\n<h3><b>In rare instances we can have a Gorilla Rib!</b></h3>\n<i><span style=\"font-weight: 400;\">In rare cases, which have nothing to do with gender, a human might turn up sporting extra lumbar ribs, for a total of 13 pairs of ribs, much like our distant cousins, the gorillas. Thus, it\'s colloquially known as a \"</span></i><a href=\"https://books.google.com/books?id=9ySapTadd6kC&amp;pg=PA98&amp;lpg=PA98&amp;dq=gorilla+anatomy,+ribs&amp;source=bl&amp;ots=0nYerPFCmB&amp;sig=Dv2nSGDid8va2bZGhWth17MSMg8&amp;hl=en&amp;sa=X&amp;ved=0ahUKEwjR95j_tKrWAhXqgFQKHc8LBKkQ6AEIUTAK#v=onepage&amp;q=gorilla%20anatomy%2C%20ribs&amp;f=false\"><i><span style=\"font-weight: 400;\">gorilla rib</span></i></a><i><span style=\"font-weight: 400;\">.\"</span></i>\n<h3><b>Ribs are the reason Neanderthals didn\'t need belts!</b></h3>\n<h4><i><span style=\"font-weight: 400;\">Neanderthals had </span></i><a href=\"https://books.google.com/books?id=NYg0CwAAQBAJ&amp;pg=PT156&amp;lpg=PT156&amp;dq=neanderthals+rib+cage+shape&amp;source=bl&amp;ots=uGdUFQTT6h&amp;sig=-ugu-Q_8Wa71I8O-jmkmr0dUj98&amp;hl=en&amp;sa=X&amp;ved=0ahUKEwjrjtXjo7TWAhVn5YMKHWUyB5UQ6AEIggEwEw#v=onepage&amp;q=neanderthals%20rib%20cage%20shape&amp;f=false\"><i><span style=\"font-weight: 400;\">wider, thicker rib cages</span></i></a><i><span style=\"font-weight: 400;\"> than we modern slim-waisted humans, which would have made them terrible models for skinny jeans. A </span></i><a href=\"https://www.aftau.org/news-page-archaeology?=&amp;storyid4677=2262&amp;ncs4677=3%5C\"><i><span style=\"font-weight: 400;\">2016 study</span></i></a><i><span style=\"font-weight: 400;\"> in American Journal of Physical Anthropology found that the Ice-Age diet is likely responsible for the larger ribcage and wider pelvis in Neanderthals. Essentially, carbs were scarce and fat was abundant. This led to an enlarged liver, kidneys and \"their corresponding morphological manifestations,\" the authors write. In other words, they needed more space to house bigger organs.</span></i></h4>\n<h3><b>2 Very different kinds of athletes share one common injury…</b></h3>\n<h4><i><span style=\"font-weight: 400;\">\"Rowers and baseball pitchers are the most common athletes to suffer from stress fractures of the ribs,\" Martinez says. This is caused by the serratus anterior muscle pulling on the delicate ribs. \"Other athletes that may be more likely to suffer from rib stress fractures include golfers, dancers, weightlifters and volleyball players,\" he adds.</span></i></h4>\n<h3><b>You can sneeze your way to a rib fracture!</b></h3>\n<h4><i><span style=\"font-weight: 400;\">\"True\" rib fractures—where the bone breaks all the way through—are usually from traumatic events such as \"a hard football tackle [or] car accident,\" Martinez says. However, sometimes a rib fracture can occur \"from sneezing or coughing due to the force of the contracting chest wall muscles on the ribs.\" Treatment for true rib fractures is the same as rib stress fractures.</span></i></h4>\n<h3><b>‘Waist Training’ used to be all the rage….still sometimes is!  </b></h3>\n<h4><i><span style=\"font-weight: 400;\">Women have historically worn corsets, undergarments that cinch the torso in, particularly at the waist, bringing ribs and organs closer together for a smaller waist and more prominent bust. Despite corsets having gone out of fashion </span></i><a href=\"http://tahliamckellartextiles.weebly.com/corset-timeline.html\"><i><span style=\"font-weight: 400;\">by the 1920s</span></i></a><i><span style=\"font-weight: 400;\">, when women began to prefer the looser, more flowing garments of the Flapper era, a number of contemporary women still wear them for reasons ranging from aesthetics to performance art, spawning a practice known as </span></i><a href=\"https://lucycorsetry.com/2013/10/13/waist-training-vs-tight-lacing/\"><i><span style=\"font-weight: 400;\">tight lacing or waist training</span></i></a><i><span style=\"font-weight: 400;\">. In this movement, women actively whittle their waists down to exceptionally small circumferences.</span></i></h4>\n<a href=\"https://www.usatoday.com/story/news/nation-now/2015/11/05/waist-whittlers-dangers/75225022/\"><i><span style=\"font-weight: 400;\">Doctors warn</span></i></a><i><span style=\"font-weight: 400;\"> that there is risk of permanent damage to squished organs, as well as such uncomfortable syndromes as acid reflux syndrome and back pain. But it doesn\'t stop those who love the look!</span></i>\n\n&nbsp;\n<h2><b>Sternum &amp; friends...                                                               <img class=\"wp-image-24898 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.45.41.png\" alt=\"\" width=\"248\" height=\"377\" /></b></h2>\n&nbsp;\n<h2><b>Jugular notch</b><span style=\"font-weight: 400;\"> </span></h2>\n<span style=\"font-weight: 400;\">Latin roots, </span><i><span style=\"font-weight: 400;\">Jugulum</span></i><span style=\"font-weight: 400;\"> meaning </span><span style=\"font-weight: 400;\">throat or collarbone</span>\n<h2><b>Manubrium</b><span style=\"font-weight: 400;\"> </span></h2>\n<span style=\"font-weight: 400;\">F</span><span style=\"font-weight: 400;\">rom </span><i><span style=\"font-weight: 400;\">manus</span></i><span style=\"font-weight: 400;\"> for hand. </span><span style=\"font-weight: 400;\">Manubrium</span><span style=\"font-weight: 400;\"> means to be a handle.\n</span>\n<h3><b>Sternum </b></h3>\n<b> </b><span style=\"font-weight: 400;\">From the </span><span style=\"font-weight: 400;\">Greek word </span><i><span style=\"font-weight: 400;\">sternon</span></i><span style=\"font-weight: 400;\">, ‘chest, breast, or breastbone’ from a root that means ‘flat surface.’</span>\n<h2><b>Xiphoid process</b></h2>\n<span style=\"font-weight: 400;\">Greek </span><span style=\"font-weight: 400;\">word </span><i><span style=\"font-weight: 400;\">xiphos</span></i><span style=\"font-weight: 400;\"> for ‘straight sword’</span>\n\n&nbsp;\n<h2><b>Lumbar Spine </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Lumbar vertebrae, of which there are 5, are much stockier than their thoracic buddies due to having more load on top of them, therefore designed wider to support the extra load. Look at the difference here then go back to compare to the thoracic vertebrae above…..  </span>\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-24899\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.47.56.png\" alt=\"\" width=\"416\" height=\"366\" /></p>\n\n<h2><b>Lumbar Spine Ranges of Motion</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As we did earlier for the thoracic spine, here we can see the ‘norms’ of ranges in degrees for the lumbar spine. Can you see that the lumbar spine has more capacity for flexion? Interesting eh! Remember the lumbar spine is ‘normally’ in extension, or lordosis, so it should make sense that the ranges it can achieve in flexion will be greater. However its capacity for rotation is only 3-4 degrees at each joint.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How do you imagine this would relate to movement or assessing movement?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember we can use these norms to evaluate a client\'s capacity. Subjective - yes to some degree but better than no evaluation at all, right!? </span>\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-24900\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.49.35.png\" alt=\"\" width=\"463\" height=\"271\" /></p>\n<span style=\"font-weight: 400;\">For </span><b>Sacrum &amp; Coccyx</b><span style=\"font-weight: 400;\"> - see Pelvis Biomechanics Part 1- The Bones!</span>\n\n&nbsp;\n<h2><b>Neutral Spine</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The neutral spine position can be a controversial topic, which is likely due to the varying presentations that could be deemed ‘neutral’, the fact we are rarely in our ‘neutral’ &amp; yet some schools of thought teach ‘</span><i><span style=\"font-weight: 400;\">neutral spine</span></i><span style=\"font-weight: 400;\">’ as a position we should be able to get into &amp; sustain while moving. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What is a neutral spine anyway?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well I will have a go at explaining my thoughts based upon my limited knowledge &amp; understanding of its definition. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Regular spines are usually made up of a series of curves that either curve away from or toward the body</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cervical &amp; Lumbar areas are concave or are </span><i><span style=\"font-weight: 400;\">lordotic</span></i><span style=\"font-weight: 400;\">. </span>\n\n<b>Lordotic - </b><span style=\"font-weight: 400;\">Greek word from lordos meaning ‘bent backward’</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whereas the Thoracic &amp; Sacrum areas are convex or kyphotic. </span><b>Kyphotic - </b><span style=\"font-weight: 400;\">Greek word </span><i><span style=\"font-weight: 400;\">kyphos</span></i><span style=\"font-weight: 400;\"> ‘crooked’</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">From the side view this gives an ‘S’ shape….or that\'s what we would normally expect.</span>\n\n<span style=\"font-weight: 400;\">When these ‘normal’ curves are present it should mean the discs have the same pressure around the outer edges - anterior to posterior &amp; laterally. </span>\n\n<span style=\"font-weight: 400;\">So when our client’s round their spine forwards into flexion or over a computer, they are creating more pressure to the anterior (front) of the spine/discs etc, which is fine - until it\'s done consistently for days, weeks, months &amp; years. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As our bodies evolve &amp; adapt to our surroundings it\'s no surprise that our spinal curves are changing. So much so that different cultures, different people, different lifestyles can result in different degrees of ‘S’ shape.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This means that being able to coach a neutral spine is contentious if/when we have a variety of presentations. How would we know what neutral spine is when we cannot see the actual spine? It\'s subjective but it shouldn’t stop us coaching better intrinsic function &amp; movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In some individuals they can even present with a more J shape to their spine. Flatter but with a curve at the top of the buttocks!</span>\n\n&nbsp;\n<h2><b>Hyper Spines !!!???</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is misinterpreted that lordosis is a </span><span style=\"font-weight: 400;\">condition or diagnosis</span><span style=\"font-weight: 400;\">. In fact I have often been told by clients “</span><i><span style=\"font-weight: 400;\">I have lordosis</span></i><span style=\"font-weight: 400;\">” because they were told this by their practitioner, or had read it somewhere, but this statement is not technically accurate &amp; can be confusing. </span>\n\n<span style=\"font-weight: 400;\">Lordosis is a position NOT a diagnosis &amp; this is the same with kyphosis.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However HYPERlordosis or HYPERkyphosis could be deemed excessive curvature. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hyper = ‘over &amp; beyond’</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The ‘diagnosis’ can only be made by a qualified practitioner &amp; would likely be because they suspected that this exaggerated spine shape is the cause of reported symptoms. </span>\n\n<span style=\"font-weight: 400;\">To ‘measure’ degrees of curvature could be challenging when you consider how unique we all are. So addressing the symptoms rather than the actual curve, or the things that can affect our curves, would probably result in more success…...what do you think?</span>\n\n&nbsp;\n<h2><b>Scoliosis</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is a structural lateral curve of the bones that is likely more visible from the back. Severity again can vary greatly &amp; it doesn\'t guarantee having symptoms.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However the appearance of a lateral ‘scoliotic’ curve can be caused by soft tissue tensions too! </span>\n\n<span style=\"font-weight: 400;\">That pesky lil QL again! </span>\n\n<span style=\"font-weight: 400;\">Ooooooo betcha can\'t wait for </span>\n\n<span style=\"font-weight: 400;\">Spine Biomechanics - Part 4 The Muscles of the Spine now!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whoah before that…...</span>\n\n&nbsp;\n<h2><b>Spine Biomechanics So what?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Look, keeping this super simple in application, the spine SHOULD present with a nice smooth ‘C’ shaped curve when we bend in any direction. </span>\n\n<span style=\"font-weight: 400;\">If it does not, what direction does your client struggle with? Flexion?</span>\n\n<span style=\"font-weight: 400;\">Extension? Rotation?</span>\n\n<span style=\"font-weight: 400;\">Is there an asymmetry from one side to the other?</span>\n\n<span style=\"font-weight: 400;\">Does it feel stiff or tight?</span>\n\n<span style=\"font-weight: 400;\">What would you understand to be the intervention for a stiff joint?</span>\n\n<span style=\"font-weight: 400;\">Remember ‘pain’ is a red flag &amp; only the remit of a qualified practitioner. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OPTIONAL TEST -Can you name these diagrams?</span>\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-24901\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-16-at-13.51.37.png\" alt=\"\" width=\"411\" height=\"564\" /></p>\n\n<h3><span style=\"font-weight: 400;\">Any questions please hit reply/comment &amp; share if you think it will be helpful to others!</span></h3>\n&nbsp;\n<h1><span style=\"font-weight: 400;\">NEXT TIME;</span></h1>\n<h1><b>Spine Biomechanics - Part 4 The Muscles of the Spine now!</b></h1>\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Remember we have several online educational programmes to compliment this blog series!</span></h2>\n<h2>Why not CLICK ON one now?</h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">Lockdown Bundle Online CPD Training </span></a></h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/pelvic-spine-biomechanics-online-cpd-training/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">Pelvic &amp; Spine Biomechanics Online CPD Training </span></a></h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor-online-virtual-workshop/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">iMoveFreely Instructor Online CPD Training</span></a></h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/weak-glutes-free-webinar/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">FREE Weak Glutes Webinar </span></a></h2>\n<h2><a href=\"https://www.biomechanicseducation.com/product/5-steps-to-a-successful-online-presence-free-webinar/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">FREE 5 Steps to a successful online presence </span></a></h2>','Spine Biomechanics - Part 3 - The Bones of the Spine','','inherit','closed','closed','','24894-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',24894,'https://biomechanicseducation.com/?p=38650',0,'revision','',0),(38651,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<h1><span style=\"font-weight: 400;\">Pelvic (Hip) Biomechanics - Part 2 - The Muscles of the Hip</span></h1>\n&nbsp;\n<h4><span style=\"font-weight: 400;\">This is the second on this series having discussed <a href=\"https://www.biomechanicseducation.com/pelvic-hip-biomechanics-part-1-the-bones/\" target=\"_blank\" rel=\"noopener noreferrer\">Pelvic (Hip) Biomechanics - Part 1 - The Bones of the Hip  &lt;&lt; HERE</a></span></h4>\nThose of you who read these blogs regularly will recall my encouragement to \'forget the muscles\' to better understand movement. Hopefully you will have been practicing that for some time now &amp; have some degree of confidence with understanding hip flexion, extension, abduction etc etc for example. This series is now aimed at increasing more detailed anatomy knowledge &amp; recall by giving relevance to the bones &amp; muscles that produce these movements.\n\nThere are of course many more structures that we could explore but I am going to focus on key areas that should be more familiar &amp; will be most helpful when you want to help your clients move more freely, with more confidence &amp; in less pain.\n\n&nbsp;\n\nOne thing I find helpful is visual word association &amp; so researching the history of how certain muscles or anatomy got its name (usually from latin/Greek origin) can help with recall sometimes. Why not reply or leave a comment below with your tactics &amp; methods for recall?\n\n&nbsp;\n\nSo heres what I would like you to do right now......Firstly save the URL to these pages to somewhere you can easily access them when you\'re having a little educational screen time....go on, I will wait.....\n\nNow just take one section, one muscle or one area at a time. As you read each section grab your anatomy book, if you have a skeleton grab that too, along with a resistance band &amp; physically place the ends of the band on your skeleton using this blog &amp; your manual for each muscle.\n\n&nbsp;\n\nVISUALISE the attachments\n\nIMAGINE the line/s of pull\n\nPerform that muscle\'s action yourself - yes lift/move your leg\n\nFeel the area while VISUALISING again - palpating or feeling your own muscles\n\nList &amp; consider the movements or exercises that muscle will produce or assist\n\nWrite as many of them as you can down in your anatomy /exercise library note book\n\nThen learn techniques to improve the function of each area/muscle or movement.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anatomy can be studied for many many years with still so many more new things to learn. Even though I have been a movement geek for 3 decades I still feel there is so much more I can learn! By creating these blogs for you I am reinforcing &amp; refreshing my own recall &amp; anatomical vocabulary....so thank YOU!</span>\n\n<span style=\"font-weight: 400;\">It is my hope that this series gives us all a little bit more confidence when understanding anatomy, discussing anatomy &amp; analysing it. Just i</span><span style=\"font-weight: 400;\">magine this is a continuation of your original anatomy study &amp; preparation for further learning on other educational programmes.</span>\n\n<span style=\"font-weight: 400;\">So shall we begin at the bottom……? The bum, the butt...</span>\n\n&nbsp;\n<h1><b>The Glutei</b><b> OR Gluteals!</b></h1>\n&nbsp;\n\n<b>Plural name for the ‘glutes’ </b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Possibly the MOST talked about muscle group in our industry, right!? Why do we think that is?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It relates to pelvic function?</span>\n\n<span style=\"font-weight: 400;\">Commonly thought of as ‘weak’?</span>\n\n<span style=\"font-weight: 400;\">We sit on them a LOT?</span>\n\n<span style=\"font-weight: 400;\">They relate to all of the compound moves?</span>\n\n<span style=\"font-weight: 400;\">They relate to a sexiness scale on instagram in booty shots? </span>\n\n<span style=\"font-weight: 400;\">Who knows….? All of the above maybe?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But how well do we understand each of them technically? their attachments? their actions?</span>\n\n<span style=\"font-weight: 400;\">Also which exercises/movements they contribute to? </span>\n\n&nbsp;\n<h2><b>Gluteus Maximus </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This name speaks for itself as it is the biggest buttock / rump &amp; it is also the primary hip extensor, (assisted by the top portion of 3 hamstrings) its also a lateral rotator of the hip, an abductor of the hip where it feeds into the ITB &amp; guess what!? the lower fibres actually </span><i><span style=\"font-weight: 400;\">adduct</span></i><span style=\"font-weight: 400;\"> the hip where they attached to the back of the femur. </span>\n\n<span style=\"font-weight: 400;\">So it could be argued it is an antagonist to itself - oooer!</span>\n\n<span style=\"font-weight: 400;\">It does all of this because it attaches to the coccyx, the sacrum, posterior or back of the iliac crest, (along with the sacrotuberous &amp; sacroiliac ligaments) &amp; down into the ITB (iliotibial band or tract) &amp; the gluteal tuberosity. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">LOOK...</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24770\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/1401137150-huge-scaled-1.jpg\" alt=\"\" width=\"560\" height=\"560\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now consider what is happening when you sit on this bad boy for prolonged periods. It is known as a prime mover in fundamental movements like squats, deadlifts, bending over, standing up, sitting down &amp; has some input into walking with more involvement when climbing the stairs due to the extra range required. It is also a stabiliser when standing &amp; co-contracting with the hip flexors. These 2 muscle groups should apparently have a balanced 1:1 ratio of strength. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">NOTE: It is important to understand the ‘Gluteal’s’ roles individually because often they are misunderstood due to the lazy way they can be discussed as a group on social media; for example.</span>\n\n<span style=\"font-weight: 400;\">When looking at their actions that they are actually antagonistic to each other so its important to appreciate what this could mean when conditioning them or testing their capacity.</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">To test Glute Maximus’s performance remember its primary role is in hip extension. </span></i>\n\n<i><span style=\"font-weight: 400;\">So super simple test hip extension!</span></i>\n\n<i><span style=\"font-weight: 400;\">To test hip extension you could simply ask your client to perform a high step up &amp; observe... </span></i>\n\n<i><span style=\"font-weight: 400;\">What happens at their hip? </span></i>\n\n<i><span style=\"font-weight: 400;\">Do they need to push off the bottom foot to assist the glute max being tested? </span></i>\n\n<i><span style=\"font-weight: 400;\">What could this mean? </span></i>\n\n<i><span style=\"font-weight: 400;\">What could you do?</span></i>\n\n&nbsp;\n<h2><b>Gluteus Medius </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The name Medius again gives us its location &amp; comparative size to its siblings, meaning middle or medium. </span>\n\n<span style=\"font-weight: 400;\">Attaching to the ilium, below the crest, to the lateral aspect (outer bit) of the greater trochanter means all its fibres will abduct the hip. However its anterior (front) fibres flex &amp; medially rotate the hip while the posterior fibres extend &amp; laterally rotate it...ooooo fancy that!</span>\n\nIts unsurprising learning anatomy can be tough eh!\n\nWe are given rules to follow or boxes to fill when we learn anatomy in the beginning but the more we learn, the deeper level we get to understand &amp; appreciate anatomy, the more complex it appears - BUT trust me in application it can always be simplified for working with a client!\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24771\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1377046316-scaled-1.jpg\" alt=\"\" width=\"419\" height=\"559\" />\n\n&nbsp;\n\n<b>Gluteus Minimus</b><span style=\"font-weight: 400;\"> - Yup you guessed it means the smallest! - this little beauty abducts, flexes &amp; internally rotates the hip because it attaches, similarly to glute medius, to the outer edge of the greater trochanter but its underneath medius muscle on the flat outer surface of the ilium. </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24772\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1350320282-scaled-1.jpg\" alt=\"\" width=\"376\" height=\"501\" />\n\n<span style=\"font-weight: 400;\">All this said, let\'s simplify the role of the glutei in movement.</span>\n\n<span style=\"font-weight: 400;\">Collectively they produce ‘primarily’ hip extension, hip abduction &amp; hip stabilisation during fundamental movements. Max being the big hip extensor &amp; Min/Med the main Abductors…..see other contributors coming up.</span>\n\n&nbsp;\n\n<b>So What?</b><span style=\"font-weight: 400;\"> - Well we do spend quite a bit of time squelched on top of Glute Max, maybe if we sit on the side of our hip we are also squelching glute min/med somewhat too. We do this for prolonged periods then we expect them to produce all of these actions as well as stabilise our spine/upper body &amp; head on top while controlling the motion of our limbs below!</span>\n\nThe brain is fantastic at creating physical compensations to adapt to the environment we live in &amp; enable our body to reserve energy. This alters the functionality of the compensatory structures. so the example of sitting isn\'t necessarily bad for us, its the lack of physical variety that our body responds negatively to over time.  The best &amp; simplest advice we can give to our clients is to keep changing position &amp; keep moving, along with safe, effective &amp; evidence backed techniques like the ones in the iMoveFreely programme.\n\n&nbsp;\n<h1><b>Hip Flexors </b></h1>\n<h2><b>Iliopsoas</b></h2>\n<span style=\"font-weight: 400;\">This is the group name for the iliacus &amp; psoas major for obvious reasons in its name. Should you buy one from the butcher he’d call it tenderloin or filet mignon! (<em>Andrew Biel, Trail Guide to the Body, 2010)</em></span>\n\n&nbsp;\n<h2><b>Iliacus</b></h2>\n<span style=\"font-weight: 400;\">Meaning it relates to the ilium (one of the 3 fused portions of the pelvis). When I see this muscle in books it always reminds me of a waterfall pouring from the top of the ilium, over the iliac fossa &amp; down to the femur’s lesser trochanter.</span>\n\n<span style=\"font-weight: 400;\">It flexes the hip or flexes the trunk depending which end is fixed! It also tilts (pulls) the pelvis anteriorly (down at the front). </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24773\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293557031-scaled-1.jpg\" alt=\"\" width=\"466\" height=\"622\" />\n<h2><b>Psoas Major</b></h2>\n<span style=\"font-weight: 400;\">Meaning ‘plural muscles of the loin’ - This \'</span><i><span style=\"font-weight: 400;\">phat\' </span></i><span style=\"font-weight: 400;\">bad boy travels from the transverse processes (outer sticky out bits of the spine) &amp; bodies of each vertebrae of the lumbar spine L1-4 to the femur’s lesser trochanter (the smaller bump). This means it flexes the hip or trunk &amp; tilts the pelvis anteriorly like iliacus. </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24774\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_223319263-scaled-1.jpg\" alt=\"\" width=\"472\" height=\"630\" />\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\"><strong>NOTE</strong>: Books often state “Iliopsoas MAY laterally rotate the hip”....!? Having done a little research &amp; after speaking to my clinician colleagues this is likely based on our understanding of its anatomy BUT it\'s a tough one to set up &amp; prove in a lab - which proves how intricate &amp; phenomenal our intrinsic structures are! I even came across a very old paper that stated….. \"</span></i><i><span style=\"font-weight: 400;\">Reference to sixteen anatomical text-books for the rotating functions of the iliacus and psoas major muscles shows that five favoured these muscles as </span></i><b><i>medial rotators</i></b><i><span style=\"font-weight: 400;\">, six as lateral rotators, and five made no mention of the rotating functions.\" (ROTATING FUNCTIONS OF THE ILIACUS AND PSOAS MAJOR MUSCLES, R. RUSSELL BEST &amp;</span></i> <i><span style=\"font-weight: 400;\">P. M. BANCROFT, 1899) </span></i>\n\n<span style=\"font-weight: 400;\">A good piece of advice would be to always check your source, its year of publication &amp; validity!!!</span>\n<h2><b>Psoas Minor </b></h2>\n<span style=\"font-weight: 400;\">Andrew Biel also shares in his book Trail Guide to the Body, the idea that only 40% of the population has this muscle - IF you do have one it is thought to assist lumbar extension BUT also posteriorly tilt the pelvis - opposite to major! </span>\n\n<span style=\"font-weight: 400;\">HOW?</span>\n\n<span style=\"font-weight: 400;\">This is due to its attachment to ramus of pubis from the body &amp; transverse process of L1. </span>\n\n&nbsp;\n\n<b>So What?</b><span style=\"font-weight: 400;\"> - </span><span style=\"font-weight: 400;\">Prolonged sitting wont help the antagonist competitors (the hip flexors &amp; adductors) which could also result in them ‘inhibiting’ the functionality of each other!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><strong>NOTE: Hip Extensors V’s Hip Flexors?</strong> - which is the inhibited &amp; which is the inhibitor? This is often the conundrum I start with when I am working with a new client. Using the Downing\'s Sign, 4 sign, Modified Thomas &amp; Gillet’s pelvic function tests I can identify dysfunction &amp; prescribe the relevant iMoveFreely technique/s prior to the clients strength training programme. iMoveFreely works as a periodised preparation programme &amp; allows me to identify what is inhibiting what.</span>\n\n&nbsp;\n<h2><b>Tensor Fasciae Latae</b><span style=\"font-weight: 400;\"> (TFL) </span></h2>\n<span style=\"font-weight: 400;\">This is likely to be one of the key muscles we should consider INSTEAD of </span><i><span style=\"font-weight: 400;\">stripping out</span></i><span style=\"font-weight: 400;\"> (in massage) </span><i><span style=\"font-weight: 400;\">or crushing</span></i><span style=\"font-weight: 400;\"> the IT Band (with a foam roller) when experiencing painful runners\' knee for example! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">TFL feeds into the ITB from the iliac crest just behind the ASIS.</span>\n\n<span style=\"font-weight: 400;\">Known as the ‘stretcher’ of the sideband (or ITB). This is a cute contributor when running, swimming, cycling, climbing because it helps with hip flexion, internal rotation &amp; abduction of the hip!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><strong>NOTE</strong>: The ITB is a fascial structure, NOT muscle, but a thick band thats job is to stabilise the hip &amp; knee. So it is </span><i><span style=\"font-weight: 400;\">supposed</span></i><span style=\"font-weight: 400;\"> to hold tension for knee stability ie you do not want a loose ITB! However when we learn its anatomical relationship with TFL &amp; Glute Max can you now think of ways to improve the function of the ITB?</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24775\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_149230190-scaled-1.jpg\" alt=\"\" width=\"520\" height=\"650\" />\n<h2><b>Sartorius </b></h2>\n<span style=\"font-weight: 400;\">Whenever</span> <span style=\"font-weight: 400;\">I say this muscle\'s name I feel I have to sing it like a Greek gods name with emphasis …...</span><i><span style=\"font-weight: 400;\">Sartooooooooorius! </span></i><span style=\"font-weight: 400;\">Makes me think of movies like \'300\' with Gerrad Butler. It also brings to mind a super lean body builder because you would need to be super lean to show off on stage this snake-like beauty as it weaves from the ASIS down to the medial tibia meaning…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><strong>NOTE</strong>: THIS IS THE 4 SIGN POSITIONER MUSCLE!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You will never forget the attachments for this one if you think of it as the 4 Sign positioner. It will flex, laterally rotate &amp; abduct hip. It will also flex, &amp; medially rotate the knee. So if you try these movements combined you will notice it is the movement you do to get into the 4 Sign pelvic muscle energy technique! </span>\n\n<span style=\"font-weight: 400;\">Latin word </span><i><span style=\"font-weight: 400;\">sartor</span></i><span style=\"font-weight: 400;\"> meaning </span><i><span style=\"font-weight: 400;\">tailor</span></i><span style=\"font-weight: 400;\"> due to this old time professionals 4 sign posture when </span><i><span style=\"font-weight: 400;\">tailoring</span></i><span style=\"font-weight: 400;\"> or making clothes.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24776\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_303065684-scaled-1.jpg\" alt=\"\" width=\"422\" height=\"562\" />\n<h1><b>Lateral Rotators</b></h1>\n<h2><b>Piriformis</b></h2>\n<span style=\"font-weight: 400;\">Pear shaped little buggar that can be an irritant to so many of our clients, &amp; ourselves! </span>\n\n<span style=\"font-weight: 400;\"> WHY? </span>\n\n<span style=\"font-weight: 400;\">Maybe because of its depth in the body &amp; also its importance during so many fundamental movements since it crosses that popular discussion topic, the SIJ (sacroiliac joint). It could be described as a key ‘core muscle’ of the pelvis because of its pathway from the front of the sacrum to the greater trochanter (bigger nobbly bit on the femur)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When functioning well piriformis can laterally rotate the femur when the hip is extended (or below 70-90 degrees of flexion) while standing for example</span>\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n<span style=\"font-weight: 400;\">It becomes an antagonist to itself &amp; is an internal rotator when the hip is flexed above 70-90 degrees or you sit or lift your leg up!</span>\n\n<span style=\"font-weight: 400;\">Don\'t panic if you find that tricky to comprehend its role in movement as it is ALWAYS an abductor, being a stronger abductor when the hip is flexed.</span>\n\nIf you want to understand type \'piriformis action\' into YouTube\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24777\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293555465-scaled-1.jpg\" alt=\"\" width=\"462\" height=\"615\" />\n<h2><b>Quadratus Femoris</b></h2>\n<span style=\"font-weight: 400;\">Quadratus means quadrilateral or square &amp; femoris links to the femur. So its very name gives us at least one attachment site at the back of the</span><i><span style=\"font-weight: 400;\"> femur</span></i><span style=\"font-weight: 400;\"> to the itchy bum (or ischium) so it will help to laterally rotate the leg/hip.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24786\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-09.03.16.png\" alt=\"\" width=\"249\" height=\"354\" />\n<h2><b>Obturator Internus</b></h2>\n<span style=\"font-weight: 400;\">Obturator means ‘to close up’, internus - deeper inside the pelvis I guess!?</span>\n\n<span style=\"font-weight: 400;\">This muscle (&amp; its sibling, the obturator externus - see below) </span><span style=\"font-weight: 400;\">act to rotate the thigh laterally when it is extended &amp; to abduct it in the flexed position. This is because it attaches to the inferior (lower) surface of the obturator foramen (opening/hole) to the medial surface of greater trochanter (trokhos Greek word for wheel).</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24784\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.59.52.png\" alt=\"\" width=\"252\" height=\"339\" />\n<h2><b>Obturator Externus</b></h2>\n<span style=\"font-weight: 400;\">See above for actions &amp; this muscle</span><span style=\"font-weight: 400;\"> does this because of its attachments from the Rami (meaning branch - remus is singular, rami plural) of pubis (part of pelvis behind the pubic hair) &amp; itchy bum (ischium) to the trochanter fossa (ditch) - anything being memorised yet???</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24785\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.59.31.png\" alt=\"\" width=\"232\" height=\"339\" />\n<h2><b>The Gemellus Twins </b></h2>\n<span style=\"font-weight: 400;\">Gemellus literally means \'twin\'</span>\n\n<b>Gemellus Superior </b><span style=\"font-weight: 400;\">- Top twin laterally rotates via its attachment to medial (inside) surface of greater trochanter exactly like its twin - see below but G. Superior also attaches to the ischial spine above </span><b>Gemellus Inferiors </b><span style=\"font-weight: 400;\">attachment to the ischial tuberosity (</span><i><span style=\"font-weight: 400;\">tuber</span></i><span style=\"font-weight: 400;\"> is latin for swelling or lump)</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24781\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1757766335-scaled-1.jpg\" alt=\"\" width=\"478\" height=\"478\" />\n\n&nbsp;\n\n<b>So What? </b><span style=\"font-weight: 400;\">- These can be evaluated as part of the Dowings sign &amp; 4 sign pelvis tests again. </span>\n<h2><b>Pelvic Floor</b></h2>\n<span style=\"font-weight: 400;\">Just like a trampoline, the pelvic floor is flexible &amp; can move up &amp; down. It also creates a surface (floor) for the pelvic organs to lie upon: the bladder, uterus &amp; bowels. </span>\n\n<span style=\"font-weight: 400;\">Remembering it is a muscle we often talk about it being lax or ‘weak’ BUT maybe we should also consider its ability to ‘function’ normally like other muscles. Ie Could it simply become dysfunctional or inhibited or develop an altered state that needs lengthening &amp; loading like in a body weight A2G squat for example?</span>\n\n<span style=\"font-weight: 400;\">Feel free to send your thoughts along with justifications... of course!</span>\n\n&nbsp;\n<h1><b>Adductors</b></h1>\n<h2><b>Adductor Magnus - My favourite muscle!!</b></h2>\n<span style=\"font-weight: 400;\">LOVE LOVE LOVE this beauty - why? I am a geek &amp; it brings me joy to see its shape &amp; I appreciate its role in assisting other actions other than its primary role. </span>\n\n<span style=\"font-weight: 400;\">Magnus means large, adduct meaning </span><i><span style=\"font-weight: 400;\">adding</span></i> <span style=\"font-weight: 400;\">“toward” &amp; ducere </span><b>meaning</b><span style=\"font-weight: 400;\"> “to lead or to draw.” A. Magnus is known as the ‘floor of the adductors’ &amp; also the 4th hamstring due to its posterior fibres assistance in hip extension. It can do this because it starts at the pubis/ischium &amp; travels to the medial (inside) lip of the linea aspera (which means rough line &amp; this ‘lip’ or ridge runs down the femur). At its base of adductor magnus there is a hole or </span><i><span style=\"font-weight: 400;\">hiatus</span></i><span style=\"font-weight: 400;\"> (meaning to gape or yawn) </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24780\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_303082580-scaled-1.jpg\" alt=\"\" width=\"418\" height=\"557\" />\n<h2><b>Adductor Longus </b></h2>\n<span style=\"font-weight: 400;\">Guess what the word longus means?…..You guessed it….Long!! Pubis to linea aspera again similar to its short a** bro below….</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24782\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293551259-scaled-1.jpg\" alt=\"\" width=\"368\" height=\"490\" />\n<h2><b>Adductor Brevis </b></h2>\n<span style=\"font-weight: 400;\">Latin for short in size - Keeping it simple from the pubis to linea aspera.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24783\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.58.26.png\" alt=\"\" width=\"242\" height=\"354\" />\n<h2><b>Pectineus</b></h2>\n<span style=\"font-weight: 400;\">This interesting word actually means </span><i><span style=\"font-weight: 400;\">comb</span></i><span style=\"font-weight: 400;\">! </span>\n\n<span style=\"font-weight: 400;\">It is our most anterior adductor, once again from the pubis to the femur </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24778\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_303067988-scaled-1.jpg\" alt=\"\" width=\"378\" height=\"504\" />\n<h2><b>Gracilis </b></h2>\n<span style=\"font-weight: 400;\">Adducts obviously but this word means </span><i><span style=\"font-weight: 400;\">slender</span></i><span style=\"font-weight: 400;\"> from its latin history &amp; is the only adductor that crosses the knee.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24779\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293550401-scaled-1.jpg\" alt=\"\" width=\"408\" height=\"545\" />\n\n&nbsp;\n\n<b>So What?</b><span style=\"font-weight: 400;\"> - We can use tests for coxa valga, vara to identify if a client actually has a geometry that limits abduction. Tight adductors isnt as much of an issue as many think. </span>\n\n&nbsp;\n\n<b><i>Internal or Medial rotation</i></b><i><span style=\"font-weight: 400;\"> of the thigh at the hip joint is produced by glute medius, minimus, TFL &amp; is </span></i><i><span style=\"font-weight: 400;\">aided</span></i><i><span style=\"font-weight: 400;\"> by the contractions of the </span></i><b><i>gracilis, adductor longus, adductor magnus when there is knee flexion</i></b><i><span style=\"font-weight: 400;\">.</span></i>\n\n&nbsp;\n<h1><b>Actions at the pelvis / hip</b></h1>\n<h3>To enable out clients to enjoy a fully functioning pelvis we could assess their ability to perform each of these movements &amp; those that appear to have lost some degree of \'quality\' to their \'performance\' we might want to consider how we can coach special techniques like iMoveFreely to improve the movement. Then ask them to perform it again &amp; see what happens!</h3>\n<span style=\"font-weight: 400;\">Posterior tilt - greek for ‘coming after’ </span>\n\n<span style=\"font-weight: 400;\">Anterior tilt - ‘going before’ in time sequence</span>\n\n<span style=\"font-weight: 400;\">Circumduction - circular or conical</span>\n\n<span style=\"font-weight: 400;\">Abduction - to abduct or \'take away\'</span>\n\n<span style=\"font-weight: 400;\">Adduction - to add to or towards </span>\n\n<span style=\"font-weight: 400;\">Flexion - latin for \'bend\'</span>\n\n<span style=\"font-weight: 400;\">Extension - latin for \'stretch out\'</span>\n\n<span style=\"font-weight: 400;\">Internal / Medial rotation - rotate inwards</span>\n\n<span style=\"font-weight: 400;\">External / Lateral rotation - rotate outwards</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><b>Another option </b></span><span style=\"font-weight: 400;\">Would you like to learn some tests via online workshops &amp; a manual to enhance this information even further &amp; how to assess your clients pelvis &amp; spine online?!?!</span>\n\n&nbsp;\n<h2><a href=\"https://www.biomechanicseducation.com/product/pelvic-spine-biomechanics-online-cpd-training/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">CLICK HERE &gt;&gt; Pelvic &amp; Spine Biomechanics Online CPD Training </a></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pelvic Biomechanics Practical Anatomy Webinar - Part 1 &amp; 2 The bones, muscles &amp; actions</span>\n\n<a href=\"https://www.biomechanicseducation.com/product/pelvic-biomechanics-practical-anatomy-part-1-the-bones-muscles-actions/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Available to purchase £27 HERE</span></a>','Pelvic (Hip) Biomechanics - Part 2 - The Muscles of the Hip','','inherit','closed','closed','','24764-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',24764,'https://biomechanicseducation.com/?p=38651',0,'revision','',0),(38652,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<span style=\"font-weight: 400;\">If you are concerned about losing clients AGAIN I urge you to stay with me &amp; keep reading. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Most of you will have concerns about how you will keep clients during yet another lockdown. Some of you will have already adapted but may be looking for ideas to attract lost or new clients and of course there are some of you that if you are having success PLEASE PLEASE PLEASE SHARE your ideas. We are in this together so when it works tell your peers!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let\'s strategise, stay focused &amp; feel in control during lockdown 2.0</span>\n\n&nbsp;\n<h2><b>1). Reduce fear/anxiety </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Covid-19 Awareness CPD training certificate! </span>\n\n<span style=\"font-weight: 400;\">Have you got yours?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If not then I encourage you to get one - see CIMSPA or THINKTREE for the most relevant one to your industry. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then DISPLAY IT! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We must let our clients know how qualified we are instead of waiting for them to ask to see these things. This reduces concerns that they may not raise with you &amp; if they are choosing between practitioners it might be the thing that makes their mind up!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider this as a way to reduce anxieties by letting clients, present clients &amp; potential clients, know that you take pride in your role &amp; have all of the safety requirements in place. </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter  wp-image-24649\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-03-at-12.38.44.png\" alt=\"\" width=\"693\" height=\"434\" />\n\n&nbsp;\n<h2><b>2). Pick up the phone &amp; call them!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When was the last time you actually sat down and rang all of your clients? </span>\n\n<span style=\"font-weight: 400;\">Even the ones that you haven\'t seen for a while?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having spoken to several of you over the last 7 months it\'s clear we are losing a degree of connection with our clients, more so when training them online or via zoom or facebook.</span>\n\n<span style=\"font-weight: 400;\">We really must remind them WE CARE!</span>\n\n<span style=\"font-weight: 400;\">Picking up the phone (no selling unless they ask) &amp; actually talking to them brings back a degree of connection. Asking them how they are getting on. Telling them they aren\'t alone &amp; showing you care by offering (No 4) accessible content that won\'t cost them anything if they are concerned about finances. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine how YOU would feel if you got a call from someone who made you feel like they actually cared about you?</span>\n\n&nbsp;\n<h2><b>3). LISTEN!!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you call start with an open ended question like “</span><i><span style=\"font-weight: 400;\">Hey…&lt;name&gt;...how have you been?</span></i> <i><span style=\"font-weight: 400;\">Tell me how are you getting on?</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then SSSSSSSHHHHHHHHHHHHH……..Listen…….the more you can get them to open up &amp; talk to you the more you can discover what they really need. This feeds into your ability to plan your business based on the MOST relevant market research you have available to you!</span>\n\n<span style=\"font-weight: 400;\">Make notes, ask lots of questions to find out their emotional pain, struggles &amp; problems - this then enables you to create content.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A skilled listener can extract exactly the right information to their advantage particularly under this current climate!  </span>\n\n&nbsp;\n<h2><b>4) Create free &amp; low cost content</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Based upon these conversions (the more the better) you now have super hot relevant information for creating market specific content. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Make your videos engaging, smile, talk TO THEM not the camera ie look at the lens &amp; speak to the person. </span>\n\n<span style=\"font-weight: 400;\">Do they have equipment? No - Create videos of how to use their furniture or household items. </span>\n\n<span style=\"font-weight: 400;\">Are they in a bubble with other family members? Yes - create content that relates to working in pairs</span>\n\n<span style=\"font-weight: 400;\">Maybe they have lost confidence? Create content about behaviour change, tactics to stay positive etc Teach them about their circle of control. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not? </span>\n\n<span style=\"font-weight: 400;\">Look if you have time due to less clients stay pro active and create. You could charge for it later. </span>\n\n<span style=\"font-weight: 400;\">If you\'re busy consider what is making you busy - if its LOADS of clients GREAT! If it’s procrastination - C’MON!!</span>\n\n&nbsp;\n<h2><b>5). Circle of Control </b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Create a video or even a campaign to teach them about the circle of control vs the circle of care.</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Draw 2 large circles on a piece of paper </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Write over one CONTROL &amp; the other CARE</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Inside the circle titled CARE write in all the things you care about but cannot control </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Inside the circle title CONTROL write all of the things you can control</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Now rip the 2 circles apart</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Take the CARE circle &amp; rip it into tiny pieces - bin it!</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Focus ALL of your attention onto the CIRCLE OF CONTROL!</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Positive focus is vital right now. Social media and a constant dialect around covid can drag us down. So tactics to remain pro-active are vital even for our own state of mind!</span>\n\n&nbsp;\n<h2><b>6). Self care - this one\'s for YOU!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">NOW is the time to look after yourself, learn some more skills, practise technology, read &amp;....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PLEASE PLEASE PLEASE SHARE your ideas...this is when we should endeavour to lift each other up - right !? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not?</span>\n\n&nbsp;\n<h1><b>FREE STUFF!</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our friends at <a href=\"https://platform.archon-app.com/register\" target=\"_blank\" rel=\"noopener noreferrer\">Archon-app</a> have a site that allows you to test your physical performance for free on their platform through 6 categories</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Anaerobic</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Agility</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Strength</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Power</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Bodyweight</span></li>\n</ol>\n<span style=\"font-weight: 400;\">We would LOVE your feedback please;</span>\n<h3><a href=\"https://platform.archon-app.com/register\" target=\"_blank\" rel=\"noopener noreferrer\">CLICK HERE TO ACCESS ARCHON-APP</a></h3>\n&nbsp;\n<h3><b>Did you hear it? </b></h3>\n<span style=\"font-weight: 400;\">I was interviewed by<a href=\"https://youtu.be/K9NEixSs7eo\" target=\"_blank\" rel=\"noopener noreferrer\"> Mark Laws &amp; Josh Mullin for the UK PT’s Podcast - BE WARNED </a></span>\n\n&nbsp;\n<h3><b>MORE FREE STUFF</b></h3>\n<span style=\"font-weight: 400;\">Have you seen these? Please share with both clients &amp; colleagues - let\'s help each other....</span>\n<h3><a href=\"https://youtu.be/7sHZC53mxmI\" target=\"_blank\" rel=\"noopener noreferrer\"><b>5 Steps To A Successful Online Presence Webinar</b></a></h3>\n<h3><a href=\"https://www.biomechanicseducation.com/product/weak-glutes-free-webinar/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Weak Glutes Webinar</b></a></h3>\n<h2></h2>\n<h2><b>NEXT WEEK: </b></h2>\n&nbsp;\n<h2><b>Pelvis (Hip) Biomechanics - Part 2 - The Muscles of the Hip</b></h2>\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Remember we have a growing portfolio of ONLINE educational content that each counts towards gaining certificates &amp; ALL offer you CPD points. </span></h3>\n<h3><span style=\"font-weight: 400;\">Check them out <a href=\"https://www.biomechanicseducation.com/shop/\" target=\"_blank\" rel=\"noopener noreferrer\">HERE</a>: </span></h3>','5 Steps To Keep Your Clients During Lockdown 2.0','','inherit','closed','closed','','24648-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',24648,'https://biomechanicseducation.com/?p=38652',0,'revision','',0),(38653,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<h1><b><i>The most common request I have from learners is to “deepen their anatomy knowledge &amp; understanding of the body”......</i></b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you were like me, after passing your anatomy exam, you may at some point have thought “</span><i><span style=\"font-weight: 400;\">ah I don\'t need to remember it all, I know how to teach a client to squat!</span></i><span style=\"font-weight: 400;\">”. However we often subsequently learn that we are not so confident when things don’t go the way we expect or our clients move in ways we struggle to understand. This is when we start to wish we had the ability to recall anatomy better….right!?</span>\n<h4></h4>\n<span style=\"font-weight: 400;\">As a ‘non academic’ kinesthetic learner, &amp; in the last 16 yrs as an educator, I am very aware that one of the trickiest parts of teaching complex subjects like anatomy is giving learners techniques to </span><i><span style=\"font-weight: 400;\">anchor</span></i><span style=\"font-weight: 400;\"> each area of the body to a memory that can then be recalled when needed.</span>\n<h4></h4>\n<span style=\"font-weight: 400;\">Through a series of anatomy blogs &amp; webinars I will endeavour to offer movement practitioners a systematic approach to remembering parts of the anatomy that also has relevance in application.</span><b> </b>\n<h4></h4>\n<span style=\"font-weight: 400;\">Let me try to offer you insights into ways I was able to recall relevant anatomy using word association, the words history &amp; tactics to learn in the hope that it might offer information that is actually useful when training our clients. </span>\n<h4></h4>\n<h2><b>Interesting Pelvis Facts </b></h2>\n<h4></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). Elvis Presely was known as ‘Elvis the Pelvis’ because of the way he thrusted his hips around that, at that time, was controversially sexy.</span>\n<h4></h4>\n<span style=\"font-weight: 400;\">The pelvis is linked to feeling, or being perceived as, sexy - how might this influence how a client feels about their pelvis &amp; its function?</span>\n<h4></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">2). Important functions of the pelvis are to support the hip joints as well as protect organs used for digestion &amp; reproduction.</span>\n<h4></h4>\n<span style=\"font-weight: 400;\">While movement is at the forefront of our considerations we must also keep in mind ‘functionality’ of each body part &amp; maybe broaden our thinking.</span>\n<h4></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">3). The plural for pelvis is </span><i><span style=\"font-weight: 400;\">pelves - </span></i><span style=\"font-weight: 400;\">Years I spent not knowing there was a specific word when I stated ‘pelvises’ for plural instead of pelves!</span>\n<h4></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">4). Male &amp; female human pelves are different. The female pelvis is wider &amp; more shallow (for child carrying &amp; birth) than the male pelvis. Prior to puberty there is little difference in young children. After puberty, the female pelvis is significantly larger than in males. However, women\'s pelvises narrow as they age.</span>\n<h4></h4>\n<span style=\"font-weight: 400;\">This is important when assessing a client\'s pelvis so we know that bony prominences like the PSIS, ASISI or AIIS will likely be positioned wider or narrower in women &amp; men. However if we have a long term female client or older females maybe we should not assume a wider pelvis automatically. </span>\n<h4></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">5). Childbirth pretty much changes the pelvis forever due to a hormone known as relaxin which helps to soften the joints between the pelvic bones so they can separate during pregnancy &amp; childbirth. </span>\n<h4></h4>\n<span style=\"font-weight: 400;\">If our clients have recently had a baby, might be pregnant or have had babies we should understand about the potential effects of their hormones when assessing their pelvic function or even writing exercise programmes!</span>\n<h4></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">6). The fetal development of the pelvis &amp; acetabulum seems to be highly related to mechanical stimuli, the most important being the gluteal muscular activity &amp; the simultaneous pressure of the femoral head.</span>\n<h4></h4>\n<span style=\"font-weight: 400;\">LOVE stuff like this as it highlights the importance of our pelvic muscles, even as a fetus!</span>\n<h4></h4>\n&nbsp;\n<h2><b>Pelvic Biomechanics - The Bony Anatomy</b></h2>\n<h4></h4>\n<span style=\"font-weight: 400;\">The 2D pelvis in an anatomy book or even the 3D cast of a skeleton on top of a pole in the classroom are only individual examples of shapes &amp; sizes of pelves. When you actually see a variety of samples of real pelves (see how I am making up for the use of my new word - another tactic for never forgetting something!!) in a cadaver lab for example you can begin to appreciate just how different we ALL are on the inside too!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24547\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.18.14.png\" alt=\"\" width=\"511\" height=\"476\" />\n\n<span style=\"font-weight: 400;\">There are structural differences in pelvic flare, width, height, angles, tilts and prominences. So let\'s start with this wonderful centerpiece of our movement &amp; some history of the naming of their parts from our latin/Greek forbearers to see if it helps with our anatomy recall.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The pelvis is often described as being made up of 3 fused bones (ilium, pubis symphesis, ischium) and the 2 fused portions at the base of the spine (sacrum, coccyx). Here are their meanings...</span>\n\n&nbsp;\n\n<b>Ilium</b><span style=\"font-weight: 400;\"> is latin for flank or groin &amp; describes the large flatter bone that curves up over the side of our body (flank). They are what we tend to call our hips. If you put your hands on your hips it\'s likely you will automatically be holding these bones!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Note: in anatomy there can be similar names for different body parts. This is an example incase you come across it - the </span><b>ileum</b><span style=\"font-weight: 400;\"> refers to the distal portion of the small bowel)</span>\n\n&nbsp;\n\n<b>Pubis</b><span style=\"font-weight: 400;\"> - pubes/puberty, hair - well I guess this speaks for itself since I imagine every reader will have gone through puberty but maybe I shouldn\'t assume...</span><i><span style=\"font-weight: 400;\">hey kids….ask your parents</span></i><span style=\"font-weight: 400;\">!</span>\n\n&nbsp;\n\n<b>Symphysis</b><span style=\"font-weight: 400;\"> means fusion &amp; so describes the front portion of the pelvis where the bones on either side meet or fuse as our pelvis forms. This is where pubic hair grows. So again should be understood if a female client discusses a condition known as ‘pubic symphysis dysfunction’ when this area is painful. Consider how to discuss professionally &amp; from a place of understanding albeit though it may be limited &amp; could require clinical intervention.</span>\n\n&nbsp;\n\n<b>Ischium</b><span style=\"font-weight: 400;\"> is latin for hip joint or from the word </span><i><span style=\"font-weight: 400;\">iskhi</span></i><span style=\"font-weight: 400;\"> meaning loin. This one I always used word association to remember as it is in reference to the 2 sitting bones. My name for these ischium was ‘</span><i><span style=\"font-weight: 400;\">itchy bum’ </span></i><span style=\"font-weight: 400;\">because it sounds like their latin name ;)</span>\n\n&nbsp;\n\n<b>Sacrum</b><span style=\"font-weight: 400;\"> is sacred or holy ‘the holy bone’ used in sacrificial rites &amp; in protecting genitalia, which back in ancient times was considered a sacred thing to do. This is the triangular wedge shaped lower portion of the spine that merges to the coccyx at the very bottom.</span>\n\n&nbsp;\n\n<b>Coccyx</b><span style=\"font-weight: 400;\"> is the Greek word </span><span style=\"font-weight: 400;\">kokkyx for </span><span style=\"font-weight: 400;\">cuckoo or bird as they thought it looked like the bill of the cuckoo! This is also known as the tailbone so also possible to link to a memory of a bird.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24645\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.50.51-2.png\" alt=\"\" width=\"411\" height=\"354\" />\n\n&nbsp;\n\n<b>Iliac</b><span style=\"font-weight: 400;\"> (spine) is related to or near the ilium &amp; it is in reference to the portion of those hip bones that is the rim on top as if it were the spine of the pelvis. It can be used to assess how well the pelvis moves during the Gillets pelvic function test along with the PSIS that are described below. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Iliac) </span><b>Fossa</b><span style=\"font-weight: 400;\"> is the Greek word for </span><i><span style=\"font-weight: 400;\">ditch </span></i><span style=\"font-weight: 400;\">describes the dip of the concave surface on the inner surface of the ilium.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Acetabulum</span><span style=\"font-weight: 400;\"> is known as the vinegar cup and describes the ‘cup’ of the hip’s ball &amp; socket joint, where the head of the femur fits.</span>\n\n&nbsp;\n<h2><b>Acronyms for Bony Areas &amp; Prominences </b></h2>\n&nbsp;\n\n<b>SIJ</b> <span style=\"font-weight: 400;\">- Short for the Sacroiliac Joint which is where the sacrum sits inside &amp; meets the ilium. Often discussed because this area is commonly linked to our clients discomfort in this area. They may come to you with a diagnosis of SIJ dysfunction. This ‘joint’ is simply where 2 bones meet so therefore can only be dysfunctional if the softer tissues linked to its movement are problematic. Consider the load balanced on top of this joint &amp; the muscles that cross it (we will explore some of these next time in Pelvic / Hip muscles). Joints can ‘age’ though so you may hear of a problem known as sacroiliitis which is an inflammation of the joint surfaces. Again this can be caused by the breakdown of the ligaments linked to this area. So all of the above link back to our role in improving the intrinsic biomechanics of our clients pelvic function.</span>\n\n&nbsp;\n\n<b>PSIS</b><span style=\"font-weight: 400;\"> - Short for the bony nobbly bit Posterior (at the back) Superior (upper portion) Iliac Spine (top of the ilium). Place your hands on the back of the hips, just below the waist line &amp; you ‘should’ be able to find your own PSIS. However some individuals have very prominent PSIS &amp; others are so subtle they are almost impossible to feel. They also can be found just below a dimple on either side of the lower back IF your clients has the dimples! This landmark could be used to identify if the pelvis has independent movement from one side to the other when the client lifts one leg at a time. </span>\n\n&nbsp;\n\n<b>ASIS</b><span style=\"font-weight: 400;\"> - Short for another bony part of our pelvis known as the Anterior (at the front) Superior (upper portion) Iliac Spine (top of the ilium). This is one young girls can wish was more visible as it gives an appearance of slenderness that catwalk models push forwards during their walk. It is also the attachment site for that wonderful Sartorius muscle!</span>\n\n&nbsp;\n\n<b>AIIS</b><span style=\"font-weight: 400;\"> - Short for, you guessed it, another bony prominence with this one being known as the Anterior (at the front) Inferior (lower portion) Iliac Spine  (top of the ilium). This one is below the ASIS &amp; is an attachment site for the rectus femoris muscle that is another key player that we should understand in our clients function &amp; limitations. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These prominences are often used when doing postural analysis which is a subjective way of assessing or benchmarking how your clients stand or present when upright. </span>\n\n&nbsp;\n<h1><b>Differences in Design</b></h1>\n&nbsp;\n\n<img class=\"aligncenter wp-image-24550\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.20.58.png\" alt=\"\" width=\"454\" height=\"424\" />\n\n<span style=\"font-weight: 400;\">We know we genetically differ &amp; as you can see here we can differ inside our bodies as much as we do on the outside but what does that mean to us as trainers? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Coxa Valgus or Vara &amp; Femoral Version are good examples of terminologies for clients pelvis/hip geometry that differ in a way that may have clinical or movement relevance for their practitioner.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These can be identified using simple manual tests that we offer on our <a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">Running Biomechanics Workshops</a> for example. They can change the way we prescribe exercises or what we expect of our clients when they move. Hopefully these descriptions help to appreciate this….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We need to add the anatomy of the femur bone or thigh bone as this relates to the HIP.</span>\n\n&nbsp;\n\n<b>The Femur</b> <span style=\"font-weight: 400;\">is the largest bone in the body &amp; we will only discuss here the top (proximal) portion that relates to the pelvis. The other end (distal) will be discussed in the Knee Series.</span>\n\n&nbsp;\n\n<b>Trochanter</b><span style=\"font-weight: 400;\"> comes from the Greek word </span><i><span style=\"font-weight: 400;\">trokhos</span></i><span style=\"font-weight: 400;\"> for wheel. It describes the large round feeling bony prominence at the side of the pelvis. It is a key landing site for the lateral glutes &amp; piriformis - to be discussed next time. </span>\n\n&nbsp;\n\n<b>Neck of femur</b><span style=\"font-weight: 400;\"> is the part of the femur that looks like a neck sticking out from the medial side of the main femur thigh bone where the greater trochanter is lateral &amp; then ends in the ‘ball’ of the hip’s ball &amp; socket joint.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24646\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.57.12.png\" alt=\"\" width=\"342\" height=\"301\" />\n\n&nbsp;\n\n&nbsp;\n\n<b>Coxa</b><span style=\"font-weight: 400;\"> is a Latin word meaning hip or limb joint (koks-h)  </span>\n\n&nbsp;\n\n<b>Coxa Vara</b><span style=\"font-weight: 400;\"> - this is when the angle at hip (specifically the neck of the femur in relation to the shaft of the femur) is </span><i><span style=\"font-weight: 400;\">decreased </span></i><span style=\"font-weight: 400;\">meaning abduction may be more limited. </span>\n\n&nbsp;\n\n<b>Coxa Valga</b><span style=\"font-weight: 400;\"> (less common)</span><span style=\"font-weight: 400;\"> - the angle at the hip (specifically the neck of the femur in relation to the shaft of the femur) is </span><i><span style=\"font-weight: 400;\">increased</span></i><span style=\"font-weight: 400;\"> therefore adduction may be more limited.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine you have a client who has been diagnosed as Coxa Valga….how might this alter your expectations when you write them a programme or train them in your facility?</span>\n\n<img class=\"aligncenter wp-image-24548\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.48.png\" alt=\"\" width=\"315\" height=\"217\" />\n\n<b>Femoral</b><span style=\"font-weight: 400;\"> is </span><span style=\"font-weight: 400;\">related to the thigh or </span><b>femur. </b>\n\n&nbsp;\n\n<b>Version</b><span style=\"font-weight: 400;\"> or </span><span style=\"font-weight: 400;\">Vers is Latin for turned or to turn.</span>\n\n&nbsp;\n\n<b>Femoral Version</b><span style=\"font-weight: 400;\"> describes the rotation (of turn) of the femur in relation to the pelvis. </span>\n\n&nbsp;\n\n<b>Femoral Anteversion</b><span style=\"font-weight: 400;\"> - this describes a femur that is rotated medially (inwards)</span>\n\n&nbsp;\n\n<b>Femoral Retroversion</b><span style=\"font-weight: 400;\"> - this describes a femur that is rotated laterally (outwards)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine you have a client who has been diagnosed as femoral anteversion….how might this alter your expectations when you write them a squat programme or train them in your facility?</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-24549\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.18.png\" alt=\"\" width=\"866\" height=\"408\" />\n\n&nbsp;\n<h1>So What?</h1>\nYou tell me, from the above information, do you think we can use this information to improve our understanding of why each client moves in different ways?\n\nThese differences can be ok to a certain degree but in some ways it may contribute to our programme design...can you now describe why? how?\n\nWould you like to learn ways to assess your client\'s pelvic function?\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/pelvic-spine-biomechanics-online-cpd-training/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">Pelvic &amp; Spine Biomechanics Online CPD Training </a></h1>\nYou get 2 x online classrooms plus a pdf FULL of information AND this counts as credit towards your Diploma in Biomechanics Coaching<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Find out methods to remember muscle anatomy of the pelvis along with actions!</span>\n<h2><b>References;</b></h2>\n&nbsp;\n\nBenson, Emily. <i>A Woman\'s Pelvis Narrows as She Ages</i>. 25 Apr. 2016, https://www.science.org/content/article/woman-s-pelvis-narrows-she-ages.\n\n&nbsp;\n\n“Cooperstein R, Hickey M. The Reliability of Palpating the Posterior Superior Iliac Spine: a Systematic Review. J Can Chiropr Assoc. 2016 Mar;60(1):36-46. PMID: 27069265; PMCID: PMC4807681.”\n\n&nbsp;\n\n“Coxa Vara / Coxa Valga.” <i>Physiopedia</i>, https://www.physio-pedia.com/Coxa_Vara_/_Coxa_Valga.\n\n&nbsp;\n\n“Delaere O, Dhem A. Prenatal Development of the Human Pelvis and Acetabulum. Acta Orthop Belg. 1999 Sep;65(3):255-60. PMID: 10546347.”\n\n&nbsp;\n\n“The Femur.” <i>TeachMeAnatomy</i>, https://teachmeanatomy.info/lower-limb/bones/femur/.\n\n&nbsp;\n\nRosenfeld, Jordan. “7 Essential Facts about the Pelvis.” <i>Mental Floss</i>, Mental Floss, 21 Sept. 2017, https://www.mentalfloss.com/article/502708/7-essential-facts-about-pelvis.','Pelvic (Hip) Biomechanics - Part 1 - The Bones of the Hip','','inherit','closed','closed','','24544-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',24544,'https://biomechanicseducation.com/?p=38653',0,'revision','',0),(38654,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<h1><b>Remember the weak glutes debate?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well once again let’s consider if this is really the right question? </span>\n\n&nbsp;\n<h2><b>Weak - definition </b></h2>\n<i><span style=\"font-weight: 400;\">Lacking the power to perform physically demanding tasks.</span></i>\n\n<i><span style=\"font-weight: 400;\">Having little physical strength or energy </span></i>\n\n<i><span style=\"font-weight: 400;\">Liable to break or give way under pressure; easily damaged</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me offer some of my thoughts &amp; I\'d love to hear yours.....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Using the term ‘weak core’ is often interpreted as meaning it simply requires strengthening.</span>\n\n<span style=\"font-weight: 400;\">However let’s challenge this for a moment shall we…?</span>\n\n&nbsp;\n<h2><b>What could be the right question?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">How would one come to the conclusion that a client has a weak core?</span>\n\n<span style=\"font-weight: 400;\">What test identifies it?</span>\n\n<span style=\"font-weight: 400;\">If a client can walk into the gym, move around &amp; perform daily tasks does that indicate a weak core?</span>\n\n<span style=\"font-weight: 400;\">If it’s being determined by pain then I would also challenge this to be ambiguous as a ‘diagnosis’ for a ‘weak’ core.</span>\n\n<span style=\"font-weight: 400;\">Pain may indicate a ‘weakness’ or rather a dysfunction or problem </span>\n\n<span style=\"font-weight: 400;\">BUT </span>\n\n<span style=\"font-weight: 400;\">Should we be strengthening a dysfunction?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rather than focusing on ‘what’....lets shift the focus onto the ‘WHY?’</span>\n\n&nbsp;\n<h2><b>Why not what?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why do we think it\'s weak?</span>\n\n<span style=\"font-weight: 400;\">How strong is that reasoning?</span>\n\n<span style=\"font-weight: 400;\">Can your reasoning be evidenced?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To be clear I’m not suggesting strength work isn’t required at all however what might be prudent is to identify potential causes for the apparent weakness first. Consider all intervention options and then possibly the timing of when we apply strength training. </span>\n\n&nbsp;\n<h2><b>If not weak then what?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Examples of intrinsic dysfunctions that could give the appearance of a weak core;</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">QL Hinge/s or quadratus lumborum ‘sub clinical’ (not clinical) spasm - can be addressed with the wall glide technique</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Glute dysfunction - ‘sub clinical’ (not clinical) spasm - can be addressed with an MET (Muscle energy technique)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Hip flexor dysfunction - ‘sub clinical’ (not clinical) spasm - can be addressed with an MET (Muscle energy technique)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Stiff lumbar spine - Can be addressed with lumbar tilts and/or kee rolls</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Stiff thoracic spine - Can be addressed with Thoracic rotation drills  </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The core strength ratios are poor (due to any of the above and/or lifestyle) - measure the ratios &amp; prescribe appropriate loading to the area where the ratio is off. </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also considering this last point on the list above its vital we understand that all ‘core stability’ strength work will emphasise one area of the trunk over the others. For example supine leg extension will strengthen the flexors or anterior trunk predominantly. So do planks and mountain climbers. So we must consider how many core stability exercises we teach and how many strengthen which part of the trunk. Are we hitting a balance? Or are we overloading the flexors or maybe the extensors get overloaded more? How would we know?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Improving the intrinsic function of each substructure first with an understanding how the myofascial, skeletal &amp; neural systems are integrated &amp; influence each other is a vital component in understanding how the body works. </span>\n\n<span style=\"font-weight: 400;\">There is a small gap in our education that really highlights &amp; proves this which is the ability to test, monitor &amp; re test our clients intrinsic function</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With this ability we as exercise professionals can better serve our client when designing a movement programme </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Without it.....well we are simply guessing </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Forcing techniques or repeating patterns does NOT address the root cause unless by chance or maybe temporarily </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I urge you to challenge everything! </span>\n\n<span style=\"font-weight: 400;\">Do not accept a term like weak core or weak glutes as simply needing strength work </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First understand the underlying causes/reasons behind this ‘diagnosis’ </span>\n\n&nbsp;\n<h1>Would you like to learn how to assess your PT client both online &amp; in person?</h1>\n<h2><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">CLICK HERE TO BOOK YOUR PLACE ON OUR 2021 PELVIC &amp; SPINE BIOMECHANICS WORKSHOP </a></h2>\n&nbsp;\n<h2><a href=\"https://youtu.be/5GxKxl4X-sw\" target=\"_blank\" rel=\"noopener noreferrer\">&gt;&gt; FREE WEAK GLUTES WEBINAR CLICK HERE &lt;&lt;</a></h2>','Does Your Client Really Have A Weak Core?','','inherit','closed','closed','','24449-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',24449,'https://biomechanicseducation.com/?p=38654',0,'revision','',0),(38655,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<span style=\"font-weight: 400;\">If anything confirms that we cannot know it all about the human body it’s the cadaver labs….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">And every now again something blows my mind. We are always taught certain things to be true…. E.g, having 4 ‘quad’riceps...hence the naming of them!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Until you see examples where there are 5 or even 6….. YES 6!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now the human body is a fantastic thing &amp;, if you are anything like me, you are in awe of its complexities but we can have this desire to explore it further &amp; make sense of it to help us understand movement better. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When we study the body in this way I feel we also should bring ourselves back to the simplicity of kinesiology in application </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having discovered &amp; read around these 5th &amp; 6th quads I wanted to try to share my interpretation with you....in a nutshell.... what do these extra ‘quads’, actually ‘sextuceps’.....sexdriceps?....maybe?if we renamed them... contribute to movement, if anything?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well after reading a little.. the hypothesis, as I understand it, goes……</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First let’s define the language….</span>\n\n&nbsp;\n<h2><b>Definitions for each word used;</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Tensor - Stretch </span>\n\n<span style=\"font-weight: 400;\">Fascia - Band</span>\n\n<span style=\"font-weight: 400;\">Lata- Side </span>\n\n<span style=\"font-weight: 400;\">Vastus - Great </span>\n\n<span style=\"font-weight: 400;\">Intermedius - Between 2 Structures</span>\n\n<span style=\"font-weight: 400;\">Articularis - Rigid / Stiff</span>\n\n<span style=\"font-weight: 400;\">Genus - Knee </span>\n\n&nbsp;\n<h2><b>The Additional Quads.</b></h2>\n&nbsp;\n\n<em><strong>Tensa Vastus Intermedius</strong></em><span style=\"font-weight: 400;\"> - tenses on the aponeurosis (fascia kinda stuff) of Vastus intermedius &amp; medialises (turns inwards) the action of the muscle.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This muscle is also thought to act as a second <em>tensa</em> in addition to TFL......which I interpret as meaning it assists TFL. Maybe somehow it is ‘tensing’ in a similar area rather than actually contracting agonistically...what do you think? Go on….check it out….</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24267\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/TENSA-VASTUS-INTERMEDIUS.png\" alt=\"\" width=\"409\" height=\"393\" />\n\n<strong><em>Articularis Genus</em></strong><span style=\"font-weight: 400;\"> - Isn’t thought to act as an individual muscle but, along with its Vastus siblings, it\'s considered to be a retractor of the suprapatella bursa. Which means it pulls the bursa up during knee extension to prevent impingement of the membrane between patella &amp; femur . </span>\n\n<span style=\"font-weight: 400;\">However there are studies of its design or architecture, that suggest it to not be capable!? &#x1f648;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Thought of generally as this coordinator of the suprapatella bursa during flexion/extension &amp; also for proprioceptive function </span>\n\n<span style=\"font-weight: 400;\">But it’s true function is not definitive in the evidence.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-24266\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/ARTICULARIS-GENUS.png\" alt=\"\" width=\"417\" height=\"413\" />\n\n<span style=\"font-weight: 400;\">Ok I can hear you thinking the infamous ‘So What?’ Question</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What difference do you think it might make if an individual has a 5th and/or 6th quad?</span>\n\n<span style=\"font-weight: 400;\">Could it be an advantage or even a disadvantage? </span>\n\n<span style=\"font-weight: 400;\">Would it affect movement at all? </span>\n\n<span style=\"font-weight: 400;\">If so how?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My point here is that I certainly do not have all of the answers to these questions &amp; you are not necessarily expected to find them either </span>\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n<span style=\"font-weight: 400;\">I would LOVE to hear your thoughts on it!? </span>\n\n<span style=\"font-weight: 400;\">So why not come &amp; join me in my classroom for an inclusive anatomy dialectic conversation? </span>\n\n&nbsp;\n<h2>References;</h2>\n<i>Articularis genus muscle - e-anatomy</i> (no date) <i>IMAIOS</i>. Available at: https://www.imaios.com/en/e-anatomy/anatomical-structure/articularis-genus-muscle-1541090824 (Accessed: 10 June 2024).\n<div></div>\nGrob, K. <i>et al.</i> (2016) ‘A newly discovered muscle: The tensor of the vastus intermedius’, <i>Clinical Anatomy</i>, 29(2), pp. 256–263. doi:10.1002/ca.22680.\n<div></div>\nMarques, N. (2020) <i>Tensor vastus intermedius: A new muscle discovered</i>, <i>MOJ Anatomy &amp; Physiology</i>. Available at: https://medcraveonline.com/MOJAP/tensor-vastus-intermedius-a-new-muscle-discovered.html (Accessed: 10 June 2024).\n<div></div>\nSaito, A. <i>et al.</i> (2015) ‘Functional status of the articularis genus muscle in individuals with knee osteoarthritis’, <i>Physiotherapy</i>, 101. doi:10.1016/j.physio.2015.03.1238.\n<div></div>\nVeeramani, R. and Gnanasekaran, D. (2017) ‘Morphometric study of tensor of vastus intermedius in South Indian population’, <i>Anatomy &amp;amp; Cell Biology</i>, 50(1), p. 7. doi:10.5115/acb.2017.50.1.7.\n\n&nbsp;\n<h2>Would you like to learn about anatomy and movement to an even deeper level?</h2>\nEver thought about joining our Diploma in Biomechanics Coaching?\n\nWhy not arrange a call to discuss your options from only £100pm?\n\nrachel@biomechanicseducation.com','Did You Know….some people have 6 Quadricep Muscles?','','inherit','closed','closed','','24262-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',24262,'https://biomechanicseducation.com/?p=38655',0,'revision','',0),(38656,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<h2><a href=\"https://www.biomechanicseducation.com/product/shoulder-knee-foot-biomechanics-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Is shoulder pain the new back pain?</b></a></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So many clients are coming to us for help with their shoulder ‘issues’ and we can feel ill equipped to evaluate their problem and offer movement advice when some movements may hurt.</span>\n\n<span style=\"font-weight: 400;\">Yet shoulder pain is presenting as often as back pain these days…..right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The shoulder joint is capable of A LOT! However, there are also things it should NOT be expected to do.</span>\n\n<span style=\"font-weight: 400;\">Here we will explore considerations that might influence your clients programme based upon a deeper understanding of their shoulder biomechanics. </span>\n\n&nbsp;\n<h2><b>The Problem</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The shoulder joint is a relatively shallow ball &amp; socket. There are both benefits &amp; problems that come with its unique structure.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Fundamentally it’s moveable in a large range, &amp; combination of, movements, however this leaves it at risk of a low level of stability </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Tasks are generally performed from the shoulder that should be stabilised not only from its own tissues &amp; design but also from the whole spine, pelvis, knees &amp; feet they sit above </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So the fluidity &amp; control the shoulders require are, should we say, multidisciplinary!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sadly for many they can be ‘stuck’ in a sedentary rounded position for many hours. Then the extremities that are driven, so to speak, by the brachial plexus in the neck/shoulder area could experience nerve tethering or tension from adapted muscle tone that means the integrated system grumbles &amp; complains.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This could simply present as a stiff neck or as severe as an agonising, &amp; sadly not uncommon, case of carpal tunnel syndrome </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We might choose to play a sport that just requires 1 shoulder to swing at speed with a club, bat or racket fixed &amp; weighted at the end, pressing into already annoyed nerves crossing the palm &amp; resulting in ‘overuse’ problems!</span>\n\n&nbsp;\n<h2><b>So What?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should probably seek to find a balance of both movement &amp; control</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our bodies LOVE consistent controlled subconscious &amp; conscious movement as this lubricates joints, exercises muscles &amp; mobilises nerves </span>\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n<span style=\"font-weight: 400;\">Not too extreme, too often nor for too long</span>\n<h2></h2>\n<h2><b>The Anatomy </b></h2>\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter  wp-image-24188\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_147943874-scaled-1.jpg\" alt=\"\" width=\"478\" height=\"382\" />\n<h2></h2>\n<span style=\"font-weight: 400;\">Shoulders are not really limited to specific planes due to their shallow ball and socket design. They can circumduct which means they can move pretty much in every plane / direction that you can imagine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Individually we are born with certain genetic predispositions. This means some individuals have more ‘laxity’ to their joints, some sit at certain geometric angles naturally to their body &amp; our lever lengths can also differ, for example.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all have a series of bones, muscles &amp; nerves that are relatively consistent.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In simple terms….</span>\n\n<span style=\"font-weight: 400;\">Humerus</span>\n\n<span style=\"font-weight: 400;\">Glenohumeral joint</span>\n\n<span style=\"font-weight: 400;\">Scapular</span>\n\n<span style=\"font-weight: 400;\">Clavicle</span>\n\n<span style=\"font-weight: 400;\">Subscapularis</span>\n\n<span style=\"font-weight: 400;\">Infraspinatus </span>\n\n<span style=\"font-weight: 400;\">Pectorals </span>\n\n<span style=\"font-weight: 400;\">Trapezius</span>\n\n<span style=\"font-weight: 400;\">Teres Major/Minor</span>\n\n<span style=\"font-weight: 400;\">Serratus </span>\n\n<span style=\"font-weight: 400;\">Median nerve</span>\n\n<span style=\"font-weight: 400;\">Radial nerve</span>\n\n<span style=\"font-weight: 400;\">Ulnar nerve </span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter  wp-image-24190\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/Screenshot-2020-09-29-at-13.19.57.png\" alt=\"\" width=\"627\" height=\"429\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are also other things like bursa, blood vessels etc but let’s keep it simple for the purpose of this blog being translated into something usable for your PT sessions..</span>\n\n&nbsp;\n<h2><b>Example of a Common Error</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The lateral raise is a favourite for those wanting to work/build the deltoid\'s appearance. It is a great movement for strengthening our ability to lift things.</span>\n\n<span style=\"font-weight: 400;\"> Yet the shoulder abduction action can be misunderstood in terms of our shoulder design. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The shoulder joint generally isn’t structurally designed to pass smoothly beyond 90degrees of frontal plane abduction while the humerus is internally rotated for example (or palm/thumb pointing down to floor) and particularly while under load - also as in an high upright row with elbows lifted.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is how impingements can occur overtime or an overactive pec minor altering scapular positioning means the humeral head is in the wrong position as we raise our arms laterally.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is therefore probably prudent to externally rotate prior to around 80/90 degrees of shoulder abduction. </span>\n\n<span style=\"font-weight: 400;\">Understanding that the body will endeavour to do what you ask it to, it will adapt to the movements &amp; environment you put it into but that doesn\'t mean that movement, particularly when repeated over and over again, is ok long term.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So FULL ROM does not guarantee safe ROM depending upon the individual &amp; their biomechanical set up.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What can be done to improve our clients shoulder biomechanics BEFORE an injury occurs? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First &amp; foremost let’s evaluate our clients shoulder function by testing key movements, muscles &amp; nerves.</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter  wp-image-24187\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_109415894-scaled-1.jpg\" alt=\"\" width=\"516\" height=\"516\" />\n\n&nbsp;\n<h2><b>Common Shoulder Issues</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Problem 1;</span>\n\n<span style=\"font-weight: 400;\">Pec minor is a key muscle due to its common shortened adaption creating that round shouldered, or protracted, position we often see in clients. So having the skills to test it will give us an indication of what to do.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Solution;</span>\n\n<span style=\"font-weight: 400;\">Apply the 20/20 MET, strengthen its antagonists &amp; then condition its own functional capacity through isolation then integration strength movements.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Problem 2; </span>\n\n<span style=\"font-weight: 400;\">Upper Trapezius dysfunction causing elevated scapular position. This can also be a compensation that is deliberately trying to reduce Median nerve tension at the brachial plexus. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Solution;</span>\n\n<span style=\"font-weight: 400;\">Test both structures (Upper traps &amp; Median nerve) &amp; if the tests are positive we are likely to want to improve their functional capacity to get a negative test result. </span>\n\n<span style=\"font-weight: 400;\">Reduce trap tension using the 20/20 MET then prescribe very slow gentle median nerve mobilisations to ‘calm the nervous system down’ or desensitise it.</span>\n\n<span style=\"font-weight: 400;\">We can also prescribe scapular depression strength work followed by shrugs.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Problem 3;</span>\n\n<span style=\"font-weight: 400;\">Overactive Subscapularis or Infraspinatus can directly affect healthy shoulder biomechanics. As shoulder rotators these muscles often require some love &amp; attention. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Solution;</span>\n\n<span style=\"font-weight: 400;\">Test both muscles &amp; if positive…</span>\n\n<span style=\"font-weight: 400;\">Apply the 20/20 MET &amp; then using a resistance band or light cable work both internal &amp; external rotation of the humerus.</span>\n\n&nbsp;\n<h2><b>The Tests &amp; Exercises </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you have a client who has shoulder problems?</span>\n\n<span style=\"font-weight: 400;\">Maybe you’re really keen to gain a deeper level of understanding shoulder biomechanics so you can help them?</span>\n\n<span style=\"font-weight: 400;\">Are you frustrated because you cannot work out what to do to help them?</span>\n\n<span style=\"font-weight: 400;\">Or you\'re worried you could make them worse?</span>\n\n<span style=\"font-weight: 400;\">Would you like to learn each of these tests mentioned above?</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/shoulder-knee-foot-biomechanics-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">Look at our workshops CLICK HERE </span></a></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n<h1><span style=\"font-weight: 400;\">Contact us directly on </span><a href=\"mailto:info@biomechanicseducation.com\"><span style=\"font-weight: 400;\">info@biomechanicseducation.com</span></a></h1>\n<h1><span style=\"font-weight: 400;\">07976 933113</span></h1>\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Further reading;</span></h3>\n<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/8421011\"><span style=\"font-weight: 400;\">https://www.ncbi.nlm.nih.gov/pubmed/8421011</span></a>\n\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/7931787/\"><span style=\"font-weight: 400;\">https://pubmed.ncbi.nlm.nih.gov/7931787/</span></a>\n\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/7661251/\"><span style=\"font-weight: 400;\">https://pubmed.ncbi.nlm.nih.gov/7661251/</span></a>\n\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/20133443/\"><span style=\"font-weight: 400;\">https://pubmed.ncbi.nlm.nih.gov/20133443/</span></a>\n\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/16826111/\"><span style=\"font-weight: 400;\">https://pubmed.ncbi.nlm.nih.gov/16826111/</span></a>\n\n<a href=\"https://pubmed.ncbi.nlm.nih.gov/9697636/\"><span style=\"font-weight: 400;\">https://pubmed.ncbi.nlm.nih.gov/9697636/</span></a>\n\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4668174/\"><span style=\"font-weight: 400;\">https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4668174/</span></a>\n\n&nbsp;','Is shoulder pain the new back pain?','','inherit','closed','closed','','24186-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',24186,'https://biomechanicseducation.com/?p=38656',0,'revision','',0),(38657,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<h2><b>What is Biomechanics?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Biomechanics is mostly considered a complex subject. Those who study biomechanics at university usually find it the most challenging of subjects to learn. In this blog I’d like to remove some of that challenge or at least reduce it &amp; explain to you how you can become a specialist in this subject without going to university...like me!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s the study of human movement, the body’s ‘mechanics’ if you like. Some will argue that it is an outdated way of looking at the body since it’s far more complex than simply the mechanical aspect of levers &amp; pulleys.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I would agree that it can be extremely complex AND I’d also agree that we must consider so much more than simply the ‘mechanical’ view of our clients body and movement.</span>\n\n<span style=\"font-weight: 400;\">However this method allows us to begin to appreciate the body to a deeper level from at first a simple application of basic rules of movement. This I have found, and still do find, is a brilliant system to utilise even when it comes to appreciating all the nuances of our clients bodies.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So when we study biomechanics we must always keep an open mind to the complexities of variants that will very likely influence our clients movement quality. Anatomy and movement educators will encourage discussion throughout our education programmes with a layered approach to deepening our understanding. There are  few layers to get through and much of that is in the application process which is why practice is key. The more bodies you watch, analyse and monitor, the more you learn and by the way that learning never ends. Every clients is a new subject, a new set of variants and a new way of watching movement and all that contributes to it.</span>\n\n&nbsp;\n<h2><b>Different Types of Biomechanics </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is one way we could differentiate how we look at &amp; understanding anatomy &amp; movement in our clients; </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Extrinsic Biomechanics</span></i><span style=\"font-weight: 400;\"> is the study of looking at a movement, seeing the angles in the joints, the movement performance &amp; also maybe measuring them- force, angles, speed etc </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Intrinsic Biomechanics</span></i><span style=\"font-weight: 400;\"> is considering what is going on inside the body that influences what we see extrinsically. Ie the use of the logic of anatomy, ideal muscle lengths &amp; actions, nerve ranges, pure joint ranges &amp; how each individual substructure &amp; area of the body contributed is required performance </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sounds complicated? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok ok ok let me give you the </span><span style=\"font-weight: 400;\">spectrum</span><span style=\"font-weight: 400;\"> of biomechanics …..</span>\n\n&nbsp;\n<h3><i><span style=\"font-weight: 400;\">Complex Biomechanics </span></i><span style=\"font-weight: 400;\">- this could be interpreted as the study of forces, vectors and 1st/2nd/3rd class levers and often requires video analysis most probably at uni or in a lab.</span></h3>\n&nbsp;\n<h3><i><span style=\"font-weight: 400;\">Simple Biomechanics </span></i><span style=\"font-weight: 400;\">- this might be interpreted simply as the hip should flex &amp; extend, the thoracic spine should rotate etc</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s start at the simple end so I can explain how movement practitioners like you and I are already specialists in biomechanics </span>\n\n&nbsp;\n<h2><b>Bad Technique or Problem Biomechanics? </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Your new client is on time &amp; the consultation went as expected …. wants to get fit, lose some weight &amp; has a bit of low back pain. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You warm them up &amp; you notice one shoulder seems higher than the other, one foot flicks out a bit &amp; they look rather round shouldered.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So you decide you want to see the quality of their movement without weights first to be safe &amp; so ask them to show you some body weight squats </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The look on their face offers you some early indication that even this might be challenging for them so you take them over to a rig to hold onto or maybe position them to just do a bodyweight squat to a box/bench </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Their reticence is confirmed when their knees cave in, upper body folds forwards, neck retracts and extends, feet seem to be pointing almost to 9 &amp; 3 o.clock!....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You swap places to demonstrate but when they try again it’s not much better, in fact possibly worse </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You verbally cue “</span><i><span style=\"font-weight: 400;\">knees out, back up straight, eyes forwards</span></i><span style=\"font-weight: 400;\">”</span>\n\n<span style=\"font-weight: 400;\">Nope...still no good…</span>\n\n&nbsp;\n<h1><strong><i>PAUSE &gt;&gt;&gt;&gt;&gt;</i></strong></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Right let’s stop here for a moment &amp; try to understand this very common scenario we all seem to experience at some point in our careers, and sometimes very often...weekly...or even daily!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). You did a biomechanical assessment by watching the squat. This is subjective but extremely relevant for understand their ranges, coordination &amp; control in a fundamental movement required for ADL</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">2). You evaluated the risk &amp; feel you want to reduce it</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">3). What you evaluated was their </span><i><span style=\"font-weight: 400;\">extrinsic biomechanics </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">4). At a Uni you might include mathematical equations of force production &amp; optimal joint angle requirements to reduce risk &amp; optimise performance etc - but this client really doesn’t need all that - they just want to move well enough to lose weight </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">5). So let\'s now consider their </span><i><span style=\"font-weight: 400;\">intrinsic biomechanics</span></i><span style=\"font-weight: 400;\"> …...myofascial, neural and skeletal systems…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Is it their pelvis, spine, shoulders?</span>\n\n<span style=\"font-weight: 400;\">Is it their muscles, nerves or the joints?</span>\n\n<span style=\"font-weight: 400;\">Are they just really bad at the technique or maybe they’re just not ready to squat?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT at this point you might be starting to think…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Well where do I start?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Where is the problem coming from?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“How would I know?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“How do I help her when no amount of coaching improves technique &amp; I\'m worried I might hurt her in the process of programming exercises?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“What system can I follow to address her limitations without worrying about if I’m doing the right thing?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Am I really qualified enough?” </span></i>\n\n<i><span style=\"font-weight: 400;\">“Do I need to refer her to a clinician first?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“I feel like I am guessing here!”</span></i>\n\n<i><span style=\"font-weight: 400;\">“I really feel like I don’t know what I’m doing!!”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you have ever thought any of these things then well done….it demonstrates you care! Also the next step, which is really important, is finding solutions to each of your questions, starting with “</span><i><span style=\"font-weight: 400;\">how can I help this client right now?”.....</span></i><span style=\"font-weight: 400;\">keep it simple!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then look for education that will give you new tools and skills to fill these gaps and answer these questions just like Sam did ….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here Sam shares his experience of gaining a deeper level of understanding his clients bodies…..</span>\n\n&nbsp;\n<h1><a href=\"https://youtu.be/UFkDTq2bZAw\" target=\"_blank\" rel=\"noopener noreferrer\"><strong><em>CLICK HERE TO WATCH SAM\'S VIDEO....</em></strong></a></h1>\nEmail rachel@biomechanicseducaton.com to enquire about the final places remaining this year on our workshops!','Will understanding biomechanics take me to the next level?','','inherit','closed','closed','','24097-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',24097,'https://biomechanicseducation.com/?p=38657',0,'revision','',0),(38658,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<h1><b>When Coaching Technique Just Doesn\'t Work…. </b></h1>\n&nbsp;\n<h2><b>There’s those occasions when you have a new client &amp; you get them into position ready to squat but then they begin to move….their face contorts, knees buckle in, back bends awkwardly, elbows flare about &amp; your arms shoot forwards ready to catch them incase they topple over!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Back up straight, lift your chest, push your knees out</span></i><span style=\"font-weight: 400;\">…” you encourage but inside your head you’re actually face palming as you silently wonder how on earth they can’t understand such simple cues!?!?!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However no amount of teaching or coaching cues seem to help them improve, so you decide to lose the bar &amp; head back over to the machines….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In your mind you’re questioning…. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“What should I do with them to improve their movement?”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“I wonder if it’s their calves? Or back? I wish I could remember my muscle attachments to work it out”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“How can I work out where the problem is coming from?”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Why can’t I work it out?”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Other PTs seem to always know more than me, why is that?”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“How can I get a deeper level of understanding my clients body?”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You may even doubt your ability to coach!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can be a real challenge for PT\'s trying to work out which area of the body the limitation/compensation is coming from since every joint is involved in some way.</span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">Actually more commonly which ‘combination’ of limitations!!?</span>\n\n&nbsp;\n<h2><b>Finding A System That Works</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we learn or create a system that enables us to use a step by step approach to addressing our clients movement issues, then we can monitor progress, just as we would with their nutrition plan or strength training programme. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Being able to evaluate the movement quality of each joint &amp; structure one at a time to systematically either address them or rule them out of the list of potential compensation areas, we can have confidence in knowing what steps to take towards movement improvements</span>\n\n&nbsp;\n<h2><b>A System Suggestion Based On Evidence</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is evidence to suggest 60% of dysfunction comes from the pelvis so this could be a logical place to start</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The spine sits in the pelvis so would be a sensible place to address next</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Shoulders have a biomechanical link to the opposite side of the pelvis so might be a great place to follow onto.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Knees &amp; their stability would require everything above to have been prepared since their degree of control comes from above and of course the feet following on from that offer, would offer a </span><i><span style=\"font-weight: 400;\">systematic approach</span></i><span style=\"font-weight: 400;\"> to ‘ruling things out’ </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Other systems may suggest starting at the feet of course….and so to be clear it is more important that you follow a system, than which system you choose to follow. If you are following a system, clarity can be gained so start where you like &amp; follow a logic that works for you, your training and your logic.</span>\n\n&nbsp;\n<h2><b>A System Within A System </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">While we have divided the body into areas for a suggested system above, we should probably also consider the sub-systems. For example the muscles, nerves &amp; joints as a way to work systematically in each area too. So being able to test each sub-system of each body part can also make our detective work both fascinating &amp; rewarding.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whichever ‘system’, or series of systems, you follow the point to all of them is to know what has worked, what hasn\'t worked and what to do next. Rather than randomly addressing various issues, not knowing what’s affecting what, if we follow a system we can be more confident about our clients key biomechanical pillars</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With a system we can monitor &amp; demonstrate progress which offers our client clear results and we can know what is affecting what more logically coming from an informed place.</span>\n<h2></h2>\n<h2><b>What’s your system?</b></h2>\n<h2></h2>\n<h2><b>Would you like to learn an evidence based one?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Biomechanics Coaching teaches coaches &amp; trainers a very simple evidence based system of tests &amp; special techniques that give you absolute clarity &amp; confidence about what to do &amp; when...even when things don\'t happen in the way you expected or even when the ‘issues’ your clients presents with are vague, various and often complex.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So when your new client gets under that squat bar, as you throw your arms out ready to catch them…you’re thinking “</span><i><span style=\"font-weight: 400;\">I know exactly what I need to do here…</span></i><span style=\"font-weight: 400;\">.”</span>\n\n<a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>October 17th/18th in Nottingham</b></a><span style=\"font-weight: 400;\"> we have only 6 places for a </span><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Pelvic &amp; Spine Biomechanics Workshop</b></a><span style=\"font-weight: 400;\"> that is a fantastic start point for any PT looking to advance their knowledge and gain access to an entire community of professionals. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not begin your journey towards becoming a Biomechanics Coach and get more results, with more clients, while having the confidence to also charge more for your time as a ‘specialist’!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to join us?</span>\n\n<span style=\"font-weight: 400;\">How would you feel if we helped you deepen your anatomy knowledge?</span>\n\n<span style=\"font-weight: 400;\">Do you want to learn anatomy &amp; medical language to get you a solid reputation with clinicians?</span>\n\n<span style=\"font-weight: 400;\">Have you been thinking about our Diploma for a while already?</span>\n\n<span style=\"font-weight: 400;\">Can you get to Nottingham on these dates?</span>\n\n<span style=\"font-weight: 400;\">Would you like to learn more?</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">BOOK HERE </span></a></h1>\n<span style=\"font-weight: 400;\">OR</span>\n<h1><span style=\"font-weight: 400;\">Call now 07976 933113 </span></h1>\n<span style=\"font-weight: 400;\">OR</span>\n<h1><span style=\"font-weight: 400;\">Email info@biomechanicseducation.com</span></h1>','Do you wonder what\'s going on when coaching technique just doesn\'t work?','','inherit','closed','closed','','23939-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',23939,'https://biomechanicseducation.com/?p=38658',0,'revision','',0),(38659,0,'2024-07-16 11:26:29','2024-07-16 11:26:29','<span style=\"font-weight: 400;\">On the first day in the classroom, the first thing I ask my learners is “</span><i><span style=\"font-weight: 400;\">why are you here?”</span></i>\n\n<span style=\"font-weight: 400;\">The single most common request learners come to us with is….</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“I want a deeper level of understanding the human body”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then I ask them </span><i><span style=\"font-weight: 400;\">“why?”.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Often times its because we feel we lack some vocabulary skills when communicating with a physio or surgeon, or reading the medical report our client came with. </span>\n\n<span style=\"font-weight: 400;\">We want to feel like we are on some kind of level to be able to work out how we can help even when our clients have something kind of issue, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But does recalling all those muscle attachments really make you a better coach? Does it actually help?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well yes it may do BUT it shouldnt inhibit you helping your clients to move better. Just because the other PT in your gym can recite most of the muscles to their client while they train them doesn\'t mean they’re a better coach….in fact this can be off putting for a client!</span>\n\n&nbsp;\n<h2><b>Let me tell you a secret….</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">….having taught the subject of anatomy, muscles, joints, nerves and movement (intrinsic biomechanics) for over 16 years now 99% of our learners are also looking for a deeper understanding of the body! </span>\n\n<span style=\"font-weight: 400;\">You are not the only one! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe during lockdown you decided to go back into the online classroom to gain a deeper level of understanding the body and movement and the reasons why clients move the way they do compared to each other!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you find clarity?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Or do you feel like the things you learned about muscle attachments don\'t directly help you back in the gym when applying the knowledge practically?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It often seems to be that the more you learn, the more complex it becomes.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All you want is something more helpful ‘in application’...right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What do I mean?</span>\n\n&nbsp;\n<h2><b>The Problem</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">You want to be able to help those tricky clients who don\'t move well, have little aches or niggles, recurring injuries or a condition you have never heard of!</span>\n\n&nbsp;\n<h2><b>The Solution </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Think differently - when something isn\'t working, change what you do!</span>\n\n<span style=\"font-weight: 400;\">So learning the attachments of pectineus doesn\'t give you the solution for your clients knee valgus. </span>\n\n<span style=\"font-weight: 400;\">However learning movement can be so simple which is why during your level 2 training we learned this first.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Adduction/Abduction, Flexion/Extension, Rotation etc</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The analysis of movements or joint actions is one we seem to do really well but for some reason we remain fixed on the idea that knowing all of the muscle attachments will be the thing that solves our clients problems. </span>\n\n<span style=\"font-weight: 400;\">Yet SIMPLY understanding the movement they can or can\'t do is far more helpful. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once we know what movement they cannot do we can consider what ‘exercises’ or techniques we can offer as a solution to the movement issue.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It would make sense to start with the least contraindicated exercise first, then systematically re-evaluate their movement overtime to understand if that exercise was helpful. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then repeat!</span>\n\n&nbsp;\n<h2><b>The Application Theory</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Something my long term colleague, mentor and business partner have discussed for many years is the ‘Application Theory’. If you look it up you won\'t find it because we made it up! It\'s our best (and probably most used) tool in the classroom and I want to teach it to you....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Application Theory = SIMPLE - COMPLEX - SIMPLE</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">That\'s it!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Just that pretty much - the point being even that with the more you learn in the complex phase rarely does it dramatically alter what you do in application. </span>\n\n&nbsp;\n<h2><b>The WAY We Think, Conceptually</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In the </span><i><span style=\"font-weight: 400;\">School of Intrinsic Biomechanics</span></i><span style=\"font-weight: 400;\"> we teach this from day 1 when ALL of our learners arrive with some degree of anxiety about being asked an A&amp;P question they feel they will be unable to answer. For some reason this peer pressure has come about over the years that we should apparently have the ability to recall ALL of those damn muscle attachments by heart, I am not sure why its such a THING!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First let me ask you…..</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Are you still worried that you just don’t know enough?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you wish you had a deeper understanding of the human body?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Would you love to recall all of the anatomy you learned during your training?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What do you do about it? .</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you use anatomy books? </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Follow anatomy geeks hoping to pick up some nuggets?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel you can ‘get away’ without remembering all those muscle attachments?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you wonder why we forget them all? or</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Maybe you wonder why we bother learning them all for an exam? </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here\'s the thing MOST of the industry, and I mean MOST, DOES NOT have the ability to recall muscle attachments. Even those with a lot of training or even years of experience in the industry.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So here\'s a question….Does this stop them / you from helping people? </span>\n\n<span style=\"font-weight: 400;\">No!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does it limit what can be done?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe, but clearly there are some GREAT PT’s who DON\'T know their anatomy that are helping LOADS of clients achieve either goals!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Please understand I am not suggesting you do not need to study anatomy and gain a better understanding of the body, if it can be made fun and memorable with a reason to remember it then it is more likely to be easier to recall. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we teach you a biomechanics test, we give you a reason to remember the anatomy because if you don\'t know the anatomy you won\'t understand the test. What this then does is it creates a reason to remember where pec minor attaches, because we offer you a visual assessment skill that deepens your appreciation of how, when dysfunctional, it will pull the scapular forwards into that round shouldered posture we often see. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then we offer you that chance to come up with ideas as to what can be done about this and we give suggestions for alternatives. Once you have applied the test, followed by an intervention, you can retest and actually see the change occur…..this is where understanding anatomy gets really exciting - because you can see the change AND understand how it relates to the anatomy! </span>\n\n&nbsp;\n<h2><b>The Biomechanics Education Classroom</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another important aspect to learning complex subjects, and that we endeavour to encourage in our classroom, is for our learners to never be afraid to;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A). ....give the wrong answer</span>\n\n<span style=\"font-weight: 400;\">B). .... say “I don’t know..?”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As practitioners we MUST not wing it when it comes to another person\'s body .</span>\n\n<span style=\"font-weight: 400;\">We MUST be honest when we don’t have the answer or need to seek a second opinion</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Too often the ego encourage a fear of not knowing or being wrong &amp; yet if we are honest when we don’t know we would be providing a better duty of care</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Never be afraid to have a go &amp; be wrong in the learning environment.</span>\n\n<span style=\"font-weight: 400;\">Always admit when you don’t know the answer .</span>\n\n<span style=\"font-weight: 400;\">To all the educators out there...remember we must NEVER judge a learner who is honest enough to say “</span><i><span style=\"font-weight: 400;\">I don’t know</span></i><span style=\"font-weight: 400;\">” when we ask them a question!</span>\n\n&nbsp;\n<h2><b>Simplicity In Application </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHY do we feel this pressure, even on ourselves, to recall the A&amp;P when application of safe movement coaching is far more important!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Theory of Application SIMPLE - COMPLEX - SIMPLE</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">SIMPLE - when you look at or speak to your client the ‘WHAT’ is obvious to you, for example...their knee caves in or their back hurts or one shoulder is higher than the other….or they have sore knees when they run.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">COMPLEX….Most PT’s I talk to then have this habit of trying to work out which muscle it is….well good luck with that! This is not helpful particularly at this point </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why? Because even if you could recall every single muscle attachment it wont give you the answer as to what to do to help your client!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">SIMPLE….watch them, question them, write down your thinking, get a second opinion, check your remit, any reg flags….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then if cleared give them a safe movement technique and watch the movement again…..repeat until improvement occurs or you need a second opinion or further learning but don\'t ever underestimate what you CAN do! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Experience our classroom and you will learn far more than simply how to assess your clients body!</span>\n<h2></h2>\n<h2><b>Would YOU Like To Learn New Skills AND How To Apply Them SIMPLY Into Your Service BOTH Online AND Face to Face?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let us show you!</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/shop/\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">CLICK HERE FOR Online Education</span></a></h1>\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">CLICK HERE FOR Face to Face Education</span></a></h1>','Does having a better understanding of the body make you a better coach?','','inherit','closed','closed','','23765-revision-v1','','','2024-07-16 11:26:29','2024-07-16 11:26:29','',23765,'https://biomechanicseducation.com/?p=38659',0,'revision','',0),(38660,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">Personal training is becoming a far more complex skill with the evolution of our client’s bodies, the ever changing environment including more &amp; more technology and the limitations surrounding us as a result of a virus. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Personal training originally evolved predominantly as a standard to support our client’s in improving their aesthetics, to reduce body fat and increase muscle mass or to ‘tone up’ if you were a </span><i><span style=\"font-weight: 400;\">lady</span></i><span style=\"font-weight: 400;\"> of course….(tongue in cheek).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What has happened, as with many things, is the requirement of our role has grown out of the original scope and with it additional responsibility. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More &amp; more of our clients come with a modern ailment due to lifestyle. They expect us to ‘fix it’ or give them a specific exercise to solve the problem.</span>\n\n<span style=\"font-weight: 400;\">Yet we feel inadequate when it comes to responding to this kind of request. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We need more assessments skills, more knowledge around pain science &amp; a deeper level of understanding the body when things are quite right. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However we need to be sure we remain within our insurance remit or we must gain these additional qualifications or additional skills so we can upgrade our insured to continue to support and serve the new ‘pandemic’ of poor movers that we are gaining as clients today.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Poor movement from a sedentary lifestyle can often come with pain. This is when movement practitioners (personal trainers, pilates &amp; yoga teachers, S&amp;C coaches) MUST be careful about scope of practice.  </span>\n\n<span style=\"font-weight: 400;\">Yet there are possibly MORE people out there experiencing a type of ‘pain’ that we CAN HELP WITH.</span>\n\n&nbsp;\n<h2><b>The Problem?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The problem is recognising and practicing in a way that demonstrates the limitations of our training in pain science and shows we appreciate we DON\'T KNOW WHAT WE DON\'T KNOW.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So how do we exercise/movement practitioners, work with clients in pain? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We MUST gain an understanding of pain</span>\n\n<span style=\"font-weight: 400;\">We MUST gain a clear understanding of red flags</span>\n\n<span style=\"font-weight: 400;\">We should work in a multidisciplinary team</span>\n\n<span style=\"font-weight: 400;\">We must utilise a thorough consultation process with clear referral points for red flags</span>\n\n<span style=\"font-weight: 400;\">We must ALWAYS refer when unsure</span>\n\n<span style=\"font-weight: 400;\">We must NEVER think </span><i><span style=\"font-weight: 400;\">“ah I am sure it will be nothing</span></i><span style=\"font-weight: 400;\">”</span>\n\n<span style=\"font-weight: 400;\">We MUST always put the client’s health &amp; safety first</span>\n\n<span style=\"font-weight: 400;\">We MUST NEVER KNOWINGLY CAUSE HARM</span>\n\n&nbsp;\n<h2><b>How do we do this?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are some of the basics to start you off that come from the book </span><i><span style=\"font-weight: 400;\">Explain Pain </span></i><span style=\"font-weight: 400;\">by Lorimer Moseley and David Butler, who are world leading neuroscientists. Their world renowned research is demonstrating how our clients experience pain and what we can do to help.</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain is good </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain is a warning signal</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain is telling you to change something </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain is subjective </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain is an input not an output</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain isn’t necessarily indicative of its location</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pain is not necessarily indicative of pathology</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The degree of pain felt is not indicative of the amount of tissue damage </span></li>\n</ul>\n<span style=\"font-weight: 400;\">So we strongly recommend investing in this book to learn more about the science of pain. </span>\n\n<span style=\"font-weight: 400;\">Also how to communicate the above with clients who experience pain or even live with chronic pain, often this alone enables them to feel less pain. </span>\n\n&nbsp;\n<h2><b>What else can we do?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Skilled communication is a huge contributor to understanding and reducing pain. We can support our clients\' experience by offering them language appreciation to enable them to communicate better what they are experiencing. Thus allowing us to better understand how to support or refer them to another practitioner better suited to their requirements.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then we can use considered language to help clients better understand how pain works therefore offering a form of CBT to contribute to reducing their experience of pain. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">One common miscommunication I come across a lot is when a client describes ‘tension’ or ‘stiffness’ as pain. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So my role includes helping clients to differentiate </span><i><span style=\"font-weight: 400;\">pain</span></i><span style=\"font-weight: 400;\"> from </span><i><span style=\"font-weight: 400;\">tension</span></i><span style=\"font-weight: 400;\"> or stiffness. This may sound to some like a crazy notion and yet could be a game changer in how we work with a client or even IF we work with them. </span>\n\n&nbsp;\n<h2><b>Definitions </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pain comes under the descriptive group term for SENSATION. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Examples of </span><i><span style=\"font-weight: 400;\">Sensations </span></i><span style=\"font-weight: 400;\">are; </span>\n\n<span style=\"font-weight: 400;\">Pain </span>\n\n<span style=\"font-weight: 400;\">Tension </span>\n\n<span style=\"font-weight: 400;\">Stiffness </span>\n\n<span style=\"font-weight: 400;\">Ache</span>\n\n<span style=\"font-weight: 400;\">Niggle</span>\n\n<span style=\"font-weight: 400;\">Tingle </span>\n\n<span style=\"font-weight: 400;\">Stretch </span>\n\n<span style=\"font-weight: 400;\">Pulling </span>\n\n<span style=\"font-weight: 400;\">Pinching </span>\n\n<span style=\"font-weight: 400;\">Numbness </span>\n\n<span style=\"font-weight: 400;\">Throbbing </span>\n\n<span style=\"font-weight: 400;\">Itching </span>\n\n<span style=\"font-weight: 400;\">Cramp</span>\n\n<span style=\"font-weight: 400;\">Stabbing </span>\n\n<span style=\"font-weight: 400;\">Sharpness</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Depending upon how you ‘read the client’ and other details of their history will dictate whether you deem any of these descriptions to be red flags. For example we could ask them to score their ‘sensations’....</span>\n\n&nbsp;\n<h2><b>Scoring Pain (or Sensations)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Using the adapted Borg scale 0-10 to score the level of pain we can ask a client to give us a number out of 10 that is representative of how much pain, or sensation, they feel. We also need to give them examples of extremes like...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">0 being no pain at all</span>\n\n<span style=\"font-weight: 400;\">10 having their arms ripped from the sockets </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once they’ve given a score remember PERCEPTION can often be distorted when someone has </span><i><span style=\"font-weight: 400;\">chronic</span></i><span style=\"font-weight: 400;\"> pain or even a fear of movement OR even a fear you will send them away and refuse to work with them! Which is another reason to gather a team around you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However you can also ask questions like…. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Can you describe the </span><i><span style=\"font-weight: 400;\">quality</span></i><span style=\"font-weight: 400;\"> of your pain? Is it sharp or dull?</span>\n\n<span style=\"font-weight: 400;\">Do you feel better moving or when still? Morning or evening? </span>\n\n<span style=\"font-weight: 400;\">Are there specific movements or positions that increase it? Or decrease it?</span>\n\n<span style=\"font-weight: 400;\">Is it constant or erratic? </span>\n\n<span style=\"font-weight: 400;\">Does it radiate or remain in a fixed point? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This kind of questioning has several benefits other than the actual details. Clients will feel heard and valued when you spend time asking about how they feel. This has been shown to improve the likelihood of pain reduction and adherence. </span>\n\n<span style=\"font-weight: 400;\">Each of these, along with having the ability to read your clients face &amp; body language (sometimes quite separate to what they actually say) allow us to evaluate risk to make the decision as to whether we work with them or not.</span>\n\n&nbsp;\n<h2><b>So can I still work with a client in pain? </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some sensations a client initially describes as ‘pain’, upon further questioning, you may find are in fact simply ‘tight or stiff’. So our communication and interview skills are paramount when considering taking on a client who tells you they experience any degree of pain.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pain itself should be deemed a red flag until further questioning takes place like the above or for referral. This is why having a team of diverse professionals around you is vital in being able to retain clients while remaining with your own remit.</span>\n\n&nbsp;\n<h2><b>Our role in reducing clients pain</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s worth keeping in mind a ‘pain’ or sensation that is low in grade, insidious &amp; has not come from a specific trauma, or with any red flags, is quite likely simply a biomechanical issue or you could describe it as a physical adaption or compensation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What this means is that there is a high chance it can be improved by changing something in your clients movement profile. So ‘remedial exercise’ movement techniques, like the iMoveFreely Programme, are hugely beneficial and greatly improve the results of any application of ‘strength’ training.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can teaching clients how to avoid things that irritate </span>\n\n<span style=\"font-weight: 400;\">We can monitor &amp; assess their movement quality</span>\n\n<span style=\"font-weight: 400;\">We can add in a special technique like an MET that is safe &amp; low grade</span>\n\n<span style=\"font-weight: 400;\">Then we can re-assess &amp; evaluate</span>\n\n<span style=\"font-weight: 400;\">..Add something else like a pure mobility technique </span>\n\n<span style=\"font-weight: 400;\">..re-assess &amp; evaluate </span>\n\n<span style=\"font-weight: 400;\">...add something else like a nerve mobilisation </span>\n\n<span style=\"font-weight: 400;\">...re-assess &amp; evaluate </span>\n\n<span style=\"font-weight: 400;\">Do this segmentally for each part of your clients body...ie pelvic, spine etc</span>\n\n<span style=\"font-weight: 400;\">It’s not complicated, but does it take time? Yes of course!! </span>\n\n<span style=\"font-weight: 400;\">Just remember it takes months/years of compensation to get to the point your client starts to feel discomfort...reducing it may well take a while too!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">AND....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">....ignoring or simply resting doesn\'t address the warning signal so they shouldn\'t be surprised if old pains recur. Recurring ‘issues’ indicate the root cause hasn’t been addressed. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A clinician\'s job is to diagnose and treat a clinical problem.</span>\n\n<span style=\"font-weight: 400;\">Our role (exercise/movement professionals) is to improve movement quality.</span>\n\n<span style=\"font-weight: 400;\">If pain dissipates through movement there\'s a good chance it was a movement issue.</span>\n\n<span style=\"font-weight: 400;\">If clinicians struggle to identify a root cause of pain through diagnostics there\'s a chance its a biomechanical issue.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have a vital role in pain reduction BUT remember </span>\n\n&nbsp;\n<h3><strong>WE DON\'T KNOW WHAT WE DON\'T KNOW!!</strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Build a team around you</span>\n\n<span style=\"font-weight: 400;\">Assess &amp; question often</span>\n\n<span style=\"font-weight: 400;\">Transfer meaningful information between your team</span>\n\n<span style=\"font-weight: 400;\">Never knowingly do harm</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Keep them moving, moving well &amp; moving more in less pain!</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/low-back-health-pain-online-cpd-training/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">Learn more about pain science HERE</a></h1>','Does your client experience pain while training?','','inherit','closed','closed','','23636-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',23636,'https://biomechanicseducation.com/?p=38660',0,'revision','',0),(38661,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">Look I don\'t want you to be left with egg on your face after everything you have likely gone through over the last 4/5 months </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We cannot just be PT’s any more, we really have to step up our game and consider our role in the bigger picture, how our role is evolving and we MUST stay business savvy. Yet technology is not the only thing dramatically changing/affecting our businesses. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We need to start questioning, and for some maybe RE-questioning, if you did this before lockdown or even early lockdown…..</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">What\'s your brand?</span></i>\n\n<i><span style=\"font-weight: 400;\">Who’s your audience/demographic?</span></i>\n\n<i><span style=\"font-weight: 400;\">Who do you speak to? </span></i>\n\n<i><span style=\"font-weight: 400;\">Who\'s your raving fan?</span></i>\n\n<i><span style=\"font-weight: 400;\">What do they want?</span></i>\n\n<i><span style=\"font-weight: 400;\">How can you serve them?</span></i>\n\n<i><span style=\"font-weight: 400;\">Is there another way?</span></i>\n\n&nbsp;\n<h2><b>Diversify</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Take the likes of lululemon, they sell beautiful high end activewear, yet they recently invested in something called Mirror.co. This is a completely different business BUT has a link to their target market so fits their overall purpose and ethos. So now they are not just clothing, AND also more importantly, they are not solely reliant on one revenue stream. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The question is could Plan B be to expand your brand before</span> <span style=\"font-weight: 400;\">simply trying to get more clients for personal training in this new challenging climate? Remember change can often feel uncomfortable initially but eventually we all adapt however I believe we should have an honest look at what we do and seriously consider a long term change.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It\'s highly likely you will have considered all sorts of things when we were locked down, maybe thinking things like….</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“...how the hell can I make money to pay my bills…?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“...should I get a job at Tesco....?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“...OMG, what can I do differently in my business that isn\'t what I normally do..?”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...you probably (hopefully) became SUPER productive and resourceful eventually, right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what did you come up with and was it enough or did you simply alter temporarily and wait for lockdown to lift and gyms to open so you could go back to what you </span><i><span style=\"font-weight: 400;\">normally</span></i><span style=\"font-weight: 400;\"> do or are familiar with?</span>\n\n<span style=\"font-weight: 400;\">This tough time can be an </span><i><span style=\"font-weight: 400;\">opportunity</span></i><span style=\"font-weight: 400;\"> that I want to encourage you NOT to miss!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Think about what WE do in the bigger picture, movement health, mindset and wellbeing, and what services, products or concepts can you create to develop income streams to stay afloat even if one area of your businesses gets shut down again with a NEW LOCKDOWN or future pandemic!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have a duty or care and a HUGE role to play in finding ways to continue doing what we do but we need our businesses to survive to do this!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what could you do now that if life/work becomes restrictive again you are not left high and dry? </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Thinking outside the box allows for innovation and could save you during another lockdown…</span>\n\n&nbsp;\n<h2><b>A Solution…?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Think about your ideal client and what other things you talk about with them? Is there something in those conversations that could give you an idea of another business opportunity to connect with a wider audience of your kind of people?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Apps</span>\n\n<span style=\"font-weight: 400;\">Retreats </span>\n\n<span style=\"font-weight: 400;\">Clothing</span>\n\n<span style=\"font-weight: 400;\">Community links/collaborations</span>\n\n<span style=\"font-weight: 400;\">Veg delivery </span>\n\n<span style=\"font-weight: 400;\">Affiliate links</span>\n\n<span style=\"font-weight: 400;\">Online delivery of education </span>\n\n<span style=\"font-weight: 400;\">Online sessions </span>\n\n<span style=\"font-weight: 400;\">Memberships/Subscriptions </span>\n\n<span style=\"font-weight: 400;\">Or even quite simply…..</span>\n\n<i><span style=\"font-weight: 400;\">How do I deliver something new?</span></i>\n\n&nbsp;\n<h1><b>Possible Solutions</b></h1>\n&nbsp;\n<h2><strong>Online Service</strong></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok we are not about to tell you the obvious which is to be offering an online service, long term. THIS alone is a commercial no brainer! While we, like many of you, much prefered face to face there are people we know who are anxious and looking to find alternatives to the higher risk environments, even if for a while. This has always been an option but since the landscape of our industry has changed we must challenge our own biases to enable us to continue doing what we love - helping people move better AND serving ALL those who need our help.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here is a simple idea and possibly one of the easiest to set up technically and can be done pretty much for free:</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Set up a facebook ‘group’</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Set it to ‘private’ </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Invite your paying clients </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Upload generic articles, videos, live tutorials/sessions, educational information, health advice - daily, weeky, monthly</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Charge via BACS or Paypal (Paypal will incur a small % charge) a small weekly/monthly fee for access.</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are of course various platforms like Zoom, Webinarjam, Youtube etc that allow you to stream or offer live sessions but you may need to research the best one to suit your requirements.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also if you are still challenged technically - ASK for help! Family members, mentors, educators - there are many who I am sure would be willing to help you to initiate something like this. </span>\n\n&nbsp;\n<h2><b>Improve Skills </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Learning new skills that we may not have considered before might be a good idea right now. Suddenly becoming ‘time rich’ in lockdown many of us embarked on an education journey while we had the chance which proves how much we really WANT to learn!</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">What did you learn though?</span></i>\n\n<i><span style=\"font-weight: 400;\">Has it helped you so far?</span></i>\n\n<i><span style=\"font-weight: 400;\">Did it help your current business?</span></i>\n\n<i><span style=\"font-weight: 400;\">Are there more diverse skills you now realise you need?</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Things are changing swiftly as are education opportunities so keep a track of where you feel weakest or least confident, then research good education companies or ask colleagues or trusted professionals who they recommend and who may be able to guide you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you thought of learning more about things like:</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Video creation</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Business </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Building an app</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Creating a brand</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Copywriting</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Communication skills</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Covid-19 training/hygiene</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Health &amp; safety/risk assessment</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Management</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Mental health</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Creating posts</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Online programme designing</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Helping problem/tricky clients (in pain/injured)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"> Delivering educational sessions</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This list is not exhaustive but try not to rule things out too quickly as some things could convert into something really helpful if you put some real thought into it.</span>\n\n&nbsp;\n<h2><b>Invest in Help/Support </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Is there someone who you feel could be of help to you or your mindset or business? Or is there an area of your business you would LIKE TO FIND someone to help you with?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Delegation of certain jobs can leave you free to do the jobs you prefer or are better at and possibly even that make you more money. This is something I have learned with technology in particular. While I do quite a bit there are some jobs that would take me days to do so it is much more cost effective to pay someone who can do it in a few hours!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the most valuable lessons I learned as a ‘coach’ is that I too need coaching. In fact I have several! So I strongly recommend you reach out, invest or maybe you can swap skills.</span>\n\n<span style=\"font-weight: 400;\">You could write them an exercise programme for some business advice? </span>\n\n<span style=\"font-weight: 400;\">It\'s how business used to be done and a totally logical way of doing business when cash is low AND there is no harm in asking!!</span>\n\n&nbsp;\n<h2><b>Recommendations </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are companies that I personally respect and trust to give you a little starter....</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BTN Academy - nutrition</span>\n\n<span style=\"font-weight: 400;\">MTE Academy - therapy</span>\n\n<span style=\"font-weight: 400;\">Pulseroll - vibration tools </span>\n\n<span style=\"font-weight: 400;\">Future Fit Training - fitness education provision</span>\n\n<span style=\"font-weight: 400;\">DTS Fitness Education - system programming</span>\n\n<span style=\"font-weight: 400;\">Chris Wright HQ - business &amp; marketing </span>\n\n<span style=\"font-weight: 400;\">PM2 Media - Video creation</span>\n\n<span style=\"font-weight: 400;\">Therapy Empire - Therapy equipment </span>\n\n<span style=\"font-weight: 400;\">Wolverson Fitness - Gym/fitness equipment </span>\n\n<span style=\"font-weight: 400;\">STA - accreditation / recognition in therapy </span>\n\n<span style=\"font-weight: 400;\">CIMSPA - accreditation / recognition in exercise &amp; fitness </span>\n\n&nbsp;\n<h1><b>Plan C, D…..</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally keep planning all the time and try to remain open to opportunities since we have all learned recently how things can change drastically in a flash. So even if you work out your plan B, work out plan C and D too - because you just never know!!!</span>\n\n&nbsp;\n<h2>Another plan option...</h2>\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">....Become a Biomechanics Coach CLICK HERE</a>','Don\'t get left behind! Do you have a plan B? plan C? And maybe even a plan D?','','inherit','closed','closed','','23526-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',23526,'https://biomechanicseducation.com/?p=38661',0,'revision','',0),(38662,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h1><b>Did You Know....? </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a personal trainer, strength coach, pilates / yoga teacher we are at the front line of professionals the UK’s public seeks out for guidance and advice on how to move well and move more. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The World Health Organisation (WHO) recommends exercise as one of the primary solutions to not only the UK but in fact the global health crisis that now includes a pandemic.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What this means is that we, as exercise professionals, have a duty of care to equip ourselves with the most appropriate and relevant tools and skills to educate, teach, guide, programme and promote safe and effective ‘movement’ prescription.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WE have a hugely important role to play in the WHO’s global plan for improving physical activity levels by 2030 AND  to assist in unburdening the NHS through promoting physical activity. </span>\n<h1></h1>\n<h1><span style=\"font-weight: 400;\">Did you know? There are 37,000 UK deaths annually from </span><b><i>inactivity related causes</i></b><span style=\"font-weight: 400;\">!</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Vulnerable individuals are those at highest risk but more so during a pandemic, which isn\'t simply going to disappear and is also highly likely to reoccur in the future. </span>\n\n<span style=\"font-weight: 400;\">Being vulnerable in health terms in many cases could be avoidable if we look at some of the top causes of death worldwide. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHO reports that ‘..</span><i><span style=\"font-weight: 400;\">of the 56.9 deaths worldwide in 2016, 54% were due to the top 10 causes. The top 2 being Ischaemic heart disease and strokes consistently for the last 15 years. </span></i>\n<h2></h2>\n<h2><i><span style=\"font-weight: 400;\">Diabetes killed 1.6 million in 2016, up from less than 1 million in 2000.</span></i></h2>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Deaths due to dementias more than doubled between 2000 and 2016, making it the 5th leading cause of global deaths in 2016 compared to 14th in 2000. </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Lower respiratory infection remained the most deadly communicable disease, causing 3 million deaths worldwide in 2016.’</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is strong evidence pointing towards physical activity being one of the most effective, cheapest, simplest solutions to many of the above health issues. </span>\n\n<span style=\"font-weight: 400;\">Those being more physically active…..</span>\n\n&nbsp;\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><i><span style=\"font-weight: 400;\">have lower rates of all-cause mortality, coronary heart disease, high blood pressure, stroke, type 2 diabetes, metabolic syndrome, colon and breast cancer, and depression;</span></i></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">are likely to have less risk of a hip or vertebral fracture;</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">exhibit a higher level of cardiorespiratory and muscular fitness; and</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">are more likely to achieve weight maintenance, have a healthier body mass and composition.</span></li>\n</ul>\n&nbsp;\n<h1></h1>\n<h1><b>Key facts from W.H.O….</b></h1>\n&nbsp;\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><i><span style=\"font-weight: 400;\">Insufficient physical activity is one of the leading risk factors for death worldwide.</span></i></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Insufficient physical activity is a key risk factor for noncommunicable diseases (NCDs) such as cardiovascular diseases, cancer and diabetes.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Physical activity has significant health benefits and contributes to preventing NCDs.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Globally, 1 in 4 adults is not active enough.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">More than 80% of the world\'s adolescent population is insufficiently physically active.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Policies to address insufficient physical activity are operational in 56% of WHO Member States.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">WHO Member States have agreed to reduce insufficient physical activity by 10% by 2025.</span></li>\n</ul>\n&nbsp;\n<h2></h2>\n<h2><b>How much should we be teaching our clients to move?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">UK Chief Medical Officer Guidelines for 2019 are:</span>\n<h3><b><i>Children and adolescents aged 5-17years</i></b></h3>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><i><span style=\"font-weight: 400;\">Should do at least 60 minutes of moderate to vigorous-intensity physical activity daily.</span></i></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Physical activity of amounts greater than 60 minutes daily will provide additional health benefits.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Should include activities that strengthen muscle and bone, at least 3 times per week.</span></li>\n</ul>\n&nbsp;\n<h3><b><i>Adults aged 18-64 years</i></b></h3>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><i><span style=\"font-weight: 400;\">Should do at least 150 minutes of moderate-intensity aerobic physical activity throughout the week or do at least 75 minutes of vigorous-intensity aerobic physical activity throughout the week or an equivalent combination of moderate- and vigorous-intensity activity.</span></i></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic activity should be performed in bouts of at least 10 minutes duration.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">For additional health benefits, adults should increase their moderate-intensity aerobic physical activity to 300 minutes per week, or engage in 150 minutes of vigorous-intensity aerobic physical activity per week, or an equivalent combination of moderate- and vigorous-intensity activity.</span></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Muscle-strengthening activities should be done involving major muscle groups on 2 or more days a week</span></li>\n</ul>\n&nbsp;\n<h3><em><b>Adults aged 65 years and above</b></em></h3>\n<ul>\n 	<li style=\"font-weight: 400;\"><em><span style=\"font-weight: 400;\">Should do at least 150 minutes of moderate-intensity physical activity throughout the week, or at least 75 minutes of vigorous-intensity physical activity throughout the week, or an equivalent combination of moderate- and vigorous-intensity activity.</span></em></li>\n 	<li style=\"font-weight: 400;\"><em><span style=\"font-weight: 400;\">For additional health benefits, they should increase moderate-intensity physical activity to 300 minutes per week, or equivalent.</span></em></li>\n 	<li style=\"font-weight: 400;\"><em><span style=\"font-weight: 400;\">Those with poor mobility should perform physical activity to enhance balance and prevent falls, 3 or more days per week.</span></em></li>\n 	<li style=\"font-weight: 400;\"><em><span style=\"font-weight: 400;\">Muscle-strengthening activities should be done involving major muscle groups, 2 or more days a week.</span></em></li>\n</ul>\n&nbsp;\n<h2><b>What equates to ‘activity’?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">THIS is the beautiful thing about these recommendations…</span>\n\n&nbsp;\n<h2><i><span style=\"font-weight: 400;\">YOU DON\'T NEED A GYM! </span></i></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">No need to panic or worry about your access to a gym BUT you may wish to consider your LONG TERM business model to include solutions that don\'t only require hiring gym space that you may be limited by should a pandemic alert re-occur.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHO and the British government recommend….. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Walking &#x1f6b6;&#x200d;&#x2640;&#xfe0f; </span>\n\n<span style=\"font-weight: 400;\">Swimming &#x1f3ca;&#x200d;&#x2642;&#xfe0f; </span>\n\n<span style=\"font-weight: 400;\">Dancing &#x1f483;&#x1f3fc; </span>\n\n<span style=\"font-weight: 400;\">Cycling &#x1f6b4;&#x200d;&#x2640;&#xfe0f; </span>\n\n<span style=\"font-weight: 400;\">Gardening &#x1f337;</span>\n\n<span style=\"font-weight: 400;\">Housework &#x1f3e1;</span>\n\n<span style=\"font-weight: 400;\">Occupational tasks &#x1f393;</span>\n\n<span style=\"font-weight: 400;\">And anything that moves and loads you and also elevates your client’s heart rate. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So our jobs as exercise professionals may require adjusting somewhat to allow for this changing landscape of exercise prescription. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PLEASE PLEASE PLEASE </span>\n\n<span style=\"font-weight: 400;\">Move Well &amp; Move More! Your country needs you!</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">NEXT TIME…..</span><b>Dont get caught out! Do you have a plan B?</b></h2>\n<span style=\"font-weight: 400;\">Next week we discuss the importance of having a plan B and what that might look like, along with maybe a plan C, plan D….Ask yourself…..do you have a plan ready for the next pandemic alert or lockdown? Can your business survive? Have you adapted to solutions purely for the short term or long term? Should you prepare a plan for long term changes commercially to your service? </span>\n\nReference;\n\n<a href=\"https://www.who.int/news-room/fact-sheets/detail/the-top-10-causes-of-death\"><span style=\"font-weight: 400;\">https://www.who.int/news-room/fact-sheets/detail/the-top-10-causes-of-death</span></a>','Did You Know....? 37,000 UK deaths annually from inactivity related causes!','','inherit','closed','closed','','23383-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',23383,'https://biomechanicseducation.com/?p=38662',0,'revision','',0),(38663,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">WARNING; During lockdown de-conditioning will likely have occurred in our clients depending upon access to equipment, regular personal training/coaching and possibly low motivation levels.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We may have felt the same but for us this has also been the perfect time to educate ourselves, learn new skills and gain new tools to better serve our clients. This blog is about highlighting something we really must consider to avoid risk of injury for our clients both old and new. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Something we could consider is adding a few simple additional calculations to our programme design. </span>\n\n&nbsp;\n<h2><b>Load Management - Why?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Risk reduction and optimisation of performance! </span>\n\n<span style=\"font-weight: 400;\">Risk factors can be intrinsic like age, flexibility, previous injury etc and extrinsic factors can be ability/level, load, force etc. That said risk factors can be present but no injuries may occur so understand here we are wanting to demonstrate our duty of care by reducing risk.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However chronic load application can be missing from training programmes and training really is a balance. As Tim Gabbett says “</span><i><span style=\"font-weight: 400;\">Load being a vehicle to drive clients or athletes to, or from, injury</span></i><span style=\"font-weight: 400;\">”  If load is ramped up too quickly, performance can decline. Increasing capacity involves more than simply increasing load and so this is what we are exploring here in this blog. </span>\n\n<span style=\"font-weight: 400;\">Note; we should also monitor, and take note of, health factors such as sleep, diet, stress, hydration and hormones if not already. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Managing the amount of load our clients bodies go through during our training sessions and programming, overtime is something we are all aware of and holds valuable for very simple and obvious reasons. As a profession we are notoriously reputed for NOT having the kind of assessment and monitoring skills that other practitioners, like clinicians maybe, have. However we can often be the first person a client seeks out when emerging from lockdown.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of our industries main roles is to build endurance strength in our clients bodies, whatever their goal, since we are ‘exercise’ professionals, this more often than not means putting their bodies under load. But how do we ‘measure’ that load? When considering the main factor of a strength requirement (aside from aesthetics) the reason we coach strength training is, in basic form, for...</span>\n\n&nbsp;\n<h2><b>Building Tissue Tolerance</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We want to build tissue tolerance gradually to avoid risk of injury, overtraining or loss of gains or performance. The very basic level of this is in our basic training when we are taught to use reps, sets &amp; kilos in a gym. But this has limitations for measuring tissue tolerance, other than waiting for an injury! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we only think of ‘load’ as the kilos, reps or sets we could miss other important influencing factors. We have all experienced a client with low energy, motivation or post rehab or a weekend warrior who overtrains haven\'t we!?</span>\n\n<span style=\"font-weight: 400;\">So to truly understand the loads their body manages over time it takes more than mapping kilos, reps and sets.</span>\n\n&nbsp;\n<h2><b>Athletic Spectrum</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">After attending Tim Gabbett’s ‘</span><i><span style=\"font-weight: 400;\">Load Management’</span></i><span style=\"font-weight: 400;\"> workshop there were so many magic takeaways from the masses of information he gave us and so I would like to share some of his ideas that he shared with us that day. One of the most profound and useful was a pen and paper formula to measure, monitor &amp; evaluate the overall loads our client’s body is put under. So please understand this content has been taken from his workshop and hopefully condensed into something that can be useful to those of you trainers and coaches who are looking for measuring tools to monitor your clients progress, so you can manage their programming.</span>\n\n<span style=\"font-weight: 400;\">We all know once we can measure something, we can manage it !</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So, Gabbett, recommends if we can put our clients into a load continuum or Athletic Spectrum by calculating a few numbers, then monitor those numbers over time we can identify when they are overtraining or could take advantage of the loads they experience during training based on our monitoring of where they are on the spectrum.</span>\n\n&nbsp;\n<h2><b>Frequency + Volume  + intensity = Load</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This total load can be measured into units which is something we can then monitor and measure over time.</span>\n\n<span style=\"font-weight: 400;\">Often only used in elite sport, why would we NOT use the same simple measuring system for our clients to demonstrate how we are guiding them towards their goals in a calculated way to reduce risk by assessing the overall loads their body is under. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can all be added to a simple graph on a spreadsheet &amp; analysed over weeks/months taking into account all influencers BUT we MUST also record their </span><i><span style=\"font-weight: 400;\">response</span></i><span style=\"font-weight: 400;\"> to the loads so that overtime we can evaluate their </span><i><span style=\"font-weight: 400;\">tolerance</span></i><span style=\"font-weight: 400;\"> to that load. A balance is required in recognising BOTH negative &amp; positive responses to load, is what Gabbett suggests</span>\n\n&nbsp;\n<h2><b>Task Specificity</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Task specific relative capacity is also key so that load management relates to the task at hand. So finding numbers that relate could be include distance, heart rate and speed for a runner for example</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone is on an Athletic Spectrum to some degree and the principles of progressive overload, specificity and recovery are effectively the same for our regular clients and not just our athletes. Using load measurements allows us to manage, periodise and also amend or alter when necessary depending upon their response &amp; also their schedule.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The more we measure, the more we can manage, the more options and alternatives for their programme can be utilised.  </span>\n\n&nbsp;\n<h2><b>Tolerance to Load </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can’t predict injury but we can prepare our client’s </span><i><span style=\"font-weight: 400;\">tolerance to load</span></i><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As suggested, load isn’t the problem BUT the loads that our client’s are not prepared for, are.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Training is needed to allow you to check responses to load and should be followed with adequate recovery. Monitoring over time allows us to adjust their programme according to results.</span>\n\n&nbsp;\n<h2><b>What Does The Spreadsheet Look Like?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When we think about numbers to measure we may view RPE as subjective however this measurement does allow for <em>perception</em> that equipment doesn’t. </span>\n\n<span style=\"font-weight: 400;\">We must also remember our vocabulary may affect clarity so if using this score to understand chronic load over time we need to educate our clients what training feels like for this RPE score and how to communicate it. Ideally it should be reported by the client at 30 minutes after the session for how the actual session felt as opposed to during it. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rating        Descriptor      </span><span style=\"font-weight: 400;\">        </span>\n\n<span style=\"font-weight: 400;\">0                Resting</span>\n\n<span style=\"font-weight: 400;\">1                Very, very easy</span>\n\n<span style=\"font-weight: 400;\">2               Easy</span>\n\n<span style=\"font-weight: 400;\">3               Moderate</span>\n\n<span style=\"font-weight: 400;\">4               Somewhat hard</span>\n\n<span style=\"font-weight: 400;\">5               Hard</span>\n\n<span style=\"font-weight: 400;\">6              -</span>\n\n<span style=\"font-weight: 400;\">7               Very Hard</span>\n\n<span style=\"font-weight: 400;\">8               -</span>\n\n<span style=\"font-weight: 400;\">9               -</span>\n\n<span style=\"font-weight: 400;\">10             Maximal</span>\n\n&nbsp;\n\n<img class=\"size-full wp-image-23307\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/07/Screenshot-2020-07-25-at-13.57.41.png\" alt=\"\" width=\"2644\" height=\"936\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So notice in the graph the use of <em>frequency, intensity &amp; duration</em> to give us the load scores. </span>\n\n<span style=\"font-weight: 400;\">Frequency is shown by the number of days and training sessions.</span>\n\n<span style=\"font-weight: 400;\">Intensity is using the RPE scale x duration which uses the minutes of training.</span>\n\n<span style=\"font-weight: 400;\">Using intensity x duration we get = load for that session or day. </span>\n\n<span style=\"font-weight: 400;\">Then we can total the weekly numbers to get the weekly load. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can then also give us a monthly load and so on. Over time this allows us to monitor and manage the chronic load, thus enabling us to evaluate response and therefore allow us to understand when to manage load by decreasing or increasing it. If our client shows signs of overtraining, fatigue or stress we can reduced load. If they are progressing well we can increase load. Remember noting stressors like overtime at work, family illness, bouts of a cold or even reduced performance during their training session should also be a part of that monitoring response and risk.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This reduces injury risk as much as possible and allows for performance optimisation at the appropriate time for their goal, race, match, game or simply quality of life.  </span>\n\n&nbsp;\n<h2><b>How Do You Decide When &amp; What To Progress or Regress?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">With the measurements in place we can analyse how our client is ‘performing’ at any given period. Noticing their response to load is a bIg part of our role. Gabbett, during his lecture, talked about the 10% rule or ‘gossip rule’ of not increasing more than 10% BUT the rule needs to be contextualised he added.</span>\n\n<span style=\"font-weight: 400;\">Also he recommended being mindful that it doesn\'t necessarily address chronic load or current capacity however w</span><span style=\"font-weight: 400;\">e could use a basic 10% in either direction to de-load or increase load. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><em>What</em> to tweak comes down to your knowledge of the goals, timelines and motivators for your client. So it will to differ from client to client but could be anything from adding or reducing the number of session per week, increasing or decreasing duration of sessions, reducing or increasing recovery, lighter or heavier weights, more or less miles or simply altering from a weights session to a yoga &amp; meditation session. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Communication is key and understanding enough about your client to do the right thing, at the right time, with integrity and from an informed place. Using logic of justification and thinking things through, solutions will come. Just know there are always a variety of options so that\'s where you must trust your judgement and reasoning since you are the best person to help your client, since you know them best.</span>\n\n&nbsp;\n\nUsing a reflective journal along side the other programming tools, allow us to write our critical thinking and ideas for options and is one of my personal favourite tools for subjective monitoring and documentation of thoughts for each clients progress which might offer new ideas future clients.\n<h2></h2>\n<h2><b>Final Words</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Your clients need you!</span>\n\n<span style=\"font-weight: 400;\">Don\'t doubt yourself and what you can offer, simply seek to learn new skills to pull out of the tool box when you feel it is necessary and appropriate for each client. One tool may not be right for one client and another may need lots of tools to help. Hopefully this great idea shared from Tim Gabbett\'s tool box will become a useful option for you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If however you are looking for intrinsic biomechanics assessment tools to add to the mix, to monitor your clients movement and if you would love a deeper level of understanding your clients body PLEASE GET IN TOUCH to arrange a call back to discuss joining our awesome community of <a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Biomechanics Coaches!</a> We are always looking for the best and most passionate trainers and coaches to join us in improving the movement of the nation and really make a difference!</span>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">We are changing the face or what \'personal training\' SHOULD be like!</a>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">JOIN US!</a>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">BECOME A BIOMECHANICS COACH</a>\n\n&nbsp;\n<h1>Check out  <a href=\"https://gabbettperformance.com.au/profile/\" target=\"_blank\" rel=\"noopener noreferrer\">Tim Gabbett</a></h1>','Have You Considered Your Client\'s Load Management Post Lockdown?','','inherit','closed','closed','','23305-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',23305,'https://biomechanicseducation.com/?p=38663',0,'revision','',0),(38664,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h1><b>How Does The Fitness Industry Need To Adapt…?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This week\'s Juicemail is primarily to provoke thinking however we would like to understand from you what you feel is required to support you, as individuals and small businesses, to adapt.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The virus has really shaken things up for everyone, and there is a chance we ain\'t seen nothing yet! As the fitness industry is preparing to emerge from lockdown, how do </span><i><span style=\"font-weight: 400;\">WE</span></i><span style=\"font-weight: 400;\"> need to adapt to meet the needs of this new world and are there opportunities amidst the mayhem?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly I would like to assure you that </span><i><span style=\"font-weight: 400;\">WE</span></i><span style=\"font-weight: 400;\"> are stronger together and there are associations, groups, organisations and people who are fighting your corner. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Due to unprecedented circumstances we need to educate, prepare, educate (yes I did say it twice) and be aware of all possible eventualities. This breeds confidence and enables us to lead the nation towards improved physical health that will benefit individuals as well as the nation long term. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can unburden the NHS through guided exercise and improved movement but what exactly needs to happen?</span>\n\n&nbsp;\n<h1><b>Group Discussion</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Last week I spoke on a panel invited together by CIMSPA including: </span>\n\n<span style=\"font-weight: 400;\">Phill Wright Business Transformation Manager CIMSPA</span>\n\n<span style=\"font-weight: 400;\">Colin Huffen Head of Education CIMSPA, </span>\n\n<span style=\"font-weight: 400;\">Steve Osbourne from Cardiff Met Uni</span>\n\n<span style=\"font-weight: 400;\">Sean Greeley of NPE</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We discussed the question </span><i><span style=\"font-weight: 400;\">“How Does The Sport &amp; Physical Activity Sector Need To Adapt…?”  </span></i><span style=\"font-weight: 400;\">from each of our perspectives and we each offered our thoughts based on what we predict from the limited information we have. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With Phill facilitating we discussed; </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How has behaviour changed?</span>\n\n<span style=\"font-weight: 400;\">How does the workforce need to change in this new norm?</span>\n\n<span style=\"font-weight: 400;\">How does delivery need to change? </span>\n\n<span style=\"font-weight: 400;\">How does the message need to adapt?</span>\n\n<span style=\"font-weight: 400;\">How do our products &amp; services need to adapt?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I will share some of my thoughts later in this blog but if you are a member in the CIMSPA Stronger Together facebook page you can go an watch it - </span><a href=\"https://www.facebook.com/groups/cimspa.strongertogether/\"><span style=\"font-weight: 400;\">https://www.facebook.com/groups/cimspa.strongertogether/</span></a>\n\n&nbsp;\n<h1><b>IBA Webinar Discussion &amp; Lectures </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sunday 5th July we invited 2 guest lecturers to speak at our IBA Webinar;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Naomi McArdle MSc, CISSN, from the Platinum Training Institute, Belfast, presented an overview of ‘Exercise &amp; Mental Health: Research &amp; Practice’.  </span>\n\n<span style=\"font-weight: 400;\">Then Hunter Thomson, Health &amp; Safety Expert / Consultant, shared guidance about risk assessments, the law, PPE, government guidance and where to get the most accurate information.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Both offered great insight from their areas of expertise and again if you are an IBA member you can access the recording by hitting reply and asking or if you are not a member you can buy this 3hr webinar for £7! Also hit reply and ask!</span>\n<h1></h1>\n<h1><b>What Statistics Do We Have To Help Us Moving Forwards?</b></h1>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">According to the </span></i><a href=\"https://www.ipse.co.uk/ipse-news/news-listing/coronavirus-ipse-activity-and-advice-freelancers.html\"><i><span style=\"font-weight: 400;\">Association of Independent Professionals and the Self-Employed (IPSE)</span></i></a><i><span style=\"font-weight: 400;\">, prior to the coronavirus outbreak, self-employed people contributed £305 billion to the British economy.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sport England’s insight on the changes in attitudes/behaviours towards physical activity during lockdown should also provoke discussion and I invite you to consider your own service offering while taking these numbers into account….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Savanta ComRes (member of the British polling council) conducted this data capture over 8 x weekly ‘waves’ across 4 days (Fri-Mon)in Englan</span><span style=\"font-weight: 400;\">d</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">‘Around 20% of adults not active on any day; and around 33% active on at least 5 days.’</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">‘Other Circumstances are also correlated with </span></i><i><span style=\"font-weight: 400;\">lesser</span></i><i><span style=\"font-weight: 400;\"> rates of inactivity.’</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">These numbers below indicate the % of each group who have done 0 days of 30 mins+ physical activity (Wave 1 data - 03/04/20-11/05/20)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">24% without kids in the house v’s 12% with kids (will do 0 days of physical activity)</span>\n\n<span style=\"font-weight: 400;\">25% without outdoor space v’s 18% with outdoors space</span>\n\n<span style=\"font-weight: 400;\">28% that live alone v’s 18% live with others </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">‘28% of older people (55+) not doing 30 mins+ activity on any given day’</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Question: Can we adapt to ensure inclusivity for those in different circumstances and what does this mean for our businesses?</span>\n\n<i><span style=\"font-weight: 400;\">In wave 3: of those who viewed activity/ fitness/ exercise content.. 73% cited YouTube platform used; 19% Facebook; 19% Instagram; 9% the ‘website of my gym.’</span></i>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">60% adults walked for weekly exercise </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">18% run or jog</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">12% cycled</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">21% home activity, fitness or exercise class (not viewed)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">21% home activity, fitness or exercise class (viewed online)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">15% informal active play in the house or garden  </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">58% adults stated they now have new habits like walking, jogging, cycling. 8/10 members say they are likely to continue with gym </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally this graph shows apprehension about returning to gyms…..</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-23080\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/07/Screenshot-2020-07-06-at-11.06.38.png\" alt=\"\" width=\"788\" height=\"704\" />\n\n&nbsp;\n\n&nbsp;\n<h1><b>So How Does The Fitness Industry Need To Adapt…?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">From the information I have read, the professionals I have spoken to, the panels I have discussed this with and the information I have found on the most reliable sources, plus some common sense; here are my thoughts &amp; suggestions on how we might want to consider adapting….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are things that will affect our businesses &amp; things that </span><i><span style=\"font-weight: 400;\">may </span></i><span style=\"font-weight: 400;\">affect them, let\'s break them down so we can consider each and prepare to adapt ourselves and our businesses systematically and logically. </span>\n<h1></h1>\n<h1><b>Risk &amp; Risk Assessment </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Risk assessing has NOT changed!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is the same as it was before covid and we do it all of the time. We assess risk daily, as well as periodically when circumstances change. </span>\n\n<span style=\"font-weight: 400;\">So please do not panic! Think of it like this:</span>\n\n<span style=\"font-weight: 400;\">You assess the risk on the road before you cross it checking for cars coming</span>\n\n<span style=\"font-weight: 400;\">You assess risk in the gym environment before you use it by checking if the weights are lying around.</span>\n\n<span style=\"font-weight: 400;\">You assess risk without thinking too much about it simply to protect yourself when using scissors, a knife or an electric power tool. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The key factors to consider when risk assessing for your work environment:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Only if there are 5 or more employees is it law to have a written risk assessment. However good practise would be to have something documented for the worst case scenario and to highlight if you need tp put anything in place.</span>\n\n<span style=\"font-weight: 400;\">Health &amp; Safety Consultant, Hunter Thomson, suggests using these 3 simple questions for logic and common sense to evaluate:</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">HAZARDS? - what can you see (or not see) that could be deemed a hazard?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">SEVERITY? - what would the severity of that hazard be should it occur?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">LIKELIHOOD? - how likely is it to happen?</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are lots of templates around or you could make your own and then ask a colleague, or several, to check it over and see if they have any suggestions to add. Then repeat the process periodically to ensure its up to date.</span>\n\n&nbsp;\n<h1><b>Duty of Care</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have a duty of care to help and educate our nation in moving better and with less pain. Our role is also to empower and enable as many people as possible towards a quality of life that can begin to unburden the NHS of many modern ailments caused by poor lifestyle choices. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We MUST see our role in this way and understand, behave and attain the right skills to do this to show the nation what we are capable of as a profession. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">How do we do this?</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We MUST demand better education, not cheaper or easier to access but better quality that is of a standard comparable to our camarades in the clinical world.</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">How good is your report writing?</span></i>\n\n<i><span style=\"font-weight: 400;\">How well do you transfer meaningful information about clients between a multidisciplinary team?</span></i>\n\n<i><span style=\"font-weight: 400;\">How good is your vocabulary when speaking to the medical world?</span></i>\n\n<i><span style=\"font-weight: 400;\">How much detail do you know about what your insurance covers you for?</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should also aim to deliver our services to as many people as possible, in whatever way we can. </span>\n\n<span style=\"font-weight: 400;\">Design a system that provides an appropriate service, to the right person, at the right time, from the right professional and prioritising the clients welfare.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WAIT...there\'s more…</span>\n\n&nbsp;\n<h1><b>Service Provision </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We now have a digital world that is a commercial no brainer! </span>\n\n<span style=\"font-weight: 400;\">When we decided to become trainers or coaches we didn\'t do it for the high income and so seem to get uncomfortable when talking about money and thinking</span><i><span style=\"font-weight: 400;\"> commercially….</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">LIsten, we MUST THINK commercially or we won\'t survive and then we cannot offer our service and help people!</span>\n\n<span style=\"font-weight: 400;\">So start thinking about the commercial opportunity to HELP MORE PEOPLE rather than simply make more money, with less cost.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This shunt forward in time with technology has offered us this fantastic opportunity to get online, reduce costs AND our need to be present WITHOUT the cost of staff!.....for at least a portion of our service offering, which means we can serve even more people all around the nation and even the world!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WOW!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We must move (scuse the pun) with the times and adapt by educating ourselves and maybe watching what others do but please don\'t get left behind or you could find yourself with no business due to the competition. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Like it or not (if self employed or a director) you are in the business of business!</span>\n\n&nbsp;\n<h1><b>Behaviour Change </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is a subject we need to study further and be aware of since behaviour has changed, attitudes towards health and fitness have changed and all of this means we need to be mindful of our message and platforms we use for delivering our services. Researching modern behaviour change studies will be vital. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some gym goers are now afraid</span>\n\n<span style=\"font-weight: 400;\">Some no gym goers now want to go</span>\n\n<span style=\"font-weight: 400;\">Some sedentary people are no longer sedentary</span>\n\n<span style=\"font-weight: 400;\">Some active people are no longer active </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe you could create a questionnaire for your clients or members to better understand how they are feeling about their overall health, going out to your facility/gym or even for a walk? </span>\n\n<span style=\"font-weight: 400;\">This market research will help you to adapt to their altered patterns of behaviour or views of health and fitness. </span>\n\n<span style=\"font-weight: 400;\">PLUS the act of asking them their views/opinions lets them know how much you care and wish to accommodate them.</span>\n\n&nbsp;\n<h1><b>Mental Health Awareness </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This has got to be something we educate ourselves more on moving forwards due to the implications of covid and the sheer number of cases both diagnosed and undiagnosed, of individuals with some mental health issue or concern, and the numbers are quite possibly on the rise!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also the fact that many of our clients won\'t even share this detail with us due to the stigma still attached and yet studies show mental health, and the medications that may be prescribed, can impact on their physical performance and therefore programme design. </span>\n\n<span style=\"font-weight: 400;\">Yet studies also show clearly the benefit of being physically active for our mental health and wellbeing </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This subject is one I will be immersing myself into with the </span><b><i>Level 4 Award in Physical Activity for Adults with Mental Health Conditions</i></b>\n\n<span style=\"font-weight: 400;\">qualification through Platinum Training Institute, Queens Belfast Uni </span><span style=\"font-weight: 400;\">since they are a training provider with integrity and to encourage you to do the same.</span>\n\n&nbsp;\n<h1><b>Finally…...</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">May I suggest that, if you haven\'t already, you set aside some time to consider the points raised in this blog and questions like these below…...</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel equipped with an awareness of your client’s vulnerability? </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel attitudes towards health have changed? </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you need to alter your hygiene/ cleaning protocols?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Are you expecting costs to your business to increase or decrease?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Have you discovered a new work / life balance?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you / could you have more options/packages/value add’s with a digital service?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Has your income decreased per session due to distancing regulations? </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel you need extra training in risk?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How important do you feel the exercise professionals role is now more important or less so?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Have you considered the thought we may have simply been nudged forward 10-15yrs technically?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How will you reach more people? </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How do you feel about your duty of care to help the nation?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Would you be happily, &amp; publicly, transparent about your qualifications?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel that the education standards &amp; quality in our industry are adequate for the demand today?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel you would benefit from education into how the virus spreads?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you think digital fitness is here to stay?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you think the 400% increase in home gym equipment sales could be detrimental to gyms?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you feel you are good at embracing change?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How do you measure the health &amp; safety of your business?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Has your insurance changed? Does it need to? How would you know?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you plan to add technology into your programming?</span></li>\n</ul>\n<span style=\"font-weight: 400;\">Please do hit reply if you wish to share or discuss your fears, frustrations, ideas and thoughts - let\'s do this together!</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">References;</span></h3>\n<a href=\"https://www.platinumtraininginstitute.com/Personal-Trainer-Course/level-4-award-in-physical-activity-for-adults-with-mental-health-conditions/\"><span style=\"font-weight: 400;\">https://www.platinumtraininginstitute.com/Personal-Trainer-Course/level-4-award-in-physical-activity-for-adults-with-mental-health-conditions/</span></a><span style=\"font-weight: 400;\"> </span>\n\n<a href=\"https://www.cimspa.co.uk/\"><span style=\"font-weight: 400;\">https://www.cimspa.co.uk/</span></a>\n\n<a href=\"https://www.sportengland.org/\"><span style=\"font-weight: 400;\">https://www.sportengland.org/</span></a>\n\n<a href=\"https://www.wellnessliving.com/blog/covid-19-changing-fitness-industry-forever/\"><span style=\"font-weight: 400;\">https://www.wellnessliving.com/blog/covid-19-changing-fitness-industry-forever/</span></a>\n\n<a href=\"https://www.thetrainingroom.com/blog/fitness/may-2013/changes-in-the-fitness-industry\"><span style=\"font-weight: 400;\">https://www.thetrainingroom.com/blog/fitness/may-2013/changes-in-the-fitness-industry</span></a>\n\n<a href=\"https://www.adammendler.com/blog/gymguyz-ceo-josh-york\"><span style=\"font-weight: 400;\">https://www.adammendler.com/blog/gymguyz-ceo-josh-york</span></a>\n\n<a href=\"https://www.glofox.com/blog/fitness-technology-is-transforming-the-industry/\"><span style=\"font-weight: 400;\">https://www.glofox.com/blog/fitness-technology-is-transforming-the-industry/</span></a>\n\n<a href=\"https://www.welltodoglobal.com/how-the-fitness-industry-is-rising-to-the-covid-19-challenge/\"><span style=\"font-weight: 400;\">https://www.welltodoglobal.com/how-the-fitness-industry-is-rising-to-the-covid-19-challenge/</span></a>\n\n<a href=\"https://frntofficesport.com/fitness-industry-digital-changes/\"><span style=\"font-weight: 400;\">https://frntofficesport.com/fitness-industry-digital-changes/</span></a>\n\n<a href=\"https://www.precor.com/en-us/resources/how-clubs-can-survive-in-a-changing-industry\"><span style=\"font-weight: 400;\">https://www.precor.com/en-us/resources/how-clubs-can-survive-in-a-changing-industry</span></a>\n\n&nbsp;\n\nYour feedback is invaluable to our offering, why not share it with us by leaving comments and feed back about how covid has affected your business and what you feel we can do to help?\n\nor\n\nemail info@biomechanicseducation.com\n\n&nbsp;','How Does The Fitness Industry Need To Adapt…?','','inherit','closed','closed','','23077-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',23077,'https://biomechanicseducation.com/?p=38664',0,'revision','',0),(38665,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">Right now we are all feeling challenged by the limitations we are faced with trying to help our clients in achieving their goals.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More and more clients are ‘virtually’ begging for help due to their achy back, sore shoulders, painful knees and weight gain!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet we have been stopped from using gyms, we are forced to work online (unless we can find an open space) wash equipment between every client and keep them a good distance apart….all very annoying, right?!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Are there other ways to help them or at least to consider? </span>\n\n<span style=\"font-weight: 400;\">What more could we do or offer?</span>\n\n<span style=\"font-weight: 400;\">What is going to happen in the future???</span>\n\n&nbsp;\n<h2><b>Is The Personal Trainer’s Role Becoming More Complex?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ultimately our role is to </span><span style=\"font-weight: 400;\">restore our clients movement quality to a more natural state thus enabling them to feel stronger, fitter, faster, lose excess body fat and gain confidence.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sadly lockdown has limited our options but not the ability to educate, demonstrate and offer solutions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Exercise professional’s roles are becoming more and more demanding, seemingly more complex and yet more and more limited, which can feel very frustrating.</span>\n\n&nbsp;\n<h2><b>Biomechanical Causes Of Modern Ailments </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When everything seems to be getting out of hand I find that simplifying things helps calm the crazy going on around us. So when ‘exercise’ seems almost impossible without a gym or appropriate equipment, why not shift our thinking towards NOT ‘exercising’ instead?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I mean is when you think about it ‘exercise’ is actually often a replacement for lost movement capacity or a reduction in the required time spent being dynamic to remain physically healthy…...</span>\n\n&nbsp;\n\n<b><i>Definition</i></b><i><span style=\"font-weight: 400;\">. </span></i><b><i>Exercise</i></b><i><span style=\"font-weight: 400;\">; activity requiring physical effort, carried out to sustain or improve health and fitness.</span></i>\n\n&nbsp;\n\n<b><i>Exercise</i></b><i><span style=\"font-weight: 400;\"> is </span></i><b><i>physical activity</i></b><i><span style=\"font-weight: 400;\"> that is planned, structured, and repetitive for the purpose of conditioning any part of the body. </span></i><b><i>Exercise</i></b><i><span style=\"font-weight: 400;\"> is used to improve health, maintain fitness and is important as a </span></i><b><i>means</i></b><i><span style=\"font-weight: 400;\"> of physical rehabilitation.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet when we l</span><span style=\"font-weight: 400;\">ook at the <a href=\"https://www.who.int/dietphysicalactivity/factsheet_adults/en/\" target=\"_blank\" rel=\"noopener noreferrer\">guidelines for movement health from the W.H.O….</a></span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Adults aged 18–64 should do at least 150 minutes of moderate-intensity aerobic physical activity throughout the week or do at least 75 minutes of vigorous-intensity aerobic physical activity throughout the week or an equivalent combination of moderate- and vigorous-intensity activity.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic activity should be performed in bouts of at least 10 minutes duration.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">For additional health benefits, adults should increase their moderate-intensity aerobic physical activity to 300 minutes per week, or engage in 150 minutes of vigorous-intensity aerobic physical activity per week, or an equivalent combination of moderate- and vigorous-intensity activity.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Muscle-strengthening activities should be done involving major muscle groups on 2 or more days a week.</span></li>\n</ul>\n<span style=\"font-weight: 400;\">….there is no mention of ‘exercise’ or reps or sets.  </span>\n\n<span style=\"font-weight: 400;\">How does this translate into options? Nothing stating weight lifting, lunges, bicep curls, 15 reps x 5 sets, 30 second recovery\'s etc etc</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So when you think about the options for achieving “....</span><i><span style=\"font-weight: 400;\">150 minutes of moderate-intensity aerobic physical activity throughout the week…” </span></i><span style=\"font-weight: 400;\">that leaves a huge amount of room for interpretation. As does “....</span><i><span style=\"font-weight: 400;\">Muscle-strengthening activities should be done involving major muscle groups on 2 or more days a week</span></i><span style=\"font-weight: 400;\">…”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cleaning and gardening can fit in here, painting &amp; decorating, moving furniture, playing with kids in the garden, litter picking, hiking, chopping wood, dog walking, activities that can improve the home or environment or even living conditions! Climbing trees, hanging from branches and carrying things up and down stairs. Rearranging things, digging holes, cleaning windows...some of this stuff could even save our client’s money!</span>\n\n&nbsp;\n<h2><b>So What?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we focus on what we can achieve with our clients through whatever medium we have available, get creative with our programming and educate our clients on long term health models, are we not likely to have more success long term? Of course we all know this from lockdown.</span>\n\n<span style=\"font-weight: 400;\">By using their homes as their gym, creating easy to use household items as tools and bodyweight sessions will have replaced the use of gym equipment for many of you already I am quite sure.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But is it enough? Are our clients now at a higher risk since we are so limited? What more can we do?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Movement improvement techniques do not only improve movement, they reduce risk as well as low grade modern ailments caused by poor biomechanics. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While clients are unable to use the gym our job is to show them how to take advantage of every opportunity to avoid movement degradation while improving movement quality.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Of course the gym is a great place for sculpting and strengthening and having access to lots of equipment for variety with BUT surely we can take advantage of right now?</span>\n\n&nbsp;\n<h2><b>BOTH Exercise &amp; Natural Movement Then?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes there is room for both!</span>\n\n<span style=\"font-weight: 400;\">And here we have a solution for those of you with tricky clients who are complaining of those modern ailments, back ache, sore shoulders and knee pain. </span>\n\n<span style=\"font-weight: 400;\">In the words of Katy Bowman…”</span><i><span style=\"font-weight: 400;\">Natural movement solves a myriad of issues”</span></i><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">iMoveFreely returns our intrinsic biomechanics to a more natural state, it has proven over and over for decades to restore natural movement thus reducing modern ailments caused by biomechanical issues. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Movement improvement programmes like iMoveFreely don\'t replace medical interventions and shouldnt be used as such. Yet they DO what they suggest if we consider the whole body.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">iMoveFreely cardio</span>\n\n<span style=\"font-weight: 400;\">iMoveFreely strength</span>\n\n<span style=\"font-weight: 400;\">iMoveFreely pilates </span>\n\n<span style=\"font-weight: 400;\">iMoveFreely yoga</span>\n\n<span style=\"font-weight: 400;\">iMoveFreely at your desk</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Make them your own style or blend them into circuits or design an iMoveFreely clinic where you educate clients on how to utilise the techniques during long periods of sitting working at home.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Learn online AND face to face how to instruct an iMoveFreely session.</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor-online-virtual-workshop/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>iMoveFreely Instructor Online CPD Training</b></a></h1>\n<h1><b>or </b></h1>\n<h1><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Get the Lockdown CPD Bundle </b></a></h1>','Should We Encourage Clients To Exercise Less?','','inherit','closed','closed','','22901-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',22901,'https://biomechanicseducation.com/?p=38665',0,'revision','',0),(38666,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h1><b>PICK ME!</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all seek approval and yet what does it matter what other people think?</span>\n\n<span style=\"font-weight: 400;\">For some reason we have the desire to fit in and be accepted by those around us. If you watch programmes that involve singing or dancing competitions on TV it’s ALL about acceptance and being chosen.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does this differ when we are seeking approval of new clients?</span>\n\n<span style=\"font-weight: 400;\">Are we not simply in competition with others to be picked?</span>\n\n<span style=\"font-weight: 400;\">Pick me!</span>\n\n<span style=\"font-weight: 400;\">Pick me!</span>\n\n<i><span style=\"font-weight: 400;\">Why pick me?</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is like a continuous cycle of wanting to be chosen!</span>\n\n&nbsp;\n<h1><b>Does The Best Singer Always Get Picked? </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does the best PT get all the clients?</span>\n\n<span style=\"font-weight: 400;\">How do you demonstrate that you are ‘the one’?</span>\n\n<span style=\"font-weight: 400;\">How do you stand out from the crowd?</span>\n\n<span style=\"font-weight: 400;\">How will you become the chosen one?</span>\n\n<span style=\"font-weight: 400;\">WHY would they PICK YOU?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">No, you know as well as I do, that the best singer doesn\'t necessarily get picked, but the ones who do will most likely catch your heartstrings because they tell you their story. They are open and honest about who they are and what they want to achieve.  </span>\n\n<span style=\"font-weight: 400;\">As a trainer or coach you may notice we can become more ‘popular’ when we share our story. Clients feel that they know us, this enables them to connect with us which is vital if we want to attract new clients and gain trust.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ask yourself what makes YOU pick someone when it comes to choosing your singing competition winner, or more to the point, how do you pick someone when you’re investing in services?</span>\n\n<span style=\"font-weight: 400;\">Consider that really hard for a moment…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you simply pick the cheapest? </span>\n\n<span style=\"font-weight: 400;\">Do you pick the easiest to access? </span>\n\n<span style=\"font-weight: 400;\">Do you pick the one with certain certificates? </span>\n\n<span style=\"font-weight: 400;\">How do you KNOW who is the ‘best’ if you have never experienced what they offer?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How can we enable a client to experience us, our service or something that means they feel they trust us enough to invest in our time?</span>\n\n&nbsp;\n<h1><b>How Do You Get Picked Amongst The Competition?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Use Your Story &amp; Your Client\'s Story!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First share YOUR story about why you became a PT, what it means to you to help people and how you intend to do that. Hit an emotional spot, be true to yourself and they will see that and most importantly feel it. Speak from your heart and let them know you care. Speak to the camera like you are talking directly to the person you see as your perfect client. </span>\n\n<span style=\"font-weight: 400;\">Talk to an individual but know you are speaking to many. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Second, invite your happy present clients to share with you what they enjoy most about your sessions and offer them a free session if they do it on camera!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Its so simple and remember people buy on emotion far more than they buy for necessity.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Think about this next time you experience great service…..</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><strong>Click here and PICK ME!!</strong></a></h1>\n&nbsp;','PICK ME! - Seeking Approval','','inherit','closed','closed','','22758-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',22758,'https://biomechanicseducation.com/?p=38666',0,'revision','',0),(38667,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">It is the question on everyone\'s lips, so let\'s explore it….</span>\n\n&nbsp;\n<h1><b>What Has Changed?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">One way of looking at this is that we have been shunted forwards 10-15 years when it comes to technology in our industry.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Those (like me) who have always been adamant about the face to face aspect of our work have had to adapt very quickly to survive the effects of the virus and being forced into a lockdown. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have had to find ways to communicate online to stay in touch and offer our help while everyone has had both limited access to or no access to resources in gyms or facilities. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have had to get creative with bodyweight, household items, engagement tactics and communication skills. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have been encouraged to find lower cost solutions for those less financially able to afford our services either just now or always have.</span>\n\n<span style=\"font-weight: 400;\">All of this also under the cloud of fear about the risk of losing our vulnerable loved ones.</span>\n\n&nbsp;\n<h1><b>What Has Happened As A Result?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have become more technically savvy maybe, I certainly have!</span>\n\n<span style=\"font-weight: 400;\">Our confidence dropped and then rose again as we discovered solutions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We realised (having underestimated) how much we COULD do online AND how much clients could enjoy it!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We discovered new commercial pathways to reach even more people, maybe even your old school buddy who now lives 300 miles away…! </span>\n\n<span style=\"font-weight: 400;\">How cool is that!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We also realised maybe how little we could spend by stripping back our costs out of necessity. I am sure many of us have noticed how much we might have been spending on things we probably didn\'t really need…!?</span>\n\n&nbsp;\n<h1><b>What Does This All Mean?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well if I am honest, we all feel a certain degree of anxiety simply due to these unprecedented circumstances and the unknown. Yet I also feel there are positive things we could take from this whole experience, long term. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having done a small poll on social media to ask what people did NOT miss during lockdown, I learned it has been a break for those who were stuck in that groundhog day, rushing around with no time to think, frustrated by not quite getting everything done, working long hours and feeling stuck in the slog. I also asked in my poll what people did miss and almost unanimously they stated physical contact, hugs and human contact.</span>\n\n&nbsp;\n<h1><b>What Does The Future Look Like For The Fitness Industry?</b></h1>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Online training is here to stay &amp; so the quality will improve dramatically</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Teaching PT’s how to deliver an online service will become apart of qualifications </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Online training will expose weak players</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Group training will overtake 1:1 for the face to face aspect of exercise for cost effectiveness </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Training clients all over the world will be commonplace</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">While we have been discussing the effects of Covid-19 on our future, I also want to mention here my previous blogs about CIMSPA’s Chartered status and how they are both moulding the future of our industry. </span>\n\n<span style=\"font-weight: 400;\">So further predictions with this in mind…...</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Displaying your insurance &amp; qualification certificates will become a requirement </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Clients will want to know you have Chartered Status</span></li>\n</ul>\n&nbsp;\n<h1><b>What Should We Do? Expect?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This really comes down to us, each of us individually and collectively.</span>\n\n<span style=\"font-weight: 400;\">If we listen, learn and invest into a carefully thought out future business plan that has all of the old traits blended with our plethora of new traits - surely that can only mean one thing?</span>\n\n<span style=\"font-weight: 400;\">We will bounce back!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The UK (and everywhere) has been conditioned for the last 3 months to think about their physical health, to invest wisely into it, to take care of their mental health, to support each other….WE are the movement and exercise experts. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WE are the ones who have sustained whatever we could offer and some are now able to offer more services than ever before, with lower costs, at lower prices!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is our voices that have been heard when we demanded more standards, better education, more skills, better recognition and look at us now!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone wants to access our services and there is plenty of room for everyone too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Together we have the skills, the ability and the resilience to provide what the government has encouraged the entire nation to stick to above anything else over the lockdown - movement and exercise.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With the emergence of fabulous applications like <a href=\"https://herspirit.co.uk/\" target=\"_blank\" rel=\"noopener noreferrer\">HERSPIRT</a>, the rapid growth of <a href=\"https://www.cimspa.co.uk/\" target=\"_blank\" rel=\"noopener noreferrer\">CIMSPA</a> who have absorbed REPS membership and education companies doing all they can to offer you online education programmes in an endeavour to support you while you have the time to study during lockdown….we are still adapting and growing in a fluid economy that is unable to predict anything. </span>\n\n&nbsp;\n<h1><b>Can We Predict What The Future?</b></h1>\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Sure why not?</span>\n\n<span style=\"font-weight: 400;\">We can schedule time for positive action…... right now! Go on, do it! Find your diary….we will wait!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok now you\'re back, we can book CPD’s and courses to improve our knowledge and skills while we can and while its cheaper! Yes add this to your diary now….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can hone and practise our ability to deliver movement programmes online - with a view to this complimenting our face to face services. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we ALL do ALL of the above sure we can predict a bright future for our wonderful industry?!!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PLEASE don\'t get left behind...reach out if you need some help!</span>\n\n&nbsp;\n<h1><b>What Can WE Do To Help YOU?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We would like to hear from you about your biggest struggles, your ideas and thoughts for the future and ways in which you feel Biomechanics Education might be able to help…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One thing you have been asking of us has been online education and so we have done this and created an entire portfolio including the amazingly popular LOCKDOWN BUNDLE </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You also asked for cheaper monthly payments for the <a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Biomechanics Coach Diploma</a> payment plan so here it is:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have a brand new structure and payment plan for our <a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Biomechanics Coach Diploma</a> that should enable anyone who has been considering attending for some time to start immediately!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We DO NOT want to make anyone financially uncomfortable but we DO want to help!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our brand new £100pm plan gives you ALL you need to up skill, in your own time, with blended learning resources and both online and face to face workshops that are all CIMSPA &amp; STA accredited.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We want to help as so many of you are wanting to access this course so we have created a plan that we hope will help at this current time!</span>\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">LOOK &amp; BOOK HERE - Diploma in Biomechanics Coaching</span></a></h1>\n&nbsp;','What Does The Future Look Like For The Fitness Industry?','','inherit','closed','closed','','22617-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',22617,'https://biomechanicseducation.com/?p=38667',0,'revision','',0),(38668,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h1><b>A Look Into Sports Therapy Training &amp; What It Means For The Therapist!</b></h1>\n&nbsp;\n\n<b>SPORTS THERAPISTS</b>\n\n<b>MANUAL THERAPISTS</b>\n\n<b>We want to help….</b>\n\n&nbsp;\n<h2><b>Doing Research &amp; Gathering Quality Information</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Last week we covered personal trainers and exercise professionals remit, this week will endeavour to cover sports therapists and sports massage therapists, who are another demographic we serve with biomechanics education.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I have discovered is that even within the last 10 years, what sports therapists are taught on courses has changed so much that previously a level taught could “treat” injuries, but now they can’t! Let’s take a deeper look and see what\'s going on….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whenever doing research we should ALWAYS check we are gathering information from reliable resources. To gather the best information for you I have spoken to both a Sports Therapy (ST) degree level lecturer with an Osteopathy degree (along with PT &amp; S&amp;C), a Chartered physiotherapist AND the founder of Sports Therapy Association (STA) who is an ST and heavily involved in the education system with QTLS letters after his name, as I do. This extensive group of practitioners backgrounds of education, experience and expertise are collectively what I would class as a highly respectful amount of professional opinion, knowledge and expertise. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is what we discussed:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sports Therapy (ST) is NOT a regulated profession. While you can experience a good level of training on a degree, pretty much anyone with any amount of manual therapy training can call themselves a sports therapist - even after a one day course!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Even at degree level a Sports Therapist (ST) won’t be able to officially ‘diagnose’ sports injuries. <a href=\"https://society-of-sports-therapists.org/wp-content/uploads/2018/11/Standards-of-Proficiency.pdf#page7\" target=\"_blank\" rel=\"noopener noreferrer\">Degree level ST will likely become a member of the Society of Sports Therapists or SST and these are the list of proficiencies for the remit of their members  CLICK HERE FOR LIST</a></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We MUST be very careful about the wording we use and understand for our remit and skills as they may be misinterpreted or misunderstood which could take you, the practitioner, outside of your remit. It is YOUR responsibility to research YOUR professional language, vocabulary and skills as covered by YOUR insurer. Also to then discuss with your insurer any detail you may wish to clarify ie can I offer my service online? Does anything change by doing this?</span>\n\n&nbsp;\n<h1><b>Diagnosis or Diagnosing; By Clinicians ONLY </b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">SST describes a degree level ST learner as having the ability to </span><i><span style=\"font-weight: 400;\">clinically </span></i><span style=\"font-weight: 400;\">hypothesise but would still have to refer for a </span><i><span style=\"font-weight: 400;\">diagnosis</span></i><span style=\"font-weight: 400;\">. Also, if the problem their client had was non-sports therapy related then the ST wouldn’t have had the necessary training to assess that and therefore wouldn’t know the things to look out for or the questions to ask.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When learning on any sports therapy degree programme it should be made very clear that this level of training </span><i><span style=\"font-weight: 400;\">cannot officially diagnose.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In Osteopathy standards of practise it is quite clear - <a href=\"https://www.osteopathy.org.uk/news-and-resources/document-library/osteopathic-practice-standards/updated-osteopathic-practice-standards/updated-ops-01092018.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">HERE A4 7; A6 2.3, C1 1.3,1.4</a></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also in physiotherapy practise - <a href=\"https://www.hcpc-uk.org/globalassets/resources/standards/standards-of-proficiency---physiotherapists.pdf\" target=\"_blank\" rel=\"noopener noreferrer\">HERE 14.8</a></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are unsure we recommend you talk to a membership organisation to ask for clarification. Alternatively talk to Gary Benson via the STA, who is extremely proactive in communicating the remit of every level of ‘sports therapist’ from a short workshop right up to degree level. He is also the founder of the STA, which is a not for profit organisation that supports ALL sports therapists and bodyworkers in a huge variety of ways.</span>\n\n&nbsp;\n<h1><b>Who Are Classed as Clinicians or Allied Health Professionals?</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The </span><a href=\"http://www.hcpc-uk.org/\"><b>Health and Care Professions Council</b></a><span style=\"font-weight: 400;\"> are an organisation which regulates health, psychological and care professionals in the United Kingdom. They set standards, hold a register, quality assure education and investigate complaints. They regulate:</span>\n<table>\n<tbody>\n<tr>\n<td>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Arts therapists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Biomedical scientists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Chiropodists/Podiatrists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Clinical scientists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Dieticians</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Hearing aid dispensers</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Occupational therapists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Operating department practitioners</span></li>\n</ul>\n</td>\n<td>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Orthoptists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Paramedics</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Physiotherapists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Practitioner psychologists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Prosthetists/Orthotists</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Radiographers</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Speech and language therapists.</span></li>\n</ul>\n</td>\n</tr>\n</tbody>\n</table>\n&nbsp;\n<h1><b>How Level 3 Sports Massage Has Changed From Pre 2009-Now</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Gary explains here to try and offer some level of clarity in terms of the evolution of the education of ‘sports therapists’ at each level…</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Level 3 Sports Massage qualification issued before 2009, included remedial techniques and insurable for “treating” injuries</span></i>\n\n<i><span style=\"font-weight: 400;\">Level 3 Sports Massage qualification issued between 2009 and 2014 MAY have included remedial techniques and MAY be insurable for “treating” injuries</span></i>\n\n<i><span style=\"font-weight: 400;\">Level 3 Sports Massage qualification issued 2015 - present does not include remedial techniques and is not insurable to “treat” injuries and does not contain prerequisite criteria to access Dry Needling or other invasive treatment courses.</span></i>\n\n<i><span style=\"font-weight: 400;\">Level 3 Sports Massage is aligned to 1 or 2 National Occupational competencies </span></i>\n\n<i><span style=\"font-weight: 400;\">Level 4 Sports Massage qualifications, since launched are insurable to ‘treat” injuries</span></i>\n\n<i><span style=\"font-weight: 400;\">Level 4 Sports Massage is aligned to 2 or 3 National Occupational competencies </span></i>\n\n<i><span style=\"font-weight: 400;\">Level 5 Sports Massage as Level 4 above</span></i>\n\n<i><span style=\"font-weight: 400;\">Level 5 Sports Massage is aligned to 3 or 4 National Occupational competencies </span></i>\n\n&nbsp;\n<h1><b>Research Education Providers With Integrity</b></h1>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Private training providers use numerical descriptors for courses that MAY not align with  QCF/RQF qualification levels and are for marketing purposes only.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Sports Therapy is aligned to 14 National Occupational competencies but still not able to diagnose as this is the preserve of Allied Health Professionals or Regulated Professions as mentioned above (Osteopathy, Physiotherapy etc)</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">There are variations in Sports Therapy qualifications across FdSc, BSc and Diploma courses, the latter do not appear on any qualification framework.</span></i>\n\n&nbsp;\n<h1><b>It’s Your Responsibility...</b></h1>\n<span style=\"font-weight: 400;\">If you want to keep up with the direction these industries are going in (even more so since lockdown) then check your education provider for their evidence of quality, speak to different insurance brokers about your training and the relevant cover (it\'s your responsibility to make sure you\'re covered) and stay on top of the very latest information through your accrediting bodies like CIMSPA.</span>\n\n<span style=\"font-weight: 400;\">Things change, as you can see from what Gary shared above, and sometimes without warning as lockdown has proven, so committing to good quality education, regular CPD’s, appropriate insurance cover and then </span><i><span style=\"font-weight: 400;\">PRACTICING WITHIN YOUR REMIT</span></i><span style=\"font-weight: 400;\"> protects everyone while </span><i><span style=\"font-weight: 400;\">INCREASING CONFIDENCE </span></i><span style=\"font-weight: 400;\">both in ourselves AND in how we are perceived as an industry. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We give all of this support and guidance to our Biomechanics Coaches via the Intrinsic Biomechanics Association &amp; with the support of the Sports Therapy Association.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Challenge the system!</span>\n\n&nbsp;\n<h1><b>Building Your Referral Network</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are in the process of trialling a brand new online </span><b><i>Clinical Clearance Consultation System</i></b><span style=\"font-weight: 400;\"> that can speed up the process for PT’s &amp; ST’s in gaining clinical input, with meaningful transfer of information as guided by the government for consistent duty of care throughout the entire process.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More information coming soon!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">During lockdown, here at Biomechanics Education, we have been working hard to support as many professionals as possible to help the nation keep moving well and more freely. </span>\n\n<span style=\"font-weight: 400;\">We view our role as vital in contributing to the health and wellness of everyone as much as possible. We can help more people through joining forces and sharing information we have with you about movement improvement techniques that can be taught, learned, delivered and received both online and in person.  </span>\n\n<span style=\"font-weight: 400;\">So to enable you to sustain your ongoing professional development and service delivery while finances are tight we have come up with what we think is an unbelievable investment.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We know the current situation sucks but there is light at the end of the tunnel now. </span>\n\n<span style=\"font-weight: 400;\">And if you would like to add new skill’s to your locker then this is for you….</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Would YOU Like To Access Our Lockdown Bundle?</b></a></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are doing all we can to support and help YOU all during the period of lockdown. So not only did we create a </span><b>Lockdown Bundle</b><span style=\"font-weight: 400;\"> we have also created a plan that means you pay </span><b>ONLY £397</b><span style=\"font-weight: 400;\"> to access:</span>\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">The Lockdown Bundle;</span></a></h1>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pelvic &amp; Spine Biomechanics Online Assessment &amp; Exercise Skills</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">iMoveFreely Instructor Online Training</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Introduction to Running Biomechanics</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Fundamental principles of movement analysis online course</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">5 Steps to a successful online presence webinar </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">1:1 phone consultation with Rachel France </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Feedback and support during lockdown</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">CIMSPA Membership for 1 year</span></li>\n</ul>\n<h1><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">VIEW THE LOCKDOWN BUNDLE BY CLICKING HERE </a></h1>','Sports Therapists… Are You Actually Qualified To “Treat” Injuries?','','inherit','closed','closed','','22301-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',22301,'https://biomechanicseducation.com/?p=38668',0,'revision','',0),(38669,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h2>Do You, As A Personal Trainer, Know Your Remit &amp; Do You Practice It?</h2>\nI am excited about how the industry is going to be raising standards and we need to know what it means for each of us and what we need to do!\n<h3><b>What If Your Potential Clients Actually Asked This…</b></h3>\n<span style=\"font-weight: 400;\">Let me ask you a question….imagine a brand new client of yours and they said to you </span><i><span style=\"font-weight: 400;\">“please can I see all of your certificates, accreditation and insurance papers…?” </span></i><span style=\"font-weight: 400;\">Go on be honest, take a moment and then tell me, how would that make you feel?</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Relieved you got what you needed in place?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Annoyed that they don’t trust you?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Confident they wouldn’t understand it or challenge it?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Shocked because you have never been asked before!?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Super happy that finally you get to show someone all of those certificates you have been collecting over the years?</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok let me now ask you another question….why do you do it? </span>\n\n<span style=\"font-weight: 400;\">Why get insured? </span>\n\n<span style=\"font-weight: 400;\">Why gain CPD? </span>\n\n<span style=\"font-weight: 400;\">Why take more qualifications? </span>\n\n<span style=\"font-weight: 400;\">Why gain accreditations?? </span>\n\n<span style=\"font-weight: 400;\">Why…...if no client checks them?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another question to consider, as you gain new skills is…..Is Your insurance policy still valid?</span>\n\n<span style=\"font-weight: 400;\">How Would You Know?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe you are of the mind that </span><i><span style=\"font-weight: 400;\">“a claim?......it will never happen to me” or “...I am sure it will be fine…”</span></i>\n\n&nbsp;\n<h2><b>Physical Activity (Health &amp; Fitness) Industry Standards </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well you may be in for a surprise if you haven\'t heard yet, since the industry is moving towards CIMSPA chartered status </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you haven\'t yet heard about CIMSPA - Chartered Institute for the Management of Sport &amp; Physical Activity here they are:  <a href=\"https://www.cimspa.co.uk/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.cimspa.co.uk/</a></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally!!!.....Our industry is being moved confidently, transparently and positively towards a safer, improved set of standards and overall better quality of practice in the fields of movement, sports, participation and exercise. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Led superbly by the CEO, Tara Dillon, her team are tirelessly working to drive the standards up towards a recognition that somewhat equals (in recognition) that of ‘Allied Professionals’ like Osteopaths, physiotherapists etc as a registered body of practitioners through a brand new status;</span>\n\n&nbsp;\n\n<b><i>Chartered status</i></b><i><span style=\"font-weight: 400;\"> is awarded to those who have shown real excellence, innovation and quality within their field. </span></i><b><i>CIMSPA chartered status</i></b><i><span style=\"font-weight: 400;\"> acts as a hallmark of an experienced and qualified professional, allowing everybody within your professional sphere to see and acknowledge your achievements. </span></i>\n\n&nbsp;\n<h2><b>What Does This Mean For The Future?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is my prediction (and hope) that there will come a time when those movement practitioners that DO NOT have a chartered status will just not be seen in the same light or respected as much as those with chartered status. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More and more the UK is being told by the government to move well, move more, exercise regularly and consider the health of our bodies and minds. Even through this lockdown there is a constant reminder to go for a walk. Many are not ‘prepared’ for movement, some are scared of movement and so many are uncomfortable during movement to the point where they need help.</span>\n\n&nbsp;\n<h3><b>Help With Exercise Is Our Job!!</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet WE, the movement/exercise professional, are (seemingly and up to now) the least recognised, least ‘qualified’, least regulated and we have a stigma attached to our level of knowledge that I believe stunts both our self belief in what we are capable of but also elevates and inflates our expectation of what a clinician knows about exercise. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The CIMSPA chartered status is only for those who go the extra mile and want to gain recognition of that, in terms of being seen as delivering expertise, quality and of course, a high level of duty of care. It is for those who take pride in their role and want to make the effort it will take to gain that status.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Under the current online boom in offering movement advice and services we are all being forced (I HOPE!) towards checking and amending our insurances. Those who were not up to date are now being exposed to maybe a demand to advertise their qualifications and insurance cover moving forwards, since the whole world can pretty much see what we are all doing, right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">GOOD! This is a great thing!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We want a reason to pay for all those CPD’s, insurances and memberships surely!? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We want to proudly display our practitioner status to all and sundry without concern of being outside of our remit - don’t we!? We want to understand exactly our remit and remain with our boundaries to have confidence in who and what we are covered to deal with. </span>\n\n<span style=\"font-weight: 400;\">It is my belief many do NOT feel this way right now, many come to me unsure or actually misunderstanding the types of clients ‘issues’ they are qualified and insured to deal with.</span>\n\n&nbsp;\n<h2><b>We Want To Help! So We Will Pay For Your CIMPSA Membership For A Year When...</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We feel SOOOOOOO strongly about the work CIMSPA is doing that we want to offer you a gift of 1yr FREE CIMSPA membership to everyone who purchases </span><i><span style=\"font-weight: 400;\">The Lockdown Mega Bundle</span></i><span style=\"font-weight: 400;\"> that we have created specifically to support you through this period of change.</span>\n\n&nbsp;\n<h3><b>What Is The Lockdown Mega Bundle? </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This HUGE bundle of 8 educational resources, membership and content has been put together and designed specifically to assist any trainer or coach who is looking to put their service online OR improve the scope of their already online service. If YOU are looking for solutions THIS IS IT!</span>\n\n<span style=\"font-weight: 400;\">In fact, this is literally a gift...especially if you have been thinking about doing our Diploma in Biomechanics Coaching as a step forward with ⅖ of the credit you need to gain towards your Diploma…..and ultimately CIMSPA Chartered status!</span>\n\n<span style=\"font-weight: 400;\">Check this out….</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pelvic &amp; Spine Biomechanics Online Assessment &amp; Exercise Skills £357 (⅖ credit towards Diploma)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">iMoveFreely Instructor Online Training £94 (online service no brainer!)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Introduction to Running Biomechanics £87 (perfect during lockdown)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Fundamental principles of movement analysis online course £27 (theory of intrinsic &amp; extrinsic biomechanics)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">5 Steps to a successful online presence webinar (from a tonne of research about what to do in your business during lockdown)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">1:1 phone consultation with Rachel France to get started and put this into action £120 (allow Rachel to support your journey personally)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Feedback and support during lockdown £100 (As always!)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">12 months CIMSPA membership £30 (WOW! This really is a special gift)</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Value £815)</span>\n\n<strong>Your investment ONLY £397</strong>\n<h3><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/\">Click here to grab your bundle now!</a></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">ONLY AVAILABLE DURING LOCKDOWN</span>\n\n<span style=\"font-weight: 400;\">We are also offering the full Diploma in Biomechanics Coaching (which includes all of the above plus the final 3 credits/modules) for just £100 per month to those who sign up during lockdown.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR </span>\n\n&nbsp;\n\n<a href=\"https://calendly.com/biomechanicsrach/introcall\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">If you have more questions, just book a call with me, just click here!</span></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Next week we will talk about sports therapists and manual therapists and how this affects them too.</span>','How The Personal Training Industry Is (Finally) Raising Standards','','inherit','closed','closed','','22127-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',22127,'https://biomechanicseducation.com/?p=38669',0,'revision','',0),(38670,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','If you have never heard of a MET or have always wondered what they are and why or when you might use them, then this is for you!\n<h2>What Does MET Stand For?</h2>\nChances are you have heard this code name or acronym for a technique known as a ‘Muscle Energy Technique’, however would you know when to use them or how to apply them? Maybe you thought there was only one method? Or maybe you aren\'t sure when to use them?\nThis Juicemail has been written to explain the benefits, the safest &amp; simplest MET method and when and how to programme it into a clients programme.\n\n&nbsp;\n<h2>What Is A MET?</h2>\nAn MET is a contraction of the muscle with origin &amp; insertion getting closer together statically or isometrically thus creating energy within the muscle. So opposite to stretching BUT often a ‘kinder’ way to improve muscle function AND far more effective at this shown by some research.\n\nStretching is most commonly taught during our basic training and therefore can often be interpreted as range of motion being the most important thing we should aim for with a client. However, that may not be technically quite accurate for many of our clients.\n\nRange of motion isn’t necessarily the most important goal for good quality movement, particularly for those super mobile body types. Yet optimising muscle function is a priority for everyone in terms of risk reduction &amp; improving performance.\n\nThis is where a MET trumps methods like stretching, which by comparison could be deemed relatively aggressive, in some cases uncomfortable and often ineffective long term.\n\n&nbsp;\n<h2>Methods For Applying MET’s</h2>\nThere are various methods to applying an MET &amp; one of the most commonly taught is PNF or Proprioceptive Neuromuscular Facilitation. While this model of ‘contract then stretch’ can be helpful it is also harder to perform on oneself &amp; requires the stretch component which again maybe a little too much for some. Also known as Autogenic Inhibition and Reciprocal Inhibition within the therapy world we could define and differentiate these further …..\n\nIf a sub-maximal contraction of the muscle is followed by stretching of the same muscle it is known as Autogenic Inhibition MET, and if a submaximal contraction of a muscle is followed by stretching of the opposite muscle than this is known as Reciprocal Inhibition MET (Physiopedia)\n\nRibot-Ciscar et al (&amp; subsequently Jiri Dvorak) did some work on what is also known as Post Contraction Sensory Discharge.\n\nBoth found that a sub maximal endurance isometric muscle contraction proved to be a superb method to improve the function of a muscle that, in our words….“..forgot how to relax..”\n\nSub maximal - means less than the maximum &amp; we found that cueing around 20% effort was most effective.\n\nEndurance hold - is to sustain the isometric contraction for a period of time &amp; we found around 20 seconds was most effective\n\n&nbsp;\n<h2>So As A Personal Trainer When Do I Use It?</h2>\nPossibly prior to anything else since it’s easy, anyone can do it, it is an empowering technique as they can perform it on themselves, it holds the least risk of most other techniques AND for almost 2 decades Biomechanics Coaches &amp; iMoveFreely Instructors everywhere have consistently had phenomenal results with clients &amp; participants who have often also reported being suddenly pain-free for the first time in years where the clinical world had failed them.\n\n&nbsp;\n<h2>How Do I Teach It To My Clients?</h2>\nWell if you follow us on Instagram, Facebook etc you would already know many of the ways to apply them to your client’s programme. If not you could attend one of our online or face to face classes.\n\nOtherwise here are some extra links to research them further so you can create your own. Then teaching a client is all about education as they often don\'t understand this new weird and wonderful technique BUT if you can do that they will LOVE you for it and come back for more!\n\n...Love Movement &#x2764;&#xfe0f;\n\n&nbsp;\n<h3>Here are some more links and information on the topic of Muscle Energy Techniques...</h3>\n<a href=\"https://www.biomechanicseducation.com/1333-2/\" target=\"_blank\" rel=\"noopener noreferrer\">Post Contraction Sensory Discharge</a>\n\n<a href=\"https://leggehealth.ca/portfolio-item/muscle-energy-technique-met/\" target=\"_blank\" rel=\"noopener noreferrer\">Legge Health Clinic - MET </a>\n\n<a href=\"https://www.physio-pedia.com/Muscle_Energy_Technique\" target=\"_blank\" rel=\"noopener noreferrer\">Physio-Pedia </a>\n\n<a href=\"https://www.acefitness.org/fitness-certifications/ace-answers/exam-preparation-blog/5336/golgi-tendon-organs-and-muscle-spindles-explained/\" target=\"_blank\" rel=\"noopener noreferrer\">ACE Fitness - Golgi Tendon Organs and Muscle Spindles Explained</a>\n\n&nbsp;\n\n<hr />\n\n<h1 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely - ONLINE?</h1>\n<h3 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle\">Why not get started with our BRAND NEW ONLINE CPD\'s, giving you the flexibility to learn from home... Find out more, just CLICK HERE TO SEE THE MEGA BUNDLE!</a></h3>\n&nbsp;','What Is A MET, Why Would I Need To Know & How Do We Do Them?','','inherit','closed','closed','','21948-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',21948,'https://biomechanicseducation.com/?p=38670',0,'revision','',0),(38671,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">Why would I tell you to try and get rid of all your clients? And how am I suggesting you do this? This might sound like a weird way of thinking but it might be a way to appeal to more clients in the long run. </span>\n\n&nbsp;\n<h2><b>The Problem </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In this cutthroat period of lockdown, competing in online exercise and fitness marketing it is likely to feel intimidating for many of you. Competitors may seem to be more knowledgeable and you are worried you are being left behind. They may appear to be able to better serve people and you just can\'t imagine how to get your practical skills online, and safely.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Add into that the fact you don\'t want to be insensitive about ‘selling’ your services during this financially challenging time (for everyone) and it can literally stop you in your tracks, from even getting started, right?!</span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">Maybe you are online but still feel reticent about ‘promoting and selling’ in these cash poor times even though you KNOW you can, and WANT, to help.</span>\n\n&nbsp;\n<h2><b>The Solution</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The solution could be really simple = advertise that your aim is to get rid of your clients as quickly as possible!</span>\n\n<span style=\"font-weight: 400;\">Yes, you heard me….THIS kind of advertising a). STANDS OUT b). Comes from a place of integrity.</span>\n\n<span style=\"font-weight: 400;\">Ok, you may choose not to literally use those words BUT when written, promoted and explained from that perspective it feels different on both sides of the fence.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my opinion it is our job, as exercise professionals &amp; trainers, to predominantly....EMPOWER clients to take ownership of their own bodies!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WE cannot ‘fix’ them </span>\n\n<span style=\"font-weight: 400;\">WE cannot ‘make’ them lose weight</span>\n\n<span style=\"font-weight: 400;\">WE cannot ‘give’ them strength </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes we can ‘empower’ them</span>\n\n<span style=\"font-weight: 400;\">Yes we can ‘teach’ them </span>\n\n<span style=\"font-weight: 400;\">Yes we can ‘equip’ them</span>\n\n<span style=\"font-weight: 400;\">Yes we can ‘coach’ their technique</span>\n\n<span style=\"font-weight: 400;\">Yes we can ‘advise’ what to do &amp; when to do it</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So maybe by amending and tweaking our marketing copy/language to promote that our aim is to work with a client temporarily, with the purpose of educating and empowering them with the skills to look after their own bodies, it could feel easier to both the seller and the buyer. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When the client really gets it, they start to do it alone, they begin to tell you about the things THEY achieved…..well then you really have succeeded. Because the better our clients understand how, why and what...the better our results, the more they refer and then we can work on helping more people.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I mean you could literally tell them “</span><i><span style=\"font-weight: 400;\">If you really take on board everything I give you, it will cost you far less. My aim is to be able to get rid of you as quickly as possible by educating and equipping you with all you need to feel great and move well….for life!”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is how I have always tried to work and explain my methods. They are intended as a temporary phase of assessment and education in understanding one\'s own body, lifestyles, environment and how to identify their key biomechanical pillars. We then work together to design their maintenance programme which they can then go back to at any time, with or without, my help. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">NOTE: This comes with the caveat that ok maybe 90% of your clients will fall into this category of people who simply need educating and access to the right tools and information. This is as opposed to an elite athlete who requires a longer term periodised plan. I am fully aware that some clients hang around and the relationship works for both parties since their goals change, they will inevitably return. Yet by equipping them to be autonomous they are more likely to refer friends our way too. </span>\n\n<span style=\"font-weight: 400;\">Also coaching can get harder if we become more friendly with long term clients and holding them accountable, so while long term may seem a nice idea, this \'get rid\' concept I believe is good for most.  </span>\n\n&nbsp;\n<h2><b>How We Can Help You</b></h2>\n<span style=\"font-weight: 400;\">With us all being forced online it may give you more confidence having a deeper level of understanding your client\'s body.</span>\n\n<span style=\"font-weight: 400;\">Being able to use bench-markers and physical tests that allow you to identify where issues may well be coming from and...</span>\n\n<span style=\"font-weight: 400;\">How to then prescribe exercises to improve their movement before your very eyes….and theirs!</span>\n\n<span style=\"font-weight: 400;\">All via an online platform that PROVES they are looking after themselves!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have created a super low investment bundle for you to get started. It includes:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Pelvic &amp; Spine Biomechanics Online Assessment Skills - £357</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Fundamental principles of movement analysis online course - £27</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">iMoveFreely Instructor Online Training - £94</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Introduction to Running Biomechanics - £87</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">5 Steps to a successful online presence webinar </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">1:1 phone consultation with me (Rach) to get started and put this into action - £120</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Feedback and support during lockdown - £100</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">TOTAL VALUE: £785</span>\n<h3><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/\"><span style=\"text-decoration: underline;\"><strong>To get all of this you only pay £357</strong></span></a></h3>\n<strong>AND if you decide to do our diploma in the next year after purchasing this bundle, I will take £357 off the investment of the diploma!</strong>\n<h2><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-online-cpd-mega-bundle/\">--&gt; Click here to purchase the bundle now! &lt;--</a></span></h2>\n&nbsp;\n\n&nbsp;','You Should Be Trying Get Rid Of All Of Your Clients As Quickly As You Can!','','inherit','closed','closed','','21788-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',21788,'https://biomechanicseducation.com/?p=38671',0,'revision','',0),(38672,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">Ok so you have now survived 3 weeks on lockdown, you realised everyone feels the same as you do and the initial panic, shock &amp; horror have started to dissipate. Now you are starting to get comfy in an environment where no one expects anything of you, all finance services have been asked to give you a bit of breathing space and life is starting to feel a new kinda normal where walking in the sun is the highlight of the day.….right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So how far have you come in 3 weeks of lockdown?</span>\n\n<span style=\"font-weight: 400;\">Did you go down the procrastination route or did you get proactive on your business? </span>\n\n<span style=\"font-weight: 400;\">You have done the maths, realised what you can really survive on and now need to make a plan for the future. </span>\n\n<span style=\"font-weight: 400;\">But what more could you do, if anything?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well in the world of Biomechanics Education we have recognised we are well into stage 3 of the Kubler Ross Curve!</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-21236\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/04/Screenshot-2020-04-13-at-15.45.37.png\" alt=\"\" width=\"1142\" height=\"784\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are as always 2 directions you can go in….and both are an option….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Option 1 - Continue to panic, continue the give up and continue to feel useless because technology is moving far too fast for you, thinking you might as well put your head in the sand until its all over - eh!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Option 2 - Panic, feel useless but start by cracking on and having a go, make mistakes and realise no one is expecting anything from you so literally anything you do is a bonus!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Seriously the entire nation were in Kubler Ross stages 1 &amp; 2 for a while too but I then remembered my Circle of Control and chucked away my Circle of Care. </span>\n\n<span style=\"font-weight: 400;\">So after you have read that blog this is geared to support you and offer our assistance in moving forwards...</span>\n\n&nbsp;\n\n<b>6 Tips To Saving Your Business AND Improving It During Lockdown!</b>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><a href=\"https://www.biomechanicseducation.com/6-positive-actions-to-take-right-now/\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">Circle of Control - CLICK HERE Literally do this, grab paper and a pen and write as many things as you can think of in each circle. Then actually physically tear up that circle of care and throw it in the bin or burn it. There is something very powerful in that physical act. </span></a></li>\n</ul>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Create a Schedule - Just like you did when we weren’t locked down. Having a clear schedule gives you a sense of purpose and proactivity each day. Getting up each morning with a plan means you are far more likely to achieve the goals you set out than if you simply rely on memory or ‘working’ ad hoc when you feel like it. We humans like order, discipline &amp; routine as it helps offer a feeling of control during uncertain times.</span></li>\n</ul>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Spend Time Learning - Face your fears and study the areas you are weakest.Technology, anatomy or creating content, videos, blogging or website designing. Time did stand still for a while but will soon start to pick up pace again and you might wish you had made the most of having more time. Everyone has worked out Zoom, Webinarjam, facebook live or even Facetime or Whatsapp video calls - it doesn\'t matter so long as you stay connected!</span></li>\n</ul>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Have A Weekly Goal - Having a goal is so important and generating one bigger goal each week gives each week a primary focus, that can then be divided into smaller goals to help support you to achieve the bigger one. There is something about writing things down and then crossing them off a list as you get each task done towards that big weekly goal!  A great idea might be to set up a private Facebook group, which is free, then offer your financially stretched clients the option to subscribe for £5/£10/£20 per week/month to your group where you will be offering daily insights, videos, education. </span></li>\n</ul>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Think Long Term - Try to keep in mind the struggle everyone has had to adapt to this ‘new normal’ BUT also remember there will also be a time of adaption back again - our businesses may well survive but how will the industry have changed long term for you, your clients, the market in general, what will be the new trends? How could what you do right now give you an advantage in the future? In business we should ALWAYS think long term and even more so now - plan B / C / D can be helpful but also be sure your present \'system\' doesn\'t shoot you in the foot when \'back to normal\' price and service wise. Create and offer alternatives for all.</span></li>\n</ul>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Looking Forward - Get excited about this as a time of growth as all painful times can be. We are forced to reflect and ponder our purpose, drivers, goals and dreams. This is a great OPPORTUNITY to change what you are doing, re-focus and maybe make your future even better! </span></li>\n</ul>\n<strong>BONUS Tips....</strong>\n\n<b>4 Tips For Supporting Your Clients Health At Home!</b>\n\n&nbsp;\n<ul>\n 	<li><span style=\"font-weight: 400;\">Get Creative With Household Items For Equipment - This is an important part of how we can maintain our support for clients\' health at home. It is our job to teach them how to use body weight, stairs or steps, chairs, bottles etc as a strength tool during home exercise.</span></li>\n</ul>\n&nbsp;\n<ul>\n 	<li><span style=\"font-weight: 400;\">Encourage Them To Do Some Of Your Exercise Programmes Outside - The outside fresh air &amp; vit D from the glorious spring sunshine we are getting are also vital aspects of teaching our clients how to stay healthy. So if they can show you what kind of space they have access to then you can potentially offer them a mini 20-30 minute outdoor interval bodyweight circuit like this for example:</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">JUMP JACKS 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">INCHWORM 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">SKATERS 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">V SITS 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">PLYO LUNGES 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">INVERTED PRESS 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">TUCK JUMPS 20 seconds with 10 seconds recovery</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">SIDE STARS 20 seconds with 10 seconds recovery</span></li>\n</ul>\n<span style=\"font-weight: 400;\">4 rounds with 60 seconds recovery between each round</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Play Music, Sing &amp; Dance - Advise &amp; recommend them to stay focused on what they CAN do &amp; celebrating things that make them feel good like music, singing &amp; dancing. It can be infectious in a good way!</span></li>\n</ul>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Ladies You Can Get FREE ACCESS until June 30th To <a href=\"https://herspirit.co.uk/\" target=\"_blank\" rel=\"noopener noreferrer\">@herspirit App</a> - This fantastic online support platform has gained funding from Sport England to provide all women with 3 months completely free. There you &amp; your clients can gain access to qualified coaches delivering live sessions for the mind, body and about fuelling well. Yo can even experience on of my iMoveFreely sessions!</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Keep watching for ideas or ping me a message if you have any specific questions.</span>\n\n&nbsp;\n\nEvery Wednesday 4 weeks 12pm LIVE Biomechanics Q&amp;A FREE for all fitness professionals April 8th/15th/22nd/29th via ZOOM - Link available upon request - rachel@biomechanicseducation.com\n<a href=\"https://biomechanicseducation.acemlnb.com/lt.php?notrack=1&amp;notrack=1&amp;s=bad97c655476f96a390a72c05a742011&amp;i=454A3764A11A12279\" data-ac-default-color=\"1\"><b>Intro to Intrinsic Biomechanics Online Training</b> £87  available anytime</a>\n\n<a href=\"https://www.biomechanicseducation.com/product/introduction-to-running-biomechanics-online-cpd-training/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">April 14th 10-2pm - <b>Running Biomechanics Online Training </b>£87</a>\n\n<a href=\"https://biomechanicseducation.acemlnb.com/lt.php?notrack=1&amp;notrack=1&amp;s=bad97c655476f96a390a72c05a742011&amp;i=454A3764A11A12280\" data-ac-default-color=\"1\">April 17th/18th 10-3:30pm - <b>Pelvic &amp; Spine Biomechanics Online Training </b>£357 </a>\n\n<a href=\"https://biomechanicseducation.acemlnb.com/lt.php?notrack=1&amp;notrack=1&amp;s=bad97c655476f96a390a72c05a742011&amp;i=454A3764A11A12281\" data-ac-default-color=\"1\">April 23rd/24th 10-3:30pm - <b>Shoulder, Knee, Foot Biomechanics Online Training </b>£357 </a>\n\n<a href=\"https://biomechanicseducation.acemlnb.com/lt.php?notrack=1&amp;notrack=1&amp;s=bad97c655476f96a390a72c05a742011&amp;i=454A3764A11A12282\" data-ac-default-color=\"1\">April 28th 10-2pm - <b>iMoveFreely instructor Online Training </b>£94 </a>\n\n<a href=\"https://biomechanicseducation.acemlnb.com/lt.php?notrack=1&amp;notrack=1&amp;s=bad97c655476f96a390a72c05a742011&amp;i=454A3764A11A12283\" data-ac-default-color=\"1\"><b>Fundamental Principles of Movement Analysis Online</b> pdf £27 available anytime.</a>\n\nNOTE: There will be an opportunity to \'upgrade\' and attend the face to face education experiences at a later date to gain certificates and qualifications.\n\n&nbsp;','6 Tips To Saving Your Business AND Improving It During Lockdown!','','inherit','closed','closed','','21235-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',21235,'https://biomechanicseducation.com/?p=38672',0,'revision','',0),(38673,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">Everyone gets it!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Its impossible to get away from it and its driving so many people insane!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The stress and fear of not knowing what\'s to come creates a sense of panic even in the most calm and relaxed characters. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are messages coming through asking \'</span><i><span style=\"font-weight: 400;\">What Can I Do?</span></i><span style=\"font-weight: 400;\">\"</span>\n\n<span style=\"font-weight: 400;\">My response?..... there is both good and bad news.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The bad news is that we cannot change the fact the Coronavirus is rife in every corner of the world that can be deadly for our vulnerable loved ones.</span>\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n<span style=\"font-weight: 400;\">There is ALWAYS a but because there is ALWAYS 2 ways to view any situation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is good news.....this situation brings OPPORTUNITIES!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The great things about this opportunity is the one thing we have all been so desperate for, for so long……..TIME!</span>\n\n<span style=\"font-weight: 400;\">​</span>\n\n<span style=\"font-weight: 400;\">Yes we are uncomfortable with change &amp; loss of control</span>\n\n<span style=\"font-weight: 400;\">We could spend time in panic, stressing, fretting &amp; worrying about what might happen, could happen &amp; may happen. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can be PRO-ACTIVE about the situation by taking advantage of time by TAKING MASSIVE POSITIVE ACTION and do all things things we never had time for!</span>\n\n&nbsp;\n<h2><b>6 Positive Actions To Take - RIGHT NOW!</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). Draw 2 large circles on a piece of paper. Write Circle of Care over one then write Circle of Control over the second. </span>\n\n<span style=\"font-weight: 400;\">Now take some time to list in the Circle of Care all of the things that you care about right now that you CANNOT change. </span><span style=\"font-weight: 400;\">Then list in the Circle of Control all of the things you can change.</span>\n\n<span style=\"font-weight: 400;\">Next rip the page in two and take the  Circle of Care and tear it up into pieces and place it in the bin. </span><span style=\"font-weight: 400;\">Read the list in your Circle of Control - FOCUS ON THIS!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">2). Look at this list of things you can control. Add to it all of the things you previously have never had time for but now do.</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Phone your friend</span></li>\n 	<li><span style=\"font-weight: 400;\">Have a lie in</span></li>\n 	<li><span style=\"font-weight: 400;\">Design some training programmes </span></li>\n 	<li><span style=\"font-weight: 400;\">Create some meal plans </span></li>\n 	<li><span style=\"font-weight: 400;\">Write some content copy</span></li>\n 	<li><span style=\"font-weight: 400;\">Create some videos </span></li>\n 	<li><span style=\"font-weight: 400;\">Analyse your business</span></li>\n 	<li><span style=\"font-weight: 400;\">Educate yourself</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">3). Next write a number beside to each item in order of importance. No.1. being the most important item to do on your list.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">4). Beside each item write out what it will take to achieve that task, step by step. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">5). Add each item and the steps to your schedule with consideration to the time each step might take.</span>\n\n&nbsp;\n<h4><span style=\"font-weight: 400;\">6). Dont Delay <strong>Take Action</strong> Now! - it could all change before you know it, don\'t get left behind!</span></h4>\nWhy Not Start With This Awesomely Popular Online Course, CLICK LINK:\n\n&nbsp;\n<h2><a href=\"https://www.biomechanicseducation.com/product/fundamental-principles-of-movement-analysis/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><strong><em>FUNDAMENTAL PRINCIPLES OF MOVEMENT ANALYSIS</em></strong></a></h2>\n&nbsp;\n\nNOTE: If you are feeling overwhelmed please get in touch info@biomechanicseducation.com so we can offer you support, guidance or information about where to get the best advice for your circumstances.\n\n&nbsp;\n\nSTAY POSITIVE ;)','6 Positive Actions To Take - RIGHT NOW!','','inherit','closed','closed','','20624-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',20624,'https://biomechanicseducation.com/?p=38673',0,'revision','',0),(38674,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h3><b>By Master Trainer, Dean Connolly </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over the coming months I will be proudly introducing you to an amazing team of people who both inspire and stimulate me in my own business. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They are our Master Trainer Team and have been handpicked from the best we have seen in the industry and on our workshops. So much so they have been through around 2 years of training to up skill, gain experience and now begin to deliver the precious revolutionary intrinsic biomechanics programmes.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I literally cannot tell you how excited I am by this team of professionals who are already making a huge difference to, not only their own clients but also the Biomechanics Education learners.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So with 9 of these wonderful people to introduce I had better crack on and hand you over to get to know…..Dean Connolly to offer some of his insights into this Juicemail since I fear creating and sending you content solely from my own crazy brain!!</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Dean began his career in health and fitness as a youth football coach, working with local junior premier league side and eventually Chelsea FC outreach academies.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">He then turned more attention to the physical side of training as he developed his career as a personal trainer. Now developing his own PT business that has been running for the last 4 years.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">His own passion is a love for obstacle racing and all things muddy!!</span></i>\n\n&nbsp;\n<h2><b>What Happens When Motivation Dies?</b></h2>\n<h3><b>How Can Our Clients Continue To Get Results Once Motivation Goes?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The fitness industry is filled with some of the most poetic quotes, with a lovely background image of a sunrise over at a tropical beach far away.</span>\n\n<span style=\"font-weight: 400;\">It’s enough to get the average person pumped and say, “today is my day”. </span>\n\n<span style=\"font-weight: 400;\">Anyone that has worked with clients knows that this doesn’t last too long.</span>\n\n<span style=\"font-weight: 400;\">Yes, it takes motivation and a lot of the time incredible courage to ask for help from a professional, especially when dealing with fat loss or injured clients.</span>\n\n<span style=\"font-weight: 400;\">So, motivation is a powerful tool that can kick start someone’s decision process.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But what happens when the motivation dies away, what happens when their results plateau. What do you do as a coach to keep them motivated?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The biggest thing we work on with our clients is habits. Forming positive habits and disrupting negative habits.</span>\n\n<span style=\"font-weight: 400;\">Habits are something we all have good or bad they help us short cut or go on autopilot for a desired outcome. They essentially become our “go too” when we desire a specific result or reward.</span>\n\n<span style=\"font-weight: 400;\">They are part of who we are and how we work day in, day out </span>\n\n<span style=\"font-weight: 400;\">“They (habits) are not about having something. they are about becoming something” – James Clear</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The biggest challenge for any coach is to identify what these habits are and are they helping or hindering their clients progress.</span>\n\n<span style=\"font-weight: 400;\">Essentially as a coach we are looking to change part of their identity, who the client is in order to get them closer to who they want to be.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It all starts with clarity.</span>\n\n<span style=\"font-weight: 400;\">You’ve probably come across the S.M.A.R.T. goals before</span>\n\n&nbsp;\n\n<b>Specific – exactly what do they want to achieve</b>\n\n<b>Measurable – how will we measure success</b>\n\n<b>Achievable – Is it possible to do</b>\n\n<b>Realistic – It may be possible, but is it really going to reachable with the client’s lifestyle</b>\n\n<b>Time – When? A target date.</b>\n\n<span style=\"font-weight: 400;\">Depending on your clients, you may work with people from a fat loss goal to injury rehab to a running PB goal, either way most people will come to you wanting a specific solution to a specific problem.</span>\n\n<span style=\"font-weight: 400;\">So, our job as coaches is to find out which habits, they make day in ands day out will either</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Help them achieve their goal</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Stop them achieving their goal</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once we see what habits are working for and against their goals we can then start to focus on changing habits, that all starts with awareness.</span>\n\n<span style=\"font-weight: 400;\">What are the first 5 things someone does every morning, what are the first 5 things you do, write it down.</span>\n\n<span style=\"font-weight: 400;\">Do they work towards or against your goals?</span>\n\n<span style=\"font-weight: 400;\">I.e. If my goal was to be more productive and my morning routine was</span>\n\n<span style=\"font-weight: 400;\">- wake up</span>\n\n<span style=\"font-weight: 400;\">- press snooze</span>\n\n<span style=\"font-weight: 400;\">- check social media</span>\n\n<span style=\"font-weight: 400;\">- get changed</span>\n\n<span style=\"font-weight: 400;\">- go for breakfast</span>\n\n<span style=\"font-weight: 400;\">Not all bad there, but maybe if I’m learning to be more productive, snoozing and social media may not be helping me get to that goal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe in the gym you’ll see similar conflicting habits</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do a set</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Drink some water</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Check phone/ social media</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Talk to friend</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do set 2</span></li>\n</ul>\n<span style=\"font-weight: 400;\">Depending on what type of training, rest period, etc or how long you have to train you may be wasting time. But to another person if it’s just a case of getting them to the gym more distractions may help make the habit of going to the gym stick.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So as always it will depend on the context of the client you’re working with.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First, find out what they want and ask if they are helping themselves work towards that goal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are 2 things to then do to either:</span>\n\n<span style=\"font-weight: 400;\">Help get rid of a bad habit or Help create a positive habit</span>\n\n&nbsp;\n<h3><b>Make it obvious or make it hard</b></h3>\n<span style=\"font-weight: 400;\">Let’s start with the tougher challenge of the 2, making a bad habit harder to do.</span>\n\n<span style=\"font-weight: 400;\">So, this is quite literally the out of sight out of mind idea. How obvious are your bad habits to do? </span>\n\n<span style=\"font-weight: 400;\">Client spending too much time on your phone at the gym. Maybe not take their phone into the gym or at least put in airplane mode, so they can’t be distracted by messages.</span>\n\n<span style=\"font-weight: 400;\">Eating too much junk food or drinking too much alcohol? Is chocolate and wine the first thing they see when they open their fridge? Less tempting.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Again, this will be dependent on your client’s journey, but will ultimately make that bad habit harder to do as the option may not be available at the time. No motivation or willpower is required if it’s not even an option in the first place.</span>\n\n&nbsp;\n<h3><b>To build a good habit, is the exact opposite, make it obvious and easy.</b></h3>\n<span style=\"font-weight: 400;\">This is just a case of putting a cue or item right under their nose to make it easier to follow through with.</span>\n\n<span style=\"font-weight: 400;\">Clients can take their gym kit to work so they can go on the way home, take away the temptation of sitting down and relaxing or at least kit already out by the door so they don’t need to go hunting to find trainers and kit before a run or gym session.</span>\n\n<span style=\"font-weight: 400;\">Replace the beer and sweets in the middle shelf for fruit maybe, so when the fridge is opened you see a pot of strawberries or apples.</span>\n\n<span style=\"font-weight: 400;\">There are 100 different ways to do this, but it all comes down to as always what actually works for your clients, their goals and their lifestyle. Does the habit change fall into their goals and is it S.M.A.R.T.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So before we set them the best training programme, recovery plan or diet to follow check first if the small things they do day in and day out are going to help them achieve their results and more importantly empower them to sustain them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Oh and by the way, Dean has gone through all the programmes, he invested in them himself, to apply to his own coaching programmes. Hear what he had to say about his journey…..</span>\n\n&nbsp;\n\nhttps://youtu.be/aHsrJipzsTA\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h1 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h1>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a></p>','Building New Healthy Habits & Disrupting Old Unhealthy Habits','','inherit','closed','closed','','20459-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',20459,'https://biomechanicseducation.com/?p=38674',0,'revision','',0),(38675,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">We tested the quad strength output on a pro rugby player before and after mobilising his sciatic nerve. After 2 x 15 reps his quad strength output increased by 14%. After 10 days of nerve mobilisations it increased by 50%!!</span>\n\n<i><span style=\"font-weight: 400;\">It Has Been Demonstrated That Reduced Nerve Mobility Inhibits Muscle Performance (Greening J, Smart S, Leary R, Hall-Craggs M, </span></i>\n\n<i><span style=\"font-weight: 400;\">O\'Higgins P, Lynn B , Butler, DS. Lancet. 1999.)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you consider a hamstring stretch for example, we are not trying to stretch the hamstrings when we extend the leg out in front of us, we are trying to improve the range of hip flexion and knee extension by stretching the structures on the back of the leg and back. This brings in more than just the hamstrings, it can also be limited by a tight sciatic nerve, a rotated sacroiliac joint in the lower back, tight gastrocnemius, tight spinal cord and indeed almost any nerve in the chain given the continuum concept of the nervous system being one structure. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How many times have you stretched your hamstrings using the generally accepted methods only to find that their flexibility continues to be stubborn and often returns to their standard length very soon? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Many people experience this phenomenon. The reason is often due to them stretching only one of the structures that limit the movement, i.e. the hamstrings. If they do not stretch the other structures as well, of course, they will not be affected and so the limited range will usually return. So we are trying to acquire a pattern of movement, not just stretching the hamstrings. </span>\n\n&nbsp;\n<h2><b>Other Examples of The Effect/s of Nerve Tension </b></h2>\n<span style=\"font-weight: 400;\">Tight calves can cause overpronation. What happens is the dorsi-flexion (moving the ankle upwards) is not available from the ankle joint due to the tightness in the calves, so it has to come from the subtalar joint.  It comes as part of the pronation mechanism though and so increases the amount of pronation as well. This causes shin related injuries as well as knee &amp; Achilles problems. More often than not that tight calves are caused by a tight sciatic nerve, so by mobilising the nerve, we can help with all these injuries as well.</span>\n\n<span style=\"font-weight: 400;\">A rotated pelvis can also go unnoticed for many years until the compensations start to cause problems.  Typically a leg length discrepancy (LLD) can result from a rotated pelvis and the leg must compensate for this.  It\'ll either flatten the foot (pronate it), bend the knee more, or drop the hip more. Pronation will increase the load on the leg, bending the knee will increase pronation, &amp; dropping the hip will increase the spasm in the glutes/piriformis.  A vicious circle if ever there was one! So by reducing the spasm in the piriformis, in other words preventatively, (&amp; also if necessary), then we are helping to reduce all of the above.</span>\n\n<b>Just Imagine!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember in most cases we are not even aware we have a problem, but even so, you can still achieve these remarkable results. Just imagine what these figures could do for your performance in your sport or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office. </span>\n\nhttps://youtu.be/xMDNnhoXWRs\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider positions that may cause the nerves to become tensioned in your clients sport or activity, then plan how to mobilise the nerves in preparation for their sport similar to the ‘slump’ technique in the video above.</span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a></p>','Reduced Nerve Mobility Inhibits Muscle Performance - And What Can Personal Trainers Do About It?','','inherit','closed','closed','','20290-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',20290,'https://biomechanicseducation.com/?p=38675',0,'revision','',0),(38676,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">I often speak to coaches who worry that they don’t know enough. That they feel there is a missing link. A gap perhaps in their anatomy knowledge. So much so that they are worried they can’t help their clients as much as they would like to and even worried they may lose clients as a result. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you wish you had a magic exercise you could give them to help?</span>\n\n<span style=\"font-weight: 400;\">Are you getting disheartened by the numbers of clients you have with ‘issues’?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly let me reassure you that there are many things we can do for clients with ‘issues’, even within our remit. With the understanding that your consultation was thorough and there were no red flags.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So let’s take a look at elbow pain, or tingly fingers as an example…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you have any clients that get tingly fingers or pain in their elbow when pulling, gripping or pressing then read on...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They could have the </span><i><span style=\"font-weight: 400;\">beginnings</span></i><span style=\"font-weight: 400;\"> of an RSI for example (repetitive strain injury) like Tennis Elbow or Carpel Tunnel Syndrome. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The nervous system is a single continuum throughout the entire body &amp; so symptoms can show up almost anywhere but be caused by another part of the kinetic chain. This can make our job difficult in identifying root causes &amp; knowing what to do about them.</span>\n\n&nbsp;\n<h1><b>Common Causes Of Elbow Pain When Pulling, Gripping Or Pressing</b></h1>\n<span style=\"font-weight: 400;\">Common contributors are overactive pec minor, subscapularis, infraspinatus, upper traps, stiff thoracic spine and a tight median nerve. </span>\n\n<span style=\"font-weight: 400;\">There could also be any combination of these (along with a multitude of more distal contributors but that\'s another blog!)</span>\n\n<span style=\"font-weight: 400;\">The muscles provide an ‘over’ protective spasm to the nerve during movement and if stretched or loaded sufficiently the muscles can spasm enough to cause themselves to tense up - which can FEEL like a tear even.  By mobilising the nerve it releases the tension in the muscles &amp; reduces the likelihood of this actually happening.</span>\n\n&nbsp;\n<h2><b>Example While Gripping</b></h2>\n<span style=\"font-weight: 400;\">During the golf swing when ‘gripping’ for example, if the median nerve is tight it can reduce the amount the player can complete his backswing &amp; adopt the best position at the top of his swing.  </span>\n\n<span style=\"font-weight: 400;\">This would be due to the muscle spasm that builds up to try &amp; protect the inflexible nerve.  The greater the muscle spasm (which is unbeknown to the player as it is ‘sub’ clinical at this point) the more he\'ll try &amp; force his shoulder turn, which in turn increases the tension etc.  The key to a sound &amp; reproducible swing is to reduce any tension in the swing, so as to help with timing &amp; rhythm. So by mobilising the median nerve, we are helping with ALL of the above.</span>\n\n<span style=\"font-weight: 400;\">So during our practical anatomy workshops, we discuss how to test and exercise these areas to not only reduce the risk of this problem occurring but also to reduce recurring issues like tingly fingers or sore elbows AND a fantastic side effect is optimized performance!! Whoohoo!</span>\n\n<span style=\"font-weight: 400;\">Here is a video to explain more …</span>\n\nhttps://youtu.be/Ggalmxs6ziQ\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a>\n\n&nbsp;','Got Any Clients Who Experience Elbow Pain When Pulling, Gripping Or Pressing?','','inherit','closed','closed','','20168-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',20168,'https://biomechanicseducation.com/?p=38676',0,'revision','',0),(38677,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">Recently I have been getting my running mojo back after over a decade of not really feeling it since rupturing my ACL back in 2009.</span>\n\n<span style=\"font-weight: 400;\">The reason I lost it is likely clear - injury - but I feel there was more to it than that. </span>\n\n<span style=\"font-weight: 400;\">I had been at the peak of my ‘fitness’ and faster than I had ever been (even with my slow twitch muscle fibre dominance). Yet I had lost my purpose in running, the reason I ran in the first place….the simple joy of ‘healthy’ movement. Becoming obsessed with the time stopped me taking in the scenery, all I thought about was the seconds ticking away on my Garmin combined with the next mile alert coming up.</span>\n\n<span style=\"font-weight: 400;\">Anyway this meant I had also lost my health radar. When I look back now I realise I was overtraining, not taking time out for body AND mind and thus resulting in a major injury that literally stopped me in my tracks. </span>\n\n<span style=\"font-weight: 400;\">For those of you reading this who have experienced this or maybe have seen a client experience it, when an injury strikes...well that forces time to reflect, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I am not suggesting that it has taken me 11 years to realise this as my mojo is coming back, no what I am saying is now that I am starting to enjoy running (ie NOT jogging) again I am considering how and why it has happened.  </span>\n\n&nbsp;\n<h3><b>How?</b><span style=\"font-weight: 400;\"> </span></h3>\n<span style=\"font-weight: 400;\">Well this is easy…..my 84yr old dad. Most of you will recall my social media posts, blogs, videos running with my dad after we discovered he had early signs of dementia. He was the motivation for me starting to run 30 years ago and more recently as he was keen to exercise. We have motivated each other over the years and he gave me back my joy of running by being by my side. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THIS is WHY I run!</span>\n\n&nbsp;\n<h3><b>Why?</b></h3>\n<span style=\"font-weight: 400;\">The pure joy of it, the camaraderie that has always given my dad so much joy is what I recognise as the reason I enjoy it. It doesn’t mean I cannot race, it just keeps it in perspective and also keeps me mindful of my health. Health is much more important to me now than fitness and so I felt this Juicemail from back in 2016…..</span>\n\n&nbsp;\n<h2><b>Can You Be Fit And Unhealthy?</b></h2>\n<span style=\"font-weight: 400;\">Interesting conundrum right? Having been an endurance runner for over 20 years I stopped running through injury some 7 years ago and just lost my mojo. Actually looking back I think it was almost a relief NOT to be pounding the streets anymore as I now had a reason not to run. Instinctively, I knew running the number of miles I was running was physically probably not good for me and the injury just proved it. Also, the time I had been spending exercising had been a challenge to fit into my routine of daily runs, lifting weights, work, family and other regular activities.</span>\n\n<span style=\"font-weight: 400;\">Having always lifted weights anyway I decided to refuse knee surgery and began to focus my attention on improving my intrinsic biomechanics, including knee stability, with specific training of the strength ratios on my leg musculature. Most of you will be familiar with my squat, snatch projects over the years.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then I read a fascinating book </span><i><span style=\"font-weight: 400;\">Body By Science by Doug McGuff &amp; John Little. </span></i>\n\n<span style=\"font-weight: 400;\">In their book,</span> <span style=\"font-weight: 400;\">McGuff &amp; Little define words like ‘health’ and ‘fitness’ in an endeavour to understand what amount of exercise we could deem as optimal for health. Now, something I quite enjoy these days is the concept of challenging what most of the society accepts because…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">…</span><i><span style=\"font-weight: 400;\"> it’s what we have always done</span></i>\n\n<i><span style=\"font-weight: 400;\">…everybody else does it</span></i>\n\n<span style=\"font-weight: 400;\">…</span><i><span style=\"font-weight: 400;\">I read it somewhere</span></i>\n\n<span style=\"font-weight: 400;\">….</span><i><span style=\"font-weight: 400;\">that’s what Olympians do</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">McGuff &amp; Little certainly challenge current thinking in their book by promoting </span><b><i>”a research-based program for strength training, bodybuilding and complete fitness in 12 minutes a week”</i></b><span style=\"font-weight: 400;\">. That’s a pretty bold statement to make, isn\'t it? However, they have provided a huge amount of references from valid sources while they have also been doing studies of their own for many years too.</span>\n\n<span style=\"font-weight: 400;\">In their book, they explore definitions of words we use all the time in this industry. They state;</span>\n\n&nbsp;\n\n<b><i>HEALTH</i></b><i><span style=\"font-weight: 400;\">: Is a physiological state in which there is an absence of disease or pathology and that maintains the necessary biological balance between the catabolic and anabolic states.</span></i>\n\n<b><i>CATABOLIC: </i></b><i><span style=\"font-weight: 400;\">Anything that results in the breakdown of the organism</span></i>\n\n<b><i>ANABOLIC:</i></b><i><span style=\"font-weight: 400;\"> Anything that results in the growth and differentiation of the organism</span></i>\n\n<b><i>FITNESS</i></b><i><span style=\"font-weight: 400;\">: The bodily state of being physiologically capable of handling challenges that exist above the resting threshold.</span></i>\n\n<b><i>EXERCISE</i></b><i><span style=\"font-weight: 400;\">: A specific activity that stimulates a positive psychological adaptation that serves to enhance fitness and health and does not undermine the latter in the process of enhancing the former.</span></i>\n\n<i><span style=\"font-weight: 400;\">(McGuff, Little: Body By Science 2009)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Basically what I interpreted from this is that you can be recognised as ‘FIT’ (see above) and yet be ‘UNHEALTHY’ on a cellular level (see above) and in a ‘CATABOLIC’ state (see above) from activities like endurance running, my previous choice of sport. Interestingly, since I was forced to stop running initially from the injury, I have ‘felt healthier’ since simply lifting weights once or twice per week (subjective, I know).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway, controversially McGuff &amp; Little promote a 12-minute strength workout every 7-14 days using 3-5 moves combined with push and pull exercises. They encourage super slow long reps of around 20 seconds or so and to failure, of course. They describe in great detail how this style of training promotes improved health on several levels including strength, gastrointestinal transit time, resting metabolism, glucose metabolism, insulin sensitivity, release of body fat stores, cholesterol levels, blood pressure, bone mineral density, symptoms of arthritis, lower back pain, flexibility and Cardiovascular stimulation. Big claims but most, if not all, with some evidence and science to back them up.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I read this book while on holiday in Cyprus and you know what hotel gyms are like right? Well of course they didn’t have the machines that these guys recommend or use in their studies but I managed to find 2 x 7kg dumbbells (a relatively light weight for me) and decided to have a go at these </span><i><span style=\"font-weight: 400;\">TIME UNDER LOAD</span></i><span style=\"font-weight: 400;\"> (TUL) 20 second reps for push-ups, bent over rows, shoulder press and static lunges which were about all I could do with 2 dumbbells. I set my iPad timer and aimed for 10 second concentric 10 seconds eccentric contractions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WOW! Blew my mind how tough this was and I was managing about 5 reps at most! The intensity of the endurance effect on the muscle was quite different to anything I had tried previously and with so few reps going through the joints, such a light load and the safety of the speed it just made sense. It was all over within minutes too. My colleagues who have tried it have also been ringing me after trying it with severe DOMS from considerably reduced training times, reps and exercises using these methods. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One thing I didn’t really get to the bottom of in the book, and I am hoping they write a second book to cover, is how much your ADL influences the effects of this style of training. How being a manual labourer or desk worker might affect this style of training with requiring long periods of recovery and what can be done about this.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now one of the obvious considerations has to be training goals and how this style of programming fits or maybe it just doesn’t?! Well hey, if your sport is running then I too can appreciate the joy of a peaceful run in the countryside but the evidence in this book does indicate that we need to seriously consider how much time we allow for recovery and, from my personal experience, how we should really prepare the body for movement to reduce the risk of injury. Which is where programmes like iMoveFreely fit perfectly since this does not require any sweat nor impact and can be done without impeding on this TUL training method and by virtually anyone since it’s the safest exercise programme on the planet!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally, if you like research-driven information, running, strength training or anything to do with exercise I would strongly recommend giving this book a read. It is full of research, references and information right down to both a historic and cellular level. p.249-275 is simply pages of research sources and references!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I would be really interested to hear your opinions too by the way particularly if you read the book!</span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a>','Can You Be Fit, But Unhealthy At The Same Time?','','inherit','closed','closed','','19975-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',19975,'https://biomechanicseducation.com/?p=38677',0,'revision','',0),(38678,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h2><b>Don’t Just Take My Word For It!</b></h2>\n<span style=\"font-weight: 400;\">Now, something I hope you know me for is being very honest about being a sales person. If something isn’t a good fit for you, I will tell you, and if I believe you should it then I’ll tell you that too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, I always encourage those of you showing an interest in our workshops to speak to any of the practitioners we have trained. Why do I do this? </span>\n\n<span style=\"font-weight: 400;\">Well, because it’s my business, so your thought process is going to be… “of course you’re going to tell me to do it”. </span>\n\n<span style=\"font-weight: 400;\">And actually, it’s great for you to hear from someone who perhaps was in a similar position to where you are now, and to hear and see how they have taken the qualification and what they have done with it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This blog is an example of that from Graham, who recently attended the full Diploma in Biomechanics Coaching at the end of 2019. Graham owns <a href=\"https://missionfitnessuk.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Mission Fitness</a> with daughter in 2013.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While he is still in the process of completing some home study to gain his full Diploma in Biomechanics Coaching certificate, he is very keen to share his experience with those of you yet to decide on whether to commit to the course or not.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I will pass this blog over to him to tell you in his own words what his experience has been like so far….</span>\n\n&nbsp;\n<h1><b>Graham Pardew (Military ELCAS), From Retiring From The Armed Forces, Becoming A Personal Trainer And Now Biomechanics Coach</b></h1>\n&nbsp;\n<h2><b>Why did you decide to join the Biomechanics Coach diploma?</b></h2>\n<span style=\"font-weight: 400;\">“When I retired from the Armed Forces in December 2012, I decided to go into the fitness industry, an area I had devoted much of my time in the military and something which I have always had a real passion for. I used my first ELCAS grant to become a Personal Trainer and opened a small gym with my daughter in February 2013.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">At this time, I was still lacking in sufficient depth of knowledge in anatomy and physiology and the general functionality of how the body works and reacts in a health and fitness environment.  However, there were no ELCAS listed providers with the appropriate knowledge and skills for me to undertake such a course.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Fortunately, I saw Rachel France in action (Director Biomechanics Education), at a very popular Fitness Expo.  I was blown away by her knowledge and passion, her team’s skills and experience. Her company soon gained service provider status and I immediately checked out the details online and spoke to her in person.  The course criteria would definitely meet all my requirements and more! I successfully applied for the course starting monthly workshops in August 2019.</span>\n\n&nbsp;\n\n&nbsp;\n<h2><b>What Did You Like About The Biomechanics Coach Diploma?</b></h2>\n<span style=\"font-weight: 400;\">I had already completed many other fitness related courses, but none of them gave me the breadth of knowledge, skills, confidence and such useful practical workshops, provided by a very capable company with the best instructors and such a wide cross-section of health and fitness professionals.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The course joining process was clear and simple, supporting administration and course manuals top form and content of the five 2-day workshops spot on !!  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Instructor was extremely professional and obviously very knowledgeable across a wide range of areas, easily able to explain in as much detail or ‘lay-man’ terms as required.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The balance of theory and practical was very good.  The workshops are mainly practical in nature, which is exactly what is required to obtain the necessary safe and effective skills to become a fully qualified ‘Biomechanics Coach’.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I really loved the ‘hands-on’ approach which was very new to me and although I was very nervous and lacked experience, was soon made to feel at ease and quickly gained the necessary techniques required.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Students were extremely well prepared for the practical examination and case studies, which took a lot of pressure from them requiring to do additional research in their own times.</span>\n\n&nbsp;\n<h2><b>What benefits have you had as a result of doing the Biomechanics Coach diploma?</b></h2>\n<span style=\"font-weight: 400;\">This course is a particularly niche area, which can be used to pursue an independent career as a ‘Biomechanics Coach’, or to supplement many other professions, such as Personal Trainer, Sports Massage Therapists, Osteopaths, Rugby coaches, Pilates Instructors et al.  I will certainly be using all the knowledge and skills gained to provide much needed ‘clinics’ to clients in the local area.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are many Fitness Trainers out there but not many Biomechanics Coaches!  This course can add a much-needed extra skill to your portfolio and a better opportunity to get more clients and expand your business.</span>\n\n&nbsp;\n<h2><b>What would say to others who are thinking about doing the Biomechanics Coach diploma? Or perhaps have left/are leaving the armed forces and looking for a course to complete?</b></h2>\n<span style=\"font-weight: 400;\">If you have already left, or are planning to leave the forces in the near future, I would strongly encourage you to complete this course.  This is without doubt the most professional company I have had the privilege to work with since my retirement and fully endorse them and the course and hope that they get better visibility across the three services and MOD”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Thank you Graham!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are thinking about doing the diploma but perhaps have a few questions before you join then let’s have a chat. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Click here, fill in your details and book a call. I look forward to chatting with you.</a></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">*Note: The first Diploma starting in March Nottingham is now fully booked and we are already taking bookings for the September dates. </span>\n\n<span style=\"font-weight: 400;\">London starts April has just 2 places left and we are already taking bookings for that Sept start date as well.</span>','Becoming A Biomechanics Coach After Retiring From The Armed Forces','','inherit','closed','closed','','19844-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',19844,'https://biomechanicseducation.com/?p=38678',0,'revision','',0),(38679,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h3><b>Do We Move Without Thinking ... </b><b>Or </b><b>Are We Thinking About Movement Too Much?</b><b>\n</b></h3>\n<span style=\"font-weight: 400;\">Clearly moving is what we are designed to do, we need to move to get food, water, reproduce &amp; well live!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But how much do we, or should we, think about it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As trainers and coaches it is our job to teach people about movement; how to, when too, how often, in what way….etc but as always let\'s challenge this for a moment….WHY?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why are we having to teach the basics….c’mon I KNOW you have watched your client, Barry, and wondered how on earth another human being can be so clumsy or poor at the very basic movements right?</span>\n\n<span style=\"font-weight: 400;\">Did he forget how to move? </span>\n\n<span style=\"font-weight: 400;\">Is he injured? </span>\n\n<span style=\"font-weight: 400;\">In pain? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Chances are he did kinda forget, or his subsystems did. Let me explain…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Movement should feel natural &amp; when it doesn’t there is a specific reason, likely one that needs addressing </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The subsystems of our bodies - neural, myofascial &amp; skeletal - require motion/movement to function well. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Barry sits at his desk all day and likes to relax ALL evening, or perhaps he is overweight so struggles to move easily...so his subsystems don’t get the movement nourishment they require to get the required nutrients around his body.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Movement should be done unconsciously at least most of the time and in the words of Katy Bowman….</span>\n\n<i><span style=\"font-weight: 400;\">Movement is not optional - but compulsory for life</span></i><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what happened to Barry? Did he forget or lose capacity?...well they are kinda the same thing in terms of what we see when we coach a client to move/exercise.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our job is to bring back consciousness of movement, patterning and also capacity. This is done through proprioception training that happens when we teach exercises and movement </span>\n\n&nbsp;\n\n<b>Proprioception</b><span style=\"font-weight: 400;\">; </span><i><span style=\"font-weight: 400;\">perception or awareness of the position &amp; movement of the body.</span></i>\n\n<i><span style=\"font-weight: 400;\">\"exercises to improve balance and proprioception\"</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This term is a fantastic way of understanding what we are doing when we train or coach…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Barry’s body has ‘forgotten’ certain patterns or moves due to maybe inactivity. So we give him a Muscle Energy Technique for example to prepare his body for some strength training. This ‘reminds’ the muscles to prepare for activity and ‘engages’ the spindles in preparation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then we get Barry to squat for example and this reminds his body it doesn’t actually need to compensate after all, his body CAN do this movement it just hasn’t PRACTISED it since he was maybe even 6 years old...maybe….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We use load to build tolerance and reduce the risk of injury and maybe other stuff too like hypertrophy, BUT even more importantly, so that during our lives we can move without thinking.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Those initial PT sessions are often bringing back consciousness to movement so that the neural pathways are re-connected BUT then they should be less conscious, otherwise can you imagine life with permanently conscious movement…!?!! Have a go...too much right!?</span>\n\n<span style=\"font-weight: 400;\">As trainers and coaches we must take into account a lot of things when designing our clients exercise programmes because it isn’t as simple as adding kilos.</span>\n\n&nbsp;\n<h2>How Long Does It Take To Re-Learn How To Move?</h2>\nThe obvious answer is... it depends. Have they had any major, or perhaps even minor injuries? How long have they been sedentary for?\n\nSometimes with the right coaching, it can be almost immediate. And if you are working on the intrinsic biomechanics you are going to speed the process up for sure.\n\nThe research suggests that it can take around 6 weeks... but this would be with consistent practice of movement, not just 1 hour a week. Our iMoveFreely programme will allow you take your clients on an 18 week journey, alongside their training, to make sure they are learning to move properly. This can take us on to a whole other topic of how often your clients see you and what they are actually doing in that first few months of training and making life changing habits.\n\n&nbsp;\n<h2>Re-Introducing Movement - How To Keep Clients Engaged</h2>\nOne of the hardest parts of learning a new skill is sticking with it when you are continually \"failing\" when just starting out. Take a trip down to a golf driving range to see this in action. Golf is an incredibly difficult skill to learn, and keeping beginners practising and not giving up in those first few weeks is tough. It\'s not fun, it\'s freaking hard and it doesn\'t appear that you get any better... so why bother?\n\nThen all of a sudden something clicks, and you get a dramatic improvement. Then you get stuck at a certain level and have to practice new skills.\n\nChances are it\'s similar with your clients who forgot how to move. They might feel silly that they can\'t do simple movements, or things that other people in the gym are making look easy. In fact, they might even avoid exercises that they struggle with all together.\n\nYour job as the coach is to keep them on track, get them wins in every session, show them how their movement is improving, manage their expectations, guide them on a journey and make it clear where they are heading and how you are going to get there.\n\n&nbsp;\n<h2>Join The Biomechanics Education Tribe</h2>\n<span style=\"font-weight: 400;\">The most common reasons we get professionals, like you, in our workshops is because you want more confidence in understanding why all those Barry’s seem to be struggling to perform what you perceive as very simply movements.  </span>\n\n<span style=\"font-weight: 400;\">You want a deeper level of understanding the human body and the differences in anatomy and how this may affect what you see happen when they move. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You want to be able to get Barry back to moving as he, as a human, was designed to.</span>\n\n&nbsp;\n<h2><b>Why Not Join Us On One Of Our Upcoming Workshops</b></h2>\n<h3><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-taster/#tab-description\"><b>1 Day Intrinsic Biomechanics </b></a></h3>\n<span style=\"font-weight: 400;\">Feb 22nd Nottm</span>\n<h3><a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/#tab-description\"><b>iMoveFreely Instructor Workshop </b></a></h3>\n<span style=\"font-weight: 400;\">Mar 15th Belfast</span>\n\n<a href=\"https://www.biomechanicseducation.com/product/golf-biomechanics-workshop/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Golf Biomechanics Workshop</b></a>\n\n<span style=\"font-weight: 400;\">Mar 1st Nottm</span>\n\n<a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Running Biomechanics Workshop</b></a>\n\n<span style=\"font-weight: 400;\">Feb 29th Nottm</span>\n\n<span style=\"font-weight: 400;\">Mar 14th Belfast</span>\n\n&nbsp;\n\nWe have a load more workshops too, running, golf and more. So make sure you go and check those out too. If you are not sure where to start, but know you want to do something.... <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Then just click here, fill in your details and schedule a time to book a call with me.</a> And we can have a chat about the best plan for you.','Can We Actually Forget How To Move?','','inherit','closed','closed','','19677-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',19677,'https://biomechanicseducation.com/?p=38679',0,'revision','',0),(38680,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h2><b>Most Of Your Facebook Friends Are Not Really Your Friends! They may well be Vampires!</b></h2>\n<span style=\"font-weight: 400;\">How much do you actually think about who you interact with on social media?</span>\n\n<span style=\"font-weight: 400;\">Often we can find that TIME is scarce when considering all of the things we want to do, are trying to do and need to do. BUT how do we FILTER out those unnecessary TIME VAMPIRES?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They suck the life out of you in terms of time, emotion and willpower.</span>\n\n<span style=\"font-weight: 400;\">You find yourself shouting at your phone, although no one can actually hear you</span>\n\n<span style=\"font-weight: 400;\">Maybe you are rolling your eyes at some keyboard warriors comments</span>\n\n<span style=\"font-weight: 400;\">OR </span>\n\n<span style=\"font-weight: 400;\">Maybe you’re even getting social media rage at the ludicrous posts or comments some weirdo you never met, don’t even know and don’t want to know has made on YOUR PAGE!!!  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">STOP!!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">RIGHT NOW….STOP!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Think about it…..remember that 10 minute rule, 4 minute rule whatever make it a 10 second rule….and JUST STOP</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why would you waste TIME?</span>\n\n<span style=\"font-weight: 400;\"> TIME ….that thing that you NEVER GET BACK - TIME that thing that you CANNOT BUY - TIME that thing that you feel you lack so severely - WHY WASTE IT ON TIME VAMPIRES WHO MEAN NOTHING TO YOU????</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OK so I’m not saying you should be rude or mean to them but you can:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">IGNORE</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">DELETE</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">SCROLL ON</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">UNFRIEND</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">UNFOLLOW</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In fact, the act of any of these listed above on your social media channels could be quite cathartic! </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">A study done by an Oxford University professor of more than 3,300 Facebook users in the UK concluded that there were only 4.1 “dependable” friends out of a typical user’s 150 Facebook friends. “Friendships,” our brave professor </span></i><a href=\"http://rsos.royalsocietypublishing.org/content/3/1/150292\"><i><span style=\"font-weight: 400;\">concluded</span></i></a><i><span style=\"font-weight: 400;\">. “Have a natural decay rate in the absence of contact, and social media may well function to slow down the rate of decay. However, that alone may not be sufficient to prevent friendships eventually dying naturally if they are not occasionally reinforced by face-to-face interaction.”</span></i>\n\n<i><span style=\"font-weight: 400;\">Social networks “typically encourage promiscuous ‘friending’ of individuals who often have very tenuous links to ego.” </span></i>\n\n<a href=\"https://www.entrepreneur.com/article/275060\"><i><span style=\"font-weight: 400;\">https://www.entrepreneur.com/article/275060</span></i></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I know some of you are like us; running a business for which you wish to ATTRACT customers, so the trick is to consider exactly HOW MUCH TIME to go through your social media. </span>\n\n&nbsp;\n<h2><b>Finding Balance OR Finding Counterbalance?</b></h2>\n<span style=\"font-weight: 400;\">In his AWESOME book,</span><i><span style=\"font-weight: 400;\"> ‘The ONE Thing’,</span></i><span style=\"font-weight: 400;\"> Gary Keller challenges the concept of “work/life balance” and suggests maybe it’s more about the counterbalance…?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OK I hear ya….what’s the counterbalance?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well when you LOVE WHAT YOU DO you wanna do it a lot, right? But some may see this as unbalanced AND, if you’re like me, you would work every day BUT you also really love spending time with family and friends SOOOOOOO what we really need to do is rather than try to simply spend MORE TIME in another zone, we just regularly make sure we counterbalance back and forth to COUNTER balance out time. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Keller’s analogy being that a ballerina LOOKS ‘balanced’ when en pointe BUT if you look really closely they are in fact making minuscule adjustments back and forth to COUNTER balance their weight.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Make sense?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So consider these points:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Are you wasting time on time vampires who bring zero quality to your life?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Are you feeling bad about spending more time in one zone than another?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you know what you can do about it?</span></li>\n</ul>\n&nbsp;\n<h2><strong>How To Avoid Time &amp; Energy Vampires</strong></h2>\nIf you just simply, let life happen to you, I can guarantee your time and energy will be sucked away (pun intended). You\'ll find yourself mindlessly scrolling, getting involved in discussions that are a waster of time and your business and life won\'t move forwards.\n\n<strong>The key is to be totally intentional with everything you do! </strong>\n\nLook at the result you want, then make a plan of actions that are going to get you there. And then take massive action on those things!\n\n&nbsp;\n\nThis applies to ALL areas of your life.\n\nWant to improve your relationship with your partner? Plan date days, date nights, actually communicate with them... not just sitting there on your phones. The easy thing, the comfortable thing is to get home, sit on the sofa together, tv on and scroll through Facebook.... not even acknowledging the other person is there. That might be time together but it\'s not improving your relationship.\n\nTake MEANINGFUL action!\n\n&nbsp;\n\nThe meaningful action might be to unfollow or unfriend certain people on social media. It could be a whole load of things. So the biggest tip is...\n<h3></h3>\n<h3><b>Take Meaningful Action</b></h3>\n<span style=\"font-weight: 400;\">THE SINGLE MOST IMPORTANT THING FOR ANYONE RUNNING A BUSINESS OR TRYING TO FIND A HAPPY MEDIUM IN THEIR LIFE!!</span>\n\n<span style=\"font-weight: 400;\">I will say that again….</span>\n\n&nbsp;\n<h3><b>Take </b><b>Meaningful </b><b>Action</b></h3>\n<span style=\"font-weight: 400;\">THE SINGLE MOST IMPORTANT THING FOR ANYONE RUNNING A BUSINESS OR TRYING TO FIND A HAPPY MEDIUM IN THEIR LIFE!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...and one more time….</span>\n\n&nbsp;\n<h3><b>Take </b><b>Meaningful </b><b>Action</b></h3>\n<span style=\"font-weight: 400;\">THE SINGLE MOST IMPORTANT THING FOR ANYONE RUNNING A BUSINESS OR TRYING TO FIND A HAPPY MEDIUM IN THEIR LIFE!!</span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a>','You’re Surrounded By Vampires… Here’s What To Do...','','inherit','closed','closed','','19587-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',19587,'https://biomechanicseducation.com/?p=38680',0,'revision','',0),(38681,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">There are certain things we are taught as personal trainers that become so ingrained we forget to actually question it or look elsewhere for an alternative answer. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Today we are challenging the idea that, <em>“if it’s tight… we must stretch it”.</em></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s take for example a client, whose squat is just not improving and you can see it’s because their calves are super tight and their ankles have limited dorsiflexion.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe we decide to do some ankle mobility which improves the movement for a while but then it returns to its limited range of motion again.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So we stretch the calves repeatedly but no matter how much we teach various calf stretches, nothing changes long term!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s at this point that I will refer to a quote by Einstein…</span>\n\n<i><span style=\"font-weight: 400;\">“The definition of insanity is doing the same thing over and over again, but expecting different results.”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If stretching isn’t working, then could there perhaps be another issue that’s </span><i><span style=\"font-weight: 400;\">causing</span></i><span style=\"font-weight: 400;\"> the tightness?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s consider alternative causes for limited dorsi flexion or inflexibility of</span><span style=\"font-weight: 400;\"> Gastrocnemius &amp; Soleus...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is a common biomechanical compensation for ‘calves’ to appear, tight and to have limited range of motion at the ankle in the sagittal plane.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In many cases, particularly when flexibility techniques like stretching dont work, there is a chance that something else maybe happening other than the muscle being tight.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Muscles can often be inhibited by the nervous system, in this instance the sciatic nerve portion in particular. </span>\n\n&nbsp;\n\n&nbsp;\n<h2><b>Deliberate Calf Tension?</b></h2>\n<span style=\"font-weight: 400;\">The sciatic nerve passes underneath the calf muscles and could be tight or ‘tethered’ somewhere else within the body. Maybe at the pelvis or lower back area for example. If this is the case then the body may </span><i><span style=\"font-weight: 400;\">sense</span></i><span style=\"font-weight: 400;\"> there is risk  within other areas like the calves for example.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This could result in the muscle deliberately creating ‘tension’ so that they protect from an overstretching of the nerves. T</span><span style=\"font-weight: 400;\">he body would rather we damage muscle instead of a nerve since muscle tissue repairs more easily.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if calf stretching isn’t working, we could consider the possibility that these wonderful muscles are actually ‘hanging on’ to protect your nervous system.</span>\n\n&nbsp;\n<h2><b>Sciatic Nerve Mobilisation: The Slump</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">A really simple way mobilise the sciatic nerve in particular is to use this slump technique. </span>\n\n<em><strong>(NOTE: This comes with a disclaimer warning - do not use if you have any medical conditions, have been diagnosed with sciatica syndrome or experience pain in any area of your body. Do consult your practitioner in advance of trying any new form of exercise.)</strong></em>\n\nhttps://youtu.be/Vr4ItLOv0zk\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So as described in the video here are the points to remember:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Have your client sit thighs supported, hips at 90 degrees</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Ask your client to gently lower their chin downwards &amp; slowly slump or round the back with the hands resting relaxed behind them, folding forwards</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Next ask them to very slowly extend their knee until they feel the beginnings of tension - STOP here</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Now slowly lower &amp; lift the leg to reduce and add the tension</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">THIS IS NOT A STRETCH - so we must encourage them to just find the start of tension rather than go into it </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">8 reps x 2 sets before training</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">No more than twice daily to begin with to explore the dosage and their response to it </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">By doing this exercise you are likely to see an increase in their range of motion. </span>\n\n<span style=\"font-weight: 400;\">Often as if by magic, calf tension is reduced, dorsiflexion is increased and your clients squat dramatically improves! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finding the root cause rather than following symptoms is what Biomechanics Coaches specialise in! </span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<p style=\"text-align: center;\">CONTACT rachel@biomechanicseducation.com FOR MORE INFORMATION!</p>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a>','When Stretching A Tight Muscle Doesn’t Work - A Look At The Calves!','','inherit','closed','closed','','19515-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',19515,'https://biomechanicseducation.com/?p=38681',0,'revision','',0),(38682,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">Strength training is what the client came for right? So we should give them a lot of that right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Often as coaches and trainers we might feel concerned as to whether we engage our clients enough that they don\'t feel bored when THEY think they just wanna sweat and lift but WE want them to move better first...right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Recently the concept of actually preparing the body for exercise has surfaced, and I don’t mean what is traditionally considered a warm up. Traditional warms up come second in preparing to exercise because often we are coming at it with biomechanical adaptations due to our more and more techy, static lifestyles.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The lesson exercise professionals are starting to recognise is risk reduction and performance optimisation. This PREPARES the body for movement because……</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">GUESS WHAT?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...our bodies have forgotten how to move ‘normally’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The body is a </span><i><span style=\"font-weight: 400;\">Master Of Compensation </span></i>\n\n<span style=\"font-weight: 400;\">Brilliant at adapting to its surroundings </span>\n\n<span style=\"font-weight: 400;\">Fantastic at reserving energy</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However we are already pushed for time in our sessions and clients generally want the FUN STUFF! How on earth do we fit it all in?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me introduce you to NET Training…. Meaning “No Extra Time”. You see if we can bring in activities/exercises that are beneficial but don’t take up any extra time or interfere with their strength training then they don’t feel like they have lost out on anything.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I can’t claim the whole NET idea… but I can’t remember where I heard it. It might be from a book on building great habits, but I just can’t remember.</span>\n\n&nbsp;\n<h2><b>NET Training (No Extra Time)</b></h2>\n<h3><b>Fillers - What Are They?</b></h3>\n<span style=\"font-weight: 400;\">Here is a solution that we have discovered works fantastically within your clients training session and ticks every box for optimizing performance, reducing risk AND taking no extra time!!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You ready….??</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Net Training or ‘Fillers’ and iMoveFreely is a perfect example of these. This blog is about to show you a SUPER EASY way to:</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Educate clients </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Improve performance</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Reduce risk</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Engage clients even more </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Keep the sessions interesting </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Reduce their low grade aches and niggles</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">ALL THIS without taking up more time! </span>\n\n<span style=\"font-weight: 400;\">I know cool eh, read on….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is when iMoveFreely REALLY hits the mark….it doesn’t interfere with your recovery NOR your reps/sets. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In fact it’s also PERFECT for ‘looking busy’ between sets while still using your equipment &amp; someone is waiting to jump on. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me show you how you can use iMoveFreely as a FILLER, optimise performance &amp; reduce risk/recurring issues.....without using ANY MORE TIME!!  </span>\n\n&nbsp;\n\n<b>What Does iMoveFreely Look Like?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok so in a regular programme (I will keep it very simple here)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">SQUATS </span>\n\n<span style=\"font-weight: 400;\">BENCH </span>\n\n<span style=\"font-weight: 400;\">MILITARY PRESS</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s say REPS are x 8 Sets x 4</span>\n\n<span style=\"font-weight: 400;\">So in between each SET apply 1 round of an iMoveFreely technique.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For Example:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">4 Sign 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Squats x 8 reps</span>\n\n<span style=\"font-weight: 400;\">4 Sign 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Squats x 8 reps</span>\n\n<span style=\"font-weight: 400;\">4 Sign 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Squats x 8 reps</span>\n\n<span style=\"font-weight: 400;\">4 Sign 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Squats x 8 reps</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This would be non stop but the 4 Sign is still a recovery due to the nature of it.</span>\n\n<span style=\"font-weight: 400;\">Another Example:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pec Minor MET 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Bench x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Pec Minor MET 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Bench x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Pec Minor MET 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Bench x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Pec Minor MET 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Bench x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Pec Minor MET 1 rep each side (20% 20 seconds) </span>\n\n<span style=\"font-weight: 400;\">Bench x 8 reps</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Median Nerve Mobilisation x 6 reps each side</span>\n\n<span style=\"font-weight: 400;\">Military Press x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Median Nerve Mobilisation x 6 reps each side</span>\n\n<span style=\"font-weight: 400;\">Military Press x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Median Nerve Mobilisation x 6 reps each side</span>\n\n<span style=\"font-weight: 400;\">Military Press x 8 reps</span>\n\n<span style=\"font-weight: 400;\">Median Nerve Mobilisation x 6 reps each side</span>\n\n<span style=\"font-weight: 400;\">Military Press x 8 reps</span>\n\n<span style=\"font-weight: 400;\">These are just examples and by no means strictly these combinations however it would be ideal to build a whole tool box of FILLERS to use between sets for all of the reasons given above.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Obviously the ideal situation would be to do ALL the required iMoveFreely techniques BEFORE the session. However, until clients recognise their value we must somehow drip feed ideas to them during our sessions and what a great way to do so without losing or reducing the volume of their endorphin hitting strength exercises in the training session.</span>\n\n&nbsp;\n<h3><strong>What’s Next For You?</strong></h3>\nI hope that as a coach you have set yourself some goals this year for own personal development. Continuing development is essential to be able to continue to serve our clients to the highest level, don’t you agree?\n\nIt would be great to see you on our diploma or one of ours workshops, so if you would like to find out more about the <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Biomechanics Coach Diploma, then click here</a>, enter your details and let’s get on a call to see if its right for you. Or if you would like to dip your toe in and start with a <a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-taster/\">1-day workshop you can check those out by clicking here</a>.\n\n&nbsp;','How To Add Mobility To Your Strength Training With No Extra Time Needed (NET Training)','','inherit','closed','closed','','19426-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',19426,'https://biomechanicseducation.com/?p=38682',0,'revision','',0),(38683,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h1>And Why It\'s Your Job As A Coach To Make Sure They Don\'t</h1>\n<h2><span style=\"font-weight: 400;\">New Year, New You….</span></h2>\n<span style=\"font-weight: 400;\">That phrase will be plastered everywhere. Every gym, personal trainer, nutrition coach, everyone talks about it. Maybe I have even been heard saying it!!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The new year feels like a great time to start fresh, doesn’t it!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But when it comes to health and fitness we all know the trend…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The gyms get super busy for 3 weeks and then…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">…….NOTHING……..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s back to normal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why do people with such great intentions just disappear after a few weeks?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So many of them will literally NOT step back into that gym again for the year… even though they PAY their membership fees.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So….and listen carefully…. I believe it’s </span><i><span style=\"font-weight: 400;\">our responsibility as coaches</span></i><span style=\"font-weight: 400;\"> to make sure this doesn’t happen</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why Do People Stop?</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>Too Fast, Too Soon</strong> - go full throttle in every session, ache for 6 days after and think this sucks… because it does. The goal isn’t to not be able to walk!!</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>They Get injured</strong>… they haven’t worked out for 5 years, but workout as if they are an elite athlete…. Of course there is a chance they might break...</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>21 sessions in 21 days</strong>…. Even if they achieve it….they think…</span><i><span style=\"font-weight: 400;\"> I can’t keep this up I don’t have the time</span></i><span style=\"font-weight: 400;\">. I agree… you don’t need to workout 14 hours a week, but that’s what they do… it’s unrealistic</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>Too Strict on Nutrition</strong> - on top of the crazy intense workouts, they then decide to go full vegan… having watched Game Changers on Netflix, having eaten only meat and no veg since they can remember, they then spend 7 hours a day cooking and preparing their meals. They manage it for 3 weeks and then think…. Screw this I don’t have the time or energy for this. </span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because what they do is soooo unrealistic for long term lifestyle change, they give up.</span>\n\n&nbsp;\n<h2><b>What Can We The Coach/Personal Trainer Do?</b></h2>\n<span style=\"font-weight: 400;\">Well why is it our responsibility and what can we do?</span>\n\n<span style=\"font-weight: 400;\">THIS is precisely our job to make sure as many of those people continue these healthy habits forever….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">….Ok so how do we do it?</span>\n\n&nbsp;\n<h3><b>Educate</b></h3>\n<span style=\"font-weight: 400;\">Everyone that steps foot in your gym, new members, new pt clients, give them information that will actually help them get results. Give it for FREE! </span>\n\n<span style=\"font-weight: 400;\">By the way…. If you are a PT in a gym with loads of other PTs … what a way to stand out. There’s no catch, no email handed over, just great info given in welcome packs, or handed out to members. Who are they going to come and see if they decide they need some extra support?</span>\n\n&nbsp;\n<h3><b>Give Them ONE Thing</b></h3>\n<span style=\"font-weight: 400;\">Instead of giving them 700 things to do… give them ONE thing.</span>\n\n<span style=\"font-weight: 400;\">What’s the ONE thing that’s going to help that person get results in the next few weeks. One thing that is manageable, that is realistic.</span>\n\n&nbsp;\n<h3><b>Set the expectations early on</b></h3>\n<span style=\"font-weight: 400;\">If they think they are going to lose 6 stone in the next 3 weeks and you don’t tell them that’s not possible, or safe to try. You are setting them up to fail. Because when they don’t do it, they won’t be pleased by the 6 pounds they lost, they’ll be gutted it wasn’t more.</span>\n<h3><b>Support &amp; Accountability</b></h3>\n<span style=\"font-weight: 400;\">If you want people to continue long term, you need to check in with them regularly. Hold them accountable to their goals. Again trust me on this… not only will this help them achieve their goals, but they’ll actually be amazed that someone cares about them, someone actually listens to them.</span>\n\n&nbsp;\n<h3><b>Bonus… Build A Community</b></h3>\n<span style=\"font-weight: 400;\">Bring people together who are on a similar journey, and they will support and motivate each other. Facebook groups are such an easy way to do this. Invite your clients and anyone who wants support to your group.</span>\n\n&nbsp;\n\nAnd by the way, if you do these things, if you give people small, manageable changes to make, guess what.... In a years time, not only are they still going, but they really could be a \"New You\"... it just took a bit of time and patience to get there, but the important things is that they do.\n\n&nbsp;\n<h3><strong>What\'s Next For You?</strong></h3>\nI hope that as a coach you have set yourself some goals this year for own personal development. Continuing development is essential to be able to continue to serve our clients to the highest level, don\'t you agree?\n\nIt would be great to see you on our diploma or one of ours workshops, so if you would like to find out more about the <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Biomechanics Coach Diploma, then click here</a>, enter your details and let’s get on a call to see if its right for you. Or if you would like to dip your toe in and start with a <a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-taster/\">1-day workshop you can check those out by clicking here</a>.\n\n&nbsp;','New Year, New You...Why It Sets Up Gym Goers To Fail','','inherit','closed','closed','','19320-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',19320,'https://biomechanicseducation.com/?p=38683',0,'revision','',0),(38684,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">WOW! Another year ends &amp; this brings opportunities for developing &amp; learning from it as we move into a fresh one!</span>\n\n&nbsp;\n<h2><b>Plan For 2020 </b></h2>\n<span style=\"font-weight: 400;\">How do we create &amp; develop a realistic plan for an entire year when it can often seem completely overwhelming? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We want to do SOOO many things, yet we are already SOOO busy, where do we even start????</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok well, it’s well written that we should always start with the end in mind. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then we can plan backwards, to structure systematically what &amp; when to do things to take us toward the ultimate end goal. Like planning our training for a marathon!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are a series of questions to help you plan forwards from starting backwards…..</span>\n\n&nbsp;\n<h3><b>Question 1: </b><b><i>If you could see into the future to Christmas 2020 what would you like to think your circumstances would be then, that are different to what they are right now?</i></b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe it is to have 10 more clients or 1 new staff member. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe it is to be a Biomechanics Coach or qualify at L4 in something?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe it is move house, own a premises or clinic.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It can be as dramatic or undramatic as you feel, it is all about vision. </span>\n\n<span style=\"font-weight: 400;\">Actually take time out to consider realistically where you would like to be in a years time? Don’t hold back!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I would even go as far as costing it all out. If you want a new house… how much will you have to save each month? Want to take an extra holiday…. How much do you need to save? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember, your business is there to help you create the life you want! But it doesn’t happen by accident. You have to know what you’re aiming for.</span>\n\n&nbsp;\n<h3><b>Question 2: </b><b><i>What steps would it take to achieve that desired goal?</i></b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This takes some time as each &amp; every single step must be laid out very clearly, in timing order so that you can develop a strategy.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you start going through all the things you need or could do to make that goal a reality is where it can very quickly become overwhelming. So what I want you to do is the following…</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Write down ALL the ideas you can think of that will help you get towards your goal. Go crazy… every idea however mad it seems, big or small, anything you want to do… write it down.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Highlight the 3 actions that you think will have the biggest impact on your business.</span></li>\n</ol>\n<span style=\"font-weight: 400;\">We often get so caught up being busy, doing tasks and activities that never actually drastically move the needle. Always remember Paretos law…</span>\n\n&nbsp;\n<h4><b>The 80:20 Rule</b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">80% of your results will come from 20% of your efforts!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So make sure you focus your efforts on the important things first! Work out what you think those things in the 20% are that will generate the 80%!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then take those 3 core goals and let’s break them down into their parts. It’s very rarely one task to complete. It will take a series of tasks and actions… so what are they?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So let’s look at an example. Perhaps you decide that in order to really grow your business you need to hire a member of staff. Perhaps an admin assistant or another coach to work with you.</span>\n\n&nbsp;\n<h4><b>Goal = Get a new member of staff</b></h4>\n<span style=\"font-weight: 400;\">Step 1 - Decide what you want them to contribute, skills, hours, arrangement (consultant or employed) </span>\n\n<span style=\"font-weight: 400;\">Step 2 - Design an advert</span>\n\n<span style=\"font-weight: 400;\">Step 3 - Make advert available to potential professionals </span>\n\n<span style=\"font-weight: 400;\">Step 4 - Create job description </span>\n\n<span style=\"font-weight: 400;\">Step 5 - Arrange interviews </span>\n\n&nbsp;\n<h3><b>Question 3: </b><b><i>Can the steps be slotted into a timeline that you feel is realistic?</i></b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now once you have broken down the 3 core actions, let’s put them on a timeline… a realistic one, but I still like to add a bit of pressure to a job. How often do you have a deadline that’s months away and still you end up doing most of the work 3 days before its due.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Creating deadlines based upon your present and projected schedule. </span>\n\n<span style=\"font-weight: 400;\">For this example of finding a new staff member, if you have decided you want them up &amp; running by xmas 2020, this gives you plenty of time to add the above steps into your year planner. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Step 1 - by Feb</span>\n\n<span style=\"font-weight: 400;\">Step 2 - by Mar</span>\n\n<span style=\"font-weight: 400;\">Step 3 - April-July</span>\n\n<span style=\"font-weight: 400;\">Step 4 - July</span>\n\n<span style=\"font-weight: 400;\">Step 5 - July-Aug</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Etc etc</span>\n\n&nbsp;\n<h3><b>Question 4 - </b><b><i>What is your PLAN B? </i></b></h3>\n<span style=\"font-weight: 400;\">This is a really important one!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What if you cannot find the right person? </span>\n\n<span style=\"font-weight: 400;\">What if this idea changes? </span>\n\n<span style=\"font-weight: 400;\">What does this mean for your business? </span>\n\n<span style=\"font-weight: 400;\">What other ideas do you have to solve your problem?</span>\n\n&nbsp;\n<h3><b>Question 5: </b><b><i>Do I feel this is still the right vision now I have planned it out?</i></b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Challenge everything - over &amp; over again.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You know that’s my philosophy by now, and it includes my own goals and vision. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Every now and again, when people go through this process, they realise that they don’t want a particular goal, or perhaps aren’t willing to do the things it’s going to take to get them there.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Or sometimes, they feel like they could actually accomplish MORE! You see when you break things down, it becomes much more manageable.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Often they realise that getting to their end goal actually isn’t as far away as they feel it is now. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does your vision get you excited?</span>\n\n<span style=\"font-weight: 400;\">Are you excited to get out and attack it next year? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If so…. You’re on the right track!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT… a word of warning… a BIG Goal will cause an element of FEAR! That’s ok! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">That means you are pushing your boundaries, heading out of your comfort zone and leveling up! That’s a good thing!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Don’t be put off by the fear! Acknowledge it and use it!</span>\n\n&nbsp;\n<h3><b>Question 6</b><span style=\"font-weight: 400;\">:</span> <b><i>Are you always conscious of the things you have already achieved?</i></b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Something I learned was to write plans, dreams, visions down &amp; re-visit them. Often we are so lost in the next goal, or vision, that we forget to recognise how successful we already are. Just because your goal posts have changed doesn’t mean you shouldn’t celebrate the previous success!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So let’s celebrate our previous successes this New Years Eve 2019!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have fun!</span>\n\n&nbsp;\n\n&nbsp;\n\nP.S. If one of your goals is to do more CPD, learn a new skill set and be able to serve your clients to an even higher level then I would love to have you on one of our Diplomas or Workshops in 2020.\n\nTo find out what is the best route for you to go down then let’s have a chat and see where you are at now and what you want to achieve with your coaching.\n\nWe have various payment plans available for our courses, just in case you are concerned about payment… I know Christmas tends to be an expensive time of year, but I would hate for you to miss out on starting one of our diplomas.\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Just click here, fill in your details and let’s jump on a call.</a>','6 Questions To Ask Yourself To Make Sure 2020 Is Your Best Year Yet!','','inherit','closed','closed','','19203-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',19203,'https://biomechanicseducation.com/?p=38684',0,'revision','',0),(38685,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h2>Reflect, Celebrate &amp; Plan</h2>\n<span style=\"font-weight: 400;\">This is such a great time of year to reflect on what we have done, achieved and learned to then look forwards and plan our next 12 months.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I think as trainers and coaches we spend all of our time helping others, telling them to hold themselves accountable, track their results and celebrate their wins…. And then we fail to follow our own advice. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are self employed or have your own studio, it’s so easy to achieve goals and barely give them any acknowledgement as you fly onto the next one! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I know that’s not just me… right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So as we approach the end of 2019 I want to encourage YOU to take some time to reflect on the year. Look at what you have achieved.. Write it down and then celebrate the wins. Acknowledge the wins, give yourself a pat on the back. You are building a business and helping lots of people along the way…. Be proud of that!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we don’t celebrate the wins, then why are we doing this?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I thought I would share with you the things I am most proud of that happened for Biomechanics Education in 2019. One, because it holds me accountable to doing the exercise. Two, because you are a big part of this journey. Whether you are a Biomechanics Coach, in training to become one, or someone who likes to come on here and absorb the content, you <em>make</em> Biomechanics Education what it is. And so it only feels right to share the journey we have had with you!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here is the Biomechanics Education 2019 Year In Review:</span>\n\n<span style=\"font-weight: 400;\">Maybe you could try our model of looking at each month’s highlights….</span>\n\n&nbsp;\n<h3><strong>January</strong></h3>\n<span style=\"font-weight: 400;\">At the beginning of 2019 we had just moved into our brand new premises and were super excited about having a ‘fixed’ abode partnering with the awesome Aspire4Fitness Health Club/Gym! </span>\n\n<span style=\"font-weight: 400;\">Their style being right up our street!</span>\n\n&nbsp;\n<h3><strong>February </strong></h3>\n<span style=\"font-weight: 400;\">Saw the start of our ¼ 1 Diplomas in Biomechanics Coaching - NOW with both ELCAS registered provider status, meaning our courses are now funded by the M.O.D </span>\n\n<span style=\"font-weight: 400;\">AND</span>\n\n<span style=\"font-weight: 400;\">We got the YMCA awarding organisations backing to offer the L4 LBP qualification within our Diploma in Biomechanics Coaching for those who have an Exercise Referral Qualification </span>\n\n<span style=\"font-weight: 400;\">AND </span>\n\n<span style=\"font-weight: 400;\">We had our 6th annual conference and the 2nd Kaizen Project with lots of inspiring, knowledgeable and interesting lectures from industry leaders and celebrities like Eddie Hall, Jonathan Broom Edwards, Martin Haines, Ben Coomber, Mike Grice and Chris Wright….BTW - SAVE THE DATE - 2020 Kaizen Project is Saturday 10th October - see next week’s Juicemail!</span>\n\n&nbsp;\n<h3><strong>March</strong></h3>\n<span style=\"font-weight: 400;\">This month was our favourite annual event that is held in Blackpool. The International Fitness Showcase where we exhibit and lecture within the Spinning Conference alongside our partners at Athleticum &amp; Spinning. Such good fun &amp; such a great response to our 6 x lectures &amp; workshops! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Master Trainer Apprenticeship was well underway this month too! The team having done their AET training were now getting stuck into their assessor training. I cannot tell you how excited we are about this team of FABULOUS teachers!</span>\n\n&nbsp;\n<h3><strong>April </strong></h3>\n<span style=\"font-weight: 400;\">Belfast Diploma in Biomechanics Coaching kicked off &amp; our partnership with the Platinum Training Institute based in the Queen’s Belfast University, and was truly sealed! </span>\n\n<span style=\"font-weight: 400;\">With their 2020 plans to include our training programme within their Personal Trainer qualification! </span>\n\n&nbsp;\n<h3><strong>May</strong></h3>\n<span style=\"font-weight: 400;\">This month we launched our brand new <a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">Running Biomechanics Workshop</a></span><span style=\"font-weight: 400;\"> to a large group of trainers &amp; coaches with some AWESOME feedback. Written by world leader in Biomechanics, Martin Haines, this 1 day workshop is full of evidence based information - you missed it? Oh don’t worry, there are more scheduled for 2020</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also a highlight for this month for me was delivering a workshop at Mark Laws facility with a fantastic crowd! I have a lot of time for this man and so it was an honour to be invited over. </span>\n\n&nbsp;\n<h3><strong>June</strong></h3>\n<span style=\"font-weight: 400;\">While already heavily involved with the brilliant <a href=\"https://herspirit.co.uk/\" target=\"_blank\" rel=\"noopener noreferrer\">HERSPSIRIT app</a></span><span style=\"font-weight: 400;\">, by contributing free videos of iMoveFreely techniques you can apply at home….yes, get the app for more….all the HS coaches paid a visit to Earnst &amp; Young in London. This was a coaching celebration event alongside Coaching UK to encourage movement &amp; healthy choices via any means available - like the HS App. </span>\n\n<span style=\"font-weight: 400;\">However additionally this was where I became completely mesmerized by <a href=\"https://www.a-speakers.com/speakers/frank-dick-obe/?utm_source=google&amp;utm_medium=cpc&amp;utm_term=%2B%5Bfrank%20dick%20obe%5D%20%2B%5Bspeaker%5D&amp;gclid=CjwKCAiA__HvBRACEiwAbViuU6pRz4zPALRjy2w55HESBsERrg5zGj1sBg6jra2QVHFn7uQCHkQzWRoCxBcQAvD_BwE\" target=\"_blank\" rel=\"noopener noreferrer\">Frank Dick OBE </a></span><span style=\"font-weight: 400;\">, chief GB coach some years ago. I was SO captivated &amp; enthralled by his talk I booked him for this years Kaizen Project - yes he is our keynote speaker!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This month also saw us finally manage to arrange a meeting with <a href=\"http://www.canvastgo.co.uk/ftscotland/\" target=\"_blank\" rel=\"noopener noreferrer\">Fitness Education Scotland’s </a></span><span style=\"font-weight: 400;\"> founder, Paul Garvie. We have for some time been looking to partner up and work alongside each other in delivering high standards of health and fitness education. WATCH THIS SPACE!</span>\n\n&nbsp;\n<h3><strong>July </strong></h3>\n<span style=\"font-weight: 400;\">We are very impressed with the work <a href=\"https://www.cimspa.co.uk/\" target=\"_blank\" rel=\"noopener noreferrer\">CIMSPA</a></span><span style=\"font-weight: 400;\"> are doing to help improve standards in our industry. So I was invited along to contribute to a Pilates standardisation meeting at Sportpark, Loughborough University. WOW! Fascinating to hear 30 educators, employers &amp; industry representatives debating what they feel should make up YOUR industry recognised standard! Lots of passion &amp; disagreement with justifications &amp; well managed by CIMSPA facilitators.</span>\n\n<span style=\"font-weight: 400;\">If you are an employer, you too could come along &amp; offer your thoughts, it’s very interesting &amp; CIMSPA would love to hear from you!</span>\n\n&nbsp;\n\n<a href=\"http://www.fab-fitness.com/\" target=\"_blank\" rel=\"noopener noreferrer\"><span style=\"font-weight: 400;\">Mairi Taylor of FABfitness</span></a><span style=\"font-weight: 400;\"> ran an Aromatouch essential oils workshop at the Biomechanics Education Academy which I strongly recommend! Passion oozes our of her &amp; who doesn\'t love lying down, smelling essential oils for prolonged periods!!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally this month I flew to Cyprus to deliver 2 workshops to 26 wonderful exercise professionals - the only complaint I have about the entire trip was that it was over far too quickly! So going back in 2020 for a Diploma in Biomechanics Coaching! Whoo hoo!!</span>\n\n&nbsp;\n<h3><strong>August</strong></h3>\n<span style=\"font-weight: 400;\">Our link with the Edinburgh Napier University saw our Scotland Diploma in Biomechanics Coaching kick off. A superb group of practitioners who have been such a joy to work with since they formed such a bond they now work together at events! TEAM!</span>\n\n&nbsp;\n<h3><strong>September </strong></h3>\n<span style=\"font-weight: 400;\">Well I pretty much spent this entire month celebrating turning 50yrs of age! </span>\n\n<span style=\"font-weight: 400;\">It’s times like these when you find yourself taking stock of where you have come from, where you are &amp; where you are heading - ALL mine are really great places since the tough times bring lessons, the mellow times peace &amp; the good times a warm heart! </span>\n\n&nbsp;\n<h3><strong>October </strong></h3>\n<span style=\"font-weight: 400;\">We set up another PureGym Roadshow of workshops this month again &amp; after 5 in house workshops around the UK we are looking forward to doing more with this PT group thanks to Nik Hanley!</span>\n\n&nbsp;\n<h3><strong>November</strong></h3>\n<span style=\"font-weight: 400;\">This month I went to assess some Bristol Biomechanics Coach practical exams after Master Trainer, Tom Waldron delivered the entire course single handedly. </span>\n\n<span style=\"font-weight: 400;\">Bursting with pride would be an understatement as I watched every single learner demonstrated superb Biomechanics Coach practical skills - just their case study work to complete now! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also Tom delivered a private Biomechanics Coach Diploma module/workshop in Lewes.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">GREAT JOB TOM!! Thank you x</span>\n\n&nbsp;\n<h3><strong>December</strong></h3>\n<span style=\"font-weight: 400;\">WOW What an end to the year with a meeting at CIMSPA head office in Sportpark, Loughborough University. Alongside Martin Haines, we met with Nick Sellwood, who is the Chartered Status Assessor. </span>\n\n<span style=\"font-weight: 400;\">We discussed the <a href=\"https://www.cimspa.co.uk/chartered-status\" target=\"_blank\" rel=\"noopener noreferrer\">Chartered status</a></span><span style=\"font-weight: 400;\"> at length &amp; I have to say it looks phenomenal. So if you haven’t seen it yet go check it out on the CIMSPA website ASAP! It will dramatically alter the entire industry - come on get on board!</span>\n\n&nbsp;\n<h3><b>Now It’s Your Turn</b></h3>\n<ul>\n 	<li><span style=\"font-weight: 400;\">So how did your 2019 go?</span></li>\n 	<li><span style=\"font-weight: 400;\">Did you achieve all you wanted? (Did you have clear goals of what you wanted?)</span></li>\n 	<li><span style=\"font-weight: 400;\">If not, simply ask yourself why not? </span></li>\n 	<li><span style=\"font-weight: 400;\">What can you do in 2020 to make your come back?</span></li>\n 	<li><span style=\"font-weight: 400;\">How will you be making a difference?</span></li>\n 	<li><span style=\"font-weight: 400;\">How will you make sure your business serves YOU?</span></li>\n 	<li><span style=\"font-weight: 400;\">What training do you plan on attending?</span></li>\n 	<li><span style=\"font-weight: 400;\">What changes are you going to make to personally develop?</span></li>\n 	<li><span style=\"font-weight: 400;\">Who will you look to for help? As a mentor?</span></li>\n 	<li><span style=\"font-weight: 400;\">What excites you?</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Take some time, a few hours ideally, to reflect on 2019 and then create your vision for 2020!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BRING ON 2020, LET’S DO THIS!</span>\n\n&nbsp;\n\nIf one of your goals is to do more CPD, learn a new skill set and be able to serve your clients to an even higher level then I would love to have you on one of our Diplomas or Workshops in 2020.\n\nTo find out what is the best route for you to go down then let\'s have a chat and see where you are at now and what you want to achieve with your coaching.\n\nWe have various payment plans available for our courses, just in case you are concerned about payment... I know Christmas tends to be an expensive time of year, but I would hate for you to miss out on starting one of our diplomas.\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Just click here, fill in your details and let\'s jump on a call.</a>\n\n&nbsp;','2019 A Year In Review For Biomechanics Education','','inherit','closed','closed','','19124-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',19124,'https://biomechanicseducation.com/?p=38685',0,'revision','',0),(38686,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<span style=\"font-weight: 400;\">As Personal Trainers, we are well educated in HOW to teach exercises. There are many courses available to learn this critical skill, however I bet sometimes you feel anxious about whether you chose the right exercises for some of those tricky clients, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you have the tools to assess your clients to identify which are the best gym, body weight or free weight exercises to perform relative to their personal biomechanical needs? And when the client has low grade back pain for example, do you feel confident about training them safely? Maybe you are looking at some clients and wondering why on earth they move that way or which part of their body is the limiting one?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you feel you need a simple system to fill this critical gap and answer some of those common questions?</span>\n\n&nbsp;\n<h2><b>The Health Continuum</b></h2>\n<span style=\"font-weight: 400;\">First, we need to identify where our clients are on a ‘health continuum’, which is a scale from, potentially illness/injury to wellness and on to higher performance over time. All of our clients will be somewhere on this scale and we need to find out where they are before we can prescribe their conditioning exercises. Most exercises are suitable to most people; the problem is that invariably they can be prescribed at the </span><i><span style=\"font-weight: 400;\">wrong time</span></i><span style=\"font-weight: 400;\">. For example, lunges can help some people and hurt others. </span>\n\n<span style=\"font-weight: 400;\">If someone has a rotated pelvis and a functional leg length discrepancy with associated muscle spasm in their hips, then lunges will most likely not be good for them….at the time. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If they are functioning correctly around the pelvis, then lunges shouldn’t encourage injury or pain. That is one simple example demonstrating why some of your clients can do some of the exercises you prescribe, but others can’t.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To be able to identify where our clients are on the health continuum, we need to perform an assessment of their body or an intrinsic biomechanical assessment. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These assessments can be super simple to perform and can take as little as 10 minutes. Once we know where they are on the health continuum then we can progress them through a sequence of exercise progressions.</span>\n\n&nbsp;\n<h1><b>The Biomechanics Coach&#x2122; System</b></h1>\n<span style=\"font-weight: 400;\">In the Biomechanics Coach&#x2122; system, these progressions start by improving our clients\' inner system by ensuring their fundamental pelvic and spinal mechanics are ‘normalised’ and level to provide the foundation for normal movement. </span>\n\n&nbsp;\n<h2><b>Phase 1: Preparation &amp; Capacity (or Before The Core) </b></h2>\n<span style=\"font-weight: 400;\">In this first phase, any muscle imbalances are corrected with simple muscle energy techniques and tight nerves are addressed using nerve mobilisations. This phase can often be referred to as \'Before the Core\', because typically people will start their early exercise programmes with core stability-type exercises and they are simply not ready. That is why (core training) </span><i><span style=\"font-weight: 400;\">helps some people and hurts others (McGill) </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Many PT’s are recognising they don’t want to stabilise someone in a biomechanically incorrect position. So if we prepare their body first giving it some capacity back, then train stability and control it would make sense, right? </span>\n\n<span style=\"font-weight: 400;\">If we are not careful all we are doing is training people to compensate for their biomechanical problems rather than training correct movement patterns.</span>\n\n&nbsp;\n<h2><b>Phase 2: Stability &amp; Control</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So, once the preparation and capacity phase has been completed the client is then progressed to the next stage which gives them the ability to consolidate and learn new motor programming strategies in this stability and control phase. Here they are progressed through a series of isolated stability exercises and then work towards more functional stability patterns, in effect reprogramming their reflex core control.</span>\n\n&nbsp;\n<h2><b>Phase 3: Function &amp; Performance</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The final phase is where we teach them to use their new motor programming strategies in a more functional way and then progress on to functional velocity training. Here they work towards the functional patterns, velocities and tissue tolerances that are relevant to their ‘purpose’.</span>\n\n&nbsp;\n<h3><b>Philosophy</b></h3>\n<span style=\"font-weight: 400;\">We should always be challenging the latest \'current\' thinking. Just because something new, like functional training and perhaps Pilates comes along to the industry, does that mean all the work you’re doing at the moment doesn’t work anymore? Of course not, it just means we have something else to integrate into what we are already doing, not necessarily discredit them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The industry is often seduced by the \'next big thing\', but invariably this is simply another way of achieving certain targets for your clients, not necessarily the ONLY way and it certainly doesn’t mean you should be forgetting what you were doing - unless it’s been directly disproven. Nothing should ever be done in isolation, as the exercise model suggests, a series of progressions is the most effective way to progress exercise.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should focus our attention to real issues, and using all the proven methodologies available to us, answer questions like:</span>\n\n&nbsp;\n<ul>\n 	<li><span style=\"font-weight: 400;\">   How do I know which exercise to give to my clients – how do I know which will help them and which will hurt them?</span></li>\n 	<li><span style=\"font-weight: 400;\">   Apart from increasing the number of reps and sets, how should I be progressing my client’s exercise programmes?</span></li>\n 	<li><span style=\"font-weight: 400;\">   Why choose one particular exercise over another that seemingly does the same thing?</span></li>\n 	<li><span style=\"font-weight: 400;\">   Should I be using gym balls in their training and if so, when?</span></li>\n 	<li><span style=\"font-weight: 400;\">  Should I be using machines anymore? Are they ‘functional’? Does that matter?</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is often difficult to answer these questions for all our clients with any degree of honesty and accuracy with the assessments that are in place at the moment. Until the industry’s understanding of intrinsic biomechanics and its implications to exercise prescription is better understood our exercise prescription will not be as good or as safe as it should be.</span>\n\n&nbsp;\n\nIf you would like to find out more about the <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Biomechanics Coach Diploma, then click here</a>, enter your details and let\'s get on a call to see if its right for you. Or if you would like to dip your toe in and start with a <a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-taster/\">1-day workshop you can check those out by clicking here</a>.\n\n&nbsp;','Intrinsic Biomechanics for Personal Trainers - Knowing The HOW & The WHY For Exercise Prescription','','inherit','closed','closed','','19072-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',19072,'https://biomechanicseducation.com/?p=38686',0,'revision','',0),(38687,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h2><b>The SMART Question Challenge </b></h2>\n<span style=\"font-weight: 400;\">Today I have a challenge for you, but first we need to set some foundations…</span>\n\n<span style=\"font-weight: 400;\">A lot of coaches, I find are very curious… they like to explore, challenge themselves, learn new things and with that comes a lot of questioning.</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Do you ask a lot of questions?</span></li>\n 	<li><span style=\"font-weight: 400;\">Do you get into debates online about anatomy or exercises?</span></li>\n 	<li><span style=\"font-weight: 400;\">Maybe you are in a Facebook group that is set up to answer your questions, or for you to find answers? </span></li>\n 	<li><span style=\"font-weight: 400;\">Do you get frustrated by some of the answers you get?</span></li>\n 	<li><span style=\"font-weight: 400;\">Have you ever considered that the answer you get may in fact highlight a problem with the quality of your question?</span></li>\n</ul>\n<span style=\"font-weight: 400;\">This isn\'t just my opinion, you will here my buddy, Ben Coomber of the BTN Academy, also advocating the practice and use of great questions for a better chance of getting good quality answers.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did your parents ever give you a stupid answer to a question, full well knowing what they were doing and then follow it up with…</span>\n<blockquote><span style=\"font-weight: 400;\"> “</span><i><span style=\"font-weight: 400;\">Ask a stupid question, get a stupid answer?”</span></i></blockquote>\n&nbsp;\n\n<span style=\"font-weight: 400;\">That was an early teaching moment for lots of us to make sure we asked the right question.</span>\n\n<span style=\"font-weight: 400;\">The question I would like to ask you is <a href=\"https://coachfoundation.com/blog/effective-coaching-techniques/\">are your questions S.M.A.R.T</a>?</span>\n\n&nbsp;\n<h3><b>Are You Asking SMART Questions?</b></h3>\n<span style=\"font-weight: 400;\">Yup I just made that a thing or maybe someone else did, in fact, use the SMART acronym in relation to great questioning &amp; I just </span><i><span style=\"font-weight: 400;\">thought </span></i><span style=\"font-weight: 400;\">I made it up...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here we will discuss and challenge the vague nature of many common questions since they </span>\n<ol>\n 	<li><span style=\"font-weight: 400;\">Do not equip one with enough information to respond with clarity </span></li>\n 	<li><span style=\"font-weight: 400;\">Leave room for ambiguity and a response that is coming from a different mindset to that of the person asking the question - which commonly leads to misinterpretation.</span></li>\n</ol>\n&nbsp;\n<h3><b>Cognitively Biased?</b><span style=\"font-weight: 400;\">  </span></h3>\n<span style=\"font-weight: 400;\">The most common question I get asked is </span><i><span style=\"font-weight: 400;\">“what\'s the best way to squat?”. </span></i>\n\n<span style=\"font-weight: 400;\">Well I am unable to answer this with such a poor quality of question, its far too ambiguous. Much more information is required to gain a decent response. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When I get asked this (which is a lot) my reply is always </span><i><span style=\"font-weight: 400;\">“why are you asking?</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The information needed to be in a position to offer a helpful reply is:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Goal</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Level/Experience</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Ability</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Injury History</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Mindset</span></li>\n</ul>\n<span style=\"font-weight: 400;\">Etc etc</span>\n\n<span style=\"font-weight: 400;\">Once this information is gathered a half decent reply is more likely to be coming your way!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet learners, and even my social media ‘friends’, often ask me ambiguous questions like</span><i><span style=\"font-weight: 400;\"> “what’s your opinion on…?”. </span></i>\n\n<span style=\"font-weight: 400;\">The very nature of this question fascinates me since why would my </span><i><span style=\"font-weight: 400;\">opinion</span></i><span style=\"font-weight: 400;\"> matter? The questions are more often than not technical in nature so a solution based response is in fact what most people are really after...my <em>opinion</em> is irrelevant!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all have a biased view of the world and if someone asks your </span><i><span style=\"font-weight: 400;\">opinion</span></i><span style=\"font-weight: 400;\"> on squatting for example it leaves far too much information out.</span>\n\n<span style=\"font-weight: 400;\">For example…...</span>\n\n&nbsp;\n<h3><b><i>Are Squats Dangerous?</i></b></h3>\n<span style=\"font-weight: 400;\">Imagine an article with this title. In fact, it wouldn\'t be uncommon in today\'s clickbait society. A reader might be thinking </span><i><span style=\"font-weight: 400;\">squats</span></i><span style=\"font-weight: 400;\"> are bad for us after reading an article about risk during squats. Yet the article was in fact related to the ‘overhead’ squat specifically for example. If the author didn\'t communicate well the specific style of squat or if the reader only read a portion of (or just scanned) the article this creates a room for misinterpretation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another reader might be left thinking of a bodyweight squat and develop a fear of squatting in general, even squatting down to her kids.</span>\n\n<span style=\"font-weight: 400;\">Yet these are very different variables being considered. The style or type of squat must be clarified since there are far to many variations of squatting to simply suggest... all squats are dangerous </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Asking great questions gives you a much better chance of getting a really good answer. </span>\n\n<span style=\"font-weight: 400;\">Questions that gain information that are:</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Specific - what type of squat? </span></li>\n 	<li><span style=\"font-weight: 400;\">Measurable - the range of motion?</span></li>\n 	<li><span style=\"font-weight: 400;\">Achievable - individual limitations? knowledge/language </span></li>\n 	<li><span style=\"font-weight: 400;\">Realistic - does it fit the person and the goal?</span></li>\n 	<li><span style=\"font-weight: 400;\">Timely - when do you need to know by? </span></li>\n</ul>\n<span style=\"font-weight: 400;\">This then gives more clarity to the subject being questioned like the example in the article </span><i><span style=\"font-weight: 400;\">Are Squats Dangerous?</span></i>\n\n&nbsp;\n<h3><b>Questions (And Answers) On Social Media</b></h3>\n<span style=\"font-weight: 400;\">Remember social media isn’t really monitored that heavily for ‘quality’ of even authenticity of the publisher/s… that’s YOU &amp; Me too by the way! So we are left to post pretty much whatever we want AND to choose who we question and who we choose to believe.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A great starting point is to ask yourself these questions first…</span>\n\n&nbsp;\n<ol>\n 	<li><span style=\"font-weight: 400;\">Why you’re asking? </span></li>\n 	<li><span style=\"font-weight: 400;\">Who are you asking?</span></li>\n 	<li><span style=\"font-weight: 400;\">The detail behind it the point of the question</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you want an opinion on something that someone has never experienced they surely cannot answer with integrity, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The key to great questioning is clarity in what you’re really trying to find out.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Poor Questioning</span>\n\n<i><span style=\"font-weight: 400;\">What’s your opinion….</span></i>\n\n<i><span style=\"font-weight: 400;\">What do you think about…</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These are often too open &amp; flaky </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Great Questioning:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Defines the problem </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Explains what it is your trying to find the answer to and for</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Keeps it SMART.</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This allows for a clear response from them since the goal is clearer</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are giving your opinion or your thoughts, or even presenting research to back up your argument… before you say anything….. ask yourself…Have I FULLY understood the question? Do I know EXACTLY what they are asking? If the answer is no, then I suggest responding with a question first to clarify their question and help them ask a better question. You might notice this is something I do a lot, and even more so on our courses.</span>\n\n&nbsp;\n<h2><b>SMART Question Challenge </b></h2>\n<span style=\"font-weight: 400;\">If you had just one question opportunity with the person you admire &amp; respect the most in your industry, what would it be &amp; to whom??</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Mine would be :</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To Professor Stuart McGill - \"If money wasn\'t an issue who would be your favourite clients type to train / coach exercise to and why?\"</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a>','How To Ask SMART Questions, To Get A Great Answer','','inherit','closed','closed','','18855-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',18855,'https://biomechanicseducation.com/?p=38687',0,'revision','',0),(38688,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h2><b>iMoveFreely For Life - Your Guide For Clients</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are moving less, feeling more aches &amp; pains, struggling with recurring injures &amp; feeling stressed much of the time.</span>\n\n<span style=\"font-weight: 400;\">While we know that exercise comes as a recommended activity, many consider ‘exercising’ is something to be done at the local gym, leisure centre or village hall class. </span>\n\n<span style=\"font-weight: 400;\">With that said we are starting to appreciate the value of movement improvement techniques &amp; not just simply having aesthetic goals or a sporting task to dictate their ‘exercise’ routine. However there is an easier was to move well &amp; move more. </span>\n\n<span style=\"font-weight: 400;\">One problem can be a lack of time, another barrier might be that they just don\'t enjoy \'exercising\' even though they know they feel better afterwards &amp; then there is the fact many just aren\'t aware of how simple it can be to improve movement frequency &amp; quality.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So we need to make it clear &amp; simple for our clients…by simply adding one thing at a time regularly &amp; consistently this can result in.....burning more NEAT Calories!</span>\n\n*Non Exercise Activity Thermogenisis - basically the calories you burn from just moving as oppose to specifically \'exercising\'\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">More energy</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Less pain </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Less fatigue</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Less stress</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Improved mental health </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Improved heart health</span></li>\n</ul>\n<span style=\"font-weight: 400;\">......to name a few!</span>\n\n<span style=\"font-weight: 400;\">Therefore this blog aims to offer insights, ideas &amp; suggestions that we can offer to support those who just don\'t have time, don\'t like \'exercise\' or struggle to be consistent. </span>\n\n&nbsp;\n<h2><b>Tip 1 - Digital de-clutter</b></h2>\n<span style=\"font-weight: 400;\">Encourage clients to consider time limits which can now actually be set into iPhones! </span>\n\nSwitch OFF all alerts &amp; set times when you will allow yourself 20-30 mins, maybe morning &amp; evening, to catch up on social stuff\n\n<span style=\"font-weight: 400;\">Scrolling through instagram reels or Facebook for example can literally suck time away in a vacuum that will never be regained!</span>\n\nAsk your clients how they feel about this, ask them what they think they could do differently.\n\n&nbsp;\n<h2><b>Tip 2 - Walk more</b></h2>\n<span style=\"font-weight: 400;\">Walking at every opportunity….this has got to be one of the easiest things to start doing to add to the *NEAT calorie count!</span>\n\nYou may, or may not, already know that 10,000 steps a day should be the goal - no matter when, how fast or even in several periods throughout the day rather than one big long walk.\n\n<span style=\"font-weight: 400;\">Very often we form habits to make ‘life easier’ even though it reduces movement opportunities. </span>\n\nAsk your client if they can think of an opportunity to add extra walking or steps into each day, a little each day &amp; consistently = a big difference over time!\n\n&nbsp;\n<h2><b>Tip 3 - Wriggle &amp; fidget</b></h2>\n<span style=\"font-weight: 400;\">It’s good to wriggle, fidget &amp; alter position regularly while sitting for achieving extra *NEAT calorie burn. Yet we are conditioned from a young age to sit still at school or college. </span>\n\n<span style=\"font-weight: 400;\">If clients are going to sit for long periods ask them to alter their position frequently, maybe using a reminder alert from a device every hour. The alteration doesn\'t need to be dramatic, maybe just have a variety of sitting height options. Foot stools, chairs, boxes to place the computer on so you can stand for a bit &amp; maybe a kneeling mat.</span>\n\nMaybe ask the client how they might feel about sitting on the floor for a period of time in the evenings. This is less \'comfortable\' and therefore increases the desire to fidget &amp; wriggle more.\n\nWhy not ask your clients whether they might try spending time on the floor &amp; if they have a foam roller or tennis ball they could use that to massage their buttocks, thighs or calves even while catching up on their favourite TV programme.\n\n&nbsp;\n<h2><b>Tip 4 - Cook from scratch</b></h2>\n<span style=\"font-weight: 400;\">Actually cooking from scratch has 2 fabulous health benefits for clients! </span>\n\n<span style=\"font-weight: 400;\">No packets or tins means not only are they going to eat healthier but chances are they will need to chop, slice &amp; peel more too which adds to their *NEAT calorie count yet again! </span>\n\nGetting others involved makes for quite a social event in the kitchen &amp; possible even some real quality time too!\n\nAsk your clients how they feel about this\n<h2></h2>\n<h2><b>Tip 5 - Grow your own veg</b></h2>\n<span style=\"font-weight: 400;\">Growing our own veg helps contribute even more to points on Tip No 4 &amp; 1!</span>\n\n4. Tasty fresh produce AND more moves during gardening!\n\n1.  Less screen time too!\n\n&nbsp;\n<h2><b>Tip 6 - Cycle</b></h2>\n<span style=\"font-weight: 400;\">Cycling instead of drive might be an alternative to walking when the distance is longer!</span>\n\nIt also reduces pollution &amp; gives an opportunity to soak up that all important Vitamin D too!\n\n&nbsp;\n<h2><b>Tip 7 - Ditch the TV</b></h2>\n<span style=\"font-weight: 400;\">Ditch the TV...YES sell it! This is a tough one for many but only because of our cultures conditioning!</span>\n\n<span style=\"font-weight: 400;\">Selling the TV might also improve relationships because we connect &amp; talk more without them! </span>\n\n<span style=\"font-weight: 400;\">And could save a fortune on broadband bills…!!</span>\n\n&nbsp;\n<h2><b>Tip 8 - Stop saying yes!</b></h2>\n<span style=\"font-weight: 400;\">Try to NOT say yes to everything! </span>\n\n<span style=\"font-weight: 400;\">Ok this might surprise some clients but in this present lifestyle, we are all rushing about doing ‘stuff’ because we can rather than we actually want or need to.</span>\n\n<span style=\"font-weight: 400;\">Talking clients though how to analyse each potential invitation to meet for a coffee &amp; seriously consider would it be more beneficial to say no &amp; exercise instead!? </span>\n\n<span style=\"font-weight: 400;\">Or what about suggesting a workout instead of coffee?</span>\n\n&nbsp;\n<h2><b>Tip 9 - Smile more &amp; a lot</b></h2>\n<span style=\"font-weight: 400;\">Smile more - ever heard of face yoga?</span>\n\nThere are lots of tiny muscles in our faces that show the expressions we use the most.\n\nLaughter lines are a joy\n\n<span style=\"font-weight: 400;\">Even just the act of smiling helps your face and body into a posture that could help improve our psychology. </span>\n\nWhy not try it now......go on...SMILE...keeping smiling....keep smiling .....how does it make you feel?\n\nWhy not pass it on to the next person you see?\n\n&nbsp;\n<h2><b>Tip 10 - Play</b></h2>\n<span style=\"font-weight: 400;\">Take a ball to the park, and go and just play, play games with kids or friends.</span>\n\n<span style=\"font-weight: 400;\">So simple but suggest they swap a tv night or afternoon for this once a week &amp; see what happens! </span>\n\n&nbsp;\n<h2><b>Tip 11 - Hoovering</b></h2>\n<span style=\"font-weight: 400;\">Enjoying the hoovering as it’s an excuse to move can also alter our perceptions of daily movement. </span>\n\n<span style=\"font-weight: 400;\">Ask clients how they would feel about considering hoovering as an excuse to move, or maybe sweeping up instead &amp; how about vigorously cleaning windows!</span>\n\n&nbsp;\n<h2><b>Tip 12 - Wash the car</b></h2>\n<span style=\"font-weight: 400;\">Washing the car - same as above!!</span>\n\n&nbsp;\n<h2>Summary</h2>\n<span style=\"font-weight: 400;\">Why do any of these……?</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Saves money</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Moves you more </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Saves time </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Makes better use of time </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Is soup for the soul </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Makes others feel good </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Makes you feel good </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Gives you a healthier life all round </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Without taking up EXTRA time…...mostly</span></li>\n</ul>\n&nbsp;\n<h3><b>Tasks For Your Clients </b></h3>\n<span style=\"font-weight: 400;\">In fact ask your client to grab a pen &amp; ask them to take a moment to imagine they have literally all the money they need - £10million</span>\n\n<span style=\"font-weight: 400;\">Now explain to them to imagine they have had it for some time, they did the big holiday, bought a car, nice house etc </span>\n\n<span style=\"font-weight: 400;\">Now ask them to….write HONESTLY…., exactly what their perfect day would go like...</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What time would they wake?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Where would they be??</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Who with?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What would they wear?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What would they do?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What makes them feel blissfully happy more than anything else?</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now show them that if they are really honest to go back &amp; check how much of it could actually be possible TODAY without a huge amount of money.</span>\n\n&nbsp;\n<h3><b>What Else Can They Do?</b></h3>\n<span style=\"font-weight: 400;\">What else could we help clients do today that can contribute to making them feel happier, fitter, healthier, </span><i><span style=\"font-weight: 400;\">richer</span></i><span style=\"font-weight: 400;\">?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A rich life doesn’t necessarily come from a huge bank account </span>\n\n<span style=\"font-weight: 400;\">A truly rich life comes from great relationships </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If driven solely by money, the emotional drivers are usually missing, financial wealth is less likely to come without emotional drivers as gaining money takes work! Right!?!</span>\n\n&nbsp;\n<h2><b>How Does iMoveFreely Fit In?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">I think we can all agree that a quality in life would include an absence of pain and the freedom to move freely and confidently. How many people wouldn’t wish for this? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">And what if I said people could work towards that in just a couple minutes each day? Potentially not needing ANY extra time at all! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the roles we have as trainers/coaches is to educate, facilitate and empower our clients on how simple this can be for so many that are living with chronic pain, recurring injuries or physical limitations. We have a duty of care to show others just how simple it can be. We are exactly that, facilitators offering our clients simple solutions that fit with their beliefs &amp; goals to support their choice only when they are ready, in altering their daily habits for habits that bring an improved quality of life.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The reason iMoveFreely is such a perfect fit is that no gym or equipment or even much energy for these fabulous special techniques is required to contribute to an improved quality of life.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Clients who choose to continue the lifestyles they lead (desk-bound, sedentary etc) will stil benefit from iMoveFreely techniques being introduced into their daily routines. </span>\n\n<span style=\"font-weight: 400;\">However, the techniques also work perfectly as a warm-up for our training sessions. </span>\n\n<span style=\"font-weight: 400;\">iMoveFreely is a series of special techniques we can demonstrate to our clients both online and in person, so they fit easily into our business model and also our clients daily life to initiate movement nourishment &amp; improvement.</span>\n\n&nbsp;\n<h2><b>How to fit iMoveFreely into your training programme.....</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). Taking Advantage of Recovery Time </span>\n\n<span style=\"font-weight: 400;\">One of the simplest methods if your clients are time restricted is to teach clients to perform iMoveFreely during recovery or between sets of strength training. </span>\n\n&nbsp;\n<h3><b>Example One: When Squatting</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Perform 4 Sign once per side (1 rep of 20% for 20 seconds)</span>\n\n<span style=\"font-weight: 400;\">Do your squat set (alter weights of necessary) </span>\n\n<span style=\"font-weight: 400;\">Repeat 4 Sign each side as before </span>\n\n<span style=\"font-weight: 400;\">Repeat for every set </span>\n<ol>\n 	<li><span style=\"font-weight: 400;\"> S. If you do more than 4 Sets of squats, do more sets of 4 Sign!</span></li>\n</ol>\n&nbsp;\n<h3><b>Example Two: When Deadlifting</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Perform pec min anti spasm  (1 rep of 20% for 20 seconds)</span>\n\n<span style=\"font-weight: 400;\">Perform banded scapular retraction off the rack </span>\n\n<span style=\"font-weight: 400;\">Perform deadlifts with a focus on scapular &amp; stiffness in spine </span>\n\n<span style=\"font-weight: 400;\">Repeat </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">2). Take Advantage of Sitting</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">LOVE this one! </span>\n\n<span style=\"font-weight: 400;\">Every single time your client sits down, on a bus, train, waiting for someone, in a meeting, cinema ....etc....teach them to do the relevant muscle energy techniques. </span>\n\n<span style=\"font-weight: 400;\">The beauty of iMoveFreely is that much of it can be done in a chair, so if your client finds they are having to sit for any amount of time they can DO iMoveFreely!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">3). Take Advantage of TV Time or Evenings </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is nothing wrong with a little downtime and for most that\'s going to be in the evening, maybe with the TV or with family.</span><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Life is what it is today so rather than expecting clients to fit in TIME to do iMoveFreely at a set time of the day, separate to the daily routine see how many ways you can teach them to combine them into things they are already doing.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">No excuses for NOT nourishing movement!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Be Happy </span>\n\n<span style=\"font-weight: 400;\">Move Freely</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h1 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h1>\n<h1 style=\"text-align: center;\">Ready for a game changing face to face workshop?</h1>\n<h3 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/#tab-description\" target=\"_blank\" rel=\"noopener\">If You’re Ready To Add The iMoveFreely Instructor Reconditioning Programme To Your Skillset Then Click Here!</a></h3>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" sizes=\"(max-width: 1024px) 100vw, 1024px\" srcset=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png 1024w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-300x150.png 300w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-768x384.png 768w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-600x300.png 600w, https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png 1225w\" alt=\"\" width=\"1024\" height=\"512\" /></a>\n\n&nbsp;','12 Simple Tips For Feeling Happier & Healthier','','inherit','closed','closed','','18735-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',18735,'https://biomechanicseducation.com/?p=38688',0,'revision','',0),(38689,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h2>Does Your Client Really Have Tight Hip Flexors? Or An Anterior Tilt Of The Pelvis?</h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We may hear client\'s saying they have been told they have an </span><i><span style=\"font-weight: 400;\">anterior pelvic tilt</span></i><span style=\"font-weight: 400;\"> &amp; </span><i><span style=\"font-weight: 400;\">tight hip flexors &amp;</span></i><span style=\"font-weight: 400;\"> it’s usually followed by something along the lines of… </span><i><span style=\"font-weight: 400;\">“I spend a lot of time sitting at a desk, so I’ve been told my hip flexors are weak and tight. I need to stretch them, strengthen them.”</span></i><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Perhaps you feel that one of your clients has tight hip flexors because they report them <em>feeling</em> tight when they extend their hip. Yet no matter how much they stretch them, nothing changes...maybe they have been told they have an anterior tilt because their ASIS are lower than their PSIS..?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Things to consider....</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Who decides the ideal pelvic posture considering we are all built differently?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Rarely have I seen a short psoas muscle during the Thomas Test.</span></li>\n</ol>\n<span style=\"font-weight: 400;\">While I am not suggesting there is no such thing as a perfect pelvic position or that no one has ever had a short hip flexor, I do believe there are other things we should consider before making these assumptions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How can we broaden our understanding of the things that influence our exercise prescription for those who feel they may have an anterior tilt to their pelvis or possibly tight hip flexors? What else could be happening?</span>\n\n&nbsp;\n<h3><b>What Is An Anterior Tilt?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">First of all, if our clients are symptomatic, or experience pain, then this alone can be a red flag and may require a referral to rule out any clinical risk.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However if they are pain-free and </span><span style=\"font-weight: 400;\">have no symptoms it important to let them know they are perfectly normal and having an tilt at the pelvis may well be nothing at al to worry about. W</span><span style=\"font-weight: 400;\">e all have the ability to anteriorly tilt our pelvis and this in itself isn\'t a diagnosis but could be an observation made by a practitioner who wants to help.</span>\n\nLordosis is also perfectly normal and occurs during an anterior tilting of the pelvis too, some people have a more exaggerated curve and others have less.\n\n<span style=\"font-weight: 400;\">We all have the ability to a tilt posteriorly too and present with a flatter lumbar spine.</span>\n\n<span style=\"font-weight: 400;\">Since we all have different genetics so it doenst make sense that we should all look the same does it?</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">So what is meant when a practitioner suggests you have an anterior tilt?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you stand up and stick your bottom out or arch your back you will be in an anterior tilt. The \'diagnosis\' of an anterior tilt will likely follow someone complaining of symptoms like back pain for example. If they present with excessive lordosis or an exaggerated lumbar curve and the ASIS appearing lower then the PSIS the practitioner may deduce that something is tight, causing this to become the default posture, maybe tension in tissues that tip the pelvic bowl down at the front, like psoas.  </span>\n\nWe base our understanding of anatomy on learning <strong><em>anatomical neutral </em></strong>which has been defined in this instance as the ASIS &amp; PSIS being at the same height. The problem is there are other things to consider like being born with a different shaped pelvis to a typical pelvis. We are as different on the inside as we are on the outside.\n\n<span style=\"font-weight: 400;\">The problem is if we assume the anterior tilted posture to be wrong and try to \'correct\' it when its actually typical or normal for them. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A posture by definition is simply a position of the body, there is not good or bad one, just the one we hold for too long, without variation. Consider a solider in \'good\' posture, hes going to ache after a day on duty! Alternatively consider demonstrating a \'bad\' posture, you probably wouldnt mind because you know it does hold risk when done for a brief amount of time. However sitting a desk day in day out, then in a car, then on the sofa could be inducing adaptions and compensations that result in symptoms over time.</span>\n\n&nbsp;\n<ul>\n 	<li><span style=\"font-weight: 400;\">How do we measure degrees of pelvic tilts? </span></li>\n 	<li><span style=\"font-weight: 400;\">How is the the benchmark defined and by whom? </span></li>\n 	<li><span style=\"font-weight: 400;\">How accurate is it? </span></li>\n 	<li><span style=\"font-weight: 400;\">What evidence is there for postural assessment? </span></li>\n 	<li><span style=\"font-weight: 400;\">Is postural assessment too subjective due to genetic differences?</span></li>\n</ul>\n<h2></h2>\n<h2><b>What &amp; Where Are The Hip Flexors? </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some have described the psoas\' role as more of a local and global stabiliser that assist in hip flexion as part of a conjoined hip movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A yoga teacher once suggested that “…</span><i><span style=\"font-weight: 400;\">they (hip flexors) aren\'t WEAK they are exhausted!”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Travell and Simon named it the</span><i><span style=\"font-weight: 400;\"> ‘hidden prankster’</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hip Flexors are basically..... muscles that flex the hip. </span>\n\n<span style=\"font-weight: 400;\">To contribute to this movement they must attach above and below the hip joint, which is where the pelvis and femur bones meet.</span>\n\n&nbsp;\n\n<strong>Primary Flexors of the Hip </strong>\n\n<span style=\"font-weight: 400;\">Psoas Major L1-4 transverse spinous processes to meet with iliacus to become the iliopsoas that ends up on the lesser trochanter of the femur.</span>\n\nPsoas Minor - only found in around 40-60% of us! Attaching to the lateral aspects of the 12th thoracic &amp;1st lumbar vertebrae from there it blends with the iliopsoas fascia.\n\n<strong>Other Hip Flexors </strong>\n\n<span style=\"font-weight: 400;\">Rectus Femoris - AIIS to Patella </span>\n\n<span style=\"font-weight: 400;\">Tensa Facia Latae - ASIS to ITB</span>\n\n<span style=\"font-weight: 400;\">Sartorius - (Longest muscle in the body!) ASIS to medial knee.</span>\n\n<span style=\"font-weight: 400;\">Adductor longus, brevis, magnus - superior pubis to medial femur </span>\n\n<span style=\"font-weight: 400;\">Gracilis - ishiopubic ramus to tibia</span>\n\n<span style=\"font-weight: 400;\">Pectineus - pubic bone to femur</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The actual muscles can be analysed and defined by their attachments and fibre directions but when considering how to help our clients better all we really need to understand is the movements they influence or inhibit.</span>\n\n&nbsp;\n<h2><b>How Do We Assess The Hip Flexors?</b><span style=\"font-weight: 400;\"> </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Or what may be a more helpful way of thinking about it, particularly for those who aren\'t so confident about their anatomy recall, is how to assess Hip Flex<em><strong>ION</strong></em>?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The most well-known way of testing if the hip flexors are inhibited is to use what is most commonly known as the Thomas Test.</span>\n\n&nbsp;\n<h2><b>The Thomas Test (Thomas, 1878)</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Thomas Test was named after Dr.Hugh Owen Thomas, and is now used to assess hip extensibility. So it requires being able to lie your client supine off the end of a massage table, supported from the back of the hip and up their spine. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They then lower one leg down to hang freely and you measure if the hip has the capacity to allow the leg to drop down ‘enough’. The knee is required to be below the hip to pass the test. </span>\n\n<span style=\"font-weight: 400;\">This is where the ability to measure should be…..</span><i><span style=\"font-weight: 400;\">should</span></i><span style=\"font-weight: 400;\"> be…</span>\n\n<span style=\"font-weight: 400;\">However this method of the test is being challenged since some programmes teach for the top hip to be flexed to 45 degrees, other interpretations suggest the knee should be pulled into the chest however a key component is of course the pelvic position. Should the knee be pulled into the chest too much the pelvis would tip back into a posterior tilt, thus lifting the hanging leg due to the femur pressing the illium back. So not as a result of tissue tension but due to bone on bone making this a void result or hip flexor extensibility. </span>\n\n<span style=\"font-weight: 400;\">Likewise if the hanging leg weighs the pelvis forward into an anterior tilt, the test will also be void due to the pelvic position lowing the knee in comparison to the hip.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also, the landmarks for measuring the degree of drop from hip to knee are often vague. The hip is a pretty large area and the knee, while smaller, also has a relatively large area to choose from as a landmark for a measurement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The MOST important things about a measurement is having as much objectivity as possible so the test can be reproduced accurately. A benchmark with standardisation that considers the variations in the body but also uses the bony prominences of the anatomy so we can all assess individuals in the same way.</span>\n\n&nbsp;\n<h2><a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC4991856/\" target=\"_blank\" rel=\"noopener noreferrer\"><b>The Modified Thomas Test</b></a></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Almost exactly the same but by ‘fixing’ the pelvis into a neutral position and using specific bony landmarks to measure the drop we can find some degree of accuracy for comparison.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So while your client is supine you take hold their top leg, then take hold the ASIS with your thumb as your hand grips around the back of the pelvis/ilium. Now while firmly holding onto their thigh, rock the leg into flexion and back while feeling the pelvis tilt back and forth. Once you feel the posterior tipping point bring the thigh to the position just ahead of the tip, ask the client to carefully hold the knee in this position. Now quickly move to the hanging leg side, crouch down to measure the angle from the centre of the greater trochanter to the lateral condyle of the knee. You could even photograph it with their permission.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Repeat the other side. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is not just a range test but also a symmetry test so we can compare one side to the other. </span>\n\n<img class=\"aligncenter size-large wp-image-18634\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/11/Modified-Thomas-Test-Biomechanics-Education-1-1024x683.jpeg\" alt=\"\" width=\"1024\" height=\"683\" />\n<h3><b>What’s A Good Measurement?</b></h3>\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Great question!!</span>\n\n<span style=\"font-weight: 400;\">Well to take into account natural differences between us if the lateral condyle is between parallel (to the greater trochanter) and 30 degrees lower than the greater trochanter that leg technically passes in terms of range. However the legs should drop by the same amount each side for symmetry, so this must be noted too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we often see is decent range on both sides but an asymmetry so the question is are hip flexor/s really ‘tight’?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well if tight means short then no but what causes the asymmetry?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What’s the issue? Can muscles like hip flexors be dysfunctional but long or lax or length tensioned?</span>\n\nor maybe they have hypertonicity?\n\n&nbsp;\n<h2><b>Master Of Compensation</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have discussed regularly how the body is amazing at compensating. So imagine for a moment what your wonderful integrated system might be thinking when your client sits a LOT…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“….</span><i><span style=\"font-weight: 400;\">Ok so we aren\'t using these hip flexors, they are simply wasting energy while not in use for such long periods, let’s save energy and down regulate them…”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What happens when we stretch them? Nothing...why not? They are technically ‘tight’ or possibly they are not even short....ok so what do we do?</span>\n\n<span style=\"font-weight: 400;\">Lets ‘stimulate’ them safely with a low grade muscle energy technique (MET) instead!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hip flexion <a href=\"https://www.biomechanicseducation.com/1333-2/\" target=\"_blank\" rel=\"noopener\">isometrically resisted at 20% muscular effort held for 20 seconds x 4 reps x 4 sets </a></span>\n\n<span style=\"font-weight: 400;\">Follow this with some funky hip extensor strength exercises - kettlebell swings, deadlifts, squats OR simply alternate a set of MET’s on either hip then a set of swings, squats - repeat 4 times.</span>\n\n<span style=\"font-weight: 400;\">This takes advantage of the law of reciprocal inhibition in your programming and makes for a very cool training session for the client! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So now you have the test necessary to assess what’s going on with your clients’ hip flexors and if they are in need of attention you know what to do. </span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\nrachel@biomechanicseducation.com\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-10836 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" alt=\"\" width=\"1024\" height=\"512\" /></a>','The Tight Hip Flexor Fallacy & The \'Modified\' Thomas Test','','inherit','closed','closed','','18628-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',18628,'https://biomechanicseducation.com/?p=38689',0,'revision','',0),(38690,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h1><b>Helping your clients run faster and reduce their risk of injury</b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you work with clients who run? </span>\n\n<span style=\"font-weight: 400;\">Whether you’re a running coach, triathlon coach, personal trainer helping people go from couch to 5k then this is a post for you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is so much conflicting advice in the running world and today we wanted to get to the bottom of some of the myths and advice out there.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These could be things your clients say or perhaps even things you say that could be slowing them down (in both actual times and their performance) or worse, increasing their risk of injury.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This week we are very honoured to have a world leader in intrinsic biomechanics Martin Haines, offer us insights into key questions and the evidence around running form.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So many of us have clients who run, or want to run, remain injury free and maybe even gain a few PB’s along the way!</span>\n\n<span style=\"font-weight: 400;\">How can we help?</span>\n\n<span style=\"font-weight: 400;\">Well with guidance and evidence based information from a world leader we can pass on great advice to our clients by staying up to date with superior quality information. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This guest blog from Martin also gives you an insight into the Running Biomechanics workshop we deliver in our programmes if you would like more practical skills to improve your service to clients who run…..</span>\n\n&nbsp;\n<h2><b>Is Running Form Important? </b></h2>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">The way you run can be the difference between fulfilling your potential and never quite being as good as you’d hoped. However, running form/technique/style is very personal and depends upon a number of factors which should be assessed by an experienced coach familiar with biomechanical principles or by a Biomechanics Coach.  There is little evidence that the alignment of various body segments statically or dynamically alters your injury risk or indeed improves performance, in fact you will see some runner’s in your group who demonstrate personalised styles and techniques that include for example buckling knees, flailing arms and flat feet and some seem to get injured no more than those who run with a more orthodox style (and sometimes injured less frequently!). </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">There are also a number of running coaches who encourage you to run using ‘their method’.  Their method may coincidentally suit you and work well, but unless you are analysed carefully and the results find that particular style is suited to your mechanics and anatomy, it may cause you more problems.  Don’t be seduced by pseudo-science suggesting one style suits everyone – you are an individual and deserve to be trained as one. One size does not fit all. Find your own style that works for you; and that may be simply going out and running, doing what you feel is comfortable.</span></i>\n\n&nbsp;\n<h2><b>It\'s Suggested That Everyone Should Have A Cadence Of 180 Strides Per Minute To Prevent Knee Injuries, Is This True?  </b></h2>\n<i><span style=\"font-weight: 400;\">Actually, 180 cadence (number of strides per minute or stride frequency) is supposed to be the ideal cadence for optimal running at elite level, but this is meant as a “barometer not a governor” (Hailey Middlebrook, Runner’s need 2019).  Whether there is an injury risk reduction is not clear. This cadence is based upon some anecdotal observations by legendary coach Jack Daniels as far back as 1984. Then a paper by Burns et al in 2019</span></i><i><span style=\"font-weight: 400;\">1  </span></i><i><span style=\"font-weight: 400;\">suggested that while this is an average cadence for many elite level distance runners (in fact Burns found it was 182 in his test cohort), cadence seems to be dependent upon the speed you run and your height.  The quicker you run, the higher your cadence (the greater number of steps you take per minute) and the taller you are, the lower your cadence (less number of steps required per minute as</span></i><i><span style=\"font-weight: 400;\"> you can take fewer steps per minute to cover the same distance)</span></i><i><span style=\"font-weight: 400;\">.  </span></i><i><span style=\"font-weight: 400;\">Weight, age, speed and running experience did not seem to be relevant.  You may also consider that </span></i><i><span style=\"font-weight: 400;\">cadence would likely depend upon your type of foot strike, any leg length discrepancies, hip mobility, calf mobility, nerve mobility in the back of your leg or even spinal mobility.  So, your cadence can be used to benchmark improvement, but there is no evidence to suggest that a higher cadence means you are more likely to prevent injury.</span></i>\n\n&nbsp;\n<h2><b>What Is Gait Analysis &amp; How Accurate Is It? </b></h2>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">This is an assessment of how you run; it can be as sophisticated as using high speed cameras and analysis software, but it can be as simple as someone watching you run. Both can be of value.  The sophisticated methods are accurate enough to be able to help you, but equally an experienced and skilled coach can be very helpful by visually analysing how you run too. You may also be aware that there are some “APPs for that” too.  Do be careful though, don’t change your style based upon an analysis that encourages you to run closer to a theoretically ‘correct’ style. Your anatomy and mechanical make-up may suit your current style better than something that is more orthodox or a coach’s preferred teaching method. Make any changes under close supervision and don’t change for changes sake.</span></i>\n\n&nbsp;\n<h2><b>I\'m Injury Free, But I\'ve Been Told My Form Is Off - Should I Change Anything?</b></h2>\n<i><span style=\"font-weight: 400;\">Despite our advances in technology and our understanding of the body, as well as training and conditioning techniques, many experts suggest that the old adage; “If it aint broke, don’t fix it”, still applies today.  Your body moves how it needs to move to accommodate your anatomy and personal mechanics. If you do have a personalised style, make sure anyone who wants to change that style (to make it theoretically better) first understands precisely why you are running as you do.  If you are running as you do to accommodate a genetically stiff hip for example and your technique is changed to something theoretically better, you may no longer be able to accommodate that stiffness and end up loading the hip, potentially causing problems. If the hip problem is something that is correctable then make the changes to your hip by exercise or treatment, and make sure that the rest of your body has the capacity to adapt to those changes, then make slow alterations to your style – if indeed any change is still necessary.  It takes a skilled coach and a detailed assessment to make these changes to minimise the risk of causing problems as your body adapts to the style changes.</span></i>\n\n&nbsp;\n<h2><b>I’ve Been Told I Pronate &amp; Have Been Advised To Wear Shoes To Help Support The Arch Of My Foot</b></h2>\n<i><span style=\"font-weight: 400;\">The term pronation and its relevance to running performance and injury prevention is still not fully understood.  Pronation is a rolling of the foot inwards and its part of the shock-absorbing mechanism when your foot lands on the floor; along with movement from your ankles, knees, hips and spine.  That’s the easy bit, the difficulty is establishing how much pronation is right for each individual. There some runners who seem to have a lot of pronation but who rarely get injured and others who seem to have much less pronation are injured frequently – clearly there is more to it than simply the amount of pronation.  The consensus from the recognised experts seems to be that if you are not getting injured frequently then there is no need to interfere with your pronation – and even if you are getting injured more than you would like, there may be other areas that you would look to address first anyway. This may include areas such as your pelvis, a dysfunction in which can create an apparent leg length discrepancy. This may not be an issue in itself, but your foot may alter its amount of pronation to accommodate the leg length discrepancy – so any apparent pronation issues may simply be a compensation from higher up the leg.  Perhaps you can see how correcting the problem at the foot in this example could be counterproductive. There are many more examples which can get quite complicated, so get checked out by someone who is an expert in the field before you change your shoes to support your arch or reduce your pronation. </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Anti pronator shoes or ‘corrective’ insoles do have their place and can help runners, but make sure they’re necessary and are prescribed at the right time.  Also note that insoles are often temporary measures to offload an injured structure until it has healed and your rehab is completed, they can then often be removed or at least the support reduced. </span></i>\n\n&nbsp;\n<h2><b>How Can The Upper Body Influence Running Form? </b></h2>\n<i><span style=\"font-weight: 400;\">Typically the upper and lower body are synchronised to optimise your running style.  So, if your legs have a personalised style your arms will likely move differently too to accommodate and visa versa. So, if you had a stiff upper back or a long-term shoulder injury for example, it is likely that your upper body movements will accommodate the resulting mechanical issues.  This will likely cause some form of compensation in your hips and/or legs too. This shows how important it is to make sure you deal with the causes of the movement style issues before you correct the style issue itself. Also, any change in arm movement style should be accompanied by suitable measures to understand the likely hip/leg compensations and then exercises to help them adapt should be provided. </span></i>\n\n&nbsp;\n<h2><b>Is There A Hierarchy Of Things That I Could Work On? And Where Does Running Form Adaptions Sit Into That? </b></h2>\n<i><span style=\"font-weight: 400;\">It is difficult to say with any certainty that injuries or running styles are linked to a particular body part, we perform any movement based upon learned patterns, movement experiences, our anatomy and past injuries.  There are however occasions when a ‘system re-boot’ is helpful. We are born with unconditioned reflexes</span></i><i><span style=\"font-weight: 400;\">2</span></i><i><span style=\"font-weight: 400;\"> which enable us to perform movements seemingly without thinking about them; such as when we are babies - lifting our head, rolling, lifting our hands to our mouths to feed for example. Then as get older we perform tasks that are less natural; such as sitting in chairs rather than sitting down on our haunches. We also get injured for various reasons and perform unusual movement patterns to protect the injured area – these movements can become permanent if you’re not careful.  All of these problems cause something called conditioned reflexes</span></i><i><span style=\"font-weight: 400;\">2</span></i><i><span style=\"font-weight: 400;\">; ones that our bodies have created to enable us to move to compensate for pain or unaccustomed stiffness or weakness. Our bodies were not originally designed to move in this way and so further problems can result due to the causes of these unnatural movements.  One way of identifying these causes is to be screened or tested – the resultant exercises to help with any issues can be thought of as a ‘system reboot’. Biomechanics Coaches or a Physiotherapist skilled in the science of Biomechanics could help you with this.</span></i>\n\n&nbsp;\n<h2><b>If You Could Offer The General Public One Piece Of Advice What Would It Be?</b></h2>\n<i><span style=\"font-weight: 400;\">Run how nature intended you to run, without any thought to it.  Progress your mileage slowly and let your body run freely. If you have regular or recurrent problems then look to understand why, by having an assessment of your body’s mechanics. Not necessarily a running analysis, an analysis of your body – to see if your body has the capacity to run the sort of distances and frequencies that you are doing. If it highlights correctable issues, then perform exercises to correct them and then carry on running using your previous style. Interestingly, you may find that your style changes naturally (without trying) when your body has the capacity to move differently, perhaps better. If the assessment shows that you have a structural or anatomical anomaly then you should see a coach to help you change your style to work around that anomaly, which may not be orthodox, but will work for you.  </span></i>\n\n&nbsp;\n<h3><b>Summary from Rachel</b></h3>\n<span style=\"font-weight: 400;\">So as you see Martin challenges some pretty common misconceptions about running form. If you would like to discuss any of these issues while having an opportunity to also learn practical skills to support you when coaching your running clients, why not join us for Running Biomechanics in 2020?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you want to help your clients run faster, achieve personal bests, or perhaps just reduce their risk of injury while training for that marathon they signed up for having never run before then this one day workshop is for you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By the end of the day you’ll know how to…..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Feel comfortable and confident in assessing your runners to help them gain their next PB!</span>\n\n<span style=\"font-weight: 400;\">Imagine you being known as the ‘go to PT’ for runners, even high level runners!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You will learn;</span>\n\n<span style=\"font-weight: 400;\">6 Foot Tests from the ‘Foot Posture Index’  </span>\n\n<span style=\"font-weight: 400;\">2 Calf Tests - Range &amp; Strength </span>\n\n<span style=\"font-weight: 400;\">5 Hip Tests </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Each of the above come with relevant biomechanical exercise interventions.</span>\n\n&nbsp;\n<h2>When &amp; Where Are The Upcoming Running Biomechanics Workshops?</h2>\n<span style=\"font-weight: 400;\">Running Biomechanics Workshops 2020</span>\n\n&nbsp;\n\n<b>Nottingham - </b><span style=\"font-weight: 400;\">Feb 29th or Oct 25th 10:00-4:00</span>\n\n&nbsp;\n\n<b>London - </b><span style=\"font-weight: 400;\">July 2nd 10:00-4:00</span>\n\n&nbsp;\n\n<b>Belfast  - </b><span style=\"font-weight: 400;\">Nov 15th 10:00-4:00</span>\n<h2></h2>\n<h2>What\'s the investment?</h2>\nJust <span style=\"font-weight: 400;\">£188 per person!</span>\n\n&nbsp;\n<h2>How Do I Book?</h2>\nWant to get booked on immediately? <a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\">Then click here and book your place! </a>\n\nif you have more questions and would like to find out more, just pop me an email at <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a> with the best number to reach you on and we can get on a call and have a chat about the workshop.\n\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\"><img class=\"aligncenter wp-image-18460 size-full\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png\" alt=\"\" width=\"1225\" height=\"612\" /></a>\n\n<b><i>References</i></b>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><i><span style=\"font-weight: 400;\">Burns GT, Zendler JM, Zernicke RF. Step frequency patterns of elite ultramarathon runners during a 100km road race. J Appl. Physiol (1985). 2019 Feb 1;126(2):462-468. </span></i></li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Karel Lewit. Manipulative therapy. Published by Churchill Livingstone, 2010</span></li>\n</ul>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Martin Haines DipRGRT MCSP SRP IBAM</span></i>\n\n<i><span style=\"font-weight: 400;\">Founder and Director Brytspark Limited</span></i>\n\n<a href=\"http://www.brytespark.com\"><i><span style=\"font-weight: 400;\">www.brytespark.com</span></i></a>','The Biomechanics Of Running - Myths & Advice','','inherit','closed','closed','','18457-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',18457,'https://biomechanicseducation.com/?p=38690',0,'revision','',0),(38691,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h1><span style=\"font-weight: 400;\">…. And What We Can All Learn From It!!</span></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">While most people were getting Halloween outfits sorted for themselves or their kids, I found myself in a chair, with a suction tube and a long spoon in my ear…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I was having my ears cleaned out and it was both horrendous and incredible!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There were so many lessons to learn from my experience that I just had to share it with you (no pictures I promise)...</span>\n\n&nbsp;\n<h2><b>Why EarWax Removal?</b></h2>\n<span style=\"font-weight: 400;\">Yes that’s right I had my ears cleansed of earwax and the experience I had was so impactful it made me cry and unable to speak (I know!!) for around an hour. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This goes all the way back to my childhood when I had numerous ear infections and experienced 2 x agonisingly painful perforated eardrums a couple of times to the detriment of my hearing. However, my hearing loss wasn’t so apparent at the time yet when I look back now I recognise how much it did indeed affected me.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My teachers would make me sit at the front because they thought I wasn\'t listening when in fact I hadn\'t heard them. It also made to feel stupid because I didn\'t know the answer to a question because I actually hadn\'t heard it the first time and I got so sick of asking people to repeat themselves that I gave up.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Giving up asking people to repeat what they had said inevitably brought more problems and in some cases, I simply avoided certain situations.</span>\n\n<span style=\"font-weight: 400;\">There were times when they looked at me when I replied with the answer I THOUGHT was required only to be made to feel more stupid as I had guessed wrong. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Years of this can have its toll on a kid and I just accepted that I probably was pretty dumb, when you get told often enough - I mean I am certainly NOT academic since every teacher I ever has felt compelled to tell me!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My enjoyment of music was possibly because of all of the above and also resulted in my enjoyment for expression through dance and became (god knows how!?!?!?) a professional dancer.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I also got away with my bad hearing in my decade working as a carer with the elderly and disabled. Many of them were not so great at hearing or being academic either so we all spoke pretty loud and about basic stuff. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway, over the years I gained confidence in myself but simply accepted my hearing loss as part of my poorly ears during my childhood.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then my boyfriend who uses earbuds at work suddenly lost his hearing so he found an ear clinic locally to go and get his ears checked out for excessive earwax. </span>\n\n<span style=\"font-weight: 400;\">His hearing returned immediately and he told me proudly about his MASSIVE lumps of earwax - gross eh! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He suggested I get mine checked out…”...</span><i><span style=\"font-weight: 400;\">you never know</span></i><span style=\"font-weight: 400;\">…” he said.</span>\n\n<span style=\"font-weight: 400;\">So I soon found myself on the way. As I drove there I realised how crackly my ears are and they always buzz a bit and I often get tinnitus too which I have simply learned to live with!</span>\n\n&nbsp;\n<h3><b>The Earwax Experience </b></h3>\n<span style=\"font-weight: 400;\">The ear clinic was in a high street and had very smart clear branding with lettering that gave the impression of intelligence - don\'t ask my why it just did.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I was greeted warmly by Alan who was going to check out my ears. </span>\n\n<span style=\"font-weight: 400;\">Dressed in a way that made him look clever (again he just did). He smiled as he looked straight at me and shaking my hand and invite me inside his room. The image he gave was just perfect - I trusted him immediately! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">His room was super clean, slightly clinical, with nice artwork of the inside of an ear hanging from the wall.</span>\n\n&nbsp;\n<h3><b>SMART Goal</b></h3>\n<span style=\"font-weight: 400;\">Alan started by asking me about my REASON FOR VISIT. As I explained my lifelong hearing issues, recent degradation of hearing and other symptoms he took notes, nodding and asking a few questions for CLARITY. </span>\n\n<span style=\"font-weight: 400;\">He paraphrased to let me know he heard what I was saying. He was sympathetic, understanding and made me feel like I must be the same as so many other patents he sees on a regular basis. I wasn’t necessarily losing my hearing. </span>\n\n<span style=\"font-weight: 400;\">He explained simply what often happens in cases like my REASON FOR VISIT and that he would do his utmost to help based upon my REASON FOR VISIT. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The goal was SMART and related specifically to my RFV</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">S - Ear wax removal</span>\n\n<span style=\"font-weight: 400;\">M - Locate wax and removal can be measured by extracting it.</span>\n\n<span style=\"font-weight: 400;\">A - Alan’s training, experience and equipment meant he felt it was achievable as he stated.</span>\n\n<span style=\"font-weight: 400;\">R - Realistically Alan had such a high success rate he promised free treatments if it wasn’t possible which showed confidence that the goal was realistic and he has integrity </span>\n\n<span style=\"font-weight: 400;\">T - Alan regularly does each ear in 10 minutes but professionally allows an hour per appointment giving us both a suitable time limit for the goal</span>\n\n&nbsp;\n<h3><b>The Procedure</b></h3>\n<span style=\"font-weight: 400;\">Alan explained all of the equipment in the room and what he would be doing step by step. This gave me absolute clarity and comfort in what to expect since there was some mild anxiety about what this was going to entail. </span>\n\n<span style=\"font-weight: 400;\">First, he asked if I would like to see what he could see as he looked in my ears. He could show me a magnified version on the screen in front of me.</span>\n\n<i><span style=\"font-weight: 400;\">“OH Yes please!”</span></i>\n\n<span style=\"font-weight: 400;\">I replied eager to understand my body better. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OMFG!!!! Can I say that in a blog? - apologies for the profanity but the sight that came into view on the screen was literally something out of a horror show….dark, grungy, cloggy, brown/black, matted awful horrid earwax! </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“I never realised it was that colour</span></i><span style=\"font-weight: 400;\">?” I said. Alan replied “</span><i><span style=\"font-weight: 400;\">oh this wax has been here for years and years, compacted down on top of more and more, so it becomes hard and dark and very difficult to remove by yourself”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet he seemed really confident he could remove it. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">PLEASE GET IT OUT NOW!!!</span></i><span style=\"font-weight: 400;\"> My mind screamed! I was now horrified, glad Alan had made me feel trust in him when I realised the horrific truth about what I was hiding in my ears all along!</span>\n\n&nbsp;\n<h3><b>Reality</b></h3>\n<span style=\"font-weight: 400;\">He explained it might feel tender at times as he might need to scrape away at my funky old ear wax and to let him know so he could ease off if it did. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I leaned my head to one side and he started by using a machine that I can only describe as a being like a dehumidifier with a very narrow suction tube with a thinker see-through tube connecting them. </span>\n\n<span style=\"font-weight: 400;\">The suction kicked on once he switched it on and was loud in my ear but it was kinda nice to think he would be pulling that sucker out of my poor ear. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Small glugs of brown sludge scooted up the tube, the sucking sound was weirdly satisfying as I imagined what it was removing. He would swap between the sucker and a teeny weeny very long-handled spoon thing that he used to scrape the sides with the help of a metal cone thing for positioning. </span>\n\n<span style=\"font-weight: 400;\">I meditated</span>\n\n<span style=\"font-weight: 400;\">However 30 minutes later he was still at it! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PHEW!! Even Alan confessed that this was a tough set of ear sludge. YUCK!</span>\n\n<span style=\"font-weight: 400;\">He sprayed olive oil in and started the other ear while the first one had a soak to loosen off.</span>\n\n<span style=\"font-weight: 400;\">All the time he is soothing me with confidence in his ability to remove what was beginning to feel like a small alien life inside my ears. </span>\n\n<span style=\"font-weight: 400;\">The second ear began to feel sore and I had to ask him to stop for a break so he went back to the first ear. He sprayed oil in then changed back to the first ear.</span>\n\n<span style=\"font-weight: 400;\">10 minutes more this side and suddenly it was like he had experienced something wonderful as he held proudly a large clump of disgusting ear wax the size of a squished olive!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Jeeeeeezee!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This just seemed to froth us both up into a determined frenzy to get the other side completely clear! </span>\n\n<span style=\"font-weight: 400;\">Scraping, sucking, scraping away and it was soooo tender but he was just as desperate to remove it as I was. He dug and scraped and sucked and FINALLY…..</span>\n\n<span style=\"font-weight: 400;\">10 more minutes later, totalling 1 hour altogether, the second alien appeared stuck to the end of his suction tube! No less disgusting either! </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“WOW” </span></i><span style=\"font-weight: 400;\">Alan exclaimed </span><i><span style=\"font-weight: 400;\">“This normally takes around 10 mins per ear &amp; yours is probably the second toughest ear wax removal I have done in my career! </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ah the honour! </span>\n\n&nbsp;\n<h3><b>My Life Changed In That Moment</b></h3>\n<span style=\"font-weight: 400;\">Total elation first, then wait what sorry your shouting Alan, ssshhhhh WHOAH Hang on a minute why do I want to cry? It was THAT painful but, just a minute, I can actually hear crystal clearly! Like TURN THE SOUND DOWN FFS!!</span>\n\n<span style=\"font-weight: 400;\">I was smiling like a kid trick or treating with their pumpkin bursting with sweets already</span>\n\n<span style=\"font-weight: 400;\">My face was aching from smiling as I shook Alan’s hand vigorously, he was smiling too and I think he understood because as I was leaving saying thank you over and over I was almost crying, overcome with the joy of sound.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">And then I was outside in the street with everyone walking around as if no miracles had occurred, like it was another normal day, shopping and MAKING SO MUCH FREAKIN NOISE!!! JEEEZE SHHHHHHHHH EVERYONE!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then there were tears as I stumbled back to my car due to the amplification of my sense altering my balance somehow.</span>\n\n<span style=\"font-weight: 400;\">Unable to call my boyfriend because I knew I wouldn\'t be able to speak and because of the hyper sensitivity of my ears. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I drove home smiling</span>\n\n<span style=\"font-weight: 400;\">I had to turn my stereo down</span>\n\n<span style=\"font-weight: 400;\">I enjoyed sounds </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally I did call my boyfriend and had to put him on loud speaker because my hearing was so sensitive against the phone. I filled up again as I described my experience.</span>\n\n&nbsp;\n<h2><b>What Lessons Can We Learn From This?</b></h2>\n&nbsp;\n<h3><b>Tip One - Subject Lines</b></h3>\n<span style=\"font-weight: 400;\">Firstly email headers are vital to encouraging your followers to actually be motivated to open &amp; read what you have to say, so we are constantly having to come up with interesting titles. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Mine has relevance because of the time of year and also an experience I had that taught me several things about my own business.</span>\n\n<span style=\"font-weight: 400;\">By relating to a current event, you enter the conversation people are already having</span>\n\n&nbsp;\n<h3><b>Tip Two - Ask For Testimonials</b></h3>\n<span style=\"font-weight: 400;\">Always ask for feedback at the point when you see your clients joy at feeling successful! Ask them to answer a few questions on camera or to take 2 minutes to write down how they are feeling and why WHILE they are in that state or emotion. I would have literally sold this experience to anyone who asked me at this moment I wanted to </span><i><span style=\"font-weight: 400;\">scream</span></i><span style=\"font-weight: 400;\"> from the rooftops (see what I did there?) how amazing it was! </span>\n\n&nbsp;\n<h3><b>Tip 3: The Experience Matters</b></h3>\n<span style=\"font-weight: 400;\">What’s the first impression someone gets when they walk into your facility? From the look, the smell, to how they are greeted and everything in between. </span>\n\n&nbsp;\n<h3><b>Tip 4: Do Your Prices Reflect The Value?</b></h3>\n<span style=\"font-weight: 400;\">At £40 per ear, for what normally takes 10 minutes, you might think that sounds expensive.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But it’s not about the time I was there, even though I used my full hour. It\'s about the value the result brings.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">£80 for that feeling I talked about… worth it EVERY time! I’d pay it again tomorrow! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What results do you get your clients? Think about that? Helping people move better, allows them to play with their children pain free… that’s worth a lot of money!</span>\n\n&nbsp;\n<h3><b>Tip 5: Set Expectations</b></h3>\n<span style=\"font-weight: 400;\">One of the biggest reasons people get upset with a service is because their understanding of what results they can get are not realistic. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“I thought I was going to lose 3 stone in 3 days?”</span>\n\n<span style=\"font-weight: 400;\">It’s your job to make sure the expectations are clear and realistic. </span>\n\n&nbsp;\n<h3><b>Tip Three</b></h3>\n<span style=\"font-weight: 400;\">Be careful what you tell someone</span>\n\n&nbsp;\n<h3><b>Tip Four</b></h3>\n<span style=\"font-weight: 400;\">Get your earwax checked!</span>\n\n&nbsp;\n\n<hr />\n\n<h1 style=\"text-align: center;\">Are You Ready To Help Your Clients Move More Freely?</h1>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Click here if you would like to find out more about the Biomechanics Coach Diploma and let\'s have a chat</a></h3>\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter size-full wp-image-10836\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png\" alt=\"\" width=\"1225\" height=\"612\" /></a>\n\n&nbsp;','My Horrific Halloween Earwax Experience','','inherit','closed','closed','','18287-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',18287,'https://biomechanicseducation.com/?p=38691',0,'revision','',0),(38692,0,'2024-07-16 11:26:30','2024-07-16 11:26:30','<h2><b>Are You REALLY Committed To Your Professional Development?</b></h2>\n<span style=\"font-weight: 400;\">There is always one thing great coaches have in common…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They NEVER stop learning!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They never assume they know everything. The seek out experts, learn and grow… continuously.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They are great coaches BECAUSE they are great students!</span>\n\n&nbsp;\n<h2><b>When’s Your Next Course Booked?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When we speak with most personal trainers, sports therapists, sports coaches etc, they often have some course or workshop that they want to go on, but for whatever reason haven’t actually booked.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They KNOW it will improve their skills, they KNOW it will help their clients, they KNOW it will help their business, but they just don’t “...</span><b><i>find the time...</i></b><span style=\"font-weight: 400;\">” to research it more, or to simply sign up.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Where have you heard that excuse before eh?…. Oh yeah… your clients that don’t do what YOU ask them to after your sessions!! Right?!?!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s scary investing in yourself. we get it! BUT investing in yourself is the greatest thing you can do. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You see,......YOU are the only <em>limit</em> to your success</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By improving yourself, you get to increase the potential that YOU are able to reach.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are 2 types of development that we believe are key to all coaches...</span>\n\n&nbsp;\n\n&nbsp;\n<h2><b>On-Going Personal Development</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are big believers that coaches should ALWAYS be developing themselves. There should be on going, daily / weekly plan for personal development and education, like listening to podcasts and reading books.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We know that finding time can feel really challenging. You have those early mornings, split shifts, late nights and still a ‘to do’ list a month long, right? And that’s without your down time being scheduled in. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Actually one of the biggest reasons coaches don’t do this comes down to the fact it’s not scheduled into their diary. So here is a small tip, make sure your development time is booked in. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you drive to work, switch off the music and listen to podcasts or a book.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Don’t be the client who can’t FIND the time to exercise.</span>\n\n&nbsp;\n\n&nbsp;\n<h2><b>The One Big Course</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">For us, there should be at least one big skill development project each year.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Doing one course or workshop, that really pushes you, that challenges you, that helps you really grow as a coach.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When it comes to the one big course that could change your business into one that actually finally serves YOU… </span>\n\n<span style=\"font-weight: 400;\">Well, this is more of a decision to take action and book on!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s time you were a good client! It’s time you MADE the time to invest in yourself. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You are asking people to invest in you and yet you aren’t willing to invest in coaching yourself. How do you think you are going to sell coaching if you aren’t willing to invest in it yourself?</span>\n\n&nbsp;\n<h2><b>Stop Putting It Off</b></h2>\n<span style=\"font-weight: 400;\">We have spoken to a lot of coaches this year who have told us…</span>\n\n<span style=\"font-weight: 400;\">“I am definitely going to do this <em>at some point”</em></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We know that those people very rarely actually make the leap and do it. In fact, we often see or speak to them a year or 2 later and they haven’t done any further development and guess what… they’re exactly where they were before. Still not entirely happy but still wanting a different result.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Doesn’t that remind you of the person who complains about their weight, or their injury, but does nothing to actually fix it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Either do something about it, or stop complaining. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Agreed?</span>\n\n&nbsp;\n<h2><b>2020 Personal Trainer Goals</b></h2>\n<span style=\"font-weight: 400;\">Just like you set goals with your clients, we want you to set a goal for you to achieve next year for when it comes to your development. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If it’s to do a course, which course? </span>\n\n<span style=\"font-weight: 400;\">Go sign up to it now!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once you’ve made a decision, go and commit to it right now.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Don’t leave it till next week… or we both know that it will never happen. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sign up to it now! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Go look at their website, click the button that says find out more or sign up and take action!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If the company is anything like us, there are various different ways you can pay for the course. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So today’s post has really, hopefully, been a bit of a kick up the backside for those of you who haven’t been learning and growing recently.</span>\n\n&nbsp;\n<h3><strong>Your Challenge</strong></h3>\n<span style=\"font-weight: 400;\">In fact, the challenge we are going to leave you with is this…</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">30 minutes of personal development each day - podcasts, reading, watching - anything that is going to help you develop as a coach. Book it into your diary… now! If you are going to listen to podcasts, go download them and line them up for your car journey. Download an audio book. </span></li>\n 	<li style=\"font-weight: 400;\">Book on to one BIG course that is going to really take your skills to the next level. (Remember, if it scares you, it means it’s probably a good thing to do.. Easy courses… won’t push you to grow.)</li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now obviously we would love for the big course you do to be ours. We know it might not be and thats ok. We want all coaches to be developing themselves and our courses aren’t for everyone.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, for some of you, our Biomechanics Coach Diploma will be exactly what you need. So we have a bit of info and a promise for you...</span>\n\n&nbsp;\n<h2><b>The Biomechanics Education Promise</b></h2>\n<span style=\"font-weight: 400;\">We are going to make you a promise here, so open up your diary …. Yes right now...... waiting…. Ok so for those of you who have been meaning to book on for AGES see listed below options at ALL price points. So no matter what you feel comfortable with there is always an option for you to experience our training.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The Promise?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We ALWAYS promise you will get value, quality and skills that you can apply immediately into your business. We promise standards that are of the highest level in our industry because YOUR classroom experience is of utmost importance to us. We passionately care about your experience and we have a vested interest in your success. We can help more people through YOU.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So we are on the lookout for brand bearers who care, representatives of the intrinsic biomechanics &amp; iMoveFreely programmes to continue to grow our community of phenomenal professionals whose confidence does not exceed their skill set but DOES shine out in their facility. </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Don’t just take my word for it though, have a look at what these guys have to say about it:</span></h3>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">The iMoveFreely® programme changed the way that I teach every class &amp; client. I put this information into my Fitness Pilates, FFY &amp; Conditioning programmes to help my clients improve their movement &amp; prevent injury. </span></i><b><i>IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!” </i></b>\n\n<b>Jayne Nicholls Director Group X Training Ltd</b></blockquote>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">Hello Rachel,</span>\n\n<span style=\"font-weight: 400;\">Just wanted to say thank you so much for all of your help and support through doing the Biomechanics Diploma.</span>\n\n<span style=\"font-weight: 400;\">It has truly and honestly changed my life for the better.</span>\n\n<span style=\"font-weight: 400;\">When I signed up I was in a situation of being unsure where to take my business or whether to give up all together.</span>\n\n<span style=\"font-weight: 400;\">Doing the course has not only expanded my knowledge and given an increased skill base, but also totally lifted the work to another level! It’s helped with personal and business growth.</span>\n\n<span style=\"font-weight: 400;\">I have had support and access to services via the Biomechanics community which in 2 months has expanded my business, which is incredible.</span>\n\n<span style=\"font-weight: 400;\">The future is looking a lot more promising!</span>\n\n<span style=\"font-weight: 400;\">It’s instilled faith, confidence, excitement and a passion for the work I do, helping people to achieve their goals, and be even better versions of themselves.</span>\n\n<span style=\"font-weight: 400;\">It really is a supportive helpful, interesting community of people and further training. As long as I listen and do the work, there’s no reason why great things can’t be achieved!</span>\n\n<span style=\"font-weight: 400;\">Will highly recommend to others &#x1f601;</span>\n\n<b>Louise Pitt</b></blockquote>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">Gosh!! Thanks so much Rachel for amazing feedback super helpful!,</span>\n\n<span style=\"font-weight: 400;\">What a great way to start the New Year! It has been a truly wonderful course, have learnt so much and so grateful for all the teams support. Having opened my Pilates studio in September I felt a bit overwhelmed with everything, thank you for your patience and  giving me the extra time to complete my case studies, and yes can use them no worries.</span>\n\n<span style=\"font-weight: 400;\"> For sure will keep in touch, as you said this is just the beginning!! Looking forward to seeing you hopefully in June for the workshop, and looking forward to the next step L4 lower back.</span>\n\n<span style=\"font-weight: 400;\"> Have a great day, you have made mine!</span>\n\n<b>Lucia xxx</b></blockquote>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">Hi Rachel!</span>\n\n<span style=\"font-weight: 400;\">Firstly I wanted to thank you for a fab couple of days.  Really buzzing from it, and already thinking about how I will use it going forward.  I can\'t wait to start putting it into practice, and for the next workshop!</span>\n\n<span style=\"font-weight: 400;\">Thanks again, and see you next month.</span>\n\n<b>Tracy Swindell</b>\n\n<b>(I left a commercial gym &amp; doubled my salary in year 1 and predict triple year 2)</b></blockquote>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">You are such an amazingly passionate and inspiring lady I feel so lucky to have picked this course, and even more lucky to have you delivering it. </span>\n\n<span style=\"font-weight: 400;\">After spending those 2 days in the class taking in what I can, I actually leave feeling not just more knowledgeable but more enthusiastic about life in general, and I think that\'s all down to you. </span>\n\n<span style=\"font-weight: 400;\">I\'m not a very confident person at this time in my life but you put me at ease, you don\'t just rush through it you make time for everyone. Your always more than happy to be challenged on anything. </span>\n\n<span style=\"font-weight: 400;\">You\'ve got some teaching techniques that just work for everyone, understanding of where people are at, and give an explanation in a way that\'s suited to the individuals needs. </span>\n\n<span style=\"font-weight: 400;\">It\'s clear to see that you literally love, live and breathe what you do. </span>\n\n<span style=\"font-weight: 400;\">How you do what you do and make time for so many people, your drive and passion is just mind blowing, and i\'ll say again, truly inspiring. </span>\n\n<span style=\"font-weight: 400;\">For myself moving forward in life this course is probably the best thing I had ever done, so lucky that I didn\'t miss out on this. Thank you for all you do Rachel </span>\n\n<b>Tommy Berrabe </b></blockquote>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">Hi Rachel</span>\n\n<span style=\"font-weight: 400;\">I just wanted to thank you for your time and expertise over this weekend. You have invaluable knowledge but deliver the training in a practical way to suit the learners on the course (underpinned by the manuals) and at a level to suit all, whilst achieving the standards you require. The environment was informal, yet the emphasis on professionalism extremely high. The pace matched the needs of the whole group, giving time to ask questions and ponder on the new skills and knowledge and your method of questioning ensures learners are thinking critically and independently. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">For me personally, it has reiterated key points from the Biomechanics Trainer workshop and given me plenty of practical tips to develop my business further. This was exactly what I wanted to achieve from the course having noticed that I am not quite getting the results I think intrinsic biomechanics can offer my clients and their perception of the service provided is not always accurate. </span>\n\n<span style=\"font-weight: 400;\"> Looking forward to the next workshop :) </span>\n\n<span style=\"font-weight: 400;\"> Thanks again,</span>\n\n<b> Becky Eagling</b></blockquote>\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">I have been meaning to drop you an email. Myself and my clients have been buzzing with the remarkable improvements the screens and releases etc have achieved. </span>\n\n<span style=\"font-weight: 400;\">I have 1 client who has been struggling with a grumbly SIJ issue every time she squats or deadlifts. 10 days of 4Sign release and now squatting and deadlifting without any problems! </span>\n\n<span style=\"font-weight: 400;\">My Osteopath has been very interested in the courses and I wouldn\'t be surprised if she signs up for a course at some point.</span>\n\n<span style=\"font-weight: 400;\">Really looking forward to the next courses to build on the skills.</span>\n\n<b>Jason Howard</b></blockquote>\n<span style=\"font-weight: 400;\">  </span>\n<h2><b>Are You Ready To Commit To Improving Your Service?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Introducing you to the Biomechanics Coach Diploma...</span>\n\n<span style=\"font-weight: 400;\">Our Groundbreaking Diploma in Biomechanics Coaching is bridging the gap between the exercise and medical worlds.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It continues to have a reputation for giving personal trainers a much deeper understanding of the body and movement with evidence-based assessment skills for every joint in the body and all of the 3 subsystems including myofascial, skeletal and neural.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We enable learners to improve their anatomy knowledge &amp; interdisciplinary communication skills while introducing you to a fast-growing network of diverse professionals to gain second and third opinions from allowing you to become the confident practitioners we know you can be. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For those who also have an Exercise Referral Qualification we can upgrade you to Level 4 LBP with a few</span><b> extra exams</b><span style=\"font-weight: 400;\"> BUT this is not a requirement for gaining the Diploma in Biomechanics Coaching nor accessing it on as a stand-alone.</span>\n\n&nbsp;\n<h2><strong>SPECIAL OFFER - Ends December 16th 2019</strong></h2>\n<span style=\"font-weight: 400;\">Secure your spot for one of our 2020 diplomas before Dec 16th 2019 and you\'ll also get a special offer...</span>\n<h3>Option 1: Payment Plan Option - Total Investment = £2397</h3>\n<span style=\"font-weight: 400;\">£150 x 15 + 1 X £147 (Ends Jan 2021)</span>\n\n<span style=\"font-weight: 400;\">You get a goodie bag (including Wolverson lacrosse ball, resistance band, foam roller, iMoveFreely bag, colouring anatomy book)</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\"><strong>Option 2: Pay in Full</strong> </span>- Total Investment = £2397 + BONUSES</h3>\n<span style=\"font-weight: 400;\">You get a goodie bag as above <em>AND a 12 months IBA Membership worth £432</em></span>\n<h3>- Total Investment = £2397</h3>\n<span style=\"font-weight: 400;\">(inc clothing, online courses, portal, videos, resources and 4 extra face to face workshops etc)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These courses are already filling up so do not hesitate, do not miss out because you simply don’t take action. <a href=\"https://biomechanicseducation.clickfunnels.com/tell-me-more\">Click here to register your interest and chat with one of the team!</a></span>\n\n&nbsp;\n<h3><b>NOTTINGHAM <span style=\"color: #ff0000;\">(50% places already sold)</span></b></h3>\n<b>FRI-SUN </b>\n\n<span style=\"font-weight: 400;\">Mar 10th-12th Pelvic Spine Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Apr 17th/19th Shoulder, Knee/Foot Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">May 16th/17th Low Back Health Workshop </span>\n\n<span style=\"font-weight: 400;\">June 20th Exam </span>\n\n&nbsp;\n<h3><b>BELFAST </b></h3>\n<b>FRI-SUN</b>\n\n<span style=\"font-weight: 400;\">Apr 3rd-5th Pelvic Spine Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Jun 12th-14th Shoulder, Knee/Foot Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Oct 16th/17th Low Back Health Workshop </span>\n\n<span style=\"font-weight: 400;\">Nov 13th Exam </span>\n\n&nbsp;\n<h3><b>LONDON  <span style=\"color: #ff0000;\">(50% places already sold)</span></b></h3>\n<b>WED-FRI</b>\n\n<span style=\"font-weight: 400;\">Apr 22nd-24th Pelvic Spine Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">May 20th-22nd Shoulder, Knee/Foot Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Jun 18th/19th Low Back Health Workshop </span>\n\n<span style=\"font-weight: 400;\">July 30th Exam</span>\n\n&nbsp;\n<h3><b>SCOTLAND - AUGUST START</b></h3>\n<b>FRI-SUN </b>\n\n<span style=\"font-weight: 400;\">Aug 7th-9th Pelvic Spine Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Sept 11th-13th Shoulder, Knee/Foot Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Dec 4th/5th Low Back Health Workshop </span>\n\n<span style=\"font-weight: 400;\">Jan 2021 TBC</span>\n\n&nbsp;\n<h3><b>NOTTINGHAM - SEPTEMBER START</b></h3>\n<b>FRI-SUN</b>\n\n<span style=\"font-weight: 400;\">Sept 4th-6th Pelvic Spine Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Oct 2nd-4th Shoulder, Knee/Foot Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Oct 30th/31st Low Back Health Workshop </span>\n\n<span style=\"font-weight: 400;\">Nov 21st Exam </span>\n\n&nbsp;\n<h3><b>LONDON - SEPTEMBER START</b></h3>\n<b>WED-FRI</b>\n\n<span style=\"font-weight: 400;\">Sept 23rd-25th Pelvic Spine Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Oct 21st-23rd Shoulder, Knee/Foot Biomechanics Workshop</span>\n\n<span style=\"font-weight: 400;\">Nov 19th/20th Low Back Health Workshop </span>\n\n<span style=\"font-weight: 400;\">Dec 10th Exam </span>\n\n&nbsp;\n\n<b>If you are ready to invest in yourself then we want you to take action now. <a href=\"https://biomechanicseducation.clickfunnels.com/tell-me-more\">Click here, enter your details and let’s connect on the phone to see if this is the right programme for you. </a></b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">P.S. If you’re scared about going onto a course, it\'s ok. Pushing ourselves out of our comfort zones is scary. It’s a sign that you are doing something that is good for you!</span>\n<h2 style=\"text-align: center;\"><span style=\"color: #3366ff;\"><a style=\"color: #3366ff;\" href=\"https://biomechanicseducation.clickfunnels.com/tell-me-morea73nqyqr\">CLICK HERE to go and register your interest and request a call back from one of the team!</a></span></h2>\n&nbsp;','Be A Great Coach By Being An Even Better Student','','inherit','closed','closed','','18161-revision-v1','','','2024-07-16 11:26:30','2024-07-16 11:26:30','',18161,'https://biomechanicseducation.com/?p=38692',0,'revision','',0),(38693,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<span style=\"font-weight: 400;\">Whether it’s getting that “Insta Butt” (yes that’s a thing), building strength and power for rugby, or just simply building up an awesome amount of total body strength, the deadlift is a vital component of any programme.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have certainly discussed the Squat for some time now here at Biomechanics Education Academy and across all our social media platforms we have given you tips, maybe some new ideas and information on how to work out the best way to squat for you. We even delivered you guys a free squat seminar at HQ!</span>\n\n&nbsp;\n\n<span style=\"color: #ff0000;\"><i><span style=\"font-weight: 400;\">By the way, we are running another FREE SQUAT SEMINAR Nov 2nd 3-5pm in Nottingham - just send me an email to <a href=\"mailto:rachel@biomechanicseducation.com\" target=\"_blank\" rel=\"noopener noreferrer\">rachel@biomechanicseducation.com</a> with your name, email, contact number, profession &amp; reason for coming.</span></i></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Due to the results people are reporting in their squatting movement we are now getting inundated with new questions and one of those questions is...</span>\n\n&nbsp;\n<h2><b>What Is The Best Way To Deadlift?</b></h2>\n<span style=\"font-weight: 400;\">So to begin with, as we did with the squat, we will analyse this movement, try to understand its benefits, consider the contraindications and then explore the </span><span style=\"font-weight: 400;\">best questions </span><span style=\"font-weight: 400;\">to understand if the exercise is right for us or not. And if the deadlift is deemed to fit into your programming, which variation and why?</span>\n\n&nbsp;\n<h2><b>What Is The Deadlift?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The term dead-lift came about from the fact that it is a ‘lift’ of a ‘dead’ weight from the floor. In other words, unlike the squat there is no rebound effects from the descent to initiate the ascent because the move starts from the floor as a dead weight.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It also requires the lifter to be in a certain amount of hip flexion (style dependent) that requires a). good hip mobility b). a rigid controlled trunk to stabilise the spine &amp; shoulders during the lift</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So yet again, like the squat, it is a fundamental movement in life to move things from the floor. Imagine moving a chair from one area to another, you might hold the seat with both hands either side and lift it from a dead-weight to move it across the room. A chair, however, requires less range and likely holds considerably less kilos than the kind of deadlifts we see a powerlifter doing in a gym/competition and with a barbell for example!</span>\n\n&nbsp;\n<h2><b>Why Do Deadlifts As An Exercise?</b></h2>\n<span style=\"font-weight: 400;\">The deadlift requires predominantly, hip extension to initiate the lift from the floor. So we hinge forwards into a flexed hip position, take hold of the bar and stiffen the spine into a position that allows us to lift the deadweight. This is often one of the heaviest lifts we are physically able to perform since the hip extensors are, or should be, one of our most powerful muscle groups, predominantly the gluteus maximus that runs across the back of the hip. With a little help from the hamstring group that runs from the bottom of the hip (ischial tuberosity), to the back of the knee (tibia).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now, these muscles are used for all sorts of movements other than simply lifting a load off the floor, they contribute to propelling us forwards, the hamstrings flex the knee and also cushion us along with the buttocks (gluteus maximus) when we sit.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This mention of sitting is likely one of the contributing factors to why we may need to work these muscles more than we may have done in the past. We spend a lot of time sitting bent over our computers or watching TV sitting on them thus making them more and more redundant. This also means that when we want to use them they appear ‘lazy’ and under worked….because…..well they are!</span>\n\n&nbsp;\n<h3><b>Insta Butts!</b></h3>\n<span style=\"font-weight: 400;\">The posterior hip muscles have also become quite an aphrodisiac these days (apparently) thanks to Instagram and maybe Kim Kardashian. However many are resorting to surgery to achieve the fashionably large buttocks when simply lifting weights and eating well consistently can do this naturally.</span>\n\n&nbsp;\n<h2><b>The Deadlift Variations </b></h2>\n<span style=\"font-weight: 400;\">Now similar to the squat again there are going to be deadlift variations that suit certain genetics better due to joint angle variations etc. So when considering which one to use injury history, genetics and the goal are obviously to contribute to the one/s you choose for your client...</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Standard Deadlift</span></h3>\n<span style=\"font-weight: 400;\">Possibly the most commonly used because you simply have a midfoot stance, bend the knees, stiffen the spine &amp; lift, like a kind of bent over squat. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A lower risk by comparison to following examples in terms of joint ranges &amp; force of load (kilo dependant of course). </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The quads help out with the bend at the knee on this one similar to when we squat. The difference is the extra load on the spine extensors due to a greater forward flexion of the hip. More range, more risk but more benefit!</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Romanian Deadlift</span></h3>\n<span style=\"font-weight: 400;\">Also known as RDL this variation is generally performed with less knee flexion thus requiring more range at the hip. This will of course therefore give more work across that joint &amp; less across the knee into the quads. </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Rack Pulls</span></h3>\n<span style=\"font-weight: 400;\">This is in this blog since the joint actions and areas worked are fundamentally the same as in a deadlift. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However here we simply pull from the rack and replace for each each rep - Less working range means less risk so someone learning this movement </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Those concerned about lifting from the floor might consider this as an alternative to the deadlift.</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Stiff Leg Deadlift</span></h3>\n<span style=\"font-weight: 400;\">My favourite! This movement, exactly as it suggests, requires the lifter to keep a straight &amp; stiff leg / knee - It results in a much bigger ROM on hamstrings due to a bigger knee angle. </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Sumo Deadlift</span></h3>\n<span style=\"font-weight: 400;\">My least fav possibly due to my pelvic geometry. Performed with very wide foot stance like a sumo wrestler would stand with a wide foot position to avoid being toppled over by their opponent. This style of lifting a weight is often seen in powerlifting since this wide foot/knee position means the lifter is closer to the floor, thus leaving less range required to pull the weight from the floor. It also has less forward flexion at the hip thus loading the lower spine with slightly less range. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So the use of variations likely came about due to the risk factors a true deadlift can impose and to make the competition of lifting as much weight as possible from the floor easier. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Each can have varying degrees of range at an individual\'s joints - hip, knee and ankle as described above.</span>\n\n&nbsp;\n\n<b>Summary </b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So while it is an exercise that is often generalized we can see here how the variations can differ quite a bit. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You need to look at your client, assess their goals and their needs, look at what movements they need to create in their sport, als consider any joint limitations and then make a decision on which style of deadlifts most suit their programme and intrinsic biomechanics.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then, as we did with the squat, we can look out how using the Biomechanics Coach system we can see improvements in the deadlift by helping them move better. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For a much more extensive educational read please please read this by Greg Nuckols who is FANTASTIC at giving much more detail and evidence around the details of the deadlift for those wanting more ...</span>\n\n<a href=\"https://www.strongerbyscience.com/how-to-deadlift/\"><span style=\"font-weight: 400;\">https://www.strongerbyscience.com/how-to-deadlift/</span></a><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><span style=\"color: #3a9bfc;\"><a style=\"color: #3a9bfc;\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">If You’re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></span></h3>\n<img class=\"aligncenter size-full wp-image-17664\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/10/Communication-Skills-For-Personal-Trainers-Biomechanics-Coach-1.jpg\" alt=\"\" width=\"2766\" height=\"1312\" />','The Deadlift - Which Variation Is Right For You?','','inherit','closed','closed','','17991-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',17991,'https://biomechanicseducation.com/?p=38693',0,'revision','',0),(38694,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<h1><b>The Cossack Squat</b></h1>\n&nbsp;\n\nThe purpose of this blog is to analyse this movement (that was new to me only a couple of years ago!) so we can better understand any benefits or challenges of moving in this way.....\n\n&nbsp;\n\nhttps://youtu.be/4YZqwufM5Jk\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So my confidence in performing this movement dissipated the very first tried it because</span><span style=\"font-weight: 400;\"> it didn’t come naturally first time </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because I had never DONE it before! There was no proprioception set up, no memory of that movement or positioning &amp; certainly not in that combination. Also I am anteverted at the hip joint. This means my genetic structure where the head of the femur sits in the acetabulum is more internally rotated that most hip joints. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I tried a couple of sets, 1 really slowly to feeeel the movement, get the pattern in place &amp; to give my brain something to use. My final set being faster &amp; far more fluid &amp; efficient. </span>\n\n&nbsp;\n<h2><b>Why Do The Cossack Squat Movement?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s start by analysing the movement/s first, look at joint actions &amp; this way we can technically understand the benefits for our client’s in more detail.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The movement is an asymmetrical lower body action....</span>\n\n<span style=\"font-weight: 400;\">The first basic actions in the descent are …</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Hip Flexion </span></li>\n 	<li><span style=\"font-weight: 400;\">Knee Flexion </span></li>\n 	<li><span style=\"font-weight: 400;\">Ankle Dorsi Flexion </span></li>\n</ul>\n<span style=\"font-weight: 400;\">So the prime movers must be... </span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Hip Extensors - Eccentric</span></li>\n 	<li><span style=\"font-weight: 400;\">Knee Extensors - Eccentric</span></li>\n 	<li><span style=\"font-weight: 400;\">Ankle Dorsi Flexors - Eccentric</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">During the ascent, the prime movers must therefore be...</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Hip Extensors - Concentric </span></li>\n 	<li><span style=\"font-weight: 400;\">Knee Extensors - Concentric</span></li>\n 	<li><span style=\"font-weight: 400;\">Ankle Dorsi Flexors - Concentric</span></li>\n</ul>\n<span style=\"font-weight: 400;\">The benefits here are clear for those wanting to strengthen, develop &amp; condition these particular muscle groups it’s a great move! </span>\n\n&nbsp;\n<h2><b>What Else Is The Cossack Move Good For?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In this particular version being demonstrated see how wide the femur is in relation to the pelvis. This can help with mobility OR in fact hinder if hip mobility is inhibited in some way, as with my example above - femoral ante version.</span>\n\n<span style=\"font-weight: 400;\">Also, the depth being shown can have a similar effect at the ankle for those wanting more joint range here but could also create a problem when trying it out if the Subtalar Joint is stiff of limited by Plantar flexors lacking range. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Clearly there is a very wide stance which certainly gives a wider base however the side shift creates an asymmetrical load through the system. This is still while balancing in 2 small points of contact (the feet) so any instability can transfer up from the feet while also down from the upper body. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The KB adds a ‘counter balance’ as the body weight shifts back at the hips, the KB is forwards as a counter to it. </span>\n\n&nbsp;\n<h2><strong>Variations Of The Cossack</strong></h2>\n<span style=\"font-weight: 400;\">Speed made a big difference for me during this move. </span>\n\n<span style=\"font-weight: 400;\">Take another look at my hip, knee &amp; ankle joints during the slow version than the faster version. </span>\n\n<span style=\"font-weight: 400;\">What can you see happening….? </span>\n\n&nbsp;\n\nhttps://youtu.be/4YZqwufM5Jk\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In summary, I would suggest this is an advanced movement &amp; likely particularly difficult for those lacking hip or ankle mobility. </span>\n\n<span style=\"font-weight: 400;\">It’s an alternative to regular sagittal plane lunging &amp; squatting for leg strength development.</span>\n\n<span style=\"font-weight: 400;\">While it might appear to be a frontal plane action, the joint actions are clearly still relatively sagittal event though we have widened the base through the frontal plane. </span>\n\n<span style=\"font-weight: 400;\">It will limit the kilos a lifter might add though due to the challenge of balance, the asymmetry, with weight being loaded through one leg at a time &amp; held in the hands.</span>\n\n<span style=\"font-weight: 400;\">Weight free it might be a cool addition to a mobility drill!</span>\n\n&nbsp;\n\nChallenge Yourself...\n\n<span style=\"font-weight: 400;\">Send us a video or tag Biomechanics Education in a video on Facebook or Instagram.</span>\n\n&nbsp;\n<h3>Future Movements We Can Break Down</h3>\n<span style=\"font-weight: 400;\">Are there any moves or exercises you would like us to analyse in a future blog? </span>\n\n<span style=\"font-weight: 400;\">If so leave a comment below or send me a message/email....info@biomechanicseducation.com</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\n<h3 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">If You\'re Ready To Add The Biomechanics Coach System To Your Skillset Then Click Here!</a></h3>\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter wp-image-17662 size-full\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/10/Communication-Skills-For-Personal-Trainers-1.png\" alt=\"\" width=\"1225\" height=\"612\" /></a>','The Cossack Movement Analysis Made Simple - Why You Should/Could/Would A Client Do It?','','inherit','closed','closed','','17815-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',17815,'https://biomechanicseducation.com/?p=38694',0,'revision','',0),(38695,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','&nbsp;\n\n<span style=\"font-weight: 400;\">As a personal trainer, sports therapist, Biomechanics Coach, sports/strength coach, or anyone working with people in a 1:1 or group environment, communication skills will often set you apart from the rest of the field. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You could have the most in-depth knowledge of strength programming but if you can’t communicate it then no one will ever listen or most importantly follow it. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How often do you see in gyms the “smartest” and most educated  PT struggles to get a client while one who has done a 2 day online course but can communicate is fully booked?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It has nothing to do with their qualifications or their intelligence but the communication or emotional intelligence.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">What are examples of these communication skills and how can we improve them?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Communication skills are a fundamental way of interacting with another being, person or animal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They can be visual, aural, oral, kinaesthetic and are often a combination of these.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We, humans, are sensitive to others emotions that we read by their facial expressions. This is unique to us and we have the ability to ‘say a lot’ by simply moving the smallest muscles in our faces.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Even those who are blind can have the sense of sound to hear voice tone allowing them to get a sense of emotion, mood or feelings of the other person. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also, there is more and more evidence explaining the power of physical touch in the realms of manual therapy, hugging, kissing and creating an emotion in another human by a simple touch.</span>\n\n&nbsp;\n<h2><b>How Can Communication Skills Be Utilised?</b></h2>\n<h3><b>Physical Communication Skills</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well as you can see from the above if you are in the business of service provision, then they can be extremely useful.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A famous sales technique is to touch the customer\'s elbow lightly at the point of sale while looking them in the eye.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Connection and connecting is a HUGE part of what we do as trainers or coaches when we provide our service, ideas, and motivation. If you don’t enjoy my company then ultimately my business will fail. So we must already be at least reasonable at communicating, right? Manual therapists have a great </span><i><span style=\"font-weight: 400;\">excuse</span></i><span style=\"font-weight: 400;\"> to touch to connect and so long as always done by asking permission first, there is no reason why a PT can’t too. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Physical assessments can give trainers an excuse to professionally connect through human touch. So there is </span><i><span style=\"font-weight: 400;\">way</span></i><span style=\"font-weight: 400;\"> more to those function tests than simply the measurement itself.</span>\n\n&nbsp;\n\n<b>Are They Always A Good Thing?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The thing is they can go really badly against you too. Because we are so super sensitive we might misread a sign and this could have negative consequences. Like being kind might be misconstrued at flirting or you being distracted while thinking of a problem as someone is talking to you, they may think you don’t like them based on your facial expression. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Always conduct yourself with a professional aura, asking permission or explaining why you are doing something will put clients at ease. Unknowingly to them the power of touch will also enhance results through the power of human connecting.</span>\n\n&nbsp;\n<h2><b>How Can Improving Communication Skills Help Us……In Life? Business? Relationships?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, they can be practised, honed and then used to improve relations in all aspects of your life and business.</span>\n\n&nbsp;\n<h3><b>Powerful Communication Through The Written Word</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When writing marketing copy, a facebook post or blog imagine YOU are your customer. Remember the reader will likely be in a different state of mind than you the writer. You know the answers, they don\'t. You are educated on exercise, they are not. You may not live with the pain they feel or the movement limitations they have. They frustrations are likely to be very different from yours. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So try to imagine you are talking to them face to face. </span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What questions would they be asking you?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What problem would they want help with?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What would their opinion of personal trainers or gyms environments be?</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is a good chance they would ask you very basic questions like </span>\n\n<i><span style=\"font-weight: 400;\">“Do you know an exercise to get rid of my spare tyre, or bingo wings?”</span></i>\n\n<span style=\"font-weight: 400;\">Of course, you know such a thing does not exist but they don’t so their mindset about what you can help with will be coming from a very different angle.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They might feel scared about doing a squat in front of everyone else in the gym. They may not know how to use certain gym equipment and they may feel intimidated. However your view of squatting and gym environments comes from a place of familiarity so is likely quite the opposite. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our job is to educate our clients, members and participants on how to move well and strengthen their bodies but our ability to communicate efficiently and effectively is vital. </span>\n\n&nbsp;\n<h2><b>Examples Of Poor / Good Communication </b></h2>\n<h3><b>Verbal</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Client 1 </span><i><span style=\"font-weight: 400;\">“What exercise can I do to lose weight?</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT “</span><i><span style=\"font-weight: 400;\">Any</span></i><span style=\"font-weight: 400;\">” or “</span><i><span style=\"font-weight: 400;\">Shall I book you in?</span></i><span style=\"font-weight: 400;\">” </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Client 2 “</span><i><span style=\"font-weight: 400;\">How do I get toned?” </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT “</span><i><span style=\"font-weight: 400;\">Eat well and exercise” OR “ just lift weights”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While technically both answers maybe correct neither response actually ‘educated’ the client nor did they ‘connect’ with the client in anyway. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How about these alternatives to enable the PT to connect with these clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To client 2 the PT could have asked a question like “</span><i><span style=\"font-weight: 400;\">what have you tried so far?” Or  “are you new to exercise?” or “what’s your long term goal”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The conversation with client 2 could have been “</span><i><span style=\"font-weight: 400;\">Awesome I know lots of fantastic toning exercises but may I ask you some questions about what kind of exercises you actually like?”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The mere act of asking a question instead of simply offering a solution tells the client the PT is actually interested in them. It also gives the PT more information about how they can help the client. The more questions you ask (while allowing them to respond by listening) offers you more evidence of how you can help this particular individual.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While the end result maybe the same service as you could have offered in teaching them ‘any’ exercise by ‘booking them in’ this alternative really engages them immediately. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Research has shown that people make decisions very quickly, in fact within the first few seconds of interaction. So if you can engage them and make them feel heard and validated, they are far more likely to book you and then continue a sustained relationship with you for the duration of their exercise journey. They are more likely to </span><i><span style=\"font-weight: 400;\">trust</span></i><span style=\"font-weight: 400;\"> you. </span>\n\n&nbsp;\n<h3><b>Staying Positive </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Things like pain reduction and wanting to have a thigh gap are what might be classed as ‘negative’ goals. </span>\n\n<span style=\"font-weight: 400;\">A negative goal is something that isn’t a pleasant thing to focus on, like pain, or maybe isn’t realistic either, maybe like the thigh gap.</span>\n\n&nbsp;\n<h3><b>Empathy</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sometimes having been in the same place as your potential clients can endear you to them. If you write honestly about how it made you feel to be fat or unfit, it can help potential clients feel you will be able to empathise. </span>\n\n<span style=\"font-weight: 400;\">Practising mindfulness can help us to do this skillfully. </span>\n\n<span style=\"font-weight: 400;\">Maybe make some notes about how you felt, your frustrations, weaknesses, thoughts, fears, what made you not exercise or try to lose fat etc </span>\n\n<span style=\"font-weight: 400;\">This could then help you communicate verbally or in your marketing copy or blogs.</span>\n\n<span style=\"font-weight: 400;\">Maybe even describing how your were your own coach or hired a coach, how you took steps and then how you created new habits, how you felt better and started to see as well as feel the benefits.</span>\n\n<span style=\"font-weight: 400;\">This takes skill, especially if you no longer look that way. It might be a brave thing making one of your old photos available to prove your journey. But the potential rewards if communicated well are exponential.</span>\n\n&nbsp;\n<h3><b>Listening Skills</b></h3>\n<span style=\"font-weight: 400;\">Personally I believe listening to be not only the most important communication skill but also one of the most under utilised.</span>\n\n<span style=\"font-weight: 400;\">Asking questions will ultimately tell you what &amp; how to ‘sell’. Asking the right questions will give you all the information you need. </span>\n\n<span style=\"font-weight: 400;\">Not only that, it makes your clients or potential clients feel valued, heard &amp; important to you. </span>\n\n<span style=\"font-weight: 400;\">A very simple method to demonstrate that you are listening is </span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Ask an open question (one that requires more than a simple yes or no)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Maintain eye contact as they reply</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Nod occasionally, smile or frown when appropriate </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Paraphrase back what they have said ie “</span><i><span style=\"font-weight: 400;\">so let me get this clear he said it’s ok to eat as much chocolate as you want if</span></i><span style=\"font-weight: 400;\">…”</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Continue to question as appropriate </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Sympathies &amp; offer a solution….within your services </span></li>\n</ul>\n&nbsp;\n<h3><b>Other - Legal </b></h3>\n<span style=\"font-weight: 400;\">Communication Skills go beyond simply from you to your clients or potential clients. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Writing very clearly, collating all research done around a clients conditions, letters of referral, screening forms, reports &amp; reflective journals can all be used in legal cases. In fact that’s one of the primary reasons for having them, to demonstrate how you have provided an appropriate duty of care. Getting second opinions on email or text are evidence of good practise. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This also creates a more secure record for validating your insurance. </span>\n\n<span style=\"font-weight: 400;\">Always imagine if your client was a relative of yours, if they were injured in a session how would you feel if the trainer had shoddy records if any at all! Versus a trainer with lots of notes, evidence of care, research etc?? A judge will also take your work more seriously </span>\n\n&nbsp;\n\n&nbsp;\n<h2><b>Communication Skills Training Plan</b></h2>\n<span style=\"font-weight: 400;\">The key word is “skill”. A skill is trainable, you can get better at it... with practice.</span>\n\n<span style=\"font-weight: 400;\">The problem is that most people aren’t willing to practice this type of skill. As you’re reading this, I am going to guess that’s not you. </span>\n\n<span style=\"font-weight: 400;\">So how do I suggest you train to improve this skill?</span>\n\n&nbsp;\n\n<b>Step 1: Pick 1 Aspect To Focus On - E.g. Listening</b>\n\n<span style=\"font-weight: 400;\">Don’t try and work on all of them in one go. That’s overwhelming, confusing and you’ll probably just start getting odd looks from people as you try and remember all the things you’re supposed to do.</span>\n\n&nbsp;\n\n<b>Step 2: Select 1-3 Things To Bring Into Your Locker</b>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Wait for people to finish their sentences before I respond</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Recap what I heard them say… in their words</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Ask questions to go deeper into what they answered</span></li>\n</ol>\nThen go practice these things over and over. After each interaction, ask yourself, did I do those things? At the end of each day take a moment to reflect and ask yourself, \"how did I do that today?\"\n\nBefore you know it you\'ll be doing those things automatically. Then you can start on the next skill to learn.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Never under-estimate developing your communication skills. I believe that improving your communication skills can dramatically improve your chances of success in business and well in anything you do in life really.</span>\n\n<span style=\"font-weight: 400;\">The best trainers may not have the highest qualifications nor the biggest toolbox of skills. However they will know exactly how to make YOU feel great in their company. </span>\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h2 style=\"text-align: center;\"><strong>Discover What The Biomechanics Coaching System Could Do For Your Business &amp; Your Clients</strong></h2>\n<h3 style=\"text-align: center;\">rachel@biomechanicseducation.com</h3>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter size-large wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a>','Are communication skills, something we can improve?','','inherit','closed','closed','','17661-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',17661,'https://biomechanicseducation.com/?p=38695',0,'revision','',0),(38696,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<span style=\"font-weight: 400;\">Occasionally an individual comes along who totally blows your mind, I mean literally shakes your whole world. Elliott is someone who made me question a lot about myself. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I grew up with parents who taught me and my siblings that we are all </span><i><span style=\"font-weight: 400;\">human</span></i><span style=\"font-weight: 400;\"> no matter what our skin colour or what clothes we wear and we should respect that in the way we treat others by treating them the way we would like to be treated. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">At the same time, there was only 1 black kid at my school and his name was Richard. Not everyone at my school had been brought up to not judge others. Richard also had a bad facial disfigurement from a car accident. Anyway, this kid got really badly bullied and picked on. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He was defensive as you can imagine and I found myself being protective of him in the playground. He was a couple of years younger and so I would ‘look out’ for him at breaks to warn off any of the bullies because I felt I should.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It was around this time my mum had the title of ‘special needs teacher’ due to the kids she worked with, teaching them geography and crafts. </span>\n\n<span style=\"font-weight: 400;\">My favourite days of the year were when the boiler broke at my own school and she got the call that it would be closed for the day because of this! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YAY!! </span><i><span style=\"font-weight: 400;\">Can I come to school with you mum?</span></i>\n\n<span style=\"font-weight: 400;\">I would say</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I would go along to her </span><i><span style=\"font-weight: 400;\">special needs</span></i><span style=\"font-weight: 400;\"> class and meet all the kids in wheelchairs, callipers, some had mental conditions and many often had a combination.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Helping these people made me feel good. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now this was all at least 33 years ago and I classed myself as being a non racist /non prejudiced character because of all I had done. Yet when I watched, transfixed by Jane Elliott, as she demonstrated the blue eyed brown eyed experiment, it really caught me off guard!</span>\n\n<span style=\"font-weight: 400;\"> </span>\n<h3><b>Was I In Fact Being Prejudiced?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me re-write my previous statement above with a different emphasis.</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Helping these people made ME feel good. </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Was I still being prejudiced by treating Richard as ‘special’ or different because I felt sorry for him? </span>\n\n<span style=\"font-weight: 400;\">Why did I do that? because it made me feel good? is there a difference?</span>\n\n<span style=\"font-weight: 400;\">Am I ignorant? </span>\n\n<span style=\"font-weight: 400;\">Am I compounding issues?</span>\n\n<span style=\"font-weight: 400;\">Elliott made me question my behaviour towards others </span>\n\n<span style=\"font-weight: 400;\">How am I received? </span>\n\n<span style=\"font-weight: 400;\">Perceived? </span>\n\n<span style=\"font-weight: 400;\">What were/are my intentions?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now while I would never intentionally demonstrate prejudice, Elliott proves that prejudice still exists in her blue eyes, brown eyes experiments. Elliott challenges that fact we still hear prejudice jokes, often spoken by that minority &amp; do she asks </span><i><span style=\"font-weight: 400;\">does this make it still ok?</span></i>\n\n<span style=\"font-weight: 400;\">Why does it seem ok to use Ginger as a derogatory term? </span>\n\n<span style=\"font-weight: 400;\">Is that still derogatory if said by someone with ginger hair?</span>\n\n<span style=\"font-weight: 400;\">Should we be standing up to ANY torment of differentiating individuals for their appearance? Even if it is ‘just a joke?’</span>\n\n<span style=\"font-weight: 400;\">How is dressing it up in a joke making it ok?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As Elliott puts it, accept we are different because in fact we are by our skin colour BUT we are ALL of the human race.</span>\n\n&nbsp;\n<h2><b>What Does This Mean In The Fitness Industry?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is undeniable that the health &amp; fitness industry is one of the MOST judgemental.</span>\n\n<span style=\"font-weight: 400;\">We have fat shaming, skinny shaming, males vs female and adductor machines are of course only for girls, right!? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Or wrong??</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ever heard terms like….</span>\n\n&nbsp;\n\n<strong>“<i>Girly press-ups” </i></strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do we make assumptions on what people should be able to do based on how they look?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Muscles = Strength?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Girls with muscles look manly</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What about based on what people wear?</span>\n\n<span style=\"font-weight: 400;\">Nike sports gear vs Puma </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Assessments are a natural part of what we do when we meet potential clients. We analyse them without even thinking. We suss them out by how they speak, move &amp; dress but how much assumption is appropriate &amp; how much needs to be more accurate?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THINK long and hard about how you judge others, how you speak, the jokes you make or laugh at, the marketing copy you post, the things you put in your videos, your entire social media content because the ignorance we have could be as dramatic to our behaviour and as damaging to another’s feelings as outright nastiness.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember we are in the service &amp; influence industry so we must feel responsible for ANY message we are putting out. We are in powerful positions with our tens of thousands of insta followers. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Just remember... </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Insite can be wonderful, &amp; sometimes uncomfortable, as I learnt from Jane Elliott </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are the links to her site and a video that is well worth your time to watch.</span>\n\n<a href=\"https://janeelliott.com\" target=\"_blank\" rel=\"noopener noreferrer\">Jane Elliot Website</a>\n\n&nbsp;\n\nWatch This:\n\nhttps://youtu.be/1mcCLm_LwpE\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h1 style=\"text-align: center;\"><strong>Discover What The Biomechanics Coaching System Could Do For Your Business &amp; Your Clients</strong></h1>\n<h3 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Click here, fill in your details and let\'s abve a chat about the Biomechanics Coach Diploma</a></h3>\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter size-large wp-image-10836\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" alt=\"\" width=\"1024\" height=\"512\" /></a>','Prejudice In The Fitness Industry - Lessons From Jane Elliott','','inherit','closed','closed','','17377-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',17377,'https://biomechanicseducation.com/?p=38696',0,'revision','',0),(38697,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<h3><span style=\"font-weight: 400;\">By Rachel France Turning 50!</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok, so I’ve been alive for half a century!!! Wowzers that’s incredible! </span>\n\n<span style=\"font-weight: 400;\">Each decade has got better so I’m super excited about hitting 60!</span>\n\n<span style=\"font-weight: 400;\">I sweat far less of the small stuff, surround myself with people I actually like, I schedule time off and I do work that I adore and affords me that freedom! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, I sense I’m one of a small percentage of people and I’m not sure why?</span>\n\n<span style=\"font-weight: 400;\">I was lucky to be born to my amazing parents who enabled me to develop into a rather happy soul. </span>\n\n<span style=\"font-weight: 400;\">Now hitting my 50th year I find myself reflecting a lot and I’ve not always felt so calm and content but I have felt mostly happy.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I started thinking about the things that make me feel such contentment and thought I’d share them in this Juicemail special. Kind of a celebration really because you know what? It’s not complicated. </span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">Here I’d like to share my top tips for feeling great at 50...</span>\n\n&nbsp;\n<h2><b>#1 - Make A SMART Plan </b></h2>\n<span style=\"font-weight: 400;\">What’s the end goal? </span>\n\n<span style=\"font-weight: 400;\">Retire in Marbella? </span>\n\n<span style=\"font-weight: 400;\">Run a B&amp;B in Lochness?</span>\n\n<span style=\"font-weight: 400;\">Build mud huts in a 3rd world country?</span>\n\n<span style=\"font-weight: 400;\">Be specific so that you can actually measure it. It MUST be achievable and realistic otherwise what\'s the point? Then stick a timeline on it!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider the above long term goal to enable you to plan backwards, like a marathon runner does with their training. Once you know the end goal, you can design a schedule that runs from the end goal, back a chunk at a time. This gives you something to measure at each stage of your life plan so you can check, adjust if necessary and monitor how you\'re doing with reference points. </span>\n\n<span style=\"font-weight: 400;\">By the way …. it’s ok to change your mind!</span>\n\n&nbsp;\n<h2><b>#2 - Nourish Your Movement - Prepare Your Body</b></h2>\n<span style=\"font-weight: 400;\">Nourishing movement is all about treating the body you live in with respect and love.</span>\n\n<span style=\"font-weight: 400;\">You cannot buy a new one, wear and tear will happen but…..</span>\n\n<span style=\"font-weight: 400;\">….using your body in a variety of ways consistently maintains healthy joints, tissues and bones. The beautiful knock-on effect is a healthy mind!</span>\n\n<span style=\"font-weight: 400;\">Exercise Is Movement Medicine</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The things we put inside our bodies to fuel us make a huge difference, if not always immediately, certainly over time.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You will look and feel a representation of the way you fuel your body. </span>\n\n<span style=\"font-weight: 400;\">It is NOT complex!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Balanced and considered with consistent moderation.</span>\n\n&nbsp;\n<h2><b>#3 - Sleep Plan - No Excuses!</b></h2>\n<span style=\"font-weight: 400;\">An extremely underrated medicinal tool and another very simple one!</span>\n\n<span style=\"font-weight: 400;\">Get 8 hours each night </span><span style=\"font-weight: 400;\">minimum</span><span style=\"font-weight: 400;\"> (as the research states ‘</span><i><span style=\"font-weight: 400;\">Why We sleep’ </span></i><span style=\"font-weight: 400;\">Matthew Walker) by following a routine of bedtime, room temperature and waking when you wake NOT to an alarm. </span>\n\n<span style=\"font-weight: 400;\">See the difference when you do!   </span>\n\n<span style=\"font-weight: 400;\">Sleep Is Mental Medicine</span>\n\n&nbsp;\n<h2><b>#4 - Prioritise Time Out - The 3 x R’s</b></h2>\n<span style=\"font-weight: 400;\">With consistent rest, relaxation and recuperation planned into your schedule your body will thank you! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rest - Sitting for a moment </span>\n\n<span style=\"font-weight: 400;\">Relax - being sociable or spending time talking to family/friends</span>\n\n<span style=\"font-weight: 400;\">Recuperation - sleep &amp; holidays </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All are required!</span>\n\n&nbsp;\n<h2><b>#5 - Do Something You Never Dared </b></h2>\n<span style=\"font-weight: 400;\">Life is too short to NOT do something you have always wanted but never dared. </span>\n\n<span style=\"font-weight: 400;\">Do not put it off! </span>\n\n<span style=\"font-weight: 400;\">Let your hair down and swim naked or jump on that trampoline!</span>\n\n&nbsp;\n<h2><b>#6 - Commit A Random Act Of Kindness Each Week </b></h2>\n<span style=\"font-weight: 400;\">This is vital for your contribution to world peace and showing compassion. Even more joyous and fun if the receiver doesn\'t realise it was you or even that you made their life easier in some way.</span>\n\n<span style=\"font-weight: 400;\">This morning I took my neighbours bag of glass bottles to the bottle bank…...ssssssssh don’t tell them it was me!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Volunteer Your Time Once A Month.</span> <span style=\"font-weight: 400;\">Give a little, it means a lot!</span>\n\n&nbsp;\n<h2><b>#7 - Learn A New Skill Each Quarter </b></h2>\n<span style=\"font-weight: 400;\">Enhance your skills, knowledge or contribution to society. </span>\n\n<span style=\"font-weight: 400;\">Stimulate you brain it certainly will prove worthwhile one day!</span>\n\n&nbsp;\n<h2><b>#8 - Live In The Moment  </b></h2>\n<span style=\"font-weight: 400;\">You cannot change the past, you have no idea of the future but OH BOY you can enjoy this moment!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Never forget to savour the sunshine, a blue sky, a beautiful flower or giggling children.</span>\n\n&nbsp;\n<h2><b>#9 - Tell Them You Love Them </b></h2>\n<span style=\"font-weight: 400;\">Always</span><span style=\"font-weight: 400;\"> tell your loved ones how you feel ...you just never know! </span>\n\n&nbsp;\n<h2><b>#10 - Don’t Give A Damn...</b></h2>\n<span style=\"font-weight: 400;\">What others think </span>\n\n<span style=\"font-weight: 400;\">Wear those hot pants</span>\n\n<span style=\"font-weight: 400;\">Make snow angels</span>\n\n<span style=\"font-weight: 400;\">Jump on a trampoline</span>\n\n<span style=\"font-weight: 400;\">Lie on grass, watching clouds</span>\n\n<span style=\"font-weight: 400;\">Sing at the top of your voice</span>\n\n<span style=\"font-weight: 400;\">Dance like everyone\'s watching!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By the way I also want to tell you a small secret …...you don’t actually need to be turning 50 to try these out!</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h2 style=\"text-align: center;\">Discover What The Biomechanics Coaching System Could Do For Your Business &amp; For Your Clients</h2>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\">Click here, fill in your details and let\'s have a chat about the Biomechanics Coach diploma</a></p>\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-10836\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" alt=\"\" width=\"1024\" height=\"512\" />','10 Ways To Feel Great At Any Age - Lessons Learned From 50 Years On This Planet','','inherit','closed','closed','','17261-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',17261,'https://biomechanicseducation.com/?p=38697',0,'revision','',0),(38698,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<h2>Showing Others How Smart They Really Are IF They Let Go Of Their Inflated Or Deflated Egos</h2>\n<span style=\"font-weight: 400;\">If you follow my <a href=\"https://www.facebook.com/rachel.france06\" target=\"_blank\" rel=\"noopener noreferrer\">Rachel France FB</a> or <a href=\"https://www.instagram.com/biomechanics_education/\" target=\"_blank\" rel=\"noopener noreferrer\">Instagram</a> pages you may notice I try to stimulate conversation with questions around training methods, common ways of thinking, how to better understand human movement and ultimately how we can better help our clients. </span>\n\n&nbsp;\n\nYou\'ll also see that my posts often spark both excitement, engaged discussions and then also rudeness, anger and ignorance. Don\'t get me wrong, I LOVE being challenged, that\'s what we will discuss today. But there is a difference between a discussion and putting your side of the argument or opinion across and just being a ... rude person.\n\nAnd sometimes, you put out a post or an email and you can feel like the guy in the picture at the top, feeling battered and bruised all because you put out a piece of content with the goal of helping someone.\n\n&nbsp;\n\nUnfortunately, the way that we are wired as humans mean we always focus more on the negative sides. Do you ever find that?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I am VERY conscious of my choice of words, use of questions and I am fully aware of how they may or may not be perceived or interpreted.</span>\n\n<span style=\"font-weight: 400;\">Several things often become apparent…</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">People use throwaway comments that can be easily misunderstood both online and face to face.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">People read and believe things just because </span><i><span style=\"font-weight: 400;\">Gary down the gym  said so</span></i></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">There is often a lack of clarity about WHY things work</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Text/copy can read with differing emphasis depending upon the reader bias</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">People can feel threatened and become very defensive during debate </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Sometimes I just like to discuss thoughts on subjects that will ALWAYS be a hypothesis</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">ANYONE who posts educational content should feel a very heavy sense of responsibility for the information they put out </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Just because something happens does not always indicate WHY it happened</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I love is a really good discussion that is healthy and yet challenges research, common bias and what is taught on courses, even the really good ones.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My true passion is in education, educating and the experience of learning. Enabling autonomous learning and showing others how smart they </span><i><span style=\"font-weight: 400;\">really</span></i><span style=\"font-weight: 400;\"> are IF they let go of their inflated or deflated egos. </span>\n\n<span style=\"font-weight: 400;\">School for me was a bad experience, as it is for many and can leave us feeling or thinking, we are not very bright or capable when in fact school should be doing the exact opposite.</span>\n\n&nbsp;\n<h3><b>Why Is This?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">School, for me, was a lesson in box-ticking. There is one answer and you should know it but more often than not, I had nothing to anchor it to!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I want to try to show others is how to question things logically and systematically to work a solution out by linking it to something of relevance to them. This is what educators should do. This is also imperative if you work with another human’s body, that faces so many variables, and have to make decisions about them. What we shouldn’t be doing is </span><i><span style=\"font-weight: 400;\">winging</span></i><span style=\"font-weight: 400;\"> it or doing something because that is what your tutor said.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The single most important thing in YOUR personal training business is THE CLIENT stood in front of you. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Chances are YOU are the best person to help them even if it means a referral.</span>\n\n&nbsp;\n<h3><b>The Point Of This Blog</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">I want YOU to have the confidence to challenge people like ME.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Being an educator is such a cool job but some do it better than others and maybe that is because some see it as a job and others as a purpose.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The point I want to make is that educators don’t necessarily KNOW MORE. They simply have a skill or qualification in influencing others. We should also be creating autonomous learners, not parrots or followers</span>\n\n<span style=\"font-weight: 400;\">Being influenced by and educator holds risk </span>\n\n<span style=\"font-weight: 400;\">Because who should we trust to educate us, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me give you an example to the point I am trying to make ….. </span>\n\n&nbsp;\n<h2><b>Social Media/Internet For Information/Education</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Clearly, times have changed from when education was solely done from schools, colleges, universities and libraries. We now have the ‘luxury’ of the internet and social media! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is a fantastic way of accessing information and education from our own homes, while on a bus, training or pretty much anywhere with some wifi. For some demographics, this may be the only source of education they can access. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The problem with this is clear….very often, we have no idea of the background, nor the intent, of the individual we are learning from.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Are they even qualified?</span>\n\n<span style=\"font-weight: 400;\">What are they achieving from putting information online?</span>\n\n<span style=\"font-weight: 400;\">Do they follow guidelines?</span>\n\n<span style=\"font-weight: 400;\">Are they governed by a recognised body?</span>\n\n<span style=\"font-weight: 400;\">Do they know YOUR limitations?</span>\n\n<span style=\"font-weight: 400;\">Do you know theirs?</span>\n\n<span style=\"font-weight: 400;\">Is the information accurate?</span>\n\n<span style=\"font-weight: 400;\">How would you know? </span>\n\n<span style=\"font-weight: 400;\">What would you gain or lose from following their programme, advice, training?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Educators should always be accredited, recognised, validated by governing bodies who quality assure their content and its delivery along with the entire process to protect YOU, the learners, from potential charlatans. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now don’t get me wrong there are some educators and some subjects doing an AWESOME job online but again it’s not these guys I am talking about. It’s those </span><i><span style=\"font-weight: 400;\">keyboard warriors</span></i><span style=\"font-weight: 400;\">….</span>\n\n&nbsp;\n<h3><b>Keyboard Warriors - Who Are They?</b></h3>\n<span style=\"font-weight: 400;\">If you use social media a lot</span>\n\n<span style=\"font-weight: 400;\">If you have ever been ‘trolled’ </span>\n\n<span style=\"font-weight: 400;\">You will know what I am talking about but there was a time when I had no idea what an online ‘troll’ was. I still had the image of a book I read as a child and the troll that goes </span><i><span style=\"font-weight: 400;\">clip clip clop on the bridge</span></i><span style=\"font-weight: 400;\">….you know the one, right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway, the problem with gaining education or seeking information online is that without clarity throw away comments can be very misleading and social media is rife with it.</span>\n\n&nbsp;\n\n<b>So Beware!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do your homework and research the people you are following online, investigate their backgrounds their intent, they experience, their success - if they have any? - their purpose. Ask them for evidence of their claims or accolades and make your decision to take advice an informed one!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally, let’s flip this on its head and consider an alternative view….</span>\n\n&nbsp;\n<h2><b>For Those Too Scared To Post Because Of The Trolls </b></h2>\n<span style=\"font-weight: 400;\">I know a lot of you are growing your personal training businesses, yoga and pilates business, sports therapy businesses and more. And when you want to grow your business it means putting yourself out there. I know some people don\'t post at all, for fear of what others will think or say. </span>\n\n<span style=\"font-weight: 400;\">To those in fear of posting because a troll might slate you or your work just remember...</span>\n\nI understand that fear! Putting yourself out there can be terrifying!\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Always remember, <strong>hurt people tend to hurt others!</strong></span>\n\n<span style=\"font-weight: 400;\">It will happen, people will leave stupid comments, but hey let it go, do not bite instead rise above them, ignore or block, delete or use them to learn what not to do!</span>\n\n<span style=\"font-weight: 400;\">I am afraid it is what social media does to those who post. We will be judged when we put content out so we must accept this or not use social media!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Stay focused on those messages telling you how much you’re helping someone.</span>\n\n<span style=\"font-weight: 400;\">Ignore that 1 troll and enjoy the hundreds of messages thanks!</span>\n\n&nbsp;\n<h2><b>A Message To The Trolls/Keyboard Warriors…</b></h2>\n<span style=\"font-weight: 400;\">...if putting someone down makes you feel big and important then you have serious issues! </span>\n\n&nbsp;\n\n&nbsp;\n<h3>Let\'s Do Good In This World!</h3>\nAnyway, my hope is that you put yourself out there, spread your message and help as many people as you can!\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Take Your Skills To The Next Level? Want To Help Your Clients Move More Freely?</h2>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\" target=\"_blank\" rel=\"noopener noreferrer\">Then come and join us on one of our diplomas! Click here to find out more and speak with one of the team!</a></p>\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" />','Great Discussions vs Egos & Trolls - The 2 Sides Of Social Media','','inherit','closed','closed','','17101-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',17101,'https://biomechanicseducation.com/?p=38698',0,'revision','',0),(38699,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<span style=\"font-weight: 400;\">Having posted the image below on Facebook some time ago, it caused quite the debate. This encouraged me to research and learn more. So this article will dive into the information I found and continue the conversation with you. The post discussion was about foot position during the squat, and I was asking if and why people felt it mattered...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-35976 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/09/Screenshot-2023-05-03-at-09.06.28-1-300x300.png\" alt=\"\" width=\"300\" height=\"300\" /></span>\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My post was discussing…</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What different foot widths alter when squatting?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What difference does it make, if any?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Also to invite comments on how and why we might choose different foot widths?</span></li>\n</ul>\n<span style=\"font-weight: 400;\">The post received a lot of responses, here are a few more interesting ones….</span>\n<ul>\n 	<li><i><span style=\"font-weight: 400;\">You’ll exercise different muscle groups</span></i></li>\n 	<li><i><span style=\"font-weight: 400;\">Wide will pull in Glutes if you go deep.  </span></i></li>\n 	<li><i><span style=\"font-weight: 400;\">Narrow will be more quads and you\'ll not be able to go in as deep.</span></i></li>\n 	<li><i><span style=\"font-weight: 400;\">Wide stance works inner and narrow stance works outer quads.</span></i></li>\n 	<li><i><span style=\"font-weight: 400;\">Depending if wanting to hit different areas I think.</span></i></li>\n 	<li><i><span style=\"font-weight: 400;\"> I\'d guess the wider the stance the more dominant the rec fem is</span></i></li>\n 	<li><i><span style=\"font-weight: 400;\">4 muscles well 5 but each position will force one to dominate more. I\'d imagine close stance may as I can see the hip flexors/extensors would be less engaged.</span></i></li>\n 	<li><i><span style=\"font-weight: 400;\">Both stances work the quads and glutes but the emphasis changes.</span></i></li>\n 	<li><i><span style=\"font-weight: 400;\">The key is knowing the function of the abductor and adductor muscles. </span></i><i><span style=\"font-weight: 400;\">When stance is wide the adductor muscles (Inner quads) contract to pull the legs together against the resistance as one straightens the legs. </span></i><i><span style=\"font-weight: 400;\">When stance is narrow the abductors (outer quads) are engaged as the legs straighten. </span></i></li>\n</ul>\n<span style=\"font-weight: 400;\">There was very little clarity or justification for the answers and some</span><span style=\"font-weight: 400;\"> were technically just not possible from my understanding of anatomy anyway! Yet n</span><span style=\"font-weight: 400;\">o matter how a conversation goes on social media its good if it helps us learn from it. T</span><span style=\"font-weight: 400;\">hese posts inspired me to read more and really got me thinking about something…...</span>\n\n&nbsp;\n<h2><b>Can You Really Isolate &amp; Grow An Individual Quad Muscle More Than Another By Altering Foot Position During Squats?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">T</span><span style=\"font-weight: 400;\">he most common response to my question as to whether the foot width matters during the squat was to ‘hit’ certain muscles more than others, in particular the quads.</span>\n\n<span style=\"font-weight: 400;\">My question re-foot width would imply a frontal plane alteration since the image I posted was demonstrating 3 stances with narrow to wider foot positions yet the depth of the squat was the same. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The reference to inner quads as adductors and outer quads as abductors was interesting since they are different muscle groups. </span><span style=\"font-weight: 400;\">All 4 quads extend the knee but 1 quad, rectus femoris, will also contribute to hip flexion. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Since the 3 x vastus quads do not cross the hip they are not influenced in anyway by foot width which is altered at the hip. Also the one quad that does cross the hip (rectus femoris) to attach to the AIIS, through these ranges, wont have changed length by any statistically interesting degree to ‘hit’ the muscles for growth (as per the 3 images above) and certainly not the \'inner nor outer quads\'.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The comment about how the squats feels different when they altered their foot width doesn\'t really tell us anything about what is happening on the inside anatomically with any accuracy since the body is an integrated system. However altering anything about your position during a squat will inevitably make them feel different. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another point made was this idea of ‘hitting’ an individual muscle (like vastus lateralis) more however this relies upon a definition of what \'hitting\' means exactly. Does h</span><span style=\"font-weight: 400;\">itting a muscle more correlate with it growing or developing more than other muscles for example? This idea is actually quite a common discussion in the bodybuilding world but I have yet to read anything that can technically describe how its even possible </span><span style=\"font-weight: 400;\">when looking at the attachment sites in relation to foot width the quad muscles are all part of one group? We may read studies about EMG activity but this also isn\'t necessarily indicative of actually growing an individual muscle more than the one next to it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whether you have a narrow or wide stance the actions during a regular squat are;</span>\n\n<span style=\"font-weight: 400;\">Hip/knee/ankle flexion &amp; extension </span>\n\n<span style=\"font-weight: 400;\">By altering the foot width (as shown above) there is minimal alteration if any to the quadriceps muscle length if any. Rectus femoris maybe slightly but the vastus group wont alter in length.  </span>\n\n&nbsp;\n<h2><b>What The Research Says…</b></h2>\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Finally, three studies (</span></i><a href=\"https://www.ncbi.nlm.nih.gov/pubmed/19130646\"><i><span style=\"font-weight: 400;\">one</span></i></a><i><span style=\"font-weight: 400;\">, </span></i><a href=\"https://www.ncbi.nlm.nih.gov/pubmed/11528346\"><i><span style=\"font-weight: 400;\">two</span></i></a><i><span style=\"font-weight: 400;\">, </span></i><a href=\"https://www.ncbi.nlm.nih.gov/pubmed/10188748\"><i><span style=\"font-weight: 400;\">three</span></i></a><i><span style=\"font-weight: 400;\">) have compared muscle activation (</span></i><a href=\"https://www.strongerbyscience.com/emg-amplitude-tell-us-muscle-hypertrophy/\"><i><span style=\"font-weight: 400;\">using EMG</span></i></a><i><span style=\"font-weight: 400;\">) in squats of varying stance widths.  None of them found any differences in any of the quad muscles…...Greg Nuckols</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Analysis of variance and Scheffè post hoc tests indicated a significant difference in EMG activity only for the gluteus maximus; in particular, there was a higher electrical activity of this muscle when back squats were performed at the maximum stance widths at 0 and 70% 1RM. There were no significant differences concerning the EMG activity of the other analyzed muscles. These findings suggest that a large width is necessary for a greater activation of the gluteus maximus during back squats. (Paoli.A et al)</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">The results suggest that stance width does not cause isolation within the quadriceps but does influence muscle activity on the medial thigh and buttocks. (McCaw ST)</span></i>\n\n&nbsp;\n\n<i>Dan Ogborn’s article from 2016 challenges the information we gain from EMG in terms of muscle hypertrophy - have a read! Fascinating!!</i>\n\n&nbsp;\n<h2><b>Other Muscles Involved In The Squat </b></h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-7592 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/06/Project-Squat-Part-2-How-To-Test-For-And-Improve-Pelvic-Function-300x150.png\" alt=\"\" width=\"300\" height=\"150\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Lets consider other muscles in reference to ‘hitting’ individuals muscles differently…..</span>\n\n<span style=\"font-weight: 400;\">The relationship of the 3 hamstrings is still not likely to alter by any statistically interesting amount when the attachments sites are the ischial tuberosity to tibia or fibula, similarly to the rectus femoris. </span>\n\n<span style=\"font-weight: 400;\">The 3 glutes each have differing roles ...glute max is the primary hip extensor, while glutes minimus &amp; medius abduct &amp; rotate</span>\n\n<span style=\"font-weight: 400;\">Their attachments cross the hip in a way that they are likely to be shorter or longer in the different stances.</span>\n\n<span style=\"font-weight: 400;\">However when you squat it’s still just hip, knee, ankle flexion / extension but you’re just doing it with these muscles </span><i><span style=\"font-weight: 400;\">slightly </span></i><span style=\"font-weight: 400;\">longer or shorter (as per the original image)</span>\n\n<span style=\"font-weight: 400;\">With that said there is still a more valid argument for a different stance to affect them differently</span>\n\n<span style=\"font-weight: 400;\">All this said and coming back to the original post, knowing that we move in a multitude of ranges /angles /degree of flexion /extension through life it would make absolute sense to use a variety of angles and foot positions etc</span>\n\n<span style=\"font-weight: 400;\">This gives our body a prepared strength for risk reduction in all positions &amp; to optimise performance.</span>\n\n<span style=\"font-weight: 400;\">Oh and I have to mention the abductors and adductors….</span>\n\n<span style=\"font-weight: 400;\">By the way adductor magnus, also known as the 4th hamstring, is my favourite muscle EVER, go on check it out!!</span>\n\n<span style=\"font-weight: 400;\">Adductors, like abductors will start longer or shorter with an altered foot position</span>\n\n<span style=\"font-weight: 400;\">But being synergistic, not agonists nor antagonists, how much does this affect the muscle itself in terms of hypertrophy? (as per the images)</span>\n\nCould what is \'felt\' be a difference in the lateral muscles of the thigh instead?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">References:</span>\n\n<a href=\"https://bmcsportsscimedrehabil.biomedcentral.com/track/pdf/10.1186/s13102-018-0103-7\"><span style=\"font-weight: 400;\">https://bmcsportsscimedrehabil.biomedcentral.com/track/pdf/10.1186/s13102-018-0103-7</span></a>\n\n<a href=\"https://www.strongerbyscience.com/squat-stance-width/amp/\"><span style=\"font-weight: 400;\">https://www.strongerbyscience.com/squat-stance-width/amp/</span></a>\n\n<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/11404665\"><span style=\"font-weight: 400;\">https://www.ncbi.nlm.nih.gov/pubmed/11404665</span></a>\n\n<a href=\"https://www.strongerbyscience.com/squats-adductors/\"><span style=\"font-weight: 400;\">https://www.strongerbyscience.com/squats-adductors/</span></a><span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n\nSo bringing my thoughts to a temporary close I am happy to continue this conversation in my classroom anytime so please do check out our courses where we have these types of discussions. We learn from you too!\n\nrachel@biomechanicseducation.com\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients\' Move Better &amp; Get Better Results In Their Training?</h2>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"size-large wp-image-10836 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why-1024x512.png\" alt=\"\" width=\"1024\" height=\"512\" /></a></p>','Can Changing Your Foot Position Isolate And Grow Different Quadricep Muscles?','','inherit','closed','closed','','16935-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',16935,'https://biomechanicseducation.com/?p=38699',0,'revision','',0),(38700,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<span style=\"font-weight: 400;\">So over the last couple of weeks we have been discussing a periodisation model for core stability training</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><strong>Step 1</strong> - Challenges the common misunderstanding of what a weak core is, how to test it and also how to challenge it through neuromuscular progression.</span>\n\n<span style=\"font-weight: 400;\"><strong>Step 2</strong> - We took advantage of an evidence based method McGill has tried and tested for understanding the ideal core strength ratios of our clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This week we will explore Step 3 Functional Stability. This is now with the expectation that our clients are pretty solid in their Step 1 performance and have decent core ratios from Step 2. </span>\n\n<span style=\"font-weight: 400;\">The point here is  to understand how well our clients core can control the entire body\'s stability during more gross movement like bending over, squatting and when challenged rotationally.</span>\n\nJust remember this is still simply preparing the core/ trunk/body to have stability and control.\n\n&nbsp;\n<h2><b>The Functional Stability Tests</b></h2>\n<span style=\"font-weight: 400;\"> </span>\n<h3><strong>Test 1 - Aberrant Gross Lumbar Motion </strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">What’s the purpose of this test?</span>\n\n<span style=\"font-weight: 400;\">Well we want to see how well the client can control movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Demonstrate to the clients that you would like them to perform a roll down with their back to you. This should be done with a very relaxed posture so that the arms literally hang in both the descent and ascent. </span>\n\n<span style=\"font-weight: 400;\">Do not tell them what you are looking for just that they should relax.</span>\n\n<img class=\"aligncenter wp-image-16602\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Aberrant-Gross-Lumbar-Motion-683x1024.jpg\" alt=\"\" width=\"493\" height=\"739\" />\n\n<span style=\"font-weight: 400;\">What you are observing is how smoothly they do this. Do they rotate? Do they wobble slightly? Do they end up off to one side? </span>\n\n<span style=\"font-weight: 400;\">Basically, anything that shows they have deviated from a smooth, linear roll down. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If they deviate in anyway the test is positive and we will be giving them the exercises later in this blog.</span>\n\n&nbsp;\n<h3><strong>Test 2 - Spinal Hinge Kneeling</strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We want to see if the client\'s spine ‘hinges’ during this move.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ask your client to kneel on 4 points like the image. Ideally, you should observe from the side with their top off or lifted so you can see their spine. Then maintaining their neutral spine, ask them to slowly sit back onto their heels. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you have a light pole or broom stick handle, you could place this longways down their spine as a visual and proprioceptive tool for you to see when they hinge and as feedback for them to try to keep their spine/ pelvis still.</span>\n\n<img class=\"aligncenter size-large wp-image-16603\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Spinal-Hinge-Kneeling-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" />\n\n<span style=\"font-weight: 400;\">If they are unable to maintain neutral spine positioning the are positive and we can give them the exercise flows that follow later.</span>\n\n&nbsp;\n<h3><strong>Test 3 - Spinal Hinge Squatting</strong></h3>\n<span style=\"font-weight: 400;\">What\'s the point?</span>\n\n<span style=\"font-weight: 400;\">We want to see if the client\'s spine ‘hinges’ during this move.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ask your client to rest their hands across their chest, feet just outside hips and to sink slowly into a bodyweight squat. Ideally you should observe from the side with their top off or lifted so you can see their spine. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They should be able to reach 90 degrees at the knee without losing their neutral spine. So if you see the pelvis tilt or their spine flex or extend this can indicate a positive result. </span>\n\n<span style=\"font-weight: 400;\">Yes, they can have another go…</span>\n\n<img class=\"aligncenter size-large wp-image-16604\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Spinal-Hinge-Squatting-1024x568.png\" alt=\"\" width=\"1024\" height=\"568\" />\n\n<span style=\"font-weight: 400;\">However, if they cannot control their spine alignment the test is positive and they are ready for the following exercises. </span>\n\n&nbsp;\n<h3><strong>Test 4 - Cross Pelvic Syndrome</strong></h3>\n<span style=\"font-weight: 400;\">What\'s the point?</span>\n\n<span style=\"font-weight: 400;\">We want to see if the client has torsional control.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally and this is the most challenging so again a decent demo would be ideal for clarity of what is expected. (yup we need to be able to demo, or at least coach, a negative result or a pass).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So basically get into a push up/plank position, feet 6” apart no more and hands underneath the shoulders. Now with no rotation at all slowly place one hand onto the others one, then switch.</span>\n\n<img class=\"aligncenter size-large wp-image-16605\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Cross-Pelvic-Syndrome-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" />\n\n<span style=\"font-weight: 400;\">The key is to be able to do this with zero rotation SLOWLY both sides. If not its a positive test result and your client and maybe you should try out the following exercise progressions. </span>\n\n&nbsp;\n<h2><b>The Exercise Progressions</b><span style=\"font-weight: 400;\">  </span></h2>\n&nbsp;\n<h3><strong>Rotating Plank Variations </strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Starting with the elbows against the wall, feet apart, lift up onto the toes and start to rotate so that one arm comes off the wall. Now the purpose here is to ensure that your entire body moves as a unit without any twist. Hips, spine, shoulders should all be moving together. </span>\n\n<img class=\"aligncenter wp-image-16607\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Rotating-Plank-Variations-Wall-1024x677.png\" alt=\"\" width=\"703\" height=\"465\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can then be taken to a more advanced position like elbows on a table, bench with the same rules for technique. Then the floor…</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-16606\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Rotating-Plank-Variations-Floor-1024x618.png\" alt=\"\" width=\"1024\" height=\"618\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do not advance on until you/they have achieved a successful rolling plank at the easier height.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More progressions could include both prone and / or supine work that removes one of the bases of support like these examples…..same rules apply - no twisting otherwise that indicates you are not ready to move on…</span>\n\n<img class=\"aligncenter size-full wp-image-16608\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Fewer-Bases-of-support-Core.png\" alt=\"\" width=\"714\" height=\"410\" />\n<h3><img class=\"aligncenter size-full wp-image-16609\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Stability-Ball-Bridge-Biomechanics-Education.png\" alt=\"\" width=\"696\" height=\"484\" /></h3>\n<h3><img class=\"aligncenter wp-image-16610\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2019/09/Stability-Ball-Plank-Core-Series-3.png\" alt=\"\" width=\"713\" height=\"546\" /></h3>\n<h3><b>Summary</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As trainers and coaches, performing physical assessments, benchmarking and monitoring of your clients\' progress is vital. Without these kinds of tools, how do we know what we are doing is working?</span>\n\n<span style=\"font-weight: 400;\">This all sounds obvious when we discuss it however there is a lack of education in how to really understand and assess our clients\' bodies. </span>\n\n<span style=\"font-weight: 400;\">Those tests that are out there often lack intrinsic preparation and THIS is ultimately what can lead to all of these insidious aches, niggles, recurring injuries and common problems we are hearing our clients talk about. </span>\n\n<span style=\"font-weight: 400;\">A key point to remember is - keep it simple!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Find a system, use it and watch the magic!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">GOOD LUCK!</span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Take Your Skills &amp; Your Clients\' Results To The Next Level?</h2>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\">Then click here to request more information about our Biomechanics Coach Diploma and to speak with one of our team to see if its right for you.</a></p>\n<img class=\"aligncenter wp-image-16228 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/The-Weak-Core-Myth_-Core-Progressions-That-All-Personal-Trainers-Should-Know-1-1024x512.png\" alt=\"\" width=\"1024\" height=\"512\" />\n\n&nbsp;','Does Your Client Have Functional Stability?  The Core Series Part 3','','inherit','closed','closed','','16601-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',16601,'https://biomechanicseducation.com/?p=38700',0,'revision','',0),(38701,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<p><span style=\"font-weight: 400;\">A key component to training Stability &amp; Control of the body for movement and sport is understanding how to evaluate our client\'s core strength ratios.</span><span style=\"font-weight: 400;\"> Without the appropriate strength ratios our clients could be at risk or may not reach their optimal. </span> </p>\n<p>&nbsp;</p>\n<h2><b>Why Are The Core Strength Ratios Important?</b></h2>\n<p><span style=\"font-weight: 400;\">Imagine doing a side bridge to train your core/trunk just on one side only. You just wouldn\'t do this would you? It wouldn\'t seem logical and yet it\'s being done in core training programmes everywhere, let me explain. </span></p>\n<p><span style=\"font-weight: 400;\">The ratio of flexion to extension core strength is not something we experience learning and yet how often do we see core programmes full of of plank variations (flexion strength) but with fewer extension exercises, like bridges etc.</span> <span style=\"font-weight: 400;\">With the rest of the body we learn about how muscles work in pairs, yet with the core there seem to be either general core exercises that can often be flexion dominant or in some cases extension dominant. P</span><span style=\"font-weight: 400;\">ersonal trainers are not taught how to measure their clients\' core strength ratios and yet this is vital for creating an effective core training programme. </span></p>\n<p><span style=\"font-weight: 400;\">Spine biomechanics expert Professor McGill at Waterloo University in Canada has done some research into what the typical core strength ratios of healthy subjects should be. </span> <span style=\"font-weight: 400;\">Initially his study was with 20 athletes however subsequently he repeated the data collection with a further 150 subjects of varying demographics and found the ratio averages to be pretty much the same as in the original study. </span>  </p>\n<p>&nbsp;</p>\n<h3><b>How Do We Test The Core Strength Ratios?</b></h3>\n<p>Let\'s take a moment to see how we actually test for the clients\' core strength in terms of the ratios.  </p>\n<h3><b>Isometric Flexion </b></h3>\n<h3><b><img class=\"aligncenter size-full wp-image-16422\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Isometric-Flexion-Test-1.png\" alt=\"\" width=\"519\" height=\"495\" /></b></h3>\n<h3> </h3>\n<h3><b>Isometric Side Bridging </b></h3>\n<p>&nbsp;</p>\n<p><img class=\"aligncenter size-full wp-image-16424\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Isometric-Lateral-Test-1.png\" alt=\"\" width=\"537\" height=\"534\" /></p>\n<p>&nbsp;</p>\n<h3><b>Isometrics Extension</b></h3>\n<p><img class=\"aligncenter size-full wp-image-16423\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Isometric-Extension-Test-1.png\" alt=\"\" width=\"534\" height=\"531\" /></p>\n<h3><b>Calculating The Ratios</b></h3>\n<p><span style=\"font-weight: 400;\">There are norms or averages that we would expect a normal healthy adult to achieve, and while the client is challenged to hold the positions for as long as they can, actually the duration isn’t our initial focus, the ratios are. It\'s these norms of the ratios of strength that we would be recommending for our client/s in terms of balancing their core strength for risk reduction and optimising performance. </span>     </p>\n<p><img class=\"aligncenter size-full wp-image-16425\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Static-Isometric-Scores-Core-Ratios.png\" alt=\"\" width=\"584\" height=\"617\" /></p>\n<p><span style=\"font-weight: 400;\">Using this equation take the number of seconds they held flexion and divide this by the number of seconds the held extension. This will give you their RATIO of flexor to extensor strength. You can then compare it to the norms. </span> <span style=\"font-weight: 400;\">Repeat for the Isometric Side Bridge right side, then left side to discover their lateral flexor strength ratio. This can often give an indicator of an asymmetry too. </span>  </p>\n<p>&nbsp;</p>\n<h2><b>Using The Data To Build Their Training Programme</b></h2>\n<p>Once you have got all the ratio\'s you can now use it to create a much better training programme. The ratios\' literally tell you what to do. Here are some example exercises you can use. <span style=\"font-weight: 400;\">This is really very simple;</span>  </p>\n<h3>Flexor\'s Training</h3>\n<p><span style=\"font-weight: 400;\">If the flexors are down in their ratio comparison then do isometric flexion: </span></p>\n<p><img class=\"aligncenter size-large wp-image-16413\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Flexor-Core-Training-1-1024x774.jpg\" alt=\"\" width=\"1024\" height=\"774\" /></p>\n<h3> </h3>\n<h3>Lateral Training</h3>\n<p><span style=\"font-weight: 400;\">If one side is down in its strength ratio then do isometric side bridging:</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\"><img class=\"aligncenter size-large wp-image-16420\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Ratios-Side-Bridge-2-1-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" /></span>   </p>\n<p>&nbsp;</p>\n<h3>Extension Training</h3>\n<p><span style=\"font-weight: 400;\">If extension is down ...guess what…...do isometric extension:</span></p>\n<p><img class=\"aligncenter size-large wp-image-16412\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Bridge-Extension-Core-Training-1-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" /></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">This style of training should be monitored closely and re-measured relatively quickly so as not to find the client over compensating the other way. </span>  </p>\n<p>&nbsp;</p>\n<p><b>Finally….</b>   <span style=\"font-weight: 400;\">Once the ratios look like the typical numbers we can then focus on the endurance aspect of stability and control of the trunk!</span>    </p>\n<p>&nbsp;</p>\n<p>References :</p>\n<p>&nbsp;</p>\n<p>Bornstein, R.A. (1986) ‘Normative data on intermanual differences on three tests of motor performance’, <i>Journal of Clinical and Experimental Neuropsychology</i>, 8(1), pp. 12–20. doi:10.1080/01688638608401293.</p>\n<div> </div>\n<p>Boyd, K. (2003) ‘Low back disorders: Evidence-based prevention and Rehabilitation’, <i>Physiotherapy Canada</i>, 55(02), p. 124. doi:10.2310/6640.2003.37832.</p>\n<div> </div>\n<p>Faries, M.D. and Greenwood, M. (2007) ‘Core training’, <i>Strength and Conditioning Journal</i>, 29(2), pp. 10–25. doi:10.1519/00126548-200704000-00001.</p>\n<div> </div>\n<p>Filipa, A. <i>et al.</i> (2010) ‘Neuromuscular training improves performance on the Star Excursion Balance Test in young female athletes’, <i>Journal of Orthopaedic &amp;amp; Sports Physical Therapy</i>, 40(9), pp. 551–558. doi:10.2519/jospt.2010.3325.</p>\n<div> </div>\n<p>Hibbs, A.E. <i>et al.</i> (2008) ‘Optimizing performance by improving core stability and core strength’, <i>Sports Medicine</i>, 38(12), pp. 995–1008. doi:10.2165/00007256-200838120-00004.</p>\n<div> </div>\n<p>Hughes, C. (2007) ‘Ultimate Back Fitness and performance, 2nd edition’, <i>Medicine &amp;amp; Science in Sports &amp;amp; Exercise</i>, 39(11), p. 2094. doi:10.1249/01.mss.0000277088.13344.ec.</p>\n<div> </div>\n<p>Huxel Bliven, K.C. and Anderson, B.E. (2013) ‘Core stability training for injury prevention’, <i>Sports Health: A Multidisciplinary Approach</i>, 5(6), pp. 514–522. doi:10.1177/1941738113481200.</p>\n<div> </div>\n<p>McGill, S. (2010) ‘Core training: Evidence translating to better performance and injury prevention’, <i>Strength &amp;amp; Conditioning Journal</i>, 32(3), pp. 33–46. doi:10.1519/ssc.0b013e3181df4521.</p>\n<div> </div>\n<p>McGill, S.M., Childs, A. and Liebenson, C. (1999) ‘Endurance times for low back stabilization exercises: Clinical targets for testing and training from a normal database’, <i>Archives of Physical Medicine and Rehabilitation</i>, 80(8), pp. 941–944. doi:10.1016/s0003-9993(99)90087-4.</p>\n<div> </div>\n<p>Myer, G.D. <i>et al.</i> (2008a) ‘Trunk and hip control neuromuscular training for the Prevention of Knee Joint Injury’, <i>Clinics in Sports Medicine</i>, 27(3), pp. 425–448. doi:10.1016/j.csm.2008.02.006.</p>\n<div> </div>\n<p>Myer, G.D. <i>et al.</i> (2008b) ‘Trunk and hip control neuromuscular training for the Prevention of Knee Joint Injury’, <i>Clinics in Sports Medicine</i>, 27(3), pp. 425–448. doi:10.1016/j.csm.2008.02.006.</p>\n<div> </div>\n<p><i>Neuromuscular exercise program nemex</i> (no date) <i>Physiopedia</i>. Available at: https://www.physio-pedia.com/Neuromuscular_Exercise_Program (Accessed: 10 June 2024).</p>\n<div> </div>\n<p>Reiman, M.P. <i>et al.</i> (2010) ‘Reliability of alternative trunk endurance testing procedures using clinician stabilization vs. traditional methods’, <i>Journal of Strength and Conditioning Research</i>, 24(3), pp. 730–736. doi:10.1519/jsc.0b013e3181c06c56.</p>\n<div> </div>\n<p>Willson, J.D. <i>et al.</i> (2005) ‘Core stability and its relationship to lower extremity function and injury’, <i>Journal of the American Academy of Orthopaedic Surgeons</i>, 13(5), pp. 316–325. doi:10.5435/00124635-200509000-00005.</p>\n<div> </div>\n<p>&nbsp;</p>\n<hr />\n<h2> </h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>rachel@biomechanicseducation.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','The Core Ratios: The Personal Trainers Guide To Assessing & Programming For The Core','','inherit','closed','closed','','16411-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',16411,'https://biomechanicseducation.com/?p=38701',0,'revision','',0),(38702,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<p><span style=\"font-weight: 400;\">The industry is obsessed with thinking everyone has a ‘weak’ core, clients think they have a ‘weak’ core, therapists are sending their patients to Pilates class because they think they have a ‘weak’ core.</span>  </p>\n<p><span style=\"font-weight: 400;\">How did we ALL OF A SUDDEN apparently get ‘weak’ cores? </span></p>\n<p><span style=\"font-weight: 400;\">I will tell you why - it is NOT as simple as them being ‘WEAK’!</span>  </p>\n<p><span style=\"font-weight: 400;\">Let me explain….</span>   <span style=\"font-weight: 400;\">If something is weak, what are we taught to do? Strength it, right? </span></p>\n<p><span style=\"font-weight: 400;\">Okaaaaay …..</span> <span style=\"font-weight: 400;\">So how do we identify a ‘weak’ core?</span> <span style=\"font-weight: 400;\">What does ‘weak’ actually mean? </span></p>\n<p><span style=\"font-weight: 400;\">The definition of ‘weak’ is ….what?</span> <span style=\"font-weight: 400;\">What is the question…???</span>   <span style=\"font-weight: 400;\">Let us first ask...</span>  </p>\n<p>&nbsp;</p>\n<h2><b>What </b><b><i>Causes</i></b><b> A ‘Weakness’?</b></h2>\n<p><span style=\"font-weight: 400;\">Well in my experience as a Biomechanics Coach, having tested many peoples bodies, I rarely see a core that is simply ‘weak’ or that only requires core stability/strength work. In my experience, the ‘weakness’ is actually what I would classify as dysfunction. For example, there could be...</span></p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Muscle spasm</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Joint immobility</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Nerve inhibition</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Reciprocal inhibition </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Combinations of the above </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">A lack of endurance capacity</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Oh and just weak of course!</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">So looking at each of these - how many purely require strength work when identified? </span></p>\n<p><span style=\"font-weight: 400;\">Surely it makes sense to reduce the dysfunction, prescribe the appropriate intervention THEN condition with some relevant strength/stability work.</span> <span style=\"font-weight: 400;\">This could be identified as Core Progressions and, once again, from our very basic training neuromuscular progressions would make sense dont you agree….?</span>  </p>\n<p>&nbsp;</p>\n<h2><b>Neuromuscular Core Progressions </b></h2>\n<p><span style=\"font-weight: 400;\">There is a very cool and VERY simple (we LOVE simple) way of applying this logical system and what can come of it, very often, is a rapid improvement that you can prove…..</span> <span style=\"font-weight: 400;\">Using the underpinning knowledge we learn at level 2, consider neuromuscular progression.</span>  </p>\n<p>&nbsp;</p>\n<p><b>But First Let Remember…..</b> <span style=\"font-weight: 400;\">What Is A ‘Neuromuscular’ </span><i><span style=\"font-weight: 400;\">Exercise</span></i><span style=\"font-weight: 400;\">?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">The rationale for </span><b>Neuromuscular Exercises</b><span style=\"font-weight: 400;\">. </span><b>Neuromuscular</b><span style=\"font-weight: 400;\"> control is defined as the unconscious trained response of a muscle to a signal regarding dynamic joint stability. ... </span><b>Neuromuscular exercise</b><span style=\"font-weight: 400;\"> has effects on functional performance, biomechanics, and muscle activation patterns of the surrounding joint musculature.</span>  </p>\n<p>&nbsp;</p>\n<h3><b>OK So Now, What Is ‘Neuromuscular’ </b><b><i>Progression</i></b><b>?</b></h3>\n<p>  <span style=\"font-weight: 400;\">Ok, let’s just pause for a second, if we are going to start at the very beginning then I would suggest you go through the FREE Project Squat series I have which will show you how to look for and improve dysfunction in the pelvis.</span> <span style=\"font-weight: 400;\">OR attend the 1 day intrinsic biomechanics workshop we told you about last week...</span>  </p>\n<p>&nbsp;</p>\n<p>[dt_divider style=\"thick\" /]</p>\n<table style=\"height: 178px;\" width=\"1327\">\n<tbody>\n<tr>\n<td>\n<h2><b>Intrinsic Biomechanics Workshop</b></h2>\n<p><span style=\"font-weight: 400;\">Nov 2nd in Nottingham</span></p>\n<p><span style=\"font-weight: 400;\">Nov 16th in Belfast</span></p>\n<p><span style=\"font-weight: 400;\">Nov 23rd in London</span></p>\n<p><a href=\"https://www.biomechanicseducation.com/product/intrinsic-biomechanics-taster/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">Click here to find out more</a></p>\n<p><b>Just £188 --- Or FREE when you book 2 other 1 day workshops</b></p>\n</td>\n</tr>\n</tbody>\n</table>\n<p>[dt_divider style=\"thick\" /]</p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Once the intrinsic subsystems are moving more freely THIS is the time to start a periodised progressive core training programme like this one:</span>  </p>\n<h2> </h2>\n<h2><span style=\"font-weight: 400;\">STEP ONE: </span><b>Can They Engage Their Core?</b></h2>\n<p><span style=\"font-weight: 400;\">The Test + Exercise</span>   <span style=\"font-weight: 400;\">1). Lie your client on their back, knees bent,</span><span style=\"font-weight: 400;\"> arms on the floor by their sides - this gives them a good ‘base of support’.</span>  </p>\n<p><span style=\"font-weight: 400;\">Next, place your fingertips under the natural lumbar curve so you can just feel their natural position.</span> <span style=\"font-weight: 400;\">Now ask them to ‘brace’. A good brace is when they tense their entire core as if they were going to take a punch in the stomach. </span>  </p>\n<p><span style=\"font-weight: 400;\">They pass this test if they can do this without the pressure of their back changing at all on your fingers. If they move, lift or press down onto your fingers they failed the test. This means we keep coaching until they have the capacity to ‘control their core’. If they still struggle then they are not ready and must go back to the iMoveFreely base exercises (anti spasms, nerve mobilisations &amp; pure isolated joint mobilisations).</span>  </p>\n<p><span style=\"font-weight: 400;\">You (and they) might be surprised by how difficult this is IF you\'re not prepared for it. However, one moving more freely on the inside, the progress is often very quick. </span>  </p>\n<p>&nbsp;</p>\n<h2><span style=\"font-weight: 400;\">STEP TWO: </span><b>Can They Engage Their Core Maximally?</b></h2>\n<p><span style=\"font-weight: 400;\">Each of these is a Test + an Exercise</span></p>\n<p><span style=\"font-weight: 400;\">2). Crook Lying Brace - practice various percentages of muscular effort. </span></p>\n<p><span style=\"font-weight: 400;\">E.G 40% effort, 60% effort, 80% effort maybe up to 100% effort of muscular contraction. They only progress if they can achieve each ‘level’. If they lose their lumbar position at any point this is their failure point, so keep them here while you coach them further OR go back to the iMoveFreely base exercises (anti spasms, nerve mobilisations &amp; pure isolated joint mobilisations).</span>  </p>\n<p>&nbsp;</p>\n<h2><span style=\"font-weight: 400;\">STEP THREE: </span><b>Can They Engage Their Core With Control?</b></h2>\n<p><span style=\"font-weight: 400;\">Each of these is a Test + an Exercise</span> <span style=\"font-weight: 400;\">3). If they fly through these well then they are ready to be tested on their ability to control their core/trunk. Now we ask them to continue to maintain their spine position while moving their arms and legs by varying degrees SUPER SLOWLY. These are flexor dominant.</span>  </p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Lift foot off the floor, taking 8 seconds from the initial brace, to lifting and hovering foot 1” off the floor, to replacing the foot and finally letting the brace go. Repeat other side.</span></li>\n</ul>\n<p><img class=\"aligncenter size-large wp-image-16241\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-for-personal-trainers-1-1-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" /></p>\n<p>&nbsp;</p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Brace, now lift foot 1”, then extend the leg keeping it 1” off the floor, taking 8 seconds from start to finish as before. Repeat other side.</span></li>\n</ul>\n<p><img class=\"aligncenter size-large wp-image-16245\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-progressions-for-personal-trainers-2-1-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" /></p>\n<p>&nbsp;</p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Brace, lift foot 1”, now externally rotate the knee 30 degrees. Repeat other side.</span></li>\n</ul>\n<p>    <span style=\"font-weight: 400;\">This continues as you gradually increase the neuromuscular complexity through the use of lever lengths, removing different bases of support - legs, arms etc.</span>  </p>\n<p><img class=\"aligncenter size-large wp-image-16252\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-for-personal-trainers-to-use-with-clients-3-1-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" />   <img class=\"aligncenter size-large wp-image-16251\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-all-personal-trainers-should-know-4-1-1024x727.jpg\" alt=\"\" width=\"1024\" height=\"727\" /></p>\n<p><span style=\"font-weight: 400;\">Then once they are successfully doing all of this while maintaining a stable core/trunk then you progress to prone kneeling, </span> <span style=\"font-weight: 400;\">Each of these is a Test + an Exercise</span>   <span style=\"font-weight: 400;\">4). Prone kneeling is the subsequent neuromuscular challenge and is extensor dominant. </span></p>\n<p><img class=\"aligncenter size-large wp-image-16254\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-Prone-Kneeling-1-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" /></p>\n<p>&nbsp;</p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">As before encouraging them to brace, maintaining their ‘neutral’ position, then ask them to lift one arm in front of them without losing their pelvic/spine position. Repeat on the other side.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Brace - take arm to side. Repeat other side.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Brace - lift and extend leg. Repeat other side.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Brace - take leg to side. Repeat other side.</span></li>\n</ul>\n<p>  <span style=\"font-weight: 400;\">This also continues through to lifting opposite arm and leg for example. </span></p>\n<p><img class=\"aligncenter size-large wp-image-16258\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Progressions-Prone-Kneeling-2-1-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" /></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">5). This phase takes them through similar variations while - Seated, seated on an unstable surface, standing, standing on an unstable surface.</span>  </p>\n<p><span style=\"font-weight: 400;\">Bear in mind if they cannot control their core while flat on their back, with no extra challenge and a huge base of support, imagine what their TRUE core control is like upright with weights being moved around their body!</span>        </p>\n<p>I want to once again just state that you should be working on improving any dysfunction in the pelvis, spine, shoulders, before you start working on the core. However, these guidelines we have covered today will give you a good grounding and route to follow as you help clients improve their core function.</p>\n<p>&nbsp;</p>\n<hr />\n<h2> </h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','The Weak Core Myth: Core Progressions That All Personal Trainers Should Know','','inherit','closed','closed','','16225-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',16225,'https://biomechanicseducation.com/?p=38702',0,'revision','',0),(38703,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<h2><b>Is It Time To Take Your Skills Up Another Level?</b></h2>\n<p><span style=\"font-weight: 400;\">If you are a personal trainer, sports therapist etc etc and you are looking for CPD and/or to simply improve your knowledge and skill set in the world of Intrinsic biomechanics then you need to check out our 1 day workshops.</span>   <span style=\"font-weight: 400;\">If you haven’t stepped into our world yet, I recommend checking out the Intrinsic Biomechanics Workshop as that will set the grounding for the rest of it.</span>  </p>\n<h3><b>Already A Biomechanics Coach?</b></h3>\n<p><span style=\"font-weight: 400;\">If you are already a Biomechanics Coach then make sure you jump on the sport-specific ones… you are going to love them.</span> I thought I would take a moment to give you a brief intro to each of our workshops and if you would like to have a chat and hear what they are all about then <a href=\"https://www.biomechanicseducation.com/contact-us/\" target=\"_blank\" rel=\"noopener noreferrer\">click here</a>, fill in the form and we can get on a call to see if they are right for you.</p>\n<p>&nbsp;</p>\n<h2><b>Intrinsic Biomechanics Workshop </b></h2>\n<p><span style=\"font-weight: 400;\">Perfect for trainers and coaches looking to access elite skills easily that will impress both your clients and potential clients on the gym floor. </span></p>\n<p><span style=\"font-weight: 400;\">Commonly these days clients come to us with some kind of physical complaint and chances are you feel ill equipped to deal with this, right?</span></p>\n<p><span style=\"font-weight: 400;\">If you find yourself lacking confidence and really wishing you had a deeper level of understanding of the body then this is the workshop for you.</span></p>\n<p><span style=\"font-weight: 400;\">Find the root causes of their low grade discomforts with evidence based pelvic, spine and shoulder tests that can be done anywhere, without any equipment and really easily. But just watch those results when you re-test after the iMoveFreely exercises you will also learn!!</span></p>\n<p>&nbsp;</p>\n<h2><b>iMoveFreely Instructor Workshop</b></h2>\n<p><span style=\"font-weight: 400;\">If you teach group exercise THIS IS A MUST! </span></p>\n<p><span style=\"font-weight: 400;\">The foundation for all movement these movement preparation flows are fantastic as a warm up, workshop or even blended into your present class.</span></p>\n<p><span style=\"font-weight: 400;\">Teaching movement to a group of people can feel frustrating when they all move so differently and come with such a variety of problems.</span></p>\n<p><span style=\"font-weight: 400;\">This workshop will give you an increased confidence and so many more tools for your tool box. The results are stunning and your participants will LOVE absolutely them.</span></p>\n<p><i><span style=\"font-weight: 400;\">“THIS IS THE BEST COURSE I HAVE EVER DONE”</span></i><span style=\"font-weight: 400;\"> - Jayne Nicholls. </span></p>\n<p>&nbsp;</p>\n<h2><b>Golf Biomechanics Workshop</b></h2>\n<p><img class=\"aligncenter size-large wp-image-16056\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Golf-Biomechanics-Workshop-1-1024x512.png\" alt=\"\" width=\"1024\" height=\"512\" /></p>\n<h3>Are You A Golf Teaching Professional?</h3>\n<p>If you\'re a golf teaching professional, you probably know all too well the feeling of analysing someones swing, giving them tips, cues, training drills only to find that no matter what they try they simply can\'t do what your asking. So often this has nothing to do with you as a coach and everything to do with what their body will physically let them do. If they can\'t physically get into the right positions it doesn\'t matter how much you tell them or coach them into it. The body will compensate and find different ways. </p>\n<p>&nbsp;</p>\n<p>You as a coach assess the extrinisic biomechanics, you look at the swing plane, where the cub and hands are at impact and hundreds of other points. Well we are going to help you see it from the inside of the body too. You see there are all kinds of ways the body compensates and those lead to a lot of the movement patterns that create certain shot shapes. For example, a leg length discrepancy can easily lead to a slice. A lack of thoracic mobility can easily lead to tilting in the spine. The list goes on and on. And when you understand these principles, you\'ll be able to provide your clients with exercises to help improve their game. </p>\n<p>&nbsp;</p>\n<h3>Are You A Personal Trainer Or Strength &amp; Conditioning Coach Interested In Golf Or Working With Golfers?</h3>\n<p>Imagine being able to help someone dramatically improve their game without ever touching a golf club. As a coach you can help get people physically and biomechanically ready to swing the club. You can support golf coaches and make their life so much easier. </p>\n<p>If you want to get into the world of golf and working with golfers, then you need to be on this workshop!</p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Delivered by world leader of Intrinsic Biomechanics, Martin Haines - Biomechanics Coach, Chartered Physiotherapist &amp; PGA advisor he brings to you this fantastic golf specific workshop.</span> <span style=\"font-weight: 400;\">Ideal for both amateur and professional players and coaches OR even personal trainers looking to offer their services to golf clubs.</span> <span style=\"font-weight: 400;\">Learn from the best! </span>  </p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.biomechanicseducation.com/contact-us/\">Click here to enquire and find out more</a></p>\n<p>&nbsp;</p>\n<h2><b>Running Biomechanics Workshop</b></h2>\n<p><span style=\"font-weight: 400;\"><img class=\"aligncenter size-large wp-image-16057\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Running-Biomechanics-Workshop-1-1024x512.png\" alt=\"\" width=\"1024\" height=\"512\" /></span></p>\n<p><span style=\"font-weight: 400;\">Our BRAND NEW Running specific workshop - BY DEMAND! </span></p>\n<p><span style=\"font-weight: 400;\">Yes this workshop has been designed specifically for those who run, coach running or train clients who run from beginner, amateur to athlete. </span></p>\n<p><span style=\"font-weight: 400;\">The trends and fads we hear about can leave us feeling unsure about what is best for our runners, cant it? Barefoot? Forefoot strike Pose running? Mid foot strike? What’s best? How would I know?</span></p>\n<p><span style=\"font-weight: 400;\">Learn all about the different running gaits and what is best for your running client/s.</span><span style=\"font-weight: 400;\"><br /></span></p>\n<p>&nbsp;</p>\n<h2><b>Low Back Health Workshop</b></h2>\n<p><span style=\"font-weight: 400;\">This hugely educational day will deepen your knowledge and understanding of spine anatomy, MRI scan, reports, clinical conditions that can affect low back health, pain science, manual articulations and how to support a client who lives with chronic low grade low back pain. </span></p>\n<p><span style=\"font-weight: 400;\">Back problems are rife and as a trainer or coach you want to provide an informed exercise programme that will help them. However gaining a deeper level of understanding of the anatomy and also clinical conditions your client may present with can make all the difference to your business so why not join us?</span></p>\n<p><span style=\"font-weight: 400;\">A great </span><i><span style=\"font-weight: 400;\">introduction</span></i><span style=\"font-weight: 400;\"> to the industry recognised L4 Low Back Pain anatomy and theory.</span></p>\n<p>&nbsp;</p>\n<h2><b>What’s The Investment?</b></h2>\n<p><span style=\"font-weight: 400;\">If you only want to do one workshop then the investment is £188. </span></p>\n<p><strong>However, our most popular option is the <span style=\"color: #ff0000;\">3 workshops for the price of 2</span>. Which means your investment is just £376 (saving you £188)</strong></p>\n<p><span style=\"font-weight: 400;\">So if you like the sound of several of the workshops that is definitely the best option for you. </span> <span style=\"font-weight: 400;\">You could start with the Intrinsic Biomechanics Workshop and then do the Running and the Golf specific ones. It’s totally up to you.</span> <span style=\"font-weight: 400;\">To find out upcoming dates and to chat with one of the team to see if this is the right workshop for you, simply click here, fill in your details and we will be in touch shortly.</span>  </p>\n<p>&nbsp;</p>\n<h3><b>Where &amp; When Are The Biomechanics Workshops?</b></h3>\n<p><span style=\"font-weight: 400;\">We have 4 venues that the workshops are taking place at, in London, Nottingham, Scotland and Belfast.</span> <span style=\"font-weight: 400;\">We have a whole load of upcoming dates. So if you are interested, the best thing to do is enquire and let me know which workshops your interested in and then we can have a chat and I can let you know the dates.</span>  </p>\n<p>&nbsp;</p>\n<h3><b>Want To Find Out More?</b></h3>\n<p><span style=\"font-weight: 400;\">If you want to find out more, then click here, fill in your information on the form and one of the team will be in touch to have a chat, let you know the upcoming dates and locations and see if there is a workshop for you.</span>  </p>\n<p>&nbsp;</p>\n<h2 style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/contact-us/\"><strong>--&gt; CLICK HERE TO ENQUIRE NOW &lt;--</strong></a></h2>\n<p>&nbsp;</p>\n<hr />\n<h2> </h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Biomechanics Education 1 Day Workshops For Personal Trainers, Sports Therapists, S&C Coaches And More...','','inherit','closed','closed','','16054-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',16054,'https://biomechanicseducation.com/?p=38703',0,'revision','',0),(38704,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<p>Last week we started to take a look at the feet and ankles, and if you haven\'t read that one, I suggest you start there, just click here to go back and read that one.  </p>\n<h2><b>What </b><b><i>Can</i></b><b> We Do In Terms Of Exercise?</b>  </h2>\n<p><span style=\"font-weight: 400;\">So this is the really cool part, we are the exercise experts, right? </span></p>\n<p><span style=\"font-weight: 400;\">So some non-contraindicated simple lower limb/foot exercises could be a real help AND would mean we stand out and have an increased confidence when working with clients requiring foot attention… not THAT kind….c’mon stay with me….I mean pronation and supination exercises.</span>  </p>\n<p><span style=\"font-weight: 400;\">Firstly we need to assess the foot to check if it is loose at the MTJ and/or if they struggle to supinate by applying the Jacks Test.</span>   <span style=\"font-weight: 400;\">There are 2 simple tests that can contribute to…</span>  </p>\n<ol>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Our understanding of the foot function of our clients</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Our confidence in then prescribing exercises </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Our ability to communicate more effectively and confidently with foot specialists </span></li>\n</ol>\n<p>&nbsp;</p>\n<h2><b>SubTalar Motion Test (Testing for Mobility of the STJ)</b></h2>\n<p>[embed]https://youtu.be/19cTcHQp5hQ[/embed]</p>\n<p>&nbsp;</p>\n<ol>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Have your client lie prone (face down) on a massage table, bed or bench and with their ankles free of the edge of the surface. Encourage them to relax.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Now facing their feet, place your right hand on top of the left calf to keep the leg still. </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Using your left thumb and forefinger to take hold of the ball of the 5th met (little toe).</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Push the 5th met towards the centre of the knee, into dorsi flexion, the ‘wiggle’ the foot from side to side to get a sense of its laxity. </span></li>\n</ol>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If it feels loose this foot/ankle has a propensity to pronate</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If it feels very stiff it might have a propensity to supination</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Somewhere in the middle is more or less neutral</span></li>\n</ul>\n<p>  <img class=\"aligncenter size-large wp-image-15788\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Subtalar-Motion-Test-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">This test can feel subjective until you have felt a few or been taught by someone more experienced at this particular test. </span> <span style=\"font-weight: 400;\">It is probably best to start by comparing the left to the right to see if one feels looser or stiffer, then decide which feels more so to start your analysis and make a decision.</span>  </p>\n<h3><b>If It Feels Loose… What Do You Do?</b></h3>\n<p><strong>Result = Loose</strong></p>\n<p><span style=\"font-weight: 400;\">I</span><span style=\"font-weight: 400;\">f the foot feels loose (that it has a propensity to pronate) then there is a chance it struggles with supination. So we might prescribe supination exercises.</span> <span style=\"font-weight: 400;\">Using a resistance band, place it around the inside of your client\'s right foot (for example) also the inside of their big toe, then offer resistance from their right side.</span> <span style=\"font-weight: 400;\">Now ask them to pull/turn the foot inwards, adducting it, inverting the heel and if possible adding some plantar flexion - remember that triplanar motion for pronation?</span></p>\n<p><span style=\"font-weight: 400;\">Reps and sets are just common sense and client dependant - 2 x 8 up to 3 x 15 for example. </span></p>\n<p><span style=\"font-weight: 400;\">Repeat on both feet if they are both loose of course.</span>  </p>\n<h3><b>If The Joint Is Stiff - What Can You Do?</b></h3>\n<p><strong>Result = Stiff</strong></p>\n<p><span style=\"font-weight: 400;\">However, if the foot feels stiff then we might consider prescribing pronation exercises along with mobility work.</span> <span style=\"font-weight: 400;\">This time we would take the resistance band around the outside of the right foot for example, close to the outside of the toes, then offer resistance from the left side of the client. </span> <span style=\"font-weight: 400;\">Now ask them to pull/turn the foot outwards, abducting it, everting the heel and if possible dorsi flexing to take into account the triplanar action of supination.</span> <span style=\"font-weight: 400;\">Mobility for the ankle might include what you would expect, calf stretching, joint mobilising etc.</span> <span style=\"font-weight: 400;\">Reps and sets as above.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Now let’s have a look at the second screen we can do...</span>  </p>\n<h3><b>Jack’s Test (To Understand Capacity to Re-Supinate)</b></h3>\n<p><i><span style=\"font-weight: 400;\">This is my favourite of all the tests I do because it shows very simply the nature of our body as an integrated system. Watch whats happens to the shoulders and upper body when you do it on someone who scores a 2-3.</span></i></p>\n<p>&nbsp;</p>\n<p>[embed]https://youtu.be/iW7uAzKJmgs[/embed]</p>\n<p>&nbsp;</p>\n<ol>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Have your clients stand upright and relaxed, looking straight ahead and ask them to take a couple of steps to allow their feet to land where they want to.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">While kneeling down in front of them, explain “</span><i><span style=\"font-weight: 400;\">try not to help nor resist against this movement and keep looking straight ahead, not down, arms by your sides”</span></i></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Now place open hands onto the floor in front of their right foot, place both of your thumbs underneath their big toe, with the rest of your hands, fingers spread out on the floor. </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Push the big toe upwards about 45 degrees towards the middle shin with as much effort as is required to see how ‘heavy’ this feels. Watch for if the foot arches and assess how easy of difficult it is to do this.</span></li>\n</ol>\n<p><img class=\"aligncenter wp-image-15787 size-large\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Jacks-test-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /> <span style=\"font-weight: 400;\">This movement should functionally activate the </span><b>Windlass Mechanism</b><span style=\"font-weight: 400;\">.</span> <span style=\"font-weight: 400;\">The Windlass Mechanism is when the plantar fascia that is ‘wrapped’ around the head of the Hallux (big toe) pulls the foot into that arched, supinated, rigid foot for Toe Off. (Imagine walking over the foot, the point at which your big toe extends)</span> <span style=\"font-weight: 400;\">However, when we score the effort it takes to do this we can get an impression of its influence on the gait cycle.</span>  </p>\n<p><span style=\"font-weight: 400;\">We have a scoring like this :</span>  </p>\n<p><span style=\"font-weight: 400;\">0-    Very Low Resistance</span></p>\n<p><span style=\"font-weight: 400;\">1 -</span> <span style=\"font-weight: 400;\">Low Resistance</span></p>\n<p><span style=\"font-weight: 400;\">2 - </span> <span style=\"font-weight: 400;\">Moderate Resistance</span></p>\n<p><span style=\"font-weight: 400;\">3 -</span> <span style=\"font-weight: 400;\">High Resistance</span></p>\n<p><span style=\"font-weight: 400;\">4 - </span> <span style=\"font-weight: 400;\">Very High Resistance</span></p>\n<p><span style=\"font-weight: 400;\">5 - </span> <span style=\"font-weight: 400;\">Impossible to Move</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">You are again subjectively (initially at least) measuring the amount of effort it takes to push the toe into extension. This ‘action’ is part of Toe Off during the gait cycle.</span> <span style=\"font-weight: 400;\">If the toe lifts so easily, it almost flies off the floor with virtually no effort, that is a 0-1 score. </span> <span style=\"font-weight: 400;\">If the toe is so heavy that no movement or arch happens, even when you apply a huge effort this is a 5.</span> <span style=\"font-weight: 400;\">If it is really heavy but there is a small arching this is a 4.</span> <span style=\"font-weight: 400;\">The effort should score around a 2-3. This indicates there is some rigidity but its not so easy that it becomes unstable.</span>  </p>\n<p>&nbsp;</p>\n<h3><b>Exercise Prescription After The Screen</b></h3>\n<p>&nbsp;</p>\n<h4><strong>Result = 4-5</strong></h4>\n<p><span style=\"font-weight: 400;\">If the score is heavy and 4-5 then this indicates the foot struggles with supination. So we might prescribe supination exercises.</span> <span style=\"font-weight: 400;\">Using a resistance band, place it around the inside of your clients right foot (for example) also the inside of their big toe, then offer resistance from their right side.</span> <span style=\"font-weight: 400;\">Now ask them to pull/turn the foot inwards, adducting it, inverting the heel and if possible adding some plantar flexion.</span> <span style=\"font-weight: 400;\">Same as the previous test/exercise.</span>  </p>\n<h4><strong>Result = 0-2</strong></h4>\n<p><span style=\"font-weight: 400;\">However, if the foot moves too easily into supination then we might consider prescribing pronation exercises.</span></p>\n<p><span style=\"font-weight: 400;\">This time we would take the resistance band around the outside of the right foot for example, close to the outside of the toes, then offer resistance from the left side of the client. </span></p>\n<p><span style=\"font-weight: 400;\">Now ask them to pull/turn the foot outwards, abducting it, everting the heel and if possible dorsi flexing.</span></p>\n<p><span style=\"font-weight: 400;\">Same as the previous test/exercise.</span></p>\n<p>&nbsp;</p>\n<h3><b>Summary </b></h3>\n<p><span style=\"font-weight: 400;\">Pronation and supination exercises (of which there are several by they way) as you can imagine, are not likely to be contraindicated on the kind of clients we are generally insured to work with.</span> <span style=\"font-weight: 400;\">The really cool thing here is that we can use really simply to apply tests and exercises like these that offer us additional insights for improving our clients capacity for movement. </span> <span style=\"font-weight: 400;\">We should also gain some degree of confidence to approach foot specialists and we are also in a great position to prepare the lower body system/s for pre-orthotic conditioning.</span> <span style=\"font-weight: 400;\">Try them out and please let me know how you get on….</span>    </p>\n<hr />\n<h2> </h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Foot Biomechanics Made Simple - Part 2 - How To Test & Correct Imbalances In Foot Biomechanics','','inherit','closed','closed','','15786-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',15786,'https://biomechanicseducation.com/?p=38704',0,'revision','',0),(38705,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<p><span style=\"font-weight: 400;\">Summer is almost here so take your shoes off….go on…..now look at your feet for a moment….</span> <span style=\"font-weight: 400;\">how do they look to you? </span></p>\n<p>Are your toes straight? </p>\n<p>Does your big toe angle inwards like the shape of the shoes you wear?</p>\n<p>Maybe your smaller digits roll under?</p>\n<p>Do you see different skin textures caused by your footwear?</p>\n<p><span style=\"font-weight: 400;\">The reasons they change from when we were young are....</span></p>\n<p>&nbsp;</p>\n<ol>\n<li><span style=\"font-weight: 400;\">We walk around on top of them, jump on them, run on then, maybe even swivel &amp; swerve on them!</span></li>\n<li>They experience lots of different \'casts\' we call shoes, that alter the space they move or \'train\' in. </li>\n<li><span style=\"font-weight: 400;\">They have SO MANY joints &amp; connective tissue structures inside them - 26 bones, 19 muscles, and 107 ligaments!!</span></li>\n</ol>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">This is however important in terms of their contribution to the function of the gait cycle which we will explore here. The feet are often underestimated in their level of influence on the rest of the body.</span> </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">The very complex nature of the foot\'s multiple joint surfaces &amp; combinations of planes of actions is why they are so wonderful yet can also be so problematic. So much </span><i><span style=\"font-weight: 400;\">could</span></i><span style=\"font-weight: 400;\"> go wrong....both in ascending biomechanical influencers AND from descending biomechanical influencers.</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Here I would like to share with you a simplistic interpretation of foot function, in an effort to help us, help our clients. That said there is nothing more valuable to our businesses than relations with an open minded multidisciplinary team of practitioners.</span></p>\n<p>&nbsp;</p>\n<h2><b>Pronation &amp; Supination - What Are They?</b></h2>\n<p><span style=\"font-weight: 400;\">Well, both are </span><i><span style=\"font-weight: 400;\">tri-planar</span></i><span style=\"font-weight: 400;\"> in their actions meaning they are made up of 3 actions. </span>  </p>\n<h3><strong>Pronation Of The Foot</strong></h3>\n<p><img class=\" wp-image-15604 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Pronation-of-the-foot-Foot-Biomechanics-1-104x300.png\" alt=\"\" width=\"143\" height=\"413\" /></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<ol>\n<li><span style=\"font-weight: 400;\">Eversion - base of the heel turns out. </span></li>\n<li><span style=\"font-weight: 400;\">Abduction - the toes abduct away from the body. </span></li>\n<li><span style=\"font-weight: 400;\">Dorsi-Flexion - the toes get closer to the shin decreasing the anterior angle of the ankle. </span></li>\n</ol>\n<p>&nbsp;</p>\n<p>The pronated foot is wide, loose, floppy, long &amp; the Midtarsal Joint is ‘unlocked’ <span style=\"font-weight: 400;\">This is the shock absorption phase of the gait cycle/walking. This is necessary to reduce, dissipate or dampen shock as our foot hits the floor each step we take so that it does not reverberate up into the brain. </span>  </p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<h3><strong>Supination Of The Foot</strong></h3>\n<p><img class=\" wp-image-15605 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Supination-of-the-foot-Foot-Biomechanics-1-110x300.png\" alt=\"\" width=\"150\" height=\"409\" /></p>\n<p>&nbsp;</p>\n<ol>\n<li><span style=\"font-weight: 400;\">Inversion - base of the heel turns in</span></li>\n<li><span style=\"font-weight: 400;\">Adduction - the toes adduct towards from the body</span></li>\n<li><span style=\"font-weight: 400;\">Plantar-Flexion - the toes get further away from the shin increasing the anterior angle of the ankle</span></li>\n</ol>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">The supinated foot is narrow, stiff, rigid, short &amp; the Midtarsal Joint is ‘locked’ </span>   <span style=\"font-weight: 400;\">This allows for the ‘toe off’ phase of the gait cycle/walking. This is necessary to propel the body forwards on a solid foot.</span>  </p>\n<h2> </h2>\n<h2> </h2>\n<h2> </h2>\n<h2> </h2>\n<h2> </h2>\n<h2>The ‘Overpronation’ Fallacy</h2>\n<p><span style=\"font-weight: 400;\">When we understand the phases of the gait cycle it becomes apparent that the epidemic of \'over pronators\' might actually be misunderstood, maybe we don\'t OVER pronate after all.....</span></p>\n<p>&nbsp;</p>\n<h2><b>The Gait Cycle</b></h2>\n<p><img class=\"aligncenter  wp-image-15606\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/The-Gait-Cycle-Foot-Biomechanics-1-300x190.png\" alt=\"\" width=\"596\" height=\"378\" /></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Heel Strike - Pronation - Shock Absorption </span><span style=\"font-weight: 400;\">     </span></p>\n<p><span style=\"font-weight: 400;\">ForeFoot Landing - Pronation - Shock Absorption </span></p>\n<p><span style=\"font-weight: 400;\">Neutral - Mid Point - Body Moves Over The Foot </span><span style=\"font-weight: 400;\">              </span></p>\n<p><span style=\"font-weight: 400;\">Heel Lift - Supination - Big Toes Extends Initiating Propulsion</span><span style=\"font-weight: 400;\">                       </span></p>\n<p><span style=\"font-weight: 400;\">Toe Off - Supination - Rigid Foot For Propulsion</span>  </p>\n<p>&nbsp;</p>\n<h3><b>So What? </b></h3>\n<p><span style=\"font-weight: 400;\">The Root Theory has been a huge influence on the podiatric / orthotic professions with the ‘loose’ feet being described as overpronators because the foot rolled inwards. Also the knee was valgus, the foot was still floppy &amp; pronating at the \'heel lift\' phase of the gait cycle. This is when it was supposed to be supinating &amp; rigid, therefore the ascending force could be causing problems including symptoms, </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">What this meant was that at the point of \'toe off\' the foot was still pronating, thus ‘over’ pronators were still loose when they should be more rigid for the propulsion phase. So technically / functionally we are more likely to be LATE SUPINATORS as opposed to \'over\' pronators! The TIMING of supination is late. </span></p>\n<p><span style=\"font-weight: 400;\">Root design a support to stop excessive pronation happening by offering a ‘wedge’ on the inside of the foot/shoe, an orthotic to ‘fill the gap’ &amp; stop excessive pronation. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">However this often created another problem.</span> <span style=\"font-weight: 400;\">It stopped the absorption or dissipation of shock, thus creating alternative problems as you can imagine. Feet hitting the ground already supinated, or at least with a reduced ability to pronate, increased the shock / force ascending upwards in the chain.</span>  </p>\n<p>&nbsp;</p>\n<h3><b>The Modern Theory - Panjabi’s Model?</b></h3>\n<p><span style=\"font-weight: 400;\">Design of orthotics has evolved to recognised this by fashioning smaller wedges that improve the <strong><em>timing of supination</em></strong> rather than stopping pronation. This gave the late supinators an improved ‘timing’ of the supination phase to enable a more natural gait &amp; better chance of a rigid \'toe off\'.</span>  </p>\n<p>&nbsp;</p>\n<h3><b>Over Prescription Of Orthotics...?</b></h3>\n<p><span style=\"font-weight: 400;\">Could orthotics be over prescribed?</span> Conceptually they simple alter force, the force must go somewhere, so could we enable our clients to produce force more optimally through movement training? Would it make more sense to train the body to absorb and produce force better itself? Could some people benefit from an external support for force production improvement?</p>\n<p>If you would like to join us to discuss some of these questions why not get in touch? rachel@biomechanicseducation.com</p>\n<hr />\n<h2> </h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Foot Biomechanics : The Over Pronation Fallacy','','inherit','closed','closed','','15602-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',15602,'https://biomechanicseducation.com/?p=38705',0,'revision','',0),(38706,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<p><span style=\"font-weight: 400;\">Passive income is NOT a quick fix to living on a beach while money pours in and Gary Vee is the genius in telling you HOW and WHY this is the case. In this video he explains simply WHY the false belief of building your ‘passive income’ will create a lazy life for you living on a beach.</span></p>\n<p>[embed]https://www.facebook.com/gary/videos/2336471133290315/[/embed]</p>\n<p><span style=\"font-weight: 400;\">Now don’t get me (or Gary) wrong, there are some that have managed to do exactly that and I know a couple….BUT…. a). At what cost? b). For how long? c). How many have done it both successfully AND long term?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">We are fed all sorts of emotive videos, articles and promotions of techniques or systems that mean you can SIMPLY create passive income out of nowhere and retire on a beach in a short space of time. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Gary will tell you his story of long long hours, dedicated hard work, for many many years, with commitment and passion that had the side effect of allowing him to now do what he LOVES most…..and here\'s the thing…..what he LOVES the most others would call WORK!!</span>  </p>\n<p>&nbsp;</p>\n<p><b>What Am I Getting At….?</b>  </p>\n<p><span style=\"font-weight: 400;\">Well it’s the same with the body…**SHOCKER ALERT**</span>  </p>\n<p><span style=\"font-weight: 400;\">...there are NO quick fixes to LONG TERM physical health. </span>  </p>\n<p><span style=\"font-weight: 400;\">There I said it! </span>  </p>\n<p><span style=\"font-weight: 400;\">Those adverts about pain reducing body straps to hold you in good posture, 12 weeks to a six pack, those medicated smelly muscle rubs, those promises of </span><i><span style=\"font-weight: 400;\">in just so many days, hours, minutes you will be painfree</span></i><span style=\"font-weight: 400;\">…...please take them ALL with a pinch of salt. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Now everything will, of course, help someone but for how long and how effectively and at what cost?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Your intrinsic biomechanics are so dynamic and adaptive to the environment that we need to constantly maintain homeostasis. Constant nourishment, hydration, sleep, mental stimulation, healthy movement….and of course lots of hugs, sex and laughter for good measure, right!??! </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Too many people are making a shed load of money off those suckers who believe there is a magic timescale or number to fixing your body, or making loads of money easily or moving more efficiently without much commitment.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Quick fixes might work in a very small percentage of cases for both my example and Gary’s example.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">But certainly not for most of us</span>   <i><span style=\"font-weight: 400;\">‘The 4hr Work Week’</span></i><span style=\"font-weight: 400;\"> by Timothy Ferris, gives a fantastic system of approach to working less while generating income and holds a fascinating way of looking at your job. However this is not what most of us are after in terms of </span><i><span style=\"font-weight: 400;\">purpose</span></i><span style=\"font-weight: 400;\"> or maybe I am wrongly assuming you are like me?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Surely the act of doing what you love, whether that be work or movement based, will result in you not working and being more consistent in your movement nourishment?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">YES Sometimes a quick massage or chucking in orthotics can ease symptoms…. and I have done both!</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">However LONG TERM happiness in ‘work’ and healthy pain free movement BOTH come from accepting that it\'s highly likely not to last if you take the quick fix approach.  </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">C’MON, We ALL know the answer reeeeaaaaallly, don’t we?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">If you never want to work again it’s really easy to find the solution... </span>  </p>\n<p><span style=\"font-weight: 400;\">Do something you love and get really good at it! I absolutely LOVE what I do and cannot wait each day to get going on things. Of course I would be lying if I said I didn’t want more freedom BUT the actual act of working TOWARDS a goal gives me </span><i><span style=\"font-weight: 400;\">purpose</span></i><span style=\"font-weight: 400;\"> and is what I get a huge amount of satisfaction from.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">It is the same for your clients movement goals….yes you can tell them they will look amazing in 12 weeks and of course they may well look great and feel improvements. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Yet it is our duty of care to educate our clients on long term healthy, pain free movement even if aesthetics is an initial goal or driver.  </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">So yes the answer is </span><i><span style=\"font-weight: 400;\">simple</span></i> <span style=\"font-weight: 400;\">But the solution is a long term commitment, since your body is with you for life, not just while you want to look great.</span>  </p>\n<p>&nbsp;</p>\n<p><b>So What?</b>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">So in terms of doing a job you LOVE read </span><i><span style=\"font-weight: 400;\">‘Finding Your Element’ </span></i><span style=\"font-weight: 400;\">by Sir Ken Robinson.</span>   <span style=\"font-weight: 400;\">In terms of long term healthy intrinsic biomechanics for your clients learn how to educate them to move more freely no matter what their original goal is, that really what they are paying you for.</span></p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<hr />\n<h2> </h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Stop Chasing Quick Fixes - Gary V & I Agree On This','','inherit','closed','closed','','15432-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',15432,'https://biomechanicseducation.com/?p=38706',0,'revision','',0),(38707,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<p>[vc_row][vc_column][vc_column_text]<i><span style=\"font-weight: 400;\">Have you read ‘<a href=\"https://www.amazon.co.uk/This-Going-Hurt-Secret-Diaries/dp/1509858636/ref=sr_1_1?keywords=this+is+going+to+hurt&amp;qid=1563206903&amp;s=gateway&amp;sr=8-1\" target=\"_blank\" rel=\"noopener noreferrer\">This Is Going To Hurt’</a></span></i><span style=\"font-weight: 400;\"> by Adam Kay yet? Well, that book has inspired this blog post…</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">I never thought I would ask the question… “Do You Care Too Much?”, because </span><i><span style=\"font-weight: 400;\">surely</span></i><span style=\"font-weight: 400;\"> that’s not possible, right?</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">It kind of bothers me somewhat and not because I am cold and heartless but because of the very reason I too DO CARE, A LOT.</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">So, why on earth would it matter if you care a lot?</span></p>\n<p>&nbsp;</p>\n<h2><b>Do You Care Too Much?</b></h2>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">I think when we really care and we really want to help someone, we can sometimes overstep our remit because we THINK we can help, and </span><i><span style=\"font-weight: 400;\">maybe</span></i><span style=\"font-weight: 400;\"> our client hasn’t had a great experience with each/most or some of the professionals they have seen previously. </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">The client desperately WANTS you to be able to help them, and you want to be able solve their problem.</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">So you do everything you can, and then sometimes, try new things, different things, things that might just fall outside of your scope.</span></p>\n<p>&nbsp;</p>\n<h2><b>Do You Try Things You Shouldn’t?</b></h2>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Well this might just mean we run the risk of being negligent or unknowingly be prescribing contraindicated exercises or giving inappropriate advice and therefore risking the physical health of the client.</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">The biggest problem is something I mentioned in last weeks blog about injuries…. WE </span><i><span style=\"font-weight: 400;\">DON’T KNOW WHAT WE DON’T KNOW</span></i><span style=\"font-weight: 400;\">!</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">We need the help of a multidisciplinary team around us to gain second, third and maybe fourth opinions. WHY? Because most of what is going on inside the clients body is based upon hypothesis. Which means NO ONE KNOWS, thus leaving us all at risk of making the wrong decision based upon our expertise. </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">By the way:</span></p>\n<p><span style=\"font-weight: 400;\">Knowledge + Experience = EXPERTISE</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">BUT</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Other professionals are likely to have different tests, knowledge, questions to ask based on their expertise and skill sets that can help US and all those involved make a much more </span><i><span style=\"font-weight: 400;\">informed</span></i><span style=\"font-weight: 400;\"> decision on how to support our client in their physical health and wellbeing. </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">It doesn’t matter how many years of practise and piles of certificates we collect, we still see the world different to our counterparts. So while we MIGHT be able to help it’s ALWAYS best to get a second opinion if you aren’t 100% sure or if there is a red or even yellow flag found during the initial consultation/assessment. </span></p>\n<p><span style=\"font-weight: 400;\">(A Red Flag example might be a clinical condition that could be contraindicated by movement - ie Osteoarthritis</span></p>\n<p><span style=\"font-weight: 400;\">A Yellow Flag example might be mental health condition that must be taken into account but may not in itself directly inhibit movement - ie depression)</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">It is vital we improve our reputation for good practise because we NEED to help the NHS and at present no one really trusts exercise professionals enough to willingly open up GP referral schemes. </span></p>\n<p>&nbsp;</p>\n<h2><b>Caring is The Whole Point To Many Jobs</b></h2>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">However there are always examples of caring  </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">To give you an example of JUST how much the NHS is struggling from an extremely qualified and experienced consultant doctor I strongly recommend you read this book….  </span></p>\n<p>&nbsp;</p>\n<h2><b>The NHS Is Struggling - From The Horse\'s Mouth</b></h2>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">What does it mean to be a doctor ?</span></p>\n<p>&nbsp;</p>\n<p><a href=\"https://www.amazon.co.uk/This-Going-Hurt-Secret-Diaries/dp/1509858636/ref=sr_1_1?keywords=this+is+going+to+hurt&amp;qid=1563206903&amp;s=gateway&amp;sr=8-1\" target=\"_blank\" rel=\"noopener noreferrer\"><i><span style=\"font-weight: 400;\">“This is Going To Hurt” Adam Kay</span></i></a></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Adam Kay wrote an award winning book about his diaries as a doctor and, while hilarious, it is also a very sad but enlightening read that describes the real struggles of going into an often thankless job </span><i><span style=\"font-weight: 400;\">because you care</span></i><span style=\"font-weight: 400;\">. </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">His cathartic practise of writing down all of his experiences in such a way as to bring you to tears of both laughter and utter sadness. </span></p>\n<p><span style=\"font-weight: 400;\">If you read one book this year, please read this one. </span></p>\n<p>&nbsp;</p>\n<p><b>Why?</b></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Why am I suggesting you read it? </span></p>\n<p><span style=\"font-weight: 400;\">1). It will make you laugh </span></p>\n<p><span style=\"font-weight: 400;\">2). It is a disturbingly honest account of our NHS</span></p>\n<p><span style=\"font-weight: 400;\">3). To understand that ….</span></p>\n<p>&nbsp;</p>\n<h2><b>How Can Exercise Professional’s Help?</b></h2>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">How we can help is by demonstrating duty of care, gaining good quality education, developing and working within a multidisciplinary team and working hard to assess/monitor/reassess and self reflect.</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">We really need to up our game individually so that as a group of professionals we are taken more seriously. Because I am convinced that MOST of the time, educated exercise can help MOST of the nations health issues. </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Who are the exercise experts????</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">US!</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">I want to challenge you to continue your education, never stop learning, push yourself to learn new things. That\'s how you will help your clients.</span>[/vc_column_text][/vc_column][vc_column][vc_column_text] </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>\n<p>[/vc_column_text][/vc_column][/vc_row]</p>','Is There Such A Thing As Caring Too Much? And Can It Adversely Affect Your Client?','','inherit','closed','closed','','15291-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',15291,'https://biomechanicseducation.com/?p=38707',0,'revision','',0),(38708,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<p><span style=\"font-weight: 400;\">Last week we discussed the whole ‘weak’ thing and how actually, just because something is appearing weak, doesn’t mean it actually needs strengthening, or at least maybe not right away. Think back to your clients with ‘weak glutes’... If you missed that post, <a href=\"https://www.biomechanicseducation.com/why-strengthening-might-not-be-the-solution-to-your-clients-weak-glutes-or-weak-anything/\" target=\"_blank\" rel=\"noopener noreferrer\">make sure you check it out, click here</a>.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Today I thought we would look at the world of injury. Injury can be a personal trainers nightmare. If a client is injured it means they often don’t train which, along with not doing the sessions with them, means they aren’t getting results and are less likely to come back and start training again once recovered.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">But… what if our thought process around injury was wrong?</span>  </p>\n<p><span style=\"font-weight: 400;\">What if simply stopping sessions and sending the client to see a physio when they get low grade back pain wasn’t the right approach?</span> <span style=\"font-weight: 400;\">You see, if you can keep clients training, or at least in a routine, then they are much more likely to get results. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">So let’s consider this question first...</span>  </p>\n<h2> </h2>\n<h2><b>What’s The Definition Of An Injury?</b></h2>\n<p><span style=\"font-weight: 400;\">So we are generally trained at L2/3 to send anyone with an injury away since it is not our remit, right? The problem is what our clients call an injury, might simply be a low grade ache or stiff back that needs some exercise. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Definition from the internet…</span>  </p>\n<h3><b>Injury:</b></h3>\n<p><i><span style=\"font-weight: 400;\">an instance of being injured, she suffered an injury to her back </span></i><b>wound</b><b>, </b><b>bruise</b><b>, </b><b>cut</b><b>, </b><b>gash</b><b>, </b><b>tear</b><b>, </b><b>rent</b><b>, </b><b>slash</b><b>, </b><b>gouge</b><b>, </b><b>scratch</b><b>, </b><b>graze, laceration</b><b>, </b><b>abrasion</b><b>, </b><b>contusion</b><b>, </b><b>lesion</b><b>, </b><b>sore, trauma</b>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">In my experience, the term ‘injury’ is being attached to literally ANYTHING that hurts or is uncomfortable or long term.</span>  </p>\n<p><span style=\"font-weight: 400;\">The term injury is being attached to ‘issues’ that are neither an ‘injury’ nor even anything ‘clinical’. There are a very high percentage of ‘issues’ that in my experience are simply poor biomechanics, for example. </span>  </p>\n<p>&nbsp;</p>\n<h3><b>What’s Does This Mean For Exercise Professionals &amp; Medical Professionals?</b></h3>\n<p><span style=\"font-weight: 400;\">Well I believe it means 2 things </span>  </p>\n<p><span style=\"font-weight: 400;\">1). Exercise professionals (in most cases) could help more by prescribing exercises instead of just referring away.</span>  </p>\n<p><span style=\"font-weight: 400;\">2). Medical professionals often ‘fail’ when using clinical assessments and treatments for something that is simply biomechanical (ie nothing shows up on an MRI, they are told nothing is wrong but they still hurt)</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">There is a huge problem with this because some professionals are being labelled as rubbish or not very good at their job when in fact they simply aren’t the right professional for the job. GP’s, physios and so on are getting a bad rap unnecessarily (Ok for some it may well be right).  </span> <span style=\"font-weight: 400;\"> </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">What I mean by this is if your ‘injury’ isn’t in fact an </span><i><span style=\"font-weight: 400;\">injury</span></i><span style=\"font-weight: 400;\"> then a professional that is skilled in addressing </span><i><span style=\"font-weight: 400;\">injuries</span></i><span style=\"font-weight: 400;\"> may well fail you in their methods.</span>  </p>\n<p>&nbsp;</p>\n<h2><b>When Niggles Become Injuries</b></h2>\n<p><span style=\"font-weight: 400;\">Low grade non-specific ‘niggles’ or ‘aches’ that are insidious and possibly recurring are often NOT an injury but they can become one if unaddressed. </span>  </p>\n<p><span style=\"font-weight: 400;\">They are more often than not caused by a lifestyle factor that can be addressed by a fitness professional with an understanding of assessments and prescribing safe exercises to improve movement. </span>  </p>\n<p><span style=\"font-weight: 400;\">This accompanied with some discussion about lifestyle can have the desired effect where clinical intervention has failed. This happens very commonly because the ‘issue’ is often not where they hurt! So treating the site of pain doesn’t actually solve this type of issue.</span>  </p>\n<p><span style=\"font-weight: 400;\">You have to know where the issue stems from to be able to get the client moving better even though the area of the root cause may well not hurt at all!</span>  </p>\n<h2> </h2>\n<h2><b>So Where Does This Leave Fitness Professionals?</b></h2>\n<p><span style=\"font-weight: 400;\">So fitness professionals wanting to confidently work within this demographic MUST gain the right skill set for insurance purposes. This would also give you a set of exercise techniques that are even safer, or less contraindicated than the standard strength moves we learn during our L2/3 education. This means learning about low-grade techniques that can, not only keep them moving but also, prepare them better for movement. </span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Biomechanic Coaches are experts in this field of assessment, preparation and quality referral. Not sure whether this is too brazen?</span> <span style=\"font-weight: 400;\">While a reciprocal arrangement with a physio might seem a challenge, we MUST be proactive in showing how much we can contribute to a multidisciplinary team by gaining specialist skills beyond L3 PT.</span> <span style=\"font-weight: 400;\">While clients might automatically seek a physio for something that hurts, if we have close relations with these other professionals the clients is more likely to trust your recommendation of referral. </span> <span style=\"font-weight: 400;\">We should also set the bar higher in terms of seeking to build relations with GP clinics for referral which is the whole point of this qualification. Now that CIMSPA are supporting the recognition of this role maybe seek their advice, help?</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Simply stopping training to let the ‘injury’ subside isn’t enough. We need to rebuild our clients\' movement ability and confidence in moving safely and with special techniques.</span> <span style=\"font-weight: 400;\">A perfect example of S.M.A.R.T goal setting here would be NOT smashing a client to the point of puking. It is vital that we consider the capacity for load with all our training programmes not matter what the level or ability.</span> <span style=\"font-weight: 400;\">So from that first induction, we should be using compulsory preparation techniques and assessment tools with our S.M.A.R.T goals for confidence, safety and success.</span>  </p>\n<p><span style=\"font-weight: 400;\">So remember this tick list:</span></p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Does the consultation bring up anything of concern?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Who is the best person to deal with that?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If you continue are you staying within your remit?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How do you know?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What tests can YOU do?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Could you gain more skills to help with identifying causes?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Can you forge relations with a multi diciplinary team?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Are you demonstrating a duty of care?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Is the clients\' description of ‘weak’, ‘injury’ or ‘pain’ ambiguous?</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What questions could you ask to find out?</span></li>\n</ul>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">What an amazing world it would be if we ALL had a great referral network that enabled us to support our clients and offer a duty of care that is most appropriate for their needs.</span> <span style=\"font-weight: 400;\">It is my belief that a very large portion of pain and ‘injury’ is actually remedied with the simplest intervention fit pros can provide - exercise!</span> <span style=\"font-weight: 400;\">Yet it takes a confident professional to refer their client away to someone else.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">It is also vital that we always remember that... </span>  </p>\n<p><i><span style=\"font-weight: 400;\">WE DON’T KNOW WHAT WE DON’T KNOW</span></i>  </p>\n<p><span style=\"font-weight: 400;\">So having a second, third, fourth opinion is not only vital, helpful and fascinating in terms of what we can learn from others views but also it increases the confidence of everyone involved. </span>    </p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Is It Actually An Injury? Who Should You Send Your Client To, To Get It Fixed?','','inherit','closed','closed','','15169-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',15169,'https://biomechanicseducation.com/?p=38708',0,'revision','',0),(38709,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<h2><b>What Does The Term \'Weak\' Mean Anyway?</b>  </h2>\n<p><span style=\"font-weight: 400;\">In our industry we are taught that if something is weak we should strengthen it, right?</span>   <span style=\"font-weight: 400;\">Yet here we discuss the true definitions of weak and the term injury and maybe we shouldn’t take these words too literally.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">First we should consider what is CAUSING the apparent ‘weakness’?</span> <span style=\"font-weight: 400;\">Because often weakness doesn’t want strength work immediately. It may require some preparation first, to enable its capacity for strength work and improve the effectiveness of the strength training. </span>  </p>\n<p><span style=\"font-weight: 400;\">This can make both subtle and huge differences in terms of how our clients perform and feel. </span>  </p>\n<h2> </h2>\n<h2><b>But How Do We Know What Is Causing The ‘Weakness’? </b>  </h2>\n<p><span style=\"font-weight: 400;\">Let me let you into a secret that altered my whole view of the complexities of the human body and improved my confidence and coaching model in application…..</span>   <span style=\"font-weight: 400;\">...no one </span><i><span style=\"font-weight: 400;\">knows!</span></i>  </p>\n<p><span style=\"font-weight: 400;\">HAHAHAHAHA Yes its true NO ONE </span><span style=\"font-weight: 400;\">KNOWS!!</span>  </p>\n<p><span style=\"font-weight: 400;\">At least not until they TRY something and see a change in performance of movement or strength. (<a href=\"https://www.biomechanicseducation.com/ever-heard-of-occams-razor/\" target=\"_blank\" rel=\"noopener noreferrer\">see Occam’s Razor Blog</a>) </span>  </p>\n<p><span style=\"font-weight: 400;\">Ok bear with me and let me explain…</span>  </p>\n<p><span style=\"font-weight: 400;\">We can use our FMS screens or biomechanics tests or sit and reach or 1 Rep Max BUT these only identify WHAT and we want to know WHY, right?</span>  </p>\n<p><span style=\"font-weight: 400;\">Remember back while learning your level 2 &amp; level 3 qualifications and we were taught generic stuff like:</span>  </p>\n<ul>\n<li><i><span style=\"font-weight: 400;\">If it\'s short, lengthen it</span></i></li>\n<li><i><span style=\"font-weight: 400;\">If it\'s weak strengthen it</span></i></li>\n<li><i><span style=\"font-weight: 400;\">Do squats for legs </span></i></li>\n<li><i><span style=\"font-weight: 400;\">Bench for chest </span></i></li>\n<li><i><span style=\"font-weight: 400;\">Hamstrings start at the tibia and finish at the ischial tuberosity </span></i>  </li>\n</ul>\n<p><span style=\"font-weight: 400;\">Do you also remember any of my past blogs that encouraged you to challenge everything?</span>  </p>\n<p><span style=\"font-weight: 400;\">Ok well in the education world (amongst other environments) it is recognised that if you are not ready to receive information, for whatever reason, its a tough deal comprehending and maybe, therefore, understanding complex subjects like </span><i><span style=\"font-weight: 400;\">how the body works.</span></i>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">At the beginning of every workshop/lecture/course or day of delivery, I will always ask my group </span>  </p>\n<p><span style=\"font-weight: 400;\">‘</span><i><span style=\"font-weight: 400;\">Why are you here? What is it you want to gain?</span></i><span style=\"font-weight: 400;\">”</span>  </p>\n<p><span style=\"font-weight: 400;\">The most common response is….</span>   <i><span style=\"font-weight: 400;\">‘I want a deeper understanding of how the body works</span></i><span style=\"font-weight: 400;\">’.</span>  </p>\n<p><span style=\"font-weight: 400;\">Then we re-learn L2/3 anatomy and vocabulary BUT we add in the concept of challenging what we </span><i><span style=\"font-weight: 400;\">heard</span></i><span style=\"font-weight: 400;\"> the first time.  </span>  </p>\n<p>&nbsp;</p>\n<h3><b>What Am I Getting At?</b>  </h3>\n<p><span style=\"font-weight: 400;\">Ok lets explore layered learning here and give you a better understanding of what I mean.</span> <span style=\"font-weight: 400;\">At L2/3 when we hear the term ‘weak’ we </span><i><span style=\"font-weight: 400;\">hear</span></i><span style=\"font-weight: 400;\"> that it needs strengthening. </span></p>\n<p><span style=\"font-weight: 400;\">However, when we get out there into the world of actually working with real bodies we realise this doesn\'t always work. We might also wonder if something else is going on… right? So let’s consider what the term ‘weak’ actually means in relation to the human body….</span>  </p>\n<p><span style=\"font-weight: 400;\">Definition from the internet…</span>  </p>\n<p>&nbsp;</p>\n<p><b>Weak:</b> <i><span style=\"font-weight: 400;\">lacking the power to perform physically demanding tasks; having little physical strength or energy</span></i> <span style=\"font-weight: 400;\">frail</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">feeble</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">puny</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">fragile</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">delicate</span><span style=\"font-weight: 400;\">, </span><span style=\"font-weight: 400;\">weakly</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Now let us consider some of the intrinsic things that can result in our client’s </span><i><span style=\"font-weight: 400;\">appearing </span></i><span style=\"font-weight: 400;\">‘weak’ in the realms of our specific remit..?</span></p>\n<ul>\n<li><span style=\"font-weight: 400;\">Tight Muscle</span></li>\n<li><span style=\"font-weight: 400;\">Inhibited Muscle</span></li>\n<li><span style=\"font-weight: 400;\">Subclinical Muscle Spasm</span></li>\n<li><span style=\"font-weight: 400;\">Stiff Joint</span></li>\n<li><span style=\"font-weight: 400;\">Lax Joint</span></li>\n<li><span style=\"font-weight: 400;\">Tethered Nerve</span></li>\n</ul>\n<p><span style=\"font-weight: 400;\">How many of the above require ‘strength’ training to address them? None of them!</span>  </p>\n<p><span style=\"font-weight: 400;\">If it’s tight, the muscle cannot contract in the way it’s supposed to. So </span><i><span style=\"font-weight: 400;\">appears</span></i><span style=\"font-weight: 400;\"> weak.</span>  </p>\n<p><span style=\"font-weight: 400;\">If there is a subclinical muscle spasm it has </span><i><span style=\"font-weight: 400;\">forgotten</span></i><span style=\"font-weight: 400;\"> how to fully contract and relax and so </span><i><span style=\"font-weight: 400;\">appears</span></i><span style=\"font-weight: 400;\"> weak.</span>  </p>\n<p><span style=\"font-weight: 400;\">If the muscle cannot contract properly, then attempting to strengthen it will have limited or zero effect.</span>  </p>\n<p><span style=\"font-weight: 400;\">Think of your client who has ‘weak glutes’, and yet no matter how much strengthening you do, the glutes don’t seem to improve.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Once you know what’s causing the glutes to be ‘weak’ and you address that, the glutes suddenly, as if by magic, start working. </span></p>\n<p><span style=\"font-weight: 400;\">Chances are if they haven’t been working for a while, they will need strengthening but at least now they can actually be strengthened.</span>  </p>\n<p><span style=\"font-weight: 400;\">But it’s important that you as the coach know and understand the WHY, behind your clients\' movement issues. Then, and only then, can you truly take their results to the next level.</span>  </p>\n<p><span style=\"font-weight: 400;\">Of course strength training is often ultimately the goal for a PT programme. However, there is often a preparation period to improve the chances of that strength work due to the ‘state’ many clients come to us in. </span>  </p>\n<p><span style=\"font-weight: 400;\">Once their body is prepared THEN strength work is likely to a). Be more effective b). Reduce risk in the future </span>  </p>\n<p><span style=\"font-weight: 400;\">Ok so shall we challenge other commonly used and possibly ambiguous terms that we are taught at L2/3 but should probably challenge in application. </span>   <span style=\"font-weight: 400;\">So the real question is HOW, how do we test for those things I mentioned?</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Well there are a whole series of screens that we teach on our 2 day pelvic biomechanics workshop. So I would obviously highly encourage you to jump on that, and if you would like to find out more, <a href=\"https://www.biomechanicseducation.com/pelvic-biomechanics-workshops/\" target=\"_blank\" rel=\"noopener noreferrer\">then just click here and get in touch.</a> In fact here are the upcoming dates:</span></p>\n<p>&nbsp;</p>\n<p><b>Scotland Aug 2nd/3rd/4th Pelvic &amp; Spine Biomechanics Workshop</b></p>\n<p><b>Nottingham Aug 10th/11th Pelvic Biomechanics Workshop</b></p>\n<p><b>London Aug 29th/30th Pelvic Biomechanics Workshop</b>    </p>\n<p>&nbsp;</p>\n<h3>Start With Project Squat</h3>\n<p><span style=\"font-weight: 400;\">If you aren’t ready for that straight away, <a href=\"https://biomechanicseducation.clickfunnels.com/project-squat\" target=\"_blank\" rel=\"noopener noreferrer\">then check out Project Squat, just click here. It’s a FREE series</a>, all based around the squat, teaching you some of the screens and exercises we teach on the diploma. </span>  </p>\n<p>&nbsp;</p>\n<h3>Next Week - Injury</h3>\n<p><span style=\"font-weight: 400;\">Next week I am going to talk to you about another common misunderstanding that is sooooooo important for us as exercise professionals… Injury.</span>   <span style=\"font-weight: 400;\">So make sure you come back next week to see that one.</span>  </p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Why Strengthening Might Not Be The Solution To Your Clients “Weak” Glutes... Or Weak Anything...','','inherit','closed','closed','','14845-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',14845,'https://biomechanicseducation.com/?p=38709',0,'revision','',0),(38710,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<p><span style=\"font-weight: 400;\">Over the last 12 months I have been exploring and researching online education vs face to face in relation to the Biomechanics Education programmes. Online education is something I am asked about on a daily basis both nationally and internationally. </span>  </p>\n<p><span style=\"font-weight: 400;\">It has challenged me to struggle between my ‘commercial head’ and my passion driven bias towards actually being face to face in a classroom. </span>   <span style=\"font-weight: 400;\">With the evolution of technology and the fact, we are all leading busier lifestyles crammed with ‘things to do’ we are seeing a huge increase in the demand for accessing information online. </span>  </p>\n<p><span style=\"font-weight: 400;\">There are clearly pros and cons to this platform of information delivery and it’s obviously got some benefits over accessing information face to face like the ‘old fashioned’ way at libraries or colleges for example. However, my question is this…….is it diluting quality? and specifically in the delivery of the </span><b>education of practical skills like Personal Training</b><span style=\"font-weight: 400;\">?  </span></p>\n<p><span style=\"font-weight: 400;\">Now obviously times are changing and us old folk need to keep up with modern culture…..but is it at a cost?</span></p>\n<p><span style=\"font-weight: 400;\">In this particular Juicemail I want to ask YOU, the readers, to think about this; When it comes to face to face education vs online while learning practical skills specifically, what do YOU feel are the pros and cons of each AND is online movement education diluting quality in your opinion?</span>  </p>\n<p>&nbsp;</p>\n<h3><b>My Thoughts On The Online vs Face To Face Discussion</b></h3>\n<p><span style=\"font-weight: 400;\">Here I will look at examples of both, where they work and where they don\'t work based on my research and experience</span> <span style=\"font-weight: 400;\">Now to be clear… when I talk about Face to Face (F2F), I mean physically in a room with a teacher. </span> <span style=\"font-weight: 400;\">When I talk about “online training” (OT) I am referring to courses that are accessed online.</span>  </p>\n<h3><b>Online Learning Pros</b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Usually cheaper</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Easier to access</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Convenient</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Set your own pace taking breaks anytime </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">More easily accessible for learners with special requirements </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Offers visual (video and images) and written information</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">No peer pressure </span></li>\n</ul>\n<h3><b>Online Learning Cons</b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Less personal </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">No immediate feedback </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Can\'t get immediate answers/help</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Lack having physical experience</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Lacks judgment of tutor to offer individualised training </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Lack of diversity / professional discussion </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Practical correction unavailable </span></li>\n</ul>\n<h3><b>Face To Face Learning Pros</b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Interactive and personal </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Sense of camaraderie</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Human connection </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Experiencial, more memorable meaning more chance of retaining information</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Change of scene can be good </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Different points of view </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Immediate feedback from the tutor</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Empathetic teaching </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Networking with peers </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Great for questions on physical techniques / practical application </span></li>\n</ul>\n<h3><b>Face To Face Learning Cons</b></h3>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Cost is usually higher</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Travel and accommodation costs </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Time away for paid work / family</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Possibility of feeling judged </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Possible peer pressure </span></li>\n</ul>\n<h3><b>So How Do We Decide?</b></h3>\n<p><span style=\"font-weight: 400;\">Well, I think we each have a personal responsibility to ensure our own education is of a quality that enables us to provide/deliver an appropriate and insurable duty of care. One issue I have here is </span>  </p>\n<p><i><span style=\"font-weight: 400;\">You Don’t Know What You Don’t Know!</span></i>  </p>\n<p><span style=\"font-weight: 400;\">So research is hugely important and my guidance when asked is generally </span><i><span style=\"font-weight: 400;\">“you will get what you pay for</span></i><span style=\"font-weight: 400;\">” however there are some charlatans out there so, once again...do your research. </span>  </p>\n<h3><b>What Does The Research Say?</b>  </h3>\n<p><span style=\"font-weight: 400;\">Well, there are a lot of studies (see references) on the F2F Vs OT debate but when you whittle it down there is a clear response that a blend of BOTH is shown to be most effective. </span>  </p>\n<p><span style=\"font-weight: 400;\">Now personally I do pay for online education for all of the ‘pro’ reasons listed above. So while I prefer F2F education experiences I also believe that once we have a good quality base of education we can then apply our learning disciplines to easier to access platforms. </span></p>\n<p><span style=\"font-weight: 400;\">In all honesty, I am very biased towards F2F education certainly for gaining practical ‘qualifications’ BUT I am also practicing what I preach in terms of challenging my bias.</span>   <span style=\"font-weight: 400;\">So let me now ask you a question….</span>  </p>\n<h3><b>What Would YOU Do?</b></h3>\n<p><span style=\"font-weight: 400;\">…….. if YOU needed to employ yourself a coach, trainer, therapist, PT, doctor how would you feel about being seen by a professional who had gained their practical qualification/s online with no F2F training?</span>  </p>\n<p><span style=\"font-weight: 400;\">Of the above professions, I believe ONLY the Personal Training skill set can be accessed purely online.</span>  </p>\n<p><span style=\"font-weight: 400;\">Why is this?</span>  </p>\n<p><span style=\"font-weight: 400;\">Would you confess to being qualified purely online? If not why not?</span>  </p>\n<p><span style=\"font-weight: 400;\">Is there a problem with it?</span>  </p>\n<p><span style=\"font-weight: 400;\">We can get coached online, so why not educated?</span>  </p>\n<p><span style=\"font-weight: 400;\">How do you feel about online coaching?</span>  </p>\n<h3><b>Education &amp; Learning / Bad &amp; Good</b></h3>\n<p><span style=\"font-weight: 400;\">I have been involved in education and learning for 46 yrs, both as a learner, a teacher and also a teacher of teachers. Having had some incredibly life-changing bad F2F experiences I completely understand how people can be put off. Also, we hear so much about kids having bad experiences at school it does make you wonder. </span>  </p>\n<p><span style=\"font-weight: 400;\">However, my experiences gave me a huge passion for creating the best learner experiences I can for others. My Master Trainer team are taken through an apprenticeship that requires a particular standard of delivery with an inclusive focus that, I believe and the feedback suggests, we have gained a reputation for.</span>  </p>\n<p><span style=\"font-weight: 400;\">The inclusive and diverse nature of fantastic F2F education experiences cannot be denied and is still shown to be </span><i><span style=\"font-weight: 400;\">one of</span></i><span style=\"font-weight: 400;\"> the most successful ways to gain knowledge and skills. Sadly the research doesn’t seem to be up to date enough to provide evidence in terms of the very latest technology trends and also doesn’t seem to take into account the subject matter. </span>  </p>\n<p><span style=\"font-weight: 400;\">The ‘experience’ of F2F for learning, at least initially in my opinion, is still vital for becoming ‘qualified’ in a very practical skill set like being an exercise professional in some form.</span>  </p>\n<h3><b>When Is Online Movement Education OK? My Opinion…</b></h3>\n<p><span style=\"font-weight: 400;\">Look I am a people person, I love forging relationships, being with people, looking in their eyes, feeling their emotions and basing the moment on that. Since online there is less chemistry. </span> <span style=\"font-weight: 400;\">BUT </span> <span style=\"font-weight: 400;\">I also accept that others are NOT like me.</span>  </p>\n<p><span style=\"font-weight: 400;\">In my opinion, when OT is an upskill or CPD as an additional resource or a taster it is a brilliant compliment to a F2F qualification. </span>  </p>\n<p><span style=\"font-weight: 400;\">Here at the Biomechanics Education Academy, we offer BOTH F2F and OT through our various platforms to get our message out there BUT I am super keen to hear your views, so</span><span style=\"font-weight: 400;\"> leave a comment below and tell me what your thoughts are on F2F Vs OT.</span>  </p>\n<p><span style=\"font-weight: 400;\">Also, I just want to add, that I LOVE the fact we are having this discussion because it means people are committed to learning and continued development. </span> <span style=\"font-weight: 400;\">Ultimately as professionals, we should always be taking our skills to the next level, and as humans, our minds LOVE progression. </span> <span style=\"font-weight: 400;\">So whether your learning online or face to face I am delighted to know that you are committed to learning!</span>  </p>\n<h2>References</h2>\n<p>Alsaaty, F., Carter, E., Abrahams, D. and Alshameri, F., 2016. Traditional Versus Online Learning in Institutions of Higher Education: Minority Business Students’ Perceptions. <i>Business and Management Research</i>, 5(2).</p>\n<p>Ananga, P. and Biney, I., 2021. COMPARING FACE-TO-FACE AND ONLINE TEACHING AND LEARNING IN HIGHER EDUCATION. <i>MIER Journal of Educational Studies Trends &amp; Practices</i>, pp.165-179.</p>\n<p>Elucidat. 2022. <i>Online learning vs face to face learning | Elucidat</i>. [online] Available at: &lt;https://www.elucidat.com/blog/online-learning-vs-face-to-face-learning/&gt; [Accessed 18 June 2019].</p>\n<p>Keis, O., Grab, C., Schneider, A. and Öchsner, W., 2017. Online or face-to-face instruction? A qualitative study on the electrocardiogram course at the University of Ulm to examine why students choose a particular format. <i>BMC Medical Education</i>, 17(1).</p>\n<p>Keramidas, C., 2012. Are Undergraduate Students Ready for Online Learning? A Comparison of Online and Face-to-Face Sections of a Course. <i>Rural Special Education Quarterly</i>, 31(4), pp.25-32.</p>\n<p>Khazan, O., 2022. <i>The Myth of ‘Learning Styles’</i>. [online] The Atlantic. Available at: &lt;https://www.theatlantic.com/science/archive/2018/04/the-myth-of-learning-styles/557687/&gt; [Accessed 18 June 2019].</p>\n<p>Szeto, E., 2014. A Comparison of Online/Face-to-face Students’ and Instructor\'s Experiences: Examining Blended Synchronous Learning Effects. <i>Procedia - Social and Behavioral Sciences</i>, 116, pp.4250-4254.</p>\n<p>Voxy. 2022. <i>Research review: Online versus face-to-face learning outcomes</i>. [online] Available at: &lt;https://voxy.com/blog/2017/12/research-review-online-versus-face-face-learning-outcomes/&gt; [Accessed 18 June 2019].</p>\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Online Learning Versus Face To Face Education In The Fitness Industry. Which Is Better?','','inherit','closed','closed','','14576-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',14576,'https://biomechanicseducation.com/?p=38710',0,'revision','',0),(38711,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<p><span style=\"font-weight: 400;\">Whether you work with the general public or athletes there are some great exercises to consider for all demographics. I will explain what the hip hitch is and when we might add it into their training. Then we will explore what it looks like as an exercise, how to know if its needed and then finally we will discuss where it might come in your clients\' programme.</span>  </p>\n<p>&nbsp;</p>\n<h2><b>What Is The Hip Hitch?</b></h2>\n<p><span style=\"font-weight: 400;\">Hip hitching requires at least a couple of joint actions (in its simplest version);</span></p>\n<ol>\n<li><span style=\"font-weight: 400;\">Hip abduction </span></li>\n<li><span style=\"font-weight: 400;\">Spine lateral flexion </span></li>\n</ol>\n<p><b>Try This….</b> <span style=\"font-weight: 400;\">Stand with your weight on the left leg, now lift your right hip upwards. The </span><i><span style=\"font-weight: 400;\">pelvis abducts away from the leg, while the spine bends to the right due to the illium lifting upwards.</span></i> </p>\n<p>&nbsp;</p>\n<p><b>Here is a quick video I put together to show you...</b>  </p>\n<h1> </h1>\n<p>[embed]https://youtu.be/UhuuS6h3R6Q[/embed]</p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Allow me to encourage you to think more about the way we use movements like hip abduction/lateral flexion every day to allow us to design more bespoke training plans….</span>  </p>\n<h2> </h2>\n<h2><b>Why Should We Practice The Hip Hitch?</b></h2>\n<p><span style=\"font-weight: 400;\">Hip hitching is a movement we perform every time we take a step. </span><span style=\"font-weight: 400;\">The hip hitch </span><i><span style=\"font-weight: 400;\">exercise </span></i><span style=\"font-weight: 400;\">can be a valuable addition to our clients exercise programming when we understand how it contributes to movement.</span>  </p>\n<h2> </h2>\n<h2><b>The Anatomy Of The Hip Hitch</b></h2>\n<p><span style=\"font-weight: 400;\">Hip hitching requires 2 joint actions, in simple terms</span> </p>\n<p><span style=\"font-weight: 400;\">The right hip lifts because the spinal lateral flexors lift the ilium </span>  </p>\n<p><span style=\"font-weight: 400;\">The standing hip therefore goes into hip abduction to assist through the frontal plane by abducting the pelvis from the femur.</span></p>\n<p><span style=\"font-weight: 400;\">The prime movers therefore are the r</span><span style=\"font-weight: 400;\">ight side spinal lateral flexors (QL/Obliques etc)</span> <span style=\"font-weight: 400;\">Left hip abductors (glute min/med/TFL etc)</span>  </p>\n<p><span style=\"font-weight: 400;\">So when we consider movement in these terms it can contribute towards our programme design</span></p>\n<p>&nbsp;</p>\n<h2><b>What Happens When We Hip Hitch?</b></h2>\n<p><span style=\"font-weight: 400;\">These ‘co-contractors’ work together each time your foot comes off the floor to take a step</span>   <span style=\"font-weight: 400;\">But, consider these joint actions are occurring synchronously while the hip/knee and ankle flexor/extensors produce sagittal plane actions during walking/running. </span>  </p>\n<p><span style=\"font-weight: 400;\">The frontal plane requires good control while walking/running and so a well function QL, glute minimus, glute medius &amp; TFL are all important stabilisers for</span><span style=\"font-weight: 400;\"> sagittal plane activities.</span>  </p>\n<p>&nbsp;</p>\n<h2><b>How Can We Identify A Problem In The Frontal Plane Stabilisers In Our Personal Training Clients?</b></h2>\n<p><span style=\"font-weight: 400;\">The single leg step up is a way to observe or benchmark what happens to your clients hip level.</span> <span style=\"font-weight: 400;\">As they take a step up onto a box or bench, ensure they do not push of the bottom foot so all their body weight goes through the weight bearing hip. Now watch, or maybe even film, what happens to the PSIS level. Does the free side drop down below the height of the other? Then compare to the other side ….Are they different? Or do they both drop?</span>  </p>\n<p><span style=\"font-weight: 400;\">You may also notice this during unilateral body weight exercises like lunges too.</span></p>\n<p><span style=\"font-weight: 400;\">This could be an indicator that they require improved hip abduction strength and control. This is where techniques like the hip hitch can really help and in fact this can make regular exercise a bit more interesting. </span></p>\n<p>&nbsp;</p>\n<h2><b>Performing The Hip Hitch </b></h2>\n<p><span style=\"font-weight: 400;\">Take one foot off the floor to lift and lower the hip through full range in the frontal plane. Trying to minimise any rotation or excessive movement anywhere else. This can be done standing on a box of some kind so that the ‘free’ leg can hang over the edge and potentially offer more range of motion.</span></p>\n<p>&nbsp;</p>\n<h2><b>More Advanced Hip Hitch Techniques </b></h2>\n<p><span style=\"font-weight: 400;\">To make a regular static lunge more interesting we could add a hip hitch by adding a hip hitch movement into it. Even though both feet are on the floor (or the back foot can be elevated), once your client is in the lunge position, encourage them to allow their back hip to drop (this will likely cause some rotation to occur for some due to our anatomy), then encourage them to deliberately hitch up that back hip. This technique allows more load to be added due to an extra base of support from both feet being on the floor. </span></p>\n<p><span style=\"font-weight: 400;\">You could even add a </span><i><span style=\"font-weight: 400;\">controlled hip hitch to a moving lunge</span></i><span style=\"font-weight: 400;\">!</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">So it\'s probably a good addition to your clients\' training programme early on in its most basic form to enable them to get more out of their compound leg training exercises. </span>  </p>\n<p><span style=\"font-weight: 400;\">However, once you feel they are ready you could play around with hip hitching within their programme to both monitor AND exercise those frontal plane stabilisers!   </span>  </p>\n<p>Would you like to learn more....?</p>\n<h2>rachel@biomechanicseducation.com</h2>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator --><!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>','Why We Should Consider Adding Hip Hitching To Our Clients Programmes','','inherit','closed','closed','','14386-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',14386,'https://biomechanicseducation.com/?p=38711',0,'revision','',0),(38712,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<p><span style=\"font-weight: 400;\">The other day I told you about how after not being able to improve my running time at all for months and months, I then started a new programme and knocked 10 minutes off my half marathon time. All by walking in my training instead of running.</span></p>\n<p><span style=\"font-weight: 400;\">Then we also looked at how this would affect your general client who wants to be healthier and perhaps lose a few pounds of fat.</span> <span style=\"font-weight: 400;\">If you missed that one, definitely go back there before reading this one, <a href=\"https://www.biomechanicseducation.com/how-i-knocked-10-minutes-off-my-half-marathon-time-in-just-4-weeks/\" target=\"_blank\" rel=\"noopener noreferrer\">just click here to go and check it out now.</a></span>  </p>\n<p><span style=\"font-weight: 400;\">Today I am going to show you the 6 steps you need to implement to improve your client’s metabolic profile and hopefully help them get even better results, whether its being able to improve their running, lose a few pounds, and/or have more energy.</span></p>\n<p><span style=\"font-weight: 400;\">So let’s talk about Dr Phili Maffetone….</span>  </p>\n<h2> </h2>\n<h2><b>The Maffetone Method (MAF Method)</b></h2>\n<p><span style=\"font-weight: 400;\"><a href=\"https://philmaffetone.com\" target=\"_blank\" rel=\"noopener noreferrer\">Dr Philip Maffetone</a> wrote a book called the Maffetone Method in 2000. It explains the science and how to train a for a more efficient and healthy metabolic profile using your aerobic and anaerobic systems in a certain way. Just like you would train your muscles in a certain way, 5 days a week working 1 body part per session for example, here we will look at Maffetone’s recommendations for training your cardiovascular system. </span>  </p>\n<h2> </h2>\n<h2><b>6 Steps To Improving Your Client’s Metabolic Profile </b></h2>\n<p><span style=\"font-weight: 400;\">Maffetone obviously goes into far more detail in his book however I will simplify this and share with you 6 steps to consider.</span></p>\n<p><span style=\"font-weight: 400;\">Step 1 - Build Your Client’s Aerobic Base - Why &amp; How? </span></p>\n<p><span style=\"font-weight: 400;\">Step 2 - Developing Your Client’s Anaerobic System - Why &amp; How? </span></p>\n<p><span style=\"font-weight: 400;\">Step 3 - The 180 Formula - What is it? How do I calculate my clients?</span></p>\n<p><span style=\"font-weight: 400;\">Step 4 - The MAF Test - What is it? How do I use it for my client?</span></p>\n<p><span style=\"font-weight: 400;\">Step 5 - Write A Plan - Always a good idea right? </span></p>\n<p><span style=\"font-weight: 400;\">Step 6 - Taking Benchmarks - Using a HR monitor and/ or RPE</span>  </p>\n<h2> </h2>\n<h2><b>Step 1 - Build Your Client’s Aerobic Base - Why &amp; How? </b></h2>\n<p><span style=\"font-weight: 400;\">A big missing part of most peoples metabolic profile is their </span><i><span style=\"font-weight: 400;\">aerobic base. </span></i><span style=\"font-weight: 400;\">It was the part I was missing back in 2006 when Simon tested my metabolic system AND the reason for him recommending that I walk instead of run for a few weeks. The idea behind this being to condition my fat zone, my lower HR and therefore my aerobic function.</span></p>\n<p><span style=\"font-weight: 400;\">After doing this I was eventually able to run and utilise this energy source because I had developed my bodies ability to tap into it. This also resulted in a low of body fat, being able to run faster without my HR going as high as it had previously. </span>  </p>\n<h3><b>Health Benefits Of Building Your Aerobic Base</b></h3>\n<p><span style=\"font-weight: 400;\">Maffetone explains the health benefits in physiological terms... </span>  </p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic muscle fibres are very resistant to injury. It is more commonly anaerobic muscle fibres that are damaged.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Joint support comes from aerobic fibres.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Better aerobic development = less risk of dehydration</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Fast burn takes place in aerobic fibres  </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic muscles provide endurance for all physical activities not just sport</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic speed - the ability to work harder/faster with the same or less energy can develop</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Aerobic development improves circulation &amp; cardiovascular (CV) function</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Increase blood circulation helps nearby anaerobic muscles fibres work better or additional power is required</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Antioxidant activity takes place in aerobic muscles - necessary for optimal health </span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">High levels of aerobic function almost assure you won’t ‘overtrain’ </span></li>\n</ul>\n<p><b><i>Overtraining</i></b><i><span style=\"font-weight: 400;\"> occurs when an athlete performs more training than his or her body can recover from. Eventually, this leads to a decline in performance. </span></i><span style=\"font-weight: 400;\">(</span><a href=\"https://www.stanfordchildrens.org/en/service/sports-medicine/conditions/overtraining-burnout\"><span style=\"font-weight: 400;\">https://www.stanfordchildrens.org/en/service/sports-medicine/conditions/overtraining-burnout</span></a><span style=\"font-weight: 400;\">  )</span>  </p>\n<h2> </h2>\n<h2><b>Step 2 - Developing Your Client’s Anaerobic System - How? </b></h2>\n<p><span style=\"font-weight: 400;\">Ok, so how do we develop our clients aerobic base?</span> <span style=\"font-weight: 400;\">Well, we need to take measurements of Maximum HR and body fat (BF) as benchmarks to understand if someone is utilising their aerobic energy system and burning, or using, their fat source.</span>  </p>\n<p><span style=\"font-weight: 400;\">This a key reason why we, as personal trainers, are taught how to take body fat measurements. Not for simply for aesthetics but BF is a good indicator of how healthy you are in terms of using your stored energy. See Step 6 for the simplest measurement for BF.</span>  </p>\n<p>&nbsp;</p>\n<h3><b>Building Your Client’s Base</b></h3>\n<p><span style=\"font-weight: 400;\">Exercising above a certain HR is anaerobic and below that HR is aerobic. What we want to learn is; </span>   <i><span style=\"font-weight: 400;\">“Are you training your body to burn more fat or sugar?”</span></i>  </p>\n<p><span style=\"font-weight: 400;\">Counting the calories you burn doesn\'t tell you which calories you are burning, ie fat or sugar. So what we need is a calculation that determines how, using our HR, for example, we can be more accurate with understanding which training zone we are in during our training. </span>  </p>\n<h2> </h2>\n<h2><b>Step 3 - The 180 Formula - What is it? How do I calculate my clients?</b></h2>\n<p><span style=\"font-weight: 400;\">Also during your personal training course, I am confident you will have come across the 220 less your age as a measurement for max HR, right? Well, Maffetone developed in the 1980’s, which he found to be a far more accurate formula. Maffetone states “</span><i><span style=\"font-weight: 400;\">The 180 Formula is based on each individual\'s general health and fitness level and was derived from clinical trials and from gas analyser results”. </span></i>  </p>\n<p><span style=\"font-weight: 400;\">The 180 Formula takes into account stresses and contributing factors to the elevating or lowering of the training HR. </span>   <i><span style=\"font-weight: 400;\">“The regular 220 model relies on estimated max HR and training to a % of that based on subjective evidence.” </span></i><span style=\"font-weight: 400;\">Maffetone states. He explains that only 1 in 3 actually fit into this equation. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">The 180 Formula works like this:</span></p>\n<ul>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Subtract your client’s age from 180</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Then modify the number by selecting the category that best matches their health and fitness profile:</span></li>\n</ul>\n<ol>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If they are recovering from a major illness (heart disease, an operation, hospital stay) or if they are on any medication, subtract an </span><span style=\"font-weight: 400;\">additional 10</span><span style=\"font-weight: 400;\">.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If they haven’t exercised before, have exercised irregularly, exercising with an injury, have regressed in competition, get more than 2 colds or cases or flu per year, have allergies or asthma, subtract an </span><span style=\"font-weight: 400;\">additional 5</span><span style=\"font-weight: 400;\">.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If they have exercised regularly (4-5 times weekly) for up to 2 years without any of the above.</span><span style=\"font-weight: 400;\"> Just use 180-age.</span></li>\n<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If they are a competitive athlete and have been training for more than 2 years without any of the above and made progress in competition without injury. </span><span style=\"font-weight: 400;\">Add 5.</span></li>\n</ol>\n<p><span style=\"font-weight: 400;\">If unsure between 2 categories use the lower score. Example, a 30yr old client who hasn’t exercised before then your maximum HR would be;</span>  </p>\n<p><span style=\"font-weight: 400;\">180 - 30 - 5 = 145</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Now you have their maximum HR we can start to calculate ranges. 10 beats below their max would be aerobic - ie max HR is 145 their aerobic training zone would be 135-145.</span>  </p>\n<p><span style=\"font-weight: 400;\">Please note when first using this method there is a good chance your client will find training in this zone feels very easy. This could indicate that they have been overtraining. Over time as their aerobic system improves, they will have to work harder to maintain the same HR. So don’t panic, the metabolic system is dynamic to their present training/lifestyle and can be developed and they will need to go faster to achieve the same rate of perceived exertion or RPE. It\'s down to use to advise and educate.</span>  </p>\n<p>&nbsp;</p>\n<h2><b>Step 4 - The MAF Test - What is it? How do I use it for my client?</b></h2>\n<p><span style=\"font-weight: 400;\">The Maximum Aerobic Function or MAF Test is to simply choose a running, cycle route, treadmill (pretty much a cardiovascular training that you can measure and time). Then for the example let’s say your clients chosen MAF test is a 2 mile run around the village, run that measured distance, to time and measure their HR during it. The idea is each time they perform the MAF test, say every 4 weeks (recommended), you always time it and measure their HR. The goal would be to gradually do the same route quicker at the same HR. </span> <span style=\"font-weight: 400;\">Another way to use the MAF test might be to cycle a 30-minute route at their max HR (after an easy cycling warm-up) then ideally the time to complete the route should decrease. </span>  </p>\n<p>&nbsp;</p>\n<h2><b>Step 5 - Write A Plan - Always a good idea right? </b></h2>\n<p><span style=\"font-weight: 400;\">Take your client\'s waist to hip ratio, monitor their resting HR, calculate their maximum HR, design a periodised plan of building their aerobic base first over several weeks, re-monitor/measure then adjust accordingly. Re-assess and re-evaluate, adjust and repeat.</span>  </p>\n<p>&nbsp;</p>\n<h2><b>Step 6 - Taking Benchmarks - Using a HR monitor and/ or RPE</b></h2>\n<p><span style=\"font-weight: 400;\">Now I am sure many of you will have fat callipers but here we will be using waist to hip ratio since it\'s very simple and yet offers more information about whether your client’s body fat content is heavily influenced by diet. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">Waist to hip ratio = waist measurement divided by hip measurement </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">A ratio above 0.9 in men or 0.8 in women may indicate a significant proportion of body fat comes from excess carbohydrates, especially refined.</span> <span style=\"font-weight: 400;\">Now if you want to tap into nutritional subjects please go to the experts at BTN Academy, where they run course and train nutrition coaches to advise you far more bespoke than I can in this blog. </span>   <span style=\"font-weight: 400;\">However, most importantly the waist-hip ratio is useful for evaluating whether your client’s aerobic system is developing properly. Again once every 4 weeks take this measurement to analyse your clients\' results.</span>  </p>\n<h3> </h3>\n<h3><b>Summary </b></h3>\n<p><span style=\"font-weight: 400;\">So to summarise, with the industry obsessed with HIIIT, intervals, sweat and endorphins, it is really our job to ensure our clients aren’t, in fact, STORING body fat due to ‘overtraining’. </span> <span style=\"font-weight: 400;\">Let’s educate and support them in learning how to test and measure results with a method, that might surprise them but, that we can convince them to try because they trust us.   </span></p>\n<p><span style=\"font-weight: 400;\">Try out these 6 steps and maybe even <a href=\"https://philmaffetone.com/maf-app/\" target=\"_blank\" rel=\"noopener noreferrer\">download the MAF app, which you can find through his website.</a></span></p>\n<p>&nbsp;</p>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\">\n<p>&nbsp;</p>\n<hr /><br /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2 style=\"text-align: center;\">Help Runners Reduce Their Risk Injury &amp; Improve Their Performance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\">Check out the Running Biomechanics Workshop Now - Click here</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13709} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13709\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Running-Biomechanics-Biomechanics-Education-1-1024x512.png\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n</figure>\n</div>','6 Steps To Improving Your Clients Metabolic Profile','','inherit','closed','closed','','14118-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',14118,'https://biomechanicseducation.com/?p=38712',0,'revision','',0),(38713,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<p><span style=\"font-weight: 400;\">20 years ago I was running a lot and trying to beat my previous times each race. However, I was just training harder not smarter to attempt to increase my speed. What I didn’t realise at the time was how walking could help me run faster!</span></p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">My colleague, Simon Cook (Biomechanics Coach and owner of Seasons Health Club, Beccles), had a Human Lab New Leaf gas analyser that could measure my ‘system’ and tell me how to become more efficient at using energy so I could run faster. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">So I was running a half marathon (13.1miles) personal best (PB) at around 1:42. However, I was almost ‘stuck’ at that pace for some time. No matter how hard I tried to run faster I just couldn’t do it. </span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">My first test with Simon gave a reading that produced a 12 week workout for me based upon my gas analysis reading. This programme wanted me to WALK FOR 4 WEEKS!!!</span>  </p>\n<p><span style=\"font-weight: 400;\">Whaaaaaat?</span></p>\n<p><span style=\"font-weight: 400;\">Oh yes! Walking!</span>  </p>\n<p>&nbsp;</p>\n<h3><b>After My 4 Weeks Of Walking, What Happened?</b></h3>\n<p> <span style=\"font-weight: 400;\">After </span><i><span style=\"font-weight: 400;\">walking for 4 weeks</span></i><span style=\"font-weight: 400;\"> I actually went and ran a 1:30 PB!!</span> <span style=\"font-weight: 400;\">That’s</span><i><span style=\"font-weight: 400;\"> MORE THAN 10 MINUTES FASTER</span></i><span style=\"font-weight: 400;\">….using walking in my training. So how did that happen? How </span><i><span style=\"font-weight: 400;\">can</span></i><span style=\"font-weight: 400;\"> it happen? </span></p>\n<p><span style=\"font-weight: 400;\">This blog will attempt to explain my understanding of how the body uses and converts energy in simple terms so that we can help our client’s to, not only run faster but, also burn more body fat. This process is call Metabolism.</span>  </p>\n<h3> </h3>\n<h3><b>What is Metabolism?</b></h3>\n<p><i><span style=\"font-weight: 400;\">Metabolism is a process. It\'s the way our cells change the food we eat into the energy we need to breathe, move, think and do . . . everything. It keeps us, as it keeps all living things, alive (Rush University Medical Centre).</span></i>  </p>\n<p><span style=\"font-weight: 400;\">Your client’s ‘metabolic profile’ is their body’s ability to perform this process. Why should we care as Personal Trainers? How will it help you train your client?</span>  </p>\n<p><span style=\"font-weight: 400;\">A better understanding of some of the measurements of your clients metabolic profile allow us to better monitor and improve their metabolic performance. The knock on effect of this is a far more effective exercise programme that can actually burn more fat and improve their overall health.</span>  </p>\n<h3> </h3>\n<h3><b>The 2 Energy Systems We Need To Train</b></h3>\n<p><span style=\"font-weight: 400;\">Ok so with some degree of disbelief I knew I had to trust my coach telling me to walk not run, since the science was telling me what I needed to do. So let’s explore the science…</span>  </p>\n<p><span style=\"font-weight: 400;\">To be simplistic we have 2 energy sources - fat and sugar. We all have the ability to use them both but we need to teach the body how because if we don’t use both, then we can store body fat as a result of either source not being used. </span>  </p>\n<p><span style=\"font-weight: 400;\">Put another way, utilising both energy systems creates a more efficient metabolism or fuel burner.</span>  </p>\n<p><span style=\"font-weight: 400;\">So What?</span></p>\n<p><span style=\"font-weight: 400;\">Well what this means is we can train specifically to burn MORE body fat, train more efficiently AND, more often than not, with LESS EFFORT.</span></p>\n<p><span style=\"font-weight: 400;\">The way this works, in my understanding, is that we burn more fat, or utilise our fat source, mostly when our heart rate (HR) is in the lower ‘zones’. This means while your client\'s heart rate is elevated, but not beating overly fast, they will burn more fat.</span></p>\n<p><span style=\"font-weight: 400;\">Then when they raise their HR past a certain point they tip into their sugar source or burn more of their energy from the sugar source. </span>  </p>\n<h3> </h3>\n<h3><b>What This Meant For My Running</b></h3>\n<p><span style=\"font-weight: 400;\">So to put this into a picture for you, which will hopefully help explain it…</span>  </p>\n<p><span style=\"font-weight: 400;\">By walking, I was training my body to move quicker at a lower heart rate. </span>  </p>\n<p><span style=\"font-weight: 400;\">And by the way, when I say walking, I don’t mean a stroll around the park. It was about keeping my heart rate within a certain zone. I was walking at a fast pace. Then overtime to keep the heart rate within that zone it turned into jogging. </span>  </p>\n<p><span style=\"font-weight: 400;\">So that when I began running again, my body was able to stay in that zone, burning fat, which is much more efficient, for a greater length of time. </span>  </p>\n<p><span style=\"font-weight: 400;\">Before, my body would switch to using sugar as the energy source, and there was always going to be a limit to the time I could run. </span></p>\n<p><span style=\"font-weight: 400;\">Now, I could almost save that switch till later in my run and allow me to hit that, in my opinion, amazing personal best. </span>  </p>\n<p><span style=\"font-weight: 400;\">By the way, I really want to stress here, (especially as I know lots of you who read this blog have awesome physiology knowledge) that I am simplifying this as much as I can. Hopefully giving you the kind of language you can use to explain it to your clients. </span>    </p>\n<h3> </h3>\n<h3><b><i>They Aren\'t Shifting Body Fat But Swear They Stopped Eating Cake...</i></b></h3>\n<p><span style=\"font-weight: 400;\">Now you might not be training a whole load of runners. If you are, great. But how does this apply to your general client who is trying to lose a bit of body fat?</span> </p>\n<p><span style=\"font-weight: 400;\">The problem is that in the past we have been conditioned into thinking that working harder burns more </span><i><span style=\"font-weight: 400;\">fat</span></i><span style=\"font-weight: 400;\">. Technically this is incorrect. Working harder actually burns more sugar, that can store as fat if not utilised.</span>   <span style=\"font-weight: 400;\">OR </span>   <span style=\"font-weight: 400;\">If they are training really intensely most of the time they may not be using their fat store efficiently.</span></p>\n<p><span style=\"font-weight: 400;\">So What?</span>  </p>\n<h3> </h3>\n<h3><b><i>Too Much Pain Not Enough Gain...</i></b></h3>\n<p><span style=\"font-weight: 400;\">Well, there is a current trend of high intensity interval training (HIIT) since we all lead these relatively sedentary lifestyles and maybe you read about the study done by </span><span style=\"font-weight: 400;\">Professor Izumi Tabata, the Dean of the College of Sport and Health Science at Ritsumeikan University</span><span style=\"font-weight: 400;\">? His study on the benefits of 4 minutes HIIT training was with Olympic speed skaters in 1996. </span></p>\n<p><span style=\"font-weight: 400;\">However, the context has been marred somewhat over the period since the results of his studies were published - </span><i><span style=\"font-weight: 400;\">SURPRISE SURPRISE! </span></i> <span style=\"font-weight: 400;\">Of course, the industry got wind of being able to get </span><i><span style=\"font-weight: 400;\">MORE RESULTS in LESS TIME!</span></i>  </p>\n<p><span style=\"font-weight: 400;\">OK slow right down, back up and let\'s remember context is key. Before moving on please note the commonly referred to Tabata style training of 20 seconds high intensity you might experience in your local gym or health club isn’t at the same intensity as the original study. This had athletes performing at </span><i><span style=\"font-weight: 400;\">170%VO2 max</span></i><span style=\"font-weight: 400;\"> for 20 seconds with a 10 second rest x 7-8 cycles. Ever tried that intensity? </span>  </p>\n<h2> </h2>\n<h2><b>How Do We Train To Improve The Metabolic Profile?</b></h2>\n<h3><b>Aerobic Vs Anaerobic - What’s The Difference?</b></h3>\n<p><span style=\"font-weight: 400;\">So I feel this is a good time to discuss aerobic Vs anaerobic training since this is going to offer more insight into how we train specifically to improve our metabolic profile.</span>   <span style=\"font-weight: 400;\">So far we have used terms like fat burn and sugar burn to describe the energy systems however to be more technical let’s explore aerobic training and anaerobic training. </span>  </p>\n<p><i><span style=\"font-weight: 400;\">Aerobic training is working the cardiovascular system utilising predominantly slow twitch muscle fibres. It used </span></i><i><span style=\"font-weight: 400;\">during exercise that is sustained so will stimulate and strengthen the heart and lungs, thereby improving the body\'s utilization of oxygen.</span></i>  </p>\n<p><i><span style=\"font-weight: 400;\">Anaerobic training </span></i><i><span style=\"font-weight: 400;\">i</span></i><i><span style=\"font-weight: 400;\">s a physical exercise intense enough to cause lactate to form. It utilises fast twitch muscle fibres and therefore is favoured by athletes in non-endurance sports to promote strength, speed and power also by body builders to build muscle mass. (Maffetone, 2000)</span></i>  </p>\n<p><span style=\"font-weight: 400;\">One of the most important lessons I would like to communicate here is HEALTH. While you may prefer endurance training/sport over power lifting or vica versa, for optimum HEALTH benefits we should probably ALL train BOTH systems. The awesome </span><i><span style=\"font-weight: 400;\">side effect</span></i><span style=\"font-weight: 400;\"> is reduced body fat but MORE IMPORTANTLY there are numerous health benefits to conditioning your metabolic profile and energy systems. </span>  </p>\n<p><span style=\"font-weight: 400;\">So ok you wanna run faster like I did? That’s a great goal to have but remember this style of training goes further than simply offering that as a result. In my world being healthy is far more important than winning the park run or a half marathon.</span>  </p>\n<p>&nbsp;</p>\n<p><span style=\"font-weight: 400;\">In the next post I am going to break down the 6 Steps to improving your clients metabolic profile, it will be out on week, so keep an eye out for it. </span>   <span style=\"font-weight: 400;\">You will be able to take this process and apply it to your clients training straight away.</span>  </p>\n<p>&nbsp;</p>\n<p>&nbsp;</p>\n<hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Help Runners Reduce Their Risk Injury &amp; Improve Their Performance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\">Check out the Running Biomechanics Workshop Now - Click here</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13709} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13709\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Running-Biomechanics-Biomechanics-Education-1-1024x512.png\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>','How I Knocked 10 Minutes Off My Half Marathon Time In Just 4 Weeks','','inherit','closed','closed','','14072-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',14072,'https://biomechanicseducation.com/?p=38713',0,'revision','',0),(38714,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<!-- wp:paragraph -->\n<p>We have been discussing great exercises and fundamental movements including walking but this week the topic is running, as promised.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What I thought we would do this week is get the opinion of world leader and mentor to many Biomechanics Coaches amongst others, the very special Mr Martin Haines….. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><em>Running Biomechanics</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><em>“Run The Way Nature Intended”</em></h3>\n<!-- /wp:heading -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>The Foot</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>The foot is an impressive piece of engineering, not only does it need to function independently as a unit, but it must work with, and accommodate to, all the structures above it. &nbsp;It can do this largely due to the synchronous link between the 3 “separate” systems; Nerve, Muscle, Joint (the Musculo-Skeletal System).</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>The sub talar joint in the foot has an almost infinite axis and very complex articulations, it is one of the keys to the body’s ability to absorb and transfer shock. When the foot hits the ground we experience ground reaction force (shock). This force is partially absorbed by pronation (flattening of the foot) shortly after heel strike and is our protection against these repetitive shocks or loads. &nbsp;Later in the gait cycle, supination (a reforming of the contour of the arch) helps propel us forwards by becoming a more rigid lever. </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Shock (Ground Reaction Forces/Impact Forces)</em></strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>We have developed the ability to pronate not because we want to be rid of shock but so we can control it. </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Shock is a major player in allowing the legs, pelvis and spine to move properly. This shock could otherwise be explained as a pulse that transmits through the body. &nbsp;The role of the musculo-skeletal system is to dampen that shock by the time it reaches the brain and skull.  </em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Importantly though, this shock helps our myofascial system (the soft tissue links between muscles as well as bone) to work naturally. &nbsp;Shock enables the muscles to stiffen at the right time to allow the fascia to take the brunt of the load using less energy, almost like a spring. </em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>The slower you move the more you have to engage muscles to create that forward momentum, the faster you move the more you run on your ‘springs’. &nbsp;This is facilitated in part by the reflex management of the effect of dampening the shock.  The intricate way the foot/ankle, knees, hips, pelvis and spine manage this is controlled subconsciously by the brain and our reflex systems. &nbsp;</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>While different people require different levels of cushioning for lots of reasons – body weight, impact forces, natural stiffness, running longer distances etc, if we try to control the shock too much, it may present problems.</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Running</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>There seems to be consensus that we need to heel strike when it comes to walking, the interesting debate starts when we bring speed into the equation as we run. With an increase in speed comes a change in mechanics and an increase in the forces that you might encounter. When we run, we put larger forces through the body and this is something for which the body accommodates. &nbsp;The pulse from the foot to the pelvis must be just enough to engage the leg, pelvic and spinal muscles but not too much that the knee and hip must dissipate the excess load.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>So, the faster you move, the more you naturally go up onto your toes; you would not imagine sprinting on your heels. &nbsp;The questions is; at what speed or in which circumstances should people move up onto their toes?</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>This should be a personal decision. &nbsp;Although ‘decision’ is probably too conscious, it should likely be under subconscious control. &nbsp;Our engine management chip (the brain) can understand at very high speeds what should be happening with our body and how it can react to different loads. &nbsp;If we consciously try to override it, we could compromise that process, potentially causing problems.  </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>When we move up onto our toes will likely be determined by several factors. &nbsp;Speed, our anatomy, any inflexibilities or weakness of our muscles, the terrain we run upon and our shoes. &nbsp;So, to learn a technique that dictates that you should run in a particular way could be a risk as no one system can yet accommodate all these factors and still be personalised to each runner. &nbsp;Let your engine management chip make these decisions for you naturally, based upon factors that we may not even have the ability to measure, never mind have the knowledge or ability to adapt to consciously. </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Foot Strike</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>There may be certain populations who would suit forefoot running and there may be occasions where rear foot striking is more likely to be beneficial. &nbsp;</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Runners suited to forefoot striking are those who naturally do it without being told to do so or consciously try and do it. Forefoot striking may also be suited to those with very tight or stiff calves and who have a very supinated/high arched foot. &nbsp;</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>However, the vast majority of runners naturally rearfoot strike. &nbsp;Rearfoot striking seems more suited to those who naturally rearfoot strike, without being told to do so. &nbsp;You cannot remove the impact force or shock, all you can do is move it elsewhere which is why rearfoot strikers get more knee load and forefoot strikers, more ankle load </em><em><sup>1,2. &nbsp;</sup></em><em>Impact forces are going to happen, but you may be able divert them from a vulnerable body part for a while.</em><em><sup> </sup></em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>The type of foot strike you adopt is a very personal thing, let your body do what’s natural for it, unless you have specific problems and an expert has assessed you and considered all the factors and you change the way you naturally run for good reason – and then allow for adaptation over time. </em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>It is not logical to look at a Kenyan runner, for example, and seem him or her forefoot strike and assume it’s the right thing for a British runner to do. We run based upon our anatomy and function, which will vary greatly depending on our genetics and the environment we grew up in and trained in. </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>We should be running based upon our current anatomy, terrain and limitations that 21</em><em><sup>st</sup></em><em> century living has imposed upon us. &nbsp;Letting our body make the decision as to how we run is more likely to accommodate to these factors than us consciously changing the way we run, based upon any particular theory or fad.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Understand How &amp; Why A Runner Moves First</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>If we do not understand why a runner moves in a particular way, we cannot know how to change their technique or indeed whether a technique change will be helpful. If we try to change a gait pattern that is created by a compensating for a restriction in the body, without identifying the restriction and managing it, we are at best being ineffective or at worst causing overload on the restricted or related area and potentially causing harm. </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>The variety of running styles that exist demonstrates the variety of ways the body can compensate for its biomechanical flaws and restrictions. &nbsp;Understand them, and whether to change them, and you’ll likely run more freely with less injuries.</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Martin Haines</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Biomechanics Coach and Chartered Physiotherapist</em></strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>It’s Rach again now...</em></strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Off the back of this, we really are super excited to be bringing our BRAND NEW 1 day sports specific Running Biomechanics Workshop into our portfolio. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Due to the demand for more sports specificity (like our really popular Golf Biomechanics Workshop) we are broadening our academy programmes to include this awesome addition….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading -->\n<h2><strong>Running Biomechanics Workshop</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Running is a key activity in many fitness programs, it is after all, one of the most natural of our activities as humans. &nbsp;However, there is increasingly debate about which running style is best. There are more running styles now than ever and it is hard to decide which is best for ourselves or our clients. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The principle of this Running Biomechanics Workshop is that no single running style suits everyone. &nbsp;The purpose of this workshop is to outline the evidence that exists for each running style and to provide simple methods that enable you to decide which is the most likely running technique to suit your client. &nbsp;It also covers which preparation exercises would likely help your client adapt to the method you have chosen.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This one day Running Biomechanics workshop teaches you;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Understanding the mechanics and sequencing of running gaits</li><li>Extrinsically look at different styles or idiosyncrasies and Intrinsically look at what restrictions and dysfunctions can cause them</li><li>Screenings will be discussed as well as key exercise interventions to help prepare your runners for their chosen style</li><li>The correct terminology to approach your local running clubs</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Want to come along? Here are the upcoming dates...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Friday July 5th Nottingham 10-5pm</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Wednesday Sept 25th Scotland 10-5pm<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\">Want to book on? Just click here</a><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Help Runners Reduce Their Risk Injury &amp; Improve Their Performance</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\">Check out the Running Biomechanics Workshop Now - Click here</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13709} -->\n<figure class=\"wp-block-image\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Running-Biomechanics-Biomechanics-Education-1-1024x512.png\" alt=\"\" class=\"wp-image-13709\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Running Biomechanics - “Run The Way Nature Intended”','','inherit','closed','closed','','13708-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',13708,'https://biomechanicseducation.com/?p=38714',0,'revision','',0),(38715,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<!-- wp:paragraph -->\n<p>Walking... I mean literally, if you had to pick just one move to nourish your movement profile, this is it, right!?!?! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you consider the evolutionary instinct to ‘make life easier’, combined with the evolution of technology you can understand WHY we walk less and less... <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Escalators instead of stairs or hills</li><li>Gyms instead of manual labour, farming etc</li><li>Cars, Buses, Trains, Planes etc</li><li>Phones instead of going to speak to someone</li><li>TV instead of going to the event, gathering</li><li>Shopping trolleys instead of carrying things</li><li>Jobs can commonly be desk bound or static </li><li>The internet removes the need to go search in the library</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Now I could carry on but I think you get the point? Yes the simple act of walking is something our bodies LOVE.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That pump action from soleus as we plantar flex, pushes blood back up through the body. The impact from the heel strike, up through the body is like a pulse on our bones to keep them strong and dense. The combination of movements occurring at the pelvis and spine are like lotion to the motion. The effects of working our cardiovascular system and increasing the heart rate, as we all know, improve our physical health and reduce risks in many ways. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Still yet I haven’t even started on the benefits of catching some Vitamin D from the sun, breathing fresh air and NOT staring at a screen to reduce fatigue, eye problems and brain fog.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>The Benefits Of Walking</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When it comes to our clients we often have to ‘sell’ the idea of walking more because they usually don’t appreciate the <em>cumulative effect</em> of walking 20 minutes per day for example or adding 2000 steps to their daily count.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When we suggest this they may exclaim “<em>what’s 20 mins going to do?</em>” as if this won’t make much or any difference to their goal...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have to convert the benefits from technical to something like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you walk for just 20 mins each day and increase your step count by 2000 steps per day<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>You will have more energy</li><li>Feel less fatigued</li><li>Feel more focussed </li><li>Reduce stress</li><li>Increase your confidence</li><li>Feel more positive &nbsp;</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p><strong>But It Is Such An Effort...</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>….or is it? I mean taking the time to think for a moment...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“should I walk up the stairs and NOT be looking at my phone or should I take the escalator and catch up on Instagram for 60 seconds?”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>...</em>even I have to be conscious NOT to take the escalators because my body responds to the thinking of ….”...<em>its easier...take the escalator</em>…”<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>THINK about how your body responds to certain situations. I mean take the \'<a rel=\"noreferrer noopener\" aria-label=\"Beyond 90 Challenge (opens in a new tab)\" href=\"https://www.biomechanicseducation.com/are-you-up-to-the-beyond-90-challenge/\" target=\"_blank\">Beyond 90 Challenge</a>\' for example, I was made to feel like I was weird for sitting on my haunches on the bus, at the doctors and various other places where chairs were available. I WAS doing what my body is designed for and yet people actually thought something MUST be wrong with me for choosing NOT to sit down.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now I consciously look for stairs instead of lifts and park at the far edge of the car park but it has to be a more conscious thing because instinct drives me towards a less active option. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Does doing 8,000 steps instead of 5,000 really matter? Why? People think doing a few extra steps isn’t going to make a difference… but they are wrong….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2,000 steps is a mile, walking…. If you do an extra 2,000 steps a day - that’s 365 miles a year… Doing an extra 365 miles a year would surely make a difference right? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So What?</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What’s my point? While SIMPLE it’s not EASY to maintain our ancestors volume of physical activity because of our culture and social conditioning. So we have to THINK of ways to teach our clients to move well and move more.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here is the point….get them walk more….it’s surely got to be the simplest place to start!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Looking at all of the health benefits BUT recognising the challenges of our lifestyles and evolutionary instincts, just the act of our clients walking more can have a huge impact. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s been shown over and over again in research that those who burn more NEAT calories (Non Exercise Activity Thermogenesis - Calories burned that aren’t while exercising) are physically healthier. <a rel=\"noreferrer noopener\" aria-label=\"I go into a bit more detail on that topic in this post, click here. (opens in a new tab)\" href=\"https://www.biomechanicseducation.com/rebel-against-the-chair-how-standing-can-dramatically-improve-our-health/\" target=\"_blank\">I go into a bit more detail on that topic in this post, click here.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>WALKING IS FREE TOO!</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>They don’t even need a gym nor fancy equipment, they can do it between other more static activities and now, thankfully, it is not uncommon to ask someone “<em>How Many Steps</em>?”<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In fact, when my FitBit battery needs charging, I now try to plan it in so I don’t lose too many of my step count!! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>YES IT IS A THING…. in our house anyway...who can get the most steps in a day!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We aim for 10k a day and when we start reaching 15-20k we really feel great! We actually brag about our step counts!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What&nbsp;If&nbsp;They&nbsp;Don\'t&nbsp;Have&nbsp;A&nbsp;FitBit?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your clients don’t have a FitBit do not despair, iPhones have an app called ‘health’ and there all kinds of step trackers on both iPhone and Android phones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ok so it may not be as accurate as the FitBit BUT they don’t need accuracy, they need a benchmark and accountability to monitor their progress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So your clients will KNOW if they move enough or not already, this is just a start. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Look back through the app and at their daily average steps. </li><li>Encourage them to take more steps and when </li><li>Help them to be more conscious about taking them EVERY DAY</li><li>Remind them of those NEAT calories </li><li>Compare today to yesterday </li><li>Set them goals to do more </li><li>Encourage them to get a family member to do the same, maybe with an in-house challenge like mine!</li><li>Educate all your clients and let’s start to change the culture</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>...Take A Moment </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So let’s recognise that even as an active fitness professional for 3 decades, I have to be <em>conscious</em> about keeping moving, I have the natural urge to sit down, take the lift, use the car just like your client...etc BUT less so, the more I <em>practise and condition</em> myself to choose movement over the easy option where possible and sensible. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Being educaTED and educaTING is a big deal for me now. The mission….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“Improve Movement Through Education’</em> <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is at the very core of what Biomechanics Education is about and I cannot do it alone. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WE NEED YOU!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So if you want to join us in this mission of educating your clients and the nation please email me <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a> to get a <strong><em>10 Day Walk More Plan</em></strong> that you can pass onto your clients.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Now For Those Who Already Walk A Lot</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>OK OK OK OK there is likely to be some of you reading this who are thinking…”<em>I am a pro walker!! I already walk a lot!!”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well for you guys maybe the next challenge is running? In fact, maybe the next challenge for your clients is to get them running too?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So Next Week I will be dedicating a whole blog post to <em>Running Biomechanics….with some GREAT NEWS!!!</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','Walking - THE Most Underestimated Medicine In Modern Culture?','','inherit','closed','closed','','13618-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',13618,'https://biomechanicseducation.com/?p=38715',0,'revision','',0),(38716,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<!-- wp:paragraph -->\n<p>The beauty of the ‘Turkish Get Up’ is that it gets you more bang for your buck due to the phases involved in performing a full TGU. It consists of multiple joint actions, planes, movements &amp; still has room for variability with the choice of equipment, should you decide to use any. The TGU is often associated with the kettlebell in particular due to its handle allowing the user to move around the bell easily.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What that means is for a whole body training plan you could quite simply perform this one ‘exercise’ over and over again PLUS it would include some CV due to the multiple muscles being used to move your body/the equipment up and down from the floor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So the cross over and transfer is great and for those days when you want as much as you can get from a simple no fuss workout, this is a fantastic option.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What Dan John Says….</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dan John, S&amp;C coach and author, describes one of the movement tests he invites each client to perform. \"<em>Get down on the floor..then stand back up again.\" </em>This simple drill demonstrates to a keen eye the limitations the client maybe starting out with and is a fundamental part of moving around our environment each day. Each component of moving from standing to lying on the floor and then getting back up shows the specific joint restrictions we may be dealing with prior to any loaded resistance exercise, let alone more dynamic ones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If we consider the TGU specifically, it is also an excellent model for simply practising getting up &amp; down from the floor! So it could be used as a test or benchmark for monitoring improvement or regression.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do You Need To Practise Getting Up &amp; Down From The Floor?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well I am quite sure most of you have watched someone older than you, maybe a grandparents or maybe even your parents, as their movement capacity declines. Imagine if they fell down and needed to get back up again but literally couldn\'t take their own body weight on their arms or a single leg to get up!?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The TGU fundamentals can be ingrained into our movement profile and keep them, and us from the horror of being stuck on the floor after a fall…. it’s never too late to have this in mind.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Kettlebell Training</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The standards I was taught on a kettlebell workshop gave me some technical training experience of this movement. The programme I learned was designed by <strong><a href=\"https://www.strongfirst.com/about/pavel-tsatsouline/\">Pavel Tsatsouline</a></strong> who is well known for his kettlebell &amp; bodyweight training. I recommend you check out his books…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.amazon.co.uk/Naked-Warrior-Pavel-Tsatsouline/dp/0938045555/ref=sr_1_1?keywords=Pavel+Tsatsouline&amp;qid=1556470624&amp;s=gateway&amp;sr=8-1\">The Naked Warrior</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.amazon.co.uk/Kettlebell-Simple-Sinister-Pavel-Tsatsouline-ebook/dp/B00GF2HP9G/ref=sr_1_2?keywords=Pavel+Tsatsouline&amp;qid=1556470651&amp;s=gateway&amp;sr=8-2\">Kettlebell Simple &amp; Sinister</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.amazon.co.uk/Enter-Kettlebell-Strength-Secret-Supermen/dp/1942812132/ref=sr_1_3?keywords=Pavel+Tsatsouline&amp;qid=1556470651&amp;s=gateway&amp;sr=8-3 \" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"Enter The Kettlebell  (opens in a new tab)\">Enter The Kettlebell </a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, I must also make a very special mention 2 of my favourite mentors in the kettlebell, <strong>Troy Martin (TM Fitness) &amp; Stephen Aish (The mindset Coaching Academy) ,</strong> since they have also contributed a lot to my understanding of the use and variations of the kettlebell as an awesome training tool. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2> </h2>\n<h1><strong>How To Do A Turkish Get Up</strong></h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The beauty of the TGU is that each part of the movement can be taught one move at a time, without a kettlebell to begin with, particularly if you are coaching a client or trying it for the first time.  Once you get going with the combination remember to hold each position for a moment prior to moving on so that you can feel the position and absorb the benefits of that position and that load, at each point.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} --><!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Begin by lying on your side with knees bent, hips to 90 degrees, left hand palm up under the loop/handle of the bell.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13430} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13430\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-1.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Roll onto your back at the same time as extending your left arm straight up above you with the KB resting on the back of your hand, left knee will be bent up foot flat on the floor &amp; your right leg out straight resting on the floor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13431} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13431\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-2-Biomechanics-Education.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Now press the left foot down while engaging through the trunk to press the KB upwards, keeping the eyes on it, and roll onto the right elbow with the left arm outstretched up above you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13432} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13432\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-3-Biomechanics-Education.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Next press &amp; lift up onto the right hand with the right arm now out straight so you are in a sitting position with the KB over your head, both arms straight.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13434} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13434\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-4-Biomechanics-Coach.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>From here take your body weight onto the left foot and right hand &amp; move your right leg from out in front underneath your body, to a kneeling position behind you. Keeping your eyes on the KB for balance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13435} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13435\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Instruction-Biomechanics-Coach.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Move your body into an upright kneeling lunge position, keeping the KB directly over head &amp; lifting your right hand off the floor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13436} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13436\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Guide-Biomechanics-Education.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":13437} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13437\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Biomechanics-Education-Kneeling-lunge-position.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Important: This next move can often be missed!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>From here move your left foot to a position in front of you BEFORE going to stand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then move your bodyweight forwards to stand up on the front/left leg with the KB still maintaining its position directly over your head.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13438} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13438\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-Stand.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Reverse It...</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To repeat the movement in reverse it looks like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Step the right leg back onto your right knee, keeping your eyes on the KB for balance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Important: Step the front/left foot out to the left side a little way.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now laterally flex your body to your right, maintaining a stiff trunk, place your right hand on the floor &amp; push the hips back into flexion, keeping your eyes on the KB overhead.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Take the entire body weight onto the left foot and right hand while transitioning the right leg underneath you &amp; forwards to sit your bottom on the floor again with your right leg out straight in front of you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now brace through the trunk as you lower your right arm to rest your elbow back onto the floor, KB still positioned over head.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Control the body as you lower it back down to a lying position with left arm above you and left knee bent.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finish Position</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then finally roll onto the left side flexed hip &amp; knee position.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This movement is quite complex to teach in a text description so I will show you the movement &lt;&lt;HERE  video &gt;&gt;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Switch or Halo </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To transition to the other side when using a KB literally drag the KB from the finishing position above, along the floor, in a halo over your head to the same position but on your right side.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Repeat all the above on your right side!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Repeat over and over for a great little cardio strength workout</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then add more kilos….and repeat, repeat, repeat!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For personal trainers this awesome \'one\' move workout also doubles up as a movement nourisher from the perspective of older populations being more confident about getting up from the floor should they take a fall.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Teaching the moves one by one can be a method they can use to not only strengthen the correct muscles should they fall but also to prevent falling in the first place.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So whatever your demographic of client the Turkish Get Up is a great tool!!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>rachel@biomechanicseducation.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>\n<!-- /wp:image -->','Why The Turkish Get Up Is Valuable To A Personal Trainer’s Programming','','inherit','closed','closed','','13299-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',13299,'https://biomechanicseducation.com/?p=38716',0,'revision','',0),(38717,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<!-- wp:paragraph -->\n<p>This little dude can have a huge impact upon our clients\' shoulder function too as being known as the \'Piriformis of the Shoulder\' implies!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>SO WHAT?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have previously discussed the key biomechanical pillar in our pelvic biomechanics, the Pirioformis muscle, in relation to squatting and also its influence on the quality of our pelvic function. Here we would like to discuss how the Infraspinatus muscle of the shoulder is very similar but in terms of our shoulder biomechanics. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Infraspinatus is a key biomechanical pillar in our upper body therefore if it isn\'t functioning to its full capacity there is a good chance your body will compensate for it. This alters the kinetic chain, which over time can be detrimental to the quality of our movement, this can then gradually make certain movements either uncomfortable or at least somewhat difficult. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So let\'s take a look at the anatomy of Infraspinatus and its role in movement.....</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Infraspinatus </h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":13146,\"width\":512,\"height\":354} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/image-1024x707.png\" alt=\"\" class=\"wp-image-13146\" width=\"512\" height=\"354\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>The Infraspinatus is a thick triangular muscle attaches onto the Infraspinous fossa (back of the scapular) and the greater tubercle of the humerus (it passes round the back of the upper arm onto the upper protuberance).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is primarily an external rotator of the humerus but also a shoulder stabiliser and will assist adduction from an abducted position. It is also commonly known as one of the major rotator cuff muscles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can see the similarities here and when we understand the Infraspinatus anatomy it allows us to understand how it can similarly influence shoulder movement similarly to the way the Piriformis influences the pelvis with rotation and abduction.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Piriformis </h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":13147,\"width\":470,\"height\":512} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/image-1-940x1024.png\" alt=\"\" class=\"wp-image-13147\" width=\"470\" height=\"512\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong> &nbsp;What Does This Mean?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well this could impact on our clients ability to overhead press, stabilise the shoulder complex during a push or pull movement and it could also create discomfort and achy or \'tight\' feelings in the upper body which as many of us know make us tired, miserable and even stressed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Is Our Lifestyle Causing Infraspinatus Issues?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This muscle can often feels ‘stressed’ due to our lifestyles and the round shouldered posture of our clients that we have discussed previously.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you have ever had your Infraspinatus ‘rubbed’, (or god forbid frictioned!) by a massage therapist you will probably recall the discomfort vividly. However it quite likely needs a good ol ‘rub’ or some attention at least. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>How Can We Improve The Infraspinatus Function?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well yes we could get our noblers, lacrosse/tennis balls or @Pulseball\'s out and start writhing about putting pressure on it but first let’s desensitise it eh?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The good old anti spasm 20/20 technique we have been using can be applied to any muscle so let’s consider how we can use it to help our poor infraspinatus.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13148,\"width\":512,\"height\":768} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/image-2-683x1024.png\" alt=\"\" class=\"wp-image-13148\" width=\"512\" height=\"768\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>So place your opposite hand over your wrist/forearm and the press that arm out into your hand to resist external rotation 20% for 20 seconds x 4 reps.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>NOW grab your nobler / lacrosse ball or @pulseball. Lean the back onto a wall with your scapular pressing onto the equipment and either press hold until it tenderness dissipates or gently rub slowly. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>NOTE: First few goes this can feel quite uncomfortable but please please move slowly and only for around 1 minute per shoulder. It should NOT be ‘painful’ but a hedonistic discomfort that you can relax and breathe into.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once you have done this, we can move onto the Antagonist work and Activation<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Antagonist Exercise For The Infraspinatus</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13149,\"width\":768,\"height\":512} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/image-3-1024x683.png\" alt=\"\" class=\"wp-image-13149\" width=\"768\" height=\"512\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now grab a resistance band or cable for the antagonist work</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember we did this same process when working on pec minor - <a href=\"https://www.biomechanicseducation.com/why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"if you missed that, check it out here. (opens in a new tab)\">if you missed that, check it out here.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Reps and sets as per the strength programme for your client (8 x 2 - 15 x 3)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Infraspinatus - External Rotation Exercise</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13150,\"width\":768,\"height\":512} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/image-4-1024x683.png\" alt=\"\" class=\"wp-image-13150\" width=\"768\" height=\"512\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now move to do reps and sets on the agonist which would be external rotation. (8 x 2 - 15 x 3)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Why Do These Anti Spasm Techniques &amp; Exercises?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well all of this should contribute to improving your shoulder function and strength ratios for your client’s ability to perform any scapular movements or to increase their shoulder stability. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As mentioned at the beginning of the blog, for healthy upper body function or throwing, pulling, pushing, hitting a bat/ball, swimming and being generally stable we require great Infraspinatus function. Once the \'function\' is improved USE IT! This then conditions the patterns required for nutritious movement!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>MOVE WELL THEN MOVE MORE!</em></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Have a go yourself and then let me know what do you think?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','\'The Piriformis Of The Shoulder\' - Infraspinatus  - Guide To Programming For Personal Trainers','','inherit','closed','closed','','13140-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',13140,'https://biomechanicseducation.com/?p=38717',0,'revision','',0),(38718,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<!-- wp:paragraph -->\n<p>Well of course we are living in this technical age where 92% of us in 2018 were bent over a mobile phone.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On average people check their phones every 12 minutes...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>40% of adults check their phone within 5 minutes of waking up (perhaps you are reading this blog in bed)...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>Adults spend 2 hours 49 minutes each day on their phone (under the age of 24 and it rises to 4 hours a day)</p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Over the last decade a new repeated stress injury has arisen… <strong>Text Neck</strong>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Just think of your posture as you look at your phone, head forward, shoulders rounded, it doesn’t feel good does it?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Why am I sharing these stats with you?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well, <a href=\"https://www.biomechanicseducation.com/why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"last week’s blog discussing (opens in a new tab)\">last week’s blog discussing</a> the common ‘rounded shoulder’ issue caused a bit of a stir I felt we should elaborate further. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Along with phone usage, then take into account your daily routine, chances are you spend periods of your day sitting, right?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So we should start with trying to reduce long periods of time being static (both sitting &amp; standing). That’s the first thing to do. I mean for your clients who sit in offices all day, or if they work from home, just ask them to track their daily steps and see the results. Sometimes there is barely any movement at all.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Getting moving is a start, but may not fix any issues that have arisen due to years of sitting etc. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I would also get an assessment of your/your clients shoulders so we can correct &amp; improve function &amp; strength in this area. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Last week we talked about Pec Minor, its influence on shoulder function &amp; overall movement quality, if you missed that one you should start there, <a href=\"https://www.biomechanicseducation.com/why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders/\">just click here</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Improve Shoulder Stability&nbsp;-&nbsp;How&nbsp;&amp; Why</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>What we should also consider is role of the shoulders in terms of ‘stability’ too since often when we carry things we want to be stable at the shoulder. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also shoulder stability is crucial in people playing sports, both from an injury risk reduction and performance enhancement point of view. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The shoulder complex is complex in terms of actions since it is classified as a ball and socket joint. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This means they contribute to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Shoulder extension / flexion, internal / external rotation, adduction /abduction &amp; circumduction. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However something else we should consider in our clients training plan is the stabilisation component.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Improving Shoulder Stabilisation - Exercises To Add To Your Programming</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well of course once you have improved the function of pec minor and strengthened the scapular retractors, we can also add the static component to certain ‘movements’.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Examples of this would be during arm movements to keep the scapular completely or relatively still. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Overhead Military Pressing</strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This kind of movement will require controlled dynamic stability since shoulder abduction will mean the scapular will rotate somewhat. The question is how much control do you have in your scapular during an overhead press? Why not try it with a minimised amount of scapular movement.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Deadlifting </strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is also dependant upon ranges and styles of deadlift in relation to the amount the arm moves away from you. Hip hinging will generally require less movement around the scapular than overhead pressing. However good scapular control is required to stop the bar pulling the shoulder forwards in the descent. Great eccentric loading!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Push Ups &amp; Pull Ups</strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These 2 moves are commonly done poorly due to a lack of scapular control - me included! I have ‘flappy’ scaps that I am working no constantly due to daily demands and being slightly VERY mobile. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A great modification to both of these movements is to practise some sets without actually moving the arms, only using the scapular portion of the movement.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Prone Scapular Press Ups </strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Get into a push up position but don’t use elbow flexion to lower your body ONLY use scapular retraction so you body lowers between your shoulders - keep arms locked straight. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then during the full push up try to keep your scapular under control!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Hanging Scapular Depressions </strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Similarly when hanging from your chin up/ pull up bar allow your shoulders to fully relax so your body hangs between your shoulders. Then ONLY depress your scapular, without bending the arms. So you challenge pure scapular motion. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The during the full pull up keep your scapular under control!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Rowing</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Again a movement commonly performed poorly quite likely due to the problems we discussed last week. Sort pec minor out then while rowing ensure scapular retraction is occuring, possibly by breaking the movement down as above. Pure scapular retraction practice first, then add the rowing action on with scapular control.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Overhead Squats </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Finally if you don’t have stable scapular this movement will certainly challenge it statically. However some of the above movements might be a better place to start OR overhead squat with a light bar focussing on the shoulder stability.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By developing the ability to stabilise the shoulder you are reducing the risk of injury and if your client is a sportsperson probably helping them improve their performance too. Good shoulder stabilisation often results in people seeing improvements elsewhere in their body and in other exercises too. You see once the shoulder can stabilise itself it can then apply more force in certain movements. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Go and give some of these ago, be consistent with them over a few weeks, don’t be the person who does them once and says it doesn’t work.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hopefully this series of blogs are contributing to some ideas for your clients training programme however if you REALLY want to KNOW how to bespoke their exercise plan with a periodised preparation plan then please get in touch!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','Are Shoulder Problems Are The New Low Back Pain?','','inherit','closed','closed','','13007-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',13007,'https://biomechanicseducation.com/?p=38718',0,'revision','',0),(38719,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<!-- wp:paragraph -->\n<p>Let\'s talk about the pull up and rowing today. This style of exercise is a big part of programmes these days due to our degraded movement quality coming from ‘over protraction’ of the shoulders or the ‘round-shouldered’ posture that we commonly see. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However there is a problem with simply training the back muscles to improve this issue.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What needs to be considered is the root causes of our ‘issue’ first. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Is&nbsp;More&nbsp;Pulling&nbsp;Actually The&nbsp;Solution?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In my professional opinion very often the true problem for many is Pec Minor. Why? Well this is a muscle I have written about a few times because of the magic that can occur when its provided with the capacity it’s expected to have.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>The Anatomy Of The Pecs...</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Pec Major &amp; Minor are often grouped together as ‘chest’ muscles and yet they provide quite different movements as you can see when looking at these images here…. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pec Major is a shoulder adductor, flexor and internal rotator due to ist attachments from the clavicle, sternum, &amp; greater trochanter of the humerus. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":12884,\"width\":576,\"height\":768} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Anterior-View-of-Pectoralis-Major-Biomechanics-Education-Antony-For-Personal-Trainers-768x1024.jpeg\" alt=\"\" class=\"wp-image-12884\" width=\"576\" height=\"768\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Pec Minor however attaches to the corocoid process, the most anterior part of the scapular….see here…..</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":12886,\"width\":576,\"height\":768} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Anterior-View-of-the-Scapula-768x1024.jpeg\" alt=\"\" class=\"wp-image-12886\" width=\"576\" height=\"768\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>….then across to the 3rd/4th/5th ribs that mean it will protract (also known as scapular abduction), depress and rotate the scapula. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":12885,\"width\":576,\"height\":768} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Anatomy-of-Pec-Minor-Biomechanics-Education-768x1024.jpeg\" alt=\"\" class=\"wp-image-12885\" width=\"576\" height=\"768\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Try This …</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To appreciate the influences of having a dysfunctional pec minor try this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stand Up</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Protract both shoulders as if yours are dysfunctional</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Keeping your shoulders ‘rounded’ try to lift your arms over head &amp; then back down….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Try to extend your thoracic spine with your shoulders protracted….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s really quite detrimental to your movement quality, right?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now imagine walking around, trying to function normally with that problem day to day. Over time it is likely to cause further issues that will make your body grumble. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What&nbsp;It&nbsp;Looks&nbsp;Like&nbsp;It&nbsp;Needs&nbsp;Versus&nbsp;What&nbsp;It&nbsp;Actually&nbsp;Needs</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well this ‘poor posture’ LOOKS like it requires a ‘stronger back’ doesn’t it…? Hence most programmes will contain back training for this very reason.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WAIT<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What’s the problem or the root cause here….?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It isn’t simply a ‘weak’ back is it?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Remember The Law!</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yeah that law of reciprocal inhibition? This one….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Reciprocal inhibition</em></strong><em> describes the process of muscles on one side of a joint relaxing to accommodate contraction on the other side of that joint. ... Joints are controlled by two opposing sets of muscles, extensors and flexors, which must work in synchrony for smooth movement.</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well if the pec minor is in a constant contraction state it is likely to require addressing first, don’t you agree? This then gives your retractors/back muscles a fighting chance in fully contributing to their role in movement. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Consider that, ok your client may well be rowing, pulling etc but how much are those scapula retractors doing? Can we encourage them to do more and give us more quality to our back moves?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Let\'s&nbsp;Start&nbsp;By&nbsp;Releasing&nbsp;The&nbsp;Pec&nbsp;Minor</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well in advance of the back exercises below we might want to consider improving the function of or pec minor muscle first, do you agree?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So place your hand onto the front of the opposite shoulder like the image below. Then press your shoulder into your hand using 20% of your maximum effort and hold it for 20 second, repeat x 4 and then the same on the opposite side.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":12887,\"width\":512,\"height\":768} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Pec-Minor-Anti-Spasm-Biomechanics-Education-Biomechanics-Coach-683x1024.jpg\" alt=\"\" class=\"wp-image-12887\" width=\"512\" height=\"768\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Now&nbsp;Onto&nbsp;Back&nbsp;Training</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Does It Look Like?</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><br></strong>Now prior to the big moves we should probably include some isolation work to take advantage of that law of reciprocal inhibition. What this means is if we break down the rowing movement for example we can really get those retractors involved while at the same time encouraging those protractors to ‘let go’.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well while rowing we probably want to make sure this is happening too…reps and sets as per your regular programming.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>PURE retraction is a very isolated single joint movement, which is great to develop functional capacity once we add other joint actions….not as easy as it looks! Try it and let me know. <br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":12888} -->\n<figure class=\"wp-block-image\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Pulling-Exercises-Retraction-Biomechanics-Coaching-1024x683.jpg\" alt=\"\" class=\"wp-image-12888\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>THEN we can start adding more components to get back to what we know more commonly as <em>functional (whatever that is!?) </em>back exercises with a periodised plan like:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Resistance Band Retractions with a Row/Fly (shoulder extension added onto the end)</li><li>Cables - same as above but more kilos can be added to increase intensity. </li><li>Barbell Bent Over Row/Fly - tipping into a fixed hip hinge means we should consider the lower back will be isometrically loaded for the duration of this exercise.</li><li>Dumbbell Single Arm Row/Fly - as above but with an asymmetrical load on the trunk stabilisers.</li><li>TRX Inverted Rowing - This is great for altering the angle of lean v’s gravity. Be mindful of the instability it also creates though.</li><li>Single arm would be even more challenging.</li><li></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>So whether its in your own training or when working with clients, try the pec release before you start a day session which includes pulling or rowing. And see if it makes a difference - not jsut in their posture, but perhaps being able to actually contract the right muscles groups, they might \'feel\' it in a different place and their movement might improve. Worth giving it a go right?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The information I pass on is aimed to help you in 2 ways.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1). To offer ideas and maybe something different to add to your programming<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2). Also to encourage autonomous exploration of the wonderous ‘WHYS’ when it come to working out the human body, how it works and how, as coaches and trainers, we can help. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>CHALLENGE EVERYTHING!!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','Why More \"Pulling\" Might NOT Be The Answer To Those Rounded Shoulders','','inherit','closed','closed','','12883-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',12883,'https://biomechanicseducation.com/?p=38719',0,'revision','',0),(38720,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<!-- wp:paragraph -->\n<p>These bad boys, like our abd/adductors that we spoke about last week require 1:1 ratio with their antagonist buddies, the hip extensors.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yet our hip flexors can very underused AND under trained, in fact often totally ignored in our exercise programming.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Unless of course you’re a Crossfitter! These guys use them a lot in their ‘toes to bar’ for example. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However individuals, possibly like yourself, who do not do CrossFit OR those who might find toes to bar an advanced move (like me), well we’re going to explore other ways to condition them ;)<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s quite possible that the underuse of hip flexor training could be due to perceived risk. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is linked to a common complaint &amp; our hip flexor attachments. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Hip Flexors &amp; Low Back Pain</strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Low back pain (LBP) is still on the rise &amp; frustratingly common, to the point of a seemingly complete acceptance from many that LBP is NORMAL!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Many simply accept it as part of their day to day chat, brushing any major concern aside, or at least any fervent attempts to address it, because ….”<em>well hey we ALL have LBP, right…</em>?!”<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WRONG <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s common but NOT <em>normal</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So you may be wondering how the hip flexors in the front of the hip can create a concern about LBP… unless of course you understand their attachments &amp; force production.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"width\":540,\"height\":513} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://mail.google.com/mail/u/1?ui=2&amp;ik=f04949745e&amp;attid=0.1.2&amp;permmsgid=msg-f:1630253690920560958&amp;th=169fd3182d16e93e&amp;view=fimg&amp;sz=s0-l75-ft&amp;attbid=ANGjdJ97flSaSvndxAMEYjrUyBCpjHrw8zzo_25m0CZprfYl7q4073wnaQ38AaTMxr3wsQD_HoFIRT-u2pFf8O-2rC7UpfkMpgoJFluemRSrca2cJ2GPY4NlVhXubAQ&amp;disp=emb\" alt=\"\" width=\"540\" height=\"513\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>The Anatomy Of The Hip Flexors </strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Specifically the large iliopsoas muscle attaches to the transverse processes of your lumbar vertebrae 1-4 - see image above.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Thus resulting in a shear force upon the lumbar spine when they contract.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This may well be contributing to our LBP but please note; it’s only one example NOT a definitive cause for yours.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now IF the hip extensors contribute to a ‘co-contraction’ balancing out this shear force<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the force is low <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are in good intrinsic Biomechanical shape</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This won’t be the issue <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you are experiencing LBP there maybe some fear avoidance of hip flexor loading/strengthening </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A risk when hip flexor loading (case dependant) <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>How &amp; When?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So how do we know how &amp; when to exercise our hip flexors? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well there is a simple method of periodisation to </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Prepare your pelvis </li><li>Condition (strengthen) them safely </li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We can also test them ! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>The Modified Thomas Test</strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"width\":644,\"height\":471} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://mail.google.com/mail/u/1?ui=2&amp;ik=f04949745e&amp;attid=0.1.1&amp;permmsgid=msg-f:1630253690920560958&amp;th=169fd3182d16e93e&amp;view=fimg&amp;sz=s0-l75-ft&amp;attbid=ANGjdJ_SSQDvpXLy8D98j1g_QXU30WGBym-lMeoVpNOWpWVqqZVrMxK_hyMCulhiHKqN2UwylPjqzBzat-6MoAwsHaE_jMntYDfVRNQft8Hd_3AI2EYQLQiulcxx75w&amp;disp=emb\" alt=\"\" width=\"644\" height=\"471\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>*Image taken from Brentbrookbrush.com<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So this pelvic function test will identify the integrity of the hip flexors &amp; is much more objectively measured by someone else, like a Biomechanics Coach, click here to go and find your local Biomechanics Coach.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But a quick &amp; simple observation you could try for yourself would be to lie on a bench or plyo box. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Make sure your bum crease is at the very edge of the bench/box.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With one knee hugged to our chest, allow your other leg to lower down. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Note: if you have long legs &amp; your foot touches the floor this may skew the test </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now try to position your top leg/thigh so that it’s as close to your chest as it can go WITHOUT tipping your pelvis back posteriorly<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once here you can then either try &amp; gauge if your knee is lower than your hip <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Balance your phone at the side to film how low it drops <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>The Thomas Test: The Result </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If your lateral condyle (nobbly bit on outside of your knee at the front of the crease) &nbsp;is below your greater trochanter (big bony bit at the centre of your lateral hip) you passed </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If not then we need to prepare your hip flexor BEFORE loading it <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If there is an asymmetry then we need to prepare the higher knee side as this one has come up as positive for a limitation <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Go on off you go test em….&amp; let me know <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How did you do????</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What Should You Do Now?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So if you came up as high / positive then we should probably apply an anti spasm to your hip flexors first </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Hip Flexor Anti Spasm </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now this muscle ‘state’ is not clinical &amp; can be present without discomfort as it’s simply an adaption, possibly to sitting a lot <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you have any amount of discomfort please seek face to face professional help <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>More often than not stretching is prescribed for ‘tight’ hip flexors. However stretching may be too aggressive for this type of muscle state <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So we are going to apply an anti spasm known as ‘<em>post contraction sensory discharge’</em> Ribot-Ciscar et al (1991) <a href=\"https://www.biomechanicseducation.com/1333-2/\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"(See a quick explanation here) (opens in a new tab)\">(See a quick explanation here)</a><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lie on your side, position your top foot in front of your bottom thigh. Lie your head down on your bottom arm - relax.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Slightly bend your bottom foot back but keep that hip open without stretching it.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://mail.google.com/mail/u/1?ui=2&amp;ik=f04949745e&amp;attid=0.1.3&amp;permmsgid=msg-f:1630253690920560958&amp;th=169fd3182d16e93e&amp;view=fimg&amp;sz=s0-l75-ft&amp;attbid=ANGjdJ-G4fhMLazEoPcBjJGNNxoXLHs4mzb1KNCtYHhRsYZ9qP8ZiED9JrkuGW_6LdzVm9hevMfo6YdVuclIWMIPCBA658rcHk3Rz5ZEERjnZ_k8VNIXI1a0jb6DZwk&amp;disp=emb\" alt=\"\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br>Now push the bottom thigh into the other foot with 20% of your maximum effort. Hold for 20 seconds &amp; repeat 4 times. If necessary do the other side (I suggest you always do both sides as good practise to avoid creating another asymmetry)<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Re-test in the bench/box<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How did you do??</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Periodisation Programme </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Once you feel happy that your hip flexor function ROM is improved or ok we should consider firstly working the antagonist. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WHY??</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Reciprocal Inhibition </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>One of the first things we are taught as L2 gym instructors is that all muscles work in pairs. The agonist (the prime mover) will influence the antagonist (the opposite muscle) through what’s known as the law of reciprocal inhibition. This law stops us hurting ourselves as it means both muscles cannot pull or contract isotonically at the same time.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>IF your hip flexors we’re in a sub-clinical adaptive state of constant contraction, or spasm, then this would influence the function hip extensor group or the antagonist.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT WAIT……!? Weak Glutes???<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>SOOOOOOOOOO this may challenge some preconception about the term ‘weak’ being used for this glute problem epidemic<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Anyhoooooooo….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Antagonist Conditioning </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At this point doing strength work on your hip extensors will do 2 things </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>1). Strengthen your hip extensors </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2). Aid the improved function in the hip flexors via the law of reciprocal inhibition </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Hip Extensor Exercises </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Glute Bridges</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Squats</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Deadlifts</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Good Mornings</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To name a few….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Back To The Front….</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>….of your pelvis, for hip flexor conditioning or strength work…...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Progressive programming might be prudent here in terms of bringing the strength back gradually since the muscles may well have been ‘coping’ up to now, so we might want to start at low level stuff<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Supine toe taps - neuromuscularly easy since the base of support is large. Also if we start with one foot on the floor &amp; with knee bent lift &amp; lower the other one this gives a short lever but we can progress to an extended leg for a longer lever &amp; harder follow on.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The rules are simple here but possibly require more focus than we realise to truly achieve.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your Spine should not lift, nor lower, during any part of the movements. To test yourself rest your finger tips under your lumbar spine &amp; be sure that the pressure does not change on your hands while lifting, lowering &amp; moving your legs <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Harder than it sounds eh?!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Ok let’s explore progressions...</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dead bugs come in a variety of interpretations but the above exercises could be defined as a regressed dead bug. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>My understanding of dead bugs is that while supine, both arms &amp; legs move around to challenge ‘the trunk’.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Part of that trunk will be your hip flexors due to their involvement here. Yet these are still neuromuscularly relatively simple albeit can be progressed &amp; regressed with lever length alterations. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Prone Hip Flexor Loading</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Progression maybe done prone, for less base of support / neuromuscular feedback (ie 3-4 points of contact). For example mountain climbers where you bring the knee toward the hip (hip flexion) then switch legs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Increase Of Instability </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Use of a stability ball would double the muscular effort, should your place your toes on top of one &amp; draw your knees to your chest, rolling the ball with you. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Known as a jack knife this is pretty advanced for many IF done properly with the spine completely stiff &amp; still.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Hanging Variations</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then there are the hanging variations like knee raises performed either in a Roman chair which is easier (back is fixed to pad) than hanging from a free bar (only contact is the hand grip)<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So please understand there are of course thousands of variations to hip flexor training &amp; this is simply a few suggestions. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The main focus being on preparation &amp; periodisation of hip flexors.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>They are the only ones you will ever have so let’s look after them! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As always any questions hit me up at <a href=\"mailto:Rachel@biomechanicseducation.com\">Rachel@biomechanicseducation.com</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->','Are Your Hip Flexors Contributing To Your Back Pain? And What Can You Do About It If They Are?','','inherit','closed','closed','','12781-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',12781,'https://biomechanicseducation.com/?p=38720',0,'revision','',0),(38721,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<!-- wp:heading {\"level\":4} -->\n<h4><strong>Frontal plane hip training can be so underrated!</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In terms of function and stability trainers sometimes miss this epic contribution to powerful pelvic biomechanics and reducing the risk of groin strains and hernias.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our frontal plane strength ratio requirement is 1:1 as suggested George Davies, who wrote about joint strength ratios and who found that hip adduction &amp; abduction should be able to generate around 100% of our body weight.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What do frontal plane exercise look like?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well there are hip abductor/adductor machines in gyms that are perfect for this type of exercise.  However they are often categorised as not being <em>functional</em> due to the isolated way they condition hip strength. So it might be prudent to consider a couple of things before we avoid these machines altogether.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol>\n<li>We cannot be fully functional if we are not functioning well first - function requires each component / area involved to be able to contribute its role in movement. If any area does not do this then we could be at risk of compensation and isolation training can be a way to optimise function in a specific area to reduce risk.</li>\n<li>Considering what is functional today, ie sitting at a desk, then the definition of ‘function’ is actually more accurate to this machine than maybe we give it credit for!</li>\n</ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style a). Seated flexed hip abductor/adductor machine exercise </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A great simple starter exercise for those wanting to focus on strengthening these 2 sides of the pelvis!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Using this to build up foundation of frontal plane strength, with the aim being to feel similar in strength during both actions by using the same reps, sets and weights. This can indicate a balance of strength which is desirable in most individuals.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":12504} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-12504\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Hip-abduction-adduction.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style b). Seated hip abductor/adductor machine exercise leaning forwards or leaning back</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We could take advantage of altering the angle at the hip by leaning forwards to decrease the hip angle or leaning back to increase the hip angle might make for a nice adaption on this machine.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style c). Seated hip abductor /adductor machine kneeling on the seat facing backwards.</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Let me invite you to consider alternative ways to use this machine for the benefit of great hip conditioning. Kneeling on the seat while facing backwards and placing the feet on the pads will offer a fantastic alternative to be able to condition internal or external rotation of the pelvis. Being able to condition hip rotation while it is in full extension is quite unique and also prudent for all round pelvic strength.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style d). Standing hip abductor with a band</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Standing so that the hip is extended to then strengthen hip abduction/adduction is now advancing the client towards a more neuro-muscularly challenging method for improving both pelvic and knee stability.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Start with the client holding onto something fixed, like a smith machine or squat rack, while a band is positioned around, and above, the knees. Then by moving the leg away form the midline they will be loading their abductors dynamically on the moving hip and statically on the standing leg hip. </p>\n<p>Progressing to the band below the knees and then to the ankles will gradually increase the lever length making the same exercise harder. The progressing to doing the same exercise with less support, maybe only holding on with one hand instead of 2. They could continue until they are able to perform them without holding on at all if possible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Similarly this could be done with a cable which would allow for a higher increase in resistance due to the weight options.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style e). Side lying body weight lift (adductors/internal rotators) or Copenhagen variations.</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lying on the side, on the floor, knees bent and close to a bench/padded box. While resting the upper body on the elbow to begin with. Next place the top knee on top of the bench. By pressing this top knee into the bench this will lift the body away from the floor with the adductors as the prime movers. The bottom leg can be on the floor or off the floor for added resistance and to load the adductors of the bottom leg. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Adding rotation during the lift can be a nice alternative.  Turning the body under the top hip will influence both the hip and the shoulders stability and control.</p>\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are multiple ways to condition frontal hip strength with many other ways to work these muscle groups but these suggestions are just to get you and you started. Would you like to find out how you can join our Biomechanics Coach course and learn hundreds of ways to strengthen your clients bodies!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:embed -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} --><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results? Email me now!</h2>\n<h2>rachel@biomechanicseducation.com</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>\n<!-- /wp:image -->','Frontal Plane Hip Conditioning - A Guide For Personal Trainers','','inherit','closed','closed','','12493-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',12493,'https://biomechanicseducation.com/?p=38721',0,'revision','',0),(38722,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<!-- wp:paragraph -->\n<p>The deadlift is one of the first moves I learned during my basic L2 training almost 3 decades ago. The reason given for this was that it is one of the basic moves we should understand how to perform to safely move large weights from the floor. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Dead</em>-Lift = lifting a ‘dead’ weight<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now for some this movement is their nemesis. This is possibly because of the force predominantly going into the lower back during the lift and the commonality of low back ‘issues’ today.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However it is a combination of joint actions and forces that we are likely to experience during our daily lives in some form or another. &nbsp;So it may be worth exploring as a component of our clients training plan. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What needs to be considered is how well our clients are prepared for performing this movement, combined with the risk factors of ranges and loads. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember in its simplest form it is a fundamental movement that is basically hip extension. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This might even be chosen instead of squats to load the hip extensors as it might feel better for some to have the load hanging in front instead of being placed on top of the body. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yet the ability for our client’s to increase the weight might be more closely linked to their grip strength rather than simply the strength of their hip extensors</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style a). Stiff Leg Deadlift</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":12347} -->\n<figure class=\"wp-block-image\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/03/Stiff-leg-Deadlift-Biomechanics-Coach-1024x743.png\" alt=\"\" class=\"wp-image-12347\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This version basically requires the lifter to lift a deadweight (usually a barbell) from the floor with straight or ‘stiff’ legs. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s great for a large ROM at the hip &amp; good for hamstring &amp; sciatic nerve mobility <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There is a huge load going into the spinal extensors so any fragility there, this is a risky move with its shear force. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also lifters with a tight nervous system probably won’t like this movement due to increased tension under load across the entire posterior system.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style b). Single Leg Deadlift </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":12346} -->\n<figure class=\"wp-block-image\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/03/Single-Leg-Deadlift-Biomechanics-Coach-1024x718.png\" alt=\"\" class=\"wp-image-12346\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The same as above but with only one foot on the floor. &nbsp;Usually performed with the other leg lifting straight out behind the body as a counter balance. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s great for an added stability challenge and can really focus on the ‘anti rotation’ aspect at the frontal plane loading of the hip of the standing leg. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The load is likely to decrease considerably due to only utilising the strength of one set of hip extensors. Also due to the decrease in neuromuscular feedback (less base of support) balance maybe an issue for some clients to control.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style c). Romanian Deadlift</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is still a hip extension movement however Romanian deadlifting is with some degree of knee flexion. Also sometimes performed straight from, &amp; back onto, a rack.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This variation helps if your nerve is tight by taking some tension off at the knee due to the flexion. It can also reduce some of the spinal extensor loading depending upon the centre of gravity shift. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This variation uses less ROM on knee flexors / hamstrings. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style d). Sumo Deadlift</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The bar is lifted from the floor with the feet positioned as wide as comfortable for the lifter. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Powerlifters often use this version due to the closer proximity to the floor while lifting heaviest 1 RM possible thus meaning a reduced ROM is required to shift the heaviest weight possible. Also a nice option for strengthening the hip extensors at a different angle.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hip joint geometry variations might alter risk factor of this more extreme position under load. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Summary</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hip extensor strength is a necessity for force production through the pelvis during walking running, lowering the body, standing up, climbing stairs etc but also for stability around the lower body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We are swiftly losing hip extensor strength through our lifestyles that tend to have us weight bearing (sitting) on this area more than utilizing it. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So considering how you move day to day and you are likely to realise how often you hinge at your hips. A lack of strength/conditioning in this area is not only going to affect our movement quality (ability to propel the body forwards, change direction safely with control amongst other things) but will also result in flatter buttock aesthetics.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Therefore surely some variation of a deadlift might be a good idea in any training programme for good healthy biomechanics and lifting, don’t you agree?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','The Deadlift - Should We Or Shouldn’t We?','','inherit','closed','closed','','12344-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',12344,'https://biomechanicseducation.com/?p=38722',0,'revision','',0),(38723,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<!-- wp:paragraph -->\n<p><br>To continue on &amp; having discussed 7 squat variations last time I felt this would be a great time to also discuss lunges, their variations, value, risk factors along with regressions &amp; progressions for programming into your clients training plan. Lunges are a fantastic alternative to the squat, since they utilise the same joint actions. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The lunge, in my opinion, is fabulous way of conditioning the lower body for hypertrophy, strength, shape and stability all in one simple movement. The increased challenge compared to the squat is in the balance upon and asymmetrical base of support. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Like the squat there are several variations that make this movement interesting as well as easy to regress or progress within your clients training plan. Let’s discuss..</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style a). Static Lunge </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One foot placed in-front of the body, the other foot behind resting on the ball of the foot with the heel lifted. The width of stance can be altered however generally there is more balance if done with a natural hip to shoulder width between the feet when looking into the mirror. Also generally the body will be positioned midway between the 2 feet. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The individual moves straight down &amp; up with or without bar using knee, hip and ankle flexion &amp; extension.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Great hip extensor &amp; thigh conditioner</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Great for lower limb stability - If your client is ready for this as part of their programme  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Allows individual to achieve increased range of motion under load through the hip in particular, compared to the squat for example. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If an individual struggles with balance, coordination and/ or basic leg strength this could be a very challenging move. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Body weight low range squatting possibly holding onto a static support might be a regression option here.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style b). Walking Lunge </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As the title states this type of lunge uses a walking motion. Including a deep lunge down &amp; up for each step taken <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A personal favourite again as a variation with great transference into movement health &amp; sport.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Great for fuller range through hips under a variable functional load.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Increased load through each leg versus a body weight squat</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also allows for variations (like the squat) in terms of equipment. Ie back bar position, front bar position, overhead bar, single arm overhead KB/DB, suitcase carry single or double KB/DB etc<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Again if the individual struggles with coordination and/or lower body strength this maybe too advanced initially. However shallow ranges might be an option initially performed slowly to allow time to control the movement.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style c). Bulgarian Split Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With the back leg elevated upon a bench/block or box, while performing a static lunging taking most of the load through the front leg, with the option of a bar across the back / shoulders. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Great to load front leg more specifically as it alters angles in relation to gravity &amp; load.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is an pretty advanced move particularly for a beginner due to the lack of neuromuscular feedback (ie balancing on just 2 points - front entire foot, back foot just the toes)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Balance will be challenged as well as strength. However using just bodyweight and possibly even using something static to hold onto for additional balance can help regress this great move.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style d). Pistol Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This move is in here because its single leg movement, although some may deem it a squat variation. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Standing on one leg only, with the spare leg out in front, lower the body down into the A2G position (full range of motion) before standing back up - all while balancing only on the one leg. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is probably the toughest ‘lunge’ type of movement but it has lots of crossover considering that, even with only body weight, it is a very advanced &amp; for most a massive challenge. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Can be done using a TRX for support but this can also result in a cheat compensation by using the upper body to pull out of bottom position. However this ‘cheat’ is also a great regression<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The large increase of forces transferring through the knee taking the entire body weight through its full range.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style e). Shrimp Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is almost the same as the pistol squat above.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However the spare leg is held behind the body so the back knee may touch the floor at the bottom position or the individual may kneel between alternating reps.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also often performed from a kneeling start position stepping forwards into a single leg ascending lunge movement.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also often performed holding a rack or static rig for assistance or as a cheat or regression<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Same as pistol squat.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong> </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Same risk factors as the pistol squat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style f). Corkscrew Lunge</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Similar to a Bulgarian - this style of lunge adds the component of literally a ‘corkscrew’ motion on the front hip.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Back leg elevated on a bench or box. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>As the individual lowers the body into the front leg, they allow the pelvis to adduct towards the front leg by dropping the hip (on the back leg). This creates a transverse loading &amp; the need for some hip abduction in the front leg on both the eccentric &amp; concentric phases.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It? </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is a fantastic move for really challenging pelvic strength as it brings in frontal, transverse loading on the front hip thus creating a variable of planes into the movement - possibly closer to a functional for most sports.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s an advanced move for someone with a lack of coordination and/or lower body strength.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style g). Plyometric (or plyo) Lunge</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>What Is It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The most commonly used version of this is when the individual starts in a bodyweight regular lunge position. Then having lowered down to the bottom position, used the momentum of swinging the arms (forwards &amp; upwards) to assist jumping in the air, while switching the legs mid air to then land in the opposite leg forwards - repeated a certain number of times.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is a fantastic cardio kicker &amp; helps to develop explosive leg power as well as leg strength, conditioning etc.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why Not Do It?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Again a tough option for those with less balance &amp; coordination.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Summary </strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The lunge has been a favourite of mine for 3 decades. It’s versatility &amp; transference, again similar to the squat, gives it huge value in any clients training programme. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Everything we do sagittally with our lower body during movement will be a variation of a squat or lunge, thus giving us all good reason to include them into our clients training plans.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please recognise the variations for periodisation &amp; understand how you might develop a programme for an individual that fits their ability &amp; goal.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Next Time...The Deadlift</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','A Personal Trainers Guide To 7 Styles Of Lunge: When & Why To Use Which','','inherit','closed','closed','','12216-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',12216,'https://biomechanicseducation.com/?p=38723',0,'revision','',0),(38724,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<!-- wp:paragraph -->\n<p>Well I started writing this blog initially about the <em>Top 10 Best Moves To Use In The Gym</em> however it changed as I wrote because I had you trainers &amp; coaches in my mind. So decided to change the topic to <em>Top 7 Squat Styles, When &amp; Why To Use Which With Your Clients. </em>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The reason for this was that I felt this detail might be more helpful to trainers &amp; coaches when it comes to designing client programmes &amp; choosing the right squats at certain points on their development.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(Don’t worry if you still wanted to hear my Top 10 Best Moves though since this will be coming in the form of yet another blog series as you will see later) </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>The Squat </strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Squatting, as you know from my many ‘squat’ blogs, is basically the combination of ankle, knee &amp; hip flexion all performed at the same time &nbsp;during the descent followed by ankle, knee &amp; hip extension during the ascent. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In my opinion the squat is probably top of the tree in terms of simple fundamentals. The basic act of sitting and standing has so many variables it’s often a controversial topic due to a lack of clarity around its context. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If the load, it’s position or absence of it, isn’t made clear often the reader or listener may hold a different context in their mind resulting in confusion or a conflict of understanding. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(Ie; A body weight caveman style A2G squat holds different loads, force and risk factors compared to a 30kg front squat performed to 90 degrees at the knee.)<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here I will briefly discuss different squat types &amp; therefore the differences in risk &amp; benefit. Unless otherwise stated please note the comparisons are like for like in terms of squat depth/width for these examples.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style a). &nbsp;Caveman Squat or A2G - bodyweight only! </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is a natural position for the human form to rest in, however for many they either rarely or no longer rest in this almost foetal sitting position. The body compensates for those NOT using up these fuller ranges (ie only ever ‘sitting’ or squatting to 90 degrees into a chair for long periods - like desk workers)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The compensation is to reserve energy by adapting and limiting the use of certain muscles for example, therefore resulting in ‘stiffer’ joints, tight nerves and muscles that don’t function to their full capacity any longer.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Use It Or Lose It! </strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By simply asking the body to perform a new or <em>unused</em> physcial task chances are it will of course feel awkward, difficult and sometimes uncomfortable. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However like the <em>degradation</em> of your caveman squat the body can adapt the other way too! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now it’s relevant at this point to point out unless mentioned please assume the context I am using is in a healthy adult body without ailments or injuries. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Use This One?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It’s a fundamental human movement &amp; the crossover equates to :</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Improved dorsiflexion or calf range &nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Improved muscle flexibility in hip, knee extensors </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Improved joint lubrication &amp; mobility in knees, hips and spine </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Improved nerve mobility throughout the integrated system <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Use It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Demographics with joint conditions / injuries that may be exacerbated with these fuller ranges.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Less stable or low strength demographics might be advised to use less depth/ranges certainly initially while they ‘practise’ better function using methods like the iMoveFreely programme to improve their intrinsic function first.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style b). Back Squat (high bar/low bar)</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This style specifically uses a load / bar positioned across the shoulders. The high bar upon the meaty part of the top of the shoulders and the low bar further down towards mid traps. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The high bar tends to be a more popular position amongst recreational lifters. The reason for this is likely to be the advantage &amp; ease of ‘balancing’ a compressive load on top of the spine &amp; over the centre of gravity thus allowing the lifter to have increased equilibrium during the descent/ascent. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is of course if they have the ability to maintain this line of force by keeping the weight over the midfoot during the squat. A lack of range across joints, flexibility in muscles, tension in nerves or any combination of these can inhibit this equilibrium or at least the degree of depth the lifter maybe able to perform while maintaining a midfoot bar position.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Alter the bar position &amp; this too will alter the downward force through the body &amp; its structures &amp; subsystems. Ie the low bar will move the force posteriorly. For some this can feel better, others it can degrade their performance. It is the combination of capacity through the lifters subsystems &amp; the load position that increases or decreases benefits &amp; risks. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is without even taking into account the number of kilos on the bar nor reps or sets being performed. So lots to think about, right!?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Do It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is a fantastic way to start loading the squat simply to challenge &amp; strengthen the body. It can be used for all sorts of adaptations to the lower body &amp; trunk in terms of hypertrophy, strength, stability, metabolic crossover, proprioception &amp; mobility.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Do It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This back bar position may feel challenging if the lifter has limited range across the chest or limited thoracic spine extension. This could cause protraction of the neck since the position would need to come from somewhere. If the individual cannot retract the scapula this compensation may occur increasing risk. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another compensation for a stiff spine or lack of thoracic extension might be that the lifter leans forwards allowing the downward load of the bar to transition forward and over to the forefoot. This can excessively load the lumbar spine which overtime could have a detrimental effect.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Obviously there is the option to descend only to the point the lifter can maintain the mid foot balanced load while working on ranges and capacity of the subsystems with muscle energy techniques and nerve mobilisations for example. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style c). Front Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It?</strong> </h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This style requires the bar or load to be resting upon the front of the shoulders. This means the arms must be extended out in front either crossing both the arms in front of the chest, over to the opposite shoulder or, if mobility allows, with the bar resting in the hands with both elbows pointing straight ahead. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Often a lighter load is used due to the force upon the smaller muscles of the shoulders. However if a good position can be achieved &amp; maintained the bar can be held close to the throat &amp; stabilised above and to the front of the shoulder joint. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The downward force produced by the weight of the bar in this forward position means there is a more shear load being put through the spine. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Therefore great technique is vital for reducing risk with this style. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Do It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The crossover of transference into trunk stability is fantastic IF a good position can be achieved.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Do It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Without the upright position during this holds a higher risk than a back bar squat due to the shear loading. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember that understanding the influence of good spine biomechanics can dramatically improve your squat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style d). Overhead Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It? &nbsp;</strong>&nbsp;</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Usually performed with a very wide grip bar elevated / pressed over the head during the squat. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is possible the most challenging of all the squats I’m describing here because of the instability of the load balancing on the arms overhead. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Literally balanced on top of the scapular, arms extended over head. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Any amount of limitation will be really highlighted during an OH squat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fabulous crossover into the Olympic lifts, stability &amp; scapular control. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Do It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Can be used as a Functional Movement Screen (FMS) with just a pole overhead to assess &amp; monitor a group of athletes to identify those at a high risk.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To improve OH stability of trunk &amp; scapular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Looks &amp; feels soooooo damn cool! IMO<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Do It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For the same reasons!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This holds high risk for lifters with any lack of range or functional capacity. Improve the intrinsic function, prepare the body with a specific preparation periodisation programme first.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Remember that even tiny muscles like Pec Minor can impact on your ability to overhead squat dramatically. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/how-your-pectoralis-minor-can-affect-your-squat-depth/\" target=\"_blank\" rel=\"noreferrer noopener\">> (opens in a new tab)\">&lt;&lt;see pec minor squat article>></a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style e). Goblet Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Usually done with a kettlebell &amp; the bell is held with both hands in front of &amp; close to the chest. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A nice variation on the front squat but risk is reduced in terms of the load being a bell (smaller &amp; lighter) rather than a bar &amp; also there is less demand for upper body mobility.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lifters could use this in preparation for the front bar squat. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Do It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>As a variation &amp; in preparation for the front bar squat. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Another ‘cute’ variation is to lean the body back at the same time as out stretching the bell / arms at the bottom range before ascending. This creates alterations of the force, load &amp; joint positions under the load.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Do It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If the arm / bicep strength limits the individual or once again if their capacity limits their ROM. The 4 sign anti spasm exercise prior to this can make a huge difference - try it!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style f). Sumo Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>A super wide foot position variation of the squat. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Do It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To alter the joint positions under load and this can, for some, allow them to achieve a deeper ROM due to their pelvic geometry. For some this wider leg position can mean the depth at which the femur hits the pelvis (altering the pelvic position by tilting it posteriorly) occurs later in the descent. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Do It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Again pelvic geometry will influence comfort levels during these types of moves at increased ranges. Personally the wider foot position doesn’t work for my hips but I do alter my foot width regularly to take into account the various positions I require my hips to be strong during everyday movements. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Style g). Jump / Plyometric Squat</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What Is It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Any of the above done explosively so that the feet leave the floor. Jumping so the muscles exert maximum effort for short intervals. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Do It? </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It improves the power (speed-strength) drive from hips / legs as well as give us a nice cardio kick<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Why Not Do It?</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If there are stability issues or any medical conditions that impact would be detrimental to.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>The Squat In Summary</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There’s a lot of fuss about squatting &amp; much debate about which one is best &amp; it’s the exercise I get the most questions about. But let me try to sum this up in my opinion….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We should all have the capacity to squat to some degree. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each time you sit / stand you are performing a squat</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Squatting is what we have done for millions of years to empty our bowls, make &amp; eat meals &amp; to have a rest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is only in the recent technical era we have really stopped squatting </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can learn to squat again though! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The squat is defined simply as ankle, knee &amp; hip flexion/ extension </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Squatting can be done to various ranges to remain within safe parameters during a periodised training plan to improve your squat <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://bit.ly/ProjectSquat\" target=\"_blank\" rel=\"noreferrer noopener\">> (opens in a new tab)\">&lt;&lt;see A2G project>></a><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A certain style of squat can be safe for one lifter but not for another due to the individuals intrinsic biomechanics</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The squat is a fantastic exercise to strengthen the lower body &amp; train stability &amp; control of the trunk </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The squat style should match the goal </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Using iMoveFreely has proven to dramatically improve the squat for hundreds of people<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But IMO everyone SHOULD be able to squat <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>----------------<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><em>Top 10 Best Moves To Use In The Gym</em></strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ok so I mentioned my original blog idea earlier and that I would come back to it, so….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Why pick 10 when there are LOADS!?!??!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well if we were to fill a blog with ALL of the great moves we like, see or use in the gym it would take a very long time. So my 10 go to moves during various phases of any clients training planning will be revealed over this series of blogs. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We all understand variety is healthy and fun but if you could pick your top 10 gym moves what would they be and why?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>That’s what I am going to TRY to do in this blog series. Choosing favourites will be more generic here in terms of my top 10 for the reasons as stated above, which is why I want to explore each one in a little detail each week.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also they are in no particular order…<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Squat - see above!</li><li>Walking Lunge </li><li>Deadlift</li><li>Turkish Get Up</li><li>Military Pressing</li><li>Push Up</li><li>Pull Up</li><li>Hip Adduction / Abduction </li><li>Hip Flexion</li><li>‘Mobility’ Drills </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>P.S. OK OK OK I have x 11 I cheated ….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Walking</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->','Top 7 Squat Styles, When & Why To Use Which With Your Personal Training Clients','','inherit','closed','closed','','12073-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',12073,'https://biomechanicseducation.com/?p=38724',0,'revision','',0),(38725,0,'2024-07-16 11:26:31','2024-07-16 11:26:31','<!-- wp:paragraph -->\n<p>Its possibly THE biggest year of my life so far...WHY?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I HAVE BEEN ALIVE FOR HALF A CENTURY!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Not so long ago we didn’t live much past this age and we certainly didn’t look or feel as great as we do now going into our older years. Well that is what I thought anyway. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now I’m a massive fan of natural health, PMA, silver linings, fate, karma and keep my focus on all the good and simple things in life.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A good night’s sleep is far better than any pharmaceutical for MOST health issues in my opinion. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However when something comes along, creeps up on you gradually in such a subtle way initially….well it can eventually totally change you! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There had been signs years earlier and I wasn\'t daft I knew I was going through the menopause but had even been glad when my buddies had described their symptoms and their need for HRT, knowing I was doing ok in comparison. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I had spoken too soon….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Menopause Hit Me<g class=\"gr_ gr_19 gr-alert gr_gramm gr_inline_cards gr_run_anim Punctuation multiReplace\" id=\"19\" data-gr-id=\"19\">....</g>Hard</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Over time I noticed I was waking up with a body that ached all over, I could barely put my feet on the floor, my back shoulder neck pain woke me up. In my mind I would question my training, DOMS maybe? Also how long I had been sitting at my desk etc.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then there was this waking up with anxiety in the middle of the night !?!? Heart racing and pounding in my chest like how I imagined a panic attack might feel.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>My brain fizzing with thoughts that stopped me going back to sleep. Ok so I reasoned that work was pretty chaotic and I had a lot going on right now.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A massive loss of focus and a constant fatigue that left me so lethargic I couldn’t be bothered to train and could have almost stayed in bed. This began alarm bells.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Motivation was at zero and energy levels were zapped BUT THEN...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The very worst of all…..Not hot flushes oh no, these were literally &nbsp;HOT SEIZURES! Seriously one minute we are driving along the next minute the entire car has steamed up or waking up dripping with sweat, throwing back the covers then instantly freezing cold as the air hits me. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I realised my life had become miserable I was not happy anymore and I felt really old physically when I couldn’t be bothered to train. That was it, I’d had enough.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This just wasn’t me...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Seriously I actually thought it was just because I’m approaching 50 <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So I read up on menopause symptoms and began ticking off the ones I had….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Hot flashes</li><li>Depression</li><li>Aching joints &amp; muscles</li><li>Anxiety</li><li>Irritability</li><li>Insomnia</li><li>Mood swings</li><li>Fatigue</li><li>Racing heart</li><li>Headaches</li><li></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>OMG that’s me?! &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Or not me <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WOW</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So off I went to the doctors to ask for some help….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Blood tests </li><li>ECG </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>All Fine. Normal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But not REALLY normal as I was confirmed as menopausal BUT I KNEW that! I wanted something to help my symptoms.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The doctors asked me the usual stuff….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Diet? </li><li>Sleep? </li><li>Caffeine? </li><li>Stress? </li><li>Exercise? </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Ticked all of those boxes and so she asked me what I wanted to do?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Is It Time For HRT?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>I said <em>“Can I have a low dose HRT please?</em>”<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now I had done my research, read articles and research papers, asked my pals who were on it etc etc and had decided my quality of life was such that it required a stronger intervention. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 weeks into taking my HRT WOW I KNEW it had been the right thing to do because OMG I had forgotten how great I <strong><em>normally</em></strong> feel!!! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The side effects of putting some of the hormones back into my body….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Training again</li><li>Sleeping solidly through the night</li><li>Energy back up</li><li>Motivation back in order</li><li>My skin even looks better</li><li>Wrinkles reduced</li><li>Belly fat down</li><li>Focus is back</li><li>Not feeling stresses</li><li>No anxiety</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>It SOOOOO Taboo!</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So WHY on earth am I telling you all of this???<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well it is not a subject most women would discuss openly and I also wonder if some women, like me, might not even realise some of what they are feeling may be a result of hitting the menopause.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Personally, I have no issue discussing it and would like to encourage others to share their experiences of it too so we can learn from each other. I know some of my friends who have struggled even more than I did so maybe, just maybe, with some encouragement to be more open we can support and learn from each other.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Can Personal Trainers Learn From This?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So to all of those Personal Trainers out there, please note...the old saying ‘<em>Going through the change’ </em>could not be put any more accurately. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Please be mindful of your middle aged female clients whom I know are one of the biggest demographic seeking our advice. They too could potentially be experiencing any of these symptoms. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It may not simply be that they are just ignoring your motivation or that they can never be arsed. It may not simply be that they aren’t trying hard enough. It maybe they are changing and please understand I am NOT for a moment suggesting you tell them they need HRT or to see a GP!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However hormones changing can change the person and having been through it, I was surprised by just how much it changed me…..BUT....<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>I am back!!!</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','My Secret Revealed… How Menopause Has Affected Me','','inherit','closed','closed','','11824-revision-v1','','','2024-07-16 11:26:31','2024-07-16 11:26:31','',11824,'https://biomechanicseducation.com/?p=38725',0,'revision','',0),(38726,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<!-- wp:paragraph -->\n<p>WOW!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What an incredible weekend! After months and months of planning and organising, with the usual chaos and changes all at the last minute, we finally saw the fruition of our efforts come to life.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And it could not have any any better!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>First up saturday morning was in The Biomechanics Education Academy...<em> </em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><em>The Annual Master Trainer Standardisation Meeting</em></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>8 of the very best Biomechanics Education Master Trainers gathered to discuss:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Mission</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Vision</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Values <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We explored self reflection, personal development techniques, how we constantly strive to create the best learning environment for our academy learners, we asked ourselves WHY (Simon Sinek ‘<em>Start With Why</em>’), we did a personal effectiveness scale test and also discussed how to be aware that we each see the world differently - yeah pretty deep stuff!!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>After a light lunch we went into our saturday afternoon gathering.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><em>The Annual Biomechanics Coach Training Camp</em></strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There were 46 Biomechanics Coaches in the room and after a quick annual update about our progressive (and so far successful) plans towards global domination we began with our first session.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Mike Grice</strong> who is also an Osteopath and world leader in intrinsic biomechanics lead this interactive thought provoking session. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>His session discussed interdisciplinary communications and understanding. He set tasks for the delegates to discuss ways to explore and understand the mindset of an interdisciplinary practitioner. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Next up was…<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Martin Haines</strong>, Chartered Physiotherapist and also another world leader in intrinsic biomechanics. He lead a fantastic session discussing running biomechanics. Going into details about the challenges of alignment as a measure due to the diverse nature of pelvic geometry. He also discussed foot and ankle biomechanics and how these to can miss guide practitioners. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Saturday evening we all met at the local Tavern Pub for a social gathering of Biomechanics Coaches to wind down from the days events. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Sunday was...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><em>The Kaizen Project</em></strong><em> </em><strong><em>2019</em></strong><br></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Delegates vegan to arrive from around 8am from all over the UK literally for this awesome much awaited event! That went something like this:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Jonathan Broom Edwards </strong>delivered at very honest session about GB level mindset and how he developed his to win a Silver Medal high jump in 2012. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":11706,\"width\":1226,\"height\":818} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/02/Jonathan-Broom-Edwards-1024x683.jpg\" alt=\"\" class=\"wp-image-11706\" width=\"1226\" height=\"818\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Mike Grice</strong> was back to deliver a stunning practical session with more mic drops than an pne mic club!! Using therapy to specifically improve performance in a way many delegates hadn’t heard before. In fact he challenged many of the concepts many are still being taught about what is actually happening to the body when you have manual therapy. Fantastically controversial BUT all evidence provided.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":11707,\"width\":1227,\"height\":818} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/02/Mike-Grice-Kaizen-Project-2019-1024x683.jpg\" alt=\"\" class=\"wp-image-11707\" width=\"1227\" height=\"818\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Ben Coomber</strong> appeared next to deliver a dynamic session that included all aspects of health when considering performance, from sleep &amp; hydration to of course, nutrition. His suggestion towards a simplistic approach with awareness and consistency was fantastic. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":11708,\"width\":1231,\"height\":821} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/02/Ben-Coomber-Kaizen-Project-2019-1024x683.jpg\" alt=\"\" class=\"wp-image-11708\" width=\"1231\" height=\"821\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>Chris Wright</strong> was our business mentor for the day. Chris showed us a simple blueprint for coaches to apply to their business to help them grow.  Being a great coach is only part of the formula, we dived into the other aspects that you, as a coach, need to have in place to take your business to the next level.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":11703,\"width\":1229,\"height\":820} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/02/Chris-Kaizen-Project-1024x683.jpg\" alt=\"\" class=\"wp-image-11703\" width=\"1229\" height=\"820\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>From here we all made our way downstairs into the Aspire4Fitness Gym to first of all eat!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>FREE fish n chips from the Mobile Chip Shop went down a treat with everyone!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Exhibition stands were all set up... <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Super Seven Coffee</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sanctum Apparel </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Awesome Supplements<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...and there was Pulseroll - I delivered a practical session showing delegates how to take advantage of this awesome tool.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally after 140 people had a photo with him…. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Eddie Hall </em></strong>sat and shared his personal story as an athlete how he successfully achieved his goal/s through mindset, therapy, specific performance training and diet and never giving up. The Q&amp;A session was also revealing, honest and personal, allowing delegates to interact with The Beast!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Myself and my fellow organiser Matt Kirk Ellis, MD of Aspire4Fitness Gym, felt that the day/s went extremely well and couldn\'t in fact have gone any better than planned. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So much so we are planning a meeting about the next event….but not before we have both taken a holiday!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Thanks to everyone who supported us, all our sponsors and of course the guest speakers, without whom there would be no event! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Until next time….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','The BIG Biomechanics Coach Weekender! Master Trainers, Biomechanics Coach Training Camp & The Kaizen Project','','inherit','closed','closed','','11702-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',11702,'https://biomechanicseducation.com/?p=38726',0,'revision','',0),(38727,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<!-- wp:paragraph -->\n<p>Calling All Soldiers!!  FUNDING is HERE!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A.M.A.Z.I.N.G. News!! - AGAIN!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally after months and months of evidencing we now have Military Of Defence backing for funding and accreditation of our L4 LBP Specialist Diploma in Biomechanics Coaching through Enhanced Learning Credits Administration Services!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is an extremely important milestone in the existence of Biomechanics Education and our mission to always improve on what and how we deliver our programmes. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We feel passionately about our promise to every single learner that comes into the academy, whether you are on a 1 day workshop or a full L4 Diploma learner. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>We promise you quality content</li><li>We promise you an inclusive classroom</li><li>We promise you our full support </li><li>We promise you more than just education</li><li>We promise you opportunities</li><li>We promise you will not be disappointed </li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We can not only promise you this but we have evidence of it because this is what the MOD require as part of the application process. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Over 6 months, 26 documents, 6 files of evidence of legal, quality, declarations, insurance, references, demands and financial statements. We had to re-submit 5 times before they would accept our application due to the amount of detail they required. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let me tell you this has been an extremely stressful and time consuming process….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>….why do it then eh??<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well let me tell you we have literally got everything covered to protect YOU and be in a position to promise YOU everything we promise you because if I don’t…..well I will be in trouble with the Military of Defence!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The business has been fully scrutinised from every damn angle to make sure our amazing ex military service men and women get the training standards they deserve once they leave and want to re-train back into a civilian job, like becoming a L4 LBP Specialist Biomechanics Coach!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So ex military guys who can access funding can get their L4 LBP Specialist Diploma in Biomechanics Coaching paid for by the MOD!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT wait….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You’re not ex military? … well so what?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Even if you’re NOT an <g class=\"gr_ gr_9 gr-alert gr_spell gr_inline_cards gr_disable_anim_appear ContextualSpelling multiReplace\" id=\"9\" data-gr-id=\"9\">ex </g><g class=\"gr_ gr_6 gr-alert gr_spell gr_inline_cards gr_disable_anim_appear ContextualSpelling ins-del\" id=\"6\" data-gr-id=\"6\"><g class=\"gr_ gr_9 gr-alert gr_spell gr_inline_cards gr_disable_anim_appear ContextualSpelling multiReplace\" id=\"9\" data-gr-id=\"9\">service</g> man</g> or woman...well guess what….? YOU TOO get the gold standard level of training that has been through rigorous testing. YOU TOO can gain access to the level of service expected from us by the Military of Defence. OK OK OK yes you, yourself have to invest in yourself and jump on the course, BUT if the Ministry of Defence <g class=\"gr_ gr_115 gr-alert gr_gramm gr_inline_cards gr_run_anim Grammar multiReplace\" id=\"115\" data-gr-id=\"115\">trust</g> us, that should give you confidence in us too!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','Funding For Ex-Military via ELCAS - Become A Level 4 Low Back Pain Specialist Biomechanics Coach','','inherit','closed','closed','','11549-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',11549,'https://biomechanicseducation.com/?p=38727',0,'revision','',0),(38728,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<!-- wp:heading -->\n<h2><strong>What Exactly Is Periodisation Training?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Periodisation</em></strong><em> is the systematic planning of athletic or physical </em><strong><em>training</em></strong><em>. ... It involves progressive cycling of various aspects of a </em><strong><em>training</em></strong><em> programme during a specific period. Conditioning programmes can use </em><strong><em>periodisation</em></strong><em> to break up the </em><strong><em>training</em></strong><em> programme into the off-season, preseason, in season, and the post season.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>OR</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Tudor Bompa, a leader in periodisation strategies, states:</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“Periodisation of strength is structured into phases to maximise sport-specific strength. These phases include muscle endurance, hypertrophy, maximum strength, anatomical adaptation, and reactive training, which incorporate power and explosiveness.”</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At Biomechanics Education we have another way of defining and designing ‘periodisation’ and so here we will discuss different models.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>The Standard Models For Periodisation Training</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Periodisation training is most commonly linked to elite sport and strength/energy systems/skill training. It is a fantastic method for planning an athlete’s entire year of training exercises across both long and short term ‘cycles’.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>The 3 Cycles Of Periodisation Training </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>MACROCYCLES</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The longest of the 3 cycles and commonly seen as the annual calendar in terms of planning the training from a top level view of the seasons and competition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>MESOCYCLES</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is the next level of planning in terms of blocks of specific training, ie a strength phase or an endurance phase sport dependant. They are typically around 3-4 week blocks and slot into the macrocycle relative to the competitions and the overseeing ‘skill’ you are wanting to develop at the appropriate times. This also takes into account tapering and recovery ie prior to a marathon or powerlifting event to avoid fatigue at crucial times.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>MICROCYCLES</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The shortest cycle viewed used and usually planned to a week with close scrutiny of measurements to facilitate the requirements for that block. Also inclusive of rest days and specificity to requirements. Typically 3-4 of these micro cycles make up a mesocycle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Why The Increase In Demand/Popularity?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Personal training education does not require the learner to demonstrate an understand of periodisation at this level since this has always been the job of the S&amp;C coach. However more and more clients are entering into the realms of competitive amateur sport and creating an annual plan has begun to look far more interesting and beneficial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This modality of planning and training gives far more longevity to our personal training programmes. It also expands our concept of adaptation much wider &amp; with more specificity &amp; complexity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This brings a whole new level into our programming resources but also variety and likely more success with less injury risk.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However understanding the reasoning behind each decision is far more intricate than simply choosing exercises</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let’s look at a few variations of periodisation models that might allow a PT to implement periodisation into a system of understanding that might be more relevant to our regular clients</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At this point I would like to emphasise that any personal trainer wishing to advance their knowledge in this field should seek a reputed S&amp;C course that includes a far more detailed reasoning and rationale behind a periodisation model.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Examples:</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Strength &amp; Conditioning Education; Force Velocity Curve</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Strength &amp; Conditioning Education give the example of the force velocity curve example:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/jx5IMOX39RqSg5mr2EtrHEKu7p4xnkLh4xcnNRN_iTxRZ9nlh97flQ6tCo3_8syidmpQu6N7HjBGh-d8sBrMrt6hIvAlI7eQitMID8ojuLJ_NELUEIT_UrWRUM7uiLdysH2xbTFC\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This is where the periodisation model first considers development of strength, then strength with speed, followed by power and so on. You cannot produce power without developing strength first so this model of planning is great for olympic lifters or rugby players for example.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Chuck Wolf : Periodised Programme Hybrid Model</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Chuck represents his model in another way:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/7BSuu6WtrUyIJdxUw9jCqhIkJ6EFMfH_ivPmk0BmIFpXz7KBFkptzCMfDWCn6r2ZGjqGLYdmlQPXMZx9Q0BM9dN7yXj3DuNbiw93o-2Wg22H_8FPnbcRzRfyuq77XMf1bHwq5NPs\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>He has layering of skills development in a periodised pyramid plan of laws to follow:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Law One: Develop joint flexibility.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Law Two: Develop tendon strength.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Law Three: Develop core strength.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Law Four: Develop the stabilisers.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Law Five: Train movements, not individual muscles.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This also make absolute sense and if you read his article he describes in more detail WHY each law exists.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Biomechanics Education Periodisation Pyramid Model </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Another way of looking at periodisation might be in preparation for movement in the first place. Our model, like Chuck’s, is a pyramid model. This might look similar but has differences due to the goal and requirements. However it has benefitted BOTH elite athletes and our average client base of desk workers or fat loss clients perfectly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://lh5.googleusercontent.com/zckayMOEf2i91zbFSjTGVbtgugArh-ROo-KHyjuqPbc2ncfmc1YdS0loNz-7bHreJ01Fmu_gAQ8n3ZAyCM7fw43l6phKx65kL5X50K5EGoa7EGbKz0m7HS1sywsf50mOv5rlH_-N\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This evidence based model demonstrates how to begin with the ‘intrinsic biomechanics’, or 3 sub systems, first in terms of preparation for movement. Developing good muscle function, mobile nerves and joints prior to stabilising the integrated system. Then we layer on and develop basic agonist/antagonist joint strength ratios. This then leads into specificity of activity or sport development training.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each model leads into one another and can blend or merge depending upon the client, the coach and the goal specificity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Do You Use Periodisation?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While there are great examples of periodisation models here I know I am not alone in stating that….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...the single most important thing to consider when planning your periodisation programme is the client in front of you!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So no matter how sexy some ideas, models or exercises are please please please ALWAYS consider the client FIRST!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For many the biggest challenge is adherence so simpler is better however there are those who relish a challenge!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Tell Me Your Thoughts?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>rachel@biomechanicseducation.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->','Personal Trainers & Periodisation: What Is It and Why Should We Be Using it?','','inherit','closed','closed','','11407-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',11407,'https://biomechanicseducation.com/?p=38728',0,'revision','',0),(38729,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<!-- wp:paragraph -->\n<p>Assumption is often used to identify WHY someone maybe limited in the much coveted Front Squat or OverHead Squat. This blog will discuss and explore more objective, and ultimately safer means of ‘measuring’ the WHYS rather than the obvious WHAT\'S when it comes to these often more challenging squat positions.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What&nbsp;Is&nbsp;Happening&nbsp;vs&nbsp;Why&nbsp;It\'s&nbsp;Happening</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is very easy to see WHAT is happening when a client doesn’t perform a squat ‘very well’. Add the challenge of some kind of compressive or shear load on top of this and things can be dramatically highlighted.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ok so why would someone want to do these kind of squat variations? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Why Do The Front Squat </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This technique requires the bar to be upon the front of the shoulders, with the arms lifted to balance the bar close to the throat.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This position challenges trunk stability differently, compared to the more popular back squat, due to the shear force positioning of the bar. The back squat is a more compressive load as the bar is behind the head upon the meaty part of the shoulders. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The bar position on any style of squat should be as close to above the midfoot as possible for reduced risk and improved movement efficiency of the load. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The front bar position requires a more upright posture to achieve this. For many this upright position is a challenge because it requires a wonderfully mobile and yet solid and stable pelvis and trunk. This is something many of us lack due to our lifestyles hunched over laptops, phones etc.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Why Do The Overhead Squat</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This techniques requires the bar to be held and balanced with the arms extended over head.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This particular squat variation is possibly the toughest to master due to the added challenge of shoulder mobility and stability. The front and back squat positions keep the load very close to the body.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The overhead squat position also creates virtually a full stretch through the nervous system which again can highlight any areas the individual may lack a capacity for movement in.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Why Do Them Then?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well, they can add variety, alternative stimulations to the same movement, they challenge stability more, particularly the overhead squat and they are in themselves benchmarkers or measurements of movement capacity. They do hold <g class=\"gr_ gr_5 gr-alert gr_gramm gr_inline_cards gr_run_anim Grammar only-ins replaceWithoutSep\" id=\"5\" data-gr-id=\"5\">risk</g> of course which increases further with added kilos/load as I am sure you would be aware.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So What?</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well have you ever watched someone do one of these variations and thought…<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“I’d love to try that”</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>OR</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“WHOAH, they shouldn’t be doing that!”</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>OR</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“I wish I felt more comfortable/confident doing these”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Assumptions That&nbsp;Are Often&nbsp;Made</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Assumptions are often made about WHY we struggle with some of these techniques in terms of what we need to do about it. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Immobile Pelvis</li><li>Stiff Spine</li><li>Tight Calves</li><li>Tight Nerves </li><li></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>In fact all of these can be contributing to a poorly performed Front or OH Squat. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Not just these, in fact the chest muscles, in particular Pectoralis Minor. This tiny muscle can inhibit your squat performance by pulling the scapular around the thoracic spine and rib cage and thus stiffen and limit thoracic extension. A key component of keeping that bar above the midfoot during any squat.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Improving&nbsp;Your&nbsp;Overhead&nbsp;Squat&nbsp;Or&nbsp;Front&nbsp;Squat</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well of course my advice is to hire a highly qualified movement specialist or coach because it is a challenge to observe your own Front or OH squat technique from all angles. Ideally someone who can assess your body prior to squatting to understand which of the above limitations are relevant to you.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However in the meantime following a system of approach would make sense rather than just hammering away at something and not knowing if you are making a difference, right??<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>How To Discover Your WHY’S To Improve Your Front &amp; OH Squat</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Evidence shows that around 60% of ‘dysfunction’ stems from the pelvis.</li><li>Changing too many things at once won’t allow you to be objective as you won’t know what has worked</li><li>Follow an evidence based system of approaching your programme design will increase confidence </li><li>Repetition - Use the same movement benchmarks, with the same setting, equipment, video/photo angles etc </li><li>Video / photo evidence will allow you to make clear analysis of what is or isn’t changing/improving</li><li>Be patient but consistent. Often the changes can be subtle and chances are it will take time </li><li>Ask the professionals or get educated on evidence based physical assessments </li><li>Specificity - Always keep the goal in mind</li><li>Take each body part at a time. Start with the pelvis, then spine, shoulders, knees and feet since this is a logical evidence based approach.</li><li>Try a variety of techniques for each area not just stretching for example. Ie Muscle energy techniques, nerve mobilisations, joint mobilisations etc</li><li>Don’t forget to strengthen other planes of motion for all round stability. Ie Frontal plane work can dramatically improve even sagittal plane movement performance </li><li>Use antagonist strength work to improve overall squat strength</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Last year I put together the \"Project Squat\" Series which was all about showing you the techniques and assessments you could use to identify the reasons WHY the squat wasn\'t improving and how you could correct those things.  Here are the links to each of the sessions:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/how-to-squat-ass-to-grass-a2g-project-squat-part-1/\">Part 1: How To Squat Ass To Grass</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/project-squat-part-2-how-to-test-for-improve-your-pelvic-function-how-it-affects-your-squat/\">Part 2: How To Test For &amp; Improve Your Pelvic Function &amp; How It Affects Your Squat</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/\">Part 3: How To Assess For Dysfunction In The Spine</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/project-squat-a2g-part-4-the-nervous-system-how-it-affects-the-squat/\">Part 4: The Nervous System &amp; How It Affects The Squat</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/project-squat-a2g-part-5-how-shoulder-mechanics-affects-your-squat/\">Part 5: How Shoulder Mechanics Affects Your Squat</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/squat-project-a2g-part-6-the-knee-your-squat/\">Part 6: The Knee &amp; Your Squat</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.biomechanicseducation.com/project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat/\">Part 7: How Your Ankles &amp; Feet Affect Your Squat</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Conclusion:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It would be prudent to stay open minded about how many things can influence your squatting ability, particularly when choosing more advanced squat techniques like the front squat or overhead squat. Try not to assume anything, taking the time use measurements gives us confidence in what is or isn\'t working. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally and as always please do get in touch with all of your movement related questions! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>rachel@biomechanicseducation.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','How To Improve Your Front Squat Or Over Head Squat','','inherit','closed','closed','','11155-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',11155,'https://biomechanicseducation.com/?p=38729',0,'revision','',0),(38730,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<!-- wp:paragraph -->\n<p>As trainers and coaches ‘selling’ your services, whether as a sole trader or employed professional, I would bet highly that you are aiming to ACHIEVE something, right? Success measured by income, reduced hours or even simply job satisfaction for example…<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This could also cross into your personal life in terms of wanting to ACHIEVE something like maybe enter a fitness competition or travel to a certain country...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...and we ALL know our CLIENTS want to achieve SOMETHING! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is precisely our job!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So what’s the difference between grit and talent?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How might this influence what we do or how we approach it?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do we have an unconscious bias towards talent over actual achievement? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Why would we do that?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Problem</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well the problem is when we are glued to talent shows on TV or recognised for ‘talent’ at school. Also having a talent for a sport or skill doesn\'t necessarily mean we, or our client, will achieve at it. For your client to succeed they need persistence!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let’s dive a little deeper into the difference between them.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Definitions</strong> <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Talent - Skill, ability, natural aptitude</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Grit - Persistence, effort, courage, resolve strength of character </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So What? </strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We all remember the kids at school who winning a race came easy to and those who were always last. I mean who got rewarded for being last?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But what about the kids who kept on trying no matter what?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What about when they continued trying into their teens and 20’s and maybe even adulthood?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Which one were / are you?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Which one is your client?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Is it that talent gives a perception or an excuse for the rest of us to feel that well we don’t need to try because, well we will never be that ‘good’? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How many kids gave up or how many adults give up before finding out if they could actually, with a big dose of grit achieve what they set out to do?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ever thought..</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“Oh that\'s not me I\'m therefore not going to exert the same kind of effort into what I do”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We should recognise that we can learn skills, we can also learn &nbsp;persistence of course we can but is that not a more innate part of a character rather than a talent?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So are you talented? Do you have a talent? Or do you have grit? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Or maybe you have both?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Grit Scale Test</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Having read Angela Duckworth’s book Grit: <em>The Power Of Passion and Perseverance, </em>it had so much of what was at the heart of Ken Robinson’s theory on <em>Finding Your Element</em>. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can you can learn a skill but can you learn grit or passion?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here is Duckworth’s Grit Scale so that you can see where you are right now. But if you read her book you will see how this scale can indicate way more than simply grit.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":11026,\"width\":427,\"height\":637} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/THE-GRIT-SCALE--687x1024.png\" alt=\"\" class=\"wp-image-11026\" width=\"427\" height=\"637\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":11027,\"width\":429,\"height\":622} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/THE-GRIT-SCALE-2-706x1024.png\" alt=\"\" class=\"wp-image-11027\" width=\"429\" height=\"622\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>To Conclude</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Demonstrating persistence has been shown through research to be far more likely to equal achievement and it has been demonstrated time &amp; time again.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>IN FACT it might be argued that having natural talent at a young age could be detrimental to your grit scale or persistence, if gaining positive reinforcement about talent alone comes easily. &nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Those with natural talent may exert less effort due to the ease of their skill. However those determined to put in more effort due to a lack of skill ....well could they end up more feeling /being more successful? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let’s consider the reasons our clients come to us. Often this is because they have been unable to persist with things themselves. The better we understand this and the reasons why, the more opportunities we have to help them make changes. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Persistence and Consistency = Achievement and Success - No Talent Required!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Duckworth opinion is to go from talent to achievement this is what is required:<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Talent x Effort = Skill </em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Skill x Effort = Achievement </em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Talent matters but effort is required twice within this equation! </em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','Grit Vs Talent: Which Will More Likely Result In Achievement?','','inherit','closed','closed','','11024-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',11024,'https://biomechanicseducation.com/?p=38730',0,'revision','',0),(38731,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<!-- wp:paragraph -->\n<p><strong>Chair Rebellion Is Back!</strong>Are YOU A Chair Rebel?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The mission continues Juicefans….JOIN US!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Improving Movement Through Education</em> <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We like to explore and share ways we can all Move Well then Move More and this weeks Juicemail is no different. We will be challenging our <em>lazy</em> culture, offering some possible reasons why and also ideas on how to nourish yours and your clients, movement capacity.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So to begin, those of you that have followed me for a while may remember the <em>Beyond 90 Challenge</em> chair rebellion. <a href=\"https://www.biomechanicseducation.com/are-you-up-to-the-beyond-90-challenge/\">If you want to see the original post, check it out here.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Here are just a couple of people that joined in...</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns has-2-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":10931} -->\n<figure class=\"wp-block-image\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Chair-Rebel-3-Biomechanics-Education-630x1024.jpg\" alt=\"\" class=\"wp-image-10931\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":10932} -->\n<figure class=\"wp-block-image\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Chair-Rebel-1-Biomechanics-Education-768x1024.jpg\" alt=\"\" class=\"wp-image-10932\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>The idea is to challenge the <em>lazy</em> culture that seems to frown upon those of us who choose NOT to sit even when a chair is available and everyone else is sitting.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>During the Beyond 90 Challenge I spent several weeks experimenting with NOT sitting during my days in a deliberate attempt to see how people responded and of course to nourish my movement!<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What About Working At A Desk?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So the point of this challenge is to reduce the amount of time we spend still, not moving or sedentary. Now of course we must take into account the 3 R’s - REST, RELAX &amp; RECUPERATE. However too many of us have taken this to extreme lengths in terms of using our bodies enough to nourish them and keep the joints and tissues healthy and injury and pain free.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For example..<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While I do have a laptop stand you don’t need one as you can simply pile some books on top of your desk and place your laptop or keyboard on top for a period of each day/hour or session. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The key is to keep moving, try not to be too static for too long since we are designed to move! If we don’t move enough or regularly the body (being a master of compensation) will try to adapt to its environment and reserve energy by stiffening up mobile areas to reduce energy usage. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So moving a little bit more each day also means you will be burning more NEAT calories that most of us have also forgotten about.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Non Exercise Activity Thermogenesis (NEAT) </strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is the energy you burn outside of your exercise calories and can make a huge contribution to nourishing your movement.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Park as far as possible from the shop, office etc</li><li>Walk up the stairs instead of using the escalator lift</li><li>Arrange your office equipment so that things you use regularly are a walk away</li><li>Offer to help with physical tasks</li><li>Don’t fret about forgetting something upstairs, clap for joy at another excuse to run up the stairs</li><li>Invest in a FitBit or open up your iPhone health app to compare steps day to day</li><li>Enjoy physical chores because it feeds your movement profile</li><li>Practice your iMoveFreely techniques at your desk</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>So I challenge YOU to rebel against the chair. Not only that….challenge your clients, peers and colleagues! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Being a Chair Rebel will support their training goals and in fact means we/they are more likely to lose weight, move better and feel better. It promotes a healthy attitude towards movement and creates awareness of how little many of us move. Sitting should be the alternative not the norm. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Be A Fidget Pants!</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In my experience recently of 5 days standing at the back of a course, while everyone else sat, meant they asked me about why I was standing. This gave me the opportunity to encourage yet more chair rebellion. Several of my peers joining me at the back!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Mostly people are up for the challenge and everyone secretly admires a Chair Rebel when they understand the cause. Even if initially they think you are a bit weird. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Chair Rebellion Project</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>So the word is spreading and<strong> </strong>having received many message from Chair Rebels around the UK, it’s clear the project is expanding.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One friend, Jennifer, messaged me on Facebook to express her frustration about the sitting epidemic at schools where children are told ‘<em>be quiet and sit still”.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>She asked if something could be done towards improving this….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WOW, things are getting serious, but ya know what, shes right!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And I LOVE the idea of encouraging and supporting schools in educating teachers/children how to nourish their movement profiles while maintaining the school curriculum and focus. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It has been shown that frequent bursts of energy and being in a heightened state of ecstacy create focus and enhance learning (Tony Robbins <em>Power From Within</em>, 2018). So shouldn’t we be doing this with the kids?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>School\'s On The Move </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If we look at the most modern education leaders in the world, Finland, they are encouraging more movement at school. <a href=\"https://liikkuvakoulu.fi/english\">Click here and check this out.</a><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Shouldn’t we be doing the same? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Do you have children or friends with children?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How do you feel about this?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Would YOU like to join the chair rebellion?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How will you contribute?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Maybe we should be getting them to jump up and down prior to the session, or stand up telling jokes to each other in the class to stimulate their learning ‘state’ as well as their movement?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What do YOU think?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Send in your photos please and lets start a revolution!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Standing, when everyone else is sitting?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Waiting for the bus</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Waiting at the doctors</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While at work</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On a train</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In a meeting<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>BUT WAIT!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let’s just quickly look again at that all important question….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>SO WHAT?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>The Technical Argument For Chair Rebellion</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Any ‘fixed’ position for long periods is not natural for our bodies. Humans are physically designed to move and so it isn’t just the act of sitting that results in compensations and adaptations that create aches and niggles. Standing for long periods can also starve us of movement nutrition.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However sitting has to be the most prevalent and here we will explore why.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Sitting Compensations </strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When sitting for long periods generally the lower limb joints will be ‘fixed’ into hip flexion, knee flexion and ankle dorsiflexion with the pelvis tilted posteriorly so the lumbar spine is also flexed. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The sitting/sedentary lifestyle has been linked to Low Grade Low Back Pain or Non Specific Low Back Pain.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>There are simple techniques we can add into our daily routines like moving more but also exercise programmes like iMoveFreely that can even be done while sitting at your desk, or as a warm up to improve your movement along with those, low grade aches and niggles. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dare to be a Chair Rebel - Start sending in your PHOTOS Please, load them up to Instagram and use the hashtags #ChairRebel and #Beyond90</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->','Rebel Against The Chair - How Avoiding Sitting Can Dramatically Improve Our Health','','inherit','closed','closed','','10929-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',10929,'https://biomechanicseducation.com/?p=38731',0,'revision','',0),(38732,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<!-- wp:paragraph -->\n<p>Just spent a whole week in London on a Directors Development Programme rubbing shoulders with a real mix of professionals from all kinds of industries.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Insurance</li><li>Construction</li><li>IT</li><li>Pharmaceuticals</li><li>Education</li><li>Charity</li><li>Airport</li><li>Rugby Club</li><li>Civil servant</li><li>British Rail</li><li></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>We began with discussions about our mission, vision and values. This is something I wanted to share with you because it’s actually at the very core of who Biomechanics Education is.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Our Mission&nbsp;At&nbsp;Biomechanics&nbsp;Education</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>Improving Movement Through Education</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Mission, or core purpose, remains unchanged no matter what we do but like the lettering inside a stick of rock, it’s at the very heart of all we are aiming to achieve throughout the entire company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s the legacy that we hope lives on beyond the founders.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What\'s Your Mission?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Consider WHY you do what you do, I mean really deep down, what drives you? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What is your mission? purpose? Reason for being?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you realise your true mission it should be at the core of all your decisions and can actually make choices simpler….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>….ask yourself ”<em>Does that take me closer to my mission? does that fit my purpose? Is there a better option that is more relevant to my mission?</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Our Vision&nbsp;At&nbsp;Biomechanics&nbsp;Education</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>To Become The Premium Provider Of Advanced PT Education While Bridging The Gap Between Exercise, Therapy &amp; Medicine.</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our vision is the aspiration of how we do this via our mid &amp; long term goals. It guides our decisions when choosing our team, our partners, events, our academy content and our bigger picture ideas.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Whats Your Vision?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>How will you show aspiration in your mid long term goals? What does your vision hold? What reputation would you like to be known for? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This can also enable you to plan and &nbsp;strategise about what direction to take with your education, business structure, commercial offering etc.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Our Core Values </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em>Integrity</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Communication</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Honesty</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Community</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Support</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Core Values are our philosophies, principles and the way we conduct ourselves as a business throughout the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Your Core Values?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>What is at the heart of your values in your business? Why do people pick you? Why do you want them to choose you? How would you like people to describe you?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WAIT!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>I know what you might be thinking!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“This is not me, I am just a sole trader, small business, only me...why would I need a mission, vision etc?”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well it goes deeper than simply a business decision my lovely Juicefans!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This can be give you the framework to finding your ELEMENT! Remember Sir Ken Robinson? &lt;&lt;LINK TO THAT BLOG&gt;&gt;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>The 5 WHYS</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Another technique you could try is The 5 WHYs. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Consider what you do.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Start with <em>WHY do I do what I do?</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>WHY is that?</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Continue on asking yourself why for 5 more times, and see where your answers take you.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What Else Did We Discuss On The Course?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>LOADS!! But I will have to drip feed it to you as I process it all!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It was part of a full PGcert at Chichester University so a huge amount of content on this ‘accelerator’ module. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However to add to this Juicemail theme I would like to add a…..<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Book Recommendation Alert!</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><em><a href=\"https://www.amazon.co.uk/Start-Why-Leaders-Inspire-Everyone/dp/0241958229/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1547496831&amp;sr=1-1&amp;keywords=start+with+why\">Start With Why</a></em><a href=\"https://www.amazon.co.uk/Start-Why-Leaders-Inspire-Everyone/dp/0241958229/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1547496831&amp;sr=1-1&amp;keywords=start+with+why\"> by Simon Sinek</a><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":10835,\"width\":295,\"height\":445} -->\n<figure class=\"wp-block-image is-resized\"><img src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Start-With-Why-Simon-Sinek-680x1024.jpg\" alt=\"\" class=\"wp-image-10835\" width=\"295\" height=\"445\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>I read this book some time ago and have also watched several of Sinek’s videos including a great TED talk - How Great Leaders Inspire Action<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:core-embed/youtube {\"url\":\"https://youtu.be/qp0HIF3SfI4\",\"type\":\"video\",\"providerNameSlug\":\"youtube\",\"className\":\"wp-embed-aspect-16-9 wp-has-aspect-ratio\"} -->\n<figure class=\"wp-block-embed-youtube wp-block-embed is-type-video is-provider-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\nhttps://youtu.be/qp0HIF3SfI4\n</div></figure>\n<!-- /wp:core-embed/youtube -->\n\n<!-- wp:paragraph -->\n<p>Sinek talks about the fact that most businesses sell the WHAT &amp; the HOW</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Few sell the WHY….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WHAT- is the service you provide</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>HOW - is the platform or medium with which you deliver it but..</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WHY - that’s your <em>purpose OR mission</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your purpose will sell what you do for you. People will feel a connection with you, be drawn to you and follow you. People buy based on emotion. They could buy it from any other trainer, coach or therapist. WHY should, or would, they buy from YOU?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WHY? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>If You feel Stuck, Fed Up Or Uninspired...</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...remember those words from Tony Robbins...<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“If you do what you’ve always done, you’ll get what you’ve always gotten”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>WHY not take some time to work through your WHY, your MISSION?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2 id=\"mce_7\"><strong>&gt;&gt; <a href=\"https://biomechanicseducation.clickfunnels.com/l4-lower-back-offer\">CLICK HERE TO REQUEST MORE INFORMATION &amp; TO CHAT WITH ONE OF THE TEAM ABOUT THE LEVEL 4 LOW BACK PAIN QUALIFICATION!&nbsp;&lt;&lt;</a></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":7922,\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image\"><a href=\"https://biomechanicseducation.clickfunnels.com/l4-lower-back-offer\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','Always, Always Start With Why','','inherit','closed','closed','','10832-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',10832,'https://biomechanicseducation.com/?p=38732',0,'revision','',0);
INSERT INTO `6m7_posts` VALUES (38733,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<!-- wp:paragraph -->\n<p>More and more I am hearing weird statements from people about their ‘diagnosis’. Now I am very aware that a diagnosis can be open to interpretation by the client, who may embellish what their practitioner has explained. However this is surely a very good reason for much consideration to be applied to the words we use when explaining to our clients what we have found, or we suspect, from our assessment of their bodies. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The last thing we want to hear from a client is….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>“Oh my god I have an ‘anterior tilt’ and guess what else they said I have…..lordosis!!”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These kind of statements are becoming rife in our industry and they don\'t sit well with the way I understand human movement. This is because I feel they imply that we should all have a certain level at our pelvis or the same degree of curvature in our spines.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No I\'m not for a minute suggesting that there are no ‘excessive’ degrees of tilt or curves in the spine the problem is how we measure these things. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So the aim of this blog is to challenge some of these statements.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Methods like postural assessment have been a means of benchmarking and understanding how somebody stands. This is fine as a simple start point if you like. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What Does Postural Assessment Actually Tell Us? </strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Or maybe more importantly why don’t we start with…..what it doesn’t tell us!?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It doesn\'t tell us WHY someone is in the position they’re in, nor WHY somebody might be in an anterior tilt or be over lordotic or hyperlordotic. So OK yes we need to take norms, BUT most importantly we need to take the individual in front of us.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>They May Misunderstand Us</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Also we must be VERY careful about the language we use to explain to a client, or each other, about the positions we are standing in or the degrees of spinal curvature we are presenting with.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For some people a slight anterior tilt maybe perfectly normal and some people may present with a ‘J’ shaped spine that is pretty flat but has a very slight curve just at the bottom and then there are others that have a very ‘S’ shaped spine. These are all normal presentations for those individuals.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>So What Exactly Am I Saying?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>I\'m saying an anterior tilt is not a diagnosis, hopefully everyone\'s pelvis will tilt anteriorly and posteriorly for that matter! An anterior tilt is not in itself a problem.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The question is how well does that individual move and function from the inside, rather than how good do they look on the outside.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Also are they symptomatic? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If they aren’t symptomatic it maybe prudent to NOT attempt to alter ‘posture’ but maintain a focus on nutritious quality movement, right?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Aesthetics or…..What?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Now of course how we look on the outside can be an indicator of how well we function on the inside. But how do we measure things or where can we find an evidence based approach rather than simply guessing?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We should always be mindful about what we are using as tools to dictate which exercises our clients need to prepare their bodies for movement.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How do YOU assess your clients?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What are your benchmarks? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Are they evidence based?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How objective are they?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Are there some evidence based tests out there that can help us understand why our client is presenting with poor movement capacity and/or symptoms?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Subjective or Objective?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Postural assessment alone is still pretty subjective. For example if you imagine one shoulder sitting higher than the other the questions would be <em>“is that the upper trap or median nerve elevating the shoulder?</em>” OR <em>“Could it be the QL on the opposite side is tilting the body?</em>” OR “<em>Is there a functional asymmetry at the pelvis creating a tilt there?</em>”<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each of these can result in the same visual or postural presentation.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Those tilts or curvatures of the spine may or may not help us understand how to improve their movement or even symptoms.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So having a benchmark is good and a visual assessment our clients is kind of all we can do. However it’s more about their function and movement than the aesthetics or alignments at bony prominences surely!?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We MUST be careful about what we\'re saying to our clients and be mindful of the language we use because what we don\'t want is for them to be leaving our practice thinking that an anterior tilt is a problem.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The assumptions that may go along with that ‘diagnosis’ in terms of what they do about could compound the issue.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So What?</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The solution is to make sure we are considering precisely which language to use with each client. It may even differ from one to another.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Taking the critical thinking approach….</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>How?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...do I explain this clearly?<br>...do I make sure they understand what this means?<br>...do I clarify what I am telling them?<br>...do I ensure they don’t misinterpret what I am saying?<br>...will this affect my client?<br>...will they interpret this?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>What?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...do I need to say?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...should I not say?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...do they need to know to benefit?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is most/least important?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is another perspective?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is the best way to explain this?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...will they do with this information?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>…do they need to know this?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...do I need them to hear that?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...are they here?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is this relevant? Or not?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>When?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...can I tell them that?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...should I refer them?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...should I use a resource to explain things instead?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is this acceptable/unacceptable?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Where?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is best to send them?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...can we get more information?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is there a need to say that?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...will that take us?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Who?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...is best placed to tell them this?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...does this benefit?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...makes that decision?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...who is affected?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When you take your time and really consider what you are saying and how you are saying it and to whom, it should enable you to provide enough of the relevant information they need to improve.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Telling a client they have an anterior tilt WITHOUT explaining it can lead to misinterpretation and the belief that this is a bad thing, when in fact it could be perfectly normal for them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Reassurance of the parts of their bodies that move well is just as important as giving a ‘diagnosis’ BUT let’s stay technically accurate please!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So remember, an anterior tilt is a movement at the pelvis NOT a medical condition!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2 id=\"mce_7\"><strong>&gt;&gt; <a href=\"https://biomechanicseducation.clickfunnels.com/l4-lower-back-offer\">CLICK HERE TO REQUEST MORE INFORMATION &amp; TO CHAT WITH ONE OF THE TEAM ABOUT THE LEVEL 4 LOW BACK PAIN QUALIFICATION!&nbsp;&lt;&lt;</a></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":7922,\"linkDestination\":\"custom\"} -->\n<figure class=\"wp-block-image\"><a href=\"https://biomechanicseducation.clickfunnels.com/l4-lower-back-offer\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure>\n<!-- /wp:image -->','AN ‘ANTERIOR TILT’ Of The Pelvis IS NOT A DIAGNOSIS!','','inherit','closed','closed','','10762-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',10762,'https://biomechanicseducation.com/?p=38733',0,'revision','',0),(38734,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<!-- wp:paragraph -->\n<p>Well if good news comes in one huge go this is proof of it! First we launch the new Biomechanics Education Academy, our centre of excellence if you will, our new home. If you haven’t seen the pictures.. Where have you been?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>And now, finally, after a lot of hard work behind the scenes, we have our brand new Level 4 qualification. How exciting is that!?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We are going from strength to strength and each new piece of news we keep delivering is evidence of that! And so I wanted to take a moment to tell you about this new qualification we can offer and how it\'s going to help you as a Biomechanics Coach, personal trainer, pilates instructor, or sports therapist.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What Does This Mean?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well anyone who joins our academy for the full diploma gains a dual certificate!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You get your Biomechanics Coach Diploma as normal, which is already awesome, but now you will ALSO receive your Level 4 Lower Back Pain Specialist qualification. WHHHAAAAATTTT! </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>How cool is that!?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What Does A Level 4 Qualification Mean To You As A Trainer/Coach?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It means a few things…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol>\n<li>It’s yet another way to stand out from the crowd</li>\n<li>It makes you a specialist - and specialists get paid more than generalists.</li>\n<li>Your confidence will increase in terms of the issues you face with your clients.</li>\n<li>Job opportunities should increase due to demonstrating a commitment to your education.</li>\n<li>Increased language skills in terms of communication with other professionals, physios, consultants etc</li>\n<li>Improved service offering in terms of the diversity of you tool box</li>\n<li>An understanding of what pain is and isn’t.</li>\n<li>How to manage clients that are in pain.  </li>\n<li>An understanding of periodisation principles in terms of preparation and (performance) conditioning.</li>\n</ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What Do We Cover In The Level 4 Low Back Pain Qualification?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The aim of this qualification is to provide the learner with the appropriate knowledge and skills to design, deliver, monitor and evaluate structured, individualised physical activity programmes for adults with low back pain, in accordance with current evidence-based guidelines.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Learners will cover: </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Knowledge and understanding relating to the Level 4 Low Back Pain Qualification: </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul>\n<li>epidemiology of low back pain</li>\n<li>risks and causative factors involved in the development of low back pain</li>\n<li>national guidelines for the treatment and management of low back pain</li>\n<li>contraindications and psychosocial considerations when planning physical activities for the client with low back pain (risk stratification)</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Skills relating to the qualification: </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul>\n<li>subjective and objective methods to collect sufficient  information to plan safe and effective physical activity programmes for individuals with low back pain</li>\n<li>how to select safe and effective physical activities which are specific to the client’s health status, risk stratification, needs and abilities</li>\n<li>the effective use of layering / layered cueing within progressive physical activity programmes for individuals with low back pain</li>\n<li>a range of validated methods used to monitor review and adapt  physical activity programmes for individuals with low back pain</li>\n<li>advice covering lifestyle, homecare, exercise, which is suitable for the individual with low back pain</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Learner prerequisites</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Registration status of full Level 3 Exercise Referral Instructor on the Register of Exercise Professionals (REPs), or either of:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>a)    Registration at Level 4 prior to September 2011 plus achievement of a Level 3 fitness qualification</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>b)    Achievement of a Level 4 prior to September 2011 plus achievement of a Level 3 fitness qualification</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>150 hours of relevant professional practice at Level 3 in designing, delivering, monitoring, adapting and tailoring exercise programmes for individuals gained within the previous two years and at least six months experience since qualification (to be evidenced in a CV and reference letter).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Note: Learners are required to complete the online Professional Practice unit via the members area of the REPs website (free to complete) where the learner holds an NVQ exercise referral qualification on the QCF. This unit is embedded in the QCF exercise referral qualifications.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>short/long answer paper</li>\n<li>worksheets</li>\n<li>case study (programme design and review)</li>\n<li>observed instruction session</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>SPECIAL OFFER £2397inc - We Are Giving The Level 4 Low Back Pain Qualification Away</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Perhaps I am still feeling a bit crazy and excited, but I wanted to open up a special offer to YOU.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So if you have been thinking about joining our academy, or if you were thinking about doing a Level 4 qualification this is for YOU.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If you book onto our Biomechanics Coach Diploma this side of Christmas, I will give you the Level 4 Lower Back Pain qualification as a BONUS - YES completely free of charge!!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>(RRP £500)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>*But please note to gain the Level 4 is a *GP Referral Qualification that you should gain in advance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://biomechanicseducation.clickfunnels.com/l4-lower-back-offer\"><strong><em>Want to chat with one of the team about our new Level 4 Lower Back Pain Qualification? Then just click here and fill in your details!</em></strong></a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Why Attend?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Something we feel very passionately about it face to face education and that includes passing on information that is easy to apply into a training session with your clients straight after the workshops. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Yes we will have in depth discussions but even at this L4 it has to be simple to apply into your sessions, right? Otherwise what’s the point in gaining knowledge!?!?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What we will do across the 5, 2 day face to face workshops is give you all of the practical hands on skills you need to discover where your clients ‘issues’ are coming from and what to do about it.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have always included far more than the Level 4 Low Back Pain qualifications content but now you actually get to call yourself a low back pain specialist, an elite PT, a Biomechanics Coach or even a <strong>Level 4 Low Back Pain Specialist Biomechanics Coach</strong>!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Along with this you will also get access to the most amazing community of practitioners from ALL backgrounds to network, troubleshoot and share ideas, thoughts or dilemmas either via online forums and/or at our regular face to face IBA workshops.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We don’t simply educate, we pride ourselves on the personal touch and the level of support available to all of our learners from not only us but also the IBA and the community.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now there is still time for you to grab not only the 2018 prices for our 2019 workshops but also:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You will get the Biomechanics Coach starter kit goodie bag worth £80!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul>\n<li>Foam Roller</li>\n<li>Lacrosse Ball</li>\n<li>Resistance Band</li>\n<li>Anatomy Book</li>\n<li>T Shirt</li>\n<li>iMoveFreely Drawstring Bag</li>\n</ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2><strong>&gt;&gt; <a href=\"https://biomechanicseducation.clickfunnels.com/l4-lower-back-offer\">CLICK HERE TO REQUEST MORE INFORMATION &amp; TO CHAT WITH ONE OF THE TEAM ABOUT THE LEVEL 4 LOW BACK PAIN QUALIFICATION! &lt;&lt;</a></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->','VTCT Level 4 Certificate in Exercise for Management of Low Back Pain with Biomechanics Coaching Is Here!','','inherit','closed','closed','','10370-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',10370,'https://biomechanicseducation.com/?p=38734',0,'revision','',0),(38735,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<!-- wp:paragraph -->\n<p>Growing up I was taught to be law fearing and to do right by others, to stay safe and not to take risks.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However I was also taught to live life to the fullest, recognise life is short and that stocks and shares can be fruitful.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What on earth am I talking about this week?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>Taking Risks</strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>What is a risk? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>a situation involving exposure to danger.</li><li><em><strong>possibility, chance, probability, likelihood, threat, fear, prospect</strong></em></li><li>expose (someone or something valued) to danger, harm, or loss.</li><li>endanger, put at risk, take a chance with, put in jeopardy, hazard, <em><strong>gamble, bet, wager, chance, venture</strong></em></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The risk I am talking about is not the kind of risk that gets you arrested or harmed. See the definitions of risk taken from the internet defining the meaning of risk and the bold italic words could mean something quite different to the ones in normal text.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So What Do I Mean Exactly?</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Think about a time when you took a risk…<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...often we end up thinking of our childhood, when we had no fear and we maybe sped downhill on our trike, with the wind in our faces and squealing away blissfully unaware of the hazardous traffic flying past the bottom of the hill. How did that feel?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now try to remember the feeling of a risk you took that also had the feeling of fear attached to it…</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>...this is more likely to be when you were older and wiser like a roller coaster ride. When you knew that getting on that ride would deliberately increase fear in you due to the movements, the heights and the speed. How did that feel? <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Taking Risks Can Feel Scary AND Fantastically Stimulating</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>With the arrival of 2019 we generally start to (or at least hopefully) ask ourselves questions about where our life is going having maybe reflected upon 2018, right!?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is a healthy process of understanding our goals, how far away we are from them, how much closer we are to them than we were and maybe we can then analyse the gap between here and now and that end goal.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s like what we do with our clients programming. They seek our help in achieving a goal, we ask questions and assess their body, mental state, general lifestyle etc and calculate those SMART goals to help them understand the gap. We do a gap analysis.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>So What?</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Well this can also be applied to our life goals, desires and those big dreams. Without taking risks I know I certainly would not be where I am right now. Yet we get so comfortable and lost in our day to day, million miles an hour lifestyles that we can forget about throwing off our clothes and dancing in the rain like no one is watching (hopefully they weren\'t anyway!!)<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Why? </strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Without risks are we really being true to ourselves?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ok I guess some people are happy to ‘go with the flow’ but I KNOW many of us have dreams of a different life, one with more TIME, less rushing around, less stress, maybe less work, more freedom, better health and certainly more sleep - am I right?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>So How Does All Of This Relate To Taking Risks?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Well look risks don’t always have to be HIGH risk kinda risks. But the higher the risk usually means the bigger the return (particularly if you have ever studied the stocks and shares?)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let me try to give you some examples of risks I have taken that I didn’t KNOW would work out, some that didn’t work out and what they meant to me.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Bike Ride Disaster</strong> - yes that was me aged 11yrs flying down the hill on my bike. I flew splayed across the centre of the road with my mates and siblings shouting and running towards me. Much worse than the near death and bloody cuts over my body...I had torn my best khaki dungarees! To this day I adore feeling the wind in my face.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Horse Riding Disaster</strong> - aged 14yrs my first experience of riding a horse resulted my being bucked off the back and feeling the draft of 2 hooves (almost in slow motion as I recall) skim upwards inches from my face. I did NOT get back on and have since never felt the urge to either.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Travelling &amp; Working Abroad</strong> - aged 21yrs I had no idea what I wanted to do with my life and had felt for much of my youth pretty unintelligent, useless and uninspired. I was in fact going down a pretty </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>damaging route that involved me seeking fun in ways that my parents would not have been proud.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then in 1991 I got a phone call that required me responding with a decision that either I wanted to take a big risk or simply stay in this drudgery of low self esteem and confidence. With my parents encouragement I took the leap and went away for 3 months to work a cabaret dancer in Greece. This risk was profound in changing my entire outlook, perception of what I was capable of and self esteem. So much so I came home some 6 years later having travelled to live and work in Tokyo and Hong Kong too.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Buying A House</strong> - returning from my travels I had saved enough for a deposit for a house (back then £8k was enough and my house was only £50k!!). Once again this was a huge risk and commitment for me in terms of settling down with a huge investment and promise to me mortgage lender that I would pay them each month. Doing this alone felt far more risky than I imagined it would be with a partner also contributing 50% of the promise and funds. &nbsp;<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Joining Martin </strong>- in 2006 one my gyms members approached me to help him develop some education from the 25yrs of research he had done. I took a risk and said “yeah, sure”...totally unaware at the time how much this gamble would pay off. Honestly I had no idea what he was talking about in the beginning, I just turned up, took part in the bits I understood and found myself investing a lot of time into learning more to uphold this man\'s perception of what he seemed to think I was capable of...which was waaaaaaaay beyond what I believed I was capable of.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Choosing To Close A Company</strong> - this was probably the single hardest risk decision I have had to make in my entire life. It tested my character and belief in doing the right thing. The decision to take this risk of closing a company we had committed blood, sweat and tears to for 7 years meant I was choosing to potentially lose everything I owned. The home I had taken a risk to buy and the job I had joined Martin to do that I loved. However the risk meant I maintained my integrity for any future relations I had in the industry.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This was also one of the best decisions I have ever made for all it taught me. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Choosing To Set Up Biomechanics Education</strong> - this decision was also a huge risk. It took me several weeks to make but in my gut I knew I didn’t want to do anything else AND I also knew I had learnt some big valuable lessons from the previous business closure. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You never fail unless you give up.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Investing Into The Biomechanics Education Academy</strong> - Last month this opportunity appeared and once I had seen the venue, I knew there was no option but to take the risk.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For the life of my work in intrinsic biomechanics I have dreamed of a venue. Over the last 9 years I have probably looked at around 12 different locations, none of which were appropriate for one reason or another. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then a brand new gym opened in my village literally 5 minutes walk from my house. A gym exactly like one I would choose to train in. The owner, Matt, is also a super nice guy who took a risk in setting up a gym in a small village with 2 other gyms. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>He invited me to join his vision and so the Biomechanics Education Academy was born!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>What’s The Point?</strong><br></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Behind the risk taking is passion, dreams and drive. Yes there is fear and anxiety at times to but this risk taking always brings me back to what is my life about?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The fear I feel when things don’t go to plan or I take another risk drives me to improve all I do. I also remind myself of what my mum used to say to the painfully shy, low self esteemed little girl I used to be, as I was about to go onto the dance floor for a dancing competition….<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>”<em>What’s the worst that can happen..? Just smile and enjoy yourself”</em><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This has stayed with me and comes to mind each time I chose to gamble. I have got comfortable with losing everything because when I was living off cheap food and no luxuries to keep my house, I realised my quality of life did not change. I actually became extremely productive, inventive and imaginative.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The worst times gave me access to the best times and some self exploration of my capacity for enduring certain eventualities. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So this xmas why not consider taking some risks in 2019?<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>….I certainly am!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What You Can Do To Set Yourself Up For Success In 2019?</strong><br></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>TASK 1:</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ok grab a pen and paper, you could open a word document or open your phone to ‘notes’ but I am a big believer in the act of physically writing this kind of thing down. In fact grab your moleskine notebook!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>First write down what you feel you did really well in 2018, the successes you experienced and where you felt you achieved things planned or unplanned. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It’s important we acknowledge success and I learnt this when I was setting up Biomechanics Education in 2014 because I wrote down my goals in my moleskine goas book and added to it for months. Then work/life took over and my moleskine notebook was left aside. <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>When I came across it in 2016 having felt I needed to make some goals again, I read back and was surprised to see I had in fact achieved everything I had written down. I would not have been able to acknowledge that had I not written the goals down so precisely. It gave me a HUGE sense of success at a time when my confidence had dropped again and I felt things weren’t going as I had hoped. This massively boosted my drive and confidence to do the same again.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Had I not written those precise goals down I wouldn’t have had the opportunity to enjoy the successes that had occured! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>TASK 2:</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Now write down short, medium and long term goals with dates, deadlines and absolute clarity.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This doesn’t need to only relate to work, it could be taking risks like last minute travel, turning up on a long lost persons door step, investing in something, approaching someone or a company to make an offer or ask &nbsp;for their support, changing from the office desk job to your dream job of being a self employed manual therapist. You might even choose to buy some stocks and shares! <br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>TASK 3:</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Convert each of the goals into a list of jobs with deadlines that would enable you to take the leap.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>TASK 4:</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Add these deadlines to your calendar and then be committed!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>TASK 5:</strong><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>DO IT!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>MONITOR IT!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>HOLD YOURSELF ACCOUNTABLE!<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Happy Holidays Juicefans!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator {\"className\":\"is-style-wide\"} -->\n<hr class=\"wp-block-separator is-style-wide\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noreferrer noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noreferrer noopener\"><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" class=\"wp-image-7922\"/></a></figure></div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->','When You Take Risks & Push Yourself To Grow','','inherit','closed','closed','','10442-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',10442,'https://biomechanicseducation.com/?p=38735',0,'revision','',0),(38736,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">Having booked my place on this course some time ago I was certainly ready and looking forward to being a learner again.</span>\n\n<span style=\"font-weight: 400;\">Brendan Chaplin’s L4 S&amp;C course had been on my radar for some time since he had done the Biomechanics Coach Diploma several years ago.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The portal access prior to the face to face weekend gave video footage of previous face to face days which would be helpful for people wanting to know what to expect. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Mostly I was looking forward to being immersed in a subject I love and I arrived in Leeds far too early 7:20am, the gym didn’t even open until 8am!!</span>\n\n<span style=\"font-weight: 400;\">So McD’s hot chocolate it was then …</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Clearly I wasn’t the only keeno as when I walked back to Firehouse Fitness there was another eager character waiting for the place to open. Martin and I introduced ourselves as we waited.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firehouse Fitness is a great gym and clearly very popular but they still accommodated us nicely. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As we gathered in reception it was really unexpected but made my day to find that our tutor was Stuart Aimer, whom I had previously met at the Elite Performance Institute S&amp;C Course at Brunel University some time ago! He facilitated the 9 of us with an introduction and then we got practical pretty much straight away - brilliant- just what I like!</span>\n\n&nbsp;\n<h2>Day 1 Of The Strength &amp; Conditioning Level 4 Course - Movement Assessments, Warm Up &amp; The Snatch</h2>\n<span style=\"font-weight: 400;\">Day 1 with my new weekend buddies was assessments and the R.A.M.P warm up.</span>\n\n<span style=\"font-weight: 400;\">This was where I imagined the intrinsic biomechanics tests would fit perfectly since their roots are in elite sport from 30yrs ago. So I imagined programming 4 sign, spine mobility and nerve mobilisations in here for my case study when I get started.</span>\n\n&nbsp;\n\nStuart took us through ideas for preparation, into drills and discussions around the purpose of each phase to clarify understanding.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone was on the same level and Stuart managed the group really well without anyone being made to feel uncomfortable and the perfect level of humour and fun was felt all weekend.</span>\n\n&nbsp;\n\nIt was fantastic to be a learner again for many reasons but importantly as a teacher it gives me the opportunity to be reminded of what my own learners may experience during my workshops.\n\n&nbsp;\n\nThe discussions that twist and turn as each of us questioned Stuart to better understand the concepts. The frustration and confusion until the penny drops and the excitement as we realised the reason we are each here and how we will apply these skills into our own businesses.\n\n&nbsp;\n\nThe discomfort of having our imagination stretched is something we should all learn to embrace and the teacher should support us through this which is exactly what Stuart did for us.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The afternoon was snatch down practice and most were relatively new to this so I worked with Emma and Emily on the women’s bar and we coached each other after Stuarts demos of each phase.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone had a go and there was a huge variety of movement ability but it didn’t matter as no pressure was put on the group.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By the end of the day we were all ready for our beds...well I know I was anyway!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However I was super excited to start reading my L4 S&amp;C handbook as I am keen to learn more about periodisation specifically.</span>\n\n<span style=\"font-weight: 400;\">Wow I am really impressed at the level and the amount of content within the learner manual. Much more than I had expected and a lot of detail about how to structure a periodised S&amp;C training plan. </span>\n\n&nbsp;\n<h2>Day 2 Of The Strength &amp; Conditioning Level 4 Course - Speed &amp; Agility And The Clean &amp; Jerk</h2>\n<span style=\"font-weight: 400;\">Day 2 we worked on speed and agility drills and how to build up gradually ready for team sports and/or speed work.</span>\n\n<span style=\"font-weight: 400;\">We each coached each other and after lunch, we got into groups for the clean and jerk session. Again top down.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The whole environment was friendly and accommodating and Stuart managed the group really well with a calm and approachable teaching manner. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Driving home I felt excited about the application of the periodisation aspect for my case study. In fact, I have 3 even though I only need to do one over 8 weeks. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A powerlifter</span>\n\n<span style=\"font-weight: 400;\">A rugby player </span>\n\n<span style=\"font-weight: 400;\">An olympic lifter</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I have arranged the first assessment and am looking forward to logging into the online portal for the extra tuition material SCE provides. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, my head space at the moment only has room for the brand new Biomechanics Education Academy!!</span>\n\n<span style=\"font-weight: 400;\">Photos and video coming next time!!</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','My Experience Of Being A Level 4 Strength & Conditioning Learner - Day 1 & 2','','inherit','closed','closed','','10090-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',10090,'https://biomechanicseducation.com/?p=38736',0,'revision','',0),(38737,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">Wow I cannot tell you how I feel right now - excited, anxious, proud, crazy, positive, daunted all in one go! </span>\n\n&nbsp;\n<h2 style=\"text-align: center;\"><strong>WE ARE CELEBRATING!</strong></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you have waited 13 years for something and then there it is and you feel the stars have aligned, that fate has occurred, that karma is real and that we should ALWAYS dare to dream.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Coincidentally reading a fabulous book \'Ghost Boy\' by Martin Pistorious - who </span><i><span style=\"font-weight: 400;\">dared to dream</span></i><span style=\"font-weight: 400;\"> he would live to love even after suffering an illness that took away all ability to communicate. He suffered horrific abuse and judgment every day inside a shell of a body that, while fully aware, wouldn\'t let him scream, shout or communicate what was going on inside his intelligent mind. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">His lesson ‘dare to dream’ really inspired me all over again, even after I have experienced &lt;dream = reality&gt; before.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a little girl I had a secret dream of owning a business, any business, anywhere - never told anyone and often didn\'t even think about it because - well I just wasn\'t bright enough right? No academic skill and clearly you need some brains to set up a company right? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, my karma aligned OR SOMETHING because over the last 13 years been the director of 5 companies and now running a successful international education company. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The final part of the BIG dream was realised last week - when I signed contracts for the </span><b><i>Biomechanics Education Academy</i></b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my head it’s going something like this:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\"> How the hell did that happen? Well, I must be super lucky, I guess, shit!!! Now what?!!! OMG I CANNOT WAIT to get it decorated. There wasn\'t a budget for this! YIPPPPEEEEEEEE!!!”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My parents have always encouraged me to follow dreams and that life is too short to let it simply trundle along COMFORTABLY. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now, this is a keyword here - <strong>COMFORTABLE</strong> - because LIVING doesn\'t happen when you’re feeling comfortable does it? Really living and excitement and fun and joy mostly happen when you take risks. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Mel Robbins would call it THE 5 SECOND RULE (Another book bomb btw)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Only take 5 seconds to make that important decision, go with your gut, take a leap and feel that fear! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Tony Robbins would call it ‘</span><i><span style=\"font-weight: 400;\">breaking the pattern</span></i><span style=\"font-weight: 400;\">’. We can get so comfortable in life because it’s EASIER and yet the times when we take a risk, dare to dream - THAT IS WHEN THE MAGIC HAPPENS!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Someone said “</span><i><span style=\"font-weight: 400;\">you only fail when you give up” </span></i><span style=\"font-weight: 400;\">and someone else said</span><i><span style=\"font-weight: 400;\"> “failing is only failing if you don’t learn the lesson” </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I never thought I was brave and yet somewhere along the way I developed the f*** it attitude - which was probably after almost losing literally everything I had worked for over 20 years.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway I am super excited to announce that we now have a permanent HQ in Keyworth, Nottingham </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">AND </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Not only that it is in proud partnership with Aspire4Fitness Gym </span><a href=\"https://aspire4fitness.co.uk\"><span style=\"font-weight: 400;\">https://aspire4fitness.co.uk</span></a><span style=\"font-weight: 400;\"> without whom this would not be happening. Matt and his team have such a great community/team attitude already even after just opening Nov 1st 2018 and I feel honoured to have been invited to work alongside these superb professionals. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So we are still preparing the </span><b><i>Biomechanics Education Academy</i></b>\n\n<span style=\"font-weight: 400;\">Space BUT in the meantime this week\'s message is…..</span>\n\n&nbsp;\n\n<strong>Take risks </strong>\n\n<strong>Dare to dream</strong>\n\n<strong>Have faith in karma </strong>\n\n<strong>Treat every single person you meet like they could change your life forever  </strong>\n\n<strong>AND </strong>\n\n<strong>Do this knowing you could also change theirs </strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WATCH THIS SPACE </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I want to share this journey with you, so make sure you are following us on <a href=\"https://www.facebook.com/biomechanicseducation\">Facebook</a> and <a href=\"https://www.instagram.com/biomechanics_education/\">Instagram</a> and I\'ll continue to share progress reports of how the space is looking.</span>\n\nhttps://www.facebook.com/biomechanicseducation/videos/657974667938012/\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The celebration continues - remember ….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here at Biomechanics Education, we are SO EXCITED  to be celebrating our <strong>5th Anniversary! </strong></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a way of saying thank you for your interest in our passion to educate the nation in pain free movement we have a special offer that we have never done before.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You are all invited to grab your chance to celebrate with us in 2019! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So any </span><b><i>full Diploma in Biomechanics Coaching</i></b><span style=\"font-weight: 400;\"> place secured </span><b><i>before November 30th </i></b><span style=\"font-weight: 400;\">will get not 1 free gift 1, not 2 free gifts but </span><b><i>5 FREE gifts</i></b><span style=\"font-weight: 400;\"> in celebration of our 5yr milestone. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Who’s in? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s super simple call </span>\n\n<b><i>Rachel </i></b><b><i>07976933113</i></b>\n\n<span style=\"font-weight: 400;\">Or </span>\n\n<b><i>Robyn </i></b><b><i>07507 625138</i></b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">State </span><b><i>\"I Want To Celebrate With You!\"</i></b><span style=\"font-weight: 400;\"> &amp; once your place has been secured we will reserve your 5 free gifts for you to collect upon you arrival to the course! </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">SSSHHHHHHH</span></i><span style=\"font-weight: 400;\"> Bonus secret offer - during the call if you also state “</span><b><i>THE REASON I WANT TO BE A BIOMECHANICS COACH IS.....”</i></b><span style=\"font-weight: 400;\"> then tell us your vision you will also get an extra bonus secret offer!  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This CRAZY HAPPY offer starts right NOW, so pick up your phone and call us now!</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">P.S Hurry we may run out, the phone already ringing!!!</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move freely,</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel  </span>\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>\n&nbsp;\n\n&nbsp;','Dare To Dream - The Next Steps In The Biomechanics Education Story - The Academy','','inherit','closed','closed','','10018-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',10018,'https://biomechanicseducation.com/?p=38737',0,'revision','',0),(38738,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">If you follow me on social media you will likely know I love movement and a big part of that is strength and conditioning (you may also know I love sushi).</span>\n\n<span style=\"font-weight: 400;\">Having done the British WeightLifting Coach course and 3 or 4 other olympic lifting, kettlebell, strength and conditioning courses I feel there is always something to learn. This maybe new content, news ideas of application, or even just hearing a different professionals opinion. </span>\n\n<span style=\"font-weight: 400;\">So this month I have enrolled onto Brendan Chaplins L4 S&amp;C Course. Brendan attended our diploma many years ago and we have stayed in touch over the years as both of our businesses have evolved and grown. We have met up occasionally just to catch up and Brendan was a guest presenter at our 2016 annual event at Loughborough University. </span>\n\n<span style=\"font-weight: 400;\">Here I find myself, having not done anything more than CPD for a year or so, feeling super excited about being a student again. So as I swot up on the SCE Members Area online ready for the face to face workshop in Leeds Nov 17th/18th I wanted to share my experience with his company and also share with you, why combining strength and conditioning with biomechanics coaching is a recipe for success!</span>\n\n&nbsp;\n<h3><strong>Biomechanics Coaching + Strength &amp; Conditioning </strong></h3>\n<strong><i>\"The Biomechanics Coaching model does not work on its own which is why there is a pre-requisite to attending the Diploma. Biomechanics Coaching is an evidence based and systemised analysis and monitoring skill that also requires an understanding of strength and conditioning. Once the iMoveFreely techniques have been introduced  its vital to implement the strength work that is required to change the test results long term. Ultimately the 2 go hand in hand when it comes to both preparation for movement and optimising performance.</i></strong><strong><i>\"</i></strong>\n\n<strong><i>\"It is my belief that the Strength and Conditioning skills takes Biomechanics Coaching to a whole new level. This is because \'performance\' requires it. What I mean by this is that the Biomechanics Coaching model is based on 3 phases of training and exercise...\"</i></strong>\n\n<strong><em>Capacity &amp; Preparation </em></strong>\n\n<strong><em>Stability &amp; Control</em></strong>\n\n<strong><em>Function &amp; Performance</em></strong>\n\n<strong><i>\"The Strength and conditioning model adds huge value to the \'performance\' part. However it</i></strong><strong><i> might be considered purely an elite athletes programming however we, as Biomechanics Coaches, recognise the body will always require this pyramid of planning even to \'perform\' basic tasks. Lifestyle is massive affecting natural human movement, so as coaches and trainers, we are now required to understand in more depth what periodisation means from offering our clients basic intrinsic capacity first prior to any kind of \'functional\' training.\"</i></strong>\n\n<strong><i>\"So what?....well this model of Biomechanics Coaching + Strength &amp; Conditioning is not just for athletes but also for our every day client and will, as evidence has shown, reduce risk and optimise performance from elite sport to average gym goers and even the older populations \'performance\' of their daily tasks including using their walking stick and carrying shopping bags.\"</i></strong>\n\n<i>Rachel France Biomechanics Coach, British Weight Lifting Coach </i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I know most of you will have heard of Strength and Conditioning Education but for those who haven’t here is some background…</span>\n\n<i><span style=\"font-weight: 400;\">Strength and Conditioning Education have been developing and delivering high quality education for fitness professionals for many years; Founded in 2011, the company specialises in performance-based education that allows trainers to develop their skills to get better results with their clients and work with athletes from all sports.</span></i>\n\n<i><span style=\"font-weight: 400;\">Using a mixture of face to face and online learning SCE have courses to support personal trainers at any stage of their career.  Whether you are completely new to Strength and Conditioning or already have some knowledge they provide a variety of courses specifically in the world of Strength and Conditioning. </span></i>\n\n<i><span style=\"font-weight: 400;\">SCE are the UK’s primary deliverer of the Level 4 Strength and Conditioning course aimed at Personal Trainers looking to take the next steps into performance coaching and training.  In the past year over 1000 Personal Trainers have enrolled onto the Level 4 Award. With flexible payment options and many centres around the UK, it has never been easier to get started in Strength and Conditioning</span></i>\n\n<i><span style=\"font-weight: 400;\">They are also the only provider in the UK that offer insurance for people delivering S&amp;C coaching to people under the age of 18 through their Youth Strength and Conditioning Association Pathway.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if you fancy joining me this month on a journey towards becoming a SCE L4 S&amp;C Coach why not check them out, <a href=\"https://strengthandconditioningeducation.com\">just click here.</a></span>\n\n<img class=\"aligncenter wp-image-9948\" src=\"https://biomechanicseducation.com/wp-content/uploads/2018/11/Strength-Conditioning-Education-Biomechanics-Coaching-1-300x78.png\" alt=\"\" width=\"419\" height=\"109\" />\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>\n&nbsp;','Biomechanics Coaching & Strength & Conditioning - The Ultimate Combination','','inherit','closed','closed','','9947-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',9947,'https://biomechanicseducation.com/?p=38738',0,'revision','',0),(38739,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">So many people with the same, or similar, problems create an innate problem. You see we can all have similar or even the same symptoms, or pain, and yet the intervention required can be completely different from person to person. Don’t get me wrong, it can also be that the same remedy works for lots of different people. The problem for us as professionals, coaches, trainers, therapists working with the human body, is how on earth do we work out the correct solution?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The thing I personally used to find the scariest about working with the human body is in fact now the thing I love the most. You see I used to feel completely inadequate in my level of anatomy knowledge and at times I still do! There is a hell of a lot to learn, right!?!?</span>\n\n<span style=\"font-weight: 400;\">However what I have discovered by working alongside some of the most amazing professionals in the industry was that I simply needed to learn the relevant stuff. The appropriate knowledge that was relevant to enable me to help my clients move better but to also have a degree of confidence in doing that. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They taught me that I don\'t need to know everything, in fact that would be pretty darn incredible and possibly a bit arrogant should we ever get to the point where we feel we know everything about the human body!! Don’t you agree!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I discovered this really great question that I could ask myself...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">SO WHAT?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This wonderful question allowed me to accept that I should know what I need to know BUT also that I had permission to not feel that I had to know everything because I could simply refer, or get a second opinion, from someone else!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The solution for me was to gain the skills I wanted, enjoyed and could utilise in my business and then confidently refer for the stuff I wasn’t so keen on doing OR felt were beyond my remit. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So back to the pain in the bum point!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pain is a controversial subject right now and the industry is rife with education, seminars and courses that discuss pain.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The problem with pain is it is subjective, very individual and your pain (or your client\'s pain) may be similar to someone elses and yet have a very different cause.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First and foremost we must appreciate that pain is a good thing! It means your body is communicating with you to you that something needs to change.</span>\n\n&nbsp;\n<h3>What\'s The Cause Of Your Clients Pain?</h3>\n<span style=\"font-weight: 400;\">However, some causes of pain are </span><i><span style=\"font-weight: 400;\">clinical and require clinical help</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some causes of pain are </span><i><span style=\"font-weight: 400;\">compensations that simply require exercises</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Some may require BOTH</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we MUST understand is which is our remit and which is not and this is a point I make for both the clinicians and the exercise professionals. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because a clinician may apparently ‘fail’ when ‘treating’ a pain that is caused by a compensation coming from somewhere else. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">An exercise professional could be practising outside of their insurance remit if they attempted to use an exercise on an area of the body that is painful because of an underlying clinical issue they are unable to test for. Also running a risk of harming their client.</span>\n\n&nbsp;\n\n<b>So How Do We Know Which Is Which? </b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, this is a tough one because there is a good chance at first glance that we won’t know which it is since pain is simply telling us to change something but not why nor what.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So the ideal would be to have 2 things in place:</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The ability to perform physical tests to identify how well their body works, or not</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">An awesome interdisciplinary team around you who, with the clients permission, discuss a plan of action together based upon a whole series of tests that can rule things out</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">These 2 things alone create a huge increase in confidence for everyone since no one is alone in the process of decision making. It means we all get to do what we are great at and enjoy the most.</span>\n\n<span style=\"font-weight: 400;\">These 2 point also enable ‘the team’ to collectively perform both clinical tests and function tests to understand the whole picture….because that pain in your bum could have nothing to do with the area that feels painful other than that is where it is being represented. We also need to understand risk.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">That pain in the bum could be caused by any number of biomechanical compensations coming from any combination of body parts or subsystems (myofascial, skeletal, neural). It could also require BOTH clinical treatment AND exercises for various parts of the body. </span>\n\n&nbsp;\n\n<b>How We Can Help</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we do with the academy is bring ALL of these professionals together in our classroom to understand better how we can all work together for the best duty of care.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We will teach you what YOU NEED TO KNOW and then show you exactly WHEN TO REFER and WHEN TO CONTINUE based on a simple measuring system. This system can be used by both clinicians AND exercise professionals AND manual therapists to UNITE US in improving the movement of the nation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are extremely passionate about this concept that has been missing and we are showing how it can work wonderfully with our community of Biomechanics Coaches who range from backgrounds in :</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Personal Training</span>\n\n<span style=\"font-weight: 400;\">Pilates</span>\n\n<span style=\"font-weight: 400;\">Manual Therapy</span>\n\n<span style=\"font-weight: 400;\">Podiatry</span>\n\n<span style=\"font-weight: 400;\">Physiotherapy</span>\n\n<span style=\"font-weight: 400;\">Osteopathy</span>\n\n<span style=\"font-weight: 400;\">Chiropractic</span>\n\n<span style=\"font-weight: 400;\">Strength and Conditioning</span>\n\n&nbsp;\n\nTo tap into this kind of multi disciplinary network why not do some market research in your area and pay the local practitioners a visit to experience their service? If you like their methods and feel they could support you, then you could ask them if they would be happy to accept referral from you since they have skills you do not. I cannot for a moment imagine anyone saying no can you? Then you would hope that they would reciprocate but if you have a conversation about gaining your clients permission to discuss their circumstances this would certainly suggest to them that this is what you are looking to set up.\n\nIf you would like more guidance on this please do not hesitate to contact us info@biomechanicseducation.com\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we would like to do is offer you all the ability to fully assess both the pelvis and the spine of your clients to KNOW what exercise to give them or when to refer and how to refer. Should you take us up on this offer we would GIVE YOU A FREE LOW BACK HEALTH WORKSHOP!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We would also like to then give you some of the basic equipment to get you started on your journey towards improving your clients biomechanics as part of our 5th Birthday Celebration!</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','The Personal Trainers Guide To Working With Clients Who Are In Pain','','inherit','closed','closed','','9752-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',9752,'https://biomechanicseducation.com/?p=38739',0,'revision','',0),(38740,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">This is my absolute favourite behaviour change tool and can be THE MOST inspiring, exciting and motivational tool you can offer to your client. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To explain the Ripple Effect I would like to share a story with you about a father and his daughter...</span>\n\n&nbsp;\n<h3><b>Where The Journey Begins...</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As father and daughter relationships go they were very close and he had inspired her to start jogging in her early 20’s. She began with a 10 min jog round the block and built it up gradually adding another block at a time. </span>\n\n<span style=\"font-weight: 400;\">He spoke passionately about the feeling of running, that elation as the endorphins release, the camaraderie and the feeling of freedom. </span>\n\n<span style=\"font-weight: 400;\">She began to understand what he meant and eventually entered her first half marathon. </span>\n\n<span style=\"font-weight: 400;\">The months of training, the planning and eating and timing and suddenly there she was, standing nervously at the start of her first race.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Oh boy was she excited! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The camaraderie really affected her the most as she ran the route with people around her cheering her up the hills, people watching from the streets cheering too and the motivation and excitement she felt as she saw that finish line! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Even as tired as she felt the roar of the crowds pushed her into a final sprint towards the finish line and she lifted her arms to cross the line with such a feeling of elation she wanted to hug everyone around her and so in fact she did!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THIS was ‘living’.</span>\n\n&nbsp;\n\n<b>She Was Hooked!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Each year for 25yrs she and her dad trained for their local half marathon, they entered smaller races and she even travelled to enter bigger races in other cities. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What she also learned was not everyone understood what it felt like, but her dad did.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over the years they would get excited about this race, her dad would ask “</span><i><span style=\"font-weight: 400;\">are you ready?”,”have you done the training?”, “ are you fit?</span></i><span style=\"font-weight: 400;\">”...hahaha “</span><i><span style=\"font-weight: 400;\">yes dad</span></i><span style=\"font-weight: 400;\">” she would reply and together they would warm up, discuss their planned times and set off aiming to find each other at the end of the race.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It was a highlight to their year and something they shared that bonded them tightly. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Their commitment spread and others joined them, old and young, occasionally or regularly. It was a big part of their relationship.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However over the years she got faster, he grew slower.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">After completing the half marathon, she would now run back over the race track to find him and help him finish, concerned that he was ok. He started to limp over the finish line. </span>\n\n&nbsp;\n<h3><b>The Moment It Was All Over</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">He was aging and discovered he now needed a hip replacement and afterwards was told by his surgeon not to run again.</span>\n\n<span style=\"font-weight: 400;\">He was crushed. </span>\n\n<span style=\"font-weight: 400;\">She was frustrated.</span>\n\n<span style=\"font-weight: 400;\">They felt sad BUT they stayed positive and while the running stopped their bond did not. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There was a period of around 6 years neither of them ran. Life goes on even though the routine changes. Even though they didn’t really talk about it, they both missed their running.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He changed, became sedentary, sat for hours at his computer and was going into a mild depression. </span>\n\n&nbsp;\n<h3><b>The Silver Lining </b></h3>\n<span style=\"font-weight: 400;\">Then they had the devastating news that he now had early onset dementia. You can imagine the effect this had on the entire family. </span>\n\n<span style=\"font-weight: 400;\">Yet he was lucky enough to be invited to take part in a research project. This project was collecting data on how effective physical exercise might be on those diagnosed with dementia.</span>\n\n<span style=\"font-weight: 400;\">She joined him on a 6 week course ‘living with dementia’ and he got physical therapy to understand how active he was and whether they could improve on it. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">His physio asked him “</span><i><span style=\"font-weight: 400;\">what would you like to do to be more active</span></i><span style=\"font-weight: 400;\">?”.</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Well I would like to run, but I have been told I can’t” </span></i><span style=\"font-weight: 400;\">He replied</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What this ANGEL did next had an effect that nobody could have predicted.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">She got him running again!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok so 10 mins jog to start and gradually building up but HE WAS RUNNING AGAIN!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The change in him was instant!</span>\n\n&nbsp;\n<h2><b>The Park Run</b></h2>\n<span style=\"font-weight: 400;\">His daughter felt inspired too and committed to helping to encourage him to run by joining him whenever she could on the 5k park run each Saturday morning. In fact, she too had not run for so long it felt so good to be back running AND next to her dad. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then her mum would come with her walking sticks and do a half lap while they did their 5k.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then her nephew decided to come along and jog ahead of them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then her friend decided to meet them there and jog with them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">She even began to film their story to social media. </span>\n\n<span style=\"font-weight: 400;\">What was happening here was what I call the Ripple Effect.</span>\n\n&nbsp;\n<h3><b>The Ripple Effect</b></h3>\n<span style=\"font-weight: 400;\">The research project came to an end but the park runs didn’t. In fact, when they contacted him to see how he was doing some months later and he shared the news of this amazing Ripple Effect the researchers were ecstatic and asked to write about this in a medical article. They wanted to do a presentation about their research on the health benefits of exercise on dementia patients and this example allowed them to also show the wider reaching effects on the surrounding family.  In fact, he became their star pupil and they continue to share his story to others.</span>\n\n&nbsp;\n<h3><b>How Many Times Can You Count The Ripple Effects Of This Special Bond?</b></h3>\n<span style=\"font-weight: 400;\">Now go back through this story and count how many times the relationship between this father and daughter, and their love for movement/running, affected other people?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Your behaviour has a huge impact upon the people around you. </span>\n\n<span style=\"font-weight: 400;\">You cannot change someone else\'s behavior but you CAN change yours.</span>\n\n<span style=\"font-weight: 400;\">When you change, others change around you.</span>\n\n<span style=\"font-weight: 400;\">You inspire others</span>\n\n<span style=\"font-weight: 400;\">It is suggested that you become more like the 5 people you spend the most time with.</span>\n\n<span style=\"font-weight: 400;\">So choose wisely</span>\n\n<span style=\"font-weight: 400;\">AND</span>\n\n<span style=\"font-weight: 400;\">More importantly, THINK about your behaviour </span>\n\n<span style=\"font-weight: 400;\">How many people can you affect?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You know who it was in the story don’t you?</span>\n\nIf you haven\'t guessed it already... its me and my dad!\n\n&nbsp;\n<h3><b>What’s Your Story?</b></h3>\n<span style=\"font-weight: 400;\">How can YOU use this tool to motivate your client to change their behaviour?</span>\n\n<span style=\"font-weight: 400;\">Can you find a way to help them, help their loved ones or vice versa, to move more? Eat better? </span>\n\n<span style=\"font-weight: 400;\">Maybe ask them about their family’s habits so you can see how to use this concept to help them pull the whole family together towards a united goal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The power of the Ripple Effect is real!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I hope you have enjoyed this series of videos and blogs about behaviour change - if so why not HIT REPLY and share your thoughts, questions and ideas so together WE can get the nation moving more freely!</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','The Ripple Effect - How 1 Action Can Impact Hundreds Of Others - What\'s YOUR Ripple Effect?','','inherit','closed','closed','','9698-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',9698,'https://biomechanicseducation.com/?p=38740',0,'revision','',0),(38741,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">We all have several aspects of our lives that affect our behaviour and how we feel. This applies to our clients too, who more often than not are paying us for advice on how we can help them change something. This will always relate to some kind of behaviour. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So how can we further assist them in their endeavour?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, as we have explored in previous Juicemails, we need to create benchmarks so we can analyse and monitor any changes that occur to demonstrate success. However we might also need to alter focus at times to certain areas more than others. </span>\n\n<span style=\"font-weight: 400;\">What do I mean by this? </span>\n\n&nbsp;\n<h3><b>Important Lessons Learnt</b></h3>\n<span style=\"font-weight: 400;\">One of the important lessons I have learned like most of us, from getting it wrong sometimes, is to get a </span><i><span style=\"font-weight: 400;\">balance</span></i><span style=\"font-weight: 400;\"> of all of the things that I are important in my life. </span>\n\n<span style=\"font-weight: 400;\">Having read somewhere that each of us have 4 key areas to our lives that we could imagine make up the 4 legs of a chair. If we don’t pay attention to one of these areas the balance of the chair can falter. This might result in feelings or behaviours that we don’t want. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I decided to define mine, then I started analysing the ‘quality’ of each along with how much attention I was paying to them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now the titles you give to your 4 legs may well differ to mine and that’s perfectly fine, they need to be relevant. The ‘quantity’ of focus you wish to apply to each is also likely to differ for each of us. But we should all consider just how happy we are in each of these areas and what we might be able to do to improve the ones we may neglect. </span>\n\n&nbsp;\n<h3><b>The Process For Our Clients </b></h3>\n<span style=\"font-weight: 400;\">Anything that is systemised can be taught so this method can be an awesome tool to help our clients understand how their behaviours and decisions can affect their results. </span>\n\n<span style=\"font-weight: 400;\">So to create awareness first of all we would ask them to write down the 4 key areas of their life. </span>\n\n<span style=\"font-weight: 400;\">Here is an example of my 4 legs of life;</span>\n\n&nbsp;\n<ol>\n 	<li><span style=\"font-weight: 400;\"> Family </span></li>\n 	<li><span style=\"font-weight: 400;\"> Healthy nutrition </span></li>\n 	<li><span style=\"font-weight: 400;\"> Exercise/recovery </span></li>\n 	<li><span style=\"font-weight: 400;\"> Work</span></li>\n</ol>\nExamples of legs of life could be... Friends, finances, health, spirituality, religion, personal development, contribution and many more.\n\n&nbsp;\n<h3><b>Analysing The Data</b></h3>\n<span style=\"font-weight: 400;\">Then trying to understand how happy we are with each, maybe scoring them from 1-10 on how happy we are with them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Family 9/10 </span>\n\n<span style=\"font-weight: 400;\">Nutrition 6/10 </span>\n\n<span style=\"font-weight: 400;\">Exercise 5/10 </span>\n\n<span style=\"font-weight: 400;\">Work 8/10 </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When we are able to score our 4 legs of life we can then address any discrepancy we find. This is vital in creating balance allowing us to focus on behaviours we desire rather than defaulting to behaviours that make us feel bad or sad or low in confidence. </span>\n\n&nbsp;\n<h3>But what is a 10/10 you might be thinking?</h3>\nIt\'s whatever you want it to be. What would a 10/10 look like for you? it might help to write that down. Then you can score yourself based on that.\n\nBalance does not mean spending an equal amount of time on each one. What we are looking for here is how you feel you are doing in those areas.\n\n&nbsp;\n<h3>The Next Steps</h3>\nNow that you have scored yourself, what do you do next. Well, I would say look at your 10/10 goal, then look at what you are doing now. What needs to happen to turn that 6 into a 7 for example? Don\'t look at the major things, look at the things you can do now to move you towards that 10.\n\n&nbsp;\n\nAnd then go do it!\n\n&nbsp;\n\nIf you don\'t know what you need to do, then there is this really cool thing called Google. We use it for everything right? But the truth is there is so much knowledge out there in the world for free. Or go grab a book or 4 on the subject, get a coach, find someone who you consider a 10/10 and ask them how they do it. Go and LEARN! We spoke about this last time when it came to writing a plan to improve.\n\n&nbsp;\n<h3><b>What You Think, You Feel</b></h3>\n<span style=\"font-weight: 400;\">There is growing evidence that proves where ever we focus our attention is where we can create change. If we are not aware of what needs our attention how can we focus on it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Designing our 4 legs of life scorecard allows us to invest time and focus where it is required.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not try this out for yourself first?</span>\n\n<span style=\"font-weight: 400;\">Then let me know how it goes and then try it for your clients too.</span>\n\n&nbsp;\n\nhttps://www.youtube.com/watch?v=ktPwzRtf8MU\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>\n&nbsp;','The 4 Legs of Life - The Key To Creating Balance In Your Life','','inherit','closed','closed','','9560-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',9560,'https://biomechanicseducation.com/?p=38741',0,'revision','',0),(38742,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<h3><b>Change How You Feel In A Moment </b></h3>\n<span style=\"font-weight: 400;\">There are lots of things that can influence how we behave as we have discussed over the last 8 Juicemails, however sometimes a simple shift in the way we look at something can have a profound effect on our behaviour both short and long-term. </span>\n\n<span style=\"font-weight: 400;\">In Stephen R Covey’s book ‘</span><i><span style=\"font-weight: 400;\">7 Habits of Highly Successful People’ </span></i><span style=\"font-weight: 400;\">he uses the term ‘</span><i><span style=\"font-weight: 400;\">Paradigm Shifting’</span></i><span style=\"font-weight: 400;\">. This term is something we have used in our academy from the very beginning of our programme development and design. Covey gives a fantastic example of how to understand this term.</span>\n\n&nbsp;\n\nhttps://www.youtube.com/watch?v=4hmbG6K3WN0\n\n&nbsp;\n<h3><b>But First What Is A ‘Paradigm?’</b></h3>\n<span style=\"font-weight: 400;\">The internet says;</span>\n\n<i><span style=\"font-weight: 400;\">A typical example or pattern of something; a pattern or model.</span></i>\n\n<i><span style=\"font-weight: 400;\">\"society\'s paradigm of the ‘ideal woman’”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">A world view underlying the theories and methodology of a particular scientific subject.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">\"the discovery of universal gravitation became the paradigm of successful science”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In simple terms it is </span><i><span style=\"font-weight: 400;\">how you see things in your own mind.</span></i>\n\n<span style=\"font-weight: 400;\">This idea would suggest it to be a great way to influence someone else’s behaviour by offering a new way of seeing a situation. </span>\n\n<span style=\"font-weight: 400;\">The example scenario Covey experienced and explained in his book went something like this; </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A man with his 2 kids who were being unruly, running around and disturbing people, while he sat on a bench next to Covey.</span>\n\n<span style=\"font-weight: 400;\">Covey was trying to read his paper and felt annoyed by these ‘out of control’ kids thinking to himself.. </span><i><span style=\"font-weight: 400;\">“why can’t he control his kids?”</span></i>\n\n<span style=\"font-weight: 400;\">Eventually Covey said to the man..</span><i><span style=\"font-weight: 400;\">“excuse me but aren\'t your kids a little out of control?”</span></i>\n\n<span style=\"font-weight: 400;\">The man replies, looking somewhat deflated.. </span><i><span style=\"font-weight: 400;\">“yes yes I guess I should but well we just left the hospital and their mother just died an hour ago and I guess they don\'t know yet how to deal with it and I guess me too”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Covey’s paradigm shifted once he heard the plight of this poor family and his annoyance shifted from annoyance to sympathy literally in a moment. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Covey encourages us to think about how OUR feelings shifted as WE heard or read the story here.</span>\n\n<span style=\"font-weight: 400;\">It is evidence of how one\'s own perception of a situation can shift instantly the moment we realise the other view point.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So can we give more detail about how WE view a situation to enable different understanding/behaviour/reaction to the circumstances surrounding it? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Should we be asking more questions prior to behaving or re-acting in a certain way?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine your client confessing they didn’t ‘behave’ in a way they wanted to or had planned to. Discussing their thought process with them might offer you an opportunity to shift their paradigm and therefore change their behavior next time they face a similar situation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Client “</span><i><span style=\"font-weight: 400;\">I failed, I ate cake and now I may as well give up, I can’t do it, I am rubbish at this and everyone else had cake so how can I say no?”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You</span><i><span style=\"font-weight: 400;\"> “Imagine I am you, what would you say to me? How would you support me if I said this to you? Consider the bigger picture - you have done so well so far and this is one small hiccup that we can turn into a fantastic lesson for you. Imagine that you can only fail if you give up. You have already successfully changed you behaviour up to now….” etc</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Literally asking the client to imagine swapping places with you can shift their paradigm into a different view of their behaviour and therefore is more likely to encourage different behaviour next time. It gives a change of context...</span>\n\n&nbsp;\n<h3><b>How Does Context Affect Your Thoughts?</b></h3>\n<span style=\"font-weight: 400;\">Another example of how we can change our behaviour is by simply putting things into context.</span>\n\n<span style=\"font-weight: 400;\">So many articles, videos and blogs out there are written without context. What I mean is those articles that suggest that everyone should do one thing, for example; </span>\n\n&nbsp;\n<ul>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">squat with toes pointing forward</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">women should do more cardio</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">everyone should eat paleo</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">dairy is bad for you </span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">orthotics are bad</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">stretching is bad for you</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">we should all learn to use foam rollers</span></i></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">None of these statements are considering every person who may squat, like dairy, need orthotics etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is often a single viewpoint that is offered about methods of exercise, movement correction, behaviour or diet etc. The author has usually had an experience that created THEIR belief or idea and maybe this happened to most of the people they knew. So they wanted to tell others in an attempt to help. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet we are all different!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some people can eat dairy, some don’t like paleo, some do and some don\'t respond to stretching. This is the same when it comes to changing our behaviour, educating clients and all the other topics we have discussed previously. We ALWAYS need context as without it we may be using false or irrelevant information to our circumstances or fail to see how it will help us. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Giving clients a better understanding of the thinking behind an idea or viewpoint should give clarity along with the reasons WHY we make certain suggestions about how to change their behaviour.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So maybe we should ALL be braver and more ready to go against the grain and behave in a way we feel is for our best interest rather than simply following the crowd. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not try it yourself….when your client confesses something can you convert their thinking, their behaviour, by giving them a different way of looking at the situation that creates a positive outcome instead of a negative?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider a time when you did something you really didn’t want to do. You did it just because everyone else did and even though you didn’t want to. If we put it into context surely the people who care around us want us to be happy with or without having that piece of cake!! </span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','Stopping A Client\'s Small Blip Becoming A Major Fail - Shifting Paradigms','','inherit','closed','closed','','9491-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',9491,'https://biomechanicseducation.com/?p=38742',0,'revision','',0),(38743,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">Ok so you have got the goals set, the mindset pieces in place, you have ideas on how to stay motivated….now what?</span>\n\n<span style=\"font-weight: 400;\">So we now need to really start planning, gathering information and looking at our information sources. </span>\n\n<span style=\"font-weight: 400;\">Now the research begins…</span>\n\n<span style=\"font-weight: 400;\">Getting fully immersed into the subjects required to be in a position to pass on information to your clients is so important. In fact, we have a responsibility to them since they are PAYING for this information and your knowledge. So we MUST be sure the information we are passing on is sound. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Become informed by understanding it and living it and your clients are more likely to hit their goals.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How do we do this?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Through education, research and the right resources...</span>\n\n(You can either watch the video, or if you prefer reading then you can carry on reading below)\n\nhttps://youtu.be/33nYy-rpdmw\n\n&nbsp;\n\n&nbsp;\n<h3><b>Start With Education</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now education is my passion but what is it exactly?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">From the Oxford Dictionary: </span>\n\n<span style=\"font-weight: 400;\">education</span>\n\n<i><span style=\"font-weight: 400;\">noun</span></i>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">the process of receiving or giving systematic instruction, especially at a school or university.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">\"a course of education\"</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">an enlightening experience.</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Education that has an impact is not simply telling people information or what you know or a fact, it is giving the listener, learner a point of reference. Without a point of reference how can they see this fact from their perspective since we all see the world differently? We each need something to relate it or anchor it onto that resonates with our own way of thinking or seeing things, something intrinsic to us. Now, this could be the use of a specific kind of resource to help a certain type of learner or it could be offering examples in relation to a specific goal, in the example of a client.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How do YOU know your information is right? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Educating ourselves is clearly vital in terms of understanding options, risks and also finding out the truth about what we read or are told. However, we also need to consider our role as teachers when it comes to educating our clients about what they need to know. This can help with motivation as well as giving or clients clarity in what to expect and thus a higher chance of success. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The fear of the unknown or a distorted idea of what might be required to achieve a new behaviour can be a big reason for a client failing early on. </span>\n\n<span style=\"font-weight: 400;\">However all this said we are all more and more aware, I think, that there are those out there who will use their power of influence to affect our behaviour. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Politicians, supermarket promotions and TV adverts are all good examples of organisations, people and companies that will be doing all they can to generate a specific kind of behaviour from us. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we need to do is research...</span>\n\n&nbsp;\n<h3><b>Where Can You Research To Help Create Your Plan?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Research is also something we should do to make sure the education we pass on or learn ourselves is valid and reliable. There are many ways to do research;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Books/audiobooks</span>\n\n<span style=\"font-weight: 400;\">TV</span>\n\n<span style=\"font-weight: 400;\">Internet</span>\n\n<span style=\"font-weight: 400;\">Colleagues</span>\n\n<span style=\"font-weight: 400;\">Websites</span>\n\n<span style=\"font-weight: 400;\">Magazines/Newspapers</span>\n\n<span style=\"font-weight: 400;\">Events</span>\n\n<span style=\"font-weight: 400;\">College/University</span>\n\n<span style=\"font-weight: 400;\">Meetings</span>\n\n<span style=\"font-weight: 400;\">Focus groups</span>\n\n<span style=\"font-weight: 400;\">Observations</span>\n\n<span style=\"font-weight: 400;\">Laboratories</span>\n\n<span style=\"font-weight: 400;\">And more</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The really tricky part is finding good, high quality resources that will be giving us reliable and valid information rather than simply creating language that makes us believe something that just isn’t true.</span>\n\n&nbsp;\n<h3><b>How To Find Reliable Resources To Help You Plan</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We must understand how to differentiate good resources from bad ones. This can be a challenge but using common sense and following up on where the source of the information has come from will contribute to confidence.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example good sources will be very open about their content and access to it. Good education companies are accredited by governing bodies, sound research papers will be validated by a university or peer reviewed, politicians that are honest…..ahem let’s just leave that one there. Books should have the authors details to further research their integrity etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now there is still room for ambiguity on sound resources since some come from very large companies who can afford to do their own research and then manage to make the numbers LOOK good by paying for the study to be done in such a way to look good in their favour. Look at the large sugary drinks companies who a worth billions and their adverts show happy healthy, slim attractive actors creating a feeling in you to buy their drinks. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So common sense is also a huge player in this BUT the more articles you read and the more information you gather the more reliable it should be.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sadly there are also some really smart people out there using their power of influence to take advantage of ‘admirers’ so what out for those charmers. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Challenge Everything, use your Critical Thinking Skills</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So c’mon get out there, dive into the learning cycle, do your research, learn, grow and gather data and then implement - in fact take action right NOW!</span>\n\n&nbsp;\n\n<b><i>Next time - Paradigm Shifting &amp; Context</i></b>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','Putting Together A Plan Of Action To Ensure Success In Your Fitness Goals','','inherit','closed','closed','','9417-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',9417,'https://biomechanicseducation.com/?p=38743',0,'revision','',0),(38744,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">Something I have had to face most of my fit and healthy life is negative attitudes towards my choice of lifestyle. Weird right?!?</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">OOOOO You’re a fitness freak!”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Bet you never chill out and just eat chips, right?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Gosh you’re so skinny it makes me sick”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Bet Rachel won’t want any dessert lol”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Are you allowed ice cream Rach?</span></i><span style=\"font-weight: 400;\">”</span>\n\n<i><span style=\"font-weight: 400;\">“Do you train every day, like all of the time? Do you even have a life?</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How about you? </span>\n\n<span style=\"font-weight: 400;\">Have you ever been made to feel like your the odd ball for trying to be healthy and active?</span>\n\n<span style=\"font-weight: 400;\">Maybe you felt pressured to eat cake or not exercise by people who think a healthy lifestyle is a chore or something you must suffer?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">DOES MY NUT IN!!</span>\n\n&nbsp;\n\nhttps://youtu.be/1bRQ8HR9AEY\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The attitude of others towards your desire to change to a healthier way of living is often, I believe, jealousy. Maybe they are unable to stick to it themselves or they simply don’t believe it is possible to actually </span><i><span style=\"font-weight: 400;\">enjoy</span></i><span style=\"font-weight: 400;\"> a healthy lifestyle.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They simply do not understand how to achieve it and their reaction is one of pure ignorance.</span>\n\n&nbsp;\n<h3>How Do You Help Your Clients Deal With This?</h3>\n<span style=\"font-weight: 400;\">However, it is likely to mean that we, as trainers and coaches, must strategise how to deal with this problem and help our clients understand they may face this kind of attitude. Here are some ideas to give them a confident response when others say things like these examples above.</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">We could simply ignore them, since their opinion doesn’t matter</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Maybe we invite them to join us on our mission for finding happiness in health </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">A tougher one might be to change our friends - yes literally have a cull! </span></li>\n</ol>\n<span style=\"font-weight: 400;\">I made the tough decision to do just this in the past and as difficult as it felt at the time, it was one of the best things I ever did for my own health and happiness</span>\n\n&nbsp;\n<h3><b>Can We Practice (or Teach) Positive Mental Attitude (PMA)?</b></h3>\n<span style=\"font-weight: 400;\">Having PMA allows us to create a positive way of looking at any situation. Consider reframing a negative situation into a lesson, for example. </span>\n\n<span style=\"font-weight: 400;\">Ask yourself ‘</span><i><span style=\"font-weight: 400;\">what good can come from this situation?</span></i><span style=\"font-weight: 400;\">’</span>\n\n<span style=\"font-weight: 400;\">Even if it is learning what NOT to do. </span>\n\n<span style=\"font-weight: 400;\">Even a circumstance that makes you feel sad, like bereavement, can be reframed into being thankful for knowing the person you lost and at least you had them around for the time you did.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So behaviour change really should include encouraging a positive mental attitude towards situations. Practicing reframing a situation to enable us to succeed or remain positive. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Can we enable our clients by teaching them how to reframe? When they give an example of a danger zone when they ‘failed’ to abstain from picking up a chocolate bar, can we teach them how to see it as a learning curve to appreciate how it made them feel bad. Then use that to reduce the risk of it happening again in the future.</span>\n\n&nbsp;\n<h3><b>Endless Willpower?</b></h3>\n<span style=\"font-weight: 400;\">Now there are several industry influencers I follow that I have heard state that:</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Will power is not limitless</span></i><span style=\"font-weight: 400;\"> - It has been suggested that willpower gets used up over the day by daily demands and is probably why most of us struggle the most at the end of the day which is most often the biggest danger zone for many of us. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The time you find hardest to resist temptation is later in the day when you have probably used up most of your willpower.</span>\n\n<span style=\"font-weight: 400;\">Is that you too?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me explain:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The tougher a day is, the more easily we make bad choices because you have an excuse, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The kids create demand shouting;</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">MUUUUM….can I have</span></i><span style=\"font-weight: 400;\">…(fill the blank)”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The busy traffic had you gripping the steering wheel while you mentally created a shopping list on your way from a stressful day at work to the local supermarket, seemingly like every single other person in your area!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This makes it much easier for you to ‘treat’ yourself while in there since ‘</span><i><span style=\"font-weight: 400;\">you just got through a tough day’.</span></i><span style=\"font-weight: 400;\"> In other words it simply means that you used up all of your willpower before getting there and your devil voice was shouting loudest.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Can we use this way of thinking to our advantage?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Of course we can!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anytime we can use a tactic or a way of reframing or looking at a situation differently to our advantage has to be a good thing, don’t you agree?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Being more and more aware of how we behave a certain way and why that might be and then using our 4-minute rule maybe we can literally change our behaviour right there and then.</span>\n\n<span style=\"font-weight: 400;\">Each time we do we are conditioning our new behaviour to be more of a habit, all while listening to our inner dialogue and making the right choices.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This positive mental attitude helps us face any negative attitudes we might face and also plan for those occasions when we might use up our daily quota of willpower a bit too early.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So how is your behaviour change journey going so far?</span>\n\n&nbsp;\n\n<b><i>Next Time; Education, Research &amp; Resources.</i></b>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','Willpower & Attitude When Dealing With Bad Attitudes On A Fitness Journey','','inherit','closed','closed','','9226-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',9226,'https://biomechanicseducation.com/?p=38744',0,'revision','',0),(38745,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">Having spoken publicly on numerous occasions about his fantastic behaviour change tactic you\'re probably aware that it holds huge value.</span>\n\n<span style=\"font-weight: 400;\">As an ex-smoker</span> <span style=\"font-weight: 400;\">myself, of all of the behaviour change techniques I’ve tried or come across, the 4 minute rule is the standout one for me. It is the one I always go back to when I want to change my behaviour pattern and it costs nothing but 4 minutes of your time.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So let’s keep it simple</span>\n\n&nbsp;\n<h3><b>The 4 </b><b><i>Second </i></b><b>Rule</b></h3>\n<span style=\"font-weight: 400;\">You know the 4-second rule of dropping food on the floor? Right? Tell me you do otherwise I am going crazy. If you drop food on the floor you have just 4 seconds to pick it up and still be safe to eat it. Some even say its 10 seconds! It is a nonsense rule in terms of health and safety but it is based upon encouraging you to make a decision within a time frame.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well the 4 </span><i><span style=\"font-weight: 400;\">minute</span></i><span style=\"font-weight: 400;\"> rule is similar in that you have a set time to make a decision. However, we might need more than 4 seconds to make important behavior change decisions due to needing to take time to listen and hear, our inner dialogue.</span>\n\n&nbsp;\n<h3><b>The 4 Minute Rule For Breaking Bad Habits</b></h3>\n<span style=\"font-weight: 400;\">So 4 minutes is long enough to listen, and hear, your inner dialogue, have the conversation with yourself and reason with yourself.</span>\n\n<span style=\"font-weight: 400;\">Yet it’s not too long to be detrimental to you hanging around the chocolate aisle suspiciously looking like your going to steal something.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You have 4 minutes to ask yourself...</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do I really want it? /..want to do it?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Why do I want it? /..want to do it?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How will I feel if I buy it? /..do it?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How will I feel if I don’t buy it? /..don’t do it?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What are my options?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What would I think of myself if I bought it? /..didn’t buy it? /..did it? /..didn’t do it?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How would it affect my SMART goal/s?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Is it a root cause in my undesired behaviour?</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">...Keep going like this for 4 minutes!</span>\n\n&nbsp;\n\n<b>Take Just A Moment</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Most bad behaviour choices are made spontaneously, in a moment and based upon a knee jerk reaction that has no thought behind it. If we give our inner dialogue time to consider the ramifications of the decision we are far more likely to make the right one.</span>\n\n&nbsp;\n<h3><b>How Does This Work In Real Life?</b></h3>\n<span style=\"font-weight: 400;\">Having supported a No Refined Sugar Experiment Group for over 4 years now this technique of taking 4 minutes has proven to be most popular and helpful.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not try it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me know how it goes.</span>\n\n&nbsp;\n\nhttps://youtu.be/_aF05Y04v6A\n\n&nbsp;\n\n<b><i>Next Time: Attitudes, PMA &amp; Willpower!</i></b>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','4 Minutes Could Change Your Life Forever - Breaking Bad Habits','','inherit','closed','closed','','9178-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',9178,'https://biomechanicseducation.com/?p=38745',0,'revision','',0),(38746,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<h3><b>When Are Your Danger Zones/Times?</b></h3>\n<span style=\"font-weight: 400;\">You approach the supermarket till and unload your weekly food shop onto the conveyor belt, waiting patiently behind the family of four in front of you. You look to your right and see the beautiful coloured wrappers of many of your favourite chocolate bars. You mouth starts to water as you imagine the creamy chocolate melting onto your tongue. Your temptation is heightened because you feel a bit tired, maybe slightly stressed after the traffic you sat in to get here and also now knowing you’re going to hit on the way home. You’re also peckish as its been hours since lunch and you think;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">mmmm it’s only a small bar, it will be another couple of hours until I get dinner onto the table, I have been good all week so far</span></i><span style=\"font-weight: 400;\"> (even though it’s only tuesday) </span><i><span style=\"font-weight: 400;\">AND I did park miles away from the door like they suggest to get steps in and burn more calories even on a trip to the shops. Ya know what I deserve it, it’s only one small bar, in fact I am going to have that little chocolate bar and the bonus is the kids aren’t here to nick it from me or ask for one themselves so yeah I am gonna have it...’</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You begin to reach for the purple paper containing that sweet sugary fix and you hear your ‘devil’ voice ‘..</span><i><span style=\"font-weight: 400;\">yeah grab that one its gonna taste amazing...mmmm</span></i><span style=\"font-weight: 400;\">..’ encouraging you but then somewhere in the background you are faintly aware of your ‘angel’ voice saying “..</span><i><span style=\"font-weight: 400;\">uh oh you’re gonna hate yourself after that</span></i><span style=\"font-weight: 400;\">…</span><i><span style=\"font-weight: 400;\">put it back!...you will feel bad...</span></i><span style=\"font-weight: 400;\">’</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You just experienced one of your DANGER ZONES!</span>\n\n&nbsp;\n\nBy the way, if you would rather listen/watch then scroll down, I\'ve put the video below.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This week we will discuss; </span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How to recognise them </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Becoming super aware by using your diary</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How to plan &amp; be prepared for them </span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This week we will see how the tools and tactics we have already added to our behaviour change arsenal can contribute to enabling us to change our behaviour even when faced with our own personal </span>\n\n&nbsp;\n\n<strong>DANGER ZONES</strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But first we need to recognise them.</span>\n\n&nbsp;\n<h3><b>What Is A Danger Zone?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Danger Zones will differ from person to person but ultimately they are either </span><b>times or places</b><span style=\"font-weight: 400;\"> where your behaviour is hardest to control. Those moments or places where it is hardest for you to resist temptation or stop yourself from falling into the old behaviour pattern you are trying to change. </span>\n\n<span style=\"font-weight: 400;\">They can be few and far between or for some they might be plentiful at certain periods of the day or the week. </span>\n\n<span style=\"font-weight: 400;\">However they are not constant, they are ‘zones’. In other words if they are not constant then that means we can behave differently at other times so why not </span><span style=\"font-weight: 400;\">more</span><span style=\"font-weight: 400;\"> of the time or even ALL the time!?</span>\n\n&nbsp;\n<h4><b>Check Your Diary</b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So firstly go back and check your diary notes to see if you can see any of your danger zones. Some may come to your immediately and you just KNOW are a high risk ‘zone’ for you when trying to change a behaviour you don’t like. Others you might begin to notice as you become more aware and look out for them. </span>\n\n&nbsp;\n<h3><b>Another Example of a Danger Zone</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">You get home from work and you have had a hard day, you are mentally drained and while this morning you had planned to go for a walk or to the gym after work, right now you feel like a sit down on the sofa. You love your sofa and as soon as you sit down you feel much better immediately, relaxed and glad to be home. So much so that your inner dialogue is going something like this:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Angel “ ...</span><i><span style=\"font-weight: 400;\">ok just sit for a minute then I will get off to the gym</span></i><span style=\"font-weight: 400;\">…”</span>\n\n<span style=\"font-weight: 400;\">Devil “...</span><i><span style=\"font-weight: 400;\">you went to the gym last week! Chill out for today, it’s warm and cosy and you feel better here</span></i><span style=\"font-weight: 400;\">..”</span>\n\n<span style=\"font-weight: 400;\">Angel “...</span><i><span style=\"font-weight: 400;\">c’mon you will feel better if you go</span></i><span style=\"font-weight: 400;\">…’</span>\n\n<span style=\"font-weight: 400;\">Devil “...</span><i><span style=\"font-weight: 400;\">neh lie down and get those achy feet up you deserve this after the day you have had</span></i><span style=\"font-weight: 400;\">…</span><i><span style=\"font-weight: 400;\"> go tomorrow</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sound familiar?</span>\n\n&nbsp;\n<h3><b>Avoiding The Danger Zone/s</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once we become aware of when and where our Danger Zones are we then have a chance to consider how we might be able to avoid them or manage them and change our unwanted behaviour pattern. </span>\n\n&nbsp;\n\n<b>Example One</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You know you will be in the supermarket queue so have a snack before you go shopping (this helps reduce the risk of on the spot purchases too) then begin to remind yourself of how well you’re doing at changing your behaviour. Listen to your inner dialogue, hear both sides and discuss with both why you want to NOT have that chocolate bar today. How great you’re going to feel for NOT buying it. Maybe keep your hands busy with your recycled bags and commit to NOT even looking at them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">Get someone else to shop for you - do your shop online (and not when you’re hungry)</span>\n\n<span style=\"font-weight: 400;\">OR </span>\n\n<span style=\"font-weight: 400;\">Go at a time when you are less likely to queue or can use the self serve aisle to avoid the ZONE.</span>\n\n&nbsp;\n\n<b>Example Two</b>\n\n<span style=\"font-weight: 400;\">Maybe go straight to the gym or change at work for your walk so when you get home you can go straight out.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR </span>\n\n<span style=\"font-weight: 400;\">Walk or train at another time of day, maybe before work.</span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">Leave your trainers on the sofa as a reminder and then you can listen to and hear your inner dialogue to clearly state that you want to move more before you sit down for the evening. </span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">Put a fitness DVD on and workout in your front room.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The conscious effort you make each time you face one of your Danger Zones is vital in conditioning our inner dialogue to hear what you KNOW to be the best choice. The more you practice, the better you get at it. The behaviour changes start to feel easier and more natural.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Always document in your diary how it made you feel to make your prefered choice when faced with your Danger Zone. We are very quick to reprimand ourselves but often forget to give ourselves a pat on the back when we do well. Be kinder to yourself, hear the better half of your inner dialogue.</span>\n\n&nbsp;\n\nhttps://youtu.be/EmIcR7R2xwY\n\n&nbsp;\n\n&nbsp;\n\n<b>NEXT TIME: 4 Minute Rule - Breaking The Pattern</b>\n\nAnd by the way if you are reading this, and you are a personal trainer, or group fitness coach, pilates coach etc then clearly you want to help your clients get better results. So make sure you check out our Biomechanics Coach diploma which can help you, help your clients get even better results in their programmes! <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">Just click here to find out more.</a>\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','How To Stop The Bad Habits From Creeping Back In When You Begin Your Fitness Journey','','inherit','closed','closed','','8890-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',8890,'https://biomechanicseducation.com/?p=38746',0,'revision','',0),(38747,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<h2><b><i>Listening To, AND HEARING, Your Inner Dialogue</i></b></h2>\n<span style=\"font-weight: 400;\">Your inner dialogue is those voices that you hear arguing in your own head, yes both are you and both may have a valid view point. </span>\n\n<span style=\"font-weight: 400;\">The problem is we don’t take the time to listen and hear what they are saying. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you are having a battle to make your mind up over a decision be it important or simply about what filling to have on your jacket potato, we have this tendency to just listen to the loudest one.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet both may have important things to consider</span>\n\n&nbsp;\n<h3><b>The Devil vs The Angel</b></h3>\n<span style=\"font-weight: 400;\">Mine I imagine as a cheeky little devil and wonderful angel and I like both.</span>\n\n<span style=\"font-weight: 400;\">Both bring reasoning to my decisions making by offering opposing views on things like when I am deciding whether to train or not, what to eat, if I should call someone now or tomorrow.   </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It goes something like this </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Angel “.. </span><i><span style=\"font-weight: 400;\">you will feel better if you train</span></i><span style=\"font-weight: 400;\">..”</span>\n\n<span style=\"font-weight: 400;\">Devil “..</span><i><span style=\"font-weight: 400;\">neh chill out on the sofa be lazy for a day</span></i><span style=\"font-weight: 400;\">..”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Angel “.. </span><i><span style=\"font-weight: 400;\">c’mon you LOVE salad</span></i><span style=\"font-weight: 400;\"> ..”</span>\n\n<span style=\"font-weight: 400;\">Devil “..</span><i><span style=\"font-weight: 400;\">ooooo imagine the taste of those garlic dough balls</span></i><span style=\"font-weight: 400;\">..”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Angel “.. </span><i><span style=\"font-weight: 400;\">your pal will love to hear from you</span></i><span style=\"font-weight: 400;\"> ..”</span>\n\n<span style=\"font-weight: 400;\">Devil “..</span><i><span style=\"font-weight: 400;\">they haven’t bloomin rung you</span></i><span style=\"font-weight: 400;\">..”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Angel “.. </span><i><span style=\"font-weight: 400;\">remember your goals</span></i><span style=\"font-weight: 400;\">..”</span>\n\n<span style=\"font-weight: 400;\">Devil “..</span><i><span style=\"font-weight: 400;\">remember life is too short to be so serious about training, you’re doing ok for 49</span></i><span style=\"font-weight: 400;\">..!”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ring any bells for you?</span>\n\n<span style=\"font-weight: 400;\">Well both my devil and angel have moments of quality guidance. </span>\n\n<span style=\"font-weight: 400;\">The problem arises when we only listen to one or we hear one louder than the other.</span>\n\n<span style=\"font-weight: 400;\">We can become lazy, sedentary and eat badly or we can do too much, under eat and suffer fatigue.</span>\n\n&nbsp;\n<h3><b>The Practice Of Critical Thinking </b></h3>\n<span style=\"font-weight: 400;\">Critical thinking is not something that necessarily comes easily to many and even those who have had to demonstrate this skill in a Masters degree for example will tell you how complex it is. We humans are innately biased to our own view of the world and what we see MUST be right, right?!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe, maybe not….so to critically analyse a situation and make a more informed choice based on all the information our inner dialogue offers will surely result in a smarter decision or outcome, do you think?</span>\n\n&nbsp;\n<h3><b>How To Think Critically </b></h3>\n<span style=\"font-weight: 400;\">Asking ourselves a whole series of questions like... </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHAT?</span>\n\n<span style=\"font-weight: 400;\">WHICH?</span>\n\n<span style=\"font-weight: 400;\">WHY?</span>\n\n<span style=\"font-weight: 400;\">WHEN?</span>\n\n<span style=\"font-weight: 400;\">WHERE?</span>\n\n<span style=\"font-weight: 400;\">WHO?</span>\n\n<span style=\"font-weight: 400;\">HOW?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...then broadening questions to hear what our inner dialogue has to say…</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Eg: What will happen if I eat that? Or don’t eat that? What will I eat instead? Who cares? How will I feel? What might be the knock on effect? To Me? To others? How can I make a better choice? Is there a better choice? Do I have a choice right now? Why? </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Challenging each decision takes time if your not practised at taking time to consider, hear, listen to your gut instincts or both the devil and angel voices. </span>\n\n<span style=\"font-weight: 400;\">However you look at it, we all KNOW WHAT we should do each time, but we don’t always KNOW HOW we can do it. </span>\n\n&nbsp;\n<h3><b>Remember Your Diary!</b></h3>\n<span style=\"font-weight: 400;\">This is where our strategies and understanding can become enhanced with our diary for example. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">How did I feel when I chose to eat the doughnuts? Did I really enjoy them? How much other high calorie sugary food have I consumed recently? </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we write down how we felt maybe with our critical thinking notes we can start to tap into a deeper awareness of our actions behaviours towards the decisions we make and how they make us feel. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The support and motivation of you as a coach or trainer will guide clients towards a better understanding of their behaviours and how they contribute to how they feel about themselves. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should encourage our clients to understand moderation, indulgence when it’s a good thing to be enjoyed and also when its overdone and might be negatively affecting our health. Also how to adapt things for THEMSELVES not for everyone else. One individual might be able to eat more doughnuts without getting a muffin top because of their metabolic system working more efficiently. So we have to understand and hear our own inner dialogue better to really appreciate how our choices make us feel both physically and mentally.</span>\n\n&nbsp;\n\nhttps://youtu.be/YJ7dWMhlAoE\n\n&nbsp;\n\n&nbsp;\n\n<b>Next Time - </b><b><i>Danger Zones &amp; Times &amp; How To Modify Our Behaviour To Avoid Them</i></b>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','How To Stay Focused On Your Goals While The Voices In Your Head Battle It Out','','inherit','closed','closed','','8804-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',8804,'https://biomechanicseducation.com/?p=38747',0,'revision','',0),(38748,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<h3 style=\"text-align: center;\"><b><i>“Fail To Prepare Is Preparing To Fail”</i></b></h3>\n<span style=\"font-weight: 400;\">A lack of preparation on both sides can be the downfall of achieving the SMART goal/s, even with all the ‘why’ questions answered and accountability being addressed. So both you and your client need to be prepared with all the things you will need in advance to be ready for any pitfalls along the way. This also allows YOU to set up a appropriate level of expectation in terms of what YOU will do and what THEY will do as part of this professional contract/agreement.</span>\n\n&nbsp;\n<h3><b>1. Get Clients To Keep A Diary </b></h3>\n<span style=\"font-weight: 400;\">While this sounds like your job, ie your the trainer so you plan the schedule, right?</span>\n\n<span style=\"font-weight: 400;\">Well yes BUT the client already does a food diary...GREAT! </span>\n\n<span style=\"font-weight: 400;\">They can add in additionally, to their part of the agreement:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sleep Pattern - Hrs plus quality</span>\n\n<span style=\"font-weight: 400;\">Energy Levels Rate Perceived (RP) 0/10</span>\n\n<span style=\"font-weight: 400;\">Food &amp; Drink detailed - Volume, type, frequency</span>\n\n<span style=\"font-weight: 400;\">Exercise Including Intensity Rate of Perceived of Exertion (RPE)</span>\n\n<span style=\"font-weight: 400;\">Mental State/Stress Level - RP 0/10</span>\n\n<span style=\"font-weight: 400;\">Physical Aches/Niggles - (0= No pain/10=Having your arms ripped off) 0/10</span>\n\n<span style=\"font-weight: 400;\">ANYTHING that affects them physically/mentally each day</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This extensive information gathering only needs to be collated for a couple of weeks (if they find it hard) to tell the story of what might be interfering with success. If it can be continued then do encourage it.</span>\n\n<span style=\"font-weight: 400;\">TOGETHER you can analyse and calculate behaviours how they felt about everything that might influence it. This, done well, can be dramatic!</span>\n\n<span style=\"font-weight: 400;\">It often highlights things that you/they maybe never even have considered or noticed. It heightens awareness about behaviour and allows you both to work on a strategy what works for the CLIENT.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why not buy them a diary (see Daily Greatness options for a good starting point and maybe as a gift for all new clients who sign up this week - see what I did there?) to get them started and motivated with additional personalised comments written in by you prior to passing it on. </span>\n\n<span style=\"font-weight: 400;\">What a great start to this relationship - you have shown your commitment to them by buying them a gift (which doubles up as a sales tool) and this makes them more motivated to reciprocate by doing what you ask.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We humans do feel a desire to please others and to be liked so use this behaviour and praise the client at each opportunity. </span>\n<h3><b>2. Small Gifts For Clients To Keep Them Focused</b></h3>\n<span style=\"font-weight: 400;\">Clearly many of you will be working from gyms but it might be worth considering additional investments into low cost equipment, again maybe as gifts or prizes, to also motivate your client. Buy a 30 meter roll of resistance tubing and cut it into 1 meter lengths for ‘giveaways’ to encourage clients to maybe do their exercises at work or even if they cant get to the gym or just don’t like gyms! Yup some people don’t!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Lacrosse balls, or even tennis balls, to roll into muscles having been educated properly how by you, to keep them moving more freely. Foam rollers could be another great tool that when they see it on their lounge floor by the TV it reminds them of you and all you are doing for them. Seeing their equipment is a trigger to do their homework and keep moving or move more.</span>\n\n&nbsp;\n<h3><b>3. Use Clothing To Create A Community</b></h3>\n<span style=\"font-weight: 400;\">This is an amazing opportunity to advertise while creating YOUR community of fans proud to work with you. Personalised branded T shirts with your business name on. Have an interesting design that is conversation starter so your own fans have an opening to tell others just how amazing you are. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Using your logo, branding and images that relate to you brand add interesting wording...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Rach helped my hips move!</span></i><span style=\"font-weight: 400;\">” ;)</span>\n\n&nbsp;\n<h3><b>4. Communication… Even A Text!</b></h3>\n<span style=\"font-weight: 400;\">The Biggest Excuse You Hear….Time</span>\n\n<span style=\"font-weight: 400;\">This is HUUUUUGE </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If your client is going to bale on you there is a good chance it is down to time. </span>\n\n<span style=\"font-weight: 400;\">Too busy, kids, work, shattered, just no time. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rubbish!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because right up front you will be setting up the expectation to the point where you KNOW exactly what their routine is so you can judge a genuine time issue and….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Text regularly - set this up in advance and tell them you will do this</span>\n\n<span style=\"font-weight: 400;\">How will you check they are doing their bit?</span>\n\n<span style=\"font-weight: 400;\">What tools apps could you use?</span>\n\n<span style=\"font-weight: 400;\">Ensure its client friendly in terms easily fitting into their routine</span>\n\n<span style=\"font-weight: 400;\">Information/resources that are accessible even without you </span>\n\n<span style=\"font-weight: 400;\">Success is paramount, not simply being with you </span>\n\n<span style=\"font-weight: 400;\">Give client tools </span>\n\n<span style=\"font-weight: 400;\">Give client all they need to feel successful</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you are discussing and asking the WHY questions with your client, you should have set up a pain trigger that you can remind them of when they try to use time as an excuse.  </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">*Now at this point it should go without saying but I must mention that if they suffer a bereavement or something similar we need to know when to back off in terms of driving them about goals. We must be compassionate too. </span></i>\n\n&nbsp;\n\n<b>Behaviour Change Is Just Like Marketing</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You maybe able to see how a lot of what we are discussing here feels similar to sales/marketing.</span>\n\n<span style=\"font-weight: 400;\">This is absolutely right, because you are ‘selling/marketing’ results through supporting behaviour change. </span>\n\n<span style=\"font-weight: 400;\">So you will see how many of the motivators are also great marketing tools, right? </span>\n\n&nbsp;\n\nhttps://youtu.be/AgEcJN2Rras\n\n&nbsp;\n\n&nbsp;\n\n<b><i>Next time ‘Listening To, AND HEARING, Your Inner Dialogue’</i></b>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','4 Tactics To Help Your Clients Stick To Their New Healthy Habits','','inherit','closed','closed','','8598-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',8598,'https://biomechanicseducation.com/?p=38748',0,'revision','',0),(38749,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<h3><b>What’s The REAL Reason People Come To Train With You?</b></h3>\n<em>(You can either watch the video, just click play or read the post below it)</em>\n\nhttps://youtu.be/_BvAfkY8PYI\n\n<span style=\"font-weight: 400;\">So many of us can make that mistake of not actually getting to the true root causes and emotional reasons for goals. The power of truly identifying this is what ALL marketers will tell you sells..and believe me you are wanting to sell the goal because there is a reason why they haven\'t succeeded yet and they are seeking your advice. Goals are often superficial or ambiguous and therefore </span><i><span style=\"font-weight: 400;\">seem</span></i><span style=\"font-weight: 400;\"> simple but when it comes down to it, they feel super challenging causing frustration ….”</span><i><span style=\"font-weight: 400;\">I just don’t know why I can’t do it…</span></i><span style=\"font-weight: 400;\">?” because what we need is to fully understand that true emotional driver so we can create the motivation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This emotional driver then gives us that reason that truly pushes us towards the goal. If we imagine and feel the pain we would experience if we did NOT succeed we are more likely to stick to the programme. Research suggests more so than simply thinking of the benefit!</span>\n\n<span style=\"font-weight: 400;\">Often this is what is missing in terms of really changing our pattern of behaviour. Let me give you an example;</span>\n\n&nbsp;\n<h3><b>EXAMPLE 1: The Number On The Scales Is Not Really What They Want</b></h3>\n<span style=\"font-weight: 400;\">No one really cares about ‘weight loss’! This is a myth. They/we THINK this is what they/we want when really they/we wouldn’t care what the number is on the scales IF they/we looked and felt good naked!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Although the TRUE meaning of this goal is often CONFIDENCE over any of the above mentioned ‘goals’. Even gaining the confidence in our own skin to know we are not all going to achieve a six pack. ALL clients think they want a six pack but they wouldn’t care about a slight muffin top IF they had the confidence to wear it and didn’t compare themselves to the magazines AND if they appreciated how damn dull, stressful it can be to eat and live with a six pack!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The measurements of Ibs/kilos are a benchmarker but makes sure you tick all of the SMART requirements in terms of specific, realistic etc. Also much of your sessions will be about boosting this clients confidence on how they look and/or perceive themself.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We need to have ideas in place for creating a positive experience for the client even when the benchmark hasn’t changed. For example we should educate them on the fact that if they start lifting weights they may even gain weight in the scales but feel better, look leaner and healthier. Also diplomatically remind them of the pain they will feel if they don’t change their behaviour.</span>\n\n&nbsp;\n<h3><b>EXAMPLE 2: Lifting Heavier May Not Even Be The Real Goal</b></h3>\n<span style=\"font-weight: 400;\">Getting stronger maybe about how many kilos they can lift IF their sport means competing at lifting heavy weights as in powerlifting for example. However it is more often about having bigger muscles or feeling strong, which in turn is usually about CONFIDENCE. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Again we can measure strength in the kilos they lift as a benchmarker but also boosting this clients confidence on how they look and/or perceive themself.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here we should create positive language for when they look great and move well but the kilos on some days may not be as high or even lower during lighter training cycles.  </span>\n\n&nbsp;\n<h3><b>EXAMPLE 3: “I want to be fitter” Actually Means...</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Being fitter could be to run a marathon and if we consider what ‘being fitter’ actually means ‘fit to perform the task’ then clearly the training and measurement methods would have benchmarkers here. </span>\n\n<span style=\"font-weight: 400;\">But again what is the ultimate goal here?</span>\n\n<span style=\"font-weight: 400;\">CONFIDENCE they can finish the race, yeah!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Again some days we need to maintain a positive attitude even if we have an off day or slow day and keep the client focused on the bigger picture.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is a good example of the increased discomfort they go through to achieve their goal (helping clients to achieve long intense running sessions) giving much more satisfaction than simply going for a jog. They earned it! However we should help them realise this.</span>\n\n&nbsp;\n<h3><b>EXAMPLE 4: What About Getting Rid Of Pain?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pain reduction is an area we, exercise professionals,  must be careful of in terms of knowing the right questions to ask to understand about red flags, when to refer and how to adapt training programmes for clients with low grade non specific aches, niggles or discomfort. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is, in my opinion, a negative goal and in fact so subjective that I strongly recommend we help the client, through questions to identify the true frustration to reach a more positive goal focus. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example can we reach and agreement with them about a movement goal that is influenced by their discomfort? </span>\n\n<span style=\"font-weight: 400;\">We could ask “</span><i><span style=\"font-weight: 400;\">what does the discomfort stop you doing</span></i><span style=\"font-weight: 400;\">?” </span>\n\n<span style=\"font-weight: 400;\">(Note; I recommend not using the word ‘pain’ or at least reducing the use of it). Then if they respond with “</span><i><span style=\"font-weight: 400;\">playing on the floor with my kids” </span></i><span style=\"font-weight: 400;\">you have now reached a more positive focus, a nice goal to think about and one that is more realistic for us to be able to promise or use as a benchmark. They want CONFIDENCE in movement. Maybe they would benefit from being taught how to get up and down from the floor!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Can you see what is happening here? By asking those questions that dig deeper ...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What would you like to achieve?</span>\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n<span style=\"font-weight: 400;\">By When?</span>\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n<span style=\"font-weight: 400;\">Why haven’t you achieved it yourself?</span>\n\n<span style=\"font-weight: 400;\">Why have you approached me?</span>\n\n<span style=\"font-weight: 400;\">What have you tried in the past?</span>\n\n<span style=\"font-weight: 400;\">Why do you think that didn’t work?</span>\n\n<span style=\"font-weight: 400;\">Have you ever achieved it before?</span>\n\n<span style=\"font-weight: 400;\">How did it make you feel?</span>\n\n<span style=\"font-weight: 400;\">Why do you think things changed?</span>\n\n<span style=\"font-weight: 400;\">How serious are you about this?</span>\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n<span style=\"font-weight: 400;\">How badly do you want it?</span>\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n<span style=\"font-weight: 400;\">How would it feel to stay as you are?</span>\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n<span style=\"font-weight: 400;\">What are you prepared to do different now?</span>\n\n<span style=\"font-weight: 400;\">Why?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are really getting down under the skin of what makes us/our clients happy, feel confident and healthy.</span>\n\n&nbsp;\n<h3><b>The Secret To Achieving Your Goals: ACCOUNTABILITY</b></h3>\n<span style=\"font-weight: 400;\">Interestingly this is often most of what they are paying us for, they may just not realise it. Think about it, many people KNOW WHAT they should do, however they haven’t worked out HOW. Now of course we bring knowledge and expertise however much of the professional help comes from identifying and utilising the root cause to them empower the client to do what is required. We make them accountable, they have to report back to us, explain what they have/haven’t done since we saw them last. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember YOU will NOT make someone slim, muscly or faster in 1, 2 or even 3 sessions a week for a couple of months alone. Much of what is required will be within the time they are NOT with you, right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also they need to FEEL the benefits, in terms of feel they are getting to the heart of it, in terms of how they FEEL when they want to get down and play on the floor with their kids. Because if they are moving better but still not playing with the kids on the floor are the going to FEEL successful?</span>\n\n&nbsp;\n<h3><b>Owning It - Taking Personal Responsibility</b></h3>\n<span style=\"font-weight: 400;\">We have to give the responsibility back ...This is called EMPOWERMENT and is so POWERFUL in terms of creating an opportunity for success in any field, topic industry of subject.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We go to great lengths to empower our learners, we should ALL go to great lengths to empower our clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine if what most clients are looking for is confidence in something, would empowering them to achieve it more or less themselves is that going to produce a greater feeling of success?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">ABSO-BLOOMIN-LUTELY!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider when you were a child and you defended your right to …</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“...</span><i><span style=\"font-weight: 400;\">I CAN DO IT MYSELF MUMMY/DADDY</span></i><span style=\"font-weight: 400;\">….!!” </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">..what was that? Empowering yourself, feeling capable, feeling confident, feeling successful from your own actions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Guided...yes of course ...but ultimately the goal is surely to empower the client to succeed themselves….don’t you agree!?! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let Them OWN IT!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pass the responsibility back by preparing them to ‘do it alone’ as you won’t be there forever and their success is more important than keeping them as your client. However there is not reason why they cant come back for a ‘top-up’ of ‘refresher’...right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Next Time :</span>\n\n<b><i>How To Prepare For Behaviour Change Once The Root Cause Has Been Identified</i></b>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','Identifying The Root Problem, Accountability & Owning It - A Guide To Helping Your Clients Achieve Their Goals','','inherit','closed','closed','','8529-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',8529,'https://biomechanicseducation.com/?p=38749',0,'revision','',0),(38750,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">In my opinion one of the biggest problems in the industry is that coaches, trainers and fitness professional are forgetting some of the very basics we learn at the beginning of our journey into the health and fitness industry.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More often than not PT’s, sports therapists and Pilates teachers have forgotten the anatomy they studied madly for, to gain their qualification. </span>\n\n<span style=\"font-weight: 400;\">Now hold on a minute there, I totally get it and understand that there is a reason for this! I did too!</span>\n\n<span style=\"font-weight: 400;\">We rarely speak that language and so it gets forgotten. For example, I understand that we would NEVER be heard saying to our clients…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“...r</span><i><span style=\"font-weight: 400;\">ight so today Barry, we are going to concentrically and eccentrically challenge your antagonist posterior chain of muscles, to include rhomboids, mid trapezius, so we can encourage scapular retraction via the action of your sarcomeres…” blah blah blah</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So there is a reason WHY we forget BUT it is vital we DO NOT because there was a VERY GOOD reason we learned it in the first place! RIGHT??? (</span><i><span style=\"font-weight: 400;\">I am glad you are nodding right now</span></i><span style=\"font-weight: 400;\"> :))</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok, so there were a lot of things we learned on our basic training that could actually be extremely helpful to us, that we may well have forgotten or not appreciated at the time when you think of the mass of information we have been gathering during and since our first qualification. This is what I want to remind you of, to show you how easy it can be to reignite your practice without paying for more courses, just yet…</span>\n\n&nbsp;\n<h3><b>Client Adherence - How To Get Your Clients To Follow The Plan</b></h3>\n<span style=\"font-weight: 400;\">Adherence is HUGE for getting results with our clients, right!? You sigh inwardly and deeply when they confess they didn’t do any of the stuff you asked them to over the weekend because, well they had something better to do...or there was a wedding, or they ended up going to a party, they were tired after a hard week at their desk, the kids were demanding or they just forgot….etc etc</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the things that can most effectively affect adherence is clarity in the goal. Clarity in what it looks like, feels like and how long it might take, whether it is do-able in their crazy hectic life (</span><i><span style=\"font-weight: 400;\">they will always have a more crazy hectic life than you by the way because you must have loads of time if you can go to the gym 6 days a week to train yourself and you look so buff, like you do this ALL the time and it’s really easy for you- eh!?</span></i><span style=\"font-weight: 400;\">)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So No 1 is to clarify A VERY CLEAR GOAL. </span>\n\n<span style=\"font-weight: 400;\">So clear in fact that we call it a SMART goal. </span>\n\n<span style=\"font-weight: 400;\">Too often ambiguous and vague goals are accepted... </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Weight loss</span></i>\n\n<i><span style=\"font-weight: 400;\">Get stronger</span></i>\n\n<i><span style=\"font-weight: 400;\">Be fitter</span></i>\n\n<i><span style=\"font-weight: 400;\">Less pain </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Nope not good enough, this could be a</span><i><span style=\"font-weight: 400;\"> start point</span></i><span style=\"font-weight: 400;\"> towards finding their true goal because this is what the client THINKS their goal is. It is our job to get them towards a very SMART, positive and emotional goal otherwise the point of success may well be challenged and therefore your integrity as a trainer/coach. Also there could be a negative focus which can affect motivation. It is the emotion we need to get to, this is what truly drives and motivates so we need to help the client discover what it is.</span>\n\n&nbsp;\n<h3><b>The Tool - Smart Goals For Personal Trainers &amp; Their Clients</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">You must remember SMART goal setting? One of the fundamental things taught when learning about how to manage a consultation. The client has come to see YOU because they can’t do it themselves, for some reason, so clearly they are willing to pay for YOUR advice so YOU can also hold them accountable. So be sure to </span><i><span style=\"font-weight: 400;\">listen</span></i><span style=\"font-weight: 400;\">, by allowing the client to have their say and in put but we have to help them get to the true nature of their REAL goal.</span>\n\n&nbsp;\n\n<b>S</b><span style=\"font-weight: 400;\">PECIFIC </span>\n\n<b>M</b><span style=\"font-weight: 400;\">EASUREABLE </span>\n\n<b>A</b><span style=\"font-weight: 400;\">CHIEVABLE </span>\n\n<b>R</b><span style=\"font-weight: 400;\">ELEVANT </span>\n\n<b>T</b><span style=\"font-weight: 400;\">IME BOUND </span>\n\n&nbsp;\n<h4><b>SPECIFIC </b></h4>\n<span style=\"font-weight: 400;\">Who are they? </span>\n\n<span style=\"font-weight: 400;\">What exactly do they want to achieve?</span>\n\n<span style=\"font-weight: 400;\">When in their mind do they want to achieve it by?</span>\n\n<span style=\"font-weight: 400;\">Where are they now? </span>\n\n<span style=\"font-weight: 400;\">Where will they be doing this? </span>\n\n<span style=\"font-weight: 400;\">Do they have what it takes In terms of equipment, time etc?</span>\n\n<span style=\"font-weight: 400;\">Which method will be best? </span>\n\n<span style=\"font-weight: 400;\">How do you know?</span>\n\n<span style=\"font-weight: 400;\">Why are they doing this? Why now? </span>\n\n&nbsp;\n<h4><b>M</b><span style=\"font-weight: 400;\">EASUREABLE </span></h4>\n<span style=\"font-weight: 400;\">How can you assess and measure? </span>\n\n<span style=\"font-weight: 400;\">What are your benchmarks to compare from start to finish and how will you monitor their progress??</span>\n\n&nbsp;\n<h4><b>A</b><span style=\"font-weight: 400;\">CHIEVABLE </span></h4>\n<span style=\"font-weight: 400;\">Is the goal true to all the variables? </span>\n\n<span style=\"font-weight: 400;\">Is it really attainable with the skills required? </span>\n\n<span style=\"font-weight: 400;\">Will you need to change attitudes? </span>\n\n<span style=\"font-weight: 400;\">If so how?</span>\n\n<span style=\"font-weight: 400;\">Using what tools?</span>\n\n&nbsp;\n<h4><b>R</b><span style=\"font-weight: 400;\">ELEVANT </span></h4>\n<span style=\"font-weight: 400;\">This has to make sense with the broad goal in mind </span>\n\n<span style=\"font-weight: 400;\">However there may be things that are relevant that the client hadn’t thought would contribute to their journey.</span>\n\n&nbsp;\n<h4><b>T</b><span style=\"font-weight: 400;\">IME BOUND </span></h4>\n<span style=\"font-weight: 400;\">This is one of the benchmarks in terms of when does it need to be or when do you want it to be achieved by? Is that possible with what is required ?</span>\n\n&nbsp;\n<h3><b>How Do We Gather This Information?</b></h3>\n&nbsp;\n<h4><b>Trainers/Coaches</b></h4>\n<span style=\"font-weight: 400;\">The best method for achieving this maybe speaking to your client over the phone </span><i><span style=\"font-weight: 400;\">in advance</span></i><span style=\"font-weight: 400;\"> of their first session or allowing for extra time in their first consultation. The last thing you want is for their first session to be a disappointment to them because they barely got to ‘train’ or it was more talking than doing. You could send them questions in an email in advance to discover what exactly is expected, needs to be in place, if you are the right match for each other or if you need to refer them to another professional first for clearance (ie if they have pain, symptoms or an issue you are not qualified to deal with (red flags).</span>\n\n&nbsp;\n\nOr actually take the time to sit down with this potential client and have a face to face consultation, where you talk through all of this. This allows you to get an idea of where they are to begin with and if they are going to be a good client. Make this a free session so they know your goal is not simply about taking their money and make sure the client knows its not going to be a training session. This way you both know what to expect. And for anyone thinking... I don\'t want to give an hour of my time for free... just think.... this person could potentially be paying hundreds/thousands of pounds over the next year or longer... is 1-1.5 hours of your time worth it...?. You freaking bet!\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also, explain to THEM what to expect from this professional relationship at that first point of contact. They have some control but ultimately they are paying for your guidance. For example “ </span><i><span style=\"font-weight: 400;\">I will be asking you to do this or that...ok</span></i><span style=\"font-weight: 400;\">?” Set out for them how YOU work and you do it this way because it works.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Use the questions above to really get to the crux of WHY they want to change something. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Get to the emotional part of WHY then create measurable benchmarks for the success of this. Make them as </span><i><span style=\"font-weight: 400;\">specific</span></i><span style=\"font-weight: 400;\"> as you can.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When someone is seeking to change behaviour the common theme is usually that they have lost confidence in their ability to do something or they are struggling with their strategy to achieve the task/goal.</span>\n\n&nbsp;\n<h4><b>Identify The Problem First</b></h4>\n<span style=\"font-weight: 400;\">The true problem/dilemma needs to be identified first prior to any advice or change or planning or programming. </span>\n\n<span style=\"font-weight: 400;\">This allows for appropriate planning and strategies to be implemented by the individual or with the help of the right professional </span>\n\n&nbsp;\n<h4><b>What Do We Do?</b></h4>\n<span style=\"font-weight: 400;\">Create a list of questions to help you identify the SMART goals. </span>\n\n<span style=\"font-weight: 400;\">The questions list is not exhaustive and often additional questions will come up naturally from the conversation. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But please do not underestimate the value of the time you spend on the consultation and information gathering part at the beginning of your relationship with a client. Clients will often tell YOU what they want to do but we need to be able to use the information they have given us to use to support their idea with our knowledge of what is realistic or a more accurate goal. YOU are the one with the professional knowledge and experience that they are paying you for. Make it clear by paraphrasing back to them regularly what THEY have said so they know that you are listening AND hearing what they are saying.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Coach &amp; Train SMART!</span>\n\n&nbsp;\n\nhttps://www.youtube.com/watch?v=Yp8PRby27BA\n\n&nbsp;\n\n<b>Next Time More Tips On BEHAVIOUR CHANGE For Your Client:</b>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Identifying The Root Problem, Accountability &amp; Owning It!</span></i>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">You will LOVE this day, want more information on these, simply click fill in the info and just let us know you want more information about the </a>1 day workshops.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','How Do We As Fitness Professionals, Educate Our Clients Towards Behaviour Change?','','inherit','closed','closed','','8441-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',8441,'https://biomechanicseducation.com/?p=38750',0,'revision','',0),(38751,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">As an instructor we want to make sure that ALL of our participants are incredibly successful. However, we know it’s simpler to design a personalised programme and deliver it if they are having one to one training. </span>\n\n<span style=\"font-weight: 400;\">Group sessions allow people who don’t train at all, to train with an instructor guiding them on how to improve their movement. The problem now is creating a programme that serves each participant as individually as possible. This is a real challenge..</span>\n\n<span style=\"font-weight: 400;\">So here are 6 tips to help you personalise and improve your group exercise programmes</span>\n\n<b>1. Include a Movement Preparation Phase</b><span style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"> to the ‘warm up’ - and yes this can be personal. With a quick analysis of the group through a simple movement screen you can get an idea of what that prep needs to be. 4 Sign Test = 4 Sign Exercise for example.</span></span>\n\n&nbsp;\n\n<b>2. Encourage ‘Buddie’ Work </b><span style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">where appropriate. People who go to classes generally go because they like the camaraderie and social aspect so why not encourage this even more by adding ‘buddie’ work. Maybe they could face each other during a certain exercise to motivate each other</span></span>\n\n&nbsp;\n\n<b>3. Give Them Homework</b>! It’s called ‘<i>going the extra mile</i>’ and they will appreciate that you do more to encourage them than other instructors do. Suggest they meet a friend for a parkrun Saturday morning.\n\n&nbsp;\n\n<b>4. Arrive Early To Educate</b> them on how to improve their movement outside of the class. For example, if you teach pre-choreographed classes then you KNOW there is no time for ‘extra’ stuff. If you can bring a foam roller into the studio and teach them HOW and WHY they should try it out. Also suggest its great idea for adding to their birthday or xmas list! If you can’t access the studio suggest gathering on the gym floor.\n\n&nbsp;\n\n<b>5. Create a handout</b><span style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"> </span></span>Often people go to classes because they simply have no idea what to do in the gym! So why not write a short simple programme of exercises they can try before you see them next week?\n\n&nbsp;\n\n<b>6. Welcome Everyone &amp; Stand By The Door As They Leave</b><span style=\"font-weight: 400;\">. This for me is a vital component of ‘connecting’ with your participants and doesn\'t require much effort nor time. They are mostly all in a hurry to leave anyway but it goes along way especially if you remember their names too! Now there’s a challenge for you!</span>\n\n&nbsp;\n\n<hr />\n\n<span style=\"font-weight: 400;\">NOW I am going to give you even more ways and reason to CONNECT with your participants.. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having given you some of the </span><i><span style=\"font-weight: 400;\">iMoveFreely® </span></i><span style=\"font-weight: 400;\">techniques in the Squat Project A2G video tutorial series, we have had a MASSIVE response of the successes you are experiencing which makes me feel extremely happy indeed. My mission here has always been to help more people move more freely through YOU, than I can as individual practitioner. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have been delivering the revolutionary </span><i><span style=\"font-weight: 400;\">iMoveFreely®</span></i><span style=\"font-weight: 400;\"> Instructor programme for over 10 years now with immense success. This has resulted in us receiving hundreds of fantastic feedback emails from previous learners about their experience during the workshop and also their client/participant success stories! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are really passionate about acting upon your feedback and this is how we have evolved this programme to be user friendly and easy to blend into your present classes or to set up your own ‘pure’ </span><i><span style=\"font-weight: 400;\">iMoveFreely®</span></i><span style=\"font-weight: 400;\"> clinics/workshops. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While the simple and unique techniques are not about to make you into pseudo-therapists, we can give you the skills to potentially help prepare your clients/participants to move more freely, while reducing their injury risk and doing so with increased confidence.</span>\n\n&nbsp;\n<h3><strong>Watch this video about the I Move Freely Program:</strong></h3>\n&nbsp;\n\nhttps://youtu.be/gG6yxr0z2PE\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\"><span style=\"color: #ff0000;\"><strong>SPECIAL OFFER:</strong></span> Get an Anatomy Coloring Book worth £17.35 when you register for the upcoming iMoveFreely Instructor Workshop.</h2>\n<img class=\"wp-image-8348 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/08/Anatomy-Colouring-Book.jpg\" alt=\"\" width=\"191\" height=\"245\" />\n\n&nbsp;\n<p style=\"text-align: center;\">I know its only a small bonus but I LOVE this book, it\'s such an amazing way to learn anatomy and its really relaxing. So I thought I would give one to each of the learners who come to this upcoming workshop.</p>\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/imovefreely-3/\" target=\"_blank\" rel=\"noopener\">Click here to find out more.</a></p>\n\n\n<hr />\n\n<h2 style=\"text-align: center;\">iMoveFreely Instructor Workshop From Biomechanics Education</h2>\n<h4 style=\"text-align: center;\">Helping group exercise instructors deliver programmes to help their clients move better and get even better results</h4>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Are you an exercise to music instructor?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you teach Les mills, Indoor cycling, HIIT, circuits, Pilates, Yoga, Aerobics, Aqua?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you have participants of all different levels and abilities?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Do you have participants with aches and niggles?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Would you like to expand and deepen your knowledge to help them better?</span></li>\n</ul>\n<span style=\"font-weight: 400;\">We have a 1 day </span><i><span style=\"font-weight: 400;\">iMoveFreely® </span></i><span style=\"font-weight: 400;\">Instructor workshop running in Nottingham on September 16th and it is the perfect way to enhance the content you learned from the Squat Project AND every single previous workshop or course you have ever attended. </span>\n\n<span style=\"font-weight: 400;\">These fabulous evidence based techniques can be life changing for some (see below) and will give you answers to those questions about why some people move the way they do or cannot squat A2G.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Start your own ‘pure’ iMoveFreely® clinic/workshop</span>\n\n<span style=\"font-weight: 400;\">or</span>\n\n<span style=\"font-weight: 400;\">Blend these techniques into your present classes</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Get results</span></i>\n\n<i><span style=\"font-weight: 400;\">Stand out from the crowd</span></i>\n\n<i><span style=\"font-weight: 400;\">Increase your confidence</span></i>\n\n<i><span style=\"font-weight: 400;\">Increase your fees</span></i>\n\n<i><span style=\"font-weight: 400;\">Squat A2G!</span></i>\n\n&nbsp;\n\nReady? Lets go....\n\n<a href=\"https://www.biomechanicseducation.com/imovefreely-3/\" target=\"_blank\" rel=\"noopener\"><b><i>WHAT IS IT? Click here for the full outline of the imovefreely workshop! </i></b></a>\n\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/#tab-description\" target=\"_blank\" rel=\"noopener\"><b><i>&lt;&lt; BOOK HERE &gt;&gt; </i></b></a>\n\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/product/imovefreely-instructor/#tab-description\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-8351 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/08/DSC07316-576x1024.jpg\" alt=\"\" width=\"436\" height=\"775\" /></a>\n\n<em>“The iMoveFreely® programme changed the way that I teach every class &amp; client. I put this information into my Fitness Pilates, FFY &amp; Conditioning programmes to help my clients improve their movement &amp; prevent injury.</em>\n\n<b><i>IT IS THE BEST COURSE THAT I HAVE EVER BEEN ON!” </i></b>\n\n<b>Jayne Nicholls</b>\n\n<b>Director Group X Training Ltd</b>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“I really enjoyed the workshop on Sunday, mainly because of the simple form of which you delivered it. The hands on work with clients will showcase me as a top expert now! It\'s good to get a kick up the backside to remind me to keep learning about anatomy and especially movement. Can\'t wait to see my little man today and train him with this updated perspective of movement I have gained. I\'ll keep you updated with the progress!”</span></i>\n\n<b>Cathryn</b>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“I enjoyed my first (iMoveFreely®) workshop with you yesterday, and introduction to biomechanics, thank you - It all makes perfect sense! </span></i><i><span style=\"font-weight: 400;\">\n</span></i><i><span style=\"font-weight: 400;\">I\'ve just planned this weeks classes with more confidence in which order to teach the exercises, which is what I hoped to achieve and I think they should still flow quite nicely.</span></i><i><span style=\"font-weight: 400;\">\n</span></i><i><span style=\"font-weight: 400;\">Whether it\'s \'sexy\', well that\'s down to the delivery...wish me luck ;)</span></i><i><span style=\"font-weight: 400;\">\n</span></i><i><span style=\"font-weight: 400;\">I\'m going to ask for feedback from all 9 classes and that, along with my own daily practice will inform my next move in terms of training.....so, measurable,achievable goals as per your motivating Juicemail this morning fab!</span></i><i><span style=\"font-weight: 400;\">\n</span></i><i><span style=\"font-weight: 400;\">Thanks again and lovely to meet you.”</span></i>\n\n&nbsp;','6 Ways To Improve Your Group Fitness Programmes - A Personal Trainers & Group Instructors Guide','','inherit','closed','closed','','8345-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',8345,'https://biomechanicseducation.com/?p=38751',0,'revision','',0),(38752,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">In this final blog for the Squat Project A2G I would like to discuss the vital component relating to how you can truly improve your A2G squat.</span>\n\n<span style=\"font-weight: 400;\">To understand this we need to consider the reason/s we are struggling to squat in the first place. </span>\n<h3>Why Do We Struggle To Squat In The First Place?</h3>\n<span style=\"font-weight: 400;\">Due to our modern lifestyles, we sit at desks for prolonged periods, stand for long periods, drive for hours, perform repetitive movements regularly and physical tasks we were not originally designed to do. What this means is the body has to compensate and is attempting to evolve in some way. The result is muscle function is affected and nerves are tethered thus creating tension that stiffens joints OR any variation of these compensations and in any order.</span>\n\n<span style=\"font-weight: 400;\">So it is our </span><i><span style=\"font-weight: 400;\">behaviour</span></i><span style=\"font-weight: 400;\"> that we need to modify alongside this awesome monitoring and exercise programme.</span>\n\n<span style=\"font-weight: 400;\">However, behaviour change is more difficult than we might first imagine. The methods are super </span><i><span style=\"font-weight: 400;\">simple</span></i><span style=\"font-weight: 400;\"> but not necessarily </span><i><span style=\"font-weight: 400;\">easy </span></i><span style=\"font-weight: 400;\">to implement consistently.</span>\n\n<span style=\"font-weight: 400;\">You start out with all the very best intention having seen an advert and signing up for the Squat Project A2G tutorial video series and are feeling all fired up. </span>\n\n<span style=\"font-weight: 400;\">Watched the first video and had a go at the pelvic test and exercises, right?</span>\n\n<span style=\"font-weight: 400;\">Then when the next one comes through you’re in the middle of something so you file it to - </span><i><span style=\"font-weight: 400;\">WATCH LATER</span></i><span style=\"font-weight: 400;\">. The 3rd one pops up and you’re reminded “</span><i><span style=\"font-weight: 400;\">ARGH DAMMIT I haven’t watched No 2 yet!!”</span></i>\n\n<span style=\"font-weight: 400;\">...and so it continues, each one added to the FILE…</span>\n\n<span style=\"font-weight: 400;\">Hey! I have done it myself before, we are all human!</span>\n\n<span style=\"font-weight: 400;\">So how do we succeed in achieving this simple goal to squat better or A2G when our lives are so FULL of information overload, things to do, lists of jobs, errands backing up, people to see?</span>\n\n<span style=\"font-weight: 400;\">Well in fact for me there are 21 Steps ….That’s it! </span><span style=\"font-weight: 400;\">Before we get into those here are some very basic tips and considerations...</span>\n<h3>Daily Tips To Improve The Depth Of Your Squat</h3>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">An improved movement profile requires ‘training’ every day but not necessarily just in a gym </span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Remember sitting isn’t bad in itself, it’s the long periods of not moving that is the problem </span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Enjoy chores and see them as movement nutrition </span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Squat regularly even at home as you look inside low cupboards, rather than simply bending over with your spine.</span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Times when you find yourself ‘waiting’ for something (doctors, bus queue, sitting on a train etc) practice your anti spasm techniques like the 4 sign</span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Play WITH your kids on the slide, swings &amp; roundabout - it’s great fun and the kids will love it too!</span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Get into the gardening and dig, mow or trim </span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"list-style-type: none;\">\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Move well first </span></li>\n</ul>\n</li>\n</ul>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Move more </span></li>\n</ul>\n<span style=\"font-weight: 400;\">Simple…!?</span>\n<h3><b>The Power Of The Mind</b></h3>\n<span style=\"font-weight: 400;\">Well, kind of but let’s delve a little deeper and think about our inner dialogue as described by Nick Hall PH.D. in his book..</span>\n<h4><strong><i>‘I </i><i>KNOW</i><i> WHAT TO DO, SO </i><i>WHY</i><i> DON’T I DO IT? The new science of self discipline’.</i></strong></h4>\n<span style=\"font-weight: 400;\">In his book, Hall is charismatic, funny and really honest about the evidence behind the influence of the way we think about our health and also on how we feel about situations. </span>\n\n<span style=\"font-weight: 400;\">This is where I say it….yes…‘the power of the mind’…THIS is something I believe strongly in having practiced it myself for many years. </span>\n\n<span style=\"font-weight: 400;\">...we spend a lot of time making statements like this….</span>\n\n<b><i>“I wish I…</i></b>\n\n<i><span style=\"font-weight: 400;\">..was thinner</span></i>\n\n<i><span style=\"font-weight: 400;\">..had more flexibility</span></i>\n\n<i><span style=\"font-weight: 400;\">..could lift more weight</span></i>\n\n<i><span style=\"font-weight: 400;\">..experienced less pain</span></i>\n\n<b><i>..could squat better</i></b>\n\n<i><span style=\"font-weight: 400;\">..had more money</span></i>\n\n<i><span style=\"font-weight: 400;\">..worked less hours</span></i>\n\n<i><span style=\"font-weight: 400;\">..was not sitting in this traffic jam</span></i>\n\n<span style=\"font-weight: 400;\">Thinking this way puts us into a </span><i><span style=\"font-weight: 400;\">negative</span></i><span style=\"font-weight: 400;\"> ‘frame of mind’, that we are lacking or missing out for example. I know I am guilty of this sometimes when it comes to the number of kilos I can(t) thrust over my head in the snatch!</span>\n<h3><b>What Should We Do To Shift Our Mindset?</b></h3>\n<span style=\"font-weight: 400;\">Well, there is a section in this book where Hall suggests, when we are in a situation that we don\'t like, that we say.. </span>\n\n<b><i>I Am Glad I Am Not…</i></b>\n\n<span style=\"font-weight: 400;\">..and then add the ‘thing’ you are glad you are not at that moment. </span>\n\n<span style=\"font-weight: 400;\">This converts how we feel from negative to a more positive and happier state of mind.</span>\n\n<span style=\"font-weight: 400;\">Examples might be..</span>\n\n<span style=\"font-weight: 400;\">..morbidly obese</span>\n\n<span style=\"font-weight: 400;\">..unable to exercise</span>\n\n<span style=\"font-weight: 400;\">..unable to perform a deadlift</span>\n\n<span style=\"font-weight: 400;\">..in agony that ruins my day</span>\n\n<b>..unable to squat at all!</b>\n\n<span style=\"font-weight: 400;\">..as poor as others </span>\n\n<span style=\"font-weight: 400;\">..unemployed</span>\n\n<span style=\"font-weight: 400;\">..in the traffic accident up ahead</span>\n\n<i><span style=\"font-weight: 400;\">Positive Mental Attitude</span></i><span style=\"font-weight: 400;\"> is a great example of the control WE have over what we do even when that </span><i><span style=\"font-weight: 400;\">Inner Dialogue</span></i><span style=\"font-weight: 400;\"> is arguing the easy option. So the biomechanics programme I have gone through is essential for reducing the risk of injury, prehab if you like, but perhaps there\'s a stage even before it. The stage of mindset, belief patterns, and other things that affect the way we move on a daily basis. And thats what I would like to discuss with you in a future series…..</span>\n\nI hope you have enjoyed the project squat series. Be sure to keep referring back to each section to make sure you get the full process, from the pelvis, to the spine, the shoulders, knees, ankles, and feet and PLEASE do send in your before and after photos of your cave mane squat progress!\n\nAnd hey if you would like to be able to take your clients through the full system then come on one of our diplomas and you soon will be able to do a full body screen, be able to assess someone from a biomechanical perspective and get them moving better.\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">Just click here and let us know you are interested</a> and one of the team will be in touch, or give me a call on <a href=\"tel:07976 933113\" target=\"_blank\" rel=\"noopener\">07976 933113</a>, yup that\'s my personal number, and throw any questions you have at me :-)\n\n<hr />\n\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','Project Squat A2G - Part 8 of 8 - When Getting A Deeper Squat Isn\'t Just About What You Do In The Gym','','inherit','closed','closed','','8301-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',8301,'https://biomechanicseducation.com/?p=38752',0,'revision','',0),(38753,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">So far we have looked at the descending biomechanical issues that can impede your ability to squat. We have looked at the pelvis, the spine, the shoulders, the knees and today we will explore ascending biomechanical issues from the foot and ankle in terms of squatting.</span>\n\n<span style=\"font-weight: 400;\">Podiatrists would likely suggest we start at the feet, and in some cases this might be right, however there is an innate problem here in terms of what action maybe taken.</span>\n\n<span style=\"font-weight: 400;\">For example should your ‘overpronation’ be coming from a leg length discrepancy (LLD) that is simply a functional issue coming from above, then insoles maybe measured and fitted to that false/functional LLD. Thus compounding the functional issue above.</span>\n\n<span style=\"font-weight: 400;\">The LLD could also bend the knee more (see Part 6 Knee), or drop the hip more.  Pronation will increase the load on the leg (see \'Tight Calves\' below), bending the knee will increase pronation, and dropping the hip will increase the spasm in the glutes/piriformis (see Part 2 Pelvis).  </span>\n\n<span style=\"font-weight: 400;\">So by reducing the spasm in muscles like piriformis, in other words preventatively, (and also if necessary), then we are helping to reduce all of the above. </span>\n\n<span style=\"font-weight: 400;\">A vicious circle if ever there was one but a great example of the Integrated System!</span>\n\n<span style=\"font-weight: 400;\">All that said and done insoles are often still required but the ideal would be as minimal an insert as possible. Less intervention holds less risk and we really want the body to be doing what IT can to improve our movement profile first and foremost. </span>\n\n<span style=\"font-weight: 400;\">So a key question when, or even better, before, you go to get your feet measured is whether your LLD (if you have one) is structural or functional? If functional then we need to be doing all of those anti spasms, joint mobilisations, and nerve mobilisations just before being measured (Parts 2/3/4/5). This way we can have insoles fitted to our best biomechanical function at that point. Also be aware that if you are working towards changing your movement profile then your insoles may well change over time too.</span>\n\n<span style=\"font-weight: 400;\">However, anyone who advocates 1 type of shoe for all is clearly selling. We should NOT ALL be barefoot, we should NOT all be wearing MBT’s or even the same shoe type. </span>\n<h3><b>So Which Shoes Should We Wear While Squatting? </b></h3>\n<span style=\"font-weight: 400;\">Well some of us need a shoe to assist pronation (supinator) and others need shoe designed to assist supination (pronator), some of us need more cushioning (supinator) and others need more support (pronator). </span>\n\n<span style=\"font-weight: 400;\">Some will require a heel lift to lengthen the tibia and compensate for those ‘tight’ calves. We are all different.</span>\n\n<span style=\"font-weight: 400;\">The effects of weightlifting shoes on squat mechanics is a subject for which I struggled to find evidence. However, I did find a study by Fortenbaugh et al .(2003). They concluded that “</span><i><span style=\"font-weight: 400;\">In this study, the combined amount of anterior (forward) bar movement and posterior (backwards) hip movement was significantly less when wearing weightlifting shoes (as opposed to running shoes)….this study did not exhibit any other kinematic differences when using weight lifting shoes versus running shoes”.</span></i><span style=\"font-weight: 400;\"> So this suggests the weight lifting shoes allow for a more vertical trunk position during the squat, which is what is recommended for low back health and reduced loads on the knees.</span>\n<h3><b>Should We Even Wear Shoes While Squatting?</b></h3>\n<span style=\"font-weight: 400;\">There is a massive trend in the lifting room to remove shoes completely to be able to feel the floor under the feet for more proprioception. If you have a neutral foot then that might be ok. However, a pronator foot type is likely to a). struggle to stabilise from the foot b). increased injury risk (over time) due to ‘over’ pronation where force production is highest. c). Lose power due to the above</span>\n\n<span style=\"font-weight: 400;\">With all of this in mind, we clearly need to identify what foot type we have before removing shoes, right?</span>\n\n<span style=\"font-weight: 400;\">Also, McBride, et al 2006, demonstrated that isometric squatting on an unstable surface significantly reduced peak force &amp; rate of force development. If there is a difference then some kind of orthotics may be required. This may not be a permanent requirement if you are working on any other biomechanical dysfunctions but if your foot itself has structural issues then it is likely you will always need some kind of foot support.</span>\n<h3><b>So How Do We Identify Our Foot Type? </b></h3>\n<span style=\"font-weight: 400;\">Well, I am afraid this is a challenging one to test on yourself but I strongly recommend you watch the video to find out one way of testing your foot/ankle mobility.</span>\n\n<span style=\"font-weight: 400;\">Then pay a visit to your foot specialist or a local Biomechanics Coach who can identify if you have a</span> <i><span style=\"font-weight: 400;\">propensity to pronate</span></i><span style=\"font-weight: 400;\"> and the</span><i><span style=\"font-weight: 400;\"> capacity to re-supinate</span></i><span style=\"font-weight: 400;\">. These are the 2 key identifying factors in understanding how your foot might be influencing your squat. </span>\n<h3><b>The Integrated System - Tight Calves </b></h3>\n<b>(For Dorsiflexion Test Watch Video) </b>\n\n<span style=\"font-weight: 400;\">If you consider that most of us have ‘tight’ calves (pronators and supinators) often caused by the ‘high heels’ we are all walking on AND YES even on our trainers have a good inch or 2 underneath your heel, giving you a prolonged plantar flexed position through the ankle. This then limits your dorsiflexion range during the gait cycle. </span>\n\n<span style=\"font-weight: 400;\">Also, prolonged periods sitting won\'t be great for our ankle motion nor your nervous system. </span>\n\n<span style=\"font-weight: 400;\">This problem can result in all sort of movement related issues as well as limiting our squat. While our lifestyles will be contributing to our physical limitations and poor biomechanics we also need to identify what it is inside of our own body that is creating the compensation, as it may differ from person to person. Different root causes require different strategies in terms of exercise prescription.</span>\n\n<span style=\"font-weight: 400;\">As previously described tight calves can cause over pronation.  The dorsiflexion (moving the toes upwards) is not available from the ankle joint due to the tightness in the calves, so it has to come from the subtalar joint.  It comes as part of the pronation mechanism though and so increases the amount of pronation as well. This can cause shin related injuries, plantar fasciitis, patellofemoral syndrome as well as other knee and Achilles problems.  Remember it important to note that ‘tight’ calves are very often a result of a tight sciatic nerve, so by mobilising the nerve (Part 4 Nerves), we can help with not only our squatting capacity, range and movement but we can also reduce our injury risk at the same time. WINNER!!</span>\n<h3><b>What Is The Best Foot Position In The Squat?</b></h3>\n<span style=\"font-weight: 400;\">There is really only one deciding factor in the direction of your feet and that is where they fall naturally for the width of squat you have chosen. So while the width may determine the degree of stress on the knee there is no substantial EMG evidence to determine that changing the foot angle or direction hits any muscle more or less. Therefore to reduce injury risk allowing the feet to fall where they want to is probably most prudent.</span>\n\n<span style=\"font-weight: 400;\">Klein’s book ‘The knee in sports’ states that “…</span><i><span style=\"font-weight: 400;\">the toes should be kept directly beneath the knees or slightly inside. This allows the normal relationship to be maintained between femur and tibia in the flexion movement</span></i><span style=\"font-weight: 400;\">”. However in Rippetoe’s ‘Starting strength 3</span><span style=\"font-weight: 400;\">rd</span><span style=\"font-weight: 400;\"> edition’ he describes the need for feet to be turned out at a 30</span><span style=\"font-weight: 400;\">0</span><span style=\"font-weight: 400;\"> angle. The problem arises when these types of statements are taken out of context. So I would like to clarify, the types of questions we should be asking are ‘what is my biomechanical set up?’ and ‘what do I want to achieve from this movement?’</span>\n\n<span style=\"font-weight: 400;\">During the performance of a squat, several authors have recommended various positions for placement of the foot. However a review of the literature failed to demonstrate how foot placement and lower extremity turn out during the squat affect the activity of the leg muscles (Ninos et al 1997)</span>\n<h3><b>The Exercises</b> <b>Required To Improve Your Squat (See Video Series) </b></h3>\n<span style=\"font-weight: 400;\">Understanding whether you have a propensity to pronate and the capacity to re-supinate is key to understanding which shoes (if any) might be right or wrong for you. It also gives you the information you need to know what exercises you can try to help foot/ankle function.</span>\n\n<span style=\"font-weight: 400;\">Pronation and supination band exercises as shown in the video are a great way to contribute to improving your foot function and stability and therefore your squat movement and stability. However, if you consider this wonderful integrated system as discussed throughout this squat project A2G series, there is a whole series of things we can do isn\'t there….</span>\n\n<span style=\"font-weight: 400;\">Pelvic Anti Spasm - reduce tension around hip muscles </span>\n\n<span style=\"font-weight: 400;\">Nerve Mobilisations - moves the nerve all the way down the body</span>\n\n<span style=\"font-weight: 400;\">Spine Mobility - gives us the ability to maintain an upright posture while holding a load </span>\n\n<span style=\"font-weight: 400;\">Strength Ratio Training - evens out those joint ratios to give our squat more stability and reduce injury risk</span>\n\n<span style=\"font-weight: 400;\">Dorsiflexion work - most of us have a tension across the back of the ankle/calves but don’t forget stretching may NOT be the answer!</span>\n\nhttps://youtu.be/3eZ_XAshI_8\n\n<span style=\"font-weight: 400;\">NEXT TIME - Is the final tutorial in this squat project series! </span>\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-7922 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a></p>','Project Squat A2G Part 7 - How Your Ankles & Feet Affect Your Squat','','inherit','closed','closed','','8100-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',8100,'https://biomechanicseducation.com/?p=38753',0,'revision','',0),(38754,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">Knee Stability is clearly a big deal when it comes to squatting! When you see someone squatting in the gym and their knees are all over the place you almost wince right? And if thats you, you probably know that your instability is limiting your strength and depth in the squat. But we aren\'t just talking about wobbly knees here. We are going to talk about how the knee is affected by other areas of the body, the link between the quadriceps and hamstrings in terms of your movement, the forces that go through the knee, why you should maybe squat with a narrower stance, how to assess for risk and so much more.</span>\n\n<span style=\"font-weight: 400;\">The knee is the area of the body has incurred the most questions from YOU, the readers and A2G fans! </span><span style=\"font-weight: 400;\">Not surprising really as I think there are probably several good reasons why this area of the body brings about so many questions. We will look at some of the evidence that is out there and I will endeavour to help/guide you towards a better understanding of what it means for you individually, or ‘case by case’, so you have more information to base your decisions on.</span>\n<h3><b>The Knee Is The Middle Sister</b></h3>\n<span style=\"font-weight: 400;\">Ever heard of the knee being called ‘The Middle Sister’? </span>\n\n<span style=\"font-weight: 400;\">Well, it gets treated a bit like one in terms of the issues coming from the pelvis above and the foot and ankle below. So much so very often the knee is NOT where the problem has stemmed from. <strong>More often than not the knees ‘stresses’ are from the joints above and/or below. </strong></span>And so our focus shouldn\'t be on the knee but on the pelvis and/or ankle and foot.\n\n<span style=\"font-weight: 400;\">I speak from experience and even with my far from perfect biomechanics and extremely active lifestyle I have only ever incurred one injury - ACL rupture caused in my opinion NOT by a \'dodgy\' knee but from a combination of a dysfunctional pelvis and very loose feet (MidTarsal Joint /SubTalar Joint). </span>\n\n<span style=\"font-weight: 400;\">Having both my pelvis and feet creating abnormal descending and ascending loads via my knee joint across a 7yrs-27yrs dancing, 30 years of endurance running, 36 years of weightlifting and the last 5 years regaining my A2G squat ability I actually feel pretty lucky. I elected NOT to have reconstruction surgery and instead used the techniques I am going to show you in the video below (once rehab was satisfactory of course). Evidence suggests that these techniques will contribute to avoiding or at least reducing the risk of an injury to the knee.</span>\n<h3><b>The Knee in Biomechanical Terms</b></h3>\n<span style=\"font-weight: 400;\">Firstly with regards to the knee during the squat there is a lot of evidence out there about what forces are being transferred through the knee joint and its structures. Things that need to be considered when referring to research are the health and biomechanics of the individual, circumstances of the project and the limitations or variables of specifics to the research study. The difficulty is then for the reader to decipher what this may indicate for them personally. The translation of this information is often where things become distorted so I will try to be as precise as I can be with the information I have gathered, while generalising with safety in mind.</span>\n\n<span style=\"font-weight: 400;\">Quadriceps, hamstring and gastrocnemius activity increases as knee flexion increases, which supports athletes with healthy knees performing the parallel squat (thighs parallel to the ground) between 0 and 100 degrees of</span><span style=\"font-weight: 400;\"> </span><span style=\"font-weight: 400;\">knee flexion. It is also demonstrated that the parallel squat is not necessarily a problem to knee health. </span>\n<h3>Have You Got Healthy Knees? Do This...</h3>\n<span style=\"font-weight: 400;\">For those of you with healthy knees, the parallel squat is recommended over the deep squat (A2G or squatting down as far as possible until the posterior thighs and lower leg make contact with each other) because the risk of injury to the menisci and cruciate and collateral ligaments is likely to increase during the deep A2G squat. The squat itself does not compromise knee stability though and in fact when performed correctly with good biomechanics, it can enhance stability. Large decelerations during the squat generate huge forces through the knees during the descent of the squat which is why this part of the movement should be performed in a slow and controlled manner to avoid higher risks of injury.</span>\n<h3>How To Help Correct The \"Forward Flex/Tilt\" In The Squat...</h3>\n<span style=\"font-weight: 400;\">For those of you who find yourself ‘forward flexing’ or ‘trunk tilting’ the greater hip flexion has been shown to eliminate ACL stress, as stated above, mainly due to the increased hamstring activity. This could, therefore, indicate quadriceps dominance (Hewitt 2004). In other words, the hamstring to quadriceps ratio is likely to require some form of <strong>conditioning of the hamstrings to regain a balance</strong>. What is paramount is what type of conditioning work and what must first be established is the reason for the imbalance in the first place.</span>\n\n<span style=\"font-weight: 400;\">At 60 degrees</span><span style=\"font-weight: 400;\"> </span><span style=\"font-weight: 400;\">of knee flexion the forces in the knee joint change from greater posterior force to a greater anterior shear force which increases throughout the ascent. Hence performing squats at knee flexion angles of less than 90 degrees</span><span style=\"font-weight: 400;\"> will minimise the risk of knee injury.</span>\n\n<span style=\"font-weight: 400;\">Fry et al (2003) did a study looking at the effects of allowing the knees to move over the toes. This study found that while the NSCA cite the knees should be kept from moving forwards over the toes or to keep the trunk in an upright posture, in order to optimise the forces involved on all the joints, it may be a good thing to allow the knees to travel ‘slightly’ over the toes. This allows for a more even distribution of load through ankle, knee, hip and spine.</span>\n<h3><b>How Squat Width Affect Forces At The Knee</b></h3>\n<span style=\"font-weight: 400;\">When considering the width of the squat it has been demonstrated that the wider squat has been shown to generate 15-16% significantly greater compressive forces through the knee joint than a narrow stance, McCaw et al (1999). Thus a narrow stance is a better choice if you wish to reduce the risk of compressive forces going through the knees. </span>\n\n<b>To Summarise The Above Data; </b>\n\n<span style=\"font-weight: 400;\">For those with healthy knees a greater angle of knee and hip flexion is ok so long as the loads are not heavy. Periodisation techniques should always be used when performing the squat, in that the training is divided into light, medium and heavy cycles throughout the year. This also enables an individual to perform a variety of squat depths.</span>\n\n<b>A2G Squat Project Questions Discussed In The Video;</b>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Catherine Turner-Perrott - Knees coming together excessively?</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Antwone Townny Aoun - Kees passing over toes?</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Ginger Ninjer - Should you be squatting with a meniscus tear?</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Jodie Law - Client has a knee injury that stops her squatting ACL &amp; MCL how can I get her squatting?</span></li>\n</ol>\n....and more!\n\nhttps://youtu.be/MhaNa5isxdc\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\"><img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a></p>','Project Squat A2G Part 6 - The Knee & Your Squat','','inherit','closed','closed','','7995-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',7995,'https://biomechanicseducation.com/?p=38754',0,'revision','',0),(38755,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">The Shoulders and their effect on your squat can be something quite profound and so I have written on this subject previously. It is not an area of the body that we would immediately consider as a squat limiter and yet there is a tiny muscle in the front of your chest that ‘commonly’ is problematic due to our lifestyles. </span>\n\n<span style=\"font-weight: 400;\">The body compensates for all sorts of reasons as a result of the way we are using our bodies (or in many cases NOT using them!) today and so we might consider trying a few of these techniques to address them and to enable us to MOVE WELL and also then MOVE MORE, or at least move more efficiently and often. </span>\n\n<span style=\"font-weight: 400;\">This is of course, as with anything human movement related discussion, CASE BY CASE. We must each become our own coach and with the help of the right professionals guiding and advising us we must become responsible for looking after our own body.</span>\n\n<span style=\"font-weight: 400;\">So for this Part 5 of the Squat Project A2G - The Shoulder I would like to take you back to a previous article I wrote on this very subject:</span>\n\n<a href=\"https://www.biomechanicseducation.com/how-your-pectoralis-minor-can-affect-your-squat-depth/\">Read Now: How Your Pectoralis Minor Can Affect Your Squat Depth</a>\n\nWatch today\'s video where I show you how to assess for dysfunction in the shoulder and then what you can do to correct it and get that squat even deeper. Just hit play....\n\nhttps://youtu.be/MLKcc9i5zmE\n\n<span style=\"font-weight: 400;\">By the way, if you like seeing this in the real world as it were, you will love this case study. I worked with British olympic weightlifting champion, Laura Hewitt, and here is her journey with biomechanics coaching:</span>\n\n<a href=\"https://www.biomechanicseducation.com/case-study-elite-lifter-laura-hewitt/\">British Olympic Weightlifting Champion, Laura Hewitt, Discovers Biomechanics Coaching - Read this case study now!</a>\n\n<span style=\"font-weight: 400;\">P.S. Please keep sending your caveman squat photos BEFORE &amp; AFTER so we can analyse and measure success ….</span>\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\"><img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a></p>','Project Squat A2G Part 5 - How Shoulder Mechanics Affects Your Squat','','inherit','closed','closed','','7920-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',7920,'https://biomechanicseducation.com/?p=38755',0,'revision','',0),(38756,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','<span style=\"font-weight: 400;\">Nerves have been described as the software of the body and to be able to understand this more thoroughly we have to understand about ‘nerve tension’ and ‘Adverse Neural Tension’. These concepts have been recognised for over 100 years in terms of treating patients clinically, but their full potential has never been understood until now. An analogy with the invention of the wheel is an interesting one. The discovery of nerve tension and it being used for the treatment of injuries is like the wheel being invented and placing it on its side, putting 4 legs around the underside and using it as a table. It makes a great table, but the idea to use it in the way we know it today was groundbreaking. The same applies to nerve tension and its application to athletic performance and fatigue relief. </span>\n\n<span style=\"font-weight: 400;\">The entire nervous system, is a single continuous tract, so it follows that if any part of this continuous tract is trapped or tethered (as with an injury for example) then it also follows that there will be some restriction of the mobility of other parts of the nerve system. So a problem with one part of the nerve can cause pain in another – this is the clinical application. However, we have discovered that this is not always represented by pain but also by a reduction of joint range of movement and altered joint biomechanics which can affect a whole host of problems that can cause restricted performance and may ultimately lead to injury. Moreover, with the increased muscle spasm and associated factors, local fatigue increases and so understanding these principles can lead to benefits not only in human performance but also fatigue relief.</span>\n<h3><strong>Just How Much Can The Nervous System Affect Performance?</strong></h3>\n<span style=\"font-weight: 400;\">We know this happens from research performed at Liverpool Hope University College and studies there demonstrate astonishing results. </span>\n<blockquote><span style=\"font-weight: 400;\">One experiment showed that a muscle can increase its force output by 14% after a brief preliminary nerve warm-up (just one 15 second workout using this concept).</span>\n\n<span style=\"font-weight: 400;\">Another experiment showed that by following the same concept a 2 minute programme performed daily for 10 days increases muscle output by over 50%! </span></blockquote>\n<span style=\"font-weight: 400;\">Remember in most cases we are not even aware we have a problem, but even so you can still achieve these remarkable results. Just imagine what these figures could do you for your performance in your sport, squatting or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office. </span>\n<h3><strong>So How Do We Now Approach Exercise Programming?</strong></h3>\n<span style=\"font-weight: 400;\">So when it comes to exercise programming our holistic approach, which is commonly described but rarely understood and demonstrated, takes into consideration all of the body’s systems, and it has a deep understanding of how they interact and are guided by our nervous system. Description terms such as strength and power in this model are inadequate, so when we talk about exercises in these terms, we should be talking in terms of Movement Acquisition Patterns (or MAPs) which are used to enhance a given set of functional movements, not stretches or strengthening exercises, as the latter do not give credit for the full implications of the programming. </span>\n<h4>How The Hamstring Could Be Affected...</h4>\n<span style=\"font-weight: 400;\">Let’s take a hamstring stretch as an example, we are not trying to stretch the hamstrings when we extend the leg out in front of us, we are trying to improve the range of hip flexion and knee extension by stretching the structures on the back of the leg and back. This brings in more than just the hamstrings, it can also be limited by a tight sciatic nerve, a rotated sacro-iliac joint in the lower back, tight gastrocnemius, tight spinal cord and indeed almost any nerve in the chain given the continuum concept described earlier. </span>\n\n<span style=\"font-weight: 400;\">How many times have you stretched your hamstrings using the generally accepted methods only to find that their flexibility continues to be stubborn and often returns to their standard length very soon? Many people experience this phenomenon. The reason is often due to them stretching only one of the structures that limit the movement, i.e. the hamstrings. If they do not stretch the other structures as well, of course they will not be affected and so the limited range will usually return. <strong>So we are trying to acquire a pattern of movement, not just stretching the hamstrings. </strong></span>\n\n<span style=\"font-weight: 400;\">Young fit people who have sustained both mild and more serious injuries (in the past) requiring surgery from problems that are the type of problems that occur from nerve tension.</span>\n\n<span style=\"font-weight: 400;\">Calf and hamstring injuries are both commonly caused by a tight sciatic nerve for example.  The muscles provide a protective spasm to the nerve during movement and if stretched or loaded sufficiently the muscles can spasm enough to cause themselves to tear, or cramp up - which can FEEL like a tear.  By mobilising the nerve it releases the tension in the muscles and reduces the likelihood of this happening.</span>\n<h4>What About The Overhead Squat...</h4>\n<span style=\"font-weight: 400;\">The same principle applies to ALL nerves.  In the OH squat, if the median nerve is tight it will reduce the amount the squatter can abduct and extend the arms over head while balancing a load in their hands.  This would be due to the muscle spasm that builds up to try and protect the inflexible nerve. The greater the muscle spasm (which is unbeknown to the squatter as its SUB clinical at this point) the more he\'ll try and force his shoulder turn, which in turn increases the tension etc etc.  The key to a sound and reproducible OH squat is to reduce any tension in the movement, so as to help with performance. So by mobilising the median nerve, we are helping with ALL of the above.</span>\n\n<span style=\"font-weight: 400;\">Do YOU have any of the above mentioned movement problems?</span>\n\n<span style=\"font-weight: 400;\">Would YOU like to learn how to test and mobilise your nerves?</span>\n\n<span style=\"font-weight: 400;\">Would YOU like to learn how to reduce injury risk while increase performance levels in your squat?</span>\n\nThen start by watching the video below....\n\nhttps://youtu.be/IHKZ6Jeted0\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\"><img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a></p>','Project Squat A2G: Part 4 - The Nervous System & How It Affects The Squat','','inherit','closed','closed','','7845-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',7845,'https://biomechanicseducation.com/?p=38756',0,'revision','',0),(38757,0,'2024-07-16 11:26:32','2024-07-16 11:26:32','Welcome to part 3 of the Squat Project A2G, it\'s really important that you follow along in order, so if you haven\'t looked at the pelvis yet, make sure you go back to part 2 and do that first.\n\n<span style=\"font-weight: 400;\">If you have done part 2.....Did you get a result with the pelvic test and exercises?</span>\n\n<span style=\"font-weight: 400;\">How is your caveman squat looking?</span>\n\n<span style=\"font-weight: 400;\">Hopefully that has got you started towards freeing off your pelvis and kick started your journey towards improving your squat and therefore you entire movement profile. </span>\n\n<span style=\"font-weight: 400;\">Remember we are only just starting out and changing your body’s capacity for movement can take time as it adjusts. Maybe the same as it took time to stiffen up! </span>\n\nNow we are going to move up the body slightly and look at the spine and how that can be affecting your squat.\n\n<span style=\"font-weight: 400;\">Would you like to learn how you can assess your own spine too now?</span>\n\n<span style=\"font-weight: 400;\">Read on…</span>\n<h2>How To Assess For Dysfunction In The Spine</h2>\n<span style=\"font-weight: 400;\">The integrated system is a fascinating and wonderful series of pulleys, levers, sensors that all interconnect to produce movement and physical control. </span>\n\n<span style=\"font-weight: 400;\">We should ALWAYS consider this ‘system’ and how it works holistically in any exercise programme, including the squat project. Therefore I will always remind you of this throughout this project and how we believe this system impacts upon your movement profile.</span>\n\n<span style=\"font-weight: 400;\">The spine is made up of lots of vertebrae that create a curving structure and is actually extremely robust. The fact many of us are having trouble with back pain is really more shocking than most realise considering the many details within the spine that are designed to protect us. Shock absorbers, strain gauges sensors, lots and lots of muscles and ligaments specifically designed to allow movement but also to limit it and protect the discs and spinal cord.</span>\n\n<span style=\"font-weight: 400;\">The spine sits on top of the pelvis and the joint at which they meet is called the sacroiliac joint (SIJ). This is where the sacrum at the lower spine sits into the 2 ilium that makes up the pelvis thus creating a triangular shaped wedge that should allow a certain amount of movement while also creating stability while we walk, move around and of course squat.</span>\n\n<span style=\"font-weight: 400;\">What we have hopefully achieved in The Pelvis section is improved capacity for movement around this joint. However, if the spine isn’t functioning well it can also limit or impede what the pelvis can do due to the descending influence. </span>\n\n<i><span style=\"font-weight: 400;\">Note: If your pelvis and thoracic spine are both stiff your movement will have to come from somewhere. This could be one big reason why the lower back/spine is the area most commonly linked to injury and discomfort. </span></i>\n\n<span style=\"font-weight: 400;\">So squatting down on your haunches (A2G) every day to look in your lower cupboards it won’t matter if your spine flexes somewhat. This is likely to happen anyway as you get lower down due to the femur (thigh bone) hitting the ilium as you get lower down. Squatting with a wider leg position is likely to reduce the effects of this too. But put simply in an average healthy person it doesn\'t matter if you squat with a flexed spine when there is no load. </span>\n\n<span style=\"font-weight: 400;\">In fact your lumbar spine has more capacity for flexion than any other movement. </span>\n\n<img class=\"aligncenter size-large wp-image-7665\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Ranges-of-movement-in-Lumbar-spine-1024x495.png\" alt=\"\" width=\"1024\" height=\"495\" />\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n<span style=\"font-weight: 400;\">If you add load like a bar across your shoulders with some plates on either end we now need to take into account the compressive forces on top of the spine.</span>\n\n<span style=\"font-weight: 400;\">Squatting with a bit of spinal flexion (breakpoint or butt wink maybe?) with a back bar load means you are now increasing risk. If it is just a few times you will likely get away with it, maybe even weeks or months. However, what MAYBE happening inside you will start to grumble and compensate at some point and wear and tear of a joint can\'t be replaced. So ideally stop descending into your loaded squat prior to hitting your ‘breakpoint’.</span>\n<h3><b>What Is The ‘Break Point’ In The Squat And Where Is Yours?</b></h3>\n<span style=\"font-weight: 400;\">Stuart McGill refers to what he calls the ‘</span><i><span style=\"font-weight: 400;\">break point’</span></i><span style=\"font-weight: 400;\"> which he explains is; “..</span><i><span style=\"font-weight: 400;\">during squatting, there is a loss of the ‘neutral spine’. </span></i><span style=\"font-weight: 400;\">This loss of neutral curvature is actually how our spines were designed to move while we were sitting on our haunches when cooking, eating or performing tasks on the floor. In some countries this is still the case and in fact, these natives seem to have a very low incidence of low back pain.</span>\n\n<span style=\"font-weight: 400;\">We also know from McGill’s work, and others, that each of the facet joints in the lumbar region allows a range of 5-8mm of flexion/extension and 1-5 mm of lateral flexion. This gives a total of about 45-50 degrees of forward flexion from a fully extended position, that we could call safe at the lumbar spine when squatting without resistance. Once we add some resistance, a barbell, for example, this adds a compressive load onto these facet joints, whose main role is to stop excessive movement of the spine.  This movement restriction protects the discs, and reduces their vulnerability and their risk of wear and tear. Consider a healthy, symmetrically stacked and robust spine and this compressive load is pretty safe, now imagine if you have asymmetry, any mechanical dysfunction or improper technique affecting the spines movement capacity and the risk increases further. </span>\n\n<span style=\"font-weight: 400;\">So you can see how actually there is much to consider when performing the squat with any kind of load on the spine if we are to maintain a healthy trunk long term.</span>\n\n<span style=\"font-weight: 400;\">When considering the forces imposed upon the spine McGill states that:</span>\n\n<i><span style=\"font-weight: 400;\">“when a more neutral lordotic posture is adopted, the extensor musculature is responsible for creating the extensor moment and at the same time provides a posterior shear force that supports the anterior shearing action of gravity on the upper body and handheld load……Thus, using muscle to support the moment neutral posture rather than being fully flexed with ligaments supporting the moment greatly reduces shear loading</span></i><span style=\"font-weight: 400;\">” </span>\n\n<span style=\"font-weight: 400;\">What McGill means is the shear force is the force that causes one vertebra to move forwards (or backwards) in relation to the one above or the below and increases the pressure on the intervertebral discs and facet joints. Therefore minimising these shear forces by correct alignment during squatting is more important.</span>\n\n<span style=\"font-weight: 400;\">Do you struggle to maintain an upright posture when squatting with or without the bar?</span>\n\n<span style=\"font-weight: 400;\">Would you like to have a more freely moving spine?</span>\n\n<span style=\"font-weight: 400;\">Would you like to learn how to test your own spines function?</span>\n<h3><b>Watch this video for lateral flexion, flexion, extension and rotation test...</b></h3>\nhttps://youtu.be/xGmd1gsUhKs\n\nSo get to assessing for and improving any dysfunction in the spine and see if you can start taking your squat to great depths.\n\n<img class=\"aligncenter wp-image-7666\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Range-of-movement-at-each-spinal-segment-817x1024.png\" alt=\"\" width=\"528\" height=\"662\" />\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\"><img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a></p>','Project Squat A2G: Part 3 - How To Assess For Dysfunction In The Spine','','inherit','closed','closed','','7657-revision-v1','','','2024-07-16 11:26:32','2024-07-16 11:26:32','',7657,'https://biomechanicseducation.com/?p=38757',0,'revision','',0),(38758,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','Welcome to part 2 of Project Squat! The ultimate guide to helping you (or your clients) reach new depths in your squat!\n\nIn today\'s article and video, I am going to answer the following questions...\n<ul>\n 	<li><span style=\"font-weight: 400;\">Does Your Pelvis Function Properly?</span></li>\n 	<li><span style=\"font-weight: 400;\">How would you know?</span></li>\n 	<li><span style=\"font-weight: 400;\">What is good function anyway?</span></li>\n 	<li><span style=\"font-weight: 400;\">What exactly is good ‘technique’?</span></li>\n 	<li>How do you test for and then improve pelvic function (see the video)</li>\n</ul>\n<span style=\"font-weight: 400;\">Well the pelvis is essentially the centerpiece of our body, the powerhouse of the most amazing organ in the world and yet we should be mindful in this series that we must always consider that it is just one part of an integrated system, since it couldn\'t do its job/s without its counterparts, right!?</span>\n\n<span style=\"font-weight: 400;\">Your pelvis can only produce propulsion when we walk or run via the use of our lower limbs during the gait cycle also through the movement and velocity of rotation being produced through the spine, combined with the swing phase of our upper limbs.</span>\n\n<span style=\"font-weight: 400;\">The integrated system is quite fascinating and still to this day challenges us in terms of its complexities. Everyone TALKS about it but how many practitioners really PRACTISE it in application?</span>\n\n<span style=\"font-weight: 400;\">But let’s keep things simple, when you want to stand, sit (squat), walk and run you need some degree of pelvic function. For these movements to feel good or natural and free from pain or discomfort we need GOOD pelvic function.</span>\n\n<span style=\"font-weight: 400;\">There is evidence that suggests that 60% of dysfunction stems from the pelvis &amp; improving movement at the pelvis has both ascending and descending influences on our function.</span>\n\n<span style=\"font-weight: 400;\">So this is why we are starting here.</span>\n<h3><b>How Deep Should Your Squat Be? A2G? </b></h3>\n<span style=\"font-weight: 400;\">This is a topic of much debate and yet all of the matters covered in this series must be considered before we can identify an individual’s capacity for which depth is appropriate. While there are many factors that should be taken into consideration, it is my opinion that there should be 2 main determining factors:</span>\n\n<span style=\"font-weight: 400;\">1) The pelvis &amp; spine, their health, functional capacity and safe degrees of spinal flexion, extension (we will discuss spine next week)</span>\n\n<span style=\"font-weight: 400;\">2) The knee, its health, functional capacity and safe degrees of flexion (see Squat Project A2G - Part 5 The Knee)</span>\n\n<span style=\"font-weight: 400;\">Ultimately if the aim of your squat is to optimise the development of gluteus maximus then they should be performed to full range as demonstrated by Caterisano’s work. Using EMG data it was concluded that as the depth of squatting increases, gluteus maximus activity increases by 9-14% from partial range to full. It was also found that the bicep femoris does not appear to be more active suggesting that a deeper squat would not work this hamstring muscle more than a parallel squat. Bicep femoris shows no more than 2-3% more activity between a partial squat, parallel squat and full squat. (Casterisano et al, 2002)</span>\n\n<span style=\"font-weight: 400;\">If however, the goal is to target quadriceps, then a squat depth of 90 degrees appears to be optimal, as shown in several of the studies I have come across Van Eijen et al (1987), Signoile et al (1995), Isear et al (1997), Wretenberg et al (2007). Quadriceps activity will gradually increase during the descent of the squat as the degree of knee flexion increases. However, beyond this point the quads are unlikely to enhance their development. On an EMG it has been demonstrated that the 2 vasti muscles produce 40-50% more activity than rectus femoris (Escamilla et al). Narrow or wide stance has not shown to have any greater or lesser effect upon hamstrings and quadriceps activation. VMO activity does increase during greater knee flexion angles as compared to the VL. (McCaw &amp; Melrose, 1999, Signorile et al,1995).</span>\n\n<span style=\"font-weight: 400;\">The rules for spinal alignment during the squat change when you introduce a barbell or resistance. (see Squat Project A2G - Part 3 The Spine)</span>\n\n<span style=\"font-weight: 400;\">When asked common questions like “</span><i><span style=\"font-weight: 400;\">how deep should I squat</span></i><span style=\"font-weight: 400;\">?” we should really be asking a series of questions back before we can even begin to answer with any confidence, starting with ‘</span><i><span style=\"font-weight: 400;\">why are you asking and what are you trying to achieve</span></i><span style=\"font-weight: 400;\">?’. Understanding an individuals intrinsic biomechanics will also mean we have a more objective method of analysis to increase confidence in your exercise prescription.</span>\n\n<span style=\"font-weight: 400;\">Consider your own reasons for squatting or wanting to improve your squat and this will help you moving forwards.</span>\n<h3><b>What Is (good) Squat Technique?</b></h3>\n<span style=\"font-weight: 400;\">My ‘technique’, if you analyse my limb alignment, is actually really out of alignment and many have commented on my photos and videos about what I should do to correct my bad technique. The problem is it is the way my body is stacked up on the inside and a portion of that is joint geometry that I cannot change. However, I am injury and pain free so who cares!?!?!</span>\n\n<span style=\"font-weight: 400;\">Also, you can have amazing ‘technique’ but awful intrinsic biomechanics. This could be an issue waiting to happen. But wait lets define technique…..</span>\n\n<span style=\"font-weight: 400;\">Technique is: </span><i><span style=\"font-weight: 400;\">a way of carrying out a particular task, especially the execution or performance of an artistic work or a scientific procedure, skill or ability in a particular field, a skillful or efficient way of doing or achieving something </span></i><span style=\"font-weight: 400;\">(online Google dictionary)</span>\n\n<span style=\"font-weight: 400;\">We are taught in our industry that knees MUST be inline with toes, backs MUST be rigidly straight and upright, joints MUST not lock out etc. Yet even when watching the ‘best’ athletes in the world you will notice in may cases their ‘technique’ may not be perfect even though they can produce phenomenal outcomes and performance. </span>\n\n<span style=\"font-weight: 400;\">However to flip that debate we do need some kind of benchmark when coaching clients movement. There are better joint alignments for force production and performance, however, there are better limb lengths for this too of which we have no choice. (oh to have short femurs like those Chinese Olympic lifters! Lol )</span>\n\n<span style=\"font-weight: 400;\">The challenge for us is what is poor technique and what is poor biomechanics?</span>\n\n<span style=\"font-weight: 400;\">Yes even top athletes carry intrinsic dysfunction, having screened a few they are in the same ‘state’ as the rest of us, probably for the same reasons. </span>\n\n<span style=\"font-weight: 400;\">Function over technique every time for long term physical health and performance. </span>\n\n<span style=\"font-weight: 400;\">If you have a client who just can’t seem to squat no matter how many of your great coaching tactics you use, well there is a good chance it could be an intrinsic factor. THIS is what we are looking at here when it comes to improving your squat.</span>\n\n<b>Preparation/Performance </b>\n<h3><b>How To Test &amp; Improve Your Pelvic Function</b></h3>\n<span style=\"font-weight: 400;\"><a href=\"https://youtu.be/Z7oSs8sxmk0\" target=\"_blank\" rel=\"noopener\">Watch the video below</a> to see how to demonstrate not only how to test and improve your pelvic function but also how you might apply strength training to ‘move’ towards a more long term solution to improved pelvic function.</span>\n\nhttps://youtu.be/Z7oSs8sxmk0\n<h3><b>Key Points To Understand To Improve Your Squat</b></h3>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The body works as an integrated system</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The body is a master of compensation </span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Everything can influence your body (mood, shoes, sleep, job, exercise, weather)</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Keep it simple, start with the least intrusive interventions first.</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Preparation is much more than a 5 minute treadmill walk/jog</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The Beyond 90 Challenge </span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"list-style-type: none;\">\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Be patient!</span></li>\n</ol>\n</li>\n</ol>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Move well, THEN Move more (Gray Cook)</span></li>\n</ol>\n<h3></h3>\n<h3><b>What To Expect In Part 3: The Spine....</b></h3>\n<span style=\"font-weight: 400;\">So as you work towards improved pelvic function here is what we will be discussing next time…</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">How you can test your spinal mobility </span></li>\n 	<li><span style=\"font-weight: 400;\">(QL Test, Flexion Test, Thoracic Rotation Test, Extension Test)</span></li>\n 	<li><span style=\"font-weight: 400;\">The Weak Core fallacy </span></li>\n 	<li><span style=\"font-weight: 400;\">Break Points </span></li>\n 	<li><span style=\"font-weight: 400;\">Belts or Not while squatting?</span></li>\n 	<li><span style=\"font-weight: 400;\">The weak core fallacy</span></li>\n</ul>\n<span style=\"font-weight: 400;\">---------------------------------------------------------------------------------------</span>\n\n<span style=\"font-weight: 400;\">Finally for those of you who enjoy reading research….</span>\n\n<b>Which Muscles? Front Vs Back Squat</b>\n\n<span style=\"font-weight: 400;\">Gullett, et al (2008) did a study looking at which muscles are being used in 2 of these variations. The front squat and the back squat with a high bar position. The 15 healthy individuals had been performing front and back squats on a regular basis for a minimum of 12 months prior to the research. Using EMG to measure specifically the activity of </span><b>rectus</b> <b>femoris (RF), vastus lateralis (VL) </b><span style=\"font-weight: 400;\">and </span><b>vastus medialis (VM)</b><span style=\"font-weight: 400;\">, </span><b>bicep</b> <b>femoris (BF) </b><span style=\"font-weight: 400;\">and </span><b>semintendinosus (ST)</b><span style=\"font-weight: 400;\"> ,and the </span><b>erector spinae (ES),</b><span style=\"font-weight: 400;\">this was what they found:</span>\n\n<span style=\"font-weight: 400;\">When comparing the differences, the back squat had higher hamstring activity to the front squat. The back squat had lower quadriceps activity in VL and RF. VM was equal in both squats. Front squats had higher activity in the erectors of the spine compared to back squats. </span>\n\n<span style=\"font-weight: 400;\">When looking at the data this is how it compared:</span>\n\n<b>EMG                                          Back squat Front squat</b>\n\n<span style=\"font-weight: 400;\">Hamstrings (BF &amp; ST)                    Higher Lower</span>\n\n<span style=\"font-weight: 400;\">(Quadriceps)</span>\n\n<span style=\"font-weight: 400;\">Vastus lateralis                               Lower Higher</span>\n\n<span style=\"font-weight: 400;\">Rectus femoris                               Lower Higher</span>\n\n<span style=\"font-weight: 400;\">Vastus medialis                              Similar Similar</span>\n\n<span style=\"font-weight: 400;\">Lower back (erector spinae)           Lower Higher</span>\n\n<b>Biomechanical analysis</b>\n\n<span style=\"font-weight: 400;\">Compressive force                          Higher Lower</span>\n\n<span style=\"font-weight: 400;\">Knee extensor moments                 Higher Lower</span>\n\n<span style=\"font-weight: 400;\">Shear stress                                   Similar Similar</span>\n\n<span style=\"font-weight: 400;\">Conclusion</span><span style=\"font-weight: 400;\">: With less weight, front squatting results in the same muscle activation as back squatting with a bigger weight. BUT using a lesser weight to perform the front squat does mean compressive forces at the knee are going to be lower. This would indicate that those who have knee problems such as ligament damage or meniscus tears, or osteoarthritis, should stick with the front squat since compressive forces can damage knee cartilage.</span>\n\n<hr />\n\n<h2><!-- wp:heading --></h2>\n<h2><!-- wp:heading --></h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h2><!-- /wp:heading --> <!-- wp:paragraph --></h2>\nThen <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!\n<h2><!-- /wp:paragraph --> <!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} --></h2>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>\n<h2><!-- /wp:image --></h2>\n<div class=\"wp-block-image\"></div>\n<h2><!-- /wp:image --> <!-- wp:paragraph --> <!-- /wp:paragraph --></h2>','Project Squat - Part 2 - How To Test For & Improve Your Pelvic Function & How It Affects Your Squat','','inherit','closed','closed','','7591-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',7591,'https://biomechanicseducation.com/?p=38758',0,'revision','',0),(38759,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','One thing I get asked over and over again is... \"<em>How can I improve my squat</em>?\". I get asked how to squat ass to grass (A2G), or depending on where you are from \"arse to grass\". I get asked about squat mechanics and so much more. I think I get asked about the squat a lot for a few reasons... If you follow me on instagram you will KNOW how much I love the squat and am always talking about it, but really because a lot of people use it as their standard measure of movement.\n\nSo I thought I would put together a video series to help you, and if you are a personal trainer, to help you help your clients achieve a better squat.\n\nSo take a few minutes today to watch part 1..... Just click the play button now... (if you can\'t watch for whatever reason, then you can read the post below the video...\n\nhttps://youtu.be/juSK5KxCEbg\n\nWith the day to day routines that we put our bodies through majorly affect our mechanics.... sat at desk bent over a computer, texting all day on the phone, causes our body to compensate. So first up we have to find out where the limitations in your, or your clients, body are.\n\nSo how do you know if its just simply bad technique or a limitation within the muscular system, skeletal system or your neural system? Watch the video and find out.\n<h3>Can\'t Watch The Video... Read On</h3>\n<span style=\"font-weight: 400;\">You squat right?</span>\n\n<span style=\"font-weight: 400;\">I KNOW you squat and do you know how I know?</span>\n\n<span style=\"font-weight: 400;\">Each time to sit and stand you squat (and yes that includes when you poop! see squatty potty <a href=\"https://www.youtube.com/watch?v=YbYWhdLO43Q\" target=\"_blank\" rel=\"noopener\">HERE</a> for evidence of this) </span>\n\n<span style=\"font-weight: 400;\">Squatting is a fundamental combination of human movements that contribute to your lower body function and yet still THE most common question I get asked is;</span>\n\n<i><span style=\"font-weight: 400;\">“What’s the best way to squat?”</span></i>\n\n<span style=\"font-weight: 400;\">Now I also KNOW that you have seen others squatting, chances are you even asked your client to squat and while watching them you thought; </span>\n\n<i><span style=\"font-weight: 400;\">“Heck that looks really awkward, what on earth is causing them to squat like that?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Could it be their tight calves? hey no actually it looks like it is their tight pelvis, oh wait a minute maybe it is their stiff spine….?”</span></i>\n\n<span style=\"font-weight: 400;\">I KNOW you KNOW what I am talking about and it is damned frustrating isn’t it? Especially when you can’t work out what’s limiting them, right?</span>\n\n<span style=\"font-weight: 400;\">In my opinion if we try to improve our squatting technique this crosses over into so many other movements this single focus can have a huge impact on our entire movement profile - it certainly did for me!</span>\n\n<span style=\"font-weight: 400;\">Having studied the squat for several years and being a real geek when it comes to the squat due to its impact on my own training I wanted to share some of my thoughts and attempt to help you answer some of those squat questions you have been sending me.</span>\n\n<span style=\"font-weight: 400;\">However, as with my previous squat research (initiated by a nasty trolling experience but which resulted in a 6 piece article) this ‘discussion’ will take more than one blog/video tutorial to cover all of the things we should consider when looking to improve our squatting technique.</span>\n\n<b>Goal Clarity &amp; Context</b>\n\n<span style=\"font-weight: 400;\">One of the fundamental errors when discussing squatting in our industry is </span><span style=\"font-weight: 400;\">context</span><span style=\"font-weight: 400;\">. </span>\n\n<span style=\"font-weight: 400;\">So let me clarify this first:</span>\n\n<span style=\"font-weight: 400;\">Consider your goal first, with absolute clarity asking yourself;</span>\n\n<span style=\"font-weight: 400;\">Why do I want to squat? </span>\n\n<span style=\"font-weight: 400;\">Do I want to perform a specific task?</span>\n\n<span style=\"font-weight: 400;\">Is it because I have been told I need to be able to squat?</span>\n\n<span style=\"font-weight: 400;\">Do I want to grow my leg muscles?</span>\n\n<span style=\"font-weight: 400;\">Do I want more lower body stability?</span>\n\n<span style=\"font-weight: 400;\">Do I want to become a competitive powerlifter?</span>\n\n<span style=\"font-weight: 400;\">Am I just seeking improved movement?</span>\n\n<span style=\"font-weight: 400;\">Has my present squat highlighted some movement limitations?</span>\n\n<span style=\"font-weight: 400;\">Once you have decided upon your goal make sure you keep that in focus every time you are choosing which type of squat to practice, whether you will need a load and if so what the load will be and also where will you hold it?</span>\n\n<span style=\"font-weight: 400;\">There are so many variations of the squat and they often have interesting names too, however, I will always endeavour to clarify the type of squat movement to maintain context for relevance to any points being made. </span>\n\n<span style=\"font-weight: 400;\">Let me give you an example of 2 quite different squat goals….</span>\n\n<span style=\"font-weight: 400;\">A 50 year old who wishes to simply maintain and/or improve their present movement ability.</span>\n\n<span style=\"font-weight: 400;\">A 23 year old amateur competitive powerlifter </span>\n\n<span style=\"font-weight: 400;\">Both completely different goals, therefore, different squatting programmes are required, even though there are possibly some crossover points within their training. </span>\n\n<b>Technique or Compensation? Assessing The Issues In Your Squat</b>\n\n<span style=\"font-weight: 400;\">Another BIG topic for us to discuss will be about extrinsic v’s intrinsic biomechanics or simply put, what we can see and what we can’t see.</span>\n\n<span style=\"font-weight: 400;\">As we watch our clients squatting what we see is </span><i><span style=\"font-weight: 400;\">extrinsic</span></i><span style=\"font-weight: 400;\"> and while we are experts at coaching great movement using what we see, very often clients can still struggle. </span>\n\n<span style=\"font-weight: 400;\">What we need to attempt to identify is whether they have any </span><i><span style=\"font-weight: 400;\">intrinsic</span></i><span style=\"font-weight: 400;\"> compensation that no amount of coaching can settle however by adding some simple moves to their warm up can potentially be easily improved. </span>\n\n<b>Setting A Benchmark For Your Squat</b>\n\n<span style=\"font-weight: 400;\">So I have created a short video to kick things off and set up your squat </span><i><span style=\"font-weight: 400;\">BENCHMARK</span></i>\n\n<span style=\"font-weight: 400;\">We can reproduce your benchmark over the series of tutorials to monitor your squat &amp; I will introduce you to some great apps to allow you to see your first &amp; final photo alongside each other to see just how much you improve along the way.</span>\n\n<b>Questions Please!?</b>\n\n<span style=\"font-weight: 400;\">So I need your questions to enable me to address issues YOU wish to discuss rather than what I THINK you wish to discuss!</span>\n\n<span style=\"font-weight: 400;\">Send your No.1 Squat question to </span><a href=\"mailto:rachel@biomechanicseducation.com\"><span style=\"font-weight: 400;\">rachel@biomechanicseducation.com</span></a>\n\n<span style=\"font-weight: 400;\">Feel free to share your photos / videos so we can do this together &amp; I can guide YOU more effectively.</span>\n\n<span style=\"font-weight: 400;\">Here are some examples of benchmarks sent in so far...</span>\n\n<b><img class=\"aligncenter size-large wp-image-7527\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/06/Biomechanics-Coaching-How-To-Squat-Ass-To-Grass-Project-Squat-1024x1024.jpg\" alt=\"\" width=\"1024\" height=\"1024\" /></b>\n\n<b>Safety Is Paramount</b>\n\n<span style=\"font-weight: 400;\">Never forget to never compromise safety for ROM! This will also be highlighted throughout.</span>\n<h3>Subscribe To The Biomechanics Education YouTube Channel For More</h3>\nStay tuned for the next few videos which are going to guide you through the steps to getting a better squat. <a href=\"https://www.youtube.com/channel/UCONlszVeKpExJctWwa9sjUQ?sub_confirmation=1\" target=\"_blank\" rel=\"noopener\">Make sure you subscribe to the Biomechanics Education youtube channel, just click here to do that!</a>\n\n<hr />\n\n<h2><!-- wp:heading --></h2>\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h2><!-- /wp:heading --> <!-- wp:paragraph --></h2>\nThen <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\" (opens in a new tab)\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!\n<h2><!-- /wp:paragraph --> <!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} --></h2>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>\n<h2><!-- /wp:image --> <!-- wp:paragraph --> <!-- /wp:paragraph --></h2>','How To Squat Ass To Grass (A2G) - Project Squat - Part 1','','inherit','closed','closed','','7522-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',7522,'https://biomechanicseducation.com/?p=38759',0,'revision','',0),(38760,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">Functional, multi-joint screening and conditioning has been around for 50 years or more.  We have been using those principles for the last 20 years in our facilities and these principles can have a profound effect on human performance, risk reduction and management.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, having used them for 10 years we began to realise that functional screening is not the panacea for all ills and there are fundamental areas that it does not address. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">People still get injured and their performances can still be compromised despite being functionally trained.  The problem with the fitness industry, in particular, is that functional training has only been recently introduced so it\'s not at the point where it\'s been able to work this out yet, it\'s not been around for long enough in this area.  As specialists in rehabilitation and conditioning for elite and recreational sportspeople, we have found that there are huge flaws in only using one type of screening. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over the last 20 years, we have developed a screen that compliments all other forms of screening, including functional, postural, physiological and even psychological screening. It\'s called Biomechanical screening. Nothing new in the name, but this is ‘Intrinsic’ Biomechanical screening, not the extrinsic, which is usually associated with the word Biomechanical.  Here we work on single joints and systems. The principle is simple; with functional screening, by definition more than one joint is being tested, otherwise it wouldn’t be functional. The problem is that if one joint is dysfunctional, with the body being a master of compensation, other joints can take over and you can still pass a functional screen and you don’t always have a visual movement impairment. In fact, often you don’t. So it is important to have a single joint screen to compliment any functional screen to ensure this does not occur. <strong> In</strong> <strong>fact, we have found with our work that you can have clients who pass a functional screen but still have single joint problems</strong>; and the biomechanical screen picks them up. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Often we find that by taking someone through a biomechanical screen and getting them through that, they frequently pass a functional screen anyway. The brain is the most sophisticated engine management chip, often you can provide it with the right equipment and it will sort out the functional movement by itself.....that’s what its designed to do, and often far better than any exercise programme you or I can provide.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Even our functional training gurus have started to realise this is true. One of our Biomechanics Coaches&#x2122;, who is also an international Strength and Conditioning Coach, sent a quote from an extract by Mike Boyle from a blog, <em>“[Gray] Cook\'s thoughts were simple and led me to </em>realise<em> that the future of training may be a joint-by-joint approach rather than a movement-based approach. Gray\'s analysis of the body was a straightforward one; in his mind, the body is a just a stack of joints. Each joint or series of joints has a specific function and is prone to specific, predictable levels of dysfunction. As a result, each joint has specific training needs.”</em>  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They are right, and I’m delighted for their ‘functional disciples’ that they have finally come round to recognise this essential point of view.  Hopefully now they will open their minds to this critical factor now they have ‘permission’.</span>\n\n&nbsp;\n\nThis post was brought to you by Martin Haines, Specialist <span style=\"font-weight: 400;\">Biomechanics Coach&#x2122; &amp; Chartered Physiotherapist.</span>\n\n&nbsp;\n\n<em>And I would like to add a few of my own thoughts... I am sure Martin won\'t mind....</em>\n\n<em>This brings a whole host of other questions and thoughts... If you can pass a functional screen but fail a single joint screen, then what is going on?</em>\n\n<em>As Martin says, the body is amazing and will help you create whatever movement you want to. The problem is, often you will create the movement in a way that is not the most efficient. Muscles doing other muscles jobs or compensating for their partners etc.</em>\n\n<em>All this leads to a much higher risk of injury or at best a decrease in performance.</em>\n\n<em>As a movement coach, you have the ability to improve their movement and performance dramatically if you help each joint function better.</em>\n\n<i>So this topic is what has driven my desire to release a series of squat video tutorials and of course also a result all of the questions I receive about squatting!</i>\n\n<em>The squat is an example of one of Gray\'s functional movement screens and also a fundamental human movement required for every day life and yet so many of us struggle with it, why? Well there are so many reasons why due to all of the joints involved and t</em><em>hat is exactly what I will be exploring with you so keep watching....</em>\n\n&nbsp;\n\n&nbsp;\n\n<em>Rachel France</em>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','Single Joint Vs Functional Assessments - A Personal Trainer\'s Guide','','inherit','closed','closed','','7474-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',7474,'https://biomechanicseducation.com/?p=38760',0,'revision','',0),(38761,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<h3><strong>All Biomechanical Studies Are Flawed</strong></h3>\n<span style=\"font-weight: 400;\">Pretty bold statement eh?</span>\n\n<span style=\"font-weight: 400;\">You see I like to challenge things to enable me to truly understand the information I am processing, don’t you?</span>\n\n<span style=\"font-weight: 400;\">Have you ever discovered something that completely changes your paradigm?  </span><span style=\"font-weight: 400;\"><a href=\"https://www.biomechanicseducation.com/how-a-paradigm-shift-can-change-how-you-feel-in-a-moment/\" target=\"_blank\" rel=\"noopener\">Read my previous blog Paradigm Shifting</a> </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You cannot UNLEARN something can you? Once you hear it and the thought goes in it can shift all of your thinking to another way of viewing things.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me give you an example I have experienced and hopefully explain why I feel that all biomechanical studies are flawed.</span>\n\n<span style=\"font-weight: 400;\">Biomechanical studies usually start with subjects described as...</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">‘Twenty five subjects volunteered to participate in the study (age range 21-53).......All subjects met the criteria of full range of motion in the joints of the lower limb (</span></i><i><span style=\"font-weight: 400;\">McRae 1990</span></i><i><span style=\"font-weight: 400;\">). Any subject, patient or staff was excluded if they were suffering from any disease that compromised lower limb function (e.g. osteoarthritis) or who presented with pelvic or spinal problems that can often mimic LLD symptoms. </span></i>\n\n<i><span style=\"font-weight: 400;\">Subjects that demonstrated a functional LLD were also excluded’</span></i>\n\n<b>(The reliability and validity of the `Tape\' and `Block\' methods for assessing anatomical leg-length discrepancy - </b><span style=\"font-weight: 400;\">Tracy Middleton-Duff, Keith George and Alan Batterham 1999-2000</span><b>)</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However I am quite sure, you can imagine, that when it comes to the human body, your clients bodies, it is never just a single answer to our movement limitations. </span>\n\n<span style=\"font-weight: 400;\">What does this mean? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well those 25 subjects may well have all been between certain ages, had a structural LLD and full ROM in the lower limb joints (McRae 1990) BUT was the rest of thier biomechanics assessed for similarities or differences?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What would be an example?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok literally EVERYONE is harping on about the whole body being connected, kinetic chains, myofascial trains etc BUT who is actually practicing this in terms of analysis for research into biomechanical questions?</span>\n\n&nbsp;\n<h3>How The Shoulder Influence\'s The Foot.... Or Visa Versa</h3>\n<span style=\"font-weight: 400;\">So here is a 7 minute video (in case you missed it) where I demonstrate the shoulder influence on the foot…</span>\n\n&nbsp;\n\nhttps://youtu.be/la6jOLuMSiU\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway being slightly into biomechanics I have read one or two papers around this area and each time I see the subjects description of commonality, I see that they are only ever really compared by age, sex, skills level, sport, injury and maybe duration of training for example. </span>\n\n<span style=\"font-weight: 400;\">Nowhere have I seen biomechanical studies with a common </span><i><span style=\"font-weight: 400;\">biomechanical</span></i><span style=\"font-weight: 400;\"> start point in terms of pelvic function, spine mobility and strength ratio comparisons, shoulder function, knee and foot stability all giving a common </span><i><span style=\"font-weight: 400;\">biomechanical </span></i><span style=\"font-weight: 400;\">start point. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">An example might be a study measuring forces at the knee of a group of subjects of the same/similar age, some sport and with a similar training history/duration. However there is not record of their pelvic function, if they have tight sciatic nerves or hinges in their QL - ALL of which could contribute to changing the loads being measured at the knee.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does this make sense? It all means that the more I learn about research, the more I learn about biomechanics, the more I challenge it because of what I have learned. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I see this as a good thing - frustrating but healthy.</span>\n\n&nbsp;\n<h3>How To Improve YOUR Squat - The Biomechanical Guide</h3>\n<span style=\"font-weight: 400;\">Now recently I have been getting a lot of messages from those of you who watch my Instagram videos, about comparing your squats to mine. </span>\n\n<span style=\"font-weight: 400;\">The most common question being how do you manage to squat A2G or bum to the floor?</span>\n\n<span style=\"font-weight: 400;\">This has set me thinking about how the body works as an integrated system and how we all squat differently and probably actually should all squat differently too. </span>\n\n<span style=\"font-weight: 400;\">So how would you like me to start a </span><b><i>‘How To Improve Your Squat’</i></b><span style=\"font-weight: 400;\"> video tutorial series?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over this series of short videos I will endeavour to answer all of your squatting questions and dilemmas and demonstrate some really cool techniques to both test and improve your intrinsic biomechanics function. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like that?</span>\n\n<span style=\"font-weight: 400;\">Hit me with your squat questions and here are a few that I have on my list already…</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“What if we can’t break parallel…what can we do to help that?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“Are there more benefits of A2G over say a parallel squat?</span></i>\n\n<i><span style=\"font-weight: 400;\">“What about knees over toes….?”</span></i>\n\n<i><span style=\"font-weight: 400;\">“How can I get my back straighter during the squat?”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All really great questions and I will address each over the </span><b><i>How To Improve Your Squat’</i></b><span style=\"font-weight: 400;\"> video tutorial series.</span>\n\n<span style=\"font-weight: 400;\">You can follow it on <a href=\"https://www.instagram.com/biomechanics_education/\" target=\"_blank\" rel=\"noopener\">Instagram</a>, <a href=\"https://www.youtube.com/user/rachfit12\" target=\"_blank\" rel=\"noopener\">Youtube</a> or <a href=\"https://www.facebook.com/biomechanicseducation/\" target=\"_blank\" rel=\"noopener\">Facebook</a></span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','Are All Biomechanical Studies Flawed? And Would You Like To Squat Better?','','inherit','closed','closed','','7297-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',7297,'https://biomechanicseducation.com/?p=38761',0,'revision','',0),(38762,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">Walking down the street, training at the gym, watching girls teeter in high heels on a night out or walking knock kneed in their Uggs, watching the way people sit at events, at work or in the waiting room at the doctors is something I find quite fascinating. </span>\n\n<span style=\"font-weight: 400;\">Call me voyeuristic but I genuinely am just a geek and fascinated when it comes to watching human movement and analysing physical variations in our body types and the way we move because of those variations. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Why does THAT happen? Why do THEY walk THAT way?</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Being on holiday the examples of our differences are more obvious with less clothing and what I noticed while on holiday was that we really should...</span>\n\n<i><span style=\"font-weight: 400;\">..Embrace OUR Genetics!</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having spent 2 weeks half naked, with half naked people, lying around a pool watching each other walk to the bar or apply cream, step into a pool, swim, pick up kids, eat ice cream etc etc...</span>\n\n<span style=\"font-weight: 400;\">It really does emphasise human movement variations and of course the variations of aesthetics. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is truly fascinating to see the many different body types from large to small, tall to short etc. It made me think about the ‘ideal’ body concept and in fact how dull and boring it would be if we all looked and moved the same way or if we ALL had those \'magazine cover\' bodies, the same hair styles, the same limb lengths, waist circumferences etc!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What Do You Think?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">..in MY opinion using aesthetics as THE goal is possibly not the best way to plan exercise programmes even if that is ultimately the clients perceived end goal. If you were to delve deeper with the client about their TRUE goal there is a good chance it is really all about how they FEEL about themselves, inside their skin. </span>\n\n<span style=\"font-weight: 400;\">(Here I am talking about the average client as opposed to competitive bodybuilders of course, since bodybuilding is an aesthetically judged competition rather than health and fitness being the goal)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Creating a goal that is more health and/or fitness related will of course still result in improved aesthetics based on THEIR body type, THEIR frame and THEIR genetics. Having this shift in the training programme goal offers more opportunity for positive achievement/s AND a more positive shift towards a realistic body image. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Which is better...A better you or striving to look like someone else?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is of course the beautiful aspect of our differing bodies types. From the cute PSIS dimples above large OR small and maybe wide OR narrow round buttocks. These dimples can appear wide or narrow or some people don\'t see to have any! There are various textures of tanned skin, even different ‘shades’ of white skin and some have scars or birthmarks that no one else in the world has!  </span>\n\n<span style=\"font-weight: 400;\">There is a huge variety of long OR short soleus calf muscles above feet that turn out OR turn in OR </span><i><span style=\"font-weight: 400;\">flick</span></i><span style=\"font-weight: 400;\"> a certain way during their bare foot walk across the tiles. Some spines rotate and some stay rigid during movement. LONG shins, short shins, slim arms, muscly arms, baggy triceps and bulging ones.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Seriously imagine if we ALL actually looked the same!!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BOOOOOOORRRRIIING!!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As exercise professionals we get frustrated that every client wanting to look a certain way, like in the magazines. Asking for 6 pack abs, more rounded delts, pert buttocks, slimmer thighs and yet some of us are just not built that way. </span>\n\n<span style=\"font-weight: 400;\">We also struggle to understand why people move the way they do, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT WE ARE ALL DIFFERENT!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So of course this will be a challenge for anyone trying to apply a system to human movement…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">NO ONE SYSTEM WORKS THE SAME FOR EVERYONE!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So we should receive an education that embraces the differences between us all rather than EXPECTS us ALL to look or move the same way. We should maintain an open mind to what our clients are capable of when using their bodies. A realistic aim or goal should always be individual to that person in relation to their history, genetics, lifestyle, diet, biomechanics and movement ability or capacity.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You do realise the MORE you know, the LESS you realise you know, right? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So we should also demonstrate duty of care to our clients by continuing to attend up to date CPD’s, further training and we should also read more and do our OWN research to develop our OWN methods of application for the best care of OUR clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WELL did you know as a fitness professional you already learn\'t one of the simplest and applicable methods to analyse human movement (without any fancy equipment) as an exercise professional?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YUP</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group Action of Muscles is what we call our </span><i><span style=\"font-weight: 400;\">movement analysis</span></i><span style=\"font-weight: 400;\"> study in our academy. This is where we take our learners back to their A&amp;P training, which often gets forgotten due to the fact we only ever using lay language with our clients! So we lose the skill of recalling the analysis of abduction, rotation, flexion etc as part of movements during our exercise prescription. PLUS the skeletal movement is disguised by lots of soft tissue (muscle, fat, fascia, nerves, skin etc) covering it which is the part of the anatomy we use to understand those joint actions. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my experience it is very rare that a learner has come in and easily nailed this session. Yet it is what we are taught right at the beginning of our training!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are the reasons professionals give for attending our CPD workshops:</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">I want to understand the body and movement better </span></i>\n\n<i><span style=\"font-weight: 400;\">I want to learn more about the anatomy </span></i>\n\n<i><span style=\"font-weight: 400;\">I want to understand how we move on the inside</span></i>\n\n<i><span style=\"font-weight: 400;\">I want to understand why people move badly</span></i>\n\n<i><span style=\"font-weight: 400;\">I want to understand how to help people move better</span></i>\n\n<i><span style=\"font-weight: 400;\">I want to understand why they ache hurt get injured</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we remembered out level 3 A&amp;P we would already have many of these skills and be more confident. We also hear…</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“but I never use this language with my client!?”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">agonist </span></i>\n\n<i><span style=\"font-weight: 400;\">antagonist </span></i>\n\n<i><span style=\"font-weight: 400;\">synergists</span></i>\n\n<i><span style=\"font-weight: 400;\">dynamic stabilisers </span></i>\n\n<i><span style=\"font-weight: 400;\">fixators</span></i>\n\n<i><span style=\"font-weight: 400;\">abduction</span></i>\n\n<i><span style=\"font-weight: 400;\">adduction </span></i>\n\n<i><span style=\"font-weight: 400;\">rotation </span></i>\n\n<i><span style=\"font-weight: 400;\">flexion </span></i>\n\n<i><span style=\"font-weight: 400;\">extension </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">..of course, me neither !! BUT if we talk to </span><i><span style=\"font-weight: 400;\">each other</span></i><span style=\"font-weight: 400;\"> this way then at least we can enhance our recall AND memory of it. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sadly the fitness industry in particular causes many of us to feel we can\'t admit to how bad our A&amp;P memory really is. If we are really honest it’s really poor isn’t it and therefore not surprising many exercise professionals lose confidence in what they are looking at when watching clients move! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are expected to achieve so much when it comes to improving movement when we cannot even work out the WHY from WHAT we see. </span>\n\n<span style=\"font-weight: 400;\">Clients are suffering more and more due to lifestyles and our job of choosing the best exercise programme is getting even harder as everyone has SOMETHING limiting them, eh!</span>\n\n<span style=\"font-weight: 400;\">In our academy we GIVE YOU REASONS to remember your anatomy which gives you increased confidence when watching your clients move. </span>\n\n<span style=\"font-weight: 400;\">So while embracing our differences, let\'s start getting serious about understanding human movement and improving confidence in movement, being in our own skin and of course function.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember PERFECTION does not exist…that would be SO dull! In fact... embrace the imperfections!</span>\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\n\n&nbsp;','Embrace Your Genetics & Imperfections & Why Personal Trainers Should Treat Every Client As An Individual','','inherit','closed','closed','','7228-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',7228,'https://biomechanicseducation.com/?p=38762',0,'revision','',0),(38763,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">Something I always encourage my learners to do is challenge everything, even what I tell them. I suggest they do not simply accept what people say as being fact but that they should gather enough information to come to a conclusion that THEY are satisfied with for their own conceptualisation, logic and application.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having been a teacher for 25 years in various forms from delivering exercise classes to teaching PT’s and physiotherapists about biomechanics to helping podiatrists understand how to prescribe exercises I know one thing is for sure, we all learn in different ways and at different rates. Communication is key when passing on information, which I know I have written about before, but I cannot stress this point enough. The WAY we say things or even deliberate silences can have a huge impact on a learner receiving new information, which for some can be a daunting time. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There seems to be such an emphasis on ‘level’ in the sense that a hierarchy of intelligence exists and I am sure this is correct in some form. However some of the </span><i><span style=\"font-weight: 400;\">smartest</span></i><span style=\"font-weight: 400;\"> people I know are not naturally ‘academic’ and some cannot even read that well or write grammatically correctly (me included!!), does that stop them, us, me being intelligent? Clearly, it comes back to how you </span><span style=\"font-weight: 400;\">measure</span><span style=\"font-weight: 400;\"> intelligence.</span>\n\n<span style=\"font-weight: 400;\">So with so many educators out there let\'s consider who we should be guided by when it comes to intelligence. Let us consider how we are </span><span style=\"font-weight: 400;\">measuring</span><span style=\"font-weight: 400;\"> this ‘hierarchy’ of intelligence so to speak.</span>\n\n<span style=\"font-weight: 400;\">or </span>\n\n<span style=\"font-weight: 400;\">More to the point how SHOULD we measure it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, I guess that would depend upon the industry or relevance. So let\'s take our industry since this is the one that has inspired me to write this article. </span>\n\n<span style=\"font-weight: 400;\">Now I meet a lot of people as I travel and many are what would be classed as very intelligent when it comes to qualifications and/or experience. </span>\n\n<span style=\"font-weight: 400;\">Yet it stuns me how badly some of these really smart people communicate that intelligence.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me give you a couple or simple examples and you tell me..</span>\n\n<span style=\"font-weight: 400;\">(This is simply an example to make a point by the way):</span>\n\n&nbsp;\n<h3><strong>Which Personal Trainer is the <i>INTELLIGENT</i> one?</strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Example 1:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The PT with LOADS of qualifications, piles of certificates, loads of books and the ability to cite research papers left right and centre. This guy is often so busy taking courses he barely covers costs with what he makes from his clients. He KNOWS a lot but scrapes by and wonders why.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Compared to;</span>\n\n<span style=\"font-weight: 400;\">The PT who is not as well read or so extensively qualified but has AMAZING communication skills and makes ALL their clients feel fantastic while in their company. This means they achieve client adherence and this PT is extremely successful commercially. </span>\n\n<span style=\"font-weight: 400;\">He is financially doing really well and has a great sense of job satisfaction.</span>\n\n&nbsp;\n<h3>Which Teacher/Presenter Is The INTELLIGENT One?</h3>\n<span style=\"font-weight: 400;\">The presenter who delivers fantastically complex information of their thoughts and ideas and concepts so mind-boggling it </span><i><span style=\"font-weight: 400;\">‘blows your mind’ </span></i><span style=\"font-weight: 400;\">but while you’re impressed you are struggling to work out how YOU can apply the awesomeness you just heard.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Compared to;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The presenter who uses an economy of words, offers very simple concepts with more audience interaction, while delivering possibly less information overall BUT they give you ideas to allow you to apply what they are sharing with you</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My point here is that intelligence can be measured in several ways and is way more influential when it is communicated well. Lack of clarity or specificity is not helpful to others.</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“If you can\'t explain it simply you do not understand it well enough”</span></i>\n\n<span style=\"font-weight: 400;\">Albert Einstein </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Simplicity is the ultimate form of sophistication”</span></i>\n\n<span style=\"font-weight: 400;\">Leonardo Da Vinci</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Complexity is the enemy of execution</span></i><span style=\"font-weight: 400;\">”</span>\n\n<span style=\"font-weight: 400;\">Tony Robbins</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Is it good enough to simply hear smart people telling us what they know?</span>\n\n<span style=\"font-weight: 400;\">Or is it enough simply having loads of knowledge, information packed away in your head if you are unable to apply it, communicate it and utilise it to your advantage?</span>\n\n<span style=\"font-weight: 400;\">Of course intelligence can be measured by taking an IQ test or passing exams but TRUE intelligence is surely being able to use it, express it and pass it on right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now back to my classroom where I do my very best NOT to answer questions raised by my learners. (Yes it is true, ask them!)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When I qualified with QTLS (Qualified Teacher Learning &amp; Skills Status) one of the primary things I came away with was that a </span><i><span style=\"font-weight: 400;\">‘Learner lead’</span></i><span style=\"font-weight: 400;\"> classroom should be how we deliver content. The learners take priority over the teacher in the way the content is discussed, facilitated and therefore delivered. Clearly, there is a lesson plan but with much scope for tasks and discussion so that the individuals present can facilitate themselves to a level of understanding appropriate to their individual experiences and areas of knowledge. Peer discussions are extremely healthy where opinions are permitted with justifications for those opinions. It would be unfair to tell someone else they are wrong when the subject matter is presented based upon that individuals experiences, opinion and alongside a justification for the way they have presented it, don’t you think?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So back to my point; </span>\n\n<span style=\"font-weight: 400;\">Surely it is also healthy to accept that we may not agree on certain views or opinions due to our different experiences and backgrounds, right?</span>\n\n<span style=\"font-weight: 400;\">We form views and attitude from our previous experiences and interactions with others right from being babies through to children and on to adulthood. The amount of variables make us individually complex and this is what makes meeting new people so fascinating and interesting.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my experience many people in our industry are not necessarily ‘academic’ types, certainly I myself and a lot of my learners are generally more kinesthetic learners who process information better through doing, rather than reading or writing. So when faced with technically challenging information we often take a while to develop ways to put information into practice. The skills we ALL require are theory, psychological and practical based to be best placed to help improve clients physicality and health. But in my opinion predominantly practical and psychological for exercise prescription based work. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My learners, the professionals I meet are REALLY intelligent people, who interact smartly, consciously, with care and thought for those they come into contact with. Just because for many of us, our learning style is such that we have to take a clini-band to a skeleton to really understand what muscles do while we ‘work it out in our heads’ or because we have to get up and move our legs to workout which is the agonist, which is the antagonist and which muscles are synergists doesn’t make us </span><i><span style=\"font-weight: 400;\">less</span></i><span style=\"font-weight: 400;\"> intelligent people.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Communication is key to success when passing on information. Having some empathy for those listening to us while we deliver information (knowing our audience) is also key for learning and development to occur.</span>\n\n<span style=\"font-weight: 400;\">We should accept being challenged as a compliment that someone is seeking our ideas and input but we should also </span><i><span style=\"font-weight: 400;\">respect</span></i><span style=\"font-weight: 400;\"> their response when asking for it!</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','How \"Intelligent\" Are You? And Does It Actually Matter?','','inherit','closed','closed','','7098-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',7098,'https://biomechanicseducation.com/?p=38763',0,'revision','',0),(38764,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">As you may, or may not, know I get to travel quite a bit around the UK delivering workshops, presentations and lecturing at various events and universities.</span>\n\n<span style=\"font-weight: 400;\">Also having studied business for a few years I have learned, and now understand a little better, the value of<em> familiarity. </em></span>\n\n<span style=\"font-weight: 400;\">Lenny Henry not only promises me a good night sleep guarantee, he delivers this promise...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Every </span>\n\n<span style=\"font-weight: 400;\">Single</span>\n\n<span style=\"font-weight: 400;\">Time</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">HOW?</span>\n<h3>Premier Inn &amp; Lenny Henry\'s Guaranteed Good Night Sleep</h3>\n<span style=\"font-weight: 400;\">I mean before I even leave the house, and no matter where in the country I am going, I KNOW exactly what to expect right from when I arrive at the car park, enter reception, to when I enter my room, to when I climb into my bed and anything in between.</span>\n\n<span style=\"font-weight: 400;\">I KNOW there will be a restaurant nearby for food both in the evening and for breakfast. </span>\n\n<span style=\"font-weight: 400;\">AND</span>\n\n<span style=\"font-weight: 400;\">I KNOW there will be a certain smell and temperature as I climb the stairs. In my room there will be a large bed made up in crisp white sheets with a purple runner, a choice of pillows, a hair dryer, shampoo and a TV that I can watch from my bed. </span>\n\n<span style=\"font-weight: 400;\">This hotel’s business model, in my opinion, is superb since they deliver on their promise</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Every </span>\n\n<span style=\"font-weight: 400;\">Single </span>\n\n<span style=\"font-weight: 400;\">Time</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This hotel chain is probably one of my favourite examples of this as it is my \'<em>home from home\'</em> but other businesses do it too…</span>\n\n&nbsp;\n<h3>The McDonalds Promise</h3>\n<span style=\"font-weight: 400;\">McDonalds do it - whatever you think of them, they deliver on their promise (and yes I have been known to slurp on the occasional Crunchie McFlurry, after my sushi of course! ;-p ). Listen to Michael E Gerber\'s audio book, The E Myth Revisited and he will tell you the whole story.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is a bold statement to make a guarantee or promise about your product or service isn\'t it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe you\'re nervous about stating something so confidently?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are not.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what’s our promise?</span>\n\n&nbsp;\n<h3>The Biomechanics Education Promise</h3>\n<span style=\"font-weight: 400;\">Everyone who attends one of our workshops or joins our academy tells us they have a fantastic learning experience, I may even be so bold as to say from their comments, that it changes lives. We also take pride in the amount of support we offer even beyond the classroom...</span>\n\n&nbsp;\n<blockquote><i><span style=\"font-weight: 400;\">Hi Rachel,</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Thank you for a fantastic course last weekend. It was everything I was hoping for and really helped me understand why current training systems aren\'t working as they should be. </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">I have already adapted some of my clients programs to include the anti-spasm exercises with good results in just a few days. The course has left me questioning everything I do as a PT, which is definitely a positive thing.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">I definitely want/need to complete the rest of the workshops as soon as possible.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Thanks again for providing a fantastic course. I am really looking forward to the next courses.</span></i></blockquote>\n&nbsp;\n\n<hr />\n\n&nbsp;\n<blockquote><i><span style=\"font-weight: 400;\">Hi Rachel</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Thank you very much for the Pelvic Biomechanics workshop, I enjoyed every moment of it. I must say it is the first course when my brain was alert from 9  to 5 and there was no desire to have any conversation within my head , I do that when I am getting bored. You are an amazing tutor and a coach, you know how to make people feel important and have time to understand each and everyone. I did feel a lot of support whilst on the workshop and I think everyone felt that. The world is a much better place to live in, when people like you are around. Once again an enormous thank you.</span></i>\n\n&nbsp;</blockquote>\n\n<hr />\n\n&nbsp;\n<blockquote><i><span style=\"font-weight: 400;\">I’m not normally big on writing reviews or testimonials, but I\'m making an exception for this 2 day Pelvis Biomechanics workshop for a number of reasons</span></i>\n\n<i><span style=\"font-weight: 400;\">To start,  I\'ve never felt so excited about what I\'ve learnt from a workshop or course before.</span></i>\n\n<i><span style=\"font-weight: 400;\">Whilst some of it really challenged my thinking, and made me feel slightly uncomfortable at times (it made me question some of the ways I\'ve always done things).  Rachel explains it in such a way that it all makes perfect sense. </span></i>\n\n<i><span style=\"font-weight: 400;\">I now have information that is scientifically proven, that makes me believe I need to change the way I work, and to incorporate biomechanics screens into much more of what I do.</span></i>\n\n<i><span style=\"font-weight: 400;\">The tools and system that Rachel give you are so powerful both for you, and to get your clients onboard, they cannot be ignored.  </span></i>\n\n<i><span style=\"font-weight: 400;\">It’s going to take me a while to put everything I’ve learnt into practice.  But there’s a few things I know for sure. I need to know more. Everything I do in future must be backed up with science.  I need to question everything. And I most definitely want biomechanics screens to be a much bigger part of what I do. </span></i>\n\n<i><span style=\"font-weight: 400;\">Adding biomechanics screens to the way I work will most definitely, give me the confidence to charge more, have a real niche and elevate me far above my competitors.   I know I will get a return on this investment, and most importantly be able to help more people, and improve the service to the clients I already have.</span></i>\n\n<i><span style=\"font-weight: 400;\">If you are unsure about committing to the Biomechanics Coach&#x2122; Diploma, attend the iMoveFreely® workshop as a starting point.  It’s a good way to sample it, and come away with useful material without committing too much financially. </span></i>\n\n<i><span style=\"font-weight: 400;\">I cannot recommend any of Rachel’s courses highly enough.  From the the content of the course, Rachel’s energy, knowledge, enthusiasm and obviously love of what she does.  I for one will definitely be back for more. </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Thanks Rachel </span></i>\n\n&nbsp;</blockquote>\n\n<hr />\n\n&nbsp;\n<h3>What Can You Learn From These Examples?</h3>\nWhat experience do you provide for your clients?\n\nWhat promise do you have for them?\n\nWhat guarantee can you offer?\n\n&nbsp;\n<h4>Your Guarantee...</h4>\nCan you guarantee results?\n\nIf they follow everything you tell them do will they get results?\n\nYou bet they will!\n\n&nbsp;\n<h4>The Experience You Give Them...</h4>\nRemember that the experience a client has with you is so much more than just the coaching they get from you.\n\nIt\'s the walk into the facility entrance.\n\nIt\'s the smell as they walk in.\n\nIt\'s the greeting they get.\n\nIt\'s the cleanliness of the gym.\n\nIt\'s the other people in the gym.\n\nAnd so much more.\n\nYour coaching is just ONE part of their whole experience.\n\n&nbsp;\n\nNow if you are based in a gym, you may not be able to control some of these factors, but there is still a lot you can.\n\nLike how you greet them.\n\nHow you make them feel part of a community.\n\nHow quickly you follow up with them.\n\nYour coaching.\n\nYour level of support away from sessions.\n\nYou see there is a lot that you can control of the client experience and I encourage you to take a look at the whole customer journey and make sure that at every stage you are making sure its the environment you want it to be for them.\n\nBecause when you do this, you will start creating raving fans, and raving fans tell all of their friends about you and that will help you grow your business and gain even more clients.\n\n&nbsp;\n\n&nbsp;\n\nNow if you would like to take your coaching to the next level then <span style=\"font-weight: 400;\">why not join our academy in 2018/19?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YES, The 2018 schedule is NOW LIVE!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Use the skills the way we teach you to and…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We promise you will LOVE them!</span>\n\n&nbsp;\n\nWe promise your clients will LOVE them!\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We promise they will change the way you think!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We promise you will want more!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We promise full support even beyond your training!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YOUR MONEY BACK!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now there’s a promise!</span>\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\">Click here to request a callback and for more information on our courses and programmes.</a>\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','What Do A Good Night Sleep, A Crunchy McFlurry & An Amazing Learning Experience Have To Do With You?','','inherit','closed','closed','','7024-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',7024,'https://biomechanicseducation.com/?p=38764',0,'revision','',0),(38765,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<h2>The Problem Of Selecting Exercises For Personal Trainers - Tired Vs Better.</h2>\n<span style=\"font-weight: 400;\">Have you ever struggled with exactly which exercise/s to prescribe your client?</span>\n\n<span style=\"font-weight: 400;\">Are you conscious of the exact reason why you choose the exercise/s you do for your client?</span>\n\n<span style=\"font-weight: 400;\">Why that exercise over that one?</span>\n\n<span style=\"font-weight: 400;\">Do you consider which movement/action you are strengthening?</span>\n\n<span style=\"font-weight: 400;\">Do you think about </span><i><span style=\"font-weight: 400;\">why?</span></i>\n\n<span style=\"font-weight: 400;\">Could you logically explain your choices?</span>\n\n<span style=\"font-weight: 400;\">Can you confirm the relevance of that specific exercise to their goal?</span>\n\n<span style=\"font-weight: 400;\">Are you able to assess and monitor their progress objectively?</span>\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having read a post from one of my previous learners, Biomechanics Coach&#x2122;, Garry Thompson...</span>\n<blockquote><span style=\"font-weight: 400;\"> </span><i><span style=\"font-weight: 400;\">“Any PT can make a client tired, but a great PT makes them better”. </span></i></blockquote>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It made me think...</span>\n\n&nbsp;\n<h3><strong>How do you decide which exercises to prescribe to your clients to make them better?</strong></h3>\n<span style=\"font-weight: 400;\">One of the gaps in our basic exercise prescription education is the true specificity of exercise prescription.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Generally, at level 3, we are taught squats are for legs or push ups for chest as a simplistic view of what I mean.</span>\n\n<span style=\"font-weight: 400;\">Yes some PT’s who recognise this are going too far the other way and making things far too complex with funky ‘functional’ training that is often too much and not appropriate for some individuals. They might also still be of the old mindset of a PT session should be all or nothing, no pain no gain, its gotta hurt, it’s gotta be sweaty….gotta make sure my clients knackered. Read Garry’s post title again!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does that make them better? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well of course it depends on their goal/s but what I am talking about is truly individual bespoke exercise prescription specifically based on the client\'s body, their movement capacity AND also their goal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whatever their goal, be it fat loss, muscle gain, tone up, event prep, post rehab etc all of them desire improved movement and some will require sport/activity specific movement training.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ask yourself this question </span><b><i>“can you justify every exercise choice you make?”</i></b><i><span style=\"font-weight: 400;\">  </span></i><span style=\"font-weight: 400;\">or are you simply giving squats for legs and push ups for chest?</span>\n\n&nbsp;\n<h3><b>How Do You Decide Which Exercises To Prescribe?</b></h3>\n<span style=\"font-weight: 400;\">We need to have a system or logical method to decide which specific exercises to prescribe. </span>\n\n<span style=\"font-weight: 400;\">Our generic education encourages us to consider training opposing muscle groups. i.e. if you perform chest exercises you should also perform back exercises. That makes sense, right!?</span>\n\n<span style=\"font-weight: 400;\">Of course but let\'s look at one example:</span>\n\n&nbsp;\n\n<strong>Example; Client has poor posture, rounded shoulders</strong>\n\n<span style=\"font-weight: 400;\">Train the back more?  Rows? Reverse fly? Lat pulldown?</span>\n\n<span style=\"font-weight: 400;\">Well you could but that would be </span><i><span style=\"font-weight: 400;\">assuming </span></i><span style=\"font-weight: 400;\">the back is ‘weaker’ and by doing back strength work will help open the chest, and it might! How do we KNOW that is the right choice of exercise based on what we are looking at?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A better question might be ‘</span><i><span style=\"font-weight: 400;\">WHY are they round shouldered in the first place?’</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Is the chest ‘tight’? so stretch first? (lengthen the agonist)</span>\n\n<span style=\"font-weight: 400;\">or in a subclinical spasm? or anti spasm? (contract the agonist 20%)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These 2 exercise contradict each other and one could compound the other problem.</span>\n\n<span style=\"font-weight: 400;\">So which one do we start with? </span>\n\n<span style=\"font-weight: 400;\">Do we only train the back? </span>\n\n<span style=\"font-weight: 400;\">Or only stretch the chest? </span>\n\n<span style=\"font-weight: 400;\">Or only anti spasm the chest?</span>\n\n<span style=\"font-weight: 400;\">Does stretching the chest make enough of a difference so we can then work the back?</span>\n\n<span style=\"font-weight: 400;\">Or anti spasm, then stretch, then strengthen the back?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Each of the above consideration leaves us with a different exercise choice. So which exercise do we choose? Which order to do them? How do we make that decision without KNOWING what the root cause of that specific posture is?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We NEED to be able to assess more objectively of course. Therapists do and so should we. Let\'s learn how to assess our clients\' </span><i><span style=\"font-weight: 400;\">intrinsic</span></i><span style=\"font-weight: 400;\"> biomechanics to make our exercise prescription more specific to their ‘capacity’ thus enabling us to JUSTIFY exactly WHY we are choosing this exercise over that one with a logical reasoning.</span>\n\n&nbsp;\n<h3><b>How Can We Assess The Client So We KNOW?</b></h3>\n<span style=\"font-weight: 400;\">Commonly PT’s are accessing postural assessment courses which can help but are subjective so still leave us with questions and feeling like we might be guessing. </span>\n\n<span style=\"font-weight: 400;\">This is </span><strong><i>extrinsic</i> biomechanics. </strong>\n\n<span style=\"font-weight: 400;\">This is what we do as exercise professionals already. We analyse the way clients move and coach them into better technique. </span><i><span style=\"font-weight: 400;\">“knees in line, back straight, feet in line!”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, if that poor technique is actually a lack of capacity due to muscle spasm, tight nerves or stiff joints, then attempting to correct it with verbal coaching and strength work may not get you the results you want. It may also make you anxious about whether you are actually giving the best exercises to your client since they can’t physically perform them well. Ever been there? I certainly have in the past.</span>\n\n&nbsp;\n<h3><b>Increase Your Confidence &amp; Improve Your Clients Results</b></h3>\n<span style=\"font-weight: 400;\">Understanding how to logically justify your actions will massively increase your confidence. It will also mean you improve your results and client satisfaction. They will recognise and respect your guidance even if it is different to other PT’s because you can always justify WHY you are asking them to do certain things. </span>\n\n<span style=\"font-weight: 400;\">Do you want more objectivity in your assessment/induction skills?</span>\n\n<span style=\"font-weight: 400;\">Do you want to increase your ability to justify your exercise prescription?</span>\n\n<span style=\"font-weight: 400;\">Would you like to increase your confidence in choosing the right exercises at the right time for your clients?</span>\n\n<span style=\"font-weight: 400;\">Would you like to retain your clients?</span>\n\n<span style=\"font-weight: 400;\">Do you want to improve results even more?</span>\n\n<span style=\"font-weight: 400;\">Understanding how to assess </span><strong><i>intrinsic</i></strong><span style=\"font-weight: 400;\"><strong> biomechanics</strong> is vital for us as exercise professionals. PT’s, Pilates or Yoga teachers otherwise we are GUESSING! We need to analyse and monitor our clients with more than just fat calipers, fitness testing and weighing scales. We need to understand their physical capacity for movement before we do anything. Don’t you agree?</span>\n\n&nbsp;\n\nIf you would like to find out more about our programmes and courses then just click here...\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','How Should Personal Trainer\'s Choose Exercises For Their Client\'s?','','inherit','closed','closed','','6843-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',6843,'https://biomechanicseducation.com/?p=38765',0,'revision','',0),(38766,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','So many of us have found ourselves attending more and more training to try and know as much as possible to help all of our clients to the best of our ability, right??\n\nYet we are still left feeling like we don\'t know enough or maybe we still don\'t have all the answers.\n\nMaybe you\'re just fed up with taking course after course and you just want someone to talk to and/or maybe refer your clients to?\n\nWhile more and more of us are starting to work together with other professionals, this style of practice should be how we are taught for the best duty of care we can offer.\n\nHere are 4 tips on how it could be done...\n\n&nbsp;\n<h3>No 1. Attempt To Open Up Communication With Other Professionals</h3>\nThis very simple concept may feel alien to some of you out there BUT we shouldn\'t feel that we should try and know everything to help our clients. We should get REALLY good at the skills we possess and feel confident to refer out to someone else when we do not find the answer or if we feel another opinion is required.\n\nTHIS IS OUR DUTY OF CARE..\n\n…and demonstrates our commitment to it. With the client\'s permission, we should share our view on their physicality to best advise the other professional on how we have been advising the client improve.\n(Don\'t forget you MUST get the clients permission, in writing ideally, to swap and discuss their personal details with another professional otherwise they are able to claim a breach of confidentiality. Simply add it to the T&amp;C’s or ParQ you ask them to sign in their initial consultation BUT also tell them that they are signing that too).\n\nSo rather than simply suggesting they go to see ‘a therapist’ or someone else, actually refer them to someone you know who has different, but complementary, skills to yours. Build a relationship with practitioners you trust, who are open minded and offer you their thoughts and opinion. Getting their ideas about the issue and discussing their thoughts and yours combined allows you both to come to a joint conclusion of best practice for this individual. This is SO powerful and just makes sense!\n\nThis way YOU learn, THEY learn, the client learns AND neither professional has to worry about doing it alone, while the client gets to experience truly outstanding service.\n\nA blend of minds, experience and skills is surely better than one, right?\n\nForm a working relationship with this professional, and others, to obtain not only more information but referrals FROM them too!! Commercially this is better for you and it is a really confident professional who refers clients away!\n\nThis way each of you can focus on becoming the best you can be at YOUR skill set and service, accessing professional discussion with your ‘partners’ for added confidence in the service/s you provide.\n\nHow many practitioners do you think would turn you away if you approached them and said..\n\n“I want to send my clients to you, are you interested?”\n\nObviously, find someone who is willing and open to reciprocate and that you can build trust with. Maybe book yourself appointments with practitioners in your area, for your own interest and based upon how you feel about the way they manage you, approach those that you felt offered a quality, knowledgeable service.\n<h3></h3>\n<h3>No 2. Get REALLY REALLY Good At Your Skill Set</h3>\nNow you can focus on being the best at what YOU do. We are all turning into hybrids and this is a good thing to allow us to understand each style of practice;\n\nASSESS - MASSAGE- EXERCISE - TREAT\nASSESS - TREAT - EXERCISE - MASSAGE\nASSESS - EXERCISE - TREAT - MASSAGE\nASSESS - MASSAGE - TREAT - EXERCISE\nASSESS - TREAT - MASSAGE - EXERCISE\nASSESS - EXERCISE - MASSAGE - TREAT\n\nYou get the idea....\n\nBUT we can’t be great at everything and doing all of this during one session might be a push since the expected time slot is usually an hour.\n\nBy the way, this doesn’t have to be how you work!\nMany assumes or false into the 1hr session protocol just because everyone else does but you might decide to work based on 90 min sessions or even longer, maybe shorter. So long as this is clear up front and it could be your USP (unique selling point)\n\nAnyway if you do cram all of this into one hour or session then you may well be pushed for doing each really well - I know I would in the 1hr time frame. However, this could be an issue if you know your client requires all of these. So create a ‘flow’ with your team where by one is the specialist for one area, ie assessment. They then refer to the trainer about which exercises would be good and which can then be based on the assessment results. The exercise professional then refers them to the manual therapist for the hands on part. Then refer on to the clinician should an injury or problem arise. The clinician then refers back to the assessment professional for the clients journey back into exercise. Maybe they need a foot specialist or a sports specific coach!?\n\nHaving massage skills doesn’t mean you have to use them, knowing about foot function and orthotics doesn\'t mean you prescribe them but this knowledge allows you to understand when to refer for this service AND how to communicate with the other professional.\nNow you may decide you want to offer 2 or even 3 of these services, but decide which part of the services you are able to offer within your practice appropriately in your scheduling and then refer the rest. BUT do communicate where possible or build a team around you.\n<h3></h3>\n<h3>No 3. Stay Open Minded - Things Change!!</h3>\nThe idea that you qualify and TADAAAAH!…you’re done with training is, of course, out of date. Hence the plethora of CPD’s we are consistently being informed about.\n\nTHINGS CHANGE!\n\nNew ideas or research develops and new ways of doing things become available AND of course we are not using our bodies on the way they have been used for millions of years!\n\nSo we need to decide when we re-train, sample a new idea and refer, or amend, our commercial offering. Either way remember you can only do so much really well and also we should find professionals willing to stay up to date too. We should challenge each other AND what we are taught by education providers ALL of the time!\n\nProfessional open discussion should be inclusive and positive even where challenges might be made about a certain method. To have technical discussions about what is right for the individual, based on the data or evidence available and all thoughts laid out is really quite exciting and fascinating aside from it being BEST DUTY OF CARE for the client.\n\nKeep asking WHY until you understand at depth WHY that idea is better or a great addition or something to consider for that particular client for example.\n\n&nbsp;\n<h3>No 4. Find Trusted Organisations Who Offer Networking Opportunities.</h3>\nThere are some fantastic organisations out there that have set up as a support and networking system for professionals.\nThe Intrinsic Biomechanics Association (IBA) which has a monthly subscription fee offers at present 4 free workshops a year, branded clothing, £150 credit for education with the academy, discounted events, an amazing new online portal FULL of resources, personal mentoring and networking opportunities for fitness professionals interested in both the study of human movement/exercise and also looking for professionals to work alongside.\n\nThe Sports Therapy Association (STA) founded by Gary Benson is a superbly run resource for manual therapists. Gary is really passionate about offering genuine support. For a very small annual fee he works very hard to give his members access to information and CPD\'s through various mediums along with his regional ambassador team.\n\nGary and I are both very passionate about supporting YOUR success and confidence. We are enabling our members to meet each other and cross-refer to each other allowing us all to offer great DUTY OF CARE to our learners, clients across these 2 amazing and merging industries.\n\n&nbsp;\n\n&nbsp;\n\nTo find out more or to join the <a href=\"https://www.biomechanicseducation.com/intrinsic-biomechanics-association/\" target=\"_blank\" rel=\"noopener\">IBA CLICK HERE</a>\n\nTo find out more or to join the <a href=\"http://www.thesta.co.uk/\" target=\"_blank\" rel=\"noopener\">STA CLICK HERE</a>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','4 Tips To Better Serving Your Clients Through Referrals','','inherit','closed','closed','','6769-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',6769,'https://biomechanicseducation.com/?p=38766',0,'revision','',0),(38767,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<h2>How Personal Trainers Can Think Differently To Be Better Coaches</h2>\n<span style=\"font-weight: 400;\">Having become a massive audiobook fan to make use of the 35k miles I have driven regularly each year, I have literally filled my phone with all sorts of fabulous books FILLED with information! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a ‘non-academic’ this resource is SO exciting for me and helps me to learn quickly and easily during a time that I would normally feel to be wasted. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It amazes me that I can get through a book a week sometimes. With all sorts of subjects from business and marketing to emotional intelligence and communication skills. Me and my buddy and colleague, <a href=\"https://www.youtube.com/channel/UCvWp3M2Bz5MoYclt1FIJkOw\" target=\"_blank\" rel=\"noopener\">Chris Wright</a>, are always swapping audiobook ideas.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here’s one I would like to share with YOU (for starters)…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Recently I’ve been engrossed in the well-known book by Stephen R Covey, ‘</span><i><span style=\"font-weight: 400;\">7 Habits of Highly Successful People’ </span></i><span style=\"font-weight: 400;\">again</span> <span style=\"font-weight: 400;\">and</span> <span style=\"font-weight: 400;\">he uses the term ‘</span><i><span style=\"font-weight: 400;\">Paradigm Shifting’</span></i><span style=\"font-weight: 400;\">. This term is something we have used in our academy from the very beginning of our programme development and design. Covey gives a fantastic example of how to understand this term.</span>\n\n&nbsp;\n<h3><b>But First What Is A ‘Paradigm?’</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The internet says;</span>\n\n<i><span style=\"font-weight: 400;\">A typical example or pattern of something; a pattern or model.</span></i>\n\n<i><span style=\"font-weight: 400;\">\"society\'s paradigm of the ‘ideal woman’”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">A world view underlying the theories and methodology of a particular scientific subject.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">\"the discovery of universal gravitation became the paradigm of successful science”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In simple terms I guess it is </span><i><span style=\"font-weight: 400;\">how you see things in your head.</span></i>\n\n&nbsp;\n\n<em><strong>This idea would suggest it to be a great way to influence someone else\'s behaviour by offering a new way of seeing a situation. </strong></em>\n\n&nbsp;\n<h3>An Example Of A Paradigm Shift - Imagine You Were Cover In This Situation...</h3>\n<span style=\"font-weight: 400;\">The example scenario Covey experienced and explained in his book went something like this; </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A man with his 2 kids who were being unruly, running around and disturbing people, while he sat on a bench next to Covey.</span>\n\n<span style=\"font-weight: 400;\">Covey was trying to read his paper and felt annoyed by these ‘out of control’ kids thinking to himself.. </span><i><span style=\"font-weight: 400;\">“why can’t he control his kids?”</span></i>\n\n<span style=\"font-weight: 400;\">Eventually, Covey said to the man..</span><i><span style=\"font-weight: 400;\">“excuse me but aren\'t your kids a little out of control?”</span></i>\n\n<span style=\"font-weight: 400;\">The man replies, looking somewhat deflated.. </span><i><span style=\"font-weight: 400;\">“yes yes I guess I should but well we just left the hospital and their mother just died an hour ago and I guess they don\'t know yet how to deal with it and I guess me too”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Covey’s paradigm shifted in a moment once he heard the plight of this poor family and his annoyance shifted to sympathy. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Covey encourages us to think about how OUR feelings shifted as WE heard or read the story here.</span>\n\n<span style=\"font-weight: 400;\">It is evidence of how one\'s own perception of a situation can shift instantly the moment we realise the other view point.</span>\n\n&nbsp;\n<h3>How Can We Use The Paradigm Shift To Help Us As Personal Trainers?</h3>\n<span style=\"font-weight: 400;\">So can we give more detail about how WE view a situation to enable a better understanding of the circumstances surrounding it or at least our view of it? </span>\n\n<span style=\"font-weight: 400;\">Should we be asking more questions prior to making some kind of judgement?</span>\n\n<span style=\"font-weight: 400;\">Maybe we should open our thoughts to differing viewpoints before we make a decision?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine your client saying they forgot to do their exercise home work or couldn’t find time to make the healthy dinner we suggested. </span>\n\n<i><span style=\"font-weight: 400;\">HOW ANNOYING! </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You had created a beautiful exercise sheet and paid to get it printed at the post office. Also, you had taken the time to explain each one in detail and how to perform them for better movement ability ready for their next session with you. You had spent a good hour last night typing up some really simple healthy recipes for your client to make for the whole family that will contribute to their weight loss goals.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YOU would feel frustrated by the fact they turned up for the next session saying they didn\'t do anything with this wouldn\'t you!?!?</span>\n\n<span style=\"font-weight: 400;\">It REALLY annoys you because it will make YOU look bad as their trainer if your client is not succeeding. GGGRRRRRRR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT now consider how you would perceive the situation if you heard this;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They are struggling to think of anything other than their really sick parent who lives 100 miles away and they had to drive to care for them after they got a call after work that their parent had fallen and couldn\'t get up. So with the kids in the back of the car they had to drive straight there from the school pick up. This also meant they were left with no time to do their exercises and to shop and create the fantastical healthy (and easy to do) meal you had suggested. Hence the fast food meal they had ended up buying instead.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Paradigm shift right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We humans are generally empathetic by nature.</span>\n\n<span style=\"font-weight: 400;\">Another example relevant for our industry is that there are so many articles and videos out there that are by people who are not demonstrating an inclusive view point considering ALL of its readers or viewers. What I mean is those articles that suggest that everyone should do one thing, for example; </span>\n\n&nbsp;\n<ul>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">squat with toes pointing forward</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">women should do more cardio</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">everyone should eat paleo</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">dairy is bad for you </span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">orthotics are bad</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">stretching is bad for you</span></i></li>\n 	<li><i></i> <i><span style=\"font-weight: 400;\">we should all learn to use foam rollers</span></i></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">None of these statements consider every person who may squat, like dairy, need orthotics etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is often a single viewpoint that is offered into our industry about methods of exercise prescription, movement correction, risk reduction or diet etc. The author has usually had an experience that created THEIR belief or idea and maybe this happened to most of the people they knew. So they wanted to tell others in an attempt to help. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet we are all different!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some people can eat dairy, some like paleo, some do and some don\'t respond to stretching.</span>\n\n<span style=\"font-weight: 400;\">Maybe we should be encouraged to challenge the ideas we hear more, in a positive way of course! </span>\n\n<span style=\"font-weight: 400;\">This would allow us to understand better the thinking behind an idea or viewpoint we hear someone else describe. WE should give clarity on our ideas along with the WHYs.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ultimately this would also allow us, our audience, clients and peers to appreciate better WHY WE feel the way WE do or WHY WE think this way about a certain situation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So rather than simply following the crowd maybe we should learn about the thinking behind an idea, method or trend so we can consider logically our own view as to what is right for US or each of our clients - individually.</span>\n\n<span style=\"font-weight: 400;\">No method works for all, ALWAYS case by case or ‘it depends\' on the individual SHOULD always be considered. </span>\n\n<span style=\"font-weight: 400;\">Don’t you think?</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to experience paradigm shifting?</span>\n\n<span style=\"font-weight: 400;\">Do you want to experience an excitingly inclusive learning environment?</span>\n\n<span style=\"font-weight: 400;\">Would you like to learn how to positively challenge concepts?</span>\n\n<span style=\"font-weight: 400;\">Are you looking for an open minded methodology of exercise prescription?</span>\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">If you answered yes to those then you should definitely check our programmes. Click here to find out more.</a>\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','How A Paradigm Shift Can Change How You Feel In A Moment & Why You Should Get The Whole Story First','','inherit','closed','closed','','6721-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',6721,'https://biomechanicseducation.com/?p=38767',0,'revision','',0),(38768,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">Group exercise has certainly been a passion of mine for 25yrs because I really enjoy the atmosphere of a group. </span>\n\n<span style=\"font-weight: 400;\">My group exercise ‘style’, if you like, is one of humour, promoting laughter where possible, each person has a nickname based on their personality and I also encourage ‘freestyle’ moments for them to break into some of their own moves during specific sections of the class sometimes for example. (This is hilarious fun).</span>\n\n<span style=\"font-weight: 400;\">This kind of thing probably isn\'t appropriate in one to one sessions right!?</span>\n\n&nbsp;\n<h3>The Good Side Of Group Exercise</h3>\n<span style=\"font-weight: 400;\">As a group we all enjoy the banter, the energy and the social aspect of exercising together.</span>\n\n<span style=\"font-weight: 400;\">Then there are also the ‘moments’ like the one I had last week when one of the very quiet ‘back row’ girls came up to me at the end of the class with tears in her eyes, put her hand on my arm and said emphatically; </span>\n\n<span style=\"font-weight: 400;\">“Thank you I really needed to laugh like that after the week I have had”. </span>\n\n<span style=\"font-weight: 400;\">Now I have no idea what happened to her that week, and I don’t need to, but that demonstrated how we can even unknowingly be helping others within the group setting without individuals feeling exposed.</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-6683\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/04/Rachel-France-Biomechanics-Education-Group-Exercise-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group exercise also drives me NUTS!!</span>\n\n&nbsp;\n<h3>The Bad Side Of Group Exercise.... The Limitations</h3>\n<span style=\"font-weight: 400;\">Everyone is different, moves differently, has different somatotype, different injury history, different lifestyles, are different ages, have different levels of fitness and different characters.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As we look at one person who we feel could squat a bit lower, we worry about saying it out loud as the one who is already almost at full range may try to go further due to hearing the verbal cue for someone else to go lower!</span>\n\n<span style=\"font-weight: 400;\">Encouraging one to do a tuck jump while simultaneously saying to others to simply box jump.</span>\n\n<span style=\"font-weight: 400;\">Gone, it seems, are the days of beginners, intermediate and advanced classes!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So for those who might consider group exercise as unsafe, is ruining people (some may well be!) or that L2 group exercise instructors are not appropriately trained (this is a governing body issue for a future Juicemail) please recognise how we can work together for the health and fitness of our gym members.</span>\n\n&nbsp;\n<h3>Adapting A Group Exercise Session</h3>\n<span style=\"font-weight: 400;\">Quite regularly, and due to my background, I am known for getting ‘on one’ about the quality of my participants\' movements. Now please understand these are my little group exercise family and we share moments every week, so I care about them, we even go to Yo Sushi some Wednesdays!!</span>\n\n<span style=\"font-weight: 400;\">So with good intention often I find myself offering a ‘clinic’ at the beginning or at the end of a class to educate them on WHY they might be unable to squat or what a good deadlift should look like, how they can use foam rollers or should see a PT for bespoke exercise prescription. Sometimes I have done handouts and have been known to set them homework or tasks to make them aware of their own physical abilities. </span>\n\n<span style=\"font-weight: 400;\">Their movement issues often have nothing to do with </span><i><span style=\"font-weight: 400;\">technique</span></i><span style=\"font-weight: 400;\"> because no amount of teaching points, coaching cues or guidance can help them during a group class. </span>\n\n<span style=\"font-weight: 400;\">What I recognise is that some of these individuals really need some one to one training to improve the way they move with bespoke exercises. This is where I refer them and this may be to a PT, a Biomechanics Coach&#x2122;, a massage therapist or the appropriate person for their requirement. </span>\n\n<span style=\"font-weight: 400;\">I am stunned that most clubs don’t have this \'system\' set up and in place!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is a real challenge during a one hour group exercise session to coach 20-30 people to timed music and steps with some of the class participants being unable to get their squat ‘technique’ right or who literally cannot plank at all or tell you they have a shoulder problem during the push up section (as they forgot to when you asked if anyone had any injuries at the beginning of the class - I know all the group exercise instructors are nodding right now!)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OK so I recognise not all group exercise fans/participants are going to buy into some one to one sessions but with a little bit of education on what could be causing their knees to cave in during lunges in our classes can go along way - they trust us!!</span>\n\n<span style=\"font-weight: 400;\">More often than not they have intrinsic biomechanical issues that need addressing to improve the way they move and enable them move more efficiently first.</span>\n\n<span style=\"font-weight: 400;\">Fair enough I may have different skills to a L2 Exercise to Music Instructor but seriously, PT’s everywhere you are missing a trick if you DON’T build a relationship with the group exercise instructor in your clubs and support them more!!</span>\n\n<span style=\"font-weight: 400;\">Group exercise participants make up a huge percentage of gym membership, they are super keen to improve the way they look and move and are an avid and trusting audience that come back to see their group fitness instructor week in, week out.</span>\n\n<span style=\"font-weight: 400;\">Imagine that I influence up to 60-80 gym members across 2 hours every week AND getting paid to market myself to them (I don’t work one to one from this club and so I always refer).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What\'s the message here?</span>\n\n&nbsp;\n<h3>3 Key Points For Personal Trainers Who Want To Grow Thier Business &amp; Influence More People</h3>\n<span style=\"font-weight: 400;\">Well there are 3 key points to note;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). PT’s you really should start talking to the group exercise instructors more, building a relationship with these passionate professionals who can directly refer people with good reason and regularly. Maybe offer to train them at a reduced rate or even for free so they can talk about the benefits of your one to one training to their class members.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">2). Design a small group PT package or a special arrangement for these participants where they can share the cost with their friend and still enjoy the ‘group’ feel even if it is just 2 or 3 of them for example.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">3). Even as PT’s you might want to consider delivering group exercise as a paid way to advertise yourself to a new market of gym members!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I recognise some of you are doing this already but for those who aren\'t it might be something to seriously consider. </span>\n\n<span style=\"font-weight: 400;\">If not simply use points 1 &amp; 2!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally please understand the challenge we face as group exercise instructors. We may well be a superb resource for your one to one client market. Why not approach us to offer us support?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is room for all types of exercise from group to one to one - let\'s work together for better duty of care of our people - because Dr Funck (this is actually her real name), Laura ‘Ninja Turtle’ Loud, Mr C, Mr B, Jerry Pop and the quiet back row lady are all people who certainly make MY week special along with all the other group exercise participants, and I really genuinely care about them after 13 years of teaching them every week.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are a formidable team every Wednesday if you fancy joining us!? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">;)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you want to learn one to one techniques to enhance what you do with our participants when we refer them to you with a problem? Imagine being the personal trainer that all the group exercise instructors in your gym referred people too...</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\"><span style=\"font-weight: 400;\">Then you should seriously consider becoming a Biomechanics Coach&#x2122; in 2018, click here to find out more.</span></a>\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-6682\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/04/Rachel-France-Group-Exercise.jpg\" alt=\"\" width=\"960\" height=\"638\" />\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','Why Personal Trainers Need To Get Over Their Issues With Group Exercise','','inherit','closed','closed','','6680-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',6680,'https://biomechanicseducation.com/?p=38768',0,'revision','',0),(38769,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<h4><b>Guest Article by Chartered Physiotherapist, Martin Haines</b></h4>\n<span style=\"font-weight: 400;\">In sports and fitness training a common injury for clients is adductor strains.  They are often caused by poor spinal and pelvic biomechanics and a Biomechanics Coach or therapist trained in biomechanical screening would be able to find the causes of such injuries.  Fitness instructor and Personal Training qualifications are much stronger and valuable to the client if they have a this dual Biomechanics Coaching qualification.</span>\n\n&nbsp;\n<h3>What Do The Adductors Do?</h3>\n<span style=\"font-weight: 400;\">To learn more about this condition, the adductor muscles comprise five adductor muscles in the groin, stretching between the pelvis and the inside of the thigh bone (femur), and adductor longus is the most commonly injured of this muscle set. Its function is to pull the legs together (adduction) and it is used extensively when playing football or rugby, sprinting, hurdling and horse-riding. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">An important factor not to be overlooked is the risk of an adductor strain being confused with a <a href=\"https://www.biomechanicseducation.com/abdominal-injuries-hernia/\" target=\"_blank\" rel=\"noopener\">sportsman’s hernia</a>,</span><span style=\"font-weight: 400;\"> it is sometimes difficult to differentiate between the two, so if there is any doubt, do get it checked by a qualified and experienced therapist or doctor.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Most people usually feel pain in the groin at the top of the adductor muscle, which can radiate down the leg; there can also be swelling and bruising in the area. It usually hurts when they try and pull their legs together against a resistance and can hurt if stretching the leg out to the side. Also, if they were to try and run, it would be very painful in the groin and adductor area. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Muscle tears are graded according to severity. Grade 1 is a mild tear, which presents itself as mild discomfort and a little tenderness. Grade 2 is a partial tear with more discomfort and there is often swelling, usually painful to the touch, which results in limited range of movement. Grade 3 is a severe tear or complete rupture of a muscle and is normally very painful, with swelling and an inability to walk or run. A full tear or complete rupture can be very debilitating and a small lump or gap can usually be felt in the muscle, at that point.  </span>\n\n&nbsp;\n<h3><strong>The Causes Of An Adductor Muscle Tear</strong></h3>\n<span style=\"font-weight: 400;\">Injuries are commonly caused by both intrinsic and extrinsic factors. Common extrinsic factors for adductor longus injuries include activities that require high-speed acceleration and deceleration, such as sprinting, rapid changes of direction or sports where kicking and jumping are required. It can also be caused in football, when players stretch beyond their physical capabilities to retrieve a ball or perform a tackle.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This injury is much more likely to occur if there are intrinsic causes too. If your clients have a stiff lower back, tight nerves in your hips and legs, stiff hip joints or weakened adductors due to a twisted pelvis, which they may not even realise they have, the risk of tears are much higher. You may be able to get away with either an intrinsic or an extrinsic cause, but a combination of both represents a high-risk factor.</span>\n\n&nbsp;\n<h3><b>Recovering From An Adductor Muscle Tear</b></h3>\n<span style=\"font-weight: 400;\">The principles of Rest, Ice Compression and Elevation (R.I.C.E) will help with the acute symptoms. A compressive thigh sleeve can help reduce the swelling and, indeed, minimise it if they apply the support soon enough. Once the acute pain has started to subside, a gentle stretching regimen can help healing and restore the muscle’s range of movement. Also, if they see an experienced and qualified sports masseur they should find this helpful for regaining function in the muscle. Once the pain has diminished, any swelling has gone and they have regained almost full range of movement, you can start to strengthen the muscle. Try exercising with a Cliniband to start working the adductor muscle again, eventually working on the ‘innie &amp; outie’ machines that Dan John states are useless (<a href=\"https://www.biomechanicseducation.com/why-i-believe-best-selling-author-strength-guru-dan-john-was-wrong/\" target=\"_blank\" rel=\"noopener\">see Rachel\'s post from last week</a>).</span>\n\n&nbsp;\n<h3><b>How To Prevent Adductor Muscle Tears </b></h3>\n<span style=\"font-weight: 400;\">To try preventing this injury, you have to consider both extrinsic and intrinsic causes.  Look at the sport they perform and see if it demands any of the actions described above that cause the injury. If so, gradually increase the amount of work they perform in the gym to get their hips, pelvis and spine in good physical condition, and with sufficient flexibility in the nerves and muscles (<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">and yes this is what Rachel shows you from an intrinsic point of view on the Biomechanics Coaching programmes</a>). Also, build up the amount of acceleration and deceleration work they do, although make sure not to rush into a new phase of training too quickly, giving their body time to adapt.</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2 style=\"text-align: center;\">Would You Like To Be Able To Reduce Your Clients Risk Of Injury?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','The Cause, Treatment & Prevention Of Adductor Muscle Tears In Sports Players & Fitness Clients','','inherit','closed','closed','','6471-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',6471,'https://biomechanicseducation.com/?p=38769',0,'revision','',0),(38770,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">From my humble beginnings, I most definitely have felt like a fraud at times. Thinking things like... \"how on earth did I get on this stage speaking to hundreds of fitness professionals.\" </span>\n\n<span style=\"font-weight: 400;\">My colleague, Mark Laws, is also very open and honest about not having a degree nor even spending any time studying at a university, yet we both find ourselves in influential positions in the health and fitness industry. We regularly find ourselves presenting to hundreds, maybe thousands of people regularly across all media and face to face platforms which is a huge responsibility neither of us takes lightly. </span>\n\n<span style=\"font-weight: 400;\">The fact we do NOT have a degree under our belts is by no means any reflection of our intelligence, nor our passion for learning. In fact, this is quite likely the very reason we have so much passion and desire to learn and also share our experiences.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">During all of my schooling years, I was told I was ‘non-academic’ even by my parents, who were both teachers! They meant well however it had left me with the belief that I was not intelligent and so would have to accept a less ambitious work lifestyle. </span>\n\n&nbsp;\n<h3><b>Did You Ever Experience This Kind Of Feeling?</b></h3>\n<span style=\"font-weight: 400;\">So many learners that come into our academy, privately take me to one side, call or email me at some point to explain their knowledge of anatomy isn’t that great and would I bear that in mind when asking questions in front of the group. The fear of being caught out as a fake when it comes to, in particular, A&amp;P knowledge is extremely common in my 12 years experience of teaching.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone thinks everyone else knows more than them!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This I find fascinating but it also drives me to do all I can to pass on the techniques I used to improve my learning ability, self belief and therefore confidence to do what I now do. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all managed to pass our level 2 A&amp;P, then dread our level 3 A&amp;P because they then want us to recall all of those damned muscle attachments. If you were anything like me back then, I ignorantly/arrogantly wondered why I needed to remember where vastus medialis was when I knew how to teach someone to squat, for goodness sake!?!?! Oh how naive I was.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But let me tell you that I have yet to meet any learner who comes into our academy either </span><i><span style=\"font-weight: 400;\">knowing</span></i><span style=\"font-weight: 400;\"> their anatomy or that </span><i><span style=\"font-weight: 400;\">think</span></i><span style=\"font-weight: 400;\"> they know their anatomy and then we do tasks that prove we literally forgot everything we were taught, right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We had no practical reason to remember them! Clients only ever really needed to know ‘bum’, ‘thigh’ or ‘arm’ didn’t they?</span>\n\n&nbsp;\n<h3><b>Talking Anatomy To Physiotherapists Or Even Surgeons</b></h3>\n<span style=\"font-weight: 400;\">When things go wrong that\'s when you realise you don\'t know enough or you talk to a physio or therapist and they can recall more of the theory A&amp;P and there is a good chance this makes you feel inferior</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Stop!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because what Mark and I have proved is ‘non academics’ are not dumb, not unintelligent nor actually not academic, we just didn\'t find our reason to recall it yet or our preferred method to truly absorb the information. We were not inspired when at school or in that particular learning environment.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what can we do to improve our confidence?</span>\n<h3>How Do You Improve Your Anatomy &amp; Physiology Knowledge &amp; Recall?</h3>\n<span style=\"font-weight: 400;\">Well we could simply read for hours about muscle attachments but this was the problem in the first place for many of us. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We could find </span><i><span style=\"font-weight: 400;\">reasons</span></i><span style=\"font-weight: 400;\"> to recall them or </span><i><span style=\"font-weight: 400;\">methods</span></i><span style=\"font-weight: 400;\"> that help recall them. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This ability to recall then increases our confidence and when you feel confident you enjoy it more and it starts to become something you want to do it more.</span>\n\n&nbsp;\n\n<strong>Example: I bet if you have ever had an injury that you <i>know</i> the anatomy of that injury, right!?</strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You looked in the books, researched and found all of the details you needed to understand how YOU could make it better so you could help yourself recover quicker. You had an important reason to research and recall!</span>\n\n<span style=\"font-weight: 400;\">So let’s find good reasons to recall our anatomy and start with the easy stuff. Like understanding movement. If you are in the fitness industry you MUST surely be a human movement geek?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">During every single one of our workshops we meet all sorts of human movement geeks just like you and me. We quite deliberately make things as simple as possible. With a subject like ‘biomechanics’, things can be really complex simply because of the many differences between us. For example:  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Somatotype</span>\n\n<span style=\"font-weight: 400;\">Previous injury</span>\n\n<span style=\"font-weight: 400;\">Daily routine</span>\n\n<span style=\"font-weight: 400;\">Chosen sport</span>\n\n<span style=\"font-weight: 400;\">Job</span>\n\n<span style=\"font-weight: 400;\">Ability </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some of these things we can change, some we can’t but each will make us move slightly differently to the next person. </span>\n\n&nbsp;\n<h3>3 Step Process For Personal Trainers Wanting To Improve Their Anatomy &amp; Physiology Knowledge</h3>\n<span style=\"font-weight: 400;\">Back To Basics - </span><i><span style=\"font-weight: 400;\">Group Action of Muscles Task </span></i>\n\n<span style=\"font-weight: 400;\">Let me give you some tips that we give to our learners within our academy:</span>\n<ol>\n 	<li><span style=\"font-weight: 400;\"><strong>Start simple -</strong> Unless you are an </span><i><span style=\"font-weight: 400;\">anatomist</span></i><span style=\"font-weight: 400;\">, the most important part to gaining confidence in anatomy is understanding </span><i><span style=\"font-weight: 400;\">movement</span></i><span style=\"font-weight: 400;\">. This is why we learned skeletal movements first. Flexion, extension, abduction, adduction, rotation etc. There is no point moving onto learning the muscles until you are confident with movement analysis since this is more important part of our job as a trainer or coach.</span><strong> </strong></li>\n 	<li><strong>You should know your major muscle GROUPS.</strong> The hip flexors, the hip extensors, the knee extensors etc. Confidence in this language allows you to communicate with your peers about movement. It also allows you to programme more effectively when you understand how much of your programming works each of these movements.</li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\"><strong>Then start watching your clients movement and see if you can work out, during specific exercises what is happening.</strong> Forget muscles ONLY think of the movements and ask yourself </span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Which joint is moving? </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What action it is going into?</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What are the prime movers? (Groups of muscles)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What are the antagonists? (Groups of muscles)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">What are the synergists? (Groups of muscles)</span></li>\n</ol>\n</li>\n</ol>\n<span style=\"font-weight: 400;\">Once you are nailing these 3 skills, THEN, go back and start to learn which individual muscles make up the groups. This is when it starts to be more challenging because some muscles do more than one thing. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have a go and let me know how you get on but if you would prefer to do this in a classroom or on a webinar PLEASE do hit the link below or send your details and we will happily teach you just how simple it can be to remember all of the necessary anatomy you need!</span>\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Would YOU Like To Experience The Buzz With Us?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />','Do You Ever Feel Like A Fraud? 3 Steps To Learning Anatomy & Physiology','','inherit','closed','closed','','6451-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',6451,'https://biomechanicseducation.com/?p=38770',0,'revision','',0),(38771,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">Ok so one of the biggest issues in our industry is ignorance. We live our lives at 100 miles per hour and ‘scan’ read all sort of things on social media like ‘</span><i><span style=\"font-weight: 400;\">how fruit bats love oral sex’</span></i><span style=\"font-weight: 400;\"> or ‘</span><i><span style=\"font-weight: 400;\">if you name a cow it will produce more milk’</span></i><span style=\"font-weight: 400;\"> and even that ‘</span><i><span style=\"font-weight: 400;\">viagra helps hamsters recover faster from jet lag</span></i><span style=\"font-weight: 400;\">’...seriously see the references at the bottom…</span>\n\n<strong>But these are TRUE by research standards, the issue is context.</strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my experience a lot of PT’s take what some ‘guru’s’ tell them literally and then regurgitate what they heard, or read, as fact but maybe without even truly understanding it or with a degree of Chinese whispers when they relay it. The reason I know this is because I used to do the same. Yup, I would nod at my mentor and agree without even considering challenging them. </span>\n\n&nbsp;\n<h3>Fitness Guru\'s Make Mistakes Too...</h3>\n<span style=\"font-weight: 400;\">My god, they have written books or are famous so who am I to challenge them? I used to think, even when it didn’t make sense to me. I assumed I was being dumb and just took their word for it. Maybe you have done that too eh? </span>\n\n<span style=\"font-weight: 400;\">Another error I used to make was ASSUMPTION of the context. The writer means one set of circumstances and I am thinking of others. This, in my opinion, is the writer\'s responsibility since context MUST be set for clarity of what the writer is trying to convey in their message, don’t you agree?</span>\n\n<span style=\"font-weight: 400;\">As an educator, I learned very quickly NEVER to wing it. You can’t or you get caught out eventually and then it looks like you lack integrity. We have to lead by example about being honest when we don’t know BUT we do need to KNOW what we NEED and know REALLY well. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My favourite mentor taught me a very important lesson that I now pass over to our academy learners. </span>\n\n&nbsp;\n<h3 style=\"text-align: center;\"><em><strong>TO CHALLENGE EVERYTHING!</strong></em></h3>\n&nbsp;\n<blockquote><i><span style=\"font-weight: 400;\">“The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge” </span></i>\n\n<span style=\"font-weight: 400;\">Stephen Hawkin </span></blockquote>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We really should challenge what we are told until we understand it fully ourselves within our context of thinking or with a context set by the author. Also thinking with depth as well as breadth.</span>\n\n&nbsp;\n<blockquote><span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">If you can’t explain it simply, you don’t understand it well enough”</span></i>\n\n<span style=\"font-weight: 400;\">Albert Einstein</span></blockquote>\n<img class=\" wp-image-6410 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/03/Rachel-France-Listening-to-Dan-John-Never-Let-Go-768x1024.jpg\" alt=\"\" width=\"338\" height=\"450\" />\n\n<span style=\"font-weight: 400;\">What I mean by this is we should not be afraid to challenge what we hear no matter who says it. Those celebrities or guru’s are still just humans like you and me. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My Audible addiction has allowed me to absorb a ridiculous number of books by some of my favourite people. <a href=\"http://danjohn.net\" target=\"_blank\" rel=\"noopener\">Dan John, strength, track and throwing coach</a> has been at the top of my listen to list for some time now</span><span style=\"font-weight: 400;\">. In fact, I recently listened to my 5th Dan John book ‘</span><i><span style=\"font-weight: 400;\">Never Let Go</span></i><span style=\"font-weight: 400;\">’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now, I am a <strong>massive fan,</strong> however as I listened I wanted to challenge a statement he made. USA guru of strength coaching or not, I did not agree with a statement he made. </span>\n\n&nbsp;\n<h3>Where I Believe Dan John Is Wrong...</h3>\n<span style=\"font-weight: 400;\">Dan John rubbed me up the wrong way when he talked about the ‘innie and outie’ machines like they are a total waste of time. He means the abductor/adductor machines by the way, or at least that’s my understanding of what he describes.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">None of his training suggestions (that I have come across so far) advocate any kind of frontal plane nor rotational work. He doesn’t see the point apparently!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I have tried to come up with situations where this might be the case….errr….mmmm….NONE!?!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We ALL need ALL movement abilities to be efficient in our individual movement profile otherwise we will end up with poor strength ratios and have an increased risk of injury. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you look at George Davies work into joint strength ratios in ‘</span><i><span style=\"font-weight: 400;\">Compendium of Isokinetics’ </span></i><span style=\"font-weight: 400;\">he discusses the hip flexors/extensor ideal strength ratio as 1:1 as are the hip abb/adductors. We found the same when we collected data from 4.5k subjects over 20+ years of using isokinetics. However, if you only train strength sagittally then chances are you will be lacking frontal plane stability. We do not simply move or require strength sagittally and to be fair I am confident Dan John would find it hard to disagree. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">SO WHAT? (Great question eh…)</span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-6415\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/03/Walking-1024x512.png\" alt=\"\" width=\"642\" height=\"321\" />Well now have a think about the gait cycle and the effects of movement through the body when you walk. Imagine as you heel strike and your subtalar joint goes from pronation to supination, which by the way require triplanar motions (eversion/abduction/dorsiflexion for pronation and inversion/adduction/plantar flexion for supination). </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then imagine the effects of this force as it travels up through the lower leg and that torsional rotation hits the knee joint, which by the way doesn\'t just flex as I discovered upon reading Brunnstrom’s book ‘</span><i><span style=\"font-weight: 400;\">Clinical Kinesiology</span></i><span style=\"font-weight: 400;\">’ (gliding, rotation and flexion occur at the knee). This influences some internal rotation at the femur which in turn influences the pelvis, which by the way rotates around the Sacroiliac Joint (where the spine sits between the ilium) as you walk. Thus requiring the abd/adductors, for example, to ‘stabilise’ through the frontal plane as you lift one leg from the floor they because they will co-contract with the spinal lateral flexors, like QL, on the opposite side.</span>\n\n<span style=\"font-weight: 400;\">The spine clearly rotates in dudes like Dan John because you can see it as they swagger round the gym, shoulders rotating….;)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">... you understand my point?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I disagreed with his statement about ‘innie and outie’ machines being a waste of time, he did NOT add context for me to accept it either. Had he done so then I may not be writing this blog.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Abd/adductor strength is vital for risk reduction of common injuries like inguinal hernias and dysfunctions like ligament dominance (knee valgus upon landing) that can result in ACL injuries. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now had he stated that he felt the abd/add machines were for some reason not as beneficial and had then given a reason and the alternative examples it might have softened the blow to my disappointment</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Non-machine examples he could have given might have been side planks, weight on the top leg, which is placed on top of the bench for adductors or weight on bottom leg for abductors.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter size-large wp-image-6395\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/03/Side-Plank-Biomechanics-Education-1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" />But wait...there is a still a challenge to this in context. Side planks are bloody hard! Imagine all client types...ok so a strength athlete might get away with side planks, but what about 70yr old Ethel? CONTEXT!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Does it change my respect for Dan John? Not at all, it makes me remember <strong>he is human like me</strong> and is writing the book for a specific demographic. He is also very honest about his own humble beginnings and mistakes and I like that. </span>\n\n<span style=\"font-weight: 400;\">The lesson here is for YOU to notice when an author doesn’t write the context because they assume the reader will be their demographic. This is one of the main rules of marketing, write in the words of your audience/demographic, so I understand what Dan John is doing in his book. I can reason with my frustration at his flippancy over dismissing a certain exercise as useless because I can see he is ‘in character’ as he writes. </span>\n\n&nbsp;\n<h3><b>Challenge EVERYTHING! Yes, Even Me!</b></h3>\n<span style=\"font-weight: 400;\">So where am I going with this?</span>\n\n<span style=\"font-weight: 400;\">Well, it is simple really, I would like to encourage you to challenge everything you are told or read, until you have absolute clarity of what the writer or orator is trying to communicate. Once understanding is clear then surely we can feel confident about our contribution to the discussion.</span>\n\n<span style=\"font-weight: 400;\">Finally just because Dan John says innie &amp; outie machines are useless please don’t take it literally and think that your elderly client Ethel won’t benefit from them…..</span>\n\n&nbsp;\n<h3><b>How Do We, Biomechanics Education, Help?</b></h3>\n<span style=\"font-weight: 400;\">It is an education company’s responsibility to encourage an individual\'s ability to express themselves through various platforms or mediums. Autonomous learning comes from developing the inquisitive nature in our learners. This vital lesson really increases confidence when it comes to receiving new information. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Something we are renowned for is enabling huge increases in confidence in our learners.  We advise them the learning only begins once they finish their training with us and so our support is lifelong. </span>\n\n<span style=\"font-weight: 400;\">We permit, and encourage, our learners to re-sit their workshop as many times as they wish for free until they qualify and feel happy with their depth of understanding. A human is available to talk to over the phone, via skype or any other medium to support you before, during and after your training with us. We get together 4 times a year to network, discuss, troubleshoot, share, review, refresh and continue our lifelong learning journey. We have recently added an online resource provision called the IBA member portal. This contains all the most up to date resources we have to offer, including manuals, screening forms, reading lists and webinars and online workshops will be coming very soon! Then once a year we come together to celebrate Biomechanics Coaching and its phenomenal evolution over 30yrs with some fabulous dates and discussions around human movement and the latest research. </span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Would YOU Like To Experience The Buzz With Us?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\"><img class=\"aligncenter size-large wp-image-5155\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a>\n\n<hr />\n\n&nbsp;\n\nOh and just for your amusement is the research I mentioned at the beginning....\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Fruit Bats Love Oral Sex</span></h2>\n<span style=\"font-weight: 400;\">Animals have sex primarily for reproduction rather than pleasure. The male inserts his penis into the female’s vagina, and after a minute or two, the deed is done.</span>\n\n<span style=\"font-weight: 400;\">Sex among animals is so basic and boring that it’s fascinating to know that certain mammals engage in sexual activities that are </span><a href=\"http://www.livescience.com/9754-surprising-sex-behavior-bats.html\"><span style=\"font-weight: 400;\">associated with humans and pleasure</span></a><span style=\"font-weight: 400;\">, such as fellatio and cunnilingus.</span>\n\n<span style=\"font-weight: 400;\">In 2009, researchers from the Guangdong Entomological Institute in Guangzhou, China, accidentally discovered that short-nosed fruit bats engage in oral sex. During the study, the scientists expected to see typical animal behavior such as grooming. Instead, they observed that female fruit bats licked the male’s penis during sex.</span>\n\n<span style=\"font-weight: 400;\">In another study conducted in 2010 and 2011, researchers discovered that </span><a href=\"http://phenomena.nationalgeographic.com/2013/03/28/youve-seen-fruit-bat-fellatio-now-fruit-bat-\"><span style=\"font-weight: 400;\">flying foxes</span></a><span style=\"font-weight: 400;\"> (another fruit bat species) engage in oral sex, too. This time, it was the male bat that licked the female’s vagina. In both studies, researchers discovered that engaging in fellatio and cunnilingus prolonged sex among the bats. </span>\n\n<span style=\"font-weight: 400;\">Scientists have not yet discovered the evolutionary basis of oral sex among fruit bats. But they suggest that it might help in sperm transportation, stimulation of female glandular secretions, and prevention of sexually transmitted diseases.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Cows With Names Produce More Milk</span></h2>\n<span style=\"font-weight: 400;\">Dairy farmers could potentially increase their incomes with one </span><a href=\"http://www.telegraph.co.uk/news/earth/agriculture/farming/4358115/Cows-with-names-produce-more-milk-scientists-say.html\"><span style=\"font-weight: 400;\">simple but weird trick</span></a><span style=\"font-weight: 400;\">—give their cows names. A scientific study published in Anthrozoos suggested that cows with names produce more milk than their nameless counterparts.</span>\n\n<span style=\"font-weight: 400;\">This bizarre study was conducted by Drs. Catherine Douglas and Peter Rowlinson of Newcastle University, and it involved over 500 dairy farmers from the United Kingdom. </span>\n\n<span style=\"font-weight: 400;\">On average, cows produce 7,500 liters (2,000 gal) of milk over a period of 10 months. But Douglas and Rowlinson discovered that cows with names produced 260 liters (70 gal) more.</span>\n\n<span style=\"font-weight: 400;\">Many dairy farmers have long suspected that giving their cattle some “one-to-one attention” increases milk production, but this research was the first that tried to prove it scientifically. According to the study, cows that are herded as a group also produce less milk.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Viagra Helps Hamsters Recover Faster From Jet Lag</span></h2>\n<span style=\"font-weight: 400;\">We all know that Viagra is used to treat erectile dysfunction. However, Diego Golombek of the National University of Quilmes in Buenos Aires, Argentina, has discovered that this light blue pill might also help to </span><a href=\"http://www.nature.com/news/2007/070521/full/news070521-1.html\"><span style=\"font-weight: 400;\">treat jet lag</span></a><span style=\"font-weight: 400;\">.</span>\n\n<span style=\"font-weight: 400;\">This bizarre scientific research was conducted on hamsters that were injected with Viagra. After administering the drug, the rodents’ sleep cycles were pushed ahead by six hours—the approximate amount of time needed to fly from New York to Paris.</span>\n\n<span style=\"font-weight: 400;\">The hamsters on Viagra recovered from jet lag as much as 50 percent faster than the hamsters without Viagra. Although the results were fairly positive, scientists do not know if the same effect will occur in humans.</span>\n\n<span style=\"font-weight: 400;\">Furthermore, Viagra was administered to the hamsters via injection. Scientists are uncertain if taking the drug as a pill will produce the same effect.</span>','Why I Believe Best Selling Author & Strength Guru, Dan John, Was Wrong...','','inherit','closed','closed','','6391-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',6391,'https://biomechanicseducation.com/?p=38771',0,'revision','',0),(38772,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">So I am confident you will have heard of the piriformis muscle and that you are aware of, at least, some of its functions within the body, right? Don\'t panic if you don\'t I\'ll explain in a second.</span>\n\n<span style=\"font-weight: 400;\">But d</span><span style=\"font-weight: 400;\">o you know how well it functions in you, or your client?</span>\n\n<span style=\"font-weight: 400;\">Or</span>\n\n<span style=\"font-weight: 400;\">Do you know what can happen when it doesn’t function well?</span>\n\n<span style=\"font-weight: 400;\">Imagine if you were able to test its ability to function?</span>\n\n&nbsp;\n\nIn fact, I am going to show you (video below) an example of how the pelvis can be affected by the shoulder.\n\n&nbsp;\n<h3>How The Piriformis Can Contribute To Back Pain, Even Shoulder Dysfunction</h3>\n<span style=\"font-weight: 400;\">The piriformis muscle is one most fit pros are familiar with. Deep to the glutes, this fan-shaped muscle is often blamed for many misdemeanours in the pelvic area BUT through the integrated system, it can also affect function in other areas of the body. When rubbed, massaged or pressed it can often feel tender, sore or even painful.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Attaching from the anterior surface of the sacrum to the greater trochanter it, therefore, crosses the Sacroiliac Joint, thus contributing to movements like external rotation and abduction of the femur or leg. However, when inhibited it can also contribute to problems with movement around the pelvis and even lower back pain. This little blighter can actually contribute to, OR be affected by, shoulder dysfunction and even problem feet!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So just think for a moment about how much of your daily movement comes from the pelvis…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The tricky part is knowing when this muscle is inhibited, amongst others, because the body is such a </span><i><span style=\"font-weight: 400;\">master of compensation</span></i><span style=\"font-weight: 400;\"> that it will make adaptations to allow you to move </span><i><span style=\"font-weight: 400;\">normally </span></i><span style=\"font-weight: 400;\">without even realising that there is an intrinsic compensation to your natural movement. </span>\n\n<span style=\"font-weight: 400;\">There is a good chance you will, in fact, have no pain or discomfort, certainly initially, and so the insidious nature of this very common problem fools us into thinking it was one single event that caused us to (finally) experience backache or sore knees. </span>\n\n&nbsp;\n<h3>When The Back Isn\'t The Cause Of Back Pain</h3>\n<span style=\"font-weight: 400;\">Also, we then blame the back and the knees because they are the sore areas BUT if we are to be practitioners that really do believe the body works as an </span><i><span style=\"font-weight: 400;\">integrated system</span></i><span style=\"font-weight: 400;\"> then why are we not testing the entire body when clients present with a poor movement profile, low-grade aches and niggles?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone agrees and talks about the </span><i><span style=\"font-weight: 400;\">kinetic chains</span></i><span style=\"font-weight: 400;\"> within the body and yet still appear to be stunned when having applied manual therapy techniques or exercises to the problem area it does not solve the problem, particularly long-term. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is still amazement to discover that clients bad back is being caused by their pelvic dysfunction, ‘floppy’ feet or even inhibited shoulders. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Guess who is perfectly placed to improve an individual\'s pelvic function BEFORE there is a need to visit a clinician or medic?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YES, YOU! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can show you simple techniques that enable you to start testing your client\'s body to avoid the need for a medical profession, OR at least to enable better communication between you and the medics, as you both work within your remit to help the individual.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Watch the short video below because I SHOW you exactly how the integrated system works from one end to the other when a shoulder technique releases and changes the function of the pelvis and muscles like piriformis in just 1 minute and 20 seconds</span>\n\n&nbsp;\n<h3>Watch Now - Shoulder Release Affects Leg Length Discrepancy</h3>\nhttps://www.youtube.com/watch?v=la6jOLuMSiU\n\nHow cool is that?\n\nAnd what happens when you correct someone\'s leg length discrepancy? Do you think they would be at lower risk of injury? Do you think they would be able to put more force &amp;strength through their movements? YOU BET! You could help someone squat better, move better, simply by doing this exercise. Cool huh!?\n\nBeing able to affect someone\'s pelvis by releasing their pec minor. Just think how knowing this could affect your ability to train clients. It would take it up a notch right!\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to learn those tests and the exercises that go with them, that I demonstrated in the video? If you would, then check out</span><span style=\"font-weight: 400;\"> our extremely popular 1-day workshop during which you will learn how to assess the pelvis, spine and shoulders. <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to find out more information and simply fill in the form to get a call from one of the team to find out more.</a></span>\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\"><b>Imagine Being Able To Do This Type Of Test For The Whole Body…</b></h2>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">If you want to be able to do this kind of analysis for the whole body then you should really check out our full diploma.</span></p>\n\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5153 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a>','Discover How 1 Simple Shoulder Exercise Could Help Reduce Back Pain & Improve Movement','','inherit','closed','closed','','6336-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',6336,'https://biomechanicseducation.com/?p=38772',0,'revision','',0),(38773,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<h3><b>The Problem - How Can You Tell If Your Client Is At Risk Of A Knee Injury</b></h3>\n<span style=\"font-weight: 400;\">You get a new client and wonder where to begin.</span>\n\n<span style=\"font-weight: 400;\">You use the ParQ and ask a few simple questions.</span>\n\n<span style=\"font-weight: 400;\">However, you wonder if this is enough?</span>\n\n<span style=\"font-weight: 400;\">Which exercises are right for them?</span>\n\n<span style=\"font-weight: 400;\">Which might be wrong?</span>\n\n<span style=\"font-weight: 400;\">How would you know?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s take a common issue seen in beginners to exercise like poor knee stability. </span>\n\n<span style=\"font-weight: 400;\">Why are they unstable? </span>\n\n<span style=\"font-weight: 400;\">Are they weak? If so where? And which strength moves would be appropriate?</span>\n\n<span style=\"font-weight: 400;\">Every time your client runs or jumps they seem to almost fall over with wobbly knees.</span>\n\n<span style=\"font-weight: 400;\">How can you identify the root cause and then rectify it?</span>\n\n&nbsp;\n<h3><b>The Solution - How To Know If Your Client Is At Risk Of Knee Injuries...</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well here is a method that is helping PT’s like you, identify if your clients are quad dominant.</span>\n\n&nbsp;\n<h3><strong>What do I mean when I say “quad dominant”?</strong></h3>\n<b>Biomechanical Issue;</b>\n\n<span style=\"font-weight: 400;\">Quadriceps Dominance</span>\n\n<span style=\"font-weight: 400;\">An imbalance between knee extensor and flexor strength, recruitment, and coordination.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Basically, the muscles that surround the knee and allow it to function are either not strong enough and/or lack the ability to move in the right way.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Relevance:</span>\n\n<span style=\"font-weight: 400;\">If the peak hamstring torques are down this will de-stabilises the knee. And thus increase the risk of injury.</span>\n\n<span style=\"font-weight: 400;\">The more a person bends their knee, the more the hamstrings engage to stabilise it.</span>\n\n&nbsp;\n\n<b>0 - 30 degrees of knee flexion = </b><span style=\"font-weight: 400;\">quadriceps pull the tibia forward with little opposition from hamstrings</span>\n\n<img class=\"aligncenter wp-image-5413 size-full\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/03/Quadriceps-Dominance-0-30-degrees-knee-flexion.png\" alt=\"\" width=\"416\" height=\"418\" />\n\n<b>30 – 90 degrees of flexion = </b><span style=\"font-weight: 400;\">the quadriceps have comparatively less effect and the hamstrings engage more</span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter size-full wp-image-5415\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/03/Quadriceps-Dominance-30-90-degrees-knee-flexion.png\" alt=\"\" width=\"404\" height=\"416\" />Normal Quads/hams ratio established from </span><span style=\"font-weight: 400;\">isokinetic testing:</span>\n\n<span style=\"font-weight: 400;\">Sprinting/rugby/football = Hamstrings are 70% of Quads</span>\n\n<span style=\"font-weight: 400;\">Long distance runners = Hamstrings are 60% of Quads</span>\n\n<span style=\"font-weight: 400;\">Race walkers = Hamstrings are 90% of Quads</span>\n\n&nbsp;\n<h3><b>How To Test For Quadriceps Dominance</b></h3>\nSo how on earth do you find out if your client is quad dominant? Well, I am not just going to freak you out and then leave you, I have a test for you try today….\n<h4><span style=\"font-weight: 400;\">The Test For Quadriceps Dominance:</span></h4>\n<span style=\"font-weight: 400;\">Test the ability to leap/hop forwards about 1 metre, land in 90 degrees of knee flexion, with the hips at 45 degrees and then hold this single-leg stance for 3 seconds.</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">To maintain upright posture (45 degrees at hip)</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Land in deep knee flexion (90 degrees at knee) </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Hold for 3 seconds</span></li>\n</ul>\n<img class=\"aligncenter size-full wp-image-5417\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/03/Quadriceps-Dominance-Test.png\" alt=\"\" width=\"279\" height=\"503\" />\n\n<span style=\"font-weight: 400;\">Did They Pass?</span>\n\n<span style=\"font-weight: 400;\">YES - Negative Result:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The client passes if they have the ability to maintain stance with deep knee flexion and control = good hamstring control</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">NO - Positive Result:</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The client fails if they have an inability to maintain stance with deep knee flexion indicates quadriceps dominance = poor hamstring control</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Stroup AL, Nance TA, Noyes FR, Hewett TE)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now ask yourself this question </span><i><span style=\"font-weight: 400;\">“if the hamstrings are unable to contribute enough to stabilise the knee upon landing at 90 degrees, what should you do?”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In other words what exercises would encourage the function of the hamstrings and improve the quads/hamstring ratio?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is very simple….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). You would need to strengthen the hamstrings</span>\n\n<span style=\"font-weight: 400;\">2). Specifically the hamstrings, which means we need to understand their action/s</span>\n\n<span style=\"font-weight: 400;\">3). Then isolate that movement in a resistance exercise...yes I said isolate</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember we all want to be functional but if something (ie the hamstrings) aren’t function’ING’ then you cannot be fully function’AL’</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The hamstrings assist hip extension (with the glutes) but are really the main knee flexors.</span>\n\n<span style=\"font-weight: 400;\">So consider how many exercises you know that isolate knee flexion?</span>\n<h4><strong>Isolated Hamstring Strengthening Exercises:</strong></h4>\n<b>Leg Curl Machines </b>\n\n<b>Nordic Leans</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These are really great exercise examples that contribute to changing the ham to quad strength ratio.</span>\n\n&nbsp;\n\nIf you discover that your client is quad dominant, then start building in those hamstring strengthening exercises into their programme.\n\n&nbsp;\n<h3><b>Want To Take This Further? </b></h3>\n<span style=\"font-weight: 400;\">Usually delivered on our Biomechanics Coach Diploma, Knee &amp; Foot Biomechanics workshop, here we are giving it to you to try out for free to see if it helps. So please get in touch with your results or questions </span><a href=\"mailto:rachel@biomechanicseducation.com\"><span style=\"font-weight: 400;\">rachel@biomechanicseducation.com</span></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you would like to know more there is an entire workshop dedicated to assessing knee stability and foot function. This workshop also includes all of the relevant exercises to help you in your session programming.</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Want more info? Then click here fill in your info and speak to one of the team.</span></a>\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h2 style=\"text-align: center;\"><b>Imagine Being Able To Do This Type Of Test For The Whole Body…</b></h2>\n<span style=\"font-weight: 400;\">If you want to be able to do this kind of analysis for the whole body then you should really check out our full diploma.</span>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-5153 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Biomechanics-Coach&#x2122;-Practical-Assessment-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></a>','Are Your Clients At Risk Of Knee Problems?','','inherit','closed','closed','','5409-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',5409,'https://biomechanicseducation.com/?p=38773',0,'revision','',0),(38774,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">So a topic we hear a lot about is stress. There is a lot of talk about how it influences our mood, behaviour and even health. Most of you, I am sure, will have felt stressed at some point in your life and maybe regularly, but do you know how to manage it? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What happens when you feel stressed? </span>\n\n<span style=\"font-weight: 400;\">Maybe you have clients who get stressed?</span>\n\n<span style=\"font-weight: 400;\">Do you wonder what you can do to help them? </span>\n\n<span style=\"font-weight: 400;\">Do you really understand what is causing their stress?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Is stress actually a bad thing?</span>\n\n<span style=\"font-weight: 400;\">Now before you jump all over that last question, read the rest of this post...</span>\n\n&nbsp;\n\n<b>What Is Stress?</b>\n\n<span style=\"font-weight: 400;\">Before we explore this, let’s have a quick look at some of the Oxford Dictionary’s definitions of stress;</span>\n\n<i><span style=\"font-weight: 400;\">A state of mental or emotional strain or tension resulting from adverse or demanding circumstances.</span></i>\n\n<i><span style=\"font-weight: 400;\">‘he\'s obviously under a lot of stress’</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Something that causes a state of strain or tension.</span></i>\n\n<i><span style=\"font-weight: 400;\">‘the stresses and strains of public life’</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Subject to pressure or tension.</span></i>\n\n<i><span style=\"font-weight: 400;\">\"this type of workout stresses the shoulder and knee joints\" </span></i>\n\n&nbsp;\n\n<b><i>Stress</i></b><i><span style=\"font-weight: 400;\"> is primarily a physical response. When </span></i><b><i>stressed</i></b><i><span style=\"font-weight: 400;\">, the body thinks it is under attack and switches to \'fight or flight\' mode, releasing a complex mix of hormones and chemicals such as adrenaline, cortisol and norepinephrine to prepare the body for physical action. www.anxietyuk.org.uk</span></i>\n\n&nbsp;\n<h3><b><img class=\"aligncenter size-large wp-image-5363\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/02/Is-stress-a-bad-thing--1024x683.jpg\" alt=\"\" width=\"1024\" height=\"683\" />Is Stress Good or Bad?</b></h3>\n<span style=\"font-weight: 400;\">In his book </span><b>‘‘</b><b><i>We KNOW what to do, so WHY don’t we do it?</i></b><b>’, </b><span style=\"font-weight: 400;\">Nick Hall suggests that we should not be looking to </span><i><span style=\"font-weight: 400;\">reduce </span></i><span style=\"font-weight: 400;\">the stress, but to </span><i><span style=\"font-weight: 400;\">increase</span></i><span style=\"font-weight: 400;\"> the recovery.</span>\n\n<span style=\"font-weight: 400;\">He suggests we NEED stress!</span>\n\n<span style=\"font-weight: 400;\">The brain AND body both need stress for stimulation, to grow, to develop and to maintain a healthy system. </span>\n\n<span style=\"font-weight: 400;\">The problem often isn’t how much we DO, but how much we DON’T DO. </span>\n\n<span style=\"font-weight: 400;\">Personally, I am a big believer in the power of the mind and that having methods in place to improve the way we think can be extremely powerful. </span>\n\n&nbsp;\n<h3><b>The Stress Of Exercise Is A Good Thing, Right..?</b></h3>\n<span style=\"font-weight: 400;\">It is well documented that stressing the body with physical activity is good for us. Within our professions we advise people on how to move, to move well and to move more. The physical stress of exercise replacing our previous physical demands as hunter-gatherers of building fires, climbing trees and running away from sabre-toothed tigers.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have learned that when we don\'t move we gain all sort of undesirable compensations and adaptations that we, as exercise professionals, spend our careers helping our clients with. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Going for a run would be a form of stress on the body and would be seen by most as a </span><i><span style=\"font-weight: 400;\">good or acceptable</span></i><span style=\"font-weight: 400;\"> form of stress; as it exercises the cardiovascular system and the leg muscles, for example, to name just a couple of the positive physical demands. But to make that ‘stress’ </span><i><span style=\"font-weight: 400;\">valuable</span></i><span style=\"font-weight: 400;\"> we then need to recover and rest. If we just went running again straight away without recovery the body would begin to feel TOO stressed and eventually would start to break down. </span>\n\n&nbsp;\n<h3><b>Mental Stress… Same or Different?</b></h3>\n<span style=\"font-weight: 400;\">Mental stress is the same, or similar, if you consider that mental stimulation/stress, is how we gain knowledge and process information. Mental stress requires some kind of a recovery phase too, like meditation for example. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Basically what Hall is saying in his book, is that the problem isn’t necessarily the STRESS itself but more often than not, the fact that we are not recovering from the stress or stimulation well enough. We should measure the stress with enough, equal or ample recovery. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He uses the example of Newton’s law of physics, where each action causes a reaction, as something of which we should be mindful in this example. The reason for this, Hall says, is because it is during the recovery phase that we grow and when the ‘de-stressing’ occurs. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It reminds me of the Kubler Ross curve we discuss during our workshops, that we receive information and may go through a phase of discomfort while we process it. However, with time we can start to make sense of it to allow homeostasis to return to both our mind and body.</span>\n\n&nbsp;\n\n<b>So Ask Yourself This…</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Are you experiencing too much stress?</span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">Are you simply lacking recovery?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What changes do you need to make to your routine to allow for sufficient recovery?</span>\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h2 style=\"text-align: center;\">Are you ready to take your skills to the next level?</h2>\n<h3 style=\"text-align: center;\">Want to be able to help your clients move better, move more freely and get even better results on their programmes?</h3>\n<p style=\"text-align: center;\">Then <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\">click here to find out more about our Biomechanics Coach Diploma</a> and how it could help you become an even better personal trainer.</p>\n<p style=\"text-align: center;\">Not ready to jump on the full diploma? Then come along to one of our 1 day workshops. You will LOVE these! <a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\">Just click here to see when and where they are.</a></p>\n<p style=\"text-align: center;\"><img class=\"aligncenter size-large wp-image-4709\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/02/Intrinsic-Biomechanics-Taster-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" /></p>\n<p style=\"text-align: center;\"></p>','Do You Feel Stressed? And Is Stress Actually A Bad Thing?','','inherit','closed','closed','','5323-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',5323,'https://biomechanicseducation.com/?p=38774',0,'revision','',0),(38775,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">Having spent many years ‘collecting’ shoes, boots, sandals, high heels and some really truly </span><i><span style=\"font-weight: 400;\">beautiful </span></i><span style=\"font-weight: 400;\">footwear, since learning about intrinsic biomechanics I have come to realise how detrimental most footwear can be for us. In particular if we have particular foot types.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cute looking or leg flattering fashion isn\'t designed for optimising our biomechanics, quite the opposite in fact. While it\'s a choice what we put on our feet...</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">...how are we supposed to know what\'s going to happen if we wear certain footwear for long periods? </span></li>\n 	<li><span style=\"font-weight: 400;\">...how do we advise our clients when they ask us our opinion on footwear? </span></li>\n 	<li><span style=\"font-weight: 400;\">...what contributes to \'sensible\' footwear choices? </span></li>\n 	<li>...which shoe companies can we trust?</li>\n 	<li><span style=\"font-weight: 400;\">...should we ignore fashion and simply wear the most \'functional\' shoes? </span></li>\n 	<li><span style=\"font-weight: 400;\">....which are the most functional shoes and....</span></li>\n 	<li><span style=\"font-weight: 400;\">.....how do we know?</span></li>\n</ul>\n&nbsp;\n\nThis blog wont necessarily be able answer all of these questions but they are the ones I have considered for some time now.\n\n<span style=\"font-weight: 400;\">If you have feet like mine, with a ‘loose’ Midtarsal Joint (MTJ), loose Subtalar Joint (STJ), low arch height and limited capacity for supination, you may have been described by a foot practitioner as an ‘over pronator’. </span>\n\nTo better understand \'over pronation\' read my previous <a href=\"https://www.biomechanicseducation.com/foot-biomechanics-made-simple-part-1-the-over-pronation-fallacy/\" target=\"_blank\" rel=\"noopener\">Juicemail Foot Biomechanics Made Simple</a>\n<h2></h2>\n<h2>So what?</h2>\n&nbsp;\n\nWell this could have been impacted by our footwear choices.\n\nImagine for a moment an over pronator (technically this is late supination) - what might their feet look like?\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36119 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2018/02/IMG_4960-1-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" />\n\n&nbsp;\n\nMaybe something like this image above?\n\nWell as you can see this result of over pronating (or late supinating) has resulted in the body starting to adapt and develop the onset of a bunion to allow for the force being put through the inside of that big toe (Halux) since the ankle joints are loose, the active myofascial tissue at the pelvis hasn\'t been strong enough to counter react to the ground reaction force resulting in a bony lump forming.\n\nThis means it is not simply going to go away.\n\nImagine growing an extra bit of bone on your foot...!\n\n&nbsp;\n<ul>\n 	<li>...how do you think this will this affect the way you move?</li>\n 	<li>...how might it alter the force going through the body?</li>\n 	<li>...where will the ground reaction forces now travel?</li>\n 	<li>...how do we decide on what to wear on our feet?</li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are like me in the image above, and you wish to reduce the onset of any further degradation to your foot function you may also seek out better footwear to allow the toes to splay out more but </span><span style=\"font-weight: 400;\">you may well experience from the struggle to find comfortable &amp; appropriate shoes that even look nice. this is of course mostly down to personal taste and fashion sense. So how important is the style of the shoe versus that fit and freedom of the foot?</span>\n\n<span style=\"font-weight: 400;\">Well I had no problem ditching my high heels since they were always extremely uncomfortable anyway &amp; so have spent many years using mainly trainers as my regular footwear.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Have you been trainer shopping recently?</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is almost nothing for my foot type, that looks ok but is comfortable, doesnt keep the heel higher than the toes thus shortening the calf and also spreads my toes out (I use spacers when barefoot since they don\'t fit in any shoes I own). When you consider the volume of trainers there are to choose from, it can be really frustrating. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Knowing a little bit about foot biomechanics I realise the challenge for client\'s who are \'sold\' to by marketing adverts suggesting their shoes \"...<em>are comfy, like pillows..\" </em>or they are designed with huge heels that shorten the calf muscles, thick soles that limit movement in the arch, narrow toe boxes that squish our toes together but all of these reduce our foot biomechanics function over time. </span>\n\n<span style=\"font-weight: 400;\">How many shoe sales people understand foot biomechanics and their ascending influence? let alone about the biomechanics of the rest of the body and the descending influence? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you are thinking what has the rest of the body got to do with shoe choice, well consider this…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you know that one of the most common biomechanical presentations we have today is abnormal pelvic biomechanics. This area then influences the knee, often inwards when walking/running. This in turn rotates the ankle and therefore the foot into ‘over pronation’ - which is actually ‘late supination’ .....these individuals are \'propelling\' their body while still in pronation when they should be in supination. Pronation = loose, wide, long, mobile foot for shock dissipation. Supination = stiff, rigid, narrow, shorter foot for stability in propulsion phase.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you know even your shoulder biomechanics can impact upon your feet via the integrated system - shoulder to spine to pelvis to knee to foot? Come and meet me in the classroom one day and I will show you very easily how they are linked!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if this is the case should shoes be designed, or at least fitted, by people who understand all of this? or at least for our children?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Martin Haines, founder of the Intrinsic Biomechanics method, has been a lead consultant for Start-rite children’s shoes for some time now and is also an advisor to Scholl.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He committed over 20 years of his life to collecting data and, along with his team, developed exceptional education programmes with simple methods to understand foot function along with capacity in other areas of the body. These education programmes give us assessment skills to help us, as trainers understand the integrated system, how it works and how each area of the body impacts upon the other. Maybe also an understanding of how to advise our clients on footwear or at least when they might need to see a podiatrist.</span>\n\n<a href=\"https://www.startriteshoes.com/\"><img class=\"aligncenter size-large wp-image-5281\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/02/Start-Rite-Shoes-1024x649.jpg\" alt=\"\" width=\"1024\" height=\"649\" /></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In his work with Start-rite he discussed with them how children walk, what should happen during their gait cycle and at what stages in their development and why. How they should develop naturally and how this impacts upon their movement as they grow from pre 18 months up to 6yrs of age and with the emphasis on how shoes need to reflect this natural development of human intrinsic biomechanics.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Design considerations they discussed took into account things like the influence of a heel raise, joint flexibility, shock absorption, what wearing a boot might do to the child’s ankle and how all of the changes that occur during childhood occur for a reason and can be impacted upon should inappropriate footwear be worn.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So Start-rite really are the UK leaders setting standards in shoe design for children with this modern approach.  They recognise the need for a screening system to fit our children into the most appropriate shoes for, not only their foot type but also their functional capacity at that point in time.</span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">Would you like to learn more about foot function?</span></h2>\n<h2><span style=\"font-weight: 400;\">Would you like to understand how to change foot function by improving shoulder muscle function?</span></h2>\n<h2>Are ready to take your skills to the next level?</h2>\n<h2>.... then<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\"> jump on one of our upcoming courses, just click here to find out more.</a></h2>\n<h2></h2>','Shoe\'s - Fashion or Function?','','inherit','closed','closed','','5279-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',5279,'https://biomechanicseducation.com/?p=38775',0,'revision','',0),(38776,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<h2><b>2 Important Lessons About Yourself And How You Train</b></h2>\n<span style=\"font-weight: 400;\">Did you ever wish you had a body part like someone, Arnold’s biceps perhaps? Or Gerrard\'s abs in the film ‘300’? The part of your body you like the least can be a subconscious or conscious focal point in our self critique and we can be so hard on ourselves!</span>\n\nIn my younger years Christie Brinkley was my idol....(yes that was a while ago for those who have never heard of her!).....or rather I fantasised about having legs like hers; long, slim, THE inner thigh ‘gap’, slender ankles and smooth soft skin. My own? Well, they were just HUGE, in my eyes!\n\nNow I was a girl who never wore dresses or skirts because of my ‘big’ legs. I was a girl who didn’t feel feminine because of the size of my legs. In my head, my legs weren’t the ‘norm’.\n\nWhat I hadn’t realised was the legs I had were actually athletic and muscular, and in my younger years, this was much more unique than it is today. Having begun to lift weights in my early 20’s this meant my ‘dancer’ legs developed further with even more muscular curves.\n\n<span style=\"font-weight: 400;\">I spent 15 years distance running with much of my time in running pants or running tights. What genuinely stunned me was the amount of attention my legs would get, and I mean from all sorts of people!</span>\n\n&nbsp;\n\n&nbsp;\n<h3><b>Lesson No 1 - You Cannot Change Your Genetic Make-Up</b></h3>\n&nbsp;\n\n<img class=\"wp-image-4221 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/02/Christie-Brinkley-1.jpg\" alt=\"Christie Brinkley\" width=\"324\" height=\"479\" />\n\n<span style=\"font-weight: 400;\">The first important lesson I learned quite early on was that you cannot change your genetic makeup, you certainly cannot easily change your basic shape (ask any drug-free bodybuilder), in fact, no one can have Christie Brinkley legs except for Christie Brinkley!! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In fact, if you haven\'t ever heard of her, here she is.</span>\n\n&nbsp;\n\nYou are YOU! Be the best version of YOU!\n\n&nbsp;\n<h3><b>Lesson No 2 - Stop Focusing On Aesthetics</b></h3>\n<span style=\"font-weight: 400;\">The second lesson I learned was using health, fitness and wellness for goal setting over aesthetics. This, in my opinion, gives a far higher chance to feel successful and, chances are, the aesthetics follow anyway. </span>\n\n<span style=\"font-weight: 400;\">The profound moment for me was when I received a ‘backhanded’ compliment from a male friend, who is also a football fan. “</span><i><span style=\"font-weight: 400;\">Wow, you have legs like Stuart Pearce</span></i><span style=\"font-weight: 400;\">!” “</span><i><span style=\"font-weight: 400;\">No</span></i><span style=\"font-weight: 400;\">..” I said “ …</span><i><span style=\"font-weight: 400;\">these are MY legs</span></i><span style=\"font-weight: 400;\">”.</span>\n\n<span style=\"font-weight: 400;\">This is the same for your Intrinsic Biomechanics - you have what you have and for some there is a higher risk of injury simply due to genetic makeup - hypermobility, femoral anteversion, structural asymmetries etc. So it is vital we look after what we have, make it stronger, train smarter and love our differences.</span>\n\n&nbsp;\n<h3><b>The Problem</b></h3>\n<span style=\"font-weight: 400;\">Identifying what is happening naturally and what is dysfunction within your client\'s body/movement is paramount to us being able to prescribe the right exercises, at the right time, for the right person and their goal.</span>\n\n&nbsp;\n<h3><b>Why Not Sample A Taster Biomechanics Workshop?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have an awesome 1 day </span><b>Intrinsic Biomechanics Workshop </b><span style=\"font-weight: 400;\">in </span><b>Nottingham Feb 24th 10:30-6pm </b><span style=\"font-weight: 400;\">no exams, no obligation, pelvis, spine and shoulder tests and exercises you can apply immediately.</span>\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">JOIN ME &lt;&lt;CLICK HERE&gt;&gt;</span></a>\n\n<img class=\"size-large wp-image-4709\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/02/Intrinsic-Biomechanics-Taster-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\n\n&nbsp;','Stop Wishing For Someone Else’s Body…Make Yours The Best It Can Be!','','inherit','closed','closed','','5131-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',5131,'https://biomechanicseducation.com/?p=38776',0,'revision','',0),(38777,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">The skills of the personal trainer have increased dramatically over recent years.  The demand of their clients has driven their development down paths that hadn’t previously been considered.  Clients generally go to personal trainers to get fitter or lose weight, but as consumers have become more intelligent, sophisticated and more demanding, so their needs have evolved.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now clients will commonly expect you to provide ‘some exercises for my back, as it’s a bit sore today’.  Also, you will hear them ask for advice and exercises for a knee problem they felt while training for example.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This evolving role will likely increase further as the credit crunch escalates.  This will likely result in people being even less likely to want to spend extra money on seeing a health professional for what they perceive to be a ‘niggle’ and not want to go to the expense or hassle of seeing anyone else.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As personal training qualifications develop, we must be careful here that we don’t train ‘jack-of-all-trades’ who know only enough to be dangerous, but with the new methods of screening coming up like functional and biomechanical screening, there is much that personal trainers can do to help in a very real way while retaining their professional integrity and not becoming ‘pseudo-physios’. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The body is an integrated system, each of its component parts links together to provide coordinated movement as we move in our daily lives.  Functional training helps us prepare each unit for these tasks and engrains the correct movement patterns that our brains are used to rather than by training ‘muscles’ as we used to a few years ago.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Functional training has its origins in rehabilitation and has been around for 40 years or more. In this time we have established that it can help your client’s performance and preparation for their common tasks, and possibly also reduce their risk of injury.    </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over the time that functional training has been around in rehabilitation, we have found that biomechanical screening is a critical precursor to functional screening and functional training, otherwise the foundations for the movement patterns can be flawed and although they may cosmetically look OK, intrinsically the body can be working hard to compensate for flaws in the system that functional screening doesn’t pick up.</span>\n\n<img class=\"aligncenter size-large wp-image-1339\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/10/IMG_3647-1024x768.jpg\" alt=\"\" width=\"1024\" height=\"768\" />\n\n<span style=\"font-weight: 400;\">As the functional concepts start to become more widely accepted in fitness and conditioning, it is important to recognise that the biomechanical screening has not yet followed into these arenas.  Functional and biomechanical screening and training are very important aspects of an overall conditioning programme for any sport or activity and are complementary in every way. For example, there are many people who pass a functional screen, yet fail a biomechanical screen.  They detect different factors, both of which are important to the trainer.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Specifically, we need to develop our understanding of nerve biomechanics and the biomechanics of specific joints, like the pelvis, spine, shoulder and knee.  Once we understand these principles and how to screen our clients with them in mind, we can prescribe very precise exercises that relate specifically to their problems and goals.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once these biomechanical issues have been resolved then functional training or any other form of training you may wish to do has more chance of being successful and there is less risk of your client becoming injured.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ultimately as a trainer, you should specialise in certain areas, and you should never stop learning. However, as a trainer, you take a client through some form of movement in every session so your understanding of how they move and why they move like they do need to be at the top of that list. </span>\n\n&nbsp;\n\nThe trainer that stops learning will soon be obsolete. Why? Because the trainers that do evolve will be able to get their clients better results. Clients will flock to them, whilst the others are left behind.\n\nEvolve or Become Obsolete… It’s your choice!\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To learn all about biomechanics screening why not look at our flagship programme the Biomechanics Coach Diploma?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Movement analysis made easy</span>\n\n<span style=\"font-weight: 400;\">Gain confidence </span>\n\n<span style=\"font-weight: 400;\">Stand out from your PT colleagues</span>\n\n<span style=\"font-weight: 400;\">Get instant results </span>\n\n<span style=\"font-weight: 400;\">Increase your fees</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">August 2018 intake is open for bookings &lt;&lt;HURRY CLICK HERE&gt;&gt; </span></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Not ready to commit to the full diploma?</span>\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/2018-roadshow\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Take a look at our 1 day workshop Roadshow &lt;&lt;HERE&gt;&gt;</span></a>','As A Personal Trainer You Either Evolve Or You Become Obsolete…. What Will You Do?','','inherit','closed','closed','','4791-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',4791,'https://biomechanicseducation.com/?p=38777',0,'revision','',0),(38778,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">Irrespective of the sports your clients perform, the type of training or exercise they do, or indeed at what level, preparation of their </span><b><i>Intrinsic</i></b><span style=\"font-weight: 400;\"> biomechanics is a vital part of a training programme and is essential to complement their physiological and functional training and screening.</span>\n\n<span style=\"font-weight: 400;\">The practical application of </span><b><i>Intrinsic</i></b> <span style=\"font-weight: 400;\">biomechanical screening can be used </span><span style=\"font-weight: 400;\">as an integral part of a personal training programme and is the basis upon which a functional training programme can be delivered safely and most effectively.</span>\n\n&nbsp;\n\n<b><img class=\"aligncenter wp-image-3693\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/seek-a-professional-1.jpg\" alt=\"\" width=\"372\" height=\"248\" /></b>\n<h3><b>Risk Reduction</b></h3>\n<span style=\"font-weight: 400;\">There are many things that can increase risk during movement, ranging from poor technique, a lack of preparation, limited range of movement in the relevant structures, excessive force and many others. A client\'s correct biomechanical function is also a critical factor but is generally less understood.</span>\n\n<span style=\"font-weight: 400;\">An </span><i><span style=\"font-weight: 400;\">intrinsic</span></i><span style=\"font-weight: 400;\"> biomechanical screen highlights the limitations in our client\'s pelvic, spine, shoulder, knee and foot function, and can identify any low-grade muscle spasm in key areas which may be restricting movement and the correct function of a joint.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"279\" height=\"279\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In addition, an </span><i><span style=\"font-weight: 400;\">intrinsic </span></i><span style=\"font-weight: 400;\">biomechanical screen will identify our client\'s nerve mobility and highlight any areas that may cause their body to compensate. For example, a rotated pelvis causing a functional leg length discrepancy can result in an increase of risk of variety of different injuries depending upon how they compensate. It can contribute to back ache, knee instability, shin pain, hamstring injuries, even foot or shoulder pain. By screening issues like pelvic function, the risk of many of these issues can be significantly reduced.</span>\n\n<b>What Do These Screens Look Like?</b>\n\n<a href=\"https://youtu.be/_Lkur9ZcNXw\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4160 alignnone\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Screen-Shot-2018-01-27-at-00.09.13-1024x577.png\" alt=\"screen-shot-2018-01-27-at-00-09-13\" width=\"273\" height=\"154\" /></a>\n\n<strong><a href=\"https://youtu.be/_Lkur9ZcNXw\" target=\"_blank\" rel=\"noopener\">4 Sign Screen &amp; Exercise</a>       </strong>\n\n<a href=\"https://youtu.be/544p5UVtFXY\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-4162 alignnone\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Screen-Shot-2018-01-27-at-00.11.05-1024x582.png\" alt=\"screen-shot-2018-01-27-at-00-11-05\" width=\"268\" height=\"153\" /></a>\n\n<strong> <a href=\"https://youtu.be/544p5UVtFXY\" target=\"_blank\" rel=\"noopener\">Improve Your Squat with Chest Release </a></strong>\n\n<b>Want To Learn More? ---&gt; Book A Call With Us Now! rachel@biomechanicseducation.com</b>','Risk Reduction & Intrinsic Biomechanics','','inherit','closed','closed','','4779-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',4779,'https://biomechanicseducation.com/?p=38778',0,'revision','',0),(38779,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<h2><b>Ever Heard Of The Happiness Baseline?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you ever read one of those stories about a lottery winner who celebrated when they won lots of money, however they then soon discover that the money doesn’t actually increase their happiness long term?</span>\n\n<span style=\"font-weight: 400;\">Their ‘happiness’ goes back to their happiness baseline.</span>\n<h3><img class=\"wp-image-4136 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/hombre-con-dinero-1024x576.jpg\" alt=\"hombre-con-dinero\" width=\"361\" height=\"203\" /><img class=\"wp-image-4134 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Man-Money-Leaving-Wallet-547096873-pathdoc-4096x2885-1024x721.jpg\" alt=\"man-money-leaving-wallet-547096873-pathdoc-4096x2885\" width=\"287\" height=\"202\" /></h3>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n<h3></h3>\n&nbsp;\n<h3><b>So what is the ‘happiness baseline’ exactly?</b></h3>\n<span style=\"font-weight: 400;\">It has been suggested that it is the standard level of happiness we feel, </span><i><span style=\"font-weight: 400;\">most </span></i><span style=\"font-weight: 400;\">of the time, deep within us. Our happiness can rise with something great happening in our lives from simply eating a wonderful, tasty meal to winning a lottery prize. However, it can also drop when something bad happens like we hit a traffic jam to suffering a bereavement.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-4137\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/depresie.jpg\" alt=\"depresie\" width=\"446\" height=\"312\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When things happen it can take us time to process the event and the effects, or even get through to a point of acceptance, so we can then return to our baseline level of happiness. </span>\n\nThis happiness baseline can be moved and elevated or can even drop depending upon how we process what is happening in our lives, how content we feel, what ‘things’ affect our sense of happiness and how we perceive events, loved ones around us and the way we perceive the cards we are dealt in life in general.\n\n&nbsp;\n<h3><b>Here Are 5 Effective Ways To Improve Your Happiness</b> <b>Baseline</b></h3>\n&nbsp;\n<ol>\n<ol>\n 	<li style=\"font-weight: 400;\"><b>Network</b><span style=\"font-weight: 400;\">: Surround yourself with awesome people. This number can be as little as two but can have drastic effects on your mental health and physical state. </span></li>\n 	<li style=\"font-weight: 400;\"><b>Move: </b><span style=\"font-weight: 400;\">This can vary from something as simple as a daily 10 min walk before work to clear your head each day to 3 to 4 times a week gym sessions to have you feeling stronger.</span></li>\n 	<li style=\"font-weight: 400;\"><b>Good Nutrition: <span style=\"font-weight: 400;\">Plenty of water, fresh vegetables and fruit, good lean protein and the appropriate volume of carbs.</span></b></li>\n 	<li style=\"font-weight: 400;\"><b>Think Right:</b><span style=\"font-weight: 400;\"> PMA - Positive mental attitude towards anything can greatly impact your happiness and its baseline!</span></li>\n 	<li style=\"font-weight: 400;\"><b>Purpose:</b><span style=\"font-weight: 400;\"> Have a purpose in all you do! Commit and stay committed until the goal is achieved. Never give up!</span></li>\n</ol>\n</ol>\n<h3><em><span style=\"font-weight: 400;\">Another way to focus on improving your happiness baseline is to </span><span style=\"font-weight: 400;\">find your element</span><span style=\"font-weight: 400;\">...</span></em></h3>\n&nbsp;\n<h3><span style=\"text-decoration: underline;\"><b>Find Your Element!</b></span></h3>\n&nbsp;\n\n<a href=\"https://youtu.be/wX78iKhInsc\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4138\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Mezzanine_126-1024x576.jpg\" alt=\"mezzanine_126\" width=\"416\" height=\"234\" /></span></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Again it comes back to your attitude and purpose. When you find your Element </span><b>(Ken Robinson ‘</b><b><i>The Element</i></b><b>’ is a book recommendation He is also known for the most watched <a href=\"https://youtu.be/wX78iKhInsc\" target=\"_blank\" rel=\"noopener\">TED talk</a>) </b><span style=\"font-weight: 400;\">your purpose or your legacy it becomes everything, Finding your element is finding the thing you are good at AND LOVE doing, then doing it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So much has happened to me over the last couple of years both personally and in business. The most profound thing is the elevation of my happiness baseline </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While I appreciate mine was already a relatively high happiness baseline it has elevated even higher. </span>\n\n<span style=\"font-weight: 400;\">This elevation of the happiness baseline, I believe, comes from gratitude for the people who enrich my life and the experiences I am able to share...let me share those from my </span><b><i>working life</i></b><span style=\"font-weight: 400;\">...</span>\n\n&nbsp;\n\n<b>Martin Haines</b><span style=\"font-weight: 400;\"> changed my perception of myself and my ability which has completely changed my life.</span>\n\n<b>Mike Grice</b><span style=\"font-weight: 400;\"> keeps me inspired to read &amp; learn</span>\n\n<b>Fletch</b><span style=\"font-weight: 400;\"> is like a warm hug each time I think of his companionship</span>\n\n<b>Sam ilelaboye</b><span style=\"font-weight: 400;\"> makes me feel very humble &amp; reminds me of the joy of youth</span>\n\n<b>Chris Wright</b><span style=\"font-weight: 400;\"> always makes me feel positive &amp; instilling confidence</span>\n\n<b>Maxine Crowe</b><span style=\"font-weight: 400;\"> has taught me loyalty to the core</span>\n\n<b>Ben Coomber</b><span style=\"font-weight: 400;\"> restored my faith in partnerships</span>\n\n<b>Steve Aish</b><span style=\"font-weight: 400;\"> lifts me &amp; reminds me of what’s important</span>\n\n<b>Stevie Barr</b><span style=\"font-weight: 400;\"> show commitment &amp; expects nothing in return</span>\n\n<b>Amber Keats</b><span style=\"font-weight: 400;\"> has shown a strength of character I respect and admire</span>\n\n<span style=\"font-weight: 400;\">My amazing </span><b>Team</b><span style=\"font-weight: 400;\"> of Master Trainers are like my family in pursuit of a common purpose &amp; passion</span>\n\n&nbsp;\n\n<b>So What Could YOU Do To Improve Your Happiness Baseline?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Try any of the above ideas and please please please share your thoughts, I always love hearing from you...</span>\n\n&nbsp;\n\n&nbsp;\n<p style=\"text-align: center;\"><strong><a href=\"http://kaizen-project.co.uk\" target=\"_blank\" rel=\"noopener\">(Click Here)</a></strong></p>\n<a href=\"http://kaizen-project.co.uk\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-4140\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/images.png\" alt=\"images\" width=\"483\" height=\"172\" /></a>\n\nIf you have not yet checked out our awesome event arriving early this year, (25th of Feb 2018) <strong><a href=\"http://kaizen-project.co.uk\" target=\"_blank\" rel=\"noopener\">Click Here</a></strong> to save your seat!!!','The Happiness Baseline','','inherit','closed','closed','','4377-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',4377,'https://biomechanicseducation.com/?p=38779',0,'revision','',0),(38780,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<h3><span style=\"font-weight: 400;\">What Exactly Is </span><i><span style=\"font-weight: 400;\">Intrinsic Biomechanics</span></i><span style=\"font-weight: 400;\">? </span></h3>\n<span style=\"font-weight: 400;\">There is often an assumption, and sometimes confusion, about the various interpretations of this science known as ‘biomechanics’ . Therefore this blog is dedicated to offering more clarity with this glossary of definitions;</span>\n\n&nbsp;\n<h2><i><span style=\"font-weight: 400;\">DEFINITIONS</span></i></h2>\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\">Biomechanics</span></span></h3>\n<span style=\"font-weight: 400;\">The study of the mechanical laws relating to the movement or structure of living organisms.</span>\n\n&nbsp;\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\">Extrinsic Biomechanics</span></span></h3>\n<span style=\"font-weight: 400;\">This can be a very complex analysis of the performance of movements using gait analysis or</span> <span style=\"font-weight: 400;\">expensive machinery like isokinetics and kinematics to help us better understand forces, loads and levers. In its simplest form this could also include</span> <span style=\"font-weight: 400;\">what an exercise professional sees when they watch their client move and offer verbal and visual cues.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-4110\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/ankleinvsupine.jpg\" alt=\"ankleinvsupine\" width=\"318\" height=\"270\" />\n\n&nbsp;\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\">Intrinsic Biomechanics</span></span></h3>\n<span style=\"font-weight: 400;\">This is the analysis of what is happening inside the body which</span> <span style=\"font-weight: 400;\">creates the visible, or extrinsic, movements. An understanding of the neuro-musculoskeletal system and how this integrated system is the basis for what we see through the extrinsic analysis.</span>\n\n&nbsp;\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4111\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Picture1-1.png\" alt=\"picture1-1\" width=\"376\" height=\"270\" /></span></span></h3>\n&nbsp;\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\">iMoveFreely® (IMF)</span></span></h3>\n<span style=\"font-weight: 400;\">This is a series of low-grade exercise techniques set out in a tried and tested system that is specifically designed for preparing the body for movement, risk reduction and optimisation of performance. Previously only available to high-level athletes some 30yrs ago, but increasingly being recognised as the fundamental basics for anyone wishing to achieve any of the above requirements by moving more freely. This is made up of the following 3 phases of exercise delivered by Biomechanics Coaches&#x2122; &amp; iMoveFreely® Instructors.</span>\n\n&nbsp;\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"alignnone wp-image-4113\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3483-768x1024.jpg\" alt=\"img_3483\" width=\"200\" height=\"267\" /> <img class=\"alignnone wp-image-4114\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3491-1024x768.jpg\" alt=\"img_3491\" width=\"354\" height=\"266\" /></span></span></h3>\n&nbsp;\n<h3><span style=\"text-decoration: underline;\">Preparation &amp; Capacity</span></h3>\n<span style=\"font-weight: 400;\">This first phase is based on the fact that muscles, joints and nerves all affect each other and so it provides techniques to affect each system. The initial series of techniques consists of anti spasm exercises or musle energy techniques (M.E.T\'s), based on Ribot-Ciscar’s work (Jiri Dvorak had the same results from similar studies). There is also a series of nerve mobilisation techniques based on David Butler’s work. These are followed by the ‘pure’ joint mobilisation techniques that isolate (as much as we can) the parts that don’t move so freely. These are modified from much of what is seen in our industry today due to the body\'s wonderful ability to compensate</span><span style=\"font-weight: 400;\"> to allow us to produce a required movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"297\" height=\"297\" />\n</span>\n\n<span style=\"font-weight: 400;\">The aim of this first phase of preparation is to restore an individual’s capacity to function optimally around their pelvis, spine and shoulders so that they are moving freely and fully to their anatomy.</span>\n\n&nbsp;\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\">Stability &amp; Control</span></span></h3>\n<span style=\"font-weight: 400;\">This secondary phase of training for stability and control requires phase one’s preparation to give the spine it’s alignment and capacity. This low risk methodology means that when performing any variation of core strength work is optimised. Coming out of the first phase we advise this is the perfect time to initiate a 3 step approach specific to promote a ‘grooving out’ of the ‘new’ level and moving position of the pelvis, spine and shoulders. </span>\n\n<span style=\"font-weight: 400;\">Starting with Step 1 principles based on evidence shown by Haines, McGill, Matthews and Cholwewicki’s with work on a series of periodised neuromuscular core training progressions, which are in a </span><i><span style=\"font-weight: 400;\">continuum of exercises</span></i><span style=\"font-weight: 400;\">. To follow this with Step 2 McGill’s isometric core ratio testing would give a good base of support around the entire trunk. Finally, Step 3 is made up of a series of functional stability screens that allow us to confidently create stability and control while performing more compound moves taking your clients into their final phase of function and performance.</span>\n\n&nbsp;\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4115\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1024x576.jpg\" alt=\"romanian-deadlifts-training-the-other-half-of-your-leg-header-v2\" width=\"368\" height=\"207\" /></span></span></h3>\n&nbsp;\n<h3></h3>\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\">Function &amp; Performance</span></span></h3>\n<span style=\"font-weight: 400;\">This 3rd function and performance phase takes into account strengthening of the pelvis, shoulders, knees and feet to allowing or improved ‘function’. With specific assessments based on joint strength ratios of these areas. Here we consider more sport specific movements and (potentially) pre-orthotic conditioning on top of a solid foundation. All of which reduces risk and optimises performance ability.</span>\n\n&nbsp;\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4116\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2.jpg\" alt=\"olympic-lifting-2\" width=\"444\" height=\"283\" /></span></span></h3>\n&nbsp;\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\">Biomechanics Coach&#x2122; (BC)</span></span></h3>\n<span style=\"font-weight: 400;\">This is an 6-8-month diploma with 4-6 days face to face, a 1hr practical assessment and home study, open to level 3 exercise professionals and above including therapists and coaches with an equivalent level of anatomy knowledge and exercise prescription skills. There are a total of 42 manual and visual assessments based on over 20yrs of research comparing them to isokinetic results for accuracy. BC’s are encouraged and reputed, to have a high level of inter-professional language skills giving them the ability to cross both exercise and therapy worlds while maintaining their professional scope of practice. </span>\n\n&nbsp;\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\">Intrinsic Biomechanics Association (IBA)</span></span></h3>\n<span style=\"font-weight: 400;\">An organisation offering education, support, networking opportunities and encouragement of inter-professional relationships between exercise professionals, sports coaches, therapists, clinicians, podiatrists and any professional working one to one or in group exercise. It is also for those interested in learning and sharing anything that helps us all improve health, function and fitness while reducing injury risk in our clients. The IBA runs 6 annual Discovery Day workshops/webinars that are open to both members (free) and non-members who will pay a small access fee. </span>\n\n&nbsp;\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\">Master Trainer (MT)</span></span></h3>\n<span style=\"font-weight: 400;\">An individual trained to deliver the intrinsic biomechanics education programmes through a licensed Education Provider. Open to BC’s demonstrating teaching and communication skills while pro-actively promoting intrinsic biomechanics education and skills. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to be part of this fast-growing, highly reputed group of practitioners who are contributing massively to getting the nation moving more freely, with less discomfort and a reduced risk?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YES? <strong>rachel@biomechanicseducation.com</strong></span>','What Exactly Is Intrinsic Biomechanics?','','inherit','closed','closed','','4106-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',4106,'https://biomechanicseducation.com/?p=38780',0,'revision','',0),(38781,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<b>Do You Make Assumptions?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Often I hear and see people make assumptions in our industry.</span>\n\n<span style=\"font-weight: 400;\">Articles I read are so often written based on assumptions, lacking context for clarity.</span>\n\n<span style=\"font-weight: 400;\">Within our academy, we discuss the idea that the body is a master of compensation. Now, this is for a variety of reasons &amp; also in a variety of ways.</span>\n\nWe use words such as those found below to describe these compensations. Words like...\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sub-clinical Muscle Spasm </span>\n\n<span style=\"font-weight: 400;\">Immobility </span>\n\n<span style=\"font-weight: 400;\">Tightness </span>\n\n<span style=\"font-weight: 400;\">Inhibition </span>\n\n<span style=\"font-weight: 400;\">Instability </span>\n\n<span style=\"font-weight: 400;\">Weakness </span>\n\n...to name a few.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now, MOST professionals know how to address the above with the various interventions...</span>\n\n<span style=\"font-weight: 400;\">Anti spasm</span>\n\n<span style=\"font-weight: 400;\">Mobilise </span>\n\n<span style=\"font-weight: 400;\">Stretch </span>\n\n<span style=\"font-weight: 400;\">Un-inhibit</span>\n\n<span style=\"font-weight: 400;\">Stabilise </span>\n\n<span style=\"font-weight: 400;\">Strengthen </span>\n\n&nbsp;\n\nThese are all techniques that are all relatively simple to do and understand, right?\n\n&nbsp;\n\n<b>So What\'s The Problem?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What is it that makes these interventions so controversial, problematic and debatable, not only articles but also in practice?</span>\n\nWhy are many still making the error of assumption?\n\nSometimes it isn’t obvious and this makes our job tough when trying to truly objectively KNOW which problem is presenting.\n\nIn other words, the question is…\n\n<span style=\"font-weight: 400;\">is ‘it’ WEAK or INHIBITED?</span>\n\n<span style=\"font-weight: 400;\">is ‘it’ TIGHT or IN SPASM?</span>\n\n<span style=\"font-weight: 400;\">is ‘it’ UNSTABLE or WEAK?</span>\n\n<span style=\"font-weight: 400;\">is ‘it’ INHIBITED or TIGHT?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Each of these examples can easily be mistaken for another and yet the corrective techniques could be contraindicating should the wrong one be prescribed. For example; if you try to stretch a muscle ASSUMING it is TIGHT when in fact it is inhibited or in a protective spasm, it could respond by ‘holding on’ even more.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A common example might be the appearance of ‘tight’ hamstrings that are ‘held under tension’ so to speak. Quite often the sciatic nerve can be ‘tethered’ by dysfunction somewhere else, this creates nerve tension. Therefore the hamstrings ‘hold on’ to a ‘tense’ position due to their close relationship with the sciatic nerve. This is because they are trying to protect the nerve which is lacking its full capacity. </span>\n\n<span style=\"font-weight: 400;\">Now consider if you tried to \'stretch\' this apparently ‘tight’ hamstring..!?</span>\n\n&nbsp;\n\n<b>So What Should We Do?? </b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Obviously having a testing system that identifies which dysfunction is presenting would make absolute sense, wouldn’t it?</span>\n\nIf you do not have a testing system available to you then it is probably prudent to prescribe the least contraindicating technique first to reduce risk.\n\n<span style=\"font-weight: 400;\">Remember <a href=\"https://www.biomechanicseducation.com/ever-heard-of-occams-razor/\" target=\"_blank\" rel=\"noopener\">Occum’s Razor</a>?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">An example of a safe intervention would be the low grade 20% muscle energy technique researched by <a href=\"https://www.biomechanicseducation.com/1333-2/\" target=\"_blank\" rel=\"noopener\">Ribot-Ciscar,1991</a>. This has been proven to have huge success at improving muscle function especially when something like stretching hasn’t shown any benefit.</span>\n\n&nbsp;\n\n<b>Your 7 Tips:</b>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Don’t assume anything! </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Get a movement baseline before &amp; after using an intervention</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Use the least intrusive intervention first</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Discuss with your peers for new ideas and viewpoints</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Invest in learning an evidence-based objective testing system </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Monitor your client\'s movement progress closely using photos, video &amp; clear benchmarks.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Learn, trust and encourage even the smallest and simplest of techniques, like low-grade anti spasms - Trust me, they can make all the difference!</span></li>\n</ul>\n&nbsp;\n\n<b>What Are Your Thoughts?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">EMAIL ME rachel@biomechanicseducation.com</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you would like to learn the evidence-based exercises we prescribe to help improve function, the safest on the planet, then simply </span><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><b>Click Here</b></a><span style=\"font-weight: 400;\">.</span>','Do You Make Assumptions?','','inherit','closed','closed','','4004-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',4004,'https://biomechanicseducation.com/?p=38781',0,'revision','',0),(38782,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<h3><b>So 2018 is here and you’re left wondering where the hell 2017 went…?</b></h3>\nDid you make any new year resolutions for 2018?\n\n<span style=\"font-weight: 400;\">Did you successfully achieve last years resolution?</span>\n\n<span style=\"font-weight: 400;\">Do you feel you could have done more in 2017?</span>\n\n<span style=\"font-weight: 400;\">Personally, I have always wondered why people wait for Dec 31st to create change when changes can be made all year, probably to better effect too!</span>\n\n<span style=\"font-weight: 400;\">Would 1% be a lot to ask of yourself?</span>\n\n&nbsp;\n<h3><b>What Could You Do 1% Better Today? </b></h3>\n&nbsp;\n\n<a href=\"http://kaizen-project.co.uk/events/the-kaizen-project/\"><b>Kaizen</b></a><span style=\"font-weight: 400;\"> is a Japanese term meaning </span><i><span style=\"font-weight: 400;\">Continual Improvement </span></i><span style=\"font-weight: 400;\">and I believe this is a great concept to keep in mind when settings new year resolutions or goals at any time of year, particularly big goals. Let me give you one example;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I am never going to be a competitive Olympic lifter, it is just not something that appeals or motivates me, but anyone who has attempted a snatch or clean will appreciate it is not an exercise or movement that immediately comes naturally nor quickly. The technical aspect is far too complex and inevitably requires numerous adjustments to each segment of the movement that can only be done over time. The simple laws of proprioception, gravity &amp; load in this high-speed movement require such precision to avoid failure that it would be impossible to nail it in a few weeks let alone one or two sessions. There is so much to learn and much of it will and should eventually become subconscious, for example;</span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Set up</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Hook grip</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Foot position</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Start position </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">First pull</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Second pull</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">High Hang</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Low Hang</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Triple extension</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The drop under the bar</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Locking out the arms</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Hitting the receive position </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Rising out of the bottom position </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Maintaining the overhead or front rack position to complete the ascent</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Throwing the bar so it doesn’t fall on you or anyone else!</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">However small goals can encourage every session in the gym, even if it is just small tweaks to each part of the movement. Consistency is key to anything and over time things really do add up. </span>\n\n<span style=\"font-weight: 400;\">Taking the stairs instead of the lift, parking at the back of the car park furthest away from the door so you have further to walk, eating just one piece of chocolate instead of the whole 200g bar, having smaller glasses of wine, walking to the shop instead of driving, meditating for 10 minutes is better than not at all….you know what I am talking about, right?!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now, do you remember in our basic PT or Massage training the idea of SMART GOALS is often introduced to help us to help our clients when goal setting?</span>\n\n<span style=\"font-weight: 400;\">Small, Measurable, Achievable, Relevant, Timely goals. This concept fits perfectly with The Kaizen Project, however, the question is...</span>\n\n<img class=\"aligncenter wp-image-3978\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/smart-goals1-1-1024x507.jpg\" alt=\"smart-goals1-1\" width=\"497\" height=\"246\" />\n<h3><b>Do You Create (SMART) Goals In ALL Aspects Of Your Own Life?</b></h3>\n&nbsp;\n\n<b>Once Again, Ask Yourself...</b>\n\n<b>What Could You Do 1% Better Today?\n</b>\n<h3></h3>\n<span style=\"font-weight: 400;\">Now you may have heard me mention the word</span> <a href=\"http://kaizen-project.co.uk\"><b>Kaizen</b></a> <span style=\"font-weight: 400;\">a lot recently in relation to </span><a href=\"http://kaizen-project.co.uk\"><b>The Kaizen Project</b></a><span style=\"font-weight: 400;\"> and after spending several hours, some months ago, in the same room as Ben Coomber, Mike Grice, Stephen Aish and Amber Keats, as a group we felt this word summed up the concept of our project perfectly. </span>\n\n<span style=\"font-weight: 400;\">We all feel very strongly about continuous learning, giving you nuggets of great information that you can actually apply with your clients immediately to get results. We do this via social media, our workshops, events, webinars and our blogs and emails. </span>\n\n<span style=\"font-weight: 400;\">We all feel very strongly about influencing the entire nation to move better, feel less pain, eat healthier, be more body/mind aware, understand business and to understand simple mindset techniques for a happier outlook. </span>\n\n<span style=\"font-weight: 400;\">The problem is we can’t do it alone and so we are reaching out to professionals like you so that together we can achieve a healthier nation. People like you who are committed to educating and supporting your clients and their well being….yes YOU..!</span>\n<h3></h3>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Human Movement Geeks </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Nutrition Fanatics</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Mindset Believers </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Therapy Lovers...</span></li>\n</ul>\n&nbsp;\n\n<b>...Are YOU One, Or More, Of These?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YOU ARE…!?!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">AWESOME so why not make a 1% change to your day TODAY by clicking this link to reserve your place; </span>\n\n<a href=\"http://kaizen-project.co.uk/events/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\"><b>The Kaizen Project</b></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THEN when you join us Feb 25th, 2018 in Northampton for </span><a href=\"http://kaizen-project.co.uk/events/the-kaizen-project/\" target=\"_blank\" rel=\"noopener\"><b>The Kaizen Project</b></a><span style=\"font-weight: 400;\"> you will gain AT LEAST 1% improvement from every session you attend.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THEN you go home and apply what you learned from each session to your business/client’s sessions...this is continuous learning.</span>\n\n&nbsp;\n\n<b>Finally, Ask Yourself Regularly...</b>\n\n<b>What Could YOU Do 1% Better Today?</b>','What Could You Do 1% Better Today?','','inherit','closed','closed','','3968-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',3968,'https://biomechanicseducation.com/?p=38782',0,'revision','',0),(38783,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">My core values are something I am </span><i><span style=\"font-weight: 400;\">extremely</span></i><span style=\"font-weight: 400;\"> aware</span> <span style=\"font-weight: 400;\">of all the time.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of Biomechanics Education’s strongest core values is; </span>\n\n<i><span style=\"font-weight: 400;\">Our Responsibility To Our Learners</span></i><span style=\"font-weight: 400;\">.</span>\n\n<span style=\"font-weight: 400;\">We always want to look after those in the Biomechanics Education academy ‘family’ and maybe this business is in fact, a second family? It certainly feels like it because of the strong bond I personally feel to each and every learner that sets foot into one of our classrooms. Along with our passion for the provision of a high level service with support beyond their training, there is certainly a huge sense of connection.</span>\n\n<img class=\"aligncenter wp-image-2847\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/IMG_0101-1024x1024.jpg\" alt=\"\" width=\"309\" height=\"309\" />\n<h3><b>\nUnlike Any Other JOB</b></h3>\n<span style=\"font-weight: 400;\">\nBiomechanics Education is something I think about it every single day, I talk about it all day and in fact, my whole life revolves around the company and what it is doing, not only for the individuals who enter the academy but also for the entire industry and of course the wider population.</span>\n<h3><b>\nHelping the Nation Move More Freely</b></h3>\n&nbsp;\n<h3><img class=\"aligncenter wp-image-3957\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/12/20689649_10154903127672081_9002171364846902606_o-1024x1024.jpg\" alt=\"20689649_10154903127672081_9002171364846902606_o\" width=\"309\" height=\"309\" /></h3>\nYou see WE are together<i></i><span style=\"font-weight: 400;\"> helping the nation to more freely with less pain while we also increase movement skill and performance levels for all abilities!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WOW, now that’s something special right? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If I were to get philosophical right now and be really honest about what I would like to see as a legacy, the reason that I was here, my reason for being, my point of existence ….well this is what happens when you become middle-aged...gotta think HUGE right..?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">iMoveFreely®  free on the NHS!</span>\n\n<span style=\"font-weight: 400;\">Biomechanics Coaches&#x2122; top of the list on medical insurance company policies </span>\n\n<span style=\"font-weight: 400;\">Biomechanics Coaches&#x2122; top of the list for ALL referrals to signpost clients/patients to the right specialist.</span>\n\n<span style=\"font-weight: 400;\">iMoveFreely®  on Aeroplane TV screens in front of your chair</span>\n\n<span style=\"font-weight: 400;\">GB Olympians lying down to do 4 sign by the track prior to the race</span>\n\n<span style=\"font-weight: 400;\">Soap stars doing their pec minor release over the dinner table …..ok ok ok maybe I\'m getting carried away here…but maybe not….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">..ok SERIOUSLY</span>\n\n&nbsp;\n<h3><b>Gotta Dream Big</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Dream BIG people because it is such a short time we each are here so do what you love, make a difference, show you care, don’t hold back and please spread the word. </span>\n<h3></h3>\n<h3>We can do this together!</h3>\n&nbsp;\n\n<span style=\"color: #999999;\">If you would like to find out more about Biomechanics Education and help spread the amazing work that we do, simply <strong><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Click Here</a></strong>. </span>\n\n<img class=\"aligncenter size-full wp-image-2896\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/table_pic.jpg\" alt=\"\" width=\"787\" height=\"426\" />\n<div class=\"grammarly-disable-indicator\"></div>','How Strong Are Your Core Values?','','inherit','closed','closed','','3953-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',3953,'https://biomechanicseducation.com/?p=38783',0,'revision','',0),(38784,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<h2><span style=\"font-weight: 400;\">Preparation &amp; Capacity - The Missing Link </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok, would you like to hear one of our academy secrets?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is a phase PT’s are missing that needs to be added PRIOR to the warm up!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes BEFORE the warm up!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Look, you keep asking us “</span><i><span style=\"font-weight: 400;\">why does my client move that badly</span></i><span style=\"font-weight: 400;\">?” or “</span><i><span style=\"font-weight: 400;\">why do they move that way?</span></i><span style=\"font-weight: 400;\">” or “ </span><i><span style=\"font-weight: 400;\">why can’t they do those moves like everyone else</span></i><span style=\"font-weight: 400;\">?”. Your instinct is telling you the answer to that question…’</span><i><span style=\"font-weight: 400;\">because they sit on their backsides….because they have a sedentary job...because they have been injured</span></i><span style=\"font-weight: 400;\">..’</span>\n<h3><span style=\"font-weight: 400;\"><img class=\"aligncenter  wp-image-3006\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.40.22.png\" alt=\"\" width=\"416\" height=\"275\" /></span></h3>\n<h3><span style=\"font-weight: 400;\">BUT </span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The BIGGER question is ‘</span><i><span style=\"font-weight: 400;\">What is the missing link that helps me, help them move better BEFORE I warm them up</span></i><span style=\"font-weight: 400;\">?”..right?!!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We recently did a live webinar to share the answer to this question and WOW it was stunning to have doctors, PTs, S&amp;C Coaches, Manual Therapists, Pilates Teachers and they were all asking the same questions!</span>\n\n<a href=\"https://events.genndi.com/replay/169105139238457911/f4f41782f3/0/0\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3950\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/12/Screen-Shot-2017-12-19-at-02.28.14-1024x600.png\" alt=\"screen-shot-2017-12-19-at-02-28-14\" width=\"429\" height=\"251\" /></a>\n\n<i><span style=\"font-weight: 400;\">How do I reduce risk?</span></i>\n\n<i><span style=\"font-weight: 400;\">How do I improve movement?</span></i>\n\n<i><span style=\"font-weight: 400;\">How do I KNOW I am improving function?</span></i>\n\n<i><span style=\"font-weight: 400;\">How do I know I am prescribing the right exercises?</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This phase of training is what we call ‘Preparation &amp; Capacity’ and is based upon 25 yrs of data collection showing us that muscles, joints and nerves all affect each other. So we developed a system that provides techniques to affect each system and improve basic function and movement capacity. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The initial series of techniques, our start point (remember the <a href=\"https://www.biomechanicseducation.com/ever-heard-of-occams-razor/\" target=\"_blank\" rel=\"noopener\">Occam’s Razor blog</a>?), consists of anti-spasm exercises based on Ribot-Ciscar’s work (Jiri Dvorak had the same results from similar studies) using a specific type of muscle energy technique. This is the safest, least intrusive and is actually superbly effective at improving muscle function.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The aim of this first phase of preparation restores an individual’s capacity around the pelvis and spine so that they are level and moving freely, or correctly, for that individual.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These are modified from much of what is seen in our industry today, which is ‘combined’ movements where the body is effectively allowed to </span><i><span style=\"font-weight: 400;\">cheat</span></i><span style=\"font-weight: 400;\"> to produce the required movement. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you would like to understand our system in more detail and join an amazingly robust and fast-growing community of Biomechanics Coaches there is a multitude of platforms for you to gain access to this first phase and further phases to work towards becoming a Biomechanics Coach with our Diploma.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here at Biomechanics Education, we are so excited about our 2017 success at getting the nation moving more freely through our academy learners that we wanted to celebrate the end of the year with a special gift to all those secretly wishing they could grab a seat on our workshops in 2018…</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><b>Click Here</b></a><span style=\"font-weight: 400;\"> so you don’t miss out</span>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>','Preparation & Capacity - The Missing Link','','inherit','closed','closed','','3947-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',3947,'https://biomechanicseducation.com/?p=38784',0,'revision','',0),(38785,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">Me neither until I began listening to my latest audible investment from The Great Courses Series ‘</span><i><span style=\"font-weight: 400;\">Mind-Body Medicine - The New Science Of Optimal Health’ by Jason M Satterfield. </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A really fascinating book throughout but in chapter 31 he really caught my attention when he described Occam’s Razor because it really is the ethos of what we communicate within or academy. </span>\n\n&nbsp;\n\n<b><i>Occam\'s razor</i></b><i><span style=\"font-weight: 400;\"> is a problem-solving principle attributed to</span></i><a href=\"https://en.wikipedia.org/wiki/William_of_Ockham\"> <i><span style=\"font-weight: 400;\">William of Ockham</span></i></a><i><span style=\"font-weight: 400;\"> (c. 1287–1347), who was an English friar, scholastic philosopher, and theologian. </span></i><i><span style=\"font-weight: 400;\">The principle states that \"</span></i><b><i>Entities should not be multiplied unnecessarily.</i></b><i><span style=\"font-weight: 400;\">\" </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also known as The Law Of Parsimony which suggests we investigate the simplest ideas first.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-2896\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/table_pic.jpg\" alt=\"\" width=\"606\" height=\"328\" /></span>\n\n<span style=\"font-weight: 400;\">As Biomechanics Coaches our tried and tested system of ‘exercise’ prescription is based on this concept to utilise the least intrusive interventions first. Then with our evidence based assessment skills, we analyse what changes occur prior to prescribing the next intervention. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having this really simple, logical approach to designing a movement programme for our clients gives us a huge increase in confidence KNOWING that we are following the least intrusive/safest first problem-solving principles. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When something doesn’t change or improve we then prescribe the next option or ‘level’ within our system. Alongside all of this is clarity of our individual remit. With such a broad spectrum of practitioner skills joining our academy, Biomechanics Coaches come from every kind of movement profession. This ranges from PT’s, Pilates &amp; Yoga Teachers, to manual therapists, podiatrists and other clinicians. So while many of us are becoming hybrids there should still be a clear parameter of the scope of service we individually offer.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hopefully you, like me, would all agree with most, if not all, of the statements below with regards to exercise prescription, treatment or intervention for our clients…</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">The most useful statement of the principle for scientists is..</span></i>\n\n<i><span style=\"font-weight: 400;\">\"</span></i><b><i>when you have two competing theories that make exactly the same predictions, the simpler one is the better</i></b><i><span style=\"font-weight: 400;\">.”</span></i>\n\n<i><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-3006\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.40.22.png\" alt=\"\" width=\"569\" height=\"376\" /></span></i>\n\n<i><span style=\"font-weight: 400;\">Occam\'s razor is often cited in </span></i><i><span style=\"font-weight: 400;\">stronger</span></i><i><span style=\"font-weight: 400;\"> forms than Occam intended, as in the following statements. . .</span></i>\n\n<i><span style=\"font-weight: 400;\">\"</span></i><b><i>If you have two theories that both explain the observed facts, then you should use the simplest until more evidence comes along</i></b><i><span style=\"font-weight: 400;\">\"</span></i>\n\n<i><span style=\"font-weight: 400;\">\"</span></i><b><i>The simplest explanation for some phenomenon is more likely to be accurate than more complicated explanations.</i></b><i><span style=\"font-weight: 400;\">\"</span></i>\n\n<i><span style=\"font-weight: 400;\">\"</span></i><b><i>If you have two equally likely solutions to a problem, choose the simplest.</i></b><i><span style=\"font-weight: 400;\">\"</span></i>\n\n<i><span style=\"font-weight: 400;\">\"</span></i><b><i>The explanation requiring the fewest assumptions is most likely to be correct.</i></b><i><span style=\"font-weight: 400;\">\"</span></i>\n\n<i><span style=\"font-weight: 400;\">. . .or in the only form that takes its own advice. . .</span></i>\n\n<i><span style=\"font-weight: 400;\">\"</span></i><b><i>Keep things simple!</i></b><i><span style=\"font-weight: 400;\">”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">The final word is of unknown origin, although it\'s often attributed to Einstein, himself a master of the quotable one liner:</span></i>\n\n<b><i>\"Everything should be made as simple as possible, but not simpler.\"</i></b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So once again I suggest that if you are anything like me and feel like a sponge for this kind of information, yet slightly ‘allergic’ to reading lots of text in one go, check out the audiobook mediums.</span>\n\nAnd, if you would like to find out how we implement this mentality into our Diploma simply <a href=\"http://bit.ly/2svUc5o\" target=\"_blank\" rel=\"noopener\"><strong>Click Here</strong></a>.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"wp-image-3923 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/12/Everything-should-be-made-as-simple-as-possible-but-not-simpler.-Albert-Einstein-1024x1024.jpg\" alt=\"everything-should-be-made-as-simple-as-possible-but-not-simpler-albert-einstein\" width=\"398\" height=\"398\" /></span>\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">References;</span>\n\n<a href=\"https://en.wikipedia.org/wiki/Occam%27s_razor\"><span style=\"font-weight: 400;\">https://en.wikipedia.org/wiki/Occam%27s_razor</span></a>\n\n<a href=\"http://math.ucr.edu/home/baez/physics/General/occam.html\"><span style=\"font-weight: 400;\">http://math.ucr.edu/home/baez/physics/General/occam.html</span></a>\n\n<a href=\"https://science.howstuffworks.com/innovation/scientific-experiments/occams-razor.htm\"><span style=\"font-weight: 400;\">https://science.howstuffworks.com/innovation/scientific-experiments/occams-razor.htm</span></a>\n\n<a href=\"https://www.britannica.com/topic/Occams-razor\"><span style=\"font-weight: 400;\">https://www.britannica.com/topic/Occams-razor</span></a>\n\n<a href=\"https://www.urbandictionary.com/define.php?term=occam%27s%20razor\"><span style=\"font-weight: 400;\">https://www.urbandictionary.com/define.php?term=occam%27s%20razor</span></a>\n\n<a href=\"https://explorable.com/occams-razor\"><span style=\"font-weight: 400;\">https://explorable.com/occams-razor</span></a>\n\n<a href=\"http://lesswrong.com/lw/jp/occams_razor/\"><span style=\"font-weight: 400;\">http://lesswrong.com/lw/jp/occams_razor/</span></a>\n\n<a href=\"https://www.youtube.com/watch?v=9XEA3k_QIKo\"><span style=\"font-weight: 400;\">https://www.youtube.com/watch?v=9XEA3k_QIKo</span></a>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>','Ever Heard Of Occam’s Razor ?','','inherit','closed','closed','','3920-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',3920,'https://biomechanicseducation.com/?p=38785',0,'revision','',0),(38786,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<span style=\"font-weight: 400;\">Nerves have been described as the software of the body and to be able to understand this more thoroughly we have to build an understanding of ‘nerve tension’ and ‘Adverse Neural Tension’. These concepts have been recognised for over 100 years in terms of treating patients clinically, but their full potential has never been understood until now. An analogy with the invention of the wheel is an interesting one. The discovery of nerve-tension and it being used for the treatment of injuries is like the wheel being invented and placing it on its side, putting 4 legs around the underside and using it as a table. It makes a great table, but the idea to use it in the way we know it today was groundbreaking. The same applies to nerve tension and its application to athletic performance and fatigue relief.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3914\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/12/0x0ss-85-1.jpg\" alt=\"0x0ss-85\" width=\"224\" height=\"224\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The entire nervous system is a single continuous track, so it follows that if any part of this continuous track is trapped or tethered (as with an injury for example) then it also follows that there will be some restriction of the mobility of other parts of the nerve system. So a problem with one part of the nerve can cause pain in another – this is the clinical application. However, we have discovered that this is not always represented by pain but also by a reduction of a joints range of movement and altered joint biomechanics which can affect a whole host of problems that can cause restricted performance and may ultimately lead to injury. Moreover, with the increased muscle dysfunction and associated factors, local fatigue increases and so understanding these principles can lead to benefits not only in human performance but also fatigue relief.</span>\n<h3><b><img class=\"aligncenter wp-image-3832\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/sprinterglow-1-1024x735.png\" alt=\"sprinterglow\" width=\"349\" height=\"250\" /></b></h3>\n<h3></h3>\n<h3><b>Research</b></h3>\nWe know this happens from research performed at Liverpool Hope University College, and studies there have given astonishing results. One experiment showed that a muscle can increase its force output by 14% after a brief preliminary warm-up (just one 15 second workout using this concept). Another experiment showed that by following the same concept of a 2-minute programme performed daily for 10 days increases muscle output by over 50%. By understanding the importance of the interaction of individual body systems with each other, we have established the world\'s largest database of its kind and have included the outcomes of the auditing of this information in the Biomechanics Coaching&#x2122; Diploma workshop series.\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-3502\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/2018-locked-prices-1-1024x536.png\" width=\"413\" height=\"216\" /></span></a>\n\n<span style=\"font-weight: 400;\">On the diploma, you learn how to test your ‘nerve tension’ and prescribe movement patterns to enhance the coordinated output of your body’s systems. In terms of fatigue relief, it has been demonstrated that after 15 seconds of the programme, muscle fatigue is reduced by up to 14% immediately and sustained use led to a significant and prolonged increase in muscle output. These studies have been validated at the highest level. A paper was submitted at the 6th Asian Biomechanics Congress (one of the world’s most credited) and was enthusiastically received. In a practical sense, the programmes have been rigorously tested by people such as Olympic athletes through to workers on a product line and hospital health trusts.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-2896\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/table_pic.jpg\" alt=\"\" width=\"418\" height=\"226\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember in most cases we are not even aware we have a problem, like nerve tension, but even so, you can still achieve these remarkable results. Just imagine what these figures could do for your performance in your sport or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office. </span>\n\n&nbsp;\n<h3><b>Terminology</b></h3>\n<span style=\"font-weight: 400;\">So when it comes to exercise programming our holistic approach, which is commonly described but rarely understood and demonstrated, takes into consideration all of the body’s systems, and it has a deep understanding of how they interact and are guided by our nervous system. Description terms such as strength and power in this model are inadequate, so when we talk about exercises in these terms, we should be talking in terms of Movement Acquisition Patterns (or MAPs) which are used to enhance a given set of functional movements, not stretches or strengthening exercises, as the latter does not give credit for the full implications of the programming. </span>\n\n&nbsp;\n<h3><b>Example</b></h3>\n<span style=\"font-weight: 400;\">Let\'s take a hamstring stretch as an example, we are not trying to stretch the hamstrings when we extend the leg out in front of us, we are trying to improve the range of hip flexion and knee extension by stretching the structures on the back of the leg and back. This brings in more than just the hamstrings, it can also be limited by a tight sciatic nerve, a rotated sacro-iliac joint in the lower back, tight gastrocnemius, tight spinal cord and indeed almost any nerve in the chain given the continuum concept described earlier. </span>\n\n&nbsp;\n<h3><b>The problem</b></h3>\n<span style=\"font-weight: 400;\">How many times have you stretched your hamstrings using the generally accepted methods only to find that their flexibility continues to be stubborn and often returns to their standard length very soon? Many people experience this phenomenon. The reason is often due to them stretching only one of the structures that limit the movement, i.e. the hamstrings. If they do not stretch the other structures as well, of course, they will not be affected and so the limited range will usually return. So we are trying to acquire a pattern of movement, not just stretching the hamstrings.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-2962\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-03-at-10.01.47-1024x236.png\" alt=\"\" width=\"520\" height=\"120\" /></span>\n<h3></h3>\n<h3><strong>How we can help</strong></h3>\n<span style=\"font-weight: 400;\">If you would like to learn how to assess for where limitation may come from within the pelvis and sciatic nerve, for example,  we would recommend having a look into our biomechanics course where we cover this topic and much more.</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><b>Click Here</b></a><span style=\"font-weight: 400;\"> for more information.</span>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>','Understanding Your Nerves','','inherit','closed','closed','','3913-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',3913,'https://biomechanicseducation.com/?p=38786',0,'revision','',0),(38787,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<h2><b><i>28/11 SO WHAT?</i></b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having come from a fitness/exercise profession background with some sports massage skills my knowledge of clinical ‘stuff’ is understandably limited.</span>\n\n<span style=\"font-weight: 400;\">Although having a mentor and good friend who is a chartered physiotherapist, remedial gymnast and recreational therapist to question on a daily basis for the last 10 years has helped me to understand, at least more clearly what my limitations are and when I need to refer clients or when I can\'t simply carry on what I am doing with exercise. </span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-1232\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-26-at-08.01.16.png\" alt=\"\" width=\"264\" height=\"221\" />\n</span>\n\n<span style=\"font-weight: 400;\">One thing I learned during my time in cadaver labs (highly recommended if you get the chance by the way) was that for my role I don’t NEED nor WANT to know everything. That\'s a pretty tall order to expect of yourself right!? There is enough STUFF bouncing around in MY head that I want to keep it to a minimum thank you very much!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what I need is to know MY preferred specialist subject REALLY well (that’s </span><b><i>intrinsic biomechanics </i></b><span style=\"font-weight: 400;\">of competitive strength athletes in particular in case you didn’t know) to do my best and provide the best duty of care I can. This understanding also allows me to best advise my learners. It is a lot of responsibility advising learners on their remit and can be quite challenging when they are from such diverse backgrounds. However, the really exciting thing is that often we get both therapists and exercise professionals together on our workshops.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-1045\" src=\"https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-12-at-07.37.45.png\" alt=\"\" width=\"434\" height=\"235\" /></span>\n\n<span style=\"font-weight: 400;\">Anyway, while I NEVER diagnose nor do I do ‘clinical’ work I DO want to understand enough that I am realistic about my clients best interest when they have a clinical issue or question. So reading research is something I TRY to do regularly.</span>\n\n<span style=\"font-weight: 400;\">Now if you are a fitness professional like me, with clients who have medical conditions and you wish you understood these conditions better have you ever tried to read clinical research or ANY kind of research in fact!?</span>\n\n<span style=\"font-weight: 400;\">Brain frying right?!</span>\n\nNow I don’t know about you but I am definitely NOT a ‘reader’\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">Ever heard of the V.A.R.K principles?</span></h2>\n<span style=\"font-weight: 400;\">VISUAL</span>\n\n<span style=\"font-weight: 400;\">AURAL</span>\n\n<span style=\"font-weight: 400;\">READER</span>\n\n<span style=\"font-weight: 400;\">KINESTHETIC</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, there are simple tests you can do to discover which ‘style’ of learning is your prefered method to absorb information but most of us already instinctively know which one it is. That is not to say we don’t learn for all of these by any means, they enhance each other.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I am SO kinesthetic!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I am a fidget. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Kinesthetic, or practical, all the way, I am a doer, a performer, tactile, physical, a people person and do not like the act of reading a lot of text (it kinda hurts my eyes) but LOVE reading to gain understanding at the same time.</span>\n\n<span style=\"font-weight: 400;\">My attention span is very short and so I have developed techniques that allow me to absorb information on ‘reading material’ because I recognise the value of information gained this way or that is only represented in this way.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having discovered audiobooks, which are a godsend, and one of the things I LOVE about technology for when I drive for hours around the UK (I have a LOVE/HATE relationship with technology like most of us I think) BUT frustratingly not all of the books I want to read are on audio.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having amassed over years literally hundreds of research papers online that relate to the grassroots of some of the techniques I use, I do take time out to ‘practice’ reading them. </span>\n\n&nbsp;\n<h2><span style=\"font-weight: 400;\">My method:</span></h2>\n<span style=\"font-weight: 400;\">Print off papers with a common theme or around a subject I want to study.</span>\n\n<span style=\"font-weight: 400;\">Then I highlight the key areas as I ‘scan’ read the content. Then I repeat until I have found all the ones with something to interesting in that I want to learn more about or understand better.</span>\n\n<span style=\"font-weight: 400;\">Then I put time aside to read a few, or maybe I simply read for a set time, due to having the attention span of a fish.</span>\n\n<span style=\"font-weight: 400;\">Then I do this repeatedly and periodically over time. This allows the information to pass into my thoughts during movement or exercise (the kinesthetic bit) or when I teach fitness classes or when I am watching people move in the gym (I KNOW you do that too!!)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">THEN when I feel I have something of relevance that I can understand or put into practice, then I discuss it or share it with my learners and then you guys.</span>\n\n<span style=\"font-weight: 400;\">Now please understand, as my school teachers constantly told me, I am </span><i><span style=\"font-weight: 400;\">not an academic</span></i><span style=\"font-weight: 400;\"> this does not mean I am stupid (well I keep telling myself that anyway) and for me I always look for the ‘SO WHAT?’ in things otherwise without having a reason to my brain simply as no reason to retain it!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I have read a huge pile of papers that relate to leg length discrepancy, SIJ function and pathology, different methods of assessing these areas, ideas on what the results mean, relevance or significance and also how they related to symptoms and pain.</span>\n\n<span style=\"font-weight: 400;\">This is all with the hope that I can find and then bring you, my learners, something of interest to read, discuss and maybe put into practice with your clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How do YOU adapt to your areas of weakness?</span>\n\n<img class=\"wp-image-3634 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/Question-myself-1-1024x1024.jpg\" alt=\"3d human with a red question mark\" width=\"189\" height=\"189\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What methods do YOU use to get around this?</span>\n\n<span style=\"font-weight: 400;\">What strategies do YOU use to improve your skill set?</span>\n\n<span style=\"font-weight: 400;\">With all of this in mind let me also encourage you to consider the best question ever….. SO WHAT?</span>\n\n&nbsp;\n<h2></h2>\n<h2><b>The Results Speak For Themselves</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now there are groups and individuals out there who still challenge everything which I would always encourage anyone to do since we should always seek clarity for understanding. My learners have definitely challenged ME on my methods and the evidence-based programme I use, many times.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is these times, when confronted and challenged, that I grow and expand the most. When at my most uncomfortable is when the real learning takes place because I NEED to understand it. When someone questions the very core of what I do in my practice and the methods we teach in the academy, which I am most passionate about, well that’s when I learn!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having been challenged I found myself on this exploration through reams and reams of research papers and books and conversations with peers, mentors and colleagues and wowzers I was in the ‘growth zone’!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you know where I ended up?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Apart from writing this for you guys of course….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well after reading complex equations, difficult language, conflicting evidence, fascinating arguments, strange opinions and lengthy articles I ended up with…</span>\n\n&nbsp;\n<h2><b>SO WHAT?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well yes, that’s where I ended up asking myself SO WHAT? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What am I trying to achieve with my clients?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Wait NO… </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What </span><i><span style=\"font-weight: 400;\">AM</span></i><span style=\"font-weight: 400;\"> I achieving with my clients?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Their ROM improves, pain is reduced, strength has increased, they report feeling more stable and overall feel they move better.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So no matter what the research states, no matter what the trolls say, no matter what challenges you, if your client feels better, moves better, experiences less pain and you have some objectivity to measuring improvements - SO WHAT?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However the learning never stops and we can always do more, learn more. So if you want to add some more tools to your kit bag to offer you more confidence when you ask the SO WHAT question why not try one of our workshops in 2018?</span>\n\n&nbsp;\n\n<b><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a> To Grab Our Xmas Offer! </b>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>','28/11 SO WHAT?','','inherit','closed','closed','','3902-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',3902,'https://biomechanicseducation.com/?p=38787',0,'revision','',0),(38788,0,'2024-07-16 11:26:33','2024-07-16 11:26:33','<h1><b><i>NO, I DAMN WELL CAN\'T!</i></b></h1>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So there will be endless opportunities coming up for PT\'s everywhere this week/month BUT be prepared to be faced with a common problem and misconception I have experienced for the entire 25 years of my career.</span>\n\n<span style=\"font-weight: 400;\">It never ceases to amaze me how many people approach me expecting literally 5 minutes of advice on how to cure all of their physical problems, ailments, ache and pains.</span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n<img class=\"aligncenter wp-image-3830\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/PT-FUSTRATION-1.jpg\" alt=\"pt-fustration\" width=\"358\" height=\"269\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Why do people/clients still think that all they need to do is a little exercise for a day or 2 to completely rid themselves of all their aches and pains long term!?</span>\n\n<span style=\"font-weight: 400;\">Now for a small number of people, this may well be the case but I am not talking about them. I’m talking about the people who have been to see their GP, physio, massage therapist, chiro, podiatrist and so on and have still not found the root cause of their problem.</span>\n\n<span style=\"font-weight: 400;\">The type of client who thinks that after say 30 years of a crappy lifestyle, sitting at a desk, walking around in high heels, carrying heavy bags on one shoulder and their babies on their hip, that we can simply give them an exercise for the specific area of the body and cure them!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Seriously!?</span>\n\n&nbsp;\n\n<b>Typical Conversation;</b>\n\n<i><span style=\"font-weight: 400;\">Potential Client; “Hi, I hear you are the \'go to\' person for helping back pain and I was wondering if you can give me an exercise for this bit….(points to lower back)”</span></i>\n\n<i><span style=\"font-weight: 400;\">Me; “Sorry but I would need to do a full assessment to understand better what might be causing it and to understand your medical history…”</span></i>\n\n<i><span style=\"font-weight: 400;\">Potential Client;“…can’t you just give me an exercise for that area..?”</span></i>\n\n<i><span style=\"font-weight: 400;\">Me; “NO I DAMN WELL CAN’T &amp; IF IT WERE THAT FLIPPIN’ SIMPLE DON’T YOU THINK I WOULD BE A MILLIONAIRE!?”……</span></i><span style=\"font-weight: 400;\">this part happens in my head so what I actually say is</span><i><span style=\"font-weight: 400;\">…..</span></i>\n\n<i><span style=\"font-weight: 400;\">“Not if you want a long-term improvement that is based on the parts of your body that need addressing rather than simply the area that hurts. Often the area that hurts is not that area where the problem has occurred …….” blah blah blah</span></i>\n\n<i><span style=\"font-weight: 400;\">   <img class=\"aligncenter wp-image-3831\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/coaching-1.png\" alt=\"coaching\" width=\"278\" height=\"278\" /></span></i><i><span style=\"font-weight: 400;\">     </span></i>\n\n<span style=\"font-weight: 400;\">Then I begin my spiel…but ONLY if I think I can genuinely help and sadly often, with this type of client, I cannot because they are the types of client who just won’t do their homework and so I refer them otherwise there is a high chance they will make me look bad!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Attitude towards what we CAN do to help ourselves is still very lazy and of the mindset that WE, as practitioners, therapists, Biomechanics Coaches&#x2122;, personal trainers, actually ‘fix’ people and that it can be done quickly.</span>\n\n&nbsp;\n\n<b>This Is Simply NOT TRUE!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Seriously, \'quick fixes\' would be an arrogant, and potentially can be harmful (to your business)!</span>\n\n<span style=\"font-weight: 400;\">How can anyone truly KNOW what is happening inside a ‘healthy’ but dysfunctional body? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine that we study on cadavers (dead bodies), pigs spines, take samples OUT of the body and using extrinsic video analysis, none of which replicate a live human on the inside.</span>\n\n<span style=\"font-weight: 400;\">YES, pretty much EVERYTHING we \'know\' about what’s happening inside the body, is a hypothesis!</span>\n\n<span style=\"font-weight: 400;\">This is why even the world leading experts often disagree because they both prove AND disprove concepts with their research.</span>\n\n<span style=\"font-weight: 400;\">Often with convincing data for both!</span>\n\n&nbsp;\n\n<b>So What The Hell Are WE PT\'s Supposed To Do?</b>\n\n<span style=\"font-weight: 400;\">Well, we have logic and the hypothesis built from whatever we DO know and trials of input/output.</span>\n\n<span style=\"font-weight: 400;\">World leaders like Haines, Chek, Poliquin, Gray, McGill, Gracovetsky and others have hypothesised their ideas from the research they have done, or data they have collected over many years, on many subjects, and used both their educated logic and results from the input/output.</span>\n\n<span style=\"font-weight: 400;\">This is why they are deemed ‘experts’.</span>\n<p style=\"text-align: center;\"><b>Education + Experience = Expert </b></p>\n<img class=\"aligncenter wp-image-3832\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/sprinterglow-1-1024x735.png\" alt=\"sprinterglow\" width=\"415\" height=\"298\" />\n\n<span style=\"font-weight: 400;\">This is also why those in the industry (like any of us) that are maybe not so experienced or are not necessarily in a position to collect data and perform research, seek out tried and tested input/output ‘systems’. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are ALL after the same end result - to look after our clients - and we go about it via the route that makes the most sense to us, from the way we are educated, the way our brain processes that information plus other things we read, learn, hear. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my opinion, the simpler to apply the better- would you agree!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also, don’t undervalue what you gain from your own service since we do in fact, gather ‘results’ from our own clients and form our own opinions on what might help, with a whole battery of ideas, tools, resources and methods in an endeavour to help each client.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More often than not, and on a superficial level, the client actually KNOWS what they SHOULD do, to some degree at least, to feel better or to lose weight.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">-Move More</span>\n\n<span style=\"font-weight: 400;\">-Eat Better</span>\n\n<span style=\"font-weight: 400;\">Yep that’s pretty much the entire industry\'s requirement, isn\'t it!? - think about it!</span>\n\n&nbsp;\n\n<b>But It’s NEVER That Simple - WHY?</b>\n\n<span style=\"font-weight: 400;\">ATTITUDE </span>\n\n<span style=\"font-weight: 400;\">&amp;</span>\n\n<span style=\"font-weight: 400;\">EXPECTATION</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We ALL need to be working towards changing our client’s attitude and expectation by EDUCATING them on how to better help themselves, WITH OUR GUIDANCE of course!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Whilst we are doing this, we would be gaining experience, learning what works and what doesn’t by our own methods, effectively trialling and testing what we have learned, so far. </span>\n\n<span style=\"font-weight: 400;\">So why not learn an ‘experts’ tried and tested system to improve your confidence and better serve them?!</span>\n\n<span style=\"font-weight: 400;\">Experts like Ben Coomber of Body Type Nutrition, and his team, will educate you with a smart, yet simple system of ideas on how to advise clients how to fuel their bodies.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Mike Grice of Movement Therapy Clinics, and his team will give you awesome practical manual therapy skills using a logical system.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Chris Wright of Level 10 Living, and his team will teach you a fantastic system to help your business succeed.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our own workshops offer you a physical assessment system or ‘benchmark’, to decide which exercises will help and which will hinder your client.  With movement preparation techniques to reduce injury risk, improve movement performance and often with the awesome side effect of pain relief.</span>\n\n<img class=\"aligncenter wp-image-3833\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/shutterstock_52725265-1.jpg\" alt=\"shutterstock_52725265\" width=\"507\" height=\"189\" />\n\n<span style=\"font-weight: 400;\">So even if you attended ALL of these courses the question is; </span>\n\n<span style=\"font-weight: 400;\">How are YOU going to change YOUR client’s attitude?</span>\n\n<span style=\"font-weight: 400;\">Firstly we need to change OURS!</span>\n\n<span style=\"font-weight: 400;\">We need to start learning HOW to educate them on what is happening to their bodies.</span>\n\n<span style=\"font-weight: 400;\">We need to take TIME, to be honest </span>\n\n<span style=\"font-weight: 400;\">We need to allow for time to EXPLAIN things</span>\n\n<span style=\"font-weight: 400;\">We need to understand what we are explaining technically and then make it SIMPLE for the layperson to grasp</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">‘If you can’t explain it simply, you don’t understand it well enough’ </span></i><span style=\"font-weight: 400;\">Albert Einstein</span>\n\n&nbsp;\n\n<b>We Don’t Have An Easy Job!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But this is vital if we are to maintain our ‘duty of care’, get the best long-term results we can and built on a ‘system’ to demonstrate from our own results something that is valid, reliable and reproducible.</span>\n\n<span style=\"font-weight: 400;\">Without a system, we are GUESSING, flailing around from one idea to the next with no way of measuring what actually worked which means we lose our confidence.</span>\n\n<span style=\"font-weight: 400;\">If we don’t know what worked how can we repeat it and help the next person?</span>\n\n<span style=\"font-weight: 400;\">So the value in taking longer to do things initially is VITAL for our future client\'s long-term success and the long-term success of our services. Over time we will become quicker and slicker at this method of delivery. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Really we should simply refuse to take on clients who do not adopt the methods or system we teach.</span>\n\n<span style=\"font-weight: 400;\">WHY pay for my expertise and then not heed it?!</span>\n\n<span style=\"font-weight: 400;\">We should </span><i><span style=\"font-weight: 400;\">interview</span></i><span style=\"font-weight: 400;\"> clients to decide if they a suitable to OUR method.</span>\n\n<span style=\"font-weight: 400;\">Because if we do not filter out the ‘liggers\', as I call them, they will make us look rubbish!</span>\n\n&nbsp;\n\n<b>(Urban Dictionary ‘</b><b><i>ligger\' = along for a free ride)</i></b><span style=\"font-weight: 400;\"> the ones who want that a quick fix, the ones who think a little exercise will fix them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you KNOW you could help someone IF they did as they were told BUT they didn’t like it or buy in - what’s the point!?!?</span>\n\n&nbsp;\n\n<b>Get Rid Of Those Clients</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Attract the type of clients you ENJOY working with because they trust YOU, respect your professionalism, do what you suggest and therefore change their bad habits</span>\n\n<span style=\"font-weight: 400;\">Be confident about turning people away </span>\n\n<span style=\"font-weight: 400;\">Meaning you enjoy working more</span>\n\n<span style=\"font-weight: 400;\">Allowing you to focus on people who get results following your system</span>\n\n<span style=\"font-weight: 400;\">Allowing you to charge more based on results </span>\n\n<span style=\"font-weight: 400;\">Allowing you to increase your income</span>\n\n<span style=\"font-weight: 400;\">This will reduce the stress of clients not adhering to the system and making YOU look bad!</span>\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n<span style=\"font-weight: 400;\">I agree it is never simple</span>\n\n<span style=\"font-weight: 400;\">Everything is hypothesis</span>\n\n<span style=\"font-weight: 400;\">Just find a ‘system’ (create one or, if you do not have the resources, utilise a tried and tested one)</span>\n\n<span style=\"font-weight: 400;\">Stick to the ‘system’</span>\n\n<span style=\"font-weight: 400;\">Interview clients to find the ones who will follow your ‘system’</span>\n\n<span style=\"font-weight: 400;\">Explain what that ‘system’ is on day 1</span>\n\n<span style=\"font-weight: 400;\">Create the appropriate expectation in them on day 1</span>\n\n<span style=\"font-weight: 400;\">Maintain integrity by being honest.</span>\n\n<span style=\"font-weight: 400;\">Carefully use the right language</span>\n\n<span style=\"font-weight: 400;\">Just make sure your ‘system’ is;</span>\n\n<span style=\"font-weight: 400;\">Tried and tested</span>\n\n<span style=\"font-weight: 400;\">Simple</span>\n\n<span style=\"font-weight: 400;\">Logical </span>\n\n<span style=\"font-weight: 400;\">Easy to follow</span>\n\n<span style=\"font-weight: 400;\">Removes guesswork</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<b>Would You Like A Ready Made ‘System’?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You already know my next question, don’t you?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So remember if I TURN YOU AWAY it’s because I don’t believe you will follow MY system!</span>\n\n<span style=\"font-weight: 400;\">But you won’t know unless you ask …….</span>\n\n<span style=\"font-weight: 400;\">So why not start with a 2-Day Pelvic Biomechanics Workshop Feb in North London or Loughborough?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">P.S. Did you know we have an offer on????</span>\n\n<span style=\"font-weight: 400;\">Click <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Here</a> Discover It!</span>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>\n<div class=\"grammarly-disable-indicator\"></div>','NO, I DAMN WELL CAN\'T!','','inherit','closed','closed','','3827-revision-v1','','','2024-07-16 11:26:33','2024-07-16 11:26:33','',3827,'https://biomechanicseducation.com/?p=38788',0,'revision','',0),(38789,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<h2><span style=\"font-weight: 400;\">Do You Ever Wonder If The Terminology You Use Is Right?</span></h2>\n<span style=\"font-weight: 400;\">Maybe you get flummoxed between lay language and technical speak when switching chat between clients and peers?</span>\n\n<span style=\"font-weight: 400;\">Or </span>\n\n<span style=\"font-weight: 400;\">Maybe you have simply got so used to speaking that language with clients that you have forgotten how to use technical jargon which makes you anxious when speaking your thoughts to peers or on courses?</span>\n<h4></h4>\n<h4>Language in relation to the human body can be rather ambiguous.</h4>\n<h4><span style=\"font-weight: 400;\">- Tight</span></h4>\n<h4><span style=\"font-weight: 400;\">- Inhibited</span></h4>\n<h4><span style=\"font-weight: 400;\">- Overactive</span></h4>\n<h4><span style=\"font-weight: 400;\">- Dysfunctional</span></h4>\n<h4><span style=\"font-weight: 400;\">- Spasmodic</span></h4>\n<h4><span style=\"font-weight: 400;\">- Weak</span></h4>\n<h4><span style=\"font-weight: 400;\">- Dominant</span></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s language that very often causes great controversy in the health &amp; fitness industry and in my opinion, often unnecessarily.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-3821\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/communication-1.png\" alt=\"communication\" width=\"555\" height=\"222\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The language we use can potentially result in a great session or a not so great one - Are our choice of words hitting the spot with the person receiving the information?</span>\n\n<span style=\"font-weight: 400;\">Or</span>\n\n<span style=\"font-weight: 400;\">Do they look at you confused when you try to communicate what you feel might be going on?</span>\n\n<span style=\"font-weight: 400;\">Or</span>\n\n<span style=\"font-weight: 400;\">Are the words we choose relevant to their capabilities of understanding or even what they give a damn about to be blunt!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-3693\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/seek-a-professional-1.jpg\" alt=\"\" width=\"567\" height=\"378\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Communication is absolutely paramount in, not only for our client\'s sessions but between us and our peers.</span>\n\n<span style=\"font-weight: 400;\">And there is still a gap between us.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT’s generally call problem muscles tight or short</span>\n\n<span style=\"font-weight: 400;\">Therapists mostly call them overactive or inhibited</span>\n\n<span style=\"font-weight: 400;\">But what’s the difference?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, it doesn’t really matter too much what you call it in your own thoughts….</span>\n\n<span style=\"font-weight: 400;\">It’s what you\'re going to do about it and to whom you want to communicate it with that is key.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example, you wouldn’t be explaining to a client that </span><i><span style=\"font-weight: 400;\">you feel their piriformis muscle may be reciprocally inhibited by the gluteal muscles due to the laws found in a research paper a or b.</span></i>\n\n<span style=\"font-weight: 400;\">No! You would likely just say </span><i><span style=\"font-weight: 400;\">your hips are a little stiff or limited</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But when seeking ideas from a peer then your language should switch to a more technical vocabulary. This allows you to have an absolute clarity to discuss thoughts on potential causes of musculoskeletal ‘issues’ and therefore the various interventions you may have between you. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As an education company, we are very pedantic about the language we use during our workshops. We train all of our Master Trainers to speak with absolute clarity otherwise what we are saying can be misinterpreted.When it comes to the duty of care for our learner\'s skills clarity is imperative. This also goes for our learner\'s ability to communicate with their clients, which is often a whole different set of words. It kind of like being bilingual!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2896\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/table_pic.jpg\" alt=\"\" width=\"648\" height=\"351\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">‘Language’ and the problems it can cause means we are faced with challenges when it comes to choosing the right words. This is something I would like to talk about in more detail in an endeavor to bridge the gap between all practitioners. Ultimately this offers further opportunity for us to provide an even better duty of care to our clients. Doing this </span><i><span style=\"font-weight: 400;\">together </span></i><span style=\"font-weight: 400;\">through inter referral sites and systems has got to be smarter than possibly struggling on our own; don’t you think?!</span>\n\n<span style=\"font-weight: 400;\">So with meetings planned with colleagues to discuss this very topic keep your eyes peeled for more information and resources coming your way!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Within our <a href=\"https://www.biomechanicseducation.com\" target=\"_blank\" rel=\"noopener\">academy</a>, we provide all of our learners with all they need to utilise the most appropriate language to communicate professionally with both clients and peers.</span>\n\n<span style=\"font-weight: 400;\">If you would like to improve your communication skills when talking human movement stuff why not try one of our really cool workshops?</span>\n\nClick <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">HERE</a> to find out more.','Is Your Choice Of Language Confusing Your Client?','','inherit','closed','closed','','3817-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',3817,'https://biomechanicseducation.com/?p=38789',0,'revision','',0),(38790,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<h3><span style=\"font-weight: 400;\">We regularly test every system in our body to predict problems <em>except</em> our musculoskeletal system - WHY??</span></h3>\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Yearly eye test</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Regular hearing tests</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Dentists once a year</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Wellman/Wellwoman screening </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Breast screening</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Cholesterol testing </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Blood pressure testing</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet with the musculoskeletal system we literally WAIT until we have symptoms before we seek help! Usually by this time it’s probably been hanging around for some time because of our body’s amazing ability to compensate, adapt and yet continue to function.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2814\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-18-at-20.22.27.png\" alt=\"screen-shot-2017-06-18-at-20-22-27\" width=\"235\" height=\"245\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our body has proven to be ingenious at evolving to its environment, which we see very obviously in various situation. Take bodybuilding competitions for example, with the right environment in place i.e. training and diet etc, muscles can grow.</span>\n\n<span style=\"font-weight: 400;\">A runner will adapt to their sport and a desk workers body will also adapt to prolonged sitting with certain areas in their bodies staying in lengthened or shortened positions as they sit and type.</span>\n\n<span style=\"font-weight: 400;\">Even a bricklayer\'s hands can develop a thick layer of calluses on the skin that’s to protect their hands.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-3803\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/11/calluses-on-hand-1-1.jpg\" alt=\"calluses-on-hand-1\" width=\"336\" height=\"224\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With all of this evidence and information I find it incredible, particularly with the amount of musculoskeletal problems commonly suffered today, that there is not a compulsory standardised annual musculoskeletal screening system. This could then be offered to everyone to help reduce NHS costs and absenteeism costs for businesses both large and small? Medical insurance companies would LOVE something like this, right!? They are happy to pay out for you to have other physical examinations to avoid problems later on that might cost them even more.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As movement/exercise specialists we could all contribute to reducing these costs with risk reduction screenings and bespoke exercise programming. Some barely even speak to each other professionally because of a fear of losing clients but thats a whole other Juicemail topic! ;)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Not only would having these skills enable us to assist reduction  unnecessary injuries and recurring ones, it could reduce insidious low grade aches and niggles, improve the way people move and all while increasing performance levels!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The bodybuilders gain symmetry<img class=\"wp-image-2964 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-03-at-10.10.13-1024x813.png\" alt=\"screen-shot-2017-07-03-at-10-10-13\" width=\"373\" height=\"296\" /></span>\n\n<span style=\"font-weight: 400;\">The runner gets faster\n</span>\n\n<span style=\"font-weight: 400;\">The desk worker had less fatigue &amp; pain thus reducing absenteeism</span>\n\n<span style=\"font-weight: 400;\">The bricklayer would probably still have hardened skin on his hands but hopefully, would have less back &amp; knee problems!</span>\n\nCommon problems like non specific low back pain could be addressed bespokely instead of a uniform method that is based on assumptions.\n\n<span style=\"font-weight: 400;\">We are perfectly placed with our exercise knowledge for this very role!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">People employe our services for the fun stuff, they see us sometimes several times a week. With us they have positive goals because we are the movement specialists and THAT is more commonly the problem isn’t it!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should stop slagging PT Education off and take some responsibility to improving it. L3 PT, Pilates or Sports Massage are superb base level qualifications to get started.</span>\n\n<span style=\"font-weight: 400;\">We cannot appreciate L3 without demonstrating the ability to appreciate L2 first. It’s called layered learning.</span>\n\n<span style=\"font-weight: 400;\">So once you’ve gained L3, practise it and understand the right questions you need answers to THEN we go on to learn more. With our personal development and education ultimately being our responsibility, surely learning how to perform these types of musculoskeletal screens/assessments would be ideal.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WE, as movement specialists, could be the first point of call each year for assessing the nation’s physical health to REDUCE injury risk and improve movement ability through appropriate exercise  preparation to improve intrinsic capacity.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having a standardised, evidence-based, reproducible system could make a huge deal of difference to our client\'s success and achievements.</span>\n\n<span style=\"font-weight: 400;\">And in fact to our Nation!</span>\n\n<span style=\"font-weight: 400;\">And of course over-time the NHS </span>\n\n&nbsp;\n\nWho’s in?\n\nCheck out our Diploma and learn how you can increase your knowledge so you can better serve your clients through our <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Biomechanics Education Diploma</a>\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-3502\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/2018-locked-prices-1-1024x536.png\" alt=\"2018-locked-prices\" width=\"361\" height=\"189\" /></a>','Why Go To The Dentist?','','inherit','closed','closed','','3800-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',3800,'https://biomechanicseducation.com/?p=38790',0,'revision','',0),(38791,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<h4><b>Do you know what one looks like?</b></h4>\n<h4><b>Do you know what to do when your client has a hernia?</b></h4>\n<h4><b>Do you have a clear idea of what to do if you or someone you know has one?</b></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">There are many different causes of abdominal pain, but despite being quite common, there is little written about abdominal pain from a musculoskeletal perspective. Read on as we discuss some of the more common musculoskeletal disorders.</span>\n\n&nbsp;\n<h3><b>Incipient (Sportsman’s) Hernia</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The various muscles of the abdominal wall are penetrated by the inguinal canal, which contains nerves and, in men, the spermatic cord, in women the inguinal canal, contains a small fibrous ligament. Where the inguinal canal penetrates the abdominal wall, weak spots arise, and this is the site of an incipient inguinal hernia. It is effectively a tear of the muscles and connective tissue in the area.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"wp-image-3789 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/hernia-1.jpg\" alt=\"hernia\" width=\"516\" height=\"298\" /></span>\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is some debate in the literature as to how this is diagnosed, but the symptoms include the following:</span>\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Lower abdominal pain</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Stiffness or soreness after training.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Groin pain that is increased by running, sprinting, twisting and turning.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Groin pain that is increased when coughing, sneezing, etc.</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is claimed that in 30 percent of athletes, there is a history of sudden injury, but the majority indicate an incipient hernia is a gradual overuse injury. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It depends upon the skills of the doctor or therapist as to whether a sportsman’s hernia can be diagnosed, but this problem accounts for many of the unsuccessfully treated abdominal and groin injuries seen in sports today. If any of your clients complain of the above types of symptoms, one of the main areas to check first is the sacro-iliac (SI) joint function.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If there is an abnormal positioning of the SI joint, this can increase the load on the external and internal obliques and consequently the inguinal canal, causing damage. So before trying to manage a hernia, you need to try to correct any biomechanical causes that may be loading the area. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The two best tests to check for correct biomechanical function of the pelvis are Downing’s Sign and the 4-Sign (Patrick Fabre’s sign). This was established by Barrow and Haines when they biomechanically tested over 4,000 people to look at which manual tests had the highest correlation with the biomechanical tests in the Lab for establishing pelvic function. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Downing’s sign is a non-weight bearing test and also establishes whether there is a functional or apparent leg length discrepancy.  While this test is difficult to describe in text try this (or go to our YouTube Channel); lay your client supine, ask them to do a bridge, then taking their legs you lift their knees to their chest and then straighten their legs out to the floor or couch.  At this point measure any difference in height between their medial malleoli. Now move their hips by rotating them passively into adduction, then flexion, then abduction and then back down into extension.  Then take a look at the heights of their medial malleolus.  If their pelvis is working correctly that leg should have lengthened and the malleolus on that side should be lower.  Then reverse the movement and when you now measure the medial malleolus height that leg should have shortened again, making the leg lengths the same as they were after they bridged.  </span>\n\n<span style=\"font-weight: 400;\">Try on both sides. If the legs both lengthen and shorten, then the pelvis is working correctly.  If they don’t, then the pelvis is dysfunctional and can be loading the hernia area.  The 4-Sign can be found when you Google Patrick Fabre’s Sign and has much more written about it, but it’s usually applied clinically rather than biomechanically.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With this test, you lay your client supine (or you can do it seated) and cross one ankle over the other with the lateral malleolus placed outside the lower quad of the opposite leg.  Look at how low the knee drops to the floor or mat. Then repeat on the other side. They should be symmetrical, if they aren’t symmetrical then the pelvis is dysfunctional. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In addition, if the pelvis is abnormally rotated, as well as causing a functional leg length discrepancy, it can increase the load on the symphysis pubis, which can also refer pain into the lower abdominals. The best way to mobilise the pelvis and correct any SI dysfunction through exercise is to perform anti-spasm exercises (a form of hold-relax exercise) for the hip extensors and specifically glutes and piriformis. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once the pelvis is in good biomechanical shape, then core work can help to stabilise the pelvis after it’s in a correct biomechanical position and also working on the scar tissue around the inguinal canal to help the healing. Then when your client is ready, you can progress onto the functional stability work. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is critical that you work the adductors of the hip as well. This is because the adductors and the trunk muscles work closely to control and stabilise the pelvis, and for men especially, their adductors are often “weak” or inhibited. This may be one of the reasons that they have an incipient hernia in the first place. While today the latest trend is “functional movements,” there are times in rehab and conditioning when you need to isolate muscles first, and this is one example. As Mark Verstegen says: “First isolate, then integrate.” Working the hip adductors symmetrically in the seated adductor machine helps engage the adductors (and core when positioned correctly) and mobilise the symphysis pubis. Then progressing to asymmetrical adductor work on the total hip machine (hip conditioner) will introduce a more weight-bearing challenge with additional torque through the pelvis, and then functional movements can be a very effective way of integrating the pelvic and trunk musculature.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The problem with functional movements, in this example, is that if one of the muscles is not firing correctly or is inhibited (in this case the adductors), and you do functional training for the hip and trunk, the body is a master of compensation, and other muscles can take over to protect it. The muscle needs to be “taught” how to contract and fire again, so it is able to be integrated into a functional pattern of movement. So in this case (as with many others), isolate then integrate.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More often than not, the incipient hernias can be managed through exercise rather than surgery. Just try to make sure you correct the mechanical faults with the pelvis as well as strengthening the obliques.</span>\n\n&nbsp;\n<h3><b>Referred Abdominal Pain</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Referred pain is a term used to describe the phenomenon of pain perceived at a site adjacent to or at a distance from the site of an injury origin. The International Association for the Study of Pain, as of 2001, has not officially defined the term, so several authors have defined the term differently. Despite an increasing amount of literature on the subject, there is no definitive answer regarding the mechanism behind this phenomenon. Physicians and scientists have known about referred pain since the late 1880s, yet the true origins and causes of referred pain are unknown. However, we do know that referred pain can come from a number of areas, like the thorax (pneumonia, pulmonary embolism, ischemic heart disease and pericarditis), the spine (radiculitis) and from the genitals (testicular torsion). </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if you have any uncertainty at all, refer your client to a relevant medical specialist. If you think there may be some cardiac involvement, refer to a cardiologist, and if you are concerned that the pain may be referred from the spine, then any good manual therapist should be able to help. Don’t worry too much about whether it’s a physiotherapist, osteopath or chiropractor. Consider the person rather than the qualification. Try to find one who understands biomechanics so he/she can work out why your client has the pain and also someone who understands exercise and is prepared to discuss the science with you to come to a logical conclusion.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As long as there is no underlying clinical pathology, exercise is an excellent way of managing musculoskeletal-related abdominal pain and its many causes. The key is to identify the biomechanical causes (rotated pelvis, weak or inhibited adductors, tight lumbar spine, tight thoracic spine etc) and manage them. Then progressively condition the relevant muscles, and the abdominal pain usually looks after itself. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">With thanks to Martin Haines, Specialist Biomechanics Coach, Chartered Physiotherapist.</span></i>\n\nIf you would like to find out more about Biomechanics Education and how you can benefit from our research, <a href=\"http://bit.ly/2svUc5o\" target=\"_blank\" rel=\"noopener\">Click Here</a>.\n<h3><b>References</b></h3>\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Anderson, DM, Mosby\'s Medical Dictionary 6th ed, St Louis, Mo: Mosby; 2002. </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Fredberg U, Kissmeyer-Nielsen P, The sportsman\'s hernia – fact or fiction? Scand J Med Sci Sports, 1996 Aug;6(4):201-4. </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Giles LGF, Taylor JR, Low back pain associated with leg length inequality, Spine 6:5, 510, 1981. </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Lacroix VJ, Kinnear DG, Mulder DS, Brown RA, Lower abdominal pain syndrome in national hockey league players: a report of 11 cases, Clin J Sport Med, 1998 Jan;8(1):5-9. </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Marx J, Rosens Emergency Medicine: Concepts and Clinical Practice 6th ed, St Louis, Mo: Mosby; 2006. </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Thompson, Ann and Skinner, Alison. eds. \"Tidy\'s Physiotherapy.\" Butterworth-Heinemann Ltd. 12th ed. 31 Mar 1991</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">http://www.sportnetdoc.com/injury/09-02.htm</span></li>\n</ol>','Abdominal Injuries - Hernia','','inherit','closed','closed','','3783-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',3783,'https://biomechanicseducation.com/?p=38791',0,'revision','',0),(38792,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<b>You want to move more freely, right?</b>\n\n<b>Your clients want to move more freely too, don\'t they?</b>\n\n<b>In fact, do you know anyone who doesn\'t want to move more freely?</b>\n\n<b>In many cases, moving more freely also = less pain</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It really isn\'t that complicated, to be honest but we do need to consider WHY we and our clients are in such dysfunctional states. Even as exercise professionals we often find the hectic lives we lead to reduce the time we spend on ourselves and we need to regain responsibility for our own biomechanical health to set an example to our clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Considering the average healthy adult (chances are that includes you) spends a high proportion of their time sitting at a desk, driving, travelling or hunched over their phones for example, so much so it is no surprise we are suffering these low grade non-specific aches and niggles, is it!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So by setting an example to our clients and taking ownership, making a few small changes to our own lifestyles (and maybe some bigger ones too) we can reduce our risk of injury, teach our clients and feel the benefits of the freedom of movement with these 6 tips:</span>\n\n&nbsp;\n\n<b>1). See A Skilled Professional Who Can Assess Your Intrinsic Function</b>\n\n<span style=\"font-weight: 400;\">Not to be confused with seeing a medical professional whose job is to assess medical conditions, find someone who understands intrinsic function like a Biomechanics Coach&#x2122; or iMoveFreely® Instructor who all specialise in this area of expertise. </span>\n\n<b><img class=\"aligncenter wp-image-3693\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/seek-a-professional-1.jpg\" alt=\"seek-a-professional\" width=\"410\" height=\"273\" /></b>\n\n<b>2). Then Do What They Say...</b>\n\n<span style=\"font-weight: 400;\"><b><img class=\"wp-image-3694 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/you-1-1024x1024.jpg\" alt=\"you\" width=\"84\" height=\"84\" /></b></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Simple = Own it!</span>\n\n<span style=\"font-weight: 400;\">You\'re in the state you\'re in because of your lifestyle, now do what you coach/trainer advised you!</span>\n\n&nbsp;\n\n&nbsp;\n\n<b>3). Get A Good Sports Massage Regularly</b>\n\n<span style=\"font-weight: 400;\">Find a good sports massage therapist or manual therapist and have body work done regularly - the good ones are the ones with a great reputation, they are NOT the cheapest!! You will get what you pay for.</span>\n\n<b><img class=\"wp-image-3692 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/Biomechanics-physio-1-1024x683.jpg\" alt=\"Chiropractor massage the female patient spine and back\" width=\"386\" height=\"257\" /></b>\n\n&nbsp;\n\n<b>4). Stop Carrying Your Bag On The Same Side</b>\n\n<span style=\"font-weight: 400;\">We would never consider going to the gym and only training one side of the body and yet every day we carry our heavy sports bags, shopping bags, laptop bags on the same side!</span>\n\n<span style=\"font-weight: 400;\">Get a trolley bag or use a rucksack.</span>\n\n<b><img class=\"aligncenter wp-image-3695\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/shoulder-blade-pain-1.jpg\" alt=\"shoulder-blade-pain\" width=\"450\" height=\"225\" /></b>\n\n&nbsp;\n\n<b>5). Burn All Your \'Fashion\' Footwear</b>\n\n<span style=\"font-weight: 400;\">Ok, a tough one but I guess the question is this ‘how much fun are you gonna have sitting at home crippled with back pain looking at those pretty high heels in the bottom of your wardrobe?’</span>\n\n<span style=\"font-weight: 400;\">Also, not all shoes are good for all feet.</span>\n\n<span style=\"font-weight: 400;\">Get your feet assessed properly for advice on the best footwear for your foot function. If you have a loose MidTarsal Joint you probably shouldn\'t wear minimalist shoes, ballet pumps or converse for example.</span>\n\n&nbsp;\n\n<b>6). Move More<img class=\"wp-image-3699 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/ballet-pumps-1.jpg\" alt=\"ballet-pumps\" width=\"120\" height=\"173\" /></b>\n\n<span style=\"font-weight: 400;\">Kind of an obvious one but one we still forget once we get sucked into the TV or computer screen. Rather than set up all of your things within reach of your desk, move everything away from you so you are reaching and moving more. Offer to make drinks for everyone - all the time!</span>\n\n<span style=\"font-weight: 400;\">Invest in a changeable laptop stand that you can put on top of your desk so you can change position regularly and easily so your body is permanently active. Ask for a FitBit for Xmas - I LOVE mine!!</span>\n\n&nbsp;\n\nWe NEED YOU!\n\n<span style=\"font-weight: 400;\">We need more Biomechanics Coaches&#x2122; around the UK</span>\n\n<span style=\"font-weight: 400;\">Is it you?</span>\n\n<span style=\"font-weight: 400;\">Do you have what it takes?</span>\n\n<span style=\"font-weight: 400;\">Are you prepared to take your profession to another level?</span>\n\n<span style=\"font-weight: 400;\">Do you want to become part of a strong inter-professional team?</span>\n\n<span style=\"font-weight: 400;\">Become a Biomechanics Coaches&#x2122; </span><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><b>BOOK YOUR PLACE HERE!</b></a>','You Want To Move More Freely, Right?','','inherit','closed','closed','','3689-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',3689,'https://biomechanicseducation.com/?p=38792',0,'revision','',0),(38793,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<h2 style=\"text-align: center;\"><b>Are You Up To The Beyond 90 Challenge? </b></h2>\n<h2 style=\"text-align: center;\"><b>Win A Low Back Health Workshop worth £187</b></h2>\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Are YOU up for the challenge?</span></h3>\n<span style=\"font-weight: 400;\">More and more I am aware of how much sitting we all do and it is scary how </span><i><span style=\"font-weight: 400;\">normal </span></i><span style=\"font-weight: 400;\">it is! How ‘lazy’ we have all got simply because of what is deemed </span><i><span style=\"font-weight: 400;\">normal </span></i><span style=\"font-weight: 400;\">now. Here is an example of how ludicrous it is;</span>\n\n<span style=\"font-weight: 400;\">I went to get my nails done (as you do) and the little man on reception there offered me a seat to wait, as you would </span><i><span style=\"font-weight: 400;\">expect,</span></i><span style=\"font-weight: 400;\"> right? </span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">\nNO WRONG - WHY? <img class=\"wp-image-3630 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/arms-crossed-1.png\" alt=\"arms-crossed\" width=\"103\" height=\"103\" />\n</span></h3>\n<span style=\"font-weight: 400;\">Look, I did say thanks in order to let him know that I had heard him but I continued to wait standing up. He came back and said again “</span><i><span style=\"font-weight: 400;\">please have a seat</span></i><span style=\"font-weight: 400;\">”, “</span><i><span style=\"font-weight: 400;\">no I am fine, thanks,</span></i><span style=\"font-weight: 400;\">” I said. He offered it to me 3 more times &amp; actually looked confused\nlike he had done something wrong or I was testing him like I was a secret shopper or something. So much so I actually felt sorry for him and nearly sat down!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Whoah Rach</span></i><span style=\"font-weight: 400;\">!”, I said to myself, “</span><i><span style=\"font-weight: 400;\">this is your body and you know how much you sit down for work already AND you’re about to sit for the next 45 mins having your nails done!”</span></i><span style=\"font-weight: 400;\">  (Yes I too talk to myself in my head just like you)\n</span>\n\n&nbsp;\n\n&nbsp;\n\nAnyway, this is not the first time I have experienced odd looks for choosing to stand in ‘sitting’ situations. At the doctor\'s, for example, I walk <img class=\"wp-image-3632 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/I-will-stand-1-1024x683.jpg\" alt=\"i-will-stand\" width=\"239\" height=\"159\" />around reading the leaflets and posters about incontinence, dementia, and mental health, that I have read before (several times), just so that no one thinks I am standing, maybe due to piles or something<span style=\"font-weight: 400;\">, when there are 80 empty seats! Because there must be something WRONG if I am standing right?\n</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Choosing to stand on a bus when there are loads of empty seats gets me sideways glances. </span>\n\n<span style=\"font-weight: 400;\">I mean I can’t just be standing because I want to when there is the option to sit, can I?????</span>\n\n&nbsp;\n\n<img class=\"wp-image-3634 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/Question-myself-1-1024x1024.jpg\" alt=\"3d human with a red question mark\" width=\"185\" height=\"185\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Errrrrrrr, actually yes and I have now started to tell people who offer me seat that </span><i><span style=\"font-weight: 400;\">“hey I sit all day and the LAST thing I want to do is sit again”</span></i><span style=\"font-weight: 400;\"> because I want to <strong>start a trend</strong> and make it ok to stand and hopefully reduce the prejudice towards the ‘<strong>Beyond 90 Challengers</strong>’.</span>\n\n&nbsp;\n<h3><span style=\"font-weight: 400;\">Who are the ‘Beyond 90 Challengers’?</span></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Look we all have sofas, dining chairs, cars (unless your </span><i><span style=\"font-weight: 400;\">Katy Bowman</span></i><span style=\"font-weight: 400;\"> of course). There are seats in bars, restaurants, bus stops, doctors waiting rooms, in market squares, coffee shops, airports. Our toilets even sit us at 90 degrees just like pretty much every other seat or chair around us - unless of course, you have a ‘Squatty Potty??’...that’s a whole other blog…..YouTube it…it has over 32,341,095 views </span>&#x1f633;&#x1f633;&#x1f633;\n\n&nbsp;\n\n<a href=\"https://youtu.be/YbYWhdLO43Q\"><img class=\"aligncenter wp-image-3635\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/squatty-potty-unicorn-1.png\" alt=\"squatty-potty-unicorn\" width=\"329\" height=\"163\" /></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway imagine for a moment sitting on a toddlers little chair…..yeah you would probably FEEL weird and look funny but actually….it is truer to how we are physically designed to sit.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I want to set you a challenge….<strong>The Beyond 90 Challenge</strong>.</span>\n\n&nbsp;\n<h3><b>The Beyond 90 Challenge</b></h3>\n<img class=\"aligncenter wp-image-3636\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/Beyond-90-Challenge-3-1-1024x536.png\" alt=\"beyond-90-challenge-3\" width=\"454\" height=\"238\" />\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">This is quite a simple challenge BUT is likely to take you out of your comfort zone on a couple of levels.</span></p>\n<p style=\"text-align: center;\">But if you are able to make it to the other side, the rewards are GREAT!</p>\n\n<h3></h3>\n<h3><span style=\"font-weight: 400;\">The Rules</span></h3>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Avoid sitting at 90° as often as possible.</span></li>\n</ul>\n<span style=\"font-weight: 400;\">Either stand with hips ‘beyond 90°’ = fully extended</span>\n\n<span style=\"font-weight: 400;\">Or</span>\n<ul>\n 	<li><span style=\"font-weight: 400;\">Sit with hips ‘beyond 90°’ = fully flexed so you are sitting on your haunches like the cavemen did.</span></li>\n</ul>\n<span style=\"font-weight: 400;\">Now if you <strong>collect evidence</strong> by way of photos &amp; videos of your situation and post them on the <strong>Biomechanics Education Facebook</strong> page and across social media with #beyond90 and you could <strong>win a FREE workshop</strong> with Biomechanics Education Ltd!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The winner of </span><span style=\"font-weight: 400;\">The Beyond 90 Challenge</span><span style=\"font-weight: 400;\"> is the person who posts the most </span><i><span style=\"font-weight: 400;\">different</span></i><span style=\"font-weight: 400;\"> ‘Beyond 90 Challenge’ images/videos. So get creative. </span><b>Remember you MUST post to the Biomechanics Education Facebook page so you can be judged as we get to see ALL of your videos and photos.  </b>\n\n<span style=\"font-weight: 400;\">The winner will receive a 1 day Low Back Health Workshop worth £187!</span>\n\nIf this article has now got you questioning what else are we could be doing to better correct our bodies, then you are in luck. We have a whole Diploma where we cover much more. Click <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">HERE</a> to learn more.','Are You Up To The Beyond 90 Challenge?','','inherit','closed','closed','','3628-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',3628,'https://biomechanicseducation.com/?p=38793',0,'revision','',0),(38794,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','&nbsp;\n\n<span style=\"font-weight: 400;\">Do you wonder what more you can do to help your clients with recurring injuries?</span>\n\n<span style=\"font-weight: 400;\">Do you have CrossFit clients who want to increase their performance level for their regionals?</span>\n\n<span style=\"font-weight: 400;\">Do you gain back pain clients in your Pilates class and worry if you are giving them the right exercises?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here we are looking at one of the main reasons why our clients suffer discomfort from their lifestyles and fall short of their optimal performance level during exercise. We are also going to explain how you can get immediate results easily with this revolutionary technique which, while relatively new to the fitness industry, has been around for many years. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly, let’s look at the problem:</span>\n\n<span style=\"font-weight: 400;\">Since technology has taken such a dramatic role in our lives we, and our clients have become more sedentary and often find ourselves bent over our iPhones, computer screens and spending many hours driving around all over the place because it’s easier and faster. Then as we understand that movement is good we go and use repetitive exercise movements in an attempt to counterbalance this.</span>\n\n<span style=\"font-weight: 400;\">However, the body has not had time to evolve to this kind of environment and is attempting to compensate with a variety of adaptations. Muscles are reacting to protect joints that have spent much of the day static and are then expected to function to full capacity during our favorite activities. Nerves can become tethered and joints become stiff and we wonder why we and so many of our clients have low-grade non-specific aches and niggles and also what on earth can we do about it?! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But when clients want to compete with peers in our HIIT, insanity, Metafit or Grit classes they are struggling with stiffness in their burpees, tuck jumps and plyometrics. They have functional asymmetries like a rotated pelvis and functional scoliosis that during our Pilates or Core Conditioning classes become ‘glued’ into place potentially enhancing their low back pain. Overactive Pec Minor gives them a protracted shoulder posture which hinders their thoracic spines’ ability to extend during their overhead squat in CrossFit or push presses in BODYpump. Functional leg length discrepancies and quadricep dominance give our runners, cyclists, and triathletes achy knees. </span>\n\n<span style=\"font-weight: 400;\">Maybe you have an overweight client who doesn’t do any of the above but simply wants you to help him lose weight? Well, they will also need the ability to move freely right? </span>\n\n<span style=\"font-weight: 400;\">So let’s look at one of these compensations in more detail:</span>\n\n&nbsp;\n\n<b>SubClinical Muscle Spasm</b>\n\n&nbsp;\n\n<b>What is Muscle Spasm? </b><span style=\"font-weight: 400;\"> </span>\n\n<span style=\"font-weight: 400;\">In practical terms, it is “A muscle that cannot relax” applied from the work by Jiri Dvorak &amp; Ribot-Ciscar</span>\n\n<span style=\"font-weight: 400;\">SubClinical Muscle Spasm is muscle spasm that is not painful.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Work carried out by Ribot-Ciscar and colleagues, abstract below...</span>\n\n&nbsp;\n<ol>\n 	<li><i><span style=\"font-weight: 400;\"> Ribot-Ciscar, M. F. Tardy-Gervet, J. P. Vedel and J. P. Roll </span></i></li>\n</ol>\n<i><span style=\"font-weight: 400;\">Summary “The activities of human muscle spindle primary endings were recorded in the lateral peroneal nerve using the microneurographic method. The aim of the study was to test whether voluntary isometric contraction causes any after-effects, first in the resting discharge of muscle spindle primary endings and secondly in their responses to a slow ramp stretch. To investigate the latter point, the initial angular position of the ankle was passively adjusted until the unit fell silent, in order to introduce a delay in the responses to muscle stretch”</span></i><span style=\"font-weight: 400;\">............they found that</span><i><span style=\"font-weight: 400;\"> “Isometric voluntary contraction led to changes in muscle spindle stretch sensitivity which resulted in a reduction in the stretch threshold and a decrease in the muscle spindle dynamic sensitivity. These data suggest that the after-effects observed may have been triggered by static fusimotor neurones. The results are discussed with reference to the theory according to which the processing by the CNS of muscular proprioceptive messages deals mainly with signals arising from muscles stretched during movement, and it is concluded that the coactivation of any motoneurones during the contraction facilitates the coding of the parameters of forthcoming stretching movements, by the muscle spindles”. </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This physiology has not been shown to be present in what is considered a ‘tight’ muscle. </span>\n\n<span style=\"font-weight: 400;\">No single method will help all ‘types’ of muscle spasm of course, this is one of many ways that can potentially help, including trigger points, soft tissue massage etc too. </span>\n\n<span style=\"font-weight: 400;\">Typically if the muscle has an EMG signal and the client has positive test (and it improves by doing anti spasms) then it’s likely to be in spasm.  If the test result does not change after the anti spasm then the chances are that it does not have an EMG signal and is then simply tight or fibrotic. You can then select your intervention accordingly.</span>\n\n&nbsp;\n\n<b>Why Does It Happen?</b>\n\n<span style=\"font-weight: 400;\">Usually, because it’s trying to protect something (a joint or nerve perhaps) or it’s being loaded from another biomechanical problem remote from that muscle. Often adaptive shortening caused by adapting to inactivity, lack of use through the full range, poor posture or poor technique. </span>\n\n&nbsp;\n\n<b>How can we reduce Muscle Spasm?</b>\n\n<span style=\"font-weight: 400;\">Ribot-Ciscar has established that a muscle relaxes maximally after it has been contracted submaximally and for a prolonged period. He and Jiri Dvorak (FIFA Chief Medical Officer, also senior Editor of British Journal of Sports Medicine) refer to it as Post Contraction Sensory Discharge. </span>\n\n<span style=\"font-weight: 400;\">So, in other words, the anti-spasm exercises allow the muscle to lengthen easier after the ‘contraction’ and consequently improves the function of the muscle. </span>\n\n<span style=\"font-weight: 400;\">This technique, also known as a muscle energy technique (MET), is a great way to provide your clients with a way that they can help themselves so they’re don’t become reliant on their coach, therapist or trainer. It’s something to empower them to contribute to improving their own problems between sessions with you and the responsibility. </span>\n\n&nbsp;\n\n<b>The Anti-Spasm Technique</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider the muscle you would like to release, let’s take pec minor as an example, then look at its attachments - 3rd-5th ribs and coracoid process. Consider its main action - protraction (it will also aid scapular depression but let’s keep it simple for now). Take the muscles attachments away from each other into retraction, making sure you stop before the point of stretching it. Now place resistance onto the shoulder with the opposite hand or using a door frame and then press the shoulder into protraction isometrically with ONLY 20% effort and hold for 20 seconds. Repeat this 4 times and then repeat periodically throughout the day. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The less we change our lifestyles the longer we will need to do this but we can also use strength work to specifically address this issue and reduce the chances of the problem recurring. </span>\n\n<span style=\"font-weight: 400;\">Antagonist strength training is a simple, logical and effective method to do this and this will be discussed in a future Juicemail!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to learn how to manually screen for pec minor muscle spasm?</span>\n\n<span style=\"font-weight: 400;\">Join us for the full <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Biomechanics Coach™ Diploma</a> starting Feb 2018</span>','Frustrated By Recurring Injuries?? Our bodies just can’t evolve quickly enough!  In the meantime what should we do?','','inherit','closed','closed','','3550-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',3550,'https://biomechanicseducation.com/?p=38794',0,'revision','',0),(38795,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<h3 style=\"text-align: center;\"><b>How Would You Feel If We Made The Costs A Bit Easier For You? </b></h3>\n<h6><span style=\"font-weight: 400;\">Wowzers! </span></h6>\n<h6><span style=\"font-weight: 400;\">It\'s almost October already and that means we have just 5 of our amazing workshops remaining. </span></h6>\n<h6><span style=\"font-weight: 400;\">What an incredible year this has been for everyone involved in the Biomechanics Education Academy. </span></h6>\n<h6></h6>\n<h6><span style=\"font-weight: 400;\">The Master Trainers have felt privileged to see so many of our academy learners gain more confidence, improve their communication skills, increase their knowledge and earn more money than ever before. </span></h6>\n<h6></h6>\n<h6><span style=\"font-weight: 400;\">For many, completing the Biomechanics Coach™ Diploma workshop series has brought them far more than they anticipated, just check out some of the feedback below….</span></h6>\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"wp-image-3506 alignnone\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.17.15-1-1024x588.png\" alt=\"screen-shot-2017-09-14-at-11-17-15\" width=\"368\" height=\"211\" /> <img class=\"wp-image-3505 alignnone\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.17.01-1-1024x640.png\" alt=\"screen-shot-2017-09-14-at-11-17-01\" width=\"333\" height=\"208\" /></span>\n\n<span style=\"font-weight: 400;\"> </span>\n\n&nbsp;\n<h6><span style=\"font-weight: 400;\">So, have YOU been thinking about doing our workshops? Or have YOU ever said to yourself </span><i><span style=\"font-weight: 400;\">“That looks fantastic I will do that next year”? …. Well </span></i><span style=\"font-weight: 400;\">then keep reading because we have a special offer especially just for YOU. If you have been following our community for a while you are likely to know all about our fantastic dynamic workshops. We help PT\'s, Yoga instructors Pilates instructors like YOU to better serve your clients.</span></h6>\n<h6><span style=\"font-weight: 400;\">So do any of these questions make YOU say YES..?</span></h6>\n<h6><span style=\"font-weight: 400;\">Do YOU feel frustrated by not knowing why your client moves the way they do?</span></h6>\n<h6><span style=\"font-weight: 400;\">Would YOU like to help MORE of your clients get even better results?</span></h6>\n<h6><span style=\"font-weight: 400;\">Would YOU like to have more confidence when assessing your clients?</span></h6>\n<h6><span style=\"font-weight: 400;\">Do YOU feel like you\'re guessing about the root causes of their movement issues? </span></h6>\n<h6><span style=\"font-weight: 400;\">Embarrassed you have forgotten all, or some, of your A&amp;P?</span></h6>\n<h6><span style=\"font-weight: 400;\">Well, it is time to remove the guesswork, increase your confidence and teach YOU how to never forget your A&amp;P with these evidence-based assessment skills. During our workshops, we will show you how to assess your clients from their nerves, to their muscles, to their joints and know exactly which exercises will help and which could hinder their progress. All of this getting them, and YOU, better results, sounds amazing right?</span></h6>\n<h6> <img class=\"aligncenter wp-image-3507\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.16.10-1-1024x329.png\" alt=\"screen-shot-2017-09-14-at-11-16-10\" width=\"514\" height=\"165\" /></h6>\n<h6><span style=\"font-weight: 400;\">We are super pumped to let you know that we have a special offer just for YOU up until the Dec 31st, 2017 after which we will be increasing our prices for 2018.</span></h6>\n<h6><span style=\"font-weight: 400;\">YOUR special offer is that YOU have the chance to keep the 2017 prices for our 2018 workshops. But you must act fast! All YOU need to do is contact us NOW to tell us you are mega keen, pay a small deposit to secure your place and BOOM you’re in!</span></h6>\n<h6><span style=\"font-weight: 400;\">We don’t want YOU to miss out on these massively popular workshops that literally EVERYONE is talking about!</span></h6>\n<img class=\"wp-image-3511 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.15.58-1-1024x526.png\" alt=\"screen-shot-2017-09-14-at-11-15-58\" width=\"374\" height=\"192\" />\n<h6><span style=\"font-weight: 400;\">So, to grab a quick call with one of the Biomechanics Education team simply <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">[CLICK HERE]</a></span>. Fill out a few details and we will give YOU a call. </span></h6>\n<h6><span style=\"font-weight: 400;\">......Move Freely!</span></h6>\n<h6><span style=\"font-weight: 400;\">Rachel</span></h6>\n<h6><span style=\"font-weight: 400;\">\nP.s. We run workshops all over the UK and have plans to also come to <a href=\"https://www.biomechanicseducation.com/event/special-fast-track-3-day-pelvic-spine-biomechanics-workshop/\" target=\"_blank\" rel=\"noopener\">Scotland in Jan 2018.</a>. The team are always excited to support you and the superb Master Trainers always look forward to welcoming you onto the workshops. <span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">[CLICK HERE]</a></span> to find out more information and to request a call.</span></h6>\n<h6> <img class=\"aligncenter wp-image-3528\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-26-at-06.36.47-1.png\" alt=\"screen-shot-2017-09-26-at-06-36-47\" width=\"530\" height=\"194\" /><img class=\"aligncenter wp-image-3504\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Screen-Shot-2017-09-14-at-11.16.38-1-1024x421.png\" alt=\"screen-shot-2017-09-14-at-11-16-38\" width=\"559\" height=\"230\" /></h6>','I B***** LOVE This System!','','inherit','closed','closed','','3501-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',3501,'https://biomechanicseducation.com/?p=38795',0,'revision','',0),(38796,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<h2>Are You Confused?</h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you been wondering what all this fuss is about Biomechanics Coaching</span><b>™</b><span style=\"font-weight: 400;\">? Does it leave you feeling confused and wondering how on earth it can help you or your clients? Maybe you’re anxious that it is far too complex for you to apply within your PT sessions?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well, let me take you right back to the beginning….</span>\n\n&nbsp;\n<h3>Remedial Gymnastics</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ever heard of this profession?</span>\n\n<span style=\"font-weight: 400;\">No, I hadn’t either until  2006 when I met Martin Haines, a world leader in biomechanics and founder of the Intrinsic Biomechanics Method.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A few years ago I decided to do some research into the origins of my profession and the skills I have taught for many years. The education programmes we deliver at Biomechanics Education all started with a profession called ‘Remedial Gymnastics’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I found interesting was the definition of the role of a Remedial Gymnastics still to this day holds true to what we as Biomechanics Coaches™ do. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Remedial Gymnastics is a special treatment method that involves the means of preventative physical training to accelerate patient’s working capacity and avoid consequences of the pathological process.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another definition I came across based on the understanding of this type of approach was:</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Uses movement as the basic means for the p</span></i><span style=\"font-weight: 400;\">urpose of prevention and correction. Correctly chosen and well-directed movements help faster and more successful restoration of impaired function of certain segments of the organism as a whole</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">AIMS &amp; APPLICATION </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Increase in the scope of movement of the joint</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Increase in muscle power </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Maintenance and improvement in coordination of movement</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Rise in the speed of movement</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Improvement in general and local stamina</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">By certain exercises a series of our objectives are realised: improvement of circulation, after transportation of energetic potential to feed tissues, improvement in metabolic and regeneration processes, reduction of pain, relaxation, psychological balance or such</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Founder of the Intrinsic Biomechanics method that we call Biomechanics Coaching™, Martin Haines, was originally a Remedial Gymnast before it merged with physiotherapy and he went on to become a chartered physiotherapist. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He recognised the value in having BOTH, the Remedial Gymnastics and physiotherapy, methods combined available to individuals since many of the ‘injuries’ or low-grade non-specific problems people were experiencing did not require site-specific treatment but a more general means to overcome discomfort with the use of simple exercises. He recognised that should this type of problem go unaddressed for a period of time it may well result in a more severe condition then requiring the attention of a physiotherapist. Therefore the 2 professionals working alongside each other is a perfect combination for the overall recovery and improvement in the movement of the client.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, Haines took his ideas even further. Having access to isokinetic equipment meant he could trial and test his, and his colleague Nick Barrow’s, ideas. This evolved a tried and tested series of manual assessments to identify where an individual may have a risk of an injury waiting to occur. This systematic ‘functional’ approach to injury prevention is quite unique in that level 3 exercise professionals are perfectly placed to deliver this kind of programming. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So, we as PT’s, Fitness professional’s, Pilates or Yoga teachers are the exercise experts and we are crying out for objectivity in our assessment and exercise prescription process! Which is why the Intrinsic Biomechanics methodology of Biomechanics Coaching™, that has evolved from the Remedial Gymnastics professional since the 1980’s, is having such a massive success in the fitness industry. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The badge of the Society of Remedial Gymnastics has a motto in Latin;</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">SPES SIBI QUISQUE</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Let each man’s hope be in himself </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">or put another way, ‘rely on his own resources’. </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is absolutely the ethos of being a Biomechanics Coach™. To empower individual’s, clients, participants, patients, whatever we define them as, to care for themselves, take ownership of their physical state and consider the impacts of their chosen lifestyle. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are the professionals who prepare people for movement, educate people how to regain functional capacity, inform people where to begin using a tried and tested system, identify risk, teach true function, all with simple logic and exercise guidance.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We form alliances with those who have different skill sets, knowing what WE know really well and accepting we do not have certain skills, therefore, utilising our clinically trained colleagues for occasions where clients have ‘true’ medical injuries.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hopefully, this gives you some idea of what Biomechanics Coaching™ is, where it comes from and the benefits gained from our practice. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So are you a PT who would like to help more people move better?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to become a Biomechanics Coach™?</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-split\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Register your interest in our 2018 workshops HERE &gt;&gt;</span></a>\n\nP.S. Our 2018 schedule is now <a href=\"https://www.biomechanicseducation.com/events/2018-01/\" target=\"_blank\" rel=\"noopener\">LIVE on our website </a>\n\n<span style=\"font-weight: 400;\">Article References:</span>\n\n&nbsp;\n\n<a href=\"http://www.mediclub.az/en/35\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">http://www.mediclub.az/en/35</span></i></a>\n\n&nbsp;\n\n<a href=\"http://hansard.millbanksystems.com/lords/1986/mar/24/professions-supplementary-to-medicine\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">http://hansard.millbanksystems.com/lords/1986/mar/24/professions-supplementary-to-medicine</span></i></a>\n\n&nbsp;\n\n<a href=\"http://archives.wellcome.ac.uk/DServe/dserve.exe?dsqIni=Dserve.ini&amp;dsqApp=Archive&amp;dsqDb=Catalog&amp;dsqCmd=show.tcl&amp;dsqSearch=(RefNo==\'SACSP%2FL\')\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">http://archives.wellcome.ac.uk/DServe/dserve.exe?dsqIni=Dserve.ini&amp;dsqApp=Archive&amp;dsqDb=Catalog&amp;dsqCmd=show.tcl&amp;dsqSearch=(RefNo==\'SACSP%2FL\')</span></i></a>\n\n&nbsp;\n\n<a href=\"http://www.health.nsw.gov.au/careers/conditions/Awards/dt_hsu_remedial_gymnast.pdf\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">http://www.health.nsw.gov.au/careers/conditions/Awards/dt_hsu_remedial_gymnast.pdf</span></i></a>\n\n&nbsp;\n\n<a href=\"http://www.feellife.rs/eng/remedial-gymnastics.html\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">http://www.feellife.rs/eng/remedial-gymnastics.html</span></i></a>\n\n&nbsp;','Are You Confused?','','inherit','closed','closed','','3478-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',3478,'https://biomechanicseducation.com/?p=38796',0,'revision','',0),(38797,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<b>‘Bacon Can Cure Nosebleeds’ </b><span style=\"font-weight: 400;\">was an actual study done by researchers!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you read research papers along with all the details surrounding them it really is quite fascinating and certainly, makes you think. Take this scientific study ‘</span><i><span style=\"font-weight: 400;\">Bacon Can Cure Nosebleeds</span></i><span style=\"font-weight: 400;\">’ as an example…. </span>\n\n<i><span style=\"font-weight: 400;\">According to a study conducted by Ian Humphreys and his team, bacon can quickly and effectively treat a nosebleed by serving as a nasal tampon. For this bizarre method to work, one must plug the bleeding nostril with a piece of </span></i><a href=\"http://www.theguardian.com/education/2012/jan/23/improbable-research-pork-nosebleeds\"><i><span style=\"font-weight: 400;\">cured pork</span></i></a><i><span style=\"font-weight: 400;\">. The meat must be uncooked.</span></i>\n\n<i><span style=\"font-weight: 400;\">At Detroit Medical Center, Humphreys and his colleagues tested their bacon hypothesis on a girl who had Glanzmann thrombasthenia, a rare hereditary disease that causes prolonged bleeding. After sticking a piece of cured pork inside the girl’s bloody nose, the bleeding stopped immediately.</span></i>\n\n<i><span style=\"font-weight: 400;\">The results of this bizarre scientific research were published in the Annals of Otology, Rhinology, and Laryngology. The researchers acknowledged that doctors had used cured pork to treat nosebleeds in the past. However, the practice was discontinued.</span></i>\n\n<i><span style=\"font-weight: 400;\">Humphreys and his colleagues speculate that the high risk of acquiring parasitic and bacterial complications from stuffing one’s nose with cured pork caused the unconventional treatment to be abandoned.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">..OR this one….</span>\n\n&nbsp;\n\n<a href=\"http://www.independent.co.uk/news/science/study-that-said-diet-fizzy-drunks-can-help-weight-loss-was-quietly-funded-by-coca-cola-and-pepsi-a6817686.html\" target=\"_blank\" rel=\"noopener\"><b>A recent study that said Diet Coke can help you lose weight was quietly funded by Coca-Cola</b></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It brings up a lot of questions about the validity of scientific studies, doesn’t it? </span>\n\n<span style=\"font-weight: 400;\">Whether it be the duration, the organisation funding the study, the number of subjects or the even the method of ‘proving or disproving’ something scientifically. </span>\n\n<span style=\"font-weight: 400;\">In fact don’t you hate how much conflicting evidence we see in the fitness industry?</span>\n\n&nbsp;\n\n<b>The Problem</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I find interesting is that if you read research papers you will see how sketchy and conflicting it can be when it comes to the </span><i><span style=\"font-weight: 400;\">evidence</span></i><span style=\"font-weight: 400;\">. However, when a study is done across a long period of time, on a large group of subjects and they are from a variety of levels &amp; backgrounds it offers a far more robust argument for its results. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example, many studies around movement, biomechanics, force, loads and relevant topics we PT’s might be interested in, usually average 20-30 subjects. The subjects are often young athletes at the university that are conducting the study. Also while the ‘start point’ is often ‘</span><i><span style=\"font-weight: 400;\">all subjects are healthy adults</span></i><span style=\"font-weight: 400;\">’ they rarely (if ever) have an assessment to check they are starting with a common ‘biomechanical’ start point.</span>\n\n<span style=\"font-weight: 400;\">Yet you would imagine this would be a vital component for a biomechanics study, don’t you think? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Consider that if you are analysing loads and forces on the limbs of one subject who has a tight sciatic nerve, another subject in the study has a functional leg length discrepancy and another has an overactive pec minor creating a stiff thoracic spine - ALL of whom are ‘</span><i><span style=\"font-weight: 400;\">healthy adults</span></i><span style=\"font-weight: 400;\">’...well how much will these very common </span><i><span style=\"font-weight: 400;\">intrinsic</span></i><span style=\"font-weight: 400;\"> biomechanical compensations give you a different starting load in joints? Or a limitation of the individual’s movement that differs from the other subjects? </span>\n\n&nbsp;\n\n<b>The Evidence</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With this in mind, if you consider a study with the input/output repetition of 4,500 subjects across 20+ years, from GB levels to sedentary, with an intrinsic biomechanical assessment at each point of analysis, the work we did was pretty groundbreaking. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The high volume of data allowed us to establish a system which we have developed into the high standards of content that we now teach exercise professionals like YOU, during our workshops. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our sample size = 4500 subjects.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our study duration = 20+ yrs </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The results we discovered, allowed us to develop a simple system based on how to assess the entire integrated system, from the joints, muscles and nerves. Which allows YOU to screen and prescribe exercises to improve capacity &amp; function in every area of the body and in everyone.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How does this affect YOU the exercise professional?</span>\n\n<span style=\"font-weight: 400;\">Learn a system and always have a methodology to your programme design for beginners, elite, elderly and right through to post rehab, and be confident in the fact that it is backed by a whole stack of evidence in the real world!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To find out more about our programmes developed from this massive research study <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a> now!!</span>\n\n&nbsp;\n\nP.S. Our 2018 schedule is now <a href=\"https://www.biomechanicseducation.com/events/2018-01/\" target=\"_blank\" rel=\"noopener\">LIVE on the website </a>\n\n&nbsp;\n\n<a href=\"https://www.healthambition.com/7-steps-to-replace-diet-soda/\" target=\"_blank\" rel=\"noopener\">7 STEPS HOW TO REPLACE COKE BY HELEN SANDERS OF HEALTH AMBITION </a>','Did You Know Bacon Can Cure Nosebleeds?','','inherit','closed','closed','','3321-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',3321,'https://biomechanicseducation.com/?p=38797',0,'revision','',0),(38798,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','Has Periodisation Disappeared OR Maybe We Just Didn’t Get It!?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT’s are rarely employed anymore and so you find yourself competing with each other. The problem with this is that others are using their clients training sessions to ‘show off’ the funky looking methods they have to offer, trying to look interesting so as to stand out from the crowd, swinging from TRX’s, hollering at them to swat the heavy ropes up and down or loading up the squat rack. Which is kind of understandable if these PT’s feel they have to ‘perform’ in the gym to gain more clients. When actually, it’s your current client\'s long term results that speak for themselves and actually draw more and more people in.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, it is our professional duty as PT’s to ensure that the very basic preparation for movement is in place prior to introducing any of the sexy stuff wouldn\'t you agree!? In fact, not even just professional duty, if you want your clients to stick around for a long time, then you had better start with the foundation\'s first.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sometimes I wonder if periodization has been lost as it appears almost non-existent in the gym these days.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Clients want ‘beasting\' because that’s what they have been conditioning to think makes it a good session. They are often ignorant of the fact that ‘more is NOT better’, ‘harder does NOT mean healthier’ and actually some low grade possibly even, dare I say it, boring unsexy stuff, will, in fact, mean they can train for longer, with less risk of injury and also increase their strength output possibly by 50% over just 10 days! </span><a href=\"https://www.biomechanicseducation.com/want-to-increase-muscle-output-by-50-in-10-days/\" target=\"_blank\" rel=\"noopener\"><b>&gt;&gt;see that blog here</b></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We as trainers are </span><i><span style=\"font-weight: 400;\">educators and teachers </span></i><span style=\"font-weight: 400;\">and we all have a duty of care to our clients to make them aware of the importance of periodization. We don’t even have to call it that, we can call it preparation for movement or giving the body the ability or capacity for movement. While using some sensible conditioning principles we don\'t have to avoid strength work completely either. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Spending almost 30yrs in various gyms across the world, I have listened to and seen many trainers at work with clients, some fantastic ones and some not so great. As they chat to their clients, maybe count their reps, show caring and empathy and offer motivation and support, it can appear to be a relatively easy job. (This might be why the industry is now saturated with PT’s). Yet recently, and over the last few years in particular, the training sessions have become almost ridiculously complex. It has now reached a point where the client is virtually incapable of performing the movements or shows a much bigger increase in risking an injury.</span>\n\n<span style=\"font-weight: 400;\">Push ups can no longer simply be push ups on the floor, on the knees or on the toes. They have to be in a TRX and/or with feet on a stability ball. Core work seems to be no good unless you are rotating on one arm and one leg with a dumbbell in one hand. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Where have the basics gone?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All of this and many of us are not even </span><i><span style=\"font-weight: 400;\">prepared</span></i><span style=\"font-weight: 400;\"> for the basics especially with the lifestyles we now lead!</span>\n\n<span style=\"font-weight: 400;\">Think for a moment how many times or how many places you sat down, hips at 90 degrees, knees flexed, knee and hip muscles held long or short for long periods. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our clients come from sitting behind their desk all day and while I am an advocate of ‘movement is good’ the movement also has to ultimately be safe but also effective and appropriate to the clients biomechanics. In other words, rather than a show for the other people in the gym watching, it should be practical movements because this could compromise the individual in front of you paying for your professional advice. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what do we need to consider to get back to fundamentals of movement and the ability to train our clients appropriately? We need an objective and systemised approach for each client. So we have our ParQ, ask verbal questions and make notes on their forms and then ‘induct’ the client to understand how they move and what they might enjoy doing in the gym. We might use weighing scales, body fat callipers, fitness tests, movement tests but just how objective is this in relation to their intrinsic movement ability?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having an evidence based objective biomechanics assessment that is easy to apply here would mean you </span><span style=\"font-weight: 400;\">know</span><span style=\"font-weight: 400;\"> which exercises might harm them or help them. This then allows you to create a very bespoke thorough plan based on all of the information gathered. It also gives you the ability to monitor progress accurately with the screening forms - Here is an example we use to identify where the client is at risk from our screening system: </span>\n\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-3015\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/sample-case-study-2-741x1024.jpeg\" alt=\"Biomechanics Screening system for personal trainers\" width=\"741\" height=\"1024\" />\n\n<span style=\"font-weight: 400;\">Then depending on the client and the results we can start simply to a). Consider safety &amp; adaptions b). Allow the client to gradually build confidence in the way they move c). Build a rapport with the client feeling successful d). Allow the clients body enough time to adapt to their new training regime.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s look at a simple system of thought for any trainer, coach or exercise professional. The pyramid example:</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-2963\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-06-30-at-08.23.34-1024x764.png\" alt=\"Pyramid For Movement Progression For Personal Trainers\" width=\"1024\" height=\"764\" />\n\n<span style=\"font-weight: 400;\">If we consider this as a simple way of explaining the periodisation process to a client right through to their GOAL at the top it sets up an appropriate level of expectation from the outset. So when they tell you their GOAL you might actually ask them to write it into the top circle thus making it more real to them and empowering them more in committing to the achievement THEY have set. This really passes the responsibility onto them for reaching it, which ultimately it is, as we are simply facilitators, assessors, analysts and advisors.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can then explain simply to our clients why intrinsically they need to prepare for that GOAL, by showing them the layers of periodisation from preparation for movement first so they are level and moving freely. Explaining that while in this phase they might be using machines to simplify with symmetry, thus making movement easier while in the preparation phase. It also limits the core work while the pelvis and spine are encouraged to move better with anti spasm techniques and mobilisations until they are more aligned and level. This also means we are less likely to be ‘gluing’ them into an asymmetry before we even begin.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As you re-assess them you will know from your screens when they are ready for the next phase (Stability &amp; Control) which might include specific and periodised core training, less machine work, more free weights and maybe you can start to introduce some asymmetrical challenges too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Phase three is now the more functional part, now that they move better, have stronger muscles, tendons, ligaments, joints and proprioception has improved, all stacked on top of a strong foundation, we can start to challenge with functional specifics. This piece may even be over weeks too and as a trainer can you now see how you can create logical longevity to their requirement of your services with this approach? Starting simpler is not only safer but also gives your session long term progressive and interesting exercise content. Clients LOVE this!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The time lines on this periodisation is always going to be case by case and client specific but unless we continue to assess, re-assess and monitor progress sensibly with a periodised training system we could, in fact, be setting our clients up for injury albeit without knowing it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if you really care about your clients, educate them, rather than trying to be sexy, funky and exotic with your exercise choice.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Make it smart! </span>\n\n<span style=\"font-weight: 400;\">And</span>\n\n<span style=\"font-weight: 400;\">Remember smarter does NOT mean harder!</span>\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">CLICK HERE <b>If you need some help with periodisation for your clients, or you worry about the order that you are doing things</b></a>','Warning For PT\'s: Don’t Get Caught In The “Sexy” Trap','','inherit','closed','closed','','3239-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',3239,'https://biomechanicseducation.com/?p=38798',0,'revision','',0),(38799,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<h2><span style=\"font-weight: 400;\">The Problem </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The<a href=\"http://bit.ly/2lTqLtc\" target=\"_blank\" rel=\"noopener\"> ‘Weak Core’ </a>Epidemic - everyone is talking about it but what is it exactly?</span>\n\n<span style=\"font-weight: 400;\">You get a new client and they say they want to strengthen their core. Maybe they have a sore lower back or have recently been to a therapist who suggested they need strengthen their core.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sound familiar?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If something is ‘weak’ you strengthen it, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well not necessarily so let’s start by clearing a few things up….</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">1). Pain or discomfort is not indicative of  being ‘weak’.</span>\n\n<span style=\"font-weight: 400;\">2). An apparent ‘weakness’ can be caused by several things, many of which do NOT, initially at least, require ‘strength’ work. In fact strength work could actually compound issues in some cases.</span>\n\n<span style=\"font-weight: 400;\">3). A ‘weak’ core is being used as a blanket term for a variety of problems.</span>\n\n<span style=\"font-weight: 400;\">4). If you can walk around and hold your body upright then chances are your core ain’t simply in need of strengthening!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The big question is WHY are is your core ‘weak’???</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3229\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-29-at-09.45.59.png\" alt=\"screen-shot-2017-08-29-at-09-45-59\" width=\"353\" height=\"235\" />\n<h2></h2>\n<h2><span style=\"font-weight: 400;\">The Solution </span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is the kind of question we really need to start asking ourselves along with;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What exactly does the term ‘weak’ really mean in relation to the core?</span>\n\n<span style=\"font-weight: 400;\">Why are people being told they have a ‘weak’ core if this isn\'t the case?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly let’s attempt to define the term ‘weak’.....</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">WEAK</span></i><span style=\"font-weight: 400;\">; Oxford Dictionary’s Definition;</span>\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">lacking the power to perform physically demanding tasks; having little physical strength or energy.</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok we get that but how does this translate into this discussion? Well let’s consider a few of the common problems that could contribute to an apparent ‘weakness’ in relation to the core. </span>\n\n<span style=\"font-weight: 400;\">Well we have 3 sub systems within our bodies that make up our intrinsic biomechanical setup. </span>\n\n&nbsp;\n<ul>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Myofascial</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Neural </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Skeletal </span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">These 3 sub systems can directly influence each other in a variety of ways through the kinetic chain or integrated system of how our bodies function. Now should any one of them become problematic they can compensate for each other or because of each other. Here are some common adaptations or compensations we might find in someone identified as having a ‘weak’ core;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Subclinical muscle spasm (eg; QL, Psoas)</span>\n\n<span style=\"font-weight: 400;\">Antagonist inhibition (eg; glutes, erectors)</span>\n\n<span style=\"font-weight: 400;\">Joint Stiffness (eg; thoracic spine)</span>\n\n<span style=\"font-weight: 400;\">Nerve Tension (eg; sciatic nerve)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we should be mindful of is identifying the root cause of the ‘weakness’ FIRST, to then address is appropriately rather than assuming it requires core strength work.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3228\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-29-at-09.46.31-1024x421.png\" alt=\"screen-shot-2017-08-29-at-09-46-31\" width=\"513\" height=\"211\" />\n<h2><span style=\"font-weight: 400;\">How We Can Help</span></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Having looked at the evidence that is out there in relation to assessing and understanding dysfunction around the core area we have developed, tried and tested a system that enables you to do just this. To identify WHY the core maybe ‘weak’. This then allows you to know what to do to correct it with a safe and logical series of periodised core exercise we can show you. This creates a prepared trunk with improved capacity. It would then be logical to follow this with some core strength ratio screening and correction based upon McGill’s work to give your client stability and control. Finally some functional stability screens and exercises would give your clients a greater function and performance ability fit for purpose (client relative). Some of this will certainly include strength work BUT not before creating the base of prepared and improved intrinsic function, capacity and then movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you fancy spending a couple of days discussing the evidence and what we can do to better provide safe training and exercise for your clients?</span>\n\n&nbsp;\n\n<a href=\"http://bit.ly/2lTqLtc\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">CLICK HERE TO REGISTER YOUR INTEREST </span></a>\n\n&nbsp;\n\n<a href=\"http://bit.ly/2lTqLtc\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Spine Biomechanics Workshop</span></a>\n\n<span style=\"font-weight: 400;\">Sept 7th/8th London (NLSSM) </span>\n\n<span style=\"font-weight: 400;\">Sept 16th/17h Loughborough University</span>','The ‘Weak Core’ Epidemic!','','inherit','closed','closed','','3227-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',3227,'https://biomechanicseducation.com/?p=38799',0,'revision','',0),(38800,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<span style=\"font-weight: 400;\">Do you wish you could see what we REALLY look like on the inside?</span>\n\n<span style=\"font-weight: 400;\">Are you fascinated by anatomy?</span>\n\n<span style=\"font-weight: 400;\">Do you wonder why people move the way they do?</span>\n\n<span style=\"font-weight: 400;\">Would you like an anatomy experience like no other?</span>\n\n<span style=\"font-weight: 400;\">Do you want an opportunity to ask the experts about REAL A&amp;P?</span>\n\n<span style=\"font-weight: 400;\">Would you like to see just how different we all are on the inside too?</span>\n\n<span style=\"font-weight: 400;\">If you answered yes to any of the above then this blog is definitely for you…..now bare with me while I set the scene…</span>\n\n<span style=\"font-weight: 400;\">Have you ever met someone in one of the most unlikely circumstances and they have turned out to be someone much more valuable than you might have imagined?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the things I was trained for in my very first job as a silver service waitress at the tender age of 14yrs was..</span>\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Treat everyone you meet like they could change your life for the better</span></i><span style=\"font-weight: 400;\">”. </span>\n\n<span style=\"font-weight: 400;\">This attitude has stood me in good stead over the years and so I want to share with you an unlikely meeting that has resulted in an incredible, and exclusive, opportunity I am now able to offer to YOU and all of our academy learners. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you want to hear about it?</span>\n\n<span style=\"font-weight: 400;\">Thought you might ;)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Read on..</span>\n\n&nbsp;\n\n<b>It All Started In A Sauna..</b>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3206\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.57.23-1024x413.png\" alt=\"screen-shot-2017-08-21-at-14-57-23\" width=\"570\" height=\"230\" />\n\n<span style=\"font-weight: 400;\">Yup a sauna! </span>\n\n<span style=\"font-weight: 400;\">At one of my local gyms after a hard training session I had taken myself down to the quiet spa area. Finding the quietest sauna of the five there I settled into the opposite corner from a gentleman already in there. We exchanged </span><i><span style=\"font-weight: 400;\">‘hello’s</span></i><span style=\"font-weight: 400;\">’. He then asked about my training in a soft german accent and so we got chatting. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It turns out he’s a professor at <a href=\"http://bit.ly/2vXvlci\" target=\"_blank\" rel=\"noopener\">Nottingham Medical School, Queen’s Medical Centre.</a> Dr Michael Rittig actually teaches medical students in the </span><span style=\"font-weight: 400;\">Anatomy Teaching Suite. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">WOWZERS!</span></i><span style=\"font-weight: 400;\">” I exclaimed to him “</span><i><span style=\"font-weight: 400;\">How I would LOVE to be able to take my learners into a cadaver lab!”. </span></i>\n\n<span style=\"font-weight: 400;\">Having experienced about 3 ‘cadaver days’ myself at Keele Medical labs several years ago I had known then it was a privilege.</span>\n\n&nbsp;\n\n<b>Guess What He Said…..?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Well I am confident I can arrange that for you</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My jaw literally hit the floor. I knew how difficult this could have been to arrange as an ‘outsider’ without ‘clinical’ qualifications. </span>\n\n<span style=\"font-weight: 400;\">For just a moment I felt slightly weird sitting there sweating in my swim wear, jaw on the floor, wishing I had a pen and paper to take his number…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The opportunity was far too exciting to feel weird for long!</span>\n\n<span style=\"font-weight: 400;\">He promised to leave his email address at reception on his way out.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As I changed, very quickly, I wondered if he would actually leave his email or even if he would remember! Feeling so excited for my learners I made my way back to the car and home imagining their faces when I sent out the email saying we have a <a href=\"http://bit.ly/2vXvlci\" target=\"_blank\" rel=\"noopener\">cadaver experience </a>on the schedule.</span>\n\n<span style=\"font-weight: 400;\">During my lessons I had been telling them about my experience and how it had boosted my own confidence in anatomy due to the complexity of it all. It had reassured me not to feel I had to know everything. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However, yes you guessed it, I had forgotten to ask for his email as I left </span>\n\n<span style=\"font-weight: 400;\">DOH!</span>\n\n<span style=\"font-weight: 400;\">I rang reception immediately and they eventually found it but couldn\'t read his writing. So I typed out an email and wrote every version of the spelling I could imagine it might be.</span>\n\n&nbsp;\n\n<b>Then I Finally Got My Reply!!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WHOOP WHOOP!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So as I started to schedule potential dates we put out a ‘</span><i><span style=\"font-weight: 400;\">who’s interested?</span></i><span style=\"font-weight: 400;\">’ email to create a waiting list.</span>\n\n<span style=\"font-weight: 400;\">Within 4hrs we had 27 names, after 24 hrs we had 46! We had 2 organisations contact us one with 65 people the other with 103!</span>\n\n&nbsp;\n\n<a href=\"http://bit.ly/2vXvlci\" target=\"_blank\" rel=\"noopener\"><b>The First Biomechanics Education Cadaver Experience</b></a>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3207\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.58.44.png\" alt=\"screen-shot-2017-08-21-at-14-58-44\" width=\"172\" height=\"244\" />\n\n&nbsp;\n\nBiomechanics Education Ltd’s first <a href=\"http://bit.ly/2vXvlci\" target=\"_blank\" rel=\"noopener\">Cadaver Experience</a> was on a Monday…\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Some learners felt trepidation at this first experience and ALL of them confirmed afterwards they did feel freaked out after all once inside. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As we donned our white lab coats and latex gloves, Dr Mike and Dr Rana were both poised ready, one at the upper limb station and the other at the lower limb station.</span>\n\n<span style=\"font-weight: 400;\">We split into 2 groups and listened intently for around 2 hrs before we took a break for lunch.</span>\n\n<span style=\"font-weight: 400;\">We then continued until around 3pm and moved to different stations to discuss and explore the foot, spine, pelvis and shoulder.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sadly no photos are permitted because I would have loved to show you the looks of awe on the learners faces, as they held various body parts, peeled back different layers of dissection while studying these amazing specimens. It was just fantastic!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3208\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-15.02.45.png\" alt=\"screen-shot-2017-08-21-at-15-02-45\" width=\"462\" height=\"247\" />\n\n<span style=\"font-weight: 400;\">Would YOU like to experience real anatomy?</span>\n\n<span style=\"font-weight: 400;\">YES? <a href=\"http://bit.ly/2vXvlci\" target=\"_blank\" rel=\"noopener\">CLICK HERE TO REGISTER</a></span>\n\n&nbsp;\n\n<b>Just check out the feedback…..</b>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3201\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.45.38-1024x772.png\" alt=\"screen-shot-2017-08-21-at-14-45-38\" width=\"528\" height=\"398\" />\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3203\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.45.13-942x1024.png\" alt=\"screen-shot-2017-08-21-at-14-45-13\" width=\"514\" height=\"559\" />\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3202\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.45.28-769x1024.png\" alt=\"screen-shot-2017-08-21-at-14-45-28\" width=\"511\" height=\"680\" />\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3200\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-21-at-14.45.45-749x1024.png\" alt=\"screen-shot-2017-08-21-at-14-45-45\" width=\"495\" height=\"677\" />','THE Cadaver Experience','','inherit','closed','closed','','3198-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',3198,'https://biomechanicseducation.com/?p=38800',0,'revision','',0),(38801,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<h3>The Problem Facing Our Learners Today</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you pass your A&amp;P and promptly forget all those muscle attachments?</span>\n\n<span style=\"font-weight: 400;\">Does the thought of attending a course raise your anxiety about being asked any anatomy questions in front of your peers?</span>\n\n<span style=\"font-weight: 400;\">Do you look at your client moving and wish you could remember your A&amp;P to work out which muscle isn’t doing its job?</span>\n\n<span style=\"font-weight: 400;\">Do you feel ashamed at how much of your anatomy training you can’t remember?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is one of the most common things that most of our learners share with us confidentially, prior to attending our workshops. Our workshops are designed to INCREASE knowledge and deepen understanding, but they are absolutely perfect and specifically designed for L2 fitness instructors or L3 PT’s, sports masseurs and coaches (depending upon which workshop/s) who want to increase their confidence and skills combined.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also as an education provider we take our role very seriously in never ever setting anyone up to fail…. Yet so many of you still actually FEAR not knowing enough to attend. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now the whole point of attending a course or workshop is to discuss, explore and learn things you didn’t know before, right? So they are SUPPOSED to be somewhat uncomfortable. We should expect a new level of thinking, for our paradigm to potentially shift and to potentially be taken through the Kubler-Ross curve of emotions. Shock, denial, fear and eventually acceptance.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Recently we had messages like…. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Very scared about tomorrow. I know nothing and am a slow learner! And getting old.............”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Oh dear god my anxiety levels have just  shot through the roof when I skimmed this email...Hopefully I shall calm down by Saturday lol”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Upon receiving these kinds of emails, we obviously contact the learners to reassure them that they are more than qualified to attend the workshops, as it is compulsory they provide evidence of the pre-requisite requirements.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We pride ourselves on the huge level of support we offer, taking it very seriously by providing a wide range of resources for our learners to access;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Screening forms</span>\n\n<span style=\"font-weight: 400;\">Webinars</span>\n\n<span style=\"font-weight: 400;\">Mentoring</span>\n\n<span style=\"font-weight: 400;\">Skype</span>\n\n<span style=\"font-weight: 400;\">Texts</span>\n\n<span style=\"font-weight: 400;\">Calls</span>\n\n<span style=\"font-weight: 400;\">Emails</span>\n\n<span style=\"font-weight: 400;\">Diversely skilled Master Trainer’s</span>\n\n<span style=\"font-weight: 400;\">Books</span>\n\n<span style=\"font-weight: 400;\">Videos - YouTube</span>\n\n<span style=\"font-weight: 400;\">Photos</span>\n\n<span style=\"font-weight: 400;\">Forums</span>\n\n<span style=\"font-weight: 400;\">Free Workshops</span>\n\n<span style=\"font-weight: 400;\">Find a Biomechanics Coach map</span>\n\n<span style=\"font-weight: 400;\">Events</span>\n\n<span style=\"font-weight: 400;\">Newsletters</span>\n\n<span style=\"font-weight: 400;\">Blogs</span>\n\n<span style=\"font-weight: 400;\">Articles</span>\n\n<span style=\"font-weight: 400;\">Website</span>\n\n&nbsp;\n<h3>The Solution</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I am fully aware that the industry is full of egos which includes presenters, teachers, tutors and mentors. There are gurus out there who seem to take pleasure in telling people what they know, rather than actually demonstrating a desire to create supportive educational environments, that not only allow individual growth but also contribute to improving the entire industry. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A true educator will admit when they don’t know the answer to a question. They will facilitate rather than simply lecture. They will encourage and provoke thought rather than simply recite information. They will ask questions rather than state facts. They will encourage learners to challenge everything rather than just accept what they are told. True educators will wait for the learners questions rather than push the detail too soon. True educators accept they too are continually learning alongside and from their learners. A true educator does not KNOW everything but guides, supports and encourages thinking.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3179\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/IMG_1180-1024x768.jpg\" alt=\"img_1180\" width=\"590\" height=\"442\" />\n<h3>How We Can Help</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">At Biomechanics Education Ltd our mission statement and ethos is ….</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“To Improve Movement Through Education, While Improving Education Through A Movement”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">By creating inclusive education experiences that embrace diverse interprofessional relationships, we embrace small steps towards improvement not just for the individual, but also for the entire industry.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here are examples of feedback after recent workshops…..</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“I have already expressed how great it was to meet you and you certainly surpassed my expectations of how great a tutor you are.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">You made me feel at ease when chatting with you and even when I wasn\'t confident in answering any questions, I wasn\'t made to feel silly or stupid.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">I def would pick you to be lost on a desert island with,  as I would be in total awe of your knowledge and enthusiasm.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Attending on Saturday has brought my excitement back for learning and I definitely want to explore biomechanics further. I for one would love to commit to learning more and would love to have the chance to study the diploma. (I found my old flash cards for muscles) </span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Look forward to hearing from you :-)”</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Hi Rachel</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Thanks for a great course I learnt a lot and it was a great pace! I actually feel confident that I can go away and use those tests not like other courses I have done when I go away overwhelmed and confused. I realise I still have more to learn and practice though.”</span></i>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3188\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/imovefreely-blog-2-300x169.png\" alt=\"imovefreely-blog-2\" width=\"600\" height=\"338\" />\n<p style=\"text-align: center;\"><strong>Would you like to start with a 1 day workshop like the <a href=\"https://www.biomechanicseducation.com/event/imovefreely-instructor-2/\" target=\"_blank\" rel=\"noopener\">iMoveFreely Instructor Workshop Saturday 2nd Sept London?</a> </strong></p>\n<p style=\"text-align: center;\"><strong><a href=\"https://www.biomechanicseducation.com/event/imovefreely-instructor-2/\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a></strong></p>\n&nbsp;\n\n<img class=\"size-full wp-image-3180 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/Screen-Shot-2017-08-12-at-16.23.04.png\" alt=\"screen-shot-2017-08-12-at-16-23-04\" width=\"566\" height=\"312\" />','Do You Fear You Just Don\'t Know Enough?','','inherit','closed','closed','','3178-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',3178,'https://biomechanicseducation.com/?p=38801',0,'revision','',0),(38802,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<span style=\"font-weight: 400;\">Ever had a perfect client?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You know the one who does everything you suggest, enjoys it and gets the results they came for?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">HOORAAYY!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I had one of these perfect clients BUT at the same time, he had the most challenging of circumstances.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We’re going to call this client Simon for this blog. I don’t know why, it just felt right haha.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Simon gave me permission to use his information anonymously to share his story with you all, which I am forever grateful for!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now bear in mind, Simon had to fight to get a consultation with me in the first place, as I don’t usually take on clients in pain like he was. My usual clients are athletes looking for the performance edge. He lives in Brighton, my clinic is in Nottingham and yet even when I tried to point him the direction of a Biomechanics Coach nearer to him, he was not deterred. </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“You helped my wife a few years ago, I want to see you” </span></i><span style=\"font-weight: 400;\"> he said adamantly. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My initial email to him set up all levels of expectation as I explained what I do and don’t do, how I work, what I expect of him and what he should expect while working with me along with what to bring or wear, that would help me assess him easily. It also states very clearly that I do not promise pain relief. </span>\n\n&nbsp;\n<h3>Back Pain &amp; Shoulder Pain</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now the whole point to Simon’s reason for contacting me was shoulder and low back pain. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So after he had read and agreed to my initial email, we spoke over the phone so I could clarify a few things in advance of us booking the face to face sessions. He was happy to discuss his goal and we agreed to address it upon meeting. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We booked in 3 sessions over the course of 2 weeks, to give me a good grasp of his biomechanics, his adherence, how his body responds to the programme or whether there might be a need for the skills of a different professional for best duty of care to Simon.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also unusual to my practice, I actually collected Simon from the train station and it was like we had actually known each other for a long time already, even though we had never met or spoken before that week.</span>\n\n&nbsp;\n<h3><b>The Consultation </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The initial consultation was a couple of hours during which we discussed his daily routine, working hours, home situation, previous injuries, training or sporting activities, sleeping habits, footwear and anything else that might influence his biomechanics.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With a sick wife, a toddler and 9 month old baby, Simon was literally doing everything from going to work all day, cooking dinner and getting up through the night to help with the baby.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It was clear there was no way I could suggest any kind of gym training or really even any banded resistance work. There needed to be a clear plan of things he could do within these very limiting parameters. </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2963\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-06-30-at-08.23.34-1024x764.png\" alt=\"screen-shot-2017-06-30-at-08-23-34\" width=\"310\" height=\"231\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The full assessment I did on Simon included pelvic, spine and shoulder function screens, knee stability screens, foot function screens and I assessed for subclinical muscle spasm, nerve tension and joint immobility. There was a lot of common dysfunction present but nothing that concerned me, other than how we would fit in what was needed to help him function and move better. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We sat down to discuss the results and I reminded him that I couldn’t promise pain relief BUT could guarantee teach him how to improve his own function and movement. So we started to discuss how his pain influenced his daily routine and quality of life. This gave us an opportunity to explore the real reason for his visit. </span>\n\n&nbsp;\n<h3><b>The Real Goal/s</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">He simply wanted to be able to get down onto the floor to play with his daughter and to feed his baby girl in the night, without his arm fatiguing. This is what became the goal but it also became a measurement. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I asked Simon to physically show me how he did these tasks at present. His cumbersome way of bending his back and not his knees to get to the floor was telling. His methods to lift his baby girl from her crib and then to hold her and feed her, also spoke volumes to me about his upper body positioning. I had even noticed the way he sat down and got up out of the chair with a huge forward lean, massively folding at the hip. All putting a lot of pressure and strain on his lower back particularly.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So while all of this was based on my subjective judgements, it gave me some ideas on what more we might be able to do with Simon’s very limited time and equipment. </span>\n\n&nbsp;\n<h3><b>Links Man &amp; Screening Form</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">With my links man and screening form, I explained the screening results to Simon, where he was intrinsically dysfunctional was marked in green and what it might all meant to him. Breaking everything down into what it might mean with regards to his daily routine. Simon was very keen and eager to take on board everything I was suggesting. </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3014\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/sample-case-study-1-738x1024.jpeg\" alt=\"sample-case-study-1\" width=\"306\" height=\"424\" />\n<h3><b>Prescribing Homework</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">His homework was just 2 simple pelvic anti spasm techniques Leg Press &amp; 4 Sign </span><b>&lt;&lt;see the 4 Sign muscle energy technique in this article&gt;&gt;</b><span style=\"font-weight: 400;\"> to practice at least 4 times a day. As we discussed his usual day, I encouraged him to be involved in the decisions around his homework. So he suggested he could do it while sitting at work or at home with his family. I also taught him how to sit down and stand up and how to get down and up from the floor, while putting less pressure on his back. Everything was designed to fit in with HIS lifestyle and to be realistic and achievable, even with his circumstances. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As I explained what this could do IF he did his homework and what the next steps might be, Simon nodded looking completely committed to what I was suggesting. We had already agreed his next visit would be in 2 days and so I dropped him back at the train station with his exercise sheet looking very hopeful.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over the next 48hours I texted him regularly … “</span><i><span style=\"font-weight: 400;\">have you done your homework this morning…</span></i><span style=\"font-weight: 400;\">?”. He would reply…</span><i><span style=\"font-weight: 400;\"> “I have done 3 sets already!</span></i><span style=\"font-weight: 400;\">” WOWZERS it was only 10am this guy was serious. So serious in fact, that he did his anti spasms 12 times a day!! Now please understand while the dosage we recommend is 4 x daily, they can be performed more which is likely to give a quicker, more effective response. Great start! I thought, excited about the re-screen.</span>\n\n&nbsp;\n<h3><b>The Re-Screen </b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Just 2 days later and Simon was back. He said he felt he could move a bit better, but the pain was the same. He had done all of his homework, and more, AND was using his body better in general with the sit/stand techniques and lifting of his daughters. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The re-screen showed an incredible different in ares that weren\'t quite moving so well and looked like this on the Links Man screening form..</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3015\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/sample-case-study-2-741x1024.jpeg\" alt=\"sample-case-study-2\" width=\"298\" height=\"411\" />\n\n<i><span style=\"font-weight: 400;\">“WELL DONE!!” </span></i><span style=\"font-weight: 400;\">I said and while he could see the difference on the 2 links men forms and he was pleased, I knew there was still some convincing to do. We added in some lumber mobility work and removed Leg Press as he felt 4 Sign was the one that made the difference. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Off he went and this time for a week. So I continued to text or call regularly to check on how we getting on and feeling. He was still doing everything as prescribed and felt good but still had pain. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">His 3rd appointment we met after a workshop I had delivered in London and I was REALLY excited to see the results. Simon showed even more improvement and explained how he could now get down easily to play with his daughter and can hold his baby girl all night with much less fatigue. However his pain/discomfort wasn’t really much different.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3016\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/08/sample-case-study-3-746x1024.jpeg\" alt=\"sample-case-study-3\" width=\"301\" height=\"413\" />\n\n<span style=\"font-weight: 400;\">Now I knew Simon trusted me and when I asked him to be patient and persistent I knew he would. This time we integrated thoracic mobility and also some low grade supine core bracing that he could do while lying on the floor with is little girl.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What I also did was teach him some shoulder anti spasms but I asked him not to do them yet, we would talk over skype and I would let him know when he could introduce this technique. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Because of where we had got to and the vast improvement he had achieved, I explained we didn’t need to meet for 4 weeks now. He had his homework and I felt his schedule was so hectic that now we had built our relationship and I knew he did his homework, we could for now work together via phone or skype etc. </span>\n\n&nbsp;\n<h3><b>Pain Relief</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Over the next few weeks he did his homework religiously, committed to generally moving better now that he was more body aware and finally in week number 6 he called. </span>\n\n&nbsp;\n\n<span style=\"color: #ff0000;\"><i><span style=\"font-weight: 400;\">“MY PAIN HAS GONE!”</span></i></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">He was so happy and relieved and to be honest, so was I. He explained that he thought it was when he introduced the shoulder anti spasms. We created an action plan for him moving forward and I advised him that this would probably be a long term maintenance programme now. BUT rather than 4 times daily (or 12 in Simon’s case!) he could reduce the dosage to 2 x daily and see how he got on. </span>\n\n&nbsp;\n<h3><b>Summary</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Here I have listed all the messages this ‘perfect’ client experience showed me;</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Never promise pain relief</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Trust an evidence based system</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">The body is an integrated system</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Empower your client to take control of their own body</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Offer MORE than the session for success</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Never promise pain relief</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Include them in their homework design</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Helping clients move better with less pain doesn’t have to be in a gym</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Explain in detail only what the client cares about in relation to their goal.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Convert their goal if necessary to be a more realistic one</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Offer realistic solutions based on the individual\'s lifestyle</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Never promise pain relief</span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember had I done this, not only would the goal have been a negative one, Simon may not have returned or listened when his pain wasn’t changing. Had it not, I would have referred him to a colleague for some further tests but nothing gave me a red flag.</span>\n\n&nbsp;\n\nThe screening system and exercises I used with Simon were from the Biomechanics Coaching Diploma.\n\n&nbsp;\n<h3>The benefits;</h3>\nThis evidence based system has been tried and tested over 25 years on over 4.5k subjects.\n\n&nbsp;\n\nIt is amazingly easy to perform without any special equipment other than a chair or step.\n\n&nbsp;\n\nYou can assess the results immediately!\n\n&nbsp;\n\nEach screen comes with the relevant iMoveFreely exercise techniques like the ones I prescribed to Simon to improve his movement.\n\n&nbsp;\n\nIf you are like thousand of other PT\'s out there and you face doubt when trying to work out where your clients movement limitations are actually coming from <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a>.\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2759 size-full\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-23-at-06.26.43.png\" alt=\"screen-shot-2017-05-23-at-06-26-43\" width=\"594\" height=\"308\" />\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; color: #ff0000;\"><a style=\"color: #ff0000; text-decoration: underline;\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">I WANT TO FIND OUT MORE!</a></span></p>','[CASE STUDY] How Simon Reduced His Low Back And Shoulder Pain','','inherit','closed','closed','','2972-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2972,'https://biomechanicseducation.com/?p=38802',0,'revision','',0),(38803,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<b>...What Is It?</b>\n\n<b>Why Does Everyone Want It?</b>\n\n<b>Should We Even Do It?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When searching around for definitions of \'core stability\' the internet will come up with many terms like ‘base of support’, ‘central balance’, ‘foundation’ and so on, but I feel it is prudent to define it in a little more detail than that.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Mel Siff (2004), gives a definition for \'segmental stability\' as..\"</span><i><span style=\"font-weight: 400;\">Muscles stabilising or supporting </span></i><b><i>a body segment</i></b><i><span style=\"font-weight: 400;\"> statically or dynamically while other muscles carry out a movement involving other joints</span></i><span style=\"font-weight: 400;\">\".</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Therefore it might be safe to say \'</span><span style=\"font-weight: 400;\">Core Stability’ is</span><span style=\"font-weight: 400;\">:</span>\n\n<span style=\"font-weight: 400;\">\"</span><i><span style=\"font-weight: 400;\">Muscles stabilising or supporting </span></i><b><i>the spine </i></b><i><span style=\"font-weight: 400;\">statically or dynamically while other muscles carry out a movement involving other joints</span></i><span style=\"font-weight: 400;\">”.</span>\n\n&nbsp;\n\n<b>BUT</b>\n\n&nbsp;\n<h3>Why Do Core Stability Training?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-2966\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-10-at-16.21.37.png\" alt=\"screen-shot-2017-07-10-at-16-21-37\" width=\"369\" height=\"259\" /></span>\n\nWhy do so many people feel they need it, or at least feel like they don’t have it, therefore seek out ways to train the core specifically?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For some it is still the idea of having a nice flat washboard stomach that drives them to perform core stability moves, for others it maybe they feel they have \'weaknesses\' around their abdominal, or lower back area and for others, it may well just be habit as part of their daily routine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now while we, as fit pros, are wiser these days to the notion that a flat stomach comes from the kitchen, not core stability training specifically, the media still tell us it is! Then surely it is up to us to educate our clients and participants with the truth, right!? So we get educated and then pass it on to them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The biggest challenge being, as always, the fact that we are all different and therefore require a one to one consultation to really get to the nitty gritty of things.</span>\n\n&nbsp;\n<h3>Is The Core Prepared For Core Stability Training?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In a previous article we did, we let you into a cool, core preparation technique called gliding. If you missed it </span>\n\n&nbsp;\n\n<strong><a href=\"https://www.biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability/\" target=\"_blank\" rel=\"noopener\">CLICK HERE FOR THE WALL GLIDES TECHNIQUE</a></strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For those who feel core stability training is necessary due to a \'weakness\', let us consider this question..</span>\n\n&nbsp;\n<h4><i><span style=\"font-weight: 400;\">What does the term ‘weak core\' actually mean?</span></i></h4>\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my previous training this meant the core required ‘strength’ work as this is the opposite meaning to ‘weak’.</span>\n\n&nbsp;\n\n<strong>However since then I have come to realise there are many definitions of the term ‘weakness’ in relation to the core, like the following examples:</strong>\n\n&nbsp;\n<ul>\n 	<li><span style=\"font-weight: 400;\">Inhibited trunk muscles due to muscle spasm</span></li>\n 	<li><span style=\"font-weight: 400;\">Inhibited trunk joints due to muscle spasm</span></li>\n 	<li><span style=\"font-weight: 400;\">Inhibited trunk joints due to neural tension</span></li>\n 	<li><span style=\"font-weight: 400;\">Inhibited trunk muscles due to neural tension</span></li>\n 	<li><span style=\"font-weight: 400;\">Inhibited trunk muscles due to joint immobility</span></li>\n 	<li><span style=\"font-weight: 400;\">Inhibited trunk muscles due to injury related scar tissue</span></li>\n</ul>\n&nbsp;\n\n<span style=\"font-weight: 400;\">...and I am sure there are other variations of this theme too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If the above is correct then do you think we need to implement ‘core stability’ training to improve core control? Probably not.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Is it likely we would be conditioning an asymmetry or at least a dysfunction? Yes.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So surely the ideal initial exercise prescription would be to </span><i><span style=\"font-weight: 400;\">prepare</span></i><span style=\"font-weight: 400;\"> the core; for core stability training.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">First, remove the inhibition with muscle release work, nerve mobilisations, joint mobility work and/or manual therapy? In other words a core stability  ‘preparation’ exercise programme.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once this is in place THEN progressive core stability training it is likely to be far more effective following neuromuscular periodised training methods like those we deliver in Step 1 of our Core Training Pyramid in the Spine Biomechanics Workshop.</span>\n\n&nbsp;\n<h3>The 3 Step Pyramid Approach</h3>\n&nbsp;\n\n<img class=\"aligncenter wp-image-2963\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-06-30-at-08.23.34-1024x764.png\" alt=\"screen-shot-2017-06-30-at-08-23-34\" width=\"380\" height=\"284\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once the preparation work is in place we follow this with the progressive neuromuscular core training using firstly static, then more dynamic, core training methods.</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-2962\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-03-at-10.01.47-1024x236.png\" alt=\"screen-shot-2017-07-03-at-10-01-47\" width=\"1024\" height=\"236\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once low level neuromuscular ‘core stability’ skills are achieved, it is probably wise to perform some really simple assessments and exercises to correct and regain the ‘Core Strength Ratios’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><span style=\"text-decoration: underline;\"><strong>Step 2</strong></span> is based on</span><b> McGill’s (2003)</b><span style=\"font-weight: 400;\"> work. He discusses that our asymmetrical lifestyles create these imbalances of strength around the trunk.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><span style=\"text-decoration: underline;\"><strong>Finally, Step 3</strong></span> is what we call ‘Functional Stability’ in which we show you how to assess core control during more gross compound movements. Aberrant Gross Lumbar screen, spinal hinges during kneeling and standing squats and cross pelvic syndromes are all screens we show our learners during the Spine Biomechanics workshop. </span>\n\n&nbsp;\n<h3>The REAL Question</h3>\n&nbsp;\n\nHowever this then begs the question that is often discussed;\n\n&nbsp;\n\n<strong>Is performing squats, deadlifts, pushups, sporting activity or likewise, all our core needs!?</strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well many would like to think so, however if we continue to choose a life in front of a screen or with 90 degrees of hip flexion maintained for long periods of time, pushing the pelvis into a posterior tilt and the spine into lumbar flexion; there is a good chance we will need to constantly monitor or core’s capacity. This would then enable us as PT’s to decide which exercises is right, for that client, at that time, due to their intrinsic biomechanics rather than utilising generic core stability training exercises for all clients. </span>\n\n<span style=\"font-weight: 400;\">  </span>\n\n<span style=\"font-weight: 400;\">I mean, wouldn\'t you like to KNOW which exercise is “good” and which is “bad” for your client?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let us keep in mind that everything you do uses your ‘core’! So (once prepared) maybe designing a training programme that considers the whole body, would mean you don’t actually need to spend </span><i><span style=\"font-weight: 400;\">additional</span></i><span style=\"font-weight: 400;\"> time training the core at the end of a class or training session, because the whole session was functionally training our core throughout!?</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2786\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/SPINE-Biomechanics-blog-300x150.png\" alt=\"spine-biomechanics-blog\" width=\"500\" height=\"250\" />\n\n<span style=\"font-weight: 400;\">So if you find any of this interesting you will find the core training pyramid, along with all of these screens and exercises and more in our 2 day <strong><a href=\"https://biomechanicseducation.clickfunnels.com/spine-biomechanics-workshop\" target=\"_blank\" rel=\"noopener\">Spine Biomechanics Workshop, just click here to find out more.</a></strong></span>\n\n&nbsp;\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff0000;\">The <a style=\"color: #ff0000;\" href=\"https://biomechanicseducation.clickfunnels.com/spine-biomechanics-workshop\" target=\"_blank\" rel=\"noopener\">Spine Biomechanics Workshop</a> is a stand alone workshop, but it does also count as 1/5th towards a <a style=\"color: #ff0000;\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Diploma in Biomechanics Coaching. Click here to find out more about the diploma.</a></span></strong></p>','Could The Core Stability Training Your Prescribing Your Clients, Actually Be Damaging Them?','','inherit','closed','closed','','2959-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2959,'https://biomechanicseducation.com/?p=38803',0,'revision','',0),(38804,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','Todays blog was inspired by a Facebook post ….\n\n&nbsp;\n\n<img class=\"wp-image-3004 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.14.53.png\" alt=\"screen-shot-2017-07-12-at-15-14-53\" width=\"247\" height=\"351\" /><img class=\"wp-image-3003 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.15.42-654x1024.png\" alt=\"screen-shot-2017-07-12-at-15-15-42\" width=\"228\" height=\"357\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Firstly I would like to explain the difference between extrinsic and intrinsic biomechanics. It can be confusing to analyse your clients movement if you are unaware of the difference, so let’s have a lookere..</span>\n\n&nbsp;\n<h2><i><span style=\"font-weight: 400;\">Extrinsic Biomechanics</span></i></h2>\n<i><span style=\"font-weight: 400;\">This can be a very complex analysis of the performance of movements using high level and</span></i> <i><span style=\"font-weight: 400;\">expensive machinery like isokinetics and kinematics to help us understand forces, loads and levers. In a practical sense this also includes</span></i> <i><span style=\"font-weight: 400;\">what an exercise professional sees when they look at their client move and then correct it with interventions such as verbal and visual cues.</span></i>\n\n&nbsp;\n<h2><i><span style=\"font-weight: 400;\">Intrinsic Biomechanics</span></i></h2>\n<i><span style=\"font-weight: 400;\">This is the analysis of what is happening inside the body which</span></i> <i><span style=\"font-weight: 400;\">creates the extrinsic movements. An understanding of the internal neuro-musculoskeletal system and how this integrated system is the basis for what we see through the extrinsic analysis.</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It was clear from the Facebook comment that I had not clarified the difference for those reading it and so I realised that this might be something you and other fitness professionals struggle with too. </span>\n\n&nbsp;\n<h2><b>Have You Ever Coached A Client &amp; Wondered WHY They Aren’t Symmetrical? </b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">You can tell something isn’t level, because their knees aren\'t the same height or one shoulder is a tiny further forwards than that other. Postural assessment kinda stuff.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yet they may have pretty good movement ability, they may have no pain or injuries but your thinking ….</span><i><span style=\"font-weight: 400;\">do I try to correct that? </span></i><span style=\"font-weight: 400;\">then</span><i><span style=\"font-weight: 400;\"> …if so, how and from where??</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yeah, me too!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-3005\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.37.03.png\" alt=\"screen-shot-2017-07-12-at-15-37-03\" width=\"268\" height=\"362\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Something I have found a challenge, having spent over 25yrs in the industry of ‘coaching movement’, is finding the balance between trying to change the lines of symmetry with visual and verbal cues and simply letting the client MOVE the way their body needs to because of how they are stacked up on the inside. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The overhead squat position above is the most comfortable and stable position for me. I know that whenever I have tried to do to become more extrinsically symmetrical, it has felt really awkward, slightly uncomfortable and not at all stable; so I don\'t worry too much about trying to force a position that I know just feels wrong, even if it </span><i><span style=\"font-weight: 400;\">looks</span></i><span style=\"font-weight: 400;\"> better.</span>\n\n&nbsp;\n<h2><b>What Is The Point?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">It was a friend of mine that challenged me on my statement “</span><i><span style=\"font-weight: 400;\">If I perfect my lines, I’d likely injure myself”. </span></i><span style=\"font-weight: 400;\">Now I LOVE to be challenged and she had every right to challenge me and as her point was important. As it turns out, we actually were agreeing on MY point BUT I hadn’t made clear what I was trying to highlight. What she was pointing out was; for those out there who read posts like mine, it could have been interpreted wrongly. She was absolutely right.</span>\n\n&nbsp;\n<h2><b>Out Of Date Education?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a professional dancer symmetrical arm lines were literally everything on stage in my dance troupe. Then in my fitness industry qualifications I was taught to correct lines of movement so joints were stacked, knees in line etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if you had similar training then you will recognise it was really about coaching the </span><i><span style=\"font-weight: 400;\">extrinsic </span></i><span style=\"font-weight: 400;\">movement you can see. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">An example is when you ask your client to squat and their knee drops inwards, you might verbally and/or visually coach them to keep the knee ‘in line’ with the midfoot for example…right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">…and in some cases that would be correct BUT consider this…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What if your client has been sitting at their desk all day and comes to your session with a ‘functional’ twist at their pelvis? Something neither of you are aware of. This can be caused by their ‘intrinsic biomechanics’ adapting to that sedentary static desk posture, with muscles potentially going into subclinical spasm (a constant contraction). This can in turn limit the movement at the joints these muscles cross, thus creating the ‘impression’ of a longer limb as one side of the pelvis is ‘stuck’ rotated forward and down. This can result in a </span><i><span style=\"font-weight: 400;\">deliberate</span></i><span style=\"font-weight: 400;\"> compensation by the body (a true master of compensation by the way) of requiring the knee to buckle inwards to allow the body to descend into a squat without hurting the lower back; for example.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If this were the case do you think trying to encourage your client to get their knees ‘</span><i><span style=\"font-weight: 400;\">in line’</span></i><span style=\"font-weight: 400;\"> would be the best course of action?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">… Well probably not.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So how on earth are we supposed to KNOW what is simply poor technique and requires verbal or visual coaching and what is in fact a result of the way their intrinsic biomechanics are stacked up??</span>\n\n&nbsp;\n<h2><b>Good Question eh!</b></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-3006\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-07-12-at-15.40.22.png\" alt=\"screen-shot-2017-07-12-at-15-40-22\" width=\"326\" height=\"216\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well ideally we have screening or assessment skills to identify what isn\'t working properly BEFORE we train their movement/s. This then guides us on which exercises are good for them on that day and which might create a problem.  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Note: Doing a movement on dysfunction won’t immediately ‘break’ your client BUT if undetected, overtime if they repeat movements on dysfunctional areas (sometimes with loads too) they could be raising the risk. </span>\n\n&nbsp;\n<h2><b>What Can We Do?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we really should be doing is educating clients on how to move more freely, by improving and </span><i><span style=\"font-weight: 400;\">preparing</span></i><span style=\"font-weight: 400;\"> their intrinsic biomechanical set up first. Then train or exercise upon a neuro-musculoskeletal system that has its capacity back which reduces risk and optimises performance for their daily task/s or chosen sport or activity.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This could be as simple as performing a range and symmetry test, then introducing an anti spasm or muscle energy technique like 4 sign. Then redo the range and symmetry test and if it has improved you KNOW they need to do that technique BEFORE they train or even warm up.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We all appreciate the body is a complex series of structures and tissues so it can often be quite overwhelming when you are trying to decide where to start and how to proceed.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So let me give you a simple evidence based pyramid system of approach. </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2963\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/Screen-Shot-2017-06-30-at-08.23.34-1024x764.png\" alt=\"screen-shot-2017-06-30-at-08-23-34\" width=\"380\" height=\"283\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">1) Start with preparation and capacity from the inside, considering all structures and tissues of our integrated system. Anti spasms, MET’S, massage, foam rolling, nerve mobilisations, joint mobilisations etc.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">2) Next train stability and control to proprioceptively remind the ‘core’ or trunk what this new position feels like. Remember, core control SHOULD be a reflex NOT something we have to think about. (Note: If someone appears to have a </span><a href=\"https://www.biomechanicseducation.com/do-you-really-have-a-weak-core/\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">weak</span></i></a><span style=\"font-weight: 400;\"> core remember it COULD be they are in fact not stacked up well intrinsically rather than actually ‘weak’.)</span>\n\n&nbsp;\n\n<span style=\"color: #ff0000;\"><em><a style=\"color: #ff0000;\" href=\"https://www.biomechanicseducation.com/do-you-really-have-a-weak-core/\" target=\"_blank\" rel=\"noopener\">Read my post \"Do you really have a weak core?\" here, if you\'re interested in finding out more on this.</a></em></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">3). Finally and only once the previous 2 points have been addressed, we train function and performance of the chosen sport or activity.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">(Matthews &amp; Norris, 2008 &amp; Krabak &amp; Kennedy, 2008)</span>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-3034\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/07/BIOMECHANICS-COACH-2-300x157.png\" width=\"500\" height=\"262\" /></span></a>\n\n<span style=\"font-weight: 400;\">If YOU would like to learn an evidence base system that enables PT’s like YOU to perform a whole series of 42 assessments on your clients, in advance of deciding which exercises to give them ……...weeeeell…... you are reading the right blog because all you need to do is …..</span>\n\n&nbsp;\n<h2 style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><b>CLICK HERE TO FIND OUT MORE</b></a></h2>','Extrinsic Technique V’s Intrinsic Biomechanics','','inherit','closed','closed','','2978-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2978,'https://biomechanicseducation.com/?p=38804',0,'revision','',0),(38805,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<span style=\"font-weight: 400;\">Feel you deserved a weekend lying on the sofa?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well some of you probably do...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...but Stuart McGill suggests for many, particularly those who experience low back pain, this may not be as beneficial as you might hope. In fact... it could be detrimental!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">One of the things you know I feel passionately about is educating and encouraging the world; to move more freely and with less pain. </span>\n\n&nbsp;\n<h2><b>The Evidence</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Professor Stuart McGill (also known as Dr Spine at Waterloo University in Canada) has done literally hundreds of studies of the spine evidencing what he has discovered about the biomechanics of the spine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">His ethos, like ours here at the Biomechanics Education Academy and also neuroscientists, Lorimer Moseley and Dave Butler’s, is not to blanket prescribe or to </span><i><span style=\"font-weight: 400;\">assume,</span></i><span style=\"font-weight: 400;\"> what can be causing an individual\'s back pain or movement problem. In some cases less is more, especially in the scenario of movement repetition and back pain. One example of this might be a factory worker who repeatedly twists or rotates around their spine all day long. The last thing they need to do in an exercise class is twist the spine for reps, don\'t you think?!  </span>\n<img class=\"aligncenter wp-image-2877\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.54.01-1024x485.png\" alt=\"screen-shot-2017-06-29-at-08-54-01\" width=\"391\" height=\"185\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While in other situations, more movement is necessary. One example might be the overweight client who comfort eats and prefers to watch TV all evening, every day.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Much to the annoyance of the learners who enter our academy and ask </span><i><span style=\"font-weight: 400;\">generic</span></i><span style=\"font-weight: 400;\"> client questions during their time in the academy, they more often than not hear us say “</span><i><span style=\"font-weight: 400;\">it depends…</span></i><span style=\"font-weight: 400;\">.”, because we should never generalise what we do with our clients. </span>\n\n&nbsp;\n<h2><b>So This Creates A Problem For PT\'s</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move more?</span>\n\n<span style=\"font-weight: 400;\">Move less?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How on earth do we find the balance when giving advice to our clients?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well remember, when you read an article it will more often than have not been written with a specific reader or case study in mind. The clarity of this depends upon either the skill or mindframe of the writer. </span>\n\n&nbsp;\n<h2><b>Move More</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">When you read \'move more\' articles they are likely to be aimed to those leading a more sedentary lifestyles. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Example One</span><span style=\"font-weight: 400;\">; The individual who doesn\'t exercise AND has a relatively sedentary job.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Example Two</span><span style=\"font-weight: 400;\">; The individual who trains for 1hr a day 6 x per week, then sits behind a desk or on their sofa the rest of it, they’re overall relatively sedentary. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Generally increasing the regularity of moving their body would be advisable in both of these examples</span>\n\n<span style=\"font-weight: 400;\">.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2879\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.57.16-1024x503.png\" alt=\"screen-shot-2017-06-29-at-08-57-16\" width=\"454\" height=\"223\" />\n<h2><b>Move Less</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">These kind of articles are for those who do</span><i><span style=\"font-weight: 400;\"> excessive</span></i><span style=\"font-weight: 400;\"> reps of the same kind of movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Example One</span><span style=\"font-weight: 400;\">; The individual who runs for miles and miles every day, would be going through a lot of reps with impact on the knees. Also a cyclist who rides for miles and miles every day, is also putting a lot of reps on the knee joints. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Example Two;</span><span style=\"font-weight: 400;\"> The individual who plays a \'batting\' or racket sport regularly may experience problems in the arm they are using for that particular sport. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sport is sport and not necessarily the ‘healthiest’ thing for the body\'s structures and tissues but something we choose to do because we enjoy it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-2878\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.57.56-1024x554.png\" alt=\"screen-shot-2017-06-29-at-08-57-56\" width=\"456\" height=\"247\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe your client moves a lot in their job but they don\'t normally do gym type \'exercises\'. Remember that while we are very accustomed to gyms, they have only really been fashionable since the days of Arnie, Gold’s Gym &amp; Muscle Beach. Back then, many people were simply ‘fit’ from their manual labour jobs like working in factories or down mines. </span><span style=\"font-weight: 400;\">Here is a snippet of McGill\'s advice from <a href=\"https://www.theptdc.com/2017/04/back-pain-myths/\" target=\"_blank\" rel=\"noopener\">THIS ARTICLE</a></span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2875\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.46.51-955x1024.png\" alt=\"screen-shot-2017-06-29-at-08-46-51\" width=\"583\" height=\"625\" />\n<h2><strong>SO IN CONCLUSION…...</strong></h2>\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-2786\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/SPINE-Biomechanics-blog-300x150.png\" alt=\"spine-biomechanics-blog\" width=\"500\" height=\"250\" /></span>\n\n<span style=\"font-weight: 400;\">Why not check out our<a href=\"https://biomechanicseducation.clickfunnels.com/spine-biomechanics-workshop\" target=\"_blank\" rel=\"noopener\"> Spine Biomechanics workshop within our diploma</a>? We share with you our Integrated System which is blended with some of the science and evidence based assessments and corrective methods from both McGill’s work and Mosely and Butler’s work. This brilliantly gives you a very extensive series of tools to enhance what you do as a PT.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline; color: #ff0000;\"><strong><a style=\"color: #ff0000; text-decoration: underline;\" href=\"https://biomechanicseducation.clickfunnels.com/spine-biomechanics-workshop\" target=\"_blank\" rel=\"noopener\">CLICK HERE TO REGISTER YOUR INTEREST</a></strong></span></p>','Are Your Client\'s Moving Too Much Or Not Enough?','','inherit','closed','closed','','2874-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2874,'https://biomechanicseducation.com/?p=38805',0,'revision','',0),(38806,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','Have you ever had to have surgery?\n\n<span style=\"font-weight: 400;\">Luckily I haven’t (in fact I decided against ACL surgery).... But it shocks me more and more every day, when I’m around fit, young people who have had to have surgery because of injuries that have occurred from preventable things like nerve tension.</span>\n\n&nbsp;\n<h3><b>Median Nerve Tension?</b></h3>\n<img class=\"aligncenter wp-image-2871\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.07.42-1024x462.png\" alt=\"screen-shot-2017-06-29-at-08-07-42\" width=\"528\" height=\"238\" />\n\n<span style=\"font-weight: 400;\">This is an issue because it can be very uncomfortable, debilitating in some cases, and is most commonly simply a result of our evolving lifestyles. You see nerves don’t like being held in a stretch when they are tethered down somewhere in the body. They also hate fine repetition, like the constant handling of a computer mouse. In this case more likely the median nerve in the arm. Over time these issues can potentially result in more severe problems like Carpel Tunnel Syndrome. Once this diagnosis has been made it is definitely NOT an exercise professional’s remit. However<em> risk reduction</em> definitely is.</span>\n\n&nbsp;\n<h3><b>Hamstring Injuries</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hamstring injuries are also commonly caused by a tight nerve, in this particular case it is more likely to be the sciatic nerve. Nerves also dislike high speed so the muscles often provide a protective spasm during movements, like running for example, in an attempt to limit adding tension to the nerve. However if stretched, or loaded sufficiently, the muscles can spasm enough to cause themselves to tear, or even simply cramp up, which can FEEL like a tear.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If this has happened to you, or your client, you know it really sucks right?</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2870\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.08.25-681x1024.png\" alt=\"screen-shot-2017-06-29-at-08-08-25\" width=\"309\" height=\"464\" />\n<h3><b>Tight Calves</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Calves are also often one area of the body that are neglected. Whether that be training them, or understanding the role they have on the rest of the bodies movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As discussed above when there is nerve tension causing ‘tightness’ in the calves, a whole cascade of problems can occur as a result, if not properly prepared or addressed.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s look at what tight calves can lead to...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">They can cause overpronation in the feet.</span>\n\n<span style=\"font-weight: 400;\">Why? </span>\n\n<span style=\"font-weight: 400;\">This happens because the dorsi-flexion (moving the toes/foot up towards the shin) is not available from the ankle joint, due to the tightness in the calves, so it has to come from the sub talar joint.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This comes as part of the pronation mechanism though and so </span><i><span style=\"font-weight: 400;\">increases</span></i><span style=\"font-weight: 400;\"> the amount of pronation as well.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So overpronation can cause shin related injuries, as well as knee and Achilles problems.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The list can go on..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT there are things WE can to do </span><i><span style=\"font-weight: 400;\">reduce the risk </span></i><span style=\"font-weight: 400;\">of this happening!</span>\n\n&nbsp;\n<h3><b>So What CAN We Do About It?</b></h3>\n&nbsp;\n\n<img class=\"aligncenter wp-image-2869\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-29-at-08.09.23-1024x694.png\" alt=\"screen-shot-2017-06-29-at-08-09-23\" width=\"440\" height=\"298\" />\n\n<span style=\"font-weight: 400;\">As exercise professionals we can prepare the nervous system better and we are perfectly placed to educate our clients on how to improve their intrinsic biomechanics. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now if you’re nervous (s’cuse the pun) about ‘exercising’ your clients nerves, consider this...</span>\n\n<span style=\"font-weight: 400;\">What happens to your nerves when you bend down to put your socks on or perform kicks in martial arts classes for example?</span>\n\n<span style=\"font-weight: 400;\">Yep you guessed it, you’re stretching your nerves, and if kicking in a class, this is also at relatively high speed!</span>\n\n&nbsp;\n<h3><b>Nerve Mobilisations</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">By mobilising the nerve it can release the tension in the muscles and reduce the risk of more sinister complications as previously mentioned.</span>\n\n<span style=\"font-weight: 400;\">Now keeping in mind the ‘visco-elastic’ nature of the nervous system (ie; tight nerves don’t like high speed, fine repetition or being </span><i><span style=\"font-weight: 400;\">held</span></i><span style=\"font-weight: 400;\"> in a stretch), nerves should be mobilised slowly, with control and taken only just to the point, or beginnings, of tension. This can be done for 2 sets of 8 reps to begin and gradually over time up to 3 sets of 15 reps. NO MORE than 2 x daily.</span>\n\n&nbsp;\n\n<iframe src=\"https://www.youtube.com/embed/AUc5Yq0Y7FU\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\n&nbsp;\n\n&nbsp;\n<h3><b>This Technique Also Increased Muscle Output By 50% In 10 Days!</b></h3>\n<h3></h3>\n<h3><b>The Evidence</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Research performed at Liverpool Hope University College demonstrated astonishing results.  One experiment showed that a muscle can increase its force output by 14% after mobilising the sciatic nerve. Another experiment showed that by following the same concept daily for 10 days increased muscle output by over 50%!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Who would like 50% stronger quads?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now remember in most cases we are not even aware we have a problem, but even so you can still achieve these remarkable results. Just imagine what these figures could do for your clients performance in their sport or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you suspect you have clients who have any of the above mentioned problems?</span>\n\n<span style=\"font-weight: 400;\">Would you like to learn how to assess the nerves for tension?</span>\n\n&nbsp;\n<h3><b><i>SIDE NOTE: The Pelvis Can Contribute too...</i></b></h3>\n<i><span style=\"font-weight: 400;\">A rotated pelvis can also go unnoticed for many years until the compensations start to cause problems.  Typically a leg length discrepancy (LLD) can result from a twisted pelvis and the leg must compensate for this.  It\'ll either flatten the foot (pronate it), bend the knee more, or drop the hip more.  Pronation will increase the load on the leg (see \'Tight Calves\' paragraph), bending the knee will increase pronation (see \'Tight Calves\' paragraph), and dropping the hip will increase the spasm in the glutes/piriformis.   These muscles have a close relationship with the sciatic nerve and can create nerve tethering resulting in any of the afore mentioned compensations. </span></i>\n\n<i><span style=\"font-weight: 400;\">A vicious circle if ever there was one!  </span></i>\n\n<i><span style=\"font-weight: 400;\">So by reducing the spasm in the piriformis, in other words preventatively, then we can be helping to reduce all of the above. </span></i>\n\n<i><span style=\"font-weight: 400;\">So great place to start is the brilliant </span></i><a href=\"http://bit.ly/2jrj9NK\" target=\"_blank\" rel=\"noopener\"><b><i>4 Sign Anti Spasm Technique</i></b></a><i><span style=\"font-weight: 400;\">? This improves the function of the piriformis muscle in your hip that can the reduce sciatic nerve tension.</span></i>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">CLICK HERE TO FIND OUT MORE</a>\n\n&nbsp;','Want To Increase Muscle Output By 50% In 10 Days?','','inherit','closed','closed','','2866-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2866,'https://biomechanicseducation.com/?p=38806',0,'revision','',0),(38807,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<span style=\"font-weight: 400;\">The rivalry between these 2 professionals has been apparent for years, often with a ‘them and us’ type of mentality in gym facilities. </span>\n\n&nbsp;\n\n<b>The Rivalry</b>\n\n&nbsp;\n\n<img class=\"wp-image-2858 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.05.55-1024x643.png\" alt=\"screen-shot-2017-06-27-at-19-05-55\" width=\"390\" height=\"245\" />\n\n<span style=\"font-weight: 400;\">Many PT’s do not think it is possible to safely coach a group of different levels at one time AND to music!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT’s get frustrated by new members simply going straight into classes when they have not been coached into good movement by them first.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT’s can also get frustrated by Group Ex Instructors who simply beast their participants ruining their knees and backs.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2860\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.13.59-1024x513.png\" alt=\"screen-shot-2017-06-27-at-19-13-59\" width=\"462\" height=\"232\" />\n\n<span style=\"font-weight: 400;\">Group Ex Instructors often do not really understand why 1:1 PT is popular since it must be SO boring exercising with one person.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group Ex Instructors see PT’s doing group PT and wonder why they don’t simply send them into the classes?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">ALL Group Ex Instructors KNOW the challenges they face teaching exercise to a group of people.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group Ex Instructors get frustrated by... </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">..the newbies who ALWAYS stand at the back?</span>\n\n<span style=\"font-weight: 400;\">..the participants who never tell you about their injury until halfway through the class?</span>\n\n<span style=\"font-weight: 400;\">..the fact everyone is so different you have to be seriously skilled at your verbal cueing to get everyone doing the same thing but within their limits?</span>\n\n<span style=\"font-weight: 400;\">..that you have newbies with advanced in the same class?</span>\n\n<span style=\"font-weight: 400;\">..that your clients ask you impossible questions about their bodies that you really don’t feel are possible to answer when you start your next class in 20 seconds?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now most of you will know group exercise has certainly been a passion of mine for almost 30yrs because I really enjoy the atmosphere of a group. The key principle being that we have a lot of fun while getting fit.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Asking your PT client to break into their favourite dance moves probably isn\'t appropriate in one to one sessions right!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Then there are also the ‘moments’ like when one of the very quiet ‘back row’ girls came up to me at the end of a class with tears in her eyes, put her hand on my arm and said emphatically; </span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“Thank you I really needed to laugh like that after the week I have had”. </span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I have no idea what happened to her that week, and I don’t need to, but that demonstrated how we can even unknowingly be helping others within the group setting without individuals feeling exposed.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT</span>\n\n&nbsp;\n\n<b>Group Exercise Also Drives Us NUTS Too!!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Everyone is different, moves differently, has different body types, different injury history, different lifestyles, are different ages, has different levels of fitness and different characters. Hell we all wake up in different moods some days!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As we look at one person who we feel could squat a bit lower, we worry about saying it out loud as the one who is already almost at full range may try to go further due to hearing the verbal cue for someone else to go lower!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Encouraging one to do a tuck jump while simultaneously saying to others to simply box jump.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It seems the days of beginners, intermediate and advanced classes have gone!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So for those PT’s who might consider group exercise as unsafe or is ruining people, please recognise how we can work TOGETHER for the health of our gym members.</span>\n\n&nbsp;\n\n<b>Let’s Work Together!!</b>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2857\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.04.21-1024x675.png\" alt=\"screen-shot-2017-06-27-at-19-04-21\" width=\"475\" height=\"313\" />\n\n<span style=\"font-weight: 400;\">So with good intention, often I find myself doing ‘clinics’ at the beginning or at the end of my classes to educate them on WHY they might be unable to squat or what a good deadlift should look like, how they can use foam rollers or should see a one to one professional for bespoke exercise prescription.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sometimes I have done handouts and have been known to set them homework or tasks to make them aware of their own physical abilities. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Their movement issues often have nothing to do with </span><i><span style=\"font-weight: 400;\">technique </span></i><span style=\"font-weight: 400;\">because no amount of teaching points, coaching cues or guidance can help them during a group class or even if I try speaking to them individually afterwards. Just this week we had a 4 Sign and foam roller education for 10 minutes before the class. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Out of 22 participants just 3 had used a foam roller and none really understood what it was for! Most knew me and so had done my 4 Sign pelvic anti spasm previously so we all did that prior to starting the class, while I explained how these complementary preparation techniques were not really even a warm up, they were actually </span><i><span style=\"font-weight: 400;\">preparation for the warm up!</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However what I do recognise is that some of these individuals really do need some one-to-one training, to improve the way they move with bespoke exercises. This is where I refer them to the PT within the club. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I am stunned that ALL clubs don’t have this set up as a trained SYSTEM!!</span>\n\n&nbsp;\n\n<b>A Member/Participant Pathway System</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now if both Group Ex instructors AND the PT’s within the club had common skills AND were given a system to follow when someone presented with a particular issue this would solve a lot of this. Group Ex instructors support who they can (the low risk participants) and identify the higher risk ones to refer out the their PT colleagues. </span>\n\n<span style=\"font-weight: 400;\">The PTs learn to assess and correct intrinsic biomechanics and prepare members for the classes while giving them some bespoke training. </span>\n\n&nbsp;\n\n<b>What Group Ex Instructors Can Do</b>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2859\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.13.05.png\" alt=\"screen-shot-2017-06-27-at-19-13-05\" width=\"288\" height=\"344\" />\n\n<span style=\"font-weight: 400;\">OK so I recognise not all group exercise fans/participants are going to buy into some one to one sessions but with a little bit of education on what could be causing their knees to cave in during lunges during our classes can go along way - they trust us!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">More often than not they have just spent 8 hours sitting at a desk after driving to work and then they drive to your class and expect their hips and spine to function normally!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group Ex participants make up a huge % of gym membership, they are super keen to improve the way they look and move and are an avid and trusting audience that come back to see their group fitness instructor week in week out, often multiple times a week.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine how many members we influence up to every week AND while getting paid to market our ideas to them. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group Ex instructors you could approach the PT’s in your gym and ask them if they would like you to refer your participants to them. If they are open to this (they would be daft to turn you down right?!) ask if you could sample a session so you could talk to your people about it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Group Ex instructors could design handouts that help clients beyond your classes and cross link it to the PT’s.</span>\n\n&nbsp;\n\n<b>What PT’s Can Do</b>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2862\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.25.30-1024x685.png\" alt=\"screen-shot-2017-06-27-at-19-25-30\" width=\"348\" height=\"233\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT’s really should start talking to the Group Ex instructors more, building a relationship with these passionate professionals who can directly refer people with good reason and regularly. Maybe offer to train the instructors at a reduced rate or even for free so they can talk about the benefits of your one to one training to their class members.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">PT’s could design a small group PT package or a special arrangement for these participants where they can share the cost with their friend and still enjoy the ‘group’ feel even if it is just 2 or 3 of them for example.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Even as PT’s you might want to consider delivering group exercise as a paid way to advertise yourself to a new market of gym members!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For those clients you have, who can’t afford as many session as you feel they need each week, you could suggest they attend your Group Ex colleagues classes to ensure they are more likely to reach their goal, by increasing their activity levels and keeping them moving.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So I recognise many of you may well be doing some of this already but for those who aren\'t it might be something to seriously consider. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is room for all types of exercise from group to one to one - lets work together for better duty of care of our people, right!?</span>\n\n&nbsp;\n\n<b>A Ready Made System To Connect PT’s &amp; Group Ex Instructors</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have a ready made system that can help initiate the connection between you both...</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">OR</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you already deliver both group AND 1:1 training then either option below...</span>\n\n&nbsp;\n\n<b>Group Ex Instructors = <a href=\"https://www.biomechanicseducation.com/#movefreely\" target=\"_blank\" rel=\"noopener\">iMoveFreely® Instructor workshop</a></b>\n\n<span style=\"font-weight: 400;\">The revolutionary iMoveFreely® Instructor workshop gives you a common language and set of techniques that link straight into 1:1 training with a PT/Biomechanics Coach</span><span style=\"font-weight: 400;\">™</span><span style=\"font-weight: 400;\">. This awesome one day workshop is a great resource for any club wanting to start connecting these 2 worlds and we have 2 dates remaining this year.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To find out more and register your interest, <a href=\"https://www.biomechanicseducation.com/#movefreely\" target=\"_blank\" rel=\"noopener\">click here</a>. </span>\n\n&nbsp;\n\n<b>Personal Trainers = <a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">Biomechanics Coach</a></b><b>™</b><b> Diploma Workshop Series </b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To really stand out from the rest of the team AND to have a common link with all iMoveFreely® Instructors, this evidence based workshop series will really elevate you to another level. Being the resident Biomechanics Coach</span><span style=\"font-weight: 400;\">™</span><span style=\"font-weight: 400;\"> in your facility opens so many referral opportunities.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To find out everything you need to know about the diploma, </span><b><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\">click here</a>.</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You can register your interest and discuss the opportunities there are for you with a member of the team.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Don’t delay, </span><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><b>click here</b></a><span style=\"font-weight: 400;\"> to find out more.</span>','Why Group Exercise Instructors & PT\'s Are Missing A Huge Referral Market!','','inherit','closed','closed','','2855-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2855,'https://biomechanicseducation.com/?p=38807',0,'revision','',0),(38808,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<b>The Problem</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do you ever get anxious about sitting exams?</span>\n\n<span style=\"font-weight: 400;\">Maybe you care so much, your nerves can impede your performance?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well then, you’re pretty much like all the rest of us!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In fact, just like my 11 learners the other weekend at Loughborough University.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I bet on that roasting hot fabulous weekend, some of you took the chance to lie in some grass or go for a bike ride or run, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Not us!</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-2847\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/IMG_0101-1024x1024.jpg\" alt=\"img_0101\" width=\"559\" height=\"559\" />\n\n<span style=\"font-weight: 400;\">Ok I tell a lie, while the fire alarms went off we took advantage of the sunshine and the steps ….</span>\n\n&nbsp;\n\n<iframe src=\"https://www.youtube.com/embed/ZimgNHcDPes\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway, as a tutor and mentor to these wonderful and diverse professionals I </span><i><span style=\"font-weight: 400;\">always</span></i><span style=\"font-weight: 400;\"> feel a huge sense of responsibility; but there are particular moments that I feel it most profoundly. I felt it very strongly for the whole of Sunday!</span>\n\n&nbsp;\n\n<b>What Does That Responsibility Mean Exactly?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Teaching is a position of trust, students/learners can feel vulnerable being asked questions or when they’re given ideas that take their thinking to a different place and maybe deeper level. As teachers we should be trained to recognise and respect this vulnerability, so we can make sure we coach our students to find the answers they need.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It means we have to be honest, genuine and confident in what are delivering, while recognising what we are not delivering when questions arise, to maintain our professional integrity and to encourage a positive learning environment.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This fact is never more apparent than when we are assessing our learners. Assessment creates a particularly vulnerable time for their weaknesses to be exposed; since we always focus on our own weaknesses, rather than our strengths which I think is part of human nature.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">On Sunday I had many “moments of realisation”, as I assessed 11 nervous learners for their Biomechanics Coach Diploma™ practical assessment.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Assessing brilliant, smart, intelligent and open minded people who inspire ME, made ME really emotional too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes my learners were nervous, as they spent an hour demonstrating the practical skills they have learned over several months with me observing and making notes.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Yes I could tell they were nervous because as I watched them I could see a quiver or wobble during the Downing’s sign pelvic function screen; or their fingers shook during the midtarsal joint screen.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But the thing that makes me SO emotional with the impact of responsibility, is that they desperately want my approval and do you know why?</span>\n\n&nbsp;\n\n<iframe src=\"https://www.youtube.com/embed/yQYEBcNSJSg\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These fantastic people are nervously showing;</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How much they care </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How badly they want this </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How much they improved since the mock exam</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How clearly they have practiced </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How safe their clients will be </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How impressed their peers will be </span></li>\n</ol>\n&nbsp;\n\n<span style=\"font-weight: 400;\">And as I sit watching, with my straight face giving nothing away, focussed on the job of maintaining a fair unbiased assessor, I realise (maybe with wet eyes);</span>\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How their journeys are just beginning </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How much I love my job</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How proud I am </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How lucky I feel </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How excited I am about these Biomechanics Coaches™ </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How excited I am for those of you booked onto the Aug intake already </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">How Biomechanics Coaches™ everywhere are making a real difference to the way the nation moves and feels</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">I am living a dream</span></li>\n</ol>\n&nbsp;\n\n&nbsp;\n\n<b>Would You Like An Education Experience?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So for all of you reading this who have been </span><i><span style=\"font-weight: 400;\">thinking</span></i><span style=\"font-weight: 400;\"> about attending our workshop but feel nervous about the level and the intensity of the content, please understand the importance we put on YOU. Here at Biomechanics Education ALL of our learners become a part of a team, a community and a even a revolutionary movement of professionals changing the industry. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We appreciate that you have a busy schedule, a family you would love to see more of and yet a desire to learn more cool skills to help this tricky clients (that are actually becoming the norm these days!)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We understand that maybe finances can be a balancing act with time away from paying clients to learn and also all of those costs that seem to eat away at all you income.</span>\n\n&nbsp;\n\n<b>How We Can Help?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we offer is a solution to all of these problems. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We break things down for you to make learning this complex subject of intrinsic biomechanics, simpler that you can imagine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are super proud to offer a massive amount of support to ALL of our learners and this goes beyond your training days with us in the academy. </span>\n\n&nbsp;\n\n<b><i>Tommy Berrabe says.....</i></b>\n\n<strong><em>You are such an amazingly passionate and inspiring lady I feel so lucky to have picked this course, and even more lucky to have you delivering it. </em></strong>\n\n<strong><em>After spending those 2 days in the class taking in what I can, I actually leave feeling not just more knowledgeable but more enthusiastic about life in general, and I think that\'s all down to you. </em></strong>\n\n<strong><em>I\'m not a very confident person at this time in my life but you put me at ease, you don\'t just rush through it you make time for everyone. You\'re always more than happy to be challenged on anything. </em></strong>\n\n<strong><em>You\'ve got some teaching techniques that just work for everyone, understanding of where people are at, and give an explanation in a way that\'s suited to the individual\'s needs. </em></strong>\n\n<strong><em>It\'s clear to see that you literally love, live and breathe what you do. </em></strong>\n\n<strong><em>How you do all what you do and make time for so many people, your drive and passion is just mind blowing, and I will say again, truly inspiring. </em></strong>\n\n<strong><em>For myself moving forward in life this course is probably the best thing I had ever done, so lucky that I didn\'t miss out on this. Thank you for all you do Rachel </em></strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The workshops are designed for easy attendance across a short space of time with the diploma optionally spread  over between 5-24 months.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also we have put together payment options that are attractive to everyone - we listen and create a plan WITH you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Our ethos is our passion, to work as a team toward a common goal of improving the movement of our nation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We believe YOUR success is OUR success.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So ask yourself this question….</span>\n\n&nbsp;\n\n<b>Are You Living Your Dream Yet?</b>\n\n&nbsp;\n\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">If not JOIN US <span style=\"text-decoration: underline;\"><strong>&lt;&lt;CLICK HERE&gt;&gt;</strong></span></span></a>\n\n&nbsp;\n\n<iframe src=\"https://www.youtube.com/embed/hzryoGqyF3M\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>','Why You Shouldn\'t Let Your Nerves Hold You Back From Living Your Dream','','inherit','closed','closed','','2845-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2845,'https://biomechanicseducation.com/?p=38808',0,'revision','',0),(38809,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<span style=\"font-weight: 400;\">Ever had a question spinning around in your head for ages? A client issue that you just can’t work out?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Me too! I had a couple of things bugging me for a while and so I spent some time reading research papers about leg length discrepancy (LLD), pelvic function, sacro iliac joint (SIJ) pain, symmetry of the pelvis, methods of measuring LLD etc. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now as a Biomechanics Coach™ I found it interesting that so few of the papers I found related simply to function, or how to correct it. Almost all the papers were connected to ‘clinical’ findings or ‘medical’ issues and ‘symptoms’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well why on earth would you do a research study on something that isn\'t already a ‘problem’? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well….actually to </span><i><span style=\"font-weight: 400;\">prevent</span></i><span style=\"font-weight: 400;\"> the problem might be a good reason, right?!</span>\n\n&nbsp;\n<h2><b>The Problem</b></h2>\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-2815\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-18-at-20.24.53.png\" alt=\"screen-shot-2017-06-18-at-20-24-53\" width=\"842\" height=\"608\" />\n\n<span style=\"font-weight: 400;\">So imagine all of your clients for a moment… yep ALL of them, past and present! </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ok now ask yourself how many of them were without any pain, previous injury, moved really well, had full capacity to squat, lunge, pull and push easily? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is my bet that, like mine, most of your clients (maybe all of them for some of you) have something they find is a niggle, a limitation or impedes their movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">When our clients come to us we have some kind of initial consultation where we ask questions to understand how we are going to help our clients to get fit, lose weight, build muscle, move better, avoid symptoms and clinical problems, pathology and pain. Some of us may use postural assessments and range of movement tests too. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">What we really need a series of objective physical screens for each joint and structure of their body, this allows us to monitor their progress and KNOW what actually helps them to move better. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Screen - Exercise - Re-screen</span>\n\n&nbsp;\n<h2><b>Preparation for Movement</b></h2>\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-2814\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-18-at-20.22.27.png\" alt=\"screen-shot-2017-06-18-at-20-22-27\" width=\"526\" height=\"548\" />\n\n<span style=\"font-weight: 400;\">So ask yourself...</span>\n\n<span style=\"font-weight: 400;\">Do you wonder about some of your clients and whether you have done the right thing with them or chosen the right exercises simply because of their physical limitations, eh?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you ever thought a 5 minute treadmill warm up may not be adequate?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Ever wondered if there is something you should do when your client explains they have been told they have a leg length discrepancy?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you ever considered if their back pain related to that leg length discrepancy?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Maybe you thought “</span><i><span style=\"font-weight: 400;\">well everyone has a leg length discrepancy...it’s normal right?</span></i><span style=\"font-weight: 400;\">”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well these are questions I used to ask myself and I really wanted to understand these things better. This is when I really became a </span><i><span style=\"font-weight: 400;\">human movement</span></i><span style=\"font-weight: 400;\"> geek!</span>\n\n&nbsp;\n<h2><b>The Cause/s</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">The key component that can often be missing is a true </span><i><span style=\"font-weight: 400;\">preparation for movement</span></i><span style=\"font-weight: 400;\"> programme which, due to our lifestyles, is vital for long term physical health. The lives we now lead is amongst technology, gadgets, a lot of sitting and equipment that all make our lives ‘easier’, less effort, quicker and in fact, </span><span style=\"font-weight: 400;\">less active than ever.</span><span style=\"font-weight: 400;\"> The body is TRYING to evolve to this sedentary routine but can’t do it quick enough and so we are experiencing all sorts of compensatory problems. </span>\n\n&nbsp;\n<h2><b>Leg Length Discrepancy</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway my project was because I wanted to understand </span><i><span style=\"font-weight: 400;\">the relevance</span></i><span style=\"font-weight: 400;\"> of a leg length discrepancy (LLD), based on as much evidence as possible.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I found papers that discussed pelvic position, structural leg length discrepancy (SLLD), even functional leg length discrepancy (FLLD) and some looked at whether the LLD affected lower back pain (LBP).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My question was - does the evidence tell us that a LLD affects low back health? And is there a difference between SLLD and FLLD and their influence on back health?</span>\n\n&nbsp;\n<h2><b>Structural Leg Length Discrepancy</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">SLLD - or structural leg length discrepancy.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">An example of this is the individual\'s femurs are genetically different in length, therefore creating a structural difference that cannot be changed without surgical intervention. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another example might be someone who has broken a bone and therefore now has a structural difference caused by the trauma.</span>\n\n&nbsp;\n\n&nbsp;\n<h2><b>Functional Leg Length Discrepancy</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">FLLD - or functional leg length discrepancy.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is discussed often in research papers and describes a twisted or rotated pelvis, around the SIJ which creates the appearance of a LLD. Should the dysfunction causing the rotation or twist be removed, the LLD can also disappear. Hooray!</span>\n\n&nbsp;\n<h2><b>How do we know if we have either an SLLD or FLLD?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Good question! In podiatry, it is my understanding that if there is a LLD that is less than around 11mm it is classed as clinically ‘insignificant’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also, in the research, it almost always seems to be assumed there has a to be a clinical significance, if there is a LLD present. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">While in my very limited experience as a Biomechanics Coach™ most LLD’s (and they are more often than not, UNDER 11mm) are FLLD that are NOT clinical and can be addressed/corrected with simple exercises. The presence of a FLLD also seems in many cases to coincide with the degree of low back pain they experience.  </span>\n\n&nbsp;\n<h2><b>Why Does Function Leg Length Discrepancy Coincide With Low Back Pain?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me give you the lowdown about what I found out:</span>\n\n&nbsp;\n\n<b>Pelvis</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is evidence from Rose McDonald\'s work when she was head physio at Crystal palace athletics club, that the hips/pelvis are at least partly responsible for 60% of lower limb injuries from a biomechanical point of view.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also in my 10 years experience of using pelvic muscle anti spasms, particularly on the hip rotators, flexors and extensors, it has has had a huge impact on all of my clients, in particular the appearance of a FLLD.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Their range of movement (ROM) improves, pain is reduced, strength has increased, they report feeling more stable and overall feel they move better. They certainly get better results in the screens I do!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is also mirrored in what all qualified Biomechanics Coaches™ report with their clients. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I am confident many of you reading this now have had success with making clients feel less low back pain. Yet this common issue is rife and still only an add on course for L3 PT’s! How many people do you know who have ever experienced some kind of low back pain? Exactly, our basic training should have compulsory screens and preparation exercises these days since we are intrinsically physically different to how we were when PT education was researched and designed. </span>\n\n&nbsp;\n<h2><b>A Solution</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Better preparation for movement first, BEFORE the warm up even! Yes BEFORE the warm up! A warm up is a warm up, this does not necessarily set the body up to move again and undo those static compensations and adaptations. We need to get moving more freely FIRST - THEN warm up.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A common issue or adaptation like a FLLD can addressed often very simply in less than 5 minutes with an easy to do technique like this one below. Download your FREE muscle energy technique by clicking below.</span>\n\n<b> </b>\n\n<a href=\"http://bit.ly/2jrj9NK\" target=\"_blank\" rel=\"noopener\">FREE Muscle Energy Technique </a>\n\n&nbsp;\n<h2><b>How do you know if they have a FLLD OR SLLD?</b></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">This can be really quite simple - KNOW that their pelvis is fully functional! However if you don’t know how to assess for a functioning pelvis then this might be a challenge SOOOOO you could attend a Pelvic Biomechanics workshop to learn a whole series of pelvic assessments AND a whole series of techniques, including specific strength and conditioning work, to improve your clients pelvic function.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If this would be of interest to you, <a href=\"http://bit.ly/2svUc5o\" target=\"_blank\" rel=\"noopener\">click here</a> to find out more and fill in your name to show your interested in a spot on this fascinating 2-day workshop.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter size-large wp-image-2810\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-19-at-11.13.10-1024x509.png\" alt=\"screen-shot-2017-06-19-at-11-13-10\" width=\"1024\" height=\"509\" />\n</span>\n\n<a href=\"http://bit.ly/2svUc5o\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Click here to find out more about the Pelvic Biomechanic Workshop.</span></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In the meantime please feel free to read away to your heart’s content some really interesting papers listed here ;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">And as always …….keep moving freely!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you have any questions, feedback, want to discuss this topic further or you want to find out about our courses, just pop me an email on: rachel@biomechanicseducation.com, I’d love to hear from my readers :-).</span>\n\n&nbsp;\n\n<b>References;</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Allyn.L e al, 1984, Leg length discrepancy assessment:accuracy &amp; precision of 5 clinical method of evaluation</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Arumugam et al (2012) Effects of eternal pelvic compression o form closure, force closure &amp; neuromotor control of the limbo-pelvic spine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Beattie et al (1990) Validity of derived measurements of leg length differences obtained by use of tape measure </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Calvilla et al, 2000, Anatomy and pathophysiology of the SIJ</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cibulka (2002) Understanding SIJ movement as a guide to the management of a patient with unilateral low back pain</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Connell (2007) A case study report - concept of assessment &amp; treatments of anterior knee pain related to altered spine &amp; pelvic biomechanics </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cooperstein, Lew (2009) The relationship between pelvic torsion &amp; anatomical leg length inequality</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cummings et al (1993) The effects of imposed leg length difference on bone pelvic asymmetry </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Cusi (2009) Paradigm for assessment &amp; treatment of SIJ mechanical dysfunction</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Dillen et al (2008) Hip rotation ROM in people with &amp; without LBP who participate in rotation related sports.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">DonTigny (1985) Function &amp; pathomechanics of the SIJ</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">DonTigny (1989) Anterior dysfunction of the SIJ as major factor in etiology of idiopathic Low Back Pain syndrome</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Duff et al (2000) The reliability &amp; validity of the ‘tape’ &amp; ‘block’ methods for assessing anatomical leg length discrepancy.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Forst et al (2005) The SIJ; Anatomy, physiology &amp; clinical significance </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Fryer (2004) Methods used by members of the Australian osteopathic professional to assess the SIJ</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Fryer (2005) Factors affecting the inter-examiner &amp; inter-examiner reliability for supine medial malleoli asymmetry</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Goode et al (2008) 3 dimensional movements of the SIJ </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Gurney  (2001) Leg Length Discrepancy</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hungerford et al (2003) Evidence altered lumbo-pelvic muscle recruitment in the presence of SIJ pain</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Jacob, Kissling (1994) The mobility of the SIJ’s in healthy volunteers between 20-50yrs</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Kasis et al (2008) External fixator assisted acute shortening wit internal fixation for leg length discrepancy after retool hip replacement </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Kiapour et al (2012) Relationship between limb length discrepancy &amp; load distribution across SIJ </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Krawiec et al (2003) Static innominate asymmetry &amp; leg length discrepancy in asymptomatic collegiate athletes</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">McCaw, Bates (1991) Biomechanical implications of mild leg length discrepancy</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">McGrath (2004) Clinical considerations of SIJ anatomy; A review of function, motion &amp; pain</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Middleton-Duff et al 2000, The reliability and validity of the `Tape\' and `Block\' methods for assessing anatomical leg-length discrepancy, Harcourt Publishers Ltd</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Pel et all (2008) Biomechanical analysis of reducing SIJ shear load by optimisation of pelvic muscle &amp; ligament forces</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Preece et al (2008) Variation in pelvic morphology may prevent the identification of anterior pelvic tilt </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Richardson et al (2001) The relation between the TVA, SIJ mechanics &amp; low back pain</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sabharwal, Kumar (2008) Method of assessing leg length discrepancy </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Santaguida, McGill (1994) The psoas major muscle; a 3 dimensional geometric study</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Sturesson et al (1999) A radiostereometric analysis of movements of the SIJ’s during standing hip flexion</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Suter et al (1999) Decrease in quadricep inhibition after SIJ manipulation in patients with anterior knee pain</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Takasaki et al (2008) The influence is increasing SIJ closure on the hip &amp; lumbar spine extensor muscle firing pattern</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Van Der Wurff et al (2006) A multitest regimen of pain provocation tests as an aim to reduce unnecessary minimally invasive SIJ procedures.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Van Der Wurff et al (2000) Clinical tests of the SIJ </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Vleeming et al, 2003, Stabilisation of the SIJ in vivo: verifications of muscular contribution to force closure of the pelvic</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Vleeming et al (2012) The SIJ: An overview of its anatomy, function &amp; potential clinical implications</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Winderden et al (2003) Stabilization of SIJ in vivo</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Woerman et al (1984) Leg length discrepancy assessment; Accuracy &amp; precision in 5 clinical methods of evaluation</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Woodfield et al (2011) Interexaminer reliability of supine leg checks for discriminating leg length discrepancy</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Wylde et al (2008) Prevalence &amp; functional impact of patient perceived leg length discrepancy after hip replacement</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Would you like to learn how to assess pelvic function?</span>\n\n<a href=\"http://bit.ly/2svUc5o\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">REGISTER YOUR INTEREST HERE</span></a>','Why The Pelvis Should Be The First Place You Look When Assessing Clients','','inherit','closed','closed','','2808-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2808,'https://biomechanicseducation.com/?p=38809',0,'revision','',0),(38810,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<b>Why Don’t They Listen?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you ever feel utterly convinced that you KNOW you could help someone, but they just wouldn’t listen? It is often someone you really care about right? How frustrating is it?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well in the past it has driven me completely nuts with frustration when they did not listen, until eventually it dawned on me that in fact I was the one in the wrong…. ARGH!!....</span><i><span style=\"font-weight: 400;\">Why?</span></i><span style=\"font-weight: 400;\"> I can hear you thinking...</span>\n\n&nbsp;\n<ol>\n 	<li><span style=\"font-weight: 400;\">a) …for thinking I was the one who could make a difference</span></li>\n 	<li><span style=\"font-weight: 400;\">b) ...for trying to impress MY ideas of what was best for someone else without being asked</span></li>\n</ol>\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-2269\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-13-at-11.45.20.png\" alt=\"Screen Shot 2017-03-13 at 11.45.20\" width=\"600\" height=\"394\" />\n\n&nbsp;\n\n<b>Tough Lesson</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This tough lesson made me take a good look at the way I practice and communicate and is now a big part of what we now teach within our academy. It’s the idea that you cannot help someone if they are not receptive to helping themselves; no matter what you say or do!</span>\n\n<span style=\"font-weight: 400;\">Our workshops we discuss the fact that a practitioner shouldn’t offer to </span><i><span style=\"font-weight: 400;\">fix you</span></i><span style=\"font-weight: 400;\">, they should however teach you how to look after your own body and to improve your own biomechanics, with simple exercises and lifestyle advice. Of course within professions like manual therapy there is likely to be some external input BUT for long term success empowering the client is vital.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Without this approach clients aren’t made aware of addressing the very lifestyle issues that have often been the very reason for seeking advice in the first place. Thus meaning the ‘problem’ can often recur!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">In my situation, my friend had not come to me for help, I just </span><i><span style=\"font-weight: 400;\">felt</span></i><span style=\"font-weight: 400;\"> at that time that I could make him feel better… how arrogant of me!</span>\n\n&nbsp;\n\n<b>We Only Want To Help, Right?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is often hard to take this since we are, as exercise professionals and therapists by nature, ‘helpers’ who want to make everyone feel better. However, while I now have a much better system of approach with my clients and also my loved ones, my previous experience of wanting to help my friend, exposed this area for improvement. My reflective journal exposed the true cause of my dilemma.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My efforts to try everything to ‘help’ him when he did not WANT that help, was not in fact helpful at all. It actually made them feel useless, because they felt they were letting me down. Individuals really need to be ready and open or at least willing, to receive information or it gets lost. </span>\n\n&nbsp;\n\n<b>He Proved Me Wrong!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">My friend proved me wrong and that is not his fault, it was MY fault.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We must remind ourselves that as much as we want to help and want to change things for others; we also need to </span><span style=\"font-weight: 400;\">keep in mind</span><span style=\"font-weight: 400;\"> they may not want our help, no matter how well intended. And you shouldn’t take that personally!</span>\n\n&nbsp;\n\n<b>Unwanted Advice is Not Helpful</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Advice is not helpful if it’s not wanted is it!?</span>\n\n<span style=\"font-weight: 400;\">As coaches, we must be mindful of knowing our boundaries as well (as much as our remit) with clients by ensuring we LISTEN and take on board what THEY tell us.</span>\n\n&nbsp;\n\n<b>What Can YOU Do?</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The real skill is in a more subtle approach and being great at asking questions. This way they often TELL YOU what they WANT, giving you more information about what to then SELL to them. This is a basic sales technique and opens any opportunity that </span><i><span style=\"font-weight: 400;\">might</span></i><span style=\"font-weight: 400;\"> be available to you. At the same time, it also makes them feel </span><i><span style=\"font-weight: 400;\">valued</span></i><span style=\"font-weight: 400;\"> by you because you’re interested in them and encouraging them to talk.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Try this next time you want to help someone. </span>\n\n<span style=\"font-weight: 400;\">Try NOT to offer help at all. </span>\n\n<span style=\"font-weight: 400;\">Try just asking lots of questions and really listen to what they tell you. </span>\n\n<span style=\"font-weight: 400;\">Paraphrase back the specific language THEY use. </span>\n\n<span style=\"font-weight: 400;\">Make lots of eye contact, nodding and smiling.</span>\n\n<span style=\"font-weight: 400;\">Wait until THEY ask YOU a question but DON’T offer to help unless they ask!</span>\n\n<span style=\"font-weight: 400;\">See what happens as you practice this method. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Another HUGE benefit is if THEY approach YOU, they are far more likely to comply and do their homework to get results. If you approach them, chances are they won’t be motivated to do their homework and this would make you look bad!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WE shouldn’t try to fix people anyway, but we should </span><b><i>teach them</i></b><span style=\"font-weight: 400;\"> how they can help themselves. This way, they can choose the direction they want to go in, ultimately feeling more successful and therefore more likely to adhere.</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-full wp-image-2759\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-23-at-06.26.43.png\" alt=\"screen-shot-2017-05-23-at-06-26-43\" width=\"594\" height=\"308\" />\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/#coach\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">If you are interested in become a Biomechanics Coach™ and joining our community of like-minded Master Trainers, click here.</span></i></a></p>','This Tough Lesson Could See Your Client Relationships & Success Excel','','inherit','closed','closed','','2780-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2780,'https://biomechanicseducation.com/?p=38810',0,'revision','',0),(38811,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<b>What is the Quadratus Lumborum?</b>\n\n<span style=\"font-weight: 400;\">It is a deep muscle that provides stabilisation and movement of the pelvis and spine.</span>\n\n<span style=\"font-weight: 400;\">In fact we have 2 of them!</span>\n\n&nbsp;\n\n<b>Where are they?</b>\n\n<span style=\"font-weight: 400;\">They are at the back of the spine close to the midline and attach to the 12th rib and the iliac crest. The medial fibres also insert into the transverse processes of the lumbar spine.</span>\n\n&nbsp;\n\n<b>What do they do?</b>\n\n<span style=\"font-weight: 400;\">Primarily, if there is a bilateral contraction of both QL, the spine will extend. However individually they produce lateral flexion of the spine or hip hitching.</span>\n\n&nbsp;\n\n<b>What problem can arise?</b>\n\n<span style=\"font-weight: 400;\">Due to our sedentary lifestyles we are spending more time sitting in some degree of lumbar flexion.</span>\n\n<span style=\"font-weight: 400;\">QL is commonly found to be in a state of subclinical spasm </span><span style=\"font-weight: 400;\">and can cause limitations in movement. </span>\n\n&nbsp;\n\n<b>How does this affect movement?</b>\n\n<span style=\"font-weight: 400;\">If the QL muscle/s are in spasm they can limit the spine’s ability to laterally flex.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example, bending over to pick up shopping bags or even things like turning to reverse in your car, could become much more difficult if your QL is in spasm.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Imagine activities like running, or maybe rock climbing, where you need to hitch your hip/leg up. The QL muscle  contributes to the hip hitching up, but when in subclinical spasm, this function and control of it may be inhibited.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also QL spasm could even create a descending mechanical compensation in the body like a functional leg length discrepancy. The subclinical spasm can cause a hitch of the ilium lifting it up on that side, which in turn could then affect your pelvic function and even the load being transferred down into your knee and foot!</span>\n\n&nbsp;\n\n<b>What can we do?</b>\n\n<span style=\"font-weight: 400;\">When we laterally flex or side bend we should see a nice smooth curve in the spine. So we can test QL by asking our client to sit (to limit movement from the pelvis) and watch their spines movement and shape as the lean from one side, to the other. If you see what a ‘hinge’ in the lumbar area instead of a smooth curve this would indicate QL spasm.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This video shows a few QL tests in action:</span>\n\n&nbsp;\n\n<iframe src=\"https://www.youtube.com/embed/xWlGWanUOPE\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\n&nbsp;\n\n<b>Solution </b>\n\n<span style=\"font-weight: 400;\">A wonderful accessory technique called Wall Glides that acts as an anti spasm on the QL muscle and can be a great way to iron out hinges. It is important to recognise this is not a joint mobilisation exercise but is a muscle energy technique. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This specific movement below is a VERY slow subtle gliding action of the vertebrae which \'proprioceptively desensitises\' the subclinical spasm in QL when done super slowly for reps.</span>\n\n&nbsp;\n\n<img class=\"aligncenter size-large wp-image-2787\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/MG_9964-683x1024.jpg\" alt=\"_mg_9964\" width=\"683\" height=\"1024\" />\n\n&nbsp;\n<ol>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Standing side on to the wall ask your client to measure their foot distance from the wall. Resting the whole upper arm against the wall, fix the ribs to the inside of the arm as if you are holding a newspaper there.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Now bend the elbow to 90 degrees</span><span style=\"font-weight: 400;\"> </span><span style=\"font-weight: 400;\">at the waist, keeping the body straight.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Keeping the ribs </span><b>fixed </b><span style=\"font-weight: 400;\">above the elbow, gently glide the hips underneath the elbow, towards the wall, by just an inch or 2 and return to original position.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Repeat slowly for 8 reps both sides 2 x daily. </span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">If it feels tender reduce the range no matter how small.</span></li>\n 	<li style=\"font-weight: 400;\"><span style=\"font-weight: 400;\">Anyone with any clinical conditions that affect the lower back should consult their Biomechanics Coach&#x2122; first.</span></li>\n</ol>\n&nbsp;\n\n<b>Considerations</b>\n\n<span style=\"font-weight: 400;\">Just as QL spasm can cause descending compensations, as described above, any ascending compensations could result in QL spasm!  </span><span style=\"font-weight: 400;\">The Body is a Master of Compensation &amp; Works As An Integrated System!</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><b>Would you like to learn more?</b></p>\n<p style=\"text-align: center;\">rachel@biomechanicseducation.com</p>','How To Identify If Your Quadratus Lumborum Muscle Is In Spasm','','inherit','closed','closed','','2785-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2785,'https://biomechanicseducation.com/?p=38811',0,'revision','',0),(38812,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<span style=\"font-weight: 400;\">Anatomy Is Pretty Grey… Movement Is More Black &amp; White. </span>\n\n<span style=\"font-weight: 400;\">Anatomy on the whole can be very a complex subject and a nightmare for some to learn and grasp. Yet there are very simple ways of applying what you NEED to know when it comes to initially analysing movement and exercise prescription.</span>\n\n<span style=\"font-weight: 400;\">One of the things we teach during our workshops is to forget the muscles at first, analyse the movement in relation to joint actions, THEN go back and look at which muscles contribute to that movement.</span>\n\n<span style=\"font-weight: 400;\">This blog is to talk about the complexities of one particular muscle and how this may or may not influence your exercise prescription. </span>\n\n<b>Why The Adductor Magnus Muscle?</b>\n\n<span style=\"font-weight: 400;\">Well first of all it is my favorite muscle because as I began to research its attachments and actions several years ago, I became quite fascinated by all that it does. Particularly, its involvement in opposing actions and the idea of it being also known as, “the extra hamstring”!</span>\n\n<span style=\"font-weight: 400;\">Clearly I am not the only one fascinated by the adductor magnus….</span>\n\n<i><span style=\"font-weight: 400;\">“Just as we must be cognisant of the potential injuries that can result from an imbalance between the quads and hamstrings, we must recognise that the adductor/abductor strength ratio must be appropriate as well.” Eric Cressey (Construction by adduction - T nation 2004)</span></i>\n\n<b>Where Is It? What Does It Do?</b>\n\n<img class=\"size-medium wp-image-2762 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2016-12-18-at-06.52.03-224x300.png\" alt=\"screen-shot-2016-12-18-at-06-52-03\" width=\"224\" height=\"300\" />\n\n<span style=\"font-weight: 400;\">The word </span><b>adductor</b><span style=\"font-weight: 400;\"> comes from the Latin words “</span><b>ad</b><span style=\"font-weight: 400;\">” which means </span><b>toward</b><span style=\"font-weight: 400;\"> and “</span><b>ducere</b><span style=\"font-weight: 400;\">” which means </span><b>to lead</b><span style=\"font-weight: 400;\">.</span>\n\n<span style=\"font-weight: 400;\">The word </span><b>magnus</b><span style=\"font-weight: 400;\"> is a Latin word meaning </span><b>large.</b>\n\n<span style=\"font-weight: 400;\">Adductor magnus then, is a large muscle that leads something toward the body.</span>\n\n<span style=\"font-weight: 400;\">This muscle is the largest of the adductor muscles and, by some measures, the second largest muscle in the body after Gluteus maximus. It is also often underestimated when it comes to good pelvic function.</span>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">Would you like a muscle energy technique to check your pelvic function &amp; release any spasm there might be, allowing you to see improved movement and potentially reduced pain?</span></i></a></p>\n<p style=\"text-align: center;\"><i><span style=\"font-weight: 400;\">Download your 4-Sign Screen &amp; Release by Clicking HERE</span></i></p>\n<b>Adductor Magnus has 2 parts; according to the sports injury clinic</b>\n\n<b>Adductor Head</b><span style=\"font-weight: 400;\"> = Inferior Ramus of Pubis. Gluteal Tuberosity, Linea Aspera &amp; proximal Supracondylar line. Adducts, flexes &amp; medially rotates the hip.</span>\n\n<b>Hamstring Head</b><span style=\"font-weight: 400;\"> = Ischial Tuberosity. Adductor Tubercle of the Femur. Extends the hip.</span>\n\n<span style=\"font-weight: 400;\">Due to this wonderful meshy fan of fibres, this beast not only adducts the hip but it also can flex AND extend the hip!</span>\n\n<span style=\"font-weight: 400;\">WHAT???</span>\n\n<span style=\"font-weight: 400;\">How on earth can one muscle contract in opposite directions?</span>\n\n<span style=\"font-weight: 400;\">Yes this is a “</span><i><span style=\"font-weight: 400;\">I need to </span></i><b><i>see</i></b><i><span style=\"font-weight: 400;\"> this</span></i><span style=\"font-weight: 400;\">” moment isn\'t it. Rubber band, life sized skeleton and several pairs of hands. </span>\n\n<img class=\"size-medium wp-image-2765 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/05/IMG_9354-300x300.jpg\" alt=\"img_9354\" width=\"300\" height=\"300\" />\n\n<span style=\"font-weight: 400;\">BUT WAIT!</span>\n\n<span style=\"font-weight: 400;\">It does more! The part that attaches to the linea aspera can also act as BOTH a medial and lateral rotator - really?! OK now I sense heads exploding.</span>\n\n<span style=\"font-weight: 400;\">Once you change hip angles, or start points, the ‘line of pull’ can change, therefore potentially (and beautifully in the case of this particular muscle) changing the muscles action to be antagonistic to itself. </span>\n\n<b>Other Descriptions and Research</b>\n\n<i><span style=\"font-weight: 400;\">“While adduction is the primary function of each, the amount of hip flexion present determines whether or not some of the adductors work on the femur as medial or lateral rotators and extensors or flexors. As odd as it may sound, the adductors are important as both hip flexors and extensors during the sprinting motion. Depending on the individual, the shift from flexor to extensor role occurs between 50 and 70 degrees of hip flexion. This phenomenon is possible due to the distal insertion point on the femur. When the hip is extended, the adductors\' line of pull is anterior to the hip joint axis, whereas this line of pull is posterior to the axis when the hip is flexed.” Cressey (2004)</span></i>\n\n<span style=\"font-weight: 400;\">EMG studies also show that ‘</span><i><span style=\"font-weight: 400;\">adductor magnus was most active during internal rotation and  extension. This may imply a great potential to absorb vertical ground reaction forces in functional tasks like walking and running and contribute to hi and pelvic rotation during gait’ (Benn et al, jsams 2017)</span></i>\n\n<span style=\"font-weight: 400;\">Reading several articles and studies reported in </span><a href=\"http://www.strengthandconditioningresearch.com\"><span style=\"font-weight: 400;\">www.strengthandconditioningresearch.com</span></a>\n\n<i><span style=\"font-weight: 400;\">“….Despite its name, the adductor magnus is actually a very important hip extensor when the hip is flexed. Németh and Ohlsén (1985) reported that the adductor magnus muscle moment arm length for hip extension was 5.7 – 6.1cm at 90 degrees of hip flexion, compared to 4.0 – 4.8cm for the hamstrings, and 3.1 – 3.3cm for the gluteus maximus</span></i>\n\n<i><span style=\"font-weight: 400;\">This means that exercises that have peak contractions in positions of hip flexion (like full squats) likely train the adductor magnus very effectively. </span></i>\n\n<i><span style=\"font-weight: 400;\">Ignoring the adductor magnus is therefore likely to lead to a failure to maximise overall muscular hypertrophy in the lower body.</span></i>\n\n<i><span style=\"font-weight: 400;\">The adductor magnus appears to display a relatively mixed muscle fibre type proportion, albeit with a greater proportion of type I muscle fibres. Garrett et al. (1984)The adductor magnus displays a mixed-to-slow muscle fibre type, which may imply higher repetitions with lower loads and slower bar speeds may be beneficial.”...</span></i><span style=\"font-weight: 400;\">Chris Beardsley definitely puts some interesting stuff out!</span>\n\n<img class=\"size-medium wp-image-2761 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-01-11-at-10.11.31-300x166.png\" alt=\"screen-shot-2017-01-11-at-10-11-31\" width=\"300\" height=\"166\" />\n\n<span style=\"font-weight: 400;\">We should note that each part (hamstring and adductor) has different nerve supply, so some may say it is not such a big deal, as each component doesn’t have to engage at the same time as the other. The </span><b>adductor</b><span style=\"font-weight: 400;\"> portion is innervated by the posterior division of the obturator </span><b>nerve,</b><span style=\"font-weight: 400;\"> while the hamstring portion is innervated by the tibial </span><b>nerve</b><span style=\"font-weight: 400;\">. But if you are like me, we are simply trying to move on from those anatomy books, right!?</span>\n\n<span style=\"font-weight: 400;\">Yes I know - NOW can you understand why this is my favourite muscle!? </span>\n\n<span style=\"font-weight: 400;\">No? OK OK, hands up, I am a geek. :D</span>\n\n<span style=\"font-weight: 400;\">However this one beautiful piece of human tissue explains why the human body is both fantastical and complex and why it contributes to so much controversy when we are trying to learn about it and understand it.</span>\n\n<span style=\"font-weight: 400;\">We ALL LOVE a bit of controversy right!? (that’s why everyone loves the BGT auditions more than the actually live show isn\'t it?)</span>\n\n<span style=\"font-weight: 400;\">Sorry back to the blog….</span>\n\n<b>SO WHAT? </b>\n\n<span style=\"font-weight: 400;\">A problem with this muscle could influence the integrated system in so many ways but here is an example...</span>\n\n<i><span style=\"font-weight: 400;\">“Additionally, those of you that suffer from patellofemoral pain syndrome might be interested to note that weak adductors are one of several potential causes for your persistent knee troubles. The origin of the vastus medialis oblique is at the tendon of the adductor magnus, so adductor based strength training merits inclusion in a rehabilitation program” </span></i>\n\n<i><span style=\"font-weight: 400;\">“If being fast tickles your fancy more than moving big weights, you\'ll be interested to note that the adductor magnus rivals the hamstrings and gluteus maximus in terms of its contribution to sprinting speed”, Cressey (2004).</span></i>\n\n<b>In Conclusion</b>\n\n<span style=\"font-weight: 400;\">We are taught at L2/3 that muscles go from point A to B and do an action. </span>\n\n<span style=\"font-weight: 400;\">That they have an antagonist. </span>\n\n<span style=\"font-weight: 400;\">That they are part of a group. </span>\n\n<span style=\"font-weight: 400;\">However as you </span><i><span style=\"font-weight: 400;\">really</span></i><span style=\"font-weight: 400;\"> learn about them you realise the laws don\'t </span><i><span style=\"font-weight: 400;\">always</span></i><span style=\"font-weight: 400;\"> apply </span><i><span style=\"font-weight: 400;\">so</span></i><span style=\"font-weight: 400;\"> simply in every case; like in the case of Adductor Magnus. </span>\n\n<span style=\"font-weight: 400;\">In the gym, we don’t really NEED to know the exact attachments of Adductor Magnus, in order to teach someone an exercise. It might also be argued that we don’t really </span><i><span style=\"font-weight: 400;\">need</span></i><span style=\"font-weight: 400;\"> to know the exact attachments, to do soft tissue work on the adductor group too.</span>\n\n<span style=\"font-weight: 400;\">My suggestion is of course to study anatomy for confidence and for fascination, but try NOT to get caught up in the stress of trying to recall it all </span><span style=\"font-weight: 400;\">immediately,</span><span style=\"font-weight: 400;\"> while in a session with a client. </span>\n\n<span style=\"font-weight: 400;\">Over time, as you find reasons to study a particular area or muscle, for some reason you will start to recall it more easily. You will also realise just how </span><i><span style=\"font-weight: 400;\">GREY</span></i><span style=\"font-weight: 400;\"> this subject matter is when it comes to laws (s’cuse the pun!), in fact, it creates debates even among the experts - (as I research the Psoas Paradox for another Juicemail!).</span>\n\n<span style=\"font-weight: 400;\">Adductor Magnus is one example of why, as exercise professionals, we should find ways to recall detailed anatomy, even if we do firstly focus on the movement/s. This then allows us to understand movement and exercise in even greater detail for designing our client programme. </span>\n\n<span style=\"font-weight: 400;\">GO ON Geek confessional = tell me which is your favourite muscle and why….? lol.</span>\n<img class=\"size-medium wp-image-2760 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-16-at-06.15.15-300x147.png\" alt=\"screen-shot-2017-05-16-at-06-15-15\" width=\"300\" height=\"147\" />\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/pelvis-module\" target=\"_blank\" rel=\"noopener\"><i><span style=\"font-weight: 400;\">If Pelvic Biomechanics interests you, click here to check out the fantastic 2-day practical workshop we have that will see your skill set hugely improved for your clients.</span></i></a></p>\n<b>References;</b>\n\n<a href=\"https://en.wikipedia.org/wiki/Adductor_magnus_muscle\"><span style=\"font-weight: 400;\">https://en.wikipedia.org/wiki/Adductor_magnus_muscle</span></a>\n\n<a href=\"http://www.sportsinjuryclinic.net/anatomy/human-muscles/adductor-magnus\"><span style=\"font-weight: 400;\">http://www.sportsinjuryclinic.net/anatomy/human-muscles/adductor-magnus</span></a>\n\n<a href=\"http://rad.washington.edu/muscle-atlas/adductor-magnus/\"><span style=\"font-weight: 400;\">http://rad.washington.edu/muscle-atlas/adductor-magnus/</span></a>\n\n<a href=\"http://www.lumen.luc.edu/lumen/meded/grossanatomy/dissector/mml/admg.htm\"><span style=\"font-weight: 400;\">http://www.lumen.luc.edu/lumen/meded/grossanatomy/dissector/mml/admg.htm</span></a>\n\n<a href=\"http://www.teachpe.com/anatomy/muscles/add_magnus.php\"><span style=\"font-weight: 400;\">http://www.teachpe.com/anatomy/muscles/add_magnus.php</span></a>\n\n<a href=\"http://www.orthobullets.com/anatomy/10067/adductor-magnus\"><span style=\"font-weight: 400;\">http://www.orthobullets.com/anatomy/10067/adductor-magnus</span></a>\n\n<a href=\"https://www.yoganatomy.com/adductor-magnus-muscle/\"><span style=\"font-weight: 400;\">https://www.yoganatomy.com/adductor-magnus-muscle/</span></a>\n\n<a href=\"http://ericcressey.com/strength-and-conditioning-textbook-synergists-and-antagonists\"><span style=\"font-weight: 400;\">http://ericcressey.com/strength-and-conditioning-textbook-synergists-and-antagonists</span></a>\n\n<a href=\"https://www.t-nation.com/training/construction-by-adduction\"><span style=\"font-weight: 400;\">https://www.t-nation.com/training/construction-by-adduction</span></a>\n\n<a href=\"http://rhinofitness.ca/articles/article_trigger_point_adductors.html\"><span style=\"font-weight: 400;\">http://rhinofitness.ca/articles/article_trigger_point_adductors.html</span></a>\n\n<a href=\"http://www.jsams.org/article/S1440-2440(17)30012-9/abstract\"><span style=\"font-weight: 400;\">http://www.jsams.org/article/S1440-2440(17)30012-9/abstract</span></a>\n\n<a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2989399/\"><span style=\"font-weight: 400;\">https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2989399/</span></a>\n\n<span style=\"font-weight: 400;\">https://www.strengthandconditioningresearch.com/muscles/adductors/</span>','Anatomy 50 Shades Of Grey','','inherit','closed','closed','','2720-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2720,'https://biomechanicseducation.com/?p=38812',0,'revision','',0),(38813,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<b>Do Your Knees Knock?</b>\n\n<span style=\"font-weight: 400;\">Only during Halloween? Haha no I mean during exercise or your chosen sport…</span>\n\n<span style=\"font-weight: 400;\">Something prevalent in observing our client’s knees during movement is knock knees, otherwise known as knee valgus.</span>\n\n<span style=\"font-weight: 400;\">Now while looking at the mechanics of the knee, during gait for example, what we see in simple terms is knee flexion and extension, but it is a bit more complex than that.</span>\n\n<span style=\"font-weight: 400;\">For the purposes of this article I am going to keep it simple but, if looking at what happens intrinsically during knee flexion and extension does excite you as much as it does me, and you want to find out more, just leave your email below and I can get in touch about our knee &amp; foot biomechanics workshop.</span>\n\n<b><span style=\"color: #008080;\">Ligament Dominance</span></b>\n\n<span style=\"font-weight: 400;\">Now if we are truly following The Integrated System idea that people have talked about for years (but often still don’t </span><i><span style=\"font-weight: 400;\">really</span></i><span style=\"font-weight: 400;\"> practice), it goes without saying, there are likely to be both ascending and descending biomechanical influences upon human movement.</span>\n\n<span style=\"font-weight: 400;\">Last week we discussed just one of the possible ascending biomechanical issues in the blog </span><b><i>‘Over Pronation or Late Supination’</i></b><span style=\"font-weight: 400;\"> that may affect your client\'s movement, but this week we will be discussing a potential descending influencer.</span>\n<h3>The Problem</h3>\n<span style=\"color: #008080;\"><b>Ligament Dominance</b></span>\n\n<span style=\"font-weight: 400;\">Ligament</span> <span style=\"font-weight: 400;\">dominance occurs when your client allows the knee ligaments, rather than the extremity musculature, to absorb a significant portion of the ground reaction force, during their chosen activity or an exercise you have given them. (</span><i><span style=\"font-weight: 400;\">Hewitt TE, Paterno MV, Myer GD. Strategies for enhancing proprioception and neuromuscular control of the knee. Clin Orthop 2002</span></i><span style=\"font-weight: 400;\">).</span>\n\n<span style=\"font-weight: 400;\">Typically during single-leg landing, pivoting or declaration (all common Anterior Cruciate Ligament (ACL) injury mechanisms), your client may allow the ground reaction force to control the direction of motion of the lower extremity joints. This motion is especially evident at the knee; which is not only influenced by direct external moments (the floor), but also by the ankle and hip internal moments. (</span><i><span style=\"font-weight: 400;\">Winter DA, Biomechanics and Motor Control of Human Movement 2</span></i><i><span style=\"font-weight: 400;\">nd</span></i><i><span style=\"font-weight: 400;\"> Ed. New York, NY: John Wiley and Sons; 1990). </span></i><span style=\"font-weight: 400;\">In these instances the neuromuscular and ligamentous control of the joint is unbalanced</span><i><span style=\"font-weight: 400;\">, (Hewett TE, Myer GD, Ford KR, et al</span></i><span style=\"font-weight: 400;\">).</span>\n<h3>So What?</h3>\n<span style=\"font-weight: 400;\">Measurement of neuromuscular imbalances allows individuals who are at potential risk of ACL injury to be identified. A client may display techniques that place them at an increased risk because of one or more imbalances. During single-leg landing, pivoting or deceleration, the motion of a </span><i><span style=\"font-weight: 400;\">ligament dominant knee</span></i><span style=\"font-weight: 400;\"> in a client may be directed by the external ground reaction forces, rather than by their musculature.</span>\n\n<span style=\"color: #008080;\"><strong>A Runner</strong></span>\n\n<span style=\"font-weight: 400;\">For example the client who wants to train with you to prepare for a race will ultimately need to practice running, of course. However it would be prudent to identify if they have any knee stability issues while running, because if they do, they may require bespoke strength work to reduce their risk of injury. As we know, the impact and repetitive nature of this kind of activity, has a high instance of ‘overuse’ symptoms. This force of landing transfers up *The Integrated System, through the pelvis and spine, at which point there is a rotational force too. If the ligaments are dominate in taking the impact, rather than the lateral hip muscles, this ‘shock’ can stress not only the knee, but also the body higher up.</span>\n\n<span style=\"font-weight: 400;\">So if we can assess, monitor, exercise, re-assess and create more stability with smart individualised programming, your client will be a more efficient runner, with a reduced risk of hurting their knee.</span>\n\n<span style=\"font-weight: 400;\">*See more detail below about further considerations </span>\n<h3>How To Identify If Your Client Is Ligament Dominant</h3>\n<span style=\"font-weight: 400;\">The evaluation of a client’s level of </span><i><span style=\"font-weight: 400;\">ligament dominance</span></i><span style=\"font-weight: 400;\"> can be accomplished using a 31cm box-drop test combined with a maximum effort vertical leap. (</span><i><span style=\"font-weight: 400;\">Ford KR, Myer GD, Hewett TE. Valgus knee motion during landing in high school female and male basketball players. Med Sci Sports Exerc. 2003</span></i><span style=\"font-weight: 400;\">).</span>\n\n<img class=\"aligncenter size-full wp-image-1802\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-04-25-at-07.39.55.png\" alt=\"\" width=\"612\" height=\"318\" />\n\n<span style=\"font-weight: 400;\">When dropping from a box, a </span><i><span style=\"font-weight: 400;\">ligament dominant</span></i><span style=\"font-weight: 400;\"> client displays substantial medial knee motion in the transverse plane which is visually identified upon the point of the foot contacting the floor. </span>\n\n<span style=\"font-weight: 400;\">Medial knee motion may be related to an overall dynamic knee valgus ie; femoral adduction, femoral internal rotation in relation to the hip, tibial external rotation in relation to the femur with or without foot pronation.</span>\n\n<span style=\"font-weight: 400;\">Movement patterns that place your client in positions of high ACL load (excessive external knee abduction moments), combined with a low knee flexion angle, may well increase the risk for ligament injury or failure (</span><i><span style=\"font-weight: 400;\">Lloyd DG</span></i><span style=\"font-weight: 400;\">).</span>\n<h3>Now It’s Your Turn</h3>\n<span style=\"font-weight: 400;\">So using your slow motion setting on your phone or camera, squat down in front of your client and ask them to let one leg hang off the box. Then ask them to drop onto the hanging leg allowing the knee to flex to 30 degrees upon landing. Now watch back the slow mo and notice the exact point the foot comes into contact with the floor and notice what action occurs at the knee. </span>\n\n<strong><span style=\"color: #008080;\">You can see an example of the drop box test in action here:</span></strong>\n\n<iframe src=\"https://www.youtube.com/embed/1dZ_Ta3S00U\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\n\n<span style=\"color: #008080;\"><b>Ask yourself;</b></span>\n\n<span style=\"font-weight: 400;\">Does the knee ‘flick’ inwards?</span>\n\n<span style=\"font-weight: 400;\">Does the knee land medially?</span>\n\n<span style=\"font-weight: 400;\">If you answer yes to one of these then the test is positive and this would indicate an unstable knee which increases their risk of injury. Always reassure your client this is quite common and more often than not, a simple bespoke exercise programme will address it.</span>\n<h3>The Solution</h3>\n<span style=\"font-weight: 400;\">If we consider that the ligaments are taking the force, then the muscles that would limit this knee valgus would logically produce the opposite movement.</span>\n\n<span style=\"font-weight: 400;\">What is knee valgus in terms of </span><i><span style=\"font-weight: 400;\">movement?</span></i>\n\n<span style=\"font-weight: 400;\">Well if the knee is dropping inwards in terms of </span><i><span style=\"font-weight: 400;\">analysing the movement</span></i><span style=\"font-weight: 400;\"> this would be hip adduction and internal rotation of the hip. This movement comes from the pelvis of course but what this means is there are simple ways of strengthening the hip that will contribute to a more stable knee upon landing and taking load.</span>\n\n<span style=\"font-weight: 400;\">The opposing movements to hip adduction and hip internal rotation would be hip abduction and hip external rotation.</span>\n\n<span style=\"font-weight: 400;\">So any strengthening exercises for these 2 movements individually or combined would likely contribute to improving ligament dominance and therefore create a more stable load through the knee.</span>\n\n<img class=\"aligncenter size-large wp-image-1804\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-01-at-20.58.33-1024x416.png\" alt=\"\" width=\"840\" height=\"341\" />\n\n<span style=\"font-weight: 400;\">This is just one of the knee assessments we teach during the </span><b>Knee and Foot Biomechanics workshop</b><span style=\"font-weight: 400;\"> and we should always take into account The Integrated System when it comes to assessment and exercise prescription for true long term objectivity in improving human movement.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><b>If you are interested in learning more about this 2-day workshop; fill in your details below and we’ll get in touch to tell you more.</b></p>\n<img class=\"aligncenter wp-image-1801\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-01-at-20.49.59-1024x508.png\" alt=\"\" width=\"600\" height=\"298\" />\n\n[activecampaign form=19]\n\n<b>Other References</b>','How To Measure Neuromuscular Imbalances & Identify If Your Client Is At Risk Of ACL Injury','','inherit','closed','closed','','2671-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2671,'https://biomechanicseducation.com/?p=38813',0,'revision','',0),(38814,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<span style=\"font-weight: 400;\">Foot Biomechanics has gone down a storm with exercise professionals when we have presented or lectured on this topic at events and conferences. In 2016, after a 1hr lecture a newly qualified podiatrist stated...</span>\n\n<i><span style=\"font-weight: 400;\">“Thank you, that 1 hour lecture has just made my entire podiatry degree make complete sense!”</span></i>\n\n<span style=\"font-weight: 400;\">As exercise professionals we really should understand a little bit more about foot function. While a very complex part of the anatomy, it is still a part of The Integrated System that we are working with, when we exercise and train our clients. </span>\n\n<span style=\"font-weight: 400;\">So let’s break it down to the simplest level...</span>\n\n&nbsp;\n<h2><em><b>What do we, as exercise professionals, need to know about foot function and exercise that can contribute to helping our clients movement ability?</b></em></h2>\n<h3>Foot Function</h3>\n<span style=\"font-weight: 400;\">Firstly once we understand </span><b>pronation</b><span style=\"font-weight: 400;\"> and </span><b>supination</b><span style=\"font-weight: 400;\"> the rest is relatively easy. These 2 actions are </span><b>‘triplanar’</b><span style=\"font-weight: 400;\"> meaning there are 3 components to 1 motion. (Donatelli.R, ‘</span><i><span style=\"font-weight: 400;\">The Biomechanics of the Foot &amp; Ankle</span></i><span style=\"font-weight: 400;\">’ 1980) </span>\n<h4><span style=\"color: #33cccc;\"><b>PRONATION</b></span></h4>\n<span style=\"font-weight: 400;\">- Dorsiflexion - Eversion - Abduction = ‘unlocks’ MidTarsalJoint (MTJ), flatter, longer, wider, flexible, mobile foot which enables </span><b>shock absorption</b>\n<h4><span style=\"color: #33cccc;\"><b>SUPINATION</b></span></h4>\n<b>- </b><span style=\"font-weight: 400;\">Plantarflexion - Inversion - Adduction = ‘Locks’ MidTarsalJoint (MTJ), higher, shorter, narrower, stiff, rigid foot which enables a </span><b>rigid foot to ‘toe off’</b><span style=\"font-weight: 400;\"> and therefore propels you forwards during the gait cycle. </span>\n\n<span style=\"font-weight: 400;\">So during the gait cycle the foot SHOULD be able to achieve both pronation and supination. However, we also need them to occur at the appropriate phase of the cycle, in order for it to be </span><span style=\"font-weight: 400;\">biomechanically efficient.</span>\n\n<span style=\"font-weight: 400;\">In this image you can see the gait cycle broken down into its stages.</span>\n\n<img class=\"aligncenter wp-image-1784\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-18-at-10.55.17-1024x642.png\" alt=\"\" width=\"600\" height=\"376\" />\n<h4><span style=\"font-weight: 400; color: #33cccc;\">HS OR HEEL STRIKE</span></h4>\n<span style=\"font-weight: 400;\">When the heel first comes into contact with the floor and so the foot is pronating to absorb the force or shock. </span>\n<h4><span style=\"font-weight: 400; color: #33cccc;\">FFL OR FOREFOOT LANDING</span></h4>\n<span style=\"font-weight: 400;\">When the forefoot then lands coming into contact with the floor and so is still pronating.</span>\n<h4><span style=\"font-weight: 400; color: #33cccc;\">MIDSTANCE</span></h4>\n<span style=\"font-weight: 400;\">When the weight of the body starts to shift over the ankle. This is when the foot transitions from pronation to supination via the ‘windlass mechanism’ (see below), that initiates tension in the plantar fascia taught.</span>\n<h4><span style=\"font-weight: 400; color: #33cccc;\">HL OR HEEL LIFT</span></h4>\n<span style=\"font-weight: 400;\">When the foot starts to become more rigid. The more the big toe (also known as the Halux or 1st metatarsal) extends, the more the plantar fascia tension increases. This creates a more rigid arch for the propulsion phase of supination.</span>\n<h4><span style=\"font-weight: 400; color: #33cccc;\">TO OR TOE OFF</span></h4>\n<span style=\"font-weight: 400;\">The extension of the big toe completes the cycle, eventually lifting to the swing phase.</span>\n<h3>The Problem</h3>\n<span style=\"font-weight: 400;\">One of the most common problems identified is ‘</span><i><span style=\"font-weight: 400;\">over</span></i><span style=\"font-weight: 400;\"> pronation’ and so prescriptions are given to </span><i><span style=\"font-weight: 400;\">reduce</span></i><span style=\"font-weight: 400;\"> the degree of pronation ie; shoes with a supporting arch. This could be the right thing to do if symptoms are occurring.</span>\n\n<span style=\"font-weight: 400;\">However we must be mindful of the fact that our feet </span><i><span style=\"font-weight: 400;\">need</span></i><span style=\"font-weight: 400;\"> to pronate. So considering the gait cycle above, it can be more helpful to consider this foot type as a </span><i><span style=\"font-weight: 400;\">late</span></i><span style=\"font-weight: 400;\"> supinator. In other words, the foot doesn\'t ‘lock’ in time to re-supinate at the midstance phase. This means the foot is still pronating and unlocked leaving the foot in a lax position for propulsion. </span>\n\n<strong>Now there are many things that can influence these triplanar motions as you can imagine:</strong>\n\n<span style=\"font-weight: 400;\">1) Footwear</span>\n\n2) Impact force and frequency\n\n<span style=\"font-weight: 400;\">3) Descending Biomechanical issues (i.e. pelvic dysfunction)</span>\n\n<span style=\"font-weight: 400;\">4) Previous injury</span>\n\n<span style=\"font-weight: 400;\">5) Genetics</span>\n\n<span style=\"font-weight: 400;\">6) Ground surfaces</span>\n\n<span style=\"font-weight: 400;\">7) </span><span style=\"font-weight: 400;\">Job type</span>\n\n<span style=\"font-weight: 400;\">8) Sports</span>\n\n<span style=\"font-weight: 400;\">And so on...</span>\n\n<span style=\"font-weight: 400;\">If we look at the potential problems, it can allow us to understand what we can and can’t influence, or do.</span>\n\n<span style=\"font-weight: 400;\">Orthotic and footwear prescriptions should always be left to the professionals trained to deal with these, like podiatrists for example. However, descending biomechanical problems are certainly within the remit of a PT or exercise professional.</span>\n\n<a href=\"https://www.biomechanicseducation.com/custom-fit-insoles-damaging-workout-performance/\" target=\"_blank\" rel=\"noopener noreferrer\">Check out my blog about my visit to Premier Podiatry by clicking here.</a>\n\n<span style=\"font-weight: 400;\">As personal trainers we could conduct a </span><span style=\"font-weight: 400;\">series</span><span style=\"font-weight: 400;\"> of foot screens or use a foot posture index, to get a good idea of whether our client has a propensity for pronation or supination or in fact has a neutral foot. Once we’ve concluded the outcome that most suits our client, we can start to plan the right exercises to prescribe, to either contribute to better foot function or as pre-orthotic conditioning process (see below). This allows us to communicate much more effectively with podiatrists when we need to make a referral.</span>\n\n<span style=\"font-weight: 400;\">We would </span><i><span style=\"font-weight: 400;\">ALWAYS </span></i><span style=\"font-weight: 400;\">advise performing more than one screen, due to the complex nature of the movement planes in the foot and ankle, as it can commonly occur that your client may present as having a propensity for pronation in one screen and a propensity for supination in another.</span>\n<h3>The Solution</h3>\n<span style=\"font-weight: 400;\">What CAN WE do?</span>\n\n<span style=\"font-weight: 400;\">The first thing is to get an understanding of foot anatomy and function, in relation to pronation and supination. Visually someone might look like a pronator yet they are structurally a supinator. If they have a fat pad on the arch for example, it may give the impression of a low arch or pronated foot. So we must never assume anything and certainly not when we don\'t need to!</span>\n\n<span style=\"font-weight: 400;\">This screen is just one example of a foot screen and how simple they can be. This particular screen is simply to identify if the foot has the </span><i><span style=\"font-weight: 400;\">capacity </span></i><span style=\"font-weight: 400;\">to re-supinate.</span>\n<h3>Jacks test (ascending influencer)</h3>\n<img class=\"aligncenter wp-image-1785\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/IMG_4580-1024x768.jpg\" alt=\"\" width=\"600\" height=\"450\" />\n<h3>Why?</h3>\n<span style=\"font-weight: 400;\">The Jack’s test assesses the force required to activate the windlass mechanism. This test assesses the tension in the plantar fascia associated with Heel Lift, Toe Off and Propulsion to identify the foot\'s capacity to supinate. </span>\n\n<span style=\"font-weight: 400;\">The way in which the terminal strands of the plantar fascia wind around the metatarsal heads, has been called the Windlass Mechanism (Hicks, 1954). What is fascinating is that people vary greatly in the force required to dorsiflex the big toe, to activate this Windlass Mechanism. It is believed that orthoses that decrease this force, reducing the strain in the Plantar Fascia and thus improving the efficiency of gait.</span>\n<h3>The Windlass Mechanism</h3>\n<span style=\"font-weight: 400;\">The term ‘Windlass Mechanism’ is used to describe the function of the plantar fascia. </span><span style=\"font-weight: 400;\">The Jack’s test can be used to assess the effect of devices on the establishment of the Windlass Mechanism.</span>\n\n<span style=\"font-weight: 400;\">The plantar fascia is drawn tightly around the big toe joint, so as the big toe moves upwards (dorsiflexes), it develops tension within it. This tension pulls the joints of the foot tightly together, and converts the foot to a rigid structure, in preparation for the forward thrust of propulsion. This increased foot rigidity is reflected by the increase in arch height, as the fore-foot is drawn down and closer to the rear-foot. This is also very important in relation to shoe design.</span>\n<h3>What?</h3>\n<span style=\"font-weight: 400;\">You’ll be using the 1</span><span style=\"font-weight: 400;\">st</span><span style=\"font-weight: 400;\"> metatarsal (big toe) as a lever in the sagittal plane </span>\n<h3>How?</h3>\n<span style=\"font-weight: 400;\">You manually dorsiflex the big toe and estimate the force required. Kneeling in front of your client, who should be standing naturally, place hands flat on either side of their foot. Slide both your thumbs underneath their big toe and pressing the fingers into the floor for support you push the big toe upwards sagittally and as far as it will go. Look to see if the inside of the foot lifts into an arch.</span>\n\n<span style=\"font-weight: 400;\">This effort or resistance it takes to do this can be graded from 1 to 5. </span>\n\n<span style=\"font-weight: 400;\">1= no effort at all to push the toe up</span>\n\n<span style=\"font-weight: 400;\">5= toe impossible to lift and engage any arch or supination </span>\n\n<span style=\"font-weight: 400;\">The tension in the plantar fascia increases as the big toe is dorsiflexed and the subtalar joint must supinate to raise the arch.</span>\n\n<span style=\"font-weight: 400;\">A score of 2-3 is a pass, anything higher or lower is a fail.</span>\n\n4-5 is difficult to lift and therefore means that the subtalar joint has limited capacity to re-supinate the STJ and so they are more likely to be a pronator.\n\n0-1 is really easy to lift and therefore means the subtalar joint easily supinates and the client is less likely to be a pronator.\n<h3>Ok Now What?</h3>\nWell we must still be mindful of appropriate referral and duty of care if we are ever unsure or particularly if clients are symptomatic. However an example of something safe we could do is POC-ing.\n<h3>POC-ing</h3>\nPOC-ing or pre-orthotic conditioning is simply a series of exercises that prepare the lower limb, ankle and foot for orthotics. Often the leg is unprepared for changes to the new position under foot. This can sometimes result in discomfort or achy muscles (DOMS) even though the orthotic is correct for that individual. They may simply need some ‘preparation’ for their new position.\n\n<span style=\"font-weight: 400;\">(Note: Likewise sometimes a wrong orthotic can alleviate pain even though a prescription might be inaccurate, as the simple act of changing the load going through the joints could alleviate loads to a different place.)</span>\n<h4><span style=\"color: #33cccc;\"><strong>EXAMPLE;</strong></span></h4>\n<span style=\"font-weight: 400;\">If you feel your client lacks the capacity to supinate have them sit down and place a resistance band around the inside of their foot, like the image below. Tie or hold the band to give the resistance. </span>\n\n<span style=\"font-weight: 400;\">Now encourage them to turn the foot inwards against the resistance band for 15 reps and 3 sets or as you see fit.</span>\n\n<img class=\"aligncenter wp-image-1786\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/IMG_8821-1024x1024.jpg\" alt=\"\" width=\"600\" height=\"600\" />\n<h3>Final note;</h3>\n<span style=\"font-weight: 400;\">Always use inter-professional relationships for optimum duty of care.</span>\n<h1 style=\"text-align: left;\"><a href=\"https://futurefittraining.gemalpha.com/view/f9bda512d28d43c98e059c7872a146ac0e943b51f6954ebc939e435a4ab0b43f/Bio+Sales+toolkit+Guide\" target=\"_blank\" rel=\"noopener\">Would you like to learn more about foot biomechanics on our Biomechanics Coach course?</a></h1>\n<h2>FIND OUR MORE BY CLICKING HERE <em>I want to learn more please!!</em></h2>\n<p style=\"text-align: center;\"></p>','Over Pronation Or Late Supination?','','inherit','closed','closed','','2668-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2668,'https://biomechanicseducation.com/?p=38814',0,'revision','',0),(38815,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<span style=\"font-weight: 400;\">Remember Laura Hewitt, Elite Olympic Lifter, the case study from last week?</span>\n\n<span style=\"font-weight: 400;\">In that blog, I explained how we had used an anti spasm on her pec minor, to improve her front squat and clean receive position.</span>\n\n<span style=\"font-weight: 400;\">What I wanted to do in this blog, is begin to explain why that happened.</span>\n<h3>Pectoralis Minor Anatomy</h3>\n<b>Muscle Attachments:</b><span style=\"font-weight: 400;\"> As you can see from the diagram below, the </span><span style=\"font-weight: 400;\">pectoralis minor</span><span style=\"font-weight: 400;\"> attaches to the coracoid process on the front of the scapula and travels diagonally downward and medial to </span><span style=\"font-weight: 400;\">attach</span><span style=\"font-weight: 400;\"> to the 3rd, 4th, and 5th ribs.</span>\n\n<b>Function:</b><span style=\"font-weight: 400;\"> The </span><span style=\"font-weight: 400;\">pectoralis minor</span><span style=\"font-weight: 400;\"> has two main functions. On one hand, it pulls the scapula anteriorly and therefore creates scapular protraction. As a secondary function, it also has some influence on scapular depression.</span>\n<h3><img class=\"size-medium wp-image-2549 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-13.32.48-211x300.png\" alt=\"screen-shot-2017-04-13-at-13-32-48\" width=\"211\" height=\"300\" /></h3>\n<h3>The Problem</h3>\n<span style=\"font-weight: 400;\">As you can imagine, this is one of those muscles that adapts to common daily ‘activities’ like desk work, texting or driving; thus creating a round shouldered appearance or poor looking posture.</span>\n\n<span style=\"font-weight: 400;\">So while this small muscle doesn’t even attach to the humerus, you can see why it can massively impact upon your client’s ability to move their arms or even squat. Let me explain further;</span>\n<h3><img class=\"size-medium wp-image-2552 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-11.24.47-290x300.png\" alt=\"screen-shot-2017-04-13-at-11-24-47\" width=\"290\" height=\"300\" /></h3>\n<h3>Try this exaggerated practical example yourself:</h3>\n<span style=\"font-weight: 400;\">1) Stand up and protract your scapular forwards into the rounded position as if you have ‘overactive’ pec minors</span>\n\n<span style=\"font-weight: 400;\">2) While maintaining this round shouldered position try to raise your arms or extend your thoracic spine.</span>\n\n<span style=\"font-weight: 400;\">3) Now try to squat, maintaining an upright posture….</span>\n\n<span style=\"font-weight: 400;\">…. </span><span style=\"font-weight: 400;\">Difficult</span><span style=\"font-weight: 400;\"> right?</span>\n\n<span style=\"font-weight: 400;\">Now you have that practical example for a clearer understanding, just imagine what that ‘tension’ on the </span><span style=\"font-weight: 400;\">pectoralis minor </span><span style=\"font-weight: 400;\">can effect with regards to general function and movement. If your scapular are ‘locked’ around your rib cage, they can ‘fix’ your thoracic spine into flexion, which will of course, impact upon your client’s ability to move in your training session.</span>\n<h3>The Integrated System</h3>\n<span style=\"font-weight: 400;\">When we refer to the integrated system, we mean all of the subsystems within the body that affect movement of the neuro-musculoskeletal system, which is basically the nerves, muscles and bones.</span>\n\n<span style=\"font-weight: 400;\">As personal trainers, we MUST consider the body as an </span><i><span style=\"font-weight: 400;\">integrated system</span></i><span style=\"font-weight: 400;\"> and so prescribe exercises with this in mind, taking into account every area of the body.</span>\n\n<span style=\"font-weight: 400;\">A common mistake among PT’s, can be to assume poor squat technique (for example) is simply because of poor pelvic or ankle mobility, however what we can see from example above and from Laura’s case study last week, this just simply isn’t the case and there may be far more to the complexity of the movement that first meets the eye.</span>\n<h3>The Solution</h3>\n<span style=\"font-weight: 400;\">So I have a short video clip for you to watch and learn how to anti spasm your client’s pec minor if you feel they may benefit.</span>\n\n<span style=\"font-weight: 400;\">Complement this with some antagonist strength work, like *‘pure’ </span><i><span style=\"font-weight: 400;\">retraction</span></i><span style=\"font-weight: 400;\"> (retraction being the opposite movement to the pec minors protraction) band or cable training, and see if this goes towards improving their movement. </span>\n\n<span style=\"font-weight: 400;\">*When I say ‘pure’ what I mean by this is do not bend the elbows, as in a row, but keep the arms long and simply retract against the resistance. This can be more effective at regaining strength ratios around the shoulder.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-2550 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-11.30.58-300x123.png\" alt=\"screen-shot-2017-04-13-at-11-30-58\" width=\"300\" height=\"123\" /></span>\n\n<span style=\"font-weight: 400;\">Another great complement to these 2 exercises is one of my favourites. Very simply lie </span><i><span style=\"font-weight: 400;\">long ways</span></i><span style=\"font-weight: 400;\"> on a long foam roller for a 2 minutes each day. Ie Sit the bum on one end and rest the back of the head on the other. Then simply relax over it.</span>\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-2551 aligncenter\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-11.25.50-300x148.png\" alt=\"screen-shot-2017-04-13-at-11-25-50\" width=\"300\" height=\"148\" /></span>\n\n<span style=\"font-weight: 400;\">A dysfunctional Pec Minor and shoulder function is one consideration BUT remember it is just one example of an adaption to our lifestyles. There are many things that can contribute so please keep an open mind. </span>\n\n<span style=\"font-weight: 400;\">You never know what could change by simply giving your clients Pec Minor and Thoracic Spine their capacity back….!!</span>\n<h3>Shoulder Biomechanics</h3>\n<span style=\"font-weight: 400;\">If this blog has left you eager to find out more, we have a Shoulder Biomechanics module as part of the Shoulder, Knee &amp; Foot Biomechanics Workshop during which we teach you how to </span><b>assess and improve</b><span style=\"font-weight: 400;\"> the function of Pec Minor along with the Median Nerve, Radial Nerve, Ulna Nerve, Subscapularis, Infraspinatus and the Upper traps.</span>\n\n<span style=\"font-weight: 400;\">We’ve only discussed 1 muscle in basic terms in this blog today, imagine the mind-blowing learning development you could gain by doing your FULL shoulder biomechanics module!</span>\n\n<span style=\"font-weight: 400;\">You should note that this is a very practical and evidence based workshop. So you will be practicing these screens and exercises on your peers and WON’T be brain dead from a lack of stimulation! This is complimented with all of the relevant strength training principles and there are no exams.</span>\n<h3>Click below to find out where you can enrol for the Shoulder, Knee &amp; Foot Biomechanics Workshop...</h3>\n<h1><a href=\"https://www.biomechanicseducation.com/product/shoulder-knee-foot-biomechanics-workshop-entry-level-3/\" target=\"_blank\" rel=\"noopener\"><b>CLICK HERE </b></a></h1>','How Your Pectoralis Minor Can Affect Your Squat Depth','','inherit','closed','closed','','2543-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2543,'https://biomechanicseducation.com/?p=38815',0,'revision','',0),(38816,0,'2024-07-16 11:26:34','2024-07-16 11:26:34','<span style=\"font-weight: 400;\">Something we often asked about is example case studies of people who have been to see a Biomechanics Coach</span><span style=\"font-weight: 400;\">&#x2122;, s</span><span style=\"font-weight: 400;\">o with her permission I wanted to share with you one of mine:</span>\n<h3>Gold Medalist &amp; British Champion in Olympic Weightlifting, Laura Hewitt</h3>\n<span style=\"font-weight: 400;\">Laura has been making a huge impression on the Olympic Weightlifting world! We originally met during some fitness classes I was covering at local chain gym several years ago. She eventually trained and worked there as a personal trainer.</span>\n\n<span style=\"font-weight: 400;\">The next time I saw her was while I was training at PowerBase Gym at Loughborough University. This fabulous athlete was literally lifting ridiculous amounts of rubber and steel over her head and onto her shoulders, as I stood watching in awe! She was clearly built to lift with her awesome frame and as I discovered through our conversations, had also come from a competitive gymnastic background. So she was obviously already familiar with the graft and discipline attached to being a high level athlete.</span>\n\n<span style=\"font-weight: 400;\">Having been chosen as one of the GB Olympic Lifting potentials she become semi-professional and started her training with the three girls under the guidance of Giles Greenwood. </span>\n<h3>The Problem</h3>\n<span style=\"font-weight: 400;\">However on one occasion Laura and I were training alone and started chatting. She expressed her problem in being unable to maintain an upright torso during the receive position of her clean and so I offered to screen her. </span>\n\n<span style=\"font-weight: 400;\">(The receive portion of a clean is a full range deep squat taking the full force of a loaded barbell dropping onto the front of the shoulders) </span>\n\n<span style=\"font-weight: 400;\">Screening her was really quite fascinating as she moved really well but still had some of the most common dysfunctions I often see. However the difference with a true athlete like Laura is: </span>\n\n<span style=\"font-weight: 400;\">a). They get it</span>\n\n<span style=\"font-weight: 400;\">b). They do their homework</span>\n\n<span style=\"font-weight: 400;\">c). They can see the difference in their performance</span>\n\n<span style=\"font-weight: 400;\">d). They LOVE anything that gives them an edge!</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"alignnone wp-image-31185 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/04/Screenshot-2022-01-26-at-11.34.54-300x212.png\" alt=\"\" width=\"464\" height=\"328\" />\n<h3></h3>\n<h3>The Solution</h3>\n<span style=\"font-weight: 400;\">The buzz I personally get is seeing performance improve using simple techniques from the iMoveFreely</span><span style=\"font-weight: 400;\">®</span><span style=\"font-weight: 400;\"> programme. Would you believe a low grade 20% effort muscle energy technique (<a href=\"https://www.biomechanicseducation.com/1333-2/\" target=\"_blank\" rel=\"noopener\">Ribot-Ciscar et al, 1991</a>) for the pelvis and then pec minor, were 2 of the key influencers on improving her clean receive position!? </span>\n\n<span style=\"font-weight: 400;\">Just brilliant!!</span>\n\n<span style=\"font-weight: 400;\">Easy to perform anti spasms, nerve mobilisations along with specific and very ‘pure’ joint mobility techniques, really DO enable ‘capacity’ for movement throughout ‘the integrated system’.</span>\n\n<span style=\"font-weight: 400;\">This little pocket rocket is already making waves in the comps! She is now a PT and Olympic Lifting Coach at a local Strength and Performance Gym in Nottingham called </span><a href=\"http://rwfgym.co.uk\"><i><span style=\"font-weight: 400;\">REAL WORLD FITNESS</span></i></a><i><span style=\"font-weight: 400;\">.</span></i>\n\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-1747\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-07-at-16.16.47-300x194.png\" alt=\"\" width=\"459\" height=\"297\" /></p>\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">She is such a determined and committed lifter that she spends quality time on smart training. She worked on the iMoveFreely</span><span style=\"font-weight: 400;\">®</span><span style=\"font-weight: 400;\"> techniques I gave her and within literally just 2 weeks she saw a great improvement in her front squat position and clean technique without gaining any body weight herself.</span>\n<h3>The Result</h3>\n<span style=\"font-weight: 400;\">With her Gold Medal for the British Championship now in place, she really is growing in confidence about what she can be truly capable of. Clearly it is not ALL down to the iMoveFreely</span><span style=\"font-weight: 400;\">®</span><span style=\"font-weight: 400;\"> programme but also the blend of fabulous coaches involved in Laura’s training. All will have a had an impact in some small way even though ultimately it is Laura who has done ALL of the hard work. </span>\n\n<span style=\"font-weight: 400;\">Developing her capacity, patterns, skill, technique, power, strength and performance. This fabulous athlete now invests in coaching from the A.M.A.Z.I.N.G Cyril Martin (my first ever lifting coach whom Laura originally recommended to me) and together they will, I am confident, take her back to the podium!</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-1746\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-07-at-16.16.54-271x300.png\" alt=\"\" width=\"322\" height=\"356\" /></p>\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So if YOU have clients like Laura</span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">If YOU would like to work with clients like Laura</span>\n\n<span style=\"font-weight: 400;\">OR</span>\n\n<span style=\"font-weight: 400;\">If you simply want to help people to improve their performance then come along, join us and learn the very screens and exercises I used to improve her movement.</span>\n\n<a href=\"https://bit.ly/3ACboJh\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">START by clicking HERE</span></a>','[Case Study] Elite Lifter Laura Hewitt','','inherit','closed','closed','','2530-revision-v1','','','2024-07-16 11:26:34','2024-07-16 11:26:34','',2530,'https://biomechanicseducation.com/?p=38816',0,'revision','',0),(38817,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<span style=\"font-weight: 400;\">It is a daily struggle for PT’s with different clients, who have different bodies, different mobility issues and different goals. The one major questions is; which assessment/s should we use to identify the best exercise programme?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">At level 3 we are taught simple tests like sit and reach, body composition or RPE but this still doesn’t really identify which exercises are good, or maybe bad, for the biomechanics of each individual client.</span>\n\n<img class=\"aligncenter size-medium wp-image-1736\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/Im48-300x108.png\" alt=\"\" width=\"300\" height=\"108\" />\n\n<b>Intrinsic Biomechanics </b>\n\n<span style=\"font-weight: 400;\">To understand this better imagine an example like this:</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">1) You look at your clients squatting and their knee caves inwards.</span>\n\n<span style=\"font-weight: 400;\">2) You ask yourself WHY? And yet there are a multitude of reasons why it </span><i><span style=\"font-weight: 400;\">might</span></i><span style=\"font-weight: 400;\"> happen.</span>\n\n<span style=\"font-weight: 400;\">3) You might prompt them with verbal cues on how to correct their movement, but this starts to hurt them, or rotate them, or just doesn’t work.</span>\n\n<span style=\"font-weight: 400;\">4) So what happens? We tend to lose confidence as to whether we should be asking them to squat at all.</span>\n\n<span style=\"font-weight: 400;\">5) Rather than simply trying to coach </span><i><span style=\"font-weight: 400;\">better technique, </span></i><span style=\"font-weight: 400;\">we should ALL have the skills to identify if the cause is actually something intrinsic ‘stacked up wrong’ due to our lifestyle. The </span><i><span style=\"font-weight: 400;\">intrinsic</span></i><span style=\"font-weight: 400;\"> part relating to the 3 sub-systems also known as the neuro-musculoskeletal system.</span>\n\n<img class=\"aligncenter size-medium wp-image-1737\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/04/musculoskeletalpic-300x296.png\" alt=\"\" width=\"300\" height=\"296\" />\n\n&nbsp;\n\n<b>Knowing Which, When and Who?</b>\n\n<span style=\"font-weight: 400;\">So wouldn’t it be more helpful, and increase our confidence, if we had access to neuro-musculoskeletal assessments that we could use with our clients from day one?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Assessments that would allow us to identify how </span><i><span style=\"font-weight: 400;\">prepared for movement</span></i><span style=\"font-weight: 400;\"> our clients bodies actually are, how much </span><i><span style=\"font-weight: 400;\">capacity</span></i><span style=\"font-weight: 400;\"> they have and when we actually need to do some more work on the 3 subsystem\'s to prepare them.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well they exist, but unfortunately, you don’t get taught about these neuro-musculoskeletal assessments in your level 3 training.</span>\n\n&nbsp;\n\n&nbsp;\n\n<b>Nate Agrees With Us </b>\n\n<span style=\"font-weight: 400;\">This isn’t just my view, there are other knowledgeable people out there who advocate the skills we give to PT’s. Nate also agrees with us…</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“This allows them to get better results, far quicker” Nate.</span></i>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">Who the hell is Nate?</span></i><span style=\"font-weight: 400;\"> I can hear you thinking. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well Nate works with </span><a href=\"http://www.otpbooks.com/\" target=\"_blank\" rel=\"noopener\"><b><i>On Target Publications</i></b></a><span style=\"font-weight: 400;\"> which is one of the awesome resources I found during my research in the Gracovetsky/McGill debate. Here he describes nicely how he views the problem we, as PT’s, face;</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">“</span><i><span style=\"font-weight: 400;\">Assessments are powerful tools that allow coaches and trainers to identify the big issues holding their clients back. By arming them with the right information, assessments allow coaches and trainers to develop individualised strategies to efficiently attack the problems their clients struggle with. This allows them to get better results, far quicker. The problem for many coaches and trainers, however, is knowing which assessments to use, when, and with which clients. You see, hundreds of assessments covering a range of areas, including body composition, general health, flexibility, mobility, stability, speed, balance, endurance, power, strength and agility are available for coaches and trainers to use. And for many coaches and trainers—especially less experienced ones—this can be intimidating and confusing.</span></i><span style=\"font-weight: 400;\">” Nate. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">To be fair to Nate, he was promoting strength coach, Dan John’s book </span><b>‘</b><b><i>Can You Go’</i></b> <span style=\"font-weight: 400;\">(one that I highly recommend by the way, </span><a href=\"https://www.amazon.co.uk/Can-You-Go-Assessments-Everybody-ebook/dp/B00WOQBSG8\"><span style=\"font-weight: 400;\">just click here to get it from amazon!</span></a><span style=\"font-weight: 400;\">), but it was comforting to know that as an education company, Biomechanics Education Ltd is tackling an obvious and common problem for us all!</span>\n\n<img class=\"aligncenter size-medium wp-image-857\" src=\"https://biomechanicseducation.com/wp-content/uploads/2016/05/Screen-Shot-2016-05-09-at-14.59.09-300x206.png\" alt=\"\" width=\"300\" height=\"206\" /><img class=\"aligncenter size-medium wp-image-1710\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-27-at-11.06.01-2-248x300.png\" alt=\"\" width=\"248\" height=\"300\" />\n\n&nbsp;\n\n<b>What I Wanted To Bring To YOU This Week</b>\n\n<span style=\"font-weight: 400;\">If this kind of topic interests YOU...</span>\n\n<span style=\"font-weight: 400;\">If YOU are a human movement geek...</span>\n\n<span style=\"font-weight: 400;\">If YOU enjoy studying and discussing human movement...</span>\n\n<span style=\"font-weight: 400;\">If YOU would like to learn in an inclusive classroom - where no question is a stupid one…</span>\n\n&nbsp;\n\n<b>Then THIS Might Interest YOU!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Professionals who invest time in our classroom have stated:</span>\n\n&nbsp;\n\n1) How simple our screening ‘SYSTEM’ is\n\n<span style=\"font-weight: 400;\">2) How easily they are able to monitor their clients progress</span>\n\n<span style=\"font-weight: 400;\">3) How quickly they get results</span>\n\n<span style=\"font-weight: 400;\">4) How surprised they were at how much they learned</span>\n\n<span style=\"font-weight: 400;\">5) How it hugely helps their own confidence</span>\n\n<span style=\"font-weight: 400;\">6) How much they valued the support they received before, during and after their training</span>\n\n<span style=\"font-weight: 400;\">7) How it expands their technical language to communicate with different professionals for referral  </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you would like to learn ‘The System’<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"> CLICK HERE</a>.</span><b></b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let us know your thoughts on the Gracovetsky/McGill debate, <a href=\"https://www.biomechanicseducation.com/why-doing-your-own-research-could-lead-you-to-become-a-better-coach-even-if-you-think-youre-a-non-academic-like-me/\" target=\"_blank\" rel=\"noopener\">CLICK HERE </a>to see the blog.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400; color: #3366ff; text-decoration: underline;\">Become a Biomechanics Coach™ today… Find out more, <a style=\"color: #3366ff; text-decoration: underline;\" href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a>.</span></span></p>\n<p style=\"text-align: center;\"><a href=\"https://www.instagram.com/biomechanics_education/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1717 alignnone\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/aquicon-icon-18718-300x300.png\" alt=\"\" width=\"116\" height=\"116\" /></a><a href=\"https://www.instagram.com/biomechanics_education/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1718 alignnone\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/aquicon-icon-18774-300x287.png\" alt=\"\" width=\"120\" height=\"115\" /></a><a href=\"https://twitter.com/biomechanicsedu\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1716 alignnone\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/aquicon-icon-18708-300x300.png\" alt=\"\" width=\"120\" height=\"120\" /></a></p>\n<p style=\"text-align: center;\"></p>','The Struggles Being A Personal Trainer','','inherit','closed','closed','','2288-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2288,'https://biomechanicseducation.com/?p=38817',0,'revision','',0),(38818,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','If you are a group exercise fan, instructor or personal trainer the International Fitness Showcase (IFS) at the Blackpool Winter Gardens was where it was ALL happening last weekend!\n\n&nbsp;\n\n<img class=\"aligncenter size-medium wp-image-1699\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/IMG_8292-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\n\n&nbsp;\n<h3>Friday Was The Boy’s Day</h3>\nFriday was the first day of the Spinning® convention inside IFS. Biomechanics Coaches™ and Master Trainers, Tom Waldron and Chris Kitson arrived for the day and also to present on behalf of Biomechanics Education.\n\n&nbsp;\n\nUp first was Chris, who is also an Osteopath, with ‘Why Your Flexibility Routines DON’T Work’.\n\n&nbsp;\n\n<img class=\"aligncenter size-medium wp-image-1705\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/IMG_7959-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\n\n&nbsp;\n\nThen Tom, who also teaches the Franklin Method &amp; Pilates, was on later in the day with ‘Why You’re Exercising Wrong’.\n\n&nbsp;\n\n<img class=\"aligncenter size-medium wp-image-1704\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/IMG_7999-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" />\n\n&nbsp;\n\nBoth session were full and not only was the feedback fantastic, the boys energy was infectious as they obviously enjoyed themselves!\n\n&nbsp;\n\nWendy Arthan, also a Master Trainer and Biomechanics Coach™ who also runs her own facility, did an amazing job manning the stand and offering free screens to the event attendees interested in what we do within the academy.\n\n&nbsp;\n\n<img class=\"aligncenter size-medium wp-image-1703\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/IMG_8022-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" />\n\n&nbsp;\n\nWe all had such a great day catching up AND discussion global domination ;)\n\n&nbsp;\n<h3>Saturday Was ALL About Making Things Simple</h3>\nOn Saturday my session first thing was fully booked and had such a diverse range of attendees from class participants with absolutely no anatomy training or knowledge, to L2 fitness/gym instructors and L3 PT’s, with one sports therapist.\n\n&nbsp;\n\nConsidering my session was called ‘Movement Analysis Made Easy’ I thought … ‘wowzers, how do I pitch this?’.\n\n&nbsp;\n\nAnyway, as I set the tone of the session, I explained that we were going to analyse ‘group actions of muscles’ without using ANY names of muscles.\n\n&nbsp;\n\nWhenever I teach, present or lecture, I always try to remember how I had felt as a learner or attendee in this type of environment. While not an unconfident character (as some of you may have guessed), I would however feel very anxious that I would be picked out to give an answer, that I might not know, and I would then look stupid in front of everyone else. I always thought everyone else knew so much more than me and were much smarter than me.\n\n&nbsp;\n\n<img class=\"aligncenter size-medium wp-image-1701\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/IMG_8291-169x300.png\" alt=\"\" width=\"169\" height=\"300\" />\n\n&nbsp;\n\nMy challenge (in my own head) is ALWAYS to include and connect positively with, every single audience member in some way. To remember, and to use, as many of their names as possible. To offer an inclusive learning environment where healthy discussion allows everyone to have a go. To NOT judge if someone gets it wrong or isn\'t quite right, but to praise the effort to try and share their thoughts. To encourage and facilitate discussion rather than to ‘tell people what I know’. To embrace a learner lead environment where we ALL learn from each other.\n\n&nbsp;\n\nTHIS is MY purpose.\nTHIS is what the Biomechanics Education ethos is about.\nWE give YOU the opportunity to learn, expand and grow your confidence and knowledge in the field of human movement, also known in our academy as intrinsic biomechanics.\n\n&nbsp;\n<h3>Why Analyse Movement?</h3>\nSo after my introduction to the purpose of the session I started by asking the group; “Why Analyse Movement?” …to reduce risk and improve performance… the group decided… Great!\n\n&nbsp;\n\n“So What’s The Problem?”, I asked… The problem is identifying what is influencing what, when you can’t see what’s actually happening inside the body. We all agreed!\n\n&nbsp;\n<h3>It’s All A Hypothesis!</h3>\nNo one REALLY knows, I explained, everyone (even the ‘experts’) are guessing from the ‘input/output’ studies, from cadaver studies and logical analysis and this is actually the best we have got.\n\n&nbsp;\n\nWell if it’s THAT complex and challenging how about we simplify it down to that great “SO WHAT?” question?… I suggested to the group.\n\n&nbsp;\n\nAs ‘movement specialists’ we don’t really NEED to know that anatomy of the muscles (we SHOULD know it), BUT in the meantime, while we find ways to remember it, why not use this technique to understand movement first...\n\n&nbsp;\n\n<img class=\"aligncenter size-medium wp-image-1702\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/IMG_8290-169x300.png\" alt=\"\" width=\"169\" height=\"300\" />\n\n&nbsp;\n<h3>The Session Went Like This</h3>\n<strong>Example 1 - Shoulder Abduction.</strong>\n\nWe discussed what GROUPS of muscles were the agonists, antagonists, fixators and dynamic stabilisers. i.e. The shoulder abductors, the shoulder adductors, trunk fixators.\n\n&nbsp;\n\nWe added the question, “Which part of the trunk is working hardest due to the load?”… Cobwebs were being brushed away for some people here but I could literally SEE them mentally processing the discussion. We got to our conclusion then moved on to the next one.\n\n&nbsp;\n\n<strong>Example 2 - Supine Leg Lift (30 degrees).</strong>\n\nAgain we discussed agonists, antagonists, fixators and dynamic stabilisers.\n\n&nbsp;\n\nInitially some people had opposing views until we explored their justifications for their answers. This allowed a few of the attendees to offer their ideas to then find the answer that they then all agreed on.\n\n&nbsp;\n<p style=\"text-align: center;\"><em><strong><a href=\"https://biomechanicseducation.clickfunnels.com/release-low-back5jirv1qh\" target=\"_blank\" rel=\"noopener\"> &gt;&gt; Download your own free Low Back Releases including leg press &amp; pelvic tilt by clicking here &lt;&lt;</a></strong></em></p>\n&nbsp;\n\n<strong>Example 3 - Side Lying Hip Abduction.</strong>\n\nAh ok starting to get a bit of a flow now…. still a few questions initially but the process was becoming quicker. More and more started to join in, less afraid to have a go due to the inclusive environment they realised they were in.\n\n&nbsp;\n\n<strong>Example 4 - Prone Kneeling Hip Extension.</strong>\n\nA much quicker response BUT they were now correcting and discussing with each other as a group.\n\n&nbsp;\n\nFinally;\n<strong>Example 5 - Hip Hitch.</strong>\n\nConfused looks all round as they tried to work out the joints moving and the actions involved…. hip elevation? adduction? femur rotation? So we broke it down again and gradually the group worked out exactly what the actions were.\n\n&nbsp;\n\nSo while I’d had initial reservations about the mixed ability group, by the end of the session almost everyone had taken part in some way. Even the non fit pros had been involved!\n\n&nbsp;\n\nFor the rest of the day I was networking with all sorts of fascinating people!\n\n&nbsp;\n<h3>In fact this is my favourite working weekend of the entire year for several reasons:</h3>\n1) We get a weekend in Blackpool!! (c’mon we all secretly love the place)\n\n2) My long time buddy and a partner in collaboration, Sara Morelli of Athleticum &amp; Spinning®, was there and she is ALWAYS so great to be around.\n\n3) Her A.W.E.S.O.M.E team of Master Trainers are like a family I get to see once a year - many are also trained Biomechanics Coaches™ or Trainers™!\n\n4) 3 of my team, Master Trainers, were there to present and man the stand. Tom Waldron, Chris Kitson and Wendy Arthan.\n\n5) My event staff, the SSSPA Crew, were as always lots of fun including Robbo, Funck, LK, H and Kim.\n\n6) We all get to hang out, talk biomechanics and human movement, meet new people and generally enjoy ourselves while working!\n\n&nbsp;\n<h3>So WHAT?</h3>\nWell if you missed it, you missed out!\nIf you were there, you KNOW what I am talking about.\nIf you WISH you were there, it happens every year!\n\n&nbsp;\n\nMove Freely,\nRachel\n07976933113\nrachel@biomechanicseducation.com\n\n&nbsp;\n<p style=\"text-align: center;\"><strong>Follow Us On Social Media...</strong></p>\n<p style=\"text-align: center;\"><a href=\"https://www.facebook.com/Biomechanics-Education-172683559589454/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1717 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/aquicon-icon-18718-300x300.png\" alt=\"\" width=\"98\" height=\"98\" /><img class=\"wp-image-1716 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/aquicon-icon-18708-300x300.png\" alt=\"\" width=\"97\" height=\"97\" /></a><a href=\"https://www.instagram.com/biomechanics_education/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1718 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/aquicon-icon-18774-300x287.png\" alt=\"\" width=\"98\" height=\"93\" /></a></p>','A Weekend Presenting At The International Fitness Showcase','','inherit','closed','closed','','1698-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1698,'https://biomechanicseducation.com/?p=38818',0,'revision','',0),(38819,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<h3></h3>\n<span style=\"font-weight: 400;\">It’s always healthy to do your research and as you will recall from my previous blog’s, since my school teachers constantly told me ‘</span><i><span style=\"font-weight: 400;\">you’re not an academic</span></i><span style=\"font-weight: 400;\">’, this can take me longer than most to process the technical information in written form. So I often use visual resources like <a href=\"https://www.youtube.com/user/rachfit12/feed\" target=\"_blank\" rel=\"noopener\">YouTube</a>, to help me process and learn new information. Over the last couple of years however, I have also found audiobooks and podcasts to be fantastic resources for learning, processing and absorbing information in the auditory form.</span>\n\n&nbsp;\n\n<span style=\"text-decoration: underline;\"><a href=\"https://www.youtube.com/user/rachfit12/feed\" target=\"_blank\" rel=\"noopener\">Subscribe to Biomechanic Education\'s YouTube Channel by clicking here.</a></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">During my time trawling through these awesome resources as I researched squatting and dead lifting biomechanics, I came across all sorts of fascinating things. The </span><i><span style=\"font-weight: 400;\">fun</span></i><span style=\"font-weight: 400;\"> part was that I discovered that not ALL leaders in this subject area actually agree! This encouraged me to delve even deeper to try and understand both viewpoints. It also meant I did actually even buy more books.</span>\n\n&nbsp;\n<h3>What Happens When World Leader’s In Biomechanics Disagree?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Anyway my research also involved a chat with a friend of mine, <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">Biomechanics Coach™</a> Lawrence Farncombe, who is the head coach for our GB powerlifting team. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We discussed the debate between McGill and Gracovetsky on spine mechanics, the loads and the risk during deadlifting specifically. The fact that those two world leaders in biomechanics completely disagree with each other, was what Lawrence and I were trying to make some sense of. Interestingly this very debate came up again in an online forum recently and a healthy debate was had between several Biomechanics Coaches™.</span>\n\n&nbsp;\n\n<a href=\"https://www.amazon.co.uk/Ultimate-Fitness-Performance-Stuart-McGill/dp/0973501804/ref=sr_1_1?ie=UTF8&amp;qid=1490020052&amp;sr=8-1&amp;keywords=McGill%E2%80%99s+%E2%80%98Ultimate+Back+Fitness+%26+Performance%E2%80%99\" target=\"_blank\" rel=\"noopener\"><img class=\"size-medium wp-image-1674 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/back-mechanic-by-stuart-mcgill-300x250.jpg\" alt=\"\" width=\"300\" height=\"250\" /></a>\n\n<img class=\"alignright wp-image-1675 size-medium\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/The-Spinal-Engine-Full-cover-100-dpi-300x191.jpg\" alt=\"\" width=\"300\" height=\"191\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Basically McGill’s take is that the spine should be ‘stacked’ without deviation (ie flexion or extension) occurring during a loaded movement, which he discuss\'s in his book, </span><span style=\"text-decoration: underline;\"><a href=\"https://www.amazon.co.uk/Ultimate-Fitness-Performance-Stuart-McGill/dp/0973501804/ref=sr_1_1?ie=UTF8&amp;qid=1490020052&amp;sr=8-1&amp;keywords=McGill%E2%80%99s+%E2%80%98Ultimate+Back+Fitness+%26+Performance%E2%80%99\" target=\"_blank\" rel=\"noopener\"><span id=\"productTitle\" class=\"a-size-large\">Ultimate Back Fitness and Performance</span></a></span><span style=\"font-weight: 400;\">. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">\nGracovetsky argues in his book </span><span id=\"productTitle\" class=\"a-size-large\"><span style=\"text-decoration: underline;\"><a href=\"https://www.amazon.co.uk/d/Books/Spinal-Engine-Serge-Gracovetsky-2010-04-27/B01K3K9EKI/ref=sr_1_4?ie=UTF8&amp;qid=1490019930&amp;sr=8-4&amp;keywords=Gracovetsky%E2%80%99s+%E2%80%98The+Spinal+Engine%E2%80%99\" target=\"_blank\" rel=\"noopener\">The Spinal Engine by Serge Gracovetsky (2010-04-27)</a></span> </span><span style=\"font-weight: 400;\">that the thoraco lumbar fascia acts like an hydraulic amplifier so an amount of flexion could be helpful.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">After discussing this over several conversations, both Lawrence and I felt that McGill’s view holds a more favourable reasoning in our opinions, however there are still professionals I have also spoken to in forums who defend Gracovetsky’s view.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It just goes to show, that the best way to determine what works best for you, is by doing YOUR OWN research after finding out about something new, no matter how much evidence there is to back that particular view up. This way you can be sure you’re practicing and teaching the philosophy\'s YOU believe in with YOUR clients and for YOUR own training. If you understand the arguments for and against and you’re able to JUSTIFY your reasoning, it would be a difficult for anyone to challenge you. YOU know YOUR client that YOU care for and ALL the details required to make that decision.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">YOUR knowledge and understanding will allow you to coach better and lead by example. We should NEVER use techniques we don’t fully understand or use simply because… \"</span><i><span style=\"font-weight: 400;\">Rachel said</span></i><span style=\"font-weight: 400;\">…..\" or \"...</span><i><span style=\"font-weight: 400;\">so and so said</span></i><span style=\"font-weight: 400;\">…\" or \"...</span><i><span style=\"font-weight: 400;\">no idea, I heard it on a course</span></i><span style=\"font-weight: 400;\">..\" or \"<em>...I </em></span><i><span style=\"font-weight: 400;\"><em>r</em>ead it somewhere</span></i><span style=\"font-weight: 400;\">…\"</span>\n\n&nbsp;\n<h3>So Find Ways To Process Information Until You Get It:</h3>\n&nbsp;\n\n<b>Personally….</b>\n\n<span style=\"font-weight: 400;\">In videos and the gym I would SEE &amp; FEEL moves...</span>\n\n<span style=\"font-weight: 400;\">In forums and phone calls I would DISCUSS them, hear others views … </span>\n\n<span style=\"font-weight: 400;\">In books I would READ reasoning and technical information…</span>\n\n<span style=\"font-weight: 400;\">The audiobooks, podcasts also NOW feed my auditory learning style.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Which would ALL contribute towards getting a better understanding of a particular debate or concept and allowed me to form some kind of an opinion. </span>\n\n&nbsp;\n<h3>What’s YOUR Problem?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">All too often PT’s, Pilates instructors and other exercise professionals come to us because they ENJOY discussing new research and these topics, but they also feel like they lack some of the knowledge (or resources) required to be able to challenge concepts, ideas or sometimes just to grasp and debate a technical argument. Which isn’t surprising really when even world leaders sometimes don’t even agree...!!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Do YOU feel </span><b>anxious</b><span style=\"font-weight: 400;\"> about YOUR anatomy knowledge...</span>\n\n<span style=\"font-weight: 400;\">Do YOU </span><b>lack confidence</b><span style=\"font-weight: 400;\"> in knowing exactly </span><i><span style=\"font-weight: 400;\">why</span></i><span style=\"font-weight: 400;\"> your clients are moving that way...</span>\n\n<span style=\"font-weight: 400;\">Are YOU looking for a </span><b>deeper understanding</b><span style=\"font-weight: 400;\"> of what’s going on inside your clients bodies..</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Don’t worry! </span><span style=\"font-weight: 400;\">For years I WANTED to learn and read, but I just didn’t feel I had it in me; now I feel like a complete sponge and literally cannot get enough! I now LOVE being able to absorb and learn from various resources. So I now want to encourage YOU, if you feel you are a bit like me and were told, and maybe still believe, you are a ‘non- academic’...</span>\n\n&nbsp;\n<h3>Please Do NOT Doubt Your Intelligence!!</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Take that first step into a fantastic world exploring human movement in our inclusive, resources filled academy and meet a whole network of professionals…</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">...JUST LIKE </span><b>YOU!</b>\n\n&nbsp;\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><b>CLICK HERE</b></a>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Don’t worry if you are nervous about your experience or knowledge level as we will coach you through everything in a way that’s simple to understand. We will re-teach you the anatomy along with reasons to never ever forget it.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Become a Biomechanics Coach™ today… Find out more, <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a>.</span></p>','Why Doing Your Own Research Could Lead You To Become A Better Coach, Even If You Think You’re A ‘Non-Academic’ Like Me.','','inherit','closed','closed','','1666-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1666,'https://biomechanicseducation.com/?p=38819',0,'revision','',0),(38820,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<span style=\"font-weight: 400;\">Yet again I have been really grabbed by my latest audiobook </span><span style=\"font-weight: 400;\">“I </span><i><span style=\"font-weight: 400;\">KNOW</span></i><span style=\"font-weight: 400;\"> WHAT TO DO, SO </span><i><span style=\"font-weight: 400;\">WHY</span></i><span style=\"font-weight: 400;\"> DON’T I DO IT? The new science of self discipline” by Nick Hall PH.D. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Hall is charismatic, funny and really honest about the evidence behind the influence of the way we think about our health and also on how we feel about situations. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is where I say it…. Yes… </span><b>“The Power Of The Mind”</b><span style=\"font-weight: 400;\">… THIS is something I believe strongly in (but clearly need more practice at) and there are industry leaders out there who are far more knowledgeable on this subject than I.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Stephen Aish and Tom Waldron for example BOTH lead sessions at The Movement Convention 2016, with a lot of evidence based information about the benefits and influence of mindset and imagery.</span>\n<h3 style=\"text-align: center;\"></h3>\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-1658\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-13-at-11.47.46-300x163.png\" alt=\"\" width=\"388\" height=\"211\" /></p>\n&nbsp;\n<h3>Have You Fallen Into The Negative Statement Trap?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We as humans, spend a lot of time making statements like this….</span>\n\n&nbsp;\n\n<b><i>“I wish…</i></b>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">..I was thinner</span></i>\n\n<i><span style=\"font-weight: 400;\">..I had more flexibility</span></i>\n\n<i><span style=\"font-weight: 400;\">..I could lift more weight</span></i>\n\n<i><span style=\"font-weight: 400;\">..I experienced less pain</span></i>\n\n<i><span style=\"font-weight: 400;\">..I could squat better</span></i>\n\n<i><span style=\"font-weight: 400;\">..I had more money</span></i>\n\n<i><span style=\"font-weight: 400;\">..I worked less hours</span></i>\n\n<i><span style=\"font-weight: 400;\">..I was not sitting in this traffic jam”</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Thinking this way puts us into a negative frame of mind, that we are LACKING or MISSING out for example. I know I am guilty of this sometimes, especially when it comes to the amount of kilo’s I can chuck over my head in the snatch!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s important to become aware of when we are making these “negative” statements, so we can correct our thought process and mindset.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter size-medium wp-image-1655\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-03-13-at-11.45.20-300x197.png\" alt=\"\" width=\"300\" height=\"197\" /></p>\n&nbsp;\n<h3>How Can You Stop Doing This?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well there is a section in his book where Hall suggests that, when we are in a situation we don\'t like, we should say, or think…</span>\n\n&nbsp;\n\n<strong><i>“I Am Glad I Am Not…”</i></strong>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">… and then add the ‘thing’ you are glad that you are not in, at that moment.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This converts how we feel from a negative state of mind, to a more positive and happier state of mind.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Examples might be...</span>\n\n&nbsp;\n<h3><i>“I Am Glad I Am Not…</i></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">..morbidly obese</span>\n\n<span style=\"font-weight: 400;\">..unable to exercise</span>\n\n<span style=\"font-weight: 400;\">..unable to perform a deadlift</span>\n\n<span style=\"font-weight: 400;\">..in agony that ruins my day</span>\n\n<span style=\"font-weight: 400;\">..unable to squat!</span>\n\n<span style=\"font-weight: 400;\">..as poor as others </span>\n\n<span style=\"font-weight: 400;\">..unemployed</span>\n\n<span style=\"font-weight: 400;\">..in the traffic accident up ahead”</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This simple method of mindset can be SO POWERFUL and is something I have mostly done, due to the way I was brought up of seeing the positive side of any situation, however I will also be the first to put my hand up and say I have fallen into the “negative” trap. Yet, don’t you notice in our industry in particular, we often hear our clients making the negative </span><b>“I wish…”</b><span style=\"font-weight: 400;\"> statements.</span>\n\n&nbsp;\n<h3><b>What Happens When Our Client’s Come To Us With Pain?</b></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we can convert a negative goal into a positive one there is a higher chance of success. For example, when a client comes to us with pain and asks for our help to relieve it. Removing the pain is NOT our remit as exercise professionals, but What we COULD do, is invite them to change their goal to something their pain stops them doing. Ie; squat 60kg or play on the floor with the grandkids. </span>\n\n<span style=\"font-weight: 400;\">YES, you might well be able to improve the way they feel or even reduce their pain. </span>\n\n&nbsp;\n<p style=\"text-align: center;\"><img class=\"aligncenter size-medium wp-image-1654\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/03/blue-skele-man-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" /></p>\n&nbsp;\n<h3>But removing their “pain” still isn’t in your remit!</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Nor should we focus on it, follow it or try to advise PT clients that we can help their pain. If you do, then you could be running a tight rope.</span>\n\n&nbsp;\n\n<i><span style=\"font-weight: 400;\">“He who chases pain, is lost”, </span></i><span style=\"font-weight: 400;\">Karel Lewitt. </span>\n\n&nbsp;\n<h3>So What CAN We Do To Help?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can convert the goal and the promises to be positive ones. For example, we can 100% guarantee we can teach them how to move better or how to improve the way they move.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember, promising what another person can achieve is always going to be ambiguous and risky… BUT THEY NEED TO OWN IT. If they </span><i><span style=\"font-weight: 400;\">don’t</span></i><span style=\"font-weight: 400;\"> take responsibility (coaching attitude and motivation is a lot of what we do, right?) then WE can’t expect success in another individual.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However HALL’s suggestion of changing the way we think about our situation in itself, can completely change how we feel. There are even studies that indicate a change of attitude towards the body has changed pain levels… CRAZY RIGHT? (</span><i><span style=\"font-weight: 400;\">Lorimer Moseley/David Butler - Explain Pain)</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The mindset of our clients is key to the success of the relationship and desired outcome (even if we ask them to change it). This comes from our skills in motivation through education. So remember this, they are paying for your knowledge and skills, so why would you just do the stuff they want or expect?</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><em><span style=\"text-decoration: underline;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\">If you want to get some practical techniques to test your client\'s Pelvic function and mobility, download your FREE 4-sign screen &amp; release right now &gt;&gt;</a></span></em></p>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Stay Happy, Stay Positive Readers!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel</span>\n\n&nbsp;\n<h3>Think Differently!</h3>\n<span style=\"font-weight: 400;\">Become a <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">Biomechanics Coach™</a> today… Find out more, <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">click here.</a></span>\n\n&nbsp;','How A Simple Switch Of Language Can Foster Greater Results','','inherit','closed','closed','','1649-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1649,'https://biomechanicseducation.com/?p=38820',0,'revision','',0),(38821,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<h3>Have you ever wondered…..<i> ‘What Exactly Is The iMoveFreely® Programme?’…?!</i></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Well this blog has been especially written for YOU.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These ‘techniques’, individually, have been around for many years in some form.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We have merged evidence that we collated, with evidence from other world leaders in biomechanics and developed an entire SYSTEM to empower manual therapy and exercise professionals, giving them access to these ‘movement preparation’ techniques. </span>\n\n&nbsp;\n<h2>So What Exactly is The iMoveFreely® Programme?</h2>\nThe iMoveFreely® Programme is a series of low grade exercise technique, which have been designed through over 25 years of research, into a logical, evidence based system that makes exercise prescription safer. It does this by improving movement ability which reduces risk using a very simple pyramid approach to exercise.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Previously these techniques have only been available to high level athletes some 25yrs ago. However, increasingly they are being recognised as the fundamental basics for anyone wishing to achieve the ability to move more freely. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The full programme is made up of the following 3 phases of exercise delivered by </span><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><b><i>Biomechanics Coaches™</i></b></a><span style=\"font-weight: 400;\"> who are able to assess clients and therefore understand WHEN they are ready for certain exercises.</span>\n\n&nbsp;\n<h3>Phase 1. Preparation &amp; Capacity<b> </b></h3>\n<span style=\"font-weight: 400;\">This phase in particular is often named ‘The missing link’ or the ‘foundation for fitness’. This is based upon the fact that the human body is an integrated system. This integrated system means muscles, joints and nerves all affect each other so we must acknowledge and demonstrate this when we prescribe exercises.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The first phase of the iMoveFreely® programme provides low grade, subtle techniques to affect each of these 3 sub-systems and create intrinsic capacity.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This initial series of techniques consists of anti spasm exercises based on Ribot-Ciscar’s work (Jiri Dvorak had the same results from similar studies) using a type of muscle energy technique. There are also a series of nerve mobilisation techniques based on David Butler’s work. These are followed by the ‘pure’ joint mobilisation techniques that isolate (as much as is possible) the joint sections that don’t move so freely.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">These are modified from much of what is seen in our industry today, which is ‘combined’ movements where the body is effectively allowed to </span><i><span style=\"font-weight: 400;\">cheat</span></i><span style=\"font-weight: 400;\"> to produce the required movement. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The aim of this first phase of preparation restores an individual’s capacity around the pelvis and spine so that they are level and moving freely, or correctly, for that individual.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-1479\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.57.16-300x169.png\" width=\"450\" height=\"253\" />\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\"><a style=\"color: #0000ff; text-decoration: underline;\" href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Download your first muscle energy screen &amp; release here for free, called the 4-sign &gt;&gt;</span></a></span></span></p>\n&nbsp;\n<h3>Phase 2. Stability &amp; Control</h3>\nThis secondary phase of training for stability and control, requires phase one’s preparation to give the pelvis and spine their alignment and capacity back. This safety conscious methodology means that risk is reduced when performing any variation of core strength work.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Coming out of the first phase, we advise this is the perfect time to initiate specific, periodised core training, to promote a ‘grooving out’ of the ‘new’ level and moving position of both the pelvis and spine.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We start with principles based on evidence shown in the work of Haines, McGill, Matthews and Cholwewicki’s, who each demonstrated the benefits of a logical series of neuromuscular progressions, which are in the </span><i><span style=\"font-weight: 400;\">continuum of exercise</span></i><span style=\"font-weight: 400;\"> progressions.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This then follows with isometric core ratio exercise programming, which gives our clients a good balanced base of support, around their entire trunk.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finally, the more advanced functional stability exercises are periodised to allow us to confidently create stability and control, while performing more compound moves, taking your clients into their final phase of function and performance.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-1646\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/MG_0055-1-1-300x200.jpg\" width=\"450\" height=\"300\" />\n\n&nbsp;\n<h3>Phase 3. Function &amp; Performance</h3>\n<span style=\"font-weight: 400;\">This third ‘function and performance’ phase takes into account strengthening of the shoulders, knees and feet to allow better ‘function’ to be ‘fit for purpose’. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">With specific exercises based on joint strength ratios of these areas. Here we consider more sport specific movements and (potentially) pre-orthotic conditioning on top of (the now built) solid foundation.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All of which reduces risk and optimises performance ability.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Have you ever wondered if orthotics could actually be damaging your workout performance? Take a look at the blog post I wrote back in January on this very topic &gt;&gt; <span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\"><a style=\"color: #0000ff; text-decoration: underline;\" href=\"https://www.biomechanicseducation.com/custom-fit-insoles-damaging-workout-performance/\" target=\"_blank\" rel=\"noopener\"><strong>“</strong></a></span></span></span><a href=\"https://www.biomechanicseducation.com/custom-fit-insoles-damaging-workout-performance/\" target=\"_blank\" rel=\"noopener\"><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\"><b>Can Your Custom Fit Insoles Really Be Damaging To Your Performance?”</b></span></span></a><span style=\"font-weight: 400;\"> I discuss my visit to meet Trevor and his team at </span><a href=\"http://www.premierpodiatry.com/\"><span style=\"font-weight: 400;\">Premier Podiatry</span></a><span style=\"font-weight: 400;\">.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"color: #0000ff; text-decoration: underline;\"><a style=\"color: #0000ff; text-decoration: underline;\" href=\"https://www.groupxtraining.com/imovefreely-certification\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">If you want to find out the course information for the iMoveFreely®, just click here to register your interest.</span></a></span></span></p>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel</span>\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400; color: #ff0000;\">We need more Biomechanics Coaches™ around the UK… Is it you? Do you have what it takes?</span></a></p>\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400; color: #ff0000;\">Are you prepared to take your professional career to another level?</span></a></p>\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400; color: #ff0000;\">Do you want to become part of a strong inter-professional community?</span></a></p>\n<p style=\"text-align: center;\"><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400; color: #ff0000;\">Become a Biomechanics Coach™ today… <span style=\"text-decoration: underline;\">Find out more, click here.</span></span></a></p>','‘What Exactly Is The iMoveFreely® Programme?’','','inherit','closed','closed','','2287-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2287,'https://biomechanicseducation.com/?p=38821',0,'revision','',0),(38822,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<span style=\"font-weight: 400;\">We are trained at level 2 to understand the hamstring muscle attaches from the knee, to the sitting bone. Then we go onto learn at level 3, that there are in fact 3 hamstrings that attach to the tibia, fibula (knee) and ischial tuberosity (sitting bone) - semitendinosis, semimembranosis and bicep femoris. Is it all coming back to you now? ;-)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">From there we go onto learn that they act like a horse’s reigns on the knees stability. Actually the 3 hamstrings are part of a system that continues upwards from the ischial tuberosity into the sacrotuberous ligament at the back of the pelvis. From here, the tissue blends into the thoracolumbar fascia and crosses over into the opposite latissimus dorsi. This then, inserts into the humerus. Therefore indicating that, via this integrated system, the left hamstring eventually inserts into the right shoulder!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now for some of you this is old news, I recognise that, however for some readers this will be a surprising thought... And it is crazy right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The important bit now, is what you do with that information. I like to call this the “So What?” scenario you come across, whenever you receive new information. There’s no denying it, it can take time to process new information, sometimes known as the Kubler-Ross curve stages of emotion. But when we do receive this new knowledge bomb, we should always ask ourselves, </span><i><span style=\"font-weight: 400;\">“What should I do with this information now that I have it!?”</span></i><span style=\"font-weight: 400;\">. Which means as our brains make sense of it, we need to find a way of understanding it, therefore without the answer to the “SO WHAT?” part this can be challenging.</span>\n\n&nbsp;\n<h3>Are You In Shock Or Denial? Maybe Both?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once we have a </span><span style=\"font-weight: 400;\">reason</span><span style=\"font-weight: 400;\"> to understand something, it makes it easier to process, so to start with, we pass through the stage of shock and denial… “</span><i><span style=\"font-weight: 400;\">WOW is that really true?</span></i><span style=\"font-weight: 400;\">” ... Into the stage of fear and depression… “</span><i><span style=\"font-weight: 400;\">So why wasn\'t I told that previously on my training course?</span></i><span style=\"font-weight: 400;\">”… Finally into the stage of acceptance and moving on… “</span><i><span style=\"font-weight: 400;\">Ah ok so we need a certain level, or layer, of knowledge before we can process this amount of detail?”</span></i><span style=\"font-weight: 400;\">.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is when we arrive into this layer of exploration and understanding that we recognise how little anybody truly knows about the intrinsic body’s capability and function. In fact, much of what we, as exercise professionals work with, is hypothesis. Input versus output, do that and this happens, do this and that happens… and so on.</span>\n\n&nbsp;\n<h3><strong>What’s That… There Are 5 Quads?</strong></h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">I had the luxury of spending some time in a Cadaver Lab some years ago (very limited time I might add), accessing the superb knowledge of the medical lab technicians. Now these guys teach medical students anatomy, so you can imagine their level of knowledge.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We looked at 5 quads and triple-headed biceps inside individual cadavers, 6 orientations of the sciatic nerve and piriformis relationship. There was also an ASIS measuring 26mm on one side and then 14mm on the other side of the same individual. We even saw the striations of fascial connective tissue crossed from the right pec minor into the left hip! It was also just amazing to pick up various sizes of median nerves in our gloved hands and so as we went on, it became clearer and clearer, just how gloriously fascinating and complex human anatomy is. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s just say… My mind was blown! But it is very clear, we are as different on the inside as we are on the outside and no one person is the same intrinsically.</span>\n\n&nbsp;\n<h3>Stay Away From Pain!</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">So when someone spends time doing research to discover the output of an input, to create a value in the hypothesis over many years, you start to realise just how valuable that is to us ALL.</span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-1478 size-medium\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/tulang-ngilu-300x219.jpg\" width=\"300\" height=\"219\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It also makes you realise why </span><b>nothing is the answer to everything</b><span style=\"font-weight: 400;\"> and why we should </span><b>stay open minded </b><span style=\"font-weight: 400;\">and</span><b> utilise other professionals</b><span style=\"font-weight: 400;\">, for best practice and duty of care to our clients. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It also highlights why, in our roles as exercise professionals (and maybe even as therapists), it might be best to </span><b>stay away from the area that hurts</b><span style=\"font-weight: 400;\"> or is sore (generally).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It is certainly not our remit as PT\'s, to be working on the ‘injured\' and yet, with the right training, there is strong evidence to suggest we can take pressure off one body part by working on another area, since MOST of our clients have some low grade niggle or ailment somewhere... Don\'t they?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This is where our anxiety kicks in about what to do with them doesn’t it?! Technically, there are very few people above the age of maybe even 10yrs old these days, that fit within our ‘no medical conditions’ remit!</span>\n\n&nbsp;\n<h3>Proof of The Integrated System</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">As a Biomechanics Coach™, the proof of seeing this this integrated system work right before my eyes, is one of the parts of my job that excites me the most. When I see how working on one area of my clients body, can directly impact upon the movement and capacity of another area, is truly amazing! For example; by releasing their pec minor, it immediately impacts directly upon the depth of my client’s loaded squat. Like WHAT? And by releasing their pec, another great side effect of this too, can potentially also be a reduction in their low grade, no specific back ache.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><strong><span style=\"color: #ff0000;\"><a style=\"color: #ff0000;\" href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\">Do you want to see this in action yourself?</a></span></strong></p>\n<p style=\"text-align: center;\"><span style=\"color: #ff0000;\"><a style=\"color: #ff0000;\" href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\"><span style=\"font-weight: 400;\">Download the Pelvic screen &amp; release, to test your Pelvic function here… You can also use this on your clients to, to start improving their movement &amp; reducing their niggles.</span></a></span></p>\n&nbsp;\n<h3>It’s ALL Hypothesis!</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">How we understand the body to work is still being challenged, and rightly so, since it is almost impossible to KNOW what is happening inside a living person when it comes to their intrinsic biomechanics. Much of our research is done on cadavers, which removes all neural influences and \'live\' reactions when testing. But having access to a tried and tested input/output system, it gives me as a Biomechanics Coach™, an increased confidence in what I can do and what is likely to happen as a result of that.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Of course, it is also impossible to prove that we have </span><span style=\"font-weight: 400;\">prevented</span><span style=\"font-weight: 400;\"> an injury or even merely reduced the risk to our client. However, as a professional, to do what we enjoy with an increased level of confidence, while keeping an open mind, demonstrates good practice and duty of care to our clients (considering what evidence we have to work with), doesn’t it!?</span>\n\n&nbsp;\n<h3>What’s Your View?</h3>\n&nbsp;\n\n<span style=\"font-weight: 400;\">I’m always interested to hear other peoples views on any topic we write about, so please do add your comments below and tell me your thoughts, we are always keen to hear more about research!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are looking for skilled professionals who want to be part of an ever growing team of diversely skilled people working together to improve the way the nation moves. If you want to be considered, have a look at the</span><a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\" target=\"_blank\" rel=\"noopener\"> <b>Intrinsic Biomechanics Association (IBA)</b></a><b>;</b><span style=\"font-weight: 400;\"> for like minded professionals from both the exercise and medical world. Increase your confidence when referring and learn how other professions work for an increased confidence and quality of service for your clients. You can also subscribe to our mailing list for updates on new research, upcoming courses and more!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n\n<span style=\"font-weight: 400;\">Rachel</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">P: 07976 933113</span>\n\n<span style=\"font-weight: 400;\">E: rachel@biomechanicseducation.com</span>','What’s That…? There Are 5 Quads?','','inherit','closed','closed','','1592-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1592,'https://biomechanicseducation.com/?p=38822',0,'revision','',0),(38823,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<span style=\"font-weight: 400;\">It really isn\'t that complicated to be honest, but we do need to consider WHY we/our clients have so many physical complaints. Even as exercise professionals, we often find the lives we lead with technology &amp; transport reducing how we use our bodies, we need to regain responsibility for our own biomechanical health; to set an example to our clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">It’s no secret that the “average healthy adult” spends a good proportion of their day sitting at a desk, driving, travelling or hunched over their phones. Considering that our bodies came from a history of hunting and gathering, it is really no surprise we have started to experience these aches and niggles, is it!? We are no longer leading that lifestyle, so our bodies are slowly trying to adapt to this new sedentary way of living. They just cant adapt quick enough!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If we set an example to our clients by making a few small changes to our own lifestyles (and maybe some bigger ones too), we can reduce our own risk of injury, and then, we can then teach our clients about making the right choices in their lifestyle too.</span>\n\n&nbsp;\n<h2>Feel the benefits from the freedom of movement with these 6 tips:</h2>\n&nbsp;\n<h3>1) Stop carrying our bag on the same shoulder</h3>\n<span style=\"font-weight: 400;\">We wouldn’t necessarily consider going to the gym and only training one side of the body over and over again would we!? Yet we regularly carry our heavy sports bags, shopping bags, laptop bags on the favoured side! This results in the lateral flexors on the spine of the opposite side of the trunk will be working harder than their antagonists, becoming over worked, more tense &amp; creating extra tension on the nerves that side too. </span>\n\nOver time this can result in asymmetrical adaptions that start to become more apparent unless we address the issue.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Trying using a trolley bag or a rucksack.</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-1572 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/cs-bag-causing-back-pain-1440x810-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h3>2) Get a massage regularly (when possible)</h3>\n<span style=\"font-weight: 400;\">Find a good soft tissue therapist and have a massage regularly - the good ones are the ones with a great reputation, they are NOT necessarily the cheapest!!</span>\n\n<span style=\"font-weight: 400;\">It’s the old saying… You get what you pay for.</span>\n\n&nbsp;\n\n<img class=\" wp-image-1573 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/sports-massage-therapy-steyning-300x125.jpg\" alt=\"\" width=\"403\" height=\"168\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h3></h3>\n<h3></h3>\n<h3>3) Ditch your \'fashion\' footwear</h3>\n<span style=\"font-weight: 400;\">Ok maybe a tough one when wanting to wear a certain outfit or if you want to taller!</span>\n\n<span style=\"font-weight: 400;\">However I guess the question is this <em>\"how much fun you gonna have sitting at home with back pain looking at those pretty high heels in the bottom of your wardrobe?\"</em></span>\n\n<img class=\"size-medium wp-image-1574 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/high-heels-for-women-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also not ALL shoes are good for ALL feet.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Get your feet assessed properly for advice on the best footwear for your foot function. <span style=\"text-decoration: underline;\"><span style=\"color: #0000ff;\"><a style=\"color: #0000ff; text-decoration: underline;\" href=\"https://www.biomechanicseducation.com/custom-fit-insoles-damaging-workout-performance/\" target=\"_blank\" rel=\"noopener\">Read my post here on my visit to Premier Podiatry and the \"need to know\" behind custom orthotics.</a></span></span> If you have a loose MidTarsal Joint you probably shouldn\'t wear, let’s call them \'finger\' shoes (you know the ones I mean), ballet pumps or converse. Trevor Prior at Premier Podiatry Ltd is someone I would strongly recommend because he does not just try to sell you orthotics, he gives you the best advice.</span>\n\n[caption id=\"attachment_1575\" align=\"alignleft\" width=\"300\"]<a href=\"https://www.biomechanicseducation.com/custom-fit-insoles-damaging-workout-performance/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1575 size-medium\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/IMG_4580-300x225.jpg\" width=\"300\" height=\"225\" /></a> My visit to Premier Podiatry. Read the post here.[/caption]\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n<h3>4) See a skilled professional who can assess your whole body<img class=\"size-medium wp-image-1576 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/IMG_7390-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" /></h3>\n<span style=\"font-weight: 400;\">Not to be confused with seeing a medical professional whose job is to assess medical conditions, find someone who understands intrinsic function like a Biomechanics Coach&#x2122; who specialises in movement quality evaluation.</span>\n\n&nbsp;\n\n&nbsp;\n<h3>5) Do what yhey say</h3>\n<span style=\"font-weight: 400;\">Simple = Own it!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We are in the physical conditions we\'re in because of our lifestyles.</span>\n\n&nbsp;\n\n&nbsp;\n<h3>6) Move more</h3>\n<span style=\"font-weight: 400;\">Kind of an obvious one but one we still forget once we are sucked into the TV or computer screen.</span>\n\n<img class=\"size-medium wp-image-1577 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/family-running-together3-300x228.jpg\" alt=\"\" width=\"300\" height=\"228\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also rather than set up all of your things within reach of your desk, move everything away from you so you are reaching and moving more. Offer to make drinks for everyone - ALL the time!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Invest in a raised laptop stand on top of your desk so you can stand (this made a huge difference for me) so your hip muscles are permanently active.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you apply these 6 tips into your daily routine, you’ll see yourself performing better, your range of movement increasing, your recovery improving &amp; so much more. Your clients will also see the benefits if you install this lifestyle into them as well.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n\nRachel\n\n&nbsp;\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">We need more Biomechanics Coaches&#x2122; around the UK… Is it you? Do you have what it takes?</a></span></p>\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Are you prepared to take your professional career to another level?</span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Do you want to become part of a strong inter-professional community?</span></a></span></p>\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><a style=\"color: #0000ff;\" href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Become a Biomechanics Coach&#x2122; today… Find out more, click here.</span></a></span></p>','6 Tips Guaranteed To Improve Your Client\'s Biomechanics','','inherit','closed','closed','','2286-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2286,'https://biomechanicseducation.com/?p=38823',0,'revision','',0),(38824,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','Some time ago I headed down to London to see Trevor Prior and his wonderful team at <span style=\"color: #ff0000;\"><strong><a style=\"color: #ff0000;\" href=\"http://www.premierpodiatry.com/\" target=\"_blank\" rel=\"noopener\">Premier Podiatry</a></strong></span> to be assessed to see if my custom orthotics needed an upgrade. I took my trainers, my inov8 weightlifting shoes (Yes THOSE pink ones on instagram!) and also my favourite casual boots.\n\n&nbsp;\n\n[caption id=\"attachment_1535\" align=\"aligncenter\" width=\"840\"]<a href=\"https://www.instagram.com/biomechanics_education/\" target=\"_blank\" rel=\"noopener\"><img class=\"wp-image-1535 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/Screen-Shot-2017-02-06-at-16.39.52-1024x661.png\" width=\"840\" height=\"542\" /></a> <span style=\"color: #333333;\">Just in case you missed them ;-)</span>[/caption]\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I had been wearing custom orthotics because my feet were uncomfortable at times h</span><span style=\"font-weight: 400;\">owever, there was a lot of conflicting research out there on custom fit insoles/orthotics, which could make our decision on whether we need them somewhat confusing.</span>\n\n<span style=\"font-weight: 400;\">Then one of my learners sent me the one shown below...</span>\n\n&nbsp;\n<h3><b>Let’s Take A Look At This Article About Insoles</b></h3>\n[caption id=\"attachment_1536\" align=\"aligncenter\" width=\"480\"]<img class=\"wp-image-1536 size-full\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/implication-of-articles-blog-.png\" width=\"480\" height=\"640\" /> <span style=\"color: #333333;\">“Runners’ insoles are ‘useless’ at stopping injury”</span>[/caption]\n\n&nbsp;\n\n&nbsp;\n\n<b>Article - </b><b><i>“Runners’ insoles are ‘useless’ at stopping injury”</i></b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The article stated… “</span><i><span style=\"font-weight: 400;\">Shock- absorbing insoles used by runners to reduce impact injuries do not work, according to a study of clinical trials</span></i><span style=\"font-weight: 400;\">”.</span>\n<span style=\"font-weight: 400;\">It mentions…”</span><i><span style=\"font-weight: 400;\">Among long distance runners and physically active defence force personnel, injuries ranged from 19-79%</span></i><span style=\"font-weight: 400;\">”.</span>\n\n&nbsp;\n\n<b>The list of injuries being:</b>\n\n<span style=\"font-weight: 400;\">→ Stress fractures of the shin</span>\n\n<span style=\"font-weight: 400;\">→ Torn Achilles’ tendons </span>\n\n<span style=\"font-weight: 400;\">→ Knee pain</span>\n\n<span style=\"font-weight: 400;\">→ Plantar fasciitis</span>\n\n<span style=\"font-weight: 400;\">→ Inflammation of conceive tissue of the foot</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The study the article was talking about, was published in the </span><i><span style=\"font-weight: 400;\">Journal of Sports Medicine </span></i><span style=\"font-weight: 400;\">and looked at 11 clinical trials relating to orthotics that are designed to re-distribute pressure and change gait.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The study suggested that the orthotics did not reduce injury risk and one study even showed them to increase risk.</span>\n<span style=\"font-weight: 400;\">Please Note; All of the above is taken from this article.</span>\n\n&nbsp;\n<h3><b>My Thoughts </b></h3>\n<span style=\"font-weight: 400;\">It appears that there is an </span><i><span style=\"font-weight: 400;\">assumption</span></i><span style=\"font-weight: 400;\"> these </span><span style=\"font-weight: 400;\">injuries</span><span style=\"font-weight: 400;\"> are coming from the the foot in the first place since no evidence is offered about why, or at least none in the article.</span>\n\n<span style=\"font-weight: 400;\">The writer of the article has a job to do, which is to help sell the paper, while I imagine they are given a limited word count for their piece.</span>\n\n<span style=\"font-weight: 400;\">The article might actually make individuals who could benefit from orthotics feel wary. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There will always be the ‘marketing’ angle of wanting to encourage people to open the email or read the article, by using a juicy title to grab attention. However, content should be unbiased to present an ethical view. if offering a personal opinion, this should be made clear and could also be valid for some justifiable reason when context is given.</span>\n\n&nbsp;\n\nSo as always when reading article (yes even this one) we should keen an open mind and read critically\n<h3><span style=\"font-weight: 400;\">If you are wondering if you need orthotics, </span><span style=\"font-weight: 400;\">as a Biomechanics Coach, </span><span style=\"font-weight: 400;\">I have 2 key tips:</span></h3>\n&nbsp;\n<h2><strong>1) Always seek the advice of specialist first and find out what is right FOR YOU.</strong></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">I would strongly recommend a visit to see someone like Trevor Prior and his team at <span style=\"color: #ff0000;\"><strong><a style=\"color: #ff0000;\" href=\"http://www.premierpodiatry.com/\" target=\"_blank\" rel=\"noopener\">Premier Podiatry</a></strong></span> for several reasons;</span>\n\n<img class=\"alignright wp-image-1547\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/IMG_7422-1024x1024.jpg\" width=\"500\" height=\"500\" />\n\n<img class=\"alignleft wp-image-1546\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/02/IMG_7423-1024x1024.jpg\" width=\"500\" height=\"500\" />\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n→ They have the most up to date and fantastic equipment to be extremely thorough. With not only a gait analysis but also a full series of MSK, ROM &amp; strength tests.\n\n<span style=\"font-weight: 400;\">→ The team are extremely knowledgeable and accommodating.</span>\n\n<span style=\"font-weight: 400;\">→ The explanation of the <strong><span style=\"color: #ff0000;\"><a style=\"color: #ff0000;\" href=\"https://www.biomechanicseducation.com/so-what/\" target=\"_blank\" rel=\"noopener\">‘so what’</a></span></strong> element of what they found in my assessment was relevant and very clear.</span>\n\n<span style=\"font-weight: 400;\">→ They did NOT simply sell me more orthotics!! In fact they encouraged me to first go away and work on some strength issues around my pelvis! My present orthoses were actually doing ok since I am not in pain and injury free. </span>\n\n&nbsp;\n<h2><strong>2) Do some of your own research and don’t simply take 1 article /writers view point.</strong></h2>\n&nbsp;\n\n<span style=\"font-weight: 400;\">Remember you are always welcome to email be about any health or fitness related question on: </span><a href=\"mailto:rachel@biomechanicseducation.com\"><span style=\"font-weight: 400;\">rachel@biomechanicseducation.com</span></a><span style=\"font-weight: 400;\"> I’d love to hear from you.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n<span style=\"font-weight: 400;\">Rachel</span>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><em><span style=\"color: #ff0000;\">Struggling with lower back pain? Are your clients movement patterns a bit funky? Download your Pelvic Screen &amp; Release to start releasing back pain and moving more freely --&gt;</span></em></a></p>\n<a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><img class=\"aligncenter wp-image-1480\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.56.55-300x169.png\" width=\"500\" height=\"282\" /></a>','Can Your Custom Fit Insoles Really Be Damaging To Your Performance?','','inherit','closed','closed','','1534-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1534,'https://biomechanicseducation.com/?p=38824',0,'revision','',0),(38825,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<span style=\"font-weight: 400;\">I have to be honest, the ‘weak’ core assumption is really quite frustrating for me as a fitness professional and yes I KNOW I have written about this before but hey, it’s been the hot topic like </span><i><span style=\"font-weight: 400;\">forever!</span></i>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This obsession with doing ‘core stability’ work well is it really necessary? </span>\n\n<span style=\"font-weight: 400;\">OR </span>\n\n<span style=\"font-weight: 400;\">IF it is then WHEN is it necessary? And HOW would you know?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Research papers around ‘core stability’ work identified as the best method of </span><span style=\"font-weight: 400;\">trunk conditioning</span><span style=\"font-weight: 400;\"> are often conflicting and pretty sketchy to be honest? (Akuthota, Ferreiro, Moore, Fredericson, Krabak, Kennedy). </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let’s explore some definitions;</span>\n\n&nbsp;\n<h2>What is core stability work?</h2>\n<span style=\"font-weight: 400;\">Exercises ONLY done to specifically to improve the cores stability ie planks, bridges, dead bugs maybe?</span>\n\n&nbsp;\n<h2>What is trunk conditioning?</h2>\n<span style=\"font-weight: 400;\">This could be deemed as generic exercises that utilise core stability while you perform a more global muscle exercise for your sport or chosen activity ie squat, clean, running, swimming etc. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">BUT when you ask clients why they WANT to do core stability training, they often say things like:</span>\n\n&nbsp;\n\n<em><span style=\"font-weight: 400;\">“I want a 6 pack”</span></em>\n\n<em><span style=\"font-weight: 400;\">“I have poor posture”</span></em>\n\n<em><span style=\"font-weight: 400;\">“I have back pain (knee pain, shoulder pain ….fill in with any area of the body) and assume, or have been told, it\'s due to a lack of core strength “</span></em>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You get the feeling that if you\'re not doing ‘core stability’ work then it seems you\'re just plain weird!! </span>\n\n&nbsp;\n\n<b>Everyone</b><span style=\"font-weight: 400;\"> wants it, right?!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The question is does </span><b>everyone need it</b><span style=\"font-weight: 400;\">?</span>\n\n&nbsp;\n<h2>Got an injury? Do core stability work...or should you?</h2>\n<span style=\"font-weight: 400;\">Core stability training is being used as the answer to pretty much everything. My class participants and clients are coming to me with their recurring injuries having seen professionals who have advised them. It seems more often than not they insist on core stability training in addition to whatever else they prescribe due to the </span><i><span style=\"font-weight: 400;\">assumption</span></i><span style=\"font-weight: 400;\"> the individual’s core is </span><i><span style=\"font-weight: 400;\">weak</span></i><span style=\"font-weight: 400;\">.</span>\n\n&nbsp;\n<h2>Some Examples;</h2>\n<span style=\"font-weight: 400;\">If you have </span><b>low back pain…</b><span style=\"font-weight: 400;\"> “</span><i><span style=\"font-weight: 400;\">ah you must have a weak core, you should do core stability work</span></i><span style=\"font-weight: 400;\">.”  </span><span style=\"font-weight: 400;\">Very often with no assessment made of the trunks capacity or strength other than verbal questioning. </span><span style=\"font-weight: 400;\">Also very often with little advice on exactly what kind of core stability training.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If you have </span><b>sore knees…</b><i><span style=\"font-weight: 400;\"> “well your core is likely to be weak so do some core stability work.” </span></i><span style=\"font-weight: 400;\">Feet and knees maybe assessed for this client but again often with no assessment made of the trunks capacity or strength. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">If your </span><b>shoulders niggle…</b><span style=\"font-weight: 400;\"> “</span><i><span style=\"font-weight: 400;\">mmmmm ok shoulders need strengthening but also your core doesn’t work properly, planks it is!”</span></i><span style=\"font-weight: 400;\">. Shoulders maybe assessed but again often with no assessment made of the trunks capacity or strength.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This just shows there are far too many</span><i><span style=\"font-weight: 400;\"> assumptions </span></i><span style=\"font-weight: 400;\">that symptoms being caused by a ‘weak’ core , with not enough objectivity to the assessment, in my opinion. </span>\n\n&nbsp;\n<h2>So why does pretty much everyone go on about core stability training?</h2>\n<span style=\"font-weight: 400;\">I believe many professionals make the </span><i><span style=\"font-weight: 400;\">assumption</span></i><span style=\"font-weight: 400;\"> that everyone has a weak core these days so it’s pretty standard to prescribe core stability training work. Maybe they have been unable to find a root cause to the client’s complaint and so this “one answer fits all” type of response, is one that clients don\'t mind hearing.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Let me make it clear at this point that due to our lifestyles many people DO in fact require some kind of core/trunk conditioning. The problem is not enough questions seem to be asked, like; </span>\n\n&nbsp;\n\n<strong>WHEN? WHY? HOW?</strong>\n\n&nbsp;\n<h2>How can you conclude “core stability” training is actually the answer to the symptoms/problems?</h2>\n<span style=\"font-weight: 400;\">So consider exactly, how do any of these symptoms or problems tell you the core is ‘weak’ thus requiring strength work? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Evidence does tell us back pain is more often than not linked to an ‘inhibited’ core, and logic tells us </span><span style=\"font-weight: 400;\">inhibition doesn\'t automatically require strength work</span><span style=\"font-weight: 400;\">.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We also know a common issue intrinsically occurring due to our lifestyles, is the presentation of a </span><i><span style=\"font-weight: 400;\">functionally </span></i><span style=\"font-weight: 400;\">longer leg, caused by a twisted pelvis. This is due to compensations made by any of the joints, muscles or nerves being influenced by sitting, driving etc. There is also a higher incidence of low back pain reported in those with a leg length discrepancy.</span> <span style=\"font-weight: 400;\">(Friberg, Matheson et al, Giles and Taylor)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Logic would suggest this discrepancy requires being ‘uninhibited’ at the root cause first right? E.g. de-rotate the pelvis.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400; color: #ff0000;\">Do you want to learn how to release your client’s back pain with 1 simple exercise? Click here to download your free tutorial video...</span></a></p>\n<a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><img class=\"size-medium wp-image-1480 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.56.55-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></a>\n<h2>Is there ever a time when we might use core stability training?</h2>\n<span style=\"font-weight: 400;\">Well yes of course; when the core has an area that requires an increase in strength, particularly the ratios of strength around the trunk, then we need to strengthen it. Specifically when the core strength ratios have been lost due to lifestyle, injury etc, THEN we need to strengthen it. McGill has done a number of studies on a variety of subjects to understand the norms when it comes to isometric core ratio testing. (McGill 2006)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">But, how many professionals actually consider the fact that all core stability training hits one area of the core more than another?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For example, the Plank is a spinal </span><b>flexor</b><span style=\"font-weight: 400;\"> dominant exercise.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A 4-point kneeling leg/arm extensions are a spinal </span><b>extensor</b><span style=\"font-weight: 400;\"> dominant exercise.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Oh and let’s not forget the lateral </span><b>flexors</b><span style=\"font-weight: 400;\"> which often lose their appropriate strength ratio due to bag and baby carrying type lifestyles. Side planking on the less dominant side only, temporarily, for example would go towards improving this ratio of strength.</span>\n\n&nbsp;\n<h2>Assess the core ratios first</h2>\n<span style=\"font-weight: 400;\">If you can assess the core strength ratios first, </span><span style=\"font-weight: 400;\">then</span><span style=\"font-weight: 400;\"> prescribe an appropriate balance of core stability exercises in relation to those results, to regain the recommended norms of core strength ratios then this is when we might logically use core stability training type exercises.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Did you know for men the ratio of strength between spinal flexors and spinal extensors should be 84% flexor to 100% extensor and for women 72%? (McGill 2006)</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So what?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">There is no evidence (I have found) to suggest muscle definition automatically equals strength, nor equals appropriate core strength ratios.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also who decided what poor posture looks like? WE ARE ALL DIFFERENT!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">No symptoms? Leave it alone and focus on smart programming and changing the lifestyle, maybe? </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">IF they are symptomatic be aware that simply changing the posture (ie the way they stand or look aesthetically) may not reduce or address symptoms. Since it is a very subjective ‘assessment’ as so many things can be contributing to the way you stand/look.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move freely,</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Rachel</span>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400; color: #ff0000;\">Do you want to learn how to test if your client has dysfunction in their pelvis? Click here to understand what that could mean for your client and how to release it...</span></a></p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><img class=\"size-medium wp-image-1480 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.56.55-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></a></p>','Do you REALLY have a \'weak\' core?','','inherit','closed','closed','','1519-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1519,'https://biomechanicseducation.com/?p=38825',0,'revision','',0),(38826,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<h3>By Ken Robinson</h3>\n<span style=\"font-size: large;\">So as you probably already know I am a massive fan of the audio book as great way to take advantage of long car journeys by immersing yourself into a mobile academy.</span>\n\nYou may, or may not, also be aware that Ken Robinson is my all time hero and the person I would most like to have dinner with. If you don\'t know of him please do go and check out his TED talk which is ranked as the most watched of all of them. He is a charismatic and funny presenter yet articulates extremely well his points of view.\n\n<span style=\"font-size: large;\">ANYWAY I have just finished his book \'Out Of Our Minds\', which is the 3rd of his books I have read now after \'The Element\' &amp; \'Finding Your Element\' and I wanted to share a portion of it with you. </span>\n\n<span style=\"font-size: large;\">Robinson is on a mission to improve the education experience since he believes the present one, that most of us experience, leaves many of us feeling less intelligent than we actually are. </span>\n<span style=\"font-size: large;\">Here he states some of his ideas on how \'teaching\' SHOULD be done:</span>\n\n<span style=\"font-size: large;\">Robinson states teachers should be able to \"<em>TEACH \'FOR\' CREATIVITY</em>\".\n<em>\"Facilitating creative work, encouraging independence of judgement, willingness to take risks, be enterprising, persistent and resilient in the face of false starts, wrong turns or dead ends.\"</em></span>\n\nAlso be able to \"<em><span style=\"font-size: large;\">Promote experiments of inquiry and willingness to make mistakes. Encourage generative thought, free from immediate criticism. Encourage expression of personal ideas and feelings.\"</span></em>\n\n<em><span style=\"font-size: large;\">\"Convey an understanding of phases in creative work and the need for time. Develop roles of intuition and aesthetic processes. Encourage learners to \'play\' with ideas, possibilities and facilitate evaluation of ideas.\"</span></em>\n\n\"Enabling learners to be more effective at handling future problems and objectives. Also to deepen and broaden awareness of the self as well as the world and to encourage openness to new ideas.\"\n\n<span style=\"font-size: large;\">Robinson says we should be \"<em>...developing independent creative work, self confidence/independence of mind and capacity to think for self. Helping individuals to identify/discover our creative strengths and capacities.\"</em>  </span>\n\n<span style=\"font-size: large;\">ALL of this resonates profoundly with me growing up being told I was a non academic. Since being open about my own insecurities, how I have dealt with them and then gone on to become Managing Director of an international education company in biomechanics, many of you have confessed to having similar feelings about your own abilities or self belief systems.</span>\n\nSo this Juicemail is for all of YOU, to say I am with you, I am like you and as an education company \'we get it\'! This is why all of our academy learners express their joy at the  inclusive learning experience/environment we provide.\n\nHave an awesome weekend!','\'Out Of Our Minds\'','','inherit','closed','closed','','2285-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2285,'https://biomechanicseducation.com/?p=38826',0,'revision','',0),(38827,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','Have you ever had a client who just cannot move in the way you are coaching them to move?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">No matter what teaching points you give, visual demonstrations you do or stretching you get them to do, they simply lack the </span><span style=\"font-weight: 400;\">ability</span><span style=\"font-weight: 400;\"> to squat or lunge, or at least to do so in a way you feel they should be capable!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Surely the first question that we should be asking ourselves is WHY? Instead of assuming what we are looking at is simply poor technique.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As PT’s we are taught to correct technique, form and the joint positions of our clients to improve the way they move, therefore improve their strength and thus reduce risk, right?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">However it is professionals like US who continually ask ourselves the question WHY that are drawn to further educating ourselves by reading blogs and articles and by attending extra workshops. We can be found seeking out more information &amp; knowledge rather than simply continuing to try to change or force our client’s movement.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">WE want more answers to the ‘WHY’s’ because we recognise that weird lunging movement they are doing may not be simply because of bad technique.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">I KNOW you are one of these professionals because you are reading this ;)</span>\n\n&nbsp;\n<h3><b>Are You Ill Equipped?</b></h3>\n<span style=\"font-weight: 400;\">Without knowing WHY someone is moving the way they are, we are surely ill equipped to address their ‘poor’ movement or lack of capacity.  This is surely a job for the PT!?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">For many years I myself worked on the </span><i><span style=\"font-weight: 400;\">assumptions</span></i><span style=\"font-weight: 400;\"> that I was taught in my basic L2/3 training. If a muscle appeared short we stretch it, if it appears weak strengthen it, if someone cannot perform a movement; repeat coach repeat coach repeat - right!?</span>\n\n<img class=\"wp-image-1494 size-full aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/muscles-stretching-3.jpg\" alt=\"muscles-stretching-3\" width=\"600\" height=\"337\" />\n\n<span style=\"font-weight: 400;\">In my experience, my </span><i><span style=\"font-weight: 400;\">assumptions</span></i><span style=\"font-weight: 400;\"> were just not good enough because some people just didn’t improve, didn’t get stronger or didn’t move better. Some just looked downright uncomfortable! I just KNEW this wasn’t enough!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Instinctively we recognise there has to be more to their inability to move than we may actually have the skills for. Discovering the ability to remember and retain our anatomy knowledge, combined with gaining a good understanding of how the intrinsic biomechanics of that individual are influencing their movement can give us more confidence, more results, therefore more referrals, more clients and so increase our income - or treble it in fact as I did!</span>\n\n&nbsp;\n<h3><b>Life Changing Knowledge Bombs</b></h3>\n<span style=\"font-weight: 400;\">Recognising that not all short muscles need stretching was quite profound for me coming from a dance background that was ALL about flexibility and stretching. To discover that stretching some muscle dysfunction can actually compound a problem was a knowledge bomb that blew my mind and was truly life changing. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also learning that ‘weakness’ is a very broadly used term and can have several different meanings or causes that don’t automatically require strength work also completely changed the way I practiced.</span>\n\n&nbsp;\n<h3><b>What Is Weakness Anyway?</b></h3>\n<span style=\"font-weight: 400;\">A common ‘weakness’ could be an inhibition of a muscle, coming from the antagonist being dysfunctional. Would you want to strengthen a muscle that is inhibited? Well probably not initially at least. First you would want to remove the inhibition to then give the muscle its ‘capacity’ for strength back, don’t you agree?</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The inhibition could be come from several root causes; muscle spasm of the ‘weak’ muscle, muscle spasm of its antagonist as in the example above (remember the law of reciprocal inhibition?), tethered nerves and/or stiff joints to name a few. None of which require strength work initially even though they may be </span><span style=\"font-weight: 400;\">seen</span><span style=\"font-weight: 400;\"> as a ‘weakness’.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">All of the above could directly impact upon the way your client moves of course and yet we might be asking them to repeat a movement in an endeavour of improving their ‘technique’ which could actually be the wrong thing to do in an effort to improve it. However hopefully you can see how there can be more to that weird lunge than simply bad technique, posture or form.</span>\n\n&nbsp;\n<h3><b>Change The Way You Think - Start With WHY?</b></h3>\n<span style=\"font-weight: 400;\">So maybe a good place to START would be to rule out &amp; correct dysfunction FIRST. To do this we need some way of measuring capacity and function. Once we have screened our client we can then apply our knowledge of corrective exercise techniques.  This then gives our client the CAPACITY to move. We then re-measure and upon observing improved movement we can apply our verbal and visual technique coaching.</span>\n\n&nbsp;\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">Do you want to increase your confidence in assessing capacity and function for your clients?....</span></p>\n<p style=\"text-align: center;\"><span style=\"text-decoration: underline;\"><span style=\"color: #ff0000;\"><a style=\"color: #ff0000;\" href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><span style=\"font-weight: 400;\">Check out the 4 Sign screen and exercise to get you started. Just CLICK HERE &gt;&gt;</span></a></span></span></p>\n<p style=\"text-align: center;\"><a href=\"https://biomechanicseducation.clickfunnels.com/4-sign-pelvic-release-video\" target=\"_blank\" rel=\"noopener\"><img class=\"alignnone wp-image-1479 size-large\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.57.16-1024x576.png\" alt=\"Screen Shot 2017-01-13 at 10.57.16\" width=\"840\" height=\"473\" /></a></p>    	','Why Can’t They Lunge..?','','inherit','closed','closed','','2284-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2284,'https://biomechanicseducation.com/?p=38827',0,'revision','',0),(38828,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<h3><b>Accuracy Of Diagnosis Is Only 15-20%</b></h3>\n<span style=\"font-weight: 400;\">Back pain is as common as a headache, according to researchers in Australia; in fact, up to 80% of us will have back pain at some time in our lives, and rugby players are no exception.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">A recent study also showed that if you see a GP with back pain, who then refers you to a specialist, who in turn sends you for X-rays and MRI scans, the accuracy of diagnosis is still only 15-20%, a frightening fact. Unfortunately, the principles of modern medicine mean that the medical profession cannot treat an injury without an accurate diagnosis, so there is little wonder that the incidence of back pain has doubled every decade for the last 30 years.</span>\n\n&nbsp;\n<h3><b>Long Term Back Pain</b></h3>\n<span style=\"font-weight: 400;\">As you can imagine, the problem is worse when you have suffered from back pain for some time, since when you have an injury for more than 6 weeks, another part of the body will start to compensate, giving rise to fresh pains as your condition deteriorates. So you can actually end up with more than one injury due to the mechanical compensations, which makes diagnosis even more difficult. Therefore, we need to shift the paradigm and look at back pain quite differently. </span>\n\n&nbsp;\n<h3><b>Can You Achieve Better Recovery Rates By Looking At The Mechanical Causes?</b></h3>\n<img class=\"aligncenter wp-image-1478\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/tulang-ngilu.jpg\" alt=\"tulang-ngilu\" width=\"450\" height=\"329\" />\n\n<span style=\"font-weight: 400;\">Biomechanics Coaches&#x2122; look at the mechanical causes of back pain, rather than focusing on the pain itself. They have found that they achieve better results by managing the biomechanical causes, than many in the medical profession achieve by treating the symptoms. In fact, independent research has shown that if you see a physiotherapist over a 6 week period for low grade back pain, the average improvement will be around 39% in functional capacity, which is the ability of your back to perform work (New England Journal 1998). If, however, you were to perform an exercise programme to manage the mechanical causes of your back pain, the average improvement would be around 141%, a profound difference and one that cannot be ignored. </span>\n\n&nbsp;\n<h3><b>How Rugby Players Can Actually Help Their Own Back Pain</b></h3>\n<span style=\"font-weight: 400;\">This intrinsic biomechanical approach is rapidly establishing itself as a much more effective method of treating back pain, especially for rugby players. Furthermore, the most interesting aspect of this approach, is that players can be shown how to look after themselves. This reduces the risk of them becoming reliant upon a particular therapist or doctor and, significantly, their compliance with exercise programmes is higher too. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Of course no single method can be the panacea of all ills, but we are finding that once the mechanical causes are addressed, the pain can often subside without treatment to the \'injury\', whatever it might be. Sometimes treatment is also required, although patients find that, once they\'ve committed to an exercise programme that addresses the causes of pain, they are more able to manage the problem themselves. Then, should local treatment still be necessary, it is more likely to be successful, as the mechanical causes are no longer present. </span>\n\n&nbsp;\n<h3><b>Time To Get Practical: The 4-Sign Test</b></h3>\n<span style=\"font-weight: 400;\">So, let us look at one of the most important tests that we use, called the 4-sign test:</span>\n\n1) First, sit on a chair or stool and cross on ankle over the opposite knee.\n\n2) Relax the crossed knee down to a comfortable position\n\n3) To measure, look at the height difference of the crossed knee to the grounded knee, by running an imaginary line through the grounded knee, parallel to the floor and up to your crossed knee; your knee should be only 2-3” higher than this line.\n\n<img class=\"aligncenter wp-image-1479\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.57.16-1024x576.png\" alt=\"Screen Shot 2017-01-13 at 10.57.16\" width=\"650\" height=\"366\" />\n\n<span style=\"font-weight: 400;\">4) Now try the the other leg and see if there is a difference in knee height from the imaginary line, when you compare both sides.</span>\n\n<img class=\"aligncenter wp-image-1480\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.56.55-1024x577.png\" alt=\"Screen Shot 2017-01-13 at 10.56.55\" width=\"650\" height=\"367\" />\n\n<span style=\"font-weight: 400;\">There should be symmetry between the two, with the right side’s range of movement the same as the left. If you have asymmetry, where one knee is higher</span> <span style=\"font-weight: 400;\">than the other, there is an associated 4-sign exercise that will help improve this.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">The asymmetry is caused because there is a muscle in the hip that is tight or in spasm, which can limit movement in the pelvis and, in turn, put more pressure on the back, causing pain. In addition, spasm in this muscle can increase the load on the hamstring, knee and calves, contributing to more injuries or compensations.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">This simple exercise</span><span style=\"font-weight: 400;\">, to reduce spasm in the pelvis, can help the muscle to move again, thereby taking the pressure off these structures. When trying out this 4-sign exercise, make sure you are gentle and do not work at it too hard, otherwise it can be counter-productive.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">As with any new exercise you may experience some discomfort afterwards, although if this is low-grade muscle ache or stiffness that is not usually something to worry about, so keep going. If it is sharper or more severe, you may have overdone the exercise so be more gentle with the contraction next time; if it continues to be painful afterwards, stop the exercise. Should you have pain when you adopt the cross legged position, then simply lift the knee a couple of inches higher and that should take the pressure off. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">You should find that, as you perform this exercise more frequently over the coming weeks, your knee falls lower as you cross your ankle. That should coincide with a reduction in pain or stiffness in the back or pelvis, both when running and during day-to-day activity. You may also find the 4-sign exercise helps with your playing style and tempo, so try it as part of your warm-up and cool-down regimes too.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Move Freely,</span>\n\n<span style=\"font-weight: 400;\">Rachel@biomechanicseducation.com</span>','How To Reduce Your Own Back Pain: The Rugby Edition','','inherit','closed','closed','','2283-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2283,'https://biomechanicseducation.com/?p=38828',0,'revision','',0),(38829,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<h2><strong>Health V\'s Fitness</strong></h2>\n<span style=\"font-weight: 400;\">Previously I have written about the book; ‘Body by Science’ written by Doug McGuff &amp; John Little, for its research and their approach to the point they were making.</span>\n\n&nbsp;\n\nMore recently I read another book and was reminded of a point they make about health and fitness being quite different goals.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">‘Intervention’ by Dan John, is, in my opinion, an investment for any strength training fan. In this book his methods based on 3 decades of experience as a Strength &amp; Conditioning Coach and he comes across as very honest about his failings, which also enhanced his coaching. This is something I am familiar with, as I am sure you are!</span>\n\n&nbsp;\n\n<b>When you get it wrong, you learn!</b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">John explains, with his reasoning, the differences between health and fitness and that many clients do not realise which of these their goal is. This then interferes with the PT’s programming since the client asks for what they THINK their goal is, as opposed to what they’re really trying to achieve.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">John’s view is that </span><em><b>health</b><span style=\"font-weight: 400;\"> is the homeostasis of an organism and </span><b>fitness</b></em><span style=\"font-weight: 400;\"><em> is simply the ability to perform a task</em>.</span>\n\n&nbsp;\n<h3><b>McGuff’s definitions:</b></h3>\n<em><b>HEALTH</b><span style=\"font-weight: 400;\">: Is a physiological state in which there is an absence of disease or pathology and that maintains the necessary biological balance between the catabolic and anabolic states.</span></em>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34945 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/dan-gold-4_jhDO54BYg-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n&nbsp;\n\n<em><b>FITNESS</b><span style=\"font-weight: 400;\">: The bodily state of being physiologically capable of handling challenges that exist above the resting threshold.</span></em>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34941 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/edgar-chaparro-sHfo3WOgGTU-unsplash-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">So the common theme here suggests that your </span><i><span style=\"font-weight: 400;\">health </span></i><span style=\"font-weight: 400;\">and your </span><i><span style=\"font-weight: 400;\">fitness </span></i><span style=\"font-weight: 400;\">are not the same thing. But what is more important to understand, is how they can (and often do) impact upon each other, in both a positive way but also negatively.</span>\n\n&nbsp;\n<h3><b>The Problem</b></h3>\n<b>Example one;</b>\n\n<span style=\"font-weight: 400;\">Training for a marathon demands hours and hours of repetitious high impact activity on hard surfaces for long periods of time. Some would say this is not necessarily the best thing for our joints. Yet many people really enjoy that challenge and feel great for achieving the distance/time they set out to do. So here, their ‘fitness’ goal outweighed the </span><i><span style=\"font-weight: 400;\">health</span></i><span style=\"font-weight: 400;\"> implication of wear and tear on their joints.</span>\n\n&nbsp;\n\n<b>Example two;</b>\n\n<span style=\"font-weight: 400;\">Preparing for a weightlifting competition requires heavy lifting and loading joints beyond what they may have done previously. Again, this is likely to put additional stress on the joints which some would deem a high risk for the body; yet it would bring the individual so much joy should they get to the desired weight they wished to snatch. Therefore the training goal is ‘fit’ for the task rather than the safest for the joints. Your health takes the step back.</span>\n\n&nbsp;\n\n<b>Example three;</b>\n\n<span style=\"font-weight: 400;\">Weight loss generally put, means eating less calories than the body is used to, in order for your body to use it’s own energy supplies to keep your energy going throughout the day. So for many people, losing weight could be a ‘health’ related goal, for example to reduce the risk of diabetes. However, if they also started running to increase calorie expenditure this could start to tip their journey into a ‘fitness’ goal, for example if they decided to enter a race. At this point we would then need to consider the implications of the added calorie expenditure which actually requires MORE food and therefore a higher food intake, just to keep you moving throughout the day, even with weight loss as the goal.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34942 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/jonathan-borba-lrQPTQs7nQQ-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Finding a balance of homeostasis, while maintain optimal health is now necessarily that easy when you think about it..</span>\n\n&nbsp;\n\n<b>The body is a MASTER OF COMPENSATION. </b>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Once the body has adapted, something will change either for better or worse. How you gauge better or worse is an interesting thought when you consider the goal. </span>\n\n&nbsp;\n\n<em><span style=\"font-weight: 400;\">“I completed my first marathon!….. but my knees are shot and it hurts to walk upstairs.”</span></em>\n\n&nbsp;\n\n<em><span style=\"font-weight: 400;\">“I lost 2 stone!….. but I feel shattered ALL the time.”</span></em>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Also, simply being ‘healthy’ may not have the same excitement of a race or competition and therefore it might bring less of a sense of ‘achievement’ as you may never reach a point of satisfaction or completion to the goal set. </span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Now I am not suggesting it is impossible, but as PT’s, exercise and \'fitness\' professionals, it is essential that we have the skills to help our clients </span><i><span style=\"font-weight: 400;\">realistically</span></i><span style=\"font-weight: 400;\">, while keeping their goal in mind. Part of that may be keeping them on track and educating them on the implications of changing their goal as they progress, which is highly likely in many cases. Gaining an understanding of their behaviours which they wish to change and using motivational interviewing and a person centred approach with your clients.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We should have the skills to best prepare our clients for movement, be able to suggest general advice on eating well, ensure our clients exercise efficiently, wisely and safely in order to obtain success in reaching their desired goal but the emotional drivers MUST come from within the client.</span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34938 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/luke-chesser-rCOWMC8qf8A-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n<h3><b>Could We Go As Far As To Say \'Exercise\' Is Bad For You?</b></h3>\n<span style=\"font-weight: 400;\">Well that depends on the alternative!?</span>\n\nAlso \'exercise\' is just one type of <strong>movement </strong>\n\n<span style=\"font-weight: 400;\">Sedentary is </span><span style=\"font-weight: 400;\">not good.</span>\n\n<span style=\"font-weight: 400;\">But ultimately movement in general is good, if its consistent, daily and regular</span>\n\n<span style=\"font-weight: 400;\">As is consuming the right food, of course</span>\n\n<span style=\"font-weight: 400;\">I think you understand where I am coming from, right?</span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34558 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/12/IMG_1564-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n<h3><b>So What Do We Do?</b></h3>\n<span style=\"font-weight: 400;\">Let’s clarify the true desire of the client from the beginning by asking questions that will give more clarity on what their start point and end goal REALLY are, to avoid any assumptions we may make. We should use our soft skills to learn the core of their emotional drivers by asking open questions, ensuring we affirm and reflect the positive language they use to avoid them sabotaging their own success and always summarising back what you understand their goal/s to be.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">We can also educate the client on risks, or possible outcomes of how they can achieve their goal, and the differences between health and fitness so they recognise the importance of moderation and appropriate adaption.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Most importantly, and one of the things Dan John also discusses over and over again, is the importance of assessment and repetition of them REGULARLY! Every 6 weeks at least.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><em>“If you ain’t assessing, you’re guessing”,</em> John states.</span>\n\n&nbsp;\n\n<img class=\" wp-image-34940 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/jennifer-burk-ECXB0YAZ_zU-unsplash-200x300.jpg\" alt=\"\" width=\"326\" height=\"489\" />\n<h3><b>What Kind Of Assessment/s Do You Do Now?</b></h3>\nParQ?\n\n<span style=\"font-weight: 400;\">Weight/Height?</span>\n\n<span style=\"font-weight: 400;\">Waist/Height?</span>\n\n<span style=\"font-weight: 400;\">Sit &amp; Reach?</span>\n\n<span style=\"font-weight: 400;\">Body Fat?</span>\n\n<span style=\"font-weight: 400;\">1 rep max?</span>\n\n<span style=\"font-weight: 400;\">VO2 max test?</span>\n\n<span style=\"font-weight: 400;\">Lifestyle Q&amp;A?</span>\n\n<span style=\"font-weight: 400;\">Food diary?</span>\n\n<span style=\"font-weight: 400;\">Functional movement screens?</span>\n\n<span style=\"font-weight: 400;\">Video analysis?</span>\n\nBiomechanics assessment?\n\nPsychometric testing?\n\nRoland Morris\'s pain questionnaire?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How valid do you feel each of these test are, in relation to your clients start point and end goal? Are they easily replicable?</span>\n\n&nbsp;\n\nDo you feel you are adequately equipped to assess your clients start point?\n\n&nbsp;\n\nCan you regularly and easily re-assess and monitor their progress objectively? critically?\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Assessment and reassessment is vital in demonstrating of both progression and regression to allow you and the client to adapt what is being done whether it be diet, preparation for movement, exercise, number of hrs sleep, routine, recovery, lifestyle factors, psychology and so on.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-29666 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/09/Screenshot-2021-09-28-at-07.31.40-1-300x236.png\" alt=\"\" width=\"300\" height=\"236\" /></span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">Without a clear training goal, which is likely to be either a health OR a fitness goal, and without the ability to assess and monitor we lose \'specificity\' in our planning. We need to be able to celebrate achievement by demonstrating progress throughout with appropriate assessment tools!</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">And remember - One size does not fit all, its always case by case. What may work for 1 client could be completely different to a new client, with every client bringing new goals and challenges.</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\">How exciting it is that we are all so different - don’t you think?</span>\n\n&nbsp;\n\nMove Freely,\n\nRachel.\n\n<hr />\n\n<h1 style=\"text-align: center;\"><b>Would You Like To Be Able To Assess Your Clients Biomechanics? </b><b><a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics-2/\">CLICK HERE</a> To Find Out How.</b></h1>\n&nbsp;\n\n<img class=\"size-medium wp-image-32556 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/IMG_1591-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />','Can Being Fit Stop You Being Healthy?','','inherit','closed','closed','','2280-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2280,'https://biomechanicseducation.com/?p=38829',0,'revision','',0),(38830,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','Ok it IS xmas and everyone feels that they have earned the right to sit on their bums for several days, including YOU, am I right?\n\nWell, ok ok ok some of us might go walking or to the gyms that are open at some point, BUT xmas day is pretty much SIT ON YOUR BUM ALL DAY, DAY don’t you agree?\n\nSo this Juicemail is NOT going to tell you NOT to sit on your bum.\n\nOh no!\n\nI myself will be doing this for at least a full day or maybe even 2.\n\n<b>A Rubbish Secret</b>\n\nHowever let me tell you a really rubbish secret…..even sitting on my bum for a day I KNOW how to keep my pelvis moving freely!!\n\nThe question is DO YOU???\n\nIn fact another question is DO YOUR CLIENTS??\n\nSince they are the people who pay us to get them moving well, pain free and with reduced risk of injury, right?\n\nNow I KNOW one of your biggest problems is not only getting them moving well in the first place but also KEEPING them moving well. So the last thing you want is for all of that hard work to be undone over xmas, isn\'t it?\n\nThe practical skills a PT like YOU can learn in our academy will enable you to educate your clients how they can maintain a freely moving pelvis over the xmas break. This is even possible without getting up from their sofa!\n\nSo my xmas gift to all of YOU is a sample of one for you to use yourselves AND also to pass onto your clients right now or maybe when they came back to you a couple of pounds heavier AND feeling a little bit stiffer…\n\n<b>The 4 Sign Pelvic Function Exercise</b>\n\nSitting on your sofa, cross your right ankle over your left knee, ensure your party hat remains in place.\n\nMake sure your ankle bone is on the outside of the thigh and you’re as relaxed as possible. Maybe even with a mince pie in your left hand.\n\nNow put the wine glass thats in your right hand down on the table and place your right hand on the inside of your right knee. (Don’t worry this will only take 1 minute 20 seconds then you can pick up your wine glass again)\n\nNow while rotating your right knee/leg into your right hand so that your right ankle is also rotating down into the outside of your thigh - understand this movement should be coming from the hip - you can still talk part in the games of charades going on.\n\nIf you are doing this correctly you will be adding pressure with your hand to keep the knee from lifting - so no movement actually occurs. This creates a muscle energy technique.\n\nThis particular one requires ONLY 20% effort which wont feel like a lot, if anything at all - don’t worry this is correct and is also why this technique is so fantastic for doing while you are sitting on your bum next to your sleeping grandma!\n\n<b>How It Is Done</b>\n\nNow hold this with 20% effort as a static contraction for 20 seconds.\n\nRepeat 4 times (maybe even in between slurps of wine)\n\nThen do the same on the left leg.\n\nIf you do this periodically over the days that you are glued to the sofa it should contribute to maintaining at least some of the function of your pelvis.\n\nHigh doses of chocolate and xmas pudding have not been shown to reduce the effects of this pelvic function exercise…\n\n<b>Final Word</b>\n\nPlease do your 4 Sign, enjoy yourselves everyone and <i>KEEP MOVING FREELY!</i>!\n\nWant to LEARN MORE about Pelvic Biomechanics? <a href=\"http://%20https://biomechanicseducation.clickfunnels.com/pelvis-module\">CLICK HERE</a>','Sitting On Your Bum This Xmas?','','inherit','closed','closed','','2279-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2279,'https://biomechanicseducation.com/?p=38830',0,'revision','',0),(38831,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','Approval..\n\nWe all seek it and yet what does it matter what other people think?\n\nFor some reason as a race we have a desire to fit in and be accepted by those around us. If you watch programmes that involve singing or dancing competitions on TV its ALL about acceptance and being voted in. Does this mean we feel liked? Popular? Worthy?\n\nDoes this differ when we are seeking new clients?\n\nAre we not simply in competition with others to be chosen?\n\nPick me!\n\nPick me!\n\nWhy pick me?\n\nBecause I will make you feel valuable, liked, chosen, popular, accepted!!\n\nYes it is like a continuous cycle of being liked, feeling valued and chosen, isn\'t it.\n\nWhat a fascinating thought.\n\nAre the singing show winners the best singers? Not necessarily, but they stand out or catch your heart strings for some reason. They become ‘popular’ for a reason that is generally that they are ‘liked’ and therefore get picked or chosen.\n\nHow do you demonstrate that you are ‘the one’?\n\nHow do you stand out from the crowd?\n\nHow will you become the clients choice?\n\nWell of course it is a bit of a popularity contest.\n\nSo ask yourself what makes YOU pick someone when it comes to choosing your singing competition winner, or more to the point, how do you pick someone when you’re buying services?\n\nConsider that really hard for a moment…\n\nDo you simply pick the cheapest?\n\nDo you pick the nearest?\n\nDo you pick the one with certain certificates?\n\nNone of these guarantee the best service do they?\n\nAnd none guarantee they will make YOU feel valued or accepted.\n\n(BTW How many times has the client asked to show them your certificates?)\n\nYou might read an \'advisor of trips\' for the reviews of best services for your holiday destination! This will be based one service and how well \'looked after\' they were.\n\nChances are you pick the service provider your friend or colleague or the reviews recommend because “<i>they made me feel great and they look after you with excellent service</i>\"\n\nSo what is the best service?\n\nWell I believe going the extra mile is the part we are talking about here.\n\nThe ‘service’ part of being an exercise professional isn\'t necessarily the exercises or the dietary advice specifically because there are millions of people doing that and clients would simply pick the nearest and cheapest.\n\nIt’s the WAY you do it, the WAY you make them feel at each session, and afterwards.\n\nA great service means YOU make your client feel important, valuable, successful and liked or chosen! (Along with the results of course but thats a given if they are paying for your service right?!)\n\nWe empower our clients to achieve things themselves by giving them the right information or details. We inform them fully so they know exactly what to expect and we deliver on our promise every single time.\n\nDo YOU think about how someone makes YOU feel when you are in their company or buy their services?\n\nWhat is it that THEY do to makes YOU feel that way?\n\nMaybe they smile a lot, give eye contact, maybe gently touch your elbow or shoulder as they listen to your every word. Maybe they make you feel important by simply being in your company showing understand of your situation.\n\nDo you want to know how YOU can stand out from the crowd in your profession?\n\nDo YOU want US to PICK YOU to join our community/academy?\n\nDo you want to know HOW to get chosen or picked by ALL the clients in your area?\n\n<a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\">Click here and PICK ME!!</a>    	','PICK ME! (AGAIN by request)','','inherit','closed','closed','','2278-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2278,'https://biomechanicseducation.com/?p=38831',0,'revision','',0),(38832,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','People ask me all the time about insurance cover, now I am not a legal person however I do have insurance policies.\n\nThis information is based upon my very limited knowledge and experience of insurance companies.\n\nSome insurance policies are compulsory, some are a very good idea and others are a waste of time in my opinion.\n\nNow generally we can choose who we take out insurance with for our various ‘potential’ problems, like house insurance incase it burns down or car insurance in case we have an accident.\n\nThis is the same for professional cover in case our client/patient has an accident or problem under our care or guidance for example. THIS is the cover I am going to discuss here.\n\nMy advice to anyone who is wondering about their cover is to ask yourself;\n\nIs it right?\n\nIs it enough?\n\nIs it legal?\n\nThen how do you KNOW this?\n\nThe insurance policy you take out is a legally binding contract between YOU &amp; the INSURER. Not me, not your colleague or mate who says what they have, not even the lady receptionist you chatted to on the phone, just YOU &amp; the INSURER.\n\nWhat this means is that image worst case scenario and an accident happens for example and you need to access that cover…\n\n1). The insurance company will look for a reason NOT TO PAY OUT\n\n2). In a court of law the legally binding contract is the T&amp;C’s YOU agreed with the insurer.\n\n3). The person who suggested which cover to take is not responsible at that point.\n\n4). Neither is the receptionist of the insurance company who told you stuff over the phone.\n\nNow what am I suggesting?\n\nWell YOU are the person responsible for arranging the most appropriate cover and contract with your insurer. If you don\'t like the one they have offered you, go somewhere else. The actual figure you’re covered for SOUNDS impressive at £5 million or £10 million BUT this is not the biggest deal. READ the terms and conditions of what the insurance actually covers YOU FOR.\n\nFor example;\n\nDoes it cover you for being hands on?\n\nDoes it cover you if the client falls off a step in your gym?\n\nDoes it cover every professional skill set you have?\n\nAre YOUR professional skills listed in the T&amp;C’s?\n\nIf you want to know the answer to these questions YOU ask YOUR INSURER then ask if they will write them into the T&amp;C’s. READ IT &amp; DON\'T PAY until YOU\'RE HAPPY. The clauses may already be in there in some form but written a certain way to include the things you need.\n\nYour insurer SHOULD be able to explain this if not find a legal person who can.\n\nIf they are a decent company they should take the time to advise you and create a T&amp;C’s that correlates to YOUR skill set.\n\nWe sat down with Graybrook Insurance Brokers Ltd to discuss the very unique Biomechanics Coaching™ skills. These skills give personal trainers hands on techniques which is something a large group of our learners didn\'t necessarily have in their skill set previously as PT’s and exercise professionals. We wanted to make sure they were covered for the skills we were teaching them.\n\nGraybrook recognised that while this was the case, the clients were in fact safer in our hands than a PT or exercise professional without these assessment skills. So they wrote the title Biomechanics Coach™ INTO the contract T&amp;C’s for us AND even gave us a premium rate that covers ALL their skills sets including manual therapy and group exercise.\n\nSo while we have done SOME of the work for these professionals every single insurance contact is individual and still between YOU and the INSURER.\n\nNow although these types of claims are rare, the right insurance cover is vital to cover any ‘potential’ problem or risk. They offer comfort that your assets are safe and they demonstrate good practice.\n\nThere are other great insurance companies out there, Balens Ltd for example, who are also very accommodating I am told. But do your research for your skill sets.\n\nSo my final piece of advice is this;\n\n<b><i>READ THE CONTRACT BEFORE YOU SIGN</i></b>\n\nI KNOW I KNOW …..the small print\n\nBUT you never know when you might need it and you will need it to be right!    	','Is It Legal?','','inherit','closed','closed','','2277-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2277,'https://biomechanicseducation.com/?p=38832',0,'revision','',0),(38833,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<b>Change How You Feel In A Moment </b>\n\nHaving become a massive audio book fan to make use of the 35k miles I have driven over the last 12 months, I have literally filled my phone with all sorts of fabulous books FILLED with information! As a ‘non academic’ this resource is SO exciting for me and helps me to learn quickly and easily during a time that would normally be wasted. it amazes me that I can get through a book a week some times. With all sorts of subjects from business and marketing to emotional intelligence and communication skills. Me and my buddy and colleague, Chris Wright of Level 10 Living, are always swapping audio book ideas.\n\nHere’s one I would like to share with YOU (for starters)…\n\nRecently I got engrossed in the well known book by Stephen R Covey, ‘<i>7 Habits of Highly Successful People’ </i>and<i> </i>I heard the term ‘<i>Paradigm Shifting’</i>. This term is something we have used in our academy from the very beginning of our course development and design. Covey gives a fantastic example of how to understand this term.\n\n<b>But first what is a ‘Paradigm?’</b>\n\nThe internet says;\n\n<i>A typical example or pattern of something; a pattern or model.</i>\n\n<i>\"society\'s paradigm of the ‘ideal woman’”</i>\n<i>A world view underlying the theories and methodology of a particular scientific subject.</i>\n\n<i>\"the discovery of universal gravitation became the paradigm of successful science”</i>\nIn simple terms I guess it is <i>how you see things in your head.</i>\n\nThis idea would suggest it to be a great way to influence someone else behaviour by offering a new way of seeing a situation.\n\nThe example scenario Covey experienced and explained in his book went something like this;\n\nA man with his 2 kids who were being unruly, running around and disturbing people, while he sat on a bench next to Covey.\n\nCovey was trying to read his paper and felt annoyed by these ‘out of control’ kids thinking to himself.. <i>“why cant he control his kids?”</i>\n\nEventually Covey said to the man..<i>“excuse me but aren\'t your kids a little out of control?”</i>\n\nThe man replies, looking somewhat deflated.. <i>“yes yes I guess I should but well we just left the hospital and their mother just died an hour ago and I guess they don\'t know yet how to deal with it and I guess me too”</i>\n\nCovey’s paradigm shifted in a moment once he heard the plight of this poor family and his annoyance shifted to sympathy.\n\nCovey encourages US to think about how OUR feelings shifted as WE heard or read the story here.\n\nIt is evidence of how ones own perception of a situation can shift instantly the moment we realise the other view point.\n\nSo can we give more detail about how WE view a situation to enable better understanding of the circumstances surrounding it or at least our view of it?\n\nShould we be asking more questions prior to making some kind of judgement?\n\nMaybe we should open our thoughts to differing view points before we make a decision?\n\nImagine your client saying they forgot to do their exercise home work or couldn’t find time to make the healthy dinner we suggested.\n\nHOW ANNOYING!\n\nYou had created a beautiful exercise sheet and paid to get it printed at the post office. Also you had taken the time to explain each one in detail and how to perform them for better movement ability ready for their next session with you. You had spent a good hour last night typing up some really simple healthy recipes for your client to make for the whole family that will contribute to their weight loss goals.\n\nYOU would feel frustrated by the fact they turned up for they next session saying they didn\'t do anything with this wouldn\'t you!?!?\n\nIt REALLY annoys you because it will make YOU look bad as their trainer if your client is not succeeding. GGGRRRRRRR\n\nBUT now consider how you would perceive the situation if you heard this;\n\nThey are struggling to think of anything other than their really sick parent who lives 100 miles away and they had to drive to care for them after they got a call after work that their parent had fallen and couldn\'t get up. So with the kids in the back of the car they had to drive straight there from the school pick up. This also meant they were left wth no time to do their exercises and to shop and create the fantastical healthy (and easy to do) meal you had suggested. Hence the fast food meal they had ended up buying instead.\n\nParadigm shift right?\n\nWe humans are generally empathetic by nature.\n\nAnother example relevant for our industry is that there are so many articles and videos out there that are by people who are not demonstrating an inclusive view point considering ALL of its readers or viewers. What I mean is those articles that suggest that everyone should do one thing, for example;\n\n<i> • squat with toes pointing forward</i>\n\n<i> • women should do more cardio</i>\n\n<i> • everyone should eat paleo</i>\n\n<i> • dairy is bad for you </i>\n\n<i> • orthotics are bad</i>\n\n<i> • stretching is bad for you</i>\n\n<i> • we should all learn to use foam rollers</i>\n\nNone of these statements are considering every person who may squat, like dairy, need orthotics etc.\n\nIt is often a single view point that is offered into our industry about methods of exercise prescription, movement correction, risk reduction or diet etc. The author has usually had an experience that created THEIR belief or idea and maybe this happened to most of the people they knew. So they wanted to tell others in an attempt to help.\n\nYet we are all different!\n\nSome people can eat dairy, some like paleo, some do and some don\'t respond to stretching.\n\nMaybe we should be encouraged to challenge the ideas we hear more, in a positive way of course!\n\nThis would allow us to understand better the thinking behind an idea or view point we hear someone else describe. WE should give clarity on our ideas along with the WHYs.\n\nUltimately this would also allow us, our audience, clients and peers to appreciate better WHY WE feel the way WE do or WHY WE think this way about a certain situation.\n\nSo rather than simply following the crowd maybe we should learn about the thinking behind an idea, method or trend so we can consider logically our own view as to what is right for US or each of our clients - individually.\n\nNo method works for all, ALWAYS case by case or ‘it depends\' on the individual SHOULD always be considered.\n\nDon’t you think?\n\nDo you want to experience an excitingly inclusive learning environment?\n\nWould you like to learn how to positively challenge concepts?\n\nAre you looking for an open minded methodology of exercise prescription?\n\n<a href=\"https://www.biomechanicseducation.com/contact-us/\">CONTACT US HERE</a>\n\nReference; Stephen R Covey, ‘<i>7 Habits of Highly Successful People’</i>    	','Paradigm Shift','','inherit','closed','closed','','2276-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2276,'https://biomechanicseducation.com/?p=38833',0,'revision','',0),(38834,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','Ok so you qualified but....\n\n<b>Do YOU Know Enough..?</b>\n\nSo many of us have found ourselves attending more and more training to try and know as much as possible to help all of our clients to the best of our ability, right??\n\nYet we are still left feeling like we don\'t know enough or maybe we still don\'t have all the answers.\n\nMaybe you\'re just fed up with taking course after course and you just want someone to talk to and maybe refer your clients to?\n\nWhile more and more of us are starting to work together with other professionals, this style of practice should be how we are taught for the best duty of care we can offer. Here are 4 tips on how it could be done...\n\n<b>No 1. Attempt To Open Up Communication With Other Professionals.</b>\n\nThis very simple concept may feel alien to some out there BUT we shouldn\'t feel that we should try and know everything to help our clients. We should get REALLY good at the skills we possess and feel confident to refer out to someone else when we do not find the answer or feel another opinion is required.\n\nTHIS IS OUR DUTY OF CARE..\n\n…and demonstrates our commitment to it. With the clients permission we should share our view on their physicality to best advise them on how to improve their movement ability.\n(Don\'t forget you will need their permission to swap and discuss their personal details with another professional).\n\nSo rather than simply suggesting they go see ‘<i>a therapist</i>’ or someone else, actually refer them to someone you know who has different, but complementary, skills to yours. Build a relationship with practitioners you trust, who are open minded and offer you their thoughts and opinion. Getting their ideas about the issue and discussing their thoughts and yours combined allows you both to come to a joint conclusion of best practice for this individual. This is SO powerful and just makes sense!\n\nThis way YOU learn, THEY learn, the client learns AND neither professional has to worry about doing it alone, while the client gets to experience truly outstanding service.\n\nA blend of minds, experience and skills is surely better than one, right?\n\nForm a working relationship with this professional, and others, to obtain not only more information but referrals FROM them too!! Commercially this is better for you and it is a really confident professional who refers clients away!\n\nThis way each of you can focus on becoming the best you can be at YOUR skill set and service, accessing professional discussion with your ‘partners’ for added confidence in the service/s you provide.\n\nHow many practitioners do you think would turn you away if you approached them and said..\n\n<i>“I want to send my clients to you, are you interested?”</i>\n\nObviously find someone who is willing and open to reciprocate and that you can build trust with. Maybe book yourself appointments with practitioners in your area, for your own interest and based upon how you feel about the way they manage you, approach those that you felt offered a quality, knowledgeable service.\n\n<b>No 2. Get REALLY REALLY Good At Your Skill Set</b>\n\nNow you can focus on being the best at what YOU do. We are all turning into hybrids and this is a good thing to allow us to understand each style of practice;\n\nASSESS - MASSAGE- EXERCISE - TREAT\n\nASSESS - TREAT - EXERCISE - MASSAGE\n\nASSESS - EXERCISE - TREAT - MASSAGE\n\nASSESS - MASSAGE - TREAT - EXERCISE\n\nASSESS - TREAT - MASSAGE - EXERCISE\n\nASSESS - EXERCISE - MASSAGE - TREAT\n\nYou get the idea....\n\nBUT we can’t be great at everything and doing all of this during one session might be a push since the expected time slot is usually an hour.\nBy the way this doesn’t have to be how you work. Many assume the 1hr session protocol just because everyone else does but you might decide to work based on 90 min sessions. So long as this is clear up front and it could be your USP (unique selling point)\n\nAnyway if you do cram all of this into one hour or session then you may well be pushed for doing each really well - I know I would in the 1hr time frame. This could be an issue if you know your client requires all of these. So create a ‘flow’ with your team where by one is the specialist for one area, ie assessment. They then refer to the trainer about which exercises would be good and which can then be based on the assessment results. The exercise professional then refers them to the manual therapist for the hands on part. Hey then refer on to the clinician should an injury or problem arise. The clinician then refers back to the assessment professional for the clients journey back into exercise.  Maybe they need a foot specialist or a sports specific coach!?\n\nHaving massage skills doesn’t mean you have to use them, knowing about foot function and orthotics doesn\'t mean you prescribe them but this knowledge allows you to understand when to refer for this service AND how to communicate with the other professional.\n\nNow you may decide you want to offer 2 or even 3 of these services, but decide which part of the services you are able to offer within your practice appropriately in your scheduling and then refer the rest. BUT do communicate where possible or build a team around you.\n\n<b>No 3. Stay Open Minded - Things Change!!</b>\n\nThe idea that you qualify and TADAAAAH!…you’re done with training is of course out of date. Hence the plethora of CPD’s we are consistently being informed about.\n\nTHINGS CHANGE!\n\nNew ideas or research develops and new ways of doing things become available. So we need to decide when we re-train, sample the new idea and refer or amend our commercial offering. Either way remember you can only do so much really well and also we should find professionals willing to stay up to date too. We should challenge each other AND what we are taught by education providers ALL of the time! Professional open discussion should be inclusive and positive even where challenges might be made about a certain method. To have technical discussions about what is right for the individual, based in the data or evidence available and all thoughts laid out is really quite exciting and fascinating aside for it being BEST DUTY OF CARE for the client.\n\nKeep asking WHY until you understand at depth WHY that idea is better or a great addition or something to consider for that particular client for example.\n\n<b>No 4. Find Trusted Organisations Who Offer Networking Opportunities. </b>\n\nThere are some fantastic organisations out there that have set up as a support and networking system for professionals.\nThe Intrinsic Biomechanics Association (IBA) which has a monthly subscription fee offers at present 4 free workshops a year, branded clothing, £150 credit for education with the academy, discounted events, mentoring and networking opportunities for fitness professionals interested in both the study of human movement/exercise and also looking for professionals to work alongside.\n\nThe Sports Therapy Association (STA) founded by Gary Benson is a superbly run resource for manual therapists. Gary is really passionate about offering genuine support. For a very small annual fee he works very hard to give his members access to information and CPD\'s through various mediums along with his regional ambassador team.\nWe delivered a session at the STA annual conference this year inside the Therapy Expo at the NEC and the line up Gary had organised was fantastic (of course lol).\n\nGary and I are both very passionate about supporting YOUR success and confidence. We are enabling our members to meet each other and cross refer to each other allowing us all to offer great DUTY OF CARE to our clients across these 2 amazing and merging industries.\n\nTo find out more or to join the <a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\">IBA CLICK HERE </a>\n\nTo find out more or to join the <a href=\"http://www.sportstherapyassociation.co.uk/site/\">STA CLICK HERE </a>    	','TADAAAAH!','','inherit','closed','closed','','2275-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2275,'https://biomechanicseducation.com/?p=38834',0,'revision','',0),(38835,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','By 5:30am this morning I was out of the house, without brushing my teeth, big coat, walking boots and audiobook playing. My arms swinging as I raised my pulse, rotated and hydrated my pelvis and spine, while learning something new through my headphones.\n\nHaving discovered a ‘health app’ on my phone a few months ago I was horrified to discover it had measured the number of steps I was doing on average daily. Now before you start shouting at the screen I KNOW these apps aren\'t THAT accurate AND I often don\'t have my phone on me while I am taking steps BUT it did give me an impression and let me tell you it wasn\'t a good one.\n\nI pretty much have my phone attached to my hand MOST of the time so I knew it would give me at least a representation of my daily activity.\n\n10,000 is the suggested number for general health right? OK GUESS…..Go on! GUESS….Do you know how many I was doing daily??? C’mon….nope ….less…..closer……ALMOOOOOST!\n\n1,200 Steps on a daily average!!!!\n\nWHAAAAAT!?!?\n\nWow and this was the daily average of a human movement specialist who preaches ..”<i>we should all move more and teach our clients too…blah blah…” </i>\n\nOMG, I was literally horrified! Not only at the lack steps but also the fact I hadn\'t realised just how few I was taking until I saw this health app. BUT do you know what it did for me? It proved something to me AND taught me something at the same time.\n\n1). We are ALL at risk of not moving enough\n\n2). THIS lack of awareness might be what happens to our clients\n\nWe potentially just don\'t realise, or even have time, to consider or acknowledge things like this. My job requires several hours a day in front of a computer and 35k miles sitting in a car annually and so while I KNEW this, I was <i>getting away with it </i>because I regularly do exercises that improve my movement but long term I know this isn\'t enough.\n\nIt is our job, as exercise professionals or movement specialists, to pass on ideas (and also measure) how we can improve the way our clients move AND also how much AND how often. It has to relate to the individuals lifestyle because I am quite sure a 5:30am morning walk just wont work for some people!\n\nNo one can get away with simply doing an hour or so of exercise a day then expect this to be enough to keep a good blood flow and our intrinsic tissues and structures healthy!\n\nSo one of my New Years Resolution’s started 3 weeks ago….walk for 30-60 minutes every day.  My average step count on my health app is now up to 8,000-9,000 a day and I FEEL so much better. Not only physically but also mentally it sets me up for the day AND I get an hour or so of education from my audio book every morning too! BONUS!\n\nNow it takes some planning and I don\'t even have kids to feed and get to school BUT we must all find ways to do things like this for ourselves in our own circumstances AND also for our clients.\n\nThis needs to take a priority if we are to really have healthy pelvic and spine biomechanics, hydrated discs, joints and soft tissue.\n\nSo which New Years Resolution are you starting early??\n\nLearn ways to assess movement on our Pelvic &amp; Spine Biomechanics workshops\nBook both before Dec 20th &amp; gain a FREE Low Back Health workshop!\n\n<a href=\"https://www.biomechanicseducation.com/workshop/november-special/\">HERE</a>    	','Do You Know How Many....?','','inherit','closed','closed','','2274-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2274,'https://biomechanicseducation.com/?p=38835',0,'revision','',0),(38836,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','So one of the biggest days of the year for our Biomechanics Coach™ learners is their practical assessment. Even after 5 months of training, the discomfort of being observed for how skilled you are as a practitioner is clear for most learners.\n\nAfter the 5 x 2 day workshops this is their ‘qualification’ that they are ready to do their 12 weeks of case studies.\n\nAs an assessor I perceive their nerves as a good sign because it demonstrates how much they care. The degree of nerves isn\'t always indicative of how skilled they are though!\n\nIn fact often it is those who put the most pressure on themselves that perform the best and can show they understand the system better.\n\nNow when a learner passes it feels great for both of us!\n\nAs an assessor I can see how well the information has been passed over during their training. The learner feels success from being able to demonstrating effectively what they have learned and retained over the period of the training.\n\nBut what about when someone isn\'t quite hitting the expected criteria?\n\nHaving to tell someone they haven\'t quite made it can be emotionally tough for both people involved. For myself, as the assessor, having to tell the learner the didn\'t make it is hard but I am also aware I want to do it without crushing their confidence.\n\nThe learner is obviously going to be disappointed, having to hear the news and knowing they aren\'t quite good enough yet and also then having to go back home and tell loved ones they didn\'t pass.\n\nI find it an interesting thing that we can feel so <i>personally</i> judged by our performance in these situations. For example; I am terrible in exams, I get nervous and I even lose some of the common sense I have because of those nerves, often making dumb mistakes!\n\nWHY?\n\nNo one is going to love you less, no one will think you’re a bad person, no one will stop talking to you!! And yet it can be really quite upsetting cant it?\n\nIt seems that we are seeking approval that we are good enough, that we have achieved something and surpassed where we previously were and demonstrated we have moved into a higher plane of understanding.\n\nAs I said earlier the feelings we have, show that we care about how others see us and how they perceive our ability and our performance. It represents the hard work we have put in and time spent studying and practicing and honing our skills.\n\nAs a tutor, I really feel a huge sense of responsibility when my learners are being assessed. Their performance is based on things the academy has taught them. Either myself or one of the Master Trainers I have trained to deliver the education.\n\nWOW that is a MASSIVE responsibility!!\n\nSo when one of my ‘flock’ doesn’t quite make the grade I really feel it and I also feel responsible for it.\n\nWhat more could I have done to get them ready for this moment? How am I going to ensure they reach the target next time?\n\nNow believe me, I am going to do everything in my power to support them in reaching the standards required and that we expect of our Biomechanics Coaches™.\n\nWhile not unreasonable, the standards we expect are very high and it is one of the things we are passionate about maintaining as we continue to teach these programmes. This is what creates the value, the reputation and therefore the confidence in those who pass through our academy and become qualified Biomechanics Coaches™.\n\nHowever I constantly question how I personally deliver, the methods used, did I do enough as a tutor? have I failed my learners in any way? should I have done more? could I have done more?\n\nThese thoughts all go into my reflective journal and allow me to work on areas for improvement of my own contributions to the learner experience.\n\nThen yesterday I received this email…..\n\n<i>Just a quick email to say a BIG thank you for helping me through the Biomechanics Coach™ modules and assessment today. I have really enjoyed it so far and can\'t wait to get using the system with more confidence and see how people develop.</i>\n\n<i>You have an excellent delivery style which suits the qualification content, you re-re-re-(!) emphasise the H&amp;S considerations and exactly where the Biomechanics Coach™ system fits so that learners really can\'t be mislead. There is plenty of flexibility to meet learner needs, you are easily approachable and highly supportive to everyone attending and considerate to individual situations. A major strength is your coaching style delivery of questioning learners and flipping questions back to the learner, it doesn\'t stop people questioning things but it helps learner led learning. There is plenty of \"stretch and challenge\" through resources and references learners can use from the manuals and you constantly give links to other professionals supporting this further. The practical content and receiving your feedback is invaluable.</i>\n\nBLOWN AWAY!!\n\nThe learner who sent me this email is an assessor and internal quality assurer for another fitness training provider company so her feedback how huge value. Especially after I had to tell someone they didn\'t quite make the grade.\n(If this happens we create an action plan together and the learner simply re-sits for free when we both feel they are ready)\n\nSo if you have been wondering whether the Biomechanics Education academy is for you, rest assure WE as a team will do everything in our power to support YOU in reaching a standard to be proud of!\n\nRegister your interest <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">HERE</a> today!    	','BLOWN AWAY!','','inherit','closed','closed','','2273-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',2273,'https://biomechanicseducation.com/?p=38836',0,'revision','',0),(38837,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<strong>...of The Fitness Industry?</strong>\n\n<b>As Biomechanics Coaches™ we analyse and monitor...</b>\n\n.. and we are becoming the \'go to\' referral point for other professionals trying to find answers to their clients movement problems that are as yet unanswered.\n\nThe GP is a first point of call when you are poorly and they might be able to treat you themselves with medication or some advice  If they cannot find the answer they will refer you to a therapist, for a scan or maybe for further tests, right?\n\nThat is similar to what we do as Biomechanics Coaches™!\nWe are becoming reputed as the first point of call in both the fitness industry, and even the therapy world, to assess intrinsic function and movement. Then we prescribe iMoveFreely® exercises and/or we will refer our clients to the appropriate practitioner for any specific requirement that we feel they may be better suited to address.\n\nTo do this, with the best duty of care for each individual client, we meet several times a year, through the Intrinsic Biomechanics Association (IBA). This is to network, up date our techniques, swap contact details and to meet other Biomechanics Coaches™ with differing primary skills. We also share the common language of our Biomechanics Coach™ screening system and iMoveFreely® exercises and therefore understand each other clearly.\n\nBiomechanics Coaches™ are Personal Trainers, Physio\'s, Pilates Instructors, Podiatrists, Yoga teachers, Manual Therapists, Fitness Instructors, Sports Coaches and very often have skills in 2 or 3 of these disciplines.\n\nWe have an increased level of confidence due to this multi faceted community and the shared concept of being very open minded. We communicate through our forums and workshops, we embrace change where necessary and we also accept being challenged for service improvement.\n\nWe are not precious about keeping clients simply to pay our mortgage because we are more concerned about results and are mostly far too busy anyway.  Our income has, in most cases, doubled (or trebled) now that we are Biomechanics Coaches™ because we are getting the return on our investment from our reputations and also through the referrals network we have grown.\n\nBUT we are still in need of more Biomechanics Coaches™ from ALL disciplines due to the huge demand in the UK for this skill set that is only increasing. We have more and more practitioners and client asking for our guidance and seeking our services across every city, town and boarder in the UK, and internationally!\n\nThe most significant feedback from Biomechanics Coaches™ everywhere is the degree of job satisfaction they feel which increases massively - and this is even when they had job satisfaction before their training!\n\nDo you think you have what it takes?\n\nWould you like to be on our FIND A BIOMECHANICS COACH MAP?\n\nMaybe you simply want to find a Biomechanics Coach™ to refer your clients to?\n\nThis fantastic locator resource will be RE-launched onto the website in the new year to promote ALL the registered Biomechanics Coaches™ (on the IBA register) who are demonstrating professional commitment to their practice.\n\nAll you need is to be an IBA member and a qualified Biomechanics Coach™ and we will promote your business and services too! This band of hybrid professionals demonstrate an extremely high standard of service.\n\nSo <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">BOOK NOW</a> to become a Biomechanics Coach™\n\n<a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\">JOIN NOW</a> to become and IBA Member\n\nP.S. Some of our workshops are already fully booked or almost full so HURRY!','Are Biomechanics Coaches™ Becoming GP\'s...?','','inherit','closed','closed','','1432-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1432,'https://biomechanicseducation.com/?p=38837',0,'revision','',0),(38838,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','So we are really excited to announce our Biomechanics Coach™ of the Month is Tom Waldron!\n\nThis nomination is for the huge committed Tom demonstrates to his personal development and education, his pro-active promotion of these skills and for being for being one the nicest guys I know both to work with and just be around.\n\nBoth his passion and kind nature are obvious to all who meet him and we feel honoured that he has chosen to represent our programmes!\n\nAs always our nominee kindly shares his story with you so you can see what it means to Tom to be a Biomechanics Coach™...\n\n<b>Your biography in short</b>\n\nProudly born and bred In Portsmouth, currently living along the coast next to the beautiful sandy beaches of North Devon. 25 years young, 2017 will be my fourth year in the health and fitness industry. I’m a Biomechanics Coach™ (training to become a Master Trainer), Pilates Instructor and Franklin Method level 1 Educator (currently doing my level 2 studies in Portland Oregon, America). Starting more studies next year to become a Sports Therapist.\n\n<b>What made you choose Biomechanics Coaching</b>™<b>? </b>\n\nI first came across Biomechanics Coaching™ when I was 18/19 years old. Rachel was delivering a one day workshop in London and I was studying Sports Science &amp; Excellence in college at the time. Although I felt I had zero knowledge of anatomy or biomechanics, Rachel and her team left a lasting impression with their passion, work ethic and integrity.\nAs I continued with my studies I followed them and when I finally had the confidence to do the Biomechanics Coach™ Diploma. So I contacted Rachel some 4 years later.\nI chose Biomechanics Coaching™ because I want to give people the tools to facilitate their own change and that’s something Rachel, Martin and the whole Biomechanics Education team value - empowering others to create their own positive change.\n\n<b>Where would you like to see yourself ten years from now?</b>\n\nTen years from today I see myself having my own clinic. Practising Biomechanics Coaching™, Franklin Method and Sports Therapy. I’d love to teach the Biomechanics Coach™ Diploma, be active in public speaking and teaching the Franklin Method teacher trainer course internationally. I also want to study more on neuroplasticity.\n\n<b>What would be your advice to somebody thinking of becoming a Biomechanics Coach</b><b>™</b><b>? </b>\n\nI only qualified as a Biomechanics Coach™ this year in March and my life/career/business has totally changed for the better!!!!!\n\nThe friends, knowledge and opportunities that have already come about from becoming a Biomechanics Coach™ is actually unreal and I’m still taking it in if I’m being honest. It’s an phenomenally loving, fun and humble community, that genuinely have people’s best interest at heart. It’s such a privilege to be apart of this movement of passionate and caring individuals. It’s like being at the cool kid’s table at school haha. So if you’re on the fence about contacting Rachel, get of the fence and contact her today!!!\n\n<b>On the journey to where you are now what has been your achievements?</b>\n\nThis might sound funny but my biggest achievement in my mind is finishing school with good grades. I was predicted very low grades through out my time at school and I was even held back a year because of my poor exam results. Finishing school with A’s and B’s and Head Of School was quite the transformation, believe me!!\n\nQualifying as a Franklin Method Educator in Paris, 2015.\n\nQualifying as a Biomechanics Coach™ 2016\n\nCo-running a successful Pilates business with my amazing sister Rachel Hall and beautiful Mum, Ruth Waldron.\n\nPresenting at Loughborough University this year at The Movement Convention.\n\n<b>Tell us a secret or something interesting about you that not many people know about..</b>\n\nWhen I was really young I had some hearing problems which meant I had a slight speech impairment, lots of stuttering, fast paced talking and un able to pronounce big words. I still have allot of that now to be honest so probably not a secret haha.\n\nStill just thinking about becoming a qualified Biomechanics Coach™?\n\nLet us know you are interested by <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">REGISTERING HERE</a> and we will send you an application form with no obligation!','Wanna Join The Cool Kids Table?','','inherit','closed','closed','','1443-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1443,'https://biomechanicseducation.com/?p=38838',0,'revision','',0),(38839,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','Following on from Martin\'s recent plantar fasciitis article and my follow up about what can be contributing in the descending pattern of the integrated system, here Martin talks about another common problem that can occur.....\n\nCalf muscle injuries are common in running and can be quite debilitating as well being frustrating, as they often take a long time to heal and can become recurrent.\n\nThey are caused by both <i>extrinsic and intrinsic </i>factors.  The typical extrinsic factors will be subjecting the calf to an unexpected load or one that your calf has not been conditioned to tolerate.\nFor example doing plyometrics, hill running, speed work or even running longer distances can be sufficient to damage your calf if it’s not prepared sufficiently.\n\nTrauma is more likely when the calf is being stretched while it’s simultaneously contracting strongly.  Intrinsic factors consist of inflexible calves (both gastrocnemius; the longer calf muscle that passes over the knee, and soleus; the shorter muscle that stops just below the knee) and over pronating feet or overly supinated feet are also common causes as they alter the efficient mechanical function of the foot and so can increase the pressure on the calves.\n\nAnother very common cause is a tight sciatic nerve. The sciatic nerve runs down the back of the leg, through the hamstring and calf groups as it passes into the foot.  It can become tight due to <i>clinical or biomechanical </i>issues with your back, pelvis or even your hamstrings.\n\nIn these cases your hamstring or calf can go into a ‘protective spasm’ to minimise the stretch on the delicate nerve and render these muscles more likely to injury.\n\nThe spasm can be immediate and cause pain in the muscle itself or it can alter the ability of the muscle to contract and relax effectively and can therefore cause the muscle to tear when loaded too heavily.\n\nThere are 3 levels (or degrees) of calf strain/tear:\n\n<b> • Grade 1</b>: The muscle is damaged causing some micro tears.  It usually takes 2 weeks to recover from a grade 1 strain.\n\n<b> • Grade 2</b>: There is partial tearing of the muscle. Recovery usually takes 6-8 weeks.\n\n<b> • Grade 3</b>: This is the most severe calf strain as it is a complete tear or rupture of the muscle.  Complete recovery can take 3-4 months and occasionally surgery may be needed.\n\nDepending upon the severity of the injury, you will typically feel a sharp stabbing pain in the calf at the point of the tear or strain, and standing up on tip toes or pushing off will usually be painful.  Swelling and bruising sometimes follow with the more extensive tears and it is usually tender to touch.\n\nThe usual self management methods for muscle injuries apply for calves too.  Make sure it is rested, ice the area as often as possible, compress the muscle (especially if it is swollen, by using a compression support) and elevate the leg to help reduce the swelling too.\n\nOnce the swelling has reduced and the acuteness has started to subside, stretching and massage will help to restore the pliability of the muscle.  Gradually you can then start to teach the muscles to work again slowly using cliniband exercises and then light weight training exercises in the gym, and then progress to higher speed exercises like plyometrics.\n\nIt is important to identify the causes too. Check the list of extrinsic and intrinsic causes discussed earlier.  If you suspect an extrinsic cause make sure you address it as you start to train again.  If you feel there were intrinsic causes, check them out with a suitable practitioner who understands intrinsic biomechanics to make sure it is being dealt with while you are rehabilitating.\n\nClearly adequate warm ups are essential to prevent any injury, so make sure that you spend plenty of time working on your calves as you plan your warm up routine.\n\nLearn how to assess for causes of calf injuries<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\"> HERE</a>','Ever Injured Your Calf Muscle?','','inherit','closed','closed','','1442-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1442,'https://biomechanicseducation.com/?p=38839',0,'revision','',0),(38840,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','Recently a friend asked me to drive them to A&amp;E as HE thought he had ‘trapped nerve’ in his neck which gave him agony with any movement of his head or upper body..\n\n..OUCH!\n\nPoor guy, anyway the receptionist (bless her) was definitely NOT particularly pleased to see us, from the expression on her face anyway, and the clear lack of joy in her voice spoke volumes as she asked the compulsory questions listed on her screen, without lifting her gaze…\n\n<i>“name..?”</i>\n\n<i>“address..?”</i>\n\n<i>“who is your doctor..?”</i>\n\n<i>“why are you here..?”</i>\n\nThen she suggested we “<i>take a seat” </i>with the tone of someone so incredibly sad, or maybe it was simply boredom? It really made you wonder how she got through each day?\n\nThere we settled to wait amongst all the other sufferers, as even more sloped, crept, limped and shuffled in, got their 2 minutes of joy with the sad receptionist and then meandered to their seat.\n\nThe sign on reception said <b><i>approx 2 hours waiting.</i></b>\n\nSome 47 mins later someone called us in to ask again <i>“what is wrong?” s</i>he made some more notes on HER screen and sent us back to the seating area to wait for the NEXT call. I wondered what the difference in notes might be from those the receptionist made..?\n\n1hr 51 mins after this we were called through to an examination room\n\n“<i>YAY”</i> my friend said …actually it was more of a sarcastic Bells Palsy type drawl “…<i>yaaay</i>…” due the pain he was feeling if he moved his jaw.\n\nAnother 26 mins after entering the examination room a lady in blue scrubs came through. Interestingly she too did not appear <i>that</i> pleased to see us and asked for the 3rd time that day <i>“what is wrong?”</i>\n\nNow my friend is what you might call stocky and muscular in frame and stature and so upon seeing him it was clear she had made up her mind about the cause of his issue as she almost immediately asked, while looking him up and down..\n\n<i>“do you go to the gym..?”</i>\n\n<i>“how often do you go..?”</i>\n\n<i>“did you do it while exercising..?”</i>\n\nThis was before she had physically examined him or asked about any previous history, oh wait no she didn\'t ask him that question at all, also before she asked what his job entailed physically or anything else.\n\nAh no hang on, she didn\'t even ask him any details of that either!\n\nJust if he used the gym and how often…YOU KNOW what I was thinking, right!?\n\nI only just managed NOT to say <i>“ffs!?!?!”</i> out loud.\n\nShe then proceeded to prod and poke his neck and glands with no warning of what she was going to do and without even looking at his reactions (she actually turned her head away from him as she did this) nor even taking her time to be tender. This caused him to yelp out in pain at the sudden discomfort. Trust me this dude is NOT a yelper!!\n\nOnce she had caused him further suffering she suggested to simply..\n\n“… <i>have a massage… try to relax</i> …<i>.and keep moving.. ” </i>\n\n(*In my head i am thinking...<i>\"but you just implied movement was the cause...????? How does the person know which movements are good and which are bad???\")</i>\n\nHe then explained that I was a Biomechanics Coach™ and manual therapist and had suggested he come to A&amp;E due to the severity of the pain, so she then went on to say..\n\n“..<i>well OK then I can give you diazepam and some extra strong pain killers but just try and relax you shoulders and neck..”</i>\n\nLIKE HE COULD JUST RELAX BY CHOICE!!\n\nNow before I continue I just want to say one of the things I LOVE about being British is the fact we actually have an NHS. How much I appreciate that the NHS gets slagged off and is under funded and staff are over worked and under paid and all of that stuff!!\n\nI am ON their side seriously\n\nBUT\n\nThis was really really quite disappointing and annoyed that the impression she was giving was that the fact he exercised was a bad thing and the cause of his suffering!! This guy trains literally, at most, 45 mins 3 x timer per week and yet he works over 50 hours a week.\n\nNow I don’t know what kind of a day any of these professionals had that day and I am quite sure they are faced with crazy schedules and miserable people all day every day, BUT to barely even smile, to make assumptions and to give the impression that exercising was the cause of his agony, made me feel such frustration, maybe I was feeling THEIR frustration that MAYBE they don\'t feel they have anything more to offer!?\n\nJust a small sign of empathy would have worked wonders and I would have expected more questions but it did make me realise the HUGE GAP between US and THEM is still far to wide. We should try and understand each other better.\n\nAs a Biomechanics Coach™, manual therapist I was demonstrating MY duty of care by suggesting he get checked out due the level of pain he was in. While massage well may help, the implication that exercise was bad for him and the cause of his pain was, in my opinion, unfair and unjust.\n\nKNOWING when it is our remit or not is vital but I really wish we were working together more.\n\nThis particular professional, on this particular day, was giving him the impression  that his exercise routine was the cause of his pain and yet also saying he needed to keep moving. Yet this advice was without guidance on the difference of the reasons why.\nThe way she dealt with him, was like she was just \'dealing with another one\' and while she may well have been right in her diagnosis and suggestion, her manner was not. In MY opinion it was inappropriate and misleading.\n\nWhat I had done as a Biomechanics Coach™ was assess him to understand which exercises were good or bad for him because THAT\'S WHAT WE DO, this trip to A&amp;E was my attempt at duty of care to him to rule out anything clinical or sinister with the support of someone medically trained. What she could have just done was just make my job harder ...\n\nLet\'s try to communicate better, more efficiently about what we do and the benefits of exercise shall we!\n\nDo you want to join me and a leading community of professionals in the UK who are on a mission to improve inter professionals relations and communication?\nWe offer massive amounts of support to all of our learners and have joined forces with likeminded associations, like the Sports Therapy Association, who feel the same.\n\nRegister your interest in the Intrinsic<a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\"> Biomechanics Association HERE</a>\n\n&nbsp;','“ffs!?!?!”','','inherit','closed','closed','','1422-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1422,'https://biomechanicseducation.com/?p=38840',0,'revision','',0),(38841,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','Something I have learned being in our industry for 25yrs is how small a world it is. One of the main reasons I LOVE what I do, and it doesn’t feel like work, is because of the people I am able to connect with and spend time with on a regular basis as part of my job.\n\nYesterday I was reminded of this over and over again and I am guessing that for those of you reading this Juicemail this will resonate with you too…\n\nAt 8am I drove over to the NEC Birmingham to speak at the <b>Sports Therapy Association’s </b>(STA) annual conference inside the Therapy Expo. STA founder, <b>Gary Benson</b>, had invited me to speak to his members.\n\nNow I met Gary several years ago before he founded the STA and he has become a fantastic person to know. He is trust worthy, delivers on and keeps promises, he cares and shows it in the way he communicates with everyone  and he has a reputation for all of this, it is not just my opinion, just ask anyone who knows him.\n\nNow the very core of the STA and its foundation was to advise manual therapy (and fitness) professionals on quality CPD’s, to offer members a huge amount of support, to keep the promises made and to have fun doing it. They are all REALLY nice genuine people who care about each other and their clients.\n\nSo this event was part of that support and gave STA members that chance to experience what CPD providers, like us, have to offer within our education programmes.\n\nUpon my arrival Gary was there with his phone tweeting, texting and guided me to the private STA conference theatre. He introduced the first speaker and I watched Matt’s dynamic talk as I waited for my colleague and friend, <b>Harry Snell</b> to arrive. Harry was a former student and has become a friend over the course of time as we have had many geeky conversation about human movement and intrinsic biomechanics mainly. However he has also become a great source of help at events, for videos, photos and even advice on websites.\n\nAnyway soon I was up and I saw <b>Stuart Farmer, Christine Buckley </b>and <b>Helen Stone</b>, 2 of my former students and one present one, also in the audience waving and smiling at me! Christine even came up for a hug.\n\nMy talk was titled <i>‘</i><b><i>Screening the Athlete’ - risk reduction &amp; optimising performance</i></b><i> </i>so with just 30 mins (and I always have a lot to say!) I began with a brief explanation about how our education programmes came about. From the 20+yrs of data collection from clients like Daley Thompson, Linford christie, Derek Redmond, Steve Redgrave, David Coulthard, Mica Hakjenan, Lenny Henry, Demi Moore, Will Carling, Robbie Coultrain, Anthony Ogogo and all varying sporting backgrounds and abilities of 4.5k client case studies in total.\n\nCalling for a volunteer from the audience I was able to demonstrate on a gentleman called <b>Andy Fairbrother</b>, what a mini evidence based ‘field’ test type of screen might look like ‘pitch side’ on one of the audience.\n\nAs the audience watched I explained that as simple as it may look these 3 screens, that take in total around 5 mins to perform, correlated very highly during the research to what the very expensive isokinetic machinery told us about what was happening inside the body. My triathlete ‘client’ Andy, had both pelvic and shoulder dysfunction we could see.\n\nSo I then demonstrated on him (in 1 min 20 seconds) an anti spasm on his right pec minor muscle that actually changed his pelvis right side AND both of his shoulders! As I promised I had never met Andy before he proceeded to say he knew one of my other former students, <b>Libby Upton</b>, who had been helping him with his intrinsic biomechanics and training!!\n\nSoon enough my 30 mins was up and with a whole bunch of people were giving me their business cards so I guessed it had been well received. What a wonderful feeling that people listen and care about what you have to say and then make it clear they want to hear more!\n\nAlso meeting really nice people like <b>Ed Clark</b> who came up to tell me he was gutted he had missed my session and could I still please send him the presentation!\n\nHarry and I chatted about the session as we went for a wander into the main expo. We found my log time colleague <b>Mike Grice</b> (who had introduced Harry and I a couple of years ago), after his lecture with 2 of Jessica Ennis’ professional team. Mike is now working with and delivering education programmes with these 2 professionals, <b>Poora Singh</b> and <b>Derry Suta</b>.\n\nHow cool to meet those guys and chat about their work with an olympian like Jessica!\n\nMy phone went next and it was <b>Clair Minshull</b>, whom I had spoken to earlier in the year when she called to explore commercial connections.\nWe sat down for this exploratory chat and Claire said <b>Mel Berry</b> had said to say hello! I have know Mel (a marketing expert) for several years too and she and Claire had met a few weeks earlier.\n\nAs I sat there another former student, <b>James Tomkies</b>, said hello and so as I left Claire, James and I had a good old catch up. The conversation led me to re-connect James with my fabulous Biomechanics Coach business advisor, <b>Chris Wright.</b>\n\nAs I said good bye to James, I went to connect with long time friend in the industry (after she attended some of our workshops many years ago) <b>Sue Wilkie</b> who was with <b>Suzanne Bowen</b> (also a contact of Mike\'s) on their stand promoting their <b>Toropro Products</b>.\n\nSue and I had one of our usual event girlie catch up and giggles - sssshhhhh cant tell you that bit! Then I watched as she offered a few demonstrations of the new Toropro Foam roller, trigger point ball and of course the kinesiotape.\n\nWhat a cool job eh!\n\nAs I stood there watching Sue, my present student, Christine, who had been in my session, came over for a chat. Now when Christine first came to one of our workshops we discovered we had been to the same comprehensive school!\n\nWe shared some of our thoughts on kinesiotape and diet amongst other things before I said goodbye.\n\nOn my way out I went to the STA exhibition stand and spoke to the very charming <b>Tom Sayer</b>, who said he has followed our work for some time now.\n\nFinally I began to make my way back to the car and struck up a conversation with 2 people who ad been at my session earlier. The 3 of us walked and chatted about the industry, good people, clients and the thought provoking day we had all had.\n\nTHIS is a typical event day of work for me ad see how many connections and re-connections across the industry (and even back to my school days!) there were!!?\n\nAlso having conversations or even just a smile or nod with people you have never actually met before (like Ed, Trevor, Joe, Nikki, Janet, Marcus, Patrick, Lotti, Juli, Jamie, Andy, Erica, Leon, Sharon and all the other lovely people I spoke to on the day!) who all clearly feel a connection to each other in their work and enjoy what they do makes my working life so much fun.\n\nTHANK YOU all of you!\n\nUltimately you never ever know who you might meet, what might come from that and what could happen in the future because of that connection. It always reminds me of the responsibility we have as education providers to maintain integrity when we are influencing so many people from afar and many of whom we may never even meet.\n\nMost of all I LOVE every day because THIS is one example of one of my ‘normal’ working day’s.\n\nWhat About You?\nDo you love every day?\nDo you connect with people?\nCould they be more important to you than you realise?\nMaybe one day they COULD even be your next million £ cheque!!\n\nHEY you never know!\n\nBut if you want to join into this world of connections we have already made.....\n\nEmail  me rachel@biomechanicseducation.com with ....\n\nYOUR REASON WHY !','You Just Never Know','','inherit','closed','closed','','1418-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1418,'https://biomechanicseducation.com/?p=38841',0,'revision','',0),(38842,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<b>Have you ever wondered exactly what do we get up to</b><b>?</b>\n\nAt the weekend I met with my colleague, Biomechanics Coach™, Franklin Method practitioner &amp; TMC16 presenter, Tom Waldron. We delivered our final iMoveFreely® Instructor workshop of 2016 at the Barbican Virgin Active club in London curtesy of Jayne Nicholls.\n\nThe 7hrs we spent with 11 VERY passionate professionals made for a fascinating and dynamic workshop. We had Pilates instructors, personal trainers, sports therapists, Biomechanics Coaches™ and group exercise instructors al discussing professionally about their experience and ideas.\n\nThis Juicemail is for those of YOU who want to know what one of our iMoveFreely® Instructor workshops are like. Here I will share our day AND some of the key take home messages we ALL learned.\n\nThe attendees, as you can see, were generally from the fitness industry but also (and often does) included therapists. This is such an exciting learning environment because it allows us to exploring inter-professional relationships that can enable us ALL to offer a better duty of care to our clients &amp; participants.\n\nSo the day began, as they generally do, with everyone introducing themselves so we knew who we would be spending the day with.\n\nThey said their reasons for attending were….\n\n<i>“learn more, something new, to get faster results and so that the client can feel something”</i>\n\n<i>“to help more clients and have more confidence helping with clients with problems”</i>\n\n<i>“for more skills in my tool box”</i>\n\n<i>“I want a programme that offers people a self help programme of exercises” </i>\n\n<i>“I want to learn more about how the body moves”</i>\n\n<i>“I want to help my older clients KEEP moving”</i>\n\n<i>“I feel like something is missing still”</i>\n\n<i>“my anatomy knowledge isn\'t great but with my special population I need more ideas for adaptions”</i>\n\n<i>“I help post rehab and wold like to know more about how I can help the safely”</i>\n\n<i>“More ideas for helping with my falls prevention clients”</i>\n\nWOW tall order eh!? lol\n\nSo the workshop began with some history and background about how the iMoveFreely® exercise programme &amp; system came about. We also discussed the data collected over 20+yrs from 4.5k subjects of all levels and abilities in relation to the screening system we teach on our other workshops. Some of these subjects were gold medalist olympic athletes, some were average gym goers, some elderly and some young.\n\nWe discussed this evidence of how effective these screens and exercises have been in enabling us to understand and improve function and movement in our clients even without any clinical knowledge or previous training in biomechanics.\n\nHowever we did acknowledge that a great SIDE EFFECT of giving our participants iMoveFreely® exercises can be that low grade aches, pains and recurring niggles could improve or even disappear completely.\n\nAfter a break we went through our renowned Group Action of Muscles (GAM) Movement Analysis made easy session (This will be one of the sessions we deliver at the Spinning® Showcase 2017 in Blackpool if you would like to find out more see you there!!).\n\nThis session meant in groups of 3 or 4 the group were set the task of how to analyse a movement and what it means for us a exercise professionals. The group were told they were not allowed to use muscle names at all, which some people found quite challenging.\n\nThis session is always an eye opener for most learners as to how easy movement analysis CAN be should we use some of the most basic principles we learn in our level 2 and level 3 qualifications.\n\nNext we began experimenting with the Quadra-set ‘flows’ of 4 iMoveFreely® exercises to create a better functioning pelvis, spine and shoulders. This can make up the main bulk of a ‘pure’ iMoveFreely® clinic/class for any level of participant from elderly to the super fit. Sections of them can also be used \'blended\' into our present classes.\n\nAfter lunch we discussed ‘core stability’ and what it means to us. We also looked at the evidence surrounding ‘core stability’ and ideas around training the ‘core’ in general.\n\nThis section is very simple and logical but not always what you might expect - simple and safe moves that can be super intense and nicely periodised for the ability of every client in front of you - all based on evidence.\n\nFrom here we all performed some really nice ‘pure’ mobility iMoveFreely® techniques that safely mobilise individual areas of the spine that maybe lacking capacity for movement.\n\nAt the very end of the day we demonstrated a series of just 3 intrinsic biomechanics screens that we teach in other workshops. Then the effectiveness of how, in 80 seconds, one simple iMoveFreely® anti spasm technique for the pec minor muscle of the shoulder can influence, and change, the rest of body right down the foot!!\n\nWould you like to learn more about the iMoveFreely® exercise programme or the evidence based intrinsic biomechanics screening system we deliver across 5 x 2 day workshop?\n\n<a href=\"https://www.biomechanicseducation.com/workshop/imovefreely-instructor/\">REGISTER YOUR INTEREST FOR 2017 HERE</a>\n\nJayne Nicholls, Director of Group X Training Ltd, has been a distributor of our iMoveFreely® Instructor 1 day workshop for the last 4 years. Working with her is a joy and we are proud to continue the collaboration with a professional who demonstrate such high standards of integrity.\n\nThank you Jayne!!','What Happens During An iMoveFreely® Instructor Workshop?','','inherit','closed','closed','','1415-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1415,'https://biomechanicseducation.com/?p=38842',0,'revision','',0),(38843,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<span style=\"font-size: large;\">Things can happen when you least expect it and this happened to me and someone I met at an event about teaching methods.</span>\n\nWe talked about being in our ‘element’\n\nour roles\n\nour ideals\n\nour purposes\n\nor goals\n\nWe talked non stop, bared souls and shared our common beliefs and ideas about our work and education ethos.\n\n<span style=\"font-size: large;\">We discussed</span><span style=\"font-size: large;\"> personal stories that gave some clarity of our shared feelings and empathy towards our bad learning experiences.</span>\n\n<span style=\"font-size: large;\">We had shared stuff about our long term goals and he had said his goal was \'<em>making the world a better place</em>\' - he had said it with such pride, such confidence and a smile.  But then I asked him to explain how he would measure that?</span>\n\nHe looked at me, slightly shocked and said <em>“…oh, I don\'t know…? I had never thought of it like that...??”</em>\n\nI asked him <em>“But how will you know WHEN you have succeeded?”</em>\n\n<span style=\"font-size: large;\">He was stumped! </span>\n<span style=\"font-size: large;\">He couldn\'t answer! </span>\n<span style=\"font-size: large;\">He immediately scribbled some notes and I explained something I had learned recently as a result of a very traumatic time over 3yrs ago.</span>\n\n<span style=\"font-size: large;\">At that time I had written down what I wanted the next 1 to 5 years to look like because I really needed to feel some hope and direction. The things I wrote down were very precise measurable things, figures, dates, numbers etc. </span>\n\nThe book I wrote in was then put away and over time I forgot about it.\n\nCoincidentally I had recently found that book, I explained, and I re-read those goals I had written down in 2013.\n\nWOWZERS! I HAD ACHIEVED ALL OF THEM, AND MORE!!\n\nBut I would never have felt such happiness and success had I not written them down in tangible goals!\n\nTHIS, I now believe, is vital in both business and personal settings\n\nMichael E Gerber (<em>The</em> <em>E Myth Revisited</em>) talks about your PRIMARY AIM being the end goal which allows you to work backwards in planning how you get there from today.\n\nBrian Tracy (<a href=\"http://www.briantracy.com/\">www.briantracy.com</a>) talks about Goal Setting for Self Development.\n\nSo what is YOUR primary aim?\n\nWhat does it look like?\n\nHow will you get there?\n\nWhen?\n\nWhat do you need to do this year? next year? in 5 years?\n\n<span style=\"font-size: large;\">SHARING these thoughts with your loved ones can very often be a real insight into what you see in your future. It can even bring you closer together in your ‘vision’ as often its not what people discuss when in the thick of our day to day routines.</span>\n\nHowever this can allow you to plan for both business and personal success with measurable goals.\n\nSo ask yourself this questions regularly;\n\nHow will I KNOW when I have been successful?\n\nIs joining our academy one your goals list?\nYes?\nSimply register your interest <a href=\"https://www.biomechanicseducation.com/schedule/\">HERE</a>','How Do YOU Know?','','inherit','closed','closed','','1412-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1412,'https://biomechanicseducation.com/?p=38843',0,'revision','',0),(38844,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','We are heading north to one of my favourite places in the world for our next IBA Discovery Day Workshop on <strong>Dec 3rd</strong> AND only £40 for non members.\n\n*Are you considering becoming a Biomechanics Coach™?\n\nDo you want to meet other Biomechanics Coaches™ or iMoveFreely® Instructors?\n\nDo you want to learn new practical skills or simply refresh?\n\nDo you want an insight into our academy and to meet and ask questions of one of our Master Trainers?\n\nDo you want to find other open minded high quality skilled practitioners in Scotland?\n\n<strong>We will be discussing and practicing FOOT BIOMECHANICS as part of this workshop.</strong>\n\nThis 2 in 1 workshop (for me anyway - holiday + work) means we get to gather amongst a fantastic group of professionals in <strong>Kirkcaldy</strong>, Scotland, at the venue of our host, qualified Biomechanics Coach™ and sports therapist, Graeme Temple.\n\nThis will be a SUPER workshop because it is going to run longer than the usual 4hrs - <strong>10am until 4pm</strong> - to give YOU more value in attending, MORE airtime to ask questions and plenty of time for practical up dates or refreshers.\n\nThis workshop carries 3 REPS points and HUGE value in the networking opportunity of being amongst others with your skills with the chance to ask THEM ..\n\n<em>\"how do you do it?\"</em>\n\n<em>\"whats your experience of...?\"</em>\n\n<em>\"can we cross refer our clients?\"</em>\n\nI am actually considering calling them EMPATHY DAYS lol!!\n\nThe workshop topics to be discussed as usual will be :\n<ul>\n 	<li>BUSINESS - what more can we do to improve our practices?</li>\n 	<li>TECHNICAL - discussions around different skills sets and blending them</li>\n 	<li><span style=\"font-size: large;\">PRACTICAL - A look at how we can assess foot and ankle biomechanics  </span></li>\n</ul>\nWe have several places already taken for this IBA workshop so If you are not a member it is still ONLY £40!!\n<u>(IBA &amp; INNER CIRLE members come for FREE)</u>\n\nYOU really should clear your schedule and join us to prepare for YOUR success with our support in 2017 !\n\nHow easy is it to book?\n\n<a href=\"https://www.biomechanicseducation.com/workshop/iba-workshops-3/\" target=\"_blank\" rel=\"noopener\">JUST CLICK HERE</a>','Discovery Day Workshop in Scotland!','','inherit','closed','closed','','1409-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1409,'https://biomechanicseducation.com/?p=38844',0,'revision','',0),(38845,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','Ever known someone with dementia?\n\n<span style=\"font-size: large;\">It is painful to watch and brings forth that realisation of mortality - for me it does anyway. </span>\n\n<span style=\"font-size: large;\">Watching someone close to you start to grow physically fragile is bad enough but when you know, they KNOW they are losing their mind too, THATS tough.</span>\n\n<span style=\"font-size: large;\">Once a manager, leader, actor, teacher and active social person, he lost confidence some years ago when he had a hip replacement which meant he could no longer run. This was a real blow since it was why he felt he could still get away with eating bacon butties each morning.\nWhile he tried all sorts of others things instead of running, like walking more, it just didn\'t feel the same. Cycling just didn’t work, he’s always had poor coordination and I found out he actually can\'t swim either, something I had never known growing up! </span>\n\nSo he began to sit for hours at his computer, playing solitaire or trying to navigate the internet but this frustrated him too since he couldn\'t work out how to use it for certain things. Also after getting his retina re-attached (one of his nieces toddlers kicked him in the eye- accidentally!) his vision was poor which contributed to making him feel even older, BUT he tried !!\n\nOh boy did he try!\n\nSadly the fact he couldn\'t work things out for any of these things just made him feel more and more useless.\n\nHe has always used his fantastic sense of humour to generate positivity around difficult subjects and even this began to wane.\n\nShe tried hard to encourage him to walk regularly, eat better, drink less wine - god forbid - <em>drink less wine!!?!?!?</em>\n\nAnyway even she is growing fragile herself having a knee replacement, then hip replacement, radiotherapy for breast cancer (twice!) and then a pace maker!\n\n<span style=\"font-size: large;\">WOW all of this just contributed more and more to that feeling of ageing.</span>\n\nWe began to notice a change in his conversation, clarity, his confidence and then noticed he had begun to write a diary of what he had done each day, like where he had been or where he had put things.\n\nWe attempted to speak to him about it but he got annoyed, frustrated and the conversation was clearly uncomfortable for everyone.\n\nEventually when his doctor invited I\'m in for some regular testing he was put through some dementia screens and a CT scan of his brain showed damaged blood vessel’s which confirmed early onset of Alzheimers.\n\n<span style=\"font-size: large;\">His jovial way of telling family members was clearly a cover for the pain this proud man was feeling about knowing his dignity was going to begin slipping away along with an uphill battle to maintain his intelligence. </span>\n\nHaving, he himself, watched agonisingly his own mother’s cognitive decline, he knows only too well the kind of experience awaiting him and his loved ones.\n\nSo whats the point to this story?\n\n<em>WE ARE ALL GOING TO DIE, RIGHT?</em>\n\n<span style=\"font-size: large;\">Ok the point I am making in this blog is that we should recognise that we are all living longer but this experience also raises the question of whether we really <em>maintaining </em></span><em>quality of life</em><span style=\"font-size: large;\"> in that extra time?</span>\n\nCould we do more to protect these amazing organs we live in, our bodies?\n\nHow better can we serve them?\n\nAre there ways to improve both our physical and cognitive health to reduce the speed of decline?\n\nSurely improving the way we move increases blood flow thus increasing oxygen to the brain and body, right?\n\n<span style=\"font-size: large;\">We should really stimulate our brains and bodies more appropriately, maintain human contact, we should probably try harder to communication in person RATHER THAN texting and turn off the TV to talk to each other or go for a walk.\nDon\'t you think?\nSurely this is a smarter was to contribute towards maintaining a healthy cognitive power for longer, right?</span>\n\nPLEASE PLEASE PLEASE\nMOVE MORE!\nTHINK MORE\nTALK MORE\n\n&amp;\n\nBE FREE FOR LONGER!\n\nFrom my heart\n\nx','WE ARE ALL GOING TO DIE!','','inherit','closed','closed','','1405-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1405,'https://biomechanicseducation.com/?p=38845',0,'revision','',0),(38846,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','Having received a huge positive response to our recent Juicemail..\n\n<i>‘Ever Heard of Plantar Fasciitis?’</i>\n\n..it seems many of you have experienced it, or at least know someone who has. So we wanted to continue this theme with a more in depth explanation of how WE as exercise professionals and manual therapists can help AND what WE should consider if our client presents with this condition, even while another professional is treating them.\n\nThe Integrated System\n\nFirstly, there are often many ways of saying the same thing and this, in my opinion, is often what creates much of the controversy in our industry, combined with assumption.\n\nThe integrated system as we describe it, is also known as intrinsic biomechanics, bio-tensegrity, the kinetic chain and so on. Either way what is being suggested, in my understanding, is that each to these descriptions explains how all of the body’s ‘sub-systems’ (muscles, joints/bones, nerves) and they influence each other.\n\nFor example; We are taught at level 3 that the pec minor muscle attaches to the coracoid process and 3-5th ribs and that it contributes to protraction and depression of the scapular. Now IF your pec minor loses its ‘capacity’ for efficient movement due to lifestyle for example, we may find its range becomes limited, therefore ‘fixing’ the scapular forward on the rib cage into a round shouldered posture we commonly see, right?\n\nNow imagine this ‘fixed’ posture may now contribute to limited capacity for thoracic extension since the scapulae have now lost some of their movement capacity for REtraction.\n\nNext imagine if your clients thoracic spine doesn’t have the capacity to extend  due to this loss of scapula retraction, then think about how this may influence their capacity to squat.\n\nIn fact try it now…\n\nStand up, fix your shoulders in a protracted position as if dysfunctional, and then try to squat while maintaining an upright posture or imagine this a bar across your back or even to simply try brush your hair with protected scapular!\n\nCan you now feel how the shoulder/spine limitations are influencing what is possible at your pelvis?\n\nIn fact this forward scapular position may only present in one of the shoulders, thus creating a ‘twist’ at the spine. This in turn can place unnatural forces through the pelvis, which can result in a dysfunctional pelvis, meaning you could ‘functionally’ present with a leg length discrepancy or LLD.\n\nThe body will naturally try and compensate for this and part of this compensation may be internal rotation of the femur which results in a valgus/internally rotated knee in an attempt to try and shorten the leg.\n\nThese forces from above can create excessive or over pronation (or maybe late supination) on that foot which can in turn abnormally load the plantar fascia on that side. So imagine this stress on the plantar fascia combined with a common issue like tight calf muscles\n\nOne of the skills of a Biomechanics Coach™ is the ability to identify which areas of the body do not have their full capacity for function or efficiency. This as you can see from the example above, maybe areas of the body that are asymptomatic. They then apply a tried and tested system of exercise prescription to improve the movement in the areas of the body that have lost their full capacity. They can do this for the pelvis for example while their client is being treated by another professional for the foot like a podiatrist in this example. The communication between these 2 professionals is vital in delivering the best duty of care for the client.\n\nSo stay open minded when you see a Biomechanics Coach™ or if a professional doesn\'t do what you expect. Ask questions until you understand clearly WHY they are doing something like manual therapy or prescribing exercises for a different area of the body, away from the symptoms, that maybe you don\'t fully understand.\n\nAs Karel Lewitt once said..\n\n<i>“He who chases the site of pain is lost”  </i>\n\nWanna Join Us Now?\n\nWanna Learn About The Integrated System?\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">REGISTER YOUR INTEREST HERE!</a>','How Can Your Shoulder Contribute To Your Plantar Fasciitis?','','inherit','closed','closed','','1402-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1402,'https://biomechanicseducation.com/?p=38846',0,'revision','',0),(38847,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<b>What is it?</b>\n\n<b>Describing plantar fasciitis is easy: It\'s simply an inflammation of the fascia on the bottom of the foot.</b>\n\n<b>Getting rid of plantar fasciitis is hard!</b>\n\nCases of plantar fasciitis can linger for months at a time, with pain increasing and decreasing in an unpredictable pattern. Often, plantar fasciitis discomfort may nearly disappear for several weeks, only to re-emerge full-blown after a single workout. About 10 per cent of individuals who see a doctor for plantar fasciitis have the problem for more than a year.\n\nThe plantar fascia is actually a thick, fibrous band of connective tissue which originates at the heel bone and runs along the bottom of the foot in a fan-like manner, attaching to the base of each of the toes. A rather tough, resilient structure, the plantar fascia takes on a number of critical functions during running and walking. It stabilises the metatarsal joints (the joints associated with the long bones of the foot) during impact with the ground, acts as a shock absorber for the entire leg, and helps to lift the longtitudinal arch of the foot to prepare it for the \'take-off\' phase of the gait cycle.\n\nAlthough the fascia is invested with countless sturdy \'cables\' of connective tissue called collagen fibres, it is certainly not immune to injury. In fact, about 5 to 10 per cent of all running injuries are inflammations of the fascia, an incidence rate which in the United States would produce about a million cases of plantar fasciitis per year, just among runners and joggers. Basketball players, tennis players, volleyballers, step-aerobics participants, and dancers are also prone to plantar problems, as are non-athletic people who spend a lot of time on their feet or suddenly become active after a long period of lethargy. A recent study found that over 50 per cent of people who suffer from plantar fasciitis are on their feet nearly all day, and many cases of plantar fasciitis seem to occur in \'sofa spuds\' shortly after they\'ve made their first trip around their garden with a lawn mower in the spring.<b> </b>The injury is usually near to where the plantar fascia attaches to the heel bone.\n\n<b>Who gets plantar fasciitis?</b>\n\nPlantar fasciitis is quite common. It mainly affects people over 40 and seems to be more common in women. However, it can occur at any age. It is also common in athletes. Situations where it is more likely include the following:\n\n•If you do lots of walking, running, standing, etc, when you are not used to it. Conversely, people with a sedentary lifestyle are also more prone to plantar fasciitis.\n\n•If you have recently started exercising on a different surface. For example, running on the road instead of a track.\n\n•Wearing shoes with poor cushioning or poor arch support.\n\n•Sudden gains in weight or being overweight will put extra strain on the heel.\n\n•Overuse or sudden stretching of the sole. For example: athletes who increase their running intensity or distance; poor technique starting \'off the blocks\', etc.\n\n•Tightness of the Achilles tendon (at the bottom of the calf muscles above the heel) causing reduced ability to flex the ankle.\n\nOften there is no apparent cause, particularly in older people. A common wrong belief is that the pain is due to a bony growth or \'spur\' coming from the heel bone (calcaneum). Many people have a bony spur of the heel bone but not everyone with this gets plantar fasciitis.\n\n<b>What is the Cause?</b>\n\nThe most common cause of plantar fasciitis is very tight calf muscles which leads to prolonged and / or high velocity pronation of the foot. This in turn produces repetitive over stretching of the plantar fascia leading to inflammation and thickening of the tendon. As the fascia thickens it loses flexibility and strength. So repetitive small injuries to the fascia with or without inflammation or by biomechanical faults that cause abnormal pronation are likely to contribute.\n\nSome practitioners think you will see pronation by dropping and rolling in of the arch. This is not always the case. Sometimes it can only be seen with foot scans, especially if the patient has a high arched foot.\n\nOther causes include high arch or low arch feet (pes cavus / planus) and other biomechanical abnormalities including over-supination which should be assessed by a podiatrist / physiotherapist / biomechanist.\n\n<b>The \'red zone of tautness’</b>\n\nWhy does the fascia flare up? Although it is a fairly rugged structure, the plantar fascia is not very receptive to stretching, and yet stretching occurs in the fascia nearly every time the foot hits the ground. Studies indicate that the fascia can unkink itself to no more than 102 per cent of its normal length without suffering at least some tearing, but the force equal to almost three times body weight which passes through the foot with each step forces the fascia to come close to this \'red zone of tautness\' 90 times per foot per minute during the act of running (\'Anatomy and Biomechanics of the Hindfoot,\' Clinical Orthopaedics, vol. 177, pp. 9-15, 1983). So, it\'s not surprising that plantar fasciitis occurs fairly frequently, nor is it a surprise that the damage - and pain - often tend to occur near the heel, where stress on the connective tissue fibres is greatest, and where the fascia itself is the thinnest (it tends to broaden out as it reaches toward the toes).\n\nWhy are some people troubled by plantar fasciitis, while others remain relatively plantar fasciitis free? Research suggests that plantar fasciitis is often associated with a change in activity (like a sudden increase in the volume or intensity of training or a simple expansion of the total time you spend on your feet). Using worn-out shoes, especially while running on pavement or hard ground, also seems to increase the risk Individuals with flat feet are said to be at higher risk for plantar fasciitis, and - somewhat paradoxically - so are people with high arches. A sudden increase in hill training may also spark a bout of plantar fasciitis, and pregnancy and plantar fasciitis go together like hand and glove.\n\nGaining weight or being obese is also a strong risk factor for plantar fasciitis. A recent study determined that 77 per cent of its sample of 411 plantar fasciitis (heel spurs) patients were overweight. Another study found that 23 per cent of overweight women had plantar fasciitis (heel spurs) compared to 8 per cent of the normal body-weight group. The additional body mass simply places increased stress on the plantar fascia.\n\n<b>What are the Symptoms of plantar fasciitis?</b>\n\nPain is the main symptom. This can be anywhere on the underside of the heel. Commonly, one spot is found as the main source of pain. This is often about 4 cms forward from the heel, and may be tender to touch.\n\nThe pain usually eases on resting the foot, but is often worst when first used in the morning or after long periods where no weight is placed on the foot. Gentle exercise may ease things a little as the day goes by, but a long walk often makes the pain worse.\n\nSudden stretching of the sole of the foot may make the pain worse. For example, walking up stairs or on tip-toes. You may limp because of pain. Some people have plantar fasciitis in both feet at the same time.\n\n<b>What is the Treatment?</b>\n\nThe traditional remedies for plantar fasciitis are - at best - quite weak. Stretching the calf muscles is often recommended, as are massage, decreasing one\'s training, losing weight, purchasing better-fitting shoes (with a raised heel and arch support), using special insoles, relying on thick heel pads, icing the sore heel, and gulping down prescription-type doses of ibuprofen.\n\nThe trouble with most of these nostrums (e. g., stretching the calf muscles, getting a massage, cutting back on training, hitting the non-steroidal anti-inflammatories, and icing) is that they don\'t really address what\'s going on. Stretching out the calf area is often a step in the right direction (tight calf muscles put extra strain on the plantar fascia), but there are many other strengthening and stretching routines which work more effectively (we\'ll describe them later). In addition, you can refrain from training, employ ice packs, and wash down dozens of ibuprofen caps over a period of many months, but when you get back into full-fledged training again, plantar fasciitis is very likely to recur with full fury. As is the case with any injury, you have to understand why plantar fasciitis cropped up before you can really rehab yourself and make the impairment a distant memory. You also need to increase the strength and resiliency of the plantar fascia and the other muscles and connective tissues of the foot - and stabilise and strengthen the entire leg - before you can expect to stay away from plantar fasciitis in the future. The exercises outlined below do just that.\n\n<b>Exercises to recover from and prevent plantar fasciitis</b>\n\nOur plantar fasciitis routines are divided into two types - those that emphasise stretching and those that stress strengthening:\n\n<b>I. Stretching Routines</b>\n\nA. The Rotational Hamstring Stretch\nTo carry out this stretch, stand with your weight on your left foot and place your right heel on a table or bench at or near waist height. Face straight forward with your upper body and keep both legs nearly straight. As you stand with your right heel on the table and your left foot on the ground, rotate your left foot outward (to the left) approximately 45 degrees, keeping your body weight on the full surface of your left foot (both heel and toes are in contact with the ground). You are now ready to begin the stretch.\n\nLean forward with your navel and shoulders until you feel a steady tension (stretch) in the hamstring of your right leg. Don\'t increase the stretch to the point of pain or severe discomfort, but do maintain an extensive stretch in your right hamstring while simultaneously rotating your right knee in a clockwise - and then counter-clockwise - direction for 20 repetitions. As you move the right leg in the clockwise and counter-clockwise directions, stay relaxed and keep your movements slow and under control.\n\nAfter the 20 reps, remove your right leg from the table and rest for a moment.\n\nThen, lift your right leg up on to the table and repeat this clockwise and counter-clockwise stretch of the right hamstring, but this time keep the left (support) foot rotated inward (to the right) approximately 10 degrees as you carry out the appropriate movements. Perform 20 repetitions (clockwise and counter-clockwise) before resting.\n\nFinally, repeat this entire sequence of stretches, but this time have the right foot in support and the left foot on the table for the repetitions (do 20 clockwise and counter-clockwise reps with the left foot on the table and the right (support) foot turned out 45 degrees, and 20 more reps with the right foot turned in).\n\n<b>Why is this stretch valuable? </b>\n\nTight hamstring muscles (which cross both the knee and hip joints on the back of the leg) can lead to limited extension and exaggerated flexion of the knee during the running stride (they tend to pull the lower part of the leg backward). This over-flexion at the knee actually increases the amount of dorsiflexion at the ankle during the landing phase of the running stride (remember that the entire leg functions as a kinetic chain; change one thing, in this case hamstring flexibility, and that change will \'ripple\' right down the leg to the ankle joint). Increased flexion of the ankle creates an inordinate amount of stress on the Achilles tendon (the Achilles tendon\'s \'job\' during running is to control dorsiflexion of the ankle), which in turn pulls on the heel bone (calcaneus) and plantar fascia. The rotational hamstring stretch ensures that hamstring flexibility is developed in the transverse (rotatory) plane as well as the sagittal plane. The hamstrings undergo movement stresses in both of these planes during the running motion and therefore must have flexibility in both planes to avoid over stressing the plantar fasciae.\n\n<b>What other treatments are there for plantar fasciitis?</b>\n\nThere is no one specific treatment that appears stand out as the best. A combination of different treatments may help.\n\n<b>Rest the foot</b>\n\nThis should be done as much as possible. Avoid running, excess walking or standing, and undue stretching of the sole. Gentle walking and exercises described below are fine.\n\n<b>Footwear</b>\n\nDo not walk barefoot on hard surfaces. Choose shoes with cushioned heels and a good arch support. A laced sports shoe rather than open sandals is probably best. Avoid old or worn shoes that may not give a good cushion to the heel.\n\n<b>Heel pads and arch supports</b>\n\nYou can buy various pads and shoe inserts to cushion the heel and support the arch of your foot. These work best if you put them in your shoes at all times. The aim is to raise the heel by about 1 cm. If the heel is tender, cut a small hole in the heel pad at the site of the tender spot. This means that the tender part of the heel will not touch anything inside the shoe. Place the inserts/pads in both shoes, even if you only have pain in one foot. Orthoses should always be broken in slowly.\n\n<b>Painkillers</b>\n\nPainkillers such as paracetamol will often ease the pain. Sometimes anti-inflammatory medicines such as ibuprofen are useful. These are painkillers but also reduce inflammation and may work better than ordinary painkillers. Some people find that rubbing a cream or gel that contains an anti-inflammatory medicine onto the heel is helpful.\n\n<b>Injections</b>\n\nA steroid (cortisone) injection is sometimes tried if the pain remains bad despite the above measures. It may relieve the pain in some people for several weeks but does not always cure the problem. It is not always successful and may be sore to have done. Steroids work by reducing inflammation. Sometimes two or three injections are tried over a period of weeks if the first is not successful. Steroid injections do carry some risks including (rarely) rupture of the plantar fascia.\n\n<b>Splint treatment</b>\n\nSome people benefit from wearing a special splint overnight to keep the Achilles tendon and plantar fascia slightly stretched. The aim is to prevent the plantar fascia from tightening up overnight. In very difficult cases, sometimes a plaster cast or a removable walking brace is put on the lower leg. This provides rest, protection, cushioning and slight stretching of the plantar fascia and Achilles tendon.\n\n<b>Extracorporeal shock-wave therapy</b>\n\nHigh pressure sound waves directed at the plantar fascia may be used to stimulate healing if other treatments have failed. However, there are some uncertainties as to how effective this treatment is, mostly because of a lack of large, well-designed clinical trials to prove this. Also, there is a possibility of side effects from the treatment. These include damage to the bone, pain, damage to the Achilles tendon or a blood-filled swelling called a haematoma. You should discuss the treatment fully with your doctor if it is available.\n\n<b>Other treatments</b>\n\nVarious studies and trials have been carried out looking at other possible treatments for plantar fasciitis. Such treatments include injection with botulinum toxin and treatment of the plantar fascia with radiotherapy. These treatments may not be widely available.\n\n<b>Surgery</b>\n\nThis may be considered in very difficult cases. Surgery is usually only advised if the pain has not eased after 12 months despite other treatments. The operation involves separating the plantar fascia from where it connects to the bone and is called a plantar fascia release. It may also involve removal of a spur on the calcaneum if one is present. Surgery is not always successful. It can cause complications in some people so it should be considered a last resort. Complications may include infection, increased pain, injury to nearby nerves, or rupture of the plantar fascia.\n\n<b>Can plantar fasciitis be prevented?</b>\n\nThere are certain things that you can do to try to prevent plantar fasciitis, especially if you have had it before. These include:\n\n•Regularly changing trainers used for running or walking.\n\n•Wearing shoes with good cushioning in the heels and good arch support.\n\n•Losing weight if you are overweight.\n\n•Regularly stretching the plantar fascia and Achilles tendon (see exercises above), especially before exercise.\n\n•Avoid exercising on hard surfaces.\n\n*Contributed by Martin Haines, Managing Director of Brytespark, Specialist Biomechanics Coach™, Chartered Physiotherapist.\n\n------------------------------------------------------------------------------------------------------------\n\n<i>Would you like to learn how to assess foot function (pronation &amp; supination) so you can  prescribe </i><b><i>Pre Orthotic Conditioning</i></b><i> exercises for your clients?</i>\n\n<i>Do you want to learn how to communicate better with therapists, podiatrists &amp; orthotists?</i>\n\n<i>Would you like to learn how to assess for any descending root causes coming from the rest of body too?</i>\n\n<i>Do YOU have a minimum level 3 qualification?</i>\n\n<i>Then you will LOVE our Biomechanics Coach</i><i>™</i><i> Diploma!! </i>\n\n<i>Book for any course in 2017 </i><b><i>before Dec 20th 2016</i></b><i> and you will also get a fantastic Goodie Bag </i><b><i>(T shirt, Grypit water bottle, Awesome Pre-Workout, Jordan lifting gloves, Biomechanics Education bag)</i></b>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\"><i>SIMPLY REGISTER YOUR INTEREST HERE NOW!</i></a><i> </i>\n\n<i>Leave your contact number and one of us will give you a call !</i>','Ever Heard of Plantar Fasciitis?','','inherit','closed','closed','','1397-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1397,'https://biomechanicseducation.com/?p=38847',0,'revision','',0),(38848,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<h1>WOW What a year!</h1>\n<span style=\"font-size: large;\">YOU are super lucky because we are CELEBRATING the success of our..</span>\n\n<strong><em>Life Changing Education that Moves You!</em></strong>\n\n<span style=\"font-size: large;\">To say thank you to those of you who continually support us we have not 1 but 2 AMAZING offers for YOU to choose from;</span>\n\n<em><u>November offer</u></em> - Buy <strong>Pelvis &amp; Spine Biomechanics</strong> workshops and get the <strong>Low Back Health Workshop FREE</strong> (worth £180)\n\nOR\n\nBOOK any workshop scheduled in 2017 <em><u>before Dec 20th</u> </em>and get a <strong>FREE iMoveFreely®</strong><strong><span style=\"font-size: large;\">T shirt, Grypit water bottle, AWESOME pre-workout, Jordan weight lifting gloves and a Biomechanics Education bag.</span></strong>\n\n<a href=\"https://www.biomechanicseducation.com/schedule/\" target=\"_blank\" rel=\"noopener\">BOOK HERE NOW or simply register your interest</a>\n\nBEFORE WE RUN OUT!\n\nIf you have any further questions prior to making your booking please do not hesitate to contact us and we really look forward to speaking to you soon!\n\nNote: We offer ALL of our learners FREE RE-SITS of their workshops since we pride ourselves on our inclusive learner support to give YOU life changing education experiences.','FREE Low Back Health Workshop','','inherit','closed','closed','','1378-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1378,'https://biomechanicseducation.com/?p=38848',0,'revision','',0),(38849,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','<b>The Integrated System</b> has been not only discussed but also sung about since I was little. For example I knew the <i>thigh bone connected to the hip bone and hip bone connected to the back bone</i>… (you know the song)\n\nBut I didn’t appreciate it like I have since becoming a <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Specialist Biomechanics Coach™</a> and this is the one of the biggest differences between <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaches™</a> and other professionals. So while other professionals TALK about the body being an <b>Integrated System</b>, here I would like to explain exactly what that means to those in the <i>intrinsic biomechanics</i> world and why I believe others talk about it but don’t actually practice it, and why.\n\nGenerally we only seek help when we have a problem otherwise, <i>why would we pay for advice?</i> is the general attitude right. We service and MOT our cars regularly (by law in fact) and yet we can buy a new car!\n\nWhat about our precious bodies?\n\nWell when we have an injury or some pain we automatically go to the locally recommended therapist, osteopath, chiropractor, physio, sports therapist or even your GP to find out what the injury or pain is, since they are <i>clinically </i>trained and understand how to ‘treat’ the <i>site of pain</i> or injury. Commonly they will then advise you what to do, maybe give you some kind of manual therapy treatment to improve the symptoms at the site of the problem to reduce the effects of the injury and generally try to make you more comfortable.\n\nSo if you are injured from a <i>trauma</i> then it is advisable to seek these professionals services for it because when there is a pathology, this is probably the most sensible way to go.\n\nYet there are many more cases of ‘low grade’ aches, pains and niggles that are <i>insidious</i> and do not fit into this category. The low grade insidious aches and pains we experience from our daily lifestyles are NOT really ‘injuries’ as they don’t always fit into this category of pathological or clinical changes. However this leaves many professionals with a <i>subjective </i>view of where injury has come from; one cause could be from sitting at a desk all day, for example. Yet there are those who sit at a desk without problems, so if it were simply the act of sitting at a desk, would we not all experience exactly the same low grade aches and pains while sitting at our desks?\n\nSo while I agree that the act of sitting at a desk can contribute, ultimately it is the individuals <i>intrinsic biomechanics </i>(part of which is the neuro-musculoskeletal system) that compensates for being static for too long when we are designed to move, maybe like hunter gatherers.  This can then cause the body to ‘grumble’ at the fact we have just been sitting and not using those hip muscles for 8 hrs giving us muscle spasm which tethers nerves and stiffens joints or any variation of those dysfunctions. These issues may initiate without pain but over time become more uncomfortable.\n\n<b>What happens if you gain mechanical compensations like this? </b>\n\nWell, this can happen in any order, but the muscle spasm might pull on a joint abnormally causing the loading to change in a subtle way that over time irritates the tissues and eventually, over time, causing areas to ache a little. If left unaddressed these low grade aches can become much more painful and eventually can result in a what is often thought of as a secondary injury.\n\n<b>How do we categorise injuries?</b>\n\nWell, there are a few ways, but as <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaches™</a>, we like the work of Sahramann when she breaks them down into 2 sections.  One is the <b>PathoKinesiology Model.</b>  This is where the injury (or pathology) causes abnormal movement and this is then picked up on a movement screen as a protective movement pattern.  The other category is the <b>KinesioPathology </b>Model where the movement causes abnormal loading on structures and it is this that causes the pathology (injury).  In these cases any abnormal movements are really compensatory movements, rather than protective movement patterns.\n\nSo, when a movement coach screens a client to look at any abnormal movements, they can not be sure of whether they are looking at a protective or compensatory movement pattern and of course its essential to understand which it is.  If it’s a pathology causing the abnormal movement, then the pathology needs to be dealt with first, but if it’s the movement causing the pathology, it’s the movement that needs to be dealt with first.  Unfortunately from a movement screen, you don’t know which is which.\n\nWith an <b><i>intrinsic </i></b><i>biomechanical</i> screen, it doesn’t matter which came first, as all we are doing is providing the <b>capacity</b> for whatever ‘normal movement’ is for that client.  We are not directly trying to ‘artificially’ change the movement, we are merely providing the building blocks for whatever pattern suits that individual.  This approach truly understands The Integrated System and compliments all other movement specialists work, as we are helping the client to be able to perform the movement patterns as directed by them.  This enables them to provide their movement correction exercises with on more stable biomechanical platform.\n\nSo, do other professionals understand <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">The Integrated System</a>?\n\nYes of course they do, but the <b><i>intrinsic </i></b><i>biomechanics</i> approach is unique and is very complimentary to other approaches.\n\nBut what do you think?','They SAY It But Do They \'Practice\' It?','','inherit','closed','closed','','1365-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1365,'https://biomechanicseducation.com/?p=38849',0,'revision','',0),(38850,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','Laura Walker has been nominated as Biomechanics Coach™ of the Month!\n\nWe do notice what ALL of our Biomechanics Coaches™ do that are actively promoting healthy lifestyles and ways to improve movement. We wanted to share Laura’s story with you as she is making a real difference with her wonderfully positive and motivational attitude.\n\nThank you Laura, for doing your part in getting the UK moving more freely up north in wonderful Aberdeen!\n\nLaura says…\n\n<i>In June 2015 I was delighted, and relieved, to qualify as a Biomechanics Coach™. Hooray!! </i>\n\n<i>When I was in school, I enjoyed the friendships much more than the school work, so I knew (as did my dad, to his frustration) I ‘could do better\', but I just wasn\'t interested, I was more interested in other things. </i>\n\n<i>Biomechanics Education came to my attention because it was presenting different fitness information. I\'m fascinated with how the body works and how everything is linked. Biomechanics Education gave me this important missing piece of the jigsaw. Despite my best attempts in school to do very little I have actually spent a lifetime learning and Biomechanics Education filled the gaping gaps that had been left by all of my specialist training. </i>\n\n<i>Now I am using Biomechanics Coaching™ &amp; iMoveFreely® with the older adult to improve fitness, strength &amp; balance and their quality of life. Over the last 20 years I have qualified in many fitness disciplines. As a specialist instructor with the older adult (my oldest client is 92) my oldest client in my aerobics class is 84!</i>\n\n<b><i>Where will I be in 10 yeasts time?</i></b>\n\n<i>Well to start with, I will be 63 by then so I\'m hoping I will be retired. But, with a little hard work, maybe not completely. My daughter has joined me in the business this year, which I am delighted about. We are currently working with business mentors to change how we work.</i>\n\n<b><i>To anyone THINKING of becoming a Biomechanics Coach™, THINK no more!!</i></b><i> Take action and invest the time, energy and money. The investment you make in your education, your confidence and your business is more than worth it.</i>\n\n<b><i>My Personal Achievements:</i></b>\n\n<i>Has to be my family. My husband took me to the Queens garden party at Hollyrood Palace this summer. </i>\n\n<i>I have watched my son play rugby for Scotland three years running. </i>\n\n<i>And, my two eldest girls took me to St James\'s Palace last week to collect their Duke of Edinburgh gold award,(and spoke to the duke himself.) </i>\n\n<i>Behind every great man....(or family!)</i>\n\n<b><i>My sporting achievements:</i></b>\n\n<i>These are a few: I played badminton for my university, (when I was there, </i><b><i>many</i></b><i> years ago). I Spent 10 years playing this great game. But I started with fitness in the 70\'s when it was known as Keep Fit and I was a large 10 year old girl. I loved the music, enjoyed being active as it was something I could do, and the fun we had as a group. Nothing much has changed then!!! </i>\n\n<b><i>My Career achievements: </i></b>\n\n<i>Last year I won my very first business award. It has been the highlight of my business career. I deliver fitness to what is termed \'Specialist Populations\' and so work with charities who support people back to work following long term illness or injury, adults with special needs, people who suffer stroke, MS, diabetes and more. </i>\n\n<i>The work I am most proud of is when I worked with NHS Grampian Diabetes department. At the time, the D&amp;O qualification did not exist. I wrote a training programme, delivered it to local instructors and organised a GP referral program throughout NHS Grampian for people with diabetes to receive an exercise and education session, delivering lifestyle and diabetes management and nutritional information. </i>\n\n<i>It\'s still in place today, 10 years later. </i>\n\n<b><i>Something nobody knows about me?</i></b><i> </i>\n\n<i>Some people know I speak Welsh, but few people know it was my first language. I grew up speaking Welsh, and all my education was through the medium of Welsh. I was fortunate to attend the only bi-lingual comprehensive school in Wales, at the time. </i>\n\nFinally Laura says..\n\n<i>Having had several success stories this one is the most poignant…</i>\n\n<i>This year I presented an exercise lecture at the Arthritis UK conference in Manchester. </i>\n\n<i>Those in attendance present with arthritis amongst other health conditions and pain is the one thing that\'s constant. We know as Biomechanics Coaches™ how the anti spasms have the potential help. I was fortunate enough to follow an arthritis consultant lecture. He had just used the same words and phrases Biomechanics Coaches™ use, which helped me to engage my audience with the exercise I was recommending. </i>\n\n<i>His lecture informed the audience:  if you live with pain for 6 weeks or more you\'ll change your movement pattern. This change will cause strain, and disfunction of muscles. </i>\n\n<i>In my session I then reiterated this information and added: if you perform these anti spasms, muscle function is likely to improve and the strengthening exercise will support this, thus contributing to relieving the discomfort of arthritis. </i>\n\n<i>I had a great response from the group after the session. People came up to me after class and generally commented how great they felt. However, two ladies waited till the other delegates had left to came to speak with me. They both said:  \'I  can honestly say that was superb. I\'ve not felt like this for years. I\'m amazed how well I can move\'. </i>\n\n<i>That for me was was job satisfaction. I was so pleased to be able to help those suffering long term pain to feel great. Job done!</i>\n\n<i>Thanks</i>\n\n<i>Laura</i>\n\n<i>&#x1f60a;</i>\n\n<b>Want to learn what Laura\'s missing link was?</b><b>\n</b><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">READ MORE HERE </a>\n\n&nbsp;','Have You Found Your Missing Link?','','inherit','closed','closed','','1361-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1361,'https://biomechanicseducation.com/?p=38850',0,'revision','',0);
INSERT INTO `6m7_posts` VALUES (38851,0,'2024-07-16 11:26:35','2024-07-16 11:26:35','Walking down the street, training at the gym, watching girls teeter in high heels on a night out or walking knock kneed and their Uggs, watching the way people sit at events, at work or in the waiting room at the doctors is something I find quite fascinating.\n\nNOOOO I’m not a voyeuristic person (HONEST I never watch reality TV - well not regularly anyway!!) but I am a geek when it comes to watching human movement and analysing physical variations in our body types and the way we move because of those variations.\n\nWhy does THAT happen? Why do THEY walk THAT way?\n\nBeing on holiday the examples of our differences are more obvious with less clothing and what I noticed while on holiday this year was that we really should..\n\n<i>..Embrace OUR Genetics!</i>\n\nHaving spent 2 weeks half naked, with half naked people, lying around a pool watching each other walk to the bar or apply cream, step into a pool, swim, pick up kids, eat ice cream etc etc...\n\nIt really does emphasise human movement variations and of course the variations of aesthetics.\n\nIt is truly fascinating to see the many different body types from large to small, tall to short etc. It made me think about the ‘ideal’ body concept and in fact how dull and boring it would be if we all looked and moved the same way or if we ALL had those \'magazine cover\' bodies, the same hair styles, the same limb lengths, waist circumferences etc!\n\nBUT\n\n..in MY opinion using aesthetics as THE goal is possibly not the best way to plan exercising programmes even if that is ultimately the end goal. Creating a goal that is health and/or fitness related will of course still result in improved aesthetics based on YOUR body type, YOUR frame and YOUR genetics. Having this shift in the training programme goal offers more opportunity for positive achievement/s AND a more positive shift towards a realistic body image.\n\n(Here I am talking about the average client as oppose to competitive body builders of course, since body building is an aesthetically judged competition rather than health and fitness being the goal)\n\nThere is of course the beautiful aspect of our differing bodies types. From the cute PSIS dimples above large OR small and maybe wide OR narrow round buttocks. These dimples can appear wide or narrow or some people don\'t see to have any! There are various textures of tanned skin, even different ‘shades’ of white skin and some have scars or birth marks that no on else in the world has!\n\nThere is a huge variety of long OR short soleus calf muscles above feet that turn out OR turn in OR <i>flick</i> a certain way during their bare foot walk across the tiles. Some spines rotate and some stay rigid during movement. LONG shins, short shins, slim arms, muscly arms, <i>baggy</i> triceps and bulging ones.\n\nSeriously imagine if we ALL actually looked the same!!! BOOOOOOORRRRIIING!!!\n\nTHEN as PT’s, Fitness instructors, exercise professionals and even therapists we get frustrated that we struggle to understand why people move the way they do.\n\nBUT WE ARE ALL DIFFERENT!\n\nSo of course this will be a challenge for anyone trying to apply a system to human movement…\n\nNO ONE SYSTEM WORKS FOR EVERYONE!\n\nSo we should receive education that embraces the differences between us all rather than EXPECTS us ALL to move the same way. We should maintain an open mind to what our clients are capable of when using their bodies. A realistic aim or goal should always be individual to that person in relation to their history, genetics, lifestyle, diet, biomechanics and movement ability or capacity.\n\nYOU do KNOW the MORE you know the LESS you know, right?\n\nSo we should also demonstrate duty of care to our clients by continuing to attend up to date CPD’s, further training and we should also read more and do our OWN research to develop our OWN methods of application for the best care of OUR clients.\n\nWELL did you know you already learnt one of the simplest and applicable methods to analyse human movement (without any fancy equipment) as an exercise professional?\n\nYUP\n\nGroup Action of Muscles is what we call our <i>movement analysis</i> study section in the Spine Biomechanics 2 day CPD workshop, that is part of our Biomechanics Coach™ workshop series. This is where we take our learners back to their A&amp;P training, which often gets forgotten due to only ever using lay language with our clients! So we lose the skill of recalling the analysis of abduction, rotation, flexion etc as part of movements during our exercise prescription. PLUS this is disguised by lots of soft tissue (muscle, fat, fascia, nerves, skin etc) covering the skeletal system which is the part of the anatomy we use to understand those joint actions.\n\nThis L3 A&amp;P knowledge is the minimum <b>pre requisite</b> for accessing our academy at the appropriate level to understand the screening system we teach. BUT it is very rare that a learner has really come in and easily nailed this session. Yet it is what we are taught right at the beginning of our training!\n\nHere are the reasons professionals give for attending our CPD workshops:\n\n<i>I want to understand the body and movement better </i>\n\n<i>I want to learn more about the anatomy </i>\n\n<i>I want to understand how we move on the inside</i>\n\n<i>I want to understand why people move badly</i>\n\n<i>I want to understand how to help people move better</i>\n\n<i>I want to understand why they ache hurt get injured</i>\n\nIf we remembered out level 3 A&amp;P we would already have many of these skills and be more confident. We also hear…\n\n<i>“but I never use this language with my client!?”</i>\n\n<i>agonist </i>\n\n<i>antagonist </i>\n\n<i>synergists</i>\n\n<i>dynamic stabilisers </i>\n\n<i>fixators</i>\n\n<i>abduction</i>\n\n<i>adduction </i>\n\n<i>rotation </i>\n\n<i>flexion </i>\n\n<i>extension </i>\n\n..of course, me neither !! BUT if we talk to <i>each other</i> this way then at least we can enhance our recall AND memory of it.\n\nSadly the fitness industry in particular causes many of us to feel we can\'t admit to how bad our A&amp;P memory really is. If we are really honest it’s really poor isn’t it and therefore not surprising many exercise professionals lose confidence in what they are looking at when watching clients move!\n\nWe are expected to achieve so much when it comes to improving movement when we cannot even work out the WHY from WHAT we see.\n\nClients are suffering more and more due to lifestyles and our job of choosing the best exercise programme is getting even harder as everyone has SOMETHING going on, eh!\n\nPreviously we didn\'t feel we had REASON TO REMEMBER our A&amp;P.\n\nIn our academy we GIVE YOU REASONS to remember your anatomy which gives you increased confidence when watching your clients move.\n\nSo while embracing our differences, lets start getting serious about understanding human movement and improving confidence in movement and of course function.\n\nRemember NO ONE IS PERFECT …that would be SO dull!\n\nThe Spine Biomechanics workshop includes WAAAAAY more than just movement analysis by the way!!\n\n<a href=\"https://www.biomechanicseducation.com/workshop/spinal-biomechanics-3/\">REGISTER YOUR INTEREST HERE</a>','Embrace YOUR Genetics! -  I Confess - I’m A Geek!!','','inherit','closed','closed','','1358-revision-v1','','','2024-07-16 11:26:35','2024-07-16 11:26:35','',1358,'https://biomechanicseducation.com/?p=38851',0,'revision','',0),(38852,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Do YOU wish you knew an easy way to recall muscle attachments?\n\nDo YOU wish there was a CPD that could help you understand the anatomy better from the INSIDE?\n\nWould you like to study human movement and how to improve it with your clients?\n\nAre you INSTINCTIVELY prescribing certain exercises BUT unsure if they are actually right for THAT client?\n\nWell we are confident we can help you with our CPD\'s but we asked Mark Blower, one of our previous learners this question...\n\n<b>What would your advice be to anyone thinking of joining our academy or even becoming a Biomechanics Coach™?</b>\n\n<i>\"Simple.. just do it! </i>\n\n<i>My experience is that it’s a real “through the looking glass” moment once you start with Biomechanics Education, and often it will challenge you and possibly some of your long held beliefs, but you will come out of it the other end on a completely different level as a fitness professional. So do it, keep your mind open and your notepad and pencil handy!\"</i>\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">LIKE THIS?</a>','Are YOU a PT who wishes they could remember their A&P?','','inherit','closed','closed','','1353-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1353,'https://biomechanicseducation.com/?p=38852',0,'revision','',0),(38853,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','<b>How far would YOU travel? </b>\n\n<b>How much would YOU pay?</b>\n\n<b>What lengths would YOU go to...to find answers?</b>\n\nLet me give you some examples of how much Biomechanics Coaches&#x2122; are in demand and the lengths people will go to find us.\n\nNigel McHolland was one of our first learners many years ago and has also previously been our of the Month. Based in Scotland he practices a blend of skills including Sports and Remedial Massage and he is Strength and Conditioning Coach. So is he just like many of YOU reading this now.\n\nWhat sets Nigel apart is his SYSTEM. The ability to objectively analyse, assess, screen, deduce and monitor which then allows him to understand which skills to apply, when to apply them, how to create an extremely bespoke and personalised exercise programme AND also when to refer to someone else, for each one of his clients.\n\nWe LOVE to stay in touch with people like Nigel, and as many of the people who train with us as possible, because WE are united in our common goal of <i>improving human movement </i>and helping the nation be <i>free to move </i>(and because they are really cool, nice people!)\n\nAnyway Nigel emailed me the other day to share an experience with me and with his permission I want to share it with you because THIS is the REALLY AWESOME sort of thing WE get to experience as Biomechanics Coaches&#x2122;...\n\n<i>Hi Rach,</i>\n\n<i>Below is a testimonial from my Swiss client that visited me for a week recently. Some amazing results!!</i>\n\n<i>Nigel...</i>\n\n<i>Testimonial</i>\n\n<i>“I’m not a prolific reviewer, but I feel compelled to break cover. While on my way to Gullane to see Nigel, sitting on a plane from Switzerland to Edinburgh after having booked a B&amp;B for 5 nights, I thought to myself, “What am I doing? Am I crazy”.  I lead a relatively active life and had become frustrated with little niggles, discomfort and dissatisfaction pursuing the conventional route of doctors, physios, chiros, osteopaths, self-proclaimed wonder programs. Having discovered the world of podcasts, I heard Nigel being interviewed by Christopher Kelly </i><a href=\"http://t.co/pIOtlSUrOh\"><i>http://t.co/pIOtlSUrOh</i></a><i> and it so happens that my one leg was also functionally shorter. I was very interested, but the system he described had not reached Switzerland yet, so after an initial phone call I booked my ticket and accommodation allowing for 3 rapid fire sessions. The system is very simple, but voodoo-like amazing. The mystery quickly clears with Nigel’s anatomical explanations, but the result does not. He is also very open and accommodating to my uneducated diagnosis and clearly has a wealth of knowledge and experience. On the plane back to Switzerland, I felt equipped to manage and even regress my anatomical imbalances and to date my progress is very much upward. In hind sight I would have done this as a first resort, but then again I probably would not have appreciated the simple, yet powerful system. Ps. I didn’t bring my family along, but this trip has opened my eyes as a holiday destination and if you’re into Golf, Gullane has a pilgrimage feel to it.”      </i>\n\nSo if you are thinking about sampling our courses email me rachel@biomechanicseducation.com\n\n&nbsp;','\"AM I CRAZY?\"','','inherit','closed','closed','','1350-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1350,'https://biomechanicseducation.com/?p=38853',0,'revision','',0),(38854,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','This Biomechanics Coach™ of the Month nomination is the fantastic Lorna Wilson!\n\nShe is spreading the word internationally over in Amsterdam and we speak regularly every month to discuss all things \'intrinsically biomechanical\' amongst the things.\n\nLorna\'s nomination is not only for flying the Biomechanics Coach™ flag internationally but also for staying so committed and actively up to date even from so far away. She really does an awesome job with her clients - see her case study below.\n\n<b>What made you choose Biomechanics Coaching™?</b>\n\n<i>I felt that I was missing something in my personal training and doing the Biomechanics Coaching™ qualification was suggested by another Personal Trainer.  I jumped right in!</i>\n\n<b>What do you specialise in outside of Biomechanics Coaching™?</b>\n\n<i>I am a personal trainer and mostly trained more with people who had either never trained or hadn\'t trained for a long time.  Often this would be in the own house where they felt most comfortable and also outside.  People who needed a little bit more TLC to get them started.  Also, when I started this job in Amsterdam I worked with a lot of Expats.  At that time personal training wasn\'t very common.  Now I am working more with people like myself who are into running and triathlon.</i>\n\n<b>Where would you like to see yourself in ten years from now?</b>\n\n<i>I would like to have made Biomechanics Coaching™ more known in Amsterdam especially in the endurance world.  Also, I would like to have clients coming from all round the country as they have heard how amazing I am!</i>\n\n<b>What would be your advice to somebody thinking of becoming a Biomechanics Coach™?</b>\n\n<i>It is a very powerful tool to add to what you are currently doing.  I feel so much more confident in how I can help my clients than I have ever done before.  </i>\n\n<b>On the journey to where you are now what has been your achievements?</b>\n\n<i>• Personal - Successfully moving away from corporate life and being less stressed and loving what I do</i>\n\n<i>• Sporting - Despite currently planning to run Boston Marathon completing my first marathon still remains one of my sporting highlights.</i>\n\n<i>• Career highs - Being asked to talk at a conference for women doing triathlon.  It really made me feel I had made it even though the conference never went ahead :(</i>\n\n<b>Tell us a secret or something interesting about you that not many people know about</b>\n\n<b>you: </b> <i>I\'ve lived in the Netherlands for more than 14 years and still take Dutch lessons!</i>\n\nFancy joining Lorna in raising the profile of Biomechanics Coaching™Amsterdam? or anywhere?\n\n<a href=\"https://www.biomechanicseducation.com/schedule/\"><b>2017 dates are LIVE and the waiting list is immense!</b><b>\n</b><b>Register your interest QUICK!</b></a>\n\nHere is one of Lorna\'s case studies;  <a href=\"http://wilsonsworkouts.nl/success-of-a-runner/\">http://wilsonsworkouts.nl/success-of-a-runner/</a>\n\n&nbsp;','Less Stress in Amsterdam!','','inherit','closed','closed','','1346-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1346,'https://biomechanicseducation.com/?p=38854',0,'revision','',0),(38855,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','A ToroPro!\n\nLearn how on this kinesiology taping course with one of The Movement Convention\'s resident international presenters, Mike Grice of Movement Therapy Clinics.\n\nMike was proud to represent Biomechanics Coaches™ throughout the world when he presented 3 workshops on <i>\'Biomechanics Screening for Lumbo-Pelvic Dysfunction\'</i> at the IOC World Conference for injury prevention in Monaco with Dr Marie-Elaine Grant.\n\nHe is also an exceptional Master Trainer and teacher of therapies amongst our things.\n\nExperience Mike\'s classroom first hand\n\nNovember 16th 10am-4pm\n\nBirmingham Movement Therapy Clinic\n\nHarbourne\n\nLearn how to tape the ToroPro way..\n\n<a href=\"http://www.birminghammovementtherapy.co.uk/active-skills/\">BOOK HERE</a>','Kinesio Tape Like A \'Pro\'','','inherit','closed','closed','','1342-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1342,'https://biomechanicseducation.com/?p=38855',0,'revision','',0),(38856,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','You want to move more freely, right?\n\nYour clients want to move more freely too, don\'t they?\n\nIn fact, do you know anyone who doesn\'t want to move more freely?\n\nIn many cases, moving more freely also = less pain\n\nIt really isn\'t that complicated to be honest but we do need to consider WHY we/our clients seem to be suffering so much with our movement. Even as fitness/exercise professionals WE often find the hectic lives we lead reduce the time we spend on ourselves and even WE need to regain responsibility for our own physical health to set an example to our clients.\n\nConsidering the average healthy adult (that includes YOU) spends a high proportion of their time (certainly compared to 50 years ago) either sitting at a desk, driving, travelling or hunched over phones for example, it’s no surprise we are suffering these low grade non specific aches and niggles, is it!? Our hips are forgetting they are capable of more than 90 degrees of flexion and our thoracic spine rarely seems to find extension these days.\n\nSo by setting an example to our clients and taking ownership, making a few small changes to OUR own lifestyles (and maybe some bigger ones for some of us too) we can reduce OUR risk of injury, while teaching our clients AND feel the benefits of the freedom of movement with these 6 really simple tips:\n\n<strong>1). See a skilled professional who can assess your intrinsic function BEFORE you have a problem</strong>\n\nNot to be confused with seeing a medical professional who\'s job is to assess medical conditions, find someone who understands intrinsic function like a Biomechanics Coach™, a Movement Specialist or Instructor who specialise in teaching you how to improve your movement .\n\n<strong>2). Do What They Say</strong>\n\nSimple = Own it!\n\nThe information they give you is what you are paying for, TRUST them!\n\nYOU’RE in the state YOU’RE in because of YOUR lifestyle.\n\n<strong>3). Get A Good Sports ‘Style’ Massage Regularly</strong>\n\nFind a good massage therapist and have a massage regularly - the good ones are the ones with a great reputation, they are NOT the cheapest!! You get what you pay for.\n\n<strong>4). Stop Carrying Your Bag On The Same Side</strong>\n\nWe would never consider going to the gym and only training one side of the body and yet every day we carry our heavy sports bags, shopping bags, laptop bags on the same side!\n\nGo shopping and get a trolley bag or a rucksack!\n\n<strong>5). Burn All Your \'Fashion\' Footwear!</strong>\n\nOk a tough one (specially for the ladies who like to party maybe) but I guess the question is this \"how much fun you gonna have sitting at home crippled with back pain looking ago those pretty high heels in the bottom of your wardrobe?\"\n\nAlso not all shoes are good for ALL feet.\n\nGet your feet assessed properly for advice on the best footwear for your foot function. If you have a loose MidTarsal Joint you probably shouldn\'t wear, lets call them \'finger\' shoes (you know the ones I mean), ballet pumps or converse.\n\n<strong>6). Move More!</strong>\n\nKind of an obvious one but one we still forget once sucked onto the TV or computer screen. Rather than set up all of your things within reach of your desk, move everything away from you so you are reaching and moving more. Offer to make drinks for everyone - all the time!\n\nInvest in a raised laptop stand onto of your desk so you can stand (this made a huge difference for me) so your hip muscles of permanently active. Or simply put your keyboard on a stack of books sometimes.\n\nFor more information on what a Biomechanics Coach™ prescribes <a href=\"https://www.biomechanicseducation.com/imovefreely/\">READ HERE</a>\n\nWe NEED YOU !\n\nDemand is increasing rapidly for this skill set so we need more Biomechanics Coaches™ around the UK!\n\nIs it you?\n\nDo you have what it takes?\n\nAre you prepared to take your profession to another level?\n\nDo you want to become part of a strong inter-professional team?\n\nBecome a Biomechanics Coaches™ <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">REGISTER YOUR INTEREST HERE </a>','6 Tips GUARANTEED To Improve Your Intrinsic Biomechanics!','','inherit','closed','closed','','1337-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1337,'https://biomechanicseducation.com/?p=38856',0,'revision','',0),(38857,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','<ul>\n 	<li>Do you have clients who just can\'t move very well?</li>\n 	<li>Do they stretch regularly but still don\'t improve their posture or movement?</li>\n 	<li>Do you wish you had something new in your tool box?</li>\n 	<li>Do you wish you knew more about how to help clients with movement \'issues\'?</li>\n</ul>\nWhat if I suggested to you that not all muscles only need to be stretched and that more often than not muscles may require a low level contraction to improve function? If you have never heard of subclinical muscle spasm or Post Contraction Sensory Discharge please do read on....\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-26985\" src=\"https://biomechanicseducation.com/wp-content/uploads/2016/10/shutterstock_1054776068-scaled-1.jpg\" alt=\"\" width=\"755\" height=\"296\" />\n\n&nbsp;\n<h2><span style=\"color: #808080;\"><b>Question</b>: What is muscle spasm?<i> …’A muscle that cannot relax’ , </i>Dvorak</span></h2>\nRibot-Ciscar et al has established that a muscle relaxes maximally after it has been contracted sub-maximally and for a prolonged period. He refers to it as <i>Post Contraction Sensory Discharge. </i>\n\nThe anti-spasm, or 20/20 muscle energy technique (M.E.T) as we refer to it (20% effort muscle contraction held for 20 seconds), is described below by E. Ribot-Ciscar, M. F. Tardy-Gervet, J. P. Vedel and J. P. Roll.\n<blockquote><i>Summary</i><i> “The activities of human muscle spindle primary endings were recorded in the lateral peroneal nerve using the microneurographic method. The aim of the study was to test whether voluntary isometric contraction causes any after-effects, first in the resting discharge of muscle spindle primary endings and secondly in their responses to a slow ramp stretch. To investigate the latter point, the initial angular position of the ankle was passively adjusted until the unit fell silent, in order to introduce a delay in the responses to muscle stretch”....they found that “Isometric voluntary contraction led to changes in muscle spindle stretch sensitivity which resulted in a reduction in the stretch threshold and a decrease in the muscle spindle dynamic sensitivity. These data suggest that the after-effects observed may have been triggered by static fusimotor neurones. The results are discussed with reference to the theory according to which the processing by the CNS of muscular proprioceptive messages deals mainly with signals arising from muscles stretched during movement, and it is concluded that the coactivation of alpha and gamma motoneurones during the contraction facilitates the coding of the parameters of forthcoming stretching movements, by the muscle spindles”. </i></blockquote>\n&nbsp;\n\nSo in other words the M.E.T exercises like the 4 Sign or Leg Press, allow the muscle to stretch easier after the ‘contraction’, and consequently <b>improves the overall function</b> of the muscle.\n\nNo single method will help all ‘types’ of muscle spasm of course, this is one of many ways that can help. What this technique is great for is a great way to provide your clients with a method that they can help themselves so they’re don’t become reliant on their therapist or trainer. It’s something to empower them to have control over their own movement limitations between sessions with their practitioner.\n\n&nbsp;\n\n<hr />\n\n<blockquote>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><strong><img class=\"wp-image-25128 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1520541617-scaled.jpg\" alt=\"\" width=\"302\" height=\"231\" /></strong></span></h2>\n<h2>Muscle in subclinical spasm</h2>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><span style=\"color: #000000;\"><strong>What it is?</strong></span>: A muscle in spasm is one that cannot relax in other words it is in a state of constant contraction (tension).</span></h2>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><span style=\"color: #000000;\">Why?</span>: Usually because it’s trying to protect something (a joint or nerve perhaps) or its being loaded from another biomechanical problem remote from that muscle.</span></h2>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><span style=\"color: #000000;\">Management?:</span> Helped by M.E.T\'s and maybe massage techniques.</span></h2>\n</blockquote>\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h2>Muscle that is \'tight\'</h2>\n<blockquote>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><span style=\"color: #000000;\"><b>What it is?</b></span>: A short/inflexible muscle (tight) is one that is not in spasm, it is merely shorter in length than it was</span></h2>\n<img class=\"wp-image-23770 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/08/shutterstock_1176407491-2.jpg\" alt=\"\" width=\"172\" height=\"230\" />\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"> intended (or needs) to be.</span></h2>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><span style=\"color: #000000;\"><b>Why?</b></span>: Often adaptive shortening caused by adapting to inactivity, lack of use through full range, poor posture or poor technique.</span></h2>\n<h2 style=\"text-align: left;\"><span style=\"color: #808080;\"><span style=\"color: #000000;\"><b>Management?</b></span>: Helped by stretching techniques, some massage techniques may also help.</span></h2>\n</blockquote>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<blockquote>\n<h2><span style=\"color: #808080;\"><b><img class=\"wp-image-23141 alignleft\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/shutterstock_383061178-scaled.jpg\" alt=\"\" width=\"361\" height=\"271\" /></b></span></h2>\n<h2></h2>\n<h2><em><span style=\"color: #808080;\">Tardeau and Tarbury in the late 90’s found that up to 40% of a muscle can change its composition if its been in spasm for more than 6 weeks to become more tendon-like (none contractile) to avoid the muscle having to exert energy to contract the muscle to protect (a joint for example). </span></em></h2>\n<h2><em><span style=\"color: #808080;\">If the muscle is fibrotic, it requires less effort and therefore is less susceptible to fatigue, it is a body’s way of compensating and being ‘efficient’; not always productive or effective though as its painful of course.</span></em></h2>\n<h2></h2>\n</blockquote>\n&nbsp;\n\n<hr />\n\n<h2></h2>\n<h2>Finally..</h2>\nRibot-Ciscar et al refers to a muscle relaxing optimally after a prolonged sub maximal contractions. Jiri Dvorak (Neuroscientist &amp; FIFA Chief Medical Officer) refers to <i>Post Contraction Sensory Discharge</i>. Ribot-Ciscar looked at human muscle spindle primary endings to test whether voluntary isometric contraction causes any after-effects, first in the resting discharge of muscle spindle primary endings and secondly in their responses to a slow ramp stretch. This physiology has not been shown to be present in a ‘tight’ muscle.\n<h2>Would you like to learn more about techniques like this?</h2>\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a></h1>','Post-contraction Sensory Discharge','','inherit','closed','closed','','1333-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1333,'https://biomechanicseducation.com/?p=38857',0,'revision','',0),(38858,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','..if you didn\'t attend The Movement Convention,\n\nWHERE WERE YOU?!\n\nTMC16 was BUZZING!\n\nSocial media STILL IS!!\n\nThe entire even has been such a massive success, social media has been going nuts, I am literally floating and still feel quite emotional.\n\nThis awesome event began in 2014 and really has evolved since our debut! With twice as many attendees and such a fantastic line up of presenters we completely nailed it this year!\n\nI am not sure where to begin to describe this amazing experience but I will have a go with the help of the attendee feedback…\n\nFirstly Friday saw the gathering of the Biomechanics Education Master Trainers for our annual standardisation meeting. Some of these guys drove for 3hrs to attend a 3hr conference only to then drive back 3hrs to service their clients. THIS is the commitment and calibre of trainers we take on!\n\nWith such talent in front of me all feeling passionately about spreading the word and ethos of our academy I felt moved AND responsible. This special team are going to be delivering even more of our education programmes moving into 2017 -\n\nRead on to hear about those already representing us by presenting at TMC16!\n\nThen Friday afternoon saw the largest national gathering of Biomechanics Coaches™, who ravelled from Cumbria, Amsterdam, Dorset, Bristol, Norfolk and all the corners of the UK for a private mentoring session;\n\n<b>Chris Wright</b> - A business mentoring guru who\'s energy infected us all as he shared his skills with humour and vitality\n\nAND\n\n<b>Martin Haines</b> delivered an inclusive and very advanced Movement Analysis session that took our programming to the next level while confirming the INTEGRATED SYSTEM approach that Biomechanics Coaching™ is.\n\nFriday evening was a bit of a social at the Universities, Burleigh Court for a few drinks! Some of whom took great advantage of!\n\nBUT\n\nTMC16 was what it was really all about and so Saturday began at 7am at Loughborough University as the SSSPA crew arrived to help get us set up!\n\n<b>Amber Keats</b>, events manager, was cool as a cucumber organising things as I ran round like a headless chicken, not much use to anyone!\n\nAmber - is an outstanding example of both a stunningly skilled professional AND flipping awesome friend.\n\nEverything apparently fell into place pretty easily although I shouldn\'t have been surprised because the team was well prepared with Amber at the helm!\n\nEveryone arrived to an apple and ginger shot from Mairi of FABfitness, Gandorma coffee from Brendan and Kengan water from Tracey to set them up for the first session.\n\nA very professional, slick and fascinating presentation from <b>Ben Coomber</b> about ‘<i>Recovery &amp; Performance Strategies’.</i>\n\nPost event Ben said<i> “Strong morning presenting at The Movement Convention 2016 run by Biomechanics Education </i>\n\n<i>Rachel France a strong host as ever, quality line up for one day of</i>\n\n<i>learning, get there next year </i><i>”</i>\n\n<b>Brendan Chaplin</b>’s session ‘<i>Forget Strength, Let’s Build Power!’</i> demonstrated his clear knowledge in the very popular subject of strength and conditioning.\n\nPost event Brendan said;\n\n<i>“Enjoyed talking at the movement convention today, great event with a really cool crowd thanks for having me” </i>\n\n<b>Chris Kitson</b> - This up and coming industry influencer is a breath of fresh air and keen to communicate some simple but useful ideas from his session ‘<i>Dealing with Symptomatic Clients’</i>\n\nPost event Chris said;\n\n<i>‘What a whirlwind weekend at The Movement Convention in Loughborough! Met some awesome people and caught up with a few too! Can\'t wait for next year now”</i>\n\n‘<i>Going with the Flow</i>’ was the FABulous <b>Mairi Taylor’s </b>session - She’s seriously passionate and very candid in her sessions expanding on training women through the cycle and post event Mairi said;\n\n<i>“So I am going to share some of take homes from this weekends awesome event as one of them may just resonate with you and ensure you keep following your \"North Star\" - because as Mark Laws</i><i> said \"one should be an eternal white belt\" and one of the great things about this weekend was Rachel France</i><i> had brought some new ( WELL new to me) speakers into the arena and it was so refreshing to hear new and different perspectives on such important aspects of coaching and WELLness ! </i>\n\n<i>\"Stop waiting for permission to live\"</i>\n\n<i>\"Circle gets smaller pain gets bigger\"</i>\n\n<i>\"Focus on innercise\"</i>\n\n<i>\"Let\'s build power\"</i>\n\n<i>\"Sweet taste makes you work harder\" </i>\n\n<i>\"If you put your body in a place where it can recover then it will perform\"</i>\n\n<i>\"Biopyschosocial model\"</i>\n\n<i>\"It\'s about movement and capacity\"</i>\n\n<i>\"Try not to be a wally\"</i>\n\n<i>And of course for me look after your hormones and surround yourself with people who get it - are happy to disagree and have an open minded conversation where we can respect each other\'s maps of the world - unless of course they are a wally!”</i>\n\nLUNCH BREAK included a fabulous healthy choice of salmon with noddles, chicken with rice of tofu noddles all with salad.\n\n<b>Stephen Aish</b> - WOWZERS! My personal favourite 10 minutes of the whole event was watching 70 people completely under his spell of meditation - Emotional for the WHOLE room if you read social media, he literally changed lives in his ‘<i>Mindset Coaching</i>’ session. Perfect after lunch and to relax everyone.\n\nStephen said post event;\n\n“<i>Huge thank you to the superstar that is Rachel France</i><i> for inviting me to speak at The Movement Convention today.</i>\n\n<i>I got to meet friends old and new, hear some fantastic speakers and see the impact some very basic material can have on those ready to take it on board with an open mind and learn.</i>\n\n<i>There is no higher purpose than helping others and I am always grateful for the opportunity to impact lives”</i>\n\n<b>Mike Grice</b> - My all round favourite speaker on my professional subject with the kind of vocabulary I only dream of. <i>‘Working with Allied Health Care Professionals</i>’. Mike’s session was an eye opener for all of us not just the Biomechanics Coaches™ about being mindful of the langue we use with both clients AND other health care professionals to keep us all up to date and have some clarity.\n\n<b>Tom Waldron</b> along with his beautiful sister Rachel gave us an ‘I<i>ntroduction to the Franklin Method</i>’ with a fresh, interesting and very modern approach, Tom had us all on our feet moving which fitted perfectly in the schedule of the day. This presenter is one to watch!\n\nPost Tom’s debut presentation he was rather pleased with how things went stating…<i> “Nailed it!!!!” ..</i>you certainly did Tom!!\n\n<b>Mark Laws</b> - Hilariously honest - LOVE this guy! His session called ‘<i>Surviving the Industry</i>’ had the whole room belly laughing at just the right time in the day when everyone had taken on a lot of new information and really needed some light hearted humour.\n\nMark had made a huge effort to deliver his 45 minute session;\n\n<i>“Made it back to Fitness Fiesta in time for a couple of well earned beers with some fellow presenters!!!!</i>\n\n<i>7 hour, 392 mile, round trip journey to Loughborough was well worth it to be able to start to pay back Rachel France</i><i> for all the awesome things she has done for me in the past!!</i>\n\n<i>Shame I didn\'t get to see anyone else present at the Biomechanics Education Movement Conference but it was a huge honour to be invited to share my ramblings with such a good crowd and close up the day!!!</i>\n\n<i>Today has been a good day!!!</i><i>“</i>\n\n—————————————————————————————\n\nWe had a Twitter competition for the most and the easy winner was Hazel Oliver who took home £30 worth of cinema tickets!\n\nThe TMC16 Raffle was for The Big Cheese Society in honour of Sam who was killed in a cycling accident in may this year. Sam was passionate about helping kids to play sports who may have limited access due to funds. He was also our events organiser, Amber’s boyfriends and so\n\nwe are really thankful to all those of you who helped us to raise over £450!\n\nNow we couldn’t have done this with out our amazing sponsor donations;\n\nIndigo Fitness\n\nGroup X Training\n\niamtools\n\nFABfitness\n\nBTN\n\nS&amp;C Education\n\nThe Strength Academy\n\nMark Laws\n\nMovement Therapy Clinics\n\nTom Waldron\n\nCarbon Claw\n\nJordan Fitness\n\nAwesome Supps\n\nBrasilfit\n\nGrypit\n\nWe also had a small exhibition with;\n\nGrypit\n\nKengan Water\n\nOrgano Coffee\n\nBrasilfit\n\n———————————————————————————————\n\nThe Audience…\n\nNow I did attempt to close the event with a speech of thanks you’s but I got so emotional looking out at all of you and feeling the atmosphere in the room that I couldn’t speak, SO to officially close TMC16….\n\nTHANK <b>YOU!</b>\n\nTo all of YOU who attended the event. Those of you who travelled huge distances, flew overseas and took time out of work, clients and family to INVEST in this stupendous event.\n\nEverything WE do is because of YOU!\n\nSo spread the word, <a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\">join the IBA</a>, lets support each other and share our experiences!\n\n———————————————————————————————\n\n<i>TESTIMONIALS…..</i>\n\n<i>Dear Rach,</i>\n\n<i>Totally brilliant my dear!! </i>\n\n<i>I enjoyed last year\'s convention but this year blew it out of the water. Exceeded all my expectations (&amp; they were decently high!).</i>\n\n<i>The presenters today were great &amp; you scheduled them brilliantly - presentations to match energy levels throughout the day. I got seriously good things to take home from every single one.</i>\n\n<i>I\'ve come home on a high, buzzing, motivated, and really excited to be part of such a cool crowd.</i>\n\n<i>Huge thanks to you and the whole dancing team for all your hard work.</i>\n\n<i>———————————————</i>\n\n<i>Those who really know me will vouch that I usually talk rubbish, so this next bit may come as a surprise. I get up every morning with the intention of helping someone, a random act of kindness or helping someone achieve something, today was different,I was invited by Rachel France </i><i>to the Movement Convention 2016 at Loughborough University to meet some fitness professionals and like minded people, I listened intently to some very interesting speakers, however to get to the point, someone who I don\'t know, have never met and didn\'t speak directly to me had a remarkable effect on me, his words meant something to me and has helped me to see that I need to live life in the present, I hold toxic nocebo thoughts from previous jobs, relationships and decisions that spoil the moment that is now, I spend(waste) many hours worrying over things that have already happened or may never happen. I overthink things but now realise that I never actually had an influence on others behaviour, that was all down to them. Tonight I will sleep well, content with my life and my decisions. Tomorrow I resume posting shi7e and rants about BMW drivers just so the world won\'t stop spinning. Good night all x</i>\n\n—————————-\n\n<i>What a superb day at the Movement Convention. Rachel France</i><i> your hard work has paid off. The lectures and lecturers were brilliant, I even got a bit star struck meeting Ben Coomber! </i><i> I have no more words but if I had one, you\'d go in my gratitude book!</i>\n\n—————————————-\n\n<i>Great day at the Movement Convention with Rachel France </i><i>the day flew by with lots of take home snippets for clients this week.</i>\n\n<i>—————————</i>\n\n<i>Just wanted to say briefly how much I enjoyed today, some great speakers but your S&amp;C coach ..... I was guilt initially of being judgemental about meditation but he just made sense of the last 5 years of my life and given me a new perspective in which I can move on, so please pass on my thanks, he will make a difference to so many people in my life, clients, family, friends, I spoke at length to a friend on the way home who is suffering from previous relationships and I can say definitively that I have already made a change to her by relaying some of the info. Thanks again to your wonderful team and if I can do anything to promote them to my members then please just ask ,</i>\n\n<i>———————————</i>\n\n<i>Have had a fab time at the movement conference learning from the best in the movement biomechanics and therapy world. It\'s always a pleasure to spend time with these amazing people thanks Rachel France </i><i>and all the other Biomechanics C</i><i>oaches</i>\n\n<i>——————————-</i>\n\n<i>Hi Rachel! Just thought I\'d text to as didn\'t get a chance to say thank you for the movement convention! I have already learnt so much and loved everybody I met! &#x1f600; see you Thursday morning in London for the shoulder! X</i>\n\n——————————————-\n\n<i>Back safe and sound from The Movement Convention at Loughborough University.</i>\n\n<i>Great event from Rachel France</i><i> and the rest of the Biomechanics Education team.</i>\n\n<i>Enjoyed the lectures today and a few cheeky cold ones last night!</i>\n\n<i>—————————————</i>\n\n<i>An amazing day of learning &amp; listening at the TMC16 </i><i>at Loughborough University with </i><i>Mairi Taylor</i><i>, and a room full of other professionals and of course all the brilliant speakers .. thank you Rachel France</i><i> for such a Fab event .</i><i> </i><i>&#x1f61c;</i><i> </i><i>&#x1f4aa;</i><i> </i><i>&#x1f44d;x</i>\n\n<i>———————————————</i>\n\n<i>Thank you Rachel France</i><i> for a fab day. You have an amazing job and an amazing group of inspirational friends. </i>\n\n<i>Now on my way home back to Suffolk to get booked in onto your iMoveFreely course. </i>\n\n<i>Hope to see you then x</i>\n\n—————————————————————————————-\n\n<i>Hi Rachel- just a quick note to say what a great day it was on Saturday-the range of speakers was good and everyone was so friendly and positive.</i>\n\n<i>I stopped going to lots of fitness industry stuff as it can be very “superficial” but really love the vibe of other biomechanics trainers/coaches.</i>\n\n<i>Have a great week,</i>\n\n——————————————————\n\nFINALLY….!\n\nSomeone asked me what the purpose of TMC16 was and it set me off thinking and this is where we have realised its true purpose…\n\n<b><i>The Movement Convention is a celebration of beautiful human movement and ways to improve human movement through education. Changing lives by empowering others. </i></b>\n\n<b><i>One very special person changed my life by empowering me thus allowing me to do the same for others. </i></b>\n\n<b><i>So through this annual celebration WE share his gift. THIS is the purpose of TMC!</i></b>\n\nWANT TO BOOK NOW?\n\nIf you do it’s ONLY £100 no matter how many days TMC17 is or what the price increase is next year. So book NOW guarantee your place and guarantee your price!\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">BOOK HERE !!</a>','YOU seriously missed out...','','inherit','closed','closed','','1325-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1325,'https://biomechanicseducation.com/?p=38858',0,'revision','',0),(38859,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Having travelled for a number of years around the UK delivering workshops, presentations and lecturing at events and universities I have developed an appreciation of what is needed for me to be fresh and ready from a good nights sleep, feeling safe while travelling and staying away from home alone.\n\nCombine this with having set up 8 companies I have learned, and now understand better, the value of familiarity, knowing what you will and the confidence in my expectation.\n\nNow as I use Premier Inns it was Lenny Henry who not only promised me a good nights sleep guarantee, but he delivered and continues to deliver on this promise...\n\nEvery\n\nSingle\n\nTime\n\nHOW?\n\nBefore I even leave the house, and no matter where in the country I am going, I know exactly what to expect right from when I arrive at the car park, enter reception, enter my room, climb into my bed and anything in between.\n\nI know there will be a restaurant downstairs for food both in the evening and for breakfast.\n\nAND\n\nI know there will be a certain smell and temperature as I climb the stairs. In my room there will be a large bed made up in crisp white sheets with a purple runner, a choice of pillows, a hair dryer, shampoo and a TV that I can watch from my bed.\n\nThis hotel’s business model, in my opinion, is superb since they deliver on their promise every - single - time.\n\nThis hotel chain for me has been one of the best examples of customer confidence in knowing what to expect because it is my \'home from home\' even if I sometimes might pay a bit more. I am happy to pay knowing I will get exactly what they promise or I get my money back. There are other businesses that do this really well too…also known as the franchise model\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36692 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/10/Screenshot-2023-08-23-at-08.44.24-300x188.png\" alt=\"\" width=\"300\" height=\"188\" />\n\n&nbsp;\n\n&nbsp;\n\nMcDonalds do it - whatever you think of them they deliver on their promise (and yes I have been known to slurp on the occasional Crunchie McFlurry). Listen to Michael E Gerber\'s audio book, The E Myth Revisited and he will tell you the whole story of how Ray Kroc saw the McDonalds brothers flipping burgers back in the 60\' and knew immediately there was something special about their business.\n\nLes Mills is probably the most famous company for setting this trend in our sector. You can go to any country in the world and know what to expect from a BodyPump or BodyAttack class. Now there are numerous examples from Zumba to Pilates and yet why am I writing to you about this?\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-36693 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/10/Screenshot-2023-08-23-at-08.44.39-300x77.png\" alt=\"\" width=\"300\" height=\"77\" />\n\n&nbsp;\n\n&nbsp;\n\nIt is a bold statement to make a guarantee or promise about your product or service isn\'t it?\n\nDo you believe you could be that confident stating benefits about your services to potential clients?\n\nWhat could be your promise?\n\nConsider how you might develop your \'promise\' and also your client and potential client\'s expectation. Here is one idea.....\n\nIts something I have had to practice gaining confidence about but I am now in a position to make bold statements about my education company because I have proved it over and over again consistently for almost 18 years now. In fact I no longer need to make the statement because my customers do.\n\nEveryone who attends one of our workshops or joins our academy tells us they have a fantastic learning experience, I may even be so bold as to say, it changes lives. We also take pride in the amount of support we offer even beyond the classroom...\n\n<em>Hi Rachel,</em>\n\n<em>Thank you for a fantastic course last weekend. It was everything I was hoping for and really helped me understand why current training systems aren\'t working as they should be.</em>\n\n<em>I have already adapted some of my clients programs to include the anti-spasm exercises with good results in just a few days. The course has left me questioning everything I do as a PT, which is definitely a positive thing.</em>\n\n<em>I definitely want/need to complete the rest of the workshops as soon as possible.</em>\n\n<em>Thanks again for providing a fantastic course. I am really looking forward to the next courses.</em>\n\n<em>——————————————————————————————————————————————————————————————</em>\n\n&nbsp;\n\n<em><img class=\"size-medium wp-image-35285 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6931-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></em>\n\n&nbsp;\n\n<em>——————————————————————————————————————————————————————————————</em>\n\n<em>Hi Rachel</em>\n\n<em>Thank you very much for the Pelvic &amp; Spine Biomechanics workshop, I enjoyed every moment of it. I must say it is the first course when my brain was alert from 9  to 5 and there was no desire to have any conversation within my head , I do that when I am getting bored. You are an amazing tutor and a coach, you know how to make people feel important and have time to understand each and everyone. I did feel a lot of support whilst on the workshop and I think everyone felt that. The world is a much better place to live in, when people like you are around. Once again an enormous thank you.</em>\n\n<em>——————————————————————————————————————————————————————————————</em>\n\n<img class=\"size-medium wp-image-35276 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/05/DSC_6385-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n\n<em>——————————————————————————————————————————————————————————————</em>\n\n<em>I’m not normally big on writing reviews or testimonials, but I\'m making an exception for this 2 day Pelvis &amp; Spine Biomechanics workshop for a number of reasons</em>\n\n<em>To start,  I\'ve never felt so excited about what I\'ve learnt from a workshop or course before.</em>\n\n<em>Whilst some of it really challenged my thinking, and made me feel slightly uncomfortable at times (it made me question some of the ways I\'ve always done things).  Rachel explains it in such a way that it all makes perfect sense.</em>\n\n<em>I now have information that is scientifically proven, that makes me believe I need to change the way I work, and to incorporate biomechanics screens into much more of what I do.</em>\n\n<em>The tools and system that Rachel give you are so powerfulI both for you, and to get your clients onboard, they cannot be ignored.</em>\n\n<em>It’s going to take me a while to put everything I’ve learnt into practice.  But there’s a few things I know for sure.  I need to know more.  Everything I do in future must be backed up with science.  I need to question everything.   And I most definitely want biomechanics screens to be a much bigger part of what I do.</em>\n\n<em>Adding biomechanics screens to the way I work will most definitely, give me the confidence to charge more, have a real niche and elevate me far above my competitors.   I know I will get a return on this investment, and most importantly be able to help more people, and improve the service to the clients I already have.</em>\n\n<em>If you are unsure about committing to the Biomechanics Coach&#x2122; Diploma, attend the iMoveFreely® workshop as a starting point.  It’s a good way to sample it,  and come away with useful material without committing too much financially.</em>\n\n<em>I cannot recommend any of Rachel’s courses highly enough.  From the the content of the course, Rachel’s energy, knowledge, enthusiasm and obviously love of what she does.  I for one will definitely be back for more.</em>\n\n<em>Thanks Rachel</em>\n\n———————————————————————————————\n<h2><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">So why not join our academy in 2023/24 ?</a></h2>\nUse the skills the way we teach you to and…\n\nWe promise you will LOVE them!\n\nWe promise they will change the way you think!\n\nWe promise you will want more!\n\nWe promise full support even beyond your training!\n\n&nbsp;\n<h1><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/\" target=\"_blank\" rel=\"noopener\">Now there’s some promises! &gt;&gt;CLICK HERE TO FIND OUT</a></h1>\n&nbsp;\n\n<img class=\" wp-image-36450 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/07/DSC_6439-1-300x200.jpg\" alt=\"\" width=\"461\" height=\"307\" />','What do Les Mills, Premier Inn and Crunchy McFlurry have in common?','','inherit','closed','closed','','1319-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1319,'https://biomechanicseducation.com/?p=38859',0,'revision','',0),(38860,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','<b>If you work in the field of martial arts OR feel desperate to connect with other health care professionals keep reading..\n\nThese are 2 of the UK\'s leading presenters and we are really excited that they are coming along to speak to you at;\n</b><a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention Saturday 8th October at Loughborough University. </a>\n\nMike &amp; Fletch are special guys and really awesome Master Trainers amongst other things!\n\nJust check out their session content..\n\nFletch - <b>Biomechanics of Combat</b>: <i>\"We have been involved in combat sports as far back as language could be used to talk about it. But is it functional for today\'s human. We look at the requirements of sports such as boxing, kickboxing and jujitsu and how they affect our body.\"</i>\n\nMike - <b>Introduction to working with allied healthcare professionals</b>. Where does Biomechanics Coaching™ fit in? What can the other professions do for us and how we can communicate effectively with each other.\n\nThis uniquely intimate event will allow you to meet them in person and interact with both presenters.\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">GRAB A PLACE HERE!</a>\n\nP.S. We will provide a healthy lunch and refreshments are available all day\n\nIncluding a FRESH Juicebar and raw chocolate by Mairi of FABfitness!','YUP Check Out Ma Boys!','','inherit','closed','closed','','1315-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1315,'https://biomechanicseducation.com/?p=38860',0,'revision','',0),(38861,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Neil Eriksen was one of the first ever professionals to join our academy back in 2008 and he was also previously nominated as a Biomechanics Coach™ of the Month. Here he wants to share with you one of his life changing moments..\n\n<em>That was a really funny moment I\'ll not forget in my life. This is what happened...</em>\n\n<em>I was on the full Biomechanics Coach™ Diploma, kind of the second time doing it, already done the previous model course way back in 2008 when it was first being delivered by Martin Haines and the team, just starting to put it out there for use in the fitness industry.</em>\n\n<em>The more modern expanded model of Biomechanics Coaching™ I wanted to re-sit had evolved. It had been through years of development so I was keen to get on it to learn any new techniques and refresh on the old ones.</em>\n\n<em>Although I had been practicing the screens and exercise prescription with clients to some degree over the 6 year gap, I definitely felt that I\'d been playing Chinese whispers with myself and lost the way somewhat.</em>\n\n<em>Mostly I simply ‘personal trained’ my clients and put a few bits of the Biomechanics Coach™ programme in there if it seemed applicable.</em>\n\n<em>In fact I remember Martin sending me a nice email commenting on how \'low key\' my website presentation of the system was and that\'s exactly how he liked to see it. I\'d learned about sports injuries, sports massage and remedial therapy in my health and fitness degree so it was just another set of cool assessments…or so I thought.</em>\n\n<em>Back to the diploma;</em>\n\n<em>Rachel had just done my whole body assessment in class at the end of the complete Biomechanics Coach™ Diploma using me as the demo (I basically told her to DO ME! DO ME!). There were a number of things still showing dysfunctional after doing my 4 Sign and Leg Press anti spasms for a number of weeks and my back was still not a nice back to live with.</em>\n\n<em>Things improved but I was not there yet; Downings Sign, Leg Length Discrepancy, Sciatic Nerve, Spinal Flexion, Pec Minor, Median Nerve, Upper Traps, Infraspinatus were all still positive for dysfunction.</em>\n\n<em>So Rachel just tried the anti spasm on my Pec Minor left side, it was showing more tension than the right side, which we duly did. Then the retest of the whole body, all in front of the watching class and we wrote the results up on the flip chart for everyone to follow.</em>\n\n<em>It was surreal over the next few minutes as the retest was being done. I remember the sound of jaws hitting the ground and watching the shaking of heads of disbelief. That was the sound of a paradigm shift in action, it was funny to watch. I didn\'t really feel anything so I was a bit left out of the action as everyone else was seeing the, no less than astonishing, results.</em>\n\n<em>And then Matt made his classic comment \"he\'s a stooge!\".</em>\n\n<em>Was it so amazing that he didn\'t believe his own eyes?</em>\n\n<em>Well yes it certainly was, that\'s the integrated system in all it\'s glory and it appears that seeing is disbelieving!</em>\n\n<em>That one moment has changed my life, not only because since releasing Pec Minor on the left side my whole body has become way more \'bullet proof\', everything changed and I got myself a new upgraded body, but also because my quest is always to find that magic for other people.</em>\n\n<em>Now as Rachel said at that time \"Yeah, that was a good one, it doesn\'t always happen like that!\" Things can become quite confusing/difficult/complicated etc when you concentrate on changing specific things that may well have been adapted to for many years for a myriad of reasons.</em>\n\n<em>So I would to impart some advice to other professionals out there, it has been said before but here it is again: use it as a cool-tool guide but do not concentrate on fixing people with Biomechanics Coaching™, do what YOU do, whether that\'s PT, massage, yoga or whatever. That way when complications arise, and they will, or there is no magic, and sometimes there isn\'t, you\'re still doing you job, but with amazing insights and information from a very special systematic approach.</em>\n\n<em>It is easy to get caught up in a personal quest for magic and forget the client\'s goals or that there\'s more than one way skin the old cat. It\'s got to kind of run as a background programme, it\'s certainly one that I would never uninstall, I\'d rather chop off an arm!</em>\n\n<em>I would love nothing more than to ramble on about the infinitesimal layers of the onion that you peel away over time using Biomechanics Coaching™, maybe I will, but that\'s for another day.</em>\n\n<em>So to Matt, I\'m not a stooge mate, just living the dream ;)</em>\n\n<em>Thanks Martin and Rachel for helping me fix myself and helping me to help others (even when oftentimes they have no idea on what level we\'re working on).</em>\n\n<em>Kind regards</em>\n\n<em>Neil</em>\n\n----------------------------------------------------------\n\nHave YOU been thinking about becoming a Biomechanics Coach™?\n\nMaybe Neil\'s story has helped you to make up your mind?\n\nWhy not join our waiting list for the 2017 Biomechanics Coach™ Diploma workshops series dates?\n\nEmail in reply to this Juicemail\n\nOR\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">CLICK HERE to register your interest</a>','He\'s A Stooge!','','inherit','closed','closed','','1311-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1311,'https://biomechanicseducation.com/?p=38861',0,'revision','',0),(38862,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','We have such a lot going on at The Movement Convention, with so many fascinating lectures and people around, it is vital we are all well hydrated throughout the day with our favourite refreshments, coffee and water!\n\nBUT we don\'t have just any coffee and water, nope we have the highest quality coffee and water coming to you from Tracey &amp; Bradley!\n\n----------------------------------------------------------\n\nTracey Peake loves life and spreads positivity and super hydration with her negative ions in Kangen water, and so for your brain buzz see Tracey to get your electric impulses flowing!\n\nTracey is CEO of Kangen Life Club, pharmacist for 32 years, director of Peake Health Ltd, advocate of natural therapies and supplements for health promotion and disease prevention.\n\nKangen restructured electolysed water is alkaline, packed full of antioxidants (free hydrogen) and provides super hydration.\n\nIt is made by a medical device called a Kangen water ioniser, which attaches to your tap in your home to make this anti-aging, detoxifying, health promoting, disease reversing pure, fresh tasting miracle water .\n\n----------------------------------------------------------\n\nBradley Marchant\n\n\"Hi everyone,\n\n..who wants a free tea or coffee?\n\nI’ve been in the coffee industry for quite a number of years now and I know just how many people can’t function without their morning cup of coffee or their fancy made beverages.\n\nBut what if your daily habit was cheaper and actually healthier for you?\n\nWhat if the habit you’ve already established could actually improve your health?\n\nI will be bringing the world’s best Ganoderma infused teas and coffee’s to your cup on this date, so leave your cash at home, this one’s on me!\n\nI look forward to seeing you at The Movement Convention\"\n\nBradley\n\n----------------------------------------------------------\n\nLAST 20 PLACES !\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">BOOK HERE QUICK!</a>','FREE Coffee & Water!','','inherit','closed','closed','','1278-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1278,'https://biomechanicseducation.com/?p=38862',0,'revision','',0),(38863,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','<img class=\" wp-image-35817 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2023/04/IMG_4905-1-285x300.jpg\" alt=\"\" width=\"225\" height=\"237\" />I LOVE hearing from you guys!\n\nTHANK YOU to those who take the time to write to me! Please do always send your feedback and any topic requests. The content I produce is aimed at you so your ideas are really helpful.\n<ul>\n 	<li>Can YOU caveman squat? Send us a photo!!</li>\n 	<li>What would you like to read more of?</li>\n 	<li>Do you have a specific movement or anatomy question?</li>\n 	<li>What do you think of our Juicemail?</li>\n 	<li>Do you have a question or some feedback about anything we do here at Biomechanics Education Ltd?</li>\n</ul>\nEmail me with your movement related questions rachel@biomechanicseducation.com\n\n&nbsp;\n\n<em>Hi Rachel,</em>\n\n<em>Thank you for such a brilliant day. Excellent content and loved the way you delivered it! It was really informative and am now keen to learn more (and brush up on anatomy too!!) I also realised how dysfunctional my pelvis is atm! Will be working on this.</em>\n\n<em>Once again, many thanks, I really enjoyed Saturday and your patience and humour with us all! Looking forward to hearing from you, Hope to see you again, Aiming to move freely!!</em>\n\n<em>—————————————————————————————</em>\n\n<em>Brilliant course on Saturday, really enjoyed it. Am hoping to use some in my physio classes!</em>\n\n<em>—————————————————————————————</em>\n\n<em>Great meeting you too, again loved your session, very educational and I was left wanting more!</em>\n\n<em>—————————————————————————————</em>\n\n<em>I loved the course, want to do the whole diploma! Your delivery of it was great and funny, looking forward to the day I do the caveman squat with good form and ease and will send you a photo &#x1f606;</em>\n\n——————————————————————————————','Wanting to \'Caveman Squat\'.......!','','inherit','closed','closed','','1274-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1274,'https://biomechanicseducation.com/?p=38863',0,'revision','',0),(38864,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','If someone told me, 6 or 7yrs ago, they were going to teach me how to breath I would have laughed. I had been breathing successfully for 47yrs, so how could someone teach me <em>HOW TO BREATH</em>!?\n\nYet I went on to experience 1:1 yoga and meditation with the A.M.A.Z.I.N.G Becs McBride who literally did teach me how to breath. What I discovered was that it wasn’t simply about learning how to breathe but it was a truly wonderful <em>experience</em> that is hugley helping those willing to try it.\n\nBecs became more than my yoga and meditation teacher because she gave me a gift....\n\n&nbsp;\n<h2>My fizzy brain</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-34943 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/jared-rice-NTyBbu66_SI-unsplash-258x300.jpg\" alt=\"\" width=\"258\" height=\"300\" />\n\n&nbsp;\n\nMy experience of yoga and meditation at that time was very limited so we arranged some private 1:1 sessions during which I wanted to learn how to calm my \'fizzy\' brain.\n\nFor me business ideas come constantly and while I do love what I do, my brain literally FILLS up with ideas, my daily schedule, jobs to do, people to see, places to go etc etc. So I wanted some calm, peace and a way to be able to focus on what was important.\n\nBecs taught me how to ‘focus on the breath’, where to breath into my body during meditation and how to breath into positions and poses during yoga poses. The incredible thing was the result of how all of this made me <em>feel </em>and also how long the effects lasted.\n\nIt was all so peaceful and undistracted and literally gave my brain TIME OUT!\n\n&nbsp;\n<h2>Hoovering my head</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-34812 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/06/IMG_9026-300x214.jpg\" alt=\"\" width=\"300\" height=\"214\" />\n\n&nbsp;\n\nBecs taught me how to feel calm and in control by using breath work as if she was running a hoover through my head. YES that exactly how is felt, like she <em>hoovered my head!</em>\n\nWhen considering the meditation aspect, Becs taught me…\n<ul>\n 	<li>imagery</li>\n 	<li>psychology</li>\n 	<li>holistic</li>\n 	<li>mind to muscle</li>\n 	<li>mind and body connection</li>\n 	<li>neuroscience</li>\n 	<li>think yourself…(something)</li>\n 	<li>mindset</li>\n 	<li>cognitive</li>\n 	<li>therapy</li>\n 	<li>the power of the mind</li>\n</ul>\n..and it was MIND BLOWING!\n\n&nbsp;\n<h2>So what?</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-30606 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/luis-villasmil-mlVbMbxfWI4-unsplash-240x300.jpg\" alt=\"\" width=\"240\" height=\"300\" />\n\n&nbsp;\n\nEvidence suggests we buy based on how we <em>feel. </em>\n\nConsidering potential clients, they too are very likely to invest based on how they <em>feel.</em> How can we make others feel? what skills can we utilise or gain? Would breathwork or meditation be a solution? If it works for me could it work for my clients? Could they be in need of head hoovering?\n\nThere are many in our industry writing about the mind and its neural connection for improving physical health. Lorimer Moseley and Dave Butler wrote the ‘Explain Pain’ from the perspective of neuroscience, describing pain as an input not an output. The Franklin Method teaches imagery for improving biomechanical set up from within.\n\nSo to having a deep connection with the self through breathwork and meditation increased my confidence and allow me to feel more in control and calm...ever tried hoovering YOUR head!?\n\n<a href=\"http://www.becsmcbride.co.uk/classes\">www.becsmcbride.co.uk/classes</a>\n\n&nbsp;','She Hoovered My Head!','','inherit','closed','closed','','1268-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1268,'https://biomechanicseducation.com/?p=38864',0,'revision','',0),(38865,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Dear PT,\n\nAs you know I have been working with you now for a while and at first my abundant enthusiasm was matched only by the excellent results achieved in those early weeks.\n\nYou may of noticed that as of late my occasional missing of sessions (because my dog died or I left the oven on, I think I actually did have a date one night) have become more frequent, and this seems to be directly proportional to my dietary lapses and my shape returning to a more familiar form.\n\nI’m not sure if I’m imagining it or not but I perceive a sense of disappointment from you when I DO drag my reverting ass back in to see you. I`m not sure if this is due to my increasing BMI or your reduced income resulting from my absence, but which ever it is…I feel a great deal of shame.\n\nYour training methods are fantastic and <i>initially </i>really helped me overcome my fear of gyms and exercise in general. You acted as a guide and a mentor to help me on this quest to achieve an Olympian rivalling physique…I bought the magazines (great for reading on the loo) I bought the salad and the lean meat, I bought the shakes I even bought the latest gym wear to go along with the subscription to the gym where you ply your trade and impart your wisdom, and all was great in the world. Until..\n\nMy kids rebelled, they don’t really like all this type of food and do prefer a pizza and I know that I should insist that they eat what you suggest, but the reality is that when I’ve done the hour long commute to work, my long day at work and then the hour long commute back, sitting in traffic (I did try to cycle it as you suggested but this added <i>another</i> hour to my day) after that 8hr shift, I have neither the will nor the energy to be cooking separate meals, so my shakes sit un mixed and my salads have withered away and cheese and tomato pizza has once again became one of our staples.\n\nI can see you now, shaking your head and tutting and I feel shame, but in the world of a working parent outside the health and fitness industry our priorities and time management is somewhat misaligned to yours. On a daily basis YOU plan an epic run while WE plan a trip to the shop with little ones in tow, YOU plan a cheat day while WE just dream of a takeaway food so there are no dishes to do because this allows us to relax in front of the TV before having an early night. YOU live YOUR work and YOUR hobby so YOU plan YOUR own time around YOUR client base while US mortals plan babysitters so WE can journey to the gym and then zap our already tired depleted bodies while still trying to appear enthusiastic so as not to disappoint YOU.\n\nSo dear PT, PLEASE be patient, encourage us to eat a bit of rubbish on a regular basis, tell us to miss a session if we don’t feel up to it and we will return, refreshed and without the shameful feeling having let you and ourselves down and guess what, our enthusiasm and gains will return and put us on the road to Olympian status once again.\n\nRegards\n\nFatty\n\nPreviously … <a href=\"https://www.biomechanicseducation.com/a-message-from-fatty/\"><i>A Message From Fatty</i></a>','It\'s Fatty Again..','','inherit','closed','closed','','1264-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1264,'https://biomechanicseducation.com/?p=38865',0,'revision','',0),(38866,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Let me give you a tip...\n\nCOME AND LISTEN TO THIS GUY!\n\nIf you haven\'t yet heard of Mark Laws, well then you just aren\'t getting out enough!\n\nWith literally just under 4 weeks to go I am SO EXCITED to have managed to bag this dude for a speaking slot at <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention 2016 Saturday 8th October at Loughborough University!!</a>\n\nHaving known, and worked with, Mark over the last couple of years, as both my client and at events presenting together I have come to really enjoy his attitude towards life/work. He demonstrates integrity and a refreshing honesty which are characteristics you know I respect. So it is with great pleasure I am able to add him to our FLIPPING AMAZING line up!!\n\nMark has worked in the fitness industry full time since 2006 and has worked in a coaching capacity since 1999. He has worked for many mainstream gym chains in the UK and has an extensive background in professional sports - including spells with Yorkshire County Cricket Club, Castleford Tigers Rugby League Club, Sheffield United Football Club, Chinese Football Association, Beijing 2008 Chinese Olympic squad and Great Britain Ice Hockey.\n\nIn recent years Mark has taught educational courses to other fitness professionals on behalf of Jordan Fitness, with whom he still collaborates.\n\nHe currently works as Training Academy Manager for Strength &amp; Conditioning Education (with Brendan Chaplin)– providing a world class mentorship programme, a Level 4 S&amp;C qualification and CPD workshops to coaches all over the world.\n\nMark is one of only two ‘Elite’ PowerWave coaches in the world and is responsible for the training and development of all PowerWave instructors throughout Europe, Asia and Africa.\n\nHe regularly delivers lectures/presentations at international fitness exhibitions and in 2016 will deliver training in Europe, Dubai, India, Singapore and America.\n\nHe is going to be giving a reality check talk on...\n\n<b><i>Short Term Job V\'s Long Term Career: How to Survive in the Fitness Industry.</i></b>\n\n<b><i>The statistic are telling us that 80/90% of YOU that enter into the fitness industry will leave within 12/18 months! </i></b>\n\n<b><i>Find out how to avoid the common pitfalls during this fun and engaging talk that reflects upon all 10 years of Mark\'s experience.</i></b>\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">CLICK HERE NOW TO BOOK ONE OF THE REMAINING SEATS!</a>\n\nFacebook – marklaws2011\n\nInstagram – marklaws2011\n\nTwitter - @marklaws2011\n\nEmail – marklaws2011@hotmail.co.uk','Can You Survive The Industry..?','','inherit','closed','closed','','1261-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1261,'https://biomechanicseducation.com/?p=38866',0,'revision','',0),(38867,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','So you know how I LOVE to share my moments of wonder at what comes from my JOB, that isn\'t a job but a JOY, well here\'s another one I received this morning from one of my present Biomechanics Coach™ Diploma learners who is just 2 workshop\'s into things...\n\n<em>Hi Rach,</em>\n\n<em>Thanks again for the workshop this weekend, this time I came away feeling like it all made so much sense and starting to be able to see the bigger picture. It\'s such a great learning environment and a really enjoyable weekend.</em>\n\n<em>Thought I\'d share with you my experience this morning as it felt like a bit of a game changer! </em>\n\n<em>So I was asked to do a demonstration for 18 adults who were on a riding camp, it was the last day of their three day camp so there were 18 very tired (and hungover in some cases!!) faces looking back at me. I have done a drama degree so talking in front of an audience isn\'t a problem for me. However this was the first time I\'ve demonstrated my Rider Analysis stuff to a big crowd so I was a little worried about questions I might get asked or whether the software and my knowledge would be enough....it was after all the first time I had seen this rider so I had no idea how they would present. Just to be clear this was a on the horse Rider Analysis and not one of the intrinsic biomechanics screens.</em>\n\n<em>Well, the rider presented with a prominent drop of the right shoulder and lean to the right, her right foot appearing higher than her left. She explained that she has a \'dodgy\' right knee and was seeing a biomechanist about it (will go into more depth with this later). So I explained to the group the integrated system, the fact that if her right knee was \'bad\' meant she would put less weight through this leg, perhaps lifting through the right hip and dropping the right shoulder.</em>\n\n<em>So while she was presenting as having one shoulder higher than the other but I explained to the group I absolutely would not be telling her to lift her right shoulder as that was not necessarily causing the problem and changing that wouldn\'t necessarily solve the problem. (I also explained that what I\'d like to do is a full biomechanics screen to work out exactly what was going on where - but time wouldn\'t permit!)</em>\n\n<em>Instead I thought creatively and got her to do the iMoveFreely® leg press anti spasms on the horse (both legs) in the hope that this might release the pelvis if there was something going on. I got her to ride down the centre of the school again, the only instruction being to put more weight through her right leg...</em>\n\n<em>BOOM she was straight!!</em>\n\n<em>At this point people started to pay a little more attention!</em>\n\n<em>So we moved onto the canter work, from the side view the glaringly obvious for all was that she was leaning forward, on a more detailed view of the footage they started to look beyond the obvious and saw that her pelvis was tilted forward through the whole movement.</em>\n\n<em>Again I explained what she would need is a full biomechanics screen and some more specific exercises, but for the sake of the demo we moved onto some pelvic tilts on the horse (if I\'m honest whilst this was for mobility it was more intended in order for her to feel her seatbones and sit on them!). </em>\n\n<em>She found her seatbones, practiced in the sitting trot and then in the canter. Immediately she sat better in the saddle and the horse went better! The ooohhhs and ahhhhh\'s increased and the whole group seemed to \'get it\'.</em>\n\n<em>The game changer came as I was chatting to the rider. </em>\n\n<em>I was finding out about the biomechanist she is seeing regarding her knee, what he had done with her, how he assessed her and what exercises he got her to do. She has been seeing him for about a year. He got her on a treadmill and looked at her gait in slow motion, had decided there were issues in her pelvis (didn\'t sound like he\'s done screens but he could have?) as well as her knee.</em>\n\n<em>BUT here\'s the catch, he was getting her to do CORE STRENGTH exercises and claimed that by building her core strength it would help get her pelvis back in alignment?!?!</em>\n\n<em>At this point my face winced (couldn\'t help it...I just heard your voice in my head NORMALISE THEN STABILISE)</em>\n\n<em>She has been doing these exercises for a YEAR with NO IMPROVEMENT!!!</em>\n\n<em>So I explained our way of doing it, getting the pelvis functioning first and then strengthening it. I got her off the horse and showed her 4 sign as I figured it is bound to help (obviously checking that her knee wasn\'t hurting whilst she was doing it). She is desperate for a full screening session and totally loved the session!</em>\n\n<em>The game changer for me was how naturally the language of biomechanics slipped off my tongue and how the knowledge was JUST THERE when I needed it. I felt like the expert and like I really knew what I was talking about...but not only that I BELIEVED this was the best thing for the rider and was so EXCITED to see her results!</em>\n\n<em>I cannot thank you enough for opening my eyes and changing my business and helping me be the professional I want to be...for once I feel like the expert...WOW!!</em>\n\n<em>Sorry for the essay,</em>\n\n<em>Tess x</em>\n\n----------------------------------------------------------THIS THIS THIS....\n\nWOWZERS!\n\nI LOVE these stories because I HATE selling this stuff, in my opinion it really should be part of our industry\'s standard L3 qualifications!\n\nSo emails like this one from Tess allow me to show you from the HORSES MOUTH (Sorry I couldn\'t resist it) so if YOU think you would like to try the workshops Tess has done and open up the opportunity to experience the excitement of your work like she has then why not send us your details to be added to our 2017 workshop waiting list by ..\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">REGISTERING YOUR INTEREST HERE </a>','Game Changer!','','inherit','closed','closed','','1255-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1255,'https://biomechanicseducation.com/?p=38867',0,'revision','',0),(38868,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Several months ago I received an email from a young lady who had done some of our training many years ago. Amy was now National Education Manager for England Athletics and was an avid reader of my Juicemail.\n\nIt was after reading one in particular she wanted to meet up and discuss an event she was organising with her colleague Paul Moseley, Coach Development and Education Manager.\n\nPaul is one of those characters you will always remember. He is sharp and funny and makes you feel at ease wit his sense of humour and yet its clear he takes his role very seriously with in the organisation. His role was to create a workforce that offered the best education programmes in sport.\n\nSo the reason for us meeting was because they wanted me to deliver a session for their teachers on how to deliver a session with creative facilitation skills, to offer a more memorable experience for their learners and therefore generate a greater positive impact on the wider audience.\n\nAfter a few emails had gone backwards, I kept asking Amy questions about exactly what they wanted…..I mean being asked to teach teachers how to teach…really?!! But as you know, embracing a challenge is something I advocate to my learners.\n\nAs I did more research into their present tutor training syllabus I started to realise how tough this gig was going to be because they were already doing such an awesome job of it!! The content was already packed with all of the regular content you would expect for educating teacher training. So what on earth was I going to bring to the table?\n\nSo I went back over my old Juicemail’s, pulled out all of my DTLLS paper work and assignments and started to consider what kind of session I could run. It needed to be different, memorable and bring something new to the table for these already skilled professionals.\n\nAfter months of planning Amy started to email me about having the resources printed out and ready for the session. This is an important part of teaching and the learners experience, to have great resources for learners to utilise during teaching sessions.\n\nMy handout was virtually a manual!\n\nPaul had agreed that it would be great to actually deliver some practical content into my session which would give the coaches something they could actually use with their athletes AND then my plan was to re-visit HOW it had been taught for that learner lead environment with lots of connection that Paul and Amy were looking for.\n\nHowever I developed an idea to create a deliberate environment to highlight an important point and so if they had a resource well..\n\n1). They would be able to read about it prior to my session which would reduce impact.\n\n2). I didn’t want them to be distracted by such an extensive handout.\n\nSo I created 2 handouts, one very short one for the session and the bigger one for afterward the event with masses of content.\n\nAs the day drew near and everything was arranged for the timings of the day I saw I was up first and the line up was incredible!\n\nWhat on earth was I doing amongst these other super qualified professionals? My old insecurities about being the ‘non-academic’ crept back as I was realised I was going to be amongst qualified teachers, professionals with psychology degree’s and a whole bunch of very experienced coaches. As I discussed these feelings with my colleagues they reminded me of the things I tell my learners about stepping into the unknown and being uncomfortable, the place where we expand and grow, the place where we discover knew abilities and explore areas we might want to work on and realise skills we maybe didn’t realise we had.\n\nThe pressure was being felt and so I had practiced, rehearsed and changed my mind on serval occasions but basically knew what I wanted to do in my session. My idea was to be different and so I had an idea but having never done it before it was certainly going to be a gamble.\n\nThe day before Amy called to check I was all set and I was actually quite excited, while still anxious, but had my colleague, Kate, coming along to assist in the practical section since there was to be 60 x people! I had my bag packed, my presentation and just wanted to be able to finally see the room to allow me to imagine the session and how I would manage the practical stuff in a conference room.\n\nAs usual I arrived mega really to gather my bearings, see the room, see Paul and Amy and get set up. As it turned out there were 43 coming which meant things would be a little easier for managing the session.\n\nIt was great to see Linda Low who was presenting a session later on about team teaching and whom I had met some 18 months ago in Jersey at The Performance Movement Summit and I felt relief when Kate arrived.\n\nAs the 43 sports coach, tutors and others started to filter into the large conference room, I felt really excited and anxious at the same time about my shock opener. I had warned Paul and Amy not be worried when I began, but that there was a point being made.\n\nPaul began the day with a welcome and then introduced me. So I walked to the front, turned my back to the group, slowly took a drink of water, turned and stood pan faced barking orders to cross one ankle over the other, change sides, speaking monotonously while looking upwards with no facial expression, that if they were asymmetrical then there was a good chance they had pelvic dysfunction.\n\nSome smiled, realising that I was making a point, others muttered to their neighbours but they did as they were told and I turned my back again and took another drink of water hearing them still quietly questioning what was going on.\n\nThe discomfort I had wanted to create is what many, maybe most, if not all learners feel stepping inside the classroom. Going into the unknown, like me in this session we were all feeling awkward, unsure, questioning what would happen next and wondering what everyone else was thinking!!?!?!\n\nMy point here was that teaching is not simply passing on knowledge, telling people what you know or how to do a practical skill like this 4 sign pelvic function screen I had just taken around 40 seconds to TELL them.\n\nSo I turned, smiled and introduced myself properly, also asking them to consider how they had felt during my opener.\n\nDid they wonder what on earth was going on?\n\nWhy was I asking them to do that movement?\n\nWhat was the point of this?\n\nWho is this strange woman and why have they asked her to teach us?\n\nI went on to deliver a section of our education programme that TEACHES the background, they how’s, they why’s and the details of this simple practical skill to connect better with the learners, enhance their experience, create relevance to them individually (as much as possible) and hopefully empower them to go on an autonomous learning experience beyond the classroom. Using direct questions, asking names, sports, professional background amongst other things.\n\nPart of my ‘lesson’ is about being in your element, which is something I experience when teaching and is clearly defined by Ken Robinson’s 2014 book THE ELEMENT which I have mentioned in a previous Juicemail. The Element is when you are unaware of time, feel most passionate, are enjoying what you are doing and revelling in the moment.\n\nSO here I am in my element and suddenly I look at the clock thinking “Oh no, time has gone quick, I only have 10 minutes left!”.\n\nMy panic sets in that I haven’t got much time to connect the points of my teaching methods having done the practical stuff. So I organise the group to take a seat, flick through my remaining slides, annoyed at myself for not checking the time more effectively, and I round up my session.\n\nThe applause was slow to come and I thought “oh crap they hated it!”, as Paul came up seeing I was finishing and stated “actually you have another 20 minutes Rachel…”\n\nWHAT?\n\nI had mistimed the wrong way and UNDER timed it!!\n\nDOH!\n\nI was gutted to say the least but Paul handled my massive error superbly and summed up the purpose of my session suggesting we open the floor for a Q&amp;A session to finish off.\n\nHands went up, questions came in and it was clear they had enjoyed the practical session very much as their questions all related to the topic and were fantastically relevant and showed their interest.\n\nUnder the table I was mentally kicking my self and then Kurt Lindley spoke. Kurt, who is Development Lead Officer (Coach Developer) at Sports Coach UK, asked me to elaborate on my experience as a ‘non academic’ and how, and at what point, I overcame the anxiety that I was not smart enough or intelligent enough to be able to run an eduction company AND stand in front of people presenting.\n\nHis question put me back into ‘my element’ of being as honest as I can be about insecurities and that it is something we all face at times. This gave me the opportunity to explain my meeting with my lifelong teacher and mentor, Martin Haines, who believed in me and my capabilities way before I did.\n\nKurt also went onto suggest that there is a good chance my insecurities are connected with my schooling and being told I was not academic but he pointed out that chances are it was translated in MY head as not intelligent/not good enough thus making it understandable that my teaching style and methods will reflect this.\n\nMy final Q&amp;A session came to a close with me explaining what an honour it feels to be in a teaching role and how vital it is we all respect this position of responsibility. Soon I had a queue of people lining up at the front with yet more questions and offering business cards and sharing their experiences.\n\nWhat a great opportunity and experience this was!\n\nI had desperately wanted to stay and experience Kurt’s workshop session about asking yourself “…whether you can hold two opposing views at one time without bias…?” Also Georgina Williams’ (a development practitioner amongst other things) ‘Emotional Intelligence’ session looked fascinating and of course my friend Linda Low and her colleague Jamie French were offering their insights into ‘The Art of Co-Delivery.’\n\nThe point to be raised here is we can all make a mistake and step outside our comfort zones but this is what the learning environment is like.\n\nIt is ok to ‘fail’ so long as you take something from it.\n\nIt is ok to feel uncomfortable if this expands your knowledge/learning experience.\n\nLife is too short to stay with the zones you are most comfortable…\n\nTAKE A LEAP…Who knows what might happen? You might even enjoy it!\n\nYou might even discover YOUR ELEMENT!!\n\nIt could be Biomechanics Coaching!\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">CLICK HERE FOR MORE </a>','DOH!','','inherit','closed','closed','','1245-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1245,'https://biomechanicseducation.com/?p=38868',0,'revision','',0),(38869,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','<strong>Congratulations to Lee Hopkins who has been nominated as Biomechanics Coach™ of the Month! </strong>\n\nLee is being recognised for his loyalty and commitment to his own beliefs and also in his self development. This allows him to pass information on during both his fantastic and unique exercise classes and also in the classroom with course students.\nSo much so we have invited Lee to become one of our Master Trainers to help us continue with the high standards of educational experiences all of our learners have in the Biomechanics Education Academy.\n\n<strong>Biography in brief</strong>\n\n<em>My name is Lee Hopkins and I am a fitness professional and sports therapist based in the South West area of London</em>\n\n<em>I have been in the industry for more than 20 years in many different roles ranging from a massage therapist, personal trainer, weight lifting coach, Pilates and yoga teacher, Les Mills presenter and a posture analysis lecturer. </em>\n\n<em>I have always had a passion for movement and a desire to understand how the human body moves/functions and now base a lot of my personal and client training on this knowledge.</em>\n\n<strong>What made you choose <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" rel=\"noopener\">Biomechanics Coaching™</a>? </strong>\n\n<em>During my career I came across Rachel France who introduced me to the concept of biomechanical screening. Her passion and knowledge really resonated with me and prompted me to undertake a Biomechanics Coach</em><em>™</em><em> Diploma which lead me to completing all of the courses available including the iMoveFreely</em>® <em> programme, which has completely changed the way I move, train and think about the body. </em>\n\n<strong>What do you specialise in outside of <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" rel=\"noopener\">Biomechanics Coaching™?</a></strong>\n\n<em>I specialise in Hatha yoga, Vinyasa flow and ‘Scaravelli inspired’ yoga as well as </em>\n\n<em>Pilates reformer, matt and floor classes and private tuition.</em>\n\n<em>I also work on resistance, strength and conditioning including kettlebells and suspension training, boxing one to one and am a qualified sports massage therapist. </em>\n\n<strong>Where do you see yourself in 10 years from now?</strong>\n\n<em>In 10 years from now my aim is to run my own studio in which I’m using my intrinsic biomechanics knowledge on a daily basis with clients to help them achieve an optimum level of fitness, movement and a deeper understanding of how their body works both as private tuition and yoga therapy.</em>\n\n<strong>What would be your advice for somebody thinking of becoming a <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" rel=\"noopener\">Biomechanics Coach™</a>? </strong>\n\n<em>I would advise anyone wishing to become a Biomechanics Coach™ to be prepared for hard work that requires dedication and patience and to have the ability to look outside the box as well as a genuine love and interest for the human body.</em>\n\n<strong>On the journey to where you are now what have been your achievements?</strong>\n\n<em>One of my key achievements was working for Les Mills as a Trainer/Presenter in Bodybalance and Body Pump.</em>\n\n<em>Through the education and training I have completed I have developed my own knowledge to allow me to work across the country lecturing in anatomy, movement, posture and yoga for Drummond Education</em>\n\n<em>Having dedicated time to my own yoga practice and learning I have been head hunted to work on a yoga/mindfulness retreat, which I am proud to say I am a part of once a month.</em>\n\n<strong>Tell us a secret…………..</strong>\n\n<em>I used to compete in Latin American ballroom dancing. </em>\n\nFancy some of the skills Lee has talked about here?\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" rel=\"noopener\">READ MORE HERE!</a>\n\n&nbsp;','Lee Confesses His Secret..','','inherit','closed','closed','','1241-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1241,'https://biomechanicseducation.com/?p=38869',0,'revision','',0),(38870,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','This Juicemail is dedicated to a gorgeous young lady who I met through my S&amp;C buddy, Boris, at the Elite Sports Performance Expo where I was exhibiting with our partners, the Sports Therapy Association. After a brief chat I also find out she had been training with some of my Biomechanics Coach™ guys for years, Daryl and Rob!\n\nAmber and I hit it off straight away and it was clear she has a really passion for our industry and, to my joy, superb event management skills!\n\nWithin a very short space of time she became our <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">TMC16</a> events manager and so I wanted to introduce you to just one of our newest team members.\n\nThe other person this is dedicated to is Sam, whom I never got the opportunity to meet but I will let Amber tell you about here in her own words...\n\n<i>By day… straight haired, clean cut, smartly dressed, heels when really put under duress - Head of Events for London based corporate agency. Literally feeling my shoulders drag forward, hip flexors tighten and shoulders/traps tense as I sit at my desk striving to meet my next deadline!</i>\n\n<i>By evening and weekend… workout clothes, trainers or lifting shoes, hair up or in lazy curls and after much mobilisation and activations, moving freely – training, lifting, cycling, laughing and pushing myself towards the me I want to be… strong, athletic, healthy and happy!</i>\n\n<i>My professional background is 16 years in the agency world of corporate event management which I do enjoy! I meet amazing people, travel the world and have the privilege of mentoring and coaching a remarkable team in operational event management, client relationships and on a subliminal and sometimes not too subtle level, gently encouraging each of them to balance their diets and the benefits of using exercise as a stress reliever as opposed to that nightly bottle of wine! I have had some success. My proudest is now one of my best friends who has truly changed her mind set and lifestyle; she loves lifting, looks forward to the gym and is well along the way to achieving her goals! Hey I was proud when she was even in the right frame of mind and asked me to help her set goals!</i>\n\n<i>On a health and fitness level, I have always been sporty but never dedicated myself to one particular sport; I just love being active and the feeling of a hard training session! I was introduced to lifting in my early 20’s and instantly hooked! My desire to be thin turned into a desire to be strong and beat PR’s, and then my hobby turned into my passion! My genuine passion found me reading constantly and irritating my trainers by questioning everything! I owe a lot to the fab trainers I’ve worked with over the years whom I can now call my friends, mentors and people I aspire to be like.</i>\n\n<i>It’s simple, I love to train. When the rest of the world makes no sense, I jump on my bike, go for a run or my first thought is straight down the gym, lifting shoes on and pushing myself to achieve more. I love goal setting and smashing those goals. But I live a balanced life and I love to socialise and I still love my food. Lucky I genuinely enjoy good food and have a fascination for nutrition and its effects. More recently my fascination has turned to the psychology of exercise and I am desperate to spread this message and get people helping themselves and being proud of themselves, their achievements, their bodies and having respect for themselves. </i>\n\n<i>So when Rachel asked me to be involved in <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">TMC16</a> and allow me this amazing opportunity to listen to, meet and work with such an inspirational group of industry professionals, how could I say no? I cannot wait for October 8th where you will find me running around keeping the event running smoothly but also sneaking into the back of the seminars to absorb as much information as I possibly can!</i>\n\n<i>More important, I was truly touched when Rachel offered for this years’ <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">TMC 2016 </a>chosen charity to be The Big Cheese Society, a name I appreciate will need some explaining. Cheeseman was the nickname of my amazing, truly unique, huge hearted, loved by all boyfriend Sam Rowley who was in a fatal cycle accident earlier this year. He was training for Lands Ends to John O Groats 900mile Ride Across Britain this coming September. Sam adored cycling and sport in general but his real passion was basketball, he used to say it was in his DNA! My Sam had a huge heart; he was always looking to help others and mentored younger members of both his teams, often going out of his way to pick them up if they were unable to find transport to a match. The only downside of this was you had to join in on his pre-game sing/shout along in the car to his latest pump me up song! </i>\n\n<i>So after his accident, when we couldn’t find a charity which served our primary purpose of helping under privileged children to play the game they love we set up The Big Cheese Society. The idea is grants will be offered to help a team who can’t afford a kit or a child who can’t afford boots or parents who have to work so there is no transport to reach training or a game. We will provide the kit, the boots, the taxi or coach. Keeping children in sport, active, healthy and away from gaming or wandering the streets is our primary aim with the intention the charity will organically grow.</i>\n\n----------------------------------------------------------\n\nFancy joining us in celebrating life and all things intrinsically biomechanical and more....?\n\nRemember this is just part of what is happening at this tremendous annual event and there are very limited seats to create that intimate feel for great Q&amp;A session with the industry leaders presenting... <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">CHECK IT OUT!</a>\n\nI suggest you HURRY UP final seats remaining!\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">BOOK YOUR SEAT HERE </a>\n\nAND you get to meet the very gorgeous Amber!!','The Big Cheese Society','','inherit','closed','closed','','1238-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1238,'https://biomechanicseducation.com/?p=38870',0,'revision','',0),(38871,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','THIS was one of the most profound influences on my own confidence about my knowledge of anatomy.\n\nAs you know (because I keep harping on about it) I am NOT academic, so learning muscles names and where they attach and how they move the joints/bones etc was an area I liked confidence in. This was particularly an issue since my job was teaching about it.\n\nMy wonderful mentor put me in situations that challenged me, with methods to fall back on should I be faced with a question I didn’t know the answer to.  I have since learned (and now practice) to NEVER to give the answer - this is known as a LEARNER LEAD classroom and allows for exploratory discussion about the logical principles of anatomy which makes remembering it much easier.\n\nClearly knowing the anatomy is very important when teaching how we understand movement and the way tissues and structures within the body work and influence each other..\n\nBUT\n\nThe more I have learned the more I have realised just how GREY this subject is ….in that there aren\'t so many hard and fast rules as most of the anatomy books would imply.\n\nHowever we require some clarity using certain rules to follow in the beginning to allow us to understand and comprehend certain things in a layered leaning way. Hence level 2 gym instructor qualifications, followed by level 3 PT and so on…\n\nSo I was lucky enough to have the opportunity to access Keele Medical labs through Master Trainer, Biomechanics Coach and TMC16 presenter, Mike Grice. In fact attended several cadaver days there back in around 2009-2011\n\nNow like most people my initial feeling about seeing a dead body, known in this instance as a \'cadaver\', was one of anxiety about the smell and that kind of weird feeling that you might imagine goes along with being in the presence of someone who is actually not alive any more.\n\nHOWEVER the medical lab technicians were just AMAZING at educating us on everything so that we could in fact just get stuck into learning REAL anatomy, so to speak. The embalming fluid (made up of formaldehyde, glutaraldehyde, methanol and other solvents) did smell a bit funny but ANY chemical does.\n\nAlso the technicians did an excellent job of explaining that these people had offered their bodies to science to educate people like us and to help us all understand all the stuff that is really inside of us a little bit better. This impacted on me in a big way hearing this and how I felt about being in there. So I felt more of a respect for the bodies/people I was analysing than the immaturity of it being weird, if you like.\n\nANYWAY with my hair tied back, aprons and gloves on we were all taken into a seating area at one end of the lab. I noticed there were blue plastic covers over the cadavers as we were offered seats in front of a slide presentation. Here embryology was explained to us in its simplest terms, which was fascinating. It was explained to us how they do the embalming process, how long the bodies were kept and of course the laws, rules and regulations of being involved in touching human tissue of the deceased.\n\n10 minutes later when we turned around, I noticed the blue covers had been removed and we were taken towards the first 2 bodies. The one male and one female actually looked like they were sleeping and they had been dissected slightly differently to show us different things. For example the male\'s chest was dissected to show us the muscle tissue layers on one side but the other side was dissected to show the ribs and then the organs underneath as we were told we could lift each part up and fold them back to see.\n\nWOWZERS!\n\nAny remaining feelings of weirdness simply disappeared with pure fascination at what we were actually looking at and TOUCHING! This wonderful gentleman had wanted US to study HIM from the inside to understand better how to help others.\n\nYou know what, I actually felt honoured!\n\nSo we started to look for the pec minor attachments since we have an assessment we do for this very muscle in our programme. The anatomy books will show you a very sharply defined 2D view of how this muscles looks to represent what, in reality, is not so smooth and more of a rugged texture and the attachments on THIS person did not simply attach to, and stop on, the corocoid process and 3-5th ribs. The ‘striations’ of the fibres actually continued across and down into the opposite hip!\n\nAnother cadaver\'s pec minor presented completely differently again…..we went on to look at all sorts of fascinating things including the now much talked about 5 x quads!\n\nYep 5 QUADS! Tensa Fascia Intermedius, of TFI it has now been named, challenges the very roots of some of what we knew about human anatomy in that they cannot really be \'quadraceps\' if there are actually 5 of them in some people!\n\nI LOVE this because this is the way we teach our learners within our academy. That we should always challenge everything until we can gain clarity and understanding, no matter who is telling or what the books say because they could be out of date of unaware of some new evidence or discovery.\n\nAnyway we moved onto a section of various knee joints all in different states of degeneration and the lab technician suggested we try to determine the order of least to worst degeneration. As we studied them but moving them into flexion to look at the ACL, cartilage and inner surfaces it wasn\'t as difficult as you might imagine. Specially when we found one with a chunk of metal in it!\n\nI rolled a sciatic nerve between my fingers, \'squished\' a healthy lung v\'s an unhealthy one, felt different muscle types, looked at a row of foetus displayed in jars (a bit like at the Body Work\'s exhibitions) at various stages of development and even conjoined twins that had deceased at a few months within the womb. This whole experience was mind blowing, humbling and educational on another level.\n\nWhat was most profound was;\n\nThe realisation that we are all as different on the inside as we are on the outside, maybe even more so!\n\nThat while books are created to enable us to understand anatomy better, they are very general and based on what we know SO FAR.\n\nThat we are still scratching the surface when ti comes to understanding the ways in which the human body works, adapts, evolves and functions.\n\nIf lab technicians who teach medical students anatomy don\'t always know the answer then how could WE exercise professionals expect to!?\n\nWhat I would most like to communicate across in this Juicemail is the lesson I took from my experience in the cadaver labs. That we should know what we NEED to know really well and not feel so much pressure to \'know it all\' because NO ONE does! Not event the lab technicians who teach detailed anatomy to budding surgeons!\n\nBy all means use the books to process the basics but also keep in mind that they are teaching us a very GREY subject area in a black and white way to simplify a very complex subject.\n\nLike one of my past learners who called me and said \"I don\'t agree with what the book is saying because......am I right?\' He had a very logical JUSTIFICATION as to why he wanted to challenge what the book said but he was almost nervous about challenging the book. I congratulated him on this and said the most important thing is that you are thinking like this and using logic from your own understanding and not simply accepting what another is telling you.\n\nENJOY the process!\n\nTry not to allow anxiety or doubt to affect your learning experience and rest assured if you are one of those considering joining our academy we are a constant support for you along your fantastic journey in this wonderful world of the human body and movement!\n\nOur waiting list is growing so don\'t miss out, simply leave us your email to receive our priority email with the 2017 schedule upon release..\n\n<a href=\"https://www.biomechanicseducation.com/contact-us/\">JOIN US in 2017 by registering your interest early HERE</a>','Feeling Dead Bodies!','','inherit','closed','closed','','1234-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1234,'https://biomechanicseducation.com/?p=38871',0,'revision','',0),(38872,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','PGA advisor, Martin Haines, is back!!\n\nDo you play golf?\n\nDo your clients play golf?\n\nWould you like to play golf without feeling back pain?\n\nWould your clients like to play golf without feeling back pain?\n\nWell one of the luxuries of my job is working with some of the smartest, nicest and coolest people in our industry, as you probably already know because I like to share!\n\nHaving a world leader in biomechanics as, not only a colleague, but also as a close friend means I get to bring this fantastic opportunity to those of you who have an interest in golf...\n\nHere is a sample of the kind of things Martin talks about in relation to golfers;\n\n<i>One of the most disabling and common ailments in our golfers today (and our society in general) is back pain.  In fact according to a top researcher, lower back pain is as common as headaches in modern society. </i>\n\n<i>A recent study showed that if you see your GP with your back pain, if he then refers you to a specialist, who then sends you for X-rays and MRI scans, the accuracy of diagnosis is 15-20%.  A frightening yet little known fact.  Unfortunately the principles of modern medicine mean that the medical profession cannot treat an injury without an accurate diagnosis; so is there any wonder why the incidence of back pain has doubled every 10 years for the last 30 years?  </i>\n\n<i>As you can imagine, the problem is made even worse when you have had back pain for some time, especially if you are a golfer where the high speed spinal movements increase the pressure on your spine significantly.  The problem is that when you have had an injury for more than 6 weeks, another part of your body will start to compensate so you can have new pains as your condition deteriorates.  So you can actually end up with more than one injury due to the mechanical compensations, which makes diagnosis even more difficult. We need to shift the paradigm and look at back pain differently.  </i>\n\n<i>Scientists, called Biomechanists, have been looking at back pain quite differently for some time.  They look at the mechanical causes of back pain rather than focusing on the pain itself. They have found that they get better results by managing the biomechanical causes than many in the medical profession achieve by treating the symptoms. </i>\n\n<i>In fact independent research has shown that if you see at Physiotherapist over a 6 week period for your low grade back pain, your average improvement will be around 39% in functional capacity (the capacity of your back to perform work).  If however you were to perform an exercise programme to manage the mechanical causes of your back pain, your average improvement would be around 140%.  A profound difference and one that cannot be ignored.</i>\n\n<i>This biomechanical approach is rapidly taking over from the medical approach in popularity as a much more effective method of treating back pain.</i>\n\n<i>Of course no single method can be the panacea of all ills, but what we are finding is that if the mechanical causes are addressed, the pain can subside without treatment on the \'injury\', whatever it might be.  Sometimes treatment is also required, however, but often golfers find that once they\'ve committed to an exercise programme to address the causes of their pain, they are then more able to manage the problem themselves.  Then if local treatment is necessary, it is more likely to be successful, as the mechanical causes are no longer present.</i>\n\n<i>Considering the problems that golfers can have with back pain, prevention is important as it’s far less painful, less inconvenient and far less expensive! The same biomechanical principles that can help manage back pain, can be adopted to minimise the risk.  So the ‘take home message’ for them is to find a Biomechanics Coach™, get screened and learn which are the best exercises for you personally.</i>\n\nOR\n\nWould you like to learn more about how you can help yourself AND your golf players?\n\n<a href=\"https://www.biomechanicseducation.com/workshop/golf-workshop/\">GOLF BIOMECHANICS WORKSHOP</a>\n\nSATURDAY 17th SEPTEMBER\n\nLOUGHBOROUGH UNIVERSITY\n\n9:30AM-4:00PM\n\n£150\n\nBOOK YOUR PLACE NOW','Back Pain Playing Golf?','','inherit','closed','closed','','1231-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1231,'https://biomechanicseducation.com/?p=38872',0,'revision','',0),(38873,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Are you caught up INSIDE your business wondering how you can make more AND do less?\n\nor\n\nMaybe you just want to do more of the stuff you LOVE to do?\n\nMarketing magician to the fitness industry, Chris Wright, is changing the working lives of Biomechanics Coaches™ &amp; PT\'s all over the UK, who are just like YOU!\n\nHere in this Juicemail, this super cool guy is offering an insight into his <a href=\"http://biomechanicseducation.us3.list-manage.com/track/click?u=6f458d653bd47a8a28461394b&amp;id=06352f1f1c&amp;e=5903c8c1c6\">one day business workshop Sat 8th Sept at Loughborough University.</a>\n\nREAD ON MY FRIENDS…\n\n<i>I have tons of memories when that phrase, “It’s right in front of your nose” was shouted at me by my mum or dad growing up…. Ok I’ll be honest, Shelly even said it to me just yesterday :-)</i>\n\n<i>You go into the kitchen looking for something, and you have already told yourself that you don’t know where it is. You look, but don’t see it. Someone else comes in and there it is staring back you in the most obvious place possible. “It’s right there!!!!!” It is literally right in front of your nose…..How did you miss it?</i>\n\n<i>You saw it, you must of have done, it\'s right there, but the brain didn\'t register it because you told it not to. You said, “I am not going to find it because I don’t know where it is”, so the brain did as instructed.</i>\n\n<i>And we do this all the time with our lives, and businesses.</i>\n\n<i>I see this all the time with clients (note this is why it’s always good to have a coach in areas that you are working on). It’s often the things and people right in front of us that could be hugely helpful to us and our businesses that we completely skip over. Not intentionally (sometimes subconsciously), but we just don’t think about it. </i>\n\n<i>We tell ourselves that our friends probably can’t help us, so we don’t even ask. We tell ourselves that we won’t ever meet or connect with certain individuals, so we don’t even try. And then moan that others get lucky when they meet them….they didn’t get lucky. They put themselves in positions to meet them.</i>\n\n<i>I want to first tell you that no one is successful by themselves. Amazingly successful people have teams of people around them, friends, family etc that have all helped them become who they are. </i>\n\n<i>What I want you to do is look at the potential opportunities or relationships around you.</i>\n\n<i>I am going to use an example of a client I have been working with recently, they laughed a lot with this and I hope won’t mind me sharing it, as it will help so many other people.</i>\n\n<i>This person is currently employed and looking to leave their job to do what their true passion is, help people be healthier, fitter have more confidence and just be even more awesome. Best of all, they have a truly supportive team around them that are encouraging them to take the leap.</i>\n\n<i>Looking for ways to launch the business and get it off the ground quickly, I asked….. “How many employees are there in your building?”</i>\n\n<i>Answer: 400 or so.</i>\n\n<i>Me: And none of them want to help with their health and fitness?</i>\n\n<i>Answer: I have never asked!</i>\n\n<i>Me: There are 400 people in your office, and you have never asked even one of them if they would like some help getting fit?</i>\n\n<i>Answer: When you put it like that it sounds ridiculous. I will do something about that immediately.</i>\n\n<i>These people either already know them, or at least are familiar with other people who may use their services.</i>\n\n<i>Me: The boss already knows, likes &amp; trusts you and wants to support you with your leap into your new business. Do you think they might be willing to pop an email round all the employees promoting you, or even set up an employee fitness programme?</i>\n\n<i>Answer: There’s no harm in asking</i>\n\n<i>EXACTLY!! Even if the answer is no...it doesn’t matter!</i>\n\n<i>Put this way… If you set up a group programme and get 20 people to pay you £97/month - you have £1,940/month….. And you have a captive audience of 400! Go get those 20 people :-) </i>\n\n<i>Now not everyone will have this, but I am telling you there are opportunities all around you that you will be missing out on.</i>\n\n<i>So it’s time to make a list :-) </i>\n\n<i>Look at your family, friends, colleagues, your current clients.</i>\n\n<i>Who do they know? Have you ever told them that you are looking to get into certain places or meet certain people? </i>\n\n<i>Have you even told them what your business is about and who you serve? Often the answer is no. And yet how often does someone tell you something, or about a restuarant, or activity they went on, and you go… “You know who would love this… Julie. I will tell her about this”</i>\n\n<i>Where do your friends work? What roles do they have in those companies? They may not be the managing director of a company that has 400 people on site, but could they introduce you to someone who you would need to speak to about setting up a programme to help their employees move better. Of course!</i>\n\n<i>Where do your clients work? Who do they know that would help you grow your business?</i>\n\n<i>Are you part of sports clubs, communities, groups of people? Can you promote through those?</i>\n\n<i>All you have to do is ask.</i>\n\n<i>And that’s the bit everyone really struggles with. Why? Because we freak out that answer will be NO…. why do we freak out about that? It doesn’t matter.</i>\n\n<i>Or perhaps we say we don’t want to ask our friends for help…. Why? If a friend came to me, and asked me for help, and I could help them, or introduce them to someone I would happily do it! </i>\n\n<i>You see it’s our own insecurities that stop us from asking, that stop us from growing. So it’s time to get over it :-) </i>\n\n<i>Also, I do understand that people often don’t know what to ask for, right? Well, this post has hopefully got you thinking, and should as a result have given you some ideas.</i>\n\n<i>Here is how a conversation with a friend could go…..</i>\n\n<i>You: “Hey Mark, I know you work at (insert company name), I would love to come in and do a free talk for your team, who do you think would be best to talk to about that?</i>\n\n<i>Mark: That would probably be John.</i>\n\n<i>You: Great, could you introduce me to them?</i>\n\n<i>Mark: Sure thing. Email ok?</i>\n\n<i>As a Biomechanics Coach™ for example who are you looking for as clients? Who is already serving those clients? Or where are those potential clients? Who do you need to connect with to be in front of those people?</i>\n\n<i>So get out there start looking for the opportunities and start ASKING :-)</i>\n\n<a href=\"https://www.biomechanicseducation.com/workshop/launching-growing-your-business-with-biomechanics-coaching/\">CLICK HERE TO BOOK </a>\n\nLAUNCH &amp; GROW YOUR BUSINESS\n\n1 Day Workshop\n\nSaturday 8th September\n\n9:30-4:00pm\n\nLoughborough University\n\n£180\n\nIf you have enjoyed this post, then make sure you tune in to my new podcast, The Entrepreneur Playbook: Strategies For Success In Business &amp; Life. Subscribe now CLICK ON;\n\n<a href=\"https://itunes.apple.com/gb/podcast/entrepreneur-playbook-podcast/id1133978599?mt=2\">iTunes </a>\n\nor\n\n<a href=\"http://subscribeonandroid.com/level10living.co.uk/feed/podcast/\">Android  </a>\n\nor\n\n<a href=\"https://soundcloud.com/the-entrepreneur-playbook\">Soundcloud</a>\n\nAlso I would love to connect with you, so make sure you come and join the community in these various places:\n\nFacebook: https:<a href=\"https://www.facebook.com/YourLevel10Life/\">//www.facebook.com/YourLevel10Life/</a>\n\nTwitter: https:<a href=\"https://twitter.com/YourLevel10Life\">//twitter.com/YourLevel10Life</a>\n\nInstagram: https:<a href=\"https://www.instagram.com/yourlevel10life/\">//www.instagram.com/yourlevel10life/</a>\n\nSnapchat: https:<a href=\"//snapchat.com/add/level10living\">//snapchat.com/add/level10living</a>\n\nMy personal facebook: https:<a href=\"https://www.facebook.com/ChrisWright17\">//www.facebook.com/ChrisWright17</a>\n\nAll I ask is that if you connect with me personally, just pop me a message saying HI, tell me a little about you, what most excites you in your world right now, and that you read this and wanted to connect.','\"It\'s Right In Front Of Your Nose\"','','inherit','closed','closed','','1225-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1225,'https://biomechanicseducation.com/?p=38873',0,'revision','',0),(38874,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Grace is a 23yr old writer, and a very gifted one at that.\n\nGrace sees value in telling others how she feels and also telling people why she communicates in a certain way or feels better when WE communicate with HER in a certain way.\n\nHow refreshingly simple…To tell others how you best receive and process information!\n\nSurely this should be encouraged in education facilities from schools to colleges, to universities and further education beyond, right…?\n\nI know I certainly appreciate it when MY learners tell ME how they best receive the information in my classroom and in fact the sessions I enjoy most are the learner lead, facilitation session that FEEL more like a group discussion\n\nWHY?\n\nBecause there is far more going on than simply passing on information.\n\nANYONE can pass on information\n\nANYONE can show you an image or some text or read to you or play you a video..\n\nBUT\n\nCan you create an unforgettable experience ..?\n\nHere are what I believe to be 2 of the key factors to delivering really great educational experiences;\n\nManaging facilitation of discussions that remain inclusive and relevant to the aims and objectives of the session.\n\nWhile doing so remaining confident in this style of ‘ad- lib’ teaching that doesn’t come in the lesson plan, isn\'t ‘prepared’ for in the reading the night before, wasn’t necessarily on the syllabus or the curriculum, but at THAT moment, for WHATEVER reason it has come up in a group discussion and the teacher recognises it as a ‘learning rich moment’ for development of those individuals present!\n\nMy own learning expands during MY teaching as I absorb information from my learners experiences, knowledge and expertise during those group discussions. Since I am in an industry where the people I teach are already qualified, insured, practicing and have loads of experience…\n\nWHY WOULDN’T I LEARN FROM THEM TOO…!?\n\nAnyway where was I?\n\nYes, Grace …..\n\nGrace communicates really well how she feels and she does this to enable others to understand how she thinks, feels and communicates and she does this in a positive way for both parties, with a fantastic sprinkle of her humour too!\n\nFor YOU as a PT, exercise professional, fitness professional or therapist do you think understanding how to communicate with clients would be helpful too?\n\nObviously, right?\n\nYet it takes time to learn the best communication techniques for each person, the mediums and motivators that help them flourish and feel successful.\n\nIf YOU would like to learn how some others communicate please take a moment to read Grace’s blog and raise awareness that we..\n\nDO NOT ALL give and receive information in the same way.\n\n<a href=\"http://unwrittengrace.wordpress.com\">READ GRACE\'S BLOG </a>\n\nThank you Grace!!\n\n<a href=\"http://www.autism.org.uk/get-involved/tmi/stories/grace-liu.aspx\">READ MORE </a>','Unwritten Grace','','inherit','closed','closed','','1222-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1222,'https://biomechanicseducation.com/?p=38874',0,'revision','',0),(38875,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','<b>Another re-post by request, of a Juicemail we published in 2015 to explain the roots of <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaching™</a>...</b>\n\nRecently I decided to do some research into the origins of my profession having known, and taught for many years, that the education programmes we deliver all started with ‘Remedial Gymnastics’ (RG).\n\nWhat I found interesting was the definition of the role of an RG still to this day holds true to what a <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coach™</a> (BC) does too.\n\nRemedial Gymnastics is a special treatment method that involves the means of preventative physical training to accelerate patients working capacity and avoid consequences of pathological process.\n\nAnother definition I came across based on the understanding of this type of approach was:\n\nUses movement as the basic means for the purpose of prevention and correction. Correctly chosen and well directed movements help faster and more successful restoration of impaired function of certain segments of the organism as a whole\n\n<strong>AIMS &amp; APPLICATION (of RG/BC)</strong>\n\n<strong>Increase in the scope of movement of the joint</strong>\n\n<strong>Increase in muscle power </strong>\n\n<strong>Maintenance and improvement in coordination of movement</strong>\n\n<strong>Rise in the speed of movement</strong>\n\n<strong>Improvement in general and local stamina</strong>\n\nBy certain exercises a series of our objectives are realised: improvement of circulation, after transportation of energetic potential to feed tissues, improvement in metabolic and regeneration processes, reduction of pain, relaxation, psychological balance or such\n\nFounder of the Intrinsic Biomechanics method that we call Biomechanics Coaching™, Martin Haines, was originally an RG before it merged with physiotherapy and he went on to become a chartered physiotherapist.\n\nHe recognised the value in having BOTH the RG and physiotherapy methods combined available to individuals since many of the ‘injuries’ or low grade non specific problems people were experiencing did not require site specific treatment but a more general means to over come discomfort with the use of simple exercises. He recognised that should this type of problem go unaddressed for a period of time it may well result in a more severe condition the requiring the attention of a physiotherapist. Therefore the 2 professionals working along side each other is a perfect combination for the overall recovery and improvement in movement of the client.\n\nHowever Haines took his ideas even further. Having access to isokinetic equipment meant he could trial and test his, and his colleague Nick Barrow’s ideas. This evolved a tried and tested series of manual assessments to identify where an individual may have a risk of injury waiting to occur. This systematic ‘functional’ approach to injury prevention is quite unique in that level 3 exercise professionals are perfectly placed to deliver this kind of programming.\n\nSo, we as PT’s, Fitness professional’s, Pilates or Yoga teacher’s are the exercise experts and we are crying out for objectivity in our assessment and exercise prescription process! Which is why the Intrinsic Biomechanics methodology of Biomechanics Coaching™, that has evolved from the RG professional since the 1980’s, is having such a massive success in the fitness industry.\n\nThe badge you see above depicts the Society of RG’s crest with the motto in latin;\n\n<em>SPES SIBI QUISQUE</em>\n\n<em>Let each man’s hope be in himself </em>\n\nor put another way, <em>‘rely on his own resources’</em>.\n\nThis is absolutely the ethos of being a BC. To empower individual’s, clients, participants, patients, whatever we define them as, to care for themselves, take ownership of their physical state and consider the impacts of their chosen lifestyle.\n\nWe are the professionals who prepare people for movement, educate people how to regain functional capacity, inform people where to begin using a tried and tested system, identify risk, teach true function, all with simple logic and exercise guidance.\n\nWe form alliances with those who have a different skill sets, knowing what WE know really well and accepting we do not have certain skills therefore utilising our clinically trained colleagues for occasions where clients have ‘true’ medical injuries.\n\nDo You Want To Join Us?\n\nAre you A PT? Exercise Professional? Pilates Instructor? Yoga Teacher?\n\nDo You Want To Help More People?\n\nDo You Want Simple Principles To Gain Confidence?\n\nDo You Want Full Support In The Application Of ALL Of Your Skills?\n\nHurry Time Flies…..Places Are Already Going Fast...!!\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">REGISTER YOUR INTEREST for 2017 WORKSHOPS HERE </a>\n\nArticle References:\n\n<a href=\"http://www.mediclub.az/en/35\">http://www.mediclub.az/en/35</a>\n\n<a href=\"http://hansard.millbanksystems.com/lords/1986/mar/24/professions-supplementary-to-medicine\">http://hansard.millbanksystems.com/lords/1986/mar/24/professions-supplementary-to-medicine</a>\n\n<a href=\"http://archives.wellcome.ac.uk/DServe/dserve.exe?dsqIni=Dserve.ini&amp;dsqApp=Archive&amp;dsqDb=Catalog&amp;dsqCmd=show.tcl&amp;dsqSearch=(RefNo==\'SACSP%2FL\')\">http://archives.wellcome.ac.uk/DServe/dserve.exe?dsqIni=Dserve.ini&amp;dsqApp=Archive&amp;dsqDb=Catalog&amp;dsqCmd=show.tcl&amp;dsqSearch=(RefNo==\'SACSP%2FL\')</a>\n\n<a href=\"http://www.health.nsw.gov.au/careers/conditions/Awards/dt_hsu_remedial_gymnast.pdf\">http://www.health.nsw.gov.au/careers/conditions/Awards/dt_hsu_remedial_gymnast.pdf</a>\n\n<a href=\"http://www.feellife.rs/eng/remedial-gymnastics.html\">http://www.feellife.rs/eng/remedial-gymnastics.html</a>','Remedial Gymnastics','','inherit','closed','closed','','1219-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1219,'https://biomechanicseducation.com/?p=38875',0,'revision','',0),(38876,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','This message came to me from another learner training in our academy this year;\n\nHi Rach,\n\n<i>My mind was blown today...</i>\n\n<i>I did a biomechanics session with one of my close friends at the yard, it\'s the first time she had done a session with the jacket and the software that I use and she was very surprised to see how wonky she was! </i>\n\n<i>As a bit of an experiment (we hadn\'t done a screening before) I got her off the horse and got her to do the 4 sign exercise. </i>\n\n<i>She then got back on the horse, and with absolutely no other direction or instruction I got her to ride the same line and filmed her...we were both amazed to see the difference in the positioning of her pelvis, feet and the improvement it had immediately on the horse\'s straightness! </i>\n\n<i>I have attached the photos *see right. </i>\n\n<i>I did the screens afterwards and found a huge difference in range and symmetry particularly on the 4 sign test. I have set her about doing the 4 sign test everyday four times a day and we have another intrinsic biomechanics screening session scheduled in a week to see the difference. </i>\n\n<i>I absolutely LOVE seeing the improvement in riders but this stuff is ridiculously good!!</i>\n\n<i>Can\'t wait to learn more and the end of the month!!</i>\n\n<i>Hope you don\'t mind the update but just had to share this!</i>\n\nDo you want to learn these skills too?\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">REGISTER YOUR INTEREST HERE</a>','My Mind Was Blown..','','inherit','closed','closed','','1196-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1196,'https://biomechanicseducation.com/?p=38876',0,'revision','',0),(38877,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','<strong>My friend sent me this message for all of US...</strong>\n\n<em>I walked into the local chip shop the other day and asked for deep fried Gadus Morhua and similarly prepared Solanum tuberosum, proceeded to my domicile  and processed the afore mentioned through the various stages of my digestive tract along with a large quantity of fermentum….in <u>normal</u> words I went to the chippy and got cod and chips, went home and had my supper with a load of beer.</em>\n\n<em>Simple, no need to complicate and everyone knows exactly what your saying…and this is how life is in general…unless your talking to a health or fitness professional.</em>\n\n<em>Going the gym for the first few times or seeking out a personal trainer can be quite intimidating for Joe or Jill public and it’s great to find someone that is knowledgeable and helpful but please…stop using Latin or medical terms for muscles or movements….to us average Joe’s…we have thighs not quadriceps femoris (or even quinriceps femoris if modern thinking is to be believed)<strong>,</strong> I have an ASS not gluteus maximus, gluteus medius and gluteus minimus…..I have one ASS…I don’t think of it as three different entities. </em>\n\n<em>My point being, why do you feel the need to talk like this? Is it to demonstrate your knowledge or our ignorance? Do you feel the need to intimidate us, beat us into submission with your superior knowledge before we have even lifted a weight? </em>\n\n<em>If talking like that is normal to you…sorry but us ‘lay’ people just don’t talk like you do….and we, the average Joe and Jill, are people. Most of your potential clients won’t say “please stop, I’m a bit thick and I don’t have a clue what you’re talking about”</em>\n\n<em>While we are here in this ‘zone’, let’s also consider the targets that YOU set us mere mortals when WE just want to slow down the ageing process, look good in a t-shirt or keep our asses from hitting the floor when wearing leggings, six packs (or eight packs…because six isn’t enough these days) are things that Olympians and Feather weight boxers have …WE will stick to the gruelling tempo you set and thank you for the pain you have caused us at the end of the supervised session but as soon as we are on our own, we are on the phone texting while having a leisurely stroll on the treadmill. This is because you don’t understand our nature..we are not lazy..we just don’t prioritise in the same way as you. You jog to work, we drive to the shop around the corner, you get up early to go for a swim, we have a lie in because we drank too much the night before. </em>\n\n<em>Instead of screaming for one more rep on the smith machine, encourage us to walk to the shop…help us formulate a long term plan with small changes to our lifestyles rather than giving us a sudden intense shock to our systems….Its not more pain more gain..its too much pain leads us to want to miss gym days and eat ice-cream and ibuprofen in equal measures.</em>\n\n<em>After listening to your Latin lesson and all…you have looked at our diet while grimacing every now and then, you have talked about the evil of sugar, the healthy fats and horrors of low density liposomes, You have described in great detail the wonders of egg whites, whey protein and tuna, you have imparted your knowledge and expertise..jeez..some of you even go as far as supplying recipes for colossal success….guess what…we are going to continue with beer, chocolate and Friday night pizza…but you will catch us with a protein shake at the gym….its even the one you recommended!</em>\n\n<em>So my dear Health or Fitness professional…try to be realistic with OUR goals, help US achieve some semblance of initial success without huge amounts of pain or inconvenience and wonder of wonders we might just stick with it and make it part of our lives instead of just another discarded new year’s resolution.</em>\n\n<em>Regards Fatty ☺</em>\n\n-----------------------------------------------------------------------------------------------------------\n\nSomething that is a key part of our education programmes is encouraging professionals to communicate more effectively with clients.\nKeeping THEIR goals relevant to what THEY want, THEIR lives, THEIR ideals while managing expectation on BOTH sides.\nWe shouldn\'t push OUR ideals onto THEM.\nYES educate\nYES motivate\nOH YES\nBUT we should be careful of <em>imposing </em>OUR<em> </em>unrealistic goals based on what WE feel they SHOULD do when it does not matter as much to THEM.\n\nLet us know your thoughts...?\nrachel@biomechanicsducation.com','A Message From Fatty...','','inherit','closed','closed','','1193-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1193,'https://biomechanicseducation.com/?p=38877',0,'revision','',0),(38878,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','There is a lot of media hype about people don’t move because they lack confidence and this probably isn\'t new to us as exercise professionals. The question is, is there an entire market WE are missing out on because they are actually afraid of exercise?\n\nWe are very focused on those who WANT to exercise OR those who have a specific goal, obviously, BUT what about those afraid of, or intimidated by, gyms?\n\nWhat about individuals who maybe don’t even realised it is not all about sweat, blood and tears or no pain no gain?\n\nOccupational health is a huge problem and possible one of the biggest cases of unnecessary low grade aches and pains many of the workforce is suffering today. However it is not necessarily as simple as asking them to move more…..or is it?\n\nLow grade aches, niggles and recurring injuries are accepted as NORMAL today....WHAAAAAAAAT?\n\nYes, this is what I hear some clients and participants actually saying and even those who are in their 20\'s!!\n\n\"NO THIS IS NOT \'NORMAL\'\n\nit is COMMON not normal \"...I tell them!!\n\nSo why on earth are people just accepting this as what they should live with?\n\nChances are it is because they have sought the advice of clinicians that maybe hasn\'t worked. The problem with this is if it is a biomechanical problem that is simply linked to their lack of movement rather than an actual clinical issue. The therapist hasn\'t \'failed\', they simply didn\'t get to the ROOT CAUSE.\n\nWe, exercise professionals, are perfectly placed to \'set people up\' for movement but what we lack in our exercise education is a basic preparation for movement programme that is required in this day and age. Basic warm ups and stretching is often not enough for an 8hr day sitting at a desk for example.\n\nWith all the compensations going on inside us when we are static for so long, simply jogging for 5 minutes or pre-workout stretching just isn\'t enough anymore. This fear of movement hurting them is putting people off moving and exercising, they are lacking confidence especially if the professional they saw wasn\'t able to help, they are feeling like a lost cause!\n\nThis is why as exercise professionals, we need to understand the body better and have more knowledge on improving movement capacity in our skill set. Not only does it help the \'keeno\'s\' who come to sweat, the newbie who just signed up for a years membership, but it can also increase confidence in those nervous of even leaving their desk to step into a gym, fitness class or exercise facility. So lets start introducing THEM to the safest exercise programme on the planet that prepares the body for movement and creates a safer foundation for exercise and fitness.\n\nInterestingly this programme originates from \'rehab\' but is perfect for \'pre-hab\' and it can literally be done sitting at your desk!\n\nIn studies the<a href=\"https://www.biomechanicseducation.com/imovefreely/\"> iMoveFreely®</a> programme helped reduce musculoskeletal absenteeism by 64% within 3 months. It also saved one fire service £64k over a similar period of time for the same reason.\n\nThe beauty of the <a href=\"https://www.biomechanicseducation.com/imovefreely/\">iMoveFreely®</a> programme is that it is the perfect programme to prepare your body for movement and could be called a NO SWEAT ‘work out’ that an office worker could do during their lunch break and they could then repeat as they sit at their desks or while talking on the phone for example. The low grade techniques are simple, safe and evidence based as effective for \'pre- clinical\' issues so that even the most exercise adverse individuals won’t be put off.\n\nThis awesome ‘de-sensitising’ exercise system enables individuals to manage their own physical health without stepping foot in a gym or even getting sweaty - at least to begin with anyway - while they increase their confidence in movement beyond the \'sedentary desk worker\' 90 degrees of hip flexion, for example.\n\nAs the <a href=\"https://www.biomechanicseducation.com/imovefreely/\">iMoveFreely®</a> programme increases their confidence AND ability to move it also therefore increases the likelihood of them moving more and coming to your facility for more.\n\nThis programme is perfect;\n\n<a href=\"https://www.biomechanicseducation.com/imovefreely/\">PREPARATION FOR MOVEMENT &amp; EXERCISE</a>\n\nThere is nothing like this in our industry and this can be delivered as a short \'prep clinic\' prior to present classes, one to one sessions\n\nor\n\nblended into your PT session or group exercise class\n\nor\n\ndelivered as a \'session\' or \'class\' in itself\n\nWould YOU like to learn how you can deliver this fantastic simple ‘work out’ into businesses in your local area?\n\nWould you like to generate another avenue for income?\n\nWould you like to be the first to approach local offices with an answer to some  of their occupation health costs?\n\nWould you like some quality education that comes with a huge amount of support beyond the classroom?\n\n<a href=\"https://www.biomechanicseducation.com/imovefreely/\">REGISTER YOUR INTEREST HERE</a>','Lack of Confidence','','inherit','closed','closed','','1188-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1188,'https://biomechanicseducation.com/?p=38878',0,'revision','',0),(38879,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Keeping Women Moving Freely Through All Stages Of Their Life\n\nMairi Taylor\'s session at <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention</a> 2015 went crazy with interaction and fascination as she gave us evidence based statistics and her expertise on inside out health!\n\nThis year she\'s back! Along with her amazing Juicebar!\n\nHere she gives your a teaser out her session...\n\nThis may come as a surprise to some people but women are not small men and therefore when it comes to working with and supporting them to keep moving freely it may be beneficial to understand where they are in their life cycle and how you can adapt your practice to support their needs from a hormonal as well as physical perspective.\n\nWhether it’s the young female athlete reaching puberty, the pregnant mum wanting to keep moving, the post-natal mum looking to return to fitness, the weekend warrior or elite athlete wanting to go with their flow or the peri menopausal woman looking to stay FABulous and work with her hormones rather than against,  Biomechanics Coaching™, good nutritional advice and lifestyle coaching go hand in hand to create the type of service that will ensure raving fans.\n\nAs a Perimenopausal woman Mairi Taylor not only has the education gathered through training with Burrell Education, The Integrative Women’s Health Institute and Metabolic Effect she is also walking and feeling her way through this key life stage determined to inspire and show other women that life most certainly isn’t over at 40!\n\nAs a Biomechanics Coach™, Pilates Instructor, Women’s Health Coach, Kettlercise™ Coach, Massage Therapist and Natural Juice Therapist Mairi brings all these disciplines together to provide a “whole” list approach to working with her female clients and supporting them at whatever stage of their life cycle they are to look and feel FABulous.\n\nDuring her lecture she will be sharing the impact of the hormonal changes at different stages of a woman’s lifecycle and some strategies for working with them and supporting their needs to ensure they keep moving freely.\n\nBook yourself, and your friends, one of the remaining\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">MOVEMENT CONVENTION</a> seats\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">HERE</a>','SHE\'S BACK!','','inherit','closed','closed','','1183-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1183,'https://biomechanicseducation.com/?p=38879',0,'revision','',0),(38880,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Sheila Court has been nominated <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coach™ of the Month</a> for skilfully blending her holistic approach and sharing her wonderful and honest knowledge with others in and around Scotland!\n\nShe is also demonstrating why she was voted ‘top student award’ by The Western School of Massage!!\n\nWell done Sheila!!\n\nRead her story here:\n\nI qualified with a B.Ed in Physical education in 1991 and have been teaching since then.  Also R.S.A Qualified, for the last 20 years I have been taking aerobics, step and conditioning classes.  In simple terms, I’m movement and fitness daft!\n\nHaving spent years enjoying an extremely active life and having two fantastic children, I reached the dilemma of not being able to do what I loved without persistent injury and pain.  The hard work and abuse I had given my body, pushing it to the limits and age were starting to have some major consequences.  My lack of function and pain was affecting my job, my lifestyle and basically my well being.\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaching™</a> has allowed me to sort out the key elements so my body can function to the high levels I still demand of it.  Knowing it’s worth and the benefits I have gained, it had to be something I did for other people.\n\nIn September 2012 I broadened my expertise further to give the best for my clients and qualified in Massage studying with the Western School.  Since then I have gone on to study Advanced and Sports and Remedial Techniques.  These skills couple ideally with <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaching™</a> and seem to be the kick start that some clients need to engage in the process.\n\nWhere do I see myself in 2026 is a mega question!\n\nMy family will have hopefully grown up into ‘responsible citizens’ and following their own career paths.  I still plan to be ’moving freely’ towards a happy retirement with the power to be as busy as I choose work wise!!\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Thinking of becoming a Biomechanics Coach™?</a>\n\nBiomechanics Coaching™ I feel is the missing link to quality and injury free exercise.  <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaching™</a> allows me to offer a new concept in rehabilitation and injury prevention.   I offer individual and small group sessions which centre solely on biomechanics coaching, additionally I have integrated it’s concepts into my fitness classes.\n\n2016 saw me take the big leap in becoming full time in my Now Move Freely business.  An enormous step for me after 24 years in teaching, however with the skill set I now have it has allowed me to develop a very busy business, which I love.\n\nSecrets, I’m not really big on.  What you see is what you get with me!! My passion however for fitness and health goes back a long way having been a ‘wee bit on the chubby side’ as a child!','Movement & Fitness Daft!','','inherit','closed','closed','','1166-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1166,'https://biomechanicseducation.com/?p=38880',0,'revision','',0),(38881,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','If any of you follow my Facebook posts you will have seen me talk about, and show small videos clips, of my Olympic Lifting progress and coaching experiences with various S&amp;C Coaches and British Weight Lifting Coaches over the last 18 months.\n\nHaving met Stephen Aish at LIW 2015 when we were both presenting on the Jordan Fitness stand, he offered to be my \'demo model\' during my practical demonstration. Following that he gave me some guidance on my lifting technique during his session. His approach was quite different and resonated with me, so much so I booked myself some 1:1 session with him.\n\nLogistics means we meet at Peterborough Crossfit and having achieved 4 x PB\'s on the second session and then 10 PB\'s on my 4th session with him you can imagine how excited I am to have found him!!\n\nWhat I love about his guy is, of course the stuff he says, but also the stuff he doesn\'t say but that he makes me feel and think about in the few wise words he does share with me. To truly understood what I mean you need to meet this awesome character who, our partner Ben Coomber also recognises as a great industry influencer, since Steve also represents BTN on their mindset workshops.\n\nSo now I want to share my sensei with you at this year\'s <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">Movement Convention Sat 8th October Loughborough University</a> so that you can experience some of his wisdom and maybe generate some PB\'s for yourself, your training, your business, your life!\n\nSteve is an international performance coach, mentor, champion athlete and has worked with over 10,000 people. His own journey led to him realising how important the mind is for health and he now dedicates his time to helping people find inner peace and their true potential.\n\nThe Movement Convention\n\nSat 8t October\n\nLoughborough University\n\n9-6pm\n\n£140\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">CLICK HERE TO RESERVE YOUR SEAT!</a>','Sharing My Sensei','','inherit','closed','closed','','1144-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1144,'https://biomechanicseducation.com/?p=38881',0,'revision','',0),(38882,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Having had an unsatisfactory education as a youngster and leaving school feeling pretty dumb as a \'non academic\' and then qualifying with QTLS in 2011 I have become very passionate about developing educational experiences for those who choose to enter into our academy.\n\nSo I KNEW I wasn\'t really dumb since I could communicate well, hold an audience captive and was great at inter personal relationships. I could make people laugh and coped perfectly fine living abroad for 6yrs in my early 20\'s, teaching myself to speak greek fluently and Japanese well enough to hold a conversation. My ability to remember choreography was good and I understood drachma and yen currencies.\n\nWhen I came home I got myself a mortgage and ran a house and wondered what the hell was I going to do since I was NOT AN ACADEMIC!!!! Being told this through all of my schooling made me feel like a failure without much hope in many respects, like I was not intelligent, that I had less value to offer and that I should \'make do\' relying on others to help me make decisions. My mathematical skills, in particular, or lack of them, still to this day make me extremely uncomfortable - even with a calculator!!\n\nWhat an unnecessary pressure it has been!!\n\nSince I have come to realise that ALOT of US are \'non academic\'. My \'luck\' of meeting someone who believed in my abilities (long before I did) gave rise to opportunities I had never ever dreamed I was capable of entering into!\n\nOK don\'t worry I am not about to harp on about The Education System, well not too much but there is a point......bear with me!\n\nThe point I want to make is I am the same as MANY, if not MOST, of YOU!!\n\nEven now the idea of sitting my theory assessment for my EPI S&amp;C qualification is making me say to myself....\"pah I dont need the quaification, just do the practical stuff\"...\n\n...because I HATE THEORY EXAMS! They make me SO uncomfortable that I simply want to avoid them! The concept of PROVING my intelligence through a medium I struggle with makes me fear that feeling of FAILURE since it just reminds me of what I have been told I lack!\n\nYet I teach MY leaners that failure is a good thing, something we should embrace since it is when we adjust, stretch our knowledge, correct ourselves, research and learn at a deeper level.\n\nPractical demonstrations are something I have no problem with but THEORY makes me feel really dumb all over again and I am conditioned to feel fear of failure before I even see the questions!!\n\nFEAR is only a thought in your head, nothing has happened, it is simply when we relive the feeling of failing and being told...\"you are not an academic are you\"...  like it\'s shameful!\n\nSo much pressure and yet I could prove my INTELLIGENCE or TALENTS in other ways!\n\nAnyway after watching him on a TED talk, I bought Ken Robinson\'s book\n\n\"The Element - How Finding Your Passion Changes Everything\"\n\nRobinson describes \'The Element\' as the place where the things we love to do and the things we are good at come together.\n\nWOWZERS! This guy is AMAZING!\n\nHe not only made me realise WHY I have been made to feel like I am not bright but he also showed me that not only am I NOT unintelligent, he helped me understand what INTELLIGENCE actually is and also what is, or should be, important.\n\nThere are many forms of intelligence, including academic intelligence BUT also\n\nARTISTIC intelligence, EMOTIONAL intelligence\n\nRobinson makes statements like...\n\n“How intelligent are you…? whats wrong with this question? we take the definition of intelligence for granted..”\n\n“Great education depends on great teaching”\n\n“Understand the conditions under which human talents flourish or fade…”\n\nHis ideas, explanations confirmed to me that I AM INTELLIGENT after all, that many of us are made to feel that we are lacking intelligence when we are assessed through certain mediums. This is why we have developed a broader, and in my opinion fairer, assessment process for our learners. One where we work WITH you to allow YOU to become autonomous in your own educational development so that you continue to grow beyond our academy.\n\nConsider how YOU feel about YOUR education experiences and how YOUR teachers, tutors, trainers made YOU feel?\n\nWould you like to experience an inclusive classroom?\n\nWould you like to find YOUR medium for demonstrating YOUR intelligence?\n\nWould you like to have your talents encouraged to flourish?\n\nWould you like to experience great teaching?\n\nBiomechanics Education Ltd is proud to offer all its learners a positive learning experience with full support bespoke to your needs.\n\n<a href=\"https://www.biomechanicseducation.com\">READ MORE ABOUT THE ACADEMY HERE</a>','Education Is Rubbish!','','inherit','closed','closed','','1128-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1128,'https://biomechanicseducation.com/?p=38882',0,'revision','',0),(38883,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Tom Waldron is, in my opinion, an up and coming star in our industry.\n\nHaving been lucky enough to experience his gorgeous open personality in our learning environment I have thoroughly enjoyed his questions and thoughts into human movement. He has been such a joy to have around that I wanted YOU to share the experience of his knowledge combined with a quality of character that is not often found in our industry.\n\nSo on <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">Saturday 8th October at Loughborough University</a> 9:00-6:00pm Tom, along with is college and fellow Franklin Method practitioner Rachel, will be presenting at The Movement Convention.\n\nHere he gives a hint at what they will be delivering for your benefit, an insight into what is becoming a powerful tool to use with your clients...dynamic imagery.\n\nThe Franklin Method uses dynamic imagery, anatomical embodiment and educational skills to create lasting positive change in your body and mind. In this practical class we\'ll be exploring the intrinsic biomechanics of the shoulder girdle. Discovering that through imagery techniques and touch, we can improve the function of the shoulder girdle. Increasing flexibility, co-ordination and strength by strengthening the mind body connection. In the Franklin Method we say \'embodying function improves function\'\n\nIn this workshop you will learn new and fun techniques to improve the mechanics of your shoulder girdle. Perfect for athletes who are constantly looking for better ways to train or for those who simply want to have a better experience of their shoulders in daily life.\n\nNot got your seat yet?\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">OMG CLICK HERE QUICK!!!</a>','The Franklin Method','','inherit','closed','closed','','1124-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1124,'https://biomechanicseducation.com/?p=38883',0,'revision','',0),(38884,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','But You Misunderstand Me…\n\nOne of the hardest things about marketing a unique practical skill is promoting what you do in text. This is why I do a lot of videos but still it won’t give you ALL of the methods, ideas and ethos that we deliver during our training because that would, well…give it away!!\n\nThis does however leave us open to being challenged about the content we deliver and what we also endeavour to communicate during our workshops.\n\nIn one respect I don’t care what the trolls say because business is doing very well thank you and we are empowering thousands of professionals to improve the quality of life of their clients (see testimonials) while increasing their confidence (and income) as practitioners.\n\nBUT\n\n...on the other hand the trolls are actually aiding the QUALITY of our marketing and HOW we communicate what we do by challenging us which is, in fact, increasing our sales and getting even more bums on seats.\n\nSo trolls, we thank you!!!\n\nThe most important thing for us about business, and our partnerships and collaborations, is integrity. This is something my mentor and the founder of the programmes we deliver, Martin Haines, taught me in the early stages of our business relationship and we have also maintained between us ever since.\n\nThat means not to ‘bite’ to the haters and also to stick to your morals and ethos without letting them get to you negatively.\n\nIt means I sleep at night since the methods of maintaining integrity allow me to stick to what I deliver but also to be transparent enough that I admit ideas, concepts and language is likely to change with development of new evidence and information over time.\n\nThis also crosses over into the partnerships we have with other industry leaders like Ben Coomber and Brendan Chaplin, who have experienced similar \'trolling\' through social media.\n\nBUT\n\nThese superb professionals maintain their integrity through openly discussing them.\n\nI have ultimate respect for the strength of character Ben Coomber has demonstrated publicly in super honest videos showing his transparent nature that his ideas can also change with time and with new evidence and experience.\n\nIn doing so I would trust him over someone who uses aggressive methods of communication in an attempt to impress others, undermine the competition and even slating old methods that they probably used themselves without mention of it!\n\nExpanding, growing and no fear of admitting being wrong, just honest people trying to help others to move better feel stronger and eat healthier\n\nWhat’s wrong with that, eh???\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" rel=\"noopener\"><strong>Come &amp; meet me, Martin, Ben AND Brendan amongst others </strong></a>\n\n<strong>Saturday 8th October 9-6pm £140\nThe Movement Convention\nLoughborough University</strong>\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" rel=\"noopener\">Hurry though this is an intimate event</a>!!!','Thank You Trolls!','','inherit','closed','closed','','1118-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1118,'https://biomechanicseducation.com/?p=38884',0,'revision','',0),(38885,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Now I KNOW you know I LOVE my job but I believe in sharing moments of joy where possible and so I wanted to share the joy of one of my learners with you that brought ME joy this year!\n\nI received this fantastic message from Bruce;\n\n<em>\"Hi Rachel </em>\n\n<em>I just wanted to thank you for all your help.</em>\n\n<em>The Biomechanics Coach™ workshop series has really blown me away and over the last couple of weeks two things have happened that have really boosted my confidence. </em>\n\n<em>The first was sitting in the first session of my level 4 sports massage class while everyone there was soooo much more experienced than me, and way more qualified, but I found myself actually educating the others on how the body works as an integrated system. I actually felt like I belonged and could contribute to the class. </em>\n\n<em>Yesterday I met up with a friend who has been struggling with lower back pain and recurring leg and knee injuries. She had been seeing an osteopath for 18 months who had identified a leg length discrepancy through an imbalance of the hip. Anyway she was going every few weeks for them to \'put the hip back\'. 8 weeks ago when I did a \'practise\' screen I gave her the 4 sign exercise to do. I went to do a full screen last night as she is going to be one of my case studies. It turns out she has not had any issues at all with leg, knee or back and her LLD had completely disappeared. The Downing\'s Sign pelvic function screen had massively improved from before. That was the first time I\'ve seen the long term benefits of what we do first hand and it blew me away! Anyway hope this fits as a testimonial as I am proper buzzing over it</em><em> </em><em>&#x1f600;</em><em> </em><em>Thanks again, Bruce.\"</em>\n\nSo may I suggest you don\'t put it off anymore, listen to Bruce\'s words, take his word for it not mine and take this opportunity to grab one of the last remaining seats on our Pelvic Biomechanics workshop Aug 11/12 in London.\n\nLove Your Work!!\n\n<a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics-2/\">BOOK HERE</a>','Felt Like I Belonged','','inherit','closed','closed','','1114-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1114,'https://biomechanicseducation.com/?p=38885',0,'revision','',0),(38886,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','FINALLY… (I am actually confident that this is in fact NOT the last mention of the squat topic)\n\nAll of the research studies I have read over the years, and even more recently, are deemed valid, reliable and sound in evidence terms in that they give the standard detail required about their subjects start point (i.e. age, sex, ability). My question to this is that without a common ‘biomechanical’ start point or measurement then is all of this research flawed?\n\nNone cited details of a commonality in intrinsic biomechanical set up of the individuals taking part. There is no evidence of biomechanical screening for pelvic function, neural tension, muscle spasm, foot function and joint mobility prior to the research or, in fact, as part of the research. Therefore we could argue that the results are likely to be questionable, as while in some instances individuals have been deemed ‘healthy’ which <em>suggests</em> the same starting point, each participant\'s biomechanical set up will have affected the performance results differently according to that individual\'s intrinsic biomechanics.\n\nNow I appreciate that can be argued for all factors relating to physical analysis research projects. Height, weight, medical history, genetics, prior training experience etc… but when performing a research project looking into the effects on internal structures during movement this is what makes finding valid and reliable evidence challenging. So while we can surmise a certain degree of information from these many research papers, just how valid and reliable are they?\n\nHaving been involved as a director of an education company I recognise that we are faced with this challenge on a daily basis and therefore feel very passionate about making as much evidence as valid and reliable as possible for analysis.\n\n<strong>How does intrinsic biomechanical dysfunction affect the squat you perform and what does this mean?</strong>\n\nDue to our modern lifestyles we sit at desks, drive for hours, perform repetitive movements and perform tasks we were not actually designed to do. What this means is the body has to compensate somehow and has attempted to evolve in some way, the result is that the compensations are causing problems. The 3 systems (nerve, muscle and skeletal) typically compensate for dysfunction in each other, such as; muscle function being affected by protective spasm. Prolonged muscle spasm can cause muscle fibrosis, which may enable the body to preserve energy by not having the whole muscle in spasm, thus creating tension in other muscles along the nerve’s pathway and compromise their function as they attempt to lengthen during activity.\n\nResearch tells us that 60% of biomechanical dysfunction in the knee comes from the pelvis. So having your hips muscles in this protective spasm can commonly result in a rotated pelvis that can create a leg length difference (LLD), for example. What I would now like to explain is what happens mechanically during a squat when you have a LLD as just <strong><em>one example</em></strong> of how the body would need to compensate to allow the body to perform this movement.\n\nThe way the pelvis works is to rotate forwards and backwards on either side alternately and independently when you walk. For example when your right leg moves forwards the right side of your pelvis rotates backwards. Then as your leg moves through gait it ends up behind you and your pelvis that side will rotate forwards. It can be at any point during this action of the hip extension and flexion (during gait or any other activity) that the muscles can become ‘stuck’ or sub clinically go into a protective spasm. The theory is that if it is during hip flexion, the leg on that side can appear shorter when measured next to the other one and vice versa. Often both hips can become ‘stuck’ leaving you with a twist to both sides. More often than not we are totally unaware of this as it can cause no discomfort directly from this type of spasm, However…\n\n…Several things could happen…\n\nThe femur or thigh on the longer leg could rotate inwards to allow for the extra length meaning the knee/s has a tendency to turn in during the squat\n\nThis means the knee of the longer leg will be under more stress on the inside/medial ligaments. They could become stretched, weaker and damaged over time.\n\nThe shin or lower leg could also rotate inwards adding to this problem from below the knee joint as well as above.\n\nThe foot could pronate excessively and roll inwards leaving the squat unstable and increasingly less stable the lower you go in depth.\n\nWhen standing, the side of the pelvis with the longer leg may appear higher than the opposite side resulting in scoliosis or a curvature of the spine. This can leave you with a ‘hinge’ in the back and weaker spots between facet joints during the squat risking damage or wear and tear. The facet joints job is to protect your discs and so it is vital we do not put them at risk.\n\nThe result of this spinal curve, known as ‘functional’ scoliosis, means local muscle spasm and loss of spinal function and mobility during the squat. If you do not have full mobility and a level pelvis, then add 100kg of compressive load on top and then squat you will be restricted in depth to maintain good, safe form intrinsically.\n\nLoss of spinal mobility translates directly into the upper body and creates tension through the musculature of the shoulder and neck meaning there can be difficulties in bar positioning, particularly with low bar or front squats. These problems are likely to be asymmetrical too.\n\nIf you lose full shoulder capacity then problems can arise in the rotator cuff, elbows and even the wrists\n\nFinally just as an aside; a common reason for an inability to squat to a preferred or lower depth without passing your ‘break point’ (see The Squat Part 2/6) is poor thoracic extension capabilities caused by pec minor spasm. Yes, release the chest and you could, like I did, find you can squat lower. Mike Boyle &amp; Shirley Sahrmann are both advocates of developing thoracic mobility (<em>A joint by joint approach</em> Mike Boyle &amp; <em>Diagnosis &amp; Treatment of Movement Impaired Syndromes </em>Shirley Sahrmann).\n\nEach of these would, over time, be likely to result in discomfort, Repetitive Strain Injury (RSI) type symptoms and/or energy leaks while putting the structures at risk of an injury. So if you had pain in any of the above mentioned areas it is vital to understand that the site of discomfort or pain is not necessarily where the problem is coming from.  Each of the examples given above are as a result of some tiny muscles in the hip going into a <strong>sub clinical</strong>(asymptomatic) protective spasm. This is one of the reasons many are losing faith in the medical world. Medics and therapists are trained, and skilled up, to treat the site of pain. While some therapists do look for and address the cause of pain, it is common for this not to be done. This means that without addressing where it came from the symptoms can return and this is where you get recurring injuries and niggles that some professionals can be scratching their head over!\n\nRemember that this is just an example, there are many more ways the body can compensate for what YOU do during your squat, with your body type, your medical history, your genetics and your biomechanical set up.\n\nThe most important thing to remember if you do suffer low grade, non-specific discomfort, pain, recurring niggles or loss of performance when you squat it could have come from anywhere! Treating the site of pain may not be a long term solution. If it comes back you have not addressed the root cause and ultimately you need to try something else!\n\nSo when you have a question about your squat technique, the depth you should go to, the type of squat you should do, the position of your spine during the squat, consider all of the things that could be affecting it because interestingly <strong>your foot could be causing your shoulder pain!!</strong>\n\nDuring the writing of this article I improved my own break point &amp; technique through releasing pec minor and increasing my thoracic extension mobility……☺ so now bear with me while I start to add some weight to the bar!\n\nHAPPY SQUATTING!!\n\n<strong>Do you want to start improving your squat?\nDo you want to start improving your clients\' squat?\nDo you want to start with improving movement ability at the pelvis?</strong>\n\n<a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics-2/\" target=\"_blank\" rel=\"noopener\">CLICK HERE...</a>\n\n&nbsp;\n\n<strong>References</strong>\n\nCaterisano et al (2002) <em>The effects of the back squat depth on EMG activity of 4 superficial hip &amp; thigh muscles</em>\n\nCroisier et al (2008) <em>Strength imbalances &amp; prevention of hamstring injury in professional football players</em>\n\nColado et al (2009) <em>Technique &amp; safety aspects of resistance exercises: A systematic review of the literature</em>\n\nEscamilla et al (1998) <em>Biomechanics of the knee during closed kinetic chain &amp; open kinetic exercises</em>\n\nEscamilla.R.F (2001) <em>Knee biomechanics of the dynamic squat exercise</em>\n\nEscamilla et al (2001) <em>Effects of technique variations on knee biomechanics during the squat &amp; leg press</em>\n\nEsola et al (1996) <em>Analysis of lumbar spine &amp; hip motion during forward bending in subjects with &amp; without a history of low back pain</em>\n\nFortenbaugh.D et al (date unkown) <em>The effects if weight lifting shoes on squat kinematics</em>\n\nFry et al (2003) <em>Effects of knee position in hip and knee torques during the barbell squat</em>\n\nHewett et al (2001) <em>Rationale &amp; clinical techniques for ACL injury prevention among female athletes</em>\n\nGullett et al (2009) <em>A biomechanical comparison of back &amp; front squats in healthy trained individuals</em>\n\nIsear et al (1997) <em>EMG analysis of lower leg extremity muscle recruitment patterns during an unloaded squat</em>\n\nMcBride et al (2006) <em>Isometric squat force output &amp; muscle activity in stable &amp; unstable conditions</em>\n\nMcCaw et al (1991) <em>Biomechanical implications of a mild leg length discrepancy</em>\n\nMcCaw.S, Melrose.D.R (1998) <em>Stance width &amp; bar load effects on leg muscle activity during parallel squat</em>\n\nMcCurdy.K, Langford.G (2005) <em>Comparison of unilateral squat strength between the dominant &amp; non-dominant leg in men &amp; women</em>\n\nMcGill et al (1996) <em>Appropriate placed surface EMG electrodes reflect deep muscle activity (psoas, QL, abdominal wall) un lumbar spine</em>\n\nMcGill et al (1996) <em>A revised anatomical model of the abdominal musculature of torso flexion efforts</em>\n\nMcGill et al (2000) <em>Changes in lumbar lordosis modify the role of extensor muscles</em>\n\nMcGill et al (2007) <em>Co-activation alters the linea versus non linea impression of EMG torque relationship of trunk muscles</em>\n\nMcGill et al (2009) <em>A comparison of ultrasound &amp; EMG measures of force of activation to examine the mechanics of abdominal wall contraction.</em>\n\nMcLean et al (2005) <em>Evaluation of a 2 dimensional analysis method as a screening &amp; evaluation tool for ACL injury</em>\n\nMurray et al (2001) <em>Pelvic femoral rhythm during unilateral hip flexion in standing</em>\n\nNelson et al (1995) <em>Relative lumbar &amp; pelvic motion during loaded spinal flexion/extension</em>\n\nNinos et al (1997) <em>Electromyographical analysis of the squat performed in self-selected lower extremity neutral rotation &amp; 30</em><em><sup>0</sup></em><em> of lower extremity turn out from the self-selected neutral position</em>\n\nSchoenfeld.B, Williams.M (date unknown) <em>Are deep squats a safe viable exercise?</em>\n\nSignorile et al (1995) <em>The effect of knee &amp; foot position on the electromyographical activity of the superficial quadriceps</em>\n\nVan Eijden et al (1987) <em>Forces acting on the patella during maximal voluntary contraction of the quadriceps femoris muscle at different knee flexion/extension angles</em>\n\nWilliams (1980) <em>Biomechanical factors in spinal injuries</em>\n\nWilke et al (1996) <em>A comparison of tibiofemoral joint forces &amp; electromyographical activity during open &amp; closed kinetic chain exercises</em>\n\nWretenburg et al (1996) <em>High &amp; low bar squatting techniques during weight training</em>\n\nWretenburg et al (1993) <em>Joint movements of force &amp; quadriceps muscle activity during the squat exercise</em>\n\nWytch (1991) <em>Biomechanics of foot &amp; ankle injuries</em>\n\nYu et al (2007) <em>Mechanisms of non contact ACL injuries</em>\n\nZernicke et all (1977) <em>Human patella tendon rupture</em>','The Squat Part 6/6 - The Conclusion & References','','inherit','closed','closed','','1108-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1108,'https://biomechanicseducation.com/?p=38886',0,'revision','',0),(38887,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','In fact it is my belief that ANYONE promising pain relief might be promising too much since ‘<em>YOU own YOUR pain’</em>, as Lorimer Moseley (&amp; Dave Butler) would say (Explain Pain).\n\nThe expectation of our clients has become pretty steep and as a result of this we then expect too much of ourselves. We start to believe it is our JOB to remove pain and yet it is not. WE are exercise professionals and therefore experts in exercise prescription. For those of you who are manual therapists this goes for you too! Offering the suggested promise of pain relief is a risky business. This might be shocking news for some readers so let me explain...\n\nNow it would be fair to say that prescribing some exercises can reduce, or even rid, someone of pain AND that using manual therapy techniques can do the same but this is why we are faced with this very problem.\n\nDue to the complexities and uncertainties surrounding the causes of pain it is often a dilemma to understand how it actually occurs and how to get rid of it with any absolute surety. This is not only a dilemma for US but also surgeons, practitioners and in fact any professional involved in human movement or therapy.\n\nHowever <em>selling </em>pain relief is SEXY and compelling for attracting a MASSIVE market of people walking around in pain these days. So when we are SOLD professional education that TEACHES us how to <em>remove pain</em>, we are going to be tempted to use this in our marketing, right?\n\nWRONG!\n\nNot YOU, nor I, nor anyone can PROMISE pain relief at least until we find the root cause and therein lies this problem again...\n\nWHAT CAUSES PAIN?\n\nEveryone has experienced it in some form, or knows someone who experienced it, and there are many ways we can feel it. The causes are still being researched and it is so individual and subjective that it would be difficult, probably impossible, to teach education programmes that PROMISE pain relief.\n\nSo the <u>expectation</u> does not match what we can <u>promise</u>.\n\nNow saying this doesn\'t mean we CANNOT reduce our clients\' pain because if you find the root cause then you will be better placed to intervene. It is finding the root cause that is a challenge.\n\nSOOOOOOOOOO what CAN we do?\n\nWell much of what we teach within our academy is about safe practice, duty of care, confident referral and enhanced inter-professional relationships. With more than one professional involved, more than one opinion, more than one skill set, more than one set of exercises and more than one expertise WE can TOGETHER provide more chance of finding the root cause through safe elimination of possibilities.\n\nHOW do <strong><u>WE</u></strong> do this?\n\nThrough the Intrinsic Biomechanics Association (IBA) membership and also our fantastic partnerships we are proud to be able to offer a huge amount of SUPPORT which includes FREE workshops, we introduce you to other professionals, share our skills, ideas, experience and expertise to bring all of our worlds together rather than attempt to do things alone thus providing more confident services nationwide.\n\n<em>\"No one has ever been successful alone.\" </em>\nRichard Branson\n\nThere is nothing I enjoy more than being in a room with a group of open-minded, honest, intelligent, multi-skilled professionals who are passionate about enjoying sharing their thoughts on helping people move better with less pain.\n\nNow something else I would like to say is this:\n\nIF we are able to do assessments of our clients\' movement using our knowledge of their history and anatomy, combined with what we understand about the way we <em>should</em> move AND from evidence based programmes that offer at least some chance of understanding WHY our clients move the way they do, well then we are in a better position to help, right?\n\nSo while Biomechanics Coaches™ CANNOT PROMISE pain relief, IF we do identify some areas that don’t move too well and then have experience and knowledge in how to empower our clients to move better, while taking advice from our peers then, well, we MIGHT, just MIGHT, enable THEM to REDUCE or even REMOVE THEIR pain. However in THIS environment the chances of it being more long lasting are increased AND the feeling of empowerment and success for the client is increased. This MUST only be a good thing, don’t you agree??\n\nWould YOU like to JOIN ME in the IBA and start to make a difference to a culture of inflated expectation to improve OUR duty of care, our clients\' experience and results through shared skills, networking, healthy open discussion with no judgement and of course A LOT of fun at the same time!!!??\n\nTo all fellow GEEKS of human movement and anatomy….\n\n<a href=\"https://www.biomechanicseducation.com/workshop/iba-workshops-2/\" target=\"_blank\" rel=\"noopener\"><strong>JOIN ME NOW</strong></a>','Sorry,  Biomechanics Coaches™ DON’T Promise Pain Relief!','','inherit','closed','closed','','1101-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1101,'https://biomechanicseducation.com/?p=38887',0,'revision','',0),(38888,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Not only do we have nutrition guru Ben Coomber but also leading strength &amp; conditioning master &amp; true industry leader, Brendan Chaplin, is back at TMC16, Saturday 8th October Loughborough University!\n\nThe \'Power of 3\' is a term Ben, Brendan &amp; I have been using for our ideas of future work together and, while we each already feel strongly about our partnerships, this is where it really begins!\n\nPreviously Head of Performance at Leeds Met Uni, Brendan now delivers the first &amp; only L4 S&amp;C qualification in our industry!!\n\nSo if you\'re a PT, passionate about strength training your clients and conditioning their performance or maybe you want to stay ahead of the game, simply find out what S&amp;C is all about and actually meet one of the leading experts .... Well then come and listen to Brendan.\n\nI guarantee you will not be disappointed!\n\nWith over half the seats now gone at this one day annual event, we predict a sell out with these 2 fantastic industry leaders headlining!!\nBut there\'s so much more too!\n\nLOOK......\n\n<strong>More AMAZING presentations\nFREE FABulous juice bar\nFREE awesome coffee\nFREE wonderful filtered water\nFANTASTIC Goodie bag\nFree un-beige healthy lunch\nGREAT Raffle prizes </strong>\n\nAs you know I\'m already super excited and it\'s only July!\n<strong>But I don\'t want any of you to miss out so ...</strong>\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" rel=\"nofollow noopener\">BOOK HERE NOW</a>','A True Industry Leader','','inherit','closed','closed','','1098-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1098,'https://biomechanicseducation.com/?p=38888',0,'revision','',0),(38889,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Cat Booker is a fantastic Biomechanics Coach™, amongst other things, and has been contributing to the improved performance of skiers. Here she shares her experiences.....\n\n<strong>Ski Biomechanics - Race Training:</strong>\n\n<em>I am Cat Booker, and I work as a personal trainer and advanced Biomechanics Coach</em>™<em>, as well as being a fitness presenter and master trainer for some U.K. and International brands.  </em>\n\n<em>Last November I spent one week working with top-level BASI Ski Trainers who work in Espace Killy, France.  How did I get the gig?  I have known one of the Directors, very talented skier and trainer Martin Jeffers, for 14 years having met him when I was working in the Three Valleys, France as a Sports Massage Therapist and Chalet Host. We have been firm friends since and followed each others progression in our careers.  So there is some background.</em>\n\n<em>Skiing and me go back a long way, and I have been very lucky to ski with some fabulous ski coaches and someone from Team GB. Anyway, let\'s move on from the name dropping, I love skiing.  I have always wanted to get involved in ski training in some way and this bright idea of mine and Martin\'s just took off.  Now, Martin runs BASS (British Association of Skiers &amp; Boarders).</em>\n\n<strong>What Was The Week About?</strong>\n\n<em>The objective of the week was to work with the trainers who were putting the ski racers through daily training, to identify technique issues that the ski trainers were looking at from an extrinsic point of view.  As intrinsic biomechanics study is my background, coupled with my extrinsic, functional assessment experience, we were looking to identify ways of improving the trainees movement to be better racers, technically, and to get faster!</em>\n\n<em><span style=\"color: #000000;\">\"To be honest, with what Cat was noticing in the trainees individually and the functional tests also helped the guys see the difference in their fitness compared to others, and some light-bulbs were going off I can tell you. This type of assisted training from another coach off the hill is unheard of in these training camps at the moment, and we were certainly the talk of the training piste that week.  The funny thing is the lads were expecting to be smashed by a physical trainer; but it was quite the opposite and was amazing\".  </span></em>Martin Jeffers - Trainer and Director of BASS MVT.\n\n<strong>Who were the trainees?</strong>\n\n<em>The all male group of trainees varied from the age of 19 years to the mid-thirties, and their goals vary within the industry, but essentially they had exams to pass, and one of which is bespoke to being able to teach in France, the Super G - speed test.</em>\n\n<strong>What happened during the race week I was there?</strong>\n\n<em>I could wax-lyrical about the great days on the piste watching the training, and the racing, including their final day of each training week, which always finishes with a gated slalom race experience. </em>\n\n<em>This means they all have to warm-up, mentally prepare, wear the race suits, have prepped their kit, food, and their study of the course before they set off for three goes and a best time</em>.\n\n<em>Every morning was an early start and all coaches got the first train through the mountain to the glacier. The gates would be skilfully laid out on the allocated pistes, after the queue for the ticket booking which the trainer had to secure the night before came through.</em>\n\n<em>The gates were left overnight on the mountain, secured in bundles in allotted spots. The race trainees would be up the hill about an hour later, ready to do warm-up runs, have skills and drills training, and then the would observe the course by snow-ploughing nearby the gates and chatting with the trainers about their focus for the day, and everyone was filmed.</em>\n\n<em>A picnic lunch (to keep the budget down for them) and then a 2pm departure as it tends to get a bit warm and everyone has trained enough by then.  This is where I came in.</em>\n\n<strong>Where did biomechanics and getting functional fit in?</strong>\n\n<em>A week is not a long time with a group size of 12, but it is enough.  </em>\n\n<em>There were trainee worksheets, pre-planned intrinsic assessments, and extrinsic functional tests to study.  The group assessments included partner work and group analysis where the guys would go through the intrinsic biomechanics protocol, as well as be filmed and observed jumping and on landing, including Mike Grice inspired work after attending the Convention last October</em>.\n\n<em>Thank you Mike!</em>\n\n<em>The agenda for the week started with their assessments, and everyone\'s case study sheets were updated, discussed with the trainers, and their notes incorporated in terms of what the racers had to achieve, and I was there to suggest how dysfunction could be holding them back. I took them through mobility and anti-spasm exercises, and some of the instant results were incredible.  We focused in small sub-groups on specific areas where the guys had similar needs, like tight posterior function, weaker core, restricted squat depth, yes I hear you cry, and this is a skiing demographic.</em>\n\n<em>The fact is some of the fellas were very fit, and invariably they were better in all the tests. However they had some dysfunction, but their range of movement was generally better. So we had a group who need to improve on becoming better as racers, and they were the same people as the ones who were less fit, mobile, or balanced.</em>\n\n<strong>What stood out more than the sub-groups and fitness levels?</strong>\n\n<em>As a group, their back rotation was really impressive. The skiers need the ability to move from the ground up and separate movement in order to move the legs underneath and achieve the appropriate angulation for the speed, style, and slope.  </em>\n\n<em>It was noticeable that the guys with better hamstring function and strength in relation to the quadriceps were generally better at squats, lunges, and incorporating the core posture technique.  Tests like the Nordic curl, leg dominance, standing overhead squats, step off, hop-test, and knee flexion range helped with this area.</em>\n\n<em>The other factor was neutral spine. For some this wasn\'t a posture they were used to, and the biomechanics core function tests as well as their position in movement proved this to be so.  Even in one week techniques and mind-sets started to change.</em>\n\n<em>As well as the assessments and exercise programs given for the week, we had workshops on Yoga and Pilates exercises for the skiers. This also encompassed myofascial and triggerpoint sessions which was another point of the week to help the guys learn how to assist their muscles in function and recovery.  Some of the group had the GRID rollers, but it was very new to most. </em>\n\n<em>As well as the assessments, anti-spasm workshop, functional assessments, release and core work, we had a circuit training format, of which different variants were left with them for training weeks to follow. They were coached in core, leg and stamina based circuits which gave them an idea of where they needed to improve fitness, which was really supportive to the BASS trainers as well, who joined in from time to time.  </em>\n\n<em>By the end of the week, each trainer had a one-to-one feedback based on their development on and off the piste in the sports centre in Tignes where we all stayed and trained.</em>\n\n<em>The success of the week was giving the trainees a better understanding of movement (particularly in their sport) and some ideas on where to focus to improve all of this for their end goal which is to pass their Speed Test (which is expensive, infrequent and their passport to having a career and life in the mountains of France).</em>\n\n<em>I love skiing but this is the one time I was on the mountain and spent the least time skiing in my life.  It was fascinating listening to the coaches, and how it synchronised with my expertise to deliver results and a new outlook on training for some potentially inspiring and dedicated British ski coaches.</em>\n\n______________\n\nCat Booker\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\" target=\"_blank\" rel=\"noopener\">CLICK HERE</a> to find out how YOU can become a Biomechanics Coach™.','You Ski?','','inherit','closed','closed','','1093-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1093,'https://biomechanicseducation.com/?p=38889',0,'revision','',0),(38890,0,'2024-07-16 11:26:36','2024-07-16 11:26:36','Mark is not only a Specialist level Biomechanics Coach™ but also one of our UK leading Education Provider, Master Trainers.\n\nThis nomination is in recognition of his outstanding professionalism and superb delivery of our education programmes in Liverpool!\n\nHere he shares his story...\n\nBiography in Brief\n\nI started my fitness career after leaving the military in 2007; I instantly loved it and threw myself right into it, which put me in a position to open a studio in 2009. Since then I have worked from the studio as a Personal Trainer and Biomechanics Coach™. At the studio we follow my method of MOVE-EAT-TRAIN SUSTAIN and the biomechanics assessments are pretty much the first thing that every new client will do, Biomechanics Coaching™ underpins each client’s training right from the first session.  As well as the work from the studio and within Merseycare NHS Trust creating and delivering physical health projects for a wide variety of mental health units and the local community.\n\nWhat made you choose Biomechanics Coaching™?\n\nI had done a lot of educational courses and research to try and improve how I trained and helped my client’s before choosing Biomechanics Coaching™. I had recognised that pretty much every client that came to me were not “physiologically perfect” and I could see how this would influence their movement and in turn, either had or could lead, to issues and injuries. I found that everything that I was learning could be applied with clients at the appropriate times but there was nothing that just pulled everything together as I was finding unanswered “gaps” in everything that I was learning, which I started to find frustrating. I came across an advert for the Biomechanics Diploma ™ and after a couple of conversations with Rachel I was intrigued. After the first 10 minutes of my first workshop I knew I was in the right place!\n\nWhat do you specialise in outside of Biomechanics Coaching™?\n\nTo my clients I’m a Personal Trainer but where I specialise is coaching lifestyle changes to improve quality of life though physical activity, which I realise, is what we all do to some degree! I just make it clear to my clients that whatever their goals are that I am there to facilitate the changes no matter how big or small and only by doing that will they achieve their personal goals and sustain them. Because of my work at studio and in the NHS I have an extremely diverse client group, so improving someones quality of life through physical activity can range from engaging with people for weeks and sometimes months just to get them to even considering exercising, to training people for expeditions and marathons. The outcome is relative to the client but being part of their journey and seeing how far they have come, to me, is thrilling!\n\nWhere would you like to see yourself ten years from now?\n\nI’d like to be a more involved in the education and career development of Biomechanics Coaches™ and other fitness professionals. Along with that I’d like to develop a hub for a network of Biomechanics Coaches™ and Trainers here in the North West.\n\nWhat would your advice be to anyone thinking of becoming a Biomechanics Coach™?\n\nSimply.. just do it!\n\nMy experience is that it’s a real “through the looking glass” moment once you start with Biomechanics Education and often it will challenge you, and possibly some of your long held beliefs, but your come out of it the other end on a completely other level as a fitness professional. So do it, keep you mind open and your notepad and pencil handy!\n\nOn your journey to where you are now what have been you achievements?\n\nPersonal\n\n(Cheesy comment alert)… The achievement of just being happy! Often we are dealt a hand in life that you either didn’t want or expect, it’s what you make of it that matters, if you can still smile along the way then you achieved a lot.\n\nSporting\n\nThe one that stands out the most was an ultra-marathon; it was to commemorate the 65th anniversary of the operation to capture Pegasus Bridge. We ran the route that the gliders took from RAF Tarrant Rushton in Dorset to Bénouville in Normandy. It took me 14 hours, it was an amazing event and  we managed to raise funds for a memorial to be placed there remembering every member of the unit involved in the operation, of which there were only 4 still alive.\n\nCareer Highs\n\nI trained a team to run 5 marathons in five days, none of them would of described themselves as runners prior to taking this on, in fact on the first team run (3 miles) only 3 of the 8 managed to get all of the way around without walking. I spent 10 months training the team and by the end of the training and the event they had not only changed physically but most had changed in other ways that had further reaching positive impact on their lives, we are also became and still are really good friends.\n\nTell us a secret or something interesting about you that not many people know about?\n\nMost mornings I start the day with a cold shower. I started doing this a few months before an expedition to Greenland, I felt that my life was getting a little bit too comfortable and I wanted to introduce so minor hardships, this was one of them and it stuck. I would recommend giving it a try, you do actually get sort of used to it after a few days and if you need to be sharp for an early morning meeting this defiantly gets you into focus quickly!\n\nBrief Case Study\n\nI was working with a 28 year old female client who was a teacher. Due to pain in her knees she had gone from running and exercising 4-5 times a week to now struggling to get though a full day at work due to her job requiring her to be standing most of the day, this was having a major impact on her quality of life. Following an assessment and with the prescription of some anti-spasm exercises she had reported a significant reduction in the pain in her knees within 4 weeks while in work. Within 3 months I had her back in the gym following an exercise programme, which was her main goal.\n\nDO YOU WANT TO LEARN WITH MARK?\n\nWebsite: <a href=\"http://banhus.co.uk/classes/biomechanics-trainer-workshop/\">www.banhus.co.uk</a>\n\nContact: mark@banhus.co.uk','Mark Blower is Biomechanics Coach™ of the Month July!','','inherit','closed','closed','','1087-revision-v1','','','2024-07-16 11:26:36','2024-07-16 11:26:36','',1087,'https://biomechanicseducation.com/?p=38890',0,'revision','',0),(38891,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','My friend Steve Whittle has been a great contact in the industry for many years now and more recently as a client.\n\nAs he was connected to the PureGym group he recently asked if I would do him a favour and introduce our education programme to 4 x East Midlands PureGym PT teams.\n\nThe mini workshop attracted 35 of the self employed PT’s to leave their paying clients for a couple of hours to step into the learning environment with me and my team and see what they could pick up and learn to further help their clients movement ability and recurring injuries.\n\nSo I called in a couple of the team, Chris Kitson &amp; Mairi Taylor. Both long term Biomechanics Coaches™ with years of experience in teaching and presenting. Between us we were able to facilitate this massive group of inquisitive exercise professionals.\n\nWe discussed A&amp;P and muscle spasm with Kyle, Sam and AJ. Ricardo corrected my extrinsic biomechanics and Mia let us assess her length length. Jay and Greg tried the muscle release techniques and in fact everyone took part in some way which made the session great fun and super dynamic!\n\nThe skills we introduced them to are ones they would be able to use immediately when they returned to their clubs, to impress and attract new clients and also to understand their present clients movement capacity better.\n\nAfter a conversation with manager, Josh, we are now really excited to be putting plans into place for an PureGym In-House Fast Track Biomechanics Coach™ Diploma.\n\nWhat a great group of people though and what a joy to be able to call days like this my job!!\n\nWould you like to host a mini workshop like this one for your team?\n\nEmail me now; rachel@biomechanicseducation.com','PureGym PureFun!','','inherit','closed','closed','','1083-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1083,'https://biomechanicseducation.com/?p=38891',0,'revision','',0),(38892,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','...is presenting at <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention Saturday 8th October</a>??\n\nYEP I sure did my Juicy Friends!!\n\nSo just incase you have been hiding under a rock or taking time out from social media and hadn\'t heard...\n\n\"BEN COOMBER is presenting at <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention Saturday 8th October!!</a>\"\n\nSo you KNOW that I am excited about his presence and if you are still wondering WHY then you need to get your self booked in to one of the remaining seats to access time with this dude!\n\nSeriously this is deliberately an intimate event to allow you to get up close and personal with industry leaders like this very cool, smart (and handsome) young man.\n\nPersonally I have followed Ben\'s nutritional advice for a few years now and we have rubbed shoulders at events and both recognised that our communities are the same people.\n\nYOU!\n\nFor this reason we are starting to form a close collaboration now to look after YOU even more! The idea being that we recognise that value BOTH of our academy\'s can bring to trainers, coaches and athletes like YOU!\n\nSo this <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">Saturday 8th October </a>at the stunning Loughborough University I have managed to book YOU an hour of Ben\'s time so he can share some of his methods and ideas with all of you.\n\nStill not booked your seat yet????\n\nC\'MON or you will kick yourself because once all of those seats have gone, they are gone!\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">BOOK HERE NOW</a>\n\nThis is the first in a series of Juicemail\'s coming your way over the next few weeks that will be informing you all about each one of the 7 fantastic presenter\'s lined up for this amazing annual event.\n\nAND\n\nAll of the additional goodies INCLUDED in your ticket price as well as the CONTENT packed sessions...\n\nComplimentary Healthy Un-Beige Lunch\n\nAwesome Goodie Bag\n\nFABulous FREE Juicer with Mairi Taylor\n\nCaffeine Fans Coffee Bar with Sheryl McHale\n\nFine Filtered Water with Matty Grice\n\nStill not clicked...??\n\nBOOK HERE NOW\n\nP.S. Watch out for an superb article about dieting coming soon from one of Ben\'s team...Tom Bainbridge!\n\nBen Coomber is a performance nutritionist (BSc, ISSN) speaker and writer. Ben run’s Body Type Nutrition, an online nutrition coaching company that also runs a multi-level 2-20 month online nutrition course, the BTN Academy. Ben has the UK’s #1 rated health and fitness podcast on iTunes ‘Ben Coomber Radio’ with regular Q&amp;A’s and expert interviews. Connect with Ben over on Facebook, Twitter, YouTube, or Instagram.\n\nFor everything else visit: <a href=\"http://www.bencoomber.com\">http://www.bencoomber.com</a>\n\n&nbsp;','Did I Say Ben Coomber .....','','inherit','closed','closed','','1077-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1077,'https://biomechanicseducation.com/?p=38892',0,'revision','',0),(38893,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','Several years ago we had a young triathlete/PT along to one of our workshops. He then went on to do our sports massage course along with his wife, who was also a PT. Together they owned a small independent gym in Dronfield, Sheffield called <a href=\"http://www.woodlandsfitnesscentre.co.uk/corrective-exercise\">Woodlands Fitness Centre</a>.\n\nThen Matt Sanderson asked if we would deliver a private Biomechanics Coach™ Diploma for his entire team at his gym and so it all began with Pelvis Biomechanics in August 2014…\n\nThe 9 x strong team who are all PT’s, massage therapists and group ex instructors work together delivering a fluid system that really is second to none and, in my opinion, exactly how ALL gym facilities should run when it comes to the way they communicate with each other and also the way they deliver their services.\n\nWith pretty much everything included within the membership; compulsory biomechanics screening and 1:1 training from fully qualified staff with diverse skills that allow best duty of care to each member. The inter referral system really is of a high standard.\n\nEach member of the team specialises in either PT, group ex, nutrition or massage but ALL of them are now fully qualified Biomechanics Coaches™. The Biomechanics Coach™ model is what seems to have cemented their connection and was the missing link which has allowed an even smoother system of cross referral and communication.\n\nWhat has struck me most about this group is not only the bond and respect between them all but the quality and efficiency in their service to their members who receive the highest standards possible.\n\nTheir members really do come first.\n\nWith all of their case studies successfully completed they can now be recognised as the largest group of fully qualified Biomechanics Coaches™ working together under one roof in the UK.\n\nEach time I have visited their facility I have noticed more and more how they excel at what they do and how Matt has created possibly one of the best clubs in the UK. With organised workshops to educate members, exciting events to encourage members to create goals, a brand new display board each visit, iMoveFreely® classes, inductions, systemised training, exercise plans with bespoke prescription, online client monitoring system, every member known by name and this beautiful fluid system of communication between everyone that results in a confident team effort that is all about looking after members and each other.\n\nWhile this might be classed as a ‘small family run’ gym I still feel the core ethos Matt has developed is how ALL gyms should run their services and the proof is in the client retention and staff turnover.\n\nHaving delivered each workshop at Woodlands myself I have to say this was a real pleasure for me and then over the last few weeks reading their case studies confirmed the level of this group. The TEAM strength is what makes the difference and I can imagine how much job satisfaction it would bring to be a part of TEAM Woodlands!\n\nAre you faced with the challenge of bringing a team together?\n\nWould you like to know more about how to find the missing link for your team?\n\nDo you want to get ahead of the game at your facility?\n\nEmail rachel@biomechanicseducation.com\n\nor\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">READ MORE</a>','Largest Team of Qualified Biomechanics Coaches™ ','','inherit','closed','closed','','1072-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1072,'https://biomechanicseducation.com/?p=38893',0,'revision','',0),(38894,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','With over half the limited seats already gone for this years AWESOME <a href=\"https://www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/events/tmc16/\" rel=\"noopener\"><strong>\'Movement Convention\'</strong></a> at Loughborough University it is countdown time for grabbing the ones that are left!\n\nThe line up is complete and I can barely contain myself!\n\nCHECK THIS OUT…\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\" data-cke-saved-href=\"https://www.biomechanicseducation.com/events/tmc16/\"><strong>Saturday 8th October</strong></a><a href=\"https://www.biomechanicseducation.com/events/tmc16/\" data-cke-saved-href=\"https://www.biomechanicseducation.com/events/tmc16/\"> </a>\n\nIf it is not in yet PUT THIS DATE IN YOUR DIARY NOW….\n\nStarting with the controversial but very cool <strong>Ben Coomber </strong>of Body Type Nutrition, who has offered to come along and share some of his health and nutrition knowledge bombs with you all.\n\nHE’S BACK!! our good friend <strong>Brendan Chaplin</strong> was a debut TMC14 presenter. Brendan has literally set the industry on fire with the very first REPS L4 Strength &amp; Conditioning mentorship course.\n\n<strong>Mike Grice</strong><strong>, </strong>with his superb delivery skills as always, is going to be bringing some new evidence based ideas for us ALL to think about.\n\nThe very passionate, <strong>Mairi Taylor</strong>, will not only be offering her FABulous juice treats ALL day, she will also grab your attention in this session.\n\n<strong>Tom Waldron</strong> is one to watch! He is making waves in the industry educating us on visualisation techniques from the Franklin method.\n\nTHE fantastic BODY MECH, <strong>Fletch</strong>, is getting personal with his session…come and find out!\n\nMy own personal strength and conditioning coach, the BOSS <strong>Stephen Aish</strong>, will share his skills on mindset.\n\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" data-cke-saved-href=\"https://www.www.biomechanicseducation.com/events/tmc16/\" rel=\"noopener\">BOOK TICKETS HERE</a>\n\nWhat do you get for the ticket price of just £140?\n\nMinimum of 7 content packed sessions from industry leaders\n\nFREE healthy lunch\n\nFREE Goodie bag\n\nFREE FABulous juicebar all day with Mairi Taylor\n\nFREE Coffee with the lovely <b>Sheryl Mchale</b>\n\nFREE Filtered water with everyones buddy <b>Matt Grice</b>\n\nThe chance to win <b>Tim Drummond’s</b> new book - coming soon!\n\nAmazing networking opportunities to take you, who knows where!\n\nBUT WAIT….. ARE YOU a Biomechanics Coach™?\n\n..well there is even more in store for YOU guys!!\n\nLOOK…\n\n<strong>Friday 7th October</strong> 1:00-5:00pm\n\n(*Biomechanics Coaches™ ONLY &amp; as part of your <a href=\"https://www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/events/tmc16/\" rel=\"noopener\">TMC16 £140</a> ticket price)\n<strong>IBA Members all this for just £100\nINNER CIRCLE members all of this FREE </strong>\n*Open to those working towards their diploma\n\nYou cannot miss <strong>Chris Wright</strong> of <a href=\"http://www.level10living.co.uk\" data-cke-saved-href=\"http://www.level10living.co.uk\">www.level10living.co.uk</a> who will be teaching you how to earn more money as a Biomechanics Coach™ but for less hours!!\n\nThis fantastic young business/marketing guru has lived and breathed it and I am so excited to have him coming along to speak to you. He has been where you are but is now living the dream and has offered to share with you how he did it.\n\nAND\n\nYes the main man himself and founder, <strong>Martin Haines</strong>, has been reserved for a facilitation session of challenging tasks to stretch your Biomechanics Coaching™ imagination to another level!\n\nAND\n\nTo share the brand new evidence based foot screening system that will be updating your skill set to the very latest level.\n\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" data-cke-saved-href=\"https://www.www.biomechanicseducation.com/events/tmc16/\" rel=\"noopener\">BOOK TICKETS HERE</a>\n\nFinally if anyone would like to join us for dinner Friday 7th (at your own expense) please confirm in an email to <a href=\"mailto:rachel@biomechanicseducation.com\" data-cke-saved-href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>. More details coming soon.\n\nDo you plan to make a WEEKENDER of this event?\n\nWe have an allocation of 45 bedrooms on hold for you at <strong>Burleigh Court</strong> on the university campus so walking distance to all the sessions over the entire weekend.\n\n<strong>Double Exec for Sole Occupancy</strong> - £77 including VAT per room\n\n<strong>Double Exec for Double Occupancy</strong> - £87 including VAT per room\n\n<strong>Lodge for Sole Occupancy</strong> - £56 including VAT per room\n\nTo obtain these special TMC16 rates please use the reference number <strong>259233 call </strong>Sean Perkins on 01509 633091\n\nHave I said this already....?\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/events/tmc16/\" rel=\"noopener\">DONT MISS OUT BOOK NOW!</a>\n\n&nbsp;','Well I Could Literally Explode!','','inherit','closed','closed','','1067-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1067,'https://biomechanicseducation.com/?p=38894',0,'revision','',0),(38895,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','<b>Belt or no belt?</b>\n\nA brief one to discuss this commonly asked, often controversial, question.\n\nIt can be a confusing subject and I would suggest you do what you feel is right for you however in McGill’s book <i>‘Ultimate Back Fitness &amp; Performance’</i> he explains what some of his research demonstrated:\n\n1). <i>Those who have never had a previous back injury appear to have no additional protective benefit to wearing a belt\n2). Those who are injured while wearing a belt seem to risk a more severe injury\n3). Belts appear to give people the perception they can lift more and may enable them to lift more\n4). Belts appear to increase intra-abdominal pressure and blood pressure\n5). Belts appear to change the lifting styles of some people to either decrease loads on the spine or increase the loads on the spine\n6). But for athletes there is no question that belts add stiffness and assist to move more load</i>\n\nIn summary considering the pros and cons it would probably not be advisable for healthy amateur lifters to wear a belt during routine exercise. However the temporary use of belts may help some individuals return to \'normal\' lifting capabilities after injuries. Extreme athletic lifters use belts to move more weight in their sporting discipline NOT for enhanced health.\n\nMany will use a belt for one of these reasons\n\n•    They have seen others wearing them and assume it’s a good idea\n\n•    Their back is sore and they believe the belt will help\n\n•    They want to lift more and feel the belt will help achieve this\n\nNone of these reasons are consistent with what the literature states or for the aim of good health. If you want to lift a few more kilos then wear a belt BUT if you want to improve and \'groove\' your own motor programming strategy and a stable trunk, then it’s probably a good idea NOT to wear a belt.\n\n<b>COMING SOON! - The Squat Part 6 - The Conclusion</b> <b>&amp; References</b>\n\nDon\'t worry if you have only just joined the Juicemail you can find all the previous Squat Articles Parts 1-4 by following these links ....\n\n<a href=\"https://www.biomechanicseducation.com/the-squat-part-46/\">Part 4/6 The Foot </a>\n\n<a href=\"https://www.biomechanicseducation.com/the-squat-part-36-re-released-by-request/\">Part 3/6 The knee</a>\n<a href=\"https://www.biomechanicseducation.com/the-squat-part-26/\">Part 2/6 The Spine</a>\n<a href=\"https://www.biomechanicseducation.com/the-squat-part-1/\">Part 1/6 The Pelvis</a>','The Squat Part 5/6','','inherit','closed','closed','','1064-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1064,'https://biomechanicseducation.com/?p=38895',0,'revision','',0),(38896,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','Did you know stretching might be the worst thing you could do for a ‘short’ muscle?\n\n(Another past article for those who missed it and those who have asked for it!)\n\nEver heard of sub-clinical muscle spasm?\n\nNo me neither until I became a Biomechanics Coach™ and now I see 95% of my client base has sub-clinical spasm as oppose to what I previously would have assumed were \'tight\' muscles - how do I know? Ok bear with me I will get to that bit but first lets talk about what sub-clinical spasm is..\n\nLifestyle compensations\n\nWe have come from a lifestyle of being hunter gatherers but over the last 50 yrs we have seen the most dramatic evolution in our lifestyles to date with the advancements in technology\n\nOur bodies are trying to adapt to our changing lifestyles by putting muscles into different states to compensate for the fact we aren’t using them in the way we are have done in the past.\n\nEvidence suggest that our muscles are gradually going through different states of compensation prior to them actually becoming what we know as ‘tight’.\n\nWhat is it?\n\nSub-clinical spasm is the first state that more often than not we are completely unaware of. This state is a protective mechanism trying to look after a vulnerable joint, for any amount of reasons, and is easily addressed by performing an anti spasm exercise.\n\nIf unaddressed the muscle starts to become fibrotic and (research tells us about 40% of the muscle can become fibrotic) this can potentially also be addressed by using an anti spasm exercise.\n\nif still un-addressed the muscle will finally start to become ‘tight’ which is like a more ligamentous state and requires a more aggressive exercise like stretching or sports massage. The stretching debate is something I am reading around at the moment so when I have more to report I will write about that.\n\nSo you want to know what this anti-spasm exercise is now don’t you? Let me tell you its gold dust and a badly kept secret amongst all Biomechanics Coaches™, iMoveFreely® Instructor and their clients\n\nLess is more..?\n\nIf you consider that tightness requires more aggressive exercises like stretching or sports massage then it might be obvious that using a low grade 20% contraction just wont change it.\n\nSo all we need to do is identify which state the muscle is in to be able to safely address the compensation.\n\nThe problem with this is that this is virtually impossible even with EMG equipment, let alone without it.\n\nHow do I know..?\n\nThe most effective method would be to do a biomechanical assessment, perform the safest option of exercise (anti-spasm) then re-test. If there is a change you can safely assume the muscle is in spasm and so continue using this exercise. If after a couple of weeks of using the anti spasm nothing has changed then we can probably assume it needs a more aggressive technique to release it.\n\nIt is so simple anyone can do it!! It takes just 20% effort - (when do we ever do something with 20% eh?). Imagine a muscle in sub-clinical spasm is like a rope with knot in it and to stretch it could make it worse as it tries to hold on protecting the joint.\n\nClick here to see previous blog for a screen that you could use to pick this up\n\nHow to do it..?\n\nWhat does an anti-spasm look/feel like? It is a muscle contraction held at 20% effort for 20 seconds and evidence tells us if we do 4 repetitions, 4 x daily for a period of up to 6 weeks this can give the muscle the ability to fully contract and relax again.\n\nOf course this needs to be combined with addressing the reasons for being in this state as well (lifestyle) and some conditioning exercises (strength work) but its effect can work like magic on muscles you may have been stretching for weeks or even months and experiencing no change.\n\nWhere did it come from..?\n\nThe anti-spasm has been tried and tested in a study by Ribot-Ciscar et al to understand its effect on muscle spindles and releasing a muscle (Ribot-Ciscar, 1991) and Jiri Dvorak, Director of FIFA Medical Centre of Excellence (HQ Zurick) reported to have replicated the research and got corresponding results.\n\nReference:\n\nRibot-Ciscar, 1991, Post-contraction changes in human muscle spindle resting discharge and stretch sensitivity\n\nhttp://www.ncbi.nlm.nih.gov/pubmed/1836997\n\nDo you teach groups?\n\nDo you teach one to one?\n\nDo want to learn more about this technique to help your clients/participants?\n\n<a href=\"https://www.biomechanicseducation.com/imovefreely/\">CLICK HERE FOR MORE</a>','Worst Kept Secret In Our Industry ','','inherit','closed','closed','','1060-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1060,'https://biomechanicseducation.com/?p=38896',0,'revision','',0),(38897,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','With half the limited seats already gone for this years AWESOME \'Movement Convention\' at Loughborough University it is countdown time for grabbing the ones that are left!\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention</a>\n\nSaturday 8th October\n\n9:00am-6:00pm\n\nLoughborough University\n\n£140 which includes NOT ONLY those previously mentioned; this fantastic lot...\n\nBen Coomber\n\nStephen Aish\n\nTom Waldron\n\nBut also.....wait for it...\n\nThe flippin\' awesome Brendan Chaplin YESSSSSSSS!\n\nBrendan owns the industry\'s first and only REPS L4 S&amp;C qualification. Having known Brendan for over 6 years and having him previously present at TMC in 2014, we are REALLY excited to tell you he is going to be in our line up for TMC16 giving YOU yet more high quality gripping content!\n\nOur very own cool and compelling, Mike Grice!\n\nThis modest and astoundingly knowledgeable professional gives you masses of fabulous information in a beautifully simply manner. (Biomechanics Coaches™ you need to attend this one!!)\n\nThe fantastic fight guru, Fletch!\n\nHaving completed one of his bucket list items this year and travelling half way round the world to Australia he is generously offering his precious time to present to YOU this year too!\n\nAlso the sizzling &amp; massively popular Mairi Taylor who\'s FABulous brand is scorching the industry with LOADS of amazing content about Juicing AND her FAB JUICEBAR will also be available again!\n\nThere is as always the free un-beige lunch, goodie bag and a promise of an electric atmosphere of \'knowledge bomb dropping\' for a breathtaking 8 hours!\n\nIf you miss this you WILL kick yourself because these people are all dominating the industry and with the focus of TMC being quality content all packed into one amazing day\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">BOOK TICKETS HERE</a>\n\nThe lecture content is Coming Soon!\n\nBiomechanics Coaches™ don\'t worry Martin Haines has been booked for your annual Training Camp Friday 7th Oct. This private facilitation session will give you the experience of witnessing the expertise that he is renowned for and that you all enjoy so much.\n\n<a href=\"https://www.biomechanicseducation.com/events/tmc16/\">BOOK NOW!</a>','OMG CONFIRMED!!','','inherit','closed','closed','','1054-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1054,'https://biomechanicseducation.com/?p=38897',0,'revision','',0),(38898,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','Having read ALOT recently not only are my eyes hurting but I have once again been reassured that my own views are mirrored by other professionals, even when I get ‘trolled’ by others.\n\nWhile we demand Evidence Based Practice (EBP) to increase our confidence and to be our best and we also advocate research or data collection as a wise method of practice, ACTUALLY, when you really break it down, what is it that really matters?\n\nResults\n\nHappy Clients\n\nBetter Movement\n\nEducated Movement\n\nLess Pain\n\nHealthy Bodies\n\nConfident Practitioners\n\nConfident Clients\n\nTHIS might actually be achieved by stepping aside from what the evidence suggests, the research, the systems and methods you learned because YOU have a JUSTIFIED REASON for doing so based on the information YOU have or the feedback from YOUR client.\n\nNever under estimate YOUR ability, experience and expertise HOWEVER using EBP as a <i>platform</i> to base your decisions is still probably a smart starting point.\n\nDuring our Biomechanics Coach™ Diploma we require our learners to commit 12 weeks to working on case studies (at present I am thoroughly enjoying marking 9 reports). The whole point of this requirement is for individuals to self reflect on best practice FOR THEM, for THEIR CLIENTS and ALWAYS  to consider WHY they make each decision, giving JUSTIFICATIONS for them. It is this kind of practice that offers best <i>duty of care</i> and enables us to provide what our clients need for success in their goals.\n\nIf your INPUT results in achieving the desired OUTPUT when you are the professional with all the data, with the relationship with that client, who knows their motivators, their foibles, their options and their abilities then YOU are best placed to help them. If you feel you lack something then communicate with and/or REFER them to someone who has the skills or EDUCATE yourself further.\n\nThe more I have read research papers, articles and information relating to anything applicable, the more I have recognised the limitations of EBP as all of these guys also suggest….\n\n<strong>Robert Guntzberg </strong>\n\nhttp://www.helpinspire.org/DirectorProfile1.php\n\n(Former Chair of the European Spine Society) was right when he said that…\n\n<b>Evidence + Experience = Expertise</b>\n\n<strong>Dave Nicholls</strong>\n\nhttp://criticalphysio.net/2016/05/30/is-it-time-to-end-the-tyranny-of-evidence-based-practice/\n\n<strong>Trisha Parsons </strong>\n\nhttp://shoptalk.physiotherapy.ca/if-you-want-to-deliver-real-evidence-based-medicine-read-this/\n\n<strong>Todd Hargrove</strong>\n\nhttp://www.bettermovement.org/blog/2016/are-models-of-pain-accurate\n\n———————————————————————————\n\nBUT PLEASE do tell me what do YOU think?\n\nCome along and voice your ideas at an <a href=\"https://www.biomechanicseducation.com/workshop/iba-workshops-2/\">IBA Discovery Day workshop </a>\n\nSaturday 20th August\n\nLoughborough University\n\n10:00-2:00pm\n\n*INNER CIRCLE &amp; IBA members FOC\n\n*First time visitors FOC\n\n<b><a href=\"https://www.biomechanicseducation.com/workshop/iba-workshops-2/\">Non Members £40 </a></b>\n\n*Simply email your intention to attend and reason for attending to rachel@biomechanicseducation.com\n\n<a href=\"https://www.biomechanicseducation.com/workshop/iba-workshops-2/\">ALL ARE WELCOME!</a>','Evidence Based Tyranny...','','inherit','closed','closed','','1049-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1049,'https://biomechanicseducation.com/?p=38898',0,'revision','',0),(38899,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','Does Personal Training education give us skills to be ‘personal’ enough?\n\nThis is a topic I hear so often as a training provider in the fitness industry from PT’s and I want to explore it with you now.\n\nFirstly lets look at an example of the things clients ask of PT’s to understand what we is <i>expected</i> of us:\n\n•Lose weight\n\n•Tone up\n\n•Get fitter\n\n•Run faster\n\n•Gain muscle\n\n•Reduce body fat\n\n•Achieve a specific health or fitness goal\n\n•Motivation &amp; answerability\n\n•Learn why they hurt when they move and how to move better\n\nPT education does of course give you the ability to help clients achieve almost all of the above. Yet you see how I underlined the last line on the list, well this is the part that I think is one of the biggest challenges for any PT.\n\nThis point wouldn’t necessarily be an issue for PT’s if we were trained to understand how to assess and therefore PREPARE our clients bodies to move with BESPOKE exercise prescription designed for THEIR intrinsic set up. What I mean by this is that if we were trained to do simple neuro-musculoskeletal assessments simply for FUNCTION &amp; MOVEMENT capacity (which are the 3 sub systems of our clients INTEGRATED SYSTEM that our exercise prescription directly influences) we would have more confidence in which clients are actually our remit or which need to be referred to a clinician.\n\nOR\n\nIf they were set up with perfect intrinsic biomechanics when they came to us the chances are that this would never be an issue because we can simply apply all of our ‘extrinsic biomechanics’ correction techniques we are taught like “knees in line”, “back upright” or “head in line” for example.\n\nHowever exactly how many of our clients DO NOT have some kind of dysfunction, previous injury, poor posture, problem areas, stiff or aching joints that we, as PT’s, are more often than not told we probably shouldn’t be dealing with?\n\nBut we do take them on because if we didn’t we wouldn’t have any clients!\n\n<b><i>*Note: Just to be perfectly clear on this point, I am not suggesting for a minute you work with clients outside of your remit or that you are not insured to work with. </i></b>\n\nHaving read a few articles after googling <i>‘Top reasons for employing a PT’ </i>this point below stuck out for me in relation to the above;\n\n<b><i>6.</i></b><i> </i><b><i>Put the “personal” in your training </i></b>\n\n<i>A skilled trainer will assess your specific needs, injuries, health conditions or training goals (that 10km race you’re dreaming about, for example). The trainer will then develop a personalised plan with clear timelines and short-term achievement goals that will safely and effectively enable you to succeed.</i>\n\nAssess?\n\nSo what kind of assessment?\n\nWe are <i>trained </i>to go through verbal questioning and writing the answers on a ParQ - which, might I add, if the client did in fact tell us all of their aches, injuries or health conditions we are generally advised to refer them.\n\nHow many clients have none of these?\n\nHonestly?\n\nIt’s usually the previously injured, overweight, inactive people with biomechanical issues that ask for our help!!!\n\nAnd do you know what I find crazy?  ….we as PT’s are the ones <i>perfectly placed</i> to help these people should we possess the right skill set to have the confidence to do this, since we are the professionals they often see more than once a week, the one’s who are around the gym offering support even outside of sessions, also very often delivering their classes too since many of us are hybrids these days and surely <i>injury prevention</i> is better than cure - don’t you agree??\n\nSo What?\n\n(My favourite question) I was one of those fitness professionals who tried to ‘make’ clients keep their spine ‘neutral’ when squatting or keep their knees in line with their toes as i had been trained and I got frustrated when they did not do what I was teaching them, wondering how on earth they couldn’t do something as simple as keep there knees in line?… for gods sake!!\n\nThey also kept asking me\n\n<i>“what is the best exercise to help my back stop aching?”</i>\n\nErrrrr… go and see a therapist, I have no idea!?\n\nThe question I keep asking myself is;\n\nShould we as PT’s even be able to get any insurance for working one to one considering the rarity of those clients ‘technically’ within our remit or should PT education be more advanced?\n\nTricky considering most PT’s are demanding lower priced courses and more online learning, with less face to face education due to their low income and their need to be working as much as possible. In my experience no great knowledgeable PT is just a PT as they often realise the need for more information/skill’s to be able to truly PERSONALLY train someone confidently around all the issues they come to us with.\n\nBut this is just my opinion, whats yours?\n\nhttp://fashion.telegraph.co.uk/beauty/news-features/TMG11096954/Fitness-Truths-how-to-find-a-good-personal-trainer.html\n\nhttp://www.ideafit.com/fitness-library/benefits-of-a-personal-trainer\n\nhttp://www.freshvancouver.com/index.php?option=com_content&amp;view=article&amp;id=140:top-ten-reasons-to-hire-a-personal-fitness-trainer-&amp;catid=49:health&amp;Itemid=108\n\nBecome a confident PT\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Become a Biomechanics Coach™ </a>','Is Personal Training \'Personal\' Enough?','','inherit','closed','closed','','1044-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1044,'https://biomechanicseducation.com/?p=38899',0,'revision','',0),(38900,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','<h2>How can you protect your clients against injury?</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-34808 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/06/IMG_7541-300x270.jpg\" alt=\"\" width=\"300\" height=\"270\" />\n\n&nbsp;\n\nThe way we exercise and work has changed in the last few generations. Our bodies were designed to be hunter/gatherers.  Our very physical make-up enables us to hunt, escape, harvest and gather by performing an almost unlimited number of movements like walking, running, throwing, bending, twisting and turning. As the technological revolution has enveloped our lives, these tasks are no longer necessary and our bodies have begun the process of de-conditioning in biomechanical terms. Problems then arise when we then ask our bodies to train in a gym in this biomechanically de-conditioned state; our bodies become adept at compensating for our biomechanical problems, like a rotated pelvis, leg length discrepancies, tight thoracic spines, stiff sciatic nerves and many others, which are significant factors in why we get pain despite being ‘fit’.\n<h2>Repetitive motion</h2>\nAn often unrecognised problem for us is that our training programmes are by their very nature repetitive.  Where our muscles were once responsible for performing a variety of different movements throughout the day, they are now performing, semi-static, repetitive movements when we work on our laptops or larger repetitive movements when we are in the gym.   The body does not respond well to repetitive movements; nerves in particular go through a process of de-conditioning.  De-conditioning is a mechanical phenomenon where the nature of structures (in this case, nerves) actually changes and as they do, your muscles go into a protective spasm.  Remember this is while performing exercises; this is another reason for us having pain despite being fit.\n<h2>Predisposition to injury</h2>\nWhen you look at Meeuwisse’s work in 1941, he showed that the injured individual is predisposed at a number of different levels. If you apply this to your clients when lifting weights and strength training, you can see the loop that they will commonly go through from pain to returning to training (and indeed working through pain).\n<h2>Injury Causation Factors</h2>\nAge, Somatotype, Previous Injury, Flexibility, Intrinsic Biomechanics\n\nPredisposed individual\n\nExercise\n\nExposure\n\nSusceptible\n\nInciting event\n\nInjury\n\nRehab\n\nThese same principles apply to you too.  If you do actually stop for a while to let your injury settle, even with therapy, you are still predisposed to injury if you are not correcting the biomechanical problems.\n\n&nbsp;\n\n<img class=\"size-medium wp-image-34811 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/06/IMG_9501-300x221.jpg\" alt=\"\" width=\"300\" height=\"221\" />\n\n&nbsp;\n\nLet’s look at some more of the specific problems with repetitive movement:\n<h2>Joint loading.</h2>\nIf a joint is subjected to prolonged pressure when repetitive movements in your training are performed, the cartilage begins to lose its elasticity and therefore becomes vulnerable to damage, (Oleyede &amp; Broom 19942).  A biomechanically efficient joint will cope better.\n<h2>Tension, stress and relaxation</h2>\nTendons are visco-elastic in nature and are therefore subject to the mechanical phenomena of preconditioning, creep and hysteresis when subjected to repeated stresses and strains.  This means they will adapt to the loads being imposed upon them, but if they are unnatural loads or the technique is performed incorrectly they will adapt to the incorrect movements and over time this will increase their risk of injury.\n<h2>Muscle work</h2>\nHigh repetition work in training can lead to muscle fatigue and in some cases, Delayed Onset Muscle soreness (DOMS) and overuse syndromes.  DOMS is associated with increase in muscle tone and faulty excitation of muscle, (Janda 19833).   This phenomenon is termed \"The Calcium Paradox\".  In this state the muscle is no longer able to contract and relax properly which means the muscle is in spasm i.e. it cannot relax.\n\nIn a normal individual this chronic state is avoided because we naturally move giving the muscle a normal sensory input and allowing it to relax, if however we ignore the warning signs and continue to exercise in our training, the continual irritation of the now-shortened muscle leads to physical changes within the muscle6.  Up to 40% of muscle can be replaced in a shortened muscle by connective tissue (Tardieu &amp; Tarbary).  Once this occurs normal mechanics are no longer possible without biomechanical correction (Janda 19833).  This increases your risk of injury.\n<h2>Nerve tension</h2>\nNerve is visco-elastic in nature which means that the greater the velocity of stretch applied to your nerve then the less stretch is available and the greater the stress on the nerve.\n\nIt can be seen when a nerve is subjected to repeated stretching in training as it begins to react in an abnormal manner.  When a nerve is first stretched it begins to lengthen, but as the stress is removed and then reapplied, it reaches a certain point when repeated applications of stress cause no increase in nerve length.  Sometime after this point has been reached and if tension is continually removed and reapplied the nerve under stretch begins to show a greater resistance to elongation, (Barrow 19944).  This is similar to the mechanical concept of pre-conditioning found in other materials.  As the nerve becomes pre-conditioned, local muscles go into a protective spasm, which can cause pain and certainly compromises the quality of the movement you perform in your training.\n<h2>So what can you do?</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-34812 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/06/IMG_9026-300x214.jpg\" alt=\"\" width=\"300\" height=\"214\" />\n\n&nbsp;\n\nThere are key areas that you can work on to improve yours and your clients biomechanics:\n<h2>Reduction of muscle spasm associated with repetitive movements</h2>\nMuscle release exercises are designed to encourage the muscles in spasm to relax.  Studies by Ribot-Ciscar5 have established that a muscle relaxes maximally after it has been contracted sub-maximally and for a prolonged period.  So if you think one of your muscles is unduly tight or is not responding to stretching, then try low grade endurance isometric contractions of that muscle to release the spasm.  Contract the muscle for 20 seconds, using about 20% of your maximal contraction.  Repeat up to 4 times and then do this 3 – 4 times per day. iMoveFreely® will take you through this in more detail.\n<h2>Prevention of postural abnormality</h2>\nMany of your clients will have fundamental intrinsic biomechanical problems and these need to be addressed to have a good chance of their posture improving.  Even if they work on their posture, if they do not have the capacity to adopt and maintain good posture, that work is less likely to be effective.   Ensure they have good biomechanical foundations and their ability to adopt and hold a better posture will be enhanced.\n<h2>Nerve protection</h2>\nIn the gym we sometimes get ‘hung up’ on what type of stretching we should be doing; static, ballistic, dynamic etc.  But it has been shown that nerves can be at least as important as muscles; as a tight nerve can cause muscle and joint injuries.  So as part of your clients warm up and cool down, it’s helpful to mobilise your clients median and sciatic nerves in particular.\n\n&nbsp;\n\nMartin Haines\n\nSpecialist Biomechanics Coach&#x2122;\n<h2>References:</h2>\nMeeuwisse, W.,H., 1994, Clinical Journal of Sports Medicine 4 (3) 168\n\nOleyede &amp; Broom.  Complex nature of stress inside loaded articular cartilage.  Clinical Biomechanics 1994.\n\nJanda V. Muscle function testing.  London, Butterworths, 1983.\n\nBarrow N.  Recent advances in the use of robotic dynamometry - Measurement of Neural Tension.  European Isokinetic Congress 1994\n\nE. Ribot-Ciscar1, M. F. Tardy-Gervet1, J. P. Vedel2 and J. P. Roll1 Post Contraction Sensory Discharge.\n\n1. Laboratoire de Neurobiologie Humaine, Université Aix-Marseille I, URA CNRS, 372, Avenue Escadrille Normandie-Niemen, F-13397 Marseille Cedex 13, France\n\n2. Laboratoire de Neurosciences Fonctionnelles, CNRS-LNF3, 31 Chemin Joseph Aiguier, B.P. 71, F-13402 Marseille Cedex 9, France\n\n6. Edwards RHT.   Muscle fatigue and pain.  Acta Med Scand Supplement, 1987.\n\n&nbsp;\n<h1>Would you like to learn how to identify and correct these types of issues with your clients?</h1>\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">READ MORE HERE</a>','Repetitive Motion','','inherit','closed','closed','','1038-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1038,'https://biomechanicseducation.com/?p=38900',0,'revision','',0),(38901,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','<b>If you had been sitting beside me last week when I sent out the\n\"Why DON\'T You Read Our Emails?\" <a href=\"https://www.biomechanicseducation.com\">Juicemail</a> you would have probably wondered what the hell was going on!</b>\n\nThe constant ping of emails coming in responding to the SMALL PRINT would have probably driven you nuts, for me it was mind blowing!!\n\nSeriously I am stunned and humbled and so grateful to EVERY single one of you who took the time to reply….\n\n<i>Thank you for the chance to win a free 1 day workshop.  I loved your sessions at the Spin Convention in Blackpool and think you are almost the only one that keep sending information and e-mails, which I love! After studying for 2 years and not sorting things, I ended up with 1500 mails in my inbox...slowly but surely now I am getting my life back to normal and more organised. So yes, if the mail is too long I am now quick to just unsubscribe and move on.  Have to say, yours are always perfect to read as I move in between my appointments daily. Thank you for all the interesting reads, I am constantly learning and love it!</i>\n\nMH\n\n<i>Your emails keep me questioning my commitment to my professional development and my clients and that keeps me on my game!</i>\n\nRD\n\n<i>Read the small print lol. Love these emails they keep me motivated to learn more</i>\n\nDS\n\n<i>informative, educational, and easier and quicker to do than \'juicing\' in a blender!\nRead, absorb, practice….</i>\n\nSH\n\n<i>Love the emails thanks and will be booking onto courses soon!\nCheers</i>\n\nJT\n\n<i>Ha!  I do save them and read them in a block but I like to do that.\nWith doing cricket 6 days a week this term I have NO head space for anything else so with half term from tomorrow you know what I will be doing!\nLooking forward to catching up with them.</i>\n\n<i>Lots of love</i>\n\nTT\n\n<i>I love reading your emails! They are factual ground breaking information that helps and inspires me when I need it most! Please keep sending them out I receive nothing else quite like it.\nBest wishes </i>\n\nSD\n\n<i>I love your emails!\nI read, I share and I store for future reference!\nOne particular favourite was about the book Body by Science, which I bought and devoured! My husband has been following it and has recorded amazing results - I am constantly sharing little gems from the book to friends, clients and anyone who will listen! I think book sales have probably rocketed since your blog - you should get a commission!\nI hope to enrol on your coaching course in spring 2017 when I\'ve completed some further Pilates training this year.\nKeep it up - hugely inspirational and informative!</i>\n\nHL\n\n<i>I enjoy reading the emails – I’ve just proved it by even reading the small print!  Hope I win!</i>\n\nKW\n\n<i>Hi Rachel\nPersonally I love receiving your emails &#x1f60a;.\nI find them interesting and the articles very useful in improving my knowledge.\nI would love some information on becoming a biomechanics coach, and have a question: I noticed that the biomechanics coaches who have written articles are qualified in sports massage. Is this a qualification you recommend having before doing the biomechanics coach qualification? It is one I don\'t have at the moment.\nKind regards</i>\n\nAR\n\n<i>I enjoy your emails, they make me think about my daily practice and thanks for sending them.</i>\n\nRK\n\n<i>Absolutely love getting your mails … keep ‘em coming!</i>\n\nGPW\n\n<i>I try to read them as much as possible, some absolute gems of info and thought provoking content. :) </i>\n\nMC\n\n<i>Yes, I read the emails – it’s great to read about proper movement technique how different issues can be explored and fixed with biomechanices.  Please keep them coming.</i>\n\nJR\n\n<i>have not read a bad post yet, all very interesting thanks</i>\n\nD\n\n<i>I love reading <a href=\"https://www.biomechanicseducation.com\">“Juicemail”</a>, it is a quick and concise way to keep up to date. Keep ‘em coming and thank you!</i>\n\nSC\n\n<i>Hi Rachel, you send too many emails for me. One a week or even a fortnight I could cope with.Cheers</i>\n\nMS\n\n<i>i do read them. brief enough?</i>\n\nIC\n\n<i>Love your emails and philosophy x x</i>\n\nSB\n\n<i>Hi Rachel Yes I would miss reading the emails it\'s my bedtime reading!! Thxs</i>\n\nEC\n\nCongratulations to the Winner...\n\n<i>Hi Rachel,</i>\n\n<i>Very interesting timing!  I have red flagged your email ‘assumptions’ as I wanted to reply to it...but so far have just not had time!   I do read all your juicemails with interest (apart, I must admit, from the golf ones, where I try to be interested but loose it on the 5</i><i><sup>th</sup></i><i> paragraph of detail about swing and torsion!!).</i>\n\n<i>The more I have learnt over the years, the more confusing my job as an exercise teacher becomes.  It used to be short &amp; tight = stretch it    long and weak = strengthen it!   Now I realise there can be any combination of those issues, along with issues involving the nerves, psychological factors, all with many different ‘methods’ of help/intervention/relief.  How can I possibly know how to help when I am only an exercise teacher and there are so many possible ‘issues’ which I could make either better – or worse – during my classes?  So, is it a 50/50 chance of improvement?  Even if I did a 1:1 screening, would the rate of improvement be better?  How do we even define improvement? </i>\n\n<i>Minefield! </i>\n\n<i>I remember during FFY training, being in awe of Jayne Nichols when she said bravely “ I tell anyone with injuries to ‘Get Out of my class’!”  I could definitely not do that with my customer base, I would have nobody left!   Although I would love to do some ‘hard-core’ workouts, I have to learn to manage the injuries/restrictions/limitations that present themselves along with my loyal customers.</i>\n\n<i>I use a combination of many different approaches over the course of my pilates classes.  Gentle mobility – stretching – prickle ball release – anti spasms – and a variety of progressive strengthening exercises, in a bid to cover all bases.  I explain the benefits/pitfalls and hope that my customers will find something in the ‘toolbox’ that works for them.  The more I expose myself to different techniques and learn more, the deeper my toolbox becomes. </i>\n\n<i>I am lucky to have regular customers, allowing us to ‘trial’ different methods and then be around to see the effects.     But even gentle exercises can destabilise the fine balance of a body ‘coping’.  When releasing restrictions, we have to make sure we then give the body another means of support.  I regularly see emails/ articles advocating the 20/20 technique, describing how to release away all the restrictions, but with no mention of the ‘strengthening’ and toning which should follow up.  So even the gentlest intervention can be problematic.</i>\n\n<i>I used to wish I could be more precise, but now I am not sure that is either advisable, or possible.    Even if I know the exact issue a person is working with, I cannot predict how their body will respond to, or control the individual’s ‘performance’ of,  a given exercise.   How do I know an exercise won’t hurt somebody, worsen their condition or create new problems?  The answer is, I don’t, all I can do is add to that toolbox.</i>\n\nCongratulations CM!!\n\nYou highlighted some great points that I am sure many of us feel too!\n\nI will email you about claiming your FREE iMoveFreely®  Instructor workshop ;)\n\nAnyone who\'s reply and initials are posted above will also receive £100 credit towards one of our <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coach™ Diploma workshops 2016</a>/17\n\nOR\n\n£50 credit towards <a href=\"https://www.biomechanicseducation.com/events/tmc16/\">The Movement Convention sat 8th Oct 2016 Loughborough University.</a>\n\nThank you ALL!','Just Ridiculous!','','inherit','closed','closed','','1034-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1034,'https://biomechanicseducation.com/?p=38901',0,'revision','',0),(38902,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','Now those of you who have been in a classroom with me will probably have heard me say at some point that I am a slow learner, that its takes me a while to work things out and that I am not \'naturally\' bright nor academic (as my old school teachers may have mentioned a few times). If I have a technical question in my head it takes me a while to find a way of making sense of it.\nLike many of us right!?\nWell I\'ve had a question or 2 challenging me for a while and so having spent some months reading research papers about LLD, pelvic function, sacro iliac joint (SIJ) pain, symmetry of the pelvis, methods of measuring LLD etc, as a Biomechanics Coach™ I found it interesting that so few of the papers I found related simply to function, or how to correct it. Almost all the papers were connected to ‘clinical’ findings or ‘medical’ issues and ‘symptoms’.\n\nI mean why on earth would you research something that isn\'t a problem?\n\nWell to <em>prevent</em> the problem maybe?!\n\nAs Biomechanics Coaches™ we assess and prepare our clients to move better to avoid symptoms and clinical problems, pathology and pain. This preparation for movement is vital considering the lives we now lead amongst technology and equipment etc that make our lives ‘easier’, less effort, quicker and in fact less active than ever.\n\n<strong>My project was because I wanted to understand the relevance of a leg length discrepancy (LLD) based on as much evidence as possible.</strong>\n\nI found papers that discussed pelvic position, structural leg length discrepancy (SLLD) even functional leg length discrepancy (FLLD) and some looked at whether the LLD affected LBP\n\nMy question was - <strong>Does evidence tell us that a LLD affect low back health? and is there a difference between SLLD and FLLD and their influence on back health?</strong>\n\n<strong>Definitions;</strong>\n\nSLLD - or structural leg length discrepancy.\n\nAn example of this is the individuals femurs are genetically different in length therefore creating a structural difference that cannot be changed without surgical intervention.\n\nAnother example might be someone who has broken a bone and therefore now has a structural difference caused by the trauma\n\nFLLD - or functional leg length discrepancy.\n\nThis is discussed often in research papers and describes a twisted or rotated pelvis, around the SIJ which creates the <em>appearance</em> of a LLD. Should the dysfunction causing the rotation or twist be removed the LLD can also disappear.\n\n<strong>How do we know if we have either an SLLD or FLLD?</strong>\n\nIi is m understanding that, in podiatry, if there is a LLD that is less than 11mm it is classed as ‘insignificant’\n\nAlso in the research it almost always seems to be assumed there has a to be a clinical significance if there is a LLD present.\n\nWhile in my very limited experience as a Biomechanics Coach™ most LLD (and they are more often than not UNDER 11mm) are FLLD that are NOT clinical and can be addressed/corrected with simple exercises. The presence of a FLLD  seems to coincide with the degree of low back pain they experience.\n\n<strong>So WHY is this?</strong>\n\nLet me give you the low down about what I found out:\n\nStarting with the pelvis - there is evidence from Rose McDonalds work, when she was head physio at Crystal palace athletics club, that the hips/pelvis are at least partly responsible for 60% of lower limb injuries from a biomechanical point of view.\n\nAlso in my 10 years experience of using pelvic muscle anti spasms, particularly on the hip rotators, flexors and extensors, it has has had a huge impact on all of my clients, in particular their appearance of a FLLD.\n\nTheir ROM improves, pain is reduced, strength has increased, they report feeling more stable and overall feel they move better.\n\nNow there are groups and individuals out there who still challenge everything, which as you already know from previous Juicemails I encourage my learners to do, and they have challenged me on my methods and the evidence based programme I use.\n\nDo you know what.... it is the times when I am confronted and challenged that I grow an expand the most. When at my most uncomfortable is when I learn and absorb information best. When someone questions the very core of what I do in my practice and the method I teach in the academy, the thing I am most passionate about.\n\nThis happens sometimes and it happened recently and I am thankful for the challenge because it took me on a little journey of exploration through reams and reams of research papers and books and conversations with peers and mentors and colleagues and what fun i have had in the ‘growth zone’!\n\n<strong>Do you know where I ended up?</strong>\n\nApart form writing this for you guys of course….\n\nWell after reading complex equations, difficult language, conflicting evidence, fascinating arguments, strange opinions and lengthy articles I ended up with\n\nSO WHAT?\n\nDo you remember the SO WHAT article?\n\nWell yes thats where I ended up asking myself SO WHAT?\n\nWhat am I trying to achieve with my clients?\n\nNO\n\nHang on….what AM I achieving with my clients??\n\n<em>Their ROM improves, pain is reduced, strength has increased, they report feeling more stable and overall feel they move better.</em>\n\nSo no matter what the research states, no matter what the trolls say, no matter what challenges you, if your client feels better, moves better, experiences less pain and you have some objectivity to measuring improvements - SO WHAT?\n\nSo please feel free to read away to your hearts content some really interesting papers listed here but ultimately does your input get the desired output?\n\n<strong>References;</strong>\n\nAllyn.L e al, 1984, <em>Leg length discrepancy assessment:accuracy &amp; precision of 5 clinical method of evaluation</em>\n\nArumugam et al (2012) <em>Effects of eternal pelvic compression o form closure, force closure &amp; neuromotor control of the limbo-pelvic spine.</em>\n\nBeattie et al (1990)<em> Validity of derived measurements of leg length differences obtained by use of tape measure </em>\n\nCalvilla et al, 2000<em>, Anatomy and pathophysiology of the SIJ</em>\n\nCibulka (2002) <em>Understanding SIJ movement as a guide to the management of a patient with unilateral low back pain</em>\n\nConnell (2007) <em>A case study report - concept of assessment &amp; treatments of anterior knee pain related to altered spine &amp; pelvic biomechanics </em>\n\nCooperstein, Lew (2009)<em> The relationship between pelvic torsion &amp; anatomical leg length inequality</em>\n\nCummings et al (1993) <em>The effects of imposed leg length difference on bone pelvic asymmetry </em>\n\nCusi (2009) <em>Paradigm for assessment &amp; treatment of SIJ mechanical dysfunction</em>\n\nDillen et al (2008) <em>Hip rotation ROM in people with &amp; without LBP who participate in rotation related sports.</em>\n\nDonTigny (1985) <em>Function &amp; pathomechanics of the SIJ</em>\n\nDonTigny (1989) <em>Anterior dysfunction of the SIJ as major factor in etiology of idiopathic Low Back Pain syndrome</em>\n\nDuff et al (2000) <em>The reliability &amp; validity of the ‘tape’ &amp; ‘block’ methods for assessing anatomical leg length discrepancy.</em>\n\nForst et al (2005) <em>The SIJ; Anatomy, physiology &amp; clinical significance </em>\n\nFryer (2004) <em>Methods used by members of the Australian osteopathic professional to assess the SIJ</em>\n\nFryer (2005) <em>Factors affecting the inter-examiner &amp; inter-examiner reliability for supine medial malleoli asymmetry</em>\n\nGoode et al (2008) <em>3 dimensional movements of the SIJ </em>\n\nGurney  (2001)<em> Leg Length Discrepancy</em>\n\nHungerford et al (2003) <em>Evidence altered lumbo-pelvic muscle recruitment in the presence of SIJ pain</em>\n\nJacob, Kissling (1994)<em> The mobility of the SIJ’s in healthy volunteers between 20-50yrs</em>\n\nKasis et al (2008) <em>External fixator assisted acute shortening wit internal fixation for leg length discrepancy after retool hip replacement </em>\n\nKiapour et al (2012) <em>Relationship between limb length discrepancy &amp; load distribution across SIJ </em>\n\nKrawiec et al (2003)<em> Static innominate asymmetry &amp; leg length discrepancy in asymptomatic collegiate athletes</em>\n\nMcCaw, Bates (1991)<em> Biomechanical implications of mild leg length discrepancy</em>\n\nMcGrath (2004) <em>Clinical considerations of SIJ anatomy; A review of function, motion &amp; pain</em>\n\nMiddleton-Duff et al 2000,<em> The reliability and validity of the `Tape\' and `Block\' methods for assessing anatomical leg-length discrepancy</em>, Harcourt Publishers Ltd\n\nPel et all (2008) <em>Biomechanical analysis of reducing SIJ shear load by optimisation of pelvic muscle &amp; ligament forces</em>\n\nPreece et al (2008) <em>Variation in pelvic morphology may prevent the identification of anterior pelvic tilt </em>\n\nRichardson et al (2001) <em>The relation between the TVA, SIJ mechanics &amp; low back pain</em>\n\nSabharwal, Kumar (2008)<em> Method of assessing leg length discrepancy </em>\n\nSantaguida, McGill (1994) <em>The psoas major muscle; a 3 dimensional geometric study</em>\n\nSturesson et al (1999) <em>A radiostereometric analysis of movements of the SIJ’s during standing hip flexion</em>\n\nSuter et al (1999) <em>Decrease in quadricep inhibition after SIJ manipulation in patients with anterior knee pain</em>\n\nTakasaki et al (2008) <em>The influence is increasing SIJ closure on the hip &amp; lumbar spine extensor muscle firing pattern</em>\n\nVan Der Wurff et al (2006) <em>A multitest regimen of pain provocation tests as an aim to reduce unnecessary minimally invasive SIJ procedures.</em>\n\n<em>V</em>an Der Wurff et al (2000) <em>Clinical tests of the SIJ </em>\n\nVleeming et al, 2003<em>, Stabilisation of the SIJ in vivo: verifications of muscular contribution to force closure of the pelvic</em>\n\nVleeming et al (2012) <em>The SIJ: An overview of its anatomy, function &amp; potential clinical implications</em>\n\nWinderden et al (2003) <em>Stabilization of SIJ in vivo</em>\n\nWoerman et al (1984)<em> Leg length discrepancy assessment; Accuracy &amp; precision in 5 clinical methods of evaluation</em>\n\nWoodfield et al (2011)<em> Interexaminer reliability of supine leg checks for discriminating leg length discrepancy</em>\n\nWylde et al (2008) <em>Prevalence &amp; functional impact of patient perceived leg length discrepancy after hip replacement</em>\n\nWould you like to learn how to assess pelvic function?\n<a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics/\" target=\"_blank\" data-cke-saved-href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics/\" rel=\"noopener\">REGISTER YOUR INTEREST HERE</a>','Pelvic Function Research Papers Simplified','','inherit','closed','closed','','1029-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1029,'https://biomechanicseducation.com/?p=38902',0,'revision','',0),(38903,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','Says Biomechanics Coach™ of the Month Amanda Swallow.\n\nMany of YOU ask us what entering our academy can do for YOU and YOUR business so the BCOTM programme not only gives recognition to special people and smart professionals in our industry, it also allows YOU to see what it might be like for you to become a qualified Biomechanics Coach™.\n\nAmanda is a great example and has been nominated for her consistently positive attitude towards her work and others around her. We are so pleased to nominate her as June\'s Biomechanics Coach™ of the Month!!\n\nYour Biography in brief.\n\nMovement and music has always featured heavily in my life.  I was a semi professional ballroom, latin and jazz dancer in my younger years. In 1994 when aerobics was becoming popular in sport centres and professional clubs I fell in love with teaching group exercise, the way it brought people together, sharing the buzz, music and health benefits. I was able to combine my love for creating choreography with music and movement. I indulged my passion for fitness knowledge further by going back to Leeds University part time and completed my exercise &amp; fitness diploma and certificate, all pre-internet.\n\nDuring my first pregnancy I discovered the benefits of Yoga, later I trained in Pilates and nutrition. Being self employed in the fitness industry enabled me to work around my kids, teaching the exercises that make a difference to my clients whilst making lifelong friends.\n\nWhat made you choose Biomechanics Coaching™?\n\nI had the pleasure of meeting the amazing Rachel France when she delivered an iMoveFreely® Instructor workshop in 2011, exposing me to the amazing world of intrinsic biomechanics. After completing the certificate I always knew I had to take it further as it totally revolutionised the way I approached my teaching. It had given me an insight into a different world and how to serve my clients better.\n\nDue to family commitments this was put on the back burner until finally in 2015 I was able take advantage of the Biomechanics Coach™ Diploma.\n\nThe intrinsic biomechanics programme is now integrated into every area of my life. I am able to keep myself injury free whilst educating my clients to identify potential imbalances that lead to an inevitably increased chance of injury.\n\nWhat do you specialise in outside of Biomechanics Coaching™?\n\nMind and Body Retreat days, Pilates, Yoga, Group exercise, within the community and private clubs.\n\nWhat would be your advice to somebody thinking of becoming a Biomechanics Coach™?\n\nEach of the Biomechanics Coach™ Diploma workshop is incredibly informative and in depth. Once you complete your training the professional back up network that Rachel has developed constantly support, nurtures and expands your new skills.\n\nIf you want your clients to understand how their bodies work and why they sometimes break down do the Biomechanics Coach™ Diploma.\n\nIf you want to understand why you are prescribing an exercise and whether it is actually suitable for your clients do the Biomechanics Coach™ Diploma.\n\nIf you want to make permanent improvements to your clients using a tried and tested system then do the <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coach™ Diploma.</a>\n\nPersonal Achievements\n\nTwo wonderful kids who continue to surprise &amp; challenge me on a daily basis and sharing 28 years with my soulmate Paul. Rachel France and many of the fabulous Biomechanics Coaches™ have inspired me to blog about health and fitness through my Move Freely Forever Facebook page reaching more clients.\n\nSporting Achievements\n\nI’m not very sporty but I love to dance and was a junior Ballroom and Latin dance champion, competing In Blackpool tower when I was 16.\n\nCareer Highlights\n\nStill loving being self employed in the fitness industry for over 20 years.\n\nMy thriving very special move freely forever class using the iMoveFreely® exercises to benefit clients suffering from a wide range of problems like MS, ME, Parkinson, arthritis etc.\n\nHolding my 25th Tierra Madre Experience Mind and Body retreat on October 2016.\n\nBecoming a Biomechanics Coach™.\n\nShare a secret about you.\n\nBeing a back packer with my husband at 32. Travelling overland from Anchorage, Alaska to Tierra del Fuego, Chile for seven months.\n\nWhere do you see yourself in 10 years time?\n\nHelping women thrive as they age by providing a first class service delivering courses which integrates Biomechanics Coaching™, Nutrition, Pilates and Yoga.\n\nHaving more time to travel again.\n\nCase study\n\nMy 66 year old client was suffering from arthritis in his right hip and finding everyday tasks such as climbing stairs and even putting on his socks unbearable.  After just 6 weeks on the Biomechanics Coaching™ programme he is now a regular at my weekly Pilates class, enrolled in a dry stone walling course and returned back to hill walking after 10 years.\n\nThe system works with any client who acknowledges that their lifestyle needs addressing and is prepared to change.\n\nFundamentally, if a client takes responsibility to fix themselves, with the knowledge and regime I can then provide, they will move more freely.\n\nWould You like To Join This Band Of Elite Professionals?\n\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">READ MORE</a>','\"Revolutionised My Approach\"','','inherit','closed','closed','','1026-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1026,'https://biomechanicseducation.com/?p=38903',0,'revision','',0),(38904,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','The Foot\n\nFirstly I would just like to clarify this section relates to foot ‘position’ directionally, not foot width during squatting (see part 3/6 for width during squatting)\n\nThe Foot Direction\n\nIn my opinion, and from the evidence in the papers I have read, there is really only one deciding factor in the direction your feet should point during the squat and that is where they fall naturally for the width of squat you have chosen. So while the width may determine the degree of stress on the knee there is no substantial EMG evidence to determine that changing the foot angle or direction hits any muscle more or less. Therefore to reduce injury risk allowing the feet to fall where they want to is probably most prudent.\n\nThe reason for this is the relationship between the joints sitting above and their descending influence of load and force through the foot and ankle. We discussed previously, in The Squat Part 1/6, how hip rotator muscles, like Piriformis, can become dysfunctional with muscles spasm and so it might be prudent not to ‘fight’ this problem by ‘forcing’ feet into directions that simply don’t feel right.\n\nI experimented myself with a concept promoted by some in the industry that we should ensure a forward pointing foot. However this demonstrated that for me I was at a higher risk of a knee injury in this position (see The 10 Minute Squat Test Article)\n\nKlein’s book ‘The Knee In Sports’ states that “…the toes should be kept directly beneath the knees or slightly inside. This allows the normal relationship to be maintained between femur and tibia in the flexion movement”. However in Rippetoe’s ‘Starting Strength 3rd Edition’ he describes the need for feet to be turned out at a 300 angle. The problem arises when these types of statements are taken out of context. So I would like to clarify, the types of questions we should really be asking are ‘what is my biomechanical set up?’ and ‘what do I want to achieve from this movement?’\n\nAs stated above, during the performance of a squat, several authors have recommended various positions for placement of the foot. However a review of the literature failed to demonstrate how foot placement and lower extremity turn out during the squat affect the activity of the leg muscles (Ninos et al 1997)\n\nFootwear\n\nSomething we must consider in relation to the foot is footwear since what we wear on our feet directly impacts on the foot and how it functions. Let me explain…\n\nMany a debate is heard over what footwear should be worn when squatting. This is ultimately down to our individual biomechanics and the way we are ‘stacked up’. The foot, knee, pelvis and spine all influence each other. These influences can be ‘descending’ or ‘ascending’, in other words, if there are certain structural issues with the shoulder, this can influence what is happening at the foot (Descending) and vice versa the foot can influence what is happening at the shoulder (Ascending). This article is going to explore what these influences are and things we might want to consider as a result.\n\nTo enable you to make a choice about footwear during squatting first of all you would need to understand where your foot falls ‘naturally’ below you and then where it needs to be for stability during a squat. McBride, et al 2006, demonstrated that isometric squatting on an unstable surface significantly reduced peak force &amp; rate of force development. Which confirms that we might want to stabilise the foot and ankle during the squat. Yet if a biomechanical problem is present, loose Mid Tarsal Joint (MTJ) or Sub Talar joint (STJ) or even pelvic dysfunction then we may need to consider at least 2 ways of addressing these common (not normal) problems for when we want to squat most efficiently.\n\nIf the mechanical problem is ascending, loose or too mobile MTJ or STJ examples above, then orthotics can be prescribed while working on the biomechanics of the rest of the body, however if the issues are descending, i.e. pelvic dysfunction is present, then orthotic prescription should be avoided until the problems higher up have been eradicated.\n\nFor example in the case of a descending pattern: Jane has pelvic dysfunction that means her knees buckle inwards (knee valgus). This creates a ligament dominance which puts the medial ligaments and ACL at risk since they are taking much of the load/force through the knee during squatting or upon landing during gait. This in turn puts a rotational load around the lower leg, which directly influences the degree of pronation that occurs at the STJ, often presenting itself as OVER pronation at the foot.\n\nBy releasing the muscle spasm that created the problem in the pelvis and then strengthening these muscles using a specific and bespoke programme, Jane may be able to regain some supination capacity which may then remove the need for orthotics. Had orthotics been prescribed for this appearance of over pronation, in this particular case, they may have compounded the problem at the pelvis. I can sense some of you readers for whom orthotics failed you, nodding away out there!\n\nNow in the example of an ascending pattern: John has feet that OVER pronate because his MTJ/STJ’s are loose or ‘floppy’ . This means his feet are unable to ‘stiffen’ or ‘lock’ into enough supination naturally to ensure sufficient rigidity in his foot when he squats, or even walks. Better alignment will likely help him with his balance, and potentially his power generation, during squatting.\n\nHowever using some orthotics during the squats means the support is already there and his feet are ‘assisted’ to supinate better, giving him a more rigid foot and ankle, thus maintaining better alignment upwards through the knees, pelvis and beyond. Without the orthotics John may suffer with back problems later.\n\nWeightlifting Shoes\n\nThe effects of weightlifting shoes on squat mechanics is a subject for which I struggled to find evidence. However I did find a study by Fortenbaugh et al .(2003). They concluded that “In this study, the combined amount of anterior (forward) bar movement and posterior (backwards) hip movement was significantly less when wearing weightlifting shoes (as oppose to running shoes)….this study did not exhibit any other kinematic differences when using weight lifting shoes versus running shoes”. So this suggests the weight lifting shoes allow for a more vertical trunk position during the squat, which is what is recommended for low back health and reduced loads on the knees.\n\nTo summarise all of these points:\n\nFoot position advice should be more about where they land naturally in relation to the pelvis and width of stance.\n\nFootwear advice should always consider everything above the foot, as well as foot function, in relation to the individuals biomechanics rather than shoe ‘fashion’ or a generic concept of what should be worn.\n\nWe are all different!!!\n\nThe Squat Part 5/6 – A short one on the question of belt or no belt?\n\nLearn how to assess how the pelvis influences the knee &amp; foot during squatting in a practical 2 day workshop with No Exams!\n\n<a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics/\">REGISTER YOUR INTEREST HERE</a>','The Squat Part 4/6','','inherit','closed','closed','','1023-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1023,'https://biomechanicseducation.com/?p=38904',0,'revision','',0),(38905,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','Biomechanics Coach™ Dictionary of Definitions\n\n<i>Normalised</i> = a level and moving pelvis and spine\n\nWe as Biomechanics Coaches™ work to a pyramid approach of exercise prescription. Normalise is the first tier of that pyramid. Without Normalisation, core training could be ‘gluing’ us/our clients into a wrong position or dysfunction.\n\nOur concept is based upon the idea that muscles, joints and nerves all affect each other through the Integrated System. The iMoveFreely® programme provides techniques to effect the entire system through each individual sub system.\n\nThe initial series of iMoveFreely® techniques, to assist Normalisation, consists of muscle releases (or anti spasm exercises) based on Ribot-Ciscar’s work (1991).\n\nThen there are also some very cool nerve mobilisation techniques based on David Butlers (The Sensitive Nervous System, 2000)\n\nwork that allow the nervous system to find its ‘normal’ range should it be tethered down in some way.\n\nThen our ‘pure’ joint mobilisation approach is modified, from much of what is seen in our industry today, to very isolated joint mobility in an attempt to encourage the parts that don’t move well to move more freely.\n\nThe common way for mobility to be performed is often <i>cheating</i> us of improvement. If you ask your client to rotate their thoracic spine, to improve thoracic spine rotation, they will do whatever they can to perform that movement. Chances are that will include scapular rotation and possible some movement at the hips. The extra movement allowed at the scapular and hips creates the <i>effect</i> of great ROM, and is indeed a more ‘functional’ way to move. However the parts of their bodies that move well can actually limit the joints that don’t move so well from improving.\n\nSo while functionally we probably do want to rotate using all of these areas, if one portion isn\'t doing it’s part, we are at risk of an injury occurring from the overload in the other areas.\n\nWe can say we have <i>‘Normalised’</i> someone once their pelvis and spine are moving correctly, for that individual.\n\nLearn how to Normalise yourself AND your clients\n<a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics/\" target=\"_blank\" rel=\"noopener\">REGISTER YOUR INTEREST HERE</a>','Are You Normalised?','','inherit','closed','closed','','1017-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1017,'https://biomechanicseducation.com/?p=38905',0,'revision','',0),(38906,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','It depends!\n\nMuscle spasm, nerve tension, stiff joints, inhibited muscles, tightness are a few common (not normal) dysfunctions we and our clients may experience due to our lifestyles today.\n\nEach of these impact and relate to each other as our body is an integrated system AND a true master of compensation.\n\nWhen you consider that the nervous system sends messages to the muscles to move them, the muscles create tension and pull on the bones as levers to produce movement and that this movement is noted by the proprioceptors, controlled by the nervous system, it would be prudent to accept that a problem in one area can directly influence another, don\'t you agree?\n\nSo What?\n\nSo how does that influence YOU as a PT or exercise professional since we are not trained to diagnose, nor treat, nor in many cases even assess these things in our clients?\n\nWell it would most certainly influence your exercise choice since these type of issues can result in injuries, eventually BECOME painful, also limiting, when we ask clients to move we may see strange things happen AND eventually they can also result in more clinical issues like RSI, sciatica, disc herniations, impingement issues and ligament problems etc.\n\nIn fact WE are perfectly placed to reduce these risks and prepare our clients better for movement since we see them regularly for exercise advice. So if we can recognise issues like these and address them BEFORE they become a more clinical issues this would be a great thing wouldn\'t it!?\n\nOne example of this is the common issue of \'tight\' hamstrings which we hear all of the time. Maybe your client, or even YOU, have apparently \'tight\' hamstrings that do not seem to improve even when stretched religiously?!\n\nDuring our professional education we are trained to stretch short or tight muscles however this is assuming that they are in fact \'tight\' (see previous blog ASSUMPTIONS).\n\nIf you are stretching and your hamstrings and they are not improving then it might be smart to consider that they may actually be \'hanging on\' for different reason!\n\nWhat\'s the problem?\n\nOne of the most common intrinsic biomechanical issues relating to hamstring problems is when the sciatic nerve becomes tethered. The sciatic nerve runs down the back of the leg in close relationship with the hamstring\n\nNow this tension, as mentioned, is often not a clinical issue (although if unaddressed can become one), you may have no pain but simply notice limited range and restriction.\n\nSo WE as PT\'s and exercise professionals are really best placed to understand how to assess and correct dysfunctions like mobilising and improving range though the nervous system which includes the back of the leg.\n\nWe will be directly influencing these areas when we ask our client to squat, deadlift, down dog, burpeez or even sit down, so should we not be preparing areas like the nervous system for these moment too?\n\nOften the tethering can be caused by muscle spasm in the pelvis - muscles like piriformis, which also has a close relationship with the sciatic nerve, and this then restricts the range available to the nervous system with movements around the hip like hip flexion. for example.\n\nUnaddressed this can result in more clinical issues like Sciatica which go beyond our remit and require us to refer to a good therapist.\n\nWhat can WE do?\n\nA combination of muscle releases and sciatic nerve mobilisations are a good way to find your hamstrings true full range. If we use a more subtle approach it can have astounding affects and in my professional experience it more often than not does!\n\nIt is not ALL about stretching!!!\n\nLearn how to assess the sciatic nerve AND release it...\n\n<a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics/\">CLICK HERE</a>','Stop Stretching?','','inherit','closed','closed','','1014-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',1014,'https://biomechanicseducation.com/?p=38906',0,'revision','',0),(38907,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','It seems a lot, if not most, people use assumption in our industry.\n\nWhy are articles also often written based on assumptions?\n\nAlso why do a few of the people who read <a href=\"https://www.www.biomechanicseducation.com/blog/\">MY articles</a> make assumptions about what I am actually saying, even when I\'ve clearly stated the example specifics for clarity of explanation?\n\nSO WHAT?\n\nWell within <a href=\"https://www.biomechanicseducation.com\">our courses</a> we discuss the idea that the body is a master of compensation and it does so for a variety of reasons AND in a variety of ways.\n\nWe use words like to desire the compensations like;\n\nSub-clinical Muscle Spasm\n\nImmobility\n\nTightness\n\nInhibition\n\nInstability\n\nWeakness\n\nNow MOST professionals know how to address the above with these interventions;\n\nRelease/ anti spasm\n\nMobilise\n\nStretch\n\nUn-inhibit\n\nStabilise\n\nStrengthen\n\nThese are all techniques that are all relatively simple to do and understand right?\n\nSo what\'s the problem?\n\nWhat is it that makes these interventions so controversial, problematic and debatable in, not only articles, but also in practice?\n\nWhy are many still making the error of assumption?\n\nWell its pretty tough to truly objectively KNOW which of the above problems is present.\n\nIn other words …..\n\nis ‘it’ WEAK or INHIBITED?\n\nis ‘it’ TIGHT or IN SPASM?\n\nis ‘it’ UNSTABLE or WEAK?\n\nis ‘it’ INHIBITED or TIGHT?\n\nEach of these examples can easily be mistaken for another and yet the corrective techniques could be contraindicating should the wrong one be prescribed. For example if you try to stretch a muscle ASSUMING it os TIGHT but in fact it is inhibited or in spasm as a protective mechanism, it could react by ‘holding on’ even more.\n\nA common issue might be the appearance of ‘tight’ hamstrings that are ‘held’ short so to speak. Quite often the sciatic nerve can be ‘tethered’ by dysfunction somewhere else, this creates nerve tension therefore the hamstrings ‘hold on’ to a shorter position, due to their close relationship with the sciatic nerve, to protect the nerve which is lacking its full capacity.\n\nNow consider if you tried to \'stretch\' this apparently ‘tight’ hamstring..!\n\nSo what should we do??\n\nObviously <a href=\"https://www.biomechanicseducation.com\">screening</a> helps but even then the screen may identify there is a problem but not which one exactly as they can ‘appear’ the same.\n\nSo possibly all we are left with is to prescribe the safest, or least contraindicating, technique first to reduce risk.\n\nUsing the lowest grade methods is surely the wisest move, don\'t you think?\n\nIn the same way a therapist might release or rub the antagonist to the injured muscle to more safely influence a damaged agonist we could consider similar concepts for clearing dysfunctions.\n\nBlood flow is key and can still be encouraged through very subtle means or even more aggressive methods.\n\nAn example of a subtle intervention might be a l<a href=\"https://www.biomechanicseducation.com\">ow grade 20% muscle</a> release technique (Ribot-Ciscar,1991) whereas something like stretching might be seen as more aggressive by comparison.\n\nSo surely it makes sense to START with the subtlest option?\n\nWhat are you thoughts?\n\nAlso let me know your thoughts on the concept of maintenance and developmental stretching as taught on personal training courses verses other methods of improving muscle function?\n\nEMAIL ME rachel@biomechanicseducation.com','Assumptions','','inherit','closed','closed','','940-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',940,'https://biomechanicseducation.com/?p=38907',0,'revision','',0),(38908,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','Something that brings me an immense amount of joy is hearing from people who have been through our academy and are thoroughly enjoying implementing the system we provide.\n\nJane Thomas is one such person and she has even written an article about it which I would like to share with you……\n\n<i>We Pilates teachers know our core, we know our balance and we know our alignment ... right? So how come we can get people to recruit their deep core muscles and do all those magnificent Joseph Pilates moves with the all singing, all dancing, spinning plates and humming the theme tune ... and yet they still wake up in the night with hip pain, or their lower back becomes uncomfortable if they sit at their computer for too long, or they come back from their run and their hamstrings feel tight and their calf muscles go into cramp? How come, eh?</i>\n\n<i>Because of course there is more to it, and as wonderful as Pilates is ... and believe me I am passionate about my Pilates and my teaching ... we know that there is always something else that needs to be taken into consideration.</i>\n\n<i>I had been happily teaching Pilates for 12 years doing mat work group classes and 1–to–1 training at my studio, and I loved what I was doing and the results I was getting with my clients. But because the left and the right side of my brain is fairly evenly balanced my left side, the analytical side, was always questioning that there could be more I could do to help my clients keep moving. Luckily for me I found the Biomechanics Education courses and in 2012 I began my training with them. Honestly, it was a bit daunting on the first day, for a couple of reasons, one I was a bit older than most of the other participants, and secondly I struggle to remember every single muscle name, its origin and attachment, in detail, and I knew this would be tested. But hey, stepping out of my comfort zone and into scary s**t zone for a few days wouldn’t do me any harm!</i>\n\n<i>Almost immediately I recognised the missing link for me — what’s the point of having a strong core if it is holding your pelvis in a dysfunctional position.</i>\n\n<i>In other words, if your pelvis is tilting and twisted your strong core will simply help to keep it tilted and twisted if there are muscles in spasm holding it there, and your movement will continue to be inhibited with muscles trying to produce movement they aren’t designed to do.</i>\n\n<i>Our intrinsic biomechanics system — how our muscles produce movement — needs our attention. Our pelvis needs to be in a position to enable the right muscles to do the right job. After that everything begins to function correctly: we can stretch effectively and we can work on our core strength to maintain this; then movement becomes more free. In other words — and in the words of <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaches™ </a>— we normalise, we stabilise, we functionalise. It all made complete sense.</i>\n\n<i>As the training days progressed my clients kept popping up in my head as I realised what I needed to do with them in order to give them those marginal gains that would make huge differences to how they felt and how they would perform and function.</i>\n\n<i>Since using the techniques and offering this facility to my clients it has made the Pilates so much more important and so much more effective as our 1–to–1 bespoke training programmes have become more specific and tailor-made. When we say our Pilates packages are bespoke, they really are bespoke, as a result of using <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaching™</a>.</i>\n\n<i>The training courses give you a depth of the knowledge needed to take your work to the next level. If like me, you are passionate about keeping people moving and active, intrinsic biomechanics training provides you with the scientific knowledge to do exactly this.</i>\n\n<i>Our clients are fully benefiting from our packages too. One client said that as a result of her programme her sons had told her they felt they had their old mum back, because she was moving more freely, more active, doing the things she wanted to do with them that she had stopped doing due to pain. Plus I feel that I continue to learn as I practice my <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaching™</a> and my teaching of Pilates has taken another step up because of this added knowledge. My aim is to get all my instructors qualified as <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coaches™</a>, so that our bespoke Pilates/intrinsic biomechanics Programmes are our standard package, which will fully benefit all our clients.</i>\n\n<i>Jane Thomas is a Pilates teacher and <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Specialist Biomechanics Coach™</a></i>\n\n<i>Would you like to become a <a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">Biomechanics Coach™</a>?</i>\n\n<i><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">READ MORE</a></i>','Where Form Meets Function!','','inherit','closed','closed','','936-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',936,'https://biomechanicseducation.com/?p=38908',0,'revision','',0),(38909,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','If you were to google ‘<i>professional</i>’ these are the kind of definitions you would get;\n\n<i>relating to or belonging to a profession.</i>\n\n<i>worthy of or appropriate to a professional person; competent, skilful,  </i>\n\n<i>engaged in a specified activity as one\'s main paid occupation rather than as amateur</i>\n\n<i>a person engaged or qualified in a profession</i>\n\nBut how much do we actually really THINK about the real meaning of\n\n<i>professionalism</i>? It is a term that we tend to use quite often in our industry and yet what FEELING does it give us when we are describing someone who is <i>professional</i>? What image does it conjure up for you?\n\nCompetent, skilled?\n\nQualified?\n\nLooks the part/smartly dressed?\n\nSpeaks well/nicely?\n\nKnows their stuff/ is intelligent?\n\nThink of a moment when you FELT that you received a truly <i>professional</i> service and ask yourself;\n\n“What was it exactly that I appreciated?”\n\n“How did it make me FEEL &amp; why?”\n\n“What made my experience feel like the provider was being a true <i>professional</i>?”\n\n<b>Now ask yourself;</b>\n\n“What could I do to make MY clients FEEL like that?”\n\n“Is that the kind of service I already provide?”\n\nDo you GIVE what you would EXPECT from someone YOU receive a service from?\n\nWhen you REALLY think about it, it is more often than not the small stuff, right?\n\nFor me personally its definitely the small stuff….you can be competent, qualified, intelligent and sound like you know your stuff, you could even be super SUCCESSFUL!\n\nBUT the WAY you do something means a hell of a lot more.\n\nThe best mark of a TRUE <i>professional </i>in my opinion is someone who GOES THE EXTRA MILE.\n\nThis isn’t necessarily at any extra cost to the client nor immediate benefit to you, other than making the client happy or happier.\n\nWhat I would like to do is give you some examples of what I believe to be TRUE <i>professionalism</i> at its best including some of my own personal experiences and why.\n\nFirstly let’s take eating out as an example we should all appreciate.\n\nImagine YOU just ate the best food you have ever tasted but the service was awful. The waiter BEHAVED like you were unimportant to them and like they didn’t want to be there bringing your food.\n\nHow would that make you FEEL? Chances are you would be dissatisfied, wouldn’t you? How many friends would you tell about the bad <i>unprofessional </i>service?\n\nAnyone can cook a meal but its the EXPERIENCE we PAY for, don’t you agree?\n\nEven food that ISN’T that great but comes with a <i>professional</i> service and great attitude can save the evening, or even still be enjoyable should the waiter be accommodating, or apologetic for example, which demonstrates that they CARE how you FEEL.\n\nSomething I was taught in my very first job as a silver service waitress was by someone who, if I am honest, scared me stiff, however she ran an extremely popular restaurant that was reputed for its high end service and <i>professionalism.</i> This was what she literally demanded of ALL the staff\n\n<b>The customer is ALWAYS right!</b>\n\nNow I know you have heard that before and it is not new to you but again, what does it mean exactly ?\n\nBecause of course clients are NOT always right and more often than not its the very fact they are wrong that they are seeking your help, am I right?!!?\n\nBUT even when they are wrong we don’t necessarily TELL them that or at least we should consider how we make them feel, using our best EMPATHY skills. This can be the underpinning skill that makes you THE most professional person in your area.\n\n<b>Can you truly empathise with your clients? I mean TRULY ?</b>\n\nWhen someone has low self esteem are you able to sense that and make them feel good about themselves?\n\nDo you remember your clients birthday and buy them a card or even just text, email or call to say Have a nice birthday?\n\nDo you take joy in committing random acts of kindness for clients ?\n\nHow far would you go to make a client happy?\n\nWould you even provide or do something that actually COST you to simply make a client happy?\n\nIn his book ‘CRUSH IT’ marketing &amp; social media expert, Gary ‘VEE’\n\nVaynerchuck, describes a time when there was a problem with a wine order for an elderly client who was expecting a delivery of wine around the festive season and there was no way his team could organise a courier in the snow at that time of year in time for this client to get her order.\n\n<b>Do you know what he did?</b>\n\nHe personally drove hours and miles in the snow to deliver that order right to her door himself. Costing him a long day of his own time and way more than the order would commercially make his company.\n\nBUT..\n\nGary wanted to prove a point to both his team and his client that he would go to great lengths to demonstrate the ethos of his wine company, that <i>professionalism</i> was a priority when it came to customer service and CARE.\n\nI LOVE that story because that is how I feel about <i>professionalism</i> and I really hope it comes across to my clients that I would go to great lengths to make them happy.\n\nHowever when you love your job and love your clients, driving miles in the snow on your day off can still bring YOU pleasure to know your client is happy.\n\n<b>Isn’t that what makes YOU happy? Making others happy?</b>\n\nEven when working with a business partner or another company things that mean a lot to me are the indications from them that I am important to them. <b>Susan Findlay of North London School of Sports Massage</b> is one of THE most <i>professional</i> ladies I have ever come across.\n\nIn the last 10 yrs I have contacted, organised and hired many venues for use as a classroom and if I\'m honest it has been the bane of my life too!\n\nWhile some individuals have been helpful or polite and have even offered an adequate service, I knew I was just another client. I was always nervous driving to the venue, worried if everything was going to be provided as expected, the space would be ready, available etc. Inevitably and sadly it often went wrong.\n\nPeople like SUSAN, and her entire team, offer a service that not only makes me feel like they CARE but the give me confidence in them providing exactly what they promised when I book and hire their venue. I KNOW they will ALL go to great lengths to make me happy as their client. Having that TRUST demonstrates professionalism. So much so that I feel strongly enough that I want spend my morning writing about it!\n\n<b>HOW exactly does Susan do that?</b>\n\nA room containing the equipment I need\n\nA bowl of fruit or packets of biscuits being left for my learners to help themselves to\n\nEffort to provide information well in advance when there was some building work limiting the parking\n\nThe staff arriving early to allow me entry so I can set up\n\nPrompt replies to emails and questions\n\nPhone calls to check if I need certain equipment so that they can provide alternatives if they do not have it ALL the above ALL the time over and over again.\n\nNow read back and consider the actual COST of all of those things.\n\nMany of them COST nothing but she ALWAYS delivers her promise because she knows how important that is to me!\n\nSo what does <i>professional</i> mean to YOU as PT’s, exercise <i>professionals</i> and fit pro’s?\n\nOK so you can deliver a PT session really well, you can name the attachments sites for quadratus lumborum, you know a like a million exercises for the quads, you can list all the foods that contain iron and of course you LOOK the part in your branded kit!\n\n<b>Does this make you <i>professional</i>?</b>\n\nSending a text or a birthday card, treating someone to a bite to eat or a beer, actually answering your emails and texts is respectful let alone <i>professional</i>, remembering personal details for their benefit - these small inconsequential things can actually demonstrate to someone that they are valued by you because you thought about them or spent extra time with them.\n\nSo ask yourself.......\n\n<b>Exactly How <i>Professional </i>Are You?</b>\n\nWould you like to join a community of <em>professionals</em>?\n\n<strong><u><a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\" target=\"_blank\" rel=\"noopener\">READ MORE</a></u></strong>','How Professional Are You?','','inherit','closed','closed','','873-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',873,'https://biomechanicseducation.com/?p=38909',0,'revision','',0),(38910,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','WOW what a great weekend eh! How did you spend yours?\n\nWere you learning?\n\nRelaxing in the sun?\n\nSeeing family?\n\nDoing some crazy obstacle racing event?\n\nOne of the important lessons I have learned like most of us, from getting it wrong sometimes, is to get a balance of all of the above by remembering these 2 things I would like to share with you;\n\n<strong>The 4 Legs of Life</strong>\n\nThe ‘quantity’ of each of these may differ for each of us but we should all be mindful to consider how happy we are in each of these areas and maybe what we could do to improve the ones we neglect;\n\n1.Family\n\n2. Healthy nutrition\n\n3. Exercise/recovery\n\n4. A job you love\n\n<strong>The 3 x R’s</strong>\n\nHave you ever considered that ‘recovery’ comes in different forms and we actually may need a balance of each?\n\n<em>Rest</em> - Take a minute - this could be sitting down for a moment or stretching your legs if you work at a desk.\n\n<em>Relax</em> - Socialise, chill with friends or family or a bit of tv, something that takes your mind away from work.\n\n<em>Recuperation</em> - Sleep - plenty of it where possible!\n\nFor me this weekend was for enjoying my job and so after 2 days teaching knee &amp; foot biomechanics in London, I spent Saturday with 7 fantastically passionate and knowledgeable professionals discussing iMoveFreely® techniques for preparing or participants for our group exercise classes.\n\nAll thanks to Jayne Nicholls, GXTraining Ltd who is our partner for this workshop.\n\nThen the awesomely sunny Sunday was another IBA Discover Day workshop with the members and we had a guest with us too, since all professionals are welcome!\n\nThought I would share our IBA Discover Day workshop day with you so you might see how much there is to take way from these mini workshops - including CPD’s from both REPS and STA.\n\n10:00-10:10am - Welcome &amp; plan of the day - attendees were asked to write down what they wanted to gain from the workshop as part of registration as usual .\n\n10:10-10:20am - Introductions - finding out who we are networking with.\n\n10:20-10:30am - Up Dates on partnerships &amp; collaborations this year that offer IBA members special rates.\n\nWe also discussed the list of new one day workshops Biomechanics Eduction is hoping to put together to expand their portfolio.\n\nAdvanced Movement Analysis\n\nTennis Biomechanics\n\nSwimming Biomechanics\n\nRunning Biomechanics\n\nCycling Biomechanics\n\nOlympic Lifting Biomechanics\n\nBand workshop for equipment specialised function drills\n\n10:30-10:35am - We discussed all the benefits of being an IBA member including;\n\nIBA Discovery Day workshops (Aug 20th Lboro Uni, Nov 12th Scotland)\n\nMentor support\n\n*£150 voucher towards your education (*upon purchase of a 2 day pelvic biomechanics workshop)\n\nOur cool branded T shirt - one for every year of your membership!\n\nDiscounted rate &amp; priority access to TMC\n\nPriority access to events, with opportunities to shadow present &amp; demo screens\n\nDiscounts on partner courses, products &amp; equipment\n\n10:35-11:00 - Business section - This is where we discuss questions relating to business, stern up, marketing, selling and promoting what we do. We considered 3 questions put to us by our marketing specialist, Chris Wright of www.Level10Living.co.uk;\n\nDo you want to take your business to the next level?\n\nDo you want to earn more?\n\nDo you struggle to get new clients?\n\nChris has become an invaluable asset to Biomechanics Education ltd, to support our learners beyond their technical skill training. Many of our learners are (or are looking to become) self employed and feel in need of more evidence based ideas and techniques on exactly how to market their new skills, how to stand out in their area, charge more, be happier, an increased confidence in what they are doing and, the much coveted, MORE FREE TIME!\n\nThe techniques Chris teaches have done that for me and he is now also offering to our academy learners.\n\n11:00-11:10am - This was our technical section were we discuss theoretical anatomy and technical issues with clients.\n\nQuestion 1:  “Can clients get worse before they get better?”.\n\nIn response we talked about the fact that if someones intrinsic biomechanics have been out of alignment, they have had a twisted or rotate pelvis due to compensations from their lifestyle for example their brain may have become familiar with this asymmetry and so not sensed a problem as such.\n\nThus when the pelvis is de-rotated, or function is corrected the brain senses a change and alteration in loading through the joints and tissue this can potentially mean the client feels different, off centre, or even a little more uncomfortable temporarily. With close monitoring and re-assessments confidence should be restored for both practitioner and client as measurements improve. If not refer onto GP or a therapist who can offer further tests.\n\nThe other consideration might be that while you may have prescribed an exercise, and particularly when its a very low grade one, the client might perceive this as the cause of their discomfort. However upon further questioning it become obvious they didn’t account for other things that are more likely influence our biomechanics like;\n\nnew shoes\n\nan event the day before\n\ncarrying heavy shopping\n\nsleeping funny or in a strange bed\n\na day of gardening\n\na heavy night out\n\nSo we should always set up an appropriate level of expectation for our clients from our consultation and then our continuous re-assessing, questioning and evaluating of all the things they do that can influence how they feel.\n\nQuestion 2: “what direction should our feet point during the squat?”.\n\nWhile we did discuss this, there is a Juicemail on its way that explores this very point. However I also suggested that individuals might be able to form an idea for this during the next section as we look at foot and ankle biomechanics.\n\n11:10-12:00pm - This was our practical section and of this workshop the emphasis was on foot biomechanics.\n\nWe began by looking at the main bones and joints:\n\nCalcaneous - heel bone\n\nTalus - sits onto of the calcaneous and underneath the fibula and tibia.\n\nSubtalar joint - the joint surface between the talus and the calcaneous.\n\nWe discussed the tri- planar motions of pronation and supination and the fact we NEED BOTH to happen:\n\nPronation = dorsiflexion, eversion, abduction is for shock absorbtion\n\nSupination = plantarflexion, inversion, adduction is for propulsion.\n\nAlso the potentially misguiding phrase \'OVER pronation\' might be more accurately described as \'LATE supination\'.\n\nWe practiced the Jack’s test of the windlass mechanism which demonstrates whether your clients foot has the CAPACITY to re-supinate.\n\n12:00-12:30pm LUNCH BREAK\n\n12:30-1:20pm - Back to the foot and we looked at the alignment test. This uses the 2 talus ‘heads’ to locate a neutral position on the client while weight bearing. Once we find that ‘neutral’ position, we ask the client to relax and see what movement occurs at the foot and ankle.\n\nWe also discussed what could be done (if anything) by an exercise professional to contribute to improving foot/ankle function. With clini-bands we tried some simply but very challenging exercises which one of the attendees found virtually impossible due to his limitations so we adapted it into something he should be able to manage and to improve his foots ability to pronate - since he is a ‘supinator foot type’ and lacking an ability to dissipate shock (pronation) during the gait cycle.\n\n1:20-1:35pm - We shared some of our best case studies/client experiences and looked at some \'before and after\' shots of some athletes who have been through the iMoveFreely® programme with a qualified Biomechanics Coach™.\n\n1:35-1:50pm - At this point we put 2 very important dates in our diaries - Friday 7th Oct Biomechanics Coach™ training camp 1-5pm &amp; Saturday 8th Oct The Movement Convention 9-6pm both held at Loughborough University.\n\n1:50-2:00pm - The shop opened and orders were placed for branded clothing and quadrant mats.\n\nThis workshop ended way too soon again even though the sun was still shining outside!\n\nWould you like to join us for our next IBA Discovery Day workshop Sat 20th August at Loughborough University for free?\n\n<a href=\"https://www.www.biomechanicseducation.com/membership/intrinsic-biomechanics-association-membership/\">FIND OUT MORE</a>','The 4 \'Legs of Life\'','','inherit','closed','closed','','856-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',856,'https://biomechanicseducation.com/?p=38910',0,'revision','',0),(38911,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','<b><i>Intrinsic Biomechanics for Personal Trainers, Pilates and Yoga teachers</i></b>\n\nYou as Personal trainers, Pilates or yoga teachers and other exercise professionals are well educated in how to teach exercises. There are many courses available to learn this critical skill, however I bet sometimes you feel anxious about whether you chose the right exercises for some of those tricky clients, right?\n\nDo you have the tools to assess your clients to identify which are the best gym and free exercises to perform relative to their personal biomechanical needs? And when the client has low grade back pain for example, do you feel confident about training them safely?\n\nDo you feel you need a simple system to fill this critical gap and answer some of those common questions?\n\n<b>The Health Continuum</b>\n\nYou need to identify where your clients are on a ‘health continuum’, which is a scale from, potentially illness/injury to wellness and on to higher performance over time. Your clients will be somewhere on this scale and you need to find out where they are before you can prescribe their conditioning exercises. Most exercises are suitable to most people; the problem is that invariably they are prescribed at the wrong time. For example, lunges can help some people and hurt others.\n\nIf someone has a rotated pelvis and a leg length discrepancy with associated muscle spasm in their hips, then lunges will most likely not be good for them. If they are functioning correctly around the pelvis, then lunges shouldn’t encourage injury or pain. That is one simple example demonstrating why some of your clients can do some of the exercises you prescribe, but others can’t.\n\nTo be able to identify where your clients are on the health continuum, you need to perform an intrinsic biomechanical assessment. These assessments are simple to perform and can take as little as 10 minutes. Once you know where they are on the health continuum then you can progress them through a sequence of exercise progressions.\n\n<b>The Biomechanics Coach™ System</b>\n\nIn the Biomechanics Coach™ system, these progressions start by improving your clients inner system by ensuring their fundamental pelvic and spinal mechanics are ‘Normalised’ and level to provide the foundation for normal movement.\n\nIn this first phase any muscle imbalances are corrected with simple release techniques and tight nerves are sorted out using nerve mobilisations. This phase is referred to as \'Before the Core\', because typically people will start their early exercise programmes with core stability-type exercises and they are simply not ready. That is why Pilates helps some people and hurts others.\n\nMany Pilates Instructors are recognising they dont want to stabilise someone in a biomechanically incorrect position. So \'Normalise\' them first, then \'Stabilise\' them. If we are not careful all we are doing is training people to compensate for their biomechanical problems rather than training correct movement patterns.\n\nSo, once the Normalise Phase has been completed the client is then progressed to the next stage which gives them the ability to consolidate and learn new motor programming strategies in the ‘Stabilisation’ phase. Here they are progressed through a series of isolated stability exercises and then work towards more functional stability patterns.\n\nThe final phase is where they learn to use their new motor programming strategies in a more functional way and then progress on to functional velocity training. Here they work towards the functional patterns and velocities that are relevant to their ‘purpose’.\n\n<b>Philosophy</b>\n\nWe should always be challenging the latest \'current\' thinking. Just because something new, like functional training and perhaps Pilates comes along to the industry, does that mean all the work you’re doing at the moment doesn’t work anymore? Of course not, it just means we have something else to integrate into what we are already doing, not necessarily discredit them.\n\nThe industry is often seduced by the \'next big thing\', but invariably this is simply another way of achieving certain targets for your clients, not necessarily the ONLY way and it certainly doesn’t mean you should be forgetting what you were doing - unless it’s been directly disproven. Nothing should ever be done in isolation, as the exercise model suggests, a series of progressions is the most effective way to progress exercise.\n\nWe should focus our attention to real issues, and using all the proven methodologies available to us, answer questions like,:\n\n•    How do I know which exercise to give to my clients – how do I know which will help them and which will hurt them?\n\n•    Apart from increasing the number of reps and sets, how should I be progressing my client’s exercise programmes?\n\n•    Why choose one particular exercise over another that seemingly does the same thing?\n\n•    Should I be using gym balls in their training and if so, when?\n\n•    Should I be using machines anymore? Are they ‘functional’? Does that matter?\n\nIt is often difficult to answer these questions for all our clients with any degree of honesty and accuracy with the assessments that are in place at the moment. Until the industry’s understanding of intrinsic biomechanics and its implications to exercise prescription is better understood our exercise prescription will not be as good or as safe as it should be.\n\nHave you ever asked yourself any of these questions?\n\nAre you a PT?\n\nDo you teach Pilates or Yoga?\n\nWould you like to experience some of the Biomechanics Coach™ System?\n\n<b><a href=\"https://www.biomechanicseducation.com/biomechanics-coach/\">READ MORE </a></b>','What? When? Why?','','inherit','closed','closed','','853-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',853,'https://biomechanicseducation.com/?p=38911',0,'revision','',0),(38912,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','<b>Back Squat v Front Squat</b>\n\nWhich is better for the knees?\n\nThinking in terms of loads and forces, there are compressive forces and shear forces to be considered here. When considering the knee, a compressive force will squeeze the cartilage.\n\n<b>The Knee</b>\n\nFirstly with regards to the knee during the squat there is a lot of evidence out there about what forces are being transferred through the knee joint and its structures. Things that need to be considered when referring to research are the health and biomechanics of the individuals, circumstances of the project and the limitations or variables of specifics to the research study. The difficulty is then for the reader to decipher what this may indicate for them as an individual. The translation of this information is often where things become distorted so I will try to be as precise as I can be with the information I have gathered, while generalising with safety in mind.\n\nQuadriceps, hamstring and gastrocnemius activity increases as knee flexion increases, which supports athletes with healthy knees performing the parallel squat (thighs parallel to the ground) between 0 and 1000 knee flexion. It is also demonstrated that the parallel squat is not necessarily a problem to knee health.\n\nFor those of you with healthy knees, the parallel squat is recommended over the deep squat (A2G or squatting down as far as possible until the posterior thighs and lower leg make contact with each other) because the risk of injury to the menisci and cruciate and collateral ligaments is likely to increase during the deep squat. The squat itself does not compromise knee stability though and in fact when performed correctly with good biomechanics, it can enhance stability. Large decelerations during the squat generate huge forces through the knees during the decent of the squat which is why this part of the movement should be performed in a slow and controlled manner to avoid higher risks of injury.\n\nFor those of you who find yourself ‘forward flexing’ or ‘trunk tilting’ the greater hip flexion has been shown to eliminate ACL stress, as stated above, mainly due to the increased hamstring activity. This could therefore indicate quadriceps dominance (Hewitt 2004). In other words the hamstring to quadriceps ratio is likely to require some form of conditioning of the hamstrings to regain a balance. What is paramount is what type of conditioning work and what must first be established is the reason for the imbalance in the first place.\n\nAt 60deg of knee flexion the forces in the knee joint change from greater posterior force to a greater anterior shear force which increases throughout the ascent. Hence performing squats at knee flexion angles of less than 900 will minimise the risk of knee injury.\n\nFry et al (2003) did a study looking at the effects of allowing the knees to move over the toes. This study found that while the NSCA cite the knees should be kept from moving forwards over the toes or to keep the trunk in an upright posture, in order to optimise the forces involved on all the joints, it may be a good thing to allow the knees to travel ‘slightly’ over the toes. This allows for a more even distribution of load through ankle, knee, hip and spine.\n\n<b>Squat width with regards to forces at the knee;</b>\n\nWhen considering the width of the squat it has been demonstrated that the wider squat has been shown to generate 15-16% significantly greater compressive forces through the knee joint than a narrow stance, McCaw et al (1999).Thus a narrow stance is a better choice if you wish to reduce the risk of compressive forces going through the knees.\n\n<b>To summarise on these points; </b>\n\nFor those with healthy knees a greater angle of knee and hip flexion is ok so long as the loads are not heavy. Periodisation techniques should always be used when performing the squat, in that the training is divided into light, medium and heavy cycles throughout the year. This also enables an individual to perform a variety of squat depths.\n\n<b>Next time: The Squat Part 4/6 – The Foot &amp; Footwear</b>\n\nFirstly I would just like to clarify part 4 relates to foot position not foot width (see part 3 for width)\n\nDo you worry about adding squats to your clients programme?\n\nDo you struggle to squat?\n\nDo you use the leg press because squatting hurts your back?\n\nWant to learn fundamentals about the pelvis when it comes to squatting?\n\n<b>Pelvic Biomechanics workshop COMING SOON!</b>\n\n<b><a href=\"https://www.biomechanicseducation.com/workshop/pelvic-biomechanics/\">REGISTER YOUR INTEREST </a></b>','The Squat Part 3/6','','inherit','closed','closed','','829-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',829,'https://biomechanicseducation.com/?p=38912',0,'revision','',0),(38913,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','You may recognise<b> Biomechanics Coach™ of the Month</b> <b>Josh Ford.</b> He wrote the recent golf article and has been nominated for BCTOM for his continued commitment to the profession, his specialism in golf and his commitment to continuous self improvement.\n\nNice work Josh!!\n\n<b>Your biography in brief;</b>\n\nI have been working in the fitness industry for 10 years now. After leaving school I played full time football for 3 years, with that I developed what can be best described as a habit for training and it seemed natural to go into the fitness industry. I have since qualified as a personal trainer, sports massage therapist as well as a Specialist Biomechanics Coach™. Having worked mainly as a personal trainer in a few different gyms, I am now back in the gym I started in, Total fitness Bolton.\n\nAlong the way, because of my Biomechanics Coaching™ skills, I have worked with professional golfers and football teams as well as amateurs of many different sports and these are the types of clients that I really enjoy working with.\n\nNow I have also achieved a career goal of a full time position with a professional football team. Sadly it was short lived however after realising that being involved as staff rather than a player was very different.\n\nOutside of work I am recently married, golf obsessed and a frequenter of as many food establishments as possible.\n\n<b>What made you choose Biomechanics Coaching™?</b>\n\nI first came across Biomechanics Coaching™ when Martin presented a seminar to a personal training company I worked for. First of all, I really enjoyed Martin’s style of presentation and his way of thinking, but the content is what really resonated with me. I then looked at the website, found out a little bit more and booked onto the course at my first opportunity.\n\nAt the time I didn’t have much of a plan to take it forward but I certainly knew I needed to have this knowledge and this better understanding of how the body works. And above all else I thought I owe it to my clients to be training them properly.\n\n<b>What do you specialise in outside of Biomechanics Coaching™?</b>\n\nI specialise in sporting performance, particularly golf and football as I play both of these which enables me to have a good understanding. Particularly golf as it a more popular discipline to train for.\n\n<b>Where would you like to see yourself in ten years from now?</b>\n\nIn ten years’ time I hope to be reaping the rewards of what I am building now. Currently I am working on a website to help golfers train properly with online coaching. Also I am studying hard to improve my knowledge of the actually golf swing, which is possibly the most complicated thing I have come across so it’s slow progress. However in 10 years I hope that it is up and running and profitable.\n\nIt would be great to have a few high profile clients whose intrinsic biomechanics I could work on, preferably PGA tour players. This would nicely raise my profile and get the word out about the magic of Biomechanics Coaching™.\n\nI would also like a have plenty of spare time to spend with the wife, hopefully a family and play golf of course.\n\n<b>What would be your advice to somebody thinking of becoming a Biomechanics Coach™?</b>\n\nTo anyone thinking about becoming a Biomechanics Coach™ I would say you really should do it. Most education within the fitness industry feels like an add on course but this is genuinely a new way and approach to exercise. You will get a far better understanding of how to train you clients safely, you will get better results, you will not lose clients due to injury and you will gain clients through reputation. It will, as it has done for me, open up a lot of other opportunities. The way of thinking you gain as well will certainly benefit you.\n\n<b>On the journey to where you are now what has been your achievements? </b>\n\n<i>Personally</i> a great achievement of mine is building a business that allows me to both enjoy my work and have plenty of time for my many hobbies.\n\n<i>Sporting </i>wise, an achievement of mine is making a hole in one in a pro-am event\n\nMy <i>career high</i> was consulting for West Ham United.\n\n<b>Tell us a secret or something interesting about you that not many people know about you:</b>\n\nA secret might be that I play the guitar pretty well but it’s not that interesting so I should admit.\n\nIf I didn’t enjoy what I do so much, I would like to be a traffic warden, no joke!\n\nLOVE your honesty Josh!\n\nThank you and well done....would you like to join our academy and gain some of the skills Josh has?\n\n<a href=\"https://www.www.biomechanicseducation.com/\"><b>READ MORE</b></a>\n\n&nbsp;','\"I Would Like To Be A Traffic Warden\"','','inherit','closed','closed','','826-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',826,'https://biomechanicseducation.com/?p=38913',0,'revision','',0),(38914,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','<b>PGA advisor, Martin Haines</b>, delivered the extremely popular <a href=\"http:/\">Golf Biomechanics</a><a href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\"> workshop</a> for us recently. We had PGA trained golf coaches, next to PT’s, next to manual therapists, next to Biomechanics Coaches™ all discussing ways to help their clients <i>hit further</i>. <i>Hitting further</i> ultimately being the aim for anyone involved in improving theirs, or their clients, game.\n\nWe discussed swing faults, slicing, the ‘ideal’ planes for the swing and we also looked at video footage of pro level golf swing variations.\n\nThen we discussed shoulder function, common limitations, influences of these on the swing and how to correct them. Also how thoracic rotation limitations can dramatically decrease velocity through the swing and how to correct it. There was considerable discussion about pelvic function and how a common dysfunction like a leg length discrepancy can change the swing and weight shift AND of course ways to correct a ‘functional’ leg length discrepancy. Finally we explored core strength and its considerations for golfers.\n\nThe 16 attendees were set tasks throughout the day to work out what, in each of these intrinsic problems, might influence what we see during the golf swing and how each might limit velocity, therefore limiting <i>hitting further</i> - the ultimate aim in golf.\n\n<b>Josh Ford is a </b><b>Specialist Biomechanics Coach™ </b>and attended this Golf Biomechanics workshop several years ago with Martin. He also has a special interest in playing golf himself and helping golfers improve there game. Here he raises some interesting points and explains the above much better than I do!\n\n<b><i>Weight Shift, Piriformis &amp; Lots of Dollars!</i></b><i>\n\n</i><b><i>The value of the weight shift in golf;</i></b>\n\n<i>The weight shift (also known as weight transfer) is widely acknowledged as a fundamental part of a good golf swing. According to Chuck Quinton, a successful golf instructor based in Florida, 14.4% more club head speed is added with correct weight shift. This will have a significant effect on performance. Being longer off the tee by this much will leave a shorter club when approaching the green, so instead of being 175-200 yards away, you may now be 125-150 yards. The nearer you are to the hole after your drive, the more likely you are to be closer after your second. And again, the nearer you are before taking your 3rd, the more like you are to get it in the hole or leave a ‘tap in’ for your 4th.</i>\n\n<i>Adam Scott, who is currently leading the PGA tour for earnings this season, when 175-200 yards has an average proximity to the hole of 24 feet 9 inches after his approach shot and is tied second in accuracy from this distance. When you get to the 125-150 yard mark the proximity becomes, for Adam Scott, 16 feet 6 inches, 3rd on tour. Okay so 9 feet doesn’t seem that much different but it can increase the amount of putts you hole, the more you hole, the lower the scores. </i>\n\n<i>Ernie Els who is top of the putting charts from 20-25 feet has a conversion rate of 25%. He is only 3rd best from the shorter distance but his conversion rate from 15-20 feet is 36%. 11% more putts made. After the longer tee shot and the second shot that has left the ball lying closer, the chances of making bogey (one over par) has diminished and there is a lot more chance of making a birdie (one under par) which can only lead to better scores. Put that into account over the standard 4 round competitions and assume it comes up only on the par 4s, which is around 10 of the 18 holes. Then there will be 3 birdies made per round instead of 2. That’s 4 shots per competition, which will be a massive difference in standings and earning. Again 1 shot per round doesn’t seem a lot but it’s the difference of this seasons current points leader Adam Scott and 45th place Jhonattan Vegas. Or money wise Adam Scott’s seasons earnings of $4,362,198 versus Jhonattan Vegas’ $535,612.</i>\n\n<b><i>What are the mechanics of the weight shift?</i></b>\n\n<i>The weight shift is simply the transfer of body weight from one foot to the other during the golf swing. Initially, as the club is drawn away, weight is partially shifted onto the right side as internal rotation of the right hip occurs. The amount of weight shifted varies from player to player and some players use a different technique called ‘stack and tilt’ which means no shift to the right, however a very high percentage of professionals will start by loading their right side. </i>\n\n<i>When the golfer reaches the top of his or her back swing, and in some cases slightly before, almost all of their weight will start to be shifted to the left side to initiate the downswing and the left hip joint will have moved from an externally rotated position into an internally rotated position as the golfer uncoils their spine. Intrinsically, if we have a leg length discrepancy, we can struggle with this fundamental of the swing. A functionally longer right leg can make it harder to shift our weight to the right during the back swing. Not only that, if your body is compensating by creating a scoliotic spine, then your facet joints can have difficulty in rotating easily, so we have noticed that the spine tends to side bend towards the hole to gap the facet joints and allow easier rotation - this can lead to a more upright swing. This changes the swing plane, club path and angle of attack and consequently the flight of the ball. </i>\n\n<i>A functionally longer left leg can make it difficult to get their weight back onto their left where they need to be for solid and well timed impact, and we have noticed that it can also cause them to lean their torso to the right in order to enable easier rotation of the spine.  This changes the swing plane, club path and angle of attack and consequently the flight of the ball. </i>\n\n<i>Another factor that will effect weight shift is if they cannot internally rotate either of their hip joints. This may reduce the normal weight shift and we have noticed that players sometimes slide their hips forwards instead, taking away the need for the rotation element. Also, with the golfers’ head needing to stay central over the ball and the hips moving over the left side on the downswing, the left quadratus lumborum would have to be functioning correctly. This should make it evident that having biomechanical dysfunctions can be inhibiting distance and therefore scores as well as affecting technique and therefore consistency. At the highest level of the sport, improving a players’ intrinsic biomechanics may only improve their scores by one or two shots over an event or even a season but those shots can mean millions of dollars in earnings. The lower the standard of golf, the more that golfers struggle with consistency and distance and therefor their need for biomechanical correction is still there and have a greater effect on performance.</i>\n\nWritten by;\n\n<b>Josh Ford </b>\n\nSpecialist Biomechanics Coach™\n\nRegister YOUR interest NOW in the <a href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\">Golf Biomechanics workshop</a> and take a priority place on the waiting list for the next one which we hope to run at Loughborough University later this year;\n\n<a href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\">CLICK HERE</a>','Weight Shift, Piriformis & Lots of Dollars!','','inherit','closed','closed','','813-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',813,'https://biomechanicseducation.com/?p=38914',0,'revision','',0),(38915,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','The plantar fascia is a band of connective tissue (rather like a ligament) which runs from the heel, along the bottom of the foot to the base of each of the toes. It fans out from the heel as it moves forwards to the toes and is a tough, fibrous structure.  Its role changes depending upon at what part of the gait cycle your foot is in contact with the ground.  Initially at impact it helps shock absorption and it stabilizes the metatarsals as you absorb shock by pronating your foot.  Then from mid-stance to push off it its helps to re-supinate the foot to make it more of a rigid leaver to improve the mechanical leverage to help propel you forwards.\n\nThe plantar fascia bears an immense amount of load when you run, in fact it has to deal with loads of up to 3 times body weight with each step and you can take as many as 90 steps per foot per minute when you run.  So an injury to the Planter Fascia can be very painful and difficult to rest, it is even loaded when you walk and stand.  It is therefore quite a common injury and occurs in about 5-10% of all running injuries and about 10% of those who see a doctor for the condition have the problem for more than a year.  It is therefore quite important to discuss how you can recognize it and the ways that you can help to manage it yourself.\n\nOutside of athletics, it affects mainly over 40’s and mainly women, but in athletics there are a number of causes that mean it can affect anyone.\n\nThe extrinsic (external) causes of plantar fasciitis include running on different surfaces, wearing inappropriate shoes, increases in body weight, as well as increased pressure through the plantar fascia as with a sudden increase in speed or hill training or block work.  Outside of athletics, if your job requires that you stand for prolonged periods, this can have a profound affect on the plantar fascia, as can being over weight, these are the two main causes of plantar faciitis in non-athletes.\n\nIntrinsic causes (internal factors within your body) of plantar faciitis consist of poor foot biomechanics (typically too much pronation or pronation that is too quick), tight calves (which can increase the amount of pronation in the foot), leg length discrepancies (which can cause the foot to over pronate), abnormal pelvic rotations (which can cause leg length discrepancies) and even tight sciatic nerves (which can cause a protective spasm of the calf muscles which can cause them to become inflexible).\n\nThe pain is usually felt just in front of your heel.  It is usually tender to touch and it is felt often in the mornings or after long periods without bearing weight through the foot.  As you walk about gently the pain usually subsides, but any over activity often aggravates it again.  On a day to day basis you can often feel pain if you misjudge a step and take weight through your forefoot rather than the whole of your foot, as the load is taken straight through the plantar fascia.  If you walk abnormally to avoid loading the plantar fascia, you can then get other symptoms as you load other structures abnormally, typically you can get pain on the outside of the foot, your knee and even your hip for this reason.\n\nWhen you have plantar fasciitis you can also develop a heel spur.  This is an area of calcium which is deposited within the plantar fascia where it suffers most damage, usually at the front of the heel bone.\n\nThere are a number of ways that you can help your plantar faciitis.  Some of these suggestions will help and others won’t, see which are best for you.  Calf stretching (with your knee bent and additionally with it straight), a temporary heel raise, applying ice to the affected area and massaging the plantar fascia can all help.  You may find it difficult to reach the sole of your foot to massage it yourself, so try sitting and putting your foot on a cricket ball pressing down on that while you roll the ball under the sole of your foot.  You can also try rolling your foot on a wine bottle or rolling pin in the same way.\n\nStretching the plantar fascia can also help.  Remember though, the plantar fascia is not a flexible structure, it stretches an additional 2% of its overall length when you take weight through your foot as you run, and it is this rigid spring-like action that is critical to its correct function.  So while we don’t particularly want to increase the flexibility of the plantar fascia, stretching can be helpful to improve its pliability and so its ability to accept load at higher speeds. Stretching the big toe upwards, while you are stretching the calf with your knee bent, can help with this.\n\nOrthotics can be very helpful when trying to manage plantar fasciitis, but do make sure you see a podiatrist who works closely with therapists who understand the biomechanics of the pelvis and spine.\n\nAnti-inflammatories, cortisone injections and surgery can sometimes be helpful but are not the first choice and all other possible options should be tried first.  In more severe cases there can be some relief from pain by using splints at night to gently stretch the Achilles tendon and the plantar fascia.\n\nPrevention is obviously important and you need to check the extrinsic and intrinsic causes listed above and deal with any of them that may be relevant to you.  You may also find that managing them will help if you currently have plantar fasciitis as this can reduce the load on the foot considerably.\n\nMartin Haines\nSpecialist Biomechanics Coach™\nChartered Physiotherapist\n\nAre you in London?\nAre you a PT? Pilates teacher? Exercise professional? Manual therapist?\n<span style=\"font-size: medium;\">Would you like to understand more about knee, feet and your client\'s plantar fascia?</span>\n\n<a href=\"https://www.www.biomechanicseducation.com/workshop/knee-foot-biomechanics-2/\" target=\"_blank\" rel=\"noopener\">READ MORE</a>','Plantar Fasciitis - What Is It?','','inherit','closed','closed','','803-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',803,'https://biomechanicseducation.com/?p=38915',0,'revision','',0),(38916,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','<b>Tom Waldron</b> really is a breath of fresh air!\n\nThis smart, fun and incredibly patient nice guy is super keen to share information, ideas and even a small part of his Biomechanics Coach™ Diploma theory assessment for you to see the kind of thing I read in these reports. This will also give those of you considering entering our academy an idea of what to expect.\n\nHere are some of the Diploma report assessment criteria;\n\n<b> 1 Produced a brief and succinct introduction to case studies (ie: age, ability level, sport)</b>\n\n<b> 2 Give a brief account of all case studies in no more than 2000 words </b>\n\n<b> 3 Describe the strengths of the screening process and where it worked really well</b>\n\n<b> 4 Describe the areas for improvement of the screening process and what you found difficult</b>\n\n<b> 5 Describe how case study findings have changed the way in which you practice </b>\n\n<b> 6 Justified ALL actions taken with the clients in the case studies</b>\n\n<b> 7 Summarise thoughts in a succinct manner</b>\n\n<b>Tom wrote;</b>\n\n<i>Undertaking the Biomechanics Coach™ qualification has already drastically changed my business model and career path (no exaggeration). I’ve already dropped 3 classes which I have been teaching for the past 2 years (fitness and pilates) to dedicate more time educating myself on intrinsic biomechanics and to fill those hours up with biomechanics 1:1 assessments.</i>\n\n<i>It has been incredibly clear that this is a new and higher paradigm of exercise prescription. If we are exercising with dysfunction then we are training and strengthening that dysfunction, increasing our chance of injury. </i>\n\n<i>If we are exercising while considering and eradicating dysfunction (through measuring and re-screening), then we are encouraging healthier and more liberated movement.</i>\n\n<i>This is my ethos moving forward with clients, be it 1:1, group or workshops. Having a system in place (with 25yrs of evidence behind it) that measures a persons function has given me a great deal of clarity when approaching exercise prescription options for clients.</i>\n\n<i>Having the harmony between fitness and health goals has been an invaluable perspective to take on board. I’ve also made stronger partnerships with physiotherapists and osteopaths. Having a deeper appreciation of their skills and expertise, while being able to communicate with them on a higher level than before.</i>\n\n<i>We work together to deliver the best possible experience for our clients which has been incredible fun and I hope my partnership with other health professionals will continue to blossom and grow.</i>\n\n<i>Over all I’ve decided to steer further away from group fitness classes, with the intention of getting the best result possible with clients, (incongruence with their goals and needs) spending more energy and time promoting 1:1 classes and programmes. </i>\n\n<i>By fully optimising the intrinsic biomechanics screening system I know I am helping people to achieve their goals and improve their movement through Biomechanics Coaching™.</i>\n\nTHANK YOU for sharing Tom!\n\n----------------------------------------------------------------------------------------------------------------------\n\nTom is also one of <a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\">The Movement Convention presenters Saturday 8th October at Loughborough University</a>\n\nCome and meet Tom at TMC16\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\">BOOK YOUR PLACE HERE</a>','His Theory Report Made Public!','','inherit','closed','closed','','769-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',769,'https://biomechanicseducation.com/?p=38916',0,'revision','',0),(38917,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','...of <a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\"><b>The Movement Convention 2016</b></a> line up!?\n\nBoth TMC14 &amp; TMC15 have seen superb responseS to our amazing presenter line ups and TMC16 is going to be even more stunning!\n\nPUT THIS DATE IN YOUR DIARY NOW….\n\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\"><b>Saturday 8th October</b></a> at the incredible Loughborough University the very fabulous <b>Ben Coomber</b><b>, </b>Body Type Nutrition (BTN), an online nutrition coaching company, will be headlining at 9am which I KNOW will cause a stir because of his superb knowledge and attitude towards educating professionals about nutrition. This guy is leading the entire industry right now with common sense logic and evidence based information to give PT’s, trainers and coaches confidence when advising clients about nutrition goals.\n\nMy own personal strength and conditioning coach, <b>Stephen Aish</b>, BTN mindset coach and also owner of The Strength Academy will be talking. His coaching has given me 4 PB lifts within 2 sessions from his mindset skills! Details of his presentation will be coming soon.\n\nAlso the very cool <b>Tom Waldron</b>, Biomechanics Coach™, will be presenting his take on the Franklin method. In his practical session you will learn new and fun techniques to improve the mechanics of your shoulder girdle.\n\n<b>Friday 7th October </b>\n\nNow if you are a Biomechanics Coach™ we have an extra special WEEKENDER package for you guys that means YOU also get the chance to attend a very exclusive Biomechanics Coach™ Training Camp with the founder himself, <b>Martin Haines</b><b>, </b>Specialist Biomechanics Coach™.\n\nNot only that we also have the nicest guy in sales &amp; marketing, <b>Chris Wright</b><b>,</b> Biomechanics Coach™ delivering a short session especially for Biomechanics Coaches™ and I genuinely cannot recommend Chris’s advice highly enough.\n\n<i>This is only HALF the line up! </i>\n\nMore details COMING SOON!\n\nSomething YOU need to know is that we have sold almost half the seats already as this is a pretty intimate event to allow attendees the opportunity to  interact with these during the presentations.\n\nONLY 100 SEATS!\n\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\">Sat 8th Oct TMC16</a>\n\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\">BOOK TICKETS HERE</a>\n\nBUT if you’re quick and missed the SUPER EARLY BIRD you still have a few days to grab an EARLY BIRD seat!\n\nBook <b>BEFORE April 30th 2016</b> &amp; it is ONLY £130 (Normally £140)\n\n*Biomechanics Coaches™ YOU get the Training Camp Friday 7th Oct 1-5pm FREE as part of your Biomechanics Coach™ Weekender package\n\nIBA members contact Rachel@biomechanicseducation.com to secure your special rate seat at £100 for the entire weekender!\n\nWhy not subscribe to our Biomechanics Education YouTube channel and check out videos of TMC14 &amp; TMC15 presentations..?\n\n<a href=\"https://www.www.biomechanicseducation.com/events/tmc16/\">BOOK TICKETS HERE</a>','Want A Sneak Peek..?','','inherit','closed','closed','','765-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',765,'https://biomechanicseducation.com/?p=38917',0,'revision','',0),(38918,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','<strong>Article Synopsis</strong>\n\nThis article examines how the needs of personal training clients have evolved in recent years, and subsequently, how we as trainers must adapt as a result.  It also dissects the existing functional training paradigm in terms of its competency in serving these ever-changing client expectations.\n\n<strong>Article  Objectives</strong>\n\n1    Understand the strengths and weaknesses of functional training.\n\n2    Explore new ways of preparing your clients for exercise to mitigate the risk of injury.\n\n3    See how an additional skill set will increase both client retention and sales.\n\n<strong>The Evolution of Personal Training &amp; The Health Continuum</strong>\n\nThe role of the personal trainer has evolved significantly in recent years to accommodate growing client needs and demands.\n\nIn the past, clients consulted personal trainers primarily with weight loss or general conditioning goals. These same consumers now expect personal trainers to have a broader scope of practice, including exercise prescription to mitigate back stiffness or soreness, along with a whole host of other musculo-skeletal issues.\n\nMoreover, the role of a personal trainer will quite likely change as a result of a financial downturn. During such challenging economic times, people are even less inclined to spend money on specialised healthcare professionals for what they perceive to be minor issues. This additional expense and inconvenience is often replaced by the preference to visit their personal trainer, whom they already know and trust. It is therefore critical to identify our client’s position on what we call the health continuum – a scale that spans from illness, to wellness, to elite performance. You will find each one of your clients somewhere on this scale, and before any trainer is serious about exercise programme design, the exact location must be determined. Most exercises are suitable for most people, but they can easily be prescribed at the wrong time. An example of this is core stability training: it can help some people but hurt others (McGill 2003). Similarly, biomechanical issues such as a rotated pelvis and leg length discrepancy, with associated muscle spasm in the hips, will likely be aggravated if an asymmetrical exercise such as a lunge was prescribed. Conversely, in the absence of any pelvic dysfunction, the risk of performing lunges would decrease.\n\nAs a result, we, as fitness professionals, must be cognizant of these parameters and guard against taking a “jack-of-all-trades” approach when engaging our clients. Knowing only enough to be dangerous can unfortunately be just that: dangerous! Therefore, as we scan the health and fitness education marketplace searching for new science, modality concepts and delivery methods, we must not only be conscious, but extremely sensitive to the changing demographic that forms the majority of our target audience. Being finely attuned to these consumer trends and needs may very well be the differentiating factor between our competition and us. So while we should not cross medical boundaries by becoming “pseudo-therapists”, we must accept the need for change and ultimately, professional growth.\n\n<strong>1. Functional Training Defined</strong>\n\nThe body is an integrated system, with each of its component parts linked together to provide coordinated movement in our daily lives. With its origins in rehabilitation, functional training helps us prepare for these tasks and engrains the correct movement patterns with which our brains are familiar rather than training isolated muscles.\n\nThere are many variations on the definition of functional training, including:\n\nI    An exercise continuum involving balance and proprioception, performed with the feet on the ground and without machine-assistance, such that strength is displayed in unstable conditions and body weight is managed in all movement planes (Boyle, 2003).\n\nI    Multi-joint, multi-planar, proprioceptively-enriched activity that involves deceleration (force reduction), acceleration (force production) and stabilisation; controlled amounts of instability; and management of gravity, ground reaction forces and momentum (Gambetta &amp; Gray, 1995; Gambetta, 1999).\n\nI    A spectrum of activities that condition the body consistent with its integrated movement and/or use (Santana, 2000).\n\nMany experts also believe that training tasks should be chosen according to their mechanical specificity and relationship to the activities of daily living (ADL). In other words, their basic mechanics – but not necessarily appearance – should correspond to one or more target activities (Santana, 2000; Baechle &amp; Earle, 2000; Siff, 2003; Zatsiorsky, 1995).\n\n<strong>2. The Functional Training Paradigm and its Flaws</strong>\n\nNeedless to say, common definitions and understanding of functional training are quite similar. And predictably, they conform to the same, existing paradigm.\n\nIn 1962, Kuhn defined <em>paradigm</em>s as “universally recognised scientific achievements that for a time provide model problems and solutions to a community of practitioners.” According to Burrell and Morgan (1979), a paradigm provides a conceptual framework for seeing and making sense of the social world. They also suggested that a paradigm “stands for the entire constellation of beliefs, values and techniques, and so on shared by the members of a community.”\n\nParadigms are shaped based on our prior observations and understandings of the world. However, they also contribute to consensual thought processes, which invariably lead to restrained innovation and progress among the community of practitioners. So even as we evaluate the current functional training paradigm, we instinctively look for ways to better deliver variations of it rather than forge forward and penetrate the confines under which we operate. This conformity is evident in most research, too.\n\nKuhn (1962) also recognised that a paradigm inherently gives rise to problems more frequently than it provides a framework for solving them. For solutions and innovation, one generally needs to depart from accepted norms and apply unconventional wisdom in order for system failings to be elucidated.\n\nIn the years that functional screening and training has existed in rehabilitation, many physical therapists found that, although helpful, large gap were apparent and client’s issues persisted. One key gap identified was the body’s ability to compensate for isolated biomechanical flaws, while maintaining acceptable positions during a functional screen.\n\nThis is well demonstrated with a traditional squat pattern. There are three main joints that perform this movement: the hips, the knees, and the ankles. Because the body is a master of compensation, it is entirely possible that your client could have a dysfunctional knee, yet still pass a functional screen due to the hip’s and ankle’s ability to compensate for it. In fact, it could be argued that abnormal functional movement patterns are merely a visible demonstration of the body’s amazing ability to compensate for its biomechanical flaws. In other words, we are very good at cheating - and the more athletic we are, the better we get.\n\n<strong>Biomechanics Defined</strong>\n\nThere are two types of biomechanics: extrinsic and <em>intrinsic</em> (Siff, 2003). Extrinsic is the study and measurement of movement patterns of a particular task.  This is widely recognised and is often on the syllabus of the university programmes in modules in the sports science courses.  This constitutes the existing paradigm and can be seen in many different types of functional screening programmes where the movement itself is the focus of assessment. An <em>Intrinsic</em> biomechanics emphasis, however, falls firmly outside of the current paradigm. It is a discipline in science that enables the analysis and assessment of an individual’s mechanical disposition and how that structure facilitates movement.  Traits can be genetically inherited or influenced by extrinsic factors such as sitting at a desk, driving, doing the wrong gym exercises or running in the wrong shoes.  <em>Intrinsic</em> biomechanics frequently affects extrinsic biomechanical performance.\n\n<strong>3. A new Paradigm and its Benefits</strong>\n\nGiven the intractable challenges we face when introducing completely new ideas and ways of thinking within a well-established paradigm, let us step outside of it for a moment and consider the following: Should we primarily focus on movement patterns and preparation for ADL tasks; or should we be more interested in the way each joint or system is actually intended to move and the best way to utilise or leverage that existing structure?  As we mentioned earlier, consider that each individual has unique, unconditioned (genetic), and conditioned (acquired), reflex codes that determine movement over the course of their life (Karel Lewitt).  Each person starts with unconditioned codes and during their life, for a variety of reasons, begins to acquire conditioned movement codes, more often than not to compensate for injury and biomechanical flaws. Compare this knowledge to the methods we currently employ under the precepts of accepted health, fitness and wellness care and a stark contrast is apparent: The current paradigm encourages us to accept that by patterning a movement ‘correctly’ we automatically ingrain the ability to perform the pattern instinctively, without taking into account the causes of the conditioned movement codes.  The new paradigm proposes to <em>first</em> identify and manage the conditioned movement codes, <em>before</em> teaching and prescribing relevant functional movements.\n\nWhile recognising the effectiveness of functional movement to prepare for function, it would seem that the logical, precursory step would be to add an <em>intrinsic</em> biomechanics component. This would illuminate unconditioned and conditioned movement codes and better prepare our client for the onset of functional movement training. By adding this practical foundation to our current training and delivery methodology we would mitigate detected biomechanical flaws. We would also remove the need for the body to intrinsically labor and compensate for flaws a functional screen would otherwise not detect.\n\nSimply put: isolate and integrate. This approach is already in use by “early adopters”, and as usual with cutting-edge science, in time, the “followers” will follow, ultimately resulting in a new and improved paradigm.\n\n<strong>    1    Conclusions</strong>\n\nThe movements we are required to perform nowadays are quite different from those performed by our ancient ancestors. The rigorous and varied movements essential for the survival of our hunter/gatherer cousins have transformed within a hundred years. Activity these days is often limited to small static movements such as typing, steering and using TV remote controls. While some people do exercise, the vast majority does not. So if functional movement and training is defined by its ability to prepare people for ADL, why are we not considering these activities when prescribing exercise in our health, fitness and wellness facilities? One might raise an eyebrow in response to this logic, but actually if we are not following this logic we are simply not adhering to the definition of function (Boyle, 2003; Gambetta &amp; Gray, 1995; Santana, 2000). Therefore, we must deduce that either the definition of, or our approach to, functional training is currently incorrect.\n\nAs functional concepts start to transcend medical fields into fitness, it is important to recognise that biomechanical screening must too. Functional and biomechanical screening and training are very important aspects of an overall conditioning program for any sport or activity and are complementary in every way. However, there are many people who pass a functional screen, yet fail a biomechanical screen. Therefore the two modalities, while both detecting different factors, provide the personal trainer and, indeed the therapist, with essential tools for safe and effective prehab, rehab and general exercise prescription.  At this point is always worth pointing out that you must always be prepared to refer to someone who is more qualified than you to perform any kind of screening, especially if you are inexperienced in the field.\n\nFundamentally, we need to develop our understanding of specific-joint biomechanics such as the pelvis, spine, shoulder and knee. We must also consider nerve biomechanics and function within this new paradigm. Once we understand these <em>intrinsic</em> biomechanics principles, how to objectively analyse screens, and how best to implement them as a system, we can prescribe the most efficient and relevant exercises to meet our client’s goals. After these biomechanical issues have been resolved, functional training and/or any other modality of training has a much greater chance for success, not to mention reduced exposure to injury for our clients and members.\n\nMany professional sports teams and organisations around the world have already adopted this <em>intrinsic</em> biomechanics approach. And daily they are realising that <em>intrinsic</em> biomechanical screening and corrective exercise prescription is a critical precursor to functional screening and training. It provides a solid foundation for movement patterns that can otherwise be flawed. On the cutting-edge of our industry you will already find “early adopters” practicing <em>intrinsic</em> biomechanics as part of their personal training client care. There are some fantastic courses currently being run in the US, the UK and many other countries, so attend an <em>intrinsic</em> biomechanics course and become a more complete trainer or therapist as a result.\n\n<strong>Martin Haines </strong>\n\n<strong>Biomechanics Coach</strong>&#x2122;\n\n<strong>References</strong>\n\n1    Boyle, M. (2003). <em>Functional Training for Sports.</em> Champaign, IL: Human Kinetics.\n\n1    Gambetta, V., &amp; Gray, G. (1995). Following a functional path. <em>Training &amp; Conditioning </em>5(2): 25-30.\n\n1    Gambetta, V., &amp; Clark, M. (1998). A formula for function. <em>Training &amp; Conditioning </em>8(4): 24-29.\n\n1    Gambetta, V. (1999). Force and function. <em>Training &amp; Conditioning </em>9(5): 36-40.\n\n1    Santana, J.C. (2000). <em>Functional Training.</em> Boca Raton, FL: Optimum Performance Systems.\n\n1    Baechle, T.R. &amp; Earle, R.W. (Eds.). 2000. National Strength &amp; Conditioning Association. <em>Essentials of Strength Training &amp; Conditioning</em> (2nd ed.). Champaign, IL: Human Kinetics.\n\n1    Siff, M.C. (2003). <em>Supertraining</em> (6th ed). Denver CO: Supertraining Institute\n\n1    Zatsiorsky V.M. (1995). <em>Science &amp; Practice of Strength Training.</em> Champaign IL: Human Kinetics.\n\n1    Kuhn, T. (1962). <em>The Structure of Scientific Revolutions. </em>Chicago, IL: University of Chicago Press.\n\n1    Burrell, G. &amp; Morgan, G. (1979). Sociological Paradigms and Organisational Analysis: Elements of the Sociology of Corporate Life. London: Heinemann.\n\n<span style=\"font-family: arial, \'helvetica neue\', helvetica, sans-serif; font-size: medium;\">Learn how to assess your clients intrinsic biomechanics </span>\n<b><u>rachel@biomechanicseducation.com</u></b>\n\n&nbsp;','The Evolution of Functional Training','','inherit','closed','closed','','761-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',761,'https://biomechanicseducation.com/?p=38918',0,'revision','',0),(38919,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','Something I always encourage my learners to do is challenge everything, even what I tell them. I suggest they do not simply accept what people say as being a given but that they should gather enough information to come to a conclusion that THEY are satisfied with for their own conceptualisation, logic and application.\n\nHaving been a teacher for 25 years in various forms from delivering exercise classes to teaching PT\'s and physiotherapists about biomechanics to helping podiatrists understand how to prescribe exercises I know one thing is for sure, we all learn in different ways and at different rates. Communication is key when passing over information, which I know I have written about before, but I cannot stress this point enough.\n\nThere seems to be such an emphasis on ‘level’ in the sense that a hierarchy of intelligence exists and I am sure this is correct in some form. However some of the <i>smartest</i> people I know are not naturally ‘academic’ and some cannot even read that well or write grammatically correctly (me for one!), does that stop them, us, me being intelligent? Clearly it comes back to how you measure intelligence.\n\nSo with so many educators out there lets say we were looking for who we should be guided by when it comes to intelligence. Let us consider how we are measuring this ‘hierarchy’ of intelligence so to speak.\n\nor\n\nMore to the point how SHOULD we measure it?\n\nWell I guess that would depend upon the industry or relevance. So lets take our industry since this is the one that has inspired me to write this article.\n\nNow I meet a lot of people as I travel and many are what would be classed as very intelligent when it comes to qualifications and/or experience.\n\nYet it stuns me how badly some of these really smart people communicate that intelligence.\n\nLet me give you a couple or simple examples and you tell me..\n\n(This is simply an example to make a point by the way):\n\nExample 1:\n\nThe PT with LOADS of qualifications, piles of certificates, loads of books and the ability to cite research papers left right and centre. This guy is often so busy taking courses he barely covers costs with what he makes from his clients. He KNOWS a lot but scrapes by and wonders why.\n\nCompared to;\n\nThe PT who is not as well read or so extensively qualified but has AMAZING communication skills and makes ALL their clients feel fantastic in their company. This means they achieve client adherence and this PT is extremely successful commercially.\n\nHe is financially doing really well and has a great sense of job satisfaction.\n\nWhich PT is the <i>INTELLIGENT</i> one?\n\nExample 2:\n\nThe presenter who delivers fantastically complex information of their thoughts and ideas and concepts so mind boggling it <i>‘blows your mind’ </i>but while you’re impressed you are struggling to work out how YOU can apply the awesomeness you just heard.\n\nCompared to;\n\nThe presenter who uses economy of words, offers very simple concepts while possibly much less information overall BUT they offer you ideas to allow you to apply what they are sharing with you\n\nMy point here is that intelligence can be measured in several ways and is way more influential when it is communicated well. Lack of clarity or specificity is not helpful to others.\n\n<i>“if you cant explain it simply you do not understand it well enough”</i>\n\nAlbert Einstein\n\n<i>“simplicity is the ultimate form of sophistication”</i>\n\nLeonardo Da Vinci\n\nIs it good enough to simply hear smart people telling us what they know?\n\nOr is it enough simply having loads of knowledge, information packed away in your head if you are unable to apply it, communicate it and utilise it to your advantage?\n\nOf course intelligence can be measured by taking an IQ test or passing exams but TRUE intelligence is surely being able to use it, express it and pass it on right?\n\nNow back to my classroom where I do my very best NOT to answer questions raised by my learners. (Yes it is true, ask them!)\n\nWhen I qualified with QTLS (Qualified teacher status) one of the primary things I came away with was that a <i>‘Learner lead’</i> classroom should be how we deliver content. The learners take priority over the teacher in the way the content is discussed, facilitated and therefore delivered. Clearly there is a lesson plan but with much scope for tasks and discussion so that the individuals present can facilitate themselves to a level of understanding appropriate to their individual experiences and areas of knowledge. Peer discussions are extremely healthy where opinions are permitted with justifications for those opinions. It would be unfair to tell someone else they are wrong when the subject matter is presented based upon that individuals experiences, opinion and along side a justification for the way they have presented it, don’t you think?\n\nSo back to my point;\n\nSurely it is also healthy to accept that we may not agree on certain views or opinions again due to different experiences and back grounds, right?\n\nWe form views and attitude from our previous experiences and interactions with others right from being babies through to children and on to adulthood. The amount of variables make us individually complex and this is what makes meeting new people so fascinating and interesting.\n\nIn my experience many people in our industry are not necessarily ‘academic’ types, certainly I myself and a lot of my learners are generally more kinaesthetic leaners who process information better through doing, rather than reading or writing. So when faced with technically challenging information we often take a while to develop ways to put information into practice. The skills we require are theory, psychological and practical based to be best placed to help improve clients physicality and health. But in my opinion predominantly practical and psychological for exercise prescription based work.\n\nMy learners, the professionals I meet are REALLY intelligent people, who interact smartly, consciously, with care and thought for those they come into contact with. Just because for many of us, our learning style us such that we have to take a clini-band to a skeleton to really understand what muscles do or because we have to get up and move our legs to workout which is the agonist, which is the antagonist and which muscles are synergists doesn’t make us <i>less</i> intelligent people.\n\nCommunication is key to success when passing on information. Having some empathy for those listening to us while we deliver information (knowing our audience) is also key for learning and development to occur.\n\nWe should accept being challenged as a compliment that someone is seeking our ideas and in put but we should also <i>respect</i> their response when asking for it don’t you agree!?\n\nWould you like to experience our academy?\n\nAre you keen to sample our \'learner lead\' classroom?\n\nTake a look at the schedule and try one of our INCLUSIVE workshops, I personally guarantee you will not regret it!\n\nFor (Intrinsic) Biomechanics made simple;\n\n<a href=\"https://www.www.biomechanicseducation.com/schedule/\">CLICK HERE </a>','How Intelligent Are You?','','inherit','closed','closed','','758-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',758,'https://biomechanicseducation.com/?p=38919',0,'revision','',0),(38920,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','<strong>If a client did 100 push ups a day for 20yrs would this have a negative impact on the mobility and strength of the shoulder?</strong>\n\nRepetitive movements are performed by us all during our everyday life. However, the movements we are required to perform now are quite different from those we were originally designed to perform several million years ago. What were once natural movements performed in a variety of environments for a number of different reasons, have become more static and repetitive in nature as we have changed from active hunter-gatherers to ‘office loungers’.\n\nOver a period of only 100 years we have become inactive; going from active work to sedentary office jobs where the main activity is walking from the house to the car and then to the office. When we are active these days, it’s often only to perform small static movements such as typing, steering and pressing the remote for the TV. It has been widely reported, in particular by University College London, that repetitive movements are responsible for many of our occupational health issues when it comes to musculoskeletal injuries. Much of this comes from the negative effects of repetitive movement on our soft tissues, including our nerves.\n\nLet’s take a look at some of the effects of repetitive movements. They have a negative effect on joints because, when subjected to prolonged pressure, the cartilage begins to lose its elasticity and become vulnerable to damage.1 Tendons are visco-elastic and repetitive movements subject them to a mechanical phenomenon known as creep, which means they deform when subjected to prolonged stress (or repetitive movements). Nerves are also visco-elastic, so fast movements are difficult without the proper training, and repetitive movements cause them to resist elongation and so muscles have to go into a protective spasm to reduce the load through them.2 High repetition work can also lead to muscle fatigue and, in some cases, Delayed Onset Muscle Soreness (DOMS) and overuse syndromes. DOMS is associated with an increase in muscle tone and faulty excitation of muscle.3 In this state, the muscle is no longer able to contract and relax properly, which means the muscle is in spasm.\n\nThere is some evidence to suggest that repetitive movements are not good for us, but exercise is repetitive; so is exercise actually good for us? As always, it depends upon how you do it. If we are to provide our clients with receptive movements, then we had better make sure they are adequately prepared. Adaptation is the whole purpose of exercise training. Adaptation requires a systematic application of exercise stress. The stress should be sufficient to stimulate adaptation, but not so severe that breakdown and injury occur.4 Using the principles of overload and specificity, researchers have shown that muscles will adapt to the stresses imposed upon them, but those loads have to be progressive. Progressive overload principles were pioneered by Thomas Delorme, MD, after World War II, and with time these principles allow the body to adapt. Ignoring these principles will likely result in poor results and, more often than not, injury.\n\nSo, having explored the background principles to the answer, let’s get back to the initial question. Put simply, if the client understood the principles of progressive overload and sensibly built up to those reps, using a technique that suited the biomechanics of his shoulders, the chances are his body would adapt to the stress and it would have a positive effect on his shoulder mobility and strength. But then there’s more to it isn’t there? A good PT and coach will recognise that working within a training system that develops the whole body as a unit is critical to avoid muscle imbalances. They will also look to understand the reason for doing 100 push-ups a day and establish whether doing that is effective.\n\nAdditionally, a biomechanics coach™ will look to understand the biomechanics of his shoulder; median nerve tension, spasm in Pec Minor, Subscapularis, Infraspinatus (and others). Any issues in these structures will compromise the function of the shoulder joint, and even if the progressive overload principles are adhered to, the muscle imbalances are minimised and the technique is excellent, if the joint is not functioning biomechanically correctly, the risk of injury is increased.\n\nSo, to reduce the negative effects of repetitive movements, it’s important to ensure the correct biomechanical function of the individual joints and systems of the body, then progressively work through a combination of training programmes that suit the needs of the client. Those needs may include strength and conditioning, functional training, bodybuilding, sports specific work, Pilates, etc., combined with the relevant cardio work and anything else that helps him achieve his goals. So would doing 100 push-ups per day for 20 years be good for a client? The answer is – only if it’s part of an overall conditioning programme and if their biomechanics were suited to performing them.\n\nMartin Haines\nBiomechanics Coach™\n\nMartin, who is also a PGA advisor, will be delivering our extremely popular Golf Biomechanics workshop this month April 22nd in London - we have just one place left;\n<a href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\" target=\"_blank\" data-cke-saved-href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\" rel=\"noopener\"><strong><u>BOOK NOW</u></strong></a>\n\n&nbsp;\n\n&nbsp;','100 Push Up\'s Daily For 20yrs','','inherit','closed','closed','','734-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',734,'https://biomechanicseducation.com/?p=38920',0,'revision','',0),(38921,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','<p class=\"p1\"><span class=\"s1\">When I was first approached by Fiona Mackie back in January to deliver an iMoveFreely® instructor workshop on the Isle of Man I felt excited for several reasons;</span></p>\n<p class=\"p1\"><span class=\"s1\">A). iMoveFreely was clearly continuing to spread!</span></p>\n<p class=\"p1\"><span class=\"s1\">B). A trip was in the cards! </span></p>\n<p class=\"p1\"><span class=\"s1\">C). I could visit my cousins who I hadn\'t seen in a decade! </span></p>\n<p class=\"p1\"><span class=\"s1\">But when I saw the attendee list that Fiona had gathered it amplified my excitement even further!</span></p>\n\n<ul>\n	<li class=\"li5\"><span class=\"s1\">Physiotherapist</span></li>\n	<li class=\"li5\"><span class=\"s1\">Chiropractor</span></li>\n	<li class=\"li5\"><span class=\"s1\">PT</span></li>\n	<li class=\"li5\"><span class=\"s1\">Yoga teacher</span></li>\n	<li class=\"li5\"><span class=\"s1\">Sports Masseur</span></li>\n	<li class=\"li5\"><span class=\"s1\">Gym instructor </span></li>\n	<li class=\"li5\"><span class=\"s1\">Sports therapist</span></li>\n	<li class=\"li5\"><span class=\"s1\">Bowen practitioner </span></li>\n	<li class=\"li5\"><span class=\"s1\">Holistic therapist </span></li>\n	<li class=\"li5\"><span class=\"s1\">Fitness instructor </span></li>\n	<li class=\"li5\"><span class=\"s1\">Pilates instructor </span></li>\n</ul>\n<p class=\"p1\"><span class=\"s1\">Like WOW! </span></p>\n<p class=\"p1\"><span class=\"s1\">This workshop was going to be seriously fun AND talk about a diverse range of professionals to challenge my facilitation skills! </span></p>\n<p class=\"p1\"><span class=\"s1\">A couple of months later with everything booked and a stunning line up of 14 learners, I flew from Birmingham with my mum, who was coming for a mini break and to catch up with some relatives we have who live on the island.</span></p>\n<p class=\"p1\"><span class=\"s1\">Fiona kindly collected us from the airport at the Isle of Man and dropped us at the hotel for the duration of the stay, Englewood Lodge. </span></p>\n<p class=\"p1\"><span class=\"s1\">OMG this place is amazing!! </span></p>\n<p class=\"p1\"><span class=\"s1\">Classy, stylish, luxurious and our host, Margaret, couldn\'t do enough for us. </span></p>\n<p class=\"p1\"><span class=\"s1\">In our stunning room, with heated floors, Molton Brown toiletries, beautiful decor and furniture, we settled in. </span></p>\n<p class=\"p1\"><span class=\"s1\">We decided to have a nice meal and having decided to walk by the marina we came across the ‘Little Fish Cafe’. We ate scallops and lobster (yes lobster!!) then taxied back to our room later where we both fell asleep grinning I\'m sure.</span></p>\n<p class=\"p1\"><span class=\"s1\">The following morning Fiona collected me and I left mum to a day of sight seeing!</span></p>\n<p class=\"p1\"><span class=\"s1\">14 professionals arrived, manuals ready with that quiet nervousness you get on workshops where you are going to spend time with new people learning new things that may challenge you. </span></p>\n<p class=\"p1\"><span class=\"s1\">Every workshop I deliver I give myself a little challenge too. It is to learn every single name of those present as quickly as possible. I shake hands, look in their eyes, introduce myself and ask their name repeating it a few times in my head (and sometimes out loud!) as I smile and as a few questions.</span></p>\n<p class=\"p1\"><span class=\"s1\">If you were to ask about the ethos of Biomechanics Education Ltd, this workshop really was the epitome of it.</span></p>\n<p class=\"p1\"><span class=\"s1\">To have clinicians, exercise professionals and hybrids altogether in one room learning alongside each other and I could barely contain my excitement! </span></p>\n<p class=\"p1\"><span class=\"s1\">A mild apprehension about ensuring my delivery was appropriate to all and applicable to each individual as I raised each point, reminded me how much I care about this ethos and my learners experience. </span></p>\n<p class=\"p1\"><span class=\"s1\">As a teacher, or rather I prefer facilitator, I take pride in delivering this content simply and effectively to passionate and caring people like these guys. This is the crux of why I love my job, my life and all the experiences I have the opportunity of having. I want to share the joy it brings me and judging by the response during this workshop I sense I may have succeeded in doing a little bit of that. </span></p>\n<p class=\"p1\"><span class=\"s1\">A fantastically open minded Physiotherapist, chiropractor and other therapists worked on tasks alongside smart gym instructors, pilates/yoga teachers and PTs. </span></p>\n<p class=\"p1\"><span class=\"s1\">Questions were challenging but excellent and certainly offered me the chance to learn from them too. </span></p>\n<p class=\"p1\"><span class=\"s1\">Another luxury of my job is mixing with super smart people.</span></p>\n<p class=\"p1\"><span class=\"s1\">So during the iMoveFreely® Instructor workshop we discussed movement analysis, muscle energy techniques, research, tricky clients, challenges we face in our industries, referral opportunities and of course the iMoveFreely® system of improving function and movement to reduce injury risk and improve performance by preparing the body for exercise.</span></p>\n<p class=\"p1\"><span class=\"s1\">All with a huge emphasis on knowing our remit!</span></p>\n<p class=\"p1\"><span class=\"s1\">Each professional would apply these techniques differently but had now found each other to cross refer to when they felt it necessary.</span></p>\n<p class=\"p1\"><span class=\"s1\">After a good 7hrs of learning it was time to demonstrate the magic they had all just acquired. The group watched as I showed them how we as iMoveFreely® Instructors have the ability to change orthotic prescription by releasing Pectoralis Minor in 1 min 20 seconds!! </span></p>\n<p class=\"p1\"><span class=\"s1\">Blew them away!! &#x1f633;&#x1f61c;&#x1f44f;&#x1f3fc;</span></p>\n<p class=\"p1\"><span class=\"s1\">So as we came to close all I heard was</span></p>\n<p class=\"p1\"><span class=\"s1\">\"Can we have more?”, “Will you come back again?”</span></p>\n<p class=\"p1\"><span class=\"s1\">Well you KNOW what I said right? </span></p>\n<p class=\"p1\"><span class=\"s1\">“Of course and there\'s lots more!\" </span></p>\n<p class=\"p1\"><span class=\"s1\">So as I write this while mum and I fly home, Fiona and I have already set the wheels in motion to take Biomechanics Coaching™ to the Isle of Man. </span></p>\n<p class=\"p1\"><span class=\"s1\">Would YOU like a Fast Track Biomechanics Coach™ Diploma in YOUR area? </span></p>\n<p class=\"p1\"><span class=\"s1\">Do you have a venue available?</span></p>\n<p class=\"p1\"><span class=\"s1\">Call me 07976833113</span></p>\n<p class=\"p1\"><span class=\"s1\">Or </span></p>\n<p class=\"p1\"><span class=\"s1\">Email me Rachel@Biomechanicseducation.com </span></p>\n<p class=\"p1\"><span class=\"s1\">TOGETHER by working inter professionally we demonstrate our duty of care. Let\'s get this nation moving more freely and with less pain!</span></p>','Excitement Amplified!','','inherit','closed','closed','','721-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',721,'https://biomechanicseducation.com/?p=38921',0,'revision','',0),(38922,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','<b>The Spine</b>\n\nIn part 1 of this series we discussed the various types of squats that you may have experienced or come across and some of the aspects that may influence your decision on which squat is most appropriate to you. In part 2, I would like to discuss more specifically the bodies biomechanical effects on the spine during squatting movements both with and without resistance.\n\n<b>The ‘Break Point’</b>\n\nStuart McGill refers to what he calls the ‘<i>break point’</i> which he explains is; during squatting, there is a loss of the ‘<i>neutral spine’</i>. This loss of neutral curvature is actually how our spines were designed to move while we were sitting on our haunches when cooking, eating or performing tasks on the floor. In some countries this is still the case and in fact these natives seem to have a very low incidence of low back pain.\n\nYou will see in the photo on the left an example of a break point whereas the image on the right does not have a break point:\n\n<img class=\"alignnone size-medium wp-image-712\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-08-at-20.57.10-300x111.png\" alt=\"Screen Shot 2016-04-08 at 20.57.10\" width=\"300\" height=\"111\" />\n\nWe also know from McGill’s work, and others, that each of the facet joints in the lumbar region allow a range of 5-8mm of flexion/extension and 1-5 mm of lateral flexion. This gives a total of about 45-50<sup>0</sup> of forward flexion from a fully extended position that we could call safe at the lumbar spine when squatting without resistance. Once we add some resistance, a barbell for example, this adds a compressive load onto these facet joints, whose main role is to stop excessive movement of the spine. This movement restriction protects the discs, and reduces their vulnerability and their risk of wear and tear. Consider a healthy, symmetrically stacked and robust spine and this compressive load is pretty safe, now imagine if you have asymmetry, any mechanical dysfunction or improper technique affecting the spines movement capacity and the risk increases further.\n\nSo you can see how actually there is much to consider when performing the squat with any kind of load on the spine if we are to maintain a healthy trunk long term.\n\nThe images below should help to explain what the ‘break point’ might mean to you and your technique.\n\n<img class=\"alignnone size-medium wp-image-713\" src=\"https://www.www.biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-08-at-20.57.18-300x114.png\" alt=\"Screen Shot 2016-04-08 at 20.57.18\" width=\"300\" height=\"114\" />\n\nThe image on the left shows that if there is a break point, or spinal flexion, during a weighted squat, the position of the bar/resistance in relation to the gravitational pull is too far forwards for the best balance through the feet i.e. maintaining efficient centre of gravity alignment. This increases the risk of damage to the intervertebral discs as the load on the front of the discs is disproportionate to the on the back.\n\nWith no break point, or spinal flexion (see right), the weight in relation to the gravitational pull is in a far more advantageous position for foot stability and the intervertebral discs and facets are stacked evenly and within safer ranges thus reducing the risk of incurring damage or injury.\n\nWhen considering the forces imposed upon the spine McGill states that:\n\n<i>“when a more neutral lordotic posture is adopted, the extensor musculature is responsible for creating the extensor moment and at the same time provides a posterior shear force that supports the anterior shearing action of gravity on the upper body and handheld load……Thus, using muscle to support the moment neutral posture rather than being fully flexed with ligaments supporting the moment greatly reduces shear loading” </i>\n\nWhat McGill means is the shear force is the force that causes one vertebra to move forwards (or backwards) in relation to the one above or the below and increases the pressure on the intervertebral discs and facet joints. Therefore minimising these shear forces by correct alignment during squatting is more important.\n\n“What does this mean when translated into my squat technique”? You might be thinking, well ultimately your own reason for squatting needs to be clear but here I will try to cover as many possibilities as I can starting with this example:\n\n<b>Depth of squat</b>\n\nThis is a topic of much debate and yet all of the matters covered in this series must be considered before we can identify an individual’s <i>capacity</i> for which depth is appropriate. While there are many factors that should be taken into consideration, it is my opinion that there should be 2 main determining factors:\n\n1). the pelvis &amp; spine, their health, functional capacity and safe degrees of spinal flexion, extension\n\n2). the knee, its health, functional capacity and safe degrees of flexion (see The Squat part 3)\n\nUltimately if the aim of your squat is to optimise the development of gluteus maximus then they should be performed to full range as demonstrated by Caterisano’s work. Using EMG data it was concluded\n\nthat as the depth of squatting increases, gluteus maximus activity increases by 9-14% from partial range to full. It was also found that the bicep femoris does not appear to be more active suggesting that a deeper squat would not work this hamstring muscle more than a parallel squat. Bicep femoris shows no more than 2-3% more activity between a partial squat, parallel squat and full squat. (Casterisano et al, 2002)\n\nIf however the goal is to target quadriceps, then a squat depth of 90<sup>0 </sup>appears to be optimal, as shown in several of the studies I have come across Van Eijen et al (1987), Signoile et al (1995), Isear et al (1997), Wretenberg et al (2007). Quadriceps activity will gradually increase during the descent of the squat as the degree of knee flexion increases. However beyond this point the quads are unlikely to enhance their development. On an EMG it has been demonstrated that the 2 vasti muscles produce 40-50% more activity than rectus femoris (Escamilla et al). Narrow or wide stance has not shown to have any greater or lesser effect upon hamstrings and quadriceps activation. VMO activity does increase during greater knee flexion angles as compared to the VL. (McCaw &amp; Melrose, 1999, Signorile et al,1995).\n\nTo summarise on these points;\n\nThe rules for spinal alignment during the squat change when you introduce a barbell or resistance.\n\nWhen asked a common question like “how deep should I squat?” we should really be asking a series of questions back before we can even begin to answer with any confidence, starting with ‘why are you asking and what are you trying to achieve?’. Understanding an individuals intrinsic biomechanics will also mean we have a more objective method of analysis to increase confidence in your exercise prescription.\n\nComing next….\n\n<b>The squat part 3 - The knee</b>\n\nWould you like to learn how to assess for spinal hinges and what causes them?\n\n<b><a href=\"https://www.www.biomechanicseducation.com/workshop/spinal-biomechanics-2/\">READ MORE HER</a>E</b>','The Squat Part 2/6','','inherit','closed','closed','','711-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',711,'https://biomechanicseducation.com/?p=38922',0,'revision','',0),(38923,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','Seriously I could burst at the seams sometimes but that just wouldn\'t be good for my biomechanics!!\n\nHowever today I want to share with you why...\n\nHave you ever thought about doing one of our workshops or even the whole <a href=\"https://www.www.biomechanicseducation.com/schedule/\">Biomechanics Coach™ Diploma workshop</a> series right?\n\nYou hear your phone ping, then read the Juicemail, absorbing what you can by scanning the words quickly on the screen of your mobile phone or laptop right?\n\nWell keep reading and let me share a little bit of my fantastic world with you and see if you would like me share even more of it with you.....\n\nThese are the kind of emails I get after a workshop....\n\n----------------------------------------------------------\n\nThanks Rachel, I did a screen yesterday, it all went well and I found the underside of the PSIS easily, now I know I was looking for the wrong point before. I found some interesting dysfunctions and am looking forward to seeing if I can improve these by following the system.\n\n----------------------------------------------------------\n\nHelloooooooooooo,\n\nI just wanted to send a quick note (although knowing me it won’t be THAT quick) to say a big thank you for last weekend. Anyone who has asked me how my course was is greeted with a massive grin when I reply with hand on heart “AWESOME – I have never found feet so disgustingly fascinating” – and that’s the truth!\n\n...... all I can tell you is how EXCITED I am to put all this into practice.\n\n----------------------------------------------------------\n\nThanks for the feedback Rach... thanks for ur support xx\n\n----------------------------------------------------------\n\nHi Rachel thank you for another amazing day. Lots to take in.\n\nHead is screaming for more knowledge haha.\n\n----------------------------------------------------------\n\nHey &#x1f60a; thank you so flipping much for a brilliant weekend! Genuinely think I\'ve found the direction I want to go in... <a href=\"https://www.www.biomechanicseducation.com/schedule/\">Biomechanics Coaching™</a> is probably the most fascinating thing I have ever come across and the passion you show when your delivering the information is unbelievable &#x1f44c;\n\nThank you for the feedback, the paperwork feedback made me chuckle &#x1f604; spot on though... I\'m determined to get my hands on as many people as possible now..already have three people who want to be my case study, there will be loads more but at least I\'ll have lots to choose from &#x1f60a; can\'t tell you how much I appreciate everything you\'ve done for me... your my hero &#x1f44d;\n\n----------------------------------------------------------\n\nAWWWWWW\n\nHey would you like to experience some of things these guys did?\n\nCome and find out why I love my job so much!\n\nCheck out our schedule <a href=\"https://www.www.biomechanicseducation.com/schedule/\">HERE</a> where there is something for everyone!','You Are My Hero!','','inherit','closed','closed','','708-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',708,'https://biomechanicseducation.com/?p=38923',0,'revision','',0),(38924,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','If you were at my Foot Biomechanics lecture in Blackpool last month, this article will expand on that information and if you were NOT there this is the kind of stuff we were discussing, including the fact that we as PT\'s, fitness professionals, Pilates and Yoga teachers really should know a little bit about foot function!\n\nThis is an article, my colleague and friend Fletch wrote some time ago and so I thought you might like it...\n\nThe foot is a mechanical masterpiece; it has never been re-created by man even with all the computer and technological power that we possess. This wizardry comes from the harmonious link between the 3 “separate” systems Nerve, Muscle, Joint.\n\nThe sub talar joint is one of the major reasons that an artificial foot is so hard to produce. With its infinite axis and complex articulations it is the key to the body’s ability of shock transfer. When the foot hits the floor we experience ground reaction force (shock). This force is the very reason that the subtalar joint exists, pronation is our protection against these repetitive shocks or loads.\n\n<b>We Need Shock:</b>\n\nWe have developed the ability to pronate not because we want to be rid of shock but to have the ability to control it. Shock is a major player in allowing the pelvis and spine to move properly, this shock could otherwise be explained as a pulse or signal that de rotates the pelvis and spine and evokes tensegrity in our structure (Gracovetsky 1988)\n\nThere is no discussion that we need to heel strike when it comes to walking; the interesting debate starts when we bring speed into the equation. With an increase in speed comes an increase in the potential forces that you might encounter. So when we run we put larger forces through the body and this is something the body has to adjust for. Everything in the body is kept in an exact balance, tip that balance and at best compensation is needed, at worst injury or disease can present its self. This pulse from the foot to the pelvis is no different; it has to be just enough to de-rotate the spine and pelvis but not too much so that the knee and hip have to dissipate the excess.\n\nThis pulse is also our major economiser, it allows us to switch between our muscular and fascial systems to save energy and maintain a constant work load. This oscillation between muscle and facia is achieved by the pelvis and spine receiving the perfect pulse from the heel strike.\n\nWe do have a time when a forefoot strike is perfect. Sprinting is a high power low duration gait that will require us to run on the forefoot. The stretch reflex of the gastrocnemius and soleus muscles along with the ridged supinated foot allow a large amount of power to be generated. This form of gait obviously does not produce the pulse needed to de-rotate the spine, requiring extra muscular effort to do so, but this is immaterial as the duration of the activity is only around 10-20 seconds.\n\nSo we have the 2 extremes identified. Walking is a heel strike and sprinting is on the forefoot. The big debate is what technique should the middle and long distance runners be using? There a little research out there at the moment that point to a forefoot strike and there are others that point to the heel strike.\n\nThe forefoot strike is being named as the most efficient way to run and for some populations this is probably true. If someone is lacking the ability to pronate then they will need to have another form of shock absorption, this is where the forefoot style can be used to reduce ground reaction force by the ankle joint plantar flexors acting eccentrically.\n\nHowever to suggest that forefoot striking is right for everyone is a challenging concept.  Is one technique ever suitable for anyone?  When looking at the research published in support of forefoot striking, consider whether the authors or the organisations that pay for the research, have anything to gain from the results.  If you go looking for something you are guaranteed to find it.  To reduce bias the study should include \'outside un-bias researchers\' performing the full methodology of the study.  If the outcome is the same, then the study is known to have inter-rater and intra-rater reliability and any less is merely commercial hype and too much of this exits in the fitness industry and some of it refers to the forefoot striking research.\n\nAnother variable that is not taken into account in any study that we have come across is that of intrinsic biomechanical dysfunction. Dysfunction in the pelvis for example could lead to a functional difference in leg length; this has been shown to be a predictor of injury1. So was it the type of foot strike or the dysfunctional pelvis (or one of the many other intrinsic biomechanical issues that can present) that led to the results gathered in the current research out there?\n\nThe best coaches see what the athlete’s body is doing naturally and then refine their technique to suit their natural running style rather than fit everyone into the same box.  From a coaching point of view, we need to recognise that the brain has the most amazing ability to make decisions to allow us to move our body and to compensate for any abnormal movement patterns and some biomechanical problems.  If we attempt to artificially change its instinctive genius we can easily disrupt the body’s ability to control movement.\n\nThe take home message from this is that there is a lot more work needed in the field of research on this subject.  There are as many arguments for forefoot striking as against, and while forefoot striking certainly is suitable for some runners who’s intrinsic biomechanics suit that style, there are others who clearly do not.\n\n1. Friberg O. Leg length asymmetry in stress fractures: a clinical and radiological study. J Sports Med Phys Fitness 1982; 22: 485-8\n\nAnthony Fletcher\n\nSpecialist Biomechanics Coach™\n\nThe Body Mechanic\n\n<b>Would you like to be able to assess knee and foot function?</b>\n\n<b><a href=\"https://www.www.biomechanicseducation.com/workshop/knee-foot-biomechanics/\">READ MORE</a></b>','We NEED Shock!','','inherit','closed','closed','','705-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',705,'https://biomechanicseducation.com/?p=38924',0,'revision','',0),(38925,0,'2024-07-16 11:26:37','2024-07-16 11:26:37','Not Any More!!\n\nThis gorgeous young lady is April\'s Biomechanics Coach™ of the Month!\nShe was nominated for being our first ‘home grown’ Specialist Biomechanics Coach™ who took on a completely new career with 100% commitment and determination to expand her knowledge as much as she could.\nCongratulations Libby!\n\n<strong>Your biography in brief </strong>\n\nI’m a self-employed Health and Performance Coach, a Specialist Biomechanics Coach™, Sports Masseur and Nutritionist. After working 10 years in corporate and incentive events and travelling around the world,  I wanted a career change, something that I could combine with looking after my daughter. I’ve been doing this for over six years now and I absolutely love my job! I help people become pain free, move more freely and start enjoying life as they should.\n\n<strong>What made you choose Biomechanics Coaching</strong>™<strong>? </strong>\n\nI wanted a career that was flexible but most of all rewarding, both financially and emotionally. After ten years working in events, travelling eighty days a year and sat at a desk for the rest, I wanted a different future. I wanted to be fit, healthy and happy, I wanted some family time and most of all I wanted to help other people achieve this too. So, the fitness industry was calling. I started studying nutrition and taking personal training modules. Then one day in the gym changing room I met Rachel France - and I ended up changing more than my Nikes! After speaking to her, I knew Biomechanics Coaching™ was what I needed to build my knowledge, my skills and my business. I begin to study gaining my Biomechanics Coaching™ qualification and my lower back specialism. I also passed my sports massage course with the company, which works perfectly alongside the Biomechanics Coaching™.\n\n<strong>What do you specialise in outside of Biomechanics Coaching</strong><strong>™</strong><strong>? </strong>\n\nAs well as Biomechanics Coaching™, I offer sports massage and nutrition coaching to my clients. This enables me to increase clients’ performance, health and well being. A complete package. It’s truly what’s inside that counts!\n\n<strong>Where would you like to see yourself in ten years from now? </strong>\n\nDoing what I do now, still learning and developing, but maybe overseas…where the sun is shining everyday :-)\n\n<strong>What would be your advice to somebody thinking of becoming a Biomechanics Coaching</strong><strong>™? </strong>\n\nInvest in the qualifications and stand out from the rest. You will have these tools in your pocket for life, not only benefitting your clients but giving you the best foundation for a successful career in health and fitness. <strong> </strong>\n\n<strong>On the journey to where you are now what have been your achievements? </strong>\n\nProbably the biggest achievement is gaining my qualifications while working and being a single parent. At times it was hard, but it was all worth it. Then building my client base from nothing, to the successful business it is today. It means a lot to me that most of my clients come from recommendations.\n\n<strong>Personal Sporting Career highs</strong>\n\nI was never into sports as a child and I didn’t start training until I was in my twenties, but now weight lifting is a huge part of my life. It’s my release; it keeps me strong for my job as well as looking the part. I’m still looking to expand my skills in sport though, maybe tennis or hockey. Watch this space.\n\n<strong>Tell us a secret or something interesting about you that not many people know about you: </strong>\n\nI used to melt a mars bar over a packet of crisps in the microwave, the unhealthiest snack ever! I can’t imagine what effect this had on my body. My diet has improved luckily for my health and career.\n\nWhere you can find me:\n\nWest Bridgford, Nottingham\n\nt 07983 592 147\n\ne <a href=\"mailto:libby@libbyupton.com\">libby@libbyupton.com</a>\n\nw www.libbyupton.com\n\nDo you have passion for helping people like Libby?\nWould you like a career like Libby\'s?\n<a href=\"https://www.www.biomechanicseducation.com/\" target=\"_blank\" rel=\"noopener\"><u><strong>READ HERE</strong></u></a> how you too can become a Biomechanics Coach™','Melt Mars Bars Over Crisps!?','','inherit','closed','closed','','702-revision-v1','','','2024-07-16 11:26:37','2024-07-16 11:26:37','',702,'https://biomechanicseducation.com/?p=38925',0,'revision','',0),(38926,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','<p class=\"p1\"><span class=\"s1\">Re-released by request another awesome insight into the thoughts of the Master of Intrinsic Biomechanics, Martin Haines. This article will fascinate anyone who trains athletes, plays sport or anyone who hasn\'t yet considered the impact of nerves within the \'integrated system\'.</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Understanding nerves…..</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Nerves have been described as the software of the body and to be able to understand this more thoroughly we have to understand about ‘nerve tension’ and ‘Adverse Neural Tension’. These concepts have been recognised for over 100 years in terms of treating patients clinically, but their full potential has never been understood until now. An analogy with the invention of the wheel is an interesting one. The discovery of nerve tension and it being used for the treatment of injuries is like the wheel being invented and placing it on its side, putting 4 legs around the underside and using it as a table. It makes a great table, but the idea to use it in the way we know it today was ground breaking. The same applies to nerve tension and its application to athletic performance and fatigue relief.</span></p>\n<p class=\"p1\"><span class=\"s1\">The entire nervous system, is a single continuous tract, so it follows that if any part of this continuous tract is trapped or tethered (as with an injury for example) then it also follows that there will be some restriction of the mobility of other parts of the nerve system. So a problem with one part of the nerve can cause pain in another – this is the clinical application. However, we have discovered that this is not always represented by pain but also by a reduction of joint range of movement and altered joint biomechanics which can affect a whole host of problems that can cause restricted performance and may ultimately lead to injury. Moreover, with the increased muscle spasm and associated factors, local fatigue increases and so understanding these principles can lead to benefits not only in human performance but also fatigue relief.</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Research</b></span></p>\n<p class=\"p1\"><span class=\"s1\">We know this happens from research performed at Liverpool Hope University College and studies their demonstrate astonishing results. One experiment showed that a muscle can increase its force output by 14% after a brief preliminary warm-up (just one 15 second workout using this concept). Another experiment showed that by following the same concept a 2 minute programme performed daily for 10 days increases muscle output by over 50%. By understanding the importance of the interaction of individual body systems with each other, we have established the worlds largest database of its kind and have included the outcomes of the auditing of this information in the Biomechanics Coaching™ Courses.</span></p>\n<p class=\"p1\"><span class=\"s1\">On the course you learn how to test your ‘nerve tension’ and prescribe movement patterns to enhance the coordinated output of your body’s systems. In terms of fatigue relief, it has been demonstrated that after 15 seconds of the programme, muscle fatigue is reduced by up to 14% immediately and sustained use led to significant and prolonged increase in muscle output. These studies have been validated at the highest level. A paper was submitted at the 6th Asian Biomechanics Congress (one of the worlds most credited) and was enthusiastically received. In a practical sense the programmes have been rigorously tested by people such as Olympic athletes through to workers on a product line and hospital health trusts.</span></p>\n<p class=\"p1\"><span class=\"s1\">Remember in most cases we are not even aware we have a problem, but even so you can still achieve these remarkable results. Just imagine what these figures could do you for your performance in your sport or indeed, on a sedentary level, how the fatigue relief can help after a hard day at the office.</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Terminology</b></span></p>\n<p class=\"p1\"><span class=\"s1\">So when it comes to exercise programming our holistic approach, which is commonly described but rarely understood and demonstrated, takes into consideration all of the body’s systems, and it has a deep understanding of how they interact and are guided by our nervous system. Description terms such as strength and power in this model are inadequate, so when we talk about exercises in these terms, we should be talking in terms of Movement Acquisition Patterns (or MAPs) which are used to enhance a given set of functional movements, not stretches or strengthening exercises, as the latter do not give credit for the full implications of the programming.</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Example</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Lets take a hamstring stretch as an example, we are not trying to stretch the hamstrings when we extend the leg out in front of us, we are trying to improve the range of hip flexion and knee extension by stretching the structures on the back of the leg and back. This brings in more than just the hamstrings, it can also be limited by a tight sciatic nerve, a rotated sacro-iliac joint in the lower back, tight gastrocnemius, tight spinal cord and indeed almost any nerve in the chain given the continuum concept described earlier. How many times have you stretched your hamstrings using the generally accepted methods only to find that their flexibility continues to be stubborn and often returns to their standard length very soon? Many people experience this phenomenon. The reason is often due to them stretching only one of the structures that limit the movement, i.e. the hamstrings. If they do not stretch the other structures as well, of course they will not be affected and so the limited range will usually return. So we are trying to acquire a pattern of movement, not just stretching the hamstrings. </span></p>\n<p class=\"p4\"><span class=\"s1\">Learn how to test nerves...</span><span class=\"s2\">\n<a href=\"https://www.www.biomechanicseducation.com/\"><span class=\"s3\"><b>READ MORE</b></span></a></span></p>','Test Your Nerve','','inherit','closed','closed','','682-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',682,'https://biomechanicseducation.com/?p=38926',0,'revision','',0),(38927,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','<p class=\"p1\"><span class=\"s1\">While I was waltzing around Blackpool, the awesome Chris Kitson was at Brendan Chaplin\'s event. Here is his report of his experience...(SO wish I could have been there!)........</span></p>\n<p class=\"p1\"><span class=\"s1\">What a whirlwind weekend at the very first Strength &amp; Success Summit! An amazing event that was filled to the brim with education on training, nutrition, and movement by some of the best guys in the industry.</span></p>\n<p class=\"p1\"><span class=\"s1\">I was lucky enough to be in that line up of speakers and OH. MY. GOD. I loved it! The weekend was host to some of the most motivated and switched on Strength &amp; Conditioning Coaches and Personal Trainers in the country. A buzzing atmosphere from the start. </span></p>\n<p class=\"p1\"><span class=\"s1\">The event kicked off with some witty remarks from Mark Laws taking a pop at each presenter as he gave the audience a run down on each presenter and what to expect from their sessions. Of course I had a lovely picture of a lady in a leotard doing some crazy gymnastic style movement as my background.</span></p>\n<p class=\"p1\"><span class=\"s1\">Next up the main man Brendan Chaplin, one of the top UK Strength &amp; Conditioning Coaches. Brendan ran us through some top business tips that helped him to reach where he is now. Hitting the audience with some solid principles to build upon with their own business. His 7 killer questions were very revealing and I\'d tell you them, but I\'d have to kill you...</span></p>\n<p class=\"p1\"><span class=\"s1\">Once I\'d been inspired by Brendan, it was my turn to take the lead and introduce my group to the world of intrinsic biomechanics. We explored what this consists of, and also how it could fit in to their current practice right now. We got physical and started looking at how different sections of the body were affecting each other, as well as explaining how the skeletal, myofascial, and nervous systems were very much interrelated. Some common injuries that commonly prop up were mentioned with no answers given, but simply a thought process as to what might potentially contribute towards them. I\'m never one to give a straight answer if I know I have people in front of me that can figure things out by themselves. The session was greatly received and I had a blast presenting it to a talented group.</span></p>\n<p class=\"p1\"><span class=\"s1\">There was plenty of time for networking in the break times and there were some great new partnerships formed. Our first break led us on to the next key note speak, Karl Tanswell. This guy scared half of the room simply by walking in to it. He\'s a renowned fighting coach who has worked with many of the greats including Connor McGregor. Karl took us through a step by step process of how he deals with his fighters and how he focusses on the basics. Weakness get worked on and drilled until they become strengths. I can only imagine trying to disagree! An excellent session with lots of solid principles in there. A great guy to chat to as well!</span></p>\n<p class=\"p1\"><span class=\"s1\">Everyone\'s favourite part of the day now which is lunch time. The hotel supplied a sterling buffet lunch which was plentiful and very good quality food (you know that\'s important). </span></p>\n<p class=\"p1\"><span class=\"s1\">After everyone had filled their stomachs, it was time for a lesson in business from the one and only Russell Jolley. I remember nearly crying with laughter for most of his presentation whilst picking up some solid business tips too. Well known for the blue air when he enters the room, there was a tally running on the table in front of my counting up the swearing content, to which I believe over 120 swear words were counted over the 60min presentation. Now that\'s some going! It wasn\'t all about the language however, Russell covered important topics including; knowing your avatar, common programmes to use, how to market on social media sites, as well as how to build trust and a community within your business. Top stuff.</span></p>\n<p class=\"p1\"><span class=\"s1\">Brendan Chaplin was up again after Russell to give us some key information on the new level 4 Strength &amp; Conditioning course being launched through Strength &amp; Conditioning information. This is NOT to be missed. The content simply looks awesome. </span></p>\n<p class=\"p1\"><span class=\"s1\">On to session 2 for me of the day, looking at the same intro to intrinsic biomechanics with another amazing set of S&amp;C coaches, Personal Trainers, and therapists. The nerves had calmed by this point and again I had a blast. We had some wow-ed faces as we demo-ed some basic skills on one of the participants. A leg length discrepancy and shoulder issue that could be adapted with 1 simple pelvic exercise. Easy when you know how! </span></p>\n<p class=\"p1\"><span class=\"s1\">Presenting at the same time as myself on both session (and I\'m gutted as their content sounded great) was Steven Gordon the Kettlebell master, and also Simon Herbert from Body Type Nutrition. Ste covered the Turkish get up and kettlebell swing, whilst Simon covered Explosive Sports Nutrition. From what I hear they were great!</span></p>\n<p class=\"p1\"><span class=\"s1\">The end of day one drew in with some group photos of all the participants and presenters and there was a real sense of community, shared learning, and mutual respect. Not an ego in sight. That to me is priceless. </span></p>\n<p class=\"p1\"><span class=\"s1\">After surprise 30th birthday party on the Saturday night I was a little worse for wear Sunday morning but had to make it in to see some more knowledge bombs. On arrival it seemed I wasn\'t alone either, which made me feel slightly better.</span></p>\n<p class=\"p1\"><span class=\"s1\">Day 2 kicked off with a solid presentation from Brendan Chaplin on his principles for training and programming. The content was gold dust. Brendan took us through his thought process and gave some examples of clients that he works with including videos of exercises showing development of reactions as well as some more specific goal-driven exercises. The notepad was out and all ears were wide open in this seminar for sure. Just a reminder that the nice guy that we\'d been chatting with over the weekend was in fact one of the UK\'s top S&amp;C coaches and VERY good at what he does. His athletes are testament to that.</span></p>\n<p class=\"p1\"><span class=\"s1\">The breakout sessions day 2 included the one and only Ben Coomber covering how to optimise recovery for our athletes/clients. This was a very up close and personal talk in a room where we were free to ask questions and talk things through which was great. Ben covered the basics of optimising recovery, and threw in some interesting bits of research for us to look up too. Plenty of suggestions on what we can do to optimise all aspects of recovery, not simply nutrition alone. A solid talk with no questions left at the end. </span></p>\n<p class=\"p1\"><span class=\"s1\">At the same time we had Darren Stratton delivering a practical session on mobility, where I\'m told the ankle and low back were the main focusses. I missed this however due to being in on Ben\'s talk. All participants reported great things from Darren\'s session however.</span></p>\n<p class=\"p1\"><span class=\"s1\">Also in the break out sessions was Mark Laws demonstrating some great body weight conditioning exercises that people can try out with their clients. Again, unfortunately I missed this due to being in Ben\'s session, but the feedback was great from the participants. I know Mark has launched a body weight training workshop that is touring the UK currently, so if you see it don\'t hesitate to jump on that.</span></p>\n<p class=\"p1\"><span class=\"s1\">The second key note speaker was James Vincent who was there to speak about mindset and how it can be used to drive your business forwards. James has worked with many top businesses and coaches CEOs on a daily basis. He talked us through potential and performance and how to bridge the gap. Identifying myself as a \'workhorse\' during the talk aids me in moving forwards with my own business and plans for the future. James presented us with an update on setting SMART goals with 3 simple steps:</span></p>\n<p class=\"p1\"><span class=\"s1\">Think big</span></p>\n<p class=\"p1\"><span class=\"s1\">Act Small</span></p>\n<p class=\"p1\"><span class=\"s1\">Move Quick</span></p>\n<p class=\"p1\"><span class=\"s1\">This hit home for me and inspired me to re-think some of my current systems and processes in my business. Just 3 simple phrases can change everything. A fantastic talk from James.</span></p>\n<p class=\"p1\"><span class=\"s1\">Unfortunately at this point I had to leave due to family commitments but I would just like to say that I\'ve never been to an event with such a great atmosphere (apart from TMC of course!) and filled with so many talented individuals. I feel absolutely honoured to be a part of the speaker list and hope to be back again in the future.</span></p>\n<p class=\"p1\"><span class=\"s1\">If you\'re thinking of going to the next event, then I can\'t recommend it enough. Seriously. For the price point, the level of content along with networking and lunch etc is insane! I would recommend any of the line up\'s courses after speaking with them. These guys have some serious experience and knowledge that will help you take the next step forwards in your career, whichever path you may choose.</span></p>\n<p class=\"p1\"><span class=\"s1\">Chris Kitson, Biomechanics Coach™, Master Trainer</span></p>\n<p class=\"p1\"><span class=\"s1\">Want to do one of Chris\'s workshops?</span></p>\n<p class=\"p1\"><span class=\"s1\">Biomechanics Trainer™ 2 day workshop JUNE 4th/5th</span></p>\n<p class=\"p1\"><span class=\"s1\"><a href=\"https://www.www.biomechanicseducation.com/workshop/biomechanics-trainer-4/\">BOOK NOW</a></span></p>','Strength Summit Report','','inherit','closed','closed','','677-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',677,'https://biomechanicseducation.com/?p=38927',0,'revision','',0),(38928,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','<p class=\"p1\"><span class=\"s1\">This topic is something that follows on from my previous Juicemail about communication (Bother Me….PLEASE!) and is a question I always ask at the beginning of a workshop, presentation or lecture. </span></p>\n<p class=\"p1\"><span class=\"s1\">“Why are you here?” </span></p>\n<p class=\"p1\"><span class=\"s1\">I am sure you have asked it of your client/s in the past right? Its the same situation in many ways.</span></p>\n<p class=\"p1\"><span class=\"s1\">We will have a certain level of expectation when attending sessions based on the limited details given in flyers, brochures, adverts or promotions. We may read a session title and a short paragraph and then from that form some level of expectation. </span></p>\n<p class=\"p1\"><span class=\"s1\">So prior to starting any session or presentation it is vital to understand this expectation. This then clarifies the level, or angle, to pitch or deliver the session for the audience present thus allowing relevance and a better connection to them.</span></p>\n<p class=\"p1\"><span class=\"s1\">No point using rugby or strength training anecdotes in a room full of ballerinas or pilates teachers now is there!?  Also no point guessing what they want to learn about when you can simply ask them right!?</span></p>\n<p class=\"p1\"><span class=\"s1\">So I was at The International Fitness Showcase (IFS) Blackpool Winter Gardens over the weekend with our partners Spinning® &amp; Athleticum®. This is one of my favourite working weekends of the whole year and this year was no different, leaving me still buzzing a few days later! So much so I wanted to share my weekend of fun with you!! </span></p>\n<p class=\"p1\"><span class=\"s1\">The weekend was spent with thousands of sweaty fit pros seeking the adrenaline high of a fitness class, the calm flow of mind and body and also the experience of some new ideas in education.</span></p>\n<p class=\"p1\"><span class=\"s1\">Pelvic Biomechanics lecture</span></p>\n<p class=\"p1\"><span class=\"s1\">Friday I asked my Pelvic Biomechanics audience why they were at my lecture? Why had they chosen my session over the other 6 or 7 sessions that were running at that time? </span></p>\n<p class=\"p1\"><span class=\"s1\">They told me they wanted to: </span></p>\n<p class=\"p1\"><span class=\"s1\">Learn more about pelvic anatomy</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn how to assess pelvic asymmetry</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn how to correct it </span></p>\n<p class=\"p1\"><span class=\"s1\">….nice and simple considering that is exactly what the content was about for this one!</span></p>\n<p class=\"p1\"><span class=\"s1\">The session was fully booked and drew a keen crowd of professionals amidst which we had chiropractors, pilates teachers, therapists and PT’s. It always excites me that we get the cross over of professionals together in our workshops. This practical demonstration looked at simple evidence based techniques to assess our clients pelvic function and then how to correct it as I gave a  sample what you can learn on our Pelvic Biomechanics 2 day workshop.</span></p>\n<p class=\"p1\"><span class=\"s1\">Core Screening lecture</span></p>\n<p class=\"p1\"><span class=\"s1\">The Core screening (Spine Biomechanics) workshop which was also fully booked and so as usually I started with ..</span></p>\n<p class=\"p1\"><span class=\"s1\">“Why are you here?” </span></p>\n<p class=\"p1\"><span class=\"s1\">This group said they wanted to;</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn how to maintain good core control</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn how to get a strong core</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn how to help people with LBP</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn about improving posture</span></p>\n<p class=\"p1\"><span class=\"s1\">Learn the best core exercises</span></p>\n<p class=\"p1\"><span class=\"s1\">Their responses made me realise they were not necessarily going to be getting what they expected but that’s the point of education isn\'t it? To be taken into areas of the unknown, to have our knowledge challenged, to enable us to develop and expand.</span></p>\n<p class=\"p1\"><span class=\"s1\">This practical session had 2 volunteers undergo 4 screens to understand their isometric core strength ratios, and therefore their injury risk, along with which areas of their core strength required focus in training</span></p>\n<p class=\"p1\"><span class=\"s1\">This session brought up some really great, interesting questions and discussions amongst the group like;</span></p>\n<p class=\"p1\"><span class=\"s1\">What is ‘weak’ anyway?</span></p>\n<p class=\"p1\"><span class=\"s1\">Are we GIVING clients back pain unknowingly?</span></p>\n<p class=\"p1\"><span class=\"s1\">Is core work gluing the wrong position?</span></p>\n<p class=\"p1\"><span class=\"s1\">How do we correct core strength ratio’s?</span></p>\n<p class=\"p1\"><span class=\"s1\">All of this gave those present an idea of what we discuss during our 2 day Spine Biomechanics workshop.</span></p>\n<p class=\"p1\"><span class=\"s1\">Foot Biomechanics lecture</span></p>\n<p class=\"p1\"><span class=\"s1\">While the final day is relatively quiet and only a half day, I wasn\'t quite prepared for the response to our Foot Biomechanics presentation which was not only fully booked - but jammed to the rafters!!</span></p>\n<p class=\"p1\"><span class=\"s1\">50 People squished into every corner of the room, standing in the doorway and on every inch of floor space to hear what we had to say about foot biomechanics. </span></p>\n<p class=\"p1\"><span class=\"s1\">“Why are you here?” </span></p>\n<p class=\"p1\"><span class=\"s1\">These guys wanted answers to all sorts of questions;</span></p>\n<p class=\"p1\"><span class=\"s1\">How can I help plantar fasciitis?</span></p>\n<p class=\"p1\"><span class=\"s1\">How do feet affect running gait?</span></p>\n<p class=\"p1\"><span class=\"s1\">How does running gait affect feet?</span></p>\n<p class=\"p1\"><span class=\"s1\">What are the best exercises for feet?</span></p>\n<p class=\"p1\"><span class=\"s1\">Does genetics affect foot function?</span></p>\n<p class=\"p1\"><span class=\"s1\">There was certainly a deep fascination from the audience recognising we really should understand foot function better. By breaking down this complex joint into what we, as PT’s, NEED to know, we then discussed what we CAN do to help our clients in relation to their feet. By increasing our understanding of both descending and ascending biomechanical influences we are better placed to refer, prescribe the right exercises or at least do something pro-active. We look at this in much more detail during our 2 day Knee &amp; Foot Biomechanics workshop. Interestingly I had a podiatry student in the lecture who came to speak to me afterwards and stated \"you have just made my entire degree make sense\"!</span></p>\n<p class=\"p1\"><span class=\"s1\">Since Monday morning I have been inundated with emails, texts and FB messages from the IFS attendees wanting to secure workshop dates before they all go - so I guess you liked it right!? The whole event was full of support and proves just what a fantastic industry it is;</span></p>\n<p class=\"p1\"><span class=\"s1\">The Spinning® gang are always super supportive and this year was no different.</span></p>\n<p class=\"p1\"><span class=\"s1\">We also had 2 volunteer Biomechanics Coaches™, newly qualified Stuart Farmer and trainee Matt Gibbs. These guys gave up valuable free time simply to support their training academy Biomechanics Education! </span></p>\n<p class=\"p1\"><span class=\"s1\">Thank you guys!!</span></p>\n<p class=\"p1\"><span class=\"s1\">There was a change of help. A group of super excitable and extremely supportive friends who come to my classes, wanted to come and see what the event was all about and again volunteer valuable free time to get involved and help Biomechanics Education.</span></p>\n<p class=\"p1\"><span class=\"s1\">Thank you SSSPA crew!</span></p>\n<p class=\"p1\"><span class=\"s1\">Do you want to learn more about the content of lectures?</span></p>\n<p class=\"p1\"><span class=\"s1\"><a href=\"https://www.www.biomechanicseducation.com/schedule/\">READ MORE</a></span></p>','Why Are You Here?','','inherit','closed','closed','','674-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',674,'https://biomechanicseducation.com/?p=38928',0,'revision','',0),(38929,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','<p class=\"p1\">As <span class=\"s1\">Biomechanics Coaches</span><span class=\"s1\">™ you</span> are professional technicians NOT marketing experts right?</p>\n<p class=\"p1\">BUT if you are self employed well then you had better be a marketing expert too because thats how you get business!</p>\n<p class=\"p1\">I am SO excited to have <span class=\"s1\">Biomechanics Coach</span><span class=\"s1\">™ AND marketing expert, Chris Wright write this blog specially for YOU <span class=\"s1\">Biomechanics Coaches</span><span class=\"s1\">™!</span></span></p>\n<p class=\"p1\">Chris says;</p>\n<p class=\"p1\"><span class=\"s1\"><b>Stop trying to sell the features of Biomechanics Coachi</b><strong>ng</strong></span><strong><span class=\"s1\">™!!</span></strong></p>\n<p class=\"p3\"><span class=\"s1\">Do you struggle to get across to people what Biomechanics Coaching</span><span class=\"s1\">™ </span><span class=\"s1\">is? Do you struggle to charge higher rates than other personal trainers in your area? Are you struggling to grow your business?</span></p>\n<p class=\"p3\"><span class=\"s1\">So often I see people set up their business, put up some form of website and hope and pray that people come in and buy their services.</span></p>\n<p class=\"p3\"><span class=\"s2\">Hope and pray is not a marketing strategy that I like to rely on!</span></p>\n<p class=\"p3\"><span class=\"s1\">I thought I would put together an introductory guide for Biomechanics Coaches</span><span class=\"s1\">™ </span><span class=\"s1\">so you can get the ball rolling.</span></p>\n<p class=\"p3\"><span class=\"s1\">This is step 1 to marketing your business, there is way more to it but we have to start here.</span></p>\n<p class=\"p3\"><span class=\"s2\"><b>Step 1: Know Your Perfect Client</b></span></p>\n<p class=\"p3\"><span class=\"s1\">And NO, it’s not everyone. When you try and market to everyone you end up hitting absolutely no one!</span></p>\n<p class=\"p3\"><span class=\"s1\">So you need to know your ideal client. Who is the type of person you most enjoy working with.</span></p>\n<p class=\"p3\"><span class=\"s1\">When I say know them, I mean know them. Here are a few things you should know….</span></p>\n\n<ul>\n	<li class=\"li5\"><span class=\"s1\">Gender</span></li>\n	<li class=\"li5\"><span class=\"s1\">Age</span></li>\n	<li class=\"li5\"><span class=\"s1\">Married?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Kids?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Where do they live?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Sports?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Injuries?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Physical Pain?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Emotional pain?</span></li>\n	<li class=\"li5\"><span class=\"s1\">House value</span></li>\n	<li class=\"li5\"><span class=\"s1\">Household income</span></li>\n	<li class=\"li5\"><span class=\"s1\">Job?</span></li>\n	<li class=\"li5\"><span class=\"s1\">What they spend their money on?</span></li>\n	<li class=\"li5\"><span class=\"s1\">Where do they spend their time?</span></li>\n</ul>\n<p class=\"p3\"><span class=\"s1\">Now that you know this we can now market much more effectively. </span></p>\n<p class=\"p3\"><span class=\"s1\">For example, it might be that your perfect client is…</span></p>\n<p class=\"p3\"><span class=\"s1\">A 48 year old male, lets call him John, who works in finance, earns £60,000+/year. Likes to keep fit and play golf, but is plagued with low back pain, headaches and high stress. His pain stops him playing golf and football with his 12 year old son. He has no energy in the evenings is grumpy from being in pain all day and is not being a good husband or father.</span></p>\n<p class=\"p3\"><span class=\"s1\">Now can <span class=\"s1\">Biomechanics Coaching</span><span class=\"s1\">™</span> help John?</span></p>\n<p class=\"p3\"><span class=\"s1\">YOU BET!!</span></p>\n<p class=\"p3\"><span class=\"s1\">If he worked with you I have no doubt that he would become a better father, husband, probably do better at work as he is in less pain, his mood would improve, the benefits are amazing!</span></p>\n<p class=\"p3\"><span class=\"s1\">BUT when he looks at your site, or comes into contact with your business you don’t tell him that!</span></p>\n<p class=\"p3\"><span class=\"s1\">Yet what I see day in day out is <span class=\"s1\">Biomechanics Coaches</span><span class=\"s1\">™</span> trying to sell <span class=\"s1\">Biomechanics Coaching</span><span class=\"s1\">™</span>. Let me explain what I mean. All over their websites (and yes I have researched lots of them) I see long, and I mean long, pages on in depth explanation of what <span class=\"s1\">Biomechanics Coaching</span><span class=\"s1\">™</span> is. That its intrinsic biomechanics, that looks at muscle spasm of the piriformis, the sciatic nerve, that is a screening tool used to assess discrepancies in the body, the list goes on and on and on.</span></p>\n<p class=\"p3\"><span class=\"s1\">Does John need to know all that? Does John care? Do you need to explain the ins and outs of <span class=\"s1\">Biomechanics Coaching</span><span class=\"s1\">™</span>? 100% NO!</span></p>\n<p class=\"p3\"><span class=\"s1\">John wants to know that he is going to be able to sit at his desk all day pain free, play a round of golf pain free (maybe even hit the ball further), be able to kick a ball around pain free. </span></p>\n<p class=\"p3\"><span class=\"s1\">Show John this! This is your marketing. Your website should speak directly to John (or whoever your clients are).</span></p>\n<p class=\"p3\"><span class=\"s1\">Oh and by the way, when you use Facebook as an example, you can set up ads so that they are only seen by the John’s in your area. This is something we can talk about at a later stage.</span></p>\n<p class=\"p3\"><span class=\"s2\"><b>Exercise for you to do:</b></span></p>\n<p class=\"p3\"><span class=\"s1\">Write now grab a piece of paper and pen, and start scribbling. Who is your ideal client, what pains and frustrations do they have that you can solve?</span></p>\n<p class=\"p3\"><span class=\"s1\">In fact, I challenge you to put this together then post in the <span class=\"s1\">Biomechanics Coach</span><span class=\"s1\">™</span> Group on Facebook and tag me in the post so I know you have done it. I am in the group, I am a <span class=\"s1\">Biomechanics Coach</span><span class=\"s1\">™</span> myself after all :-) </span></p>\n<p class=\"p3\"><span class=\"s1\">For more articles to help with marketing your business head on over to <a href=\"http://www.level10living.co.uk\"><span class=\"s4\">www.Level10Living.co.uk</span></a> Be sure to leave me a comment on a post when you get there too.</span></p>\n<p class=\"p3\"><span class=\"s1\">Have a great day!</span></p>\n<p class=\"p3\"><span class=\"s1\">Chris Wright</span></p>\n<p class=\"p4\"><span class=\"s2\"><a href=\"http://www.level10living.co.uk\">www.Level10Living.co.uk</a></span></p>\n<p class=\"p4\"><span class=\"s2\"><a href=\"https://www.facebook.com/YourLevel10Life/\">https://www.facebook.com/YourLevel10Life/</a></span></p>\n<p class=\"p4\"><span class=\"s2\"><a href=\"https://twitter.com/YourLevel10Life\">https://twitter.com/YourLevel10Life</a></span></p>\n<p class=\"p4\"><span class=\"s2\"><a href=\"https://www.instagram.com/yourlevel10life/\">https://www.instagram.com/yourlevel10life/</a></span></p>','Marketing For A Biomechanics Coach™','','inherit','closed','closed','','654-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',654,'https://biomechanicseducation.com/?p=38929',0,'revision','',0),(38930,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','<p class=\"p1\"><span class=\"s1\">During over 2 decades in the health and fitness industry some of the most commonly asked questions are about squat technique and how to improve it. So I decided to start a little project which had 3 aspects to it:</span></p>\n<p class=\"p3\"><span class=\"s1\"><b>a). How does one decide on which squat technique to use?</b></span></p>\n<p class=\"p3\"><span class=\"s1\"><b>b). How do we then improve on the technique?</b></span></p>\n<p class=\"p3\"><span class=\"s1\"><b>c). Could I improve my own technique?</b></span></p>\n<p class=\"p3\"><span class=\"s1\"><b>So lets begin with;</b></span></p>\n<p class=\"p1\"><span class=\"s1\"><b>The problem</b></span></p>\n<p class=\"p1\"><span class=\"s1\">The squat is a basic fundamental movement that we use every day when we stand up and sit down, and yet when we perform them as an exercise, generally we are not doing a very good job of it. This is probably due to a variety of factors from; a lack of functional capacity (some of which we shall discuss in future articles) to poor education. By poor education I mean that maybe we were never actually taught the correct technique or we were taught incorrectly or we have been confused over which ‘style’ of squat is the most appropriate for the desired goal. So here I will be discussing many of these issues and hopefully offering some ideas into how we may be able to improve our squatting techniques and make them more efficient and therefore more effective. </span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Which squat?</b></span></p>\n<p class=\"p1\"><span class=\"s1\">There is much controversy surrounding squatting and which technique is the best. So my aim is to determine, with a logical approach, what a <b><i>good</i></b> squat might look like. However before we can do this, there needs to be some definition of which <b><i>type</i></b> of squat we are talking about. There are many variations of the squat, front and back squats, wide stance and narrow stance, high bar and low bar, deep and shallow squats, and which squat you choose should be determined by what your goals are. </span></p>\n<p class=\"p1\"><span class=\"s1\">Another vital component to consider is that for many of us there are often intrinsic biomechanical dysfunctions present which will affect the performance of our squat technique yet may not necessarily be obvious from an external or visual perspective. This therefore highlights the need for correcting those dysfunctions but also the safest technique possible which can only come from appreciating the risks we may be taking in performing squats badly or even ones that may be deemed <b><i>relatively</i></b> good squats.</span></p>\n<p class=\"p1\"><span class=\"s1\">Let’s take a look at some commonly used, and often misinterpreted, squat variations:</span></p>\n<p class=\"p1\"><span class=\"s2\">Front squat</span><span class=\"s1\"> – this technique requires the bar to be resting across the anterior deltoids, the front of the shoulder. For this reason this style expects lighter loads as the weight is dependent upon the strength of the shoulder musculature to bear the load on top of the shoulder flexed to 90</span><span class=\"s3\"><sup>0</sup></span><span class=\"s1\">. This then also creates a shear force at the lumbar spine due to its forward position and downwards force more towards the forefoot, thus resulting in what I term the Jenga effect. The shear force on the spinal vertebra replicating the perpendicular force required to push a Jenga stick (potentially a vertebra) from within the stack (the spine). </span></p>\n<p class=\"p1\"><span class=\"s2\">Back squat</span><span class=\"s1\"> – probably the most commonly used technique with the bar or load resting across the upper back. This transfers the pressure to a more compressive load on the spine due to the bar being closer to the centre of gravity (CoG), above the mid-foot.</span></p>\n<p class=\"p1\"><span class=\"s2\">High bar position</span><span class=\"s1\"> – This, like the front squat, is a favourite with athletes who desire quadriceps development and uses a more upright trunk position. With the load resting on the meaty part on the top of the upper traps or the spine of scapular, away from the neck, below C7, this is a relatively high position on the back. </span></p>\n<p class=\"p1\"><span class=\"s1\">Escamilla (2001) states “..<i>because the high bar squat is similar to the squat movement performed during the clean and jerk, it is preferred by weight lifters”.</i></span></p>\n<p class=\"p1\"><span class=\"s2\">Low bar squat</span><span class=\"s1\"> - This position requires the bar to be resting down on the mid part of the scapular and upper back muscles are pinched to support the load. </span></p>\n<p class=\"p1\"><span class=\"s1\">“<i>Powerlifters typically use a low bar squat position and greater forward trunk lean….primarily to lift more weight, because a powerful trunk (eg. Erector spinae, glutes and hamstrings) musculature is involved in this position compared to the high bar squat. Therefore a low bar squat produces greater hip extension torque and less knee extensor torque compared to the high bar squat…” Escamilla, (2001)</i></span></p>\n<p class=\"p1\"><span class=\"s1\">This means that the low bar squat is great for reducing the stress on the ACL and forward knee movement. This does however translate into greater injury risk for back musculature and ligamentous structures. </span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Which muscles?</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Gullett, et al (2008) did a study looking at which muscles are being used in 2 of these variations. The front squat and the back squat with a high bar position. The 15 healthy individuals had been performing front and back squats on a regular basis for a minimum of 12 months prior to the research. Using EMG to measure specifically the activity of <b>rectus</b> <b>femoris (RF), vastus lateralis (VL) </b>and <b>vastus medialis (VM)</b>, <b>bicep</b> <b>femoris (BF) </b>and <b>semintendinosus (ST)</b> ,and the <b>erector spinae (ES),</b>this was what they found:</span></p>\n<p class=\"p1\"><span class=\"s1\">When comparing the differences, the back squat had higher hamstring activity to the front squat. The back squat had lower quadriceps activity in VL and RF. VM was equal in both squats. Front squats had higher activity in the erectors of the spine compared to back squats. </span></p>\n<p class=\"p1\"><span class=\"s1\">When looking at the data this is how it compared:</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>EMG                                                                                  Back squat                 Front squat</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Hamstrings (BF &amp; ST)                                                Higher               Lower</span></p>\n<p class=\"p1\"><span class=\"s1\">(Quadriceps)</span></p>\n<p class=\"p1\"><span class=\"s1\">Vastus lateralis                                                         <span class=\"Apple-converted-space\">  </span>Lower                 Higher</span></p>\n<p class=\"p1\"><span class=\"s1\">Rectus femoris                                                             Lower              Higher</span></p>\n<p class=\"p1\"><span class=\"s1\">Vastus medialis                                                           <span class=\"Apple-converted-space\"> </span>Similar              Similar</span></p>\n<p class=\"p1\"><span class=\"s1\">Lower back (erector spinae)                                       Lower                Higher</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>Biomechanical analysis</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Compressive force                                                       Higher               Lower</span></p>\n<p class=\"p1\"><span class=\"s1\">Knee extensor moments                                              Higher               Lower</span></p>\n<p class=\"p1\"><span class=\"s1\">Shear stress                                                                   Similar             Similar</span></p>\n<p class=\"p1\"><span class=\"s2\">Conclusion: </span><span class=\"s1\">With less weight, front squatting results in the same muscle activation as back squatting with a bigger weight. BUT using a lesser weight to perform the front squat does mean compressive forces at the knee are going to be lower. This would indicate that those who have knee problems such as ligament damage or meniscus tears, or osteoarthritis, should stick with the front squat since compressive forces can damage knee cartilage.</span></p>\n<p class=\"p1\"><span class=\"s1\">Finally, leg pressing can have up to 30-40% higher shear forces through the knee compared to front and back squats (Escamilla 2001), something to bear in mind if you have ACL problems.   </span></p>\n<p class=\"p1\"><span class=\"s1\">To keep things as simple as possible I will refer, in the second part of this squat article series, to the ‘<b><i>basic sports squat</i></b>’ in which the barbell is across the high bar position on the upper back, feet at shoulder width, depth down to thighs parallel to floor with an upright body posture, keeping knees in line with the centre of the foot and a ‘<i>neutral spine’</i> <i>(in this instance a ‘neutral spine is: the individuals normal spinal curvature, in standing, with no biomechanical dysfunction present – McGill, 2006).</i></span></p>\n<p class=\"p1\"><span class=\"s1\">Coming Soon…</span></p>\n<p class=\"p1\"><span class=\"s2\">The Squat Part 2</span><span class=\"s1\"> -<b>The Spine</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Here I will discuss and demonstrate with photos what the ‘Break point’ is as described by McGill, 2006. We will look at the spine with regards to the depth and the degree of hip flexion. </span></p>\n<p class=\"p1\"><span class=\"s2\">The Squat Part 3</span><span class=\"s1\"> – <b>The knee</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Here I will discuss back squat v’s front squat in relation to knee biomechanics also with consideration of squat width and the loads </span></p>\n<p class=\"p1\"><span class=\"s2\">The Squat Part 4</span><span class=\"s1\"> – <b>The foot</b></span></p>\n<p class=\"p1\"><span class=\"s1\">What position should we place the feet in to perform a squat and which footwear is advised?</span></p>\n<p class=\"p1\"><span class=\"s2\">The Squat Part 5</span><span class=\"s1\"> – <b>Belt or no belt?</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Its all in the title…..</span></p>\n<p class=\"p1\"><span class=\"s2\">The Squat Part 6</span><span class=\"s1\"> – <strong>The conclusion</strong>, ALL references &amp; the effects of our intrinsic biomechanics</span></p>\n<p class=\"p1\">Learn how to assess your clients pelvis &amp; improve their squat..</p>\n<p class=\"p1\"><a href=\"https://www.www.biomechanicseducation.com/workshop/pelvic-biomechanics/\">CLICK HERE TO BOOK YOUR </a>Pelvic Biomechanics Workshop</p>','The Squat Part 1','','inherit','closed','closed','','651-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',651,'https://biomechanicseducation.com/?p=38930',0,'revision','',0),(38931,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','Communication is a vital skill for practitioners in a service industry like ours.\n\nIt is pretty alarming how many professionals are lacking a basic understanding of the simple skills required in this vital component to our business.\n\n<em>How hard can it be? </em>I can hear you thinking\n\nWell it can be really <em>simple</em> but the true <em>skill </em>is often lost in the ‘noise’ in our brains as we live our lives a million miles per hour.\n\nAsk yourself…\n\nDo you hold eye contact with the person you are listing to?\n\nDo you have the right body language to show you are <em>truly</em> listening?\n\nDo you know with the right body language is?\n\nDo you know additional skills that will make people WANT to be in your company? Like prospective clients!\n\nDo you smile at people when you see them? Like a BIG smile!\n\nDo you wish you could be better at motivating your clients?\n\nDo you sometimes wonder how on earth you will get (NAME) to do what they need to do to achieve the goals they have set?\n\nCommunication skills are so important when it comes to how you make another person feel and this can improve your ability to encourage their motivation as well as wanting to book another session with you. We, as a race, have a desire to feel valued and accepted by others and this happens through communication, in particular the skill of listening.\n\nSo now ask yourself…\n\nDo you have the ability to <em>truly</em> listen?\n\nCan you <em>demonstrate</em> you have listening skills?\n\n<em>How</em> can you demonstrate that?\n\nWhat are the benefits &amp; to whom?\n\nWell in my experience the ‘best’ and most successful professionals out there do not necessarily have the highest qualifications (how many clients have asked to see your certificates anyway?).\n\nHowever they have a skill in listening to what their audience or clients are saying by using methods that for some people seem to come naturally and for others need to be learned, practiced and honed.\n\nNow those who do this naturally are probably the types of people you like to be around. Watch your friends, particularly those who\'s company you enjoy and see what they do that makes you feel good. See how many of the list below they do naturally.\n\n1). <strong>Paraphrasing</strong> - This technique is when you relay back to your audience/client what they have just said for example <em>“So if I am right in understanding what you just said was</em>…….?” by repeating their words back to them your audience feels heard, cared for and important to you.\n\n2). <strong>Eye contact</strong> - look interested by looking them directly in the eye, holding that eye contact lets them know they have your full attention and what they are saying holds value.\n\n3). <strong>Body language</strong> - Folding your arms creates a barrier so using ‘open’ body language by keeping your arms open and turning your body to face your audience/client you are showing them they have your attention.\n\n4). <strong>Physical touch</strong> - The power of human contact has been demonstrated in studies over and over again to have a huge impact on the way people respond to you. For example if someone is selling you something and they gently touch your elbow you are more likely to trust them and therefore buy from them.\n\nRead more about the power of touch;\n\n<a href=\"http://www.forbes.com/sites/carolkinseygoman/2014/01/28/why-you-should-reach-out-and-touch-someone/#1c293111324c\" data-cke-saved-href=\"http://www.forbes.com/sites/carolkinseygoman/2014/01/28/why-you-should-reach-out-and-touch-someone/#1c293111324c\">http://www.forbes.com/sites/carolkinseygoman/2014/01/28/why-you-should-reach-out-and-touch-someone/#1c293111324c</a>\n\n5). <strong>Remember little personal details </strong>- By asking how their pet Fido is getting on they will feel <em>heard</em> and cared for because you remembered their precious pet’s name.\n\nWhat are the benefits to YOU?\n\nWell if you want your clients to do what you ask, understand it and buy into what your saying then you need to make them feel <em>heard</em> first.\n\nThey will tell you why they want your services right? So you have to demonstrate you have heard by responding appropriately otherwise they may well go elsewhere.\n\nThe ability to listen will also tell you what language to use in response, how to explain what you want to explain and which motivators to utilise for the best results with this particular client based on what THEY HAVE SAID.\n\nSell them what they came for, using their reason for visiting as your response!\n\nWe all have a different dynamics when we are in the company of different types of clients and their different characteristics. This doesn’t mean we are acting or not being ourselves, it is simply the way we communicate with this person.\n\nYou also want them to listen to you and so if you demonstrate this skill they are more likely to WANT to listen to what you have to say.\n\nConsider this the next time YOU want to be heard.\n\nIf you don’t <em>truly</em> listen you can miss out on a lot of useful information and it could make your job a whole lot easier and WAY more fun.\n\nBy <em>truly</em> listening we achieve several things:\n\na). Identifying what the client REALLY wants - chances are they may not realise what will be required for them to achieve their goal and it may take a true listener to understand what they are actually asking for.\n\nFor example they may say <em>“I want to lose weight” </em>but actually they don’t care what they weight they simply want to feel good about themselves.\n\nb). An understanding of how we are going to help them achieve their goal - if we do not listen to them telling us that they do not enjoy running and then we give them running as an exercise we are have clearly not heard!\n\nc). A bond with that person that makes them know you care - when you feel heard you feel important and valued which is comforting and what we are all seeking.\n\nd). Each of the above results in a higher chance of compliance and therefore success - It would be crazy NOT to evaluate your communication skills and consider implementing the techniques listed above and others.\n\nAs a teacher I have engrained myself into the habit of self reflection after every session I deliver. So literally every time I teach, present or lecture I evaluate my own communication skills/performance and reflect on what went well and what could have been better. Then I create an action plan to improve the things I wasn\'t completely happy with so that should the same scenario occur again I hopefully make a better job of it next time around.\n\nMaybe this is something you might consider doing at the end of each session or day? Consider your communication skills, how effective they are and whether you could employ some new techniques to improve your listening skills for example.\n\nWhy not write and tell me about it too?..…..\n\nBother Me PLEASE, because I care!!\n\nDo you want to learn how to truly listen?\nJoin our academy\n<a href=\"https://www.www.biomechanicseducation.com   \" target=\"_blank\" data-cke-saved-href=\"https://www.www.biomechanicseducation.com   \" rel=\"noopener\"><strong><u>CLICK HERE</u></strong></a>\n\n&nbsp;','Bother Me.....PLEASE!','','inherit','closed','closed','','647-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',647,'https://biomechanicseducation.com/?p=38931',0,'revision','',0),(38932,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','<p class=\"p1\"><span class=\"s1\"><b> ...and the Subtalar Joint.</b></span></p>\n\n<h2>A brief discussion....</h2>\n<p class=\"p2\"><span class=\"s1\">After reading about Kelly Starrett\'s suggestion of the 10 minute squat test I began to think about how it may be influenced by the rest of the body, &amp; in particular, in relation to the subtalar joint (STJ) since he mentions the forward foot position \'...<em>to encourage STJ neutral.</em>.\'</span></p>\n<p class=\"p2\"><span class=\"s1\">Question: <b><i>What influences the STJ during a 10 minute squat test/exercise?</i></b></span></p>\n<p class=\"p2\"><span class=\"s1\">With our industry being taught common generic teaching points like \'<em>toes inline with 2nd/3rd toe/centre foot\'</em> I wanted to explore this concept for an ideal to gain a deeper level of understanding from the \'intrinsic\' biomechanical view point.</span></p>\n<p class=\"p2\"><span class=\"s1\">If the tibia\'s ideal positioning is true in your client then this teaching point would be correct, however if not then a different teaching point maybe required. The reason I noticed this was my own \'normal\' tibial positioning when I tried to practice Starrett suggestion of ideal alignment, did not feel great at all. In fact it felt quite wrong to the point of being at risk!</span></p>\n<p class=\"p2\"><span class=\"s1\">If we consider that in anatomical terms, the tibia\'s typical natural alignment is with about 3-5 degrees of lateral rotation from the midline, maybe we should first discuss what influences this positioning from above &amp; below to therefore consider how many of us are in fact in this \'typical\' start point. </span></p>\n<p class=\"p2\"><span class=\"s1\">For example in a pronated foot, the STJ will make lateral rotation of the hip more challenging for a \'good\' squat position. From the foot perspective the forward foot position is probably a good position but when considering the structures above the foot they could create secondary issues: i.e. rotated pelvis, resulting in a functional leg length difference or ligament dominance causing knee valgus.</span></p>\n<p class=\"p2\"><span class=\"s1\">So all things considered there are several things that will influence the position on the STJ during the 10 minute squat test.  </span></p>\n<p class=\"p2\"><span class=\"s1\">Then there\'s the question: <em><strong>Could practicing the 10 min squat mobilise the STJ if it were considered to be stiff?</strong></em></span></p>\n<p class=\"p2\"><span class=\"s1\">The STJ moves through 3 planes, the 10 min squat coached with the feet forward simply takes it through the sagittal plane which would therefore encourage dorsi flexion of the STJ. However if you are looking for more all round mobility, the other 2 planes would need to be considered. </span></p>\n<p class=\"p2\"><span class=\"s1\"><b>So to conclude in brief</b>: To make a decision as to whether to practice the 10 minute squat with a forward foot position we must first assess pelvic biomechanics. Pelves will be as diverse as any other body part so its maybe advisable to consider this when coaching clients to squat. </span></p>\n<p class=\"p2\"><span class=\"s1\">Also in this instance, being able to assess the laxity of the STJ, would give us the advantage of a measured start point to help us best advise our clients on foot angle along with the hip width &amp; even squat depth.</span></p>\nFinally I agree with Starrett when it comes to practising positions, movements or shapes we dont do enough of or maybe even at all, to improve movement however we will always need to consider the entire picture, the integrated system, the whole client &amp; all the things that influence them before we accept any quick fix....right?\n<p class=\"p2\"><span class=\"s1\">COMING SOON....... feet &amp; footwear! </span></p>\n&nbsp;\n\n<img class=\"size-medium wp-image-5309 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/02/Is-there-a-right-shoe-for-you_-300x150.png\" alt=\"\" width=\"300\" height=\"150\" />\n\n&nbsp;\n<h1><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Would you like to gain a deeper understanding of your client\'s bodies?</a></h1>\n<a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noopener\">Why not get in touch to find out more? &gt;&gt;CLICK HERE&lt;&lt;</a>','The 10 Minute Squat Test...','','inherit','closed','closed','','616-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',616,'https://biomechanicseducation.com/?p=38932',0,'revision','',0),(38933,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','<em></em>We are always exited to run this workshop due to such a high demand to learn from one of the best in the industry!\n\nMartin Haines is a Biomechanics Coach™ and therapist.  He is also proud to be a European Tour Performance Institute Advisory Board Member and he brings this unique golf workshop to you personally.  His own interest in the game of golf, and his work with a number of past and present tour professionals, provides a unique perspective on current thinking.\n\nThe workshop will show how you can maximise the player’s own biomechanical performance to help their golf, and reduce their risk of injury.  It is based upon Martin’s study of how the intrinsic biomechanics of the body impacts upon the swing and the evidence based education he has provided to many of the European Tour therapists.\n\nAt the end of the workshop you will have learnt some quick and simple manual tests you can perform on your players to identify any biomechanical flaws that may be preventing them from progressing and developing their swing, as well as some simple techniques you can show them to help themselves.  The principles can be used to help improve golfer’s performance, reduce their risk of injury and identify whether any biomechanical flaws are causing pain.\n\nFor existing Biomechanics Coaches™ the workshop offers a unique insight to how your existing knowledge can be applied to golf, so that you can start to understand how golf coaches and players think, and the language they use.  This will help not only your understanding of how to manage golfers that you see, but also how to pitch your services to them in a way they will understand.\n\n<em>“The variety of golf swings that exist demonstrates the variety of ways the body can compensate for its intrinsic biomechanical flaws.  Understand them, and how to improve them, and you’ll play better golf, become a better teacher and understand why injuries may be recurring ”. </em>\n\n<em>Martin Haines, Biomechanics Coach</em>™<em>.</em>\n<strong><u><a href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\" target=\"_blank\" data-cke-saved-href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\" rel=\"noopener\">BOOK</a></u></strong><a href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\" data-cke-saved-href=\"https://www.www.biomechanicseducation.com/workshop/golf-workshop/\"><strong><u> NOW</u></strong> </a>','Golf Biomechanics Workshop!','','inherit','closed','closed','','595-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',595,'https://biomechanicseducation.com/?p=38933',0,'revision','',0),(38934,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','<p class=\"p1\"><span class=\"s1\">Previously I have written, and raved about, the book; ‘<i>Body by Science’</i> by Doug McGuff and John Little, for its volume of research and the logical approach to the point they were making.</span></p>\n<p class=\"p1\"><span class=\"s1\">More recently I have read another book, and been reminded of, a point they make about health and fitness being quite different goals. </span></p>\n<p class=\"p1\"><span class=\"s1\">‘<i>Intervention’</i> by Dan John is a no brainer investment for any strength training fan by the way. In this book the clarity of his logic is based on 3 decades of experience as an S&amp;C coach and he is completely honest about his failings, which also enhance his coaching. This is something I a familiar with, as I am sure you are..</span></p>\n<p class=\"p1\"><span class=\"s1\">When you get it wrong, you learn!</span></p>\n<p class=\"p1\"><span class=\"s1\">John explains, with great reasoning, the differences between health and fitness and that many clients do not realise which of these is their goal. This then interferes with the PT’s programming since the client asks for what they THINK their goal is.</span></p>\n<p class=\"p1\"><span class=\"s1\">John’s view is that <i>health</i> is the homeostasis of an organism and <i>fitness</i> is simply the ability to perform a task.</span></p>\n<p class=\"p1\"><span class=\"s1\">McGuff’s definitions;</span></p>\n<p class=\"p1\"><span class=\"s1\"><b><i>HEALTH</i></b><i>: Is a physiological state in which there is an absence of disease or pathology and that maintains the necessary biological balance between the catabolic and anabolic states.</i></span></p>\n<p class=\"p1\"><span class=\"s1\"><b><i>FITNESS</i></b><i>: The bodily state of being physiologically capable of handling challenges that exist above the resting threshold.</i></span></p>\n<p class=\"p1\"><span class=\"s1\">So the common theme is not only that they are not the same thing but also that it is important to understand how they can, and often do, impact upon each other and negatively.</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>The Problem</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Example one;</span></p>\n<p class=\"p1\"><span class=\"s1\">Training for a marathon, for example, demands hour and hours of repetitious high impact on hard surfaces for long periods of time. Not necessarily the best thing for our joints right? Yet many people really enjoy that challenge and feel great for achieving the distance/time they set out to do. So their <i>‘fitness</i>’ goal outweighed the <i>health</i> implication of wear and tear on their joints.</span></p>\n<p class=\"p1\"><span class=\"s1\">Example two;</span></p>\n<p class=\"p1\"><span class=\"s1\">Preparing for a weight lifting competition requires heavy lifting loading joints beyond what the may have done previously. Again this would stress joints and yet could bring me personally so much joy should I ever get to the desired weight I wish to snatch over my head. Therefore the training goal is ‘<i>fit’ </i>for the task rather than safest for my joints.</span></p>\n<p class=\"p1\"><span class=\"s1\">Example three;</span></p>\n<p class=\"p1\"><span class=\"s1\">Weight loss means eating less calories than the body is used to and so for many this could be a ‘<i>health’</i> related goal to reduce sugar intake for example. However if they also started running to increase calorie expenditure this could start to tip their journey into a <i>‘fitness’</i> goal should they decide to enter a race. Then we need to consider this implications of requiring MORE food again due to this higher calorie expenditure.</span></p>\n<p class=\"p1\"><span class=\"s1\">Finding a balance of homeostasis, while maintain optimal health is really NOT that easy when you think about it since..</span></p>\n<p class=\"p1\"><span class=\"s1\">The body is a MASTER OF COMPENSATION. </span></p>\n<p class=\"p1\"><span class=\"s1\">Once it has adapted something will change for either the better or worse. How you gauge better or worse is an interesting thought when you consider the goal. </span></p>\n<p class=\"p1\"><span class=\"s1\"><i>“I completed my first marathon…..but my knees are shot”</i></span></p>\n<p class=\"p1\"><span class=\"s1\"><i>“I lost 2 stone …..but I feel shattered ALL the time”</i></span></p>\n<p class=\"p1\"><span class=\"s1\">Also simply being <i>‘healthy’</i> may not have the excitement of a race or competition and so there is possibly less of a sense of ‘achievement’ as how do you measure it? I may have one example for you later…</span></p>\n<p class=\"p1\"><span class=\"s1\">Now I am not suggesting it is impossible but as PT’s and fitness professionals it is essential that we have the skills to help or clients realistically and with their goal in mind. Part of that maybe keeping them on track and educating them on the implications of changing their goal as they progress, which is highly likely in many cases.</span></p>\n<p class=\"p1\"><span class=\"s1\">We should have the skills to best prepare our clients for movement, be able to suggest general advise on eating well, ensure our clients exercise efficiently, wisely and safely to obtain success in reaching their desired goal.</span></p>\n<p class=\"p1\"><span class=\"s1\">Could we go as far as to say exercise is bad for you?</span></p>\n<p class=\"p1\"><span class=\"s1\">Well that depends on the alternative!? </span></p>\n<p class=\"p1\"><span class=\"s1\">Sedentary is not good</span></p>\n<p class=\"p1\"><span class=\"s1\">Ultimately movement is good </span></p>\n<p class=\"p1\"><span class=\"s1\">As is consuming the right food</span></p>\n<p class=\"p1\"><span class=\"s1\">I think you understand where I am coming from, right?</span></p>\n<p class=\"p1\"><span class=\"s1\"><b>So What Do We Do?</b></span></p>\n<p class=\"p1\"><span class=\"s1\">Let’s clarify the true desire of the client, without making assumptions, right up front by asking questions that will give more clarity on what their start and end points REALLY are. </span></p>\n<p class=\"p1\"><span class=\"s1\">Educate the client on risks or possible outcomes and the difference so they recognise the importance of moderation and appropriate adaption.</span></p>\n<p class=\"p1\"><span class=\"s1\">Mots importantly, and one of the things Dan John also discusses over and over again is, the importance of assessment - REGULARLY! Every 2-6 weeks at least. “<i>If you ain’t assessing you’re guessing”</i> John states.</span></p>\n<p class=\"p1\"><span class=\"s1\">So what kind of assessment/s do you do now?</span></p>\n<p class=\"p1\"><span class=\"s1\">ParQ?</span></p>\n<p class=\"p1\"><span class=\"s1\">Weight/Height?</span></p>\n<p class=\"p1\"><span class=\"s1\">Waist/Height?</span></p>\n<p class=\"p1\"><span class=\"s1\">Sit &amp; Reach?</span></p>\n<p class=\"p1\"><span class=\"s1\">Body Fat?</span></p>\n<p class=\"p1\"><span class=\"s1\">1 rep max?</span></p>\n<p class=\"p1\"><span class=\"s1\">VO2 max test?</span></p>\n<p class=\"p1\"><span class=\"s1\">Lifestyle Q&amp;A?</span></p>\n<p class=\"p1\"><span class=\"s1\">Food diary?</span></p>\n<p class=\"p1\"><span class=\"s1\">FMS?</span></p>\n<p class=\"p1\"><span class=\"s1\">Video analysis?</span></p>\n<p class=\"p1\"><span class=\"s1\">Biomechanics assessment?</span></p>\n<p class=\"p1\"><span class=\"s1\">How valid do you feel each of these test are in relation to your clients start point and end goal?</span></p>\n<p class=\"p1\"><span class=\"s1\">Do you feel you are adequately equipped to assess your clients start point?</span></p>\n<p class=\"p1\"><span class=\"s1\">Then can you regularly and easily re-assess AND monitor their progress objectively?</span></p>\n<p class=\"p1\"><span class=\"s1\">Assessment and re-assessment is vital in demonstrating both progression and regression to allow you/the client to adapt what is being done whether it be diet, preparation for movement, exercise, number of hrs sleep, routine, recovery, lifestyle factors and so on.</span></p>\n<p class=\"p1\"><span class=\"s1\">Without a clear training goal, which is likely to be either <i>health OR fitness</i> predominantly, and without the ability to assess and monitor we lose specificity in our planning. We need to be able to celebrate achievement by demonstrating progress through out assessment tools!</span></p>\n<p class=\"p1\"><span class=\"s1\">One size not fit all.</span></p>\n<p class=\"p1\"><span class=\"s1\">Case by case.</span></p>\n<p class=\"p1\"><span class=\"s1\">Every client is a new challenge.</span></p>\n<p class=\"p1\"><span class=\"s1\">How exciting it is to all be so different - don’t you think?</span></p>\n<p class=\"p1\"><span class=\"s1\"><b><a href=\"https://www.www.biomechanicseducation.com/diploma/dp/\">Would You Like To Be Able To Assess Your Clients Biomechanics?</a></b></span></p>','Health V’s Fitness - Can Being Fit Stop You Being Healthy?','','inherit','closed','closed','','591-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',591,'https://biomechanicseducation.com/?p=38934',0,'revision','',0),(38935,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','Was asked a question recently “Do we need to massage the ITB?\"\n\nIt\'s a common thing to see gym members rolling the outside of their thighs on a foam roller wincing in pain\n\nAs a sports massage therapist this raises for me a similar question along with others\n\n&nbsp;\n\nWhy?\n\n&nbsp;\n\nDo they know what they are doing? Or have they ever seen a qualified sports massage therapist? Is something so painful the right thing to do?\n\nIs there really any benefit to doing this? Is there a better, less painful or safer option?\n\nNow in my experience controversial topics are usually very reasonable ideas taken out of context so I did bit of my own research around this area and would like to offer some thoughts from my findings. However I always encourage you, the reader, to do a bit of your own research and feel free to come back and offer your thoughts so we can all learn from each other.\n\n&nbsp;\n\nSo firstly lets look at the anatomy of the ITB or iliotibial band;\n\nThe iliotibial band (ITB) or tract is a lateral thickening of the fascia lata in the thigh. Proximally it splits into superficial and deep layers, enclosing tensor fasciae latae and anchoring this muscle to the iliac crest. It also receives most of the tendon of gluteus maximus. (Standring, 2004 Grays Anatomy; the Anatomical Basis of Clinical Practice)\n\nDue to the angles of pull and its attachment sites it is a knee stabiliser in both extension and partial flexion of the knee joint. This means it is in constant use during gait, walking and running. It is in fact one of the main supports of the knee against gravity\n\nSo this raises a clear point for me, if the ITB is a knee stabiliser and its role is as the main support on the knee against gravity then surely it requires a good amount of tension running through it to do that. We also know that the whole point of manual therapy, massage, foam rolling, trigger pointing etc is to create blood flow by releasing tension.\n\nThis therefore might tell us that actually for a fit and healthy individual foam rolling the ITB is not good news as it may well reduce that tension and create problems of stability around the knee joint.\n\nOk so I know what you are thinking, most people do it because they have knee pain or ITB syndrome or they ‘feel tension’. Well this is different again because we should consider WHY they have these issues before assuming any are in relation to the ITB. Well let me share with you a couple of quotes from Karel Lewit a world renowned manual therapist way ahead of his time and unafraid to challenge current thinking and also open to change from his own original views:\n\n“He who treats the site of pain is lost”, “Where do you have pain? On my MRI” Karel Lewit <a href=\"http://www.rehabps.com/DATA/Karel_Lewit.pdf\">http://www.rehabps.com/DATA/Karel_Lewit.pdf</a>\n\n&nbsp;\n\nSo back to the question: “Do we need to massage the ITB?”\n\nPoint one: Not everyone and particularly if you are fit and healthy.\n\nWhat about those who are diagnosed wit ITB syndrome?\n\n&nbsp;\n\nWhat is ITB syndrome?\n\nit is commonly known as inflammation of a bursa from overuse during running, cycling etc. However there are recent studies showing it could be more related to deep fat to the ITB. http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2100245/\n\nOk well what would we do about ITB syndrome then considering both suggested causes once again I would ask WHY? Since not all runners or cyclists suffer ITB syndrome. So my train of thought is well if the ITB inserts into the TFL &amp; Glutes should that be somewhere to consider assessing? Sure thing! I certainly know some screens that involve understanding if this muscles are dysfunctional. In fact due the body being an Integrated System I would suggest that is probably a good places to start combined with the research that states 60% of dysfunction does for the pelvis.\n\n&nbsp;\n\nWe might also consider that if this tension in the TFL, Glutes is present then maybe that would be a less painful more sensible places to massage, foam roll etc.\n\nTo my mind the biggest problem that might occur from gym members foam rolling their ITB is they are not a sports massage therapists and therefore may no be aware of the anatomical structures they are pressing on, what pressure is appropriate, the risks and contraindications. Sports Massage Therapists are skilled at being able to modify for that individual, for that particular day and how the client feels and presents from the biomechanical assessment they should be making prior to the treatment.\n\nMassage should NEVER be painful but let me define pain.\n\n&nbsp;\n\n0/10 = No pain\n\n10/10 = Excruciating like having the arms ripped out of the sockets.\n\n0/10-7/10 = Discomfort which the client is able to tolerate.\n\n8/10-10/10 = Inappropriate level of pain which is likely to increase tension thought the clients body.\n\n&nbsp;\n\nThis model is in my opinion - happy to hear other professionals ideas on this.\n\nYou might have someone argue they feel better after doing foam rolling on the ITB.\n\nPoint one - The Integrated System = what you feel may not relate to the area you feel it (see Karel Lewit quote above)\n\nPoint two - By influencing one area of the body you may well have released another i.e. You released TFL, Glutes rather than the ITB itself- so which would be the sensible option? Foam Roll the painful fascial bit that is supposed to be tensioned or try the muscles higher up that can be better controlled for discomfort during rolling?\n\n&nbsp;\n\nSummary\n\nIf we are totally honest nobody really knows what is happening inside our bodies during these methods, even with evidence and research some projects contradict others and so it is always case by case.\n\nFOAM ROLLERS DO NOT REPLACE HUMAN HANDS!!\n\n&nbsp;\n\nWith this in mind I would suggest the most sensible would be to visit a recommended, qualified manual therapist over and above any form of foam rolling as by far a much safer, hopefully less painful and much more logical option. Ask them lots of questions about self management and then do what they advise rather than ignore it.\n\nIf part of what they suggest is to self massage in some form then it should be clear what you do and how you do it, if not ASK!\n\nIf you are not happy then see someone different but research their background and ask to look at certificates and insurance papers. We gain them for a reason and no client has ever asked to see mine.\n\n&nbsp;\n\nHappy to discuss …\n\nTell us what you think?','Do We Need To Massage The ITB?','','inherit','closed','closed','','575-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',575,'https://biomechanicseducation.com/?p=38935',0,'revision','',0),(38936,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','<p class=\"p1\"><b>Congratulations Maura!</b></p>\n<p class=\"p2\"><span class=\"s1\"><b>This nomination is for her commitment to both her personal development and fully embracing her diverse skills sets - well done Maura!</b></span></p>\n<p class=\"p3\"><span class=\"s1\">Maura says;</span></p>\n<p class=\"p3\"><span class=\"s1\">Since 1997 I have been teaching group exercise and working in gyms.  In that time I’ve lost count of the number of courses I’ve done, some good, some bad.  I have also worked as a club manager but missed the teaching aspect of fitness, so I have now come full circle</span></p>\n<p class=\"p3\"><span class=\"s1\">Following the birth of my daughter (7 years ago) I went self-employed, year by year increasing the number of classes and getting an increase in demand for 1-2-1 sessions.  This was the area I was lacking confidence, skills and knowledge. So much so that when a client presented with a faulty movement pattern I questioned what I could do to help them or, ideally, what the client could do to help themselves.</span></p>\n<p class=\"p3\"><span class=\"s1\">I looked at repeating my PT course, but then remembered the iMoveFreely® Instructor workshop I did with Rachel many years earlier, and an amazing exercise called the 4 sign.  So I got in touch and after a couple of conversations, I decided to book on and go for the course due to its content.</span></p>\n<p class=\"p3\"><span class=\"s1\">My main area of teaching is Pilates with Biomechanics and 1-2-1. (though I do still like to dabble in the cardio/combat). Following the Biomechanics Coach™ Diploma I have completely changed how I teach and I can’t believe the massive difference the course has made to all aspects of my teaching. I have managed to form a good bond with some local osteopaths and Chiropractors, some of whom attend my classes and all refer clients my way. </span></p>\n<p class=\"p3\"><span class=\"s1\">I believe Pilates/biomechanics/ corrective exercise is my pathway going forward, so I have also completed the L4 Sports Massage course with Mike Grice, Director of Active Skills/ Birmingham Movement Therapy Clinic is also a Master Trainer and Biomechanics Coach™</span></p>\n<p class=\"p3\"><span class=\"s1\">If you are thinking about enrolling on the Biomechanics Coach™ Diploma, then do not hesitate! </span></p>\n<p class=\"p3\"><span class=\"s1\">Yes you will be taken outside of your comfort zone!</span></p>\n<p class=\"p3\"><span class=\"s1\">Yes you will question what you have learned before!</span></p>\n<p class=\"p3\"><span class=\"s1\">There is definitely no spoon feeding here!</span></p>\n<p class=\"p3\"><span class=\"s1\">Just fab content and a chance for self-development.</span></p>\n<p class=\"p3\"><span class=\"s1\">Achieving the both Biomechanics Coach™ Diploma and the Sports Massage while working and juggling a family, has been slightly challenging at times, but a big personal achievement for me. As for the rest of my achievements,  none on the sporting front I’m afraid, I love to take part but am definitely not a medal winning athlete. However I did award myself a Gold Star for opening up my own little studio with a colleague of mine 18 months ago!!</span></p>\n<p class=\"p3\"><span class=\"s1\">Would you like to know more about Biomechanics Coaching™?</span></p>\n<p class=\"p4\"><span class=\"s3\"><a href=\"https://www.www.biomechanicseducation.com/\"><b>READ MORE</b></a></span></p>\n','Maura Knight is Biomechanics Coach™ of the Month!','','inherit','closed','closed','','561-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',561,'https://biomechanicseducation.com/?p=38936',0,'revision','',0),(38937,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','<p class=\"p1\"><span class=\"s1\"><b>...Be Brilliant!</b></span></p>\n<p class=\"p2\"><span class=\"s2\">I am</span><span class=\"s1\"> really excited to tell you how busy I have been and why. Firstly because of the new website!</span></p>\n<p class=\"p2\"><span class=\"s1\">Go check out the 2016 schedule and KEEP WATCHING as we add MORE DATES because I have joined forces with the A.M.A.Z.I.N.G Brendan Chaplin and the A.W.E.S.O.M.E Ben Coomber.</span></p>\n<p class=\"p2\"><span class=\"s1\">Fantastic things are happening this year TRUST me!</span></p>\n<p class=\"p4\"><span class=\"s3\"><a href=\"http://summit.strengthandconditioningeducation.com/summit-teaser-rf\">The Strength Summit</a></span></p>\n<p class=\"p2\"><span class=\"s1\"><i>March 19th/20th Leeds</i></span></p>\n<p class=\"p2\"><span class=\"s1\">While I am truly gutted I cannot be there YOU need to be!</span></p>\n<p class=\"p2\"><span class=\"s1\">This event is all about developing yourself in 2016. The fitness industry is a fast evolving environment where we owe it to our clients and athletes to stay one step ahead. Thus meaning we are better placed to unlock their potential. </span></p>\n<p class=\"p2\"><span class=\"s1\">You can’t simply be a <i>good </i>trainer or coach anymore, not when there are so many of us and while there are some awful, some good and some great ones YOU can be BRILLIANT!</span></p>\n<p class=\"p2\"><span class=\"s1\">So join Brendan, Ben, Biomechanics Education\'s Master Trainer Chris Kitson, and other industry leaders, who will all be presenting and kick start YOUR journey into being brilliant in 2016!</span></p>\n<p class=\"p2\"><span class=\"s1\">On Saturday 19th Brendan will be sharing with you his blueprint to get amazing, long lasting results and having known Brendan for 6yrs take it from me - HE KNOWS! You will also learn 6 steps he has a used to grow multiple businesses. </span></p>\n<p class=\"p2\"><span class=\"s1\">After all it\'s no good being a brilliant trainer or coach if you can\'t reach the right people.</span></p>\n<p class=\"p2\"><span class=\"s1\">No one wants to miss out on helping those keen clients that, without a great business, you would never reach. Who knows they may go on to be the next Olympic champion!</span></p>\n<p class=\"p2\"><span class=\"s1\">Your special offer code is <b>BIOMECH10</b></span></p>\n<p class=\"p5\"><span class=\"s3\"><a href=\"http://summit.strengthandconditioningeducation.com/summit-teaser-rf\"><b>CLICK HERE TO BOOK NOW</b><b></b></a></span></p>\n<p class=\"p6\"><span class=\"s1\">Exciting Times!!</span></p>','Don\'t Be Good..','','inherit','closed','closed','','556-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',556,'https://biomechanicseducation.com/?p=38937',0,'revision','',0),(38938,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','Welcome to <a href=\"http://the7.dream-demo.com/demo/\">The7 - Ultimate WordPress Theme Sites</a>. This is your first post. Edit or delete it, then start blogging!','Hello world!','','inherit','closed','closed','','164-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',164,'https://biomechanicseducation.com/?p=38938',0,'revision','',0),(38939,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','<strong>BEN COOMBER of Body Type Nutrition, is someone who\'s work I admire, respect and enjoy! </strong>\n\n<strong>Having met and chatted on a number of occasions we are super excited to be working more closely throughout 2016 to bring YOU even more fabulous information and insights.</strong>\n\n<strong>\nTo broaden the Juicemail contributors and sources even further can only be a good thing right!?</strong>\n\n<strong>So in this article Ben talks to you about strength training....</strong>\n\nThere are two different types of people in the weight room (well, there are loads, but you know what I mean). There are those who are there to make improvements and there are those who are there to show off. One big distinction between these two groups is that one of them will tend to use more weight for everything than the other.\n\nNow, I’m not going to turn this into ANOTHER article about why you shouldn’t use bad form and just shift weight from A to B in any way possible. That’s boring, old information and you won’t take anything from it – everyone now knows that half-repping and using momentum to do things isn’t going to make you stronger. What I’m going to do here is take a different angle and tell you that people who make progress over time train hard – really hard – but they don’t always lift as much weight as possible for a given rep range.\n\nIf we were to take an average lifter (most of you) then we are able to roughly predict the amount of reps they are capable of performing with a given percentage of their 1 rep max. It generally goes something like the image above.\n\nThe problem with this information, however, is that it only really takes an acute session into account. Sure, you should be able to perform 4 sets of 8 using 77% of your max – it’s well within your strength ability – but then what?\n\nTotal volume, frequency of training and intensity (load on the bar) are all inter-linked factors which must be considered when creating a program for someone. What this means is that we need to make sure they are training hard enough and often enough with an appropriate amount of total volume (sets x reps x weight over the course of a week or other microcycle) to create a growth response.\n\nWe know that a load of around 65%-85% is the most effective range to work in for improving strength and size, and we also know that 2-3 sessions per week is probably as close to optimal as possible for the majority, so that leaves total within-session volume as the variable that we want to play with the most.\n\nVolume, however, is a tricky thing to maintain when intensity gets too high. If we were to perform the aforementioned 4 sets of 8 with 77% of our max it should theoretically be do-able, but the chances are that – because of total CNS and PNS fatigue - it will take a really long time to do and an even longer time to recover from. Taking multiple sets that close to failure can impact the rest of the session and even the rest of the week depending on your own personal ability to recover from lifting heavy, and that means that your performance in the rest of your training can suffer. Poor performance in other sessions will obviously hinder your ultimate results.\n\nNot only that, but beyond training volume, intensity and frequency there is one other overarching factor which we must consider in order to get stronger and bigger – progressive overload.\n\nTrain with the perfect intensity, drive up training frequency to a point where you are training as often as possible while still recovering optimally and increase sets and reps as much as you like, eventually you need to add some weight to the bar or you’re not going to get anywhere. Go too heavy and overload is going to be all but impossible.\n\nSo, lets take our 4x8@77% example above and put some real numbers in, to give you an idea of what I’m talking about.\n\nAssuming your max is 100kg for sake of ease, 4 sets of 8 at 77.5% gives you (4 x 8 x 77.5kg) 2,480kg of volume. Great. Now let’s say you complete that and want to add some weight to the bar, so we move up to the next available increment, 80kg.\n\nNot only have we moved up in weight, we have now moved up to 80% of your max, which means that we are now only able to perform 7 reps if we go to our maximum potential on each set, which would of course be all but impossible. You can’t go to absolute failure and expect performance not to dip – so let’s go to 4 sets of 6 with 80% - should be manageable, just.\n\nThat’s all well and good, but now we are only getting (4 x 6 x 80kg) 1920kg of volume, which is way less. We haven’t gotten anywhere but it’s not likely that we’re going to be able to do another set, and we certainly can’t do more reps or go heavier. We have nowhere to go and have therefore stalled.\n\nYou see it all the time in gyms. Guys will make initial progress and then stall out. They will get to a certain weight on a certain exercise and, despite evidently training REALLY hard, never actually manage to add more weight to it. It’s not uncommon to see someone busting their ass for YEARS and not actually adding weight to the bar and therefore, not actually getting any stronger.\n\nIt’s time to leave the ego at the door.\n\nSure, you may be ABLE to start off a program doing 4 sets of 8 at 77%, or any other similar rep range and intensity, but this will be exhausting as well as very, very difficult to improve upon. When looking at all successful training protocols (Smolov, Sheiko, Cube method etc) you will see that the average intensity will be somewhere around 70-73% but the rep ranges will usually leave you with 2-3 ‘in the tank’. What happens here is that the trainee is able to use a higher bar speed (thus producing more force per rep), is able to keep form perfect owing to the greater degree of control that <strong>not</strong> grinding out ugly near-to-failure reps offers you, and are, most importantly, given the opportunity to build up a progressively higher amount of total volume over time and thusly make IMPROVEMENTS.\n\nSure, you’re not going to failure and yes, this is comparatively ‘easy’ in a lot of ways to the typical ‘GO AS HARD AS POSSIBLE OR GO HOME’ advice thrown around on the internet or in magazines by guys and girls who have certain ‘advantages’ which means that they get better in spite of, rather than because of, what they do. It’s a little less taxing, but much more effective.\n\nTraining is about going into a session with the intention of doing what is necessary to improve, not with the intention of burying yourself. This means that we need to think about the variables we can control and the means by which we can alter them in our favour. Training is NOT about lifting as much as you can for as many reps as you can, it’s about planned progression.\n\nTrain smart, don’t just train hard, and you’ll go a lot further.\n\nDid you enjoy this article from Ben?\nWould you like to hear from him again in the Juicemail?\nWhat questions do you have for him?\nEmail me your questions: <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a>','Building & Displaying Strength – There’s A Difference!','','inherit','closed','closed','','286-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',286,'https://biomechanicseducation.com/?p=38939',0,'revision','',0),(38940,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','Having spent a day last week with 300 sports science students at Exeter University I really enjoyed their questions and was able to do what I love to do..\n\nTalk about intrinsic biomechanics\n\nHow easy it is to apply\n\nHow it can change the way you move\n\nNow these super cool driven young people were buzzing they were so passionate about their chosen subjects but they didn’t really have a clear idea of what they wanted to do with their skills\n\nWhat profession to aim for?\n\nWhat skills they needed beyond their degrees?\n\nEven which industry to work towards?\n\nIt reminded me of how confusing it was for me at roughly that age!\n\nHaving an hour ago just done a talk to all 300 students about MY professional journey just after Dr Steve Ingram (!) they came to the Biomechanics Education exhibition stand I found myself in that situation that I experienced with my own learners and I shared with you previously.\n\nAs they were asking about my opinion I realised they actually CARED about my opinion.\n\nThat feeling of responsibility…\n\nWith a group of about 20 students around the stand I demonstrated a few simple assessments on one young American Football player, explaining and showing them all what I was doing at each point.\n\nWe then released his right pec minor using the 20/20 anti-spasm technique.\n\nWELL..\n\nIf I could of captured their faces, upon doing the re-screen that showed releasing his pec minor had affected his leg length, pelvic function and both shoulders for the better, it would have been priceless!\n\nThen came the questions..\n\nWhat course to do next?\n\nWhat career prospects they had?\n\nHow they could get internships?\n\nSo what am I supposed to say?\n\nI didn’t KNOW what I wanted to do until my late 30’s!?\n\nI never had the education you\'re getting!?\n\nI am not very smart!?\n\nI was in the bottom class in maths!?\n\nAgain I was stunned they were even asking me\n\nThen it dawned on me\n\nWhat I have ALWAYS done\n\nThat it isn\'t about BEING the best\n\nIt is DOING YOUR best\n\nME? I always just did what I LOVED doing!\n\nNow I also recall thinking that I was just going to have fun and do what I enjoyed until I decided what I wanted to do or until a PROPER job came along!\n\nBut actually I just kept doing what I enjoyed\n\nhahaha and now ….. well you know what I do\n\nNow at my ripe young age, I realise the important of LIVING and not just BEING.\nTHINGS don’t make you happy\n\n(An Audi R8 might be nice)\n\nBut by being honest, true to yourself by doing something that fulfils you and your ideals, something you could do everyday for free THAT is how you become great at what you do.\n\nIt is easy to remember information about a subject you enjoy\n\nSpending time with likeminded people makes that time great fun\n\n(I get to hang out with cool dudes like Ben Coomber &amp; Brendan Chaplin!!)\n\nand\n\nYES you can have fun AND work or earn a living\n\nSo that is exactly what I told them..\n\nGet yourself out there\n\nBe helpful\n\nBe open minded\n\nBe nice!!\n\nEVERY single person you meet COULD be your next life changing connection.\n\nThis is how I ended up where I am now and seriously should it all end tomorrow\n\nI have had a blast!\n\nWhat Do You Love To Do?\n\nWould You Love To Do What I Do?','Do You Love It?','','inherit','closed','closed','','289-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',289,'https://biomechanicseducation.com/?p=38940',0,'revision','',0),(38941,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','Recently I have been amongst young fit people who have sustained both mild and more serious injuries (in the past) requiring surgery from problems that are the type of problems that occur from nerve tension.\n\nCalf and hamstring injuries are both commonly caused by a tight sciatic nerve for example.  The muscles provide a protective spasm to the nerve during movement and if stretched or loaded sufficiently the muscles can spasm enough to cause themselves to tear, or cramp up - which can FEEL like a tear.  By mobilising the nerve it releases the tension in the muscles and reduces the likelihood of this happening.\n\nThe same principle applies to ALL nerves.  In the golf swing, if the median nerve is tight it will reduce the amount the player can complete his back swing and adopt the best position at the top of his swing.  This would be due to the muscle spasm that builds up to try and protect the inflexible nerve.  The greater the muscle spasm (which is unbeknown to the player as its SUB clinical at this point) the more he\'ll try and force his shoulder turn, which in turn increases the tension etc etc.  The key to a sound and reproducible swing is to reduce any tension in the swing, so as to help with timing and rhythm.  So by mobilising the median nerve, we are helping with ALL of the above.\n\nTight calves can cause over pronation.  The dorsi-flexion (moving the ankle upwards) is not available from the ankle joint due to the tightness in the calves, so it has to come from the sub talar joint.  It comes as part of the pronation mechanism though and so increases the amount of pronation as well.  This causes shin related injuries as well as knee and Achilles problems.  Remember that tight calves is often from a tight sciatic nerve, so by mobilising the nerve, we can help with all these injuries as well.\n\nA rotated pelvis can also go unnoticed for many years until the compensations start to cause problems.  Typically a leg length discrepancy (LLD) can result from a rotated pelvis and the leg must compensate for this.  It\'ll either flatten the foot (pronate it), bend the knee more, or drop the hip more.  Pronation will increase the load on the leg (see \'Tight Calves\' paragraph), bending the knee will increase pronation (see \'Tight Calves\' paragraph), and dropping the hip will increase the spasm in the glutes/piriformis.  A vicious circle if ever their was one!  So by reducing the spasm in the piriformis, in other words preventatively, (and also if necessary), then we are helping to reduce all of the above.\n\n<strong>Interesting fact;</strong>\n\nWe tested quad strength output on a pro rugby player before and after mobilising his sciatic nerve. After 2 x 15 reps his quad strength output increased by 14%. After 10 days of nerve mobilisations it increased by 50%!!\n\nDo YOU have clients that might have any of the above mentioned dysfunctions?\n\nWould YOU like to learn how to screen and mobilise the nerves?\n\nWould you like to understand special techniques to release piriformis muscle spasm?\n\nWould YOU like to learn how to reduce injury risk while increase performance levels in your clients/athletes?\n\nEmail now <a href=\"mailto:Rachel@biomechanicseducation.com\">Rachel@biomechanicseducation.com</a>','Nerve Tension?','','inherit','closed','closed','','293-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',293,'https://biomechanicseducation.com/?p=38941',0,'revision','',0),(38942,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','In sports and fitness training a common injury is adductor strains.  They are often caused by poor spinal and pelvic biomechanics and a Biomechanics Coach™ or therapist trained in biomechanical screening would be able to find the causes of such injuries. Fitness instructor, Personal trainer and sports science qualifications are much stronger and more valuable if they have a dual Biomechanics Coaching™ qualification.\n\nThe adductors comprise of five muscles in the groin, stretching between the pelvis and the inside of the thigh bone (femur), and adductor longus is the most commonly injured of this muscle set. Its main function is to pull the legs together (adduction) and it is used extensively when playing football or rugby, sprinting, hurdling and horse-riding.\n\nAn important factor not to overlook is the risk of an adductor strain being confused with a sportsman’s hernia as it is sometimes difficult to differentiate between the two, so if there is any doubt, do get it checked by a qualified and experienced therapist or doctor.\n\nMost people usually feel pain in the groin at the top of the adductor muscle, which can radiate down the leg; there can also be swelling and bruising in the area. It usually hurts when they try and pull their legs together against a resistance and can hurt if stretching the leg out to the side. Also, if they were to try and run, it would be very painful in the groin and adductor area.\n\nMuscle tears are graded according to severity. Grade 1 is a mild tear, which presents itself as mild discomfort and a little tenderness. Grade 2 is a partial tear with more discomfort and there is often swelling, usually painful to the touch, which results in limited range of movement. Grade 3 is a severe tear or complete rupture of a muscle and is normally very painful, with swelling and an inability to walk or run. A full tear or complete rupture can be very debilitating and a small lump or gap can usually be felt in the muscle, at that point.\n\nInjuries are commonly caused by both intrinsic and extrinsic factors. Common extrinsic factors for adductor longus injuries include activities that require high speed acceleration and deceleration, such as sprinting, rapid changes of direction or sports where kicking and jumping are required. It can also be caused in football, when players stretch beyond their physical capabilities to retrieve a ball or perform a tackle.\n\nThis injury is much more likely to occur if there are intrinsic causes too. If your clients have a stiff lower back, tight nerves in your hips and legs, stiff hip joints or weakened adductors due to a twisted pelvis, which they may not even realise they have, the risk of tears is much higher. You may be able to get away with either an intrinsic or an extrinsic cause, but a combination of both represents a high risk factor.\n\nThe principles of Rest, Ice Compression and Elevation (R.I.C.E) will help with the acute symptoms. A compressive thigh sleeve can help reduce the swelling and, indeed, minimise it if they apply the support soon enough. Once the acute pain has started to subside, a gentle stretching regimen can help healing and restore the muscle’s range of movement. Also, if they see an experienced and qualified sports masseur they should find this helpful for regaining function in the muscle. Once the pain has diminished, any swelling has gone and they have regained almost full range of movement, you can start to strengthen the muscle. Try exercising with a resistance band to start working the adductor muscle again.\n\n<strong>How to prevent it</strong>\n\nTo try preventing this injury, you have to consider both extrinsic and intrinsic causes.  Look at the sport they perform and see if it demands any of the actions described above that cause the injury. If so, gradually increase the amount of work they perform in the gym to get their hips, pelvis and spine in good physical condition, and with sufficient flexibility in the nerves and muscles. Also, build up the amount of acceleration and deceleration work they do, although make sure not to rush into a new phase of training too quickly, giving their body time to adapt.\n\nMartin Haines\nBiomechanics Coach™\nChartered Physiotherapist\n\nDo You Want To Become a Biomechanics Coach™?','Adductor Strain','','inherit','closed','closed','','267-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',267,'https://biomechanicseducation.com/?p=38942',0,'revision','',0),(38943,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','Day 1 Movement Compensation Screen\n\nSo I found myself back at Brunel University just a couple of weeks after passing my BWL L1 Coach qualification. This time I was there for a 4 day S&amp;C course with Elite Performance Institute.\n\n&nbsp;\n\nHaving been warmly greeted by both ..\n\nShane Cahill - From a professional rugby back ground and had booked me onto the course.\n\nand\n\nKarl Gilligan - Had been involved with IRFU, Leinster Rugby and has worked with elite athletes and players was our course tutor.\n\n.. I went into the classroom to find a mass of testosterone - 21 guys, myself and my new girl buddy, Emma.\n\nHey I am NOT complaining!!\n\nKarl took us through the back ground of his company and his experience.\n\nWith all these people I wondered how diluted the information might get to be honest but Shane and Ross we also available to answer questions as we went into the athletics centre.\n\nWe observed Karl’s methodology of body fat screening then one by one we all had a go at the vertical jump test. This was when the competitive nature of people started to come out but it was friendly and fun.\n\nI scored a measly 26.3 but was not the lowest\n\nNext he demonstrated functional movement screens and movement compensation screens one by one which we then practiced using a score sheet. This was the section I was concerned about to be honest.\n\nHowever Karl mentioned research where appropriate and was open about subjectivity too which was refreshing and a comfort about his integrity.\n\nFor an S&amp;C coach working with teams or larger groups of people I feel this is great way to identify those at high risk or with limitations. As a Biomechanics Coach™ I would then want to assess those at higher risk to have more objectivity in WHY they failed those tests.\n\nWe scored each other and practiced then started looking at range of movement tests that Karl correlated to the movement screens. Thus giving the group an insight into one method of assessing a group of athletes for risk of injury and reduced performance.\n\nObviously with my experience I have a method of screening clients that differs but I can see these methods working in different settings like this.\n\nFor example I cannot perform 27 screens on a football team of 25 players in the space of less than 3hrs, which might be the MOST time I have with them in a session.\n\nBUT\n\nWith both of these skill sets available to me I can\n\na). Assess a large group initially to identify the big risk guys\n\nb). Refer these high risk guys for the fuller screen\n\nc). Utilise different methodologies for the different circumstances or for a fuller understanding of limitations.\n\nFinally he took us through the ‘corrective’ exercise section which had some similarity to certain sections of iMoveFreely® type exercises. But again iMoveFreely® is a more specific system that is more in depth because we deliver it one to one therefore have more time.\n\nConsidered doing a gym session at the end of the day but was aware we had speed and agility training tomorrow so decided against it.\n\nSo at the end of day 1;\n\nThe REALLY cool part was all of the people around me are all a ‘type’ of person. We all;\n\nEnjoy training\n\nEnjoy learning\n\nHave a certain level of confidence\n\nAre happy to interact and share\n\nAre supportive\n\nAre motivational\n\nInspired each other\n\nIt reminds me what it might be like for MY learners and so feels a great to be able to empathise.\n\nHowever it also reminded me how bad my school education was, or at least that the timing was not right for me, because it was no where near as much fun as this!\n\nSo ready for tomorrows speed and agility training!!\n\nBetter eat and rest …….\n\nDay 2 Linear Speed &amp; Agility\n\nOk so by mid morning I was REALLY glad I hadn’t done a gym session last night.\n\nThe gang arrived and settled for a lecture on acceleration biomechanics. Looking at sprinters start position, tibia angles and back angles, arm drive, the height of foot.\n\nThis was really interesting for me as a specialist in intrinsic biomechanics considering what I would do with nerve tension to improve speed.\n\nWould LOVE to do some sessions with sprinters and utilise timer gates and nerve mobilisations on random sessions to see how this influenced the athletes speed.\n\nWe were all asked to get into groups and for one of us to deliver a warm up specific to some linear speed training. So I worked with my new buddies Nathan, Cameron and Gift.\n\nNext up was;\n\nMike McGurn (world class S&amp;C coach for 15yrs, also consulted with Man Utd)\n\nWOW!\n\nThis guys was an amazing coach.\n\nHe took us through a fantastic R.A.M.P warm up - you have to do the course to find out what that looks like but I LOVED moving, raising my heart rate and feeling those endorphins at last!\n\nSoon we were filming each others speed mechanics drills, agility training, sled pulling and viper band work, all stuff I have NEVER EVER done\n\nI don’t think I have a single fast twitch fibre in my body!\n\nBut it did begin to feel better and everyone LOOKED better by the end of the session.\n\nLunch time was a welcome break from what we had done for most of the morning. I found myself sharing a lunch table with;\n\nDavy McGregor from Era-Fit who had also played rugby for London Irish.\n\nHe had donated all of the equipment we had been using.\n\nWas tough being surrounded by all of these rugby players ! ;)\n\nThe afternoon was all about multi directional speed work.\n\nPeople started dropping out during the afternoon due to fatigue. My concern was my missing ACL but I kept having ago at the less ‘twisty’ one.\n\nBy 5pm there were just 8 of the 23 taking part in the super physical games.\n\nLOVED it though!\n\nThe designing of games to play for sports conditioning was so much fun\n\nThose of you who saw the video of me on the trampoline somersaulting into a sponge pool know what a big kid I am!\n\nAs a group we were attentive, cheering, encouraging and generally buzzing all day. It felt a bit like an adults sports day!\n\nOh boy I was ready for food and bed!!\n\nDay 3 Clean &amp; Jerk\n\nSo I woke feeling ok consider what we were put through yesterday. I was just a tiny little bit tender but nothing debilitating.\n\nI was super excited about today as it was clean and jerk day with technical application and starting to look at skills work.\n\nGoing through the break down of the clean positions was extremely helpful yet again - I am learning you cannot go over this TOO much because there is always something to work on.\n\nLecture first, then practical and in my little group (4 guys Johnny, James, Lawrence, John and me) we discussed the technicality of the skills we were practicing, observed each other and coached each other into positions. We were a really mixed group of levels from completely novice, with no mobility and wearing trainers to qualified weight lifting coaches in lifting shoes, getting full range A2G and yet we were all critiqued positively and were super helpful to each other with no egos and ALOT of fun and banter.\n\nLunchtime was upon us surprisingly quickly but we all needed FOOD.\n\nBack to a short lecture and more practical work all afternoon.\n\nWhat a great day that was over far too quickly!\n\nWe just\n\nlifted\n\ncoached\n\nlifted\n\ncoached\n\nlifted\n\ncoached\n\nthe clean and jerk\n\nSUDDENELY it was 5pm BOOOOOOOOOOOO!!\n\nGuess…..?\n\nYUP Food and bed!\n\nDay 4 Plyometrics, Energy Systems and Periodisation\n\nThe gang piled in walking slowly with various limp patterns due to the DOMS they were suffering. Mine wasn\'t too bad but I hadn\'t got the testosterone pouring round my body making me compete with everyone else like some of these guys - you know who you are (Boris &amp; Tom) !\n\nThe first lecture was all about identifying energy systems and how they contribute to our needs analysis. We looked at programming for strength and speed etc using this information and how to consider programming for adaption.\n\nAfter lunch we had our antioxidants measured by a company with a BioPhotonic Scanner just as a little bonus. This was fascinatingly presented by a physio who explained it tests you to a cellular level of roughly the last 6 weeks and how many carotenoids you have. The usual blood test would be influenced by you last meal which is why they are not as accurate and require you to be fasted.\n\nSo this scanner is basically telling you your risk is of disease and whether you need to consume better food and eat more fruit and veggies for example.\n\nNow while this is only a baseline scanner measuring you to the nearest thousand carotenoids it does identify if you, your clients or athletes are below what the expected level of carotenoids should be and therefore at risk of;\n\nHeart disease\n\nDegenerative disease\n\nReduced performance\n\nInjury\n\nand so on…\n\nApparently you can hire this machine for a month to test all of your clients <a href=\"http://www.whybioscan.com\"target=\"_blank\">www.whybioscan.com</a>\n\nAnyway this is how we SHOULD measure\n\nAverage person 40,000\n\nElite level 50,000\n\nBUT\n\nWhen they tested over 18 million people (think it was more than that actually) they found most of the population are around 28,000!!\n\nOne guy on the course was only 17,000!!\n\nAs we each got tested it was funny how we all started to make excuses about our diets recently, me included! Having had xmas in the last 6 weeks AND surviving on hotel and pub food for the last 4 days I didn’t hold out much hope for my result.\n\nI stepped up placed the other edge of my palm on the little light and rested the flat of my palm around the scanner. The dial started to climb……\n\nMy score?\n\n80,000 carotenoids!\n\nC’MON - Happy with that - being a massive fan of raw veggie and having a sushi addiction clearly help my carotenoids!\n\nNext we were back on the track doing plyometrics - tucks, high jumps, long jumps, long jumps throwing a medicine ball, hurdles and then with all this information we were writing programmes for golfers, periodising considerations over 12 months using a linear model.\n\nFascinating but I was simply so shattered my brain started to shut down during the last lecture. My attention span is so short anyway and after such a mass of information going in over the last 4 days I had to be lead by the guys in my group (Thanks you Gift, Lee, Tom &amp; Joe) when it come to the final tasks.\n\nThen we were done!\n\nWe had a group photo, collected our certificates and hugged each other goodbye having bonded so much over the 4 days of learning, moving, being challenged, discussing, coaching, helping, supporting and having fun together. We are of course now all Facebook buddies!\n\nOverall this was a fantastic experience, a lot of information over a short space of time and delivered by an extremely experienced and knowledgable professional who answered every single question really well.\n\nThanks also to Shane, Ross, Lee and Mikey all of whom couldn\'t have been more helpful.','The Last 4 Days','','inherit','closed','closed','','296-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',296,'https://biomechanicseducation.com/?p=38943',0,'revision','',0),(38944,0,'2024-07-16 11:26:38','2024-07-16 11:26:38','My closest colleague, a chartered physiotherapist, remedial gymnast and recreational therapist has been getting my questions on a daily basis for the last 17 years. My desire to better understand when I should refer a client or when I can use my judgement motivated me to question every scenario. He would literally ask me this question in response...\n\n&nbsp;\n<h2><em><img class=\"size-full wp-image-1052 alignright\" src=\"https://biomechanicseducation.com/wp-content/uploads/2016/06/Screen-Shot-2016-06-14-at-11.33.28-1.png\" alt=\"\" width=\"230\" height=\"238\" />\"What do you think...?\"</em></h2>\n&nbsp;\n\nWe would then get into discussions, he might present me with another idea to consider, yet inevitably he would question me until I worked it out. He never answered my questions, and it drove me nuts...!\n\n&nbsp;\n\nYet it was the best thing he could have done, he gave me a gift, teaching me how to critically analyse my thinking, how to challenge everything until such a point when I felt I had enough information to make a decision. Eventually I realised he could have easily shut me up with an answer to my question but he knew I wouldn\'t learn that way. He took the time to teach me how to work things out for myself.\n\nIt eventually got to the point where I would have a question ready but before I asked him, I would work out my answer to his question.. <em>\"What do you think...?\"  </em>getting ready to tell him the answer. It was then that I realised what he had done for me because I didn\'t even need to ask him anymore....I had learned how to answer my own question by challenging it.\n\nThis style of \'teaching\' I now pass on to my own learners, sharing his gift also drives my learners nuts.....but they love it too!\n\n&nbsp;\n\nFor some reason it\'s very common in the physical activity sector (in my experience) for practitioners to feel they just don\'t know enough, or they know less than everyone else. Yet so many know far more than they realise when it comes to actually helping individuals to move well and pain free. Much of my time in the classroom is showing them just how much they actually do know.\n\n&nbsp;\n<h2><em>What do you focus on...?</em></h2>\nWhen I sought to expand my anatomy knowledge in cadaver labs I began to realise the true complexities and diversities of our bodies. Realising most of the books don\'t tell us about variations like triple headed biceps, 5 quads and a pec minor that ended in the opposite hip...!\n\nThis was such an enlightening moment for me, I had this <em><strong>\'So what...?\"</strong></em> moment.\n<h3><em>Yet we always seem to focus on what we don\'t know rather than what we do know.</em></h3>\n&nbsp;\n\n<img class=\"size-medium wp-image-33785 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1054776068-300x118.jpg\" alt=\"\" width=\"300\" height=\"118\" />\n\n&nbsp;\n<p class=\"p2\">So this where I have ended up over 3 decades having studied pretty much all the ideas there are in movement coaching......</p>\n<p class=\"p2\">Having been the \'ab queen\' with my six pack, \'flexibility queen\' with my splits and high combat kicks, I also felt proud of my skill in coaching the perfection of joint alignment and I knew what it was to train to being functional too, of course. So I have made every mistake going, yet from all of this I feel I have taken \'concepts and principles\' that are more true to the physical healthy movement of a human. I have learned the huge importance of developing a team around you, using  evidence based practice, modern movement and pain education and the promotion of client/athlete centred autonomy with logical progressive graded exercise for a foundation of good practice.<span class=\"Apple-converted-space\"> </span></p>\n&nbsp;\n\n<img class=\"size-medium wp-image-7922 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\n<h2></h2>\n<h2>Conclusion</h2>\nThere is no magic exercise or technique, just simple scientific principles applied to the very individual human in front of you allowing you to discover the intervention that works.\n\nAsk yourself lots of questions like <em>why do I think that? why did I make that choice and not this one? what are the deciding factors? what\'s the risk? what\'s the benefit?</em>\n\nJustification is key!\n\nAim to get really confident about what you do know, but also really confident about what you don\'t.\n\nNow ......\n<h3><em>\"What do you think...?\"</em></h3>','What do you think.....?','','inherit','closed','closed','','456-revision-v1','','','2024-07-16 11:26:38','2024-07-16 11:26:38','',456,'https://biomechanicseducation.com/?p=38944',0,'revision','',0),(38945,1,'2024-07-16 12:36:36','2024-07-16 12:36:36','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-16 12:36:36','2024-07-16 12:36:36','',7,'https://biomechanicseducation.com/?p=38945',0,'revision','',0),(38946,1,'2024-07-16 15:41:07','2024-07-16 15:41:07','<span style=\"font-weight: 400;\">This article will discuss the details of how learning about <a href=\"https://www.biomechanicseducation.com/intrinsic-biomechanics-understanding-the-components-that-make-our-bodies-move/\">intrinsic biomechanics</a> can help exercise professionals when working with individuals who have finished their rehabilitation, post injury. We may also have specialist skills in working with individuals with long term conditions who require rehabilitative type programming. Therefore a deeper understanding of anatomy and movement can be helpful and found through learning about the application of intrinsic biomechanical principles.   </span>\n<h3>What is rehabilitation?</h3>\n<blockquote><span style=\"font-weight: 400;\"><a href=\"https://www.biomechanicseducation.com/biomechanical-assessment-everything-you-need-to-know/\">Rehabilitation</a> is defined as </span><span style=\"font-weight: 400;\">“</span><span style=\"font-weight: 400;\">a set of interventions designed to optimise functioning and reduce disability in individuals with health conditions in interaction with their environment</span><span style=\"font-weight: 400;\">” </span><span style=\"font-weight: 400;\">(WHO)</span></blockquote>\n<span style=\"font-weight: 400;\">Rehabilitation is the remit of clinically trained practitioners, also known as allied healthcare professionals (AHP). This would include osteopaths, chiropractors, physiotherapists and possibly degree level or level 5 sports therapists. </span>\n<h3>What is prehabilitation?</h3>\n<blockquote><span style=\"font-weight: 400;\">Prehabilitation is described as </span><i><span style=\"font-weight: 400;\">“aims to </span></i><i><span style=\"font-weight: 400;\">enhance general health and wellbeing prior to major surgery</span></i><i><span style=\"font-weight: 400;\">. By intervening in the preoperative period to modify behavioural and lifestyle risk factors, the \'physiological reserve\' of the patient is enhanced to buffer the surgical stress response</span></i><span style=\"font-weight: 400;\">” (NHS)</span></blockquote>\n<span style=\"font-weight: 400;\">Prehabilitation is also prescribed by clinically trained practitioners but could potentially be delivered by a trained exercise professional under the guidance of an AHP. This can depend upon the severity of symptoms, if they are present. </span>\n<p style=\"text-align: center;\"><span style=\"font-weight: 400;\">NOTE: One additional consideration is to prehabilitate individuals who are not yet injured in a mode of \'<strong><em>preparation for movement\'</em></strong> due to the degradation of our movement quality from modern lifestyles that are creating modern ailments. </span></p>\n\n<h3>What is post rehabilitation?</h3>\n<span style=\"font-weight: 400;\">The skills of post rehabilitation are relatively new to exercise professionals due to advancements in medical interventions and surgeries and the increasing popularity of employing an exercise professional but also because of the increasing population that is living longer but with long term conditions. </span>\n\n<span style=\"font-weight: 400;\">It is vital</span><span style=\"font-weight: 400;\"> we adopt an intrinsic biomechanical approach and modify our basic consultations and programming to support clients who have been released from their rehabilitation programme but don\'t yet feel physically robust or confident in movement. </span>\n\n<span style=\"font-weight: 400;\">These clients may be able to walk, brush their teeth and get to the bathroom, and maybe they look like they move relatively well, but it could be that they aren\'t yet confident in their strength and fitness. The key skills of biomechanical assessments allow personal trainers to evaluate these individuals while taking into account the area/s of their body that have been through rehabilitation. An example might be ACL reconstruction; once rehabilitation has stopped there may still be some work to do to achieve balance, stability, coordination and strength for optimal function and performance. A personal trainer would be well within their scope to exercise this clients pelvis function for example.</span>\n\n<span style=\"font-weight: 400;\">Exercise professionals are keen and perfectly capable of helping clients get stronger but lack basic <a href=\"https://www.biomechanicseducation.com/understanding-the-importance-of-intrinsic-biomechanical-principles/\">MSK assessment</a> skills to increase our confidence when moving individuals who have a medical history. </span>\n<h3></h3>\n<h3><img class=\" wp-image-37381 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/12/email-image-1.-3-300x169.png\" alt=\"\" width=\"444\" height=\"250\" /></h3>\n<h3>Work like a clinician</h3>\n<span style=\"font-weight: 400;\">We can adopt a model of practice (like intrinsic biomechanics) to deepen our understanding of anatomy, human movement and the assessment of physical limitations. This additional training in neuro-musculoskeletal (MSK) assessment along with the ability to critically analyse, write reports and offer meaningful transfer of information, enables us to ‘work like a clinician’ while being the exercise experts.</span>\n\n<span style=\"font-weight: 400;\">This advanced level of understanding anatomy and by practising the integrated system approach through evaluating movement of all body parts in isolation, allows us to identify root causes of movement issues. This interpretation of how each substructure responds to movement (or a lack of it) along with the systemised approach of ruling things out, elevates our skill set to bring us in line with our clinical allies. </span>\n\n<span style=\"font-weight: 400;\">Biomechanical frame works allow a logical evidence based approach, removing bias for improved confidence in decision making and increasing options for intervention.</span>\n<h3>Biomechanical Rehabilitative Frames<span style=\"font-weight: 400;\"> </span></h3>\n<blockquote><i><span style=\"font-weight: 400;\">Biomechanics may be defined as the application of the discipline of mechanics to biologic systems. Rehabilitation is a practice dedicated to the restoration of function to a body impaired by injury or disease. Because rehabilitation is focused on the form and motion of a system of interrelated parts, an appreciation for biomechanical theory and application is appropriate.</span></i></blockquote>\n<span style=\"font-weight: 400;\">Having a good understanding of the framework and processes for rehabilitation will inform exercise professionals with additional skills in intrinsic biomechanics. The phasic approach allows us to best advise clients about who is the right professional at the right time for each area of their recovery. The intrinsic biomechanical approach also allows for a better understanding of the use of appropriate communication skills to support the client, whilst also knowing how and when to refer.</span>\n<h3>Conclusion</h3>\n<span style=\"font-weight: 400;\">Looking at a framework we can evaluate who is the right professional for the specific phase the client is experiencing. </span>\n<ul>\n 	<li><span style=\"font-weight: 400;\"><strong>Phase 1</strong> - Control Pain and Swelling. </span></li>\n 	<li><span style=\"font-weight: 400;\"><strong>Phase 2</strong> - Improve Range of Motion and/or Flexibility. </span></li>\n 	<li><span style=\"font-weight: 400;\"><strong>Phase 3</strong> - Improve Strength &amp; Begin Proprioception/Balance Training. </span></li>\n 	<li><span style=\"font-weight: 400;\"><strong>Phase 4</strong> - Proprioception/Balance Training &amp; Sport-Specific Training.</span></li>\n</ul>\n<b>Rehabilitation - Phase 1-3 </b>\n\n<b>Prehabilitation - Phase 2-3</b>\n\n<b>Post rehabilitation - Phase 2-4</b>\n\nClinician (AHP) - Phase 1-2\n\nSports therapists - Phase 1-3\n\nExercise professionals - Phase 2-4\n\n<span style=\"font-weight: 400;\">As we can see here there is a degree of cross over and many practitioners today are hybrids, but this demonstrates the importance of working within a multidisciplinary team. Biomechanics Coaches are trained for this working environment to make decisions as part of a team through professional discussion. </span>\n\n<span style=\"font-weight: 400;\">So hopefully by now this article has revealed how we believe understanding intrinsic biomechanics helps rehabilitation. Also how exercise professionals can use the skills of Biomechanics Coaching to support a clinical team in the long term care of clients post injury. </span>','How does understanding intrinsic biomechanics help rehabilitation?','','inherit','closed','closed','','37375-autosave-v1','','','2024-07-16 15:41:07','2024-07-16 15:41:07','',37375,'https://biomechanicseducation.com/?p=38946',0,'revision','',0),(38947,1,'2024-07-16 15:42:08','2024-07-16 15:42:08','This article will discuss the details of how learning about <a href=\"https://www.biomechanicseducation.com/intrinsic-biomechanics-understanding-the-components-that-make-our-bodies-move/\">intrinsic biomechanics</a> can help exercise professionals when working with individuals who have finished their rehabilitation, post injury. We may also have specialist skills in working with individuals with long term conditions who require rehabilitative type programming. Therefore a deeper understanding of anatomy and movement can be helpful and found through learning about the application of intrinsic biomechanical principles.\r\n<h2>What is rehabilitation?</h2>\r\n<blockquote><a href=\"https://www.biomechanicseducation.com/biomechanical-assessment-everything-you-need-to-know/\">Rehabilitation</a> is defined as “a set of interventions designed to optimise functioning and reduce disability in individuals with health conditions in interaction with their environment” (WHO)</blockquote>\r\nRehabilitation is the remit of clinically trained practitioners, also known as allied healthcare professionals (AHP). This would include osteopaths, chiropractors, physiotherapists and possibly degree level or level 5 sports therapists.\r\n<h2>What is prehabilitation?</h2>\r\n<blockquote>Prehabilitation is described as “aims to enhance general health and wellbeing prior to major surgery. By intervening in the preoperative period to modify behavioural and lifestyle risk factors, the \'physiological reserve\' of the patient is enhanced to buffer the surgical stress response” (NHS)</blockquote>\r\nPrehabilitation is also prescribed by clinically trained practitioners but could potentially be delivered by a trained exercise professional under the guidance of an AHP. This can depend upon the severity of symptoms, if they are present.\r\n\r\nNOTE: One additional consideration is to prehabilitate individuals who are not yet injured in a mode of \'preparation for movement\' due to the degradation of our movement quality from modern lifestyles that are creating modern ailments.\r\n<h2>What is post rehabilitation?</h2>\r\nThe skills of post rehabilitation are relatively new to exercise professionals due to advancements in medical interventions and surgeries and the increasing popularity of employing an exercise professional but also because of the increasing population that is living longer but with long term conditions.\r\n\r\nIt is vital we adopt an intrinsic biomechanical approach and modify our basic consultations and programming to support clients who have been released from their rehabilitation programme but don\'t yet feel physically robust or confident in movement.\r\n\r\nThese clients may be able to walk, brush their teeth and get to the bathroom, and maybe they look like they move relatively well, but it could be that they aren\'t yet confident in their strength and fitness. The key skills of biomechanical assessments allow personal trainers to evaluate these individuals while taking into account the area/s of their body that have been through rehabilitation. An example might be ACL reconstruction; once rehabilitation has stopped there may still be some work to do to achieve balance, stability, coordination and strength for optimal function and performance. A personal trainer would be well within their scope to exercise this clients pelvis function for example.\r\n\r\nExercise professionals are keen and perfectly capable of helping clients get stronger but lack basic <a href=\"https://www.biomechanicseducation.com/understanding-the-importance-of-intrinsic-biomechanical-principles/\">MSK assessment</a> skills to increase our confidence when moving individuals who have a medical history.\r\n<h3><img src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/12/email-image-1.-3-300x169.png\" alt=\"\" width=\"444\" height=\"250\" /></h3>\r\n<h2>Work like a clinician</h2>\r\nWe can adopt a model of practice (like intrinsic biomechanics) to deepen our understanding of anatomy, human movement and the assessment of physical limitations. This additional training in neuro-musculoskeletal (MSK) assessment along with the ability to critically analyse, write reports and offer meaningful transfer of information, enables us to ‘work like a clinician’ while being the exercise experts.\r\n\r\nThis advanced level of understanding anatomy and by practising the integrated system approach through evaluating movement of all body parts in isolation, allows us to identify root causes of movement issues. This interpretation of how each substructure responds to movement (or a lack of it) along with the systemised approach of ruling things out, elevates our skill set to bring us in line with our clinical allies.\r\n\r\nBiomechanical frame works allow a logical evidence based approach, removing bias for improved confidence in decision making and increasing options for intervention.\r\n<h2>Biomechanical Rehabilitative Frames</h2>\r\n<blockquote>Biomechanics may be defined as the application of the discipline of mechanics to biologic systems. Rehabilitation is a practice dedicated to the restoration of function to a body impaired by injury or disease. Because rehabilitation is focused on the form and motion of a system of interrelated parts, an appreciation for biomechanical theory and application is appropriate.</blockquote>\r\nHaving a good understanding of the framework and processes for rehabilitation will inform exercise professionals with additional skills in intrinsic biomechanics. The phasic approach allows us to best advise clients about who is the right professional at the right time for each area of their recovery. The intrinsic biomechanical approach also allows for a better understanding of the use of appropriate communication skills to support the client, whilst also knowing how and when to refer.\r\n<h2>Conclusion</h2>\r\nLooking at a framework we can evaluate who is the right professional for the specific phase the client is experiencing.\r\n<ul>\r\n 	<li>Phase 1 - Control Pain and Swelling.</li>\r\n 	<li>Phase 2 - Improve Range of Motion and/or Flexibility.</li>\r\n 	<li>Phase 3 - Improve Strength &amp; Begin Proprioception/Balance Training.</li>\r\n 	<li>Phase 4 - Proprioception/Balance Training &amp; Sport-Specific Training.</li>\r\n</ul>\r\nRehabilitation - Phase 1-3\r\n\r\nPrehabilitation - Phase 2-3\r\n\r\nPost rehabilitation - Phase 2-4\r\n\r\nClinician (AHP) - Phase 1-2\r\n\r\nSports therapists - Phase 1-3\r\n\r\nExercise professionals - Phase 2-4\r\n\r\nAs we can see here there is a degree of cross over and many practitioners today are hybrids, but this demonstrates the importance of working within a multidisciplinary team. Biomechanics Coaches are trained for this working environment to make decisions as part of a team through professional discussion.\r\n\r\nSo hopefully by now this article has revealed how we believe understanding intrinsic biomechanics helps rehabilitation. Also how exercise professionals can use the skills of Biomechanics Coaching to support a clinical team in the long term care of clients post injury.','How does understanding intrinsic biomechanics help rehabilitation?','','inherit','closed','closed','','37375-revision-v1','','','2024-07-16 15:42:08','2024-07-16 15:42:08','',37375,'https://biomechanicseducation.com/?p=38947',0,'revision','',0),(38950,3,'2024-07-23 10:07:55','2024-07-23 10:07:55','Image of rachel, the founder of BioMechanics Education sat on a chair teaching a class about posture. ','Home page Hero Image','','inherit','closed','closed','','dsc01585','','','2024-07-23 10:08:49','2024-07-23 10:08:49','',7,'https://biomechanicseducation.com/wp-content/uploads/2024/07/DSC01585.jpg',0,'attachment','image/jpeg',0),(38951,3,'2024-07-23 10:13:38','2024-07-23 10:13:38','Image of rachel (founder of BioMechanics Education) Stood at the front of a clinically lit classroom, teaching.','BE Home page hero Image','','inherit','closed','closed','','be-home-page-hero-image','','','2024-07-23 10:14:22','2024-07-23 10:14:22','',7,'https://biomechanicseducation.com/wp-content/uploads/2024/07/BE-Home-page-hero-Image.jpg',0,'attachment','image/jpeg',0),(38953,3,'2024-07-23 10:14:25','2024-07-23 10:14:25','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-23 10:14:25','2024-07-23 10:14:25','',7,'https://biomechanicseducation.com/?p=38953',0,'revision','',0),(38955,3,'2024-07-23 10:20:27','2024-07-23 10:20:27','{{unknown}}','','','publish','closed','closed','','5e993ad5c29463aeb6392d185b91533a','','','2024-07-23 10:20:27','2024-07-23 10:20:27','',0,'https://biomechanicseducation.com/5e993ad5c29463aeb6392d185b91533a/',0,'oembed_cache','',0),(38957,3,'2024-07-23 10:25:25','2024-07-23 10:25:25','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-23 10:25:25','2024-07-23 10:25:25','',7,'https://biomechanicseducation.com/?p=38957',0,'revision','',0),(38958,3,'2024-07-23 10:27:37','2024-07-23 10:27:37','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-23 10:27:37','2024-07-23 10:27:37','',7,'https://biomechanicseducation.com/?p=38958',0,'revision','',0),(38959,3,'2024-07-23 10:29:44','2024-07-23 10:29:44','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-23 10:29:44','2024-07-23 10:29:44','',7,'https://biomechanicseducation.com/?p=38959',0,'revision','',0),(38960,3,'2024-07-23 10:36:57','2024-07-23 10:36:57','','Rob and Rachel shaking hands at a partership kiosk','','inherit','closed','closed','','rob-and-rachel-shaking-hands-at-a-partership-kiosk','','','2024-07-23 10:36:57','2024-07-23 10:36:57','',7,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Rob-and-Rachel-shaking-hands-at-a-partership-kiosk.png',0,'attachment','image/png',0),(38961,3,'2024-07-23 10:38:05','2024-07-23 10:38:05','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-23 10:38:05','2024-07-23 10:38:05','',7,'https://biomechanicseducation.com/?p=38961',0,'revision','',0),(38964,3,'2024-07-23 10:41:22','2024-07-23 10:41:22','','Course Learner','','publish','closed','closed','','testimonial','','','2025-02-10 11:45:15','2025-02-10 11:45:15','',0,'https://biomechanicseducation.com/?post_type=testimonial&#038;p=38964',0,'testimonial','',0),(38965,3,'2024-07-23 10:41:46','2024-07-23 10:41:46','','Course Learner','','publish','closed','closed','','biomechanics-education-testimonial','','','2025-02-10 11:45:10','2025-02-10 11:45:10','',0,'https://biomechanicseducation.com/?post_type=testimonial&#038;p=38965',0,'testimonial','',0),(38966,3,'2024-07-23 10:42:23','2024-07-23 10:42:23','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-23 10:42:23','2024-07-23 10:42:23','',7,'https://biomechanicseducation.com/?p=38966',0,'revision','',0),(38969,3,'2024-07-23 10:59:50','2024-07-23 10:59:50','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-23 10:59:50','2024-07-23 10:59:50','',7,'https://biomechanicseducation.com/?p=38969',0,'revision','',0),(38970,3,'2024-07-23 11:00:37','2024-07-23 11:00:37','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-23 11:00:37','2024-07-23 11:00:37','',7,'https://biomechanicseducation.com/?p=38970',0,'revision','',0),(38971,3,'2024-07-23 11:03:34','2024-07-23 11:03:34','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-23 11:03:34','2024-07-23 11:03:34','',7,'https://biomechanicseducation.com/?p=38971',0,'revision','',0),(38972,3,'2024-07-23 11:04:04','2024-07-23 11:04:04','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-23 11:04:04','2024-07-23 11:04:04','',7,'https://biomechanicseducation.com/?p=38972',0,'revision','',0),(38973,3,'2024-07-23 11:14:24','2024-07-23 11:14:24','','David Lloyd Referral','','publish','closed','closed','','david-lloyd-referral','','','2024-10-09 11:15:19','2024-10-09 11:15:19','',0,'https://biomechanicseducation.com/?page_id=38973',0,'page','',0),(38974,3,'2024-07-23 11:14:24','2024-07-23 11:14:24','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:14:24','2024-07-23 11:14:24','',38973,'https://biomechanicseducation.com/?p=38974',0,'revision','',0),(38975,3,'2024-07-23 11:14:51','2024-07-23 11:14:51','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:14:51','2024-07-23 11:14:51','',38973,'https://biomechanicseducation.com/?p=38975',0,'revision','',0),(38976,3,'2024-07-23 11:17:30','2024-07-23 11:17:30','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:17:30','2024-07-23 11:17:30','',38973,'https://biomechanicseducation.com/?p=38976',0,'revision','',0),(38977,3,'2024-07-23 11:17:40','2024-07-23 11:17:40','','David Lloyd referral page hero image','','inherit','closed','closed','','david-lloyd-referral-page-hero-image','','','2024-07-23 11:17:40','2024-07-23 11:17:40','',38973,'https://biomechanicseducation.com/wp-content/uploads/2024/07/David-Lloyd-referral-page-hero-image.jpg',0,'attachment','image/jpeg',0),(38978,3,'2024-07-23 11:17:48','2024-07-23 11:17:48','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:17:48','2024-07-23 11:17:48','',38973,'https://biomechanicseducation.com/?p=38978',0,'revision','',0),(38979,3,'2024-07-23 11:22:12','2024-07-23 11:22:12','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:22:12','2024-07-23 11:22:12','',38973,'https://biomechanicseducation.com/?p=38979',0,'revision','',0),(38981,3,'2024-07-23 11:22:58','2024-07-23 11:22:58','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:22:58','2024-07-23 11:22:58','',38973,'https://biomechanicseducation.com/?p=38981',0,'revision','',0),(38982,3,'2024-07-23 11:24:24','2024-07-23 11:24:24','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:24:24','2024-07-23 11:24:24','',38973,'https://biomechanicseducation.com/?p=38982',0,'revision','',0),(38983,3,'2024-07-23 11:24:58','2024-07-23 11:24:58','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:24:58','2024-07-23 11:24:58','',38973,'https://biomechanicseducation.com/?p=38983',0,'revision','',0),(38984,3,'2024-07-23 11:25:15','2024-07-23 11:25:15','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:25:15','2024-07-23 11:25:15','',38973,'https://biomechanicseducation.com/?p=38984',0,'revision','',0),(38985,3,'2024-07-23 11:25:35','2024-07-23 11:25:35','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:25:35','2024-07-23 11:25:35','',38973,'https://biomechanicseducation.com/?p=38985',0,'revision','',0),(38986,3,'2024-07-23 11:25:55','2024-07-23 11:25:55','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:25:55','2024-07-23 11:25:55','',38973,'https://biomechanicseducation.com/?p=38986',0,'revision','',0),(38987,3,'2024-07-23 11:26:21','2024-07-23 11:26:21','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:26:21','2024-07-23 11:26:21','',38973,'https://biomechanicseducation.com/?p=38987',0,'revision','',0),(38988,3,'2024-07-23 11:26:36','2024-07-23 11:26:36','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:26:36','2024-07-23 11:26:36','',38973,'https://biomechanicseducation.com/?p=38988',0,'revision','',0),(38990,3,'2024-07-23 11:30:13','2024-07-23 11:30:13','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:30:13','2024-07-23 11:30:13','',38973,'https://biomechanicseducation.com/?p=38990',0,'revision','',0),(38991,3,'2024-07-23 11:31:58','2024-07-23 11:31:58','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:31:58','2024-07-23 11:31:58','',38973,'https://biomechanicseducation.com/?p=38991',0,'revision','',0),(38992,3,'2024-07-23 11:32:34','2024-07-23 11:32:34','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:32:34','2024-07-23 11:32:34','',38973,'https://biomechanicseducation.com/?p=38992',0,'revision','',0),(38993,3,'2024-07-23 11:33:10','2024-07-23 11:33:10','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:33:10','2024-07-23 11:33:10','',38973,'https://biomechanicseducation.com/?p=38993',0,'revision','',0),(38994,3,'2024-07-23 11:33:21','2024-07-23 11:33:21','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:33:21','2024-07-23 11:33:21','',38973,'https://biomechanicseducation.com/?p=38994',0,'revision','',0),(38995,3,'2024-07-23 11:36:18','2024-07-23 11:36:18','{{unknown}}','','','publish','closed','closed','','177fce712c8550ee247603ee5be87cdc','','','2024-07-23 11:36:18','2024-07-23 11:36:18','',0,'https://biomechanicseducation.com/177fce712c8550ee247603ee5be87cdc/',0,'oembed_cache','',0),(38996,3,'2024-07-23 11:37:00','2024-07-23 11:37:00','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:37:00','2024-07-23 11:37:00','',38973,'https://biomechanicseducation.com/?p=38996',0,'revision','',0),(38997,3,'2024-07-23 11:37:41','2024-07-23 11:37:41','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:37:41','2024-07-23 11:37:41','',38973,'https://biomechanicseducation.com/?p=38997',0,'revision','',0),(38998,3,'2024-07-23 11:38:32','2024-07-23 11:38:32','','Black and White Professional Fitness Youtube Thumbnail (3)','','inherit','closed','closed','','black-and-white-professional-fitness-youtube-thumbnail-3','','','2024-07-23 11:38:32','2024-07-23 11:38:32','',38973,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Black-and-White-Professional-Fitness-Youtube-Thumbnail-3.png',0,'attachment','image/png',0),(38999,3,'2024-07-23 11:38:47','2024-07-23 11:38:47','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:38:47','2024-07-23 11:38:47','',38973,'https://biomechanicseducation.com/?p=38999',0,'revision','',0),(39001,3,'2024-07-23 11:42:34','2024-07-23 11:42:34','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:42:34','2024-07-23 11:42:34','',38973,'https://biomechanicseducation.com/?p=39001',0,'revision','',0),(39002,3,'2024-07-23 11:42:55','2024-07-23 11:42:55','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:42:55','2024-07-23 11:42:55','',38973,'https://biomechanicseducation.com/?p=39002',0,'revision','',0),(39003,3,'2024-07-23 11:43:34','2024-07-23 11:43:34','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:43:34','2024-07-23 11:43:34','',38973,'https://biomechanicseducation.com/?p=39003',0,'revision','',0),(39004,3,'2024-07-23 11:45:03','2024-07-23 11:45:03','','Dl-clubs-logo_rgb','','inherit','closed','closed','','dl-clubs-logo_rgb','','','2024-07-23 11:45:03','2024-07-23 11:45:03','',38973,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Dl-clubs-logo_rgb.png',0,'attachment','image/png',0),(39005,3,'2024-07-23 11:45:14','2024-07-23 11:45:14','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:45:14','2024-07-23 11:45:14','',38973,'https://biomechanicseducation.com/?p=39005',0,'revision','',0),(39006,3,'2024-07-23 11:46:34','2024-07-23 11:46:34','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:46:34','2024-07-23 11:46:34','',38973,'https://biomechanicseducation.com/?p=39006',0,'revision','',0),(39007,3,'2024-07-23 11:46:53','2024-07-23 11:46:53','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:46:53','2024-07-23 11:46:53','',38973,'https://biomechanicseducation.com/?p=39007',0,'revision','',0),(39008,3,'2024-07-23 11:47:04','2024-07-23 11:47:04','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 11:47:04','2024-07-23 11:47:04','',38973,'https://biomechanicseducation.com/?p=39008',0,'revision','',0),(39009,3,'2024-07-23 12:03:51','2024-07-23 12:03:51','','Course info what\'s included image','','inherit','closed','closed','','course-info-whats-included-image','','','2024-07-23 12:03:51','2024-07-23 12:03:51','',38973,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Course-info-whats-included-image.jpg',0,'attachment','image/jpeg',0),(39010,3,'2024-07-23 12:07:28','2024-07-23 12:07:28','','What you\'ll learn tab image','','inherit','closed','closed','','what-youll-learn-tab-image','','','2024-07-23 12:07:28','2024-07-23 12:07:28','',38973,'https://biomechanicseducation.com/wp-content/uploads/2024/07/What-youll-learn-tab-image.jpeg',0,'attachment','image/jpeg',0),(39011,3,'2024-07-23 12:08:32','2024-07-23 12:08:32','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 12:08:32','2024-07-23 12:08:32','',38973,'https://biomechanicseducation.com/?p=39011',0,'revision','',0),(39012,3,'2024-07-23 12:09:00','2024-07-23 12:09:00','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 12:09:00','2024-07-23 12:09:00','',38973,'https://biomechanicseducation.com/?p=39012',0,'revision','',0),(39013,3,'2024-07-23 12:09:29','2024-07-23 12:09:29','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 12:09:29','2024-07-23 12:09:29','',38973,'https://biomechanicseducation.com/?p=39013',0,'revision','',0),(39014,3,'2024-07-23 12:10:33','2024-07-23 12:10:33','You can book your practical dates via your Student Zone (Your login details to this would have been sent after you signed your enrolment form). For further guidance on booking your dates once logged in, please click on the \"Resource Centre\" tab, where you can watch our tutorial video or access the Student Zone How To Guide.','How do I book workshop days?','','publish','closed','closed','','how-do-i-book-workshop-days','','','2024-07-23 12:10:33','2024-07-23 12:10:33','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39014',0,'faqs','',0),(39015,3,'2024-07-23 12:10:53','2024-07-23 12:10:53','Biomechanics Coaches have found themselves involved in multidisciplinary teams, working alongside physiotherapists or with sports clubs.','What career opportunities are there as a Biomechanics Coach?','','publish','closed','closed','','what-career-opportunities-are-there-as-a-biomechanics-coach','','','2025-02-03 11:38:41','2025-02-03 11:38:41','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39015',0,'faqs','',0),(39016,3,'2024-07-23 12:11:13','2024-07-23 12:11:13','Many Biomechanics Coaches have doubled, or even trebled, their income due to their training; however, this is very individual due to various circumstances.','How much can I earn as a Biomechanics Coach?','','publish','closed','closed','','how-much-can-i-earn-as-a-biomechanics-coach','','','2024-09-13 12:16:27','2024-09-13 12:16:27','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39016',0,'faqs','',0),(39017,3,'2024-07-23 12:11:31','2024-07-23 12:11:31','You will have a 24-month completion timeframe.','How long do I have to complete the Diploma?','','publish','closed','closed','','how-long-do-i-have-to-complete-the-diploma','','','2024-09-13 12:16:12','2024-09-13 12:16:12','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39017',0,'faqs','',0),(39018,3,'2024-07-23 12:11:49','2024-07-23 12:11:49','Continuous formative assessment during the attendance days. Summative one-hour practical assessment. Twelve-weeks research project and a 2,000-word report.','How is the course assessed?','','publish','closed','closed','','how-is-the-course-assessed','','','2024-09-13 12:24:23','2024-09-13 12:24:23','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39018',0,'faqs','',0),(39019,3,'2024-07-23 12:12:08','2024-07-23 12:12:08','Learners are comprised of professionals looking for an understanding of intrinsic biomechanics. Often these are personal trainers, Pilates teachers, yoga instructors, sports therapists and strength coaches.','What backgrounds do Biomechanics Coaching learners have?','','publish','closed','closed','','what-backgrounds-do-biomechanics-coaching-learners-have','','','2024-09-13 12:26:01','2024-09-13 12:26:01','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39019',0,'faqs','',0),(39020,3,'2024-07-23 12:12:26','2024-07-23 12:12:26','Practical workshops are hosted in a range of cities, including London, Nottingham, Manchester, Edinburgh and Belfast.','Where are practical workshops held?','','publish','closed','closed','','where-are-practical-workshops-held','','','2025-02-03 11:39:10','2025-02-03 11:39:10','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39020',0,'faqs','',0),(39021,3,'2024-07-23 12:12:49','2024-07-23 12:12:49','Yes, Biomechanics Education is a CIMSPA-endorsed education training partner as well as STA for sports therapy learners.','Is Biomechanics Education professionally recognised?','','publish','closed','closed','','is-biomechanics-education-professionally-recognised','','','2024-09-13 12:15:16','2024-09-13 12:15:16','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39021',0,'faqs','',0),(39022,3,'2024-07-23 12:13:09','2024-07-23 12:13:09','The entry requirements for this Diploma are Level 3 qualification Sports Massage, Personal Training, Pilates, Yoga or equivalent. You will also need to be at least eighteen years old.','What qualifications do I need to have to study the Diploma in Biomechanics Coaching?','','publish','closed','closed','','what-qualifications-do-i-need-to-have-to-study-the-diploma-in-biomechanics-coaching','','','2024-09-23 14:26:04','2024-09-23 14:26:04','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39022',0,'faqs','',0),(39023,3,'2024-07-23 12:13:37','2024-07-23 12:13:37','If you’ve completed your Diploma, there are many ways you can put your skills into practice as a full or part-time Biomechanics Coach. However, should you wish to elevate your training, you can become a member of the IBA (Intrinsic Biomechanics Association). This will entitle you to:\r\n<ul>\r\n 	<li>Mentor support from the Master Trainer team</li>\r\n 	<li>Videos, webinars, and guest lectures delivered by industry leaders</li>\r\n 	<li>CPD training and career development courses</li>\r\n 	<li>Branded clothing and business support</li>\r\n</ul>','What are the next steps once I’ve completed the Diploma in Biomechanics Coaching?','','publish','closed','closed','','what-are-the-next-steps-once-ive-completed-the-diploma-in-biomechanics-coaching','','','2024-09-13 12:14:40','2024-09-13 12:14:40','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39023',0,'faqs','',0),(39024,3,'2024-07-23 12:13:54','2024-07-23 12:13:54','Throughout your course, you will gain support from other Biomechanics Coaches around the UK and the wider world. You will get a chance to learn from each other in your practical workshops and gain advice from the Master Trainers. Support is available throughout the course from the team.','What support is in place for learners on the Diploma in Biomechanics Coaching?','','publish','closed','closed','','what-support-is-in-place-for-learners-on-the-diploma-in-biomechanics-coaching','','','2025-02-03 11:39:56','2025-02-03 11:39:56','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39024',0,'faqs','',0),(39025,3,'2024-07-23 12:14:13','2024-07-23 12:14:13','While undertaking the Diploma in Biomechanics Coaching, you will experience learning both online and in-person in workshops. These workshops are a great opportunity to learn from the Master Trainers, ask questions, and put the skills into practice that you gained through your e-learning. Your assessment will be a practical assessment with twelve weeks of research and home study work.','How is the learning on the Diploma in Biomechanics Coaching delivered?','','publish','closed','closed','','how-is-the-learning-on-the-diploma-in-biomechanics-coaching-delivered','','','2024-09-13 12:11:19','2024-09-13 12:11:19','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39025',0,'faqs','',0),(39026,3,'2024-07-23 12:14:35','2024-07-23 12:14:35','Careers in biomechanics are greatly varied depending upon an individual\'s choice of education and interpretation. Within our school, these titles may be used...\r\n<ul>\r\n 	<li>Biomechanics Coach</li>\r\n 	<li>Biomechanics Trainer</li>\r\n 	<li>Biomechanics Instructor</li>\r\n</ul>','What job title can I give myself?','','publish','closed','closed','','what-job-title-can-i-give-myself','','','2024-09-13 12:11:05','2024-09-13 12:11:05','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39026',0,'faqs','',0),(39027,3,'2024-07-23 12:14:53','2024-07-23 12:14:53','Biomechanics is the science of movement of a living body, including how muscles, bones, tendons, and ligaments work together to move. Biomechanics is part of a larger field of kinesiology, specifically focusing on movement mechanics. <a href=\"/what-is-a-biomechanics-coach/\">Find out more here</a>.','What is Biomechanics Coaching?','','publish','closed','closed','','what-is-biomechanics-coaching','','','2025-02-03 11:41:58','2025-02-03 11:41:58','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39027',0,'faqs','',0),(39028,3,'2024-07-23 12:15:27','2024-07-23 12:15:27','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 12:15:27','2024-07-23 12:15:27','',38973,'https://biomechanicseducation.com/?p=39028',0,'revision','',0),(39029,3,'2024-07-23 12:15:55','2024-07-23 12:15:55','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 12:15:55','2024-07-23 12:15:55','',38973,'https://biomechanicseducation.com/?p=39029',0,'revision','',0),(39030,3,'2024-07-23 12:17:04','2024-07-23 12:17:04','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 12:17:04','2024-07-23 12:17:04','',38973,'https://biomechanicseducation.com/?p=39030',0,'revision','',0),(39031,3,'2024-07-23 12:17:48','2024-07-23 12:17:48','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 12:17:48','2024-07-23 12:17:48','',38973,'https://biomechanicseducation.com/?p=39031',0,'revision','',0),(39032,3,'2024-07-23 12:18:09','2024-07-23 12:18:09','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 12:18:09','2024-07-23 12:18:09','',38973,'https://biomechanicseducation.com/?p=39032',0,'revision','',0),(39033,3,'2024-07-23 12:19:02','2024-07-23 12:19:02','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 12:19:02','2024-07-23 12:19:02','',38973,'https://biomechanicseducation.com/?p=39033',0,'revision','',0),(39034,3,'2024-07-23 12:19:35','2024-07-23 12:19:35','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 12:19:35','2024-07-23 12:19:35','',38973,'https://biomechanicseducation.com/?p=39034',0,'revision','',0),(39035,3,'2024-07-23 12:23:33','2024-07-23 12:23:33','','David Loyd Promo Panel image','','inherit','closed','closed','','david-loyd-promo-panel-image','','','2024-07-23 12:23:33','2024-07-23 12:23:33','',38973,'https://biomechanicseducation.com/wp-content/uploads/2024/07/David-Loyd-Promo-Panel-image.jpg',0,'attachment','image/jpeg',0),(39036,3,'2024-07-23 12:26:29','2024-07-23 12:26:29','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 12:26:29','2024-07-23 12:26:29','',38973,'https://biomechanicseducation.com/?p=39036',0,'revision','',0),(39037,3,'2024-07-23 12:26:55','2024-07-23 12:26:55','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-07-23 12:26:55','2024-07-23 12:26:55','',38973,'https://biomechanicseducation.com/?p=39037',0,'revision','',0),(39038,3,'2024-07-23 12:35:47','2024-07-23 12:35:47','','EMD UK Referral','','publish','closed','closed','','emd-uk-referral','','','2024-10-09 11:34:55','2024-10-09 11:34:55','',0,'https://biomechanicseducation.com/david-lloyd-referral-copy/',0,'page','',0),(39039,3,'2024-07-23 12:36:17','2024-07-23 12:36:17','','EMD UK Referral','','inherit','closed','closed','','39038-revision-v1','','','2024-07-23 12:36:17','2024-07-23 12:36:17','',39038,'https://biomechanicseducation.com/?p=39039',0,'revision','',0),(39040,3,'2024-07-23 12:39:06','2024-07-23 12:39:06','','EMD UK Logo','','inherit','closed','closed','','emd-uk-logo','','','2024-07-23 12:39:06','2024-07-23 12:39:06','',39038,'https://biomechanicseducation.com/wp-content/uploads/2024/07/EMD-UK-Logo.png',0,'attachment','image/png',0),(39041,3,'2024-07-23 12:39:14','2024-07-23 12:39:14','','EMD UK Referral','','inherit','closed','closed','','39038-revision-v1','','','2024-07-23 12:39:14','2024-07-23 12:39:14','',39038,'https://biomechanicseducation.com/?p=39041',0,'revision','',0),(39042,3,'2024-07-23 12:40:57','2024-07-23 12:40:57','','EMD UK Referral','','inherit','closed','closed','','39038-revision-v1','','','2024-07-23 12:40:57','2024-07-23 12:40:57','',39038,'https://biomechanicseducation.com/?p=39042',0,'revision','',0),(39043,3,'2024-07-23 12:44:58','2024-07-23 12:44:58','','Event Referral Page','','publish','closed','closed','','events','','','2024-10-09 12:46:16','2024-10-09 12:46:16','',0,'https://biomechanicseducation.com/emd-uk-referral-copy/',0,'page','',0),(39044,3,'2024-07-23 12:45:50','2024-07-23 12:45:50','','Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-07-23 12:45:50','2024-07-23 12:45:50','',39043,'https://biomechanicseducation.com/?p=39044',0,'revision','',0),(39045,3,'2024-07-23 12:45:57','2024-07-23 12:45:57','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-07-23 12:45:57','2024-07-23 12:45:57','',39043,'https://biomechanicseducation.com/?p=39045',0,'revision','',0),(39046,3,'2024-07-23 13:01:46','2024-07-23 13:01:46','<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://biomechanicseducation.com.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->\r\n<p>&nbsp;</p>','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2024-07-23 13:01:46','2024-07-23 13:01:46','',3,'https://biomechanicseducation.com/?p=39046',0,'revision','',0),(39047,3,'2024-07-23 13:04:41','2024-07-23 13:04:41','','Events referral page hero image','','inherit','closed','closed','','events-referral-page-hero-image','','','2024-07-23 13:04:41','2024-07-23 13:04:41','',39043,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Events-referral-page-hero-image.jpg',0,'attachment','image/jpeg',0),(39048,3,'2024-07-23 13:06:13','2024-07-23 13:06:13','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-07-23 13:06:13','2024-07-23 13:06:13','',39043,'https://biomechanicseducation.com/?p=39048',0,'revision','',0),(39050,3,'2024-07-23 13:10:24','2024-07-23 13:10:24','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-07-23 13:10:24','2024-07-23 13:10:24','',39043,'https://biomechanicseducation.com/?p=39050',0,'revision','',0),(39051,3,'2024-07-23 13:25:16','2024-07-23 13:25:16','','Event referral page, rachel and rob partnership image','','inherit','closed','closed','','event-referral-page-rachel-and-rob-partnership-image','','','2024-07-23 13:25:16','2024-07-23 13:25:16','',39043,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Event-referral-page-rachel-and-rob-partnership-image.png',0,'attachment','image/png',0),(39052,3,'2024-07-23 13:27:20','2024-07-23 13:27:20','','Rachel France image','','inherit','closed','closed','','rachel-france-image','','','2024-07-23 13:27:20','2024-07-23 13:27:20','',39043,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Rachel-France-image.jpg',0,'attachment','image/jpeg',0),(39053,3,'2024-07-23 13:27:48','2024-07-23 13:27:48','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-07-23 13:27:48','2024-07-23 13:27:48','',39043,'https://biomechanicseducation.com/?p=39053',0,'revision','',0),(39054,3,'2024-07-23 13:28:06','2024-07-23 13:28:06','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-07-23 13:28:06','2024-07-23 13:28:06','',39043,'https://biomechanicseducation.com/?p=39054',0,'revision','',0),(39055,3,'2024-07-23 13:28:14','2024-07-23 13:28:14','','Event Referral Page','','inherit','closed','closed','','39043-autosave-v1','','','2024-07-23 13:28:14','2024-07-23 13:28:14','',39043,'https://biomechanicseducation.com/?p=39055',0,'revision','',0),(39056,3,'2024-07-23 13:28:39','2024-07-23 13:28:39','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-07-23 13:28:39','2024-07-23 13:28:39','',39043,'https://biomechanicseducation.com/?p=39056',0,'revision','',0),(39057,3,'2024-07-23 13:29:26','2024-07-23 13:29:26','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-07-23 13:29:26','2024-07-23 13:29:26','',39043,'https://biomechanicseducation.com/?p=39057',0,'revision','',0),(39058,3,'2024-07-23 13:30:20','2024-07-23 13:30:20','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-07-23 13:30:20','2024-07-23 13:30:20','',39043,'https://biomechanicseducation.com/?p=39058',0,'revision','',0),(39059,3,'2024-07-23 13:31:04','2024-07-23 13:31:04','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-07-23 13:31:04','2024-07-23 13:31:04','',39043,'https://biomechanicseducation.com/?p=39059',0,'revision','',0),(39060,3,'2024-07-23 13:35:39','2024-07-23 13:35:39','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-07-23 13:35:39','2024-07-23 13:35:39','',39043,'https://biomechanicseducation.com/?p=39060',0,'revision','',0),(39061,3,'2024-07-23 13:39:01','2024-07-23 13:39:01','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-07-23 13:39:01','2024-07-23 13:39:01','',39043,'https://biomechanicseducation.com/?p=39061',0,'revision','',0),(39062,3,'2024-07-23 13:42:38','2024-07-23 13:42:38','','Website Privacy Policy - Rev01','','inherit','closed','closed','','website-privacy-policy-rev01','','','2024-07-23 13:42:38','2024-07-23 13:42:38','',3,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Website-Privacy-Policy-Rev01.pdf',0,'attachment','application/pdf',0),(39063,3,'2024-07-23 13:42:43','2024-07-23 13:42:43','<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://biomechanicseducation.com.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->\r\n<p>&nbsp;</p>','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2024-07-23 13:42:43','2024-07-23 13:42:43','',3,'https://biomechanicseducation.com/?p=39063',0,'revision','',0),(39064,3,'2024-07-23 13:42:47','2024-07-23 13:42:47','<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://biomechanicseducation.com.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->\r\n<p>&nbsp;</p>','Privacy Policy','','inherit','closed','closed','','3-autosave-v1','','','2024-07-23 13:42:47','2024-07-23 13:42:47','',3,'https://biomechanicseducation.com/?p=39064',0,'revision','',0),(39065,3,'2024-07-23 13:49:05','2024-07-23 13:49:05','<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://biomechanicseducation.com.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->\r\n<p>&nbsp;</p>','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2024-07-23 13:49:05','2024-07-23 13:49:05','',3,'https://biomechanicseducation.com/?p=39065',0,'revision','',0),(39066,3,'2024-07-23 14:08:07','2024-07-23 14:08:07','','Courses','','publish','closed','closed','','courses','','','2024-09-23 14:21:17','2024-09-23 14:21:17','',0,'https://biomechanicseducation.com/?page_id=39066',0,'page','',0),(39067,3,'2024-07-23 14:07:12','2024-07-23 14:07:12','','Image for courses page hero','','inherit','closed','closed','','image-for-courses-page-hero','','','2024-07-23 14:07:12','2024-07-23 14:07:12','',39066,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Image-for-courses-page-hero.jpg',0,'attachment','image/jpeg',0),(39068,3,'2024-07-23 14:08:07','2024-07-23 14:08:07','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-07-23 14:08:07','2024-07-23 14:08:07','',39066,'https://biomechanicseducation.com/?p=39068',0,'revision','',0),(39069,3,'2024-07-23 14:10:51','2024-07-23 14:10:51','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-07-23 14:10:51','2024-07-23 14:10:51','',39066,'https://biomechanicseducation.com/?p=39069',0,'revision','',0),(39071,3,'2024-07-23 14:11:09','2024-07-23 14:11:09','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-07-23 14:11:09','2024-07-23 14:11:09','',39066,'https://biomechanicseducation.com/?p=39071',0,'revision','',0),(39072,3,'2024-07-23 14:29:32','2024-07-23 14:29:32','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-07-23 14:29:32','2024-07-23 14:29:32','',39066,'https://biomechanicseducation.com/?p=39072',0,'revision','',0),(39073,3,'2024-07-23 14:31:26','2024-07-23 14:31:26','','Standard Footer','','publish','closed','closed','','standard-footer','','','2024-07-23 14:32:21','2024-07-23 14:32:21','',0,'https://biomechanicseducation.com/?post_type=template&#038;p=39073',0,'template','',0),(39074,3,'2024-07-23 14:32:34','2024-07-23 14:32:34','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-07-23 14:32:34','2024-07-23 14:32:34','',39066,'https://biomechanicseducation.com/?p=39074',0,'revision','',0),(39076,3,'2024-07-23 14:38:08','2024-07-23 14:38:08','','CPD courses page hero image','','inherit','closed','closed','','cpd-courses-page-hero-image','','','2024-07-23 14:38:08','2024-07-23 14:38:08','',39066,'https://biomechanicseducation.com/wp-content/uploads/2024/07/CPD-courses-page-hero-image.jpg',0,'attachment','image/jpeg',0),(39085,3,'2024-07-24 08:39:59','2024-07-24 08:39:59','','Online learning image','','inherit','closed','closed','','futurefitrebrand-images-nutrition-homelearning-88','','','2024-07-24 08:40:21','2024-07-24 08:40:21','',39066,'https://biomechanicseducation.com/wp-content/uploads/2024/07/FutureFitRebrand-Images-Nutrition-HomeLearning-88.jpg',0,'attachment','image/jpeg',0),(39087,3,'2024-07-24 09:13:00','2024-07-24 09:13:00','','Generic icon set','','publish','closed','closed','','generic-icon-set','','','2024-09-17 06:28:05','2024-09-17 06:28:05','',0,'https://biomechanicseducation.com/?post_type=template&#038;p=39087',0,'template','',0),(39090,3,'2024-07-24 09:28:51','2024-07-24 09:28:51','','Behaviour Change coaching page hero image','','inherit','closed','closed','','behaviour-change-coaching-page-hero-image','','','2024-07-24 09:28:51','2024-07-24 09:28:51','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Behaviour-Change-coaching-page-hero-image.jpg',0,'attachment','image/jpeg',0),(39100,3,'2024-07-24 10:08:54','2024-07-24 10:08:54','','50.50 behaviour change coaching image','','inherit','closed','closed','','50-50-behaviour-change-coaching-image','','','2024-07-24 10:08:54','2024-07-24 10:08:54','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/07/50.50-behaviour-change-coaching-image.jpg',0,'attachment','image/jpeg',0),(39124,3,'2024-07-24 13:28:36','2024-07-24 13:28:36','','course content tabs ection','','inherit','closed','closed','','course-content-tabs-ection','','','2024-07-24 13:28:36','2024-07-24 13:28:36','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/07/course-content-tabs-ection.png',0,'attachment','image/png',0),(39134,3,'2024-07-24 14:43:25','2024-07-24 14:43:25','Completing this behaviour change coaching course will enhance your knowledge and ability to help clients achieve long-term change in relation to their diet and exercise behaviour. This will look at elements including the need for change, barriers to change, models of behaviour change, communication and the Formula4Change system.','What is this Behaviour Change Coaching course?','','publish','closed','closed','','what-is-this-behaviour-change-coaching-course','','','2024-09-13 12:10:01','2024-09-13 12:10:01','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39134',0,'faqs','',0),(39135,3,'2024-07-24 14:43:56','2024-07-24 14:43:56','<ul>\r\n 	<li>We have over 20 years of experience in the fitness industry</li>\r\n 	<li>We were winners of the ukactive\'s Training Provider of the Year in 2016 &amp; 2017</li>\r\n 	<li>We are ISO 9001:2015 registered by the British Standards Institute</li>\r\n 	<li>We offer you affordable and flexible payment options</li>\r\n 	<li>Our flexible training format allows you to train at your own pace and in your own time</li>\r\n 	<li>You will receive unlimited support throughout your training</li>\r\n 	<li>Our team of experienced and highly qualified tutors make your training rewarding and fun</li>\r\n</ul>','How do I know you’re the best training provider for my course?','','publish','closed','closed','','how-do-i-know-youre-the-best-training-provider-for-my-course','','','2024-09-13 12:06:58','2024-09-13 12:06:58','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39135',0,'faqs','',0),(39137,3,'2024-07-24 14:44:55','2024-07-24 14:44:55','CIMSPA (the Chartered Institute for the Management of Sport and Physical Activity) is the professional organisation that provides development, leadership, support and empowerment for professionals working in sport and physical activity. Their goal is to create a standardised industry that everyone, from apprentices to CEOs, are confident in and proud to be part of. Some quick key facts are:\r\n<ul>\r\n 	<li>Backed by Sport England and DCMS (Department for Culture, Media and Sport) to lead developments in the sports and physical activity sector\'s workforce.</li>\r\n 	<li>Set a rigorous system for standardising all sport and exercise professionals, assessments and awarding and validating qualifications.</li>\r\n 	<li>Has membership options for everyone working in, or interested in working in, the sport and physical activity world.</li>\r\n 	<li>CIMSPA already provides a route to chartered status for those working in leisure operations, and is developing similar routes for the whole of the sector.</li>\r\n</ul>\r\nFor more information go to <a href=\"https://www.cimspa.co.uk/\">www.cimspa.co.uk.</a>','What is CIMSPA?','','publish','closed','closed','','what-is-cimspa','','','2024-09-13 12:06:45','2024-09-13 12:06:45','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39137',0,'faqs','',0),(39138,3,'2024-07-24 14:45:30','2024-07-24 14:45:30','Once you have enrolled on one of our courses, you will find that each individual training module within your programme has a recommended time frame for completion. These time frames have been developed to encourage you to succeed and ensure you become qualified. The overall deadline to complete your course will be dependent on the courses you have purchased. Please refer to your enrolment form and the terms and conditions to see the relevant deadlines.','Is there a deadline to complete my training?','','publish','closed','closed','','is-there-a-deadline-to-complete-my-training','','','2024-09-13 12:06:29','2024-09-13 12:06:29','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39138',0,'faqs','',0),(39139,3,'2024-07-24 14:46:01','2024-07-24 14:46:01','The course length will depend on the time you can dedicate to your study. The more time available, the quicker you are likely to complete your course. Our courses have been designed to study both part-time and full-time for all our students, therefore the best way to work out how much time you need to study is to work out how many hours a week you can dedicate. If you still need more support, please contact our Learners Support on <a href=\"tel: 020 3841 6151\">020 3841 6151</a>','How long will the course take? How many hours should I study for per week?','','publish','closed','closed','','how-long-will-the-course-take-how-many-hours-should-i-study-for-per-week','','','2024-09-25 12:16:23','2024-09-25 12:16:23','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39139',0,'faqs','',0),(39145,1,'2024-07-24 15:36:49','2024-07-24 15:36:49','{{unknown}}','','','publish','closed','closed','','640165854348c97c63004ddd10afe804','','','2024-07-24 15:36:49','2024-07-24 15:36:49','',0,'https://biomechanicseducation.com/640165854348c97c63004ddd10afe804/',0,'oembed_cache','',0),(39146,1,'2024-07-24 15:36:49','2024-07-24 15:36:49','{{unknown}}','','','publish','closed','closed','','50f8d588c91a96172485fa6fb5104d5b','','','2024-07-24 15:36:49','2024-07-24 15:36:49','',0,'https://biomechanicseducation.com/50f8d588c91a96172485fa6fb5104d5b/',0,'oembed_cache','',0),(39147,1,'2024-07-24 15:37:11','2024-07-24 15:37:11','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-07-24 15:37:11','2024-07-24 15:37:11','',7,'https://biomechanicseducation.com/?p=39147',0,'revision','',0),(39148,3,'2024-07-25 12:34:31','2024-07-25 12:34:31','','Getting Started','','publish','closed','closed','','getting-started','','','2024-09-18 12:49:58','2024-09-18 12:49:58','',0,'https://biomechanicseducation.com/?page_id=39148',0,'page','',0),(39149,3,'2024-07-25 12:34:31','2024-07-25 12:34:31','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-07-25 12:34:31','2024-07-25 12:34:31','',39148,'https://biomechanicseducation.com/?p=39149',0,'revision','',0),(39151,3,'2024-07-25 12:34:44','2024-07-25 12:34:44','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-07-25 12:34:44','2024-07-25 12:34:44','',39148,'https://biomechanicseducation.com/?p=39151',0,'revision','',0),(39152,3,'2024-07-25 12:42:30','2024-07-25 12:42:30','','Image of rachel for Getting started 50,50 split','','inherit','closed','closed','','image-of-rachel-for-getting-started-5050-split','','','2024-07-25 12:42:30','2024-07-25 12:42:30','',39148,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Image-of-rachel-for-Getting-started-5050-split.jpg',0,'attachment','image/jpeg',0),(39153,3,'2024-07-25 12:44:14','2024-07-25 12:44:14','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-07-25 12:44:14','2024-07-25 12:44:14','',39148,'https://biomechanicseducation.com/?p=39153',0,'revision','',0),(39154,3,'2024-07-25 12:49:59','2024-07-25 12:49:59','','Resources','','publish','closed','closed','','resources','','','2024-09-19 12:57:55','2024-09-19 12:57:55','',0,'https://biomechanicseducation.com/?page_id=39154',0,'page','',0),(39155,3,'2024-07-25 12:49:59','2024-07-25 12:49:59','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-07-25 12:49:59','2024-07-25 12:49:59','',39154,'https://biomechanicseducation.com/?p=39155',0,'revision','',0),(39156,3,'2024-07-25 12:50:48','2024-07-25 12:50:48','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-07-25 12:50:48','2024-07-25 12:50:48','',39154,'https://biomechanicseducation.com/?p=39156',0,'revision','',0),(39157,3,'2024-07-25 12:51:44','2024-07-25 12:51:44','{{unknown}}','','','publish','closed','closed','','f20eabecc61bfa8a2cd16fff474d5a10','','','2024-07-25 12:51:44','2024-07-25 12:51:44','',0,'https://biomechanicseducation.com/f20eabecc61bfa8a2cd16fff474d5a10/',0,'oembed_cache','',0),(39158,3,'2024-07-25 12:52:25','2024-07-25 12:52:25','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-07-25 12:52:25','2024-07-25 12:52:25','',39154,'https://biomechanicseducation.com/?p=39158',0,'revision','',0),(39160,3,'2024-07-25 12:54:40','2024-07-25 12:54:40','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-07-25 12:54:40','2024-07-25 12:54:40','',39154,'https://biomechanicseducation.com/?p=39160',0,'revision','',0),(39161,3,'2024-07-25 12:56:36','2024-07-25 12:56:36','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-07-25 12:56:36','2024-07-25 12:56:36','',39154,'https://biomechanicseducation.com/?p=39161',0,'revision','',0),(39162,3,'2024-07-25 12:56:58','2024-07-25 12:56:58','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-07-25 12:56:58','2024-07-25 12:56:58','',39154,'https://biomechanicseducation.com/?p=39162',0,'revision','',0),(39163,3,'2024-07-25 12:59:00','2024-07-25 12:59:00','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-07-25 12:59:00','2024-07-25 12:59:00','',39154,'https://biomechanicseducation.com/?p=39163',0,'revision','',0),(39164,3,'2024-07-25 12:59:15','2024-07-25 12:59:15','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-07-25 12:59:15','2024-07-25 12:59:15','',39154,'https://biomechanicseducation.com/?p=39164',0,'revision','',0),(39165,3,'2024-07-25 13:01:46','2024-07-25 13:01:46','','IBA-Discovery-Day-Workshop-600x450','','inherit','closed','closed','','iba-discovery-day-workshop-600x450','','','2024-07-25 13:01:46','2024-07-25 13:01:46','',39154,'https://biomechanicseducation.com/wp-content/uploads/2024/07/IBA-Discovery-Day-Workshop-600x450-1.jpg',0,'attachment','image/jpeg',0),(39166,3,'2024-07-25 13:03:12','2024-07-25 13:03:12','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-07-25 13:03:12','2024-07-25 13:03:12','',39154,'https://biomechanicseducation.com/?p=39166',0,'revision','',0),(39167,3,'2024-07-25 13:04:06','2024-07-25 13:04:06','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-07-25 13:04:06','2024-07-25 13:04:06','',39154,'https://biomechanicseducation.com/?p=39167',0,'revision','',0),(39168,3,'2024-07-25 13:06:31','2024-07-25 13:06:31','','Course Learner','','publish','closed','closed','','course-testimonial-biomechanics-education','','','2025-02-10 11:45:06','2025-02-10 11:45:06','',0,'https://biomechanicseducation.com/?post_type=testimonial&#038;p=39168',0,'testimonial','',0),(39169,3,'2024-07-25 13:07:13','2024-07-25 13:07:13','','You are amazing at what you do','','publish','closed','closed','','testimonial-biomechanics-education','','','2024-09-23 12:59:07','2024-09-23 12:59:07','',0,'https://biomechanicseducation.com/?post_type=testimonial&#038;p=39169',0,'testimonial','',0),(39170,3,'2024-07-25 13:08:02','2024-07-25 13:08:02','','Tess Hoggar','','publish','closed','closed','','tess-hoggar-testimonial','','','2024-09-23 12:58:39','2024-09-23 12:58:39','',0,'https://biomechanicseducation.com/?post_type=testimonial&#038;p=39170',0,'testimonial','',0),(39171,3,'2024-07-25 13:08:41','2024-07-25 13:08:41','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-07-25 13:08:41','2024-07-25 13:08:41','',39154,'https://biomechanicseducation.com/?p=39171',0,'revision','',0),(39172,3,'2024-07-25 13:16:14','2024-07-25 13:16:14','','About Us','','publish','closed','closed','','about-us','','','2024-11-04 15:07:39','2024-11-04 15:07:39','',0,'https://biomechanicseducation.com/?page_id=39172',0,'page','',0),(39173,3,'2024-07-25 13:16:14','2024-07-25 13:16:14','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:16:14','2024-07-25 13:16:14','',39172,'https://biomechanicseducation.com/?p=39173',0,'revision','',0),(39174,3,'2024-07-25 13:19:21','2024-07-25 13:19:21','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:19:21','2024-07-25 13:19:21','',39172,'https://biomechanicseducation.com/?p=39174',0,'revision','',0),(39175,3,'2024-07-25 13:30:51','2024-07-25 13:30:51','','Yellow Textured Self-Help Podcast Promotion Youtube Thumbnail','','inherit','closed','closed','','yellow-textured-self-help-podcast-promotion-youtube-thumbnail','','','2024-07-25 13:30:51','2024-07-25 13:30:51','',39172,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Yellow-Textured-Self-Help-Podcast-Promotion-Youtube-Thumbnail.png',0,'attachment','image/png',0),(39176,3,'2024-07-25 13:31:22','2024-07-25 13:31:22','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:31:22','2024-07-25 13:31:22','',39172,'https://biomechanicseducation.com/?p=39176',0,'revision','',0),(39177,3,'2024-07-25 13:41:22','2024-07-25 13:41:22','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:41:22','2024-07-25 13:41:22','',39172,'https://biomechanicseducation.com/?p=39177',0,'revision','',0),(39179,3,'2024-07-25 13:41:45','2024-07-25 13:41:45','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:41:45','2024-07-25 13:41:45','',39172,'https://biomechanicseducation.com/?p=39179',0,'revision','',0),(39180,3,'2024-07-25 13:42:10','2024-07-25 13:42:10','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:42:10','2024-07-25 13:42:10','',39172,'https://biomechanicseducation.com/?p=39180',0,'revision','',0),(39181,3,'2024-07-25 13:42:20','2024-07-25 13:42:20','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:42:20','2024-07-25 13:42:20','',39172,'https://biomechanicseducation.com/?p=39181',0,'revision','',0),(39182,3,'2024-07-25 13:42:40','2024-07-25 13:42:40','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:42:40','2024-07-25 13:42:40','',39172,'https://biomechanicseducation.com/?p=39182',0,'revision','',0),(39183,3,'2024-07-25 13:42:59','2024-07-25 13:42:59','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:42:59','2024-07-25 13:42:59','',39172,'https://biomechanicseducation.com/?p=39183',0,'revision','',0),(39184,3,'2024-07-25 13:44:29','2024-07-25 13:44:29','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:44:29','2024-07-25 13:44:29','',39172,'https://biomechanicseducation.com/?p=39184',0,'revision','',0),(39186,3,'2024-07-25 13:46:09','2024-07-25 13:46:09','','About us Hero image','','inherit','closed','closed','','about-us-hero-image','','','2024-07-25 13:46:09','2024-07-25 13:46:09','',39172,'https://biomechanicseducation.com/wp-content/uploads/2024/07/About-us-Hero-image.png',0,'attachment','image/png',0),(39187,3,'2024-07-25 13:46:24','2024-07-25 13:46:24','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:46:24','2024-07-25 13:46:24','',39172,'https://biomechanicseducation.com/?p=39187',0,'revision','',0),(39188,3,'2024-07-25 13:46:53','2024-07-25 13:46:53','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:46:53','2024-07-25 13:46:53','',39172,'https://biomechanicseducation.com/?p=39188',0,'revision','',0),(39189,3,'2024-07-25 13:48:08','2024-07-25 13:48:08','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:48:08','2024-07-25 13:48:08','',39172,'https://biomechanicseducation.com/?p=39189',0,'revision','',0),(39190,3,'2024-07-25 13:48:48','2024-07-25 13:48:48','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:48:48','2024-07-25 13:48:48','',39172,'https://biomechanicseducation.com/?p=39190',0,'revision','',0),(39191,3,'2024-07-25 13:49:21','2024-07-25 13:49:21','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:49:21','2024-07-25 13:49:21','',39172,'https://biomechanicseducation.com/?p=39191',0,'revision','',0),(39192,3,'2024-07-25 13:49:41','2024-07-25 13:49:41','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-07-25 13:49:41','2024-07-25 13:49:41','',39172,'https://biomechanicseducation.com/?p=39192',0,'revision','',0),(39194,1,'2024-07-26 10:32:02','2024-07-26 10:32:02','<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://biomechanicseducation.com.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->\r\n<p>&nbsp;</p>','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2024-07-26 10:32:02','2024-07-26 10:32:02','',3,'https://biomechanicseducation.com/?p=39194',0,'revision','',0),(39196,3,'2024-07-30 08:23:42','2024-07-30 08:23:42','','Contact Us','','publish','closed','closed','','contact-us','','','2025-05-13 09:42:05','2025-05-13 09:42:05','',0,'https://biomechanicseducation.com/?page_id=39196',0,'page','',0),(39197,3,'2024-07-30 08:23:42','2024-07-30 08:23:42','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-07-30 08:23:42','2024-07-30 08:23:42','',39196,'https://biomechanicseducation.com/?p=39197',0,'revision','',0),(39199,3,'2024-07-30 08:24:19','2024-07-30 08:24:19','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-07-30 08:24:19','2024-07-30 08:24:19','',39196,'https://biomechanicseducation.com/?p=39199',0,'revision','',0),(39207,3,'2024-08-08 12:58:59','2024-08-08 12:58:59','','Our Partners','','publish','closed','closed','','our-partners','','','2025-02-10 11:47:51','2025-02-10 11:47:51','',0,'https://biomechanicseducation.com/?post_type=template&#038;p=39207',0,'template','',0),(39208,3,'2024-07-30 10:39:35','2024-07-30 10:39:35','','Price guide mock up BME price guide','','inherit','closed','closed','','price-guide-mock-up-bme-price-guide','','','2024-07-30 10:39:35','2024-07-30 10:39:35','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Price-guide-mock-up-BME-price-guide.png',0,'attachment','image/png',0),(39214,3,'2024-07-31 11:09:43','2024-07-31 11:09:43','','Biomechanics and Personal Training','','publish','closed','closed','','biomechanics-and-personal-training','','','2025-03-14 09:26:13','2025-03-14 09:26:13','',39148,'https://biomechanicseducation.com/?page_id=39214',0,'page','',0),(39215,3,'2024-07-31 11:09:10','2024-07-31 11:09:10','','Biomechanics and personal training hero image','','inherit','closed','closed','','biomechanics-and-personal-training-hero-image','','','2024-07-31 11:09:10','2024-07-31 11:09:10','',39214,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-hero-image.jpg',0,'attachment','image/jpeg',0),(39216,3,'2024-07-31 11:09:43','2024-07-31 11:09:43','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-07-31 11:09:43','2024-07-31 11:09:43','',39214,'https://biomechanicseducation.com/?p=39216',0,'revision','',0),(39217,3,'2024-07-31 11:11:38','2024-07-31 11:11:38','','Biomechanics and personal training steps image','','inherit','closed','closed','','biomechanics-and-personal-training-steps-image','','','2024-07-31 11:11:38','2024-07-31 11:11:38','',39214,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-steps-image.jpg',0,'attachment','image/jpeg',0),(39218,3,'2024-07-31 11:13:21','2024-07-31 11:13:21','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-07-31 11:13:21','2024-07-31 11:13:21','',39214,'https://biomechanicseducation.com/?p=39218',0,'revision','',0),(39220,3,'2024-07-31 11:15:17','2024-07-31 11:15:17','','Biomechanics and personal training 50.50 image','','inherit','closed','closed','','biomechanics-and-personal-training-50-50-image','','','2024-07-31 11:15:17','2024-07-31 11:15:17','',39214,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-50.50-image.jpg',0,'attachment','image/jpeg',0),(39221,3,'2024-07-31 11:15:43','2024-07-31 11:15:43','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-07-31 11:15:43','2024-07-31 11:15:43','',39214,'https://biomechanicseducation.com/?p=39221',0,'revision','',0),(39222,3,'2024-07-31 11:23:19','2024-07-31 11:23:19','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-07-31 11:23:19','2024-07-31 11:23:19','',39214,'https://biomechanicseducation.com/?p=39222',0,'revision','',0),(39223,3,'2024-07-31 11:27:58','2024-07-31 11:27:58','','A,Mortarboard,And,Graduation,Scroll,,Tied,With,Red,Ribbon,,On','','inherit','closed','closed','','amortarboardandgraduationscrolltiedwithredribbonon','','','2024-07-31 11:27:58','2024-07-31 11:27:58','',39214,'https://biomechanicseducation.com/wp-content/uploads/2024/07/entry-requirements.jpg',0,'attachment','image/jpeg',0),(39224,3,'2024-07-31 11:28:49','2024-07-31 11:28:49','','locations','','inherit','closed','closed','','locations','','','2024-07-31 11:28:49','2024-07-31 11:28:49','',39214,'https://biomechanicseducation.com/wp-content/uploads/2024/07/locations.png',0,'attachment','image/png',0),(39225,3,'2024-07-31 11:31:13','2024-07-31 11:31:13','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-07-31 11:31:13','2024-07-31 11:31:13','',39214,'https://biomechanicseducation.com/?p=39225',0,'revision','',0),(39226,3,'2024-07-31 11:32:46','2024-07-31 11:32:46','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-07-31 11:32:46','2024-07-31 11:32:46','',39214,'https://biomechanicseducation.com/?p=39226',0,'revision','',0),(39227,3,'2024-07-31 11:35:20','2024-07-31 11:35:20','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-07-31 11:35:20','2024-07-31 11:35:20','',39214,'https://biomechanicseducation.com/?p=39227',0,'revision','',0),(39228,3,'2024-07-31 11:36:29','2024-07-31 11:36:29','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-07-31 11:36:29','2024-07-31 11:36:29','',39214,'https://biomechanicseducation.com/?p=39228',0,'revision','',0),(39229,3,'2024-07-31 11:36:48','2024-07-31 11:36:48','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-07-31 11:36:48','2024-07-31 11:36:48','',39214,'https://biomechanicseducation.com/?p=39229',0,'revision','',0),(39231,3,'2024-08-01 08:18:48','2024-08-01 08:18:48','','Biomechanics and Pilates','','publish','closed','closed','','biomechanics-and-pilates','','','2025-03-14 09:26:41','2025-03-14 09:26:41','',39148,'https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training-copy/',0,'page','',0),(39232,3,'2024-08-01 08:20:12','2024-08-01 08:20:12','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-08-01 08:20:12','2024-08-01 08:20:12','',39231,'https://biomechanicseducation.com/?p=39232',0,'revision','',0),(39233,3,'2024-08-01 08:25:41','2024-08-01 08:25:41','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-08-01 08:25:41','2024-08-01 08:25:41','',39231,'https://biomechanicseducation.com/?p=39233',0,'revision','',0),(39235,3,'2024-08-01 08:30:34','2024-08-01 08:30:34','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-08-01 08:30:34','2024-08-01 08:30:34','',39214,'https://biomechanicseducation.com/?p=39235',0,'revision','',0),(39237,3,'2024-08-01 08:31:13','2024-08-01 08:31:13','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-08-01 08:31:13','2024-08-01 08:31:13','',39231,'https://biomechanicseducation.com/?p=39237',0,'revision','',0),(39238,3,'2024-08-01 08:32:58','2024-08-01 08:32:58','','Biomechanics and Sports Massage','','publish','closed','closed','','sports-massage-therapy','','','2025-03-14 09:27:09','2025-03-14 09:27:09','',39148,'https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training-copy/',0,'page','',0),(39239,3,'2024-08-01 08:33:22','2024-08-01 08:33:22','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-08-01 08:33:22','2024-08-01 08:33:22','',39238,'https://biomechanicseducation.com/?p=39239',0,'revision','',0),(39240,3,'2024-08-01 08:34:37','2024-08-01 08:34:37','','bIOMECHANICS AND smt HERO IMAGE','','inherit','closed','closed','','biomechanics-and-smt-hero-image','','','2024-08-01 08:34:37','2024-08-01 08:34:37','',39238,'https://biomechanicseducation.com/wp-content/uploads/2024/08/bIOMECHANICS-AND-smt-HERO-IMAGE.jpg',0,'attachment','image/jpeg',0),(39241,3,'2024-08-01 08:35:24','2024-08-01 08:35:24','','bIOMECHANICS AND smt 50.50 IMAGE','','inherit','closed','closed','','biomechanics-and-smt-50-50-image','','','2024-08-01 08:35:24','2024-08-01 08:35:24','',39238,'https://biomechanicseducation.com/wp-content/uploads/2024/08/bIOMECHANICS-AND-smt-50.50-IMAGE.jpg',0,'attachment','image/jpeg',0),(39242,3,'2024-08-01 08:37:29','2024-08-01 08:37:29','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-08-01 08:37:29','2024-08-01 08:37:29','',39238,'https://biomechanicseducation.com/?p=39242',0,'revision','',0),(39243,3,'2024-08-01 08:39:39','2024-08-01 08:39:39','','Biomechanics and Pialtes hero image','','inherit','closed','closed','','biomechanics-and-pialtes-hero-image','','','2024-08-01 08:39:39','2024-08-01 08:39:39','',39231,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechanics-and-Pialtes-hero-image.jpg',0,'attachment','image/jpeg',0),(39244,3,'2024-08-01 08:40:19','2024-08-01 08:40:19','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-08-01 08:40:19','2024-08-01 08:40:19','',39231,'https://biomechanicseducation.com/?p=39244',0,'revision','',0),(39245,3,'2024-08-01 08:40:28','2024-08-01 08:40:28','','Biomechanics and Podiatrists','','publish','closed','closed','','podiatrists','','','2025-03-14 09:27:35','2025-03-14 09:27:35','',39148,'https://biomechanicseducation.com/getting-started/biomechanics-and-sports-massage-copy/',0,'page','',0),(39246,3,'2024-08-01 08:41:55','2024-08-01 08:41:55','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-autosave-v1','','','2024-08-01 08:41:55','2024-08-01 08:41:55','',39245,'https://biomechanicseducation.com/?p=39246',0,'revision','',0),(39247,3,'2024-08-01 08:42:05','2024-08-01 08:42:05','','Biomechanics and podiatrists hero image','','inherit','closed','closed','','biomechanics-and-podiatrists-hero-image','','','2024-08-01 08:42:05','2024-08-01 08:42:05','',39245,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechanics-and-podiatrists-hero-image.jpg',0,'attachment','image/jpeg',0),(39248,3,'2024-08-01 08:44:39','2024-08-01 08:44:39','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-08-01 08:44:39','2024-08-01 08:44:39','',39245,'https://biomechanicseducation.com/?p=39248',0,'revision','',0),(39249,3,'2024-08-01 08:44:56','2024-08-01 08:44:56','','Biomechanics and Sports Coaches','','publish','closed','closed','','biomechanics-and-sports-coaches','','','2025-03-14 09:28:02','2025-03-14 09:28:02','',39148,'https://biomechanicseducation.com/getting-started/biomechanics-and-sports-massage-copy/',0,'page','',0),(39250,3,'2024-08-01 08:45:23','2024-08-01 08:45:23','','Biomechanics and Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2024-08-01 08:45:23','2024-08-01 08:45:23','',39249,'https://biomechanicseducation.com/?p=39250',0,'revision','',0),(39251,3,'2024-08-01 08:46:38','2024-08-01 08:46:38','','Biomechancis and sports coaches hero image','','inherit','closed','closed','','biomechancis-and-sports-coaches-hero-image','','','2024-08-01 08:46:38','2024-08-01 08:46:38','',39249,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechancis-and-sports-coaches-hero-image.jpg',0,'attachment','image/jpeg',0),(39252,3,'2024-08-01 08:47:28','2024-08-01 08:47:28','','Biomechancis and sports coaches 50.50 image','','inherit','closed','closed','','biomechancis-and-sports-coaches-50-50-image','','','2024-08-01 08:47:28','2024-08-01 08:47:28','',39249,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechancis-and-sports-coaches-50.50-image.jpg',0,'attachment','image/jpeg',0),(39253,3,'2024-08-01 08:48:48','2024-08-01 08:48:48','','Biomechanics and Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2024-08-01 08:48:48','2024-08-01 08:48:48','',39249,'https://biomechanicseducation.com/?p=39253',0,'revision','',0),(39254,3,'2024-08-01 08:52:06','2024-08-01 08:52:06','','Biomechanics and S&C coaches','','publish','closed','closed','','sc-coaches','','','2025-03-14 09:28:28','2025-03-14 09:28:28','',39148,'https://biomechanicseducation.com/getting-started/biomechanics-and-sports-massage-copy/',0,'page','',0),(39255,3,'2024-08-01 08:52:39','2024-08-01 08:52:39','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-08-01 08:52:39','2024-08-01 08:52:39','',39254,'https://biomechanicseducation.com/?p=39255',0,'revision','',0),(39256,3,'2024-08-01 08:54:01','2024-08-01 08:54:01','','Biomechanics and S&C hero image','','inherit','closed','closed','','biomechanics-and-sc-hero-image','','','2024-08-01 08:54:01','2024-08-01 08:54:01','',39254,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechanics-and-SC-hero-image.jpg',0,'attachment','image/jpeg',0),(39257,3,'2024-08-01 08:55:14','2024-08-01 08:55:14','','Biomechanics and S&C 50.50 image','','inherit','closed','closed','','biomechanics-and-sc-50-50-image','','','2024-08-01 08:55:14','2024-08-01 08:55:14','',39254,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechanics-and-SC-50.50-image.jpg',0,'attachment','image/jpeg',0),(39258,3,'2024-08-01 08:56:43','2024-08-01 08:56:43','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-08-01 08:56:43','2024-08-01 08:56:43','',39254,'https://biomechanicseducation.com/?p=39258',0,'revision','',0),(39260,3,'2024-08-06 09:39:04','2024-08-06 09:39:04','','How to become a biomechanics coach page hero iamge','','inherit','closed','closed','','how-to-become-a-biomechanics-coach-page-hero-iamge','','','2024-09-12 14:25:43','2024-09-12 14:25:43','',39148,'https://biomechanicseducation.com/wp-content/uploads/2024/08/How-to-become-a-biomechanics-coach-page-hero-iamge.jpg',0,'attachment','image/jpeg',0),(39263,3,'2024-08-06 09:43:12','2024-08-06 09:43:12','','How to Become a Biomechanics Coach','','publish','closed','closed','','biomechanics-coach','','','2025-03-14 09:28:57','2025-03-14 09:28:57','',39148,'https://biomechanicseducation.com/getting-started/biomechanics-and-sports-massage-copy/',0,'page','',0),(39264,3,'2024-08-06 09:43:39','2024-08-06 09:43:39','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-08-06 09:43:39','2024-08-06 09:43:39','',39263,'https://biomechanicseducation.com/?p=39264',0,'revision','',0),(39265,3,'2024-08-06 09:43:46','2024-08-06 09:43:46','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-autosave-v1','','','2024-08-06 09:43:46','2024-08-06 09:43:46','',39263,'https://biomechanicseducation.com/?p=39265',0,'revision','',0),(39266,3,'2024-08-06 09:49:42','2024-08-06 09:49:42','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-08-06 09:49:42','2024-08-06 09:49:42','',39263,'https://biomechanicseducation.com/?p=39266',0,'revision','',0),(39267,3,'2024-08-06 09:55:46','2024-08-06 09:55:46','','Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-08-06 09:55:46','2024-08-06 09:55:46','',39231,'https://biomechanicseducation.com/?p=39267',0,'revision','',0),(39268,3,'2024-08-06 09:56:00','2024-08-06 09:56:00','','Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-08-06 09:56:00','2024-08-06 09:56:00','',39214,'https://biomechanicseducation.com/?p=39268',0,'revision','',0),(39269,3,'2024-08-06 09:56:40','2024-08-06 09:56:40','','Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2024-08-06 09:56:40','2024-08-06 09:56:40','',39249,'https://biomechanicseducation.com/?p=39269',0,'revision','',0),(39270,3,'2024-08-06 10:05:24','2024-08-06 10:05:24','','Download Price Guide','','publish','closed','closed','','download-price-guide','','','2024-09-23 14:44:33','2024-09-23 14:44:33','',0,'https://biomechanicseducation.com/?page_id=39270',0,'page','',0),(39271,3,'2024-08-06 10:03:37','2024-08-06 10:03:37','','Price guide mock up BME price guide (1)','','inherit','closed','closed','','price-guide-mock-up-bme-price-guide-1','','','2024-08-06 10:03:37','2024-08-06 10:03:37','',39270,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Price-guide-mock-up-BME-price-guide-1.png',0,'attachment','image/png',0),(39272,3,'2024-08-06 10:05:24','2024-08-06 10:05:24','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-08-06 10:05:24','2024-08-06 10:05:24','',39270,'https://biomechanicseducation.com/?p=39272',0,'revision','',0),(39273,3,'2024-08-06 10:09:25','2024-08-06 10:09:25','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-08-06 10:09:25','2024-08-06 10:09:25','',39270,'https://biomechanicseducation.com/?p=39273',0,'revision','',0),(39274,3,'2024-08-06 10:11:20','2024-08-06 10:11:20','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-08-06 10:11:20','2024-08-06 10:11:20','',39270,'https://biomechanicseducation.com/?p=39274',0,'revision','',0),(39276,3,'2024-08-06 10:13:53','2024-08-06 10:13:53','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-08-06 10:13:53','2024-08-06 10:13:53','',39270,'https://biomechanicseducation.com/?p=39276',0,'revision','',0),(39277,3,'2024-08-06 10:14:19','2024-08-06 10:14:19','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-08-06 10:14:19','2024-08-06 10:14:19','',39270,'https://biomechanicseducation.com/?p=39277',0,'revision','',0),(39278,3,'2025-04-08 11:53:54','2024-08-06 10:20:12',' ','','','publish','closed','closed','','39278','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',0,'https://biomechanicseducation.com/?p=39278',1,'nav_menu_item','',0),(39279,3,'2025-04-08 11:53:54','2024-08-06 10:20:12',' ','','','publish','closed','closed','','39279','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',0,'https://biomechanicseducation.com/?p=39279',12,'nav_menu_item','',0),(39280,3,'2025-04-08 11:53:55','2024-08-06 10:20:12',' ','','','publish','closed','closed','','39280','','','2025-04-08 11:53:55','2025-04-08 11:53:55','',0,'https://biomechanicseducation.com/?p=39280',28,'nav_menu_item','',0),(39281,3,'2025-04-08 11:53:54','2024-08-06 10:20:13',' ','','','publish','closed','closed','','39281','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',0,'https://biomechanicseducation.com/?p=39281',20,'nav_menu_item','',0),(39284,3,'2024-08-07 08:32:28','2024-08-07 08:32:28','','Our Partners','','publish','closed','closed','','our-partners','','','2024-10-29 10:45:09','2024-10-29 10:45:09','',39172,'https://biomechanicseducation.com/?page_id=39284',0,'page','',0),(39285,3,'2024-08-07 08:32:28','2024-08-07 08:32:28','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 08:32:28','2024-08-07 08:32:28','',39284,'https://biomechanicseducation.com/?p=39285',0,'revision','',0),(39287,3,'2024-08-07 08:32:57','2024-08-07 08:32:57','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 08:32:57','2024-08-07 08:32:57','',39284,'https://biomechanicseducation.com/?p=39287',0,'revision','',0),(39288,3,'2024-08-07 08:33:15','2024-08-07 08:33:15','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 08:33:15','2024-08-07 08:33:15','',39284,'https://biomechanicseducation.com/?p=39288',0,'revision','',0),(39289,3,'2024-08-07 08:33:54','2024-08-07 08:33:54','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 08:33:54','2024-08-07 08:33:54','',39284,'https://biomechanicseducation.com/?p=39289',0,'revision','',0),(39290,3,'2024-08-07 08:37:16','2024-08-07 08:37:16','','Future Fit Group logo','','inherit','closed','closed','','future-fit-group-logo','','','2024-08-08 13:05:29','2024-08-08 13:05:29','',39284,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Future-Fit-Group-logo.png',0,'attachment','image/png',0),(39291,3,'2024-08-07 08:38:29','2024-08-07 08:38:29','','sta_logo_2016','','inherit','closed','closed','','sta_logo_2016','','','2024-08-08 13:04:48','2024-08-08 13:04:48','',39284,'https://biomechanicseducation.com/wp-content/uploads/2024/08/sta_logo_2016.png',0,'attachment','image/png',0),(39292,3,'2024-08-07 08:39:12','2024-08-07 08:39:12','','BTN Academy','','inherit','closed','closed','','btn-academy','','','2024-08-07 08:39:12','2024-08-07 08:39:12','',39284,'https://biomechanicseducation.com/wp-content/uploads/2024/08/BTN-Academy.svg',0,'attachment','image/svg+xml',0),(39293,3,'2024-08-07 08:42:08','2024-08-07 08:42:08','','cropped-brytespark-Logo-RGB-16b4cf','','inherit','closed','closed','','cropped-brytespark-logo-rgb-16b4cf','','','2024-08-08 13:04:06','2024-08-08 13:04:06','',39284,'https://biomechanicseducation.com/wp-content/uploads/2024/08/cropped-brytespark-Logo-RGB-16b4cf.png',0,'attachment','image/png',0),(39294,3,'2024-08-07 08:43:18','2024-08-07 08:43:18','','cimspa-logo-white-box','','inherit','closed','closed','','cimspa-logo-white-box','','','2024-08-08 13:02:49','2024-08-08 13:02:49','',39284,'https://biomechanicseducation.com/wp-content/uploads/2024/08/cimspa-logo-white-box.webp',0,'attachment','image/webp',0),(39295,3,'2024-08-07 08:43:58','2024-08-07 08:43:58','','Flowin-logo','','inherit','closed','closed','','flowin-logo','','','2024-08-08 13:03:48','2024-08-08 13:03:48','',39284,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Flowin-logo.png',0,'attachment','image/png',0),(39296,3,'2024-08-07 08:46:03','2024-08-07 08:46:03','','V gymwear logo','','inherit','closed','closed','','v-gymwear-logo','','','2024-08-08 13:03:29','2024-08-08 13:03:29','',39284,'https://biomechanicseducation.com/wp-content/uploads/2024/08/V-gymwear-logo.webp',0,'attachment','image/webp',0),(39297,3,'2024-08-07 08:46:30','2024-08-07 08:46:30','','The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200','','inherit','closed','closed','','the_therapy_empire_logos_cmyk-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200','','','2024-08-08 13:03:12','2024-08-08 13:03:12','',39284,'https://biomechanicseducation.com/wp-content/uploads/2024/08/The_Therapy_Empire_Logos_CMYK-01_e8930216-860a-43b8-82a6-53975865d628_1200x1200.webp',0,'attachment','image/webp',0),(39299,3,'2024-08-07 08:47:14','2024-08-07 08:47:14','','logo-pulseroll-1664208053','','inherit','closed','closed','','logo-pulseroll-1664208053','','','2024-08-07 08:50:58','2024-08-07 08:50:58','',39284,'https://biomechanicseducation.com/wp-content/uploads/2024/08/logo-pulseroll-1664208053.webp',0,'attachment','image/webp',0),(39300,3,'2024-08-07 08:47:38','2024-08-07 08:47:38','','BGieulogo-withtagline-3by2-600-2020-02','','inherit','closed','closed','','bgieulogo-withtagline-3by2-600-2020-02','','','2024-08-08 13:01:50','2024-08-08 13:01:50','',39284,'https://biomechanicseducation.com/wp-content/uploads/2024/08/BGieulogo-withtagline-3by2-600-2020-02.png',0,'attachment','image/png',0),(39301,3,'2024-08-07 08:47:46','2024-08-07 08:47:46','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 08:47:46','2024-08-07 08:47:46','',39284,'https://biomechanicseducation.com/?p=39301',0,'revision','',0),(39303,3,'2024-08-07 08:49:08','2024-08-07 08:49:08','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 08:49:08','2024-08-07 08:49:08','',39284,'https://biomechanicseducation.com/?p=39303',0,'revision','',0),(39304,3,'2024-08-07 08:49:37','2024-08-07 08:49:37','','wolverson-main-logo','','inherit','closed','closed','','wolverson-main-logo','','','2024-08-08 13:01:29','2024-08-08 13:01:29','',39284,'https://biomechanicseducation.com/wp-content/uploads/2024/08/wolverson-main-logo.png',0,'attachment','image/png',0),(39305,3,'2024-08-07 08:49:48','2024-08-07 08:49:48','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 08:49:48','2024-08-07 08:49:48','',39284,'https://biomechanicseducation.com/?p=39305',0,'revision','',0),(39306,3,'2024-08-07 08:50:52','2024-08-07 08:50:52','','pulseroll-logo','','inherit','closed','closed','','pulseroll-logo','','','2024-08-08 13:01:03','2024-08-08 13:01:03','',39284,'https://biomechanicseducation.com/wp-content/uploads/2024/08/pulseroll-logo.png',0,'attachment','image/png',0),(39307,3,'2024-08-07 08:51:03','2024-08-07 08:51:03','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 08:51:03','2024-08-07 08:51:03','',39284,'https://biomechanicseducation.com/?p=39307',0,'revision','',0),(39308,3,'2024-08-07 09:09:48','2024-08-07 09:09:48','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 09:09:48','2024-08-07 09:09:48','',39284,'https://biomechanicseducation.com/?p=39308',0,'revision','',0),(39309,3,'2024-08-07 09:10:04','2024-08-07 09:10:04','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 09:10:04','2024-08-07 09:10:04','',39284,'https://biomechanicseducation.com/?p=39309',0,'revision','',0),(39310,3,'2024-08-07 09:11:47','2024-08-07 09:11:47','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 09:11:47','2024-08-07 09:11:47','',39284,'https://biomechanicseducation.com/?p=39310',0,'revision','',0),(39311,3,'2024-08-07 09:12:14','2024-08-07 09:12:14','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 09:12:14','2024-08-07 09:12:14','',39284,'https://biomechanicseducation.com/?p=39311',0,'revision','',0),(39312,3,'2024-08-07 09:13:38','2024-08-07 09:13:38','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 09:13:38','2024-08-07 09:13:38','',39284,'https://biomechanicseducation.com/?p=39312',0,'revision','',0),(39313,3,'2024-08-07 09:14:50','2024-08-07 09:14:50','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 09:14:50','2024-08-07 09:14:50','',39284,'https://biomechanicseducation.com/?p=39313',0,'revision','',0),(39314,3,'2024-08-07 09:15:41','2024-08-07 09:15:41','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 09:15:41','2024-08-07 09:15:41','',39284,'https://biomechanicseducation.com/?p=39314',0,'revision','',0),(39315,3,'2024-08-07 09:16:05','2024-08-07 09:16:05','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 09:16:05','2024-08-07 09:16:05','',39284,'https://biomechanicseducation.com/?p=39315',0,'revision','',0),(39316,3,'2024-08-07 09:16:34','2024-08-07 09:16:34','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-07 09:16:34','2024-08-07 09:16:34','',39284,'https://biomechanicseducation.com/?p=39316',0,'revision','',0),(39318,3,'2025-04-08 11:53:54','2024-08-07 09:18:33',' ','','','publish','closed','closed','','39318','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',39172,'https://biomechanicseducation.com/?p=39318',22,'nav_menu_item','',0),(39319,3,'2025-04-08 11:53:54','2024-08-07 09:19:26',' ','','','publish','closed','closed','','39319','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',39148,'https://biomechanicseducation.com/?p=39319',19,'nav_menu_item','',0),(39320,3,'2025-04-08 11:53:54','2024-08-07 09:19:26',' ','','','publish','closed','closed','','39320','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',39148,'https://biomechanicseducation.com/?p=39320',18,'nav_menu_item','',0),(39321,3,'2025-04-08 11:53:54','2024-08-07 09:19:26',' ','','','publish','closed','closed','','39321','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',39148,'https://biomechanicseducation.com/?p=39321',17,'nav_menu_item','',0),(39322,3,'2025-04-08 11:53:54','2024-08-07 09:19:26',' ','','','publish','closed','closed','','39322','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',39148,'https://biomechanicseducation.com/?p=39322',16,'nav_menu_item','',0),(39323,3,'2025-04-08 11:53:54','2024-08-07 09:19:26',' ','','','publish','closed','closed','','39323','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',39148,'https://biomechanicseducation.com/?p=39323',15,'nav_menu_item','',0),(39324,3,'2025-04-08 11:53:54','2024-08-07 09:19:25',' ','','','publish','closed','closed','','39324','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',39148,'https://biomechanicseducation.com/?p=39324',14,'nav_menu_item','',0),(39325,3,'2025-04-08 11:53:54','2024-08-07 09:19:25',' ','','','publish','closed','closed','','39325','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',39148,'https://biomechanicseducation.com/?p=39325',13,'nav_menu_item','',0),(39326,3,'2024-08-07 09:20:13','2024-08-07 09:20:13','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-08-07 09:20:13','2024-08-07 09:20:13','',39214,'https://biomechanicseducation.com/?p=39326',0,'revision','',0),(39327,3,'2024-08-07 09:20:29','2024-08-07 09:20:29','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-08-07 09:20:29','2024-08-07 09:20:29','',39231,'https://biomechanicseducation.com/?p=39327',0,'revision','',0),(39328,3,'2024-08-07 09:20:48','2024-08-07 09:20:48','','Biomechanics and Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2024-08-07 09:20:48','2024-08-07 09:20:48','',39249,'https://biomechanicseducation.com/?p=39328',0,'revision','',0),(39329,3,'2024-08-07 09:24:59','2024-08-07 09:24:59','','Fees and Funding','','publish','closed','closed','','fees-and-funding','','','2024-10-09 11:53:47','2024-10-09 11:53:47','',39172,'https://biomechanicseducation.com/?page_id=39329',0,'page','',0),(39330,3,'2024-08-07 09:24:59','2024-08-07 09:24:59','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-08-07 09:24:59','2024-08-07 09:24:59','',39329,'https://biomechanicseducation.com/?p=39330',0,'revision','',0),(39332,3,'2024-08-07 09:27:25','2024-08-07 09:27:25','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-08-07 09:27:25','2024-08-07 09:27:25','',39329,'https://biomechanicseducation.com/?p=39332',0,'revision','',0),(39334,3,'2024-08-07 09:32:08','2024-08-07 09:32:08','','Fees and funding hero image','','inherit','closed','closed','','fees-and-funding-hero-image','','','2024-08-07 09:32:08','2024-08-07 09:32:08','',39329,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Fees-and-funding-hero-image.webp',0,'attachment','image/webp',0),(39335,3,'2024-08-07 09:32:21','2024-08-07 09:32:21','','fees and funding 50.50 image','','inherit','closed','closed','','fees-and-funding-50-50-image','','','2024-08-07 09:32:21','2024-08-07 09:32:21','',39329,'https://biomechanicseducation.com/wp-content/uploads/2024/08/fees-and-funding-50.50-image.webp',0,'attachment','image/webp',0),(39336,3,'2024-08-07 09:32:32','2024-08-07 09:32:32','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-08-07 09:32:32','2024-08-07 09:32:32','',39329,'https://biomechanicseducation.com/?p=39336',0,'revision','',0),(39337,3,'2024-08-07 09:35:27','2024-08-07 09:35:27','','tabs, support and crowdfunding iamge','','inherit','closed','closed','','tabs-support-and-crowdfunding-iamge','','','2024-08-07 09:35:27','2024-08-07 09:35:27','',39329,'https://biomechanicseducation.com/wp-content/uploads/2024/08/tabs-support-and-crowdfunding-iamge.webp',0,'attachment','image/webp',0),(39338,3,'2024-08-07 09:36:23','2024-08-07 09:36:23','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-08-07 09:36:23','2024-08-07 09:36:23','',39329,'https://biomechanicseducation.com/?p=39338',0,'revision','',0),(39339,3,'2024-08-07 09:36:43','2024-08-07 09:36:43','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-08-07 09:36:43','2024-08-07 09:36:43','',39329,'https://biomechanicseducation.com/?p=39339',0,'revision','',0),(39340,3,'2024-08-07 09:37:08','2024-08-07 09:37:08','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-08-07 09:37:08','2024-08-07 09:37:08','',39329,'https://biomechanicseducation.com/?p=39340',0,'revision','',0),(39341,3,'2024-08-07 09:41:05','2024-08-07 09:41:05','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-08-07 09:41:05','2024-08-07 09:41:05','',39329,'https://biomechanicseducation.com/?p=39341',0,'revision','',0),(39342,3,'2024-08-07 09:44:22','2024-08-07 09:44:22','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-08-07 09:44:22','2024-08-07 09:44:22','',39329,'https://biomechanicseducation.com/?p=39342',0,'revision','',0),(39343,3,'2024-08-07 09:46:10','2024-08-07 09:46:10','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-08-07 09:46:10','2024-08-07 09:46:10','',39329,'https://biomechanicseducation.com/?p=39343',0,'revision','',0),(39344,3,'2025-04-08 11:53:54','2024-08-07 09:49:45',' ','','','publish','closed','closed','','39344','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',39172,'https://biomechanicseducation.com/?p=39344',21,'nav_menu_item','',0),(39345,3,'2024-08-07 09:59:14','2024-08-07 09:59:14','','CPD Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-08-07 09:59:14','2024-08-07 09:59:14','',39066,'https://biomechanicseducation.com/?p=39345',0,'revision','',0),(39346,3,'2024-08-07 10:02:41','2024-08-07 10:02:41','','CPD Courses','','inherit','closed','closed','','39066-autosave-v1','','','2024-08-07 10:02:41','2024-08-07 10:02:41','',39066,'https://biomechanicseducation.com/?p=39346',0,'revision','',0),(39347,3,'2024-08-07 10:02:52','2024-08-07 10:02:52','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-08-07 10:02:52','2024-08-07 10:02:52','',39066,'https://biomechanicseducation.com/?p=39347',0,'revision','',0),(39348,3,'2025-04-08 11:53:54','2024-08-07 10:05:15','','CPD Courses','','publish','closed','closed','','cpd-courses','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',0,'https://biomechanicseducation.com/?p=39348',8,'nav_menu_item','',0),(39349,3,'2024-08-07 10:36:15','2024-08-07 10:36:15','','Rachel Frances Thompson','','publish','closed','closed','','rachel-frances-thompson','','','2024-09-06 14:29:23','2024-09-06 14:29:23','',0,'https://biomechanicseducation.com/?page_id=39349',0,'page','',0),(39350,3,'2024-08-07 10:36:15','2024-08-07 10:36:15','','Rachel Frances Thompson','','inherit','closed','closed','','39349-revision-v1','','','2024-08-07 10:36:15','2024-08-07 10:36:15','',39349,'https://biomechanicseducation.com/?p=39350',0,'revision','',0),(39352,3,'2024-08-07 10:36:42','2024-08-07 10:36:42','','Rachel Frances Thompson','','inherit','closed','closed','','39349-revision-v1','','','2024-08-07 10:36:42','2024-08-07 10:36:42','',39349,'https://biomechanicseducation.com/?p=39352',0,'revision','',0),(39353,3,'2024-08-07 10:43:39','2024-08-07 10:43:39','','rachel','','inherit','closed','closed','','rachel','','','2024-08-07 10:43:39','2024-08-07 10:43:39','',39349,'https://biomechanicseducation.com/wp-content/uploads/2024/08/rachel.png',0,'attachment','image/png',0),(39354,3,'2024-08-07 10:44:02','2024-08-07 10:44:02','','Rachel Frances Thompson','','inherit','closed','closed','','39349-revision-v1','','','2024-08-07 10:44:02','2024-08-07 10:44:02','',39349,'https://biomechanicseducation.com/?p=39354',0,'revision','',0),(39356,3,'2024-08-07 10:46:27','2024-08-07 10:46:27','','Rachel Frances Thompson','','inherit','closed','closed','','39349-revision-v1','','','2024-08-07 10:46:27','2024-08-07 10:46:27','',39349,'https://biomechanicseducation.com/?p=39356',0,'revision','',0),(39357,3,'2024-08-07 10:46:59','2024-08-07 10:46:59','','Rachel Frances Thompson','','inherit','closed','closed','','39349-revision-v1','','','2024-08-07 10:46:59','2024-08-07 10:46:59','',39349,'https://biomechanicseducation.com/?p=39357',0,'revision','',0),(39358,3,'2024-08-07 10:47:30','2024-08-07 10:47:30','','Rachel Frances Thompson','','inherit','closed','closed','','39349-revision-v1','','','2024-08-07 10:47:30','2024-08-07 10:47:30','',39349,'https://biomechanicseducation.com/?p=39358',0,'revision','',0),(39359,3,'2024-08-07 10:51:10','2024-08-07 10:51:10','','Rachel Frances Thompson','','inherit','closed','closed','','39349-revision-v1','','','2024-08-07 10:51:10','2024-08-07 10:51:10','',39349,'https://biomechanicseducation.com/?p=39359',0,'revision','',0),(39360,3,'2024-08-07 10:51:35','2024-08-07 10:51:35','','Rachel Frances Thompson','','inherit','closed','closed','','39349-revision-v1','','','2024-08-07 10:51:35','2024-08-07 10:51:35','',39349,'https://biomechanicseducation.com/?p=39360',0,'revision','',0),(39361,3,'2024-08-07 10:51:52','2024-08-07 10:51:52','','Rachel Frances Thompson','','inherit','closed','closed','','39349-revision-v1','','','2024-08-07 10:51:52','2024-08-07 10:51:52','',39349,'https://biomechanicseducation.com/?p=39361',0,'revision','',0),(39362,3,'2024-08-07 10:52:04','2024-08-07 10:52:04','','Rachel Frances Thompson','','inherit','closed','closed','','39349-revision-v1','','','2024-08-07 10:52:04','2024-08-07 10:52:04','',39349,'https://biomechanicseducation.com/?p=39362',0,'revision','',0),(39363,3,'2024-08-07 10:52:22','2024-08-07 10:52:22','','Rachel Frances Thompson','','inherit','closed','closed','','39349-revision-v1','','','2024-08-07 10:52:22','2024-08-07 10:52:22','',39349,'https://biomechanicseducation.com/?p=39363',0,'revision','',0),(39364,3,'2024-08-07 10:54:49','2024-08-07 10:54:49','','Tom Waldron','','publish','closed','closed','','tom-waldron','','','2024-09-06 14:31:07','2024-09-06 14:31:07','',0,'https://biomechanicseducation.com/?page_id=39364',0,'page','',0),(39365,3,'2024-08-07 10:54:49','2024-08-07 10:54:49','','Tom Waldron','','inherit','closed','closed','','39364-revision-v1','','','2024-08-07 10:54:49','2024-08-07 10:54:49','',39364,'https://biomechanicseducation.com/?p=39365',0,'revision','',0),(39366,3,'2024-08-07 11:14:31','2024-08-07 11:14:31','','tom waldron','','inherit','closed','closed','','tom-waldron-2','','','2024-08-07 11:14:31','2024-08-07 11:14:31','',39364,'https://biomechanicseducation.com/wp-content/uploads/2024/08/tom-waldron.png',0,'attachment','image/png',0),(39367,3,'2024-08-07 11:14:51','2024-08-07 11:14:51','','Tom Waldron','','inherit','closed','closed','','39364-revision-v1','','','2024-08-07 11:14:51','2024-08-07 11:14:51','',39364,'https://biomechanicseducation.com/?p=39367',0,'revision','',0),(39369,3,'2024-08-07 11:15:09','2024-08-07 11:15:09','','Tom Waldron','','inherit','closed','closed','','39364-revision-v1','','','2024-08-07 11:15:09','2024-08-07 11:15:09','',39364,'https://biomechanicseducation.com/?p=39369',0,'revision','',0),(39370,3,'2024-08-07 11:15:33','2024-08-07 11:15:33','','Tom Waldron','','inherit','closed','closed','','39364-revision-v1','','','2024-08-07 11:15:33','2024-08-07 11:15:33','',39364,'https://biomechanicseducation.com/?p=39370',0,'revision','',0),(39371,3,'2024-08-07 11:16:57','2024-08-07 11:16:57','','Tom Waldron','','inherit','closed','closed','','39364-revision-v1','','','2024-08-07 11:16:57','2024-08-07 11:16:57','',39364,'https://biomechanicseducation.com/?p=39371',0,'revision','',0),(39372,3,'2024-08-07 11:17:14','2024-08-07 11:17:14','','Tom Waldron','','inherit','closed','closed','','39364-revision-v1','','','2024-08-07 11:17:14','2024-08-07 11:17:14','',39364,'https://biomechanicseducation.com/?p=39372',0,'revision','',0),(39373,3,'2024-08-07 11:17:31','2024-08-07 11:17:31','','Tom Waldron','','inherit','closed','closed','','39364-revision-v1','','','2024-08-07 11:17:31','2024-08-07 11:17:31','',39364,'https://biomechanicseducation.com/?p=39373',0,'revision','',0),(39374,3,'2024-08-07 11:17:52','2024-08-07 11:17:52','','Tom Waldron','','inherit','closed','closed','','39364-revision-v1','','','2024-08-07 11:17:52','2024-08-07 11:17:52','',39364,'https://biomechanicseducation.com/?p=39374',0,'revision','',0),(39375,3,'2024-08-07 11:18:09','2024-08-07 11:18:09','','Tom Waldron','','inherit','closed','closed','','39364-revision-v1','','','2024-08-07 11:18:09','2024-08-07 11:18:09','',39364,'https://biomechanicseducation.com/?p=39375',0,'revision','',0),(39379,3,'2024-08-07 11:33:41','2024-08-07 11:33:41','','Building your fitness business hero image','','inherit','closed','closed','','building-your-fitness-business-hero-image','','','2024-08-07 11:33:41','2024-08-07 11:33:41','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Building-your-fitness-business-hero-image.jpg',0,'attachment','image/jpeg',0),(39383,3,'2024-08-07 11:40:44','2024-08-07 11:40:44','','Building your fitness business hero image','','inherit','closed','closed','','building-your-fitness-business-hero-image-2','','','2024-08-07 11:40:44','2024-08-07 11:40:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Building-your-fitness-business-hero-image.jpg',0,'attachment','image/jpeg',0),(39401,3,'2024-08-07 12:02:00','2024-08-07 12:02:00','','Fees and Funding icon set','','publish','closed','closed','','39401','','','2024-08-07 12:02:21','2024-08-07 12:02:21','',0,'https://biomechanicseducation.com/?post_type=template&#038;p=39401',0,'template','',0),(39403,3,'2024-08-07 12:07:17','2024-08-07 12:07:17','This course addresses one of the key skills for fitness and wellbeing professionals, particularly those who are looking to establish their own business. The course looks at various different business elements to equip you with the skills and knowledge to get started on your own.\r\n<ul>\r\n 	<li>Planning your fitness business</li>\r\n 	<li>Marketing &amp; building a brand</li>\r\n 	<li>Selling your service</li>\r\n 	<li>Managing your business and clients</li>\r\n</ul>\r\n<strong>How do I know you’re the best training provider for my course?</strong>\r\n<ul>\r\n 	<li>We have over 20 years of experience in the fitness industry</li>\r\n 	<li>We were winners of the ukactive\'s Training Provider of the Year in 2016 &amp; 2017</li>\r\n 	<li>We are ISO 9001:2015 registered by the British Standards Institute</li>\r\n 	<li>We offer you affordable and flexible payment options</li>\r\n 	<li>Our flexible training format allows you to train at your own pace and in your own time</li>\r\n 	<li>You will receive unlimited support throughout your training</li>\r\n 	<li>Our team of experienced and highly qualified tutors make your training rewarding and fun</li>\r\n</ul>','How will this course help me start a fitness business?','','publish','closed','closed','','how-will-this-course-help-me-start-a-fitness-business','','','2024-08-07 12:07:17','2024-08-07 12:07:17','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39403',0,'faqs','',0),(39420,3,'2024-08-07 13:51:05','2024-08-07 13:51:05','','Core training hero image','','inherit','closed','closed','','core-training-hero-image','','','2024-08-07 13:51:05','2024-08-07 13:51:05','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Core-training-hero-image.jpg',0,'attachment','image/jpeg',0),(39421,3,'2024-08-07 13:56:22','2024-08-07 13:56:22','','Core training 50.50 image','','inherit','closed','closed','','core-training-50-50-image','','','2024-08-07 13:56:22','2024-08-07 13:56:22','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Core-training-50.50-image.jpg',0,'attachment','image/jpeg',0),(39422,3,'2024-08-07 14:09:14','2024-08-07 14:09:14','In order to study this course, you will need a qualification in a Level 2 Gym Instructor, Level 2 Exercise to Music Course or Level 3 Mat Pilates Course. All entrants need to be 16+.','What qualifications do I need for a core training course?','','publish','closed','closed','','what-qualifications-do-i-need-for-a-core-training-course','','','2024-08-07 14:09:14','2024-08-07 14:09:14','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39422',0,'faqs','',0),(39435,3,'2024-08-08 08:11:42','2024-08-08 08:11:42','','level 4 pt hero image','','inherit','closed','closed','','level-4-pt-hero-image','','','2024-08-08 08:11:42','2024-08-08 08:11:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/07/level-4-pt-hero-image.jpg',0,'attachment','image/jpeg',0),(39437,3,'2024-08-08 08:19:25','2024-08-08 08:19:25','','level 4 pt 50.50 image','','inherit','closed','closed','','level-4-pt-50-50-image','','','2024-09-12 11:22:37','2024-09-12 11:22:37','',39066,'https://biomechanicseducation.com/wp-content/uploads/2024/08/level-4-pt-50.50-image.jpg',0,'attachment','image/jpeg',0),(39445,3,'2024-08-08 08:27:00','2024-08-08 08:27:00','In order to study this course, you will need a qualification in a Level 3 Personal Trainer. All entrants need to be 16+.','What qualifications do I need for a Level 4 Personal Trainer course?','','publish','closed','closed','','what-qualifications-do-i-need-for-a-level-4-personal-trainer-course','','','2024-09-13 11:56:15','2024-09-13 11:56:15','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39445',0,'faqs','',0),(39446,3,'2024-08-08 08:27:58','2024-08-08 08:27:58','Active IQ is a leading UK awarding organization in the active leisure, learning, and wellbeing sector. Recognized by Ofqual, Qualifications Wales, and CCEA, they offer a wide range of accredited qualifications from entry level to level 5 on the RQF. Active IQ is renowned for its excellent customer service, high-quality teaching resources, and rigorous quality assurance. They support career development through eLearning, Apprenticeship End-point Assessment, and Professional Recognition, delivered via a national and international network of approved centres. Their commitment to quality and comprehensive support makes them a standout in their field.\r\n\r\nFor more information go to <a href=\"http://www.activeiq.co.uk\">www.activeiq.co.uk</a>.','What is ActiveIQ?','','publish','closed','closed','','what-is-activeiq','','','2024-09-13 11:53:21','2024-09-13 11:53:21','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=39446',0,'faqs','',0),(39451,3,'2024-08-08 09:21:49','2024-08-08 09:21:49','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-08-08 09:21:49','2024-08-08 09:21:49','',7,'https://biomechanicseducation.com/?p=39451',0,'revision','',0),(39452,3,'2024-08-08 09:23:59','2024-08-08 09:23:59','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-08-08 09:23:59','2024-08-08 09:23:59','',39214,'https://biomechanicseducation.com/?p=39452',0,'revision','',0),(39453,3,'2024-08-08 09:26:58','2024-08-08 09:26:58','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-08-08 09:26:58','2024-08-08 09:26:58','',39231,'https://biomechanicseducation.com/?p=39453',0,'revision','',0),(39454,3,'2024-08-08 09:32:15','2024-08-08 09:32:15','','How to become a biomechanics coach page hero iamge','','inherit','closed','closed','','how-to-become-a-biomechanics-coach-page-hero-iamge-2','','','2024-08-08 09:32:15','2024-08-08 09:32:15','',39263,'https://biomechanicseducation.com/wp-content/uploads/2024/08/How-to-become-a-biomechanics-coach-page-hero-iamge-1.jpg',0,'attachment','image/jpeg',0),(39455,3,'2024-08-08 09:32:40','2024-08-08 09:32:40','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-08-08 09:32:40','2024-08-08 09:32:40','',39263,'https://biomechanicseducation.com/?p=39455',0,'revision','',0),(39456,3,'2024-08-08 09:32:58','2024-08-08 09:32:58','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-08-08 09:32:58','2024-08-08 09:32:58','',7,'https://biomechanicseducation.com/?p=39456',0,'revision','',0),(39458,3,'2024-08-08 09:33:58','2024-08-08 09:33:58','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-08-08 09:33:58','2024-08-08 09:33:58','',7,'https://biomechanicseducation.com/?p=39458',0,'revision','',0),(39459,3,'2024-08-08 09:34:16','2024-08-08 09:34:16','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-08-08 09:34:16','2024-08-08 09:34:16','',7,'https://biomechanicseducation.com/?p=39459',0,'revision','',0),(39460,3,'2024-08-08 09:34:37','2024-08-08 09:34:37','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-08-08 09:34:37','2024-08-08 09:34:37','',7,'https://biomechanicseducation.com/?p=39460',0,'revision','',0),(39461,3,'2024-08-08 09:34:47','2024-08-08 09:34:47','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-08-08 09:34:47','2024-08-08 09:34:47','',7,'https://biomechanicseducation.com/?p=39461',0,'revision','',0),(39462,3,'2024-08-08 09:36:41','2024-08-08 09:36:41','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-08-08 09:36:41','2024-08-08 09:36:41','',7,'https://biomechanicseducation.com/?p=39462',0,'revision','',0),(39463,3,'2024-08-08 09:58:03','2024-08-08 09:58:03','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-08-08 09:58:03','2024-08-08 09:58:03','',7,'https://biomechanicseducation.com/?p=39463',0,'revision','',0),(39464,3,'2024-08-08 09:59:20','2024-08-08 09:59:20','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-08-08 09:59:20','2024-08-08 09:59:20','',7,'https://biomechanicseducation.com/?p=39464',0,'revision','',0),(39465,3,'2024-08-08 09:59:51','2024-08-08 09:59:51','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-08-08 09:59:51','2024-08-08 09:59:51','',7,'https://biomechanicseducation.com/?p=39465',0,'revision','',0),(39466,3,'2024-08-08 10:16:18','2024-08-08 10:16:18','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-08 10:16:18','2024-08-08 10:16:18','',39284,'https://biomechanicseducation.com/?p=39466',0,'revision','',0),(39467,3,'2024-08-08 10:54:21','2024-08-08 10:54:21','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-08-08 10:54:21','2024-08-08 10:54:21','',39148,'https://biomechanicseducation.com/?p=39467',0,'revision','',0),(39468,3,'2024-08-08 10:54:53','2024-08-08 10:54:53','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-08-08 10:54:53','2024-08-08 10:54:53','',39148,'https://biomechanicseducation.com/?p=39468',0,'revision','',0),(39469,3,'2024-08-08 10:54:59','2024-08-08 10:54:59','','Getting Started','','inherit','closed','closed','','39148-autosave-v1','','','2024-08-08 10:54:59','2024-08-08 10:54:59','',39148,'https://biomechanicseducation.com/?p=39469',0,'revision','',0),(39470,3,'2024-08-08 10:55:13','2024-08-08 10:55:13','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-08-08 10:55:13','2024-08-08 10:55:13','',39148,'https://biomechanicseducation.com/?p=39470',0,'revision','',0),(39471,3,'2024-08-08 12:55:46','2024-08-08 12:55:46','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-08-08 12:55:46','2024-08-08 12:55:46','',39066,'https://biomechanicseducation.com/?p=39471',0,'revision','',0),(39472,3,'2024-08-08 12:56:11','2024-08-08 12:56:11','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-08-08 12:56:11','2024-08-08 12:56:11','',39066,'https://biomechanicseducation.com/?p=39472',0,'revision','',0),(39473,3,'2024-08-08 12:56:46','2024-08-08 12:56:46','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-08-08 12:56:46','2024-08-08 12:56:46','',39066,'https://biomechanicseducation.com/?p=39473',0,'revision','',0),(39474,3,'2024-08-08 12:58:04','2024-08-08 12:58:04','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-08-08 12:58:04','2024-08-08 12:58:04','',39066,'https://biomechanicseducation.com/?p=39474',0,'revision','',0),(39475,3,'2024-08-08 13:07:43','2024-08-08 13:07:43','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-08-08 13:07:43','2024-08-08 13:07:43','',7,'https://biomechanicseducation.com/?p=39475',0,'revision','',0),(39483,3,'2024-08-08 13:33:02','2024-08-08 13:33:02','','webinars page hero image','','inherit','closed','closed','','webinars-page-hero-image','','','2025-03-18 12:09:28','2025-03-18 12:09:28','',42683,'https://biomechanicseducation.com/wp-content/uploads/2024/08/webinars-page-hero-image.jpg',0,'attachment','image/jpeg',0),(39485,3,'2025-04-08 11:53:54','2024-08-15 09:17:41','','In-person CPD Courses','','publish','closed','closed','','in-person-cpd-courses','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',0,'https://biomechanicseducation.com/?p=39485',10,'nav_menu_item','',0),(39486,3,'2025-04-08 11:53:54','2024-08-15 09:17:41','','Online CPD Courses','','publish','closed','closed','','online-cps-courses','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',0,'https://biomechanicseducation.com/?p=39486',9,'nav_menu_item','',0),(39487,3,'2025-04-08 11:53:54','2024-08-15 09:17:41','','Webinars','','publish','closed','closed','','webinars','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',0,'https://biomechanicseducation.com/?p=39487',11,'nav_menu_item','',0),(39488,3,'2024-08-15 09:21:13','2024-08-15 09:21:13','','Our Team','','publish','closed','closed','','our-team','','','2024-08-15 09:22:21','2024-08-15 09:22:21','',0,'https://biomechanicseducation.com/?page_id=39488',0,'page','',0),(39489,3,'2024-08-15 09:21:13','2024-08-15 09:21:13','','Our Team','','inherit','closed','closed','','39488-revision-v1','','','2024-08-15 09:21:13','2024-08-15 09:21:13','',39488,'https://biomechanicseducation.com/?p=39489',0,'revision','',0),(39493,3,'2024-08-15 09:29:13','2024-08-15 09:29:13','','Find a Biomechanics Coach','','publish','closed','closed','','find-a-biomechanics-coach','','','2024-10-29 10:47:13','2024-10-29 10:47:13','',0,'https://biomechanicseducation.com/?page_id=39493',0,'page','',0),(39494,3,'2024-08-15 09:29:13','2024-08-15 09:29:13','','Find a BM Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-08-15 09:29:13','2024-08-15 09:29:13','',39493,'https://biomechanicseducation.com/?p=39494',0,'revision','',0),(39496,3,'2024-08-15 09:38:13','2024-08-15 09:38:13','','In-person CPD Courses Hero Image','','inherit','closed','closed','','in-person-cpd-courses-hero-image','','','2024-08-15 09:38:13','2024-08-15 09:38:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/08/In-person-CPD-Courses-Hero-Image.jpg',0,'attachment','image/jpeg',0),(39497,3,'2024-08-15 10:11:06','2024-08-15 10:11:06','','Blogs','','publish','closed','closed','','blogs','','','2025-01-20 16:09:09','2025-01-20 16:09:09','',0,'https://biomechanicseducation.com/?page_id=39497',0,'page','',0),(39498,3,'2024-08-15 10:11:06','2024-08-15 10:11:06','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-08-15 10:11:06','2024-08-15 10:11:06','',39497,'https://biomechanicseducation.com/?p=39498',0,'revision','',0),(39499,3,'2024-08-15 10:47:15','2024-08-15 10:47:15','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-08-15 10:47:15','2024-08-15 10:47:15','',39172,'https://biomechanicseducation.com/?p=39499',0,'revision','',0),(39500,3,'2024-08-15 10:48:55','2024-08-15 10:48:55','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-08-15 10:48:55','2024-08-15 10:48:55','',39172,'https://biomechanicseducation.com/?p=39500',0,'revision','',0),(39501,3,'2024-08-15 10:53:06','2024-08-15 10:53:06','','All partner logos','','inherit','closed','closed','','untitled-design-3','','','2024-08-15 10:53:17','2024-08-15 10:53:17','',39172,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Untitled-design-3.png',0,'attachment','image/png',0),(39502,3,'2024-08-15 10:54:42','2024-08-15 10:54:42','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-08-15 10:54:42','2024-08-15 10:54:42','',39172,'https://biomechanicseducation.com/?p=39502',0,'revision','',0),(39504,3,'2024-08-15 10:57:13','2024-08-15 10:57:13','','All partner logos square','','inherit','closed','closed','','untitled-design-5','','','2024-08-15 10:57:27','2024-08-15 10:57:27','',39172,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Untitled-design-5.png',0,'attachment','image/png',0),(39505,3,'2024-08-15 10:57:32','2024-08-15 10:57:32','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-08-15 10:57:32','2024-08-15 10:57:32','',39172,'https://biomechanicseducation.com/?p=39505',0,'revision','',0),(39506,3,'2024-08-15 11:01:44','2024-08-15 11:01:44','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-08-15 11:01:44','2024-08-15 11:01:44','',39172,'https://biomechanicseducation.com/?p=39506',0,'revision','',0),(39507,3,'2024-08-15 11:02:06','2024-08-15 11:02:06','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-08-15 11:02:06','2024-08-15 11:02:06','',39172,'https://biomechanicseducation.com/?p=39507',0,'revision','',0),(39508,3,'2024-08-15 11:02:20','2024-08-15 11:02:20','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-08-15 11:02:20','2024-08-15 11:02:20','',39172,'https://biomechanicseducation.com/?p=39508',0,'revision','',0),(39509,3,'2024-08-15 11:02:41','2024-08-15 11:02:41','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-08-15 11:02:41','2024-08-15 11:02:41','',39172,'https://biomechanicseducation.com/?p=39509',0,'revision','',0),(39510,3,'2024-08-15 11:04:05','2024-08-15 11:04:05','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-08-15 11:04:05','2024-08-15 11:04:05','',39172,'https://biomechanicseducation.com/?p=39510',0,'revision','',0),(39511,3,'2024-08-15 11:07:19','2024-08-15 11:07:19','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-15 11:07:19','2024-08-15 11:07:19','',39284,'https://biomechanicseducation.com/?p=39511',0,'revision','',0),(39512,3,'2024-08-15 11:07:31','2024-08-15 11:07:31','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-08-15 11:07:31','2024-08-15 11:07:31','',39284,'https://biomechanicseducation.com/?p=39512',0,'revision','',0),(39513,3,'2024-08-15 11:13:09','2024-08-15 11:13:09','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-08-15 11:13:09','2024-08-15 11:13:09','',39172,'https://biomechanicseducation.com/?p=39513',0,'revision','',0),(39514,3,'2024-08-15 11:14:42','2024-08-15 11:14:42','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-08-15 11:14:42','2024-08-15 11:14:42','',39172,'https://biomechanicseducation.com/?p=39514',0,'revision','',0),(39522,3,'2025-04-08 11:53:55','2024-09-02 08:55:06',' ','','','publish','closed','closed','','39522','','','2025-04-08 11:53:55','2025-04-08 11:53:55','',0,'https://biomechanicseducation.com/?p=39522',23,'nav_menu_item','',0),(39524,3,'2024-09-03 15:39:26','2024-09-03 15:39:26','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-03 15:39:26','2024-09-03 15:39:26','',39231,'https://biomechanicseducation.com/?p=39524',0,'revision','',0),(39525,3,'2024-09-03 15:40:32','2024-09-03 15:40:32','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-03 15:40:32','2024-09-03 15:40:32','',39231,'https://biomechanicseducation.com/?p=39525',0,'revision','',0),(39526,3,'2024-09-03 16:06:57','2024-09-03 16:06:57','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-03 16:06:57','2024-09-03 16:06:57','',39214,'https://biomechanicseducation.com/?p=39526',0,'revision','',0),(39531,3,'2024-09-04 13:47:43','2024-09-04 13:47:43','','EMD UK Referral','','inherit','closed','closed','','39038-revision-v1','','','2024-09-04 13:47:43','2024-09-04 13:47:43','',39038,'https://biomechanicseducation.com/?p=39531',0,'revision','',0),(39532,3,'2024-09-04 13:47:48','2024-09-04 13:47:48','','EMD UK Referral','','inherit','closed','closed','','39038-autosave-v1','','','2024-09-04 13:47:48','2024-09-04 13:47:48','',39038,'https://biomechanicseducation.com/?p=39532',0,'revision','',0),(39533,3,'2024-09-04 13:51:14','2024-09-04 13:51:14','','EMD UK Referral','','inherit','closed','closed','','39038-revision-v1','','','2024-09-04 13:51:14','2024-09-04 13:51:14','',39038,'https://biomechanicseducation.com/?p=39533',0,'revision','',0),(39534,3,'2024-09-04 13:52:48','2024-09-04 13:52:48','','EMD UK Referral','','inherit','closed','closed','','39038-revision-v1','','','2024-09-04 13:52:48','2024-09-04 13:52:48','',39038,'https://biomechanicseducation.com/?p=39534',0,'revision','',0),(39536,3,'2024-09-04 14:59:49','2024-09-04 14:59:49','<p style=\"text-align: center;\">As personal trainers, certain teachings become so ingrained that we rarely question them. One such principle is: “If it’s tight, stretch it.” However, sometimes this approach doesn\'t yield results. Let\'s explore why stretching alone might not be effective and what alternative solutions exist.</p>\n<p style=\"text-align: center;\"><strong>The Problem with Stretching Tight Calves</strong></p>\n<p style=\"text-align: center;\">Imagine a client whose squat isn’t improving due to tight calves and poor ankle dorsiflexion. You perform ankle mobility exercises, but the improvement is short-lived. Stretching the calves repeatedly doesn’t seem to help either. This situation is frustrating and calls for a reevaluation of the problem.</p>\n<p style=\"text-align: center;\"><strong>Rethinking Muscle Tightness</strong></p>\n<p style=\"text-align: center;\">If stretching isn\'t effective, it’s essential to consider other causes for muscle tightness. The gastrocnemius and soleus muscles, commonly referred to as the calves, often limit ankle dorsiflexion. However, persistent tightness might be due to factors beyond muscle flexibility.</p>\n<p style=\"text-align: center;\"><strong>The Role of the Sciatic Nerve</strong></p>\n<p style=\"text-align: center;\">Did you know that the sciatic nerve can inhibit calf muscles? The sciatic nerve runs beneath these muscles and can become tight or tethered. When this happens, the body may induce calf muscle tension to protect the nerve from damage. This protective mechanism prioritizes nerve safety over muscle flexibility, as nerves are more critical and harder to repair than muscles.</p>\n<p style=\"text-align: center;\"><strong>Addressing Sciatic Nerve Tension: The Slump Exercise</strong></p>\n<p style=\"text-align: center;\">To alleviate this issue, consider sciatic nerve mobilization exercises, like the Slump. This exercise is straightforward but should only be performed by individuals without neural conditions like sciatica. Always advise clients to consult a professional if they have any concerns.</p>\n<p style=\"text-align: center;\"><strong>Here\'s how to perform the Slump exercise:</strong></p>\n\n<ul>\n 	<li style=\"text-align: center;\">Have your client sit with their thighs supported and hips at 90 degrees.</li>\n 	<li style=\"text-align: center;\">Ask them to gently lower their chin and slowly round their back, relaxing their hands behind them.</li>\n 	<li style=\"text-align: center;\">Have them slowly extend one knee until they feel the onset of tension, then stop.</li>\n 	<li style=\"text-align: center;\">They should then slowly lower and lift the leg to add and reduce tension.</li>\n 	<li style=\"text-align: center;\">Emphasise that this is not a stretch; they should only find the start of tension.</li>\n</ul>\n<p style=\"text-align: center;\"><strong>Recommended Routine:</strong></p>\n<p style=\"text-align: center;\">Perform 8 reps for 2 sets before training.</p>\n<p style=\"text-align: center;\">Begin with no more than twice daily to gauge the appropriate dosage and response.</p>\n&nbsp;\n\nhttps://youtu.be/Vr4ItLOv0zk\n<p style=\"text-align: center;\"><span data-contrast=\"auto\">By incorporating the Slump exercise, you may notice improved range of motion in posterior chain muscles, reduced calf tension, increased dorsiflexion, and significantly better squat performance. This approach addresses the root cause of tightness, leading to more effective and lasting results.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p style=\"text-align: center;\"><b><span data-contrast=\"auto\">Ready to Enhance Your Clients\' Mobility?</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p style=\"text-align: center;\"><span data-contrast=\"auto\">If you’re ready to expand your skillset with the Biomechanics Coach System, <a href=\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\">click here</a>.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p style=\"text-align: center;\"><span data-contrast=\"auto\">Empower your clients to move better and more freely by tackling the underlying issues behind muscle tightness. Cool, huh?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>','When Stretching a Tight Muscle Doesn’t Work – A Look at the Gastrocnemius & Soleus','','inherit','closed','closed','','19515-autosave-v1','','','2024-09-04 14:59:49','2024-09-04 14:59:49','',19515,'https://biomechanicseducation.com/?p=39536',0,'revision','',0),(39537,3,'2024-09-04 15:01:57','2024-09-04 15:01:57','<p style=\"text-align: center;\">As personal trainers, certain teachings become so ingrained that we rarely question them. One such principle is: “If it’s tight, stretch it.” However, sometimes this approach doesn\'t yield results. Let\'s explore why stretching alone might not be effective and what alternative solutions exist.</p>\r\n<p style=\"text-align: center;\"><strong>The Problem with Stretching Tight Calves</strong></p>\r\n<p style=\"text-align: center;\">Imagine a client whose squat isn’t improving due to tight calves and poor ankle dorsiflexion. You perform ankle mobility exercises, but the improvement is short-lived. Stretching the calves repeatedly doesn’t seem to help either. This situation is frustrating and calls for a reevaluation of the problem.</p>\r\n<p style=\"text-align: center;\"><strong>Rethinking Muscle Tightness</strong></p>\r\n<p style=\"text-align: center;\">If stretching isn\'t effective, it’s essential to consider other causes for muscle tightness. The gastrocnemius and soleus muscles, commonly referred to as the calves, often limit ankle dorsiflexion. However, persistent tightness might be due to factors beyond muscle flexibility.</p>\r\n<p style=\"text-align: center;\"><strong>The Role of the Sciatic Nerve</strong></p>\r\n<p style=\"text-align: center;\">Did you know that the sciatic nerve can inhibit calf muscles? The sciatic nerve runs beneath these muscles and can become tight or tethered. When this happens, the body may induce calf muscle tension to protect the nerve from damage. This protective mechanism prioritizes nerve safety over muscle flexibility, as nerves are more critical and harder to repair than muscles.</p>\r\n<p style=\"text-align: center;\"><strong>Addressing Sciatic Nerve Tension: The Slump Exercise</strong></p>\r\n<p style=\"text-align: center;\">To alleviate this issue, consider sciatic nerve mobilization exercises, like the Slump. This exercise is straightforward but should only be performed by individuals without neural conditions like sciatica. Always advise clients to consult a professional if they have any concerns.</p>\r\n<p style=\"text-align: center;\"><strong>Here\'s how to perform the Slump exercise:</strong></p>\r\n\r\n<ul>\r\n 	<li style=\"text-align: center;\">Have your client sit with their thighs supported and hips at 90 degrees.</li>\r\n 	<li style=\"text-align: center;\">Ask them to gently lower their chin and slowly round their back, relaxing their hands behind them.</li>\r\n 	<li style=\"text-align: center;\">Have them slowly extend one knee until they feel the onset of tension, then stop.</li>\r\n 	<li style=\"text-align: center;\">They should then slowly lower and lift the leg to add and reduce tension.</li>\r\n 	<li style=\"text-align: center;\">Emphasise that this is not a stretch; they should only find the start of tension.</li>\r\n</ul>\r\n<p style=\"text-align: center;\"><strong>Recommended Routine:</strong></p>\r\n<p style=\"text-align: center;\">Perform 8 reps for 2 sets before training.</p>\r\n<p style=\"text-align: center;\">Begin with no more than twice daily to gauge the appropriate dosage and response.</p>\r\n&nbsp;\r\n\r\nhttps://youtu.be/Vr4ItLOv0zk\r\n<p style=\"text-align: center;\"><span data-contrast=\"auto\">By incorporating the Slump exercise, you may notice improved range of motion in posterior chain muscles, reduced calf tension, increased dorsiflexion, and significantly better squat performance. This approach addresses the root cause of tightness, leading to more effective and lasting results.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p style=\"text-align: center;\"><b><span data-contrast=\"auto\">Ready to Enhance Your Clients\' Mobility?</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p style=\"text-align: center;\"><span data-contrast=\"auto\">If you’re ready to expand your skillset with the Biomechanics Coach System, <a href=\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\">click here</a>.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p style=\"text-align: center;\"><span data-contrast=\"auto\">Empower your clients to move better and more freely by tackling the underlying issues behind muscle tightness. Cool, huh?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>','When Stretching a Tight Muscle Doesn’t Work – A Look at the Gastrocnemius & Soleus','','inherit','closed','closed','','19515-revision-v1','','','2024-09-04 15:01:57','2024-09-04 15:01:57','',19515,'https://biomechanicseducation.com/?p=39537',0,'revision','',0),(39538,3,'2024-09-04 15:11:24','2024-09-04 15:11:24','<strong>Understanding the Difference Between Extrinsic and Intrinsic Biomechanics</strong>\r\n\r\nBiomechanics, the science of movement, is a broad and intricate field. Today, we\'ll explore two critical areas: extrinsic biomechanics and intrinsic biomechanics. We\'ll clarify how they differ, how they influence each other, and why understanding both is essential.\r\n\r\n&nbsp;\r\n\r\n<b>What is extrinsic biomechanics?</b>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-34061 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/10/sven-mieke-optBC2FxCfc-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></span>\r\n\r\nExtrinsic biomechanics focuses on observable movements. It\'s about what we see when someone performs an action, such as a client’s knee buckling inward (knee valgus) during a squat. Basic training might prompt us to correct this by telling the client to \"push their knees out.\" While this can sometimes work, persistent issues may require a deeper analysis through intrinsic biomechanics.\r\n\r\n&nbsp;\r\n\r\n<strong>What is Intrinsic Biomechanics?</strong>\r\n\r\nIntrinsic biomechanics delves into the anatomical substructures—myofascial, skeletal, and neural—behind movements. It seeks to understand why a movement occurs in a particular way. Using the knee valgus example, a practitioner trained in intrinsic biomechanics would evaluate the pelvis, spine, shoulders, knees, and feet. This comprehensive assessment helps identify the root causes of movement issues, which can involve multiple dysfunctions and compensations within the body\'s kinetic chains.\r\n\r\nOnce the problematic body part and substructure are identified, the practitioner can prescribe targeted interventions. They can also re-test immediately after the intervention, providing objective evidence of the cause of the client’s movement limitations.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-33792 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1520541617-300x230.jpg\" alt=\"\" width=\"300\" height=\"230\" /></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Similarities and Differences</strong>\r\n\r\n<em><strong>Similarities:</strong></em>\r\n<ul>\r\n 	<li>Both relate to movement and biomechanics.</li>\r\n 	<li>Both are observed from outside.</li>\r\n 	<li>Both are crucial for understanding movement.</li>\r\n 	<li>Both are key for practitioners involved in movement analysis.</li>\r\n</ul>\r\n<em><strong>Differences:</strong></em>\r\n<ul>\r\n 	<li>Extrinsic Biomechanics: This is the more common approach, focusing on what we see during movements. It often involves equipment like gait analysis or motion monitoring tools. It answers the \"what\" of movement analysis.</li>\r\n 	<li>Intrinsic Biomechanics: This approach is newer and less commonly understood. It stems from over 20 years of research on 4,500 subjects. It requires specialized training and a deep understanding of anatomy. Practitioners assess various body types to create customized programs, answering the \"why\" behind movements.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<b>Importance in understanding the difference - case study example</b>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\" wp-image-34059 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/10/Screenshot-2022-10-19-at-15.15.36-300x167.png\" alt=\"\" width=\"365\" height=\"203\" /></span>\r\n\r\nConsider a runner showing extrinsic over-pronation. Video gait analysis might suggest using orthotics or specific shoes to correct this. However, intrinsic biomechanics can reveal underlying causes such as:\r\n<ul>\r\n 	<li>Functional leg length discrepancy</li>\r\n 	<li>Dysfunctional pelvis</li>\r\n 	<li>Tight lateral spine flexors</li>\r\n 	<li>Overactive shoulder protractors</li>\r\n 	<li>Ligament dominance</li>\r\n 	<li>Tight calves</li>\r\n 	<li>Tight sciatic nerve</li>\r\n 	<li>Loose subtalar or midtarsal joints</li>\r\n 	<li>Low arch height</li>\r\n</ul>\r\nWithout assessing intrinsic biomechanics, these potential causes might be missed, leading to incomplete or ineffective interventions.\r\n\r\n&nbsp;\r\n\r\n<strong>Conclusion</strong>\r\n\r\nExtrinsic biomechanics can be misinterpreted without an understanding of intrinsic biomechanics. Biomechanics Coaches, specialising in intrinsic biomechanics, possess a deeper knowledge of the musculoskeletal system. They can assess clients more thoroughly and design tailored programmes to enhance movement efficiency.\r\n\r\n<strong>Interested in a Career in Biomechanics?</strong>\r\n\r\nIf you\'re passionate about biomechanics, consider becoming a Biomechanics Coach! Contact us at 0203 841 6151 to discuss a career in intrinsic biomechanics and learn how you can make a difference in the science of movement.\r\n\r\n<img class=\"size-medium wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />','What is the difference between extrinsic biomechanics & intrinsic biomechanics?','','inherit','closed','closed','','34054-autosave-v1','','','2024-09-04 15:11:24','2024-09-04 15:11:24','',34054,'https://biomechanicseducation.com/?p=39538',0,'revision','',0),(39539,3,'2024-09-04 15:11:18','2024-09-04 15:11:18','<strong>Understanding the Difference Between Extrinsic and Intrinsic Biomechanics</strong>\r\n\r\nBiomechanics, the science of movement, is a broad and intricate field. Today, we\'ll explore two critical areas: extrinsic biomechanics and intrinsic biomechanics. We\'ll clarify how they differ, how they influence each other, and why understanding both is essential.\r\n\r\n&nbsp;\r\n\r\n<b>What is extrinsic biomechanics?</b>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-34061 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/10/sven-mieke-optBC2FxCfc-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></span>\r\n\r\nExtrinsic biomechanics focuses on observable movements. It\'s about what we see when someone performs an action, such as a client’s knee buckling inward (knee valgus) during a squat. Basic training might prompt us to correct this by telling the client to \"push their knees out.\" While this can sometimes work, persistent issues may require a deeper analysis through intrinsic biomechanics.\r\n\r\n&nbsp;\r\n\r\n<strong>What is Intrinsic Biomechanics?</strong>\r\n\r\nIntrinsic biomechanics delves into the anatomical substructures—myofascial, skeletal, and neural—behind movements. It seeks to understand why a movement occurs in a particular way. Using the knee valgus example, a practitioner trained in intrinsic biomechanics would evaluate the pelvis, spine, shoulders, knees, and feet. This comprehensive assessment helps identify the root causes of movement issues, which can involve multiple dysfunctions and compensations within the body\'s kinetic chains.\r\n\r\nOnce the problematic body part and substructure are identified, the practitioner can prescribe targeted interventions. They can also re-test immediately after the intervention, providing objective evidence of the cause of the client’s movement limitations.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-33792 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1520541617-300x230.jpg\" alt=\"\" width=\"300\" height=\"230\" /></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Similarities and Differences</strong>\r\n\r\n<em><strong>Similarities:</strong></em>\r\n<ul>\r\n 	<li>Both relate to movement and biomechanics.</li>\r\n 	<li>Both are observed from outside.</li>\r\n 	<li>Both are crucial for understanding movement.</li>\r\n 	<li>Both are key for practitioners involved in movement analysis.</li>\r\n</ul>\r\n<em><strong>Differences:</strong></em>\r\n<ul>\r\n 	<li>Extrinsic Biomechanics: This is the more common approach, focusing on what we see during movements. It often involves equipment like gait analysis or motion monitoring tools. It answers the \"what\" of movement analysis.</li>\r\n 	<li>Intrinsic Biomechanics: This approach is newer and less commonly understood. It stems from over 20 years of research on 4,500 subjects. It requires specialized training and a deep understanding of anatomy. Practitioners assess various body types to create customized programs, answering the \"why\" behind movements.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<b>Importance in understanding the difference - case study example</b>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\" wp-image-34059 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/10/Screenshot-2022-10-19-at-15.15.36-300x167.png\" alt=\"\" width=\"365\" height=\"203\" /></span>\r\n\r\nConsider a runner showing extrinsic over-pronation. Video gait analysis might suggest using orthotics or specific shoes to correct this. However, intrinsic biomechanics can reveal underlying causes such as:\r\n<ul>\r\n 	<li>Functional leg length discrepancy</li>\r\n 	<li>Dysfunctional pelvis</li>\r\n 	<li>Tight lateral spine flexors</li>\r\n 	<li>Overactive shoulder protractors</li>\r\n 	<li>Ligament dominance</li>\r\n 	<li>Tight calves</li>\r\n 	<li>Tight sciatic nerve</li>\r\n 	<li>Loose subtalar or midtarsal joints</li>\r\n 	<li>Low arch height</li>\r\n</ul>\r\nWithout assessing intrinsic biomechanics, these potential causes might be missed, leading to incomplete or ineffective interventions.\r\n\r\n&nbsp;\r\n\r\n<strong>Conclusion</strong>\r\n\r\nExtrinsic biomechanics can be misinterpreted without an understanding of intrinsic biomechanics. Biomechanics Coaches, specialising in intrinsic biomechanics, possess a deeper knowledge of the musculoskeletal system. They can assess clients more thoroughly and design tailored programmes to enhance movement efficiency.\r\n\r\n<strong>Interested in a Career in Biomechanics?</strong>\r\n\r\nIf you\'re passionate about biomechanics, consider becoming a Biomechanics Coach! Contact us at 0203 841 6151 to discuss a career in intrinsic biomechanics and learn how you can make a difference in the science of movement.\r\n\r\n<img class=\"size-medium wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />','What is the difference between extrinsic biomechanics & intrinsic biomechanics?','','inherit','closed','closed','','34054-revision-v1','','','2024-09-04 15:11:18','2024-09-04 15:11:18','',34054,'https://biomechanicseducation.com/?p=39539',0,'revision','',0),(39540,3,'2024-09-04 15:11:54','2024-09-04 15:11:54','<strong>Understanding the Difference Between Extrinsic and Intrinsic Biomechanics</strong>\r\n\r\nBiomechanics, the science of movement, is a broad and intricate field. Today, we\'ll explore two critical areas: extrinsic biomechanics and intrinsic biomechanics. We\'ll clarify how they differ, how they influence each other, and why understanding both is essential.\r\n\r\n&nbsp;\r\n\r\n<b>What is extrinsic biomechanics?</b>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-34061 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/10/sven-mieke-optBC2FxCfc-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></span>\r\n\r\nExtrinsic biomechanics focuses on observable movements. It\'s about what we see when someone performs an action, such as a client’s knee buckling inward (knee valgus) during a squat. Basic training might prompt us to correct this by telling the client to \"push their knees out.\" While this can sometimes work, persistent issues may require a deeper analysis through intrinsic biomechanics.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>What is Intrinsic Biomechanics?</strong>\r\n\r\nIntrinsic biomechanics delves into the anatomical substructures—myofascial, skeletal, and neural—behind movements. It seeks to understand why a movement occurs in a particular way. Using the knee valgus example, a practitioner trained in intrinsic biomechanics would evaluate the pelvis, spine, shoulders, knees, and feet. This comprehensive assessment helps identify the root causes of movement issues, which can involve multiple dysfunctions and compensations within the body\'s kinetic chains.\r\n\r\nOnce the problematic body part and substructure are identified, the practitioner can prescribe targeted interventions. They can also re-test immediately after the intervention, providing objective evidence of the cause of the client’s movement limitations.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-33792 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1520541617-300x230.jpg\" alt=\"\" width=\"300\" height=\"230\" /></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Similarities and Differences</strong>\r\n\r\n<em><strong>Similarities:</strong></em>\r\n<ul>\r\n 	<li>Both relate to movement and biomechanics.</li>\r\n 	<li>Both are observed from outside.</li>\r\n 	<li>Both are crucial for understanding movement.</li>\r\n 	<li>Both are key for practitioners involved in movement analysis.</li>\r\n</ul>\r\n<em><strong>Differences:</strong></em>\r\n<ul>\r\n 	<li>Extrinsic Biomechanics: This is the more common approach, focusing on what we see during movements. It often involves equipment like gait analysis or motion monitoring tools. It answers the \"what\" of movement analysis.</li>\r\n 	<li>Intrinsic Biomechanics: This approach is newer and less commonly understood. It stems from over 20 years of research on 4,500 subjects. It requires specialized training and a deep understanding of anatomy. Practitioners assess various body types to create customized programs, answering the \"why\" behind movements.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<b>Importance in understanding the difference - case study example</b>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\" wp-image-34059 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/10/Screenshot-2022-10-19-at-15.15.36-300x167.png\" alt=\"\" width=\"365\" height=\"203\" /></span>\r\n\r\nConsider a runner showing extrinsic over-pronation. Video gait analysis might suggest using orthotics or specific shoes to correct this. However, intrinsic biomechanics can reveal underlying causes such as:\r\n<ul>\r\n 	<li>Functional leg length discrepancy</li>\r\n 	<li>Dysfunctional pelvis</li>\r\n 	<li>Tight lateral spine flexors</li>\r\n 	<li>Overactive shoulder protractors</li>\r\n 	<li>Ligament dominance</li>\r\n 	<li>Tight calves</li>\r\n 	<li>Tight sciatic nerve</li>\r\n 	<li>Loose subtalar or midtarsal joints</li>\r\n 	<li>Low arch height</li>\r\n</ul>\r\nWithout assessing intrinsic biomechanics, these potential causes might be missed, leading to incomplete or ineffective interventions.\r\n\r\n&nbsp;\r\n\r\n<strong>Conclusion</strong>\r\n\r\nExtrinsic biomechanics can be misinterpreted without an understanding of intrinsic biomechanics. Biomechanics Coaches, specialising in intrinsic biomechanics, possess a deeper knowledge of the musculoskeletal system. They can assess clients more thoroughly and design tailored programmes to enhance movement efficiency.\r\n\r\n<strong>Interested in a Career in Biomechanics?</strong>\r\n\r\nIf you\'re passionate about biomechanics, consider becoming a Biomechanics Coach! Contact us at 0203 841 6151 to discuss a career in intrinsic biomechanics and learn how you can make a difference in the science of movement.\r\n\r\n<img class=\"size-medium wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />','What is the difference between extrinsic biomechanics & intrinsic biomechanics?','','inherit','closed','closed','','34054-revision-v1','','','2024-09-04 15:11:54','2024-09-04 15:11:54','',34054,'https://biomechanicseducation.com/?p=39540',0,'revision','',0),(39541,3,'2024-09-04 15:21:20','2024-09-04 15:21:20','<!-- wp:heading -->\n<h2><strong>What Exactly Is Periodisation Training?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><span data-contrast=\"auto\">Periodisation is the systematic planning of athletic or physical training. It involves cycling various aspects of a training program over a specific period to optimize performance and reduce the risk of injury. Conditioning programs often divide training into off-season, preseason, in-season, and postseason phases.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">Tudor Bompa, a pioneer in periodisation strategies, explains:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">\"Periodisation of strength is structured into phases to maximize sport-specific strength. These phases include muscle endurance, hypertrophy, maximum strength, anatomical adaptation, and reactive training, incorporating power and explosiveness.\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">In our academy, we approach \'periodisation\' differently. Here, we’ll explore various models and their applications.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>The Standard Models For Periodisation Training</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><span class=\"TextRun SCXW15764234 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SpellingErrorV2Themed SCXW15764234 BCX8\">Periodisation</span><span class=\"NormalTextRun SCXW15764234 BCX8\"> training is primarily associated with elite sports and training for strength, energy systems, and skills. It provides a comprehensive plan for an athlete\'s training year, breaking it into manageable cycles.</span></span><span class=\"EOP SCXW15764234 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>The 3 Cycles Of Periodisation Training </strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>MACROCYCLES</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><span class=\"TextRun SCXW106858704 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW106858704 BCX8\">The longest cycle, typically spanning an entire year. It outlines the overall training plan, including seasons and competitions.</span></span><span class=\"EOP SCXW106858704 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>MESOCYCLES</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><span class=\"TextRun SCXW224646188 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW224646188 BCX8\">These are intermediate cycles, usually lasting 3-4 weeks, focusing on specific training phases like strength or endurance. Mesocycles align with competitions and skills development, incorporating tapering and recovery.</span></span><span class=\"EOP SCXW224646188 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><strong>MICROCYCLES</strong></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><span class=\"TextRun SCXW223884621 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW223884621 BCX8\">The shortest cycle, often a </span><span class=\"NormalTextRun SCXW223884621 BCX8\">weeklong</span><span class=\"NormalTextRun SCXW223884621 BCX8\">, involves detailed planning and measurement. </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW223884621 BCX8\">Microcycles</span><span class=\"NormalTextRun SCXW223884621 BCX8\"> include rest days and specific training requirements, with 3-4 </span><span class=\"NormalTextRun SCXW223884621 BCX8\">microcycles</span><span class=\"NormalTextRun SCXW223884621 BCX8\"> forming a mesocycle.</span></span><span class=\"EOP SCXW223884621 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Why The Increase In Demand/Popularity?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><span data-contrast=\"auto\">Level 3 PT education doesn\'t require an understanding of periodisation, traditionally the realm of strength and conditioning (S&amp;C) coaches. However, more clients are entering competitive amateur sports, making annual training plans more appealing and beneficial.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">This planning method enhances personal training programs, broadening the concept of adaptation with specificity and complexity. It adds variety and likely success with fewer injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">Understanding each decision in periodisation is intricate, requiring more than just exercise selection.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<h3>Variations of Periodisation Models </h3>\n<p><span data-contrast=\"auto\">Personal trainers can use different periodisation models to tailor training to clients\' needs.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Strength &amp; Conditioning Education; Force Velocity Curve</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><span class=\"TextRun SCXW127695535 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW127695535 BCX8\">This model starts with strength development, progresses to strength with speed, and finally to power. As Brendan Chaplin notes, power </span><span class=\"NormalTextRun SCXW127695535 BCX8\">can\'t</span><span class=\"NormalTextRun SCXW127695535 BCX8\"> be developed without first building strength. This model suits Olympic lifters and rugby players.</span></span><span class=\"EOP SCXW127695535 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p>Strength &amp; Conditioning Education give the example of the force velocity curve example:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/jx5IMOX39RqSg5mr2EtrHEKu7p4xnkLh4xcnNRN_iTxRZ9nlh97flQ6tCo3_8syidmpQu6N7HjBGh-d8sBrMrt6hIvAlI7eQitMID8ojuLJ_NELUEIT_UrWRUM7uiLdysH2xbTFC\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>This is where the periodisation model first considers development of strength, then strength with speed, followed by power and so on. You cannot produce power without developing strength first so this model of planning is great for olympic lifters or rugby players for example.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Chuck Wolf : Periodised Programme Hybrid Model</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Chuck represents his model in another way:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/7BSuu6WtrUyIJdxUw9jCqhIkJ6EFMfH_ivPmk0BmIFpXz7KBFkptzCMfDWCn6r2ZGjqGLYdmlQPXMZx9Q0BM9dN7yXj3DuNbiw93o-2Wg22H_8FPnbcRzRfyuq77XMf1bHwq5NPs\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>He has layering of skills development in a periodised pyramid plan of laws to follow:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Law One: Develop joint flexibility.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Law Two: Develop tendon strength.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Law Three: Develop core strength.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Law Four: Develop the stabilisers.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Law Five: Train movements, not individual muscles.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This also make absolute sense and if you read his article he describes in more detail WHY each law exists.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Biomechanics Education Periodisation Pyramid Model </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><span class=\"TextRun SCXW23591604 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW23591604 BCX8\">This pyramid model begins with \'intrinsic biomechanics,\' developing good muscle function, mobile nerves, and joints before stabilizing the integrated system. It progresses to developing basic agonist/antagonist joint strength ratios and then to specific activity or sport training. This model benefits both elite athletes and average clients, such as desk workers or those aiming for fat loss.</span></span><span class=\"EOP SCXW23591604 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://lh5.googleusercontent.com/zckayMOEf2i91zbFSjTGVbtgugArh-ROo-KHyjuqPbc2ncfmc1YdS0loNz-7bHreJ01Fmu_gAQ8n3ZAyCM7fw43l6phKx65kL5X50K5EGoa7EGbKz0m7HS1sywsf50mOv5rlH_-N\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Do You Use Periodisation?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><span class=\"TextRun SCXW45592290 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW45592290 BCX8\">While these </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW45592290 BCX8\">periodisation</span><span class=\"NormalTextRun SCXW45592290 BCX8\"> models offer great frameworks, the most crucial factor in planning a </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW45592290 BCX8\">periodisation</span><span class=\"NormalTextRun SCXW45592290 BCX8\"> program is the individual client. Always prioritize the client’s needs and preferences. For many, adherence to the program is the biggest challenge, so simplicity might be key, although some clients thrive on more complex challenges.</span></span><span class=\"EOP SCXW45592290 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Tell Me Your Thoughts!</strong></p>\n<p><span class=\"TextRun SCXW78386671 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW78386671 BCX8\">Would you like to reduce your clients\' risk of injury and help them achieve better results? Click </span></span><a class=\"Hyperlink SCXW78386671 BCX8\" href=\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\" target=\"_blank\" rel=\"noreferrer noopener\"><span class=\"TextRun Underlined SCXW78386671 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW78386671 BCX8\" data-ccp-charstyle=\"Hyperlink\">here</span></span></a><span class=\"TextRun SCXW78386671 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW78386671 BCX8\"> to learn more about our Biomechanics Coach Diploma, which includes a Level 4 Low Back Pain Qualification, and enhance your personal training skills.</span></span><span class=\"EOP SCXW78386671 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>rachel@biomechanicseducation.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\n</div>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->','Personal Trainers & Periodisation: What Is It and Why Should We Be Using it?','','inherit','closed','closed','','11407-autosave-v1','','','2024-09-04 15:21:20','2024-09-04 15:21:20','',11407,'https://biomechanicseducation.com/?p=39541',0,'revision','',0),(39542,3,'2024-09-04 15:22:22','2024-09-04 15:22:22','<!-- wp:heading -->\r\n<h2><strong>What Exactly Is Periodisation Training?</strong></h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span data-contrast=\"auto\">Periodisation is the systematic planning of athletic or physical training. It involves cycling various aspects of a training program over a specific period to optimize performance and reduce the risk of injury. Conditioning programs often divide training into off-season, preseason, in-season, and postseason phases.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Tudor Bompa, a pioneer in periodisation strategies, explains:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">\"Periodisation of strength is structured into phases to maximize sport-specific strength. These phases include muscle endurance, hypertrophy, maximum strength, anatomical adaptation, and reactive training, incorporating power and explosiveness.\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">In our academy, we approach \'periodisation\' differently. Here, we’ll explore various models and their applications.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} -->\r\n<h3><strong>The Standard Models For Periodisation Training</strong></h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW15764234 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SpellingErrorV2Themed SCXW15764234 BCX8\">Periodisation</span><span class=\"NormalTextRun SCXW15764234 BCX8\"> training is primarily associated with elite sports and training for strength, energy systems, and skills. It provides a comprehensive plan for an athlete\'s training year, breaking it into manageable cycles.</span></span><span class=\"EOP SCXW15764234 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":4} -->\r\n<h4><strong>The 3 Cycles Of Periodisation Training </strong></h4>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:heading {\"level\":4} -->\r\n<h4><strong>MACROCYCLES</strong></h4>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW106858704 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW106858704 BCX8\">The longest cycle, typically spanning an entire year. It outlines the overall training plan, including seasons and competitions.</span></span><span class=\"EOP SCXW106858704 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":4} -->\r\n<h4><strong>MESOCYCLES</strong></h4>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW224646188 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW224646188 BCX8\">These are intermediate cycles, usually lasting 3-4 weeks, focusing on specific training phases like strength or endurance. Mesocycles align with competitions and skills development, incorporating tapering and recovery.</span></span><span class=\"EOP SCXW224646188 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":4} -->\r\n<h4><strong>MICROCYCLES</strong></h4>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW223884621 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW223884621 BCX8\">The shortest cycle, often a </span><span class=\"NormalTextRun SCXW223884621 BCX8\">weeklong</span><span class=\"NormalTextRun SCXW223884621 BCX8\">, involves detailed planning and measurement. </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW223884621 BCX8\">Microcycles</span><span class=\"NormalTextRun SCXW223884621 BCX8\"> include rest days and specific training requirements, with 3-4 </span><span class=\"NormalTextRun SCXW223884621 BCX8\">microcycles</span><span class=\"NormalTextRun SCXW223884621 BCX8\"> forming a mesocycle.</span></span><span class=\"EOP SCXW223884621 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} -->\r\n<h3><strong>Why The Increase In Demand/Popularity?</strong></h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span data-contrast=\"auto\">Level 3 PT education doesn\'t require an understanding of periodisation, traditionally the realm of strength and conditioning (S&amp;C) coaches. However, more clients are entering competitive amateur sports, making annual training plans more appealing and beneficial.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">This planning method enhances personal training programs, broadening the concept of adaptation with specificity and complexity. It adds variety and likely success with fewer injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Understanding each decision in periodisation is intricate, requiring more than just exercise selection.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<h3>Variations of Periodisation Models </h3>\r\n<p><span data-contrast=\"auto\">Personal trainers can use different periodisation models to tailor training to clients\' needs.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} -->\r\n<h3><strong>Strength &amp; Conditioning Education; Force Velocity Curve</strong></h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW127695535 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW127695535 BCX8\">This model starts with strength development, progresses to strength with speed, and finally to power. As Brendan Chaplin notes, power </span><span class=\"NormalTextRun SCXW127695535 BCX8\">can\'t</span><span class=\"NormalTextRun SCXW127695535 BCX8\"> be developed without first building strength. This model suits Olympic lifters and rugby players.</span></span><span class=\"EOP SCXW127695535 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p>Strength &amp; Conditioning Education gives the example of the force velocity curve example:</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image -->\r\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/jx5IMOX39RqSg5mr2EtrHEKu7p4xnkLh4xcnNRN_iTxRZ9nlh97flQ6tCo3_8syidmpQu6N7HjBGh-d8sBrMrt6hIvAlI7eQitMID8ojuLJ_NELUEIT_UrWRUM7uiLdysH2xbTFC\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} -->\r\n<h3><strong>Chuck Wolf : Periodised Programme Hybrid Model</strong></h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span data-contrast=\"auto\">Chuck’s model layers skill development in a pyramid plan:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Develop joint flexibility.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Develop tendon strength.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Develop core strength.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"4\" data-aria-level=\"1\"><span data-contrast=\"auto\">Develop stabilizers.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"5\" data-aria-level=\"1\"><span data-contrast=\"auto\">Train movements, not individual muscles.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<p><span data-contrast=\"auto\">Each law supports the others, creating a comprehensive training programme.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image -->\r\n<figure class=\"wp-block-image\"><img src=\"https://lh3.googleusercontent.com/7BSuu6WtrUyIJdxUw9jCqhIkJ6EFMfH_ivPmk0BmIFpXz7KBFkptzCMfDWCn6r2ZGjqGLYdmlQPXMZx9Q0BM9dN7yXj3DuNbiw93o-2Wg22H_8FPnbcRzRfyuq77XMf1bHwq5NPs\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} -->\r\n<h3><strong>Biomechanics Education Periodisation Pyramid Model </strong></h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW23591604 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW23591604 BCX8\">This pyramid model begins with \'intrinsic biomechanics,\' developing good muscle function, mobile nerves, and joints before stabilizing the integrated system. It progresses to developing basic agonist/antagonist joint strength ratios and then to specific activity or sport training. This model benefits both elite athletes and average clients, such as desk workers or those aiming for fat loss.</span></span><span class=\"EOP SCXW23591604 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image -->\r\n<figure class=\"wp-block-image\"><img src=\"https://lh5.googleusercontent.com/zckayMOEf2i91zbFSjTGVbtgugArh-ROo-KHyjuqPbc2ncfmc1YdS0loNz-7bHreJ01Fmu_gAQ8n3ZAyCM7fw43l6phKx65kL5X50K5EGoa7EGbKz0m7HS1sywsf50mOv5rlH_-N\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} -->\r\n<h3><strong>Do You Use Periodisation?</strong></h3>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><span class=\"TextRun SCXW45592290 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW45592290 BCX8\">While these </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW45592290 BCX8\">periodisation</span><span class=\"NormalTextRun SCXW45592290 BCX8\"> models offer great frameworks, the most crucial factor in planning a </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW45592290 BCX8\">periodisation</span><span class=\"NormalTextRun SCXW45592290 BCX8\"> program is the individual client. Always prioritize the client’s needs and preferences. For many, adherence to the program is the biggest challenge, so simplicity might be key, although some clients thrive on more complex challenges.</span></span><span class=\"EOP SCXW45592290 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong>Tell Me Your Thoughts!</strong></p>\r\n<p><span class=\"TextRun SCXW78386671 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW78386671 BCX8\">Would you like to reduce your clients\' risk of injury and help them achieve better results? Click </span></span><a class=\"Hyperlink SCXW78386671 BCX8\" href=\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\" target=\"_blank\" rel=\"noreferrer noopener\"><span class=\"TextRun Underlined SCXW78386671 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW78386671 BCX8\" data-ccp-charstyle=\"Hyperlink\">here</span></span></a><span class=\"TextRun SCXW78386671 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW78386671 BCX8\"> to learn more about our Biomechanics Coach Diploma, which includes a Level 4 Low Back Pain Qualification, and enhance your personal training skills.</span></span><span class=\"EOP SCXW78386671 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury, &amp; Help Them Get Even Better Results?</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Contact us here: rachel@biomechanicseducation.com</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></figure>\r\n</div>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>&nbsp;</p>\r\n<!-- /wp:paragraph -->','Personal Trainers & Periodisation: What Is It and Why Should We Be Using it?','','inherit','closed','closed','','11407-revision-v1','','','2024-09-04 15:22:22','2024-09-04 15:22:22','',11407,'https://biomechanicseducation.com/?p=39542',0,'revision','',0),(39544,3,'2024-09-04 15:28:37','2024-09-04 15:28:37','The Importance of Frontal Plane Training\r\n\r\nFrontal plane training is critically underrated! It plays a vital role in enhancing pelvic biomechanics, improving stability, and reducing the risk of groin strains and hernias. Despite its importance, many trainers overlook its benefits.\r\n\r\nOptimal Strength Ratios\r\n\r\nGeorge Davies, a noted expert in joint ratios, suggests that our strength in hip adduction and abduction should be approximately equal to 100% of our body weight. This 1:1 strength ratio is essential for balanced and functional movement.\r\n\r\nEffective Exercises for Hip Adduction/Abduction\r\n\r\n1. Seated Flexed Hip Abduction/Adduction Machine\r\n\r\nIdeal for beginners, this machine helps build foundational frontal plane strength. Aim for balanced strength in both actions by using the same reps, sets, and weights for adduction and abduction.\r\n\r\n2. Seated Hip Abduction/Adduction Machine with Angle Variations\r\n\r\nBy altering your hip angle—leaning forward or backward—you engage different muscle fibers and enhance hip stability beyond the typical 90-degree seated position.\r\n\r\n3. Seated Hip Abduction/Adduction Machine in a Kneeling Position\r\n\r\nKneeling on the seat and facing the backrest allows for internal and external hip rotation exercises. This variation changes hip angles and incorporates rotational movements, promoting all-around pelvic strength.\r\n\r\n4. Standing Hip Abduction/Adduction with Bands\r\n\r\nUsing resistance bands in a standing position advances the exercise by challenging neuromuscular control and enhancing pelvic and knee stability. Start with the band around the knees, then progress to the ankles, and eventually perform the exercise without support.\r\n\r\n5. Side-Lying Body Weight Lift (Adductors/Internal Rotators)\r\n\r\nThis exercise offers variability and additional training benefits. Lying on your side near a bench, use your adductors to lift your body off the floor. Increase difficulty by lifting the bottom leg or adding rotational movements.\r\n\r\nWhy Isolation Training Matters\r\n\r\nWhile functional training is essential, isolation exercises are crucial for ensuring each muscle group functions properly. Functional strength depends on the proper contribution of each muscle, and isolation training can help prevent injuries.\r\n\r\nGet Involved and Learn More\r\n\r\nThese exercises are just a starting point for training the pelvis through the frontal plane. Explore and share your own ideas to further enhance your training methods.\r\n\r\nFor more insights, check out our blog by Martin Haines, a chartered physiotherapist and biomechanics coach.\r\n\r\nReferences:\r\n\r\nDINTIMAN et al. (1998) Sports Speed.\r\n\r\nPAGE et al. (2010) Assessment and treatment of muscle imbalance: The Janda approach\r\n\r\nPAGE, P. (2011) Shoulder muscle imbalance and subacromial impingement syndrome in overhead athletes. International journal of sports physical therapy\r\n\r\nZEMKOVA, E. and HAMAR, D. (2010) The effect of 6-week combined agility-balance training on neuromuscular performance in basketball players. The Journal of sports medicine and physical fitness\r\n\r\nMACKENZIE, B. (2000) Muscle Strength and Balance Checks [WWW] Available from: https://www.brianmac.co.uk/sambc.htm [Accessed 1/4/2019]\r\n\r\nhttps://www.ncbi.nlm.nih.gov/pmc/articles/PMC4637913/\r\n\r\n&nbsp;\r\n\r\nWould you like to enhance your client’s mobility to achieve optimal results? Discover how our Biomechanics Coach Diploma can make you a better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!\r\n\r\nClick <a href=\"https://biomechanicseducation.com/courses/\">here</a> to learn more about our Diploma in Biomechanics Coaching.','Hip Adduction/Abduction (Plus Internal/External Rotation) – A Guide for Personal Trainers','','publish','closed','closed','','hip-adduction-abduction-plus-internal-external-rotation-a-guide-for-personal-trainers','','','2025-01-20 16:02:10','2025-01-20 16:02:10','',0,'https://biomechanicseducation.com/?p=39544',0,'post','',0),(39545,3,'2024-09-06 11:14:34','2024-09-06 11:14:34','<strong>Article Synopsis</strong>\n\nThis article examines how the needs of personal training clients have evolved in recent years, and subsequently, how we as trainers must adapt as a result.  It also dissects the existing functional training paradigm in terms of its competency in serving these ever-changing client expectations.\n\n<strong>Article  Objectives</strong>\n\n1    Understand the strengths and weaknesses of functional training.\n\n2    Explore new ways of preparing your clients for exercise to mitigate the risk of injury.\n\n3    See how an additional skill set will increase both client retention and sales.\n\n<strong>The Evolution of Personal Training &amp; The Health Continuum</strong>\n\nThe role of the personal trainer has evolved significantly in recent years to accommodate growing client needs and demands.\n\nIn the past, clients consulted personal trainers primarily with weight loss or general conditioning goals. These same consumers now expect personal trainers to have a broader scope of practice, including exercise prescription to mitigate back stiffness or soreness, along with a whole host of other musculo-skeletal issues.\n\nMoreover, the role of a personal trainer will quite likely change as a result of a financial downturn. During such challenging economic times, people are even less inclined to spend money on specialised healthcare professionals for what they perceive to be minor issues. This additional expense and inconvenience is often replaced by the preference to visit their personal trainer, whom they already know and trust. It is therefore critical to identify our client’s position on what we call the health continuum – a scale that spans from illness, to wellness, to elite performance. You will find each one of your clients somewhere on this scale, and before any trainer is serious about exercise programme design, the exact location must be determined. Most exercises are suitable for most people, but they can easily be prescribed at the wrong time. An example of this is core stability training: it can help some people but hurt others (McGill 2003). Similarly, biomechanical issues such as a rotated pelvis and leg length discrepancy, with associated muscle spasm in the hips, will likely be aggravated if an asymmetrical exercise such as a lunge was prescribed. Conversely, in the absence of any pelvic dysfunction, the risk of performing lunges would decrease.\n\nAs a result, we, as fitness professionals, must be cognizant of these parameters and guard against taking a “jack-of-all-trades” approach when engaging our clients. Knowing only enough to be dangerous can unfortunately be just that: dangerous! Therefore, as we scan the health and fitness education marketplace searching for new science, modality concepts and delivery methods, we must not only be conscious, but extremely sensitive to the changing demographic that forms the majority of our target audience. Being finely attuned to these consumer trends and needs may very well be the differentiating factor between our competition and us. So while we should not cross medical boundaries by becoming “pseudo-therapists”, we must accept the need for change and ultimately, professional growth.\n\n<strong>1. Functional Training Defined</strong>\n\nThe body is an integrated system, with each of its component parts linked together to provide coordinated movement in our daily lives. With its origins in rehabilitation, functional training helps us prepare for these tasks and engrains the correct movement patterns with which our brains are familiar rather than training isolated muscles.\n\nThere are many variations on the definition of functional training, including:\n\nI    An exercise continuum involving balance and proprioception, performed with the feet on the ground and without machine-assistance, such that strength is displayed in unstable conditions and body weight is managed in all movement planes (Boyle, 2003).\n\nI    Multi-joint, multi-planar, proprioceptively-enriched activity that involves deceleration (force reduction), acceleration (force production) and stabilisation; controlled amounts of instability; and management of gravity, ground reaction forces and momentum (Gambetta &amp; Gray, 1995; Gambetta, 1999).\n\nI    A spectrum of activities that condition the body consistent with its integrated movement and/or use (Santana, 2000).\n\nMany experts also believe that training tasks should be chosen according to their mechanical specificity and relationship to the activities of daily living (ADL). In other words, their basic mechanics – but not necessarily appearance – should correspond to one or more target activities (Santana, 2000; Baechle &amp; Earle, 2000; Siff, 2003; Zatsiorsky, 1995).\n\n<strong>2. The Functional Training Paradigm and its Flaws</strong>\n\nNeedless to say, common definitions and understanding of functional training are quite similar. And predictably, they conform to the same, existing paradigm.\n\nIn 1962, Kuhn defined <em>paradigm</em>s as “universally recognised scientific achievements that for a time provide model problems and solutions to a community of practitioners.” According to Burrell and Morgan (1979), a paradigm provides a conceptual framework for seeing and making sense of the social world. They also suggested that a paradigm “stands for the entire constellation of beliefs, values and techniques, and so on shared by the members of a community.”\n\nParadigms are shaped based on our prior observations and understandings of the world. However, they also contribute to consensual thought processes, which invariably lead to restrained innovation and progress among the community of practitioners. So even as we evaluate the current functional training paradigm, we instinctively look for ways to better deliver variations of it rather than forge forward and penetrate the confines under which we operate. This conformity is evident in most research, too.\n\nKuhn (1962) also recognised that a paradigm inherently gives rise to problems more frequently than it provides a framework for solving them. For solutions and innovation, one generally needs to depart from accepted norms and apply unconventional wisdom in order for system failings to be elucidated.\n\nIn the years that functional screening and training has existed in rehabilitation, many physical therapists found that, although helpful, large gap were apparent and client’s issues persisted. One key gap identified was the body’s ability to compensate for isolated biomechanical flaws, while maintaining acceptable positions during a functional screen.\n\nThis is well demonstrated with a traditional squat pattern. There are three main joints that perform this movement: the hips, the knees, and the ankles. Because the body is a master of compensation, it is entirely possible that your client could have a dysfunctional knee, yet still pass a functional screen due to the hip’s and ankle’s ability to compensate for it. In fact, it could be argued that abnormal functional movement patterns are merely a visible demonstration of the body’s amazing ability to compensate for its biomechanical flaws. In other words, we are very good at cheating - and the more athletic we are, the better we get.\n\n<strong>Biomechanics Defined</strong>\n\nThere are two types of biomechanics: extrinsic and <em>intrinsic</em> (Siff, 2003). Extrinsic is the study and measurement of movement patterns of a particular task.  This is widely recognised and is often on the syllabus of the university programmes in modules in the sports science courses.  This constitutes the existing paradigm and can be seen in many different types of functional screening programmes where the movement itself is the focus of assessment. An <em>Intrinsic</em> biomechanics emphasis, however, falls firmly outside of the current paradigm. It is a discipline in science that enables the analysis and assessment of an individual’s mechanical disposition and how that structure facilitates movement.  Traits can be genetically inherited or influenced by extrinsic factors such as sitting at a desk, driving, doing the wrong gym exercises or running in the wrong shoes.  <em>Intrinsic</em> biomechanics frequently affects extrinsic biomechanical performance.\n\n<strong>3. A new Paradigm and its Benefits</strong>\n\nGiven the intractable challenges we face when introducing completely new ideas and ways of thinking within a well-established paradigm, let us step outside of it for a moment and consider the following: Should we primarily focus on movement patterns and preparation for ADL tasks; or should we be more interested in the way each joint or system is actually intended to move and the best way to utilise or leverage that existing structure?  As we mentioned earlier, consider that each individual has unique, unconditioned (genetic), and conditioned (acquired), reflex codes that determine movement over the course of their life (Karel Lewitt).  Each person starts with unconditioned codes and during their life, for a variety of reasons, begins to acquire conditioned movement codes, more often than not to compensate for injury and biomechanical flaws. Compare this knowledge to the methods we currently employ under the precepts of accepted health, fitness and wellness care and a stark contrast is apparent: The current paradigm encourages us to accept that by patterning a movement ‘correctly’ we automatically ingrain the ability to perform the pattern instinctively, without taking into account the causes of the conditioned movement codes.  The new paradigm proposes to <em>first</em> identify and manage the conditioned movement codes, <em>before</em> teaching and prescribing relevant functional movements.\n\nWhile recognising the effectiveness of functional movement to prepare for function, it would seem that the logical, precursory step would be to add an <em>intrinsic</em> biomechanics component. This would illuminate unconditioned and conditioned movement codes and better prepare our client for the onset of functional movement training. By adding this practical foundation to our current training and delivery methodology we would mitigate detected biomechanical flaws. We would also remove the need for the body to intrinsically labor and compensate for flaws a functional screen would otherwise not detect.\n\nSimply put: isolate and integrate. This approach is already in use by “early adopters”, and as usual with cutting-edge science, in time, the “followers” will follow, ultimately resulting in a new and improved paradigm.\n\n<strong>    1    Conclusions</strong>\n\nThe movements we are required to perform nowadays are quite different from those performed by our ancient ancestors. The rigorous and varied movements essential for the survival of our hunter/gatherer cousins have transformed within a hundred years. Activity these days is often limited to small static movements such as typing, steering and using TV remote controls. While some people do exercise, the vast majority does not. So if functional movement and training is defined by its ability to prepare people for ADL, why are we not considering these activities when prescribing exercise in our health, fitness and wellness facilities? One might raise an eyebrow in response to this logic, but actually if we are not following this logic we are simply not adhering to the definition of function (Boyle, 2003; Gambetta &amp; Gray, 1995; Santana, 2000). Therefore, we must deduce that either the definition of, or our approach to, functional training is currently incorrect.\n\nAs functional concepts start to transcend medical fields into fitness, it is important to recognise that biomechanical screening must too. Functional and biomechanical screening and training are very important aspects of an overall conditioning program for any sport or activity and are complementary in every way. However, there are many people who pass a functional screen, yet fail a biomechanical screen. Therefore the two modalities, while both detecting different factors, provide the personal trainer and, indeed the therapist, with essential tools for safe and effective prehab, rehab and general exercise prescription.  At this point is always worth pointing out that you must always be prepared to refer to someone who is more qualified than you to perform any kind of screening, especially if you are inexperienced in the field.\n\nFundamentally, we need to develop our understanding of specific-joint biomechanics such as the pelvis, spine, shoulder and knee. We must also consider nerve biomechanics and function within this new paradigm. Once we understand these <em>intrinsic</em> biomechanics principles, how to objectively analyse screens, and how best to implement them as a system, we can prescribe the most efficient and relevant exercises to meet our client’s goals. After these biomechanical issues have been resolved, functional training and/or any other modality of training has a much greater chance for success, not to mention reduced exposure to injury for our clients and members.\n\nMany professional sports teams and organisations around the world have already adopted this <em>intrinsic</em> biomechanics approach. And daily they are realising that <em>intrinsic</em> biomechanical screening and corrective exercise prescription is a critical precursor to functional screening and training. It provides a solid foundation for movement patterns that can otherwise be flawed. On the cutting-edge of our industry you will already find “early adopters” practicing <em>intrinsic</em> biomechanics as part of their personal training client care. There are some fantastic courses currently being run in the US, the UK and many other countries, so attend an <em>intrinsic</em> biomechanics course and become a more complete trainer or therapist as a result.\n\n<strong>Martin Haines </strong>\n\n<strong>Biomechanics Coach</strong>™\n\n<strong>References</strong>\n\n1    Boyle, M. (2003). <em>Functional Training for Sports.</em> Champaign, IL: Human Kinetics.\n\n1    Gambetta, V., &amp; Gray, G. (1995). Following a functional path. <em>Training &amp; Conditioning </em>5(2): 25-30.\n\n1    Gambetta, V., &amp; Clark, M. (1998). A formula for function. <em>Training &amp; Conditioning </em>8(4): 24-29.\n\n1    Gambetta, V. (1999). Force and function. <em>Training &amp; Conditioning </em>9(5): 36-40.\n\n1    Santana, J.C. (2000). <em>Functional Training.</em> Boca Raton, FL: Optimum Performance Systems.\n\n1    Baechle, T.R. &amp; Earle, R.W. (Eds.). 2000. National Strength &amp; Conditioning Association. <em>Essentials of Strength Training &amp; Conditioning</em> (2nd ed.). Champaign, IL: Human Kinetics.\n\n1    Siff, M.C. (2003). <em>Supertraining</em> (6th ed). Denver CO: Supertraining Institute\n\n1    Zatsiorsky V.M. (1995). <em>Science &amp; Practice of Strength Training.</em> Champaign IL: Human Kinetics.\n\n1    Kuhn, T. (1962). <em>The Structure of Scientific Revolutions. </em>Chicago, IL: University of Chicago Press.\n\n1    Burrell, G. &amp; Morgan, G. (1979). Sociological Paradigms and Organisational Analysis: Elements of the Sociology of Corporate Life. London: Heinemann.\n\n<span class=\"TextRun SCXW88998908 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW88998908 BCX8\">Learn how to assess your </span><span class=\"NormalTextRun SCXW88998908 BCX8\">clients\'</span><span class=\"NormalTextRun SCXW88998908 BCX8\"> intrinsic biomechanics </span></span><a class=\"Hyperlink SCXW88998908 BCX8\" href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noreferrer noopener\"><span class=\"TextRun Underlined SCXW88998908 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW88998908 BCX8\" data-ccp-charstyle=\"Hyperlink\">CLICK HERE</span></span></a><span class=\"TextRun SCXW88998908 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"> <span class=\"NormalTextRun SCXW88998908 BCX8\">to learn more about our Diploma in Biomechanics Coaching</span></span><span class=\"EOP SCXW88998908 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335557856&quot;:16777215,&quot;335559738&quot;:0,&quot;335559739&quot;:150,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;','The Evolution of Functional Training','','inherit','closed','closed','','761-autosave-v1','','','2024-09-06 11:14:34','2024-09-06 11:14:34','',761,'https://biomechanicseducation.com/?p=39545',0,'revision','',0),(39546,3,'2024-09-04 15:28:37','2024-09-04 15:28:37','The Importance of Frontal Plane Training\r\n\r\nFrontal plane training is critically underrated! It plays a vital role in enhancing pelvic biomechanics, improving stability, and reducing the risk of groin strains and hernias. Despite its importance, many trainers overlook its benefits.\r\n\r\nOptimal Strength Ratios\r\n\r\nGeorge Davies, a noted expert in joint ratios, suggests that our strength in hip adduction and abduction should be approximately equal to 100% of our body weight. This 1:1 strength ratio is essential for balanced and functional movement.\r\n\r\nEffective Exercises for Hip Adduction/Abduction\r\n\r\n1. Seated Flexed Hip Abduction/Adduction Machine\r\n\r\nIdeal for beginners, this machine helps build foundational frontal plane strength. Aim for balanced strength in both actions by using the same reps, sets, and weights for adduction and abduction.\r\n\r\n2. Seated Hip Abduction/Adduction Machine with Angle Variations\r\n\r\nBy altering your hip angle—leaning forward or backward—you engage different muscle fibers and enhance hip stability beyond the typical 90-degree seated position.\r\n\r\n3. Seated Hip Abduction/Adduction Machine in a Kneeling Position\r\n\r\nKneeling on the seat and facing the backrest allows for internal and external hip rotation exercises. This variation changes hip angles and incorporates rotational movements, promoting all-around pelvic strength.\r\n\r\n4. Standing Hip Abduction/Adduction with Bands\r\n\r\nUsing resistance bands in a standing position advances the exercise by challenging neuromuscular control and enhancing pelvic and knee stability. Start with the band around the knees, then progress to the ankles, and eventually perform the exercise without support.\r\n\r\n5. Side-Lying Body Weight Lift (Adductors/Internal Rotators)\r\n\r\nThis exercise offers variability and additional training benefits. Lying on your side near a bench, use your adductors to lift your body off the floor. Increase difficulty by lifting the bottom leg or adding rotational movements.\r\n\r\nWhy Isolation Training Matters\r\n\r\nWhile functional training is essential, isolation exercises are crucial for ensuring each muscle group functions properly. Functional strength depends on the proper contribution of each muscle, and isolation training can help prevent injuries.\r\n\r\nGet Involved and Learn More\r\n\r\nThese exercises are just a starting point for training the pelvis through the frontal plane. Explore and share your own ideas to further enhance your training methods.\r\n\r\nFor more insights, check out our blog by Martin Haines, a chartered physiotherapist and biomechanics coach.\r\n\r\nReferences:\r\n\r\nDINTIMAN et al. (1998) Sports Speed.\r\n\r\nPAGE et al. (2010) Assessment and treatment of muscle imbalance: The Janda approach\r\n\r\nPAGE, P. (2011) Shoulder muscle imbalance and subacromial impingement syndrome in overhead athletes. International journal of sports physical therapy\r\n\r\nZEMKOVA, E. and HAMAR, D. (2010) The effect of 6-week combined agility-balance training on neuromuscular performance in basketball players. The Journal of sports medicine and physical fitness\r\n\r\nMACKENZIE, B. (2000) Muscle Strength and Balance Checks [WWW] Available from: https://www.brianmac.co.uk/sambc.htm [Accessed 1/4/2019]\r\n\r\nhttps://www.ncbi.nlm.nih.gov/pmc/articles/PMC4637913/\r\n\r\n&nbsp;\r\n\r\nWould you like to enhance your client’s mobility to achieve optimal results? Discover how our Biomechanics Coach Diploma can make you a better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!\r\n\r\nClick here to learn more about our Diploma in Biomechanics Coaching.','Hip Adduction/Abduction (Plus Internal/External Rotation) – A Guide for Personal Trainers','','inherit','closed','closed','','39544-revision-v1','','','2024-09-04 15:28:37','2024-09-04 15:28:37','',39544,'https://biomechanicseducation.com/?p=39546',0,'revision','',0),(39547,3,'2024-09-05 08:53:12','2024-09-05 08:53:12','<h2><strong>How can Biomechanics Effect Mobility?</strong></h2>\r\nIn today’s world, our need to move has significantly decreased. With food delivery at our fingertips, cars and public transport for travel, laptops for messaging, and video calls for virtual interactions, we are moving and loading our bodies much less. While these technological advancements offer convenience, they also lead to decreased physical activity, which can negatively impact our bodies.\r\n<h2><strong>Why Movement Matters</strong></h2>\r\nMovement is essential for maintaining the health of our body’s subsystems: bones, muscles, and nerves. Each requires regular stimulus and load to stay functional:\r\n\r\nBones gain density through impact and loading, and joint mobility is maintained by the motion that improves synovial fluid production.\r\n\r\nMuscles need strength, which comes from progressive overload.\r\n\r\nNerves require proprioceptive challenges and need to glide between structures to send efficient messages.\r\n<h2><img class=\"alignnone size-medium wp-image-37202\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/11/2-1-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></h2>\r\n<h2><strong>What is Biomechanics?</strong></h2>\r\nBiomechanics is the science of evaluating the relationship between the human body and the laws of physics. It involves understanding how force, gravity, motion, and momentum affect the body. For example, joint range of motion is influenced by:\r\n<ul>\r\n 	<li>The joint\'s ability to move</li>\r\n 	<li>Muscle strength and control</li>\r\n 	<li>Gravity’s effect on muscles and joints</li>\r\n 	<li>The length of levers involved</li>\r\n 	<li>Neuromuscular complexity related to balance and support</li>\r\n 	<li>Understanding Mobility</li>\r\n</ul>\r\nMobility refers to the range of motion in a joint, largely determined by genetics. Practitioners can analyze human movement to identify limitations in mobility. For instance, comparing current movement capabilities to previous ones can highlight reduced mobility. Common examples include difficulty bending knees and hips to pick something up, indicating potential joint limitations. Upper body mobility, especially in shoulders, can also be affected by prolonged sitting postures.\r\n\r\nEven nerve tightness can limit joint mobility by causing muscle stiffness, reducing synovial fluid production, and creating a cascade of effects throughout the body.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>How Biomechanics Enhances Mobility</h2>\r\nThe central nervous system (CNS) acts like the body’s software, sending messages from the brain to muscles via the spinal cord and peripheral nerves. Understanding biomechanics and anatomy helps in measuring and improving mobility. By assessing joint ranges and applying exercise prescriptions, practitioners can monitor and enhance clients’ mobility.\r\n<h2><img class=\"alignnone size-medium wp-image-37204\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/11/4-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></h2>\r\n<h2>Benefits of Biomechanics Knowledge</h2>\r\nA solid understanding of biomechanics is crucial for assessing movement risks and how different subsystems influence each other. Physical activity promotes optimal health by maintaining homeostasis between muscles, bones, and nerves. Expanding this knowledge to include mindset, hormones, and nutrition provides a holistic approach to health and fitness.\r\n\r\nGaining expertise in biomechanics can be invaluable for personal trainers and sports coaches, helping them feel more confident and effective in their roles. Additional training in Biomechanics Coaching or Strength and Conditioning can significantly enhance their ability to assist clients and athletes in achieving specific goals.\r\n<h3>Do You Need a Biomechanics Coach?</h3>\r\nImproving mobility can be as simple as moving more and exploring new movements. However, a Biomechanics Coach brings specialized training to assess the entire body and prescribe safe, effective techniques for improving mobility. These coaches are trained to identify injury risks and empower clients with knowledge, leading to long-term positive changes.\r\n<h3>Conclusion</h3>\r\nPractical skills in biomechanics, particularly intrinsic biomechanics, enable practitioners to assess and improve clients’ mobility effectively. This skill set not only enhances a trainer’s value but also leads to measurable improvements in clients\' movement quality.\r\n\r\nIf you\'re interested in becoming a Biomechanics Coach or expanding your knowledge in intrinsic biomechanics, consider the certified Biomechanics Coach course. For more information or to discuss your career options, contact our advisors.\r\n\r\nPhone: <em>020 3841 6151</em>\r\n\r\nEmail: <em>rachel@biomechanicseducation.com</em>','How can Biomechanics affect mobility?','','inherit','closed','closed','','37121-autosave-v1','','','2024-09-05 08:53:12','2024-09-05 08:53:12','',37121,'https://biomechanicseducation.com/?p=39547',0,'revision','',0),(39548,3,'2024-09-05 08:53:02','2024-09-05 08:53:02','<h2><strong>How can Biomechanics Effect Mobility?</strong></h2>\r\nIn today’s world, our need to move has significantly decreased. With food delivery at our fingertips, cars and public transport for travel, laptops for messaging, and video calls for virtual interactions, we are moving and loading our bodies much less. While these technological advancements offer convenience, they also lead to decreased physical activity, which can negatively impact our bodies.\r\n<h2><strong>Why Movement Matters</strong></h2>\r\nMovement is essential for maintaining the health of our body’s subsystems: bones, muscles, and nerves. Each requires regular stimulus and load to stay functional:\r\n\r\nBones gain density through impact and loading, and joint mobility is maintained by the motion that improves synovial fluid production.\r\n\r\nMuscles need strength, which comes from progressive overload.\r\n\r\nNerves require proprioceptive challenges and need to glide between structures to send efficient messages.\r\n<h2><img class=\"alignnone size-medium wp-image-37202\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/11/2-1-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></h2>\r\n<h2><strong>What is Biomechanics?</strong></h2>\r\nBiomechanics is the science of evaluating the relationship between the human body and the laws of physics. It involves understanding how force, gravity, motion, and momentum affect the body. For example, joint range of motion is influenced by:\r\n<ul>\r\n 	<li>The joint\'s ability to move</li>\r\n 	<li>Muscle strength and control</li>\r\n 	<li>Gravity’s effect on muscles and joints</li>\r\n 	<li>The length of levers involved</li>\r\n 	<li>Neuromuscular complexity related to balance and support</li>\r\n 	<li>Understanding Mobility</li>\r\n</ul>\r\nMobility refers to the range of motion in a joint, largely determined by genetics. Practitioners can analyze human movement to identify limitations in mobility. For instance, comparing current movement capabilities to previous ones can highlight reduced mobility. Common examples include difficulty bending knees and hips to pick something up, indicating potential joint limitations. Upper body mobility, especially in shoulders, can also be affected by prolonged sitting postures.\r\n\r\nEven nerve tightness can limit joint mobility by causing muscle stiffness, reducing synovial fluid production, and creating a cascade of effects throughout the body.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>How Biomechanics Enhances Mobility</h2>\r\nThe central nervous system (CNS) acts like the body’s software, sending messages from the brain to muscles via the spinal cord and peripheral nerves. Understanding biomechanics and anatomy helps in measuring and improving mobility. By assessing joint ranges and applying exercise prescriptions, practitioners can monitor and enhance clients’ mobility.\r\n<h2><img class=\"alignnone size-medium wp-image-37204\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/11/4-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></h2>\r\n<h2>Benefits of Biomechanics Knowledge</h2>\r\nA solid understanding of biomechanics is crucial for assessing movement risks and how different subsystems influence each other. Physical activity promotes optimal health by maintaining homeostasis between muscles, bones, and nerves. Expanding this knowledge to include mindset, hormones, and nutrition provides a holistic approach to health and fitness.\r\n\r\nGaining expertise in biomechanics can be invaluable for personal trainers and sports coaches, helping them feel more confident and effective in their roles. Additional training in Biomechanics Coaching or Strength and Conditioning can significantly enhance their ability to assist clients and athletes in achieving specific goals.\r\n<h3>Do You Need a Biomechanics Coach?</h3>\r\nImproving mobility can be as simple as moving more and exploring new movements. However, a Biomechanics Coach brings specialized training to assess the entire body and prescribe safe, effective techniques for improving mobility. These coaches are trained to identify injury risks and empower clients with knowledge, leading to long-term positive changes.\r\n<h3>Conclusion</h3>\r\nPractical skills in biomechanics, particularly intrinsic biomechanics, enable practitioners to assess and improve clients’ mobility effectively. This skill set not only enhances a trainer’s value but also leads to measurable improvements in clients\' movement quality.\r\n\r\nIf you\'re interested in becoming a Biomechanics Coach or expanding your knowledge in intrinsic biomechanics, consider the certified Biomechanics Coach course. For more information or to discuss your career options, contact our advisors.\r\n\r\nPhone: <em>020 3841 6151</em>\r\n\r\nEmail: <em>rachel@biomechanicseducation.com</em>','How can Biomechanics affect mobility?','','inherit','closed','closed','','37121-revision-v1','','','2024-09-05 08:53:02','2024-09-05 08:53:02','',37121,'https://biomechanicseducation.com/?p=39548',0,'revision','',0),(39549,3,'2024-09-05 09:01:11','2024-09-05 09:01:11','<h2>Identifying Quadratus Lumborum Spasm and Its Impact on Lower Back Pain and Mobility</h2>\r\nThe quadratus lumborum (QL) muscle plays a crucial role in the stabilization and movement of the pelvis and spine. Understanding its function and identifying when it is in spasm can help manage lower back pain and improve movement ability.\r\n<h3>What is the Quadratus Lumborum?</h3>\r\nThe QL is a deep muscle located in the lower back, with one on each side of the spine. It attaches to the 12th rib, the iliac crest, and the transverse processes of the lumbar spine.\r\n<h3>Function of the Quadratus Lumborum</h3>\r\nWhen both QL muscles contract simultaneously, they extend the spine. When one QL contracts, it causes lateral flexion of the spine or hip hitching.\r\n<h3>Common Problems with the Quadratus Lumborum</h3>\r\nDue to sedentary lifestyles, we often spend extended periods sitting in lumbar flexion. This can lead to the QL being in a state of subclinical spasm, which restricts movement and can cause discomfort.\r\n<h3>Effects of QL Spasm on Movement</h3>\r\nA QL spasm limits the spine’s ability to laterally flex, making activities such as bending to pick up objects or turning in a car challenging. For physical activities like bear crawls or rock climbing, where hip hitching is necessary, a QL spasm can hinder speed and control.\r\n\r\nA spasm in the QL can also cause mechanical compensation, leading to a functional leg length discrepancy. The spasm lifts the ilium on one side, affecting pelvic function and potentially causing issues in the knee and foot.\r\n<h3>Testing for QL Spasm</h3>\r\nTo test for QL spasm, ask your client to sit and perform lateral flexion. Observe the spine’s movement and shape; a smooth curve is normal, while a ‘hinge’ in the lumbar area indicates a spasm.\r\n\r\n<em>This video shows a few QL tests in action: QL Hinge Positive &amp; Negative Test Results (youtube.com)</em>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/xWlGWanUOPE\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<h3>Solution: Wall Glides</h3>\r\nWall Glides are an effective technique to alleviate QL spasms. This is not a mobility exercise but a proprioceptive method to desensitize the QL spasm.\r\n<ul>\r\n 	<li>Have your client stand side-on to a wall and measure their foot distance from the wall.</li>\r\n 	<li>Rest the whole upper arm against the wall, fixing the ribs to the inside of the arm as if holding a newspaper.</li>\r\n 	<li>Bend the elbow to 90 degrees at the waist while keeping the body straight.</li>\r\n 	<li>Glide the hips gently towards the wall by an inch or two, then return to the original position.</li>\r\n 	<li>Repeat slowly for 8 reps on both sides, twice daily. If tender, reduce the range of motion.</li>\r\n 	<li>Clients with any clinical conditions affecting the lower back should consult their Biomechanics Coach™ first.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter size-large wp-image-2787\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/MG_9964-683x1024.jpg\" alt=\"_mg_9964\" width=\"683\" height=\"1024\" />\r\n<h3>Considerations</h3>\r\nRemember, the body is an integrated system and a master of compensation. Both descending and ascending compensations can cause or result from a QL spasm.\r\n\r\nUnderstanding and addressing QL spasms can significantly improve lower back health and overall mobility. By incorporating techniques like Wall Glides and assessing for compensations, you can help clients manage pain and enhance their movement abilities effectively.\r\n<p style=\"text-align: center;\"><strong>For further information and guidance, feel free to reach out:</strong></p>\r\n<p style=\"text-align: center;\">Phone: <em>020 3841 6151</em></p>\r\n<p style=\"text-align: center;\">Email: <em>rachel@biomechanicseducation.com</em></p>','How To Identify If Your Quadratus Lumborum Muscle Is In Spasm & It’s Effect On Lower Back Pain & Movement Ability','','inherit','closed','closed','','2785-autosave-v1','','','2024-09-05 09:01:11','2024-09-05 09:01:11','',2785,'https://biomechanicseducation.com/?p=39549',0,'revision','',0),(39550,3,'2024-09-05 09:01:04','2024-09-05 09:01:04','<h2>Identifying Quadratus Lumborum Spasm and Its Impact on Lower Back Pain and Mobility</h2>\r\nThe quadratus lumborum (QL) muscle plays a crucial role in the stabilization and movement of the pelvis and spine. Understanding its function and identifying when it is in spasm can help manage lower back pain and improve movement ability.\r\n<h3>What is the Quadratus Lumborum?</h3>\r\nThe QL is a deep muscle located in the lower back, with one on each side of the spine. It attaches to the 12th rib, the iliac crest, and the transverse processes of the lumbar spine.\r\n<h3>Function of the Quadratus Lumborum</h3>\r\nWhen both QL muscles contract simultaneously, they extend the spine. When one QL contracts, it causes lateral flexion of the spine or hip hitching.\r\n<h3>Common Problems with the Quadratus Lumborum</h3>\r\nDue to sedentary lifestyles, we often spend extended periods sitting in lumbar flexion. This can lead to the QL being in a state of subclinical spasm, which restricts movement and can cause discomfort.\r\n<h3>Effects of QL Spasm on Movement</h3>\r\nA QL spasm limits the spine’s ability to laterally flex, making activities such as bending to pick up objects or turning in a car challenging. For physical activities like bear crawls or rock climbing, where hip hitching is necessary, a QL spasm can hinder speed and control.\r\n\r\nA spasm in the QL can also cause mechanical compensation, leading to a functional leg length discrepancy. The spasm lifts the ilium on one side, affecting pelvic function and potentially causing issues in the knee and foot.\r\n<h3>Testing for QL Spasm</h3>\r\nTo test for QL spasm, ask your client to sit and perform lateral flexion. Observe the spine’s movement and shape; a smooth curve is normal, while a ‘hinge’ in the lumbar area indicates a spasm.\r\n\r\n<em>This video shows a few QL tests in action: QL Hinge Positive &amp; Negative Test Results (youtube.com)</em>\r\n\r\n&nbsp;\r\n\r\n<iframe src=\"https://www.youtube.com/embed/xWlGWanUOPE\" width=\"560\" height=\"315\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>\r\n\r\n&nbsp;\r\n<h3>Solution: Wall Glides</h3>\r\nWall Glides are an effective technique to alleviate QL spasms. This is not a mobility exercise but a proprioceptive method to desensitize the QL spasm.\r\n<ul>\r\n 	<li>Have your client stand side-on to a wall and measure their foot distance from the wall.</li>\r\n 	<li>Rest the whole upper arm against the wall, fixing the ribs to the inside of the arm as if holding a newspaper.</li>\r\n 	<li>Bend the elbow to 90 degrees at the waist while keeping the body straight.</li>\r\n 	<li>Glide the hips gently towards the wall by an inch or two, then return to the original position.</li>\r\n 	<li>Repeat slowly for 8 reps on both sides, twice daily. If tender, reduce the range of motion.</li>\r\n 	<li>Clients with any clinical conditions affecting the lower back should consult their Biomechanics Coach™ first.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter size-large wp-image-2787\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/05/MG_9964-683x1024.jpg\" alt=\"_mg_9964\" width=\"683\" height=\"1024\" />\r\n<h3>Considerations</h3>\r\nRemember, the body is an integrated system and a master of compensation. Both descending and ascending compensations can cause or result from a QL spasm.\r\n\r\nUnderstanding and addressing QL spasms can significantly improve lower back health and overall mobility. By incorporating techniques like Wall Glides and assessing for compensations, you can help clients manage pain and enhance their movement abilities effectively.\r\n<p style=\"text-align: center;\"><strong>For further information and guidance, feel free to reach out:</strong></p>\r\n<p style=\"text-align: center;\">Phone: <em>020 3841 6151</em></p>\r\n<p style=\"text-align: center;\">Email: <em>rachel@biomechanicseducation.com</em></p>','How To Identify If Your Quadratus Lumborum Muscle Is In Spasm & It’s Effect On Lower Back Pain & Movement Ability','','inherit','closed','closed','','2785-revision-v1','','','2024-09-05 09:01:04','2024-09-05 09:01:04','',2785,'https://biomechanicseducation.com/?p=39550',0,'revision','',0),(39551,3,'2024-09-05 09:15:33','2024-09-05 09:15:33','<h2>Did You Know Some People Have Six Quadriceps Muscles?</h2>\r\nThe human body is full of surprises, and the cadaver labs consistently reveal just how much we have yet to learn.\r\n<h3>The Mystery of the Extra Quadriceps</h3>\r\nWe are typically taught that the quadriceps consist of four muscles—hence the name \"quad.\" However, there are fascinating cases where individuals have five or even six quadriceps muscles. Yes, six!\r\n\r\nThe human body is a marvel of complexity, and those of us passionate about understanding it are always eager to explore these anomalies. Discovering these additional muscles can deepen our comprehension of movement and anatomy.\r\n<h3>Exploring the Fifth and Sixth Quadriceps</h3>\r\nThrough my research on these extra quadriceps, I\'ve learned that these muscles, which might more accurately be called \"sexticeps,\" can play unique roles in movement.\r\n<h3>Tensa Vastus Intermedius</h3>\r\n<strong>Definition</strong>: This muscle tenses the aponeurosis (a type of fascia) of the vastus intermedius and medially rotates the action of the muscle.\r\n\r\n<strong>Function</strong>: It may act as a second tensor in addition to the tensor fascia lata (TFL), suggesting it assists the TFL by tensing a similar area rather than contracting as an agonist.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24267\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/TENSA-VASTUS-INTERMEDIUS.png\" alt=\"\" width=\"409\" height=\"393\" />\r\n<h3>Articularis Genus</h3>\r\n<strong>Definition</strong>: This muscle is not thought to act independently. It retracts the suprapatellar bursa during knee extension, preventing impingement between the patella and femur.\r\n\r\n<strong>Function</strong>: It coordinates the movement of the suprapatellar bursa during knee flexion and extension and contributes to proprioception. However, studies question its capability based on its structure.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24266\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/ARTICULARIS-GENUS.png\" alt=\"\" width=\"417\" height=\"413\" />\r\n<h3>Implications of Additional Quadriceps</h3>\r\nSo, what does it mean if someone has a fifth or sixth quadriceps muscle? Could this anatomical variation provide an advantage or pose a disadvantage? How might it affect movement?\r\n\r\nWhile I don\'t have definitive answers, these questions open the door to intriguing discussions. I invite you to share your thoughts and join me for an inclusive conversation on anatomy and movement.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\">Join the Conversation</h4>\r\n<p style=\"text-align: center;\">Would you like to dive deeper into anatomy and movement? Consider joining our Diploma in Biomechanics Coaching.</p>\r\n<p style=\"text-align: center;\"><strong>Contact Us:</strong></p>\r\n<p style=\"text-align: center;\">Email:<em> rachel@biomechanicseducation.com</em></p>\r\n<p style=\"text-align: center;\">Phone: <em>020 3841 6151</em></p>\r\n<p style=\"text-align: center;\">Let\'s explore the fascinating complexities of the human body together!</p>','Did You Know….some people have 6 Quadricep Muscles?','','inherit','closed','closed','','24262-autosave-v1','','','2024-09-05 09:15:33','2024-09-05 09:15:33','',24262,'https://biomechanicseducation.com/?p=39551',0,'revision','',0),(39552,3,'2024-09-05 09:07:00','2024-09-05 09:07:00','<h2>Did You Know Some People Have Six Quadriceps Muscles?</h2>\r\nThe human body is full of surprises, and the cadaver labs consistently reveal just how much we have yet to learn.\r\n<h3>The Mystery of the Extra Quadriceps</h3>\r\nWe are typically taught that the quadriceps consist of four muscles—hence the name \"quad.\" However, there are fascinating cases where individuals have five or even six quadriceps muscles. Yes, six!\r\n\r\nThe human body is a marvel of complexity, and those of us passionate about understanding it are always eager to explore these anomalies. Discovering these additional muscles can deepen our comprehension of movement and anatomy.\r\n<h3>Exploring the Fifth and Sixth Quadriceps</h3>\r\nThrough my research on these extra quadriceps, I\'ve learned that these muscles, which might more accurately be called \"sexticeps,\" can play unique roles in movement.\r\n<h3>Tensa Vastus Intermedius</h3>\r\n<strong>Definition</strong>: This muscle tenses the aponeurosis (a type of fascia) of the vastus intermedius and medially rotates the action of the muscle.\r\n\r\n<strong>Function</strong>: It may act as a second tensor in addition to the tensor fascia lata (TFL), suggesting it assists the TFL by tensing a similar area rather than contracting as an agonist.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24267\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/TENSA-VASTUS-INTERMEDIUS.png\" alt=\"\" width=\"409\" height=\"393\" />\r\n<h3>Articularis Genus</h3>\r\n<strong>Definition</strong>: This muscle is not thought to act independently. It retracts the suprapatellar bursa during knee extension, preventing impingement between the patella and femur.\r\n\r\n<strong>Function</strong>: It coordinates the movement of the suprapatellar bursa during knee flexion and extension and contributes to proprioception. However, studies question its capability based on its structure.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24266\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/ARTICULARIS-GENUS.png\" alt=\"\" width=\"417\" height=\"413\" />\r\n<h3>Implications of Additional Quadriceps</h3>\r\nSo, what does it mean if someone has a fifth or sixth quadriceps muscle? Could this anatomical variation provide an advantage or pose a disadvantage? How might it affect movement?\r\n\r\nWhile I don\'t have definitive answers, these questions open the door to intriguing discussions. I invite you to share your thoughts and join me for an inclusive conversation on anatomy and movement.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4 style=\"text-align: center;\">Join the Conversation</h4>\r\n<p style=\"text-align: center;\">Would you like to dive deeper into anatomy and movement? Consider joining our Diploma in Biomechanics Coaching.</p>\r\n<p style=\"text-align: center;\"><strong>Contact Us:</strong></p>\r\n<p style=\"text-align: center;\">Email:<em> rachel@biomechanicseducation.com</em></p>\r\n<p style=\"text-align: center;\">Phone: <em>020 3841 6151</em></p>\r\n<p style=\"text-align: center;\">Let\'s explore the fascinating complexities of the human body together!</p>','Did You Know….some people have 6 Quadricep Muscles?','','inherit','closed','closed','','24262-revision-v1','','','2024-09-05 09:07:00','2024-09-05 09:07:00','',24262,'https://biomechanicseducation.com/?p=39552',0,'revision','',0),(39553,3,'2024-09-05 09:21:39','2024-09-05 09:21:39','<h2>Introduction</h2>\nIf you search for \"biomechanics,\" you\'ll mostly find information related to sports and performance. However, understanding biomechanics—both extrinsically and intrinsically—can significantly enhance the overall health and wellbeing of clients for movement/exercise coaches and trainers.\n<h3>What is Health and Wellbeing?</h3>\nAccording to the World Health Organization, \"Health is a state of complete physical, mental, and social well-being, not merely the absence of disease or infirmity.\"\n\nHealth and wellbeing often involve maintaining happiness, being free from symptoms, and feeling robust and purposeful. While this blog focuses on the physical aspect of biomechanics, it also explores how biomechanics can influence mindset and psychology.\n<h3>The Basics of Biomechanics</h3>\nIn simple terms, three key subsystems enable us to move freely and with less pain:\n<ul>\n 	<li>Skeletal System: Provides the framework for the myofascial system.</li>\n 	<li>Myofascial System: Acts as levers and pulleys for movement.</li>\n 	<li>Nervous System: Functions like the body\'s software, sending messages to the myofascial system about how much effort to apply across joints.</li>\n</ul>\nNote: The biotensegrity model (Prof. Steve Levit) suggests that the human body is more sophisticated than a machine, though a simplified biomechanical model is useful for understanding and applying human movement.\n<h3>Biomechanics and Movement Patterns</h3>\n<h5><strong>Karel Lewitt, the \"father of manual medicine,\" proposed that we are born with genetic movement codes and develop conditioned movement codes as we grow. While repeating certain movements can enhance performance and coordination, over time, these compensatory factors can negatively impact our subsystems. For instance, a sedentary lifestyle can lead to tissue adaptation and asymmetries, affecting overall movement and health.</strong></h5>\n<h4>Case Studies</h4>\n<strong>Example 1: Older Adults</strong>\n\nFor older adults (60+), maintaining joint mobility is crucial for balance and independence. The iMoveFreely program focuses on low-range joint mobility and low-level muscle energy techniques, making it a safe and effective prehabilitation program for this demographic.\n<h5><strong>Example 2: Individuals with Chronic Conditions</strong></h5>\nMovement offers protection and health benefits, especially for those with long-term conditions like diabetes, obesity, and arthritis. Understanding how these conditions impact movement can help practitioners design effective programs, such as the iMoveFreely program, which can be done at home and doesn\'t require specific equipment.\n\nQualified practitioners who understand intrinsic biomechanics and behavior change can provide valuable support in managing these conditions through movement and exercise.\n<h5><strong>Example 3: Athletes</strong></h5>\nExtrinsic biomechanics often focuses on improving sports performance through video analysis and data interpretation. However, understanding intrinsic biomechanics is essential for optimizing performance without compromising the athlete\'s natural genetic makeup. For instance, correcting movements to appear more aesthetically pleasing may not align with the athlete\'s intrinsic biomechanics and could cause problems.\n<h3 style=\"text-align: center;\">Conclusion</h3>\n<p style=\"text-align: center;\">Understanding intrinsic biomechanics benefits every client demographic, enhancing health and wellbeing across various sectors. This knowledge fills the gap between health and fitness, wellness and clinical practice, and exercise and medication.</p>\n<p style=\"text-align: center;\">Investing in our Diploma in Biomechanics Coaching can kickstart your career journey, supported by a community of practitioners dedicated to improving client outcomes. Contact us to learn more and reserve your place in our popular program.</p>\n<p style=\"text-align: center;\"><strong>Contact Us:</strong></p>\n<p style=\"text-align: center;\">Email:<em> rachel@biomechanicseducation.com</em></p>\n<p style=\"text-align: center;\">Phone: <em>020 3841 6151</em></p>\n<p style=\"text-align: center;\">Start your journey today and transform your approach to health and wellbeing!</p>','How Understanding Intrinsic Biomechanics Improves Overall Health and Wellbeing','','inherit','closed','closed','','34519-autosave-v1','','','2024-09-05 09:21:39','2024-09-05 09:21:39','',34519,'https://biomechanicseducation.com/?p=39553',0,'revision','',0),(39554,3,'2024-09-05 09:20:34','2024-09-05 09:20:34','<h2>Introduction</h2>\r\nIf you search for \"biomechanics,\" you\'ll mostly find information related to sports and performance. However, understanding biomechanics—both extrinsically and intrinsically—can significantly enhance the overall health and wellbeing of clients for movement/exercise coaches and trainers.\r\n<h3>What is Health and Wellbeing?</h3>\r\nAccording to the World Health Organization, \"Health is a state of complete physical, mental, and social well-being, not merely the absence of disease or infirmity.\"\r\n\r\nHealth and wellbeing often involve maintaining happiness, being free from symptoms, and feeling robust and purposeful. While this blog focuses on the physical aspect of biomechanics, it also explores how biomechanics can influence mindset and psychology.\r\n<h3>The Basics of Biomechanics</h3>\r\nIn simple terms, three key subsystems enable us to move freely and with less pain:\r\n<ul>\r\n 	<li>Skeletal System: Provides the framework for the myofascial system.</li>\r\n 	<li>Myofascial System: Acts as levers and pulleys for movement.</li>\r\n 	<li>Nervous System: Functions like the body\'s software, sending messages to the myofascial system about how much effort to apply across joints.</li>\r\n</ul>\r\nNote: The biotensegrity model (Prof. Steve Levit) suggests that the human body is more sophisticated than a machine, though a simplified biomechanical model is useful for understanding and applying human movement.\r\n<h3>Biomechanics and Movement Patterns</h3>\r\n<h5>Karel Lewitt, the \"father of manual medicine,\" proposed that we are born with genetic movement codes and develop conditioned movement codes as we grow. While repeating certain movements can enhance performance and coordination, over time, these compensatory factors can negatively impact our subsystems. For instance, a sedentary lifestyle can lead to tissue adaptation and asymmetries, affecting overall movement and health.</h5>\r\n<h4>Case Studies</h4>\r\n<strong>Example 1: Older Adults</strong>\r\n\r\nFor older adults (60+), maintaining joint mobility is crucial for balance and independence. The iMoveFreely program focuses on low-range joint mobility and low-level muscle energy techniques, making it a safe and effective prehabilitation program for this demographic.\r\n<h5><strong>Example 2: Individuals with Chronic Conditions</strong></h5>\r\nMovement offers protection and health benefits, especially for those with long-term conditions like diabetes, obesity, and arthritis. Understanding how these conditions impact movement can help practitioners design effective programs, such as the iMoveFreely program, which can be done at home and doesn\'t require specific equipment.\r\n\r\nQualified practitioners who understand intrinsic biomechanics and behavior change can provide valuable support in managing these conditions through movement and exercise.\r\n<h5><strong>Example 3: Athletes</strong></h5>\r\nExtrinsic biomechanics often focuses on improving sports performance through video analysis and data interpretation. However, understanding intrinsic biomechanics is essential for optimizing performance without compromising the athlete\'s natural genetic makeup. For instance, correcting movements to appear more aesthetically pleasing may not align with the athlete\'s intrinsic biomechanics and could cause problems.\r\n<h3 style=\"text-align: center;\">Conclusion</h3>\r\n<p style=\"text-align: center;\">Understanding intrinsic biomechanics benefits every client demographic, enhancing health and wellbeing across various sectors. This knowledge fills the gap between health and fitness, wellness and clinical practice, and exercise and medication.</p>\r\n<p style=\"text-align: center;\">Investing in our Diploma in Biomechanics Coaching can kickstart your career journey, supported by a community of practitioners dedicated to improving client outcomes. Contact us to learn more and reserve your place in our popular program.</p>\r\n<p style=\"text-align: center;\"><strong>Contact Us:</strong></p>\r\n<p style=\"text-align: center;\">Email:<em> rachel@biomechanicseducation.com</em></p>\r\n<p style=\"text-align: center;\">Phone: <em>020 3841 6151</em></p>\r\n<p style=\"text-align: center;\">Start your journey today and transform your approach to health and wellbeing!</p>','How Understanding Intrinsic Biomechanics Improves Overall Health and Wellbeing','','inherit','closed','closed','','34519-revision-v1','','','2024-09-05 09:20:34','2024-09-05 09:20:34','',34519,'https://biomechanicseducation.com/?p=39554',0,'revision','',0),(39555,3,'2024-09-05 09:22:07','2024-09-05 09:22:07','<h2>Introduction</h2>\r\nIf you search for \"biomechanics,\" you\'ll mostly find information related to sports and performance. However, understanding biomechanics—both extrinsically and intrinsically—can significantly enhance the overall health and wellbeing of clients for movement/exercise coaches and trainers.\r\n<h3>What is Health and Wellbeing?</h3>\r\nAccording to the World Health Organization, \"Health is a state of complete physical, mental, and social well-being, not merely the absence of disease or infirmity.\"\r\n\r\nHealth and wellbeing often involve maintaining happiness, being free from symptoms, and feeling robust and purposeful. While this blog focuses on the physical aspect of biomechanics, it also explores how biomechanics can influence mindset and psychology.\r\n<h3>The Basics of Biomechanics</h3>\r\nIn simple terms, three key subsystems enable us to move freely and with less pain:\r\n<ul>\r\n 	<li>Skeletal System: Provides the framework for the myofascial system.</li>\r\n 	<li>Myofascial System: Acts as levers and pulleys for movement.</li>\r\n 	<li>Nervous System: Functions like the body\'s software, sending messages to the myofascial system about how much effort to apply across joints.</li>\r\n</ul>\r\nNote: The biotensegrity model (Prof. Steve Levit) suggests that the human body is more sophisticated than a machine, though a simplified biomechanical model is useful for understanding and applying human movement.\r\n<h3>Biomechanics and Movement Patterns</h3>\r\nKarel Lewitt, the \"<em>father of manual medicine</em>,\" proposed that we are born with genetic movement codes and develop conditioned movement codes as we grow. While repeating certain movements can enhance performance and coordination, over time, these compensatory factors can negatively impact our subsystems. For instance, a sedentary lifestyle can lead to tissue adaptation and asymmetries, affecting overall movement and health.\r\n<h4>Case Studies</h4>\r\n<strong>Example 1: Older Adults</strong>\r\n\r\nFor older adults (60+), maintaining joint mobility is crucial for balance and independence. The iMoveFreely program focuses on low-range joint mobility and low-level muscle energy techniques, making it a safe and effective prehabilitation program for this demographic.\r\n<h5><strong>Example 2: Individuals with Chronic Conditions</strong></h5>\r\nMovement offers protection and health benefits, especially for those with long-term conditions like diabetes, obesity, and arthritis. Understanding how these conditions impact movement can help practitioners design effective programs, such as the iMoveFreely program, which can be done at home and doesn\'t require specific equipment.\r\n\r\nQualified practitioners who understand intrinsic biomechanics and behavior change can provide valuable support in managing these conditions through movement and exercise.\r\n<h5><strong>Example 3: Athletes</strong></h5>\r\nExtrinsic biomechanics often focuses on improving sports performance through video analysis and data interpretation. However, understanding intrinsic biomechanics is essential for optimizing performance without compromising the athlete\'s natural genetic makeup. For instance, correcting movements to appear more aesthetically pleasing may not align with the athlete\'s intrinsic biomechanics and could cause problems.\r\n<h3 style=\"text-align: center;\">Conclusion</h3>\r\n<p style=\"text-align: center;\">Understanding intrinsic biomechanics benefits every client demographic, enhancing health and wellbeing across various sectors. This knowledge fills the gap between health and fitness, wellness and clinical practice, and exercise and medication.</p>\r\n<p style=\"text-align: center;\">Investing in our Diploma in Biomechanics Coaching can kickstart your career journey, supported by a community of practitioners dedicated to improving client outcomes. Contact us to learn more and reserve your place in our popular program.</p>\r\n<p style=\"text-align: center;\"><strong>Contact Us:</strong></p>\r\n<p style=\"text-align: center;\">Email:<em> rachel@biomechanicseducation.com</em></p>\r\n<p style=\"text-align: center;\">Phone: <em>020 3841 6151</em></p>\r\n<p style=\"text-align: center;\">Start your journey today and transform your approach to health and wellbeing!</p>','How Understanding Intrinsic Biomechanics Improves Overall Health and Wellbeing','','inherit','closed','closed','','34519-revision-v1','','','2024-09-05 09:22:07','2024-09-05 09:22:07','',34519,'https://biomechanicseducation.com/?p=39555',0,'revision','',0),(39556,3,'2024-09-05 09:46:26','2024-09-05 09:46:26','<h2>Introduction</h2>\r\nA key component of training stability and control for movement and sports is understanding the strength ratios around the trunk or core. This essential aspect of core assessment and training is often overlooked in the fitness industry. Without balanced strength ratios, clients are at a higher risk of injury.\r\n<h3>Why Are Core Strength Ratios Important?</h3>\r\nConsider this: would you train your core by doing side bridges on only one side? It wouldn\'t make sense, yet many core training programs lack balance, often focusing on flexion (e.g., plank variations) without enough extension exercises. This imbalance neglects the principle that muscles work in pairs, leading to either flexion-dominant or extension-dominant programs. To create effective core training routines, personal trainers need to measure and consider their clients\' core strength ratios.\r\n\r\nFortunately, Professor Stuart McGill from Waterloo University has conducted extensive research on this topic. His studies, initially involving 20 athletes and later expanding to 150 subjects of various demographics, found consistent core strength ratios.\r\n<h3>How to Test Core Strength Ratios</h3>\r\nTo assess a client\'s core strength ratios, follow these steps for isometric core ratio testing:\r\n<ul>\r\n 	<li>Isometric Flexion</li>\r\n 	<li>Isometric Side Bridging (both sides)</li>\r\n 	<li>Isometric Extension</li>\r\n</ul>\r\nEach test should be performed in this order, timed, and observed for technique. Clients must hold each position as long as possible without encouragement to ensure natural results.\r\n<h3>Calculating the Ratios</h3>\r\nAfter testing, calculate the core strength ratios:\r\n<ul>\r\n 	<li><strong>Draw a Grid</strong>: Note the times in seconds for each test.</li>\r\n 	<li><strong>Calculate Ratios</strong>: Divide the flexion time by the extension time to get the flexor-to-extensor strength ratio. Repeat for side bridging to assess lateral flexor strength ratios, which can indicate asymmetries.</li>\r\n</ul>\r\n<h3>Using the Data to Build Training Programs</h3>\r\nWith the ratios calculated, you can design a balanced training program:\r\n<ul>\r\n 	<li>Flexor Training: If the flexor ratio is low, incorporate isometric flexion exercises.</li>\r\n 	<li>Lateral Training: If one side\'s ratio is low, include isometric side bridging.</li>\r\n 	<li>Extension Training: If the extension ratio is low, add isometric extension exercises.</li>\r\n 	<li>Monitor progress closely and re-measure ratios regularly to prevent overcompensation.</li>\r\n</ul>\r\n<h3>Achieving Balance and Stability</h3>\r\nOnce the ratios align with the norms, shift the focus to endurance for stability and trunk control.\r\n<h3>Enhance Your Training Skills</h3>\r\nWould you like to reduce your clients\' risk of injury and help them achieve even better results? Learn more about our Biomechanics Coach Diploma, which now includes a Level 4 Low Back Pain Qualification. Click here to start your journey toward becoming an expert personal trainer.','The Core Ratios: The Personal Trainers Guide To Assessing & Programming For The Core','','inherit','closed','closed','','16411-autosave-v1','','','2024-09-05 09:46:26','2024-09-05 09:46:26','',16411,'https://biomechanicseducation.com/?p=39556',0,'revision','',0),(39557,3,'2024-09-05 09:45:15','2024-09-05 09:45:15','<h2>Introduction</h2>\r\n<p>A key component of training stability and control for movement and sports is understanding the strength ratios around the trunk or core. This essential aspect of core assessment and training is often overlooked in the fitness industry. Without balanced strength ratios, clients are at a higher risk of injury.</p>\r\n<h3>Why Are Core Strength Ratios Important?</h3>\r\n<p>Consider this: would you train your core by doing side bridges on only one side? It wouldn\'t make sense, yet many core training programs lack balance, often focusing on flexion (e.g., plank variations) without enough extension exercises. This imbalance neglects the principle that muscles work in pairs, leading to either flexion-dominant or extension-dominant programs. To create effective core training routines, personal trainers need to measure and consider their clients\' core strength ratios.</p>\r\n<p>Fortunately, Professor Stuart McGill from Waterloo University has conducted extensive research on this topic. His studies, initially involving 20 athletes and later expanding to 150 subjects of various demographics, found consistent core strength ratios.</p>\r\n<h3>How to Test Core Strength Ratios</h3>\r\n<p>To assess a client\'s core strength ratios, follow these steps for isometric core ratio testing:</p>\r\n<ul>\r\n<li>Isometric Flexion</li>\r\n<li>Isometric Side Bridging (both sides)</li>\r\n<li>Isometric Extension</li>\r\n</ul>\r\n<p>Each test should be performed in this order, timed, and observed for technique. Clients must hold each position as long as possible without encouragement to ensure natural results.</p>\r\n<h3>Calculating the Ratios</h3>\r\n<p>After testing, calculate the core strength ratios:</p>\r\n<ul>\r\n<li><strong>Draw a Grid</strong>: Note the times in seconds for each test.</li>\r\n<li><strong>Calculate Ratios</strong>: Divide the flexion time by the extension time to get the flexor-to-extensor strength ratio. Repeat for side bridging to assess lateral flexor strength ratios, which can indicate asymmetries.</li>\r\n</ul>\r\n<h3>Using the Data to Build Training Programs</h3>\r\n<p>With the ratios calculated, you can design a balanced training program:</p>\r\n<ul>\r\n<li>Flexor Training: If the flexor ratio is low, incorporate isometric flexion exercises.</li>\r\n<li>Lateral Training: If one side\'s ratio is low, include isometric side bridging.</li>\r\n<li>Extension Training: If the extension ratio is low, add isometric extension exercises.</li>\r\n<li>Monitor progress closely and re-measure ratios regularly to prevent overcompensation.</li>\r\n</ul>\r\n<h3>Achieving Balance and Stability</h3>\r\n<p>Once the ratios align with the norms, shift the focus to endurance for stability and trunk control.</p>\r\n<h3>Enhance Your Training Skills</h3>\r\n<p>Would you like to reduce your clients\' risk of injury and help them achieve even better results? Learn more about our Biomechanics Coach Diploma, which now includes a Level 4 Low Back Pain Qualification. Click here to start your journey toward becoming an expert personal trainer.</p>','The Core Ratios: The Personal Trainers Guide To Assessing & Programming For The Core','','inherit','closed','closed','','16411-revision-v1','','','2024-09-05 09:45:15','2024-09-05 09:45:15','',16411,'https://biomechanicseducation.com/?p=39557',0,'revision','',0),(39558,3,'2024-09-05 09:46:20','2024-09-05 09:46:20','<h2>Introduction</h2>\r\nA key component of training stability and control for movement and sports is understanding the strength ratios around the trunk or core. This essential aspect of core assessment and training is often overlooked in the fitness industry. Without balanced strength ratios, clients are at a higher risk of injury.\r\n<h3>Why Are Core Strength Ratios Important?</h3>\r\nConsider this: would you train your core by doing side bridges on only one side? It wouldn\'t make sense, yet many core training programs lack balance, often focusing on flexion (e.g., plank variations) without enough extension exercises. This imbalance neglects the principle that muscles work in pairs, leading to either flexion-dominant or extension-dominant programs. To create effective core training routines, personal trainers need to measure and consider their clients\' core strength ratios.\r\n\r\nFortunately, Professor Stuart McGill from Waterloo University has conducted extensive research on this topic. His studies, initially involving 20 athletes and later expanding to 150 subjects of various demographics, found consistent core strength ratios.\r\n<h3>How to Test Core Strength Ratios</h3>\r\nTo assess a client\'s core strength ratios, follow these steps for isometric core ratio testing:\r\n<ul>\r\n 	<li>Isometric Flexion</li>\r\n 	<li>Isometric Side Bridging (both sides)</li>\r\n 	<li>Isometric Extension</li>\r\n</ul>\r\nEach test should be performed in this order, timed, and observed for technique. Clients must hold each position as long as possible without encouragement to ensure natural results.\r\n<h3>Calculating the Ratios</h3>\r\nAfter testing, calculate the core strength ratios:\r\n<ul>\r\n 	<li><strong>Draw a Grid</strong>: Note the times in seconds for each test.</li>\r\n 	<li><strong>Calculate Ratios</strong>: Divide the flexion time by the extension time to get the flexor-to-extensor strength ratio. Repeat for side bridging to assess lateral flexor strength ratios, which can indicate asymmetries.</li>\r\n</ul>\r\n<h3>Using the Data to Build Training Programs</h3>\r\nWith the ratios calculated, you can design a balanced training program:\r\n<ul>\r\n 	<li>Flexor Training: If the flexor ratio is low, incorporate isometric flexion exercises.</li>\r\n 	<li>Lateral Training: If one side\'s ratio is low, include isometric side bridging.</li>\r\n 	<li>Extension Training: If the extension ratio is low, add isometric extension exercises.</li>\r\n 	<li>Monitor progress closely and re-measure ratios regularly to prevent overcompensation.</li>\r\n</ul>\r\n<h3>Achieving Balance and Stability</h3>\r\nOnce the ratios align with the norms, shift the focus to endurance for stability and trunk control.\r\n<h3>Enhance Your Training Skills</h3>\r\nWould you like to reduce your clients\' risk of injury and help them achieve even better results? Learn more about our Biomechanics Coach Diploma, which now includes a Level 4 Low Back Pain Qualification. Click here to start your journey toward becoming an expert personal trainer.','The Core Ratios: The Personal Trainers Guide To Assessing & Programming For The Core','','inherit','closed','closed','','16411-revision-v1','','','2024-09-05 09:46:20','2024-09-05 09:46:20','',16411,'https://biomechanicseducation.com/?p=39558',0,'revision','',0),(39559,3,'2024-09-05 10:03:34','2024-09-05 10:03:34','<h2>Introduction</h2>\r\nIn this second part of our series on pelvic biomechanics, we shift our focus from the bones of the hip to the muscles that control and influence hip movement. Understanding these muscles and their functions is crucial for improving client mobility, confidence, and reducing pain.\r\n<h3>Visual and Practical Learning Approach</h3>\r\n<strong>To enhance your learning experience:</strong>\r\n<ol>\r\n 	<li>Visualize Muscle Attachments: Use anatomy books or skeleton models to see where muscles attach.</li>\r\n 	<li>Simulate Actions: Use resistance bands to replicate muscle actions on a skeleton.</li>\r\n 	<li>Engage Physically: Perform the muscle actions yourself and palpate the areas involved.</li>\r\n 	<li>Document Movements: Write down the movements and exercises each muscle contributes to in your anatomy notebook.</li>\r\n</ol>\r\n<h3>The Gluteal Muscles</h3>\r\n<strong>Gluteus Maximus</strong>\r\n<ul>\r\n 	<li>Function: Primary hip extensor, lateral rotator, abductor (through the ITB), and adductor.</li>\r\n 	<li>Attachments: Coccyx, sacrum, posterior iliac crest, ITB, and gluteal tuberosity.</li>\r\n 	<li>Role: Involved in squats, deadlifts, standing, sitting, walking, and stair climbing. Maintains a balance with hip flexors in a 1:1 strength ratio.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24770\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/1401137150-huge-scaled-1.jpg\" alt=\"\" width=\"560\" height=\"560\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Gluteus Medius</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Abducts the hip; anterior fibers flex and medially rotate the hip, posterior fibers extend and laterally rotate the hip.</li>\r\n 	<li>Attachments: Ilium to the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24771\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1377046316-scaled-1.jpg\" alt=\"\" width=\"419\" height=\"559\" />\r\n\r\n&nbsp;\r\n<h3>Gluteus Minimus</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Abducts, flexes, and internally rotates the hip.</li>\r\n 	<li>Attachments: Outer surface of the ilium to the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24772\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1350320282-scaled-1.jpg\" alt=\"\" width=\"376\" height=\"501\" />\r\n\r\n<span style=\"font-weight: 400;\">All this said, let\'s simplify the role of the glutei in movement.</span>\r\n\r\n<span style=\"font-weight: 400;\">Collectively they produce ‘primarily’ hip extension, hip abduction &amp; hip stabilisation during fundamental movements. Max being the big hip extensor &amp; Min/Med the main Abductors…..see other contributors coming up.</span>\r\n\r\n&nbsp;\r\n\r\n<b>So What?</b><span style=\"font-weight: 400;\"> - Well we do spend quite a bit of time squelched on top of Glute Max, maybe if we sit on the side of our hip we are also squelching glute min/med somewhat too. We do this for prolonged periods then we expect them to produce all of these actions as well as stabilise our spine/upper body &amp; head on top while controlling the motion of our limbs below!</span>\r\n\r\nThe brain is fantastic at creating physical compensations to adapt to the environment we live in &amp; enable our body to reserve energy. This alters the functionality of the compensatory structures. so the example of sitting isn\'t necessarily bad for us, its the lack of physical variety that our body responds negatively to over time.  The best &amp; simplest advice we can give to our clients is to keep changing position &amp; keep moving, along with safe, effective &amp; evidence backed techniques like the ones in the iMoveFreely programme.\r\n\r\n&nbsp;\r\n<h3><b>Hip Flexors </b></h3>\r\n<ul>\r\n 	<li>Iliopsoas (Iliacus and Psoas Major)</li>\r\n 	<li>Iliacus: Flexes the hip or trunk; tilts the pelvis anteriorly.</li>\r\n 	<li>Psoas Major: Flexes the hip or trunk; tilts the pelvis anteriorly.</li>\r\n 	<li>Psoas Minor: Present in 40% of people; assists in lumbar extension and posteriorly tilts the pelvis.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24773\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293557031-scaled-1.jpg\" alt=\"\" width=\"466\" height=\"622\" />\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24774\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_223319263-scaled-1.jpg\" alt=\"\" width=\"472\" height=\"630\" />\r\n\r\n&nbsp;\r\n<h3>Tensor Fasciae Latae (TFL)</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Hip flexion, internal rotation, and abduction.</li>\r\n 	<li><strong>Attachments</strong>: Iliac crest to the ITB.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24775\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_149230190-scaled-1.jpg\" alt=\"\" width=\"520\" height=\"650\" />\r\n<h3>Sartorius</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Flexes, laterally rotates, and abducts the hip; flexes and medially rotates the knee.</li>\r\n 	<li><strong>Attachments</strong>: ASIS to the medial tibia.</li>\r\n 	<li><strong>Unique Feature</strong>: Known as the \"4 Sign positioner\" due to its action resembling a number 4.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24776\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_303065684-scaled-1.jpg\" alt=\"\" width=\"422\" height=\"562\" />\r\n<h5>Lateral Rotators</h5>\r\n<h3>Piriformis</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Laterally rotates the hip when extended, becomes an internal rotator when the hip is flexed above 70-90 degrees, and always acts as an abductor.</li>\r\n 	<li><strong>Attachments</strong>: Sacrum to the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24777\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293555465-scaled-1.jpg\" alt=\"\" width=\"462\" height=\"615\" />\r\n<h3>Quadratus Femoris</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Laterally rotates the hip.</li>\r\n 	<li><strong>Attachments</strong>: Ischium to the posterior femur.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24786\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-09.03.16.png\" alt=\"\" width=\"249\" height=\"354\" />\r\n<h3>Obturator Internus and Externus</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Laterally rotate the thigh and abduct it in a flexed position.</li>\r\n 	<li><strong>Attachments</strong>: Inferior obturator foramen to the medial surface of the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24784\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.59.52.png\" alt=\"\" width=\"252\" height=\"339\" />\r\n<h3><b>Obturator Externus</b></h3>\r\n<span style=\"font-weight: 400;\">See above for actions &amp; this muscle</span><span style=\"font-weight: 400;\"> does this because of its attachments from the Rami (meaning branch - remus is singular, rami plural) of pubis (part of pelvis behind the pubic hair) &amp; itchy bum (ischium) to the trochanter fossa (ditch) - anything being memorised yet???</span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24785\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.59.31.png\" alt=\"\" width=\"232\" height=\"339\" />\r\n<h3>Gemellus Superior and Inferior</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Laterally rotate the hip.</li>\r\n 	<li><strong>Attachments</strong>: Ischial spine (superior) and ischial tuberosity (inferior) to the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24781\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1757766335-scaled-1.jpg\" alt=\"\" width=\"478\" height=\"478\" />\r\n\r\n&nbsp;\r\n<h3>Pelvic Floor and Adductors</h3>\r\n<h4>Pelvic Floor</h4>\r\n<strong>Function</strong>: Supports pelvic organs, controls bowel and bladder movements, and plays a role in sexual function.\r\n\r\n<strong>Training</strong>: Important to maintain flexibility and strength, similar to other muscles.\r\n<ul>\r\n 	<li><strong>Adductors</strong> (Magnus, Longus, Brevis, Pectineus, Gracilis)</li>\r\n 	<li><strong>Function</strong>: Adduct the hip and assist in other movements like hip extension.</li>\r\n 	<li><strong>Attachments</strong>: Pubis and ischium to the femur and tibia.</li>\r\n 	<li><strong>Unique Features</strong>: Adductor Magnus also known as the \"4th hamstring\" due to its role in hip extension.</li>\r\n</ul>\r\n<h4>Key Actions and Movement Assessment</h4>\r\n<ul>\r\n 	<li><strong>Posterior and Anterior Tilt</strong>: Movements that tilt the pelvis forward or backward.</li>\r\n 	<li><strong>Circumduction</strong>: Circular movement of the hip.</li>\r\n 	<li><strong>Abduction and Adduction</strong>: Movements that take the leg away from or towards the body.</li>\r\n 	<li><strong>Flexion and Extension</strong>: Bending and straightening of the hip.</li>\r\n 	<li><strong>Internal and External Rotation</strong>: Rotating the hip inwards or outwards.</li>\r\n</ul>\r\nBy understanding the detailed anatomy and function of these muscles, you can better assess and enhance your client\'s hip function. To learn more and gain practical skills, consider attending our online workshops and webinars.\r\n\r\nFurther Learning and Certification:\r\n\r\nPelvic &amp; Spine Biomechanics Online CPD Training\r\n\r\nPelvic Biomechanics Practical Anatomy Webinar – Part 1 &amp; 2\r\n\r\nStay tuned for the next part of this series where we will delve deeper into the intricate workings of the hip musculature and their implications in movement and stability.','Pelvic (Hip) Biomechanics – Part 2 – The Muscles of the Hip','','inherit','closed','closed','','24764-autosave-v1','','','2024-09-05 10:03:34','2024-09-05 10:03:34','',24764,'https://biomechanicseducation.com/?p=39559',0,'revision','',0),(39560,3,'2024-09-05 10:03:28','2024-09-05 10:03:28','<h2>Introduction</h2>\r\nIn this second part of our series on pelvic biomechanics, we shift our focus from the bones of the hip to the muscles that control and influence hip movement. Understanding these muscles and their functions is crucial for improving client mobility, confidence, and reducing pain.\r\n<h3>Visual and Practical Learning Approach</h3>\r\n<strong>To enhance your learning experience:</strong>\r\n<ol>\r\n 	<li>Visualize Muscle Attachments: Use anatomy books or skeleton models to see where muscles attach.</li>\r\n 	<li>Simulate Actions: Use resistance bands to replicate muscle actions on a skeleton.</li>\r\n 	<li>Engage Physically: Perform the muscle actions yourself and palpate the areas involved.</li>\r\n 	<li>Document Movements: Write down the movements and exercises each muscle contributes to in your anatomy notebook.</li>\r\n</ol>\r\n<h3>The Gluteal Muscles</h3>\r\n<strong>Gluteus Maximus</strong>\r\n<ul>\r\n 	<li>Function: Primary hip extensor, lateral rotator, abductor (through the ITB), and adductor.</li>\r\n 	<li>Attachments: Coccyx, sacrum, posterior iliac crest, ITB, and gluteal tuberosity.</li>\r\n 	<li>Role: Involved in squats, deadlifts, standing, sitting, walking, and stair climbing. Maintains a balance with hip flexors in a 1:1 strength ratio.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24770\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/1401137150-huge-scaled-1.jpg\" alt=\"\" width=\"560\" height=\"560\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Gluteus Medius</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Abducts the hip; anterior fibers flex and medially rotate the hip, posterior fibers extend and laterally rotate the hip.</li>\r\n 	<li>Attachments: Ilium to the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24771\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1377046316-scaled-1.jpg\" alt=\"\" width=\"419\" height=\"559\" />\r\n\r\n&nbsp;\r\n<h3>Gluteus Minimus</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Abducts, flexes, and internally rotates the hip.</li>\r\n 	<li>Attachments: Outer surface of the ilium to the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24772\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1350320282-scaled-1.jpg\" alt=\"\" width=\"376\" height=\"501\" />\r\n\r\n<span style=\"font-weight: 400;\">All this said, let\'s simplify the role of the glutei in movement.</span>\r\n\r\n<span style=\"font-weight: 400;\">Collectively they produce ‘primarily’ hip extension, hip abduction &amp; hip stabilisation during fundamental movements. Max being the big hip extensor &amp; Min/Med the main Abductors…..see other contributors coming up.</span>\r\n\r\n&nbsp;\r\n\r\n<b>So What?</b><span style=\"font-weight: 400;\"> - Well we do spend quite a bit of time squelched on top of Glute Max, maybe if we sit on the side of our hip we are also squelching glute min/med somewhat too. We do this for prolonged periods then we expect them to produce all of these actions as well as stabilise our spine/upper body &amp; head on top while controlling the motion of our limbs below!</span>\r\n\r\nThe brain is fantastic at creating physical compensations to adapt to the environment we live in &amp; enable our body to reserve energy. This alters the functionality of the compensatory structures. so the example of sitting isn\'t necessarily bad for us, its the lack of physical variety that our body responds negatively to over time.  The best &amp; simplest advice we can give to our clients is to keep changing position &amp; keep moving, along with safe, effective &amp; evidence backed techniques like the ones in the iMoveFreely programme.\r\n\r\n&nbsp;\r\n<h3><b>Hip Flexors </b></h3>\r\n<ul>\r\n 	<li>Iliopsoas (Iliacus and Psoas Major)</li>\r\n 	<li>Iliacus: Flexes the hip or trunk; tilts the pelvis anteriorly.</li>\r\n 	<li>Psoas Major: Flexes the hip or trunk; tilts the pelvis anteriorly.</li>\r\n 	<li>Psoas Minor: Present in 40% of people; assists in lumbar extension and posteriorly tilts the pelvis.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24773\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293557031-scaled-1.jpg\" alt=\"\" width=\"466\" height=\"622\" />\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24774\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_223319263-scaled-1.jpg\" alt=\"\" width=\"472\" height=\"630\" />\r\n\r\n&nbsp;\r\n<h3>Tensor Fasciae Latae (TFL)</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Hip flexion, internal rotation, and abduction.</li>\r\n 	<li><strong>Attachments</strong>: Iliac crest to the ITB.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24775\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_149230190-scaled-1.jpg\" alt=\"\" width=\"520\" height=\"650\" />\r\n<h3>Sartorius</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Flexes, laterally rotates, and abducts the hip; flexes and medially rotates the knee.</li>\r\n 	<li><strong>Attachments</strong>: ASIS to the medial tibia.</li>\r\n 	<li><strong>Unique Feature</strong>: Known as the \"4 Sign positioner\" due to its action resembling a number 4.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24776\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_303065684-scaled-1.jpg\" alt=\"\" width=\"422\" height=\"562\" />\r\n<h5>Lateral Rotators</h5>\r\n<h3>Piriformis</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Laterally rotates the hip when extended, becomes an internal rotator when the hip is flexed above 70-90 degrees, and always acts as an abductor.</li>\r\n 	<li><strong>Attachments</strong>: Sacrum to the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24777\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293555465-scaled-1.jpg\" alt=\"\" width=\"462\" height=\"615\" />\r\n<h3>Quadratus Femoris</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Laterally rotates the hip.</li>\r\n 	<li><strong>Attachments</strong>: Ischium to the posterior femur.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24786\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-09.03.16.png\" alt=\"\" width=\"249\" height=\"354\" />\r\n<h3>Obturator Internus and Externus</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Laterally rotate the thigh and abduct it in a flexed position.</li>\r\n 	<li><strong>Attachments</strong>: Inferior obturator foramen to the medial surface of the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24784\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.59.52.png\" alt=\"\" width=\"252\" height=\"339\" />\r\n<h3><b>Obturator Externus</b></h3>\r\n<span style=\"font-weight: 400;\">See above for actions &amp; this muscle</span><span style=\"font-weight: 400;\"> does this because of its attachments from the Rami (meaning branch - remus is singular, rami plural) of pubis (part of pelvis behind the pubic hair) &amp; itchy bum (ischium) to the trochanter fossa (ditch) - anything being memorised yet???</span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24785\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.59.31.png\" alt=\"\" width=\"232\" height=\"339\" />\r\n<h3>Gemellus Superior and Inferior</h3>\r\n<ul>\r\n 	<li><strong>Function</strong>: Laterally rotate the hip.</li>\r\n 	<li><strong>Attachments</strong>: Ischial spine (superior) and ischial tuberosity (inferior) to the greater trochanter.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24781\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1757766335-scaled-1.jpg\" alt=\"\" width=\"478\" height=\"478\" />\r\n\r\n&nbsp;\r\n<h3>Pelvic Floor and Adductors</h3>\r\n<h4>Pelvic Floor</h4>\r\n<strong>Function</strong>: Supports pelvic organs, controls bowel and bladder movements, and plays a role in sexual function.\r\n\r\n<strong>Training</strong>: Important to maintain flexibility and strength, similar to other muscles.\r\n<ul>\r\n 	<li><strong>Adductors</strong> (Magnus, Longus, Brevis, Pectineus, Gracilis)</li>\r\n 	<li><strong>Function</strong>: Adduct the hip and assist in other movements like hip extension.</li>\r\n 	<li><strong>Attachments</strong>: Pubis and ischium to the femur and tibia.</li>\r\n 	<li><strong>Unique Features</strong>: Adductor Magnus also known as the \"4th hamstring\" due to its role in hip extension.</li>\r\n</ul>\r\n<h4>Key Actions and Movement Assessment</h4>\r\n<ul>\r\n 	<li><strong>Posterior and Anterior Tilt</strong>: Movements that tilt the pelvis forward or backward.</li>\r\n 	<li><strong>Circumduction</strong>: Circular movement of the hip.</li>\r\n 	<li><strong>Abduction and Adduction</strong>: Movements that take the leg away from or towards the body.</li>\r\n 	<li><strong>Flexion and Extension</strong>: Bending and straightening of the hip.</li>\r\n 	<li><strong>Internal and External Rotation</strong>: Rotating the hip inwards or outwards.</li>\r\n</ul>\r\nBy understanding the detailed anatomy and function of these muscles, you can better assess and enhance your client\'s hip function. To learn more and gain practical skills, consider attending our online workshops and webinars.\r\n\r\nFurther Learning and Certification:\r\n\r\nPelvic &amp; Spine Biomechanics Online CPD Training\r\n\r\nPelvic Biomechanics Practical Anatomy Webinar – Part 1 &amp; 2\r\n\r\nStay tuned for the next part of this series where we will delve deeper into the intricate workings of the hip musculature and their implications in movement and stability.','Pelvic (Hip) Biomechanics – Part 2 – The Muscles of the Hip','','inherit','closed','closed','','24764-revision-v1','','','2024-09-05 10:03:28','2024-09-05 10:03:28','',24764,'https://biomechanicseducation.com/?p=39560',0,'revision','',0),(39561,3,'2024-09-05 10:13:15','2024-09-05 10:13:15','<h2>gh</h2>\n<h2></h2>\n<h2>Introduction</h2>\nIn the realm of personal training, regardless of the sports or exercises your clients engage in, understanding and optimizing their intrinsic biomechanics is paramount. It serves as a crucial complement to their physiological and functional training, forming the foundation upon which a safe and effective functional training program can be built.\n\n&nbsp;\n\n<b><img class=\"aligncenter wp-image-3693\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/seek-a-professional-1.jpg\" alt=\"\" width=\"372\" height=\"248\" /></b>\n<h3>Risk Reduction</h3>\nInjuries can stem from various factors such as poor technique, inadequate core function, lack of preparation, or limited range of motion in relevant structures. However, one often overlooked aspect is correct biomechanical function. An intrinsic biomechanical screening can unveil flaws in pelvic, spinal, shoulder, knee, and foot function. Additionally, it can detect low-grade muscle spasms that may hinder movement and joint function.\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"279\" height=\"279\" /></span>\n\n&nbsp;\n\nFor instance, a rotated pelvis leading to a functional leg length discrepancy can predispose individuals to diverse injuries, ranging from lower back pain and knee pain to hamstring strains and shoulder discomfort. By addressing issues like pelvic function through screening, the risk of such injuries can be significantly mitigated.\n<h3>Screening Protocols</h3>\nIntrinsic biomechanical screening involves assessing various aspects of musculoskeletal and nervous system function. These screens aim to identify potential areas of dysfunction or compensation that could predispose clients to injuries. Some common screening protocols include the 4 Sign Screen &amp; Exercise and techniques like improving squat form with chest release.\n<h4>4 Sign Screen &amp; Exercise</h4>\nhttps://youtu.be/_Lkur9ZcNXw\n<h4>Improve Your Squat with Chest Release</h4>\nhttps://youtu.be/544p5UVtFXY\n<h4>Want to Learn More?</h4>\nIf you\'re eager to deepen your understanding of intrinsic biomechanics and how it can be applied in personal training, consider booking a consultation with us. Our experts can provide tailored guidance and insights to enhance your training programs and minimize injury risks for your clients.','Risk Reduction & Intrinsic Biomechanics','','inherit','closed','closed','','4779-autosave-v1','','','2024-09-05 10:13:15','2024-09-05 10:13:15','',4779,'https://biomechanicseducation.com/?p=39561',0,'revision','',0),(39562,3,'2024-09-05 10:14:22','2024-09-05 10:14:22','<h2>gh</h2>\r\n<h2></h2>\r\n<h2>Introduction</h2>\r\nIn the realm of personal training, regardless of the sports or exercises your clients engage in, understanding and optimizing their intrinsic biomechanics is paramount. It serves as a crucial complement to their physiological and functional training, forming the foundation upon which a safe and effective functional training program can be built.\r\n\r\n&nbsp;\r\n\r\n<b><img class=\"aligncenter wp-image-3693\" src=\"https://biomechanicseducation.com/wp-content/uploads/2017/10/seek-a-professional-1.jpg\" alt=\"\" width=\"372\" height=\"248\" /></b>\r\n<h3>Risk Reduction</h3>\r\nInjuries can stem from various factors such as poor technique, inadequate core function, lack of preparation, or limited range of motion in relevant structures. However, one often overlooked aspect is correct biomechanical function. An intrinsic biomechanical screening can unveil flaws in pelvic, spinal, shoulder, knee, and foot function. Additionally, it can detect low-grade muscle spasms that may hinder movement and joint function.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"279\" height=\"279\" /></span>\r\n\r\n&nbsp;\r\n\r\nFor instance, a rotated pelvis leading to a functional leg length discrepancy can predispose individuals to diverse injuries, ranging from lower back pain and knee pain to hamstring strains and shoulder discomfort. By addressing issues like pelvic function through screening, the risk of such injuries can be significantly mitigated.\r\n<h3>Screening Protocols</h3>\r\nIntrinsic biomechanical screening involves assessing various aspects of musculoskeletal and nervous system function. These screens aim to identify potential areas of dysfunction or compensation that could predispose clients to injuries. Some common screening protocols include the 4 Sign Screen &amp; Exercise and techniques like improving squat form with chest release.\r\n<h4>4 Sign Screen &amp; Exercise</h4>\r\nhttps://youtu.be/_Lkur9ZcNXw\r\n<h4>Improve Your Squat with Chest Release</h4>\r\nhttps://youtu.be/544p5UVtFXY\r\n<h4>Want to Learn More?</h4>\r\nIf you\'re eager to deepen your understanding of intrinsic biomechanics and how it can be applied in personal training, consider booking a consultation with us. Our experts can provide tailored guidance and insights to enhance your training programs and minimize injury risks for your clients.','Risk Reduction & Intrinsic Biomechanics','','inherit','closed','closed','','4779-revision-v1','','','2024-09-05 10:14:22','2024-09-05 10:14:22','',4779,'https://biomechanicseducation.com/?p=39562',0,'revision','',0),(39564,3,'2024-09-05 10:25:25','2024-09-05 10:25:25','<h2>Introduction:</h2>\r\nBiomechanics, essentially the application of mechanics to biology, plays a pivotal role in understanding how the body responds to forces and displacements. It encompasses both extrinsic and intrinsic biomechanics, each serving distinct purposes in the realm of human movement and performance.\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-30503 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/IMG_2288-300x300.jpg\" alt=\"\" width=\"356\" height=\"356\" />\r\n<h3>Extrinsic Biomechanics:</h3>\r\nExtrinsic biomechanics focuses on analysing movements and tasks to determine the most efficient ways to perform them. It is integral to sports, health, fitness, and work-related physical conditioning. Understanding fundamental mechanical principles like levers and equilibrium is crucial before delving into more complex functional movements.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2><span style=\"font-weight: 400;\"><img class=\" wp-image-27751 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1311339359-1-300x222.jpg\" alt=\"\" width=\"350\" height=\"259\" />\r\n</span></h2>\r\n<h3>Intrinsic Biomechanics:</h3>\r\nIntrinsic biomechanics delves into how the body mechanically functions during movement or tasks. It significantly influences how the body compensates during functional activities, and understanding intrinsic biomechanics is essential for identifying and addressing movement faults and minimizing injury risks.\r\n<h3>Applications of Biomechanics:</h3>\r\nBiomechanics finds extensive application in elite sports, where analyzing extrinsic biomechanics can reveal performance inefficiencies like energy leaks or suboptimal power production. However, intrinsic biomechanics provides a deeper understanding, pinpointing specific areas or structures contributing to faulty performance.\r\n<h3>Benefits of Biomechanics:</h3>\r\nBiomechanics offers numerous benefits, including evidence-based assessments, performance feedback, injury risk identification, and tailored exercise prescription. It deepens our understanding of movement and enables bespoke programming to optimize performance and minimize injury risks.\r\n<h3>Elements of Biomechanics:</h3>\r\nUnderstanding elements like equilibrium, levers, and turning forces is crucial in biomechanics. Equilibrium pertains to body balance, while levers and turning forces elucidate how forces interact within the body during movement.\r\n<h4>Equilibrium</h4>\r\nEquilibrium is often divided into 2 sections:\r\n<ol>\r\n 	<li>Static; which is concerned with the body in balance</li>\r\n 	<li>Dynamic; which is concerned with the body in a range of motion.</li>\r\n</ol>\r\n<h3>Levers</h3>\r\nA lever is a simple machine that enables work to be done more easily and/or more quickly by applying forces. A lever consists of a straight bar with 3 points:\r\n\r\nPoint 1. Where there is a fixed fulcrum\r\n\r\nPoint 2. Where there is a resistance or weight acting upon the lever\r\n\r\nPoint 3. Where the force or power is applied to the lever.\r\n\r\nThis can be applied to the body when considering the bones as the lever, the joint as a fulcrum or pivot point and the muscles contracting to produce the force.\r\n<h3>Careers in Biomechanics:</h3>\r\nThe field of biomechanics offers diverse career opportunities, ranging from biomechanics coaching and training to research and engineering. Various qualifications, from university degrees to specialized diplomas and workshops, cater to different interests and educational backgrounds.\r\n<h3>Conclusion:</h3>\r\nBiomechanics serves as a scientific foundation for understanding human movement, enhancing sports performance, and minimizing injury risks. Its evidence-based approach and multidisciplinary applications make it indispensable in various fields, from sports science to healthcare and beyond.\r\n\r\n&nbsp;\r\n<h2><span style=\"font-weight: 400;\"> </span></h2>\r\n&nbsp;\r\n<h1></h1>','What is biomechanics?','','inherit','closed','closed','','33064-revision-v1','','','2024-09-05 10:25:25','2024-09-05 10:25:25','',33064,'https://biomechanicseducation.com/?p=39564',0,'revision','',0),(39565,3,'2024-09-05 10:33:49','2024-09-05 10:33:49','The shoulder is a marvel of biomechanics, heavily reliant on robust muscle tone and function for optimal performance. In this exploration, we delve into the intricate web of shoulder muscles to illuminate their roles and significance in movement and stability.\r\n<h3>Deltoids</h3>\r\nThe Powerhouses Formerly known as deltoidious, these muscles are the largest and strongest in the shoulder region. Their name derives from the Greek letter delta, symbolizing change. With origins spanning the spine of the scapula, acromion, and clavicle, they extend to the deltoid tuberosity of the humerus. Divided into anterior, lateral, and posterior parts, they facilitate a range of movements including flexion, abduction, and extension.\r\n\r\n<span style=\"font-weight: 400;\">  </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25696\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1697704519-scaled-1.jpg\" alt=\"\" width=\"533\" height=\"533\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h3>Supraspinatus</h3>\r\nThe Stabilizer Despite its relatively small size, the supraspinatus plays a crucial role in shoulder stability. Positioned atop the scapular spine, it aids deltoids in abduction and humeral head stabilization, particularly in the initial phase of abduction.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25468\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_293547812-scaled.jpg\" alt=\"\" width=\"449\" height=\"599\" />\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h3>Teres Minor</h3>\r\nThe Rotator Situated between the infraspinatus and teres major, this muscle assists in lateral rotation of the arm and stabilizes the glenohumeral joint, contributing to overall shoulder mobility and stability.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25698\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_293546465-scaled-1.jpg\" alt=\"\" width=\"495\" height=\"660\" />\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h3>Infraspinatus</h3>\r\nThe Biscuit Muscle Located posteriorly on the scapula, the infraspinatus earns its nickname due to its texture resembling biscuit crumbs. As a lateral rotator, it helps maintain shoulder function and can be tested through specific range of motion exercises.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24188\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_147943874-scaled-1.jpg\" alt=\"\" width=\"646\" height=\"517\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Subscapularis</h3>\r\nThe Internal Rotator Working in tandem with the pectoralis major, the subscapularis aids internal rotation of the arm. Positioned on the anterior surface of the scapula, it attaches to the humerus, contributing to shoulder stability and mobility.\r\n<h3>Trapezius</h3>\r\nThe Shoulder Blanket With its distinct diamond shape, the trapezius covers the back of the shoulders, comprising upper, medial, and lower fibers. Its actions include shoulder elevation, depression, retraction, and neck movements, offering essential support during various upper body activities.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25700\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1335929453-scaled-1.jpg\" alt=\"\" width=\"586\" height=\"782\" />\r\n\r\n&nbsp;\r\n<h3>Latissimus Dorsi</h3>\r\nThe Broad Puller As the broadest muscle of the back, the latissimus dorsi aids in arm adduction, extension, and internal rotation. Its attachment from the scapula to the humerus enables powerful pulling movements.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25701\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_145358134-scaled-1.jpg\" alt=\"\" width=\"510\" height=\"510\" />\r\n\r\n&nbsp;\r\n<h3>Teres Major</h3>\r\nThe Lats\' Ally Functioning similarly to the latissimus dorsi, the teres major assists in shoulder extension, adduction, and internal rotation, complementing the actions of its larger counterpart.\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25470\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1697704909-scaled.jpg\" alt=\"\" width=\"619\" height=\"619\" />\r\n\r\n&nbsp;\r\n<h3>Rhomboids Major &amp; Minor</h3>\r\nThe Scapular Stabilizers These muscles work together to retract and stabilize the scapula, counteracting the effects of prolonged forward shoulder posture.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25471\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_293547224-scaled.jpg\" alt=\"\" width=\"653\" height=\"870\" />\r\n\r\n&nbsp;\r\n<h3>Levator Scapulae</h3>\r\nThe Scapula Elevator Originating from the cervical spine, the levator scapulae aids in scapular elevation and rotation, playing a pivotal role in neck and shoulder movements.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25472\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1800822229-scaled-1.jpg\" alt=\"\" width=\"596\" height=\"596\" />\r\n\r\n&nbsp;\r\n<h3>Serratus Anterior</h3>\r\nThe Scapula Protractor Despite its intricate anatomy, the serratus anterior is crucial for scapular protraction and upward rotation, contributing to shoulder stability and range of motion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25703\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_293547815-scaled-1.jpg\" alt=\"\" width=\"600\" height=\"800\" />\r\n\r\n&nbsp;\r\n<h3>Pectoralis Minor</h3>\r\nThe Shoulder Depressor Attached to the coracoid process, the pectoralis minor aids in scapular protraction and depression, particularly affected by prolonged sitting and rounded shoulder posture.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25705\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_151422785-scaled-1.jpg\" alt=\"\" width=\"524\" height=\"698\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h3>Pectoralis Major</h3>\r\nThe Chest Powerhouse Distinct from the pectoralis minor, the pectoralis major facilitates arm adduction, flexion, and internal rotation, playing a significant role in upper body movements.\r\n<h4 style=\"text-align: center;\">Conclusion</h4>\r\n<p style=\"text-align: center;\">A World of Shoulder Movements From abduction to rotation, the shoulder boasts a myriad of movements, underscoring its complexity and vulnerability to dysfunction. Understanding the intricacies of shoulder anatomy enhances our ability to address issues and optimize performance.</p>\r\n<p style=\"text-align: center;\">This glimpse into shoulder biomechanics serves as a foundation for further exploration, emphasising the continuous learning journey inherent in anatomy study.</p>','Shoulder Biomechanics Part 6 – The Muscles of the Shoulder','','inherit','closed','closed','','25466-autosave-v1','','','2024-09-05 10:33:49','2024-09-05 10:33:49','',25466,'https://biomechanicseducation.com/?p=39565',0,'revision','',0),(39566,3,'2024-09-05 10:33:37','2024-09-05 10:33:37','The shoulder is a marvel of biomechanics, heavily reliant on robust muscle tone and function for optimal performance. In this exploration, we delve into the intricate web of shoulder muscles to illuminate their roles and significance in movement and stability.\r\n<h3>Deltoids</h3>\r\nThe Powerhouses Formerly known as deltoidious, these muscles are the largest and strongest in the shoulder region. Their name derives from the Greek letter delta, symbolizing change. With origins spanning the spine of the scapula, acromion, and clavicle, they extend to the deltoid tuberosity of the humerus. Divided into anterior, lateral, and posterior parts, they facilitate a range of movements including flexion, abduction, and extension.\r\n\r\n<span style=\"font-weight: 400;\">  </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25696\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1697704519-scaled-1.jpg\" alt=\"\" width=\"533\" height=\"533\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h3>Supraspinatus</h3>\r\nThe Stabilizer Despite its relatively small size, the supraspinatus plays a crucial role in shoulder stability. Positioned atop the scapular spine, it aids deltoids in abduction and humeral head stabilization, particularly in the initial phase of abduction.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25468\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_293547812-scaled.jpg\" alt=\"\" width=\"449\" height=\"599\" />\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h3>Teres Minor</h3>\r\nThe Rotator Situated between the infraspinatus and teres major, this muscle assists in lateral rotation of the arm and stabilizes the glenohumeral joint, contributing to overall shoulder mobility and stability.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25698\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_293546465-scaled-1.jpg\" alt=\"\" width=\"495\" height=\"660\" />\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h3>Infraspinatus</h3>\r\nThe Biscuit Muscle Located posteriorly on the scapula, the infraspinatus earns its nickname due to its texture resembling biscuit crumbs. As a lateral rotator, it helps maintain shoulder function and can be tested through specific range of motion exercises.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24188\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_147943874-scaled-1.jpg\" alt=\"\" width=\"646\" height=\"517\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Subscapularis</h3>\r\nThe Internal Rotator Working in tandem with the pectoralis major, the subscapularis aids internal rotation of the arm. Positioned on the anterior surface of the scapula, it attaches to the humerus, contributing to shoulder stability and mobility.\r\n<h3>Trapezius</h3>\r\nThe Shoulder Blanket With its distinct diamond shape, the trapezius covers the back of the shoulders, comprising upper, medial, and lower fibers. Its actions include shoulder elevation, depression, retraction, and neck movements, offering essential support during various upper body activities.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25700\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1335929453-scaled-1.jpg\" alt=\"\" width=\"586\" height=\"782\" />\r\n\r\n&nbsp;\r\n<h3>Latissimus Dorsi</h3>\r\nThe Broad Puller As the broadest muscle of the back, the latissimus dorsi aids in arm adduction, extension, and internal rotation. Its attachment from the scapula to the humerus enables powerful pulling movements.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25701\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_145358134-scaled-1.jpg\" alt=\"\" width=\"510\" height=\"510\" />\r\n\r\n&nbsp;\r\n<h3>Teres Major</h3>\r\nThe Lats\' Ally Functioning similarly to the latissimus dorsi, the teres major assists in shoulder extension, adduction, and internal rotation, complementing the actions of its larger counterpart.\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25470\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1697704909-scaled.jpg\" alt=\"\" width=\"619\" height=\"619\" />\r\n\r\n&nbsp;\r\n<h3>Rhomboids Major &amp; Minor</h3>\r\nThe Scapular Stabilizers These muscles work together to retract and stabilize the scapula, counteracting the effects of prolonged forward shoulder posture.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25471\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_293547224-scaled.jpg\" alt=\"\" width=\"653\" height=\"870\" />\r\n\r\n&nbsp;\r\n<h3>Levator Scapulae</h3>\r\nThe Scapula Elevator Originating from the cervical spine, the levator scapulae aids in scapular elevation and rotation, playing a pivotal role in neck and shoulder movements.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25472\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1800822229-scaled-1.jpg\" alt=\"\" width=\"596\" height=\"596\" />\r\n\r\n&nbsp;\r\n<h3>Serratus Anterior</h3>\r\nThe Scapula Protractor Despite its intricate anatomy, the serratus anterior is crucial for scapular protraction and upward rotation, contributing to shoulder stability and range of motion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25703\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_293547815-scaled-1.jpg\" alt=\"\" width=\"600\" height=\"800\" />\r\n\r\n&nbsp;\r\n<h3>Pectoralis Minor</h3>\r\nThe Shoulder Depressor Attached to the coracoid process, the pectoralis minor aids in scapular protraction and depression, particularly affected by prolonged sitting and rounded shoulder posture.\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25705\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_151422785-scaled-1.jpg\" alt=\"\" width=\"524\" height=\"698\" />\r\n<h2></h2>\r\n<h2></h2>\r\n<h3>Pectoralis Major</h3>\r\nThe Chest Powerhouse Distinct from the pectoralis minor, the pectoralis major facilitates arm adduction, flexion, and internal rotation, playing a significant role in upper body movements.\r\n<h4 style=\"text-align: center;\">Conclusion</h4>\r\n<p style=\"text-align: center;\">A World of Shoulder Movements From abduction to rotation, the shoulder boasts a myriad of movements, underscoring its complexity and vulnerability to dysfunction. Understanding the intricacies of shoulder anatomy enhances our ability to address issues and optimize performance.</p>\r\n<p style=\"text-align: center;\">This glimpse into shoulder biomechanics serves as a foundation for further exploration, emphasising the continuous learning journey inherent in anatomy study.</p>','Shoulder Biomechanics Part 6 – The Muscles of the Shoulder','','inherit','closed','closed','','25466-revision-v1','','','2024-09-05 10:33:37','2024-09-05 10:33:37','',25466,'https://biomechanicseducation.com/?p=39566',0,'revision','',0),(39568,3,'2024-09-05 11:07:23','2024-09-05 11:07:23','<h2>Introduction</h2>\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35138 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07008-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\nA biomechanical assessment evaluates how your body moves, both internally and externally. This comprehensive approach helps identify any dysfunctions or imbalances that could be affecting your performance or causing pain. There are two main types of biomechanical assessments:\r\n<ol>\r\n 	<li>Biomechanical Analysis Using Equipment</li>\r\n 	<li>Equipment-Free Biomechanical Assessment</li>\r\n</ol>\r\n&nbsp;\r\n<h3>Biomechanical Analysis Using Equipment</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35136 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.19.48-256x300.png\" alt=\"\" width=\"256\" height=\"300\" />\r\n\r\n&nbsp;\r\n<h3>Examples:</h3>\r\n<ul>\r\n 	<li><strong>Gait Analysis</strong>: Evaluates walking and running mechanics.</li>\r\n 	<li><strong>Bike Fitting</strong>: Adjusts bicycle components to fit the rider’s body.</li>\r\n 	<li><strong>Underwater Video Analysis</strong>: Observes a swimmer’s technique to identify areas for improvement.</li>\r\n</ul>\r\n<strong>Equipment-Free Biomechanical Assessment</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35139 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07295-181x300.jpg\" alt=\"\" width=\"181\" height=\"300\" />\r\n\r\n&nbsp;\r\n<h3>Examples:</h3>\r\n<ul>\r\n 	<li>Biomechanics Coach Screening: Assessing movement quality through various tests.</li>\r\n 	<li>Functional Movement Screen (FMS): Identifies movement dysfunctions.</li>\r\n 	<li>Range of Movement (ROM) Testing: Measures joint flexibility.</li>\r\n 	<li>Muscle Strength Testing: Evaluates muscle function and strength.</li>\r\n</ul>\r\n<h3>Who Conducts Biomechanical Assessments?</h3>\r\n&nbsp;\r\n<h4><b>Biomechanics Coaches </b></h4>\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35140 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07278-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBiomechanics Coaches are certified professionals who specialize in assessing and improving movement quality. They undergo extensive training, including a 7–9-month Diploma in Biomechanics Coaching, after qualifying in fields like personal training, sports therapy, or yoga. They perform detailed assessments of joint and muscle function to identify and address movement issues. You can find a registered Biomechanics Coach in the UK here.\r\n<h4>Podiatrists</h4>\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35141 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.19.56-277x300.png\" alt=\"\" width=\"277\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\nPodiatrists specialize in foot and lower limb biomechanics. They hold a degree or master’s degree and are registered with the Health &amp; Care Professions Council (HCPC). Podiatrists use advanced techniques like video gait analysis to diagnose and treat foot and ankle issues. Their interventions range from orthotic inserts to specialized exercises, and sometimes surgery.\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35142 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.14-257x300.png\" alt=\"\" width=\"257\" height=\"300\" />\r\n<h4></h4>\r\n<h4>Physiotherapists</h4>\r\nPhysiotherapists complete a minimum of a three-year degree and may specialize in various areas, including biomechanics. They assess muscle strength, range of motion, and movement patterns to diagnose and treat musculoskeletal problems. Physiotherapists often work in multidisciplinary teams in the NHS or privately and use a combination of manual therapy and exercise prescriptions to help patients recover from injuries.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35143 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.28-269x300.png\" alt=\"\" width=\"269\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4>Golf Coaches</h4>\r\nGolf coaches, often trained through the Professional Golfers Association (PGA), help players improve their biomechanics to enhance performance and reduce injury risk. They may use Functional Movement Screening (FMS) and video analysis to evaluate and refine a golfer’s swing. Look for SafeGolf or PGA-accredited coaches for certified expertise.\r\n\r\n<img class=\"size-medium wp-image-29232 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/08/GOLF-andrew-lomas-aGlpdQ2Yolk-unsplash-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\r\n\r\n&nbsp;\r\n<h4>Equine Biomechanics/Riding Coaches</h4>\r\nRiding coaches trained in equine biomechanics assess both the rider\'s and the horse\'s movement. This dual approach helps identify and correct imbalances that could affect performance. Coaches trained in human biomechanics can offer exercises to help riders maintain symmetry, benefiting both the rider and the horse. Find qualified coaches through the British Horse Society (BHS) or the Register of Biomechanics Coaches.\r\n<h3>Conclusion</h3>\r\nUnderstanding the importance of biomechanical assessments is crucial for optimizing movement and reducing pain. With various methods and professionals available, it\'s essential to choose the right type of assessment and assessor for your specific needs. Whether you’re a professional athlete, a casual exerciser, or experiencing movement issues, a biomechanical assessment can provide valuable insights and solutions.\r\n\r\nInterested in learning more? Sample our programmes here to start assessing and improving your biomechanics today!\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35144 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.42-278x300.png\" alt=\"\" width=\"278\" height=\"300\" />','Biomechanical assessment: everything you need to know','','inherit','closed','closed','','35126-revision-v1','','','2024-09-05 11:07:23','2024-09-05 11:07:23','',35126,'https://biomechanicseducation.com/?p=39568',0,'revision','',0),(39569,3,'2024-09-05 11:15:28','2024-09-05 11:15:28','<h2>Introduction</h2>\r\nNeuromuscular exercise may sound complex, but it\'s simpler than you think. This blog will demystify the biomechanics behind neuromuscular exercise and show you how it can enhance your training.\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-31433 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4665-300x102.jpg\" alt=\"\" width=\"494\" height=\"168\" />\r\n<h1></h1>\r\n<h3>What is Neuromuscular Exercise?</h3>\r\nNeuromuscular exercise involves activities that train both nerves (neuro) and muscles (muscular) to react and communicate efficiently. It focuses on the brain\'s ability to control limb movement and enhances joint stability through specific exercises.\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-31429 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4666-300x159.jpg\" alt=\"\" width=\"300\" height=\"159\" />\r\n\r\n&nbsp;\r\n<h3>The Science Behind Neuromuscular Control</h3>\r\nNeuromuscular control is the brain\'s process of managing limb movements. By training with neuromuscular exercises, you can improve your brain\'s ability to control muscles, enhancing stability and reducing injury risk.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><img class=\"size-medium wp-image-31430 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4667-300x137.jpg\" alt=\"\" width=\"300\" height=\"137\" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Benefits of Neuromuscular Exercise</h3>\r\n<ul>\r\n 	<li>Improved Biomechanics: Enhances muscle activation and joint stability.</li>\r\n 	<li>Balance and Coordination: Essential for everyone, especially those at risk of falls.</li>\r\n 	<li>Functional Strength: Builds strength in a way that supports everyday activities.</li>\r\n</ul>\r\n<h3>Key Neuromuscular Exercises</h3>\r\n<ul>\r\n 	<li>Coordination Training</li>\r\n 	<li>Balancing Exercises</li>\r\n 	<li>Trunk Conditioning</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-31432 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4098-300x255.jpg\" alt=\"\" width=\"300\" height=\"255\" />\r\n\r\n&nbsp;\r\n<h3>Why Gym Machines Aren’t Enough</h3>\r\nWhile gym machines have their place, they often lack the dynamic environment needed for effective neuromuscular training. Machines provide stability that can reduce the neuromuscular training effects required for specific sports or functional movements.\r\n<h3>Integrating Neuromuscular Training</h3>\r\nUnderstanding when and how to introduce neuromuscular exercises is crucial. Testing and assessing your clients’ biomechanics and movement quality can guide the timing and selection of appropriate exercises.\r\n<h3>Trunk Conditioning and Core Stability</h3>\r\nTrunk conditioning, or core stability, is vital for many clients. It involves progressively challenging the body\'s stabilizers, enhancing neuromuscular control over time. This can be measured using core assessment progressions, core isometric ratio testing, and functional stability screens.\r\n<h3>Neuromuscular Progression</h3>\r\nTo train your client\'s trunk effectively, gradually reduce the base of support. This progression challenges stabilizers more over time, improving their ability to handle loads and maintain stability during activities of daily living (ADL).\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><img class=\"size-medium wp-image-31428 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4103-300x214.jpg\" alt=\"\" width=\"300\" height=\"214\" /></p>\r\n\r\n<h2></h2>\r\n<h3>Considerations for Trainers</h3>\r\n<ol>\r\n 	<li>List Neuromuscular Exercises: Identify various exercises and order them from easiest to most challenging.</li>\r\n 	<li>Client-Specific Programmes: Determine which clients need which exercises and why.</li>\r\n 	<li>Testing and Assessment: Implement a testing system to track progress and tailor exercises to client needs.</li>\r\n</ol>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-31427 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4675-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Enhance Your Knowledge</h3>\r\nFor further learning, consider our online CPD courses. Click here to book\r\n\r\nIf you have any questions, feel free to contact us at rach@biomechanicseducation.com.\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-31431 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_2336-300x176.jpeg\" alt=\"\" width=\"300\" height=\"176\" />\r\n\r\nReferences\r\n\r\nBoyd, K. (2003). Low Back Disorders: Evidence-Based Prevention and Rehabilitation. Physiotherapy Canada, 55(2), 124.\r\n\r\nClausen, B., Holsgaard-Larsen, A., &amp; Roos, E. (2017). An 8-Week Neuromuscular Exercise Program for Patients With Mild to Moderate Knee Osteoarthritis. Journal of Athletic Training, 52(6), 592-605.\r\n\r\nFaries, M., &amp; Greenwood, M. (2007). Core Training: Stabilizing the Confusion. Strength and Conditioning Journal, 29(2), 10.\r\n\r\nFilipa, A., Byrnes, R., Paterno, M., Myer, G., &amp; Hewett, T. (2010). Neuromuscular Training Improves Performance on the Star Excursion Balance Test in Young Female Athletes. Journal of Orthopaedic &amp; Sports Physical Therapy, 40(9), 551-558.\r\n\r\nGschwind, Y., et al. (2013). A best practice fall prevention exercise program. BMC Geriatrics, 13(1).\r\n\r\nHibbs, A., et al. (2008). Optimizing Performance by Improving Core Stability and Core Strength. Sports Medicine, 38(12), 995-1008.\r\n\r\nHuxel Bliven, K., &amp; Anderson, B. (2013). Core Stability Training for Injury Prevention. Sports Health, 5(6), 514-522.\r\n\r\nLee, B., &amp; McGill, S. (2015). Effect of Long-term Isometric Training on Core/Torso Stiffness. Journal of Strength and Conditioning Research, 29(6), 1515-1526.\r\n\r\nLepley, L., et al. (2017). Eccentric Exercise to Enhance Neuromuscular Control. Sports Health, 9(4), 333-340.\r\n\r\nMcGill, S., et al. (1999). Endurance times for low back stabilization exercises. Archives of Physical Medicine and Rehabilitation, 80(8), 941-944.\r\n\r\nMyer, G., et al. (2008). Trunk and Hip Control Neuromuscular Training for the Prevention of Knee Joint Injury. Clinics in Sports Medicine, 27(3), 425-448.\r\n\r\nPhysiopedia. (2022). Neuromuscular Exercise Program. [online] Available at: https://www.physio-pedia.com/Neuromuscular_Exercise_Program [Accessed 14 February 2022].\r\n\r\nReiman, M., et al. (2010). Reliability of Alternative Trunk Endurance Testing Procedures. Journal of Strength and Conditioning Research, 24(3), 730-736.\r\n\r\nRisberg, M., et al. (2001). Design and Implementation of a Neuromuscular Training Program. Journal of Orthopaedic &amp; Sports Physical Therapy, 31(11), 620-631.\r\n\r\nWillson, J., et al. (2005). Core Stability and Its Relationship to Lower Extremity Function and Injury. Journal of the American Academy of Orthopaedic Surgeons, 13(5), 316-325.\r\n\r\n&nbsp;','Understanding Neuromuscular Exercise: A Comprehensive Guide','','inherit','closed','closed','','31421-autosave-v1','','','2024-09-05 11:15:28','2024-09-05 11:15:28','',31421,'https://biomechanicseducation.com/?p=39569',0,'revision','',0),(39570,3,'2024-09-05 11:15:14','2024-09-05 11:15:14','<h2>Introduction</h2>\r\nNeuromuscular exercise may sound complex, but it\'s simpler than you think. This blog will demystify the biomechanics behind neuromuscular exercise and show you how it can enhance your training.\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-31433 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4665-300x102.jpg\" alt=\"\" width=\"494\" height=\"168\" />\r\n<h1></h1>\r\n<h3>What is Neuromuscular Exercise?</h3>\r\nNeuromuscular exercise involves activities that train both nerves (neuro) and muscles (muscular) to react and communicate efficiently. It focuses on the brain\'s ability to control limb movement and enhances joint stability through specific exercises.\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-31429 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4666-300x159.jpg\" alt=\"\" width=\"300\" height=\"159\" />\r\n\r\n&nbsp;\r\n<h3>The Science Behind Neuromuscular Control</h3>\r\nNeuromuscular control is the brain\'s process of managing limb movements. By training with neuromuscular exercises, you can improve your brain\'s ability to control muscles, enhancing stability and reducing injury risk.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style=\"text-align: left;\"><img class=\"size-medium wp-image-31430 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4667-300x137.jpg\" alt=\"\" width=\"300\" height=\"137\" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Benefits of Neuromuscular Exercise</h3>\r\n<ul>\r\n 	<li>Improved Biomechanics: Enhances muscle activation and joint stability.</li>\r\n 	<li>Balance and Coordination: Essential for everyone, especially those at risk of falls.</li>\r\n 	<li>Functional Strength: Builds strength in a way that supports everyday activities.</li>\r\n</ul>\r\n<h3>Key Neuromuscular Exercises</h3>\r\n<ul>\r\n 	<li>Coordination Training</li>\r\n 	<li>Balancing Exercises</li>\r\n 	<li>Trunk Conditioning</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-31432 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4098-300x255.jpg\" alt=\"\" width=\"300\" height=\"255\" />\r\n\r\n&nbsp;\r\n<h3>Why Gym Machines Aren’t Enough</h3>\r\nWhile gym machines have their place, they often lack the dynamic environment needed for effective neuromuscular training. Machines provide stability that can reduce the neuromuscular training effects required for specific sports or functional movements.\r\n<h3>Integrating Neuromuscular Training</h3>\r\nUnderstanding when and how to introduce neuromuscular exercises is crucial. Testing and assessing your clients’ biomechanics and movement quality can guide the timing and selection of appropriate exercises.\r\n<h3>Trunk Conditioning and Core Stability</h3>\r\nTrunk conditioning, or core stability, is vital for many clients. It involves progressively challenging the body\'s stabilizers, enhancing neuromuscular control over time. This can be measured using core assessment progressions, core isometric ratio testing, and functional stability screens.\r\n<h3>Neuromuscular Progression</h3>\r\nTo train your client\'s trunk effectively, gradually reduce the base of support. This progression challenges stabilizers more over time, improving their ability to handle loads and maintain stability during activities of daily living (ADL).\r\n\r\n&nbsp;\r\n<p style=\"text-align: center;\"><img class=\"size-medium wp-image-31428 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4103-300x214.jpg\" alt=\"\" width=\"300\" height=\"214\" /></p>\r\n\r\n<h2></h2>\r\n<h3>Considerations for Trainers</h3>\r\n<ol>\r\n 	<li>List Neuromuscular Exercises: Identify various exercises and order them from easiest to most challenging.</li>\r\n 	<li>Client-Specific Programmes: Determine which clients need which exercises and why.</li>\r\n 	<li>Testing and Assessment: Implement a testing system to track progress and tailor exercises to client needs.</li>\r\n</ol>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-31427 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4675-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h3>Enhance Your Knowledge</h3>\r\nFor further learning, consider our online CPD courses. Click here to book\r\n\r\nIf you have any questions, feel free to contact us at rach@biomechanicseducation.com.\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-31431 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_2336-300x176.jpeg\" alt=\"\" width=\"300\" height=\"176\" />\r\n\r\nReferences\r\n\r\nBoyd, K. (2003). Low Back Disorders: Evidence-Based Prevention and Rehabilitation. Physiotherapy Canada, 55(2), 124.\r\n\r\nClausen, B., Holsgaard-Larsen, A., &amp; Roos, E. (2017). An 8-Week Neuromuscular Exercise Program for Patients With Mild to Moderate Knee Osteoarthritis. Journal of Athletic Training, 52(6), 592-605.\r\n\r\nFaries, M., &amp; Greenwood, M. (2007). Core Training: Stabilizing the Confusion. Strength and Conditioning Journal, 29(2), 10.\r\n\r\nFilipa, A., Byrnes, R., Paterno, M., Myer, G., &amp; Hewett, T. (2010). Neuromuscular Training Improves Performance on the Star Excursion Balance Test in Young Female Athletes. Journal of Orthopaedic &amp; Sports Physical Therapy, 40(9), 551-558.\r\n\r\nGschwind, Y., et al. (2013). A best practice fall prevention exercise program. BMC Geriatrics, 13(1).\r\n\r\nHibbs, A., et al. (2008). Optimizing Performance by Improving Core Stability and Core Strength. Sports Medicine, 38(12), 995-1008.\r\n\r\nHuxel Bliven, K., &amp; Anderson, B. (2013). Core Stability Training for Injury Prevention. Sports Health, 5(6), 514-522.\r\n\r\nLee, B., &amp; McGill, S. (2015). Effect of Long-term Isometric Training on Core/Torso Stiffness. Journal of Strength and Conditioning Research, 29(6), 1515-1526.\r\n\r\nLepley, L., et al. (2017). Eccentric Exercise to Enhance Neuromuscular Control. Sports Health, 9(4), 333-340.\r\n\r\nMcGill, S., et al. (1999). Endurance times for low back stabilization exercises. Archives of Physical Medicine and Rehabilitation, 80(8), 941-944.\r\n\r\nMyer, G., et al. (2008). Trunk and Hip Control Neuromuscular Training for the Prevention of Knee Joint Injury. Clinics in Sports Medicine, 27(3), 425-448.\r\n\r\nPhysiopedia. (2022). Neuromuscular Exercise Program. [online] Available at: https://www.physio-pedia.com/Neuromuscular_Exercise_Program [Accessed 14 February 2022].\r\n\r\nReiman, M., et al. (2010). Reliability of Alternative Trunk Endurance Testing Procedures. Journal of Strength and Conditioning Research, 24(3), 730-736.\r\n\r\nRisberg, M., et al. (2001). Design and Implementation of a Neuromuscular Training Program. Journal of Orthopaedic &amp; Sports Physical Therapy, 31(11), 620-631.\r\n\r\nWillson, J., et al. (2005). Core Stability and Its Relationship to Lower Extremity Function and Injury. Journal of the American Academy of Orthopaedic Surgeons, 13(5), 316-325.\r\n\r\n&nbsp;','Understanding Neuromuscular Exercise: A Comprehensive Guide','','inherit','closed','closed','','31421-revision-v1','','','2024-09-05 11:15:14','2024-09-05 11:15:14','',31421,'https://biomechanicseducation.com/?p=39570',0,'revision','',0),(39571,3,'2024-09-05 11:21:50','2024-09-05 11:21:50','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-05 11:21:50','2024-09-05 11:21:50','',39497,'https://biomechanicseducation.com/?p=39571',0,'revision','',0),(39573,3,'2024-09-05 11:22:32','2024-09-05 11:22:32','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-05 11:22:32','2024-09-05 11:22:32','',39497,'https://biomechanicseducation.com/?p=39573',0,'revision','',0),(39574,3,'2024-09-05 11:23:13','2024-09-05 11:23:13','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-05 11:23:13','2024-09-05 11:23:13','',39497,'https://biomechanicseducation.com/?p=39574',0,'revision','',0),(39576,3,'2024-09-05 11:23:31','2024-09-05 11:23:31','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-05 11:23:31','2024-09-05 11:23:31','',39497,'https://biomechanicseducation.com/?p=39576',0,'revision','',0),(39578,3,'2024-09-05 11:25:03','2024-09-05 11:25:03','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-05 11:25:03','2024-09-05 11:25:03','',39497,'https://biomechanicseducation.com/?p=39578',0,'revision','',0),(39579,3,'2024-09-05 11:25:14','2024-09-05 11:25:14','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-05 11:25:14','2024-09-05 11:25:14','',39497,'https://biomechanicseducation.com/?p=39579',0,'revision','',0),(39583,3,'2024-09-05 14:04:28','2024-09-05 14:04:28','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-09-05 14:04:28','2024-09-05 14:04:28','',39270,'https://biomechanicseducation.com/?p=39583',0,'revision','',0),(39585,3,'2024-09-19 09:54:46','2024-09-19 09:54:46','I decided to do the biomechanics course becuase it gives me useful skills to assess movement through exercise that other pts have not got and it allows me to work wityh other professionals such as physiotherapists and chiropodists etc . The course has helped me build my pt business successfully in my local area and further beyond and introduced me to other therapists to refer to and from to gain more work. I use my skills learned every day with each client assessing movement function for better healthy and fitness so increasing my business potential with lots of different groups in the community. My clients are happy with my skills as it helps them to move better and feel better.','Sharon Clare – Body Coach Fitness','','publish','closed','closed','','sharon-clare-body-coach-fitness','','','2025-02-10 11:44:07','2025-02-10 11:44:07','',0,'https://biomechanicseducation.com/?post_type=testimonial&#038;p=39585',0,'testimonial','',0),(39586,3,'2024-09-06 11:15:17','2024-09-06 11:15:17','<strong>Article Synopsis</strong>\r\n\r\nThis article examines how the needs of personal training clients have evolved in recent years, and subsequently, how we as trainers must adapt as a result.  It also dissects the existing functional training paradigm in terms of its competency in serving these ever-changing client expectations.\r\n\r\n<strong>Article  Objectives</strong>\r\n\r\n1    Understand the strengths and weaknesses of functional training.\r\n\r\n2    Explore new ways of preparing your clients for exercise to mitigate the risk of injury.\r\n\r\n3    See how an additional skill set will increase both client retention and sales.\r\n\r\n<strong>The Evolution of Personal Training &amp; The Health Continuum</strong>\r\n\r\nThe role of the personal trainer has evolved significantly in recent years to accommodate growing client needs and demands.\r\n\r\nIn the past, clients consulted personal trainers primarily with weight loss or general conditioning goals. These same consumers now expect personal trainers to have a broader scope of practice, including exercise prescription to mitigate back stiffness or soreness, along with a whole host of other musculo-skeletal issues.\r\n\r\nMoreover, the role of a personal trainer will quite likely change as a result of a financial downturn. During such challenging economic times, people are even less inclined to spend money on specialised healthcare professionals for what they perceive to be minor issues. This additional expense and inconvenience is often replaced by the preference to visit their personal trainer, whom they already know and trust. It is therefore critical to identify our client’s position on what we call the health continuum – a scale that spans from illness, to wellness, to elite performance. You will find each one of your clients somewhere on this scale, and before any trainer is serious about exercise programme design, the exact location must be determined. Most exercises are suitable for most people, but they can easily be prescribed at the wrong time. An example of this is core stability training: it can help some people but hurt others (McGill 2003). Similarly, biomechanical issues such as a rotated pelvis and leg length discrepancy, with associated muscle spasm in the hips, will likely be aggravated if an asymmetrical exercise such as a lunge was prescribed. Conversely, in the absence of any pelvic dysfunction, the risk of performing lunges would decrease.\r\n\r\nAs a result, we, as fitness professionals, must be cognizant of these parameters and guard against taking a “jack-of-all-trades” approach when engaging our clients. Knowing only enough to be dangerous can unfortunately be just that: dangerous! Therefore, as we scan the health and fitness education marketplace searching for new science, modality concepts and delivery methods, we must not only be conscious, but extremely sensitive to the changing demographic that forms the majority of our target audience. Being finely attuned to these consumer trends and needs may very well be the differentiating factor between our competition and us. So while we should not cross medical boundaries by becoming “pseudo-therapists”, we must accept the need for change and ultimately, professional growth.\r\n\r\n<strong>1. Functional Training Defined</strong>\r\n\r\nThe body is an integrated system, with each of its component parts linked together to provide coordinated movement in our daily lives. With its origins in rehabilitation, functional training helps us prepare for these tasks and engrains the correct movement patterns with which our brains are familiar rather than training isolated muscles.\r\n\r\nThere are many variations on the definition of functional training, including:\r\n\r\nI    An exercise continuum involving balance and proprioception, performed with the feet on the ground and without machine-assistance, such that strength is displayed in unstable conditions and body weight is managed in all movement planes (Boyle, 2003).\r\n\r\nI    Multi-joint, multi-planar, proprioceptively-enriched activity that involves deceleration (force reduction), acceleration (force production) and stabilisation; controlled amounts of instability; and management of gravity, ground reaction forces and momentum (Gambetta &amp; Gray, 1995; Gambetta, 1999).\r\n\r\nI    A spectrum of activities that condition the body consistent with its integrated movement and/or use (Santana, 2000).\r\n\r\nMany experts also believe that training tasks should be chosen according to their mechanical specificity and relationship to the activities of daily living (ADL). In other words, their basic mechanics – but not necessarily appearance – should correspond to one or more target activities (Santana, 2000; Baechle &amp; Earle, 2000; Siff, 2003; Zatsiorsky, 1995).\r\n\r\n<strong>2. The Functional Training Paradigm and its Flaws</strong>\r\n\r\nNeedless to say, common definitions and understanding of functional training are quite similar. And predictably, they conform to the same, existing paradigm.\r\n\r\nIn 1962, Kuhn defined <em>paradigm</em>s as “universally recognised scientific achievements that for a time provide model problems and solutions to a community of practitioners.” According to Burrell and Morgan (1979), a paradigm provides a conceptual framework for seeing and making sense of the social world. They also suggested that a paradigm “stands for the entire constellation of beliefs, values and techniques, and so on shared by the members of a community.”\r\n\r\nParadigms are shaped based on our prior observations and understandings of the world. However, they also contribute to consensual thought processes, which invariably lead to restrained innovation and progress among the community of practitioners. So even as we evaluate the current functional training paradigm, we instinctively look for ways to better deliver variations of it rather than forge forward and penetrate the confines under which we operate. This conformity is evident in most research, too.\r\n\r\nKuhn (1962) also recognised that a paradigm inherently gives rise to problems more frequently than it provides a framework for solving them. For solutions and innovation, one generally needs to depart from accepted norms and apply unconventional wisdom in order for system failings to be elucidated.\r\n\r\nIn the years that functional screening and training has existed in rehabilitation, many physical therapists found that, although helpful, large gap were apparent and client’s issues persisted. One key gap identified was the body’s ability to compensate for isolated biomechanical flaws, while maintaining acceptable positions during a functional screen.\r\n\r\nThis is well demonstrated with a traditional squat pattern. There are three main joints that perform this movement: the hips, the knees, and the ankles. Because the body is a master of compensation, it is entirely possible that your client could have a dysfunctional knee, yet still pass a functional screen due to the hip’s and ankle’s ability to compensate for it. In fact, it could be argued that abnormal functional movement patterns are merely a visible demonstration of the body’s amazing ability to compensate for its biomechanical flaws. In other words, we are very good at cheating - and the more athletic we are, the better we get.\r\n\r\n<strong>Biomechanics Defined</strong>\r\n\r\nThere are two types of biomechanics: extrinsic and <em>intrinsic</em> (Siff, 2003). Extrinsic is the study and measurement of movement patterns of a particular task.  This is widely recognised and is often on the syllabus of the university programmes in modules in the sports science courses.  This constitutes the existing paradigm and can be seen in many different types of functional screening programmes where the movement itself is the focus of assessment. An <em>Intrinsic</em> biomechanics emphasis, however, falls firmly outside of the current paradigm. It is a discipline in science that enables the analysis and assessment of an individual’s mechanical disposition and how that structure facilitates movement.  Traits can be genetically inherited or influenced by extrinsic factors such as sitting at a desk, driving, doing the wrong gym exercises or running in the wrong shoes.  <em>Intrinsic</em> biomechanics frequently affects extrinsic biomechanical performance.\r\n\r\n<strong>3. A new Paradigm and its Benefits</strong>\r\n\r\nGiven the intractable challenges we face when introducing completely new ideas and ways of thinking within a well-established paradigm, let us step outside of it for a moment and consider the following: Should we primarily focus on movement patterns and preparation for ADL tasks; or should we be more interested in the way each joint or system is actually intended to move and the best way to utilise or leverage that existing structure?  As we mentioned earlier, consider that each individual has unique, unconditioned (genetic), and conditioned (acquired), reflex codes that determine movement over the course of their life (Karel Lewitt).  Each person starts with unconditioned codes and during their life, for a variety of reasons, begins to acquire conditioned movement codes, more often than not to compensate for injury and biomechanical flaws. Compare this knowledge to the methods we currently employ under the precepts of accepted health, fitness and wellness care and a stark contrast is apparent: The current paradigm encourages us to accept that by patterning a movement ‘correctly’ we automatically ingrain the ability to perform the pattern instinctively, without taking into account the causes of the conditioned movement codes.  The new paradigm proposes to <em>first</em> identify and manage the conditioned movement codes, <em>before</em> teaching and prescribing relevant functional movements.\r\n\r\nWhile recognising the effectiveness of functional movement to prepare for function, it would seem that the logical, precursory step would be to add an <em>intrinsic</em> biomechanics component. This would illuminate unconditioned and conditioned movement codes and better prepare our client for the onset of functional movement training. By adding this practical foundation to our current training and delivery methodology we would mitigate detected biomechanical flaws. We would also remove the need for the body to intrinsically labor and compensate for flaws a functional screen would otherwise not detect.\r\n\r\nSimply put: isolate and integrate. This approach is already in use by “early adopters”, and as usual with cutting-edge science, in time, the “followers” will follow, ultimately resulting in a new and improved paradigm.\r\n\r\n<strong>    1    Conclusions</strong>\r\n\r\nThe movements we are required to perform nowadays are quite different from those performed by our ancient ancestors. The rigorous and varied movements essential for the survival of our hunter/gatherer cousins have transformed within a hundred years. Activity these days is often limited to small static movements such as typing, steering and using TV remote controls. While some people do exercise, the vast majority does not. So if functional movement and training is defined by its ability to prepare people for ADL, why are we not considering these activities when prescribing exercise in our health, fitness and wellness facilities? One might raise an eyebrow in response to this logic, but actually if we are not following this logic we are simply not adhering to the definition of function (Boyle, 2003; Gambetta &amp; Gray, 1995; Santana, 2000). Therefore, we must deduce that either the definition of, or our approach to, functional training is currently incorrect.\r\n\r\nAs functional concepts start to transcend medical fields into fitness, it is important to recognise that biomechanical screening must too. Functional and biomechanical screening and training are very important aspects of an overall conditioning program for any sport or activity and are complementary in every way. However, there are many people who pass a functional screen, yet fail a biomechanical screen. Therefore the two modalities, while both detecting different factors, provide the personal trainer and, indeed the therapist, with essential tools for safe and effective prehab, rehab and general exercise prescription.  At this point is always worth pointing out that you must always be prepared to refer to someone who is more qualified than you to perform any kind of screening, especially if you are inexperienced in the field.\r\n\r\nFundamentally, we need to develop our understanding of specific-joint biomechanics such as the pelvis, spine, shoulder and knee. We must also consider nerve biomechanics and function within this new paradigm. Once we understand these <em>intrinsic</em> biomechanics principles, how to objectively analyse screens, and how best to implement them as a system, we can prescribe the most efficient and relevant exercises to meet our client’s goals. After these biomechanical issues have been resolved, functional training and/or any other modality of training has a much greater chance for success, not to mention reduced exposure to injury for our clients and members.\r\n\r\nMany professional sports teams and organisations around the world have already adopted this <em>intrinsic</em> biomechanics approach. And daily they are realising that <em>intrinsic</em> biomechanical screening and corrective exercise prescription is a critical precursor to functional screening and training. It provides a solid foundation for movement patterns that can otherwise be flawed. On the cutting-edge of our industry you will already find “early adopters” practicing <em>intrinsic</em> biomechanics as part of their personal training client care. There are some fantastic courses currently being run in the US, the UK and many other countries, so attend an <em>intrinsic</em> biomechanics course and become a more complete trainer or therapist as a result.\r\n\r\n<strong>Martin Haines </strong>\r\n\r\n<strong>Biomechanics Coach</strong>™\r\n\r\n<strong>References</strong>\r\n\r\n1    Boyle, M. (2003). <em>Functional Training for Sports.</em> Champaign, IL: Human Kinetics.\r\n\r\n1    Gambetta, V., &amp; Gray, G. (1995). Following a functional path. <em>Training &amp; Conditioning </em>5(2): 25-30.\r\n\r\n1    Gambetta, V., &amp; Clark, M. (1998). A formula for function. <em>Training &amp; Conditioning </em>8(4): 24-29.\r\n\r\n1    Gambetta, V. (1999). Force and function. <em>Training &amp; Conditioning </em>9(5): 36-40.\r\n\r\n1    Santana, J.C. (2000). <em>Functional Training.</em> Boca Raton, FL: Optimum Performance Systems.\r\n\r\n1    Baechle, T.R. &amp; Earle, R.W. (Eds.). 2000. National Strength &amp; Conditioning Association. <em>Essentials of Strength Training &amp; Conditioning</em> (2nd ed.). Champaign, IL: Human Kinetics.\r\n\r\n1    Siff, M.C. (2003). <em>Supertraining</em> (6th ed). Denver CO: Supertraining Institute\r\n\r\n1    Zatsiorsky V.M. (1995). <em>Science &amp; Practice of Strength Training.</em> Champaign IL: Human Kinetics.\r\n\r\n1    Kuhn, T. (1962). <em>The Structure of Scientific Revolutions. </em>Chicago, IL: University of Chicago Press.\r\n\r\n1    Burrell, G. &amp; Morgan, G. (1979). Sociological Paradigms and Organisational Analysis: Elements of the Sociology of Corporate Life. London: Heinemann.\r\n\r\n<span class=\"TextRun SCXW88998908 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW88998908 BCX8\">Learn how to assess your </span><span class=\"NormalTextRun SCXW88998908 BCX8\">clients\'</span><span class=\"NormalTextRun SCXW88998908 BCX8\"> intrinsic biomechanics </span></span><a class=\"Hyperlink SCXW88998908 BCX8\" href=\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\" target=\"_blank\" rel=\"noreferrer noopener\"><span class=\"TextRun Underlined SCXW88998908 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW88998908 BCX8\" data-ccp-charstyle=\"Hyperlink\">CLICK HERE</span></span></a><span class=\"TextRun SCXW88998908 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"> <span class=\"NormalTextRun SCXW88998908 BCX8\">to learn more about our Diploma in Biomechanics Coaching.</span></span>\r\n\r\n&nbsp;','The Evolution of Functional Training','','inherit','closed','closed','','761-revision-v1','','','2024-09-06 11:15:17','2024-09-06 11:15:17','',761,'https://biomechanicseducation.com/?p=39586',0,'revision','',0),(39587,3,'2024-09-06 11:42:35','2024-09-06 11:42:35','<h2><b><span data-contrast=\"auto\">Enhancing Your Anatomy Knowledge</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">Many learners express a desire to deepen their understanding of anatomy and the body. You might recall passing your anatomy exam and thinking, \"I don’t need to remember everything; I know how to teach a client to squat!\" However, when unexpected challenges arise or clients move in ways that puzzle us, we often wish we could recall our anatomy lessons better.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">As a kinesthetic learner and an educator for the past 16 years, I understand the difficulty of teaching complex subjects like anatomy. The key is to provide techniques that help learners anchor each body part to a memorable reference.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">This blog series aims to offer movement practitioners a systematic approach to remembering anatomy, making it relevant and applicable in practice. I\'ll share insights and techniques, including word association, history, and tactics, to make anatomy recall useful for training clients.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2><b>Interesting Pelvis Facts </b></h2>\r\n<ol>\r\n 	<li><span data-contrast=\"auto\">Elvis the Pelvis: Elvis Presley earned this nickname for his hip-thrusting dance moves. The pelvis is often linked to sexuality, which can influence how clients perceive their pelvis and its function.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Pelvis Functions: The pelvis supports the hip joints and protects digestive and reproductive organs. Understanding its functionality helps broaden our perspective beyond just movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Plural of Pelvis: The correct plural term is \"pelves,\" not \"pelvises.\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"4\" data-aria-level=\"1\"><span data-contrast=\"auto\">Gender Differences: Male and female pelves differ significantly. The female pelvis is wider and more shallow to accommodate childbirth, a fact that changes with age and should be considered during assessments.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Childbirth Effects: The hormone relaxin softens the pelvic joints during pregnancy and childbirth, permanently changing the pelvis. This should be considered when working with clients who are pregnant or have given birth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"6\" data-aria-level=\"1\"><span data-contrast=\"auto\">Fetal Development: The development of the pelvis and acetabulum in fetuses is influenced by mechanical stimuli, particularly gluteal muscle activity and femoral head pressure, highlighting the importance of pelvic muscles even before birth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<h2><span class=\"TextRun SCXW176767768 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW176767768 BCX8\">Understanding Pelvic Biomechanics: The Bony Anatomy</span></span><span class=\"EOP SCXW176767768 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span class=\"TextRun SCXW27846784 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW27846784 BCX8\">Anatomy books and skeleton models only </span><span class=\"NormalTextRun SCXW27846784 BCX8\">provide</span><span class=\"NormalTextRun SCXW27846784 BCX8\"> a limited view of the pelvis. Observing real </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW27846784 BCX8\">pelves</span><span class=\"NormalTextRun SCXW27846784 BCX8\"> reveals the structural diversity among individuals. </span><span class=\"NormalTextRun SCXW27846784 BCX8\">Here’s</span><span class=\"NormalTextRun SCXW27846784 BCX8\"> a closer look at the key bones and their meanings:</span></span><span class=\"EOP SCXW27846784 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24547\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.18.14.png\" alt=\"\" width=\"511\" height=\"476\" />\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ilium: Latin for \"flank\" or \"groin,\" this large, flat bone forms the upper part of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Pubis: Named for the pubic hair that appears during puberty, this bone forms the front part of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Symphysis: Meaning \"fusion,\" this term describes where the pubic bones meet at the front.</span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ischium: Latin for \"hip joint\" or \"loin,\" this bone forms the lower and back part of the pelvis. It’s where the \"sitting bones\" are located.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sacrum: Known as the \"holy bone,\" it’s a triangular bone at the base of the spine that protects the genitalia.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Coccyx: Greek for \"cuckoo,\" this \"tailbone\" resembles a bird’s bill and is located at the base of the spine.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2><img class=\"aligncenter wp-image-24645\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.50.51-2.png\" alt=\"\" width=\"411\" height=\"354\" /><b><span data-contrast=\"auto\">Key Bony Landmarks</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Iliac Spine: The upper rim of the ilium, used in pelvic function tests. (Iliac) </span><b><span data-contrast=\"auto\">Fossa</span></b><span data-contrast=\"auto\"> is the Greek word for </span><i><span data-contrast=\"auto\">ditch </span></i><span data-contrast=\"auto\">describes the dip of the concave surface on the inner surface of the ilium.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Acetabulum: Latin for \"vinegar cup,\" this is the hip socket where the femur head fits.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2><b>Acronyms for Bony Areas &amp; Prominences </b></h2>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">SIJ: Sacroiliac Joint, where the sacrum meets the ilium, often associated with lower back pain.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">PSIS: Posterior Superior Iliac Spine, located at the back of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">ASIS: Anterior Superior Iliac Spine, located at the front of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">AIIS: Anterior Inferior Iliac Spine, below the ASIS.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2><b><span data-contrast=\"auto\">Structural Variations</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">Understanding genetic differences in pelvic structure is crucial for tailoring exercise programmes:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-24550\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.20.58.png\" alt=\"\" width=\"454\" height=\"424\" />\r\n\r\n<span style=\"font-weight: 400;\">We know we genetically differ and as you can see here we can differ inside our bodies as much as we do on the outside but what does that mean to us as trainers? </span>\r\n\r\n<span style=\"font-weight: 400;\">Coxa Valgus or Vara &amp; Femoral Version are good examples of terminologies for clients pelvis/hip geometry that differ in a way that may have clinical or movement relevance for their practitioner.</span>\r\n\r\n<span style=\"font-weight: 400;\">These can be identified using simple manual tests that we offer on our <a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">Running Biomechanics Workshops</a> for example. They can change the way we prescribe exercises or what we expect of our clients when they move. Hopefully these descriptions help to appreciate this….</span>\r\n\r\n<b>The Femur</b> <span style=\"font-weight: 400;\">is the largest bone in the body &amp; we will only discuss here the top (proximal) portion that relates to the pelvis. The other end (distal) will be discussed in the Knee Series.</span>\r\n\r\n<b>Trochanter</b><span style=\"font-weight: 400;\"> comes from the Greek word </span><i><span style=\"font-weight: 400;\">trokhos</span></i><span style=\"font-weight: 400;\"> for wheel. It describes the large round feeling bony prominence at the side of the pelvis. It is a key landing site for the lateral glutes &amp; piriformis - to be discussed next time. </span>\r\n\r\n<b>Neck of femur</b><span style=\"font-weight: 400;\"> is the part of the femur that looks like a neck sticking out from the medial side of the main femur thigh bone where the greater trochanter is lateral &amp; then ends in the ‘ball’ of the hip’s ball &amp; socket joint.</span>\r\n\r\n<img class=\"aligncenter wp-image-24646\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.57.12.png\" alt=\"\" width=\"342\" height=\"301\" />\r\n\r\n<b>Coxa</b><span style=\"font-weight: 400;\"> is a Latin word meaning hip or limb joint (koks-h)  </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Coxa Vara:</strong> A decreased angle at the hip, potentially limiting abduction.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Coxa Valga:</strong> An increased angle at the hip, potentially limiting adduction.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">Imagine you have a client who has been diagnosed as Coxa Valga….how might this alter your expectations when you write them a programme or train them in your facility?</span>\r\n\r\n<img class=\"aligncenter wp-image-24548\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.48.png\" alt=\"\" width=\"315\" height=\"217\" />\r\n\r\n<b>Femoral</b><span style=\"font-weight: 400;\"> is </span><span style=\"font-weight: 400;\">related to the thigh or </span><b>femur. </b>\r\n\r\n<b>Version</b><span style=\"font-weight: 400;\"> or </span><span style=\"font-weight: 400;\">Vers is Latin for turned or to turn.</span>\r\n\r\n<b>Femoral Version</b><span style=\"font-weight: 400;\"> describes the rotation (of turn) of the femur in relation to the pelvis. </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Femoral Anteversion:</strong> Medial rotation of the femur.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Femoral Retroversion:</strong> Lateral rotation of the femur.</span>\r\n\r\n<span style=\"font-weight: 400;\">Imagine you have a client who has been diagnosed as femoral anteversion….how might this alter your expectations when you write them a squat programme or train them in your facility?</span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter size-full wp-image-24549\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.18.png\" alt=\"\" width=\"866\" height=\"408\" />\r\n\r\n&nbsp;\r\n\r\n<b><span data-contrast=\"auto\">Application in Training</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Knowing these anatomical details helps explain why clients move differently. This knowledge is vital for designing effective training programs and assessing pelvic function.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h1>Learn more with our Pelvic &amp; Spine Biomechanics Online CPD Training <a href=\"https://biomechanicseducation.com/courses/online-cpd-courses/\">here</a>.</h1>\r\n<span class=\"TextRun SCXW264464150 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW264464150 BCX8\">Discover more with our Diploma in Biomechanics Coaching </span></span><a class=\"Hyperlink SCXW264464150 BCX8\" href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noreferrer noopener\"><span class=\"TextRun Underlined SCXW264464150 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW264464150 BCX8\" data-ccp-charstyle=\"Hyperlink\">here</span></span></a><span class=\"EOP SCXW264464150 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2><b>References:</b></h2>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Benson, Emily. A Woman’s Pelvis Narrows as She Ages. 25 Apr. 2016, Science.org.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Cooperstein R, Hickey M. The Reliability of Palpating the Posterior Superior Iliac Spine: A Systematic Review. J Can Chiropr Assoc. 2016 Mar;60(1):36-46. PMID: 27069265; PMCID: PMC4807681.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Coxa Vara / Coxa Valga. Physiopedia, Physio-Pedia.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Delaere O, Dhem A. Prenatal Development of the Human Pelvis and Acetabulum. Acta Orthop Belg. 1999 Sep;65(3):255-60. PMID: 10546347.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">The Femur. TeachMeAnatomy, TeachMeAnatomy.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Rosenfeld, Jordan. 7 Essential Facts about the Pelvis. Mental Floss, 21 Sept. 2017, Mental Floss.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>','Pelvic (Hip) Biomechanics - Part 1 - The Bones of the Hip','','inherit','closed','closed','','24544-autosave-v1','','','2024-09-06 11:42:35','2024-09-06 11:42:35','',24544,'https://biomechanicseducation.com/?p=39587',0,'revision','',0),(39588,3,'2024-09-06 11:42:37','2024-09-06 11:42:37','<h2><b><span data-contrast=\"auto\">Enhancing Your Anatomy Knowledge</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">Many learners express a desire to deepen their understanding of anatomy and the body. You might recall passing your anatomy exam and thinking, \"I don’t need to remember everything; I know how to teach a client to squat!\" However, when unexpected challenges arise or clients move in ways that puzzle us, we often wish we could recall our anatomy lessons better.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">As a kinesthetic learner and an educator for the past 16 years, I understand the difficulty of teaching complex subjects like anatomy. The key is to provide techniques that help learners anchor each body part to a memorable reference.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">This blog series aims to offer movement practitioners a systematic approach to remembering anatomy, making it relevant and applicable in practice. I\'ll share insights and techniques, including word association, history, and tactics, to make anatomy recall useful for training clients.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2><b>Interesting Pelvis Facts </b></h2>\r\n<ol>\r\n 	<li><span data-contrast=\"auto\">Elvis the Pelvis: Elvis Presley earned this nickname for his hip-thrusting dance moves. The pelvis is often linked to sexuality, which can influence how clients perceive their pelvis and its function.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Pelvis Functions: The pelvis supports the hip joints and protects digestive and reproductive organs. Understanding its functionality helps broaden our perspective beyond just movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Plural of Pelvis: The correct plural term is \"pelves,\" not \"pelvises.\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"4\" data-aria-level=\"1\"><span data-contrast=\"auto\">Gender Differences: Male and female pelves differ significantly. The female pelvis is wider and more shallow to accommodate childbirth, a fact that changes with age and should be considered during assessments.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Childbirth Effects: The hormone relaxin softens the pelvic joints during pregnancy and childbirth, permanently changing the pelvis. This should be considered when working with clients who are pregnant or have given birth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"6\" data-aria-level=\"1\"><span data-contrast=\"auto\">Fetal Development: The development of the pelvis and acetabulum in fetuses is influenced by mechanical stimuli, particularly gluteal muscle activity and femoral head pressure, highlighting the importance of pelvic muscles even before birth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<h2><span class=\"TextRun SCXW176767768 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW176767768 BCX8\">Understanding Pelvic Biomechanics: The Bony Anatomy</span></span><span class=\"EOP SCXW176767768 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span class=\"TextRun SCXW27846784 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW27846784 BCX8\">Anatomy books and skeleton models only </span><span class=\"NormalTextRun SCXW27846784 BCX8\">provide</span><span class=\"NormalTextRun SCXW27846784 BCX8\"> a limited view of the pelvis. Observing real </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW27846784 BCX8\">pelves</span><span class=\"NormalTextRun SCXW27846784 BCX8\"> reveals the structural diversity among individuals. </span><span class=\"NormalTextRun SCXW27846784 BCX8\">Here’s</span><span class=\"NormalTextRun SCXW27846784 BCX8\"> a closer look at the key bones and their meanings:</span></span><span class=\"EOP SCXW27846784 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24547\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.18.14.png\" alt=\"\" width=\"511\" height=\"476\" />\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ilium: Latin for \"flank\" or \"groin,\" this large, flat bone forms the upper part of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Pubis: Named for the pubic hair that appears during puberty, this bone forms the front part of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Symphysis: Meaning \"fusion,\" this term describes where the pubic bones meet at the front.</span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ischium: Latin for \"hip joint\" or \"loin,\" this bone forms the lower and back part of the pelvis. It’s where the \"sitting bones\" are located.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sacrum: Known as the \"holy bone,\" it’s a triangular bone at the base of the spine that protects the genitalia.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Coccyx: Greek for \"cuckoo,\" this \"tailbone\" resembles a bird’s bill and is located at the base of the spine.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2><img class=\"aligncenter wp-image-24645\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.50.51-2.png\" alt=\"\" width=\"411\" height=\"354\" /><b><span data-contrast=\"auto\">Key Bony Landmarks</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Iliac Spine: The upper rim of the ilium, used in pelvic function tests. (Iliac) </span><b><span data-contrast=\"auto\">Fossa</span></b><span data-contrast=\"auto\"> is the Greek word for </span><i><span data-contrast=\"auto\">ditch </span></i><span data-contrast=\"auto\">describes the dip of the concave surface on the inner surface of the ilium.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Acetabulum: Latin for \"vinegar cup,\" this is the hip socket where the femur head fits.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2><b>Acronyms for Bony Areas &amp; Prominences </b></h2>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">SIJ: Sacroiliac Joint, where the sacrum meets the ilium, often associated with lower back pain.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">PSIS: Posterior Superior Iliac Spine, located at the back of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">ASIS: Anterior Superior Iliac Spine, located at the front of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">AIIS: Anterior Inferior Iliac Spine, below the ASIS.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2><b><span data-contrast=\"auto\">Structural Variations</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">Understanding genetic differences in pelvic structure is crucial for tailoring exercise programmes:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-24550\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.20.58.png\" alt=\"\" width=\"454\" height=\"424\" />\r\n\r\n<span style=\"font-weight: 400;\">We know we genetically differ and as you can see here we can differ inside our bodies as much as we do on the outside but what does that mean to us as trainers? </span>\r\n\r\n<span style=\"font-weight: 400;\">Coxa Valgus or Vara &amp; Femoral Version are good examples of terminologies for clients pelvis/hip geometry that differ in a way that may have clinical or movement relevance for their practitioner.</span>\r\n\r\n<span style=\"font-weight: 400;\">These can be identified using simple manual tests that we offer on our <a href=\"https://www.biomechanicseducation.com/product/running-biomechanics-workshops/#tab-description\" target=\"_blank\" rel=\"noopener noreferrer\">Running Biomechanics Workshops</a> for example. They can change the way we prescribe exercises or what we expect of our clients when they move. Hopefully these descriptions help to appreciate this….</span>\r\n\r\n<b>The Femur</b> <span style=\"font-weight: 400;\">is the largest bone in the body &amp; we will only discuss here the top (proximal) portion that relates to the pelvis. The other end (distal) will be discussed in the Knee Series.</span>\r\n\r\n<b>Trochanter</b><span style=\"font-weight: 400;\"> comes from the Greek word </span><i><span style=\"font-weight: 400;\">trokhos</span></i><span style=\"font-weight: 400;\"> for wheel. It describes the large round feeling bony prominence at the side of the pelvis. It is a key landing site for the lateral glutes &amp; piriformis - to be discussed next time. </span>\r\n\r\n<b>Neck of femur</b><span style=\"font-weight: 400;\"> is the part of the femur that looks like a neck sticking out from the medial side of the main femur thigh bone where the greater trochanter is lateral &amp; then ends in the ‘ball’ of the hip’s ball &amp; socket joint.</span>\r\n\r\n<img class=\"aligncenter wp-image-24646\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.57.12.png\" alt=\"\" width=\"342\" height=\"301\" />\r\n\r\n<b>Coxa</b><span style=\"font-weight: 400;\"> is a Latin word meaning hip or limb joint (koks-h)  </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Coxa Vara:</strong> A decreased angle at the hip, potentially limiting abduction.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Coxa Valga:</strong> An increased angle at the hip, potentially limiting adduction.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">Imagine you have a client who has been diagnosed as Coxa Valga….how might this alter your expectations when you write them a programme or train them in your facility?</span>\r\n\r\n<img class=\"aligncenter wp-image-24548\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.48.png\" alt=\"\" width=\"315\" height=\"217\" />\r\n\r\n<b>Femoral</b><span style=\"font-weight: 400;\"> is </span><span style=\"font-weight: 400;\">related to the thigh or </span><b>femur. </b>\r\n\r\n<b>Version</b><span style=\"font-weight: 400;\"> or </span><span style=\"font-weight: 400;\">Vers is Latin for turned or to turn.</span>\r\n\r\n<b>Femoral Version</b><span style=\"font-weight: 400;\"> describes the rotation (of turn) of the femur in relation to the pelvis. </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Femoral Anteversion:</strong> Medial rotation of the femur.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Femoral Retroversion:</strong> Lateral rotation of the femur.</span>\r\n\r\n<span style=\"font-weight: 400;\">Imagine you have a client who has been diagnosed as femoral anteversion….how might this alter your expectations when you write them a squat programme or train them in your facility?</span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter size-full wp-image-24549\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.18.png\" alt=\"\" width=\"866\" height=\"408\" />\r\n\r\n&nbsp;\r\n\r\n<b><span data-contrast=\"auto\">Application in Training</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Knowing these anatomical details helps explain why clients move differently. This knowledge is vital for designing effective training programs and assessing pelvic function.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h1>Learn more with our Pelvic &amp; Spine Biomechanics Online CPD Training <a href=\"https://biomechanicseducation.com/courses/online-cpd-courses/\">here</a>.</h1>\r\n<span class=\"TextRun SCXW264464150 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW264464150 BCX8\">Discover more with our Diploma in Biomechanics Coaching </span></span><a class=\"Hyperlink SCXW264464150 BCX8\" href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\" target=\"_blank\" rel=\"noreferrer noopener\"><span class=\"TextRun Underlined SCXW264464150 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW264464150 BCX8\" data-ccp-charstyle=\"Hyperlink\">here</span></span></a><span class=\"EOP SCXW264464150 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2><b>References:</b></h2>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Benson, Emily. A Woman’s Pelvis Narrows as She Ages. 25 Apr. 2016, Science.org.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Cooperstein R, Hickey M. The Reliability of Palpating the Posterior Superior Iliac Spine: A Systematic Review. J Can Chiropr Assoc. 2016 Mar;60(1):36-46. PMID: 27069265; PMCID: PMC4807681.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Coxa Vara / Coxa Valga. Physiopedia, Physio-Pedia.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Delaere O, Dhem A. Prenatal Development of the Human Pelvis and Acetabulum. Acta Orthop Belg. 1999 Sep;65(3):255-60. PMID: 10546347.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">The Femur. TeachMeAnatomy, TeachMeAnatomy.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Rosenfeld, Jordan. 7 Essential Facts about the Pelvis. Mental Floss, 21 Sept. 2017, Mental Floss.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>','Pelvic (Hip) Biomechanics - Part 1 - The Bones of the Hip','','inherit','closed','closed','','24544-revision-v1','','','2024-09-06 11:42:37','2024-09-06 11:42:37','',24544,'https://biomechanicseducation.com/?p=39588',0,'revision','',0),(39589,3,'2024-09-06 12:17:31','2024-09-06 12:17:31','','Courses menu image','','inherit','closed','closed','','youngwomanwithlearninglanguageduringonlinecoursesusingnetbook','','','2024-09-06 12:17:58','2024-09-06 12:17:58','',39278,'https://biomechanicseducation.com/wp-content/uploads/2024/09/shutterstock_1207740871.jpg',0,'attachment','image/jpeg',0),(39590,3,'2024-09-06 12:20:40','2024-09-06 12:20:40','','Morgan Hanness - Biomechanics Education','','inherit','closed','closed','','headshot-1-1','','','2024-09-06 12:21:04','2024-09-06 12:21:04','',39172,'https://biomechanicseducation.com/wp-content/uploads/2024/09/headshot-1-1.jpg',0,'attachment','image/jpeg',0),(39593,3,'2024-09-06 12:32:31','2024-09-06 12:32:31','','Morgan Hanness - Biomechanics Education','','inherit','closed','closed','','1','','','2024-09-06 12:33:48','2024-09-06 12:33:48','',39172,'https://biomechanicseducation.com/wp-content/uploads/2024/09/1.png',0,'attachment','image/png',0),(39594,3,'2024-09-06 12:33:02','2024-09-06 12:33:02','','Rachel Frances Thomson - Biomechanics Education','','inherit','closed','closed','','2','','','2024-09-06 12:34:24','2024-09-06 12:34:24','',39172,'https://biomechanicseducation.com/wp-content/uploads/2024/09/2.png',0,'attachment','image/png',0),(39595,3,'2024-09-06 12:33:09','2024-09-06 12:33:09','','IBA Membership benefits 50/50 image','','inherit','closed','closed','','memberbenefitsmessagewrittenonpaperpieceswithredbackground','','','2024-09-06 12:33:23','2024-09-06 12:33:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/shutterstock_2492276115.jpg',0,'attachment','image/jpeg',0),(39597,3,'2024-09-06 12:33:34','2024-09-06 12:33:34','','3','','inherit','closed','closed','','3','','','2024-09-06 12:33:34','2024-09-06 12:33:34','',39172,'https://biomechanicseducation.com/wp-content/uploads/2024/09/3.png',0,'attachment','image/png',0),(39598,3,'2024-09-06 12:34:07','2024-09-06 12:34:07','','Kim Tomlin -Biomechanics Education','','inherit','closed','closed','','4','','','2024-09-06 12:34:47','2024-09-06 12:34:47','',39172,'https://biomechanicseducation.com/wp-content/uploads/2024/09/4.png',0,'attachment','image/png',0),(39600,3,'2024-09-06 12:37:33','2024-09-06 12:37:33','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-09-06 12:37:33','2024-09-06 12:37:33','',39172,'https://biomechanicseducation.com/?p=39600',0,'revision','',0),(39606,3,'2024-09-06 12:42:14','2024-09-06 12:42:14','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-09-06 12:42:14','2024-09-06 12:42:14','',39172,'https://biomechanicseducation.com/?p=39606',0,'revision','',0),(39608,3,'2024-09-06 12:59:45','2024-09-06 12:59:45','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-09-06 12:59:45','2024-09-06 12:59:45','',7,'https://biomechanicseducation.com/?p=39608',0,'revision','',0),(39609,3,'2024-09-06 13:17:19','2024-09-06 13:17:19','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-09-06 13:17:19','2024-09-06 13:17:19','',7,'https://biomechanicseducation.com/?p=39609',0,'revision','',0),(39610,3,'2024-09-06 13:21:58','2024-09-06 13:21:58','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-09-06 13:21:58','2024-09-06 13:21:58','',39270,'https://biomechanicseducation.com/?p=39610',0,'revision','',0),(39611,3,'2024-09-06 13:27:23','2024-09-06 13:27:23','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-09-06 13:27:23','2024-09-06 13:27:23','',39172,'https://biomechanicseducation.com/?p=39611',0,'revision','',0),(39612,3,'2024-09-06 13:48:13','2024-09-06 13:48:13','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-09-06 13:48:13','2024-09-06 13:48:13','',39172,'https://biomechanicseducation.com/?p=39612',0,'revision','',0),(39614,3,'2024-09-06 13:56:57','2024-09-06 13:56:57','{{unknown}}','','','publish','closed','closed','','20a361f563b5c4b2862bc4f71e28698f','','','2024-09-06 13:56:57','2024-09-06 13:56:57','',0,'https://biomechanicseducation.com/20a361f563b5c4b2862bc4f71e28698f/',0,'oembed_cache','',0),(39615,3,'2024-09-06 13:57:46','2024-09-06 13:57:46','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-09-06 13:57:46','2024-09-06 13:57:46','',39245,'https://biomechanicseducation.com/?p=39615',0,'revision','',0),(39616,3,'2024-09-06 13:58:16','2024-09-06 13:58:16','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-09-06 13:58:16','2024-09-06 13:58:16','',39245,'https://biomechanicseducation.com/?p=39616',0,'revision','',0),(39617,3,'2024-09-06 14:00:23','2024-09-06 14:00:23','','foot posture index','','inherit','closed','closed','','foot-posture-index','','','2024-09-06 14:01:33','2024-09-06 14:01:33','',39245,'https://biomechanicseducation.com/wp-content/uploads/2024/09/foot-posture-index.jpg',0,'attachment','image/jpeg',0),(39618,3,'2024-09-06 14:01:49','2024-09-06 14:01:49','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-09-06 14:01:49','2024-09-06 14:01:49','',39245,'https://biomechanicseducation.com/?p=39618',0,'revision','',0),(39622,3,'2024-09-06 14:17:14','2024-09-06 14:17:14','','DSC_6135','','inherit','closed','closed','','dsc_6135','','','2024-09-06 14:17:14','2024-09-06 14:17:14','',39263,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC_6135.jpg',0,'attachment','image/jpeg',0),(39623,3,'2024-09-06 14:17:54','2024-09-06 14:17:54','','Biomechanics Education Diploma teaching workshop','','inherit','closed','closed','','dsc_6135-2','','','2024-09-06 14:19:34','2024-09-06 14:19:34','',39263,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC_6135-1.jpg',0,'attachment','image/jpeg',0),(39624,3,'2024-09-06 14:19:44','2024-09-06 14:19:44','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-09-06 14:19:44','2024-09-06 14:19:44','',39263,'https://biomechanicseducation.com/?p=39624',0,'revision','',0),(39625,3,'2024-09-06 14:21:07','2024-09-06 14:21:07','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-09-06 14:21:07','2024-09-06 14:21:07','',39263,'https://biomechanicseducation.com/?p=39625',0,'revision','',0),(39626,3,'2024-09-06 14:29:37','2024-09-06 14:29:37','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-09-06 14:29:37','2024-09-06 14:29:37','',39263,'https://biomechanicseducation.com/?p=39626',0,'revision','',0),(39628,3,'2024-09-06 14:41:19','2024-09-06 14:41:19','<h2>Why You Should Add Hip Hitching to Your Clients’ Programmes </h2>\n<p><span data-contrast=\"auto\">Incorporating hip hitching into your clients\' training can benefit both general fitness enthusiasts and athletes. Let\'s explore what the hip hitch is, its benefits, and how to integrate it effectively into training routines.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<h2><b><span data-contrast=\"auto\">What Is the Hip Hitch?</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\n<p><span data-contrast=\"auto\">Hip hitching involves two main joint actions:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<ul>\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Hip Abduction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Lateral Spinal Flexion</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>\n<p><span data-contrast=\"auto\">Unlike the typical hip abduction where the leg moves away from the body, hip hitching involves lifting the hip away from the standing leg, causing the pelvis to move. This movement also engages the lateral flexors of the spine, making it a multifaceted exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><b><span data-contrast=\"auto\">Try This:</span></b><span data-contrast=\"auto\"> Stand on your left leg and lift your right hip up and away. Notice how your left pelvis moves—this is hip hitching in action.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><b>Here is a quick video I put together to show you...</b></p>\n<p>[embed]https://youtu.be/UhuuS6h3R6Q[/embed]</p>\n<h2>Benefits of Hip Hitching </h2>\n<p><span data-contrast=\"auto\">We naturally perform a hip hitch with every step we take, though with a smaller range of motion. Here’s why practicing this movement can be valuable:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">Improves Pelvic Stability: Essential for efficient walking and running.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">Strengthens Key Muscles: Targets the quadratus lumborum (QL), obliques, gluteus medius, gluteus minimus, and tensor fasciae latae (TFL).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<h2>Anatomy of the Hip Hitch </h2>\n<p><strong>Hip hitching requires: </strong></p>\n<ul>\n<li><span data-contrast=\"auto\">Right hip lifting due to spinal lateral flexion (involving QL and obliques)</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n<li><span data-contrast=\"auto\">Left hip abducting to stabilize the pelvis (involving glute medius, minimus, and TFL)</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n<li><span data-contrast=\"auto\">These muscle groups work together during walking/running to maintain stability in the frontal plane.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n<li><span data-contrast=\"auto\">Identifying Frontal Plane Stability Issues</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n<li><span data-contrast=\"auto\">To assess if your client needs hip hitching exercises, observe their pelvic alignment during single-leg activities. Look for:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n<li><span data-contrast=\"auto\">Uneven hip levels during single-leg stands or lunges.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n<li><span data-contrast=\"auto\">Lateral shifts or drops in the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>\n<p><span data-contrast=\"auto\">These signs may indicate weak hip abductors and lateral spinal flexors, making hip hitching an effective corrective exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<h2>Performing the Hip Hitch </h2>\n<p><b><span data-contrast=\"auto\">Basic Hip Hitch:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<ol>\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Stand on one leg with the other foot off the ground.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ol>\n<ol>\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Lift and lower the hip through a full range of motion in the frontal plane.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ol>\n<ol>\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Minimize rotation or excessive movement elsewhere.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ol>\n<p><b><span data-contrast=\"auto\">Advanced Variations:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<ul>\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Perform on a raised surface to increase range.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Add weights for added resistance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Integrate into static or dynamic lunges for increased complexity and load.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>\n<h2>Integrating Hip Hitching into Training </h2>\n<p><span data-contrast=\"auto\">Introduce hip hitching early in your clients’ programs to enhance their compound leg exercises. Progressively incorporate more advanced variations to continue challenging their stability and strength.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">Incorporating hip hitching can make your training programmes more effective and engaging. Start experimenting with these techniques and observe the improvements in your clients\' performance and stability.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<h2>Enhance Your Training Skills </h2>\n<p><span data-contrast=\"auto\">Want to reduce your clients\' injury risk and achieve better results? Explore our Biomechanics Coach Diploma, which now includes a Level 4 Low Back Pain Qualification. </span><span data-contrast=\"auto\">Click </span><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> for more information.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><a style=\"font-family: var(--font-body); font-size: 16px; font-weight: var(--font-body-weight);\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></p>','Why We Should Consider Adding Hip Hitching To Our Clients Programmes','','inherit','closed','closed','','14386-autosave-v1','','','2024-09-06 14:41:19','2024-09-06 14:41:19','',14386,'https://biomechanicseducation.com/?p=39628',0,'revision','',0),(39629,3,'2024-09-06 14:41:47','2024-09-06 14:41:47','<h2>Why You Should Add Hip Hitching to Your Clients’ Programmes </h2>\r\n<p><span data-contrast=\"auto\">Incorporating hip hitching into your clients\' training can benefit both general fitness enthusiasts and athletes. Let\'s explore what the hip hitch is, its benefits, and how to integrate it effectively into training routines.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<h2><b><span data-contrast=\"auto\">What Is the Hip Hitch?</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<p><span data-contrast=\"auto\">Hip hitching involves two main joint actions:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Hip Abduction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Lateral Spinal Flexion</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><span data-contrast=\"auto\">Unlike the typical hip abduction where the leg moves away from the body, hip hitching involves lifting the hip away from the standing leg, causing the pelvis to move. This movement also engages the lateral flexors of the spine, making it a multifaceted exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Try This:</span></b><span data-contrast=\"auto\"> Stand on your left leg and lift your right hip up and away. Notice how your left pelvis moves—this is hip hitching in action.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b>Here is a quick video I put together to show you...</b></p>\r\n<p>[embed]https://youtu.be/UhuuS6h3R6Q[/embed]</p>\r\n<h2>Benefits of Hip Hitching </h2>\r\n<p><span data-contrast=\"auto\">We naturally perform a hip hitch with every step we take, though with a smaller range of motion. Here’s why practicing this movement can be valuable:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Improves Pelvic Stability: Essential for efficient walking and running.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Strengthens Key Muscles: Targets the quadratus lumborum (QL), obliques, gluteus medius, gluteus minimus, and tensor fasciae latae (TFL).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<h2>Anatomy of the Hip Hitch </h2>\r\n<p><strong>Hip hitching requires: </strong></p>\r\n<ul>\r\n<li><span data-contrast=\"auto\">Right hip lifting due to spinal lateral flexion (involving QL and obliques)</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li><span data-contrast=\"auto\">Left hip abducting to stabilize the pelvis (involving glute medius, minimus, and TFL)</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li><span data-contrast=\"auto\">These muscle groups work together during walking/running to maintain stability in the frontal plane.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li><span data-contrast=\"auto\">Identifying Frontal Plane Stability Issues</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li><span data-contrast=\"auto\">To assess if your client needs hip hitching exercises, observe their pelvic alignment during single-leg activities. Look for:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li><span data-contrast=\"auto\">Uneven hip levels during single-leg stands or lunges.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li><span data-contrast=\"auto\">Lateral shifts or drops in the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><span data-contrast=\"auto\">These signs may indicate weak hip abductors and lateral spinal flexors, making hip hitching an effective corrective exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<h2>Performing the Hip Hitch </h2>\r\n<p><b><span data-contrast=\"auto\">Basic Hip Hitch:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Stand on one leg with the other foot off the ground.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Lift and lower the hip through a full range of motion in the frontal plane.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Minimize rotation or excessive movement elsewhere.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<p><b><span data-contrast=\"auto\">Advanced Variations:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Perform on a raised surface to increase range.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Add weights for added resistance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Integrate into static or dynamic lunges for increased complexity and load.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2>Integrating Hip Hitching into Training </h2>\r\n<p><span data-contrast=\"auto\">Introduce hip hitching early in your clients’ programs to enhance their compound leg exercises. Progressively incorporate more advanced variations to continue challenging their stability and strength.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Incorporating hip hitching can make your training programmes more effective and engaging. Start experimenting with these techniques and observe the improvements in your clients\' performance and stability.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<h2>Enhance Your Training Skills </h2>\r\n<p><span data-contrast=\"auto\">Want to reduce your clients\' injury risk and achieve better results? Explore our Biomechanics Coach Diploma, which now includes a Level 4 Low Back Pain Qualification. </span><span data-contrast=\"auto\">Click </span><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> for more information.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><a style=\"font-family: var(--font-body); font-size: 16px; font-weight: var(--font-body-weight);\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a></p>','Why We Should Consider Adding Hip Hitching To Our Clients Programmes','','inherit','closed','closed','','14386-revision-v1','','','2024-09-06 14:41:47','2024-09-06 14:41:47','',14386,'https://biomechanicseducation.com/?p=39629',0,'revision','',0),(39630,3,'2024-09-06 14:57:07','2024-09-06 14:57:07','<h2>What Exactly Is Intrinsic Biomechanics?</h2>\n<span data-contrast=\"auto\">At Biomechanics Education, we often encounter questions about the type of biomechanics we specialise in. This blog aims to clarify this by defining key terms and concepts related to our field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Definitions</h3>\n<span style=\"font-weight: 400;\">The study of the mechanical laws relating to the movement or structure of living organisms.</span>\n\n<strong><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW255872933 BCX8\"><strong><span class=\"SCXW255872933 BCX8\"> </span></strong><br class=\"SCXW255872933 BCX8\" /></span><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">The study of mechanical laws relating to the movement or structure of living organisms.</span></span><span class=\"EOP SCXW255872933 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<strong><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">Extrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW13749985 BCX8\"><strong><span class=\"SCXW13749985 BCX8\"> </span></strong><br class=\"SCXW13749985 BCX8\" /></span><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">This involves analysing movement performance using advanced machinery like </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW13749985 BCX8\">isokinetics</span><span class=\"NormalTextRun SCXW13749985 BCX8\"> and kinematics to understand forces, loads, and levers. Practically, it includes observing and correcting client movements using verbal and visual cues.</span></span><span class=\"EOP SCXW13749985 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<img class=\"aligncenter wp-image-4110\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/ankleinvsupine.jpg\" alt=\"ankleinvsupine\" width=\"318\" height=\"270\" />\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><strong><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">Intrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW41082360 BCX8\"><br class=\"SCXW41082360 BCX8\" /></span><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">This focuses on understanding the internal neuro-musculoskeletal system, which creates external movements. It examines what happens inside the body to produce the movements we see externally.</span></span></span><span style=\"font-weight: 400;\"><span class=\"EOP SCXW41082360 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></span><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4111\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Picture1-1.png\" alt=\"picture1-1\" width=\"376\" height=\"270\" /></span></span>\n<h2>iMoveFreely® (IMF) Programme</h2>\n<span data-contrast=\"auto\">The iMoveFreely® programme is a system of low-intensity exercises designed to prepare the body for movement, reduce injury risk, and enhance performance. Initially exclusive to high-level athletes, it is now recognised as fundamental for anyone seeking to move more freely. The programme consists of three phases:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"wp-image-4114 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3491-1024x768.jpg\" alt=\"img_3491\" width=\"354\" height=\"266\" /></span><span style=\"font-weight: 400;\">Preparation &amp; Capacity</span></span></h3>\n<span data-contrast=\"auto\">This phase addresses the interconnectedness of muscles, joints, and nerves with techniques that:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<ul>\n 	<li><span data-contrast=\"auto\">Use specific muscle energy techniques to reduce spasms (based on Ribot-Ciscar and Jiri Dvorak’s research).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li><span data-contrast=\"auto\">Incorporate nerve mobilization techniques (based on David Butler’s work).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li><span data-contrast=\"auto\">Apply joint mobilisation techniques to improve movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"297\" height=\"297\" /></span>\n\n<span data-contrast=\"auto\">The goal is to restore capacity around the pelvis, spine, and shoulders, ensuring they move freely and correctly.</span>\n\n<span data-contrast=\"auto\">Stability and ControlBuilding on the first phase, this stage focuses on:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<ul>\n 	<li><span data-contrast=\"auto\">Aligning the spine and enhancing capacity.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li><span data-contrast=\"auto\">Reducing risk when performing core strength exercises.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>\n<span data-contrast=\"auto\">Using a three-step approach based on research by Haines, McGill, Matthews, and Cholwewicki to stabilize and control the pelvis, spine, and shoulders.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span><span data-contrast=\"auto\">This phase prepares clients for more advanced movements, promoting overall stability and control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4115\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1024x576.jpg\" alt=\"romanian-deadlifts-training-the-other-half-of-your-leg-header-v2\" width=\"368\" height=\"207\" /></span></span>\n<h3><span style=\"text-decoration: underline;\"> Function &amp; Performance</span></h3>\n<span data-contrast=\"auto\">The final phase strengthens key areas like the pelvis, shoulders, knees, and feet. It involves:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<ul>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Assessing joint strength ratios.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Considering sport-specific movements and pre-orthotic conditioning.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">This phase aims to reduce injury risk and optimize performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4116\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2.jpg\" alt=\"olympic-lifting-2\" width=\"444\" height=\"283\" /></span></span></h3>\n<h2>Biomechanics Education Programmes</h2>\n<h3><span style=\"font-weight: 400;\">Biomechanics Coach™ (BC)</span></h3>\n<span style=\"font-weight: 400;\">This is an 6-8-month diploma with 4-6 days face to face, a 1hr practical assessment and home study, open to level 3 exercise professionals and above including therapists and coaches with an equivalent level of anatomy knowledge and exercise prescription skills. There are a total of 42 manual and visual assessments based on over 20yrs of research comparing them to isokinetic results for accuracy. BC’s are encouraged and reputed, to have a high level of inter-professional language skills giving them the ability to cross both exercise and therapy worlds while maintaining their professional scope of practice. </span>\n<h3><span style=\"font-weight: 400;\">Intrinsic Biomechanics Association (IBA)</span></h3>\n<span style=\"font-weight: 400;\">An organisation offering education, support, networking opportunities and encouragement of inter-professional relationships between exercise professionals, sports coaches, therapists, clinicians, podiatrists and any professional working one to one or in group exercise. It is also for those interested in learning and sharing anything that helps us all improve health, function and fitness while reducing injury risk in our clients. The IBA runs 6 annual Discovery Day workshops/webinars that are open to both members (free) and non-members who will pay a small access fee. </span>\n<h3><span style=\"font-weight: 400;\">Master Trainer (MT)</span></h3>\n<span style=\"font-weight: 400;\">An individual trained to deliver the intrinsic biomechanics education programmes through a licensed Education Provider. Open to BC’s demonstrating teaching and communication skills while pro-actively promoting intrinsic biomechanics education and skills. </span>\n<h2>Join Us</h2>\n<span data-contrast=\"auto\">Would you like to be part of this fast-growing, highly reputed group of practitioners contributing to improving movement, reducing discomfort, and lowering injury risk?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">YES? </span><a href=\"https://www.biomechanicseducation.com/imovefreely-3/\"><span data-contrast=\"none\">CLICK HERE</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">By joining, you\'ll gain access to a network of professionals and the latest biomechanics education to enhance your practice and client outcomes.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>','What Exactly Is Intrinsic Biomechanics?','','inherit','closed','closed','','4106-autosave-v1','','','2024-09-06 14:57:07','2024-09-06 14:57:07','',4106,'https://biomechanicseducation.com/?p=39630',0,'revision','',0),(39631,3,'2024-09-06 14:54:24','2024-09-06 14:54:24','<h2>What Exactly Is Intrinsic Biomechanics?</h2>\r\n<span data-contrast=\"auto\">At Biomechanics Education, we often encounter questions about the type of biomechanics we specialise in. This blog aims to clarify this by defining key terms and concepts related to our field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Definitions</h3>\r\n<span style=\"font-weight: 400;\">The study of the mechanical laws relating to the movement or structure of living organisms.</span>\r\n\r\n<strong><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW255872933 BCX8\"><strong><span class=\"SCXW255872933 BCX8\"> </span></strong><br class=\"SCXW255872933 BCX8\" /></span><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">The study of mechanical laws relating to the movement or structure of living organisms.</span></span><span class=\"EOP SCXW255872933 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">Extrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW13749985 BCX8\"><strong><span class=\"SCXW13749985 BCX8\"> </span></strong><br class=\"SCXW13749985 BCX8\" /></span><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">This involves analysing movement performance using advanced machinery like </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW13749985 BCX8\">isokinetics</span><span class=\"NormalTextRun SCXW13749985 BCX8\"> and kinematics to understand forces, loads, and levers. Practically, it includes observing and correcting client movements using verbal and visual cues.</span></span><span class=\"EOP SCXW13749985 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-4110\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/ankleinvsupine.jpg\" alt=\"ankleinvsupine\" width=\"318\" height=\"270\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><strong><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">Intrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW41082360 BCX8\"><br class=\"SCXW41082360 BCX8\" /></span><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">This focuses on understanding the internal neuro-musculoskeletal system, which creates external movements. It examines what happens inside the body to produce the movements we see externally.</span></span></span><span style=\"font-weight: 400;\"><span class=\"EOP SCXW41082360 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></span><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4111\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Picture1-1.png\" alt=\"picture1-1\" width=\"376\" height=\"270\" /></span></span>\r\n<h2>iMoveFreely® (IMF) Programme</h2>\r\n<span data-contrast=\"auto\">The iMoveFreely® programme is a system of low-intensity exercises designed to prepare the body for movement, reduce injury risk, and enhance performance. Initially exclusive to high-level athletes, it is now recognised as fundamental for anyone seeking to move more freely. The programme consists of three phases:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"wp-image-4114 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3491-1024x768.jpg\" alt=\"img_3491\" width=\"354\" height=\"266\" /></span><span style=\"font-weight: 400;\">Preparation &amp; Capacity</span></span></h3>\r\n<span data-contrast=\"auto\">This phase addresses the interconnectedness of muscles, joints, and nerves with techniques that:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Use specific muscle energy techniques to reduce spasms (based on Ribot-Ciscar and Jiri Dvorak’s research).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Incorporate nerve mobilization techniques (based on David Butler’s work).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Apply joint mobilisation techniques to improve movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"297\" height=\"297\" /></span>\r\n\r\n<span data-contrast=\"auto\">The goal is to restore capacity around the pelvis, spine, and shoulders, ensuring they move freely and correctly.</span>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-size: calc(var(--prose-base-font-size) * 1.5); letter-spacing: -0.02em; color: var(--clr-text); font-family: var(--font-body); text-decoration: underline;\">Stability &amp; Control</span></span></h3>\r\n<span data-contrast=\"auto\">Building on the first phase, this stage focuses on:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Aligning the spine and enhancing capacity.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Reducing risk when performing core strength exercises.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span data-contrast=\"auto\">Using a three-step approach based on research by Haines, McGill, Matthews, and Cholwewicki to stabilize and control the pelvis, spine, and shoulders.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span><span data-contrast=\"auto\">This phase prepares clients for more advanced movements, promoting overall stability and control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4115\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1024x576.jpg\" alt=\"romanian-deadlifts-training-the-other-half-of-your-leg-header-v2\" width=\"368\" height=\"207\" /></span></span>\r\n<h3><span style=\"text-decoration: underline;\"> Function &amp; Performance</span></h3>\r\n<span data-contrast=\"auto\">The final phase strengthens key areas like the pelvis, shoulders, knees, and feet. It involves:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Assessing joint strength ratios.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Considering sport-specific movements and pre-orthotic conditioning.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">This phase aims to reduce injury risk and optimize performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4116\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2.jpg\" alt=\"olympic-lifting-2\" width=\"444\" height=\"283\" /></span></span></h3>\r\n<h2>Biomechanics Education Programmes</h2>\r\n<h3><span style=\"font-weight: 400;\">Biomechanics Coach™ (BC)</span></h3>\r\n<span style=\"font-weight: 400;\">This is an 6-8-month diploma with 4-6 days face to face, a 1hr practical assessment and home study, open to level 3 exercise professionals and above including therapists and coaches with an equivalent level of anatomy knowledge and exercise prescription skills. There are a total of 42 manual and visual assessments based on over 20yrs of research comparing them to isokinetic results for accuracy. BC’s are encouraged and reputed, to have a high level of inter-professional language skills giving them the ability to cross both exercise and therapy worlds while maintaining their professional scope of practice. </span>\r\n<h3><span style=\"font-weight: 400;\">Intrinsic Biomechanics Association (IBA)</span></h3>\r\n<span style=\"font-weight: 400;\">An organisation offering education, support, networking opportunities and encouragement of inter-professional relationships between exercise professionals, sports coaches, therapists, clinicians, podiatrists and any professional working one to one or in group exercise. It is also for those interested in learning and sharing anything that helps us all improve health, function and fitness while reducing injury risk in our clients. The IBA runs 6 annual Discovery Day workshops/webinars that are open to both members (free) and non-members who will pay a small access fee. </span>\r\n<h3><span style=\"font-weight: 400;\">Master Trainer (MT)</span></h3>\r\n<span style=\"font-weight: 400;\">An individual trained to deliver the intrinsic biomechanics education programmes through a licensed Education Provider. Open to BC’s demonstrating teaching and communication skills while pro-actively promoting intrinsic biomechanics education and skills. </span>\r\n<h2>Join Us</h2>\r\n<span data-contrast=\"auto\">Would you like to be part of this fast-growing, highly reputed group of practitioners contributing to improving movement, reducing discomfort, and lowering injury risk?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">YES? </span><a href=\"https://www.biomechanicseducation.com/imovefreely-3/\"><span data-contrast=\"none\">CLICK HERE</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">By joining, you\'ll gain access to a network of professionals and the latest biomechanics education to enhance your practice and client outcomes.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>','What Exactly Is Intrinsic Biomechanics?','','inherit','closed','closed','','4106-revision-v1','','','2024-09-06 14:54:24','2024-09-06 14:54:24','',4106,'https://biomechanicseducation.com/?p=39631',0,'revision','',0),(39632,3,'2024-09-06 14:55:19','2024-09-06 14:55:19','<h2>What Exactly Is Intrinsic Biomechanics?</h2>\r\n<span data-contrast=\"auto\">At Biomechanics Education, we often encounter questions about the type of biomechanics we specialise in. This blog aims to clarify this by defining key terms and concepts related to our field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Definitions</h3>\r\n<span style=\"font-weight: 400;\">The study of the mechanical laws relating to the movement or structure of living organisms.</span>\r\n\r\n<strong><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW255872933 BCX8\"><strong><span class=\"SCXW255872933 BCX8\"> </span></strong><br class=\"SCXW255872933 BCX8\" /></span><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">The study of mechanical laws relating to the movement or structure of living organisms.</span></span><span class=\"EOP SCXW255872933 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">Extrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW13749985 BCX8\"><strong><span class=\"SCXW13749985 BCX8\"> </span></strong><br class=\"SCXW13749985 BCX8\" /></span><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">This involves analysing movement performance using advanced machinery like </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW13749985 BCX8\">isokinetics</span><span class=\"NormalTextRun SCXW13749985 BCX8\"> and kinematics to understand forces, loads, and levers. Practically, it includes observing and correcting client movements using verbal and visual cues.</span></span><span class=\"EOP SCXW13749985 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-4110\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/ankleinvsupine.jpg\" alt=\"ankleinvsupine\" width=\"318\" height=\"270\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><strong><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">Intrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW41082360 BCX8\"><br class=\"SCXW41082360 BCX8\" /></span><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">This focuses on understanding the internal neuro-musculoskeletal system, which creates external movements. It examines what happens inside the body to produce the movements we see externally.</span></span></span><span style=\"font-weight: 400;\"><span class=\"EOP SCXW41082360 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></span><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4111\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Picture1-1.png\" alt=\"picture1-1\" width=\"376\" height=\"270\" /></span></span>\r\n<h2>iMoveFreely® (IMF) Programme</h2>\r\n<span data-contrast=\"auto\">The iMoveFreely® programme is a system of low-intensity exercises designed to prepare the body for movement, reduce injury risk, and enhance performance. Initially exclusive to high-level athletes, it is now recognised as fundamental for anyone seeking to move more freely. The programme consists of three phases:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"wp-image-4114 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3491-1024x768.jpg\" alt=\"img_3491\" width=\"354\" height=\"266\" /></span><span style=\"font-weight: 400;\">Preparation &amp; Capacity</span></span></h3>\r\n<span data-contrast=\"auto\">This phase addresses the interconnectedness of muscles, joints, and nerves with techniques that:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Use specific muscle energy techniques to reduce spasms (based on Ribot-Ciscar and Jiri Dvorak’s research).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Incorporate nerve mobilization techniques (based on David Butler’s work).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Apply joint mobilisation techniques to improve movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"297\" height=\"297\" /></span>\r\n\r\n<span data-contrast=\"auto\">The goal is to restore capacity around the pelvis, spine, and shoulders, ensuring they move freely and correctly.</span>\r\n<h3><u>Stability and Control</u></h3>\r\n<span data-contrast=\"auto\">Building on the first phase, this stage focuses on:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Aligning the spine and enhancing capacity.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Reducing risk when performing core strength exercises.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span data-contrast=\"auto\">Using a three-step approach based on research by Haines, McGill, Matthews, and Cholwewicki to stabilize and control the pelvis, spine, and shoulders.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span><span data-contrast=\"auto\">This phase prepares clients for more advanced movements, promoting overall stability and control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4115\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1024x576.jpg\" alt=\"romanian-deadlifts-training-the-other-half-of-your-leg-header-v2\" width=\"368\" height=\"207\" /></span></span>\r\n<h3><span style=\"text-decoration: underline;\"> Function &amp; Performance</span></h3>\r\n<span data-contrast=\"auto\">The final phase strengthens key areas like the pelvis, shoulders, knees, and feet. It involves:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Assessing joint strength ratios.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Considering sport-specific movements and pre-orthotic conditioning.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">This phase aims to reduce injury risk and optimize performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4116\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2.jpg\" alt=\"olympic-lifting-2\" width=\"444\" height=\"283\" /></span></span></h3>\r\n<h2>Biomechanics Education Programmes</h2>\r\n<h3><span style=\"font-weight: 400;\">Biomechanics Coach™ (BC)</span></h3>\r\n<span style=\"font-weight: 400;\">This is an 6-8-month diploma with 4-6 days face to face, a 1hr practical assessment and home study, open to level 3 exercise professionals and above including therapists and coaches with an equivalent level of anatomy knowledge and exercise prescription skills. There are a total of 42 manual and visual assessments based on over 20yrs of research comparing them to isokinetic results for accuracy. BC’s are encouraged and reputed, to have a high level of inter-professional language skills giving them the ability to cross both exercise and therapy worlds while maintaining their professional scope of practice. </span>\r\n<h3><span style=\"font-weight: 400;\">Intrinsic Biomechanics Association (IBA)</span></h3>\r\n<span style=\"font-weight: 400;\">An organisation offering education, support, networking opportunities and encouragement of inter-professional relationships between exercise professionals, sports coaches, therapists, clinicians, podiatrists and any professional working one to one or in group exercise. It is also for those interested in learning and sharing anything that helps us all improve health, function and fitness while reducing injury risk in our clients. The IBA runs 6 annual Discovery Day workshops/webinars that are open to both members (free) and non-members who will pay a small access fee. </span>\r\n<h3><span style=\"font-weight: 400;\">Master Trainer (MT)</span></h3>\r\n<span style=\"font-weight: 400;\">An individual trained to deliver the intrinsic biomechanics education programmes through a licensed Education Provider. Open to BC’s demonstrating teaching and communication skills while pro-actively promoting intrinsic biomechanics education and skills. </span>\r\n<h2>Join Us</h2>\r\n<span data-contrast=\"auto\">Would you like to be part of this fast-growing, highly reputed group of practitioners contributing to improving movement, reducing discomfort, and lowering injury risk?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">YES? </span><a href=\"https://www.biomechanicseducation.com/imovefreely-3/\"><span data-contrast=\"none\">CLICK HERE</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">By joining, you\'ll gain access to a network of professionals and the latest biomechanics education to enhance your practice and client outcomes.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>','What Exactly Is Intrinsic Biomechanics?','','inherit','closed','closed','','4106-revision-v1','','','2024-09-06 14:55:19','2024-09-06 14:55:19','',4106,'https://biomechanicseducation.com/?p=39632',0,'revision','',0),(39633,3,'2024-09-06 14:57:18','2024-09-06 14:57:18','<h2>What Exactly Is Intrinsic Biomechanics?</h2>\r\n<span data-contrast=\"auto\">At Biomechanics Education, we often encounter questions about the type of biomechanics we specialise in. This blog aims to clarify this by defining key terms and concepts related to our field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Definitions</h3>\r\n<span style=\"font-weight: 400;\">The study of the mechanical laws relating to the movement or structure of living organisms.</span>\r\n\r\n<strong><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW255872933 BCX8\"><strong><span class=\"SCXW255872933 BCX8\"> </span></strong><br class=\"SCXW255872933 BCX8\" /></span><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">The study of mechanical laws relating to the movement or structure of living organisms.</span></span><span class=\"EOP SCXW255872933 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">Extrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW13749985 BCX8\"><strong><span class=\"SCXW13749985 BCX8\"> </span></strong><br class=\"SCXW13749985 BCX8\" /></span><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">This involves analysing movement performance using advanced machinery like </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW13749985 BCX8\">isokinetics</span><span class=\"NormalTextRun SCXW13749985 BCX8\"> and kinematics to understand forces, loads, and levers. Practically, it includes observing and correcting client movements using verbal and visual cues.</span></span><span class=\"EOP SCXW13749985 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-4110\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/ankleinvsupine.jpg\" alt=\"ankleinvsupine\" width=\"318\" height=\"270\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><strong><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">Intrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW41082360 BCX8\"><br class=\"SCXW41082360 BCX8\" /></span><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">This focuses on understanding the internal neuro-musculoskeletal system, which creates external movements. It examines what happens inside the body to produce the movements we see externally.</span></span></span><span style=\"font-weight: 400;\"><span class=\"EOP SCXW41082360 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></span><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4111\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Picture1-1.png\" alt=\"picture1-1\" width=\"376\" height=\"270\" /></span></span>\r\n<h2>iMoveFreely® (IMF) Programme</h2>\r\n<span data-contrast=\"auto\">The iMoveFreely® programme is a system of low-intensity exercises designed to prepare the body for movement, reduce injury risk, and enhance performance. Initially exclusive to high-level athletes, it is now recognised as fundamental for anyone seeking to move more freely. The programme consists of three phases:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"wp-image-4114 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3491-1024x768.jpg\" alt=\"img_3491\" width=\"354\" height=\"266\" /></span><span style=\"font-weight: 400;\">Preparation &amp; Capacity</span></span></h3>\r\n<span data-contrast=\"auto\">This phase addresses the interconnectedness of muscles, joints, and nerves with techniques that:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Use specific muscle energy techniques to reduce spasms (based on Ribot-Ciscar and Jiri Dvorak’s research).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Incorporate nerve mobilization techniques (based on David Butler’s work).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Apply joint mobilisation techniques to improve movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"297\" height=\"297\" /></span>\r\n\r\n<span data-contrast=\"auto\">The goal is to restore capacity around the pelvis, spine, and shoulders, ensuring they move freely and correctly.</span>\r\n<h2><span style=\"text-decoration: underline;\">Stability and Control</span></h2>\r\n<span data-contrast=\"auto\">Building on the first phase, this stage focuses on:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Aligning the spine and enhancing capacity.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Reducing risk when performing core strength exercises.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span data-contrast=\"auto\">Using a three-step approach based on research by Haines, McGill, Matthews, and Cholwewicki to stabilize and control the pelvis, spine, and shoulders.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span><span data-contrast=\"auto\">This phase prepares clients for more advanced movements, promoting overall stability and control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4115\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1024x576.jpg\" alt=\"romanian-deadlifts-training-the-other-half-of-your-leg-header-v2\" width=\"368\" height=\"207\" /></span></span>\r\n<h3><span style=\"text-decoration: underline;\"> Function &amp; Performance</span></h3>\r\n<span data-contrast=\"auto\">The final phase strengthens key areas like the pelvis, shoulders, knees, and feet. It involves:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Assessing joint strength ratios.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Considering sport-specific movements and pre-orthotic conditioning.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">This phase aims to reduce injury risk and optimize performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4116\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2.jpg\" alt=\"olympic-lifting-2\" width=\"444\" height=\"283\" /></span></span></h3>\r\n<h2>Biomechanics Education Programmes</h2>\r\n<h3><span style=\"font-weight: 400;\">Biomechanics Coach™ (BC)</span></h3>\r\n<span style=\"font-weight: 400;\">This is an 6-8-month diploma with 4-6 days face to face, a 1hr practical assessment and home study, open to level 3 exercise professionals and above including therapists and coaches with an equivalent level of anatomy knowledge and exercise prescription skills. There are a total of 42 manual and visual assessments based on over 20yrs of research comparing them to isokinetic results for accuracy. BC’s are encouraged and reputed, to have a high level of inter-professional language skills giving them the ability to cross both exercise and therapy worlds while maintaining their professional scope of practice. </span>\r\n<h3><span style=\"font-weight: 400;\">Intrinsic Biomechanics Association (IBA)</span></h3>\r\n<span style=\"font-weight: 400;\">An organisation offering education, support, networking opportunities and encouragement of inter-professional relationships between exercise professionals, sports coaches, therapists, clinicians, podiatrists and any professional working one to one or in group exercise. It is also for those interested in learning and sharing anything that helps us all improve health, function and fitness while reducing injury risk in our clients. The IBA runs 6 annual Discovery Day workshops/webinars that are open to both members (free) and non-members who will pay a small access fee. </span>\r\n<h3><span style=\"font-weight: 400;\">Master Trainer (MT)</span></h3>\r\n<span style=\"font-weight: 400;\">An individual trained to deliver the intrinsic biomechanics education programmes through a licensed Education Provider. Open to BC’s demonstrating teaching and communication skills while pro-actively promoting intrinsic biomechanics education and skills. </span>\r\n<h2>Join Us</h2>\r\n<span data-contrast=\"auto\">Would you like to be part of this fast-growing, highly reputed group of practitioners contributing to improving movement, reducing discomfort, and lowering injury risk?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">YES? </span><a href=\"https://www.biomechanicseducation.com/imovefreely-3/\"><span data-contrast=\"none\">CLICK HERE</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">By joining, you\'ll gain access to a network of professionals and the latest biomechanics education to enhance your practice and client outcomes.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>','What Exactly Is Intrinsic Biomechanics?','','inherit','closed','closed','','4106-revision-v1','','','2024-09-06 14:57:18','2024-09-06 14:57:18','',4106,'https://biomechanicseducation.com/?p=39633',0,'revision','',0);
INSERT INTO `6m7_posts` VALUES (39634,3,'2024-09-06 14:58:06','2024-09-06 14:58:06','<h2>What Exactly Is Intrinsic Biomechanics?</h2>\r\n<span data-contrast=\"auto\">At Biomechanics Education, we often encounter questions about the type of biomechanics we specialise in. This blog aims to clarify this by defining key terms and concepts related to our field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Definitions</h3>\r\n<span style=\"font-weight: 400;\">The study of the mechanical laws relating to the movement or structure of living organisms.</span>\r\n\r\n<strong><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW255872933 BCX8\"><strong><span class=\"SCXW255872933 BCX8\"> </span></strong><br class=\"SCXW255872933 BCX8\" /></span><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">The study of mechanical laws relating to the movement or structure of living organisms.</span></span><span class=\"EOP SCXW255872933 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">Extrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW13749985 BCX8\"><strong><span class=\"SCXW13749985 BCX8\"> </span></strong><br class=\"SCXW13749985 BCX8\" /></span><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">This involves analysing movement performance using advanced machinery like </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW13749985 BCX8\">isokinetics</span><span class=\"NormalTextRun SCXW13749985 BCX8\"> and kinematics to understand forces, loads, and levers. Practically, it includes observing and correcting client movements using verbal and visual cues.</span></span><span class=\"EOP SCXW13749985 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-4110\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/ankleinvsupine.jpg\" alt=\"ankleinvsupine\" width=\"318\" height=\"270\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><strong><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">Intrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW41082360 BCX8\"><br class=\"SCXW41082360 BCX8\" /></span><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">This focuses on understanding the internal neuro-musculoskeletal system, which creates external movements. It examines what happens inside the body to produce the movements we see externally.</span></span></span><span style=\"font-weight: 400;\"><span class=\"EOP SCXW41082360 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></span><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4111\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Picture1-1.png\" alt=\"picture1-1\" width=\"376\" height=\"270\" /></span></span>\r\n<h2>iMoveFreely® (IMF) Programme</h2>\r\n<span data-contrast=\"auto\">The iMoveFreely® programme is a system of low-intensity exercises designed to prepare the body for movement, reduce injury risk, and enhance performance. Initially exclusive to high-level athletes, it is now recognised as fundamental for anyone seeking to move more freely. The programme consists of three phases:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"wp-image-4114 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3491-1024x768.jpg\" alt=\"img_3491\" width=\"354\" height=\"266\" /></span></span></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\">Preparation &amp; Capacity</span></span></h3>\r\n<span data-contrast=\"auto\">This phase addresses the interconnectedness of muscles, joints, and nerves with techniques that:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Use specific muscle energy techniques to reduce spasms (based on Ribot-Ciscar and Jiri Dvorak’s research).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Incorporate nerve mobilization techniques (based on David Butler’s work).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Apply joint mobilisation techniques to improve movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"297\" height=\"297\" /></span>\r\n\r\n<span data-contrast=\"auto\">The goal is to restore capacity around the pelvis, spine, and shoulders, ensuring they move freely and correctly.</span>\r\n<h2><span style=\"text-decoration: underline;\">Stability and Control</span></h2>\r\n<span data-contrast=\"auto\">Building on the first phase, this stage focuses on:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Aligning the spine and enhancing capacity.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Reducing risk when performing core strength exercises.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span data-contrast=\"auto\">Using a three-step approach based on research by Haines, McGill, Matthews, and Cholwewicki to stabilize and control the pelvis, spine, and shoulders.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span><span data-contrast=\"auto\">This phase prepares clients for more advanced movements, promoting overall stability and control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4115\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1024x576.jpg\" alt=\"romanian-deadlifts-training-the-other-half-of-your-leg-header-v2\" width=\"368\" height=\"207\" /></span></span>\r\n<h3><span style=\"text-decoration: underline;\"> Function &amp; Performance</span></h3>\r\n<span data-contrast=\"auto\">The final phase strengthens key areas like the pelvis, shoulders, knees, and feet. It involves:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Assessing joint strength ratios.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Considering sport-specific movements and pre-orthotic conditioning.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">This phase aims to reduce injury risk and optimize performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4116\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2.jpg\" alt=\"olympic-lifting-2\" width=\"444\" height=\"283\" /></span></span></h3>\r\n<h2>Biomechanics Education Programmes</h2>\r\n<h3><span style=\"font-weight: 400;\">Biomechanics Coach™ (BC)</span></h3>\r\n<span style=\"font-weight: 400;\">This is an 6-8-month diploma with 4-6 days face to face, a 1hr practical assessment and home study, open to level 3 exercise professionals and above including therapists and coaches with an equivalent level of anatomy knowledge and exercise prescription skills. There are a total of 42 manual and visual assessments based on over 20yrs of research comparing them to isokinetic results for accuracy. BC’s are encouraged and reputed, to have a high level of inter-professional language skills giving them the ability to cross both exercise and therapy worlds while maintaining their professional scope of practice. </span>\r\n<h3><span style=\"font-weight: 400;\">Intrinsic Biomechanics Association (IBA)</span></h3>\r\n<span style=\"font-weight: 400;\">An organisation offering education, support, networking opportunities and encouragement of inter-professional relationships between exercise professionals, sports coaches, therapists, clinicians, podiatrists and any professional working one to one or in group exercise. It is also for those interested in learning and sharing anything that helps us all improve health, function and fitness while reducing injury risk in our clients. The IBA runs 6 annual Discovery Day workshops/webinars that are open to both members (free) and non-members who will pay a small access fee. </span>\r\n<h3><span style=\"font-weight: 400;\">Master Trainer (MT)</span></h3>\r\n<span style=\"font-weight: 400;\">An individual trained to deliver the intrinsic biomechanics education programmes through a licensed Education Provider. Open to BC’s demonstrating teaching and communication skills while pro-actively promoting intrinsic biomechanics education and skills. </span>\r\n<h2>Join Us</h2>\r\n<span data-contrast=\"auto\">Would you like to be part of this fast-growing, highly reputed group of practitioners contributing to improving movement, reducing discomfort, and lowering injury risk?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">YES? </span><a href=\"https://www.biomechanicseducation.com/imovefreely-3/\"><span data-contrast=\"none\">CLICK HERE</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">By joining, you\'ll gain access to a network of professionals and the latest biomechanics education to enhance your practice and client outcomes.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>','What Exactly Is Intrinsic Biomechanics?','','inherit','closed','closed','','4106-revision-v1','','','2024-09-06 14:58:06','2024-09-06 14:58:06','',4106,'https://biomechanicseducation.com/?p=39634',0,'revision','',0),(39635,3,'2024-09-06 14:58:49','2024-09-06 14:58:49','<h2>What Exactly Is Intrinsic Biomechanics?</h2>\r\n<span data-contrast=\"auto\">At Biomechanics Education, we often encounter questions about the type of biomechanics we specialise in. This blog aims to clarify this by defining key terms and concepts related to our field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Definitions</h3>\r\n<span style=\"font-weight: 400;\">The study of the mechanical laws relating to the movement or structure of living organisms.</span>\r\n\r\n<strong><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW255872933 BCX8\"><strong><span class=\"SCXW255872933 BCX8\"> </span></strong><br class=\"SCXW255872933 BCX8\" /></span><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">The study of mechanical laws relating to the movement or structure of living organisms.</span></span><span class=\"EOP SCXW255872933 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">Extrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW13749985 BCX8\"><strong><span class=\"SCXW13749985 BCX8\"> </span></strong><br class=\"SCXW13749985 BCX8\" /></span><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">This involves analysing movement performance using advanced machinery like </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW13749985 BCX8\">isokinetics</span><span class=\"NormalTextRun SCXW13749985 BCX8\"> and kinematics to understand forces, loads, and levers. Practically, it includes observing and correcting client movements using verbal and visual cues.</span></span><span class=\"EOP SCXW13749985 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-4110\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/ankleinvsupine.jpg\" alt=\"ankleinvsupine\" width=\"318\" height=\"270\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><strong><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">Intrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW41082360 BCX8\"><br class=\"SCXW41082360 BCX8\" /></span><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">This focuses on understanding the internal neuro-musculoskeletal system, which creates external movements. It examines what happens inside the body to produce the movements we see externally.</span></span></span><span style=\"font-weight: 400;\"><span class=\"EOP SCXW41082360 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></span><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4111\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Picture1-1.png\" alt=\"picture1-1\" width=\"376\" height=\"270\" /></span></span>\r\n<h2>iMoveFreely® (IMF) Programme</h2>\r\n<span data-contrast=\"auto\">The iMoveFreely® programme is a system of low-intensity exercises designed to prepare the body for movement, reduce injury risk, and enhance performance. Initially exclusive to high-level athletes, it is now recognised as fundamental for anyone seeking to move more freely. The programme consists of three phases:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"wp-image-4114 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3491-1024x768.jpg\" alt=\"img_3491\" width=\"354\" height=\"266\" /></span></span></h3>\r\n<h3></h3>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\">Preparation &amp; Capacity</span></span></h3>\r\n<span data-contrast=\"auto\">This phase addresses the interconnectedness of muscles, joints, and nerves with techniques that:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Use specific muscle energy techniques to reduce spasms (based on Ribot-Ciscar and Jiri Dvorak’s research).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Incorporate nerve mobilization techniques (based on David Butler’s work).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Apply joint mobilisation techniques to improve movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"297\" height=\"297\" /></span>\r\n\r\n<span data-contrast=\"auto\">The goal is to restore capacity around the pelvis, spine, and shoulders, ensuring they move freely and correctly.</span>\r\n<h2><span style=\"text-decoration: underline;\">Stability and Control</span></h2>\r\n<span data-contrast=\"auto\">Building on the first phase, this stage focuses on:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Aligning the spine and enhancing capacity.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Reducing risk when performing core strength exercises.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span data-contrast=\"auto\">Using a three-step approach based on research by Haines, McGill, Matthews, and Cholwewicki to stabilize and control the pelvis, spine, and shoulders.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span><span data-contrast=\"auto\">This phase prepares clients for more advanced movements, promoting overall stability and control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4115\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1024x576.jpg\" alt=\"romanian-deadlifts-training-the-other-half-of-your-leg-header-v2\" width=\"368\" height=\"207\" /></span></span>\r\n<h3><span style=\"text-decoration: underline;\"> Function &amp; Performance</span></h3>\r\n<span data-contrast=\"auto\">The final phase strengthens key areas like the pelvis, shoulders, knees, and feet. It involves:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Assessing joint strength ratios.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Considering sport-specific movements and pre-orthotic conditioning.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">This phase aims to reduce injury risk and optimize performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4116\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2.jpg\" alt=\"olympic-lifting-2\" width=\"444\" height=\"283\" /></span></span></h3>\r\n<h2>Biomechanics Education Programmes</h2>\r\n<h3><span style=\"font-weight: 400;\">Biomechanics Coach™ (BC)</span></h3>\r\n<span style=\"font-weight: 400;\">This is an 6-8-month diploma with 4-6 days face to face, a 1hr practical assessment and home study, open to level 3 exercise professionals and above including therapists and coaches with an equivalent level of anatomy knowledge and exercise prescription skills. There are a total of 42 manual and visual assessments based on over 20yrs of research comparing them to isokinetic results for accuracy. BC’s are encouraged and reputed, to have a high level of inter-professional language skills giving them the ability to cross both exercise and therapy worlds while maintaining their professional scope of practice. </span>\r\n<h3><span style=\"font-weight: 400;\">Intrinsic Biomechanics Association (IBA)</span></h3>\r\n<span style=\"font-weight: 400;\">An organisation offering education, support, networking opportunities and encouragement of inter-professional relationships between exercise professionals, sports coaches, therapists, clinicians, podiatrists and any professional working one to one or in group exercise. It is also for those interested in learning and sharing anything that helps us all improve health, function and fitness while reducing injury risk in our clients. The IBA runs 6 annual Discovery Day workshops/webinars that are open to both members (free) and non-members who will pay a small access fee. </span>\r\n<h3><span style=\"font-weight: 400;\">Master Trainer (MT)</span></h3>\r\n<span style=\"font-weight: 400;\">An individual trained to deliver the intrinsic biomechanics education programmes through a licensed Education Provider. Open to BC’s demonstrating teaching and communication skills while pro-actively promoting intrinsic biomechanics education and skills. </span>\r\n<h2>Join Us</h2>\r\n<span data-contrast=\"auto\">Would you like to be part of this fast-growing, highly reputed group of practitioners contributing to improving movement, reducing discomfort, and lowering injury risk?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">YES? </span><a href=\"https://www.biomechanicseducation.com/imovefreely-3/\"><span data-contrast=\"none\">CLICK HERE</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">By joining, you\'ll gain access to a network of professionals and the latest biomechanics education to enhance your practice and client outcomes.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>','What Exactly Is Intrinsic Biomechanics?','','inherit','closed','closed','','4106-revision-v1','','','2024-09-06 14:58:49','2024-09-06 14:58:49','',4106,'https://biomechanicseducation.com/?p=39635',0,'revision','',0),(39636,3,'2024-09-06 15:00:22','2024-09-06 15:00:22','<h2>What Exactly Is Intrinsic Biomechanics?</h2>\r\n<span data-contrast=\"auto\">At Biomechanics Education, we often encounter questions about the type of biomechanics we specialise in. This blog aims to clarify this by defining key terms and concepts related to our field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Definitions</h3>\r\n<span style=\"font-weight: 400;\">The study of the mechanical laws relating to the movement or structure of living organisms.</span>\r\n\r\n<strong><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW255872933 BCX8\"><strong><span class=\"SCXW255872933 BCX8\"> </span></strong><br class=\"SCXW255872933 BCX8\" /></span><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">The study of mechanical laws relating to the movement or structure of living organisms.</span></span><span class=\"EOP SCXW255872933 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">Extrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW13749985 BCX8\"><strong><span class=\"SCXW13749985 BCX8\"> </span></strong><br class=\"SCXW13749985 BCX8\" /></span><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">This involves analysing movement performance using advanced machinery like </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW13749985 BCX8\">isokinetics</span><span class=\"NormalTextRun SCXW13749985 BCX8\"> and kinematics to understand forces, loads, and levers. Practically, it includes observing and correcting client movements using verbal and visual cues.</span></span><span class=\"EOP SCXW13749985 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-4110\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/ankleinvsupine.jpg\" alt=\"ankleinvsupine\" width=\"318\" height=\"270\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><strong><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">Intrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW41082360 BCX8\"><br class=\"SCXW41082360 BCX8\" /></span><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">This focuses on understanding the internal neuro-musculoskeletal system, which creates external movements. It examines what happens inside the body to produce the movements we see externally.</span></span></span><span style=\"font-weight: 400;\"><span class=\"EOP SCXW41082360 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></span><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4111\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Picture1-1.png\" alt=\"picture1-1\" width=\"376\" height=\"270\" /></span></span>\r\n<h2>iMoveFreely® (IMF) Programme</h2>\r\n<span data-contrast=\"auto\">The iMoveFreely® programme is a system of low-intensity exercises designed to prepare the body for movement, reduce injury risk, and enhance performance. Initially exclusive to high-level athletes, it is now recognised as fundamental for anyone seeking to move more freely. The programme consists of three phases:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"wp-image-4114 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3491-1024x768.jpg\" alt=\"img_3491\" width=\"354\" height=\"266\" /></span></span></h3>\r\n<h3><span style=\"text-decoration: underline;\">Preparation and Capacity</span></h3>\r\n<span data-contrast=\"auto\">This phase addresses the interconnectedness of muscles, joints, and nerves with techniques that:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Use specific muscle energy techniques to reduce spasms (based on Ribot-Ciscar and Jiri Dvorak’s research).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Incorporate nerve mobilization techniques (based on David Butler’s work).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Apply joint mobilisation techniques to improve movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"297\" height=\"297\" /></span>\r\n\r\n<span data-contrast=\"auto\">The goal is to restore capacity around the pelvis, spine, and shoulders, ensuring they move freely and correctly.</span>\r\n<h2><span style=\"text-decoration: underline;\">Stability and Control</span></h2>\r\n<span data-contrast=\"auto\">Building on the first phase, this stage focuses on:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Aligning the spine and enhancing capacity.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Reducing risk when performing core strength exercises.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span data-contrast=\"auto\">Using a three-step approach based on research by Haines, McGill, Matthews, and Cholwewicki to stabilize and control the pelvis, spine, and shoulders.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span><span data-contrast=\"auto\">This phase prepares clients for more advanced movements, promoting overall stability and control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4115\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1024x576.jpg\" alt=\"romanian-deadlifts-training-the-other-half-of-your-leg-header-v2\" width=\"368\" height=\"207\" /></span></span>\r\n<h3><span style=\"text-decoration: underline;\"> Function &amp; Performance</span></h3>\r\n<span data-contrast=\"auto\">The final phase strengthens key areas like the pelvis, shoulders, knees, and feet. It involves:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Assessing joint strength ratios.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Considering sport-specific movements and pre-orthotic conditioning.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">This phase aims to reduce injury risk and optimize performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4116\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2.jpg\" alt=\"olympic-lifting-2\" width=\"444\" height=\"283\" /></span></span></h3>\r\n<h2>Biomechanics Education Programmes</h2>\r\n<h3><span style=\"font-weight: 400;\">Biomechanics Coach™ (BC)</span></h3>\r\n<span style=\"font-weight: 400;\">This is an 6-8-month diploma with 4-6 days face to face, a 1hr practical assessment and home study, open to level 3 exercise professionals and above including therapists and coaches with an equivalent level of anatomy knowledge and exercise prescription skills. There are a total of 42 manual and visual assessments based on over 20yrs of research comparing them to isokinetic results for accuracy. BC’s are encouraged and reputed, to have a high level of inter-professional language skills giving them the ability to cross both exercise and therapy worlds while maintaining their professional scope of practice. </span>\r\n<h3><span style=\"font-weight: 400;\">Intrinsic Biomechanics Association (IBA)</span></h3>\r\n<span style=\"font-weight: 400;\">An organisation offering education, support, networking opportunities and encouragement of inter-professional relationships between exercise professionals, sports coaches, therapists, clinicians, podiatrists and any professional working one to one or in group exercise. It is also for those interested in learning and sharing anything that helps us all improve health, function and fitness while reducing injury risk in our clients. The IBA runs 6 annual Discovery Day workshops/webinars that are open to both members (free) and non-members who will pay a small access fee. </span>\r\n<h3><span style=\"font-weight: 400;\">Master Trainer (MT)</span></h3>\r\n<span style=\"font-weight: 400;\">An individual trained to deliver the intrinsic biomechanics education programmes through a licensed Education Provider. Open to BC’s demonstrating teaching and communication skills while pro-actively promoting intrinsic biomechanics education and skills. </span>\r\n<h2>Join Us</h2>\r\n<span data-contrast=\"auto\">Would you like to be part of this fast-growing, highly reputed group of practitioners contributing to improving movement, reducing discomfort, and lowering injury risk?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">YES? </span><a href=\"https://www.biomechanicseducation.com/imovefreely-3/\"><span data-contrast=\"none\">CLICK HERE</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">By joining, you\'ll gain access to a network of professionals and the latest biomechanics education to enhance your practice and client outcomes.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>','What Exactly Is Intrinsic Biomechanics?','','inherit','closed','closed','','4106-revision-v1','','','2024-09-06 15:00:22','2024-09-06 15:00:22','',4106,'https://biomechanicseducation.com/?p=39636',0,'revision','',0),(39637,3,'2024-09-06 15:08:57','2024-09-06 15:08:57','','Rachel hosting a Biomechanics Workshop','','inherit','closed','closed','','dsc_6677','','','2024-09-06 15:09:40','2024-09-06 15:09:40','',4106,'https://biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6677.jpg',0,'attachment','image/jpeg',0),(39639,1,'2024-09-09 12:54:35','2024-09-09 12:54:35','','Find a BM Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-09 12:54:35','2024-09-09 12:54:35','',39493,'https://biomechanicseducation.com/?p=39639',0,'revision','',0),(40263,3,'2024-09-17 08:27:33','2024-09-17 08:27:33','','Behaviour Change Coaching','','publish','closed','closed','','behaviour-change-coaching','','','2024-09-18 11:35:36','2024-09-18 11:35:36','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40263',0,'course','',0),(40264,11,'2024-12-18 09:30:09','2024-12-18 09:30:09','','Biomechanics for Personal Trainers','','publish','closed','closed','','biomechanics-for-personal-trainers','','','2024-12-18 09:34:22','2024-12-18 09:34:22','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40264',0,'course','',0),(40265,3,'2024-10-23 14:09:00','2024-10-23 14:09:00','','Biomechanics for Pilates Teachers','','publish','closed','closed','','biomechanics-for-pilates-teachers','','','2024-11-06 15:30:32','2024-11-06 15:30:32','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40265',0,'course','',0),(40266,0,'2024-09-10 14:17:56','0000-00-00 00:00:00','','Biomechanics for Podiatrists','','draft','closed','closed','','','','','2024-09-10 14:17:56','0000-00-00 00:00:00','',0,'https://biomechanicseducation.com/?post_type=course&p=40266',0,'course','',0),(40267,0,'2024-09-10 14:17:56','0000-00-00 00:00:00','','Biomechanics for Sports Coaches','','draft','closed','closed','','','','','2024-09-10 14:17:56','0000-00-00 00:00:00','',0,'https://biomechanicseducation.com/?post_type=course&p=40267',0,'course','',0),(40268,0,'2024-09-10 14:17:56','0000-00-00 00:00:00','','Biomechanics for Sports Massage Therapists','','draft','closed','closed','','','','','2024-09-10 14:17:56','0000-00-00 00:00:00','',0,'https://biomechanicseducation.com/?post_type=course&p=40268',0,'course','',0),(40269,0,'2024-09-10 14:17:56','0000-00-00 00:00:00','','Biomechanics for Strength and Conditioning Coaches','','draft','closed','closed','','','','','2024-09-10 14:17:56','0000-00-00 00:00:00','',0,'https://biomechanicseducation.com/?post_type=course&p=40269',0,'course','',0),(40270,3,'2024-09-17 09:01:39','2024-09-17 09:01:39','','Building Your Fitness Business','','publish','closed','closed','','building-your-fitness-business','','','2024-09-26 09:23:01','2024-09-26 09:23:01','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40270',0,'course','',0),(40271,3,'2024-09-17 09:45:39','2024-09-17 09:45:39','','Coaching Fitness Online','','publish','closed','closed','','coaching-fitness-online','','','2024-09-26 09:23:34','2024-09-26 09:23:34','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40271',0,'course','',0),(40272,3,'2024-09-17 10:08:04','2024-09-17 10:08:04','','Core Training','','publish','closed','closed','','core-training','','','2024-09-26 09:24:18','2024-09-26 09:24:18','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40272',0,'course','',0),(40273,3,'2024-09-18 08:45:16','2024-09-18 08:45:16','','Deadlift Analysis Made Simple','','publish','closed','closed','','deadlift-analysis-made-simple','','','2024-09-26 08:45:36','2024-09-26 08:45:36','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40273',0,'course','',0),(40274,3,'2024-09-17 15:49:18','2024-09-17 15:49:18','','Foot Biomechanics Made Simple','','publish','closed','closed','','foot-biomechanics-made-simple','','','2024-09-26 08:46:35','2024-09-26 08:46:35','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40274',0,'course','',0),(40275,3,'2024-09-17 12:07:56','2024-09-17 12:07:56','','Fundamental Principles of Movement','','publish','closed','closed','','fundamental-principles-of-movement','','','2024-09-26 09:24:54','2024-09-26 09:24:54','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40275',0,'course','',0),(40276,3,'2024-09-19 12:07:38','2024-09-19 12:07:38','','IBA Membership','','publish','closed','closed','','iba-membership','','','2024-10-29 10:50:08','2024-10-29 10:50:08','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40276',0,'course','',0),(40277,3,'2024-09-17 11:46:49','2024-09-17 11:46:49','','Introduction to iMoveFreely','','publish','closed','closed','','imovefreely','','','2025-02-10 11:31:22','2025-02-10 11:31:22','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40277',0,'course','',0),(40278,3,'2024-09-17 11:58:39','2024-09-17 11:58:39','','Introduction to Intrinsic Biomechanics','','draft','closed','closed','','introduction-to-intrinsic-biomechanics','','','2024-10-07 09:48:07','2024-10-07 09:48:07','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40278',0,'course','',0),(40279,3,'2024-09-17 14:11:00','2024-09-17 14:11:00','','Pain Science Made Simple','','publish','closed','closed','','pain-science-made-simple','','','2024-09-26 08:47:04','2024-09-26 08:47:04','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40279',0,'course','',0),(40280,3,'2024-09-17 12:59:06','2024-09-17 12:59:06','','Practical Anatomy Series','','publish','closed','closed','','practical-anatomy-series','','','2024-09-26 09:26:26','2024-09-26 09:26:26','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40280',0,'course','',0),(40281,3,'2024-09-17 11:10:50','2024-09-17 11:10:50','','Running Biomechanics','','publish','closed','closed','','running-biomechanics','','','2024-09-26 09:27:02','2024-09-26 09:27:02','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40281',0,'course','',0),(40282,3,'2024-09-17 15:58:24','2024-09-17 15:58:24','','The Foot Posture Index','','publish','closed','closed','','the-foot-posture-index','','','2024-10-04 08:51:03','2024-10-04 08:51:03','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40282',0,'course','',0),(40283,3,'2024-09-17 15:41:32','2024-09-17 15:41:32','','Understanding Nerves','','publish','closed','closed','','understanding-nerves','','','2024-09-26 08:47:49','2024-09-26 08:47:49','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40283',0,'course','',0),(40284,3,'2024-09-17 13:26:57','2024-09-17 13:26:57','','Weak Glutes Webinar','','publish','closed','closed','','weak-glutes','','','2024-09-26 09:19:55','2024-09-26 09:19:55','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40284',0,'course','',0),(40285,3,'2024-09-17 15:08:11','2024-09-17 15:08:11','','What the hell is Functional Training anyway?','','publish','closed','closed','','what-the-hell-is-functional-training-anyway','','','2024-09-26 09:20:42','2024-09-26 09:20:42','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40285',0,'course','',0),(40286,3,'2024-09-11 10:42:53','2024-09-11 10:42:53','','Womens Health - Menopause and Programming','','publish','closed','closed','','womens-health-menopause-and-programming','','','2024-09-26 09:27:17','2024-09-26 09:27:17','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40286',0,'course','',0),(40288,3,'2024-09-10 15:15:23','2024-09-10 15:15:23','','Womens health menopause and programming hero image','','inherit','closed','closed','','womens-health-menopause-and-programming-hero-image','','','2024-09-10 15:15:23','2024-09-10 15:15:23','',40286,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Womens-health-menopause-and-programming-hero-image.jpg',0,'attachment','image/jpeg',0),(40289,3,'2024-09-10 15:15:55','2024-09-10 15:15:55','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-10 15:15:55','2024-09-10 15:15:55','',40286,'https://biomechanicseducation.com/?p=40289',0,'revision','',0),(40290,3,'2024-09-10 15:17:23','2024-09-10 15:17:23','','WOMENS HEALTH MENOPAUSE AND PROGRAMMING 50.50 IMAGE','','inherit','closed','closed','','womens-health-menopause-and-programming-50-50-image','','','2024-09-10 15:17:23','2024-09-10 15:17:23','',40286,'https://biomechanicseducation.com/wp-content/uploads/2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-IMAGE.jpg',0,'attachment','image/jpeg',0),(40291,3,'2024-09-10 15:17:38','2024-09-10 15:17:38','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-10 15:17:38','2024-09-10 15:17:38','',40286,'https://biomechanicseducation.com/?p=40291',0,'revision','',0),(40292,3,'2024-09-10 15:19:56','2024-09-10 15:19:56','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-10 15:19:56','2024-09-10 15:19:56','',40286,'https://biomechanicseducation.com/?p=40292',0,'revision','',0),(40294,3,'2024-09-10 15:24:23','2024-09-10 15:24:23','','WOMENS HEALTH MENOPAUSE AND PROGRAMMING 50.50 2 IMAGE-min','','inherit','closed','closed','','womens-health-menopause-and-programming-50-50-2-image-min','','','2024-09-10 15:24:23','2024-09-10 15:24:23','',40286,'https://biomechanicseducation.com/wp-content/uploads/2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min.jpg',0,'attachment','image/jpeg',0),(40295,3,'2024-09-10 15:24:59','2024-09-10 15:24:59','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-10 15:24:59','2024-09-10 15:24:59','',40286,'https://biomechanicseducation.com/?p=40295',0,'revision','',0),(40296,3,'2024-09-10 15:27:32','2024-09-10 15:27:32','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-10 15:27:32','2024-09-10 15:27:32','',40286,'https://biomechanicseducation.com/?p=40296',0,'revision','',0),(40297,3,'2024-09-10 15:27:53','2024-09-10 15:27:53','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-10 15:27:53','2024-09-10 15:27:53','',40286,'https://biomechanicseducation.com/?p=40297',0,'revision','',0),(40298,3,'2024-09-10 15:28:13','2024-09-10 15:28:13','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-10 15:28:13','2024-09-10 15:28:13','',40286,'https://biomechanicseducation.com/?p=40298',0,'revision','',0),(40299,3,'2024-09-10 15:28:38','2024-09-10 15:28:38','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-10 15:28:38','2024-09-10 15:28:38','',40286,'https://biomechanicseducation.com/?p=40299',0,'revision','',0),(40300,3,'2024-09-10 15:29:26','2024-09-10 15:29:26','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-10 15:29:26','2024-09-10 15:29:26','',40286,'https://biomechanicseducation.com/?p=40300',0,'revision','',0),(40301,3,'2024-09-10 15:32:48','2024-09-10 15:32:48','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-10 15:32:48','2024-09-10 15:32:48','',40286,'https://biomechanicseducation.com/?p=40301',0,'revision','',0),(40303,3,'2024-09-11 10:43:08','2024-09-11 10:43:08','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-11 10:43:08','2024-09-11 10:43:08','',40286,'https://biomechanicseducation.com/?p=40303',0,'revision','',0),(40305,3,'2024-09-11 10:47:06','2024-09-11 10:47:06','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-11 10:47:06','2024-09-11 10:47:06','',40286,'https://biomechanicseducation.com/?p=40305',0,'revision','',0),(40307,3,'2024-09-11 14:49:14','2024-09-11 14:49:14','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-09-11 14:49:14','2024-09-11 14:49:14','',7,'https://biomechanicseducation.com/?p=40307',0,'revision','',0),(40308,3,'2024-09-11 14:59:34','2024-09-11 14:59:34','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-09-11 14:59:34','2024-09-11 14:59:34','',7,'https://biomechanicseducation.com/?p=40308',0,'revision','',0),(40309,3,'2024-09-12 08:00:12','2024-09-12 08:00:12','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-09-12 08:00:12','2024-09-12 08:00:12','',38973,'https://biomechanicseducation.com/?p=40309',0,'revision','',0),(40310,3,'2024-09-12 08:15:57','2024-09-12 08:15:57','','Corporate,,Development,And,Seminar,With,Business,People,In,Conference,Room','','inherit','closed','closed','','corporatedevelopmentandseminarwithbusinesspeopleinconferenceroom','','','2024-09-12 08:15:57','2024-09-12 08:15:57','',39043,'https://biomechanicseducation.com/wp-content/uploads/2024/09/shutterstock_2485558527.jpg',0,'attachment','image/jpeg',0),(40311,3,'2024-09-12 08:17:18','2024-09-12 08:17:18','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-09-12 08:17:18','2024-09-12 08:17:18','',39043,'https://biomechanicseducation.com/?p=40311',0,'revision','',0),(40312,3,'2024-09-12 11:12:38','2024-09-12 11:12:38','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-09-12 11:12:38','2024-09-12 11:12:38','',39043,'https://biomechanicseducation.com/?p=40312',0,'revision','',0),(40313,3,'2024-09-12 11:13:16','2024-09-12 11:13:16','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-09-12 11:13:16','2024-09-12 11:13:16','',39043,'https://biomechanicseducation.com/?p=40313',0,'revision','',0),(40314,3,'2024-09-12 11:13:31','2024-09-12 11:13:31','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-09-12 11:13:31','2024-09-12 11:13:31','',39043,'https://biomechanicseducation.com/?p=40314',0,'revision','',0),(40315,3,'2024-09-12 11:13:47','2024-09-12 11:13:47','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-09-12 11:13:47','2024-09-12 11:13:47','',39043,'https://biomechanicseducation.com/?p=40315',0,'revision','',0),(40316,3,'2024-09-12 11:14:31','2024-09-12 11:14:31','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-09-12 11:14:31','2024-09-12 11:14:31','',39043,'https://biomechanicseducation.com/?p=40316',0,'revision','',0),(40317,3,'2024-09-12 11:17:14','2024-09-12 11:17:14','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-09-12 11:17:14','2024-09-12 11:17:14','',39043,'https://biomechanicseducation.com/?p=40317',0,'revision','',0),(40318,3,'2024-09-12 11:18:21','2024-09-12 11:18:21','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-09-12 11:18:21','2024-09-12 11:18:21','',39043,'https://biomechanicseducation.com/?p=40318',0,'revision','',0),(40319,3,'2024-09-12 11:20:06','2024-09-12 11:20:06','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-09-12 11:20:06','2024-09-12 11:20:06','',39043,'https://biomechanicseducation.com/?p=40319',0,'revision','',0),(40320,3,'2024-09-12 11:22:37','2024-09-12 11:22:37','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-09-12 11:22:37','2024-09-12 11:22:37','',39066,'https://biomechanicseducation.com/?p=40320',0,'revision','',0),(40321,3,'2024-09-12 11:40:16','2024-09-12 11:40:16','','Thank You','','publish','closed','closed','','thank-you','','','2025-06-10 15:18:57','2025-06-10 15:18:57','',39270,'https://biomechanicseducation.com/?page_id=40321',0,'page','',0),(40322,3,'2024-09-12 11:40:16','2024-09-12 11:40:16','','Thank You','','inherit','closed','closed','','40321-revision-v1','','','2024-09-12 11:40:16','2024-09-12 11:40:16','',40321,'https://biomechanicseducation.com/?p=40322',0,'revision','',0),(40323,3,'2024-09-12 11:45:33','2024-09-12 11:45:33','','Thank You','','inherit','closed','closed','','40321-revision-v1','','','2024-09-12 11:45:33','2024-09-12 11:45:33','',40321,'https://biomechanicseducation.com/?p=40323',0,'revision','',0),(40325,3,'2024-09-12 11:46:33','2024-09-12 11:46:33','','Thank You','','inherit','closed','closed','','40321-revision-v1','','','2024-09-12 11:46:33','2024-09-12 11:46:33','',40321,'https://biomechanicseducation.com/?p=40325',0,'revision','',0),(40326,3,'2024-09-12 11:47:16','2024-09-12 11:47:16','','Thank You','','inherit','closed','closed','','40321-revision-v1','','','2024-09-12 11:47:16','2024-09-12 11:47:16','',40321,'https://biomechanicseducation.com/?p=40326',0,'revision','',0),(40327,3,'2024-09-12 11:49:54','2024-09-12 11:49:54','','Error Form Submission','','publish','closed','closed','','error-form-submission','','','2024-09-12 11:52:21','2024-09-12 11:52:21','',0,'https://biomechanicseducation.com/?page_id=40327',0,'page','',0),(40328,3,'2024-09-12 11:49:54','2024-09-12 11:49:54','','Error Form Submission','','inherit','closed','closed','','40327-revision-v1','','','2024-09-12 11:49:54','2024-09-12 11:49:54','',40327,'https://biomechanicseducation.com/?p=40328',0,'revision','',0),(40329,3,'2024-09-12 11:52:21','2024-09-12 11:52:21','','Error Form Submission','','inherit','closed','closed','','40327-revision-v1','','','2024-09-12 11:52:21','2024-09-12 11:52:21','',40327,'https://biomechanicseducation.com/?p=40329',0,'revision','',0),(40330,3,'2024-09-12 14:25:43','2024-09-12 14:25:43','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-12 14:25:43','2024-09-12 14:25:43','',39148,'https://biomechanicseducation.com/?p=40330',0,'revision','',0),(40331,3,'2024-09-12 14:26:15','2024-09-12 14:26:15','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-12 14:26:15','2024-09-12 14:26:15','',39148,'https://biomechanicseducation.com/?p=40331',0,'revision','',0),(40332,3,'2024-09-12 14:26:48','2024-09-12 14:26:48','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-12 14:26:48','2024-09-12 14:26:48','',39148,'https://biomechanicseducation.com/?p=40332',0,'revision','',0),(40333,3,'2024-09-12 15:09:48','2024-09-12 15:09:48','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-12 15:09:48','2024-09-12 15:09:48','',39148,'https://biomechanicseducation.com/?p=40333',0,'revision','',0),(40334,3,'2024-09-12 15:13:14','2024-09-12 15:13:14','','Survey','','publish','closed','closed','','survey','','','2024-09-13 15:12:13','2024-09-13 15:12:13','',0,'https://biomechanicseducation.com/?page_id=40334',0,'page','',0),(40335,3,'2024-09-12 15:13:14','2024-09-12 15:13:14','','Survey','','inherit','closed','closed','','40334-revision-v1','','','2024-09-12 15:13:14','2024-09-12 15:13:14','',40334,'https://biomechanicseducation.com/?p=40335',0,'revision','',0),(40339,3,'2024-09-13 11:01:55','2024-09-13 11:01:55','','Biomechanics Workshop','','inherit','closed','closed','','dsc07708','','','2024-09-13 11:02:50','2024-09-13 11:02:50','',39196,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC07708.jpg',0,'attachment','image/jpeg',0),(40340,3,'2024-09-13 11:03:35','2024-09-13 11:03:35','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:03:35','2024-09-13 11:03:35','',39196,'https://biomechanicseducation.com/?p=40340',0,'revision','',0),(40341,3,'2024-09-13 11:05:19','2024-09-13 11:05:19','','DSC01742','','inherit','closed','closed','','dsc01742','','','2024-09-13 11:05:19','2024-09-13 11:05:19','',39196,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC01742.jpg',0,'attachment','image/jpeg',0),(40342,3,'2024-09-13 11:05:54','2024-09-13 11:05:54','','Rachel teaching a Biomechanics workshop','','inherit','closed','closed','','dsc01742-2','','','2024-09-13 11:06:42','2024-09-13 11:06:42','',39196,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC01742-1.jpg',0,'attachment','image/jpeg',0),(40343,3,'2024-09-13 11:12:44','2024-09-13 11:12:44','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:12:44','2024-09-13 11:12:44','',39196,'https://biomechanicseducation.com/?p=40343',0,'revision','',0),(40344,3,'2024-09-13 11:13:57','2024-09-13 11:13:57','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:13:57','2024-09-13 11:13:57','',39196,'https://biomechanicseducation.com/?p=40344',0,'revision','',0),(40345,3,'2024-09-13 11:18:14','2024-09-13 11:18:14','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:18:14','2024-09-13 11:18:14','',39196,'https://biomechanicseducation.com/?p=40345',0,'revision','',0),(40346,3,'2024-09-13 11:18:45','2024-09-13 11:18:45','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:18:45','2024-09-13 11:18:45','',39196,'https://biomechanicseducation.com/?p=40346',0,'revision','',0),(40347,3,'2024-09-13 11:25:22','2024-09-13 11:25:22','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:25:22','2024-09-13 11:25:22','',39196,'https://biomechanicseducation.com/?p=40347',0,'revision','',0),(40348,3,'2024-09-13 11:27:38','2024-09-13 11:27:38','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:27:38','2024-09-13 11:27:38','',39196,'https://biomechanicseducation.com/?p=40348',0,'revision','',0),(40349,3,'2024-09-13 11:29:11','2024-09-13 11:29:11','','woman working on notes whislt assessing a client who is a man, laying on a massage table.','','inherit','closed','closed','','dsc02019','','','2024-09-13 11:33:48','2024-09-13 11:33:48','',39196,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC02019.jpg',0,'attachment','image/jpeg',0),(40350,3,'2024-09-13 11:36:37','2024-09-13 11:36:37','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:36:37','2024-09-13 11:36:37','',39196,'https://biomechanicseducation.com/?p=40350',0,'revision','',0),(40351,3,'2024-09-13 11:37:28','2024-09-13 11:37:28','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:37:28','2024-09-13 11:37:28','',39196,'https://biomechanicseducation.com/?p=40351',0,'revision','',0),(40352,3,'2024-09-13 11:38:07','2024-09-13 11:38:07','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:38:07','2024-09-13 11:38:07','',39196,'https://biomechanicseducation.com/?p=40352',0,'revision','',0),(40353,3,'2024-09-13 11:41:25','2024-09-13 11:41:25','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:41:25','2024-09-13 11:41:25','',39196,'https://biomechanicseducation.com/?p=40353',0,'revision','',0),(40354,3,'2024-09-13 11:42:11','2024-09-13 11:42:11','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:42:11','2024-09-13 11:42:11','',39196,'https://biomechanicseducation.com/?p=40354',0,'revision','',0),(40355,3,'2024-09-13 11:43:12','2024-09-13 11:43:12','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:43:12','2024-09-13 11:43:12','',39196,'https://biomechanicseducation.com/?p=40355',0,'revision','',0),(40356,3,'2024-09-13 11:44:28','2024-09-13 11:44:28','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:44:28','2024-09-13 11:44:28','',39196,'https://biomechanicseducation.com/?p=40356',0,'revision','',0),(40358,3,'2024-09-13 11:45:28','2024-09-13 11:45:28','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 11:45:28','2024-09-13 11:45:28','',39196,'https://biomechanicseducation.com/?p=40358',0,'revision','',0),(40359,3,'2024-09-13 11:49:15','2024-09-13 11:49:15','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-09-13 11:49:15','2024-09-13 11:49:15','',38973,'https://biomechanicseducation.com/?p=40359',0,'revision','',0),(40360,3,'2024-09-13 11:52:45','2024-09-13 11:52:45','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-09-13 11:52:45','2024-09-13 11:52:45','',38973,'https://biomechanicseducation.com/?p=40360',0,'revision','',0),(40361,3,'2024-09-13 11:58:44','2024-09-13 11:58:44','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-09-13 11:58:44','2024-09-13 11:58:44','',38973,'https://biomechanicseducation.com/?p=40361',0,'revision','',0),(40362,3,'2024-09-13 12:00:35','2024-09-13 12:00:35','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-09-13 12:00:35','2024-09-13 12:00:35','',38973,'https://biomechanicseducation.com/?p=40362',0,'revision','',0),(40363,3,'2024-09-13 12:03:47','2024-09-13 12:03:47','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-09-13 12:03:47','2024-09-13 12:03:47','',38973,'https://biomechanicseducation.com/?p=40363',0,'revision','',0),(40364,3,'2024-09-13 12:04:49','2024-09-13 12:04:49','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-09-13 12:04:49','2024-09-13 12:04:49','',38973,'https://biomechanicseducation.com/?p=40364',0,'revision','',0),(40365,3,'2024-09-13 12:08:39','2024-09-13 12:08:39','Completing this behaviour change coaching course will enhance your knowledge and ability to help clients achieve long-term change in relation to their diet and exercise behaviour. This will look at elements including the need for change, barriers to change, models of behaviour change, communication and the Formula4Change system.','What is this Behaviour Change Coaching course?','','inherit','closed','closed','','39134-autosave-v1','','','2024-09-13 12:08:39','2024-09-13 12:08:39','',39134,'https://biomechanicseducation.com/?p=40365',0,'revision','',0),(40366,3,'2024-09-13 12:12:18','2024-09-13 12:12:18','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-13 12:12:18','2024-09-13 12:12:18','',39214,'https://biomechanicseducation.com/?p=40366',0,'revision','',0),(40367,3,'2024-09-13 12:13:26','2024-09-13 12:13:26','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-13 12:13:26','2024-09-13 12:13:26','',39214,'https://biomechanicseducation.com/?p=40367',0,'revision','',0),(40368,3,'2024-09-13 12:13:42','2024-09-13 12:13:42','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-13 12:13:42','2024-09-13 12:13:42','',39214,'https://biomechanicseducation.com/?p=40368',0,'revision','',0),(40369,3,'2024-09-13 12:21:30','2024-09-13 12:21:30','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-13 12:21:30','2024-09-13 12:21:30','',39238,'https://biomechanicseducation.com/?p=40369',0,'revision','',0),(40370,3,'2024-09-13 12:21:57','2024-09-13 12:21:57','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-13 12:21:57','2024-09-13 12:21:57','',39231,'https://biomechanicseducation.com/?p=40370',0,'revision','',0),(40371,3,'2024-09-13 12:23:19','2024-09-13 12:23:19','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-13 12:23:19','2024-09-13 12:23:19','',39238,'https://biomechanicseducation.com/?p=40371',0,'revision','',0),(40372,3,'2024-09-13 12:28:12','2024-09-13 12:28:12','<h2><strong>How can Biomechanics Effect Mobility?</strong></h2>\r\nIn today’s world, our need to move has significantly decreased. With food delivery at our fingertips, cars and public transport for travel, laptops for messaging, and video calls for virtual interactions, we are moving and loading our bodies much less. While these technological advancements offer convenience, they also lead to decreased physical activity, which can negatively impact our bodies.\r\n<h2><strong>Why Movement Matters</strong></h2>\r\nMovement is essential for maintaining the health of our body’s subsystems: bones, muscles, and nerves. Each requires regular stimulus and load to stay functional:\r\n\r\nBones gain density through impact and loading, and joint mobility is maintained by the motion that improves synovial fluid production.\r\n\r\nMuscles need strength, which comes from progressive overload.\r\n\r\nNerves require proprioceptive challenges and need to glide between structures to send efficient messages.\r\n<h2><img class=\"alignnone size-medium wp-image-37202\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/11/2-1-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></h2>\r\n<h2><strong>What is Biomechanics?</strong></h2>\r\nBiomechanics is the science of evaluating the relationship between the human body and the laws of physics. It involves understanding how force, gravity, motion, and momentum affect the body. For example, joint range of motion is influenced by:\r\n<ul>\r\n 	<li>The joint\'s ability to move</li>\r\n 	<li>Muscle strength and control</li>\r\n 	<li>Gravity’s effect on muscles and joints</li>\r\n 	<li>The length of levers involved</li>\r\n 	<li>Neuromuscular complexity related to balance and support</li>\r\n 	<li>Understanding Mobility</li>\r\n</ul>\r\nMobility refers to the range of motion in a joint, largely determined by genetics. Practitioners can analyze human movement to identify limitations in mobility. For instance, comparing current movement capabilities to previous ones can highlight reduced mobility. Common examples include difficulty bending knees and hips to pick something up, indicating potential joint limitations. Upper body mobility, especially in shoulders, can also be affected by prolonged sitting postures.\r\n\r\nEven nerve tightness can limit joint mobility by causing muscle stiffness, reducing synovial fluid production, and creating a cascade of effects throughout the body.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>How Biomechanics Enhances Mobility</h2>\r\nThe central nervous system (CNS) acts like the body’s software, sending messages from the brain to muscles via the spinal cord and peripheral nerves. Understanding biomechanics and anatomy helps in measuring and improving mobility. By assessing joint ranges and applying exercise prescriptions, practitioners can monitor and enhance clients’ mobility.\r\n<h2><img class=\"alignnone size-medium wp-image-37204\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/11/4-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></h2>\r\n<h2>Benefits of Biomechanics Knowledge</h2>\r\nA solid understanding of biomechanics is crucial for assessing movement risks and how different subsystems influence each other. Physical activity promotes optimal health by maintaining homeostasis between muscles, bones, and nerves. Expanding this knowledge to include mindset, hormones, and nutrition provides a holistic approach to health and fitness.\r\n\r\nGaining expertise in biomechanics can be invaluable for personal trainers and sports coaches, helping them feel more confident and effective in their roles. Additional training in Biomechanics Coaching or Strength and Conditioning can significantly enhance their ability to assist clients and athletes in achieving specific goals.\r\n<h3>Do You Need a Biomechanics Coach?</h3>\r\nImproving mobility can be as simple as moving more and exploring new movements. However, a Biomechanics Coach brings specialized training to assess the entire body and prescribe safe, effective techniques for improving mobility. These coaches are trained to identify injury risks and empower clients with knowledge, leading to long-term positive changes.\r\n<h3>Conclusion</h3>\r\nPractical skills in biomechanics, particularly intrinsic biomechanics, enable practitioners to assess and improve clients’ mobility effectively. This skill set not only enhances a trainer’s value but also leads to measurable improvements in clients\' movement quality.\r\n\r\nIf you\'re interested in becoming a Biomechanics Coach or expanding your knowledge in intrinsic biomechanics, consider the certified Biomechanics Coach course. For more information or to discuss your career options, contact our advisors.\r\n\r\nPhone: <em>020 3841 6151</em>\r\n\r\nEmail: info@biomechanicseducation.com','How can Biomechanics affect mobility?','','inherit','closed','closed','','37121-revision-v1','','','2024-09-13 12:28:12','2024-09-13 12:28:12','',37121,'https://biomechanicseducation.com/?p=40372',0,'revision','',0),(40373,3,'2024-09-13 12:30:00','2024-09-13 12:30:00','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-13 12:30:00','2024-09-13 12:30:00','',39238,'https://biomechanicseducation.com/?p=40373',0,'revision','',0),(40374,3,'2024-09-13 12:31:09','2024-09-13 12:31:09','','Biomechanics and Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2024-09-13 12:31:09','2024-09-13 12:31:09','',39249,'https://biomechanicseducation.com/?p=40374',0,'revision','',0),(40375,3,'2024-09-13 12:32:20','2024-09-13 12:32:20','The Importance of Frontal Plane Training\r\n\r\nFrontal plane training is critically underrated! It plays a vital role in enhancing pelvic biomechanics, improving stability, and reducing the risk of groin strains and hernias. Despite its importance, many trainers overlook its benefits.\r\n\r\nOptimal Strength Ratios\r\n\r\nGeorge Davies, a noted expert in joint ratios, suggests that our strength in hip adduction and abduction should be approximately equal to 100% of our body weight. This 1:1 strength ratio is essential for balanced and functional movement.\r\n\r\nEffective Exercises for Hip Adduction/Abduction\r\n\r\n1. Seated Flexed Hip Abduction/Adduction Machine\r\n\r\nIdeal for beginners, this machine helps build foundational frontal plane strength. Aim for balanced strength in both actions by using the same reps, sets, and weights for adduction and abduction.\r\n\r\n2. Seated Hip Abduction/Adduction Machine with Angle Variations\r\n\r\nBy altering your hip angle—leaning forward or backward—you engage different muscle fibers and enhance hip stability beyond the typical 90-degree seated position.\r\n\r\n3. Seated Hip Abduction/Adduction Machine in a Kneeling Position\r\n\r\nKneeling on the seat and facing the backrest allows for internal and external hip rotation exercises. This variation changes hip angles and incorporates rotational movements, promoting all-around pelvic strength.\r\n\r\n4. Standing Hip Abduction/Adduction with Bands\r\n\r\nUsing resistance bands in a standing position advances the exercise by challenging neuromuscular control and enhancing pelvic and knee stability. Start with the band around the knees, then progress to the ankles, and eventually perform the exercise without support.\r\n\r\n5. Side-Lying Body Weight Lift (Adductors/Internal Rotators)\r\n\r\nThis exercise offers variability and additional training benefits. Lying on your side near a bench, use your adductors to lift your body off the floor. Increase difficulty by lifting the bottom leg or adding rotational movements.\r\n\r\nWhy Isolation Training Matters\r\n\r\nWhile functional training is essential, isolation exercises are crucial for ensuring each muscle group functions properly. Functional strength depends on the proper contribution of each muscle, and isolation training can help prevent injuries.\r\n\r\nGet Involved and Learn More\r\n\r\nThese exercises are just a starting point for training the pelvis through the frontal plane. Explore and share your own ideas to further enhance your training methods.\r\n\r\nFor more insights, check out our blog by Martin Haines, a chartered physiotherapist and biomechanics coach.\r\n\r\nReferences:\r\n\r\nDINTIMAN et al. (1998) Sports Speed.\r\n\r\nPAGE et al. (2010) Assessment and treatment of muscle imbalance: The Janda approach\r\n\r\nPAGE, P. (2011) Shoulder muscle imbalance and subacromial impingement syndrome in overhead athletes. International journal of sports physical therapy\r\n\r\nZEMKOVA, E. and HAMAR, D. (2010) The effect of 6-week combined agility-balance training on neuromuscular performance in basketball players. The Journal of sports medicine and physical fitness\r\n\r\nMACKENZIE, B. (2000) Muscle Strength and Balance Checks [WWW] Available from: https://www.brianmac.co.uk/sambc.htm [Accessed 1/4/2019]\r\n\r\nhttps://www.ncbi.nlm.nih.gov/pmc/articles/PMC4637913/\r\n\r\n&nbsp;\r\n\r\nWould you like to enhance your client’s mobility to achieve optimal results? Discover how our Biomechanics Coach Diploma can make you a better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!\r\n\r\nClick <a href=\"https://biomechanicseducation.com/courses/\">here</a> to learn more about our Diploma in Biomechanics Coaching.','Hip Adduction/Abduction (Plus Internal/External Rotation) – A Guide for Personal Trainers','','inherit','closed','closed','','39544-revision-v1','','','2024-09-13 12:32:20','2024-09-13 12:32:20','',39544,'https://biomechanicseducation.com/?p=40375',0,'revision','',0),(40376,3,'2024-09-13 12:32:37','2024-09-13 12:32:37','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-09-13 12:32:37','2024-09-13 12:32:37','',39254,'https://biomechanicseducation.com/?p=40376',0,'revision','',0),(40377,3,'2024-09-13 12:32:57','2024-09-13 12:32:57','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-09-13 12:32:57','2024-09-13 12:32:57','',39254,'https://biomechanicseducation.com/?p=40377',0,'revision','',0),(40378,3,'2024-09-13 12:33:18','2024-09-13 12:33:18','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-09-13 12:33:18','2024-09-13 12:33:18','',39254,'https://biomechanicseducation.com/?p=40378',0,'revision','',0),(40379,3,'2024-09-13 12:34:16','2024-09-13 12:34:16','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-09-13 12:34:16','2024-09-13 12:34:16','',39254,'https://biomechanicseducation.com/?p=40379',0,'revision','',0),(40380,3,'2024-09-13 12:34:21','2024-09-13 12:34:21','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-autosave-v1','','','2024-09-13 12:34:21','2024-09-13 12:34:21','',39254,'https://biomechanicseducation.com/?p=40380',0,'revision','',0),(40381,3,'2024-09-13 12:35:06','2024-09-13 12:35:06','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-09-13 12:35:06','2024-09-13 12:35:06','',39254,'https://biomechanicseducation.com/?p=40381',0,'revision','',0),(40382,3,'2024-09-13 12:37:46','2024-09-13 12:37:46','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-09-13 12:37:46','2024-09-13 12:37:46','',39263,'https://biomechanicseducation.com/?p=40382',0,'revision','',0),(40383,3,'2024-09-13 12:39:08','2024-09-13 12:39:08','','BE_Worshop_24thAug- 4','','inherit','closed','closed','','be_worshop_24thaug-4','','','2024-09-13 12:39:08','2024-09-13 12:39:08','',39544,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Worshop_24thAug-4.jpg',0,'attachment','image/jpeg',0),(40384,3,'2024-09-13 12:39:28','2024-09-13 12:39:28','The Importance of Frontal Plane Training\r\n\r\nFrontal plane training is critically underrated! It plays a vital role in enhancing pelvic biomechanics, improving stability, and reducing the risk of groin strains and hernias. Despite its importance, many trainers overlook its benefits.\r\n\r\nOptimal Strength Ratios\r\n\r\nGeorge Davies, a noted expert in joint ratios, suggests that our strength in hip adduction and abduction should be approximately equal to 100% of our body weight. This 1:1 strength ratio is essential for balanced and functional movement.\r\n\r\nEffective Exercises for Hip Adduction/Abduction\r\n\r\n1. Seated Flexed Hip Abduction/Adduction Machine\r\n\r\nIdeal for beginners, this machine helps build foundational frontal plane strength. Aim for balanced strength in both actions by using the same reps, sets, and weights for adduction and abduction.\r\n\r\n2. Seated Hip Abduction/Adduction Machine with Angle Variations\r\n\r\nBy altering your hip angle—leaning forward or backward—you engage different muscle fibers and enhance hip stability beyond the typical 90-degree seated position.\r\n\r\n3. Seated Hip Abduction/Adduction Machine in a Kneeling Position\r\n\r\nKneeling on the seat and facing the backrest allows for internal and external hip rotation exercises. This variation changes hip angles and incorporates rotational movements, promoting all-around pelvic strength.\r\n\r\n4. Standing Hip Abduction/Adduction with Bands\r\n\r\nUsing resistance bands in a standing position advances the exercise by challenging neuromuscular control and enhancing pelvic and knee stability. Start with the band around the knees, then progress to the ankles, and eventually perform the exercise without support.\r\n\r\n5. Side-Lying Body Weight Lift (Adductors/Internal Rotators)\r\n\r\nThis exercise offers variability and additional training benefits. Lying on your side near a bench, use your adductors to lift your body off the floor. Increase difficulty by lifting the bottom leg or adding rotational movements.\r\n\r\nWhy Isolation Training Matters\r\n\r\nWhile functional training is essential, isolation exercises are crucial for ensuring each muscle group functions properly. Functional strength depends on the proper contribution of each muscle, and isolation training can help prevent injuries.\r\n\r\nGet Involved and Learn More\r\n\r\nThese exercises are just a starting point for training the pelvis through the frontal plane. Explore and share your own ideas to further enhance your training methods.\r\n\r\nFor more insights, check out our blog by Martin Haines, a chartered physiotherapist and biomechanics coach.\r\n\r\nReferences:\r\n\r\nDINTIMAN et al. (1998) Sports Speed.\r\n\r\nPAGE et al. (2010) Assessment and treatment of muscle imbalance: The Janda approach\r\n\r\nPAGE, P. (2011) Shoulder muscle imbalance and subacromial impingement syndrome in overhead athletes. International journal of sports physical therapy\r\n\r\nZEMKOVA, E. and HAMAR, D. (2010) The effect of 6-week combined agility-balance training on neuromuscular performance in basketball players. The Journal of sports medicine and physical fitness\r\n\r\nMACKENZIE, B. (2000) Muscle Strength and Balance Checks [WWW] Available from: https://www.brianmac.co.uk/sambc.htm [Accessed 1/4/2019]\r\n\r\nhttps://www.ncbi.nlm.nih.gov/pmc/articles/PMC4637913/\r\n\r\n&nbsp;\r\n\r\nWould you like to enhance your client’s mobility to achieve optimal results? Discover how our Biomechanics Coach Diploma can make you a better personal trainer. Our diploma now includes a Level 4 Low Back Pain Qualification as well!\r\n\r\nClick <a href=\"https://biomechanicseducation.com/courses/\">here</a> to learn more about our Diploma in Biomechanics Coaching.','Hip Adduction/Abduction (Plus Internal/External Rotation) – A Guide for Personal Trainers','','inherit','closed','closed','','39544-revision-v1','','','2024-09-13 12:39:28','2024-09-13 12:39:28','',39544,'https://biomechanicseducation.com/?p=40384',0,'revision','',0),(40385,3,'2024-09-13 12:40:01','2024-09-13 12:40:01','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-09-13 12:40:01','2024-09-13 12:40:01','',39154,'https://biomechanicseducation.com/?p=40385',0,'revision','',0),(40386,3,'2024-09-13 12:40:57','2024-09-13 12:40:57','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-09-13 12:40:57','2024-09-13 12:40:57','',39154,'https://biomechanicseducation.com/?p=40386',0,'revision','',0),(40387,3,'2024-09-13 12:43:55','2024-09-13 12:43:55','','IMG_1565','','inherit','closed','closed','','img_1565','','','2024-09-13 12:43:55','2024-09-13 12:43:55','',37121,'https://biomechanicseducation.com/wp-content/uploads/2023/11/IMG_1565.jpg',0,'attachment','image/jpeg',0),(40388,3,'2024-09-13 12:44:11','2024-09-13 12:44:11','<h2><strong>How can Biomechanics Effect Mobility?</strong></h2>\r\nIn today’s world, our need to move has significantly decreased. With food delivery at our fingertips, cars and public transport for travel, laptops for messaging, and video calls for virtual interactions, we are moving and loading our bodies much less. While these technological advancements offer convenience, they also lead to decreased physical activity, which can negatively impact our bodies.\r\n<h2><strong>Why Movement Matters</strong></h2>\r\nMovement is essential for maintaining the health of our body’s subsystems: bones, muscles, and nerves. Each requires regular stimulus and load to stay functional:\r\n\r\nBones gain density through impact and loading, and joint mobility is maintained by the motion that improves synovial fluid production.\r\n\r\nMuscles need strength, which comes from progressive overload.\r\n\r\nNerves require proprioceptive challenges and need to glide between structures to send efficient messages.\r\n<h2><img class=\"alignnone size-medium wp-image-37202\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/11/2-1-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></h2>\r\n<h2><strong>What is Biomechanics?</strong></h2>\r\nBiomechanics is the science of evaluating the relationship between the human body and the laws of physics. It involves understanding how force, gravity, motion, and momentum affect the body. For example, joint range of motion is influenced by:\r\n<ul>\r\n 	<li>The joint\'s ability to move</li>\r\n 	<li>Muscle strength and control</li>\r\n 	<li>Gravity’s effect on muscles and joints</li>\r\n 	<li>The length of levers involved</li>\r\n 	<li>Neuromuscular complexity related to balance and support</li>\r\n 	<li>Understanding Mobility</li>\r\n</ul>\r\nMobility refers to the range of motion in a joint, largely determined by genetics. Practitioners can analyze human movement to identify limitations in mobility. For instance, comparing current movement capabilities to previous ones can highlight reduced mobility. Common examples include difficulty bending knees and hips to pick something up, indicating potential joint limitations. Upper body mobility, especially in shoulders, can also be affected by prolonged sitting postures.\r\n\r\nEven nerve tightness can limit joint mobility by causing muscle stiffness, reducing synovial fluid production, and creating a cascade of effects throughout the body.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2>How Biomechanics Enhances Mobility</h2>\r\nThe central nervous system (CNS) acts like the body’s software, sending messages from the brain to muscles via the spinal cord and peripheral nerves. Understanding biomechanics and anatomy helps in measuring and improving mobility. By assessing joint ranges and applying exercise prescriptions, practitioners can monitor and enhance clients’ mobility.\r\n<h2><img class=\"alignnone size-medium wp-image-37204\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/11/4-300x169.png\" alt=\"\" width=\"300\" height=\"169\" /></h2>\r\n<h2>Benefits of Biomechanics Knowledge</h2>\r\nA solid understanding of biomechanics is crucial for assessing movement risks and how different subsystems influence each other. Physical activity promotes optimal health by maintaining homeostasis between muscles, bones, and nerves. Expanding this knowledge to include mindset, hormones, and nutrition provides a holistic approach to health and fitness.\r\n\r\nGaining expertise in biomechanics can be invaluable for personal trainers and sports coaches, helping them feel more confident and effective in their roles. Additional training in Biomechanics Coaching or Strength and Conditioning can significantly enhance their ability to assist clients and athletes in achieving specific goals.\r\n<h3>Do You Need a Biomechanics Coach?</h3>\r\nImproving mobility can be as simple as moving more and exploring new movements. However, a Biomechanics Coach brings specialized training to assess the entire body and prescribe safe, effective techniques for improving mobility. These coaches are trained to identify injury risks and empower clients with knowledge, leading to long-term positive changes.\r\n<h3>Conclusion</h3>\r\nPractical skills in biomechanics, particularly intrinsic biomechanics, enable practitioners to assess and improve clients’ mobility effectively. This skill set not only enhances a trainer’s value but also leads to measurable improvements in clients\' movement quality.\r\n\r\nIf you\'re interested in becoming a Biomechanics Coach or expanding your knowledge in intrinsic biomechanics, consider the certified Biomechanics Coach course. For more information or to discuss your career options, contact our advisors.\r\n\r\nPhone: <em>020 3841 6151</em>\r\n\r\nEmail: info@biomechanicseducation.com','How can Biomechanics affect mobility?','','inherit','closed','closed','','37121-revision-v1','','','2024-09-13 12:44:11','2024-09-13 12:44:11','',37121,'https://biomechanicseducation.com/?p=40388',0,'revision','',0),(40390,3,'2024-09-13 12:47:39','2024-09-13 12:47:39','<h2>Introduction</h2>\n&nbsp;\n\n<img class=\"size-medium wp-image-35138 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07008-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\n\n&nbsp;\n\nA biomechanical assessment evaluates how your body moves, both internally and externally. This comprehensive approach helps identify any dysfunctions or imbalances that could be affecting your performance or causing pain. There are two main types of biomechanical assessments:\n<ol>\n 	<li>Biomechanical Analysis Using Equipment</li>\n 	<li>Equipment-Free Biomechanical Assessment</li>\n</ol>\n&nbsp;\n<h3>Biomechanical Analysis Using Equipment</h3>\n&nbsp;\n\n<img class=\"size-medium wp-image-35136 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.19.48-256x300.png\" alt=\"\" width=\"256\" height=\"300\" />\n\n&nbsp;\n<h3>Examples:</h3>\n<ul>\n 	<li><strong>Gait Analysis</strong>: Evaluates walking and running mechanics.</li>\n 	<li><strong>Bike Fitting</strong>: Adjusts bicycle components to fit the rider’s body.</li>\n 	<li><strong>Underwater Video Analysis</strong>: Observes a swimmer’s technique to identify areas for improvement.</li>\n</ul>\n<strong>Equipment-Free Biomechanical Assessment</strong>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35139 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07295-181x300.jpg\" alt=\"\" width=\"181\" height=\"300\" />\n\n&nbsp;\n<h3>Examples:</h3>\n<ul>\n 	<li>Biomechanics Coach Screening: Assessing movement quality through various tests.</li>\n 	<li>Functional Movement Screen (FMS): Identifies movement dysfunctions.</li>\n 	<li>Range of Movement (ROM) Testing: Measures joint flexibility.</li>\n 	<li>Muscle Strength Testing: Evaluates muscle function and strength.</li>\n</ul>\n<h3>Who Conducts Biomechanical Assessments?</h3>\n&nbsp;\n<h4><b>Biomechanics Coaches </b></h4>\n&nbsp;\n\n<img class=\"size-medium wp-image-35140 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07278-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\n\n&nbsp;\n\n&nbsp;\n\nBiomechanics Coaches are certified professionals who specialize in assessing and improving movement quality. They undergo extensive training, including a 7–9-month Diploma in Biomechanics Coaching, after qualifying in fields like personal training, sports therapy, or yoga. They perform detailed assessments of joint and muscle function to identify and address movement issues. You can find a registered Biomechanics Coach in the UK here.\n<h4>Podiatrists</h4>\n&nbsp;\n\n<img class=\"size-medium wp-image-35141 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.19.56-277x300.png\" alt=\"\" width=\"277\" height=\"300\" />\n\n&nbsp;\n\nPodiatrists specialize in foot and lower limb biomechanics. They hold a degree or master’s degree and are registered with the Health &amp; Care Professions Council (HCPC). Podiatrists use advanced techniques like video gait analysis to diagnose and treat foot and ankle issues. Their interventions range from orthotic inserts to specialized exercises, and sometimes surgery.\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35142 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.14-257x300.png\" alt=\"\" width=\"257\" height=\"300\" />\n<h4></h4>\n<h4>Physiotherapists</h4>\nPhysiotherapists complete a minimum of a three-year degree and may specialize in various areas, including biomechanics. They assess muscle strength, range of motion, and movement patterns to diagnose and treat musculoskeletal problems. Physiotherapists often work in multidisciplinary teams in the NHS or privately and use a combination of manual therapy and exercise prescriptions to help patients recover from injuries.\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35143 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.28-269x300.png\" alt=\"\" width=\"269\" height=\"300\" />\n\n&nbsp;\n\n&nbsp;\n<h4>Golf Coaches</h4>\nGolf coaches, often trained through the Professional Golfers Association (PGA), help players improve their biomechanics to enhance performance and reduce injury risk. They may use Functional Movement Screening (FMS) and video analysis to evaluate and refine a golfer’s swing. Look for SafeGolf or PGA-accredited coaches for certified expertise.\n\n<img class=\"size-medium wp-image-29232 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/08/GOLF-andrew-lomas-aGlpdQ2Yolk-unsplash-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\n\n&nbsp;\n<h4>Equine Biomechanics/Riding Coaches</h4>\nRiding coaches trained in equine biomechanics assess both the rider\'s and the horse\'s movement. This dual approach helps identify and correct imbalances that could affect performance. Coaches trained in human biomechanics can offer exercises to help riders maintain symmetry, benefiting both the rider and the horse. Find qualified coaches through the British Horse Society (BHS) or the Register of Biomechanics Coaches.\n<h3>Conclusion</h3>\nUnderstanding the importance of biomechanical assessments is crucial for optimizing movement and reducing pain. With various methods and professionals available, it\'s essential to choose the right type of assessment and assessor for your specific needs. Whether you’re a professional athlete, a casual exerciser, or experiencing movement issues, a biomechanical assessment can provide valuable insights and solutions.\n\nInterested in learning more? Sample our programmes to start assessing and improving your biomechanics today!\n\n&nbsp;\n\n<img class=\"size-medium wp-image-35144 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.42-278x300.png\" alt=\"\" width=\"278\" height=\"300\" />','Biomechanical assessment: everything you need to know','','inherit','closed','closed','','35126-autosave-v1','','','2024-09-13 12:47:39','2024-09-13 12:47:39','',35126,'https://biomechanicseducation.com/?p=40390',0,'revision','',0),(40391,3,'2024-09-13 12:52:27','2024-09-13 12:52:27','','Photo 2021-11-20 09.56.15 am','','inherit','closed','closed','','photo-2021-11-20-09-56-15-am','','','2024-09-13 12:52:27','2024-09-13 12:52:27','',35126,'https://biomechanicseducation.com/wp-content/uploads/2023/02/Photo-2021-11-20-09.56.15-am.jpg',0,'attachment','image/jpeg',0),(40392,3,'2024-09-13 12:52:42','2024-09-13 12:52:42','<h2>Introduction</h2>\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35138 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07008-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\nA biomechanical assessment evaluates how your body moves, both internally and externally. This comprehensive approach helps identify any dysfunctions or imbalances that could be affecting your performance or causing pain. There are two main types of biomechanical assessments:\r\n<ol>\r\n 	<li>Biomechanical Analysis Using Equipment</li>\r\n 	<li>Equipment-Free Biomechanical Assessment</li>\r\n</ol>\r\n&nbsp;\r\n<h3>Biomechanical Analysis Using Equipment</h3>\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35136 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.19.48-256x300.png\" alt=\"\" width=\"256\" height=\"300\" />\r\n\r\n&nbsp;\r\n<h3>Examples:</h3>\r\n<ul>\r\n 	<li><strong>Gait Analysis</strong>: Evaluates walking and running mechanics.</li>\r\n 	<li><strong>Bike Fitting</strong>: Adjusts bicycle components to fit the rider’s body.</li>\r\n 	<li><strong>Underwater Video Analysis</strong>: Observes a swimmer’s technique to identify areas for improvement.</li>\r\n</ul>\r\n<strong>Equipment-Free Biomechanical Assessment</strong>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35139 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07295-181x300.jpg\" alt=\"\" width=\"181\" height=\"300\" />\r\n\r\n&nbsp;\r\n<h3>Examples:</h3>\r\n<ul>\r\n 	<li>Biomechanics Coach Screening: Assessing movement quality through various tests.</li>\r\n 	<li>Functional Movement Screen (FMS): Identifies movement dysfunctions.</li>\r\n 	<li>Range of Movement (ROM) Testing: Measures joint flexibility.</li>\r\n 	<li>Muscle Strength Testing: Evaluates muscle function and strength.</li>\r\n</ul>\r\n<h3>Who Conducts Biomechanical Assessments?</h3>\r\n&nbsp;\r\n<h4><b>Biomechanics Coaches </b></h4>\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35140 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07278-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nBiomechanics Coaches are certified professionals who specialize in assessing and improving movement quality. They undergo extensive training, including a 7–9-month Diploma in Biomechanics Coaching, after qualifying in fields like personal training, sports therapy, or yoga. They perform detailed assessments of joint and muscle function to identify and address movement issues. You can find a registered Biomechanics Coach in the UK here.\r\n<h4>Podiatrists</h4>\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35141 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.19.56-277x300.png\" alt=\"\" width=\"277\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\nPodiatrists specialize in foot and lower limb biomechanics. They hold a degree or master’s degree and are registered with the Health &amp; Care Professions Council (HCPC). Podiatrists use advanced techniques like video gait analysis to diagnose and treat foot and ankle issues. Their interventions range from orthotic inserts to specialized exercises, and sometimes surgery.\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35142 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.14-257x300.png\" alt=\"\" width=\"257\" height=\"300\" />\r\n<h4></h4>\r\n<h4>Physiotherapists</h4>\r\nPhysiotherapists complete a minimum of a three-year degree and may specialize in various areas, including biomechanics. They assess muscle strength, range of motion, and movement patterns to diagnose and treat musculoskeletal problems. Physiotherapists often work in multidisciplinary teams in the NHS or privately and use a combination of manual therapy and exercise prescriptions to help patients recover from injuries.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35143 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.28-269x300.png\" alt=\"\" width=\"269\" height=\"300\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h4>Golf Coaches</h4>\r\nGolf coaches, often trained through the Professional Golfers Association (PGA), help players improve their biomechanics to enhance performance and reduce injury risk. They may use Functional Movement Screening (FMS) and video analysis to evaluate and refine a golfer’s swing. Look for SafeGolf or PGA-accredited coaches for certified expertise.\r\n\r\n<img class=\"size-medium wp-image-29232 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/08/GOLF-andrew-lomas-aGlpdQ2Yolk-unsplash-200x300.jpg\" alt=\"\" width=\"200\" height=\"300\" />\r\n\r\n&nbsp;\r\n<h4>Equine Biomechanics/Riding Coaches</h4>\r\nRiding coaches trained in equine biomechanics assess both the rider\'s and the horse\'s movement. This dual approach helps identify and correct imbalances that could affect performance. Coaches trained in human biomechanics can offer exercises to help riders maintain symmetry, benefiting both the rider and the horse. Find qualified coaches through the British Horse Society (BHS) or the Register of Biomechanics Coaches.\r\n<h3>Conclusion</h3>\r\nUnderstanding the importance of biomechanical assessments is crucial for optimizing movement and reducing pain. With various methods and professionals available, it\'s essential to choose the right type of assessment and assessor for your specific needs. Whether you’re a professional athlete, a casual exerciser, or experiencing movement issues, a biomechanical assessment can provide valuable insights and solutions.\r\n\r\nInterested in learning more? Sample our programmes to start assessing and improving your biomechanics today!\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-35144 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.42-278x300.png\" alt=\"\" width=\"278\" height=\"300\" />','Biomechanical assessment: everything you need to know','','inherit','closed','closed','','35126-revision-v1','','','2024-09-13 12:52:42','2024-09-13 12:52:42','',35126,'https://biomechanicseducation.com/?p=40392',0,'revision','',0),(40393,3,'2024-09-13 12:53:45','2024-09-13 12:53:45','','BE_Worshop_30thAug- 7','','inherit','closed','closed','','be_worshop_30thaug-7','','','2024-09-13 12:53:45','2024-09-13 12:53:45','',34054,'https://biomechanicseducation.com/wp-content/uploads/2022/10/BE_Worshop_30thAug-7.jpg',0,'attachment','image/jpeg',0),(40394,15,'2024-09-13 15:10:25','2024-09-13 15:10:25','','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','biomechanics-education-enquiry-form-lead-gen-september-2024-ep','','','2024-12-16 12:16:56','2024-12-16 12:16:56','',0,'https://biomechanicseducation.com/?post_type=cd-form&#038;p=40394',0,'cd-form','',0),(40395,3,'2024-09-13 12:54:32','2024-09-13 12:54:32','<strong>Understanding the Difference Between Extrinsic and Intrinsic Biomechanics</strong>\r\n\r\nBiomechanics, the science of movement, is a broad and intricate field. Today, we\'ll explore two critical areas: extrinsic biomechanics and intrinsic biomechanics. We\'ll clarify how they differ, how they influence each other, and why understanding both is essential.\r\n\r\n&nbsp;\r\n\r\n<b>What is extrinsic biomechanics?</b>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-34061 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/10/sven-mieke-optBC2FxCfc-unsplash-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></span>\r\n\r\nExtrinsic biomechanics focuses on observable movements. It\'s about what we see when someone performs an action, such as a client’s knee buckling inward (knee valgus) during a squat. Basic training might prompt us to correct this by telling the client to \"push their knees out.\" While this can sometimes work, persistent issues may require a deeper analysis through intrinsic biomechanics.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>What is Intrinsic Biomechanics?</strong>\r\n\r\nIntrinsic biomechanics delves into the anatomical substructures—myofascial, skeletal, and neural—behind movements. It seeks to understand why a movement occurs in a particular way. Using the knee valgus example, a practitioner trained in intrinsic biomechanics would evaluate the pelvis, spine, shoulders, knees, and feet. This comprehensive assessment helps identify the root causes of movement issues, which can involve multiple dysfunctions and compensations within the body\'s kinetic chains.\r\n\r\nOnce the problematic body part and substructure are identified, the practitioner can prescribe targeted interventions. They can also re-test immediately after the intervention, providing objective evidence of the cause of the client’s movement limitations.\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"size-medium wp-image-33792 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1520541617-300x230.jpg\" alt=\"\" width=\"300\" height=\"230\" /></span>\r\n\r\n&nbsp;\r\n\r\n<strong>Similarities and Differences</strong>\r\n\r\n<em><strong>Similarities:</strong></em>\r\n<ul>\r\n 	<li>Both relate to movement and biomechanics.</li>\r\n 	<li>Both are observed from outside.</li>\r\n 	<li>Both are crucial for understanding movement.</li>\r\n 	<li>Both are key for practitioners involved in movement analysis.</li>\r\n</ul>\r\n<em><strong>Differences:</strong></em>\r\n<ul>\r\n 	<li>Extrinsic Biomechanics: This is the more common approach, focusing on what we see during movements. It often involves equipment like gait analysis or motion monitoring tools. It answers the \"what\" of movement analysis.</li>\r\n 	<li>Intrinsic Biomechanics: This approach is newer and less commonly understood. It stems from over 20 years of research on 4,500 subjects. It requires specialized training and a deep understanding of anatomy. Practitioners assess various body types to create customized programs, answering the \"why\" behind movements.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<b>Importance in understanding the difference - case study example</b>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\" wp-image-34059 alignright\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/10/Screenshot-2022-10-19-at-15.15.36-300x167.png\" alt=\"\" width=\"365\" height=\"203\" /></span>\r\n\r\nConsider a runner showing extrinsic over-pronation. Video gait analysis might suggest using orthotics or specific shoes to correct this. However, intrinsic biomechanics can reveal underlying causes such as:\r\n<ul>\r\n 	<li>Functional leg length discrepancy</li>\r\n 	<li>Dysfunctional pelvis</li>\r\n 	<li>Tight lateral spine flexors</li>\r\n 	<li>Overactive shoulder protractors</li>\r\n 	<li>Ligament dominance</li>\r\n 	<li>Tight calves</li>\r\n 	<li>Tight sciatic nerve</li>\r\n 	<li>Loose subtalar or midtarsal joints</li>\r\n 	<li>Low arch height</li>\r\n</ul>\r\nWithout assessing intrinsic biomechanics, these potential causes might be missed, leading to incomplete or ineffective interventions.\r\n\r\n&nbsp;\r\n\r\n<strong>Conclusion</strong>\r\n\r\nExtrinsic biomechanics can be misinterpreted without an understanding of intrinsic biomechanics. Biomechanics Coaches, specialising in intrinsic biomechanics, possess a deeper knowledge of the musculoskeletal system. They can assess clients more thoroughly and design tailored programmes to enhance movement efficiency.\r\n\r\n<strong>Interested in a Career in Biomechanics?</strong>\r\n\r\nIf you\'re passionate about biomechanics, consider becoming a Biomechanics Coach! Contact us at info@biomechanicseducation.com to discuss a career in intrinsic biomechanics and learn how you can make a difference in the science of movement.\r\n\r\n<img class=\"size-medium wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />','What is the difference between extrinsic biomechanics & intrinsic biomechanics?','','inherit','closed','closed','','34054-revision-v1','','','2024-09-13 12:54:32','2024-09-13 12:54:32','',34054,'https://biomechanicseducation.com/?p=40395',0,'revision','',0),(40396,3,'2024-09-13 12:55:49','2024-09-13 12:55:49','','BiomechanicsEducation_Workshop_Fareham_web 12','','inherit','closed','closed','','biomechanicseducation_workshop_fareham_web-12','','','2024-09-13 12:55:49','2024-09-13 12:55:49','',34519,'https://biomechanicseducation.com/wp-content/uploads/2022/12/BiomechanicsEducation_Workshop_Fareham_web-12.jpg',0,'attachment','image/jpeg',0),(40397,3,'2024-09-13 12:56:15','2024-09-13 12:56:15','<h2>Introduction</h2>\r\nIf you search for \"biomechanics,\" you\'ll mostly find information related to sports and performance. However, understanding biomechanics—both extrinsically and intrinsically—can significantly enhance the overall health and wellbeing of clients for movement/exercise coaches and trainers.\r\n<h3>What is Health and Wellbeing?</h3>\r\nAccording to the World Health Organization, \"Health is a state of complete physical, mental, and social well-being, not merely the absence of disease or infirmity.\"\r\n\r\nHealth and wellbeing often involve maintaining happiness, being free from symptoms, and feeling robust and purposeful. While this blog focuses on the physical aspect of biomechanics, it also explores how biomechanics can influence mindset and psychology.\r\n<h3>The Basics of Biomechanics</h3>\r\nIn simple terms, three key subsystems enable us to move freely and with less pain:\r\n<ul>\r\n 	<li>Skeletal System: Provides the framework for the myofascial system.</li>\r\n 	<li>Myofascial System: Acts as levers and pulleys for movement.</li>\r\n 	<li>Nervous System: Functions like the body\'s software, sending messages to the myofascial system about how much effort to apply across joints.</li>\r\n</ul>\r\nNote: The biotensegrity model (Prof. Steve Levit) suggests that the human body is more sophisticated than a machine, though a simplified biomechanical model is useful for understanding and applying human movement.\r\n<h3>Biomechanics and Movement Patterns</h3>\r\nKarel Lewitt, the \"<em>father of manual medicine</em>,\" proposed that we are born with genetic movement codes and develop conditioned movement codes as we grow. While repeating certain movements can enhance performance and coordination, over time, these compensatory factors can negatively impact our subsystems. For instance, a sedentary lifestyle can lead to tissue adaptation and asymmetries, affecting overall movement and health.\r\n<h4>Case Studies</h4>\r\n<strong>Example 1: Older Adults</strong>\r\n\r\nFor older adults (60+), maintaining joint mobility is crucial for balance and independence. The iMoveFreely program focuses on low-range joint mobility and low-level muscle energy techniques, making it a safe and effective prehabilitation program for this demographic.\r\n<h5><strong>Example 2: Individuals with Chronic Conditions</strong></h5>\r\nMovement offers protection and health benefits, especially for those with long-term conditions like diabetes, obesity, and arthritis. Understanding how these conditions impact movement can help practitioners design effective programs, such as the iMoveFreely program, which can be done at home and doesn\'t require specific equipment.\r\n\r\nQualified practitioners who understand intrinsic biomechanics and behavior change can provide valuable support in managing these conditions through movement and exercise.\r\n<h5><strong>Example 3: Athletes</strong></h5>\r\nExtrinsic biomechanics often focuses on improving sports performance through video analysis and data interpretation. However, understanding intrinsic biomechanics is essential for optimizing performance without compromising the athlete\'s natural genetic makeup. For instance, correcting movements to appear more aesthetically pleasing may not align with the athlete\'s intrinsic biomechanics and could cause problems.\r\n<h3 style=\"text-align: center;\">Conclusion</h3>\r\n<p style=\"text-align: center;\">Understanding intrinsic biomechanics benefits every client demographic, enhancing health and wellbeing across various sectors. This knowledge fills the gap between health and fitness, wellness and clinical practice, and exercise and medication.</p>\r\n<p style=\"text-align: center;\">Investing in our Diploma in Biomechanics Coaching can kickstart your career journey, supported by a community of practitioners dedicated to improving client outcomes. Contact us to learn more and reserve your place in our popular program.</p>\r\n<p style=\"text-align: center;\"><strong>Contact Us:</strong></p>\r\n<p style=\"text-align: center;\">Email:<em> rachel@biomechanicseducation.com</em></p>\r\n<p style=\"text-align: center;\">Phone: <em>020 3841 6151</em></p>\r\n<p style=\"text-align: center;\">Start your journey today and transform your approach to health and wellbeing!</p>','How Understanding Intrinsic Biomechanics Improves Overall Health and Wellbeing','','inherit','closed','closed','','34519-revision-v1','','','2024-09-13 12:56:15','2024-09-13 12:56:15','',34519,'https://biomechanicseducation.com/?p=40397',0,'revision','',0),(40398,3,'2024-09-13 12:57:28','2024-09-13 12:57:28','','BE_Worshop_30thAug- 14','','inherit','closed','closed','','be_worshop_30thaug-14','','','2024-09-13 12:57:28','2024-09-13 12:57:28','',33064,'https://biomechanicseducation.com/wp-content/uploads/2022/07/BE_Worshop_30thAug-14.jpg',0,'attachment','image/jpeg',0),(40399,3,'2024-09-13 12:57:50','2024-09-13 12:57:50','<h2>Introduction:</h2>\r\nBiomechanics, essentially the application of mechanics to biology, plays a pivotal role in understanding how the body responds to forces and displacements. It encompasses both extrinsic and intrinsic biomechanics, each serving distinct purposes in the realm of human movement and performance.\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-30503 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/IMG_2288-300x300.jpg\" alt=\"\" width=\"356\" height=\"356\" />\r\n<h3>Extrinsic Biomechanics:</h3>\r\nExtrinsic biomechanics focuses on analysing movements and tasks to determine the most efficient ways to perform them. It is integral to sports, health, fitness, and work-related physical conditioning. Understanding fundamental mechanical principles like levers and equilibrium is crucial before delving into more complex functional movements.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n<h2><span style=\"font-weight: 400;\"><img class=\" wp-image-27751 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1311339359-1-300x222.jpg\" alt=\"\" width=\"350\" height=\"259\" />\r\n</span></h2>\r\n<h3>Intrinsic Biomechanics:</h3>\r\nIntrinsic biomechanics delves into how the body mechanically functions during movement or tasks. It significantly influences how the body compensates during functional activities, and understanding intrinsic biomechanics is essential for identifying and addressing movement faults and minimizing injury risks.\r\n<h3>Applications of Biomechanics:</h3>\r\nBiomechanics finds extensive application in elite sports, where analyzing extrinsic biomechanics can reveal performance inefficiencies like energy leaks or suboptimal power production. However, intrinsic biomechanics provides a deeper understanding, pinpointing specific areas or structures contributing to faulty performance.\r\n<h3>Benefits of Biomechanics:</h3>\r\nBiomechanics offers numerous benefits, including evidence-based assessments, performance feedback, injury risk identification, and tailored exercise prescription. It deepens our understanding of movement and enables bespoke programming to optimize performance and minimize injury risks.\r\n<h3>Elements of Biomechanics:</h3>\r\nUnderstanding elements like equilibrium, levers, and turning forces is crucial in biomechanics. Equilibrium pertains to body balance, while levers and turning forces elucidate how forces interact within the body during movement.\r\n<h4>Equilibrium</h4>\r\nEquilibrium is often divided into 2 sections:\r\n<ol>\r\n 	<li>Static; which is concerned with the body in balance</li>\r\n 	<li>Dynamic; which is concerned with the body in a range of motion.</li>\r\n</ol>\r\n<h3>Levers</h3>\r\nA lever is a simple machine that enables work to be done more easily and/or more quickly by applying forces. A lever consists of a straight bar with 3 points:\r\n\r\nPoint 1. Where there is a fixed fulcrum\r\n\r\nPoint 2. Where there is a resistance or weight acting upon the lever\r\n\r\nPoint 3. Where the force or power is applied to the lever.\r\n\r\nThis can be applied to the body when considering the bones as the lever, the joint as a fulcrum or pivot point and the muscles contracting to produce the force.\r\n<h3>Careers in Biomechanics:</h3>\r\nThe field of biomechanics offers diverse career opportunities, ranging from biomechanics coaching and training to research and engineering. Various qualifications, from university degrees to specialized diplomas and workshops, cater to different interests and educational backgrounds.\r\n<h3>Conclusion:</h3>\r\nBiomechanics serves as a scientific foundation for understanding human movement, enhancing sports performance, and minimizing injury risks. Its evidence-based approach and multidisciplinary applications make it indispensable in various fields, from sports science to healthcare and beyond.\r\n\r\n&nbsp;\r\n<h2><span style=\"font-weight: 400;\"> </span></h2>\r\n&nbsp;\r\n<h1></h1>','What is biomechanics?','','inherit','closed','closed','','33064-revision-v1','','','2024-09-13 12:57:50','2024-09-13 12:57:50','',33064,'https://biomechanicseducation.com/?p=40399',0,'revision','',0),(40400,3,'2024-09-13 13:03:23','2024-09-13 13:03:23','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-13 13:03:23','2024-09-13 13:03:23','',39497,'https://biomechanicseducation.com/?p=40400',0,'revision','',0),(40401,3,'2024-09-13 13:05:18','2024-09-13 13:05:18','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-13 13:05:18','2024-09-13 13:05:18','',39148,'https://biomechanicseducation.com/?p=40401',0,'revision','',0),(40402,3,'2024-09-13 13:06:04','2024-09-13 13:06:04','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-13 13:06:04','2024-09-13 13:06:04','',39214,'https://biomechanicseducation.com/?p=40402',0,'revision','',0),(40403,3,'2024-09-13 13:06:39','2024-09-13 13:06:39','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-13 13:06:39','2024-09-13 13:06:39','',39214,'https://biomechanicseducation.com/?p=40403',0,'revision','',0),(40404,3,'2024-09-13 13:07:59','2024-09-13 13:07:59','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-13 13:07:59','2024-09-13 13:07:59','',39231,'https://biomechanicseducation.com/?p=40404',0,'revision','',0),(40405,3,'2024-09-13 13:11:07','2024-09-13 13:11:07','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-13 13:11:07','2024-09-13 13:11:07','',39214,'https://biomechanicseducation.com/?p=40405',0,'revision','',0),(40406,3,'2024-09-13 14:18:09','2024-09-13 14:18:09','','BE Team - Fiona Jones','','inherit','closed','closed','','be-team','','','2024-09-13 14:19:08','2024-09-13 14:19:08','',39172,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE-Team.png',0,'attachment','image/png',0),(40407,3,'2024-09-13 14:19:16','2024-09-13 14:19:16','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-09-13 14:19:16','2024-09-13 14:19:16','',39172,'https://biomechanicseducation.com/?p=40407',0,'revision','',0),(40408,3,'2024-09-13 14:29:25','2024-09-13 14:29:25','','Rcahel, a woman, and a man, discussing biomechanics in a workshop setting.','','inherit','closed','closed','','untitled-design-1','','','2024-09-13 14:31:14','2024-09-13 14:31:14','',39172,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Untitled-design-1.png',0,'attachment','image/png',0),(40409,3,'2024-09-13 14:31:14','2024-09-13 14:31:14','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-09-13 14:31:14','2024-09-13 14:31:14','',39172,'https://biomechanicseducation.com/?p=40409',0,'revision','',0),(40410,15,'2024-09-13 15:09:27','2024-09-13 15:09:27','','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','survey-persona-data-targeted-at-leads-september-2024-ep','','','2024-09-13 15:09:27','2024-09-13 15:09:27','',0,'https://biomechanicseducation.com/?post_type=cd-form&#038;p=40410',0,'cd-form','',0),(40411,3,'2024-09-13 14:46:56','2024-09-13 14:46:56','','In-person workshop','','inherit','closed','closed','','dsc01488','','','2024-09-13 14:47:30','2024-09-13 14:47:30','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC01488.jpg',0,'attachment','image/jpeg',0),(40413,15,'2024-09-13 15:01:23','2024-09-13 15:01:23','','Biomechanics Education - EMD - Referral Lead Gen - September 2024 - EP','','publish','closed','closed','','copy','','','2024-12-16 14:49:28','2024-12-16 14:49:28','',0,'https://biomechanicseducation.com/?post_type=cd-form&#038;p=40413',0,'cd-form','',0),(40414,15,'2024-09-13 15:02:27','2024-09-13 15:02:27','','Biomechanics Education - David Lloyd - Referral Lead Gen - September 2024 - EP','','publish','closed','closed','','copy-copy','','','2024-12-16 14:49:15','2024-12-16 14:49:15','',0,'https://biomechanicseducation.com/?post_type=cd-form&#038;p=40414',0,'cd-form','',0),(40415,3,'2024-09-13 15:03:24','2024-09-13 15:03:24','','man counting on this fingers, wearing a black t-short, standing over a woman on a massage table who has her eyes closed and arms folded.','','inherit','closed','closed','','dsc02018','','','2024-09-13 15:04:13','2024-09-13 15:04:13','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC02018.jpg',0,'attachment','image/jpeg',0),(40416,15,'2024-09-13 15:04:31','2024-09-13 15:04:31','','Biomechanics Education - Event - Lead Gen - September 2024 - EP','','publish','closed','closed','','copy-copy-copy','','','2024-12-16 14:44:36','2024-12-16 14:44:36','',0,'https://biomechanicseducation.com/?post_type=cd-form&#038;p=40416',0,'cd-form','',0),(40417,15,'2024-09-13 15:07:18','2024-09-13 15:07:18','','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','copy-copy-copy-copy','','','2024-12-16 14:48:53','2024-12-16 14:48:53','',0,'https://biomechanicseducation.com/?post_type=cd-form&#038;p=40417',0,'cd-form','',0),(40418,15,'2024-09-13 15:11:08','2024-09-13 15:11:08','','Survey','','inherit','closed','closed','','40334-revision-v1','','','2024-09-13 15:11:08','2024-09-13 15:11:08','',40334,'https://biomechanicseducation.com/?p=40418',0,'revision','',0),(40420,15,'2024-09-13 15:11:52','2024-09-13 15:11:52','','Help us get to know you','','inherit','closed','closed','','40334-revision-v1','','','2024-09-13 15:11:52','2024-09-13 15:11:52','',40334,'https://biomechanicseducation.com/?p=40420',0,'revision','',0),(40421,15,'2024-09-13 15:12:13','2024-09-13 15:12:13','','Survey','','inherit','closed','closed','','40334-revision-v1','','','2024-09-13 15:12:13','2024-09-13 15:12:13','',40334,'https://biomechanicseducation.com/?p=40421',0,'revision','',0),(40423,15,'2024-09-13 15:15:14','2024-09-13 15:15:14','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 15:15:14','2024-09-13 15:15:14','',39196,'https://biomechanicseducation.com/?p=40423',0,'revision','',0),(40425,0,'2024-09-13 15:17:56','2024-09-13 15:17:56','{\"firstname\":\"Ellie\",\"lastname\":\"Testing\",\"email\":\"beenquirytest@maildrop.cc\",\"contactnumber\":\"09876543221\",\"postcode\":\"PO168UQ\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/?preview_id=39196&amp;preview_nonce=9dcb3893e8&amp;_thumbnail_id=40339&amp;preview=true\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66e45776cb3e78-91602544','','','2024-09-13 15:17:56','2024-09-13 15:17:56','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=40425',0,'cd-form-entry','',0),(40426,15,'2024-09-13 15:19:24','2024-09-13 15:19:24','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-13 15:19:24','2024-09-13 15:19:24','',39196,'https://biomechanicseducation.com/?p=40426',0,'revision','',0),(40427,0,'2024-09-13 15:20:57','2024-09-13 15:20:57','{\"firstname\":\"Ellie\",\"lastname\":\"Testing\",\"email\":\"beenquirytest@maildrop.cc\",\"contactnumber\":\"09876543221\",\"postcode\":\"PO168UQ\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/?preview_id=39196&amp;preview_nonce=9dcb3893e8&amp;_thumbnail_id=40339&amp;preview=true\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66e4584f5fe181-44764422','','','2024-09-13 15:20:57','2024-09-13 15:20:57','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=40427',0,'cd-form-entry','',0),(40428,3,'2024-09-13 15:27:50','2024-09-13 15:27:50','','Map of imovefreely and running biomechanics workshops','','inherit','closed','closed','','be-map','','','2024-09-13 15:34:04','2024-09-13 15:34:04','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE-map.png',0,'attachment','image/png',0),(40429,3,'2024-09-13 15:34:55','2024-09-13 15:34:55','','BE map for workshops','','inherit','closed','closed','','be-map-for-workshops','','','2024-09-13 15:35:20','2024-09-13 15:35:20','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE-map-for-workshops.png',0,'attachment','image/png',0),(40430,3,'2024-09-13 15:39:50','2024-09-13 15:39:50','','Rcah teaching an imovefreely workshop','','inherit','closed','closed','','dsc07136','','','2024-09-13 15:41:52','2024-09-13 15:41:52','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC07136.jpg',0,'attachment','image/jpeg',0),(40431,3,'2024-09-13 15:40:09','2024-09-13 15:40:09','','person performing a movement in an imovefreely workshop','','inherit','closed','closed','','dsc07447','','','2024-09-13 15:41:12','2024-09-13 15:41:12','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC07447.jpg',0,'attachment','image/jpeg',0),(40432,3,'2024-09-13 15:40:27','2024-09-13 15:40:27','','DSC07374','','inherit','closed','closed','','dsc07374','','','2024-09-13 15:40:27','2024-09-13 15:40:27','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC07374.jpg',0,'attachment','image/jpeg',0),(40433,3,'2024-09-15 17:47:07','2024-09-15 17:47:07','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-15 17:47:07','2024-09-15 17:47:07','',39284,'https://biomechanicseducation.com/?p=40433',0,'revision','',0),(40434,3,'2024-09-15 17:47:47','2024-09-15 17:47:47','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-15 17:47:47','2024-09-15 17:47:47','',39284,'https://biomechanicseducation.com/?p=40434',0,'revision','',0),(40435,3,'2024-09-15 17:48:06','2024-09-15 17:48:06','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-15 17:48:06','2024-09-15 17:48:06','',39284,'https://biomechanicseducation.com/?p=40435',0,'revision','',0),(40436,3,'2024-09-15 17:48:54','2024-09-15 17:48:54','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-15 17:48:54','2024-09-15 17:48:54','',39284,'https://biomechanicseducation.com/?p=40436',0,'revision','',0),(40437,3,'2024-09-15 17:49:12','2024-09-15 17:49:12','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-15 17:49:12','2024-09-15 17:49:12','',39284,'https://biomechanicseducation.com/?p=40437',0,'revision','',0),(40438,3,'2024-09-15 17:49:38','2024-09-15 17:49:38','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-15 17:49:38','2024-09-15 17:49:38','',39284,'https://biomechanicseducation.com/?p=40438',0,'revision','',0),(40439,3,'2024-09-15 17:51:15','2024-09-15 17:51:15','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-09-15 17:51:15','2024-09-15 17:51:15','',39329,'https://biomechanicseducation.com/?p=40439',0,'revision','',0),(40440,3,'2024-09-15 17:51:59','2024-09-15 17:51:59','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-09-15 17:51:59','2024-09-15 17:51:59','',39329,'https://biomechanicseducation.com/?p=40440',0,'revision','',0),(40441,3,'2024-09-15 17:52:53','2024-09-15 17:52:53','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-09-15 17:52:53','2024-09-15 17:52:53','',39329,'https://biomechanicseducation.com/?p=40441',0,'revision','',0),(40442,3,'2024-09-15 17:53:25','2024-09-15 17:53:25','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-09-15 17:53:25','2024-09-15 17:53:25','',39329,'https://biomechanicseducation.com/?p=40442',0,'revision','',0),(40443,3,'2024-09-15 17:54:06','2024-09-15 17:54:06','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-09-15 17:54:06','2024-09-15 17:54:06','',39329,'https://biomechanicseducation.com/?p=40443',0,'revision','',0),(40444,3,'2024-09-15 17:54:32','2024-09-15 17:54:32','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-09-15 17:54:32','2024-09-15 17:54:32','',39329,'https://biomechanicseducation.com/?p=40444',0,'revision','',0),(40445,3,'2024-09-16 06:26:49','2024-09-16 06:26:49','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-16 06:26:49','2024-09-16 06:26:49','',39493,'https://biomechanicseducation.com/?p=40445',0,'revision','',0),(40446,3,'2024-09-16 06:27:08','2024-09-16 06:27:08','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-16 06:27:08','2024-09-16 06:27:08','',39493,'https://biomechanicseducation.com/?p=40446',0,'revision','',0),(40447,3,'2024-09-16 06:28:25','2024-09-16 06:28:25','','Wooden,Doll,Stand,Group,With,Magnifying,Glass,Find,Search,For','','inherit','closed','closed','','woodendollstandgroupwithmagnifyingglassfindsearchfor','','','2024-09-16 06:28:25','2024-09-16 06:28:25','',39493,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Find-a-BM-Coach-hero-iamge.jpg',0,'attachment','image/jpeg',0),(40448,3,'2024-09-16 06:28:30','2024-09-16 06:28:30','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-16 06:28:30','2024-09-16 06:28:30','',39493,'https://biomechanicseducation.com/?p=40448',0,'revision','',0),(40449,3,'2024-09-16 06:29:03','2024-09-16 06:29:03','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-16 06:29:03','2024-09-16 06:29:03','',39493,'https://biomechanicseducation.com/?p=40449',0,'revision','',0),(40450,3,'2024-09-16 06:32:45','2024-09-16 06:32:45','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-16 06:32:45','2024-09-16 06:32:45','',39493,'https://biomechanicseducation.com/?p=40450',0,'revision','',0),(40452,3,'2024-09-16 06:37:46','2024-09-16 06:37:46','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-09-16 06:37:46','2024-09-16 06:37:46','',39270,'https://biomechanicseducation.com/?p=40452',0,'revision','',0),(40453,3,'2024-09-16 06:39:05','2024-09-16 06:39:05','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-09-16 06:39:05','2024-09-16 06:39:05','',39270,'https://biomechanicseducation.com/?p=40453',0,'revision','',0),(40454,3,'2024-09-16 06:42:40','2024-09-16 06:42:40','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-09-16 06:42:40','2024-09-16 06:42:40','',39172,'https://biomechanicseducation.com/?p=40454',0,'revision','',0),(40455,3,'2024-09-16 06:46:18','2024-09-16 06:46:18','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-09-16 06:46:18','2024-09-16 06:46:18','',39172,'https://biomechanicseducation.com/?p=40455',0,'revision','',0),(40457,15,'2024-09-16 09:18:05','2024-09-16 09:18:05','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-16 09:18:05','2024-09-16 09:18:05','',39196,'https://biomechanicseducation.com/?p=40457',0,'revision','',0),(40459,0,'2024-09-16 09:19:51','2024-09-16 09:19:51','{\"firstname\":\"Ellie\",\"lastname\":\"Testing\",\"email\":\"behowtobecometest@maildrop.cc\",\"contactnumber\":\"01234567898\",\"postcode\":\"po168ul\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/?preview_id=39196&amp;preview_nonce=b9a3b84cb5&amp;_thumbnail_id=40339&amp;preview=true\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66e7f7fe576386-58289674','','','2024-09-16 09:19:51','2024-09-16 09:19:51','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=40459',0,'cd-form-entry','',0),(40460,15,'2024-09-16 09:49:06','2024-09-16 09:49:06','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-16 09:49:06','2024-09-16 09:49:06','',39196,'https://biomechanicseducation.com/?p=40460',0,'revision','',0),(40462,0,'2024-09-16 09:50:04','2024-09-16 09:50:04','{\"firstname\":\"Eleanor\",\"lastname\":\"Testing\",\"email\":\"bedavidlloydffttesttwo@maildrop.cc\",\"contactnumber\":\"09876665432\",\"postcode\":\"po168ul\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/?preview_id=39196&amp;preview_nonce=b9a3b84cb5&amp;_thumbnail_id=40339&amp;preview=true\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - David Lloyd - Referral Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66e7ff3aabffa5-12257942','','','2024-09-16 09:50:04','2024-09-16 09:50:04','',40414,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=40462',0,'cd-form-entry','',0),(40463,15,'2024-09-16 10:10:49','2024-09-16 10:10:49','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-16 10:10:49','2024-09-16 10:10:49','',39196,'https://biomechanicseducation.com/?p=40463',0,'revision','',0),(40465,0,'2024-09-16 10:12:26','2024-09-16 10:12:26','{\"firstname\":\"Eleanor\",\"lastname\":\"Testing\",\"email\":\"beenquiretesttwo@maildrop.cc\",\"contactnumber\":\"09876543221\",\"postcode\":\"PO168UQ\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/?preview_id=39196&amp;preview_nonce=b9a3b84cb5&amp;_thumbnail_id=40339&amp;preview=true\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66e80470d58fb3-05415824','','','2024-09-16 10:12:26','2024-09-16 10:12:26','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=40465',0,'cd-form-entry','',0),(40467,0,'2024-09-16 10:20:06','2024-09-16 10:20:06','{\"firstname\":\"Ellie\",\"lastname\":\"Testing\",\"email\":\"beenquiretestthree@maildrop.cc\",\"contactnumber\":\"09876543221\",\"postcode\":\"PO168UQ\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/?preview_id=39196&amp;preview_nonce=b9a3b84cb5&amp;_thumbnail_id=40339&amp;preview=true\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66e80642829707-11691834','','','2024-09-16 10:20:06','2024-09-16 10:20:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=40467',0,'cd-form-entry','',0),(40468,3,'2024-09-16 13:48:32','2024-09-16 13:48:32','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-16 13:48:32','2024-09-16 13:48:32','',39214,'https://biomechanicseducation.com/?p=40468',0,'revision','',0),(40469,3,'2024-09-16 13:51:13','2024-09-16 13:51:13','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-16 13:51:13','2024-09-16 13:51:13','',39214,'https://biomechanicseducation.com/?p=40469',0,'revision','',0),(40470,3,'2024-09-16 13:52:15','2024-09-16 13:52:15','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-16 13:52:15','2024-09-16 13:52:15','',39214,'https://biomechanicseducation.com/?p=40470',0,'revision','',0),(40471,3,'2024-09-16 13:57:02','2024-09-16 13:57:02','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-09-16 13:57:02','2024-09-16 13:57:02','',39245,'https://biomechanicseducation.com/?p=40471',0,'revision','',0),(40472,3,'2024-09-16 14:12:32','2024-09-16 14:12:32','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-09-16 14:12:32','2024-09-16 14:12:32','',39245,'https://biomechanicseducation.com/?p=40472',0,'revision','',0),(40473,3,'2024-09-16 14:12:58','2024-09-16 14:12:58','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-09-16 14:12:58','2024-09-16 14:12:58','',39245,'https://biomechanicseducation.com/?p=40473',0,'revision','',0),(40474,3,'2024-09-16 14:13:22','2024-09-16 14:13:22','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-16 14:13:22','2024-09-16 14:13:22','',39214,'https://biomechanicseducation.com/?p=40474',0,'revision','',0),(40475,3,'2024-09-16 15:04:55','2024-09-16 15:04:55','','BE learners','','inherit','closed','closed','','dsc01621','','','2024-09-16 15:05:58','2024-09-16 15:05:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC01621.jpg',0,'attachment','image/jpeg',0),(40477,3,'2024-09-16 15:22:53','2024-09-16 15:22:53','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:22:53','2024-09-16 15:22:53','',39231,'https://biomechanicseducation.com/?p=40477',0,'revision','',0),(40478,3,'2024-09-16 15:23:29','2024-09-16 15:23:29','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:23:29','2024-09-16 15:23:29','',39231,'https://biomechanicseducation.com/?p=40478',0,'revision','',0),(40479,3,'2024-09-16 15:24:03','2024-09-16 15:24:03','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:24:03','2024-09-16 15:24:03','',39231,'https://biomechanicseducation.com/?p=40479',0,'revision','',0),(40480,3,'2024-09-16 15:24:57','2024-09-16 15:24:57','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:24:57','2024-09-16 15:24:57','',39231,'https://biomechanicseducation.com/?p=40480',0,'revision','',0),(40481,3,'2024-09-16 15:27:35','2024-09-16 15:27:35','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:27:35','2024-09-16 15:27:35','',39231,'https://biomechanicseducation.com/?p=40481',0,'revision','',0),(40482,3,'2024-09-16 15:27:51','2024-09-16 15:27:51','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:27:51','2024-09-16 15:27:51','',39231,'https://biomechanicseducation.com/?p=40482',0,'revision','',0),(40483,3,'2024-09-16 15:28:24','2024-09-16 15:28:24','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:28:24','2024-09-16 15:28:24','',39231,'https://biomechanicseducation.com/?p=40483',0,'revision','',0),(40484,3,'2024-09-16 15:30:52','2024-09-16 15:30:52','','IBA away day','','inherit','closed','closed','','dsc_6163','','','2024-09-16 15:32:44','2024-09-16 15:32:44','',39231,'https://biomechanicseducation.com/wp-content/uploads/2024/09/dsc_6163.jpg',0,'attachment','image/jpeg',0),(40485,3,'2024-09-16 15:33:41','2024-09-16 15:33:41','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:33:41','2024-09-16 15:33:41','',39231,'https://biomechanicseducation.com/?p=40485',0,'revision','',0),(40486,3,'2024-09-16 15:34:20','2024-09-16 15:34:20','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:34:20','2024-09-16 15:34:20','',39231,'https://biomechanicseducation.com/?p=40486',0,'revision','',0),(40487,3,'2024-09-16 15:35:55','2024-09-16 15:35:55','','learners','','inherit','closed','closed','','learners','','','2024-09-16 15:37:25','2024-09-16 15:37:25','',39231,'https://biomechanicseducation.com/wp-content/uploads/2024/09/learners.jpg',0,'attachment','image/jpeg',0),(40488,3,'2024-09-16 15:37:36','2024-09-16 15:37:36','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:37:36','2024-09-16 15:37:36','',39231,'https://biomechanicseducation.com/?p=40488',0,'revision','',0),(40489,3,'2024-09-16 15:42:25','2024-09-16 15:42:25','','Biomechanics and Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2024-09-16 15:42:25','2024-09-16 15:42:25','',39249,'https://biomechanicseducation.com/?p=40489',0,'revision','',0),(40490,3,'2024-09-16 15:43:32','2024-09-16 15:43:32','','Biomechanics and Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2024-09-16 15:43:32','2024-09-16 15:43:32','',39249,'https://biomechanicseducation.com/?p=40490',0,'revision','',0),(40491,3,'2024-09-16 15:45:08','2024-09-16 15:45:08','','Rachel and skelly diagram','','inherit','closed','closed','','dsc_6484','','','2024-09-16 15:48:21','2024-09-16 15:48:21','',39249,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC_6484.jpg',0,'attachment','image/jpeg',0),(40492,3,'2024-09-16 15:49:05','2024-09-16 15:49:05','','Biomechanics and Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2024-09-16 15:49:05','2024-09-16 15:49:05','',39249,'https://biomechanicseducation.com/?p=40492',0,'revision','',0),(40493,3,'2024-09-16 15:51:07','2024-09-16 15:51:07','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:51:07','2024-09-16 15:51:07','',39231,'https://biomechanicseducation.com/?p=40493',0,'revision','',0),(40494,3,'2024-09-16 15:53:19','2024-09-16 15:53:19','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:53:19','2024-09-16 15:53:19','',39231,'https://biomechanicseducation.com/?p=40494',0,'revision','',0),(40495,3,'2024-09-16 15:53:47','2024-09-16 15:53:47','','Biomechanics and Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2024-09-16 15:53:47','2024-09-16 15:53:47','',39249,'https://biomechanicseducation.com/?p=40495',0,'revision','',0),(40496,3,'2024-09-16 15:54:07','2024-09-16 15:54:07','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:54:07','2024-09-16 15:54:07','',39231,'https://biomechanicseducation.com/?p=40496',0,'revision','',0),(40498,3,'2024-09-16 15:54:51','2024-09-16 15:54:51','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-16 15:54:51','2024-09-16 15:54:51','',39231,'https://biomechanicseducation.com/?p=40498',0,'revision','',0),(40500,3,'2024-09-16 16:08:43','2024-09-16 16:08:43','','BE_Tom_Joseph_Rachel- 17','','inherit','closed','closed','','be_tom_joseph_rachel-17','','','2024-09-16 16:09:58','2024-09-16 16:09:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-17.jpg',0,'attachment','image/jpeg',0),(40503,3,'2024-09-16 16:14:41','2024-09-16 16:14:41','','BE_Tom_Joseph_Rachel- 15','','inherit','closed','closed','','be_tom_joseph_rachel-15','','','2024-10-28 09:30:08','2024-10-28 09:30:08','',41280,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-15.jpg',0,'attachment','image/jpeg',0),(40505,3,'2024-09-16 16:21:02','2024-09-16 16:21:02','','IBA-Discovery-Day-Workshop-600x450','','inherit','closed','closed','','iba-discovery-day-workshop-600x450-2','','','2024-10-28 09:48:21','2024-10-28 09:48:21','',40276,'https://biomechanicseducation.com/wp-content/uploads/2024/09/IBA-Discovery-Day-Workshop-600x450-1.jpg',0,'attachment','image/jpeg',0),(40509,3,'2024-09-16 16:27:59','2024-09-16 16:27:59','','Fees and Funding','','inherit','closed','closed','','39329-autosave-v1','','','2024-09-16 16:27:59','2024-09-16 16:27:59','',39329,'https://biomechanicseducation.com/?p=40509',0,'revision','',0),(40510,3,'2024-09-16 16:28:54','2024-09-16 16:28:54','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-09-16 16:28:54','2024-09-16 16:28:54','',39329,'https://biomechanicseducation.com/?p=40510',0,'revision','',0),(40511,3,'2024-09-16 16:29:32','2024-09-16 16:29:32','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-09-16 16:29:32','2024-09-16 16:29:32','',39329,'https://biomechanicseducation.com/?p=40511',0,'revision','',0),(40512,11,'2024-09-17 06:26:47','2024-09-17 06:26:47','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-09-17 06:26:47','2024-09-17 06:26:47','',7,'https://biomechanicseducation.com/?p=40512',0,'revision','',0),(40513,11,'2024-09-17 06:29:31','2024-09-17 06:29:31','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-09-17 06:29:31','2024-09-17 06:29:31','',7,'https://biomechanicseducation.com/?p=40513',0,'revision','',0),(40514,11,'2024-09-17 06:31:53','2024-09-17 06:31:53','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-09-17 06:31:53','2024-09-17 06:31:53','',7,'https://biomechanicseducation.com/?p=40514',0,'revision','',0),(40515,11,'2024-09-17 06:32:30','2024-09-17 06:32:30','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-09-17 06:32:30','2024-09-17 06:32:30','',7,'https://biomechanicseducation.com/?p=40515',0,'revision','',0),(40516,11,'2024-09-17 06:34:43','2024-09-17 06:34:43','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-09-17 06:34:43','2024-09-17 06:34:43','',7,'https://biomechanicseducation.com/?p=40516',0,'revision','',0),(40517,11,'2024-09-17 06:37:39','2024-09-17 06:37:39','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-17 06:37:39','2024-09-17 06:37:39','',39148,'https://biomechanicseducation.com/?p=40517',0,'revision','',0),(40518,11,'2024-09-17 06:38:06','2024-09-17 06:38:06','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-17 06:38:06','2024-09-17 06:38:06','',39148,'https://biomechanicseducation.com/?p=40518',0,'revision','',0),(40519,11,'2024-09-17 06:39:26','2024-09-17 06:39:26','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-17 06:39:26','2024-09-17 06:39:26','',39148,'https://biomechanicseducation.com/?p=40519',0,'revision','',0),(40520,11,'2024-09-17 06:39:48','2024-09-17 06:39:48','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-17 06:39:48','2024-09-17 06:39:48','',39148,'https://biomechanicseducation.com/?p=40520',0,'revision','',0),(40521,11,'2024-09-17 06:41:56','2024-09-17 06:41:56','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-17 06:41:56','2024-09-17 06:41:56','',39148,'https://biomechanicseducation.com/?p=40521',0,'revision','',0),(40522,11,'2024-09-17 06:42:44','2024-09-17 06:42:44','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-17 06:42:44','2024-09-17 06:42:44','',39148,'https://biomechanicseducation.com/?p=40522',0,'revision','',0),(40523,11,'2024-09-17 06:44:31','2024-09-17 06:44:31','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-17 06:44:31','2024-09-17 06:44:31','',39148,'https://biomechanicseducation.com/?p=40523',0,'revision','',0),(40524,11,'2024-09-17 06:49:23','2024-09-17 06:49:23','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-17 06:49:23','2024-09-17 06:49:23','',39238,'https://biomechanicseducation.com/?p=40524',0,'revision','',0),(40525,11,'2024-09-17 06:51:11','2024-09-17 06:51:11','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-17 06:51:11','2024-09-17 06:51:11','',39238,'https://biomechanicseducation.com/?p=40525',0,'revision','',0),(40526,11,'2024-09-17 06:51:41','2024-09-17 06:51:41','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-17 06:51:41','2024-09-17 06:51:41','',39238,'https://biomechanicseducation.com/?p=40526',0,'revision','',0),(40527,11,'2024-09-17 06:52:42','2024-09-17 06:52:42','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-17 06:52:42','2024-09-17 06:52:42','',39238,'https://biomechanicseducation.com/?p=40527',0,'revision','',0),(40528,11,'2024-09-17 06:53:14','2024-09-17 06:53:14','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-17 06:53:14','2024-09-17 06:53:14','',39238,'https://biomechanicseducation.com/?p=40528',0,'revision','',0),(40529,11,'2024-09-17 06:53:30','2024-09-17 06:53:30','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-17 06:53:30','2024-09-17 06:53:30','',39238,'https://biomechanicseducation.com/?p=40529',0,'revision','',0),(40530,11,'2024-09-17 06:53:49','2024-09-17 06:53:49','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-17 06:53:49','2024-09-17 06:53:49','',39238,'https://biomechanicseducation.com/?p=40530',0,'revision','',0),(40531,11,'2024-09-17 06:58:30','2024-09-17 06:58:30','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-17 06:58:30','2024-09-17 06:58:30','',39238,'https://biomechanicseducation.com/?p=40531',0,'revision','',0),(40532,11,'2024-09-17 07:00:15','2024-09-17 07:00:15','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-09-17 07:00:15','2024-09-17 07:00:15','',39254,'https://biomechanicseducation.com/?p=40532',0,'revision','',0),(40533,11,'2024-09-17 07:01:03','2024-09-17 07:01:03','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-09-17 07:01:03','2024-09-17 07:01:03','',39254,'https://biomechanicseducation.com/?p=40533',0,'revision','',0),(40534,11,'2024-09-17 07:02:01','2024-09-17 07:02:01','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-09-17 07:02:01','2024-09-17 07:02:01','',39254,'https://biomechanicseducation.com/?p=40534',0,'revision','',0),(40535,11,'2024-09-17 07:04:10','2024-09-17 07:04:10','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-09-17 07:04:10','2024-09-17 07:04:10','',39263,'https://biomechanicseducation.com/?p=40535',0,'revision','',0),(40536,11,'2024-09-17 07:05:44','2024-09-17 07:05:44','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-09-17 07:05:44','2024-09-17 07:05:44','',39263,'https://biomechanicseducation.com/?p=40536',0,'revision','',0),(40537,11,'2024-09-17 07:06:14','2024-09-17 07:06:14','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-09-17 07:06:14','2024-09-17 07:06:14','',39263,'https://biomechanicseducation.com/?p=40537',0,'revision','',0),(40538,11,'2024-09-17 07:09:04','2024-09-17 07:09:04','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-17 07:09:04','2024-09-17 07:09:04','',39284,'https://biomechanicseducation.com/?p=40538',0,'revision','',0),(40539,11,'2024-09-17 07:10:25','2024-09-17 07:10:25','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-17 07:10:25','2024-09-17 07:10:25','',39284,'https://biomechanicseducation.com/?p=40539',0,'revision','',0),(40540,11,'2024-09-17 07:14:31','2024-09-17 07:14:31','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-17 07:14:31','2024-09-17 07:14:31','',39284,'https://biomechanicseducation.com/?p=40540',0,'revision','',0),(40541,11,'2024-09-17 07:16:58','2024-09-17 07:16:58','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-17 07:16:58','2024-09-17 07:16:58','',39284,'https://biomechanicseducation.com/?p=40541',0,'revision','',0),(40542,11,'2024-09-17 07:17:43','2024-09-17 07:17:43','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-17 07:17:43','2024-09-17 07:17:43','',39284,'https://biomechanicseducation.com/?p=40542',0,'revision','',0),(40543,11,'2024-09-17 07:19:39','2024-09-17 07:19:39','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-17 07:19:39','2024-09-17 07:19:39','',39284,'https://biomechanicseducation.com/?p=40543',0,'revision','',0),(40544,11,'2024-09-17 07:21:26','2024-09-17 07:21:26','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-17 07:21:26','2024-09-17 07:21:26','',39284,'https://biomechanicseducation.com/?p=40544',0,'revision','',0),(40545,11,'2024-09-17 07:22:06','2024-09-17 07:22:06','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-17 07:22:06','2024-09-17 07:22:06','',39284,'https://biomechanicseducation.com/?p=40545',0,'revision','',0),(40546,11,'2024-09-17 07:23:53','2024-09-17 07:23:53','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-17 07:23:53','2024-09-17 07:23:53','',39284,'https://biomechanicseducation.com/?p=40546',0,'revision','',0),(40547,11,'2024-09-17 07:24:48','2024-09-17 07:24:48','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-17 07:24:48','2024-09-17 07:24:48','',39284,'https://biomechanicseducation.com/?p=40547',0,'revision','',0),(40548,11,'2024-09-17 07:25:38','2024-09-17 07:25:38','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-17 07:25:38','2024-09-17 07:25:38','',39284,'https://biomechanicseducation.com/?p=40548',0,'revision','',0),(40549,11,'2024-09-17 07:26:44','2024-09-17 07:26:44','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-09-17 07:26:44','2024-09-17 07:26:44','',39284,'https://biomechanicseducation.com/?p=40549',0,'revision','',0),(40550,11,'2024-09-17 07:30:46','2024-09-17 07:30:46','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-09-17 07:30:46','2024-09-17 07:30:46','',39270,'https://biomechanicseducation.com/?p=40550',0,'revision','',0),(40551,11,'2024-09-17 07:31:08','2024-09-17 07:31:08','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-09-17 07:31:08','2024-09-17 07:31:08','',39270,'https://biomechanicseducation.com/?p=40551',0,'revision','',0),(40552,11,'2024-09-17 07:34:00','2024-09-17 07:34:00','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-09-17 07:34:00','2024-09-17 07:34:00','',39270,'https://biomechanicseducation.com/?p=40552',0,'revision','',0),(40553,11,'2024-09-17 07:35:44','2024-09-17 07:35:44','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-09-17 07:35:44','2024-09-17 07:35:44','',39270,'https://biomechanicseducation.com/?p=40553',0,'revision','',0),(40554,11,'2024-09-17 07:39:35','2024-09-17 07:39:35','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-09-17 07:39:35','2024-09-17 07:39:35','',39270,'https://biomechanicseducation.com/?p=40554',0,'revision','',0),(40555,11,'2024-09-17 07:40:10','2024-09-17 07:40:10','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-09-17 07:40:10','2024-09-17 07:40:10','',39270,'https://biomechanicseducation.com/?p=40555',0,'revision','',0),(40556,3,'2024-09-17 08:27:33','2024-09-17 08:27:33','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:27:33','2024-09-17 08:27:33','',40263,'https://biomechanicseducation.com/?p=40556',0,'revision','',0),(40557,3,'2024-09-17 08:30:02','2024-09-17 08:30:02','','behaviour change coaching 50.50 image','','inherit','closed','closed','','behaviour-change-coaching-50-50-image','','','2024-09-17 08:30:02','2024-09-17 08:30:02','',40263,'https://biomechanicseducation.com/wp-content/uploads/2024/09/behaviour-change-coaching-50.50-image.jpg',0,'attachment','image/jpeg',0),(40558,3,'2024-09-17 08:33:02','2024-09-17 08:33:02','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:33:02','2024-09-17 08:33:02','',40263,'https://biomechanicseducation.com/?p=40558',0,'revision','',0),(40559,3,'2024-09-17 08:33:58','2024-09-17 08:33:58','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:33:58','2024-09-17 08:33:58','',40263,'https://biomechanicseducation.com/?p=40559',0,'revision','',0),(40561,3,'2024-09-17 08:36:46','2024-09-17 08:36:46','','behaviour change coaching hero image','','inherit','closed','closed','','behaviour-change-coaching-hero-image','','','2024-09-17 08:36:46','2024-09-17 08:36:46','',40263,'https://biomechanicseducation.com/wp-content/uploads/2024/09/behaviour-change-coaching-hero-image.jpg',0,'attachment','image/jpeg',0),(40562,3,'2024-09-17 08:38:24','2024-09-17 08:38:24','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:38:24','2024-09-17 08:38:24','',40263,'https://biomechanicseducation.com/?p=40562',0,'revision','',0),(40563,3,'2024-09-17 08:40:13','2024-09-17 08:40:13','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:40:13','2024-09-17 08:40:13','',40263,'https://biomechanicseducation.com/?p=40563',0,'revision','',0),(40564,3,'2024-09-17 08:40:48','2024-09-17 08:40:48','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:40:48','2024-09-17 08:40:48','',40263,'https://biomechanicseducation.com/?p=40564',0,'revision','',0),(40565,3,'2024-09-17 08:44:35','2024-09-17 08:44:35','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:44:35','2024-09-17 08:44:35','',40263,'https://biomechanicseducation.com/?p=40565',0,'revision','',0),(40566,3,'2024-09-17 08:45:07','2024-09-17 08:45:07','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:45:07','2024-09-17 08:45:07','',40263,'https://biomechanicseducation.com/?p=40566',0,'revision','',0),(40567,3,'2024-09-17 08:45:35','2024-09-17 08:45:35','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:45:35','2024-09-17 08:45:35','',40263,'https://biomechanicseducation.com/?p=40567',0,'revision','',0),(40568,3,'2024-09-17 08:45:51','2024-09-17 08:45:51','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:45:51','2024-09-17 08:45:51','',40263,'https://biomechanicseducation.com/?p=40568',0,'revision','',0),(40569,3,'2024-09-17 08:47:01','2024-09-17 08:47:01','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:47:01','2024-09-17 08:47:01','',40263,'https://biomechanicseducation.com/?p=40569',0,'revision','',0),(40570,3,'2024-09-17 08:48:09','2024-09-17 08:48:09','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:48:09','2024-09-17 08:48:09','',40263,'https://biomechanicseducation.com/?p=40570',0,'revision','',0),(40571,3,'2024-09-17 08:50:21','2024-09-17 08:50:21','Completing this behaviour change coaching course will enhance your knowledge and ability to help clients achieve long-term change in relation to their diet and exercise behaviour. This will look at elements including the need for change, barriers to change, models of behaviour change, communication and the Formula4Change system.','What is this Behaviour Change Coaching course?','','publish','closed','closed','','what-is-this-behaviour-change-coaching-course-2','','','2024-09-17 08:50:21','2024-09-17 08:50:21','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=40571',0,'faqs','',0),(40572,3,'2024-09-17 08:50:55','2024-09-17 08:50:55','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:50:55','2024-09-17 08:50:55','',40263,'https://biomechanicseducation.com/?p=40572',0,'revision','',0),(40573,3,'2024-09-17 08:52:23','2024-09-17 08:52:23','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:52:23','2024-09-17 08:52:23','',40263,'https://biomechanicseducation.com/?p=40573',0,'revision','',0),(40574,3,'2024-09-17 08:53:35','2024-09-17 08:53:35','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:53:35','2024-09-17 08:53:35','',40263,'https://biomechanicseducation.com/?p=40574',0,'revision','',0),(40575,3,'2024-09-17 08:53:57','2024-09-17 08:53:57','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-17 08:53:57','2024-09-17 08:53:57','',40263,'https://biomechanicseducation.com/?p=40575',0,'revision','',0),(40576,3,'2024-09-17 08:56:10','2024-09-17 08:56:10','','BUILDING YOUR FITNESS BUSINESS HERO IMAGE','','inherit','closed','closed','','building-your-fitness-business-hero-image-3','','','2024-09-17 08:56:10','2024-09-17 08:56:10','',40270,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE.jpg',0,'attachment','image/jpeg',0),(40577,3,'2024-09-17 09:01:10','2024-09-17 09:01:10','','BUILDING YOUR FITNESS BUSINESS 50.50 image','','inherit','closed','closed','','building-your-fitness-business-50-50-image','','','2024-09-17 09:01:10','2024-09-17 09:01:10','',40270,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BUILDING-YOUR-FITNESS-BUSINESS-50.50-image.jpg',0,'attachment','image/jpeg',0),(40578,3,'2024-09-17 09:01:39','2024-09-17 09:01:39','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-17 09:01:39','2024-09-17 09:01:39','',40270,'https://biomechanicseducation.com/?p=40578',0,'revision','',0),(40580,3,'2024-09-17 09:04:04','2024-09-17 09:04:04','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-17 09:04:04','2024-09-17 09:04:04','',40270,'https://biomechanicseducation.com/?p=40580',0,'revision','',0),(40581,3,'2024-09-17 09:09:06','2024-09-17 09:09:06','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-17 09:09:06','2024-09-17 09:09:06','',40270,'https://biomechanicseducation.com/?p=40581',0,'revision','',0),(40582,3,'2024-09-17 09:10:24','2024-09-17 09:10:24','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-17 09:10:24','2024-09-17 09:10:24','',40270,'https://biomechanicseducation.com/?p=40582',0,'revision','',0),(40583,3,'2024-09-17 09:11:28','2024-09-17 09:11:28','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-17 09:11:28','2024-09-17 09:11:28','',40270,'https://biomechanicseducation.com/?p=40583',0,'revision','',0),(40584,3,'2024-09-17 09:12:01','2024-09-17 09:12:01','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-17 09:12:01','2024-09-17 09:12:01','',40270,'https://biomechanicseducation.com/?p=40584',0,'revision','',0),(40585,3,'2024-09-17 09:13:03','2024-09-17 09:13:03','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-17 09:13:03','2024-09-17 09:13:03','',40270,'https://biomechanicseducation.com/?p=40585',0,'revision','',0),(40586,3,'2024-09-17 09:16:58','2024-09-17 09:16:58','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-17 09:16:58','2024-09-17 09:16:58','',40270,'https://biomechanicseducation.com/?p=40586',0,'revision','',0),(40587,3,'2024-09-17 09:23:12','2024-09-17 09:23:12','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-17 09:23:12','2024-09-17 09:23:12','',40270,'https://biomechanicseducation.com/?p=40587',0,'revision','',0),(40588,3,'2024-09-17 09:23:55','2024-09-17 09:23:55','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-17 09:23:55','2024-09-17 09:23:55','',40270,'https://biomechanicseducation.com/?p=40588',0,'revision','',0),(40589,3,'2024-09-17 09:24:13','2024-09-17 09:24:13','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-17 09:24:13','2024-09-17 09:24:13','',40270,'https://biomechanicseducation.com/?p=40589',0,'revision','',0),(40590,3,'2024-09-17 09:24:47','2024-09-17 09:24:47','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-17 09:24:47','2024-09-17 09:24:47','',40270,'https://biomechanicseducation.com/?p=40590',0,'revision','',0),(40591,3,'2024-09-17 09:45:39','2024-09-17 09:45:39','','Coaching Fitness Online','','inherit','closed','closed','','40271-revision-v1','','','2024-09-17 09:45:39','2024-09-17 09:45:39','',40271,'https://biomechanicseducation.com/?p=40591',0,'revision','',0),(40592,3,'2024-09-17 09:45:48','2024-09-17 09:45:48','','Coaching Fitness Online','','inherit','closed','closed','','40271-autosave-v1','','','2024-09-17 09:45:48','2024-09-17 09:45:48','',40271,'https://biomechanicseducation.com/?p=40592',0,'revision','',0),(40593,3,'2024-09-17 09:46:12','2024-09-17 09:46:12','','Coaching Fitness Online','','inherit','closed','closed','','40271-revision-v1','','','2024-09-17 09:46:12','2024-09-17 09:46:12','',40271,'https://biomechanicseducation.com/?p=40593',0,'revision','',0),(40594,3,'2024-09-17 09:49:05','2024-09-17 09:49:05','','Coaching Fitness Online','','inherit','closed','closed','','40271-revision-v1','','','2024-09-17 09:49:05','2024-09-17 09:49:05','',40271,'https://biomechanicseducation.com/?p=40594',0,'revision','',0),(40595,3,'2024-09-17 09:49:30','2024-09-17 09:49:30','','Coaching Fitness Online','','inherit','closed','closed','','40271-revision-v1','','','2024-09-17 09:49:30','2024-09-17 09:49:30','',40271,'https://biomechanicseducation.com/?p=40595',0,'revision','',0),(40596,3,'2024-09-17 09:49:53','2024-09-17 09:49:53','','Coaching Fitness Online','','inherit','closed','closed','','40271-revision-v1','','','2024-09-17 09:49:53','2024-09-17 09:49:53','',40271,'https://biomechanicseducation.com/?p=40596',0,'revision','',0),(40597,15,'2024-09-17 09:50:14','2024-09-17 09:50:14','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-17 09:50:14','2024-09-17 09:50:14','',39196,'https://biomechanicseducation.com/?p=40597',0,'revision','',0),(40599,3,'2024-09-17 09:51:10','2024-09-17 09:51:10','','Coaching Fitness Online','','inherit','closed','closed','','40271-revision-v1','','','2024-09-17 09:51:10','2024-09-17 09:51:10','',40271,'https://biomechanicseducation.com/?p=40599',0,'revision','',0),(40600,3,'2024-09-17 09:52:20','2024-09-17 09:52:20','','Coaching Fitness Online','','inherit','closed','closed','','40271-revision-v1','','','2024-09-17 09:52:20','2024-09-17 09:52:20','',40271,'https://biomechanicseducation.com/?p=40600',0,'revision','',0),(40601,3,'2024-09-17 09:53:00','2024-09-17 09:53:00','','Coaching Fitness Online','','inherit','closed','closed','','40271-revision-v1','','','2024-09-17 09:53:00','2024-09-17 09:53:00','',40271,'https://biomechanicseducation.com/?p=40601',0,'revision','',0),(40602,3,'2024-09-17 09:54:01','2024-09-17 09:54:01','','Coaching Fitness Online','','inherit','closed','closed','','40271-revision-v1','','','2024-09-17 09:54:01','2024-09-17 09:54:01','',40271,'https://biomechanicseducation.com/?p=40602',0,'revision','',0),(40603,3,'2024-09-17 09:58:06','2024-09-17 09:58:06','','Coaching Fitness Online','','inherit','closed','closed','','40271-revision-v1','','','2024-09-17 09:58:06','2024-09-17 09:58:06','',40271,'https://biomechanicseducation.com/?p=40603',0,'revision','',0),(40604,3,'2024-09-17 10:01:21','2024-09-17 10:01:21','','Core training hero iamge','','inherit','closed','closed','','core-training-hero-iamge','','','2024-09-17 10:01:21','2024-09-17 10:01:21','',40272,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Core-training-hero-iamge.jpg',0,'attachment','image/jpeg',0),(40605,3,'2024-09-17 10:02:57','2024-09-17 10:02:57','','Core training 50.50 image','','inherit','closed','closed','','core-training-50-50-image-2','','','2024-09-17 10:02:57','2024-09-17 10:02:57','',40272,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Core-training-50.50-image.jpg',0,'attachment','image/jpeg',0),(40606,3,'2024-09-17 10:08:04','2024-09-17 10:08:04','','Core Training','','inherit','closed','closed','','40272-revision-v1','','','2024-09-17 10:08:04','2024-09-17 10:08:04','',40272,'https://biomechanicseducation.com/?p=40606',0,'revision','',0),(40607,3,'2024-09-17 10:08:12','2024-09-17 10:08:12','','Core Training','','inherit','closed','closed','','40272-autosave-v1','','','2024-09-17 10:08:12','2024-09-17 10:08:12','',40272,'https://biomechanicseducation.com/?p=40607',0,'revision','',0),(40608,3,'2024-09-17 10:10:40','2024-09-17 10:10:40','','Core Training','','inherit','closed','closed','','40272-revision-v1','','','2024-09-17 10:10:40','2024-09-17 10:10:40','',40272,'https://biomechanicseducation.com/?p=40608',0,'revision','',0),(40609,3,'2024-09-17 11:00:13','2024-09-17 11:00:13','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-autosave-v1','','','2024-09-17 11:00:13','2024-09-17 11:00:13','',40286,'https://biomechanicseducation.com/?p=40609',0,'revision','',0),(40610,3,'2024-09-17 11:00:52','2024-09-17 11:00:52','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-17 11:00:52','2024-09-17 11:00:52','',40286,'https://biomechanicseducation.com/?p=40610',0,'revision','',0),(40611,3,'2024-09-17 11:04:18','2024-09-17 11:04:18','','Introduction to running biomechanics hero','','inherit','closed','closed','','introduction-to-running-biomechanics-hero','','','2024-09-17 11:04:18','2024-09-17 11:04:18','',40281,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Introduction-to-running-biomechanics-hero.jpg',0,'attachment','image/jpeg',0),(40612,3,'2024-09-17 11:07:18','2024-09-17 11:07:18','','Introduction to running biomechanics 50.50','','inherit','closed','closed','','introduction-to-running-biomechanics-50-50','','','2024-09-17 11:07:18','2024-09-17 11:07:18','',40281,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Introduction-to-running-biomechanics-50.50.jpg',0,'attachment','image/jpeg',0),(40613,3,'2024-09-17 11:10:50','2024-09-17 11:10:50','','Running Biomechanics','','inherit','closed','closed','','40281-revision-v1','','','2024-09-17 11:10:50','2024-09-17 11:10:50','',40281,'https://biomechanicseducation.com/?p=40613',0,'revision','',0),(40615,3,'2024-09-17 11:45:10','2024-09-17 11:45:10','','Imovefreely hero iamae','','inherit','closed','closed','','imovefreely-hero-iamge','','','2024-09-19 12:29:32','2024-09-19 12:29:32','',40277,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Imovefreely-hero-iamge.jpg',0,'attachment','image/jpeg',0),(40616,3,'2024-09-17 11:46:49','2024-09-17 11:46:49','','iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2024-09-17 11:46:49','2024-09-17 11:46:49','',40277,'https://biomechanicseducation.com/?p=40616',0,'revision','',0),(40618,3,'2024-09-17 11:48:21','2024-09-17 11:48:21','','Imovefreely 50.50 image','','inherit','closed','closed','','imovefreely-50-50-image','','','2024-09-17 11:48:21','2024-09-17 11:48:21','',40277,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Imovefreely-50.50-image.jpg',0,'attachment','image/jpeg',0),(40619,3,'2024-09-17 11:48:42','2024-09-17 11:48:42','','iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2024-09-17 11:48:42','2024-09-17 11:48:42','',40277,'https://biomechanicseducation.com/?p=40619',0,'revision','',0),(40620,3,'2024-09-17 11:49:09','2024-09-17 11:49:09','','iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2024-09-17 11:49:09','2024-09-17 11:49:09','',40277,'https://biomechanicseducation.com/?p=40620',0,'revision','',0),(40621,3,'2024-09-17 11:49:58','2024-09-17 11:49:58','','iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2024-09-17 11:49:58','2024-09-17 11:49:58','',40277,'https://biomechanicseducation.com/?p=40621',0,'revision','',0),(40622,3,'2024-09-17 11:50:32','2024-09-17 11:50:32','','iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2024-09-17 11:50:32','2024-09-17 11:50:32','',40277,'https://biomechanicseducation.com/?p=40622',0,'revision','',0),(40623,3,'2024-09-17 11:50:47','2024-09-17 11:50:47','','iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2024-09-17 11:50:47','2024-09-17 11:50:47','',40277,'https://biomechanicseducation.com/?p=40623',0,'revision','',0),(40624,3,'2024-09-17 11:51:02','2024-09-17 11:51:02','','iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2024-09-17 11:51:02','2024-09-17 11:51:02','',40277,'https://biomechanicseducation.com/?p=40624',0,'revision','',0),(40625,3,'2024-09-17 11:51:28','2024-09-17 11:51:28','','iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2024-09-17 11:51:28','2024-09-17 11:51:28','',40277,'https://biomechanicseducation.com/?p=40625',0,'revision','',0),(40626,3,'2024-09-17 11:51:38','2024-09-17 11:51:38','','iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2024-09-17 11:51:38','2024-09-17 11:51:38','',40277,'https://biomechanicseducation.com/?p=40626',0,'revision','',0),(40627,3,'2024-09-17 11:53:36','2024-09-17 11:53:36','','iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2024-09-17 11:53:36','2024-09-17 11:53:36','',40277,'https://biomechanicseducation.com/?p=40627',0,'revision','',0),(40628,3,'2024-09-17 11:55:21','2024-09-17 11:55:21','','Introduction to intrinsic BE hero iamge','','inherit','closed','closed','','introduction-to-intrinsic-be-hero-iamge','','','2024-09-17 11:55:21','2024-09-17 11:55:21','',40278,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Introduction-to-intrinsic-BE-hero-iamge.jpg',0,'attachment','image/jpeg',0),(40629,3,'2024-09-17 11:58:39','2024-09-17 11:58:39','','Introduction to Intrinsic Biomechanics','','inherit','closed','closed','','40278-revision-v1','','','2024-09-17 11:58:39','2024-09-17 11:58:39','',40278,'https://biomechanicseducation.com/?p=40629',0,'revision','',0),(40630,3,'2024-09-17 12:02:12','2024-09-17 12:02:12','','fundamental principles of movement hero','','inherit','closed','closed','','fundamental-principles-of-movement-hero','','','2024-09-17 12:02:12','2024-09-17 12:02:12','',40275,'https://biomechanicseducation.com/wp-content/uploads/2024/09/fundamental-principles-of-movement-hero.jpg',0,'attachment','image/jpeg',0),(40631,3,'2024-09-17 12:06:13','2024-09-17 12:06:13','','fundamental principles of movement 50.50','','inherit','closed','closed','','fundamental-principles-of-movement-50-50','','','2024-09-17 12:06:13','2024-09-17 12:06:13','',40275,'https://biomechanicseducation.com/wp-content/uploads/2024/09/fundamental-principles-of-movement-50.50.jpg',0,'attachment','image/jpeg',0),(40632,3,'2024-09-17 12:07:56','2024-09-17 12:07:56','','Fundamental Principles of Movement','','inherit','closed','closed','','40275-revision-v1','','','2024-09-17 12:07:56','2024-09-17 12:07:56','',40275,'https://biomechanicseducation.com/?p=40632',0,'revision','',0),(40633,3,'2024-09-17 12:08:06','2024-09-17 12:08:06','','Fundamental Principles of Movement','','inherit','closed','closed','','40275-autosave-v1','','','2024-09-17 12:08:06','2024-09-17 12:08:06','',40275,'https://biomechanicseducation.com/?p=40633',0,'revision','',0),(40634,3,'2024-09-17 12:11:13','2024-09-17 12:11:13','','practical anatomy series hero iamge','','inherit','closed','closed','','practical-anatomy-series-hero-iamge','','','2024-09-17 12:11:13','2024-09-17 12:11:13','',40280,'https://biomechanicseducation.com/wp-content/uploads/2024/09/practical-anatomy-series-hero-iamge.jpg',0,'attachment','image/jpeg',0),(40635,3,'2024-09-17 12:58:04','2024-09-17 12:58:04','','practical anatomy series 50.50 image','','inherit','closed','closed','','practical-anatomy-series-50-50-image','','','2024-09-17 12:58:04','2024-09-17 12:58:04','',40280,'https://biomechanicseducation.com/wp-content/uploads/2024/09/practical-anatomy-series-50.50-image.jpg',0,'attachment','image/jpeg',0),(40636,3,'2024-09-17 12:59:06','2024-09-17 12:59:06','','Practical Anatomy Series','','inherit','closed','closed','','40280-revision-v1','','','2024-09-17 12:59:06','2024-09-17 12:59:06','',40280,'https://biomechanicseducation.com/?p=40636',0,'revision','',0),(40638,3,'2024-09-17 13:26:06','2024-09-17 13:26:06','','weak glutes hero image','','inherit','closed','closed','','weak-glutes-hero-image','','','2024-09-17 13:26:06','2024-09-17 13:26:06','',40284,'https://biomechanicseducation.com/wp-content/uploads/2024/09/weak-glutes-hero-image.jpg',0,'attachment','image/jpeg',0),(40639,3,'2024-09-17 13:26:57','2024-09-17 13:26:57','','Weak Glutes','','inherit','closed','closed','','40284-revision-v1','','','2024-09-17 13:26:57','2024-09-17 13:26:57','',40284,'https://biomechanicseducation.com/?p=40639',0,'revision','',0),(40640,3,'2024-09-17 13:27:26','2024-09-17 13:27:26','','Weak Glutes','','inherit','closed','closed','','40284-revision-v1','','','2024-09-17 13:27:26','2024-09-17 13:27:26','',40284,'https://biomechanicseducation.com/?p=40640',0,'revision','',0),(40642,3,'2024-09-17 13:32:14','2024-09-17 13:32:14','','Weak Glutes','','inherit','closed','closed','','40284-revision-v1','','','2024-09-17 13:32:14','2024-09-17 13:32:14','',40284,'https://biomechanicseducation.com/?p=40642',0,'revision','',0),(40643,3,'2024-09-17 13:32:47','2024-09-17 13:32:47','','Weak Glutes','','inherit','closed','closed','','40284-revision-v1','','','2024-09-17 13:32:47','2024-09-17 13:32:47','',40284,'https://biomechanicseducation.com/?p=40643',0,'revision','',0),(40644,3,'2024-09-17 13:33:35','2024-09-17 13:33:35','','Weak Glutes','','inherit','closed','closed','','40284-revision-v1','','','2024-09-17 13:33:35','2024-09-17 13:33:35','',40284,'https://biomechanicseducation.com/?p=40644',0,'revision','',0),(40645,3,'2024-09-17 13:33:51','2024-09-17 13:33:51','','Weak Glutes Webinar','','inherit','closed','closed','','40284-revision-v1','','','2024-09-17 13:33:51','2024-09-17 13:33:51','',40284,'https://biomechanicseducation.com/?p=40645',0,'revision','',0),(40646,3,'2024-09-17 13:34:04','2024-09-17 13:34:04','','Weak Glutes Webinar','','inherit','closed','closed','','40284-revision-v1','','','2024-09-17 13:34:04','2024-09-17 13:34:04','',40284,'https://biomechanicseducation.com/?p=40646',0,'revision','',0),(40647,3,'2024-09-17 13:34:15','2024-09-17 13:34:15','','Weak Glutes Webinar','','inherit','closed','closed','','40284-revision-v1','','','2024-09-17 13:34:15','2024-09-17 13:34:15','',40284,'https://biomechanicseducation.com/?p=40647',0,'revision','',0),(40648,3,'2024-09-17 13:34:42','2024-09-17 13:34:42','','Weak Glutes Webinar','','inherit','closed','closed','','40284-revision-v1','','','2024-09-17 13:34:42','2024-09-17 13:34:42','',40284,'https://biomechanicseducation.com/?p=40648',0,'revision','',0),(40650,3,'2024-09-17 14:08:53','2024-09-17 14:08:53','','pain science made simple hero iamge','','inherit','closed','closed','','pain-science-made-simple-hero-iamge','','','2024-09-17 14:08:53','2024-09-17 14:08:53','',40279,'https://biomechanicseducation.com/wp-content/uploads/2024/09/pain-science-made-simple-hero-iamge.jpg',0,'attachment','image/jpeg',0),(40651,3,'2024-09-17 14:11:00','2024-09-17 14:11:00','','Pain Science Made Simple','','inherit','closed','closed','','40279-revision-v1','','','2024-09-17 14:11:00','2024-09-17 14:11:00','',40279,'https://biomechanicseducation.com/?p=40651',0,'revision','',0),(40652,3,'2024-09-17 14:17:55','2024-09-17 14:17:55','','Acute,Pain,In,A,Woman,Wrist,,Colored,In,Red,On','','inherit','closed','closed','','acutepaininawomanwristcoloredinredon','','','2024-09-17 14:17:55','2024-09-17 14:17:55','',40279,'https://biomechanicseducation.com/wp-content/uploads/2024/09/shutterstock_304486634.jpg',0,'attachment','image/jpeg',0),(40653,3,'2024-09-17 14:18:36','2024-09-17 14:18:36','','Pain Science Made Simple','','inherit','closed','closed','','40279-revision-v1','','','2024-09-17 14:18:36','2024-09-17 14:18:36','',40279,'https://biomechanicseducation.com/?p=40653',0,'revision','',0),(40654,3,'2024-09-17 14:18:51','2024-09-17 14:18:51','','Pain Science Made Simple','','inherit','closed','closed','','40279-revision-v1','','','2024-09-17 14:18:51','2024-09-17 14:18:51','',40279,'https://biomechanicseducation.com/?p=40654',0,'revision','',0),(40655,3,'2024-09-17 14:19:22','2024-09-17 14:19:22','','Pain Science Made Simple','','inherit','closed','closed','','40279-revision-v1','','','2024-09-17 14:19:22','2024-09-17 14:19:22','',40279,'https://biomechanicseducation.com/?p=40655',0,'revision','',0),(40656,3,'2024-09-17 14:19:47','2024-09-17 14:19:47','','Pain Science Made Simple','','inherit','closed','closed','','40279-revision-v1','','','2024-09-17 14:19:47','2024-09-17 14:19:47','',40279,'https://biomechanicseducation.com/?p=40656',0,'revision','',0),(40657,3,'2024-09-17 14:20:08','2024-09-17 14:20:08','','Pain Science Made Simple','','inherit','closed','closed','','40279-revision-v1','','','2024-09-17 14:20:08','2024-09-17 14:20:08','',40279,'https://biomechanicseducation.com/?p=40657',0,'revision','',0),(40658,3,'2024-09-17 14:20:28','2024-09-17 14:20:28','','Pain Science Made Simple','','inherit','closed','closed','','40279-revision-v1','','','2024-09-17 14:20:28','2024-09-17 14:20:28','',40279,'https://biomechanicseducation.com/?p=40658',0,'revision','',0),(40659,3,'2024-09-17 15:05:50','2024-09-17 15:05:50','','what the hell is functional training hero iamge','','inherit','closed','closed','','what-the-hell-is-functional-training-hero-iamge','','','2024-09-17 15:05:50','2024-09-17 15:05:50','',40285,'https://biomechanicseducation.com/wp-content/uploads/2024/09/what-the-hell-is-functional-training-hero-iamge.jpg',0,'attachment','image/jpeg',0),(40660,3,'2024-09-17 15:08:11','2024-09-17 15:08:11','','What the hell is Functional Training anyway?','','inherit','closed','closed','','40285-revision-v1','','','2024-09-17 15:08:11','2024-09-17 15:08:11','',40285,'https://biomechanicseducation.com/?p=40660',0,'revision','',0),(40661,3,'2024-09-17 15:11:09','2024-09-17 15:11:09','','What the hell is Functional Training anyway?','','inherit','closed','closed','','40285-revision-v1','','','2024-09-17 15:11:09','2024-09-17 15:11:09','',40285,'https://biomechanicseducation.com/?p=40661',0,'revision','',0),(40662,3,'2024-09-17 15:12:36','2024-09-17 15:12:36','','What the hell is Functional Training anyway?','','inherit','closed','closed','','40285-revision-v1','','','2024-09-17 15:12:36','2024-09-17 15:12:36','',40285,'https://biomechanicseducation.com/?p=40662',0,'revision','',0),(40663,3,'2024-09-17 15:15:27','2024-09-17 15:15:27','','What the hell is Functional Training anyway?','','inherit','closed','closed','','40285-revision-v1','','','2024-09-17 15:15:27','2024-09-17 15:15:27','',40285,'https://biomechanicseducation.com/?p=40663',0,'revision','',0),(40664,3,'2024-09-17 15:16:21','2024-09-17 15:16:21','','What the hell is Functional Training anyway?','','inherit','closed','closed','','40285-revision-v1','','','2024-09-17 15:16:21','2024-09-17 15:16:21','',40285,'https://biomechanicseducation.com/?p=40664',0,'revision','',0),(40665,3,'2024-09-17 15:38:40','2024-09-17 15:38:40','','Understanding the nerves hero','','inherit','closed','closed','','understanding-the-nerves-hero','','','2024-09-17 15:38:40','2024-09-17 15:38:40','',40283,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Understanding-the-nerves-hero.jpg',0,'attachment','image/jpeg',0),(40666,3,'2024-09-17 15:41:32','2024-09-17 15:41:32','','Understanding Nerves','','inherit','closed','closed','','40283-revision-v1','','','2024-09-17 15:41:32','2024-09-17 15:41:32','',40283,'https://biomechanicseducation.com/?p=40666',0,'revision','',0),(40667,3,'2024-09-17 15:45:52','2024-09-17 15:45:52','','Foot biomechanics hero','','inherit','closed','closed','','foot-biomechanics-hero','','','2024-09-17 15:45:52','2024-09-17 15:45:52','',40274,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Foot-biomechanics-hero.jpg',0,'attachment','image/jpeg',0),(40668,3,'2024-09-17 15:49:18','2024-09-17 15:49:18','','Foot Biomechanics Made Simple','','inherit','closed','closed','','40274-revision-v1','','','2024-09-17 15:49:18','2024-09-17 15:49:18','',40274,'https://biomechanicseducation.com/?p=40668',0,'revision','',0),(40669,3,'2024-09-17 15:49:59','2024-09-17 15:49:59','','Foot Biomechanics Made Simple','','inherit','closed','closed','','40274-revision-v1','','','2024-09-17 15:49:59','2024-09-17 15:49:59','',40274,'https://biomechanicseducation.com/?p=40669',0,'revision','',0),(40670,3,'2024-09-17 15:56:09','2024-09-17 15:56:09','','Foot posture index hero iamge','','inherit','closed','closed','','foot-posture-index-hero-iamge','','','2024-09-17 15:56:09','2024-09-17 15:56:09','',40282,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Foot-posture-index-hero-iamge.jpg',0,'attachment','image/jpeg',0),(40671,3,'2024-09-17 15:58:24','2024-09-17 15:58:24','','The Foot Posture Index','','inherit','closed','closed','','40282-revision-v1','','','2024-09-17 15:58:24','2024-09-17 15:58:24','',40282,'https://biomechanicseducation.com/?p=40671',0,'revision','',0),(40672,3,'2024-09-17 15:59:19','2024-09-17 15:59:19','','The Foot Posture Index','','inherit','closed','closed','','40282-revision-v1','','','2024-09-17 15:59:19','2024-09-17 15:59:19','',40282,'https://biomechanicseducation.com/?p=40672',0,'revision','',0),(40673,3,'2024-09-17 15:59:43','2024-09-17 15:59:43','','The Foot Posture Index','','inherit','closed','closed','','40282-revision-v1','','','2024-09-17 15:59:43','2024-09-17 15:59:43','',40282,'https://biomechanicseducation.com/?p=40673',0,'revision','',0),(40675,3,'2024-09-18 08:34:02','2024-09-18 08:34:02','','deadlift analysis made simple','','inherit','closed','closed','','deadlift-analysis-made-simple-2','','','2024-09-18 08:34:02','2024-09-18 08:34:02','',40273,'https://biomechanicseducation.com/wp-content/uploads/2024/09/deadlift-analysis-made-simple.jpg',0,'attachment','image/jpeg',0),(40676,3,'2024-09-18 08:35:57','2024-09-18 08:35:57','','Deadlift analysis 50/50 image','','inherit','closed','closed','','workoutweightliftingandmandoingdeadlifttrainingwithstrengthweights','','','2024-09-18 08:36:12','2024-09-18 08:36:12','',40273,'https://biomechanicseducation.com/wp-content/uploads/2024/09/shutterstock_2211550705.jpg',0,'attachment','image/jpeg',0),(40677,3,'2024-09-18 08:45:16','2024-09-18 08:45:16','','Deadlift Analysis Made Simple','','inherit','closed','closed','','40273-revision-v1','','','2024-09-18 08:45:16','2024-09-18 08:45:16','',40273,'https://biomechanicseducation.com/?p=40677',0,'revision','',0),(40678,3,'2024-09-18 08:46:52','2024-09-18 08:46:52','','Deadlift Analysis Made Simple','','inherit','closed','closed','','40273-revision-v1','','','2024-09-18 08:46:52','2024-09-18 08:46:52','',40273,'https://biomechanicseducation.com/?p=40678',0,'revision','',0),(40680,3,'2024-09-18 08:48:19','2024-09-18 08:48:19','','Deadlift Analysis Made Simple','','inherit','closed','closed','','40273-revision-v1','','','2024-09-18 08:48:19','2024-09-18 08:48:19','',40273,'https://biomechanicseducation.com/?p=40680',0,'revision','',0),(40681,3,'2024-09-18 08:48:40','2024-09-18 08:48:40','','Deadlift Analysis Made Simple','','inherit','closed','closed','','40273-revision-v1','','','2024-09-18 08:48:40','2024-09-18 08:48:40','',40273,'https://biomechanicseducation.com/?p=40681',0,'revision','',0),(40682,3,'2024-09-18 09:47:32','2024-09-18 09:47:32','','Deadlift Analysis Made Simple','','inherit','closed','closed','','40273-revision-v1','','','2024-09-18 09:47:32','2024-09-18 09:47:32','',40273,'https://biomechanicseducation.com/?p=40682',0,'revision','',0),(40683,3,'2024-09-18 10:07:42','2024-09-18 10:07:42','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-18 10:07:42','2024-09-18 10:07:42','',39196,'https://biomechanicseducation.com/?p=40683',0,'revision','',0),(40686,3,'2024-09-18 10:29:58','2024-09-18 10:29:58','','The Foot Posture Index','','inherit','closed','closed','','40282-revision-v1','','','2024-09-18 10:29:58','2024-09-18 10:29:58','',40282,'https://biomechanicseducation.com/?p=40686',0,'revision','',0),(40687,3,'2024-09-18 10:34:52','2024-09-18 10:34:52','','Foot Biomechanics Made Simple','','inherit','closed','closed','','40274-revision-v1','','','2024-09-18 10:34:52','2024-09-18 10:34:52','',40274,'https://biomechanicseducation.com/?p=40687',0,'revision','',0),(40688,3,'2024-09-18 10:36:57','2024-09-18 10:36:57','','Understanding Nerves','','inherit','closed','closed','','40283-revision-v1','','','2024-09-18 10:36:57','2024-09-18 10:36:57','',40283,'https://biomechanicseducation.com/?p=40688',0,'revision','',0),(40689,3,'2024-09-18 10:40:29','2024-09-18 10:40:29','','What the hell is Functional Training anyway?','','inherit','closed','closed','','40285-revision-v1','','','2024-09-18 10:40:29','2024-09-18 10:40:29','',40285,'https://biomechanicseducation.com/?p=40689',0,'revision','',0),(40690,3,'2024-09-18 10:43:06','2024-09-18 10:43:06','','Pain Science Made Simple','','inherit','closed','closed','','40279-revision-v1','','','2024-09-18 10:43:06','2024-09-18 10:43:06','',40279,'https://biomechanicseducation.com/?p=40690',0,'revision','',0),(40691,3,'2024-09-18 10:45:38','2024-09-18 10:45:38','','Weak Glutes Webinar','','inherit','closed','closed','','40284-revision-v1','','','2024-09-18 10:45:38','2024-09-18 10:45:38','',40284,'https://biomechanicseducation.com/?p=40691',0,'revision','',0),(40692,3,'2024-09-18 11:15:09','2024-09-18 11:15:09','','Practical Anatomy Series','','inherit','closed','closed','','40280-revision-v1','','','2024-09-18 11:15:09','2024-09-18 11:15:09','',40280,'https://biomechanicseducation.com/?p=40692',0,'revision','',0),(40693,3,'2024-09-18 11:18:52','2024-09-18 11:18:52','','Fundamental Principles of Movement','','inherit','closed','closed','','40275-revision-v1','','','2024-09-18 11:18:52','2024-09-18 11:18:52','',40275,'https://biomechanicseducation.com/?p=40693',0,'revision','',0),(40694,3,'2024-09-18 11:22:00','2024-09-18 11:22:00','','Introduction to Intrinsic Biomechanics','','inherit','closed','closed','','40278-revision-v1','','','2024-09-18 11:22:00','2024-09-18 11:22:00','',40278,'https://biomechanicseducation.com/?p=40694',0,'revision','',0),(40695,3,'2024-09-18 11:24:09','2024-09-18 11:24:09','','iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2024-09-18 11:24:09','2024-09-18 11:24:09','',40277,'https://biomechanicseducation.com/?p=40695',0,'revision','',0),(40696,3,'2024-09-18 11:26:05','2024-09-18 11:26:05','','Running Biomechanics','','inherit','closed','closed','','40281-revision-v1','','','2024-09-18 11:26:05','2024-09-18 11:26:05','',40281,'https://biomechanicseducation.com/?p=40696',0,'revision','',0),(40697,3,'2024-09-18 11:27:56','2024-09-18 11:27:56','','Core Training','','inherit','closed','closed','','40272-revision-v1','','','2024-09-18 11:27:56','2024-09-18 11:27:56','',40272,'https://biomechanicseducation.com/?p=40697',0,'revision','',0),(40698,3,'2024-09-18 11:30:43','2024-09-18 11:30:43','','Coaching Fitness Online','','inherit','closed','closed','','40271-revision-v1','','','2024-09-18 11:30:43','2024-09-18 11:30:43','',40271,'https://biomechanicseducation.com/?p=40698',0,'revision','',0),(40699,3,'2024-09-18 11:32:15','2024-09-18 11:32:15','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-18 11:32:15','2024-09-18 11:32:15','',40270,'https://biomechanicseducation.com/?p=40699',0,'revision','',0),(40700,3,'2024-09-18 11:35:36','2024-09-18 11:35:36','','Behaviour Change Coaching','','inherit','closed','closed','','40263-revision-v1','','','2024-09-18 11:35:36','2024-09-18 11:35:36','',40263,'https://biomechanicseducation.com/?p=40700',0,'revision','',0),(40701,3,'2024-09-18 11:37:46','2024-09-18 11:37:46','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-18 11:37:46','2024-09-18 11:37:46','',40286,'https://biomechanicseducation.com/?p=40701',0,'revision','',0),(40702,3,'2024-09-18 11:43:09','2024-09-18 11:43:09','','Introduction to Intrinsic Biomechanics','','inherit','closed','closed','','40278-revision-v1','','','2024-09-18 11:43:09','2024-09-18 11:43:09','',40278,'https://biomechanicseducation.com/?p=40702',0,'revision','',0),(40703,3,'2024-09-18 11:44:22','2024-09-18 11:44:22','','Running Biomechanics','','inherit','closed','closed','','40281-revision-v1','','','2024-09-18 11:44:22','2024-09-18 11:44:22','',40281,'https://biomechanicseducation.com/?p=40703',0,'revision','',0),(40704,3,'2024-09-18 11:45:57','2024-09-18 11:45:57','','Fundamental Principles of Movement','','inherit','closed','closed','','40275-revision-v1','','','2024-09-18 11:45:57','2024-09-18 11:45:57','',40275,'https://biomechanicseducation.com/?p=40704',0,'revision','',0),(40705,3,'2024-09-18 11:47:41','2024-09-18 11:47:41','','Practical Anatomy Series','','inherit','closed','closed','','40280-revision-v1','','','2024-09-18 11:47:41','2024-09-18 11:47:41','',40280,'https://biomechanicseducation.com/?p=40705',0,'revision','',0),(40706,3,'2024-09-18 11:48:03','2024-09-18 11:48:03','','Running Biomechanics','','inherit','closed','closed','','40281-revision-v1','','','2024-09-18 11:48:03','2024-09-18 11:48:03','',40281,'https://biomechanicseducation.com/?p=40706',0,'revision','',0),(40707,3,'2024-09-18 11:56:22','2024-09-18 11:56:22','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-09-18 11:56:22','2024-09-18 11:56:22','',39066,'https://biomechanicseducation.com/?p=40707',0,'revision','',0),(40708,3,'2024-09-18 11:57:19','2024-09-18 11:57:19','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-09-18 11:57:19','2024-09-18 11:57:19','',39066,'https://biomechanicseducation.com/?p=40708',0,'revision','',0),(40709,3,'2024-09-18 11:59:10','2024-09-18 11:59:10','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-09-18 11:59:10','2024-09-18 11:59:10','',39066,'https://biomechanicseducation.com/?p=40709',0,'revision','',0),(40710,3,'2024-09-18 11:59:36','2024-09-18 11:59:36','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-09-18 11:59:36','2024-09-18 11:59:36','',39066,'https://biomechanicseducation.com/?p=40710',0,'revision','',0),(40711,3,'2024-09-18 12:49:39','2024-09-18 12:49:39','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-18 12:49:39','2024-09-18 12:49:39','',39148,'https://biomechanicseducation.com/?p=40711',0,'revision','',0),(40712,3,'2024-09-18 12:49:58','2024-09-18 12:49:58','','Getting Started','','inherit','closed','closed','','39148-revision-v1','','','2024-09-18 12:49:58','2024-09-18 12:49:58','',39148,'https://biomechanicseducation.com/?p=40712',0,'revision','',0),(40713,3,'2024-09-18 12:51:44','2024-09-18 12:51:44','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-18 12:51:44','2024-09-18 12:51:44','',39214,'https://biomechanicseducation.com/?p=40713',0,'revision','',0),(40714,3,'2024-09-18 12:53:19','2024-09-18 12:53:19','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-18 12:53:19','2024-09-18 12:53:19','',39214,'https://biomechanicseducation.com/?p=40714',0,'revision','',0),(40715,3,'2024-09-18 12:54:08','2024-09-18 12:54:08','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-18 12:54:08','2024-09-18 12:54:08','',39214,'https://biomechanicseducation.com/?p=40715',0,'revision','',0),(40716,3,'2024-09-18 12:56:58','2024-09-18 12:56:58','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-18 12:56:58','2024-09-18 12:56:58','',39231,'https://biomechanicseducation.com/?p=40716',0,'revision','',0),(40717,3,'2024-09-18 12:57:25','2024-09-18 12:57:25','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-18 12:57:25','2024-09-18 12:57:25','',39238,'https://biomechanicseducation.com/?p=40717',0,'revision','',0),(40718,3,'2024-09-18 12:59:49','2024-09-18 12:59:49','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-09-18 12:59:49','2024-09-18 12:59:49','',39245,'https://biomechanicseducation.com/?p=40718',0,'revision','',0),(40719,3,'2024-09-18 13:00:12','2024-09-18 13:00:12','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-09-18 13:00:12','2024-09-18 13:00:12','',39245,'https://biomechanicseducation.com/?p=40719',0,'revision','',0),(40721,15,'2024-09-18 13:00:49','2024-09-18 13:00:49','','Thank You','','inherit','closed','closed','','40321-revision-v1','','','2024-09-18 13:00:49','2024-09-18 13:00:49','',40321,'https://biomechanicseducation.com/?p=40721',0,'revision','',0),(40722,3,'2024-09-18 13:00:53','2024-09-18 13:00:53','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-09-18 13:00:53','2024-09-18 13:00:53','',39245,'https://biomechanicseducation.com/?p=40722',0,'revision','',0),(40723,3,'2024-09-18 13:01:42','2024-09-18 13:01:42','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-18 13:01:42','2024-09-18 13:01:42','',39231,'https://biomechanicseducation.com/?p=40723',0,'revision','',0),(40724,3,'2024-09-18 13:02:37','2024-09-18 13:02:37','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-18 13:02:37','2024-09-18 13:02:37','',39238,'https://biomechanicseducation.com/?p=40724',0,'revision','',0),(40726,15,'2024-09-18 13:03:00','2024-09-18 13:03:00','','Thank You','','inherit','closed','closed','','40321-revision-v1','','','2024-09-18 13:03:00','2024-09-18 13:03:00','',40321,'https://biomechanicseducation.com/?p=40726',0,'revision','',0),(40727,3,'2024-09-18 13:03:43','2024-09-18 13:03:43','','Biomechanics and Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2024-09-18 13:03:43','2024-09-18 13:03:43','',39249,'https://biomechanicseducation.com/?p=40727',0,'revision','',0),(40729,3,'2024-09-18 13:04:35','2024-09-18 13:04:35','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-09-18 13:04:35','2024-09-18 13:04:35','',39254,'https://biomechanicseducation.com/?p=40729',0,'revision','',0),(40730,3,'2024-09-18 13:05:29','2024-09-18 13:05:29','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-09-18 13:05:29','2024-09-18 13:05:29','',39263,'https://biomechanicseducation.com/?p=40730',0,'revision','',0),(40732,3,'2024-09-18 13:13:16','2024-09-18 13:13:16','','Terms & Conditions','','publish','closed','closed','','terms-conditions','','','2024-09-18 13:25:23','2024-09-18 13:25:23','',0,'https://biomechanicseducation.com/?page_id=40732',0,'page','',0),(40733,3,'2024-09-18 13:13:16','2024-09-18 13:13:16','','Terms & Conditions','','inherit','closed','closed','','40732-revision-v1','','','2024-09-18 13:13:16','2024-09-18 13:13:16','',40732,'https://biomechanicseducation.com/?p=40733',0,'revision','',0),(40734,3,'2024-09-18 13:17:15','2024-09-18 13:17:15',' ','','','publish','closed','closed','','40734','','','2024-09-18 13:17:15','2024-09-18 13:17:15','',0,'https://biomechanicseducation.com/?p=40734',1,'nav_menu_item','',0),(40735,3,'2024-09-18 13:17:15','2024-09-18 13:17:15',' ','','','publish','closed','closed','','40735','','','2024-09-18 13:17:15','2024-09-18 13:17:15','',0,'https://biomechanicseducation.com/?p=40735',2,'nav_menu_item','',0),(40736,3,'2024-09-18 13:18:50','2024-09-18 13:18:50','','Terms & Conditions Biomechanics Education_May 2024_v2','','inherit','closed','closed','','terms-conditions-biomechanics-education_may-2024_v2','','','2024-09-18 13:18:50','2024-09-18 13:18:50','',40732,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Terms-Conditions-Biomechanics-Education_May-2024_v2.pdf',0,'attachment','application/pdf',0),(40737,3,'2024-09-18 13:19:04','2024-09-18 13:19:04','','Terms & Conditions','','inherit','closed','closed','','40732-revision-v1','','','2024-09-18 13:19:04','2024-09-18 13:19:04','',40732,'https://biomechanicseducation.com/?p=40737',0,'revision','',0),(40739,3,'2024-09-18 13:25:23','2024-09-18 13:25:23','','Terms & Conditions','','inherit','closed','closed','','40732-revision-v1','','','2024-09-18 13:25:23','2024-09-18 13:25:23','',40732,'https://biomechanicseducation.com/?p=40739',0,'revision','',0),(40743,3,'2024-09-18 13:38:23','2024-09-18 13:38:23','<strong>IBA Registered Biomechanics Coach</strong>\r\nL4 Personal Trainer, Pilates &amp; group fitness instructor','Sara Spary','','publish','closed','closed','','sara-spary','','','2025-02-11 16:51:07','2025-02-11 16:51:07','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40743',0,'venue','',0),(40744,3,'2024-09-18 13:38:34','2024-09-18 13:38:34','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-18 13:38:34','2024-09-18 13:38:34','',39493,'https://biomechanicseducation.com/?p=40744',0,'revision','',0),(40745,3,'2024-09-18 13:38:51','2024-09-18 13:38:51','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-18 13:38:51','2024-09-18 13:38:51','',39493,'https://biomechanicseducation.com/?p=40745',0,'revision','',0),(40746,3,'2024-09-18 13:43:10','2024-09-18 13:43:10','<strong>Biomechanics Coach</strong>\r\nL4 Personal trainer, Bootcamp Instructor, Tai Chi Instructor','Paul Collins','','publish','closed','closed','','paul-collins-biomechanics-coach-l4-personal-trainer-bootcamp-instructor-tai-chi-instructor','','','2025-02-11 16:50:55','2025-02-11 16:50:55','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40746',0,'venue','',0),(40747,3,'2024-09-18 13:46:41','2024-09-18 13:46:41','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-18 13:46:41','2024-09-18 13:46:41','',39493,'https://biomechanicseducation.com/?p=40747',0,'revision','',0),(40748,3,'2024-09-18 13:46:59','2024-09-18 13:46:59','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-18 13:46:59','2024-09-18 13:46:59','',39493,'https://biomechanicseducation.com/?p=40748',0,'revision','',0),(40749,3,'2024-09-18 13:47:21','2024-09-18 13:47:21','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-18 13:47:21','2024-09-18 13:47:21','',39493,'https://biomechanicseducation.com/?p=40749',0,'revision','',0),(40750,3,'2024-09-18 13:49:25','2024-09-18 13:49:25','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-18 13:49:25','2024-09-18 13:49:25','',39493,'https://biomechanicseducation.com/?p=40750',0,'revision','',0),(40751,3,'2024-09-18 13:51:55','2024-09-18 13:51:55','<strong>IBA registered Biomechanics Coach</strong>\r\nPilates Instructor','Gemma Carpenter','','publish','closed','closed','','gemma-carpenter-iba-registered-biomechanics-coach-pilates','','','2025-02-11 16:50:39','2025-02-11 16:50:39','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40751',0,'venue','',0),(40752,3,'2024-09-18 13:53:33','2024-09-18 13:53:33','<strong>IBA registered Biomechanics Coach</strong>\r\nApprentice Master Trainer, L3 Personal Trainer','Dean Connolly','','publish','closed','closed','','dean-connolly-iba-registered-biomechanics-coach-apprentice-master-trainer-l3-personal-trainer','','','2025-02-11 16:50:09','2025-02-11 16:50:09','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40752',0,'venue','',0),(40753,3,'2024-09-18 13:54:55','2024-09-18 13:54:55','<strong>IBA registered Biomechanics Coach</strong>\r\nINNER CIRCLE Master Trainer','Thomas Waldron','','publish','closed','closed','','thomas-waldron-inner-circle-master-trainer-iba-registered-biomechanics-coach','','','2025-02-11 16:49:52','2025-02-11 16:49:52','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40753',0,'venue','',0),(40754,3,'2024-09-18 13:56:08','2024-09-18 13:56:08','<strong>IBA Registered Biomechanics Coach</strong>','Vanessa Busek','','publish','closed','closed','','vanessa-busek-iba-registered-biomechanics-coach','','','2025-02-11 16:49:36','2025-02-11 16:49:36','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40754',0,'venue','',0),(40755,3,'2024-09-18 13:57:58','2024-09-18 13:57:58','<strong>IBA registered Biomechanics Coach</strong>\r\nPersonal Trainer','Jason Howard','','publish','closed','closed','','jason-howard-iba-registered-biomechanics-coach-personal-trainer','','','2025-02-11 16:49:24','2025-02-11 16:49:24','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40755',0,'venue','',0),(40756,3,'2024-09-18 13:58:57','2024-09-18 13:58:57','<strong>IBA registered Biomechanics Coach</strong>\r\nPersonal Trainer, Pilates Instructor','Debbie Wyer','','publish','closed','closed','','debbie-wyer-iba-registered-biomechanics-coach-personal-trainer-pilates-instructor','','','2025-02-11 16:42:56','2025-02-11 16:42:56','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40756',0,'venue','',0),(40757,3,'2024-09-18 13:59:52','2024-09-18 13:59:52','<strong>IBA Registered Biomechanics Coach</strong>\r\nSF Personal Trainer London LTD','Matt McEligott','','publish','closed','closed','','matt-mceligott-iba-registered-biomechanics-coach-sf-personal-trainer-london-ltd','','','2025-02-11 16:41:12','2025-02-11 16:41:12','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40757',0,'venue','',0),(40758,3,'2024-09-18 14:00:55','2024-09-18 14:00:55','<strong>Biomechanics Coach</strong>\r\nPersonal Trainer','Lisle Pugh','','publish','closed','closed','','lisle-pugh-biomechanics-coach-personal-trainer','','','2025-02-11 16:40:50','2025-02-11 16:40:50','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40758',0,'venue','',0),(40759,3,'2024-09-18 14:01:49','2024-09-18 14:01:49','<strong>IBA registered Specialist Biomechanics Coach</strong>\r\nAdvanced PT L4 Lower Back Health, Sports massage, kinesiology taping','Sharon Clare','','publish','closed','closed','','sharon-clare-iba-registered-specialist-biomechanics-coach-advanced-pt-l4-lower-back-health-sports-massage-kinesiology-taping','','','2025-02-11 16:38:53','2025-02-11 16:38:53','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40759',0,'venue','',0),(40760,3,'2024-09-18 14:03:19','2024-09-18 14:03:19','<strong>IBA Registered Biomechanics Coach</strong>\r\nHealth Improvement &amp; Equestrian Coach','Heather Lilley','','publish','closed','closed','','heather-lilley-iba-registered-biomechanics-coach-health-improvement-equestrian-coac','','','2025-02-11 16:38:38','2025-02-11 16:38:38','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40760',0,'venue','',0),(40761,3,'2024-09-18 14:04:05','2024-09-18 14:04:05','<strong>IBA Registered Biomechanics Coach</strong>\r\nPersonal Trainer, Pilates &amp; Water Specialist.','Izzie Pilkington','','publish','closed','closed','','izzie-pilkington-iba-registered-biomechanics-coach-pt-pilates-water-specialist','','','2025-02-11 16:37:53','2025-02-11 16:37:53','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40761',0,'venue','',0),(40762,3,'2024-09-18 14:05:08','2024-09-18 14:05:08','<strong>IBA Registered Specialist Biomechanics Coach</strong>\r\nINNER CIRCLE Master Trainer\r\nOsteopath','Mike Grice','','publish','closed','closed','','mike-grice-inner-circle-master-trainer-iba-registered-specialist-biomechanics-coach-osteopath','','','2025-02-11 16:37:33','2025-02-11 16:37:33','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40762',0,'venue','',0),(40763,3,'2024-09-18 14:06:27','2024-09-18 14:06:27','<strong>IBA registered Biomechanics Coach</strong>\r\nPilates Instructor','Jenny Dudfield','','publish','closed','closed','','jenny-dudfield-iba-registered-biomechanics-coach-pilates-instructor','','','2025-02-11 16:37:09','2025-02-11 16:37:09','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40763',0,'venue','',0),(40764,3,'2024-09-18 14:07:16','2024-09-18 14:07:16','<strong>Managing Director, Master Trainer</strong>\r\n<strong>IBA Registered Specialist Biomechanics Coach</strong>\r\nStrength Coach, Soft Tissue Therapist','Rachel Frances Thomson','','publish','closed','closed','','rachel-frances-thomson-managing-director-master-trainer-iba-registered-specialist-biomechanics-coach-strength-coach-soft-tissue-therapist','','','2025-02-11 16:36:56','2025-02-11 16:36:56','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40764',0,'venue','',0),(40765,3,'2024-09-18 14:08:31','2024-09-18 14:08:31','<strong>IBA Registered Specialist Biomechanics Coach</strong>\r\nINNER CIRCLE Master Trainer\r\nEquipilates MD','Lindsay Wilcox-Reid','','publish','closed','closed','','lindsay-wilcox-reid-inner-circle-master-trainer-iba-registered-specialist-biomechanics-coach-equipilates-md','','','2025-02-11 16:36:24','2025-02-11 16:36:24','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40765',0,'venue','',0),(40766,3,'2024-09-18 14:09:53','2024-09-18 14:09:53','<strong> IBA Registered Specialist Biomechanics Coach</strong>\r\nINNER CIRCLE Master Trainer','Wendy Arthan','','publish','closed','closed','','wendy-arthan-inner-circle-master-trainer-iba-registered-specialist-biomechanics-coach','','','2025-02-11 16:34:08','2025-02-11 16:34:08','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40766',0,'venue','',0),(40767,3,'2024-09-18 14:10:38','2024-09-18 14:10:38','<strong>IBA Registered Biomechanics Coach </strong>\r\nStrength &amp; Conditioning Coach, Personal Trainer, Football &amp; Rugby Coach','Chris Honor','','publish','closed','closed','','chris-honor-iba-registered-biomechanics-coach-strength-conditioning-coach-personal-trainer-football-rugby-coach','','','2025-02-11 16:33:20','2025-02-11 16:33:20','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40767',0,'venue','',0),(40768,3,'2024-09-18 14:11:19','2024-09-18 14:11:19','<strong>Biomechanics Coach </strong>\r\nPersonal Trainer, Pilates Instructor','Leah Clyne','','publish','closed','closed','','leah-clyne-biomechanics-coach-personal-trainer-pilates-instructor','','','2025-02-11 16:33:05','2025-02-11 16:33:05','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40768',0,'venue','',0),(40769,3,'2024-09-18 14:12:24','2024-09-18 14:12:24','<strong>L4 Specialist Biomechanics Coach</strong>','Niall Collins','','publish','closed','closed','','niall-collins-l4-specialist-biomechanics-coach','','','2025-02-11 16:32:52','2025-02-11 16:32:52','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40769',0,'venue','',0),(40770,3,'2024-09-18 14:13:24','2024-09-18 14:13:24','<strong>Master Trainer IBA Registered Biomechanics Coach</strong>','Kim Tomlin','','publish','closed','closed','','kim-tomlin-master-trainer-iba-registered-biomechanics-coach','','','2025-02-11 16:32:42','2025-02-11 16:32:42','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40770',0,'venue','',0),(40771,3,'2024-09-18 14:14:43','2024-09-18 14:14:43','<strong>IBA registered Biomechanics Coach</strong>\r\nPilates &amp; Yoga Teacher','Amanda Swallow','','publish','closed','closed','','amanda-swallow-iba-registered-biomechanics-coach-pilates-yoga-teacher','','','2025-02-11 16:32:28','2025-02-11 16:32:28','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40771',0,'venue','',0),(40772,3,'2024-09-18 14:15:21','2024-09-18 14:15:21','<strong>IBA registered Biomechanics Coach</strong>','Christine Buckley','','publish','closed','closed','','christine-buckley-iba-registered-biomechanics-coach','','','2025-02-11 16:32:14','2025-02-11 16:32:14','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40772',0,'venue','',0),(40773,3,'2024-09-18 14:16:32','2024-09-18 14:16:32','<strong>IBA Registered Biomechanics Coach</strong>\r\nWellbeing Coach','Sue Hardaker','','publish','closed','closed','','sue-hardaker-iba-registered-biomechanics-coach-wellbeing-coach','','','2025-02-11 16:32:02','2025-02-11 16:32:02','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40773',0,'venue','',0),(40774,3,'2024-09-18 14:17:44','2024-09-18 14:17:44','<strong>IBA registered Biomechanics Coach</strong>\r\nL3 Personal Trainer Pilates Teacher','Karen Lillie','','publish','closed','closed','','karen-lillie-iba-registered-biomechanics-coach-l3-personal-trainer-pilates-teacher','','','2025-02-11 16:31:11','2025-02-11 16:31:11','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40774',0,'venue','',0),(40775,3,'2024-09-18 14:18:37','2024-09-18 14:18:37','<strong>IBA Registered Biomechanics Coach</strong>\r\nPilates, Fitness and Gymnastics','Maria Buick','','publish','closed','closed','','maria-buick-iba-registered-biomechanics-coach-pilates-fitness-and-gymnastics','','','2025-02-11 16:29:56','2025-02-11 16:29:56','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40775',0,'venue','',0),(40776,3,'2024-09-18 14:19:53','2024-09-18 14:19:53','<strong>IBA Registered Specialist Biomechanics Coach</strong>\r\nPersonal Trainer','Lorna Wilson','','publish','closed','closed','','lorna-wilson-iba-registered-specialist-biomechanics-coach-personal-trainer','','','2025-02-11 16:29:54','2025-02-11 16:29:54','',0,'https://biomechanicseducation.com/?post_type=venue&#038;p=40776',0,'venue','',0),(40778,3,'2024-09-19 10:27:09','2024-09-19 10:27:09','','Biomechanics Coach Course','','publish','closed','closed','','biomechanics-coach-course','','','2025-03-14 09:22:44','2025-03-14 09:22:44','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40778',0,'course','',0),(40779,3,'2024-09-19 12:28:24','2024-09-19 12:28:24','','IMoveFreely Instructor programme workshop','','publish','closed','closed','','imovefreely-instructor-programme-workshop','','','2025-02-19 10:17:10','2025-02-19 10:17:10','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40779',0,'course','',0),(40780,3,'2024-09-19 08:39:50','2024-09-19 08:39:50','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','publish','closed','closed','','level-4-personal-trainer-course','','','2025-03-14 09:23:23','2025-03-14 09:23:23','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40780',0,'course','',0),(40781,3,'2024-09-19 10:59:14','2024-09-19 10:59:14','','Running Biomechanics Workshop','','publish','closed','closed','','running-biomechanics-workshop','','','2024-09-19 12:44:39','2024-09-19 12:44:39','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=40781',0,'course','',0),(40782,3,'2024-09-19 08:39:29','2024-09-19 08:39:29','','Level 4 pt course hero iamge','','inherit','closed','closed','','level-4-pt-course-hero-iamge','','','2024-09-19 08:39:29','2024-09-19 08:39:29','',40780,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Level-4-pt-course-hero-iamge.jpg',0,'attachment','image/jpeg',0),(40783,3,'2024-09-19 08:39:50','2024-09-19 08:39:50','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:39:50','2024-09-19 08:39:50','',40780,'https://biomechanicseducation.com/?p=40783',0,'revision','',0),(40785,3,'2024-09-19 08:42:27','2024-09-19 08:42:27','','Level 4 PT 50.50 IMAGE','','inherit','closed','closed','','level-4-pt-50-50-image-2','','','2024-09-19 08:42:27','2024-09-19 08:42:27','',40780,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Level-4-PT-50.50-IMAGE.webp',0,'attachment','image/webp',0),(40786,3,'2024-09-19 08:44:17','2024-09-19 08:44:17','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:44:17','2024-09-19 08:44:17','',40780,'https://biomechanicseducation.com/?p=40786',0,'revision','',0),(40787,3,'2024-09-19 08:44:56','2024-09-19 08:44:56','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:44:56','2024-09-19 08:44:56','',40780,'https://biomechanicseducation.com/?p=40787',0,'revision','',0),(40788,3,'2024-09-19 08:47:14','2024-09-19 08:47:14','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:47:14','2024-09-19 08:47:14','',40780,'https://biomechanicseducation.com/?p=40788',0,'revision','',0),(40789,3,'2024-09-19 08:47:35','2024-09-19 08:47:35','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:47:35','2024-09-19 08:47:35','',40780,'https://biomechanicseducation.com/?p=40789',0,'revision','',0),(40790,3,'2024-09-19 08:51:56','2024-09-19 08:51:56','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:51:56','2024-09-19 08:51:56','',40780,'https://biomechanicseducation.com/?p=40790',0,'revision','',0),(40791,3,'2024-09-19 08:52:51','2024-09-19 08:52:51','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:52:51','2024-09-19 08:52:51','',40780,'https://biomechanicseducation.com/?p=40791',0,'revision','',0),(40792,3,'2024-09-19 08:53:23','2024-09-19 08:53:23','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:53:23','2024-09-19 08:53:23','',40780,'https://biomechanicseducation.com/?p=40792',0,'revision','',0),(40793,3,'2024-09-19 08:53:51','2024-09-19 08:53:51','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:53:51','2024-09-19 08:53:51','',40780,'https://biomechanicseducation.com/?p=40793',0,'revision','',0),(40794,3,'2024-09-19 08:55:34','2024-09-19 08:55:34','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:55:34','2024-09-19 08:55:34','',40780,'https://biomechanicseducation.com/?p=40794',0,'revision','',0),(40795,3,'2024-09-19 08:56:05','2024-09-19 08:56:05','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:56:05','2024-09-19 08:56:05','',40780,'https://biomechanicseducation.com/?p=40795',0,'revision','',0),(40796,3,'2024-09-19 08:56:27','2024-09-19 08:56:27','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:56:27','2024-09-19 08:56:27','',40780,'https://biomechanicseducation.com/?p=40796',0,'revision','',0),(40797,3,'2024-09-19 08:56:46','2024-09-19 08:56:46','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:56:46','2024-09-19 08:56:46','',40780,'https://biomechanicseducation.com/?p=40797',0,'revision','',0),(40798,3,'2024-09-19 08:59:24','2024-09-19 08:59:24','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 08:59:24','2024-09-19 08:59:24','',40780,'https://biomechanicseducation.com/?p=40798',0,'revision','',0),(40799,3,'2024-09-19 09:03:50','2024-09-19 09:03:50','','What\'s included pt 4 50.50','','inherit','closed','closed','','parisfrance-jun62019manreadingonapple','','','2024-09-19 09:04:01','2024-09-19 09:04:01','',40780,'https://biomechanicseducation.com/wp-content/uploads/2024/09/shutterstock_1454913377.jpg',0,'attachment','image/jpeg',0),(40800,3,'2024-09-19 09:04:08','2024-09-19 09:04:08','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:04:08','2024-09-19 09:04:08','',40780,'https://biomechanicseducation.com/?p=40800',0,'revision','',0),(40801,3,'2024-09-19 09:05:38','2024-09-19 09:05:38','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:05:38','2024-09-19 09:05:38','',40780,'https://biomechanicseducation.com/?p=40801',0,'revision','',0),(40802,3,'2024-09-19 09:07:04','2024-09-19 09:07:04','','Fees and Funding icon set without add to basket','','publish','closed','closed','','39401-copy','','','2024-09-19 09:07:29','2024-09-19 09:07:29','',0,'https://biomechanicseducation.com/?template=39401-copy',0,'template','',0),(40803,3,'2024-09-19 09:07:49','2024-09-19 09:07:49','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:07:49','2024-09-19 09:07:49','',40780,'https://biomechanicseducation.com/?p=40803',0,'revision','',0),(40804,3,'2024-09-19 09:08:15','2024-09-19 09:08:15','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:08:15','2024-09-19 09:08:15','',40780,'https://biomechanicseducation.com/?p=40804',0,'revision','',0),(40805,3,'2024-09-19 09:11:30','2024-09-19 09:11:30','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:11:30','2024-09-19 09:11:30','',40780,'https://biomechanicseducation.com/?p=40805',0,'revision','',0),(40806,3,'2024-09-19 09:11:43','2024-09-19 09:11:43','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:11:43','2024-09-19 09:11:43','',40780,'https://biomechanicseducation.com/?p=40806',0,'revision','',0),(40807,3,'2024-09-19 09:12:22','2024-09-19 09:12:22','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:12:22','2024-09-19 09:12:22','',40780,'https://biomechanicseducation.com/?p=40807',0,'revision','',0),(40808,3,'2024-09-19 09:12:38','2024-09-19 09:12:38','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:12:38','2024-09-19 09:12:38','',40780,'https://biomechanicseducation.com/?p=40808',0,'revision','',0),(40809,3,'2024-09-19 09:13:11','2024-09-19 09:13:11','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:13:11','2024-09-19 09:13:11','',40780,'https://biomechanicseducation.com/?p=40809',0,'revision','',0),(40810,3,'2024-09-19 09:14:36','2024-09-19 09:14:36','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:14:36','2024-09-19 09:14:36','',40780,'https://biomechanicseducation.com/?p=40810',0,'revision','',0),(40811,3,'2024-09-19 09:15:05','2024-09-19 09:15:05','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:15:05','2024-09-19 09:15:05','',40780,'https://biomechanicseducation.com/?p=40811',0,'revision','',0),(40812,3,'2024-09-19 09:16:19','2024-09-19 09:16:19','','Level 4 PT 50.50 3 IMAGE','','inherit','closed','closed','','level-4-pt-50-50-3-image','','','2024-09-19 09:16:19','2024-09-19 09:16:19','',40780,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Level-4-PT-50.50-3-IMAGE.webp',0,'attachment','image/webp',0),(40813,3,'2024-09-19 09:16:31','2024-09-19 09:16:31','','Level 4 Personal Trainer Course','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:16:31','2024-09-19 09:16:31','',40780,'https://biomechanicseducation.com/?p=40813',0,'revision','',0),(40815,3,'2024-09-19 09:43:20','2024-09-19 09:43:20','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:43:20','2024-09-19 09:43:20','',40780,'https://biomechanicseducation.com/?p=40815',0,'revision','',0),(40816,3,'2024-09-19 09:50:30','2024-09-19 09:50:30','','Joseph Bleetman','','publish','closed','closed','','joseph-bleetman','','','2025-02-10 11:44:12','2025-02-10 11:44:12','',0,'https://biomechanicseducation.com/?post_type=testimonial&#038;p=40816',0,'testimonial','',0),(40817,3,'2024-09-19 09:46:39','2024-09-19 09:46:39','','LVL 4 PT BIOMECHANICS 50.50 1','','inherit','closed','closed','','lvl-4-pt-biomechanics-50-50-1','','','2024-09-19 09:46:39','2024-09-19 09:46:39','',40780,'https://biomechanicseducation.com/wp-content/uploads/2024/09/LVL-4-PT-BIOMECHANICS-50.50-1.jpg',0,'attachment','image/jpeg',0),(40818,3,'2024-09-19 09:46:48','2024-09-19 09:46:48','','BE_Tom_Joseph_Rachel- 17','','inherit','closed','closed','','be_tom_joseph_rachel-17-2','','','2024-09-19 09:46:48','2024-09-19 09:46:48','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-17-1.jpg',0,'attachment','image/jpeg',0),(40819,3,'2024-09-19 09:46:59','2024-09-19 09:46:59','','BE_Tom_Joseph_Rachel- 18','','inherit','closed','closed','','be_tom_joseph_rachel-18','','','2024-09-19 09:46:59','2024-09-19 09:46:59','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-18.jpg',0,'attachment','image/jpeg',0),(40820,3,'2024-09-19 09:47:12','2024-09-19 09:47:12','','BE_Tom_Joseph_Rachel- 19','','inherit','closed','closed','','be_tom_joseph_rachel-19','','','2024-09-19 09:47:12','2024-09-19 09:47:12','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-19.jpg',0,'attachment','image/jpeg',0),(40821,3,'2024-09-19 09:47:22','2024-09-19 09:47:22','','BE_Tom_Joseph_Rachel- 20','','inherit','closed','closed','','be_tom_joseph_rachel-20','','','2024-09-19 09:47:22','2024-09-19 09:47:22','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-20.jpg',0,'attachment','image/jpeg',0),(40822,3,'2024-09-19 09:47:34','2024-09-19 09:47:34','','BE_Tom_Joseph_Rachel- 21','','inherit','closed','closed','','be_tom_joseph_rachel-21','','','2024-09-19 09:47:34','2024-09-19 09:47:34','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-21.jpg',0,'attachment','image/jpeg',0),(40823,3,'2024-09-19 09:47:45','2024-09-19 09:47:45','','BE_Tom_Joseph_Rachel- 22','','inherit','closed','closed','','be_tom_joseph_rachel-22','','','2024-09-19 09:47:45','2024-09-19 09:47:45','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-22.jpg',0,'attachment','image/jpeg',0),(40824,3,'2024-09-19 09:47:56','2024-09-19 09:47:56','','BE_Tom_Joseph_Rachel- 23','','inherit','closed','closed','','be_tom_joseph_rachel-23','','','2024-09-19 09:47:56','2024-09-19 09:47:56','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-23.jpg',0,'attachment','image/jpeg',0),(40825,3,'2024-09-19 09:48:08','2024-09-19 09:48:08','','BE_Tom_Joseph_Rachel- 1','','inherit','closed','closed','','be_tom_joseph_rachel-1','','','2024-09-19 09:48:08','2024-09-19 09:48:08','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-1.jpg',0,'attachment','image/jpeg',0),(40826,3,'2024-09-19 09:48:14','2024-09-19 09:48:14','','BE_Tom_Joseph_Rachel- 10','','inherit','closed','closed','','be_tom_joseph_rachel-10','','','2024-09-19 09:48:14','2024-09-19 09:48:14','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-10.jpg',0,'attachment','image/jpeg',0),(40827,3,'2024-09-19 09:48:27','2024-09-19 09:48:27','','BE_Tom_Joseph_Rachel- 11','','inherit','closed','closed','','be_tom_joseph_rachel-11','','','2024-09-19 09:48:27','2024-09-19 09:48:27','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-11.jpg',0,'attachment','image/jpeg',0),(40828,3,'2024-09-19 09:48:39','2024-09-19 09:48:39','','BE_Tom_Joseph_Rachel- 12','','inherit','closed','closed','','be_tom_joseph_rachel-12','','','2024-09-19 09:48:39','2024-09-19 09:48:39','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-12.jpg',0,'attachment','image/jpeg',0),(40829,3,'2024-09-19 09:48:51','2024-09-19 09:48:51','','BE_Tom_Joseph_Rachel- 13','','inherit','closed','closed','','be_tom_joseph_rachel-13','','','2024-09-19 09:48:51','2024-09-19 09:48:51','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-13.jpg',0,'attachment','image/jpeg',0),(40830,3,'2024-09-19 09:49:02','2024-09-19 09:49:02','','BE_Tom_Joseph_Rachel- 14','','inherit','closed','closed','','be_tom_joseph_rachel-14','','','2024-09-19 09:49:02','2024-09-19 09:49:02','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-14.jpg',0,'attachment','image/jpeg',0),(40831,3,'2024-09-19 09:49:10','2024-09-19 09:49:10','','BE_Tom_Joseph_Rachel- 9','','inherit','closed','closed','','be_tom_joseph_rachel-9','','','2024-09-19 09:49:10','2024-09-19 09:49:10','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-9.jpg',0,'attachment','image/jpeg',0),(40832,3,'2024-09-19 09:49:21','2024-09-19 09:49:21','','BE_Tom_Joseph_Rachel-','','inherit','closed','closed','','be_tom_joseph_rachel','','','2024-09-19 09:49:21','2024-09-19 09:49:21','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-.jpg',0,'attachment','image/jpeg',0),(40833,3,'2024-09-19 09:49:29','2024-09-19 09:49:29','','BE_Tom_Joseph_Rachel- 3','','inherit','closed','closed','','be_tom_joseph_rachel-3','','','2024-09-19 09:49:29','2024-09-19 09:49:29','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-3.jpg',0,'attachment','image/jpeg',0),(40834,3,'2024-09-19 09:49:36','2024-09-19 09:49:36','','BE_Tom_Joseph_Rachel- 4','','inherit','closed','closed','','be_tom_joseph_rachel-4','','','2024-09-19 09:50:04','2024-09-19 09:50:04','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-4.jpg',0,'attachment','image/jpeg',0),(40835,3,'2024-09-19 09:49:43','2024-09-19 09:49:43','','BE_Tom_Joseph_Rachel- 5','','inherit','closed','closed','','be_tom_joseph_rachel-5','','','2024-09-19 09:49:43','2024-09-19 09:49:43','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-5.jpg',0,'attachment','image/jpeg',0),(40836,3,'2024-09-19 09:49:51','2024-09-19 09:49:51','','BE_Tom_Joseph_Rachel- 6','','inherit','closed','closed','','be_tom_joseph_rachel-6','','','2024-09-19 09:49:51','2024-09-19 09:49:51','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-6.jpg',0,'attachment','image/jpeg',0),(40837,3,'2024-09-19 09:50:05','2024-09-19 09:50:05','','BE_Tom_Joseph_Rachel- 7','','inherit','closed','closed','','be_tom_joseph_rachel-7','','','2024-09-19 09:50:05','2024-09-19 09:50:05','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-7.jpg',0,'attachment','image/jpeg',0),(40838,3,'2024-09-19 09:50:17','2024-09-19 09:50:17','','BE_Tom_Joseph_Rachel- 8','','inherit','closed','closed','','be_tom_joseph_rachel-8','','','2024-09-19 09:50:17','2024-09-19 09:50:17','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-8.jpg',0,'attachment','image/jpeg',0),(40839,3,'2024-09-19 09:50:30','2024-09-19 09:50:30','','BE_Tom_Joseph_Rachel- 24','','inherit','closed','closed','','be_tom_joseph_rachel-24','','','2024-09-19 09:50:30','2024-09-19 09:50:30','',40816,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-24.jpg',0,'attachment','image/jpeg',0),(40840,3,'2024-09-19 09:52:31','2024-09-19 09:52:31','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:52:31','2024-09-19 09:52:31','',40780,'https://biomechanicseducation.com/?p=40840',0,'revision','',0),(40841,3,'2024-09-19 09:55:28','2024-09-19 09:55:28','','Milan Pun','','publish','closed','closed','','milan-pun-testimonial','','','2025-02-10 11:43:51','2025-02-10 11:43:51','',0,'https://biomechanicseducation.com/?post_type=testimonial&#038;p=40841',0,'testimonial','',0),(40842,3,'2024-09-19 09:56:08','2024-09-19 09:56:08','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 09:56:08','2024-09-19 09:56:08','',40780,'https://biomechanicseducation.com/?p=40842',0,'revision','',0),(40843,3,'2024-09-19 09:56:55','2024-09-19 09:56:55','','Anonymous feedback','','publish','closed','closed','','anonymous-testimonial-biomechanics-education','','','2024-09-23 12:03:04','2024-09-23 12:03:04','',0,'https://biomechanicseducation.com/?post_type=testimonial&#038;p=40843',0,'testimonial','',0),(40844,3,'2024-09-19 09:57:03','2024-09-19 09:57:03','','rob+rachel partnership','','inherit','closed','closed','','robrachel-partnership','','','2024-09-19 09:57:03','2024-09-19 09:57:03','',40780,'https://biomechanicseducation.com/wp-content/uploads/2024/09/robrachel-partnership.png',0,'attachment','image/png',0),(40845,3,'2024-09-19 09:58:19','2024-09-19 09:58:19','','Nichola Smith','','publish','closed','closed','','nichola-smith','','','2025-02-10 11:45:49','2025-02-10 11:45:49','',0,'https://biomechanicseducation.com/?post_type=testimonial&#038;p=40845',0,'testimonial','',0),(40846,3,'2024-09-19 09:58:24','2024-09-19 09:58:24','','','','inherit','closed','closed','','40845-autosave-v1','','','2024-09-19 09:58:24','2024-09-19 09:58:24','',40845,'https://biomechanicseducation.com/?p=40846',0,'revision','',0),(40847,3,'2024-09-19 10:01:26','2024-09-19 10:01:26','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 10:01:26','2024-09-19 10:01:26','',40780,'https://biomechanicseducation.com/?p=40847',0,'revision','',0),(40848,3,'2024-09-19 10:02:23','2024-09-19 10:02:23','','level-4-pt-bm-diploma-hero','','inherit','closed','closed','','level-4-pt-bm-diploma-hero','','','2024-09-19 10:02:23','2024-09-19 10:02:23','',40780,'https://biomechanicseducation.com/wp-content/uploads/2024/09/level-4-pt-bm-diploma-hero.jpg',0,'attachment','image/jpeg',0),(40849,3,'2024-09-19 10:02:27','2024-09-19 10:02:27','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 10:02:27','2024-09-19 10:02:27','',40780,'https://biomechanicseducation.com/?p=40849',0,'revision','',0),(40850,3,'2024-09-19 10:03:52','2024-09-19 10:03:52','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 10:03:52','2024-09-19 10:03:52','',40780,'https://biomechanicseducation.com/?p=40850',0,'revision','',0),(40851,3,'2024-09-19 10:05:30','2024-09-19 10:05:30','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 10:05:30','2024-09-19 10:05:30','',40780,'https://biomechanicseducation.com/?p=40851',0,'revision','',0),(40852,3,'2024-09-19 10:06:58','2024-09-19 10:06:58','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 10:06:58','2024-09-19 10:06:58','',40780,'https://biomechanicseducation.com/?p=40852',0,'revision','',0),(40853,3,'2024-09-19 10:07:27','2024-09-19 10:07:27','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 10:07:27','2024-09-19 10:07:27','',40780,'https://biomechanicseducation.com/?p=40853',0,'revision','',0),(40854,3,'2024-09-19 10:10:00','2024-09-19 10:10:00','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 10:10:00','2024-09-19 10:10:00','',40780,'https://biomechanicseducation.com/?p=40854',0,'revision','',0),(40855,3,'2024-09-19 10:10:15','2024-09-19 10:10:15','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 10:10:15','2024-09-19 10:10:15','',40780,'https://biomechanicseducation.com/?p=40855',0,'revision','',0),(40856,3,'2024-09-19 10:10:41','2024-09-19 10:10:41','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-19 10:10:41','2024-09-19 10:10:41','',40780,'https://biomechanicseducation.com/?p=40856',0,'revision','',0),(40858,3,'2025-04-08 11:53:54','2024-09-19 10:13:49','','Level 4 Personal Trainer & Biomechanics Diploma Bundle','','publish','closed','closed','','level-4-pt-biomechanics-diploma-bundle','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',0,'https://biomechanicseducation.com/?p=40858',3,'nav_menu_item','',0),(40859,3,'2024-09-19 10:14:35','2024-09-19 10:14:35','','getting started menu image','','inherit','closed','closed','','getting-started-menu-image','','','2024-09-19 10:15:22','2024-09-19 10:15:22','',39279,'https://biomechanicseducation.com/wp-content/uploads/2024/09/getting-started-menu-image.webp',0,'attachment','image/webp',0),(40860,3,'2024-09-19 10:16:54','2024-09-19 10:16:54','','Young,Happy,Busy,Latin,Businessman,Talking,On,Phone,Using,Laptop','','inherit','closed','closed','','younghappybusylatinbusinessmantalkingonphoneusinglaptop','','','2024-09-19 10:17:46','2024-09-19 10:17:46','',39280,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Contact-us-menu-image.jpg',0,'attachment','image/jpeg',0),(40861,3,'2024-09-19 10:23:22','2024-09-19 10:23:22','','Human,Resources,Manager,Interviewing,Female,Applicant,At,Table,In,Office','','inherit','closed','closed','','humanresourcesmanagerinterviewingfemaleapplicantattableinoffice','','','2024-09-19 10:24:15','2024-09-19 10:24:15','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Resources-menu-image.jpg',0,'attachment','image/jpeg',0),(40862,3,'2024-09-19 10:27:09','2024-09-19 10:27:09','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-09-19 10:27:09','2024-09-19 10:27:09','',40778,'https://biomechanicseducation.com/?p=40862',0,'revision','',0),(40863,3,'2024-09-19 10:28:15','2024-09-19 10:28:15','','Diploma in biomechanics hero image','','inherit','closed','closed','','diploma-in-biomechanics-hero-image','','','2024-09-19 10:28:15','2024-09-19 10:28:15','',40778,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Diploma-in-biomechanics-hero-image.jpg',0,'attachment','image/jpeg',0),(40864,3,'2024-09-19 10:30:31','2024-09-19 10:30:31','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-09-19 10:30:31','2024-09-19 10:30:31','',40778,'https://biomechanicseducation.com/?p=40864',0,'revision','',0),(40866,3,'2024-09-19 10:32:38','2024-09-19 10:32:38','','Biomechanics diploma 50.50','','inherit','closed','closed','','biomechanics-diploma-50-50','','','2024-09-19 10:32:38','2024-09-19 10:32:38','',40778,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Biomechanics-diploma-50.50.jpg',0,'attachment','image/jpeg',0),(40867,3,'2024-09-19 10:33:41','2024-09-19 10:33:41','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-09-19 10:33:41','2024-09-19 10:33:41','',40778,'https://biomechanicseducation.com/?p=40867',0,'revision','',0),(40868,3,'2024-09-19 10:34:37','2024-09-19 10:34:37','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-09-19 10:34:37','2024-09-19 10:34:37','',40778,'https://biomechanicseducation.com/?p=40868',0,'revision','',0),(40869,3,'2024-09-19 10:36:58','2024-09-19 10:36:58','','BE diploma tabs 1','','inherit','closed','closed','','be-diploma-tabs-1','','','2024-09-19 10:36:58','2024-09-19 10:36:58','',40778,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE-diploma-tabs-1.jpg',0,'attachment','image/jpeg',0),(40870,3,'2024-09-19 10:39:32','2024-09-19 10:39:32','','BE diploma tabs 2','','inherit','closed','closed','','be-diploma-tabs-2','','','2024-09-19 10:39:32','2024-09-19 10:39:32','',40778,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE-diploma-tabs-2.jpg',0,'attachment','image/jpeg',0),(40871,3,'2024-09-19 10:40:29','2024-09-19 10:40:29','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-09-19 10:40:29','2024-09-19 10:40:29','',40778,'https://biomechanicseducation.com/?p=40871',0,'revision','',0),(40872,3,'2024-09-19 10:40:44','2024-09-19 10:40:44','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-09-19 10:40:44','2024-09-19 10:40:44','',40778,'https://biomechanicseducation.com/?p=40872',0,'revision','',0),(40873,3,'2024-09-19 10:43:13','2024-09-19 10:43:13','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-09-19 10:43:13','2024-09-19 10:43:13','',40778,'https://biomechanicseducation.com/?p=40873',0,'revision','',0),(40874,3,'2024-09-19 10:44:09','2024-09-19 10:44:09','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-09-19 10:44:09','2024-09-19 10:44:09','',40778,'https://biomechanicseducation.com/?p=40874',0,'revision','',0),(40875,3,'2024-09-19 10:47:56','2024-09-19 10:47:56','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-09-19 10:47:56','2024-09-19 10:47:56','',40778,'https://biomechanicseducation.com/?p=40875',0,'revision','',0),(40876,3,'2024-09-19 10:59:14','2024-09-19 10:59:14','','Running Biomechanics Workshop','','inherit','closed','closed','','40781-revision-v1','','','2024-09-19 10:59:14','2024-09-19 10:59:14','',40781,'https://biomechanicseducation.com/?p=40876',0,'revision','',0),(40877,3,'2024-09-19 11:00:34','2024-09-19 11:00:34','','running biomechanics workshop hero image','','inherit','closed','closed','','running-biomechanics-workshop-hero-image','','','2024-09-19 11:00:34','2024-09-19 11:00:34','',40781,'https://biomechanicseducation.com/wp-content/uploads/2024/09/running-biomechanics-workshop-hero-image.jpg',0,'attachment','image/jpeg',0),(40878,3,'2024-09-19 12:07:38','2024-09-19 12:07:38','','IBA Membership','','inherit','closed','closed','','40276-revision-v1','','','2024-09-19 12:07:38','2024-09-19 12:07:38','',40276,'https://biomechanicseducation.com/?p=40878',0,'revision','',0),(40879,3,'2024-09-19 12:08:21','2024-09-19 12:08:21','','IBA Membership','','inherit','closed','closed','','40276-revision-v1','','','2024-09-19 12:08:21','2024-09-19 12:08:21','',40276,'https://biomechanicseducation.com/?p=40879',0,'revision','',0),(40881,3,'2024-09-19 12:13:13','2024-09-19 12:13:13','','Running Biomechanics Workshop','','inherit','closed','closed','','40781-revision-v1','','','2024-09-19 12:13:13','2024-09-19 12:13:13','',40781,'https://biomechanicseducation.com/?p=40881',0,'revision','',0),(40883,3,'2024-09-19 12:16:09','2024-09-19 12:16:09','','Running Biomechanics Workshop','','inherit','closed','closed','','40781-revision-v1','','','2024-09-19 12:16:09','2024-09-19 12:16:09','',40781,'https://biomechanicseducation.com/?p=40883',0,'revision','',0),(40884,3,'2024-09-19 12:18:37','2024-09-19 12:18:37','','Running Biomechanics Workshop','','inherit','closed','closed','','40781-revision-v1','','','2024-09-19 12:18:37','2024-09-19 12:18:37','',40781,'https://biomechanicseducation.com/?p=40884',0,'revision','',0),(40885,3,'2024-09-19 12:19:40','2024-09-19 12:19:40','','Running Biomechanics Workshop','','inherit','closed','closed','','40781-revision-v1','','','2024-09-19 12:19:40','2024-09-19 12:19:40','',40781,'https://biomechanicseducation.com/?p=40885',0,'revision','',0),(40886,3,'2024-09-19 12:20:11','2024-09-19 12:20:11','','Running Biomechanics Workshop','','inherit','closed','closed','','40781-revision-v1','','','2024-09-19 12:20:11','2024-09-19 12:20:11','',40781,'https://biomechanicseducation.com/?p=40886',0,'revision','',0),(40887,3,'2024-09-19 12:20:50','2024-09-19 12:20:50','','Running Biomechanics Workshop','','inherit','closed','closed','','40781-revision-v1','','','2024-09-19 12:20:50','2024-09-19 12:20:50','',40781,'https://biomechanicseducation.com/?p=40887',0,'revision','',0),(40888,3,'2024-09-19 12:21:58','2024-09-19 12:21:58','Log in at Biomechanics Education.','How to access purchases?','','publish','closed','closed','','how-to-access-purchases','','','2024-09-19 12:21:58','2024-09-19 12:21:58','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=40888',0,'faqs','',0),(40889,3,'2024-09-19 12:22:13','2024-09-19 12:22:13','Click Lost Password.','Need to reset your password?','','publish','closed','closed','','need-to-reset-your-password','','','2024-09-19 12:22:13','2024-09-19 12:22:13','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=40889',0,'faqs','',0),(40890,3,'2024-09-19 12:22:38','2024-09-19 12:22:38','Email <a href=\"mailto:rachel@biomechanicseducation.com\">rachel@biomechanicseducation.com</a> to update.','Changed your email?','','publish','closed','closed','','changed-your-email','','','2024-09-19 12:22:38','2024-09-19 12:22:38','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=40890',0,'faqs','',0),(40891,3,'2024-09-19 12:22:46','2024-09-19 12:22:46','','Running Biomechanics Workshop','','inherit','closed','closed','','40781-revision-v1','','','2024-09-19 12:22:46','2024-09-19 12:22:46','',40781,'https://biomechanicseducation.com/?p=40891',0,'revision','',0),(40892,3,'2024-09-19 12:23:16','2024-09-19 12:23:16','','Running Biomechanics Workshop','','inherit','closed','closed','','40781-revision-v1','','','2024-09-19 12:23:16','2024-09-19 12:23:16','',40781,'https://biomechanicseducation.com/?p=40892',0,'revision','',0),(40893,3,'2024-09-19 12:26:00','2024-09-19 12:26:00','','imovefreely hero image workhop','','inherit','closed','closed','','imovefreely-hero-image-workhop','','','2024-09-19 12:26:00','2024-09-19 12:26:00','',40779,'https://biomechanicseducation.com/wp-content/uploads/2024/09/imovefreely-hero-image-workhop.jpg',0,'attachment','image/jpeg',0),(40894,3,'2024-09-19 12:28:24','2024-09-19 12:28:24','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-09-19 12:28:24','2024-09-19 12:28:24','',40779,'https://biomechanicseducation.com/?p=40894',0,'revision','',0),(40895,3,'2024-09-19 12:29:36','2024-09-19 12:29:36','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-09-19 12:29:36','2024-09-19 12:29:36','',40779,'https://biomechanicseducation.com/?p=40895',0,'revision','',0),(40896,3,'2024-09-19 12:33:00','2024-09-19 12:33:00','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-09-19 12:33:00','2024-09-19 12:33:00','',40779,'https://biomechanicseducation.com/?p=40896',0,'revision','',0),(40897,3,'2024-09-19 12:35:14','2024-09-19 12:35:14','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-09-19 12:35:14','2024-09-19 12:35:14','',40779,'https://biomechanicseducation.com/?p=40897',0,'revision','',0),(40899,3,'2024-09-19 12:35:43','2024-09-19 12:35:43','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-09-19 12:35:43','2024-09-19 12:35:43','',40779,'https://biomechanicseducation.com/?p=40899',0,'revision','',0),(40900,3,'2024-09-19 12:36:29','2024-09-19 12:36:29','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-09-19 12:36:29','2024-09-19 12:36:29','',40779,'https://biomechanicseducation.com/?p=40900',0,'revision','',0),(40901,3,'2024-09-19 12:36:55','2024-09-19 12:36:55','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-09-19 12:36:55','2024-09-19 12:36:55','',40779,'https://biomechanicseducation.com/?p=40901',0,'revision','',0),(40902,3,'2024-09-19 12:37:25','2024-09-19 12:37:25','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-09-19 12:37:25','2024-09-19 12:37:25','',40779,'https://biomechanicseducation.com/?p=40902',0,'revision','',0),(40903,3,'2024-09-19 12:38:27','2024-09-19 12:38:27','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-09-19 12:38:27','2024-09-19 12:38:27','',40779,'https://biomechanicseducation.com/?p=40903',0,'revision','',0),(40904,3,'2024-09-19 12:41:14','2024-09-19 12:41:14','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-09-19 12:41:14','2024-09-19 12:41:14','',40779,'https://biomechanicseducation.com/?p=40904',0,'revision','',0),(40905,3,'2024-09-19 12:43:21','2024-09-19 12:43:21','','Running Biomechanics Workshop','','inherit','closed','closed','','40781-revision-v1','','','2024-09-19 12:43:21','2024-09-19 12:43:21','',40781,'https://biomechanicseducation.com/?p=40905',0,'revision','',0),(40906,3,'2025-04-08 11:53:54','2024-09-19 12:50:03','','Biomechanics Coaching Diploma','','publish','closed','closed','','biomechanics-coaching-diploma','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',0,'https://biomechanicseducation.com/?p=40906',2,'nav_menu_item','',0),(40907,3,'2024-09-19 12:51:15','2024-09-19 12:51:15','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-09-19 12:51:15','2024-09-19 12:51:15','',39066,'https://biomechanicseducation.com/?p=40907',0,'revision','',0),(40908,3,'2024-09-19 12:55:30','2024-09-19 12:55:30','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-19 12:55:30','2024-09-19 12:55:30','',39196,'https://biomechanicseducation.com/?p=40908',0,'revision','',0),(40909,3,'2024-09-19 12:57:18','2024-09-19 12:57:18','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-09-19 12:57:18','2024-09-19 12:57:18','',39154,'https://biomechanicseducation.com/?p=40909',0,'revision','',0),(40910,3,'2024-09-19 12:57:55','2024-09-19 12:57:55','','Resources','','inherit','closed','closed','','39154-revision-v1','','','2024-09-19 12:57:55','2024-09-19 12:57:55','',39154,'https://biomechanicseducation.com/?p=40910',0,'revision','',0),(40911,3,'2024-09-19 13:01:20','2024-09-19 13:01:20','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-19 13:01:20','2024-09-19 13:01:20','',39493,'https://biomechanicseducation.com/?p=40911',0,'revision','',0),(40913,3,'2024-09-19 13:04:03','2024-09-19 13:04:03','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-19 13:04:03','2024-09-19 13:04:03','',39493,'https://biomechanicseducation.com/?p=40913',0,'revision','',0),(40914,3,'2024-09-19 13:07:32','2024-09-19 13:07:32','','find a bm coach hero 1','','inherit','closed','closed','','find-a-bm-coach-hero-1','','','2024-09-19 13:07:32','2024-09-19 13:07:32','',39493,'https://biomechanicseducation.com/wp-content/uploads/2024/09/find-a-bm-coach-hero-1.png',0,'attachment','image/png',0),(40915,3,'2024-09-19 13:08:19','2024-09-19 13:08:19','','find a bm coach hero 1','','inherit','closed','closed','','find-a-bm-coach-hero-1-2','','','2024-09-19 13:08:19','2024-09-19 13:08:19','',39493,'https://biomechanicseducation.com/wp-content/uploads/2024/09/find-a-bm-coach-hero-1-1.png',0,'attachment','image/png',0),(40916,3,'2024-09-19 13:08:59','2024-09-19 13:08:59','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-19 13:08:59','2024-09-19 13:08:59','',39493,'https://biomechanicseducation.com/?p=40916',0,'revision','',0),(40917,3,'2024-09-19 13:10:15','2024-09-19 13:10:15','','Find a BioMechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-19 13:10:15','2024-09-19 13:10:15','',39493,'https://biomechanicseducation.com/?p=40917',0,'revision','',0),(40918,3,'2024-09-19 13:46:57','2024-09-19 13:46:57','','Remote,Work,,Laptop,And,Man,On,Sofa,With,Drink,,Blog','','inherit','closed','closed','','remoteworklaptopandmanonsofawithdrinkblog','','','2024-09-19 13:46:57','2024-09-19 13:46:57','',39497,'https://biomechanicseducation.com/wp-content/uploads/2024/09/blogs-hero-image.jpg',0,'attachment','image/jpeg',0),(40919,3,'2024-09-19 13:47:02','2024-09-19 13:47:02','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-19 13:47:02','2024-09-19 13:47:02','',39497,'https://biomechanicseducation.com/?p=40919',0,'revision','',0),(40920,3,'2024-09-19 13:50:38','2024-09-19 13:50:38','','A,Man,Writing,Questions,On,Glass,And,The,Hatena,Mark','','inherit','closed','closed','','amanwritingquestionsonglassandthehatenamark','','','2024-09-19 13:50:38','2024-09-19 13:50:38','',39214,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Why-study-this-course-image.jpg',0,'attachment','image/jpeg',0),(40921,3,'2024-09-19 13:51:40','2024-09-19 13:51:40','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-19 13:51:40','2024-09-19 13:51:40','',39214,'https://biomechanicseducation.com/?p=40921',0,'revision','',0),(40923,3,'2024-09-19 13:53:26','2024-09-19 13:53:26','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-19 13:53:26','2024-09-19 13:53:26','',39238,'https://biomechanicseducation.com/?p=40923',0,'revision','',0),(40924,3,'2024-09-19 13:54:47','2024-09-19 13:54:47','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-09-19 13:54:47','2024-09-19 13:54:47','',39245,'https://biomechanicseducation.com/?p=40924',0,'revision','',0),(40925,3,'2024-09-19 13:56:14','2024-09-19 13:56:14','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-09-19 13:56:14','2024-09-19 13:56:14','',39254,'https://biomechanicseducation.com/?p=40925',0,'revision','',0),(40926,3,'2024-09-19 13:58:45','2024-09-19 13:58:45','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-09-19 13:58:45','2024-09-19 13:58:45','',39263,'https://biomechanicseducation.com/?p=40926',0,'revision','',0),(40927,3,'2024-09-19 14:49:47','2024-09-19 14:49:47','<!-- wp:paragraph -->\n<p><b><span data-contrast=\"auto\">Why the Turkish Get-Up is Essential for Personal Trainers</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">The Turkish Get-Up (TGU) is a versatile and effective exercise that should be a staple in any personal trainer\'s programming. Its ability to engage multiple joints and muscles across various planes of movement makes it incredibly efficient, providing comprehensive benefits from just one exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><b><span data-contrast=\"auto\">Full-Body Engagement and Cardiovascular Benefits</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">The TGU involves numerous joint actions and muscle groups, which can deliver a full-body workout. This exercise can be performed with different equipment, adding variety to your routine. It also offers cardiovascular benefits due to the continuous movement required to transition from lying on the floor to standing and back down again.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><b><span data-contrast=\"auto\">Expert Endorsements</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">Renowned strength coach Dan John advocates for the TGU as a diagnostic tool. He uses a simple test where clients must get down on the floor and stand back up to identify mobility limitations and joint restrictions. This drill is fundamental to daily movement and reveals areas needing improvement before progressing to more dynamic exercises.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><b><span data-contrast=\"auto\">Practical Application: Getting Up and Down</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">Practicing the TGU helps maintain and improve the essential ability to get up from the floor - a skill that can decline with age. This exercise is particularly valuable for older adults, helping prevent the fear and consequences of being unable to get up after a fall.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><b><span data-contrast=\"auto\">StrongFirst Kettlebell Workshop Insights</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">The StrongFirst Kettlebell workshop, led by <a href=\"https://www.strongfirst.com/about/pavel-tsatsouline/\">Pavel Tsatsouline</a>, provides excellent technical training on the TGU. This programme emphasises proper technique and progressive learning, starting without weights and gradually adding load. Investing in quality education from reputable organisations like StrongFirst can significantly enhance your understanding and execution of the TGU.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p>I recommend you check out his books…</p>\n<p><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --></p>\n<p><a href=\"https://www.amazon.co.uk/Naked-Warrior-Pavel-Tsatsouline/dp/0938045555/ref=sr_1_1?keywords=Pavel+Tsatsouline&amp;qid=1556470624&amp;s=gateway&amp;sr=8-1\">The Naked Warrior</a></p>\n<p><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --></p>\n<p><a href=\"https://www.amazon.co.uk/Kettlebell-Simple-Sinister-Pavel-Tsatsouline-ebook/dp/B00GF2HP9G/ref=sr_1_2?keywords=Pavel+Tsatsouline&amp;qid=1556470651&amp;s=gateway&amp;sr=8-2\">Kettlebell Simple &amp; Sinister</a></p>\n<p><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --></p>\n<p><a href=\"https://www.amazon.co.uk/Enter-Kettlebell-Strength-Secret-Supermen/dp/1942812132/ref=sr_1_3?keywords=Pavel+Tsatsouline&amp;qid=1556470651&amp;s=gateway&amp;sr=8-3 \" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"Enter The Kettlebell  (opens in a new tab)\">Enter The Kettlebell </a></p>\n<p><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --></p>\n<p>However, I must also make a very special mention 2 of my favourite mentors in the kettlebell, <strong>Troy Martin (TM Fitness) &amp; Stephen Aish (The mindset Coaching Academy) ,</strong> since they have also contributed a lot to my understanding of the use and variations of the kettlebell as an awesome training tool. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} --><!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h1><strong>How To Do A Turkish Get Up</strong></h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The beauty of the TGU is that each part of the movement can be taught one move at a time, without a kettlebell to begin with, particularly if you are coaching a client or trying it for the first time.  Once you get going with the combination remember to hold each position for a moment prior to moving on so that you can feel the position and absorb the benefits of that position and that load, at each point.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} --><!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<ol>\n<li><span class=\"TextRun SCXW103513652 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW103513652 BCX8\"><strong>Starting Position:</strong> </span></span><span class=\"TextRun SCXW103513652 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW103513652 BCX8\">Lie on your side, knees bent, hips at 90 degrees, with the </span><span class=\"NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW103513652 BCX8\">left hand</span><span class=\"NormalTextRun SCXW103513652 BCX8\"> palm </span><span class=\"NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW103513652 BCX8\">up holding</span><span class=\"NormalTextRun SCXW103513652 BCX8\"> the kettlebell.</span></span><span class=\"EOP SCXW103513652 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ol>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13430} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13430\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-1.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong><span class=\"TextRun SCXW186635134 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW186635134 BCX8\">2. Roll to Back:</span></span></strong><span class=\"TextRun SCXW186635134 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW186635134 BCX8\"> Extend your left arm straight up with the kettlebell resting on the back of your hand. Bend your left knee, foot flat, and extend your right leg.</span></span><span class=\"EOP SCXW186635134 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13431} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13431\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-2-Biomechanics-Education.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong><span class=\"TextRun SCXW81553435 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW81553435 BCX8\">3. Press and Roll:</span></span></strong><span class=\"TextRun SCXW81553435 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW81553435 BCX8\"> Press the left foot down, engage your trunk, press the kettlebell upwards, and roll onto your right elbow.</span></span><span class=\"EOP SCXW81553435 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13432} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13432\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-3-Biomechanics-Education.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong><span class=\"TextRun SCXW119162220 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW119162220 BCX8\">4. Sit-Up:</span></span></strong><span class=\"TextRun SCXW119162220 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW119162220 BCX8\"> Lift onto your right hand, extending both arms with the kettlebell overhead.</span></span><span class=\"EOP SCXW119162220 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13434} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13434\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-4-Biomechanics-Coach.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>5. </strong><span class=\"TextRun SCXW170957954 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW170957954 BCX8\"><strong>Kneel:</strong> </span></span><span class=\"TextRun SCXW170957954 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW170957954 BCX8\">Shift weight onto the left foot and right hand, moving your right leg to a kneeling position behind you.</span></span><span class=\"EOP SCXW170957954 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13435} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13435\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Instruction-Biomechanics-Coach.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong>6. <span class=\"TextRun SCXW229150756 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW229150756 BCX8\">Lunge: </span></span></strong><span class=\"TextRun SCXW229150756 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW229150756 BCX8\">Move to an upright kneeling position, keeping the kettlebell overhead.</span></span><span class=\"EOP SCXW229150756 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13436} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13436\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Guide-Biomechanics-Education.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:image {\"id\":13437} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13437\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Biomechanics-Education-Kneeling-lunge-position.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong><span class=\"TextRun SCXW158743961 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW158743961 BCX8\">7. Stand: </span></span><span class=\"TextRun SCXW158743961 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW158743961 BCX8\">Step your left foot forward and stand up, </span><span class=\"NormalTextRun SCXW158743961 BCX8\">maintaining</span><span class=\"NormalTextRun SCXW158743961 BCX8\"> the kettlebell overhead.</span></span><span class=\"EOP SCXW158743961 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":13438} -->\n<figure class=\"wp-block-image\"><img class=\"wp-image-13438\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-Stand.jpg\" alt=\"\" /></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><strong><span class=\"TextRun SCXW200449709 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW200449709 BCX8\">Reversing the Movement</span></span><span class=\"EOP SCXW200449709 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559685&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To repeat the movement in reverse it looks like this:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<ol>\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Step Back:</span></b><span data-contrast=\"auto\"> Step the right leg back, kneeling down while keeping the kettlebell overhead.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n<li><b><span data-contrast=\"auto\">Flex and Sit:</span></b><span data-contrast=\"auto\"> Laterally flex to your right, place your right hand on the floor, and push hips back, keeping eyes on the kettlebell.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Transition:</span></b><span data-contrast=\"auto\"> Shift weight onto the left foot and right hand, moving the right leg forward to sit with the right leg extended.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n<li><b><span data-contrast=\"auto\">Lower: </span></b><span data-contrast=\"auto\">Brace your trunk, lower onto your right elbow, and control your descent back to the starting position.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ol>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>The Switch or Halo </strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To transition to the other side when using a KB literally drag the KB from the finishing position above, along the floor, in a halo over your head to the same position but on your right side.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Repeat all the above on your right side!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Repeat over and over for a great little cardio strength workout</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then add more kilos… and repeat, repeat, repeat!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph --><!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><b><span data-contrast=\"auto\">Benefits for Personal Trainers</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">The TGU is not just a strength and conditioning tool but also a movement enhancer, especially beneficial for older adults. It improves the ability to get up from the floor, potentially reducing injury risk and increasing confidence. This exercise is suitable for clients of all ages and fitness levels, making it a valuable addition to any training program.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><b><span data-contrast=\"auto\">Enhance Your Training Skills</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<p><span data-contrast=\"auto\">Want to reduce your clients\' risk of injury and help them achieve better results? Learn more about our Biomechanics Coach Diploma, now including a Level 4 Low Back Pain Qualification, to become an even more effective personal trainer. Click </span><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> to find out more.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\n\n<!-- wp:heading -->\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Contact: infol@biomechanicseducation.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img class=\"alignnone wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></figure>\n</div>\n<!-- /wp:image -->','Why The Turkish Get Up Is Valuable To A Personal Trainer’s Programming','','inherit','closed','closed','','13299-autosave-v1','','','2024-09-19 14:49:47','2024-09-19 14:49:47','',13299,'https://biomechanicseducation.com/?p=40927',0,'revision','',0),(40928,3,'2024-09-19 14:49:56','2024-09-19 14:49:56','<!-- wp:paragraph -->\r\n<p><b><span data-contrast=\"auto\">Why the Turkish Get-Up is Essential for Personal Trainers</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The Turkish Get-Up (TGU) is a versatile and effective exercise that should be a staple in any personal trainer\'s programming. Its ability to engage multiple joints and muscles across various planes of movement makes it incredibly efficient, providing comprehensive benefits from just one exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><b><span data-contrast=\"auto\">Full-Body Engagement and Cardiovascular Benefits</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The TGU involves numerous joint actions and muscle groups, which can deliver a full-body workout. This exercise can be performed with different equipment, adding variety to your routine. It also offers cardiovascular benefits due to the continuous movement required to transition from lying on the floor to standing and back down again.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><b><span data-contrast=\"auto\">Expert Endorsements</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Renowned strength coach Dan John advocates for the TGU as a diagnostic tool. He uses a simple test where clients must get down on the floor and stand back up to identify mobility limitations and joint restrictions. This drill is fundamental to daily movement and reveals areas needing improvement before progressing to more dynamic exercises.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Practical Application: Getting Up and Down</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Practicing the TGU helps maintain and improve the essential ability to get up from the floor - a skill that can decline with age. This exercise is particularly valuable for older adults, helping prevent the fear and consequences of being unable to get up after a fall.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">StrongFirst Kettlebell Workshop Insights</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The StrongFirst Kettlebell workshop, led by <a href=\"https://www.strongfirst.com/about/pavel-tsatsouline/\">Pavel Tsatsouline</a>, provides excellent technical training on the TGU. This programme emphasises proper technique and progressive learning, starting without weights and gradually adding load. Investing in quality education from reputable organisations like StrongFirst can significantly enhance your understanding and execution of the TGU.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p>I recommend you check out his books…</p>\r\n<p><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --></p>\r\n<p><a href=\"https://www.amazon.co.uk/Naked-Warrior-Pavel-Tsatsouline/dp/0938045555/ref=sr_1_1?keywords=Pavel+Tsatsouline&amp;qid=1556470624&amp;s=gateway&amp;sr=8-1\">The Naked Warrior</a></p>\r\n<p><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --></p>\r\n<p><a href=\"https://www.amazon.co.uk/Kettlebell-Simple-Sinister-Pavel-Tsatsouline-ebook/dp/B00GF2HP9G/ref=sr_1_2?keywords=Pavel+Tsatsouline&amp;qid=1556470651&amp;s=gateway&amp;sr=8-2\">Kettlebell Simple &amp; Sinister</a></p>\r\n<p><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --></p>\r\n<p><a href=\"https://www.amazon.co.uk/Enter-Kettlebell-Strength-Secret-Supermen/dp/1942812132/ref=sr_1_3?keywords=Pavel+Tsatsouline&amp;qid=1556470651&amp;s=gateway&amp;sr=8-3 \" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"Enter The Kettlebell  (opens in a new tab)\">Enter The Kettlebell </a></p>\r\n<p><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --></p>\r\n<p>However, I must also make a very special mention 2 of my favourite mentors in the kettlebell, <strong>Troy Martin (TM Fitness) &amp; Stephen Aish (The mindset Coaching Academy) ,</strong> since they have also contributed a lot to my understanding of the use and variations of the kettlebell as an awesome training tool. </p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":4} --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h1><strong>How To Do A Turkish Get Up</strong></h1>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>The beauty of the TGU is that each part of the movement can be taught one move at a time, without a kettlebell to begin with, particularly if you are coaching a client or trying it for the first time.  Once you get going with the combination remember to hold each position for a moment prior to moving on so that you can feel the position and absorb the benefits of that position and that load, at each point.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<ol>\r\n<li><span class=\"TextRun SCXW103513652 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW103513652 BCX8\"><strong>Starting Position:</strong> </span></span><span class=\"TextRun SCXW103513652 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW103513652 BCX8\">Lie on your side, knees bent, hips at 90 degrees, with the </span><span class=\"NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW103513652 BCX8\">left hand</span><span class=\"NormalTextRun SCXW103513652 BCX8\"> palm </span><span class=\"NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW103513652 BCX8\">up holding</span><span class=\"NormalTextRun SCXW103513652 BCX8\"> the kettlebell.</span></span><span class=\"EOP SCXW103513652 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13430} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13430\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-1.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW186635134 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW186635134 BCX8\">2. Roll to Back:</span></span></strong><span class=\"TextRun SCXW186635134 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW186635134 BCX8\"> Extend your left arm straight up with the kettlebell resting on the back of your hand. Bend your left knee, foot flat, and extend your right leg.</span></span><span class=\"EOP SCXW186635134 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13431} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13431\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-2-Biomechanics-Education.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW81553435 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW81553435 BCX8\">3. Press and Roll:</span></span></strong><span class=\"TextRun SCXW81553435 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW81553435 BCX8\"> Press the left foot down, engage your trunk, press the kettlebell upwards, and roll onto your right elbow.</span></span><span class=\"EOP SCXW81553435 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13432} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13432\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-3-Biomechanics-Education.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW119162220 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW119162220 BCX8\">4. Sit-Up:</span></span></strong><span class=\"TextRun SCXW119162220 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW119162220 BCX8\"> Lift onto your right hand, extending both arms with the kettlebell overhead.</span></span><span class=\"EOP SCXW119162220 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13434} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13434\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-4-Biomechanics-Coach.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong>5. </strong><span class=\"TextRun SCXW170957954 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW170957954 BCX8\"><strong>Kneel:</strong> </span></span><span class=\"TextRun SCXW170957954 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW170957954 BCX8\">Shift weight onto the left foot and right hand, moving your right leg to a kneeling position behind you.</span></span><span class=\"EOP SCXW170957954 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13435} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13435\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Instruction-Biomechanics-Coach.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong>6. <span class=\"TextRun SCXW229150756 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW229150756 BCX8\">Lunge: </span></span></strong><span class=\"TextRun SCXW229150756 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW229150756 BCX8\">Move to an upright kneeling position, keeping the kettlebell overhead.</span></span><span class=\"EOP SCXW229150756 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13436} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13436\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Guide-Biomechanics-Education.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:image {\"id\":13437} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13437\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Biomechanics-Education-Kneeling-lunge-position.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW158743961 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW158743961 BCX8\">7. Stand: </span></span><span class=\"TextRun SCXW158743961 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW158743961 BCX8\">Step your left foot forward and stand up, </span><span class=\"NormalTextRun SCXW158743961 BCX8\">maintaining</span><span class=\"NormalTextRun SCXW158743961 BCX8\"> the kettlebell overhead.</span></span><span class=\"EOP SCXW158743961 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></strong></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13438} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13438\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-Stand.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW200449709 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW200449709 BCX8\">Reversing the Movement</span></span><span class=\"EOP SCXW200449709 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559685&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></strong></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>To repeat the movement in reverse it looks like this:</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Step Back:</span></b><span data-contrast=\"auto\"> Step the right leg back, kneeling down while keeping the kettlebell overhead.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li><b><span data-contrast=\"auto\">Flex and Sit:</span></b><span data-contrast=\"auto\"> Laterally flex to your right, place your right hand on the floor, and push hips back, keeping eyes on the kettlebell.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Transition:</span></b><span data-contrast=\"auto\"> Shift weight onto the left foot and right hand, moving the right leg forward to sit with the right leg extended.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li><b><span data-contrast=\"auto\">Lower: </span></b><span data-contrast=\"auto\">Brace your trunk, lower onto your right elbow, and control your descent back to the starting position.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong>The Switch or Halo </strong></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>To transition to the other side when using a KB literally drag the KB from the finishing position above, along the floor, in a halo over your head to the same position but on your right side.  </p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Repeat all the above on your right side!</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Repeat over and over for a great little cardio strength workout</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Then add more kilos… and repeat, repeat, repeat!</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><b><span data-contrast=\"auto\">Benefits for Personal Trainers</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The TGU is not just a strength and conditioning tool but also a movement enhancer, especially beneficial for older adults. It improves the ability to get up from the floor, potentially reducing injury risk and increasing confidence. This exercise is suitable for clients of all ages and fitness levels, making it a valuable addition to any training program.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Enhance Your Training Skills</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Want to reduce your clients\' risk of injury and help them achieve better results? Learn more about our Biomechanics Coach Diploma, now including a Level 4 Low Back Pain Qualification, to become an even more effective personal trainer. Click </span><a href=\"https://www.biomechanicseducation.com/biomechanics-coach-diploma-2/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> to find out more.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>&nbsp;</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Contact: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img class=\"alignnone wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></figure>\r\n</div>\r\n<!-- /wp:image -->','Why The Turkish Get Up Is Valuable To A Personal Trainer’s Programming','','inherit','closed','closed','','13299-revision-v1','','','2024-09-19 14:49:56','2024-09-19 14:49:56','',13299,'https://biomechanicseducation.com/?p=40928',0,'revision','',0),(40929,3,'2024-09-19 14:58:53','2024-09-19 14:58:53','<p><b><span data-contrast=\"auto\">Foot Biomechanics Made Simple: The Overpronation Fallacy</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Introduction</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">With summer around the corner, it\'s the perfect time to kick off your shoes and take a good look at your feet. Notice anything unusual? Are your toes straight, or does your big toe angle inward, mimicking the shape of your shoes? Perhaps your smaller toes curl under, or you see varied skin textures from footwear. These changes, unlike our youthful feet, occur due to the following reasons.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Complexity of Feet</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Feet endure significant stress daily - walking, running, jumping, and more. They’re encased in various \"casts\" we call shoes, which alter their natural movement and structure. Each foot comprises 26 bones, 19 muscles, and 107 ligaments, contributing to the intricate biomechanics that support our gait cycle. Despite their importance, foot biomechanics often receive minimal attention from personal trainers and coaches.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Pronation and Supination: Key Terms</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Understanding pronation and supination is crucial for appreciating foot biomechanics. Both involve tri-planar actions—combinations of three movements.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Pronation</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><img class=\"alignnone size-full wp-image-40932\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Pronation-of-the-foot-Foot-Biomechanics-104x300-1.png\" alt=\"Pronation-of-the-foot-Foot-Biomechanics-\" width=\"104\" height=\"300\" /></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Eversion:</span></b><span data-contrast=\"auto\"> Heel base turns outward.</span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Abduction:</span></b><span data-contrast=\"auto\"> Toes move away from the body.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Dorsiflexion: </span></b><span data-contrast=\"auto\">Toes move closer to the shin, reducing the ankle\'s anterior angle.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><span data-contrast=\"auto\">In the pronated state, the foot is wide, loose, and the midtarsal joint is \"unlocked.\" This phase of the gait cycle acts as a shock absorber, protecting the body from impact as the foot hits the ground.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Supination</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><img class=\"alignnone size-full wp-image-40933\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Supination-of-the-foot-Foot-Biomechanics-110x300-1.png\" alt=\"Image of supination of the foot\" width=\"110\" height=\"300\" /></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Inversion:</span></b><span data-contrast=\"auto\"> Heel base turns inward.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Adduction:</span></b><span data-contrast=\"auto\"> Toes move towards the body.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Plantarflexion:</span></b><span data-contrast=\"auto\"> Toes move away from the shin, increasing the ankle\'s anterior angle.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><span data-contrast=\"auto\">During supination, the foot is narrow, stiff, and the midtarsal joint is \"locked.\" This provides the rigidity needed for the \"toe off\" phase, propelling the body forward.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Overpronation Fallacy</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The concept of \"overpronation\" is often misunderstood. Examining the gait cycle reveals that what’s often labeled as overpronation might be a misinterpretation of late supination.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Gait Cycle</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><img class=\"alignnone size-full wp-image-40931\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/The-Gait-Cycle-Foot-Biomechanics-768x487-1.png\" alt=\"Diagram of the gait cycle\" width=\"768\" height=\"487\" /></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Heel Strike: Pronation for shock absorption.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Forefoot Landing: Continued pronation for shock absorption.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Neutral: Midpoint as the body moves over the foot.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Heel Lift: Transition to supination, big toe extends to initiate propulsion.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Toe Off: Complete supination for rigid foot propulsion.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><b><span data-contrast=\"auto\">Root Theory vs. Modern Understanding</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Root Theory significantly influenced the podiatric and orthotic professions, labelling \"loose\" feet as overpronators due to inward rolling and prolonged pronation during the heel lift phase. This was thought to cause issues as the foot should be transitioning to a rigid state.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">However, this approach often created new problems by restricting necessary pronation, increasing shock impact up the body. Modern orthotic design, influenced by Panjabi’s model, addresses this by improving the timing of supination with smaller wedges, allowing a more natural gait.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Overprescription of Orthotics</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">It\'s essential to ensure your podiatrist is updated with the latest theories. Over-prescription based on outdated theories can cause more harm than good. Always verify your podiatrist\'s credentials and training.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Conclusion</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Today, we explored the theory behind foot movement, the biomechanics involved, and their broader implications on body function. By understanding these concepts, we can better advise clients on their foot health and overall biomechanics.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Interested in learning more about foot biomechanics? <a href=\"mailto:info@biomechanicseducation.com\">Contact us</a> for more information.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Enhance Your Skills</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Would you like to reduce your clients\' injury risks and improve their results? Learn more about our Biomechanics Coach Diploma, now including a Level 4 Low Back Pain Qualification. Find out more </span><a href=\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> about becoming an even better personal trainer.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">References</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">For more information, visit Hersco\'s Education Center on Foot Biomechanics </span><a href=\"https://hersco.com/education-center/foot-biomechanics-root-theory/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\">.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<hr />\r\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\r\n<p><span data-contrast=\"auto\"><a href=\"mailto:info@biomechanicseducation.com\">Contact us</a></span> to find our more.</p>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img class=\"alignnone wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></figure>\r\n</div>','Foot Biomechanics : The Over Pronation Fallacy','','inherit','closed','closed','','15602-autosave-v1','','','2024-09-19 14:58:53','2024-09-19 14:58:53','',15602,'https://biomechanicseducation.com/?p=40929',0,'revision','',0),(40930,3,'2024-09-19 14:55:04','2024-09-19 14:55:04','<p><b><span data-contrast=\"auto\">Foot Biomechanics Made Simple: The Overpronation Fallacy</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Introduction</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">With summer around the corner, it\'s the perfect time to kick off your shoes and take a good look at your feet. Notice anything unusual? Are your toes straight, or does your big toe angle inward, mimicking the shape of your shoes? Perhaps your smaller toes curl under, or you see varied skin textures from footwear. These changes, unlike our youthful feet, occur due to the following reasons.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Complexity of Feet</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Feet endure significant stress daily - walking, running, jumping, and more. They’re encased in various \"casts\" we call shoes, which alter their natural movement and structure. Each foot comprises 26 bones, 19 muscles, and 107 ligaments, contributing to the intricate biomechanics that support our gait cycle. Despite their importance, foot biomechanics often receive minimal attention from personal trainers and coaches.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Pronation and Supination: Key Terms</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Understanding pronation and supination is crucial for appreciating foot biomechanics. Both involve tri-planar actions—combinations of three movements.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Pronation</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Eversion:</span></b><span data-contrast=\"auto\"> Heel base turns outward.</span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Abduction:</span></b><span data-contrast=\"auto\"> Toes move away from the body.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Dorsiflexion: </span></b><span data-contrast=\"auto\">Toes move closer to the shin, reducing the ankle\'s anterior angle.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><span data-contrast=\"auto\">In the pronated state, the foot is wide, loose, and the midtarsal joint is \"unlocked.\" This phase of the gait cycle acts as a shock absorber, protecting the body from impact as the foot hits the ground.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Supination</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Inversion:</span></b><span data-contrast=\"auto\"> Heel base turns inward.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Adduction:</span></b><span data-contrast=\"auto\"> Toes move towards the body.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Plantarflexion:</span></b><span data-contrast=\"auto\"> Toes move away from the shin, increasing the ankle\'s anterior angle.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><span data-contrast=\"auto\">During supination, the foot is narrow, stiff, and the midtarsal joint is \"locked.\" This provides the rigidity needed for the \"toe off\" phase, propelling the body forward.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Overpronation Fallacy</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The concept of \"overpronation\" is often misunderstood. Examining the gait cycle reveals that what’s often labeled as overpronation might be a misinterpretation of late supination.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Gait Cycle</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Heel Strike: Pronation for shock absorption.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Forefoot Landing: Continued pronation for shock absorption.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Neutral: Midpoint as the body moves over the foot.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Heel Lift: Transition to supination, big toe extends to initiate propulsion.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Toe Off: Complete supination for rigid foot propulsion.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><b><span data-contrast=\"auto\">Root Theory vs. Modern Understanding</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Root Theory significantly influenced the podiatric and orthotic professions, labelling \"loose\" feet as overpronators due to inward rolling and prolonged pronation during the heel lift phase. This was thought to cause issues as the foot should be transitioning to a rigid state.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">However, this approach often created new problems by restricting necessary pronation, increasing shock impact up the body. Modern orthotic design, influenced by Panjabi’s model, addresses this by improving the timing of supination with smaller wedges, allowing a more natural gait.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Overprescription of Orthotics</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">It\'s essential to ensure your podiatrist is updated with the latest theories. Over-prescription based on outdated theories can cause more harm than good. Always verify your podiatrist\'s credentials and training.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Conclusion</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Today, we explored the theory behind foot movement, the biomechanics involved, and their broader implications on body function. By understanding these concepts, we can better advise clients on their foot health and overall biomechanics.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Interested in learning more about foot biomechanics? <a href=\"mailto:info@biomechanicseducation.com\">Contact us</a> for more information.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Enhance Your Skills</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Would you like to reduce your clients\' injury risks and improve their results? Learn more about our Biomechanics Coach Diploma, now including a Level 4 Low Back Pain Qualification. Find out more </span><a href=\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> about becoming an even better personal trainer.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">References</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">For more information, visit Hersco\'s Education Center on Foot Biomechanics </span><a href=\"https://hersco.com/education-center/foot-biomechanics-root-theory/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\">.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<hr />\r\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\r\n<p><span data-contrast=\"auto\"><a href=\"mailto:info@biomechanicseducation.com\">Contact us</a></span> to find our more.</p>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img class=\"alignnone wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></figure>\r\n</div>','Foot Biomechanics : The Over Pronation Fallacy','','inherit','closed','closed','','15602-revision-v1','','','2024-09-19 14:55:04','2024-09-19 14:55:04','',15602,'https://biomechanicseducation.com/?p=40930',0,'revision','',0),(40931,3,'2024-09-19 14:56:14','2024-09-19 14:56:14','','The-Gait-Cycle-Foot-Biomechanics-768x487','','inherit','closed','closed','','the-gait-cycle-foot-biomechanics-768x487','','','2024-09-19 14:56:28','2024-09-19 14:56:28','',15602,'https://biomechanicseducation.com/wp-content/uploads/2019/07/The-Gait-Cycle-Foot-Biomechanics-768x487-1.png',0,'attachment','image/png',0),(40932,3,'2024-09-19 14:56:56','2024-09-19 14:56:56','','Pronation-of-the-foot-Foot-Biomechanics-104x300','','inherit','closed','closed','','pronation-of-the-foot-foot-biomechanics-104x300','','','2024-09-19 14:57:50','2024-09-19 14:57:50','',15602,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Pronation-of-the-foot-Foot-Biomechanics-104x300-1.png',0,'attachment','image/png',0),(40933,3,'2024-09-19 14:56:57','2024-09-19 14:56:57','','Supination-of-the-foot-Foot-Biomechanics-110x300','','inherit','closed','closed','','supination-of-the-foot-foot-biomechanics-110x300','','','2024-09-19 14:57:23','2024-09-19 14:57:23','',15602,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Supination-of-the-foot-Foot-Biomechanics-110x300-1.png',0,'attachment','image/png',0),(40934,3,'2024-09-19 14:57:53','2024-09-19 14:57:53','<p><b><span data-contrast=\"auto\">Foot Biomechanics Made Simple: The Overpronation Fallacy</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Introduction</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">With summer around the corner, it\'s the perfect time to kick off your shoes and take a good look at your feet. Notice anything unusual? Are your toes straight, or does your big toe angle inward, mimicking the shape of your shoes? Perhaps your smaller toes curl under, or you see varied skin textures from footwear. These changes, unlike our youthful feet, occur due to the following reasons.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Complexity of Feet</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Feet endure significant stress daily - walking, running, jumping, and more. They’re encased in various \"casts\" we call shoes, which alter their natural movement and structure. Each foot comprises 26 bones, 19 muscles, and 107 ligaments, contributing to the intricate biomechanics that support our gait cycle. Despite their importance, foot biomechanics often receive minimal attention from personal trainers and coaches.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Pronation and Supination: Key Terms</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Understanding pronation and supination is crucial for appreciating foot biomechanics. Both involve tri-planar actions—combinations of three movements.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Pronation</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><img class=\"alignnone size-full wp-image-40932\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Pronation-of-the-foot-Foot-Biomechanics-104x300-1.png\" alt=\"Pronation-of-the-foot-Foot-Biomechanics-\" width=\"104\" height=\"300\" /></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Eversion:</span></b><span data-contrast=\"auto\"> Heel base turns outward.</span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Abduction:</span></b><span data-contrast=\"auto\"> Toes move away from the body.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Dorsiflexion: </span></b><span data-contrast=\"auto\">Toes move closer to the shin, reducing the ankle\'s anterior angle.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><span data-contrast=\"auto\">In the pronated state, the foot is wide, loose, and the midtarsal joint is \"unlocked.\" This phase of the gait cycle acts as a shock absorber, protecting the body from impact as the foot hits the ground.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Supination</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><img class=\"alignnone size-full wp-image-40933\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Supination-of-the-foot-Foot-Biomechanics-110x300-1.png\" alt=\"Image of supination of the foot\" width=\"110\" height=\"300\" /></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Inversion:</span></b><span data-contrast=\"auto\"> Heel base turns inward.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Adduction:</span></b><span data-contrast=\"auto\"> Toes move towards the body.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Plantarflexion:</span></b><span data-contrast=\"auto\"> Toes move away from the shin, increasing the ankle\'s anterior angle.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><span data-contrast=\"auto\">During supination, the foot is narrow, stiff, and the midtarsal joint is \"locked.\" This provides the rigidity needed for the \"toe off\" phase, propelling the body forward.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Overpronation Fallacy</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The concept of \"overpronation\" is often misunderstood. Examining the gait cycle reveals that what’s often labeled as overpronation might be a misinterpretation of late supination.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Gait Cycle</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><img class=\"alignnone size-full wp-image-40931\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/The-Gait-Cycle-Foot-Biomechanics-768x487-1.png\" alt=\"Diagram of the gait cycle\" width=\"768\" height=\"487\" /></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Heel Strike: Pronation for shock absorption.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Forefoot Landing: Continued pronation for shock absorption.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Neutral: Midpoint as the body moves over the foot.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Heel Lift: Transition to supination, big toe extends to initiate propulsion.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Toe Off: Complete supination for rigid foot propulsion.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><b><span data-contrast=\"auto\">Root Theory vs. Modern Understanding</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Root Theory significantly influenced the podiatric and orthotic professions, labelling \"loose\" feet as overpronators due to inward rolling and prolonged pronation during the heel lift phase. This was thought to cause issues as the foot should be transitioning to a rigid state.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">However, this approach often created new problems by restricting necessary pronation, increasing shock impact up the body. Modern orthotic design, influenced by Panjabi’s model, addresses this by improving the timing of supination with smaller wedges, allowing a more natural gait.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Overprescription of Orthotics</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">It\'s essential to ensure your podiatrist is updated with the latest theories. Over-prescription based on outdated theories can cause more harm than good. Always verify your podiatrist\'s credentials and training.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Conclusion</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Today, we explored the theory behind foot movement, the biomechanics involved, and their broader implications on body function. By understanding these concepts, we can better advise clients on their foot health and overall biomechanics.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Interested in learning more about foot biomechanics? <a href=\"mailto:info@biomechanicseducation.com\">Contact us</a> for more information.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Enhance Your Skills</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Would you like to reduce your clients\' injury risks and improve their results? Learn more about our Biomechanics Coach Diploma, now including a Level 4 Low Back Pain Qualification. Find out more </span><a href=\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> about becoming an even better personal trainer.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">References</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">For more information, visit Hersco\'s Education Center on Foot Biomechanics </span><a href=\"https://hersco.com/education-center/foot-biomechanics-root-theory/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\">.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<hr />\r\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\r\n<p><span data-contrast=\"auto\"><a href=\"mailto:info@biomechanicseducation.com\">Contact us</a></span> to find our more.</p>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img class=\"alignnone wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></figure>\r\n</div>','Foot Biomechanics : The Over Pronation Fallacy','','inherit','closed','closed','','15602-revision-v1','','','2024-09-19 14:57:53','2024-09-19 14:57:53','',15602,'https://biomechanicseducation.com/?p=40934',0,'revision','',0),(40935,3,'2024-09-19 14:59:14','2024-09-19 14:59:14','<h3>Foot Biomechanics Made Simple: The Overpronation Fallacy </h3>\r\n<p><b><span data-contrast=\"auto\">Introduction</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">With summer around the corner, it\'s the perfect time to kick off your shoes and take a good look at your feet. Notice anything unusual? Are your toes straight, or does your big toe angle inward, mimicking the shape of your shoes? Perhaps your smaller toes curl under, or you see varied skin textures from footwear. These changes, unlike our youthful feet, occur due to the following reasons.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Complexity of Feet</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Feet endure significant stress daily - walking, running, jumping, and more. They’re encased in various \"casts\" we call shoes, which alter their natural movement and structure. Each foot comprises 26 bones, 19 muscles, and 107 ligaments, contributing to the intricate biomechanics that support our gait cycle. Despite their importance, foot biomechanics often receive minimal attention from personal trainers and coaches.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Pronation and Supination: Key Terms</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Understanding pronation and supination is crucial for appreciating foot biomechanics. Both involve tri-planar actions—combinations of three movements.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Pronation</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><img class=\"alignnone size-full wp-image-40932\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Pronation-of-the-foot-Foot-Biomechanics-104x300-1.png\" alt=\"Pronation-of-the-foot-Foot-Biomechanics-\" width=\"104\" height=\"300\" /></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Eversion:</span></b><span data-contrast=\"auto\"> Heel base turns outward.</span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Abduction:</span></b><span data-contrast=\"auto\"> Toes move away from the body.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Dorsiflexion: </span></b><span data-contrast=\"auto\">Toes move closer to the shin, reducing the ankle\'s anterior angle.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><span data-contrast=\"auto\">In the pronated state, the foot is wide, loose, and the midtarsal joint is \"unlocked.\" This phase of the gait cycle acts as a shock absorber, protecting the body from impact as the foot hits the ground.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Supination</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><img class=\"alignnone size-full wp-image-40933\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Supination-of-the-foot-Foot-Biomechanics-110x300-1.png\" alt=\"Image of supination of the foot\" width=\"110\" height=\"300\" /></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Inversion:</span></b><span data-contrast=\"auto\"> Heel base turns inward.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Adduction:</span></b><span data-contrast=\"auto\"> Toes move towards the body.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Plantarflexion:</span></b><span data-contrast=\"auto\"> Toes move away from the shin, increasing the ankle\'s anterior angle.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><span data-contrast=\"auto\">During supination, the foot is narrow, stiff, and the midtarsal joint is \"locked.\" This provides the rigidity needed for the \"toe off\" phase, propelling the body forward.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Overpronation Fallacy</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The concept of \"overpronation\" is often misunderstood. Examining the gait cycle reveals that what’s often labeled as overpronation might be a misinterpretation of late supination.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">The Gait Cycle</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><img class=\"alignnone size-full wp-image-40931\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/07/The-Gait-Cycle-Foot-Biomechanics-768x487-1.png\" alt=\"Diagram of the gait cycle\" width=\"768\" height=\"487\" /></p>\r\n<ul>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Heel Strike: Pronation for shock absorption.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Forefoot Landing: Continued pronation for shock absorption.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Neutral: Midpoint as the body moves over the foot.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Heel Lift: Transition to supination, big toe extends to initiate propulsion.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Toe Off: Complete supination for rigid foot propulsion.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<p><b><span data-contrast=\"auto\">Root Theory vs. Modern Understanding</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Root Theory significantly influenced the podiatric and orthotic professions, labelling \"loose\" feet as overpronators due to inward rolling and prolonged pronation during the heel lift phase. This was thought to cause issues as the foot should be transitioning to a rigid state.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">However, this approach often created new problems by restricting necessary pronation, increasing shock impact up the body. Modern orthotic design, influenced by Panjabi’s model, addresses this by improving the timing of supination with smaller wedges, allowing a more natural gait.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Overprescription of Orthotics</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">It\'s essential to ensure your podiatrist is updated with the latest theories. Over-prescription based on outdated theories can cause more harm than good. Always verify your podiatrist\'s credentials and training.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Conclusion</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Today, we explored the theory behind foot movement, the biomechanics involved, and their broader implications on body function. By understanding these concepts, we can better advise clients on their foot health and overall biomechanics.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Interested in learning more about foot biomechanics? <a href=\"mailto:info@biomechanicseducation.com\">Contact us</a> for more information.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Enhance Your Skills</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Would you like to reduce your clients\' injury risks and improve their results? Learn more about our Biomechanics Coach Diploma, now including a Level 4 Low Back Pain Qualification. Find out more </span><a href=\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> about becoming an even better personal trainer.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">References</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">For more information, visit Hersco\'s Education Center on Foot Biomechanics </span><a href=\"https://hersco.com/education-center/foot-biomechanics-root-theory/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\">.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<hr />\r\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\r\n<p><span data-contrast=\"auto\"><a href=\"mailto:info@biomechanicseducation.com\">Contact us</a></span> to find our more.</p>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img class=\"alignnone wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></figure>\r\n</div>','Foot Biomechanics : The Over Pronation Fallacy','','inherit','closed','closed','','15602-revision-v1','','','2024-09-19 14:59:14','2024-09-19 14:59:14','',15602,'https://biomechanicseducation.com/?p=40935',0,'revision','',0),(40936,3,'2024-09-19 15:07:02','2024-09-19 15:07:02','<h2>The Deadlift: A Comprehensive Guide</h2>\n<span data-contrast=\"auto\">The deadlift is a fundamental strength exercise with significant real-life applications in bending and lifting. Often considered the original strength move, its simplicity and effectiveness have made it a staple in strength training.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Let\'s delve into its variations, benefits, and how coaches can select the best options for their clients.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3><b><span data-contrast=\"auto\">The History of the Deadlift</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\n<span data-contrast=\"auto\">The deadlift, named for lifting \"dead\" weight from the floor, was popularized by German circus performer Hermann Goerner between 1910-1930. Known as the \"father of the deadlift,\" Goerner showcased remarkable feats of strength, cementing the deadlift\'s place in strength training.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3><b><span data-contrast=\"auto\">The Original Deadlift</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\n<span data-contrast=\"auto\">The traditional deadlift involves lifting a weight from the floor, demanding significant leg and back strength. This move requires good range of motion (ROM) as the lifter must flex at the knees and hips, similar to a squat but with a greater forward lean.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Benefits:</span></b>\n<ul>\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Strengthens posterior muscles</span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Enhances tissue tolerance to heavy loads</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Utilises the thoracolumbar fascia for increased torso strength, contributing an additional 30% strength to the torso (Gracovetsky, 1988)</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>\n<h3>Variations of the Deadlift</h3>\n<b><span data-contrast=\"auto\">Romanian Deadlift (RDL)</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">The RDL starts at the top of the movement, with the bar lifted from a rack. The lifter lowers the bar to the mid/lower shin and then lifts it again, requiring less knee ROM.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<ul>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Easier on the knees</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ideal for new lifters</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Allows for controlled ROM</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Focuses on hip extensors with reduced knee stress</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>\n<h3>Stiff Leg Deadlift</h3>\n<span data-contrast=\"auto\">Starting similarly to an RDL, this variation involves lowering the bar while keeping the knees straight, emphasizing hip ROM and targeting the glutes and hamstrings.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<ul>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Greater hip ROM</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Focuses on glute and hamstring strength</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Useful for those with tight sciatic nerves</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>\n<h3>Sumo Deadlift</h3>\n<span data-contrast=\"auto\">With a wider foot position and a narrow hand grip, the sumo deadlift is often used in powerlifting. It requires less hip ROM, making it easier on the back.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<ul>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Easier on the back</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Suitable for individuals with specific quad or hip requirements</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>\n<h3>Single Leg RDL (Crane)</h3>\n<span data-contrast=\"auto\">This variation, performed on one leg, requires a lighter load and enhances balance and stability.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<ul>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Improves stability and balance</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ideal for targeting asymmetrical strength</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Useful for neuromuscular feedback</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>\n<b><span data-contrast=\"auto\">Why Include Deadlifts in Your Training?</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">The deadlift and its variations are excellent for developing hip, knee, and spine extensor strength. Incorporating different versions can keep training interesting and beneficial for clients. It\'s crucial to choose the right variation based on specific goals and capabilities.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Key Takeaway</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">There\'s no wrong movement - only movements that a client may not yet have the capacity for. Using this guide can help you make more informed programming choices for incorporating this powerful strength exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">References</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<ul>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">BarBend. (2021). The History of the Deadlift: How Did This Lift Become So Popular? Retrieved from BarBend</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Gracovetsky, S. (1988). The Spinal Engine. Vienna: Springer Vienna.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Norris, C. (1995). Spinal Stabilisation. Physiotherapy, 81(2), 61-64.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ross, J., &amp; Ross, J. (2021). Water, Fascia Health, and Concussions. Retrieved from Trainoutpain</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Willard, F., Vleeming, A., Schuenke, M., Danneels, L., &amp; Schleip, R. (2012). The thoracolumbar fascia: anatomy, function, and clinical considerations. Journal of Anatomy, 221(6), 507-536.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>','The Deadlift: A Comprehensive Guide','','inherit','closed','closed','','30719-autosave-v1','','','2024-09-19 15:07:02','2024-09-19 15:07:02','',30719,'https://biomechanicseducation.com/?p=40936',0,'revision','',0),(40937,3,'2024-09-19 15:05:57','2024-09-19 15:05:57','<h2>The Deadlift: A Comprehensive Guide</h2>\r\n<span data-contrast=\"auto\">The deadlift is a fundamental strength exercise with significant real-life applications in bending and lifting. Often considered the original strength move, its simplicity and effectiveness have made it a staple in strength training.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Let\'s delve into its variations, benefits, and how coaches can select the best options for their clients.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><b><span data-contrast=\"auto\">The History of the Deadlift</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\r\n<span data-contrast=\"auto\">The deadlift, named for lifting \"dead\" weight from the floor, was popularized by German circus performer Hermann Goerner between 1910-1930. Known as the \"father of the deadlift,\" Goerner showcased remarkable feats of strength, cementing the deadlift\'s place in strength training.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><b><span data-contrast=\"auto\">The Original Deadlift</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\r\n<span data-contrast=\"auto\">The traditional deadlift involves lifting a weight from the floor, demanding significant leg and back strength. This move requires good range of motion (ROM) as the lifter must flex at the knees and hips, similar to a squat but with a greater forward lean.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b>\r\n<ul>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Strengthens posterior muscles</span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Enhances tissue tolerance to heavy loads</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Utilises the thoracolumbar fascia for increased torso strength, contributing an additional 30% strength to the torso (Gracovetsky, 1988)</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">Variations of the Deadlift</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Romanian Deadlift (RDL)</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">The RDL starts at the top of the movement, with the bar lifted from a rack. The lifter lowers the bar to the mid/lower shin and then lifts it again, requiring less knee ROM.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Easier on the knees</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ideal for new lifters</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Allows for controlled ROM</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Focuses on hip extensors with reduced knee stress</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">Stiff Leg Deadlift</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Starting similarly to an RDL, this variation involves lowering the bar while keeping the knees straight, emphasizing hip ROM and targeting the glutes and hamstrings.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Greater hip ROM</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Focuses on glute and hamstring strength</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Useful for those with tight sciatic nerves</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">Sumo Deadlift</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">With a wider foot position and a narrow hand grip, the sumo deadlift is often used in powerlifting. It requires less hip ROM, making it easier on the back.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Easier on the back</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Suitable for individuals with specific quad or hip requirements</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">Single Leg RDL (Crane)</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">This variation, performed on one leg, requires a lighter load and enhances balance and stability.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Improves stability and balance</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ideal for targeting asymmetrical strength</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Useful for neuromuscular feedback</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<b><span data-contrast=\"auto\">Why Include Deadlifts in Your Training?</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">The deadlift and its variations are excellent for developing hip, knee, and spine extensor strength. Incorporating different versions can keep training interesting and beneficial for clients. It\'s crucial to choose the right variation based on specific goals and capabilities.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Key Takeaway</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">There\'s no wrong movement - only movements that a client may not yet have the capacity for. Using this guide can help you make more informed programming choices for incorporating this powerful strength exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">References</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">BarBend. (2021). The History of the Deadlift: How Did This Lift Become So Popular? Retrieved from BarBend</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Gracovetsky, S. (1988). The Spinal Engine. Vienna: Springer Vienna.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Norris, C. (1995). Spinal Stabilisation. Physiotherapy, 81(2), 61-64.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ross, J., &amp; Ross, J. (2021). Water, Fascia Health, and Concussions. Retrieved from Trainoutpain</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Willard, F., Vleeming, A., Schuenke, M., Danneels, L., &amp; Schleip, R. (2012). The thoracolumbar fascia: anatomy, function, and clinical considerations. Journal of Anatomy, 221(6), 507-536.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>','The Deadlift: A Comprehensive Guide','','inherit','closed','closed','','30719-revision-v1','','','2024-09-19 15:05:57','2024-09-19 15:05:57','',30719,'https://biomechanicseducation.com/?p=40937',0,'revision','',0),(40938,3,'2024-09-19 15:07:07','2024-09-19 15:07:07','<h2>The Deadlift: A Comprehensive Guide</h2>\r\n<span data-contrast=\"auto\">The deadlift is a fundamental strength exercise with significant real-life applications in bending and lifting. Often considered the original strength move, its simplicity and effectiveness have made it a staple in strength training.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Let\'s delve into its variations, benefits, and how coaches can select the best options for their clients.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><b><span data-contrast=\"auto\">The History of the Deadlift</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\r\n<span data-contrast=\"auto\">The deadlift, named for lifting \"dead\" weight from the floor, was popularized by German circus performer Hermann Goerner between 1910-1930. Known as the \"father of the deadlift,\" Goerner showcased remarkable feats of strength, cementing the deadlift\'s place in strength training.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><b><span data-contrast=\"auto\">The Original Deadlift</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\r\n<span data-contrast=\"auto\">The traditional deadlift involves lifting a weight from the floor, demanding significant leg and back strength. This move requires good range of motion (ROM) as the lifter must flex at the knees and hips, similar to a squat but with a greater forward lean.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b>\r\n<ul>\r\n 	<li><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-contrast=\"auto\">Strengthens posterior muscles</span><span style=\"text-indent: -1.25em; font-size: var(--prose-base-font-size); color: var(--clr-text); font-family: var(--font-body); font-weight: var(--font-body-weight);\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Enhances tissue tolerance to heavy loads</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Utilises the thoracolumbar fascia for increased torso strength, contributing an additional 30% strength to the torso (Gracovetsky, 1988)</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3>Variations of the Deadlift</h3>\r\n<b><span data-contrast=\"auto\">Romanian Deadlift (RDL)</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">The RDL starts at the top of the movement, with the bar lifted from a rack. The lifter lowers the bar to the mid/lower shin and then lifts it again, requiring less knee ROM.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Easier on the knees</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ideal for new lifters</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Allows for controlled ROM</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Focuses on hip extensors with reduced knee stress</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3>Stiff Leg Deadlift</h3>\r\n<span data-contrast=\"auto\">Starting similarly to an RDL, this variation involves lowering the bar while keeping the knees straight, emphasizing hip ROM and targeting the glutes and hamstrings.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Greater hip ROM</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Focuses on glute and hamstring strength</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Useful for those with tight sciatic nerves</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3>Sumo Deadlift</h3>\r\n<span data-contrast=\"auto\">With a wider foot position and a narrow hand grip, the sumo deadlift is often used in powerlifting. It requires less hip ROM, making it easier on the back.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Easier on the back</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Suitable for individuals with specific quad or hip requirements</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3>Single Leg RDL (Crane)</h3>\r\n<span data-contrast=\"auto\">This variation, performed on one leg, requires a lighter load and enhances balance and stability.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Benefits:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Improves stability and balance</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ideal for targeting asymmetrical strength</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Useful for neuromuscular feedback</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3>Why Include Deadlifts in Your Training?</h3>\r\n<span data-contrast=\"auto\">The deadlift and its variations are excellent for developing hip, knee, and spine extensor strength. Incorporating different versions can keep training interesting and beneficial for clients. It\'s crucial to choose the right variation based on specific goals and capabilities.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Key Takeaway</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">There\'s no wrong movement - only movements that a client may not yet have the capacity for. Using this guide can help you make more informed programming choices for incorporating this powerful strength exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">References</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">BarBend. (2021). The History of the Deadlift: How Did This Lift Become So Popular? Retrieved from BarBend</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Gracovetsky, S. (1988). The Spinal Engine. Vienna: Springer Vienna.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Norris, C. (1995). Spinal Stabilisation. Physiotherapy, 81(2), 61-64.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ross, J., &amp; Ross, J. (2021). Water, Fascia Health, and Concussions. Retrieved from Trainoutpain</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Willard, F., Vleeming, A., Schuenke, M., Danneels, L., &amp; Schleip, R. (2012). The thoracolumbar fascia: anatomy, function, and clinical considerations. Journal of Anatomy, 221(6), 507-536.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>','The Deadlift: A Comprehensive Guide','','inherit','closed','closed','','30719-revision-v1','','','2024-09-19 15:07:07','2024-09-19 15:07:07','',30719,'https://biomechanicseducation.com/?p=40938',0,'revision','',0),(40939,3,'2024-09-19 15:13:11','2024-09-19 15:13:11','<h2><span class=\"TextRun SCXW80803991 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW80803991 BCX8\">Are Your Clients Really Dealing with Tight Hip Flexors or an Anterior Pelvic Tilt?</span></span><span class=\"EOP SCXW80803991 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">It\'s a common narrative: hours spent at a desk, followed by complaints of tight hip flexors and an anterior pelvic tilt. But before we jump to conclusions, let\'s challenge two misconceptions surrounding hip flexors.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">The Problems:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Who determines the ideal pelvic posture when we\'re all built differently?</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Rarely do we observe a positive Modified Thomas Test on range.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<span data-contrast=\"auto\">While these issues exist, it\'s crucial to explore other factors before making assumptions about our clients\' conditions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Understanding Anterior Tilt:</h3>\r\n<span data-contrast=\"auto\">Anterior tilt isn\'t a diagnosis; it\'s a description of pelvic position relative to anatomical neutral. It occurs when the front hip bones (ASIS) are lower than the back ones (PSIS). But is it \"wrong\" for everyone?</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Assessing Hip Flexors:</h3>\r\n<span data-contrast=\"auto\">Let\'s dive into the anatomy of hip flexors. These muscles, including the Psoas Major and others, play a crucial role in hip flexion. However, blaming tight hip flexors for an anterior tilt isn\'t always accurate.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>The Modified Thomas Test:</h3>\r\n<span data-contrast=\"auto\">To assess hip flexor function, we employ the Modified Thomas Test. This updated version fixes the pelvis at a neutral position, allowing for more precise measurements.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h4><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span><b><span data-contrast=\"auto\">How to Conduct the Test:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span></h4>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Support the client supine, with one leg hanging freely off the table.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Fix the pelvis in a neutral position.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Measure the drop of the hanging leg with precise bony landmarks.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"4\" data-aria-level=\"1\"><span data-contrast=\"auto\">Repeat on both sides for comparison.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<h3>Interpreting the Results:</h3>\r\n<span data-contrast=\"auto\">A good measurement should consider symmetry between both sides. An asymmetry doesn\'t necessarily mean tight hip flexors; other factors may be at play.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Addressing Hip Flexor Dysfunction:</h3>\r\n<span data-contrast=\"auto\">If dysfunction is identified, it\'s crucial to address it effectively. Rather than solely focusing on stretching, consider techniques like Muscle Energy Techniques (MET) and specific strength exercises.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Conclusion:<span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span></h3>\r\n<span data-contrast=\"auto\">Understanding the Modified Thomas Test provides valuable insights into hip flexor function. By assessing accurately and addressing dysfunction effectively, we can help our clients move better and more freely.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Ready to Enhance Your Skills?</h3>\r\n<span data-contrast=\"auto\">If you\'re eager to integrate the Biomechanics Coach System into your practice, click </span><a href=\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> to learn more!</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: left;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\r\nContact us <a href=\"mailto:info@biomechanicseducation.com\">here</a> to find out more.\r\n\r\n<img class=\"aligncenter wp-image-10836 size-full\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png\" alt=\"\" width=\"1225\" height=\"612\" />','Debunking the Tight Hip Flexor Myth: Understanding the Modified Thomas Test','','inherit','closed','closed','','18628-autosave-v1','','','2024-09-19 15:13:11','2024-09-19 15:13:11','',18628,'https://biomechanicseducation.com/?p=40939',0,'revision','',0),(40940,3,'2024-09-19 15:13:05','2024-09-19 15:13:05','<h2><span class=\"TextRun SCXW80803991 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW80803991 BCX8\">Are Your Clients Really Dealing with Tight Hip Flexors or an Anterior Pelvic Tilt?</span></span><span class=\"EOP SCXW80803991 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">It\'s a common narrative: hours spent at a desk, followed by complaints of tight hip flexors and an anterior pelvic tilt. But before we jump to conclusions, let\'s challenge two misconceptions surrounding hip flexors.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">The Problems:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Who determines the ideal pelvic posture when we\'re all built differently?</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Rarely do we observe a positive Modified Thomas Test on range.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<span data-contrast=\"auto\">While these issues exist, it\'s crucial to explore other factors before making assumptions about our clients\' conditions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Understanding Anterior Tilt:</h3>\r\n<span data-contrast=\"auto\">Anterior tilt isn\'t a diagnosis; it\'s a description of pelvic position relative to anatomical neutral. It occurs when the front hip bones (ASIS) are lower than the back ones (PSIS). But is it \"wrong\" for everyone?</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Assessing Hip Flexors:</h3>\r\n<span data-contrast=\"auto\">Let\'s dive into the anatomy of hip flexors. These muscles, including the Psoas Major and others, play a crucial role in hip flexion. However, blaming tight hip flexors for an anterior tilt isn\'t always accurate.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>The Modified Thomas Test:</h3>\r\n<span data-contrast=\"auto\">To assess hip flexor function, we employ the Modified Thomas Test. This updated version fixes the pelvis at a neutral position, allowing for more precise measurements.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h4><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span><b><span data-contrast=\"auto\">How to Conduct the Test:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span></h4>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Support the client supine, with one leg hanging freely off the table.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Fix the pelvis in a neutral position.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Measure the drop of the hanging leg with precise bony landmarks.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"4\" data-aria-level=\"1\"><span data-contrast=\"auto\">Repeat on both sides for comparison.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<h3>Interpreting the Results:</h3>\r\n<span data-contrast=\"auto\">A good measurement should consider symmetry between both sides. An asymmetry doesn\'t necessarily mean tight hip flexors; other factors may be at play.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Addressing Hip Flexor Dysfunction:</h3>\r\n<span data-contrast=\"auto\">If dysfunction is identified, it\'s crucial to address it effectively. Rather than solely focusing on stretching, consider techniques like Muscle Energy Techniques (MET) and specific strength exercises.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Conclusion:<span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span></h3>\r\n<span data-contrast=\"auto\">Understanding the Modified Thomas Test provides valuable insights into hip flexor function. By assessing accurately and addressing dysfunction effectively, we can help our clients move better and more freely.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Ready to Enhance Your Skills?</h3>\r\n<span data-contrast=\"auto\">If you\'re eager to integrate the Biomechanics Coach System into your practice, click </span><a href=\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> to learn more!</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: left;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\r\nContact us <a href=\"mailto:info@biomechanicseducation.com\">here</a> to find out more.\r\n\r\n<img class=\"aligncenter wp-image-10836 size-full\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png\" alt=\"\" width=\"1225\" height=\"612\" />','Debunking the Tight Hip Flexor Myth: Understanding the Modified Thomas Test','','inherit','closed','closed','','18628-revision-v1','','','2024-09-19 15:13:05','2024-09-19 15:13:05','',18628,'https://biomechanicseducation.com/?p=40940',0,'revision','',0),(40941,3,'2024-09-19 15:13:32','2024-09-19 15:13:32','<h2><span class=\"TextRun SCXW80803991 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW80803991 BCX8\">Are Your Clients Really Dealing with Tight Hip Flexors or an Anterior Pelvic Tilt?</span></span><span class=\"EOP SCXW80803991 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">It\'s a common narrative: hours spent at a desk, followed by complaints of tight hip flexors and an anterior pelvic tilt. But before we jump to conclusions, let\'s challenge two misconceptions surrounding hip flexors.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">The Problems:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Who determines the ideal pelvic posture when we\'re all built differently?</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Rarely do we observe a positive Modified Thomas Test on range.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<span data-contrast=\"auto\">While these issues exist, it\'s crucial to explore other factors before making assumptions about our clients\' conditions.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Understanding Anterior Tilt:</h3>\r\n<span data-contrast=\"auto\">Anterior tilt isn\'t a diagnosis; it\'s a description of pelvic position relative to anatomical neutral. It occurs when the front hip bones (ASIS) are lower than the back ones (PSIS). But is it \"wrong\" for everyone?</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Assessing Hip Flexors:</h3>\r\n<span data-contrast=\"auto\">Let\'s dive into the anatomy of hip flexors. These muscles, including the Psoas Major and others, play a crucial role in hip flexion. However, blaming tight hip flexors for an anterior tilt isn\'t always accurate.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>The Modified Thomas Test:</h3>\r\n<span data-contrast=\"auto\">To assess hip flexor function, we employ the Modified Thomas Test. This updated version fixes the pelvis at a neutral position, allowing for more precise measurements.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h4><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span><b><span data-contrast=\"auto\">How to Conduct the Test:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span></h4>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Support the client supine, with one leg hanging freely off the table.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Fix the pelvis in a neutral position.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Measure the drop of the hanging leg with precise bony landmarks.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"4\" data-aria-level=\"1\"><span data-contrast=\"auto\">Repeat on both sides for comparison.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<h3>Interpreting the Results:</h3>\r\n<span data-contrast=\"auto\">A good measurement should consider symmetry between both sides. An asymmetry doesn\'t necessarily mean tight hip flexors; other factors may be at play.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Addressing Hip Flexor Dysfunction:</h3>\r\n<span data-contrast=\"auto\">If dysfunction is identified, it\'s crucial to address it effectively. Rather than solely focusing on stretching, consider techniques like Muscle Energy Techniques (MET) and specific strength exercises.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Conclusion:<span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span></h3>\r\n<span data-contrast=\"auto\">Understanding the Modified Thomas Test provides valuable insights into hip flexor function. By assessing accurately and addressing dysfunction effectively, we can help our clients move better and more freely.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Ready to Enhance Your Skills?</h3>\r\n<span data-contrast=\"auto\">If you\'re eager to integrate the Biomechanics Coach System into your practice, click </span><a href=\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> to learn more!</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: left;\">Ready To Help Your Clients Move Better &amp; More Freely?</h2>\r\nContact us <a href=\"mailto:info@biomechanicseducation.com\">here</a> to find out more.\r\n\r\n<img class=\"aligncenter wp-image-10836 size-full\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png\" alt=\"\" width=\"1225\" height=\"612\" />','Debunking the Tight Hip Flexor Myth: Understanding the Modified Thomas Test','','inherit','closed','closed','','18628-revision-v1','','','2024-09-19 15:13:32','2024-09-19 15:13:32','',18628,'https://biomechanicseducation.com/?p=40941',0,'revision','',0),(40942,3,'2024-09-19 15:30:44','2024-09-19 15:30:44','<img class=\"size-medium wp-image-1338 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/10/Biomechanics-Coach-CMYK-300dpi-300x100.jpg\" alt=\"\" width=\"300\" height=\"100\" />\n\n&nbsp;\n<h3>Introduction:</h3>\n<span data-contrast=\"auto\">In the dynamic realm of functional movement, our bodies ingeniously adapt to compensate for inherent biomechanical imperfections. Rather than passively accommodating these adaptations, a Biomechanics Coach aims to address the root causes, thereby reducing injury risks and optimising performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h3>Philosophy:</h3>\n<span data-contrast=\"auto\">At the heart of our philosophy lies a commitment to challenging conventional training paradigms. We integrate new methodologies like functional training while refining existing practices. By continually evolving, we ensure clients receive comprehensive, effective, and personalised guidance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Understanding Intrinsic Biomechanics:</h3>\n<span data-contrast=\"auto\">Unlike traditional models, our program empowers coaches to evaluate clients\' intrinsic biomechanics. Armed with this knowledge, coaches can tailor interventions that address specific movement patterns and mitigate injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-24100 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/09/DSC01482-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h3>Challenges in Coaching Movement:</h3>\n<span data-contrast=\"auto\">Distinguishing between poor technique and issues rooted in biomechanics poses a central challenge. Sedentary lifestyles, for instance, can lead to subtle pelvic misalignments, disrupting optimal movement patterns. Incorporating intrinsic biomechanics screening enables coaches to design effective interventions.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>The Role of a Biomechanics Coach:</h3>\n<span data-contrast=\"auto\">Operating at the nexus of evidence-based practice and practical application, Biomechanics Coaches employ systematic screening and prehabilitation programs to optimise performance and minimise injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\"size-medium wp-image-33153 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.06.11-300x287.png\" alt=\"\" width=\"300\" height=\"287\" />\n<h3>The 3-Phase System:</h3>\n<b><span data-contrast=\"auto\">Preparation &amp; Capacity: </span></b><span data-contrast=\"auto\">This phase focuses on restoring functional capacity around key areas like the pelvis, spine, and shoulders. Through targeted exercises, coaches address imbalances and enhance mobility.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Stability &amp; Control: </span></b><span data-contrast=\"auto\">Building upon the foundation established in the preparation phase, this stage emphasizes core stability and neuromuscular control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Function &amp; Performance: </span></b><span data-contrast=\"auto\">Coaches shift focus to optimizing functional performance. Through targeted protocols, clients excel in their activities while minimizing injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<img class=\"size-medium wp-image-33154 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.07.28-300x213.png\" alt=\"\" width=\"300\" height=\"213\" />\n<h3>Asking the Right Questions:</h3>\n<b><span data-contrast=\"auto\">Questions like:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<ul>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">How do I select the most suitable exercises for my clients?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Besides increasing reps and sets, how do I progress exercise programmes?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Why choose one exercise over another with similar effects?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">When should I incorporate gym balls or machines into training? These queries highlight the importance of understanding intrinsic biomechanics for effective exercise prescription.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>\n<h3>Qualifications and Finding a Biomechanics Coach:</h3>\n<span data-contrast=\"auto\">Entry into the Diploma in Biomechanics Coaching requires solid anatomy and physiology knowledge. Biomechanics Coaches, equipped with expertise, can be located using the Biomechanics Coach map locator <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Why People Seek Biomechanics Coaching:</h3>\n<span data-contrast=\"auto\">Clients seek Biomechanics Coaching for performance optimisation and injury prevention. By addressing underlying issues, coaches help clients achieve their goals safely and effectively.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-30683 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/DSC03820-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\n<h3>Conclusion:</h3>\n<span data-contrast=\"auto\">The Diploma in Biomechanics Coaching offers a transformative opportunity for coaches seeking to elevate their practice. Rooted in evidence-based principles, our program equips coaches to make a meaningful impact on their clients\' lives.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Ready to Embrace Biomechanics Coaching?</h3>\n<span data-contrast=\"auto\">Reach out to us to explore the possibilities and embark on a journey of discovery and transformation. Together, we can unlock the full potential of human movement and performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-30682 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52ea-300x200.jpeg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<hr />\n\n<h1></h1>\n<h1>Would you like to discuss becoming a Biomechanics Coach?</h1>\nContact us <a href=\"mailto:info@biomechanicseducation\">here</a>\n\n<img class=\" wp-image-28329 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"464\" height=\"309\" />','What is a Biomechanics Coach?','','inherit','closed','closed','','33066-autosave-v1','','','2024-09-19 15:30:44','2024-09-19 15:30:44','',33066,'https://biomechanicseducation.com/?p=40942',0,'revision','',0),(40943,3,'2024-09-19 15:22:42','2024-09-19 15:22:42','<img class=\"size-medium wp-image-1338 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/10/Biomechanics-Coach-CMYK-300dpi-300x100.jpg\" alt=\"\" width=\"300\" height=\"100\" />\r\n\r\n&nbsp;\r\n<h3>Introduction:</h3>\r\n<span data-contrast=\"auto\">In the dynamic realm of functional movement, our bodies ingeniously adapt to compensate for inherent biomechanical imperfections. Rather than passively accommodating these adaptations, a Biomechanics Coach aims to address the root causes, thereby reducing injury risks and optimising performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n<h3>Philosophy:</h3>\r\n<span data-contrast=\"auto\">At the heart of our philosophy lies a commitment to challenging conventional training paradigms. We integrate new methodologies like functional training while refining existing practices. By continually evolving, we ensure clients receive comprehensive, effective, and personalised guidance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Understanding Intrinsic Biomechanics:</h3>\r\n<span data-contrast=\"auto\">Unlike traditional models, our program empowers coaches to evaluate clients\' intrinsic biomechanics. Armed with this knowledge, coaches can tailor interventions that address specific movement patterns and mitigate injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-24100 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/09/DSC01482-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n<h3>Challenges in Coaching Movement:</h3>\r\n<span data-contrast=\"auto\">Distinguishing between poor technique and issues rooted in biomechanics poses a central challenge. Sedentary lifestyles, for instance, can lead to subtle pelvic misalignments, disrupting optimal movement patterns. Incorporating intrinsic biomechanics screening enables coaches to design effective interventions.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>The Role of a Biomechanics Coach:</h3>\r\n<span data-contrast=\"auto\">Operating at the nexus of evidence-based practice and practical application, Biomechanics Coaches employ systematic screening and prehabilitation programs to optimise performance and minimise injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-33153 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.06.11-300x287.png\" alt=\"\" width=\"300\" height=\"287\" />\r\n<h3>The 3-Phase System:</h3>\r\n<b><span data-contrast=\"auto\">Preparation &amp; Capacity: </span></b><span data-contrast=\"auto\">This phase focuses on restoring functional capacity around key areas like the pelvis, spine, and shoulders. Through targeted exercises, coaches address imbalances and enhance mobility.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Stability &amp; Control: </span></b><span data-contrast=\"auto\">Building upon the foundation established in the preparation phase, this stage emphasizes core stability and neuromuscular control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Function &amp; Performance: </span></b><span data-contrast=\"auto\">Coaches shift focus to optimizing functional performance. Through targeted protocols, clients excel in their activities while minimizing injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"size-medium wp-image-33154 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.07.28-300x213.png\" alt=\"\" width=\"300\" height=\"213\" />\r\n<h3>Asking the Right Questions:</h3>\r\n<b><span data-contrast=\"auto\">Questions like:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">How do I select the most suitable exercises for my clients?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Besides increasing reps and sets, how do I progress exercise programmes?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Why choose one exercise over another with similar effects?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">When should I incorporate gym balls or machines into training? These queries highlight the importance of understanding intrinsic biomechanics for effective exercise prescription.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3>Qualifications and Finding a Biomechanics Coach:</h3>\r\n<span data-contrast=\"auto\">Entry into the Diploma in Biomechanics Coaching requires solid anatomy and physiology knowledge. Biomechanics Coaches, equipped with expertise, can be located using the Biomechanics Coach map locator <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Why People Seek Biomechanics Coaching:</h3>\r\n<span data-contrast=\"auto\">Clients seek Biomechanics Coaching for performance optimisation and injury prevention. By addressing underlying issues, coaches help clients achieve their goals safely and effectively.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-30683 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/DSC03820-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n<h3>Conclusion:</h3>\r\n<span data-contrast=\"auto\">The Diploma in Biomechanics Coaching offers a transformative opportunity for coaches seeking to elevate their practice. Rooted in evidence-based principles, our program equips coaches to make a meaningful impact on their clients\' lives.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Ready to Embrace Biomechanics Coaching?</h3>\r\n<span data-contrast=\"auto\">Reach out to us to explore the possibilities and embark on a journey of discovery and transformation. Together, we can unlock the full potential of human movement and performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-30682 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52ea-300x200.jpeg\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<h1></h1>\r\n<h1>Would you like to discuss becoming a Biomechanics Coach?</h1>\r\nContact us <a href=\"mailto:info@biomechanicseducation\">here</a>\r\n\r\n<img class=\"size-medium wp-image-28329 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" />\r\n<h2><a href=\"https://www.biomechanicseducation.com/\" target=\"_blank\" rel=\"noopener\">Why not get in touch HERE</a></h2>\r\nOR info@biomechanicseducation.com','What is a Biomechanics Coach?','','inherit','closed','closed','','33066-revision-v1','','','2024-09-19 15:22:42','2024-09-19 15:22:42','',33066,'https://biomechanicseducation.com/?p=40943',0,'revision','',0),(40944,3,'2024-09-19 15:31:09','2024-09-19 15:31:09','<img class=\"size-medium wp-image-1338 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/10/Biomechanics-Coach-CMYK-300dpi-300x100.jpg\" alt=\"\" width=\"300\" height=\"100\" />\r\n\r\n&nbsp;\r\n<h3>Introduction:</h3>\r\n<span data-contrast=\"auto\">In the dynamic realm of functional movement, our bodies ingeniously adapt to compensate for inherent biomechanical imperfections. Rather than passively accommodating these adaptations, a Biomechanics Coach aims to address the root causes, thereby reducing injury risks and optimising performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"366\" height=\"244\" />\r\n<h3>Philosophy:</h3>\r\n<span data-contrast=\"auto\">At the heart of our philosophy lies a commitment to challenging conventional training paradigms. We integrate new methodologies like functional training while refining existing practices. By continually evolving, we ensure clients receive comprehensive, effective, and personalised guidance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Understanding Intrinsic Biomechanics:</h3>\r\n<span data-contrast=\"auto\">Unlike traditional models, our program empowers coaches to evaluate clients\' intrinsic biomechanics. Armed with this knowledge, coaches can tailor interventions that address specific movement patterns and mitigate injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-24100 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/09/DSC01482-300x200.jpg\" alt=\"\" width=\"384\" height=\"256\" />\r\n<h3>Challenges in Coaching Movement:</h3>\r\n<span data-contrast=\"auto\">Distinguishing between poor technique and issues rooted in biomechanics poses a central challenge. Sedentary lifestyles, for instance, can lead to subtle pelvic misalignments, disrupting optimal movement patterns. Incorporating intrinsic biomechanics screening enables coaches to design effective interventions.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>The Role of a Biomechanics Coach:</h3>\r\n<span data-contrast=\"auto\">Operating at the nexus of evidence-based practice and practical application, Biomechanics Coaches employ systematic screening and prehabilitation programs to optimise performance and minimise injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-33153 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.06.11-300x287.png\" alt=\"\" width=\"419\" height=\"401\" />\r\n<h3>The 3-Phase System:</h3>\r\n<b><span data-contrast=\"auto\">Preparation &amp; Capacity: </span></b><span data-contrast=\"auto\">This phase focuses on restoring functional capacity around key areas like the pelvis, spine, and shoulders. Through targeted exercises, coaches address imbalances and enhance mobility.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Stability &amp; Control: </span></b><span data-contrast=\"auto\">Building upon the foundation established in the preparation phase, this stage emphasizes core stability and neuromuscular control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Function &amp; Performance: </span></b><span data-contrast=\"auto\">Coaches shift focus to optimizing functional performance. Through targeted protocols, clients excel in their activities while minimizing injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"size-medium wp-image-33154 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.07.28-300x213.png\" alt=\"\" width=\"300\" height=\"213\" />\r\n<h3>Asking the Right Questions:</h3>\r\n<b><span data-contrast=\"auto\">Questions like:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">How do I select the most suitable exercises for my clients?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Besides increasing reps and sets, how do I progress exercise programmes?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Why choose one exercise over another with similar effects?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">When should I incorporate gym balls or machines into training? These queries highlight the importance of understanding intrinsic biomechanics for effective exercise prescription.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3>Qualifications and Finding a Biomechanics Coach:</h3>\r\n<span data-contrast=\"auto\">Entry into the Diploma in Biomechanics Coaching requires solid anatomy and physiology knowledge. Biomechanics Coaches, equipped with expertise, can be located using the Biomechanics Coach map locator <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Why People Seek Biomechanics Coaching:</h3>\r\n<span data-contrast=\"auto\">Clients seek Biomechanics Coaching for performance optimisation and injury prevention. By addressing underlying issues, coaches help clients achieve their goals safely and effectively.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\" wp-image-30683 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/DSC03820-300x200.jpg\" alt=\"\" width=\"353\" height=\"235\" />\r\n<h3>Conclusion:</h3>\r\n<span data-contrast=\"auto\">The Diploma in Biomechanics Coaching offers a transformative opportunity for coaches seeking to elevate their practice. Rooted in evidence-based principles, our program equips coaches to make a meaningful impact on their clients\' lives.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Ready to Embrace Biomechanics Coaching?</h3>\r\n<span data-contrast=\"auto\">Reach out to us to explore the possibilities and embark on a journey of discovery and transformation. Together, we can unlock the full potential of human movement and performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-30682 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52ea-300x200.jpeg\" alt=\"\" width=\"300\" height=\"200\" />\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<h1></h1>\r\n<h1>Would you like to discuss becoming a Biomechanics Coach?</h1>\r\nContact us <a href=\"mailto:info@biomechanicseducation\">here</a>\r\n\r\n<img class=\" wp-image-28329 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"464\" height=\"309\" />','What is a Biomechanics Coach?','','inherit','closed','closed','','33066-revision-v1','','','2024-09-19 15:31:09','2024-09-19 15:31:09','',33066,'https://biomechanicseducation.com/?p=40944',0,'revision','',0),(40946,3,'2024-09-20 14:50:30','2024-09-20 14:50:30','<h3>How to Alleviate Back Pain: A Guide for Rugby Players</h3>\nBack pain is a widespread issue, affecting up to 80% of people at some point in their lives, including rugby players. However, traditional diagnostic methods often fall short, with accuracy rates as low as 15-20%. This underscores the need for a new approach to managing back pain.\n<h3>Long term back pain</h3>\nLong-term back pain can lead to further complications as the body compensates for the injury, making diagnosis even more challenging. Rather than merely addressing the symptoms, focusing on the mechanical causes of back pain has shown promising results.\n<h3>Can You Achieve Better Recovery Rates By Looking At The Mechanical Causes?</h3>\nBiomechanics Coaches™ advocate for this approach, which has demonstrated significant improvements in functional capacity compared to traditional treatments. For rugby players, who are prone to back injuries, this method offers a proactive way to manage and prevent pain.\n<h3>How Rugby Players Can Actually Help Their Own Back Pain</h3>\nThis intrinsic biomechanical approach is rapidly establishing itself as a much more effective method of treating back pain, especially for rugby players. Furthermore, the most interesting aspect of this approach is that players can be shown how to look after themselves. This reduces the risk of them becoming reliant upon a particular therapist or doctor and, significantly, their compliance with exercise programmes is higher too.\n\nOf course, no single method can be the panacea of all ills, but we are finding that once the mechanical causes are addressed, the pain can often subside without treatment to the ‘injury’, whatever it might be. Sometimes treatment is also required, although patients find that, once they have committed to an exercise programme that addresses the causes of pain, they are more able to manage the problem themselves. Then, should local treatment still be necessary, it is more likely to be successful, as the mechanical causes are no longer present.\n<h3>The 4-sign test</h3>\n<span data-contrast=\"auto\">The 4-sign test is a valuable tool for assessing back health. By measuring the height difference between crossed knees while seated, players can identify asymmetry that may indicate muscular tightness or spasms contributing to back pain.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Here are the steps of the 4-sign test:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\n<ol>\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sit on a chair or stool and cross one ankle over the opposite knee.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\n 	<li><span data-contrast=\"auto\">Relax the crossed knee down to a comfortable position.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Measure the height difference of the crossed knee to the grounded knee by running an imaginary line through the grounded knee, parallel to the floor, and up to your crossed knee. Your knee should be only 2-3” higher than this line.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\n</ol>\n<img class=\"aligncenter wp-image-1479\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.57.16-1024x576.png\" alt=\"Screen Shot 2017-01-13 at 10.57.16\" width=\"650\" height=\"366\" />\n\n<span class=\"TextRun SCXW147249764 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW147249764 BCX8\">4. Repeat the process with the other leg and compare the height difference between the two sides. Symmetry between the two sides </span><span class=\"NormalTextRun SCXW147249764 BCX8\">indicates</span> <span class=\"NormalTextRun SCXW147249764 BCX8\">a healthy</span><span class=\"NormalTextRun SCXW147249764 BCX8\"> range of movement, while asymmetry may </span><span class=\"NormalTextRun SCXW147249764 BCX8\">indicate</span><span class=\"NormalTextRun SCXW147249764 BCX8\"> tightness or spasm in the hip muscle.</span></span><span class=\"EOP SCXW147249764 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span>\n\n<img class=\"aligncenter wp-image-1480\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.56.55-1024x577.png\" alt=\"Screen Shot 2017-01-13 at 10.56.55\" width=\"650\" height=\"367\" />\n\n<span class=\"TextRun SCXW203353283 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW203353283 BCX8\">Performing the 4-sign exercise can help alleviate tension in the pelvis, relieving pressure on the back and related structures. Consistency is key, and gradual progress should be expected over time.</span></span><span class=\"EOP SCXW203353283 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\n<h3>Conclusion</h3>\n<span data-contrast=\"auto\">Incorporating the 4-sign exercise into warm-up and cool-down routines can enhance performance on the field while reducing the risk of injury.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">By adopting a proactive approach to back pain management and focusing on mechanical causes, rugby players can enjoy greater comfort and performance on and off the field.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">[Download the 4-Sign Release </span><a href=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/01/4signtestexercisepdf_2016.pdf\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\">] to start implementing this effective strategy today.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<a href=\"https://www.youtube.com/watch?v=_Lkur9ZcNXw&amp;t=6s\"><span data-contrast=\"none\">4 Sign Screen &amp; Exercise (youtube.com)</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n&nbsp;','How To Reduce Your Own Back Pain: The Rugby Edition','','inherit','closed','closed','','2283-autosave-v1','','','2024-09-20 14:50:30','2024-09-20 14:50:30','',2283,'https://biomechanicseducation.com/?p=40946',0,'revision','',0),(40947,3,'2024-09-20 14:51:39','2024-09-20 14:51:39','<h3>How to Alleviate Back Pain: A Guide for Rugby Players</h3>\r\nBack pain is a widespread issue, affecting up to 80% of people at some point in their lives, including rugby players. However, traditional diagnostic methods often fall short, with accuracy rates as low as 15-20%. This underscores the need for a new approach to managing back pain.\r\n<h3>Long term back pain</h3>\r\nLong-term back pain can lead to further complications as the body compensates for the injury, making diagnosis even more challenging. Rather than merely addressing the symptoms, focusing on the mechanical causes of back pain has shown promising results.\r\n<h3>Can You Achieve Better Recovery Rates By Looking At The Mechanical Causes?</h3>\r\nBiomechanics Coaches™ advocate for this approach, which has demonstrated significant improvements in functional capacity compared to traditional treatments. For rugby players, who are prone to back injuries, this method offers a proactive way to manage and prevent pain.\r\n<h3>How Rugby Players Can Actually Help Their Own Back Pain</h3>\r\nThis intrinsic biomechanical approach is rapidly establishing itself as a much more effective method of treating back pain, especially for rugby players. Furthermore, the most interesting aspect of this approach is that players can be shown how to look after themselves. This reduces the risk of them becoming reliant upon a particular therapist or doctor and, significantly, their compliance with exercise programmes is higher too.\r\n\r\nOf course, no single method can be the panacea of all ills, but we are finding that once the mechanical causes are addressed, the pain can often subside without treatment to the ‘injury’, whatever it might be. Sometimes treatment is also required, although patients find that, once they have committed to an exercise programme that addresses the causes of pain, they are more able to manage the problem themselves. Then, should local treatment still be necessary, it is more likely to be successful, as the mechanical causes are no longer present.\r\n<h3>The 4-sign test</h3>\r\n<span data-contrast=\"auto\">The 4-sign test is a valuable tool for assessing back health. By measuring the height difference between crossed knees while seated, players can identify asymmetry that may indicate muscular tightness or spasms contributing to back pain.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Here are the steps of the 4-sign test:</span></b><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sit on a chair or stool and cross one ankle over the opposite knee.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Relax the crossed knee down to a comfortable position.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"Aptos\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Measure the height difference of the crossed knee to the grounded knee by running an imaginary line through the grounded knee, parallel to the floor, and up to your crossed knee. Your knee should be only 2-3” higher than this line.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<img class=\"aligncenter wp-image-1479\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.57.16-1024x576.png\" alt=\"Screen Shot 2017-01-13 at 10.57.16\" width=\"650\" height=\"366\" />\r\n\r\n<span class=\"TextRun SCXW147249764 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW147249764 BCX8\">4. Repeat the process with the other leg and compare the height difference between the two sides. Symmetry between the two sides </span><span class=\"NormalTextRun SCXW147249764 BCX8\">indicates</span> <span class=\"NormalTextRun SCXW147249764 BCX8\">a healthy</span><span class=\"NormalTextRun SCXW147249764 BCX8\"> range of movement, while asymmetry may </span><span class=\"NormalTextRun SCXW147249764 BCX8\">indicate</span><span class=\"NormalTextRun SCXW147249764 BCX8\"> tightness or spasm in the hip muscle.</span></span><span class=\"EOP SCXW147249764 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:0,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-1480\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.56.55-1024x577.png\" alt=\"Screen Shot 2017-01-13 at 10.56.55\" width=\"650\" height=\"367\" />\r\n\r\n<span class=\"TextRun SCXW203353283 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW203353283 BCX8\">Performing the 4-sign exercise can help alleviate tension in the pelvis, relieving pressure on the back and related structures. Consistency is key, and gradual progress should be expected over time.</span></span><span class=\"EOP SCXW203353283 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Conclusion</h3>\r\n<span data-contrast=\"auto\">Incorporating the 4-sign exercise into warm-up and cool-down routines can enhance performance on the field while reducing the risk of injury.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">By adopting a proactive approach to back pain management and focusing on mechanical causes, rugby players can enjoy greater comfort and performance on and off the field.</span><span data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335559738&quot;:240,&quot;335559739&quot;:240,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">[Download the 4-Sign Release </span><a href=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/01/4signtestexercisepdf_2016.pdf\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\">] to start implementing this effective strategy today.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<a href=\"https://www.youtube.com/watch?v=_Lkur9ZcNXw&amp;t=6s\"><span data-contrast=\"none\">4 Sign Screen &amp; Exercise (youtube.com)</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','How To Reduce Your Own Back Pain: The Rugby Edition','','inherit','closed','closed','','2283-revision-v1','','','2024-09-20 14:51:39','2024-09-20 14:51:39','',2283,'https://biomechanicseducation.com/?p=40947',0,'revision','',0),(40948,3,'2024-09-20 15:02:02','2024-09-20 15:02:02','<h3>Spine Biomechanics Part 4 – The Muscles of the Spine</h3>\n<b><span data-contrast=\"auto\">Introduction</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Understanding the intricate web of muscles around your spine is like unlocking the secret to its strength and flexibility. In this guide, we\'ll dive deep into the core muscles that hold the key to a healthy and agile spine.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Core Muscles</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\"> The Backbone of Stability When we talk about core muscles, we\'re essentially talking about the muscles that have a direct impact on your spine\'s health and stability. Let\'s break them down for a better understanding of how they work together to keep your spine in top shape.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Transversospinalis Group</h3>\n<span data-contrast=\"auto\">These muscles, nestled deep within your core, act like your body\'s own internal support system. They stabilize your spine, allowing for controlled movements without compromising on stability.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Task: </span></b><span data-contrast=\"auto\">Ever wondered why you feel so steady when you stand up straight? That\'s these muscles kicking in to keep your spine solid as a rock. Try standing up and feel them in action.</span>\n\n<b><img class=\"aligncenter wp-image-25119\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1709130394-scaled.jpg\" alt=\"\" width=\"504\" height=\"504\" /></b>\n\n&nbsp;\n\n<b><span data-contrast=\"auto\">Multifidus</span></b><span data-contrast=\"auto\">: Think of the Multifidus as the backbone\'s best friend – thick, strong, and always there to lend support. Regular movement keeps them lean and mean, ensuring your spine stays healthy and happy.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Task: </span></b><span data-contrast=\"auto\">Give these muscles some love by incorporating movements that activate and strengthen them. Your spine will thank you later.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Rotatores</h3>\n<span data-contrast=\"auto\">These little guys might be small, but they play a big role in keeping your spine flexible and agile. They\'re like the lace-up corset of your spine, providing support without restricting movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Semispinalis</h3>\n<span data-contrast=\"auto\">From your neck to your thoracic spine, the Semispinalis muscles are like the unsung heroes of your core. They work tirelessly to keep your spine stable and mobile, no matter what life throws your way.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Erecta Spinae Group</h3>\n<span data-contrast=\"auto\">Picture these muscles as the sturdy pillars holding up your spine. They\'re not just there to look pretty – they\'re essential for preventing your spine from bending too far forward and causing injury.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span class=\"TextRun SCXW143920741 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW143920741 BCX8\">Task: </span></span><span class=\"TextRun SCXW143920741 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW143920741 BCX8\">Stand up and feel these muscles engage as you lean forward slightly. Notice how they kick into action to keep your spine </span><span class=\"NormalTextRun SCXW143920741 BCX8\">safe and sound</span><span class=\"NormalTextRun SCXW143920741 BCX8\">.</span></span><span class=\"EOP SCXW143920741 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Longissimus</h3>\n<span style=\"font-weight: 400;\">This is obviously the longest one due to its name! To the side (lateral to) of the semispinalis muscles. Travelling from rectus abdominus to the transverse process.</span>\n<h3>Iliocostalis <i> </i></h3>\n<i><span style=\"font-weight: 400;\">(ilio - from the ilium costalis - to the ribs)</span></i><span style=\"font-weight: 400;\"> - attaches from the most lateral portion of ribs, to the sacrum, the iliac crest, spinous &amp; transverse processes.</span>\n<h3>Spinalis<span style=\"font-weight: 400;\"> </span></h3>\n<span style=\"font-weight: 400;\">The most medial sibling of the group, splits into spinalis dorsi, spinalis cervicis &amp; spinalis capitis. Travelling into the spinous processes &amp; occiput at the back of the head.</span>\n\n&nbsp;\n<h2><b><img class=\"aligncenter wp-image-25121\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1800824056-scaled-1.jpg\" alt=\"\" width=\"581\" height=\"581\" />Quadratus Lumborum </b></h2>\n<span data-contrast=\"auto\">Meet the spine\'s notorious troublemaker – the Quadratus Lumborum. Despite its reputation, it\'s actually crucial for maintaining spinal alignment and keeping you moving with ease.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Task</span></b><span data-contrast=\"auto\">: Pay attention to how your spine feels as you lift one hip. That\'s the Quadratus Lumborum at work, ensuring your spine stays straight and strong.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n<img class=\"aligncenter wp-image-25099\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1544639351-scaled.jpg\" alt=\"\" width=\"427\" height=\"570\" />\n<h2><b>The Abdominals</b></h2>\n<span style=\"font-weight: 400;\">This group is often considered ‘the core’ by clients since their focus is on the front &amp; sides of their torso or the parts they can see.</span>\n\n<span style=\"font-weight: 400;\">They all dream of a </span><i><span style=\"font-weight: 400;\">6 pack stomach </span></i><span style=\"font-weight: 400;\">&amp; see adverts about how they can get one in 12 weeks or even 6 weeks or if they follow someone with abs showing on Instagram. You can even download an app that superimposes abs onto your photo…for goodness sake!</span>\n\n<span style=\"font-weight: 400;\">The ‘abs’ are written about in magazines as an area to focus on when considering strengthening the core </span><i><span style=\"font-weight: 400;\">for that washboard abs look! </span></i>\n\n<span style=\"font-weight: 400;\">We should understand them better anatomically to understand how to ‘condition’ them for function &amp; therefore result in whatever is achievable realistically in terms of aesthetics. </span>\n\n<span style=\"font-weight: 400;\">Anyway, we all have a 6 pack underneath the skin, and they have an important job to do!</span>\n<h2><b>Rectus abdominus </b></h2>\n<span style=\"font-weight: 400;\">Rectus means</span> <i><span style=\"font-weight: 400;\">straight </span></i><span style=\"font-weight: 400;\">&amp; abdominis relating to the abdomen. Now this could logically be classified as a core muscle. However when looking at its attachments it does not actually attach directly to the spine but instead to the pubic symphysis (behind the pubes), to the xiphoid process (bottom of the sternum) &amp; the costal cartilages of ribs 5-7. </span>\n\n<span style=\"font-weight: 400;\">Generally considered as a flexor of the spine (&amp; of course it will flex the spine) however its main purpose is probably to act as part of the ‘hydraulic amplifier’ mechanism. This is where Transverse Abdominis (TA) &amp; the thoraco-lumbar fascia create tension to stabilise the spine when performing tasks that require spinal stability. </span>\n\n<span style=\"font-weight: 400;\">The tendinous junctions of rectus abdominis are designed to help mitigate the lateral forces created by the TA contraction and help with the efficiency of the amplifier. (FANTASTIC BOOK -</span><i><span style=\"font-weight: 400;\">Spinal Engine, Gracovetsky, March 1989</span></i><span style=\"font-weight: 400;\">).</span>\n\n&nbsp;\n\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-25123\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641526-scaled.jpg\" alt=\"\" width=\"436\" height=\"581\" />The Oblique Non-identical Twins (I LOVE the obliques) are considering lateral flexors &amp; again they do assist this action however their role is far more important than that when you study their fibres &amp; the lines of pull they are capable of with the attachments they cling onto….</span>\n<h2><b>Internal obliques </b></h2>\n<span style=\"font-weight: 400;\">This layer travels from the front (</span><span style=\"font-weight: 400;\">Anterior) of the iliac crest, lateral half of inguinal (of the groin) ligament, to the thoracolumbar fascia (big diamond shaped fascial sheet on the lower back) onto the costal cartilages of ribs 8-12; Also via the abdominal aponeurosis to the linea alba (the fascial line down the middle of the tummy of the middle of that 6 pack!)</span>\n<h2><b>External obliques </b></h2>\n<span style=\"font-weight: 400;\">External surfaces of ribs 5-12. ... At the midclavicular (middle of the clavicle) line medially &amp; spinoumbilical line inferiorly, external abdominal oblique continues as an aponeurosis via which it inserts to the linea alba, pubic tubercle &amp; anterior half of iliac crest.</span>\n\n&nbsp;\n<h2><img class=\"aligncenter wp-image-25125\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666655449-scaled.jpg\" alt=\"\" width=\"607\" height=\"607\" /></h2>\n&nbsp;\n\n<img class=\"aligncenter wp-image-25124\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666658332-scaled.jpg\" alt=\"\" width=\"608\" height=\"608\" />\n<h2 style=\"text-align: left;\"><b>Transverse Abdominis (TVA) </b></h2>\n<span style=\"font-weight: 400;\">(or unmoving point) of the TA muscles is on the costal (rib) margin, iliac crest, &amp; inguinal ligament. The insertion (or moveable piece) of the TA muscles is located on the xiphoid process, symphysis pubis, &amp; linea alba….hopefully by now we are starting to remember some of these terminologies! </span>\n\n&nbsp;\n<h2><b><img class=\"aligncenter wp-image-25126\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641502-scaled.jpg\" alt=\"\" width=\"391\" height=\"522\" />Hip flexors  </b></h2>\n<span style=\"font-weight: 400;\"> See pelvis <a href=\"https://www.biomechanicseducation.com/pelvic-hip-biomechanics-part-1-the-muscles-of-the-hip/\" target=\"_blank\" rel=\"noopener noreferrer\">CLICK HERE</a></span>\n<h2><b>Diaphragm </b></h2>\n<span style=\"font-weight: 400;\">Greek word <em>diaphragma</em> meaning partition or barrier. Primarily it is attached to the sternum at the xiphoid process, the lower six ribs &amp; the spaces in between, also the lower part of the spine. ... The spinal attachment is in the upper lumbar section. The diaphragm\'s insertion point is called the central tendon.</span>\n\n&nbsp;\n<h3><b><img class=\"aligncenter wp-image-25127\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_303082082-scaled.jpg\" alt=\"\" width=\"387\" height=\"516\" /></b>Interesting facts</h3>\n<span style=\"font-weight: 400;\">No one muscle, or muscle group, is more important than any other.  Many will talk of Transverse Abdominis (TVA or TA) &amp; Multifidus as the most important muscles in the core, but if only one group or muscle of the full range of stability muscles is not functioning correctly, then the trunk is unstable.</span><span style=\"font-weight: 400;\">\n</span><span style=\"font-weight: 400;\"> (</span><i><span style=\"font-weight: 400;\">Cholwewicki and McGill, 1996, O’Sullivan et al, 1997, 1998, Allison et al, 1998)</span></i>\n\n<span style=\"font-weight: 400;\">Trunk or core stability in motion should be a reflex reaction as opposed to a conscious effort….like core stability training.</span>\n\n<span style=\"font-weight: 400;\">The core muscles are often inhibited in cases of low back pain.</span>\n\n<span style=\"font-weight: 400;\">Psoas Major &amp; also Latissimus Dorsi could (&amp; probably should) be deemed ‘core’ muscles based on their involvement in trunk/spine stability &amp; connecting the upper &amp; lower body</span>\n<h3>Conclusion</h3>\n<span data-contrast=\"auto\">Understanding your core muscles is like having the keys to a strong and resilient spine. By giving them the attention they deserve through targeted exercises and movements, you\'ll not only improve stability but also reduce the risk of injury and keep your spine functioning at its best.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>','Spine Biomechanics Part 4 - The Muscles of the Spine','','inherit','closed','closed','','25092-autosave-v1','','','2024-09-20 15:02:02','2024-09-20 15:02:02','',25092,'https://biomechanicseducation.com/?p=40948',0,'revision','',0),(40949,3,'2024-09-20 15:00:57','2024-09-20 15:00:57','<h3>Spine Biomechanics Part 4 – The Muscles of the Spine</h3>\r\n<b><span data-contrast=\"auto\">Introduction</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Understanding the intricate web of muscles around your spine is like unlocking the secret to its strength and flexibility. In this guide, we\'ll dive deep into the core muscles that hold the key to a healthy and agile spine.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Core Muscles</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"> The Backbone of Stability When we talk about core muscles, we\'re essentially talking about the muscles that have a direct impact on your spine\'s health and stability. Let\'s break them down for a better understanding of how they work together to keep your spine in top shape.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Transversospinalis Group</h3>\r\n<span data-contrast=\"auto\">These muscles, nestled deep within your core, act like your body\'s own internal support system. They stabilize your spine, allowing for controlled movements without compromising on stability.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Task: </span></b><span data-contrast=\"auto\">Ever wondered why you feel so steady when you stand up straight? That\'s these muscles kicking in to keep your spine solid as a rock. Try standing up and feel them in action.</span>\r\n\r\n<b><img class=\"aligncenter wp-image-25119\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1709130394-scaled.jpg\" alt=\"\" width=\"504\" height=\"504\" /></b>\r\n\r\n<b><span data-contrast=\"auto\">Multifidus</span></b><span data-contrast=\"auto\">: Think of the Multifidus as the backbone\'s best friend – thick, strong, and always there to lend support. Regular movement keeps them lean and mean, ensuring your spine stays healthy and happy.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Task: </span></b><span data-contrast=\"auto\">Give these muscles some love by incorporating movements that activate and strengthen them. Your spine will thank you later.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Rotatores</h3>\r\n<span data-contrast=\"auto\">These little guys might be small, but they play a big role in keeping your spine flexible and agile. They\'re like the lace-up corset of your spine, providing support without restricting movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Semispinalis</h3>\r\n<span data-contrast=\"auto\"> From your neck to your thoracic spine, the Semispinalis muscles are like the unsung heroes of your core. They work tirelessly to keep your spine stable and mobile, no matter what life throws your way.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Erecta Spinae Group</h3>\r\n<span data-contrast=\"auto\">Picture these muscles as the sturdy pillars holding up your spine. They\'re not just there to look pretty – they\'re essential for preventing your spine from bending too far forward and causing injury.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25096\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-30-at-09.38.00.png\" alt=\"\" width=\"334\" height=\"420\" />\r\n\r\n&nbsp;\r\n\r\n<span class=\"TextRun SCXW143920741 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW143920741 BCX8\">Task: </span></span><span class=\"TextRun SCXW143920741 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW143920741 BCX8\">Stand up and feel these muscles engage as you lean forward slightly. Notice how they kick into action to keep your spine </span><span class=\"NormalTextRun SCXW143920741 BCX8\">safe and sound</span><span class=\"NormalTextRun SCXW143920741 BCX8\">.</span></span><span class=\"EOP SCXW143920741 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Longissimus</h3>\r\n<span style=\"font-weight: 400;\">This is obviously the longest one due to its name! To the side (lateral to) of the semispinalis muscles. Travelling from rectus abdominus to the transverse process.</span>\r\n<h3>Iliocostalis <i> </i></h3>\r\n<i><span style=\"font-weight: 400;\">(ilio - from the ilium costalis - to the ribs)</span></i><span style=\"font-weight: 400;\"> - attaches from the most lateral portion of ribs, to the sacrum, the iliac crest, spinous &amp; transverse processes.</span>\r\n<h3>Spinalis<span style=\"font-weight: 400;\"> </span></h3>\r\n<span style=\"font-weight: 400;\">The most medial sibling of the group, splits into spinalis dorsi, spinalis cervicis &amp; spinalis capitis. Travelling into the spinous processes &amp; occiput at the back of the head.</span>\r\n\r\n&nbsp;\r\n<h2><b><img class=\"aligncenter wp-image-25121\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1800824056-scaled-1.jpg\" alt=\"\" width=\"581\" height=\"581\" />Quadratus Lumborum </b></h2>\r\n<span data-contrast=\"auto\">Meet the spine\'s notorious troublemaker – the Quadratus Lumborum. Despite its reputation, it\'s actually crucial for maintaining spinal alignment and keeping you moving with ease.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Task</span></b><span data-contrast=\"auto\">: Pay attention to how your spine feels as you lift one hip. That\'s the Quadratus Lumborum at work, ensuring your spine stays straight and strong.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25099\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1544639351-scaled.jpg\" alt=\"\" width=\"427\" height=\"570\" />\r\n<h2><b>The Abdominals</b></h2>\r\n<span style=\"font-weight: 400;\">This group is often considered ‘the core’ by clients since their focus is on the front &amp; sides of their torso or the parts they can see.</span>\r\n\r\n<span style=\"font-weight: 400;\">They all dream of a </span><i><span style=\"font-weight: 400;\">6 pack stomach </span></i><span style=\"font-weight: 400;\">&amp; see adverts about how they can get one in 12 weeks or even 6 weeks or if they follow someone with abs showing on Instagram. You can even download an app that superimposes abs onto your photo…for goodness sake!</span>\r\n\r\n<span style=\"font-weight: 400;\">The ‘abs’ are written about in magazines as an area to focus on when considering strengthening the core </span><i><span style=\"font-weight: 400;\">for that washboard abs look! </span></i>\r\n\r\n<span style=\"font-weight: 400;\">We should understand them better anatomically to understand how to ‘condition’ them for function &amp; therefore result in whatever is achievable realistically in terms of aesthetics. </span>\r\n\r\n<span style=\"font-weight: 400;\">Anyway, we all have a 6 pack underneath the skin, and they have an important job to do!</span>\r\n<h2><b>Rectus abdominus </b></h2>\r\n<span style=\"font-weight: 400;\">Rectus means</span> <i><span style=\"font-weight: 400;\">straight </span></i><span style=\"font-weight: 400;\">&amp; abdominis relating to the abdomen. Now this could logically be classified as a core muscle. However when looking at its attachments it does not actually attach directly to the spine but instead to the pubic symphysis (behind the pubes), to the xiphoid process (bottom of the sternum) &amp; the costal cartilages of ribs 5-7. </span>\r\n\r\n<span style=\"font-weight: 400;\">Generally considered as a flexor of the spine (&amp; of course it will flex the spine) however its main purpose is probably to act as part of the ‘hydraulic amplifier’ mechanism. This is where Transverse Abdominis (TA) &amp; the thoraco-lumbar fascia create tension to stabilise the spine when performing tasks that require spinal stability. </span>\r\n\r\n<span style=\"font-weight: 400;\">The tendinous junctions of rectus abdominis are designed to help mitigate the lateral forces created by the TA contraction and help with the efficiency of the amplifier. (FANTASTIC BOOK -</span><i><span style=\"font-weight: 400;\">Spinal Engine, Gracovetsky, March 1989</span></i><span style=\"font-weight: 400;\">).</span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-25123\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641526-scaled.jpg\" alt=\"\" width=\"436\" height=\"581\" />The Oblique Non-identical Twins (I LOVE the obliques) are considering lateral flexors &amp; again they do assist this action however their role is far more important than that when you study their fibres &amp; the lines of pull they are capable of with the attachments they cling onto….</span>\r\n<h2><b>Internal obliques </b></h2>\r\n<span style=\"font-weight: 400;\">This layer travels from the front (</span><span style=\"font-weight: 400;\">Anterior) of the iliac crest, lateral half of inguinal (of the groin) ligament, to the thoracolumbar fascia (big diamond shaped fascial sheet on the lower back) onto the costal cartilages of ribs 8-12; Also via the abdominal aponeurosis to the linea alba (the fascial line down the middle of the tummy of the middle of that 6 pack!)</span>\r\n<h2><b>External obliques </b></h2>\r\n<span style=\"font-weight: 400;\">External surfaces of ribs 5-12. ... At the midclavicular (middle of the clavicle) line medially &amp; spinoumbilical line inferiorly, external abdominal oblique continues as an aponeurosis via which it inserts to the linea alba, pubic tubercle &amp; anterior half of iliac crest.</span>\r\n\r\n&nbsp;\r\n<h2><img class=\"aligncenter wp-image-25125\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666655449-scaled.jpg\" alt=\"\" width=\"607\" height=\"607\" /></h2>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25124\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666658332-scaled.jpg\" alt=\"\" width=\"608\" height=\"608\" />\r\n<h2 style=\"text-align: left;\"><b>Transverse Abdominis (TVA) </b></h2>\r\n<span style=\"font-weight: 400;\">(or unmoving point) of the TA muscles is on the costal (rib) margin, iliac crest, &amp; inguinal ligament. The insertion (or moveable piece) of the TA muscles is located on the xiphoid process, symphysis pubis, &amp; linea alba….hopefully by now we are starting to remember some of these terminologies! </span>\r\n\r\n&nbsp;\r\n<h2><b><img class=\"aligncenter wp-image-25126\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641502-scaled.jpg\" alt=\"\" width=\"391\" height=\"522\" />Hip flexors  </b></h2>\r\n<span style=\"font-weight: 400;\"> See pelvis <a href=\"https://www.biomechanicseducation.com/pelvic-hip-biomechanics-part-1-the-muscles-of-the-hip/\" target=\"_blank\" rel=\"noopener noreferrer\">CLICK HERE</a></span>\r\n<h2><b>Diaphragm </b></h2>\r\n<span style=\"font-weight: 400;\">Greek word <em>diaphragma</em> meaning partition or barrier. Primarily it is attached to the sternum at the xiphoid process, the lower six ribs &amp; the spaces in between, also the lower part of the spine. ... The spinal attachment is in the upper lumbar section. The diaphragm\'s insertion point is called the central tendon.</span>\r\n\r\n&nbsp;\r\n<h3><b><img class=\"aligncenter wp-image-25127\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_303082082-scaled.jpg\" alt=\"\" width=\"387\" height=\"516\" /></b>Interesting facts</h3>\r\n<span style=\"font-weight: 400;\">No one muscle, or muscle group, is more important than any other.  Many will talk of Transverse Abdominis (TVA or TA) &amp; Multifidus as the most important muscles in the core, but if only one group or muscle of the full range of stability muscles is not functioning correctly, then the trunk is unstable.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\"> (</span><i><span style=\"font-weight: 400;\">Cholwewicki and McGill, 1996, O’Sullivan et al, 1997, 1998, Allison et al, 1998)</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Trunk or core stability in motion should be a reflex reaction as opposed to a conscious effort….like core stability training.</span>\r\n\r\n<span style=\"font-weight: 400;\">The core muscles are often inhibited in cases of low back pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">Psoas Major &amp; also Latissimus Dorsi could (&amp; probably should) be deemed ‘core’ muscles based on their involvement in trunk/spine stability &amp; connecting the upper &amp; lower body</span>\r\n<h3>Conclusion</h3>\r\n<span data-contrast=\"auto\">Understanding your core muscles is like having the keys to a strong and resilient spine. By giving them the attention they deserve through targeted exercises and movements, you\'ll not only improve stability but also reduce the risk of injury and keep your spine functioning at its best.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>','Spine Biomechanics Part 4 - The Muscles of the Spine','','inherit','closed','closed','','25092-revision-v1','','','2024-09-20 15:00:57','2024-09-20 15:00:57','',25092,'https://biomechanicseducation.com/?p=40949',0,'revision','',0),(40950,3,'2024-09-20 15:02:48','2024-09-20 15:02:48','<h3>Spine Biomechanics Part 4 – The Muscles of the Spine</h3>\r\n<b><span data-contrast=\"auto\">Introduction</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Understanding the intricate web of muscles around your spine is like unlocking the secret to its strength and flexibility. In this guide, we\'ll dive deep into the core muscles that hold the key to a healthy and agile spine.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Core Muscles</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">The Backbone of Stability When we talk about core muscles, we\'re essentially talking about the muscles that have a direct impact on your spine\'s health and stability. Let\'s break them down for a better understanding of how they work together to keep your spine in top shape.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Transversospinalis Group</h3>\r\n<span data-contrast=\"auto\">These muscles, nestled deep within your core, act like your body\'s own internal support system. They stabilize your spine, allowing for controlled movements without compromising on stability.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Task: </span></b><span data-contrast=\"auto\">Ever wondered why you feel so steady when you stand up straight? That\'s these muscles kicking in to keep your spine solid as a rock. Try standing up and feel them in action.</span>\r\n\r\n<b><img class=\"aligncenter wp-image-25119\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1709130394-scaled.jpg\" alt=\"\" width=\"504\" height=\"504\" /></b>\r\n\r\n&nbsp;\r\n\r\n<b><span data-contrast=\"auto\">Multifidus</span></b><span data-contrast=\"auto\">: Think of the Multifidus as the backbone\'s best friend – thick, strong, and always there to lend support. Regular movement keeps them lean and mean, ensuring your spine stays healthy and happy.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Task: </span></b><span data-contrast=\"auto\">Give these muscles some love by incorporating movements that activate and strengthen them. Your spine will thank you later.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Rotatores</h3>\r\n<span data-contrast=\"auto\">These little guys might be small, but they play a big role in keeping your spine flexible and agile. They\'re like the lace-up corset of your spine, providing support without restricting movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Semispinalis</h3>\r\n<span data-contrast=\"auto\">From your neck to your thoracic spine, the Semispinalis muscles are like the unsung heroes of your core. They work tirelessly to keep your spine stable and mobile, no matter what life throws your way.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Erecta Spinae Group</h3>\r\n<span data-contrast=\"auto\">Picture these muscles as the sturdy pillars holding up your spine. They\'re not just there to look pretty – they\'re essential for preventing your spine from bending too far forward and causing injury.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW143920741 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW143920741 BCX8\">Task: </span></span></strong><span class=\"TextRun SCXW143920741 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW143920741 BCX8\">Stand up and feel these muscles engage as you lean forward slightly. Notice how they kick into action to keep your spine </span><span class=\"NormalTextRun SCXW143920741 BCX8\">safe and sound</span><span class=\"NormalTextRun SCXW143920741 BCX8\">.</span></span><span class=\"EOP SCXW143920741 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Longissimus</h3>\r\n<span style=\"font-weight: 400;\">This is obviously the longest one due to its name! To the side (lateral to) of the semispinalis muscles. Travelling from rectus abdominus to the transverse process.</span>\r\n<h3>Iliocostalis <i> </i></h3>\r\n<i><span style=\"font-weight: 400;\">(ilio - from the ilium costalis - to the ribs)</span></i><span style=\"font-weight: 400;\"> - attaches from the most lateral portion of ribs, to the sacrum, the iliac crest, spinous &amp; transverse processes.</span>\r\n<h3>Spinalis<span style=\"font-weight: 400;\"> </span></h3>\r\n<span style=\"font-weight: 400;\">The most medial sibling of the group, splits into spinalis dorsi, spinalis cervicis &amp; spinalis capitis. Travelling into the spinous processes &amp; occiput at the back of the head.</span>\r\n\r\n&nbsp;\r\n<h2><b><img class=\"aligncenter wp-image-25121\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1800824056-scaled-1.jpg\" alt=\"\" width=\"581\" height=\"581\" /></b></h2>\r\n<h2><b>Quadratus Lumborum </b></h2>\r\n<span data-contrast=\"auto\">Meet the spine\'s notorious troublemaker – the Quadratus Lumborum. Despite its reputation, it\'s actually crucial for maintaining spinal alignment and keeping you moving with ease.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Task</span></b><span data-contrast=\"auto\">: Pay attention to how your spine feels as you lift one hip. That\'s the Quadratus Lumborum at work, ensuring your spine stays straight and strong.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25099\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1544639351-scaled.jpg\" alt=\"\" width=\"427\" height=\"570\" />\r\n<h2><b>The Abdominals</b></h2>\r\n<span style=\"font-weight: 400;\">This group is often considered ‘the core’ by clients since their focus is on the front &amp; sides of their torso or the parts they can see.</span>\r\n\r\n<span style=\"font-weight: 400;\">They all dream of a </span><i><span style=\"font-weight: 400;\">6 pack stomach </span></i><span style=\"font-weight: 400;\">&amp; see adverts about how they can get one in 12 weeks or even 6 weeks or if they follow someone with abs showing on Instagram. You can even download an app that superimposes abs onto your photo…for goodness sake!</span>\r\n\r\n<span style=\"font-weight: 400;\">The ‘abs’ are written about in magazines as an area to focus on when considering strengthening the core </span><i><span style=\"font-weight: 400;\">for that washboard abs look! </span></i>\r\n\r\n<span style=\"font-weight: 400;\">We should understand them better anatomically to understand how to ‘condition’ them for function &amp; therefore result in whatever is achievable realistically in terms of aesthetics. </span>\r\n\r\n<span style=\"font-weight: 400;\">Anyway, we all have a 6 pack underneath the skin, and they have an important job to do!</span>\r\n<h2><b>Rectus abdominus </b></h2>\r\n<span style=\"font-weight: 400;\">Rectus means</span> <i><span style=\"font-weight: 400;\">straight </span></i><span style=\"font-weight: 400;\">&amp; abdominis relating to the abdomen. Now this could logically be classified as a core muscle. However when looking at its attachments it does not actually attach directly to the spine but instead to the pubic symphysis (behind the pubes), to the xiphoid process (bottom of the sternum) &amp; the costal cartilages of ribs 5-7. </span>\r\n\r\n<span style=\"font-weight: 400;\">Generally considered as a flexor of the spine (&amp; of course it will flex the spine) however its main purpose is probably to act as part of the ‘hydraulic amplifier’ mechanism. This is where Transverse Abdominis (TA) &amp; the thoraco-lumbar fascia create tension to stabilise the spine when performing tasks that require spinal stability. </span>\r\n\r\n<span style=\"font-weight: 400;\">The tendinous junctions of rectus abdominis are designed to help mitigate the lateral forces created by the TA contraction and help with the efficiency of the amplifier. (FANTASTIC BOOK -</span><i><span style=\"font-weight: 400;\">Spinal Engine, Gracovetsky, March 1989</span></i><span style=\"font-weight: 400;\">).</span>\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-25123\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641526-scaled.jpg\" alt=\"\" width=\"436\" height=\"581\" /></span>\r\n\r\n<span style=\"font-weight: 400;\">The Oblique Non-identical Twins (I LOVE the obliques) are considering lateral flexors &amp; again they do assist this action however their role is far more important than that when you study their fibres &amp; the lines of pull they are capable of with the attachments they cling onto….</span>\r\n<h2><b>Internal obliques </b></h2>\r\n<span style=\"font-weight: 400;\">This layer travels from the front (</span><span style=\"font-weight: 400;\">Anterior) of the iliac crest, lateral half of inguinal (of the groin) ligament, to the thoracolumbar fascia (big diamond shaped fascial sheet on the lower back) onto the costal cartilages of ribs 8-12; Also via the abdominal aponeurosis to the linea alba (the fascial line down the middle of the tummy of the middle of that 6 pack!)</span>\r\n<h2><b>External obliques </b></h2>\r\n<span style=\"font-weight: 400;\">External surfaces of ribs 5-12. ... At the midclavicular (middle of the clavicle) line medially &amp; spinoumbilical line inferiorly, external abdominal oblique continues as an aponeurosis via which it inserts to the linea alba, pubic tubercle &amp; anterior half of iliac crest.</span>\r\n\r\n&nbsp;\r\n<h2><img class=\"aligncenter wp-image-25125\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666655449-scaled.jpg\" alt=\"\" width=\"607\" height=\"607\" /></h2>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-25124\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666658332-scaled.jpg\" alt=\"\" width=\"608\" height=\"608\" />\r\n<h2 style=\"text-align: left;\"><b>Transverse Abdominis (TVA) </b></h2>\r\n<span style=\"font-weight: 400;\">(or unmoving point) of the TA muscles is on the costal (rib) margin, iliac crest, &amp; inguinal ligament. The insertion (or moveable piece) of the TA muscles is located on the xiphoid process, symphysis pubis, &amp; linea alba….hopefully by now we are starting to remember some of these terminologies! </span>\r\n\r\n&nbsp;\r\n<h2><b><img class=\"aligncenter wp-image-25126\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641502-scaled.jpg\" alt=\"\" width=\"391\" height=\"522\" /></b></h2>\r\n<h2><b>Hip flexors  </b></h2>\r\n<span style=\"font-weight: 400;\"> See pelvis <a href=\"https://www.biomechanicseducation.com/pelvic-hip-biomechanics-part-1-the-muscles-of-the-hip/\" target=\"_blank\" rel=\"noopener noreferrer\">CLICK HERE</a></span>\r\n<h2><b>Diaphragm </b></h2>\r\n<span style=\"font-weight: 400;\">Greek word <em>diaphragma</em> meaning partition or barrier. Primarily it is attached to the sternum at the xiphoid process, the lower six ribs &amp; the spaces in between, also the lower part of the spine. ... The spinal attachment is in the upper lumbar section. The diaphragm\'s insertion point is called the central tendon.</span>\r\n\r\n&nbsp;\r\n<h3><b><img class=\"aligncenter wp-image-25127\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_303082082-scaled.jpg\" alt=\"\" width=\"387\" height=\"516\" /></b></h3>\r\n<h3>Interesting facts</h3>\r\n<span style=\"font-weight: 400;\">No one muscle, or muscle group, is more important than any other.  Many will talk of Transverse Abdominis (TVA or TA) &amp; Multifidus as the most important muscles in the core, but if only one group or muscle of the full range of stability muscles is not functioning correctly, then the trunk is unstable.</span><span style=\"font-weight: 400;\">\r\n</span><span style=\"font-weight: 400;\"> (</span><i><span style=\"font-weight: 400;\">Cholwewicki and McGill, 1996, O’Sullivan et al, 1997, 1998, Allison et al, 1998)</span></i>\r\n\r\n<span style=\"font-weight: 400;\">Trunk or core stability in motion should be a reflex reaction as opposed to a conscious effort….like core stability training.</span>\r\n\r\n<span style=\"font-weight: 400;\">The core muscles are often inhibited in cases of low back pain.</span>\r\n\r\n<span style=\"font-weight: 400;\">Psoas Major &amp; also Latissimus Dorsi could (&amp; probably should) be deemed ‘core’ muscles based on their involvement in trunk/spine stability &amp; connecting the upper &amp; lower body</span>\r\n<h3>Conclusion</h3>\r\n<span data-contrast=\"auto\">Understanding your core muscles is like having the keys to a strong and resilient spine. By giving them the attention they deserve through targeted exercises and movements, you\'ll not only improve stability but also reduce the risk of injury and keep your spine functioning at its best.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>','Spine Biomechanics Part 4 - The Muscles of the Spine','','inherit','closed','closed','','25092-revision-v1','','','2024-09-20 15:02:48','2024-09-20 15:02:48','',25092,'https://biomechanicseducation.com/?p=40950',0,'revision','',0),(40951,3,'2024-09-20 15:09:47','2024-09-20 15:09:47','Shall we explore the final piece in this series to see if we can recall muscles in the foot and ankle to deepen our understanding of foot mechanics?\r\n\r\nA fascinating finisher for you...\r\n<h2><b>Gastrocnemius </b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27322\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/Gastroc-scaled-1.jpg\" alt=\"\" width=\"644\" height=\"362\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Gastrocnemius is also called a ‘calf’ muscle because it forms the large ‘belly’ of the leg &amp; those Greeks thought it resembled a calf’s stomach/belly </span>\r\n\r\n<strong>Coming from the Greek words </strong>\r\n\r\n<i><span style=\"font-weight: 400;\">gaster</span></i><span style=\"font-weight: 400;\"> =  belly </span>\r\n\r\n<i><span style=\"font-weight: 400;\">kneme</span></i><span style=\"font-weight: 400;\"> = leg</span>\r\n\r\n<span style=\"font-weight: 400;\">It is the superficial of the 2 calf muscles with 2 heads that attach to the condyles (nobly bits) on the back of the femur. It also travels down to a tendon that becomes part of the Achilles (calcaneal) tendon at the back of the ankle/heel.</span>\r\n\r\n<span style=\"font-weight: 400;\">So for this reason, when it contracts or shortens it will plant the toes down into plantar flexion which is also what happens when you stand on tiptoe.</span>\r\n\r\n<span style=\"font-weight: 400;\">However if you wanted to lengthen it fully you would need to, not only dorsiflex the ankle (pull the toes upwards), but also extend your knee to take up the slack there too! Try this by taking one heel back behind you, with the toes pointing forwards, knee straight and heel down...you should feel a stretch in the back of your leg through the calf. In fact for many this could feel REEEEAAAAAAALLLLY tight!</span>\r\n\r\n<span style=\"font-weight: 400;\">Check out all the different ‘Gastrocy’ shapes out there next time you are around lots of bare legs or people in shorts or leggings!</span>\r\n<h2><b>Soleus </b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27323\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/soleus-scaled-1.jpg\" alt=\"\" width=\"362\" height=\"482\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Soleus is the Latin word for a flat sort of sandal.</span>\r\n\r\n<span style=\"font-weight: 400;\">Deep to (underneath) gastrocnemius, this massive ‘pumper’ has an important job because it acts to pump blood back up the body, against gravity. Another great reason to suggest to our clients why walking at least 10k steps daily might be a good idea! </span>\r\n\r\n<span style=\"font-weight: 400;\">Soleus is also bigger than you think because much of its anatomy is hidden behind the gastrocnemius. It may well be flatter than gastroc but it’s muscle portion is certainly longer!</span>\r\n\r\n<span style=\"font-weight: 400;\">Starting on the back of the tibia &amp; fibula it then travels down to the calcaneal (Achilles) tendon, onto the calcaneus (heel bone). </span>\r\n\r\n<span style=\"font-weight: 400;\">It is also responsible for pointing your toe like it’s partner, Gastrocnemius BUT Soleus can be lengthened or stretched even when the knee is flexed due to its anatomy NOT crossing the knee joint!</span>\r\n\r\n<span style=\"font-weight: 400;\">So if you wanted to see how it compares with the previous gastrocnemius stretch try doing what you did before…..place your heel down behind your midline, toe pointing forwards but this time, bend the knee and lower the body, keeping the heel on the floor. You should feel the Soleus stretch a little lower down. </span>\r\n\r\n<span style=\"font-weight: 400;\">You could encourage a client to feel both variations too!</span>\r\n\r\n<span style=\"font-weight: 400;\">Gastrocnemius &amp; Soleus are also known as </span><i><span style=\"font-weight: 400;\">‘triceps surae</span></i><span style=\"font-weight: 400;\">’ because it means 3 headed muscles.</span>\r\n<h2><b>Plantaris</b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27324\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/plantaris-1-1.png\" alt=\"\" width=\"315\" height=\"443\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">This slender muscle is considered </span><i><span style=\"font-weight: 400;\">unimportant</span></i><span style=\"font-weight: 400;\"> or an ‘accessory’ muscle…</span>\r\n\r\n<strong>What is an accessory muscle?</strong>\r\n\r\n<span style=\"font-weight: 400;\">An accessory muscle provides assistance in movement but isn’t classed as primarily responsible for it.</span>\r\n\r\n<span style=\"font-weight: 400;\">When it comes to the Plantaris muscle 8-12% of us don\'t have one! (or 7-20% depending which article you read)</span>\r\n\r\n<span style=\"font-weight: 400;\">So by that calculation 88-92% of us DO have one which in MY book makes it a valid muscle </span>\r\n\r\n<strong>What do you think? </strong>\r\n\r\n<span style=\"font-weight: 400;\">Sweeping from the outside of the lateral femur, across the back of the knee &amp; down to the Achilles’ tendon, (also known as <em>tendo calcaneus</em>) it has the longest tendon in the body!</span>\r\n\r\n<span style=\"font-weight: 400;\">Whatever your opinion about Plantaris it flexes the knee &amp; plants the foot down (plantar flexion)</span>\r\n\r\n<span style=\"font-weight: 400;\">A super short muscle belly that looks like a little rope, it also assists in allowing you to stand on tiptoes to reach up high into a cupboard</span>\r\n\r\n<span style=\"font-weight: 400;\">Go Plantaris!</span>\r\n<h2><b>Fibularis Longus &amp; Fibularis Brevis</b></h2>\r\n<span style=\"font-weight: 400;\">Also known as the <strong>Peroneals</strong> OR <strong>Peroneus Longus &amp; Brevis</strong> even!</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-27325 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/Fibularis-longus-scaled-1.jpg\" alt=\"\" width=\"284\" height=\"379\" />\r\n\r\n<img class=\"aligncenter wp-image-27326\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/fibularis-brevis-scaled-1.jpg\" alt=\"\" width=\"281\" height=\"375\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Peroneals comes from the Greek word Perone (pronounced Pair-uh-knee) which was their word for the pin of a brooch or a buckle.</span>\r\n\r\n<strong>Why?</strong>\r\n\r\n<span style=\"font-weight: 400;\">Because the Greeks felt that the fibula looked like a pin at the back of the ‘tibia’ broach! </span>\r\n\r\n<span style=\"font-weight: 400;\">How to remember? Place your hands on the side of your lower legs, slide them upwards (over your perennials) towards your ‘pair uh knees’!</span>\r\n\r\n<span style=\"font-weight: 400;\">However these days they are being called the Fibularis muscles which should be even easier to remember since thats where your fibula is! It depends what resonates in your memory I guess! </span>\r\n\r\n<span style=\"font-weight: 400;\">Fibularis Longus is the long one, Fibularis Brevis the shorter one.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fibularis Longus attaches from the proximal (upper) portion of the fibular &amp; Fibularis Brevis joins in from the distal (lower) portion to travel down to the ‘plantar’ surfaces of certain tarsal &amp; metatarsal bones, meaning they play a role in the movement of the ankle. </span>\r\n\r\n<span style=\"font-weight: 400;\">Fibularis Longus is a plantar flexor &amp; everts the foot - meaning it turns the sole outwards. Through its tendon it also supports the arch of the foot.....so really multi tasking.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fibularis Brevis helps his brother out through everting the foot too</span>\r\n\r\n<span style=\"font-weight: 400;\">Interesting fact: </span><span style=\"font-weight: 400;\">Fibularis Longus contributes to BOTH pronation &amp; supination! </span>\r\n\r\n&nbsp;\r\n<h2><b>Tibialis Anterior</b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27327\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/tib-ant-scaled-1.jpg\" alt=\"\" width=\"362\" height=\"483\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">This bruiser sits on the front (anterior) of your tibia, hence tibialis anterior!</span>\r\n\r\n<span style=\"font-weight: 400;\">From the top lateral nobly bit to medial (inside) &amp; underneath the first cuneiform, a bone that makes up part of the arch of the foot.....</span>\r\n\r\n<span style=\"font-weight: 400;\">This means it is able to lift, or dorsiflex, the forefoot. It also inverts (turns in the underside of the foot) &amp; adducts the forefoot towards the midline. </span>\r\n\r\n<span style=\"font-weight: 400;\">So it should allow you to sustain an arch in your foot. The arch is important for supination, or ‘toe off’ when walking as it gives rigidity by ‘locking’ the midtarsal joints</span>\r\n\r\n<span style=\"font-weight: 400;\">Supination is the propulsion phase when walking </span>\r\n\r\n<span style=\"font-weight: 400;\">Tibialis Anterior also eccentrically decelerates your foot as you heel strike while pronated. It is often inhibited &amp; an antagonist to those ‘tight’ calves. </span><span style=\"font-weight: 400;\">Or maybe it’s the Tibialis Anterior that inhibits those calves? </span><span style=\"font-weight: 400;\">Extends, dorsiflexes &amp; everts by attaching to the lateral tibia to medial cuneiform &amp; base of 5th metatarsal</span>\r\n<h2><b>Extensor Digitorum Longus</b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27328\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-digitorum-longus-scaled-1.jpg\" alt=\"\" width=\"428\" height=\"428\" />\r\n\r\n&nbsp;\r\n\r\nIt <em>extends</em> the <em>digits</em> &amp; is <em>long</em>...\r\n\r\n<span style=\"font-weight: 400;\">In fact it extends 2-5th toes, dorsiflexes ankle &amp; everts foot by attaching from the medial anterior fibula to phalanx of the first toe</span>\r\n<h2><b>Extensor Hallucis Longus</b><span style=\"font-weight: 400;\"> </span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27329\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-hallucis-longus-scaled-1.jpg\" alt=\"\" width=\"331\" height=\"552\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIt <em>extends</em> the <em>hallux</em> &amp; is <em>long</em>....\r\n\r\n<span style=\"font-weight: 400;\">So it extends first toe, dorsiflexes ankle &amp; inverts foot by attaching from the lateral condyle of the tibia to middle phalanges of 2-5th toe </span>\r\n<h2><b>Tibialis Posterior </b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27330\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/tib-post-scaled-1.jpg\" alt=\"\" width=\"379\" height=\"379\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">So this dude is in the BACK of the lower leg...yup you guessed it...posterior to (behind) the tibia.</span>\r\n\r\n<span style=\"font-weight: 400;\">A stabilising muscle that supports the arch of the foot, i</span><span style=\"font-weight: 400;\">t can do this because it attaches from the upper lateral part of the tibia &amp; upper medial part of the fibula....</span>\r\n\r\n<span style=\"font-weight: 400;\">Then inserts down onto the navicular (meaning ‘little ship’ as this bone is boat shaped) &amp; medial cuneiform (Latin for ‘wedge-shaped’)</span>\r\n\r\n<span style=\"font-weight: 400;\">Takes care of plantar (planting down to the ground) flexion, along with its calf buddies, &amp; inversion of the sole....</span>\r\n\r\n<span style=\"font-weight: 400;\">Therefore also a potential contributor to adults presenting with flat feet when dysfunctional or inhibited....</span>\r\n\r\n<span style=\"font-weight: 400;\">... by what? </span>\r\n\r\n<span style=\"font-weight: 400;\">Think 🤔 antagonistic... maybe!?!</span>\r\n<h2><b>Flexor Digitorum Longus</b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27331\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-longus-scaled-1.jpg\" alt=\"\" width=\"341\" height=\"454\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Flexes the 2nd-5th toes &amp; is a weak plantar flexor of the ankle while inverting the sole of the foot by attaching from middle posterior tibia to phalanges of 2-5th toes</span>\r\n<h2><b>Flexor Hallucis Longus</b><span style=\"font-weight: 400;\"> </span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27332\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-hallucis-longus-scaled-1.jpg\" alt=\"\" width=\"428\" height=\"428\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Flexes the Hallux or first toe &amp; another weak plantar of ankle while inverting the foot by attaching to the middle posterior fibula to phalanx of first toe </span>\r\n<h2><b>Other muscles of the foot!</b></h2>\r\nWe could go on but how about you do some homework now?... why not research these little foot movers:\r\n<h3>Origin? Insertion? Action?</h3>\r\n<ul>\r\n 	<li><span style=\"font-weight: 400;\">Extensor digitorum brevis</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Flexor digitorum brevis</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Adductor hallucis</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Adductor digiti minimi</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Extensor digitorum brevis</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Flexor hallucis brevis </span></li>\r\n 	<li><span style=\"font-weight: 400;\">Adductor hallucis </span></li>\r\n 	<li><span style=\"font-weight: 400;\">Flexor digiti minimi brevis </span></li>\r\n 	<li><span style=\"font-weight: 400;\">Quadratus plantae</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Plantar interossei</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Dorsal interossei</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Lumbricals of the foot</span></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"wp-image-27333 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-hallucis-brevis-scaled-1.jpg\" alt=\"\" width=\"335\" height=\"251\" /><img class=\"aligncenter wp-image-27334\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-digitorum-brevis-scaled-1.jpg\" alt=\"\" width=\"348\" height=\"261\" />\r\n\r\n<img class=\"wp-image-27335 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-brevis-scaled-1.jpg\" alt=\"\" width=\"411\" height=\"308\" /><img class=\"aligncenter wp-image-27336\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-hallucis-brevis-scaled-1.jpg\" alt=\"\" width=\"458\" height=\"343\" />\r\n<h3>References</h3>\r\nDelgado, Gonzalo J. et al (2002). \"Tennis Leg: Clinical US Study of 141 Patients &amp; Anatomic Investigation of Four Cadavers with MR Imaging &amp; US1\". Radiology. 224 (1): 1129. doi:10.1148/radiol.2241011067. PMID 12091669\r\n\r\n<span class=\"reference-text\"><cite id=\"CITEREFFreemanJacobsonFogg2008\" class=\"citation journal cs1\">Freeman, A. J. et al (2008). \"Anatomical variations of the plantaris muscle &amp; a potential role in patellofemoral pain syndrome\". Clinical Anatomy. 21 (2): 178–81. doi:10.1002/ca.20594.PMID 18266282 </cite></span>\r\n\r\n<span class=\"reference-text\"><cite id=\"CITEREFSpina2007\" class=\"citation journal cs1\">Spina, A. A. (2007). \"The plantaris muscle: Anatomy, injury, imaging, and treatment\". </cite></span><span class=\"reference-text\"><cite id=\"CITEREFSpina2007\" class=\"citation journal cs1\">The Journal of the Canadian Chiropractic Association. 51 (3): 158–65. PMC 1978447. PMID 17885678 </cite></span>\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<h1></h1>\r\n<h1>Would you like to learn how to assess your clients feet?</h1>\r\nDo you feel like this is an area of the body you have yet to master?\r\n\r\nWould you like a simple way of understanding &amp; interpreting foot biomechanics to help more clients in more ways?\r\n<h1><a href=\"https://biomechanicseducation.com/courses/cpd-courses/the-foot-posture-index/\" target=\"_blank\" rel=\"noopener\">CLICK HERE &gt;&gt;&gt; Introduction to the Foot Posture Index....</a></h1>','Foot Biomechanics Part 10 -  The Muscles of the Foot & Ankle','','inherit','closed','closed','','27321-autosave-v1','','','2024-09-20 15:09:47','2024-09-20 15:09:47','',27321,'https://biomechanicseducation.com/?p=40951',0,'revision','',0),(40952,3,'2024-09-20 15:09:42','2024-09-20 15:09:42','Shall we explore the final piece in this series to see if we can recall muscles in the foot and ankle to deepen our understanding of foot mechanics?\r\n\r\nA fascinating finisher for you...\r\n<h2><b>Gastrocnemius </b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27322\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/Gastroc-scaled-1.jpg\" alt=\"\" width=\"644\" height=\"362\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Gastrocnemius is also called a ‘calf’ muscle because it forms the large ‘belly’ of the leg &amp; those Greeks thought it resembled a calf’s stomach/belly </span>\r\n\r\n<strong>Coming from the Greek words </strong>\r\n\r\n<i><span style=\"font-weight: 400;\">gaster</span></i><span style=\"font-weight: 400;\"> =  belly </span>\r\n\r\n<i><span style=\"font-weight: 400;\">kneme</span></i><span style=\"font-weight: 400;\"> = leg</span>\r\n\r\n<span style=\"font-weight: 400;\">It is the superficial of the 2 calf muscles with 2 heads that attach to the condyles (nobly bits) on the back of the femur. It also travels down to a tendon that becomes part of the Achilles (calcaneal) tendon at the back of the ankle/heel.</span>\r\n\r\n<span style=\"font-weight: 400;\">So for this reason, when it contracts or shortens it will plant the toes down into plantar flexion which is also what happens when you stand on tiptoe.</span>\r\n\r\n<span style=\"font-weight: 400;\">However if you wanted to lengthen it fully you would need to, not only dorsiflex the ankle (pull the toes upwards), but also extend your knee to take up the slack there too! Try this by taking one heel back behind you, with the toes pointing forwards, knee straight and heel down...you should feel a stretch in the back of your leg through the calf. In fact for many this could feel REEEEAAAAAAALLLLY tight!</span>\r\n\r\n<span style=\"font-weight: 400;\">Check out all the different ‘Gastrocy’ shapes out there next time you are around lots of bare legs or people in shorts or leggings!</span>\r\n<h2><b>Soleus </b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27323\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/soleus-scaled-1.jpg\" alt=\"\" width=\"362\" height=\"482\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Soleus is the Latin word for a flat sort of sandal.</span>\r\n\r\n<span style=\"font-weight: 400;\">Deep to (underneath) gastrocnemius, this massive ‘pumper’ has an important job because it acts to pump blood back up the body, against gravity. Another great reason to suggest to our clients why walking at least 10k steps daily might be a good idea! </span>\r\n\r\n<span style=\"font-weight: 400;\">Soleus is also bigger than you think because much of its anatomy is hidden behind the gastrocnemius. It may well be flatter than gastroc but it’s muscle portion is certainly longer!</span>\r\n\r\n<span style=\"font-weight: 400;\">Starting on the back of the tibia &amp; fibula it then travels down to the calcaneal (Achilles) tendon, onto the calcaneus (heel bone). </span>\r\n\r\n<span style=\"font-weight: 400;\">It is also responsible for pointing your toe like it’s partner, Gastrocnemius BUT Soleus can be lengthened or stretched even when the knee is flexed due to its anatomy NOT crossing the knee joint!</span>\r\n\r\n<span style=\"font-weight: 400;\">So if you wanted to see how it compares with the previous gastrocnemius stretch try doing what you did before…..place your heel down behind your midline, toe pointing forwards but this time, bend the knee and lower the body, keeping the heel on the floor. You should feel the Soleus stretch a little lower down. </span>\r\n\r\n<span style=\"font-weight: 400;\">You could encourage a client to feel both variations too!</span>\r\n\r\n<span style=\"font-weight: 400;\">Gastrocnemius &amp; Soleus are also known as </span><i><span style=\"font-weight: 400;\">‘triceps surae</span></i><span style=\"font-weight: 400;\">’ because it means 3 headed muscles.</span>\r\n<h2><b>Plantaris</b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27324\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/plantaris-1-1.png\" alt=\"\" width=\"315\" height=\"443\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">This slender muscle is considered </span><i><span style=\"font-weight: 400;\">unimportant</span></i><span style=\"font-weight: 400;\"> or an ‘accessory’ muscle…</span>\r\n\r\n<strong>What is an accessory muscle?</strong>\r\n\r\n<span style=\"font-weight: 400;\">An accessory muscle provides assistance in movement but isn’t classed as primarily responsible for it.</span>\r\n\r\n<span style=\"font-weight: 400;\">When it comes to the Plantaris muscle 8-12% of us don\'t have one! (or 7-20% depending which article you read)</span>\r\n\r\n<span style=\"font-weight: 400;\">So by that calculation 88-92% of us DO have one which in MY book makes it a valid muscle </span>\r\n\r\n<strong>What do you think? </strong>\r\n\r\n<span style=\"font-weight: 400;\">Sweeping from the outside of the lateral femur, across the back of the knee &amp; down to the Achilles’ tendon, (also known as <em>tendo calcaneus</em>) it has the longest tendon in the body!</span>\r\n\r\n<span style=\"font-weight: 400;\">Whatever your opinion about Plantaris it flexes the knee &amp; plants the foot down (plantar flexion)</span>\r\n\r\n<span style=\"font-weight: 400;\">A super short muscle belly that looks like a little rope, it also assists in allowing you to stand on tiptoes to reach up high into a cupboard</span>\r\n\r\n<span style=\"font-weight: 400;\">Go Plantaris!</span>\r\n<h2><b>Fibularis Longus &amp; Fibularis Brevis</b></h2>\r\n<span style=\"font-weight: 400;\">Also known as the <strong>Peroneals</strong> OR <strong>Peroneus Longus &amp; Brevis</strong> even!</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"wp-image-27325 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/Fibularis-longus-scaled-1.jpg\" alt=\"\" width=\"284\" height=\"379\" />\r\n\r\n<img class=\"aligncenter wp-image-27326\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/fibularis-brevis-scaled-1.jpg\" alt=\"\" width=\"281\" height=\"375\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Peroneals comes from the Greek word Perone (pronounced Pair-uh-knee) which was their word for the pin of a brooch or a buckle.</span>\r\n\r\n<strong>Why?</strong>\r\n\r\n<span style=\"font-weight: 400;\">Because the Greeks felt that the fibula looked like a pin at the back of the ‘tibia’ broach! </span>\r\n\r\n<span style=\"font-weight: 400;\">How to remember? Place your hands on the side of your lower legs, slide them upwards (over your perennials) towards your ‘pair uh knees’!</span>\r\n\r\n<span style=\"font-weight: 400;\">However these days they are being called the Fibularis muscles which should be even easier to remember since thats where your fibula is! It depends what resonates in your memory I guess! </span>\r\n\r\n<span style=\"font-weight: 400;\">Fibularis Longus is the long one, Fibularis Brevis the shorter one.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fibularis Longus attaches from the proximal (upper) portion of the fibular &amp; Fibularis Brevis joins in from the distal (lower) portion to travel down to the ‘plantar’ surfaces of certain tarsal &amp; metatarsal bones, meaning they play a role in the movement of the ankle. </span>\r\n\r\n<span style=\"font-weight: 400;\">Fibularis Longus is a plantar flexor &amp; everts the foot - meaning it turns the sole outwards. Through its tendon it also supports the arch of the foot.....so really multi tasking.</span>\r\n\r\n<span style=\"font-weight: 400;\">Fibularis Brevis helps his brother out through everting the foot too</span>\r\n\r\n<span style=\"font-weight: 400;\">Interesting fact: </span><span style=\"font-weight: 400;\">Fibularis Longus contributes to BOTH pronation &amp; supination! </span>\r\n\r\n&nbsp;\r\n<h2><b>Tibialis Anterior</b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27327\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/tib-ant-scaled-1.jpg\" alt=\"\" width=\"362\" height=\"483\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">This bruiser sits on the front (anterior) of your tibia, hence tibialis anterior!</span>\r\n\r\n<span style=\"font-weight: 400;\">From the top lateral nobly bit to medial (inside) &amp; underneath the first cuneiform, a bone that makes up part of the arch of the foot.....</span>\r\n\r\n<span style=\"font-weight: 400;\">This means it is able to lift, or dorsiflex, the forefoot. It also inverts (turns in the underside of the foot) &amp; adducts the forefoot towards the midline. </span>\r\n\r\n<span style=\"font-weight: 400;\">So it should allow you to sustain an arch in your foot. The arch is important for supination, or ‘toe off’ when walking as it gives rigidity by ‘locking’ the midtarsal joints</span>\r\n\r\n<span style=\"font-weight: 400;\">Supination is the propulsion phase when walking </span>\r\n\r\n<span style=\"font-weight: 400;\">Tibialis Anterior also eccentrically decelerates your foot as you heel strike while pronated. It is often inhibited &amp; an antagonist to those ‘tight’ calves. </span><span style=\"font-weight: 400;\">Or maybe it’s the Tibialis Anterior that inhibits those calves? </span><span style=\"font-weight: 400;\">Extends, dorsiflexes &amp; everts by attaching to the lateral tibia to medial cuneiform &amp; base of 5th metatarsal</span>\r\n<h2><b>Extensor Digitorum Longus</b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27328\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-digitorum-longus-scaled-1.jpg\" alt=\"\" width=\"428\" height=\"428\" />\r\n\r\n&nbsp;\r\n\r\nIt <em>extends</em> the <em>digits</em> &amp; is <em>long</em>...\r\n\r\n<span style=\"font-weight: 400;\">In fact it extends 2-5th toes, dorsiflexes ankle &amp; everts foot by attaching from the medial anterior fibula to phalanx of the first toe</span>\r\n<h2><b>Extensor Hallucis Longus</b><span style=\"font-weight: 400;\"> </span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27329\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-hallucis-longus-scaled-1.jpg\" alt=\"\" width=\"331\" height=\"552\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nIt <em>extends</em> the <em>hallux</em> &amp; is <em>long</em>....\r\n\r\n<span style=\"font-weight: 400;\">So it extends first toe, dorsiflexes ankle &amp; inverts foot by attaching from the lateral condyle of the tibia to middle phalanges of 2-5th toe </span>\r\n<h2><b>Tibialis Posterior </b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27330\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/tib-post-scaled-1.jpg\" alt=\"\" width=\"379\" height=\"379\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">So this dude is in the BACK of the lower leg...yup you guessed it...posterior to (behind) the tibia.</span>\r\n\r\n<span style=\"font-weight: 400;\">A stabilising muscle that supports the arch of the foot, i</span><span style=\"font-weight: 400;\">t can do this because it attaches from the upper lateral part of the tibia &amp; upper medial part of the fibula....</span>\r\n\r\n<span style=\"font-weight: 400;\">Then inserts down onto the navicular (meaning ‘little ship’ as this bone is boat shaped) &amp; medial cuneiform (Latin for ‘wedge-shaped’)</span>\r\n\r\n<span style=\"font-weight: 400;\">Takes care of plantar (planting down to the ground) flexion, along with its calf buddies, &amp; inversion of the sole....</span>\r\n\r\n<span style=\"font-weight: 400;\">Therefore also a potential contributor to adults presenting with flat feet when dysfunctional or inhibited....</span>\r\n\r\n<span style=\"font-weight: 400;\">... by what? </span>\r\n\r\n<span style=\"font-weight: 400;\">Think 🤔 antagonistic... maybe!?!</span>\r\n<h2><b>Flexor Digitorum Longus</b></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27331\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-longus-scaled-1.jpg\" alt=\"\" width=\"341\" height=\"454\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Flexes the 2nd-5th toes &amp; is a weak plantar flexor of the ankle while inverting the sole of the foot by attaching from middle posterior tibia to phalanges of 2-5th toes</span>\r\n<h2><b>Flexor Hallucis Longus</b><span style=\"font-weight: 400;\"> </span></h2>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-27332\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-hallucis-longus-scaled-1.jpg\" alt=\"\" width=\"428\" height=\"428\" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\">Flexes the Hallux or first toe &amp; another weak plantar of ankle while inverting the foot by attaching to the middle posterior fibula to phalanx of first toe </span>\r\n<h2><b>Other muscles of the foot!</b></h2>\r\nWe could go on but how about you do some homework now?... why not research these little foot movers:\r\n<h3>Origin? Insertion? Action?</h3>\r\n<ul>\r\n 	<li><span style=\"font-weight: 400;\">Extensor digitorum brevis</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Flexor digitorum brevis</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Adductor hallucis</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Adductor digiti minimi</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Extensor digitorum brevis</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Flexor hallucis brevis </span></li>\r\n 	<li><span style=\"font-weight: 400;\">Adductor hallucis </span></li>\r\n 	<li><span style=\"font-weight: 400;\">Flexor digiti minimi brevis </span></li>\r\n 	<li><span style=\"font-weight: 400;\">Quadratus plantae</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Plantar interossei</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Dorsal interossei</span></li>\r\n 	<li><span style=\"font-weight: 400;\">Lumbricals of the foot</span></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class=\"wp-image-27333 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-hallucis-brevis-scaled-1.jpg\" alt=\"\" width=\"335\" height=\"251\" /><img class=\"aligncenter wp-image-27334\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-digitorum-brevis-scaled-1.jpg\" alt=\"\" width=\"348\" height=\"261\" />\r\n\r\n<img class=\"wp-image-27335 alignleft\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-brevis-scaled-1.jpg\" alt=\"\" width=\"411\" height=\"308\" /><img class=\"aligncenter wp-image-27336\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-hallucis-brevis-scaled-1.jpg\" alt=\"\" width=\"458\" height=\"343\" />\r\n<h3>References</h3>\r\nDelgado, Gonzalo J. et al (2002). \"Tennis Leg: Clinical US Study of 141 Patients &amp; Anatomic Investigation of Four Cadavers with MR Imaging &amp; US1\". Radiology. 224 (1): 1129. doi:10.1148/radiol.2241011067. PMID 12091669\r\n\r\n<span class=\"reference-text\"><cite id=\"CITEREFFreemanJacobsonFogg2008\" class=\"citation journal cs1\">Freeman, A. J. et al (2008). \"Anatomical variations of the plantaris muscle &amp; a potential role in patellofemoral pain syndrome\". Clinical Anatomy. 21 (2): 178–81. doi:10.1002/ca.20594.PMID 18266282 </cite></span>\r\n\r\n<span class=\"reference-text\"><cite id=\"CITEREFSpina2007\" class=\"citation journal cs1\">Spina, A. A. (2007). \"The plantaris muscle: Anatomy, injury, imaging, and treatment\". </cite></span><span class=\"reference-text\"><cite id=\"CITEREFSpina2007\" class=\"citation journal cs1\">The Journal of the Canadian Chiropractic Association. 51 (3): 158–65. PMC 1978447. PMID 17885678 </cite></span>\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<h1></h1>\r\n<h1>Would you like to learn how to assess your clients feet?</h1>\r\nDo you feel like this is an area of the body you have yet to master?\r\n\r\nWould you like a simple way of understanding &amp; interpreting foot biomechanics to help more clients in more ways?\r\n<h1><a href=\"https://biomechanicseducation.com/courses/cpd-courses/the-foot-posture-index/\" target=\"_blank\" rel=\"noopener\">CLICK HERE &gt;&gt;&gt; Introduction to the Foot Posture Index....</a></h1>','Foot Biomechanics Part 10 -  The Muscles of the Foot & Ankle','','inherit','closed','closed','','27321-revision-v1','','','2024-09-20 15:09:42','2024-09-20 15:09:42','',27321,'https://biomechanicseducation.com/?p=40952',0,'revision','',0),(40953,3,'2024-09-20 15:19:52','2024-09-20 15:19:52','<span data-contrast=\"auto\">Recently, I sparked a debate on Facebook regarding the impact of foot position on squats and its influence on quadricep growth. This led me to delve deeper into the subject, prompting me to share insights and continue the discussion with you. In this article, we\'ll explore how altering foot position during squats affects muscle engagement and growth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Understanding Foot Position</h3>\n<span data-contrast=\"auto\">The width of your foot placement during squats can significantly influence muscle engagement. Comments from the Facebook post highlighted various perspectives:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<ol>\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Wide stance targets glutes, while narrow stance emphasises quads.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ol>\n<ol>\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Different foot widths engage inner and outer quads.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ol>\n<ol>\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Altered foot position affects the feeling of the exercise, but not necessarily the anatomy.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ol>\n<ol>\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"4\" data-aria-level=\"1\"><span data-contrast=\"auto\">There\'s a debate on whether specific foot positions can isolate and stimulate individual quad muscles for growth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ol>\n<h3>Anatomy vs. Feeling</h3>\n<span data-contrast=\"auto\">While altering foot position may change how a squat feels, its anatomical impact is more nuanced. The quadricep muscles, including rectus femoris and vastus group, are minimally affected by foot width variations.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Research Insights</h3>\n<span data-contrast=\"auto\"> Several studies, including those by Greg Nuckols and Paoli et al., found no significant differences in quadricep muscle activation with varying stance widths. While foot position may affect other muscles like the gluteus maximus, its impact on quadricep isolation is inconclusive.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Considering Other Muscles</h3>\n<span data-contrast=\"auto\">Squatting engages a network of muscles beyond the quadriceps, including hamstrings, glutes, and adductors. While foot position may alter their engagement, its direct influence on quadricep hypertrophy remains debatable.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-7592 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/06/Project-Squat-Part-2-How-To-Test-For-And-Improve-Pelvic-Function-300x150.png\" alt=\"\" width=\"300\" height=\"150\" />\n<h3>Practical Applications</h3>\n<span data-contrast=\"auto\">Despite the lack of concrete evidence for foot position\'s direct impact on quadricep growth, incorporating varied angles and foot placements in training can enhance overall strength and performance. This approach prepares the body for diverse movement patterns, reducing the risk of injury and optimizing results.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Conclusion</h3>\n<span data-contrast=\"auto\">While foot position in squats may not directly isolate and stimulate individual quad muscles for growth, it plays a role in overall muscle engagement and movement mechanics. By understanding the nuances of foot placement and incorporating diverse training strategies, we can optimize client outcomes and foster ongoing learning and discussion within the fitness community.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3><span data-contrast=\"auto\">References:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\n<a href=\"https://bmcsportsscimedrehabil.biomedcentral.com/track/pdf/10.1186/s13102-018-0103-7\"><span data-contrast=\"none\">https://bmcsportsscimedrehabil.biomedcentral.com/track/pdf/10.1186/s13102-018-0103-7</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<a href=\"https://www.strongerbyscience.com/squat-stance-width/amp/\"><span data-contrast=\"none\">https://www.strongerbyscience.com/squat-stance-width/amp/</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Finally, three studies (</span><a href=\"https://www.ncbi.nlm.nih.gov/pubmed/19130646?_ga=2.106178947.1285553477.1717682013-558813559.1717682013\"><span data-contrast=\"none\">one</span></a><span data-contrast=\"auto\">, </span><a href=\"https://www.ncbi.nlm.nih.gov/pubmed/11528346?_ga=2.106178947.1285553477.1717682013-558813559.1717682013\"><span data-contrast=\"none\">two</span></a><span data-contrast=\"auto\">, </span><a href=\"https://www.ncbi.nlm.nih.gov/pubmed/10188748?_ga=2.106178947.1285553477.1717682013-558813559.1717682013\"><span data-contrast=\"none\">three</span></a><span data-contrast=\"auto\">) have compared muscle activation (</span><a href=\"https://www.strongerbyscience.com/emg-amplitude-tell-us-muscle-hypertrophy/?_ga=2.106178947.1285553477.1717682013-558813559.1717682013\"><span data-contrast=\"none\">using EMG</span></a><span data-contrast=\"auto\">) in squats of varying stance widths.  None of them found any differences in any of the quad muscle...Greg Nuckols</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/11404665\"><span data-contrast=\"none\">https://www.ncbi.nlm.nih.gov/pubmed/11404665</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<a href=\"https://www.strongerbyscience.com/squats-adductors/\"><span data-contrast=\"none\">https://www.strongerbyscience.com/squats-adductors/</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3><span data-contrast=\"auto\">Join the Conversation.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\n<span data-contrast=\"auto\">I invite you to continue this discussion and explore further insights in our classroom. Together, we can enhance our understanding of biomechanics and empower clients to move better and achieve their fitness goals. Learn more about our courses here.</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<hr />\n\n<h2 style=\"text-align: center;\">Ready To Help Your Clients\' Move Better &amp; Get Better Results In Their Training?</h2>\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-10836 size-full\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png\" alt=\"\" width=\"1225\" height=\"612\" /></p>','Can Changing Your Foot Position Isolate And Grow Different Quadricep Muscles?','','inherit','closed','closed','','16935-autosave-v1','','','2024-09-20 15:19:52','2024-09-20 15:19:52','',16935,'https://biomechanicseducation.com/?p=40953',0,'revision','',0),(40954,3,'2024-09-20 15:20:15','2024-09-20 15:20:15','<span data-contrast=\"auto\">Recently, I sparked a debate on Facebook regarding the impact of foot position on squats and its influence on quadricep growth. This led me to delve deeper into the subject, prompting me to share insights and continue the discussion with you. In this article, we\'ll explore how altering foot position during squats affects muscle engagement and growth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Understanding Foot Position</h3>\r\n<span data-contrast=\"auto\">The width of your foot placement during squats can significantly influence muscle engagement. Comments from the Facebook post highlighted various perspectives:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Wide stance targets glutes, while narrow stance emphasises quads.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Different foot widths engage inner and outer quads.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Altered foot position affects the feeling of the exercise, but not necessarily the anatomy.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"4\" data-aria-level=\"1\"><span data-contrast=\"auto\">There\'s a debate on whether specific foot positions can isolate and stimulate individual quad muscles for growth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<h3>Anatomy vs. Feeling</h3>\r\n<span data-contrast=\"auto\">While altering foot position may change how a squat feels, its anatomical impact is more nuanced. The quadricep muscles, including rectus femoris and vastus group, are minimally affected by foot width variations.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Research Insights</h3>\r\n<span data-contrast=\"auto\"> Several studies, including those by Greg Nuckols and Paoli et al., found no significant differences in quadricep muscle activation with varying stance widths. While foot position may affect other muscles like the gluteus maximus, its impact on quadricep isolation is inconclusive.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Considering Other Muscles</h3>\r\n<span data-contrast=\"auto\">Squatting engages a network of muscles beyond the quadriceps, including hamstrings, glutes, and adductors. While foot position may alter their engagement, its direct influence on quadricep hypertrophy remains debatable.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-medium wp-image-7592 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/06/Project-Squat-Part-2-How-To-Test-For-And-Improve-Pelvic-Function-300x150.png\" alt=\"\" width=\"300\" height=\"150\" />\r\n<h3>Practical Applications</h3>\r\n<span data-contrast=\"auto\">Despite the lack of concrete evidence for foot position\'s direct impact on quadricep growth, incorporating varied angles and foot placements in training can enhance overall strength and performance. This approach prepares the body for diverse movement patterns, reducing the risk of injury and optimizing results.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Conclusion</h3>\r\n<span data-contrast=\"auto\">While foot position in squats may not directly isolate and stimulate individual quad muscles for growth, it plays a role in overall muscle engagement and movement mechanics. By understanding the nuances of foot placement and incorporating diverse training strategies, we can optimize client outcomes and foster ongoing learning and discussion within the fitness community.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><span data-contrast=\"auto\">References:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\r\n<a href=\"https://bmcsportsscimedrehabil.biomedcentral.com/track/pdf/10.1186/s13102-018-0103-7\"><span data-contrast=\"none\">https://bmcsportsscimedrehabil.biomedcentral.com/track/pdf/10.1186/s13102-018-0103-7</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<a href=\"https://www.strongerbyscience.com/squat-stance-width/amp/\"><span data-contrast=\"none\">https://www.strongerbyscience.com/squat-stance-width/amp/</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Finally, three studies (</span><a href=\"https://www.ncbi.nlm.nih.gov/pubmed/19130646?_ga=2.106178947.1285553477.1717682013-558813559.1717682013\"><span data-contrast=\"none\">one</span></a><span data-contrast=\"auto\">, </span><a href=\"https://www.ncbi.nlm.nih.gov/pubmed/11528346?_ga=2.106178947.1285553477.1717682013-558813559.1717682013\"><span data-contrast=\"none\">two</span></a><span data-contrast=\"auto\">, </span><a href=\"https://www.ncbi.nlm.nih.gov/pubmed/10188748?_ga=2.106178947.1285553477.1717682013-558813559.1717682013\"><span data-contrast=\"none\">three</span></a><span data-contrast=\"auto\">) have compared muscle activation (</span><a href=\"https://www.strongerbyscience.com/emg-amplitude-tell-us-muscle-hypertrophy/?_ga=2.106178947.1285553477.1717682013-558813559.1717682013\"><span data-contrast=\"none\">using EMG</span></a><span data-contrast=\"auto\">) in squats of varying stance widths.  None of them found any differences in any of the quad muscle...Greg Nuckols</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<a href=\"https://www.ncbi.nlm.nih.gov/pubmed/11404665\"><span data-contrast=\"none\">https://www.ncbi.nlm.nih.gov/pubmed/11404665</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<a href=\"https://www.strongerbyscience.com/squats-adductors/\"><span data-contrast=\"none\">https://www.strongerbyscience.com/squats-adductors/</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><span data-contrast=\"auto\">Join the Conversation.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h3>\r\n<span data-contrast=\"auto\">I invite you to continue this discussion and explore further insights in our classroom. Together, we can enhance our understanding of biomechanics and empower clients to move better and achieve their fitness goals. Learn more about our courses <a href=\"https://biomechanicseducation.com/courses/\">here</a>.</span>\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n<h2 style=\"text-align: center;\">Ready To Help Your Clients\' Move Better &amp; Get Better Results In Their Training?</h2>\r\n<p style=\"text-align: center;\"><img class=\"aligncenter wp-image-10836 size-full\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png\" alt=\"\" width=\"1225\" height=\"612\" /></p>','Can Changing Your Foot Position Isolate And Grow Different Quadricep Muscles?','','inherit','closed','closed','','16935-revision-v1','','','2024-09-20 15:20:15','2024-09-20 15:20:15','',16935,'https://biomechanicseducation.com/?p=40954',0,'revision','',0),(40955,3,'2024-09-20 15:24:49','2024-09-20 15:24:49','<span data-contrast=\"auto\">Absolutely. As a personal trainer, sports therapist, biomechanics coach, or anyone working with people in one-on-one or group settings, communication skills can set you apart from the competition. You might have extensive knowledge of strength programming, but without effective communication, your expertise won\'t translate into client success.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Consider this: </span></b><span data-contrast=\"auto\">how often do you see highly educated personal trainers struggling to get clients, while someone with minimal qualifications but excellent communication skills is fully booked? This difference often comes down to communication and emotional intelligence.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>What Are Communication Skills? And Can We Improve Them?</h3>\n<span data-contrast=\"auto\">Communication skills involve the ways we interact with others, which can be visual, auditory, verbal, or kinesthetic, often combining these elements. Humans are incredibly sensitive to emotions conveyed through facial expressions, voice tones, and body language. This sensitivity allows us to communicate a lot through subtle cues.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Even those who are blind can sense emotions through voice tone, understanding mood or feelings. Physical touch also plays a significant role, with evidence showing its power in manual therapy, hugging, or even a simple pat on the back to convey emotion.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>How Can Communication Skills Be Utilised?</h3>\n<h4><b><span data-contrast=\"auto\">Physical Communication Skills</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h4>\n<span data-contrast=\"auto\">In the fitness industry, communication skills are invaluable. A famous sales technique involves lightly touching a customer’s elbow at the point of sale while maintaining eye contact. This establishes a connection, an essential part of providing service, ideas, and motivation as a trainer or coach. If clients don’t enjoy your company, your business is likely to fail.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">For manual therapists, touch is a crucial part of the job, and when done with permission, it can enhance the client-trainer connection. Physical assessments offer a professional excuse to connect through touch, adding depth to functional tests beyond mere measurements.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h4><b><span data-contrast=\"auto\">Are They Always A Good Thing?</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h4>\n<span data-contrast=\"auto\">While effective communication can significantly benefit your practice, it can also backfire if misinterpreted. We are highly sensitive to emotional cues, and a misunderstood gesture or expression can lead to negative consequences. Maintaining professionalism and always asking permission helps ensure positive interactions.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>How Can Improving Communication Skills Help Us in Life, Business, and Relationships?</h3>\n<span data-contrast=\"auto\">Improving communication skills can enhance relationships in all areas of life. Practice and hone these skills to improve interactions, whether in business or personal relationships.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h4>Powerful Communication Through the Written Word</h4>\n<span data-contrast=\"auto\">When crafting marketing materials, blog posts, or social media content, imagine you are your customer. Consider their state of mind, knowledge level, and frustrations. By understanding their perspective, you can write more effectively, addressing their concerns and questions as if you were speaking directly to them.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h4>Examples of Poor &amp; Good Communication</h4>\n<b><span data-contrast=\"auto\">Verbal</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\"><strong>Client 1:</strong> \"What exercise can I do to lose weight?\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\"><strong>PT:</strong> \"Any\" or \"Shall I book you in?\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\"><strong>Client 2:</strong> \"How do I get toned?\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\"><strong>PT:</strong> \"Eat well and exercise\" or \"Just lift weights.\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">While technically correct, these responses don\'t educate or connect with the client. </span><b><span data-contrast=\"auto\">Instead, try:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\"><strong>Client 2 Alternative:</strong> \"What have you tried so far?\" or \"Are you new to exercise?\" or \"What’s your long-term goal?\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Engage clients with questions that show interest and provide tailored advice, enhancing their experience and trust in your expertise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h4>Staying Positive</h4>\n<span data-contrast=\"auto\">Focus on positive goals rather than negative ones. Clients often aim to reduce pain or achieve specific physical changes. Empathize with their struggles and guide them towards realistic, positive outcomes.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h4>Empathy</h4>\n<span data-contrast=\"auto\">Sharing personal experiences can build empathy and trust with potential clients. Being honest about your journey, including challenges and successes, can make you relatable. Mindfulness practices can enhance this skill, helping you communicate more effectively in person or through written content.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h4>Listening Skills</h4>\n<span data-contrast=\"auto\">Listening is arguably the most critical communication skill and often underutilized. Asking the right questions and actively listening to responses can reveal valuable insights into how to best assist your clients. Demonstrate active listening by maintaining eye contact, nodding, and paraphrasing what the client says.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Other – Legal</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Effective communication extends beyond verbal interactions. Clear, detailed documentation, such as client notes, screening forms, and reports, is crucial for legal purposes and demonstrates your duty of care. This practice also supports your professional credibility and insurance validation.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Communication Skills Training Plan</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Communication is a trainable skill that can improve with practice. Here’s a plan to enhance your communication skills:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Step 1: Pick One Aspect to Focus On – E.g., Listening</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Concentrate on one area at a time to avoid feeling overwhelmed.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Step 2: Select 1-3 Techniques to Practice</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Wait for people to finish their sentences before responding.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Recap what you heard them say in their words.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Ask questions to delve deeper into their responses.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Practice these techniques consistently, reflecting on your progress daily. As these habits become second nature, move on to the next skill.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Conclusion</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Never underestimate the power of communication skills. They can significantly improve your success in the fitness industry and beyond. The most successful trainers may not have the highest qualifications but excel in making clients feel valued and understood.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<span data-contrast=\"auto\">Discover What the Biomechanics Coaching System Could Do for Your Business &amp; Your Clients. Click </span><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/?_ga=2.4785264.2129125191.1717683341-768987886.1717683341#row-8880-2\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> to fill in your details and let\'s discuss if our diploma is right for you.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n<hr />\n\n&nbsp;\n<h2 style=\"text-align: center;\"><strong>Discover What The Biomechanics Coaching System Could Do For Your Business &amp; Your Clients</strong></h2>\n<h3 style=\"text-align: center;\">rachel@biomechanicseducation.com</h3>\n<a href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back25799549\"><img class=\"aligncenter size-large wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></a>','Are communication skills, something we can improve?','','inherit','closed','closed','','17661-autosave-v1','','','2024-09-20 15:24:49','2024-09-20 15:24:49','',17661,'https://biomechanicseducation.com/?p=40955',0,'revision','',0),(40956,3,'2024-09-20 15:25:59','2024-09-20 15:25:59','<span data-contrast=\"auto\">Absolutely. As a personal trainer, sports therapist, biomechanics coach, or anyone working with people in one-on-one or group settings, communication skills can set you apart from the competition. You might have extensive knowledge of strength programming, but without effective communication, your expertise won\'t translate into client success.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Consider this: </span></b><span data-contrast=\"auto\">how often do you see highly educated personal trainers struggling to get clients, while someone with minimal qualifications but excellent communication skills is fully booked? This difference often comes down to communication and emotional intelligence.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>What Are Communication Skills? And Can We Improve Them?</h3>\r\n<span data-contrast=\"auto\">Communication skills involve the ways we interact with others, which can be visual, auditory, verbal, or kinesthetic, often combining these elements. Humans are incredibly sensitive to emotions conveyed through facial expressions, voice tones, and body language. This sensitivity allows us to communicate a lot through subtle cues.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Even those who are blind can sense emotions through voice tone, understanding mood or feelings. Physical touch also plays a significant role, with evidence showing its power in manual therapy, hugging, or even a simple pat on the back to convey emotion.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>How Can Communication Skills Be Utilised?</h3>\r\n<h4><b><span data-contrast=\"auto\">Physical Communication Skills</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h4>\r\n<span data-contrast=\"auto\">In the fitness industry, communication skills are invaluable. A famous sales technique involves lightly touching a customer’s elbow at the point of sale while maintaining eye contact. This establishes a connection, an essential part of providing service, ideas, and motivation as a trainer or coach. If clients don’t enjoy your company, your business is likely to fail.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">For manual therapists, touch is a crucial part of the job, and when done with permission, it can enhance the client-trainer connection. Physical assessments offer a professional excuse to connect through touch, adding depth to functional tests beyond mere measurements.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4><b><span data-contrast=\"auto\">Are They Always A Good Thing?</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h4>\r\n<span data-contrast=\"auto\">While effective communication can significantly benefit your practice, it can also backfire if misinterpreted. We are highly sensitive to emotional cues, and a misunderstood gesture or expression can lead to negative consequences. Maintaining professionalism and always asking permission helps ensure positive interactions.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>How Can Improving Communication Skills Help Us in Life, Business, and Relationships?</h3>\r\n<span data-contrast=\"auto\">Improving communication skills can enhance relationships in all areas of life. Practice and hone these skills to improve interactions, whether in business or personal relationships.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4>Powerful Communication Through the Written Word</h4>\r\n<span data-contrast=\"auto\">When crafting marketing materials, blog posts, or social media content, imagine you are your customer. Consider their state of mind, knowledge level, and frustrations. By understanding their perspective, you can write more effectively, addressing their concerns and questions as if you were speaking directly to them.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4>Examples of Poor &amp; Good Communication</h4>\r\n<b><span data-contrast=\"auto\">Verbal</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Client 1:</strong> \"What exercise can I do to lose weight?\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>PT:</strong> \"Any\" or \"Shall I book you in?\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Client 2:</strong> \"How do I get toned?\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>PT:</strong> \"Eat well and exercise\" or \"Just lift weights.\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">While technically correct, these responses don\'t educate or connect with the client. </span><b><span data-contrast=\"auto\">Instead, try:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Client 2 Alternative:</strong> \"What have you tried so far?\" or \"Are you new to exercise?\" or \"What’s your long-term goal?\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Engage clients with questions that show interest and provide tailored advice, enhancing their experience and trust in your expertise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4>Staying Positive</h4>\r\n<span data-contrast=\"auto\">Focus on positive goals rather than negative ones. Clients often aim to reduce pain or achieve specific physical changes. Empathize with their struggles and guide them towards realistic, positive outcomes.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4>Empathy</h4>\r\n<span data-contrast=\"auto\">Sharing personal experiences can build empathy and trust with potential clients. Being honest about your journey, including challenges and successes, can make you relatable. Mindfulness practices can enhance this skill, helping you communicate more effectively in person or through written content.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4>Listening Skills</h4>\r\n<span data-contrast=\"auto\">Listening is arguably the most critical communication skill and often underutilized. Asking the right questions and actively listening to responses can reveal valuable insights into how to best assist your clients. Demonstrate active listening by maintaining eye contact, nodding, and paraphrasing what the client says.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h4>Other – Legal</h4>\r\n<span data-contrast=\"auto\">Effective communication extends beyond verbal interactions. Clear, detailed documentation, such as client notes, screening forms, and reports, is crucial for legal purposes and demonstrates your duty of care. This practice also supports your professional credibility and insurance validation.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Communication Skills Training Plan</h3>\r\n<span data-contrast=\"auto\">Communication is a trainable skill that can improve with practice. Here’s a plan to enhance your communication skills:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Step 1: Pick One Aspect to Focus On – E.g., Listening</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Concentrate on one area at a time to avoid feeling overwhelmed.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Step 2: Select 1-3 Techniques to Practice</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Wait for people to finish their sentences before responding.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Recap what you heard them say in their words.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Ask questions to delve deeper into their responses.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Practice these techniques consistently, reflecting on your progress daily. As these habits become second nature, move on to the next skill.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Conclusion</h3>\r\n<span data-contrast=\"auto\">Never underestimate the power of communication skills. They can significantly improve your success in the fitness industry and beyond. The most successful trainers may not have the highest qualifications but excel in making clients feel valued and understood.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Discover What the Biomechanics Coaching System Could Do for Your Business &amp; Your Clients. Click </span><a href=\"https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/?_ga=2.4785264.2129125191.1717683341-768987886.1717683341#row-8880-2\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> to fill in your details and let\'s discuss if our diploma is right for you.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n<h2 style=\"text-align: center;\"><strong>Discover What The Biomechanics Coaching System Could Do For Your Business &amp; Your Clients</strong></h2>\r\n<h3 style=\"text-align: center;\">Contact us: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a></h3>\r\n<img class=\"aligncenter wp-image-7922 size-full\" src=\"https://biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1-scaled.jpg\" alt=\"\" width=\"2560\" height=\"1440\" />','Are communication skills, something we can improve?','','inherit','closed','closed','','17661-revision-v1','','','2024-09-20 15:25:59','2024-09-20 15:25:59','',17661,'https://biomechanicseducation.com/?p=40956',0,'revision','',0),(40957,3,'2024-09-23 10:31:05','2024-09-23 10:31:05','','woman treating another woman on a massage table, lifting her leg to a bent position and manipulating it gently.','','inherit','closed','closed','','3-2','','','2024-09-23 10:37:27','2024-09-23 10:37:27','',40845,'https://biomechanicseducation.com/wp-content/uploads/2024/09/3-1.png',0,'attachment','image/png',0),(40958,3,'2024-09-23 10:31:38','2024-09-23 10:31:38','','woman talking to a man about biomechanics education','','inherit','closed','closed','','4-2','','','2024-09-23 10:42:29','2024-09-23 10:42:29','',40843,'https://biomechanicseducation.com/wp-content/uploads/2024/09/4-1.png',0,'attachment','image/png',0),(40959,3,'2024-09-23 10:32:11','2024-09-23 10:32:11','','Rcahel demonstrating a Biomechanics Move at a conference to many people','','inherit','closed','closed','','5','','','2024-09-23 12:06:37','2024-09-23 12:06:37','',40841,'https://biomechanicseducation.com/wp-content/uploads/2024/09/5.png',0,'attachment','image/png',0),(40960,3,'2024-09-23 10:32:43','2024-09-23 10:32:43','','testimonial - person manipulating a mans arm in a biomechanics course','','inherit','closed','closed','','6','','','2024-09-23 12:12:40','2024-09-23 12:12:40','',39170,'https://biomechanicseducation.com/wp-content/uploads/2024/09/6.png',0,'attachment','image/png',0),(40961,3,'2024-09-23 10:33:16','2024-09-23 10:33:16','','Man and woman in a class learnering about biomechanics. Man is staning, woman is behind him, he has his arm out stright and she is looking at his arm whilst holding it.','','inherit','closed','closed','','7','','','2024-09-23 12:14:59','2024-09-23 12:14:59','',39169,'https://biomechanicseducation.com/wp-content/uploads/2024/09/7.png',0,'attachment','image/png',0),(40962,3,'2024-09-23 10:33:42','2024-09-23 10:33:42','','group shot of biomechanics coach leaners and rachel - director of biomechanics Education','','inherit','closed','closed','','8','','','2024-09-23 12:16:58','2024-09-23 12:16:58','',39168,'https://biomechanicseducation.com/wp-content/uploads/2024/09/8.png',0,'attachment','image/png',0),(40963,3,'2024-09-23 10:34:13','2024-09-23 10:34:13','','man on massage table on all fours with one leg bent in the air.','','inherit','closed','closed','','9','','','2024-09-23 12:19:02','2024-09-23 12:19:02','',38965,'https://biomechanicseducation.com/wp-content/uploads/2024/09/9.png',0,'attachment','image/png',0),(40964,3,'2024-09-23 10:34:45','2024-09-23 10:34:45','','Rcahel conducting a class - 10 people on the floor with one leg folded over the other.','','inherit','closed','closed','','10-3','','','2024-09-23 12:21:33','2024-09-23 12:21:33','',38964,'https://biomechanicseducation.com/wp-content/uploads/2024/09/10.png',0,'attachment','image/png',0),(40965,3,'2024-09-23 10:35:12','2024-09-23 10:35:12','','11','','inherit','closed','closed','','11-2','','','2024-09-23 10:35:12','2024-09-23 10:35:12','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/11.png',0,'attachment','image/png',0),(40966,3,'2024-09-23 10:35:44','2024-09-23 10:35:44','','12','','inherit','closed','closed','','12','','','2024-09-23 10:35:44','2024-09-23 10:35:44','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/12.png',0,'attachment','image/png',0),(40967,3,'2024-09-23 10:36:17','2024-09-23 10:36:17','','13','','inherit','closed','closed','','13-3','','','2024-09-23 10:36:17','2024-09-23 10:36:17','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/13.png',0,'attachment','image/png',0),(40968,3,'2024-09-23 10:36:50','2024-09-23 10:36:50','','14','','inherit','closed','closed','','14-2','','','2024-09-23 10:36:50','2024-09-23 10:36:50','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/14.png',0,'attachment','image/png',0),(40969,3,'2024-09-23 10:37:23','2024-09-23 10:37:23','','15','','inherit','closed','closed','','15-2','','','2024-09-23 10:37:23','2024-09-23 10:37:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/15.png',0,'attachment','image/png',0),(40970,3,'2024-09-23 12:09:29','2024-09-23 12:09:29','','','','inherit','closed','closed','','39170-autosave-v1','','','2024-09-23 12:09:29','2024-09-23 12:09:29','',39170,'https://biomechanicseducation.com/?p=40970',0,'revision','',0),(40971,3,'2024-09-23 12:20:44','2024-09-23 12:20:44','','It was everything I was hoping for and really helped me understand why current training systems aren\'t working as they should be.','','inherit','closed','closed','','38964-autosave-v1','','','2024-09-23 12:20:44','2024-09-23 12:20:44','',38964,'https://biomechanicseducation.com/?p=40971',0,'revision','',0),(40972,3,'2024-09-23 12:27:24','2024-09-23 12:27:24','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-09-23 12:27:24','2024-09-23 12:27:24','',39196,'https://biomechanicseducation.com/?p=40972',0,'revision','',0),(40973,3,'2024-09-23 12:28:28','2024-09-23 12:28:28','','Find a Biomechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-23 12:28:28','2024-09-23 12:28:28','',39493,'https://biomechanicseducation.com/?p=40973',0,'revision','',0),(40976,3,'2024-09-23 12:32:57','2024-09-23 12:32:57','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-23 12:32:57','2024-09-23 12:32:57','',39214,'https://biomechanicseducation.com/?p=40976',0,'revision','',0),(40977,3,'2024-09-23 12:33:07','2024-09-23 12:33:07','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-autosave-v1','','','2024-09-23 12:33:07','2024-09-23 12:33:07','',39214,'https://biomechanicseducation.com/?p=40977',0,'revision','',0),(40978,3,'2024-09-23 12:33:50','2024-09-23 12:33:50','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-23 12:33:50','2024-09-23 12:33:50','',39214,'https://biomechanicseducation.com/?p=40978',0,'revision','',0),(40979,0,'2024-09-23 12:51:44','0000-00-00 00:00:00','{\"firstname\":\"test\",\"lastname\":\"test\",\"email\":\"test@test.com\",\"contactnumber\":\"\",\"postcode\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-66f16455a15453-13769897','','','2024-09-23 12:51:44','2024-09-23 12:51:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=40979',0,'cd-form-entry','',0),(40982,3,'2024-09-23 13:13:11','2024-09-23 13:13:11','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-23 13:13:11','2024-09-23 13:13:11','',40780,'https://biomechanicseducation.com/?p=40982',0,'revision','',0),(40984,3,'2024-09-23 13:18:37','2024-09-23 13:18:37','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-23 13:18:37','2024-09-23 13:18:37','',40780,'https://biomechanicseducation.com/?p=40984',0,'revision','',0),(40985,3,'2024-09-23 14:10:23','2024-09-23 14:10:23','','Home','','inherit','closed','closed','','7-revision-v1','','','2024-09-23 14:10:23','2024-09-23 14:10:23','',7,'https://biomechanicseducation.com/?p=40985',0,'revision','',0),(40986,3,'2024-09-23 14:15:26','2024-09-23 14:15:26','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-09-23 14:15:26','2024-09-23 14:15:26','',39043,'https://biomechanicseducation.com/?p=40986',0,'revision','',0),(40987,3,'2024-09-23 14:17:55','2024-09-23 14:17:55','','Biomechanics and Futurefit partnership','','publish','closed','closed','','biomechanics-and-futurefit-partnership','','','2024-09-23 14:17:55','2024-09-23 14:17:55','',0,'https://biomechanicseducation.com/?post_type=template&#038;p=40987',0,'template','',0),(40988,3,'2024-09-23 14:18:23','2024-09-23 14:18:23','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-09-23 14:18:23','2024-09-23 14:18:23','',39043,'https://biomechanicseducation.com/?p=40988',0,'revision','',0),(40989,3,'2024-09-23 14:20:58','2024-09-23 14:20:58','','Courses','','inherit','closed','closed','','39066-revision-v1','','','2024-09-23 14:20:58','2024-09-23 14:20:58','',39066,'https://biomechanicseducation.com/?p=40989',0,'revision','',0),(40990,3,'2024-09-23 14:23:11','2024-09-23 14:23:11','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-09-23 14:23:11','2024-09-23 14:23:11','',40778,'https://biomechanicseducation.com/?p=40990',0,'revision','',0),(40991,3,'2024-09-23 14:26:31','2024-09-23 14:26:31','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-09-23 14:26:31','2024-09-23 14:26:31','',40778,'https://biomechanicseducation.com/?p=40991',0,'revision','',0),(40992,3,'2024-09-23 14:29:32','2024-09-23 14:29:32','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-23 14:29:32','2024-09-23 14:29:32','',40780,'https://biomechanicseducation.com/?p=40992',0,'revision','',0),(40993,3,'2024-09-23 14:32:19','2024-09-23 14:32:19','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-09-23 14:32:19','2024-09-23 14:32:19','',40778,'https://biomechanicseducation.com/?p=40993',0,'revision','',0),(40994,3,'2024-09-23 14:32:24','2024-09-23 14:32:24','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-23 14:32:24','2024-09-23 14:32:24','',40780,'https://biomechanicseducation.com/?p=40994',0,'revision','',0),(40995,3,'2024-09-23 14:32:52','2024-09-23 14:32:52','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-23 14:32:52','2024-09-23 14:32:52','',40780,'https://biomechanicseducation.com/?p=40995',0,'revision','',0),(40996,3,'2024-09-23 14:35:36','2024-09-23 14:35:36','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-09-23 14:35:36','2024-09-23 14:35:36','',39329,'https://biomechanicseducation.com/?p=40996',0,'revision','',0),(40997,3,'2024-09-23 14:36:32','2024-09-23 14:36:32','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-09-23 14:36:32','2024-09-23 14:36:32','',39329,'https://biomechanicseducation.com/?p=40997',0,'revision','',0),(40998,3,'2024-09-23 14:44:14','2024-09-23 14:44:14','','Download Price Guide','','inherit','closed','closed','','39270-revision-v1','','','2024-09-23 14:44:14','2024-09-23 14:44:14','',39270,'https://biomechanicseducation.com/?p=40998',0,'revision','',0),(40999,0,'2024-09-23 14:44:46','0000-00-00 00:00:00','{\"firstname\":\"test\",\"lastname\":\"test\",\"email\":\"test@test.com\",\"contactnumber\":\"\",\"postcode\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-66f17ede6b4a82-71233097','','','2024-09-23 14:44:46','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=40999',0,'cd-form-entry','',0),(41002,3,'2024-09-24 10:24:23','2024-09-24 10:24:23','','Disability-Confidence-Badge-Future-Fit-Training','','inherit','closed','closed','','disability-confidence-badge-future-fit-training','','','2024-09-24 10:24:23','2024-09-24 10:24:23','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Disability-Confidence-Badge-Future-Fit-Training.png',0,'attachment','image/png',0),(41003,3,'2024-09-24 10:25:14','2024-09-24 10:25:14','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-09-24 10:25:14','2024-09-24 10:25:14','',40779,'https://biomechanicseducation.com/?p=41003',0,'revision','',0),(41004,0,'2024-09-24 10:34:39','0000-00-00 00:00:00','{\"firstname\":\"dave test1\",\"lastname\":\"hanley\",\"email\":\"dave.hanley@futurefit.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-66f295bf145ff0-58099284','','','2024-09-24 10:34:39','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41004',0,'cd-form-entry','',0),(41005,3,'2024-09-24 10:38:04','2024-09-24 10:38:04','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-24 10:38:04','2024-09-24 10:38:04','',39497,'https://biomechanicseducation.com/?p=41005',0,'revision','',0),(41006,3,'2024-09-24 10:38:49','2024-09-24 10:38:49','','Blogs','','inherit','closed','closed','','39497-autosave-v1','','','2024-09-24 10:38:49','2024-09-24 10:38:49','',39497,'https://biomechanicseducation.com/?p=41006',0,'revision','',0),(41007,3,'2024-09-24 10:39:22','2024-09-24 10:39:22','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-24 10:39:22','2024-09-24 10:39:22','',39497,'https://biomechanicseducation.com/?p=41007',0,'revision','',0),(41008,3,'2024-09-24 10:39:47','2024-09-24 10:39:47','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-24 10:39:47','2024-09-24 10:39:47','',39497,'https://biomechanicseducation.com/?p=41008',0,'revision','',0),(41009,3,'2024-09-24 10:40:08','2024-09-24 10:40:08','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-24 10:40:08','2024-09-24 10:40:08','',39497,'https://biomechanicseducation.com/?p=41009',0,'revision','',0),(41010,3,'2024-09-24 10:40:36','2024-09-24 10:40:36','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-24 10:40:36','2024-09-24 10:40:36','',39497,'https://biomechanicseducation.com/?p=41010',0,'revision','',0),(41011,3,'2024-09-24 10:40:56','2024-09-24 10:40:56','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-24 10:40:56','2024-09-24 10:40:56','',39497,'https://biomechanicseducation.com/?p=41011',0,'revision','',0),(41012,3,'2024-09-24 10:41:36','2024-09-24 10:41:36','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-09-24 10:41:36','2024-09-24 10:41:36','',39497,'https://biomechanicseducation.com/?p=41012',0,'revision','',0),(41013,0,'2024-09-25 07:28:08','2024-09-25 07:28:08','{\"firstname\":\"Lily\",\"lastname\":\"Thomas\",\"email\":\"lilynt31@hotmail.com\",\"contactnumber\":\"07380151212\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f3bb70933657-89088420','','','2024-09-25 07:28:08','2024-09-25 07:28:08','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41013',0,'cd-form-entry','',0),(41014,11,'2024-09-25 08:11:47','2024-09-25 08:11:47','','Introduction to Intrinsic Biomechanics','','inherit','closed','closed','','40278-revision-v1','','','2024-09-25 08:11:47','2024-09-25 08:11:47','',40278,'https://biomechanicseducation.com/?p=41014',0,'revision','',0),(41015,0,'2024-09-25 09:15:12','2024-09-25 09:15:12','{\"firstname\":\"Lily\",\"lastname\":\"Testing\",\"email\":\"lily-testing-all-the-time@gmail.com\",\"contactnumber\":\"074624929429\",\"postcode\":\"fsf\",\"pageid\":\"39263\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f3d49013e7f0-80743882','','','2024-09-25 09:15:12','2024-09-25 09:15:12','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41015',0,'cd-form-entry','',0),(41016,0,'2024-09-25 09:20:20','2024-09-25 09:20:20','{\"firstname\":\"Lily\",\"lastname\":\"Testing\",\"email\":\"lily-testing-again-marketing@hotmail.com\",\"contactnumber\":\"07123567864\",\"pageid\":\"39263\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f3d5cb76ed15-63929142','','','2024-09-25 09:20:20','2024-09-25 09:20:20','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41016',0,'cd-form-entry','',0),(41017,0,'2024-09-25 09:24:06','2024-09-25 09:24:06','{\"firstname\":\"Alice\",\"lastname\":\"Munro\",\"email\":\"alicemunro@doctors.org.uk\",\"contactnumber\":\"07825164561\",\"pageid\":\"39263\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/#\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f3d6aea3d9a6-57105475','','','2024-09-25 09:24:06','2024-09-25 09:24:06','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41017',0,'cd-form-entry','',0),(41018,11,'2024-09-25 09:25:51','2024-09-25 09:25:51','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-25 09:25:51','2024-09-25 09:25:51','',40286,'https://biomechanicseducation.com/?p=41018',0,'revision','',0),(41019,0,'2024-09-25 09:29:55','0000-00-00 00:00:00','{\"firstname\":\"Morgan\",\"lastname\":\"Hanness\",\"email\":\"morgan@biomechanicseducation.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/online-cpd-education/\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-66f3d813bfcf76-34771227','','','2024-09-25 09:29:55','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41019',0,'cd-form-entry','',0),(41020,0,'2024-09-25 09:49:51','2024-09-25 09:49:51','{\"firstname\":\"Lily\",\"lastname\":\"Testing\",\"email\":\"lily-marketing-testing-always@hotmail.co.uk\",\"contactnumber\":\"073849494949\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f3dcb8665e95-00417978','','','2024-09-25 09:49:51','2024-09-25 09:49:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41020',0,'cd-form-entry','',0),(41021,0,'2024-09-25 09:57:37','2024-09-25 09:57:37','{\"firstname\":\"MARKETING\",\"lastname\":\"Testing\",\"email\":\"marketing-testing-again-lily@hotmail.com\",\"contactnumber\":\"07123432156\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/what-exactly-is-intrinsic-biomechanics/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f3de851eeed9-68339380','','','2024-09-25 09:57:37','2024-09-25 09:57:37','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41021',0,'cd-form-entry','',0),(41022,0,'2024-09-25 10:18:23','2024-09-25 10:18:23','{\"firstname\":\"ahmed\",\"lastname\":\"yasser\",\"email\":\"ahmedyasset@yahoo.com\",\"contactnumber\":\"00966571555468\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f3e358e08ed3-61033595','','','2024-09-25 10:18:23','2024-09-25 10:18:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41022',0,'cd-form-entry','',0),(41023,0,'2024-09-25 10:20:41','2024-09-25 10:20:41','{\"email\":\"ahmedyasset@yahoo.com\",\"interestedbecause\":\"0\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"32210\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f3e3bd3b8101-98940740','','','2024-09-25 10:20:41','2024-09-25 10:20:41','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41023',0,'cd-form-entry','',0),(41024,0,'2024-09-25 11:25:29','2024-09-25 11:25:29','{\"firstname\":\"Marketing\",\"lastname\":\"Lilytest\",\"email\":\"another-marketing-testing-again-lily@hotmail.com\",\"contactnumber\":\"07839274651\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/what-exactly-is-intrinsic-biomechanics/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f3f31c62bd66-21458104','','','2024-09-25 11:25:29','2024-09-25 11:25:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41024',0,'cd-form-entry','',0),(41025,0,'2024-09-25 12:07:52','2024-09-25 12:07:52','{\"firstname\":\"Test\",\"lastname\":\"test1\",\"email\":\"ad@desd.com\",\"contactnumber\":\"07555666555\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f3fcf0556bf6-05935073','','','2024-09-25 12:07:52','2024-09-25 12:07:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41025',0,'cd-form-entry','',0),(41026,0,'2024-09-25 12:08:20','0000-00-00 00:00:00','{\"email\":\"\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"2\",\"regionlive\":\"6\",\"currentpostcode\":\"po6 1rr\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-66f3fd347ceb67-07771423','','','2024-09-25 12:08:20','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41026',0,'cd-form-entry','',0),(41028,3,'2024-09-25 12:23:16','2024-09-25 12:23:16','','iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2024-09-25 12:23:16','2024-09-25 12:23:16','',40277,'https://biomechanicseducation.com/?p=41028',0,'revision','',0),(41029,3,'2024-09-25 12:25:35','2024-09-25 12:25:35','','Running Biomechanics','','inherit','closed','closed','','40281-revision-v1','','','2024-09-25 12:25:35','2024-09-25 12:25:35','',40281,'https://biomechanicseducation.com/?p=41029',0,'revision','',0),(41030,3,'2024-09-25 12:29:14','2024-09-25 12:29:14','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-09-25 12:29:14','2024-09-25 12:29:14','',40778,'https://biomechanicseducation.com/?p=41030',0,'revision','',0),(41031,3,'2024-09-25 12:34:45','2024-09-25 12:34:45','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-09-25 12:34:45','2024-09-25 12:34:45','',40780,'https://biomechanicseducation.com/?p=41031',0,'revision','',0),(41032,3,'2024-09-25 12:36:33','2024-09-25 12:36:33','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-09-25 12:36:33','2024-09-25 12:36:33','',39214,'https://biomechanicseducation.com/?p=41032',0,'revision','',0),(41033,3,'2024-09-25 12:37:13','2024-09-25 12:37:13','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-09-25 12:37:13','2024-09-25 12:37:13','',39231,'https://biomechanicseducation.com/?p=41033',0,'revision','',0),(41034,3,'2024-09-25 12:37:44','2024-09-25 12:37:44','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-09-25 12:37:44','2024-09-25 12:37:44','',39238,'https://biomechanicseducation.com/?p=41034',0,'revision','',0),(41035,3,'2024-09-25 12:38:14','2024-09-25 12:38:14','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-09-25 12:38:14','2024-09-25 12:38:14','',39245,'https://biomechanicseducation.com/?p=41035',0,'revision','',0),(41036,3,'2024-09-25 12:38:47','2024-09-25 12:38:47','','Biomechanics and Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2024-09-25 12:38:47','2024-09-25 12:38:47','',39249,'https://biomechanicseducation.com/?p=41036',0,'revision','',0),(41037,3,'2024-09-25 12:39:18','2024-09-25 12:39:18','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-09-25 12:39:18','2024-09-25 12:39:18','',39254,'https://biomechanicseducation.com/?p=41037',0,'revision','',0),(41038,3,'2024-09-25 12:39:45','2024-09-25 12:39:45','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-09-25 12:39:45','2024-09-25 12:39:45','',39263,'https://biomechanicseducation.com/?p=41038',0,'revision','',0),(41039,0,'2024-09-25 12:42:05','2024-09-25 12:42:05','{\"firstname\":\"Deborah\",\"lastname\":\"Ross\",\"email\":\"deborahdianaross@gmail.com\",\"contactnumber\":\"8076201220\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f4050c278282-20988122','','','2024-09-25 12:42:05','2024-09-25 12:42:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41039',0,'cd-form-entry','',0),(41040,0,'2024-09-25 12:43:38','2024-09-25 12:43:38','{\"email\":\"deborahdianaross@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"P7E 4H4\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\",\"livingcircumstances\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f40547201f43-33484801','','','2024-09-25 12:43:38','2024-09-25 12:43:38','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41040',0,'cd-form-entry','',0),(41041,0,'2024-09-25 20:01:50','2024-09-25 20:01:50','{\"firstname\":\"Antonio\",\"lastname\":\"Lo vecchio\",\"email\":\"antonio.lovecchio75@gmail.com\",\"contactnumber\":\"+393384081552\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/?fbclid=IwZXh0bgNhZW0CMTEAAR3kQrrdj5INO9shsjlLxogpqTl6aiTn3auRtjnyoV7AE9ZXLz5JMWmN7MM_aem_sV2aHMeMqB8nt4gLZI7qMA\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f46c067b3612-23487982','','','2024-09-25 20:01:50','2024-09-25 20:01:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41041',0,'cd-form-entry','',0),(41042,3,'2024-09-26 08:45:36','2024-09-26 08:45:36','','Deadlift Analysis Made Simple','','inherit','closed','closed','','40273-revision-v1','','','2024-09-26 08:45:36','2024-09-26 08:45:36','',40273,'https://biomechanicseducation.com/?p=41042',0,'revision','',0),(41043,3,'2024-09-26 08:46:35','2024-09-26 08:46:35','','Foot Biomechanics Made Simple','','inherit','closed','closed','','40274-revision-v1','','','2024-09-26 08:46:35','2024-09-26 08:46:35','',40274,'https://biomechanicseducation.com/?p=41043',0,'revision','',0),(41044,3,'2024-09-26 08:47:04','2024-09-26 08:47:04','','Pain Science Made Simple','','inherit','closed','closed','','40279-revision-v1','','','2024-09-26 08:47:04','2024-09-26 08:47:04','',40279,'https://biomechanicseducation.com/?p=41044',0,'revision','',0),(41045,3,'2024-09-26 08:47:27','2024-09-26 08:47:27','','The Foot Posture Index','','inherit','closed','closed','','40282-revision-v1','','','2024-09-26 08:47:27','2024-09-26 08:47:27','',40282,'https://biomechanicseducation.com/?p=41045',0,'revision','',0),(41046,3,'2024-09-26 08:47:49','2024-09-26 08:47:49','','Understanding Nerves','','inherit','closed','closed','','40283-revision-v1','','','2024-09-26 08:47:49','2024-09-26 08:47:49','',40283,'https://biomechanicseducation.com/?p=41046',0,'revision','',0),(41047,3,'2024-09-26 09:19:55','2024-09-26 09:19:55','','Weak Glutes Webinar','','inherit','closed','closed','','40284-revision-v1','','','2024-09-26 09:19:55','2024-09-26 09:19:55','',40284,'https://biomechanicseducation.com/?p=41047',0,'revision','',0),(41048,3,'2024-09-26 09:20:42','2024-09-26 09:20:42','','What the hell is Functional Training anyway?','','inherit','closed','closed','','40285-revision-v1','','','2024-09-26 09:20:42','2024-09-26 09:20:42','',40285,'https://biomechanicseducation.com/?p=41048',0,'revision','',0),(41049,3,'2024-09-26 09:23:01','2024-09-26 09:23:01','','Building Your Fitness Business','','inherit','closed','closed','','40270-revision-v1','','','2024-09-26 09:23:01','2024-09-26 09:23:01','',40270,'https://biomechanicseducation.com/?p=41049',0,'revision','',0),(41050,3,'2024-09-26 09:23:34','2024-09-26 09:23:34','','Coaching Fitness Online','','inherit','closed','closed','','40271-revision-v1','','','2024-09-26 09:23:34','2024-09-26 09:23:34','',40271,'https://biomechanicseducation.com/?p=41050',0,'revision','',0),(41051,3,'2024-09-26 09:24:18','2024-09-26 09:24:18','','Core Training','','inherit','closed','closed','','40272-revision-v1','','','2024-09-26 09:24:18','2024-09-26 09:24:18','',40272,'https://biomechanicseducation.com/?p=41051',0,'revision','',0),(41052,3,'2024-09-26 09:24:54','2024-09-26 09:24:54','','Fundamental Principles of Movement','','inherit','closed','closed','','40275-revision-v1','','','2024-09-26 09:24:54','2024-09-26 09:24:54','',40275,'https://biomechanicseducation.com/?p=41052',0,'revision','',0),(41053,3,'2024-09-26 09:25:36','2024-09-26 09:25:36','','iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2024-09-26 09:25:36','2024-09-26 09:25:36','',40277,'https://biomechanicseducation.com/?p=41053',0,'revision','',0),(41054,3,'2024-09-26 09:25:59','2024-09-26 09:25:59','','Introduction to Intrinsic Biomechanics','','inherit','closed','closed','','40278-revision-v1','','','2024-09-26 09:25:59','2024-09-26 09:25:59','',40278,'https://biomechanicseducation.com/?p=41054',0,'revision','',0),(41055,3,'2024-09-26 09:26:26','2024-09-26 09:26:26','','Practical Anatomy Series','','inherit','closed','closed','','40280-revision-v1','','','2024-09-26 09:26:26','2024-09-26 09:26:26','',40280,'https://biomechanicseducation.com/?p=41055',0,'revision','',0),(41056,3,'2024-09-26 09:27:02','2024-09-26 09:27:02','','Running Biomechanics','','inherit','closed','closed','','40281-revision-v1','','','2024-09-26 09:27:02','2024-09-26 09:27:02','',40281,'https://biomechanicseducation.com/?p=41056',0,'revision','',0),(41057,3,'2024-09-26 09:27:17','2024-09-26 09:27:17','','Womens Health - Menopause and Programming','','inherit','closed','closed','','40286-revision-v1','','','2024-09-26 09:27:17','2024-09-26 09:27:17','',40286,'https://biomechanicseducation.com/?p=41057',0,'revision','',0),(41058,3,'2024-09-26 09:32:59','2024-09-26 09:32:59','','Find a Biomechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-09-26 09:32:59','2024-09-26 09:32:59','',39493,'https://biomechanicseducation.com/?p=41058',0,'revision','',0),(41060,0,'2024-09-26 14:39:22','2024-09-26 14:39:22','{\"firstname\":\"Aaron\",\"lastname\":\"Bridge\",\"email\":\"shifuhenghu@gmail.com\",\"contactnumber\":\"0081 07041109367\",\"pageid\":\"39263\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f571ce217057-76671937','','','2024-09-26 14:39:22','2024-09-26 14:39:22','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41060',0,'cd-form-entry','',0),(41061,0,'2024-09-27 01:15:12','2024-09-27 01:15:12','{\"firstname\":\"Exequiel\",\"lastname\":\"Guzmu00e1n\",\"email\":\"guzman.exe@gmail.com\",\"contactnumber\":\"56981714236\",\"pageid\":\"39214\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f6070e4c4419-37242304','','','2024-09-27 01:15:12','2024-09-27 01:15:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41061',0,'cd-form-entry','',0),(41062,0,'2024-09-27 07:18:10','2024-09-27 07:18:10','{\"firstname\":\"Annalise\",\"lastname\":\"Langdon\",\"email\":\"annalise.langdon@gmail.com\",\"contactnumber\":\"07500489597\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/how-can-you-get-a-job-in-biomechanics/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f65c219e48d9-47489011','','','2024-09-27 07:18:10','2024-09-27 07:18:10','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41062',0,'cd-form-entry','',0),(41063,0,'2024-09-27 07:19:43','2024-09-27 07:19:43','{\"email\":\"annalise.langdon@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"gl526nn\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/how-can-you-get-a-job-in-biomechanics/\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"4\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f65c63834843-37293832','','','2024-09-27 07:19:43','2024-09-27 07:19:43','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41063',0,'cd-form-entry','',0),(41065,0,'2024-09-27 14:01:27','2024-09-27 14:01:27','{\"firstname\":\"Tracy\",\"lastname\":\"Fraser-Ryan\",\"email\":\"tracypt@me.com\",\"contactnumber\":\"7770585461\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/david-lloyd-referral/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f6baac3bba23-24687267','','','2024-09-27 14:01:27','2024-09-27 14:01:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41065',0,'cd-form-entry','',0),(41066,0,'2024-09-27 17:48:43','0000-00-00 00:00:00','{\"firstname\":\"Joyce\",\"lastname\":\"Omotola\",\"email\":\"joyceomotola@icloud.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-66f6effb6ca200-29328840','','','2024-09-27 17:48:43','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41066',0,'cd-form-entry','',0),(41067,0,'2024-09-27 17:50:46','2024-09-27 17:50:46','{\"firstname\":\"Joyce\",\"lastname\":\"Omotola\",\"email\":\"joyceomotola@icloud.com\",\"contactnumber\":\"07540337055\",\"pageid\":\"39231\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f6f04bc6fbb3-92103450','','','2024-09-27 17:50:46','2024-09-27 17:50:46','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41067',0,'cd-form-entry','',0),(41068,0,'2024-09-27 17:55:46','0000-00-00 00:00:00','{\"email\":\"joyceomotola@icloud.com\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"se13 7ap\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedbecause\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-66f6f19976bcf4-48987304','','','2024-09-27 17:55:46','2024-09-27 17:55:46','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41068',0,'cd-form-entry','',0),(41069,0,'2024-09-27 20:36:19','2024-09-27 20:36:19','{\"firstname\":\"melissa\",\"lastname\":\"Coombes\",\"email\":\"mel_gil@hotmail.com\",\"contactnumber\":\"07931680916\",\"pageid\":\"40780\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f717106d36b9-57433601','','','2024-09-27 20:36:19','2024-09-27 20:36:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41069',0,'cd-form-entry','',0),(41070,0,'2024-09-27 20:42:02','2024-09-27 20:42:02','{\"email\":\"mel_gil@hotmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"Bn12 6hz\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"3\",\"employmentstatus\":\"1\",\"workindustry\":\"12\",\"qualification\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f71840638fb7-39334557','','','2024-09-27 20:42:02','2024-09-27 20:42:02','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41070',0,'cd-form-entry','',0),(41071,0,'2024-09-27 21:52:17','2024-09-27 21:52:17','{\"firstname\":\"Scott\",\"lastname\":\"Shoesmith\",\"email\":\"scottshoesmith@hotmail.co.uk\",\"contactnumber\":\"07908594444\",\"pageid\":\"39254\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f72900e93cf7-65011601','','','2024-09-27 21:52:17','2024-09-27 21:52:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41071',0,'cd-form-entry','',0),(41072,0,'2024-09-27 21:53:28','2024-09-27 21:53:28','{\"email\":\"scottshoesmith@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"5\",\"currentpostcode\":\"CM3 5SS\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f72936cb5c25-50433470','','','2024-09-27 21:53:28','2024-09-27 21:53:28','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41072',0,'cd-form-entry','',0),(41073,0,'2024-09-28 14:25:16','2024-09-28 14:25:16','{\"firstname\":\"Amie\",\"lastname\":\"Johnson\",\"email\":\"amiejohnson318@hotmail.com\",\"contactnumber\":\"07983881394\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/imovefreely-3/?utm_source=facebook&amp;utm_medium=organic&amp;utm_campaign=iMoveFreely\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f811bc87fce8-97670645','','','2024-09-28 14:25:16','2024-09-28 14:25:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41073',0,'cd-form-entry','',0),(41074,0,'2024-09-28 20:23:12','0000-00-00 00:00:00','{\"firstname\":\"Robert\",\"lastname\":\"Stewart\",\"email\":\"Rob.stewart1975@outlook.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-66f865b0a3f4b9-78608009','','','2024-09-28 20:23:12','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41074',0,'cd-form-entry','',0),(41075,0,'2024-09-29 06:34:02','2024-09-29 06:34:02','{\"firstname\":\"Daniel\",\"lastname\":\"Fellows\",\"email\":\"danfellowspt@gmail.com\",\"contactnumber\":\"07970954842\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f8f4cb3e6e13-01239574','','','2024-09-29 06:34:02','2024-09-29 06:34:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41075',0,'cd-form-entry','',0),(41076,0,'2024-09-29 06:35:27','2024-09-29 06:35:27','{\"email\":\"danfellowspt@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"8\",\"currentpostcode\":\"DT1 2DH\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f8f5096d90f3-64922020','','','2024-09-29 06:35:27','2024-09-29 06:35:27','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41076',0,'cd-form-entry','',0),(41077,0,'2024-09-29 10:03:27','2024-09-29 10:03:27','{\"firstname\":\"Dianne\",\"lastname\":\"Riddell\",\"email\":\"diridfitness@gmail.com\",\"contactnumber\":\"01750721090\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66f925daf32f42-33769434','','','2024-09-29 10:03:27','2024-09-29 10:03:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41077',0,'cd-form-entry','',0),(41078,0,'2024-09-29 10:04:59','0000-00-00 00:00:00','{\"email\":\"diridfitness@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"9\",\"currentpostcode\":\"TD7 5BE\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-66f9264b02c637-50992481','','','2024-09-29 10:04:59','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41078',0,'cd-form-entry','',0),(41079,0,'2024-09-30 04:54:35','2024-09-30 04:54:35','{\"firstname\":\"Sara\",\"lastname\":\"moreno\",\"email\":\"Sara.olivamoreno@gmail.com\",\"contactnumber\":\"07413 454014\",\"pageid\":\"40780\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fa2ef740d3a2-59683941','','','2024-09-30 04:54:35','2024-09-30 04:54:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41079',0,'cd-form-entry','',0),(41080,0,'2024-09-30 12:18:57','2024-09-30 12:18:57','{\"firstname\":\"Christian\",\"lastname\":\"Baines\",\"email\":\"cbaineslondon@outlook.com\",\"contactnumber\":\"07388099139\",\"pageid\":\"40778\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fa972a10d3e7-33216035','','','2024-09-30 12:18:57','2024-09-30 12:18:57','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41080',0,'cd-form-entry','',0),(41081,0,'2024-10-01 08:00:51','2024-10-01 08:00:51','{\"firstname\":\"Carole\",\"lastname\":\"Vickers\",\"email\":\"carole_vickers@hotmail.com\",\"contactnumber\":\"07718924909\",\"pageid\":\"40778\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fbac26674d81-19541900','','','2024-10-01 08:00:51','2024-10-01 08:00:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41081',0,'cd-form-entry','',0),(41082,0,'2024-10-01 11:13:52','2024-10-01 11:13:52','{\"firstname\":\"Richard\",\"lastname\":\"Pippett\",\"email\":\"richpippett@hotmail.co.uk\",\"contactnumber\":\"07713640238\",\"pageid\":\"40778\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/author/bioadmin/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fbd9607f20f4-32480139','','','2024-10-01 11:13:52','2024-10-01 11:13:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41082',0,'cd-form-entry','',0),(41083,0,'2024-10-01 11:17:51','2024-10-01 11:17:51','{\"email\":\"richpippett@hotmail.co.uk\",\"interestedbecause\":\"4\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"3\",\"currentpostcode\":\"MK438NJ\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/author/bioadmin/\",\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fbda3b284af0-64187269','','','2024-10-01 11:17:51','2024-10-01 11:17:51','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41083',0,'cd-form-entry','',0),(41084,0,'2024-10-01 12:14:39','2024-10-01 12:14:39','{\"firstname\":\"Paula\",\"lastname\":\"Mercado Ballesteros\",\"email\":\"paulamerball@gmail.com\",\"contactnumber\":\"4376730660\",\"pageid\":\"39238\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fbe771d07249-76163242','','','2024-10-01 12:14:39','2024-10-01 12:14:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41084',0,'cd-form-entry','',0),(41085,0,'2024-10-01 13:17:28','2024-10-01 13:17:28','{\"firstname\":\"Christine\",\"lastname\":\"Leslie\",\"email\":\"chrizzee@hotmail.com\",\"contactnumber\":\"07525006048\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fbf65d96c1e4-94592241','','','2024-10-01 13:17:28','2024-10-01 13:17:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41085',0,'cd-form-entry','',0),(41086,0,'2024-10-01 13:18:43','2024-10-01 13:18:43','{\"email\":\"chrizzee@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"9\",\"currentpostcode\":\"AB12 4TS\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fbf68b2c2254-30374804','','','2024-10-01 13:18:43','2024-10-01 13:18:43','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41086',0,'cd-form-entry','',0),(41087,0,'2024-10-02 02:28:17','2024-10-02 02:28:17','{\"firstname\":\"Damian\",\"lastname\":\"Lawler\",\"email\":\"damian@aikynetix.com\",\"contactnumber\":\"0408845630\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fcafb0b58035-68619669','','','2024-10-02 02:28:17','2024-10-02 02:28:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41087',0,'cd-form-entry','',0),(41088,0,'2024-10-02 02:29:43','2024-10-02 02:29:43','{\"email\":\"damian@aikynetix.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"7009\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat/\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fcafe6a1cdd8-85416188','','','2024-10-02 02:29:43','2024-10-02 02:29:43','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41088',0,'cd-form-entry','',0),(41089,0,'2024-10-02 03:45:40','2024-10-02 03:45:40','{\"firstname\":\"Antoinella\",\"lastname\":\"Falcone\",\"email\":\"antoinella13@outlook.com\",\"contactnumber\":\"07748903489\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fcc1d2be0773-35322899','','','2024-10-02 03:45:40','2024-10-02 03:45:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41089',0,'cd-form-entry','',0),(41090,0,'2024-10-02 04:07:06','2024-10-02 04:07:06','{\"firstname\":\"Svetlana\",\"lastname\":\"Chatzipapafotiou\",\"email\":\"sgordeeva17@gmail.com\",\"contactnumber\":\"+35797731408\",\"pageid\":\"39231\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fcc6d05d5f50-96668910','','','2024-10-02 04:07:06','2024-10-02 04:07:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41090',0,'cd-form-entry','',0),(41091,0,'2024-10-02 14:21:46','2024-10-02 14:21:46','{\"firstname\":\"Alan\",\"lastname\":\"Chalmers\",\"email\":\"alan_chalmers@rocketmail.com\",\"contactnumber\":\"07584049421\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/shop/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fd56f2347578-93625000','','','2024-10-02 14:21:46','2024-10-02 14:21:46','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41091',0,'cd-form-entry','',0),(41092,0,'2024-10-02 23:13:29','2024-10-02 23:13:29','{\"firstname\":\"Russell\",\"lastname\":\"Saunders\",\"email\":\"russellsaund@hotmail.com\",\"contactnumber\":\"07825706183\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fdd3914e33d6-73408433','','','2024-10-02 23:13:29','2024-10-02 23:13:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41092',0,'cd-form-entry','',0),(41093,0,'2024-10-03 09:17:51','2024-10-03 09:17:51','{\"firstname\":\"Daniela\",\"lastname\":\"Bargan\",\"email\":\"bargan.dana@mail.ru\",\"contactnumber\":\"07451427932\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fe612fcd85b8-62072414','','','2024-10-03 09:17:51','2024-10-03 09:17:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41093',0,'cd-form-entry','',0),(41094,0,'2024-10-03 19:31:46','2024-10-03 19:31:46','{\"firstname\":\"Jamie\",\"lastname\":\"Kilburn\",\"email\":\"lindsay.kilburn@icloud.com\",\"contactnumber\":\"07734009783\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fef1143cd088-26602591','','','2024-10-03 19:31:46','2024-10-03 19:31:46','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41094',0,'cd-form-entry','',0),(41095,0,'2024-10-03 19:33:30','0000-00-00 00:00:00','{\"email\":\"lindsay.kilburn@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"5\",\"regionlive\":\"1\",\"currentpostcode\":\"BB11 5HF\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-66fef18a736cd1-09793635','','','2024-10-03 19:33:30','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41095',0,'cd-form-entry','',0),(41096,0,'2024-10-03 19:35:16','2024-10-03 19:35:16','{\"firstname\":\"Jamie\",\"lastname\":\"Kilburn\",\"email\":\"lindsay.kilburn@icloud.com\",\"contactnumber\":\"07734009783\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66fef1ea900ea4-19865276','','','2024-10-03 19:35:16','2024-10-03 19:35:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41096',0,'cd-form-entry','',0),(41097,0,'2024-10-04 01:52:31','2024-10-04 01:52:31','{\"firstname\":\"damian\",\"lastname\":\"lawler\",\"email\":\"damian@aikynetix.com\",\"contactnumber\":\"0408845630\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/intrinsic-biomechanics-association/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66ff4a434e1cb3-32061859','','','2024-10-04 01:52:31','2024-10-04 01:52:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41097',0,'cd-form-entry','',0),(41098,0,'2024-10-04 01:57:09','2024-10-04 01:57:09','{\"email\":\"damian@aikynetix.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"7009\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/intrinsic-biomechanics-association/\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66ff4b4abbfc31-44253983','','','2024-10-04 01:57:09','2024-10-04 01:57:09','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41098',0,'cd-form-entry','',0),(41101,0,'2024-10-04 09:42:20','2024-10-04 09:42:20','{\"firstname\":\"Madhur\",\"lastname\":\"Choudhary\",\"email\":\"Choudharymadhur6@gmail.com\",\"contactnumber\":\"9082899398\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-66ffb86d44d168-58368338','','','2024-10-04 09:42:20','2024-10-04 09:42:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41101',0,'cd-form-entry','',0),(41102,0,'2024-10-04 10:41:51','0000-00-00 00:00:00','{\"firstname\":\"Nicola\",\"lastname\":\"Morgan\",\"email\":\"nicolamorganfhp@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-66ffc66fb903b2-50903286','','','2024-10-04 10:41:51','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41102',0,'cd-form-entry','',0),(41104,0,'2024-10-04 21:23:05','2024-10-04 21:23:05','{\"firstname\":\"David\",\"lastname\":\"Barrie\",\"email\":\"dbarrie20@gmail.com\",\"contactnumber\":\"07837249609\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67005c894e7d01-76713164','','','2024-10-04 21:23:05','2024-10-04 21:23:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41104',0,'cd-form-entry','',0),(41105,0,'2024-10-04 21:24:39','2024-10-04 21:24:39','{\"email\":\"dbarrie20@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"3\",\"currentpostcode\":\"NN14 6GD\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"3\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67005cd59ddbf1-26508397','','','2024-10-04 21:24:39','2024-10-04 21:24:39','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41105',0,'cd-form-entry','',0),(41106,0,'2024-10-04 21:27:25','2024-10-04 21:27:25','{\"firstname\":\"David\",\"lastname\":\"Barrie\",\"email\":\"dbarrie20@gmail.com\",\"contactnumber\":\"07837249609\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67005dab525e78-69458675','','','2024-10-04 21:27:25','2024-10-04 21:27:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41106',0,'cd-form-entry','',0),(41107,0,'2024-10-04 21:27:53','2024-10-04 21:27:53','{\"firstname\":\"David\",\"lastname\":\"Barrie\",\"email\":\"dbarrie20@gmail.com\",\"contactnumber\":\"07837249609\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67005dd3527848-92669454','','','2024-10-04 21:27:53','2024-10-04 21:27:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41107',0,'cd-form-entry','',0),(41108,0,'2024-10-04 21:28:55','2024-10-04 21:28:55','{\"email\":\"dbarrie20@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"3\",\"currentpostcode\":\"NN14 6GD\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"3\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67005e00b96e33-41501678','','','2024-10-04 21:28:55','2024-10-04 21:28:55','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41108',0,'cd-form-entry','',0),(41109,0,'2024-10-05 20:03:57','2024-10-05 20:03:57','{\"firstname\":\"Timothy\",\"lastname\":\"Foster\",\"email\":\"pinhead602000@yahoo.com\",\"contactnumber\":\"3045335617\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67019b9cb02380-05263041','','','2024-10-05 20:03:57','2024-10-05 20:03:57','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41109',0,'cd-form-entry','',0),(41110,0,'2024-10-05 20:04:43','0000-00-00 00:00:00','{\"email\":\"pinhead602000@yahoo.com\",\"interestedbecause\":\"4\",\"agegroup\":\"5\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"25323\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67019bdb766e68-09851152','','','2024-10-05 20:04:43','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41110',0,'cd-form-entry','',0),(41111,0,'2024-10-06 13:28:04','2024-10-06 13:28:04','{\"firstname\":\"Scott\",\"lastname\":\"Duncan\",\"email\":\"scottduncan24@hotmail.co.uk\",\"contactnumber\":\"07746433939\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67029051d9f909-70891314','','','2024-10-06 13:28:04','2024-10-06 13:28:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41111',0,'cd-form-entry','',0),(41112,0,'2024-10-06 13:29:54','2024-10-06 13:29:54','{\"email\":\"scottduncan24@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"9\",\"currentpostcode\":\"EH26 8EN\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670290bacd6180-28813963','','','2024-10-06 13:29:54','2024-10-06 13:29:54','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41112',0,'cd-form-entry','',0),(41113,0,'2024-10-07 11:38:28','2024-10-07 11:38:28','{\"firstname\":\"test\",\"lastname\":\"test\",\"email\":\"test@test.com\",\"contactnumber\":\"07412742940\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/?gtm_debug=1728301031996\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6703c82d6d8958-06432663','','','2024-10-07 11:38:28','2024-10-07 11:38:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41113',0,'cd-form-entry','',0),(41115,3,'2024-10-07 12:10:02','2024-10-07 12:10:02','','Biomechanics Coaching Diploma for Personal Trainers','','publish','closed','closed','','ppc-page-biomechanics-coaching-diploma-for-personal-trainers','','','2024-10-07 12:59:01','2024-10-07 12:59:01','',0,'https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training-copy/',0,'page','',0),(41116,3,'2024-10-07 12:44:39','2024-10-07 12:44:39','','Biomechanics Coaching Diploma for Personal Trainers','','inherit','closed','closed','','41115-autosave-v1','','','2024-10-07 12:44:39','2024-10-07 12:44:39','',41115,'https://biomechanicseducation.com/?p=41116',0,'revision','',0),(41117,3,'2024-10-07 12:45:27','2024-10-07 12:45:27','','Biomechanics Coaching Diploma for Personal Trainers','','inherit','closed','closed','','41115-revision-v1','','','2024-10-07 12:45:27','2024-10-07 12:45:27','',41115,'https://biomechanicseducation.com/?p=41117',0,'revision','',0),(41118,3,'2024-10-07 12:45:47','2024-10-07 12:45:47','','Biomechanics Coaching Diploma for Personal Trainers','','inherit','closed','closed','','41115-revision-v1','','','2024-10-07 12:45:47','2024-10-07 12:45:47','',41115,'https://biomechanicseducation.com/?p=41118',0,'revision','',0),(41119,3,'2024-10-07 12:47:38','2024-10-07 12:47:38','','Biomechanics Coaching Diploma for Personal Trainers','','inherit','closed','closed','','41115-revision-v1','','','2024-10-07 12:47:38','2024-10-07 12:47:38','',41115,'https://biomechanicseducation.com/?p=41119',0,'revision','',0),(41120,3,'2024-10-07 12:48:47','2024-10-07 12:48:47','','Biomechanics Coaching Diploma for Personal Trainers','','inherit','closed','closed','','41115-revision-v1','','','2024-10-07 12:48:47','2024-10-07 12:48:47','',41115,'https://biomechanicseducation.com/?p=41120',0,'revision','',0),(41121,3,'2024-10-07 12:58:47','2024-10-07 12:58:47','','Biomechanics Coaching Diploma for Personal Trainers','','inherit','closed','closed','','41115-revision-v1','','','2024-10-07 12:58:47','2024-10-07 12:58:47','',41115,'https://biomechanicseducation.com/?p=41121',0,'revision','',0),(41122,3,'2024-10-07 12:59:01','2024-10-07 12:59:01','','Biomechanics Coaching Diploma for Personal Trainers','','inherit','closed','closed','','41115-revision-v1','','','2024-10-07 12:59:01','2024-10-07 12:59:01','',41115,'https://biomechanicseducation.com/?p=41122',0,'revision','',0),(41123,0,'2024-10-07 14:03:13','2024-10-07 14:03:13','{\"firstname\":\"James\",\"lastname\":\"Dixon\",\"email\":\"jamesjohndixon@hotmail.com\",\"contactnumber\":\"07492032765\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6703ea1b1c62c0-61211416','','','2024-10-07 14:03:13','2024-10-07 14:03:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41123',0,'cd-form-entry','',0),(41124,0,'2024-10-07 14:04:00','2024-10-07 14:04:00','{\"email\":\"jamesjohndixon@hotmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"1\",\"currentpostcode\":\"M220ff\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6703ea408437a2-82126275','','','2024-10-07 14:04:00','2024-10-07 14:04:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41124',0,'cd-form-entry','',0),(41125,0,'2024-10-07 16:13:05','2024-10-07 16:13:05','{\"firstname\":\"Liam\",\"lastname\":\"Fuller\",\"email\":\"liamryanfuller@gmail.com\",\"contactnumber\":\"07399910965\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/product/5-steps-to-a-successful-online-presence-free-webinar/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67040884877002-29548359','','','2024-10-07 16:13:05','2024-10-07 16:13:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41125',0,'cd-form-entry','',0),(41126,0,'2024-10-07 16:14:12','2024-10-07 16:14:12','{\"firstname\":\"Liam\",\"lastname\":\"Fuller\",\"email\":\"liamryanfuller@gmail.com\",\"contactnumber\":\"07399910965\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/product/5-steps-to-a-successful-online-presence-free-webinar/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670408cbd1ae26-45080161','','','2024-10-07 16:14:12','2024-10-07 16:14:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41126',0,'cd-form-entry','',0),(41127,0,'2024-10-07 16:15:30','2024-10-07 16:15:30','{\"email\":\"liamryanfuller@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"8\",\"currentpostcode\":\"BA25QZ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/product/5-steps-to-a-successful-online-presence-free-webinar/\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670408fdf10809-21019766','','','2024-10-07 16:15:30','2024-10-07 16:15:30','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41127',0,'cd-form-entry','',0),(41128,0,'2024-10-07 20:43:27','2024-10-07 20:43:27','{\"firstname\":\"Beth\",\"lastname\":\"Hradek\",\"email\":\"bethhradek@gmail.com\",\"contactnumber\":\"07418610199\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670447da19f4c4-93510191','','','2024-10-07 20:43:27','2024-10-07 20:43:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41128',0,'cd-form-entry','',0),(41129,0,'2024-10-08 07:20:19','2024-10-08 07:20:19','{\"firstname\":\"Rohma\",\"lastname\":\"Samman\",\"email\":\"rohmasaman@gmail.com\",\"contactnumber\":\"03495897447\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwsJO4BhDoARIsADDv4vBIxEw1wVvaXmWeqN_Ex-eXQNv4jo3AG_Ei9qwC1YXOyOR2yEDWJ34aAmH_EALw_wcB\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6704dd23963636-84005791','','','2024-10-08 07:20:19','2024-10-08 07:20:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41129',0,'cd-form-entry','',0),(41130,0,'2024-10-08 22:42:35','2024-10-08 22:42:35','{\"firstname\":\"Yuri\",\"lastname\":\"Haruna\",\"email\":\"yuriharuna9@gmail.com\",\"contactnumber\":\"07435134375\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-coach/#\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6705b54d368888-93367534','','','2024-10-08 22:42:35','2024-10-08 22:42:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41130',0,'cd-form-entry','',0),(41131,0,'2024-10-09 01:58:19','2024-10-09 01:58:19','{\"firstname\":\"Aonpeeya\",\"lastname\":\"Kankhao\",\"email\":\"ttal31398@gmail.com\",\"contactnumber\":\"0987105952\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwsJO4BhDoARIsADDv4vDbtLOGlBPqgvgYdCIbIngkH6Yk98SUzx4n4QudpsEHJrvs9587LmYaAkJGEALw_wcB\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6705e32cf08f91-39651473','','','2024-10-09 01:58:19','2024-10-09 01:58:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41131',0,'cd-form-entry','',0),(41132,0,'2024-10-09 08:07:45','0000-00-00 00:00:00','{\"firstname\":\"jane\",\"lastname\":\"butcher\",\"email\":\"jn.butcher72@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-670639c8c33f38-29334133','','','2024-10-09 08:07:45','2024-10-09 08:07:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41132',0,'cd-form-entry','',0),(41133,3,'2024-10-09 11:15:19','2024-10-09 11:15:19','','David Lloyd Referral','','inherit','closed','closed','','38973-revision-v1','','','2024-10-09 11:15:19','2024-10-09 11:15:19','',38973,'https://biomechanicseducation.com/?p=41133',0,'revision','',0),(41134,3,'2024-10-09 11:34:55','2024-10-09 11:34:55','','EMD UK Referral','','inherit','closed','closed','','39038-revision-v1','','','2024-10-09 11:34:55','2024-10-09 11:34:55','',39038,'https://biomechanicseducation.com/?p=41134',0,'revision','',0),(41135,3,'2024-10-09 11:52:26','2024-10-09 11:52:26','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-10-09 11:52:26','2024-10-09 11:52:26','',39329,'https://biomechanicseducation.com/?p=41135',0,'revision','',0),(41136,3,'2024-10-09 11:53:26','2024-10-09 11:53:26','','Fees and Funding','','inherit','closed','closed','','39329-revision-v1','','','2024-10-09 11:53:26','2024-10-09 11:53:26','',39329,'https://biomechanicseducation.com/?p=41136',0,'revision','',0),(41137,3,'2024-10-09 11:54:46','2024-10-09 11:54:46','<h2>Why You Should Add Hip Hitching to Your Clients’ Programmes</h2>\r\n<span data-contrast=\"auto\">Incorporating hip hitching into your clients\' training can benefit both general fitness enthusiasts and athletes. Let\'s explore what the hip hitch is, its benefits, and how to integrate it effectively into training routines.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2><b><span data-contrast=\"auto\">What Is the Hip Hitch?</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">Hip hitching involves two main joint actions:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Hip Abduction</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Lateral Spinal Flexion</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span data-contrast=\"auto\">Unlike the typical hip abduction where the leg moves away from the body, hip hitching involves lifting the hip away from the standing leg, causing the pelvis to move. This movement also engages the lateral flexors of the spine, making it a multifaceted exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b><span data-contrast=\"auto\">Try This:</span></b><span data-contrast=\"auto\"> Stand on your left leg and lift your right hip up and away. Notice how your left pelvis moves—this is hip hitching in action.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<b>Here is a quick video I put together to show you...</b>\r\n\r\n[embed]https://youtu.be/UhuuS6h3R6Q[/embed]\r\n<h2>Benefits of Hip Hitching</h2>\r\n<span data-contrast=\"auto\">We naturally perform a hip hitch with every step we take, though with a smaller range of motion. Here’s why practicing this movement can be valuable:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Improves Pelvic Stability: Essential for efficient walking and running.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Strengthens Key Muscles: Targets the quadratus lumborum (QL), obliques, gluteus medius, gluteus minimus, and tensor fasciae latae (TFL).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2>Anatomy of the Hip Hitch</h2>\r\n<strong>Hip hitching requires: </strong>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Right hip lifting due to spinal lateral flexion (involving QL and obliques)</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Left hip abducting to stabilize the pelvis (involving glute medius, minimus, and TFL)</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">These muscle groups work together during walking/running to maintain stability in the frontal plane.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Identifying Frontal Plane Stability Issues</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">To assess if your client needs hip hitching exercises, observe their pelvic alignment during single-leg activities. Look for:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Uneven hip levels during single-leg stands or lunges.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Lateral shifts or drops in the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span data-contrast=\"auto\">These signs may indicate weak hip abductors and lateral spinal flexors, making hip hitching an effective corrective exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2>Performing the Hip Hitch</h2>\r\n<b><span data-contrast=\"auto\">Basic Hip Hitch:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Stand on one leg with the other foot off the ground.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Lift and lower the hip through a full range of motion in the frontal plane.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<ol>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Minimize rotation or excessive movement elsewhere.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<b><span data-contrast=\"auto\">Advanced Variations:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Perform on a raised surface to increase range.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Add weights for added resistance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Integrate into static or dynamic lunges for increased complexity and load.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2>Integrating Hip Hitching into Training</h2>\r\n<span data-contrast=\"auto\">Introduce hip hitching early in your clients’ programs to enhance their compound leg exercises. Progressively incorporate more advanced variations to continue challenging their stability and strength.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Incorporating hip hitching can make your training programmes more effective and engaging. Start experimenting with these techniques and observe the improvements in your clients\' performance and stability.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2>Enhance Your Training Skills</h2>\r\n<span data-contrast=\"auto\">Want to reduce your clients\' injury risk and achieve better results? Explore our Biomechanics Coach Diploma, which now includes a Level 4 Low Back Pain Qualification. </span><span data-contrast=\"auto\">Click </span><a href=\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> for more information.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<a style=\"font-family: var(--font-body); font-size: 16px; font-weight: var(--font-body-weight);\" href=\"https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back\" target=\"_blank\" rel=\"noreferrer noopener\"><img class=\"wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" /></a>','Why We Should Consider Adding Hip Hitching To Our Clients Programmes','','inherit','closed','closed','','14386-revision-v1','','','2024-10-09 11:54:46','2024-10-09 11:54:46','',14386,'https://biomechanicseducation.com/?p=41137',0,'revision','',0),(41138,3,'2024-10-09 11:56:18','2024-10-09 11:56:18','<h2><b><span data-contrast=\"auto\">Enhancing Your Anatomy Knowledge</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">Many learners express a desire to deepen their understanding of anatomy and the body. You might recall passing your anatomy exam and thinking, \"I don’t need to remember everything; I know how to teach a client to squat!\" However, when unexpected challenges arise or clients move in ways that puzzle us, we often wish we could recall our anatomy lessons better.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">As a kinesthetic learner and an educator for the past 16 years, I understand the difficulty of teaching complex subjects like anatomy. The key is to provide techniques that help learners anchor each body part to a memorable reference.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">This blog series aims to offer movement practitioners a systematic approach to remembering anatomy, making it relevant and applicable in practice. I\'ll share insights and techniques, including word association, history, and tactics, to make anatomy recall useful for training clients.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2><b>Interesting Pelvis Facts </b></h2>\r\n<ol>\r\n 	<li><span data-contrast=\"auto\">Elvis the Pelvis: Elvis Presley earned this nickname for his hip-thrusting dance moves. The pelvis is often linked to sexuality, which can influence how clients perceive their pelvis and its function.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Pelvis Functions: The pelvis supports the hip joints and protects digestive and reproductive organs. Understanding its functionality helps broaden our perspective beyond just movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Plural of Pelvis: The correct plural term is \"pelves,\" not \"pelvises.\"</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"4\" data-aria-level=\"1\"><span data-contrast=\"auto\">Gender Differences: Male and female pelves differ significantly. The female pelvis is wider and more shallow to accommodate childbirth, a fact that changes with age and should be considered during assessments.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Childbirth Effects: The hormone relaxin softens the pelvic joints during pregnancy and childbirth, permanently changing the pelvis. This should be considered when working with clients who are pregnant or have given birth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"4\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"6\" data-aria-level=\"1\"><span data-contrast=\"auto\">Fetal Development: The development of the pelvis and acetabulum in fetuses is influenced by mechanical stimuli, particularly gluteal muscle activity and femoral head pressure, highlighting the importance of pelvic muscles even before birth.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<h2><span class=\"TextRun SCXW176767768 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW176767768 BCX8\">Understanding Pelvic Biomechanics: The Bony Anatomy</span></span><span class=\"EOP SCXW176767768 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span class=\"TextRun SCXW27846784 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW27846784 BCX8\">Anatomy books and skeleton models only </span><span class=\"NormalTextRun SCXW27846784 BCX8\">provide</span><span class=\"NormalTextRun SCXW27846784 BCX8\"> a limited view of the pelvis. Observing real </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW27846784 BCX8\">pelves</span><span class=\"NormalTextRun SCXW27846784 BCX8\"> reveals the structural diversity among individuals. </span><span class=\"NormalTextRun SCXW27846784 BCX8\">Here’s</span><span class=\"NormalTextRun SCXW27846784 BCX8\"> a closer look at the key bones and their meanings:</span></span><span class=\"EOP SCXW27846784 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter wp-image-24547\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.18.14.png\" alt=\"\" width=\"511\" height=\"476\" />\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ilium: Latin for \"flank\" or \"groin,\" this large, flat bone forms the upper part of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"2\" data-aria-level=\"1\"><span data-contrast=\"auto\">Pubis: Named for the pubic hair that appears during puberty, this bone forms the front part of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Symphysis: Meaning \"fusion,\" this term describes where the pubic bones meet at the front.</span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Ischium: Latin for \"hip joint\" or \"loin,\" this bone forms the lower and back part of the pelvis. It’s where the \"sitting bones\" are located.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Sacrum: Known as the \"holy bone,\" it’s a triangular bone at the base of the spine that protects the genitalia.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"5\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">Coccyx: Greek for \"cuckoo,\" this \"tailbone\" resembles a bird’s bill and is located at the base of the spine.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2><img class=\"aligncenter wp-image-24645\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.50.51-2.png\" alt=\"\" width=\"411\" height=\"354\" /><b><span data-contrast=\"auto\">Key Bony Landmarks</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Iliac Spine: The upper rim of the ilium, used in pelvic function tests. (Iliac) </span><b><span data-contrast=\"auto\">Fossa</span></b><span data-contrast=\"auto\"> is the Greek word for </span><i><span data-contrast=\"auto\">ditch </span></i><span data-contrast=\"auto\">describes the dip of the concave surface on the inner surface of the ilium.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Acetabulum: Latin for \"vinegar cup,\" this is the hip socket where the femur head fits.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2><b>Acronyms for Bony Areas &amp; Prominences </b></h2>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">SIJ: Sacroiliac Joint, where the sacrum meets the ilium, often associated with lower back pain.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">PSIS: Posterior Superior Iliac Spine, located at the back of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">ASIS: Anterior Superior Iliac Spine, located at the front of the pelvis.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"6\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><span data-contrast=\"auto\">AIIS: Anterior Inferior Iliac Spine, below the ASIS.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h2><b><span data-contrast=\"auto\">Structural Variations</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></h2>\r\n<span data-contrast=\"auto\">Understanding genetic differences in pelvic structure is crucial for tailoring exercise programmes:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-24550\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.20.58.png\" alt=\"\" width=\"454\" height=\"424\" />\r\n\r\n<span style=\"font-weight: 400;\">We know we genetically differ and as you can see here we can differ inside our bodies as much as we do on the outside but what does that mean to us as trainers? </span>\r\n\r\n<span style=\"font-weight: 400;\">Coxa Valgus or Vara &amp; Femoral Version are good examples of terminologies for clients pelvis/hip geometry that differ in a way that may have clinical or movement relevance for their practitioner.</span>\r\n\r\n<span style=\"font-weight: 400;\">These can be identified using simple manual tests that we offer on our <a href=\"https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/\" target=\"_blank\" rel=\"noopener noreferrer\">Running Biomechanics Workshops</a> for example. They can change the way we prescribe exercises or what we expect of our clients when they move. Hopefully these descriptions help to appreciate this….</span>\r\n\r\n<b>The Femur</b> <span style=\"font-weight: 400;\">is the largest bone in the body &amp; we will only discuss here the top (proximal) portion that relates to the pelvis. The other end (distal) will be discussed in the Knee Series.</span>\r\n\r\n<b>Trochanter</b><span style=\"font-weight: 400;\"> comes from the Greek word </span><i><span style=\"font-weight: 400;\">trokhos</span></i><span style=\"font-weight: 400;\"> for wheel. It describes the large round feeling bony prominence at the side of the pelvis. It is a key landing site for the lateral glutes &amp; piriformis - to be discussed next time. </span>\r\n\r\n<b>Neck of femur</b><span style=\"font-weight: 400;\"> is the part of the femur that looks like a neck sticking out from the medial side of the main femur thigh bone where the greater trochanter is lateral &amp; then ends in the ‘ball’ of the hip’s ball &amp; socket joint.</span>\r\n\r\n<img class=\"aligncenter wp-image-24646\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.57.12.png\" alt=\"\" width=\"342\" height=\"301\" />\r\n\r\n<b>Coxa</b><span style=\"font-weight: 400;\"> is a Latin word meaning hip or limb joint (koks-h)  </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Coxa Vara:</strong> A decreased angle at the hip, potentially limiting abduction.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Coxa Valga:</strong> An increased angle at the hip, potentially limiting adduction.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span style=\"font-weight: 400;\">Imagine you have a client who has been diagnosed as Coxa Valga….how might this alter your expectations when you write them a programme or train them in your facility?</span>\r\n\r\n<img class=\"aligncenter wp-image-24548\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.48.png\" alt=\"\" width=\"315\" height=\"217\" />\r\n\r\n<b>Femoral</b><span style=\"font-weight: 400;\"> is </span><span style=\"font-weight: 400;\">related to the thigh or </span><b>femur. </b>\r\n\r\n<b>Version</b><span style=\"font-weight: 400;\"> or </span><span style=\"font-weight: 400;\">Vers is Latin for turned or to turn.</span>\r\n\r\n<b>Femoral Version</b><span style=\"font-weight: 400;\"> describes the rotation (of turn) of the femur in relation to the pelvis. </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Femoral Anteversion:</strong> Medial rotation of the femur.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\"><strong>Femoral Retroversion:</strong> Lateral rotation of the femur.</span>\r\n\r\n<span style=\"font-weight: 400;\">Imagine you have a client who has been diagnosed as femoral anteversion….how might this alter your expectations when you write them a squat programme or train them in your facility?</span>\r\n\r\n&nbsp;\r\n\r\n<img class=\"aligncenter size-full wp-image-24549\" src=\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.18.png\" alt=\"\" width=\"866\" height=\"408\" />\r\n\r\n&nbsp;\r\n\r\n<b><span data-contrast=\"auto\">Application in Training</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">Knowing these anatomical details helps explain why clients move differently. This knowledge is vital for designing effective training programs and assessing pelvic function.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h1>Learn more with our Pelvic &amp; Spine Biomechanics Online CPD Training <a href=\"https://biomechanicseducation.com/courses/online-cpd-courses/\">here</a>.</h1>\r\n<span class=\"TextRun SCXW264464150 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW264464150 BCX8\">Discover more with our Diploma in Biomechanics Coaching </span></span><a class=\"Hyperlink SCXW264464150 BCX8\" href=\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\" target=\"_blank\" rel=\"noreferrer noopener\"><span class=\"TextRun Underlined SCXW264464150 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"none\"><span class=\"NormalTextRun SCXW264464150 BCX8\" data-ccp-charstyle=\"Hyperlink\">here</span></span></a><span class=\"EOP SCXW264464150 BCX8\" data-ccp-props=\"{&quot;134233117&quot;:false,&quot;134233118&quot;:false,&quot;201341983&quot;:0,&quot;335551550&quot;:1,&quot;335551620&quot;:1,&quot;335559685&quot;:0,&quot;335559737&quot;:0,&quot;335559738&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h2><b>References:</b></h2>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Benson, Emily. A Woman’s Pelvis Narrows as She Ages. 25 Apr. 2016, Science.org.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Cooperstein R, Hickey M. The Reliability of Palpating the Posterior Superior Iliac Spine: A Systematic Review. J Can Chiropr Assoc. 2016 Mar;60(1):36-46. PMID: 27069265; PMCID: PMC4807681.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Coxa Vara / Coxa Valga. Physiopedia, Physio-Pedia.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Delaere O, Dhem A. Prenatal Development of the Human Pelvis and Acetabulum. Acta Orthop Belg. 1999 Sep;65(3):255-60. PMID: 10546347.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">The Femur. TeachMeAnatomy, TeachMeAnatomy.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"3\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Rosenfeld, Jordan. 7 Essential Facts about the Pelvis. Mental Floss, 21 Sept. 2017, Mental Floss.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>','Pelvic (Hip) Biomechanics - Part 1 - The Bones of the Hip','','inherit','closed','closed','','24544-revision-v1','','','2024-10-09 11:56:18','2024-10-09 11:56:18','',24544,'https://biomechanicseducation.com/?p=41138',0,'revision','',0),(41139,3,'2024-10-09 11:57:30','2024-10-09 11:57:30','<h2>What Exactly Is Intrinsic Biomechanics?</h2>\r\n<span data-contrast=\"auto\">At Biomechanics Education, we often encounter questions about the type of biomechanics we specialise in. This blog aims to clarify this by defining key terms and concepts related to our field.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3>Definitions</h3>\r\n<span style=\"font-weight: 400;\">The study of the mechanical laws relating to the movement or structure of living organisms.</span>\r\n\r\n<strong><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW255872933 BCX8\"><strong><span class=\"SCXW255872933 BCX8\"> </span></strong><br class=\"SCXW255872933 BCX8\" /></span><span class=\"TextRun SCXW255872933 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW255872933 BCX8\">The study of mechanical laws relating to the movement or structure of living organisms.</span></span><span class=\"EOP SCXW255872933 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<strong><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">Extrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW13749985 BCX8\"><strong><span class=\"SCXW13749985 BCX8\"> </span></strong><br class=\"SCXW13749985 BCX8\" /></span><span class=\"TextRun SCXW13749985 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW13749985 BCX8\">This involves analysing movement performance using advanced machinery like </span><span class=\"NormalTextRun SpellingErrorV2Themed SCXW13749985 BCX8\">isokinetics</span><span class=\"NormalTextRun SCXW13749985 BCX8\"> and kinematics to understand forces, loads, and levers. Practically, it includes observing and correcting client movements using verbal and visual cues.</span></span><span class=\"EOP SCXW13749985 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<img class=\"aligncenter wp-image-4110\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/ankleinvsupine.jpg\" alt=\"ankleinvsupine\" width=\"318\" height=\"270\" />\r\n\r\n&nbsp;\r\n\r\n<span style=\"font-weight: 400;\"><strong><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">Intrinsic Biomechanics:</span></span></strong><span class=\"LineBreakBlob BlobObject DragDrop SCXW41082360 BCX8\"><br class=\"SCXW41082360 BCX8\" /></span><span class=\"TextRun SCXW41082360 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW41082360 BCX8\">This focuses on understanding the internal neuro-musculoskeletal system, which creates external movements. It examines what happens inside the body to produce the movements we see externally.</span></span></span><span style=\"font-weight: 400;\"><span class=\"EOP SCXW41082360 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></span><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4111\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Picture1-1.png\" alt=\"picture1-1\" width=\"376\" height=\"270\" /></span></span>\r\n<h2>iMoveFreely® (IMF) Programme</h2>\r\n<span data-contrast=\"auto\">The iMoveFreely® programme is a system of low-intensity exercises designed to prepare the body for movement, reduce injury risk, and enhance performance. Initially exclusive to high-level athletes, it is now recognised as fundamental for anyone seeking to move more freely. The programme consists of three phases:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"wp-image-4114 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3491-1024x768.jpg\" alt=\"img_3491\" width=\"354\" height=\"266\" /></span></span></h3>\r\n<h3><span style=\"text-decoration: underline;\">Preparation and Capacity</span></h3>\r\n<span data-contrast=\"auto\">This phase addresses the interconnectedness of muscles, joints, and nerves with techniques that:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Use specific muscle energy techniques to reduce spasms (based on Ribot-Ciscar and Jiri Dvorak’s research).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Incorporate nerve mobilization techniques (based on David Butler’s work).</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Apply joint mobilisation techniques to improve movement.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4112\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg\" alt=\"23279787_145150382772305_2188784676288593920_n\" width=\"297\" height=\"297\" /></span>\r\n\r\n<span data-contrast=\"auto\">The goal is to restore capacity around the pelvis, spine, and shoulders, ensuring they move freely and correctly.</span>\r\n<h2><span style=\"text-decoration: underline;\">Stability and Control</span></h2>\r\n<span data-contrast=\"auto\">Building on the first phase, this stage focuses on:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li><span data-contrast=\"auto\">Aligning the spine and enhancing capacity.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li><span data-contrast=\"auto\">Reducing risk when performing core strength exercises.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<span data-contrast=\"auto\">Using a three-step approach based on research by Haines, McGill, Matthews, and Cholwewicki to stabilize and control the pelvis, spine, and shoulders.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span><span data-contrast=\"auto\">This phase prepares clients for more advanced movements, promoting overall stability and control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4115\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1024x576.jpg\" alt=\"romanian-deadlifts-training-the-other-half-of-your-leg-header-v2\" width=\"368\" height=\"207\" /></span></span>\r\n<h3><span style=\"text-decoration: underline;\"> Function &amp; Performance</span></h3>\r\n<span data-contrast=\"auto\">The final phase strengthens key areas like the pelvis, shoulders, knees, and feet. It involves:</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n<ul>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Assessing joint strength ratios.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Considering sport-specific movements and pre-orthotic conditioning.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">This phase aims to reduce injury risk and optimize performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ul>\r\n<h3><span style=\"text-decoration: underline;\"><span style=\"font-weight: 400;\"><img class=\"aligncenter wp-image-4116\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2.jpg\" alt=\"olympic-lifting-2\" width=\"444\" height=\"283\" /></span></span></h3>\r\n<h2>Biomechanics Education Programmes</h2>\r\n<h3><span style=\"font-weight: 400;\">Biomechanics Coach™ (BC)</span></h3>\r\n<span style=\"font-weight: 400;\">This is an 6-8-month diploma with 4-6 days face to face, a 1hr practical assessment and home study, open to level 3 exercise professionals and above including therapists and coaches with an equivalent level of anatomy knowledge and exercise prescription skills. There are a total of 42 manual and visual assessments based on over 20yrs of research comparing them to isokinetic results for accuracy. BC’s are encouraged and reputed, to have a high level of inter-professional language skills giving them the ability to cross both exercise and therapy worlds while maintaining their professional scope of practice. </span>\r\n<h3><span style=\"font-weight: 400;\">Intrinsic Biomechanics Association (IBA)</span></h3>\r\n<span style=\"font-weight: 400;\">An organisation offering education, support, networking opportunities and encouragement of inter-professional relationships between exercise professionals, sports coaches, therapists, clinicians, podiatrists and any professional working one to one or in group exercise. It is also for those interested in learning and sharing anything that helps us all improve health, function and fitness while reducing injury risk in our clients. The IBA runs 6 annual Discovery Day workshops/webinars that are open to both members (free) and non-members who will pay a small access fee. </span>\r\n<h3><span style=\"font-weight: 400;\">Master Trainer (MT)</span></h3>\r\n<span style=\"font-weight: 400;\">An individual trained to deliver the intrinsic biomechanics education programmes through a licensed Education Provider. Open to BC’s demonstrating teaching and communication skills while pro-actively promoting intrinsic biomechanics education and skills. </span>\r\n<h2>Join Us</h2>\r\n<span data-contrast=\"auto\">Would you like to be part of this fast-growing, highly reputed group of practitioners contributing to improving movement, reducing discomfort, and lowering injury risk?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">YES? </span><a href=\"https://biomechanicseducation.com/courses/cpd-courses/imovefreely/\"><span data-contrast=\"none\">CLICK HERE</span></a><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\r\n\r\n<span data-contrast=\"auto\">By joining, you\'ll gain access to a network of professionals and the latest biomechanics education to enhance your practice and client outcomes.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>','What Exactly Is Intrinsic Biomechanics?','','inherit','closed','closed','','4106-revision-v1','','','2024-10-09 11:57:30','2024-10-09 11:57:30','',4106,'https://biomechanicseducation.com/?p=41139',0,'revision','',0),(41140,3,'2024-10-09 11:58:49','2024-10-09 11:58:49','<!-- wp:paragraph -->\r\n<p><b><span data-contrast=\"auto\">Why the Turkish Get-Up is Essential for Personal Trainers</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The Turkish Get-Up (TGU) is a versatile and effective exercise that should be a staple in any personal trainer\'s programming. Its ability to engage multiple joints and muscles across various planes of movement makes it incredibly efficient, providing comprehensive benefits from just one exercise.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><b><span data-contrast=\"auto\">Full-Body Engagement and Cardiovascular Benefits</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The TGU involves numerous joint actions and muscle groups, which can deliver a full-body workout. This exercise can be performed with different equipment, adding variety to your routine. It also offers cardiovascular benefits due to the continuous movement required to transition from lying on the floor to standing and back down again.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><b><span data-contrast=\"auto\">Expert Endorsements</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Renowned strength coach Dan John advocates for the TGU as a diagnostic tool. He uses a simple test where clients must get down on the floor and stand back up to identify mobility limitations and joint restrictions. This drill is fundamental to daily movement and reveals areas needing improvement before progressing to more dynamic exercises.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Practical Application: Getting Up and Down</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Practicing the TGU helps maintain and improve the essential ability to get up from the floor - a skill that can decline with age. This exercise is particularly valuable for older adults, helping prevent the fear and consequences of being unable to get up after a fall.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">StrongFirst Kettlebell Workshop Insights</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The StrongFirst Kettlebell workshop, led by <a href=\"https://www.strongfirst.com/about/pavel-tsatsouline/\">Pavel Tsatsouline</a>, provides excellent technical training on the TGU. This programme emphasises proper technique and progressive learning, starting without weights and gradually adding load. Investing in quality education from reputable organisations like StrongFirst can significantly enhance your understanding and execution of the TGU.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p>I recommend you check out his books…</p>\r\n<p><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --></p>\r\n<p><a href=\"https://www.amazon.co.uk/Naked-Warrior-Pavel-Tsatsouline/dp/0938045555/ref=sr_1_1?keywords=Pavel+Tsatsouline&amp;qid=1556470624&amp;s=gateway&amp;sr=8-1\">The Naked Warrior</a></p>\r\n<p><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --></p>\r\n<p><a href=\"https://www.amazon.co.uk/Kettlebell-Simple-Sinister-Pavel-Tsatsouline-ebook/dp/B00GF2HP9G/ref=sr_1_2?keywords=Pavel+Tsatsouline&amp;qid=1556470651&amp;s=gateway&amp;sr=8-2\">Kettlebell Simple &amp; Sinister</a></p>\r\n<p><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --></p>\r\n<p><a href=\"https://www.amazon.co.uk/Enter-Kettlebell-Strength-Secret-Supermen/dp/1942812132/ref=sr_1_3?keywords=Pavel+Tsatsouline&amp;qid=1556470651&amp;s=gateway&amp;sr=8-3 \" target=\"_blank\" rel=\"noreferrer noopener\" aria-label=\"Enter The Kettlebell  (opens in a new tab)\">Enter The Kettlebell </a></p>\r\n<p><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --></p>\r\n<p>However, I must also make a very special mention 2 of my favourite mentors in the kettlebell, <strong>Troy Martin (TM Fitness) &amp; Stephen Aish (The mindset Coaching Academy) ,</strong> since they have also contributed a lot to my understanding of the use and variations of the kettlebell as an awesome training tool. </p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":4} --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h1><strong>How To Do A Turkish Get Up</strong></h1>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>The beauty of the TGU is that each part of the movement can be taught one move at a time, without a kettlebell to begin with, particularly if you are coaching a client or trying it for the first time.  Once you get going with the combination remember to hold each position for a moment prior to moving on so that you can feel the position and absorb the benefits of that position and that load, at each point.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"level\":3} --><!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<ol>\r\n<li><span class=\"TextRun SCXW103513652 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW103513652 BCX8\"><strong>Starting Position:</strong> </span></span><span class=\"TextRun SCXW103513652 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW103513652 BCX8\">Lie on your side, knees bent, hips at 90 degrees, with the </span><span class=\"NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW103513652 BCX8\">left hand</span><span class=\"NormalTextRun SCXW103513652 BCX8\"> palm </span><span class=\"NormalTextRun ContextualSpellingAndGrammarErrorV2Themed SCXW103513652 BCX8\">up holding</span><span class=\"NormalTextRun SCXW103513652 BCX8\"> the kettlebell.</span></span><span class=\"EOP SCXW103513652 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13430} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13430\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-1.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW186635134 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW186635134 BCX8\">2. Roll to Back:</span></span></strong><span class=\"TextRun SCXW186635134 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW186635134 BCX8\"> Extend your left arm straight up with the kettlebell resting on the back of your hand. Bend your left knee, foot flat, and extend your right leg.</span></span><span class=\"EOP SCXW186635134 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13431} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13431\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-2-Biomechanics-Education.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW81553435 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW81553435 BCX8\">3. Press and Roll:</span></span></strong><span class=\"TextRun SCXW81553435 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW81553435 BCX8\"> Press the left foot down, engage your trunk, press the kettlebell upwards, and roll onto your right elbow.</span></span><span class=\"EOP SCXW81553435 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13432} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13432\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-3-Biomechanics-Education.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW119162220 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW119162220 BCX8\">4. Sit-Up:</span></span></strong><span class=\"TextRun SCXW119162220 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW119162220 BCX8\"> Lift onto your right hand, extending both arms with the kettlebell overhead.</span></span><span class=\"EOP SCXW119162220 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13434} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13434\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-4-Biomechanics-Coach.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong>5. </strong><span class=\"TextRun SCXW170957954 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW170957954 BCX8\"><strong>Kneel:</strong> </span></span><span class=\"TextRun SCXW170957954 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW170957954 BCX8\">Shift weight onto the left foot and right hand, moving your right leg to a kneeling position behind you.</span></span><span class=\"EOP SCXW170957954 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13435} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13435\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Instruction-Biomechanics-Coach.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong>6. <span class=\"TextRun SCXW229150756 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW229150756 BCX8\">Lunge: </span></span></strong><span class=\"TextRun SCXW229150756 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW229150756 BCX8\">Move to an upright kneeling position, keeping the kettlebell overhead.</span></span><span class=\"EOP SCXW229150756 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13436} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13436\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Guide-Biomechanics-Education.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:image {\"id\":13437} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13437\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Biomechanics-Education-Kneeling-lunge-position.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW158743961 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW158743961 BCX8\">7. Stand: </span></span><span class=\"TextRun SCXW158743961 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW158743961 BCX8\">Step your left foot forward and stand up, </span><span class=\"NormalTextRun SCXW158743961 BCX8\">maintaining</span><span class=\"NormalTextRun SCXW158743961 BCX8\"> the kettlebell overhead.</span></span><span class=\"EOP SCXW158743961 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></strong></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":13438} -->\r\n<figure class=\"wp-block-image\"><img class=\"wp-image-13438\" src=\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-Stand.jpg\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong><span class=\"TextRun SCXW200449709 BCX8\" lang=\"EN-US\" xml:lang=\"EN-US\" data-contrast=\"auto\"><span class=\"NormalTextRun SCXW200449709 BCX8\">Reversing the Movement</span></span><span class=\"EOP SCXW200449709 BCX8\" data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559685&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></strong></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>To repeat the movement in reverse it looks like this:</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<ol>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Step Back:</span></b><span data-contrast=\"auto\"> Step the right leg back, kneeling down while keeping the kettlebell overhead.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li><b><span data-contrast=\"auto\">Flex and Sit:</span></b><span data-contrast=\"auto\"> Laterally flex to your right, place your right hand on the floor, and push hips back, keeping eyes on the kettlebell.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li data-leveltext=\"%1.\" data-font=\"\" data-listid=\"2\" data-list-defn-props=\"{&quot;335552541&quot;:0,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769242&quot;:[65533,0],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;%1.&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"3\" data-aria-level=\"1\"><b><span data-contrast=\"auto\">Transition:</span></b><span data-contrast=\"auto\"> Shift weight onto the left foot and right hand, moving the right leg forward to sit with the right leg extended.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n<li><b><span data-contrast=\"auto\">Lower: </span></b><span data-contrast=\"auto\">Brace your trunk, lower onto your right elbow, and control your descent back to the starting position.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\r\n</ol>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong>The Switch or Halo </strong></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>To transition to the other side when using a KB literally drag the KB from the finishing position above, along the floor, in a halo over your head to the same position but on your right side.  </p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Repeat all the above on your right side!</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Repeat over and over for a great little cardio strength workout</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Then add more kilos… and repeat, repeat, repeat!</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><b><span data-contrast=\"auto\">Benefits for Personal Trainers</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">The TGU is not just a strength and conditioning tool but also a movement enhancer, especially beneficial for older adults. It improves the ability to get up from the floor, potentially reducing injury risk and increasing confidence. This exercise is suitable for clients of all ages and fitness levels, making it a valuable addition to any training program.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><b><span data-contrast=\"auto\">Enhance Your Training Skills</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<p><span data-contrast=\"auto\">Want to reduce your clients\' risk of injury and help them achieve better results? Learn more about our Biomechanics Coach Diploma, now including a Level 4 Low Back Pain Qualification, to become an even more effective personal trainer. Click </span><a href=\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\"><span data-contrast=\"none\">here</span></a><span data-contrast=\"auto\"> to find out more.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>&nbsp;</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:separator --><hr class=\"wp-block-separator\" /><!-- /wp:separator -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Would You Like To Be Able To Reduce Your Clients Risk Of Injury &amp; Help Them Get Even Better Results?</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Contact: <a href=\"mailto:info@biomechanicseducation.com\">info@biomechanicseducation.com</a></p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":7922,\"align\":\"center\",\"linkDestination\":\"custom\"} -->\r\n<div class=\"wp-block-image\">\r\n<figure class=\"aligncenter\"><img class=\"alignnone wp-image-7922\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg\" alt=\"\" width=\"1024\" height=\"576\" /></figure>\r\n</div>\r\n<!-- /wp:image -->','Why The Turkish Get Up Is Valuable To A Personal Trainer’s Programming','','inherit','closed','closed','','13299-revision-v1','','','2024-10-09 11:58:49','2024-10-09 11:58:49','',13299,'https://biomechanicseducation.com/?p=41140',0,'revision','',0),(41141,3,'2024-10-09 12:42:42','2024-10-09 12:42:42','<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: https://biomechanicseducation.com.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select \"Remember Me\", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2 class=\"wp-block-heading\">Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->\r\n<p>&nbsp;</p>','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2024-10-09 12:42:42','2024-10-09 12:42:42','',3,'https://biomechanicseducation.com/?p=41141',0,'revision','',0),(41142,3,'2024-10-09 12:46:16','2024-10-09 12:46:16','','Event Referral Page','','inherit','closed','closed','','39043-revision-v1','','','2024-10-09 12:46:16','2024-10-09 12:46:16','',39043,'https://biomechanicseducation.com/?p=41142',0,'revision','',0),(41143,0,'2024-10-09 13:09:20','2024-10-09 13:09:20','{\"firstname\":\"test\",\"lastname\":\"test\",\"email\":\"test@test.com\",\"contactnumber\":\"07412742940\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6706807b53b2d0-07316430','','','2024-10-09 13:09:20','2024-10-09 13:09:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41143',0,'cd-form-entry','',0),(41145,0,'2024-10-09 14:00:02','2024-10-09 14:00:02','{\"firstname\":\"Nick\",\"lastname\":\"Warren-Bennett\",\"email\":\"nick@nwbfitness.co.uk\",\"contactnumber\":\"07885827900\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67068c56e24f96-91241324','','','2024-10-09 14:00:02','2024-10-09 14:00:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41145',0,'cd-form-entry','',0),(41146,0,'2024-10-09 14:02:19','2024-10-09 14:02:19','{\"firstname\":\"Nick\",\"lastname\":\"Warren-Bennett\",\"email\":\"nick@nwbfitness.co.uk\",\"contactnumber\":\"07885827900\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67068ce6939a85-58119201','','','2024-10-09 14:02:19','2024-10-09 14:02:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41146',0,'cd-form-entry','',0),(41147,0,'2024-10-09 14:50:17','0000-00-00 00:00:00','{\"firstname\":\"Hannah\",\"lastname\":\"Pharoah\",\"email\":\"hannahpharoah@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-670698296a4337-17538349','','','2024-10-09 14:50:17','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41147',0,'cd-form-entry','',0),(41148,0,'2024-10-10 07:51:02','2024-10-10 07:51:02','{\"firstname\":\"John\",\"lastname\":\"G\",\"email\":\"johntg@mail.com\",\"contactnumber\":\"07880706684\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67078757a25385-09272774','','','2024-10-10 07:51:02','2024-10-10 07:51:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41148',0,'cd-form-entry','',0),(41149,0,'2024-10-10 10:08:00','2024-10-10 10:08:00','{\"firstname\":\"test\",\"lastname\":\"test\",\"email\":\"test@test.com\",\"contactnumber\":\"07412742940\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6707a778c6b013-05176687','','','2024-10-10 10:08:00','2024-10-10 10:08:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41149',0,'cd-form-entry','',0),(41150,0,'2024-10-10 10:24:29','2024-10-10 10:24:29','{\"firstname\":\"test\",\"lastname\":\"test\",\"email\":\"test@info.com\",\"contactnumber\":\"1234567899\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?gtm_debug=1728555837716\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6707ab5385eb31-97754479','','','2024-10-10 10:24:29','2024-10-10 10:24:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41150',0,'cd-form-entry','',0),(41151,0,'2024-10-10 10:27:15','0000-00-00 00:00:00','{\"firstname\":\"Helena\",\"lastname\":\"Leathers\",\"email\":\"helena.leathers@futurefit.co.uk\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?gtm_debug=1728556004284\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6707ac0366c9e2-30751130','','','2024-10-10 10:27:15','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41151',0,'cd-form-entry','',0),(41152,0,'2024-10-10 10:27:42','2024-10-10 10:27:42','{\"firstname\":\"test\",\"lastname\":\"test\",\"email\":\"test@info.com\",\"contactnumber\":\"1234567899\",\"interestedinbiomechanics\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?gtm_debug=1728555837716\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6707ac1bb9e1b3-24681350','','','2024-10-10 10:27:42','2024-10-10 10:27:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41152',0,'cd-form-entry','',0),(41153,0,'2024-10-10 10:30:49','2024-10-10 10:30:49','{\"firstname\":\"test\",\"lastname\":\"test\",\"email\":\"test@info.com\",\"contactnumber\":\"1234567899\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?gtm_debug=1728556210671\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6707acca6d7f50-63965214','','','2024-10-10 10:30:49','2024-10-10 10:30:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41153',0,'cd-form-entry','',0),(41154,0,'2024-10-11 07:29:19','2024-10-11 07:29:19','{\"firstname\":\"jane\",\"lastname\":\"whitworth\",\"email\":\"janelise4@gmail.com\",\"contactnumber\":\"0430282134\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6708d34fb604e6-37222170','','','2024-10-11 07:29:19','2024-10-11 07:29:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41154',0,'cd-form-entry','',0),(41155,0,'2024-10-11 10:06:52','0000-00-00 00:00:00','{\"firstname\":\"Mark\",\"lastname\":\"Gleeson\",\"email\":\"mark@mgleeson.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6708f8bc7a5667-13954913','','','2024-10-11 10:06:52','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41155',0,'cd-form-entry','',0),(41156,0,'2024-10-11 21:25:28','0000-00-00 00:00:00','{\"firstname\":\"cucumber naw and ladonna and good and addon spark, all people good http://vo.74z5mlou3.top/xlwzg\",\"lastname\":\"cucumber naw and ladonna and good and addon spark, all people good http://vo.74z5mlou3.top/xlwzg\",\"email\":\"alex02@24red.ru\",\"contactnumber\":\"cucumber naw and ladonna and good and addon spark, all people good http://vo.74z5mlou3.top/xlwzg\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-670997c7f40405-69641943','','','2024-10-11 21:25:28','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41156',0,'cd-form-entry','',0),(41157,0,'2024-10-12 19:32:36','2024-10-12 19:32:36','{\"firstname\":\"Anita\",\"lastname\":\"Hook\",\"email\":\"anita.hook@hotmail.co.uk\",\"contactnumber\":\"0788193447\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/?fbclid=IwZXh0bgNhZW0CMTEAAR27WIuZ2E5g2fxCmjbco5VMDIZt7PDx4RzQXdk-bSdtnTlxHVnrFRIEESs_aem_OrWYSGbSdNBjl33iQDnjWA\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670acec5715772-52559025','','','2024-10-12 19:32:36','2024-10-12 19:32:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41157',0,'cd-form-entry','',0),(41158,0,'2024-10-12 23:33:06','2024-10-12 23:33:06','{\"firstname\":\"Vishal\",\"lastname\":\"Yadav\",\"email\":\"vishnucocvillage@gmail.com\",\"contactnumber\":\"07718060925\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670b072b92dcf2-43362919','','','2024-10-12 23:33:06','2024-10-12 23:33:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41158',0,'cd-form-entry','',0),(41159,0,'2024-10-12 23:34:27','2024-10-12 23:34:27','{\"email\":\"vishnucocvillage@gmail.com\",\"interestedbecause\":\"2\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"400088\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"4\",\"workindustry\":\"15\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670b0758b09a91-75855603','','','2024-10-12 23:34:27','2024-10-12 23:34:27','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41159',0,'cd-form-entry','',0),(41160,0,'2024-10-13 20:03:26','2024-10-13 20:03:26','{\"firstname\":\"Chiara\",\"lastname\":\"Fumagalli\",\"email\":\"chiara.nfumagalli@gmail.com\",\"contactnumber\":\"7816545315\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670c277c82db17-85243143','','','2024-10-13 20:03:26','2024-10-13 20:03:26','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41160',0,'cd-form-entry','',0),(41161,0,'2024-10-14 07:19:24','2024-10-14 07:19:24','{\"firstname\":\"Tracy\",\"lastname\":\"English\",\"email\":\"tebartlett@gmail.com\",\"contactnumber\":\"07500551910\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670cc5e6962db1-77471754','','','2024-10-14 07:19:24','2024-10-14 07:19:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41161',0,'cd-form-entry','',0),(41162,0,'2024-10-14 09:38:37','0000-00-00 00:00:00','{\"firstname\":\"as\",\"lastname\":\"ass\",\"email\":\"aSA@SFF.COM\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-670ce69d76b2c4-12279055','','','2024-10-14 09:38:37','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41162',0,'cd-form-entry','',0),(41163,0,'2024-10-14 09:54:27','2024-10-14 09:54:27','{\"firstname\":\"Timothy\",\"lastname\":\"Blackwood\",\"email\":\"ychromo@icloud.com\",\"contactnumber\":\"07305035927\",\"pageid\":\"39249\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670cea46beaa49-67141457','','','2024-10-14 09:54:27','2024-10-14 09:54:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41163',0,'cd-form-entry','',0),(41164,0,'2024-10-14 09:55:36','2024-10-14 09:55:36','{\"email\":\"ychromo@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"Se231jn\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"0\",\"employmentstatus\":\"1\",\"workindustry\":\"11\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670cea79184485-79034549','','','2024-10-14 09:55:36','2024-10-14 09:55:36','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41164',0,'cd-form-entry','',0),(41165,0,'2024-10-14 14:31:09','0000-00-00 00:00:00','{\"firstname\":\"Jack\",\"lastname\":\"Holland\",\"email\":\"Jack_holland8@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-670d2b269c00f9-32452872','','','2024-10-14 14:31:09','2024-10-14 14:31:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41165',0,'cd-form-entry','',0),(41166,0,'2024-10-14 14:31:52','2024-10-14 14:31:52','{\"firstname\":\"Jack\",\"lastname\":\"Holland\",\"email\":\"Jack_holland8@hotmail.com\",\"contactnumber\":\"07825758057\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670d2b50df0f00-19756353','','','2024-10-14 14:31:52','2024-10-14 14:31:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41166',0,'cd-form-entry','',0),(41167,0,'2024-10-14 16:56:35','2024-10-14 16:56:35','{\"firstname\":\"Simon\",\"lastname\":\"Sohail\",\"email\":\"simon.sohailf19@gmail.com\",\"contactnumber\":\"03008356422\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwgrO4BhC2ARIsAKQ7zUk1Eieo-5Y9xEnL08PULOVq2Zd2t-t1SkpiWjO4LJHxKvcH321X_D4aApMVEALw_wcB\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670d4d2ef17199-32443878','','','2024-10-14 16:56:35','2024-10-14 16:56:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41167',0,'cd-form-entry','',0),(41168,0,'2024-10-14 18:37:18','2024-10-14 18:37:18','{\"firstname\":\"Chelsey\",\"lastname\":\"Perry\",\"email\":\"chelseyperry26@outlook.com\",\"contactnumber\":\"07540455669\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/#\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670d64d06f0874-97311850','','','2024-10-14 18:37:18','2024-10-14 18:37:18','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41168',0,'cd-form-entry','',0),(41169,0,'2024-10-15 02:34:58','2024-10-15 02:34:58','{\"firstname\":\"Gwydion\",\"lastname\":\"Calder\",\"email\":\"gwydion.calder@gmail.com\",\"contactnumber\":\"07914683126\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670dd4c92195c2-42921706','','','2024-10-15 02:34:58','2024-10-15 02:34:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41169',0,'cd-form-entry','',0),(41170,0,'2024-10-15 02:36:25','2024-10-15 02:36:25','{\"email\":\"gwydion.calder@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"4\",\"currentpostcode\":\"B152AL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"9\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670dd50c9f4ed2-23767772','','','2024-10-15 02:36:25','2024-10-15 02:36:25','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41170',0,'cd-form-entry','',0),(41171,0,'2024-10-15 09:38:26','0000-00-00 00:00:00','{\"firstname\":\"Lily\",\"lastname\":\"Testing\",\"email\":\"lily-testing-all-the-time@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-670e3812851568-62059502','','','2024-10-15 09:38:26','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41171',0,'cd-form-entry','',0),(41172,0,'2024-10-15 20:31:15','2024-10-15 20:31:15','{\"firstname\":\"David\",\"lastname\":\"Barrie\",\"email\":\"dbarrie20@gmail.com\",\"contactnumber\":\"07837249609\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwpbi4BhByEiwAMC8JnQ4O8VtryqUj9s-GplMEDz6Yvine9aImczVFiKWrNHnw_-2SNh3hqBoCvMsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5qCpg8mDKI74-jlrrvUht3s9XpGq7ARxm23XKKCAKu2CYitK1Kty1a6gf9PUAbErAxyFFY9022XHuIZ8xf8EtiKky7F4doZMGFDv1XlyQ2bWTo2aCIe_kkiwm0xBBB1luOCdT7oBVR9YLu8gFqO4U_FNGPG4YbLO_ru4St9Hmb4AOZiimUHckqc6Ap_09HyxKcS9UcHprLMuaZt67v9qoF7lLyYHOJ3s2IuFX8LZKwczLlBtnZxXHUxFEm0eZ8fqr9mOIoKSu9FuwHK_e_Aa5PZ_3sZNIUROFQGXfk_4f0Y-e1QC7CaATcQHKPepCJLSPnemiS9HeowEBc3oqT3G5aJs45JJ9Q3RGy-6xyeaaX-eFABV4cnFN1lGDq1yKKndFic8OgZTLjHZWDjN-jIWdY56BUM344oZFPEQCS5-gXYOlUjpStUuaGipIq1icIRjYJg74kdz_2Ji1gmhhiyDAj6HWm2Uon_bO72o35-jd2haWurz0tho6ZfprHtQry1VEOkj1WSsJmVaim6CS13Vwq7tNfdYH-ernZRM6IORqUB2TRisUogjLcpbJIwBaOmZMSFvLbZ6d3TxvDTjYmcCp_Lh0ykoA6_990S6BaEMA4q1Ns2Vbk_fEX6F-Owrb4lopcf4418ma7RpKQ-CUGB1lfq_lnAUcXzAJOuMP9fBA3GOZf94PcRpkQHj7rTR4t0kTnwkpvnpQu7JhS0n0OKn_pzA_FvVqfVoGSEvCuSGKuv7Jco-JUaa80MIyjOjndM3e-rM-mqsCSwCeMg5yiWcskSbv154nyCcSw07NhUQsIbJilUxoZN0GEuAEMF63F6RTFQTrcNIsQNWkm3Gvs_GJn3DPesPHvhdqwYxl5lFgnZuiQQpSV99Iyw0sFQlzKlncVZa0eF3QSpg_zR8Px5pgPG7CfuQMzKJgMgL3jmDxDb0g0u3S170XlsN2-IYZ_tMAu7APx8OSSQng8YgpuBnu_UIX3zrKOzDdCmU-hLw1tqgafi6qa1VsigoV7yP18V-nO9BzZzWM-KI_oes3UMSkIE10XPlNZ5hPf6dWlyNHtQekhNnb17B5_yzmveUryBVPBCle9zNmrfuVzZINZTAS78mlLTbZJWllidjBE8mCmFzLmdc_nbKUnnFtxfZIbs0wWJZVo6qnHHqKYUy2UTDk4X25l_Ebn05uglrsdMO0-uzUmdvViPCzXpzz2YgAWqT_M4raJXEk4UWuZIaeOTiPkgq8d9i47aLHZYVap4iOGLafZyLDa62KbgoFCjcYAcXlrsyjI2_BD07WebymEWb4S1YrLbTeZ3w2l8g3iiuG8Bh8_kMVbvbW6EQuR4iLPpCqtkumCAYFN1265fiVIxOU7dqAIMTuJFQqpFe_hCUJn4S8loAZYEWyYpywZrghSNOF2QAyJzIKonpq-iqrwUWB2nW9I7EyTClFiCeysr9uANhITcomtp4oz4_R3tjdsd8uItzaypZ02oc4Z-7TXGGhFqh9gi4gAlSZn6PrLrR6NypPJEuTjEEqCyHggA3iHwwGmFAL1LZC81btlH4YGZu3omn_-oKGRNLPrIeM-TGpLzz2Q8H001i9ATaF-n0zWJi-jxSbID7qgDfDxCZz3HuUoVtghdt8UNHAphc7e7H14FlvV8EJRUWgXW0VvXQ3e-1_ISWhhBwYHDazJMWI2Eap2_iSNiRyvGETayYPfsQdgRPZti_uqUJMZTJl_snv-VgJKy70VnImb0HKRLqU1UEtPU6GTPr-yVBMEg9yJwA8rZIsjI6MbfWY1gMqLVA_FhuIhJY5Tw1ozW7FvI6hTkWoogUJZda0SLCUhUXyNypBAA3exJbnoJVVMXYDLpmxLeW4WlefgPShRHXb6OHhsuvJtBYMsHo8EkAY85BxFW7pGkWazkE_947HqfbJQiJBByc8VvWrPg_-5NR8p_t7wP8wkXbWjy2laLo7KnSOQnnOJ20Mvkdo_Te75gGjvwUcjBX0IgRyNKf06a3cjLUwzozlZzfj5VA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670ed109adc220-10384657','','','2024-10-15 20:31:15','2024-10-15 20:31:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41172',0,'cd-form-entry','',0),(41173,0,'2024-10-16 12:04:30','2024-10-16 12:04:30','{\"firstname\":\"SANTOSH\",\"lastname\":\"BECHOO\",\"email\":\"santoshbechoo108@gmail.com\",\"contactnumber\":\"07572960245\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwyL24BhCtARIsALo0fSBSInhPzp8zD5smdSjfTe-YgaB4rkNYvwlE73OLH_y8Ys-JAuiWeaUaAoVxEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4nNE3Vjv7Ox7c72UyB_d4F9EIhbGGikFevx5DrN0vyRz0E-TFNS5dF2-RYQcTJzR87WW0ecm6E4Qk4RsziCV_Nu5a3-TTpzyI8EAbCV2NXJzAEHdNVAAUjGPkp6JETCobUs8TJxaHuBNmRc9bdFwkQR5MeS-WZBSKbiN1cHYFVVcGbZOYpsTru6xMCwriANE5MP1O7ob3rME9zOgSPnvqn63lHxFEMOVjrB20MMXAMXNPwFsPyz4h1Zqv1iPGmB2x_ikTKmBmyvto6sJz1-sZ729Y8Qhnu4ggOkkaHkvvcPvDyBxevYM_1FnpHNL0Qk0WRB_Hfw9QjEKTidrtZkbSDn328NfJkOyCArY8we8SOPj8EFgIgHZV1OQ_jFpqR8Z49XukY_9W2wRbp6XaQz4rv5hearqLC1tfqkIks8yAXB1C8CKaEjPhaZ28L4SkFU6aDOS1pEU3NInDKuGoAC4cG6XU2f2vDdcN96M1YthbK2tJcrqxTMi95PUx0cqySQ9D8dSe4Nlh0pJNw7yyS9RIWimRps9NOPY1AAH1lojCrtSaUE0yJ4e_k34cBw8rQ501QytVdgqTAcXfNZCvbape34J0K4myoN3dmHs8cFptSsoZjc0XBUCK6xM7JPXaug3YsGSNwGnRoqmihxSli8gP5SeenjynF71OLRHu9GQzf7kziYd2sYKzng8bXDWQW1NUZfbjI0o0hqCrGBNE7LBIeRZPKR0gaqeGpe8eg1fgpTbdCHqpnOsAjm_C9uUV3Kz8_8pV-KK4M1BHyZ2FMRJrAfz6uaODltWXZmFqnBJbRRgXB_0LE118MRVVQ_u-dus4R0N13e_PmI2luPPB6S3WrY-ijvxC1y2wzy6jRbUHHgbHt7u9J-eFie_wrgmQQoMUNgYt1U9CBXbJ2rUgga0GnKVoo63aNwG93Wnhh-7_zcl1rzSmlcQU4KloWDq3a_V5nCduqBlCQyDthXku2D4nRxRy8Wwjm-1o0_LszyKxppcy71RWjyhcuSQszLHMZSaz29DCMN5tU_NhfTlzpGEFkBkaHFT-9ORegIl1qWk1kJaNp0sY16n_5VPK24UDzM9L4w3jZWfmPBYP62afLsiluFiEDJP3ivs_P-p3Vz0hMUW7QSnrFiTjuwB838fus0MSWYxI2w733jTp9XvNhexhft-1F479A7XYxLXPqm80fbMBmRV57Gk8X2lPzGvpuWVKN8izYzfLhVfJB_0aOud76UREpU8B3re1T2Bkl9bcQZcp9KCvoMgJ-bYKIn1A5nluDT3vQ6P-6sABeWr5tt2kvx8kKL4LvrHf5G6ZLbmJtTosYe3bFJCFMbP3QDWKQyMjsy7apZLjCBVnQh0WN7aZFELNTjkUyx6EguYiVhFrPjflrds5CdXrttrEQ6iXDrsltlyGb3seGsNwuvMUb8UHBPt_YhPixBMlZb0V3CGXqcFcyM6-4V1t16a-r6mCZf5sRT543M1Lp4LR8qlC79kggphyCVDRnayIkc1LJDAle8giCXGp24ZwjB_bivnxfE1yWez-lEYonDR1nYgBFq4r7XgQyOzdRhKx741G45Ru-XdKH0ElYe32Gz6_5yVrAbznCiVI0uLvkbxGfiMcod6fjKGVivUm7fNcuXn6YZKaXSl9zeRSxR3bS8IHK8pyGwLHFmewagrwlcAPOz0IAB71yGD_xLSQ1nnRHwtZqzfagd7twzuiDFVmQlXhOmEx-4IWllDz1V0N18rqHDqFlrrIrxdKFVn4bitvhnHAJtf7ukVSs9cA2OQCeQ8MOn3JE500m_VVoLleLsZAHvikotdhoiD-TwdAMO_b4ElYRRxJLmdkaEgBc4A9qQZh_BR65TzHWnA_Wi0GppnCEiqwpKMa9JGAViGh-UE7p8bP0SRajjsgPtD7KcONFUcJO1MUrRXX33CkB\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670fabbf663b31-86861978','','','2024-10-16 12:04:30','2024-10-16 12:04:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41173',0,'cd-form-entry','',0),(41175,0,'2024-10-16 14:12:36','2024-10-16 14:12:36','{\"firstname\":\"Hannah\",\"lastname\":\"Pharoah\",\"email\":\"hannahpharoah@hotmail.com\",\"contactnumber\":\"07534265191\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7uCc6YFKNDJT6llsYNJt8Ilj6pkya_hPer77KAvLssHwJthBAy9baNfxet2GIjs3hhyD4Wr5t61D_8VUPzEOFIZDeOFzAsg9in9LNTCKvNhHMVyZD5tC_K5s4V2cGNhO9kTkUjkqvOhfUKZJWj6EoNWNS52jPR5r-E3vzhqN760C5KKn-6lwQMFa_LrsXru064eKG6js0Z11hwBEbFl2ivdakPPcE-ugEQXzSoL-aVV-VS7AAV8YyyOZWLHM66s6dAtPhuL4x6J-w5dCYf8cG9ZdtJfXigNn4RPAzJpNB0mtmatTB5P2lg5JYLPSmTzrdmXuykrzn-ZDU3Ojn-469payWiiKwyxhvUixzRPql3i8KWGr9-_JGHBkAVzz7NrM4mLPh6hHocVuXYgRZkDfNNZp4vFuMVBc_-pNaQxHGQNaxci-Oc-bqcVmbO-4-2hpV07eG0VZ-UwP3RxPUK6wuLrzsPYqX2JPHeEf6UfL_lRaY5na7vrbaQnUL6xOCSo8RCu3Z1yZAptrPJHtzFMTOhMVH2h9PpaAxF_DNGH07u_0jfu0rOOG46369yVRki590VW2LnTwJ5jZG9Maf2jq-0hk_WSyvJtLveNtmlywdSd0I_ZWttl8BjC1mCsupDM21PAwNvhBxLcvXupVEzE2LEMmsn82SyGGc3M2hUpc-0M44ilQQ40MesLdpqmnkLbPgehjWP1hBa9OksrPQZX0ClS9PuCPkt2zGkrM8QjkiXdqog99t_L9tm2sQNaav0UhIab6sWdD2sCpEqSL1xSQGix6nMK3y8KlUluI0jcxHl9vUcPt-0APjD5PevE-hXPM58r0EK2tafEedFvJu1VVhsoQxHKK3PlpBuKr75MnB1mkUQSXdwIR2oDJkIcWwLxVyMqsKj8A8JlsD54WKEa5Mc757TzVJIycMNzMbZkam-jG66Y5v7EwuY0Qm5gDP4pp2yuWCUc73D4k3fEjgdgaljJJCWKx4m4kZn6Mc752h29UOncmSImj3kbBjntt2R99D-1x8uCE1sK7P67UWA_QdtAnGXrM_BgvkQCqnx-nPmhCrPcXu43IvDC1MWZiUDtRfOOnwi0Q1JAKwEj6qpElQckw-Q8UeYs_kSIFLxDZ9f9sYyD8ZkZZQqPhc-7Dz9QCydbAak3J3d9uDayl69Bnfa0awokj08oZbYWlTGiIwUD2MES_sm-6yv2R75oVC2DXQ_sU2UocDfz3MRhONu7eClwpiM-Scf1RpqOzaaNPtbey7PibbF_x6b_69Zc61ZrQbieYWZ0mc-yxTZloW7VXCDWUwapzjDDVz6cYkUs811vQ4MAr79yYd_a3DQS2Lh716xYwkaALtL-j4yF-jQ-Aw3FQ7WcCrq3ywIvC8rdz0_H6cMhxOhwLGVvaurub9SRP0jvZh8AmXFneSvbLoUKcxec8OararSZET2KlI2kszOMWOUFBxScvtwbG56weN0BCE05w2My5z4d_ZPGioa0qRXPnoK7pqsth4miDcN4fuP_QYCG3OfthyPqG909g61396-fJNVz-3OKWnvppkKS9P3KhtChr0EUFWmVsFVqx5F4XSxgyUUuBEl98oAeJJz3eaL0L0spIKA74CxiT_g5Y1O1f0lggPg-emCsjaTtiVLS0IJHUx1sFO5CpMs2mTsEpznTgV-jvtO_Ok4skQ7KDZnOpf0OU818Q2xUirusNPWkiLIckGvBEimlFGe3W-aQW3w9bTNhTMMLVeiwU0fCl3Oip7oYT6YQqAcqaZW4Ls-cWvG1rQO6KtTGMdt8qRUqXYIcySq9FKIYu3PMwlnnudDh50GGm9XnaF0JbkDPpucP27n9VVxYWQ_yPUGsiip7HommS9MO-M19hgqqbmxrckhUTCfy04OMQ9zxAZuACHmfQhk-Hxl0gy2Pqfw830yS7OxFBN7z9E4oJl0udTZ3BNetIFuof1A94mIDsRp5GiPs5s__rxI3JvjZCKP8rW_9hmcARVO9piU1OKDU5qxlRkY-tzItZJsPzUUgIVG62WI1bf03zX3YsiLllbAD6Er_gZPQ-Pnnke2LC2eHYbQoepSCNu9ZtQbMorRy_6Tgou16K0Lr67eonjr9wCRNDpY0ne_yOSv7woKmjqeci9EFz5U5oF2uw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670fc999cd7af0-00877346','','','2024-10-16 14:12:36','2024-10-16 14:12:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41175',0,'cd-form-entry','',0),(41176,0,'2024-10-16 14:14:44','2024-10-16 14:14:44','{\"firstname\":\"Hannah\",\"lastname\":\"Pharoah\",\"email\":\"hannahpharoah@hotmail.com\",\"contactnumber\":\"07534265191\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6l7l9vTHVXNPKrIraKXoxHyGUxJ4KEmoYK_tmA7yevEL5OTNu8tmts5OrfUxSVH-jxi2dbOSmL-WkohXFvgik427X7qiv4B7eD-pL6p7VPJBwJhC3isDhwMBg47njhAtQZ4F5d-Dy8eCVZfwEsqVxTRIJHMjA-wUYQTjP9WpcKEveIY0ojrupPYmDCUbjqKYw11OOgvSmfPRabe2fILouOdXBGl2H18xqRRULUfxJor3GjcEmks2sZxX3hn-hPtzqqix5FvqH5dTZXzNkNJx7mvV-XJWG2ABjIy7Xt2TQcynENjUbVf2b13qP6tmafTAe5gaUjbZ-hAWUO-f8codPDUMJFAdna9Cc8cCEhSauDhPY-JIsF4KvLGJMpOI2qKL-Q55k_-qEFb9OJzHgrZYoFlls5xQw7yD9a_nrRu9fEks4n6MFEETmEAjj8KieQufPQ_QGi4_d_Byv4XmEUGDNMpRK0R7WUSBSCYNqV3OyF1aEWCoS0O56LLzMBYDOtFZHvsZ7iKZkBNssvVTutDpA_zfXLl9UvzAhmVmIvABewQduNWvIE2h55GLBrAYk_hmWXCSg-BUjzFT_Jia4XX_PM-D12fbnsb_JlBOX-q8goVZeenEqK-8uhmxgrHh7AH2W224whcJemBqIUHTmqdY2yiceDZUoaW2ofDhqyT-XMwDkbJM0twqH7LYsNhVX5Wjcmcvwehv4Dcj9qwC0EmeBR8Y0It3mdtha4YOM5Hi1qh_0r5vMhGQwNT1DF9M3lnzeMe5C22mC06gnvmaP5omfYY6QhCc1E4FTicZbLdJlVky8kIUrBi3L20iiyQ96IhiqQdX-7Pe0lEb1KQalEHq-cOSGFTk8Ja4Oj3cquQU2MUw9QcV26Po14zD17CFHv0XgGmtYOJWNidhLCcOug62tBiAsAZ6l9uulMiNoLcZordBLSLdi-GR3x1_ZbC35BOZr_aIZMaLaDxwelz7023_xaBmGu2tSLP-VLIkk636mP3FC3TBs_nEsgdm9eyrbO4eZIQOvakbaHvK0r30ogclWWrvp5me3JxC378cGJdLrxhaT6nEaMzSqev4ghdeUciZHnBI7AWIg-8sFQSHSvxiBLu_jMSSgvhzIN0oKYG0yncvMoMArZH6MVaHuWcN_U5i-py16-_Tn9pUkuYXf4d401RqmxVizVa2oa1bRajibB7Ck0E8Dk1YHD2a3YhxwmkIJ_oK6ZB-EXqBIO3THjJFQ6jupclwypXH_w287mE21xkLK99sgL0UzWGKLbv35TxvmoaT4_n2Fq9OTVow64VL69wtM6sb0o6TY2g89ZJl3FlCblMIYY0rXdCf-0BVM9XglIuxX3VctbluHA4m-WoQQxCzSgdGgL0w8sm_gWwTRDhdToWNROmJsJkI7fl6G6CmmTFHOkxyvXFfehdVKj0gman-3RfVEdTRDcd68mDHEqt2WiuWRIuWbnldVHtTEkxWC77iZbJikDYYg5SZ_yWcnYzDF9kp2tbrCg3Z51WOy6PJtBdehWjBmQjJPJwRwEnOEtOuG4j2h7LaSiaQTipVV9IZELmF696F9LC9CMNIBKHFizSR0E9iIBPOXe7B1RNF9qtCkQDLbCRzoqq5eyO6NaHZpnNizzMtgOHPxmCwdj-XJPgqZdkpPVrqHOIilV0TVRpmsQmBOdTnis0GKjSHBLTcj6-_7gLVEBGjDL-kLeihLv9s2eY3Dpu6rQ-Zk0m5y-NMWdCgFpisM1FF-qmwV_0U5Yc9c7po6r2RY4QLiY21HVYUCCEzNEN6l3fKq3INWbp_k7ZBSCHyW9y69G8Ddr0JjMSk67XUdARn30Sxp_xz8oCrYFwoSSDkrM_ECPZfI6lS0sPdeOqYMsvbGBwGqhvNkjdVG47_NUaeLOrLJ2ZZ64VomRiGk21DoTuRy3FnomRjCeSDPpIPFlDNizfzxT5tTvvL899j-Un6okYvK2TA86ozDlIpkEtv9HRXkQXxwKr3Ckigb5QqOPRSCtruK61DoY1whZwKUG5ufRDXNALoFkYWYVqcjUJ8E2oSPURW8HwEixKXYmnDFEwy4JCBkDV64z6U9jDCq9T5jj5VtNBcFpWePCC5eGj7yFzUAfZlzShz89C0PYpdPCXhEKhEacDm1giA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670fca45f2e279-20931834','','','2024-10-16 14:14:44','2024-10-16 14:14:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41176',0,'cd-form-entry','',0),(41177,0,'2024-10-16 14:19:05','2024-10-16 14:19:05','{\"firstname\":\"Hannah\",\"lastname\":\"Pharoah\",\"email\":\"hannahpharoah@hotmail.com\",\"contactnumber\":\"07534265191\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6s9lNNcMUfiBeCLLeB6qJXx2&amp;gclid=EAIaIQobChMI6db6souTiQMVqaloCR2wGBChEAAYASAAEgJIn_D_BwE\",\"recaptcha_token\":\"03AFcWeA72JcuQHGEpKBLsFUmoht5rnph65ceJItNMsF_oftnQFauTML5lOZ5EtcbwXoDlrst01UDXw9KKIaVmjhZ8-clsbqJczU_wnyrv0OlT5TW-YBtdnvCS-p_FC8mg6B1ISUrHCaAHGTXaEBfqJDL3GGOIhqBE5VrSoq32dcfOaWgeAjdk-6IFCyALewAVEUJoECW7nzr3sSpcRUifVbZiqgtaEVeIEBrvOrbxI5Z1Kc5mtVO_MxzpkuzCaSL5a7pr8CbGSdBfzCcj_fTM3L4yiejTc_14klQuQgEP0G36ExRLQ5fGtfTPx_6k90-PY2e1ggo0A4rGohc2T9e4AxZ5dWKCuIXhxhjS-V_gV-JxmzOEwDeyFj-rCsKWPlaUk3Q0Qcj181fFFxnyRPshAiUcc5LezdjSHr6C1m0Xq2BSXbl9S4okNZA37kvPUJ6XiIQZWoqjmhHlmC7i9geIVOeOL-UHV_G3-4Bu2-fZ5QzcHr39meAmCl64OoXOCY5C6c9hapyaX0AZHabpU1GR0erB0AdwZ4egh5HlYvNtuVNaKXY9uxQPPVb4L4fmZJ2uTqm1HUaxPPqY5hHw-zVDxL2CoCvr59o67DQspoxNWzAlQRZE-ZAT-diwlHnggVFrL0Iuz9M6jeUu-mT5PEZLu3LvU16Mik_7XTEh-cxohD-AE1O1jgjQjUkOlOLUCanu_cbj5WooOk0OMDORaFJhSs73WT_SXM787BKY_VVNyfupdY-m8gKTo_je0vn--sc-PSmBqOwjTpDW_glQWeLhHNIXmzHNO6kQ2CySZdO0OoYeo98TdXvxvMw3xWONEkuedaecXIWdQW30WtbbG7I69GCymOCBXENFYJCbrhp-1FqdC9DOm-HhwRzUDcQcl7w5FOSQuvtz_MGHuqCFzoLLHLX3QWhL2jyzRqrt7pDAsp5nlMj1716NzFzsi1wCYtJv3FSSpzPW_6-w-47V7fVae_VkvCrN6rq7DBnH52MIw7xvYScbq5u66imKQ-GVvEceDb8rImsY8xXcXZgTdU4nof08yX8auaPKvMiHLtqBxa6SnF31OZXcCKsuInfbzltHde37CEFRZHIOIBlakpxkIxBH0Q9sCbI1uGbH6XwpWmKTqk48twKJN4PzS0fWOYDInDGVNlBVhJDIDmrQNic5nvB2-wbhG_6pr0mg4zz3bHyRU_pSgvyNuDM6wSWR37nGoEtO0CguF_xJAClCy0il6AI-dBCF1hRGNwU5eEUKKxdZu00nFIO7mjgM7aEZgD5tRK1UWYev37ynPsmhy4jK8IUD-pRIO90Oi88NlKaC9bC496S5bgoLdOkzgNQYJhrmqz7BBf58EGU_zgcK5XtIvzyhzi9bkGCZhoH51HCRU9XSg-X8dMxhpruvsCy5mCiz4LLeLUgth1-3SD95aqp_vVs5eP-25V2iNRZWCfLSERde8OcUiJbyvlDO5ah8zqFhCTK5IAVU7SPWxcqAzjxSXUsSQFrNXuKZRm5O2J5MNTRNQpZRO9ov-RVfI137w4KPP26djKnPM9xT1SXIH5kIDq1CkE2KaFT2W_CLnQtGmkM9kHCuwPgKzMfDZ1Hk0VdAQmTN4P_cPzsk-u-6dFVvEVSdV1Lo0XMka4JV4mK19KjvrjZ5v4002vkaPhuFjKobWtpoePM3XAFIp8nHbCKOw_R0TtKFzdPHzLzD1CHpZU15p3Ib6MTBV63X9aBQV_lGJG3VRoOEdQ7ySOqG0u7_KCUtJkZz19AgypQQ3vSLHiF1H9liqD4DulMIYkkQ3g6wgjgOAf-s64W3yGZid9voD0z48ugMlbZFyr3lqTYX8vHQkPdhYd17G6LOWiqpgUbfMngZ7nKT7ik_1MLXmH9SDbeWKmtmenpUG_Tv9z1BkmuQjA-JZOG64eTMiBSAHdytv9OShDgkJwCP8wwNhyPWycQI9m7rewL4hWtcLfWcshiYWEwkf1ypo3QLTNBUIaL-YqAP2YKwK1xfKWNlcWn_lszO2ONCN9rwPKmWfTdkKZ1GmmW84B0oMX_ndU7QfFvuVRO_QzRuBGiJzM-L3OfF22Y_6l-Cf1AlJrkJc2N0lJ413FCK7xH-l5NoY1hKfi4GDKGwHrbWsXAO78q5DzKmu2xD-kkwVlwPqPruJn6K7gUJ972RavDAvAywYSw-zEUdFgy96L1mSZwoNrW94zvJNlzMPdnPJ4_50X_zOAHz2Trxl8VZPz8oCotxmclV-lvN9aSiadMQirx7\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670fcb503f0240-02014417','','','2024-10-16 14:19:05','2024-10-16 14:19:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41177',0,'cd-form-entry','',0),(41178,0,'2024-10-16 14:21:01','2024-10-16 14:21:01','{\"email\":\"hannahpharoah@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"N156NR\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6s9lNNcMUfiBeCLLeB6qJXx2&amp;gclid=EAIaIQobChMI6db6souTiQMVqaloCR2wGBChEAAYASAAEgJIn_D_BwE\",\"recaptcha_token\":\"03AFcWeA5ba4-0Xm00T_Hnf5PnOAcjp4nOB7omc8k4R1H0-03fgWQdJ2bf6yJ6mpGz-tDvwV9_fvKcTdrfkA2hc8pXHQij-AQgG_U5mOC-u_uZu_qvMBjfWH_B2fO7O6QZV13p-D1OtqPJd4N9itccz1iyOuLxXNDEWgNja5xmnZ_-3XzI_DgO6a7pOViDk2EozoYLCK7qbLTkq07zzU2bFC2rYbaJQFVwM8n17nHLNJQMNl8bCG-Ce8VsT1V9vcFfKatcxyiI6j03o8bzeOCLXeyWKz_hgt-K8jBv5ZnZnhaOykxGX3bBxv6mla9wFGts9ziPJCQG45OhlBY-hscxnBowxl3mIuZ8g_UYhqQ78-_6DxQ589sKf2eV8p03Vpg8oAzdplq-1GtpzGSxqoFQka2lsxZD91H3IeYQFyINMVKW2eckJ-_uvVPuRfcyjt-MWyCrE4WakbGMOyIHJO68RyEl0xEQVl5cO0EOalDrvV-5v5DY5TfF0ihm22yZg0J2Wli-z9SEujN4oo6ytTO5w7R-9UX9q0_g0FxdJNfQaHrjcLHI8KZ0gUUW4V5YFW_lGFTYkOuSHF7qWFcpWgyKnOOHhm01S61Yz_q4fMP0dq3XHtlEMqy7EWf8OyTKogOsbL_RASjZYdO8cIulP9LivEOhn7YptrWy-pnysnnFX1jnbOpRTJFnGtsFXmG6qxl0GLRutVEkuTOFVWi7tOLBPFBeq7K1O_aQ2dA4LN7mtgGAK4uhjJdeQcNKm_t-8YcXSZc6RUU5k4m_dxUxYMiwD_8psyc8rEcBGq8e1zSreAail-M1lDKVJcvtOoOORWQTHAaChpfsgyuqzYaiSJ0Ckl7T41yon7O82Lof74dDcNbhUHdFHgi0C40PJmuP5Ru8Y8W3-balNeTDqbuIFJjaOos54GMvb9qXpLI_D3I5veIidJ69f6w5CQiyaIcfYZelUDAPbcxwu92V3EZh6qY1PBktdObBpq48qcojkYWVzvpqT15yCaGJX6NxF2fJJhv1w68wVVQ158VvJ5Wh1DgFwMBVN1QmhEtwQJsZ0qMxi1LNM0PYNcc2-DVPlAlfZ5qjOFrKVit_J9suvc22uNXDUBH41vA2NKdvSQT6gSrDCQGRBkWlweOpSdpjXoXY0YooVQ_bpkhNnr8oSH1sgLRhZLSKWtwsAEl4SWYA5754g7ZCFLJYlKSZQRjo51lHSvKJ9neMUtdfVJoJGK-WOwOvJDYKS2r0qtTpuYLMiNc1erdxP8LiyZYnF_yXHXjTCkkxze1pEp20N8pKVeBdPGtFnu_xJsfakj0xBJCGulvnu5moYcFRtIz5dhoIUDe3pC73B5UMzHgI7vyKqHyBtX623yerK56I5juFM1VQ-IWvacCpvIoGJD7UUPQL5aOtniDh5CjmZKplGO66cJfDqfV7Fh5EbuRt6zQm5qW6mUtG7RqhXg6Cg326gdS9s4WzVOZr8hAdMuQX-_uAw1QuwTiuHemPkiLE-NFtBfudwCcDYqPqYIXi_lTFW-1hHwwQt3aVqNS_MuYunYFK0GvimZx5rq9pMKswkJp9P9OrhpAaryGdRWylztFMRZWwHhDm_QAL9-QGxOLI1OtawQTdKcajZI6sxVFG_vmLQcgemvk6mg3tDmFwTp4HbHOQH2A6nGIG0RN199fHwmCWJusHTn6402Gp5IM0HY0UNgVuC_ZuvvrYJXS0eLARxBnJLmVOWtgtz9luNDn4zRM4aRWvqv2yOgZdTd7lNW4Ng5WHOFXjaJtA-8DeA-StDACUGWLYTBlmngDDtyFWDCL28W7Hkzgd5tLhH9E3WQ0gJufc4AxHgrz9uNG-gcsbOMKF6tyvO2alx6C5xf6uBhlDtQiz1BF3x49hwhstzaMcj7vWGoFYUWi08Xd8O9L-gpjTKDYFu9l4uEFnLr_kMWLN99LNheEPI2_hbafzuesCfE65mg5Cx6-KR0Vn97Q4D0hlPq3BxMQsEOh-shAAgGT_lJwBBCml9tLsopl_w7ow03Z151fWM3I1SgRfZHWO32k_tHPK30saMZ8QGkA68Ds17QQuJQIvFitFha9coYyMXIG0z9seRJ6Y_6KF9D2y8w97dobs2wjQ5ltUx2KFNPjWa6kaq6ftuISh7Nw99jrGKZUml4YDVCi4osvgwn4DJxdFO5SItCHx_e5sRbkI6DlC0WKM74f49qs2HReanXPA3rq_yNUHhR_VikQJw26ecD3nE959u3gG4q_YC7yALBAw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-670fcbb51db439-04818226','','','2024-10-16 14:21:01','2024-10-16 14:21:01','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41178',0,'cd-form-entry','',0),(41179,3,'2024-10-16 15:40:49','2024-10-16 15:40:49','','ELCAS Courses - Training for the Armed Forces','','publish','closed','closed','','elcas-courses','','','2024-10-29 10:15:55','2024-10-29 10:15:55','',0,'https://biomechanicseducation.com/?page_id=41179',0,'page','',0),(41180,3,'2024-10-16 15:04:29','2024-10-16 15:04:29','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-16 15:04:29','2024-10-16 15:04:29','',41179,'https://biomechanicseducation.com/?p=41180',0,'revision','',0),(41181,3,'2024-10-16 15:05:27','2024-10-16 15:05:27','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-16 15:05:27','2024-10-16 15:05:27','',41179,'https://biomechanicseducation.com/?p=41181',0,'revision','',0),(41182,3,'2024-10-16 15:08:30','2024-10-16 15:08:30','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-16 15:08:30','2024-10-16 15:08:30','',41179,'https://biomechanicseducation.com/?p=41182',0,'revision','',0),(41183,3,'2024-10-16 15:10:51','2024-10-16 15:10:51','','BE_Worshop_30thAug- 8','','inherit','closed','closed','','be_worshop_30thaug-8','','','2024-10-16 15:11:13','2024-10-16 15:11:13','',41179,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-8.jpg',0,'attachment','image/jpeg',0),(41184,3,'2024-10-16 15:11:17','2024-10-16 15:11:17','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-16 15:11:17','2024-10-16 15:11:17','',41179,'https://biomechanicseducation.com/?p=41184',0,'revision','',0),(41185,3,'2024-10-16 15:11:26','2024-10-16 15:11:26','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-16 15:11:26','2024-10-16 15:11:26','',41179,'https://biomechanicseducation.com/?p=41185',0,'revision','',0),(41186,3,'2024-10-16 15:11:45','2024-10-16 15:11:45','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-16 15:11:45','2024-10-16 15:11:45','',41179,'https://biomechanicseducation.com/?p=41186',0,'revision','',0),(41187,3,'2024-10-16 15:18:49','2024-10-16 15:18:49','','Running Biomechanics Workshop','','inherit','closed','closed','','40781-autosave-v1','','','2024-10-16 15:18:49','2024-10-16 15:18:49','',40781,'https://biomechanicseducation.com/?p=41187',0,'revision','',0),(41188,3,'2024-10-16 15:19:45','2024-10-16 15:19:45','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-16 15:19:45','2024-10-16 15:19:45','',41179,'https://biomechanicseducation.com/?p=41188',0,'revision','',0),(41189,3,'2024-10-16 15:26:30','2024-10-16 15:26:30','','BE_Worshop_30thAug- 28','','inherit','closed','closed','','be_worshop_30thaug-28','','','2024-10-16 15:26:30','2024-10-16 15:26:30','',41179,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-28.jpg',0,'attachment','image/jpeg',0),(41190,3,'2024-10-16 15:26:41','2024-10-16 15:26:41','','BE_Worshop_30thAug- 1','','inherit','closed','closed','','be_worshop_30thaug-1','','','2024-10-16 15:26:41','2024-10-16 15:26:41','',41179,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-1.jpg',0,'attachment','image/jpeg',0),(41191,3,'2024-10-16 15:28:55','2024-10-16 15:28:55','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-16 15:28:55','2024-10-16 15:28:55','',41179,'https://biomechanicseducation.com/?p=41191',0,'revision','',0),(41192,3,'2024-10-16 15:29:21','2024-10-16 15:29:21','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-16 15:29:21','2024-10-16 15:29:21','',41179,'https://biomechanicseducation.com/?p=41192',0,'revision','',0),(41193,3,'2024-10-16 15:31:47','2024-10-16 15:31:47','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-16 15:31:47','2024-10-16 15:31:47','',41179,'https://biomechanicseducation.com/?p=41193',0,'revision','',0),(41194,3,'2024-10-16 15:36:12','2024-10-16 15:36:12','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-16 15:36:12','2024-10-16 15:36:12','',41179,'https://biomechanicseducation.com/?p=41194',0,'revision','',0),(41195,3,'2024-10-16 15:40:06','2024-10-16 15:40:06','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-16 15:40:06','2024-10-16 15:40:06','',41179,'https://biomechanicseducation.com/?p=41195',0,'revision','',0),(41196,3,'2024-10-16 15:40:49','2024-10-16 15:40:49','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-16 15:40:49','2024-10-16 15:40:49','',41179,'https://biomechanicseducation.com/?p=41196',0,'revision','',0),(41197,0,'2024-10-16 16:50:49','0000-00-00 00:00:00','{\"firstname\":\"Olga\",\"lastname\":\"Larina\",\"email\":\"ol.physios@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA53nrUvRHXoAAioaMsE0NJZOMUC31uEjXAMnVAyLETJY_G-WD9Ckm_OYmTWrNdKeVKIdHak3pO6WJfOcvfYJe9brqbGuUO3d9b4VnbUaKjBNg5GuU1t5sGHX1qegVTtStcNnbbjmpbJWtSCd_ykPjkIXoF3_d_epP7flqHNwfuoxD79WHO1gHGyaRqUK1_RBMvdbyda1OV28ByXCdHAA_JFUdq0uUhR8tGpJm7vcc0m05129Li2LgfVgpA25HZEcMA2D0_6h6eFgjkYFF35-ggzy2xELhxCXC091wTdKY_q5GMTJIjrWf5tLHYH89Z3S_T2HnsaFsbTo0Lm_zz16_RmLKW_7bkbGvcK205qEXjbfo_xE-lCZZtGbrlsvRMN3EPMisnbhEbusU0p_9V7jXpxw45M2haAQM0iWnO5BuqKjLRjAGQ9pG1KYHYncN175SMDTpAXaMoITAXjHAr1NTl4N-r8x2MFvtfLrsfXOigUN_YQDznjFRLCUUAjFzVlznzESigFrCraoEk4J9raVBtie7MzATJVuO4K6de3sHRVTA8U3G5HHeLK-CFYGyS_P_z0VB0-t5zGAuOUiXr0wvXqTnz5AvHSKIDi5krXr-NYev6cjSGhZi8rY1MHQURfQURceS0QAQqiVurVOcw7voO5Pn9d2Zb2ABJ497OHsnFe3U6znu9BPJg2WwZalipgk_Z9rr1H3MVQijiGe6KiCliA7ARvr07oeRDLurfjETIKp8p-1jMOgJLq18KnMZU7r8w4wRvqxMv4L23LhEe0UUItMBLYPSEfxEq8dC5JNoStzD2nTdoh6VfSL8YKimX2fViGX5p6q_PsoUf0pCIHXvWFEwKKVoEJbrp0R_JmRSD4m7WS5-pZonauTkDpFBoYjf2g5KJEtjOp17rqh23Nz2560HegA7T3PEZBV1P2horyhkzx1rJRIZdS9b29Nhhv1IuU3iVJVaVrIs1IuiJamDboVZ8V8Ct8L39v6rbV-XAq5Yz8gQWVOQYJQgAe1m6S9SKBTmrM8UHmIBTDMwNLuJRsqmqfkgg0B5yP79ojHaN5PfBcWKFttHnIsgJuSlvQgzkgm9Srb-nvb443YFUYBs4_wvJQhI0tyeGR-6ineXXPhHpUnj0zqTTwjvr-LmtyenBs5MpPpSgV2Nkqxr9YiiCl18ynOVqhp6le0JQ1lLDWmCl7DX9TVpkQ6Wo5KHyv9TDQkYxlz6-V2FMYyCz7sWSCaZ_9R5Ggb1LvdB6aPMwFCoYLxCPQvGmU1-RNdKyW6ZdKfZrEasE2ajXHQrMsHcYCjopp0Civ8ElOmtJcQsE9isHMtb7VvtYRPu0VqgmLM9yKICsPcrpm3S6CMCQD1zef-huGa91FIHgATYEqpuuzmnQHhpqB_LzieB-h1IpD5E5Z9D5Lrm6bWQ-DsAFFP0E8omL9lf08S0mGvxcGY5iPmHaSwXf8Raiayz1og-Jdfb0kTHp5dASe9V0G89BfzZvvZXv9DUVfu03-TpiGg76r7MBhin0c5DRUJOvcEtZrb7iF0lPe2r0CX--u2dyDt-ig0_k-lmTVdeTAN9aLisnh5o3YYEFvFoJR4ywN2sDKralTAo_vYAlBgVHB4u1-LogsnHLWpENaksSK7PcEWtMd_EUE7eQkQa8lQf4hKPLEWIEmDBAjINvoGp4DT-_5SsMGXGIXItFOelSPNHRT6kKYSEVH3VJLyTGrBlOMvIunXqFoM4PxBgRdQq94kH-shuEM9kTDFVeZTMRNLAO0FWrlLDQ8Nnc5Fi0t-swduH_859THzPlXDbGgS33a-h8D1MZlPweu5ImGZSosGx6geFRCvsYi3gWPLDaBVC03ctzgHRTPH6cvqUhCAIvCvNUF4yH0ygaEo7u2XkKkbBYkTfOdOzVAarxmM22tC4It6KhXHW2QAI5aurf9shvZgVCN_FSNjXyA62zEM7-SR-AmJ7-_-sw4YZU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-670feee9eb2259-47506466','','','2024-10-16 16:50:49','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41197',0,'cd-form-entry','',0),(41201,3,'2024-10-17 09:51:01','2024-10-17 09:51:01','<strong>Intrinsic Biomechanics Coach</strong>\r\nComprehensive Pilates Instructor - MK Pilates\r\nEquipilates Coach\r\nYin Yoga instructor','Mirren Kemp Walker','','publish','closed','closed','','lorna-wilson-iba-registered-specialist-biomechanics-coach-personal-trainer-copy','','','2025-02-11 16:30:02','2025-02-11 16:30:02','',0,'https://biomechanicseducation.com/venue/lorna-wilson-iba-registered-specialist-biomechanics-coach-personal-trainer-copy/',0,'venue','',0),(41202,3,'2024-10-17 09:52:07','2024-10-17 09:52:07','','Mirren Kemp Walker - Intrinsic Biomechanics Coach. Comprehensive Pilates Instructor - MK Pilates. Equipilates Coach. Yin Yoga instructor','','inherit','closed','closed','','41201-autosave-v1','','','2024-10-17 09:52:07','2024-10-17 09:52:07','',41201,'https://biomechanicseducation.com/?p=41202',0,'revision','',0),(41203,0,'2024-10-17 15:19:54','2024-10-17 15:19:54','{\"firstname\":\"Jake\",\"lastname\":\"Chesson\",\"email\":\"jakechesson88@gmail.com\",\"contactnumber\":\"07903767519\",\"pageid\":\"39214\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6u7MB-J4nmk8-uGn4o6EMAVN5FUaUFF_6b9KkbiC4SXrrY98SztMFGGPKD3cz8_2SonAipxaZ2li3bv85twVaMIYiJr3f-cSlgo1EImK53OsWZQ97lmVItYs4GB8zCwZpfMmjdFwNksP69TTnpYm9zJG6n7xssFktIfgwSEyMz254ML8dEjci4Rr8qVnUC45hmOxHze_NFKX4zxJANEcVdPiTY7np9kwZfDydPuXctLhi05Kz_MAX03kVzZfUvyThAfupnB24Qblg0A1rGrkiEKfljzXlHnVcuXEda94IpOztYm6c9dw3k6-7jkJ5T9NbTNd3-WyUeez3i4VcPpAbk_W70vlVVfs6Kdjd1VL6DZ2WP34yjumsRgH74xSjO2tZEoiqX6VoJTSeGooYP8VToWHXy1eWImX7Sif2Wz4-L2RzEU-ZMe_iK77JYvahC37gpIkCr5ysEdYE2LoU0mIokyolYmJV_CUiuWs98xYn193msh1OYOvHQiwV1SfRE3vYzqWoClS4oo8uVaO5B5azfOwCY1lHrTrXkFp_cPiZvyb0yy6_cWmfkuYMCz62p2GqJROx1aG1qu8h8_P72ePE8Au4KK6Jm2Vnqwesln3BhR3_0QscyIgGrSWl_8aFEwAWbJV-wfy-aXwgBStfRzL7qwu8WpgL-00rqFc48mJ23urYMfWp6vztsNetCQk8XLNi_8gGXea485c00o7NLv6FFY37ul62KTyKO9UciKHF-8fQDJjAVKeddpGBKgCSiSAokGUT3HQtufPG-STQ6AaLDYxO6-3A2hDJNZ29BPF6R8RlZqlATlpHtf0oa9RTyUnOE5zhGryLUMR4wjrsTCmzJ8gG9B1XA6a3HHcHSFkbwyDYxE1QUSdB2r-3mCUfrH2-03L4vdcLAnKKhgrU2Nle-JvljzLb5DXc5-etvDGggUsILkeS8_FLPhd2vBcFfjmVuNnggris_sOoIvM4PQqT0VC6wboM6tUuekEKUvFXpXiPRf9iixRNXvkl7qM2dCoumUJuFeejlCQQVeNvk7KTj3feXxCLhPSRSggJvDYitXkKDYlA1aK3TJDCaSItr_yIzUjlrtmSLPf3MzXDhuMdgbTlOTAauZOrlE7_VxoL70by3---tJRgVMeMrOznvLYa_aqrEWJ-5bhmKR_-pLLJ7GeynR1aHz7Dy_ch6vaZFVYa7EIkBPgAGphaQNqyr1TLGvFYhOXmG-kW2t1DOT56zGhEJSZBkYBqYT79Y9LNq1pc-JOUGHJHpZksJjVXMM1fQ5qyvENqOzzPkCirSvHLNjhm4qtg8_9elNNeVQ861a0RtkaOjt0t-y_IZYM3GAWNIyj5bPYzlPlO1V41V_iH1Q8siWDkowYuV0BBywdNsvxamgd3KhRt9QxdsU6Zr9kyWTXf9f9VczKmhL0nUWnvBHdgXUI1h788gXPOOg9_Z3MB36VNajYaxMGwwm7mqVpDYy_tHiWFP5woMB2BUgm9r8qmqP-O1HOdr6q9YltGb1JkvvK2OR20qK-yjwT4r91CNVVQ2hKTFAGQOefWo7WTVnvbcADx2pljLkfa-KROvR-TpDwqaC5kIecffJ2BiSh6BgtLMwmHGMOTemaJkU_vc_YL9XkDp5xkOz19ZKDK5ZCQEDRD2JZNfjP9xw15BoutynZLMJVM0WUFnf4NwCijthaicwbKk5_FK3mFlQJ6CTXZU1fsI5hDoSEmyBR2y2c6U76-PRLi6s-YjtmSAzQTYKHwmt7se9MDDysXIxCgo5kADPbJL_AvOtCaLdAdE718-pflStr3XfcUZ65vqPXQTRa_GJnW7wPknFKf9JPglaL8pNy582FflPqjicerGDEvXH-1_E96WisLMzVU2zqEl0k5nEJgqGlq-smQgwZZ-sIlbxD5eB82VKvAVFMJCuUJY9BvROeIYEIaf2z6-mSTx4fsWuFBqh9am313fy1c_uemSzaZiJzPzyQUuMqA6q2H5QUwfwhtAHzUT9X1D76Dpw-0-PBqneVz445HNeKJtYOt_iqK9eUdXQMeYJ704MSkYVqQuISU3utJdyLCeKfmN2KR6FN_rX2dcRlwC2ek3inf0WFOy0ubBDBwfqcG3AyQ2p_3q8TuwdwBGpboZt5Trrv-nx0lPzuoF-K5ft69gK578qYO4TBNNht1j2uXWkFqNe-vyNzAMVzTwRhDXjQ3UU40fdZTs7PPL0N6darSEcOG4Hl8qtEvwIMWFsKAxPNSChauMa-zcCi66uY34kgTZnI7nyQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67112b0d7ae844-93819718','','','2024-10-17 15:19:54','2024-10-17 15:19:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41203',0,'cd-form-entry','',0),(41204,0,'2024-10-17 15:20:52','2024-10-17 15:20:52','{\"email\":\"jakechesson88@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"Tn22 1JL\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5OspbFzK6TF_SVv6fqYPOYdn0htVCsQ3vPBbEIQe6SgKA_Z3DFOTlQtBSrNWz1rTJ6FhaidZEwjl-F9ZvOUddigNtzx8S3AE9ehfK1MjxA4pDTsVTeNfUu_cJ4JKhJt6DhMpPnBGziFAfsuExWWBfn_yhGrF81CwggMfRIiIKmdiMUVgV3deEtfTUpxONcfBM2v8SG6tDAcOX7YfZq8BBTZmxBalN383AmoI6oAyMco59ZDJd5XJGfPzlZLHi7tbeTYVmmFu0pdZLI4xDl5MVrH4XO5kRV9qc8Nt4EfOOSp5b6F-eMmAqDV6MHeMwVXZpbOSR3nomGRPWURQNO9nWC6FMAkASx_brjoIU5LuYn7lD5UuhP4hZjjGr3odRyH5HjgOk1wFHzn4nC4y76I9jg_qUsyfNpNaeNCamGVTGdh6CMAfoUDCJmqWK1WEoKc6B_DoWjbtUMmPu4OHv1O-iJYLxntLrEkBSwoQJ8gglEUsx8EHdcfC6I5Li079Fci8mV_lg0-hfbc_siLskzL1bDWtrAc8j9BQkrohNVAgj8rpWJdrRxrHM2eIkvdl6CBK5AdvyhDRCSb2EeSz9aU6B1PV4g5Vs71H11hYxQgk7LBAYe4pMxsJ5tUpoBx_Ivc_DQqLAk-mlCorfbMsK06r5YZH9gl5iJRKT9xC8sgGpw9s-yVq-fsAOioJ-sKtIN6x9Qt8rTuNF7VQTm7XHrDdxg49QkC5MNGQd1FHL74Nmtf9l9NC75MQExeSXUgisSwmhmsQcxrHw1nRpkwCguPws1xBn50kq4v55GNrnOxsXtVBawGcd4e2fjAda-rvwyBpkszdPDZplUjdy-_rCU5DElRePhh7fkq86pDWbek_gMzv6_QpFeOkkDNswXUJpyrh6FQ5NoPGAJMSMsdO_s18km2Cjf5HXYMX2O1EJ7tdclVCcEFqM3NjRF_t7P95I3N8M-anhQ4b7BY8BwOa1nYWFmOfdYgoNaeKIA8-Iy205GiRyl8CxazOti0sb3-TABvfHimZKITH9u6PR2N98XPxITu66Guj4uhIuo0zOCZH1VnEt2T_BEytar_v_4oODcXdTCj5e83jyHvpB0aqHIbwNtOTlO9ideRovq4Q_GWtDezJE60k3koRuKbOEwwXGT1pCbyZtqPaSYxx-bz5rPtmOAA8lApSw-gh3mCv99KDk1SoZve2P2fn3DIommdYj1ZGcV7PCtX-Hw7o4r57NwyTbu7-3Fvps4o7OwISKxP8Y6Z3v3VsRtSO0DwfHetIe0nQ65A7wzO55Y68fl_HaUMvuf3jwWPq8WNMyMtAdq9j6i4iz5vIf_JQTxIwqCMDkwRGndTExstK4ynEgwrAkJxz7MreQIjuCIb9_cpYB8YYS6XMbkriYCNHDXokBPOXVlOyUxKOOBoYpjIBcdU_AY4o4eN4OXWjBNtYQD-MVDJxHkoyv6PM_7IFJxzSB-WNM5Ou5KbIOyD6yG5lKcPuASTeOZnVioJxJaCCMyPAVAOO2yrF-yt29aEZFQG2zpsEJUnhslgK2m0JIPXdfUBWbNwZg-ExUjEZPBzCqgpdtVyN_4faxY85LKY7o6sLAumKXUfnZ4bOD_S8RfgCl3mz0nU6fo4E-jogzNp1VXCcvdkCBHIyMlQFzj_YXg3tzZ1Pys7c3TmxOmauacccV-cvmD8JkcFxs6qRzdChSaxqmVLbkE63evo6k55oySF7YJspgPk_-U7sR0VYSkcjyC3ziMe9qutD9POh7774BENWIfiRhLmh2E8O1b1L19-jCkqMKoyHt3huaoObhmrbu2tscaAAAxQQJnt312BTZ7tMhLiCK6YIjXcYTMdo62zKBP7NhDHfODrj1V7C8Ty4M-rdKEv9BXtCiHALs3K_Fbhi10ZGl2u-l0tTiW_kcKtLN6cTxUgFTThOynQkgOdkVm4HLOcFruvQCQY4V8mZAGdu9ucXozZA0mqqIfMGQRUBbNwA6rsmIZANIpXwMhizH2-KA-W1Lt_I3RjK3Sf8KaRS-y8exsHogqZg34yQj5g8qJ-C4o9gFWyqbKuam3Dbb-ilv24KOhVwbFsIw55DvCAVX16oVsOVVUKv-3CHg0HdXnoVXulUhYiUeHnAc1QTin7I410McvXOlO_pNdBFU_ux5gVyPSkCi7LI6VZsQKKJQcijuPOr2rf7zaxtJarDg_I_wY8HpQZmva6UqVsCAHNUGQdFQs8AwJuAb8HI23FGiQ9o9l3HDRK6Tw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67112b3d3c3616-59633278','','','2024-10-17 15:20:52','2024-10-17 15:20:52','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41204',0,'cd-form-entry','',0),(41205,0,'2024-10-18 09:07:39','2024-10-18 09:07:39','{\"firstname\":\"Laila\",\"lastname\":\"Idrees\",\"email\":\"la_ila13@outlook.com\",\"contactnumber\":\"07482452915\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2QualifiedPTLookalike&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6v1h6pQV2MuGRfSKnwadLsbb&amp;gclid=EAIaIQobChMIiYX2_sCXiQMVcJVQBh3IQhbcEAAYASAAEgI6EPD_BwE\",\"recaptcha_token\":\"03AFcWeA7A1hMMDS_CXwvPvWv08mlgBVwPqd5SfxUEvRqjeaRcRS9nQEDiLwabp2h9Q_4nosqxacMQjEaMMPJ_O6mPe5OMcnTuwLyyxrffL9eu5H8CU_EVAaQ36kH46wpq3Bf60U3MVRo4oD5hh-LeUGG3OlntEChRnv3srPwxA3A5a-O_2YnCaaR_PsW-hqR0JtACWnq2kagsGLkVAJZryVHg8VR5Oz-_rH4kfh2wB1dVARSgowxb5DFm2NO4XozmULgeQobJYZx8uNxBuiU6_-cFS2KH3m6FqDPih8vjoR-F1t6t3XPep8qwwuvDMpswmKuF2it2X3VziPxmRsJZdlsJ-5iEzxNMlbpQbVVgUstlCoJknsdxEbbQOppSa409W8luIa3mRzpHvvgPSq7-jJ6dKroN5rEfBGSXmFTkkFej6XDZsqaDqrV1iCQukd0MSO2V_tflI7Emb3jJvZzwONSf9EQAROFOWBUqWkWNy-VkAilrBzeP7Y1cEQuycuPiyQxvE83MCO_MyCugUoi7mdcbTGWlvUbHEXRlkmF6_uI9kjci3hEmb-lhEq2ox2WWOVSyZBF3COEyRjU7wUuP6khxORAOb4goWvDdWrf41s_n6gfHR5OrEDGqSEjjI22rKTlDxcf0LjB28RjYhO6KR-7xgSHDKBrYM6_KF1EyfKYDjhPW0OQ4xo7nmD1LL6blYg5nER5uywCcJyuk_iZ4mp4eEKGuun39E_hsI0wI-TIPizAX9DBrLNft-UDWZ9JAvKa0vtMAxGBio3CK0muiCtWk4Uy0d9qK2oiedkXvGfUy6ZDdLW1u6p7FfR2iRGa8e0nFbkl8GM6fdP6WSSojp5HGG9uqLqlxDj3FeyI1VmY7HoGNe3lALOGHeCKh3UpaPRKQSFkI-0Oeg29j5r2aAfbeuNP1mpF3CrsjnLWcHih3u7rER_hCVuwL_WWNEIkcXzuz6AAcXc48cyU2N0UfJu-sOE0xujGfgw6z2wTByy52l3qPS7hpndkkLdSiBYs9ZNLywpMOcdWCr2mdWAXB0SfuX3I5gLPGhefSjq1qBIb8hv76_H__hdpIOEC9iyUYYo_TRS8ggABelye90CnHkcxKpLnemFyow2hetbtifozy9jnc9XXVuYYbMrDcvLgT1jjyVtUAClfCSJAlvn5BM0pr2G2yy7xofLlMy5EROr__6m6PEUOktrGYYtwIFX9XRWMKqfpr1FkluVlXpLFHcgF9TeqNmWAw2dC-YNaz3D0ZeCCXRmDsfGzgfwvquxhIF28cbQvi3k-y_KIG9mtbXIlrfftUryCj4aE0aNi5HGlVJNmX_2Xt2cn4na97osiyNW2Nb4NMElA0tB9MWZ_-EALFP7O7AAInDZckHez4rCLEjnanEC10w_cNvmTh5D4dK6qYXRUF23sMb7rwmXBJSf8kHoOk5oCVmzlQbgc1FLFIqdRLGC8VbrUkLPCDmb_zqIuD58lsi8XT3J-lQlwk9tfCxwkRyHmRv6kXbeSdMk1dK7ju74DPYV2sQdnn9bFmfdoJCrcUicbQ7yYao6JvqfVBKF16GCXoe25UAzweyG7Asvxk8DGvvLaao5EENDXmAfL7T88Ouj4v9hT7IirVCzjlGt2BNam0Ydc9Dy-vlreA8cY2ZXV4SenCm0pvcJBCLjyOrxdxVJC8mQ6OkElUpC-ToQD21j7fiPlAUl-Fph1XA7LjJ_XqLf1SFfJVGVIjF8qjeJ3r6fafqTaEqmjJ_EC0PP08mIA3VvYceMOl6AO9pEQLZfuVufsdD9L8Dzw-HsUMRhq1d0mo0KI0mQ6tsQxKXyZON5dUfc25xOyA5kgdJHGdxmgEB_KZi_Os2-wVVmQJ4870TzwUPtAYhsW70NPhsZdTRAYfdX5HaGVV2nfiEaTUEfI_CE_adN-_Fti0i_I2NV0GZuDYSdkuyXDnmerHYUHRUiNnHTCNE0_abuGE-Ro4hiluwmkN23_g78ju_AlDWBQ8ZfAZVnvqdqPxh8bUfUlfgsJw2hRXeoumPMeQZ1TZASRhDgV7YCK7iVvtmM4V2WmcrbHwF15Fg0NjpdHKFqO2a8rXrmMMWCwkFTxXNlILRIBo-66NHtwgk_WDg3CYs6drmo02a--Ew0Erb5X-vVhr54jQqd7K8q9nbve2RjI5jdoAl7ImSuJUbuu9P7hZ5RdSNK-2FeIoiKtisHLHZ1h5QiMh5BxigbktRNsidKDB38YHm7MXjwEkMFax6SoGAI8YmkHu\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6712254853c994-88692163','','','2024-10-18 09:07:39','2024-10-18 09:07:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41205',0,'cd-form-entry','',0),(41206,0,'2024-10-18 09:52:52','2024-10-18 09:52:52','{\"firstname\":\"Sian\",\"lastname\":\"Rogers\",\"email\":\"info@srbowentherapy.co.uk\",\"contactnumber\":\"07775832203\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7f03yh1XHhZxaSPBrzkAZRoRt1-bhSBDxdMbkPazJmXOBHPezEVKiXRdyj_oJvYszKIYstxNCCyUrDOfwVc0BPlVy83eN2s3WOmS70ZFlDu791lBzY-BVFzI4JUkqiaKjiHJQYI9pE4jLZ6SF1k1VR_qT8xWhfWJk8sUiN5cmWhWnIv2rhGJwiyXxPu26cJQ9fWmtJwKUcBAeDgf5F46tyvETuOarMoUZ0h2IQ-3Hd3ou2cwCHAHXutkdsmLVz1bBNbILEReH4jgE_MCIpqpvK5k47wp-8gg0WndSbpPV94gtuCbnb2eVGn4KK7Sx4vR7vTqLUTa38U7aCbjuCPkeAvPc-ODa6tvt7khLvT-oevxHYHVALSGXFMUVC3r8BX2R_WmTOrN4P-zn24ybrmPg8k-Vp6JaOBcgK-C2AJbcUKGfAeiVeZmT12O8a68SApv4A6ZuyhMgl3o9joxdw8UcFd8zrgjDBK6JDYDjuULGSIFvYC3H1En3x24QZ3t2DaEpPNXyG2RdBP0B3yh2IRszb4WcxrLG8W0nnMhu7nXb644qmEA40WdD2IGtftompPhJflAG9h38jRkI6trf9bb9u7KkCQDqiy5XdjMDLUheB1baKsBV1dmyQTjfNL9NI5VpVYA_ouwn8NFxsDlNDCxByzywYQj-uMS4-JdIic5NJJ53h8O6njjVGJ8tVnY35Qopv5d2_tqy8Fd13fjZI3eQj5cdj6kYh1AFXmp54rtLFNZqob8irp80M9QbtvtsTptyDguwnm8QwAuWR2YHfpkI2HBQptqXPJ2kJVfP4wiX_u18ZllRupZPplh1k_Mx40g0ae2j9VZ8QV0IoMCgRK9fyaezb2QyN1injqO5P8FL1-n-sewXo8kdI_MWIbxEU185f5mR-RjaC5mKZjfCSCh0sJcyNb80l2unIbDDk-3xTzo6PfNk09zLf0gLX5KgJmltfwqyTUif9E4dZ7AJgt9H0P9q0rgSnD181CO32qlYaiY_7BBqh8fatnm1mqp6gp7ROEx44GODfwfMmf41BDzwVG6hlWNibrCN6_xCuo-K4y5sf1pGpgyiV15ZrX3Sk5XzfKIrQhgF5UM1sEqM8XdeHOaYldEW6d_c7_L9jsHwUCQmQk5Lr_Q7lJ5wJlFzj9uDMzMkcZs-fmPBRJa1Jr2B1szJy0bI_D4QnAeVz9uxfhiatmoby353bGgCEPqbC6BRyVCr7US2EmzAiuIxl5NSzEMdlAc0xnqATsnSXWiVSC-STF0apand3JpmtegKm3U1yyA4i2HDvhdCB1UdQriPVoFQMfZZ4HZX9IPPkd58h1MTF5qDGuScfYp9XMj-zXo1tPVB8mrbGalDgMGg5vSX1840NVDcJjBmmAuauM7RR1L9bKbMaLx9bpmem8iBwCfS__DVchxC1EIUQ9x0D5O7YZkDhH2pv-nOz1GvyOUwTx0FL1pgVFUr3yOaPWEMLf41nenOmMBDqMDhN2vxz43ArWyV4HK3mplEIeD0lO7W4Q-0tMjgibWwuHNWAqOmtGSfCe3_LhXYP8SM8Wt2h05sPeIZJt-le3IVidAybsvPtwSE4s-Sy4dTBCQbDdkPlVAO2CKMQNqmaZ_FuZCaqh_o5YgFQFARuE4pcTsP2CoHbmMFM53TbBO9sDBGC5rGpElnkGUraWVsfLPWJwdCv6Xanbwm9dcY6lfIuTLOPCNu6ENTpLzgPqwp58vywzqdU2xadITaj898QkpJ1yvC2td2ZAVO3Sap9Ps5Lm_P4m5J9AIC-PRqbEL5CxvPWnXE1jZFoRxIQRixh2mNtZP14Ofq5brE8jkFiEVL94_mDlHNJJWuJR_PiPX1Vx7txRJl8skaTgiciDrBEfN4F49NANE2uY2s78_L0oDUtIRZA_ozKAS9k9bepeOAaxOz4mXLjWH7gdzeaVVKHDlbudeU4Y2Mwhzr4cSAOsmnZGkKxZgWl1Q_9SeVKUsNfDJt34DfCuneBvbUx\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67122fec4921f8-59533511','','','2024-10-18 09:52:52','2024-10-18 09:52:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41206',0,'cd-form-entry','',0),(41207,0,'2024-10-18 09:53:48','2024-10-18 09:53:48','{\"email\":\"info@srbowentherapy.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"10\",\"currentpostcode\":\"SY15 6TE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA61a2c_Ys9RXQaR1zRSVGAuMjUxvAs0otmRfzrA0zvJ6YKwKXTMy3zi0Y2bo4P_6dNfyeONKyYAs10QHb3su6IX4lkSRKvev3at7ZdvhdODPnYazqQyU6ZnxRbBA8HZNIUWwLRGnsP5a9NwjJHy8dCmxWcGj8LdQJophG2QStVxqI-R3AzN-2wt0guXA-UI6ruIUUB82AFQ6kVPkXX7lqJP2vHLTW09HQwm6jfag0cLsngY_cFqhU7_kpQwghY1h7wfhJ-DXqrnNJUcoLw8XlXj3P9IUhtyHyr2U9jF-My71ODJYghUhWXErmjFiybs1XMtVOsRHnzytjK1GM1-RtUm7cfSpqsmFpGOQ0BRi41x00pn0XxoZiLhWrebrjzdfBCumefkhnAiCUWnrYzIZyzmiFS0mmrI5hMUHgzzNdxIIKqx1zodpLqZRP9L2Es8DNtHmCZJ5RfzKMnAYZZnUI6jfF4tuvNs2JdZ2xlqKpl-MziZJOrms5PGuuvKHWPBvTvaGqrIsxHtz-w-SORzrrZwkncqG68PK402UUJ72Bl0RUeuLxBn8tT6NLwbWdhW3uF5hlKHiJWhBmztur3DVgvFLIaj20sjkcVD_x3MN2bKEkdsldpI_B4ScqtfnO6B1zA80X5twybLWBb4_VmvzfC9Fv_YJoXvdWP326Ktl85TjFfxm_zxPpd8bB5RQEt2fR2zB1kn45x159UJWAAqrHT9oixsn5zxJLkucdupW0HgWhWcL5UFQhrbhPl3b0dICNztHiU0Zih1Z2HubKAYzsKklIW-2E1SdKG592BUGO-sc4P09ZAFQu-2kupJ9p6IO-guHKGZgJ8T74b9txt6xTmD3n26Fy0O9vVArp7aQy3EffOq-sp10tMmRhTWdIl-NtTNIaBJubOdulgwoyHNp5lADBhz3uH0hI9ve7pVhU3uUxoASdvi0eV_GJ9X-Mtw3kGayi392OmwBzopQrgwgi2v1QRpaZxH9NkLd6mNsMfu9EUTBK-wJ4nLXV7_08HeTrMtj7nMOSnNRLNVT4vi92VwzsDoSvR1qiexwS1SzUqVAw91K33oGKL3F53tzup1kyVZZzHeFNd4qa6IJsPbrTHnw8CcKe67v5yVSw3UGaVyUq5zEaVeadbE5o8KaqGkPhErkhm0rR3OE0F_X-PMkeELoTumZzA7qXiXcV8-hOA1tyiJh3nhb1SXjzF74mMDW_V_BLozVYpTie4fMAL4dwqVSx8m_IiRjBY3fSKYaHEytASdvHHXeQp1Zb2CvQhTzVSuz7Q8WKmWvQ1pcOOTFSYT1AkHsuo9yJXpKxz1NefoskkabgIRhKMecIjd5dqkRe7MU5RESw_jYXaKYDLiLzHj1MM37yJ7qOuPNE6SRadXIvF1L-01g4Dw0mtzrpPlMkOIT3yIUNaz0hrjjdhnO6Ndq0p0ixReGcAeF-ey38rF5gWKGjz6h1n9Mw-c9kU5ILVM3pbs1i2gvYUt_007PrsqSvnfuPeQWBfaJAPOonGkqLoSZmzFQIiefA7XNWGPRDl9hUuTploueDDhR-xO8NHWhDGC-WLKXfAeTUK6WcrmhS6I89WIj-OYTNG1krsrvuBP44tZpaGed-fpqs7rz7-tmVdR9Gq4ucpOkgv5fFcN9x5RZkKijPHpm-sOc2_4RGth_53rCVJy-hWdQzhIxaLTiDviX5MTnI1Da1U739YeqL3VXmovXerTI8Li-Je6YdfI-ZALtzg0RFdnDvGY2EUDLL12LNKRTUQxziuMcShp9BBo1Bv4M88D7HztqDKGwoALaSsVbF6EnXrv5UYcial0pv27szxB0TDWl34mfQw_QIh4WPh2Vckg72c1s_sKQIzpgNi6L8IpbAVQjSfROlREGtF9Hucm63ooHOXLsRiV2BfmYL1Rv8Rn6_jgSHKGzCxIRpek_s9YLM-NuDf1jAUN92MAnLcX4SgKr1Opu-ZGC7RJsqD-138hg_a91fz07t2lzlpB\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671230102bf3a3-57740445','','','2024-10-18 09:53:48','2024-10-18 09:53:48','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41207',0,'cd-form-entry','',0),(41208,0,'2024-10-18 10:20:35','2024-10-18 10:20:35','{\"firstname\":\"Catarina\",\"lastname\":\"Barbosa\",\"email\":\"livinybarcos@gmail.com\",\"contactnumber\":\"07553887227\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7N_SPEdhYSaeIJE5ocdFB8OibSUS22UlIdTlu3ASXGEJROde1WtYXIqhm04zmYzBooD4cRi3o11U5rur20NiTif-MH0iY4yOkJk7MPL1Ke8_69UyDy9RfY6Gwtlw738cGoiYv9a2ieJSjZdSC11KX6YDqUWpMUJsb75ekrYVyki75gNYtgIaJuOMHVgDbjZz87XqVxWmdGiAUYNdDouc_s1fChzFhVep6BDXg_xsWCFZ1nNdpSjDx1Pr-Ce0UjSUaGz8Idtpg71OE815m3tgplu5rpLUjR67lrzjhHBpGq3vBBcN9xuv4fG_-9teLW5BLnseSy-2o-HlGxvgcLv6JRGeLwBzxaZYyiVMYCnFPBKo5sE5HFwxibUB6dyb9aOwOPfzsu1CLmYj8QLzsbGHVu8YSxzSD5pen1oiuaAzYDtIYfpdUai3n8LNKXdScYNiFJwIuRFiTPm82adiPyUhV5x1-2eeD_aVLxkerCRmeMHfMpVLXRS8wnVVpj29gNdgMR-LF7IjagieH-lnSlv2TcPDxpF_pkWSVdDxfEdXjaYMxJpBJWCLwh-TWXvTm-Z6tPZedB_TTATvgF-th9hqVPCQPZvz8dyWecQna0dpj_a4OG76PrqTdayQz3igJoWTQxRdwaN5PvM3l2Dq1KFuYmiUCcmy6H7ODG_6TmK3uNDgV-K8ZehbZ72sfi60bGgxle2sU-1YUwzbUQ-jjvjXRJyZEq8gDov6wSTqRsN5_2nuk8CW5NhydqBBjZi7MW5KvaqTdkJoEywHfuNVlLrXoNfzG1k32KPv9vgO7lRxEnMd8g16wL9TSQq7zHLIY116jI8q4XKSZRBMWxYy-_pUc-0vUgdq5DhsKS8FOshMkxXPiGj-X-s5ucif2JdHwGvvAbhV0LRpUbgydPAGaVTHfKfTnI1mH60V8dYkJ7MgxxeD-WKeSTe08GX6xDQm-7k_fQsANj9h3KGnp5gj_O9Idq-w5VxHAL4WFhECi6AupJiLq1nsBWcogIAVLL3yy4MR7jXjkfzYIugFcy2pitIMqiT3KvDPeTPDVM31ExjOMruWNIAgPnYE3ctPh8f8b1pr_zL149vex7HM3T946QOUBqPcuQovXsgTYMI_TuG4WvF2c_Ol6n8dNamNPC07edZlosqqiwsQxM_Q60M7_KXLxBv7FPgQ7lgcKrPnViMXf6incxvFiXBXFU5BJbJ9p0IO9bIcAZhueKoSMXnz3qakF_92UtuRbyjQM2GxwdhXir91ofl851a5ADsRBwWasXPCdt97GQAwPNeuGzp7-CH7K_pgr3rOR0rhkBBjwGNytJd1IGumCX6nMJYBQw32Z-pv4_fwOB_wXSZWThXC-HBkbZNxnPSZ9GwIVyTBrEMYyBjhni59ppdHH84DyX72TRrmdl1K_gcxDFWuuA6b8u12aW89yzKbAx03ATTnZ-z62FEu5T3CfQUCmHC7-9C8EU7mS9icVmEgb4i4E7373xNzIuvW08fMBxadiPTWZI6rH3FbhRWRWngsiPZDF3wF3h38ClRigafY_UELOvGn5I9v6UOk7fX_s4R3Jfq8TUEKkHtZYJe8lFzqrkQIvEezoqm-dsEy3tgdx2_rqnzxNWIDVKuXekWdv9QKLf2WDDFkbUXg3_4xkFk7gKTKgaiRAKnCJxc85D8lVMPUp-SnqsIEeI8XqcywJAmOdjLHWijlFZFhYknHR9Q3dFwZt41msMnNQuV9cZmgYXyDoKeQz2yXF26rK1ah08XJuZAJNENKZtYbNZV-1xMGBaNdAz4ybpAm30a1pxjUX6IK21dkzGdcJfNda46VIq6TM2GpR8A-sMTWpAEWmVwcRL-uId_B4eDUmT_PQbSi070V9YNCvsvT9UuK0mX6Mwm4_ARVDYGOf2yAEgf4JTpHkkS48KaBRR8F6aO-YuYtvabTgFbYiqLxomGZ43ZZyO9p4NdFIbwii911VnqOY\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6712366d4cfaa0-34489700','','','2024-10-18 10:20:35','2024-10-18 10:20:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41208',0,'cd-form-entry','',0),(41209,0,'2024-10-19 04:01:49','2024-10-19 04:01:49','{\"firstname\":\"Heidi\",\"lastname\":\"Williams\",\"email\":\"heidiannwilliams1983@gmail.com\",\"contactnumber\":\"07718 202395\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA4eXPVIfnUfX0gT8HWRTxEGQD9zgQcmH8_wawUY-x3pArisTlUSaCeSkcCMh46TGUPN-LzXrNZTcTBsU_Fv77ob5MGT39Om255dspkH7gBB6zEzCI-Lgy6SHrvWX2aoHKpQ5H_xfk9j2jN-IFQt-9euFvmnf2yA6fN4wvhXmA3Ap3-1en5m6e6TNRwAj05f1KcY5HN0izIH8qymPvY7yfSQTXnQzVFB1NvNPX_ZLUoavTib8_H7KreTY1G2WdX31OAkTFRzl6Zd9PN1v_R-eZXj_EZ4ZSlQj7cCKPWC3tBEWHfg-6_5l6THsjN_QjBwJDJsCg_MXD0K6ZeanXPaHBCxwpeR9rdY2XAIhYXqe2i0MOHfJ2TNOVkp6ZKwJy2F88d6QrEjSoCa-GjeT4ZB1LKiKUBbLLzdEFIUaMlUXTnUt22oAgHcXL2FEyYSSOB9wGacTODBt4trVZVcaIjBGXiOGkMI4uJ7EJNc8jMzb9Pjx7B_v1gckBzzELxXkNYHcs-Mun-uqNK5kZHtQ4ADm6VBUUg_t3z8BzDhSANw8y2NbzQQVf3fxONyHE0NMONFpc2-JBudXiBYVYLtOs7rQWHhwBbKI7MOd5LmdmmbHkj2Q5rpFOebhtaGJCvWcgQmkaa3RkdmWa03Da44C5n0uPfIjJIEDCDqJIG0-krChLgn6qfKMbqi0HV90nItuoAoaq8XDB1yNXM8_-3yxInYicbWHZ5RGQGagaECXFZ3G9W1yOB6XMVrefxkABbIV7-iRmlgdVj-bpaKGbeDfnBtsKqlcKHUnmG6YAg6od6avYzqX26ptsQDCqFi0NlvJldXtq_UczvdQZR8woSSgmQfv-91vzgubHBYhBifnNs2aQN5hpQlmw1hX8Df8sCSiZAgd7IMGjn-zwhFMvvRWmTzpkHVEx6fcE9udAMAcLEmK0dNyE4GxZ4BSThmRAQzX_JA3Y4gXEC0wSQd3wOO3rcn-LxtjtyuVWoD8xKVKXbEZpl4DlCzs-cDgNi3gKB2_zlrw09AxGd0Oxs6kdhLvVvlhKWM8M4l0VJ3bxvhJnMkmj8mVszK_cH7rNCg4f7MhXeuV40D3MZVZaJlvCjVBL3O4n4z-PvkRxSFPz5Gwi5neku7uYYA1saXCS_H1a-UWbYv_ATZr65x1Bm0DHKrz6gaWCPVCx7cOQiPt1jS3YIBPKBDfy2GjcxvCyBqTNE41gEWz8bNhd3a5KXMWTdqXsKKy22_Vhl8-7QQ5RZBFNtA_Pz3XGt8nrDtLI_4u8KKHvvekk_T94wQ6IVDrkQKeSLzTdLiszPxkW6D8TKYx4jw3nAvaGdxh9qoVVDQbn80GNcJe_yxRKbM_51ohvyDN1f1QpFcbzO20D9UTPPcQo_JEZ9mHfuuP-_8tIV9Bg5t1Hq6zvEiZfvCBA8UlHzCLin2dNB2B0_JLzQjQDY9EmkbgMqpkGS0EoWCUJLCZrgFcgegwvgxFdTQcCXwk3x7c0LVe5dCWmFmwrPlfsHwiwo52-hVQSRQ7QZwYXhwQZS5qLd2BHj-OEIxRRRNuq3vg5sdxqqbJko-b3evm49Y2LwljIZUADtAq7VQtmBIPiHBtDIX2ZsQTMOA8BlVcImuKcao3jez-52T6_WMpv1HSwtXF5zYEUfbp6_PNp19ZMZusbBwhHDo73tQ4HO3AzCCva_oVXj03oUVn3oZyW95WmaGgYVbaeQ0a1hxa4LIwX9IelKBNWEKwFCT-EwjehN1IAZUbyceSFO3F1Yfa0nV4Of795384jSGxTieBWSYOEk7HC394pCDix02jSCQwbkp_WF7CnSrpP7pYkosRDnJRUYS-mEnMEIeJlosk72eAKtbsFFxUc56D9nw7g9JL_y_6uvSN1dRrTZ1BVsnU2eT9vRbRMGF2cmDD7tIxMVbDSPsca-xAeyhTG_PpP4vHD7VIXZj_7RQ7BDE0Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67132f1c51c945-76543849','','','2024-10-19 04:01:49','2024-10-19 04:01:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41209',0,'cd-form-entry','',0),(41210,0,'2024-10-19 05:48:50','2024-10-19 05:48:50','{\"firstname\":\"Katie\",\"lastname\":\"Sansom\",\"email\":\"katie@ktfitnesspt.co.uk\",\"contactnumber\":\"07456449943\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tqCtb1agSOhQx8vr8bvJF39&amp;gclid=EAIaIQobChMIvofa796ZiQMVXpNQBh1v_xs6EAAYASAAEgLUYfD_BwE\",\"recaptcha_token\":\"03AFcWeA51OxngIkDCJNOYXwa7OaQAU8_gbrCxEMhk4BN0ZM5WNBI056ozqs66VyuVPAov0RzzVBUgF8ieor3TN5qbxAH4wH-BYVMe0hk1a1z75Wgm5PKIc0VVqaV5RQUgFFqQWI4cOl9OV4uCc8yZESNm_Nn2LIuS78-y8jJRYinq_U9ygMVMATH9qibZ9wYAqoMPzIbZv5h6kWVbZw6qbNPtDvaYEwZrK6H7jjvl7YHNvfSWlFkKdX4hlbTY_zJ0ErDhwDL0z-MVLRXXfQdUZ2MdHT_w4dh999M0590bRbzDSAjiV-EFyANxxVFZnhHjEvFMgtSRCPahvuCdneWo4zT7Q4dSsv08wM29ceus2qg6w8t8ESFc9L5JuVx4sRbJGHzop8HQVJ5CdDB8VPtyXjGHa5RP8SuRmmZg76ACmXM2cHomPguaQ7SFDs_JigVL4ik2251jsAwa14UvbJVg4f9SR82wVu4JL5tqTI8h1arRO_NvEODXzL0cRR3hIiQswR3sR6nUT9tWaIWyghfl0vvSM2t-nqWA1uV1n6k9GliPs43HA2AVzYvp6jpZ8h5ALKFWZ3szmfAsWTpDtdTiXDJrFYSyv0beD4Qe4LLGxHs7WHXKt2Sq9-6adKPJrtYyhu20FIsgy1p2Jz8dFmqOp9F58rlLkqnhBw26t_Z88Y4XaAziGWCnB8b-3nfSsMzkdC6ad6D2Rsy5XVWQEFUpvkYODdpNJYjcYuLoMexJum6Ac6bNghKzxsIBG9y__8FTNqHY-hgM1lFerRg-q6rsFyel6fmqwhmyK1QIw16thGqwtBkP9QAwCRhf11f9fm9xuG1E4Uq4k4gJD3h5NlHvtsP3DJOVZw_qdM_53sGmk-_MnmzPbF8ystStSgJb6ABl4i4VvymQy3BL9uWbtNr1YWFhakwrk8xZodogMRQxfapB4LJcimC6xi9WcFHRXN97etDGSWADKZfWXev-Ke7i3Pj13Wam6Zu-Mm14kcwW3ZrMlUfH2pZ5HKZ6TgKSTzeHc22-5XQqR4rOacwuwkJ71LJRf3xkahjpnB5z66KSGnwjlBiXdGY4XUu01Nq8ZUXKqSzsFUyL_dYEyYP72iBhCr7rgfsW_ih0ez-K0_2okRkPTWbyphlGv8qjWoWnPdMidmMJkolqFxwA_2-WBUajTa1dHHHh9xyF71vTaSc_NE1lPo8W8oN_uAjN3SC7gD7p8EZ6yaY4fLdFNhBb1YOIrJZHknL6SJDFQ_R9YwE0vVGlXYwi6oYrSNCKeTx33FLJ_0OCd7jKeCeDyVgMAxeaxq8VMBLBqhowYTksQrJYURwssd3xOslnAPADXXbbrL-optCwKSdZugVLPVBrWiWNshfla0D_oNKdN6zz9q1xbstBuskwwRJqJZRR_hzaLxQ-n5cRDA_57BvDdoafi4ouqtRxf1TyugN0zx4bHnPmsW8GbAraAC3VNbHmNlUGmgOQHgtWxK6wk_8ojCxwCyWKUocWUA8A5JzSmyOnj4WiSXKLGGsZIr2oQkhZPK6KwtjzicrjUlUKaAiN8dDZmdr43wX_NI5etEPT0q0PRTSsXZxc9YlkUf3pUeNKhmZSKe4-Esl-L-p2NmkXAQniHLxpoDiz1NbId5AcjVnzTut4OoSlPO6z6kQb7Y8xm1MP2laS1eRDXMgnphIogfCvGqSUTD0lgvf_FXMZbDknO7pC-SHYCxH7r3VKt276Lu5I3OOV4ctipRxaYS_lbOFTJGCalUq8C-uxzQHZaXMV3pA9RcWRYjr2vEDmFDB5LNJ4C1531BkFGlEhbuXdfOaLn3y_dBU9Q8FwDGF5C6FEK9Yfdk-cxiF-ec1qeKZfHzQCk_e0stxJU8TFKIKrF9zBdueR2e4BPMksAMSZ0keEpD1J4_bsUPUvp8AIw1gaoIZ6AbIwaN8HDufncdZHhJ8JRyWqO0MlYnumF_xigdGnn-8BSlVvYwKGdRhVqgVLfUBzB11Fwq0Kef0raAAx4P0JjgEihYeXKLrOJ4eyjcvijaxO9h6NIaCrTye-um_5vozRt1waCfxr-LrfDk_5vXTA6DmsuCJyR068a-EfVg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67134836bc4925-08418237','','','2024-10-19 05:48:50','2024-10-19 05:48:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41210',0,'cd-form-entry','',0),(41211,0,'2024-10-19 05:50:26','2024-10-19 05:50:26','{\"email\":\"katie@ktfitnesspt.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"DA5 2EN\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tqCtb1agSOhQx8vr8bvJF39&amp;gclid=EAIaIQobChMIvofa796ZiQMVXpNQBh1v_xs6EAAYASAAEgLUYfD_BwE\",\"recaptcha_token\":\"03AFcWeA7nFn40b8ON4-dv93VNZR1jBWinElAG1KwAm4C4C0llssZNRY284ZuGTl-vZ_E_gkXaJCs69CfOi2t61JgrYgb0aRVJDLbH8VYBSrWJZxkCWrx7PK03kd-k6cgZwrNLjPCdBWDNjAlHe8NbqU6Sdj9Sbie4sNCOehNYlY5BYU2NYIwE9Ej2zyVkO0rW9nHRvZYoWSDdTd8Kn1ng7GZ3rpHHebTCRKFic_hkzF0qhPy_1_5yfTzW6hBmfxUnocI1ZYFAkaTuHD0kg7DiqORuRlUxA37j2gJWFt0i11U--2XZRwdGzG1opvrSIKCeJUenKZbzWQ5WVpa2yHORV5T-9RIEkEEDzc7LMaY9mmEcJ1x3rwDGQh672la_2gHcbLW9IHvQF-IoLFT-WGw4hyqnt8_vXrKZuAxbsUDkaeZoX-idjpBDEnRkOunz4r2PfNX4g-KypaAU-0H_RTxZIpUA6q6LXwWP7X9cvOtrbXSm_lXXpWM8zx1cqvVqFYR1O3mA8T2OdfU-DgWfYOfcQSs4I8xY_W7gED2bYjnfPu2kUQLusRlEbKpnQhS9WrcmwSm4ho3LVGU1Mav_HU0dSzZnpoMyVV5Ze4_2yeQvIPrKnv2KXiANiB8ZhjbL1-74GpfIWvjLjPvXCHl-uul-tVRiG_K_idJompKnQiaRD_kbUxoLtEgwp79TEVZNGOHoFIDAYl41urC3FyoX7XobDHGWITd-f0l1EU4ZU9GEzIHoRtdIypA9jnvZ7L3wSwHzZkXYovIBDqK_1r1Hi8FD_fkWr9nYysl62ag8A_EN102CaSP1Offy1mh06nv0h6lWNrfjchBQY79ZeLIvHHY1P0KMPsVbgfU_AI_9gQmMPchVPiC5RryFZPvBcpQxyGKps3QMBpIRG9AILeyzG6yFZFMqOs34NHxPGAYUmf8yJPddE55EwlELfULsf8GZ8g8u7PwC2k9-YvRsvfZdvtooJv_YtcVNSs0k88jJQz2tDuuHNU28zbx1_Xqt3zV9oEO0rsWBQ9LEtzSJoWxhG2Ew3oxPqmA1narIN-vVdSxRC1ABKG5WIcfHlOYuPJiTnvw3OH9N-DQcYUiHm4GoIo9btJN3VE6T7b-uspiWet8Q7YpTLeIZbdRQ6q43diZi5DbW6WtL4rTk5bkXltrI_nUUMGfKZpHdPcl31dAa1-r8z2ASa8qRfyRNm6GJ9m-oM8Zzmuo9YIl_sGVgb4pGaWRgueSJXnvIcVjRZtOtQSvpPsM4Vxjn4YEhzJk-xnLQ1H3dPGURApAk_rmGBetnlKeQ2njZtghdcRca31HHCLZrh2QXXtHwdYkRRw9VcpuU7xULx5-Xi08XKSqVSMeQr7EHLH6xqqh6h9j4hIJHqOp6oqyRn68pZAQ6KorkQ5-dcG0uGiAsPPvq4Js_XGj-r6B_DZfaebPsSkP9JmIN5EovBF9NPyoAx_FBEVazACYOIiO1DFJ6er7kHNGCi9e3JzlFgzURU5nbkHJsbmG45KddbZViGLxh5hsBq6FG9nC7fBZvmLLk6CGaGaMoSZ2pdvpT8g3QYPw8S8ORmWUpgyl06eU9rpUfF1WAFEwwuzTCxp0XYQ4bRRnFqlXyDZ37mAkzxCKfYefsHgnGhCvFrxjf7Y_-BV6lse411t5IXFleBZk-piij-kPLpiIWPUe4nbuywFhebfTW6NHPFOyR3cFCu6cyTPS55WxI9FgMt3ddpdzqGLLmsM4Fnlnxx3h_nHARAoSUltPMSQbeZLcLj2X4KEXuwHpiOkVBJ02WqKIuCm--UG2yb33l1JTn-tSRIRg5e17oyt1UFYKpEbXkcuwp4PWSre2jgD4vCAh9TXTJkzaPfpc0MVrATQsFEHtFdIPELBMGdpRH85kh1WofqhWuTcWqi3TaDwC-DyM1L43nmGesn18NH4R1vW-jQj17oM6P4VpHrJUDL_LbojWF6VQAge2jLCkNT5slNMBC9heog3RqyQAcCdyeyI8xV0LR_Oe_dSlYAEyZRDDRLxeK31LZwUEnkqhIuHYM_0x77nODum5opDoc3GuxOm1D\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671348797ae969-03685676','','','2024-10-19 05:50:26','2024-10-19 05:50:26','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41211',0,'cd-form-entry','',0),(41212,0,'2024-10-19 06:55:39','2024-10-19 06:55:39','{\"firstname\":\"Sarah\",\"lastname\":\"Baker\",\"email\":\"sarahlmb@gmail.com\",\"contactnumber\":\"07938470041\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2QualifiedPTLookalike&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vXfK1QLah66PW39Z5JECssD&amp;gclid=CjwKCAjwjsi4BhB5EiwAFAL0YBp7Hj7peBWTC3yO0l0ITqU6yCYtXjuX30AbxtP5N_ENcZStqnd95RoCzrUQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7R8TU4B0vPsz74_1htHDHUnnb2J7l3PjCcF1wBuK6M0YRP_nfNVeRW2c3HLJjw74jZU4-REPDmX194RiTCEBt3T9r1TJ6A-zwCWDfBmQ3nvyQDqGMmv08rinUCAkfGPinHzfIJukHXAnHWSvuRSwSar1C-J5556z2IQXXA-6EPZJJVL6Dihf2oDK0sFuElZwPACu5MjoKMRM-j79xf-jvASM1dXCQ9kgiD_VGBMeKCrZfO6JjyMgBcsBEbKUnM1YlGgx9PfVu9kV-j0wLqDoCC-etlzBPncT4NK8-tTJUEF2eKCy17ERD1BBZqatkqU-i_QEotepgXDCIh2-dOHFuIgefwQtboqPYN5Va5FefYH7QgYRJVKNg_QuDXWVpJwunV7T1zsjv7WikhR92DxKpE8LRoHmOS6sX4k5wF5MVszGziJUqnleE1FFcRZm0gOfNEtEk52b_L16diuSfXT1plJX8SiXwSpPqQTbospu-VWfz1wCHjAzS2GWkTAsnln-vZ7A_baqJrT13reRVN3qn9yPBjZyz-8tXRhC9zsykkvbvht-bm30AC-g7oH00PO5cNex1AcgtXLahOdHQXkjdZa2awQRDVePKY8Bkwy49mDpQZjd9pxMcHaHMnoR6T7l-oiT0SMuUk97VwxOEOdwJOja5h1GRPEx-BXfYMvTsCyTMMtPEb5L6oUTm8VeNO55F11-pebdWvV7a6Hd0lNLChTdehTQObWdthEbieslgKDQl92PtxSGpyjMg9BmUeW5782FwW3ZD5MkwdoeQRuOWHtV-USNjmdL_EOeP37RcuoIMOzBQojdm_ZTlLYK7mzdz4IPiUiDSKoFV951h50zj6nSVuupDtMDFcMlgMqMI5pEPwVj0s-cWdjKT9LLBpk3aL9N5Om4mHB0MPbBde9qeEArGL4ViY6cbIT_iNvLCQdS7m893OL_J1TLVOVmijSMZTJ-IDcZisgI0Eyh6F3dYgkJhdqFnRkxHI64wVINB2Jw27tjbVkY0PjAW219JHptbtz3UYO3nQlUVgxFwz_jVn8JnzQVfvRmGfyB-nShw7I4jU1tEMN29h_LMXtStOht3VoPaLmH8c1zP7yWCT3Pd4K02V0qxWDpblvxRiQL59RHG64Yj4-I0PsPxAaAPvZCCqHo_wblqDMQC_IVDMF0xoneTuFtl5O_QSn5QFUKHkUwhjOxmqLQhferVdoz95spnvZpgiKA1Rrv2QVAJ0m9Y0AhPlD8ujiwrjoFjQT4F_D4RQdtc6UwSgJG2bAwMaFYBGcvCoRnbfLbin4y34w254E8Kd_Hf-Rob-xfs9Y1hujxxuPR7Gc38ankjpVvXLgKVVsnAmsbFj2abwhkh138eBKNS6k52clWW27cajUC9DhqXrzCl0wtiyJ8SZ0Ju3S4FIIeZbEc3sWkKyDNy0rXtnsIHZRp_y-QZ5DPfrNvwAohwLd3kXO__4WOKziaX69fZu0xIbrIp9tm6UVVom6q5kRKLzFUb1R_bRNGHCvdwp94EPOPxNgQsggFNlNhQ5gryLc3MBdQgX9TOEUacVPeDmYxlznhBToKHwd7wnDUEUhk6GPhBBL9GDhAzFl91uZl7960SJmcMAgOUVa_5Y0P8cilqugiajceikQn-rNfxnMJAVQgX_WSPQtHdiQsqW7me8uC9JM0DJPjUOJHid_MUH2bJ4F32Ui0bBRCcpoeLN4lrUA8xRx0ur2vy6XB9rBPMdJysMPb4qc_sw-gTa8C15-Gp4HwQMJB0CvnIvSS8XDFV914ttg_He4xwLhon7NZUwwsg7ZeEps69ir2utwexP6JGPq7Z6WLRrQv3uMmBcXZQncvBHaDxfjM2_A3A-OmNMm-GapFA8bDj_QlOH5BnghscuGcZeEx1ZUVltfonxLwpLF0l5ENLQSVTnt0sl2xeFzYFvPtXT3twTZVY9K3HlVZ3leZGqKQmbQhU4sJ_2FWF4XK5GTvGdUFygVRf6hb1ERjz_Qdak-P37mnsjc0tFfbhrSC5_TP1sMGGuOvqQd4JRrh-QbwXkV8h6-0o7gwo15aQwPwNS6EzaVNsIA-dicLZ5a5dD-oMpWwarjSurPakH2gwNN_ehBukHiYrSRZdV1IGX43_wa4ZRnL7UDGCVSI65Z5MDGB2Vi3ik5VHEoIMKJ4IH9y2RaMqMftEtyclliollx9-j6e8S_L8vcjg0osqnMwPjQg2IoR_Z5PdFq8gwmL4o1mp4NiwRqASOea6Czd1m\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671357dc8fde69-61138793','','','2024-10-19 06:55:39','2024-10-19 06:55:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41212',0,'cd-form-entry','',0),(41213,0,'2024-10-20 10:22:50','0000-00-00 00:00:00','{\"firstname\":\"Thomas\",\"lastname\":\"Winch\",\"email\":\"tomrwinch@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2QualifiedPTLookalike&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uwp9NsH3smUmoPvVZmDARW8&amp;gclid=EAIaIQobChMIte7hid2ciQMVVJlQBh3LQw87EAAYBCAAEgIxWfD_BwE\",\"recaptcha_token\":\"03AFcWeA584nDrNZ5v4mnp2MqFNk6PneJDO4gEXjHKPPO1WeTlVRdb1AOaxvlzKPmyjsi3VF0d0irZs_4WbAaIhNhfxDFlU_79jmX-H-aqe8-b0PZGq4rI5bcGGdtv4cybGwtuD5cdCUnJj3lmwMIc7T3fzJOpdXjUpiCnWpyjE95m8KFjGCDpbK7fLAqu0dpzjvy2ZGfiOqbHZPamD3s-2JPTxZCTNr-wUMREu1efqqOkjRCXqleruCaodTx4iyvz4WhtRy9xkbADElXSSRmDZ325l4EkgB2uDaCNw35_umCxR-P__l_FezkvDzNOqNu_VvijIQfgxrknKQWcQy-wD-gExAai5sUu2zmbgydLkfjEPAb7Vgkol5vEitQTchlRhhnOdDtL7EzkXvZFUV3u2v2x018cI6AdsaW_dlLKItcyUfKaxPyZnwn08ckiRsjnIy5XdXmjXxBB-npKXemvMwcxloi0JqZ2WFK7PMOvYKXAI6cG87K0MkZ9fw-cFdkBqYdpXrOVCTi4VY8pzvtLzc1YNnc23jFedYtF9kJY46DWs-hVLQAYhh75gW16DYyFG_efJDQODH7KFwY3lOU716oK_QJtUVfUz5HCgYH3DhDuvrkW4ZQMbSr-ujV9qIy699FOh7vV2ZkwyGxu8jpOgJPpsphAe6_5fgEcXK7zvvMcUIBvOAUhDjeprBe96HzhIUpVJ5Oi9ofLgLDg6bosXeWLAb56_QzLa-OignuqaiiCkOu0hATp9Eu0lqllRqx1Eqo7PDtyZgjUInhcFYE3MfJT9YJn3Dpsf7ZF4s3Dm9OwV6UEJgecH2pvvD_VMQVA49dF8KVKklfOwWbbaTvUaDiUXSubshXfNpMrpG3DUVMpDNK2EeL1dzSUnEnyp7PtRtTX0Ec-fpbM4JdMPojeuYGlfEFF8Y-tCxfwIMkDp53DBjqZvWcRzqEU4rPm4I8EBjejR7d3RFoO-yItPCIwYAq2fVtPLKq2-nadGPE8nU-NboLjwn-1GDf2_IIU4MITwenmkyKou2Ne8WYw8z3l26JV-5LEyccSccNFvO9IWyC1p_0pqNhMe7pFKj2ZB58RiNBJGULTRtRy48xc4NbXXb8OESyndbWVqGKKbe2fglHxOBjps584zmnoFqW7sSNf7BuKyR03jpsKpM0IjLHZ7g6Z7G69dFeS-l0Q45r8NHph0hj40J8qXWskwHdzZCgovRf-AW0YLii1Y6Mvz-9seWBt1OUG53u8MucxFMWdQ1c65Ckqc84QUf2tZ3otVyhdODd8bEALi7GptmptuyYhRE5_to71qqrKRo4_EGYawAz6koy7ma1dVzXrLOLlXlwtaIpJLbwXKUB92zwPs3Kqzn1I0ucHPZO6R5P7WPhwTADdv__l1ThhSX61REbEIJ2N3Z2cTI_dXZ_ABuj3ZPlWQ-AIGl7S0hLPm3HALB8sKGGvtW7Q5WNAN25z1oCTrlWKpJ_X06MLEVIQPbbeE2YFQPI8H0t_eUG3XFJdkigeWBln-pQ-Qpf6AoEY-RIQKt0BCS48FxAVYGUh8hebNfLxASEk0fGzeyEXtOGOPlhnsbUrDFBx0kvPrgnggQodoneNOsDb2nF4AMUVfPugrNND3LfViA39qIRMJxTibZHjJ9wYa2WHubkabc6fQNxO0Y9XcfbIj4u-oZ-em8zkPvR1Wt4AvYZ0_vemYZN1Owc3v0SVChm7ZmnFDwZ6JTa0EAY4hUheo_fxJljYlNFAN6IsRGdqNPHBfwUt0n4RojNSb6TuO0hgIb8lNO72SqJR4TddDr0Fha5jMyrNt400556vW5uX0WGOUQC_yuKu1F-m51Cvop__3Sz_JEPm_PUK4IiAFLmuFTve7qWZLy3aMk9DDEHPUC2sv5uDoVXIIlA7vjhvO8yM5DML0mnXzrMP1RN91J1usiQCEA90bDMvfpX1-npEqFNm0y8q1K46kRMNO6dMMKwrDecYytPFL07AB3uf--DMlO388lytMOH4S_X0rAg7vYo9rxBaa3v1_WdOnuEa5O9_OoSH7ZBkeUTx9NtSj6gFKyJWeZrqqSXmiVEIaU945jykCi-69Q\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6714d9fa42f3b3-00073287','','','2024-10-20 10:22:50','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41213',0,'cd-form-entry','',0),(41214,0,'2024-10-20 10:43:55','0000-00-00 00:00:00','{\"firstname\":\"Rosilene\",\"lastname\":\"Etienne\",\"email\":\"lenyrio@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2QualifiedPTLookalike&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uwp9NsH3smUmoPvVZmDARW8&amp;gclid=EAIaIQobChMI9YG_qeGciQMVOptQBh0zqiUiEAAYASAAEgJmS_D_BwE\",\"recaptcha_token\":\"03AFcWeA6HWXXCuO5fMoWF4A0z-iKZuMRFvcesFRHfhUhEBukqkZusxzbTCG6Brev-_jIPGJZM8DgBjUn885UQYFTnAMW1qay0VeCKXJaHbJBrVGy72y1OAESkabrH5S13vwZk6grmyjg3mWTerV1n7GFwpBMCUgCg83EPfH1iGx1EVBATaznCLX0XUkSSy5a2ysBTAsdmiTm9dfeVMPlEC4-nYpfbrG2HA7MZQx826kfmd1XggDG4E2XNXY1YTOfk77qahT083UP_-_SA5yTBwsQULvq-hDCY5nfQyaUdsHkUURbVPQMpkI6YhJdaPSbFLMqDc-6fYzoWsRTHXffL71Ua7CxCblJ1Y0brLFUMkK3jGSaUL6JEXJ_eBLgdt7Fnf7gujlMcHty5kSfUZFzIJv4UEYvqUK1GRCZwBTpvGKUxgmSMS0yaEr055Gir5BSnQKzN-CuD4iHVW3tcsGo0D1hK72s9QFTzWEsrgnhjPVEkvS5OIZc2lwdvz-JRTuXhtey7MRHgAuEJg1DAsfOMZzgn8cG8-yMENIxk3_q6fanSNU-DyOetxNFmgbFf01r53XTyOPGO-aKvdPNpp046Dw0mEgSYE5XTOI6GzW3JM_YfRKCUhmCkxv8lV3hJ0JKMpK_75bZ7Z6MbgW29DIbx7ZRloTF5EMNgUAswzaluvBfyaSFyKaT4tey2Qwx1ixU1SJReO8WHO-sNB5Iq_0__ZweRrvj-N5GrJ3tseBQze4pzVZ0w5vvRjJBQXTle17hzTdLDlvik-f72pLTDSy2CaC36uxI84NpiYqsTjZy0lszPKE1tEtThIuciSjTx_0rgpjMBdNQJ3qhS6z3E34oEOBTWX6lEZ62xqprCZqwUmwW0migSPOMurB_kiHA4Tzx5recQNWv3aH898_DzPcPcG-czcysf8FkSres43sP4gVRo5zqj2E3PlsCUHBeSZGqueeJdqvM5js3noeR6GauUUpRXHPwQrzzU47dRMWCCT8p4dCEVbOheSc3m6jxp3u5xDCb3y_vu1CYFuc2PGEm8CIUQn4Hvt9yT5uQNrjpVyxyN4SKLjgFpGbfpY6-ptzxC9nYTZ91Ad2kDDT6OrRqhxtXcERLaTvbKeyhwzujLDoEu6u5kq9yB98cW3Kog6sMR5tMwoOxPU5LBI84YZmHd_lpawfS3itDzisWUIkl-2czUHsJDPoiLgdSdTtZEgakBZ-PIxeuocgtnMvJpshc8E4FR-bW7Quj0v69KekIJ40J8JfqoyYdViP1LfyNcgAul_Ifg1sKn2fMBsZ7Sqhm4KD0YMyS6SVXrq9vjxkKo5fvTAI8QPTHrugCofsAmtgCc4n8wzOeBqf_pOE2AwdaDys70H6VxqsFDr8KNN5-Xl1Ay7zr45qxkcbpA_lut-j1avIQjyfO0t3x58wBnpy7jcDzV5-x2tlrF7rSmzQy4HzEfb2Z4ifWGKO9Adg49DSk85enyeLcNslsrXqLZqcTZrV0MdbwMwZs_XFFEhrC2lr_lhfk8SUO29l8Znku3b4kLXRPAkXTfXUbeDksvrnmzEb-bN5hVyQYikC_WsdyMLe6xHWJTDMO4o0QSTM9f5tTXNcN2DpIdAJbDNYSP2BdvJ_SlBzHcuQP8OrC0ZHJzmZ4df3hkFeX1Gg_HXKz4rLcpyrrikyXjfMCIhl3QnrB4ezClKVfi5GQmYRcBTtnW_3_kGB0yZQjKle6F8LOqzuqPuAhlskLqDNL0YeIYiCvrrA2PTbzGyKkH_y2KFCDqH_ZqX8FSW567-cwuaXCN6kTApWBuZX9bJplEzu0tfqglBK9eJNTeuxiqS5MQRhBvJtb5NxbiFlwVp7hMlO0aRgZuLdw9uwyh9y7xdhwbn37fBwib4ArP8U8MG0TMczINfdt8F7RqpcU-llHAbD-XutqK88JIwlB-r3v71XDrmEDzIO-n7fZnOi7weSsDF8ms7BmewgfjmMwrKVTBDYr7_swSjs7bSQnESyr1A5FsV3O9Y7EGKlqpxbylkVKpnlXSxtLx6_WWnuYc10w\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6714deeb4db4a5-45316950','','','2024-10-20 10:43:55','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41214',0,'cd-form-entry','',0),(41215,0,'2024-10-20 11:16:56','0000-00-00 00:00:00','{\"firstname\":\"Leny\",\"lastname\":\"Etienne\",\"email\":\"lenyrio@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2QualifiedPTLookalike&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uwp9NsH3smUmoPvVZmDARW8&amp;gclid=EAIaIQobChMI9YG_qeGciQMVOptQBh0zqiUiEAAYASAAEgJmS_D_BwE\",\"recaptcha_token\":\"03AFcWeA4RqagNh4ZvTnItNmUtfFmv0sJLYZ_kNCozDbUWkmGQAQ7yldu3PxYuW8_4KFhk1kRtXN5NkeI0S59Rm9Drj9bWZOVGOYA6nPUz3UTJ1kTX_H6QKHtHUZaUK3K8f5PK3Z86wsY60Z2YgmEku-2SmKqpA4R8waYPS_KwEok6gowbzwttzq8HDcT6jIlz4z_ovQIl5d-b00bAP_UsYJVkAoME_-RO99SOUdSWqEQ1q_fIFOGofPxiO3sHQWu7yEL7iU38L1uT5LftRM24-RYGJ8svFTMNatOOZnK3uUObHwmm_LVzG2yJ_h0SjDCSojsmwGUU1p--_rCvAlop5uIP3hXtSHHn193u8pQgEEKRgcyOnYWj8Ozn5DdN7ZDsKRhY_yotaHVjWE2bHgPICjh-7WORonIAXiCz9fzFty5utDeHerFoworAdH5Kzz687T4vGnWQwJInjffBIt8Hm8qXCWdZy6El41XScVkKoS6-nAK1kjMS8uULp77L9x0uOcDkrzJm--628JDD5Nx07WZY_vdH3xKa0Q7LDHEHmqzlOanbZF1MLHl9M1lGJ3ZdgfCd_50JEC3Ltpb0K1ToWu9PsOP8LtnIHIOKfOowUQ3SY8e9jLtVKdv7YJNvPrIoX4iUEkxjemcO9ubWYFKfXjl_OQk7GcTNenJe84L0kr48Sm2mHmPMe-mPU3jW-0W-JuCbZpplNy9uUXlz3pfhtdn9xTJ5CUuCUttaJyOeJ1VBFEc6QQGmfxVOeZXT_1rXoiEM3ib2dpO3CHYF1uzYvV76vP9m8zcZXnJxkRMsI7Liw2hWfzePACOTD-uoIUfhkZRlvIyq-vYAzKbMGbGonyulp7lDkyJeYRHitviQYd_bms-hZqV5-JIEXdsUR1e8QfFSLFjNoUKfZpcgm4gMOGHe7Utb6B_8FzstNWBB74rtFIn18HOD8DJjGLGUwwo2BiSLCHBBIe76b86c5uAXZ5qB4PdHkVHziwTvuEP3Xlu1WR3MGAvZ2UkH1YhI1jWhxO9fwTBx9PhWzXSKLFENRVEzQrqQK_KMwniemZobPJqR6t3l_fDCONa6FfXPH8ZiuUkSSYHI2ZGuVp5qbBhw3JKZkYyPWWD1HRclKiW3yLgc0UTewnQdAXuQyhzdz3rfGi1vPz8_44maXexmfuzeOsA-CmpetgRFAE_EmJo7054TNczqsEggEnlIWVudD4QCmpqGAoisPSMdSbMW3pyKYvx9ysuV1eGxuq5KQ2TgvoqCAgg9TksU3SAiWxFyiyj_wjAgyxz_IAv9GGXvjQqqpeN7ej4OcP96nAxZYJZWRKTfAPshHrndL2uwGAELsStZJOC3VuCHFuZIBXugJ6DrPdwlHNTip_F5lb3lT0hcrC_XjrWzXWM5JdEjrbLE8mA8idiOjfxCWv4H8CVZ8KhrRbbJzuQ8wKPxcaJIb9SxYCy8oh0fFP2qVhrUFzsGv6H8czAZSo54xBOJcRuK6hl7EFYBdqb_E1AIqehHgEuZOUNl4KLts8RVjxhNfNxLMN_KrEyBTMlVOw9PGyAUIpW49d4Xl4ewIBed1EN8ccT3SbQ8KUz0RQjTVqhymHUiFbtkCqs12GTVzUCawTF-MlC8rRPdEwlNMB4FfbJQGXDmZ4L_Dh8D8G6g4O89CJAZ1OiaGuwdM54ireJInH5Zs_00RHSolrhgwVJiKAn7yrvQPIhJP5ZRqHAuoNcrC4Je2CLpKe3rtToeVmzZSipJevgwsHafp1cy04KLaJBaiObyG1g5Ym1Sq_4-m8ldyGk8Z4xmNGS1ah_KqfO2pS9sfCRR41GjqmGYf_A685GEdAwQ-6iZLg-M-MFXk7UKtWkh9IOvB_nbXxqqPUEImzBiMc-zT2OXheMUHCTSfN0vu4TmefwEvvaLNKpsO3tLBYSCLo0Cxgq1tsf_QrhtWkk37yAB6UvSYwo1Jj1SouS-XkibdMw84S44z9Zhayt-iAgf-Xzx-ZJHqoBo4yXvH5mIdjM36TpuNh7CuwobuLNzK6uxtBJoDtBKHaz7XdE\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6714e6a8391ca3-22821545','','','2024-10-20 11:16:56','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41215',0,'cd-form-entry','',0),(41216,0,'2024-10-20 13:33:43','0000-00-00 00:00:00','{\"firstname\":\"Ronan\",\"lastname\":\"Moloney\",\"email\":\"ronanmoloney20032003@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2QualifiedPTLookalike&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw1NK4BhAwEiwAVUHPUNUVXcuifsSp7xru3m_1XdxicTdS6W7Zo80NmcfkzgA4IjI4CZkY2xoCrisQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6ChIQXqkDAJX5U5Z-bPq4fQ_F1oLAAqyiDXXa0JP1tIZ1rdOwz4OQhPz8Xqs9xbAsnmu1BoWLmOn68sXNIQMxUUD7R6EwqPm1ITvkcrAYVXyLBJgxUbR53TMzgfD0ka8NDDA5OczlAnooV4suUD363sDLuZ7siZPUralbJnMHDaiGTMp0464oHjqNdjddUM2T7onAWiJ4k3kSwZ818oI1cPXv3D2wyfQSomTlbbIyOEaOKVD_L8Lq4liW1Jwey_XnC7CDev4lmCcoC6fFj0ZRgf0kV01vNd_zAgarDXmQ2Y3gmL0kBsxy0lSRy-jM-pua_zXorLkWLJ_cDr50MVxjVDEv1_vWHQInx3za6HMcfsqGkktxM3-KM4b2fmRopgcGCkZBHM3tOC1xHEWwhdeysPryAb7GmcvD9jR7TmlF223t_GTqaLM88Hg6zAlGGopeN_hEhzCEpkVQvV_uotDpaSb--fL-OY7Us14RM7cH3bwctj5FP6CQLBU86PNMXsMf_hPhk0yM5kYstvhJFqHMKZw9jTuNJBVodzgSbutDx7d_S3g27Wlu7RRau33kcKjp7D5gjA7uGQA8LDpHpr57g_zCGIKZ_6Zmyc3W4wUa7bG2Dt06-nSyGjIQuyovrLwPCr_6hKD5rGK4tAOl-0ogJ09eoSAxDt9AIkNLTQ6zSKRFwUaIQ7fNpoh3OLE5cchwHfuX9n_4Z283kZiyKhpiQwpjnVlPdV45XpopmIMdzi4yIPmuEvBKJWrXNwLMf8YhNrFB4rY4u-5doFKnLufagtM-FZ2UMNAweS8-1FX-NAHUBIdgjs5OP2KqD_Nj9-HQwSYlFY7N5tYZw1G7fvFAWXdjYaCdTGYhpeOzvajdmqPuk3lA3e6oa3tLqaX6xJRvyKOWuql96hblTBKMc6s_WUmZovy_pBEuJ_yL4Z67hRpL-RaS-HsIVxwlNiV9FqifReDo0H1aqySRnVvhG5HXaS_CGdPUSPfs3rFBzGXCpgfAQW07kSORsSZWiPBRlHb4qqDdntPOFjj85XbhLbsqJrM_RLlmCs9dJwgXwD70VFEolyQbqeTEEFKwaU7fKF7_UIoadTgigCk4eqTUMVW8YB_z4AppTyVUdn5vc7_hXfxZxhEbbGUPMy5KHBilGyF76Uw7tcSutrFB-DbZ63Ieigs0SwSf8a4QsHl13QqgRsnGqNSiKnJvwDvuI8hI11SqMBNAoYu4HE3txTTK3wzO2Uobe9GqPM_BiCYZN8h-QOOgNNAhAHOy7yh_MSiWqi0NJWXvaqKqoYbKvePTiz9Y6gUi0nwyet9vrdqkLvpe5INtW-9HKfo95GIb_ebnYqxY7p_M-Wq3-enHb0NNgs8TfEzbcI2n8_mZz_whcpBLsmVPcgAMgtsW33Q0cH5aay_jpSWSI8ky6ZwHTg1-1_pRPfKMn1l7Kfy5XumyAUEFhJKQo2kDBkNnZua2AtVW87GKzNb4ciEFepewdKDIlGT1idmQB_qJiptChL2r0FW48YPjQmc3sZ_CnVUpvMnb6wPQ5z1qQTdIJullZKNQlyfnasmbZhfjQJhSUuoJwPFBARteODT4U3rjYrXg9m7bQpRpWQGWlS8VIrOcrSlXVaW_Su7X6JBYkDqCMJUm4owqREgpDDJKga9s-txJPmWRdvgaWbm0FAtSxLz-DIipQXuX_h_MrJNsPEGpNX6eiMWxLov3llOkK-5ZjUnQf9FWGvMew9AjS-FB-8_Vg_aQXCuyK51QBwXfr-Str4qx_gXNeAGBPGhCWFQ2k4DT3v_CLEOT_gdvCScSRNoNT4BhgqAFe3vVQxp1FyXq8w-LsbyN36MD_RQ6teIKHT5QudE-x_O_mr3w1NpETNH1ZLnRK7NlXVD7WM6Zj7uguGIG63WXYAlbPYK6CoYmSmA2gq_3GbilHXJB6VFcoyZ3wOz5V60GF-rJw6g\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-671506af621622-74287661','','','2024-10-20 13:33:43','2024-10-20 13:33:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41216',0,'cd-form-entry','',0),(41217,0,'2024-10-20 15:30:31','0000-00-00 00:00:00','{\"firstname\":\"Rizwan\",\"lastname\":\"Arif\",\"email\":\"rizwanbhimber42@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw1NK4BhAwEiwAVUHPUE9vKAx7TLPGB0C690bjK3TnZ2SuCvmRqwWt0vkely82HYj3srsuSBoCiBkQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5-diAdUEGL1i9IJ1Rx71uK7Y97N2yqBjgiBO0zY19wnkHQOfddjM-NwNNS_MLA5HfYBs6m47Ing1-8glPXIDVQ5GKhl7mr3fw-fp54YOilqkuUoVdMGu56q_YqkrGbwx-7drYCTQidP_oUlO3ylpe6l6Cy0M_MVWgGXl8kImI5JvEGC8ftVAN2jZ_FSmQakuHGqk1iyTddaOKjNQszGU2_IH4mH2fZSsN0hD2R8yS6TX8wm7kvI1hV2HDc5qNFFZAtsUubeLrVtFPZKz4RkjDOBharRGU7fzBYmdRQgXrZfW38Udml4m4VT9UMymjmLXpKqJJ2d3tNuKOqkSIayVfoJ7ug0sHGNMPFogONGJKamb6uGt-P49JiHE-sD31FG-GGqqtGqUDd59bGIAkXqhsKtMEeBwIh3lyXFtID4QrURpZi1a8_NrjBYQC_-VtKljHaCGgYHqETmGwHu9I6WikXSAZ8a6jfXf3B9TEIQ7Wab5BXQFAQlN78q7MCxn1HmI6uvjNu-W1BxIXb4gfqbi_iatn79hE3yO0-BNrDb42z8kxRnyJmIhZShjngdjA5NiXdt7Jwup0uhqeQwWjMUDpRsHr9MTrwb2KkJ4D9-7unGAfuh9l6ozlbtbodCZMyEWioEyW34UfYfGnSba37PVvkXudInnxytvo4Flw9S02aQ8TLLx7l2Fpl9HqY9cOYHmGr9rYD3FgQB8VEZV6DW4EjsXyKEGMlLMrfJ6SWZDGx_VE10eNc9RlPLJlAPyzACQOn6vLVhgcuSKNjOG_5JhPchA9HlWVv6hPq2Qa7nSnFDF-oZIWDZ4LdOrrE1R1Lq_Ix6z0hK1IYm138eZiYS3mdSrr8ge9V62vRnfYlWwqnmocbjwU4v9WzbCm4wS1IHPCE84UbbfWLkLyouQGdaPTox-K2905JZ62YB2qSer3qcbk-nmKQ4oMTyijer0jb2EYT2QbJe6vu-n866x9H6s8ulCR-LdAVALXCIOg87yT7BKnzzECBo9XMSwzz55kVT-HoLLNOj_11F3wrBuBUaz_70RbPabOMTv6JixIZleVb8nhAtpAdLCkzuMJTnlX7z9k_EwomiitubC_CZIkQGqAdy8bRtyrkF618DTA3Ov7ZVuBVi3bEphX7yjgA1mDtuEtXDPp9ebAU2Zbp5sGRI5fEAlrQeaGYsU-vjkis0h3QVy9eAQjDHvCbH5TI1ssACk_zgJ4q9iUJ-I598vzwY8uLy0LDBn5-_ll-3BZKmvWwVS1nxG_x5x7zRBGphsHHDqJU4GiSa8UBPS1_1QrR_h49L39bukRoJhOPDkDwOzA6ri8lf8vX1kxtkPw3x411K9mWc5xS8xXXvvRoZ3qH1Gq5KdF-NcbCHmLLJ1ffFExvsaY7FmMFhHB4HrmfjCzaSzc2EQUh-e3UhXYto5MYFus32Ep8w40nN8Pf_MKHiFT5sS4cc4cf2ieVvnrH9C3jzyE4E3Mt8VAiW1puc5PtLuBrQ05zN6495iT7y4jYo52G8VIFGr13a-REhCUXA37LeYxsfIsQjNTDicx-57cNy5JgQiPQKo9XBdvX63ZWaBaUxRF3Jo7elJhbM7Er_gy7j9qax3A6miemI_euSVjPFuVJ0DxEs6pokFI-1o3xcD4Nnyn_LAl7pVJtQJgpmXdLoH0KL_jn9NibO5_mza2yqwC7JLCpKiDSh1Iqvb0gjQivy1ih8IgwcpxGxLSH6NJLN-8JMvA8Qm9hI10qHQuP1jWKVaV5B8lHm8Z1Nc9GaD-1B_qHw_CmnD2Tr-rVuOW-_9qK3kBdmFRKEMRxB9QIZWkWilln_PVaZf4nQKbRqNhLOGcbz3Kc7tKGyt0-fF08I9EEQtACIshINwLO-UEqKTHDQvfefulmige0b8XflseERhHtkdGnm9dq6K7U8DRVIn8Gg-HeA1prKvS_iShBNESBObvjuQ\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-671521ffdb5c23-80881130','','','2024-10-20 15:30:31','2024-10-20 15:30:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41217',0,'cd-form-entry','',0),(41218,0,'2024-10-21 05:25:40','0000-00-00 00:00:00','{\"firstname\":\"Milan\",\"lastname\":\"Petrovic\",\"email\":\"milanpetrovic2207@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw1NK4BhAwEiwAVUHPUGYtTIlTIoa9X3jTwWZMeV8eBmrFtSazX-PmeVmaPUcew9s_-a_5dxoCfaEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6LPJqPVLHMEKmXFpl-RFqXc99IEy1fkFUS91RQQ2Fa75aiTSG1jLve3pZDkN5u8M-atk5ZyTGpzkX7BbSwVkUHp49BwaOpwUfsAurhjwhRLQlnUuRKuJp_TQu04bQfVlHmvWEV2A2gR_BlFTEh86rUKyzRxzyh3MfcbD7InYh-z_D_E8RWcmOm5QHuxp54vg-OmMXRrfKtkWishgC3aeXcQDz6r70qj2T3pbillWWkAuy8ZnVh9K78-hK4ATeiZu_X8RlqQsh3vK3cpW3SkTrYdiFdfP9R7-L7pplCVh4HKmMXsfGTmIhSz_QEeGYOI2W0pyFJSMfiYM7cTwHgpf5ABFb22b0qOM-G0yQqG5w8UT6f5ppa3Sall4AhgcsqvHiPqYqXtPHMlUs3etSko5-NomBDG3FGiGi27toueEH2ymfhI0LajZmLZwQEtVTLZfv7jd0eK-9th-GO3VSd6fVf-A98aSwdHFuCTV0gDDl13JGLTQ-dwj1_4roVi5RGwBtNJHfDPycf1VS3gBO2cKzbc_pobHWkGfVTWPyqMpnZDBBnvutuAgRvyp305pCOZVZLSqioTtfwBal1z5GybAFTopojUJq1sgBgSBxMUiTjv_cRpIF8jSSWylUJydSzRQ-oRxABcVzrHjnEpTm_iYQOFFF_ThfRz5lzxUmTbyENUo6FIQxz1B9I20Z7tProey2PHS_zXQQWyO0XMifsjBEy676QVtDW1nLJCX0gtJM7xjjZtlZ_ARhyItfZ4Y9w0lnK53XLVczloeDQr4ddqgyt700ewwJtNFdRSvqY3poOBP5ftnJa-UwSgVJyu_NbIEaaTZDKK4piIh9uF8_pc3Cl36co6wD7xCT-w2KRZ6j2DQX93Qfu3qe15TiKLnmrmwekrzqZLCYr7gzvc2C2xIHvvtKX3s3e_l1M-2OMaToZH8rbIcwN4WkBGW05iCgVZ7wSz7YLhJsfDndAZaPqdLBaHhb3_5k6mixq4rjegFcDDBXHF-zii5KPlh6ashFMCYPgrO7WRDbpHxrV_A8WmRhQ534XKN--MLX7cNj-3IsrSzFgcEe9uZx3lytK_CEntX_DdWt7gclydgMoS-A74L__jQi0_A67wl7Iq9KgnQRBzbFQdmXrkaGK-Yxkynfu1yZD0bLkyuQ1Lg0mlcx-YMZ-3igYQbMKaDfMIbrmpb85XwImu6jicEdgkJhpzTUz9Cg0PqzC79NmMnq7xOjmqaNdOt0w26pusetaUUGmOgxmGmuWjakILTu6XpKphdudb739Hd8n_3pbtvprDIuA64w6AMdKDvT-yTquKXeATQdcU0ThPPqsgQN5rTsjmBznvmIdg0UH4k5OOXrXtsdJ1g1O_hZNXf2ToNYvK-DHh_yOJmFVPPLGexL1nSdmWagQe30SaeYUAyBe9WT-49w_uL6dYICfARZvwUQYNO7AEN6oyXKszMxv1IhV4y_AtW4B8vXYvc-uEcZ5vP8f2uT4r_J5A9EOHrLiDoX3D7VJ0PTijiNM_L_Yqqh4nleOqzfNJ_kMRKOxLw5gGmzdqqtjVuca-gZ26BBhhRtKF9Larzg80IareIj8P1zdG9UZEmqzX3UZ-xpYmc5GbprxLJN8cl-UWgiX_ETVJmK5lx5nmFXLuEjqOrAGsEQuhU3tpas5O0U2-P9uVB09CRs4QTUVmAv2mNlgKbZSszQS3bKSeldzwy5wYoZ7MAEkiuHpf_tFg7nsfwDs3jWP4Yz8F09s5Oa4bl8GhC9jcmnUfKpB47UWtN7y4Z9jiJ4-Gy0M7SFtrxGZHXBkCLVHpi-uEss_XLxdgtflzp0g5lenbSEGYuKYtSNFpb9mPZcKAOGBKr24lU7z2WvlLBrvpZ7Cg0wnymTepIOHJma-1ibeBLCtX_mhKUWatFyMae0vEgWcrQSDsT7osCwESo34qTf5uv6hRRNCCXXZXRd7tsDFUMmvuI2omjFQMQZzrspDT1eOejFv6Bw54yRnidL5GvK-7ex1agcEnwEyZ1uja2RqjsSluyouIzekVV66XReOmw_Ua0QVaQTFdn7ZpSCrrQsYubq0h_pMTbGaEz6UQza1SsIr-BC0fE03YR55AqAaMkzccNN7TrZS19HLUsRYlK0r2BA6zSPUB78PeHlXacvjhsHHV0wpvI8ZHdU\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6715e5d4771ba2-03888192','','','2024-10-21 05:25:40','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41218',0,'cd-form-entry','',0),(41219,3,'2024-10-21 09:59:27','2024-10-21 09:59:27','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-21 09:59:27','2024-10-21 09:59:27','',41179,'https://biomechanicseducation.com/?p=41219',0,'revision','',0),(41221,0,'2024-10-21 11:54:22','2024-10-21 11:54:22','{\"firstname\":\"Owen\",\"lastname\":\"Harradine\",\"email\":\"owen96harradine@gmail.com\",\"contactnumber\":\"07860275187\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6lXdlHRx7vkK1W-Zvho-mRoQBoHyqcAayDq8Xc6IuZLIDQj6PKi3gy4PcHDRVGpd95h6HBLS1amOCBwDBSxSIeB9fT1Up_ok08jP9oN6EK_JTpJsdeiyL9eLzXjX1mFSp22trZtVuUcGgqGV6e54aDGfdRJRMgUf55Arm7zpRpS0ePV2-JhwzJ3zMlRgK6W8MFXknLFMbI38sezj73bhLOK5Sz2uz6WgUNUD6tcCuJU_Ruls-vSNwjgPEZotl_DiQgpiKy05UolCeMQ3Xk0-B-pQhQGm10U7OlfVxEWIJaPTsNHffnbD5c4j__Lx9EAOZFesKsQd1ZhbcSsHbThQr1SWLeR3zaMfadmLL85NeWMHXlnUEpbDGqNd9Q1cGB_TBUoAR8nrIf8ad-scRnpB9U5UMduWRU3f81WT8JsMf-987jr3UQhY61YU0ByuaAdu-K9MQtGzFiZ-3X-kxjBV8gQvdaSo6NZdbLhE9HdsGgRZvgQUSH8wRxqjdGlOJ-LcGcGCfl0QnlIFdwb3_u5dv-5MBDkRVvqErPUja6ZWU5fF4cHRHgz8OiI0zvqXZ7BTaGj5du8L-Fx-8agjWwznbBWqvYEhWv8dc0zFc4dRCXabTEa7ZosUxc86hx5jKFI9uvDAZEfsvmKXEZoLD0tbmBwfrZOFavN-wP-qRJS7tHb4BlajB9R9W_4coDGTyEROw5Y10Cb-QD7ZUZwdDDbkXQlYARGleITW4ZshImjjai8aeg_OoKqhPkkJZCiSSgiDuqFP9IiCBxOxaCkzGrCoupQRhn8ZW9pq2Vr2kx1uCMHpCEHbQdxbxPusx3sG63iHguk6kSA5q8b17r6F1LgMQMe8JjNT9630kpxQBrplPnFBeGYovvV9iMqcNLfEzz0xyrvZeqARxaCE_cYYQD_1cvBgIn4hClSSqdVF39MIdFDPeHU1JDbzczHUniZYmTFRt0OPwvRHXLQJg95Q8ItQ3XbVdzegNEFi4dopVojBKumkdxQwegGIE0ESOcwYB-mBj4jiCAFM-3PWya9scGz34ayGnrxOp_ov7W5sxN4l05Ky9drFXci0882v0kKbcOLJ1J1Ia76cvSkzjTiJimCfk4gVa2SGjht8Bfdg3H6q3GeaFe-qhwO2ciSytz2tBriZUW5N7oHgmjIIqv1aGQ5EwPjIN4Ism02P8JF4QdKhPh1LeN19XiDKnglJ0dVebRYqdyIv9s6PTDeyIhhBzxIdB4jlhPIrmAKNOzeoZYeODtx1hXEhZYI_5l1FF7UgILKpki6jROsRzfDHY51ve9P8RZOFCWOzrVS-9u8at2JjmQdIXlOEFXHgZOvnp7YgLQSDm2Yv3ZmfPox_z3gw1y5C4Y-9aMB1fUKIPvCeyAXpdyqIzdSZjwY3wd6iGX5ni3u0VWleKkvkfa9wQV62qdYSWT_wWqEc4uKQ8kGPY2MNpcUTT9topidWYBjxu9-jteVjdd6ahPkGYTVcZxlrRAd8VE5DhlG6OWwuW2di3pYHSitQFeNboN7Ll4-R0wfzyzNf97zOwotNLD_pgxIGq0ZztSeYBlVhvkdEF7KgkVQ6bZeAN4F38YMDk3q4GfsE-Xg7Dsal-yJyS-rgj1QIQgFS36ziwpqTbb54S9bUEWaIXgMedX4uScYbVEaaGW4giKGIdLflmijVsx0YgSFAiXk_V0ZeofJMe8mvapBsttBIOXRRtKcR-NKV3aNDRVUY4G9DTwCK0J2xAenTWFCO4zVSb0N9dNBSZbwPUjCKIKrluZGB94-b9qMJ8SCotR03QrS3gGl8IThbGMrt2RjNEvTRhVA4vgtPprrl_aqQp8c_s-GZOYXQVrS9MijI6F5x23xuQ2P7FqoQ7H01_7npBrSYKKTDGLXpwI29AEeIc2vgWkz42vP9vUskjMFtmkUaTU85wtePHFYsYQ6mou4soJVMXufxltAWnGvdJzFiwpVw6O6VkcCoA9cWlGdJr-muRy1BZD5xhUEHVXhgoMpEwQ0JYhFbTRknly9osh5gDRhAqIjs78iB1LKl7SmlQVskBcd92RnRONVIwPF6RvbjApndx64L5OAR9XyPEy2FFwVClBf5XnhDXdZAcKNNKdMO5ZnrRSkR1oDmP4Fbwo6MGv4nNoRS_Vg1OKGhgXVLb4hs6I9brus0EfZUllCdNlIip8bRQiTpg44mJbAK47cK2qa9wVWc2GdeoDUgT2LZcbTQAa3ddV-LhrpgOsdSICiR7QyAFjNizpJhdDr9_OsdU41XZaUGzpFLRz78OK6iUIHo8ow_Ck0LIyVlLwP6npI9DT2ww0r5QN\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67164077a18b58-28064251','','','2024-10-21 11:54:22','2024-10-21 11:54:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41221',0,'cd-form-entry','',0),(41222,0,'2024-10-21 11:55:46','2024-10-21 11:55:46','{\"email\":\"owen96harradine@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"W7 2PB\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5wurW8X8A0u9lcDzd05ItkkUvagD42ej0oQ5QrfNzgbNiBeukKLGmis8mwk4Tvh5c89xhxwmh3s8-JkL4BJu90ktSincjJY38QXJjx42-hKYe-ja5Nqa8l3qPWplmkPV5aJvqSn1A0m-BGzKXkqaqekRFLNt1GuleucgBC3bjcM28Ag1WDDGn-FZZDUz_CJiKWhoPlU_3045uTmaf8G_z0qIClT7G1Pak43KG51SxGT0jCOy8k4il6oPoF0glHMcy91fWVHyly2Kle9M-HoBbZLBJuE2kNHuDkv1VpG6gfoClASjHd4pPrWCGWBlPqzhjMiGsVycBBaENscmntt7aIA3iQSJr1ue6lpi7UQudJ0HGtjSFLoDZGMnlAZwtIOTRAzeGPS4yno3pQgh40rS8OTJrTSQ-YpPX015T5DtHBfwUOau0gqjy8ggiwgZTtGpDWqf8l8xGp9zKjagMk0vzY0PaO8RIOdg_KvRzCYo2xbwHLCKnePEVsRB0ek_DSsI2bgFBvEpn0Miic4wrKlHypDe0ixUCYE-RiWdo3UJd1W9lPm5z7nYv9iW0mBFKQHaxAtTBcUmwsiDvutqgUeKtjnAkF5KzSQm7wkLeRvhaNT74Il0yAmXBlvbdgP5QW1LKTkXOdUjs2RnSJ5CcUDRd3e9G-uL4tL3nuk37bNRaae8_QTNS7pWR0Xd_GJsrbCVu1HAlsibTEMhFexhbWK30OqJsznbWjRytNdQB3OgeGpfYUZADH0gHSK8vtUgO-XB-Vozw_-arrrJzf2Zf2uoMFwg4yc2v-PPYMsi0S6ZWEyqdiC-jPE2arADEnEiy2RDX7XJOx5WMWGR4DmpVsmOMl9EWTsQjm6H1H9jKbghByRFRbrdaW_Uh15vPDxyNQ_xq3Pap9r-pIJPg55qjyYndL0FzwW-YVyD5Zpn1b62fpPGQut3g4IeDQJ8Afoo60pIqm74IMv4fWBlOrENm8XWZ4G1eHYXa7zLljzFuomt94R3lVvjP7ZdjzeNrKIlQbQVrzqLgOIScCckNoFzNijyjrjtJqyyvRuscBPt1JLJuEzFU6h8s1SeIGNebM-6lQGtkPpaBpXpo2gBnAFyjiXtIqIadrc952hyx7KDMhh8Q5U1ghhyyanDA0x8BFgiFPYzAZ7i4RkwTRQNG-WDEEk-dwA44oNH0QAIPLkaUJVr9fcai6d59SO0gS10Zf6d6FWeVG7FDsySsHRBv8GLSECbaGHu8vnr9YwRMTjpzmdNhsktzcb9Rus_SL3XeKuKQBxgVDcUUmXsXk6m80q5pr1MHg1MNwIHS110lNQqwrASzMoF9bD9RbdZ-bLB62YZzMCwVGr65T9zvYLHCW_hayLRX-D-6m7Nv-n7nNUIN0lU95hFY2sEp8ZtEAadQ6mUOvOH3xlEaXPTAQMqD5ilFpAfrOf3kgwOEB5RAyNWeXlZQJvgUz4sTUjHPG4GmofRs8Uol_M0d33rrPNIqbpcSrvtBSc9OO_MJ2NI9ZTWU7oxANjo2bEbpC4MuWiQHo4wPOj3CtM3U9b_W_lxoFfn3u9z1_goApg2JwvZbtvtEHB2tZlGruAAP66WbkbDCXlWcWQnJKEC1KFwleKdIzbBug3o64pfbQpIYX46DSkFjXsQIAQNTqL65_kXGjev3EERdnSjmscClvvygnoyiu5oPbwc7-Jk3jHFW7yF-HaCkcqNj-ychJyhU-PLlM02gXT1MH6HJpFp_IcGQYgeneCM_JnWXm_Jymhf2VlFUIk-1rJgbkou-45TiMetviAyMseqRC_eXVgkABR__pGqeEUbDSajmgOR-qxHh9zUZ9Lw_TieSguj6z5HKK0y1-eDuyOaXRpb-Alfma3LzP-Dg2OppFgbNv0btQCwHyzDtrvI7XTWSJO7R2uWECJe9STGlxYJVuCjAN7TqbVajCMVWfdaQebymW6LV7lpxpumM7S2xm5ms5T4-PapADzRzJPg8VwywnbFi6j4s61s4ocDiis36LQWd6__D8l4r7onYTxwE72_pgy9o9rd8h5ZGxJXMwWHhwyNfepLyq\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671641196f20d8-43493902','','','2024-10-21 11:55:46','2024-10-21 11:55:46','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41222',0,'cd-form-entry','',0),(41223,0,'2024-10-21 14:55:42','2024-10-21 14:55:42','{\"firstname\":\"Christina\",\"lastname\":\"Sauer\",\"email\":\"christinasauerpilates@gmail.com\",\"contactnumber\":\"509-991-4895\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6Z-2-ohp4AzRuvlAVEjbSNZPj-AEeF2JV_sJGVauO-XmN_9STLkzjF95vp5eqjIFgTuWyN9Iw8bRKw3yE2EXosaXEI6qqzlEuJ9D-NGscqRouRvgm7DYTCsgoWd8VulnUjM6kMXybHO2nfOWeLabzWWKIzNmA7xEn6FzmC7KUiPACtLJE6M442EZRh7RYcORUqs98LC4yJdLSGB8TYRSJDxUu9H5kxtqnRWuSkHwBGGJdjzvCskhJBQ7w3tdfCeZBnJ1THvlGhO1-HxTVz3oeRaJB_egUk8EvJxeezDJSXJmf_fXWjz6nXqZnMukXSEtsisAK51uVDA8O4HPWr19zm91eS5dM8WOmI4ZfQZpLOCiaqJVUVAMvuAuhzAuZOH521TlEKBISCoU6G0hTjCw12bU1aIxyEgLW4GO3wBmUI2-ZZ9lDFo6JDtIcpnagSg6upFExMjEcdSyQ9Ol48WojVPLj-dycM-oQR15D0XaMPO8YKatu9kVhde1YQlkcW3-PZXX8FttHv4tNeiY3YpqkQ6bXYaXnxa1KSwtFv-i0M22_IkswD-VB9qg9iXhFbJF8R8Rrpnhal8yyj_VUcTCf1mGStGOoxQPBLAp_n0kMZj3NEdbK6mLakIRdVZo2NGvqV01BjsxqQakBKuHenMZjgsc6PTN902HHKbsgGyZy6OWIAZmkETwim1wDPvUwSDxAid-DOPaIqSY-JcU7kg34qAHTVJhRuP9bymhitDsLptSk0_P3HJI8u49s1zS9ZZg6wsUHxRNOeu4-z1-JcMk1E5h8r9h2dMXcUFAG6R3DQ_y2LbFeSvYA_ZD2ahtgmXYdUYGfFA5g4hjT1Cm4RFh2JIu62vvni1KLa-bsne4BMfI54LncE2y_VO9ogJq_uHdQilqd-ao0kC7LRA1eIDM7Yxv065Aq5GVhQuULbgEf0jrLXJ1uBveYJ5Oy0qIuINELPKYouSWUqZPL5KT9Bt2aBnpC_ekvWnbqu_LKQvHp4Nq8C1Um4T9ITKvxVBQwZ5k-aoPcdqNwg3MvH5o5s11CUvDra12UCTOgaZduYsDoJ2_7dJ3WMexfg86DR3nh9A5ej0I5_O7U9Fy-ZVT6LgbCOjEoxmiNgqB49-fDSnKRn_oNuLRFH-qUWnfGPYQ-EDAp2KBLpH9ay6TdHgVpZaCkJweRSjF7OZ6nHZPTiFM0xp2PO0D3IJVG6nionuVLA80rUvwc-mloyGq6osGT_rZ9VhhpnWkssuI4OeZ-470VtVfRm2Jo5ad8JZMzKBcFkciWGyCdoyZw0aqVzIwenvgLEIKS8IVYS-_ta927CroQf6jo1ulnLakUtnBft4k4_LOHVEZLcuRCJBbvaKHFpfEtt-CVwQwG4O3Oggpoebpl3xuLGl4q4jP3Re3YY9hjVJTPAdouFqfN1Jo89sHMsaPntUFy1lCIpcGEp8bjnFoMk4WIbS-uiBDWGy1Xqp6R1clAhY0UwABr_futlnRK9joyA5FUbA7FGD8_qkJ0hrD00S48l5XdMAEORk5vE6B8dIYJrkB5VAdegtPApbG7GtNxDl9qE0CEJxo3j9ynonBoY9rU4JhqH-MA7tXiSK7Hdo3g-bUuuJ20eG7cAcbkFGM_X6PO-D24Wo-BzSX6QedjnM14WuhKhEV2mgyL0SYQ2rJ3ODlRldgApNcA78Lrsbg0Ujty1-GDn7JjweTZ7-YBmoAzwh-ZPl8DHSNxBuHeK-82yCCsDB-ntftPcvcCkxUCHgEjgCjq8Bg0H1JhYZ2Vw9R4KpwwT1v1msKzSvHREsX-jpZSLnRyYgJ4Um-mhjU3nqPDWKPcENtQRUU5PZjmAfidDR5HYBNWC9t9oWBJLCEJnYbc3IIzKPkC6wrAVIaTIqmR_gP4UGVCAkuxPHPvXsyyf929NM5anDCiFN10deF01P7726UxqKEVXdylRCDZ8aoZRQK1cB2JkCaUSGgReeuDr57qLL8Kn32dL7ifgTSJl7wppOjNKBSjs3pOC__RfQZvhCg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67166b631c6b02-34404103','','','2024-10-21 14:55:42','2024-10-21 14:55:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41223',0,'cd-form-entry','',0),(41224,0,'2024-10-21 14:59:16','2024-10-21 14:59:16','{\"firstname\":\"Krista\",\"lastname\":\"Pettit\",\"email\":\"kristapettit@live.co.uk\",\"contactnumber\":\"07557473500\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2QualifiedPTLookalike&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6umEccguAndgSOyl0__R0dQV&amp;gclid=Cj0KCQjw99e4BhDiARIsAISE7P-mCrmUw-L3rCUnS8uckEj5kp4Ue9xp8U3755VZxvItBdEmTv8-jgoaAtmLEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7ElG-LPKGxV5SxhQdSkgVzoRM8Qh0sLPcp3sz_hiR6GQ5c67VgD2yD6gW9ScIbhlf60pseVJdE178zwCLX9PbPfkbEH2Mo9qtnIR8C9r4ZaeIuOFbHLq1XdKedN9XPwWBHDFOLmcSw0N1KyP1s73GUiAIYBDskAUrGJWd1qdO8LEAzs0k_kCBQ0gacN31lpP98HP14b47sZ81br1QA_3ExbxKMp-yaxzJnKMyLTyU_yMDn_PN9HkETJNf781Xnap2zyQcI6CfUaENPT7VWAcMA27s1xX0t1sdzucEUQk4VDTE1yaZt6CZ1pyKlm1VgfpgOmJMzrKnF9-CX9Ag8cYKT5ztaUUXWVExMIzIJsNCN4AyJ1usBT5SRSM3fKtC94ZV5LMsXjFIySPN9NflCXx3bnl0wIapR1ZsesTH6GUzqaWajKJuRsgbTKxvQTmOOOTfUUha81G7OXQo3jUaNJRazSnoQmc_9RuYeW4iwHXat2b8P4gbd8LvllNmdxoDxpElF635Z8tB3SkUX2lqDdK2GwK3ZtXTkPvNRVQSYzi5wzhCB1FLvPPxQ1-PetsNv5WCIuztYsx_0nBQgFwba0bJ8NfVKzjQxojrtEjUeWU0WZQdvfOfoX8gbOXqWUtfuneJOYoA8px0nXQi2NViAaAGTnL97v1gjzpU_oau4tbchGe7Yn9ANaTgecJwhq84e6ZMSYwgLioS1aIa41-236SBvf-A33wm-Sj_AYVJUurB5c8Kq0X207F9NZnInc6oSS7MXtHq7da-sWvQThV1Eo7KGbRcG_wLwpTz4xZ_WFIlj9jDebPfJSlrXezXxg5hbQZ-f_YIKM4nxENKY1Z-2QNElCAAbCSUQOs31k5pL8CXIzZ2_M2PgoWfQ8MV9D7L6A8AOXViAMssB4-eYSinZdjWRV-B1oJlcdzEAUoRqdvsDMfQxEsi7wnpqscuWM55Q-_rhPEdG5YPNdKAxqVcJRLgXYqYNHIkjXGxiSQS7u8vNVc6Qn0KwVR0X6rE-OA_DdXUjlAU8Yrtr4I7kchwtMSDrmYfFjYGYbWwb-1H9gVNIKxXs-8Ze8BwOZrF5IQj6dHcEwS0B_cF23EDMo7mWaHGZ0lHZjra2dADCFnHFI1mnT479u_oG_7mcGYB5M5teCTNPFEn8ZS6vvEDMgwWwp7cvILEEASsdd8UUkKc2SgUrv91XPqwbwd_ylBQTOjvMLQJs_R4iyH2jX9easZ4rOan7oGmtfVs5eRxIlyWXZgxjm4GQUUk3-GQOKF3Vrj7Uah6ItEoFwkMnmj9JFOqnrY56jOYCYeqE9hJL-Ye3YQ1doWtL-y3x7Lbd6yyqumctszpH9NqKmjysxMvoUYZg5cEGMR4kMo_4-wD6x7vQNlye2P9V2FhKzE1b8TwRFucD-wpdBo4ZBWw176weRYr1DJIbWdUewg7JIzl6IAEGBTOM-Bzvc3zUu_nvUlz4LIK_gP2XhXynHCse75k5mOzDSdMXVlMmITbEkh2KrVGEl06y6O23LLRtuADPYtBOAn6LJUlnbIY-xCV4QDGGo6vN7Ousi29-IU-Af6YNPS2I9S36vLhc68V2gCk-4RfWoxtipM9OYfrcGWV4FXNJpHtsD8KtHYngqzbtk6BxqyebLvEAHCA61waSwDMAalWp7ZwgEKBUlZCJbKx_sGj2wqGQ91vioQZwX7wTfI0zsJ0oW_SSH3EJyQUEOv-F-4A1Ob8ROIsEUbqKu1wji2DK8kk9c_rlqjWtAw4DsBXoKESordvh1B-iLLa8K053Aq21vqMmqeweFsijCpUt8RVtcTceQyCqr1MS-oINOvZgMd7V1wXNBg_4ACBAiplLInTPpBCLZjl6N7t0nM4Irh4TDrbVG9JK7gUpSE3WUJRFTHMwbjTR4EovF8sguQebNYrjY50qZX8B-VgfhDWCd5M9skTUztv6QZVU6CLt6y_Jqj6pamFRXMVfpcO5PHw0xOWje_cYwJTV70uSPGm7NWmA6FNiNsPu6d7pgNj4JJlt1IJa2qg0H9_WQKs6ac9sY-7RV8nuNwuTbr9mNwTVrIQoxHkGIElz9QBeA14kNYS2ENZImmikMnfRdX6HshwvIkOpIqMrE45jPKLPLDOVVXdHchOJOtroRd2CAXChki2Qvl9e1K1Gs5Wi98-LBblzWiwjJkqBr9x72o-IPjEIXV8ZPSSYV03wji9eVhTwkfM0fvyNg_cPBTX-_zd5FDIojnPXfmgwlHK0KH6IICLhifsyZYzr6bi4u5d3Bhgy5IXGsTMuCuhcT-O1ynU\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67166c37974590-06844657','','','2024-10-21 14:59:16','2024-10-21 14:59:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41224',0,'cd-form-entry','',0),(41225,0,'2024-10-22 10:59:12','0000-00-00 00:00:00','{\"firstname\":\"Marie\",\"lastname\":\"Normant\",\"email\":\"marienormant@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2QualifiedPTLookalike&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwmt24BhDPARIsAJFYKk1t383Hj5XpqVHsfK5U55H9MGMPHHqy_TTGbcgK3xuTtovsvJqa9_kaAmlpEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4d-DtLd1VHGuDSv0_8zCRgJiQl5qwd6bnoIBhnWQhV4Hh1TDsHJeAeJOPwMu9gVDAu0oTT7b8alPNeSZ2QYJCpzrsVXeg5-Rkro2OmkO6fHuTNjw8gEoH-fLiqCcKpp-ZdhP3qCSZfbl0Yp1jRsG7Hl7WabvaSoI05DuWHVXJ21evFXhxAPtaBdbop7_wS5xqBsJIDpTRzncDZQI0MHOuaVCBJMFCN0GooNbKnxNgV0LHSYl55W7O2LGORVpIa-SkvOkix77ptFwGFpo1Kw7eKDLJyc1srOwRhuVmgMCvAdA0AyTci743KEs_kaebFH1TjTL5AZMFUrZ_L750eHKXVuTsxjH5t0QJ5BgpwmQu9deY8r21SRirGNNJOX1Y2lGA4k110d69JtO49mWyLFNZ3UJWozQVue5V2wNkZ5Ve7uXL19249pCKjSEjnjL9zyXOL3Q7_l5ErGxhCuGNnXx9-4Cqyu27_J-f7pMX8iJFy0slnNEAMfx_d0Tr-UrbcjCkJpbMS_AHcLsspUlvzht6AboGkP5GQZbTvtPQbAQIYUjiWicm_zwgzpCdc_dOQCwcL5WR87CRri5O6agMfesTjh1lNxuiLguA2ipLuYp39VDbgjQFWQnI6_OPhiXVPVkRP_WJx4EyIJ2skkn6v5fV2SW5RK0szMprfYr72-lqs-KJ9suvKephSSymaRxSilw46T61QUhQmC9P_b6aMwYZilVUlDBXvyU79-YrLqYjeD1JSwjJPAAp0hB0_WiMcHdJ3EELo8N7Qxj1kn1pBqMN1-5Fgs23AFuL-THKcsqaoloFDHu8Wc0iqG-YG_G5TBe8lUwz2kW9_8Lat-F8zONyxwHBZR2IODzbzQoBWCWRD7V8cP0RC-TBOreZtXVk4FtrMiZswqjArd06aggMNGg9cdzx74zgxW0TcxnKoCBbBS_l7SC24Ux3XE3mG1_pQlQ5L6QI4B3J2X2O9eqJhUgcRc084Gg59Mg2449VnqvSoquyLlRxbB1zMacZC7z81ZLvOTKtzACpdt6KviRLatz7_fq7dj2hMLRZcH-YygkYjQYglIvwQ74eiNhSIFlhHAnc-pt6Fi3YEOWBnYK3p3u0kdDfuRAlTkwm9zAmpW3ucIqMKB4rO1ESMM7v44wWaB67pyvAF3cuDzcz_n311y2WbfBMYfklKH2AvIT3k8f_8nqKlEmb88hnFwsIpcsLd7MER9YFWfD1TA3KcU4OGJ2llAxlI-nEXeoUZ5zYf5HaJVDwMhAWIr8kqODewPryOlYjeXbZq2cHf5sOXErPm57-5S0657lZ21PLI3FdUYGXkthHM5Ww5G9QweUxqWims8tuMpTGZ0k1cpKukXcgid5vGXsmyV_sjyR3kLYEL1t0YDxT-gwol-1nmtw9oIhGNua15qPJkGKhNP5dPDpZu4dTMZf5-lyiyxgoMBPdAmkkbPwObtEZzWRZfW3QMnHVQKMtcWLh8VbU9um6YNyQjyy96Pc4vvRsbGrw7G2ztdt_IKU9rihiBZwsTuW9M0ePo0g4RgLIYqm-3JV7N5V6H00fjaBWQ2NgHdVqqgsFb19NSA1QuD4c_RK937oMPUdpv7UZw8kAbpNwJxejSsUTicIzeUc87eJ6mu_L662NiGMt5QSUDXYp4ZP6S_xYJWH2HoQIxJmaKQAYPzfpFetrg-bV9ANK5SlFZu9Js2lnGTdbtkFTlG8D2bh1ABqmogGNFglU-H6JVkspo3DaJ7-Lg6oGD_fvZUcdUAmTSEfWYXmZjWiqpD7UTjsTp2mI-v6W8DRr_2tbSJ78mBqh87wcPXR98AW6G730TleTGraxmyJcFKvgjVr1dGFC0vIVT-kXi8VK1ToqygEo3LIWtYqzKybNiaA6GL5_B0OaEeZkqoUifgmtq-eo\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67178580cc4582-57139744','','','2024-10-22 10:59:12','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41225',0,'cd-form-entry','',0),(41226,0,'2024-10-22 15:34:50','0000-00-00 00:00:00','{\"firstname\":\"Harneen\",\"lastname\":\"Mahal\",\"email\":\"harneen@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/\",\"recaptcha_token\":\"03AFcWeA4kXXUVX6TBV_gEADW3qJ27IvZPsHKIlHYTJcE2l5c5a5GT18T6WHCqC6Na2N3UvJUdKHzzXVXDA_Qiy6db0ZcF6EiyCUycIAB_AR-24J_nob4A6gwtZdYboBorohQPnXwAmzNclgbnNEleFRLX_FIDOlJTuB9Iad3oMVt6HGq4KWPRHs9L7gqe2kKTRmSH3YQ-A6iCrZozmRhLGMMYRm7GWPKJXQQ9o62Np7q04lC4MGRF5jBxqCjKKokaJqpbLYppk3RGOt5IK7_IztnAXO00jO6NjIPji45q00Qpk5HOm0jnmwsNrUkwgI8h6jU58xbqlRW1PKqFIGWXJTL6apYyCfToFcEFfNhmTE8gscxG1HLDaRfNdCkn-EkdDUr70thXNLq3ox4of0_ZAJn2pzNgB4L_ajHaPBwXxLRy8K8Uhr2nWvlO1qar3lsIJ627OwD3cMjpH0QVPPUKkTjLoYFGshgixkGc8iGdrRRzKHsnB4ZKEY_AhhusvqeLlLr7XWZ8Uvr2wxVnbDsw4Mfe7WK9EEHNBI3yp8TNz4zqHbPspJ95SZDpx-4sxMGeixyQ-I_hhjSTZCrjUiQzIxZpC1nA9TPXM-uCBdejzJBwP8cR1yp1mBRRU0hYwA80ZvUMeVp3XyiCOCCJT1aeP_GzuoKTN03sptvs7g6qUMzlxUxC34LqADiJbPEN_fhXv-qcy9t1GqaMQNNfAvMjQWt7G9nws-L8R0Ojry0dw9NXx-UwnfMuHa-Kh3o8pN3ABJtsstFBh86XVFIzfQtvqhUPkk49GoH-NuR3yoApm-EQejELdg1YSWr6xA28wV6RX5KDUAEqyoRM8m0YHoEziNAVY-XGnD0mYISdZyvMab1VcScwXhpQEFHpWUGfZxjxi3LdH6JG6y3i72Q2TWzgdpQ7w-KuOErAqNH3sCD4lxOlnRtCneJjXKweD_oeJAJfFaheF6ZB7cN_qRWP9fi93p_cXOFK4KHof14BlGtRTxO8c54gXMrFVgDTHAmJ9YNyk0_yVZRNZs8LjhpGRMlzJnme8SS1Sux7AB5dRE0aOzNCGak7cWT42fh00ZaXBdytfSzSTCbfMN-ziLi40mM7yewyZ7EoT_cyANsGF9JnMBX-u_DNGL1qr3ytM6cRE-XLXpvkdX4FKAgrS8cfbd95FIS1wZSl3V7aQEV6py0CM6U7ZxLy5oR4DRhCVkz0GOInWLARdkpeso81oeU_97QqZk_vXujNZhxjmzCwnF84Swx4bPkvijgR8Hj4f4xOW_81aGc0Vs4gir8H4DeEBxsZEbbBNocN8H0WuO69zfydilTzZFAfhvNhGFiHE__5HJGPLSnJ-BlGT_vaMNYOe0zNOvgnIrTd91sFrYPiBQysUSgc5MD8CdPw_LB96IqjyRlfiFIHlV0ZUAnwcODAagQCPPi5hZyAnV6osy26LH911KR-lZ4kWzVH2-iN52F9wN6iCeU56lSVI5huwCe47cMMG0T6VOMY66_cqVefCPh9bl5X5kRGz9GVB2iBuzkKpekMzyFEHhJPUhJuaBXA7wJoxKSd_5XL8_K8c57TUKAhQZNUWLLGFo9BDrYymUDzoHyzVN-548QF9vYAA1_wVbDmAvT-a2-5aJgjXFa8um3XyHgzkfzMU9WuGSYLuRoW9xZp2EXuxmIqPD_Qeyd5aq8f0IQixDaHDXcbWNj0DCbzkhWHkosv9kJUkWelp84HB1u65tCzCcJYuQwz2YU5KxlNyezaJcSJTqozC_9AW1OqHhQT4vNOUjBBkBruHxlNpCHhnuxgiqfNG2Ew-AZBDQhCn1sHNXliTdSxhK0KB0aNlHx2k2pFkxwy5Bb6edpO5MPqVvuSnkQi0XHavIifILOk7pdRgwLLkwxX-jXkg9YF-Hm42ieigm9XQEZunnR5YWG3IE5kTIgv6cMbZAhBHku5HY1xtCWIDfxlWohu4eFx_LsFrxdAaLGzYbvFECdAGFStIYL7O3jVf7JwdSX5owMH097I6gp_FqksTOs68uJjKd0h4QNmsSLMwkoassPwSUe83qaBU57YPm7SOswodluGqGQ59RChQA42OmY-Dqlvcjz4paKNI9L-mGJ9ICn4r4-stbjnVkmYIT6dPkHE5hgoZK1l_VhiIrIOqfogoRTCF2mtrvJ6_bQWUYm_rcHYL1_6Ufi_NUZdyEzioCYWnjsr7PLoXzB76H2DCVqm4TK6je5etsRp8B7syZg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6717c61a62d461-96979977','','','2024-10-22 15:34:50','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41226',0,'cd-form-entry','',0),(41228,3,'2024-10-23 12:15:05','2024-10-23 12:15:05','','into to be pilates header image','','inherit','closed','closed','','into-to-be-pilates-header-image','','','2024-10-23 12:15:05','2024-10-23 12:15:05','',40265,'https://biomechanicseducation.com/wp-content/uploads/2024/09/into-to-be-pilates-header-image.jpg',0,'attachment','image/jpeg',0),(41229,3,'2024-10-23 12:26:25','2024-10-23 12:26:25','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-10-23 12:26:25','2024-10-23 12:26:25','',40778,'https://biomechanicseducation.com/?p=41229',0,'revision','',0),(41230,3,'2024-10-23 12:29:21','2024-10-23 12:29:21','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2024-10-23 12:29:21','2024-10-23 12:29:21','',40778,'https://biomechanicseducation.com/?p=41230',0,'revision','',0),(41231,3,'2024-10-23 13:09:30','2024-10-23 13:09:30','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2024-10-23 13:09:30','2024-10-23 13:09:30','',40780,'https://biomechanicseducation.com/?p=41231',0,'revision','',0),(41232,3,'2024-10-23 13:32:09','2024-10-23 13:32:09','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-10-23 13:32:09','2024-10-23 13:32:09','',39245,'https://biomechanicseducation.com/?p=41232',0,'revision','',0),(41233,3,'2024-10-23 14:09:00','2024-10-23 14:09:00','','Biomechanics for Pilates Teachers','','inherit','closed','closed','','40265-revision-v1','','','2024-10-23 14:09:00','2024-10-23 14:09:00','',40265,'https://biomechanicseducation.com/?p=41233',0,'revision','',0),(41235,3,'2024-10-23 14:09:25','2024-10-23 14:09:25','','Biomechanics for Pilates Teachers','','inherit','closed','closed','','40265-revision-v1','','','2024-10-23 14:09:25','2024-10-23 14:09:25','',40265,'https://biomechanicseducation.com/?p=41235',0,'revision','',0),(41237,3,'2024-10-23 14:11:13','2024-10-23 14:11:13','','Biomechanics for Pilates Teachers','','inherit','closed','closed','','40265-revision-v1','','','2024-10-23 14:11:13','2024-10-23 14:11:13','',40265,'https://biomechanicseducation.com/?p=41237',0,'revision','',0),(41238,3,'2024-10-23 14:11:56','2024-10-23 14:11:56','','Biomechanics for Pilates Teachers','','inherit','closed','closed','','40265-revision-v1','','','2024-10-23 14:11:56','2024-10-23 14:11:56','',40265,'https://biomechanicseducation.com/?p=41238',0,'revision','',0),(41239,3,'2024-10-23 14:13:45','2024-10-23 14:13:45','','BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800','','inherit','closed','closed','','biomechanicseducation_workshop_fareham_web-3-1-1200x800','','','2024-10-23 14:13:45','2024-10-23 14:13:45','',40265,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BiomechanicsEducation_Workshop_Fareham_web-3-1-1200x800-1.jpg',0,'attachment','image/jpeg',0),(41240,3,'2024-10-23 14:15:44','2024-10-23 14:15:44','','Biomechanics for Pilates Teachers','','inherit','closed','closed','','40265-revision-v1','','','2024-10-23 14:15:44','2024-10-23 14:15:44','',40265,'https://biomechanicseducation.com/?p=41240',0,'revision','',0),(41241,3,'2024-10-23 14:18:49','2024-10-23 14:18:49','','BiomechanicsEducation_Workshop_Fareham_web-4-400x225','','inherit','closed','closed','','biomechanicseducation_workshop_fareham_web-4-400x225','','','2024-10-23 14:18:49','2024-10-23 14:18:49','',40265,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BiomechanicsEducation_Workshop_Fareham_web-4-400x225-1.webp',0,'attachment','image/webp',0),(41242,3,'2024-10-23 14:19:51','2024-10-23 14:19:51','','fullsizeoutput_540b-900x506','','inherit','closed','closed','','fullsizeoutput_540b-900x506','','','2024-10-23 14:19:51','2024-10-23 14:19:51','',40265,'https://biomechanicseducation.com/wp-content/uploads/2024/10/fullsizeoutput_540b-900x506-1.webp',0,'attachment','image/webp',0),(41243,3,'2024-10-23 14:21:37','2024-10-23 14:21:37','','Biomechanics for Pilates Teachers','','inherit','closed','closed','','40265-revision-v1','','','2024-10-23 14:21:37','2024-10-23 14:21:37','',40265,'https://biomechanicseducation.com/?p=41243',0,'revision','',0),(41245,0,'2024-10-23 14:35:43','0000-00-00 00:00:00','{\"firstname\":\"Alanna\",\"lastname\":\"Oakes\",\"email\":\"alanna.oakes@futurefit.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6asRDBvAOiLzeHSitarnjEmjwEG9WRGgRbQymS_DM7DZ2HACBsb1IYPJY5ivhEpg3W9uiGGnFESjS81yQbjFELHr1w3w2uw9S9exCT2R1PjrolfyUg6XPjlZAqnkcw0ldbfVXhc2wxGShp24ZyokfVvm0q17P0iOuwslKz34uSv9rAyYLYJ5DZurUq28BgaOKOx6_ahsvJXgsNFJJgRctcTghspM-J5Bls82PVT5ZBAnIeZsjmVVBGc0-t0s51-phmcDHn1B_3HVEOpCqBaKB0qHwYYuwIlVNBtFnLSGEO_TIAMiDp510btcCiOsKABFV7kFr3enguA1R1JQNlvMIT3SZTFr-AkXRfpIGhk-U7HEiWtdvxfbKD2iAB2TkKork5RT7DOPX9y7sI9EPg_M3av_NiuxLvgVPo0yOHgpcKmd298guK-BisDH_EU9FEAlRjFMyGZhIS4OekegzFilmaV6i79rJiOVab-SKnjQ0PjDcnhpk2g9A4TwulZTD620FgQrJPCZOQdFCceHBZb8a7QfP-kONpDNB1du7hKO-qKXWHH2UW_zqTKQ58OYBkxAEZUsZ8RxwESTJ_wK4V2CD4a-9vu6k-Z0rWOVUrpvYzrcD_zmRIge4lFpq2nXBOXzhU5sXtbbVPboPqQPNPvK-CdlEDZMsPdrU09jnUS3l9XRq-WBe5wRC2VRguqQgrAuoGivPfR0tEUszLoFewDi4ACLRz-FsfnWgztDG6OYcrNc82lSInsFa0IXWAtvbA-QXG4hSCgBcVH8HeqCRtfCpuNBC_fLRGlOhlmK5opFg6f7craaUKOLzJp9LB6rAIo_D_i5X_DPA51Lm7SmlPBHm0f4I3gHStiVS6zKMMyA8shbHRk1JLmRXvgrdU-c9Amvk2ITObiopEuK9PZEv1AtU9jpQlSyc634mY0c09GrfVFl1KWGg4fj-0mhS_dE_aQUJdWHmRkIG4v1Z6qpqPdZy2KQi0nHLitCQ6fBEy7yYg2StQTZwKz_tVKLzvMQP0ghdSkQplLlD2PgCFjFE0a2flBh7TCmq6FMqgXJDAHAj5TtjFV4-hvIe4NRd7JveYiKMh-KAeiOuSozqSA5nClMm_fJwYbvIm4S-GkhFA2oFxfmjBp6MVylZpSs8bDiDLb503esMlYwcKGueVMLjqanrjKIdosPKhRMw-5oBnR9ttpDU21ajNsdfWzvm1a1DBLqZV2Zd3W5mlIIY_J7f5T5CZhAnXfCmoBWhaY1u7sd77qycxbOLPBEto6P-epgL5W9gwTDz7wBS1oDnlKM1ojJh3DmjR7qXMNFoICVxjdxjEZ9MAmwJDDvHffBMf9bnA4W5wd_ZEk0-oqePdvTveLubz0s73CxsUoQId-mGLd14BVx86NO4GniLE5Dn-05U1qj3ob0goeKxCIlKY4MgpxEXrr9i1V6AS7KHocuUpPIPMwkY0fsZBYvu7954QEWrcC4sX6RJBhj_o_tg1hQuWdNLSnx1cnegzAz7xqRlvFKCAMx1A1yV8LXDa25MGems2fcXk8oLrQWIOF6GWeaen2P6mStYN8EM5z5_TLVQelYoqNuHnHxBmvpZz5nj1b9p1I7DC6HDSWNBvarTei5xDQ8Mu1mvndO8UkwlhLKgXEAIipYpS4fhT_d1JQc34V3AUNar6aDmHYo3f5YvWiw0NW_hgtzbEKR6zwjb_36bzsDS1ej58JKEjN-j0U-hUJZYB5maZHsHkJmarGGWKn6dMZapbuU6eNVRFQ5N3rq53Iz09xb-b2tbzhP5-yYENChRJdZZgRaFwSY7H2hPcAwke60WnhqQwL7_VH0UoMZqWPmCv07fnWSvCi-GL3mHsk3dodpbRUeQcCtkZo_g3ozlRh-o3CZHRZFeVQkvP2ReyNyjqwYhIW5oP3HK2stocpKZHXWPwnP6P\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-671909bf897137-13496993','','','2024-10-23 14:35:43','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41245',0,'cd-form-entry','',0),(41246,0,'2024-10-23 15:36:03','2024-10-23 15:36:03','{\"firstname\":\"Tom\",\"lastname\":\"Hope\",\"email\":\"tomhopeis@hotmail.co.uk\",\"contactnumber\":\"07590000000\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uJQb13aTY6lnFVQNS0_C4dn&amp;gclid=EAIaIQobChMIuMvPiOmkiQMVb5RQBh0XUxKoEAAYASAAEgLPE_D_BwE\",\"recaptcha_token\":\"03AFcWeA7tOlwLKEhWI-igCQXG3HonROSi1Bk8LLh0ifk9GzlaIOeYlbqBP9li38iyU6IC6lMdeIU0fPTFa9DZs1_v7WPy53kEc1X_6Lv6NZcEX65EUvi8qB5JjIHV8Av8vevUHPtH-_zKnYwIGoEFrEEQsWDfNbHpYkVoHLvGUFswqFt0pqYk0v7ZFTlLcQIUX6NwOPmGERSRzhVHwqi686tHePROJd2Yztp7e6htH2F4c6meLjoaHVoZyJkXYDtmPEOeaMB37JDhNyPgl36EAZEpYbi3zYpvvH7F6sh7EEsLYOaAJ-jtptnXqshzcUSrRVkG3bc6IqUYfFwBFngISYMuuFaXhmNLzbLg9kCNT7ZU32xQfnyj3gGiuVdxcKq-ugNcHGuE3ZxQS71BhT0SYIUe0W9GnCQJU-D7Rdd--s22pKEKE6QuLhaXKuAgjJ8Y56Zkh-NvLbLS3f4S61R-6Ivrjesm3Vic8GnNYO7RQlHfRmDC7-3nxFPMVYe4-sSF-XbXGcDkWHeg1DnOmtnB7Q033qJ1O-YdDFUOv89Z0H62VBQr3GKkLkhUwkxuN5P5uh0cwoSAZHHDyyqidt2FhxfR-UDlJxG0-8-fHcqxKcjFGQJtmeIB9A6hBEqV9JfxweOEWux1b8FQJXg4yPnz_wdV-9OGHKbD39bXh9pGUI_gj3sHWXfjZwtAi424HiJO0KPQI5FsNh0p7xHdJsazaHrvoYVzrpOvB3qB7VBj_AzqYsV951bFt0GcJMucH_g0Lc52IC6jrw7qrwU9o1OkjE5En_uq-apcg05C-SVY17S87dLJzoMhZCwU7IZkZB8Pg7bcTUYq6o5Iik6jxiLhGA5eG2goIP-_4Cjbs8yaIVOr7oq9LxcLIRtujvF3V_Npy43uAo7TG_fwWH7lieP8a679cREP0qI8GsbeR0PFchWBHO4J4fXvjb0h9tqD6NygTAxHMACiejbSWFGW-UR8gkUwj5RoCU-twl00Oo9Po7o9oxcH5w1899Lwl3MWO2CRXJNQumAh1EvurZdOEAJ5rQhmTQpJRsvpYkfIs9peJEerCgzEn5__uiHM7m2vIzCDfWO_LsaMGG-xd-4nmx6BCo8_FRo5lxQNxdsHSBU_HI_ZZ_oCpVXWXdKRkhzf2NlZQeJniS_f5E_7Bw7qnDiZSUJx9lF40_-ZGzM34HqjAPXKDQJQjGB1JNkaTlQeQVen5XY5Z_0fFOXy-ltlapOW1M66wPvueAQYOAuOqIka1TXKTK5brMjf3rzWpcx_hNhq12dHGGi4N3VCQprzefogAI_o0x8wIqjHnMhKuoVXcNgLZp0PKUVSvInMv04j7UfakP2-HzJ6O08lA5mH7YXo0HPgEGriFvei72M1pMrMd1IMNHPhUc6SI6_VhpEJaL3Z7Bjs78CEbbkfvtC7ghdkqBqc8aRsRRfYVVfh-iH4bZChV3zjEm4E-HizN6wh3YfQQ6bYjpYATq6LwX0ritNb9cghwUhFGa14_CM_PvHvsTk80x31B3uIPwNr5p4qq1-vqqHuetS3LNJQ1H15lUkrFwvc6WeCnT5imx_G-b5M8Kyn7zT2c3HgQeJcWM2tdGaoXSv_FqJSumUswMm1CuZ63jdikwXjjqsO2Dd5LO-CyeVEOKkR85mHfOoVc0K7rpDahrvaiEEG4vEOjmQlvz68paffbdz7tfK7bssdDCeKSV86r-IHIjORP0ONnXocDtTTPsEOrSGNI3DsdOaA41gRGnpucIne-yQWKMn4Fvkjo3I1EIuVsbCG42AWVNKkXeKl5fTdnu1cO4K120zyJ9bmHO3iBEh_LjCUdDhUs3la61uDIzlLj5Zvs6sjlog_C9mkdIszOWVYdatM5-zQceWzi3iCKew7kpoJ6fZZV-wRQGJICDcYdQgjSQpUZeq-X4mQr3QDhy6G_SCuD74eifK3SrToHpN_5EmIy5XK4UnuguR5Ba-Oj8yGYcPOr2GEf6Ca60rvNcKltRzyzDrUmrm5mNDk6doLFI2NGNHWGn2mlXWH2iJA52o5jVoN2g6fA3rvgqhcS4-nO_rqMzNslJCNJ85eHU47hzz3iQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671917d8b7a876-65088028','','','2024-10-23 15:36:03','2024-10-23 15:36:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41246',0,'cd-form-entry','',0),(41247,0,'2024-10-23 15:39:21','2024-10-23 15:39:21','{\"email\":\"tomhopeis@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"W6\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uJQb13aTY6lnFVQNS0_C4dn&amp;gclid=EAIaIQobChMIuMvPiOmkiQMVb5RQBh0XUxKoEAAYASAAEgLPE_D_BwE\",\"recaptcha_token\":\"03AFcWeA7Y5lvhqE9NJuklS4P2vIU594ZHhIazn9J3_Ed6dHXvSROcQxrMWevL3aD14bxYDK8zVzLY2SbvcQTYjItLPu400aXfVii_SFKZvXv_XjeL_8rXJbnDG25j5LI0po5p6VP26mlNCa3yE_yEOkg8kDADtHfm8qQGgFe1sYBklGWTtreku3QXkPb9FN7rhonKAe_f2d6TgMZoCDPz7qudvVUkFVObPRAR9lwtj6q6h2bjGKXMxfrUOUSngNnF_LNZ9viYyCUcaOV8BEiY2W-j6EGT6Bju1IgSLaazmw3C3cP1Kb6s7OVCu0irAqH-u5r-L8kpi1TqvytgH4GrtteY7bgM-liBntuErG_HI5KUoIxikJYHpP3K3wzMUe_1zfGKPBvBNP5LwvxeWoYcM8YeynuyK602Ng0nSDE06wSZ-zqif2-jrIHMGx5b7xSd9Ma8b3Nqc3ynAwTT54kbarkf_mwKRFNXbTsutmdgbXRMjel_NA8Y8Bso7-pYvJ4rma7KYbW-cW3CmI3Y2km98H2XcJf4EjaiVOPXkZ8RZFj8DZfopKV5B6Zuq_b7qYsxDqw47iDtppRJyHp9BOHzfgSBgIvNPEjYh59cBmmPWSbTRt7RaGLre0ZYts8BMSIUKenTojiBs5EKuBWyT1qJfFsfy3VtAHNFUsmDUn6Z_lAIm6kjHwht7YmKPMC6IeXmqRCHFnFFvfD9HlkWrFDzHR0_LZc9endHCGLf0bhqUskeMgNj_xz2XtBxBgr9KQP0c_KXEOnVhjQbQFwlFOa4qDgD2lrt7DT3c_WkCtbnN5uAZeF-xBVrgfC8LsochC50CAhrxu0bnXcvcqixzvm5PrKpPhUqMT9W-9h-lNDv3Q3bEODCzIDKKIm7wYN-LpaIrahao924cXAYt3VRQE-dXavxnZyeQ61WiEASBLUFgcVm82c3J0kvFS6zUJfaJuYtNQf_lIUPrJA9XSajE6eQhEjZQ1yfmw-e05fV75e18GBqu_SnAs209p9CwtiAw7CNABIfJ6WZjzZUutZRmtvdWFBqDA9LCjCjO-AMQJzomnkLKwO3-0sHjv17DLuKVHdGVrLbKdkoSiWqD-RwKXTJyzDLayBV14ZqQLxT2XET2-j4-PWQBQQRxaKK_5Ueeaqrw-Rd3XlNrECP3-QrCAaX5HNcMUBDmbrno4JNI_7d5Ad66f5DQONTW1-Zbqe872mX5i7rU05_0UuKLncBH_vIL0J26KuL1iKt6sy91zsR0yDlv-AWIePtwjIYQi2S1epfLyWP-U4YWx2aACWC5onE6MtIDPO7BcNrFnEnFG-QMZjBG0KfvkgIhYdC9EREyYmAU-bAZpvv8UMxWrssfQoWFDUtCvzJ3agSBjtHN2dXdyt93mXzwZC5clzMO0qzIiU-PuSr_1CQMqVkwdkJeclcpyB7Bv-oaQLTCmLpHWXX1DVBOuck9H1uKxRSORZQ3-Gh-lGml2L-E2V777-xCLyuC-7OrqQYpo0DyC5GygnRvKs_SR9lW1m8AH9HRIWZx12bLcFBK2lSZ6R0sWeY0VGH85pemtXNAGOmF5KXCaJ7LUHRx1O3dFjmWualj1rdkW1yvFwvOzEU5CYUphCquS_2rjBE4fiBijXTCKVbhXdvrUKP-GvfyuhAVjKu7ONncTdDjI8soCfRyhQ-JrAXJpT2rfQ41iMNfKc3d0M0v5NifBveJKa2sUWX8V9Z_jshgf5AzaBevUTP1_poRwhWxUbyzgVuCIaicr4ak9P8jUPW0uOfA6gfDw10av-_wQNKRucAYyks-FONTq3uMowL78V2d9RRsKFTI_XrxVkWZ8rk3XuWw4hTiSrJPEciDAzxGIgMxBWtSlZzwSAqfHZWLvpTAUfCCs1AeYsX9ptmmCW7Lg9kPwbUlwVoMRqHeiDYMt-TPXn6RHlz0v0gDHhrDWN0Aqdh4t91IsP3bzggNMcHUp02dDbkaE1D2YkZMkzXGqMhBHTNjiEdyjVu5hoTYIGlNnHDyURY4xOgH6Vq-7sE1cAKQpxXOwmwdWJtb73ypaEWjpYS-PSwr1pY\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6719188b5455b3-14186709','','','2024-10-23 15:39:21','2024-10-23 15:39:21','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41247',0,'cd-form-entry','',0),(41248,0,'2024-10-23 18:06:40','2024-10-23 18:06:40','{\"firstname\":\"Gary\",\"lastname\":\"Bunker\",\"email\":\"active.heart87@gmail.com\",\"contactnumber\":\"97933565225\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uJQb13aTY6lnFVQNS0_C4dn&amp;gclid=Cj0KCQjwveK4BhD4ARIsAKy6pMI_dPPSixCwEd-03RqZgugq-NBn5Qo1ChgTm65KiAyTgKlR8CEG2XIaAuTTEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6U7kr83SJJGPFMH6yV2AH2PC9X8f75_041mFvCTNEO6RthfZgISoR6_1UC063zOD9ZvnlsrO_Xb8etpKVcbVaK5ADxT68I_8fh6QAXhEQ0dU_-hSkQfl1jJJ2VZKj4Z34IkXk14epDPbtl4Do84bvW8C12SKqtR1g41KsKokhc5D4L00zJrr1Lx42Qr7cAIrsE3ElsxrQyq84sX1UXGD76RD2nIOqCHQLjQXDDsAPo5L12u7RwTb5pqPcu3SMywDIpoAwXeg1E-e5H6gttEL3O9ZpfD8MWaDdI2KHhMDPkifuncbNxocQB63IY-Q1R44uiLuYru91wXzsnMEBBempFonA4e1hsiODDwHCmnpCVPCqnz98rQyWbxmc8vuhpxokW3t4VbID57QoDzM0jSVhNrcsasohtbUdO3MOnANOvI9QFEPYZfLhMWKcJrkDT4RhsTbY3rbtT-Vo1ddr9MvYsJtOHhXHMFYznH-yazurdJnjnwGZD9ntr0dWuzE9idNuhfIpq2KB9xcxdkBb3exVRwVXBsD4EB-wFEByH3lNQ47HRUcDX0L5v8dGK1bENMAZ6O52OTGGnC2I9V4TOdXZzAPg1896QMXGXBX5eOReQgh09o_V006ah-ygD2S2sI9o143fX397Xa8fPJc2s5KHOPY1EDFp6fF3cEH6fIfDp5K9N60FnD3v-3pAnoJMGVhiZbwo-szE66Pmc4wb92TOZy18dDtestAeVYKolKgldL3RIUP9e0fNN9Pg1NvQVjvl7YOmTNxQydBqOEOTE2jcRzzeeUChemDj8ZqKKEVDUUO_RrI6az_wa7a4OvJxKqcDUVk91qarOGAUubROUCfpdXCJKQqdzMBnxkTpglVlglKky3bJksJjoNMX_GcjQgDM2MiGR9gNGfHXK6-jCS6phG5P--NL3bfRqPxChHVy1-WZRpOZle7tY2z53gKOIct2mSDTUMRt6OjsId43orVtchRjVC03vQnZ8Qm_-zkSwdHtImh7rlDco1F6v2T_2Bv0sj6sVcwjeAfzg-ce-OMePmMnX-H3lzc7B0d-uS-h1VQJqDwo-LnixkLPAyxlwzOcyUUTy8AiAOEvP4ISZPku4jscxWmiL7rUneXiFXH5NcIgyP2ZA0_upB8bskKJf5Ksn6ahEG5WvqU74X75Cu77cd_CeBLucU8NMKfYuYeew4bDC6LfymmQ_WdXUp_V9pu9_IodMGkd6F7J8FiH5CnHSikChLy7UGedHcIbsUwFlKto0gQNFYrNGrOw1Q9Hok9DJh-NOsuddGmkXiTMRcE7jrtegSWQOns0icDF0z-oKaWKr5R3Fej8fj_WgBPmq1xPVXe4Y8Dg_nusIPu-kdnx347CwNN3vxsrVkqvdS8zTeDlF4fnXPxHcZ_kL9b5vK0Hn_MRR_vvgoguNKL51dz3C2GvhJkkT8Q7m2Z47SEbJUMZChpsZ9r1E5MgCbfk76veLsv8fzO1GicmJB60_w-CAGWf5lmxPvbBxXU8sujDBCvGBsPIYaw4jpgJmVtsupXyrws6zTDuxZHeWjeWNbJe9dE0MaJ2zQzmT3dWpgXfIKEvbcxQw1hps-YsgiV0rbgrAa6lPp0mRU_233mVigGDd327ks6FRLZ2xsWu1aZw_VqHOkV0j3Ftu9EvvianBT5uUDljYWhb0K5XaL6w0ARG9fnDl0s5PjtkzMz42KG18ItumErriQqwaDSEfXa_gllhPbqaLV1GceHPrv2xmXrjGEpnaT3Vv7rb2GUd9dITOW8pTXzMRNpUu5bGsp6YxcgNAmVAqE2MYFJC7sq2X-cAPsP_2PiymT54u4L4jPaLxINEZ8svcovokEqY-RgzXgEO_YDCHpZblf2fP05JCNi9TWnCgW95xvlR2LdbinCvlTXK0dlCsltZR-H9dgE3_R127b1YZbWj2BcfE4LN5qb_C_pjFFrVmNoXi3V44XLD6K2xfGJAzY1BDs1RXqqdtRPAe-0aulRGl8YbznDzWivQtCc2ZH9SXFx8fSwyyIsCW0ktFTvXuNXjUjvyzgn1UE0yGgfo-E1awQz0q4ZPZHvmh-gsotw\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67193b233072d7-03490281','','','2024-10-23 18:06:40','2024-10-23 18:06:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41248',0,'cd-form-entry','',0),(41249,0,'2024-10-23 20:44:22','2024-10-23 20:44:22','{\"firstname\":\"Krista\",\"lastname\":\"James\",\"email\":\"krista.james.fitness@gmail.com\",\"contactnumber\":\"07702482918\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uJQb13aTY6lnFVQNS0_C4dn&amp;gclid=EAIaIQobChMIt7HVu6yliQMVrY9QBh0EUzagEAAYAyAAEgIHMvD_BwE\",\"recaptcha_token\":\"03AFcWeA5yguZuQRxlFMM2EC2XYNgpPzbXXYjHDL03KPmmcJMUmWly6WF6uLPhwzEWU2TAAI9Z_1R86f4Q1TiCSmNmHTVkZi4UakIdtZR5E991T3qSjXn-Lt5OzdXbr6O1iMnLvZn_yD6LFewf9mP9Fy9Usuc72hOe4VVgyVevalutyAo2ABcXXpkU1PAxguWsP0GuMU0ZvTQ6KyQlhbC_D190_EGfOiVYrwkHHcsJ-cEeSlrz1zLpwcmynLEtzKrcT0TME6orZ400TqVAbCD0LGT2ciCRyxBAtvaBd11QibsTsHbsaF-IWgM0BFyXLDc8KZwSMdmlJf5t0tGCSTkq57D8oRAR60lHZ7xGuYIkf4LItZDQj1BnnRSdQfhn228jwgZ9xlRXJGn5K4lW4WWTvwRJ-VD9xZuWL3YvmSzhsgM3hz0tKJe64cgiGm1BYLJFrIzJhFK0o62-SCIl0nAPLZ53OHftFqjCZrQ8z9Wp2IBJTZ8DkCH4BXwlQ4ka5uws7wws0fP0tFwrDAOrlBD3C8_nNGYkyDjxdppBd44EQmesQU8qWacWMAFZrslduAD9dAVyl2_Ta0AMTl3GfdqPjwZuuBNeOcfiQiI6DHaet1ad6EldWiwK9g2Jos9T9tp1miFXTddQl-6OLgZc6eHfnubHFW6IC9x3QHNPCsWmSsm5-_MuFQ23vC16of0Qsy3Pay5ik4sHYTrQ3cxetFC2uw28-xPhGuuDAGK6iDmntm3zF5Br2GesZ0vOpG_KTEUERaVgbmhjCzIuaSH8hake69Uj0ZWeChdBpYrjRw44gco2l7cPvnFA2nqorD2l8neeD8FRwkoQbdgPLItIegXtTYl1QwdO_l8e0IC4nPUF0GVtCtCmQGuQm6i9Xt4NLnvBrvQ0QCjIY9JXd_VJJNSyzJhrieYYBRqYC250XZPoBTn8drVDKJS0im0SBfZ8tDUeqTa16zlttMHQ5Zm-SSqAJgbXV1iD8sEJKHUUZmXTfYZSjNVuqUjwOmr1ZzzirBKjw_xHb9yY2Quw9aXdrzuw24SuCRR2hJ0heY6hNA6LgUdf3VZUiQQ5tEVJX818JWisSn_Qad83TXrOaHYdLQyfY1mEBwUyhM_B3qD_aFjgOXATR2Sp8vNYFzGZL30xjMbB3KXdnDuuJV9mN3y2I9zTjwzKRu5pYsF1tFJq4qlAUSu3iLbd4UmJmF_CwO24UxaHj962oZJutu0MwSU1JqEY2cHNYfKfDfgTexKroHvYPCqebsFKG2LQzEe0evVlUoDYE3jJPyFzt3qYpWRbuXoSpo2mZ0p2MsD0odGSYL6mPXaS6qAg_gRzfwv31plhMcp6CIOX8ArejNH6Uib-PROlrwT52BR0DBC5all7iP1WaRj-uwVybcBmjB8EgSxwLLnmJQ_knWBw_aZHn4JCFjyoYyj_W0fdKJPP1dWIw_hq2MT0aNRVr6wyk35E1gmSJRQ8-2FkNKn_pZAsatwZttBuXgq5RpXSSJ7359N851x1KeG_vYBLYwn3A3zw5aC_DINdOze16Ur2eGZQB5JZrPHQIxMiFlR_ov64d585rrKFHKMmQ1QPH4BwQJrE4omQB9d1w-y7r2pMXktzgq-ghfLIWiwx-w_DPmkotOTpBkn7WTKHrNs6GeqvI959oAYGylw7gmBP03gozrsqwcEDAJPFlrj37ff4EClXtVVIfgC39-IivwxNB71HAkDDGDH_80Sob9CkJN9IFzu6TLgeM-ppPArvOY_YBkvY5KV2vsN-s6FIUCzdUFBkzFOKfqpr7loDD3jAlN8D0ADG_CBahgaABSZG1bBvRMT2F3SQ-hnKmMistX_HJXWhJnum8RC-cENIBgFfa4Gmc47z85vG28KaQbaKt_ySGcj026gZ1PthYB1OKv6HfhR0oGApYBKTdNC_6v0Wa2z1SPtjXsBjAyVpaYbbFBgOsqFf15erLDRY1T4VXo9CRn0TQOPTT8xtWysPIkRgX1FhKUGfya4fDmNj1WRds_24-Q-AbmMJjdrG_6_LMcPndPdTpaSOHHQfB0PvCtg2hi0mmxFK\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67196018014ee8-94591153','','','2024-10-23 20:44:22','2024-10-23 20:44:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41249',0,'cd-form-entry','',0),(41250,0,'2024-10-24 05:17:30','0000-00-00 00:00:00','{\"firstname\":\"Caden\",\"lastname\":\"Cloete\",\"email\":\"cadenketcloete@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMI8IPI26GmiQMVfKGDBx16BzvIEAAYASAAEgKcgfD_BwE\",\"recaptcha_token\":\"03AFcWeA49sJYj66zfN2dU8WBf1JIZR-rsjQokiJlZ8HeDNftbOqGUra1J0I0ms-DNFneM_PxpruObn4PvX5_korBctyLY9dljaScWV5fDuc2DamMvvpT1MPeoIy-fmbRQ6ngTtnZmNwOK5AfnLWBk4m0QgmZmXoHVSRe2fn2E3Z3RUjiVTn__Mv7NUNq7pcfUi_imY6FTXLjwNQEdEHlW-o_wbHfuIOpWDOOiU6_MH7p6tovGBls-wjQISPVmNV_bmLKRZuv8u_OHA1JRaP5n8MfHGCE4lS1KfNo89AiuE4ZM27HeiboMo9WJcFJVcpnDLf1iFZk47tex6wOqxtn7Z8N6HUaWRbIJaWfOPzaUb1kl2WDJKvqsEY1NRLAB0-0VG7SdOTqHB7JAH9DAY1IiBMGNkc2wWVg8aeNB1FRa_Cy9JDNyVxa_gT5t-dlfDMl5NxXiSC-EM5EZWX8cdK0_iMKsbz-itDVCiNkrQ1SWN7kxxt1tTB2yxDfOjE4izlT0KUiikox3fchk7Tkv_-jOVM4k6FX2jFIg1E6CpOE2REGzg9Y52eDZrDP9qWXEAMhmL566IdBoR2bivbAQ8Yff3hpF8kWqz3ieYHQLLIuFYsQZO-hDuQtJRaK9YJiMMrg2ubIgwhKhvvM1JLSIvt1hz3k10cPNfrW_FvOuiKzUDDKKFknWjW2OnYESYH9bM9gzJFHD2un_QWLVQxlt4hugDgnZS4PhNbeNnTeESD0sxw2NOcwsDioHHn_MYzpSg3-A8lUfqgTtxTBVnamAmm6Ow9CWB8Yd1D2_1UlX9SseGRHNkYKolWVZYSoKKZbXfk_fnofT1PzZoKBrg9cT2wFwlPRA7maQVaf7YYncTUEpILAslokq51nqWIL3O3lWElACVXLRY9CQ8pceZawBs8Ecy1egEWKW2sxqaWWZMcbB4nyu1YDrj8wtKuadV1_fGUXQn_W2PqBbUqnkPRLFc-OJY-X0UByl_QbWEbx18rA2f7U4wzZUICpqoNNE-NQjXaEXwAauOhY3NVLTW_uxQYknHT91pyZEc4Urqf_HlF7aOxdqSecYi_zcXGXMoGZdMyptwGWcwZhcR6d0W_bqZsX8DboHOQroOFb9rIcsC1NJBEm_oELyUz_M-CN4gAfxvNmeET2J53Zx6Tq6mPNsuhicwX-TrbDNWL_MHRRPJY-MJSd8-dg3vX46zuGM-mlO281Ce5zdXtyKPmsvFmG7SpHJKNBlhio5Z3nhvjDWP2MN-78FRzevvv8KhKdz-zcPy38T-n3Op0tBxKalUDtS75P9ckoBqXbrS72EVA7Pgoh1N0t2X5jorCmatcfAUO5K0iP_8ucBvAMjHJMEer4lnzOvSzdoWeJ_-WsilQgBgXVIBxIAW7ilBq0aRUe2k86dmvEB1dOtX4DnHKOAweffaGkAjJExR-xpYQNz2LT3UWMKlAGlAJMaUFNj2CEzs5mr_NV7yMryX43ZzHirVRYsBzjnkECN424yI0CYbMwpwMi7_Rhx78jKXXCl2queyshh8LSHMmxtQhjw4fQyMndEQbnDDMBT_ZpmoDpvPLAuOnGuBlQWiVi5VzZlA45WOasKlvCp3PWtLE5qh4UaiOKwN4XzUfkjJUdMsxkErefsRO18TPBlbwaZ9sL79IPJqXd3h5kJum5Ruw9LkRM0CfKAZ2CaW2B3djIyQHUKZL_K0g-C267GAUPrw079CdAFiV4KRsF-X93DnSCSqX2BjFdiOisDMB8GSa9ec8S-fjRFbaa5TiwH6nv_W1RPJW1fBiB_0dqtmDnZ52w2dDtn8PjqaJHb4TvKJ9ZOHGDrgVfXF2ThOSmiwb-O0sTK3gwPH-8SqUI-w6cFKeCkrVIMqTMsNIpMdZHhd2QX6xXNj9HySyYn_YTwiDPt1jfx9mioF9OeGq4EQqGFQJNgJOpnb07L9gs8blUqWFlhpzvLj59jBXGN9M-8qExW699PPvAqmJIkZtGZZ3WIYZUGYX1JWYOfDFooN2Bg3DmwkS63fd7qsHM6eYRoCzhix6jyDouBI3pTAyKIkuxqRpb0no9fAeqmY6f3QzCUfiGNpp6SeNcnx7Kn-fZGUN2v5Lujiz5fof-kAEFs8ZTVsvIfkkVylXfWD0MQ6oAaeXQZTbCoDWbRpXT9xlNbVbsZZeYoZ3sOmn0UnUouKkDX47j7RbCzRbFDIumCfcyx6K87t7C3Hw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6719d86aa9c0d3-69349078','','','2024-10-24 05:17:30','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41250',0,'cd-form-entry','',0),(41251,0,'2024-10-24 10:24:09','2024-10-24 10:24:09','{\"firstname\":\"Janice\",\"lastname\":\"Poon\",\"email\":\"janicexmyp@gmail.com\",\"contactnumber\":\"852-22220000\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA45qXV2MEHH-6nNqHfzNHKB_UqYR4zDDqzeRjLXrB4eIRxGQTFBMp8pYf8a659yb9s5xthk_riqQwg_HLYSHujeG-KVAkAp0wVsJ1sWxRdlAbzR4VPxdblEPi6NTr2DeHoARD2222WGz1lafd3u5n5BANt0JAiVpQYKs9eSEtkeGRT9jBPRgiV4w_pyXDuBxD2NgvrgwVrr3G39UZR1HJ4BLyThaypeQpUacw1o93ygsv9ApvOX_C323ecESox1xu_0LW7KKYBAz_YQ3Wf58z10sHN7yzdFyQ6E8Lv4XzgKgLZDdxGeYcUl5z9oO18QEOl076MjzjOzJljWnYWwCSYxv5-DESVOSANIUUTbbV_GhtzXZM4Cl7-cVky0qu3Ssf1YUxH-lWP8_-gvmpjhNu6sbPcFNTKSFf4r0W-q200zkohSBqDRcR0TwtotD2AizDQBK3r9YT6-OnurPo5P9EymU5bnXbvp74VgjGhshQ5duSgK0NQhGsb4ldgZbpKD751a3p0-bRH0gzFZQaQ9HI1XCQyRuBV4LZ1dSKIq3bPQxvd9Uadt19eQ-r6huGpOXq5ujVeaT4bkQtFFFfYwnsjXrSOmM1ePI6FqVqpzJ-t4zTqE-F1jRJOx2WunmEpVHctu8Fq5Xj5ELf683HH2ovcFRLTbVkogiWoyq6M21uBTt3Q_D3JOQQNHfMrkW8CgsZO7YBYO2xZCaTkljtDutq6A06-fy2NtznicFSgU1L1f17pKaIAVi0iws8DhP-_rixnDM71fsH9eCKJFjqQUH0I5iSbw4LQfvKQrHDJh_xa_fPrZcJkviQhBkb1R3tkqGCQCEtQ2JXhl3D8F1JFybaKeTT49lrqdyGNoslNQ9qBviNqWBd2zqCNpnsHsVq0F88YRq39WAAsdwHtDGbTeFXKMut_NMUDqPr5pP3gP2HLBLACdBI9OBwa4Z0fy74nh-qLgH4IWvQp_10TTAxZ0HTOj80lHQGSe-dkFSGMFODFXv-3nIkWFQor42yBgz61_dYx8xkhB5WXZ-JU6KF44Ky_gk7CMkpDwDV9-9Z8wyu8o8ZfAlOmvMssWV2kO58mR6WMcgnX6ZXo9fG9HB_kKfGvauME8_vOI92ieHeZWMU2v3ivGpSomgvE5Gv_IGclAg5WM193MBG7ZNBox8qw4ntJbMeV3mu9rmEH0nPgWbUghpeBxImBhwJSNVuo8ih87_fn3dLho435JJcFAhJ7_5w3tlDjulKbmCkZRqxGe2dtwyWNO-tAwY9miHpD_7upMx14ohAWZX0TjQ2DoDtMNX6ByEo7cbju-8ZjKyBDzFYaqTvW89RwGafpEsWOXash8F7_hPES6QCW09VkTuqOfPJw-hjqOhLcMDJKP3Sxd3S9poCgF54DBi1MTyPqn8zvF0MJUbDHNa_8EPIregIfIh_T-aC20vCd-Gn_f-ARxNnxW7y7LpILNGs9l-e3MMBhZ0ZrwUjHKo7FRx_Yc4yeq-glcKZHFr1PFsFKuSIs2p3gmkRTCRc6N7wumz2pUArIwMTHXpyS-x6QtJk_KZ-Y4LCjh4l-YQRy9O0dXlLUapsddbYRlQ3k8s9S6cNqNh5F9zwUeBH7hrDUceALXdAgKCnjAAckSiWiuofRJ_1zhy7Fh7oU58O81C8Tu7gj8SlU6jg6jUGVLkZYL1WFGQGOuV958zE19dD6v3nl-rC85IXWkQCPj_-eGT0-Br7ChIHHCwd05AYCtGBdXxcjSHUTgh4KXHuob4IkYrtIeEWdkgGcz0q0Q8PQ-7-z3SBdVewSp_tmt4m3F_lGNED5i71nnPdCrRg6xzz0eAtqfuMe0FVB80o8XlQbFGBVoB_n6w_oRY2BOkEezjCqxl533ZZeEZB3ms-D0xqLv0KnnFmLsxrM3H2Wo3597lf61C0PC_RcZkE3jERNhO_2qSQDH_b8EE6TKDkwEdA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671a202cd79988-02337507','','','2024-10-24 10:24:09','2024-10-24 10:24:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41251',0,'cd-form-entry','',0),(41252,0,'2024-10-24 10:25:10','2024-10-24 10:25:10','{\"email\":\"janicexmyp@gmail.com\",\"interestedbecause\":\"3\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"000000\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA59z-tuUqTq4a-TRkJsM0HExgsbLDmi7KBZHRz-5qYNkEP4yOglP9Juwf7cDtVt1OMyZXo3Nw3Tmv5vegGntFhkG16falLzNxlsY4FOjPjyNNORxESYLlbNUCznFG2JnFflNu6wYjPwMF2GA6ASFx5hECyrLr9bYtMNfJTCFgelJKcnzX-xctABbzvYUNktwvsxMTjtIgia6gscO66cpG587iOS19zDLb2yc6MrTFiPXy6eMJM6zFZ7XLXQbA_Jpl378gvsJayibPHH4IFp7Hmsqsl9xks7Km0dziCKxjgQ3hLN5pbnjzGwNnfBpOEQkQ1c6r0T5Mmc_bKu-vtWd23fuahp34yvfKvlMTsoCuww5MTtsapwZZWelX89EiI-qWPCKJbO0PgzZVC9Erk6AOHqVCNiukepFxGFlAj1bELhuUoU_r5uCNVFjNdQW3djungo9T5TLsESApRBStG9qlzY9K-bm-JkkJXsxdhPcs7XHtS7z1STY3vaAuVxbLuf-fJobPQowvtxB2IQas2SRualNa6e7TPq-j7oyG3d0MkfotXgM7bksqYExKeIYWvKH-lCCRv8RHpct9gB4auJh-vxh8ZWXXHyQwhSBpYk-hoaqShsqPepN-BGOKkCXaDgpAkGZ8ztB-YZa3vKMoCtGCNLYEHhiS-d8vEi9XVxBI6t2BWzv5nfmp171g7kR1awlYcMd5pkBbPQ44JVFlwUhMPHwVpnDseCZTws22bpS-hjJCa4ug_hOGmDpOY1oCGqDY1UkojPj2BLMKo5ux5OmEcApgsM7E9wBJRDCKgwOGXgesEQ173kMxHUGOtb9uMPlDwl24J5wbfltIXzd92H96tD09ThbOrQI4uNfyODsstt4yZqgNK-FMp_ZmiEpe1sC7w__ERMF8iJjYZnaOKt7Jb_DLkQZpWf-mwxvJaIn839480VH0KflCnPTuioK6rpAqFAtWDbwpO-w7OIS13RdHz7vDn3KGJBUA12YeouFnz7pqJJ9wwdoHKCougvZ0QFLDJlk76SBi0wklIrg6DrngR3UGYnVVoaun3Ui-Lw4Ndt3VLCwoGJhPoeEZnYazY0VUY46lcHOMLHYYO3IMqVjWElPgbFO7s9fPEHT6T6EloaWbFz2-vumiQ6kVG9L9gUCJyU5CYufJWrAujsiVSTyDR73c-QV_6syHdb7Qo8-bfig21sLMcMT2Pgi1qorq9E09rM1eYS2NZxsxCmYJ6tdY3OYsgLZEbVEL8j4BJPe9AREryHfazMslxz9fJ2krgKjbVy270gxXzuqxw-Wl0wkxCq7Vd1z_6Hb-vFirKzzhZc-XXPpXyMGU4vbhLY7oyn9VbrCEU4r2qVwTxClygBfrXbXCxFvNYZRPaJcOzwPIRLlLnJWk2MBAwgxX0-U-oHH86WlCl_T5veA42KGuixv3Xh_6yKe46YUYe-rUxKGEZh3uL4WGZ1Bf7WoiGno16GrXTBYuhQpgwNZ2Hl0e_ZJaYCJBEuQ9JQNY9-ekNolOCuBv6vaeqo1TV9M4qD6LJU7sMjyGt3CT407UjuekCpIyPAhlolkZ0JKAgP1GAbmOnxA0Neb3Ym5WKB4hz6cocpngUvjpXUwBBfm1FAuMCNMxoTlAw4L7OuV1iHlOhkKqlNk3Oae68PldDVUp7K4amoOiF3Oi3m837Jp5565olk2r0q1oS_YudOL0pvW-kybi2iMjqzTzRWlL9mEwdbQNT1YMUYI6f2a5wi0HPTR9WOaZK2ydkzxcSFAjiVgQANaieGzhJZwKjAa4mPcBVTfNt0zbcheb7-c3ZcyPTggdD0ajcGpi2e48q4Hl7kS1nIHR0N5Nl0xVtD0WdyVbB28CiaDnkG7jLgrcPny-lrRkBmWX9rqf5MlvsCrcyX-t_JdTYfFPx5CquvJHsfvxUwoTdiCa2J4YUS7wbWRBHE1errke4taphK0w\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671a206968f8f8-63676889','','','2024-10-24 10:25:10','2024-10-24 10:25:10','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41252',0,'cd-form-entry','',0),(41253,0,'2024-10-24 19:56:52','2024-10-24 19:56:52','{\"firstname\":\"Birgitte\",\"lastname\":\"Dosanjh\",\"email\":\"bahoff1@gmail.com\",\"contactnumber\":\"07931226263\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5wHIxFOgmQq-rwhHTPBf10wDNYcrzmZ_4ONzDdydmd5GKrF6qPlPuOIslaawnuqi3htHmyK0uQvNxjjn95jPxAHDfDwFjdY58BugSKgFsoqaguXfvODcwW-53jTugG0-9KkDIiJZli_Ou6IfL42vT1Liymp-8SVWIKpKZ6yNjWufgwIvgCScFa4eGvABtB47YY6qycspQULs692XSsLVzubK1NOzde46SZLwWNQ_Wdm6GUr4E0nrY0yIqobuAd9acxeY9NU7EoHv-ve1SSOIqorMf2QQVLpR1CYqLLDkJAFBiGwdu-hDJ3wJTU4_t5zX1G6pf1H45Pevin1sDcwIThBzDz1XAkdsR8VamkPL9UmtE40qgrfRZ2mDqRQq97FMQ5sNHyKoFqUEegozQ9CdTiRXr7CzudUGTjH5t5cd-X_LtySEEDiEs9hKAsyeB9nKUopcDrboeaYVC5mihA4Af_JCWPFdkqTR7bhvOLR0qDGo9P-yP4HfeNtSdW3bxcJvl5l5RXijAnitGBVqjDwwY69XQDoFDbfyxA75cJlq_H-r29wDzWvDvXJHOMb056t9PF03k-Utdvabmz5rgoLTd8D9t8UU9jInKQq2lEieD-3pwheQIqD4lznwQnaw97qPPsGIqAOlTeVS4-maGlptji2zcc_0Bj6OzY73WJLaeI4il5FHBGR2sflcOUUtLhrgayOBZeccvWLtaRxZ2AkI5fui3TSGsBj9t6rm8b54EPH2_GG2SHjCJ845bq3-S9BqaWz4eOCxZ3njGrWfEUf2K2ll5mZKx2yvI0ubGOo9Izva5y5pAI16RGJf_s6MQ0wYyGZA8aY9KRdsfd-52rAIMdgluCgGEDA0OZtB1kw1LT1BxerZMrWTBxIhQqrZXXR7l3iBotMGk4wBTDb8SHlWpi0gjEtUM9K6Y22DXeiLj2GTjHavk2du53Q81lI2uAjSMKI0ZaT9Ho7MTgTsFEzC10u5hEkiGxbpa6vqzkNvLkQT6Ss0Erh9saxp1Oh9SThiDzDzhJ6i8n6c-rvyXK1Xw2tZ4urP46JFHBgzUkdqEcsY9xyoNqSlnn205eVP8Ks_Tqv-7FlFqY7yJ4ouAVBGlAi6ztTuUXKAln92YAiSiUm3o1gyxC94Prd-rJF3gAqhyxHlcqH0PF_tv5aa6NPoR147uK9NyFowan4ftkPQotjGqlHL1fd7EDlOlEu6PJsJY_A2ZLppLF4Vz77owXu8cIkARUUn9wPkBEDCMRuVtRygJdjZtEGJ1KUe6TPRUEVCI6iSsF2Pnlqa34T3AYwZjMxFWErG0iA8RCF_XSm-gpAoVjn-aIWWAJnHahpQvEWaM7_6sUC-EkoJr3mrlOAtgxW1Kof__eqqNWdZpMHIHHikNRYMKLDVYDRxCWPRO3KJOajh4V8inZ04360rxkvSHO7rJAjJL3KNLvVD06LSo-ekgvVJ059eWOhZ8lq-euAoI-ZI0TBRsFC069tX9HO6ShhSQZZCO2WnpMdCu8XE0a6Fers8ouGNRuyJ8TBuvS1vRzaO227Hh3zxnKscBp9C5Zh5gNGW4BurmGurbcog5U-ygJkaWhKv-IKw58dU_jz40nR-5JO_XyI2TkhSSTEDfERx9gPjYwicJDPlOFQAD2gwYkdXdvb62J_aAaXNW07mfx31MNg7UjbLnnRg9JhDYeqIJrrA2moykSOH0_-bsu-sTYnLJDSETvxq1NK0DPps0sPxyE49MhzgZ0dxeRHRkgIaALlWLy85g4cVAqt5GJ38SkCsalt1bW3M9WC2oZ6FNgVYWOlVvaJmDkBRWlfWSzzTzZ_E5-cDzsAADOKlUa23qTfhwNRrfqdLy5zranKM0kwpCHFcFJROFE4AJTgKDQBLA4cOfh0ZR9u8iTdcHudTCfouEj_7w0e5r5crqvoSa4MFfx\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671aa67a397d66-96081972','','','2024-10-24 19:56:52','2024-10-24 19:56:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41253',0,'cd-form-entry','',0),(41254,0,'2024-10-24 22:53:29','0000-00-00 00:00:00','{\"firstname\":\"Mlak\",\"lastname\":\"Halawi\",\"email\":\"mlak.halawi@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gbraid=0AAAAA9_dL6ugQWWWsM6JYCu1qDvIZmBzk&amp;gclid=EAIaIQobChMI4eeDzo2oiQMVpZpQBh3L0hnPEAAYASABEgLYgPD_BwE\",\"recaptcha_token\":\"03AFcWeA6nF88Qf-FHll6tYjtgMckG8GQyQtDykxIwUDjiIG4ObvlaMfF_MzLSC3vGxZAZ1a-yO5IyD0IwXFMIETifCZYj6oQEXVBJRcravYGQysyT1tMgx6xDO5iBJEy_hEEu5Z0yzc5_LRie_IsskKNWV3YLJoW4RYWWhgpcWxS6Lo0UQ6V_7yoiNuectpdldSrdEoF-KGkzFv_nn6APLhySZL4raxSmWN2193JVGyx77hJ1y81KA_gSnNhee7PLl5TXHClaTIcQ68ohzo6euZFwHBO6bV5NIuoxNU2vSejs_VcQwjJ7HTQDmNO6ju5M4eRBD3_FeWPqPD4OD4hdMIfqxFR0S6YDcdtg_MvgSLzpaVzU-AaXKMsZN9X_rq2XGENHk8WxwrayQfOC9C5Vi_jHbW3iPmWZBUEapE6R9xPZfeqzXf1l-tovJV9ZYiBFAWDcKE25aMUR3SrbZQ7PgMy8_KbDH11dP_siKJ4pMRIkPgkUSkMcKtCnoS-LdVWuGiZDYBn6fpdTNYJetnDTR6dACaH9LvdaMEy78k1xotNe4h6pQqAbMUIXfubvPGE03xwM1J8CP721QpeJoHsLxYg7gUKZpe98g7y8mqlwUQ1SrwQRQdw8FBNmnLB3kTT6Fv_p6wWmgykAc5gL7E0EfBxYyIjLxtYs3ZZeH1JT-Gg4ljXLlc_e9rViXCbnS8e2gU5TgIEWaIIkJIr-XDl1flv7S3UT5szQ5KC2uaoHylBhkW55pe-yhelbTNzXPEjxUKuVBx_6woaMmlJIx66HHWbZrkHLfjhbADKuTyqfQsbq9ujeGni37wuAGr-NMooYKlaX5SON2SYE6uEZLR8UcD3YJmFAnAVjVweu9IFMvJyQS5LxZX6357Nij-K2_WOFBgK5iCiwWzawb9BUwlDlrUxHJCgVlAs3hrBiIJOaC08fCRohP_7bDsR7CO1K6RAbkHvRtax2_Zm9ZIzbtoA4y9U3JzFMOEKB5Mmgv3sQAw9hG_D6Jvf1ty7FT6RREApfUHruzyyDTmzbnm4Esj8AZVQJ4Mv6-SiBuXVB0GNskO_hAivi2j2LypYlgzPFk7zW8GK3yZ3jWfTE_zPAJqZBjMVFAxYR-7hIVGZqy-QbUEpgKzCsDr4l6PTuazWeY_7jtJrE0U8so7aPAysUeYpzH1wAS61WmvSsoXYn5uAINLqKffer-E7g9YLPx5DqKyIH8DwMso-P2nmk4W0HEBc8lZblCN2dIXW2EYxOkc0cAPy-6G2S0X3KHMPPNInfvjtHxNaRG2_B3Tanvb5w4_bM_JTVGiMes0WIsJ3ZmR1fxhNUYfp5Xa3qWIfDYKMMIHsBlB5ZXpi6pQ6PFojNdF_LWZQyly4W9fP4eePIi2MWEtMnXTlGOWG4klYC9SknHzu7ctLqJoUmwkFbmMC4aHWVzgHrJt29pk_cK8kIZyVp4u3ZtpNI51mgnDdl4aN0Nrk-P44S_QuRxv96i8Pjg_SA5PrrU3Ls-XNTkBD0HYMtaMXu3oq47gKdERGu8Khyha-tyCmPmAAEU6HKZmJMDBvw0S7oRRsOXnyH2shOHWOyByVPK1lhKMwcftCvBU4CnZqu7aWf8AGW1ez93pLffDs81iiNtb9VmVY7v_hvi5O6LaJvyREGPBlz4MJBFNX078sIpuBLkXw1RZSPzXrTaqGw3BHa70IDPdR6kRhsHuvNAXFPj-jRz0tNkc_HMNepaLsg90sNA7_LgA7Oj2X_ZQPWsfW4GE3hLvGJT0h8YWnNrTBB1lf_iIK813HAAUd5WgnBjDxoBqxq2tXagYgqZvd79m6ww9yIXMH5vSDsfhpr7ieoT-wUcUgbcBkFc2ecDH6o7J0ypf_e1lQg_M6q6sigOcbgNvoNkqsz0kUgyKAevj4vVYoM0yFIRQHcErQI1t8kAfUHNkl-fkwnnuAtr1F-4TgvpZD9MQNNdFGms7BUyg5Q-UCBhh-4Zq4VbscVXOrzuWedkHit2unpHN3pI8no02WUPfqjA97mWdiGO3RFIzcX7kXKJOTTuBniLzQBTy42ZKcDRdOadQ0J3YiTSGP9dpLRZ8eJXVZ-XWcrokvZ8BTr0Ln4oWuU4_4-b3hNGNVbJviBmpNQKLzMgNMKCDGd6vcOnEeSYeIT8nS-BIRipsaPiDX-pL89hkEAUqUw4I7Xti_gor7jECeKTjvPWsaebZnErMKnzRjR-wlvv_rEgs1u67YmmKxfY01tczpTf_7GqF2RnSBaWRVT\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-671acfe09f6bf7-55850068','','','2024-10-24 22:53:29','2024-10-24 22:53:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41254',0,'cd-form-entry','',0),(41255,0,'2024-10-25 06:17:34','2024-10-25 06:17:34','{\"firstname\":\"Sarah\",\"lastname\":\"Fisher\",\"email\":\"ssmiffy1981@icloud.com\",\"contactnumber\":\"07761237845\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t36IydCfhagRpmcc1vQ0K5C&amp;gclid=EAIaIQobChMIqty4pfCoiQMVK5pQBh2cogMhEAAYAiAAEgKW__D_BwE\",\"recaptcha_token\":\"03AFcWeA5iV865PfuEF34tq-We3SnTisX0zJ380VMzoFLSP0uiogLaZ1WMTlDfSsve-gEoPvQXxffzo3dx3rAgz6vJcAEDgRwG3b0hs4NGirMKTZmOuQYQx3DTZfrkFRORSC2WPFlQCDjPVwz6nl1fMOTfP1vklF1aKQgtZvz3_WGxGBTtUR96vHo5RzQwArR3fmRbVwhUuQvURNXKijQwin9ggCWvVdWXx8JE4tlMvNOJ4aiqhtHNZ9-ZwqswwcMFe3CN1qQRC4UGGPMRymWLNbW7c0xOcPTQxXXd_O0bkXdYhRmlVZTTgxnLlRvJiijiVaRDCHsH6wMREj82gK0QoYLekSFbcstCNZHVIJb_afp28XmvKCyBWasIrNLPQ2sV6r8A_hxTFTf0j6N2pHT6I998bftpO00ivyOluOkiqxL60PojyUekRLd-jbv4LjBmYivbKwPvZiXOTWHvR95OW3bAORzEcv2CW90CHtWrOUmwsAW1nc2dfzh8KOUKzgYmL1iZ36xq5na2NYMxa-F4uZ1kS59PZqTaRu9ge8kSXW4hgOsjr6Ly_S1tLDJOh5ScO8yKnIzLxwYloZ98g0IrGW8HFyQFyPKEcKiQLlh8Ui8DMGUVcoTc93clOoUg2duT9RyPyBstJzg1wBWYewawqNSWCghjWN7XKzop-ZJpKmZ_G_0mA4lXBEGdB0kMVtNhxQINf3qKfMZU9sxqMckE47aO7raBRtguQ1C0HSSihkvsTDLXkvd1cH-agNSu3L-A-C4-vMzO_akrysgIbqwAgOzxNB5mLVQb0KjMD-lkcsClmOcU9ug1Nn1VfoHXpa2vly43gyH4gYz9EuQpYsEBEABbeYmZxSdNcB2-PDvDgd4IKB71RzVo38TMhwQmYLYtqAIX9j7ANErPrT5qCqP54krk9u1bGbY37sHZVLWZV-H8zeXT4z0K02ez1Y6o8jRuqZBYVhYDTq0VYfAPuUm7V54GNzw2s-JHDh5A1Xb6IErIJI3Xg9gBRS_1vCB7QMKyfJ0Zrt4rjes5OTP_Tq6wzujvl_w425opKStgXds6Ekpz1oJaqHMn4INKWqKU5s6e8T5pZ4uXjzgOWSFYqpD4-v-lM9tU3lhd5o7YuYrC4bFaUedA0_FOA1yzPB9Y8U5NmzHhdSKtGu8z5VYltasrh1qWDy_ggKl2AbxPSbEn_wTmpIJuTCJI57TXs7JtmjfA_t5kTt1--AuOGkODb0vYR3kLSssFziTJ0yoOY_rRh6QOEl5mm7cnc1Cc2T-kx-X396wAo5QPHum0Sgj8lDDJe9sRilEhG29Aq4I0P5bkGLwo_n6ksMH0ZtC2cxqQOruIOpnnxgaObf_2Pl20pyjO-7tqV38J6Khj537o54g-pqFJ9MCXcrCJf8nbE4rI5AOmgFDJ9zR8on-8boUNw67IGaImtPm8O_DOWiSLkItrTjZsrd5QzNTiJC5fb1GvIVqhZgQDvyHMGpsqWGpZILE8aDKMuHqrkSM4qIQrlNZ8rUI_ODb-LAu3dJ8hkl6ZlDN7qKrLv0i5___TSbkr7tva__BOdD-JaeX4hOYMjmMX3vAZdVKOeXQy8WQ9S7H5d468HhLZT09LqL6XUQhrCilDulHt4zru7K6iq4hjPN885cnXNacKUJQ_e0BCE8l0OEvsZYTZf1j3T4uc6nwPBKjRC0DLay0uIl0Y03B_bjViPRZBzQbvx6DsUbBPs4R69BrkL4CYhvp_FkqYPGUtepkpU09ATO8j7NVRn31-6ApTYh34OQrnaca1UwTCgSK7ihF7-isD50OFuEpMnz9ygIDtNYmW969Wk4YPQUthIv3Y00m8eh0mzuYA5h_z0g7b6lkqZfTg3qt7I8yy9CT1QPex1UY_m8yxczrreOJBFxm-pKrmD8AfUnaRzMZq9LG36D4Mu5trnYGJgWnQmcNr1JRH5-TC-Av5mfUxcTXqgK2m0essZIUP-GZoTPdKgNicwQGq3F5oy8H5xE5EM34jBq6kfoW5bGfkmfXAQ1e2Q4SuwIA4YqVdqy2ixM0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671b37de27f3e0-08253182','','','2024-10-25 06:17:34','2024-10-25 06:17:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41255',0,'cd-form-entry','',0),(41256,0,'2024-10-25 06:19:21','2024-10-25 06:19:21','{\"email\":\"ssmiffy1981@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"4\",\"currentpostcode\":\"B946ny\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t36IydCfhagRpmcc1vQ0K5C&amp;gclid=EAIaIQobChMIqty4pfCoiQMVK5pQBh2cogMhEAAYAiAAEgKW__D_BwE\",\"recaptcha_token\":\"03AFcWeA49ZP9rrGDufF5ZVNV_ASexVEDxwPGbyHZ7qVPsHLCC7LRHkQvp9a5XhAZOx7m48_TDSOMa9B_4Hd4XeTgp6lePy7XjKHTIgOsZzG9vs3UobBqqgoMB-kwy5LWeDSUJd39jNqaA4qxHBwM1zRk0HE8OteFvS2dyWK75Vln3WJIATyJJXbhBs66cWxEQFXSTPY-og9xG5SDQTiirfsatsFGLtv1jwjTnynIw05IVxxTiEaUQ6fhb3OUjxH0AdsMppdZCMFXuUoKb69cmrvlFb3I8WJopfi0LE_3lF9WXtySqpVCB0U_u10qRjk-75RV9388zPRkB4PZZT3rGdTmO1fYLbRuqAz0JE7A-FOTCxObQn0mPZEFVvU4DLZDqCp-NoAcFQ2ePMFLXh6yWVkSl_zQR1i9hWXi8RPvDwlxeqgbz7oWv4ZoIwZu4bY5s_lKOMBvZnDGDNvi_5uAZpiUFcuBdtRW_2wmlUhwz0FzDgQkR-yv5anNu5U8x-RR7eANfPLwa7veC3KRFeAcFeURQm8oK5uiwvXT6hmuCa2ZOxQGsiQzXVobFVpWxxD3IMGLIB5s7pxzZ18aZwwO2oUIvosP0NvGWFkjDfQBBwgGh1Jsu69nxtCO41ZJCvPALQLJCSpAdyvZmE425ywS0nRefi7HrmVXsX0lkfepvEHD1lJexuxwsQg1yOA5qsG6QXFdvMaIiutezoWyj8v5noPFxMheOTVqg8RuGlPszXU558MhCPL3lCqxxBpr49Kbd2uIassM6gs3olvdT2R7dDAe86dS5WmCaWLE_qWdXMQcY3FJNIWEPUWoVkip1jVZg7ItNoFbxgP-7SZOZUtD573REoSKj15A3eIbB6V4okkvpTiOwqP1UIVQuuK8upT1Av4cMOuYMi-E9gifoWc5ZF4u2UHXO-6dQGfxhO2UNsBI5-SBlxelJuJqme2K-ZNbap0gNoq5IU64gMGY5q3SESCag7A0_u4jAXlg6xRQb8-F_WqhmufszGG0VveVwrAbaLSgmRlNvr1qeMVW3BDbmvdK3XDNLTipxt_XKCPvhrnc-Q5klvRQJ3Qq_ceEB1lBKyXj0XHEjXADAmXmKKXf2kltAZwVPx6uZR8gBGQ7ZC8zc16LZlZbB62yMWCoZJquVrT39YguX6YAzUB87CFhTlH7wZ9E5aWaHDXE5SAFitJ1-OkJkXchZ8z-3wu2uTUfnVUep2skK-kwHkpIPr2_Pxfc2aRvfvml_mo19q-XSFDjLD8FVQn3jV0gpG7FskTE2_cjRavB9IqZEai3kx_I9TcPEDVKhOHML0PTMhCwxrGehCXxy2koIosYmUF5Ea-kQIdWhdprL8FpWmedR0n8IGZXFQ6e8-2yX-FEEVw6lFideQQwqvHnzGwwzkiVJvfDEqJnhQIe93EGOmsRZaeeHpJpcGWU9GAMSfTVBV4vwMqRBUa22HFtrONYsUfX1CP32_3tHjnkpDiHWA1QAuUu_nP3UpfcBXLJdrCSVx7zhLjjHJbegw6OhkXduWSvNyz6OzMWAt5_rWXfHMjFyjxTCHQEhAl6vK5nwN_0I4_c1prXLnvKOgs-wa_ZblRWtMmZukWoFpLje4fIQGdeUe1b2bsF_HelK-2N_MEQZ0sQmyKAVhNCe4n1s7cBmW18iq-cELk_cYxnNZ69qpZ86dNLvMgfnzIEdEYKJAAyNTolf1SCTBgdyKHmeK0Qu2SRE4xcidMUKGgFwJZ4-EP8fTqisvVjDxpPyJS6jpt2jBSsHM0nxfyk_jZVgZgCHWXeWcixOKDdEJScV91bkOv_XsriRlC1Ls8dEZPVxFl63A0OfnmFlbxrog2CD0aWkgOpMDjo2YhYeAExiEqG1ccjM5wkoCd2bnrXnO_00KQWeXq-2pkPUGZjI3fZ19ajyXKBRTgfsmKQmotJI3pYfcg8KSze0w2H6BDHp2S6qnIFq5L87jBGP9gbX7Huxs0IB-Ac5pF2wlP9AZbeGeazwdPOXuwSQcJiPZlt3G4MIGFtp5UdG4hkVzKriyAe--Xs\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671b382e544e09-32584161','','','2024-10-25 06:19:21','2024-10-25 06:19:21','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41256',0,'cd-form-entry','',0),(41257,0,'2024-10-25 10:52:24','2024-10-25 10:52:24','{\"firstname\":\"Marius\",\"lastname\":\"Plo\",\"email\":\"mariusmariusikik569@yahoo.com\",\"contactnumber\":\"447424451045\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t36IydCfhagRpmcc1vQ0K5C&amp;gclid=EAIaIQobChMI54qplK2piQMVz5RQBh2aoiHhEAMYAiAAEgLXl_D_BwE\",\"recaptcha_token\":\"03AFcWeA4FoA7XQIYSfnY-hsdcdnw1qa8vfoNj0hSbjhEGhQiYjxm8nl7q3gfzaJoEsv8WfeLMwEfST0mvSZ-FHWK4WGQLylo6RrDoajpgdrH9LMvak80snFCfzVeY4Dl_Gqb4Oo64n6IgIilTfsrP6abFagyfGCn1vP0qf_TIPoJFVHxM3wdJiODDFyAyAj99PhBoh53v30ILPyioq-JHw9dAMBK--asgbIrk5V1Aw_ADJJ5Htd9EAVDrqXizU5aMdJsvxy3aAO3KV4Jb95hp92kcbHR-0qkkLe-W8mDkC-h5ZnVVn0uJ_K2lWVmR8RuzFjPLwuYfnVL-gpT0V7tiJQwNFX7hDgaHmfk4tAGgfgzKNp50qg97kJ4eclI5zaqMFgTGx0O1WtIqa2na9l99b3JoiscyL9skuQz_pDdn1M3mDMbWHuTlUHNpfoFeGYSD6KEuvNgM3NrDOSPgsf3vZ5uBMPdZJwhh2Ko5MnCogjX3M1ZJk_UILlYQbGsLYVGMl2V9Q_G79PrD8CwajLEps9Set3agZf4Z1Xqy4RsvRbpn-psd7Z6cvsTZ6u08ArVW05CwHp7tNEfq0EIrHACbHgS3jdm0j-TjhOQEJo5wvhKXyK4gsBQAJ0a3m0q2V31x0HlKyCVNnXCUqiIPjBCuakR0PA0yMnRWskFjUBqN1KG6x7wF-pvwocO2x6ohA1UW2dtV4TwEWbCmimAvfoqHNgW9ocm00P8gu7eL9ODCtV6-17XXYcfLX7c4OW_xjHsZfMoEAfRn_CPGMIAIkOlydjbpHj04RU0WiN4NnRpKL2TAq-1EygG3A1rH-9DvF0PxPiqfng-eX7xYyUTBjJ-LXcPFbuu3uaDQOePUh1DhyMbjuoFoIU16IL5OP7oI9HDGKvpRrGWSRm91HZHH0PHla0lopjOGLF8KlBDVud4IY0WWua3OZXN8dRMM79x-V5k0TgwSvh4M5KVBXq89Eyp356XpnRj4-WYHN37Ufy3B7dlkb-g_2fri6tdebU1Kh8NE6L-dijyt2cmA-xq7F_mHY_zfT70JvWpQsNa2WzkibKOXccHCZjz0XgLe5TvSM78F0OIVRNstJDr1NJRpYNIyXCSJfQJ28ftUYMQiP-m-SWIDfvF10CCyd_SjsJ8bsMgVp-2uCX1vu-8IVavXGraO1ZzERD2hk9Ul0ybAQMcMyHiv9Nruzbfyq3Q-v_YH9GcWr3G9lNRikzSploFS3NWbn8WRpFFHmrLccCbrCSJcubKC66Ria9rGJmFteaMnrmrqJDhynqtmgcPcxrDE792cwkUVXRjgx6-Bx5tzBx4SVl-CgeCUe4o8CXzMujrYU4RbquzIibIdUs4IqHcs6BqCi70DWCyzw4d5Bp9ZzVOkqhI52UBXaWI52LxmCvImOt57Zh-tFDt6Ktl224KXld2OfdOeNt0egRk--iSSWEGoKBZuT5Ce0TH-n81XZURCfKv4xmeHe08r0Vvwl5T-6VLmcfpsOD9p9olYJRCdbPsoSTjvv_yGCKdd9N6nkor-oF0fowxZej4RHYiwItcdi1jJOs3q1ka8Xer6wHGAJoBcZ7QZqh7zw2D5JWtL3kJit1Os9AehmDnfNSMKU4IWeUo3zrF8qWxOMTNM380MUFRbvnDuIITMq34QN-iAuF1JLHo4tpz3jQd1iq5cmVIjFGyBWbMArQRBqamazCPzz0WaIRvAi6NE8_BWd3wPYeAKq7PxH6SsBZNv42yK1or1KpvRYvzF4prKMMu2jF07eZQPAm5Ax1DDVTGNZQXyeHqqIqY2XJSQP-BCGciDzSmn4xccqXPkH8cF9plKZxyLP0qlF_q_pZOv6BXRLfxDmDPISM9Gmqh6L5Pu2s4dL3sxPIVecqPx2HCmo4sjz5t7VjqY6irFbBPQbYLntm89cLUXkwKBW1xmNOXF8mqKLqgVReoyYyWTn8H_xrMXLvIeu09BUoqvMEGiyffe8rGaYoecCwVfH8z1rTZCIRaZazkpMr0qSovX5FaKbXCRZ_BNeckoJqToE5lRJoVQ3Sl7mir10jv1BGc2TB6x_dgIoXuaxxpX59W05sOopujFI4i1gn-CAUgGd-eEEbMi7aulnGL5QO7Q3eRFw_JWM53-nvRMpLX8s2PzGIpnMa_v1cKVHw2y3alTT9tC33TPQ4R3RXk4H03SJRXHOiUqTwDX7fVs318yHskMjRvB2QkR2KhwoJ6IiqgTeDWSAkPl2NHQgch8HNW_dWYyC-i_6ztp\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671b785853e353-56470683','','','2024-10-25 10:52:24','2024-10-25 10:52:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41257',0,'cd-form-entry','',0),(41258,0,'2024-10-25 12:50:37','2024-10-25 12:50:37','{\"firstname\":\"Kiprop\",\"lastname\":\"Robert\",\"email\":\"robastarboy@gmail.com\",\"contactnumber\":\"+254111214043\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwg-24BhB_EiwA1ZOx8s2q3_3Ag4YvNTcubkCNA3KI2NPRbBu3VV9zwCu0TreWLq4WBLVC8BoCfekQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5kgrbdAC5dUrmKBUpSPKZnBcLwNtnsTAARb6PEkJ5OOiSBdYcav1KEBAQGlkq11xK1lNg3bVl_MiJVuU6tHzaPpBWVpC7YpV7wT5x7IWVZq6fRISQ_MOhQvRtfsJihu8zn70wpBVNM5QaaxpbpMeUWCdVpsG-N702DSK73DEfRjHMkacF6fPW8ybF2WSFtiOwbxuc-wVVyfP-YmlEBHSiDMf69Bi7SjW7VPAGeld20BJyJPekwV3NuOGaqDLkHiE7Sva6-X1F1kI4pAPVlCOEdLzRs8RmyGZcW5taEQhCmbfiGsK0w38xBn4rmk-GFMbu0MlsVn2Xy_bX44EmnAyZ3OzecriPMfeCO0XnWxZicr4oq9HkD7aReg2cOkzQ5qMXM5zTouYDdMhywJvQTCakyclFetvWvXGKbBjWHO5oVvnjmGIRT4XTXtVTIfgDSDwSz2pZ0XbnkiB4wtzBAyS9pTcYmH9nwn0j6fwgyKzNiDL2ZxsmtzpLz-zHQLiE7N7TGXUY6C8I4PoF9Sd35-dTZv5DoiwGXvwZMUcmSdYUeNX5MKywqNcgaABPPba7n8_hjpHQ1aA7UvSHL-7H4n3Sf_bJ0EiCSjhviYktyerb7uUX9qWFnlrt4CTrRa1jP2H4iioKLu0Z286pVzsMCerj_RRXprYslACvLJcYuYj4OSfKqjC-lQPAsuk40EWCVAtzhIrDVl14vHQMw7YwOZrsRGrNbFyE0AUiZy8NZpz0sKdlkNvjYE6zOJQm-cyOUQqGO5D0vGG9U-GFRZDQAOlG1WPf13v-zZP_LKr2wz_d0ZIipgCCGpAw9KZdSrzAk051CLDbxuQwtIrr4AR93PX1CxtQH3EqTsl98PulzwJtMjt6W9nE2scQcUQ35_1GqdDxYC4hb8-sVVXO7vN-djVjcsWX-2rlZUOzPtsBnHPO3AO340A9Lnph16hWXcqPsNOIumlk5YKkfVQmX9PHhoU-PRnf0gcoms1n-yFiOg3ErL_zvwcDGd7e9afmHIVBWS1H7xRqi3PeCCCf8h9R9M0UnYKRXKDqeXB8wpy9JO2mrm25xjW69sBwQK91XI5LDVzt7uatITj9sCzxVNWKZDA1sCkOoOUvFJdOME05LTAOxnjjh6VdO5wf5JQd5Uo5rIIcwqM1_Re1IJsiu2354dWXP-CitxNMFEAx7zB7c1RcbqBOa7jaknukmCZKbr03f7eTIgvEYqxhgHuKh9AoGkjiuvQHjyh8HpcaT8tOxN24MDRv9mRaa8anW5gapTAtF2x4LoiHSMhYyL3hVx4O6F9c7geBpMA47IzIhPfYQpUkXH709vECVUN-wRFdhEplg4EcCb0yWSP8Ixju2IXoB0yz0MdpSokdeDzhe4zP1E4IPa7wKaAF8m9GqT_GpBX7Azb3KhLWMVzlzOImcbHJ7J9vtcHWAYQk4Fa-T0UbdMRibAGs6PQk_X2BCqDgwEqtKuAg7FHE6H7XdsBqDcXHvljLihbpARc7WqS3mgX-jZvwDahIzzZZAyON5SvbPOqHOsaDei7WkltEZH_k2JIpaOnzULUrIHz9kBs1Iu5ApZ0VBow7sIxhiNKVhNvLtawb3HDM1Vv20WIFDt5lTeoUM4UY9tYC2YEZ1GjbsBY3rABExqop-dJX1vcw9YVwKTIX6hf0UDj2KKcX01Ma6QnXzjZMnIMD9gv9FRtoU_PpjTHC4AUp8XU1xd5PI8A1eHWQmNUdAF-h--XqPb0MJ4CkQHGoezCvhaR0GjIQnVbKCfjbbbL00odUHzfJmsLKinUFz-f_MFWsbGPvVnX8YJTElZ7ybCqp3YLO3FfrYNkEGaTW2nLWcKP_VkQP6aB-Y7XIQkc8z9z7Of6g4ETl27ySPyoaP1EoAqRcR6VweDizPd1-iJLVJUj6nBlHbI3DD-PB6wyB_dTYgJnUWM9fEjww12K_gfadYcatQ9bIcOuaTGx_Bl3Yx3D8n7VgBc1L7CKFJ9_gjasFnxJ5CE8ThA05sUE5ROnRKvD8kDnrdUC1zHLcrKxq3zjnK9kPz-FxErvhe3MftTENsNV9Rr4-ERPiWAeIqGJJARUyS679LOo67aXPGrpd0Id-KdyVauZymhiR0NYrpoBt8AcDuOMOEBPsM-6QAAhweKf4febE7aTLbro66pRD699ZLdPk-AQds3BgecrEMrrrl\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671b93eead8421-64295454','','','2024-10-25 12:50:37','2024-10-25 12:50:37','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41258',0,'cd-form-entry','',0),(41259,0,'2024-10-25 13:14:39','2024-10-25 13:14:39','{\"firstname\":\"ty\",\"lastname\":\"edwards\",\"email\":\"edwards93@live.co.uk\",\"contactnumber\":\"07446984375\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA4BiA83KFpu7pC1Is2P96vnx9bk7Pmc2R5cibKYyXgZGnn5AW6cHnJRIaoB0eS_QlwnSUSd2jZqR80RCLSrDT0xts7r2NHsQrorsj8_AYdsvs0w2o7URMWLnoUWUWcDzgTiQLmzMEANVl-QvDjSOrzgU5SSHZvL9r-TOL_-imKEL5dm-9ECUIcToF-4TuHfFfHFTpKYhD47o325sj9LsgOUvVAm6hvR5iFJwl3gV5IU20pZJ5cDTtEdou71jVp4qm1J_XjTamJLF8x_f2q68U4-ssjSx5Ws1SWMlhf0sQsYP-Ij_hmPGk41CxgmCeILfFGz8wa88sUcYsvuWwG7vbKxquuw3JPyPxLszcF3VHQBj65TObbfBwpFW4tt5_W9-nJ91FApRi5XPYQaEuAts7gOJHUwp9Ho19X0CKzbwhm-eH-hnXRP3sYt9coe7n_YWgdmVydaJ_PwBBI_s8WRKfV2XSXQDX7ZvzfEtWxM7L0_maNdC3cR79CJor2s6cA5nh-SWzVgmV7Jl9nbq4Dv6VqXPuKPwxDilELOSilqzxSFmOXVR-jAFmpVhpSL6CJrFo7971ENgGUd41yUWmKE7OcBh8eZXjMGKZe7uKYi3bBySVZFGqQFutufEnq9GS6P7o-igxGcOIsUgQ7fw9zWfRKB_w5zdgyof9K-DJqarYUFgBr9hq3Q9cPCRLjfw6Yz4v70fYFMbmEf_JpcmPVnUrhW2zBBzsp7hKO64-ENGBXhu4eyYzSRIT16kYgavYP23kGIDG8vrbp99HAsAhi99qt5sAm1FhUVyeHP-IMn6EddK_Y-RQthbsa1xYqSk4_gtmmvkwaojl_8nybVuUCmSEIN1ST46CPz42wyHI0n28b0b-skyDrHbHrPUgqzA2JqmBJVSbkA4GElc339zLsBM7S8MXoj8E9pV_zVkycMl31Z1YVECxeJP4sSvAN9IyqdDzYUPePHk9oeS_fwhzZW3iWI3xCkRZESxjmtWpbNQzroBqmnL4v1Zun4glvG2R3wLPlpNfQPyMlKOwBy28pGsif9pbl8qqQzmbfugkNl3DJIz4EMM4psQYg8PqS-IKi3JZPl3AhcxgmobLIBf6lah9mMTyQ09MO5EOlh5vBBwTFcAwtvUqBLPRpDNacIjQPWfw6U9EzD9uow6VwV6toj0W67CaROdY78thP5D5fMOa73z3NoeSBerXEuA-5IA_OTapclaxr-ifwVsObKmQ7kg9C9uBzPj9faAhV78TcQPhfKNjtlZGJCnFaEkM3L-_t1pr-NZroAe_EcJjhBKLrIid3DBfxPJtJclTOzVtUtWMdIurZwkruWTpAZ-qn6Y_RQxnYDxslfzXm3RxRMgwDAKAAGRwv0R6DrO9qxAsOXGy92MOiFoljMbbHzEuqVvv5wL7abrTk9QIR721LuRduUCYUXw-bP09xWVKULU7MFJeSTbZEWAwfH8uMuH-IfYmJ5Zwaw2D8vHEncLGQDbkYrcq3ajGLy-GI16WSwE1iDobaxj4aX355LiqJz5fRDTUNioed9nfOUm0IRqs21GIAoKO-PiLXE6K4I6_iNu_b9ujIbVSEdW03nfQmt5TJvO_CdUsUe4IKs0d86jlosM9YkwBuAwweqVIZcsDbFD10A8hVQXyX6mSOiy8J5guL_R1Gfmyr1KJRfOHYQ7sANWjMnzQNwzuA_p6JN_MC4JmlJfFCp7So-8BW9_iB00yYonYNFvRJktDT4FvO8rZl7lQFYa6SBO47bXV6SiTlt5uH4o7X5GKNyL0GJIdnrJWgy4oACNo3b8JVje626vLTdypbaBPkXC7SwOvBIf2hB4s-35ISZSM7p6Dzl8ujNcVgcEWKZw8JgoZIEh6PFo27-r4eR3lC8Z1VDPLE7u0pAlBZzHfFLz14Rsr_2hNKNoFO3wCKPuALmEtVNVztNYTFbGzUaF7uPOnecNQZU9iMD5FpxjUJVKpvM-94J9s7ocHQ7sz3G0Wzl9ctIwO6khbeD3C-YYrY1ogdkYbmpJErMTne-Zbe36dp1d5cGaPUoS-vz9cw2_ECIAKZdf_UDeJFzb5ZLpl4UYCpntviqgft7uWmHvkGs0-41qgUdq1DSNVl382aJVQd55BJ8HbiReJ9GCGC7U581d49zDfgZB2V7mGutJnCv0MHPUg519TFsrW6YROPJ2yJrwSHuOUBnalo-IJaDIjX-rojJFGSjQCkZZDUugKHiuV2KaVk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671b99b3aac014-46714810','','','2024-10-25 13:14:39','2024-10-25 13:14:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41259',0,'cd-form-entry','',0),(41261,3,'2024-10-25 15:12:17','2024-10-25 15:12:17','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-10-25 15:12:17','2024-10-25 15:12:17','',39245,'https://biomechanicseducation.com/?p=41261',0,'revision','',0),(41262,3,'2024-10-25 15:14:53','2024-10-25 15:14:53','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-10-25 15:14:53','2024-10-25 15:14:53','',39245,'https://biomechanicseducation.com/?p=41262',0,'revision','',0),(41263,3,'2024-10-25 15:16:38','2024-10-25 15:16:38','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-10-25 15:16:38','2024-10-25 15:16:38','',39245,'https://biomechanicseducation.com/?p=41263',0,'revision','',0),(41264,3,'2024-10-25 15:17:49','2024-10-25 15:17:49','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-10-25 15:17:49','2024-10-25 15:17:49','',39245,'https://biomechanicseducation.com/?p=41264',0,'revision','',0),(41265,3,'2024-10-25 15:18:52','2024-10-25 15:18:52','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-10-25 15:18:52','2024-10-25 15:18:52','',39245,'https://biomechanicseducation.com/?p=41265',0,'revision','',0),(41266,0,'2024-10-25 17:56:11','0000-00-00 00:00:00','{\"firstname\":\"BRIAN\",\"lastname\":\"LEWINSOHN\",\"email\":\"brianlewinsohn@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwg-24BhB_EiwA1ZOx8hceyciD-AybfnoWrhaD-_TeRGHZazrsT35zEZUJNwjjOGw5knbKhhoCW68QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6TXiIQ9QnsYYwtjDtp0uMlEF5EAHp0MHSRGzTx_BzsKTrcWU43dKLmofKP3W1MtI_6rOacboAsuTDjpTeDdzt74MwgUFESmwpFwXS5tRSTSyCcUnJNy9-DOdnPxBa7rjIFTGgQtOjKUXnJ9ORd66TG1lbeWthU32X3cKdnCT16dTko7y5kApqYqV-_mKErXkpftiRz1ygvFOgU1ei2h5GchOjq_paOfaYsjrN-rqT6m3PAyvRxZNXX6p33gtm8mFHu8i1jb_LwHHSW-EsY8IER--eejcHuuwp5e8B5DiwwTqx8RbALM2tGFCvPjBNF5-fOsOVHkO15FnzXhEt5TU_Dr6fd0gC4-aMqZQzUwnFhtnw6tDZ9yfS_hN7vFg0KEbeH1dny4fF4I5NI-SWYWOzjrv2g_5Y_UmqYPggNRhI-ee4w2iADd04wvdaNdNwcSkkv8kNavW5i7kwR7LU2zIIRAiXAtN_GRom3xcEyYRdOurkkRzJ5reKjz_vYhIMZHVwxpaqFEbb3tOCcgDU7RT9VFQy8MKVcSe4rcRaVn56gdcnSRmucaHtukl0QQ9dclI_hK8qL0DRuCPVVqvU2_hBA13QBwqgBEU0Iy0bhf0KptZR7rUZtAhWgUt-wAngQZHkQbsawaxS9qWAhrVhN_Z6eHeZVttoRLLzxpiGG0xQcTH_9AhOdMQCBggEZMlvY1OWnaTzxnxvbf4WM4Bv8Jgof5eHW2VNYLTucMXL1aJqHA4S9gfufZlKDt74D7D_V4NqfsUgOi5qkGXBHTVLR4HLjPcwlbmcjO4E42GhKJqqSC0Dz7Ny19xXLEKFsY-VPT6lyEOt8Nq7Hj0LeiD3WWV2Faa636t1uviIMy-iS_WwKQ9MBvRRSMKKZC5zEc67ww92ZRsA4EO0dgrjnSjMG2FnmbfzGQjrGnnCRMkeMBxrsr_CBFZBA3v6HDkQMwI_PquBf-zYw0698Mkqe8VUbpXmbFlj8MGUnHcBiezYCW9F4903ZXaa3gZ-wtnRglCyouxETXmQJXew9E3gB6zHJIVkMq9TznNRgROH0CN2HSK2_4DSplC4mHzYNnlepY9xyoQr37xQWh2uA76SnR18Je1kdEK2CW148Z3p-E_APXvr6qqy5iQ_1KU8RvB0lAXnT4mzvZ4Gz5a9eE1TkY76bh4QL8h21W9Cum75LAXt9917beptjSCU1-kluPsPfBJ4efo3_4rOPo5U7yQlcbw6iEvlFLX9Aj4fyd6RAv7wM7ssNBc1PZ5K9BTl-95E-rh9b3-1hhxg1dvMwfwREhqk99pv9JfwUuAmeKxROEuu6XXmR9hbbxsc5ER06t1ZRU_hrO7n5I_VDLrkFcmOHpM7wo_iWSVi55uGMAV73F7K6T5mBvkUZQ5XjLnFj4Mb727hZNVbqD72088buKofDtHvnFHSZuaVjQ220IWo0YZH5YS0rEVeHZRK7Nx8fU29-ng3laQfBawWWCE-mgP8BP6z2-n9dVDSN4W3H7uhHriL5uW1T80miTnVAKDKr6Xj6kog6wgDkUQOCSS86Fq_QpeDcBvdHGadI4TET5696vXRvIjQTkxTAxEcDVCZKavtp7nEl4w-K4RRAj2wFOOwtsuVTu6iM3QIHBohv1lkDuclh6jkvRa5PjFnoWHvrx0_UJwy1aWX5PGfd3ClGsk4yVCHY1_gVnD-oVAf0qeVnWVef5ZwId_ANic-tdgi2FeK5muTW8A7aK7aWywzmdi7hOvUXK8TNENaxIELm8bBBZBiUSorJjT7wQ1FzDpIFs3DRvqKUr6fCZKWJ5by2I6u7ci7R152Agc7EcbgmYcSmA8FNU9H3aZ8-npvr1q-xjlRUrPlcTjNlbjPcI0t0JHg76xeyvydHal4YIFKd0XJ5Yff-_l96eQ9ZKzETfTTcqFr8oCh5VD7AVaIyMMuhvrFIl7g3_mRAVr8oPA7JIFo-EJ86Tljv2l1Zb5vdsZhfIR8jlRzxHnNTmyBFzaRqk-dv3cWyMD5nDHjrBA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-671bdbbbc1e233-28621776','','','2024-10-25 17:56:11','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41266',0,'cd-form-entry','',0),(41267,0,'2024-10-25 21:48:31','2024-10-25 21:48:31','{\"firstname\":\"gabriella\",\"lastname\":\"de Vries\",\"email\":\"gabryfree@gmail.com\",\"contactnumber\":\"07853051462\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwg-24BhB_EiwA1ZOx8lABPdkKXqgH2tOdisoBsPdhdwfE-2PYn66oHUBBlzPpg-szb6FFYRoCLg4QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA42rSZVHqoiPemI1blqdKjJPuRQ9LRxOhBHXYXpf9IrfRG-P8rQiEtqoBFzlSDiFCkcDH22tLcXOmPxjyw3Ll5KasX05W8jSNRI-Eukr0abtGluIPeXIY0H2JMAspXfAchcvjDU8781tvi41ka23bSqb4J5_s9BeCsLxC4rH4isaHSp1iAtEzdhXrlekwI00ivJm_pV039igSnuHiERbVcN4mbUixFtc82dBf4Xye1ql6Av2-RqsOBpNIJsvOnQJS6jpcMaLed5_YMDYVUCEQEsCtU-zqJJdaIhfLoZxDBIAjP1KCJtSRMrCD8aKtHqTJXUOPvLT_1i8KS9xvMYoGwc0Ciau5xlwPlvd_sH6uxduPuXvMjaiRDubfaVPUyuhlhp93WGCmINWQl2HsBDqFdvtAi_Jtt5YnBkRduvPV2dbvS_daDwVKR80jdl3Z-GkEhvz-5dZQjddch6lUciXbzi3Qoq1twJOlFvDPXFzZHiBuAAYEZCzZEuwtZmwZDiVM8dw2_KZrUfzC0Q3QfdgdcClY3Il0YBeEJkmnTKLjddQWDzHCuPxN3Fax847H9h2ArEqPC_kp9KcLhoKOWrSShx13o-DcQvOy0IE1fnd1PWvu7EFdH2r8T3Lz5JCgcagKiuXxmALxXu9Rqiyh9Br_UGMNErO1ApKC86wKvCXH5zqMOQuzC9PyHYJhxMN4lFJOH4qBdqQ0NgB0ABIq6Mpa9qIzx7gZc1_TWJQWleFsQN5CmQdZUEXwvgHtMxxWiNWIiDvIahnF_ZV7qcymdY-J91_yf5viJsw8hjp8SicBPRjmDcUy0wqlM2_pYDGh0eN4BEiniEUTKnc5T3xtQCh6NiUgOs9fPFtXeTKYI4Yzu2aP36pp56mdSoVTA8DGQO7ksjJKuIYdAd_hwotzB6tNQyoFIhRKVoFe0IkOwm2LDZDtL5PmW2evvWBLxGRw2xquxQD-52jMWYCNhvo906b5PbDo6pGsMCotS1bEJ-8jwCkornTa_3E9TsfsEO4hs10RXf5r7dCp-KZqRiaZFXB1jXLJdasPoYig28IDg8ELI5-NQnlWpV3JzLdBxdLk9yCcldCr-6_QaFQnecGH60AAJ95floyFIxcPaCZJ4SjgfVhyOg17Q1jqQzsNR7cP95urUOT_vY0C9xP2h5xLbLwicy87hPiZvurSSheHJmSSEL_aWSzRNrP54_dEyBCGbCZApBATk35Q0rnbp1Gj6km1K0ItgMm4-Dc6b1IlTh89ApyhQn4oZN5ugxv_pExnBif8RULD6rgmEXTfQCmXg5BVuIPv5UD6UxiBVqfRfUT3q4r_npV2m_tjn-EHL4L_3XFEheh6kn2EpH2_DHytC43pV9ZUXJ773KEtPO7TWsH6BNypDOa7S_mYjkpJ4vaVqG9eTQAqVQdLLmj_-9E9QzdRQHmPoleARcXxaWzLW9yKZ5W1LPZm1i1rfyj9qMM0SyJhqC6XpMrEhFpt-XwT2kN1tzGi0SlWJ6IpuE2Y9R8ljqNMtfM_2LtUkvZfbi4h1HLlf_8R-Zb1X9ia95ebhBC-mXvQTtINnNyk8wIU8X4PE16I8li5nEEb2YDk1CRO99XrvhyB2uK1dB1NOQCCZwAtjran1DS_wmh5iDojhIV5sbI2wulzgyh9P5ewXc0XyiGTrmUNgm-g6IyoNMFYRGGw4IjJ_2cw_3W9y0IXnJT-gB6KuDFoRm5Gku7UEkGaEfjnUuRJ0H2xuGzL4ApfrHhbgManMom8aBMOIhhP2IE_DffyTuefizyMN9QrHdj8IWRfoGW8mdcDamVaotBfaEv7-lpQDRxpPYZl2Y2J3IXQx-SV40hYmfd_TrrW_2E66tcBPi3Q4503sbhP4r1AT43wLtw08zUArJUbvu-WXia_Ul06Zq-DysUmir-64I9-Z5elOFXRvANjVA2pnZSh3dZMhA0qcamw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671c1222d66128-40401564','','','2024-10-25 21:48:31','2024-10-25 21:48:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41267',0,'cd-form-entry','',0),(41268,0,'2024-10-26 04:04:25','2024-10-26 04:04:25','{\"firstname\":\"Eleanor\",\"lastname\":\"Cherry\",\"email\":\"bertsquirrel96@gmail.com\",\"contactnumber\":\"07914497132\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/what-exactly-is-intrinsic-biomechanics/\",\"recaptcha_token\":\"03AFcWeA5AAfcVMKuHTE8rn8B3W46haz1iJNzgppb77QYbu5_i2l0mqFKOTX7SUe5Bhvu42wuyTuqZPrImTYn7yOEb1wC1ohD38kdzQ0q0_ZXIvKSwxoehgCrlepkUz9BM8m-1ovRTCE3An7FVb4IuquMYh1VH_p0iFibcCi6mIBFevO68Dm-oGc7CQq9GFhTafJ6vf9JmSpPEAvO6c5KT96WC1iN9mUEP3Te8XvNvJoiXPTTnRVhII_uWSuPbDhSq4wZtiD2D3C1cs2WYX5H-eziUDNHxt0ZzmUy7_t2W-0W26godw-Zw7hcjlgs0XbWav5i35WU7uefpkVm2YHqxkhzql0ExR2lHRl2syTnZI3fcG--miDtdgWVCzkzoY02yj3Cooe4dCI-WIwY4xB9Mo5gcGzFXsylS5Sv2Yj-6CU7tgRHRpLE4jk6sqHtVxf3aAMcok4PqMqSu9DSEq2D2sBqC19WqfYsKKqqUnc0Pdw7zLrYNGkJXZY44tJpa_B0k9_DerWf7DntQ4qDdpNeIvCrs-Qxhm_diJVuycSQbYWxkUs7xtpeL4lnUOipq6Hl5_0tmI6dogamuUUf_buTez5c-DT1qsXdr2GY1c0xYVSQJoP-rhvJS_MLDjKr5CCCGwCxagPBrD1OvwHY5fmmAoX7y1DOatgd9ABaNSf1bPMVh-kDlxNJJImsYVcetko_1tn63dGpqeSsz6bwOTpBrv0RgBo3tlKsQ3nzNlMtQgh3RTomgSkqQXce654c7tXwa8e8Xr9LyhyzkCV5dv1pwIw7xE9GWSyLWpwkivI0NXqUoJ6W-lquf9fW50F3qSbR-ZXfxvGzuvbh4tL8ml-v6Y4sEi2J1_ILdCnV_mIecLedXjgAGPwbNQky7tvIYKmBduiwYAhgp80wfsv2fseNSUJ_AtXz3xBYPOuFvl2b0YoRfwllgfDlhvO-2uNUa-h6p6NAZ33Y6bnYIMDad3mPSLo9RZmmnFQhjui679xQLrtx1-WEROvV0REtoECTLXf7guHWJn43Gxwn_dcPpJiyq50B8S38T2wE4aEbf8MvVvkyEQqJg7uxGjnGKdekk4bObULwLRfCTmh1pCdyfWuumkLsDJHGLVeSFikPJvQLXzTYUzdQnC-msMGQtPx0ufI6C6p6fML_7f-uyKHKknQvGrEJlWGR--tRWl6drviS_BdVOxwJQUY9QLONVZAr4dclsGhqsen3TFFzNpV5bwhC-g_6c1FxFMLQu1IqsdMsVAPoax0SNMIcoYCOitUeGpF5dZBrs9ftXfs_DSZWWcQZmD8k72E5aEziz57yG-7uj_kMR-1VLavROmFZZ7KVvjjz7OmJ-RCicVK5CEuRgDwYX65PfjkOgI0tKp6-Gr8EYHsJRaxoj7HA1HWwt5RNsO_DJ5ACFqNqkq7d6_9GK2ire-c1Gbg8iwn0VFSGvT8x2ppkGeDdE_zxG2dkeu0lhY288dP_wx4TsQs8oxn8DiHBpgjUTALu-t4DqlmjDmUhXOup7i_M5gA_tfvMkRDA7XFOrOI6oayzKxwwbofFhnaEGmD1B1hcQghH07_rzogKWV9tX2ojQ7phl22jABRPhLEfzlDu2ARtAV84bdxYuRIToqsabYp2eqmqlFs23lM370mISYNpcDKuwFYFsQilJiH5xmz8JTrMdEe9R-3uJmSgr8YfSkL45qaQ-jhlEyIodqqHVq9anenLiMDK6IhVozbF3Tot9tSCl7ppDzBoh_bqI8EINQ-l3bqwupAPrPEwua5a3wHO8SKAB6uiGpb0S4I65HM6SBwZLfyc4Xh3nGAPDYfdLCWy9qZDxKq96vq9z0kPgTHhRUGZBNNYeOP8x-oi6H1s16u-vUud-JtXd71czCuaLlP1FmF3bk24D5IxyjHrqM_455Cdx9jwLPLdkQ_fTnLgYypOZlUGwejfSd7KhstxSxcUrLdFBFw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671c6a415d4c79-62854080','','','2024-10-26 04:04:25','2024-10-26 04:04:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41268',0,'cd-form-entry','',0),(41269,0,'2024-10-26 04:04:48','0000-00-00 00:00:00','{\"email\":\"bertsquirrel96@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"9\",\"currentpostcode\":\"G78 4AA\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/what-exactly-is-intrinsic-biomechanics/\",\"recaptcha_token\":\"03AFcWeA5kkup6ZXeiuN11gm-EtGq7pYdQ0NhHARawIb_k8_I-hWfqofPg-snwBDIBtAMaofpLVTG-o_Dkg1kakRqDDbBz9pWd-RR2ZhaXlQrJMdna5fO_9Eu373lIrw5QcqtPcNY2lqCFf5FN3y7VDxX7xfRq5S9MuOCAoeTj47ejMpsMaze-ujoSNwuEFKr_tqug7g8XlmmIjFwufECbuDtJlLiSortAUGB3mGku4RDXYUoHST8ukdc3SpaGi5-7S5Vr70F4qMTCd3wzXgr1NOwZQdg34vJxXLJbS6yuMzvRXA6HuQmel8KvUKs5OLtdPxSLlPbcbX-a1VDI6RSrGczSJyjpQ4zDdpzDwAI6z2OMSoCxPKXBZmYIoQeO5zyAwOwK6AUtYqvuapxnBUSndDY0-2x9mR7oLHK0_C2rUe6uqPTmIyjD3Hs8MPINkkIU7kXL68C04HVDv46I_sTYJiI7s0YDG1wAWZ5vKehT4fzuw3zXqsyibDi2cpL9vElaDi9vPFv1IBA9_ENtaoDzr--7v09kZQ6f9Fvab47oHB8GmMMk6SIAhbuEOir1NY81CXGUWJXatl5F3mxu5Z0wm88iMDGRHkQfJiHJUi_IlxTiSNlEl1jyes3iEk56U8lSxWyezCK9EoD0zsA5CKn03FOc8DZZkDRzOI6fei976UmGapeXoG81izp7cMGToSKe9MoDksUt5Mi2HEobh_iE3qnBn_9hf4Pp6fstTh4L9iOEmG8fBzgNjKtzloVQ7KuwddSAlOS89NdveUvPWSK4aWpN9CFHSHtLzegb6mxIAJzIj9YiNymGCeDqto-sss56P_Jo6n3GmOltU-Oqp-EbGjMNUk6tRV2nAVdIcmYtNQZyb78RaqsnBwwYoBCTC_NalE8eYyKFBAIv9F7fuQBvOfQ2TXjtvsyxcgIk5XyEmE_XmVhThBg_wGyHuuVR1koEBLsquJRw67gfT0gHITn6sWIuaeVuhg_Z9rDYCiv7fKRDKSVKBQ2Ddm2EDCxVscrzydFXKWBOXgPD6Qk_VOXoFgY8fvw413Ij76BvxiSeJkhqfbbkssQkB3zTAVm1KxGp3sZuAPj_WtFR_TiHdWid6yia6trmE-g6FEDhtBjb8RBJveh-blTZzIRdcMynlK6Qi-gyCciT4Cc1tB3gBdDDK4324i_eHp7Ym-K8NLYKE5Y2e6ibDfJCCfF-P8ep8fjrlOUw0nRS-iYIIgIy5EIDPhbTUV_IThvOCc6fDz36-osujRt6GnUiRm4xmXCyH_k75pkff-_O3EIWAWhtzWGjfzHHw-cTPSwCCrNxVQo-LhB5KgYKTuSQGENMixqTr2fJWIeko-Ho4EmwlbYUj27r234_z49gawbspWrZKlZiWHbIQeSASioTig2jCZyZ__TyiF5J4MqKhiGCtWI6L3ZReinyKsGViAXX7797xaQkBU9Fe6PwbNYT3LCTAQeqxZSmdAEn_gyZ8qcrX7lZQ7LeIsmvV8HZPFJx6L1C4Z76yDq7EDlm2l8wsDubIF9GxprsmwAw_voF4xLZMpcqJTYVqpMFxTBON-qXY5UXG465aliHpdA73AuJ6YO-yNzfuPdp1EgQR8YSqAUuCIklUHvZeXcE0v4V-_dVevx1FodFO9j3AR7-XfavZROk85cefBrBP6ceVinT1JNnQGy0VlmbeMlb74f5MeAfSgOBBm9uZN5GMnHl4HnWnvCazieOVHT6szw3NBmZ2U4ejkXbmQKSiSsDgBZF_bhbxXzXAz0QODfMYo68xzo_79OIfR9OentlgjESTi-BAfHrm9fe5_0Gp0CN9ppKgkx29FRiayHnSB8ygAjp-kRzNM48PMZQarzwJoBs68bzwd-74DZ1tk6bBh2eMGy7JzgO8ThJRgrSDAHmGsHjmS-D6HNPfn2YotiK7-HuCfSgFLFEsIm1GOuujgm-zz2jIb7wDg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-671c6a60849671-86981981','','','2024-10-26 04:04:48','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41269',0,'cd-form-entry','',0),(41270,0,'2024-10-26 12:24:10','2024-10-26 12:24:10','{\"firstname\":\"Hassani\",\"lastname\":\"Chande\",\"email\":\"hassanichande@gmail.com\",\"contactnumber\":\"0652617039\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwpvK4BhDUARIsADHt9sS-DbGdin-bAsvR9EIsIIWbpQ-e__I1M4tK2_Xl8h6JayllwDtyNDUaAoCqEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7Kez8Y6LykQ7R5wCN-GjRAWKRyXHjTLbPSZ7dWfekBhevxwlfGNa_GeRqNmoQU4pXcQsn3UJqdooEduvxers0bWnuJjHgXVcjq7IxkRUWJrl8VM374C9OjMUQPD7O5K6JiD3IHi4GsuoX1Az-EvJ580sn4Mya_59m8tjVDmU5JIZE15Azph1zQggetWWL34CzZDJE48B98Leuq30Jjn232loCowWSS88BPGPvhFcmqsnbvH6gQBUdukQCyRc8JyH9TdJ_b5mppxqzbImvsBOUYz9Byyv62UhpiCdTOS5OcxxllkZyZyrjZWzcMQ22VHgo0Bo9httXzaRPcEsQNs2lWkxLnQBekoKqa3_eiN474J71bJNVXUdI_pG1mxB5xZP_pjzWMxCMPykBvt1-cS2xowZYFRIJRiAnCLb6r16eUU2E3mPVWnCxsx12CtYPOc1JHAYwh7Yiu0IceP4kaawNg-YRL9wyUxV57nI7Btq6RCHpdEgpcHofn_crYzTsK3WLHEwdF8rR_tWcWvSjZTkUR_ckXavdvEbv0JpWIk73XeqhbaDjSKAL3F1vyzg_QXXDGys1bDecsXr_WPN1P3zRYXRmyl4aXxrvcmAWdSsbEwqfUYjarvIIGFvD0htE5UFqrGcddrFDnf5i7kXsaMb8o6fqQP8RHK0NWFBSJiprjntfLgvtFGmMqLasa769InuYI4eJlbdqLGn23ahVLfYL8M6wM9DoWoInz8hgYrgF1rFLfk4VKYTOmUBUmLLY7PAfsmJm2ReMnDFIBJiScTEu3BJzbCcmCSXOWvHvIsfAEju_1ij2siSr86I6LP3-fYll3YFR7Dre0myaOyJiI0X16EtGdKIOldus6Q9r4vBNXOZ_bSKfy45U-N5heINhdlxH3O2UuRGBVp_LgPobGzRCOEwYB9EybWJHBLPpp_wJcCtb2GBOIgDHF3kl0YdnyICVYqWFNbympDCgweIC-hFAr2BTQRPLzRwdnqoUDQHzbB8lmb_ZCDknisMaGcczcdGxOAJyl9yvIzMZ4Fdld9G-atriBiOGJN3OU8FIuWD2GxfGYXMfHiMZR3tOHsbBpnwLiTqNAFLsb3epVacRdzV_rbkUB9nvjj5DI_D7D6ZDslvZvOJny6YSxapijsuLcko5OXTw_MkgNw0Tlf4SZzBdLsYUYXwM6Xi1wXzZ--zBYkDOJi1dLbcf-pwJlMhkzB1dE1XxWc8BPXVYMBDuXzm9ydqRFc8CgPK6mulH1G-iugSSwzBCSwBvkm81hZOOieqZm3zcknPs8RsoCcTS9MGBx9FREPBJpXDZw3yUIKSYQPWOm_51cvpRV0TWVf-px-wdg_3su9uul_V_zSv6dft5q0cGyOhaeNJiACqjFhKR39SJGlx9nmsqD6ucwPa_FN37w-P8VlaPbeuN5lOIE9qSBWwEd2mFhPLx_uGamd6iYWpjEcZzjuZhCsWVyAT4nYHTFyy7cTtKvqHE4OeG_molzHQKfwUI6DZGrqgSEMUXQFh0gtJZwnRuo6VVfYe7ul-kXhKEp04TwrdDRymN-5dFqdqvP_Lzx8ABlM35DieYV1cj5e52d69GPHXk999GLUCqa57iAs7qQWFRQBUgLDoDHp7mmQFM1BggGg12OmrBi-8_abQU5E7pNNDM1xeu0H3YKj7lKvDUwVdZhrCKaY3mdUSalLdgErPJ2JdAiC5l4tm18cJnQnqTlGzk8220jR9DVhr83u8iCrdwFDqfwSGtREmO2zbPWXdErtmWCmIO5QHtNV6eMv1695aVviH2KTS6n9g4M1qbOfxtpNwrX3sjmDJ9pN5-bdWon0jBhanvcSNeRJXvCLgnFXS1aOdJV_nHzyReQNCqeTX-Hm8nRXLQJGfQba9oJIhWNvWIXJvhQP3gY_iC5wTHXzAY0DkN4ukpgrdh9EY5u03fHNACeTAiExPNFdFmPpzQF6H31E8H4Uce04IjfzCEQBaCnqI_fDU8-4RCYB7Aa5aGU-gfBpByRK4_BnHCFnyFm5J9FIXiBEN6DQ7HX-Mi8_JpsXSqJazLEGeIximHZU8Wn6s7Y2lv3-qehhDAF_F3ReqfdN2tkPwV_4cfQw-JjnLh1HsibMA_BJV_HPMnfGNZtue7hg3z4hlS4_ShZyT8Or6sGNkhfCjJjDeq3EVQv2CrnBgOMyDoHDCk93mQTK8Dl4eZdfrFF-NYSPwQiVRqRc3IFEznPKsYmLP0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671cdf5ae92b50-97420366','','','2024-10-26 12:24:10','2024-10-26 12:24:10','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41270',0,'cd-form-entry','',0),(41271,0,'2024-10-26 12:35:32','2024-10-26 12:35:32','{\"firstname\":\"Nicola\",\"lastname\":\"Elgar\",\"email\":\"elgarfitness@gmail.com\",\"contactnumber\":\"07766100748\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwpvK4BhDUARIsADHt9sSUBBHVNhHsiYZAxKVmHyCxXg82MRKDaJTHJyOomELT8hx09Y0FZMkaAm_mEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7AlbhIV2JgBxsMqvroQK5rKifi3THezIY6kB1gOELlRuYJG1DEN6GsqgPZWkBcisj3wvKQvA-ijGSmXvZmtyWsFVJeGYLXGOdDV2wwjYAxBJOGAvCewnBRMYUK3Q5cvfsvKD24Ip_SLISC5naHXQOd4f6XASFpa11rlL8XrrMHqn6F70YcqUpA2Qtu5s6jlr9F0tthjfE5MxIHKUiP_5CM440ac3HP57dh_SorZ3T79CKPOKChbi85EfxU6vjPsgsoUClpjJiQgMoX-spnr2Y9jrRqNz5jC7Ty2Ik1aVcLSFtnDd4d0OwpqXcqUjDD_ZgFT7OWNUZHISHDmOaKF5Ux1fsKpfa7j3_35_65JitgdWrOmvQ1mG8mXtQRWykrn6Qtqxpx4qHuW1_Tf_Wp48JfE6GRRExXXavi6AiPTiw-x9JPeqWlZM5kq8DiTR87E-_E__vpjKYX6U7oQhqiu0su4Ef-48JvrjhmIBMgmhcmSGxenoOAZPhpg7825uzWI6T4RheuJsozdG05AfdAlP-t83r6ZjAfj8Dk3wQxg07jLid_1FTWAtNzKVUUrDeLsA1zSIlW2rBMzey8U7UlB9SRIi9SXTqNh7IyOwShzF7LKhdDffrIlrt6DDLXJV1s_tMhYjM9377e7WUDimz_re2GnZW6FyJnzkS7GNDnDd0xLADYRoAXh5Nng3eb05R_RVNNneVv24_C572CmHyUEli4c85KYU0okschI4rGEG3LOn_CobrrCHyzUS9M9MTX_rx7izn4TAkLtHVKcSODbOajV8QMbLGfX-VvLAwetr9gp5L2PAh3_wudPB4s2gv7vV0uIQ-BhHWbyi6N0B4ksjTnrHcYeD8z7X436JaTsQAqAp1I9CndgpaD3JCAIedevoBi5znc1vfUXT4gpJGeKFFB3EF_YxGatASU9WVR11ZTEzNqs1LdumPF6Q6ettZjDDxiRFCoI98ZvydFv5bUyC8uF0H19i00rfG9KCQonFeBrndf5MQ-7TgkkmR2I66M7M9vM6xCRvJGiulPUtM2GjfK7Jum8jdsYzNW8q4kX68HaDkzqyFus4Crwf8oNYhdzihtO6KIwCZvsm9Cs53y5OXZk7ak0XZz6b2tH-U-r4JnxAG_yIc4lbCzisjXUCzeKQovSgcUI9JgmAoizsboQI-T-N78YCKqmQlIuYxo9nilFe7OaUMbIc_tAp_UmqTsZsn6PriCW9G-XsG9RCGxiQ51oiWwxT95l3zsjlgxgz1U2E5dLoEXzysmi8l-pnBe8T3AJlD37kmWWc_xOeqp20sRDop3smHmos_Kp8w35eAkwuoXDIISURb0jACftEt7Q0-KEkmcAZcQAe6KW2ZWEVYv7QdHnMoZSbDpT3pRC2rgCGa4Y_eHRPGAetJlUOUS3nExvCDqGEt4uRxWhCkfr55GAg3nJ9GOD0yfZ0wtYS-OddZ_dfJ6C7xgtLTr4ojf00L1CzzqWS-29gtuzkoT-fSGXqR3c-wq-swcOpOngwMbKE1z9IehwSy2c191bwawq8YLwW1HIALxoACKr8Go2-XoD4MVYVtUkV4KhiW1P-HA6ftRMTe2pVs4WC9j3-dpLsqf_5Nv_eRV98mhIqWyzlC3Lt0XVcd4d8pvOWo4vPyUWJIB-KkAXHH_jW7IOV6Evl56dB_Wan8WJtxkAYIv2_XVUmF1Q2gnxWEFq4-PNtYJOCAvOlL8ekYbgxQ2JxVUmiYYnZUmErD5AR2fBS9f2uYLO7W7WZtanw-xMW1G6rjiyw2BtGwWvadhEXNNrUPmTgLauv1529-rDtYhHR3nZDMpq9U7ckuqa6TiduRe5LVR2c3jg_8wKAn0HKg5Ero7yzL2kTjvLmJp-txLYIDUu6NMXb5uxFZYYQ9zYVyFKt4axMC2Dd3Ou3VZaQPm7eT8qvBEZGBO-KLyR4a72DhH_popIM42IfSS4GchX4LOXCh_Pu0PN2o\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671ce20b31d0a5-41044520','','','2024-10-26 12:35:32','2024-10-26 12:35:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41271',0,'cd-form-entry','',0),(41272,0,'2024-10-26 12:36:39','2024-10-26 12:36:39','{\"email\":\"elgarfitness@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"TN22 5QG\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwpvK4BhDUARIsADHt9sSUBBHVNhHsiYZAxKVmHyCxXg82MRKDaJTHJyOomELT8hx09Y0FZMkaAm_mEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7Pc4DpLF2g4-haKwHDLkxWIo-y4UwiQfJ_1ZSvPepoevJaEXRQa7oNLyVFh6J0f0q6cGeOQk8wBeRu6zUL40Ts_Euc-P3gaCpJ6S66v5_jc6M1WpmiecvgcTucHn7WlCkv65LkkzBT07QzPziDgGYa-8AnjnxwrP_wcnKxqLv8T6qI-ezLZGQAX49QENQNvyMm5b-MfAXk1yvGhqNYx6WZwQFPBx9LkFKmXouK8OWUJblJFmQIPHh15_gFsb5YBDwpfJltI2Ihfr_trKQTlkbbAqKJitd724pPLPfrqF810RJK20tcKbeMAcz4b6LBLXogLEQslbxRNN7ib5pDrr5djoZf1JycEDpqptEfPUfYZ94kxDiCdp5nC4yChTatQ8u8W-GNu_bA5jr7HEWOJBRC-sVyINTlUbPPZdrRLvwS_HyNHADCKFBFCxeLVTbAgUqb1Qh-QM2EMSgmKs_P4MqPW1nREYhVcQ_1iXdLl0V2OAL_dxXEdfYnAdZNQKZANEzcplMe9FSEpGpKe2n1bua1haa5deAvu8p52EdeG4IUAhV3BJikC9V8Fws6OaSWC0E-DAzsB1ghX_S3nL4zipRFrRedVedInlcUPbGg4pTIJmEsqoz-ZF_YOvjHhW3yM-v7NebTqGYwjvSJ7l-DZRvXpKuGdpTH2LBIWzZE4zCkoH7Hlppgq03EPU_SF6pu08aZaXoJ8LMy-OVX2pX_N40Xc4FYGR18abslR3_fwo1NyxQz_bh4OFhhyJOv9qGg1mI34GcsXZOMWo6wxxh4uW9qi6xRUTl0Y3IAqXoo_FFap9Qdy8IQrgrONYoKQRvwpf51rnraLCktccRJ1_zncwsdGjXE5jO8kgkylF1J_-g7RqcLV4cWmWzd9W75egI-PXTmK5e3hbLRLSzM8WkL4oT-mj4okqOv7RN7DEyWJSylN6cvlACOqNdEIjAP0kJWOHiE7VPcNRdWDK45EMeqN0Dkb3YZsoQOgTQd0xvT8opmeQqfB_XQIbqiAQnJLckjWE-PCXoggbogzC8wxRbvJflGV-WnhQtwOBNyXQYc5Dhvs_kS7fal5eSmvlu_v9s9IbuGlddbV8jAcv0EzuCeEO_3h90_HJGZJG81ny1D7d8VP4gN6ZubYtyTh_yqsSM9aOlnNxYNiv-9XuKt064lo0F28lV7lTPEbUAsSWD62CS6D98X3XMq7Q0ZPqpB5oOgQNPrQ4FE4wDcMTxLfzJOJBH3c7jqdZLoqhy-E7ymfWdbNnkUehUn9ANpKRIZPpuzDm4ffZBOmRxcArSHxR7kZyQTBfK3vAkBOuP1Muh4DidMv-c227VAFvd7DyFPCi5nTUOiIyV3Q6iSOcjm8Z64YvnSUjAwcekX5cyy1m5tpOTRSXC3CrzcEPBN9XM_pGRievnTq_EwVB-_5tENN52ce98DK-HZAfY9syLr3avhyp2wZvqEh-dtl5l4Iq1nlS6mo0Yl0XbjV56vnPwAaLY2En8nhmqb-OLOq4qBfv8sSSL0E7I4VBP_pUHAs2UDSu8XzR01fNFSi11Pbv6QEru7RamDkNIhX8UiMuHCPmmWNtpoTvAI48bLW-cnKGb60b-KnTyfkvJ0Amkm0P7i-PxBnC_cCrXa03BNpOrj7Is6xg-SplfsEv9j1zy7eIS7CJcLPzm0-wNPWNNZhyphj_ehNmstBhQuImeJRM7SK3yzMI-FSZmkNzy-aESNj3ViPUTWCso3VCQy20p0KtT_2bhik0pOyM0yLpa4EfYk6GRcmiV1Td92vtiRXjxKbQHBgOIaZeM1AxvgxpNU2vHTG_mnuq6KPImeN3UyBR0jQoMI6RDx4p4WjLuIVCzZQ9_sLHkev0WQNpG_IU8sDDi1j1CdusSzh3WPpFOVshjI5NZA3C-w5GlsgAK15mXP7Je9co9WauAwxJErrjHCmj97KhI2Rkv81GnmtxFCBqcQ3jf3hdrTTzKPxHFzgZxAZwI8fmFOb_QzyvSh\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671ce23439a1e5-27726392','','','2024-10-26 12:36:39','2024-10-26 12:36:39','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41272',0,'cd-form-entry','',0),(41273,0,'2024-10-27 15:13:47','0000-00-00 00:00:00','{\"firstname\":\"Natalia\",\"lastname\":\"Zielinska\",\"email\":\"nat.ziel20@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/neuromuscular-exercise/\",\"recaptcha_token\":\"03AFcWeA7YY_TYVg6hw5BVrWpfL_4PgoqfmkMnzeSq0Odw3RElWplS6xQc74ACdN37gAVMQPmPsauoRAG6MpTc7MuMZs5vzmU2VsaK-W4-DtKOxnfWSlOhE90SUpedNS1fxG2984OVLFW6QqLDvazsQ1Ir8Pp76mJ0XyZWg3dWgBC6U0oz2kySYZqh84BY6bRJZmSxBdUCNAgB_1jbuXiBhS6Ls-iWii2d0LGKqUiEZp0ums5SXyuXsCNUvdSItWjvyAij-GotiGzViVFV2B8k_E8A60bR3SYvSKIkXvVCj1pi1Se7RnnBa9jpf-aRG3CqOBb3K3Str_B8t6kAyI6VU8kFL36AMXQ_6aH9aya_kmKLrCJZL3nJD__Fluiq1bmvOiML1QnHSpAGq6oRtZUXzlfZRpBvXPw_qd39cZVzulnB1nYN6UmJtUfswm5_RQozDIx5wcx_piwP85OUEfeYSDpPP1nEy3OfoYRolpnBWHsMBLXxWQNCS-2GiRXB9eVEUX64FRWoWZ4CuMMnBETP8vk94jcVNxbhYjK-0r1iW5SzLtqyZJm-f1NiZFDi3NdyfjKtwrSDqzICg8uSojEJW9oTfWolzUK2ZhoqvpbIsfvER9SL5HkTJLnN9q_9nMY1JU0ZHhArZI-0A9-shXkEFCoIIt9PtyqTPaKYl1xD55JawPS3pK4C4fhHa8MoTV54aNppRGHo3yBLqyJNI1pvvSFadfON3YEFmIIjrgmlZJJb70zS9B6DMwgIJHxiXDwLv_VCZGgUrnhGdYhJrsUDikZxQfvJjOz4wYB_HGXjJGT6SuynzZNjdfcsG0VOYNV8sjCSbTB8JxZl_-CwWGmWQL1edmieR5ffZKaS7P2taG_751WpobCrbsXth7yCcHciyIXRDyflBvL9o8Z88sXOtYhvQjDnoSSQRUdGsJWslXXZpB9mWFaMf41pCxGGx-K80it6J0rA8Z__NxaAEu73sgf4ltl9-Zi0Z5OEcSeb53PcVA2bcii0Nae-6GGUwPZ4IxhyfxgEFXxewC3Fh0XrHMx5MvPphEh3vXe_MnJfhMQQ9B5jC7WMYylMx09emejLaHH8_qo0Ew6Ngf-FBKA-Ak-gljAvRs0Bsw1-C7j5DeoQN4zIXMuzwiVW4R_oR7jUmy9H_IU_pH4BuVGteCLlYbCivld9ywm5XrsLvt7_RHt6KJQfBYbwyODJTHQd_RJoFM2PhzPb6esSNgrcH5wVLcjjrv-st3WDh7AowclkJEdPO7byoxBpq567KR0KR8pPYXr42cLKiE3b6-j2VwFDFAzX1ji7aE9E7rPOs_2NDngET4gY_yroIeIMiJSFLQb7P1Ls0PliR15T-h5wSYq0LvgA8OVxiCOYSq86Em9rn4RYVfPrl5eeq6_8Q6xd95o9rvOe_50-TMF6gJQwlYmYW0xm5GKsAfsDou0XytYBCrHTZIFmQ4y8jn9mxeezjhbhWV59yVFEF3DhohwnhkQ3KbjpQYzdgeWbmows6DO-Agui_-oGNXHSqI-JS3Jye2oQKeKrouED46rqCB8PK0gdIry89XsT_X_jrQAoVp457P8aWZTbGd2-ce4w9uGkfhk8WvleBtlqcKXE1CiWnnshZeLNTdKm1SiTg1mkfl1w-DJA19Y7YPK3HF1-6BtBe1lSPrtoFewNO07o8VQiM7ZRhmjBZ1DqKC0BmAdhc98W85wU7V7S28UqDXRGOMLVdUyadywkSsR65xtD9I8YTVSFOh_UCgO1VPiTDMkZm_fpl9jjb5c-ZhYBttPsK8dLgEmjpO1EPIVtf4Pu61bP9K85YmUChj1AmKpjbGh93XfM_SA5JCOToD1UQB9hdjY7UIXYzacbGncIUKJcMuT9FEj4oMhzjloudq1JBmXmnv7nEKkVaLYdV8Wl0kW67JVDC_pbnVSOJqef-BnE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-671e58abbc7027-13746606','','','2024-10-27 15:13:47','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41273',0,'cd-form-entry','',0),(41274,0,'2024-10-27 15:14:28','2024-10-27 15:14:28','{\"firstname\":\"Natalia\",\"lastname\":\"Zielinska\",\"email\":\"nat.ziel20@gmail.com\",\"contactnumber\":\"07938443396\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/neuromuscular-exercise/\",\"recaptcha_token\":\"03AFcWeA7MKDx7uDOgnAPaEcepzXkeoyh7HtvG3hsGoZKUUfYC3gXgaj2QGWa52ercfx7VivQ7CanKGtLxbqmjLRIS2yr44YAOy-UMoYVJ-G6RCYBUZIsKk94MwqxyG4o6K4lXwphs81_y5MCYQjD-BU30Dax_onswnhK0pS7j-J-Tm76YTst2sQLy1XVzn75-si73uFiyQ8P4BcUpRH1wUjvFAQxTUoYU9of83-WYrNGZohmXAl24Nx6otKyo-M6-x2A-WL1O-e5VxNqPP2aaT1nb2ZZGhWDV28NOJl22Z58bSH6xMe0aczfqBtdzBs2EM298peO-zEIxMqfVk3JX3nyMMkc_xqwGn87OeBj77WmkpY-pNobtjjyn8yZ5vQjtOZ4IGgjXjEsB-Kv4vixHOGifuPErkOBGQRLoONOi2y6BZO-Hr58FoSN_vJgbm570JP-NtsHOA5I1Mlqk7L8AKj9fp42jue1eOc0n3ZC17qbwutVQW4M86jz77-xed83FbHe0ukSzEHd_fVfSyrLCPuTbdAle2WYUOmf2Y05KPowrY1aDKPVPwblIsfdIeza7HoTlArr-MkDZAhyv3oD7nThBjcY6Bnbu6Oy5_9MldwU3iiG4HxCKTNzc0OKpEIREzYdmr5ADn0K4bMyFxgEghMEzYsHAxWlZJ-kb1ypK5AE4DxmRLB0P4fQJXBVqcXF_6ew-L-9Ik7G0TLYRFLG1I58B8wCILkpC51_U7fru4Qr2hb51xo-PV0sMnvPfknWPrfit8tYNNkwE6JfsJFSvJretWv2EoGN1OFJNjnIEtbS2mjZ-oDkQUrkmabxE7jkHrHyGS--gberN7X6IK5ZH5yJ_Qocph4aSTHnmjMLlhhSaKVY7jIaXPu4oqrbKwY-ClYTQkNSq-145jfrR75l96M1Q-adlTSbwyE0JKwIl-HI9Eq9GGiLSjogLTGZOU0h_YU1Hycccuif7d1ofPVvhV7WIJCQ0qex7UI6HhfTDI4XAKHgBZQusi0Z_ZG9KGpqqHpR8F2VF9ct-r8LGb3wwvL1Go3Gm4TrmjAQDYhsOo4NGhJ9S_JUetbcbwjCx1EpkEweEugBxr-WiNDZuNk0TSOe156BOEAUW8MCjgfnlXE0zLrAcSJN1s2B2_fqVMMP93u0WkUWPUiVo1aJvWvww4jPOeVmobrDxRLWxlhUgFYmMG8zEB5TwzgBBiVDOUX4OCTLbFa6cgtc3VKtvjRtSwk2OdGimUngHTvM8sR_U5ILcvZ-U6aOArq-WYyL29ScHogukTZjIJv5S_bulhI-zr6ULUYZ9M3xsdv1wB943Chyfd6-GcR09-16rO1EWAOluTnDdT36dsCXLpnTW1UQ32LEkdALEMouiIklEFT1vZciuu_jkLcnvBKvvoMqbgI1ZcvLB8k5kP9IxU2mT5ZgbiRE43lYN3uYA8ywwQURHnF59nMw8MyTB-X4ghYjhdZMd-W2rE7qmp2AhXRAE7agsS4GLQX3TFaII71RRpCQF_QtU0uiCNmGVSTV06fBD46qm4ehxP5Civ5YXrOYMtPT2_zzEPk3oXYDfdpa9NNdJAkiGhvrE57sD6_At6h8f0nFTlsGB2K_1LpundUWmZ601Muq15x6UqISrWwqJS7DTVH8U1XPOTfJ3j3oO5O4OQCuCswemS3b_4I7lReQ7aUKzKSkmB__4CRFDL-O74Dt11VhWT2JrqC7nGAcDBNP9Xrn_1K755PAovKJ2dbtGxmDK5W9umxbwPaqmOYENfdkwHOe-GHYrRLJF2EQd-mZlkt-Yq0thROWgFACTHAh5srf6sjeItGNjuJJX4sXSQ2asTLxpws1Rrbs0WvPre9of56Go6g0wS2wB7thZWbI6Myll0Z9pjWzbbiDwufBCzgUh6jUqOlNhdzZ2ef8nV9wpINKtXMBNJ1O4kuMiDSwcXoeopKhw5eWGVZKuhQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671e58c36465b5-52621355','','','2024-10-27 15:14:28','2024-10-27 15:14:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41274',0,'cd-form-entry','',0),(41275,0,'2024-10-27 15:15:33','2024-10-27 15:15:33','{\"email\":\"nat.ziel20@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"2\",\"currentpostcode\":\"yo26 4la\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/neuromuscular-exercise/\",\"recaptcha_token\":\"03AFcWeA4QiFjX_W__fqtIbkZ35aSQSAqxihMon1m2EYD0YwmHhereJsSHzvVB8IZJ7-Q5Ip5GP_IMbe5XDpz9cyk3Tw6m9LuJZ_NIn9qSHD4CJnIg9ggA6V4xoSAMpVjN8BAA1wxfafI_jqtMOGlnvuAK79iqcvaehvRaJfQHLdGgwIGE5eidIHO6_VMU9jjND5OIYoqSSpJiE6ZGsVIkKm-2u3Far9yJDRaltChKCtbMlE5IuuFuN03zJG58MUanf1BfW8uzMfyEXeDlxs9rDHsl0UPtjRfhjmQxXkVAE7TtXDSE8JwB0SyZmeJGlDGb2P5i9DneGU5FtpmXoEvJg6Jw451Rk2z6UMCtQ8c3RT_kKH0t2QilYoKVNw-8c22e4hh91eDwSgMBLtbicpw9eLiaT4d2sr-cny0OkIYaMjy-1m5k4Ig-I8jqWRzObv-A0z6iOg48F0d90VJCMpyVeeLDOzpo0QOgDfrg-gcMfg_sqCQiiaKwcIAqSJtIw7cys0l19SUaxFyv71miPHHvYrVgij7ctaEOZ9fyf-aXN9lwd08tHQIgIhEcREdIxhaAQAa3bxbFjhvNnJbVcdprf8HYwRczF02023dsV9wOOePkU4aktJZvcKfvhtSEwezYsb-xn3dsJoDEimt6RrpPRLRhHfsJUijQPa0S6UUe9D0AH2J2C2gu_FPY9J-Ove5wh51JaIMBmx6Dfk8fZEKm_V_1DfNM8LJw0ccNFnLlha7kci74ubHuhu7yf837IwLaRtUw-57EUyxfZyj56wOkuH8SXASnHQwoevU2Qxq88KlH453jPck2vTRofyBp48ZwNZHjqTlSGZob2LDs89M05VuKILVD1uhIZk9D5cXPxwOs2HcZgc5RGY2CSIYns-STZd8uSITv-hbeUIpA4fxRMEB7Mp57tciwE4F2GIZQAm2DLRMAscbbavD5LqGuWy0Ly99YLWg7wRlQHUEOcR0U5A8Y4EZErKx59V9d1Z8p7m6cKz7ARcnmACbwjmhmgkT_PccPHoQ9AMCDG7Y7TADOZcfPRPP1qcF1wKhrZigZCb_LGLOF1U8VgR9Y7woL3kxVpKa_4Ubjn4EJYeu_3L-Z9FKLDw6fR75fp-FS7EpvJhBar0xJAMLdVtg4RmEG4s9HcTL05A6I9BWqGwWikBZv9e8LYzDymMCaGbmK_G_Mh4z3bElr7tQ_kXpxviqTjzgh57KHG6SKoJ1GdzKzvYo3Q9SASzK7PGcAoqlNF64UdYz7DLoQbKPE9_Jciag9qP_cpcTxNrkwu1Sh4w10MXXd1QlOZzPpekn5HcQuV__9PT7nUC51VnNBa2qm9Ey7GhGOhh0nOgF7oHanM3BeuLnnVyPPTfzKBd-9stAsC9pGTCEw7GVoHNsxXS30Uld42Z-VnBrghu9_gwVoeGcwqA-jlRFVzJfGM1CY66ILq_Tao3aUt7eZyxwqvCVAW-VdHOYRDXhXCHjpSMUfUsO5r1BywvZ2Z-1EyO7nytG7oL9kznL37Yb2ZxRp7W5w6TaqHXi-9IZXV26TaMtg_FlchMrERxQg07mpQGLA00L7223WcZ_BgrD1iYocA4_8Q-V0khHDtKmo7ooEoiaWfYxNDpFUf7jcreRk-INgn7tmYFpvt7zyCANObzom8pFN7sLuosEqo8h32YDPsT22GC-1_ew7qBlNSSODdMsA6R3Z3O1ICj98zwVQZTQGGVfVfrlmTO7HT8xowath2Fdr_UeU7WN61j54BIAnN-5cgbsea-HyXeCV5Gi21CZUQIrS9kIiW3sGKQgySG-PiLxBhpHgertPw-jWfyhvyLTAWjDNfBcR0INjzCCUH9VjcQ9M5EbezuHWwDSAvYu0Wi7Mht2JYJ7dCSsWnzon3UKz5q_5amMOAYNEdJfve9tG2mk4YjuxiZ7ajODcU5yyDy37GUtinM3lH5ePU9GCuXqWvtVQhDxoTZhD4yvlXko48ZI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671e58f7932157-68968100','','','2024-10-27 15:15:33','2024-10-27 15:15:33','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41275',0,'cd-form-entry','',0),(41276,0,'2024-10-27 21:08:03','2024-10-27 21:08:03','{\"firstname\":\"Sophie\",\"lastname\":\"Buckmaster\",\"email\":\"sophie.buckmaster@hotmail.com\",\"contactnumber\":\"07736046830\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA5-RWXIsLZfrPzPx1xmKKw8D8SOyBsLWs1gCEJWo17wxxy1yZDhkv68_U8e2ZXlRX73KwQaoPTKChsvo2zd6vzMs6s4J999iT27-Ei9OcYBVifywAKXBux1SfzIqQtu4Kfkn9BvctkarH407UbDQN9Jyrhtt5faYVILj6Zf9RNnuoLi4SwhSXSLCyOF5lRkrSuI76tsAxnyrCx_79CNq4NX8FCDsQayUA-gsklUgCPeZStlkveR2ezKvjLsKOEYSoH5_eVF8B0JvFOS-bhPsgwTJTMOGx7qSHwp54I6sCXHCqwn5m39HAfjFOQJh1omKsUZxP-hJwBQwWGBOnGTZXsnJQmv-At-2kp_kfxwtbtrhxqrZ8dXlUcW4A7UuGBOP3XXgDgKaCSV0T25f6jlOrzmZZ81oPM4AQNhwUJAKq5e3ll2aV_Ah3E6nKDdQigWsfh7NnyaTGRMdshaGrxRd5j7ps7A_WrGVuVO1Kjf_qjwbjmNJdKpstRynXRN0M2QM7yFC9xCP7182MCMKqJNVHSWOj9uzi9AkaGUnk04QmkJfTX5IQFtVUniqPI3R8ou6q3nyTkLmo4_6bDNLH7whO1C_xVXAMkThCeaAI5GE7bmdo5mB6WHsxiNV06bZS22sCRbDZ2GKDvcG10nof0R3UTfFhb8xE6H2FMWNj_MN5BOTYXNldi87WyhBlZq-ACz77fZBaF-XKRIuw-Bntg-zJ232RuvC_WBmIUwovOmY3vdU801PbwZ4YYwgSQnL_5wPLmZCxq92goigDcjRF_FWo0VPeFsPv7_rbexwzL9l_Lc3EDyHf_s43CC5XHL25sF8ttt7aA3dwv-rx9gxth-Sto-XRGN3QXM7dc3PTjYUm0F-hKzERncixc90aw5eeJZ9ekWbTIYoL-KLh_4pyBAa8Zzs4O70GCcAPgZ6rhWAmCwQ388UKTr9n7IdMVsFf3i8lobskzfrqr1inC1nP-kX4fFO0q7eMWs4S-n3qMvXi4_5APHt_D0c6ahzuxCAiz3_WtCJVCXNI7xFA8vBbhtxWopS1NALF21X5EQrD_2uI-KnsAHrvBQabTOdYID9D-SZeUvz0zz8jcke_Tzq8Fa4ZZfoYgtuWmJH3mG7465T4qXotH-5ak38k0i7203P8SH8vdbVg6ZQ7RWPaHweZIVU0zIwO7bvwuBs4F6HPYGToTN4ZvYpjhgIx31bxq5wjXpRMfppm0GxmUqirTMa_4tt80mLouuI_Wl0Hfn15X_NmInMgexLwgfaWUuqB4c82tKfCH6s6yEtXkPLf_CaAKUdyg5IXg4cdj2R-qla-LLemZabZQxj6O5u4ZTPtXRpFzkkpFjrZF9ftTIcwGOQW7Hm_qI7trLk3B9YeeLsYv9BF8E7n9EoHgYk5apLKzBSplB4tHin4-FD170GValw8NSP6-04b1nJg_rFy8TQ2FEqk5BRuAI4gfFjE7wlhZgaYR-kWs9IktzNSo8ilswn4WOOBQT_xnpFAauyTst0lnzz40_Ygv9UCL9wq1sJl8f2qTNMvm10ui2QBFpdMhN3wgtUD9zuIIOboyVvDuKu-xiVkGhEmdhLHj8FxeTnmZfK5kGWVQfD8f1uIfGDWlPp7JLcssGjFPcI5xpIoXGmLGEb5U54AwMvW2yWZDh-T_XDyBs6LYwXvDjrxTPibw9qZvIMKyK9QJQWt_GpLTS4ec7vdbznfdfFpauHm-QY3tzpH6uWs_AAC50E_b2pU5kPWDhZzK3eAsdiifu-n2P9Ux1KVfJrJsZnfQE0nVPcYE9-1v7N53uDM-2NYZ5MgmBkszMuJHCTRWvynieCtMY23YroxeOfK0rqW7o_UPBuzWnFxPPK2VinwxBfaLjRP29gEvC-YXCn4j7DPNPe2FUwXQe48Fqkitrp2n5BPLmqGNuEkExdm0FvIVMaTiiXSqiU3i-qwc_sXcuR1R4RaVzqzqhCp1k9nfDLuVouRfV-OlaFpJHA_qCyXkkY6lcaBxtrYfsgjadScnMCzzqBsFmzjjo8RWHi-5SujM\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671eab570f9e32-53934478','','','2024-10-27 21:08:03','2024-10-27 21:08:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41276',0,'cd-form-entry','',0),(41277,0,'2024-10-27 21:34:53','2024-10-27 21:34:53','{\"firstname\":\"Matthew\",\"lastname\":\"Fossen\",\"email\":\"m.fossen6@gmail.com\",\"contactnumber\":\"92081995\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uKSOxIgmysUvGLaNlqahreP&amp;gclid=CjwKCAjwyfe4BhAWEiwAkIL8sD3plHVU_XR-U8nfe1T1Y3dvUem-M0q8CWNf8ooJVW8dFOnLaz8U9BoCcPsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7TyOnmuWjsKq7pUVgCxqweYrCb-WhP-1GbY9X353rqTojcpYQBMMj5Vao9fZTPvNfK8jq7F5_bDRfYhKw-BC-JYLtw2OoKH0C5mWJi-hKVMiE4QPvu4eNwCsteD3QypLNsIHjOKctdvNqut4cjOUMbmHY6sJOpXr_KQXuJn-6JXgD3dC8P7k7cnJPd8fcpvGqrWCfiOAbu-IDuDAG9_rUv5ZdrKgsCKftk3Io5bqy_wdGRZ0UiW707Y-AkhEmkGSTLxw_09qMQNCHqTH9SxEm8gnXWfvVsC0QRYpG-ZKVoIqrYWJ-ls3gMR7fHKRsWImuzFeJbMTTuSzgUR1LW_dLrdbH4nudA2VJRK5aHUPite0KRwQcWn3ZqNvE_614vBwjGWfSgwFrAd2lUYThZcK5NOIo7_ms6U7-sfNvt6-d9KZ3mXp5q7zWCQLxB9e0o9CEdls3vfxEkrStjCO2pQym0AYrQMNcc4n99tMZF1VHxJttZ5hWrwPQdxqeLg4u20IXuBaRmKRp-yok4LohiHJAZDemQOjR3jVk0FQE0bPznh5Md50XRPD2iQJFg5v7K1L3-IgjPYUeA5eLeaCB4CKrgY3cPT6wd5Gcg8agsVmnXB9Si9Ig2YIRgoH_y3cEe8jlDUHpuse0TWzGMx90HAGrigFWDHoe5IWHdaLL3f2FESz8zdY9Jvh45a5gh02K9M96M5_5EkNW-RuTVh9T7cL5XAhOdmeUdrY1UocxmutCFxPtENnPkav9kZ5aF-a03MJNh-Iq7_LFgUgs6T18d-hJSa5JyryHHP2Z0n1UuGPpY38QHqFyIRtt22G_R1kOG3JqqOs3rTe3DJFtYqitVrK-NJrv5LPz3xQCI6Cn5NQAoYzkTSF5rn6r3OG3opwTRCgQqvyOmDpDDlieUCwDIQbvDLz7tXyS-aK9--fxsgjdJQdCe-XE1TXBxP-vL3IvUYq00ssJsycNpHW8gVBjmHV9bibRIGH0JlcjaX2H2-cRBpS9yzAA5H6o8A6Ni0f1af4NMgEWhh9d_trePChVQUAFiFk3q15nO4D0RC00jJmCRt0rj8fxjo8H4EI6oZmk5ayclRJSAM9fnbmpqBCzdp8hmJAViFBSyNoNRp8GVtVqY1ba4oteFGyLYql9FT_UQF-QngETRU1zuyvfYS9pWwTPaS89SeXbGXd3KW4rZ_va3wfMBJE8kid5wYaTTGqdHzYO_-wW-FVp1_yw06C9kKg4rKbr1qFN32zl4yq8t6mu9GqZF9wcz5apgWE_KNsgUJbbkmeC3zBolKxnZev_iVldtvkw_7JniZe9B0mSb_7GQGG2j57r6D7FR8SAQ3gJ8TkPsBpvRfag_CZ9HxFG2bA2jTvdPe4Dbkjlz97hAO7kyYbA7wZ0F2J5-nOgexuI8OfvGMTPY0ioKZi214lUUBGFv1ngA0EZdg2hovDxIJLeKoCpg-WBJhvnAblZ6y8OI8brL9yhpiLGOqTEiBY5X6a3MemkKuCQkeGYGWIYnBFG95UON-VEEQw2SqSOy4i1q0ZWXeEymUvr6Tmx3z5jYQM0Bca7OeLj7d7puwmdMFOg_b8lw2TO0Cvk0_qvrieOg2RInQlilrw_P6hKKMOXCo73KOy1zWbp5olyfJeEsU9bSyrG1BDLMPooHosg1y134cjbKZ6W0x-RqwcneZs3MQcO1TxRCbY67uw2l3fdn1sk3XJaF78MlPfCqrKbn9NFJ0xcl1iWNJxhO4kwUiV6jTlsfmjeDF9tGAP1X6obDSt9eWeuLse8PGK0Ogj6BNZAyBE8c23zNgKxKNv7kMT3zuo1xBwv9_qaVrBctAm_V5IHle2kUYKKfV2Xt9pCCWHa7Sm16va2Ph7hcn5iP3Fd4Scu8zv4s3GJHqXcG_6P8V09lbo_VH6xoFmFUKnLz62s87cX42pWF_DgQ3JrAKANvxe2ulYYHoJYj-hVLLCf9l9xrd_Cw_8-y4VFBcoBkJlEreQHAQvJgyrn1WrN0waLYkOCw2RHccGo0uVDp--QkTR5RU-fx7TR5CqlYAw_OFhWVJPzX8Y7X\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671eb1f288cc56-71722795','','','2024-10-27 21:34:53','2024-10-27 21:34:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41277',0,'cd-form-entry','',0),(41278,0,'2024-10-28 00:42:09','2024-10-28 00:42:09','{\"firstname\":\"Nikola\",\"lastname\":\"Atanasov\",\"email\":\"pt.corefitnesspro@gmail.com\",\"contactnumber\":\"07450919864\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMImYzgx-uviQMVGJCDBx3soBriEAAYASAAEgJjTvD_BwE\",\"recaptcha_token\":\"03AFcWeA4yA7noJebOzMz1JOCFySkwsU7Zt4XyDWipdLA2kk05zpygA6oV36so2AJhF88l1CW0Mdj77PutSMqQHlkryktKxhmHA8vwEeWU04R0q2w6WqH3P092o_QnaHOpYYIg2h5M5QcEKwTO4uj4QojJc5l0UeHI_8mDFDa4LCTvyMn8hyX7Vyru9qAATgL3FBq_kcqz5AkHk0IdttCAVo0ho9P9j_wvyeQgcWBcLDC0FlQiqRy4mNLucA6aPug3KqxjW7EmNYRTvH5BwJTuW0jYBPqmUOZ3Lf4AC1mVdvAcaFCABGj1pHaIDG9iV6Jamu55e-8YU3R0ponIKPcbKQjwUI3W7DfMBkLj-QPa4lwVCk2dOEmuhyRvljjIqcu05CKu533W1tGYlPgNohB64fX3Wm9SgyBBNlLhrQbCVmBqW0GXN_1_MY2NMQCg2g6X_jZ-voKMCaPAeAMj6r2DnzGMsos_nhPO6DRl4otPggiCR2YGUi7WxH7xk2khaL0kfoiDI66bNRVdeTAJZjmF3Uijknbu0ifByNVLaigFkPKQGcYuk9SikXaRArdPFlnNtv4F66UnoMOWiBFhE7mGI4fJ_ajnzyigVJSM-_55NLmAmnvAN1daznjp4npLa1HtIoB-bXebE_bv0Q70GxxgGgZZaPcoGJ4lyahva2nZWpYb4BCwzbM_m747cAohm1Q0oUCKfrNrbrWUjvwzcgoFdtSubG3L3JRhRJpR3GtYMTpKx-0hPX4X-8SmwgCWIdO2gdYMHlTekFClE04XrX3aInEHfRZtueozzpOzBawCSZeZDLxkW1UJ9OMPpDHjWxshbMH73rjZXe9gLpxKjajX7JlXSUCkaveSHKR9KYT1B-snYIwrY3ICvSzJKU1Pqw35CShz8b1xd2zGdbji0JieKFXVWiRDXwiNtVkvQBdYTe6C8MRDIVW4C5FJmrUzfz8q3vgBgb3TWxou81d-IQ4Sg3lwct1V3SQdYl-xCvHBPZrkWAlFAREcs139_WX4GofyOBPh391-9xofteEXnH7ITJOzkZFUBpa5WC0oxGRhCkccS-GITWMf91FsFY4q-UK4KTcI-ZSpH5AhkfGBoIyGXNMurnFAmTznsDnRa03xdtlWsrAs8E446FKib9wpHvuv_n0gyC-zf-EYdhTst_-zuFsEiXCNztxiNXsVJXCVupNvLuJdpc256zUKywIxPeNhkIvMC67s7qCBP1SiNK-gNP1TpwOpwGfLA2XTvj4x7De64BBAwwV8kGg02owQdCRNH2j00dI2gwn5F2mRMk84uGUo8atJJjjdvazzpgVXym_zfs3eyCUUUeoCxk2HDaC-ekZGG2ObaNMDo3TkjABVWcp-42DOq6xHuaBD6mCeUpIQS6kqaP7HIEeZZDaVuXeamSDYg61GwUDB6pgGigwKhX8tNak_ZgiwL9-SF76y7PSNSlwBcDUqnIA6mt9TnIHW2HX0wK8pziz6_EKs2PW5v4kcGbtiSnmVQd6sFNmQcC2BPZRru_hSIYAjVAa0JzJstN0iDnsYhLmRQ7WsZRp0vi-qDsVzbJFm0SZK9vvQHRMzU3w0IxaMOerTFttAxZtP9Zn4VKIBdYsB1Mv7DudwS2Psj5A-8gaefFh5QLB8V5xKuXEFb4gag_QopQyWjRhEUISBBmSqQmxuhvX0DVjk4UqaM3UmVhrHYGxbytzkPdDRLsO7r7ZpJXrgO_IMoAxIIMnhqhu2YU6kZK_FcscWjrqsiTSKV9yIu20KHgqetUGFNkRdVtevRAiHJ5qAfV9ySL4GFnOAeULhFcp9GOkzeAgwSvN1eZKYUzNzaMdpmYbTUBPFQ7dzmPwFPcKS3uNvP3JjDjiaWX2ihp49p8-hfU_bbJju7gF4FsFcSz-PWAdpJG5s7Zm_QBlyuUChPa3bYg0y9tG1iaDV\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671eddd79d9b43-57748218','','','2024-10-28 00:42:09','2024-10-28 00:42:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41278',0,'cd-form-entry','',0),(41279,0,'2024-10-28 00:43:42','2024-10-28 00:43:42','{\"email\":\"pt.corefitnesspro@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"NW11\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMImYzgx-uviQMVGJCDBx3soBriEAAYASAAEgJjTvD_BwE\",\"recaptcha_token\":\"03AFcWeA5D1Ynva-aHukCClrwcDg_F67SJO9ZI5xbeou45LjOoVnukync6h265MrE-qnLkq66mYt01vZrLlcjl0_W6JkRzoc7fCSZUmnrz5a6NHgIK9rpuV966c9GKXFn3AYYRBVDVnEn5AUaQ7YKy0HIxevVK7KC6IYB7didlYMdyHO8RHbGUvSnwt9eT_3dZQUYwOW9L88fYZN1OE7xUgYEFRXiFP8ES5biHZTl5DprdV5QMRFsIYkfMik75zuKtHvxEqkEPG9sRFSsg8C46gzPD5bm6fVim2gbt6n-kMtH1HG4u-4zVaOYMvT6oN03jfy8zN6aKSColtM2YrOXdye6VdOFk2GijnAY3aJLnzPSrVvPHjyzoMKUn7pxag5eg7yjS4wmFGRjTcavfmQyDjLcrUyeIO2Gbv-tJehnfoBR7wEgl-imfyOizbi3kHrDFqoAr5DVKIR6XsS4GCofEVbngtXv8alXVsxCaA4LEZHPD32pvpgFdEVg8OLBVINz3ssAQ3twH9zy4KIOZH7T4OS3JtdbdNyzMLoxHa13EhShzmVesiMV8En5K_HuB28SlhdmDGERBRJhUoUzlxlN45rh1XqAF-QEMoAPTyMtkIZ-1x_UC7xMpMvfraOqmtboF4NKHQ9BCO-3X7fbnLoW8NYRJopX5_qmwltTak2ghLZRXAYzvTmSEqhu2LHJXAD40FTggg5dSOcBnQZ-UYBSi-74Ec6t4ICr0WZ3c2GwsLyH0MSFjNFnA8MujANcqGgCmNy0K1msxVQkFCDYt1gtcEXU4p07Ji2wJaODBJ48VFT9vcLyDBq7iZJ_a1xIDLybN5zCUrGTYm3WXnp1U8kfX68Ll-qUU91fbyCVNS33jsoVq6WbjKRDlK0rDcE8xVQpzs5ccob9JwHd2zDXp39fIcyOzgeRWjhTWnPIRsuxz1wkTntL46iH2BAUpkAyRM_yCrVF-zpqp4W9d6egw1P3FSh9betVr2v3qaM_KxDwSYBPyB3-3DlsnBH_8iD0KazVADSEnCkQMSFHyZq9J27RUynZPwGuRK9msxljviT0AV9whWlQiqhO2VBd4L-xQnwf0ASvRrwUgsPopYm8bvNin56Xk0JyPL8ZuGDx4VP2BBwo-ovC6rviHZqjWxaYUKJmdD3kkylRX2zBjhiqVtyfYZssAOQzHMnGjLK0Tuk7UtRyZFcS27jVS0DgedAws4rvXCp0ANW4xri0Wxa1KJXG9DDENM-vtDQ8COXz74bUOMtpnOmrIam5U-sSuCkN6WSV0TzRjWT3Fa3p-2U8tkMFZhJKcGcy9wVUTjyck0o6aEAjUEXi7n6pRdC8o-uvspDTsbj_g4zliFBL11OonIAV4g2ij0PjUSpA4Y9zabSkWgkbOd4znSuJ85Jg7D2RW2csl14UGFCL324BY9mQi1XFMnIpLR0aA8B6pU6v21EODGGc17iShaBvKw5IGe9Y8RzkqTAVc8YQ5Y0Ep6hlBOfqc-qio2IUOkoLkzle-nF0iiEAvCDCitvgLz1SrwaJlsY-80ahx7Pq7TAisHhMv1o6x4mFhQ6hjT7GI6SiaywWPSENLXZKU8SjU6Yei0KYvp3f3zSneyKWalyAoX_H2Zve9PCsLLm0ihciHC99ZLMA8y7-lRfLinqn51JOGWJAYdhzTEu3YJKzcLVcxI-5wAThA8_VA4-by_FsELNvNd-IQxmUxOt9zoKF6nDh1Js8g3B5HkCGselVHZZiP-TWU2vegdLsiL6B9PNZrs6sBujLwI4pixPJFObAdNK-T6ONQFnxMcfTkajKjGO0M13vfV7ilNWBE5MTHQUwJe_WC60C8kL1eUersYYKE-M2jTho8rh7IG0SNH-r-KkI8ccnBPxWesWh0tX7sSofZsJDF_tEuleuzOWfq7YFEufsb3p2wTJlDo1rS7J9uqdFf\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671ede0418f048-54989501','','','2024-10-28 00:43:42','2024-10-28 00:43:42','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41279',0,'cd-form-entry','',0),(41280,3,'2024-10-28 09:30:08','2024-10-28 09:30:08','','IBA Membership Info','','publish','closed','closed','','iba-membership-info','','','2024-10-28 09:45:30','2024-10-28 09:45:30','',0,'https://biomechanicseducation.com/?page_id=41280',0,'page','',0),(41281,3,'2024-10-28 09:30:08','2024-10-28 09:30:08','','IBA Membership Info','','inherit','closed','closed','','41280-revision-v1','','','2024-10-28 09:30:08','2024-10-28 09:30:08','',41280,'https://biomechanicseducation.com/?p=41281',0,'revision','',0),(41282,3,'2024-10-28 09:33:31','2024-10-28 09:33:31','','IBA Membership Info','','inherit','closed','closed','','41280-revision-v1','','','2024-10-28 09:33:31','2024-10-28 09:33:31','',41280,'https://biomechanicseducation.com/?p=41282',0,'revision','',0),(41283,3,'2024-10-28 09:44:39','2024-10-28 09:44:39','','IBA Membership Info','','inherit','closed','closed','','41280-revision-v1','','','2024-10-28 09:44:39','2024-10-28 09:44:39','',41280,'https://biomechanicseducation.com/?p=41283',0,'revision','',0),(41284,3,'2024-10-28 09:44:50','2024-10-28 09:44:50','','IBA Membership Info','','inherit','closed','closed','','41280-autosave-v1','','','2024-10-28 09:44:50','2024-10-28 09:44:50','',41280,'https://biomechanicseducation.com/?p=41284',0,'revision','',0),(41285,3,'2024-10-28 09:45:30','2024-10-28 09:45:30','','IBA Membership Info','','inherit','closed','closed','','41280-revision-v1','','','2024-10-28 09:45:30','2024-10-28 09:45:30','',41280,'https://biomechanicseducation.com/?p=41285',0,'revision','',0),(41286,3,'2025-04-08 11:53:55','2024-10-28 09:46:39','','IBA Membership','','publish','closed','closed','','41286','','','2025-04-08 11:53:55','2025-04-08 11:53:55','',0,'https://biomechanicseducation.com/?p=41286',27,'nav_menu_item','',0),(41287,0,'2024-10-28 11:07:00','2024-10-28 11:07:00','{\"firstname\":\"Virgie\",\"lastname\":\"Lubowitz\",\"email\":\"test101010@gmail.com\",\"contactnumber\":\"5208816512\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw7Py4BhCbARIsAMMx-_IkieVOqAdbc6ty5qg6d25Dp-9UOK--n2qi-E6de82jjrvH7OZ3dmkaArxHEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6aSebYwijT4Q9wIlKx5UbrhknHPk0UTtn3iyfED-vodrQiMuHlIX3jcB3Ba_bu-Wm-0WPaDvpr47cUlwSEVC6uXf8D3ESeF-S8G-AlEfhOyUgxubQmlKzUBgBC8c3gwLLW1NSAdg-XJ9GSuvVu5nINDi_p8MEgRD2n4S8siR7__cvWoz-Z4KHWB-RGmKGtjgtLXf1JYPKgilv_urhj9vH5lAjGeC4hT3tz3glxOb5AAYVcbOy1Rd-gF5t9YYuzlogSOE-kkdVHtQuY3R3jj-DCUHFfuOe7sw1OzYH2Qc2XXDD4Xjm_wRTvMtOUueoDQLVxu11E4PiHkKG4zMoRN-Ho3V2d-dIwB1nPwz8qGCmUwwUSlKONh8OzuTWTCQI96j0i8OVbw2jSNwFZrEVZrCPZDOohTw4tDPn_5XQeC83-vdT6AO0kbwV5ccjJEkVkFIT-wyu1VLp9v1BCrdrrhrCSJCMb8gykhDkBPWOu6Qu_1Ykge3QMdsOGnto8vumWyTK8jUqG9EoBB31hT2xVp9exa7AvMe_snj6eIkuLWj32EpNHg9W5qHz0v_Fap13TF607IUBoRocvGg7zUIPGCSCeVZI_knPNRVhxi1qs95_LOmsQ7F5x8ZuLz3Bh8o4T9gotyvJe3zMttNFQSEYogcv5yJ48F5pTUkC8OVxuvhfIRGTDMf2h4Fm7-3Mu7EznKmbFypRM2rQXXmhIneyxPlriDuuiCIGbyBNjqpgVt3c7gYXAl8nOWFneh8CQJScDdr2iQnoEorc-V1-f6PX-2B4-Wg82N6g6E54wMwFu7OrGAQ1ZbJPZ4K1Asa7PjiImMeQoFlJwCRPVwPBUhabjCPMLwLPo7ZpIS8wDjhu7ODRh95_ijUTVDJb1M6c83DtOwLeueWsKxEQvkMDkAEtujBsPhe4JuZmaEhrU4Ub755QhYvgTgjo04_81uQ5OqVLsaZRwhHn-uWNQDtlP2nZJEZ8QnqpHYY2uBu8tT9allRm0ACEcfg4YYgWrjN6Jd0X6oKUEud1LLCus7bPB_OF32KjhywaMfN5LbikWXCFvUgBykOvLYv6tIuf4MjdZRy-8lF7prHeh93v8D6m3FACvqNL8aficmX_RA4DnQbBe0Z5LWyPdHZOLTcgiPM183pputWuOT7CP-F2lAt3awUAsfqbAw-z1xPOFpz3NLuPIPwwbWuIyNo4BlxtoRn9DFoQiIjludrMwTzJDWgyZThhuGnQxn4QfTtDeCXMHYzg7OnBYR4AhpaB-EuWpE6Y5R99-vjqV2PMLOfV5CVFSmLRJ7tkT9gZqjeknCE6DZPMvuDefYRxLmP2k8RGORCsyWGdtdb6BRnwYBEimeZdzUyg1MNipE0rA0FBygLycuLuA-WuLbI3f7Z_Q_jtK5aLTyML83f10RTEkrkYz4a7qoABul-JP91CCFC4D-Tqi8ZhFzjuZ8x4mSnct-qj8OS6zQIExAztk68IGfR2NtZ6KsQ_pFKsym6VvR5IGrmq6btLvJn3tjeHnN2tIHrDhc4PLFogHKodlY8HRjus9n1zOI-UxyWg9wk0V10GIZBZrGK0Z1pFpPf71y3eg7Lc1up7yPfwPvnCd9ILYCHiahkHcLvI5lyr4rhr94Q0uzg6uRnoi4k9Qnra3FZYHZYOT7wLPaEOVDLG7RcAexGdxvt5J3T7uEBfJfB9XbAEW9PLCHeIx5L-3oTwHUj4thiwLrIc5nazBwKZ1GXV9aFrm6hMxISxkhik5uLswa5Gr4b8AYewVTWqVEGRWshn2kQPMyY2fhMIX9dsQJJMKAGUV6ANpAZDaKGCTVbMzrDoC2k6B3Z6rxnvn0M-9Mi1ENfHFAB_1_sAm0t5306Wkx9rFqnpHz7t0j9sKyug7Edpda2MO-n9ABJjo5CUKT26ikQWEookuvganmGwheXWAj-K5MgQY3cvhIl_aPTPf9g\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671f704f321f99-46806498','','','2024-10-28 11:07:00','2024-10-28 11:07:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41287',0,'cd-form-entry','',0),(41288,0,'2024-10-28 12:03:10','2024-10-28 12:03:10','{\"firstname\":\"Nicola\",\"lastname\":\"Simpson\",\"email\":\"nicolasimpson65@yahoo.co.uk\",\"contactnumber\":\"07804 913883\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7TOS8IFBmabpHH-eQdNCrunbEO8MQP7Waa7RSahIEyTv0EhRti7WBmYyNrw8wTxRef427WmygD_lVQ5Si0Aune1jskgXNoXcxU6ZxaS6UYRsYPLfA03-h6yRJR6VfsrFLVgb7D-A2i9fmpKHotv_MRbpQvsSayvvg_D0zvYdn0QgiFc3Uor-D6Q3Bb_RjLD1N2DaX_H4lB-f5tElnCz1vNz6wNxP8w93yRll9_Z0fLnc6XU8pjCLmTqzzkN2xijxWyNMksySpPqOQhzphrWaLXqNQic9v6aOIVh5Y4cEnjRT9aOqbbS0OhCDYMZ2GvXecjLALGFDTCHj2zeiIzvL827TdsiedSXVFz3BohHFcyholVwptXy3K_Og02fYG9qcU6_6TwMgLXQ5TZs0WkDXeX7H3NbrJcSbfcsstGtrSmwsXUPrrWwGQvILER2Xh-7EmykUZUIPBimAXSeys6Mf1H-N1Z-3WYIOAOuFgsNWL4xs4mIcFTnkwvHfQwNMbDTTzFOtkheEre10N0Onmqo62DDfiTtqxyBJPGvwbkgpUwDQuDpkUZbtuPOQemfgM3fMpjVyjyf88ILI-or07ICTh3VzxrxSoawqOaWN0XP6D5DLac5kwOTCAvJ2a4U23_4NCPlCjgszCU1YcGCfSLHz0rFAt5hAwYfSZtyO3C9b3SZB4eIsgv4URBWqrl6KK_JiWR-8xUF51zK4sRGb7LPh387nLpfU7YA7iri1oXZk3862wbDJPsznZb420PmYaufjWrfbX6VjarIMzbrMdnTpbKd6zfqRcEEzbRqJrHlMNtBmYO9Yxu74k4mSaQpsUB5O53GHgJvxu4IO-wvcSUupCHFqxzj7dxvP9qseAlfVFaILQqguwdTmkfj3Oc22mgQbJiZ2IM8C7b08yGgjkGw2FQhUUZSZiT8mAHfFvQcXE1Kh9LZKo371RlF78wGS-499wSx2I9BVcOFL4xiN6xO_Qjpm1BSPlGQbaFt8Cv3fDaykPRB-i5CPiUYMIJnaZN59GFFcktWLCaOF0OLghpcHmQiKzvWvyDzSwrO7GJRYy47HHfc6SjcvJjFbZVuueIuy7XG42RPZankeFRuJ1s994UGzbq6MgF-FbxnKgBVbI1iC1xjDsLbM-4VKnxW707vvNNO5yl8yS6C_FXoPnENSWP_DCJrSmQHQiR_CbC_bhA28Sjspurjz5v-evQJfjZw-UFfCd_VOLZfD97IunHfFRSnwwiwbwRhpsRTRNSjikg1AiqSyrlcaTmDk3LuDqDaRqAIUmIU9BncfkfhfbH_N1YkUPzDhrbdhyhjT4FnsZ_4IMqCg-N2XmlRslL_IAPBIAc1fng4Ar6nJJcJiUZ8QUE5z34mzF8UdoIsFeLC2ptM_J-dwnHfme__orTXD7nd9FPdEPE1lHXwA0H88nf2bOXRrYR8R_xM85Qf49kmb4TayRvqTMOLjT5ujDWa9CxQMhNQ4qOFallmoJrRkm9VAtNLz_ikdgmEVJvhdYomq1JPYSwmIF48WMyvg_Mu-uITiIwG6x8nQKW3guZMyz3_oI3AXXhbGihJ14GhvPHodtL_cmAT4ANy2KlOByCpHzYK7b_XtCptdckgYpuB9_KEl56ygE_RDfedTlrwh3Yujbi-9DEl5oEATrtUjFuUSUArkegPT1H9nOA26OpugeB6RaDgrKY2tu475kfgFRBgKIO_vAAj2VAIFdgHRntt-C9EaQO31EQ6Tb6oCdm-qehQBHbg_okhZyAAcN8XlF7MoHDhCFR6dvVMhbZMM3ZJFDioc4sm3eaf0J0nEdD4B1osVNadfmjvT0mMDfNBVP0Iz4J82u5Ftm9iSGPBLZxuUb5xIs81rg2XA7VI66Df-qNkZz0_L-cFd5oF-QlRCzLtgPiNqBQkWbqZ7WpwHuf-iOLUv2qEVPv0rWs6XNMZBb6nnBB2RSH8WXdVu_XQIEZZDuwuCKUklX1AJcYRjyo_ZYSnS458Lf6h_QKTbK2_TmxCoA4zyHD-cTD7KRB_LAzOcT24M5-s88\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671f7d550a6fb9-83075141','','','2024-10-28 12:03:10','2024-10-28 12:03:10','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41288',0,'cd-form-entry','',0),(41289,0,'2024-10-28 15:43:04','2024-10-28 15:43:04','{\"firstname\":\"Victoria\",\"lastname\":\"Kaye\",\"email\":\"vlkaye2014@hotmail.com\",\"contactnumber\":\"07701045993\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4V2AVMUZJODec6Lvb3bJv68mckXr8vvDgiwFquxspm2LP-jOV9jAO0UFl2zi09JYnK6BWxleJbr8KZ6_kUw7n-0kqBkz1GgsfcG893PH-E_w2hfPjrwXPf4Ez3cN0oD8NEGCnaRAsHn5KlyKqnWanMYpuCU-Kl4Xk-W8j8fuZ-15U7iixL0v6-NYsRrG8gckkDOJS20DyfxJy9pkoRZpEdrCjAaun22faRFZRlirO2nA_mSvWJJxNapOh9KrrksuNEJNQPHs2AUYfhQRdyE7bH7wLmb93l4WlGa00s1MdSyqwqaQbobRMcK_w-wBiM597RZVct6h5QlCmsRWL9jlwliBt2NMTDv1LCPuWEDT23pDFjmdu1OGctn9DLVHytwN2qEh7BVVtmfCD-sapu95Pz3qkk8Emc6vcpSAlgrDU8MkuU17BlWl_rTFCTk-rzb2dH5zz4wg5bvvmrHejRzWUHCgKv-LLtk5ayuqMT0W8AQFPOZ2oWw6F02KAjK6lAIcLvT7o6rm66-4W0PhWahvBApLbLKLeO4CRI5iHF9XQzAGwBPg_oeujQb99QW0SqaZ4gEwJ-k7kglFRBPN5wQmLGfTWKtDNe4JlaNz7Qa1gcMY6WT7OS5zbFsMhEKVJnpr5wTTFB73HvLdGSi8zP_xj2CeYqUB3rIRgYff4OVSesrLMHzFebgdDHDhAzTZ4WIC773JsjAgPDKnQxF2GXV8C6OO2HhCIfLiQHF7kL3E6NoEELxEkuwXhu_n5R0jhWZeYfmSc76R-GHs69ExxfKvEDRDgxsd-HeTzZ6JutRI9SNsFitQ5aI1e6rgfeTMaqzsqUTWwBc-dLT5K7ZYDsFwa8_-OthMuyexbxcTFiRdh0qGBqY2ZOwvH76i7YCuBUcGEcvjPAmzuU4bJE3mnp1xeriwI5jlj_s8CuIddhNwV1rkAmiwFSSH9KgloySKVX7JLOkFmZdspEc1hJfGx4P5utQiaZCk3o-kxcNcjnIa5RzPNnIrDtjyGah1wV3I9IRwm5VufWy6rBSLDPytaEAsbnnJpGo6wlRJjthfmotkMiQm1o4u8VL8Dgw6gQqEVahHeWN_d_CwkqUwG9G7w50RKVjw_OIjVK_3oVc8qT8g31f0LN4ik4WGtkiyFVXOF_Fqj73sUwP72H4NoV9DSoW4VEv6qHPamJlCu7uny6YmCyRT0OdfVIoDYSUjgLjh_GripUJ5adZuBUchGyBUqUQCbyygC7JRAABc7ta8FkIowsv_MfA-L-tm0rWckhlHi8kmukSihzTaumz9WJJTN8Kt91AUOWne7jDgkqAhQaVAW7stjbDPGqx6CU00FnkRIqZ_Hdo6_R1RNu4Zie27qzDi13LTOv7whjyTlRAihFtM-w21hifcfA5BS9r19Gdj3fkJULjvlx5oOtORxzKFbW2fZozxqohyrYB3JNxT-a7EBdpFLw_9w-hOzzOFLI-Mx-nU-WbzGWyu6ccnIOxYTKnm8YvnKZNX7-AQukgFCxzv1sqtoaps74ugDpZkcdtH5Fuoy8lvGVmA4OnngLY8GIh5MW2wnx54aqo_trIAS2K4cpu0b6ciSgRotf-_Xe3nZ2_La_8G2-6imE1v6zXaFFa34yiwb0E4ckEaeYt8Eywzsyznu_IU4qKFn-GaKuDZ0xeZ4_wfBR0AV939O5B9RruSP8Ep5Y7JC96uXz_wQZTfxAMMys1_g9a2guvlk7bei6EfRXgFltWp-DgRtdHUxtTD9F-Iy_y_9cJ_IfgkGr-2gVsh1HcjpZTla7UEEvoN5dl1Lx_ZBb6_yQ3OwJWmamYIUU7c1nmbFDlpsCFgyL56xlc_8DQtojlmIkoGYYEOz_mJdj4umX96BnRnKyY2qzdQuAlmUgNeewfhJS3O0BGJI1Oe1zymnFCP8jCZUwmjfasEVETWSQvbW_FzwMzPxKdIweC657zomcuH3qHo1qvilKFVR4wBXqzPuwZe3EoJSgexTZYgkNLP4pEblDXJU6eoqPceUmGeII4E719CLXubw39X1xp34rp0_O_p-VQmd_gUyuoobtOHB4r29kv1xCEHEyIs60BelA3yZNBzc6BTON4kyJKg35wgoeGWfbt1QgtjjLPRD-Jq6JKJqIEJoQaAMbABvW61FiXA-lGxl76sZrEKzkG4Ra4baedXLYZcQUa-FeSCghTyPv7k8CBqvNT7YeRjO6wHYKfJCrsZanwVKFgUEjHsJVJ8Uz3k0g9e-D3Va6w_P_\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671fb0fbf417c3-69775725','','','2024-10-28 15:43:04','2024-10-28 15:43:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41289',0,'cd-form-entry','',0),(41290,0,'2024-10-28 15:44:39','2024-10-28 15:44:39','{\"email\":\"vlkaye2014@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"TA9 3LH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4KhQsELIKPkhh6Z1-TmDEK4Y-nGm52340ZeHzdv2ax65ZvktKTtxB0bO6Fh8FReaXPB-R3gUGv_XNf5Mw1y55L7baD6m1TZWKyoU-FMht6pcdaw-IUbAy2PVt5cK7ECg7jx2pM8zQkAX-ly9eIApgPCMQYkIH29k9OzenTbzq_fAljG-_6eW2d-bQgu15C1xfF1dI1D381PpGk1VyiJjSo9S61oze_UGJEspC1OtR3Kjvx3CrWu9u20jSDUTNoUTK8tKwuJyEvRBo0ugzWs9OdeWWSSwkbluelyl_VNwvJcYwgz9T1-SS18-VFq497QC6h5fnlwu4uPW9v7FZWatjoKz9zv699lvXtvRQ2R9B0f7OZs-qDO229AYFoA5nZEaRaucZaqPtcs4CnguA39UXX0IYEKPTryFKH9U0vBBm7b7XAcTn9Aif8Hb9y-I_vkPg_A25ei3eqeUIY8PEMLtIPkFAN6gnaKRc9dZa4Ezobb_4W0_4yZlyxYhZtIfafn7e8tYxxpFdkX64lQEB5ojxO2neYh7tLTHiGykgBPdQ7qhzFhRA6iIIKj7RvDnK2rJ3RUBdQpMNEwN1H0-k8wFTSjIeY55zwpM4oDpY-k6QrN2CexqSNYa0pfiiWpRin0yV6t72OqvOpy8WOrFw4eAgH-jdmxxpkPbZsm8mwiPszBkak1jM2aoVC1NbESgVJHVQYkVDHtqpHoZN0ML49c-TqJI6ZcBQRBUChuWDuRCurtKSRPcc6mJCjhnqInwJILrOj6i1OHeOTPI__qNQkaux6oeVIVORMuahZvL5tFVjjjPZMm890oadsab9biuQrDsuZXibn-JlDKX0t_EdEGs93Q7xupQEUUXuJovyeefyEvl0PY9bK-BiI4oaO9NJtVjC_f6wnx7TFBOxPeQsntAzmjQyYxADFmO_TABp75HrSYLwvsB54M2HfFqSwg54nBnOR2tj6YltJ9onkgbv0IXvKy2ABwIUssd8xbLcbfvwgVgHAYLRJfrkssokfUeFKFdPEz_bQ9xc3ImjjKVR2I67aaIiI4oH7bKxTJTCqw_O47EoOcPUtgdpua2aKbG_dplmRXSFJI6Q8FuX0yJl1gLPgCInGQs8u8_Aw4_okupm-NxPpd_0jCClTSWFSfQM7yBq89v9VowEPxOpt7rKrVLuWYFNgGUvfYVMt2j96hvzeqAFVp_07xBJM2JGlmtGac8y44Phb4rAzMlfYko12F07MRRPWpvu9HdxPbGABnDLRueBPH__hdA-6jfQTukox6oHKFiVJfQ9z6MGDCXE7S55bXAllPYUZCAQ-TuS-TTMvzhMPnAUm-Gc7T025BywqUU05ZO1pyDp8lwiUS7e0DVYexTWiPf5dh2Bz5_f6l2pG1dsiL4kCNZnFYyX7_4Dj4VYXz3mNamJMBk_MW6gbNzwtLrNf3v5Kr0ZgCr5z6rKUUbzOMG96BJ_A3ggDcmjA3MuH4vpKnQZ7T8mPhpUToCUEoCF9n8GHNoy50cVGm4q7locslGFAlvq0PnG37yz-5jN3rSlb6fJVL916OI2cnvsrAJMXLrh_unDki4nrcFZWX1nltjm83EBiyXXzYnajQq8xWNJljwDWwVTAs5U66NEC1I-672hTwXzwjf5d7aooBqt3izJa9yaPhF9f0dL6_YymFOxtYvltUmGUlc0lv4cA0ujWZv-RHtnYZlZ_MEiR-hXpbMQv8Kb8Vkx8Y4a7-UIdExhPynnIxsfkbdZyM_RKlSnKV5XqhbsGdHA6KQg5vLlNv3mkc0Pwqrq350zbf0pjUJwC2XlmySVZemBQJCLOGwtE8Sa7-UlS0Q_dSkrov2NArLwT0COmpPjSuPazL_apzZtvk2hf_7yTzwOMjxAAQHiLuJKlL2x9YLQu9zt1SAgKaYHf0FN4z9TEHWR-Z4XYoyFzicnR5rnPgRymjw9ElOeWLBDr5SErEIqmm3Rk76CqO11GY-2BgByXKrNBgr6BeoDmmwnmSumer54blym9eDz-Vmno2M3Drg6OhphAW_Myx1vasi8j4nlrECoJVmEYSIxSa_R3CO_9a1UFcVvHlBoiWbdpiuzExexI1KHWzCcmsmRd2pVzgiNT_0LBzDYLe6z1AEL8b6u9Bq-UTnA7gb-74H-Hpl7jmB-OsX02p3_UDdb-YTWvkM8pvldPvKILD2RNQkxBQVyYmKAE61dp8aZ0bDXCqohFZB1kTtw4EvnWVScuIXczD8bgmg56xGqRFZRr\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671fb14643def3-27493229','','','2024-10-28 15:44:39','2024-10-28 15:44:39','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41290',0,'cd-form-entry','',0),(41291,0,'2024-10-28 19:14:29','2024-10-28 19:14:29','{\"firstname\":\"condo\",\"lastname\":\"gial\",\"email\":\"condorgiallo@gmail.com\",\"contactnumber\":\"07564691988\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6x9Pbh_loYjctxqCUn67Do1f-uJHaOtMcJTzxAMu2BL_NARS-L11GfZBrHp0o7SArZd00SnqfAiSSk0h88Khxz_lLsJcfcfFcHdUSkgsCBcBfdOm6sh3A2_K67PmsQfuaraBtDZHVulmlAlxJoh7n6z80aB7eDEEGulYkSMC8jNigxVH2fcXxV_6ObD91gg4KpyatuULN5YGlmVfFdtDPrgimqMol1x2ynO-GCwSRDnVQ2HU7SnaciqbtfstGxBr6zqqkr4zQHb1C7wKxU8uLm7dK0cDwkpe7U9N0l-utQx8eAbgRzTeVid8qCoabfMQ-oC6QotZSOzsZ0h_QzmSIWk3rdXz_-m_POpNTVpFJUqKeKN08j73JOnBqpFjZhlAfQmSJ7Ly99P_ymj08UINVOvmrf8_Y9kx2rWoTOJBDs5mllboFlt6uuz_vIARL-RIKYNHwYjxDn8v7cwko2gPQWw8jD67PmvywVrmaaNrpOh90k57Od19tIjN7q3T8mU-cs9dKtaINiGN7uyhfk7rGe02Mxbmc8KyUhivOOknE0uqAeE7G4aYGYCvtNEfAzPOfGSI9OsdS0lgSBfeUzpu2YbwgILM_S_lai418270inmwLRCV2SXlHETDNAVrFW4hvlFckNhhFTwMZGa-1Cdux9KB251NWqJifSCLYD5fngIm2ouF4We5S984V_BIN9rbAJTVXQ3csmCNQlfS4rm_DijL7lamcAGT0gNLycn9_LBrS1xLcsprQkHjsg-SGLUNrGcl3u4XjBYEqgkh1oYoQmVNT9BFt4hdClsiG_6lt-msx7diG4GDMl8wZc0HUdV3ZRw4S8yeklXIaF9SjqkEMJKKTsrF3c8Q9fRn2GJ2Ek5339sqAazJpFEkMsbWk3js2pg7OtpC-saSIyo8e5eijzJlwr2jxi5guqYFaDtyQuh0sq6NRUGl6ubbgAJzE0z2G8jnxyak_G8BDHhe41ejEqQm96MCzmuFktAks8FIk1aZO3jchxINO1TTKkgWmrKqXOQ0nPNPaS4Muhvp998zdpAoYZ3nGVCPCDlbDrBx8X0bF6CRSvPeqQXBarK8hgGxGutOQFFS91A3OAlgSChSyOky50wSotbKcmha3bvki45oVgp5kIF4xjcDNlcatkdLNaWrh9kTeNxpD7Jflpae_0yYK7FPSu5m6avvovEOnowAqXNis1Kk-dhE4ObFbdYNsK-1rrpGBbZP_FlX5EQQR9ta_TjFeS2kHUNZ5_Oyekq83aLaI9kLyS5HueCqPOPBaHjPpHlyGMbu3BPWGxYu4SE7YEU9R5GbvJTQnxyYgkndmgqFlzqEnkCO8aDb_WocvOa8XwioF9UiHmwggUP0JxsZUKaGducw1-zdVjovHslh7ztOdw1REvQXLMX_o70yGZR0l-0GV5artnhcvp2PEt_EaatgOmV9NeUxFwO4eugKzLgNJAUkwjNMLs7lK8yKriE52OYDns9H3iTEmEUix44OxoLlfE6G9TEAvh7GcqXZlcinyxwVOwWbgllJoECjWqBtuLHe2FggjMz4Qc0tsZiN7gxPlpXdm8dlmn6vpjDrVXkBlhWAF-Y6Mu8KxY48yxFBcThvwFZFvNDYZ7JZJHWAxtd-oISlW7iI-E0GPJRy_Q9NTF-DW9Li2I4cw5m72tgtW2Su1wb9dPvAcmmYlc6h64mORkuSlrclXkGrFVcLdak8_8O9YV7iUrRjeOFvgsbSE7kimW0ZpTB8ka4A30iMips4n8CReXdyRJyOT-WSiyBF7diBCIaIycFZSspVdCYti3EQtvqtnGvpcEpFMlCrgrIrT_f_qL2EnUKvfygX6jh2tJs9zrTh3-peMT2CCZBS_N1MJzD6NphXdOa9InDi_sp2atzh3qXTZ4IYwso2en91Xs27jOyHV-grQudL_3nokv_znStWYCy3enrD4UNVBAig\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671fe28b7622f8-99897509','','','2024-10-28 19:14:29','2024-10-28 19:14:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41291',0,'cd-form-entry','',0),(41292,0,'2024-10-28 19:18:40','2024-10-28 19:18:40','{\"email\":\"condorgiallo@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"1\",\"genderidentify\":\"1\",\"regionlive\":\"0\",\"currentpostcode\":\"E18 1JL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4ht4Ze8O4ltAYph5AZ80Lc7yBOQcY1CjXArihLojPHQYw_rAVrB0sJiVDEg1PE7AWppBz2to9XQ9xxXCTOS4br_iOgXTEH9a5TizRk0O_cxwPw7wZOgOc0g22V01eJtuvt15P6o4qjujEeuuQnexKS4XKDaoTW8nWNF5SXM-dKf2HVGLMtdHyD4aq-xy7w-1IAt_g2RknUf-WiUevKF56kZDSN4QCRjSDOW-XH0b56fgoEy9I8YI027CieD4GMegxLs4Abkn5yApmWDjNeNATUgsyQQaPWY5_wuAecEOQbuReSBo-bvqtpE7uIjKPXuQsNPLi9M3zDpWa8r0zt_ESZBm7Ll-xqMhHQKQBVg5U3Pz9c2_BWxJnGOZkG7Vq7qIXXb3qd-v74Qa9bxa0LZLBnyQJLogEwVvVsYxLW2rHbvtYrmga_lNH0nKV7pLM_nzlAKl5EKYfshTVJLSFvBUN3z5yMyQptbcVPAe6CXrOPXICH3hI54e-XmDfhChLU36R5W2Fgb8sJuupIa3VrVvDNRwNjrN3z8I9CITyHM8lrylfjmyppENLKUAbnWcyZ5-guasFMMAinvWtE9fZGTwgHOJQRWg8ALT0_JNSp4lBDHCHcRe37pI8YlzY8yYKDYMxkbzxCg5JZQMMWS9URZCd1in6QKtOSUMabP319RurbKCfXYmgGOpgyz-2thlPmR_v5wIdVtqP7ZuQ2mnMH2n54du-l8g8R6PwjkgO0TZi12Fhlmtv5bUZpHAQzhyVTCzLMjJz7V48Os0qQArv_X6eW7veEN-mhQB7VwDxulvovDYfDtvG27rjYvbXj30O75HdAnfQYzLCWM6jOuoCizCpY67ccnOj3Xaw0AhQ5fDhub3w_jOv4GF39mWCVnk2G8ChOsiaWDlU9f5ZsUpnjcCY6KgZGkr26-3XFz2lfZHJViKzXrKgnl_ArjtUFtW_aGe7TYzBWOYityizgYNTO-jmV0w0IyBtfNLFaixlyPL9TX4THN682LisGnyMEFbZmttwUcFQ1D4A6DumViIAPlnQT9yHsjwJ9rYMlyePz7Auz9Sn85G6nH4DbT5W-JVHgxtJigfo2oJ75yiNnMkGfHAe3naPXz9i8xToWn941Rwns7nqWzrvsfOcuIAWibFwTJElw6JA8QhhqpGvcKXnuIKwPjGUK-U0be_NdIq98m1jjtIM8Q7857loqqGrnx7JMB7nWNPfl-BZXFY_kkziiWV60B5w6BHK_u6XhDiPIOwOzse6U5YbQ-GjgGlOxizs0TYAZaY5wCd679K0CdjtOH-nJB-v0Xp--th53NFrEILfnVX6k4MVsqGKd0MhsqZOWKupKjQJENwKtJeEBFgKQerhtC5nAvApzi_PE3ugsbC9JDiSFFmwI0caEQRFr6b4b0dFIN4oCPaiQtZMnSvMaPWOLfFgIrEcwCJyB__3tUEsEVfYTcPb9f0AyVkhlVa0nwWWp7oZqrh-EUM5LbdgaA4WiOfJaTxZ4EdxMd911oL_awYSCd7PkdcqU4O1xZXsV6bqIEd5J4Hd_fOcQo17EU80ljxUOs_SppY4GLzt6SjVKhErovHF6H9Xh8eAKybWqUe4NnERD6OrpJfQKdNi5-mECDzlAvByGR1VcB_Eu4LEHRuLX_HsUHGsD-x72sjQGedKBIElh7Hps69Zj4Z8Z8SQJlwLEsTsQ8poVvquawMbugCvuqTYUkqphSsFOdtM6r4AjXGDZLQbHFTd0cySG_budy0UskkWidpByFEoO82zvFTdZM_g3gvdrbeXjo6kZn2d2VgaTLQ0xQ_FZQiRyLABcPcOA3GwlBDIzNdaM8rsQXTDI7C_PPVPiBWPBfcsojYXkISHsX8cETdUvVfsjKSagOVNAi2zwmBZlDvyWT4MF3nsKqPQmtMO4HSG3Uj8ZptA-qyu879lRKOUeO4AJc_k17dLvEg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"0\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-671fe37d8d0c58-18808561','','','2024-10-28 19:18:40','2024-10-28 19:18:40','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41292',0,'cd-form-entry','',0),(41294,3,'2024-10-29 09:14:24','2024-10-29 09:14:24','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-29 09:14:24','2024-10-29 09:14:24','',41179,'https://biomechanicseducation.com/?p=41294',0,'revision','',0),(41295,3,'2024-10-29 09:14:31','2024-10-29 09:14:31','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-autosave-v1','','','2024-10-29 09:14:31','2024-10-29 09:14:31','',41179,'https://biomechanicseducation.com/?p=41295',0,'revision','',0),(41296,3,'2024-10-29 09:18:08','2024-10-29 09:18:08','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-29 09:18:08','2024-10-29 09:18:08','',41179,'https://biomechanicseducation.com/?p=41296',0,'revision','',0),(41297,3,'2024-10-29 09:18:39','2024-10-29 09:18:39','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-29 09:18:39','2024-10-29 09:18:39','',41179,'https://biomechanicseducation.com/?p=41297',0,'revision','',0),(41298,3,'2024-10-29 09:19:14','2024-10-29 09:19:14','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-29 09:19:14','2024-10-29 09:19:14','',41179,'https://biomechanicseducation.com/?p=41298',0,'revision','',0),(41299,3,'2024-10-29 10:13:47','2024-10-29 10:13:47','Rachel teaching three people all sat on the floor and talking.','BE_Worshop_24thAug- 1','','inherit','closed','closed','','be_worshop_24thaug-1','','','2024-10-29 10:14:31','2024-10-29 10:14:31','',41179,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_24thAug-1.jpg',0,'attachment','image/jpeg',0),(41300,3,'2024-10-29 10:15:00','2024-10-29 10:15:00','','BE_Worshop_30thAug- 21','','inherit','closed','closed','','be_worshop_30thaug-21','','','2024-10-29 10:15:00','2024-10-29 10:15:00','',41179,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-21.jpg',0,'attachment','image/jpeg',0),(41301,3,'2024-10-29 10:15:14','2024-10-29 10:15:14','','BE_Worshop_30thAug- 22','','inherit','closed','closed','','be_worshop_30thaug-22','','','2024-10-29 10:15:14','2024-10-29 10:15:14','',41179,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-22.jpg',0,'attachment','image/jpeg',0),(41302,3,'2024-10-29 10:15:55','2024-10-29 10:15:55','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-revision-v1','','','2024-10-29 10:15:55','2024-10-29 10:15:55','',41179,'https://biomechanicseducation.com/?p=41302',0,'revision','',0),(41303,3,'2024-10-29 10:16:02','2024-10-29 10:16:02','','ELCAS Courses - Training for the Armed Forces','','inherit','closed','closed','','41179-autosave-v1','','','2024-10-29 10:16:02','2024-10-29 10:16:02','',41179,'https://biomechanicseducation.com/?p=41303',0,'revision','',0),(41304,3,'2024-10-29 10:30:55','2024-10-29 10:30:55','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-10-29 10:30:55','2024-10-29 10:30:55','',39263,'https://biomechanicseducation.com/?p=41304',0,'revision','',0),(41305,3,'2024-10-29 10:31:53','2024-10-29 10:31:53','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-10-29 10:31:53','2024-10-29 10:31:53','',39263,'https://biomechanicseducation.com/?p=41305',0,'revision','',0),(41306,3,'2024-10-29 10:32:53','2024-10-29 10:32:53','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-10-29 10:32:53','2024-10-29 10:32:53','',39263,'https://biomechanicseducation.com/?p=41306',0,'revision','',0),(41307,3,'2024-10-29 10:34:12','2024-10-29 10:34:12','','BE_Worshop_30thAug- 5','','inherit','closed','closed','','be_worshop_30thaug-5','','','2024-10-29 10:34:46','2024-10-29 10:34:46','',39263,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-5.jpg',0,'attachment','image/jpeg',0),(41308,3,'2024-10-29 10:34:51','2024-10-29 10:34:51','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-10-29 10:34:51','2024-10-29 10:34:51','',39263,'https://biomechanicseducation.com/?p=41308',0,'revision','',0),(41309,3,'2024-10-29 10:37:04','2024-10-29 10:37:04','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2024-10-29 10:37:04','2024-10-29 10:37:04','',39263,'https://biomechanicseducation.com/?p=41309',0,'revision','',0),(41310,3,'2024-10-29 10:43:33','2024-10-29 10:43:33','Biomechanics is the science of movement of a living body, including how muscles, bones, tendons, and ligaments wotk together to move. Biomechanics is part of a la','What is Biomechanics Coaching?','','inherit','closed','closed','','39027-autosave-v1','','','2024-10-29 10:43:33','2024-10-29 10:43:33','',39027,'https://biomechanicseducation.com/?p=41310',0,'revision','',0),(41311,3,'2024-10-29 10:45:09','2024-10-29 10:45:09','','Our Partners','','inherit','closed','closed','','39284-revision-v1','','','2024-10-29 10:45:09','2024-10-29 10:45:09','',39284,'https://biomechanicseducation.com/?p=41311',0,'revision','',0),(41312,3,'2024-10-29 10:46:45','2024-10-29 10:46:45','','BiomechanicsEducation_Workshop_Fareham_web 23','','inherit','closed','closed','','biomechanicseducation_workshop_fareham_web-23','','','2024-10-29 10:46:45','2024-10-29 10:46:45','',39493,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BiomechanicsEducation_Workshop_Fareham_web-23.jpg',0,'attachment','image/jpeg',0),(41313,3,'2024-10-29 10:47:13','2024-10-29 10:47:13','','Find a Biomechanics Coach','','inherit','closed','closed','','39493-revision-v1','','','2024-10-29 10:47:13','2024-10-29 10:47:13','',39493,'https://biomechanicseducation.com/?p=41313',0,'revision','',0),(41314,3,'2024-10-29 10:48:42','2024-10-29 10:48:42','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2024-10-29 10:48:42','2024-10-29 10:48:42','',39497,'https://biomechanicseducation.com/?p=41314',0,'revision','',0),(41315,3,'2024-10-29 10:50:08','2024-10-29 10:50:08','','IBA Membership','','inherit','closed','closed','','40276-revision-v1','','','2024-10-29 10:50:08','2024-10-29 10:50:08','',40276,'https://biomechanicseducation.com/?p=41315',0,'revision','',0),(41316,3,'2024-10-29 10:51:06','2024-10-29 10:51:06','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2024-10-29 10:51:06','2024-10-29 10:51:06','',39196,'https://biomechanicseducation.com/?p=41316',0,'revision','',0),(41318,3,'2024-10-29 10:54:31','2024-10-29 10:54:31','','FutureFitRebrand-Images-Pilates-OnlineRes-18','','inherit','closed','closed','','futurefitrebrand-images-pilates-onlineres-18','','','2024-10-29 10:54:31','2024-10-29 10:54:31','',39231,'https://biomechanicseducation.com/wp-content/uploads/2024/10/FutureFitRebrand-Images-Pilates-OnlineRes-18.jpg',0,'attachment','image/jpeg',0),(41319,3,'2024-10-29 10:54:48','2024-10-29 10:54:48','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-10-29 10:54:48','2024-10-29 10:54:48','',39231,'https://biomechanicseducation.com/?p=41319',0,'revision','',0),(41320,3,'2024-10-29 10:57:31','2024-10-29 10:57:31','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2024-10-29 10:57:31','2024-10-29 10:57:31','',39238,'https://biomechanicseducation.com/?p=41320',0,'revision','',0),(41321,3,'2024-10-29 10:58:14','2024-10-29 10:58:14','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2024-10-29 10:58:14','2024-10-29 10:58:14','',39231,'https://biomechanicseducation.com/?p=41321',0,'revision','',0),(41322,3,'2024-10-29 10:58:48','2024-10-29 10:58:48','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2024-10-29 10:58:48','2024-10-29 10:58:48','',39214,'https://biomechanicseducation.com/?p=41322',0,'revision','',0),(41323,3,'2024-10-29 11:00:00','2024-10-29 11:00:00','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-10-29 11:00:00','2024-10-29 11:00:00','',39245,'https://biomechanicseducation.com/?p=41323',0,'revision','',0),(41324,3,'2024-10-29 11:01:02','2024-10-29 11:01:02','','Biomechanics and Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2024-10-29 11:01:02','2024-10-29 11:01:02','',39249,'https://biomechanicseducation.com/?p=41324',0,'revision','',0),(41325,3,'2024-10-29 11:01:46','2024-10-29 11:01:46','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2024-10-29 11:01:46','2024-10-29 11:01:46','',39254,'https://biomechanicseducation.com/?p=41325',0,'revision','',0),(41326,3,'2024-10-29 12:35:21','2024-10-29 12:35:21','','Running,Fast,And,Free.,Low,Angle,Shot,Of,A,Group','','inherit','closed','closed','','runningfastandfree-lowangleshotofagroup','','','2025-04-25 09:25:36','2025-04-25 09:25:36','',43073,'https://biomechanicseducation.com/wp-content/uploads/2024/10/shutterstock_2168498877.jpg',0,'attachment','image/jpeg',0),(41327,3,'2024-10-29 15:13:27','2024-10-29 15:13:27','<strong>Intrinsic Biomechanics Coach</strong>\r\nMassage and Movement Therapist','Stephen Barr','','publish','closed','closed','','lorna-wilson-iba-registered-specialist-biomechanics-coach-personal-trainer-copy-copy','','','2025-02-11 16:30:09','2025-02-11 16:30:09','',0,'https://biomechanicseducation.com/venue/lorna-wilson-iba-registered-specialist-biomechanics-coach-personal-trainer-copy-copy/',0,'venue','',0),(41328,3,'2024-10-29 15:19:03','2024-10-29 15:19:03','','Stephen Barr - Intrinsic Biomechanics Coach. Comprehensive Pilates Instructor - MK Pilates. Equipilates Coach. Yin Yoga instructor Copy','','inherit','closed','closed','','41327-autosave-v1','','','2024-10-29 15:19:03','2024-10-29 15:19:03','',41327,'https://biomechanicseducation.com/?p=41328',0,'revision','',0),(41329,3,'2024-10-29 15:41:58','2024-10-29 15:41:58','','BE_Worshop_30thAug- 19','','inherit','closed','closed','','be_worshop_30thaug-19','','','2024-10-29 15:41:58','2024-10-29 15:41:58','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-19.jpg',0,'attachment','image/jpeg',0),(41330,3,'2024-10-29 15:42:14','2024-10-29 15:42:14','','BE_Worshop_24thAug- 2','','inherit','closed','closed','','be_worshop_24thaug-2','','','2025-03-05 11:17:16','2025-03-05 11:17:16','',42431,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_24thAug-2.jpg',0,'attachment','image/jpeg',0),(41331,3,'2024-10-29 15:42:25','2024-10-29 15:42:25','','BE_Worshop_24thAug- 7','','inherit','closed','closed','','be_worshop_24thaug-7','','','2025-03-05 11:28:26','2025-03-05 11:28:26','',42438,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_24thAug-7.jpg',0,'attachment','image/jpeg',0),(41332,3,'2024-10-29 15:42:37','2024-10-29 15:42:37','','BE_Worshop_24thAug- 6','','inherit','closed','closed','','be_worshop_24thaug-6','','','2025-04-25 08:44:31','2025-04-25 08:44:31','',43066,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_24thAug-6.jpg',0,'attachment','image/jpeg',0),(41333,3,'2024-10-29 15:43:22','2024-10-29 15:43:22','','BE_Worshop_30thAug- 20','','inherit','closed','closed','','be_worshop_30thaug-20','','','2024-11-07 15:58:30','2024-11-07 15:58:30','',41425,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-20.jpg',0,'attachment','image/jpeg',0),(41334,3,'2024-10-29 15:52:29','2024-10-29 15:52:29','<strong>Biomechanics Coach\r\n</strong>Personal Trainer, holistic instructor, group ex instructor\r\n\r\n<a href=\"mailto:maja.kabluka@gmail.com\" target=\"_blank\" rel=\"noopener\">maja.kabluka@gmail.com</a>','Mayya Kabluka','','publish','closed','closed','','lorna-wilson-iba-registered-specialist-biomechanics-coach-personal-trainer-copy-copy-copy','','','2025-02-11 16:31:01','2025-02-11 16:31:01','',0,'https://biomechanicseducation.com/venue/lorna-wilson-iba-registered-specialist-biomechanics-coach-personal-trainer-copy-copy-copy/',0,'venue','',0),(41335,3,'2024-10-29 15:56:47','2024-10-29 15:56:47','<strong>Qualifications:</strong> Personal Trainer, holistic instructor, group ex instructor and now Biomechanics coach - I’m proud of saying that!\n\n<strong>Email:</strong> <a href=\"mailto:maja.kabluka@gmail.com\" target=\"_blank\" rel=\"noopener\">maja.kabluka@gmail.com</a>','Mayya Kabluka - Biomechanics Coach','','inherit','closed','closed','','41334-autosave-v1','','','2024-10-29 15:56:47','2024-10-29 15:56:47','',41334,'https://biomechanicseducation.com/?p=41335',0,'revision','',0),(41336,0,'2024-10-30 10:19:04','2024-10-30 10:19:04','{\"firstname\":\"Shirla\",\"lastname\":\"Imeri\",\"email\":\"shirlaimeri@gmail.com\",\"contactnumber\":\"n/a\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7SSLzZYMhn9IM8bmiifnCSJh9w8SWklOJ_7P7wDNtMD0JPhvno1dIqo855Zwdtnr0uGy6qVgvXujvkOGb5RWFkFnejXG91_3qvnROsFKsKDiOggVPfXBMioom8wEAHik3Au4IEXb-Cbjc_Es6JDdJHx5uB_5-IHGNeTQbBq2lOmDpV_3biomQ7937HO9N-n_NvaXj8_HXnef_1osX_styPbOczWMVbBLWB9CcdGGIGcjtalYZhR3BrN3fniJK3ryeFOhqX_u_i0wpiwtW_cvtHzRyD-rjgiKDmb1wudJI6qpT74hvuZWxgMWPco1kdGKWoxWDUqM1oFiMnyxN6_As-hnb2kDMYXzL-K8FODOBlvv0KzBNU7qamsHMa1K3BJl9IK5AnI1f0LrTliApXEPJZ6lPNnJAZ7Kbkw3PHUe7GW8yuiA3Ywn3dzXjKz1HpOcZdJwSo_dJe7ygvcBRHwntIUFEKCdfmAfEdp3WED14-jsyZvnMu2Vg4EArAKWm3L7JvdIl1nEpJvqGaWTRr8ne_87Wa1FJwGrhG_cY4qF4pGqx0RleWyMqAG1Addf5a5X73WtEEbnQNp2H6aRs9-qDIEl7mmAQO199FPUqC3VlyPMpSxMIZzcCHwjaFbfqKm_gV3tMnBIh0d7eqqDIV8DvquNsE0m1aU4bm7v3OorXXtQrh0sSWfsOZ1HvSiiC8bSFtoow9daIdWU6nbTO5SJHd7jR7kDHoD_fbwfHGpnVGcr3-GuuJ44wwCnjk6NMgVVPszeGjs6FywlN-zvOkPUviHq8ssJUL_7_bj2gjHG4FoNzXNiLi1N7smXVTtpRwkkA45B_FdjtxoB8Gu_RZLE4EfLRD96weYW4r1N8dXpPaAnGGiZ7F-r2JmKZB6XSoo9pV-ksqZ19RrrLIoRKnIsQVLXpuRo29qyFgGIpyNqq2rJ-oIjrB4qY5nMqOrNhVkByFQVW-p24u3UXyJFbNFzCCezRn2LTP-JmCLaqYJ8cMvcLJt_dUZ7gXkiWEbFPBcFVt1RbSa38FJQ1-PGAPFDTuJwOcka8nYnrLuTLl_W3TC-VNOnt9XoThKLgKMP92kvZU-PV2YwnTkG-adW6QNFNT4xnqhVX_kFrPDUwgy9_2IeBp_SnwGr8zzfQR8dRHMcHikZlVjVN915jzd6UIU-3mHbnRck3o_0JnTb1N1WOrpPsx68oYpaLZLPKrpxKIDygbmyAAt33ASlSVavE4PWEX_feZk-oKdr68wOZE9932Hg3knopmR6PwEI7KRkJ0yU7eg4YXOoH1v1Zwheb_KFZxm85VO4tUA2Y5323oORwVh9wnKRLSofcvm9WCwAOYNZ_-jcdWjt7Thr9zj6ICzk2tEEauA1ejchEBl0HzZp5By1FI6gscxhxA6EZzQcEYkSAmYP_iSL7MuMeAX3_-AUGqHgiIH9EJ8_rM7ROZb3zki284iY2-PQvwb5nZt6mfw6UFMZg1cLBIKV35HsYuVN04kfS2Ye0UcB3dhPU25imhe6cwehItfgfIGsOW22h_9g8liaUnI770r_PdBIf2Zt2lw42oh1wJzocMkZZBKotCGsva3SePE1Wl-sC5zzcerM_Wc1yVrVEFmtRKyvuWYwaDjvUD85I7E1eNk9hxUuLxFsf02WfMFW7IqistPtcJG4R0VyrWH5WGcn4Ed39hkuYCW3zcZgpy5ZshnOuohPw9U1wPepx1niNncarmN0EZldyYBRTzleIk-fYJPri46bXry7lNvPnK3aZ--PTVOpj5nFHNi659GKevxUyxuWB5LSZ_XsmixQxFhnRyhpv8LPYdqRpLIBypL8fRZnvZc4_SeBCUXwWQGUvDIYt_I0a71CqzdHQmB-KZYaQ0jjZMzmwn5Av7roNCu9CPj_ZNNcjK03r4GpLlMlIjRzStczNzKqEJ2fk_mfGH4bRhq9IPCBo0Xa0Xkw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67220808e83b02-88751655','','','2024-10-30 10:19:04','2024-10-30 10:19:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41336',0,'cd-form-entry','',0),(41337,0,'2024-10-30 11:41:23','2024-10-30 11:41:23','{\"firstname\":\"Hanna\",\"lastname\":\"Zembitska\",\"email\":\"any9363@gmail.com\",\"contactnumber\":\"+49 151 23554172\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4NWFEcQYpFsqCsWKvSVqr8fDtY1lyEjbQ1KAipL1SdDV0FRPn5X3kkgveids7Z8axMuuPi4b-Eb6qbDd452F7hqUhKs4NrvP0NDpEXsOw_LT0OPy7TQFQeisAUiQugGKF9R_ZyzqQdusb-qZSd1G8M1yoqsBYKJItMB14H4hDE4tm0FSQtV3IsBj4QX6kCx_eReLaTNRI5ETkHJkGH8QQ2opF04jQ2nw4qneo7Ysb1Hbizto0XVgJzGGEb9eFE-wYqUSz7qlgmvpFvUr8aobwe7TWWtjvM-D6zGWORHqXEUZ46VAX-WCT9yas4gQqK1dnWbG3TqpOmd8nxkIc3j6h5g5t4qQIaQ981xM9lxa2Q1n-FYmAkARwRPueBK87R67NPBHcJKz0V07qKSKHs7UQxHv-wUa-a8St0pY58OPZNMp3H9n7Xko3SSx8TtLuXGw1slpoLPscljkmjlzo_HuXmpF9IbGLuJqUgnmcQzC2yWJAPOmRzgQpqzU9GgxsxZzwi3z00r5d_4z7ll2rgJB2AmHNVk8LvkS-uSicD3aYjOC-yyXIhnhl8tBszsLDBcvKcOZlP3GTFugH-CnaFjyw2UbwX86LnfyGMd1M2tOOFi_pbN522MpZ8jV-r6HAKC1uII2WbOZilnq0MR0T2GEwELalQjR1LAqzzNpzgujmUqT9qc1PjL8p_c_i7twW3jKK7M96IVXPqWzpAD00MitadtVpf1yTn7tdHusNry-27eJpHddgV6utForDrGaWBAMT5x4TMMHT2avXMks4xvLfmihlo5FbUiIOEt9BzaNo3IivdoXSAU04CA36B-HeHWImRBbzrYQ_65fP1AuWshFXiZnlgznp7CSuTffxQ7DfFsBB6rfs8MhgCWxNkirrGUP8OfTrjmWoAvJOatBUeTCRmA7xuz__mSDvTStMepSTJor99GX7gj8_Vo4d9RWeQLY_stQ68MvADqor_qkhRXA6E4Astl95qMNba4FWBBH6m32ItygtCv_ifz_FDNASAodTvZYTU3XA8GVZqV7FoivwU0gvNLwgZ6V7vSXFtRi8lIhpghHB-JgRp97494LhvlIcTyOWroNLw1Yi9_C3l0r7xkzW-KX7HI7YQ8soLFjz6A41NRKs_bag9FteihgsCBrZoqTMKaGbjj73QolprwDu-y-4L3GJUcvR5iJ6IIO1Uvwegy0P7ShgiM88brnbuZk1bjDsmLW2boaY8bViGlRC0L1LWlIXnWhuGHEEFWcYCcMI8OSj_RjPI0BB8IwlVo3BiBPS98D0nYGcqOp-m4KMfyll-ufJfvVHi7rm6nmp-G3ERPs0kJS7xjnqjuDw2rKxJJFrZlYQrx9b-O088TtulpWbMj4GmCASb9fd-9IUJqxUiaAny0tM68P6lHAc5ByP4FVvwrSBbwR1rAZIwT4kEm6e6jNL8G7d3VF1MTv4QUqsgmEKzuQCtCvjrNFilCv5CMEsR6JpHoS9yHWWnLCatdxnKzhdP5sFXy4hCRVS5viIaP2QDy-E8Ja4RtC3mz-SN2TtoSxbRRNin079ovQgwbZP0378D-AZiA4iUcZt38LYQzEuzswAyxePNHep3n7HdWpAcXArY3p7QSxo2nBzRm5UKeciCIt-7eAQxcNAOFn0WMsf3JRESwFF56jZ7uv7U4tu50mCcF9qUvNl73MO8W9iSSgooyN2YLkPXDX6ebU_iooFuj1dHGrcy1AAO6onNO87r04zPk_9TczM7VsuPa2LMmYAtWovowy6rM2sgw7hsLuTB3v-Rd5V00B7b4vf345rLRHHP_ylPoAM45P9p9v8KtPRuC60oD-1LzBHt-xRLhbrBckHatgQGYOeYTLAd5fx73vgsDEG8rc7DbU_9MwIGyh2ec27CPRch-wTPfhfGvoQ-3IO7VrSbFyxmQobMZKE0vCcPgcKIn76EVyKziZEQgYn8hcb4dyOM9NiggNVufrQtc2vwNrvUPMuq-nrvsdp-LDOo6E-pYTfV1aPIpyWSzCNBPUSPsYnKQcPzJbvlnq0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67221b4dcbac69-10052817','','','2024-10-30 11:41:23','2024-10-30 11:41:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41337',0,'cd-form-entry','',0),(41338,0,'2024-10-30 14:44:55','2024-10-30 14:44:55','{\"firstname\":\"Robert\",\"lastname\":\"Jones\",\"email\":\"rojones@royal-isd.net\",\"contactnumber\":\"8326745230\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7z1Scc9VdmosflhoXtfJYE4iFclC7Hqr6-baUjerSgbAu125ywX3Js_3PEuZR9D9AfVK7LGLtAQc_-SyEp-wPs5mrk7X1EL1f6f7HrVztr3S_a6UAD3FLdsCkJY-qzgga36e2jPmjminpbJoj_I_kPms1d28oYUDsfP0i_4foW7RN48MGyVfZqNpT4HVIDeu1KSemWTwMU1YFv6IS4inwpdx23GrzkF6ms-9zdOVI9hiGIHNTw7ImmXCg-3ELdNHW5hqUMvp5NswQ-EPlE5GrcQdccpTqtwvCQDhj5iZaqWfn4uNyDrHBrQV0phS3uTh8sOIRmpp00uL5Kl7AsmWyOzdFSYVGK3b11ID1Eyipn8VWz39u9lY0-GV8bvjSfByX_kwUg9D8VIUfV84T89lKHxYb0Nrtf5s0CnCLzNKEM0V6LiXWhk4zxjCivwgY2BMnruln3IeoacHzUTi65kw_supbs5agYjflZ5uj0LxsdhvYyA283VXNYJPPvr9Vtxhr5IdVIrgp5EmaRDe51CPHHME3F8uq_bhPKcRUXXBKCTZpcSF72RU8aX7XFZs8MkZo6rtdYy4Pv5X8Xu6qfmIXb2HxpbTh_5Fj-2J5N-MFNxXIIqY8IOD-_1QH9E6A1AfwnNacKzKHCtsVund76ER8kTXxNawdno4HVZH9-qIiOnI4jmeNRJDpiEwKgKSwM4_ma41h1QrrP1r690q0hZVuKKwoLMbEwv5paq_p2N26D1vAg8tDf0HOislK3un8rGMuEUOG5DiLYrLAiY-lnFBGbRw1rMYSDu9KVsMrtTnnkMqKScGlebTvNId9Js_4DjRtUzUDRVLmTHcthg4ZaikCji0tIR-vNWjRapoz6MGEYiLkG7qyhwNcxTOWQrJ_8CArfmJKt4PUsLJnRBPq9l38CmxcvuQmU7NxPhP4bilDY1GubNjLa7GlxWre537_ChWKPKt_Q8Cj0QOD3Sb1uPXILT0s-dR_dYyiAb6jH37GJwGl3I3vtmyC4dQP3V892lDecJWw0vg2j_tg5DmZ23eX0BQ6vNvzIAiaklFmQi8sjYIFmIP6RiregNiMJ04_C_333r2IWl4CxUCNSPgXrLkvns3qo6qGNIEds7BfYs5agWIgbqzyv1Rorxvb-7ydI1Mffy02OJRVEh72a9LVstRt1ZKpa8wsQ060yS5pXQGwoTKNuIIQvHLTM5EaJZxCsg0dc3yHjJo4FSP_9KFZn5QRk8MjzOgzW9Lr-nvyCgrd-8H2CRcmOIO0KgQCLwDaLDIjNNhi7T9dnQlnNOLabvxg6OFiQVGQnM2-mO_v5gp_J4Ib_ewkNWsrF57Qa9xIEJgdBDVXWbhYuk0fyd89QyD4i8gE2KmejATvc1q4_O2T-DSuOKKX3PxiJP_BDZIasWILiBxXmBmlvCs5W-BZBR1k-QFu4IXc53zG9VBVTs-00Wg5vHebJX1bLjt8fmaGa1IL3s9zxO1ooHl5jp-4GLoYQyh599F2cJ0Hkcnmn4rNr8rDsQELlWBt6rUn6dPxeEoaTRLgmJEVjTZW4d5ftA5pTxNoSVMLCVZt4XFYu2HTohACBoSPJM7PgYnQJw-z2GssrAGAGspBIEkTXzFVkDTs7cb9t2R__0I-ht_wTbga4Cc5Ht6miBjybo7sEWhtcUYxOWGlxIkwwUsxkKv_ghjSwqOrMybP5Py2wsd5KnvQ3FUA5g6XVxwYuwNe_89W763C9c_oD0C3UwtCiSVlYyQNvUi9m7LhiOEg7IJ8iiDf6ORiGpY7np5Gp2SpbYoDt-XGVQImtHyyG-QcTnFcRs9MIbl0vQ6L0G3vD7y47z2Kg1iDE0dY3hrliEVei3xsPlM3eiMPaRYUE-h8h9VzCKydnELzvPfOrWDeEndesIssUtxRDjoNWnIi29X4wZHqpYHG6uC48\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6722463c073f03-83626690','','','2024-10-30 14:44:55','2024-10-30 14:44:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41338',0,'cd-form-entry','',0),(41339,0,'2024-10-30 15:15:15','2024-10-30 15:15:15','{\"firstname\":\"Beck\",\"lastname\":\"Maun\",\"email\":\"mauncreative@me.com\",\"contactnumber\":\"07971046785\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7fBDcY_wWYh5gHnuwiCvHphtAY70W7ZCO7-yo0HLZ1MbBuNIinwXC7svA57stQFinyohMQB7K8zLW7pcogmTqeQ9hrID9TBEJE7PYQ97Za1UudVKHuUOicfgRhbP5ZcCP5SYmym9scE7UXc1WJODbDkdsOi9sPTSFTaFz0k8szi8wgeSKQcZGQD0hD3lxKrkTu_NJkaHCageCd3L5x-TQBzCxsy1ZaH9cvhH6fzoSVdeMRdSyIOq630HL01e_7Bt4L3V7R6tSb_AfXOt8XQitK2hW6IpDIC_KO4A_iGozHa7najzbBQzmWlKEnxpJzRuQJ6HCjiszugfVVCw98X0OS64is9sGmeh6tov8kK5PJC_eR--HN8oxWE3sSZgLHoCVTzU-cORoXYwzp5NdZKNvjnVYEi8lfJM-tnYh4hNIeubE19Qvw-PRncTbfvCzOx_ChLjWeD_GSz4a1BEUeU8iJN4SQcLkMcEvnimapfef7ehq2OnxZf3NiO3F3u3wIE1ctYeZFK080D8LtQCNUwbGiobLo_7L-7DWGnDlLzTGfpTj88Tqun1-XAuatM5xxTeLPId8v63j3qcY6H6ObUlHUayVnPliEkyYenR7wuwrtRMMASDDiXcYyZMfGtzQCjJ5mtpM5tuQG3i6my9UhzSD5-Ghvhl7hJzO_EPhTuu24uPLTrFLHC4T21g7aV2FECnCxPT_fv134jyAbX4kxPIoDZc6BC-IdYopg9QJz_hdlAYx6OuIvbHt1LZ_tE9UcF6h3jwCn_eL8XD3gbt0BXttHbRKQ7_ECFyXW3-BFhDiIdC4GIOVjFzCNzk0dRY5SwD3lhUU5oSVVioBcXchEND0WJd07MhPu-GPbxSFuijxdAw-33lHDnHaV23ABUbUwWr9Ve-RV9nmYpQSYEdsCKgCgdLIcgDNYoRyElU5fwEczlTdzT7iSECkR-V8hMbWCB07cCvbX5wso-EajeXzmOig8vp-sqNxC9hItr2d_vRlhBOavdajPpIYuOWgFjCONKPdTrROkZ332UqDcpuqwCqAI94RSh9vxfPtT9xSqDrNqAs50GiGHxG0idu5UmOvb7ZlOU3wF_phCtadbYmtdQVbHrJne41OEmXdSJefLnL0DURXRa5MObxJaeTeKemOrAQ0q7rPPcjEBCHa7UHSNw5B_QB-ozcaVT4OTK0CpaXd572O5Q3DBZMf1AhASQZOCskE3a0ETV-6IQPXlKLHO4f8aiDr2cT2nCZplOQigtTaHNnux62IWaoZRCFMX9FZGKbb3zegiMZSNlTUC028EISrcFaQTbCvNuzYnBxUNwIKePSFo-FpIYAJC5ArUAHe3h3ILrMeolwtq7i1DQh_aajs-GYmaQuMajP3nLYaHtV__zIMFjg-JCFhu574JfOWa8jCymgrWumtGjsMvrEG_Gha4Br3egGZT0lF15nD-jgg3ozf_8m3lFrP8MSfRROtCtDPqxHv7Os-S4-_h2MYrDlZcgw9NWzL6UL_aq703RrSjDJQP2UVF8Y88XlHC_hX2ctiaZ7eAwCRzoEyZa2N2r5SrLOlWQpcnPlG_SwiafESvUI54lQi_GUbigBsZDSo7G2J1oNPszcCgUI66g_eac_bkf4ZU8gNMVe_Qc51HyCOhWiGAVA7PSMq3EaU4w7UVo_3ilekNcmZhPzh3yxoFhZWWKu7acVAgu3eGie_Pl6WvXG-wDDwnAIQksHV8rLJ3ksGxdbIq70O26CMPmROb41Mw0oGzYvf5l5jbTbJaVLCrS4F3DW3fzzIhxIQweTkE7BryChIVbL5G0XeTv4kv2huVCw3yYMv_Ewh91C4V0MMCeVCOUwKIz33Yw_CV84prMu5TtsXALKBOP9f7NEuPTEnavSJuPDyF2R-XMtCZjloduDDdENgjKsz738iR1hM1cbI2DZe5hpyg1aILzadyYcK5vs0l0hfE-t7Uxx32MlFEqrivvXBSpBEIvaHivCGA8xGjV0iAfEDEzAuPTbPC_em4oZvCbg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67224d675ef805-49542254','','','2024-10-30 15:15:15','2024-10-30 15:15:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41339',0,'cd-form-entry','',0),(41340,0,'2024-10-30 15:16:50','2024-10-30 15:16:50','{\"firstname\":\"Beck\",\"lastname\":\"Maun\",\"email\":\"mauncreative@me.com\",\"contactnumber\":\"07971046785\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA6kFp5X65G5epMEkMgXu-2nsm68xtJ-BARYoYxA0aKTuL_9BXj5I_4ieqTXhC_sJemuCxbS3tqkK6XJO43CaA0urMhFxsZWjYl2sPbTYQMG0iMLkymeOdVI3qOJHa--46TOIK8HDzmQi6CqX1gmQW08ZlnXtsDLcFawsNaRc4JC-PgZSWLhHr42wfC9M4XrE5ZpNYDbXjUfV2kpZBuy33xyPHLYywD8wmx0LH6Qvje2i1nF6Egs2mqBEndv8GJWqLYR1zSu_MjxT-Ox9dyFavIyHoovDcEnkTrrwOKaZja3PmQZmnT49fP3DIzWk0TyWn1KxlfCHgRYL0Z3EkXQnFHPbUxp1FcJ9NUn2UMWFDLb4KE0-nBd9lklu1oA1GRyKdGBFHGD5EYkUDPx6mLH5P1g72AW6KQCQCaT-0gO1HhHdtXKS5VviR65-onp8O9k5TRc0sm_8HlTQmPUdUulcsoTqywMY-xDqjVQ9IqC0ytgVES084n2DTTERLEIyTorRjf0xya2LCLKJTua_bWdO17k-NmjZjRdQmEsm0Ilsu0CyVB6ig50tYGgQYAzEM7hiqH1JBF4zY_1FASScIr6Kj2UmhnGU0yIB_XTJOWlq37nAGea1CkIVtVuAwidpRNykES-zh4Kd57GseD9pwU-7GXcNtp6j1FPb9eYt_-MM5r1reHBCgXMpdVlIKGmmnJUIDpycQgF14fwkxfkuTiDyQRblyHFj-FduwuKKJ1cZ7CVLzGC4BRJwYfNHm2tkQH54qP0XALpF9VtpgPtL_zMeWV2iBYviqHBeqiFPzP96OOKJkQwBKR0B62rVnMnpX4_-ucdFHa1xWEaZKoeVo1U6I8rf8j1lKC9pANUObTzdc_hWQjrvf4whWNh_SCpElRnGtOk9Xyzp5DnyRBl58k29P6-wVTjKgH-U1IJF-To8aZBKStkVs_dIbFIQlOsnxzBv9vo1L2ywwiP2ewZAA1_TA6eBWkeB6JT80SySXVk0IzOWHjofgrPrP8CI7YEVAYasFSi8J3Ip7FdBSc45Eg2uIRZ72NCPF9HlUfFLGdNZh4o4IAvNPBZ8sOGqDyiPg__WyPlt84mAzlNxVgFCZS_0Q6W_FyGj6o8t-352psCPnPKGf3znY-9zijeNaii6vhu_opS6no1hHfKOOTof5oA5DJyDu98y7FeJC1-QXBEVE0SzS8wy6MoniSbp3UNt-NF1IFPeGwZbSqlZJdS5npW8o9VTzv6nQlqAU4Xdi_kv_ctF5FQArdsms2CL1qbuITilIwkVSFi3grpzlQGWILujkU3xhbutVka4muBFl0HzRaNsEJsiJ7hIqlHXmUTBHi7EhdhDoNVhD0GaRJyMG27cWlO5xbJwNEwHmU8vJfU9YxrUpPNt2YfhPBV9BjHcZu8nJ5BiP1WUO0d2IIpLs5ak95Yw9yHdXNet00nZtoIEHLwjyJbHmyjjam4qkRSvWL4dhsaVHG6JG0bRW2btMl6v5zP6FpzOhRdPrK5GthTzb7lZOKUXl5BqBkH-GP1OfXGTRd3cncRJSY7TYo63BWx0f03bo99xJ9O5otMIwsBKNRekgNFHMw6JLmrE4LNCJij8784JRCDHgIaVUMOBSI2JBbLfDWI1zDM1VxzpGPoHCkdOqHEbdHb3IbRCavLynGcwjRVf-cxEIVjMkFpZu1i8_sULCgbjkBjap_nvEc_GMi-6ZXMc662v_hKsoQR71A7FoHX0gNdkB84jRPe2gZLZNo22su_0DbwQ3BnioGHjK8m451xC-OWHRSyujZ_gsm0Mw5KjdOR26PMq9FohzoysXVZnkWbDjdfE33zaikTCHcQB1GkliGv_XXNxMUSiOYdicTueO9hCeLoONFw00KxkB6b9ALfLtNkoPXrcw3Os0b--P1q_8Bg9X8UKnHdiGbT9UiRwus7jJYXhV7rRXAfxW1dWXVYkyNt6pO0wHoqL8PTjYuPmsdpocgfIwkaezYgDmd63ckAy9dxBLRR74JqgpNz0j9jtg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67224ddaf374e7-65028054','','','2024-10-30 15:16:50','2024-10-30 15:16:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41340',0,'cd-form-entry','',0),(41341,0,'2024-10-30 15:18:25','2024-10-30 15:18:25','{\"email\":\"mauncreative@me.com\",\"interestedbecause\":\"1\",\"agegroup\":\"6\",\"genderidentify\":\"1\",\"regionlive\":\"5\",\"currentpostcode\":\"NR11 6EA\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA4kMg8JHogBq2y8qjl3UaY0g51dsyKrRYd6iVjvoCF6Lbp7WIyDLmD6XDXbmIOD-l8TngkavQFr4E7I8WnclYpkeqyQP-XfqjJe-f9G4mTSVphDhzNct_959aEPinJpHuDx57Ewahz47EGTzPst-xzfi-z51U8eml-G5GviKxAOgN_CmNW7kbND_7dcvjvoRsulp0qwsYzoH0aiBredBVMUdAwvLB5eP8K2zGH-sm8qQIxPG1bD3o0qH3MLKeVCf-i6LPSomONgxvAMLgLuiO69kNjy9FEWMOux9qWpHX_0fIFAI8vILu4aLYZP20YSZmk6qgI85w2oCmgZXwvUrU-6vrwPpHqXGHla9v0HirCRDP-IcjnO11iJavTS1dr8vE6BYIWBj0G6P5RvgRyLlCQy4r6UtiE-bP5cRt9TzTBn0hmZSrPyRBf7NR5h_gYv82HpGs1uuxO_405t2khT8mm7saoi8ZWh8gcHbztjb5SoGCiAgruh7x23mDc1Pscqa43FtVHw12CtxxyprjWr1Ewa5Xmg4UimR40a_iFukJAqg6uoPSZqtWHMw2VI_6-FLm63iuklyDuTGssiPsypncFoCQLEIVVxrkumtoN4YxLHAmUJKRlwB2O64HPFr326C7ulyMHa8hdqfIjXfkObaAQkNpb9_6cPabsSedTwWXJZZ7_3Z59LMlwI_3qZ8N9TELdsfTuc67Z3GR-OG4ph4vJ-9u26yMmbaIjTPo_zUQOVU30DCH5VqZareL7Tczyx8KlQaWnRAT2O8xTJRnRoD6nCY-9uC5zOTZcY-n76v4PDkjVDDQ4om5qSM4jac8Ar33yOp_8zpyRq3JAjazaHGzP9AF-ptJIQDsfH9q3Zv4ULiGs6zT9vWlUz6Fp5lRl3xZzpyxfpmVsXn9mvqwTjvm7RIK5pbeskimACkpHD_aHMQS5yi6lifyzCrW27LbfHKeQQYqJgYnQ-KYBUO8LLm6zQOn9lQ4uIUISmeWc6FaKjRtRaofHYS77JNqTRvOoxqq-JoIPug14LDFO71Xmw1KyysVz9IwR-G5dHbjQvmef3c6Oa8yaNrIjUuBUV1Ire7wZlcuvq_Vhk4n3PtRHWv_6xPKYL_xTlFTti7OxPttmfV9MhKjVuTlsOdeb8qzD-Rnkl37T3dR7PjuG4kCeIERLOVEEI3FrnUH-fC8WyLJRjb-XZOL_Ii9y6CvWWK0OFcPXKDme-__Gu8FazGnsmVLBLaQ7HOMqmdZkejvuV84XjwWtf580Jda3zwuDSdwH9zvs7yFhmfaRSRrpmtEZEsrWzvQRvy_6t_Og76F70OOXlcuZm7vzUGtO5D-I1GAV611ehQRJ5Og0oR49-R_4W2ebcd-rForWKILS3ZPHiVB125IIrKWHzKTXMPjMFluUqwnABfw-ton70gEQb-3QuM_jiqJhQbDzRgiec6Gq42KY9bO46Gm7pvj5w3l7ltBNslbPzXQcpPaXrm6zB27kEidUecgUhcqtY8dqtO1LO8Jg_sQXNPuyWwY7oEbJiIgdeYoV1sMKOcBtUikJaEyU0LigxRPLwIhphtuRL_qmvC1jw3e2Nus-A1VH_uNNrUCYl7aadj79uaxIbXdg39MwN3oTnAzuCaT4DhYkq20zRJYdta9B722T7Cz3JvKGo2k_3-Exgzdg30zE7oPKsHwFmIqQmAdraJdJq6hlIw3KJfOXOAMPV8Gw2SfsPZC4UKT6hDCALinKm-L3fBEypcrc1V2LSaijzcSPM0Ec413QWS4-zI-vmOaXA5K7DnqQeFA8ET3aaNHack7UdlfSxrCYdOQfTG97IHqFD9gB_eS6lXsP1tXeodIT3tbtWwvkbfchq4PDd9cY46IzAs5E6NNSs1w5KyStLJwfU3fcmWeqTHZqnxcTuw3ZxqlmokwSBSMDqZ2nKVSa8QTfdb6nikHSrVAEMH8hnzGntVNFB11mhAqh_5rgtIv5Ka-fyt_ewylrio7t8h7wrssiz2y4EEHB_wWsYtjK3VA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67224e2447a251-96817715','','','2024-10-30 15:18:25','2024-10-30 15:18:25','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41341',0,'cd-form-entry','',0),(41342,0,'2024-10-30 18:29:39','2024-10-30 18:29:39','{\"firstname\":\"Louise\",\"lastname\":\"Harwood\",\"email\":\"wiggyharwood@icloud.com\",\"contactnumber\":\"0771354846\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6p_L-_IGQ7BDaJ22kuFeKmxOpG9kPvozc-dhvs0KvPobZJpaL25-jxPT1LifspYMD1JMsqqlovcFQRPmv1n0SaR4SMR-9jWi-kx8rtLxDxvBvtpZOUhMy3Jfh5_ngfKuxCQeEoX3Dz8aPLNhPOgd2zd9MQLedWgdjzHxGKHCtu3UkqkEupTNVB2b_YeM0Sf9xNbhqNJ5TdI3-XvD4chxlBgGeBE4siSmY_FdONvM1f7DruDXdi0cw7ztodXjcSiIYWOdCoxIyI-W0ez_wGRpjr5kiwm_t_1XTYCQuyiOqSED1Xy48Oa1QaizAkbCyws3CnGm6EsNrPeGPOGM_UafENotFVWxqCT4BAGAy029-Pmfq_PlK6DO1ZREDcb4ovrDFpsp_KuskhvNtaG5JVEOllzzmROuiD3IpbGLY931auUH9R7YLoDZq_Bitnsm8MLf4IN8iMpFRcFTl7CPFtHvzuvkWe4xORNwHJXXsIQFZ-plXo44IfZsZJqlZUXzg-F-iKi58iV1qmCdVOOAjuXZgBlQZ_1Gn7ZSRf6J7-j72TifCgpJFtuDniXnzIos_wMsddMsL6qaw8LKpq4u5UPKVfohBKiPuf0dApk-0yH1NWG-1N9ykPN-7X0x_8Mkdk0F5qBhQygNCLEgXH7SblNjqrx04xeQ7r8FeK30xUibWoPFXgjxCBHhdJhQW4UO1yRfHUtaa0ckytEJU0pc8nswDP11h7AhF6uT2RDCVnRdJ4siW5kjH98BULJtEoRtgfsVmyk7Im3X5OMp3ZbwwTxHbik0GGCjNH-f2Q3X6pvqOTDC1PvDfQfjDL6uekFAlhhWNNmton25bF_zI6JpufR09MNj33f4ahVI16pUsu8jF1eZJlKcK8ZMbJTGH-q5tOoZ-XoB_BNh4GE9HPQ9gybl6RYEEbuX6Avp39DNs2C2hwmahK_YmAR6X_gEFr_5b45GCvp9yi5xRHlI5LKhlVCm7_FAnSDx-RyY8XuHCJIvCTW5t0YYuD5hW2NMXjSq85wvfR4u-_Yltzidv_iuLEIaDGTwHlMs-5_VuIA6O32DGxjxe7nn8w5p9tvHd05L-XOS7APYwI5kWtvwHLk4v9SXe0xtfVPmDwA7mzR1cuednfEOHTUttVA_XhNloFMZxX505juUovxsEy2G2hyyJUs0112BmPADybsqbttA8QL8Epx6XynWZhHjENmtobpZt_0HtvogqYtkPwhpScp-kD4qE_tjwyfSPc36foixqMmihOSkyJA7gDECYXRZCGBA-Q5iZcV4Q2gkHbhuvcBwuaMz9chxUw_2rcJ7bJ1iKV5dlKu7Tx-mxtts1lHlTwdAF4WukcGnrPBR5XKrZ2qESuAHTHAL6YgENvDQiHlcWHASKhjqECiZH6v4ujTZzpgAwDpoOXbrN6Q7pLkKgJJI9qkyg-DM7s_YPLLY3TUphO83eFwV6QgZ1Z8avecX-U3l2mQH7RIpXGM_6CSFLsmVAF7ApDpPCMdy5l5c_p5iVJ51b4uvxxlZqHRdGrrLx3nTUrDTytaWlFA46lMiRuz7MiVP7hVUPTBZe6hZQS8Euhc_Rs1p6gsovp6hfV4mkQu3kXQE1rkVQ1HyLCfwR_BZo4Ozl1aWQcfB24n5wfXCmQs_ijkWuX7RV-f1mhjQxj8vMMlfgndnsS7PqdobckEQt7pHNHvBxKF0bJj67rQfPazx1OfTdBhi9tyzHZgGjxOXjDM7oxsL4-1rWhcSjjydm37DwICiVSeKC26Ud3ibPw710xOppRyUbWRDmaU2rBsaiGumxgrLLNNo93t9Z35zttworvME_CxrsT7Jjd21t3WLAdrwO5WHJdSfJCMu5_dhEMz9mIkTtevvjuV96jTK1Uuc40suBJgEMd2K07s0wrn3iBvs3IssvvMf3VuitvfedOtYdcCidxLp4_fKR9X2eSkGip4WCO-g\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67227b02d66c72-49956940','','','2024-10-30 18:29:39','2024-10-30 18:29:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41342',0,'cd-form-entry','',0);
INSERT INTO `6m7_posts` VALUES (41343,0,'2024-10-30 18:31:46','2024-10-30 18:31:46','{\"email\":\"wiggyharwood@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"4\",\"currentpostcode\":\"HR3 6LU\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6IvSQjK_V6jtsKKR5KcXqZMDlqh7MckuO1AIhBgwLOMbbxQiwJ3oG-v-Ok9KCLsmEa6Rgd2LxXrFBDR0jArZH8p3UGXXhwWoMOc2hxG92qv9D359RUAW6wsIDI8paptq3H_LYggC6mWX_aAZtasPeRdiNev-T-Eir5f4pXVeFaw7iw0YytT2y8588CBZPxa4AGs_mTBbMqKSrnzbDnfBnbUWqzDP1MbtMdQg8hkPq71ZQEl5qdZkwD7egO518IJU1EXHo1gYLLpzQaPvHiu9rmncoeqHP4AYzEqNO7IqLWZmiLXRR1t7vGKHO5jgpUsN4x5fhkaxqBx-M4NYGonPQMSjNhym7L6Lkr3fXmueCwkFlKDfsOh9bnS6CWy_xNvtpbiAGwOsomYkXunuHx-zv3aDPloN66vkr9-Z2GlvPAeWDcc4oZ5Vb2IBdZ6sihNOdvG-KGgCy6kzaYb0uaR2PL1g68JcnmQ8oRvfyQFaT1svWEhEF1Ws50VGYlmcl7KiemAe2WiRuCWa12xn83p0JNzt9MGve7xheoG-s4duoMgov4wGwe4VXi-5sqvAotrDqBSrM9vgCYf-ypfDlAbdjeJS9N-8rdFv3bz8nQoGUa7yPey8YVCCaTZiRlEO8mjgjtv_ONyPuemmLblwAIDu6nemMeXVph9nbHgqdlGAZepA4i-QuKH9HwQYxtIA_6gXSBD7kk8SBHluadQQa6X01m3ndwUoqDdvlbjUO3vcTNV0OZ1MEqAaaX3MYgNN8FEkeyfJGhN7gU039j3sAB2IqtZgMjO50N4X3hMBpDMIkePODixzUctB6T4h3JDxkqlE0iRr1g3zjzyc5WDZnXW5tEvm5-RBnQHMjBtD_7tSB3yovtvNtblpu3lI6DIPCh5CL3ebxZ9yrBymz_cFtR5IXXqDrL2MdQrCXWIsn-6MDurU0tvG1vla0a_3dMpFwkOudPb67-NNL8l93uDkyOad-0I9UzebDAUXZdYfyF8qRSjYCeqYOzHu7Y7GNrb261lrcXyN8hffJuZ6SMdcJ8cbWg0oUfzV7r6g1B58NXIEM7YUMBHY-KzzcLxgTPiHFmTReWXeC9NZA1LuWkp2yg-R8DqYwoycNK4tYrz1Q73cj9aTBRuE1sxEXyK9-W6RxoEj8HHAywp_lAXl_elUJ_eL_nXDIhj_CFa5vz8bZC7nC323otm3SZD9PlCgw_Ld_ctlzWzQccMeAcxm-DbutrSIw9nkk5nSDRdlxyqHmuPLuOOUTIWXqgIjYrrvcfh6HO4LVPzXOv9fv8N7x6jmPp0FXcoa7DYFF9NKQ0HRoSolNGuWNRdpBDdAO6OxkU0pcr6SVEo56Xus7lRsdOaX5mjsdfECHNqKhYg6BeA5Ai13vHdCJteOvpPzyYar2eu52b88VPeRA3-Fmqyf7rDbbhxJ5AqU3hb5fVYAk24aQIXqFtixYIP5ZlYuIKhk0OGqmOB099K6kDPXg6KeRD6q4xy93NY84d3esunFfD8ZTwqfWPJiH8vnc_VSOfg9owceeCNgZSYwV31MMQB9dEyGEfWfSB1feRrLd8kjZUlcjRmAp2qio5IxuS1q_MuOruPM_QAELzlL6be5MQGuBvmYQw6S0xk463Z0E-mFWZmKF-kbXYqloTlAprVI-ErAlQfTEhe4fTYE11qVi3KWAvbvOCXGR12i-D1uRlEwTUXHSXkNvmmC_SP6CPfx6iDR_7-veXCbsTamLYAZ-4vuIH85-G9f-d09FruaOFrZOTIcNlrtB4taoe-AsAVj0a4RbmsBrAHAWbz0brCy_vGGJzSs-UWLF7BcNt9cVCrfdNmMBrSjkh17R3ggVWtC478gtM8fOFU3r4rJYcQRIO932FY-1dShcR2P4K49GVYJdqRQ6oZFGBv8RWm0UH_O3qcRKWTQS5_97mfhxTXpxnfe8d5I5pk2tUIDB2yA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67227b66652fb8-96663794','','','2024-10-30 18:31:46','2024-10-30 18:31:46','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41343',0,'cd-form-entry','',0),(41344,0,'2024-10-31 00:58:23','2024-10-31 00:58:23','{\"firstname\":\"Ivan\",\"lastname\":\"Subota\",\"email\":\"johannsamstag@gmail.com\",\"contactnumber\":\"015159473299\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4g_OT4hhvzYH_SgFMKwqnqQmWxTB3FNZ0NfJ4DBArw9aoFqUyLRB23deos5sW3yjpfj8jtP_Lm-sAbzkjVIxK6LmM6jpWJb5JJHGHj4-243a8pgnbuKNOXQP9vDQLrBtH0_yDD41rela3DX4VIEfhJryaN_Nh1XFqD8na5j5ygcOAd-Fa2DhkYyAjk6hVxYTkjgM7bDHOdCUJtV6YdfHi5tb1y0SnOb4SCAKqqT4qooyrC4T6e3wUOH0nuVv5pr9Jo4AfGtv4gJPVUS-eADy2SEpIMVpYR_Zfqn7m-mzHQM1xw4BDGC9RWhgqJ_mCScbSQ3Q7wZwik7XMpGHE8IC26hjhV7HtDn_x5yji9z3hzy0OsoD_Ry1SbstV7spmZ22NLkwqm1bwlXoO4VWlPGV0XnjrihOzXhMTaeNZaMvKS7nzdaLoom1psBc6X80aallaQSqMcQqgIB_DttusFFaHNqC0Hqb901RLDjub1Kt3_AC9NhjjfIy9BuC-Vw4Kiz5ljDQWLhIp3IdG4D4-rM8DCmkpmd65purKaqFufnldBrne3DXUYMw3Ji-8uKTepkqByVKQ-Qd5pqMz1R-6cViIqEd_tiNtZsKqu7uh2TOVFjcMb9p8Q9l780jg_XdiFAPN4WEDW1vWIlAkXAf4pAGiUuaFOYYzyXgUFG6_ZJgNL6Efg1NDOXk0Dmt4CaVS_TMA4Eq5P_llw_WHJKS1Y3rkNMZ-mVXj83pzqYPCxWZbi_GgQgawjixN3WcUFcboifzSjjFakdEIeF1egMu_SvAlR90l1H8bG7NNUfBjYdbDkEfYlvuvelO-Yr2a6EC2V8DGNa-xhPuD7TFLicjAbj0XLCrpCBmb9jEVqa3M7tfhIS__JjMWdDnc5_hdDMfoMYdRJRsEMLBOEd5kS9Xeo4rTyw__RzEYPTw4-1qU6tFKzp4_aGx-RjgUxoyLLnwhCvFj8PQOrINgUj9KIQsC7gxmx3WQvz0djc-ejqRhbJUoTPPuYN_OkIkfV9nS1UN1A-wk21JjnuKiGpIpHcPxqhFxalh8Q8HBnyXrELlwV461XAGrSnjDr-6Zhne0-c60N0Wi4jIgABFh1ioqvH51IYq9XEMxXe3VaKlvBrz1uvm3asDIGK-sIlU-6eeTDYlavS-gEKCkTDlA6GOVhebt1piZexzNuA8sH4nvFdJQ3cWUJmag8qcU8ZHzH6HDOQtnBBu_0-d437EJXT-pt0CeSuaRRg1VLk6uXYNvZgBkLdC6lwKBlSg9kQc8POarHYaFtKUVl5d-T4cZUmncx-k2V3ZH3J1UPCSte8WzJzN5hMDKW0QuNFgPtuA0TOaOX2sHcB8Gj_YWwKr4_e3TNtNlpVNTQvWIspmKCc9pIqV26hoCTfn_cVA3R0A8rr3hacS0kIVYw3I_cGfIdzU29PSVPAndx3oqFyoB16bWgycS_b4O1cIJ1eFORFsG_kZEBPn0JcNTFv3ku2wvKAnaqTys0cgSqMPeYA_kVXTyf6HuOg156ZbSYFSdIzZ-caG7iz0U60Nw2N7A98S9ZeTYUoeHSfPluLHpVJY_lHabo9KRM_WI4rm6deQpVEfaDXdTDwlU3PNgBYRye-c7oGutM1ogijvf9g8Ft2ajhd117cHFaKcxhyB2lXVcw0Uh4Yy-0kRkyDsynySXL5P93yRtv0tVmug0ifJwFKMdMz9_fezIzcatV0XpT0KoWCMQ6WG8GFPDhEfXDaUMTszyyq-M81YP0lwVHLJ49tyE43IbZXxTtDnj5s_Gcolk5YGpoPobf0p6jOtfqhrer_QQej3LfNaFUL2UAMK8N94vThwEk2XRxeP9cNgvkvRx1FH-jWJGnrGxoYLTYFd1_wZzRt0a633R-EJHwS2O-jekwcrofFeh2FUCjltLnGJaEsKbuSo2sa9wLVx9RFzdc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6722d627c24437-71431982','','','2024-10-31 00:58:23','2024-10-31 00:58:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41344',0,'cd-form-entry','',0),(41345,0,'2024-10-31 00:59:21','2024-10-31 00:59:21','{\"email\":\"johannsamstag@gmail.com\",\"interestedbecause\":\"2\",\"agegroup\":\"2\",\"genderidentify\":\"4\",\"regionlive\":\"12\",\"currentpostcode\":\"70374\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7kQDc69dFDQRdJF_-_eHdU1A71nOMJOKVD-VaElrOQ9wYOUXZx-jTAQgmsh-9PQ3jcGAg7gbu0ZX6aw0Wgyow4G_MNaKFZfbLOEcREDnBnB_02kpm8I9QTydGGdsZua8i0EEgG5GPl-MPH0wuQ12LIPyob_mzIigAee5V6ZGIIwXKNMqsvEf6kUkj6PJuf3ZIbLPbUCnuy5y9HOGROLPc1zUZO8Zi2YNEd-Puxw4CB0N6ebYWvkiyoMtr3ArpiNgklki7ndUeNJAMFEu-kPPP8eybAiwob7tDU-XX-jmX9XQm7ahDyK-n6CRJOmaBAFypCDGipC8AnkBDgWuqkZ6TraNUqejKdJXVuRz-1QMBR1djzpRVIRHvPOi7tLNZC8-9aSzd3Q_lfa6wXf7XGJxGrQkzjfARfiCTL8bL47MjKcFc69v2tNGt3JP3nLRTFMRqaQGzTZzo1s1MtNkUcK5yQcfRpJ_g0u5NyzxK7GC7sGJO_uxfeAMSzD6AQZskWy5mRZuNeszd7q-6BnNihS-_LL5pcMm4F75vgil0HRMw6nkMWcHGL7ARrJczkw2W19j6yGv4bl7jb65LxLwxC9jDtlXkL9atxO-Gnt06awrN1ETWikrpvsJM3FGBjezG2cjPBpav2Vpl4cAk5CXz5tQ9sqV7dy--gLrbH2QMeddaaJm8CCyohii564pzbHWQecUA_NyHCPWKY4AL1GnmgqoIWfOx7-9Dzv44cLHSI-OlLC4b56D44FarX0aJj7chk88-EglcJYPm9ufoUIbuQmZZHPRttlRqPfDONnmYWYeTb6I-IzSSLWqrBgMUh37HaJ9n0KUQKxDlY2C9NLksrAqA9g5RwXG-IPR1EtmxEwN_-wQcfur3kueLfaVac0-Cd4pnI7D8wT6jTI9x0SmzAW0_bcsmAgTm_nfJegMbdDKF_iqq2bm7GVBOy4Cziino5MDQbuOiShyfePjhCgQJgHwjPA_h8Xjn1GHd6ggH6rjPX1o3YfXX_EStRxK7QwyXs4v5s3tRvox2-buUWxWayaYt7RViJTqqp4_ofHZLylr4Sm-fj4dbydQgjlni3kQF_UbfRZM3v6DCeffGoDir465YjeaP9RJQQBVQD0eI4stmY5qxe7680v_qALIWzmX47QEQR_6zH_nOjYf6BySnZ_OUd-5PstVqEtStSOtTlcc_ZF5fTg5UcWcCsHH1Z8yY2AnyAxp_UGh-iaP2eI3L2pAmVJjObdn4eV3N3WMTuO5i3gXM1rL6sFl9GJcNywoTkrm-s91apg28UXQnI53ciIs1xTOhtSIN94SI-zTS7pOjIxffiqNvgV-Z89JoIx3xwN404ZZc8LFirfhw_0vyTlZIz50wDyGG1shL9hgunrS60pScZwWA401NS_HXKdKdsoDyICBwcRIXUAxJoqbldPNQaeZMoCmUsdv3yYjV0Rbk0BDYwcJRjx0WUVo7TVC3v0gp0oUXXmxQVeq1lmvL-M5Tyym7Ul_IOHuwcEqja30nobidhdqt0qLWzo5nb319h-nFIT4CUn1ECWLRwf6QVnmB0K7hmJT3lza2JDUY4blj7mlwxc43OQTL87otguor192Oxgmva2k18XBJt9otDLRS8yYOebXqd7BXCnJ5qZzbwEyEA2PHYPavPxGsdoqR-1BST5zM0aQfe1vQBaN2a8NmQ1xGa8cLy2ekqGK2JRgM5dhBNgTnQYOSuvf71sVFfxugDcMqdcnN53B2xDiX5-1OI1uLz5_v3lFmZ9RdabZlFYDiX08ou5dIElwA5kpjPkxvoIIr8jtn7TbPVpZLblfTla94eAixrQUJkBiVQr2V7FTb5ZtYYNzieF0FmnBvSIe7AJlFPAS8rQon22OiT9O01jFRRBjCEq3alZezJx6TrhNL9CYJY4HnqyPs_S5ZHWD04YhwRdeQjVBZKCCrAiYRHItjYNg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6722d645549490-90681603','','','2024-10-31 00:59:21','2024-10-31 00:59:21','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41345',0,'cd-form-entry','',0),(41346,0,'2024-10-31 06:14:01','0000-00-00 00:00:00','{\"firstname\":\"Faiza\",\"lastname\":\"Parveen\",\"email\":\"adeelmunir046@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwsoe5BhDiARIsAOXVoUutbhKOWQV8kowq6p9RWjzSxACu1KgTxgPkRustCuWFrJEdn3cdnuUaAgSHEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5XS8Lwezcsm6AqHLf0sNfid02AykaFh_VqUFiaDd2DcEIv6UwQd5KNFGLN4tI4NK7-SuVouGoeSNhM9Wms_-mkeqzXQlKX0hPqlvtrlT7czKQKyt5TGliU_4uzZ7sWMAdKDtL9dTMcsiirottUE1OjadmybCz5vupDiULnRdNxm0hWyv419mxVzFBVlk1MSQokALbTFlQDyNggc81I_VOyx0XianKcLiguz91vOfZBMPy6VUAwCHYYHcMP3FoCnqyj0N-bUYaog5FqEVINRDbgBor12rMHIgj61Qt-EM5GpAFSqmYTtpigg9uevqUY2JATAyYZh3WfDortJgUtG-i_eAFY7eoGCpJTtIS920oJF6p9v6V9krCSPBBG-ojr0pTx1-IBY9uW2LdXrWZ2v-E0bEorsCaWfHhfs4_eBLKLbpWNeV8YOwTT72Und7IixOjCpl_ESw7rTl1koTDxVsKhM6iWUJgqacmazMRLx13sd6_imL1fMs3UxKiBvznBLuyrycS2IRpGcRvXMcLRf0AH1l4Ej1hgSfVLRJNUVR7wrFtNmmrDkClKVZG1GGmJrT7sWv0odBS_ahI27CmsfbXV-bFJjQBfKpxZft6nI6866F1LADRk0NGiaW74g3PAb1uLEE5hh15MzVhQ6uL-bwqipJomikbStf2rQ6aLtlZXCplLIHPZGNTUswL8-TKfcTxZHpAhNG-L5-bwksJNX5ts5BIOVQo2-5QQJO9f6WAn6_rRIvB5cCsbcIa8j6qmijra75dHV0K0XXGBhTmjrFzKNodkz3255_gOJeJw4h1SSzvrXPiqczot1kCxv4fA43xxFMBlvBvid6A5VnFsYD5-kA-wq0_iWPj0G7pFbhXijd9n5RQAU1kKzuX1ytoiWU7KtBg5DFgaDrvbDBckenQ84jcHjid2vz_p0sPUtj4OsWSE9e-nZtq9JR3KkdacFvKPEExe9eMNb1teXkS-4yZfqKoejeN1W5BZkZBWCgNCm14nQhZkRYIHCgFyb1MJW3-ncX2khc1q8JotEx2Ks564zafK4ggUuNn_bfw1nc7DvIzty4P2H0GxVEafWjHKpSycN1yLecZRsZh3I5Ro_Lx5KpOssMG-vEGGyy8Je-zCAly8-LXFOHtdfZ_TyyOiSe986obxk3b2kMuXDdK6CgRV_xIBgaACpPpB-rApwYeLQdA6ph1IdC8GBzavTgN-akZQrm-HejkqJJUlIplHth2r2McFJwTDzoKlG7ZelgJuoHHKl-06KxYgXPKouNmGPltsGZg5qpH1_wjTp2CScoJ1J0ybDfDjk3OBRoy0ndf2JzWIYlFEmwuRf-QbovtpATjVDYCVJEueMpM8P12prOJLm-SUTDFHsLyshEQWQUNtx7GNddxo1DGZpK7WFUHwGTApeCQoOK_bUDY0_p6ktEjuj__KBw5LWWnG78qsgOma39b8SI0jAm0YvgpjTdSEz7WcTtArKCDFWs9duuI66a3bkzxfSVZKk5UoKDiFrpjQNb6FRh5LajixED8CF_QcdcPDzqlQ7C_PZITg6fPTCzMf_BiUkqH4epAH-rITeGwJSzft1d641Tnirwej8uOTDqzackcHUF0RRXTRu86ujRUy9gw4T-q8Sw59C1j-eOk5RbeFK0wyYi_CsJ8QfFzdf16H0u6rgo42A_nTFkmg7FPCg56PheXO2ThFbeciiHaKs3F9z4o-dF61k8jZHOihAgKBlQnT2Iwaq89uzHs2ZJnjYptEsYZkiwvCUg45QExXzhP58TiIej6zQE0qjvORhI6rrusxS-UqyEu5lMfggitIK0nkIpX_Y99fNj-Cwy_3Z3IOhCV_VrEdNdbQahBPw1a7t8E2uUMo2ld4QURwwhyzRlSQnMjQDMK47nR18OpEgnYo2GG7bSzzj0UIfmCz4cCi1dTAkOBhYUEDsZc1BilTvUZHsKjQHc6zyYHa3nxlGFrJqXNV3KI3qSZC1Q9AX5KCs268\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67232029bd6ad8-38801072','','','2024-10-31 06:14:01','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41346',0,'cd-form-entry','',0),(41347,0,'2024-10-31 15:57:56','2024-10-31 15:57:56','{\"firstname\":\"karen\",\"lastname\":\"knapp\",\"email\":\"karenknapp87@gmail.com\",\"contactnumber\":\"07463717103\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw1Yy5BhD-ARIsAI0RbXZrnbgHEdQRlWiqIs2ox97n8eUUG-bDDuovfZG3dpCQs3S9fJ828tsaApp9EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4qp8LjpNayQy3RJq2pGLt_Lb4m_BoyPEXSwOkKuIkmSwN4eDbfuuK9Y4W0F_WyDboznmNomBBICzOlDHN5dFuzBcwf3dlyKrA2sP-lYj3hFwgiBJBPdApvcpIEjshudbLqjvVlkgKeuv1vseM6v2freC00iY-s_5-m0e9sKh6z9j13czbYhdmSLLg2MUQmAVlO0uJuSDYAwj6JHF7IZq6zqPQGFR9I39F2egpJXHisKP0rWB4R0lOFZrM1MHg32jwa-3Kgirp4fSyQO6jDU_tKQ-r9bKUpZUXcnAp32nXULJNSXWYcKDQWnIvMxdM4vCLFPhQ0f4Y78QRVOCtU9MNnX-lq_hwT-ZGn4OaamIavjbAp7Id1p45rY4l7WLdA7ZSDz8oHbvXa07QYhWGYuGH7dHsFGOZR8hqRXdL5-7WMzren3othNKqh8kR81y7aaDTjbTJBGapWxI8JIpbJVnI_at2mW4glNFFCReTU-0SNY6W3yQYMdLnmmd7QuJM9vafg7rDtx5QT98VkI_qSTDtXR9xh35kn8BYGgi_xxxLxi90RZCrMlMQkavjKXALoFy6obsdrSU4WJbm-Wx5M-tBy9iWpdZE-BMC7KZ5PLrjdlCLM8ftzYvI8b0xVji3EFdgXaMAWdtbXfFmhpJoHKLsvlCq6MdMNahw2DBx5_doiLE2feiOHpDSRLMuioK-UhKu1oytumveja4YTSaPlynWghfU3YGnGWB40-DyfR02LCgySg2s77k-Oe8Oc2TFsgu2bYNC2zVWdWW1tOOH7-UpNhcOErobxiR4XXajiUymKhi1yyiQ8li88JabU_5gTsU9YeG5PcQy8TNkG7HtzbmHG2qzx2yjrSUIuAsxswx608NLjrqa-yHs8FMU81VYXV78diFBJpdb-Pl9Y65CIuEAnXlmQEBDlAK4HKMWKQAiY0JbqSCrF5AR5dRAaATzX90NkDVFf19tkI9l0vyrNIofIj3NWoZFOt1-g2xhGuPV1tbRPmtVHOmgqBhkpNZmiLGC3NAJQQPYW_z1Rfv2zQJ8jCgGmQDYVwTh9nDNcW92QF46mEvGLub_LrJYgKCqvXHVLhJTZzoKDzpzEW-6D4Z3-_QofyBa9Ds0wF3jN6oSRSSHjwCglDPOASW-U7SYFEi9ge4J8-qEWG1rZGhtECJJ3GMquh8kAI7AF3fuhD1L_8Z7B2dYNvJ7jcFH2400TXyPcyQ9Vwpwtcjlnw0J0EA-DugZKyzlEQMo7wxD4b9bLkEB1KV0WCyhc4GeZ_kXPKRC75kDhnFtwfe78Ax0-A5HPx3DTucal9OleyIakvexApfRciD-JGFhRvMDwc2cSSA-XKjjSmunnvEieafgoLbgEX6qkooHGxSEVnViMq0dWvLkkAtba4QxLhVi0nWfpChw3WX2TEUovvlwhPpmTqHxfMSYZwRWOwQBTqKGFKS6JVAzt0karflaXyCffCfmdp5oGMEJJspyVFxFWzOXd0mA44pNRvWAjwrDVjPBHoFSEeEdYLbo95YKULNFTCRQj0MaJaOaSoU4cgflPONrnIV7FPu5yEr5PIFfaM60jQdaDPJQIY1jzXk4xPJ44U49r16-_vsuz1l6QjAFV67bKhcwXlhVSbegM5CugYBAxpm9LMJGM4Af2NQzoeR3gpFb5xEz8mjurh9wmGM6ohB5hKqJRc-AQrtnLGtefO_KQqQAe316o7mVLMU2u-ZD2NVpBWXyrrlGJmk2VAP4Ewh-ufCgCNrQ5TvLppUcpkXrs7KHQVQldqNYuKcUOnIKzkgoai7VfKKkvsSOFw36nRpNQ8No9gc1rHG_t0qHSnyW75godxWCDtq-K1iL0wW1LpdU9v2LKA8ida01VO6gtmSLgVNpMshjLyPkGlMu3H8XoLpibZZ8bSpwIkht5v3ja2QJXJTLSU83x_Q1_81FME5KPkyEUKMNo1A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6723a8fee130e7-01964673','','','2024-10-31 15:57:56','2024-10-31 15:57:56','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41347',0,'cd-form-entry','',0),(41348,0,'2024-10-31 19:35:21','2024-10-31 19:35:21','{\"firstname\":\"Dawn\",\"lastname\":\"Adams\",\"email\":\"Info@aurorasportsmassage.co.uk\",\"contactnumber\":\"07944180435\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6ouR4t2jcKdUT7rb2Q80EevH74DlvdApBBP8pNH2viJLKPSRidc6xdaRUHhOYeXdaz6ErvY8biBFKmSq8BsGuAeT0Ofkh_CD_4dka2yzRLFN2c07AE5PrcsflOFpkgIQ4ld2Jk_WWoyD9vyWvYjeFXqJuhXQ3ZnEML9l1d8yFKGDyb4kbbPBm2RGQS9PCgLjFAEMLzdOJISS-jmkiFe70Xa-CqYeNPS7pCR64p3hhJB8fF7XJIlU2kK1BXfVkl6cSLaEJjLxjNrD9JzoCxGBnuPEqiXHY7m7GdFP0IyQfZcuLn94uuz43oewgwoKVy_dKImtMiIoSwWNVr0he9AONdMGhr0GDEPphKYzGXa7Aymepz5z8VW5A_NbrozIeY_rKUUIIbdDjBBIe4J-hkpiQX-MhdB87wpstjsOVdoOaUcqjAaI4sFQ7gnMebJM2XTowgvhd9QUD8nxVeV7M9zyanT_YGHnIIPaDSdM0pTFMAkevn4GPBwrQMgmCfXx7pEXw1qd-P0OyMzI76o3kGT8A5E0aqzcy88X7n4BXZp5rt2Y3f_Z9riesQVLf6hgKrpTtNiY4mjW7_XZm0NdoV0ES7oL2NeNmwvTHljf4IM_Wn5r_sjlu-egkMg_iZ5DyDlfVpX_vbJzsrWyTgbSzi_wApo2VTawT1lYVYPeMolxLRX1_7AC4CEalclgsOrlqBLiycgjlD1Gn5Haog-eGOfdC5IQMJTTqOwJDLH_sY_hwHd81m1ktla3S9d2rt0FDtVdLTttkdM1TKP71aDvj0w0bYeTUL-iEkLdKdKDyuIo5WkQl6Iv0GxmZApIi9fh7ACVp1N7VOL9AXRFG1Sxf6FyxUD4frRCW_xa_bMpeg4mrD3maCx3h0mhmUcKESqpE79QCuQAzqLga-hncttNLSrivHF28I2QPORDpk9fnNxP7DmUFrWDWMDFbJlIAXMWbF7T_mBnsCvpCOb7BN64pWUMF9Iks-1aDJssCcGWRcTfEyryy4HwSry9H0-ROrlwgHvpQs-MTc_pPTPZZQej3ajuIM2iswbODVgQ3WmpgByAmJtYm48cqyXnQicy3z1-BvKKdg--JhGzfwUZwGm8OZvFFzk7wg8Wy4pCLBkfuCxvyoyWnaYFTjZXrYdVW4naQz5n9tsh2FX1WlJouaF2YcUgPrKeKkpCa2QZbY7Aj3iTcEJTCnIo_M5RpVpCKQsAwwQAijxs0z2uqNc87-d3sqZuZ6PZ0jprGK4H-Te0y7Pm5mdisanbFfVYl-5pdjTCHuqfwKu5I1z65ipmSFTGIibbbKjvSvg26Lw7p9Nb5DCKY6jxPzk6Tj0ib4ejkh4lH8-f3BYyf5UveSBXYVJ5_KzX0xA07jR7KZdzj9e2P0d9IHnBmOfnCEOOSAXV71HlL_glYYziaY_OAYGjAjnay685z6exAVJv9QS8c4U1XPEhgNFkuUNReR9QL2Om1Jr45uA6RzfntZgDWJ0HeNB167Wc_TooDmDfQx_KFRFPyN3rc6_sUTyTpNZF2bKTRURjkvkYMGh8_rKVMkzKPYfsy-JB9fJwdh0DqNKBiy1Ji7aF6rIW39x75CFm2Ubc9j9yVBKxQmK5VhccFhd3_FsuJYHj5uktcjovozAON5K9CLcInX5Bo6erg-t0fDqZImvMEXX-q2WHmFWejCyCHpNiJlqTHtpKNeUHbqnguLLvJdlgmQ8JkWZd1aKJpUQw909CqHvoXGamF8maxPYegdbMniw12S1pqJDv1usqav5dqyHJTFW4fteZCVy49SVQorO_V86AdR6sAPSJag_eld6BVE_oJrJ6tabJMHi3uCnW1q7O5D4WvZqdWnbKxDp199Vec4fM4plXn2ssIZ7PXV98-DnyCLoabBf14eSQwBz1FLDg4Omm_u3fuwTb1Zu8em-_x2V67bnWheGMMYJhkpKlhSI88y-6SebA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6723dbe3a2b422-79576481','','','2024-10-31 19:35:21','2024-10-31 19:35:21','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41348',0,'cd-form-entry','',0),(41349,0,'2024-10-31 19:38:14','0000-00-00 00:00:00','{\"email\":\"Info@aurorasportsmassage.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"GU3 3DL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5QU774E9fgVSwF9Fut41WFjgt6QwjNyKnMH3vlo1JjHEDA44a6hIvTJ7LC--cqrmAKAF7Hht_Klnk4eGTWdc8keqxugIbuSWWXV8zKYKciBn5YLe0UrXcqHY7pblNHToPHLH43lCkHhtSDuMezFuoPuS2FJv96SJm4KN2XPKMTBNIgDGWhN5KOvG32X3jRwNa_IJgUCYcn3is8rhtXQjHI6qmnqRCQxl3FeLO9_OoUtZC7BQlHw7JwBXBmCFcV52bUOf2O_n-XOUT2twhwWj4_-CotQPoQvSrru_QVqLN7CsUufg8QRO3nYdL7_Zj05hBheEGXIgLW41jZIYz6XH4q2hfmirkg2F4OjNHP_YmJtlEX1ZHlkpLvngMzk6TMB4OLLGQ8OryLebWwmXrnQlIGWI6mTUCRgKEE0uuRMDERcLT8RxB3AWLIzF3_CzQD0VcSIQCMcaZtHGFwNLAVcA5RYs4iapwUFJhc75vGK_t0pjXiQ025MCVeOhGtEfu9Ort1o-558Mxg1rOcmg6DPbxGs38PYEPd2UxRnCj4ZpeEuPexnxzgxtbJelCJUJSp9TdS0quNMw_m5rS8jZ7xmbesHoubGHgeHTdZvCyXGwMZtEfaXVgXAcHoAMj0DY9v04Fy-z_C80r3Mzu_x4DFuTzagqEkevn30rL-DW3l5fjC-LiBTZHFuFmVJYETUdsxZNCN9c3DUoYNOp4oQzoZ1-OsQhSOFBhILDoWRGlfUj-M4hW4XzVP3OVWlEAPTL30Ljx5cA2k4qXObpx9dRXJ69X2VbkLq3qghgw61AM81rMPXs6VmAcI-rZXKMPEc6NQ-18Kw56t425Ag3-VVvPjt-lntVsk9w2uSooggkPRiikRCDCumXhbFSVDuQoLepAg3NbE0YFyMtQakUrJKV4wyCzWS21bGZ4H23WDmH_VBVV2HqU-JdsnJCTxKa9-nnrVQnhTcNXqdsxv1DFVugWKX1Pa9e-XslSx_67saNvjpnusn__76ooiaVpPovF_vy-St7bSlewDks52gWEwckGaIluGuogoXw2EdDnD3DC9D1yaSPyJhqm2MRvz5qnnXJNc4jChqGJPYYYHB4pw1U9peIiZVZchZD82ZhGpgKyN5h0R9REJ46Nfinkiqdq8Ii2ILZNNS400oFVwhP2txL1dw1Q40KDc7pDyH_fsFqYUD4YT_qfFpfeE_Coe9KfIJKI3pLQPFKxMsXAk34dpFE-tS7qyjFaneSnZ41mctmz4lEmhOS2tGn6iqoksPaa9UYSFhrWUOTqoDhw-Q1jYMFjB6842Z5fjhP_68dNmOsbnH_CavhZ87jRhGF7wBSB1Jn7dEAtuEeCmOmEmkOkZ4E1ZaapQ54gaY78BU1uik4L4M7EBtc17k16BYL8_BP6ktt01eeJfectjbCLKtnhWLVYV-nWgDkXd7FeDfyOkFLrLaJlXK4PMoi6QnVNxUcJnNWgMb5p1vY_OneMtHr-spnYiEI4GBRsMdfCTuz_iVWZX10GRjMeFVz286R-buop-7C5G2kcahN-i8B340Up48sn3sTcbZ0utUAfFelch7Qn3oj5wkwCdD6muGNEXxrJbDkb58RDTWsZFcLyu9iNO8szKuBruCPyrBjiOOCwXrG8b2lV7--h_H8mLX_1CnrnFUoOS1n-C4bMFiMFBXdMIugt3854Htx_TjR1o23w3iLy4XgH6lzYN_07kq5KITLzOpSJ0imUcNhltKm41RUNUotaXJBhQXC90uKOqczhoD65yOjOe3vh6R0l4Rj0i0pj4pUghebyekX4J2KjMRZ-5NY2rlLohgVERAZ5gL2G3URwwYUuEDg-8MKtZwVm0JYsUFI7yXF89-lYJo1ezZYgB0GTGmcZ91AafCnQXoOyvA_kuquqKlUM2Z4bps2bMHdhBUioGrCIyhwLrB_LkK4-uMTE0qQPJ9pirfA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6723dca340e3f7-38696032','','','2024-10-31 19:38:14','2024-10-31 19:38:14','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41349',0,'cd-form-entry','',0),(41350,0,'2024-11-01 10:01:20','0000-00-00 00:00:00','{\"firstname\":\"Caroline\",\"lastname\":\"Martin\",\"email\":\"caroline.martin1@ntlworld.com\",\"contactnumber\":\"\",\"pageid\":\"39038\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/emd-uk-referral/\",\"recaptcha_token\":\"03AFcWeA6xpwaHrXK6er9B0zdwxkhh1JQSlWb5umqmygp81xSaSxP9WOX-NZIXrRobzlYIzA6ahIo3aACG2vCFO-yvWaiCDHLbw095HLDJSEnxusDfoq39SUpDLiIJe5CwluWKiSdi3meUnxcmwIuhLUbrIukJ8lVohLek0o1f0z8gwQJ_IFnwsYMiPewXsUDCbC5WJ7rQ5lpmz4gHFYsYBdZlRe00Natt4hskjPPcLReLWzCOTZM7p8O8a0rtFvdYIKbVUVvL7I8G7qyFgkSgzjjte3aDa6PPDtt-OxGYC1W3d1kjybB_hPmIS0U5v-dbBNl6pP-OlRBbS8mWNv3LFJS67eCjYrGJ0_TP7T6FwyuUGDOjKBDGJunY4QNWr0gf2QnFEisNzvYE1KgjKZZnczmYzfYTCWsRzx6H9gBLcCRYW_EGfKPiwIctiZa4P-cqAlTyyXhPvdX1-q42yBkFw6hkAMZBbw8AY4rqnOT1oIG8V-mn1wOUfeGPDYhkAJao3VIq1ZTXl1I0hNsI1xkpxWN6tFTstpRFMGcqRICRDafXWUWGLoigzibAxikGVmC1G1jH_WowwcnEKEZw7RC2TkrIOp6j6h_UAocSWjxOtkCqpA2Tc1GnPrlETNVL_NQIK7u9r0g4lJfpkNpSRzPGE2W9bIs7Ndyin3Oe7lFJu2CZGw1vLgkahx8vRVcq3DM13VqTDLabWfZvWXFsETGGUWzpHNYQov5mQwoOJhIRv3vAo_xliwWfMb6NPHqF-wlpXoyiOLqv3hzo2eZYzOjZPurqBz9cblkygTvAvTPufbC7aEXRHVIjoAuhzAtq_xMqJFhtRQVHZ4mqr3D38C62d_FFTkfo_9rO-o_V_8mvbazbWLYjkiUgtE4sqODxCwPANPylHHrLKz-9NW32Hh9JXxwzCXKEmiK0rEzTKJW1y2Rw3lqTZdQ08EgcfcJo3xRITe72mmUCWRFG9NQsT_-rCGW-T-lSu3EGeJEa386M3uI0h64yHGG3rEgICbvxkH5r-mbBpHVdJ4590fl66hK_sFpoLl2Ta74OS0RNdCFRTnlzYlRQfKiYzT6uU2quhw-HpEUneFsNSYgMkrM-7UFNIcnQz-ZKI53dcko93gprh_xDL208-NqgpLEEfMXLER7TQwCHDcr43mx5rYvbip-c4FsBjEeTDOpLWrI2Ok6-ZiMvMGZ1XHrsEjFM1JROioUG_w-fQUlX6z4wvzgMvnmJCuTLkSjC-Sp_6HK0XDKmTvw3nv0sZQE2kwzMICUwSaK513HF9cxKYVOViW0sMlL8BSPBV9HqGzC-JmE-OXYn3l4nNcy0DM-wu4dz8_ZJ4JW9q2wBIYQ62cEc6C5tfrqiCiNTB3NeWRfEtP6T2UKvoLyWcarlesphFrF9w9khHyQmSe2IgI5u2SLHqwDuFiUp60eNbVoGb6CpKMQL0QrLMvNysy0hVqHd1354TozKOISBYXN_RkKsvVuWpKWqiE58YoTPHcMln035dlhBmv45iaPJwhAsm3Mu-U91fjwCoTw5HDkcqYDLkathlNxDyGVzPJkF9opkszhqG2Vi-i0t0febkw4orP_Jr7R-9vzKk7HQxCroJFCBuP87Az0EWH3ZfWyyfHNse6N0YabqcmNceU6LdeQ3ymq5eaglt3u0MXYagLhlZKhp5MjENG95wovt22z_33drBZyjYxf3wZakfzQLhoAk2s5QF-yHx2oHCcd5PBk81JwpIiMPUQebuNFdenOQF6owKO86zCpLUYIo8enwolutcaHBWIbRzQi41mBFQ9vIhqc0RB5ILNqAnEk_iIGljPsSvQeg52uLMyXaqPoRgf9bViwbcVm29ur_U4ZCcvjpwBxZ3lvSFRejXHeW-qdaOgPhBsnVxS4vIwe6Kul93Wo1mphKqy9jGrdYzfRfm5ZZM_S1zE0wdcxG90udxL-JByEDcanfcGGyUbSeg55sgSQnqgrTtpEJOKK3ujM0rG7WW7rE0G-4ugGryPmcyXHG0PjRGoDJEg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40413\",\"recaptcha_success\":true}','Biomechanics Education - EMD - Referral Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6724a6f04e7140-77960524','','','2024-11-01 10:01:20','0000-00-00 00:00:00','',40413,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41350',0,'cd-form-entry','',0),(41351,0,'2024-11-01 15:58:12','2024-11-01 15:58:12','{\"firstname\":\"Emma\",\"lastname\":\"Thomson\",\"email\":\"emmarealpt@gmail.com\",\"contactnumber\":\"07595441792\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vMoa-szrgl2ehKx1MPMBeEP&amp;gclid=CjwKCAjw-JG5BhBZEiwAt7JR60ZJwVAxipFEBfrRM3zUvTrjUGoTYuMhyW6fnDL3XFb1SyJkAatBpBoCR2oQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6zPW5CbPmlEfyQHEJxefLd80mjIoHEUj_HHnSWVjfnQOJbtWiJOHWLwe0uq7COKMCf6E75D5OTsWnPzyiZt877oYYZfRtwBSF_WrRNPAlPhHgCbPtRGW8_9jvAZ60nx-usPYgZpBUJYOU1B7E02ggJ6X1XTPm0Rc7YrdqyS_9idwVe8nuYC7OcMMIhbcUTX5O6B5_jNjgdRhaKlqHMHsdYakxLLOtIBRKuxX5j3LjMCKdRALiDVw2Zw3BrMvfRkz7WfodYxVzDaHydQ0s1qsEtmaeifvzYTuy8Fca2mqnLE5v7Y5uAjX980oUvtc7UwYg7mOxTH4ZtwMGwiTpChQx2L5qzWVh5RB8PL_VVlRR4azt2IkQnOLsWXMrh2ebJCxtisFyozace4ACIA0MXeBWTa0MEextazX6zL-_W-2X92jBX01jZjJ-7KpyJgXZesVnmn8x4OSCGuLPcwV0SDdXix_yrI9aDRfmxlXziYJmrb5POSZ_fpd2Y074EYISjGZ53eQ51Gje_aFeILFHg8M_oxbH_PuIAuT6uPyF7I4z6QBTni1RNJXpl77exEjMT5Z1e2spzD0AlAmD62KaeERCp2j5-jkq3EnymVXbbBGK-lnWlvLOo8uBJx2pzwGIZ3OdUhR0PXYQouYDucthFP-cRQyMc2BBJIOLmcGtaDCM0t6lCsqNHMm71EkX5Pk5u7sih0J1garMUMhZuIsevWfB0F1klQPd55_z3sGyAY1CMv3PJJlnjbpx72Gv0qRT426GklfDxKTiu1QHrlTv433sY-54OVufjKFUu6u8yBM3hyvbSTsfFhuDJ6-R_HIUJK2ZdxgH_GwFIjKdFScEsv7ywuf9yjRjp-xFFOZD27lrqY0F2xancCenpwxqmYTPBbRo9U_xYr0rhnZo1u5b8bEdketSQDR6sPWAkg26EaF_R1luhejd77QcTHmC6lxdOft6reFbu9RuJjrHDtu83ntnN19BngDo8C9fDDfAPIx5_ff0-qIrN9n0-9ht7Cye338FQ5y56wiowfTUDxd_q6KXzdsFE_tTe0VkVG8DGvqs3LUo2Q2pwpbRZQjvnZq-Edo0IVDhBHZ9nZ1_wHglNm4RRxV9qeHcLJdk_5ALaggPqNU-OUXgzHbMD8cFI0vXDAbFQ0nBUXYgb0DLe7PGMzNSxZb0aadET3cU-jM4m-026tw9oy6pp5bqrUT7GliM5KI9Kkvk2N7JAzzQ91mDnRdeXCG90GGhWy7g0J1vgq7BZyESOouiwcNeEly33Y5UbWOhyqgSIToFbxsPWSQ3Dn-2y0_q176U1YzQ_N43zhqcZTGt9D64V-w_KS-zJQEJxMJKjyer4EeinhPY0F4eWtUIa_TSufCI0EtrmGdw02mAj9NC_GBoQxj3WVblQJlP9r5cKCZYg2u-brlfdc7mb0EqzPsJLxfw-sY2yhOk3GKSFo9mqsWg1Z5xMnD20WgvWY3G-K9dG65p2Ul5IY-vr2vj5U_93KunMTKAVBGqqBtoxPXsFfGmGQn9svZcD_iVs_DYFq_nqaZJ_3_pUG-k0jAgjsi0w1NuVf1FUVub0S2C6qtIpbxsH-iYZq50ev4Y4ngC2pOQkttDyey_dwYYVE46JzbaVfxm2KwPrNdY7hZlrtlHd9b3whff2202Oho8GPNsF6oVmKXnADP3kgFqPIq0HILKc2YOBLDx_O2_4rbEDsyVpLY3konuYnA4YrHpRkQxTBH6dTAX0NuXLRzPaSlGyKtaYQ9WdiVePxm3h0wct9jMe4frNsX9D_etZE9wTZi-dw635pZrhggIhNdEkfBgGMxqRDVRZFk7Rqf52gLdhiaitT-T9h479KlqUi8BcO-1PygXC4Z_gZH5GDUIAxtbK00IK9fyGszNiReS8SwLL64hG2qoisE18V-F7x75-8V_JUOki4eZKPFzjSlUU2hTOhz-WGWWDxDrSJy5QJCRTrIU3EsAXUG_s1gJ6Olq8tSc3BGraX__GrKYVXYc56P0WZN9lM-Q59PPX0AMNB6k2vDs4Wb4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6724fa8514d8d2-89706534','','','2024-11-01 15:58:12','2024-11-01 15:58:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41351',0,'cd-form-entry','',0),(41352,0,'2024-11-01 21:49:14','0000-00-00 00:00:00','{\"firstname\":\"Pippa\",\"lastname\":\"Parker\",\"email\":\"phillippa.parker@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/imovefreely-3/?utm_source=facebook&amp;utm_medium=organic&amp;utm_campaign=iMoveFreely\",\"recaptcha_token\":\"03AFcWeA4ykjn3w2JWTHY9e2hkyCn37uw87l8ba85lMPMFDOyn-DNfC9o-09oif1M6SGaWJKtnzylkjRM8C7_8rOZWX-LqYPie-LfIo97GVf1yGDNrvR_1eDhnojBXEFb8S4HqMe23gEyFc7kNXWhkymLzETj-F0GUyASXvK_MLT9ouryWE7nV24sytkVTvEZrSRYJTNZOv82rvNM7i5J_LXu78UZKSyE4d00ZpqAsqDutBAoJSW_u1nRvmbSRvoBVSmN270n0wfU7du3o7uh5dO_pHTs4RGOfqiTFqhrO-djwdDTn2tFHhOdL5LxyAwZLUnXNtw0z_Q1g3cwfrvBgOPOBWudx7bcMGbzKn0HFEg9NL-NW6IGHSfgR85Mn8JuRyuIdfRip4fwnI23r2gr5o-VqdpREmAbmCUDn8wdbbgnQkmZ7erl1jlfmXmWxO_1rNzJ7pCGdga0k-Bfq1a38IEN3TaHA2owlg8UbEYhsPjwMl8_KPNleNgjKORHDZ5RBqaN-lMpMYSxK8b8wlPWEHVvwHX_yRzc9bUd6hoG12IjMK3AxbP7Dpnft765sAu4V6mv4k9YKdijeuaUG8yZMNZGuolQzlcws9gFvL6hdKwz3XchdBmj7zUh2lhIH0q1M1yzDS09TZmAu6amdvDBdMfsfJgbAMsYBOi_S0HxTPjHUyHR2qG1lmHisrwg4qrolFHOF7K4zUiR2aT-PRF1CRh29x_srJqJvLqHh2wyOKFCT1tvaZyXFz6qb7vE8QFZwQhfPKHSzfNh7aehE64fF0eVmMaVTTkU-seL96XDGCctHy1uS4jdn0x2gZC-_SwXCb7b-CNtjK_69vI8mzDiKR24dVZtf2Vme2ctvLwiM4ACN0YstkjbOC7GvVHymwrDU6U7PTJEbIo9LtrwyeQjFOutzRAV_s0gTFZwJSBRsk_exsqbV2jOGPgnHSQrfeAlT5hiCbqvRqIKKU89nTIFNfzWUs9Vlv7Er-Y658Tpb60rBBKHfTERtVa4JthZGZ7rIwyNT5moLEbggq-HpPnJsr8RbKVa62zEV6awanLKstlPh800fQaUtvtLXG72KUyQfd70lS8w5vmkfhZSHxq8PPEnsno_Paw--ek1eRf6qjWGhmUdEa6rb-lB7GJ-dSpd_i9i8QOb85QhKHt4j6xI9x4oJ81SHzOdPyf24CZWvxDe78g0MvRu9xKLx86zFjq4KCwxmJwQl9pa5CY4q04Iuv6ZXQKxwjJPn5RADXRG23pZNReMyHTQF6pcv5Eln4FMCu5C3MGeR8bpfVAFqTjzj3B0AIn3WKe1DoJtnT8KPCiCPyd0ibwgreEobOcN5pLY9xIcVXQRQioYiiqaBNGB-rxDuHJ13qsJind20_3djHvSulX0SluiT6_i1IFZveQNkcnKRPTm7ex8GBRVAp1hYB3Gar3-aUvt0DQEkxRqUcUBXpLBwyu1-gRgfKXLClq69de-Ff8oJqmzfMytVDhGly3pZ8BXXGF7Gb-5IaGByKU3WhvnUl9DBPm2b2bszqOPyC6gRPCkeSEVsplM91JPQuJvOB8JsdukoRix1Zyfza7sEThhUF9i8COhw9YI7SdGktWYntxGVEs98Bo2G5OXNFMO1-d3_EXo1YEmknh0NEbvMQ86pnbPrTjYGdIQmyoyWVFyqpLwgWotLi12ptzxu3u7ESSEZ1cBWxSZ9cnNnZMM9aaztUoCR6A0bo705rXYyDnYVY67b_9YxfZD67IC1HD-Els-ZjAR4vzIpIXmQfiXUp_e8TEf7koQZ-hXwrMjF-YXYpeFyP0QuRgCOm9FO9XnQ985XFkbONIG404wOoNZ0VpRMxXIzIKY2KqQvvYkAvRyhBqHapzDgkLf2r-yYRXCdZNbTaFR5tHSKjZJEgsvOuXjDLuOrIHQR8tE9UsN7R6Fel2c3FXkAJA1UzIFEuRfMHFbsY252Ca_0IR-SkfuGtOFj43sfiUwfYhhM3wnsFe6lej1z7e1Xrj37Od8d3QiC8MBeGyK-1x4shfuq7gH9tcb9ju5ndcQEH2BCr1TkUZl9PbvfuF8a1XiBA9EHgpvNVHNxcCgf9YdE6h6HMAAwtjJNpJfkQKSYEsWN57MAlUuLvFowqflpsTTQo-CUV1sIE_8bPUXA4E5mVfxhdY3m3hXloi0Coq1ELAkBeuwzRJBfTQenyuSLEQKMU43FoPrsPFzk-o0FgLVZJbfs_XL_KUGPTn2DFzh8YPQzkJTS5qOH9cAEdyLkxPd2V1MWaddyMQydn_9O-3u2j4YYegA5TNmDvULCWvfHqRjhNWTqspaakmWaU2fVwkWEy4TWXk9YOLI6tp_aCWOn5ti6OFzE3qD-1p7NnaMwDGSkdtsE2Dch0rFx1VGZRC_5ytLONEsac4srkC5EAA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67254cda73d8a9-17149693','','','2024-11-01 21:49:14','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41352',0,'cd-form-entry','',0),(41353,0,'2024-11-02 01:47:27','2024-11-02 01:47:27','{\"firstname\":\"PRABJIT\",\"lastname\":\"Johal\",\"email\":\"prabjitjohal@hotmail.co.uk\",\"contactnumber\":\"07583988887\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw-JG5BhBZEiwAt7JR6zXwi0bixyOQdIS-7w9JUT0-OrdTXTapt7NQC7WbD7qoqWnF8_zSCxoCcUsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4Uck3AUvaSwfPO_UgcbiURD9NR6P8nqvMI9OXYy-mVROGrAb5cQrLCptNXc_j1-3sBQpzELU07RnmDk2TVu1GYOgwPFj14GlrrL0YU4b_qHjb_xasqp8wyR_XphWLUIDEcHJbolV04h9i7Rv-yd2MNQxut-pWx-6nYqshF5cguz6b-g6SO1bIYkoUTZmsV-2zqad5Gm5TjEbY4hrUZDe5cz4JLkDOEx2bAHhMYZhfC8mh7hNRiS6fIwaBjU2JUfb13x9hAxAyYewpb4LIQLRoMbvKWWj9jVS3Rkxstu7P7gAN_A6jKe2jJwG5z6R4wiL_RFv7gjnYznrZ3cZWfa-qqBaL6ubNBSzwG-HozeHEDNwzF_7oliImMOxDgZtAvyGGIGSfKYUJ4G4I4kEaLuJ6pC95HUyZRsJyyuDXWIFlKKoFe-m9En6KSsgwFqkwR4GfwgD-Mg1JrkEXb9fBSOIcQQesm5lEt-5uS8oKjrOEjqwLBYwVk6k6vqyQaa7_nZb1N8tyUuxcwI1fzHlyC9y0O8pfwxadYaF4dDwZ6HS0Gquxs74e1uypwCo07UdjcnN8vcDDecHSOmPloAT_M2szPCMckVeFBJB0lRBJonriAOICFmOr2AtEvEAo2QWLHpXdVOP1dMrpVI4ryYCE-A9Qo8ljNSp3BuPqhsYIMH6kBLXmUBiPCT5xIueZ7L7TVzA-p7IKYFbAWOhbVamXU8nUkPneNxUWsfgBjVECDxBDfNWltlCZBjKEZ4B0zt38ysGEGSlGfOoAUMNUgaR8C-mfoMC76Ke2InVov-8ks7035J39a3ULqiHz-4QXpMNH2ifcl6wDjwl9GQXH2U_3hbQW3KyEmYSPkrsJMso0Px21cLbpG0PZrGmtwKxOwY8CpF-exb53S66YpzHVPBKEpxXqN_4iTkkCugkug7wDjrk3lSAgGdgk8gbaEZOiHBrfedW8kkR_6kwCfvCLsM7UWpnTfUQjSq-OUQjmhXeJA0gm_wYfLQARkphFkYGuD7IYJ-yVOB0bMfUHqOs2LsjncC85aUSyO4FrTdLzBDMFw_4p4yysv7WnjLf2sLn6W-X7TvwSQepl-YU7qdMAHqJ9tohaxZ52i7MLUpENDPVpyMIuWNMPqemGxcM-Uhm8W9C27ULZTtsUXwzfeFCjxfzk7gxnceWozhv95sJcGDr2evjJiirRNtsXC23n_RFsh9Bi61QQEv-bUY_tks_xViqj2i-xORiz9Wtlk9vFUxdTvuAnk4D47YKQXupXJNsG8HP-ILSL_t20eF88kVA1Yagd6t7QA33Bt0JMLNaKnR8yPTsG5ePP7x7sCXwRb-SLJBfzcMz9OFB_llyyBSEVvrrDNuTB8jLDZUSKIjzKZBCSrNmaEWYn2T-vgj4BE_GGYELFiA0r0pKwT1j4W2h1Kf3imkgDhB_yjuuyMk-SF3j4wqqLupYBHSheMLb3YmNrxRQCb5HtQ8k09Q4NufQtwoiTaC96stIim6s2K_4s0EHbYOjVUWBOi_BS6L3JaQQiIbmLv-oFLPe1Cph8F6h28AW57SJ3Z6syWf8tLLH8LNIz3DJ4VG9JKMRt1GNEEP90iUIoEuotQ2qpPmruGXYFQh75LWAkst2qaLYNTsCtZ8gdsMzOlbpsud87Rwj4Rv0_-9KGfeCn9Dl_VcRXONlXKZXyi3G9Ib7IVxArbZ_-J3l_2nkrBTOQXYnS_CdXbVv0R49xlwI438vJEczLcO-LCgy4Jmm26u8LqLTGXV-vYVFVUafHqHFxZ88-UOswP1AnZH7dL18tVixbx5cwl7K_VqYgxOAUeq6dMgqYI75s3ZPRrKC9NAxteSotALi4btC5Uqe2nU_9xHZr45dwWPcexRHjWsi7gh0Q_WSWNvuH5u_1_ETI9gmwKs6NasII3m5YCnWP0bBIUloqN_TcwktqgY-T1s8BJSZLOzZGLrGsdsJpHPT5PE2G59UEKV5f-eX0MXEuqt3nQU4jP3CCWR0o5RddYrZAZuaGi5g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6725849500a343-66520029','','','2024-11-02 01:47:27','2024-11-02 01:47:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41353',0,'cd-form-entry','',0),(41354,0,'2024-11-02 01:48:57','2024-11-02 01:48:57','{\"email\":\"prabjitjohal@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"5\",\"currentpostcode\":\"DE23 1wa\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw-JG5BhBZEiwAt7JR6zXwi0bixyOQdIS-7w9JUT0-OrdTXTapt7NQC7WbD7qoqWnF8_zSCxoCcUsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7Zq57NECYQpWbxznuOXN5OEk7gsD2F73xGdTJlHX_D1u5yBqV3_1oNmHy8mbuyUzijQmkaF5slk4REpVb4JPGg4apgKA_0WthFjC1vPoE5wKDe2JPTu9tDjfUYhpAx0lRyaJvuj4I4s7MzFhGLEFFhFCLFI2FQr9g7HZShzR4dXtJFQiMKrM-a86Up8yxV0rIUvNEhiTgX6iUI3CCpbCA_-Ti3KXQ8tKT2uKTUextGuND8wn_JuI7Qmn5ZEUM9CWHI4TP0oLMdfqyN4IU5BbY0bh8ZhYoMdIoY8Uq2LNYrD-IaFdmwY1_6FaRdV3LJGCDkYEbZyqBzbK6_RF7TCsvXY7nRkHadhIS3w0BXJxL0Z7ohPY65-1ACw4KFnM8cxYNPiDKPOYS-dhHLADTkvv2LjAoFoVrj0mPlfuVZBRtHNO9tbH2i8I4posLhLZXToYPn5Jdzh5YqTcWVpmBUZWX8mhi7b-cfLxfdGZZIKaYQ3G0ExWz-_quo6zws57LqnOo5iDHcxqBi1eTWclC3Ioe-Us5qOQpHOHki-xmp2gfQodTd_H5j_qveAqIo7-EgZ5qMj13bvWOoHxtjZOLRbmcJ7KMOJOKv8Jgy4982LNkFzvkYDqVYMMySJAZPDuq1KFfadGuYXj4Y5IWc98gPobAq32VEM8LGwWS8_SfoNphVtL1oe71N6kkj9zK1OQdYbcaGOc-MvFJxwrFBL-etqX42qBl6KKYBNHZ0bQiazxoiPBU0oBzyQig2cuDahby2rMt4GJM3vd1jIDK4Nzc098iepBu7MCxRcz0KmbxSGzshXO5MpbGUUvYuWwpzbmLp7oZWrv_xY3htdEF7nsOIfuotu6Uu3B0ZKXdQLXijswablelmfC7WMYMpn62uDIeD6wXVAab-oeOSQFFzCUM6Xx1uL3DpNfP2j8oKlFzO4Knse25YyZsivTWpa-eMC0L7IClDBT3kvXiKud7LeWCfqXFl6f0sz3vE97pb_nFzj_s4i4j8mcHUT9s3Ou2cEXm_AGAUVmmo2GThCt8qHwUDJWh5fYIN1r8vOSgzGiRg_Oqxp0xJ-VRHGIDqdx1YhdfFhS9oL9kFnZGMBhq_uJ-GCuj5b8O5WLs-0EddvZIL7aFGI0FviASpu1Q6d1zhUAvaeSAV4KhdUgUj2J5LQ6lsmlT2fpWCoflf6y4MtiCVkfXy4mXaaIhkIYbVzLU7nwjtYCPOZAZjjt4NmwSSBoDs5I4PN0HyWfy8qwA2dgomjOSZcOWDS9gMYL5tjXAn8C7kGXvIi0F7W6aQoWIVAa9iiNgCFwvz4PkMQAcFtYXkl8HuDnpvVYPP2uiduN1sn9652YR3PIzUqA1icTrklsukub_FD7OZOr2UcS_MF56fIdL_lKOy1jD_sK1wt36KOP3pyoHiXxyj40ycf2K_QJsQnqiC0nyp8bTQJ3621s0r86LOE2egmukiNI-II76FScmMd_MLA_MAV7dc5vo3SX33AGA3h77x3tcupoEVTtBeCNS87JaKZr22r07uU9aRcit4hNs-F5VmYS6eJytlGOa5KM9IqmXgsC1EDWvaiqpTfnTEQjT8R8Y7S5PfTWIMm7ihj6U8WwZJo97F8R83lTWR9bSsPK447tMPOtjYrNcRW5SK8EntjUv6zr-DH_rKWvaq9E4yOOjPiYB1bpclpgBVXh4QXIYuDV9TKNlMzWqEnoxZzWKs5WYpk4T0Lpbk4kFG9FeSRCNQ6gA6BoPfhpx-rvoie6RjIjY1od-nN6_pEwCOYY9J21kPlSaXIhhI0ySMr6W6-zAvy6fcDSxN5k2v4tziE78OfNxuTZBcx7-el6Szvx3igxbSOZSZnTJjt_V01GdGHE_kX6pC5Ebmo2tisB4wP3ml7HhodktItYOx4aW76szLZL7hjWH5qOdd6f2XK_8PMx2Hc4KZ_Ps8ygJoEbClPA0o1_aFeG48nut4dy7cwYDibw51LCfcjmOojOyVNIl9UdyAI_ZAZMp0_VsP8GdkIht7Fg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672584d9ceffb8-08954231','','','2024-11-02 01:48:57','2024-11-02 01:48:57','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41354',0,'cd-form-entry','',0),(41355,0,'2024-11-02 08:57:28','2024-11-02 08:57:28','{\"firstname\":\"Joe\",\"lastname\":\"Mills\",\"email\":\"transform.mbt@gmail.com\",\"contactnumber\":\"07505366333\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6wOSPyvlrC88S2l59OwP5WNvvNMFrWbcNvtEpfYk98EqBGBVRzjx-PhYoeeJL2V2oK3lEcR6O_zbHa75bVwidxNdUROMB_BKFaon1J79Eai-QvGh_dDSJ7xhk_76pEhSLQU_j9HZP8qZGsOlDXVgfxqPSNTt9raTVFLdxNQ_CaKV5R0MXPI3dMJhKR0l9IFz0sdmrI0NX7GVHnfxMPVhRQiZ6keWR2z1Se3dPRgKMZzd1AFEIcv8cw37fuGyI9d0aIG-F6kXBAq8JyB1gdD8QJFYX7i0DlR9ginNW5ZDnf7ZBrsrnnF_kW0gixnV2ungzkiYcSvvn3XEC1IpUzjVwrtF1D3LeFI30VvrH5T_Wbc4TUUNnT4UT-5q7GhjeVpH9v1-uVDxWe7d6I-cz15XhrgXkAZxFCENH1GYnIFWEm0uV_92eBnKoNis2MhmwcnTHvmprDZ1ken6iytJ0YHVvOB0npsWn04P8xE-zLYOzIsMxD6T8bq7F_0sHmz1v2bJGj-y8Fu6cm4MesTY0IhfiugSLQOsjzYyT1pqzqEJUDwIZW69C22MWIpERxhLKpjPYJk4D-PJCPWrTmcrwqHbBw3aaFY8A1WC8aziru4MNCCkF2PWxWs28pokFeXPW37EzkwvkOCTLcRl9ly3pEPYP4xEei9IL0AudRUztL5iuVUpv9DJ3gxKQn7LmLQdK4m4zVgacbpUGhlOA6NVGlVzkl2x_MHiMYJVaNO-dctqSsTItlfrZz4e8phhdAfasfTwb1gyWhNjRVMpvt-oogqkwQFhzcGg06cAQRPFYJ5jsrubfjyYvKVkltKrlaQRMhZaUHuNhNnGR6SzITdyoHzBq14z_lGTI-arMuqLR6lhJ3APz_H1N0tTmPD6gSPhSs6UcL20C23xD5szPYD4_XSN530War2CwW056UnOxB6DWeU-v9BO0gDew5aFqomfWzc3Az4SZNchCg1bYkK9RBspbCbeNBo1Nz1DAWO5UWC9xb2pwZTEQzBGmm3Ulm_Z2hiAfDoeUIEQ816PaLKf3w4e0iMJVMYfZlu9jSLPZdSOv9owPiuW4nDAnmIm7ExvYTjK3WHT7Fj0O0J_xUC90uiMSgVbohr_Ieaw1sOrJDOo3f9V9k0IxfxPb9uAdshg_KCwPrRwH7cq0rQvJ6ASmsQIZnYn6yjmLE3457wylclSP5xaL7NpREIrKgN0r3c8YiV_1Fk53Xvb0yRd6Z2l9tanJGvFlLBfNM3N59Fo0iMss7QqMZhuDwxNuPRQYF4u7BLTvSu-njIT071xOV-R8QIlyK62zPq3hvf_ZtrYVBAeOz2C5T-fv-U7VnThCJRzKt8gPfpwfhaCsw8bvqzBNu6FsCJ0ixcI6Nl44rv8OpMiE-occw98Vyr6m9BBMf_7_JJMWeUVs1k_YbSszoSSMDVog7bDtq2ilnrrgafCrfLQzCqwzAuYiFIod5ZFTGORPJVZSa3eJzZhZVupDjGDtF6UjbguOr-bqHTuZh2LannAgl8kt9DKTaXio-CAPu9K43jZy7SdYcsj3TSIK9ulDEr6V2j7QppZrvORk_SBpVoeTBzlmtDZ9mPixbb3XPvwtZmbyn-NNw88HbMedB7DfwNTaADmZVOqirPIwbj_69TXOeji96l5Z3q_vNAw56lii1wylAmQ7hyWkfm1a5lauJPkQQukR8KxUaY-vn_TAPuvejo8P93AoMwGd8HVyHs8cOzIiK0Gy1Bi_Ydw3WuF990AZnEFwyMNIQMcqHNwhbrQKwJ70XJyPf-Q7KgF8Y5upoGxxVGuh8PwltE1UQzQQ3nABc9ml3kmTVTXm4NaEDRS2Cku0CWQeSzcEHewZ2LVkWfHfwO1tILMxVrCXwK4aqvL_zgoTJ9JvHsdgJh3FM17d7W0uhojgvlSIc_yDpkQzQ6dmfalAnV4a2PjOa2hrar-2PhU7mEVBVSaA5STzi8ZN9cweoVC3OIhjGWcdjXDKf_bqGVkroHo2MJIsDny1gXgSEu3RIK1TM97QY5W_IFhkiwvPoTecepI1qeu9_yr21k00D1_6PQQkxxYyClzmWAjCg7DkgeF3mp1v6HNUxWTYPDeuoeaFaqHFMq-RayFc_t5lcLK22UUklNeYBWYBOZ-fYKfCP5_2eGPKPp8z4eAIXuBmvoOE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6725e9676fcac8-38348819','','','2024-11-02 08:57:28','2024-11-02 08:57:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41355',0,'cd-form-entry','',0),(41356,0,'2024-11-02 19:15:56','0000-00-00 00:00:00','{\"firstname\":\"Stephanie\",\"lastname\":\"Revill\",\"email\":\"s.revill@me.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4hirwItoreHPirNkNzZAqOvJvNai1XIexaLSzVoT75j_BWj3zJ67s_oz3chDR72NuMbN3texGzbDlx6uLOWD2O9oYdaSkwvb48Kqxqrj0SHPUvIrdqyGpKwRxKUhFAuZhnW98sMh9xSxZtRV4sFhOxBHZ_-9_60jVf6ECvPYR-XVTUv7Ck6neCJl-YBIp8v6ZQwXpQ2UBF6WRMKV0UyWVZa0LVw1LwI3aaBWFLOcfMc2O-ssclj8T56W3-hKCIbiYOCD6neFQKplcAYbY5bDPRxk3rm2G9gB8JPHaIpJ3jxanJLrDA_9Q4dRzPd26ROrSXctILmFgfJFImNvQAjR6yRJrccCT-OjT04Gr-94KnoUiRf_qyiEab8Nle8N7DuHGRJhsZtpL4dw91q1kKZQvsJq_K3JzyaF4x9W8z4l6IX0C7nML4pGTe8jgaWTMAzW7sq_Ut6eg9PkAS67ZlCGQVnP3a8L3zGHDldC1mNcRJF2JExoDwacFFebYo1oIgwApUJRoZh3JEtYHwucBxSHUaw6heavW23Zxpk1EKLKmtbWUG3ZOGToaHAF9Jwr_9N372tFOTADybg6uwanCkI27CYPr1_owyTb9tQUxk_B16qdApFPOR7G5aKX7PFClOkj3VpafC0hat5PdfZ6RYPR-_viI3guA-lIJxALL0dxoFjKxszpAm7NbGipSMkyEZ9J-1C61ElU1RjZEiyX42qh7zHbRd1N9xSIObbuKcHBtrWqc9v_GmhIYYNA-qLDMJpm26N6WLprnj1QFs0HL5_kqnndrrGVHabVmUNdHuWWxGHBOvsQ08yCBleb-9dPsrI78atMtDGcTTBj7eQSejSOC1w3B8kquBUEA3uHz3MAMooKBgHjai_zV9VsNEUVy-PsitBpr0TqQtnbp18Yyu5LZ3kAkkRLbdohjOliIWfu44HkYS25h8kLrilPLmuduzhNDhvTfqdxHW_-31jLeBflRUb-G3GMaNoDtozBICo5HiXghSkwhcEo_Y90HyKI4GdDGLsJocBxSkAWmkfhWIqoY-8G0Zb1JQT14c_pW8OpvHVpvdYbHk7YLlrlfcooPqYxdChltA7ql6RDtqiJG8Eo-cKVjGmQM2z9vDAHJ0b_NR2OCNGAZXBnzLtcPMxugATzkTYbhK4KCjNGUFZmC0hybnE8EUcSTMX9rl8-vM0K79F0GBT9fXTh3mRm1OhO0-o-nQRnYieZfkCeygUncwoBgq_vqzrurNJ8WPMqAPSBoMne2HbmJ-nF1DMPSmbgxQXZgL1IkGj5q-o9oQiBRMG-KbZBFyihFDYD5SQIOKmpggANdvtLqO8t9YA-F7epkAFbQBbvPLxkylIbJGOhGlJMMw_lQGHsP_kBjFYZPtrLjweu3y6IDpdvxNtXQVokYVukomOWO5a1ee7Cd7cU3ytUpt2EjHOdTahhpvLzrlL1Jxfjq6OXltP5w44U5c3dc5PR76l3UbWF3UZZasAjfIZdM1RIgrYnwgmgVdvhVtmBfhgbSG8pa-fGPbT-f5CcuGFYgReeZPhfteD881kps7DeBlNEUNYeM1TjQpnpPY4mLR9etxZidAB3vW9UW356eBcO8EgiW_3llMnGPkqEERIIyIb1jsda7o8MeuyFSkrD3SiD8LglY4FKdwFqtrkE0NC6F8yBQMjArcOxU483SiqWw-u54W90ko6gcDhOF-bkKLlmhrJ--LWObnkkUOarjDbbViSAUURQqceQN_gcMix7lnTPa_-XoPzilWfF279FRLD_ASf3omkjmtD8OdtGzYP_4vi-xHmAuh9JHlaCj0t5l8r2T6bd-HXP07EY2KNKZVi0prdMwpBPS5kXvjgV6C69zeUS8ghrWk1YO2ev-phypSaQ2cy_GEutaV030UxUkw6Etj37fuqZRGYgadPzzDpaq3fvLpP6aiNud_O9Zbs7seLwbdaKnnHerVpI2l0on5zWYeOlAKg968OlXEqp6xUyZEoSNH6HOQCAFm6AiZX9xNvE5QkU_jqPVXziwxQwuCvFbIpKK5N6zqcvIWZrzJtM4GibcHynlOT4dGb5LYgL1530WMuK-1NgVWEq4kWfeexe7URdSlfcXL96ew7WXg8d-Uwt4dDC2K_pKPu1XqPiI3XBO7hxXY0eQP6ImW7LjrNeUoHkIOPr3FSsLZE8k9yijhHwjrwbxXshrXFR6BRbPh_Bj_qajW6oyf4-BLOF5OT7TxHZ4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67267a6c239fa4-02053011','','','2024-11-02 19:15:56','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41356',0,'cd-form-entry','',0),(41357,0,'2024-11-03 15:15:52','2024-11-03 15:15:52','{\"firstname\":\"Saif\",\"lastname\":\"Eddine\",\"email\":\"saifeddinehamani@gmail.com\",\"contactnumber\":\"212+ 0724815108\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4flqE0vd7RWn62psEut0zBqyawGlvPsJA98dyYgf7nvMRWftTX5hASiKyi0FZY4l_Hty2TaMtJ4M9uP4j_HYsGjnfBhoP9lpa3SDePgN-kJvFsF7eZPxe52yRHrFqXVl57COayozeHXL-gW2t3srPZ8WPZsdZ9nJuBIPlgZ65xI4XNYKFlzuGdcsLXV5XihZ5Dq7yJSookzfkPprATXsBhIgKoJFMzJSfaS0uWsOxpG8eECNCojidlRB8VfnuSOB1taJfnhqMj4QHtDj9AsCftCXiGWY5ZZMDf9h4VnjyQu69o4kh2cwFMeckwzg33M5Ub_Pt50Dsxo7E_unHgVsb_vf7KsF9enp5L5WYPYdWq9kWh6eUzHaZbKKeSvtPvnLpa1QEoD9vu5Hd4OuxVQR8UoQtO9p9APBwJ6AAikpNUUoiwBUoDfML-RjYwKroY6AoScaNQY1PUb62B_g-NgdoSm8FsaSYX_fD2YIA6mnFqorAerAkzDILCmqKn8gflwb9NZKB_thfR5whDrePkfvkL3ORUbmrWm6Ld3R-v3Ou3Jk8uXFLXWZkUIRu5oqW1tMzRHPC7odtYP056zUV2OEhvTKOKelA63o3uZEKGo2B_Mn-__TKgwObxhiVZXuxvnR1-idTwogQdHcEJqSJEOeOqVeKMt_4V4RsdqFx6GbOVRMjZH8ev1uAJVnykt7BjKwDikO0hNadxqCazSOR7gWoPt5iNX8khIvM-YZD9_GCCLvsvisXISP7FeEabhsYrGHZzT4QKiixCszxwINeht4SsdRf4LldZfcUL0g_A7OW1jCTkqWAgUlkP1iovENFYDNXMw6OgEq0KLyMcSjzTd9kQkEvC5rwphasEIQ4V6DD3MT-6pijt_hsIyHk-ZhQUv5zzrDSQFMKukZtQQPew0PhlPDXYhDMyoz0x49eek9INECcXbORjvw0kKiwaehd69rOTq-7dPL2wvRhY9bsrMghvayRt_XarSI9Yfb1-8-e-7MCcNk7krULQrucRReLg31cXS8zv0B_0kxijCray_irAyU6oPRKcvs_zR8ts8lLAYu1CBvI3nulYwe9MJD7xH6MINYyN60C7SZ5f7F6ZFbfXlkXoqjq0eQup0gaVOcAdqRWlp27w2xQEcGryS0uC_6qVQPfRTZJ2GnEQl6tX4XxrNazZwP70WMXax7n2ZZIxdvTrlzwV8b2FpfcUqwJ0gP5F3SB3dsrQ0Y_FSpBkao4f0JjymKZdq5qOCMKAfryGV4q2aa-fKmEcTsQ0CVgWnmh3vEoIt_mDagBnJB8xOP2bT44HjHCOsQxwOIAyPWDqUJDDJeM8Rs3_gPvEQ7nqN0Bw4zx-9BE2inuhAQuk4hEkoMzYzMi53tqHuWfEgVVv6CHCAp55D5FL7G4NgYlLtO1ySAuLoF29OvzVkYEev332uvOBkpT02EuDXhY0BLSFPfsM7ZDwT8lTVd9LHr-jUtdobYdXa3eUNP0FMQzRLEJgqSkCJWEC31kZlLVjIXrSLKJftY4Ya6sflWFsqp0eRO8I4Gp6wFeSXpRsL8oeBBs_NKrGjC_jeIkNZTzc5d_N2Dw17pSHTBlv72smvwEHZ-xkSzo6m0EoLxJqzdxcZfu9bHvf2Yw0tysglQOUMgx8SO9tcXlZN1lzcGLnSjxdFnXgBhi4T_RleovNS8CQ2JSt2YNzfm-fSfMPH1qvjSz6GwW-8BzuS4iwg3MqxfGkoPIFc1XgCP3tQIliENdJ05_sqaW-lCyK680OSlpu8DFzOyZCCqK214eBdprFvSihyy69xd-emJGOMTjuZg-9U-QiCQBSmtlsBv__2w7M90pAOeQxtepBxft5KneqkTzJ7kUWfKrgzqcqNj88CiwYDEucB-DYxw2CZAxNDm1MwJ782WOThr2v3CpNPlJJ7dBxTJiuCdFRJxWyt4OR4-E_rJsIz_5Emw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67279344a1c666-49885307','','','2024-11-03 15:15:52','2024-11-03 15:15:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41357',0,'cd-form-entry','',0),(41358,0,'2024-11-03 15:17:27','0000-00-00 00:00:00','{\"email\":\"\",\"interestedbecause\":\"3\",\"agegroup\":\"0\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7IWtBxYqNaDSc-g9Ka-AWNcMq1BUu8LBKZcSJSA47VNBfTlsz9bTcm18bGej99JIWUDLxK8eYk5MDPWvfPA48g0FFgORSJ1kPfAo0cqJlUmEi1Qjr-vaTDWQh0THlnpW5IQhWGPlG9R4CQHiAOf42gGXSyN8LcsB7py0EBPQVFoG3cOJotVlKPDbCpyEfaTFq7UG2EAAxcvZ5MtKrDpF59qQUuxgFcm6VOiRWHrdOhr9k6DRMC4aQ0KnZGBJK16RQSasqmXAZ5nysq-97n1EdYSHk1NTSQpiQBj-nLQTSmqr-M6BBk6FynD4gnj6W5mXNsBFzUD0gNYwN3pvI1feed_jR82jUjWNQSC5A8AD4dweM3KVgm9gz3A8f87iLo7U46ZuUu0vJJcS-O3tgsw1qC9VVIg6VdMOBJqQvVCcBXOZdjUZ2lXy2MkBPv3HeH8bg6TPgp6_94rHhn7qqeHU5GgUn8aI4djjqj41wpALgd1Jz5G__m9aMK61vTrbDivrN-wez2yWRqWaL5ejH6gOkauZVq2EpGkdB3mBJC9vPHJZrhv22oLwgau7Fw35Hu4iFMZesW8TLLT7jLoYvpNmEk8B-L8biH1kyRKJGoL4T4w9yJHO6luhzOko6BpGtzCgTvlFhZAQUoNiPVVqzZJn1tWkJkvMtNtwJeTWVvJyN_7aHcUwNttjmi33W8Wo0lIxPrWN5nGJV9Gs7ZyXmG-5BdqpaWLZ5jHeHXvCE5Q75xusOx012vkCfjohWcb-J-m7f8NSb9qq-YM-dz3HkQhoj2t-zAhLELqLWkHsh7SbOy3foQ8wxAu29bvj6mh7Zu2nA2GChCVNj1D1Z_-3VIJ0CszW1VUuTCJxJSXf7iPDTbTxaLWsetOLMV9KnAqZKYgA_Cy8voRBXSNCvslobvjYdleJCKs7cbeqy8pzs25SFq3WSCitTtAbUwa0D3PxbWb_gFfRlJe9f91OFv8rlO89tj6ElRd_CQY2R7dKKa7k3It7Uvoqan6TqSswt5gRmX0V8fdkE65oHYo-RHIL0zYcpZ4Mg9JaaXLUdDv9UNnH2GyH1XR9q9yP63fzr9ixfL7n8PtfU3oIKSwSDtkNR5H-dp_zfB1GW_OskeruGlDE1yZ2pzdMOUMIBzTGtVkl4MZv9LNl3O2pLLq-Su-lZTQV1hz4CuZ51kKZGabWYvuzzr92FHYwz7S_uZ4lUM3eNGUjymV558B-vNL3hzS7YB8YZNZH0NIYRH2R6s-b9N2AwiK_dYq-GgHSVZKFqLqFQUKilfuUcUJW9XIQQXoamxgMh-142T7UMe1aBM2FtKqHBh-L11Jb33Mdol8_-q5MkzdoCmWqQCcfY_4a_y5K2Rd1Ii3HQ_lPUI0tQqxxg2b6uHH8m9Wm39EyTgwdFWpXEfoQplFlZYYOXp0eE2JtZcTdlER_Nd78EWX6XVV3W7xYVGU_MNGu5oobyDkv6ZpZbsxheGUgtkkksW3H6glgtjsa_cFDb2fLL6Yt905nxPsHbSUHuvujMGF8d2jeniWJHoCLoDTXnrcFX84lC6IKBQZ6q6HmnNDcPa4xNEe_10Kf7gP0v6Qi2vWAGde5tEYReO_n5obNwdstCcG3Kl8UksJ8gl9EB4QjGLn91NJ5mRkVfYxvIttyZkc84TpRDPt7Iwa4aW6xxyjgt5oZlq14rR0iym3W7Jqmt3u_blGpRSjW6tO9p0u_-R9WGXRMURONLwzgcwt6o1mBfV3hYJwavc9veH8VYd5AD5oYsevA8SdNNr1tY7aOAwotcsKrhKg2Jq01EgMUyNFiey4d4tgkB4m3UuEvD_DNxJymPWxGxOcM4aOggtnrZDS8IaSp08OXZDcje38Zumxn37fzSHbX39IYaySyocO_S7LwBRi13rX1tZHwrCAtYi1tos6zkMzXYIx82N5c6G59LU11GVxLzQQ9e32s8GsA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6727940391e6a9-13150566','','','2024-11-03 15:17:27','2024-11-03 15:17:27','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41358',0,'cd-form-entry','',0),(41359,0,'2024-11-03 15:18:32','0000-00-00 00:00:00','{\"firstname\":\"Saif\",\"lastname\":\"Eddine\",\"email\":\"saifeddinehamani@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4PW0zD8MnlmUDBCkFjAclty3-XXlJdMpudJ0MZmAJLYU1ESuV_7f6TmVuYsFZQggRRyQExUNeYkxfRAFxE1XDxcCVfnpkvKalSVZznmPH6fY3EAz9Yn_y2VeTee2aj9fna-Iy_nq9t6aNsnjpTJ2uvBDPV0voeRAOkKm464IxBY3eSf21U_Hd6KCwxxsD_Hyug8YDrj5ADjBsfpwNaPZN9DyrvDg0IaZdB1SRK3h0cmd4jLvQSwJCFX1dPttiQPE_ohrioBGhI-3YXGqPA_edPPZhU1Ad7RR6mNVtE105GB4WL28rdAwcgAFAz6CX9aSNAR21FdCMsy0u3eWSSy0KhYMSPaW9Ks6MtZHstz8pVCEqj3Qx_Hs5GaFpDqsKOD7RaN7YbfqgQRMfv7-u0bp7Z5WcV81jUY4LOhuvQPXuCnpClugOjs8UIJrP18WpIdEm8KHoZD5E2a3cNOjrAYPiFY9bHvT_xAwrWetjVT_rc8YSzSfujm95X8ADRVsfmGHBmhiq-ZUvMtpbMYgX755paACAWKAuqPBBDBI-Tc1Pv2OHAbJW5d1hjWTu_huvREgI8xUH0R23xTbpSnL6T3L-rtjW6qzuWuuOp2hBKETwf--w4U0Lju2h0WOatlbgl__vHF3G10gfy62b9vYEAA6rZnruNUft-uF_LuCjTqxPLm95KIRsZw4w59NYaKNcHziO2KwsI4P6KmWrppHsQNKqyrXq8KrUItQNq4nxcS8Pu5lt5Mhq1p0bck3tTD5wgr-Kn-AtxEYhspwj4po2pgZ9RIPcokaxx9ST8RZJuCmILEmjQNhCtHel9Ysqxld6ZOLbuBQ3jAhkN71oBHrokYml_OzaVNx8j1VzWJJoVV_vhnm0ygAc-KEFAzeM4S7kKMf6N1enad3sWDqb63NsuzYal4g8ydk7VlV0qd56_Ixpdlt7t-5MPigJAG5oz3V8RGOPUYjbPvEKX9img1ysvmb9fQXRTR8XjPfc2Jmf3cpHyET12iBf1eOiX-rIK3nuB7kqnzjBtZRnKCzA4b4m36bS5nZbjLjLY95SggbwXh4d-E-hy5MeRfFXPx8hgiQJt-ilGkalAgoS0ejOx6wRlvaM9Jpr9RLWHEfymXwNIEIhV7fKs1U3b8Nc6i3Vq8-VbW50hr8RNNuikj7NP2urOgsp2Voxydf-HUdGHGmaOBIM2dc2rUYP8hNY7ztJJvzZsxkz-OMCLveUOONEFsDV4oLisQcqd8bT-vpT6PgE1FDT7dAXGMOK6caUbSU96tCv5RzrjWo6fheDzy5dWjWxgAg3iF_2ve5HoKSe0WxpSBaPUE0QMAkXcw-Tdg-ot6KOuFJVBG8Jqvg6GV2N2pG3NQIGkSfE4xy8_5c4bIufrDYlceG_4sAW3ekv6SCwzG1ecM2lI-RbIV8lvXtm9MM_kAktC1lo66S1OoL8Xx8PEVlLQjEaqQsrSOB13E6LamTz56v2Wfg_FiO288VNii4ijBcRBlA908NEkXxJIX5dx_I-3YBsXNDo6qWE1mat0bHjHbJXt8wNSvNvc6jcfKgTXNXPuwO51rM1rOdI1ES5aAqirT9Yjq5yeH0q5kThx20Z8-gLSk6ueDRUQKQZsp6tX9aND2zs82CJNksHsu6QtJbYpredkxEuxHHVe1MZJdT2TLxv-VElcZ1qaeHqvT7PZ-PGwREfpwdgRAGB7rnZe1qs5TXe-HEKhLY1-OzrATrq4UBkhm1COQkDNnrx9VEam0mcpxZ5h135gBNqSwT08-tjpyEiMVYBYoYwnai7Ev54PsgiPiF9uZDeY98TKTwnkquNgTYFENDcRxFkaJJnHYExjlTq9xClhCOMdnX62zwYaLvZpRH4R3WKjf4dkd1ivHC55m09n44Yn4qQ4awwtCASPEHYjJrWYcdHCiZVViKyj8Xznm2Dv_ZLib_8KTfMqeweRJQEciA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67279448e400c6-77550636','','','2024-11-03 15:18:32','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41359',0,'cd-form-entry','',0),(41360,0,'2024-11-03 15:20:11','2024-11-03 15:20:11','{\"firstname\":\"Saif\",\"lastname\":\"Eddine\",\"email\":\"saifeddinehamani@gmail.com\",\"contactnumber\":\"212+ 0724815108\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA43yeZyVTPvYNcMIgsvxmiSmuSzGLVEEG7Twq33zlD5OkpAAoQuWdQ8PvMs00IMiLyV5zRgBl9HxB0a4QV3jxKrNZCk301Jg8JiKwuOfeCIXF6XLNxU5xl2RK5wYQcbdEvwb3Tu-TRbozY8rIwPr9xixX6DY6YDzdwYyijzxI-uISlHje9rGH1Juj2HCyAAUyT9onyGKBB0vyLgQq18i581e7J5ebVI8AFwR5p8U8ltNtKVAsLv6w1nV5WblNVICm4yX1cVjIxQA8eQNW7_AIKE3La7Q6Y2EaoKGnpEHuujDQILhiYc2OrcA0pB30gW5-BGzyV0y7poPXWYKyOAa3BSOxcMTRmIoAfl4ZmZ7lHpLPca3KPfFX7a6NIRd58zDTw5gtD2NCur2uT6-TsZjgj3qVS3DKbgNnCngKPUtp7iAkTVvpv6a-0y0qMEGGnPZ38_TVSrXnvNakm1IQenJHHgBs_enD8P5npgHiWTGS_1E_WSKUdQMjbVlGuhocf9WxzX0pWvTMHhbi5tH4kBADGNX_7gnG0QcG2Cu0a4wdqaF1_QgvtIvf5o8CetEqBOGPUTUxii21SOylGsQS26pRKjnT7JVL32twoXfhAg8if5bNtUac2at-AXcoSdA_rms9vvBbnvxFBENJ9XjRpcnfvB0HpUDuLEHlpwZiVdxDoJOGBak1CzfVIKTWscSb-4iDNoP5pFdrEMiTkdKHFy3C5rBoraSKowWKWOfmKbTKghLlrdIwibyb6ojzb7rajm9DUzFuTkrd9HcuiKU_VVJsJMIz7PI_Y1Gk2nPzrf-FOYEkaGwd-SQRRre86Ev1S3Zv42TYyzM5hMF7LtYI-IwgoVugmXGziZcAH-sPBXrNLOcrGAnEE8hQDCn63TNHi4yE9Y3bL1r8LD-_LBGp1JpFSt4ueTswG8LINM6DZikyaiQffwJ0v6Liy7EVH0-l2YiMMdj6hmCAJy04386mHcfxtmWopryvWYyxTZXF8O5USz7g58Kyn-Qu5Z-2hlLSPz27du6DLfhGR3S1IYJALPY-Biqy3ENbWOzMqa96d7VRve065zY80cId1oKVuHQ3vM5TPC78koU7FWK2q-ii5OvtzgcHi3ONNSiuCs1iVkMsxZyUaW2UfJcCmjO1mgy2Gth00qYSPATrbUKQtxt4_sqWVNXr_3uJhhUzGJ3GF2TOe84GF_5sJ5FhmqhacDUK7PBqRzY0iRy_ByVWzcCnnKLgCAm54j8CAhU4DLziRShu5C9VUibTO6g7JhMlDnfpdtjIJJOra9YO1CBwW9MIwz5thbQJ0kKBA9tFTWhvzW-Eer1Q5Pl1SrTgOPGkHTK4GHzeciiZui4-t31lJp6kZbwa5KS53u_mibTrDG0vwsATs_ssniA8jKL5bfHAM4VhUl9l8TJ3ZLCU78GlXicggHKStXw9nuq33CkZXI7cdfqG5rwcvJwzNINeGVZlRt7CvElDkqMIqp-uaI-ih2oiwA-lGb7jbTWJhISL9xiJmgl_NNx64kq3QOxT_tgNO-iH-ZHYb3NxYw03neA99gyv8itzLF-isjYkn_xp2qbSXChGwne6cvVtGv8va-OFQ4cWiNU8Z9YFnu7BcSMaXI6JmSuhXgGAb1ff1KsAzet18TdxWn8OSiyA4ovW_GCyRBlgvCqOlLUAhqrxK7HyHyGSbwvxJcJ3hItO_s3-n1xj1bj0MCHOUy47zAW_8HqCkGyyQ6if9N-CUXBhyIhZE8tZl2YPIsl3ku30a4toxpywIfCjHlZFGGdzGlYrYT5sxDsa0JtRxuaS7T9rHt04xxr7b8CzyMXvlHmu3Sjnsrl232p4ROZOEa71onRKOO9PS3P7DrEyaJetdUB5mlTZQMfWJBl5Ym66RodSbkZhiDUIiwCGJ2kVheLghQNOV-jL5xUq7BXLz8-xKu196o1ywSk84AJNQEOrlMGw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67279487e29e97-13987036','','','2024-11-03 15:20:11','2024-11-03 15:20:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41360',0,'cd-form-entry','',0),(41361,0,'2024-11-03 15:40:40','0000-00-00 00:00:00','{\"firstname\":\"Saif\",\"lastname\":\"Eddine\",\"email\":\"saifeddinehamani@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4Z9615YpzWcD9So2LB2BSmB97mmwbOU3UvY7Yu904wfPOBznvORHJcxquBQ2yy3E0DIMYDVElwcJ0x87sCQxS5ujXUmo81f3X1ZExJgU0kto3_vQGQmHSruNJQ1-6XXImwJnJIaemyUNzMdrVzCMdx_IRBISqTH3kL68_9AXhVy7kMIAyw3jmncE2AvT8kgNKPV50Us4FXzQTD14h5qzozKedJLO4Zm_1Ta6daxGu1R-txWCXLCRQgu9ndgKjSxxzXQ_OXWi4cxSJkby5zdV-nskn8kpTkXsdP7MarmXjY3639daWOU60jg8xNKFfW0efyyuqtzvE-gtlJy1NUjVTaiQH5Gp1c5oIH3UlKVs-8owPK-YQoQf-rVnzHo2FOAZ8Z_ZeXU2LTMnKGSemdJUJoQ1R7yYL42pMge-Fk_HC2devntkM3oMHbZ4ZZFqNfiyZARt2kdsSeCtxxOtqzd4irtG54ttptRT2uNlfk2Ci-rWKcs6rVvbRp2Sstfbp8OTwsSC_RnzTqlEMf-gM5qIeU6zKiu4mr3FVx5K9TjOB_yXPX8ddlfwShnktKMstyO3Uwn0JN6w8Rekf2UrsRMAYRFq1SFHW4o4xNI4kBD1pa9cKkURNlYB-081qcyLXwqhpwWswJNkFtKX6SMl69qZ12Lo2cqjURGHyBoUIWj_ForVjUrEvA1U5hgbSO5zHlVvnZLvdF3w70NmJKHxz02GYmteRgD9mhc6-QFTRHlpx3fqnbUv-TICYNMuumN44b2EaVxtrJzKfRdXN3_AdlLFsXrz-2WimNOphha_6ftHRPY12w_oyPqjQKOdMVQ_VoFspmKAo284FKy9DLnJqLb42e_NLBhB6m-6EHti83NcWE_txgu3vxFRyTOj9mB5G3g1NbotseAlu-hosW8DAlzDSjOn8AGTuKVx70Yji15Kl7Wbc88jheoKED10LvEgy2ZBmIodyShXGmqTML2EelS8hCUQKfoojHzTjlaswUIRqmRlsv-wJ9Iwf8R4Kq35x_SCUBkSsTC9M6side69WoxjXnqKz1mHp9caXcIiDoMqvkk_uQ3wBEZu4EVQ08QF7UX7hWCpWKVzI6xLRVSbJISeExKNH4bKz2t6LfEDYThtgy7kje2w4-TcKwNo8FzAQo6fcNNIkOsys_JwxILkAeyJr_frQer39yRopD46enrAG0J3Jay4j7-qqIrQaW2PjztHuZ22KhzYi7CSkAoY3XlrhEydCSWBnXuXOGB_VVMfyboyTq9ZEXvw4bHa7wSra1pgm8eKto1IZWFkGMLbBRkKH-8qQRyrpZ_3U3qk28FYCB6Qxcu7j9U_uWYEaShNsJvWvUMsIOYQZi7UAhh6ACRNVl5TSi1HGOQDMt0hoE8v9_eAvDtaGY46AfvMUgH-vXlhgQWFyqNyBLceK1mHUIjqZ8gbghKKHtanTlBAFaiC5rpTlaUF9Ay8uRtu0XXInop6xpamgoku1B01bqmnBOtT0qjgU6RMHu0lhq2yd_TsEhJrxFgQdaJfKggX8OVdzs42q9Eow_Uw3y2K1M_7MaVzupIMi6o0KaTq6wEHmKDyph8iaSQNy86sxde2py7lLYfBKb3dph7WddW30iQnUWo3aNUP9UxtTiPHuqkMgkMBEF9YWByEmlMGj-0x44kfX-LcC1DVlCe0gU_uq3HyvNg3_XfgLxj1sxCLtBhH-VyS1gFE3ZAu_OXQCGKWvPAAZGIwxyYJlYf0aoI_D0tYBtyQynlGKfXTbfQ5R9WZlqHbeH926GFL6jbGi0JJR2zDqOdS4XKBJzDxZHfPEFTurtnDVx9xNrLVMbbWhmG-QffQ5r0mscTJSK0DyZjz4z9OxKk19OW6MvkjrmXqmc9t-EbyBcTjY83q7XhWWhcizZdM2pl0LfwZ1nHBqVbosjbtyheTc7rXKA_2WrumEE-z0mZzDslGbPiw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67279978e5aa69-58193723','','','2024-11-03 15:40:40','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41361',0,'cd-form-entry','',0),(41362,0,'2024-11-03 15:43:58','2024-11-03 15:43:58','{\"firstname\":\"Jay\",\"lastname\":\"Green\",\"email\":\"jaythejoiner@yahoo.co.uk\",\"contactnumber\":\"07872451297\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwvpy5BhDTARIsAHSilyljtiXYKmaSqbn22gcJ6SD3R-MzTzjzUKRucqD7rPRsnVpidlkCQq0aAi6MEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4gVMRANX_o9W1kjRRD6Bvm0gOiYEF62P0o65QacAY8IKjAGs5_0E5EHteCtreMrhKsab9N0uO6FxOk5bAlCGeLLKSohOKTz3_lLIdZGXlr_duT2S18wlA6gaTrUor6mXgftMUpGUc959Pc3AgWHkdrPHZrkoNHS_73x0ytbwYdcdv0lWVA13lC3fpIKKezIwEgB6ctY_UgGUrI3Gx_LdhzONEJhZAbGUBXlKQh1eC6MmUdvoV1XsFkknTF7YyCLlHzvhPnmW6KS-QCbuF505XeI1Ev9qFZWbYR1V7HRqlN_jPbtISKt4OuJRMofp7NQU2IdN2KxWUMumlylW-aGFn5WsBaNnFrpvy3QnNtt6FcQsWvS6OuahE53avMn-O9n4KIA6TGtuGumhfhXdK4xTuP1d7DdDHWNoOt5p0iUledDugO8amnohWV95LoXTpqIrBe3CRyf2zU64txdnA9ixvc1Jj-mc3exTBfMawkRllYPO2g2Y2jiD-e0GKZvsBj7AorRKzYrvXxOpv8bGNThu8rtDKmJ_sKQ3G0sHyWE1Q__02Ae2MUaHk1dZg8oq0ePa1UX31WlCbAwYO0zrcm9Z6ra5qWMMJkRt3l4z07f7U-8wv2q8nxti72-ydAEGhkLm8en_rHxmdlN4EnYprKDbj2L7f0jgwlHPCs-lWox0fO6BvM5dBNsXKfk6227U2CZk1g3Aj0tpmoiHtaImyaTc9vcWz0lQoJn8yO3a5aEFHHjAJhPlbTjtSz6wmv1JhUEsGOY24V8mO4QieEQeNKkynXZIVob-vBD17XRWl_2x_v63rx_mjEime6g-Vo-fbXbwDs5Vo8PZbWODv6b4OUsuY-eNdiNLZTGqwNJ7TmKhcIsd-bbY7yb6DKm6UpRnmTr6g7FEvbTVgl95GgKqQH3y9W86VJyUASphhN6_ZOeVrMgJ3BEszKGFZZ-nw615y5GRD1nAFfgN5o2jn8qjSQrpNYm0dapzjZrjobK28UvGfV16u4gvJoeOL-3zu-fRMN_fIRY6CNWc6pdrqL3d7Lo1_M_veB1L1b9W7p4reWlc-VXEkwl_WDoH4ls2BNhsZu0ltlCi-9v82jNBB485fAxIw4st2KQmwIoOuaxyGSDV2m1zY9p8OCaIHrGDajVwyiNV5VmVqppMS582uPhsyjwt4KsppJw_uUx454UE_NGlp2BCswGJS8NZ700dkcTlaCf7euRKIgJ1v6QcntWSwfex_7pPIRz2_OkMy6skRjuewmMWQJdw7GJSjsc68XrlmJKmabjVm9-CyrxQEjV_mauANZ4qJ3Eu3F4H3iy02-zCv8ccgoMLw-rStIJCd420W1wG5UkQ6kiwvdPRwFFOGUjZOgi3KqoDRdHlC9DngnfvjhpG_brOutFD9fMH1Vt-f4qyxD58TzRyIxZTS_Hhm0cag55b4-MIYV-DXGJiDsGkfxKerClkdZzZvBgtfS59LFJEE7n7LZ4GVDdPDEG52ViSwKiSgLMuONPVnNevZEBTKteEYyV-8YC4GccjM2rD5mWWhEPHwOTSQUBef-O01f5YpMEJiOroGsg8E25w7jN-ANI-gHIte3jG5FLdRyczvYyz6lAH3olLdp2DwVcXkXmrADGD7bMMpXQ6QImi9mB18flWORUhvqPGyalyKbIiMsg-_DmhjLuW-JjABOOvu_4wnAT5TeM56fk3YFfFgMqmPCXe6uOayRfAP8dRdwVHvkTLyP7KolM-DGaPs9yMXV01obfb6P7T6uPuUqQ7X23UZPfMzBXaMCIoQRSVghz23x2ME6Dyn6P-ItjiB5INUBBXMCU4UGQklv7FrsMdvGYkr00RL153XtI46NpkL-l06B1Lf-PGzVWdR8zg7VEzpoUXwkGPfdn7E8Kx-_DuqUUl1f1AZIo1dj5P0dULYqG7mMxpyBRxwv\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67279a32be3cb1-12752034','','','2024-11-03 15:43:58','2024-11-03 15:43:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41362',0,'cd-form-entry','',0),(41363,0,'2024-11-04 03:47:01','2024-11-04 03:47:01','{\"firstname\":\"David\",\"lastname\":\"McDonald\",\"email\":\"dmclonerwolf@hotmail.co.uk\",\"contactnumber\":\"07999814837\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwvpy5BhDTARIsAHSilyn7-FqFIX3nzkr9AuJJ-R1JOtN3dnZxuGfK1DXncf7AMYTBIUlWDGoaAt-cEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5YW0PGbdQQgBcIA654Rhq_D9hr-BykkIIK0Y7w1bTiPsj-H86nHWZPfl1DFNYAjeCHakUtHrn5ol5_gcNQr2DFCftiYk-yF9nNeTC130xL1zTgVPizsm9x6fTanLq-MFE333JrHOQBEWYYF5rHbA65izq0WKC07GSTxw3RaPH3SkUi8GHJLfVIyudNb03mG10Z_Ue5lg6L2JY6EUSodlDOx3_Po-Tuuq-cirJzhbvnuiMrw1iH5fj1aAcuCf9Y4y0peLtppc9quNyemx0DDZS6IWN84z4DadPwBoam__HzY2CkHNAP2dHqk1ppFfPPGlKeo0H5C_1qaXH3-M80m-eGFmOLr5UsU1gbf2eBZEYTKeGa0lvs8Uoz0ySqPtykF_5lJaqQAvUG9S8xUS8T3O9W7A7lZDAfKYPyqYJSZYRQXCSl4lC7uf8yEYxBdCMWmp6gQ7grPz5ro4fKZ4qtZMfaZ-ELM5iJICUJcgVtfpXYNWFJE7Yf68EuQAvSFmJiWvLun55T2neWtlX-c-IjJ4cEQ4JQCBcz7AyubxNINrCZyb4aM3iBHPoLF0drieorRN-xQ7TufeKeJGkvyY-N8pjc6MEaNj1F7u0BJev_zXuTrjZFOHpQtspKJJ10kLh8QiX1z5F0wMlkSPxOLehcklMP5qaCQA8IVAgGOpxBOqcqcJZcDv-8VLjtJfc1pOHyAYerUXHkP1W3OPFK2OemBtiddeRi8uZipgF9amjjwUAE_3B55uvaONoekyjDyPvgsh8YESAqqG0DQ29-yQxuE61eDuCsr-NelH7mQOLyU9fSDz8sArGbEwH2ytrulJYOWNZFfUhyEUxwtFewMM-R7Pf6TqMZd7OKUqlBNixv27TZiqxlaIAuMZ6sRZZ6O90ZEfxuT2REFU9D5wJfVxnWK9MjpVXWBmeu9nBbbLubfuWBcF1mEJPsFXPzAK-B0MAStED-ciWm1b0UJnlyUaNFTSzDYILSz3iE0AdiD9ODSPLbc3KMWIPjVssFggKynqx1rdpJKN5Gw24GQnuwlolFSvNXCnI6GG8n5wq9lwWaU_YQM34NykXtyqKeqSjLbV0NKMDnlv57RJcKIftAVPlD4focJpo2xTvVkTrBhZ2WGZkPXrawhwfF1_LZYx6z2hn40-X2SaJ9PTwgwvNwDURKoR4dQjIUShVdVBhzmKDxlLHj3UZDT6AkmaeSfIAhH9XxcsLk09ccG5zA7BfdYV8gwf0WGCAbrsVAjVXxCm0-8RuLcW1i2XUw5iV0iAO6zWQfvEUxjrLXNlj0PbQWX8q4n7Utw_SQ3TzaHwapd2O2D-AJzOUv_Yco_3A4KLdxOu_aRn5_GyPo3wkw4vN-8tOmh5sB76VSxSwzcr9eaRuCASclQuWaSHZHhP-KdyzP_bDbSwe_tdgBvbvt1CSneGBUdyyQKE5b2r5USCe86b-ypoPAzMa83g0xWdfYCTAMc4xVpKMppIpl0tGmmgMPaX2nEssw__80voHhV0xiHJ3zaBkTpxf5ASgOYdNPxMaUbAVJARTvUwsV8IphBOrHQnCHnJvl0YEEaL68_5DpNAqG9peWvrklpHXyVSzKcxLwiqC_34sVobtUwiZCvcRI-RfJXmmmOtdVn2qHNlLlyp-1mrMMb_GiNqPdnpicBZQZiJV7ld8MgYeYm9uRHA4FcrVt4N7fPJORq_CtbdXOtiiz0CQIX0xSpRFktYSeB5JuBJXYog6qL8ha_hSVO9SdvNbMJrVjV0FJ28WDDQi5x7knEhtIAijeAHV9ExxnlVnuw4QRbyV5cqaY3k6-zqOXihWisATC0H0VjMaIso7OlBmUm3anLFd3WVRGc8Vv-0WEuK7fLa1J16sOdMjxeSUGHI8betqC7IZS34992IAMZyo0NhRTOzJ9JdM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672843ab928513-15423452','','','2024-11-04 03:47:01','2024-11-04 03:47:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41363',0,'cd-form-entry','',0),(41364,0,'2024-11-04 03:47:42','2024-11-04 03:47:42','{\"firstname\":\"David\",\"lastname\":\"McDonald\",\"email\":\"dmclonerwolf@hotmail.co.uk\",\"contactnumber\":\"07999814837\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwvpy5BhDTARIsAHSilyn7-FqFIX3nzkr9AuJJ-R1JOtN3dnZxuGfK1DXncf7AMYTBIUlWDGoaAt-cEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7Pn4-06i9ZTPGXe21YYxdq7JuNIdN-OSRGS3k7_WXiJ0G7SWqpz_LVbCspuGX2AS45eNheE-GrNInLoElkWsL3g2vU8F1xEzk3NW-qlpmcfz31aV2g8kLAf6jP1eY-nqsGjCFcnD5xERKTW_uv4jB_6a34YTRkAfPeNPGcECqv-q6LM8ImtCBJGNB7bEo05VftNX94XNZZ6kRqrQloXIcGEqpHvLsoGI1C__Nx1y-SiygScHSWhtwA9hPXAzGsAxnRYPRRpuGmjd-qfuy0rfJO8YDGUwYhKawHfdyP5WldQt0s2_nLxrZD32D2XDdwfEYHf5mmZIZ5SDDO-ojPSG-kyp1STDFQcpqPuaCu2V_dAn8EhnoJQIkOCrb8_VXjkwAbdJ_wQNndtZNtnfgOY7iztCbSK0XvYQo475lDl3eDzDf8YVqVKWzbF-B20l62_CLX5MydKPGwoDExyDJ8anN-1xfrMDPHzoQPFwyyBc1zESWhRjn6vVLNkM9uExcNMQWBUwVxkWW2j_ufcKkIY0h5bxXVl25EAusnzfE3RjbT9z1fKfOYmL0w8UQeIsvqOMfrZVp208Ar2_b2EHJtH-npPlJoUUcd-ZVmER_zzSLTOabZRRa3P_mXCvBWkO2CZe6-UCy74YdHfjx1hHy2EDosTaVX--KTQMkTCw6We1P_bF8xiv3DF_fyq75jIS5s0ntg9Rnh6Aqan3-XzUy4Qh5ofov82uRqxedoS4rLGYqb10-LQS1k0TvKvcSAUF52RQvV5696947Af_hFwuoOf0JYX5y6Z1HtXle-ylcHUcJIDNj2PvCQ3Ncgp9YXtd4tsnXSHg-_j1Nce6ti6fcC-29y_NDQi8IR2HCGSYIEreKt06oIySmkRmPMbzlXV6eqZH3Tj1gLoz4zQputVWV6Qe9pbyanDK7JVnhCj-gf3_oGXKnDy5HVH5CWuILOSNke5hQmj22yMe5X_KVxCwWt2DSDpJ5pOsQVceUbuZPwKpJflxLvtW2GtEEVDz-3_S792JncDYPFI-WT7gCC0d9lNe09dbUqET6mGwdP_P3wFW_D5mV2L2s8g244_9G06Y1DYZupio8-mi4LqQlm59HoFfwyGriNLhr72JhpqPguVEDF3x1UOQ0pzbKo6s2Fm3dbQBlR2F73qTuChupGvvVZnkv-NaQFVg8sNTdmx7sND7zNNiPP-0jUCLa60P4j1R0kv3zw0Rfv96VhIXcFdDe7MEvkFW0bcUcJmlLKLN-IFPF-Csh7HJ3VcLhx2RvrShi23P2lbXWQ3r1OSBOdkc1IsT86ft7qFRkaCyA5NUotlNmkxJdj3C5O8Mb2wMS0awnyzy7eG9_lU28ECI4fTtOi28ulnFaCsO4F7oW2m7E1hOc4YXtIQ7vfxui8l2zYWFOu_ByOln-yHzdyEPSfLd2YWmlpD8eIifzQuq95HZRMyi-hj4CLKup3RfmsCGm1zJMbDSh4i_UNAwqc0HFuoBzVfqrTtHHYsNaTZnFkAp9gjhwdSolGkDDpJZ3fMzO3tM-AlBSu2ywKmI02VbyJG7xpIq2iNWp2UCrm4WIoeGBTlAWVejNZYxFLAV03CwH2501MLagWB4c60sUZ6G8_b6xWjr67Gfh8qkIoVmNh0JSZ6zblUo9jEun4Mrbxe3U4BgKOp__yfiOcOq77p-1zOt9sfZNLUhw67-JWD8w_RhYcCWLFIAT7iLiYN3GTO0cxoUoxYQyp2ErOc_nYCvRWC9oPWo33jKTk3kpvo6iRp8xJatbCAkdvRX78nmmQXAZ_bnrJCDVJCtnnBPEIyawQHQ_Uhqtyj21yClnTUf0bOv9e5qqwMJN7s9mJfFOpZnWmOtyiVwwFYGG78zDw3iWAekMXyW38s8y0Cz-ui5qf5U6uEupbdncy-D0ZLNmzJW2htWPNXY9JSWc8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672843d2b7efa3-75818432','','','2024-11-04 03:47:42','2024-11-04 03:47:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41364',0,'cd-form-entry','',0),(41365,0,'2024-11-04 08:59:02','2024-11-04 08:59:02','{\"firstname\":\"jon\",\"lastname\":\"doe\",\"email\":\"tijihen333@regishub.com\",\"contactnumber\":\"01148336917\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7RSh_PO4vrVp93tGzYtWefsJK8HzP6B87awJYLaj6dq_0KA_UldqqvJ9H4uFs2oG8kSXQD5SHLlaNNXcCD078XYUF0-4So6YMBUAOpeEg0Y17EhJk4lvU2x1h0x2gvIkQgFjD-z4CR4SKetEwlXAkQtfVYr5tWQiwqO4in_D9BzPUkwdn8MzEfTrvAPWZnPZQHg5IyBmk9R6we-jysveI6xFwHOBt8vhUvva1T4CPYbKqCIcAAz3KTPu6gL0_YlQvqP6iqpLf6SLq13xcUsxp5XJmsWrvg9xhWP9o88U-K2aKShyMTnR1OKMxZF0P2toyLKvJ7MGlYIZCUS9L5YW5txcyVOktzJirFb8R5DspKhf_Q58wIumBHpQU_4nfZC4Beq-dOpi4QQrcU2RvnRSiLxFbKy2LbjVBfCv94qqTLbVeZ594IFfDIj1cd6vpu-BAref4J2-n4ifcJl1v2GVjMVTyEgdFoAQjjHmF0184j5GmxLLeU0gHFqo4lz-GjJfEVa0xzjoRWtG266604bby48kaNc4GHh4NGRf5Acf8FY4cs-IWXUQRXooYo5nfC1bE9gHneyMV6DqxBzHlIZOYWjaeTd0L5FHmn4sI_hf06RH1cyep7PTBJR3qCPrFUuBIG6z0zsSNy7k2ZX0eUYIKo1Zhn95MDhJ3nTrRG4UvNH4F8183os0SMzZs2LJUa4uVfdhrrhizClWfkFFCNs9RI2Oi7Qfi_vdLLpCgqU4ZyL4cWjO-p4mpuvQT3x5UIBVKScDC_K7v03DrGLvV3q0Uak6BJKWW5ZP4tIl7FDyrbLTCRW7gvrqX4UNv29veDouHhhl380E6JGHfPxGE082xpjJkaphC71-1l9jZDoYkMNSaVnI_aJUfytCpL_6lMu7xF5UwI9FjzG0sS7A166yqMezrOytEQdnaxEqs64RhVQT5eoWM1APc0WMDHMgB8bwopfyPgIjfqm9V-WsJFpTAmFm5THTk-iLyiQxYS67chOq13LjhV8SXcqcENM2GnmkpEbNxKtZMEz74od0EXiFcxtHxIeT36Q-oFOVwX3q2Z0ncklPPmxWphUnl6msqAWCCp8gFimgwNpfRSigLdilA32LFK6Cj1jZkvTPjVgLHBLqXhdXtB-TXZYydgGLrEcI0uZESTW7cpuekzhhfB7vytoRXRCRHllQmBF_IfaqyPMCwX1NiSYwavYrlLuvw7ZbzZ9yuo7PZL_DRE5rkkpBoWIXE7urlN3psm7C7f_9FMUUd32UfpfeRu3ftjJZiVw2c7SRiaMoWnQEKSnXJ98fxn60o1DTbpdEEMAZcLB5QmYIWCEUZD-KxeLOJlF61dl7pYAqKCJ-35FxZsoTVvUMQjnysoxYWsxm_Gv84fCxQozfONE39Z4o5m5qSHburgs2n5l0zhRc46Yz-xIORcR8BB8CX1vJiGxuYKyi1xWsAXEA56temGIvcAjy7ajTDTEAA5Tu0P6u9XlkxfLtMF9IRrU9ot4HK0NXjOREaA6Pb7zEKHFC62A8s1XKN0XSa_rHirjrFsqS1v5MlftfMtUFYB4p7pCZ2G1i9qYsuqIGrTO1T9kjgq6xC1sW63W37HqRR3-dxAkV_K7oFVyap1ZcJkeVlRENXs7rBSvgtIBePsGWwWpKey9PeICdDPEQNI1kRp5S8-GetAI2fHrjyPq8HUsxUWy-rRfXMP6FICsUu506dQUa-NaItuQohyh1lr3tcHF1Kirz1LsyjwtBBvnK-qI1EfQcU10DENYXKOu_7gftkaXSVV8Ac3YY5QIT8kQ0A6UPUNI0lQbWUEqrOYZbIHKBYKZxwxVmub03JNpduDRmbOomLhMKtsEVdX0OZrVeG4g5xDuDYk9lZ4eDE_kVa5hJ_wvlF7gvtv3c1ZRlYRbjC9jUJ4AJzOFIg9S65ov4kQn2CglJKN-nnqxNW2tOCXEv3sGcqB2pbAoIQ6ragWQRUN7UmNUOAInvVwFe3A2JBS3Qu2gBGpDtn3MXiTcxWgGg1_9REggINZkaZL8b6hdSbb5Kl1yIHq6uuDVdWbTc7hg--swWMKBnixtBurMLvbYAzfR36i97IeV4zQwImJ8T7kgOjdfZOwxgp5utySFl4-WaHMtL8WTge1vGffkdhGcigkTuipgHRCMiAlZ_WdBEWMev8oHScC7qnszQKV4q82mvDcwz0z7qlmYb0XgqXXWti0YWJd_ThxsVR9ukuYtS05N8E\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67288cbc953679-69836880','','','2024-11-04 08:59:02','2024-11-04 08:59:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41365',0,'cd-form-entry','',0),(41366,0,'2024-11-04 13:14:06','2024-11-04 13:14:06','{\"firstname\":\"David\",\"lastname\":\"Picton\",\"email\":\"blueelephant1@icloud.com\",\"contactnumber\":\"07983620754\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA_qG5BhDTARIsAA0UHSJ_6adHjjFlHX28L21IPHc_2gxT5F4cxeuwh6YvPe3QrR1Drb3WS4caAqqVEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7lNs67fuDMmmYhDbxOKL5NkHVcDqXm4x7i0d-8VOtHWS5Y-Euk7DF7RryeHK8LoalY_GIX6cWVP2LADOzdDhB4ZKTCzuZWH8gTk8cGwQai0LeAzqfDVpuaDS3p5Z6VpnC5En93Rq35i1Tb2T2KOHkjb-HObfF6kXUjbdPDvgu7CxlwNqv54AQbJZ8_QeYWS2Bsfgwe7qo4EZDxrkzDYV-R0kHefGO0CxZAKM5pia4KG2olwSwV-chUzcvMJQcpqNTD5KbvTDMi_cYd9ZOXzDCJTHLGYEzweZpZSew976hQQ8Y3zPUDCjpQcif3CyPsbXnXv_ooRv2DQPhOVq2MFyMWekN2l8gT74pvUNLQjhpWfTwnrFKdLAbxcfUSY221-fp3eWuYrJ4TG0LesFeYdOAL2CjGbSi80Ns34gvzEG082N-1QQ5AYzGeTekvaqxg0t_MdvRKDyNQXeIga7iSN5IZo0lMiBP-2BEAcE-2fCvr2X9YaddXDT50hlaeTIUsMeh8D5ZIsPZrIIdJtEW7eSYBKJ1P3JQq_tiLj5pYzH2k79XUps1s4SpTS35QYABWBr7kv3eeJVfW49nEVK-Qx520OxeIL8jViFfxosfdUm3M_EdbznuWKT-HOSOL8Hr96aFk3zY4MZebFaaWL2jdxRkQc-bZovri4qkWDOOkJb3XRqOXpo7kTCFb-2MKgtYJoR2tjUETe9DnuMJbfTiBRKVGyPdsSOLUootCWf34RxkcuSIviIcjcQeLhzTWGKo_9aOk8Xv6tfq3x_aKNUqxU7djxuYG_KCbJt24TO718Q_X8Tdot9hFY_UmqA8gKjc-tBqlEJZ0UvfkoR6RLvYjcBm8STUmLEwGj1f7yKSbfDmViiM3y43we8G-mge3u4CxAwO5CMEMPgq3kDLWUsQlkApIQg_YRhXg31R_VHTb5Gn6Djc2IzX4PALb-EeQwUqWg7GA4ZWF3yLLxauTiAZGqcaUxjDjrFrL3dSrCvT7MYuTdXzWAULikNusyye4WdnStXI-hhQqMMyCsbH6E1cqTkHP8XR9STESrVOQiCqdQZdNepP-2JBgdYRCRCbwznUNLVYEtFO4DrpxGgwZgjriPcD3s0Xf6dMDKsS9mYO9xMKBpxLjK6aZRUVSIq-IN5jndWXsunNqnWl0zwFYzV65GTNuz3Lc297doA9JdiTvLBsBa8Skfd9ic18OArT_MElK59nqWbox3fZYN8zqVEmczW35gk7NY0oTBEVb9bGF2mnvDgSTWx_2z2pXsIPx6GijeMH1Scu8WWAlG-yD9BUq9yG6Jky7srP-rK6zdTHkS-rJiz_Z-3yd1xRUUMze_u0HCANBtUvKe7nQ9ohgPSHbV8NGWOmlCe6OIgIRgI-8ZMG0UIPF42UldxmNHTpdQc1XviQbUpR0xOYnfqUMxi8nAsg_9c1KaE2N63peVeRows927aoaus1HRjkwSNXQBE3uJle80W7MQSL_D1xrzuXtzftq13Um03Y9SLJeeR_-R_xSr8_oRFvs29dJKTiO4AXVrXgKg8GmbTRD7-Fukl8SlHgCNp4txmkpvbyJhw29j1_NXgb2wIE6U-indxQX2deouLLqKklIsXMBeuT4ZpbXRNesLOorT19UvBmk4hIOKvDkVz2TpsxBBU_rN4OLCOOzyF7Gaq1oc75c0pb3WixR8MeFp8zY2GAEw7PbendAfmXtgwwq4qEz_1Zs0BMFZWNqgV_MPRmMW3sG5H88b7zjuVP0eZ-9H_ihwnC9MqVpTN_fgZRRVNHiGmefItowYhTH9GB9XxFX171QhbyjW3Wn02yUoktcOHbPFfHe6iE4C-l8C0OwmKb34I3aR8DmnBuZYhtyWAzrl6rjQVaazR_EikOYlweOKHPb9b60PLjL9DUAUMb2WFM1PEcJKrmLHDjIPAtIOBWnkHRCKFnxbAjOSykYjvxee1yz5Ld2zQ2Ww797zIwQKTBs5JLIIn3l9bGL2Lvwt0JfCqtcquItZ_J6hSJjf8C4Jw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6728c895d06474-17934500','','','2024-11-04 13:14:06','2024-11-04 13:14:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41366',0,'cd-form-entry','',0),(41367,0,'2024-11-04 13:15:48','2024-11-04 13:15:48','{\"email\":\"blueelephant1@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"6\",\"genderidentify\":\"0\",\"regionlive\":\"10\",\"currentpostcode\":\"SA31 2JT\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA_qG5BhDTARIsAA0UHSJ_6adHjjFlHX28L21IPHc_2gxT5F4cxeuwh6YvPe3QrR1Drb3WS4caAqqVEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4AfMFdCk_ovmDpzVNMpmzxxsE_EwoeuAaUpm6trmIyrbq1Cxd3bM7Kh7jXEZvCJnyag38SBBJ2AyK2nBVpw6IeWViDj3xyC6SQ3oaFzgpebDkN1NXzRGGsSBVcb3ZpCEQAneo_BCuJ9h4y9raHhyyEzz-8LrJcyAEEayFghypU6s4dARMxec_YaIwmJ_bfiIyRwV3ze53gnd2uXpoJqKrQR0AbgEdPVENlLloAK_nFVYWqQp2dJQUj-1KctoY_y-HQzRF0ugyD24rrsv2GdQSnHCB3Iffdw6So2m_CQ1-UROB43al2BgcYRe-uKVK6A4YBMYTOOD9vTTpG4EXKPOGa7B25aDwHRHNzdOIl2EPmj8nTxQ-hXtofdzzZOx2TZ_nW7ghIqZwyl9DeSP2Q3gv36hHUG7VTcznxaI7prNerpSH_vI9sC1nyVPrsu418U18-h0mBrRPFr0TPOcZ_U1BMOkHuFL3KEWVEpd_1vPWQ1lmRpOSf0JBJqyfrvODRo57430SvfoN52uUNb-2GJzs24J1fD37ezgU6AAQT4OY85mRxXAC8Ly5rRrkFfHvZVEzkP0N1O0ZJLoHS6pT8_ldLa9eEwWKatRgTlhQwce_GAvfHbiN8QAlrAZE6Kx_O2kP5BfPFvZx-IQ9HICdtb9OLoeRYcQP28TjaEnYyEajspiHvfHHortet0F0KommnQ0PqD_ypA_37xa7iK-QkICEg3qm4F59Mk6GREPDjsz6I27j-6x_3VZjt7h4oQxzidrHWbuW9CHz7sQB136tm4zmR_2uYTO2cYiTvVIaKk9J8bE_l3s9UgAEawRvYIQ28GNF3ThAEHF3XeMm0pQN-kt4Gj9jOVfRyobiJhOXRh2yYVbureF5mujfoX9p2iv4ycJRpNQNZrxPFy_A7RabHh5XGRo-YNzNI8AhzbV1MoegbliturvpsrsulRR-XZZElDY_nRd4Ftlr6Q4cjzSB7ykXJK5S87XY5Hppn0OvsPd_Wk8AVcA22UBvAsXTBtL7VbtK_hb9ADSy0s5-_q-Yj2qfY2rT6xztMMGY_bbTTamCTPC___meE9MuqkUeQfLHpnxcAkQvfFD9RHsDuBTnCey6lRdfPVTh7Y5XxzU9yNwOn3jQ7hS6uOvfRmClDplQikLfR9d34ydlrjNpfmnqj2yHW5AZfL5Ys7GpYGjQzh3y83MTA3XqN43kWdytfI6JI40oAuZMhKYzkPcr3QHIOAiGHBi7gMny-LaegpssushUh9GWdUWtut6xkbJxZ0C_QZDj55sX-Aw-mfMSYirxe27sjtqgpTeMGYzzBKdhKYl3c4dR_YEWcFGWLkoUaN0lHIAFBPrvRrFmT7AOyLg4GTIVrt5hx5QtdKZc81toM9b2zgYsDDPZPbm7Rpgtv72XQIYcG8bPRTrU_4hgsJmww0cftMnfVyCtUv3pg_9XD1LEkpN58a0vFJD9_PrayB2BNiFG6ffxZqw5_jY4SNT3QotxnNdSy7dr0X7fmxY0gjGTIEOv-HkQX-52_kIixK8heAdkzcFO9EO7Ut_N_tuVx6iNqHmH1qFjVIlArZL5ZlWR73bKX6dJQlh6GYNq-dmBY0RaQQ3FLtWsRSE2eGZs595gQhpckpynQR4IPzEb1K8RMbbW6tQ1HplEcruxuq_eUPPFshwj43Da_d2Y1XjrTE4VYZcKvJ_cFVYKU1avsjVptCSxlCTpkp-XE3IL7DURETP06XRfrM8Na95shzUcV0I5ayWTt1L2EjvMA42mZOpM6oH7b_ksWUMUocmBs6sP7tHm8bd3rCS2lE9RLGaibTss46iY41UiR8hgFrhyaX8i82nxuG5ukm_-LLs_Cf-QVkt_eZrHfwpSFeokMZwU32mwcOI-Baq7501nvPkplAYYdxceUuNqG4RWBgWMf1pt_thVOBpQLGlM3te9iUh8kY1RgoyZ4mSIxzcKpTNOwsrngoLJy6A4y7zx1VtYAGeqGWgqX2F_V_7ugxTA6v6l5RtCOv81rMQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"14\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6728c8c0c9ad16-60637500','','','2024-11-04 13:15:48','2024-11-04 13:15:48','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41367',0,'cd-form-entry','',0),(41368,0,'2024-11-04 14:53:28','2024-11-04 14:53:28','{\"firstname\":\"Artemis\",\"lastname\":\"Raoukkas\",\"email\":\"raoukkasfurniture08@gmail.com\",\"contactnumber\":\"99366269\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA_qG5BhDTARIsAA0UHSLnC6sguPmb_mNb0mebOUDUHZZ9YbKtAtjzri0aRb8sjpA2muG_FdkaAgWYEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6C5f1ekp_nAKyys1b5Ye21p5uv3s_x8ubVJRlE5RGKmziUA59GOQNwBDfAfGQtf2CoxCPnj_QjZ94VX0o1nyIwll7Fqyj_RapGfFPifpiTIJ3Jl0UXdc16a4PO59nY5Zpx2W05RWcLKli2snFNGwhDm76Y8SStJRowEgjdurZMp6o8PmLGFjzXxA8fhEHEG-zKDlmMrYDifNcD_-L2DNwNqgipNzxqBXE8l1PPqMIu0aDJKtC5Dw8H23TkLRU-4o910INlGmbUzsqUvImlYciH2jv4HO_1Bhg5plTRmZudfL5tcYGlXH21qSrKP4pw6zUz0js6Uz8X6LhO_gh7caUhKPoG425f5sXejTl5aNfGAQdq1UhUVH8az-Y1ZfluWPyqcAXbbGEtGF8z5c9NiksNPCZhbf7XmqYNPg65O5wp2lKSnMeiCyzs7yeIFh3PnAe0VWNAaRP3RLo2nMXm8H7asb99V5Yk9bqto5cQBVTsseTcQRP3zjqhbyVGAecKzV4qKWKWJu3JLHwkOnxllLgRSUqdsHLCRgISf2gKnmJIowpBw7_kp1iX4loT8vci-Q6CYTA8nSJe9kzvtduv_Uvx_17YxxbqRnMGBRrWoIaO6_l3ShoYL2v4TVBtt5rWnyEtVbuWAS7wkgY-RtccXZr0JjKNjktHjpb_PlojIlrbszzJx6n0UjWeXezXlNQk0QjIGA4lUbJwFFG6BAwVPs_VDw3cMT38-EDOQTuKk_J91gxp4867nYyHlJMmLNZiaXQqCfW9HgIefPPBTJqdAJIqGFb-WWoO2xBq8tKG9IC0T8yPRCR32Oy5Uy6j_dBXSzFq77DKRKKq2BWLoH0b9Uk6-CTR8fuDOZULxvYpcI7NcBAGoHejTsGjyziCl55QoPjD6KuUITRsy8_hxXMmlCYMn6cGOnUrHZ8h9VLQQx3M9Kixh8SiMqiHly3Lh6tDN36JISPzTP-q8dx5vCt8HvqQp7hKUmYSblJaM0lExYqTI-TCXOkHxSaqOEC2r8eMa_qCI4g2PkQjYt7XZgBZUimSq1vp4iYCV9qqulcOnln6X3DdeN-0OQmWB7SVuABJIvjyHuLc-sKJO7A8NstS6PhmzT8LlvMYvqJd123moZ8bhciHkEbkCV76O5vbUts4fDIn5eLeqvwz3yF25KBL2K23qn1wwput7HewR4DzHEX6aBCgFAV-xYZG3uyEdpyvC4KM8MvKLKMHMpZerPvcOZ4NKv17bg7tueaOdduCWhtPsjCKuyCcmJtaw_A0V9hXWKk4_v9KTg72K865xAsj7qXvuWFEcitLXCYL0waU0KsIarM8xronvVhDjAZYEvVgUJedQkyyy6ZwPcJnp12BUJcL7qHMu8u3cQ_dq9AY3Rki1v6EuMe1z0CxCPc33T4ONR64a6gaKUoJW-jHVxevwDG5nITHrVMs-wbYdwENy4K6JAzZSQ3B4kVmPoJB7Ys7L7yjw1YeJ-tN8gTMedE2lKtSh712E0Fj3SubP5nUGrkS1xZ_HdZEQNnbOC1rASSoHnOExbMJJYX0ssFxKiEBQnWZld98-bbUWuNrbw8fYZjmarp7ixc4jHo765Myw7u35g7ycDMeWKTdn72oviW_c9fCOZKmI5R_s-TE6dnawWMi7BekJ7QHXbSBEcodePZM-EFBkULS0VqvzFdR0djY2hMLQo5NF13D587v-4GbfNVEbey95197l_MljzrGPZMMZrMelSKrGHng6bXcR_VFaGrYbTfrfq9zJXiietg-54a-WCjDXkoPaEWLbDHlvqc0--NRlJys4X0JQJ4pWWBNNO91ZMYPqSTjH-YtWcMd-_JOumbEgeLqpOX6lb7OM75j16OUciTGSbNaiBgxqXFaNr07VG9xoQxoHLvfIT3z16fhq9JAj3c4JmSD88lJ0H8OamKJOMHIg8-dwIFxOc9EvdI_UQYOARS_VH0HJnuYNYzga_sQI2xG3aah5ZO0WR6G_C_02AzTWx6OGXLfK3JeNxRm4hCq_A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6728dfde868779-56984498','','','2024-11-04 14:53:28','2024-11-04 14:53:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41368',0,'cd-form-entry','',0),(41370,3,'2024-11-04 14:56:51','2024-11-04 14:56:51','','Martin Haines','','publish','closed','closed','','martin-haines','','','2024-11-04 15:05:58','2024-11-04 15:05:58','',39488,'https://biomechanicseducation.com/tom-waldron-copy/',0,'page','',0),(41371,3,'2024-11-04 15:00:23','2024-11-04 15:00:23','','Martin Haines','','inherit','closed','closed','','martin-side-on_','','','2024-11-04 15:01:31','2024-11-04 15:01:31','',41370,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Martin-Side-on_.jpg',0,'attachment','image/jpeg',0),(41372,3,'2024-11-04 15:01:44','2024-11-04 15:01:44','','Martin Haines','','inherit','closed','closed','','41370-revision-v1','','','2024-11-04 15:01:44','2024-11-04 15:01:44','',41370,'https://biomechanicseducation.com/?p=41372',0,'revision','',0),(41374,3,'2024-11-04 15:05:10','2024-11-04 15:05:10','','Martin Haines','','inherit','closed','closed','','41370-revision-v1','','','2024-11-04 15:05:10','2024-11-04 15:05:10','',41370,'https://biomechanicseducation.com/?p=41374',0,'revision','',0),(41376,3,'2024-11-04 15:05:58','2024-11-04 15:05:58','','Martin Haines','','inherit','closed','closed','','41370-revision-v1','','','2024-11-04 15:05:58','2024-11-04 15:05:58','',41370,'https://biomechanicseducation.com/?p=41376',0,'revision','',0),(41378,3,'2024-11-04 15:07:39','2024-11-04 15:07:39','','About Us','','inherit','closed','closed','','39172-revision-v1','','','2024-11-04 15:07:39','2024-11-04 15:07:39','',39172,'https://biomechanicseducation.com/?p=41378',0,'revision','',0),(41380,3,'2024-11-04 15:12:20','2024-11-04 15:12:20','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-11-04 15:12:20','2024-11-04 15:12:20','',39245,'https://biomechanicseducation.com/?p=41380',0,'revision','',0),(41381,3,'2024-11-04 15:12:37','2024-11-04 15:12:37','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-11-04 15:12:37','2024-11-04 15:12:37','',39245,'https://biomechanicseducation.com/?p=41381',0,'revision','',0),(41382,0,'2024-11-04 15:15:53','2024-11-04 15:15:53','{\"firstname\":\"Susanna\",\"lastname\":\"Christie\",\"email\":\"suec5@icloud.com\",\"contactnumber\":\"44 7957161239\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7PD-so4Cf974tf1XhPwsyi64t_1O90PvaMZqTCIKXHzjFiBpxeDWdc9k2VjwDdJNqmWK0t5XR1Rv_r64ewx--gYVB9JaZNCtIubStu80JsuYFb8sbvvLEB4_uz_RWqwPZNTqwm4pithBcyqLlC0U5SViOtgnrWc88AdcFTs2MKR7J42Ix4s21eICt_ZvjgxuvtJ0rd7uvpGA-eak2mUY3fzyMHfoiAqICoadzwM_jn0dcT7wDhiACAMKuCltAX2HYsSPohUzsLpq4at6-HhWa2r_CbZ6dwIYCQy_EeCwrCM2wAClR7MpHhXOkZkN1ntcb80bO839ueZvQ4LQF_5oEqc94qEFNliQUPVxKQ7uWWhOR6GfptlpY_sbdxnjxpo_-EhG5ofoQoCan9B1Iz2h3D6T0IcJxoBLy5a24nyf7IM_JNvpy9YUFnd__GRj31XLoooiKJwh39o10LDzY_ENLmSewbyWh4SuzTJxHd4OgYSWyhZTMA590wAFgbQp-mH8TtoGPcX_RYDQ7fqmWNuDIdiiP0QNoA3-SvpaKOf9iSnFKO5gehUVM8FpY25qiLbdRbfs7aPtAuoB4NAfMVaVM3HZQyBvUou7XGqHndf-sxGEI3iU8BojobhbLCcDbFQEqwk2hcOJ-kUHSI5A7uY3ewnEKmJT7FPdC-E2iHqZ0w5FpmxRc6m4XqUiOZIApA6zrXN2jVOW9dFeEMAC6iUDQzogRdI_16m6yXC4SVYmEGliDbCLdwYvz8ymZ0i6eqiZ3wBnXODW8Y6nGmS_t18VS4Bwbl7WVQRVegxW7KOpzSR6xjVFOiTo_4VC17GcU8QTuECjnM9O51OS9F2jVHs0bQS2tPdNOEnNo5WgznR9uTHXj-M7fFu-97rruHRVfNNeHv5D01k5LSuF47Ip_FziIY8FET7MpLXlLj4N0Yz82AUWbxjcGb1uXl-8CXXplKu2__eahGWY4x3C_ucwteZCCAv2tvnMLd9j-3iK_6rbgB6-RhW4tDLYw5XpiIefNBuEu7Qbo7L_Axa6AUlGw0UZ27t71Wsr_lsKRBzgKHItJZiT4642Rl42RjLL4lMqkWTkyfo0Y6Xy3Fu7yTw4fyHXno5qwcxO-9dgZcGKrN2ZJrLLBkgXtyIcoaM3Qq-TNINnkVnC_EbkSBAZetVnOx9FNXdFo39XBwiMLJKz2uKs-Y2cCULlJeQ4PJ1AsO_s2pbppd9tYa_2cimwN6YueEqMpDUynmMv5sUcKCyjOSOSHo-_fO3P6R1iLFlOXsfL-08qPAKxbIkChXhpHxn4LuQte-h1i84uB25HnD5-LwJ-CPtIb642Kpmv6w3t9E52AxqkCP07W2YpnrWJnYC6MCGLa9TzlLZP2YH8ycs6A9vS8sQJByvZwr0ci1O3YuP0wgBnSONv-r68JNPCAkx0LGdAylYM_TQkBM83gkuDGIlfra7V4_GcPhOSex54TvYyN4L7-WICKo-SZemllwigkzT0LIJt1DAXw-HMS_Y-sbGV2otNdQiTYaLtOuPey6j4Lr-YDwP_CBZ4M_h7Dd597RL01uEHzKy5QfFb8kSyBzq476Is_dY0vB1K7L2-sIzOqPVX07Eaf175yhEvZ6kGnUAYeiZHikuf6OIx868oU2wouGNyg3Hdy32TuYqanfl09OAZA00rfxvv1ALlaK5u2OoK4ZJpSLO66Y8k7AtNRJ8Ce5B5-n74MCvGHoyRxJOPyaxwYkF5LHeLCDBWKVNXfnizX9jN8i6EVQEPW-8drkV1tHyT8ReLbDnp3ybeonKYLciFeOjwA7cK6B5oDcLh04fotJeqZkcl4Ih19nxMglE4g0E0NYlXm_8MDVPqCwH5EWzNFVu2413p9pPZMj1jcEzJ_w1PafX-wS8Ur5iSY8-WY7NDfvC7pOQzw8bzNPpsvnQFzok_7WHh4GaLGWFu75sQ6iNijijJYgzOi0G7JY8zuGJ240d9sywxomYyf-Nob0O3_nk0f67_ixZ1YNIaHqVwYYeuWIBG0U8MgfxlfltwcAzItlYoqJNQGT1SUV8nnFWVpDdWSUpGrV1GYpMECUdTADc_Gn0x-0b0cUfZhtkz7foDPx5TtH4tNPtvhWkFiYIazKr7Oy\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6728e4f01d8045-61648650','','','2024-11-04 15:15:53','2024-11-04 15:15:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41382',0,'cd-form-entry','',0),(41383,3,'2024-11-04 15:16:52','2024-11-04 15:16:52','','IBA Membership Info','','inherit','closed','closed','','41280-autosave-v1','','','2024-11-04 15:16:52','2024-11-04 15:16:52','',41280,'https://biomechanicseducation.com/?p=41383',0,'revision','',0),(41384,0,'2024-11-04 15:19:15','2024-11-04 15:19:15','{\"email\":\"suec5@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"6\",\"genderidentify\":\"1\",\"regionlive\":\"2\",\"currentpostcode\":\"YO26 5PT\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7_DgQK82VANyhHrv1oQIw7djuYsxs8JbzORcaMX96PQygSVBkQ63FeBqZ34T9TCkXMCwDH5jj8u3zfpVj3AtVdk2Wa9OPLjRREvwuEkY6G5jWYlVfiLI7s1d7gA7i-9WGfWbeu-mNpKv-jBfjke9s5h_WlQFMXuNSrNUbabRfdWyz1HMrAkj64_DYWiRYCQ5Q8_bxrwUvT4pdmjz6w8P3XH6QNiMbYLhUJmC3BQZ5e2ZjVq66DO3jaMUK6c1bZTnYOTYHRNFC3mLSXzWaieA2WTMGt-hINrN8O4RMFc4V-2t6wrq0jjINGWpqtg7zcRRzDMA6Dy8an82NQH7AdCl-bW93N0inKXjBMrsg-TDQfRVYq1kz_QAjrWQlvUK9k2TTb8vpIPtpThiwyJ8UcSeJOrC9RjRC4tiiFmy5AI6mRt-SQr82XUOimHiEZ7ofNrgompv-mvTk0LiE-P-sWmEIhJRrzP_gGFMs13CGVZVEJqJBMqFFh_w4wGobteIFkadxP9ICML-3EC4DI1ESLKgPd7frFor6UQPROf_WmfdI8J8xczJDPmJhwf0oXxkHeb-XwvekL-ZINnjMlcA6lIEHMC2TjZkzKTb3e5DdKlbPH5th5r79wfaV4dA_tUaUi7nCfEtCuZugarltTrx6MGZNXTcSMqpOkeci3D3b6Lv1tbGb9c2PIfukxmx24JYdbBhY1fLRCAbiFB0HBf_Bq7XIv_pOWlHoS6V6R1zfBe6ZKvnfArlf9eKw0SpvKEZItrZWsc4ja0QDIiyzTvUIllHYrNFtCBS_AdfaOS6LLVQ3XW9Dsi3elVLuiHs4oZ-BlX4tFSWZ3Fv4QLozzAdH8ajs4ArPt_wBwI7FCKtr1qJtg4rY7SE7AIHDupjwfQPkUd9pb4qg48jhe8fjBbBS2VnWSuaJhVAHpk3qKi5naO3MUIxCtXLiZv1wvL1sg7_AnoQHMBE55V0gOEr8nVmTfBeZxUY6tZZHy3MHAyC9qOF-n1TL4Y-4rP656ycEY6T-oNPwr0H_ks946CgZw5UbdaLvITVdbweNkK7K42ugu1E2GhKj4za7EX98w0L7i5HmctmA_D56SwRHytKdndy0dEoj_qChO01-Ie_iOw2w4cWkbjSEcG4tN5AnF5UOkZsJevdhufBBETtNprvzeXwyLj3704AZx9qvyx3TPm2omxVpmxQLV3cFrzgJj-MTTFQdmB2NVr4wjVg5SH6TPJD-VdKxaGb5TiFz5cA752FOVrBDMjz80i8fy2QgD4AxxVnmQRqdL9ULc-Z6QdEfwBN4RZ0bf_wsRHj0NXD1g-lH7XdAE4-LbfP6UDXW05Mhh1q1dR2RIpHDtM5dltutwHMcN99x8SfkIa97MVqYafUdnJzfM65ieYnf0wyhA_jvckLCZ7UiXaccKXClRalLI93Q4R16znb1tiTFeESD_dl8uMM7wlzaBQMr2ghAkJbXvrpuao-PH7WZAdT4MDzTzSI05fm96Z2i-Nx3ZU21yOWYbGifs-OgrTCNvFVBGGIQTOlGvjn_yvIZaQ7HKWMm9p-cXKK7EzzCWSErUAjl-fW4DrMiXVTYetNajQoUnWnPjUh07_T1aXYC6ytcF4EsPY4SHdUgC72BLWOxpp2ykGd9mZnhUEOj3BTauLQ7CoyIEI1MUao8G5462DmRz_z1GS-rSBFzllE3wQFOH7guOXlw4tETdBIDTA-MqnMrxpEBxTMkf8S-XgGghJmxz41ADCDstPT24VKEB5irOemw5tuj0GAfBDxVHpinn0aeTCiItR395I2PxVBAhhXkAglaQcWWktRTLMYRI70WEa7XuxKnWZ6ak1TRfrRkRzyYIoHMp14mTesfQ5xJa7wnOruSQER_HKVWhaZvGeYwE4BGo7-0iKRC5jPYaaJcTpOeEeAIungDgCohiFlY6hzfCNsfoveeqlSOhJ4Sepf0MtZQM7cgsZhzPV004WPngG5b_BK3bTBpZxy6BeEp0iziLFFl65YSSLzj-kMT6db4zrCGdWU-uNKh2rMO-rLD5m-SvH91gvWzvUMUvKanHSvB5wv-YEDCruFfbz_1aT6grx0EVUqMHsnNOwxvYiaaV97AXgYYANPihVBximUEx\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6728e57abfcf37-41703930','','','2024-11-04 15:19:15','2024-11-04 15:19:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41384',0,'cd-form-entry','',0),(41385,0,'2024-11-04 17:36:29','0000-00-00 00:00:00','{\"firstname\":\"Tapiwa\",\"lastname\":\"Mhedziso\",\"email\":\"spiwetapiwah23@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uSzG5Iu2mtRnZ_yXFKLWe3k&amp;gclid=EAIaIQobChMIm5W3qZvDiQMV8ZqDBx20IAzCEAAYASAAEgLyZPD_BwE\",\"recaptcha_token\":\"03AFcWeA5rp4oVsDv2N6rIX48fJMJH4EDpIeURlfpha5V1L1eb7rX0iHgZFNitW4rW_8_4UmEBAS_sCECj-MTvrTiuVkPxXPPWA9m_5kf4lYqW9OJAy610qKxyn8ouNa_keyoUVtWgQGvhQ5Qke4WAs1_F06Q2rJz_nIevOPgnHfLWUD_MX4lFtEOOuJomhjiRpY4zIEDEUvJKRmsePaJDpfZ_Qg7myLt9NRB6HdB9uJqboZcTMeiE-Bn47IwBkJZQpS5_zdH5TgrBFzSRWz6EdgM0CqTkjSviaPkmfvOEon2FYMzZyY2yQXmD2pS-S9T-usORIrvPfxx5vmHgui3E7mTEXHyi4mTheuarYjSAQ1Y3XY-t2GjwRy5re6kbpHfpBFFHIbXOVMxM_qrHb6kbKUJN7_A0VOKZsaUGGgXfIYwVQgfBvRTCDGTE8Mxs3Lx0HaI_VIqIa8bUhiL4d1yCNzfwbYkSxiyhbIBlgM25GdmqfgECWIpafR_sGQgcEL9VGNf8Cq4nA9Nwi63cISuA_G-9aw32IW7DCYuzTlz_WdHIQHPkbv6BLrtfnGgRQWU3WzR2vcwhco62lGlgP87O-4g3dtgndkXoDoefNwpdzpGpPGm2CUTrien94dC6s1fM4LsGMhJbvJTEEjuogE6jJm-oQejyAWxiPVTOPBmYeP6n-4Bs4_0o6FWHVX6SN3T5Y2slpdZb0MwB-dk3xLS3IspKLQQXhInIspIJe2db66G3xBo4macGZwc2GK4MckjIOFOtPwCORfk2NZOXa4Cwg5cmjJX7uHeJO2I_1j5NtBq04rhDN1pZnRETtZmXmxvl58ULGc2XkHv3XAbTw_Dra8VksVKTLZgXkqWvvDLUfreCI_Glx-3KUt4pklgGIWJ_rKX5xWUp-kSByEH5ou3Ea-VydoNNkxgKg3RUe43BsRzD7Mri4iOeYiKKgy7QjTdZmP6HDv0olGuGO1DrEU8Iub9w7F46JhsE_rxan-vDlx2BijY2BHcRwqb0VoGP_iWQCT5PlZvVOeEMcjMQFugnlGc4ONuoA7XgEKuWX7irwoGHzvq4ZcyYKvaNeeXq8r0Xd766XkuAear0ZAR5jWq6f_zc-pJO4_Bm9qSZcAOlj_bBQklAvQJe_em4XEjMcm0JRaJBIRS4y734rLFX2bcnCaoUc5n0P_B1LobQKW0e5U_Pg6ugi8nVZ2Ud_HW6TANRAWeojjmx7AtDO_DXNY-WnJnS-rIJY05mTnFsTK4cMJsXz5m1jjKeBNGBb2HP0t0opX1XQdCDi4eBN2CrrkUv3EF44S26usdzNtlOuhwmjUAHW04sU5PMwrPNfutg7EYzCTOx-TGLl1rreRBDuFT3z55f-TlcyoSl3gHHVY6kKzS5sof39N1OpjWa3atqzKIMTy36darTtVQ8bt11_nWdqi2PbyZbgV9m941wo3t5sFEFPYx7qbXsaLUrySFqA-PTOWCpr8UBU4YEBBYApPtUCPIn_weZfiK5t4a26jDIF4cKN4_CCbUE9AC7ehNZB8bF5YYGjHeUZhIJ2S3IpBTdU9PBsuH1mwiAh3BAiCmdbzPfaJH9eBxmAFappXqyQE1qUZFpbjjOgPcYvohDjV-Eu4xSYMYkBHnip3GFidspVjA5kMSJyqg-sbph7q1tgp4GEIU01awczw4Gl1KASLwOZznHfBic5w6BPffScNHvZahgNrAeS7IRdL3C3o6TiUzfxJmyJLrsHHKorhLz3wVmZw8NBI3g3WvFJ7MxFRo5jGjR6vtIRhQ91Ag4c7tOJVCI5x_63N9AQE4NGJ4fFPG0vBiGChabxBFuSqj7GvltYdT_yTmN4T8OzqPo31ZAAhu2miGFqpQrdGLsQZJV-dy67DxeVl_mrWF46XBvilNARKAZ4lnxgovFCMUumg6oYsWoJISgzr6LpL40X5kY-L1uJ__hzITgTpc2FyCVndX9oPOzlfAfkAFFRaREv_bVhLsg7C5OPY_OLrthaklOCqWHjZM--GGJ0cD_qN5nYFKHsOgCMBWqmaIOZ9HemsftZxw7v68RUo_hUlC9GRwnIfFFuh-fvbSZPqaodHRZfkQxwPZucws7lSeRqUe-MSEjZOgG67Otf6gGBhsB4N7no34-hAHQEVkkNcpUh31oR_ZrHybY8naJrU1yH4vRZ48qrLh3x6xk4wnFgAwslz6UXnZN1TC8-ja_yCcsQFuePCICfxiXJ6-bz6vCOp4Mnq4FCODWdD5uPaXeomI_U00uULX-CwaEDG2LHR-V-Q\",\"recaptcha_score\":0.4,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-672906149cf492-37478616','','','2024-11-04 17:36:29','2024-11-04 17:36:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41385',0,'cd-form-entry','',0),(41386,0,'2024-11-04 20:01:29','0000-00-00 00:00:00','{\"firstname\":\"Kim Oanh\",\"lastname\":\"Tran\",\"email\":\"kimoanht11@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/what-is-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA53mCfj5EjYC7Z_VvUkV6zYkdwCh5sdAxwACnzMAic-UKwXqFS6UcYWikW9q1xz7d8mZ4ZLbS9zC5bP3KBfOpSl2St0L2gQAE1wzb9PdCmXBOzl71EEULzSST1cGRgsIKfxuUjK3o5kQeIwzLmnHJTuT6Vn-5sT_oYYsduSo2e8oBdWu3xMsD-fbrUWBuI0KB4e-KEBMQKZBIEBm0PicVd_TARDZ9x-WyWDfQ62rmJVamxwb9uKrj9hmuJgXHpA4iGojO48dB6CBZB4asKPSVwKKC7q63m8a4Rrc35Bx9hH0R3jKblHUNNaBLewC3NpiAWfiIewlVFBErEMoyVhIxvnl0bvORsLggA-zBo5oZnaMY2MmHH7C6SyCQs9NAqeFEtzpkCcKO7k2Ags917isU-arF1CsRAqlMo1_ccZGxXyv056ljMD-Mht05j_wp7BQEukrrsVblRwEsrP6uJwCBfE2qrmF1K8VkfOoM3dzQQr-aB0TWvWU07ByuHteM1bTzpLJah53mRxmS_i71QoVQWM-MYEcbNXbrtxTDBggJjnALxu5oG5XdzV1lwxH5FOL8Q12T8Vfk9q7PlVxv4m3-g-4oHf_Yiiw3BVbJYUb7AZktbnpLrVrdhtn8SElitCRj2j3ZVgDhk7jtyZzh4TaCPVGYG126Rv3NVmuzWER5IyUKGm51cE2fFPC2Tri8UgjppO-7a4wz06e5OU6eapbb-kE51eHTb40oF6TtqB8Z5Ca7_Y27mVWgJB0Ej0zQqjVDtesxh8Ht_dNOvgg77vWD7h7WNU9V8pNS9qm0HB6Gj1-QsA-AbrDQDHCxPY1eZaBwXrl8dTqNhPpEdqqqp9seadgjRAnTelSsTJUy-uuG3xZ6Pf12N-fiNkvO6Qn9vwzmz4dHUH-4s5lqs1zSX7mbcDe-qcH8UM3XMOK9viexlRF7mELigrKU07_8jU8xOc0rK83NlNqEanPietqQGt7fN3zfy5P1agJiL1N2fvr-U2mHc9hXMaDaqNlE-e7PwWo5loX2Ah0syELGDj-DjNVpWylI3IVksBbeDDEbg2Y8L7pQ5AH2zcjVGv80vpHy2mMWmewOMRT4_jOwvPVw3CSV0rZGBNiiagApwxsbcw3rmIefSf6PWtn7IdTK_6BKe6N4tiF4a6sTGhURrYhD-Zgbq-S6jOZqS-_moktCWKTZws-B2RAGjTFYM7MYMdqS5j6LqOn_FccdM4C2CLX0tx5R0kqsuA6tOzj143O-BIeRPoZkp0O3DXtnwfmBBo80KvTPcqVi4RNeUW8YeYi3iD9jmnH5mzSdFQ-zNWkxiKFlSmX5L6MfPHdkevN0uTIxXne_Xk3iL002fKvYmMa48deC1eTYyjBojGFEh6jLLGhVF5zS8YcQ-oUFpGd33eCn2ujVTEfXw-yIuL8TOMhYjOvbMM9GgUORllOb9pYdMQ7kpVZcD4PJPdKCoLcdnmNgm5hxO2XYl_SOmWzepyzCuGbPWZ71aOlx7RRZCOQKAuR99XcYXuwsxX3OxsDZKOE1a0iAtbq0f-CRHRLst6cbwcI2rVd3adszqhZW1tGbVk2X_7miU1cpvlqqZJNnY1RzNrHQaN0jhGCfM5lFn7jofxpFzE9KusPhja_F_oqs9BQWv_n2OV65lAbwtujCJZEGJM9dgxOrcW759Ow1ANcK4mzBUlQkF6lMq6Td5Emf1LAxUq0u1ohOlKcvZn_UriUa5ZXRs2oDSarb_ERaDSxVXuIgKgRLm_vN902UThzsD6o6oh8bfHtpJkoe2Npk1I23erm_qFConpGkq1eHb9kiPfj6_sZEADpJr36HbbYWjCAqzrQUbslWyqR9Q74zKBDb2KKtjf-3naCrPKT4p92NWciMJsVaLsxVP4DFj2PMlHuVTcA0sp1trzgHIJ65IjSU-7JT3ea7r52JA0Wr6AaiiDrTs7haQnEgh7rKluNBrljtV0vP_LJQvn0c-ovHWQiYiIMLM1SE-zcgAyDoWEB9JikMtItdEVjw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-672928196ad146-39898574','','','2024-11-04 20:01:29','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41386',0,'cd-form-entry','',0),(41387,0,'2024-11-05 11:24:31','2024-11-05 11:24:31','{\"firstname\":\"Oussama\",\"lastname\":\"Zaghouan\",\"email\":\"oussama.zaghouan@gmail.com\",\"contactnumber\":\"26566720\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/shoulder-biomechanics-part-6-the-muscles-of-the-shoulder/\",\"recaptcha_token\":\"03AFcWeA6UICAI1vn3g22UZKcivzhGu0eAzuxnz3tJV6YVL4Fwp8o0PrF9Mtf3u4COWyW-f9PJoCY0S12oJId_EhIZ8RxMdUj-W4sX-l4kFdHTE3HFqjUNG_YfVbWZ26fHbHcz_qOchKAiFVyjHm-vVmTJvwW8lqzgtFcLo6sTBMwTMwrI1tGfqxCOsOCW1onzjVumpUfmj6uXVmPqvNpPx47JVK6uF3d0xW1Sv01WKs9FzXu9Yys61ej8Nbzxkw1lJSlgIcbVVGAXQvQ20uo3f2QnnVv-80blvW8KJZbVjqkuLSbvK0ijs8xDBJBskBjSR5BGUqeuE25hFqeA2zXzWXLxEfbcADbgfcdVWHf2SL2EUUECDLZxODxKPOj--Nh0n0Md5_OtRFjHhzWfRYbp7641Wv_GdPR1UmdsbTiJhSzNa3B4x9KSrNyWBDtXdyS38h19v_IIiN3wqWkE2R2aCK343o48vZ68qRFyL2OqOl9Jz2CbS0tIx-jb-64dq4MTtVF39t5vt_cn97W_YPygANCht3CVqiiM2YVlrJbiKQ-zA0xsVjdgKUqKMi8Q4sexqHmNgK0HxzagPqPnPJO05mrimX87vO0TasZ8GLUyYgwK3S3oA3mwWsYUo9lpnl6bCxkuBGdfwJkaXonDIvHzm-ivhNhyIzCC-mk00NGH5cRUlF9ZlJhDJI7Yj7ZEH3QG1pM59BmxVvVarrWtT47SJX1vKws5NhE02Jwpt0lgfEskuhe05xQXnahpJPmvJXTQurdnxYC3-fm72J2fz3vRqgJBzsVqU-owa9cKpyGwadu_kNxi0wd-lKFlv8zjiVRXTSanYop9pPK-lBzR8UElSBoZJN5pLLgpKaiDMXKC0PkNfeMjkyVuWDMWwBtfRHYJ5jWwezI8Qk7we59f_IgMkBhoozJR6NbdV4D7mjGhfjioURThnJDZdM7ZCrcuyK4Drg-EQ2LHSfL5bu8ltCFyEibry7Tvf6I_9mKE1Zz8Ei9widP0M7JSbjBbXho7OoOQr8_FSdyxKJ1FCV5ULeUMOMJW75rXco__hckS_rpMeEVKYSexrIHgisJtYMA_JalrDpm_SiRpbDmtG8qZGmEjXKosQV2UwWVcfZscvI0kquHD7dhAcsMGC0e6oiAjb3hORgOl-eeK3KyqogGqTsQHcerVzX5TS7KYwhed0xCqsFhk7q_OWgtTIBO0bEfhWpIltrCWlHXt8nI7lpXdFUW495EWKXeXA6N3w-KBB8s2XrpJXBM6NW0c-2kZrpOcCNdv51jRFUKl3lY1NuifO47eSTH7wBHl96JMRFsPlthZ1eI1A3n5wEemYYD4b4WXpCThkIeMkjhd3ccCH2RFogYnyyqWF3pDOYV9B8Cj0hKNxj7FIHs9h16o_py7WX1dHJxVuujknB4XAL5Jkz93zFyep2cZA74A8rZPy20g6VMGw-HKs1s9VACPVetREvhjLXjVMjIf8e3wbWcIdox6XPLpXm0z-0R3RzwDQ-xJo-_jbGEuAVn3QIb3uNzi-iWvlVBU7_iX6lx5cZr7uKXZOR3Dh_8f3ux4kuuzrFzGqFy2aeHEIthE0bRJyTvMxCIG4460vus6ddI7V-LVjWp8rmxnQV13uSYCqXKTeLtn1nmCuYIxHmF9mXeWKWm3B7SP77Ka2atrgWVhwPEL0THF3pUFjNy6Fd88k-M-66K94eY_eKiQqXwhtY02-_-C48dSl6H6Jge_rY-OP__IVVNKpODiDQJFOdU4dewr9HBxjUjaTQQdc6IwCk8mfw9BJvdnUU-nrsaXW0qsH8j9hp7_ppHZs-7WZVLmrriTJhfHL81c49dShCHE1ZaP4oAK432ai3nbEiOA7zb6nVqZLFtQ2BUPrThGIFKyk6azKt5YGgsIR77L3ojiKVq5JqnGsB30QJAF3JC0y7NxITdsp6qi_QIGqtfVu8gTOexE0Xs-wyFXubMi2BEmpnZJ-Hvwweh3TWieazzYA4uejtQUn3WabIRtFyTWMPT5QgKXhZYk2uRzRzGY_XeVCRqvhLUEJBmqoGHrpvYT4IhV84hN\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672a00656dbe36-59257854','','','2024-11-05 11:24:31','2024-11-05 11:24:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41387',0,'cd-form-entry','',0),(41388,0,'2024-11-05 11:26:18','2024-11-05 11:26:18','{\"email\":\"oussama.zaghouan@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"4021\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/shoulder-biomechanics-part-6-the-muscles-of-the-shoulder/\",\"recaptcha_token\":\"03AFcWeA4CKqIoIMjOAFlCVSoL-5K7eRFSLU4kS3O952KBev019LTIsCX8nt0JshvMKn2OaDLvxef3lDtepMlzGT84ODFxTYmPPvo1-8b3H0N7uDbdQeLr5-AlruVBQwQHYGmhwmU3B4QVnybDxpeiCshSgo3VdKslziXU4Ik0Gbd5_XzvsRKruvxktjxdUzCxIEKRXOvqNQo40l2yHJ4E0wLooJ-e_R2fuGlTaMaMdn1-TAh8XPLko1kKVtamZXg0XiZfcnRJT9F7yDt6YX94aj95EzPWoS8TNqYontIr_K9xQtlRc4oTRCrkqanOBvn4nvNeZlLMzBub4iRzCOL2zFVS27_v7zs4v-vBRefocFY_Ah9c8W6O3M41u-YqIRZaLq4Sh2kDhjN1oKEB0Cy7eLa9LeFkaFKK65q7V9dzEsM2hf-IQIY3PThnSEyolMVOgfHrdhpmnMzsDNa996OUFT5RYUpuPaLz8YOEQ_ltvqAY4vDDfj1mBlceGgtDi0l10BvzmyplTAPeDoC9ii-Gdj2jQXxuQUZyxUN38V7Bot82Y8sA9BzvZWTTlAIzyitn6ImcUZtbuVeDTBZk2iXO3ByfcTBp6GBxhLLoLIVTBPliWE07b3tKezHrtLmK9z50-H6p28V8bGTDVu51LqIRr_GG0ggYHPr2jxbZ2-8BIT8gV5cKTnaQFH4MeUddtqMbq6U-ZUbFGbUSqjt9nGcn5JhhCy7qmfHSUxDiN4ZbkkZFa_SsIjjPpjNfUT3bmEOOnnC9omjUxN9e1MSkeMb9zIzZmvtBoqK8npK5zj10IEmTJpvRx3Hhawab97AFO5PT_ZL1YdjCmc-7TkE5zkThN1Dll0ZEwFEdhaev0z1OeDRseVwZX7TwXISCXNsOtsh5UGGw9-4ikErPSVecLIeXy_BVYIdq2OmTJq36m4LgMZeMkMMrzQoUYmZTkKjuTeSTsrMfAk1pry-75Uok344LsZWlJCy4d1NGAUJgSMCMQRieJSZYItxWvyKFQ_pxJOzWTZ3ELU6gMkqx1uj3-MYuGw44W3IQIbCzQw8DehfnWh75lfVSHsNW9s2JtJSIZsCM2iDH0wuFRmVIsoKfGD4C4hcA0war_XPYdDmI76HvGhh9KkP3Ia6JvY2DuPxyMPSHWrcQCnTtQ4WiLAZMxmypGq8AxU5cVs6f7n5TP889JI5friJalg_GMGGBveHzx41v0VtLGzCPWsylhQfmWNpgBi7sLNhZ2DO6tkavNjHk2_CIqftTbl1Inb_3_3S1x-DfF4E2jyD_h14es6Mq9mAQhlYU-gELIjNRmVdEP27ko2MbKwW6buAxnqeMJ4pkocK130Hu4vPb9_8jyxF3rJGHq5Pq4R301PxjFyj8RmRSIj_HGO-GsmG1ri4FKZJcN78m3CSGFZTCJGfFlt_dRusf6g3jSBk3OfZtKpYkP07oXNwWeoDGj4B_T8XnDlb2x2PUeVPsXSCrBQnRaRZiC-VQ2tqbsNcuP-7VQ6u6MQjEtbYzu-esU_CG9FIvcdIhkgLCVuyWklN0ohE8-Yt0h27usbxP_Kz5o8EHEBd9lSrZugpx9bQSL6bW9TMcvremXGEdxV5_Olmaxe7k-GHtE9j0tM-Y27EU-ua6HcclOoddbYugQMJvBqINYxpCDglcyjUSPHh7TRhGmQeBOIu-bLGEX-zkginY9MP8Cw9mV5ay1zkbpNQWam_pS7lSQYX87y1_qTzTi87tanU3HfpK9gqZaZGf7D07SrxmaNCH8QNe2ioEAXyB_JJ25xvinuMeCI0aBAPNcOaIIBQj4pNTXXKfUrVW1f1QlAtohVy0zmjqnOsXO50931VP4M6y0jY9DFpvqir2rrw-QWs6Kd0uFw5ekXR8BjzNUGIqcJ3iiAk3apa7ljqEN3LMl1oX5IBotHluFJXadCf0NOQmqLvPxXVRhvDHgBogRfLxQXwciGs0Ul3ThtyKNn1x0jTnP-oiEW8_HxvvWrFM7s4M0hv5BqorxaVkZyuXN5FruCYlH6tQvG_Yg2av6zB8EZcvcjkHcFTqK5-jjRL9COM8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672a00ac546015-25676065','','','2024-11-05 11:26:18','2024-11-05 11:26:18','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41388',0,'cd-form-entry','',0),(41389,0,'2024-11-05 13:36:49','2024-11-05 13:36:49','{\"firstname\":\"Natalie\",\"lastname\":\"Payne\",\"email\":\"nataliepayne96@hotmail.co.uk\",\"contactnumber\":\"07578629601\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sPNna8PgucDZ4VSTAnDJXBb&amp;gclid=Cj0KCQiAoae5BhCNARIsADVLzZc-5pVTQzuFa5P1-FbZMFdd4c5vV7cFn0ukYHQ3v9W7rsdXGTlb1w0aApa2EALw_wcB\",\"recaptcha_token\":\"03AFcWeA69xKlk0i4iYiV5NBrhlj_ZaLYjpCsBoBE3Fj8qhPXSwg3HKB6937cbJuPwhbP3yd5iBmNwPrlQSkrj3trScCal3tvMaT7wDXnFfUDeboHKDI7YBtwGuNtcT4Ff-7xmcJvrGZE9ZqPaYBGv_6Ihj6Hvtilm3us2U8c3U4HhMZQDnfJcQXeaxl199HgjYnf-Dwy0IAB_xcYoP5INQkO_LheZgp-yjUys0lC0SNY08_REx0llhWfwtr47LDiHNIPJnBFkMU1rzF-t9Vv53Rkl8KnC4OW9nxBOD5SouvL58Am_6JzTkGGAbY6MdwLdIHzsjW0GRjmDXqOVGd_MudQOSGXBp-YJZYz6WOI_0p_x5u95qxWH-5PnPzquiLLaSqx04wqwaOgYy1fbQz1lb_BZKnbVdjEhmOADucIVoVIwZxw-Gmge1vgo58GhSM2K9SV-LfYLWml4_9PzggVzst5Q9umWpk-_NJsIe2Qw4N-k9hVjqNBRUkCsW1BSjiSu9qes_uC5eVqwzeSj9srq5X4cpKZPljdke61BUPkrAYqtsJYdYFM-vDThAOyNVa1_oc3CMFvmvy8hthNm7rRyBh9l42t_1X1gKhWP4Qi6VCZF-u4YIQb_3Hq1sB-aS4WEt3d1Mhn8WJBT260KwWANQpP3EfkNwv7fj1aHVcqwdjvd37ZyH0NfGhiT61UKCSQS1zXDV9hXP-QPxPypfkJipPuc7yeAgTsZ7fTagWy3GyQPmlUNoqJ2j3SJtkh4GBlw9kAo1zUxomhdW-m5B5MBP3BiGPBEXO8cFlZxFJrcO5VRW49JGvWm9r8XDAfuExga8odlwVXMlj9K1VaM1OxcEBJxTPZXTaZqIsBiR_FHRL_mE_bNwwIwD7goZ0aoQHxcYcbiw20h_VDk_BIITdfOywWCkqwDuV84of4j5XfO5pCPM16mcZmuIRIxbH42aT79099esMAqK3fPKC1aROyoF6teB4gMXRTBByRpFZxe37KovqrluVZ2SO6AmtdW_n_3_MDveDSPmfT7FLauES1znl5X1qJGZuwcpzjNNIdYvW8Gurg2Qdt6oKmqo9sP9EGW-t98FoSMgizLUkILnmkzihRmFmoDEeJsyoA-nTU7bgF5aKTR0u71zjeyGXEnaGF6_HAtnMh1vjsaU0229jaUWj7l0JzKXBJxf-kTsJBg7OFcQ1APUwx2-MhBM1HwbBid3p1fIB8DyXoN4rYD5bFrHRa4_lf_Hf4V_zD6R5muum54Ba26siOO1NdBeDHDDnroxZ1QPTb_zQRKKFiRu2r28oBtg9a1aPmm-gqOz0Oyyr-tveJaHGl-gZlsQyoU6wx3j4x4gULgU9sc1_3trvg7tfcf13RBskMnPiFob4FeHzc75To-P9FMFGFMUSURLaBpybYPk9f_Dfca0VktPXgkkEMNRLLamfb2rmlf0Ueu-Re7cZga4I6RrPWnUSSydjuedldsWu9WwU4vzsQjzlpbldKd4aGFoEaJM8VgLqO6YZ6ZgNQ5cdk3s0Xa93WOaMP7Ju1mKGcuwzXGeprzMbddNaK5B7MCMAMtKzp3zRZB3nlmWP6UgVDbEzdL33ZVeOcd5eAeUL75zH2q5rRo-2IuLNbfIGUWfZhAzgLDU9HDmqTNoCH6XIhV5jyGTD9pAiBe7KQHhqiRC1BKAELYopWAd8lnFdxJqYXtsSQlL2yt_pnlQ1LkEqwk2ToATwZtYum5-9qCZfU7ZU-4idJhDzQgMmntp4kn9qRhzR8Q_BDiE8JrzBsn859YYwgMLrJ3_cMYtn7mOI72FApoiiJennFG1LlDAEsBIG38ZVdVWS2PARyfK2r5QdCVSGaTlV_R_z5ZiXG5BA6VlMNiWsSrHqgMdQVDc2etGQxS7RiHXPWOGrP-nzxKE0S02ckTdX-EdjUNxbLvLSR9YJYl0FUTreuv2RCeL6Y9QG3-aKYGmOk3AnCucCSmiv6mhKW5DZRBGDaJJkT6OhgCtGQKcal1Cdy7XE_rra73VZi0-W2RBYGBf-4EUMwjJlOCLPjLydKovuvwxVJxmQPb2zyB\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672a1f64727260-44483538','','','2024-11-05 13:36:49','2024-11-05 13:36:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41389',0,'cd-form-entry','',0),(41390,0,'2024-11-05 13:38:46','2024-11-05 13:38:46','{\"email\":\"nataliepayne96@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"1\",\"currentpostcode\":\"CW97GB\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sPNna8PgucDZ4VSTAnDJXBb&amp;gclid=Cj0KCQiAoae5BhCNARIsADVLzZc-5pVTQzuFa5P1-FbZMFdd4c5vV7cFn0ukYHQ3v9W7rsdXGTlb1w0aApa2EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4Wy9ClVeKuqangfrkuxufWPgsBCVY4Yd-lI4-5vBmaEbrHlgnwyZjcUoaQCAWW3M3x3oMyrwGltLhUiyqLQZy9z-HHy2NBH4HnZjDMCeyA4IkPlHD0LZJKcl0KC_E-bybHb5iKMFoPLlBVUGHf6gBJMNs1QTLhdvueJrin-CUlZlR7AGqEV4aVNj0pnbTvq2pCqaRf7SStvB6Vf97sPNfVE7vb_vL-wLvsmhkUtfOPJ6-WboPatFRKEDE7jvc7-M5gt-pRf-yvO_ieFdxRF2h_S1i18pAFaXMFUY6-yokMvcluM_JWyr7oi1_XJYEfnOAc_DAGWOgsqBbkBwWp-Ap4Tmxpmk7R8eG5xHGoqJLWmzdEdzOAA79jXkhCGbI6FkxPH4iBWM_2RoLgkIhRqQeLJa1GVmc-hSeFITXNdRuBCUXl1kWIK5dk0aemGwOuZfNKgpzW3BgzU7RTTf5qZlO5u4Z3EgoZL6P97gQb7dwGvkd-INWnnywvms_3Kw4nnyWwLt2kER6UQQGra42fp1F-vCh03O_yJfKoqZJFChaddEto-tios9u18uOj9skZVkDxaepE8-jj2lrFWZhP89-Ivqc-PV83nKCw94xvvt9B8XlNdsLqxTy6bpmSt29B_vFtoJAndY9eI3DenGCXTX-FRL3uwzo96YXAYVpJQbrF06rI8WgZQzuDyCh9zv9MMDnlo_a9DFNXNlW4zGz77y4U9EzX5xa2zAmiMkDknTYS1jlnEmT2PhKd9VKYXEMH25hy3pTQQJej-lncuDUqWPzgqc19hBECRF9_CKhxy6HzEaGY5-jurHT4rPG73FdRzCkA4yCgTd0OSg1E3sn2I7xjze1o5RPi4HsBhApDQbQBwv-AV4_gFQ7NWDkRFhrZz45iL1YYFQuRv5-weistsyFxGJLRKnYGNpk3k0nDdcp4HkL4BSWKI1MSRRJDAJAr_PoLZIlAhIiTVljOpHk084BGSE_1-yUcxXqirTE00DKnH43m31gSc2AUejFHQ_PWJ10Z4XCuGW0UTq4LxOktto-SERYi1BZ-ZTK3yVol5MH0pIm-emN9Pn2SPYI5BDRuapaVdyaInhnr2L-PPlAolUGuQoZ2IKMqIkK5a-H49O81nQl4-yXMMF1h4Cyh0XKwxv6fG5sDFD1D_LSrMivEnaMkyvdEay2sBGqzkIgRKeUz-2pRbgtcYJ3jSPFiy4PotCBtRcYYODP1l0V-b4B81FUVvteoOGK24kZNhkZF478GaS6AbkgEqwCp-xUqcKaCK69H-bqvt-MzPJ-vEk6V0kqBOVodfaRvVZ1bnlXYaQ6dIGaCk9GieS4MM9edHKQqEyyen8OqqS_WuCIIl0CKtf9ijb3rSPFuF9U5HRd5jvNftgJXSNaSZiUWL9nyX-nyk6DbeIA1x9amIFXiDwnY37hurAH_7s80locgkAA4y_-O6VH-ct95Sy8LOX7IGjtZfRdOYKFALAx2u8EKZrFb9KRO_baImJ7Ez-WbQ7s1wXvv5uHv7Lf7SS8bacyEqwP9N_ninC_Hk4rm6-1zeIkt8Jsz2DP5GnGZ9GUqM0VNwnlnJ2bt3un1wcyH_gW3GG_ZuQc-LP1Fc3CQ2qV9tJxNRw2Z4C1bVNXS3_rLymssYXeXpFwTludYiFpJWquaZdXPtozcch8tnp0qABlTHX43FYBthQXDhbYDsVasAkAn5Ry4MfJ5AkYK4t4ws8iVJEbUs-PLrjXFoeTzdQ8_V-88Dow8GszjGy58jXIrfvkwStYYYeKsaPIInyDY0JWEYkNMXdtX6jBUG362epcYninPbuoICNJlxOb9ouuAvZdNFe5Y0jUWfOs48yUdpj6x3XhvpPi_iZnjNrXPw-jADdQozwUX28qV43gLykdh3qvITzCaET-MElLpFS4dECqXg73TaL4uuQ2mocgOCFLSAHJo24P4WFbPpG4uIzNxD_p2xJvqv_7X7hoimt5sNqysMgzWnnX6RBFi4q922QNAh21JRSx7Wnx83U8fd0bqUMTyfBPgp_l5Hh3IpbCXb2b5aDZOBGngf_JMEVyxCVkuSSe4EP8vh149Vw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672a1fcbeaea47-45196670','','','2024-11-05 13:38:46','2024-11-05 13:38:46','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41390',0,'cd-form-entry','',0),(41391,0,'2024-11-05 20:18:18','2024-11-05 20:18:18','{\"firstname\":\"Mohamed hisham\",\"lastname\":\"Ashraf\",\"email\":\"bobsham94@gmail.com\",\"contactnumber\":\"971542545877\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAoae5BhCNARIsADVLzZf9USQIbx8bEEB24jU1rPUpCODPE0A4plu1CMAAP6G7fG2Q_znRwFMaArzHEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6_g5WzltFl3aLAdcTNisbNfiazPUHiwGRhmCfEV3Qp0IJCV-WlECg0FUc4Etwb27l96ueOJiL3ibP42L63ZltUgVF4jvY5XQPVEflXeyawvwlPAsanF8A5MOnT1Y5_xEA5TrxjjojqEKGMQ1UuNnPWWFDkF3JqJnFJNqpaVSuijfZp3OU6rnX56OzC3MpKb3D6DHaDzuEDil9krR3kC6MSnYVQmpwtoHSEQUsTKffIhGXBHewTncQpNK_4vWEAfELAR6vweXzZ1L1X_p8xQGADolh0ZkB1PBS_qLajPJjj4BgbNbrh7W7cRMFD92wYg9_fd2crSxvE30vdj9iZpa9mm0wCKjwa_bXr40kpUJZ9UOxHcmS8f5VBW8asnva8Y6Z7MTSWFLHuPlEcnY2Wl7--DRCCZHbmdkZKebiiNkYoqpeQ1_RHDkQ2WI8il1J3h4-wVfQq-IuFnh8Kik9REdRWQagacxeGhq88VqbSI9mMjICtbNMxSLH7BXsQfjDP6mkB7xhe5TS5J9dyL5-cmjygGwlwfdtKRFeW8gJICrcKfW1HA9BME3NH27mzJXlEWhEhUErUh8CeAG-bjs2LZYe0TNpNHfrNU4CMhA9d64GjihWtQbNsnO7UTFd1TA7n50VC9SIQqN-Puu2grOZigMRsjE9GRVvGkPjmxhuFm4rZJU3vaOVqQgxGypLkqbI2Qixqo7WaX-o-tRGIJ5pi6ACgUC1-Vk9_uxiCvpqTKjY5_7uzSyZYQTPPdiREyiWSPuY1zI4H_mCMENtln42PT2lcGIAP2Wp5hBc6O0P8cAgEI_zvMhEjGQwxA6MjrhCNHqCkGnTH-XZl4BPni5XhbGKoWiMR2eACdrBCsuebVBxfK3iN6Kny7iCNTYl0_pdQJzPHwIw2HWmXxLO0QTM1E_g5OA5_uRQxb7S1Ox6TlKz4g0qEyN8xdTISw_KquDfaCYmTYY__nPuVbUEU8jopmFLbS3PXAYLyMOzOa43gBfpaOv5Mk-showJ9c-Pip7nIEYmKlorzMG3ff_sOSLffkr4y6OsUm5SbHPJuEivWZuvrU364aOSpvFqWosOgv3Lpn8poQO1UianqXUx7v9TsGZ5BVBBELAjKMtpEEhS2vbuHk96pwlTaLHbDEPjKxs_NAmueOc3eD2g4xmsr5CtB3oAwwz-tfzxa0oQoN-R74xGrJHwmBbWa7iLFzvCDyyakQv6hU4eg7VYCwJog3z-rAHddnyQ1cpuE3JYBPpyUrQkD-tKRTkmDZEbYnUzVEf2NYDLXkM3QXe13U2rrMX0Nz3aXfKXGm2pC6jFDnLEZsGRgdnvwthaYiEXjVtYAiLa1fEy-0pWzTTdBHky8qAHuMY8-bRobzLS8qEqH4BDRvBlB6jjvw-AwvUhgGsSNZxrloe_jV9gX2J4ets-SXZSwzhndk7YKZ4dm3d02xNRRgfTi2xvT0cFqO3Vkb8yjjXNJlwmaieGCBaILB2uE6u7v46cRklcKf1oKy7FFbeyFjK-J1GiXWUt-SqCPhmD0u7vzq_Se5oR0jMQuMa9Hyf5cSyLKBA1x6V-gfmJSZWDMdA2yQjbR6hR1Ymck4u2um6jetLu9Qb8-YRf3ZcvxldXJK3NgrPYITC7tALvoA1r9_FCGTh_r1dSjTPVoDBZEcZ57QBhqD5ajf9fWnggn4s2HQ7nDcvTVpwJT9xWOvYZRmCxdv65fJymmfUoMyvUqBttvJT3FEwtWdlMy-MKx18f5cdXpvMDzceBtSQ7yB1ckbdThauPewCA5-NuqPIjTpj77ExyPXjgnvvZct760d4NoJyc4J-wXjH2AckFiuiM609lRuQYhv_xinmkxN5kytYgOHq-25LfsqsZpgCnlImRYbJ3zKCgOC4q6RxpOH_CpQKAJJIrTcD9G0LIq-3fYGArow6DNsb4QPlfgsUKIuRkfzzAIk8jIswbIM1HQ-muSPybRSHclgiY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672a7d6b0cd7a4-39422616','','','2024-11-05 20:18:18','2024-11-05 20:18:18','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41391',0,'cd-form-entry','',0),(41392,0,'2024-11-06 10:17:35','2024-11-06 10:17:35','{\"firstname\":\"John\",\"lastname\":\"Bracey\",\"email\":\"jb750@hotmail.co.uk\",\"contactnumber\":\"07811262072\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAxKy5BhBbEiwAYiW--1onrLVu7l3mN9pBiTN3CawKqBP1ERltgV37Yls7Z54g-DKUyak1SRoCN0kQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6RGgJz71HsmWg-KHWChvxp3E-3ColwTI_ueAFDahvcb0bgZVYre2959LAt47Pf05kxIFPtskDrEI7PTGzCVa85L6-uK_akw2eQxeXR4EtPk5u89zYslq1AULvqZ4E20hSWZXKCJbMd-ff7BUCMJ3SF7Pjbs9IqXzGN3a_CIj6uIvdjnGx101xRLK4XEHwVM_EekIIrQGBnXdI1pUadjn8NAcngNm8IEsrUNYHKRTTd2S75-vBr7zmMpDEBy75I21Jn6N4ZGON8Kbkx80BfI_1YUlobckJBBg3pu5AdWb7VqAaB4kOtA9gBqaQII7dHxxhl_vk2SpmcL_wAZmc_pi3CH7W3ngvY1Tf8_ujZh8R_CM0KdtVoQ8ZYsioU4UhGChAE2DrHW-BZ83hag4wIpX7JXHbzdpr8ER5OSGxPVqDpdIMRFUWw213JPnJ-Fo9syw5afuA3MEgb4pAQZcimiurVqbt-lxbEPgbim19HWVKRzdQ81yIhl0iKnMQ-7jWwKDygc1s0dN0LGk9FIeoCK_-_og5YH8eVk_Ier3UPy9Q-UJOoQ41LKj71FuhU61lwKDxEkQdVEj3fAtvSmlJ55JFhQf1iCIOS-z0pqMjTQqIx5GfiNyouxx1N2_l8e-abpiFgaFMx6ovnII2go_SvreDEtQKHLIm-pNQ694PaOAR5bGpIgVy_JeYm3R4nNjkAAPcKlIH5AswqWxaLDXBkZ89DWKzCbYk6SY3tMUN8KKpgh2l106uM3O9octkPFSMUcEt6llF8op4xNIm0JvJ8miHjjPLKt_Kf-HLwDvrRHPFGDM4CzvYx5cR20MXZlh699f_ME8dmk9GiQ20V6sGzqpsP2D0WEM8FB7DJaBhARsnPvndNcVW7mSXiB4jTM1L__BcWbLqZF193tnuUy0fcnn9Yp5CPMJE503MGhgH2OI0Er3RUgxglM32DwGeo_sg9wpQOQsvOlJnqJnNXJJFJ1cq4G-hrdLV7FelYV9_LmG8k67QLqpUl2hwwbyMzrIQmCQiFMC3EZXtN561kkiDLMLg1ZJsNJNjrTd2aIfdzMOISoJ_PL_Jd5yUAIWvqIxoQOELixu4VQWeLt8kXAPHUQzhwOSG19wVuJIfwY0OXpjC1E2fUI4GjS2kaQ9HDpr3SPjxYJRs6GGDNJWNFTmhqA1gQrFrLf0pM8UVyKalUu0wVBAOPTgUYN451Kbu2hnqIL7TW5o5TOfTBrnd6fu6V2wirHOOUveILqVITsSQLMmuhoEG2LlnsDIovpHcJg3QvR2F7qJcPMKCXgiUCMqoZOYulmwyODere4Yh395G4mfFHHpQnHEsvz05J9PkgehceKe17juYlR7vySif-kbqLdDpeMZabz3nN4Mi04WAyEDrblKu28DH1nHhb1-MGTFJU6exgJ0gG8t44cKMPhL7Juou9BsnUpW3RKF58kpY5f8vyPrDadNX4EQyJTMnZBzb1x0kswOwS9wX37H9dDfR_kOC7uLtoxP5xO5i1-mkwUDlMRzxZtjeCrJfxdVmmqnCJWB-pD0paM7AQXuLipYTmwCSHPUDKWFu8cCJouWyzW7aetFC2ly1eNKRXLYoRPBvPG7D3ixsmgGlwxQrxQkPe2Ft0dToIrybxiqUogj-ProK25No11c06y42Fv5HkP3X4nFtp5XICJtztp1fjWOY1PQO-N-GbBxMvOrbio5tl5kAEQa5ui8n_XV_Lv6VXSIjeKUm_L2UoiBLQC3GNlV7Ik3k0hami8BR94HEOouCHjPn9VeQkICQMpmtUnnBdFhntjkqJ7JTOJ5cu6jybQ01hPNZloFNF7u11YjTPBRtYu_bYwzFL3x6MJz2tlnDXsMqGmGtlKjpjzqqKOGFFdd5Yo5Q4vsG0SC17nJ5HxAJzFaebgvLqizEZaWSVQ1R-wUEvWRHGMQqLpBb9Ww9PCNERmw0R82sTiEUntzeX9LG6EPAKxQpL8pk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672b4205cd5887-59413406','','','2024-11-06 10:17:35','2024-11-06 10:17:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41392',0,'cd-form-entry','',0),(41393,0,'2024-11-06 13:51:58','2024-11-06 13:51:58','{\"firstname\":\"emil\",\"lastname\":\"hovado\",\"email\":\"svarcc.jirii@gmail.com\",\"contactnumber\":\"721547789\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAxKy5BhBbEiwAYiW--0G_BbQHwtvvL_1LV7lTbpJc4cbLfFLyBh0cOZEnp2J8xDVI6_kznhoCjM8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7vonFUcmClbPNrryx5jOCCnaLUuokA_uw4ZLLSssdejPyCiGr2t1seF_HZY7OZZIK0CuaOM_aF6vnv_oP47UjIjMpqUVWkR6NKUh_qn0cyyA6TPl4fRWfoQiQV9OGFRXe7ReIpMuxcJrpZnc2zlfqKUu9a59M8YBkKWDFF7CPKM3ZA78gK0uDWUYLLfEBeJ2EjV-sZFPDr3ErS_QJmMuvSwB-Y8Ozn_a9IFCsL3fGc-b4kB8_T6a4P94U2OoCrxWAnMSP3VbYw9FZs2N98VnS80UvByNT0l3OXBwxdNRTr4pCKmmAVXH6eLHPi71E-2KKs68RY0uv22lZAd_q2S54KTDh_RI-Xku8OoHH4S1GM5nYlI7axLdToQWZSSo0qz2nnndM1P_3jHNKnx4lFh_CJp1NJNGlNPeXABGPGCZm7YmgIUGD3h0QmqBkI6Vh1pliRMhGurug0XBGQs2e_9zJEC1x_N9Q2CSwlG_sBtN2IRxfsCgF6Va3yY6fxgnfsaSy0-9q5EaEuVtHVPi1gzP3IqG7aOGlx5cKtPs1Tsmkvdgw9LMaq-fH8XP6AdfYVggHBCdlyG6FNsmHNvoW7EPQYttFQ8BoDkiKZepEWa7LRc9R3mza_n32-JVuDY5wk-if2X6FMsd0XfwIi0wOcH1UjeGXPyFOjDGEI8c16SBnz5ANAg7KA4poEpNT3IHGODWKYkAWCleOIeJRNEcQ-12tONfLpXnRcO_98ytl7oM_t7wV76nYuxpTSWS0PJTvO-S3M7y9oWF1c0wHG3c3Bp7f4D-JcHplhxBhx3hXc_TiZYd5dpSVJdKJxgijEztGIA4Kygr9Yex1Ks6i1-aGPSlXmPE3PUNf1v8oK9mfX_dZkJicgf5W4H0ofq4GXyscfmHZ6oTJwHkLWHno6q_74FJHYjMVVXSR5a9peDyboJ1fao4BLFBdWtyToMQQWchymHLovNSP76m8CZlV9p3l7t0vJQtzPwK4EkMBoDevpAlP-uJP0YhBG4qO6Lu4xxkcx5TYvpxoNwEyyw-Wup1fVf7bCJxiZKUSIOPBEoSuaBHvM4Ra1NkzGHvHbkGDdyLCeqV1k9LGv2PfrvPa59P_q5Dui2kudKucFuraDtWf9C-1TMLgprGmaFMMRMc1pZZA04CuUwe4APmK4umumH2xbdajnpZ1hKL8SEZ9KLtX6loycpUpdnGIxkCL-V5UFUhRpXckjzkol6hAJfMuLSu8OhcNXh_ufVUUM_acXWrDTEUijsGwRhOgKinBPHXo0oUKaLs0UMB1wMNMK9ltvsJBwLNZrl-Z56miRMLmc8-ZhPUuCRdv_nAqfzWMLbTuD7rGxpKnjTfhukoScuLP7ilXYN0OplwqNP2QsDQIxH9dnK1sxhGvo4sN1Am0tCUD-1QvRy35KU1WmBZ_r__XykAq-FCXlsZa9OHpwkIuwqxiA8mkEJ3i6o6YSfj6F9T1dKgr_11XaJgAXFsI47usGXmtlZSvUeEGoPd5D_8H6zdbZoehNIHXl6-IbnXdyW8JubYsDHjqEQ5VBreBh1WrW6dTwzXzueAQDq-OG0uxRaW9itlfIkM3j8bwdrDPBOfjAzBx_9PouAShJLUtk_kmXxEyyYFaPZNCXbv4NzRyLn7rm9ubT7I6EeYhj0b6bXRXV6LQK6vjEwjs72v_OiYq-v3VTD4Fxv9oDz4fIqgvvWCmohv_ievL0NVR-tHdEB5JWPkwiJMJGUGAJt8S-3n7n3OapCuaN2vsOAXv0Nxu0uAAOw-Uqn8fxU9JSjQ0uZSBkkqrGq4GtCVkuhLZSTo42OAY-OsHTANg3_nr7TT4GxIjLGj5kML97xqMu4WidtcStYBEmfZEoGCY8v7SABt6mNR1PPiWbDmwi_odYvUvWETdP1uhiValSa77z1GQWjio9r_KNaUUBvAXh\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672b746f358856-80084028','','','2024-11-06 13:51:58','2024-11-06 13:51:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41393',0,'cd-form-entry','',0),(41394,0,'2024-11-06 13:52:43','0000-00-00 00:00:00','{\"email\":\"svarcc.jirii@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"60250\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAxKy5BhBbEiwAYiW--0G_BbQHwtvvL_1LV7lTbpJc4cbLfFLyBh0cOZEnp2J8xDVI6_kznhoCjM8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4lCZYhvRsMAI12zyf4lUO1O_xOYt1Hw9tPndJz5Dtq5K9jFuCtOTUeCkasw3iM5nCKjH_XxQPcoUUILxopwpoviJcPpy8t4JtPtgT9Wzf0LTQABk6voKEupGcqMCAMPL7U50xXspqdp5JuOTb5fbReey1-EtYxf9bfvaMBS4tjAZcZ1zWqAtIe4hJqThddZf9XYMVrbOKP32TCrMeVOgugGl69thsTaZlO1gCkkI9X2_O0skt_G4iXKxzOPGqxNvlklYziv99JUnF2MZmB39R8QqpCNtgp2qI6a25kWLLKQKPZEvj5wj7EWIqeMA1Ne752JfUx7Ayo0jb90TrwQTefMCTAwc3AKqY_R4a6vj_yNKStlt1v4P8H7IvjAIR9q6gIMl3xS3UpRvKMn6Ogs8KB5kNrehLJedpL77RbpBhnikgfe6CllupwBi9yQQBri6di8fLlVGTITKG3pBVfsBZXcfAC_yR6Yn58zyhSTba88ldCQQVVkTvQIGSG2DwQ8_G-DIROaBqJ0p8PhUZ4qM-A0KOhvlvSjKi90Rz6tRsdLb2PWVM7NOW70RluUc2KdJ0pUgv3kF_l55mvwzJHFGXV9dG5si5ba_oOXbwAiq91dGlZXG60B_G9FBRyhBJmP0quiwMeWpiWdbhxXN_DktuTa03iShjEMhms3QO0cF45dU95sV-s7CUg9VAX-Ys46rtzpobM9jKJRxEXE5kb0Ypnhx05lhzaZJjf1Xc1Jv1Vd-_99OjRZNrZQ2lQCIN2hRjS9fG5JL8thUXYCPo-KQd4BESX-HWN4Hj5BH-Lt5sAD9GusvQJe1TRgond1OnOgpaC8wqe40s8ZMORZdg-f4a3982U9TJvygItGf18YGkVHi8o4ajI_J3i7JfA2xAlV1kb3KgnTa03dOZ3IG8fpbq0FuOSfi3uoCFU0yLrBDDe_5DF3NHukWFM0RTbL40mFByCHiifrz7VJak7PX2KaifYA902H28vueVWhxoixXQ2jDeYGPSSZz_3K8TzVmlysDfWxvQvfpQCYVK3IZvxtmoUOdSnL9BEayW878IEB1IJWbcB5id8CZ3NkjOSpQFrk2RpzHtAreXZQbYfqMmaqx1NZInoOJfeiJ_6g8hBGi4iMVddBA1mynHEcdEB7QLnl1IEPbgy2HmzZTAO1BTPxS-IogxAMwMV5KAD0ym5UOoqIa3WJqaFV6cWF31bckaGZKgYb61B1HAesg_YTo6Qvavyfv89im5sE_CZXcew-vzaXwlsiRj3kSxyp98n9ds1qNqkV4dsm2R7Y8PYug_vlOfQj8vHOxl3mlEvlFHFQ_vpk6vCJTSSh0B-PANeTT3mdnVjTV3z_OPG7TaBtUEBiqHnMaoo8hD1N-5DclGJPl5dSl31SUQ3IqWR2ooZNy2IVwfq2In1guxXHr1MjMJcV1cy-GQTfQlsVa5gux89rYGNCC2Opq3RXFSRj50AQdY7lBXOJ5N4ZR3jKL_ges8PUOE1yauqhc5_pJZ47crh5vqj827JdXYgdg5q-kIe3RYsUG6H2mc7_E7MNnjqmB9FmAOzBUnPu9xrOn26b-c2gxsnOExEUbwV5EonKLDl_qauaVODYKARvMzAJDCiBE25j844DtP3jiqMn-ktYCsEwSoe-vhRRKS0M91FhMDzHe0LjCQlIA-CvpMAoMhnv4y0YLHRK8ootFIQ-r0e-xtuscaTGEd4WJm4rDgwpvtawEGITwNQgXujCz7u5tAkH6foX6PFLVhT6L0-KKa3NtuuldZhI1KBG2zkX_1CpTr4RED1biRgTxsedCrsF5AErQ_cC0UWYE7IMaCFj2b1A6K1oBwSC_1OCVCMMVE5WV9RoNDqYEi4MYZXgGRcMooj_DFMbijcFgqfEXvhH533JFSjNRRxu_T15Rqs9zkqeYrsRs5DPDo5WRqM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-672b74ab829cc7-08450798','','','2024-11-06 13:52:43','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41394',0,'cd-form-entry','',0),(41395,3,'2024-11-06 15:05:46','2024-11-06 15:05:46','','Biomechanics for Pilates Teachers','','inherit','closed','closed','','40265-revision-v1','','','2024-11-06 15:05:46','2024-11-06 15:05:46','',40265,'https://biomechanicseducation.com/?p=41395',0,'revision','',0),(41396,3,'2024-11-06 15:06:13','2024-11-06 15:06:13','','Biomechanics for Pilates Teachers','','inherit','closed','closed','','40265-revision-v1','','','2024-11-06 15:06:13','2024-11-06 15:06:13','',40265,'https://biomechanicseducation.com/?p=41396',0,'revision','',0),(41397,3,'2024-11-06 15:07:38','2024-11-06 15:07:38','','Biomechanics for Pilates Teachers','','inherit','closed','closed','','40265-revision-v1','','','2024-11-06 15:07:38','2024-11-06 15:07:38','',40265,'https://biomechanicseducation.com/?p=41397',0,'revision','',0),(41399,3,'2024-11-06 15:09:18','2024-11-06 15:09:18','','Biomechanics for Pilates Teachers','','inherit','closed','closed','','40265-revision-v1','','','2024-11-06 15:09:18','2024-11-06 15:09:18','',40265,'https://biomechanicseducation.com/?p=41399',0,'revision','',0),(41400,3,'2024-11-06 15:10:01','2024-11-06 15:10:01','','CourtX_Pilates_Web 47','','inherit','closed','closed','','courtx_pilates_web-47','','','2024-11-06 15:10:01','2024-11-06 15:10:01','',40265,'https://biomechanicseducation.com/wp-content/uploads/2024/10/CourtX_Pilates_Web-47.jpg',0,'attachment','image/jpeg',0),(41401,3,'2024-11-06 15:10:10','2024-11-06 15:10:10','','Biomechanics for Pilates Teachers','','inherit','closed','closed','','40265-revision-v1','','','2024-11-06 15:10:10','2024-11-06 15:10:10','',40265,'https://biomechanicseducation.com/?p=41401',0,'revision','',0),(41402,3,'2024-11-06 15:11:01','2024-11-06 15:11:01','','Biomechanics for Pilates Teachers','','inherit','closed','closed','','40265-revision-v1','','','2024-11-06 15:11:01','2024-11-06 15:11:01','',40265,'https://biomechanicseducation.com/?p=41402',0,'revision','',0),(41403,3,'2024-11-06 15:16:08','2024-11-06 15:16:08','','Biomechanics for Sports Massage Therapists','','publish','closed','closed','','biomechanics-for-sports-massage-therapists','','','2024-11-07 15:06:17','2024-11-07 15:06:17','',0,'https://biomechanicseducation.com/courses/%course-cat%/biomechanics-for-pilates-teachers-copy/',0,'course','',0),(41405,3,'2024-11-06 15:16:48','2024-11-06 15:16:48','','Biomechanics for Sports Massage Therapists','','inherit','closed','closed','','41403-revision-v1','','','2024-11-06 15:16:48','2024-11-06 15:16:48','',41403,'https://biomechanicseducation.com/?p=41405',0,'revision','',0),(41406,3,'2024-11-06 15:30:32','2024-11-06 15:30:32','','Biomechanics for Pilates Teachers','','inherit','closed','closed','','40265-revision-v1','','','2024-11-06 15:30:32','2024-11-06 15:30:32','',40265,'https://biomechanicseducation.com/?p=41406',0,'revision','',0),(41407,0,'2024-11-06 15:37:14','2024-11-06 15:37:14','{\"firstname\":\"Fred\",\"lastname\":\"Burgess\",\"email\":\"fred.burgess@icloud.com\",\"contactnumber\":\"07855368950\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA5OiPQ6Aw6F0OPYkvxOw5kt_FHiMci72IkyNGcKRmsB1eveBH9d5A6AkLz34hdOtZCNjz1FqArqBD5-7bcLLaC5vx9GlBOPWCKEnXVgd0uiVUbC6p0xIPuvkURpyxGqcnFvL6r5jF3fPMp3u43MW_jLipCX2HdUZ6FTGevYy1pkjEroMdz10NnsaX46NBCp7fPAFfYx8TYdXJ58Mzu8fepM2bVLZkoXC5eEl4sNNpcE1kFAaBO125eBDNJTk-Q0TmYpWCkvH7I52DdWMcLX_XEIAyXOfYuzaG5lmhX99oC99p3ARW2tNv2ifiW1S6hldaNnmmcerN71ASICpjD9QodC8ZsVASuih4VlBjdZKsRNlcfupipNl7sz7hRfhBnDYfwKCn4qYWzp7CopETf9K2lMa4fguk2RYDpuw-nnTBZIHdEk2Es13dToQ_lgBhowOwwfDClOvwigwu0z4pZA64dpQ0TOjPg3hFqIjPwRgDciFBpw9BeQwi04aEh0ZBkLRO74-pqWE62hv7BkEYWTEuOtConGt03tklq2ZTJi-Q0lMV8BV37g9I0AKFLP6SuBW9_Eqa2C1hFY1sUrVzaYBkRG4b1vI_XQw1d8tiuog4lWcRQuLy2A7A6e04yiSCIK-Q-AGTj24BhHnEik1qwk0G1ScCIoiCjpKWKxSs_6RSqH3eih3TLBfRwfC-OgFB5lJa6MQeWHedS9ITX5lk52KV1qS6hnMZP-1EB9qaKOJ5bcoxLWgD-uNANEvsWad5aIUqE8Bf7tyLqo4zk-LBXGbv6QHDG7vkLkDmVp7HHH6-BbFzpEQr3dZb5VVd02ieSq8Ei9PGWmno2GzcBv1NLPD6wYhF2EIfDdNEtTkQtYyh9rzBwGDodohB0QYSV7ETsyo_eVDP6BhHnYn1Zu0nIwz6z3lnBxWcx_NPx_8aZDCTI-5fW30ebTlL5sxEM97Z5mRKTF9SLZYMHR8K8mT_KFoeLXtrvQOuHUZtZ_x6eRNSrYCF3VErLU0KnkFv8qd5BMkjgST7W64Kg5NfQpERD3kRTlE6U18yXuT3CuHQjMk_lLSG2AfYw2dAsPgZO7jzfAWB5XUAf7evrHdYOWO06wkXV7jiACAWszS_dv8it87mpUdmhATZecUlTBlJagjmG_DG2QdtMb8F4YYCiIAwLjq38DTe8cDHCWb5dzcd39Mm4wvjC2fjk_JAAnWeL6KhW7r0wUQ6XOHNbYi5ZNti82_6EJRlUt2lhbLVSMw9XO_aVgg0qc9Twl87zMvjyJ8l2bMYaww0PI1zGrAiQXkqCM6_nkAJBeE97suWlngMNqLABOSGZQCMjIfJUKu8gu_j9FgoLVj1fPatDLPNuaYvGaQj-0OWJfuGEgqKlz3okNbWozYxzfCaqU-2788Z2Q0Wn5xJ1CwbTJUIrwOW5HcqnLDw2KanOEeNZHokZcUQeQqqvbkQtW5CHwtq3MjVJNG9UAc7-VmQwafULl7HjYmYbwE_P7i48DCPUWWIgyQBKxvBi3ouFd4zQVzojIR0--4tlQChD362je3F9CClG_FSr4lS4mfyelHmzR6Dnwaha52arluxH1iQFqiYAzIcVR3Z7bDmCpIAhitClmG4z-MdTkyotnVdnrlJM0SVi3RS5WyyvuhOKkGtKdp-8BP0mLgUWGSmYO8fWXGAtyuth2TOj1TmHchazxqr7Nh4b6_V5968I3ktS7eKnpnlcmENbdqskofarbXgTKE-K1bIGgJd2LgC7FX4YQivKDSFaNIxZf1hFgRG5eAeDndWY1zRXjxBHrgjLbue81vvQCz8TPPzuF5Er2SiK6Caw5TXwA0_QarXruWfoDvs3Cd-yXJQG2rSR0wb-n6badBR1CXcMxqXmJEbyjOk04bp1jxHh883BMRCk3yXrebIU9fqxPt0lMCGakJ3VUfYii7BiePP3aCfrEX6m-aKnJbMq0eVDNCU3PWXEiQ113_IF_s3DF22ZOEr6May8oLxpXft7Jc8KTqub2vT2b0Yjp9vjHZKtOX9vj1mLTRX2AMt4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672b8d1b4fb2a9-24592329','','','2024-11-06 15:37:14','2024-11-06 15:37:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41407',0,'cd-form-entry','',0),(41408,0,'2024-11-06 15:40:40','2024-11-06 15:40:40','{\"email\":\"fred.burgess@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"4\",\"currentpostcode\":\"S404QQ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA47p9PPEoZJfpRLMsgizxiMTRjUwT0-H1QieRK-ImjGpFcp8r9K-leD7SUIRQ5osGxKYVgLO8byyBuN_mueNkiqc7hm0_XTPt6fbXvWG7x4dVbZHQO8OrENWmydO1EAKySBeNgemDBpJZdQEmiiG3kfvHeSMXlqB4-dkYsbplg3eeVURdHCx3KJE2Oux8rz1h9L9gli-mtVPaIAazlhtSwYUHimLippWgZumvKGY8N5CzFMWwSIVLBkH8teNwYVyWn5XsKiQKgywG2BhCsc_QAXDlKm9tv_L0KrqRIDmML46PDPbmGXFUP50_oaWfx6vx1Ai_rVM3tq_PCJoxm-RVBydI9rJLpNjdiUT59-iHPMI3NaV3pm7YVm8yBuBGj2VrY1EuYAshnBfIqF1pgvud2GH1BocV9DQRAWOgQcdyVj9M1Ymo5Jy0TfyBceiAohvCEscrNyWrsJHW1LzWiG3l5uk8TQe8AucpyZc7YizKkDQ82sDf4_fs7acIt0KPF5SQeBCDM451Rn6fBBDBYA-pJ2Yz5cwJ9dJrUdX2a0ZgLj9N5wE-s0Fcbk5COx9G82u6GT9hBKlDXzqeMwDSz_Q1AHfFufWcqjDvqIgndkNUO2GCKcZ08Dfafhl8R0OmzSmuPeW6kag_BL6pCAGqM3k1GnWiqY44nNJzcX7i3wqVTB-aSF_IGFotkfOLMFVI_9yFJEuodyz6IC-2uHK1bswWPw92h67-MkN5bu4Dwe0qUUGKWCmfWn8nTU4vCOfMrupEeeHb2RIrqotUEb53o-jxK0KWEKWXT6Bw_pFheP3iIsS1a6WirdPURDqDwXF8ieKWgXZ2Z32L57haiHRzKJ8HwQHR7eaWmbwc6Z4victhajQgQ6qyhyonVq3IEe_Zv9bJx2HA3-TEKChyewEA1GDMJ6toN6tL9XQW8dM8wkkn0O0W-BQ5hzIygMPkF9gKolXsrmNjzf_vQOyLc3Uu27JYPiCNgUuDZEsuiHjCPNSm025zmX_fvbfcre38ZHhbnDTvflxMNaO9IBXDU6Cx_dyXC9sAqppvGqe8VxY-h23CaHdOIg_8735d2HzuppeZTb3LolUeNM82xwr1U36e_9ldbpHXBk2xRM9ROQromCUjCZ6wlTIFDKMTfJH5_yhRl2rRsG2S140FccBabg1DjM-09jXaweckpdCqijpy3woXZ3Kipo8e2l5ecfqgDzsNnCA9FFsLwRbuyurnYNDrMA3yNf9FYD83QRvpl3UU80GwAV7ZTexRkqqmURrhDwegLPv08amG_0DWRUSM-zI9Skbxd2K4TLEMpWP6E9mMc0whMVujnddLo7YtlUsOnNovLzFew3x56DBRK6-cq74W_M5Yr5q1nUgQn67muBjUOTMz88RuqoteumbJQtNKV_nvZ8quoJN4nUzXRc_-pAHsLuKlC7C26eVhdg2HbahPwKJ4fdx5dwDAxMRIQ8mLiOxAjshceYtf4brS94uYKAH-LMUjhzw5boZsViFd0HjS9ynTM-QuDSb5JAs8h9U_-MxVRii1eVhHqS_2hRL86Rz0TBGa4dGeFHRwIm0o0VN-NIiFtn_5PqjxM6EeGSpqeMM5voYM4-v6d7hgJJD2sovuGwDE9O3YpkvjLCdvZlXtqaAswFSydoHwdEr7JD12GdYS8NELP9FNJInViiDdaMBWq7bLCjVtGnlPr16l6_RdI4fM9jpWNgOoPPsto7RAJy_sHffXC0vENQdcqN4eQf7Y9wBZruD5-HnQfnX9Awe-3_2SDUbUbHdDo7TEU9sb1DRAW_RCgMLrFbeFqEsJcTB_aRAbdktvTIOkKRo0Qq-H86hVKgfkU5qmG0bWI-mt1Ltuu2HeWWYCjCtZBozcs49m5359QBGJDzCPMFkYf53fCBedR8EniEybiSCQ5YDnfr-gqzNAbvUDFmbkKTUHf4LzP2hcCIMP4QdCqCB9ig8R3mhLLR9c7yHXYCX1PMl5nVg-dhHBOSk_bqPcINDWDjGrCkz5sjvJ7QjAkfI32nhVKskvLfdHL3v0M\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672b8d94309aa4-04150337','','','2024-11-06 15:40:40','2024-11-06 15:40:40','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41408',0,'cd-form-entry','',0),(41409,0,'2024-11-06 15:42:38','2024-11-06 15:42:38','{\"firstname\":\"Fred\",\"lastname\":\"Burgess\",\"email\":\"fred.burgess@icloud.com\",\"contactnumber\":\"07855368950\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA46DIhU1XVwsSCsZ5xX4arYiyyNsZrHZwA2-hjwqcw_XaTuPJ768A4aSWs3E_495aIxmQPkLVkOse63UabVt-cPopJxusn6KlYGmhUCAjXqJOm3BHmz4MBPs48Sz3qxRjTJ0WpMZ19xWx7FidPfar4CpmgheiwiRrf7BLZnMCPci1l3e9G2eqvrniaZTsVIOhJGTRHgxiOF6WV-FQIHgcLEPu7qaTlmadaqBi8PfwXqxRT6uV49tKWLzecePVSkSCGxcF4K8slBrRdi5rNAQtQctNticHwCZLpLQUliWkqdfFx8MvX0FTTkcgDloP_-J2muZrY-KM1wAdH8OUs1CRK-b7FeiuWmXkpjiTqsjgOe3ghg1_pzOS_RuA_Z551fWCeP9dUxrzjtr8TxpQLYeFviMEe50PUZIeZ-ufCAA8KiDYopL3N0ZAhU9uWrwdL-bwvnyrYoMD34VIatIcRuZqfXTBB5sJr5YLSn5aNgcBchzPgyDiwbgWcK0UB8tUUl2XWPd791McwLedmrXrcmTQmn4f2K0uHUl1QLmGLNV5Me33YVNntMwO4bJJPXVZ-bekiY1Ayu2B8mX_Us7Q7KmA9IkfEZQuNprEBJ042pHHBszgV_aU1kLE_6Y3FFKbsQ43kRejcYfTeCvrNYQFnJcHlibsAAUaoMHk46YLZwh9xlMaDbicWsz-Yxv70v2TIR7GqW3Yi8lAcd5-9A8TdpJ0u5Z0riQbdpcw_OijH318vKWPO3zXcs_ZuzzynWiPCHG7AEjUGstEfbWB5Glim9yDrMik564hXiZn8IBUIzH-6DtqCEf1-M9SR-jNxJWqA8ag67L8bH77rb-7bD3Y1lCM7kjyOYs0QqiJX1yYFmYqZz7OMnU0H6JjJ3mOG1K1VQk5cB6Jw1QWkg79knYTJy5bA0njONE5KGPOKSrme4_x1-fWG09kw0rc1hVRy5ngS-rJwtqEXg14YXugAFdu_XpEMMy_sHm9jUnSt8ZheyZ-8kLSnr69IR8t1DBuSYoaaMPOaIpKCAmJ65BE-T_O9_mbZ6Ed_hkf3hTObXpEDx9EPR2CBiZfhLZTSdYnL_cesoHzdokM8OvpiN3b7eX_-keiKydjYXukybquxZ84oSVuNrlZhdgyfRlglimWPBj534rkH9SMKNFvQvx8n91hwxPGvTuk7aaJewR20PDhbychbhRiqc1Yj_kgAvD7qxzPy4Q1erqQjIzFQf69GIbiiPBGj8g34pGANfyGhciYUYYTcjA-pKDiNxRkiWarUaxk16FHhoNTGX294-foPvgQThJoCEauBeTXOSuK8b5ktMRC9PP4fQa9mmQxwo24AJhkT0q5P4Kp0OZEOSvvGeLeq1ipRYsbReOrrY6AhVjIPj4ogaIocTytJC3XPIWsaRp1094NmEsSBysVRRizuIt75exK3FOpweWHzdQnUL_KwrOUkGzVZ0YGMd6iOBm8s_sCNimXUueSOazFIPnj__kJrisIqUcl6LkYdWTJEZbKEPDgl7Yq1MfVPpbVRY1pwTtPzoFuIHT6t0z4Le5ymV7vfJcXrW5moYVHnYjVCQ6G9nH7KyBFIMRN_Q_IjNfFde6sbFBiMfC4jsSazLNi22mPp9OY25hKNaiuXclLIBSiou72bUDdyd06A7UTtw3TPEG_TR_aUvuShWjOq0BagLHTEtD2NALVhVoX_-mCkrWqnRBaSiazDJ1waJRaZWGMTDAlYM7kH-pCuWQn_RruYvWIYIOh9_t5R6eivyqGenTvKvjn5DU652XyhNKLDVrlqO69_BXQ3rWWaxrBWY8ANYnV8fqQyzbAeQLkdE0DuIEYdqSe5uE5ngyWWbliKS7kpeeTxHJ5YIXwv5E7NENSS9zqoNsqt417z1Xzz0RnCZe5yKj51LzB3W2mtW5pSjexKTexhO-BJrD86ldVcFQOgwBQcqczyKcK4fq6s4k5Fp2I9gbuPiHFDGvIDBm1okQCIJkt-lo7Zd_QTKcy4Oy_A9RfPJOon_9-3eJX7fwhBlBxgULFsimKTw78c\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672b8e5c79de52-19778283','','','2024-11-06 15:42:38','2024-11-06 15:42:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41409',0,'cd-form-entry','',0),(41411,3,'2024-11-06 15:48:24','2024-11-06 15:48:24','','Biomechanics for Sports Massage Therapists','','inherit','closed','closed','','41403-revision-v1','','','2024-11-06 15:48:24','2024-11-06 15:48:24','',41403,'https://biomechanicseducation.com/?p=41411',0,'revision','',0),(41412,3,'2024-11-06 15:48:41','2024-11-06 15:48:41','','Sports_Massage_Therapy_Web 53','','inherit','closed','closed','','sports_massage_therapy_web-53','','','2024-11-06 15:48:41','2024-11-06 15:48:41','',41403,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-53.jpg',0,'attachment','image/jpeg',0),(41413,3,'2024-11-06 15:49:00','2024-11-06 15:49:00','','Biomechanics for Sports Massage Therapists','','inherit','closed','closed','','41403-revision-v1','','','2024-11-06 15:49:00','2024-11-06 15:49:00','',41403,'https://biomechanicseducation.com/?p=41413',0,'revision','',0),(41416,3,'2024-11-07 09:26:31','2024-11-07 09:26:31','','AFC_POSITIVE_RGB','','inherit','closed','closed','','afc_positive_rgb','','','2024-11-07 09:26:31','2024-11-07 09:26:31','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/11/AFC_POSITIVE_RGB.jpg',0,'attachment','image/jpeg',0),(41417,0,'2024-11-07 09:42:52','2024-11-07 09:42:52','{\"firstname\":\"Jordan\",\"lastname\":\"Esprit\",\"email\":\"keyaanesprit@gmail.com\",\"contactnumber\":\"07488228351\",\"pageid\":\"39214\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA444HW8V4WJBioY8Asp3R7qlEAwynAhGKcHr5ZIPi7fViqDQuQzZ04e5HlvoOdEOfXCx9l8Qv_eiX-IQ3XuiORYO3XFQUga1PwrZnxj9FJRYuexsdVdFgDDbciCZKwNYTiwW0w4FMjcBlTWBcM7Z7zWFs2t8OcMdwtPkgEWeUGfVP1P_5pjGQJXIxfFQQdmvk8-6D77oa5BUl5YyRPUaCQROrsnijueZs808gVl4CfnuBPQadkDAgP_RL9bx8touHG-wAUyY95DoYEakFjgTOQ-VD1hOe5R2lBBdlf_5TQOOEHmqZJ9udu3-5UhbBklS8w5EMjDoXGfPR23_lsJ7iymf50qr58goUiGGDNT5n7QoFMt4ZBCJ_wu5i-Nu8OfG9zdVfoOWiYPnPoC0CRjtdXDfJbk7JP9Yjt4pLvXEXpfVuc1SckCOVr5FmfOcNSf-Re3aNI99uhL5aYWeHQYTsB2U9Vq6ReHpDPc1crGyOI8QGD7vhNn8YQM9l7o50GxW3-lv97EuaJQi5o3DkzAg3ksiytsLKeVbN96vDcVv8ANetku8--LZFGke-4h6lu83eS3jqp7Xvw5wzN-VWl6JF27wvzCdyeuN8JyyszqAyNpaIT1lH27-3mZ9ZBBKC1ik-XmxrerNB3--UOTAdCoXwHLoEbj_t86r2UXFdmKrRR61jCRamIeft8Ruim4YerWESDH88KmfKMkUWMZaz3X5xBluV7DBPFJA_vyk_hVoLuQ8l1E0O2fpDHB6efR1PStTlVDuKhaMY6U_HTIfmaHwYD4KX3CL-9NWXblhAqDCNYcefWf84kSF1Yzy8Xbq5_wI0Z7IXi7zPmlfq5fPa-5WQvCUTPdwqlpVKfTEwFulYVPktTgW7-NqptarkAFja41XqpOWowhVfGhNIIeFpwCLXEkhM1L3sWe9LPIfkqZ1yUjbJ9VqKN2HkVVZQ0fVO5ttzBSh4-aWnpnle2Sx90cx498qYZdYq1BG2iONMcFbHuJdW2Ti7zC-AY605TDX7oSFMnN30ZzryjGN6QTjABDahpia3wm8Ri8M6RTiP8DevRvBFrR709x_zFfLtWJXU0iD_Dr-JPVoSczcAljQZ4macFePDrKTTjCbRxIlfhNwG6FSPuw8W18uWcwb2T4pAlrJ9dp8FYKih6yJBt3fmaVVoOaaj23aKVKpBm5qrHzpPZ2K32Tb5u9U4Q26c0ApdQ6v4ItvaeJygW1lXhon6VvEcmrASoWftkLOEjYqwTwev9P27selG-H3FDp6IaFMDUXoAm-jnEsg0ke_E5qyjAmdv2kWGIMDk7A_mRxby-z8MQyR7zzLcPH5uxqYZAjyLr7iy8OXzpZE-06mU0WZBfXvviT2HwotPvrEQ0ERIzpSfpD6IocbEJyog0f1EemnTGinkP7OEuclu8mO50VOVc6GRMq1aXstDzDlJV97XZeykqnSnHScUMB-QW70AgNCmKBjcQ2bqGCseoonOZbamqxMZz8f1eRlIYuhKESCMFAKwy8aa80ikW4kyS22RiPNGmKO8ktmhR_-y9NfWKbiz7whXP8QCcHCm2VXYhp0KyVSZQ5fl8VMIvSNgyiKQ0HLiiS6E-OTvSKcWgzL61VjI_wE_0O1dW8A2f7krcQw9AcbMInUTwrDBD-TKieD_DONiEgs4AGyUF4RhPwu34uPTbFwgiTZ3brUF33IeNoouJ79wlze7h4p0usayeAAjzZfo12yd5t-ta20M_xKDtgmXXZ8pPmHRpdSqfmlrThkQ-Rc6ekRbn8gEqaZ-diAPOZnYgLkG7aVaBT91yfiKh3ByKy5oHuisellSNcjVeoIs07v_3atskXVIQlmqBccByLNJKTA3o9MbFedKJI55ulLBtvIx14fUXJNKg6oJjVKn4zFWFhgmJN95q7ClAt851VN_Mbe255kNLIkHT7R80qx7COTuEB6BUookmMgT05_ZKN-HbA7CWZFycEgKVoA1AIyD7bKn6n0C_bY6co8noS2jU9sv_x195Xzh2E3xg2csD-0W5bVoLVZlifY36TGf8J9_pQbM-9g7mKBoo2TTMBZ1pq1x2cHCqRgiPGDe5dAgNdG4PkAYNJizejOnJz1d-kaVX8brni5y0KStcHy4W0hzbllgahniR_Efa6rKwwQldeBzPEUkBbFhrkZZSZ_P38uwSFhhW2Z0iX4CoEN9F6r95V3TnYOF1Y4Ae9PirSGdn6nmqZIzTn4OobZE54KXGV7dCmVyAdsONY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672c8b913b6ad5-90348817','','','2024-11-07 09:42:52','2024-11-07 09:42:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41417',0,'cd-form-entry','',0),(41418,0,'2024-11-07 09:45:02','2024-11-07 09:45:02','{\"email\":\"keyaanesprit@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"Sw19 1uz\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5-zYQuwh02u_IaA9tkpdJb0lhDEzpc5Vyqee44i_83NQIYxoZPY_1WPPyQdvwe3XlGLDXo7502J46yM4vbDGKtGyneApex9G1qro-kR7FgOKgXOIbVjddCtZCmKSjqoygAMbNCGW_OYhYPXFg8ho90HcbFkLcTDmsfezaCO4n1YxBH2xc6umCXEicoYcNJxXOMPZ16pdFPmB1fzxgBog5N60zEV_9dVTCb8wWPOrRVB2Hbcth9aI18ap80tWe1rRa8VRcuq53ST3phh8eCLpR5lzyszPcXTRDMKMV3Yj55YOB4n8zeP1LNMXkm99x75978CzgWVxAqqjVcAf3zUcNHX7SBXDD8HSFQSH1dRkzA7stFzflQqjK7w-VYB6t9WfuQn2U6Eg-Tdk3-XsFWmLNpKUKJTKTqfZbOziLP7gpPczncgBaxGh4E_xudwQBCQJXPVch5nk-IbdVkUX1Ju79faS08UPx8AEmAIlsvwUFmTYD1CawRvByWku4wGtZIw3bXPm3Sh6ubG5nrwnreosiBT-q542vTpnn6RkJWQr5jybSZ7TJnZs6rOGb1htJSPIsIXlB4dEXf2vfPdm50S8m3Lv-wkwORAlJSS_DxjFBiRjFPCPzIhUVog0SzRAwh2J1aebSzPgD-dzB7tIC9fO0JZQfwLreYzOAICprNvFjG63yuoyCDj3jcbbGmxYDUsfYBN7Z8uHeuNmwv_GCG1JTwBZMi9dJ45_kE9c_KWyYgTXFcA9RdvHO6ytJZ4QxshVznLq6FUpgYfzPzt7-K6FXzoR1qWdxOh9qjwGUOSUM6iEV_PnEMbyElgfJc8U9zQdoEANkJ9ST-eJhIQOvVwvxLeFUdpndkz7evM7NE95xZt7zq0lQ0cli2Owo-vwYhc4iNg-pYZrvorJsHj6htyi5r6KdBFHmGNHzIqR61KJ3enRpMxUvy8dWvFwEcE-ScTlvd6pQodwL3SA3j14zayDnhdp-y33_sp49scEnt4rq9-1vdQFqxGpVitSqKblFyPU0isf20qQ3T6WgXugIlgyPOJp0WYP1vPGSgobdl9G-3GMdjZO0GPeCKmYvc3ls8Ztu7FdYJMvv75JREw4dLfcD6DZbJPfyzJNxuiDoDCdGdhIKhDcM0PBaTEzHVY_rXOdjZtem1lxjC8tmnQ5-zU2unM75xd7cbCfWuxcw9MK1mhZFiC4-fz1lRR1Xk6-V9GX0e3tHKUgbdzUkYSjv7hFGzKf6ezrSDNiI5Ol5LSm3fBt5Nt_SAqLfkGqrgspkYyOkMxa-8vQMqOiH0uJw7j0lpJAfeRlrv4xu8HrV-Ups5VKHBqxHPD7NvxXwhxNxPQpbRYEC4HEXDxyV1eu0B0bSNDcLMhn0TcrG-cf14keCJKx3KFuhjflEQvTxwSmKr_LJ__txGJBPOtuM23nN1O_FjpjJaDV_nGn3u2rnZcgCxyIdFhALQNQRRjcM_M2EbxTGnmAevcuTGG60Jr8raoDHSrNobZWm4ce4BjzO9jp3i_4QdFjoDapTZYT6Zx9K7VeckrCH_9rVRnSIvGB1o8bxr_5KFb00otuHnfcZNRXDaAgHW_vfnIqCOTrtSc4XoybAmqKrkgCzBuOVTA8CzOc9tdyaQ5bubEEMsY5R9KWBdzLmz3qnnZC_kb5YB9dQgrkjf7j0O5dhXEGVAQveoZa54pypACIxHTavHljaLO9V3PGrp68nmzTQj9AQ0ABXrxDTGLGuEv4-ZBVggbca9o3-cDdhh29GhSVWKhhBRv99ZHPvumCodHFl39tOqD6Q5TW8Y8x3sN0qOlLdupDcH-4mrjy8ZV_kmMHYjx7xitZ_X1lW3ZDsnCYUIwTk0ZEsWK-fBvk_ZgQRaRwQmAVNcXNpd9DkHfMU_JhGxaBk3hllAMNEDYqNFAbQWATs6n4Hu07QFj6wbvag1ij4DHZSVcldHiX9iOo9leJXlJgCBOPHZxlW3VOuzpqrMQUSonulJzXDWNN9BbI3JwRL6ERSTPBVusZCQSOCjPHhBAS5Kq5LPxr58resq_NP27v2pe9pfry8ala08sx685UF_pFpSdN6fS_2CbkzHLHy_irV8RxG67x_q919mW9R2DKl8mE7dJzkm_jEZdknuK5BsIS7WyUFwZSM2hGJiIcTK27CWD6968BTjdoxjKE-KHByJ-hBGjsSDt85JB2C2ZvhVj21M2ioTfN26OeLulkMFXPZkYy8VBXMfLV1AaMfhzlhu0gs8xmnOolFa\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672c8bf4e787d0-50574702','','','2024-11-07 09:45:02','2024-11-07 09:45:02','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41418',0,'cd-form-entry','',0),(41419,0,'2024-11-07 12:17:52','2024-11-07 12:17:52','{\"firstname\":\"John\",\"lastname\":\"Pollard\",\"email\":\"John.pollard@clickdimensions.com\",\"contactnumber\":\"0871632541\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/\",\"recaptcha_token\":\"03AFcWeA6afxLq58Gb2U9zRrKDxWPqZS-hQg6wlyaU0W-UK0t1EJQ2sV4tPmlCPuVAKvkasQVZyTnQZs2OO9X0oX717etHzT836c1x4WkNofDB4z_oRV-LSujKydr-clfuleDuJ5wGm7Ax07Eh_PTO6zUhqUZE90T8EnvVEHuPn_49RpuoZvnMEI-YMdxbFE-EcWDEBq_pOX2q-tjeUClZhCw_PcwIKyFauP3N35qifq6MrhuoHKCCivheCMUWdrhwgkI5Gl6RWufZ1xZP7Km203KaYeSEjpbSXSi0qWM6E9z86yqgqbmfhqxdKmEPyd27XXJPXWJWV3klDODL9_8ew9L_c1I5Nma_4h6uIe2uBLqdse5-rmhdDPXga4Qm1gAGm2vNTDzxJX9C3cPcAHG6L-e5Ze1uPOW3eeB2Qp-vsSX-bJBipEBSpRi-aQzMpJng1xkh1OV9Ah9GZ3jbv4-bzfUBdeWvkZXZZroRpzqDsxBSsdhbWCcikLp7utJwyBmBytT1v0Z3fnqLL85NnSsnkwvHNWMIrdo6BWdaNJ14wqGg9oYv0qyMpkIJyYJnZnSj0c6Lygko4n1VTzYbzTQj3LZ4Dn4bSHiUsWSPBkexO0_aaSPqSiAzpUM9oP9J0TEldH2ltr8jMVXGETGTdgrtJSrKbP9e2aBEcbthNdZ-7G4XFJEW2m2CG3iBQVzl0gL_0TYcxhuD3iCWLAU7apLf3ghJnoF5cFS5WhBYfDm6t5iiuz-dtFHFrRgmP2kTWSwEOtVp7qiA3Xo1XsbnjXF94sE1IPEaZyZhBQlB5y-SE5iC1QcFaH3gy1krjYuljGyAJeLFKHWkBAZtmUM0Uec54lxpUWWxcOKRZKOgYQUsRoDw4l9CfyrQR2iBy_QhyV54FErFV5kq-O8zjdI4SSg-zKutaTfBF-YYg919enKxmCedZhartYkeO3V5YRLuJhzSQc6hAT4k2AtCY6LjJ2oxCuQJ6BuarEWhDHvsSoNCfwVYxQrdmWeIUO75tqfB0G9KvuWIlwS6uMCyv2zQf2t-KnEj7f0uhrDTZZKkm7UjBmfuFQJldeIndqoUPBAIGa-X4WX2CfTR4z10_htQNZLStccM_L3QZcpcj6ixDsqpIcJxRvSEo06fb2oOMZpupCYN0M9kaXByRz61djZ2TKJtVk78GjKHQqSQSzQ1VUvvmLTNXqAu0QPmAkGgEaNEcBQaJUpuGw4zBUXwe8SGYINi1__XlrX1ZdBjEr8R4Z6Dfee2BlVZjK7BZ89-pRTJ_yn93fir9p5U_PxGPk1BE96QmWH9tgV-maXYW9ezlsKv_qg0LSmWq5Uzak2jGQ7_7dmz_L_XbbCvpt5jC5duL0FzH47vbewJ5wMtrA-axrXZQUpi0yilZcM8Axr259JMq8djffCJ5k9m75nC6gEz9vpbqR-k4ER4e88pgJa2zqaZb5fIkkQFoB-KUDRuUpLBHP83kzImNSNhkeuEiaTj9TaWspZEaP8-xtBzMmV2W-SbmVQ96dra5N-BV2xCIf5GaCuSxw7DAAsBkE2ncH6cjQheVoEvWaIm-5csEhomNIxVre-uYDChJ6bIWDM4IVaB9q-qu0iqRCEJD60Yl16kJ0BfPSe_ktBF9xyUTQGe4MUwouQTfNq1msaXoeLZZibFB0wTzGsi68EZjPf59TGp_Jgxr3sp8S-qXvCU0-VwJGMBQa2Ian5bLuG2CYnwELg36gOEJFZwjy8kc1umTBS3BSNp5CTCI7_WCVAlET-IS3dURTdKVIsCiQJ0lNNxRgi8r5B6nh1e8uf1isLW13S48jiwa6VcA-l58B6eAgSkJ-Kg2pRg7d3udtzSBcs8TAkFvCjhjNViYNdIVXmmg8bQx-uJrObxNNlQA4nNyRojHpD6Daz9bsZ7mliQqPr9VjPU2G-1VYNTpQBCbnWKXfX64rMAMmg_hJ11R-F4Qyd-_iLspBQadvJBYDGS745iMEuq54JKNZ-9hYm8abViMy-ouZdK00aRnsvcRVSWKPxqWmBm4aqUwLumZF9B2SBQ4QjDKtkyVJqqtcxypZOwCdvsZsaK4ELSoMCoONSXnWBOmoFnrCCbsxkIPP8yKEdCGhjVhNqoEq9dafPR-0oKE3Bg6iQ7NeL7TgEbj56otkI-88JjQaktFY8VAAV7N_j1XlPkpaAYqYPvmhHFdR0g7vat1jzjJYYTXA7HqMpWSx82KA4WUema020YnttvkfoJgwZbF0UU5BEkqREQ-yts\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672cafe8e15534-88715664','','','2024-11-07 12:17:52','2024-11-07 12:17:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41419',0,'cd-form-entry','',0),(41420,0,'2024-11-07 12:30:45','2024-11-07 12:30:45','{\"firstname\":\"Test\",\"lastname\":\"Test\",\"email\":\"John.pollard@clickdimensions.com\",\"contactnumber\":\"0871632541\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/\",\"recaptcha_token\":\"03AFcWeA4sVeSilwcVae49MC1mrl33BOpPEzxZWs8FCQXj0lg0z7XneQXhzAI7L7XRu-XXBUoSQ2Nt5QVGSE7rC3nAbvA31xqIGcJ6ivNa9lnq9Ol88iP5DOz0JjVZZHBb8lAcFGiHqZTH2ue-Vz0kL50GPyVGchH7G-QCi4XkKpUaI6bgw1TAaLPRjmQg0NtaiPrce17aRT9i81uQeiJPunibAjATqWHsMuPpuSkRX9iF2Q-B-OBWbtZsI1FXQTBu2DdJJt2Cf5ajeq5G_yTpnrj8Ejh9EBgcAeCFdDucSM3DnL57qQq5PgUEuI2UhKYa0mveaJkyxFNrnYQ4eDdUyEbwW32ZYtyaPLVd8qX4GPC2c5Gud08ehGIwLBhSVxfxNu4ALNlbe8xVuWHs4cABzEZnINOuvsAsMEOKCrzOpSaDm5lZ51J2QPn6OKzas2Bj9YWYl8-ekcZvCUvC-hSquWEeOtrCsX1gtrruTCxH5zKmYd9XO_UywmK8NhXnUU7PMLPXx4y1ZPITK_IKHUST70HGp4ixce0hmJEs8bMHK3uUQvCtfIJqeSyPnOfLMNBhXqqd7Q8vYoHMPXr3-sG1XI4HhBOegrPGg6qFI_zUyUk9EW1UEvo2Y2LHXlBkzJJWr2sbK6QPi5TE18KK58nfUREqXHGLfxtSi1yiXlcg_VEt-oNTIefSJ9fu6iUZVt7Ywl9LlIuYSA0HzCm8uN8EAUmzmBD4SetrUfVell2emVyX-rIsRHDZYaPBwGXq0GgR1jmjll1aIC9jxLiAoUhjFsTwN-KFiRntDA6lqNL16eTkvxVXgqae2Jf0JOnV0Aq7hNI1u32RqcfSq4i3CilNTiIOmJgDGX-Ohdw1p3WsDzH0GTClbfcEVunEzB3-SXXhIHwfmOGeyIJOtVFhHchOTOeMDIHumL2g-sJDUE_bRucl4QqGGowZtzNdoZrlQqSGaciPu5RfEBp9MAUZkixZSIdPHhYSfgfnXvRxfSs0kNWi_nwFKJNrgUzZZA2PqMhS0MrDq0swsPSS4F07AD6_pjDfH5hzCAuqTUdhtCPza_qKJqfniOp25fWVd-nNON9NFHZfjhb8caw_iJXMY-ZtVfLSiU_whf4TzRfriVCna2VtH-T6X_qRIGDAOIiFGoRf3jNKorpjiPw5_d2GB1PF-Jfmav5IBiBsUmTAnULaj2fF0CCAsE49WeGwLW8MI2uj4q9jItSMguyrXSOr7X0S76u9aPamxijTIu8u6xZy2T-Dy6jQh7j721jViYUMZSKuSSVqy6GLCzxJFuGmTdNYn5uugpENDN4LUcCMVakEmItvwmdxk3dZLohmqUPJeNXB5oQ3J-I4W0UjsL-KFCAHm8qfMHq0BpoN1SUbQELSybO7OlNiYF1yk2YbOgzzhiLJiT_m6D56n23foQ-BnexwU4ZRmC4Ti7ojPUdFux2T8QBD-9jCzAVYgyexVq8W-NbQLVg85to42hEmdw9VI5HnC7dbDlEXnsqcGTPmfsi3N3vbSSiAWjBW2VyWpQV_KRy2YEBIABKbvNY5Ky_p9lRHf5gq34EiJxDw0F9JOerbFB1VoRmxQFVOr0CoIPt7YA5OH_mxKfCRzhKEHNo0_RU8qqqC7uaeYcRQ5ymY172LFK5TAM5rzV8DFolp6poqruOZFD3uarAWShZKRWL_lPlM8eOdz4QLwiSxDPEjTDoAmMuv65MDpV6iIC88ykKi6BtnQnHAfB4ROkk7rjVHbpYjoMUAVlilUXyrfcCYfLcGyu55Td5I5zTI85jJKJm7AsJGIY1bQX9HLmv6XWAAH6CwlY4ePG2gQwbyfuafivaktzktUi4iOuiE8XtQrfy-DkbOuAiAGe6D4THvNGQBFBZHAbMZZbtNG0jS1L4H9rXGj_3kwa6Dcse1Zr1Q_MyU8HC1pcsND4y1M8XzCW1Mfmgrp7i63vfR3a6B89T_cnNh3A7ZFRpPrxBKoe7MANsdetELXCXdYTiO9JXBvCQjuO1yNwo_B_V_ARzoL-dakFMsZCYkiVoDZQmMuhVfwHkR_y0papbxumxCJNh9bR4DL-zqBfj-Rq6apoxz0XJBFVSc9CGh_5Z53mI9n62nu40UK4G1jd8HMJ8i77FJEzjgnddP7O7Hu8j46_DenOqsJI0HPC5nyTcv8KNcyEJPC8gnNhTEssu3lWEOPuK3dBS1Ax3-OxcDUT-oHvchCw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672cb2eb1bdfc4-96361946','','','2024-11-07 12:30:45','2024-11-07 12:30:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41420',0,'cd-form-entry','',0),(41421,3,'2024-11-07 14:59:05','2024-11-07 14:59:05','','Biomechanics for Sports Massage Therapists','','inherit','closed','closed','','41403-autosave-v1','','','2024-11-07 14:59:05','2024-11-07 14:59:05','',41403,'https://biomechanicseducation.com/?p=41421',0,'revision','',0),(41422,0,'2024-11-07 15:02:19','2024-11-07 15:02:19','{\"firstname\":\"Laura\",\"lastname\":\"Egan\",\"email\":\"egan841@gmail.com\",\"contactnumber\":\"07899961051\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6gK71V2M8qv34M5aNgcwyFwhWbollwJ55FFnXaHg4Vj_fqWIEWcPFm20Ne_SCX0yhsjvUt-jIfijcAJIcj-c4AmRSWOAkZm122rgepEEpsUwizlnSZXar0j42quw6DH703e5KRzxdvKdMsKYncNA8QgaIa1Tnqplnlac8bGTA1CTm84GC2XnxQawequrpWDFUOELQrVB7WajjOhnD022ST8KQzaR3ObUrbFt-7H5HypfyLCLu1uGzM0HzQ6YiBH4EZ8FCul9q0Lc3WxZ_HePwV5d7-xX4XYA7NuPXBwmAVaK1Vb93hubLe2esBN5EvPOXYKs023_ijmqVNWmAD0OfJUFInKskFHqPrYuRf5wjYW2XGRX5nXwIElhwWqcrB1KNbL6oUM3adJRo-DKRXeHvfsJT1utb7UyGp0dWPWFtcIQXURwFC8qAXK8SJul4NuGgvKihf6bqz1ZeQyqKg4kFRN1-p4AfObEHK-tK7U8XPmGc8UZrD84j6PYLmD9hsyZAaURaU05X0KOCNpuYqeO8grBPmAW6XeZTuT1Ltn3oy9Y6c0TqBS8csy9LNEvCVhhgjJSP2J7KrdPUWCGyQ9EmAct0s2lO8j1piA96fAWLP8J2ab1KYXZLl1uPPwQSNET_vtJx1DinADj_bUQu2wxkkabKeBcxrVmrcsPGjclyjSRkGasDybL-8DTGresNxQzmKgj2DbnxB7ZiQlQqU64tPPj5oxJr3vhkmuf6R-En45Y5SYBFtw017o1t1TQaXSHndhPYHZKWUYcSJ1bCkOu2BEylDnuVlCYHiQEixPB5YnSLIl7H70c4imVqfWFGVuZjEJaAamofBKLVqLkPPsDFH46zvMvgWupXSTMv91W3CPhmpEPd9eojt3Kv8lki4oHNka9umvwDCtquPMNwc_j3V-r1XamDhv-ylsXQYyt2mqu0FhykyzTerHGlTV7ewo7SGrYIkhZZB7Jb1Jz4DQEhhFODK3kAIH5Hc57RZg0ApRaY9zU5RJRKPa7AbZ4_MgJmNZSHX9SG1ON-w5MV3RCo9TqvbhjeJhL6RTWxs7E6nmjlMaVWijBWRo-F76e6eW4rjOOMza3vCoNLtGy1668ctQMxRYUlF4Pc9YVlYpL5mzJsyzmA6BwMHWXdNC1ru8MM582Jw5jKCDpaUc7cexRRPqMS9t66mWJo3irtXbBFH0ezFQySRDaCpQvm86D4Yr2dnrB21tLK3Dxoi54fdz7uyFbNx7XWIIfkpPxvZIY7nxKi-XxBnSXr7Ro3g0MO33DachOR5kARtijmRXZGrEzsuMJV6ElIzlT6BqWzyaTb3gYUygLzUMy70jnck0A3ecqg1FGayfM2ws5j20T53mdqHVUTr2jvAy_2tgWmvdPAhXB0o4MZo3OJL3Xh_mFUNzU4HYg3vxG_F4MTR7kQ7iIYGyCK13dWq_pTT_fhuFQrkC3e7FBwReQrPRyd0S_XaBzXMVomo0KlZ0dmIevWQ75N4agiOnoQ_nPf-iJJhyTEG7GWxIWE8nFZ-LgjHMhSKRPYveKC2vzeFADAWh4duYChSWs48Ul5OVM4HCP_982jbBDq1j_dIvZ4QX6-DgcjZxQ9YH7kqHTmobApTdHkrT3ZjXFa1ymSoVVVgvQXO2RZKhgQGfaWDMdURHpk_V-2oA1PGGoP6Bu12xPOURTBothVgRdomFJAmK3lrg51feTlVFVdPh693pQGO45n-MheA0_og6d3ZpOBgnjddxOwiu0txTix5iYTxK2woatd-h17BNLZmn-GI74UtA7abHkTftcnyoWzMe4DbY2JcY63PPw5yZUakXxEUb4OEpr3b17heCj11GFetwQTIPGmrdZc9KYQN2Ouf3wRmXOetAtEExrDKdoWCpiMy31azLDWbDkILYK4DXyF6IzkQtOs8oIY7llJEodiokaBZYwRLEvn5ds2rz8lzvA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672cd641d29e43-62016867','','','2024-11-07 15:02:19','2024-11-07 15:02:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41422',0,'cd-form-entry','',0),(41423,0,'2024-11-07 15:03:12','0000-00-00 00:00:00','{\"email\":\"egan841@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"2\",\"currentpostcode\":\"Hu17\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7fahPQSBltdNLeO0cW7-ZR11UhsbqOpYVGBNxC38iVOfXJDx3KvC4ZarOQ5WDDeNqV6wUJlmVIRfbdbBG0_8HDxLP1kc1thqKLtyyLpjpws25F1Y3FV_CCgCGhYAU_DxFfTjGiZlQKL4yTvuBkQKhAXIU9GI2KPLg48slZzAosatS6E_mw9swxdY7F5ka3ijybUeeqysWFeNJo2qoFr2YQN9kk59noTgfQjjz8gToQ2WRlPFLgEcd-NUmEeM_XjeWyvGiY_S3jMwFiWbM7xZEIvJYXd843lm4CAFqBjPhxq_dEoJF5okqHifFSqtPjFJpaRiO2HWQlEYWpM7-pAtFTg7yv8F7eU462aJUWY32mmF7a1fvWcVLIQQxwcCrKr07jJBqilsv_-UwBaBi58SltDB-ZmdKtdHDFH5b602w-2tKH5q-6XVm_MNyeTtjt4Y7OOLGf1fvFZUBNBuZ-c8S0wKoB87w6JqBn0KpXNjXYVssAABrHYNL5083vF1iL_4xcvbaKjQ6HNSS_pfu2L-2WnxlZgu5_PV-6478vR_ZvHbyQ8zVYcaPIuHMYGQMJjxCAiYmDCZYTN0KPHRftbWB2cqYj9HkIelxoROxoWCb0w2F4juork4ZytMOHtBvgmY6nR4QZHguenDbvAo_tN6geN3KB4bPsYSeVf87xTgRXUeajYkTvKQeBKtyUEFvIhoKcdHAco-aixaB3-zGncQ6QDEF8CKWp9iONKaQYNtdkKbXbYtx0LU2JdvmhZ0XI-Zz11vCSPXvZyPSN4kk0ABjJ4i6Lqzlasr6eHz0IJjB5VsTUjEUUfYQsxglfg1HdDO8qu-XnYfJm3gksrMz5Dwn1B6Wp8cmsIxCX8SVYrWUdGQJpZotRAJcwlJyoZLiyJkKfGhM2GhDzDVSrBKmvSZDAcsjSlXGBHHuAp2wj1ooCR_gVVb_2jBMN7dryo9pmYW5DAV1x5DtF64iIXAXb1CNi4P7X9lB7_ZpX8m5sCSw7uIkr5ivPfa11JxSIkmQXUjx7K7MqIINVMv0SRxEZJb8YKP0R1beDdiM7-SkUZyIKmOEkcDvrmiyaW5a6P43JruBmyEhpkLO8Zw1qNSEM8JFdbXqjXV1ARs61_ArHFEnE-ShBibS5Y2zKFkRUrmG3pOKk8me03L7s1FR0j-ySJasGdjHCn4PTt4cf2E5t9r8hNnXiejKSRUfzdjmsxJ2ouLwCEQ8N7DyFt7qNk27MMaDVTwoUtH3pNiZ3NwnRg4iEEjwsQKCxoF7j73oGJqOwsubqcgMC6QnQ2r2Q3PK9N5dIkR3T1w_1lVQr1kMDvFsFXx0SKghA8PNYfNuCM8Nv_AF0vno7uMP_bFNbm_IRSeZuXgfxf2QfaUqGAgWUc2kMqVaj-bbGjHb_KPeOVNhgAjJ62U9EPdRVUNKrV6Ky8ELD4EEWA4-LuFCNRFqJY4E1E345EPjtPilrY5Aq8O0EF3bq0krnh4JVWEv4h-P-1uyPCV8exhsQmAXXH56V6AV8p2LFpwHmXNiG1dSz5-oUirgiZRvTguZwiVFug9rSnH7APioVvAbnKrRo6bfktX7uxNzYFWqSA8-MtjfbwnziP_hHszQbtwc0r33hb8WyxwxPB4mBbTiEJH6bLeHEaGh2UvznJ3nK3N8zhyxWkKl_drrXBoZFvqneUUDphTyyvXxpY-5-XoaIjw8KjbBFKkrpGWPNSNL8RpdR1FDcbotMLbc68-5rXMxQh9xxxWq_qBQM6ZjvcgfnD6D6oCZxQWONFynasuKNDmsAGABKnlHYfDOlPxPWAI9GqQUegRVjYOqqRdjX472mioZISab5fArgh61UUEnBWPLJHRt56m1JkNMXmmQtut8RSzGJw6NMxabYXT-jZkweLwaMgJAf7IPzmyAEG3cNl-8iRFU44nMADtD4y5syu6oDuiw_82ELR1zN9epB9xo8i4RHS35KphUv4meCvGk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-672cd6b0f3d128-37206322','','','2024-11-07 15:03:12','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41423',0,'cd-form-entry','',0),(41425,3,'2024-11-07 15:37:06','2024-11-07 15:37:06','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','publish','closed','closed','','level-3-sports-massage-diploma-in-biomechanics-coaching','','','2025-03-14 09:25:10','2025-03-14 09:25:10','',0,'https://biomechanicseducation.com/courses/%course-cat%/level-4-personal-trainer-course-copy/',0,'course','',0),(41427,3,'2024-11-07 15:39:49','2024-11-07 15:39:49','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 15:39:49','2024-11-07 15:39:49','',41425,'https://biomechanicseducation.com/?p=41427',0,'revision','',0),(41428,3,'2024-11-07 15:42:45','2024-11-07 15:42:45','','Sports_Massage_Therapy_Web 45','','inherit','closed','closed','','sports_massage_therapy_web-45','','','2024-11-07 15:42:45','2024-11-07 15:42:45','',41425,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-45.jpg',0,'attachment','image/jpeg',0),(41429,3,'2024-11-07 15:43:00','2024-11-07 15:43:00','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 15:43:00','2024-11-07 15:43:00','',41425,'https://biomechanicseducation.com/?p=41429',0,'revision','',0),(41430,3,'2024-11-07 15:47:10','2024-11-07 15:47:10','','Sports_Massage_Therapy_Web 62','','inherit','closed','closed','','sports_massage_therapy_web-62','','','2024-11-07 15:47:10','2024-11-07 15:47:10','',41425,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-62.jpg',0,'attachment','image/jpeg',0),(41431,3,'2024-11-07 15:51:09','2024-11-07 15:51:09','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 15:51:09','2024-11-07 15:51:09','',41425,'https://biomechanicseducation.com/?p=41431',0,'revision','',0),(41432,3,'2024-11-07 15:58:30','2024-11-07 15:58:30','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 15:58:30','2024-11-07 15:58:30','',41425,'https://biomechanicseducation.com/?p=41432',0,'revision','',0),(41433,3,'2024-11-07 16:00:10','2024-11-07 16:00:10','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 16:00:10','2024-11-07 16:00:10','',41425,'https://biomechanicseducation.com/?p=41433',0,'revision','',0),(41434,3,'2024-11-07 16:05:34','2024-11-07 16:05:34','This course has no formal entry requirements, all we ask is that you are over the age of 16.\r\n\r\nHaving a background in heath &amp; fitness would be beneficial for the course but is not required.','What qualifications do I need for a Level 3 Sports Massage Therapy course?','','publish','closed','closed','','what-qualifications-do-i-need-for-a-level-3-sports-massage-therapy-course','','','2024-11-07 16:05:34','2024-11-07 16:05:34','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=41434',0,'faqs','',0),(41435,3,'2024-11-07 16:06:19','2024-11-07 16:06:19','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 16:06:19','2024-11-07 16:06:19','',41425,'https://biomechanicseducation.com/?p=41435',0,'revision','',0),(41436,0,'2024-11-07 16:09:19','0000-00-00 00:00:00','{\"firstname\":\"Alanna\",\"lastname\":\"Oakes\",\"email\":\"alanna.oakes@futurefit.co.uk\",\"contactnumber\":\"\",\"pageid\":\"41425\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA4UMpGMGNwHwaN06SE2pYAHiy_lhgcyxZLgQ6ivQx8lJ3fgV5QMQLa429F2MF-sSe7vTak_agT0TYBnxj51gYfLtjE06OvSpqjOXLaGKmDHCBw-h3RPNKEs7FKdXvBpuNeJbKVlpvtf16aWNaNrj98NoO_aJZswl7ZEX5RS2-BN8HXdEJi_qnp57FQ7sQWA5w_qJv4lyK2NFZckC055TLqifAYP3i58L-vcFpgASKRH7KDL-iw0j0FgOj1FSrJwnvn7T2KzgIhUb2kPvNJjYSGErGFqlRrHaKe2cowb3sQQ-iXaZcJv1-Q7i0g97xb3w4YAxmugdL4F0_PIme-0ArgvDGJSD2F2gnDIqAYAbqwPWXKzDg6L6jYWT0IeznCektrZWVMfOr9yTElucZfNVf6hNh7dDMy56BlzldD3VYr24SnGHuA2JTAhzLEsolBiRV3DAieS7p_vgTwGzG3JB5Jicf8vNk3frEFUytX-pRzxlVh40d1gGcH5p8hIwa_7NbIT2k49DlyPLPGfFll-tzAdsVxjTIu2uJ39OKFjpVd-as3FQlWz-peXgRsDW10f3vMZg-RtxsS7ibsK5JZYvUAB2_1y7VnPqzS_GiUSsIr2pLJmDQ92RN95PeCJXInKcvESzjywpxUdi1UuPhE-_z1Rfb9OEuvTGE1YLiGzYjGx7W5Bm4XYlChdlXLVPK3au_cEOQ04kjYgtU2YkXEuidRcFBfSmJhfh5ib94cfhAhnSXMaaev2UZLmIu-a6SGnjVeWWdNVMWjyCtKMqJnitnvvgmKCN9mhJ9lvdzXqmUv1nBmUj5wo7Lfd92vWki9bzEL31iEs1WQ2NwG0GYvTO1zSjwJWaBjo_LmZLqB7K9xxxhYyZXnx5Jbu3rziXLgSN8yVzYY8YVKKSbhOXAV3QNqld-E_iyKSM45HVJtwL0uw5J94MRPwOysJUD_4geMylOZlvF4CNUoXJuctIfw2WYyjMu7Y1T1puTmtKXMLNyrngHG_XtMaV3HmJRY3nVXtmkyoS4Fshc_EIE1nErWiSTFGsCNKEFsuUm8EWoh7pIhZIXPbR6z_QrclMwqeF1wOg9EHXFo_exwHaYRwCaqTXZgURCNmWUIU4kCPpBnRp6Z5vaIiZ_hFpVieKbJ0TRqWnFxmaRo-nWY11r3EVZn3R2bP7-Vp2-sonDNlHQqvJgEntlLxvL8RcEb3dJuwz3cpsJgGvX5h8aO4oWxWAkxxbISf6Y-l72ZPyGPAdqWVX17bX4Hy8cVzH9DJ0nIPEjmRxurCG2tAmemfsby06aPK4_DRNmcVwZALi0vrroytbg32a066BMNF6Jp-TLFeGOxxTE8VVGPhauh_IQBvWPOGVwUspye447rqTWxiy4C2SZVVrNN5VNCBoDytxxv0w5-7kTf_0DkLnf0V0vygMO8q7RnwRbXId9q0hTR-v6wDnzGh-XCpooFvmdrLuG8BbLlupHkzLXVm_ZbCFvx9pDbIiBFu4_lp7kJgYM6agtm_bxVbSkRnnWvW-Riq7Sb78QNDwZImGk4g-9tG4pBOaU1dN0QmpAaIR7siQ_mrCqOh8AhovAC2m5Vgulz6iD_Oz8t2MoWfN8kN0Rpdn9Tml75yluEjiIMRGhvKcFMe6oEEQUevl5KfvtT7be6DoPa4lCg3IAPHgmOsOYxmnoyvyDJkxME9BEkMFnw5bBoEHEKKlwirPMiuQXPnZ0D0QUxPsxCoS2IdJKtaGooY1YVwbBcgewLNlbuGFXe-V5PYwxYuP3rz4QQFlf7ZCz1yuvhddxnGP85Csf-JmhQ4SKpQMITUrSMlgsXA6u_gRtIC7F6mijUNJ0A7y_aW4pXeLDMQksEDHA-sLEDKgPCQgHiqv1MjWdvHLJUBOlDR9hLC7N12dCt9W8VPmtRjN3_DODPi2eBIPkwCIvPjds_IKR7_3kstWXQr48Z9oA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-672ce62fe8dec7-03434684','','','2024-11-07 16:09:19','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41436',0,'cd-form-entry','',0),(41437,3,'2024-11-07 16:11:00','2024-11-07 16:11:00','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 16:11:00','2024-11-07 16:11:00','',41425,'https://biomechanicseducation.com/?p=41437',0,'revision','',0),(41438,3,'2024-11-07 16:11:40','2024-11-07 16:11:40','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 16:11:40','2024-11-07 16:11:40','',41425,'https://biomechanicseducation.com/?p=41438',0,'revision','',0),(41439,3,'2024-11-07 16:13:03','2024-11-07 16:13:03','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 16:13:03','2024-11-07 16:13:03','',41425,'https://biomechanicseducation.com/?p=41439',0,'revision','',0),(41440,3,'2024-11-07 16:14:48','2024-11-07 16:14:48','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 16:14:48','2024-11-07 16:14:48','',41425,'https://biomechanicseducation.com/?p=41440',0,'revision','',0),(41442,3,'2024-11-07 16:15:46','2024-11-07 16:15:46','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 16:15:46','2024-11-07 16:15:46','',41425,'https://biomechanicseducation.com/?p=41442',0,'revision','',0),(41443,0,'2024-11-07 16:23:15','2024-11-07 16:23:15','{\"firstname\":\"Monika\",\"lastname\":\"Clough\",\"email\":\"monikaclough@outlook.com\",\"contactnumber\":\"n/a\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA63Wy-FvLDeEba5lGjWKXi3XWQK663bpvdH0gN48_ZF1lR4HDO0A5WuT0IFlngPrCtTk9aNL9bybnxecy_UKJUPCvdKyOub_hkk2iL1lqEECV-3VuZSJCXR732ohQtw31v_e_p72_dUxQhOCmwsJAK-kQcOiqVT9uFalA4zuaykGyKxIGFzbkOaCk1WiHWyenULIzzdOsiLfUxCJY_AYHS3grsLnT2APgImY71fqHgLP_1bQVNXlf9kE6z1BNTPvwiVeZXwqvTFxllzW2vXutPkW1HDfmxX1GwHUm-ivkp4mK3libgaj6QPpT5f4vIDkx_dzsZziclsGCROaD5FREldd-V9SKaEQwUd4Mnw0gXhwQgT4riPJBga1EHmw59PuJzMTayIyiA2lrs-udoW5HcH2aR3DaqEXqHAn0ahgeAe0PBMYbbty8ZhUHF9jv5DGlNxSVxmInMyQlLCCogJ68bBQXiGrVvGFijNxmE5w-8TNXdeXUCXOkbmTnalepw9djnZ9tUH99p3JQJoEl5TjpFvqlbksF7MsOos6UzhYoMiLDMxrETFaVdVJF0zgS50Q8LxbVFQNsIEUsNswozGPiJxXCSA8PYk1HwNEqfhSc7vFckAXkeZbKzd4zTkNiPAeL-7uiSu5949r5hO4KgKPeEvu2HNHwPQLlwlfQ5UEpj5mSgA-N343mo0rWuMAK24mSFXSPon6nMCRn6H2xPGOi-YDSAt6EI8bv80F0yE943I9aVkrhyJWUNxTJqezwvItf76U5MfM9vWDZNy9IEC-BcueeHvWsslwUVMnIRwV6o6m93AlG6ZM6ovYNpqxxomsJRY7140CTrR2AXfhR5KW8J4eGoows3um6CKfR5a7GLn0sJwDhBtCe2TTPQicckGjrGBqlkgm0U6fI2eAmqMHVl_gLjcRZVZAhCCnNX216W8hmY9CubUMao46rquuDszm7AC1MzBMZCcWgj8Yol1OJHUFSV-oK1tSeFDN86KsVl9QvInxLh6n7ZV4hwX6BaOPlF7T1bJkjEqu4YdWDdFpA84RwXU8r-Y2eCpxJMP9FUiEvkbmLDcV4sD_ilnH9kHipP3gechMLvkAqTMh6wh_hn6AkBs2diHnZzaYTL9WaCaLp4dMhut9uL39jCRJr6gwujl55YOP9LsHLqvFAnhGiqtjKFIpoBxntfvx-dZdJiyD2I7n98mYU-4ez6wYkvNOnjVqiQ56-o9EmE6I7Aw80AQiHl59_GROolzzGls035gxb-ogd2u5BVE5xhOZ6TKB1XqGVeMvHEnm2R28k1zVkSpHAGu4HG-rPUhW-4twgV4V2bAIkKWRCbNAmTr88-GJaOweCn-VhE_f_f0rOoOrXUeP9l-huoeOBKtQsaXLcToiaeCHh0JqaqLFDV-gjfSHDtfhjVam-UHVGY8Ff3MfIxZXtd1UvahTwZkxaxSUQEthvtu1elU7oh-fKjPreQqHlHHJ4D4kC38vKhcsLqSgUtC5j0Zwtny0RuEBTwCzdQjohnxIPqk2X99eQm1KNi6mBLsWr1rrA3smx8qq17WMXYL6ZN3rvBnk5wIltyFCoXAg14Xvz1-jQsKs2723IPeUuKSMcVloDOM2t_XPeJIOmkraay-6NgoAmAF6YCbMp7wiDSGHRTPYV6WpSksgjyQu0hTFPE5GyQVan1spv5hshoIxWbolHshTm1IR-Zi5YGAa1J5DaFEQ0pI-a9DWmxc47w6ISng8K3yACiRtLjiN_LM9RjcIY-ruX1yyBMFoQa3P3_TI2MkLuVIC-v97eYqgGFmTTyk75_0BKwgRR1uraCm--jYl4_cByQm0Vs_HpLVQbBttOr-y_KOErNMYPyMkEGuF7Z2Sjr09AESXWSN_QUOHCVdLXafzBMJeMnSwGenJ3i2M7EmBIGhJRtnrdwfteUD4LJpOfZHXikRSyZuTL5ExIMtOalm3wJtKYuqX7PkAWZQPuxwNYL5cWRlwvXdK8QK7P6OdyU_6M12jptog7jOwpGLkg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672ce95c94ea07-33400361','','','2024-11-07 16:23:15','2024-11-07 16:23:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41443',0,'cd-form-entry','',0),(41444,3,'2024-11-07 16:28:21','2024-11-07 16:28:21','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 16:28:21','2024-11-07 16:28:21','',41425,'https://biomechanicseducation.com/?p=41444',0,'revision','',0),(41445,11,'2024-11-07 16:31:17','2024-11-07 16:31:17','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 16:31:17','2024-11-07 16:31:17','',41425,'https://biomechanicseducation.com/?p=41445',0,'revision','',0),(41446,11,'2024-11-07 16:32:15','2024-11-07 16:32:15','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 16:32:15','2024-11-07 16:32:15','',41425,'https://biomechanicseducation.com/?p=41446',0,'revision','',0),(41447,11,'2024-11-07 16:33:11','2024-11-07 16:33:11','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 16:33:11','2024-11-07 16:33:11','',41425,'https://biomechanicseducation.com/?p=41447',0,'revision','',0),(41449,11,'2024-11-07 16:34:46','2024-11-07 16:34:46','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-07 16:34:46','2024-11-07 16:34:46','',41425,'https://biomechanicseducation.com/?p=41449',0,'revision','',0),(41450,0,'2024-11-07 20:45:27','0000-00-00 00:00:00','{\"firstname\":\"Gregor\",\"lastname\":\"Gaw\",\"email\":\"gregorgaw6@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"HFYjRvcU1LLEEKQSBaTB5LTVUHF1gHVWcJNDM3P34XbCocC2snIUQSfTQCeW9GaypcEEMsBkdtBkcZUAdSSDMoABB8OB4yGUsgQQNoaiY0W3c0ODU8SidnRBdDfBsAQBpDA1xuSAFuchZvJ3kxXB8_IBNSazF_PwUhIygvEhRsfxZUCnEDUxBcUB9bRBEYYiRfbmxifGFFNGxXSTsnIUESfTUkf3UOMG8fDUEzEFAcEVAZe1YUCm1XdGYbSWFDU04UbQ5_RgpuVy1vYjMqTHc2F0YfVw\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-672d26df73b2d4-88318337','','','2024-11-07 20:45:27','2024-11-07 20:45:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41450',0,'cd-form-entry','',0),(41451,0,'2024-11-08 06:37:47','2024-11-08 06:37:47','{\"firstname\":\"Austin\",\"lastname\":\"S\",\"email\":\"auztin931@gmail.com\",\"contactnumber\":\"6282700141\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA57G5BhDUARIsACgCYnz2DH_mnVTpRlj2yXzdXEkWQXrIKJ2t3sgSiaifS3eAfCGcRKHxYMEaAvfYEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6HjkE72UUYZKHAAkfaGkuk6QpFfhybu4FRMzr9gyPPJdTIm4SgtrEz39p3aeYqaLBDIKuBGW0GgMS6x9kdIkvqe74D_ETTUhAwqy1RZql3_55D2ET_d_24NGX85bvAQv38-hneyycJL7cxSK1Gbu-AMMDXLlkD3LdoE9r5kVOw7sl92A0C8jRk-Z7qv9hZ3zoC_6gczuCcaLPHsm02HsrzOxpFuESsmTaqqUvEyaUp7qQFp2OJpQjYTt3lSFPWkYqQS1-1O_-aHgKJayr_OJhA_qv6ht1uO-wZwf7NDGcZTHUNjmj-BeDQFr6s0xauIhEQbZ8a4Io879pYBoE2kp2iLEQ3uQ5iVYBUwloDZbSYyWIzBAj3CG5Nc7v1RRxxsNt4AAP3ToWo7JK19Yh-WU2xhEFWOZq4SLlbD5l6CIc2xyfVoA01vN-pNVQePsNbRUDaqeh-3pYNtenkDFYVFoxOIZEAVmgUn9f_Gb-JQe6lOQvGQhWxriAl_XLVZcuRc0mR8Zl3cPyTglvzAWrXbWwoOpmUqSV4qiguip7nJs-Xs9jwa0TM0oaHGkCrUSLmaLOMuQkyTHGdM0GxaEOLcVIEOaliLIpN4kgsoDNJnsTk9oWL3a4m0QFlbLS690CsYWEKPlPjwo1ELaVk82hF3puIgj9b_PDrZuKmtdsA5YOijeqPbsX4hYYJKUNrSqOBHpjakXoJ924zDABWVFIBkQ8ysjBo-vFWRKrEzSIrLkPIfBmYHxDAtYzeQTevHRH0o0xn1lbd2AKcKVSXM-0d-nGGky9t0go4R132s4IHYjFE0RTNYlkijjKiFRfs-Of8foumi4AK1y5xBIZdNeK-Os0HWFi-KgBt3IEb7kmtK8otMo-MuRlvbucQNNsJni-Sp825OC0fhxyiThgPf7EuAjM1NkCGZruI-nhX6CTDPMa3zR95VhVgcwANFeo_UHUkPopP7t_9mPX6s03nSpX7lGAJ5SBs0vUlKM7pDKXwLlxLNKuztflT4ecerjFG9GyF4Mz2dKmGJYKbfgaad4zBpvQkpdZbN3wL3Y0o7ahLzU6rKCofS_iqARvOlrSjjjaIGS0H6y3PjWP53OzWR41lQ07zjULnWZepFvgBd2hX57tZe8Uab8U0k6w8DrvUf11DxHow0y9t8xN-F6Zajaa0Xfq8qOCwF4rE5_oOzXgDfzzjyOvokg6_IwXlsC7QZMXmNSFfsr4q5kPXBYRl6DueQy4_35RaoCGmrD5q-AFylTTGHpRkwS6wZtknV85V63_Ma0Xp-UrFd0LpmagQBKZWERw4SZbSZxkPzC5NB8wdRPe_7REeK-f8jjJLtcmGYdtam7h7UxbHTBWkwWI-kUB2z2YxYGtJge0LVTMB0LnPa8-1IDlr12DCAsHc8dxtDtElsVFbpQzXD4-9uJK495eNUSKBxraFGYhclau4CUcH_yO5FhMReR_QMRqKWTrnPVV8_s1thZoZbEZY5Wq0A4g0j1g8XdIYJtRuaB5TtkTQEHP0MPpVjRllcqDk5p_dvkeoj1P7dGl2LWbf5Ktwek_ldCV0LILDtH3hYNkYYjRcTQpnR33E-WA8cIaxvmu-PnLvDAC45rMKMmBX0vZquHO6R4pi4AARe6HVJ15RR_fT7OBKsCapKUBFntSYrToC0qBjF94FSRB22IBfwCLPdAZI57F0ZWChuAeQCWJqrYMV8mObNkT1PnF0ZuUukNlSsYuJO400L3w8hSXwalBFeDf6ckebW4F4tuA1hbzNU6C2VruoqJtT8pqmds1vXir_6s-dF1-sObwIHZbyftzBJpKf_BribJ-fGJA-hM_RvjsQTHxuMstTe-HSeJCjlUhOBDz0uZ-QbCxpnXUlM4aZEjLZpIZZn0GOrDaKBC9WksyskvxCBfcdtCeuZ0O7b4xf3V6zstrNG0dlFityPXqoihkiXM4iDuV-bOtGroQbrO5R1oY8251Wutzlbn7T-LU9i-4DDSIwxNIk_2OPykr17zmpKcbvj9snAk--B2yZ1b-us9wAeCnFhAhhboGwnOQ8PWsvwTEh9R_UszVkaCk6eAXHobk01Zb0WauYfhjO4Es2kMrSVatsqkdZwWJLp6Tqq-2wki01N9xNifusmHela6V3j6jRClznJ3Kvuv6nE531jamB9QUVumBFmaYr0fde19bOw1YXD-oX7z8CBYikr-mNpQnS1etpgleib1aJTs-0Eg2krhWVlVo\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672db1a98ed1c8-32856114','','','2024-11-08 06:37:47','2024-11-08 06:37:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41451',0,'cd-form-entry','',0),(41452,0,'2024-11-08 06:41:20','2024-11-08 06:41:20','{\"email\":\"auztin931@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"695011\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/\",\"recaptcha_token\":\"03AFcWeA5C-cETzC8wMMkK-45PtOctSLGPvylkD0w9f24CG0e2fZ0TCYMVTidgl_Ehdz3HM3oBmq0T5gkK84CSn6_x64aDZB_N_-s-_VJoO_juCULdNeZ7tpLEm1UhBtH_bTcC1hNTqfyWczlcDYT1Q92sh8H-512t38ksPoqKwV0Gj7swhi4n0aMf08qPf-NqngleKc72LfdE3ABo5zjFwmTDhevAu5dThdHchl7nlhjdcsuSEmyZ20k8Fy_oTl0pUXEU1NRZE2pNGNbT0cWHODJkBd-umU-8KgdRD4ezI-obZNtyPkQSR86DXqJkdeIrg5tby1kRc9tTYlxwyySmJxTA9rf1S8B7S3IEymw27QrOh4HmhdJHSskO7iq-XnAKHIT9tASXiS4uGiRkDrDbf6GnUzNvGSOJgRZ619_X89UMaM0bVThveeWuE1tkZk7CV7w--kKgAPWWI8K5j_V6tWNCTDPCz5kfVaqh50C0JMycCLKZXga2xyli_IfAO10MxhK1dr0aodGUMjJMiO7f_qrnf-d6o1SJGcKpgCPZCS4SlSZ8OqGW_Yr0eoXZgcSdPo2Vx1VSntjzaOXN343GGAE6g98UO43syaD1NUjv0Ztufpf1vCaxL6I78QuMgwbL9377vv0NiAZi4uUQO0-HXgRgTUHEdHb5_w1XiVktNVoD2KxpEHWJJ_NDEYhazQyfmu-teisj9METLVuWpnkJY8cmZVwVUY72mmaFti-c2pF0UxfS5RJZMK1NsN-kDdvHLWb6mbCZAtvvhyMH4mO3jxAxXJcmEjMSymbIMeN0FQh-0d5f77Fk2rPR1zV3YM49-JQqgDagXWWO_pUEnSjP1c3mtz6gLFlfEFCqfTyKs9dMBi1bcUZrF_OfdUO6eGXrL9ffUpNFP-v6o2MCrIJaqVKNrF5iB6VW6DK4hvyWcuWdxgjV1lkoLcfYnZmRE1Bkd8ucJvfKs9a7L7dBeBTFeg7gaExcsGROVyRvEVI5UC0qacto8PK2_TmotURFPMBrEnV1sVsTJUZlqUju0aTScRICqF38hMAw0ZSnpRRYtACE3KmS5T4tsrZHNpZEz-25o1V6I-LufKr5l2RdDguBrqB8GHnH7WUL98qJN7unY-oTYrS8-3ypvE4jkIhEwPCO9TGCCcvPSjx9KGpgvlYrQ9BFCBNaozLNbrN70giI_sAaPhsFUcLIW_CZ6JNThOFfHrJj2uUDPJSWJNTu_lueIq3IA6l6ePkaX_MMIvI2H7oGRIQvr5kAdHptc4FN1BHn68ZJ7N9rTUiUXd3lprjuP5J1FSg9MTh9pinF9C6iRJ_sws0jaar8vxjxdriGs7GfNfUZYJaGXJbf4neT4nwCNpbkzDBMWO75aenmN9BGrec6Li-2aAExvA0o8KwVNyfzMfxxleXdnBWycKuK-BjKkuhbllSddkfzVhGkfvKLIVAA0ZPT6igV1AH4BpIWNTgiNzrmFGT2yORJHjzGH6RRSEgr6ZzvIEX3BbFESCczg8K9_RoKsTVT9sE_v9WfSPc0oha5ZTy9P7CKiSXZgZu53VdMIqdRuGD7Wk4vOVFfaxKQgT9xRAeCeyxawjGjZmC4CNSAGr1SA8LklPQl5NFZqvcXrqBPDpFEKaz9b-V8tRZ7wjhdO0Kr1tTffnKMurVRMFFEBrhrs66Kf-HgUgyxBUbhd5t_lD9icRUrWyyn94LiEPBojotwy3Q5QXKwnkueJt_W1txrB4RQDLrkcV5EpwcIYLpQUK6jJhSL-FG_xBbBVpudlu9S6bGgDs6eKVNG0KT1HZoa_oc2vFbx-v0W8y8vtXQiRtx1AENz-wbJ9nua9TlWD3HnaJRlczKrn4_H5JK9VsJ1MN05KKrWLP0wubUc3LvRbi2Obv7GYeEv1H0r8l0XPy2iu0QveA62-tkAIF55nAz6FbJxSOBNmAU3Rn41mvU63mBV7n8BJoXklzoG80KUKXO9M_UXvhxJSv9qU2tYypHNngryIQZ-MVN8gfabpWPY80AuczA0AJ8lVu_nt_qi_a6Y4w8k6Y7A3SBLd17FXdhDRbBoDvrb8_KY25-fC3pJNwyE120KYn8meNvYE3XlAQggKyMLZIXq7s7iUg8WRgCohY-ZrZyP82heTGdhTRhJPes6YvdFw70tO3coHFf7ALztqeNf-xEqn1YMo5O9Za3ny0gsTnbuN0Mzxs8FaKlsb8ED-yY6EwP_4NtPeAFfySJFDyuwsTreQkGX6U2qai1fCKLe\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672db222f3b815-74188567','','','2024-11-08 06:41:20','2024-11-08 06:41:20','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41452',0,'cd-form-entry','',0),(41453,0,'2024-11-08 07:22:44','2024-11-08 07:22:44','{\"firstname\":\"Theo\",\"lastname\":\"Trandafir\",\"email\":\"theo.sebasthian@gmail.com\",\"contactnumber\":\"07784955739\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uKM20kEkoP0it4xpYlDNRkv&amp;gclid=Cj0KCQiA57G5BhDUARIsACgCYnymj3h-xrk9uTYsAMyuhiPpA2f8dnxIz14xgAQF3GZhmWSvGf656NYaArnwEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7UXgGfkHJ4EM3FaCpyR71ZIDwYyw04GpwegQPc3jCr7up_ofa3dOnNLdohzsN293lXrdrbtHoOM4Xf716x4O8vGI5O2TufnzinGX1VWNNu0mpMyRbbx_NF2AS--tunlTo8YHKxTqpApZaDVQQleq0fKrQh7i8FI036is9HSFSWO5-zvpAt-_nzefcX8g5ofluoyUC1kFl_DV9xT3tUZAeRR58YziPNhlQZji5e8A2CoXkAENo5CMd7JrJ4RHR6OV84q6UY-bZbqlol4j-Wu7Qcdr4G7JRZTvqTn26v96UF5c8UiC6uv3ILRvxDUNx_w_vdAoNkOO5S1Wp0pqpGerdgMTe9Nxi53oFz0tWOIRlqZPldw5qOZz8lY24Amzdnnv1gfZfEX6jo4Tl9-XNz-wiO894ZX-P4xejAJbXThWfdQjMVCjQGmF0JDi8PkKTC7PLZa1roQ7qth1AnHyXjDgIXer5_mNKd53ce_xLOlTsi0L3vVGeR_lrMZ3xE-YQA5UcebmqQ4rSnm7m7bgQrl-ayCXaCargwEQtLi8ws41Oo_5u3t6tej20Rk7EUqduECY05TNMQ1PHRr9r-FXHE7BhVJI_uYh-qOPTGBFxlYwnuK4OvS4oKaVhx_oCnbUY7Jzi0Sho1MKpW2hP0sVEt3tdFak1HQsl8VMYaGaw1J8Jd6ReOcFHa4I9iqliKZ1wx3U235OYZlqxvQzq-1wFxgeM3g4sZUq8MLenDMCko8YLI0E0GS3Jc1UUslj3CQjJ_HFyfVyroKISoB2S31v4wUd8IbCHZDiRRW56DkdNsHrzH--cZu6Fbe4rMBOA9t9UqXdlqG2cMtitNjgfDFjS1QNZ0tX_KHhCkFx7eoPF5puTl3xGgKWHHT35ql7FDf88koVfT3fVG2ZWxfn5Xsrzt3JrlzYmTwK70pFu_RHNvVCFRHWmRSIDCcOUX-ySTCMYYtKI_uZLHj6ycGdxYapJkYI8xHWq-3WIP7-ZSEocZkHub-a43WuRS2mFZ5449BjzPqfr_MvaZlWzQVyfJumFfsLgCKimD2qlB9Lman69M_QwPDDFgL7rZlEB1fkX4llqu6irmPvHSMMNZtLJPuqcKDalR9irGwVedUxduNtUhSzumuEzGxhsasqlk6CZkHBjrpg1D6gcV_uWnBVbw9jgENHL0or8Os0vBL69HTXJcyE5sfM7RtLKp4qPwP5aHS-_-Eg8kaxChf4VVm9O6kTuh1K4u-ORl0T1Iml8ifIlUn5fkaq3D1cfNq3dvnGkEZvt9ae0PevBHvdKsql5mAF1n8m4hWQIOOEf341ZkUIXJVx1G7LVUjsKE7LjHLpeEB7B2WLiE9OKrfXsm6XPJeOYaB2ldf9qGK5NXkoJ1h7GdT9yZXo-jycZ5SWieRt1U4m7A-CXbhgkAt59EdHgZaw5JXKVNBQH0Jboh4M3I0vpAKTlLDaBO2FLFImABDQ3aQZjCbM8v7_cfJabZtPz977-9frUT_ACCiXfqtXrxOYfTlrWhARc3K9wcqZEZVAIcfNNJT6D2lqVmHlyJxYBfjZrcd50VrPiOC3uG7JIetAD66RYxQw_5d-kUwpv4LePzB3vg5jvUqdl3kqHX1rqYc0vtDp4mqXHfNM8RmBRTvvxd9J3fs7lmxGF2PJ6iF76HIg31R8rSlu9gEUXdapZJ9jXOo-i_TqhxyI9i-7FYQbfTFUygPIxMTesWMAzN9qKfxKeqCh21-Y5uGpPcpleFpk8nxCiezuQ_HAvzBXWznB-VtYOz6sqSH3h0OWGx2YQ-cWlEnzPP__BpL1OIMmCOuWNT9HqcrLcnGDEooQ3oRr00LvMMxfdPX2RRyeUUV7KURJBIV2qEMyFK3qsLOp1Vy5Yk0bYJSiuYgl0AoZMzt1aeJ9NVMHyzy2_wTAudi4DgXFfwjdv3TyW31t1c3_-W_3CWu9_Xb58j6E3AeJizAZZVHkIMHvBoCAEMZ8_hFEmMfOZUPMuxzbLAuDrGmJg9lb8TaDKlL0HezhzqXIkpm_9ulQiZsZgjL-ayGYZ_0GYjaABs0OXVwMUU\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672dbc3a6cee22-24508012','','','2024-11-08 07:22:44','2024-11-08 07:22:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41453',0,'cd-form-entry','',0),(41454,0,'2024-11-08 07:24:13','2024-11-08 07:24:13','{\"email\":\"theo.sebasthian@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"Sw109ux\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uKM20kEkoP0it4xpYlDNRkv&amp;gclid=Cj0KCQiA57G5BhDUARIsACgCYnymj3h-xrk9uTYsAMyuhiPpA2f8dnxIz14xgAQF3GZhmWSvGf656NYaArnwEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4owmZxdHh-w1No2DToV59l_GPOsVQrr1s3DAvaGWA5TV0bv1dqtcEdMlCcQKPJoIb5oWWJihaUS--AglXcWrKnxRNrOHdki1awwGc0Z5mviOrGcmJ1Zjdt-RHqzPhLfUzir5Z6baQGX-LB5CQIxIl-uiMVmKS7CPn9mRa2-N7yJkWjVCkq8YsY7ukF4O5nhEQcGpOr3skHcwTPi9zuIeX0x93jO-9XP8sRpWvBmhsJ6yOXwXFPj-0qidRzSx2XTMGScCA-d3y3zlB77rgJH11Sm3Q-WTU91PmGOLXsb55_5-LRUaQm-SPnECzTs-xsoMcnB60JEozOIfklRqTvRQRnUk8ZD2WmRhG6QUWeoDesYXXoelc0kDMbQJQkNzyOgh_IXLtsBxISrYNFh95VxXJM6LYEmCYsXcuNo92wCNbXDKoGfC2JKUui5n3Bzyq7Foi21UN4RKsZs2d-kWwsk6NVpF01ubgWLngY5Maf__LtKd00exIjswbn-w19KzZclggm7cXwan1xE8EPoDQXNu28gorWYdanvU5xRfD4C3Y8QLQlJWmTPHr29Iyla7Wwxy68zPkOUCcGk3S4JYl1iISE9HwhfM3zHtJygAlvpf4Smtz0L6RPpwCpGpGy3pgxwZQAzKD_6C9Ix06yB-jlW4BneBkc_a3rIkfO1ayrntQu7s5MMGOM8EPxR5rowOMTOstuMrxA1DW1bVJ-jY1xt2uMokenaL3pXXgqQcpESfG1z0sHwOeo9VV_29y9tnZk88m41ufly1l5Cz4z10eKnS5SaB66fxSkig3jbDc9Gtp8Iqa1vlhSBNTh9tjGl3bgBKHcsx2EZ0MXL1Mfm_wOkjrSqjdsJEF3OiRBskf5X60aWhSuBMy5RSP8XabW8HYDo2zLt0QzRtCknFYfBLWjFrqu1d7wNQ298SMjXEqy_DPBVE3sm7VGDqY_lqL476LF8wGz-uOy_QSxBe_YvBBwiDwLalirL2-p2I68axM_qFAEysaMKFmQfVJA30hv6mSfsWZCKxDmcXVFSj8HDfmoOb6cf3SR87cHT8w2guNFnIsPlVX1UvOU2tc8I2d_effQpE9sRoDjQkuTLJ0mhgrMAlWeRgIE01-fyYyspKx6FZsjilmlWE1qEfAx766sZT2AxYLVqrWS4AXi9oOwn5MvD8BXv4kG-bSCMGVD2UJsEsyCaSPfsWkQVBGwexZfjPoavJYSunOlByhgxtgg_SgEdCwgV4UhMSlV1tMX9Mw0PRA6mURZaY3A5UTMtx2rj3Gs51MSwXrbNsTvb53mHbRUOElb72bmLAdnvjAM9ToC1id7waxIighvdPlQyBQ-GkpmgQG0tLGtaKv0RH2FVGy__0Zvvh84FrZkdU_iK9wAY21B8lBf21_Avz6FKL17Sf29YLxea4zccZkwM_2roroqeiqOUPUEz9GPe9LUUgOScECCiDvAwSrSNMB-hxzbTVuD6cazNaJNuHkEFuCvaoOS2K4a0SQIc36FzgGikTJFuAPlL1qVBp5c4W51DT9RdCuQKdCAHv1IPCm7QCNT550GV3nHU1ft7j-uyH0SmTPmvoi1TwpzTheoKOk_cWlXlG5wUQHzSbTpS89uTltnvmaoqP0Rs625-_Gdks5zNgj7NOONRKxBvbWYTbCtinPZst-fd2uwQLy3puX9l8Bcv7k6oLGjvPDdxNWBMJ6vUGVreEACfUyhzEBCDFFDVangJavqDjneMUfRtSIbFhYaBllgDKmlPFw8r5fDgKK3IP-O31yoLRFG64eI4aKSBdAQ7yNpTWmFVnF9oDPTU3JwQNk6hMdNc_4wItXIyAQYnLG4L9-uFV1_YapGAgF0m4QKObgZavUIOg22u1TpTeeclciJTRdh-Ml7m2BoSI9u7svkiljM9nKqlGYDzcDmfIm_lAMVTELfO2plmZ3Bhs-OVBH3UWUn2XCbhLirIStSG47OH9_Qs8C302F0LWy8OsRxgiMl0Gmcza9f4O9oJKmss6QhhkTwB_vZO8HsCE-ccyz2yacmNLIbLZaCcBRCx-aaTxbuGuaQu3rE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\",\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672dbc715ab586-70459283','','','2024-11-08 07:24:13','2024-11-08 07:24:13','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41454',0,'cd-form-entry','',0),(41455,3,'2024-11-08 09:35:51','2024-11-08 09:35:51','','Level 4 Sports Massage & Diploma in Biomechanics Coaching','','publish','closed','closed','','level-4-sports-massage-diploma-in-biomechanics-coaching','','','2025-03-14 09:22:00','2025-03-14 09:22:00','',0,'https://biomechanicseducation.com/courses/%course-cat%/level-3-sports-massage-diploma-in-biomechanics-coaching-copy/',0,'course','',0),(41458,3,'2024-11-08 10:14:27','2024-11-08 10:14:27','There are no pre-requisites for the Level 4 Certificate in Sports Massage Therapy.','What qualifications do I need for a Level 4 Sports Massage Therapy course?','','publish','closed','closed','','what-qualifications-do-i-need-for-a-level-4-sports-massage-therapy-course','','','2024-11-08 10:15:06','2024-11-08 10:15:06','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=41458',0,'faqs','',0),(41459,3,'2024-11-08 10:15:03','2024-11-08 10:15:03','','Level 3 Sports Massage & Diploma in Biomechanics Coaching Copy','','inherit','closed','closed','','41455-revision-v1','','','2024-11-08 10:15:03','2024-11-08 10:15:03','',41455,'https://biomechanicseducation.com/?p=41459',0,'revision','',0),(41460,3,'2024-11-08 10:17:18','2024-11-08 10:17:18','','Level 3 Sports Massage & Diploma in Biomechanics Coaching Copy','','inherit','closed','closed','','41455-revision-v1','','','2024-11-08 10:17:18','2024-11-08 10:17:18','',41455,'https://biomechanicseducation.com/?p=41460',0,'revision','',0),(41461,3,'2024-11-08 10:42:36','2024-11-08 10:42:36','','Sports_Massage_Therapy_Web 6','','inherit','closed','closed','','sports_massage_therapy_web-6','','','2024-11-08 10:42:36','2024-11-08 10:42:36','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-6.jpg',0,'attachment','image/jpeg',0),(41462,3,'2024-11-08 10:42:41','2024-11-08 10:42:41','','Sports_Massage_Therapy_Web 7','','inherit','closed','closed','','sports_massage_therapy_web-7','','','2024-11-08 10:42:41','2024-11-08 10:42:41','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-7.jpg',0,'attachment','image/jpeg',0),(41463,3,'2024-11-08 10:42:46','2024-11-08 10:42:46','','Sports_Massage_Therapy_Web 8','','inherit','closed','closed','','sports_massage_therapy_web-8','','','2024-11-08 10:42:46','2024-11-08 10:42:46','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-8.jpg',0,'attachment','image/jpeg',0),(41464,3,'2024-11-08 10:42:50','2024-11-08 10:42:50','','Sports_Massage_Therapy_Web 9','','inherit','closed','closed','','sports_massage_therapy_web-9','','','2024-11-08 10:42:50','2024-11-08 10:42:50','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-9.jpg',0,'attachment','image/jpeg',0),(41465,3,'2024-11-08 10:42:54','2024-11-08 10:42:54','','Sports_Massage_Therapy_Web 53','','inherit','closed','closed','','sports_massage_therapy_web-53-2','','','2024-11-08 10:42:54','2024-11-08 10:42:54','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-53-1.jpg',0,'attachment','image/jpeg',0),(41466,3,'2024-11-08 10:43:01','2024-11-08 10:43:01','','Sports_Massage_Therapy_Web 54','','inherit','closed','closed','','sports_massage_therapy_web-54','','','2024-11-08 10:43:01','2024-11-08 10:43:01','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-54.jpg',0,'attachment','image/jpeg',0),(41467,3,'2024-11-08 10:43:06','2024-11-08 10:43:06','','Sports_Massage_Therapy_Web 55','','inherit','closed','closed','','sports_massage_therapy_web-55','','','2024-11-08 10:43:06','2024-11-08 10:43:06','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-55.jpg',0,'attachment','image/jpeg',0),(41468,3,'2024-11-08 10:43:10','2024-11-08 10:43:10','','Sports_Massage_Therapy_Web 56','','inherit','closed','closed','','sports_massage_therapy_web-56','','','2024-11-08 10:43:10','2024-11-08 10:43:10','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-56.jpg',0,'attachment','image/jpeg',0),(41469,3,'2024-11-08 10:43:14','2024-11-08 10:43:14','','Sports_Massage_Therapy_Web 57','','inherit','closed','closed','','sports_massage_therapy_web-57','','','2024-11-08 10:43:14','2024-11-08 10:43:14','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-57.jpg',0,'attachment','image/jpeg',0),(41470,3,'2024-11-08 10:43:20','2024-11-08 10:43:20','','Sports_Massage_Therapy_Web 58','','inherit','closed','closed','','sports_massage_therapy_web-58','','','2024-11-08 10:43:20','2024-11-08 10:43:20','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-58.jpg',0,'attachment','image/jpeg',0),(41471,3,'2024-11-08 10:43:25','2024-11-08 10:43:25','','Sports_Massage_Therapy_Web 59','','inherit','closed','closed','','sports_massage_therapy_web-59','','','2024-11-08 10:43:25','2024-11-08 10:43:25','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-59.jpg',0,'attachment','image/jpeg',0),(41472,3,'2024-11-08 10:43:30','2024-11-08 10:43:30','','Sports_Massage_Therapy_Web 60','','inherit','closed','closed','','sports_massage_therapy_web-60','','','2024-11-08 10:43:30','2024-11-08 10:43:30','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-60.jpg',0,'attachment','image/jpeg',0),(41473,3,'2024-11-08 10:43:34','2024-11-08 10:43:34','','Sports_Massage_Therapy_Web 61','','inherit','closed','closed','','sports_massage_therapy_web-61','','','2024-11-08 10:43:34','2024-11-08 10:43:34','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-61.jpg',0,'attachment','image/jpeg',0),(41474,3,'2024-11-08 10:43:39','2024-11-08 10:43:39','','Sports_Massage_Therapy_Web 62','','inherit','closed','closed','','sports_massage_therapy_web-62-2','','','2024-11-08 10:43:39','2024-11-08 10:43:39','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-62-1.jpg',0,'attachment','image/jpeg',0),(41475,3,'2024-11-08 10:43:45','2024-11-08 10:43:45','','Sports_Massage_Therapy_Web 63','','inherit','closed','closed','','sports_massage_therapy_web-63','','','2024-11-08 10:43:45','2024-11-08 10:43:45','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-63.jpg',0,'attachment','image/jpeg',0),(41476,3,'2024-11-08 10:43:50','2024-11-08 10:43:50','','Sports_Massage_Therapy_Web 64','','inherit','closed','closed','','sports_massage_therapy_web-64','','','2024-11-08 10:43:50','2024-11-08 10:43:50','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-64.jpg',0,'attachment','image/jpeg',0),(41477,3,'2024-11-08 10:43:54','2024-11-08 10:43:54','','Sports_Massage_Therapy_Web','','inherit','closed','closed','','sports_massage_therapy_web','','','2024-11-08 10:43:54','2024-11-08 10:43:54','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web.jpg',0,'attachment','image/jpeg',0),(41478,3,'2024-11-08 10:43:58','2024-11-08 10:43:58','','Sports_Massage_Therapy_Web 4','','inherit','closed','closed','','sports_massage_therapy_web-4','','','2024-11-08 10:43:58','2024-11-08 10:43:58','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-4.jpg',0,'attachment','image/jpeg',0),(41479,3,'2024-11-08 10:44:03','2024-11-08 10:44:03','','Sports_Massage_Therapy_Web 5','','inherit','closed','closed','','sports_massage_therapy_web-5','','','2024-11-08 10:44:03','2024-11-08 10:44:03','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-5.jpg',0,'attachment','image/jpeg',0),(41480,3,'2024-11-08 10:44:06','2024-11-08 10:44:06','','Level 3 Sports Massage & Diploma in Biomechanics Coaching Copy','','inherit','closed','closed','','41455-revision-v1','','','2024-11-08 10:44:06','2024-11-08 10:44:06','',41455,'https://biomechanicseducation.com/?p=41480',0,'revision','',0),(41481,3,'2024-11-08 10:44:10','2024-11-08 10:44:10','','Sports_Massage_Therapy_Web 35','','inherit','closed','closed','','sports_massage_therapy_web-35','','','2024-11-08 10:44:10','2024-11-08 10:44:10','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-35.jpg',0,'attachment','image/jpeg',0),(41483,3,'2024-11-08 10:46:51','2024-11-08 10:46:51','','BE_Worshop_30thAug- 17','','inherit','closed','closed','','be_worshop_30thaug-17','','','2024-11-08 10:46:51','2024-11-08 10:46:51','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-17.jpg',0,'attachment','image/jpeg',0),(41484,3,'2024-11-08 10:47:06','2024-11-08 10:47:06','','BE_Worshop_30thAug- 18','','inherit','closed','closed','','be_worshop_30thaug-18','','','2024-11-08 10:47:06','2024-11-08 10:47:06','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-18.jpg',0,'attachment','image/jpeg',0),(41485,3,'2024-11-08 10:47:18','2024-11-08 10:47:18','','BE_Worshop_30thAug- 19','','inherit','closed','closed','','be_worshop_30thaug-19-2','','','2024-11-08 10:47:18','2024-11-08 10:47:18','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-19.jpg',0,'attachment','image/jpeg',0),(41486,3,'2024-11-08 10:47:32','2024-11-08 10:47:32','','BE_Worshop_30thAug- 20','','inherit','closed','closed','','be_worshop_30thaug-20-2','','','2024-11-08 10:47:32','2024-11-08 10:47:32','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-20.jpg',0,'attachment','image/jpeg',0),(41487,3,'2024-11-08 10:47:44','2024-11-08 10:47:44','','BE_Worshop_30thAug- 21','','inherit','closed','closed','','be_worshop_30thaug-21-2','','','2024-11-08 10:47:44','2024-11-08 10:47:44','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-21.jpg',0,'attachment','image/jpeg',0),(41488,3,'2024-11-08 10:47:56','2024-11-08 10:47:56','','BE_Worshop_30thAug- 22','','inherit','closed','closed','','be_worshop_30thaug-22-2','','','2024-11-08 10:47:56','2024-11-08 10:47:56','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-22.jpg',0,'attachment','image/jpeg',0),(41489,3,'2024-11-08 10:48:11','2024-11-08 10:48:11','','BE_Worshop_30thAug- 23','','inherit','closed','closed','','be_worshop_30thaug-23','','','2024-11-08 10:48:11','2024-11-08 10:48:11','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-23.jpg',0,'attachment','image/jpeg',0),(41490,3,'2024-11-08 10:48:21','2024-11-08 10:48:21','','BE_Worshop_30thAug- 24','','inherit','closed','closed','','be_worshop_30thaug-24','','','2024-11-08 10:48:21','2024-11-08 10:48:21','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-24.jpg',0,'attachment','image/jpeg',0),(41491,3,'2024-11-08 10:48:35','2024-11-08 10:48:35','','BE_Worshop_30thAug- 3','','inherit','closed','closed','','be_worshop_30thaug-3','','','2024-11-08 10:48:35','2024-11-08 10:48:35','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-3.jpg',0,'attachment','image/jpeg',0),(41492,3,'2024-11-08 10:48:43','2024-11-08 10:48:43','','BE_Worshop_30thAug- 4','','inherit','closed','closed','','be_worshop_30thaug-4','','','2024-11-08 10:48:43','2024-11-08 10:48:43','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-4.jpg',0,'attachment','image/jpeg',0),(41493,3,'2024-11-08 10:48:56','2024-11-08 10:48:56','','BE_Worshop_30thAug- 5','','inherit','closed','closed','','be_worshop_30thaug-5-2','','','2024-11-08 10:48:56','2024-11-08 10:48:56','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-5.jpg',0,'attachment','image/jpeg',0),(41494,3,'2024-11-08 10:49:07','2024-11-08 10:49:07','','BE_Worshop_30thAug- 6','','inherit','closed','closed','','be_worshop_30thaug-6','','','2024-11-08 10:49:07','2024-11-08 10:49:07','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-6.jpg',0,'attachment','image/jpeg',0),(41495,3,'2024-11-08 10:49:19','2024-11-08 10:49:19','','BE_Worshop_30thAug- 7','','inherit','closed','closed','','be_worshop_30thaug-7-2','','','2024-11-08 10:49:19','2024-11-08 10:49:19','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-7.jpg',0,'attachment','image/jpeg',0),(41496,3,'2024-11-08 10:49:30','2024-11-08 10:49:30','','BE_Worshop_30thAug- 8','','inherit','closed','closed','','be_worshop_30thaug-8-2','','','2024-11-08 10:49:30','2024-11-08 10:49:30','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-8.jpg',0,'attachment','image/jpeg',0),(41497,3,'2024-11-08 10:49:42','2024-11-08 10:49:42','','BE_Worshop_30thAug- 9','','inherit','closed','closed','','be_worshop_30thaug-9','','','2024-11-08 10:49:42','2024-11-08 10:49:42','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-9.jpg',0,'attachment','image/jpeg',0),(41498,3,'2024-11-08 10:49:53','2024-11-08 10:49:53','','BE_Worshop_30thAug- 25','','inherit','closed','closed','','be_worshop_30thaug-25','','','2024-11-08 10:49:53','2024-11-08 10:49:53','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-25.jpg',0,'attachment','image/jpeg',0),(41499,3,'2024-11-08 10:50:07','2024-11-08 10:50:07','','BE_Worshop_30thAug- 26','','inherit','closed','closed','','be_worshop_30thaug-26','','','2024-11-08 10:50:07','2024-11-08 10:50:07','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-26.jpg',0,'attachment','image/jpeg',0),(41500,3,'2024-11-08 10:50:20','2024-11-08 10:50:20','','BE_Worshop_30thAug- 27','','inherit','closed','closed','','be_worshop_30thaug-27','','','2024-11-08 10:50:20','2024-11-08 10:50:20','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-27.jpg',0,'attachment','image/jpeg',0),(41501,3,'2024-11-08 10:50:32','2024-11-08 10:50:32','','BE_Worshop_30thAug- 28','','inherit','closed','closed','','be_worshop_30thaug-28-2','','','2024-11-08 10:50:32','2024-11-08 10:50:32','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-28.jpg',0,'attachment','image/jpeg',0),(41502,3,'2024-11-08 10:50:43','2024-11-08 10:50:43','','BE_Worshop_30thAug- 29','','inherit','closed','closed','','be_worshop_30thaug-29','','','2024-11-08 10:50:43','2024-11-08 10:50:43','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-29.jpg',0,'attachment','image/jpeg',0),(41503,3,'2024-11-08 10:50:55','2024-11-08 10:50:55','','BE_Worshop_30thAug-','','inherit','closed','closed','','be_worshop_30thaug','','','2024-11-08 10:50:55','2024-11-08 10:50:55','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-.jpg',0,'attachment','image/jpeg',0),(41504,3,'2024-11-08 10:51:06','2024-11-08 10:51:06','','BE_Worshop_24thAug- 1','','inherit','closed','closed','','be_worshop_24thaug-1-2','','','2024-11-08 10:51:06','2024-11-08 10:51:06','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_24thAug-1.jpg',0,'attachment','image/jpeg',0),(41505,3,'2024-11-08 10:51:19','2024-11-08 10:51:19','','BE_Worshop_24thAug- 2','','inherit','closed','closed','','be_worshop_24thaug-2-2','','','2024-11-08 10:51:19','2024-11-08 10:51:19','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_24thAug-2.jpg',0,'attachment','image/jpeg',0),(41506,3,'2024-11-08 10:51:30','2024-11-08 10:51:30','','BE_Worshop_24thAug- 3','','inherit','closed','closed','','be_worshop_24thaug-3','','','2024-11-08 10:51:30','2024-11-08 10:51:30','',41455,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_24thAug-3.jpg',0,'attachment','image/jpeg',0),(41507,3,'2024-11-08 10:51:33','2024-11-08 10:51:33','','Level  Sports Massage & Diploma in Biomechanics Coaching Copy','','inherit','closed','closed','','41455-revision-v1','','','2024-11-08 10:51:33','2024-11-08 10:51:33','',41455,'https://biomechanicseducation.com/?p=41507',0,'revision','',0),(41508,3,'2024-11-08 10:51:54','2024-11-08 10:51:54','','Level 4 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41455-revision-v1','','','2024-11-08 10:51:54','2024-11-08 10:51:54','',41455,'https://biomechanicseducation.com/?p=41508',0,'revision','',0),(41509,3,'2024-11-08 11:01:16','2024-11-08 11:01:16','','Level 4 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41455-revision-v1','','','2024-11-08 11:01:16','2024-11-08 11:01:16','',41455,'https://biomechanicseducation.com/?p=41509',0,'revision','',0),(41510,3,'2024-11-08 11:02:52','2024-11-08 11:02:52','','Level 4 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41455-revision-v1','','','2024-11-08 11:02:52','2024-11-08 11:02:52','',41455,'https://biomechanicseducation.com/?p=41510',0,'revision','',0),(41511,3,'2024-11-08 11:03:09','2024-11-08 11:03:09','','Level 4 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41455-revision-v1','','','2024-11-08 11:03:09','2024-11-08 11:03:09','',41455,'https://biomechanicseducation.com/?p=41511',0,'revision','',0),(41512,3,'2024-11-08 11:04:15','2024-11-08 11:04:15','','Level 4 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41455-revision-v1','','','2024-11-08 11:04:15','2024-11-08 11:04:15','',41455,'https://biomechanicseducation.com/?p=41512',0,'revision','',0),(41513,3,'2024-11-08 11:06:52','2024-11-08 11:06:52','','Level 4 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41455-revision-v1','','','2024-11-08 11:06:52','2024-11-08 11:06:52','',41455,'https://biomechanicseducation.com/?p=41513',0,'revision','',0),(41514,3,'2024-11-08 11:09:30','2024-11-08 11:09:30','','Level 4 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41455-autosave-v1','','','2024-11-08 11:09:30','2024-11-08 11:09:30','',41455,'https://biomechanicseducation.com/?p=41514',0,'revision','',0),(41515,3,'2024-11-08 11:11:13','2024-11-08 11:11:13','','Level 4 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41455-revision-v1','','','2024-11-08 11:11:13','2024-11-08 11:11:13','',41455,'https://biomechanicseducation.com/?p=41515',0,'revision','',0),(41516,3,'2024-11-08 11:12:05','2024-11-08 11:12:05','','Level 4 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41455-revision-v1','','','2024-11-08 11:12:05','2024-11-08 11:12:05','',41455,'https://biomechanicseducation.com/?p=41516',0,'revision','',0),(41517,3,'2024-11-08 11:16:49','2024-11-08 11:16:49','The entry requirements for this Level 4 Pilates Course require you to be qualified at a Level 3 Diploma in Pilates. We also recommend a minimum of 3 months of teaching experience.','What qualifications do I need for a Level 4 Mat Pilates Instructor course?','','publish','closed','closed','','what-qualifications-do-i-need-for-a-level-4-mat-pilates-instructor-course','','','2024-11-08 11:16:49','2024-11-08 11:16:49','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=41517',0,'faqs','',0),(41518,3,'2024-11-08 11:18:13','2024-11-08 11:18:13','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2024-11-08 11:18:13','2024-11-08 11:18:13','',41425,'https://biomechanicseducation.com/?p=41518',0,'revision','',0),(41519,0,'2024-11-08 11:21:28','2024-11-08 11:21:28','{\"firstname\":\"jill\",\"lastname\":\"fairbairn\",\"email\":\"jillfairbairn@yahoo.co.uk\",\"contactnumber\":\"07786512826\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA4jxpSvvSRyEdAgeih8lds3fjkiSl8N87bpqI25lqLkohd5yVYdIaPJkFQn8xQuZNyqMnxVV_cDWIBEZRRBnpYCd7DuwUUjWjZBTiq8KowUuax0ia5fz3ic0q7QGMDX2q-SSskWyNpdGnaUEpbnN926IvPYD0CEo1EX6h22BtGxxVdmUsBOPJfPqUcjMumIjQZOIvdqEqD737i36JY9v7oY-JALe9azR5Nw38R6aVmWAFNCavZb-abVKXM6SrDQtF9t-gkcyNzk9IEbLQdPB6e8NlJ_dBvOHWcdCiQfpXUqUX6IVJExOI15xdj8kqwTYXA58gydrnRKxDGxogCfP_kkjNu8mBWqgSmvwigtS3vzCycGy3aTHrGiB_GKJT9UAfbZArMJNA6ebNWWGpbxN1QRqfZlBdRV7t_ZHhyb2DKZUpYga32CjA5_el2sfwayQNVrfSAOs3S0IgGIQNBnxZEggE68SLTltc9Obrk5cN7MZqTB_tC-6LVDJDcOJHHfl1B6em2X6tay7bwLsYIx9l0bhW_nJj_0gATOlbFOXG6Cxu-lJdwDLgsXAJPkBd0fR3tTR2PMEgpGCq2VACKMW6hHtGB0eN7ognoD3q_ZWnN6m_LMVP5IVyPvNJvFgA9YGQauFHdv9yMVX5CZcxAggrDPfqt--05ARJxDZkp1-RzqsukZ6MfBBc8hsa1sgao1uPjy7SJroq23boT-ux7d3GlFAnXOCuQTPbjSyeiCgA6TmsU_gmykBkFVqMlT2jbUjT7a3cY1H3ZJ_63Deb08AxqsMtubTQ6Zcru_edmvTRm6_fUbXw2n3Sp1GlBKYITcTqV3TVYolTQ18Q_Ojp-w21RONbEK9NZOVbq1o7i-1k3YDrERh_shtYbyHJBFwzUb1ldObIJ-bjj3gNIyJ9Q6kboh6Ggw7I90jNvaNhK9rDQccPoLZETCbAQGgdVUQ_AcPPrRPORg2mSwHiOxfwoduZHNyI3zDHbUa5cHul4fXxLbBLoGtxLpBDOh6YrB4KIDsB4k67bGbA-jhBJhODggSgTZ2ur4FhZF4uwMJIvt5vD5RTd6pS2YBEPITDvmTvE9iGRjC4VJrad1S15cx_fcn1tXBDAdK8lLLf4AFpUPMuALRVQfrcegxBG1XffLUpHlo3A-J04_Gf96lq97zWSpJQHWFB-tDpgcS0ifbhaMC5oJ0ObyndCrnoH7v5U-BRNG_6YRLNtyXfxJ8C6ZBGnEzmBdsDX6a0TyN8QQP05km1gzkMKAxVtQjACTa0l1ToaltiEownOxTD9OcTwwnc6J92AAk1k_P1Mke0iFXi4usH6cXO2_OMMbqlig4Lh4fKQoaG8ij3SP7V-kzUtBylwlV9ue7gj1ATcg7Ed3snQtxQBtMSk-9BKzFZtdenyoT7GUmb1ho5yCVTUNsmIU8jqTvH0tf-jRzok-0zPefaU7jTGxUz1uIZdqC7GEAxrhuBWaK5I_Zcq-V0lNAZn8wZl7ZwGM7sEkqEODJYW1dtzenTl4kmsvMLxj0BtzDgYF2a9wyaDq6HVfZwYXx3ySFpR1k6djzZMBb68oXQFoYTrTB4JJpYm54Iy8boOtyvQ0telS4bjU-AF5wgVSTfhpEPDADS2IWR3bTBiFZs_MSnTZLGZoxvSn4qnTbzYY00r58isY4KRn8GqGrQxC9or7nf34uVVNQcYuAgWisDb77YD5RSj4Z3peB-2Jo_nYKIn6jQXHQ031Frv-oeV1DArGSVEePZTHlVXst-LEo0iDqlcSnw4i9yf8CwmkTCp0SSJ19vKJxFxswtvEONhV_Ej-wFYm8IICnCzlpiBwtF1643hPe2pExAPSIf0NLLvM_Z4VI3FKw9PVK3eGBNkHp9tzGvCQN8Ql7GV1biOleqAn0BYdwBmdvFmv5ahgn-DOTxWB47Qjw0DptR-ZzcMX3S3Ij5QX0gBznETpluqNFTIteMMNLdRTcyGPHDWbROx1hhQcaI868kZUx-wI60T35zMqQCAAAC74OVaLvw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672df42aa0dc89-28208685','','','2024-11-08 11:21:28','2024-11-08 11:21:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41519',0,'cd-form-entry','',0),(41520,3,'2024-11-08 12:19:49','2024-11-08 12:19:49','','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching','','publish','closed','closed','','level-4-pilates-diploma-in-biomechanics-coaching','','','2025-03-14 09:24:09','2025-03-14 09:24:09','',0,'https://biomechanicseducation.com/courses/%course-cat%/level-4-sports-massage-diploma-in-biomechanics-coaching-copy/',0,'course','',0),(41522,3,'2024-11-08 12:27:04','2024-11-08 12:27:04','','CourtX_Pilates_Web 1','','inherit','closed','closed','','courtx_pilates_web-1','','','2024-11-08 12:27:04','2024-11-08 12:27:04','',41520,'https://biomechanicseducation.com/wp-content/uploads/2024/11/CourtX_Pilates_Web-1.jpg',0,'attachment','image/jpeg',0),(41523,3,'2024-11-08 12:27:08','2024-11-08 12:27:08','','CourtX_Pilates_Web 10','','inherit','closed','closed','','courtx_pilates_web-10','','','2024-11-08 12:27:08','2024-11-08 12:27:08','',41520,'https://biomechanicseducation.com/wp-content/uploads/2024/11/CourtX_Pilates_Web-10.jpg',0,'attachment','image/jpeg',0),(41524,3,'2024-11-08 12:27:12','2024-11-08 12:27:12','','CourtX_Pilates_Web 40','','inherit','closed','closed','','courtx_pilates_web-40','','','2024-11-08 12:27:12','2024-11-08 12:27:12','',41520,'https://biomechanicseducation.com/wp-content/uploads/2024/11/CourtX_Pilates_Web-40.jpg',0,'attachment','image/jpeg',0),(41525,3,'2024-11-08 12:27:15','2024-11-08 12:27:15','','CourtX_Pilates_Web 66','','inherit','closed','closed','','courtx_pilates_web-66','','','2024-11-08 12:27:15','2024-11-08 12:27:15','',41520,'https://biomechanicseducation.com/wp-content/uploads/2024/11/CourtX_Pilates_Web-66.jpg',0,'attachment','image/jpeg',0),(41526,3,'2024-11-08 12:27:19','2024-11-08 12:27:19','','CourtX_Pilates_Web 76','','inherit','closed','closed','','courtx_pilates_web-76','','','2024-11-08 12:27:19','2024-11-08 12:27:19','',41520,'https://biomechanicseducation.com/wp-content/uploads/2024/11/CourtX_Pilates_Web-76.jpg',0,'attachment','image/jpeg',0),(41527,3,'2024-11-08 12:27:30','2024-11-08 12:27:30','','CourtX_Pilates_Web 1','','inherit','closed','closed','','courtx_pilates_web-1-2','','','2024-11-08 12:27:30','2024-11-08 12:27:30','',41520,'https://biomechanicseducation.com/wp-content/uploads/2024/11/CourtX_Pilates_Web-1-1.jpg',0,'attachment','image/jpeg',0),(41528,3,'2024-11-08 12:31:18','2024-11-08 12:31:18','','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41520-revision-v1','','','2024-11-08 12:31:18','2024-11-08 12:31:18','',41520,'https://biomechanicseducation.com/?p=41528',0,'revision','',0),(41529,3,'2024-11-08 12:34:42','2024-11-08 12:34:42','','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41520-revision-v1','','','2024-11-08 12:34:42','2024-11-08 12:34:42','',41520,'https://biomechanicseducation.com/?p=41529',0,'revision','',0),(41530,3,'2024-11-08 12:34:53','2024-11-08 12:34:53','','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41520-autosave-v1','','','2024-11-08 12:34:53','2024-11-08 12:34:53','',41520,'https://biomechanicseducation.com/?p=41530',0,'revision','',0),(41531,3,'2024-11-08 12:35:36','2024-11-08 12:35:36','','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41520-revision-v1','','','2024-11-08 12:35:36','2024-11-08 12:35:36','',41520,'https://biomechanicseducation.com/?p=41531',0,'revision','',0),(41532,3,'2024-11-08 12:38:50','2024-11-08 12:38:50','','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41520-revision-v1','','','2024-11-08 12:38:50','2024-11-08 12:38:50','',41520,'https://biomechanicseducation.com/?p=41532',0,'revision','',0),(41533,3,'2024-11-08 12:49:54','2024-11-08 12:49:54','','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching','','publish','closed','closed','','level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy','','','2025-03-14 09:24:37','2025-03-14 09:24:37','',0,'https://biomechanicseducation.com/?post_type=course&#038;p=41533',0,'course','',0),(41534,3,'2024-11-08 12:56:09','2024-11-08 12:56:09','<ul>\r\n 	<li>Learners aged 16+</li>\r\n 	<li>Sports coaches</li>\r\n 	<li>Strength and conditioning coaches</li>\r\n 	<li>Personal trainers: to study this course we require you to have a Personal Training qualification.</li>\r\n</ul>','What qualifications do I need for a Level 4 Strength & Conditioning Course?','','publish','closed','closed','','what-qualifications-do-i-need-for-a-level-4-strength-conditioning-course','','','2024-11-08 12:59:15','2024-11-08 12:59:15','',0,'https://biomechanicseducation.com/?post_type=faqs&#038;p=41534',0,'faqs','',0),(41535,3,'2024-11-08 12:58:19','2024-11-08 12:58:19','','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41533-revision-v1','','','2024-11-08 12:58:19','2024-11-08 12:58:19','',41533,'https://biomechanicseducation.com/?p=41535',0,'revision','',0),(41536,3,'2024-11-08 13:00:13','2024-11-08 13:00:13','','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41533-revision-v1','','','2024-11-08 13:00:13','2024-11-08 13:00:13','',41533,'https://biomechanicseducation.com/?p=41536',0,'revision','',0),(41537,3,'2024-11-08 13:02:56','2024-11-08 13:02:56','','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41533-revision-v1','','','2024-11-08 13:02:56','2024-11-08 13:02:56','',41533,'https://biomechanicseducation.com/?p=41537',0,'revision','',0),(41538,3,'2024-11-08 13:03:24','2024-11-08 13:03:24','','FutureFitRebrand-Images-LV3PT-1','','inherit','closed','closed','','futurefitrebrand-images-lv3pt-1','','','2024-11-08 13:03:24','2024-11-08 13:03:24','',41533,'https://biomechanicseducation.com/wp-content/uploads/2024/11/FutureFitRebrand-Images-LV3PT-1.jpg',0,'attachment','image/jpeg',0),(41539,3,'2024-11-08 13:03:32','2024-11-08 13:03:32','','FutureFitRebrand-Images-LV3PT-38','','inherit','closed','closed','','futurefitrebrand-images-lv3pt-38','','','2024-11-08 13:03:32','2024-11-08 13:03:32','',41533,'https://biomechanicseducation.com/wp-content/uploads/2024/11/FutureFitRebrand-Images-LV3PT-38.jpg',0,'attachment','image/jpeg',0),(41540,3,'2024-11-08 13:03:41','2024-11-08 13:03:41','','FutureFitRebrand-Images-LV3PT-101','','inherit','closed','closed','','futurefitrebrand-images-lv3pt-101','','','2024-11-08 13:03:41','2024-11-08 13:03:41','',41533,'https://biomechanicseducation.com/wp-content/uploads/2024/11/FutureFitRebrand-Images-LV3PT-101.jpg',0,'attachment','image/jpeg',0),(41541,3,'2024-11-08 13:03:48','2024-11-08 13:03:48','','FutureFitRebrand-Images-LV3PT-103','','inherit','closed','closed','','futurefitrebrand-images-lv3pt-103','','','2024-11-08 13:03:48','2024-11-08 13:03:48','',41533,'https://biomechanicseducation.com/wp-content/uploads/2024/11/FutureFitRebrand-Images-LV3PT-103.jpg',0,'attachment','image/jpeg',0),(41542,3,'2024-11-08 13:03:56','2024-11-08 13:03:56','','FutureFitRebrand-Images-LV3PT-105','','inherit','closed','closed','','futurefitrebrand-images-lv3pt-105','','','2024-11-08 13:03:56','2024-11-08 13:03:56','',41533,'https://biomechanicseducation.com/wp-content/uploads/2024/11/FutureFitRebrand-Images-LV3PT-105.jpg',0,'attachment','image/jpeg',0),(41543,3,'2024-11-08 13:04:06','2024-11-08 13:04:06','','FutureFitRebrand-Images-LV3PT-116','','inherit','closed','closed','','futurefitrebrand-images-lv3pt-116','','','2024-11-08 13:04:06','2024-11-08 13:04:06','',41533,'https://biomechanicseducation.com/wp-content/uploads/2024/11/FutureFitRebrand-Images-LV3PT-116.jpg',0,'attachment','image/jpeg',0),(41544,3,'2024-11-08 13:07:39','2024-11-08 13:07:39','','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41533-revision-v1','','','2024-11-08 13:07:39','2024-11-08 13:07:39','',41533,'https://biomechanicseducation.com/?p=41544',0,'revision','',0),(41545,3,'2024-11-08 13:07:50','2024-11-08 13:07:50','','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41533-autosave-v1','','','2024-11-08 13:07:50','2024-11-08 13:07:50','',41533,'https://biomechanicseducation.com/?p=41545',0,'revision','',0),(41546,3,'2024-11-08 13:09:08','2024-11-08 13:09:08','','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41533-revision-v1','','','2024-11-08 13:09:08','2024-11-08 13:09:08','',41533,'https://biomechanicseducation.com/?p=41546',0,'revision','',0),(41547,3,'2024-11-08 13:11:36','2024-11-08 13:11:36','','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41533-revision-v1','','','2024-11-08 13:11:36','2024-11-08 13:11:36','',41533,'https://biomechanicseducation.com/?p=41547',0,'revision','',0),(41548,0,'2024-11-09 07:35:54','2024-11-09 07:35:54','{\"firstname\":\"momin\",\"lastname\":\"bhatti\",\"email\":\"mominbhatti@25gmail.com\",\"contactnumber\":\"923032506755\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7hRE4H__xh7owB2zAcoMJOxeIc7crI8kqjXpolPxHi9UJqvwOIb5p-YBoD2-F3W4Bwq2W4d98eXUU1KEOOK1z-KuubYlRSjynqtQteAFqXRVvcTsJVAHEuJ9NA73qTVowmXLSuRxDYwLX65zKS9M3ZDzfihKYUSow2psEhcCmTdoyxG_dgDPoISNRGg6hUOicFtT0m50QEWb-gByf83imkA7v4cJWthOvYhYrMcKZEH5gyhxYaBOokn-D6s3Zq3Gi2tiDzcNw7-qslv1U8gX85uqFewfnrGp5ICg4MGzqEpGrpHEPvnCmErrfU1CADrbzE-_Imv-79xwNH3hymlgEAi5n4sxK1gkUVfsYFHSyUR3AY-GzkSQGLPQG0vuf0CTuBtuBONqZTkzOGlk6EvW_x07IUfX2vVBjmqvUqNwKPOwn-Sn8tbp0ia18cIsK37ASWgSt3slWKwLRXUy9g5MW_DgBAWbn1zIfpV1FazTvLuuV4bBWcx0IBr2gjlwSYPQUpO7CyIu_Jmxe6cpmGG97sB9I_SnCj-8-iLzc5MrXpZ_I54aZJkBgR07FD2ZfH6TUyObU0bFCJoKsrpdOxoF3zwNSwPqqCorXKam0sChb0dSlSSMbclDYaO72suSrfXiyYm262DRjpZmw1VH_AUD6-sHmxW5w0jZD6kTOlysRUhCkCn5o7fewh0IJJPJnnIny64njGjSXSk6yfpwq4xWSphjYufLVcJHKaHJWJtIGBxt21DcdsrRNzB66onVvZ3CHayiyM4_29YXDWQH3IBhd6ByNRFe_rqpduHPub8q7eQE3z6d-BefiuUqBN9-Jyt9xPwXGzPBo4BWm7TxA8Vr77I-k8vAsm5meDJ6uoBaFSCmJmXMlzwEXPnRwVL4r31K9jZQ3ufovFF8RxB1_8Wp9qkquHQGqbt2Wu8N1yrnDjlguZ_qxxIkrmNqv5Mb0l3fnSeyvLZnvWJCDdcZac3Udv_9jkBSRIE1pgDutAwXr_n2FjCVpGz-zgP8res4w9eafG8pipANjDlc7ZdeoqhaN35n-wSL2vKtUHsH31Y7JXmBPx__B5DvTKCT35Y80IPBlkwtvYx2if7IUtfgvhvhvdO0-07lNRqkTVfoLmnHjgJ1u1DSap8NSVkJXvdvaSOqgOE_fvoK5kYILW-Z-CX51G8Zb2RNS_1NM0TYdoW8ckPtlJhFffbl4zd5uqh1qsv1Qhj8It7OPiLT-4kvlZirCl9jwvhuRzSdVgygMQSv2FuDIwttWAuoyLKhZrSs5lwyiKpFZJTz91ZQ6Ql1z_xP7fYQ2HEGoD-RAVKvHaJAhaxIE83eScSprU9hJIu8ZLy63K5IzgoY18CfwIOEkW7xwJezxUEiS-vyEZImn0nn9nWjHBEz59XUHzOlDoLn2FVbRwdtrtcpOE8munBXO5gokTGWiWB9dbvonhupIjIusgkjEnK9UFfLYXB2lCmewrXIbrVSFAxQIGySAOI8zswHOA-ulwxKeaWFYlf0PHAk5Jjfd7Qi3YWRbFL19r3XnsEOlWsjS5QrdRlQjjEHX42_z0e3qVKo2RRdpTUqe3zExAoXkwljIUDse2W30hNbcFO1QN8ePEkHHz9YgUNwWsjQRxksJqMtqh3pz_L9XhfJ5fjm3ikkgUzuIsY_FgcbHG9MhUCOYKodp3gaoI8GcL1AqEIPfkYNJ8crAYQ16hIo81d4_H2FMJC12G5LzCbq5-MD2Dg2X9Iyjo3EXG5nA9lzQ4zpayA5loEXTQ59QsPBc0kDJeznqvk_2xiQL3ZR21k44Yz8J0h0hZVuV4vU5dAcGHAYjZFIu21z9BNz5fUACLr9ReP2LD3aw26qn8UUzU41Vr2yiceJZPSIKmgCDKEmxj5BdGd8bsadeLyBjTT6OHZ_BQKzg6PyuRPx3PfGfWaOX6KMp9\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672f10af64b953-97973383','','','2024-11-09 07:35:54','2024-11-09 07:35:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41548',0,'cd-form-entry','',0),(41549,0,'2024-11-09 18:28:48','2024-11-09 18:28:48','{\"firstname\":\"Cara\",\"lastname\":\"Richardson\",\"email\":\"cararichardson03@gmail.com\",\"contactnumber\":\"07824567999\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiArby5BhCDARIsAIJvjISTLJW5oji_uCPY4-URhXb2Bf1Kcc4RJT4RhbR4-vWhriyN2oOilv4aAnmfEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4wub7HcN4x3zwqhvH_qQodqYC0j_ccI-w9g06rcSWSeOeBm0Tp-5MRIuHbn70FhfYC9HgV8P3k5B-_arX-3hNUXPsrSMJD60s0hKej_6KvzzmhyOVSOWp9EnrqTI8Dc_64pJw7z2W2pdetuU8tgV8v0517i2HpYXJLn6dVR57Fd48y9sK3JMi2zplj5isDiuWhOnFmczYTKuX3qGUNXr84YS6m_J_lFQytZvc6V6iLIlB3baUF6FHPuHiFokb2JR73OsquxWr2h_nkac8IjrdD4d4Tn2PRM-yVV60LbGLdhlt7aByA6_RUqF8FDXltJnFLDF2ITrviPh38L33M4kjrl1cP-EsRu02z7wW7X9jaLbXQqFqdi1Um4eUUnscfSyTrB4IexQ4gk61PxHzIF-9nKkdCjr3RFKii2j-qBJDxTDA-Kt-PCSGpm6zBUfdBxvIiq1QlT4Tey7DIxliFrX1aRqSfKEC1n2Z_jbkDuXOAXRVZh71mLB5hX6l_WPi_9x8wZrIddaXOFEoP02XgNGtvxb2L1Z1V5cbuc_gtMXTqNdVgVgbUx1ZvfupIR-tWa-GdtJJGw0ScGFTtU_6oB9f3x_XkgCxllOD7Ny9Hl77-Nvjam6Eht_AzLV2O1_aeGdqJAPk8QxPzp_Nrg_VXTGZGnAb27Kv2z-ZbSZhXNuOdccqkKy4RFnMtyxtfDpi5fI8fGlEhK1SRUF-UxbSx_Cb4O9UxDRFRPWMDyDu2q05RIPynFIpOlUqQZBMugNtYUYZq4hMrgaq3zkS44Uh8MV3sPWt0kf4lpaRzQ71r75VkgsxrfHug18Tq5B8TiogPwWjXmvgwqbddIZqleHynKMObW9PL_VcNmjNnKDADWzf45sjDvPK8dRBvu1K_Y4JaVwpQXfLTxd7D03i2_Q21UsSc9qhkZqPICYk-it8_-pn7wBIV3Eec_pnxeZ6pg8X-9S1zdicW34k1Fy2Arz-MOttkVoLS-6waZfYH7guT80RGHwgcNkaX1fkM--YXB6r-rF8Sjsja3xHVNrGpoevLeYYjKl3ofzk1oVH3tON39YJKrtXh-u7kJy0aFMLXU1VopSnkBJOMQaJbrk3nk0bnZoaemFLfx8Vzo4pqAVvKnWrxkxUaa5ozcPaDAtwtityW5xc2fB65v42AxyC00CiaQ0PZZz77q7s9h9AfufS8sOpXq2D7hZksDvfwMAHiUamkIn1_3yDEldxTEhIhAr_wonbxA3r3hJwFbWeEZOAsZPoOLsGvG6E6xtyvGRMZQzQsGqpmUboDrSjqkkw8vVTY3HTMFUvqWBMOtZBM6h-a8hNsqlo6cIKIgaWiYSCuQ9ERP17sKZXiiey6x_vJMgTy1rna_Zmq05MyWv6lq_rGrNoxBk-XdlmhgLrJGf6vtV3Ncbtoer6aKIuMikpKL7XL8PaZafZSH136liGQHdIsDeIT5TupOQsI6K0irWoRgZOZ8OQN5QyAqyHrORS38Nkfc4Icirg6G7MNIYK2QIqTI_dtGjL_J3DjN2XwF6-SuAKLjKJ5QxzfmxA1QKiNk68cIlKh6Snr0bsSv1Ztlev-kIFlf9AOwmOeTlHwBp3yQ9Zv6GfRZrjcmsr4B9Yv538OwRiDXVJN-Iv0f0v2OONR9Bd2rQAahxqsz61hzuq7eYGc1fbLqHzvwZ7IH4c7L17j9gLhwu1SGx0lQYpOxNewwWNwxcRNi4AQaOJqVlNZkoR5y1S1LqBzwcMtlPAGg2Z4Xl18ua8n5Ztxl0shPS-0Xrs0rphlhKS_xJHdhSMGWGy0oluBUeWs_nEenX5kdAccaLk9CNqdYPcjvDOLYUKFLfp40-meH8b-c4svs5E0eMdpZgisPFuEIfSbCMQQfrW_6b8EmDWuf1NhMe8frAPNf38OUUaSSdeFBj5sFnuowz_arvwM-HlMuhz2hVVyMVxG8bauWkBcNw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672fa9d97ace89-78654892','','','2024-11-09 18:28:48','2024-11-09 18:28:48','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41549',0,'cd-form-entry','',0),(41550,0,'2024-11-09 18:30:31','2024-11-09 18:30:31','{\"email\":\"cararichardson03@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"2\",\"currentpostcode\":\"YO62 4HT\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiArby5BhCDARIsAIJvjISTLJW5oji_uCPY4-URhXb2Bf1Kcc4RJT4RhbR4-vWhriyN2oOilv4aAnmfEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7pdEvfff4hh41sSxH0ExVKmu7683s05kSdlNL3SFqi1fMQzdlMlZbNwW-H_mapReeIMw_nJRRTum7dlcjrEoxNOz80QRvbnGthOK504bWLTCuFpkTWpHPJzxHUi6WaMlYs-6FFQ3oK46obhQ2Iz6JeyyJTerfebmttq0-RW4VeS4JlnGNy2iDmettWGbjWNCs2gS8N1aC5CdF2bCOaYmNRdJqWau7gAMSz07ILHu8B-rVtCBZ8OEfK3MWrWIX_CO_gR8epOo1s0ONjqyCn-RBaL7BjBJJZD9WtNs48oHQvwustSHmwpJUi3nvUOGEttKwknUvzVqlWg4_gDJJUwJMaJfDsmIwTP-YJUJkq9jzA418aT8d3xwHrQF1hjowkzDEcgLrNc4fQ1A0_K7ORkhdGoTDpTVu4aIHjXYV_TjKUfnkVuPAfqnUHOrR2x7QCckce6Cx6n33wYjttsEdEfAN3mR6o3Azk9huHvphqNGsO0Bnyx8JvBOZQkdQN7_yBMDeKMJPkVeLA3tUfLOeglIEd9RZmbAwc93ebVJNkkfRnvCMJ_3ekTlXBUXQVLtyObzg0B65p8Z8wbAVIH8afNbq70eh2_hX8BBgpiAHaiz-uP1LCMjN9gxYBbnz4HV699CcJjjs4s7g2jXVW1Vhb2d7dHET1c6WxnLQ6Ki8GZilswaRtLN9PZAJVQG6xKEG8khimfdEi3oQ2BasKglJHdrYuDwkuFZ5lLwztb7Im1U7Tlrim08Zba3o7Z9-6f9uL0zd6RwwUzZMzW5rqWxUxtbi3p0s4DC5Bnb64j0BtxCovuduJ0riDDUNginIgaxOg8gb2LA76Ogx_IpDADSwk5SGvgU3oSarAmiVFnpj9Na1T46-X_AsketKwR3nQbyXg6BMp5037bz8QvHPyxH7Ydmo7jhWsCkFVzvSdNucwtGoLId3dqGi3IZLievOWASPwIDi_KR32mA2I_7oWUW42UJHdV0y6Hodl0IJjThMp4TK_rrJbepOn9nw7lO7_6j18AVURS1iic4R7YmY_8sYwMVtQRTUrWTsY5793uuJ9jjuB1dGy6F2cLZfK84JjPXau6u-L-Fpw4SAOBfd9G77BNpmAbqOvNSL5KBz0NH7YBfoO1IJdovSbM9xd8GzgffYx9dacb0OkZGAbNhaFbyeAvGRZlO_E4lVdQE6qfQi0_L-Ug_bz92iCtW6IKuwtGruxi3xpHPdASQi-r8AnbasFDPXRydKlsLoyM7p3-QamRiF9lPvKvy6r9l_JnLuD6-HYzBUnldBAMdUVJEdaQ2A28oItkxYwrd8jCML9vOplURVM4plMOHD997jE6mCrU30w4qS4qC8OxKp7d5LB7HSe0vi1CNQCcZsd7d4GNv_tK6yuJiOixwePJO5QFIJlgomwD2XJGVD93Q7SeNwEHwAML_xEQYp99NJ8X3JgbgO771gq9TnRTVb8IB51P4nxK_0P-7EbEYLpiAll6ssxMerTS8YDsNIvLpTXpbtNngBHxYceDtGxz8r4-3W8cCM3_lGMtZ_IA7rFfXjVuDJDho9GyGKUuihxfqdibskR72rVx_lZ3WAVexfwGr_EtotL2dv_XKojSOcBcIsUwKw3FZtMqi6XWsnZXWJQ0t10IDaMmgHUhzlMv6yf0NM8EHRarHw_rTDYvqh6DJVXN4BZlMm0pvcFBaJnvy1cUz-BDPnmVe_jbTZ__PmzkZEKwFFgP1-149WPBlr7o8GlEw6DvVW7B-VrlAKZ3pQgvxQO5Qm7hMj1okQA-y0KPVn38m3lDlWG6Ug3RhLxaoVr-HhdEVU6e6bgPJEW4ZSm7H4zjfJPIPpbGLvkUQIwFmhHt2EyWVZjuf7K4d2uMFpyw2tj80LJT7QAT2oPlZKuBDhSxWvtmwSFHW9nJmViDvhM2C5UYoD6hrTMMbaW8FubDFW78V4-XwH8YKFA7ASJmpCdEwI9wZ8mkQhTl0M\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"8\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672faa14be39a0-52555972','','','2024-11-09 18:30:31','2024-11-09 18:30:31','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41550',0,'cd-form-entry','',0),(41551,0,'2024-11-09 18:45:21','2024-11-09 18:45:21','{\"firstname\":\"Ottilie\",\"lastname\":\"Robinson-Shaw\",\"email\":\"ottilie.robinsonshaw@gmail.com\",\"contactnumber\":\"07833460565\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiArby5BhCDARIsAIJvjISYsahmz4SL9BOcQdcvytmZX5n0XahzQOlCoyfZ40ztXGASzOgu0SQaAt3xEALw_wcB#row-41115-3\",\"recaptcha_token\":\"03AFcWeA7ofuqtJkdInq_ekqNjSsWsq8VmhNqrmxgAQfGoaJxaid9d2JBlqoLB761p8zsBe2MTS7bKny_B3wOrT0vPBrFqUXr32jR0skgQjKONN4l9JhdDtTg9IlbfFjTXiNirgwjz9dKmNLMb1x6rM7T5mtQISkr06t5BzFtVkP3lTDsBh55QcddTK6CtUGMUt0HLX_VhoT36wvd5uaz-zdrucMbj7yvs_mg0TEAeaMqv_qxiVlQFG2R94CyJ17G6BCKB3J7ll31WykdMjKlCpQHvmuP46bg-RzjZEQ-UfYKwazsngQbFlOg3aqGqcyeJpXuFvcgmLvxwFjM9N9P9MHUOnYNqCi_XkbNjmDE3EbgEAytj_3zhYD614fo2WkPCUHLtgMIuV84SLhF1LCCXnSvZKNBYarjYw1wxF7U5KND032BUdNilMpvJO05BlyAF4SjzA5aG6RrHJYiwfievJeDS6YU365LZMBXQ06tZm3z6Eraxn37RssxhXhxhHbX2UYO_m0uZeCbF_lwtofp4XXlDQdUbj6QLgWGsDYN7pIT3nekAYYBQsofle-v3DvtphZojuDh15qwTBzFttdLUf08K194k0bhl0hpgsuDL6RfbJ6KDCiC8HAX5dpD-gu3kSxcLxTRdx5y0caknxMN7r-S7pFgijzYXnb0vgXdHk131mpX-OO8vnh-WlrJR3456qZRBziCVTuluHSY4iUmeSPVNQY21WEx9ZfDlwCK19tDt2m0jJycwNDKeErI5wa1Dn6q8XqjLov6oyhPyNYt3j-Iqsu5pKHHV7ZtzPsMnjc7TDCtGCvyuWHzZrI5jLwrt7NU9gF4AIXXk5TrVOIVWZ7Zoe4yDZL2Jau0Ff0_Ajshy5sRjJjmeSCHop1eq1QttAlneuPUkTGY2viU_6Hm2pZECLxNNhZt4m8_V89eDU3XdJdclMObyuvoZXY295osrac9X37xhaurcbaTyLQE_exFvY9vJHagjgn0uSeDeZdWUAbRBowj8MRF_RvkFrzohzbLnwfxiVKlDC93QON_w5umQAhloqAjNHdnhCUTPy3hWobjca9fy_WikJ7ed2yXGda50ZRL4A6UWjYJG3tGC4l9a4kwxFZFBG8RxIP3FYP1UlUpWa6etJO_fcCcLhMUC0h3RVHAA7asax-mxVHzOHuuAvsZGlDZbcXjEGroo9aT3MnWS-zXW1RkbEVFy_G9jZbyGWSUUaadR9j9AV_oIE0ZsEGZNxOQhXlVMKOzMFxYE0ofzg61d0zGNbFvMfFAShaFaEUN71tJodSBpgGF0tIzXCyBT9QQnx0-K8IGe8s1XFZTxpqP-VSVItMYCCM18uQ5o4aLuuCTn8oy9wdZ3ShZ3Y_sa1V0aHaxZc-5FuBysfCLkRRIV3kIKSsy1CuFDTyo9Dr1hiAhzuSbr2sf1tq556seNJfRHDnF9FGU8eMSmHLGKgSjUSN6UDorNwsraToa_99LVqfzTQvE8QkT5gmZmfMp6Sh5d71Wis6fq2QSjW_q_By0ofn9U3uoa89FJkvxRWeNhtobX16UcHWO8FyMtEk0sqz3OpmFa2kS5-l3Fno2vN8lGEw9O8Hwpu80vE7x7yZdAvBNdQh5W1tNkwj5YWqJxTlwrLOOazHTo4XFJG5W0vV9QD7ndWetWu4ycBaXblBMfk21ETdD_NrqQcXGyg8OwTval7zX8pFJDbVJJOLgtDGA2V2q3yV2tyF_H5doKblq87jt-kGo6fOax-B5a41J_QJl6bXld__-jwAPh16v73FPHBh4KIfQaM1AS5NfaC4EMeZSgM6dqfWB6beODpijYmQrRiGW8UeJEd_BkqmV8i0AMpYdt3JCiW2wUQKkCKnhmR0zdHgcSU2Ty0Y503iwAX5asiCkbbUrKMq5CbeNwBDC9-6y6EMK6XWh8hU2wLbuwgFIsK40H8tS6auKEXM8kUiGMQ_AcvQ0E55v_z7QDhpoFtdE63tbbz3YuTG2JQIrepUlILXLZeSBkCcBefAql3ZVIMg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672fadb3501729-30968366','','','2024-11-09 18:45:21','2024-11-09 18:45:21','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41551',0,'cd-form-entry','',0),(41552,0,'2024-11-09 18:48:38','0000-00-00 00:00:00','{\"email\":\"ottilie.robinsonshaw@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"1\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"DE75 7HQ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiArby5BhCDARIsAIJvjISYsahmz4SL9BOcQdcvytmZX5n0XahzQOlCoyfZ40ztXGASzOgu0SQaAt3xEALw_wcB#row-41115-3\",\"recaptcha_token\":\"03AFcWeA56NEbiGCnI0_dTFZiT_SFcKqsNbqOW1FAKqGsd8G_f1nIi5UlogTsdfKLLoSyhTOW5J-GMnBw6onhNp6gm75RBVktdMFDT4yeJHLho5-dpA05t-mXzmYH6_IyuhnxT_SbPgpBNn13MUF__S7cNlcL9XvOXR-90t_ZyPh_zaFA4YKABvPPFXQR5Rqw1VDsM2mRJjU_YzHTN_Wnp1N3Pg1C5iMPVO-RFi8KlRn-_a5_fxwxingSuizwsbV6JVd5tL-ojD80lS4af0JAbdhV-uSySqpUo52mNDI2PEEwaZFcZQXPpjPMszMjLsa3CYUol5dh35BEYMFvO7vTLR4Gr4XxKQW91SK1-ziv8H1y7EtvUDWk71uCbCTz2m28MAD7reGBaMc9jJFhqfM9pPEumsd_Tq7d22f_jpYZu94cRD8o4QHh7HYIdJX8J7yCYvK1cyQ_8bdEr-qRE9KjGurOkl50VcfJ4UEzxEEIbgLUCnksjh6_z1ov1KOZWXtcVNrF5T68K-tjSVao2LJUYVM-KYeGNMAPKlUTJjIQ5immu5E5G6pqLvCi6uO7kpxNv7BmzYsaag1AveYXcxu0UwJXlohwnVQTwaksJqRu55GF4W76rTgvP12Sd7KetY6E2mQNH9D7BtYCv_MwSngT-XF_FTNu1DP38PZKIP04O-gilUM_pqtmzEwfHgCHIHNzrAkYx2xab_v9WDniSTvWkDblg4S1t3wUKkheaj_AAFwkB9EawwIHVO3K44bja03tkPYzmwIx-s03je6GJ-47E96Dz9k_gjNCOeAToDQzKrcVSmASnHih70eOzCqGmBccT4FSoRhiNgkDn3ErgnAu_DhtdX8aLBQXIBdHv4sUFhMZ-aQcZBuTQFKCNSrPKMWG5t3ntR4UVBJkWBap-6A7GXUK_t-fn8d1S5hQbVjxiKv9tGolwJ9ngAj8girlJU7ZJaFz54TcQwNMHha64RO0iBOjHV9oXRPLsHamEJZQPMytMaD9p1baatTsujSZTEZwO_IEF9EZjj6xqIA1PhyBqbNknN_0grhnk1Ftznta8YGidOciStuouUJRgD-wXWosyu8NsJMc-6pC3_V6pdgWChynezidvadfYdhE4fFeoGsI1EP4OpcXCJ_h9VEwJwiU5w5ZAG5oBKoBGPB3T9sb-AqX6NcuQnIpg_YQWWEAl5OCYc871_YgxVX3sw1GuzmCVrH5-1jub9Ujowjrijkbd0vLB_HfCiL-Ng4G775rsNZc-DsZ3F6Uy7qMcB_rD-TXOcLEY26kb1sH_cyqpf1-TygyNQYKsHKEn7ChUYMi9ATHpC4yqlWdtlnmAkv3M0Bu008jqATzi3DVU1n_Z6xjZ-Y0s-rLsYTZuf8cP7xl99xFu5-GtO9Yqph9h1LhINMBlMPjdO0Z4_VyXjGRi8yoFwawNufsnV92KnggMjp5LNw-p2Rndu1U2f2oYHVoxLU9Do9nawOAvwYe5mFGjSRipWLsWLtJy_jbVwjEWVQpbBWtlIzJIXqV-Heng-6apqU-E6HBRm1LAeGd8wxmD89dk4Ei25DYR8cdhmiWGGXZ3iCrdFjoVNeybxi6fJLuZ0JD-lqyFZWK0MQGwdnccZnda4l-6JvI7Qbg88fdP7C8CU1BfJI6lcL4aM2tkTrdfc8xgjMS2APPbIv6tnDf4LKMjm3VT2b9TQ_MHVU-cxel_5IhWaMvsrm5zEHDxJjHqEQlu0UdAXpcVRjexjobnoedRkkiWdfvPd0JqtC2guuHxc1lbrMOUHz2uho2BRe3UHXQmORWCLCdGU2a1nDvJFyNpVtYX0EjpwaZ93cfhbfSuElCCWOhFArA9jVvQpS0UjZXaGeb5dAMvcNcilijCpaw9gFLD_sDv-ImiIwDo0KnTumMSHVbV5XqR35yo50TnBXVNIusaQi2Y-sKpETlxN95IAg0YseWcK6oir9phgVbNyllkHlqQfakjAuU8I3o3BxRkpHJOD3nimtXiNEpl1oL-VIpcYgWjY5nDExCATlexS5X5wpv01GHqPFk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-672fae86aafab5-86251864','','','2024-11-09 18:48:38','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41552',0,'cd-form-entry','',0),(41553,0,'2024-11-09 20:24:38','2024-11-09 20:24:38','{\"firstname\":\"Nicky\",\"lastname\":\"Moore\",\"email\":\"nickymoore1990@hotmail.com\",\"contactnumber\":\"07715300705\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sRiEZnk7LIsGLySW79IUnpu\",\"recaptcha_token\":\"03AFcWeA43thQVXHZE7ZrQzFCHGsDYq_7u_kyoUipZTFb7TZadRejcuPEmMosBMuXHwrgYNtzvY4yHaWI9uvNMt--50RUm8-IcyR3GeC0p_WG6pvj4n4Y7LoldzrBAjlJsULYFjggnq_cqTBbdm6D7trB8lkkaQudqlpUtI4rlxDlls3D8AnI42T3_kO26yYTAynhbgVZ8vGJI869S9d_7KXO72S6xTIPR8tM1_4HatljArZCXn8FA9S2x1DOZHxmKFQLYWN-uUzhXURvPcdpkm7xEbWhwGyGwFBOCW0uUwSF6kR-2aEo_Kn7jX8_QsrFk469jsstv236AoqgQoy8Nxs6Shph5GZ17mbiqLPevn5Sqwb3iiatXNzp2WKApBIyY3JV_Ui6Fvzpr0A88P0fSq2_VLxU56xbDkL6gqMrpQ57TxXsBhtjfhtT2Ha5z-Vnl3QQsh8gRQdTqxq5Gt7M2jxjDGe0EZ739q0i-Bg3akxYqZwIFbRMXLEyOdyy-VCkgJCa1F7A_NhsV86UBQ76ssZHfEiMSOOtn1WbxIujabni7r22woyLai5R57WF6cLaqff8P0QYcysRNnco7thqpLVWXA9-c49B1pzhC-XalEx6JqrRsCvq7oVYGciRdCVrTYh4eNoPc9EQZJuLk-bpKoznRHsJd74jBGxFXLB165afPOn1XrKdHEd0cDUNyY0qy4LoJLmqy3OITWUkcQpD_UYk6Kbu-Aj6gttfZEbkBXKmJW34kY7aG_z1KUh5bLYqMwFEa_cKvqALcZFZN4qS7B-HVoOL3BEjSBUzjAYpsiOY463huSn_4ka6WCgWgN1Y8Lx_gUoHK-SDQtFI-w17aEZGnopgBhBlE4xFsO7qoBr3Azd7GxwtPnR5RgSZPNObwS9r2nzF_QsybKI8U5at2m078HaFQiJOaSZyH1bK7elMNPi9nsIRqUR1WdXfHfxDrAEif_cCK9fNj62Fo5XRVzwtaHuLFMGciDgBETfj3aEqQW06CO3g6syuDHrIppyt-IUa6KXweV-q3cinMclLQjAMAw90SjAKtadARYVgO8fvp2Onve0ztDYAcTTkQA-XZqJLX93HYHAyP1Ux-27jAd3KMzhEMKm1hO83tyQlUDsqo2S8B0Y6zOIUGiEZ8oqd-9dmwmmnFv5bZsQNkvXXXPaYXnt6OJhG3Bv5AO_A0S6J-vY53hg0cs_nwSb3ha5Wr3xBAV26By0G8L-VJ2_cbzfBpPy6M2TT8GgEYDWOVgyT6l4ZDPgYkcG85PU4Xjk-FzA1IRYR4FqdQ3nlEEFsVvbLOzZjOj1AE8x8ufGy-oA1thktY5lpBLpkeFg_vdz4jgGrELySfLTo6el60QFHPs9kBlMjO00RpkFMD37GWK3nkoXsZczA_AFA-zAOisZx28_L_rpH6NQA3ZN4BfJVMefxzPrv5Z0yjPR1qv1g7bUkcBM4ZFWhQX0c2uFGjsrzNO-SukwGGQ4R4ioT-UU9u-JoRDllwRZdhWbMzo05aE_0qVD0hk_ODZYwknnN2xwdXrxVYLtQ_3WBPuNQs5hAhyvntaOp6NUJnrkPLbCBL9pCiFOeGmURbE9HTATcBE4xjfpA1RJQYzFRupKMhLC2egxQXCKdBiwYbIvs3zAvNZjBfV5IuI-CCnJjO6ipRokti4u49rCQipUWoJSRtCARKrXN7PoDiaCmcIerLz2nHkeT8Np9nXP8eLvZhObg7DBtZ8odZGKgivFeNPQTVaxtZ6Hyv5z1Gb4Ijd7GN_r4Ovz-Ta1hXd77BEwQ1ibQ9tsH_J_fPfIhl5_oX8bA3oxkrqgPnF00HU6iiGOuwMX2H90F5vNxWpoNH7U1neI7Gbo55kAo6ED0oIbn09g_UOBS1BryL5YyJPp47_zX80E4x5hkr2w1wFOEdXIC9pBHppjkac1dIw_mz6WrpFoWmDvIrpubcRqLnjyDH-D9Yi2FDcrxeDmIw4vg6xeZOItkSQFPZNzFJW5bL5T6hpt6c1GWYZiWkZn9N8TyjiA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672fc4fbe1bfa5-52306177','','','2024-11-09 20:24:38','2024-11-09 20:24:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41553',0,'cd-form-entry','',0),(41554,0,'2024-11-09 20:26:17','2024-11-09 20:26:17','{\"email\":\"nickymoore1990@hotmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"LU7 4BW\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sRiEZnk7LIsGLySW79IUnpu\",\"recaptcha_token\":\"03AFcWeA47ZEWv152YbC0bT_kobickVxw2ciEYuk_BlK5NoxzVr6bWWRBmVFm5uQiEql-c23ebeV9XNDm1zzSwgu-h5WOWcqHAG_MB2CHSSMEFCKQA0C9UuIbU9qpyWO-Z_U1GK35Poa0AedP2hABLw47G-1gNQ1UDrbipCSNtovrey74ME3Zmp6UoeQu8id0SLCH_y6pT-D17oo2w9jr88WmfXGi4Fmxny7lDgVuLfqIl_6APml8cjjVHclGItD-3amr75tziFQ81PKRtmJz0eKQbynowxyMGY17zHYR3oBxV53IXSYWJ-U0FwRETfsyOezacC5g4hgT8kZEpixgL5cJ4VymkVWjumLh2JxQILfSOK1hEu5BkTOImSwCZ8xT2hvpe57hKSknAeKGaS20sEzJKLfcz_Ql2nEiWCfzDkI_Cvrw-aoQ34SM5NWDD_dEGa6fjcC6JNLWCFrOtq9qqiYGXCI22_DiaPLz8mv0H65h2gBbL5iYcnkrjizpiVlG6xPwgEF1i7uSiWickmeGbU3UaRiW6Pg8svAeCGEsfvcNx5Q_74t6DcRppcHhEDG89qCD8StUm_wSlfUyIPPTaDd-upPsQ752TYidML3OSDXWQQXOBQN-ut0IA1wNIE8Du_8dQyrfX6l4Wy3xF01TwBxpKo-COsV11c7hNHOhq2sSU4WXbTeya9slHTi5Xh_eL1CwQhKmc5iSTOWRp-cfFaknNg8OZBkXK6ZjKFoOOfBS9R99HK5eUkeKZoL3skhuIVva9CdTSbcgY2cB1Mr-Ql2OOt-KjUpN4z65nlLECfzlmv2jiRe9uwvMSAOnVisQwnN6mC-y6_Vy7U_pLNjFebZzW3yZtHUE0bJJ3lxUrTYQhf7YNr24X5EethXbzE9QjsKY0Xc3FbLTNlu-KEtoOBK-mP0x2YgjN6smxz67R2NRKQT7cOWzj27CQJuoYeSbeWPFGXFxSyYcNMhjCPtVZuGLSalIE0--gINAJIf78fwv1_GJobnzcUgLefhrn1GBfvCuRWoRS3auCrioV5hhD6gnnZMUqgH4yNWqbueZaHZyOQgnm8ik7pGG6ggnnjxVdqhF3WC2KdOZdF-FjypT21gnclI1XMUjVv2RBibsKR1-srw_ydSplUlLXRkEnHWDBYZ5yATtRTaocgF1BXFjYg_wcgrWBNqYBSRF8tHOoB3d_zTIuOgJAz0dGKhZVUAFLNcPcD1_feDlBchMLWGgf-5dan-QEQRNuAwvIQyyPyBSbEFdzT2r_yZv_in8g55JvrKR75Cr85sNyncbj9WQphdDjhexjND2aZGG1mJLobw-8EZ7Cc8GgiMmG0fua4iJF0xr9tz0L__X-vJZ9ixLgq_WeqXZa7WSkmZxKJPJmQkbuCayGVQXM1GNc4GeJG8YOHerCLJcVa-npuf3KK86CSuxvUcxg5reBHmk-Uijq3yHEypSSB1eCLiWb-zEh1cNW1UBcHK9MM-32YDIm2xXzEoNg823dwDagzs5_kYSRLOE6NEktpiYdEVgjUmAp7xK3CZdMJSk0v5S7xxPmrGsz8OWklBF8yaBW4mP78iNIRy-t5mQlUrXQcS3Bac4_v_zq8GqHxEx1WwVI1YK02_P_V5QRTsu7Qvow--0erP8DVThRq33dr5EdoFZ4w6dfmJ7VN_WsWzd7Z0XwBGvRVWjz2RFhTO-xAOEHDkonCayZabRdXxnlCNDVa625cymYnbKom4CABhiPufx4LWp5VG6qCjmxfu_og0_YcciZmyI4-8adKiMckmZbzk0auVkf1836Q6xC-WH6aQKFTaRniDHzpyM_gpueZgmkAsPeHSmVvW1TRFcjUW88yiJHPKxvlZNMgki3AK-cQiw9NBx47JF1ZGUCL7URfe_WkfVSHScAcIuzkyQAHY1wret316IMZG9Qmi9u7qhB84or1MOYpZo2RMUfBbj4-0N75NkxovAf_1inr63nHmBTnlqHj04Oh0XKtdSP5nlHMOsyE6SuZDEaOWR7AroFeNt2bPKAc2iivjOe8NHZ8-V250pOxaHFMiHXytLyYi5dLLpT\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"14\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672fc55707cc91-84616615','','','2024-11-09 20:26:17','2024-11-09 20:26:17','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41554',0,'cd-form-entry','',0),(41555,0,'2024-11-09 20:31:20','2024-11-09 20:31:20','{\"firstname\":\"Nicky\",\"lastname\":\"Moore\",\"email\":\"nickymoore1990@hotmail.com\",\"contactnumber\":\"07715300705\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sRiEZnk7LIsGLySW79IUnpu\",\"recaptcha_token\":\"03AFcWeA5HVnGq52Qit3ImFRbpTRw-8PQPul3neGdcPotJzlir72DYJ5iDTWrlauH5KARurfAidNO6Nv8d25b0c1jCyZAS46DV-kyvmA_3oVTtjdP0cAq9l4gUJKyRVsYK4dXq96j7pQL_pBhRHrYdEsh3ZzVxkBhzrs1Uw5miX_CgLu2IuP5y4N-6-1hDrJtjYQIqPhtBTmNer7eM8vhewqs21bskldPp-pEV91yYmENEmo8F9RYNyka4W5JMOrnsjnEonhJkvj-B-S05BDrH5hIxYTjiY1i7Klh0g5xDvFFVlZxIl_7amTlpJmHpqe7Nnh9BoGF8MaZsLC1kvOiuqkW9JUrL9LY4rHRhTVd4HlwX4Kogycnm4wJUQ3l1WdnM9-D1jRP-DcA_GvpLh-zzNN9xv_u-SI4BLGC5afn_vDUHn8ry5nkQGxC3Di-iPj8co3CWt64x6I1OSX7MjfXBkkWFPq6hcfigY5mkKbeqoI6GQBKY84zmpuFmrKBVAlw4i_nBUBwRmNP-jblL3Dr9H7oTuzvQ_BhW9rBN4lr_bYvW-wqwYQhn3KicxYMBhHjN4HvQW4ghRrhGPaYbf81LHCBHSsScJ4p2t1jt-Csga3CLrhPlmfYSVGyG4Nu4KA8hZ7BGUynrHg_5-bcI837U-hBHumN3fA5f-hpYG0aXiLctsJUDvMNCxenO-jJRdmTUJtrVCcYSgu6meA3QKpcQ_VNjvYd3g3fVJw9AM7P3QN7pe8ye3ID6kGkFFcpXal0eAS_-f1zxv0TRuUJIR5_zYCVLddYnJeNLn5F2ZSJSxSofz1ekOsM7qmhHtyS70SyUJ81gsV2hQI3zC7iM1Fi3xP--xLUWGFVdD4fnmHPzZ3_CwTdsUyELEK0DmzxEILdL35onFILXLFaNkY-CZyLC8O4kmrHFQGoCzYE6ILu6sgzVzrog9rwDf6De58FLjZOUupqgKKszG0fkBfmR9objrH3ls82PzbdoCMCQ7OAJkOr5FcC3S_7QoldlsafkyzZ2WV4ur14QItdhJW_1fU8nxIgzP9f_Xyahc2JpaDpUjJVJfObwG9CW0E4hqcyJkI8P2LXB8maIB2NNsjdx78tYoK0JUoiipCshsBGlWHp8GEj5eHXo1X4nSywPMt7i9GxcTMoBEYQcwZvChthPtkaMT5Fkp__slMZuvIiulN4dLfSZmIEb5MNF8OunqAJN25k-veglJDT51MWUVL-Ac37qtwS-iA5bi3zweI6Es1v992By-K2nz8G9cdtojiVQuYn3gbf0Qst5V-LywiIifLQMzNRRNGVigVObTfVKpQ4rFOnhJrdm6WaskV7aPpmUfZwubrutNdXYkf-hX5oYl3Z6C-PAWeDe5dEd2_8hpST57r6VSCaGPLpEZ2B8C3RBJOCjMQHM6MCSZRLUTSVfYsKc-SDpmT57IY5YXK85ePhqg0FECXJ35MQfK87-s0JB4vUlcMhe1TNsnZ6n_ySasjr3pEaANAc8l0qBxvT9Hxhk73_pt5708qbz27rfAjEkrcbUYL0YomyI1teXQ-umP-EAAqCN3YNExk84uNK_LKI5Ap9XaSRqUcHBMdS2MF1qKG5IsQT2NGmMxORMXd3q4UFwb5lrPsWxVAbZXRBxuuROXn3qaYdQKYcm5zxFk-smuz2LyXjTFI_E5XufJnxan2rUpC9CqhH_vDMPKSLRNbVbu1PCcfZ8aa85UYCiRIDRXrU00kI9fbGB60uWl_9_rh13lbSKcf7C6f3JcwYG57ljKAv0Iw_aCGmTXoI5yeGj7EDSUs1uUg4AwQ64dFBVEFAqRxnOXoZQGVFTp6wy8EKUP1PcXovvxCQ3c_mK7-aGf5B6UYX-YtuocBMinKTVg08WO3u2ISG-uSVhKUh_T14TZz5XKst3hfm31__f9tKl3Wt4vT7FynejoeSdClaT3wHZ71UXH_7hsxpBE2Q34WYAGzJND36xgPfpGHU-RXNRDu9kn4tX1p4jO00o5diUjMydT0R3ZRfuQp7eP3G2akN_MmYSLdk_0OsaFgaqAXK6gUEGE_Rm-dpJ6l8m\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-672fc68fa51805-11688426','','','2024-11-09 20:31:20','2024-11-09 20:31:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41555',0,'cd-form-entry','',0),(41556,0,'2024-11-10 09:01:13','2024-11-10 09:01:13','{\"firstname\":\"sayed faiz\",\"lastname\":\"hussain\",\"email\":\"faizsayyed906@gmail.com\",\"contactnumber\":\"9430812414\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA0MG5BhD1ARIsAEcZtwRlkNSIYJ_rVWBqL4HNT2j4-___Tad9rzjy9soBxLfrM8C_PxBMvP8aAptyEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5tJQ6isjs57nkHoR8Tyrl9ANSyO1FJQ8Dyk9tiT6rOvrpF8KjM67wd5tMOLmx6WY3pNq6gnucf5_7qQPcLpEi1c0DEOEXltFlDeme4lrCBSRpNytQwZVEBSI0cg5AOpRG9G74LF0Agm9vV6xaMUUpaosunQXFQjlR2Y7hDYe7jY_ompApMgcJpdrM_lltkzya4ddmEq5CyAYmzpABPtfOn26C_Ywz80G6tJ6R0aR9iIl3xLIN61N5Ei3o7BfcPuIMMmsGFk5qAgm61cz52H5Ml2ZLV-SJMuSpkACs3L4mIaJv2AS-dyTSXfED4oUr9KBroIOFiL_AaATH1kEw5U2Xetd5MRp-6hnJMWXdB2KUuo63E4k2BN_rn9ek338T_euhMxz4CdQrMlXpHSdsSZ3MlQW4R2aGAlG-d09uFRx48NEMh3ULM8Ecu3tmDsT32ZCB1pb0l-U_EJTTeCN-eVYyKwEX1cuYqHXR7NBftu02foB65hhB9tlUts9bFTo3TDVrc4LiLCNiF5msIZh-wMQmibWCCziZ4dwsCCScCFrPZhHSACEatREz7ebrmCm8x9gRgOeUhv-I5Amk1u9HQ4QKfOPPkGw7aI4xB1inq6MLtn9aR9qrGftbbTP14HwTsyWtbjrb44g2ULIg_5XpJDcUkEFU7AI0Phf7ZvZUkYZadSlf3STY23pUkYKALQQbv3cH7aKj-UkXrdzagZguySBPTX_4pAFMErWGSPqpU6zdGJTr3MCq2_FdRVCKew7E7BB-8awn4STgfdvkLE1qYuWhl7D8lyFWP5I1O4QlUq8OBenYr5CybT9Tl7ORLfHTJTI5bLmdm3TbU4GaDJh41YpO-H7GYM_PtduM4UpC2_6w1iTLS-b8eRbwcIsJtctzr2bDi7eFlhB9u5_A3B30wr1lMQeApsb4C-7E-A0Vp1ZVI-Uy28U8B45LHBCn-gTi02DTJeL6srAjvQtt3PrgTJTmJNCSRQoR07auSItTCiqjaYg1p4kkFD5-Fr9kGauM8JEqjAxOjguCFBMCWTfn-NCoCR6tOz7ZH9qxEJdk8i46_BRKvfCZOUzWPUktjq5-sSezSIYoZrq6y1ci4GcV1QJtrZ4fICYYScVuo0nXClrU3jc0g5yaWx6Hx4oJSye3-yYIyJcVzZKCiLh9_FHg9xGRvdvWQNz2OmiXkMLMxqENuCANQOOyZ3HKJQyd0-dVdV6MSHSdvoeISvPTdf8jjlk7N0l96fMnks8GA-mjtLUQCocmelbWmVEQ-Ym3w4u-M_TMw0kTpoSdvPWfO2tVWvCCKU4iC0Zq4fbagUaeVDZkJvboYJb2qMre_OE8N-OK8faVF4AR-HmbORQc9mVO0JOXe0FtgVHqKU4SrIDof5oyIsN5OMmJXpywMtx33IC0Xnfhq7UsxKJEjcbCXFtYHXeVuB40XjajAAWMUf_Z5kG3rb2H1zCUscebR25H9_wAH9OQu4z4UIuGAmvUUXzv9yoRymTjUc56XoNRTcdGf5C8lzWcepuArC7wj8FF0yJOO8LOXgQhl9lOc8-UbnF7TTyg2um11HA6Kac4GpeRcIVymt_MVnuNO0iJjjSWrfcz1_o7nSydpuM83HkZAls8CX9Xxuje4N6aAdIxPQ8WScmQ7kkPMDeUrUNgvSAzGfDnfvtRcsWCbmGKV8wkPEP0zN80U25_Y7aKD61GWyfb0IXkJ8R21sNAaEE0N5d3wuXh_xbh06v1LCHiEPyLGZ4bfYGTzBuNUlF6TqRYH79qjKesJTEu7A8IIg2YWuaCLiNUSkzG35LgrqF03mdgQnyRHM5gj_Dq12olP4HljiKhOtWEPUDvISsQSYHz4emfaToYsr9ExJb5bEwC5wtQ12bpVHFoeG9Au4GrDdDVUAn2nYhwm2_K9hJ8ZjtavZ4h78kNrFZNAK25jN61h0pq15cmzR-TWqnwCQgiUBqiC20CIZFjy_oRVWtOU2aYeuAM0ACe4THGoyhXD\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6730763773c909-20451847','','','2024-11-10 09:01:13','2024-11-10 09:01:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41556',0,'cd-form-entry','',0),(41557,0,'2024-11-10 17:58:38','2024-11-10 17:58:38','{\"firstname\":\"Francesco\",\"lastname\":\"Galetti\",\"email\":\"francescogaletti@hotmail.com\",\"contactnumber\":\"07522144907\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4KQt3PG3r550YeX29amGHzlzE7K_Wm0oR8kl9XJiGiDhuN6rVPxNXv1JbUhhNzcnCYEYhecTNK39PUYMS3rEiBX80g1n281-qBraV8p1PIM54xqo41sZzovdNZTHo19OtmYN8P8QBX9PV9j7UDePS5YRRLcPjJ5EY3DDeFgg0Jq7g-_9R64FloR3tJqFrAsmfNAHTCO-lEJX2vWoJB1sQDhD1aUDDpab-2y-dbB1CieyIOEYlofo_g3pGChXntYYeOY5IK1aMdYBR5BUvdvpmcGZS8yJdCeFU9yZ3SnnkPBpFr78198fNT6nM9ZvcvrUyb5Coh-b1epIcr73m-VMZd6JijAdGrWcBmF6x9cm3WvSq9R_Nkqw1YeCwevDt8XmSkmdcH3UvVRacj3ZKeB7TudRn8WONpniPQZeRi_0GaB4cZNwZXub2h-ZUKx91LcG3SJQWqRDFoNdGLpS4ipQPOToGYHx_er_HnG5c4-9I2R3XjJL3MVuxzdZ8riyLH5oQWiDyT1TQMNSnc5tQRMRgmSjvzXKJYXBUheMrV_hBhb7uWKv5tzSXjjFKGY-lfTxa5MpvwhE3iIpQvsKL3zNDocvm8JfevvYyTFMOXElk1Xp0QBo3dg61GILOQVs-5V1GNAcgiUgABZPzXbCY59N7H2uAgGU9B82csmcA38em9L1cWFktNw1vUutHNp8Maqy2ki6J-1oLG0lrwjAHXOMDsi7lnIBmJjfw-QP6NGuEv-RM0ONQ6_I0q7DCepbpmXpa_LoSMlH_52ddLHiK7Xy8bZfxEYGYOUeea6JOpcZdY7ILMvuvGhrHKdtWYd--eJUoMpuNgXBuQK-hWKJznaWpNdNz6X2szFopv45acbOBMkn_L5CBzSG_SDIwaULIJTIsRT5GfN1rrJsSn1-cWXP1Yq2bB3NN9uDvrPaKnpmZhSFzEsZWt1LLSMVf6T5egdfx2419gevrssCb_QZQgUBKIKtrAAgm2kdIzCHH34qzbIj9ldjyRNmAyN9-GBLKwG1eIzliRRLibTJFOtwqlW2rg2jh_1XrDpU6oi2yQ5-7h21NGnWmokF7DFcvu4ww621lYb39NxZXjdporWbQJ_cghDKIoQftNslpTLnjKe4MEAGF_oH_cYqz61pA6S7gg_9hYov5pok5OAa8idrWoii-VDfW_cI6AajLuvtdSU4sWqiowJP7pitJasWmi72TH_S8bd9x0h-NV6EsZ4lJsSnyESwGG_RjEW1XVHnzYvGO4I1qLVBWltO0S12vpYiPuGGnJ-5GSe4b_WUI09MmOThI4uaJFwVf79H0u6GsTjEzYVLHJPHIMZTVrxlZh7HR081nAmFHHIXVopx-fkKmgh1zVekwcI_MUxZxdodv2CS0If14GlerCFOtQORq2qssNWOdvA-c8-KqpAsA3Np__XI9p3zHib2YYOGYCLkTdA-CdhDP-YTRNFTRnNeHOeMU9DT0JG2fWIstfMYrYmVgzAm-9odJoYewhoCY3vGlA_NwiefnaJGoPlmk0ijqt3ed0Qti43iLiYa43TE8mFPW48Tmn4e5f8xVAG_Uk1h7Vo3CxhlOhOc_hjKH1z0a7yj821Wrq-uI3QJm7vyl25f0gbv2QWfiZ4Ryimlv9wMq1Ue_rRyS5j-_5xVcv8dYy9SM8kDAOyYMu_YUzfw9VwrewQ-tQlq2uLetvqFjY5mMo8f9Wyxf0oqxMjXHbfjPHHFbLKPplVOHwTFRFPWJ3EnPXGVck2A0pJJ3cyO0ab5gC1Px86NiqCiHsDMZk0vik4CRgptmzU_xRrl_5TnJ_9xIyc-CDhOJd6YO5EaTpqJTWQ63bWsMrgcZGVukSc9PYEno3YNfDFoZ8hPIXjcDtI82ScGdSOWgW7byi9vngEMFFgrPMseiYaJAmHfumvmKHvmhfEN3JpR7cBhcM011jvtCJNbsYSZO5ssHKMQJsmc0JvBK0CJcC0D8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6730f4409b4e40-81398687','','','2024-11-10 17:58:38','2024-11-10 17:58:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41557',0,'cd-form-entry','',0),(41558,0,'2024-11-10 20:38:30','2024-11-10 20:38:30','{\"firstname\":\"Kamellia\",\"lastname\":\"Kamani\",\"email\":\"manoochehr.kamani@yahoo.com\",\"contactnumber\":\"00989122454380\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA0MG5BhD1ARIsAEcZtwTKJ8WCNDWcBU_08-yAjaqO2N74-KwTvU41gU6Tyb26X691nhU64vsaAkI_EALw_wcB\",\"recaptcha_token\":\"03AFcWeA7jL8BP4sn3dF-jjqJ_QqI9czf43gwCJgeVD4GxljNAg7ntkfgoMN1VzYTNS9itgVdMOykUDxGs_Zve08m7e-3fe-Z37Lg9lBaFWWSlxpJXSpTM9gUJVS2lR_7InOZ8-9xZEo9jLOFQCA9estxOj8Wfmc13VAYqBmu-pWuLY1rfppoMwNs4eqQ0Ev4jo1P-wGxaJaKk3yBGkLuaZPay9nrDyM0eM3CeUcVJKdur58oE5XsA9hChXJ5hartCHVOpPQ1BQPR95onUefI5ouR2DP0kAny_rPVn6qYWrpusTB_Fs5FtFGH6MTrq2VUvUv5wl6MlLtnGFb3bSCI7qctxB5ZUOVAXdbrPsFT1giOOSg1tq6IHtXQOO6e3KU8Goh_GxfT6hsSu3UNSNZox-sZ80EEX_nKouoaBhD1b2vXzhbeHpjrF2RVjJV8l1CvezbOLXKVLY-iRjYEf7q8gcLx--bkmv9p-omG4I0mTZLaCiuco7Da6-WMcor3Fr53jnhoGYzE5W8TEnDSPotDSmFaCkbYnNlZzQmnxz1lbXjBQcJPN6olh3xwajUcRryiBLAatrf4eyEUDckmN4BFhMTlfiogGYSrDsdDALG-yQzLwBjHFAWWDrwPQtIKpGCt5BdkPF3CxTcYJBXcLHlMaXu4zVuM82Qe12Yeb04Iy8tCCxiXvddxq8Y1GAQClrxQU9BUQ1DNYMcOoxF2HhEfxHGuqprqH5dgLqPqc5BVbh9PAiFhtK2E5LmiDten5x5PKYaAIhOvzHMsq1ifzJ5gMjUtp7UFGyL8nBuwBaOBczfW1-A0bcfbiNmdF9KULJj3RBYx4_QgYI_rugE6ixfgbhoNyoATRtwPXec2T5wCKMyxbSQoImszT4xT-4VAMj3L3bpAkKQ-4OaNSkIZtQXHBT5MNbCKMll6yBDWEJjQPVvQyJ8ozqoA8HDzd1gKN_rMUOSnJQTkI01SOV37bEH_OAetXKeIhqzPIfOjHAuM_NTBzsyqij3neKJ7mQXf0-70HmID8QMDHMTRA1UB-9zIA0HmN9PkJxNpLpkV6eDQdzqEZrspyqLL31ntCq2AFcfd_gzT0xECxFqiRG0P7jjL0ZmBeoJPwryZG1BDJBkOtcaxj0eGLH338QLSLejRarh1uC_wl_7uUfbKxnq6XUHWRn8htg2oa71ve_8zh0kEaQvnUheplW9Jo5ViacilNao_xQytvOttTVT0RT9-SdWBdz5NuKbOvrslukKZ_FkO1HVdPhxbhC_tmXivxObeQ6HrBlzTeT0X4P8wcPuZONq4LiqXL4695gNO4sKQEwEQBMBtpVphvu5j7KejXBggvfKTF9NBT3L1r1Mol0Qpg7acKWAiI2O7oLEpGjp-Af1TGcdCV6597Yd476AHklY7M846weHwmrVuPM4c3Ky98VATze3NJhyXUsyZdyZ5_PfJ6j_DnikRQ3rVMakK2awDleaJFl1AYxMQvzoi8ckDwMIwC1VmgrSHWM7ACKKaj8sibtqfEDDXuJAAgZq-4O9ottH5M1uOtLpKP3BjjqosulzZgjifCRuVAh8TCSiKmJF3VdzKGgavz56MiB8EET12fNgueQzY8O87bAnTsQm_xby3-II0yU9PKLssOGMLHtGCTsTr_rAyt1tRbtirOQcCHWDv3tNaT9kBnivAET7611lqe-KC84-Xvj5yNv6Bo5bhep4vl_D9_h8mZ4PDt5Vs3FMZgkYJfenWcBvfzVZvTeBCTwogQWEAxZkZDCD8-1-M4Ch_2-bzQj6Z_4kkuKfC483Vts0Jq2CS_PhrrUEzjr-RZcXByf1fgBu0UjYt0A1lwgQfnrw3PZN5ww9MuY-SaR3wp2iNbUXDyN3v_sjcFhtaKHK1SF-fttXYIq3VcWf8xSvW8LGXoClaxXeamvNEsgRwKogYNS86N4MTWLhqfS0XbLJoe_9TtBlqXDWf7T_UXAQxZyyEoe8puj1MO2GRI4QESCgb0Cf6zlARPfLX2f8lJ1S-NlAHpJb5Xfrug5tdRILZq4y1p0NU1N_2z8tLszhpSi6VSVLKiHA3BRTNIDSqdHBi7Prj4DUS02BNHslIYRUHLPG-KDdgi7RjlYbgk5KUgJgVQ1HA3gNf6V6CdHIvVlhoet2Pkm0lXmKzy5ge98T_I7m2QUMSSEDml9niw465pww208Pkrk65LWVF7ax88RNur1GKjbDZemw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673119ae86fe72-79488403','','','2024-11-10 20:38:30','2024-11-10 20:38:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41558',0,'cd-form-entry','',0),(41559,0,'2024-11-10 23:02:36','2024-11-10 23:02:36','{\"firstname\":\"Nada\",\"lastname\":\"Abdalneam\",\"email\":\"nadanoday2812@gmail.com\",\"contactnumber\":\"31357879\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sOyfYLc2ENgOzEqW086zEAI&amp;gclid=Cj0KCQiA0MG5BhD1ARIsAEcZtwQYKz5wnt8SyduByFNh0nOpRfd3uWwVrLQINIp-EJSsL6-W2xlL6FcaAvpTEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4I-CbCtA5_sQo92FGRXdFZZbfYmPpmzLVXVXlPGgi-5kE4shrG-kxq7SQ64vn0IANHQV37MwfX2eTRwa34t3OV4xFXpGMp1C8pcb6Vpqf74r5XTk1Kvrxmf4jEornIKkYd-cGOv-60hIagO3PzkNGO41MZcIP2fnf8UYBtexdmMPO7u2izzkZE6KAi34lkteUqki4jrWk_e0rAblO8xCxOuKTPeIPotTYxH1y4SfXYJ8XRBWnuOfkTB0IDZpzXkplWsX0eMFvMgiR3fDKbHStDfzPdLNRNlVCBg-pDePuaOXQC4swwQPWqr7koGRbjPhqOdm1XYC4ASq_uNbv6Tuj9__RhGBEaco4O366-Dlm8BRPkgZ77fntOc3YqRZE4lgRfk8_VOmEepu8nxzUBUmt6jdmsKI_O8H8NCDA9NjMXoKEwyTxb_IikI6dN5adzfYfUc1W8l4FEWWOvJMeZA-gzrv2GDixy9wgapdGOzkfYVcNqaCyNl0Ld8HB9kVXVR8M_jXQKarYZSurgfHKOdhSiWfQRVW9FUlxeqYjvrZUBmMBtPzpj49mAbEnPNyXH74ckQ7XfBDvD1dROZjscJvqAZyzVRFbzMoa0cTGk-jS_-CsdFau4apUQo8s1k0WcESw2MdrE_-67JuoEQwipfJ_EJPquyYr4kLPdJnoIQKHvhuApgFVwWCRZSjBxl11ckbQaxfu_HsOdxfC833pFfNRJPtGYzC5CzbddXqB5ha7xWNEbSP2bek08_gPYFBLplZeNAVCahS0u71uiy2yOcbJIW6wLmGsAIQ4t2BC4Tyk4iHSXrRlsugSFjjcyQy7VYod90ah2fSegiLnEWojL07o4Ofs0jLOsrQ-_Cyr_uEqcfkysef1OyLmGlaQS-JRCClQlQHbCbQbCzqlDeeYKsiM-EThzAg441hSN143QspUtQfd3KhZzxiCVEsZITSrv98QRGinwVj1YuABIN62r_g3_eb3QdpXwnHu7509ooDBg5O2NH8QcSaK1shMpEfa41RbELU_eypjyA1NqMgo0k1kOSnXTAM7sH9DbWRX4ho89Bg0cxYeXWfjZfOpDSmxusiB-kojS2u5BQsBkxEMDo3fIbeEEi91V2TQl4A9-Aw7okUliaNzPH3vaqoKt_U2VyHHUB6MbIlXLDYQ0YRrN40YFgGEZq6BSYP7zSEzmsS49MpQosrq08nWdtu2Fwenyb9fMCQnTuDip3NkOZ2yE4RgxlK5cabDBGAKnTIjGdIwXD0TaCk1acgAxWh2ip2xr-mh8T0yGVdNdEDY6cxRBNBVmwC9-ohvAD5uRPj9S4Nfl-WJgnXI-eSBM-mHT7ZWZ4EQO-sos_4rNpuRNdq4g7OEAA1clEIKMsAzukjOEIRkXdEqzZprUhRTNi_rqQNi1JH8r1R48O3fGkZPZeGTXKHDcZw1AAU2nGRPIANSKK2rqpQc2dN6ED8vw6nLr9tYIKc99Cv4Yk9ZG6xKLZMCxquGNO6uB_hx0wQxS35q0ktN7_x8ySJ608Ux7AbbPzwWU7ujQeMiebHGsSwO7iHf8spDc_nPpg-sDJqU9iOC-DuHKJiJXAMY3AYO8MGpH49S52O7R5EzgTIe6yvBmIlny99Zb_w1Rmw0Z3asq1G8_8BoBCgzdaLuqBuN4LXK6dEqoe5SbYV8zua_zN3lew6HTcYJERzY4T8KSgvDDzfuu0JoGXii7FWF7Zx0uKEJ5oN3NfzIx-td1J-_oVYjiDHx1j6X_5oRjRhrdt12vwyyD-YES6wUewj-OEIc7SmUY08gCYX8LLzuF7EBufD3IRZCeuPOt8LsVSFiumYAPkwPiT8AWaUcKbWJi0Cku1h4z2YOBBNdfD648Kw0DojAI3fsWK44STRa3tiJ-VEuluovHuUAAExnXLEf1-H03DgvXMLwbjSZRFBe_2_CbDkhgMBpkTi08k0i_NzTamASWJF9uPWpPJvMHrj43sNvgPJ8QtaAtv37o8zI8wx6Cu6ergKY-RDVLDSSnusos0rZgmK_REf8Wjk3ZPpYiCUeKgjgR63fQmFtTRNKb\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67313b6f55f401-53726036','','','2024-11-10 23:02:36','2024-11-10 23:02:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41559',0,'cd-form-entry','',0),(41560,0,'2024-11-11 12:53:26','0000-00-00 00:00:00','{\"firstname\":\"Ikram\",\"lastname\":\"Hussain\",\"email\":\"ikram.1307.hussain@gmail.com\",\"contactnumber\":\"07388935190\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tlH_m0TMcn0SGhuRgsAD6Dh&amp;gclid=EAIaIQobChMIrK2hnqnUiQMV-oBQBh2PngnoEAAYASAAEgJhEfD_BwE\",\"recaptcha_token\":\"03AFcWeA6OgzeXBTPNOZT05pGG8c7e3oeTRXYIDtnivhTMKnQ-Q8ozNSgtLEANN0Z0vVWrCHgFvg-ybgfGAOh0kRREBzTSe7-2dmMtDyJGR_yXfMbb_V3JCR4y2sH9Z-3AvtecdqieGFtr8h4OpE-QXkmbcZrSl5ob6zN1D7_W9urludoDwvz3nyGQk7Fx55885gTrM_aTnLENq7oGzxxXVNhweUcnItDh_uIRLwjCVd79dSoG3Zbe4B-ed2NFJmBRLgguWDrFHXNAl52cGVDgSHxLVrHG7-_b0o_CC5JVYYLNYYjNbICjAQJVjb3oJ21GDqbObF4PfPTPXaCIKTX1XU7wVHHvfrTICuBG3DwBrNfCrvt6hUnacsGW14xZqA-XU5SE-ERRGCVTBq8jtrl7M0g2NoQPUsnES5eGngs-WTUJKbQzycfxU5e18fd1iaJEbL7Dahv7RqLJCzuQzD4aTnb0cAndNEZx9o249iGWm5NUWxwNj2PlWj6JkxYf57XcupMK0rQNcaTNuWXOkQHarHubQSF5QHXnlVlmSg_DYBFBOptv1G7KiePR2ZP_3qayc4BckxF9xOn8e9SRsEfChGko4lttCRpjv6Q2j1c4K1w3yeJ8LhEJKRJ5Vv-ui1tgnZxy18OwV6l5MjhTQrgR8ZYWqYLrIcX7ebhx6Bjok8BqEuzAkrjfGjqEDDpIcHbchvqWfPiQOkkxKIVVAnD4zSV5rFWEfpVg--FJCOpxIwjvJ6Dh_vFdrp68B1ijsdQ3dZ6qvBbK9izCCAyWcx1Hgp8SkgNA5a52R5OsfzEG2iMGF322uMuxFbiQ6Rtj9XTnnbMMFIIkx2TJIMPV4BSVC39vm1tgu8J7HFUULGZEFpPTZ_hgBOMIIbHRY1kJpjyMKUf_u_fcxJirKcHUffud9GCVGdSQS6ivHrV3F6ZgkY_7VrVJGtMDh80bBu7mfu_NPT1PjrtX7nu6o4dUWa5iGOs1oLXYzGaFjWTq63GoSehPchqeN8JpoCtSRIDVsMuR2bk89QQKZ1jGYSiTa1crEe3pNZ-0QP0jz80SIlM0nf_ncoRROz1RfMdYAM3vW12fdJOfkp0GT4TpA8t25kLgMh2mIzklZxBoRS5lR_et_Wn4uKGvCdXfmXYzTKAtoPLZqAbyQVhMHxP5eZIrjs6-s8VXUelj1ufDanV3D-UO_Z-P9ueaAUHViHROAIIoxV3PAiWypIWJ6LU-YGAnRcIz0PIt6LA8WMr6KvstpQ86ZCHWx-y90sOHycSesLJezrElot3BjgoLDq9MhQwNvBaq82JbtyqlFf_TAZ4TbmCnQhLcjpPClK9X26jfg6ZBtlWH1wpCF8gtTXqzkOFtXKbg6mgtlgmm_TrISt8PFnXf1uEg2JUXMqw6a5YNTFYWZd7nbe0AqGPQsZRz4sarLtDQNwiwMtEeLdlSf0vPztLFQPWbWLGPj3racGNSAMNC0whzKlVX3AADIzIIQS0GmvBt6uDsHQKaI9Agwh31n7q0o0XSGEI7jC9u3eQ9_-42E04SJkAF2dFulA9CVo1qdURA-SeW4Fie20xv5K-68m1U-w78_FYxvu-qC8vQXZtuDZctxq6l36VeQ16qf_Nt3AfNKjRUlhnVMdlF-UJsZ37rI6On_cR032KjdUpAWiulehIYF2RCxxTzh8tHjullGCVxKyJ9o7EhrglbqlvSzqRRyqC54dnGpttPvLP8v8sNCgH5v2loAx97VE-OmnDEQdykK19-ApnyqcvMPpe4VamG3hIV0jtr7QBMP5pB8tf610AG7DFfscj_PPWYrTDcofHW59bn1qG68FeFeeCVa3Wioigm8l4QHwpEunWv7hVXuaS0I4sRpyV607MRzdNUtM3iRRquWSDa9kBGYyH7WEQPD2LHqyjt3ftN2-MHEhKPH2nIB67AMLqhvIIeq2pyDVzKn7TcTRgEyIgsssjFVakqAzbuMSO0RZo3thGaQ5Rk9XbYr9eQCKN46D47XvRGmm9zMhTHkLcjt5TFRcSCpEL7pi4gZmRFk4_DWuf9YutBEDkhOTeXDgdZAJo4R6ZR8vK1LZWxmnJvAJq5AAaNDsvZBgtICP5Y4T3FjqJdCwTdQ8jYsp_ZuBcQH7zMRT6rNEOkd3Umqb6FqeH4PedYUuVXHcR5DqqvjG2KeEriHvg-QFrDaU6hCvgGfmWAXNyt0CuC7Q0S3fLjtNAVr9sMTU7QNj2EY07HC6hZ45G7274ahPMtD8IwsSBeqSJSI6o8drtWvM_Q0v19yo0zJyqtCGmRRIuHzJ9iRq2CheM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6731fe30a7b753-08544823','','','2024-11-11 12:53:26','2024-11-11 12:53:26','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41560',0,'cd-form-entry','',0),(41561,0,'2024-11-11 12:59:47','2024-11-11 12:59:47','{\"firstname\":\"Nathan\",\"lastname\":\"Howie\",\"email\":\"nathan1094@outlook.com\",\"contactnumber\":\"+33 620950431\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA6ygP6N4N2kzxbJggKmyoRUSS05LNB0BWmgUQmsxelnd5dttynEb9RzW6ySOlaTflGoDNxGFZNglQtUW2Thrrl2JJKPOet-AGh7qvRcXvmy1bqz0nsUuSjdwiqzEspz0WBrrEnCRdycF3zwsZwRBAMsf4WhlhLjUrAdRzTNgDWhXQhVmyWjDsy_6arC2NVIif_EcSugcmWmw7KNy00o5poATXwxtFoEBUEgcyV50PcSTvOEyOP0zncA-LEcRTLCvEFwLwhqT8eQSpEoFDeCRI1LO_uklZg3I9wMUiFlIYNhH4lpXn-9aDLAwT6l2n19GLbC6yA1XU8_7CwhtF5-2bPiV1K3eeiC267tOt71xSYzCna2-9RNmk4PDxgsHsgdUSdvtV4wKc9ZcASuNl3-QjSiMT5po2EIt7EJkAqvGqW-HSHsyiTPE9cGx5NygNziAo0WZApDZotxrL6kFYa9peddaoZFMonkBTcFbQsVNru63akdE4ZdyKKUITthGHUrXr14h6DVeHucBC0OjPeB591oXXy1XiX5_xbgzl2UN1vnrJYF5zJiyltkMt31xrBaSapMhufDIzgIQN13iMjvrfdUEBRbkCpOnY6bSnGD99i4p3eZpZVIKfo7KaTQ1nq2loxvmcYo5C36IWb3OqfGtJ2OtQ2PNjepaFl2MbgKPerAI0HMFNpUjwX-rWrolV7lEAnFIhgg790a4DTLePzVRpk79pY2fS3TttYA1Oal4IBwy-nUH99nqeVoNygxB4NOTfDw-vpX_H8pLAC2UKQ06YQ7GA7cyobTzELKtee_Ocr4drsGHg13Ji2Yq0ruG80stHg89QVDt8knf53KRt9Zw_nHWSbHFcL0VmeALI9cFlkUUnpxTof4wEca_MuhoewlHROkeuC5hQ_hsvnhXl-Tk9BgFVHTD2yloSnc4vc3q17P4LjuRaz2m7jMvti_ufa3U3GpuqLe0DjVpxkkmaIuOjxB5n8dUPK2mSrS4cmzQai4pYpiHmWYuszyBE84DpBSPam3vjMeS8FTXXFMSEv5p4LTiVPHESCceYE2fZzJAEc4tG5ZB7USZZHtyK9RlBpI4J2xjdiq34AesaKvn0r21SUUk7YqJtMbdzB5vjYufOiRukOFcyuw13ztB7tNGEi3_oj2aX8OyP0tb9wQrMQktFUDDvXaVGSw_Z2Sm8OzXllGByU-LRWgnxX3IgKvdcF6PRbG1OGrU5P75S6eNNovdU8yLV-t8VRW6y0E6X9gV7_WOFG_N25NM0pmTQKIz-IGIVj9na0-vTppxNFMOcR4IF_k1xxb9tE5dcHfHQ0hevPXxuRprShO43PDtUrOKLE2uZsdnTA7yt9wF3X3IK_WGrS268dZLNw7TJhMhvZMaVm4t4bn6yn7yzL-KD11D3In8IxZlz0xypw1LM4-bLFvnq4prKBYK4ug07Os3Ts79dg9trg1B6WT1hzlXQ1JuHoH0DzhsXqzvSm6U997Wdo-ycvaykKZZudNEB1qKw-hb7HebeTda-lVf6Ws_iGmT41HnJqMN8mFTjykc9uC3RMd71bG0zaVYJbrVpDWFD-zpIR046XPIAKYFr7W7FiUh6hkwsOwKcw8SZ5SGjXPxQgc4RomclRN6OkAX-7MgZ0lVGfLOD7CONzFODOEkJQnSmv0r35fKs4jGR7z_7HwZv23HcrVW_8bjyGEZDdOLeHgRrz7hZfiqb2bv5yE0oD2yOzc8g2zA-o7oH20lEHK3Fr7MIeCHWNd8t_IGHi5SAue_RPv4Rvorf71up-LUf0grtYbPOmeDQx8hfTJaS9LR855N-q4m3U3xoTJTUfYiJdOJp0TDDyaZ-4iD1DG-z0d9rjw5akT4fhRUxOMuQfrlRhc9Mlp3Z6EyKAy50vkWPWYG1j8VKLX_WYbkXmS9TLfLjkD4--wYfyXryKKNJzZRabQPNO-CrnM7nyZ4TXsqWUuc_p5eOkqerziqPlDhGqelZ_LTvoe3FPvmYQ3YooyLDRNuR6Iq7bEgBf3bHHUtOF8wMMvWg1AF6lmAtwMTnPf7geOP6l3n-CgGF9BIlpJ2Zyfv79xMhXjm7yEr-0LrNyN1Co4uqJLdmTiBxtI6Ldy-5nNepeaoEBecMhix0LWa76rGgF6lKEGvym24bX6htkgXl9jA-EcEHXjDc8GnEgzxUadOhreHApJj9aEYuND7K82nnJv-1NDH1-01He0WzQnlBFl8BdkFmHzXnHlDbDgGhx7J9EjND6vGqoJ1HU1Yj00_Zws2oJ3FVXF7LLtIToovZ1fHObznvDHk9e98_CgzAJ-6X9_TzpRTwPEDmVSP3Wla67bYEk5IL7XBGpMw6BttqoAzIMqA4fi29EeTyraCr-1aWbQf5VQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6731ffa2c363f8-64888831','','','2024-11-11 12:59:47','2024-11-11 12:59:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41561',0,'cd-form-entry','',0),(41562,0,'2024-11-12 06:55:52','2024-11-12 06:55:52','{\"firstname\":\"Charlotte\",\"lastname\":\"Giles\",\"email\":\"sole2soulfitness@gmail.com\",\"contactnumber\":\"07976826590\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uoe8qSG5COJb_fq-VV5HJts&amp;gclid=Cj0KCQiA88a5BhDPARIsAFj595hedVPdwnlQEPqJTG5nKPLuQStvzRUbjGdpFyWmFi_E69aMHnACu70aAh7HEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6TQ02_oquGbI9S0mHwbFT1AX-oVCwMvCoHY9PcBnd8R13sMgr-fe5xMRF2lHtEL_0My1UCzkrUPP5i1Wmwyu92o2N3Lu8pl5ncB7sUTY2ioqm_jQeGiEAVVGIO6rK5LOARjiIqY1ZsqTNp55r0Z_z1gDNIgJiLfVNRyWXyzyK_IblFAwcpqx7Mc5mbJMyQlVTQRTtCVUhThiCXSeUeSylReES7AQVW3vYEEqaPTUdlbQzE0EdfZPQ6slOFnJjAN_qb-cWlbebnlsRxnNqXwayoggqHcC0yF2_tKrdGoZg1Y02fa7nUZLKwQQ6H8mpMCwGU2f-NuJpOwJwuP9Srf-11fmEbHNhiYaTEtVoyDbF_3O1UVV9VIzUGycZJlmmbbaRlJTqEXJMZm0sy_1ZCJxMw1gw9fjC00ohiDegzhgbryLo_hWxivIEWF3xSSdt2tDkkbq1tx89X_CjcvRU8nk5zwvyS3nbxPgNorSWERwi0PTgwl99j_U1vd1AI6s68U5qPjzXphi3h67gde9D2l5sGJLMm0YrZqqcvZBp6iyxxQCygPo8puZW1sn9KmRPwuTkUVbN0KAdPD9Nw0cyXDFX6FSTFoLbxXhR4V8qHfT7MEGfYbglom8bjywQ4J6o4Q1sACIUGwO8FTIezHBwRDnUSxdrVJzr9PQByRgTI8eN9UQisYYd-GnN-0HhSE46P-oyX696uy56IiatU5ZQhH69ZutlohmlpQ7fU1psJvyLi8mFvHzdiNImjfPGGgHe8StKFmdjWGvrMX_SQkrDnwb_WP4htzfEHkfdFeIKXd-e9FS4mHzvKLFJ5ikzWU1-2H60wCHwFcY3gnTCNvH0xQt-6Zl29rtGBEzTPAbIMwhGlKfST5LAEmf8lS1CjXet60XgDF0jPRD7blRiCRCvY4jQ7-tMRDpX_WtVU3K_2vNvdFMDg3jOV0aoPjQwpDaplW_E6V233MIuj85I-FXCGKB4Jj4GtkhbIEuaHWTZfpuxzCZulN3KOpuxcw9ZWTIlAGt8_4mDsORPkTlb0ng3cGULpBGZOF_y7u68cqRzgxOdPQjOnUQyB7iOGNJG2UtZDd1WPEXrcH_nWpnyDoxYsesRMtQ8VU3Iw-Hlhi85bl7pyBgV4cC42Ty3_HlGxKRDUXtUZU8Ct8oiyRBU6-Zpk_8X_SLDofGj1L-uOVjPXjbqFZY3WiKKNGEIAAzwWiWaVRTFq3lxqL-rzuqNOUiRZZtQ8U4W6J6HxFc56yNJ949s4X0DeCH9ceweChbNeNQ6GK_c4nzAIGNTFAC58u5QEbIzqWkd9x4rR5q0TPDKFmiCdz3LhfNfcBFNWcTKviVabKc5c_aicwe70spSpfAaE4rforDXONyPXkvsBhw8RZFHI2rs5-53Aa0x93zqHFrAd9ogS1fAlHAvVi1kGIBfQVp18OYLhEA04hQbZLIbbq9Hi5UYh219-CoydUe_-c1Nh_lbvFyEqU4D0rYl4Kxt2F3iPJ8-bQ-rBTv7FRXeuRHctgy9yBE1CHQ8Pb1UYt7e-FSzVH9Hyf_xyVHmr6a1_YnaRvU0aiToQAn-EHq_tgy3d_YMCU14olak0j8esZMWL3fajGGFr80gRGuXG2BIwO1g9R39B7cAwRSKeKpY86rvil_g8wsNBm59bJkWbXNKrbJHkTPPyWQURZK0hUOsWLPcqvIQDkHgyv0EXY8uGNM477XJtUl1T58y0uuZoqS2WZyvasa196zXcnMuu3aH2iFRKtyhUq6NNXpmgSpnrP6OHe5jdWTgNiwSCk4Q0gnEY17QMOB4FflNWFl4qnS-vAo4vqA1fwas8ZSoBCaOVkTFUoEfXH62ltZ2Ljrf-SXsh9Mr0yrhTP6GtrfadybmsNCQOIGnAOoh5pW1zRr57A74vip2FPl0I2xjT8Yok-wrTZdYigKQ8FnV5UY2WA5M9-GgnoJ94Mc_LURaDtD8mxq6EiWuaagjyZgwx1cndPugS2wt9r1PMROffbB_RhnuJLfQGtDUCQSqP0WFDI41TQLCLSImesmIoyFgPOjQFueCOChp0K6Fm4O1BVj6r4nZkh70Z_VoVA4QbC723NTlu3pGfNIHuTf3vm2_kjPjZ7kJ76yslaB2TDsna_fJhC5HGQCi8jxGUNkiUdpeHQ2N8KGDgrr1KFbW2gu4yX54U3D-E1o9Vh5ThfbN7IFYiKpL2rodvQzjlISEv9OKtjdV8n9mp_KaJoSrudkcQDCnzqXaWYojB9SwR6S-I6397kbl_zuLi-VNS9g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6732fbf07895d8-09799241','','','2024-11-12 06:55:52','2024-11-12 06:55:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41562',0,'cd-form-entry','',0),(41563,0,'2024-11-12 06:57:01','0000-00-00 00:00:00','{\"email\":\"charlottelgiles@outlook.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"EX5 4DZ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uoe8qSG5COJb_fq-VV5HJts&amp;gclid=Cj0KCQiA88a5BhDPARIsAFj595hedVPdwnlQEPqJTG5nKPLuQStvzRUbjGdpFyWmFi_E69aMHnACu70aAh7HEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6doCtT2uRmVh7zX_HDC3vn1sihqF4nO2W_SLayxGXIOs1ZlKcsm4SXEmYMn-esBYWfg0w7mVKvE5Oi-_G-fFJspOjGS9cV40MknV18PqGtyPpMAl1PHPzaWzWx-yfLg_tNzCDXaGmlE5N1dyo6q78kLlSpanU3hBuBIwBIXfinGFbWUscQi8MVTvQ5Yeo1d7jdxNh33dNKWLACRw68Oo8wG5oJbAgC4lTXxdXWUQxpz1-sN7ZD_4APbrZvwJqOUyjzo_HhauqgEhu80eHKg0taAjeIB8JvbbrsV5BIpp5sQ7Jt7fYkBQbuu3aYJ8VD4CNf6kjgiLPvSWdTSejf0Msl1iFr_hAJhGZmhMZztYvdetMwlJqpf-9orJmXMZfw7ZaM4oFIYz2aYpMSWNzUVtgdGM1ySaLjx1W3muMe8p5I6b8wewdUTWpKYIH2Bkj7_sv2raHrcfJx6ejS4anAghWikh90reXlINulmA5XoIRKorkR3DZ5HUPkH8jxvD9CAuNmYVML-Xni6MFHYw80D0zjnqB-FP2rqWMl78aMSLPwOPpJ4SxsWdndvD2e58s6Z9PY7GSE7BMT2gAGaMu27ZoliQdpSBgxPUK8KVtLvMBA0wF-4wxiCy5koVoAPRTlLhN5J2rdtu5UM1ePTt03V-au3vRTlrTVCf4lD8SnYPdd7ahJCWL1Q7cumYGHAMTY_jbXPkjvFvHJ31SifD0jywaLvsgNPIGBA4ozay02Cpsz4201vBd5yWY1Llg8G0wrCB44r70nKv5JSp3hwtQlKF0XNbksH6ygT5IAllbFpM1bW2Dh8OBMQSVoFgyy2Oj6-2wD_4Ml2f9jIuXSSqzR3QS-WF6iaETcdE-9tz2QNnkV1mjSKCNLzApH7NaVnLQLcX0d5AT0OyVhrUUX-AZQtmgGFfMVrNnZnvrXdQJh9yPLZHbI20UuVQtegrjUh-Xp7enfFB_WCcO3EMEdpZXbON2ADrOTT_5Zl1RuRazAvp0yfIGJ9u4y665W6rV4Kn557-OzEY9IlQw3lL-g6msizKOfD9HBagkWEazTc0yVlHdmrRcswfV9AvXdJ_OsCGK8IBpTzNi9ppN25mQIbtgK7worDOyuW9gq-i5WCEIF7ErY5_kF8L6_9hLx3jni1O5P3yFvlAbwtb9stuBP42c9ZquDa_ZS0cI3vOd1OHknfQT9FUwCXIglvkfNCG5Jc1Iv9713q6nbLNWKYE-9muCJWcEAhTXNvx5LcvN4dKH28nJtlm7BuJPfeiqnHJBaVcAZMYC6A5KaBDy2X6dKYjcRDtoUt9XOKESzPOlo4TChRtchWChOc1mp7Z5TXEEiXsZW7JBikKYJQVotR1pcfMLHXc16e4bGSQ0PSNUI11XhgLs5nB-FNwYxKY5fcBjSwVhCOcUTJiU0lqdnTStpT5niGVeg1j3Ts7HtiP72-8wJNgoB2eN7XmiQ1HP1B6zlhMbljD1soBxMp1Z0yOMbKSGRrezBOzmw7nzPhnEMamcknopAV5RZsZwg1IKoE67tEwvHqYG-EmstKbFyiStP5cci9MA4VULAsm-o9K1HgxFieumjKUaEl9YDNOMG6sSdHxxBgbhD_nUqzY6_VINlPVMiiYvofl29RrWpuiMuMyX4uaxUzh_CPnwBeNLsuYWjnfZ3kD2h_WgUNU1NMSV-wmSvb-xhozRBKq4Kubo_DQrFJP7Ebi9_58k-sBsPk8UWCpGcYAj0u2n946hvg3nPpQLChT7e0VxPvuIUL8aWmNwmVzERAOwlv1btt-hPDlwWN9qt-NlxCA3jS56a3PKVHBxwWPu-5bcN-OI1xYSDpBFzDmhe9HBAo5YkT187gan5wLfWciX26FPLCTLqu6GC0s1rSTZsKGIncX3K2oTZy9qWgwqE0wYLXPZM67BOpsguoktuTNmHQs_4hkYxxkvNQNr5kpaPPKY5dgYhpWS2vwpxm0B_RIuXL1Y_LkIiSC5DkkkR71hsqwy-SmapoXmdNfyVZH0B1sHnanmTyzQetTGY16DonKa7mK4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6732fc3d70a0d1-19923767','','','2024-11-12 06:57:01','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41563',0,'cd-form-entry','',0),(41564,0,'2024-11-12 09:21:02','2024-11-12 09:21:02','{\"firstname\":\"Raheel\",\"lastname\":\"Mazhar\",\"email\":\"raheelmazhar90@gmail.com\",\"contactnumber\":\"03333467092\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAlsy5BhDeARIsABRc6ZskNA__vFBmV-O6ej0kKiVpfJ3nHrXScOMiVHCphPi1CaYrUOPeY18aAi8vEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7LyR7FAXwwBX8T4hZpp3JdRQz_5xgu0d3ZOeYi9VsRrNRgBvkzmelXFV36F70WJzoKdjCdrx2wVSFehWKvTznyBHM7rCsAXmw3-lb9F-ez_eN7Vxg_8zcmP7oPlbBDJbyGZWVHUrYbKO-RFHvELFuUtpmXmV5sLUSHxYE3hvhmfWJKtNV7nP_SqvlP91ToNLi9wSXbnvbVMlz0QDIxXL2oVH4xDUFPS-bjzFSvH-ls4qHxKMiYCsEq7NbTdToiYteY5JYANYYj_kvBDYs-01ih5ClvhZy_TB0YU1eB48EOHTGcg2e4iRNsgk-pZ7A4ls15xQhla0K9Mc98b3d4Z2rOmm4PPCaweZuP4NSQBImhqjEtA0GfJPwi-gQLmgNnV2DdSFHuqoaYR-U_CL3KQEOYA3FvtwEJXBzlaokOxZ597BKW08afqEIRygdYXfR58ZMVsg8iYbHrCtTBz-4VcVuO763dqUkGg5Z1OfBywpCPNZjpUch3-Ie6uOc720nAVnNZ7SC5Jhm4UF_88l-iFCOR9OIs46q2Nci_GeM2R1wKwWBlscsGiyZsRKdhfj0RiOXcoydQ8nDAVtNS9vxVVEhDXYCa3Eg0muCp31BZfDDBTCDmYmomHoEVBaCfkzODuQn9zppHd75Ah71ECPN5LBTH1FqOjS-6QchZvWL_lQL9EfRcVGAXHZB2EEQJI0aRy2RX5K53b_2I--RraERtr-r3_4TqiCYUeKhOCxf3Tg2IrqFAHfB9-4B-nJLOojFPG8BodWSsa403pVCzdEheEtC0AHJRGXR01M-iXJRNLY4KtCyaHxBqeVkbxHeg3Xel-vz0u3BahHqCXd2h0QnB5di47MrN-q6BEvxyMKcU-u6N61CDAxTAWdkPEIK2KjgKGQTigwER9EZ4rh89Ot__8aRe8jX94OCKI-9p4MSRwCcAxX2vT8LWuFP9WREL9p_7G4TmhwpbdsudF88nV41kBJJEW1NZJwznjY9eEH4TGbbVCy2m2JLg8hUgyPSeNpWrQLf9GQt_hLikXDEyJn5la4vhH2lryFb80xo5dhkUdqROPjsZ5Axm-aqfDux1UrY2RNFugybSJ4i5iIT27QunigQLR8T1DzjDfY_ojfJar6eqPsh3FhT0rAf7p0VcvTJGZ0F4rwH8GOW8mBQXDMoU9nvYo1LqMZItd13S6VVzXgoPBam2wFWefHQFR9JWsArRk8KDh9t-WokGjXE5MD2aSeK6W3IH5B-JkzTWHk3GruEIC5mxXaBFffKtX-O-gFCdBsl0MAiKMMQoA0PcqxCYpzln3cDhuNti1hbu33a04zYWSN86sXF4oDRgnccOS4Zp3MKf5BrqaIyolKUMP_ls97KMRFe8yeqdXEM1eKFEjR8P8MNYhaoxNj-kV7gzvRzwuVzF2LIE6Kr3C_q1oYvrCZZDvOLdyxfvKNLxjtww_d6SoGddiZjkcItqUj-vAplKM9iTtCIRj9zWyuqXpKBFV8rWsk-ruPmDGjv6adaIg-83pE0zmv8sBg1SGQf92BkBnaAqD0LToJbP5_oGkvwkH-vwoQOtg9RpqmkO7K3dcG7Ai6mbZZFkOaEn2tJx9On2KBr1NBEF-rFXV_3Ro7PtjgjuZIn-j9rcmcT8H1Ik8QR2wArAFoUTbnKKlwihCFHiFhvkS32AcV_I-8VoUJc-o7XC6c4sp7t9bglynwGlzMYiEPKPUy3X64DdEswo7eyMsm7w3wnHEhqzdioO6nz8b5UFyCaANWzwIOE-o-ST0lVkNNMz4Fr9Jb1v4wY4TLoQ_g6qhT31_IVtZ-BjtMAP84tzrvnJbrf9pQp_lvlhIRPMXkUSSN6MUH5PegH_llyUDZP7RxyucKCJ-EOq_zpVjOkWPume_Xl8XBKzX3XyqFxI7QcdVKzizbRxtIVx-cZ8kH5NR-tUfRlIIjynTm8N0glIu8O90A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67331de8c00f60-11947355','','','2024-11-12 09:21:02','2024-11-12 09:21:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41564',0,'cd-form-entry','',0),(41565,0,'2024-11-12 09:26:00','2024-11-12 09:26:00','{\"email\":\"raheelmazhar90@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"75400\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAlsy5BhDeARIsABRc6ZskNA__vFBmV-O6ej0kKiVpfJ3nHrXScOMiVHCphPi1CaYrUOPeY18aAi8vEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5362I_IxTyT42wWHu4Sfh0pOOzpsCk2vPATDh1CkD4gU4vk3igNW3KCLI2kNg4wLhuK6zYhXUIE2HeueZ1uFDbLZpPkdgv58jGSVkijo8v1m5Gm2fSOCXDKRCvzfFp1foaXEWuMRb4y7-mxllhIikaqhdJjydRyii1EUlhyNQ48z-lfVZIf380VBwYYojwLzSPtCse1rMt-d8XpKiJT5ujhgRvr7mRbieHo8J3mgJ4wQjPuCJQ26_lRVRuVUVwl6otLtumzBCSpgDSHju_eHBvAtrpMglj1urjqCZBBzvM8SbUhZWA7jcoCRNmbP4pKSNgD34njlYeayBJWmbcErkuHci_6Nqyu7gvBznLHURWwvHs9h2LALHNjyNgDi4YvE2ZrBP3hv_h2IuAkSFVG68ms6OOgLaLmKqX0srILbvrWcDp_SYt5ntIIAz6ESBf4supZpcZ1K8hOPcOuDYYz_uU2KN7d3v60kFN4CvbaGpiTINhxJ3ikequhJTpmTpwONMm0iYixe7H_Sy0rIPshOpx05wOiOH-kG_dEbaRF9tLv1ixeCoQ3JrZIDCWQOXcN7IHLQ8w5XFEYEhlC9L7eUFbS2_cri7oAsdgQj_1H1I7JJiqI_M7UwFaF71IP_VXs-HgKeTIDbOqGE_HpRw7Dl_THPy8zI5jJpm09diKw5gnaMCPSaGzzpTrgBGyevSnc_MAPnpU8bH77ZL8SdBfGUpBcfxUuOapf5Bp5Ts5ODMCbzuAzUx80iYXfHDiWr_Ob-rZHvSJCnDAscl8ZrylJ6t8Z5OVycOMJRp9A1KvX3rr3qUo3h40XTMuWdTl2O0QS32qIhJoE_Mo5oxyqorRFDFmD_hy5IQ_7OVQoEtiIHG3MGpnuna_qDe6UFnPspG9Pirt4Se_CUrjE0HSDWxTptjTBJbjkC0hs0lemtZeTmsM3VmpiR07HXLzc1rUIDHQhraTVMu0K0PAaX2TTyvGJslMVIlFFbHkijrX1P7VLp1oCsXa67kbXREs1dkqTgYUyegSa-GTxhREoY6GrdgnUjG2OwUlfQxZwjcbC9Oyjz9PrLbg0eItOwpyID6x12l7S63WuhjEAgUSq4gz2cJeyrEOkmNOzqObncJxzMlcdinU72OMkRZAsekDxUCWitcWm8S98fCnMDNvFXggOpVYsr1E0DJAWxz15CSOzbTx8tTXhLe2dDy8IgcFcpwNuMHf6lI9O3nXOya1VzCZvW6btdYa1ka-OIoYIabAkeJpPrg93wBoKyffevWbgxWhpgr-8F6ZjpjbyPUZiCGW_ocUju69Xs1vca-BvtbXnhWKWLGL8-_n_DssnYOgnC4t7FfJWkZzFvFZX6d46QtY6_9RPnEI0eUaHLlSO78cbFB3JJxy1ab3d2IkQMFChW0VnNuu2hQudruKME_nV6Gju2qpP73ehEVgX8Due9NTFy1yAwsoEh8LTnI9c08ia2v34aLXD_ChlVvucXkMXR5Nng3xccxAMY9dm34cl0iSBypnsQJFbEVxfOJL6KMGGJ6U3dYaF8mlpvx3o7kK9d3X7--XVAxhml9SOhvcRmVdEWajyRkK-SLxaUr6fuU96KFD-_1rkjBbeFBwv8ZlTSPyklh3pIwzWGk1f-UGCsRoi5FT-ZDb9EDw5GdhU9mDhEHrCe57nunBDxRKyOGyu-kjuHZzYyUuYWGPZ7jQPluQj3Ntb-SSR1viELCtcAuRHydY2AoTUcsYP-1FxxjJaqnnW4D7j2vrfdJ2oaBqFwQDdENRYUIEKRHYzEBA0oIQx19LL7yRSLgTII2JIX-I2BTpyn-RkUHLTwr9KOlziEKiQRpyWlrw6C4Pzj-B9s1gLlt7GdDmGscKIAOEEkJrGjekC5vnB9TnJ9LO_KU7WkTcjp4_qNipO7m__r8jAoW6fvw-7ymsU3K3-6QF_WNhwPb-kPYBhcbk7BUa6w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67331ece6184f7-24917183','','','2024-11-12 09:26:00','2024-11-12 09:26:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41565',0,'cd-form-entry','',0),(41566,0,'2024-11-12 11:56:32','0000-00-00 00:00:00','{\"firstname\":\"Noor\",\"lastname\":\"shaikh\",\"email\":\"hayashaikh233@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMI1seKtd7WiQMVlKloCR279iYfEAAYASAAEgIa6fD_BwE\",\"recaptcha_token\":\"03AFcWeA7kGPGiTOeAO5oEq4Wk3SmfxkPzVEaOO3DxLzH9jK-yUO_MgKzZNWD8-GtMAVcuOIBJ0IFmZQ4YblFsA_BrPr0oQLrnsFjwhYsIlQqLO6U-60q37DiTqzqnxa0jb6aZmSM8gOQhapfrnL5rnywAmKoc8IdN54ehanlFNWW9sS6nQ2na1QVLPRMx_Mp84flaJkJvT8xCj7KgWtzG5FPlkk4f3hQeo65PJ5PNlJ2DcZ4rwwYIxJCrZGXsrAOOve41Dy2SgsreLoZzMKoZvvY4Hqc6xnjqdKaeE1wE8N9Nz0ovSwQIxdeqtLRJ1tGOpcmKLgOv0lqcrX_7kSBYdzGxO2jEeDFeBycOUC_K4ZpL5rAAYYAKhq5lgXCJUR1xjCzKFvMAuOnchH6ca8NzWWiwFXPV3PRdv7owYgCmY7Zf9TmXoY3PNvuDvyL10x05NtW2zqL_vMssmN2fpD4_wFHZnjcjv2j4rhIA48GQ9WeAVnBouCCKa6Xk0E8XxLfVLAQva4jXKvxfmZiKx1JKlHS6NfNfRJR21co7I8JCnXZzBxw9F7FLj7FguJq9wYm6pxDmGIyNfKigmPYrDsBtQRanboDR-FJ7tIPje6jPW9z2wS84-ih4mBSC4GGA5-u_S7qfjLDgmegTwj15fjaprALX-CI-OumWE38PxRwtIWxy2Vqph976C4tfVstYTkmLHMk7MySqMEeLPOezXuDd0Uy7uJtJVkxXTEbvFZxj-LjR_AtyYSsD0btJSYMw8mzMSinnCRqcBmsouF_J-zsNh5VsLtPUuZhwyY_jgHih5xQ0huWv6cr3YI53YovfdIWp9VPDtqvISYcRPdskD5s6LQLOhI0folkOEbz0YfHbu7kjFHerN67cyoIjPdw77WHeUVh5JI5zccQqzEVuu3PI0GPDt0_upc08LACPWNKEnm-thpGWPtOriQco4gS1POvwZP7d4IVxhZJDiny1y29RQIo0D-qMbnlIC2ldoshV6Vcd5cKNjmSLhWfn21ZwbXgj1ZKp3mC50VFSFJ3uTBZlrhNj5VsILTHX7gqYiM9JGwvwFw5fvO_DRDqHiJqb6rl6uriCAC8DXxF2om6s44QHGD_2z4qn5ZL4yat6QnXsDL57chbnciF8_YYM85g9u0UuhRlOYmOG1VHI10K88hcWigtlvPJ3GM2_kZdwCEcyZTflFbYUs9Paq7rLmqahXQ5NP3xJaUav51QdV8H9Hgc0NsNaUlVqmxVvk-_QSJ49d-YB8sfoL1AC54LoRPmlH3VTQt_YjbMHWpkRb_RrLVNj6lgyye20QNlkB00ojSQArAGLP3lUIdM8W45lcffFu1AOXJt72BSkPSJ1Giu2a3Woa6kmF3wAd-noN4rOyrJq_WYKglCi-i1XpDcjcwCy0UpheyVP7pafhU2ZxYyntlFynZbgCJTkWDCrrfJ32NglKC09F7bDvposB2vtGI3NyYeKhVFXF0S_xIQ6JAWCnpQ9rD3s2G8qqzrLDGPZBkokhNeOImN8lJcz2fv2ezjbkYWe9cgZExQp8PJcHlFhHQKR8dqyfcsoGnV1wVIVbw1JBSPv2F8Xovj_m9HrU9hVWVbvy4Y_WbDzTo9flSEL1KWvjgI6CjD-lvY-NOSSOJeT1CTKZz4CYLG80YOdG4IJ8c-7nVYTvD7176yFzw5scrgFImggydF-LqzoWaQWNxu0mSxmW53790hLOOLbcfeJfeAC7fP94C1y9k8GDtUcgUFvi3L128KGTJ1d55eU9HTMPfOQKuFoK0O3Yr6IS5NvDggUnl0h-OF6dU4auMjnSZhUyRsJFagTB_zTJNEO-O89eqkRHHEg1VOD01X4p2RbfywBISwjkK_fd0o_QE8dghUWSn58iLLvwIMz1RShVsvOUDpzuJX2L2z65RT2B1OiznF_tmmqnqpJxZq0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6733427092ab59-18572709','','','2024-11-12 11:56:32','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41566',0,'cd-form-entry','',0),(41573,3,'2025-04-08 11:53:54','2024-11-12 14:14:08',' ','','','publish','closed','closed','','41573','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',0,'https://biomechanicseducation.com/41573/',4,'nav_menu_item','',0),(41574,3,'2025-04-08 11:53:54','2024-11-12 14:14:08',' ','','','publish','closed','closed','','41574','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',0,'https://biomechanicseducation.com/41574/',5,'nav_menu_item','',0),(41575,3,'2025-04-08 11:53:54','2024-11-12 14:14:08',' ','','','publish','closed','closed','','41575','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',0,'https://biomechanicseducation.com/41575/',7,'nav_menu_item','',0),(41576,3,'2025-04-08 11:53:54','2024-11-12 14:14:09',' ','','','publish','closed','closed','','41576','','','2025-04-08 11:53:54','2025-04-08 11:53:54','',0,'https://biomechanicseducation.com/41576/',6,'nav_menu_item','',0),(41577,0,'2024-11-12 15:41:49','2024-11-12 15:41:49','{\"firstname\":\"Rajveer kumar\",\"lastname\":\"Kumar\",\"email\":\"rajveerKumarKamat566@gmail.com\",\"contactnumber\":\"09561460314\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAlsy5BhDeARIsABRc6ZtCeOT4eUOCYl2_xHnVCmt6KySGUjcs4MUrd9CHAzb5zjvWrvegan0aAhedEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5i7BxeSS-MQLTwQlmhir42y1-0Kjg4nHbFwwU0XGzGpN6fDx4ERZpSFlStEzKdxIdYF5ooPyHpdbem70nQDz_gKIIlggm-YAZxDerD4glR4hAF62MpzuC_mxznakuISHfLMh7BbH3V8StvtnG39cC3Ik0aA2M3Gh4i-cRKGPyv0cTKA5FuwS6Gw9kGkd-X-5u9x7qPCXW6U3s2-yWGYY98cm6WvuL4MlDNPURxyTVj48NEq6NinWYao8b7Mhlqk9i3Xw_K2RvC2s57Vi9AikHYM8w87bKLMWfmSH7e0YT0bDjXc756kVGJsBwCF45gSt4g-K28Ym54D7DCR86_mNWA7uIQwTUrrT7Xm8jaj4G4V3i4k1-TCE2ZlewrcqCH9rLMm-bVGCvd8MAkXXa6kGNe7rpfKbj1gcAUu-tF1nXIYvRI9xD-p5MCfHdEhApC-j7qNYeU_u0P295z6CplNB2mNb5giPiPfFlrM9xSpCQ-SBPH_wcBA7tBEC5Rzir79xnvDU4gJEycDoc-A8ZDLucWHqdRQcUUjDOWq20nywVCj0O4HrpDRqguR_CWgOOh9WrCtq9QqImvQzeGJm9Ec5l47Rl7GMgMBi_pL9rVis4aYoo3L-4wUke3ABd3f0IoaxTmFpEHq7TqT5QujKJGlReKrSTPleS1-8ehSVQ0B9w70FsrF5BrQDDHr3O-ZHYla0p9HpQfHsA6H5V5tX0ckDDq6PF4NMjAHDtYx1B-FATizBhOB4qgyIXlKvhz7VwGHUh1HdtQbtmkiMo3YPEXgRM2LaFIJ0Gh41rruKHCVtFAU37a7SCzreDIMdg_t5vee1xyPh41R5K-0u33gdlyHEtLhwHyBvXykU0DqHho2e74HEDPIgv9ceHDQacXwb0YOUsuFA3eE4LVe0q5eKGaQzZmlOhRAoO4s-eM6TjyEBTP2MWy1CDeorQkPD9Uknu-phCEf7wMnYTqQ6yLsed7z5CttuEEsdzn-ZCdyCdk2EeuDWS5Oa6PhWu4BiPdl7sPXQIcxzeTH4CY9nBPU8W8fsTXVi0ISTheT_4SrDbdRngkamTAdb96ht4ZVGT1HCxxjXShYMIOdmurnXJxjV6rgE3MP-oMbuDIhJbWMHYGecc6rJ3GrRwu3jZfDbZy6ouS299DwdQWBHK8n9AUxicv5t5q-lMzTFL_GLzscKlmABz7-q_Ku_cgPH29JBflcV5c9Zd64za-c3F_ktWi5v4un_DcfGk2eKfeurJxlO7vU-4__J9ImzSx6uIllsmZO8AR6q-zB-ryDIr7QGL4_7WZIWZBNrDOxJuvHfPn-zIj-saJta6E8s7MHgnegeGiR4kDt2Ged7D4I2uGTbkeHBjWSAk1dFfp_yaNVvpRrkDdgzCosELEPUh9UmtccFgP1zCQsgl5uS3w2E6RBaoQQA-YQggtzRPCTHMKGFSLVEMenEcbIDZOarCtdRNhXCZhmCwWWBP5-F4Tzd_V8ThPdt_YeUsyfKVtETNq1XkRltYG4cCDBjodZdaRPbD2yfwN1PDwfgvO3LfKQoO80GoAOC58IyW9Vxn26EoVmPgTwO64ijCLdVuoQT8hTVjmB3ozyY3dsfhm3OoLIAUIrmJdEIA4Y9A-vx4LoVfes7Bz6oUEVgYC46xJLjPBmpA86Rc7dpHK1SfnBiLzHlrbLDEl9s1O8O-I3Pm8uRYinpKhk70vrx3cQbkI_67EQS3O9iQ4RemfC-fCABR3OlrNaphKQbw9c2f9qQ_DShgt8F6tocnW3N1Ffggt6hz9Ayoz0nlkdQ1sbURVGEjoWDuFzDWTT0HzGZ6MTMF1hoVW217zuZBC332aDiCgFxES4lziJVkHA-vcJDOdkNMuYa03LvnL7XgkgQwDUUVvnKysj_IXVQKhape_EOSXAjN9eK78FWBEMQm-tSKFxNZS0jfa8lBwaKzZN_qnGYk-xnNLWSQfyCxxN7TLUdtv_x1cavVmmVWPlmUpRVi1jJ1TZBn5xOChM8_vsYzpxqMn0Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6733771f77a756-94005303','','','2024-11-12 15:41:49','2024-11-12 15:41:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41577',0,'cd-form-entry','',0),(41578,0,'2024-11-13 12:23:21','0000-00-00 00:00:00','{\"firstname\":\"Robert\",\"lastname\":\"Kiprop\",\"email\":\"robastarboy@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/?gad_source=1&amp;gclid=CjwKCAiAudG5BhAREiwAWMlSjMZLUBx409BLUwcodxfqJ0fNQAloJT-VVjj9lSwVEaquupTsdlO2vBoC6vYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5_dHf402XcxojssWzPsPCQmGsxDJFuCVSfAECi0p1NROaff49PEF8wFTAlRB2_PmL87WybJWjDUGqcw1TgfOO_po2-er2F69_GMWXMqK_kToSNSCbPwK0bQbYyRD6B-zd5rM_NFIFZfHz9Ct_YZfPVJKCMARtYQ5rZGFHjtAEs7I_p21krT2w-YUsMmf9xmXQfVyCzGlKh39INsqfxu3A0I5cqfmvCyCYoTWxidrCasJowG0tOaLXY9fPrYpdqUOivYdiurUgbm7xC-zUoGp0Y4Urc52_MBvXInq_xR8q1zsbMisCArfoST7D3CR3qvTqfHr1PKqdPEXdlI6DGg5QZOBA6NG8YxMdyBsybePD9iFe-wYaJvw3bmkW7Ya8yeOqsMVqWykJW7V0S3DFbwZJNJVu6_LosNx-T5UzkeQTWlGAl2Gjs8zP-wdImoTyImeK3vhZL5i0CSPeRb8vFZkdUgm8pVKZqW7uw5FNdT2mN6BQ34tFFcly9ufksfhgA70crB-QgSqGxft_UwgZ_W1-zrzS8pKAGfs_NYnHrW5FA3SufWNYNThjAPSV2t5zcQ7l3tSvCcRjw7U7hGhfXsB9GWD_Q7_b8jm1_pMSNs0Q5XrK_N5ybxOkhLKHnTfw2TZUty8FJJukJf0mYiqoMe86lrxuAsknlN8O0jhObFYCqr4AeT84pRVcoeQUMGfj-kCqOrhOMl8dddc1tO36xnxDfV7d62sagcCzy0uTv0ic7ylqQCkcr9A4Roe1QR3FzUUiTCwGn3XabLqBFJ8n27ntVMa-89KmyGobLWh4Y7sFHAkuFi01TuQgZ0lrJTKsK3ULYTJzAqrFSPmNc40bXHCWvQGnv5G5dI9PbNQOAN-NVFY-aBETNEaaYXbxSisf3BUdDjoJWQi1SGjDS_bgFgF8Vw0-gdRrTyqNxPUF6IRU1HD7ES1i4YDhc6eWlD2JAIsRxW7XoZBZ6juK4FoewE2Yym5Ttn18h8wfgrTkdZUCeePS1lFPwGTE4X_7jCDLB2hhLWd02wo2c5HRfqtHM4oeTPktKOUEXg44EqivLAkrPvDCIZbd4g6gkhD2PMyavGkKmdxCYH88fX3S0DtOK9aX2kyO3BkcHfVSPXz_U_h0_TQjdQ3BEM660xiCKLIfUwUcF60EJfUzaeohC-ONwcxRNil3UtgRH-vlU8OifZ4u9ejorFXebAMRqD7Oj4OEnf0dyQNw7gHNqlCfwJyECYJ_fUBb8i5wI-nce8Dpu2pq3WqziTNLRWVEmU_yf_3Sa-XfdmI0277VW1cyqn-UZiS8uG2RWWL2eNdU0lc1Gy5bRbk0xBgM8OzR-XNsAXY6uS7nxDqOEz-SQ4MvQDR1i0oLKYEZNS_mTHjy0aexDwRSjM-8UztxazvnhDU1-Luhw2gpEyNpIWS90Mu8u27yKkClfo8nS7OWDapN9-F3JSowhmrZBJ6rxBbv3OjZ5Q42mAil9esZaaofERXrM-u6eik3k_4tjcMyF6AVi3aSkho7Jooz7NIif-ixsrMCe_-_hVzID3gEj0wqnksB3iKAWjqy1rBZgichb06M7n7ihjKctidB16IwXnOwstIgqImIvtjrL9cT-rFh3cplBhzC13E_x1Uia19EWSIiYLmZLX5_dtxGzXhpqS0rHqCTl3JuF6eq60ZMTvRd_eecJWZwikc95lOGgBIlsyUQVMUgMiJu63_316m7r1VAAOWl4IGysZWI1vk3AJr6lLTz-QWriSivTACnIxDQ_XraVgXLu2QMF4H4uIyd9UlA6DHO-72ZJ84qQ7fyqLgyeO2LrKP5jxvMih_nzDCRL31rLFrurw9Qv-Hr_Z_0XfC-jhNqT2LCedv3wkgzKZKUX3AkDmndF0G8P-aX9vgwoZE2Q9Nt-7Y75w3tElA2lTJyRu_hUBV7OltHh-6DbG0UqlCVBtnvq3pzm4Z256JPaHfXS4qKc8PYElfiHXhcavk4_Nwoh1wLGMglJ56temD_Rc2Rn-hBaJ6yaSo2iyjMcjhICksdUOUhT_47UoL0oWj1zVv-L2Grc2w1hZRn4V5qC5Ur_Z2Yo4ZaU9d4vh8jSW3x_OdF4MkFyj1W5b0QHMQ8wbVyd1IJ_x0LbLPPd4qe7m8LYItZfPD0hgETbWCfanyCvS8RNMg8Ogn4QezKkn93gix1grYKPG-bQt2cdZZHjMEBr5rVDapA5em6tbg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67349a394fad08-09031298','','','2024-11-13 12:23:21','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41578',0,'cd-form-entry','',0),(41579,0,'2024-11-13 13:57:07','2024-11-13 13:57:07','{\"firstname\":\"Ewelina\",\"lastname\":\"Borysiak\",\"email\":\"abemka@icloud.com\",\"contactnumber\":\"07539657797\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vhXamGi-qwjwFq-YInxBYaJ&amp;gclid=CjwKCAiAudG5BhAREiwAWMlSjDMqgB-bXCcJx4GC4QgTT3OEDzAnZrSB0XqbZyxqkph2clwxfRF0rBoC8nYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5CrpmUhtzdrDF_9h7HAZj4cWsKIULmfyAgFI5bgAtCuei1HtZ5hWTsGHPp0hFsH6fG6c_U5phRgwj4X2NSkZaTqEY3AAky8as00crbiSvb8UEdZinNrPROb2kUOdfJGrGnTGj4wvmTi8HjEezR-WpQoE6FWeYaNxttmEYywGYC_s2NC55T8O4zwEqARbMxGwBPc-kLV_oBONEPhp6tSCnSATdKsLq4IO44K_Q2E1E9ZVR39HPLtlADMzX0CSuF6kmp3BBk1x3bYDVkPd0-ZG-DHZK6d3mrerYVh9jV-Xt2uSFRBk-WI1jZ1Irw95905_TpKSdkP7GuWgSIjOCALDm6vQqOQHPOJ0f_w9cl5LHJlIq0vo9mcOqMqBAoGnebKzEzV6TFzMnOGHcrqWqezgr4dDEdlKlOSP6j36R9R9v9nus2Cb9kMEVAgBPsVdEKCt9luMVW31PxCgcn2OXlINT8Y1i_wTpZVby_egG9_1tJWEj-EmIpZZqM2viTDNq6746AIJLntfbGM7hONmT16NOH8puHeDYkGcgjiqvP7vKXevY-aKc0Jez7UyGTTOR7hdzcRZJhn2zSXnt4-x4Ew_-skzlalOatNHmVARHmjfS9ZLopPy07be7kXvRDEolBWEyCnXxLkrdNTRzRsE82CNYWmPg6ndjDJz6VSj-rGYnfqqfkfOvQ-M4SS_GkuNp3EvCXwVTNpkXzQgNE7n4dzEqxpNR3rqlHNQ27_PU4hcqN3TMtU4eV2Y9vHn24Rbxx-Mt_mSWfB-UaLcda3ktwNUkplpBqhfuELcykPLINCACyxzBHlvlTDxj2zBXCvSMhR1RJGEheDTbBLuy9BkNeeY2yZ87m0BNOM74BUKd9BJTkr7DVVCrGCM5_Pk4MV7XPn_JjdmrriiiZD5TI_8mJoxEhhzyZoyCkkabfFsZV4m1hQ8JwZaUKZzp4Vtg85-U2T2u8IB-TK0ZDS-5t9dI_hG-iLv2okuSaad0PfNg_HlEkoSHcSja7HIt9qU6S7FO3miA5BTxD0BcDBGyv6XNyBo00-V-TMoA5wYKuFfS18Eg7ZkzqqZotFEIEeiTWmtmjx9hHG9v0bCS8fgCNqjJ23zc9rqYlcQ_sYiKJt98w_rZVRvHuN0C42dc5E-zNUYBewNIaXdIbuTAQC2qwfJtPlIXwQRbMFiTOO8nzH9erghABJOiX88jxZz5fhNG3-CgyBmfPPJvZ5lxnGwQ87mqnpHKfui7WZwvP8SjTCPanTkZzL_b-ESuthI1kQdZTYFdFH56aYKhM-HoCoJFlqeHEkJFHL4u_sP_XJ31UwJwumzPYV0t1FjTpKwAhuBiUI5udRLP1csZYCq2BpaTcJM2Ata17Ol1Herrs-wKrUErDBQPxx5KZr5CCcAVBFij04dNz2ct6UyuDDP8lMGpfTwG3VIxeY-yKsCqGhmibFKyEc7Np2Eljlsvhq0XgW-H6nLA_6LeNplPsMW_ozLkrTed82IisftEg4VNHQsV2fJl7-OsFiVZpKVSnSkPCm-0p8a3nhG_Jg9dSSGzC44jDq0mh-UoRtj-cxIGVyGsIu2P9JWKPH11rfykGfuMh97sXL64c1y9jo2KFUhhJsHb3hPxS_fx3_NN2548P9dcyNLc4dASLLdD5pGWCqRfUBzN5y9slFDsK81JXtClFTmVgH9OlcLG8slkL3BcA-Fzwuap2B4Tb6I7conEQaQyQaLydw6rp3DNiQCfbF7jx66iKVsnI8pZkZ1vwBi46C48DgF8Any_VcqlPdIua0T1AUnmrHzLPQW80uPOELTYUZjtghP-FPHtUmehMhFy-evust90HybAL944Q5hi5XMrtr1Z9XzGt93f-kN_5-7gDUx0Oad5j5SsvFwCg7mE34dvprXJVMZ7MN9RVm-TDAcLkPRmm2MyiQKWWDOwGu796aS7do-5yJ01uH2TrvXIG6z0B-9ALvx-F7F7GsuiA4GVLguyk70GnBPwUJ32NP2lJYXcq0JEZr5l54x5J6JuLq4_58zvbRUaqYwc9ldw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6734b02aa8f038-68404300','','','2024-11-13 13:57:07','2024-11-13 13:57:07','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41579',0,'cd-form-entry','',0),(41580,0,'2024-11-13 14:21:11','2024-11-13 14:21:11','{\"firstname\":\"Hussain\",\"lastname\":\"Nikkar\",\"email\":\"hosein.nikkar@gmail.com\",\"contactnumber\":\"0509141802\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA6B4cq0nvj8BpCYuzDkErht3U42Z6UXLbFeDlUF2M6rJzi7FhqQ8Zx2uFm8TGuHzc7Ds1KfNAmfvLVcOqqHG4yGl4zuQL38tEvxHdS-1lwEA4rONB3IM7uGaNXbU-vpWb5NaBd39EzlzD3PTaxuFbOmHQrrrJUhLyaMb-HQuG_uOHhm8s9uCbdAu1H65281Thuyg2q4onNCkO-wace_2EGbkJXpo-V3MR5vid1ApKjkQ22wnHuM9MTXhRB47_6bG2eV3P2fZYJfcDayc1HWRAqRV6HWrp9J2BTqWz6yuJfFvZMEN42WkeWwN3Yb9SbJjW4FnMgc91jUkpTsf9RR2ctacmPx1jNPo--zH_SwBK8_MVQDxdV8FuN3C6hBb6Pu2Ti5SqozI9g3PdTDWd47O40hZrz9Mbjv1a-n1BcWmyt_akEUX9FG9h1_ouDGH-WoMlZwGwkl97ak7n-hp3lLo5R5R8JKW0QCO8bAsyakeWsZs61SpXKCcVuXGvQ0aW_Mz5K3zCcwuSRLKcdjRhcRGD4Tyw-WKdc_-IXp-YeIAUlzkPpWjEfSX0yrzfph5CI_7N2vPDxbcUOgLlvnPCwVNuLaPS3KT-kD-IaM6PDXhW5QTlGbrllS4cgPwzaqCVCoNOvIjkdY2TZ532L_GXAWBUEbqz1S44qJoSyYG43lfyE_xdUKEE9wL0cY7y3hcroLEA3bn8R00gKapXEdVOF5vNTchlnCBI1u8fYZorTq1TOhdESNUhpA3WlUHWTuy6phQ5J_Z5EACa0xpRr9Bh_wkUISyxpd34SWQxPqqAk61ZZ7LHY8XVHSlt81YrpQbJsaDueWLHEtJqcGlOfIknaItu6aFLfkSPdCiMGQfytcx6xoiQsr8T6ZvqXyAIQYyNB1w2czi6tDJLDgzJGy65RSFyNdjrvQGKvYo2y5ZoNpHxM51s6X1noITSAQ4ExGEmE5wCLtti2LiR9Wqu1TZzvQ2M9YVYDzc5dBwvtWJGbcjQkk67uM8k0A9mbx32FGPyXhEN2QhoTLF95XAyHAM7pEkRChOcNgg6VPzmVgxyl2mjXixbOpWqdZFQNeexyomW4DXLs6Cz5HM407pHvLNt_1OvQcvTSiAk4jC_MCUZOnGbb2viYssVKwrLhiTxEbvLVwBJpBTQ7SR0rdXeJj2N5Y6brX12g0uSBnwuy50wxihDkHKN7hE7N_EZD3_CnkXwR3vdHS3RqYkF5qUviUkdJGhn202hsYIfqqb6HHJmh-2UX23YEPGNasBOanQu0fty7_TE-DOaXNJM_h4U8XAbLwny_Op7fwwZpxOVyQWDssOiFSp3kTIBRL9ow2EMJYafK3qUPDSS9Gr4g5TFKcmT4T0VO7UXiyIqH70wRA_AFTqpo_poYDudt_95lPq-q5iOpyUSkZUsm_nPJnGT475AcyHwCnJokbip1D2yuwnVaKFdwLn9pR2AirZqEsHdsa9gO3fCgmiOmP4kFNQk5GvkElnDwAiHyQB66n6E_thTEvH0Cv_Xk5yd2cMVIgTdRr1mRe9LWS8A6dpPAIuEkLZlRrg5dx_9cNtBgGVKLvcj-64HYgJFcc0hMH81vs7efVBBcBpbyybtRnT8KSNQxSuTqMoWqKfHpF8alskgji0XHCzmlrocs3FEQ7hrMLQCH-3lCTkLB5ksbLI6laXKDfdF28fTA5S2JJE95lRSshTRZ1yr1OlRpQhy3y6C-yR3FPYnZ2c6-yIP6jf3e09yvuZ3y6v8R1NoBqDyFBEl2WuZhG3aBjM44WPqmH9aTbZ6jyAD-g2eCNxwBFa5gtUhT2J9i8Arq4mjKKDGf9HwD04LojR7GldnkyMZ-Sm2J9USGCRnkiq39U_7VhP1sKF59UG9G3d3QPzCFk4QHz7So74u94zfqNe3Rzz_wru3M567buh0mmpkKedZZXZkZWaaXh7_VJbrPTe_e5GQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6734b5993b4bf9-21381784','','','2024-11-13 14:21:11','2024-11-13 14:21:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41580',0,'cd-form-entry','',0),(41581,0,'2024-11-13 14:22:53','0000-00-00 00:00:00','{\"email\":\"hosein.nikkar@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"23833\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA6iIc6s9ZApKkFVGNg81Cdj54mYi8ddowFEi7Faw7MifF3z8ASVY8txAnzwAp9Y_iFhcu0XDK0TH6uCwSzoNzESspZ4pwxME1Ri9mdZGw2Fk0V38jM-VG2TK-JdqlkuuOf8DQQZ-PTTktgcmmvpqcp5bG3bTwG3wkJu87nef5OfN2jZakU1ISsZXcOYE-vREfSmTRgnULaWJFiIV4AJRrn1TOkke_yZqtSVRQlRrWSBmGJZ8CKStzr_REuqLQmsHQBM3zjwzfnOaAVTIErRP82cUfuRlQ6KcHYiiKDAuu9lVxkAqG87CI_UMqHSen0zwAH6e3Vl0Po7u27FmvwLoLE7scOmytmLkqk8_5c4OexJdZ7wvSNKlfXq1tDD9JXv-DmSmMLcaWCUQaEKSIzpRVHBAgT915IFx6Q-tQ3Yy-LtoyAOeFZaUQph48OYPzVoyoiR7dMlS3Epe6iol1RtQpZ9-6oy-sapb1pZt0SXqr8Sgn9b00oc7slm0MJU2OnlfLiGWqqSyV4goEOTWvc-4w_2BnIQ5vw3vahr4F_0HLLxxoNoYZbzWvInW-O9pmRG1An078Wy1y6zeQfBrKLSv2cPT25-h3fPiF7HU5nNfXU_STIRUn9H-KfJBrsHXAUsl8cqw6OXdKN7Qh5kEHKETobhHylg4dIDS48rFW4rqhA2l3JWLGTRCO3HTg4gzYNr_mjkqVJjrkJe7SJEZsu1A-RI-W9o1s3ZtWfmuLeQA064jsrZjUYV791lWFdrOxdzGpMaqKB_Nss1GRvfrdYy7G6rejCLrbo4p_fQwgrHcCGm2ipoD2y_MKdz4nPG7rIkOQxsDnk7xNtQi1hE6xIllt87Fo0DECtauyDLh-0LrObsmmZwsqtUaLo8eJILQ7dihj8CtbnTAOlAo-dzdFGyrGfrhbXnGFBT-zSqinmc07kcjJd6b6u7u0bqGi_8wi0cpgd5NOqT0XbWunotOkP0x33MQG4U87jg2TEO56PJJSTg0rVCyXJTtkOBMT2VMiHvcjE3lziD-U-kKZT_gF3p2PUij_BJZaO0L1W4JgFxH9hJ7FDIlFa7MqaZwvWKLIsj1YIY1CVvA89rdEoZ4VNYuMu9-YTlwdl8NoFJaZonuFh1kiqPvEkq6pmNlWDsWTYwG2nahY5-8GtOkfAHXmnyDQftfEsRKyREYyTNvKVM7hmW4JOjx_GU9rlcRPgVeV-ffHY387xO-D4YON5KCkkZV1hWTeIOLpu7UcGQ8Bl2czs-saVafbKMUoGwaG24uVyMx2LTbaDnTr-8zQ2rl-WmW0904fzrveMsWOevKIN0M22M2jBdgA-zFywk5wAWOCxQAOHRZV5WrdK17Ptk183DC8XcsOyl9L6F46EAE7MLPd8J9s73xeJFeP4XSEmKsJi-BTASh2mgYbDjv2oj1jGmo5Iufk3LhGWgE5AEb9I-9pDuxWfbO-nAnPWWKHpXWSLwVt1YepVn5z7d3222aMnW8RpCR75oFEKLQJHzBL3WBavdCig0qy4_Bngq528SEWWQIKYrMNFrLS_nUKXw_6x4Nowl--9Km5rELB603RKIw1bPdbHU_43IBjWCSrhxoGG-csBUIM2U-sIvfTEncVqVHa3aJYqXtb-OPTErkkKZjBN58uSjF2-C6mXBsV0zW-8NnLOY6SOSgaB5m7G_7hNzM23lt_9Mbumnbas2iMf8izhDJJBnGPKJZG4HgiRr5tyJQA4rP-WCqxpG9VbJAGey33tp6d61IdZh_TgI632VO-FqNt7HlG7DxO5CPp2nlvsVtcRivOE45YSBJZnIAppgqwEDZLv8qY4KubgegQ48siJ50yatZ2JguEO-tSf-gtHXlGtgbTGh7tIWMJHj7aDhyu8TUkjsXmiBQ5WnH7Ow5BE6qpGfClQTsmNIliEJDPYYs1IMMIAkdMrL8udfxJ4eykiD0gv5lQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6734b63db698f7-28708152','','','2024-11-13 14:22:53','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41581',0,'cd-form-entry','',0),(41582,0,'2024-11-13 16:02:06','2024-11-13 16:02:06','{\"firstname\":\"Dana Georgiana\",\"lastname\":\"Dragan\",\"email\":\"georgianadragan29@gmail.com\",\"contactnumber\":\"07946021378\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAudG5BhAREiwAWMlSjC5a-nNl8mvxSnh-aWM9hPqTVVkqRUEz_LkSWJAXjXJolPlDwkA-lBoCBtQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7voTuLAlqkqKNu-JxItn6EeBKVpXD_JakJD8exVi2p-FR6Rx_bWMycwSkJXuccjnoLbP39ia1afrbdz1j-rj9zmnU8FrMIlKxXm1BC7lYxHNgmDRCg1lncywXXmO0n0p-iSIdQp1HAAq1Izzg-7MMFwmdQ6GNtagp2ro2AVEUhKqEld7j-An52aHYBGoqdaDUhUAFHNg7xFgFlOBywiBOZ0Zstr2qq3bqPyIr1VNF1JZtX4c9qWMLqIwRyDbryiUJrTEHGJFtnM0I5CR9JjgYdit2ch0Wq1tjIdCWbvVONcGYYMcYwjuiZuYRVN3n3TOIiPMdIba22lq8jthHuNkpow5cjCrXYStUtRAYn2-nygRI7odpHSwI5klZUXJtWhPjDYqxh2I-2Qymv9j31DdfNl8tY12uIjRKw0W_PFXcPE8y1h7k8Lm1hoHIO-EL9nYBUSFMzkiGiGTHsygiK8WxDCnYSKCYNkNKTUSDPcQO746_SMYMYJu2hbdajI3RdbBzKLXIBmsO6vzNoMCuzVm_toz8BtbxDLy3C1Zvv-fZZC93NE_hL-bxv59erDjIXGlO26dAkFIjZOgk0WEwmkiFKtP_9N78T_-dv42dxu6b5SSc9ph0xPAIeIviig8AczKqKtdHFQukXKysc34UtgkeGcM6EbX4SZCqlJrrYHzQxDRBnUG32NLMWf8Q-rV-L_VIvxFe8sPg4Dp9l0d9aNorSa1NrORrBHlS6vdtfadHR1F97wSx1KpXzNvDgk5QSm2j6PH3rrD5oMABEMuPpizhAVpe_wTXl5iScrpx3gmnd8jKzscvsA9cZ0uEg-G0pHbSEFGtfEe8KfLuVsFexb1PAicQFi6BgRJj1rEtRn3HxReTNisJhTvpyyI_xbUZlDxc1UNEDbhJtpzjmJI5GtW3aU1O1xMZQIMPzMcGdyiwjnVnqStEmbTZbQMVYuP2k0OzdHCT5WmNwEiU_d0U2gYltzDbLEcPBK7HzKhjAW4WmTQsb91vKMddgaUuvPsCNw-QK8iIrNc2i0P3L2h2dqYQrkjXRrRoM061wrtEXbOTyuNzJm5WZ5zXelaDgeihd-eAZvcVY9fLL6qs1xya11F06-ZtwIFlUniMlwKhsoOorkB7uUDvRSUOT22G6W2MwTxzNEDOWgY5u4wT0_56DpDdR9vgRvSq1L8SI0r-ppEgcd0PYooVhA9izHSzlrOfOI2sIesLIBpoEnh_KwggmEhQ6mLEPq5XkKLBTcIzqfX5OiBDW6fAd-kFGd6ucwuSl4PKJT0ITH8ozuk2gaFr5acW6zZpxUdPe-xH8CCRV7TZatNS9alkOGQtosFUQBdnbOiN4_32ckKVY-R4lNB0kY3JYDqOmIpjjvvIZU_z9WuQxKe3_Jv7dFOcKKZq8-SHNjSGV3-uBGOGKSvsRx9iKem0P9sdDydR0VWgYWI_oRxqHCP58axbXElucIfzogS2KZHFMmPJQ27WFjhrfF_ShenwDnn9OBaXnufRm7hSSbD1U1rJHwuEwk3Py7AVTZ7NwuzADy98upFBKRAps9V5VHnrFAxxALREsImTAc2_TqcclLkIqsvo4XAL_g2go_Ae6K5NTQD_k-6Yj-GDUpNKSjxMqxAG4Eokdf9jxUKtSm1TZfvU5kWdGVh4kHBxG6rL32HTF1UpTnoeWrkCFAoMtqlo373QNooH3_RMHPXpMeQgm-gC351qTjl1WE4RA-zk4ClgUMesElSDqboZ6rkCLEnjBzFVPA_tM411cvK7ooAQhUVcJekKXrS4BnztqmlXGFJoybSwb0Y2c9LWp6C_U4siXxp-q068EZWH2iMfyuTyYQefyhitvTW3W7xe6cCKwyoaJgK5UsQwR-33Zn4jk95fiIV_4i-ksyT5fxKXIWetcZ9d7cktZec1IlCcXYhnM0xiigH7CwL1v5xFZo009jNE_RkF3N0OysF2W1H6vK2hXYrCTFAUpSdnvsK5HHzCTkfVvVqAdLG0x0-YwWA4_WTpPwotJ26q8CN-KjrCFh8HhAz2p8YGyGv6ASM6xo7JhgaGKq5Tg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6734cd6b64bd25-40623258','','','2024-11-13 16:02:06','2024-11-13 16:02:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41582',0,'cd-form-entry','',0),(41583,0,'2024-11-13 16:03:40','2024-11-13 16:03:40','{\"email\":\"georgianadragan29@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"E13 9BU\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAudG5BhAREiwAWMlSjC5a-nNl8mvxSnh-aWM9hPqTVVkqRUEz_LkSWJAXjXJolPlDwkA-lBoCBtQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4bzitr-NJ716g9d8Scmg9InXLsUr_SNxIyRMHywGkRk2Vb7AbNjNRwxFQJdwwn5zWjCVQNZIVdtn-OSajWeS9p-LZN01l4hrkFsgUM3qFCxIH05dU4xFvW4AocBPZoVEsACq2GwWrvon26uUc6NdaZiOIZRCjbroLcqDQiGWF1vMl1OQtP2e1mzViqu7VT2uMdryPmzvvArl8IwtqUOy8CK91ui6jZIjbA__cSkgNEiN-c_0wSR9LzvHvZCiZueDW57Q-B3ZuXHYSZy1C1QJKOrE_HACC9wbHEWwiOZHBTwh7sM_rXBhDbPK3cUdSQ8Sw-XcWtX3ZbGTivqP_QcDodAtpigLfvKrZsVYajmcPn9QUI62Gp9JaaZwBLyhGRlFhHl6LewkEa75whlr2-deSxDMs1gaEJDUtjhPfOc8JcsnQCNVod-v-DGwqBSkpAH9No4UzbJd32mTTphdxszedLtqqDbb-y_u7fTNiCKGYKP4vpV79enwhbQ74Fx8G-_CuV9fdG6LOueXzluy9Be_j3DprP-KVUqSwwGt-7fN6v24dRUPLxN86MahAbi_SpjKGrc9EhHX6YRbjDt5Wwa25Ko8hkgNpV49o0t-4jjJkak6qyaa0fQinyBfvaOqDm1wWbKPIjDQbo_-pIpRwSS5tYBYYFe_fWMBsakoS1HiBVyOIkipjAnojt9T68sC9vuBbr--OfbFezmBRfPH0wDU4hPm5uz7HBq4hBpUL4MYS3MVSfR3GPX75FeKRJnR4vMTMy7gOQwW6jV2z7BtFjsALa_jgicsHD3pfjZiulHxnqiUXlTTPjyKSIqYrg7JvP48U-6YtZkic_myHLA2XvLuARZaNrFtK9vT_H0NCvXlXdXQC43JFXC89xy-zVeWrdBiVUiq3YFye01OSbCn9FbfO8ywtl55Da00WMapxHv3ITNYBNfGl1mp227pvsVcGHWFFBMVrNNLg4n3LI9LMyF-7UGEnxv89p_v4gckMdFNkzrRYoNL8nI3C8dDo-b7tD3QLr4YUq6RFSgHDDJcOL1xq0dcPhZBv6bpo82Kaz8ntn1plfc-L4-5R5_bdAf3remncm9zunJ7Z6WN36y_XVkgDv3hvA0FeduG8nqOVHaIyZfWsGjj7Hz-vimwr3DMQAHZiGzh3CSEkiOxYvOpqD28sPG2zyUg8zc4APOg1R-WcWPF_CWikcxqLq_BM311BDTk0UGFuO6B70AE_DSGIEx1q6aO2PVxMRFU8MeLEQsy4oeYsru0RtemkoNaj5IfNIR8F6VdhgL37f_jPaaQbm7ll_bVlVvDX0QnkW6U0TTQSGdY1nn8vtVLKqu_AdmjPTePqalsPxY0lNvVyAqlOx43_IwRFiOcFxZuzIRw_h3t8gvG908XCqilzXntSGQ612knkxRi5VxqxGMa6l8LZg03e8TYzZKCcdwMpkkeetqORSHS9kz5EJ0L5mKvSmwm9qzuRfDNdAtjYGWnWZX_-HcrMBc057n6zGKwVjm_ZzD_CcfgchXRPbHEIbXkIScFeIirG9rXthTMR3kTwU46tP32gCTv57SqN3t1TbASQetUJ31cPkSPAGBL3U14dqEJeb3J34XCZLbGpKpofelx96zszWiYUQfWLfP5WXO3GWK_rXSoVQKNrCnS7QFpgrzz45JaGS14Yz9EZxT6I4GVBG_2QhVwQgiYyTgNaMeNL59537nACvbHXTkVU7NUer7r1ovDbecQbcK-ewwFCxPBvlyZfchWl5tkRgNGpK4OZLaBNKPDSUe6pnZsKJ81wkVojYRqWdT6Q8R2XJUSuRpl9UzrNBJ7mEH5r4zfpUm8G4PWrTwlRZNifEC0XvsJP-wGLDae1-ymXMSg6IOVT4llar5mEnhus5dAFW8rvKD1EHDnjxBUbkRpFjp1luS8PzdE4QeY81zYgcGiwXuH1pIgi1PtmdqRbDdlGktMZeYdLFzeL9u-2xZ3aRltMJdB0K6clKiPdX58iMwsil-wqPtiq-4zXdfLpg2h6zT_P0Zgs5L2neX-hhtoVLjkq7wvN-Gfrot7Thh9nA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6734cdb20fdc59-84433796','','','2024-11-13 16:03:40','2024-11-13 16:03:40','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41583',0,'cd-form-entry','',0),(41584,0,'2024-11-13 19:57:29','2024-11-13 19:57:29','{\"firstname\":\"Mr\",\"lastname\":\"Haseeb\",\"email\":\"haseeb08official@gmail.com\",\"contactnumber\":\"00923189921829\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAudG5BhAREiwAWMlSjExinhEZR8MIfUE-UDDkndMRHRh-aWPPbipWcyP1_9UNx7JdgEq3tBoCbmkQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6t4Se8mDwq_ermkMLu84muUffhV2JN-sY4Q8NFcV2kok3HGK6bAcWfKgUGiuUwrslXPiN5UskefWSxqDImYxa4IVFtddj8R4BVFDll2UVNc_0eyK2Jg66ZHHrd-vCH1ezYHuyKbjB_OhpAqTCsFZYSDPEMXKR38j9PE-RW6zX0LKx6JxAP-24uXv2LLm8yAnY0DTW9ol2Vc2tEap6NZVOlafOal92VH4uMqXwLLaW3HKvFbkJFt6HpiW08FJalPoQGcSoWKdKzkPWPvLr6YbqpSICCtVnw_Ewl86JgDl0Hr0vX5t5YODtXQ41-qpoRdL8amhAccxusGGsFbaTbIAdJ0l8Am5EjhxURuiQDS6NM0wHiTBwWEDkpVnVSHTDcXtkc8JqDrmHE-CO88u6LxL1FHOvRd5rsW3pw_hATW7t4LPuEl6OJt4W3ALWL9VEb_0BS-c5NgimeD3xe2uccY4lkr8KXbZalbEg1p75ZIRMjmRyiRYegBMqZvBMNLJHt1puWaoxUAX3oGkTZvSy2dIwMmx6j4yf5FnqVLNe9-q8JbvqesoxSlhAisddd-CyZuOwnaLYLD1_k-TvOky-UbF2yv7Xa6o4RU9A-Zgh7LAXkrT5pRp4SroWBVLcJiFC04-8eIQzocjOLPTFxBLAAf_SYerBObbcDFgqSfKeQF2TSiaOdn6zt9KLH2OLn6TrxGid3wVWEboL9gwZvMA4Ccs9vumq5aeXzye_9Q8enR9GKKI3vF6CbJv7Zp-UelCuRHdHeadJBg7SV3cu97oBG7AwiEIiK62pkUkwnpVJ8o7K9QHWir8kM5CRe4YVIvHRMby5kS9u3NcZA1Ixt3t2csGYtxKioODX3yckdWbn7_dPtXceTmKjaSIwOTQAFKZYfregCga9pcT71PHbT_RNIt5Lt2St0p236q7-yErRQxtpeDuKtkimSPdTHVp758QXVImsgaCl39WEdFfvCMx_jUvz98c5lg1QVsHNif1bKc2i16QQG7ToIncoGY-EKcYK-XPlVuhkctznFu_Y8H_C0ybgi0qPVNLl26bO9Wjr71vP-2FbV5K2knc7CDvrT8XT7j0ULDIsWr2v7u2bQ871gn3xfz2RUamZ45LkV1ZY-jI2aw-6rHrgeYcDCy-aM8cmFIPuM1DoqdQ4_9ns5v-fhECndzSq_DD7jsmc7r17cV0xdhaBYTH3ROt5g9oeDCtp1lai_ABRdjvxcfasYOEViF7Tw1KhEZr25maASAGw6sOds090MrlW0UG10qaNMbljp2l0szcakbXTPsztSOXLjmWHIwMSS9PFBhMTzaXxY9Dox0aZllF_N6wg8v_R4f8O7LQeEBO1NyvcEqh7hDhnQBBuexhJNC20T57bXRhQMsX-hnyWPG7Ex4aZNqmUaSOJ_deCLlYO4wvdV06n92CQuqI97TgApd-eLbvX1R12Qze8AkZkBa76y0fj9ntv0x6X38guuhsVB10x0yZEjiycEx8RHnfthlW1FeqloJYDyP7pUZWxbBvZnfmVbVDAgV1DNqU-SC1656-S6Ld5DHYR9lxkeoaTEhfSz6PN84gWEdmOrSchHwQWa5Ae_rEj_BHo-LgGKvlDHvWoglTMFtbr04RN87s3LGxwWRJ14McAwhZ2BogfdiQTnnBhKUcwF2XzgOsvDj1TqQyZ7YbXJGfNSSJTr9xsMiR3NSJFmx-VAqfPJZQVtldntLlNUXwDH0ffpGpXqHQgmlL-9b1trpVGga-P2v6-nv-NWIomtPkbdTlHKXvrzSWBlEaPdPLeb3dWJmm1SY5te6nTygOJnsnwwrBJPMsfjvO5iWyFxd1K78mnZNTAYeCzgZZJtSs20gA2RnJ4yLKOO7glwfIBtRRGCfXsv3H4x5sCqaqCWB59bMs-qQgiBy7eSm3wq-dQN7O2KHun9Skc8YapIfeizUATwEzE1JB712VpahY5ORLepyzQCM5onBzc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673504933c8c53-56535467','','','2024-11-13 19:57:29','2024-11-13 19:57:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41584',0,'cd-form-entry','',0),(41585,0,'2024-11-13 19:59:05','2024-11-13 19:59:05','{\"firstname\":\"Mr\",\"lastname\":\"Haseeb\",\"email\":\"haseeb08official@gmail.com\",\"contactnumber\":\"00923189921829\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAudG5BhAREiwAWMlSjExinhEZR8MIfUE-UDDkndMRHRh-aWPPbipWcyP1_9UNx7JdgEq3tBoCbmkQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA56wAG2Om7vCzAdPK9GC78n6JlaxlnnLVfuJ1Fe3cgiPBC8AdwiO2ORVIS26jVX2siYPWsDrEEiBncw6tjsOkDl6p546zwrZGRjwFUVJm3Vc2Dt1M6f6YLcc5RMD5KbPbjw_hO3XttOwkOEt77PEMFyL4Z9VD1NORbTutX1-nF3nAxqwvmGsYbYka8WVrQoOD7ErbvuXcXAPeQsoBQbFXx5TPtWCd5idYYiEkamAxrmXI4vh2ZJqcGZuc-BbVwdMY4IxINq3fEMQjgodav2LRJVvwZVSuXlEefyYjaQaOizeYH3iUmsjkos87KKm0sTJ0L-F97UfqQmymBJeJSCB6NfVR6NGE4uP7KeDRFYuoIrPc1i2sOgPaClBs6WkcO4aqA0vgfWE5kBsMObV7ZjQHNBcJT25DjmHeuqNXfSOXnBHtEQ_KEb4pz0i-HYaAiSSg2q0uUKw5-u7dTQ0kjwQmi03HzHhBlh87YkkOCqIf6jqOjY04J_LCZufmc_KKzSYUgkdIq-yQsmJWBCQ8LjkDM8jp1jUOXt4STNK4qRnkujWDhv1z59Jc9mVV7PvdGqo-AH1dKukpp6MRDmeCKHHcSAGTl_ldhTNSM-UDi_vg9zZN2BA37NIecIXQspQ2zfpVm0epuPMYzAUegLLZAC8_M_17Y0FE6Y9akDZvEO1qBRYENbhVcDghka0srm191wTYmXBuMcyHanRW8ayqHyUJAEEZYo4VCQOJGuG9GahMzKRNafz2HIqHDq9m1lnJtjahkqL1lCIVuCfyMl0Wo7RPHdiWRBadC1OW2YAb7BJ9407SjIm0Qol2vqpM0Lz0k0xT-qtQXaQC86bBnft8Gil7zvBbx7YOvHjqvHNznwJK-BiMnwKsMzva39uQ0gbiyo_wmXynSznMN7vRHGTiWuvAnyuB7w59JJjbj3XgTLMLTSX6Ydww4Rz6l2c4cyo217yRnE3Ja1DdxK9Bt8P1sEN9imVqWeMP4rCYihXwQUlnS7tfYtmMrryAAixqz70AHsfm0NpIWrYtZxNphB81tvq6jGJhaFvi_SnnH8NyIUt0r5EyYMdhkVWiUvKsm7t0CZGGX236cqc68bjs_LiQTxctoKEOdJ-3r4Ex2yeegpddQMYWjXO2G9Gn1yMQdNxP_Z9BFqKZkkzerRDV232_ys3EvsEl2USHdbfLgPVi3nBkk_qK9Ar6mRbGMU5IgWz9m7SdQZQjCprVGLcXKoUcAfDeiS3yOcqyrbKVH9CIx65W2_AaxMfMvgMPH70rACI4c1niw0TujRkCtKlDrmrYM7WITYh5amE6qKo0k-SA6jfNRQXnNkbsd7t5cSRXU4Mb96b6SWHsZhHb7fA1Ox6wkDfEzY2PQ756ftkYxijD7Vu24p0vJyJg-hRilbNUWmoiKtkbp4vj5rwIIxf_r4yqVJv9X5x6qwiergV11v-4kLwTRuFjnTCbEHlTBn4AAdtvQ57kI61-Mdq-QZNiE4rtxSl-i4jGNHChFrbBgbMB45mzQLyxI5a6NXeXCIrXJ_hJdkeTNorHHvCvg1HZF1cPP6Gzq_GUTIynfg5dVNSGSjb-m-57w8rHDEqHC3gPU4r-bUhjcSSZE1Wb68IFbTsl8YzSvWIy5s8pS94-q1Dff1ddOeWq-qFtBQaPVvl7RlKrmQbOe7dSZ06QwMY4Mkorl7kWDJvbd8H6Wb1FhQuBUlgnoveYemMl4b2nFwlfPInfuHgXXZTlzNDfYx7BSnGFNI8JVa6LQwdI2ey_SFKhHMx2hL96iszU4vGmcJPUZ_0WU7JfAy8WCDl4PGf9wJSY3o8-n_D6Ckg993zLMr-ZzggYOsFN22uoqwAky7gaXRH7xxAqbzHWtxMdZ2fpMZP2JetjQ2gCyYyM7hCeD1Q1QgqsLfdzZzWqWEymDVQM69A-LFca08q-_c4mDiLUjmKWqQLGtC60Th1sXdr0b-wWZ46sShi4hjnV55z_POWTiKweZ7_DbJiMgz\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673504ff81b0c0-50130575','','','2024-11-13 19:59:05','2024-11-13 19:59:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41585',0,'cd-form-entry','',0),(41586,0,'2024-11-14 10:42:57','2024-11-14 10:42:57','{\"firstname\":\"Pieter\",\"lastname\":\"Dewulf\",\"email\":\"pieter.dewulf@gmail.com\",\"contactnumber\":\"07464351804\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA6P71bq8im8Hv7gD0Fd56lbLPwzwDqp0NOtqyXWjVG4kkI80zbOGav5maLdugNXeUAnq5p0cGapVX17BB_D9PepuRDGoVLUWV3hwkUi-LXc8xGobGt2sLEStpBHOwiqFMqVjlJ3EIgQ5l0uORXOROjO2mibOeYYEOPVKZXYunM6QcJKAXyV-lTIjrWsvSY9etAjFPqZXsqLAXYuo7IW-aHfW8WzhwJCGCiHmf_UZjHrR4-vVLBiZf53RMKeStApbEXWi1LQalVdYTfDzxfnH8hxCCLNVUt_L0iU5p4zmOwIkKlAe-nNQIvEOORiuUHbb7ojb9xuw5qsXF4_o5riQ5SIOHmXdqSKsCXVi9i-5-CPvvepRtKn5DvZrwWzN2syvHQRtErtUE_tm23vrezwIkBqxXvjjpsOVvlGEyfD4akgqq1pKy9qy-Z9z7rCZ7bzRyaflr2fIEl1ArQ9QYQ6uZ8YYvQDDUWrBw4o0MZREnhxGO-ObpXyi24as6ID9h5OsBwGmk1ifuzhZxfUgotHls4mnBUID-cy6zycn1HGlUdqdEZxdesK719OO-FLsQnZck0UB5vRFWfe4Ox9bqiW2YWrH7P2QV-jkTy4wBoCX3HX5ca9vC8KxiWVFZtWJDz5jsqQj6vGyGlsZrbdjXJ3r3nq7K7TK1juKP3HN3uiQFoKaxONJrckkgbcXx30zIVIafvs33PgwqS1DVdA3C1z2VTv2kg-FRzSc0shCt8FgIwtwuM6iJ_1Y656HoTqTGFnuBxStii4SFmhmFKpjJy-lgSEuxYMyF-PF1epsEivVxgD46E91Lbw7WVU3RE7DC1VRIPPAuKKjZylWJ-b9BsqVXaBwWMciocv5VxMepGvKXK2ggFq6-i_pDAyLedC-1k2ro-qnfLucKO0QP6ldt6Ebnwj4cXR55Bdqno9sKH5-WrWe7M3gW7pMNmi6vddl9bEFrTrQe5GQ7Sg067LLzBf-4n7H8qveUVjaEpUHWzR7SuTaYf7JDwYE84Q_VtEZijZdi6ZwyCbiOm34sNyKaMYMo23QOzliA16avrn1re-ocTz9Fc0vTVyA8lDRheVRF2jPgX6_6cCbOB9Lestub0jH9RZqvRfneQLK43tNfsW_drJxKu5xrzfcDoNV5e7189ohScsp9_l01hECJQTILcYjXRFyZc7JOodeBD9PGEMewXzbWZcpqLtK5KDTmZ9LwVbDk5araX050HRGJCH087UUiMLHG3VkJCZhKQXQ6ZlzhMoG23zUrVGzPUYGT0bHqi-ML4DgYdsaGqXGjBw8E29yt64jgwDl8kGDR0kAcavrGltC2OnIbMeEXZRjOHor3xKXHZZze6dzaHqiY8sUfVzLmqterrfPGQnJ44DN2cw4XULUHjAbAkiWEqGHMfeWAHpJhlE0QUVoiIBaM2nY3rWSIDYohyBnBgUlfa0br_DIbeFLKjI7OrFFZZh0kr-4-yFRoB_q6ohmPdMV1awi58vBX-JVtghaSGFAF5kOuAepaapf8dWPiirSuKob5Tj2MWrYLBV4Nc8FCaG1ZSFEBVJsHPzJsHNFDH5FW7zAZGnxjKfOn7yBPTUl_GWhuULcrpYj7FS-CNjP92YAa1tCXeDA1TPJQ1keyWRFzSkfzl_OoO4l_Q1QIkvkQ_6E2Li4WOCFP1sQg6YVbdAebZblAQwrTGECn5_cRwTytzL7Ew2tQhPrGiqjRiqvkV1t2inifAA0U1C1trz89b5FMYy7NGxOqXl7mlJExzZImkqwdBnRfB4-9mWB5Pz51Fbaj3QLCDCkhfvqpUWefA_EMzuY_Hn05zlpT_3OWXJdeXmqZmsJSU-NbYXg5sSF0kCyW4kOPG4C4o9xErzPOS79_9Kp-R7XUexTAg78g86-04RQWgFrUEn687SN2LjfHzgKGwLN6DkCST-TYssMukfphfqsd6abTqfi1O6lya0W6J7w0hztk0w9ztAVCw8bG-oS2tFn4o8PcYFsab5pKqj5GKgl3EXy3djWIl4se7UZN80XP9fsQRi44Zkxl8giTqExlcwu4_G0Fn_9Qwewbf83rYdUbzQH713kIOHfCKjbC1WNIAQUimTb6jdiX7KhaswERy5do9agQ6M7P0372IiksZzGFgq70qCzZT5pN1HprFVb0zKNPG6MOoD3OrsVP7PS3uFsV_hpLh0nGiaEghwIO9z66I8GbMpU-MURNvCVXSUeWGqpb3nhY7A3w8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6735d33fc27376-71515980','','','2024-11-14 10:42:57','2024-11-14 10:42:57','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41586',0,'cd-form-entry','',0),(41587,0,'2024-11-14 10:43:26','2024-11-14 10:43:26','{\"firstname\":\"Pieter\",\"lastname\":\"Dewulf\",\"email\":\"pieter.dewulf@gmail.com\",\"contactnumber\":\"07464351804\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA7SZFLuCVUXEjZkoBvAO9TmgPf6a1TBpk_LHknKAQ8oCvGZ3D2oSn8B0TEPutPq7fVNpGcQKzZ_9JMKONbB3VrKnRcZjToeiRH-pa0dihfg1aP0_B8l_bekJ6dGtECFQPWolDIgPQFzgjytBWzpK1_dew5y1JRUFDEi4Cn0gAKAo_pXP0BJObPag2bLKwLWe0j3nCmr1sbekJ3KNOt4J9DrHO8QlVG8MjQxi0W4lET_PnTcr96FLxFwwv3uESe4ntkD-SwoMqonJnbYSCsUtzOV4FkHtRM0pzexHRA-JYk9KcDKKQSzVqMUNCIlMv_fr1649N2JZbg5ZfTkBArjbaDwmMQWzdW8BUM9LD7TzwHIoMocsV6vx-FwsSoeH59VKK21dKG-YWBKZoyITq1QH8RTtSABkyQh3eWZWhB8VFq-ANGgqU-RV_cBWB0BfYnMRrbkZT0aJtE5JitrJoM_f1uFwKstzVR6gMv19elqRWjv4sqxaqO6EJq0vyzydqL5S2kLMXus5ShuLDAimRuAmFRt-HGNyIqFOSKZz8bXkFJvsQrx9FOisz28muT_uzPOFPOTX9fuA5_TrbkBu-SmMOpK4U9oUAjZ-_bcH8TjgJMvAfPb8iEFbKPhaGIppbuI7xGqxPMhCFjbICphJxf0eFSdA9mnznjA7NDKuE3mh8s1l3qsdUTHnfzHXvbQUDcXXmtcWxTP8_T1yToCYoUAvqSVW-9vqYEy7-Uts5gDHKn1MhkXsmR6YKNDoiFYnELbu-4-bGF0uSzLETsKQtUFLdDfre7mNwIkdFEoGQF2DlO-IETzjcG72ZPhZNWapwhweNn_7h25hsCcUVpMBHeMAoF1GZsuVed--0Ic_QBFXkn2fuIuYIjmqHaEHnEobDrKLQ95M0W-tBiNaShExLfiM73Bcclr4pXLZyVzIqjSpkTrGPFsAtuZWG2-RtquntwC07mQmBtBKGWl2cpHOwNKobRGN2qfrl6wAa-wrUC8jwe5W86iz-iFlSjjWngDSiWhaUd-92NR30S8YaFIGysWZhh7gViv0T1H5LDh2x4Ez6CF4be0nhqwD-NUrFyfzqYViVohPX2p_E37pyphC-qaDq6ZX0Pk3rm3OwVeCcTd8wpb-ES3jjjoq7_gkY1-Rdaia1QmEfyAJftvDLtJcnLU7sd0eaJZv5lDLyVA3TI2lPPR6esN-JfHUDZdd-VZ1QtWULi6dY5u8a10t8EBX6y70KHwmTqn-FO1dtJasIi56Jyke6RVetOXlXe8TQfPxPoDv_L8Wx4Id-rCRng6uJOddjvNEoL-V-PpgxEdrsei_Ajav8HGxmZPnBPLdR-eB19SKShLwN3Yj59Kp0kELFnx2Dy0KqxH9tomM-pxXIGza54nRGh-0VXKn2iHGmku0CZq0nV6mH2dk6ifLJQD4-2QbbAeAdyvl0Da0scZ8zIl_QwqPd41QNHKXlFvyl-BJT3cquWDA8DbkaAjRhmyeqgRKkPcLlLAPtC2gvC8eQ7bTmOPfRB2OMxCzcSlFEDdQx3uXotrWMcmX-qqLRXt473448QTljsluNEt9BRXJClN0cjL4B4u7rcx6cnrkE2-NQ-2tnVF1wdUhiJLrJPumXdCHSRAYgSksQMOHrOuOlwX8dAQafEzuXVsO1gqEnMYmPND_AHQisHcnyh-mjZ70prc51t8K_S8jJ87NanUMU9jh5LAMM2eKf691xdldkgYRbh46d1uFaTMDuj4XI4jNxMFl5jNFb3BBzmFryeSj_D4bri3XedMEO-Ckm8S0GzNun8_Pbgrewr62xdVUH7FJlhTb118VfRD9CppnQN_Pd1rA3EMic83RXo8OrB7aJcvueAtv6xxb41xO1z80Ws2-GncrMUdl-ZLz-nIovtfCQ_YzEyitUFrJDqRtm-1XvVMy6HDaqKNuS9s22AYbkvpZbef0M16UNdK6hlUsU6jcMrEwcNtIWHLB-jOSpe4YpOGog9XtMqi6vRBY83LtH9aHzLCHFUKIs-nbCKG0KvEorqEHIIJnnCNs31aszgcHUPQ0MTfFAtMvBNcfmkQyqAvnNuTLj-LRabQeAo6AxulOziR6Pyo8lmBH6ezgkC67k086YSuLw0AE2iSRPJ4EAeNLx9Pbjxw3mB0oZoHLaM7ZW2bAWV4kgff2uGCKQ67iAMG9279ZaWcPPwLsADC7Kws0A2bAT6mXJZeHLlx-mHq7jbmbcdH9PsjtO9iKp07BbGaLHqt3VLDfDUuV9XI9I30w4eKdJIhbk-LsA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6735d447b0e5a5-35846293','','','2024-11-14 10:43:26','2024-11-14 10:43:26','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41587',0,'cd-form-entry','',0),(41588,0,'2024-11-14 10:56:26','2024-11-14 10:56:26','{\"firstname\":\"Pieter\",\"lastname\":\"Dewulf\",\"email\":\"pieter.dewulf@gmail.com\",\"contactnumber\":\"07464351804\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA4JsxUWvaZf7A45EhX9idE4fo0PNoEIY9DeXS9BzKG2857QuNKnIpnz5tRtRS7Oypwj-_9WGPKMld-OFuV5aPLPKK5f0boP7gCwLXUEvKlk1dqqvKnTKGt43QXhnHcCKw_AZ1hBPDUQomcCR_ibAadb0W6kf9Cz1ZspRvkOlwV1einJeyU07AZe22N4W9U8BiOqLn5m2ySKz5QezqlmhT5MRwfaToky-SU3bmI91E6wZRabbXxFVxpfgBpZy6ro86s9fbC2ZeRVSKYndFojdBVcQc8_d8zUqUt34lhNGFqHWFfQzE2MwbY97yXzgj4-mvadOlAsb47wIegu6Elc9JnqG-xLnUKj9Yr5s3K1uU6tsXRCyPScK-5A7ou2AWTqUEh0IEHWhDIZrxddlWklR9R3-HRLR41l1gMeOcsbgCtVF4DuHEBSdheaLD8HO2XWTZB3rvHQP6TD26yF7DlHUOVd7UbNMgMgb8O_o7DgBKXIS6DozppikdhoUSs-EHUEEgNXxpD9OO0EQZrGPj3N-063B9sdIqR6yTR0QFveT8v6utoa1j3WRaivrOuEF2DgOKp5fJmzJcYRGqIhd-DKgnKzjCveT2R8QAH-TWpWr6JAUjdJ-50-zIXNxB0h6c2adKVIZbazQFKe1-KubrWe5KkEFzphwjQ2ooilEQ6OhsO1OwD25Xr4fuxIwK7C5bFEWU8Rfnk4gEMVUQ_K0i2eFlAUZa-nKsx5azxrxojudCMkh0BnIz0YpFLko-eRsra6_os41bGCFggA5qkfeijDDOLPqCxeL07CjD6EozduUsRDaFnTxbReEI-ivxFWi8j7GAUHtn7fKw7pxJSPpfBJKkKCs8Jz9bFGILWzh-mQFmu1nWV43RLA5Sqr4bDvHBrWSqTWwrkDUUd6TyLjwSFN3KgC2KptcbqfMoRd7B6jw70TKMOO_uyesJ-qPTmoaQAFo238Cz48v0jQQ7wW0PFwhz2S2gwJ_HT20z5VdLPrG_FvI5PFWjW--jiyPzEhMnoMAwNza7bo0-ixZOuwgB1euxrP6tpB2EIPt8meOdRS5W3X11vKp57z2HcX2ep6G1cfunjD57FtEfaMEYZpLS8XLDdimjn_6vy6uazS0UD7S5ZxN4YKX4JWVNNmKVTCxjQ191W8-VANv5hBq2CpAYyeyUvwPcRuY0pm3Ofgz2lcUaYQVvNBR1z4JcTNUNbnP7JUCrAvDy6-LtLixLX28e6lZbKS_ZASiAvX-JdNY0puXyyWx0OrE0SryZR9_BXf4FMhEzoEqu7zsoQJXTQnAfzM_ufSQahmEfW_A0CFXlyVACrUoGJyCvFEa0zKxGf8kfTrccEMC6MRvzlnv7XOEZtkp_eZxctKP-Bh82Rk6X3tqeVsQ70ewxbbXaLfdP1VU_FaISqs06ciU-JiU5Rq1vWW9ySihAtXZQpWMF9oPjFlDgJHGcgrOx3bxYQhwewbFDlY9PAUagZ08gK6B4MMAcrPefOJ-zFmKUefRaQQ8DHlC10rSH6os9a3nJHG8yeQeO6R1FbPF4gYLU01sLBuNzBTWiewx4B-zHDdbgs1-bxxv_b-4stNmi_OzK7DNgq6MCx1eGmhI_8H3luCse-a0RVi4VAmizJrSaVMHQ8FpGdcMjCw9bGdCaPafeYWq20JsuqzR9CGpj0dTL5jSJsl7U1sZHXO-yS99ga3ZA-EjPu0wWJhlZ5Gb6jDpQOzVjA7Sks-7ZaEXadLTNcth55wKF6dxtyltOHIASHOGSgVgOG7vL_X3-Qy2jzbFVDq_Pq7cAcEeGxktGEt4JOg_TXJ3ei-55SxqR2-mE2b45MTzDFCXDOzkXGLweXAbaG5w0NQ-oSSyLW2RLDWf2pnqGz-mpB2_x5bN6HGCFqBnp1aSxPRY0QsfudlKcg2z5o3NalTBIT4GOT0yCL53lQ1BK0uhJIeK7-gnLRB02mS2HmnrEczrfLF8RJ5XtHJiUqb7x8KDMjOhp0fTHVjucA7-bMJnpd3lR2XZf99TkNZwJ4n36agKPrSkNyTVDH9beefel6icFOHpZmFStU1xMqtynoLN15u-EPeadK41lkAgLV1EOXxQ5SSK8LQwIaIGX9iySIt-7ZDt-U_zQbiCjB_-f6ZGCrRaQrvZmpH19CafEIJQArkUrrQciRvHLA0NC1E_rkIO3vOVvRV9Qd6I6HNyYeV8mAd75JjBGmTNyTV2V-NJpaXMIyyfmMRPDiriOa-D5cjYGPSxsNRvNxg5-sa3XGxn8HlFGHa3GC1sA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6735d753ccccb8-18605459','','','2024-11-14 10:56:26','2024-11-14 10:56:26','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41588',0,'cd-form-entry','',0),(41589,0,'2024-11-14 10:59:31','2024-11-14 10:59:31','{\"firstname\":\"Pieter\",\"lastname\":\"Dewulf\",\"email\":\"pieter.dewulf@gmail.com\",\"contactnumber\":\"07464351804\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA7N46N4nfJqm3u-LHj0-FSG_XgMUxkvMnIbD2I3AMHLZILW2NN8bXmTR3egpERL2dA8uFpM-kagUyO2hDK8-oNIFzFjfgURc7e7-j4rZHxPNXeEpLFinvP0R_O2iTkIwVlCFVpsg1cSVz7tJGfarBSKAqQaKyTebmhZGONC3tXb35LV_aj0SsRzzrVlhXSqAFe-gwok6ek36kPfe61sGxFrPhd29EcTAI6JuZSCO0MaaPDMZLLKnk3Xp8s7KkKEU7GOvp7aaVakViiItHFKJl8Kx9M6ux1VcJpANnTKa7l_i518iVN6uBMX_YzBvRbm46b3Wd3JMuAW5K_nc8xUQ7QySX2GhVkP1-Ngzi2LuUYA0ljgPVjnRNw030cCY95NDQFJFh_r4KzhY7NT0cG11BxiENbp5RbG7pnAN7Dj8kBIAwZ6wfIpd-Lp4Mr1JJBORAaeROtj-kQAXuCoN3mLPw9Ue96x7OimSRXKIPkmm_WHzlS-NGAq7JY1F9jQAC7JMnk0B-GuBtmnJbfiTTZvIcUnykK2GACxICG15WCXB8K_G3tvM_8pUTq5jR-5CQt5mC4ENXitPdxXn0h6LmTjkbVoPYCdlYXg2HXLzXdEPiIAqoUTUrPKsy9IB_2mq0nCu7Up3O6KiktbxNp6D906UFaUBg78XTYhGbXBWWIlt_R2KbRmhDAEvG8vh4ryiwNwzGs8g7tZGC4cqQiWS10uhMk-ozSrBiG03gU4hfTrn3DfMFzvHMBfRlNbfq3_P5GCisU3lmJ7pubTyAPPzv9eze8iknk0dTZGwkZqsMvrGmVwRXgEv0YUtBf8S3dZF4CHBrUGdYNN_RU1OIqFnh86FGCz7EzILkgOrb9t658SaFJb8K8bUyQ-SPjdk2eiGuLFRlVqHvKI-4k5zBykXFIp9ZQ9Czku3mRh-jH0cJ6zSzok_Z4Rja1xdL-C-TDziVYcXZov_xKsuN-RMWwu3e0sWs7KiNTKO1uviEchWvWba3NEIU2iQUEFb3Gcgt186qWuZw4Omw-lA_IWi6CGaHfAAoWIwNNi-Aq2uyccvCxzEw09NIjf0uDEU4gRR5JxNAw6eOEpLC_NW6PqXIdQu1qpUNNa0It4riZcgVyJ75Imd-uNpSEPP3A7F9kIFuUKx8OCLPyAzCrlZ-FLxcH017G0DV7c1MAY6w3sD-GpGoM7ON_CWJWgragRlW4h2-EOe4pzbEYiAgnvVY48-5yh9-ZuQ3A_miV3a2SrgFJVVwrswfcr-3bWMu3JXjyUHVyTNrSDpAs_YjHLYHPVXZQH8TTbb2V4aT3wbGOX7t8N7wThD3NvHntmKdezhLkgRjCGrL13IV46fkgv0gGHWEKochEpScXjRzUVKUAiZWKKARk7taQinfW3w4aEQHAriqhCuPas_NjZdxW3xZQ4mCjM5tC9L-v1hVX_SnBhiYnMkdLUkyUjy5JNmO3hdUS2RpwZaK0UxHTFneFvjbsEluq5yYyl1HaCcb2ZAxSsQ-OORlE4VvKLJR4ktacY5pJYjk5PSYimFe4T79vMTmcITVK5Be3_uaqQyxwYBVSJCsi23UdZrTjk6RbgLMfQ33qyAX6SYlxwPk4NwTQaZVwMvUudFic7pQoU2wYojeN9hiBCgfW-yaA1w80PaGLNXKYOxSd9gRXiNkkMK31GdaEbpjkaWvkqiigkeeBRkV3qk1kpT8DYAwir36lbAiNGuWCBewcxbo9sVNgMRPkPbVMCY4cDDy3FWP13QDOjDaiEKdboN33zdBFU3GYLgSGsgoyW7EOJzCwlhqf2GzSCqPY67P-494mRO5r47kEF7TBq5tFxktqXHs2JZ9fp9rRCjAnDWgTJTtYli1FVuatewUVAQ5VlXnNAZmyNxyCraxDcat_aU4Xlf62q1r4cGvyTZ-k7DDAqN2YCiP-YxS3zC57NkP1qQeRf-Q5Xl9bDmkf16pdCbe7U2dUG8nFJMGyJ-_DCFyGfSoiDNjLtP1QvbTnYXo7gChFt14t0VCEG4LY-GmM7M6YI44hlqJaNhYj8KbpIhqRptKUhTyMWxl0Q_bov64YhThOPmf_hKgsosoXr7tpVf5c3BJ7XuIkzCQEy_ZEIwG9KDq0wzvXsBFk5Id7oByfiYnON6QoG4qURhM_dnTY7vKnP546hMJJ5ifM1JNMl9NEZjdGPKqlhDtDQ049O6NFK2SGnmV8FuhIeMZEsCXTBK3G0KFPH5RvXvFZ5ipLjTqw6xqHlcfzsrL-Vhsm2nHuRsz7keBB2zlq4bQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6735d80f914e07-81750909','','','2024-11-14 10:59:31','2024-11-14 10:59:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41589',0,'cd-form-entry','',0),(41590,0,'2024-11-14 13:33:43','2024-11-14 13:33:43','{\"firstname\":\"Evangelina\",\"lastname\":\"Stefanach\",\"email\":\"evangelinastefanach@gmail.com\",\"contactnumber\":\"0977357921\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA3Na5BhAZEiwAzrfagGR3-cjqYUGXnLLz44qX0s4OLUZZq7wiAiSIqqGxHaIZOkOM3aBx2RoCdnoQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA44OlL3TUS-H71IA7z-nFRJhFrQGX847aTqrSUgMujDQWr1YZhRDhHe6GdHYQ_yoZK5v1KbmUoJoJi1Y8PDAWfntj95n-1UlruCLTIecJDcS-T3O4yR_mowV7Z_ytMhTpJ5PVRHAk4OM49omRWItgNW3dI2HbMJOGTN9DyY0luBQjQ5guPqz7vWzDliHltbxXZb7GH-1FsXERrOARPE9l8bvKDZbTHcjpojpNzO71z6E9GGQ8wSDWLVLxF5h29u7hP3-L6d0a2vU44xwy2pwlOEe9dqGadACdDpr7iFs7yH347-GGik7YR0xuFnfC3Qu4wAiQvEig0_YKYz4rPZVYYoJVQULjHn_1hcRo7flV378gYDiL9bCoODHZP-rrla1nO40W0f3EmVqxA2GfPE_HwZWGamkgV0hWErHNcgiATpbGrfcGdWGWOj1ZEVyjfRvycI00UwapUQoKXgpXYhnWPV03VvzDp7_FKOoru6Fo5Ru-MvHywGNrgzxYutYlwEtRwn4PGjzlWEyT4jRc2i4BA8A1dRLEsOzRjxagATlq-ie-vTt6353ABRlTP_GiOvS46hpzsJSvjVtNgarMvcUtHMwAXC08_3p96vfDHlxbge5KFTj5Zn55CY1K7pj5DCgk5V0s0DXMTq3jrVby_QUq_5Xf3boYoRAnI3yMNeAAj8SBuePGMIiswZiKxEZpGhvpkWpgmcC7fDz4G-eHfNopScLOxJSb9TD6eEpDMbSS88VdRpBn0HoE70HD77t2LJ1maPEBm00l30v3nnfYJW46l9izhrBO9anYGD7u7yoR7aDwbIZwCNKQ80UBqp3vhrPIFVptjVYsHiO5zKTGD3wjaI2U5uy1McwzXCSJR2e1f3qFm3_1AKf76J0uoLA9JKqHBdtIt6VoDfOErIl0ejJL0AI1JfcvIelm4CXIA0agJ7NwDrFyxCBLY4_JEHVb9LoUO4YhLx7pXZ53DkufPCcaMSkoXFIo7T6C4pbLqFi_IdNxvyJvtmDahCVi90c7LQ6ssdexwjzwiNxqAZySgtI9wwObu6cvqfiax6PTjcVU9ZnCOaImuE_jJRWLB8c9585dz2ovwSKQbSXVINbKlwABYC-7cIq6_A6lyKFJWx-D2qEkAHsUVOM6K6Dk0IWkQdAdUFDXbQ7qIV8KDzmSnbbjCZ_ZWfLC5O-wbma1kCZzv2a4uhtG3ff7_2aDu6Fut-p3IwtYxhoNOCtuf8vKTE0jDUq4Y4v5evylJwMadrL-x0lpM59qQOItYJ5aOCsG0xmsEPLDdJSWjkB-Ql0OzaiLoCN8yC1L0JMXKOIWGrgxrDXHblXoQcw0SnfBtBCKPUmCkxJ074yXGFlUHpL0jeXDreweZKMJpV03Y-nS0oj6DV-fu0X839LtqpJ1H67OSzbF59y33OHUtCbqad3ukEb0W-P1N-8f4MQV2-bqsf5oLEXXTz_aoFFeLFcr1_rotyIkX2POtq4L4uceg2YYiItZ-gJRmqhqnCrBomprtpSw8fUuNOcpfKACUDf4UZf7ZjQZ2t_MmO6QmWJf_2wW9VU635VSSsXKgtfneiptHR3RpPb6Gcpt17F6-cFOXfWEKwDGp0YOCUPPLFxsNIE1LTWxDN7jbiG1-CACAq3HWHh4Y_Wmpr1uXdByNdxsQW0Mw0elM91Xkn3-EJ4hui2J3zbCY7h_sZGcaylEWcDfoLR2NsuPSXzu_owW4UcTITOYKoffK-02R2oOSCeXFs7Ul--G90PWNb1cd2rfQWwAAxbDUY-uDxGrV86Es5WQmP_rkBO-7eF8xuD9LNA149vDo_4FqHAygHTfHWilUNK84UWkAwcJU0-t5IzjxXEXuecWrLW-XF5wxWjKqGUWm9KIr7yBSw_Uj_afQqkzlHzOW8qqYPW50d8QFoJrt8IcIbXbbTbTH-1grewTG-JhdDeodZfPonfvptiA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6735fc16c19903-28160956','','','2024-11-14 13:33:43','2024-11-14 13:33:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41590',0,'cd-form-entry','',0),(41591,0,'2024-11-14 13:38:15','0000-00-00 00:00:00','{\"email\":\"evangelinastefanach@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"10000\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA3Na5BhAZEiwAzrfagGR3-cjqYUGXnLLz44qX0s4OLUZZq7wiAiSIqqGxHaIZOkOM3aBx2RoCdnoQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4C6pJxqpfvb_1Qo0uh919_YyAXlWbtdNfcGuGdQRGvzgnXpkKZsfUCBwek2IZeba4--atzqToELNFyK1RVWRg-NMvhikKCI-Vif59-lSQ4AIMHm8PVhfYU7HpbY2BpjRC6Hf5rZDPv_chSFBXj_hYmhApsXsAYD9b-l1sODnqGchFAFJJdUcSeTWefdqCZahfCQcAcsd85RgeN7S-PrPEUNZHyM6eXP12D163FlZsddthE6o6_HiDBhUJaykwvb6DUe1OYOCmnlFTABvRL7PnplHvwLzVA5EsLMAAf5RajcCm_zSrdq6Us3Sky262LynpwEZwjBSEDMQ3bTuQUjgfRCh3lbNnJ3VO1vJpH0HDc0USE1XMdBJ_7AAj4zoNvGazXNdvwopky6BrzbKuI4jSUHvwMqrY56tmAYgZZHDl0d2_4k3wcAqXWoz97vMZXHDetk-BeAfjgiBoP6nQ3vbXdIwSvHRm7lcKUpPjIvcs2mZzjercdlbylhh3_GxHC-lCGR9aTiLx70YkzcGP4evIv_SYWEXu9BLvzDhuwh9ql7xXS-fMbQi2GVGNN6DM01XlEqeEqgzWJpG3z1kdBKK9mHmTg3kp5oIDC8UQGk4ajfvGRukC0OKdgnUAnNoMy2Csm9Iwcmdn32g-SUS8NzBY4FPPOT44dnaEbO_EUXcuwUst1lSoAF9AnzsTpZOTpmG7yZaG7cKV-i9Ox9zR9fCqWL8CxQjJbCq3YCPfnjo9vnn2A8fIup_tQtdI7zP53pbBioe9N0hKh3Hr2yA2rKf8m_r1p12mkjcrbzYCEZ03ojSDER0W1g7LCumnhMcqt_N1XL4knnXhtceE-hIjdiOGRsCEVtW5mX9AJ2nusMtvkQWkLi1c6P673xXWGARqt8h_lTQhDEGHgowem0fNeDJt0HOtibAlb9ZEMn5edR1M0mAdCSsv6SavNkkcfFRsNcsUHNGZgP277i32oniYYx7yfZKHPLxcJhRlQaCXGmoQAIuDTG3OmXlLdZKSnmBU88l1ibKjGvhUqCkzTqbe7reAYpsX7zOuT4GCj5BzMP6KkYi9HhEZfdv2WzI1a9jgU_rJPdLmuMEb_kEgajxsJ8Nt27URK23_m-Va2lUh95bS07jR18wqhg5uIaKbxShIsUOp_utd7olSAYbN5J9muMSpKduD_Rt0S6ABxwxSFsPkQCyIG_ySYd8_oz8PorwN5gbWG-evKhH_IoQumsJfpWkjH378jp4xoT5KwDkHUucf0spIfDabD4pW0Z5SnP5QPJbUZ-V_ujJye2n0qfvpvcS8mjgIyrJIxjBYHyzegBk8NJ0szgzpZKY6oeysKKJCj2LG3SDc-MpBFtIoXwLTKZDnRd4ab7bive9lxaUzEjlYClp_edVNeaCwMCHyOOV0fTZ2pVPU2OaDCEZ387wx3DLWqGQ2SxlVCv8Oe9AxPTU6J3x3FlGeFzFbkxzzEzglhzKsztxiUwsvc8xvwMUmXJXADArm52ofk9QOQXqmgfCqZdTnz1EJdRru8lcweHyOk9Zcev1olC6k2RxoY0-6hefp4hCyDlv3I9QKQeaG7xRAPJkv1b7D7u6oo-jJLOLjKIWmujUoW-A-rWzHvqtRODzu2lT8LCE5E_Aexkqm-1FtRGrx0myw9jUQIWuowtFVm213HlrSeKKToXK8YLNInr3NmUB_VSJ6TZ9_PzZJOSyz_FlNMDrPkxSNdmYTz10w72bNqG5mzq9TAoVXnLnFs5ZdgqqbwTcYLR1nqiaJ8g2ZF2BYL0tjg9IysLf9D8MAqBpg7FqB78LJSeoarMzzV6MkrxjwNBW6RJpEpaxXk9IBWeMtfejon1YiTYxB-zv6HhNv1uDWN_o9fmqciu2TcscED3M99-x1tctyyLUfMu6oJnUl5pnMV4gP0ulK-Dvq_55B_vPx9lEL_PjxGDqWY1fhwkaIbiw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6735fd445fe0c7-74702678','','','2024-11-14 13:38:15','2024-11-14 13:38:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41591',0,'cd-form-entry','',0),(41592,0,'2024-11-14 13:47:42','0000-00-00 00:00:00','{\"firstname\":\"iguerh\",\"lastname\":\"fsef\",\"email\":\"me@me.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA590qfJOsKlwC3hP7uDZne6j98S_S8fSw6wVzsWyT9KAzNosZJYqLssXQ8wGx-eyLgJeSb7lQ5igqWMTKQLZnv6kCqut2N7t_ItA19Dk7UIojho_4_uDjOoTswVbnUaFqoCWfnWmQExZjwrYc6eFollOrQl-SFY1e4TVGeg3-WsM17MpvirNIbKL5mRXxuZ8s5NFJenU5HLHwa7W0Ih2Drw9CQao0uONsZJz3QuGvXjP_QoAyIco4IYbvJxTsf_J7MFEbOV2JXw_jKxS9PoK4-VdMm7J4YrJOBgfsUIdmsnp8o_VcHUSxVpQtJNrrwjI-ARGXMzXx32dl2MwR0fEkmWYiTdN3GONWjWINmXs3mHm98EpTwULl7_wV4AEZMCx78ST5Kz6ZroLb1B0E8PAYJMTnxB0mkQhl6k6J5QCXkcrMezcjtWB-CfWbcgcxXP91t3Mv8L26It0pMEWRTIb6kgCnC9abQfeiB7Exg18smbnJ8B0Vj7s2EcuAz0GkFVonVz_d_oIcyAhDdJglER_AAGdF07c2Wk8Y4-y1YrY1kRyV5kvVJMBTEE_QtlSS3k7s4Sgd7tpYdjrRy72rPBkcNgvLJjwheGRjFFmGT0QlIYFCT-oCIVvvDoQIjH9Mc5tX4b-RGLYaAXtVPoR075gQQcyG047VpHkzws1qDl25e05hS06vFhE1FK3_2fT52G2iivCVpKz2QZnt6Az1sLxCeAqHq6yjRChjUdtsbaRrFgcEEfkFF6NP_YicYPIOLWCxCgbPzf4XSK9XaMnIpMvd-eO1fSxGYqwTHta81fBjIGBDDf3LTCqwzuhocmOZRLIQYOHS-HhzogXU0BSt2VvK_rkn9K8T7pay6oIyzcIa2DLbzFofKifR3ehnEDhJyYxPxci2j7XIsqB-kWamNHfAvrX-quJ1OLKwpX4kcBAfT6IGz0VMO__DY9OjKgipma4TS82HIimNs_aMwYX8ks_ONUdVpVfYawVoP5Fw7V8yrT6z7NKWsAG0QIaVd42hK3w_my4xMdgX3OK_hY9h8GXN3aLVXrfwXPd7dxMRu82PmPLu9Dh4bjm7tgBAffsv1UUelkl4JLzNoQ6zzlWRD4gbpIAGwzLZBPIogROeejsGznByegB1Brmac1cxM2C0Kln_y8uGjJPLRGGpEDv-TDtRQM3ULmwtBC9UYuLFU4IVwWCR-_kcaTM4-oA1UC7tvdlLnqa8jz5y7clDnMLEZBCKBNREdBN-_2ALcterVu2wsFpGXh57_bdceeFYedo6dXEYLQ1fuTRffS4JMuAqMedJ48Uqm2h3v3KUc0j6VSP1nWe7wpHWNy2NxRE3tUI2mx2F8EYlaPQuAVQqhV4HINf2bkIIA3fKQJdbMhOmms-yAt-93D7gDhnndBTLaPhz8xQowjewTPeweX0X-rdAWITb1RCnWW9WD6H7rArqX5D6wTlkHwklPGfeeG9P8XbS-u6ZSFv7orbttiKGZPB70M6dR4qZRNmYTJtKGa7IbKAWTU4sMQhMI1UKC_egdwdlWQlMkUXpvfKw4hJYjBn2j11aiL8fuHnhn79f7IKpy0ZSQqG40lIUtr7pSf8wkIVLcX_Q-UWnDW6KYOjpOi2M69KTKLkv-i7JplmFE0VQgrBn83UY9sL8MAM7P6OqjkHkcHLyAuczZ7PtgHaNpkVDeIILeE4Ci3GpzKOJoke0g6pYRTsaj0p5YBRE-PSAIyZC8vtCKsxb5Ogm1snWJW2ZvbXF6d7JtBDQAdMcu80Z1CyI2c7CbQFsdELjCTVaT8qaqZk7TQT3NzrgSiBRjHdxqj6dT6c83dXpAPIjQRlG_SZvqJRcWIsG1piS_MXB5XbZtk9Gdd6VFk4iH283futKxw4ZM363cXen3NkPyYCX0u60p_a-6UBbSONabVEyb6lP609fCPGYBpdtBZ02cIKG1Ei7UN_F8t8g\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6735ff7ebdf631-08549723','','','2024-11-14 13:47:42','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41592',0,'cd-form-entry','',0),(41593,0,'2024-11-15 10:28:01','2024-11-15 10:28:01','{\"firstname\":\"Louis\",\"lastname\":\"Busschaert\",\"email\":\"louis@unitpersonaltraining.be\",\"contactnumber\":\"0032472627972\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vgqIvVvFGTSAG9GvJOR3XL1&amp;gclid=Cj0KCQiA_9u5BhCUARIsABbMSPuJrcnQ_Hnekd65L3QT865jwf7yn9Qyo5sj0xceHX1n2c-k3WBpOG0aAtuuEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7AHhApRqOlda8PHdapnAHkDfnAB4oaTw6sOveogQbnrdriS--O-D5M-qG6EZdhf3jAyoXfE-xWi_S23-NfK7TZBTPInypQhHnpAcnt3118ks_KmnxlCKwiDxw5-_oDFjMtcVl4lZ4Zltxp9ZspWg6RGoWb9yI_w3lMNmTpTFk5aTllBuYqK9Gdqd2mc1jEoXUIxcbXxxOqI5OU3KixONoYmDCKN6ynCh_u1hqMlkTCM-rDANnancq43Cl5s2eW6qRJyrKWsOGa_qAeIIh4OJ6w1kKJQ-ziw-hjDY0Zz9hfOWJuJafIpNxCBKNsjMWuril60PQUIzGhc6o7G5kDQCjrEiOplxikA7rOG_TlxqnIkW_ASf8qOjXbDA8x9sUZTE_lUSVPLxLKdzW-ZwChHBNljtVejdDZ-G53qIV8H_VWpsQNWTjRh_S0rpBx5_fBvbNyj7ZxzM9YGQ0p_LVH97Wl4KRSCOYgrMRiyI8dN7ZZO3V2ke_ALJyXp2glWeqFr7Uk5_TBDCkKwjS5T-gZXi8oPuwCk25XHrV2GdEc1JLE4kmUbH4yTI_rtnC7Cauh0DhDsA4a-4nFnBOsQ89_haJ_zisIY9zuLcEPjQDcMKwGPkOzIPyygHbjCBfJs-iJPidpsb0gpfl-DP8BsBW20FvacZzN5sOiBH5mAMJj5e3HStKa1Lli8FbjOgnyxLT45QTkUrkCq9QQ3hINNTK4La-NBg0_HsWYkJXFXNWG3g3jaszZsOx8flEhuBRABOS_lk6g1ynJgGz-4eZdOJi9q4JfghUxkHzZoNGx_zULe-2l8Q40spHROVZhGzY6ixWtjXnV_l1pBwm1MztLumE0YNEj7T7ihC3GIlquXceDjIuP92ViBVOrMN7pvhASDcJw6Jih8Oht2K8y5WP-OWqKpPtULHddn8KxUvGYmbTE5ohSVcyqvtuy_8m2prspw_g_1exuYa7jayiiOw9TIhai8Vsu-nrUhlfTyaOiD0Rolgl5J7nG1c72cd1ASc-SHYdpmw4lkkWC4RnkVJOtgzh00nk_64YSLxrmpAzeaVBAbk8b3EHx3iwgndfN7-Vz521u5sNHHAKXo2voTFhMibOT738s4oVeq_cUT6JZ5MVbQJu1VktS95phQ0jxVKdrTuhn3W4vivrO6HrbquLHKRKz4Q90C1frWGAIINIET_kJGjrFiBWZ3N1KM8EYac3NujdJOrwxjSLq9nldMV5cjCm-aOkSxFthUhDiL1viEvtNABmulHaedrvOSS3_AO3UyNeyYCAU3t_mKW7cFq2_04pkj_bLgpwktxem_u3_x1otAWivdIWZBhF__nwCSuT9podSR-WcyHfyXX3tkwNemWbLrmzISc_6ouPaLCQ11DlI-0Fqf4O3rlc5rJ-NpCKbWpfRaj3Jvqy0WIy80RyFgKeI8bFxpPHWWpxGGfTpCJVdiFWSTuMlj0LU_AcX5XPNWduHQmxwtWgpPERbKNFAb8ae1R4B8mfcK5AbsLzT4c6nQ9nXFaX24AOnc4arrFTMVd885zHTdSBXE1IYbFbwxwQs8Nkr0ZKUe_FSJi7ZDLVNsK6b5G9Iav0mFEOa8-HT4Ky5DkrdBlSGNWQX9C8G0VeeB7OK5EFdcuLuHTfQTXx3zYbClTo5sTHsgmxp-eWj3Px4_BLKfi4z6-nYC2UH1kzcgkAm_rIv3-eXL6VhosUGGkidXUh4rhKU88kcw14OLH6kqOsZriMZ_WXwXvRUUbNe6qtYDM8xhq-_c1qknhTJOPtITPtwfSC5o2aAc7EtMq6vBsq-4EXfyWwEQsO3BM8EB46E2EmuJO0NxNj6Y-YGh6AsREdeuUanOIzA6NQiiBVZsb4tlF0qkOOn-Fc89mi0tueCK-g0RRdzVevPa080CQgycMvV3WcyhArbAzyGEOsKdXLjgdT2-bwpfqKPYNOrGmPW5ffvk5P4oDJM5pzcNNnBc9c8vKxOVMVfKSOx73FYJ0UD3e_rLYm89B3V1rL3EMh7AMy5ODoLF7Y2FJn6HixohrxHZ-k\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673722293608c1-12210618','','','2024-11-15 10:28:01','2024-11-15 10:28:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41593',0,'cd-form-entry','',0),(41598,3,'2024-11-15 10:42:38','2024-11-15 10:42:38','','Biomechanics for Strength and Conditioning Coaches','','publish','closed','closed','','biomechanics-for-strength-and-conditioning-coaches','','','2024-11-15 10:59:45','2024-11-15 10:59:45','',0,'https://biomechanicseducation.com/courses/%course-cat%/biomechanics-for-sports-massage-therapists-copy/',0,'course','',0),(41599,3,'2024-11-15 10:43:25','2024-11-15 10:43:25','','Biomechanics for Sports Massage Therapists Copy','','inherit','closed','closed','','41598-revision-v1','','','2024-11-15 10:43:25','2024-11-15 10:43:25','',41598,'https://biomechanicseducation.com/?p=41599',0,'revision','',0),(41601,3,'2024-11-15 10:56:31','2024-11-15 10:56:31','','Biomechanics for Strength and Conditioning Coaches','','inherit','closed','closed','','41598-revision-v1','','','2024-11-15 10:56:31','2024-11-15 10:56:31','',41598,'https://biomechanicseducation.com/?p=41601',0,'revision','',0),(41602,3,'2024-11-15 10:56:55','2024-11-15 10:56:55','','Biomechanics for Strength and Conditioning Coaches','','inherit','closed','closed','','41598-revision-v1','','','2024-11-15 10:56:55','2024-11-15 10:56:55','',41598,'https://biomechanicseducation.com/?p=41602',0,'revision','',0),(41603,3,'2024-11-15 10:57:18','2024-11-15 10:57:18','','Biomechanics for Strength and Conditioning Coaches','','inherit','closed','closed','','41598-revision-v1','','','2024-11-15 10:57:18','2024-11-15 10:57:18','',41598,'https://biomechanicseducation.com/?p=41603',0,'revision','',0),(41604,3,'2024-11-15 10:58:47','2024-11-15 10:58:47','','Biomechanics for Strength and Conditioning Coaches','','inherit','closed','closed','','41598-revision-v1','','','2024-11-15 10:58:47','2024-11-15 10:58:47','',41598,'https://biomechanicseducation.com/?p=41604',0,'revision','',0),(41605,3,'2025-04-08 11:53:55','2024-11-15 12:27:54','','ELCAS Courses – Training for the Armed Forces','','publish','closed','closed','','elcas-courses-training-for-the-armed-forces','','','2025-04-08 11:53:55','2025-04-08 11:53:55','',0,'https://biomechanicseducation.com/?p=41605',25,'nav_menu_item','',0),(41607,0,'2024-11-15 17:56:12','2024-11-15 17:56:12','{\"firstname\":\"u0645u0647u062fu06ccu0647\",\"lastname\":\"u0645u062du0628 u0632u0627u062fu0647\",\"email\":\"Mahdieh.mohebzadeh@gmail.com\",\"contactnumber\":\"09190142609\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA_9u5BhCUARIsABbMSPurv88OKvWg_lTulL5dBVp1iLHv-lVJn-DZZ8f9Au17B44LIkeLUtkaAhbWEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6EGPbpnydC32LlahpqFIQ9hU1AiEif4vsCBPZkAujV_gxmiMFQxkMODa3eYTq2Pr8K1M49lOqxlrAOaqurUuEdg9cGHapdkFbahvkexuFf1DW68lw9W1reymLA4schmh4SaZHGmVV5_r9tH98KxrE0pO4D9PAEpdmtFMgmgfyUog1dhv-_pCO0bPtV3jUWXXwof0D6jYWPzmfs7OHHr6bDCjMFnA2jNLor3MPD0PMFOFOJdy8aX5I6ho05rpgRhViEOAUobZ5Pqz79aeybpf_i0OY_RbBZ2pndvicYc81yY_lE1v3ZuHxrNE_rzz0SDJhrbQnckuBcRiOTkZiFl28Vze8A5xU-tfK9ZK0MEb4hpZy1ZpGevAmWRQ4-kU0K47l1-IXbmAtBCQE318-7Bqq2xskLIsY4K7ulAtFoP87gMp-pYyxRZ3sLzTu6e6MHll4v7nh969NyxzS6Oo93937a3hQMFGi9V3_YaN0EQWgEmQmAN9V4XC95b4Nllm4TYucCmg2FlsP4ei4sx_uY3cz46-Ub4BeTb-BLijBMi_ZZgKRZzecLaMHMtJk8MXnzCP_dvS3e8vupondQ23Dq_LyCAH4_0BAJ2iXjIp8-PhXMXQqekO_LdVsEESj6irYNrvBXfrV_s5sVQvMa1eZOzTREhDqUvrprvWyfETvaBLP4TfZ_FaGPaK8jpJJtk9kcqzzgvIegkAjcL6vP3Mnk6qDl_xZbgb12-xZCYHYdGmf0gjJwmVWhmoy1Q_N1Su_w8jijL_emAGPu0CdF6tpBGDQDddYHSBlmvsF8PkRQ5HmySEW0OtthYOaSQCb4jvKJ-B_P_i6HZ31X5Yisl9KGkg5Q9cRPSr0_ueutaF8SSLVOzc1pylUVpMCdpS0VmY14XuuIYDuVNdvR71udPSma1dkDeHC5f1Vmnajz3eDXwHhK8Axt4-EFtbXwYjrOWpCcl0QFBNr7Lls-jywEHl8OdHykY8vhEbVjeJtfayZ3rRKkgo2rPpx5tzVPJxe5zOPPtw8L1gZEN-HKL7yWca2sTJ3lzhN1GZlYZAtK4HbDzE41atXzV8dv14oXeCyH1qjHzHCL8uOeyEUYQ6WddNfGODQX7ZNne6b_QUSesPKragBPaRUVx4RUs3yKjtkPkVhype114tkRvXmJbzRpcLU03OmUYutRkGWw6RWPeTg8oFEGuG2rn6I1MYSgz76jJuY3ZO6PJDpJ0laaYnVvCnuDfauyMy5AU_EcXfG7O7X1qpSL3eUiL5cObdbvKBTozARBzXv_AljDHsjpwom9ibLZ2tMRc-NkwHFjELGK40yoLHTNW5WMUJpJoaYBjWCvgd2H4tza8fSISdK2fRFAYEND8A3YMKwJ5M_CrFoB4BliNpHosOFIEDDKa6SuNOZbpseidp9gq0MN_DX5vp8_IG-yuaUMZE8bLpO08pxNC3cIoULcE9SEE0MXJU0lkWoWqYMKzOtPn0M5z4Ta2O_oj2rTZ9vUdj2I4obGI2_md0x1Fq3clScVlPwKkLRcNgNYjSJGNX7BS-r93wChWwNRzqiQflcxfGxBd92eQYPxBaARTHC1w__C2uEFVOkENpEyQPcuKkE-tIX1OiSukPs7zNkAkPC9w6GsTdZzJ6z8GdtHRB8E3OlQ4weoim9NvuxcD2WDXVIX2KHDYeJYpbrmCKJLAzLBi0j54629mYtv7bEvuACgrzdxXiSoMXNzAO7CrBU6iexQE7dnMnb-4_dYqS8NmGBc-MbyGH6_8Y49-9RtecNj2lwPpZM72uvNvvkT0ZZOEovtwrb9JugUQftTB7s2DLQe4Lyaw0zHebijTzc-owGYsLUXk8ySJRYvoFtFRTSZvBppZiY4QJ_yH7vrVLByHAg5-dHenXDf9T4MghCnBUzZZxOePqHHU7su1sKtAlA1f5Do3tBQA2VCran29TxPQRM5iCqH2Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67378b2a8d23b3-40178976','','','2024-11-15 17:56:12','2024-11-15 17:56:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41607',0,'cd-form-entry','',0),(41608,0,'2024-11-15 21:20:07','2024-11-15 21:20:07','{\"firstname\":\"A\",\"lastname\":\"M\",\"email\":\"a_morari@yahoo.com\",\"contactnumber\":\"07455629784\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5P1LjVZFfxSfJONiYovxGYTgEFk9XX7eV3XtPuOw7yS3mNP811zfV1ScZ3G93EdbZziFbthJcRyaMDeSsLE17pOOmuPm1lH1eSzbGq6xHhoZ8jlq0-SAQVpU9cGoJOY9lGqSPbh9Ms8aDykwMUa276RQxnqkYPdxxC_ncZw1NzCUb9P2ZxpIttSLYLhSgAy5sIjXaBmKnsp6JdVfU8UThYCLygWryV2rxjmKOiMGbut9Co_gCHEdUp08yDqBPkxKEubmBKO723N9SvOUrrATVJT_tTkq5sLHFAWGYHg_j_nZOZtgBaWOIlyc0M4NOJRuwmP-Z4bPEvuzLMJKvk1tKNet9s-H-TJM4aKPNvO0w0ugYEnkHiauagf-HxH3DfrRwYX7SunAqT4Cru5uMCLFKp4_zoURf33IrUOr0X3hGd3anWM9plfl6BVM59Xqy0G-9xHeV6auKgxBzlxjARVBcQFVJrN3mSKqLKryD3K8p5gwoSeiqZkb-G1nBQttzyztDGGP0gWTk2inrgLt8brDfHavGR8Gqp3-1j81BAv0vSbMUJgZl9okK74Map7wTi3W0PbbbIezFphCTr2O3HemX2Ki9Rl0rqDUHL1gQR-ziBFykX87J-ssMupCjNAo9SOFlL2-xXlfRugPFhfs8YYOZVJch08VgDjddksKmRWEQaZrJK8sN_9rm0FTzvWDRfSdZuc78Prmzq2EEAcn7XqaqonW5GLLGs1kvyni6b7uSFY-Q0U7SLVApRvxblikuFRDNQlCQ2Hz1m_6_rSpZ5jHWnSWdNZI5qZ1vlGvu9Y8c61ZQSqSUVJDxBcQf-1PfxMiyfmkzfJKJSMLBQtXJ_0vYi_dbgRVyCjazyxGUYL604oZSAgV-Tz2W8_H-jLi0HGcIN2V_14NbixJ_sm3mvDThWFatiu2pJG0CUgo6Ymv9VYbsSo03JbeZgPJuB0zz2D-_GwXNXUQq0HX4b1Hqj4ddMOmAihnxnggf_ynim-7MH7o_Mq5nu39c6VUZ45L7UJ8aPB8V_gRS5hArK4bVYrNMuqpcukiDNi_NYuujmdHjeXMezgCqKPjKXxZVK2uyLPUJKqQfglycpRT0Z2nScDnQs0zSd6CrTfPs6v7P-PXHPnfwydbkbM77mAQ7b9b2Zzb0-OY0drpn5gymJJV_d9baMtveRNyoQ0YkNn8IGnMnFly_RvF6ovqpUaUWKv-GUWfKrF1ZGXWrN6o3STRntVG56T22dlrM5XPL3kNTrHWZ9ixiK9folIWK2XVY4grjPTHMMq3Uw9JWVF9MKYHoIaShyWYUNbmIx1RKYNnwEKD9d76I4UxltUOuMw4OXJLLSSE0feX3LeNokm_ym12h1B3eu7x_dlV-gutxlZCg4Pnpwaw-5ZTfyCPsV3McPsOI7QlMPkOlz3tKlU_QN5sgNT8IMXNqeyqBxD05vvQjB4T2l02e7bjuSgTyAyCf30dd_qhv2jZtXngZV_iGtatDSgQaFtNKAQ3TucK0QapIb7_y0Y4ZdGYtY52X3EWITFEh4W8U18kRYznkpTugJdqRnPnCe7sbr4kKLhKx43gCMmyA7zqxYXHMTvUVMcqQsbTAFEn3kwJVO5yTxN4ROxJRjOCWmSwC8MXB1-qi_kYk-9a64RoxUHGU2nYjB7m6DgSsa-ZoV_XcgtPr9S9TzjlPwb6ZCj64tUVn4Y1E5n5qCt40DDnNMEf89mtG0pIfeNrGH56AiW32lnZiWvX_SflGfjvmdJGp3eMYPtiQBHK-d6EeYILSmZrXXcTobypS-wRRAjKrTrRDQ1w8jDP1_KaKtZZFfIhcJKhkrfTlMD5gQT7yY4Wfe2Z7nE-3NXDZYQg1fzQO4Q7AcbcdrqNFQqmvlNw2X5RQBOEAxLOz2pSuTKgBc78UVBB8rM4xQXl6WF_oUEq5mx7GSlZwABYNvPIaWHBhOMDLSAw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6737bafc10e4e7-21457889','','','2024-11-15 21:20:07','2024-11-15 21:20:07','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41608',0,'cd-form-entry','',0),(41609,0,'2024-11-16 23:08:59','0000-00-00 00:00:00','{\"firstname\":\"Rosh\",\"lastname\":\"Haines\",\"email\":\"popitschildcare7@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4EqGj2jrmWI7ZSqARH7p8UzoSRsQZKkAj7MaG5RnIjYyGeXy2lkPUx-l7pjJ34HbX3nBJXTotWU8LAjqBY39jC9HSRBEJN7Ij9w5PeDZktmgaxt4PQ95IT56F-BO7A24eocnTlsJUP8-tf_t4K4ThgPv1Aq89U6nmY5F_JUAiUB9_ytHgWfT3wxCqQSd1MmpmwdUBeMFoozi8OTPbGIW8NM_80-tOoejePRWLheO-LnQh39s9EDNnSIMsY_SiZpfzLUgX86tQETAaSjEa1oW54REDJg6SjP9yphsyOo4CShbM5VcAu4_2OQExZ2KfAmvk7RpKGMCDn8A6W0JcCBTHajlXgahFaqgL4W1TfmEpFMjLgvINaAD1GE-eT9hA0uArQl5R3GNVvgChK74cGIUz8JT_ZmF_ZvPoo_A76Cd9Cc_hr3D3R5UXc-MrafHQ8EQUJPDjSnr_N1CVz-tOVKOwIN6WRechrFH8wqjf1Ss2MkIK0nHylJ1Di-PjJszHLEif4iUjQoIumMj8xTcz9hNAeBKZNbvpvzG8NBqTVOIpNQ_y-iZZvzjPxOukbIeO7AGU0lE9CaWX-0LtS1iARt9LiH0oKG2szA__3a10tkV7dUpsOlAXquwpaFm2ogDS5konjCGeoJlhj58caAQXAJcPDzwCzPp4gfLlSNKa4hbuZyPVyh3ozARY1Nf5qQKE_CCZSx6LjJH62HktYpn_hDVKjJOWHEaoMijTi5_NjWxHib85MX2fAZgwFfg6DZht1YtBH_y-HaNvIi-3g2hJt37dj7v2tSc3WIeJfou3FHrmtD_zt1qrcMGDSFueQttjgrtAaeoA67TeV321UlaLUo6ImAqtkjMB3PgzHA7ABku2sBMUkG2P_F1GPRXn6vqbgWiCPS26R8kf6Cy1VM6KemlMNjY2hd4v1AGuWENw5w_Cz8gLPOg93-jbR4vwH16Uo_HRtrcXjq0aMSMUrtarF4xe4GPK6Tfd_rix6CUbgEP9IKSt5xLB-jmASi3VEwhnqfEOkWq3GitXq7sU1pr3is5uUrHALePNNMlb_v1rX3B4Tvqs5s7_Hpkz_xwF4hKHRN7qmgoHr2yER02JtrJ08QMxHOT_v3_XTB3965eoy1qNIjhkxVzSNnXGP-UUXgi2TAhvAqqDJIbaeg4vx9I6FTzXO6RgF7ewdSIN0lFmSPpGUEng0ped5v-s070N8bRinlGr-_DyjoPAfwxNIVkaYfnXBXFq6G7O8Ra6qJo8dY8Z9gi3kI4sT2M3l_PVLOLcJhLIechLzeW7iiPD9m6cSPYDCFDgcFNP6n5WsZ9BXA7FTdMWeLjNPLOPJD1G45fZbFYa21VVbFhDeTmdQKkKUxNsKzKdLt2FeodIxN4jmeue14FiBJc0awCRqz2pnz8mlnWaEaHyRsQ_tlnegXcaei-IHJmqaQxMM9ZEsadXZoaFFb1MtqHJX0guYzIwmijxh0QgnQWsqKR-dL12LquuZFxTYc8TEW1uQ9FvnrO1xwksrF_oqYpuEEd519dx1vbxvzC7gPAt8UgSyKjSjcPPgCKANnMKgOcp9Vmx1g-B_4y0ClF_n8axO8y2LvF4gfGP_Vdahee9RuAnd8s5hzvAMWlkhqJupYIWlqv4IqL-hqrlLFP2LMgZmsfbPN-EX5bTtL2rNBm-QzgDXPx1ZJEMQ08OzdVug3ADmbOIkL2-oQhDYdAypjKyBfli8jQgZDDd6B51cLNRhGj8U1Q4ax1-umZHTKWhEClTC14-7OILx6T2tTfEXgi-iHrsL-xngK7wS1K8_jlffimkxYR21__DoC0d2YT5pG2s-yM3dBug8XfLunWQuQL-0LDvJQel4y9Vhlo_2NRRFlCVg23HVrvDDVgJeeMrRM-DNVmdblSmfmPCOMO6O5MH1J3gs8PZiomUteAwCbTIzB2G9X_svR4Xt9KrF1JJ0P0qV72wgpamFpXESf7J_KM7Ilj91AwAVcC-o7YFRklVa2djY1YVb_I8I7WZe-W_p9A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6739260021a502-63564792','','','2024-11-16 23:08:59','2024-11-16 23:08:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41609',0,'cd-form-entry','',0),(41610,0,'2024-11-17 03:09:34','2024-11-17 03:09:34','{\"firstname\":\"Satakshi\",\"lastname\":\"Garg\",\"email\":\"satakshigarg98@gmail.com\",\"contactnumber\":\"07407865441\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAouG5BhDBARIsAOc08RQjjJmGPo05ieUNCkrbLOxGUrvQEKYhnTGts1fOtqpXZDTtilHZdvEaApSrEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4l-MFx7KAzcxmLWlRHgrDMnwG47Hb1mMaBgqcPhgsX1YA0FSFMqDNZKkb_ahA69DQI22r4anzrHzGUnDM17H7N8QO42Dv8DZqwcEaMu_ANvWTVHjto-OhLXajbaOQRt736yFSxpwsnbqclkVDsWGmlmFrRytYtidXgAFa_lka1ZJjrfOkX--3usWluGS7ycD9bJWkFFzQ83L2BLuVw-tOKmd8OVyhCMrtx4_0d8WjdwgEbDuKVpxhtaosxb5iad8dpTl7UHon3JkkMtPc4arcORX5hvTispzrLGmlHNLVgC_8_BAmodf__S1CwbdClUZ0OSCI_cyNbCajfcrLhBjq4oKHxa4LMARyWLHYwO41SWf9ylBdpiHzsnbq1DKDIU7K34T-6enDVhG2su1VoSKXebkJfnLu2eBAqslbsu_twRvJvBBreLFn51oKziHQxpsuNV7Bk6xIi5OKdboM_bYNCA2Rzfwh03DrIvmTa98AHNQ4ewuXrI5xSJ4foeZXnoJ-BJGHyR2i5zjjtOIieZYmZeOX-ycFctn9RROHAnubAy7HYPe6-WMDoQvONfpACwFgcK4SoYeGSPXGqy-pzlqMmHksH_NvNQ33gKgmrd_em9iTUrW9VdlxxyN7y2H8k89H_aZQ8Cx-8umtQoAELKRLRxfNG5u9o8cBK-8OJ2KzHxJhF3E3T7dj54j7o5m2E9wHloxl_5jtMa4l4jWybW-H6Zp8dXnhhrKbMn-w8FtzqrUVUHpaMwFbizDc_qMTHcGRi7UrLZ6ks7pGLRUTFYjx_1fqymng3oX7IY9Rilc7ag9K6hhmZghwRPgd7HCGC8r7eUq46bS19bfR0hvRE0NISXqYnsfJk_RXmkyrX-iHK2-3-TGuwGwH_W8khcy6Us9IQ3SuguuSopHz2zOUL28jrAGC7qpnPs0M3G0NDU2NJX6sqQiU_pYYBA7D_LkvakkoqZZC77m_Livr2mMafui1tAkC0WWVD-W-74pDaeiPVgKbReCEwn0IBARMO3-_XriWEG2xxHNbK2-JU9dlBE5yqsnFxTMsNElC7S16LusgPzby_K-SCeWKf1HP9jrJkpVLzKZD7lBn_IT7mD8TU3dSExymrDWw9khUgHEZDndAME1cwc3fpug2_r8-uq5_MngU0HoZYDI8_Y1IJ7noZE3ICT9I20DPKEh4xuGiXGTljfr5HVIxVunDCUcPFfhD2hb4kPm9AWqeR9QM7vg6OLzIQb-QLI61cPOWhJ9nKc4Y9PbGqu-_034dSwwoxxoYf-amqClbnHnzd0zrqxR1TtaSRx48UFIeK-cH716mI7Hqb5Yx3KHG7qyaiv0v_WIvXgxVi_B68cjh8LWzz-0-DhP02eg2NCAY0JnE-OoUnkUURjaYQbUBZMu0zi8xTpWhe76l6om9xPB144PTLKhk8b_ivCzF9wkQgNRxf_UKt0XrkdA8_QiLfzLDX6oy9QP_IuGjp6reOi3IfHFPj8_DwR_Blrxg1eZwcduAYZbe8SUgtbtbt3nUtpzwz8_RocqUmPk10mt2GOeabs6vTQEPyx24pcLDS3Q7QBcj5a0FBbQFLsTJlhFWJg9PPdAwrgfE1SvqH3J8WvK0D0eVBiKwmt0LL3kWUK8vAkmutx3mqIL7RfxZEZg8GJtLph0tTTCFGvOpKjBtr87N5Y5rnZfchmk9wUvpB89Ty-Kh1c1KeQvRC1rvcC5H2hgjBVp6iCrIWuzMuVae0mbc0iGUTP4hc-MyYtaLSjj_CbPYXzkOHlVFMUF5SAwNcqLlosBjjq0HqLjSgdV3GeUHSH6f_UYx3o7CjBmo0ofVvqLdOQq-oFJFigXdL_IOlFCBBYt71sgcOuwj-_YOngrO3FcLc8ZFU-PRgMcTvMNxEnj3wrBbwQFZuKrhH1P1-CPW5eUGldmG8wmhDyW726bdurO4b9bDeFZ4TAW5CsV8TzJkCohdg1fVcCf8i6wV5CD4m6WfXcpJI04zFBcpNwS77Q2w16WkUlxwUlRVhYIjj72rOZFnuymXgP_INVCE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67395e2a9d35b3-58920578','','','2024-11-17 03:09:34','2024-11-17 03:09:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41610',0,'cd-form-entry','',0),(41611,0,'2024-11-17 16:08:49','2024-11-17 16:08:49','{\"firstname\":\"Ray\",\"lastname\":\"Rowlinson\",\"email\":\"rrowlinson@hotmail.com\",\"contactnumber\":\"07542647317\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5esNSA_oNXKmOUR8suyoLINiAGxLzPLUxRq6wBU73ryidyJBtVshZppHrbob59Rdt9D02-5GnGajhhli2PKzCSD4CBaDg3tQpLPVkv_WN76abb5zQHMj_G2tqxR6LTzXYvltoLotmnzkveqKEYsym5cnEDV5w_mLNNmj_T_TxFUCpo4JGgiaN8VYftGkO3qUVER4fLlrgJFeqlbo2SdhBLCdNk5lT9pBbs4dHojd0ouO5_kS2iKDaRV5ZheHd3-fS5v_c0r9Jmhu4Bi2KahuYD67OynYxw7NLqHMAu2mH2WRjjNb6RoVAImF6w_QvIAKODCgYQ1ofxfwHvTseigF4HlotJXhqepOPuxeG2CTHuQOZKzgZVnRxIK55mvqk7HfMjQrkbX0SBudM9l6RZf38xQJfpgbSEKKaJ1CbL0chpSRR47KHH4tULiwY2Vixxro2hsYRwoJrDoYg7iM1wIIa1oYQlVlnUvMiEY9gmQDENJ_CQpeZ7x2DIwD7e5TquQ15b2r48LjlBqJ_70byp3kxJ39WWB_kTebnLcpi1EmSrfYPg-9nCZt4tPiP5C6BKmSmNGA6Rsks7HCi79u2XiWh0mfjhlbr3Z2ItG8cI7KSDCMe2Uz4NwJwxmxfotw8sfjOYBmGz-Ne2qr7s9kNGLCipBhyaDqepdYbXfhLwIFzuS3_OQfy6W885-Cvb9z3ex9e2zQLsm8CYo_QMdDQjRXoA6BGI1xXjiy75jQsFWhvo-CfB1S9UK3ieHPDUBfJVeAN36ZocWB7zPYQllfdZynCdIvCr2cewd8ScKc7WZFNS3SplYSpCxfshReQ9S6tEjAF9o1jdfebiuQrz8gxl5QoSrp5AMQhn1S4I0mmv4ST8iCo3qiJ_xEmh4WtUku8oIhM_q3at4nrXiVVgEyM1SepZMsPyLKaPkad5UwkdQ9j9ykl_eceN-BOLm6CTmDBFN4Si74k14pDki7g7DxHUFs7bEHPHYk-Y8ahb6Xo90K3B6Z-InL-UQBd39EuHDU-187H_KMEB0Hv7ShXT8reAIENnFVz8awuqGt4JKYTX4ZgRRQ7LW5EIDwnKpeGy9LcchcJD8Ibi_gGE0zX9vzIBQZaAzLKfv-_f_K8ko4uGHQhlg2u-_1WhMeypgWSAM6QpY9pJFPRWOlLm15CA8ckYa4FE5sHz6ya6fupA2Ca75NEWLLsZUl49NhkN1wgWSFFTgFmyxO8Vs6Yqp9kAGzkFncQ1NEOc4mtpUZ0ijcRN-F1RkthRs3f-CA2lW1e6CdH7nhmowYzSJxLTZvX6_FNZmPbmQsNnFAqfSa8DvmZ5IA2WQ8CjSD0pwr9hVzLWrzycQYDZ_8z-59NmEjuPuecNXucYgYITt9TeJZJHRzkD2aPx0WHKHZA4bMXtP7AcaDVjIgoAVa93pGO4-Q3IHUVgBtcNeZmUffwN9uMiB8Be2W0vrnuVfPQ4bFTf47YHl0ct1hF2P8izylpB_31cTHgR_JFodeotU9LiUub99DHFur9KQvT1YlWUglXqRc3_DaW0gKOwJkCpUHWE1RVU-X5KfQKu5t-7JJqr2VlMCS-w3BNqI4oDnR0fNM7Q4DUxsiRYeV_aRh4U9BsGKZOzrWAciFmJIOGQE8gvAKdUgZAKPOndIzJg90Rpl4sYQSY_0TSRc6oQ_A3BkbVsKzToHfrZJKYb5MRahxy3B7ypkCycNe9PORkuGg2xqFv-IIIoZEm-GU3eCgc2--UUQ-wOAUZ6qcKD3wH5UkDaeJxhyCjsMyAZYeME3pgC7N2DfrdwQ4NP7RPLj6JbhMIMaNSUBnH-yQmaBvjJ-hntdptxrqjmIKnFYjn9QkOxXK6_UCpJzWzyhJKGLpaVnTIcJeZqhIUu0OrCtW0H-hHXq8eaj2GSle8fJ4BbQTCOqlB8mqQ8UjI7aNBbmKSzjgtJHGMoKajRULP-oHOrs5IvJHqFDKEEx_vVc9_0B-9jD9hQ9MWSrpbk-fa7UrBo2Dr_PKM7V6VeCrHEoJ-g0bQDuPjy0fKvlZuGfZIUJxAy2HaxB8_wlMBOXchcoGy65PMOC3HW8OOUNT-OZPg8I3QIIINcs2h23gHvvWJTGMj0v0A7ddNw3Hz9fKrxLjp1Ue_Uia3dhZdPLdahEI5yB_1tvwzPRcksprCdQgCJfAkqbStWIluo9BLUmsD8ZaWHmO24MOnHegZWjl0ZkVbJC66DXVdYFFQLFz9WWOXaLyWGDL-FmlFDzilzGzB9hZK81Q7d4HBxb4oN0TFAof4gvQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673a1503cebdb7-62142513','','','2024-11-17 16:08:49','2024-11-17 16:08:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41611',0,'cd-form-entry','',0),(41612,0,'2024-11-17 21:41:17','2024-11-17 21:41:17','{\"firstname\":\"Patrycja\",\"lastname\":\"Brodek\",\"email\":\"patrycja.pilates@gmail.com\",\"contactnumber\":\"+48664365217\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5ba6ImZUdiePw1--y7IHk5L2QoiAg6gApxHsnn-PmMwWpA-Lb2u8IpHRaF3u2YVqp2QZIUZWxzXFYAp0HObebVWpHJEBB8GtqVosgE5b0-Zt6ocj0G9f-gI2nAjZPqADpq2d3KxECv3bkyc9D_uXwO0ubQVpyFETHIDwLlCBgRHyvY_Fss-C17Cdzq-iis8jZZe5yHH3O09WqES-eEYhJurHcCVcqUfo9s6jMIlHFh4faP8mziX6SPQ66ezNWF-oM2oaFwbqQ3qbfJom73sbgAFFFFyURMgWpHcAEfsbXQ8DDKp91-lmH77xdHI1hyIvFITQN6RG-rm5JsVaDzEJPAKh-PbzfwGw_7uw8zMoxeydwJg8-06kt9HLx528MBLu4KuMi1RA2ukK4pVm_c3yl3ZWaTgGEseDMTRUpVgp0jHf57zGYbpahd73uw-23VCkzuqaZbHSsmUnDbHpfOKlxS1HpF2HA7F8Sg1JUUJVAuFUI9HfPI7Yj4DvxsxJhOAam3c_o-_8qhhCEAAzt-_lQeRFjKxZuFwNsYGo0lMUAt8v6Onk8hjNkGLXXmdeEDChftNWp92vmpL6D9E_41f0ddwt4tDWwyOvIZF4tngjcNS9rq4MhFhFXNRetlYY3TNuN8_LWp33ZGfzQG2YOT6wQWqjP0MdipfD4wrLrh9JGjublgOqDW7ElYVzE-q4vw-lLahpQ9lNfkflEUL_nE8QY-Ikh2AuZ5-Jo-NMarxzoOTJf-azFajwhvKdOYYru29VzQ5_ubClPb1kExgfzoXKkSeIVp6MJalB-SZCFrfD5PVy6riJkazZ9u1LEqd3_Hx1ZeBTFA2UkmAG7bOcVGX7EPWU_P4j7E0smg35AezVeO6dhzhjzrG-WEP3x6rGa8zoSteZudyJvFugUYgrF7PjNTRqTNIEcaGFeqczbVSkcrCMzUlgfi4MIdrmiI8pUKGDuHWdDIWquzlcoM6ceU4eA7EYDz6Uxt2rFXqyR49_g6sRzh1bI3ZCZtpBhL9dgLeNOkPGayzY7-rU0JZZf395_iWG-GJx0yu2_KKcLMf8EBAAF6AHv9aIzyiKW3GAFP_Ndgc54N7IulvAV0ASXUa5yqXzfVkuFbKMlCwhEnQ4xN_RSfbKTVgnWblLHnJ2ekJO9NiVvaXyvGtnr6MRBDavqC8PqaTrOLLdzfsGBRZK1xY_Uqx6RS8MIbVuqZYnt4-d1Rp1K_W0klUBNHj4Yzxv4IIh_mIBKFny57aFraquBGHl043eP85NhSiPqlfE499pZQpEKG_ByD8YYVTV4leFEQ-BlbqiWOVpZglqEEzLMn2wT5qVeRAM-rqAnOGYPIU4FmifFQCZG6JlLNyLi1_gre7epJmWmOOXL9SO-WRwpX3-zpoJEb9c3Rg2s3ptr9owIePsy1F2DAEk9UV2QDlQydHCpEJe9jbYV4-TUpfyqg1kh9E4dk3cfuXAXu3nRDbJojcc2xD8pNu9fZeIWGnLd-14bwwgJycpwr449zKouAud2xPXh5iNVLhNibCT6OHCeOEp2-bvJpe-SeNtOZvPGfMY0w4Nz6-MkaACeoc9_1xZn7o9XfNflYzbXEFoS45HZtHvn2BvENqumpLhEbnsQ43V4rv-4BuNyc5hMzL2dP4RCnKMOoIvY-z9DPjNxSx3htvaS86A22lqKZtLBOlKW8jWnyC9PWOYEmQYDLd3S4qa3ta3DACqt3PUkDtqyIQcT76Ys36_B5HN7MESr3yMl41GWEUO97RDw8XfWAwOqVh9Im_IvUtsHwR1ANQsf6BVlH_QOgj9w1NnbJvTzz67JoYrEV1mcVvSHcmkqWXWQ_0xWSbymXqF8o3Tl2s_4zNuJB60qXkjvVxStuGtNKzYMnWVMzvW5nb8bvu1aR9ttH5xqEEIrBvASO3lpXeJgub-oPgDE25Z8A_HmKUIEOo14betRrE8PEW0vNu8WBIiJ19ahjHrE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673a62ea800695-49159948','','','2024-11-17 21:41:17','2024-11-17 21:41:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41612',0,'cd-form-entry','',0),(41613,0,'2024-11-17 21:43:02','2024-11-17 21:43:02','{\"email\":\"patrycja.pilates@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"91-844\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4lcFWb5NkLECbHwfYjh5RuKBnAJ7YtP7tKv7jcd5MXw1L6HIpMPSd-gnIIbn2ApL72mNNz7OEPFpATbZMRGUlimfJ-umvQBXW5N02unPt-SjNVoJbwJTT5tECiLQlv8ZWPL8mcfuglzRA1Ez0YvWoQT7MI-qwhGiTTaChTD2dkv9bThO1jrL4CsUOdVzHH4n7oM_BApEL9TEhWkgtONtsZOn1fi6-ZwEpFcguFg3wB1Jo6OkUbAqWtJ_qtjVtz3xLL5F2K8wcgCdFqswf8hsTdI33Fqvgs3t66HBd2fjdCBJTzmXOkj9pOQpIrp_0diFRZ2gt9BPa7NhLT8LTjwLnycUvs3kUO1UlwuoRCtHKRk-8eabYovtYXc8K72N8Ig8_-NqVV6F1xAucJ2-G2XfX7Lu0wO78gdqOYu4K3-LiK1wkigrF2h8Gky7AVLeCmjTZDz0Tq1hw-0sgLPA-h0t755rUQxJd-2KWUcKjoRYur3OKvKe3y2Grro5ISrJLC60nhEgdxPJ2qpOutDoKVoswF5GC8Bz9IjOOQRmjH3XrAFViiMutueJKtP4gffy_0108j4IeHAERCQPgK_7UZqkV93oOrhi23I5JNEfJJ53cJPh8f1kpko0M4fY0ixkv_aGtRCaRFFzAC3jfuM9Nt5FV7QFgNVgFplD_q8tPg7hjMmA8Q7qlAzafgtJw1gYza2OQWRJuUTH8Crq8MVN7njQjv5AeDQBbqu-vZicIHzM71vy_TMNWAHzq3RiR_e8gmqUrDHSJNbYdy1XkFLDvEzFmemgbJPbeITX_F3A7P5gNVqvtsjbD1efSeurI6W9PeOaudQ_B_Op_lUMMPmby0CsoaFO42tp3KB8mhQWn1XvKX8pEBZ0zmXgqnQTzVlhgTqOimaS2Fd7iQIWvtHEqhC63Odsp9pXtmsY13GTaDMVgMHEz5Lpdh8XCQphwh4Ahb8BEVA6d8G5mzroiBDaprmkfbbH5v10B_AWU4rQ8e7UObTOS9eCdcNzRag2HXAxXl2XuNqksVCfO4a0LcHapEyJ9Ork4fueVs-UuMrknw50VQhpftzPS124IL5i5GWufSOQmNx5aKRZgRulSCwEvO_mAkhUs8S-vic1Cgi5X5ip92Ayj9fc-W_vt3CTmjgj3nuPvqs9EOz-2GO7I1ypIEd3kZbiDCFnNygNFtWoEmNhXa2dnaPK2s0I8f8Wp2XpJmryS4j1WmS9P-DbyMlS-KJLfowBJl_EWyKQS5mHIlRjUhIzOUmsCVlRyObGf_L4ZYnD6gPb3B8OjbEB-gaRJMmAgfcSauRTVig9QeRjK1QM4wVHw7k8VtH23eNFWTxCIPT_BeVoq1A7Zr6EOkuT4qXR4SX6wIMv4MZIqHQkMRiTKbJb3POo43lX1YmTmPmQ9R6eAdqc6dlKvU2M2DyeKrOhb6BeyfItCslBtafE9HC_sIpHTooITVxsLvGPdTlNSsM0W3PX4LtazGzeybnKOgEwoMyVlH_47MO6gy5ZeMW_IdRM7h4KPHppaCcDh1K8I0vfMz6a_VN6yURXOCFAggJryDcd6XoplysLGJk8J2GMA89GUELrXz5SKJksA5-m_ZO_KFU5deszExu77UlFLtF87XQ2Z4DxRyFBsYxipw7ORSg5zW10DVef2Ms7cxElWRILDLfTVTIlKMfJhUoSCAagVQ58nB3X8bS6bNYN6JnwHp9LhxCJV-VPhpPkVwO0Rp1Bo5PUBYvRe4kwpZI9tuzFRTa_grPzppkijuxBzJNn-fMlpifEjjLOt6DIjK5qoPBp-RKdVBMB38lD-BOG_F8wwkDXmn2cgbG1oJfEZiOi9tRuIjCqZ2izE0utfAkeGQUKaGe-N5XaxUMVonEHiJSjhuUrOOWUuFAd2rlaZ6_UKNRjew4m4-Ews0Yk64XlwVyGJPrXedR1sglWN2i3crYPDIw8dM8ny8bufr27ua_63Eahzsemk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673a6336c55476-29521718','','','2024-11-17 21:43:02','2024-11-17 21:43:02','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41613',0,'cd-form-entry','',0),(41614,0,'2024-11-18 12:11:54','2024-11-18 12:11:54','{\"firstname\":\"Rebecca\",\"lastname\":\"H\",\"email\":\"alignwithfitnesss@gmail.com\",\"contactnumber\":\"0857125322\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5hNM8jAy3vgNeep9aKtlYCd9MzNIm_KHkgeyBjt14cGPRaDlGbm6nvutPkrwGIF_I8WLXzcJdensxthMdXjZ8fGh3DaRjqIGVKtZX-81T7_570g8KJZPz6_c_wwY2Fmb7Yo5GyI1HSvbL8mf-l_C26I6p9HXl61dWgLe-37ISm8MJrGMODzE9VsXOR_PT1F3ndue_LyeMj1C03Pmj24xDB7Y3mP-KWuMPVWiOzkiVif_kwuREeuhENf6n9htACPeNY5y-4ZkUUenYQx4vxD2C4fd2QUIVSfMnqE0HHcxNbxixo_XnZJ-Mxq3UgfoDk_3W6DNeB1qOP791i6aj5BbWyANZDQKH6AnI_KLfA76mcDo_YLS7uXDwtFgG514ckVlHL_h_8y-j-H2BAa0WLq8w7MugqdA1_Y3eJPE5iBNgkHbKqvgmQvcJJjWG9zRIpOJPiUA1jFS_1lp_37Xxagbz0513L56EPgm1txzxZBAI0ZDuDGLrUGjHzgNP4Un15mRGO4eqU2nK_Soem7xo8DUEH9Usq1G1Sow0Hn4hRGnLUHAkWe5mVaI3M12yzjsCru9vQQ7Ur7k1Mp3-Cf_BcFaCmEkjT-xNkgBmA9QNx9Hj55J52yJvlxSlLp03g9kG-2VVggWVofaHVpQ8oKIkMlLpXXqapVqO8MIe31YWVqt74Dsooip4Vuadpz7t2ri1_T9ZyCBUuj1chtYoVgeIkZcpvwZPLiQnS7r-x06is3WZrQV8P2skIP7cxUlWsean2CFeI1bOp6tsbE8s6boLb_SUVUSn2Q_C6LOHzkCakNMRN0W59tc0eRv-fISmox5dO4zxceuKqFPS7CLF2_gnnKP_XSewuaeK9epMyJ4D1VNoqWHv8sba28XP7fB1UrycyPYb6rCCNrE6NIlisfBtZbbdzo8cF2YSHap5Wh3r5lZIMV2eeEQlNnInq2VzAdxOYcjnarJnhds6uMjwZ_RMEpcZN0Rq8MjhIN2hDyNbGOOz0cj8WZ1fGOxVmyK1b6L0_Ub6rUJPzVxn6xaW9pjEJY2x2f6hoyRZN0PRIGM8RneB9aIU1E6fiNnCZj8udCPonKI3kk7YdDFTYat165_jNpvFcPAplhf92Lnebvsn9AuA2Xs9rWVVBBnEKsp-bgHHgCxeB6Cj9H50wK-b024YpzrZpZ3RAPzZ8VfVf26BMh2k-aILmQiUgKIMrdL0axJsfiFAI75yFhf7Kf2jJ0oDX28YmiMd7k04ZghIVsz7Ebt7ahUOvWWawTeoAQ-YpEbjI5XB72TUJSNuVFTHoHFBlZUrQigwKN6bq3qThed4Y_gM3oeQcNWB-b9bI3pHEnc7mhsOdSyJ1HUKVIojNwh2Z90-E75ygYIaQ_-MBxwF7hgAErMVzD9uOBcC1H6zOQnnnvyUXv0uvpxdxX1pjHxlFC10oezkdpA07Tp_p1YhhTjYM6J9YanwxMqNGsNgOslCN2RA3f66n2HecwXGKtht62yu6NPhKMRYacPR36SCk8jg7PvqXNZUvlKCErNRkn-aFYroA5y6mAy_ugchNk81n0cIR4T36hdo2Bno21HzgGhFmWzkWw0nFeNiVrmaKhZtUIbLEARKQlW3B_OvciaQrMIXQvws7GLUwaA7hEH2NNzwZRwV-NUP0fO3lCzKQIl2rJRl9dmEeNSJLx3MZF-Ucapsi1slZs6fl1kSz23Ydl5t-H5UXFrWWn-a771k1KQu7hWeidwlVbwiLdO8gBKoaFCpRSfq11nlt-5cgIVdbJz4m3anMwKZtfFnAuC2DGWdh1zW9sucDg-UeOcL3zXdoxT3jYq6jeho1RKoLdnKYeuF7w6p_6jBUcmUmaeMDL4PPtPMbFpIEc0R811xhQ_Ejx9IV8qg6EfvuwaU6bj1jzdorwGZHHHggOOwzstuaRi-v-Bl2LC7C6WI-3AkWNJVO9E6Z7MyIt-TUTEshZ13uvGAA9_RlcL6B4_Qgiq80j6TUBeTiqjEr\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673b2ef21d1f25-76696209','','','2024-11-18 12:11:54','2024-11-18 12:11:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41614',0,'cd-form-entry','',0),(41615,0,'2024-11-18 12:14:02','0000-00-00 00:00:00','{\"email\":\"alignwithfitnesss@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"Dublin\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7ErVc5WIzrrjoxj0hs0l_cwqerUmytDG81tZOdRuLHVkPsh63DC1PE7i51zKGWbJzgzoGssor4jls0XN3axTcgZOwnTd_F8dM2QjrsALThYOUHJ2Oc2TCcmjZjvFskqVCkxhIRlFrstuV1MSSQzDoR9hSprPyshHCjGhDbIsYmPzSe6vOz27LJRK64s3ZmQ_62Tt9YFOY6eVRgW7ZuImNGRr3r6a2EJ3CY0uOJw3zxQp5Upalap4R_n-BDx5bBMU-DvZ8Nsmf8aiFD9RE_RLRDprqHWOEpMOnsay-EDq0Q_xmT8oNApRsQqqcu0AICGA7gVB3aPu2rfVmbGbyOMVELGdekMnkmODSp9RgrPeetbnhJqTk1dQekbRjod9A9i8xgFwr0NLvsRRRtNubmPEa1LiFU6OqetWtwe4ylekV1ti9j9MJsmj8LXGavwgXU6i0T_mVPP-FDczsThDWfbAI6gGGj38nr1DYkwF3-SDZ_K-a4CxCokEWQTj-vUUK2BckOdHtP7kPGMFMu0-j_2NCRtJuNk6vH9t8kAl7NQOtds1aKX6Fx0pK2TJMxFU2CslDSA53x2daTJvavtSj1kLcI3eOuhgiIDWBEP5VTqxxa3oFEKNsAHt-n7wiFDt58LYzWZA4zrbAV6Wk1JYiUwbY3Z3ItQAjr2v0lB5YBwLkFG9_dFwmzLRVT3K_NIOBQrakIvvFSF_D_TThe3taEBZQLrkvb-XKh83V2y8b-FZrydAbSmYFDYxpGutBgGUpGpnqEJWd0xfeNYc8rgGimwnvS2AYWO3EoIhYybg6p42VNxO1Si6LciM2QSWxmcoyavTnXwYDgwt6qlnmyxeM-i-NxMNeUSbuwXPcf3s3ZbZCJDt9nXy91_nQKvQFt1D-HxGJlqYTHBqbEqmdcfAcmPC7_IGd5NhZpm2pJ1qstXTnbAiHkYxnRMUs1oGkBOPsj86AJSCGLUAxwMDr1mzg5d3GFYWosLnEuevm5no_7u9F_36rCioGYKJoZhCayv0lKJfoCocNMBP2MAGcseUMvWry289tkWmG0w4asQvZXLwi6aX-GygBO8pRR4ku-wT3SjT9-zqijvxr0kAOWDl4i_Btl9ILMnrb8riVTqm4HaUQbyldlOwH1RukzgJQB-Iaa48A2un7YBRW9UdjRt12rTDmL1BLt7t9t0VEbPySbIr--ZIrgJASsJnb0Cp2yQxoqx4UgnXrLWE_GemeJiBJDOy4s3BSKP0WQDUcLpmAGKMsuL_pMn6Uo6Bh-HnDvsIxkweMvG68jms3t7YK8U9jR7tVc2DugkG5MPmOYELw3zNED-jIMwV7DV--2l52te9XbCVFcpCYALWZensE7JJlVJFLhZyftXozdLNY0B_TnhV2aBdTgSk9Byo1_vrMcIIKvfxLmViPD04AFJuG9K1cNMM_Yc45UUgbP-zsXpzD-45PbvgFyVISfC-sqM0PFu2p44MCXz6By6xIEQpGfNF8hYIZgR-WWpG03EBNqrjpSOOmXD_6PMpGTEThI6k3W96ikMKPRTtObzpQhqvNwHAmiX3UsAkkWSp78trbx9qJb1bsVsNx_iB-k15wOnEhX_OdeCQDGclJ65YjpUDVR1E67kNfUHsnyKvNLgzT0HgOtg7qT2ialEPf38Wauy7cHDSouPYRr0uFlWsqgZ9XNqh3U2hmuW0P2y9VV6kDLhT4F2piVjMD7eP_zjDt4WVrUAAXy31uz5zyF36HSA28Z5aJSxfQRqW7l-fM0lC8HhKfiBWbpGWh5idv7Jt9KFc0kIpaccqFwCtG__Rg4OwoIam-Wx-_DEUFI6BcmhvF0I29PDRtLLw0-j64z0CYBa5lgud9gL2VtrlpVN9VRLUqyNi4W2BvGApWeNXE1YzWPDYTykboPp2B747g-THF7JluSYHraZH9EyEbDM7tkGazGPUi3mhdXMoLrk9gj5frLDXfKXZNDjVe9r5gSA-W2wjenRgxJkbEJnSgmSzSTv4iD_Ag3pM-wAezAjg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-673b2f8ab16e75-41959810','','','2024-11-18 12:14:02','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41615',0,'cd-form-entry','',0),(41616,0,'2024-11-18 12:16:32','2024-11-18 12:16:32','{\"firstname\":\"Rebecca\",\"lastname\":\"H\",\"email\":\"alignwithfitnesss@gmail.com\",\"contactnumber\":\"0857125322\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4gjgHVMWlS2Ea_LFwqkVAki2wJO7jfQTOITeMWz5BNH624IDzFoTgPCqxqsSFJpv73pK4aULtgJUySBBQBxpMlYqoyrQDAEJcv6WncZANHFkuEZQJQsk_qgxpDtUGmMBpPNr5-QlgkFiL_5p8ht-R5NZ8HFemCqxPVWi09Y5IZZ3NgdCDAx_3WSSBcT-8OZqlZr105DOyCgmIij56TevT0VQGUYuTIGCTtH5sh4FMZHu2iq9-E8IufiEndv2ccNuf2B4mxm6rD9wLumX66LsHPfrE-s0ZCYu91YiLzbdIoMfs5n51Dgtn34lea_tLBRC9VQsdh-RhoW5YYLf4GKcbWgjG-HyI_hnlibsgbYh3JHrRQr-OLWuF62Po3k0tzSbWIJzm1xLyztd1KO1PFiQPkpbtJDL8nrG9p5YfB2dTfWeWTKkBh5mqDtamfBYNwsOuCxvFWxQM3ydWwRQJb5rxpeoW18uyC_dXvcfLPPDZkpRtGds5fSwMilSiY4avow9my36kcrxRKsJr8leT1I3mF0Zm6BARPLeKYZ530Ul4e4qTYYcZssyIU8l0NKGIMfRG0s31J18cDvz50ZVZ-AvqERGgTh2GoZY52Y9jZFfse9NHPVpqzcZYSnm7q4uzjx1CJiBkPYexMElD1GQCiO1RDsC2vv5d5M6-L9UR6PjrTreswHKuwBvafsFMZxmCagx8QpFELFqLDG2AhNlY9_6_fdQ5Aoy5kLLqREXqyIYqOMGHZ3bn2P7_ERI-adLe4EGwiCrByKzyyo3pc9_6N_vpkmmGUeNancf7gGj2YcnKwNpdiBlS3eb3e2cxIccJxIXVhf4IMx12m8Vqj8Y8Z0ViJkhNiyVQ3bzEj4-eybs6vxKAWMKAsYY68ci8AE9zXbGjOxW5HWoo31wYAiAyX_KPqJbm26psxwwE57HGiP1r675HkWx-8W3-8ULjIORVaHh54rZ4TJ1LGNvDdlqk1yWs6pjjwy6jEZKe0lI3QxkDh072j5zph-hiVai5pnHh6KXShUFseetTVZ_Qh4YEhwycEf8wVU34JpjpCCyXozJIs8qWHV_2nq859Uu_pBHRMaanpfXXrUxUFaykalTIp4s2r99_nJWZo4LsVxfreSaZQK7MkV_lqBpoAvMeMkvmeC8nN5C_WRuZLNvV3IJ-PAEH0-BvUj18PfNreSoMYa_o4QKwAPaS1vWaxOOs-Fan-5s2Gc6dzkqMzxinmxmv9SdujiewVdflJNyTnNgiEVHT86LjEcD7S-TpYBNhqyJCK0fFmvgO_DxASMSSXUqYRWkno3t-q0Mlh2HBuJ_tA39WnQXii4Az3kZn5JO7gMhIF0CU4fbk3-D4zmT_qV-QujSAxd_6mnAo6kQRCVhkNIazKk-MgArxMCHSZKLOTJB8ZQ23JYggoixmVZPSxCSdtuc5HfXIIdf-lXs_z5ywA9uLHzabfGvaSSvee3ZOlx1SxxGq-o4lZ1ZiFl0eGhlnktwxFTiElmAggeAsYBDSxSTRRh0iUOwzl9XZtk9_x1htrT3R5Iqm0NFpk9SGp07Tset73iNyb4RN_2uV2eMx5SYuLi00OT0hDMTOeOFhSHulAZY0msA6p91rlcW_02FGvfHVFoCnJt-eCPn_BBBe0JDtd-yh7EC6552zTjeg96OwyIBo44QG-jgl1oycv8o79PkRHxEcd2eQEK2ZC-hwgDSnj_qQ3tRcQLbDkTGIkhGj6uBJW26zuEPJNSJhRM3HYeXHD-LIzH89ANKnSbkz1OzoQYHX4yXf61Q-iJXkjbpTLocUYf2bxpJlRc_BwW2XKcgb2CMSrlaWbEZgkeXuEfgQOHZ713tgw-sfGHRcdeRltnr_lE7UAoqaElV_N02DhYRY8QesUwYRjMZCTi7t2GPJ-ztCSY0GNv5fPYe79HJaTav6EqL5ckuKe_e-W3YvYMxiKVxXaLyyDxPsrZkvdCumhF-dB3WmUOb-UXbEpJC7FeDPCXM6k\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673b3014619ff8-45318980','','','2024-11-18 12:16:32','2024-11-18 12:16:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41616',0,'cd-form-entry','',0),(41617,0,'2024-11-19 11:11:50','2024-11-19 11:11:50','{\"firstname\":\"Peter\",\"lastname\":\"Angelovic\",\"email\":\"angelovicpeter@googlemail.com\",\"contactnumber\":\"07535231210\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA6IB-iLL5tu3jhHP49bMiaLZBDxazlB7-d5GqDYIM_sLkKlwoI2PpRzl6wFVtZKD_DZb8WV5eRf-aM6K1K1sjn1hqIZ9Sh0dY6dlR6f09ErNeiZBmvZCGPsnL4rJnem1bwG5plv4ajz3m5glaoBkO49NAzTN4m9fFNepmeWad6iHpHs_go_uEE87VMOJyof-qNKbnNYe7ypvSy2awnt7qicQnv3PssxI7vDaT-ykTS2JlVbI2fdLUZ8CHQnusgjLQTdTXRkr5Kh-QkFN8nvW_nqxNpJAqD0fNRX39H0T5tx5gaDu6AnyYgoksrbmaJx64f46SHGPygMPrh0mTLtZyLiSkqbw-bwAY5y0z_hMJuXk7qy3TGISV_f9WLWjzOAtDVdWcadvLr78bKqmt2CAubTwqr_6xyeR73ugsPh9oMjvDxubUmuGMHNHsYBeU-XIjwql2cR7G75-dnxjDwDYFKvpP5XH5oZgVCzFGGllBhPjh9oRqyiX9G8Dv-ttawnMvFWsIm51aTxsjbgt36fcMRz7M_DPbJ2RpyMUm-Hf-45vu5XnXRCUeZxZEapcf-mbkPW7S_VdB_9IOwOumbHDHPke4SB2tYlvcdVy5XxC7gJKOpd4sUFeNvpKNrA0Zglva0b_qDBfLlllGY5bYFD6xe04RrwCeXz0mXSkTLH2h2bGIjlR9fIdScNK3Hpt28li3SOHmDYGMgQLUKg8Qdwj5H5XTOxE_fd1uuJjAK2pboRNxagXKDivqHCmCROXvpnJnJg7W6KhACWMxEjLUhJFWeFpn3od5QQfCxeop2BHn5FT-7QTMevVq9hYpfa7xxebCgVlycmgHc0us2SiK9tHb_ISKUGuONkdj42orbxIF78fXliBvsziS25OSMNUOsv8jpQl3IvgnKgQCmaczm4bPANOqa9QtLxHMSjqnNyZB9nrAXRgw_4rUTKzAibsCdwOoj0HWrwFmn7VxutVeNZfYeRFEgGZufWB14VU4k90w1Qfs7FUmU6cPs3Doeg2oeVGAx3fQXwdesskbQI7mL0EBh3lE5Y5PuQ5NL5XTG6lPet-kyvlqkLcJKmpaU3kF3ChlH_p8IxmixEGKKD4124frbsDAmkSvcPHua8AXvN0ZtJ_UTQgibfyAkA3F6vsgP-SERjIbu-eV8cDzBRPEayea494tEQVVoLnG610GkqjDQYs0OPfzTMPFjtouz095Chz7K-EZYLgb1_qJsa_pUgzKP7S0RHpQebEk5c7z_qZcFVKwwZrH8lmjMwZseEifbbCnkTkzcdL85W2KiE4cXsc6BK6LS6yJksF2TaSbLEWz4e_T5VvnyIUnf6GgoP4qEeN_uCtvvR3Wq6ypwAWIb9yxc6c-5DFFJQiv1zNi6KW8UEa0UNRVYg9JCII1UM0ee7bAdR_KeOUcV1VPqsIPRfIeNqvMxleg924PvuxSDygwU3wFMNJNjruIWXbynhAdc4OWf19sW7qdjQ1M_1UyW10z3PU4zRmlc-Bzr57UqKDtMG5hirndsccAbkX7GoRxDo9uqnXmXMQPlFf62dwiebUjEt9140AqIoqnkBOLE4ypAB1QvC4X60nspI8U_rtbemlpEFRQMzUbWy_pTXrjnWkBLWphkTFq5lmdTPWZOromSuu5Y_W_4ELK-pGZF5h5xsb56rJLJ47Xx9OipOMRhqLonBsPakqtkiICd16o2pjvDYINdowlMQuHpqaCnKthAG8l5cnqZdUKJYBixZXgdSBEmpw9Cq8bOzGr0NvHNhH9Hy6_3n-9Fu0FD89pNgTtt50-3x6XaW7Uaojv7hrZU1t3TZoYiLtA9-hmA7DMiSFoowI91XxfnSpJ5OTsRZG22IfLuI1oet9co98KaVZGLRbSQnEErk4kMFpMO22zchIjh_zxDTaUwzdC1dUrZOgCsmKP5oDnfmhhBejTlxaqXo_pe-MGURCrweHFHQFDlG8KF6cYbE0gxWFErVJWZvNeM-8xC3KsyLPomiSp01JDW81E8YILSFbnqtet4_fOS-Jzx1tPWmdaM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673c72606fc9d0-17901066','','','2024-11-19 11:11:50','2024-11-19 11:11:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41617',0,'cd-form-entry','',0),(41618,0,'2024-11-19 11:17:38','2024-11-19 11:17:38','{\"email\":\"angelovicpeter@googlemail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"se100xr\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA5thj2DdIX4f5cYgUqJAqPLagXaisJN2pO0NI0MY121uCWDCP1HgzWk-PHxGjxq-KuFq2AH9TyfXLTp-U-oMXi_dmLBu0RqAscic2qqWE9GMWc38Kjewn3Il9NNf-BtmaJNPpAfGVYWgK8TioRwXRMOf4l_0-p-dFxn2E8WaGMDF0tswVnI0gvwiUb6xFoA_YD-q336270Y0Kj6lqdGHt9IL5AzASKkoZ0pdSgB0UGDYtJs2bTS3R9CCKk78a69PDZWVgbvSMHTR-RQp6kL3Zq5tCnxKOmOu1u8v6u5ypl0Asak1Q9NTauaL-USF30MtkEV8Roswciu-rGUbGjohVHrCc_LgBxMt18aCcrTD4yr9NBWQc6RrxPA4nCt0BXAdqniGyFMDDq84BnYRwv5ECxfjdemJ7UKwEXSdckgN_a0HINpFPLXPOsG3CD-Mjw8Qq8UCYBq8RTXU0h2qY6x2i8gaJdXuuO0kbJxKY3_u4ZGR6KdW8C1augoNJ9FoejiElwm8tklDM0jrQ2vtDBu78nZOjO3ac8BS5SuHXjnf_r8yu6D9gJMJ4cqSlq-U_Q491jEBR6_7ME0WYCioZ7Hx9cpG2NQkVXK4TD1tJOJubwXrRpkGlKv8yG0GkZclsXEDQY6iOxKbDIjqGIgU1ypVj0Uo39H1TqzwsIXsc-jgXFCG7q8o12GwhML4VhtWUyD6ezC1dhk_o6_kJe1IjkYPL6XQ7fPNN6JTRP1M41YndQJBPrBkVKnA8Fif1XnlCLIScDx__R8dMK6BdUcgVBAnElvuHGLk4LVP6VklEAMpWOqG_PQjgtVXtmwWt9QmidkIpxiw9EG_OFX_iow0S-755ALeBGuLFkHnNWGRRh1nKC-fYKfyyDET7gwNIseymNNPu_QBdK85GzSkNkWIkAh1FUirhbOm21SX_TLKb8waPGAlUuqlIDNKfzw9k8MPHsfTrxL3bH2gq-BBZr_0t78Jaa9gTvaewL-T75fDccOR3Q2q7a9OSq0G80aRtTpsoNbg4nFYLIXok1fy24Z070wkRfxuJev-uTmz3Lrx_gd7BSyTFt0OE1CdhiDTpuHc_i_o-Hedj0AVUciSzYZaWhQMezEFbs5d6L7ObgoRYvNksw6dI6g_mhQrLVtTP1BKa8T9k-RhsJMuSibs_PV6BckfpCKSyZBoSDk1gqomS8Rfc2-kCogemtSJadQCv0LK4gHTV8ZP3lSxEWprrA8ycfDXBbb9kq2QsqFKRZEGb4udcozqgeDXr08REHLpP4XCy_LlGzy7yk6d-L-0o4xdCjKxLiBWNRgZXsKaw3ZInqySWd3ed5xFTdD3F8PA5r8ONGB-VGOg5R4SDdK5VDPKl_h5M2JIMV21vmCNn8BWJQ49bpKbKm7B0txLZyxbxKtFIRU7hqnBRjzyYegWNRyj6E7J-CZ0ZxSWEXspVNTsW-T9GKkUwytoxv9VnVjaw_MNt7MkB8FGZK307FDJ3zECk6t_6SEeYbduXUyv4KfmcZyzqMHnQPea4PnGLRBuFpk2P110c9a2k7_Zj_lDzmXnu8x0UcVbzI0lO8RepZX_A6oWN3rUOWQGcRSHBaF1lEH_i8N9sgCe07jCWS8lHi5zxtZDOc77INCUOHwtRn3qZ_SJJ1nynnjZCORb4cJR5JGWSPIs9QZDOltYtOy0sEhoSG2-h20apywj3eoG3wEzTi615aagvH9CiJvZefZBJe_zSpbRg6AdF_3WlOTAWocZHMxla7LEIH2TNc2ZlezS1e7tEOvRyhCDsh2YlGJdWXBmVn7r5xffHKvvyoWgry8dFtjqVCxSJcP1M3jZBSm5iTvkAJQ0nr9W_Zj8foUGbR_abGY_9u9HEgSQg_OdS8qrgDMVlprwRLkNzg5DNKVQ2FvcWQV7Ys5gM1u4o-iAkLAnaqNl3StvPMxA141ckA5TPcu8NBgqf1BZChT_FkeAER49HU7ft981DRv1wrT9ruDXy_UrCoJ5teniIXqvBKl3O8kHyLZhGfrY7IncOjPpC4Y7TUwf2RReRM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673c73acc8e052-15894514','','','2024-11-19 11:17:38','2024-11-19 11:17:38','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41618',0,'cd-form-entry','',0),(41619,0,'2024-11-19 15:50:11','0000-00-00 00:00:00','{\"firstname\":\"8ZDV1BJ www.telegram.org\",\"lastname\":\"8ZDV1BJ www.telegram.org\",\"email\":\"marinecraft95@gmail.com\",\"contactnumber\":\"8ZDV1BJ www.telegram.org\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/\",\"recaptcha_token\":\"03AFcWeA5PF8XNxZ-UwQJFv8FFvhHHcq0aFz1_63X_BqixxSvPnZScYAR212LnTEJ38o2tx7-0aRIZkbAcSejNBwJtG5v_mJIQ654mbSOeymzBjApi-gIci3whSxLOw_RzFLhNUarHkWYlGVzPmwcq_fG9aU8MHDGMvVkX9_hMGUzRT3NcngLKAPbBXxUIobfUBH6rG2LMkD37f6YXgArdkEe4wHGt_CiRL3z4Y-dp1GHVIX6T8GfLDOFvi12lGK9RA7PeV58UgaBvXLwEv9CjEuHXV_xqGxKIQ6tMUzDsHqWyP6xd35fdC-Jtlv_jxEqI1RY1Gy-83wvXIfAJ79P-HTHgVhJ-ejuysVxmVy-9UoYqmqCGJXp6yxtbRIOkM7mMfY9G2Mrwi6L9Ylzv2zZsqhjSN2kxARxBFabo2PNtPQUg7INBFoECISf841GafQsp1jUWd-IKKzKvUhbESWmss9dMsoERK2nfB_Aq8_O2Bnx8tCT8CkAY6mxQz-dY_1svb2QtzOlDu1SEqGf8vFscsl9atmihZAoUPr00LNRTddh-A-LJ-IdufTD-Ad5wbOMkCZRLeKB9LJPSZbaMNHFMh85WYvhO9YFmhAc_C39ywQ3E7CigkKgPf15fURzPSTCV3diRDDAP3ljNwVIgKK8Fjsjw4oM_EYZFg3z67cbyuwm-q6jbP5GDyvpGfXtSYNvo4NEL2fgDUHL-Dqo0C6j8J1GcQp3iG6XGEqD3zBPvpkL3oftP4RAx3jjMlTw0cGr70NCQCUaM0Ti-1hjmmSInoh5S8Jg5zR5ePzMtIM4PKssd22wrzdeOqdXBC4OlEOeWv-vEp5gFF5XQhyf5zxIyDef9U55NtdFpBpAEanr_dEBSBFVguDZP7ZUe0UOLWy_zRpNXZ0S9m1or6qaJJ3AN8W5o7HfbhaI7rh3bledNcuE3ONt1B2sucTBiSSG62FUBjzJWHbUGRAbACkkqkmeaIUU-_ZOZy_ivBUfN3dpylrXE6-EfB-QNDkPcVIhUzIDC-GCTrY_5eteZwdJLC_5MbRaevDJ0DJ1-y9AfxMoQM-AKfnPCl0mKNNGIli1qZ5D-vG2O2HTasz8SYzmMq94birtXzJbZtOeoMxlKaykjoA3NyLwrcM1xTcKNb5T1h_NB1sT2L-VciB9RZ1Qleiri_ZJGBXTPcJyTs3ChXX24UnGhSN4VgT8I7JGynC1MQsBeqmJHIe2vlt4HRcMkzMaZ5XKVT9b5u_gOM0yvk22W3kQKHvFwbgoHSYFS0Yohf4JW68j4ekG7HVIb9vsYAKk8xflJLPd2sva7O6chvLDazoQwhFU-rbvYh9r_oRzVaFXJGXCUghfOrPWSN5_R-M2f2srlo-6PqVtJU1oBvbEiW3Fhhi_TLEvX3uKjLkkii5RLLGZIwgvuB8T-2Vxy0PMmaBKhb4TcRAM6rsowl2hqRqlmMy4hNbny8MHykUmUFf82ZJlKgmOSFvl0tr3QpVL_oAgz5UR1z1TnWnDhEpPC0N9TEh4vALCEyBtRN9Bs_trXkQ3LHKCkPHYO745eBtkz9V7sp3rHEp6EH8e1xN7-2UA4xXsUGzuXmAIQXvuewntrsusy8pm6RO_PM-uD-s1nWHp3YHZ6Z0zPqbOedMiICjdqCvnyat6mTp92CZpg-2cayIYDeJQ-vaIHts-YtWe5Wa8DDX6fGjIM8qJsitrZ22dlPbDg5W2DpuH9-1I0OxOxvhyvZvwcTN9bKQ_uiQiRdt-glpBQ1NqXAq6PGFdaEBYGGBWKmrIGA4_UwQ1gz9ie8ifI0_E1JZ1Ze2PBid4gyeq8HTpIyCIzQMlcYqZsP5L5-zJu5Q9hQRM28NG2trmCpLnvMzeUMlOE1kUmPWcpkajJRQf7ecWN_GuXSb8mWYM2CJ-bmgu--JRTQ1vKb-HsA-YOqImNXkgceL1yHlke48jaES9kLpeGREbi1CAHDPsLlvLSaAVf_Hp_FFJ2OKWl3WUWJzxkTlf_wa5mWbSWByt4QSdJWNhcXAkyV75EAf4JbsoKAk-C7ZA0qpc8EOr0CirHuHYAtgGyPG_dMOeEAlILxtE2crufxexpnI89NeRxG5ZYjpG1AVM\",\"recaptcha_score\":0,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-673cb3b3ac50c9-67071614','','','2024-11-19 15:50:11','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41619',0,'cd-form-entry','',0),(41620,0,'2024-11-19 16:33:59','2024-11-19 16:33:59','{\"firstname\":\"Marley\",\"lastname\":\"Donnelly\",\"email\":\"marley.donnelly@outlook.com\",\"contactnumber\":\"07568081604\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAi_G5BhDXARIsAN5SX7r57XPHywnb0wwmfVbALEXtMhi0Mg5G0940FwHMPZAOcN6u_xjPeOMaAsBOEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4SwFYAKPaAHhaMDAwN-wmtaYJhxeBVzdZZD3Sy1wC_ZKns5ZNMF0iM1KLp9AY_SQ5R8tSS9Hmql4Mkjwqd_3_M4wsjvuMQwwlVjEuRlf8L0F4iAIy_Tgcx5ExdnseK_eo2XuZJ5eQQXYpS6pylEwJmsCv_eOOXosU7DQmqb_1whdfrLyruU1VTcj9YyQhAJnIwtGKKB9Tvj3_2pXBdygtYJRwoDRdNIZNUoZQjpfuvNj2Gumhz3iuH4HBKTZqc6xP6N1f5ACOWevsoOaHIVp8r5vpKbqrm6kMYvjMNYODZM0jMq4P6-Vd-UcBon0sbJJJbpqOoM8u9S2K4ZT4BQtLktiFd-Da72qXkcT4O_1hwA3eD9NnTy7WMDaTCN1iAcSoBEtmNTow3xhhegadoYMqtBcZi5KtR6G6T1vlHL2OwtD_1Z3sjV3nWEp1QPYOBB02hV0Aa2DBiZDbNMEonHn43JPvKjgruwj1TlUjoaU9i6y1ZIrVmeVou01MOOHNbIXIAXt9tHdSe2yadjMua03VGVHXUyReE05_ZSOdmaqKSgZdsACtqw6nnBt92gOGg8KLIZp6JXcpZ5Iq-LMn0MJzFc9h2bichSQdvAMVr5CPrBXRa06KkHEC50OR_sTFVxPTFI6iBZSjU5yuJgI0afQ5f2Wuz1nWwGVujDKhIRoaqJLb4R-beZzMDlclwAy_2XS-W8WEkGujVh8cDhBSzHFOF8PrionCN9dRtjfmtuWd6VX_2Tv-ZlQnbyJRXWiWGVKPuglZxB3xc-y6UKMD1AWPUCeqPvTjxEI16ZCHuCzs8BnXPUeZPHwRgYub7sdg8OkWPJjVUZkmyq2DcGs3bxsssNwHYaPRYlGNUw49wKUuEyvcJiraejU7-1ZvZnm7DkavPw_J6Now1dizPKdvHR2psbuQKs_0shDt-EZaYx9Qt9kJ5HnUMgP7QIiD5GUcws_xaUaBwov79f7YqLhdcC4mvtHqZ9imdaaWV6VuHBcF_540eUSSbduJE1_cZBVVVu2OLMrANTs6gZI1CsfdU2m0Gi-B0fUv371PCkpVLMtnRaAoenC_fV62yoKML0khwSQKErEAoJgp7t2ht8dd94S3XodZZpqXiO93L0E8bpiUE0qO5xiylsSl5Y5K7UmHQRlUX37X1sgF_K3zvbI56fcHKcnf08om5a7qmjTFOmbFYmT8lLwJ96_KB--yT940fVXvlDAdiPruWTU9iaULGi96rqS2qslzMNclmJLja2Cm4JzNq7l-wsuZzatmC4XofLw56RlfDxozsC5ARbVcaXXcXGYJ1AS0Dwf1-wiTKXGFl38vLo5SaKgxJNWLXAU1GAE8oFWe8WLdO_i25Ld1youZZmwCfkOhuuvSBY2p52UdQIWwHga_2-uWFtPS3A5GaYPBoEg1llof-wOIL5N-OE13YAeFyxE-VGqtXX2yuvUMaUuVXOdah4MyZr7Pg076D7Y3AAEdnIQbf_FnNcw1HTo9puaZNpqfPdJQfNzbDjdSHTmiuZqGwLzutK2qmnfCsyP73j0ue814EgO0fxC8k9EL13LoZMCvJyRu1HFfNwPh57EX37nfhqwHSfgczuj_2iIwg9QIeLSLjYeDZTe6FKiLXOxS7JVzSbYKyxPzIj3fqB7JY7MxdNfl4mgwhAC4OZk5mLhXmmVWRZgINMGrRBYDJeY_1Ge6-s7kPFWHYKIV8_jHzfUlJxTqbB7A_GVEfVqE8-z8zXo8wBSdEIOvTkol5JwemnzbeY7M1wrioIgWL_Vd-fAhl5eakLODv_XbjPPjotI6FfG7tStmF3tJLKySncuhq3w5xeWGW4ExvzneQMUuYsqk6rNSctJY6QbCoXQmUfnJ4Ch-TySjNB8LvlnLSpmvzBVIZ5P6gKhttB7af9JxDzW1Ungge9xsZoWCfMHXQsec8bkWVeK6ycBe2BlxC0hr0EEwkNIhAPyGB-gI3N-ffAr50ooZc4adfCFHWsAddzvj12woafVYgXzoHaXLbnU2EXvMCB6HuK-4_T_uZQw55HFiiihyN0O5NnsKDiyrAIxqXCaC5WLzzsV7qOnQjZxWkQDD3HAZdoSxdhh9w35cm9F6PHxKdFRleZ7EAoGyvHKWmkGbJ8hmczQuO5axg6S4Njg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673cbdefd1fe81-41706384','','','2024-11-19 16:33:59','2024-11-19 16:33:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41620',0,'cd-form-entry','',0),(41621,0,'2024-11-20 04:11:15','0000-00-00 00:00:00','{\"firstname\":\"Pindo\",\"lastname\":\"Prakoso\",\"email\":\"drpindo@staff.ukdw.ac.id\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6fkMeA0nQ6gueBHIkz5TAqLO9zNV1nO_8UNZ1FrF8ZcdJbnpxdr9JJjTdFjBTSBASO9XK9Tel3pM2lUN0QjOVEY8cNZo700cHRSYedleBHnOjBB7jxCC_Esz2n2QBsSJXPaRLT0k33Fonv0xLZsuHnzmWQ53oDbgHYkrSuSL0cH1ateJYDstfHDSKkMRY-qRRLt5mQug0ARDdUKfxaj06Lh_tuhxJ-5umIinY1pJrNyFXFOoNVTYkCInggNyaXetjtoOkTmto8OOx4aod2s4_ylen35x_KkwdaDFh2RRz3dqYAgZZ4Y6fMNqtiZtaoxlof2b8ivcgtsDtwhgF1j8GDre-I8qve6pEiA45tO4Q4VjjelmEh5TojMUhhR_yo9gpTZOpZ7MVMnR_Qtj9Z2zMEU5VBIqDFp4tdeHhHxvs6SljESeJG7ZEg2EpF2LhsAzFikDz1VTWdl9xobrIUZtbMMLEKj8B5x7qa8O1giv4xeT8VaiM46JTvmuFSObIeV2SK8KiGhZbdZODNaCHLnQJQ1g_PYBwJ9otlMrGHIcHvyhTTikcXyYEduJ5OkObFlG8V-I1E0qMPK_x4vpyc6kCCVD0xUzFdxkBcSagYBwyTvDcZtDbl7pXsiiQybNs0qEPoO_wWOi1u6ozfspq-E4apLgpQPuqjMe-sw7ZFONhH74O0de7UNSpxxc1EJv1NyC_JeNSh9KAVjXkiqibUJBAWphw6UzjROiJNFUecOSpQjc2aoLD0T8UGZKq9dHb_AKoQIMaHWUj_Qs5vpjScaVjXsh6wzQRt0YBwvi6EyrvmYWmXUeFboRPgrKNjEj_N-2dRdhYYnA46RdYdb1RQUfV6LOBYJvTyqFunrSTkiB2vX-N76WmEi8x2EMRnwnxscm7x_kwRrKIj3yYS2ZLwPW89SQ_uzeW3QlYBIJw6jVyP3sC2VKiFgMvTvKuSGqRnXvbgZxTnHUJVf3q-53AC0TZO1k07RPAzS5arnrUFZHPfwEqOeRaZV0khq95SqNLQqv-rhZrNCFHLXC4GE6rL9z7bLBMsRArMQXXniBAjquAraF1JcY_8r7biftEfQV7g9Z2LDi8iBgP3ijSks6pTcmNvpPWFJ5f9VUYkJSgbUomYa7N_53miqG1bGwgd6zDc9YPRoIKMlR-ftz61008ADf08bZHfGKu7RM-WUiUQ6jgxEWdwmfwO84siNFkNHOXzq_cGy5ZAm7IZTJCinC0iB6Ks5nUw0pORULheNjqa6cEs4v9A88QaaNXxEn5xf4BvdHmBFHJ_dkkip2ofqQzAyAaTU_DZyEKcmEymar5RPgEe08f7F_KOlYojlrs8X9UDNrPsaXY_bRg8XvUxrC62igYTBg_p_j_mdn9AuYCZyDIxHbclNznrSmMZup7zq50zzvqKt-WGTRA2ydTPkO2PLOF7zHwOq8cGZ6j7VUC2zbAbRHCylLwIPjAZkhq8tgF2v2ClVFjBokD942u_SBt00s8mIgfzUriW2oZL5X0lrc01akVEw2mqB7Ri-Xwl9b21a6X5jmQ-Ye8wMovNhqQgaWn_7WRgUICeMRBmPzcQ0Y0WVpml0pWqa1vurykzuuB8EoqicFjgzfa9YP7FAzI_PltqsJFGzq3dYrMT0rNEra--W5ZkqO6S8-j0Tz0dBsaEaKWgjmAjxXts76SBa744K-P8BRgRchd_W9h4LZallajYTtfTtC6wuuBAqGn7pT_yJVR_4AJxRd47Bt8YNG9HDr1bDLp5hQdFkQMVLPleq3ZPxTQD88YxQCSKsWR-XKum_4RjC5_izoRHmfodjPp47_7qDcHZuRHaYn_hMrF_ejdfkVhsQBaLOhMTfGOIpy5jsOG8c3IOl0sBmpDF9f3Pml3Kp4MgjrUB8kuroqxxL_GpktbH42MgCBIi_dAuDoydjsOGALt9BcDlqjolyvvXTvl4BCRy_A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-673d6163ef8d41-96891601','','','2024-11-20 04:11:15','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41621',0,'cd-form-entry','',0),(41623,0,'2024-11-20 12:29:26','0000-00-00 00:00:00','{\"firstname\":\"Amanda\",\"lastname\":\"Holding\",\"email\":\"amanda@amandaholding.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/foot-biomechanics-made-simple/\",\"recaptcha_token\":\"03AFcWeA5hos_k_nQF-8srbMO0-pfN5Y-iqT14bxyIynt8Phs7nEOTz5bsvH64p154MPTNQp6IWRicHmyQ4YEdnPNETAGhqURSzgKK2VAtt0DiEqMj489LK0F-z_vU7k4tT5CwoDlcpd-lMepSnhZ3jX4e05nWVfvGour1lQJnZl2vDHI2MWmK78QTquPi_lVO5zc3MVlgeyyb02IIsktyhbO7UWHqX1FfaSkFHa2SaHG5yMwzpLJJ4xjIY38pq4hpoAVGRTXc_dIrg_7v4hoxPxtg1GpWmBAjVkHMw3KXdG1N2G0ClQJMjJnMb185CfVaNpW1kJjVUVdPI08nSGBiF8VeSUal-OsI0g0jtW_eSWgl-VHf_c9S7kQBjkOQ6gwmPuxxfMO2Ut8HCT4lnKspbA64fw76YmNVio3DrfN94c9o3xcCAK7hSn5QuoMV3of60T_GYv3yWyYe2SiTuv2wMN0mfaOPSBumO-e22W98zRnoy7cTbSX85OqrAVE5UgwpzxIjBQVvm4_9ssq5mwSRqJBwQFAlFKx1hkcAQ9DqV0p3j3hETf3sfvcCZKBl8muyho7hsWj8li3Kwb1qpHGoqJFel3c3J4WUQLdFIBdUUcvsDu4No46kf4obSvgcAjQO2JYWQ90LUBNl-qt1XVOjJDWAloFKZb8I6HfglzgH6tkL1H0awQWfbjKSt4GABu4sfUSRXZ9oJuFOc8grQGgmJLJYe2Ptmov1S4uemTJRGsDdZkhLTf_D-v_6TTRO6NsuGbSEmI4nXUZkxwTC0QdAfQbWVCRVaiRfY3Y1Prt26MyEDy--Cz9wwZLTyV4gBKW6pE67Uz09kt6hYzEtXfA66B67a0P8CfLz8Oxk786aUFB_MszzPvAMt9pJKfi8w9iDkOveHrpkNF3BPBvv4BQBweobSa-QNoYeRo21zTnH0KZ6GruKPVLUp5Zj_tq-ZoRAd9z3ojksbcxkAlXS8LRNsRvQhotmiAoYA_A3pxi7fr1DesU3N13jjkDkp3cACUSqnZbQ2UupOb60dcJ87ifDFW4W3E016ZjUGZD3Pt-0crt2PRknlGyXtqLOEEEJp3i20VjVuygBgx5b3fJcICdqsmDXQraxixd0MyXqDPIz6qgYEeltQHlNy_FwqL3wuoyGHjkD0KkjjJlH6vfoN1-KaRpiNgClUKRYYFYsQ3kdwMRN6xPQUn9cVVwZERCP6vHD5wkvyeAdkXWSWNAt8Zyimg4PlkE4jcQpQZpUU-YHA50yswE3KOvnkbzDl88BKtWprTDA_Gxoc8VJwIqNG5f2sKqpspKiZ-JjDbfiBxhiJtDnmv5w_jzTLFowbw21Kepajkh1dhIcHYP04J5NfTNxI073q2P20ySzwzaHjl0LeoasVWwdYPf-kOM0UyW9oATJ5RLPOiyVgOYiXHNysFo-qKb5ykQJXXNwty95Zu_wNfME4jc1Q_ZZ7y6FbdWyYh_I1cS05Ag0yNc6wIIvFUNm7Oqf0LTBGDIvg4WTL8lhh_kt12IgOHFsTjUSo7SbyzBD02vxz3e_sqGuk7OwRC5Wv3NegdDBINXLUWbpHj14v-xKTUiTH7ktSXbtD9YZxGgY5H_hCJDPjhbolZhHaw8dpTlpxoU2l2EIVGcVudK87mEftbkVWDNn-URb9eEBzRHyC73bp0oZZ8VfHFEfbu8Q_lE0wfa0ErFfX2ZhdQ7UKq8uwEyP4UCiC46wLE66bAzb2g29NcPCGCc24Md9GvZRZR-vH6oHX9YktaDPbyL8wLzhaq8iO0RCbhvm65Ac-dlghc7_0I7NVyrg0wU_QckdJAwxNfR72AJ_47rmUphygOBz150MTOPXmow_wRi4q0Xm-1NNcZEsLG7TkpI8fGeFCZ5id1vzK4slQQsAHIeXt47aNytiQftu5saRsJ9uNqdiqm2fzZfodAcfC-Z3KonTF-r2rPkmvdEz5k7Xm928EAgXf43bM6cNQLdaCINkmU7QNvdV1qfhXVN3e7aRO5tgTLclP53POwOsS5cgodBoHL174L1BaykrPNJ-xUd3_jcABdcJjqzc-5S_ZBHqawPxuVPiEs8ATAE7Q4PZujl0y0PyfBjso2VRr4RsNG0MS8uN_RH2Cpybqd0lovzPPIWvqDFTWmGRytyqwW6cUwFzET1t9SBigawzLTy110F-a5BSyAV-Ox6BRuP8iQDZznQc7Sr3sY5NjVLp12HkP6AuckyPMqsr0le1f6k\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-673dd61faadc59-88858365','','','2024-11-20 12:29:26','2024-11-20 12:29:26','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41623',0,'cd-form-entry','',0),(41624,0,'2024-11-20 16:43:26','2024-11-20 16:43:26','{\"firstname\":\"Vicki\",\"lastname\":\"Ballard\",\"email\":\"vickiballard@btinternet.com\",\"contactnumber\":\"07831861493\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/pelvic-hip-biomechanics-part-1-the-bones/\",\"recaptcha_token\":\"03AFcWeA7YOb3DUaLJ7xiifAWv8cUdTVC2QfVQFBI9VTUI2EENuisxLHfpNsljKO0yZpGqQGfDLfKsa84lvybZPet5j_xQ0G0GkZ2tpldZEDui8Uj6xiqcv00KctH1G_9edn6M2d0sPipsPJvxw7_XmHy-xlUHaBFTDb8A9talP17QWZwFTA9kV0gyKYIAbfTf_Xvrq556uUcZ9IUKVMn-KjiT9sXfVYkoY_ex6mr2w3w7zZ6nIqUhhXT5rUDXTUk4HSZm4PZ53uWrPSwfY8hWso5O3SupR7N5xeSnbY2ayWSUtwca1CoiT0clAJ-kXU-dEJCwFts898vkhS9EOiOTCZ36g3tMjAXZj3T-newLqVSTo5JtovA8TceapOa3SDRggMWGuAwqDvJXDXfxTur3ieQzZ-ttbcgu37imi2QgC-Noe4I94oWlddblEl87FnLh6CLAw_HC2JLPn_coPepoEYBJMpKBK8-YrTsTUx__8vW1zTKXzMMQ4my5VyOK9D_AICdHj8kDrFGSX6oslxHfvi8ORnZiCGZwhyaSSiEGf5aFupVyS0VQ1QdcIpkL-LnhhiQuMGVRVmEuMJd1la7AqrGD7yFf5T-qdemz7yaKdG_BreziCAol55eTdgBjBRcI1FaZFZauIOWN-B5ps18EJa0U9Lzb-FceVt10ZA2uIJGly3uXpGdNwT9wUxXVe7HSp5lo-xq_VzGr-YpwZeJ4RJ7__BPvGGHtRh3adfhlg5-AIn_tb_G00-GzbD6zJzFLOo9pTdhFubUVybAI8P3cdlhGP1yyVCTDUHg722mo0mlmp2IO6BgikYLTZAgAKsQ4V13bEZacPqixg7dtVLpCf64VJUNwyJfUVOVyJafxSt7rL6UgcteTlBlRbXggcU28PBkwHA-FWE0xEBkPPh-CTunx7IcCwDRRhOCg_-1l24nf7ozTBM2sNR8zjKwLn5_JyKjIei2AO0K1gqDIsaMHL8X4437WJIZ_ja7rFlcC4E0ux36qUpsC9gPLI_KFspsWBevP01Se9YrlEYK5PzXro-hjFcnq0RFEjOXLDxQv7L90GD2q8rxllZggbXUURbutMYH6AQn0nhaD_ntHg2KgNn9zQus_yvGWCP9MwvLC0q-3xrktfdtkWz5yQTrW8UexndIYavWvIDM88Om38A_kaEKtgTDw3fctkTIfJuEP7N5tXHCjTX3h5vTQB2pUSW_pzx-OJ3_etRqyh3bJG4mNCLFlRbJGgHnO1ohWvPtCZVcPnNbJvxA7umvb285P2zccLdbnx7MRooo3xKb4Q-D3XDQNpFjwJnoz4XkPtrEU-pdgtooy2TEAb7AZywhHloAnrogFp1GSghkeUAKJataQecuaMLYqAAyOe6-xR69u1kBeYQmR9EpmMSvyNRhjLdWmvxqZQWt8-3xBX23GEczwzN9LaA16nJ-hNMvyUBQPWZLIovPCKeCv7QW98gxFTL4wwTOFOdyEGdSf-hJmsHgzrdbj25i-BPmmxrT2oolOtKGGNQakQ-5n5ZikQbCit3okkmpSQIJidPA822RTE0QQv3Te5uQlUym9DRWeFORyjf7neG0u60nEV1Qttct8KX27q2gpRjPeKcASd0D5NNssPePoV_jIhabdSLst2j77pP_hR8-kwp4-ZC0_VEFo6p-D0L6DS5176bV5LahsuZSpDBLY2bTCrTY9ByAenzwP9srlWLtWiG8hO0s2TCOxehfuW00HheJRaR95XOf2CMuTe5tKfft_oApl3d7SO_YMRTOBFEfZKU_l9TiyXM4iQMYtvq86hOQB0Mf1x-xVFiAjXF5IKyxEgV1W_7Fr12oHJD4yJNgKKsMJr_Fzpzw4Qt0JIHHH8vSe64iNn-HjtAmyDWktuLqgge4QHOjxkXmIRNAIfwMqAgiwmW1a3RlyAAX-yM91onJvXnANmrvQcu1aXGOvnHYjeQtHah0_4t811g7k0rDr3RrGFrKcREyaozWdJry-ZJarAjlnfHNkTbgtgJCL8YmfVTX477-VH8wuG0n66zTsaqm2Plc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673e119e500d90-61568618','','','2024-11-20 16:43:26','2024-11-20 16:43:26','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41624',0,'cd-form-entry','',0),(41625,0,'2024-11-20 17:17:37','2024-11-20 17:17:37','{\"firstname\":\"Ben\",\"lastname\":\"Swart\",\"email\":\"benswart23@hotmail.com\",\"contactnumber\":\"07909868302\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIn6y_qfnmiQMVNYBQBh3bngahEAAYASAAEgJNW_D_BwE\",\"recaptcha_token\":\"03AFcWeA4nKkV_QUMBUpxpSsPixCeypCNJm71KnfutqfUQIa9sGZTACFDb_DCZWsDzh4QGxgR0Pm7lIeO6T0q2PEH_l3ypis3xC-jUk9SBRoLrIvhs8behlb6MylUC2-xiV0cCoi7V9EIustLpHEAxT2RbrdPA9_NbioqELFIViDn0kT5cx2A0s-pmzK22R054ULNdU4L1fsAcr8WK97erBRU1cIstKRnIt3OLJDBWT1a-86w83a21nA3tALF0n-b3oc89O7IGYMjOJZWouIrfZO9-tQPKzMoT1jNVhiJEeIKHJ22NXJ2VPuersQKebw_q_i0zSC-yWg4DxztCG4WwCeNyvagMfKwgyxsoOR2Sl7Nk1TxjlrIGtwi8a76Mhlclo6saUPj-Lk8RRFY_hYLzNHuh-h-XW4zs2_mCXLu2YVOPptNJOl-4O8bDr_-328zZzp5xXiUq9eLtDQjjqdNPuqhr6UF0VGy2o5OjKUwlowfq99PttGlK_I35o3427r78o3JTyccLZDU_W1K-o1dTkW26ceOmASHs7Xu5OozvuypkUUM6VeM5V2IuAukaiZQDa5Dl4BDABBkI3QvffGkVBWYRpgPLiMU8RfBLD3UYTveF-obEkUkaLPEaJYu6_b5GEj9tw6jO9BR31TQ8jGhFkKZH1zzXFVZXuTXPC0SrjFrxZ1zgNt_1ZkI5yhobWLqpNi9jdKxPV_ARm0OY0u4rqejt8JndlzPsaabzphqJGh2QCloduEcocAC62wy0YzNuX0FqAc0HGYnCxpRKk5UfvKvKqgYWicKrnZ6EZ0WdwhUzbbWYe_RMN72OFdi8lDk-M-dTxluLJ6x2IzYJZQcscjl6TejXevycfVSX5fn5_PsdSWsf6e4z4axwoe8fp44N6T2mZ7ZQItsN-6ZIVMkaiCG_NVu4d3w1gt5E_ghP4MXmXIJla54dVQRaaMSkxAqaZxP9SXtWth66si4NBGcVn2UvEetziotSHEF6ZG8ErlBMEm62JNJJLV0nc7SlO51MDjiczYBaiwsjeIZ--idA_wyXXLmraD30E4aGZR2GfhceFhs1ziGGUvEM9u2Jl860rqEJr2SMtpDk9ypc74clIe0g8mWrZLLWrr_dUuPzrD6OATvOEraWpF_kfWPtOBN153udOiMPJl8G6k3NjAv8tF9Jf-vkAnQg_pcgJsJ_xJ9MDBfzBS0ebNKkzziL7moW38263doMOuCNAieS6Z7yVUzYwRWcr9iCMNWXZTsdVUiWS0lnxY5M3AavrbiGmRlW8yHVbZvOn923Psz6R3EnRZZmm3aOOQA947FmFu1uvBap2LmpkI50rNWpImxC_2x3pPP6VyYNnFxXEyKhhv9Qe_406blql3sK7MEJDicxCBrZP1b8BW-Z_zFGeliIwwjFAHi8MYN_lpX8VyeA7onDMfQchcfzT8IkCVOzchF-tDo0Q1YB0xl7ZZiYdkm8ssse3eiVlAGlWU0YArZuql9BM3Z7a-tXEGFewfqKTT0bzzy0NRpAVeFNLbpn4iy-3Rx2YZiWJJvwdE5kLYcnpdEreLPgvSQFVtiEWsx4mTUmhfpup8YH04JBAhH2Aw47cnj_O4Gw7R_4b4j3h2shwQn4Pl1rvkvEJfYeC9KKaMFWnmQ3PvvNyQyBoSQaAxmr6g4IKvgMLvEMAfrZqURxmlQx6tmMv5d5B4uvqtCqi4E1cl26pGt7HmODGpxv1lOrblNwVrtyk4LOR4M1jXhF06gbNZtU4b0t3eyJDQZ8Zs1Vph7NAQhXNbG9TBKB9CkH8JPH7rxvX1O9I8zTtwIgwGKPA5IW-TMqRDRO4B9OVDocJqhXzek7XFxA0k7Iic9mAzMdE36XJ5_ocb1Usn5XN1ng7URDrvhvB0im5jf7RNEHEttBWZ0Ob2-XSZ-cMcjJ4jVqy91OW8xcJhI1MBLl4PGURye8A3L0DnOt0xR60c-7YoJq5pLqjfixmRwcLSO-Fgor6ZJn00S79UJ5u4K5gf7eEluYuHYSYOrEqHaYt3WeuMNmTrZVT0E9zgybNpCpIloZ6qx3nCrPrTw3b_cJ-6cjrMh3kCry52K29QatRekRoQMCnnAv3Q61XuOWFsCQFs6QjBb0gWKf5fGjSsREOzhO3teCD1qssPvSi1QMz2NhnQOstBvsONawYI0Q2zb_9o224emCPMtkSW-fLTlz-DFSM2_dGlXrq0q0qwuFJsB0g31HSNLcgE60AxCFotylPtKgt_6etV5_E2AS\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673e19a22a6483-60269141','','','2024-11-20 17:17:37','2024-11-20 17:17:37','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41625',0,'cd-form-entry','',0),(41626,0,'2024-11-20 17:29:06','2024-11-20 17:29:06','{\"firstname\":\"david\",\"lastname\":\"kalopulu\",\"email\":\"davidkalopulu@gmail.com\",\"contactnumber\":\"0210344889\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA516ztLjNPfxQxaUoZSh6Hd79f2joRuvtP76zK69hPlpuZxi8PCS3qe-QnEVZrbmV52-jLN6NqPjBL_PZPM5GyFfYni-K4kG66fIRUyGvgsvhB7Qjif1YLWdMyu_vn-5sM1sJgJOYhQAZRietCMOoy8FBDdzTqThL120Puf2Vaku-VpBNO2JhRRfOuxnOkTKuwead_BYHA-nNxxNEZLZvLUNWAwIcPDe6ZotD8XAHJHC-nR_DP3w7Rn3RFqL8SX7oA1CU-HXLWCNbTRNyOkrqiuKllYtW3wIMP3jft0bSJSkVV1bZhmgXGCzoKzo3HblFt6MUgmLDZGHuDpUDWyHx_OPfVe5Yxo9U0VsNuJmJCc88YdJ5FwyoCga25ctdLuFHZZ0_VENEOl35JsTtjbQU7f314sg_X6iBCqv94antjgRZBET5kj5x4Qpy1kQELcqHngaOOzYNvmjOICyvMibCVtQLk6nOdPz7YPEQSx1A6BkU9arX9ZEFkgij6yilVGP7M6r-pZ2nU4UVMn3_uMquUibmzuvP74yDsRSE_OhWF2VIe33TXyoZD2VrAmPJSZd7mO1YnS3hQMiG6ALOSIMQI77BeVJ0Fj8jncnnyTc51_Sg7nPMJ7XoLRVwacxZQj1ok_F9Bj1JN7Fmo-c9OYAjRtP9xA5aL3UxtCGXXNCSLGiQfaSxAmW6Je6d9L5v1vBbRwlEglYPW0V7E-FEbDC_jQJskFEiL2HZDjzvoCv9qUIzWzDTMFWueMgGLECo5D1VgxDqQs1OHCxkrvnvUKtKXiXcGGjvWsZKFrI0_25_amH4gpau7DRgGqcQ_ubXNbqW-q3lJ09XpwvwYKLHryAtNiVdry6O4X64TZc97bDw7k9wZdOzvrmCMPXsFbWisyBp30KtaPEixsZE-zQn8AJ-hQUAydEjo4shFB0llEIn-VLC2pbpCch-dTpZckQRUAz_JpjJpeNqsJ_i96JXYrXLV7CyK7F_ro9zqhArhSsW3MvRd5nEa4OskluUOe49Z0utoNKy97un-cYffGjqKpVMaKoSf7oKKYivOw1S1qZwrLUMu6lwU6jnVtifASc3hHfWQZbPB3JZWIfmavWClZvnh1ls8OIUgYEcNcGf3uNaTTxp-5ZFW1UTXKanW7Qj0UgMYNVkrdmslARmcArmnOOEYs4-klfHrH7SwRIvUAd0ajvcaD_anl-9f_E8E0v66SUrRJcuHErtJPdsnnoMuu7UaQ3QZzRDZWD5C0sNcmgKkMY6_upqlstIMVAmew6cUIC7CRJOyzb-aPoONO_4j6NTe10x5VgJFKtdddMYONRv5rLwt9b2v3AxTBnnckUwQ0Bhlr4tws4G9PsDClh4xPJSpfl5_Gx1c8zWgCE6wbXphvcPabpvmP4W5a6swiisQJp9DLpVWGAS_vWn12YcyzdqoKo5NE-ToHtGjKX5dQv8bTVVx6orcP8M_waX7-zqttzWtZdXDx-RflAz1b5krGoYfmum0vKdXooeW5tUT0s04H7pR3knIGuswGvRdMzgZaywo6O0JZ7AJXWUA2AR_K_Jm436wb84Pb3VK0JPu9Db1RcT_ZWtprurbyaURWOiY9NKh8Jp_K_44DLeOhi50PumLm6kdRJYeeRCTsQ2xE30Yp-CozYCGKWbqjd6TYLFpoLHC-5iYl4V28Fhmeh795Poo7bGhehGcsOF9tjHHLl0ACcIuSYqTQooxk7UjD7zlpph0F88zT2Gppk5qmtwoPLBNL3v5rwIw_OyTGhCnPXSGEO4R2AcQHMZHRU3suKuEfVB6N35Qot0TXPEbXvy8VGnWjhV2bFNyqTt_NZpZqxyMHwrozmbyqjmpj6KLRneWP5u6bmakB_zbMHppYxrpJKOacvUdU3kXs0rwVWaE_K9Ot9TA80HHcj6RfJqVnL4mTjpY7mCXCR-bfcUQZtjBSgOjf77pAsJSRH43O2Uo2S_Ys59AX92Y\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673e1c59270500-50959489','','','2024-11-20 17:29:06','2024-11-20 17:29:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41626',0,'cd-form-entry','',0),(41627,0,'2024-11-20 19:46:53','2024-11-20 19:46:53','{\"firstname\":\"Ali\",\"lastname\":\"Salavati\",\"email\":\"alisalavati23@gmail.com\",\"contactnumber\":\"+989302671920\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6TcUqIB9-uSOIdRt_2iBPtYI26lOXXbFWTpheEo7k0tZ4-gIK9WjbX9JNWbPEEndigJa6Xug8H2ZO2ACfW8FVMQKKj22tKKwObs1J89Sa_wTaNkVfM9lq3zbQ-Nk6LGQfMNfozKPXK5x5lPP_9fYx7XOtathhc10axHgiCQ4kwdaedf8xIoNVQ1E2rZVzENrkuVlEnE_f0zn6CBkvftxezx2Y9rMXOHfmh0KU8tyOXjbzf1vZq8ZrBZ0UKPiRyYdwQzC8DmN7ud7_78RuS_T6MoiUmDjBVC-fCRJUsq1U3qF0yLNShCy3SnCZp9d6R-asgx3QGw615Yjgw9Hni9QPThkx7jttwD_s-KmzSfL0QgMruxk-XeyK3d_WOAMxH5GsHsCDHaqD4tLdMVBSF92-QsqS6bdKxbkWC_TjuFA7N2F65YZlPNy8LtL7fpVaQBskOceKamMClCnc1wJpV3CQw_E--lCRmI3zaZ1vK_5JxPyrIEJDGDkVgVIgH0Ile2PATEZJAwV_jj9nmpl65Kpme95YVEeDA5ybHFYnxBYS2q0DH-DMXeARqjLy14VV6-K-FA787vWMWvP8A6KQVxNTSPajGIIkvcSi7sf7MCqIHsW19CEmyLRhiDU6-cNdKmEVCbVvx_0oMqVImT8MfXTG9roXOD0Ajqab40WxFtYOqfKposNbHBCbL1IefyDRz-Qiiio3NKW679WUJElczA5q-yJ3i1jf5w2AT1IXvXmNdRf13SLSIdGzuA2Y2aen_mXbdGSFaqdMpqJOJLCQp3aWZrOUAl17vBxHnMlUBsEg1Styo9hUHtJO4t3NjqknF3RWkmhAsvTrddIDHgXxVtxw6cjupatthVDcS2M1yNU6Msc6FyYAn1CS6rzVDSYzoY4ZhsxmlENddSGjLakFKN2O2jYuK_UMiHA9feJnaQ85zUKTFtobDSWQuLnD6WjCmcfWAOciMDFUfe0k9C10Utst9iJQTJVNFfjo7FZj2speo5PBELSjDtMFTF5ppwePpmUnSpLVKEGv0duQxzOmwZGnlw2RXhbglCnILWu7QGnZUTbitrtdykNiZX71ny9V2hY91X-iitlyQEWb0_MbKEMu7bEd5HQFa4vu-NDWIC9TAAaG879yUTynr9XcSUTJf6LzuieOMs6EVZaxHDpyx_r9Dv8-da7gkHwcpRqqtwmRn-X7-kwx6MXEon3oexR9Dv6002ZRybekQ2kt3qgHHyl-3VYh1ef40IRmEjgtLQP7fSm_PQaf1PaB2o-kotWPDpl5aV4isEPaQKlCCJnOjlU2EmRXfWRmQDe5uq9xGvQUxP_Zo6t9ReEtFoyhZ3P2_q44HD01-BB-W_RtgqznklN77-suOMPaC-uZLG67kJuTvYDkNQhh6wMNw6G46IwsS1CeSR9DlXI8FNIhKslI12DVPljNex4BqnZJEisbWdwTiJKuyTkjyf-mJro4rzvWLnWimZP9FQhkZsRsyxtv7mpwbWO_W8sy8uCJu8zMyNZEIy9FpylD6kIbF3Op5RTrRf1UQ89n3vpvY3pkASIvo2vj_SEdPr7qybH0LlBEZeXWgA25t47IoSX9BcPRxDCH1xIGn5_G2wbalx4tYspEki_NwfUNlJQhxWHALyb3IxHtGm3mNDInfT6fsvecLjxN-uYersNejeV5fNogWzvhXLcYbvuEh4NIYxxHXHEVv1lnvAF-onTtFLbqq5ZbQDfasMIO_KknlZdGTfpiMKn5QrEL1V2-XM1G_roE-iraMd2DPznTma9uZZcWUTOWeuPrb2IuJqBHzKslcu-ZyZcgZYHrucrFV2F0XlERIFPrhtqEt39U6LQn_gwRLqT5IRxUzUp0gakrUuVFDzdkdd1eQwW9HySG2r4qIAYA-eViAN3kMf64jPF8qGCxGcJHmwuNSOerYZYBFx0q-93hApK86IC53EixyoRC-9PlgldQ-PyCCSqDg96sssz_hCDUP62CZqvtUKVY9tBk63rW2pdOEIA_d5Km-Uy4mw1CeirYCY4wq3WjAg_doahumZXyGkY8qXTe_UgM569oEIT6sLMXQ7V0Qo-qzFPhnw3q0qUQMMSCtAJ7hQGqWjkZTb7Nwjd3hm9g_sjvvANgaEWZCAVMpg5MF82pyb7kAJ4lbEhiFAtEBEQm9nT1e4BcYnhdBGc24Nlbpv5wl9ItcMO9W_RbJj-2panjqiVsxVQFQz8qqgDb63f870KhxvSxj0S3DFiZ_iKQ0zq6lgBtzUd2mmV_y1_Ml_-zsJn6nukyfKJcVWonJQkogBmc9dzugWUo97hUjQ_kSF45RwghoI-7AE11Ac5IJkClrkJ5br29mlM1AsiJi7V1PZOZEuLp-x-JypT60AwN4fP4WGy8APjwBMKGrPt5xvjDqYRpTYBfSeVogXQhsh89Tmu7KvTxU_R_hO59pZAteBtC_MDk5kTFXcESYHAcxpg2GqA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673e3c95bd1e14-31128085','','','2024-11-20 19:46:53','2024-11-20 19:46:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41627',0,'cd-form-entry','',0),(41628,0,'2024-11-20 19:49:32','2024-11-20 19:49:32','{\"email\":\"alisalavati23@gmail.com\",\"interestedbecause\":\"3\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"4616917679\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7viZV3vCt5cze7LReXtpgIWF_rWbyDJlQufDf3-fSHqe1K0ZmSEkZBGQalN-Ib32CYxOeChL_9cXrXL04flW9vjH6vyt7DLmcK2BAWZiyK8BZrnrzoF3w1Q1tIQNrFbNpUPPCKR47gLhMQ-Ns3xTKV_Ok-A_CAcWewmf-PdHXkaqeqTT9fKwtIc4t_35zeKdY7HGkg2ckvdg-mYU4FJwvSRaC7YbcBufF74mKEA17a4ITDAaGuYJ1dZJ7taTBr4kvSAncGw_cQ56wKf22oJagKAgCRfac0Is8dxYedMJI2sqCPDO71ufxqdUnmd6_7VqaVBdQ2KlN-otIxMgfN2gupChVfJsmBdVHP8AK33o3nd819xJvVnd-WILkYJgbqmckgJ4iugkNaPpnLroxkXVwDnYTiqAwQbAYifkshRFWtogdVEPM8oStjcOGQQlzyMZv5PZd81c7O_IzqG8M90GEUPykjSWByZg-Wt6jQRNx0aO66L5E22j7Z4ea5oVv456bOZ0Q4WippzvpA3VqkQSd_0rPZ-YmB7XVbAgHVWJemz5ElJQDPjcTVXiapo1WUqG_hFpaaIJpQDP5Lja_ya_iqDOlCCEuW3bh6dEdiUYAXrgnvNHIAGFKX17wvvwd3GgOEuZFBkISsLUVpqit8PSyEjhOFatGGKXOvk1SFt5K5IQW8U50pEvNOtYTnvMdgBSDFENGIXiibg5RFMzLtlGyljfE-jzX01C_qW1oLHJ0Fs6uupJuFAz6ykuYYops0SkbOLjKq1Tz9Ij5rTyUifynyrwtQ1DxIo77hVqsyrPPMz6xxp9i3voq9_9tztCmUMoTV4ycEwtODH-CICQp6m0s4K8J1PNm0Ut4Wa6Z229y_9Ux-O9jVNgFo7DTzzgT3bH0epXvBkC7xGsJoO9CMAWc6EQaDgNXFhN-hI9TNVWpLb7TzNxjRKpOiNKtJNKT383_aqCEEam8gl7M1FghT7JGyqvPw7GBJPMI5THC3lZo1NTUvuRp97LiVl8fHPNO26YwEBoJch6Xt74KVuKzqexDf3LwxC9zyT1MtHsJlUBp98XC7zwYnZ9HYCtO_2Rf9ibiW5VIs_HFQaJDbKMW3DgxvkcuRXZB17peZoydsrnq5Y4a2a8HvA2BtheMRQVCNr73JaFgy4VOFOXNjCzt5kRw4f4qj_qq84XT3jwtI9VC6D8jslWgSoerAr0n_VftlMhPnn4gGcZPX0E4sp9bISS0bAFcqCr_F2f8_zPIjBCLIusAZWZgHk6UylY-fVUAtkVKjgAz3KGukJ4vsEaAKT2_b-stSsEOXCSVnIenLo_xQV_LHoj-ywnZrQs_Fjrr6Fiav8zfehWzuHQhu2Q_EOuI9hoZDigXU7vGGyUb9uqIr-ImYFb3sYDsZb5THSH3NorbPC1BNhR66bBPPsjcwdV95D3tQT5_V8kNzjnwlEo1Cn42BRjO3XQkxnt_yORl2Dpo_QtY92cUw6TlW6UTHK-XRj9kSOHgN4pOu0CmNh_9HbLdd3kV5GlDv5IHAMpSB7oXAS0fH08BI1K-jI7yxfBv2oOUwo_FcamlhcNdcC7JMRdLPuiLeEVv8rVBf6--zEvvjmkT7sWilCc0Se_Om3H2Lgcx711ZT3havvzUrafEeuOqBbcBlHNeIQhLp7hnIeVemZjELeg-BpWO7m-k7RCa23EJ8savOupQq3HauizEr32GWU_eZ5kvCxkbbkkzI6Nl3HZw3w4ZXM9htvcVZQagDH8DRAIG_S-U9rnks4xrI3pn5WUFSENy4oFWpE-xZ7EUFcCy7w1F02n_LdP7AZjWc_b7JFwLcaD21yMOlLA9Z3IYLYdPAXHfaasCVx43fQjzyaZpOc5pfIDxF9y1F1UWnysjgV2dBYyg8_uZnXFZUxWGPAKrYeHE9ApEsp3gOxNlUeiymHRTWIbt6h6Snb0AIceoNgEokiW7YacHevE9GlMbhG-fk2IapFNGFAjVW0V65qoTpz3oeiztLR_wVbETRpVn83V_2G_fULoTWwAFmTx64VIlGZTdEfDiNcHiPhfgevzrZ3Asc37JatiIXP5Ogyw2D6e0QdrdHQQJA1vkPxs9ZRjJ6-cwdBRQXg7-Rfo3WJ93dvp365n54afliE9kq2Dpk3bTX6-XBq99LKlQ5k2pR_ktfGh8ovg8JKRk_4X-RMbJSN6eJFHolLYBy0SGglj10bdvhMiJeJC2wXrjSaLHYImX-8ZFp_X9ijgBGKqcoibhtW88PuWJxGSqXIXq3gdb_RLM0uk1DFkhnsdtR3OPDH2t2AJfbjSwWVqYT8bhGcmVEtqJTAS2FTk227-zC7zWvizYxYABM6EdeG-hrV2Oz9QWuBqqzsn6xvip6aLrGYAu8yi-oLaXA1aU9v_TzEC7hfJ5d_WTXb8MJdVLwcteX1Trv1fMx0sotfiZNm86BywXL\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"4\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673e3d067fb606-56544299','','','2024-11-20 19:49:32','2024-11-20 19:49:32','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41628',0,'cd-form-entry','',0),(41629,0,'2024-11-20 20:58:09','2024-11-20 20:58:09','{\"firstname\":\"Dan\",\"lastname\":\"Hamilton\",\"email\":\"danielhamilton33@yahoo.co.uk\",\"contactnumber\":\"07985103866\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uA8gzzsECx0Md4CqSPWxnKv&amp;gclid=CjwKCAiArva5BhBiEiwA-oTnXQc9mEcKVYNJQ-h4n-N-M86ZiqSrTwZWQU1S6Z_XE5OyVpgekza1QhoCHJEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4lRV8Y0guny_ci0pO2lHq5UoPuiUyWwqWDXhhpx6jZSqImaJvP1jpzk0iIhlnoU8VqAvkaJAFizaijfClHkSuyARPs6uN76aUnVc3J8n5ZwEGdYkz7apTLQkZVaxMFSllRrkZvCubC3D1IcWQYKEzWLygRnQR7gw8SRVOX6rcBdkscZyI8b9uaI5zkK3RdZrIggpjgM5tM6tP1MQQW3Dj5pCuQTuSofN5oSMgBzl1_qm2fXnqE04ErbKDOXh2DFuWqFxrgvvSmX0e8-ZhJruMPBiEXJVaDJSGzrE-MS1KaM2v7CKOCKiabKCEZe6BDHc2R9-N4_K_ISu-PZbBtbDJ0U9SoGchnARZ6WFw5vB35Bo7DNe19pN2qSrIWGvk-H4cuYpYT7IDtczzALS2umgFYntjNezLCzaxMhBfLeozZ50YR4dmYe0wQ82FTFyB06jfxbhyiV9qj_7axfGLO_urHSJgxLcZVl-SfXibw9Mi14JBTTk5PDWytxKqo_et6jw_WE4MvJp5gLiUMTh53azMCZOGyJxcHF6a5b0b4YWQcLDnd7MGVor2L3rcVA89g_XX31SY8a_KXZuc_fozPs0ErzOT1YKkf-idJ9ZV7mOhtv070ma4IYCIy-pLFp2U7licso1mhivNCyfUvrV52a0rwH066lycuAXgo7O6jPOwP2dINkTKwH5SJBR7pJfzgxxb1J6yzjAWcStqe7-0ickU9qyO-qgHwRYcx_n4LTQQlMirsxgzo5_CphOdjUajwmZMfmw0Vtgz3BoBrcK3PkeRwYSmhyj2aonU3xLS7v6W9PljUMxU9ccHK8l_glDUtd3s38nIhwojlOwQEeE21U3wI3ND1IezqDS9EUZGWxzApTE5oVt9ubP7F_y-270ISSf3uIdL_xGyjSfxC5N0S1bbg6zCeZgdo66PcXtvXQVE7sx8giKxYG_bSxNsAh4Q0f7dmUNUrgou8j5Z7vNkkIM36mGpJDCzcwKFDfh3nz5SxU6Qucyo2ii0qAIxIigP_ZBu6DTa5Y0J4XmykUy29zKYWYs6f9WwPTSYNSnMB0Hvj_vIXs-gSO2OOdAGISrQSgDogTdXvEDVnMEFApPCgX-6z9Iib7Ra2HRt999J7IUK3bQsVUzkYDja663IYmyBtd3KBVKd84_XZ_HA8TPyLmEvy1X6LMGOrPWDC3FYgLJFrOt87lKO2FtjetnnyOYD5yxoJbYwdjrGfiC1sWngqv8s8KTSPoFmzRFicfP64VNtgRiiXD_etlYShY5-O-PqFH64jujsXSoF_Qczu5AOLRIop3kw2WkLOOGWrNicgXyTjbPT3oD8_ENvCuOTgszS8uFNIAcNquMZwy8ao43Swu8fQ98EYO3N3hQclIa5svSBtEQddtLyyqO9APP_a6jBfynMOaozw-75bmlF30m8ttRzwExjtjYbRtS5m5qNgJd1O3ba2ebaEOKffFuC-AqnMqcoIHOuQEF63RAV8zxFqeTwd4ejbu26JYrCzjGmEOlst4KdXpeukwbEz5DN19U9d_FcLBiyhMBqjlPX5Xv_j6Mf7PiGrczPvUqmwyxJo6Ddhap765Pc6EV7GX8IP631T9u5K3iosXyj3IOEtjNOVtjW0RPWaHBuF0NM1OYYnLszGnV0aQxf_buXrKRFcEOC7T3PvE1Jr97FOwmzFMltIP-djd9H20_BLe9xdnVYLbhqsBD9RuyBJZfH3WCzaeLZMgUj6tC5H0TZhvgIewStUDphZ8qAObX8T6L_5motN-NSlMiWSAoHOKTK1Y-xSpt8mgSaBM2-_0-P7AbF22F4c_8B8gXbm5iXPEDOzwq4O0ETMOnYMrQha4oOB-BBDYWPWnWmyAixdw0CQ1nODDLYE2HOfHo0pYnpRtosVNJYc8r-jsz5sXNrQDaGQ40-brNx-JEBzpFGONtflCahOf0pJG5Z6i8ZuTA47FR-O9NnzV4DxP_jFrygrx0eCFDPQH-Z6-cx67fFreHmsTBSZa4bW6fiVGir7oC-qqOZKnnmjJf32iPpw1KU_MLCPqjpk7m5WjqxM9pJZIBeinQ3wkijm8HXNFLOM82GVuYMwnA1BEzp4Lat_wLgPdRDty4fm1MCQG7ZEZS3hm-U_PaGLDfh94oYy_IS_LAe7YUTWNbp9KUV3gsuNFb6l4x7_Oi6XFOnNmLZhbwJnJnngpSw80P-c53vj_gB5aSbFwMTq_leDu4Idg_2lgIvS_hvseDc8BHdT6THuu4mJoqkFBoiGCP-S9we_2VuT1zqgkG-2lmWj3Q2cGTjSmDA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673e4d4ce96323-19252369','','','2024-11-20 20:58:09','2024-11-20 20:58:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41629',0,'cd-form-entry','',0),(41630,0,'2024-11-20 20:59:42','2024-11-20 20:59:42','{\"email\":\"danielhamilton33@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"2\",\"currentpostcode\":\"Ls10\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uA8gzzsECx0Md4CqSPWxnKv&amp;gclid=CjwKCAiArva5BhBiEiwA-oTnXQc9mEcKVYNJQ-h4n-N-M86ZiqSrTwZWQU1S6Z_XE5OyVpgekza1QhoCHJEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5ufnBjhvcEatz_KP9m11KNIOWPMSdZYGlsVbVntRwm-umuSdnQBrlPdbR85CfOJswy-zMN9sdplcw9VlDSx1lf68Y3I5vCIsbAzCKIMdIMogb5ixC7rM2BI8-dERBbb_X5N7tS2g-mZ1-qmY7LkDp1uwnjm-XAKNLRXtmsl41gBExIkWn7iALQFUQjVCI4O4FbdRwkpgHB45fTd68M9NnRELDLGv0DXLuFDKswQ-Abbav32S0daOCn84HVdb5QUK98Zt3VLWkF1x6zRSOQs6ju-hlqZD5j5WVwWy8zRuAEaSgxsUmp9Rrt7Xnon-fW1z__yJN5wIHkO0RLnPpeztBMcymH_U25vwbX5NYIP0r8EASZnm5yWUMEnXnAnwLMJ9_xQUPluOsCbpN8bz5nnVjWEV_aifRTGJDyd5_N3mN0cP6mbDYnqc5hrUZsOOQwy1ItNIUj-07NmhYkNcEIiwXDgoHtJ1FKDOv7_TzxAUwx5Y3uNhzNHHcY6aetgKWgsTqKOEMn7TPA6Nl8XLENGWcUUnqgvRplE7e6a2IYd3Mzjn5xNKmK3ikOfj5Td4igDA7ERjWQ6PyT8Jy1TJSBZSsbdTOfpXWGdGaNaDq5uyK4sdwZQtHCOafYWcm5oKHEfvOfXo0WXC7VR0w-ztwJpj44fOMrRdr8gyH4AiisCYLZekFIPSC0pcoItUOKYHAapLdv3boyN7Aj3mi8EiC7GNDS8m60BkMXzE0Tip8OijGrlDDyJwItnSuABZSczbaKKudyCks-AYAkw-r5f6NY_UkxT85SWMLiMzfrnDUYI7SrwoohaLioy18DszbvKA5f9M70B6xLZxza0Ayabty6mF6d--qMlVoblF-_pLFiv6XqhKUpsANSwLnnQRQxV490DUHBdIlOJ3cbeN3JnHRuZnvKdiGiSYR9TYJ2j_Sz1Iknn8Cx602FCoIK-7UQjXKcbhO0RQOWNHJ8T1E90QbndR8VVNt9RclhvseYT49HOgjgpzvtDgR59_haz3iWig_rMSmgIZbkHDNLFuA2M8S2_LvdlAXJUiPcC7xmTQVsowCi9wZIK3X78knWh09UKHq1K_N7QYhPA01szZFzvBSL3UKXx97VMojgcyh9oDcpHMLYyK7KGlHIlytmGE4ab7enj1xRJfzjGp7ZdU9bwVXB2WxpJ_c8rLykJ0x--gh5na-tAiPn1guNt87IxL0hE5eB-sITp2kfhN1eIjgu422hoHHPb-ucf2aVBW-m6BgxRklZFvUnRvpACAl3mobOhBpdA2ps1irffJxFonOFiBFi9LAVKazr2HKR2xpwSmTcEWW7jOfqXU4s9JI_JlxXbz4dBjxfBi5Duzx8StbXMpglvHHaO4uSU1ueaCeD5Ihlx8m80sQnoIliy0_ZqcVYkccs1fZGrngDYjBm97foeQP55ZUIfIEHBva1XZrmawFvtPM81b976SNfXG5WgIQLiEwx48NMtTwDShf1l8BXjy5K77A-ELFVj4LrxRUzmMMzp7uaWJn7xNRoTY-IBsphOrb5aJzAY31nyd4EbAeVNxdBad8RL3NenKmBor2SO7SIRR0PwRBLZnKJ1MQoq_0g8GeKYEjg_ybLCv_ZowZBW1eIPS1KBisXqfuRfXf0PgRG5T8MifMdk-PLYv4oBAHWdtj7s4n4_SKlA1LBYky0iaTRHXhrRqAGf9FHJi05jDkynvOFi1eN_pEixuApk8uqLtPP1smCcfycOszjTmIBMXitpCqMHbIhFkN3zb16q_cMlf4SjxAucGqeAH31JdG1jlfL7oepbzPdd-tpU3bS7DjwoKTVWKVvyfGkFtcQqEOYzm2JKD8IWSulyg-muwSrX2GUJhu1QtYFliiO7uBYW7zPmeCBbc03Ssq2KYd-JyI22lfwJxQzQBrdEqlcyPC89nz9BdK9cTehpLn5amWGgkl9v8A2rEsil9PIF05Bw5u5we96KzSuDwu8wD-KA6yxqLRCWmLUu98d9KOWN2R2Z30uJvgUweMK429utHJ8V-qOZBJWPyZjwbUGcudru9mWmIz7OQ9suKOciU_QItRIzekolnj5B7IXKMTtsrQDdMU-8tEVPCLKo-Im2pVA1Q7SKyv52dwyXAq9kAHJMCdbUov0teDL6h21tJ5OGMc-V8-wBkluxOd9eeeiYcAPFS_Hce69C5wpzNYG2U_owdAwH-e3-S6PtOxTeqRbmfHWxO2cWEgLO0iOQbgXbMjwqoLS3Cy-GV5EmD7B0YFfr9PeO3kzC-ffytxvGKMrYB0HlK0_pDxJTnS7R1M\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673e4d9d741a78-59864218','','','2024-11-20 20:59:42','2024-11-20 20:59:42','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41630',0,'cd-form-entry','',0),(41631,0,'2024-11-21 02:09:33','2024-11-21 02:09:33','{\"firstname\":\"Sachin\",\"lastname\":\"G\",\"email\":\"sachinfi8fitness@gmail.com\",\"contactnumber\":\"7411433151\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA7_T42jsBsgFhPU0ZJBHTSJjG4PzqBL4NKb05hVouOgMuK15-mqK9SNw0aMSt5uXKZM4--b5XRtv2J7_gde_qMK6BU3XRyEbD4K4tTr_EJpaiRqCcyMi_XeE7ruuShGDdHnF11A__c90f1P1yOzFekurfXTP61fRhT_2mePSoIHDQ29cg5ez-Zg0VWt13oKhuZIaA2mhh1j7hP2FeMGs_3O3p8v2ZP2ADa17cxkj3g0AAq8fLH35UJb1dKZuO3WxWU8rMFkSOGGlIkL2a7mT88lgMpUi4EDk1OAZCrpeSP_O_fcOWkNI2G4kq011x6ptD52cvTl2Ec-SH0Znl6q3raQK_E5KJnKNdGXwKdd6P2ClVdv7CsWUmlhyXl9hgUObObZj0-k2p0UNAYH9nmKDgQ-fdjYjfRRoKspROKmUlGM2VVdTzB9pJB3_y4q0ZAGMw_Ni1p7gPi3dyUknOybpshWujHPddUc7CYhie0LhTVh0Z0gviUBu_ewCfY88nYXce3XnklehJhHPvp-sA_rqEF3BEfBoJ1A_EHAtVMSDgUsZoW5wYG0-AHLtAK-QobdAle-9-eUS0zqwsojXQ2-L7ZPwZGKv3CK-Bl8GJOw4u3SJLgpKhWhzNA8F77dLjZR6KR5Rv28Qnzu0aNdaGNmnhZDbjPuyyLQruJVBnxYIwRpmhpgVWMydTGXX6nHO7QTN7sWZXhO4EFJscshwzS4RsNEJM2C4GT74dB78evY2KRKgJLFdigr1gm4o6pFaPUMq_3_EYfv6JTAZWw8No6k9gLjMixxAerEx4dgTJn9S7Sb-hVP6-vGcXxIRW7SrKqt1DU5wU_Fjg_UsTVkBKAAlsgCkIzl9cM-zLW1GUf8n1g6kFrZQQDurTJPVASKpEWFFhBYhf1b96rDtieITh0v8LFZSdUUTaMSjFbjHRW37XIbIGBxaouJ1Kw0vnfAlkcFDSFrqeaCysFPcTzI_sr85FXpZ_QIbX8oLBphAoxVUDHNa67ervNKKh5uYe9mA2tx2t6qbT-6W29rSxUPVUSP2LXsKCISoBp6FC1DC6vuVEwka4rMlfhksSNclHhRACgvVILGj4mzep-cWgKVS4ELluQvaYeINt7EU-BObwC8cSGQA4cGHF1YALxObAgwdMH4ZGtHeTxXS2Zu_OpG4qVd3FZmasSOzFKyi1HvcPoBJflXRHSmEZR0D40_MW3_8Yuz9HL5GHIPpNhdRqwVKY35fXiGBl0jWSGs8uE81-pCCe_-xrIZeOaxJseyrJba_PuD12V8mFQSeoX1heg4wJ9v6MbUP_ZSm5qKyM_iWwXT4sAM-MgcJqLaASvvUScZcoKtcZQyY8jI4MrqUp_LYM7CeGhQLf-tsbJkTiL0Diulvudb1x4h84-rZWtshNiIjKK3W9728fkMkm_2jqQ2mOwlg5U7-l7RE5LzQs9HCz55oZotNLUSMKexp4DbamVDtVx2k2pYAkW8iwMpj3AIAP-WMOHWLu73Uu3XDKxeuXHKWTwEivvhiR1naySyi-_gHcrNh-LM6N0lM9wMOEZTjiYoiSC2Hd1zJ_089TYwoCa9RToY4lP_ldwNAnLQ1jKmRA5XYzTzkiTID_hQobuz_sqUCTyCp1VFmLLWZ4B9vKN4KkOFN0IfJp703LxJhuQNNyJYS342RM8Eft8VCHCiKxSohTdGs4enYS84HDeaWMDwW1IXpYr1LOvf1LHLzy-GoqGOxDWdi9_19aqxNhzONEpyRpXk3Xhov6F_LssqYD5HtdKavtVHNF_WeR-OT52YjMUi0mckn5pFZcmY3vmPzPPJBYfU2HSAM1J9WhLc_mhQvkaTASF3jJ8eeyvWbCJd_ucx4eL0p2O8m3b4GVbSMlH9Eu0c6CKPO_Ym_4mzQynsfSvhAV38ooOjoYB4RiNvKIjNTgsJq5RmPJ8KR_lr-EZlNHZ198r15iCNf0ds_z50N9YMHRar9Omcrstc1v0hivXquxT8zm-aLxXqxbK67m518CDMisEQKzWBpJRiKHFwbbgWDLdaCDw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673e9652428f21-53082673','','','2024-11-21 02:09:33','2024-11-21 02:09:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41631',0,'cd-form-entry','',0),(41632,0,'2024-11-21 08:10:39','2024-11-21 08:10:39','{\"firstname\":\"Grant\",\"lastname\":\"Lindsay\",\"email\":\"info@alphaomegamassage.co.uk\",\"contactnumber\":\"07478938998\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA0fu5BhDQARIsAMXUBOKgEFQ50wv1JX3d5nLvWN6qDi5vO5OkxGDAVaSO2wnCoi7yC_zNkfEaAsy2EALw_wcB\",\"recaptcha_token\":\"03AFcWeA6OIWBDiHw_HCOS9ZZR_FQrx3IPkP_vH4zGdalFnts57JcyPOwsFiWvupW_VP25uvP5_FDVOqLhAEqMi6ZdikNrfRqGwRGIdSa8wsXv04UosahFY2U0wNRcY9Cxrveo5KBSl_fdZvdwfZTVbzdbNIDZKNo6mWpbR1HV69ny4oQHR6-9yiJybuSoEoI_NRNgyHJTbOFQ_NYS1ishd-3tCHTbAfLQSfyQt7XDK6teeZ6gfVImTlPjc75o92RWbesk927mwZVqjEbNY3JACsGcsF3cSQ633v3UXLeiaEDIf3NQcEJ7yVBvTHFy6Uhe3qy50iyWnOpKQidKQ6hoiBZsP9mewf_n5mYH7p6CNWKS6TAKJAziDBGZaLzSnKoM5ZWSikmfBYsuD9vtc7v7WiG3N2OiTlxs8RyMfyxmuNnICQc3-bkF7gyLZvUmX_ubKidn6dqwyPy7Ss626rvNXN5heDNdcSoFKkDEC1o0uY1znm08QxF0kYeEMx2o-kU_8_kDZuY1EyDUpB9EsTMFJclUDvLCIamGF-hviwQIZ7ebCrYFAkyrJh8h7DNAV_a9z6fIsO8KlYIpxHqA2sw1XvsnwU_0KqTTod6D3x2jPLV89os_yF3QfloGCKTPMVjbUNqxKEpmz2aa8ithTXHxZGtShB8HmkHXxU_TfzGxwDS4-RihLh1NsBdWWvvdEbfvDjgVhiZTnFf1s4Lir5Yr5g3f9A4h990oojxMwOnzX5Pj9C9TTY6rlnz7YjvNLGad1zxI9fPaxiu52lbNf7mEYpNnQJ3pjHQBtEXFaUG4Ig0rN-nA8HG0iqVRi6t3hqT1yZXFRLMRhVDFkaL5M3t8gd6tAhsZQjfnFbiTTIW_haFaXhsll0vnd1PWCoOO5waya_N0huxccjdjLsRpspUpVPvJfdRNcAj2PVYn-kt8sOmaURUZWKXmjx-Dv4QLSGDuJAIcBjuWmR_N2P9erj77WwDbaZMlgcEaJrv8Phr5iwvWGG820Caabjle3jCtejlXfTbbzXETIG4f23AoWrZsRb-lqb5jTCYxYYjyCPmCLYk0YnDMPdyg2_BLyElmmOGdzy8u4pS2ns5uvVtO33bZojtXzr733XTCavIBwMV3DxmvPpsHnidbstEH7Sc9dPDKjfjVcZpWq-1dKVm371pt1dr1hCoN5ZxiwgDxNark5OxOheNOpZSrUzWIH_aT0vHxzQwdJcWY1QXa55DJ4oMySwXbnkYcNXPPRWVu2UxyqHtxIrt-ZwZbFcpO7laKNzbwmVUtOQsY09kIdVYxrCAYxORfNoGJ7ThpELUp_ug3UoUM8267KUWxtgzhJctZ7w_ELEQ1mfVPYQ673Ic7mL-rXPktdMY3152w1Hvna79aZHMGXmJFi4Be3G8qXM1XqV0DQVvILqvxCvVAap2Cgu5UvHaFM5MuDXWB8_1kbkqyfVOJNLloy-09awmclNCHzH8e1wJwPX115W9l00nEht1xMDWgM4lu4-PSGkxXEaq31pv6XrgxWzjziJ_WldwHkP8eiWCMQhoMC6_CwVNAV3xLJJln9KSqycoacz9_myyrtZrv6vnmohT515nHAyXSwPDSmp5YFGnXzR6UFAqMKY-274WJc-q9GX31Uedz3Wb_0hYZYRVtAG_kbzhZeLd8L4fw7t3Iqu8LL1uvf-M6jeCRvHyj9Rrpqjr58DsBeRMca7kvSyDp-oBnkpMSwwmF4stDR29kVVficwqwsE482rFQangdndsmPvv0rktCy9TpH6i-fcNod2957YnYPOdlf48QWciB-JOPh4RcYJSmmgb1yPWNmIzwrekgXXUq_6mp2LEfjFob5cqP1GTFryZAzOew15wKbzL5ElV4Sz3qSN-axk5HNMJIzfyGtFmb9iOblwkjgz1iDfmZ07gdzQc8U4MC3UMgUjzU5YtgruqdG4y4ulxPn4uoG4RiuLWzV8KckLmeqyk_mk9mo2BCrNaIEpzyLNkNyT0Y5JHp81qeOO3pgwPlle6DY5iyzDSCOiUwvBh0mlqERPRt9IY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673eeaf52e4fc9-07614576','','','2024-11-21 08:10:39','2024-11-21 08:10:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41632',0,'cd-form-entry','',0),(41633,0,'2024-11-21 09:13:50','0000-00-00 00:00:00','{\"firstname\":\"Pavel\",\"lastname\":\"Valkov\",\"email\":\"pavel_valkov@yahoo.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA0fu5BhDQARIsAMXUBOKw7jO3nJfvJ4ZiY-6DHRSpHqHPxGncfeMdSF9oI32MQO_69F4zxCQaAh7LEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5uzb2mmWNeBQfO-go5evxMrFcMW5e9N_W1O-yhuzmOJSIBUFfV2USpV1Bedyb8m1b0wxAcYZYYM70TD5o6UiRBT7P5VzaCIn6yD-45qExWao8SmlcXJAqAfkDhR2keKb0-BQyXrJI5n-spp7GPOl2DFz6xeKgLo-FsjtzdKkbqiV6Qt55Mt0op1e-WxNoUGh9bZfmWiY5KEeVsceFP4ljSNvmpryR4W_2JK2im_RuzkhbM4L9Wv2gBYMEYa6vT5DpU_a2xZjTntQZ751YWzcDxnDYXcxlVf1qtm5preOGIhPogDGY84ysBzdqaDhMcoc6sPF3ZFctfI2aiawSbkzPHuPluJQ6eZeFGfaoRMLXQAMJ1Lvbg-8ySU2FP8Z3Z_YbaVUEoOHQOIDsLOK9UZSfocT3PW-iN_JcobfdtUy0eQJuUWjTgb3AvuKRcBKWa8EoODntH_9ulCqcbCJW-ENXboJQ4mpU9IYO3QaQGvY3Dupj5o0eO08g5VdQIGptDj6Z-yvUduR6jwUlFI-1Dkm6OhF4FBVikxwpo9-rQ4Q_1nfxX5I7TIZyleac1aOF5QlHCb41hF6wpxVehIHIViBqi_jR_WJfZ4mBnMvevvuElgOqNTu9-5p7uGzfY0xy599rsIyUr7t0pmMQXXQ4IYf_2BneDeBzBAnH7888bU1YVFrn0Jj8GmAiwNxJio8f8uFU1wyPLBKwwZHdcGoVY8qYzcPl-_d-cB3g9xlKxxNW3Rh_65YnPxKenFBeFtX463yUJzStlhn_CL5jxMxpAZsqg0akIqmmrlvsRNkRvlYP38NLOcsWa2bNboxiJWTTNSvF5OcasZpkz6kZbofPCK8QAeFp_oruOj4f5lP3tN7UIwnlcdyCeUTwCmOApiT6RYpLdtFXwzvD-R-pu6nOZbTDmHwP6BdxKh1eIu25MI_Uv5MSbW6Efwd-AMKhZf88Ur5gIJnGFFLLR-_RYcoQj-ZLJzRMb5Aol_CGcxX8insyzdxVD7bSsQo9b4SeN1wAbTZE5949ZX4pCohMFBnqv4aZnqd6AbUIEeGoCtMnvX4gJFUAdwZ4wN1oChAf70AdYo01p-ISt27xhVvw3WqSU5XA50jUpObycDFVsZ4pp7G2eyTD6yXRMdrY-Gw8j2dCv1kT-0sktXH3EoqC7ugFWD4JofOBJ-DHLOqCpQFGDo3NwNd0Ldxsrx6M3nqNnwPt1RQHKRcHAlJbuL2UDGIY4Jl3rYKdxgEx6yVN4rob6_jw4srzheGlNd_kPDkQgzOv4gmFIZZW30OJonGNNBMknftSLLdoXicAYXOcHRMJSB_Bp3dHQEnHYUkHyY_d_aNAq7hHnOdgH4ewV-c57ZF7W6_5PmalpQM4Li_WNfc5XGf02by1aSlMkFnyLHz9e_MptgXS54zJ0FgcedeqxaY5JCDffpmUj4RD6HQwXztcjacMCq5tTAkkXGxokGQWmL-zoZWrzogFwnKXJJG0qamWaBRAXinJvaa4XvV7eyZc0LvQlM4G9G3fJ6dk2gF9FwZkcTSWsg2e-ywDHJxHodW8E1FGZW7NbHHhwJdYCIA1dcea_1aIBJG-c8UyVjBYWErC3XiQWRLoFKu_xts_FYEbbcV5QKuOGd2LhLWcJcaLD8MvpycIiPpwWm-wM8r7oOo-HjtJCPbF_lTsAidRGUojZyPD_pEIs_oE8-xsEyvpO0NTIwMt81lopQ1mgu0nLFjbRZ-DKqypRAcomkQI-Hlhkm3n2_Kk17HEzP6UPgu1jCoJgAiK072210I2L9-bIRZL2QiVa1itLGZvhfN0ISYlQcz4605osc9MgP-NjOlPTzJMQmbPKwro9bohSjNEg8aNNazJEY4G8dduejO88AA6HAe7x_wGO0kGtTvkjzpD7GLYQpHGikkkjlRFI19TFjvS128V2c8u2yDBOjRy02kzJk5PLe8uTrtch3ZFraxqH62eJ_nE-eQ52DqxfYWZPM4taKe9lVfepkPBibRKxtl1e-s18o16N-Sg5BZxyD7zktTNhF22rVgRE0FQpGC2_08Wo4VbMQ0GzQ_pwD0h5G8RVsF73DSIsl50M2K604jZWl1JVUWqAYg-m6VjnREle0kyshMY3ilArW9d_qrojbrTeEuachbq1DBcmcxSyw5wTDzp1plWYE85Oe86RHnMAsxaGBOOCB1HsYyhq4DMuIP2KT4xzo1ouXmOA8BKvhmSPhiXSbIsppgo\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-673ef9cea27a30-28895246','','','2024-11-21 09:13:50','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41633',0,'cd-form-entry','',0),(41634,0,'2024-11-21 13:40:49','2024-11-21 13:40:49','{\"firstname\":\"Sharan\",\"lastname\":\"Mangrulkar\",\"email\":\"sharanmangrulkar@gmail.com\",\"contactnumber\":\"9867010985\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5JDSpIV5WIQmBsW97Cvk7Y9BwfvmNr1-SCZ15HzvHh432ecYUrSErg8h6Nw8d_bsSpNs_rQPM42Vg8OKlpAurmYTZHasbU5W0ZkK4zVK7kW5j8_ui3e6tAvZap4hESTwnSZAXImUhw2AtP42XgRgh6PtKGrhso2IBLD2mk0g6RsBw02HHpwIy4e0fnMaDnAKrUVgItk1-nd2Feq7TEV4PKZddEiZPNYVMNlkEvt2mek41C7tCIDJDVoyY_3B5-XYq_fKMqe0J_1t_6OnkPxdwgPwjE5lmKwbXPy8eLzULc-U2QpNFFCemXghzduZA6uzbKKX6mCGqqzA-2mhJbgggv65x4W652WaFpy10_4b6iYTx-mJDo4UEFnDX9eMJ2E3vqRuBrsOeRseto1LwhD7QBEO3i5xpaQmbb6xkHuvEkk2MSPEE9gvKerKSbvZliy0g7C78w_3uo7BPi4EkBxYzilzqTA6ZqU1tdwok-tqftOsbbeduvJyFySrXugguyig-CroeDFkKFN1LWv9HjpHQiw3umhpvwaBnZ7DSuXefYxGNVh1nOBteWutr-EwAvFsl8719yaGIZdU6SCRRMdJg4gyGTZLm6PtTMNu1y4I5rmJgs6UjJhQYxlpBlQf8Zr_cG7M1fFwUKowoV-yjeZWpOZpvSPmTWXVLx2pJIMI09f7t6wOL_wf7m3wtw_-F_Xhe9zaNeY-kenaGPRyFDtYS2h77hm7xqVtkWkqAcrddWxI1Z9TyCTemHAHJKIQIWMJiLnqf99ZS1AHFCBK012dmF5zzFmp0kDjOvviogbERjB6bgT6mJlL8ulbJ9NR7z7x4jnqPls8SahOqI-bSXnAgPX4Y9X4QG34d8zZpMMpNXfHeGsLOdeLUvxgnu6qnlrcvkTMc3RHuGa_POv_wJ2w1HHnKO6pXWWHVn-CWXj3iQRX6qFG3LmZK_PGL4K9p5_vlRZDYBdPC9-pH6aqu-kG_iL_phqdUDfC7rgfDTMQL1mJrzhO2Q7eVbrJOwQ1aWEjdoVkJdEXrkE9mjqoSX-aD8FBuG5zO87kSIHfKZ3TIkQlOUrzTz4QY7K93t8PcRT6-eWax6e59eEVWuiKf_6WvBMDsj7g5DO9OXJfxcvsVkekXEwTFbCSJNTmz2XpgZYgQ3u0dihgcMycbDy78KcO4W3zYvnhhVI72BPLUdx5nlRNQvyvH7wXReLTIiNSu3gz2AL6jBECJZOCIUCPLAenOtZ3Ble3i9FGOvdblnA_UFvoCLPwiOG64MzngN2TtU-Z88dAW8HrelusM465rxyZ6znQqAJoE_E0ZuHLbwRSDbr7O8z6FMZ21sh_gjDFKkJYoUPiFn-2CD9P4oHR7X7rrTTVl4NtNfXAQbyRXalihrI6HFqR75wMwxU6V19q9admIxyrxCZ4Y-iraVwMQhy2qPa7R5F0U_e3tdj8ffHRIMKnlxznI2RH6gLy-8aLA6oaySqeI2oHx1qjalAYwaYIkmhsEfl9GDeBHjctvMpxw97givDrLzWyh8-XnktWzkQ17CT9_yuGn4twH2wra5HN-ZEuVTnW4tZ-AL3YSnqzvYl3KuEHLEeNsAM08GsYs-QnFNpViQn1jaH2rpaXuM0yoLldqNgpZKWrBM-oMabK48xngRitJ5-FVShpwwztpLPTh_Gv1QkObl6xZOXwyeWFkB2BCklLN2j-AZbGsw8SqE5EETbb5e9c4kt1bE_A89Gdk5ggkA9Y2euYlg2KSXabHcKvsoVKl8NkrpE2pW98hw_muEI6joH2fard_lYFXWkMfMqh64N19V2xNukCyIVrApj6sYMjhnAvAJgYz9_rnYknYZsEzs-ezCy5WOOVD1uVSUCeeT-m11HkbLWQHjyXMF0aiV_zYY4y1_qJPxJuIdInIuYfJhS4tKzc6X_kBq5Hx9_Wi6ZZHTPFEkivr1HGqaWkMTlg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673f385790a556-78158010','','','2024-11-21 13:40:49','2024-11-21 13:40:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41634',0,'cd-form-entry','',0),(41635,0,'2024-11-21 16:40:36','2024-11-21 16:40:36','{\"firstname\":\"Andrew\",\"lastname\":\"Richardson\",\"email\":\"andyfr1992@gmail.com\",\"contactnumber\":\"07507625647\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6MFFYyyv4nHPcdUS1iLfp1U1vsuK7kSZvOL0l_Qk6bFwelou-WAFvBYuf0WFT4LhLEcVlfzyZE32X6fHiewRpoH-mbNSR4YZtxNp3YOIB_IKnsdjJQ0EUZ4Zmui1BM3ptuxJJvs_kain1APINPMOyisSIzn8QnpM2CWBTdZPWvAcww69zqvdc-juHZnKPLYyXgbnnWrDM_2Aa_Wkl2TLtul3VjhCSq8QWUU0AtUTydJFQMKiT9RYcIegifDtM4SHmx5-2C6rfbtZX0YcXuhOss7f1zz46RXxemTtAGnGNI6ld4_4tDvA1EPxQTDu5hZ5LUjJNwVmTxwrpFB198KibC7CvBQvupuCHtsMTcQJsboYbqnYhuEXj-pcLrzttPEwoFLPMZqG7kwhd9BYPOy11cfVjN_vpldMJIPqqxosskz-8w-s-jZo6Xpqp7zJZmg-nmcKdsmyPwVRCWX4qqMdrcEeOaFOTkeKrmrBfd2AC1CeHuRiJwlx1znq--El27HonO3cLIf5by9fvDDYcCuzBYJnTguCK_MzXEp92lRGoXMPbjs8XmYnv22bdQNputB-2EdjsSvyauY1yQrRWvVULFkOOK-IrVOn_3Mn1H9nW6ZGhBsZAUtFDQngyWP161On5reDtfT6joReSwTbPA0498pjzPef0LeROR44GUq7PCKB8oKPF8Wtoz3vTjzrDPsOimiMAKQ-Qs3fgoXM4nECEiYES25d0JILXsfnRwL77LEdJ_07OcnRuUfreM9ZvkiBZIDuVa4JoORsC4yTZqtY0vMGlGTsmhdKMFfU1Bpv881Bye9UojHQIhD_9R1-0hUax9_JoDTXfxPoBVZforO-DhlXwvKoe8O6N4VQ0hrinq06FF2w1ELpDvwKrXYHW0iWXTs_M9yGD8Yc6Ixv9WkLfzYN-EJKlBSEHEnzKhWdgMif-pN6kTCuGJ936qJaFXgLCXOv1Lp3ZGFhQfrG5JyGvcerTdqKKTzZOKuxWweDQafKlhkXAhxiqZ2yDt5wLHE_SVt_kDwSUHpCTEUNM1ym4yyBAK2zIyzO58jDs3sr4HXPVDAC3tuPtLT2QX6ZoGrP7ZiBk1oFPOEekSsYoBiAvvEGN1vRqNaRgblYTIewbL171DOl_rBC7iQ21WtxZhXk4IFR9Jtw2ZSrOPGWaz1R0aSXzaAf1XjjhLhYx02ZZX9XGvAL7xmJp0BAVBGaUlNXtiN5gbV01gsOF90fIhImY2ljC-qhidaGBvoMvzH3fcvFUt-H3Y4gDc60pf5ZMdDXuKBXNLDrogEDeOiUBULELuqN9jOGJ0vn15k46lgyNKqJvStPbTGr4amc9Z_dMWyDsr1cs9CegGu5BshLkeyKOan1yoOu0yeyORr7bh11pML7h4R4T_y_MDHCQhBpMplLOQ-tQmii-904gatg1PhFhzqmycpkEksu_ffSvgALQ9O5XKEhAr1qyuhZBpNM1IUPzsab1OryOUrBD-kfFvi5spdKtXCJVqp1gax3Y0-U7UoWKWxyiX94N8U5rYMk5sFkI9Ke5zW04q0unqKwqEP_hzeThvZZg1yX-eeUsJ8X_l6U4PjbXSghqc39R6TqdZMp82ZE6TGWQ5ilaKXZbIsoDcZvz8sjBNMZDWgEDtFYsWEtQVyCZG8s_zOd6UMESqe3c88eOk_bZaUP7VP5TBJ5_tMLeZp8IqWqOjaBgjsSMCymh7O1pikIb3ZF604RsAaT4JwCUf9qDAZeGUowHpx0E6gQydpbF5jVgZySBd_9J2jJsdYV1PYiBbC4RhVu_5x02fau7qG_KtPBxu5TGGPpJ_b6yNjn0pMqaNh-1uRL8aF3MHASeQj9PPRbecv94EX_0YAN3suRCir4zqCdcd_jLipst8nBtcGPeNwLbLuCxDPBAX4eYwrBs1wHE0OrVhNlZ2Jw5MZX8UzjXMKolSm8Klm8gz_xRUZRSm9KMflx9fjJBBpqxsH7uTsiPIj5UyKDeAldoNXIKdd1OP_wMmthKPC3F-0De3kbizsZbPjVFPjdwiLPzGcyMCFk8XqAWxkGsJwPyWx-3U97Q610CM-h4N7ft3LHYXgdpXWfea5yyiJ4_DlM0yUitqOh8ar7nqwwa_wHvk6hrzXxFGyIGTwHyabg0FBeYiIyeKLAvP99MNEGw81Qc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-673f6272bafc72-44798543','','','2024-11-21 16:40:36','2024-11-21 16:40:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41635',0,'cd-form-entry','',0),(41636,0,'2024-11-22 11:12:00','2024-11-22 11:12:00','{\"firstname\":\"Alex\",\"lastname\":\"Sanderson\",\"email\":\"alexandra@graceandgritwellness.com\",\"contactnumber\":\"07946662643\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA9IC6BhA3EiwAsbltOBt61GnsatLP0k7WjeTvoS0hZ6gm7QvIShNFThDGi45vx3B95O_7ShoCPYgQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5QjTkafXSYgGXBdXYBCz_9e0t4hkYBUZYw5pN2pXc1cspPHG7U7DAzY6jdOgCaRmbTeVxxFqVanmB1H2qaf3xRN03GumtpVqIHUxuyKPAE_Ibt5WIPXma8PlRlOSmAtuW8vT-rTjJGaK_vVFtn_4Srckp4PoixgrzAgQbXwWb3pzaZi71r_2z7W4T5Hs5I6P3y2Bfkw1GK-SDi7nBiKCFz5NvN4pXhYM35EXHmyLP9_DL-S2crWnhYwignRlXDyKE5RVJ0_xH9ISascxblNvNhOcd_HN_woiflnuYN9eGc24MumRqIJXfuB2mVCIVqRmb9zlE_7XxiE0fvIZq1o8L_uBjlhTTpsRrQjtLgc-N1B4UXgzW3DCY7ztpTLvsKwp3iJk6ZoDlpmmIO1UJcF0WvQtCJxbZTy7VVwfMcNLboKiDal01ha_SDAcF8TwUtRvid0ayfjLa4rMgQ3bpa_URDJfg0UgSdOgc0urwXcyMqecYdT9yJOFgK00ydcDemhgAryIa9EYKAYVc6xxCZgg8fca24pb9YpjdzX5pBC4DB-fdaN6RqYdRTZqst_ZrCCgwfk9N5DsKrUx8U6Ixbm7WPMbXqlV4iF93q14veYZ9b0x2zmeCn1ymB1RhoAksIeQzcHlW3n9QvYpvedRNpgWeEiLgLlgVPuk7oTSY_0gjwA0ywvodaev1dPTV3GxKHaHuCXjR3OrwXhUQNIugvdRvvM3kcXqlRl4UK9l8koTi3uXK8PGlJM9b5DjSD2AGzslyqN4KfhOX64IhicKvLJq4koFevXBcrIIDMJKssDFrsqb_LyQh9KnXRooEtrhHXsESoUF1tvQ41bH7tRDbJix1Xy1bwD1ftReb-cMcFff-35m8byRWf0l9b6_17xUvAaLqJ0DcIqWaVmDswlGm6InueksEItKynAIhfkGdTk3A-BPfc7Ey_zoadi5POlkk5HrIudCTxQnLrVS2MRy5dzZYYAwappFZ8FElGQi6zP9sY2UKTSsatETzbBJgwFz0q7a16EAsSlpB2bVhk_QH2DooeORkPhGMgCiTwx06D-BbO6kuPudEnpULui9sjjRUlKvLAwX0SHlWPaKMGnfD1noA0qiFC-PkISTXBlDobhVFFM1QcvzjiZ8TE1To12UXFcpLDKz8MuOVxGvceQtmqSS3A9-VtUAyPPgvP5hE0joMittfuUmg6e-l-uSdgMEiLOScXUbZynrBshv2IwxyX-ff5YsHswx0jmNWFWem2gvGGMOWHr1H6ZE8Zp3hrxxQjie9SBR8_1Kb1YoOto2kCxWih8ro4SRagIEdbAUqhGneGD5Z6druJRiBue0lE4txqngRhqEkLXqo0rE6ISfR2Ql_8FEvt7ylGjpVl0kcW2yhpGW3psJpPwI6Oh-gjAOUkYY6jahD5FWTelC9ximswn3UoGJ-F_WNi4ruuNI_3f0_86uCdqRbXG4ju3Bu2_3ukJ2ab4ipswjTvinCg2Sct8YFhKn-M3yuOnithFHnV6AeYZYw7_XDsDTVEkXkWUXUu8d1AUruWLbIp_QnMvgt1whtwp4BH333canYQ6cQh-nPA3_iPuCUxP9TwP_me0tMPtRUlPykL9DN5XX7XP60t-Yg5dw6Y5EKQqv3J-Mffc5WGU_mjaGES98KBqQSiQwB7SUnTMiXAVFckvs4UxmtTu-GNiUcPnJmb-0Bz61xP_y2lSVWMRiDY7uhKQoByQOxqAcAIo9HKibNtsGJcP5KA3BhpvCKhO-VopDBMJrzhV4wj4eh043szHnDurfL8--Mh_M-5tPD5pJL1kVDcpObPIqfz9xqSMmE_1FlbMP9Pf_E7tpkCMihnRiGhDK1c54ehmazhcMuKMTdXqeHtTD7hH7vEWoMyyyurgY7cpLwF61HFOCf-_flLIsKIvCmSeaytxUhSWhbMg8erdUa704qYWT_0lnQN6J_iGybOjKhQBVuBBj7SuD9x5JrXz_c1ZCYpBtDPDvhATjri6wmjHYdoEXY-rM1Ds3ILER0Bk6B2CpMmiti0GCUVMs2pofTyBKJAGbHfaC_KB4Bdmdr4zN55KyhX8lP0M4H9jg2302vEE_UbPdAYLbslf8zu7-pwP6zTrIsomjMUJuNhCPQZZ4sB5GxPiRnSjxCnViapQKV_imHGgWgk2jQuVJ74g1QTjdWz_caHU6vDsdciDTLJ4WvP0X_HpmHK1i4Bs8ZODQrnl0MkXMrr4vaxs1Kdytg5sWdLK3iRoiE-ybLFq3_yVF-UMO2LNTbKTg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674066f2252594-76643009','','','2024-11-22 11:12:00','2024-11-22 11:12:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41636',0,'cd-form-entry','',0),(41637,0,'2024-11-22 11:39:47','0000-00-00 00:00:00','{\"firstname\":\"Eric\",\"lastname\":\"Anane-Tabury\",\"email\":\"ananetaburyeric@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7JBkRRt3NcLjgBuOqot1JAQoMEA8INRBgiuJFqo6YKMR54mD4l1c0ZOqqlolMz1nhQ44TVjR9yc4VO2wkKAbVjTA5sv1vg0jBBE0p4SsE4Q0J8S38QEiImHa0-1GXYS3uA4D_qgHYGk9l1N7wnzNiKtq0HsZCWnTN2YWJJl3eqyBL9lnSQRoAgc6xgujcYUJs5NGNh_BEADc-a1yxBF6bfEawNhD0iBl7BqXFmBWhr5ToFNgoCDHV3dipJ4KMLkDmWoVo-GKilecwMJXgIcjy0OOT9xS5uVA-t0UoUZbgTtJuNuOQ420eBa1Gq4c-WksCahiZj1P35qmT1uqE-TfXVY4-bW4tHc9dxjxu40go-1zefbJ0gfnHiHhTu6A0wpQ5sTwnXDtmSBANUtTa1Lmd9tOlPYlvBA-29hXCNwtjTGYby-df5NsTka9rToxrabLbDX2x-Y01PjkwxhlArx56KrIU88AtrkWiLymQKH3RJx75u8Gg9xLKf-WITeoppiVFemx_zjpqngAZ8PRYZI5Vst1-kH6uJ2fxZyUiLRqdp-0WgpXKYGSkJ5uIK-ZLDO66L_FBZYKRIRUilgZUldiO11pIv6j910gRDA89u3rR3XcETi2nwn4SC4DSH3V1kSiBEU2pdpPF8mok3BiUpfW2WuHmMycb5NcJ3cG4KgJxhQwY95ykfXf4i6Ax555hjRU7EEKiVl0J7M3NT5ME8xYQr5AdO7KVSvtSwj6GYVKoQMoY9L5VZrF2IlHiy91lyN-3HeDmoHJwvu4mkbf9RwJG4Zzh7R9I7OrmRG1y1FUTjjU8Zy2173BgiJnHN6MYsQ9V-3dbIr-iF1CC0rrRaHvxklNpj8ckZmqlzNA7on5Ulb_sufbv5QBx_dk0b-6-07EZEFlFlBwy-Nhdq8n-eVUDVDrewFR74qGuxrtwBQaO_XbSIZ4S0eiq0pcHFS31TYxG1dNye135ohdyk5gQccAAxFKFqFnFnMNwsMgvUdRuQvTbWHPZXSdJ9YnHJ1AkpIDPJL-qwQbwH52CLG6qp5G7wYMozrmlJHHRceCct4CJOxgRjwfL0gbjqh5PlEKZ3zvnNblIAO5-dK-TRc5MHO4bx0o3LgqA6nLhfhlnUDQb3rJRpIw1Tps3c-bdmO9ueKdUEVcHVe3apgZZ90-CxwkJY0wfsGLDt-syjrkSyqU7p8ornt_jB4x3un_YQWuUZp8aBthoyBhWn6cXC-c35apMIBbOqWBf5qx37_0-OT7pI0h_-5YLcgH61S9LgSCArsZzICrZDCCncuuFxo0pV-Ti_1paUH0xsIPbzFCHSDPHIox7t8BdHDp2w7EOhjuPZBmBTHmvFyXFu0gdJn_EPpvYO_2ydWBa1kaU35oIzaKHot7kVRtVdxWmMxtUS7Ll8yPEhop6v1pXeUBradRLXLMYut7a9LZ3M4fPjbG0NXKQW6QFsmnMy7J4GOGGSZ1z30_ahrAZ4J_sXey9ZKg1F1557ZMLOaBVC_xevy4iJ0P0YzFRf33Mi_-bSQIruwkzfHgJJNsXeiFYm6i5VnEA5bY4AJQJ_P_Te99dxF8XYoFVJctdIa3HkJTBJWt_vwU2huUZqJEYbuxT6h8XLBZMULeGoV2lftvaZKINUsBFOW617ndTtno6-mAKHZEWZdLhizcU1BFPHdJUCndsZWQyh3F15cLr4p9dLt0LolwnfpUdrIRDZAVOvPYItKQns2pkPcpoS8FVw6DaVoq5dxDHFDF7_A2EnupAICLxtsuwo1veWYTmp2vKL3B9z-d0AG5HvQKg_z12vcQMzcXGp3vv7n2vXvv3CjgUT4V-jufhTNa-29K_lrsk37xeXtiQ_wjLTgqOlWre2f-xYRTFLHRVXVPFiO5q5vraTiMQJFJfTnvrjPGtEnMKPomU60ODIghi9IBj61TXJnzK_wQ8_0diOFjBD8T_ywxRvD8WQOdWrZoQSLnPgSMvco2oX-ZHmthoBfajlucvmUgFsVOZgEX-j8Cexu5IF7DW6sirSu2OvQwhB9wwabciZiXy3CYSIkWEMqOuW82XA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67406d83f0e159-86076744','','','2024-11-22 11:39:47','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41637',0,'cd-form-entry','',0),(41638,0,'2024-11-22 16:06:54','2024-11-22 16:06:54','{\"firstname\":\"Eric\",\"lastname\":\"Anane-Tabury\",\"email\":\"ananetaburyeric@gmail.com\",\"contactnumber\":\"0789433688\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/intrinsic-biomechanics-association/\",\"recaptcha_token\":\"03AFcWeA7Lbffa6AqaqnlsIUl_rSuxccinlCtNiXZQF-9_Z5Z2T30eM97oeT8vMjr211U_SG9kv4fQGsR6X7-IdFzTAOhijr3Mr1BvsRjkrK2xpxKlyeneNyZOSAKvqot_mu95W96PDqd1eygLhun_RY12aaN4xw9acrvxwR6mXyMNnprS8ADV9KzCx8bKW_cst0LQock_qh_IjrA3yn4PNcJlfvJ-bH8O9mKaqlKJtpvVngxU8pjWOUpBd3-MME7D2JKZnzo8KDBCSPyO1gMFBgHvZhxFN5VYT6BBVX1GpnqaF5mmXqAqRuaxDQ5gjhvOIL4bdPYZXbPik3-P9vwn0WdVFTRbliV_OGfBs-4JNizaCfsiuoTAvFFDUi-DOI1MzBfZ1wfsT0KjOKr-6u5yDjKCus6fljXMFam2ipDVZQJX0r2Al2tqmY56iTkH77l3nSiH0qht8KKJE3Kiayzo7EHYihbCcLE_4MvN-5gPBTsyWEXV1Z4A3Wm7DcazeEhl1-9l8QcLhBGsDFDu50mYwyak3UXx-mX6q_GSjs9gG5UUXJWNY4ZRxyLjmZgeB0Lq5yt7vvX8YPWFAE5Fd_6xjxjVbCC5q6-aVmBMwriFbEvuzmpSS8twlEJrPbNtvodhcA9qhSlrPdMmbkEZfc769EQtMn_TG6gYEExISmGx-zAf9CRaCWEBRpgXoDF7QrIjL__FLwIakjKQO2RdPOA7YtZ41qAhtSSbYPGNIBofc3LE1QRvErO5LsX7OfOYGjyVGLIUucEc_FZETG3zh-mVkRp4Q1U7N5Fkl0y-A801Emdzu1zJWLMgU21edC0QqRGZrqtbspp3fq4azuXkA7_PEkDmDWzEkeMGoWOqFvwTivBXZXgHC3FXtA914wJyX3eOYaxPgFFXc2J26fkkj3mHWzTt3ctlv8vVWMtY-B5zJV8KvKdNnmsR6wwKy-5tlHjkqu5e0FD8IQODsvqanDqGHDeAaKd15ynH6k0LxXmRBuQJh-Ywq7Y3XS0ozWzVRsEBx1iw8V9yC8d3Jfq0H5ZJphD_SnxBkUYcTVxX6bx5wuURuMFJZPzdNajoV0G7XBTweA6yMW0eg4Fcf5sTYw46y_mSvTzO8iWLDYBag268n6SU9-Dx879s552cgCmuT94J9uBCTcsHYTlqUN91vVWJ3CqIMMUu3oZ-AiJvf2FUwkJRnewUvPsSg1rUZD-ieIceVDmVSPwf1JvpahuTjoUTv1FwT9YZJEjgX8MtCEY6gWcLgaoOSwEoiskbAbbt-HMZ5C5cz9I26cdWpdHrX50ZdtIijOz53RC3oytnfMR-q0eX9IZQ-5ZVXMiF9sJfOk3aYY9oc31vncmCJ-OpaZFGd4fS8uogmVQ8eRb7vYDu9MkfPpIKPUYcaMIltrA_SgV7KgikEwzR42RH14blF-EdJZfgmtgQ0QSkXWEgg0Bbu1uU26VleB26X1tBvsJLi4l5WCZuXr2omRU5qua1Ag0vJNpHVuiC7z3FaFMoikf7C6n6zYSMjCcDRQ9O_pEd3PEGZqu8ImJnc_0SXZpME-hp47RYwMfGDH1W7to6ax4EkIvApbLdgIYv9EmdJ_DohVAsA4YX4k1XLt8FuFLGodapRMLgb1rQXp70zgEqyTc7uf_od9nY-NOOWyplIElkURZzbggQAo6Po1DvhcCduJoyl2TgIM73a4wjVDX1OX92q-nN5EL37VAOBLKSak4AS9lnkrB_aoj3q8i-fMsXaxDYXvaWg3MR-OhNZGCiuGjwC5H61X0mSOT4t_jp3I2RNkLbGDGd58k_tHELkpuQ39jsrpnD1iagC-zcejLIXg8hwKhvgpVbxA_BB6F9Za-c0Ls3vf7Ht0WZ2_WjQhEIdqEKa5N74aJlIYmLvZjpxoYL6dvNAMXalzyXxSKjYX2UpKk3Da9YWN6XWPxSYP_PmaXum7GtcbLXbkBZx0FJ_JwsAb7ixNQXHF3zsYyjdt3vTDcNEJgUIGAvJb_Wu6mkRRGF1ZXfJbP5GDnE9PofFVQvBPTBEv0CdWTLe-6jBd__Dpx_vklNYd0ptQ22\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6740ac11606681-89903577','','','2024-11-22 16:06:54','2024-11-22 16:06:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41638',0,'cd-form-entry','',0),(41639,0,'2024-11-22 16:08:10','0000-00-00 00:00:00','{\"email\":\"ananetaburyeric@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"regionlive\":\"6\",\"currentpostcode\":\"SW17 0SF\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/intrinsic-biomechanics-association/\",\"recaptcha_token\":\"03AFcWeA4G2ZLT9c9BcVNvz8DxKnKyWofV2KrJuATRzGImRCf4kqu-Y8GltOeICHkPuEbDuqbropIaH4mmN3az9iVyglBfB0rxsdcu4qhO0u8P0vu0zE_2jkY8wdeUdNAQQAZEFuew3WNObggFhQq_R_r8JOU3g79hjtbyduzQrYhTpS_s1-rEgXY2w06qBihh9TvAWXLU-XNEqr7cWFMymw8FgyExE5itiseGIIjJHQTJWf6r5BPyqDx1h3CkZbTg6JuMtRfvtswuLG5FTRdVtdh3wwCtybhsXDvE6EFw9odAp0NWAkH_eCf0gp9LjsSq4fZUD8IH44EihvCHnmuEFc4wo0zPEK3QRlOrcWNQZn544NEAY4H26tvt9oNRrbEfh1kN39E2ZaVywXwDA8T86BYTwm5ClQvTyTWrMnsOdNJ4X7rqYVp4HcB7wbtpI40JP0ovsov6h_NwNpviNQK4gQbJIyo8Qp-RDCuUJd-Zll-Z5l8Ci_XEj7scIkBPoOc_hvNV9beW-vHCQiz_JnUpbjwOepM4b2cViQfhTzTJ_Tkj5fLIxAhWRoc67v1Di-XVwjj8NeD9oTFryStsu10ls99Y3LhyoMMRHZL0jlD6I4oR7tEgKiyXK-mZk3JOjlixK4yzj06ppsClnC4GJRONlcTlrKnqhr4tmB8tXzFBZ3yiV4Ms9j8qUO4-w_31Wbr17mPHgPR0Hu-uYGMktcOLtJSMDcIWhYhf7v50MLluJS1vxVbNrIXKZzhdx3TO0gFnODoGBiYMEhKWdaGRR14HyacgMW4TGyVVjyvItYa1aQ6lzs34JkNvvhc5ZaHBq2-mF_BWWpfrBJN-cSJb9mXBqylG5fWDdX2DOwGU7Uhp0B_4-LsAek7esbIhHzFHIcMHUtylYdkqXr_klV_qWytSlCHGX5RdihMJxh0UXtygUYTBobGiK0exD33b-KQp2tN3YdTvawlkl18HuYGlrXbDq1rEe9Aw7cRZ5k8qNkLBiWQVtSvVsqKV5XABgSmEkJLEDOYNvJqGW_tu8WCwQucIcS6kqNjJrP8clSFrJlfRAq3DDFt4yJCzkKcwfHYWhZl_T6cFzhZiy9WUNg7vlICmFu1DozXoVhCU-sI4pF-pvWoFHg2ZLlp-jkVOmZB30lZ5sEFtwJI2zBxMS806C1Q8vWc5uJp9fv8EmmXfrw-P32ALh2kWDCp0cYgqilirjBHRldK6vizRxMQvA_nuNYMjYtrC7_IKAxO_1G_bP99r2_WyrGdbAtRDbJi0rpvMIR6Z6gbQyGexI7o1Vgp6xuBeQMcCLdydntsYEV6uaUmdESd6uoOwouKUJ_wprgGq5e_4PDudd7SnMDU0J2NQfWp95EZDMZIhRAk0hENwk96eC9MhiQahCt_eUveopPgAkl9yxA7kt2KKDo1gzIftWTwgVLBEjYWPDj8d49251DU8th1frbNpKveyiKF3WuFB-C8DJvwWMwKJDFbgonquml5M9-yXu7ahM-AtktaCKzFLo5o6SR4U6aD6-rKQfao7nhslHM8lmkzSINiq9B51g6jgtmiAdyhDSzDy4ZUA6Gi5rel9ndcfF6vt0kNR1yzMoW-PiYcdWGL9353tLsM8_vYTiM6S_AWSPWrVl33VXHCIv8hz2ICMn0tpQtOqii1sswlmWbQAbimdlWU6_dcvX4sp5oKhWMFqcqjj7kMle5qis5NXib-zAftHb2pePJam4frLj14k3aJ0tc03FwP1XXwJlU4eTFLf17FyacGH0xYoMLWdSYYP3Br4SFhvpNSiKwHnqzOB1Rwf8KwN9skdO4nNU-8P86ecP1R82b4VtiYfAj6UYIsGyM9GYg32cBoUg5pn4z5bhBouMM8SjPp263IgU0rtTb8pT4DysKY6D3u47i4uAtE4HY3mGKBTpEObPMN_jxBmKB9pEPmX3yeL9JXcUOJln2tFkdz4xohmY0UPHAWwDd_PTyUe3OLci7ctjxXbso6m0odIjzSfqm00OrS2q4AI3QtIWsdMjW3dEa51ccOYlqFvTHAzPGUpfH_5Wv-GXmWB6ABezQpf\",\"recaptcha_score\":0.5,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"genderidentify\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6740ac58288429-79204834','','','2024-11-22 16:08:10','2024-11-22 16:08:10','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41639',0,'cd-form-entry','',0),(41640,0,'2024-11-23 06:31:48','2024-11-23 06:31:48','{\"firstname\":\"Dianne\",\"lastname\":\"Hardman\",\"email\":\"Didshardman@googlemail.com\",\"contactnumber\":\"07990584534\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gbraid=0AAAAA9_dL6sA_HLAbAMt3VUmG1Xp0UA7X&amp;gclid=CjwKCAiA9IC6BhA3EiwAsbltOM4GhVf0y28LvspE2F3NBIMgi0xsbPtJZo6N03WMaNmbcRBgrAV8RhoCi-EQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5YpbLV1GFtAfgaW4i9xrZWc9kNYSlzzqw0PIX-N8z_Z2hEA-LsJlhEp66r7yUebsiIaxk5OZoaMkGSS_0Aqrf7Y3aSSOCEbmCHBgfZa5Bw_-_mdjB-JZGeFQkGX3iO7DBvEW6_j2EtpjCIezSK8wdzpIGfUsRdxhC3etiOn0GhuRi2a_FGQx1jg4m-UXe407iX0TR95bF2azQa28k-66y5_ydck4wbeB19wLiq-LiStr9qMpSnmWacn4k84eRP_oUwovIi_02yvvMCT5X6rd5ASa73WYv4TTb7sQgOZiOJ1MXmJIyEifrTKXTdbcIVlnmS76ONVXc1wrLwZ9MTqvw3IKiMEMrXmCDbedt8zUTeKjEZ72frr-DlEO_7XBD__MtXM-aDjtcf7glgTj4ABehJPIHpDT3f6OX6BD0LKACKWoegxzjXBD6wGiJ-KE4GvpSGp1UP-JdRzZNasfT8fLOOABt0Lsio5JBqeX40rlud6NK2ZcjNXvbsogVH2u_wLMn89OkU60MktHgXyb2sxyZ9ycivEjbiKa84mwaUT3Jao_5I7ZEqmYz1mWsQV-yO37Lfs3LK5XsvVX7PEik0F_Kxrj_ywTyG9LF_mYnAFToV7Yw_WFC9dWm0D5wFnfFPF6gTsmDa8Ix8TqtibK9rjkTOOjT0KD4EDJ97bLrki2osm05hU_Wcwg5TucqlcKO51MOazurRnMsRPqkIPMfWMgjUWfp0RvX6_qIJ43B8Q00UoptAs-yJf9dk6_spGzG6eadiL9gDsntLUAdbIjLvTBAsZ4smat_oAbrDca65Z-SmzKPzJHFgKpdLqNU0kODtIV1IBRnTSpccqbgabig6AL3Hiq1DeImw89M3AFn3D_g4GSoRK5U9uF2WtJePonqrqFIagIW13O_sprLQ3lrFy6QcuD1FaquhOz0UQ9bThQUS6v5j7Cybw9JtAixatdtmMehvxy2YDW8xjdRNBbuAjAOzobSIhPePv0gLcxbJijZIOu-3e5F8PPEtDvto3sRfoYkrHVU4iXvYby80iapzA4N44XQAkQ4D2vPVyRRP9-tkpS-6cSGcQynPn84pklbo3nIq-j6YGgZEzOP26klJQ5hDPM34WBbFWgEV_mdjImd5wNmoYLwp73VSs98fyBr_OXOQDKWPY5qgkvSUhtt1nfeOVNILPo_QWcYPs_NJNyc7g7mQ9sUg9ACWh8gbaJ_IzMb7hMFvl5MQsjftw4yNBLw65qmAfvShtjIc1DXZVmun05TSTZLS_oEjUH115iAXOb9JBywdcKcIJMhA0exaITD-qezllwIzv2QtVrXXIongAU2cWsjP6SPkikz-ILXya_rqXpTzPcmD3tMahqLRa09zgCHr7wjDy4MQiORuUEjelsOM9JGnYUxYI00U2b7KZhKNVDxvgRkPM_nPWbEyd_1qBa6R4Hd_HxOC68dAkTsE2YaGhKbN6xx8eRA3BvPSpyvu33ZNfFXPilb1IVvoDrqH9t-OBFvyASA_vvEza9_PpfA3v0PKDOElNHaYMWEAAuxHdp_PUJ1flrnSt0Y8bUMi-0lvH8aSZAhVIGGK-P5AlGeKvJwii-xx9ST4RKqkCBdQj1q4Suy3ES3gMvF7rr83ikdN5wTkWlNZCA_-h8GFipH03RrL1ltZgY6HfNvSd3_6W0iY8A5ogqj5Dfo5zZd1TTh9P3pYnIU59mepYphVEi0tvEd-YzDTzt3C4PU-3imwfppA8hy6spkA-1OIcN8yy1XlFZ2wbWEDDQ4mh_QBST7sE1y66IL8Yt4S1fMX5GDtSUKAN6gBb5M1b-QUIsNH2z0N8vnQHti8u9ey20nmf__5caqBFfUrCIRp1LB4_FdgP9beISuFfYUMiETl_fmMQXk4chPMmEDOlIiZRXuGhQXvqVsWX5pBsTkcwMnIbsTpbicPflSxbRONFVzWbOj1xTwI1cr8oytk9g96JEYnXSLWYR7aAl_aXiLJBDxK-bKVdfPeQEuPUEdlvEjelJ5PYKaOLtSFZHUHlwb3PbjEpUkaEIhQj5f5ohC2xfB4rOYOq7Pt\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674176c5dc1738-61811747','','','2024-11-23 06:31:48','2024-11-23 06:31:48','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41640',0,'cd-form-entry','',0),(41641,0,'2024-11-23 13:33:28','2024-11-23 13:33:28','{\"firstname\":\"sucre\",\"lastname\":\"burrows\",\"email\":\"abinina@yahoo.com\",\"contactnumber\":\"0738099688\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMI98TAnsbyiQMVdodQBh07rimNEAAYASAAEgJGBfD_BwE\",\"recaptcha_token\":\"03AFcWeA6GDD9poiYkoH1X-Nqdg8SA5viLnzSgajRIZ_LdjGBbUC2BF5pNTccO2A6Iu4vTLwE6gonbPY8HHgUCwBwcJYUc9EWcuzyQALjD2hA5PMEiY3wMfzUjRU3iKh-PGYNKpHglMAj08pw3v9-UgFyHaLth7jCcnXVOdWM2_jRf9VkN2YmYw-I1BurE0e8aK2XQZ5-Lwpx5yRDwhZ0q4usMLSyJlrYLHEW2NVVAeHQRjRemF52EHemk_MB-S94i9zAxyeMwcAmwQY7_iEL10rZFAF9Tn5KwCfxbxHpX78OlSYAUW3V1fXvQBkRX84mI-KAqsOAZfJ3LoaZVfWwhsK5kcB6nxs0TWUKVHui_W-UMU26tHE9nwxyUkRbUtPvGPwFBq7aDToraLiFUzU5HvmHVDtxw6jRFRD4k8cyCVxJd1Tnb5Bgnku3h87SeBAitq4GrGddYt16V7bf3xvGpUJQ78Z1MJmLxCigOyaFkBZqtaHrFGW070cKB0wReVhuYGVVsJY3fkwCBMd6bnBzc03BGmzbhOeBiC7724i71n_4e5oYyrz9U1O-5yxbImps7jiFROVcdZnDQmMj-FQgl_ZJYXrlf4tiihmaDXVYdGuPmv7Mw8feGQh0KoM0L8MWa9MSdrTrEoM0cgc79w4s-EhujeItlyNTC5wlvI9HWv7zc5LjTaz5cSVOvcZnOypBecCvm9yIUIazt94_El55i3gdjUSu-H9sH9Cc0CEUmqPYQ3QhamLMvlCeemrDPi2ksF5FLDkoqteioSFctB07KpnbQboAjDXz3akNf3Y2pURebC0jo4eEMokjBNFNVZ9zIVk7WTSMynTXvX3DexNnlK_i9DmDWLFNmRCJqdXNuN_7XrAc85Qon7ZeRE04dXKrZ3S4IEksVo7Kqio3EoexR_ud1w_wzcY26-ZigthfTCgba1RB2ZrOqCQUOrdUddFBxXDh8LroYZBsSTkRLdCjYBvba-3yKDWIQMA3Rg3O_LFaptDriRnbK_aRKNF9I05J5MHqZ1eBJhWPcgbhRrpyfqQp8XKldt9bjwvnzf0VP3w0V0xx4clyQ5qqos-ONjOH4NEm1GtU3stZ2_9T2IqRhmTio-XGb57I0LLQn3GAJY0CFTvkXGPXUBXAOpWLnZtE82XcBPYmV_OAKFzxj2yGvWEl5Ow6ojzHiHZQBF9Uo922oZg-VjDWewBEC74sRNou8n3HEkDEo3m3sTOTmLuNTAG5UcOWc8mkN487LFzChiHR4FZUt2V6hQ5ujO9vHRzOTqW-huRXObSEcFMzuYYhO5kTnt5I_OnrIQN8CCXlC_74cZhCu97unIsADraXXS-tDrbJ74mNHSU5K6EqIqaQ9TNREfCA7u00E-DrNGW3zuCK0Q29ludws5uYPqMoYnVC0FBAvzA-zRuIzoVzBKD8Pwbt_xdgPT_MSCXrZpT-EjDpcnCr8qKj_Q3p9S0K56u6ob3SGRS2syiMrlL6yzA0fj5_2Jt_G7Rj-VS9T_UloYjpDAmdnQ0R0BD-lH0sXCawmoFB-z9pjQkmQ3eFAEpTCsfselSziR1pplnzqY-XQvzs6K7KEFyw75D9-UGwHArZwRdK5oo7OtPtz4s4CcZsPicKnDhAHOSXQknDXhcCGEJltklzpU5lQ6dD8qEDZg7iMs1iKhTB3a-vpBDh1SaLfJGlhsOHWc4pLbLmlmjN6d_c2JycB0uPjaKUj-0a_uFEXS-Yq6QnlNYQoFZgoM69_dWZQC-gd-PCsb3pqU01dsLvurEYOHlk0XZO0R1ivw7M-TYTqZOcn-EURYSpBjPdCOmanzYk6eQCSsM-Qw8ZG4z-RD3i4sJEKWWTFvUtn1KzN4I9KcrvLOoSWItHOnPRtb2r77bgUif9cvLQpOThurNVDtsen9bblYcsrw9IMCbEs-8cGZv2GZZ_Oj6yi4MTq2hiT42jl3-Uiog\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6741d98a2c0ae7-97769295','','','2024-11-23 13:33:28','2024-11-23 13:33:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41641',0,'cd-form-entry','',0),(41642,0,'2024-11-23 13:35:26','2024-11-23 13:35:26','{\"email\":\"abinina@yahoo.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"NW3 2PN\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMI98TAnsbyiQMVdodQBh07rimNEAAYASAAEgJGBfD_BwE\",\"recaptcha_token\":\"03AFcWeA7oVoppRYbIrq0V9tD06muIPfW5n5_AUAVfKCT2SXKqmZgdoz7a5PTcUeML2lMzSJgELYbHRnjdjzPFMVOmvHJVdVLPQYJ3AaE5fdYmIK_szG6KqMGK3xwyGK6BQbiNJqzCPHdX9rFkaW1K-5vMKUAJEDVHdl8gpe2Vu5o_s1Mx0X4xIP1DyicUTDxHUj4pBdjB_rUWx-a_LJkiULwT-CCSuMvNauaEKYgQ0hnEhg1zuibmkmXDfWoSjLTmaaO6KgQ9VQOHhtK5jLrEtjgylgNP6wIluCFKcfmTUi39V49ot-BzJC9bSpahrq5b785tvjTgUnGTEB44uogSk-d4xluU-eTAyCW3p_mkgpd4yiZUFEIwA5afYmZL1-p_3vntFhCFUHMNyYTUk_LE-OwlhxGrRTTflmKxMfzxhwPeM2MlxQaj5CGjQmmP4cLDxZpmdl9hkaX2P2jaGnDY3zvskI_kFD4dYlp30A7_GQH1LTNHkspBzXZMpTjdm9UiUfhdIpnL9Kw4ULaDDfLrL_dJsKoon-JWkQnxh3VkW4F99DMsI1T-umhqXH7Be0JZqnsSeLdeJKaZBlzETr_hyQP9IfraVMDe96TC3OzBtd88k6ZH0MHO6FqvNaWJwgtSeohA2-YngiNUQEWKwHGX2W-HpLkyfdLpq8iN3SCtBmsZLf610m2kYHTfhin7EpMsKBmxpLXT7p8V07yuLxBg4CsyGK0_S6cjrVO-xX5PKTQ4TgiByFyoKrNJpSLEE1oHJ--gyQqWyKBtDYgEB2UJeCt5_jos5FuECquGlmPIXFm2LntMx5GE5vFt3BYB4DqrRE8_1ULRUad32s7Z4Pqoxx41QqPriH5_XMeXaM0UtZhFRRseUVKj-lZ_CkHl-6brcu3wUe_jWR0siU25aRn8H57g43f3U5luxe4MnQyxqgmqZJIMT3T0mpF2UgadqlPRGwWoq9TbsFc6vN14lOosU8WWj8F-eHq76ikMHMC8HA9MX9zz0GEiLNgMjVBrc9ZeaUyL-GkDTMbSyyEMvOyumlcJbzdQqZswwj3MJJNtgqN2mHLmPuHEoRspIwPz9n1wA4FD3dio526is491ITQ-8cbjVXzCNF5wzGsAcWZeq9GZ-SMQ6haoMgU4lew9NBXWLpxKpLrvUE2-4VqaAK3tcQdddkzqA404ZyG18uTc0h26Y73mOPfUnXRRQoa8a3vCeM-VoRZhmXOtvfvIrV-VVSEw4VIN56fFKjuOeqg68YSndGq12OWMQ0K48C2gR-yapcdwO8HsacVmmfP-OILGnnOGhVXDor83qQVAMHAoUbqvJoHa7kIX-sdJ4dPpmnXm8x05_Fuk2su8e_oDeuZ7haB7tM7bUkdThgiTLXP0INbQ9gtNS5jGrKosr1zO6OYu3OyAPijiKgBJlQ6nNGVhHFbyLNPeO6uhOLY7hmWjgCY2MO17CobgUGWKB4pCXYd_LsscXfcSgJ0NhzH_wQGwlLmErY-VZe0Js7Brrw-IDrUZNNUmEskp3xNm3AO9VjYXHmaxjgcfcjvsHQ8R-PktVp6lZz9Ubk-vT2srbktHo3Gbj9G3k6VDTGP5AB0MUeDuT6iFCb0yPqciw5vqnbMHca5RjyMT9mV2bXcGxprCaOGSPNA4GKcqu3nHKXF2MQOaPwbf0HkNz2Xt9faOE0TFA7sr3sArXaR6MmUG4VyMO5FkNxmgZzFkbyY8GuI4zJsYW-h5h2Rmq-hofXzyS5qftMajUwt4wdpc11UH6SpASdxdJByG_f_to-eFYs0b8bl7Ps_clmqKTcvZtENbWpktOy_2eMUYBc9TQywek7uV46gJ1RIJkrX8HN_aKa4Nxge6XiuBLgfiXOtzKzwviAIWDGnhg33uWEHWBEZrHklV1HCse2dDofTelC_Vr4WhnWfsYdUIAP5V9rI7oNNvhbUrP2wWD5w3DuqWJw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6741d9d40a1850-96454969','','','2024-11-23 13:35:26','2024-11-23 13:35:26','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41642',0,'cd-form-entry','',0),(41643,0,'2024-11-24 07:05:27','2024-11-24 07:05:27','{\"firstname\":\"Janina\",\"lastname\":\"Gmiter\",\"email\":\"ninagmiter@gmail.com\",\"contactnumber\":\"510053044\",\"pageid\":\"39254\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7xokcf61z8qNoJNDHH-3najdtAToviAXp-4bnGJhVwfrjvYfsfSPKTi3_0JP3QTOc6WWfFl6YfuZwLgk8KX297dN0rflk5N5Goc6pv_zvfd8XkY7Li2BmDaGcf4ofKekygBYYHkaE0aOR1AMhlwbNvthk7ty_ehsFdu0PgYJHLBimLcCIeZSuOh7fi6_pZYcZ041FVO4XroiRlnjM3ICCb4V-E99lzvUmVvL29u5xswnKaCVgQIoqIi0vCeh4i8P8oh4E3LEjh2f2mMIQCiLk7Q4oF6AkSD7hg27aslt4rV5ZXCWct1PecNzNmWPg2tqlfBTLSGVbL1fHqVmDcn5gQ1YmCl2c2X43CcHZyXZHSqPorHkpaqoK0R1BD-eeGGr_0Gbs48SHqAsF9Ovm26DI4SeAxgcRPqZCrAYRglnFCOr4W-7l5QFFnOabz-14CilJriS8ASKhMqUXGZcEYA421XgHz1nbJRHUXY95e6puujCZJgJl6eI5iMi4FcvDvwiZSz3NeqPl51k76tohjAdqNC1QQ3gEq0f77_2ptrwoLJ_mpcARGKzrUbVRuFaJZP--Rfor1WT4DZRQq0wRWpLZ9dhJkNHolkjUi9F0rcbGKOsbSq8va5jNhyZylgyzIjn8278irUaJ5FxM0WELGiwGQnOSsvWDSoX-OkTtYmWgZRrPtrNLWfHIbqnF4ZiFhCLX8DC7w_IH_mLIUTNU4lH_smBg9dnqYkdKG6zUAiv3PlEqrCVxEhu-fJXfqO2-oTMA2tv2PPKT7cxqIeejzeFjh_6bIDFOsVMtAYX0pVe9CdtazQRUpUPhiGyns8GgpQi3BLRCilEjYcW6NAgN4IS2-NJPuYWpu9AsNHAhiZQgDL3XJRxp1gsoqlSF4ccCOfXfRcqAEe9NJsJ3oGSS9MGjYG5L_Ft5Ck03jO6WALz_aspq3VNRWiuTAMyOpqlLhpQkmsO0WhjPkUIJs2aK2ZXMuOk1ydfJSvHp6uyRmJhtIpO2eAf_SIk4PimYjQKQiD6VjppSm0Qdp_lvahiXS9JoVqUpceedtIuh4aK_aCxIVjJUF7qJk6OLzavispg-AYOhAWxOqtCpNcYzB8f6A4i4s0cSnJ8cnB8Tte2y93e4jTWGZMRYcqHP8cFlVVocKvjwSXFg0ufhYUr6ac-sPf3ynZQsNUM8JX2Xid9wqKuk_kluYmqOGfJcRszywG4-6T6E48v3APJLen1kLF6mRSbGCn208ftktcWb2zw9et8dzYu33uNMyrZEdmb3KMYz_oX575QiY2FJHHlU0dmIh-RqUZJsOXrl99qZgdvgTNbQi6OAT1gf2jfVhTMe0XYDdgH1aoRUEyyciaQFPpsM_wPjNf7Qng3NnR1XqGG2Y8X89Zibfo1Uvez2ZOi1QjIxyc2m42NdP8-FpNpB2cHPI7PIB5D1-gnXpAAqImllES3etSFF_q_k3K09_6YcZa8es7UPnXErcQ8RqwIKJMEXwMgTubunWf1dz2tzKjq_cU9bA88cUo4S2PKlS7CT-cZq1zw3xyvGkVBVmfvFShKFOV6n99I6rsu3OTqrmGbuXVA7jOHFPSlVtYKiGAZESTWVA8dokwjUPX8c193E5obdo8U8_3R9IyqHh7CiMnlbeTG6qaeJh3QXAi_y76sXpxC3naIvel4i9UBOq5DAWZzCJa8OhiE4hhsF4MlE-QpLsceYpBu5cQ_EmK0mJ7kEpNeiw0v7AU23wL4GwBNMsvj4Pbj_M8A4tIb24ctUZ8yrFHvYwFbcbp6-Z4DkxOkgtpqYc77tuL1DdYw_sL0bLNo3H_2ET655Vs-u0PjWJdLXSRnKXadKH75f3Ippq02NTvt1USi41ckhBGZs60r-60OQT-ruBi4YvB9IzYOqS2twvj3O53ZIfvrmkkl9wZNZ5r2-q2-7e-o_K3uhGj8XC9091jyqOAzkgLYKNIJ4Deh7pgueB5h7KY5G_Zihit-LzxtXJV9vox5OOeUmPEd-yH0DrfdM6zbMPc1ey9wPzLUYX01PyBNfwdcjsDdlVy6SA24XO30GanKTf\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6742d02dd0a189-76270074','','','2024-11-24 07:05:27','2024-11-24 07:05:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41643',0,'cd-form-entry','',0),(41644,0,'2024-11-24 10:51:21','2024-11-24 10:51:21','{\"firstname\":\"Georgia\",\"lastname\":\"Donati Clarke\",\"email\":\"georgiadonaticlarke@gmail.com\",\"contactnumber\":\"07810697404\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAuou6BhDhARIsAIfgrn4v8RsEDOx1WshcjuSOs9eiOy0P-7_5zPaRxm3zsbGCEBticwsK66MaAqKKEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4uuBt60GJXX94AcAEJ-W7-4bLuPaz1mpdNUKDhAQcZhV3xF67IPPEwGgwjZ2NoX0RKl9ePhKYb1_gKBFkiSE4-qGiO4EOPUpLhl_0zzlr_XAiPnFP0xV4Mb9ns3-57MJfiw74Gc037noHwLiHkJTl022pjBuYGw5gylmTz_bOPG-0hQDUNXHP04ItXMhD-vJRSxndNP9D9lZvvbf2AFD4eeSLw5GmeJ3_yFM0Tvi53TBl8eulIosHuxT5SVwX347hm0oScS6OZhew_spp4QkX5sCRNy-0NdmNsaMNW6nuS_VjIl7rfhnCBtq3t-EnSnvadteAypt4aXkkf0rHBvtsxelotwyFsT5HhkdoIB0CgGSrTyjfG29PH0Z8wenWqgZaQIo--Yqli9pcSzePjbsTrH2WXE7JeNXM7Cx7EPoQx9bAqnUEP0S5K_KuZc65TmIQSlM2EpbXZ3_lMd52urGSMkHHIykS9jCm6HGtsrvfxlq3P3YG5A6LhXTVlsz8LcAf54TDsfZyx3RaVEHDt9smwHFlA-_VwUNNUgsCzABGaSsyAPTmlz5hOzS4Gs5To4ghhsNXjgr9tFZXZQqasqg_sfNQKSrScqYLWTVPEeVq09CE8zQ5v_7PNBYnA97JuN5oUGWSUMP0obZgU2oTKnXMNNj6uWxbXI4SXyTdcyzFvM01Y2wYYryAUX2Dq4CQURaKlm7mTmspDGOoE5X8NNjyIbMv45UvsuFEQnyNhkyHSgnQ_aOaE7qnih_RjywKWDJdg8Vu28WDn1PP98iihTHjvIKihD6Aou_aUVgTQm2e8zFnPW3DceasYBbJ_j52TWwmM-75x8LkB6xPPUW9Hej_ppIfKY9AAbF14VOnT1YasoiaqDjW_sny9Y4Zo8qW0PpY11Z4ikAg-htNFzhet5rzdCWa-LiG4-fiT3FnMBFFxkXIHsMVaIYq0RB6me-lBAi0qEnkz5ESxwMOpkDCdS_0olloNXm_CK2ZSfJdyk0Xd7k00g-YDVRpsohUJBtlopFcNxqpubFQRTvG2xev1pfieJeMiqT56R7eOqaz6mKUqZxKP_KTdJ691-X47KWE2RN9qT3kpBbeXbbFHgGUU-t4ZcXAHjQm074cDrA5iwfjYE_iuEpq8-JBMoT7kWidKlznZEpCiY3IYj_KRIZ9hHu8T4kQkvocvg_yRggziZcAh5DV_fMC6znjEBGSB_EEwyATz_SL2HO-nw-v2gj-rlY-o5Iek1rtS0ZuBHAXb6eT4MI9li_BiPGQvii9u49DwHGyGp6tNIqopq1gkiAeF2kZ0bWq_RXf5FyjTuwOowyrJwFLkKe4kXGmvF3exyFBLMEnE_IphZ0q2eUxtPugTe82vhyj6IhcK3WMx1-scvu9uXsw51peT-kRTchMFWj7EjynPA_BOw2w2O-MuGpOou7Nzh8VzqKNRPPGWBpZASGYKbPIFF4P0OcmNI3-a0YW-XAWI9-YiUlgqTHsnTAtgS-vPDXQtVW25i-ev6fi5UJWS78WLlM3CTFaffdHnkgxAUs6g0Sr0aog3NWVpbZnursNeOghQ1R3Pt-ZSuKgXr-PjzSTmPJfIuZVVQ3DHJxhvvfTuHupJn9fmS7SljkaDvil6tGdBOtLjyDdjECuNfv2T_Zvpueh2WNU-zs_oLu83GDmbPbNdVjH_CiPD3YlxycLjlEPUHUgsrCRI_VEXhza3xUEMTLBgCS_AqQZSF3ir5BHYcVNFSp9_0UCkxFUEbR2_lXsX4pC50hxdUNGcW66buHrRSLrPkS2yl64caOlj2evxwXghm5q8KiQB1NvB1wPtAz40GEF3Xa66O_RGAa-8GNTDPDmRd3G-f7h-1vyTD2dl8v5L5x7mUOvb4uS3F0ShEAVQ26y9pN9Ed64Qt-oHiVzExZV6UTt77cbq6HaGpzikSbnu8yr_MDq-bPM1hAkJhFom0igUl3cS3xQZlJbhXcrjlO4NIUwTMy1b9kLfsx-szMPKvVSJsPnoRSi1XFX_RDHbcoMaIxop1Vou9gef9be9DKc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674305211e8ee8-80445448','','','2024-11-24 10:51:21','2024-11-24 10:51:21','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41644',0,'cd-form-entry','',0),(41645,0,'2024-11-24 12:51:17','2024-11-24 12:51:17','{\"firstname\":\"Marta\",\"lastname\":\"Zaghi\",\"email\":\"marta.zaghi9@gmail.com\",\"contactnumber\":\"07729817969\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6u5igXdIV5fYKQ3u4bpYhyTw&amp;gclid=Cj0KCQiAuou6BhDhARIsAIfgrn4PPXgzWZ8xRAH4nJBxGkKo_cgrk94hWOoWX52QN7MnRIYVdwXJg1saAspGEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6NbN9l76fP9uW9h8-NmJUO7B-xlrhCgaSnhlIGVzlQlgXLeOyfVBLxbofOOim5kz9L8LinPytP0pfT88XXwhYfwPEyeICAhxRV9laMrvCLod-RwU4kB902yW48PW9hX23bV4UeLs3H0sXql5t8mdJIHl7f6MJaPrvn0_HZQX8ssW1mbzCgCw5s98aa7HBqnORrPeiYbgcjAAqPufoFgKmL9iDDx1lDJBprQ5aQbJqx47VaSgLBWf14Omm2wcw4cO_jInVKyUtHvXZgIPahnPdw1jA-DheAfhEITUtQeiwC2sJ2tj-HNUU9CNF5Q5ABrbX_3H_S6Mvc2lBrP58_49WeIzORQIa7QNgGuXsBMlV5cBWMVrOqcNqoe0ax9OVvVY3Pkzhe78l3KKsOTyoUt8p7MtkzgVc7OZQfDQkZN-3DdAgPeK6d9yQqQsm4CEEvpmsbw3YC8GxcnYqWXlX6KDhsrbv-10EIpvs0ZkI6f8cLKnIMhQIVHDoCFZgZK700EtLsajYGJH938DJWxWEpZC5-3ZnPOJk13YShW6EdbDwFadJ5MsKGIvWjYJCEVBNrxD8HZAtBuvy0useZDgCIC2y-NEuI8Y16pSFinnfkgxqIJX1GsMom95zaus5SJj0V1hWDXcK1HgESitjWwUlA7gxSuHZCW4oH_vq9tyiW1jcwmYlTZsaOh92z0_6UJKBYZVROOqUy7gZFUZ-5ju3Re5QzOSwIcE7wGTmwWj4njg0NkqGQXxnV36p9EccFSM8M1PbbSlXqUS_3r_kQQepnWRl0LGUjWoaqlCEVbxk7Ycg5cLgq6WwruJOaVTMXYftq7P8qZlNe8oB-6c3qx_xCfSH27ihqQFSH3jWDMCW0Eee3WijG2N2GSr2-J159c8zpQidr2pZXXKjTB61fMTEOCUbTg8acbGFJ4BYLW89hXlo5It9JYLfcXydm_vMX0sRpFOcUTewtMOwADQJDih3tPt4ruFK0YqzmW17tXveW7YLy96ggWIp6fosxraZBovKAjWbYstmaavOSN81Jqf95hesufmRjb3wh0KjxiCQDanWHz6kCL-xoAM5hWBM8mTaSEI84YhPXRcu_qcIpi2CrN7jt9SQdXD5G3xoViKbRRQvcEXFCqhoqmTpbxGUtOa8na3t9OsbPgFj8g-Y6xyQ39XEfVVjuAwBEreq5GbSkVSqlWRbAUnVoG0_U_YDPRYHpD9PbLhncB24yrz9Kwwouky3FmTDbL7eQjkg95RYBcr_ZieANHS7uu5TpaA9gqvQrq7CFjx62cnSwJ7C5yjgHkOflcLw-2FkF1XJySeYHmtuP2o2UX5p8s3EaESYoSpbYDZzplOL10S1JdE_KYljHEBPFJ8ogoHU2dGF9mV3-YpTa16adXM0gQJHIreADtLJ7PsogvqfOk_-LROOcx4aR3UhSRugleVfHFSVgOxRVgRZIaCMGpf0nXU9f0hR5TXc434ojxA8SNl1Tssma03qh_HhtkeTJHKR9szrf4_GWCatBk7frbysq5IvFL_Os7jBO-rMxg1ldEcl42xv0DySiOZgs7y_9PNAhPerbHgRX1KPeqL3MtgMthAbaiGOV4IRHt4BdAHP8TW3c5lB-XnR6_D4of7DJackcswr6rUg_EBv1YDpOja2QUkntoQ02uj7s2h5PIiv8tgiHC9eg2O4c0iw6SubF9wjt1okpYm-sCdYSZPbe0LiMaPgMT37jo2A6mnuCBWnLvHkknO4EJ5JrwIcwaPL7FIcTNt5zPOCQ4WfdaU9t1lcz71oojfkPqMHEzEgCawWC1kRwV4u1vUfQH1Qci4Jqq6sEkvEQ0bMhJBGj6mpjcEO90pkTSE3HTpZ_aMqpk_msOsVZjRW6RYHIcHGLhKo2hgC3P6kotuXIFqQl3q43xQbJhFSO3XiJxvLjEyM6HyUw0rX33SPwWXHetuDAHmfvH3KI53tiLhxaArjIeJ8b0H8srqhKskwLoTTzdqWnsHIbMnV6ZWgYmzDrClAQdC4-CR60Q8amMl6UqAm9M0a6Ues\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67432139aa8147-96332277','','','2024-11-24 12:51:17','2024-11-24 12:51:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41645',0,'cd-form-entry','',0),(41646,0,'2024-11-24 15:01:04','2024-11-24 15:01:04','{\"firstname\":\"Ruth\",\"lastname\":\"Grigg\",\"email\":\"rutheybabey@hotmail.com\",\"contactnumber\":\"07738391017\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7XdzJA1NfaQx5fItNWjHCkvpNBi4UPGjxlfAp4GjIeSbtdRMO4353t0Ocwq6k3Q956qbp0lo89O_ONBetb4ymw1rLngCnhSDpJ7wD4PXFmeyVt6hXgsELI01pDf65CZoj4XU_NIOoeUlfbJn2XjFv6zZEGnuVhoB4HnJZK7jck87HowPFkzexNTrRXjTAXqCH4QKdqK-UkhsaX2Wgaq_qSHIKtvzW-r1KxGGsvFi5OgvWXrNkMpORN9-m1XM73KsjNnfh8rdfrNPO2ixyg5GBrzPkBTNypQyiWDpPxRz6lcbhLB9TTbbTfF5ucqhJfua5_ZJBVEKH0YjUvGVOyzn_erJrfAaRFbGVzE9SL-Kd0lkCmNvSR4l9TynPxp90I1ivZrQYuU20S6F9q0psWcivMFJ2O237kpQgfbDOWp9ih-1yz2Yspp0x_RmkZ84Jwdm26mmeZ-PJRaM-H24kKYeutVTh54PLarN2W-dpAXULhny4k1u4dRXnCOwW2XgPwINtkq4vB1CbhCb5EBQUeLcobHQSLb51ajEaYLle-Ne_JJ230T1JNYGzGhdMDJQjzo4wKTo_-QEnI1nTsdgSziopdgdMTvB2rwOCUAPxpTHfze8mD6vV6mpbZzCxqKyoAHtdqmGfdVIIIHaexqPT--QadkMwceV1S0QWRsm46eGiOnRGgTgrV0TlOS-McU7Arr7WqoipSENPuAr9yyURFLUzBtR_LkW3FFTeBz44lXcqUtooYX4j1oqq0a-IcjJrTewcReVPIIY4jPfls-bLOE_kPniPdS93N8_R5VRFsGZ697zQY0ddTSlxraJjXswp3H-yerTfACXmAO25jaeV9SSVxZ9DJqNGjgNvl-pNz0WXC8wKoT2rMLYs7UO4KZiOOtZuCnzu4L-6EGSdPQBAwTYo8Dhi4aaVn5YgCY6EHrX2X0pJqs4uiVPlwhb7wgPBOJxTH0eRhEVhwqbI9VP_mB1M55VexIzx6QSoiSXL8R0QcTQMb1HamlsTsUFHDEFnSPzcHS3ckUKxr3GzyORQaQTnMUW5il4xWKuZoEYjLKa4L_VF-bixDCTAsoZ-obsNAdRV0ziDpyv_eEqjo-O4S9T6WksWfk4qN6K0vY42fBrgTU0zDW46wzVvT3Occgftb3IomvDxhjKn4MBNlmLO8-3j3jl26C_EvP0fkHyYPwv2uGgK1hC85wOBPgFums1FKbVxO09duYzg2f2Mx_6Bfw1L4Wnyw2ovEcdF-LU_brc8aKzGJmW3emhbFDhW0x3cPnpSUvySd3W1hBgaFLDNPkIzeV1TRmCy8XxUWoLH80dVg_xS9thR5dljp6g9FI3DUnD0qwpQcfrYLljhWqRHvdSzcUwuvUW7tcKNfmPvrFAJr7dzU9e8XSTqN2XnFSBCqObHRqdrOhQmlB8Da1oU2ZTAWJlj9ycfszmGxvc9mGqYJJBQvkfiebIOOg-YH387BWwX5D64-NzQ-6fe5DCINzbMFC4_Cjr03QOHTZM2ah4B_uLZiVY33rbcOQEaONpsThWE8Z_MWJalcBgFReCeUy7MywXPYG2PCE4voJkdgW49spNLOTuDmkpxZAWWWMH1oYmUK_AD99GSnHfT0ZzQ7q-tJQI_4b4lb_HLSkBArO3G1hE9oci91a6VihT9q__zGlr3gWOvfrS1NkKDj0dec_sXOrJNEvGenpS_wgUaXSzPnd-hZk4NcCHZEAefmIo1CqcUAY-f-RDx5kdM5LdayQTLJZEwuxfSBIbN4B66cU3zfX-Kfoi6pVgdB2nTe4AmeaumsnVlOpYw49WFLXv3U0QxGpmIYP6My8gqBh4eoP8mqL74msd7e0FcXG2AknUxkcYFgFTUoFS-dRbxntyDNrXbzia8s0fyLSrO_UBOJ4-rP0Rd74G0D4PMZgOaD9dayz-EGxcU-uS2-dChAs_iw70EfMRR23DJIsYBCZwNlvhGNPFr01dqbne3hDzy0F903bc5yvTvBtY2mzTv3A1Dh8xmQflVD8c4TpCYfwuWDrIEeX7VXMA8VQAwOvvrXoEk-QRQy_mOIJvy9Zh-fc6vGbMZvE-oL1TJf1wL4Xu-Bcz8x6iBVdkx0tKAOvzjXBIGLMYhFDjhUQExzZV8kiB6CdD_1qEZo_i7LdbcOqd37grE-qDud4dQWeVEeNkW_CHkAAKD-cBNgZesWwHm9xmjhmzqkCmhV2S2eCpcK1Uy6lmvYPUZKcOCJ4r4QMSs6jrJFE7JH1r7d\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67433fa2886b57-49333177','','','2024-11-24 15:01:04','2024-11-24 15:01:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41646',0,'cd-form-entry','',0),(41647,0,'2024-11-24 15:02:56','2024-11-24 15:02:56','{\"firstname\":\"Ruth\",\"lastname\":\"Grigg\",\"email\":\"rutheybabey@hotmail.com\",\"contactnumber\":\"07738491017\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4NXmZPf31Oimo0iRvSCYwua9SWbw0TPy9qOcqi_bVzIJYBkzHC-PRmr__l4ArSmg_3F7U-JNRw4vDY4XMgVTeEdiFu_OeqD_vVIAkxGvkb2OOpIpeuJmX5Fj4_1EiPxJmnlKfrz_9R8g3nhyuJFZqMUZuBisnrj96TSjcY3rkwViZmXoygLZLr8ebHaahEoMW9zPY7AZJ9gONAnFnWyvzJxVC4YAvfaUGSv29xCmgc8DdEbr40S-G1uo6qx7xxtTQwFCrmwLVPXgXKoiPXcaqpyrN8gfBsn6oHoQg_YxQDGqc005gkjJav4hwBOQCDvxuSzVagP4OxeRUtZQTRdGYajjuKISE8gRfe3onmPiV7CrV9M93XY6E3nNBUD0pG-jUs30x5ZiFov-SLn1YpyMWWf6wsW5rSAiCa1Z7OezmSQupZW9fMWLZc8BIbuOZBVtSCzqoFFpkOyX6rPGGZRbdVHb7SgmpfQhoqH23uKyiW9GKJuFP3TzeS6DDcrqRzmVzWTyjRyfLOQgkWMD81qePUw0rs8rQ5GGV_OIKK9mceuv0lVtQYJ6VBkc4ks4TlZcZu4AI0_5FB72JBgT3txDqhzuzpnr9c5SFtWUY4py3MgBvzabP_-u_DfOkwLYgV4p0X1L_sdmrV5fVNla6zfUBhuC6kgxZU5E7OopruCMhoXoV_2vkUoBut4mo9yC8SyIENgBYpE-kcT-NQfGCFEMEll5C20JUJ-lOgRjm3SM-Cemtlzkp22ckZeQ0u86t2TxnuMYRtNUPq_DWXDsN2QZ39AdgB9Vk7gxLgrtAWNjhjboo7ACOhBfqjj5FAF_aesM5xBs4zl0vUol8vEx1-mck36myoEHJTneliNnQkPr1W78r3p_efZfPenSD9wvlFsOXdN82Gx2venM--IQTYnhSp-8lVPpE_gx3wxT47eVB099giMuwaNVSjJMNjk86ja1aV1FKaYfXykRkSrFeAJtceUqmyeVcb1WwARm79Iirod9I1zAWPWxSB0WGb3UP1P5ZticcO9A01y1nwYjckqBIfdw7VP7QeyWO5gxWZ7gVWuxmrpKw_ojR_hUmZk8nKztHLP-VE1JDUQmxkQ3mWPs9XHN0QVHV7HDrqJTgeUDPPVq6zSDe-m1OQ87Vim6nW4J9-CD9lQWQL-Mv62d2mK8yxnxncxYl5-QPgbmt7fLqRT5nuJi7YBoLUkM6Wx0MSlSKwYnmcg45dgO0uhhBVHeKWHKhzUb3Oapj0FfZuUPuHHQT_3y20xEQdFjY4yPuLJqrD4XmFHxs3xFaDuUA2tKwVP7V42bO_xMf4v-myKmo7ngxKerObiixfaBLNXlyGmFplS7CoEwgEckjl4ZAEq7RvTxFF0SH4hOXfXcjfOJdKPAAA1SOt-PUo2XymFcnCcnkgduRdaDi9XvLJH5ti54woJBlgIRCHQRMDhQnXYdwTxjcyywWYnutCsKSPVz_02esZXUOBA6HGnz5YrBsUzIANQOz49NCSSXwUkghhFdBCZnzA0giJ9p7T_7LVVhWpBKensHpfqyVh4Ap6Fyoj5-T_m2DQjKisfYA-gnAknAA43f_DCo4YveirzefZOnoXsr7mYMLnL5z6r2-m-WkDmNT_4L2om_xuNGY1K6bCym-wjhnYfhj9PMk6xpur7dRPiESj-wqiIWPW0m33gKnItJehrM4RPcpSeOm0UbloNCY9lvNYrg4J5rLCJ8hOWocwdmVFDDDBCcm-2xuW3pRqp_aaUVKWSQmHg80k0ss64DdBgTrk1f3Le5L55WvfG6gg0uDZBBWVFFl1cm0AGV2SG6vWw-ljfGOqxuC0iZuc_pWSG6gb9ZgeDZqaRcDoAZM7obTz3eKBjKBySXbnDx_ke37sYUTJ7HEeOwFSAyoCiQoONGAGYyQt7btu4os4pv14d__CtDndnT6L6D2qGzlg8Bz-fbvGE_XMgXrUpfNWFCuITKFw3PeoyFn5r7YTW1MZfc_lQEz_Mk9JJjfTEPdfFfEleNaq-1BMnczBWVYVnIrK045w9CN-We0p4w2HoWX1EPDw49jyciHhSHkGABHeWwuACOqCX0MD7N8fdcVIiAI-LYb3tfVTjDhwvUHoa2Ds6gBffP1ry8-Yw6o_rvLFwyF58s72hf5lrqt5P1XFX01TZPgta-HZgSjPVmfx6-pJ0XKlq6QNs_gbd7S9hoXM48jN8NPegy0M95nzYSdKWT85AjbOq8rS9i4MXp4aDrdqO3WCPVO8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67434014754152-80658681','','','2024-11-24 15:02:56','2024-11-24 15:02:56','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41647',0,'cd-form-entry','',0),(41648,0,'2024-11-24 15:04:00','2024-11-24 15:04:00','{\"email\":\"rutheybabey@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"2\",\"currentpostcode\":\"Ls16 7rp\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6i7lZA5q0ERnMMSxpTJ7eMDDPozwTUYNda4XwkT1QWEUyXYNSC6ChUBlPGMwcpxv1xsQlYuRHDU5l47SjIu2DnHluw9xdRYhLy_U8CFYdD9hwFdNYEMs9ClkVQzbFInMpCi_q-5DL5EvjTB4pxCDmbhsIzoJMl4XNOhlyYKlBYshwFui8EpnvyS3ee7889X14fI43kGxWCU3SyqBWTZ3TiDdMR3zknM30VNGG8relRU74OGYneETqANV2tM4Fy4RQphNuEXKT8hgYy_FmHW8UUYEifXpEvjJNgVgv-UcF0h-75ryLrOc5fAg02-mZ6J6Fw1Hw4C9RoBWhHFehzlhb50aQ7_yBrFGQilRkMhg96WNCYCxFoLHEoP8HWNXxxqoXy-tWbqRJFf_9RWIja3nEkx7R18wTARvcfwa8uVtRVRh8bC_2iRGLyMJ8fjUhBB1flwRWq5AbPx7ebS79KhCk3aoRm9seVW7mdakYIpnPvXpxuZVFVl34OKbCq0m4ITNrZ9_uEhu4CEKjN03rR-kbsQWQKjFKFWekT_JMGpgfml1ngGA5DlDLJfP2RbDthIIDpKll0TLKw_SO4EHpZLv21gEdg_lCEU7obG54I7Nvm01ePt0CURCC0K0SCHL5nhvd34us3ztjzVK0CtUZutKi19S2iEYEjd6nVf9-0sBhlyXsU9Dlhy0KDbD06zF5rbKrDpDQa5gnmJ7axCiUQ3tniMnA4Hvty4ZApx_LIWa21jhygch-8VZ8s8ja14DjSKKrcwkRmyV6uayUOOYGFERxqNaktsmAEV-8ebHxMHQqh6CbzsuLuWdiooX5e3AqQ7DdE6dDF2SxmN0XzI15FIkgcQn5SWGrK_LyKNVARsAqZxDLWHJcnjhfrk0g5MWdULIJlz9JUSKoAhDSfB4ViSrw4YFygcstMk4E-octFz8KsSCqs8Mt7Slj11PGwf-uAA2msY78iwP5YbHynzWxN5GB9hwcpXEGbgUVyBr8pRWAokhgX8sw2t5_VBxPoCv-KEmKMnbEaHaF98y7uPVE_Bvtt1OFz4sAiV48E88CvlG9bZQsqbuXkz4IQT67ZCFQQmVMTJoX1_nsdMDY-VB3zKLIJinO55lnjgSCgJafUdOWdnd9ebvP2dslsllSkgnR7V0dbfmsB1-THE2jq5LpcwbNctw4n5sAYu0kHUdE7mP3yL0-IInpW0CzUTifEA9nEYRj1N2eTunAReSi329pvj1cErdMzaD7k_XIfBc08Y-pZFTVsv-tXXrGacfWFsSMBnQ3rWzj6ST0SVqTNDMvrsapLF9E1osvxn-XdCAhMH2sjFniH7U6c9mBnuQ3jD5LW5pNmLmG2KgnZGjhMjRnPrZmRHT6rQ8-JvJS3D4kg1L2JOFjqzikmm00kmHhYK7N-OxX9KuYsi6gT_52WK4_5ZyNpRMu_f22uo0HpcfqcOnX_hI36_ZDh79eYzvedCxdk3TOeahDoW8CRqyo7T52PlFG0yU7t8xDAA6KYh3jxxoFiObKOCA3Z1trJrs-4xrx5Gzk6f7EkC0pv0Rp5BccgQth3wfxa0IuHVKvEaS6Hq2cT1HdYf92ht1DBAE2ahO6B49ir2p71bEBuZV5MuF8NKodoSA3ilKY5T06d3ERmb52kAmAydpATM_nK73md5Bba96T3sQVU7wgJFxwwuidswnbZiGKrPsG1-u3mqjp8LffH_-61ZKIzAT4CmCnNa1LQaq0MiEFeHwUu6XNKBi6OLoQ0y7z6vEfcflFtl23b3gN0dt_g0RBthN2G5qTapdIpYN_S5hRwxkivfCWb4bRsyFNQPSEWup1VU3YMagfgJRbRUsQ2kDo0W8EPabpQjvUO4JjWncu2wuFxL_bHSHwZ4xebs15LL08QK-1FL0KpAr89VrogxJBySuV8Sgn-41LMqZazfJm1YnZ9P1KbZaGKSSc4sD9GBSCfOYOGLHeqH7HBgSWMzUeF1nNRdzH8tGjfi-G7nm4FDNTUf7yr7aLlXtkZzZPDaKQhEQ3oQ10IP4zsMjWVsMgJZlhYMyhMLi_yaPotNfpIcLrhGLh-2GBuv3MpHoOn56o-B9wYbnvtLPXkfdee8qu3-PYrV5AQopCczTVhp6vk6x69hWad4XPczqaUwsH0gMpak2yEV5BR6D7lQlHwuh_K1RU_oTeEKTupWksb9Ep1Wt4CA3QBY9OSzcfNx5vsBtBdzLqM7Ehj3tuF17ZR_i_mZZFXBRKoCgmOp4I899k_\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"4\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674340465b8f85-22725262','','','2024-11-24 15:04:00','2024-11-24 15:04:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41648',0,'cd-form-entry','',0),(41649,0,'2024-11-25 00:53:53','2024-11-25 00:53:53','{\"firstname\":\"Faissal\",\"lastname\":\"Kahel\",\"email\":\"kahelfaissal@gmail.com\",\"contactnumber\":\"07306705450\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAuou6BhDhARIsAIfgrn5kbFFZcwfezb-SJtqqT2giyezUN9CgTe0D25GIG6pxpCBCaSI2Qv4aAhEIEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7gzgu7HkHQG9SQa-HXyT0Jpmpg425IwnUI5nLJPo98v7bXmFTYHt2khkghbXrmtC1gqFIcdw-C1c6q9ly1-JRjOd_KA7pfk9kH3JlFbImWndMaUDoTVenfjgHYLJG0U8C39s9oybhDt2reR7gU3qrJCEqxnO4Wk9m7tL2Td_1w-6Py8CC4TTlF8RYsNsOVn7CGGww_d6ch6Fu_eIeWH905Y24mPkllHq0SGaizTcOf_qPuenWT4gLA7u7l_oGmDrhOtlSeQccjwODOIhCDOPOznoMS1Rhvsy4zdfnM7GqSpglQUoV_sHNp2ZetVtHzovgne6B1kfGPcEWXQfYS4VM8GSHgJdkfx39Qg-CXeiiT5DPZ7tuZb3tX9QYecAFchQjFaRE5QpO36lI__3I2yibvNRyVld7XBUTBqOmqdH-OAEgESK8iO8wyJ7JF9vHsZV2Z65D_Atuu2j1vrUeaEURLhL8Yxyv7Us6IyLWXdQBjCq8qt6vGxiLQ10qoIhvY_yZfNJ5r4Dc08ZI9tb6m6DXCZ42NrqfVWOMhoxiXkfn1UIjtYukn0omaA3y6dqxFavjuAZRasKSZRNTRePE9_VrJWmTn2CysM-l-zpKdPki82gtl4G8P__4Y7ocFbSilxAPiB2aTVaUAsSAeEp4BnUZTXGYzFjXLV7w1nrVulQGeCCmURraHcOvU_JxkQPSR-4626Ld96Yo_lZ8qzVxjKbPiqyvPjUOLwbpbO-bf6oM8c4STxa1SW6luiSEN8cLK_ZrqoPqkw1jjqbrFPGC6jsIHS5Xv_SrYOgmzzsuxm_xzYrhaQWkCPEZssHWTSoWjLQODBxKdmBVnoBUvOXTaBBvTqoZKoachDuiF8h713JD_bPh1AzG1f0vyPYNN0dZG4vrJ7h0mdYABS_hK_n_baGOc3kkZEyiOnUYv44aMO9k8WnRc7YO3f-ZiqjRhZHC7zCBBxI6wzeX8weuFRIR4gjfqXtgGmz3BIzZxsYZX8uGttGUm_qmFxC9sd1erzWv7_mjY4VlNYTS-StNkSLOrh5-4wYjxFYrY5aF73K689XWmPJb1KI-pCaI1gK7rKEACKpPXbYBeyjEBOTM0xkn2Mhi4pBJKDaAtP1GfsLk8UIC2mtQ7c5FmgrQ_H0h8t78o19XKMYKXXjFmi-T6ZDbATIgbk5VxWOo6yIT9tcb9cRnoAqHNZ8WPTB1myNGRecSsKPecq-VQcLhHRGdm394vakpDzcEKSbCupnBXykW0pXe3MAd-yYx0KZJCXe2Bq46zWsTXJFdP7mc0lrZI-nMLTs_Y7l6BDuKAn9Qyx6e4l2b8dfJjUyQHnu9GKCFLy9B55cPZOCMo8_SsNk0JehOJzDKneoTTy9p5YNzWcj5tfROo5Y9qPV1VmFrObvbmf3biKGwJsk4WiGiAdgq43VsCX_sZcTTNbKNam0xD7CxVBsyIkaKQ2TYen2R9pq84btirO_kFKKqTeOkOiev6cMnsaUJG4LA0VOpZMSVGe8dKSEye6uluobHCWDsSGgB2CD-h7sXUGLFYm-8cZXczP1U4-ayDx9vNJ3hd05RAi1CUIhnWeSrlEG04HIklo0RMxU3RZpa1z7PYrYHlAp6LFBI0XlRzHQA3MRJ6YGU3dxXjs496GyJ4Qm1cNoKdJ1K9S18ILRDhKerzXTrYOBwpxxxmfelYaKJcbA-s_mXnhkbIqTkrFvHfmr7xKaPv6s-VPEcC1_-1iybIL_O8DZocD2DFVRn6pAj9pTpvLgARfPzYDzGB5nCMCmppJdmsa4dBRjxFe4FnJ1PdkCfAuOYPKh529yVKRPSZjluL2lLpEWTFxchOJA9nCcyJJJZ1NwCMJyhs5EkwQMup-_4wkNQS8R0Sefy6qPHzcifyw_-bwhvGp9bdsWxULvLfIQVFqDBV-mkO0pBHaSeF-G5uSV23YIWSBvCeQLezyod-LetAnaxrmszJdWq6tdWeVDXlNNeZqPrxWohgYB_UyH0zap7big2BFwCfOGAjoJCi7Fne43B1518iX8g1E6PIY4YA6FX7q4ky1pAPy4utsiqP0h0UKC3-aK__VJ6YA73VlqB5K5Q6yHHJG4tl9bMTKkNMF0j-e5xBLq-JlFxqExFybbgg9yivvgYawBWz6YGtt4Dx5yTX5CixKAUOEqIY-gW8Utym5vgOzfTDGbMtmEEFjAZfkcX2Cn8mJl2x-g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6743ca81153f19-95588373','','','2024-11-25 00:53:53','2024-11-25 00:53:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41649',0,'cd-form-entry','',0),(41650,0,'2024-11-25 00:55:54','2024-11-25 00:55:54','{\"email\":\"kahelfaissal@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"1\",\"currentpostcode\":\"KT2 5NE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAuou6BhDhARIsAIfgrn5kbFFZcwfezb-SJtqqT2giyezUN9CgTe0D25GIG6pxpCBCaSI2Qv4aAhEIEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5Ma4zmZZeuBeZt5EUvAkHjQJDjQ6KM7pagbPdzJd_fO4ht2tjSD4GhdprEeCkQ4SL-MHDNGaSHKmAaD4oyicKZLKZ2ncrkBUMewJAWuHwyd-BBjmrHRvZmI7dSy1OPdc2QTQo-u67beDA-ojXBEk0BXMofKd20KVn2gsoRYrkIUTnC0ZYidpm7n55753evsRrnGv4jkWCnxkC1geNOYOMmGsJOEiqW6r6c7tPgeZpJOoeCQc-hnk7Pj5B4RAKmMNKyJ8LNZ7trU0tH_9Br3gIsVp7oXdjrpG4ps6RcIuoXodU0yzGkNel7lSVeBGsoeeY_FwRXHRvEM01Qut1-bSCbKw6pVRdTBkTWsP2qH9CX91ep7i6A7vR7pXBwl_P0nzG4doOflfCUJs1LIvGsqtvV8tAE5tx9WWOM0fBujGwggLoVeA5IRQDv6CK8pdbTLX7gfRzsq6_9Bd4lkJVHOkG96C1Z2_bdN9qj0sHl6M1LVeprVYZbtFHkaJ0tUxvHDI60IiXaU1TyKlLm9fVaAHBttH93tRtxruLP0M3VQbjuWQdjSFfwV3M9qsraXdJVCIufjIXCB8sTANCk_cByU8OV66Jh4jfoWu6uNZWesuIcwhzynXPktXiRm7PhzloQToc24sOXNLbEwpLrju3JuAC3PtFXIqgAhAhPWH6iX5ZdAspiNeTa1xwdhmV_RO272q6wcXIYtMkJ64N1r2YrpmHUQJkMtHHKzbQWgknq7G-IgF-DEZw6FCkPPqCcX8XXyWWexr6NapwT-ArAUQkarksDqXURrCd5DEU_uZw_3sGlNN2Pyhc4ygLcsWHqeap_IvldRcY8lUZYGhFfQWLlYUY1dIU1spQusYoSD05y_Zdy-a_89-Q7QyoMOwZANRw9jzkyn70nTLe2tVxBYxfg0Ohlm92j75j6rBEulXitIKLqsOCc5NHNshMGAQS2eJ3q_ByJs8LTJZs0I_PnTHmh_scM9naNs2_LSrLknYqsQKV028QLAUCwW5ta50v_xfKxLqrjGqkc9vuZZ357omFDQM8BeGQI7DbpXtbQCXb3h72Ke5RIp8iWxHEHsGFL-VzBG3ZWwwQCTqHJ--BqPbghl7_Ej9jJmFIqI42pK2vVSyjyy8UTkEFJgYIx8c8aGxcin3oHZI5pBp0nZv-pKvKql3eVRwF5_6Xe2pHbFjj1Dx3-R-0rkHGXmghAWSUzl7ORlGQDj9n0fiKPMb6HIyNYwfuVIQL_fz0lRgAM7gayCAgUcR3tk1c9JIALM_yAhK8JEaS-qhEzHGedZ8yLZvnDfedNLanxjAwvoN_qbvFbw86DIWOkttT2EjJ2A6lYiZqIk3pROgkaqKaZMHwhCYONBSKrFs_Ya1_gkvew0I4KpxVVwewSOmmNyYOd0Vh1ie8woM2Jz3FaZhdOnxMIIdeXF8r2kpqp6sR226PZU9m_k9VKRi3TPFXLwa33gN5cX72e6UepylgynYgLV8bmALqwyCk4AAAKG8jTn813j9EA1mrvkV-M9AIQ3oHgGYAH1zvy6khaJP5JHfuxqWAiz6qCkgllYQusfsRXYnNED_s2zlN5DuN4cZpccMLNVn5E33Q4dcU5UxxWfHTZg7I7-ALBDFN5oQ-ztrLpeOr-cMXBn9LPQ79vQjpC--hxod39oar6PxeXbizb7fp8NGE2URJVSL5NVFoMWu7lKhKMYbo0NVJoZeG-ccDZa6d2CY4ZDfxNwCNjlFLj4oJ7YGUOlgSyMs1srUQSCopK5YCMFB-2c0CI3yoFnSTP5R9ZG_M5o_osBRCJo7HNEO5UL-Zk_JWlQ2g2swJfieG5bF8mhe-KhF5Gr6pWYEYnlHBREFXzTO45aoSVZUQbEJyFAdRT-Qu0WQJxw87MFlD9k2g_tt4HYnLhAHM-_SBVQoVnMElPft-siTD76Yxl5-k6pKI_CCiueU014JtCXD3yex63YjpD_j9JgBhnGTJdcTQbQCRaufmYytM2l1bLLTh5E9B2PrPJiJCqb9cWpOVX6EantQkr5SyvPz8h6uUauCeLSJApsauPS0d2GOKIpTor3FhXwYI7ICOVSzX4Becm1NpN6VP_7CTF0iBW7r5mlHbRz6qqRucIwtkXjXD7x-dij0x5cKj2U5aOjvDMvxw7uHp5601wdFCpbe-Ib4dYMRPCAo5J3V0h7VQL05hSN6pAJSdrI_HrGBQc_c8e2WCGL19MQtf8IC9mgJl5GxY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"0\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6743cae7bf2623-66016346','','','2024-11-25 00:55:54','2024-11-25 00:55:54','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41650',0,'cd-form-entry','',0),(41651,0,'2024-11-25 06:58:29','2024-11-25 06:58:29','{\"firstname\":\"Nogieru\",\"lastname\":\"Aiwerioba\",\"email\":\"paiwerioba@gmail.com\",\"contactnumber\":\"07463983083\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4Jiq4k48rETP-ta1HhPYpY2PkwDcvtWFRU_SFuhRCo_FciX1CnZHZh98zNzS4Au9WBTFsNgaCRq73brAz1pzdDQynW63zAXkUMGJxXK0yIsUn5PrJBjRpeSO4nmIkQM7Qhd7HW1y-sGr0Pmjl6CuwXhhj1HSWyfZyMp_wZT0tsdNqqJHvPXDm_pLjh3LFB2LPpVu_Hxnpdoe89Qnxfjdsu13dU16ALrlDEYZuWp4y6lF9io__tH_qSX4B85SIIEcLAGdBBGRpMcNazl1nH_Bc-cxPRLkUTTX9zz7ESduwMzHsk9s-vswz4kURhWbuKZ0WDyq-pkCSF6Uex9XylX57upJ9wJFm3pT-z7_t3ZWuNWZpW7GNRQrnRAsYFcY3-9-6mEnVIlpC-KsQPrM8oeCMEqUNYCkoA75ZBG_UTDJvJ060uJcU7iAusCSilAAMoSvvGBEr9ehfW3KEwXS0t_1B5VuH7LFMD-nCfPg32QDVK3_gb_AqzMID-g4IcstUXWTEPx-p8bY5mA53yOjDDg5MzxmHHPKb1JnH6D9CONVzqSiAU48oelj2rzYrwYfL3jHMzIt9Rz96PakO-fKT_7PXCJvJhOQzRS6AWQES_ttvFs4bCpw7GaNL7ZXMqE3s0AJYNQBH0G4WdCVXh9Rvug50BkUdzaihYKQneAkILU1maJC2aWNqW9825PiE_JafVPdAg1YO2H2PyuYVsxifgVHBeGCFGnbIzTFl_XaEmqo7jj2hIWYnNjeZJcLZDbpWuV2WVxHsB6XxiO3818_KFzCinKWSav8Wp8QIXLpOKy02xgQexji35WJRF4sF9KIPGD9Y63MFanv65dq_LWfjZSW9lO6gMAHOZrJRPv0cfiGo8JYzW2hJneb5SbRR7zYPHaldQGirOu_HNDL4qi1xeIpsc6i_6pdThu1u7Rt5QkjADQc2p0yn502KhU5J3vn1JMr_ltl7X4SpNN1VIJRxC0efst_XYm6kOg80aARrTCvQdDW8Xc6_Zk80dfWA-x5qij-WgPchhI_LiJibfSTEharWhjo4NgZikFsRzOo8E8H0PnOdrf3htwb5rSAMoNMDeYjhxAjEOyu9Rh5-GONa9VyCENdVQDU45j2_3zKYko0d0_5TyvXh_IAKakROprLAKgacqhF6RWQapPS3nzEaFMjLUxZsuBRCY1NVGoFFI7LzrImT1qe8w3NFsfAoAAx1BX3jCCE2FMwFCYvaqWsbQbDNqc2y3zsQXWFwoKKHClEAI490pq6gvFTjLu6McF9Xr-oIJeWCBILq1raeRIbOeFbhWGPjWTU6W9XNMBGGzJItauT-hTj2DFesX-845CTQ-bW4UXsgZwunf8FC-5zLR9cx7LqwAqqwIt_czTClO02FmD0LH1RGmcmtF5rzJ3J1rdbSk7AYkpmuL2xPGFhAukZ_OXvlV21a3HfAbV9M1XsZXJJdU2-Xp1zagGdDCMNv-g087fnIeFPK2EdZIgvTni6_Q7cbZfAL2moALL42kv4pF7HExtAHyjnL-59YF_nT9bU1nDlnaKCdpRRRMXWPmEQ7SED67cysAbPMCtbuR3FxWVWGehu5g2gRZV1qROCMFoyreN76stUtuhpwjHa7I9X9MuSQ7bOpJh-vf7ZLWc9Ek0PkFqtHBf-jj2DdvSGp0DftvLfmCzAxF9JBpiJsTFBKf6dXQPIzYlFhC_Z8_l2uNr7vc-Djn0D9lnVuavUF5ltxcKVHCjBZTr1DRjNpsHIvQHUiW1RzlomxupqpPkZOsKSb7LKzdhNZHEmwT_1EhAD-RZrsxeIp9iOSDZMyijBOmKF4GAPSB6cdUyRKPiULZxt36niMv-Jw4BzvGG5l17zXskD_6sHsHphgtwN8z5-6r27AdVn9cbzRDOaxPxmoFxvCBbrpbFO62qO3YeuQm2VkO4xWMpDpHxsWcrdNRAEHGP-VQ07mLRW7SpA_CDN2Rk4pB5d9yyNNt6Gc3x3mY1he53_TY9NeYXP8V7o4mbUPfToKLwR-GbQ5j4F4eR_WnpD3AtYDuQfs8rnDPGqg-GkQu_bVz0FMk0500ApCIz-jTwqi7Qw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67442007bf2768-40029007','','','2024-11-25 06:58:29','2024-11-25 06:58:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41651',0,'cd-form-entry','',0),(41652,0,'2024-11-25 07:00:53','2024-11-25 07:00:53','{\"email\":\"paiwerioba@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"E3 5GF\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6uytrR_C9EEWWiK6ZWD0Xu1XuSaGcKVh9MRL-Q5vwctOcvR3_jhuP7hG03pxpTShE63jmy3EXis8P2JaDeMfHHcPrhHkQRQ72UHL77u9JAnovf6A5GAx6-wTZNYMbNlhd-ynvhuxWIPIpM0EUAUhzlw-lx5x35wZED2-EMCwUZhEswMEKBD3WAGNYpz2DkqCaliTThe8h7xzuZ4VLN3CxbrABpsWre7ptny-8vSkuQ_vyW-SUt9HtROM4cxu8ZpSKGxbrrDrLVEv5XWL-ARf1uqxtoKAH3brCZZ_1ZAp7ENey2ACaVsZ5fcVDMoz08W36YsAAycglItmEOzPFC6jN-TorhhRHw25O9g6ctivFRMOYMTW_Q44WroLMKry3juAZq6wYI5e5ZoAjEODDPjoTyfD57ZZ5GyGTmVChuGnty3oQEWSsOM1mGnF5EboSez1thjzlkXVncvtsZi5sbvd1wSAByu6uW0vye1_6fDaa4Zuqnf-1loa5asBWfeDE2ehPrP9Ah69C8-Qb6G7wudsFVr-XNlHrCKIp8f-ggdkZsl14T4KejapMZyRUWE2cFq2SLs4YCD3TMfPqpt-9Q65AzGD9n2oGox-3YqkcFylnZClJG_w2i5Kag373UuO8zZbzzRGey170R7Ik035QhuwTayZiuk4Q9-1b8q0K_dyIaqLzQ29ocqWaEN9vPV9vl9YOvekDU7zPzgoFkiPyZKLk9HhvH2cNR8z0zW1mwUBD5yAY5StoMV4ziVJM5sziRN32n6dngmE9qHI96P-5kSNNC30Cyqft-KTP8uokPGxQxGHZZWyfsFxFh3-BgiVAHO5o3NGR_SXAEmUroFANO-VqVTAmazQNUGCgAiFwHUuyHDAej_LGHK3nNiz6JRFhs-n5m2Ga0ZkYVOxdZQJb7lqa_VsGrzZwa-3QNXNdDyTWeNdzbsUXV0rNYQy1ox2AjGt0nhA6qcxHepLXEWuDavZmnczDDyQEGyFetrk9fJD5C9fCL-scT1CHUQqzkAXJTZT-fbuY0si8ROFxcb7TAY9PnnVeuERa4ldLzp4OlAjKxFueVhmw9c78RMvtjC-mtDjKHa10iBqcNrufFuLpneW9i3_JeVXrGIPB40ch8R1mssgmCzPZQl8ByfAC9haLW21BJ5Am6FP4PpsJJaVobs8jY276vXVtkFuv8mWmc3EC1ZvAM9CR6CdCwIl0m6R_3ST3NlztjEt9ztPK7qwn_8u-ySVfi716C1zdmg13tXBFrCjzdcWiUwM6cLqLXCbc27R4O2MAQwhpMmd9h6ogCvkJiZCtTYFaYfO0r6J65I6PNKPOGP_KAHJzXu6sfGxe1bwQYlFKVnCIAGWpFJgaHFoooIt2AMUkbjSFWK2dcz8VHnhL5j9zCdZmTnpgtPJ6cLazzj9DWly_FXThkUjy3RYYirXQ8gbxrxHSSINWHLTjYjdpWID04KMN4Et1ZHWGY65t7p0uO4rxkCB5u5dx0ZZQgjK4QAfIQfOoRfdOTiu2Zv0ROC8FiT3tSflyWRiHQCHs57gTcjmTXJpKck7DHhCKjZuI0PeUWVM64nL-Q1VyC2SkHnRqhJQ2Skj2dDQd0glV77u3ZJ6tYvANJDYQcpI_00DejyjuTvXtYksuPT2PPFOpzQ8nYlKI1pNzW3kCmD2h41KgxHgSaj6bDdH1_6YrWyKUuNCqEpZehPccMjEnDl1FDqM8eWn78PgxFL_dV7iop2GyYtYdjEOIv6X2rqh9-GA7q1VWGo3jvnsWW2lA13-gDHc_qaGJk2Q2XJZ1nCOv69CVnVVuRQZCt1Qr4LHyxoq3SqyB6wAWBUYLSaaoHadfw0EqgGpNrPv80y3mXzH-uDnnIuP9uD-7coGdWrsvqLiAFf0az-vU2-jI1SJF5sC55HaW7593nx8_XQU2UeF-nlBxp_bu_5_v9n5DOQt7wkHpH5enqfn2SQnt78LnyHpgOm50KKC2aZACEgYA_PP9OIqJ2IMrFLrr9sAfCdKCFxXQc1WJInAE5ibVa_-m_8Aitnl6pWf3nynxQFGJFrRBV1GnI\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"3\",\"workindustry\":\"10\",\"livingcircumstances\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6744203b9c4378-48286460','','','2024-11-25 07:00:53','2024-11-25 07:00:53','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41652',0,'cd-form-entry','',0),(41653,0,'2024-11-25 07:59:35','0000-00-00 00:00:00','{\"firstname\":\"Shaikh Saadi\",\"lastname\":\"Saadi\",\"email\":\"mohmmadisrar471@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAuou6BhDhARIsAIfgrn6LT8Vo4ifq-2yNu_eW9V2HoCGkLZVdw5v_D6xm_Mj8YuWlTTnMeuMaAhPiEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4E1Z9n6mtCGpg84jtfpyAjCip55-f4G1DBJKWnOOariX7Bk9e0_fMMxYCSQVUJlsp8EPobB091xh96BTvuW1WMHDEasZAFUkd_w3ROEKJWNpVh0b6CTl-txwzS5-hg0R5t96A58UXUWhMNdtwPW87Ngv-xHNrpc77cFvjYWkXwBbIP6ThMSEBWdhjzs_DXwxpoWyXSEpPd5_3kI4QSNZ7N0MN-VBFsntr3Tesp9UkoCAZKlhTE7izraoIGNZ7wQAFeumhpIMbXZyyxO5JCB3SIfeZzTh3AE0acejbOrAynEYIITpEmzpoVqZod5oZVJMrtKEIyK4th5_2SLFHLaWfRgtBU5NnUDeqr_cfh0_ZGc0o9swTlz91AkY4_0kXkk9QRk3wLpxaqLiaOa_pp9XJT011QJePdiyGW5J2W4zlskUbye7mIc0kmCC4oxd2kSP7Z8BOqhLr6xZBIiMXXsXY2hZhZOUvumhLEIxYpDhSb95w_YNV3-PLpOE_q-suSCYUlcvHSIOWHnLxwvngGLu0nyevGazojG3bCT0RFR5eeJd9OM2T4BVWowgBbj3x-bZf9LV1Uzmr-K1peVQ1KtPclqKcNY9MUOo8QFhBVjbtRJA40XPXGz59sVGps2KsXP-CERZpSN6cz5mqfcB-tdtsaJBhsdqHzi5tpoNQpnq7MAfPR3EZDp4YskLPoqi3SVuX5HFJOxbMVVGbp3jvbhvq1_v-AzfRJL-htZcD30gOZ0f1CEsCeVsA9y_wl1AQx38J496_z0SxinbgjOp5Xbi3jYkWzck5H6J4ekE5O-gTa3eugFVGByY0fRfeW42ddzhW1Z1qqs3EQTFXcuD1aprVkbQbExMlK6v6pqIZ2r8ROUfFnj8B25wuZjP7XBpbw-f4cL-YMOrzlx5fWsSWy_Kv8V7tNC69SzKPx-NQ5AAm9Li88Hzkx6FoMjnXMnVteXDbr5VTRkzXQVPQWPn3v_93PepQB23SdA_4lBn0eUyoQfTLj0_Sc-qovLA8X6MvGh1BBELSjY2JrDv5duQ0AvjaijZYi0dHXmJxx3ZV6dO91N2SUZF8v_I5dA0PTGJdkh5d25E1BC9pYxoJEF6Co3Ui3w_s-1tgoNd-IYKv_fYgQlsaBG33SoyO_U7jVELiUvQNJky1dn_WYpOmG-9vFH0xAh1KcOho7jLR18pgCTULIJY6UC_lf0bYT3hrdr5_L_kP0eY6rBkJAG2zj7ij5hVr66pfrYzIJQHZfIZoNnTX7Uax_tv3ooDE1Y5kV_6nUM29PyI7PNixFxMFzp1fBI8FtZO5kVlx7d3AnKK4n_0sd7StF7oVj_hLGgufEFv5UsaGW0TKbP9afpPuG_Yq8yMyEGAe6SWOaQBSTcLXsAQ9LWR4e1LaS7tce0JJjxh9AecVeby3ijwKEbn7_6u6hTjDzeRROjtR1PQzyqbLHLWChadSCSfC3AaPvz87I5kJb8to0buyg_qAP54LJsPP8HH764feRJFTmuCx6kJbZmhp_0H8yXBefb9XPiqyM9lb0n9sWeuZM3Ns5AolXgwDLjgSO_aem53mqUdh1lEX674HkH04WMWi6V7-XCat3plO7MTCNBH5jHWmKgmDF0w38VfZymABiv26cFeOFNHtuYaPBd86r3OUTE0Dfnb3xK6SIOkX5ok3PvDdSigYcRenjPvYVeGKRMvlIXsDfxVekYFWE72rYq2oILDENHuw8UMiJD__aPeUDQytpPOuYNwoj8voqWuTiEJplGYQ-pE3nNzDXyZIgWKdFgXKhqPWtsBKn_49YEXokWttd7UrpGP8uxiotId3XsVgUA8U3cIu2LY2SmzEyoH561MlH0GzE20z_L03DEW4sDrey3BxcwCt88GC7syXQoD2k8tPZC8pAyn0Itc3KIe6-wSPdtMJ7RrUleU8_zvvvkBDpU2EuAKZm3XKrjhMvmHzZkJPamiQ78bIJpVcfoIc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67442e674d39c6-59715428','','','2024-11-25 07:59:35','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41653',0,'cd-form-entry','',0),(41654,0,'2024-11-25 10:20:19','2024-11-25 10:20:19','{\"firstname\":\"Cynthia\",\"lastname\":\"Morgan\",\"email\":\"cynthia.morgan4686@gmail.com\",\"contactnumber\":\"9163524847\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/\",\"recaptcha_token\":\"03AFcWeA4T8R0I7NJe4Rj1ScLvGKqgI8-es8zBrheWS-qUN939t67k2dDpQnJu3PgJm0aXYZzkegSS70f0tgHMZIe8L0Bx10OUWyZHH1LHMur6z2MNo5kwkjheCidLAkb5_Dkc57mI8x65TQzrDPZdxJpmVNoaIfM_94cV0e6Kdqtay4trGNawN-aY6BPimAn0GYdsHMNz8bxqr4F9NJJIm4Gxv8FZsqP2D1hP1og6t69tRh7wfBa8LtHsmAMopICaIHEwfpbnKtL30pbBtEzV8BtGI64QTvQoLfGz_KKFhYwy44JrQPm5boS0fNYwlcsc0IPbv7fh5Uabk6YyzgsI2Eh6181Y2wKpJCnUym7PuvZMYHcBL5JeD3BRP7gLDl3U5Ohja4dK8yiccc5K8kFKNdxHyrQep6KTmk3EPsI-xbcoxNKRgCBtqMd024s3fnTk8vr0M_Cvgpu9TZcKzaJTk2K3HktCoW2xawqyt66YjOMtP9LUjx57VAfJczbde1EH3VLo_pKyfGcGOUOdvU3zOqSZim8j7ZPxKrcWe22qUtK0Ec1CFPxkSp8A4zREvsCpkLI27PHW-lBDILmWaMD6a4pr8QP6MHWqC1M0VikWJhPL29DpZ7yX9sL1wOscjSFq8wgo3IPl7lEIlvTBbEKTmnJxY4rYpIya6shWvxlajX8IW1jGa1wyfZJg7eudRJGYdh7NUrgd-y6Mb8ookATpKLC7N7GStBI4YVdmmA9o-4ydzXRdhUm6MLEIsoHSmtXM5iGQ5m5Truk6Mc5Z_2_fk6ljoDZEakzJvRETZnTyD4uwNWok8AMT1il8_PTFs_2_AaKXNN95A2B3qV_24_EOe_r6fI7fTsIfBoHrRUtVxpNa4G8Ctqzn858RpXob6rQxYikI9dYLn6UvKsqWXMubpyHX3EOFQ4ocoKbWCyDqfE-0_L61aaCATNnsYwnkVHwzNp2mNtbpiprlEsI2j5DOTVf_YjmxkqPurkHQa0bzD-vrl1qt0ggUpPHSewlwx-08KUzKmC0nPCpHuxoNj5tY-RIpXqs9EmR1e9m4-W6RY23-UUdoZfUsOGvCK1afSWIFatLS164oFXxYkie_nfAEG5JjiFCqMEOjVV00JHg6J6fQq3J7Wgnjy5bSDBac4v_L1_xQtwpC8t9YP3jAJRoaL83n10_kJ8gT0PzTarizXnEk_g63z26pDMtSmqPoA-q3kAa1XDmTUlgpcD0Gh7aCMEXX2PvYvLIYr_rhKXPf_uoWYQ2ZMY9E3VBBx1pR3aAvEy2R_KW2WoEKeteEE2v12wd3oV11bZxaprMt-W8G0mwU2k1bmdb7s-NwHplxcOxmLjPr5t3DFfxxcWkUMl1epRO3AqVF3V3TLN9eLL0k52PEQ6nj_RN1TF7aakQn5aqa79UjWC8UIS4tEXwjGdf9vYyUGlKEml9QaDqA5nmjtRAA-TWTpTcJDhLLJPa8CKZ41Cc8RtNHMTkCRl6tHWz9DPvW_aFruoWiS9erpq22vBI5vzfo0CHum5LU7A7W5pKK7lMt40NEzw6HunFxGXaLx3KhT_3e4797-wYitRH8BOUlJLFiR239GksYRc9z2ShNWvaGh1gM52mGfOYvKHJ5_7hczc2EjSPQj8SRDdEC6Fncf42XvkgD5dIXGETAITz043pzKaCWlgAIt_COWG3Qcpsm6tYibYdp8qvSjnGvR9pwemL9QDkYbyzILbj29XKtjmSoLO9jmbZuWFH0Fcg1O0SUnZDJ3JzPbAIReea56gCvOFalLxRRS6unaFk4JcJH3gXTgvP2tgJ8fUTbpJ9oOlMzLg3If99fWoH3gkG17HGAsCxxxP1tIlInoWvdYURH4su_uawoRdmyL_VYVuEYTlA6n5XQXcdPUkSamoZM1UWN1FmQMK-JIk2GC7ltsRGp6ejOdPyoSBt0r11mjasRzIzGqHC8_Xh53A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67444f5e5be372-22696406','','','2024-11-25 10:20:19','2024-11-25 10:20:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41654',0,'cd-form-entry','',0),(41655,0,'2024-11-25 10:26:38','0000-00-00 00:00:00','{\"firstname\":\"jennifer\",\"lastname\":\"todd\",\"email\":\"jtodd0322@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uJSKYvZSmuaV2JMsXDLPrl0&amp;gclid=CjwKCAiA3ZC6BhBaEiwAeqfvyrhBYwImbEiw6XJ3qsL-92L1jsU3TMuDSx-Pp1v0Df-js8M3ZCfE9xoCnckQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7FG0SNrWia4kS2H045JTAvn2tgNFlf5XtJh1g0PHLjlSW-dZ6JlzzOtx0LZTAAOa11Zn9YcMP1Ox6zkd46afI1zze8L74dY1nGG_zkelg6mj51bOLMhxunU8bXi2Ou_2Xq19Ai3NnFc_5g2QM6OmrsEuIoIRJ2VwpCMjEepurwOpRBCW8qfrQOtxy9C_Q3NtlIsjoGR2FMQWi4ujwoGY3jS2pmaMB3-ZkfF81lxSPL59DlqKpwkITXCvQRq5PlOdbwSXbMMiP8ASQGzFZ6GPL7iFM5i6A4tSc2ZERkWS2bNwkxGd_9jMXtcgoiJEPHZXK13pLcclGWicZiltSwykvzJraAi5n1teMdFH5Iv0VY9ec3CXbAHqJnPfA6NtIX24P3zXN_RKNRpw-6FTHTDehdHtpaIa7jaDmK5YYcPnXAQItk12kis1YcO_et_2othmKamLeBkK1GdrLJpnxZv5QEQJ98ZkiB6JhlCQdFGnkfBCHbbZNw_sS45y0dNLA8WyTLqCyYM1tjN-8x3xmlS2__gL1yFT8cyPw7qymiLXoW-P2LsgzAeHjkk30WFr4BE89w4UdJBWIjS01_KADI9LpkNTskRrhchwx5aXV2gWXBUsGtABdrVoURHbgpnzq3Ywo-5xq1kHADMpW-BaFaDHyZtcTorGkPdYyClu4eza8khZx8HDlSzuBt9dlyDMh3-BcXhiEdyP1BEQncSg3K6hOvHY2C5EKzDoHvi9mxjf9u9MXx8mpQn6YQlseQD774gFJAvf1OoXkVu8IwpW-WmIVUiz6ZM2st1A4DdKy4NYVPydqpHheRfHVfndCBCRGH233-SHuIR2QdiQfXuC_aanz1afMu2r86h9f4cY7swe3R1QuOsPpRoU8_KKbrco4b69YgXmm7PtnpY9Dt_hT6foV_uAdv7mTMh90Z286NYvIdoJccXNoI_d2QGzBa0PMvy8dIDBVytzQRDSGzYVNPABvnHFArfvGy6FhjjoFfGc5uaWtEF3Dqsr5Iq_JxyGWGraVCp0_ul4GVLqHR5Amaa1E-ad2USgAOCyNg5cAdLirQLm5gykuZhKd3u1Njh4uSVUwspHCmxTmiRiOuMEfUE_xxjPNbZgPFg2vZA9mpzYTcPWUj8xj5Ai_P0lbPqS3S_IKBzCGHctDQl0gRtftLmphYH9Rw8RpW67J19Ko9Ww2GSr-CAm1v_QUV1ujR6DJ1Qvon9-wy6zNzWJ64eieK73ekAkzR3_H8T4YFDVhH8tWp6qtnoWVfGsCsVoOP_RwtqT9pKXdjrMMSV81mUsrSuII5_6gdoWT4yVPpXoDJ3LyuAcoSH498iICubymvLHw3FLP5tVdxSZ9IZhBfE36q1JWlzMc2GDQIQbcX6CV3s416axhH4If6eALdKuICakfpO4gZwAD3WJOXGEL3Znn59rsaSmZQQ_30j2DkGE_fnqhMt65Gr7yqHk3gNT153UVEnV-8kPxUabqjxZjQaipiN1V2Mc-H_Y-EtkakRW6MReGycDvJiawl32Nalq6v1aJbGo6dYVZVnzvJPwJ10oTC7jFm7Jmsepn0U5GRqL9OpBKTSWptP51BQCT3biVWonlxWipUGe_qlUBmLxIGIg7c3CKXPFdbc7Hgut-sJm2QuAyqXWGS-v0M3gUY9x_u5CMnQxD6SENSaP5BIy_k4FYCgMXCS0M2l-OyXV5KqGhnrRmp6STyiN71TsP1hFEzhK3JoytxeEyhOQ5GfSArkZTRtLBeMLN-vMiBF9f27j-PC8uVNiWLehf2Sxz33gBC_RvmO6uG3Ra4aAebOcqfHM8yarlsuSNIGxKSAWjRQPbS6wG7-bFGm1jzVSnzL5y5cXHG8E23Dur1HIiEOw7iimu83Tqdl_VBZaEFDlVZ6cQ5hrOU7B8Kau7z4gUriHaMHmsW__mvZyqHofIjVl4x3RDFR1l-7143jz4-yRUGyH0_4i7CGfMPC1ZanVtp_dieGHcpiXfiuPiKkUaOVJdnuwYlN5wss8P1LQ6_B-7DzkJHbePFj68ldTM\",\"recaptcha_score\":0.4,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-674450de12f692-95195997','','','2024-11-25 10:26:38','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41655',0,'cd-form-entry','',0),(41656,0,'2024-11-26 10:42:50','2024-11-26 10:42:50','{\"firstname\":\"Rachael\",\"lastname\":\"Ball\",\"email\":\"rachaelball10@gmail.com\",\"contactnumber\":\"07969675912\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA74O_gf-hdo3GI_5BGidr70jbxezz6H3p-zlAKIU5IWNT0VVJO3-a4kWruuOhNsYeJcdR_iDN9ubRbdytY6ypFd9ZIBxjYYrwnAUNs_-vBrlG3fQI_VKvjnu59UTRNKRNfy6cA-CB1rhPX0a2SfHGO47zTiBhxH4HNBxP2MaWJmlzfGZdC3ZrMuoAy-4TLU4YMz6GDkgTKRwWcknCOoUW1kdqdXAs0RpL5yulNd2awCxvNDwtlVSUPG9z8N6T3rArJwLb1rwcdAMYsY3j7CbeGVUb8N-MVe1Cd1koTYJhwIXRRNOxQE_VmK7p1H9W-pY2IiiKjE6xz9TyFQn242yOmTHR6AFWpDiOO2hy_eOgjSZHp9XUpSfQKuS9qG1wQUmHef0dGuvuf9FC2ejQLjpmgnZOQZWZjvCW4fXVbwucWP9dSEw3uHloMwalSAUTV7RLX6J7Li-b7R0xb8XX0BbR9iL2HWHFv3C44-KfW6b2ysn_HGUOSdKn9TBYaWQhNaK-b9QJtJzGswU5OQVCsoSPZDJgeM4QbPclNT2gXHxCtx8hp-pBW8NahZ74L7w9ugkBqayOyIr2tnpfqHjxEYkSfcm5r3tuW42wIwpPOO4j-UWz7r_2ekqYaVYJ450hQqU7PBWS0BZr76uIAu3dKfVKORAbuU0Lvqd3k062_yfcn9sMigWpHkPuIFavlEdf75po2SScAgmLW931FzUOUDVWJqcXm6j9U-PIg6_2rOBhHxIpaExXuw2fOqyIIjYz4dS-857uA7uHvqB-cCkYAMQalMla2nDXpQK7MQyTxvBJttfsO35XuGVcUbAciIyGsxGZ1TjLqSep211FtRt6g3uzLeSwPUeFquUc-octexRx9XsU4upND5S6TVmgT5ns5YO0UZbNQJ3OExb9ss8j5L-xMcwuHG7Ung55H2gf1QBCcy87zZHbG53x8b1PQ407VoYCt2T65w6ixSh6zJ3dA3OmimW-c0jOgcSIXmPh7-SqA_favmhAnNVotsdU7QeP4xdaL3wPKbaqcahGxSDokEJIuMtGNvxP9fiDiScErHcYWLiAxD-it_ppZUo3TShOAGOHgYKDoxHklLayhOf1zYubtNF09QCgdJt0qYTN7XU3jULJigFwBpPywEl8pBs88Y-VMhp7bfq7FZlBDS2hJ-PCAoYgIebPJIYBJJRV8u4u5rqsEdmrWTijRGX-jkoNrcWzvIYIPc9d7yD-2FqTAOT-TnTW83BmFoMnUyWBwSft8Ef9iWcYee2a8a7fgR-__nallN1E4BhkvLBaVDAxrTmM9TPt05pnd6TOHpHhwuhPZ0iXrIA33oaqi-iGO_wBLvf0Xl7K9qqzQU9y2TqUAKLmjoXN7HyDsw3owuF02Yeg5rvDPb1EGvtI2ApcUkteBn1Sm_pKt1r2xoUz6_WjGm9PqfrSABKkpCO8Bl8cUq_le6Gfn8ECf_D9iMW9_CyRtLSFPA2Q_0LcxSU7PkmtB_yvWt5RP6PNPI5cjFPJY55G2dPZ5HnufofGnsJFvmWfJjn9dPgTC_EdQmLem4YW5Ca0tlUy1HYQFQQyvWd9Zlu5ddWsqNxvj6Y8zLmIJW8wsvEzUs29_-gsQRASh-AVHLupo65Iu6W1Z4DdHpvqtTKW3fgOBiJPqg2qDz_SglmtwRtNnPqou-OkXZ2JtR3YvVu605pSmee2LjhviulytEyOI74qjP7xF3JubYG22oguk9sVKs_1yX1SvjIU35DOgsDoQgVkikh7vHoWp8fEnOAd1JxGsfa2kSJobr9lkl9RUULnG8t9uBBrDxXs7Tg1Q3inOjc-C9CtkWcFZ-m5NLo7A06YVk0l7uyzgoLfzZf-ywDALx4otP1zsTDL4LEV3akvubjeV3Otud_fdELDCsu86HK2NCj9N-JNKCIWIeNOb6XtF3E2BsjQh5FrBlp3KuewjDKRUR6Vy2CFkTDw2QJCb9TzOQygKDRa28ZJnVgjX1V-R31ZAH\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6745a61fab8461-50829093','','','2024-11-26 10:42:50','2024-11-26 10:42:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41656',0,'cd-form-entry','',0),(41657,0,'2024-11-26 14:14:00','2024-11-26 14:14:00','{\"firstname\":\"Harry\",\"lastname\":\"Thompson\",\"email\":\"harry.thomp99@gmail.com\",\"contactnumber\":\"07508060882\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA49LJ_26TEbGzYD0D9FNvABYKzOuat8mmH82YHpYwOh5U04Vyv8nolJqhPvpvx2SJbNkvaxlIi_1TJK8HFDRq3eA_bunR_VQoX8zD_BhYKtBFilsNzUkmcMzRLsSPvGdwZKRFnghf05Lq4-Yb6fsAmXorkeXMvgWIrQK7miKgZasSJxRG4pFwt5N0kDvLYvXExRa5X4IlwYjDwpoXdXbXS0CtE2_6mAmhu9kv2spAnckeTcDmlRDwEWdiNuXsFBdIyVcBQVmIUi1mKHhPh7GIo-SsDfBgwVWcwdALYUauqrACQeQPCJiaI3YW4vzY2y4hEmv0CzK0RUxCXPQthCqMdL7t8I3DOWaPF2-z9hSqXVyGAPcY6L-4v3unJDHnow8FE9W5vhsIXNOrR3uOXoUIKTXR_0zCJtxlNWymEK5-xiu9gKOcjWZpyUXedj6Ff22GdtPJP-sQ8wakAML5lEbIh-SQ1lN476A-VduZ1bydbnHN3mB-Us4ED9E-16S134ydWXfZaoCYE2FQVqtxc3-w9OoW-GhZXtj3zWh0amOdd-Yzcqm7HHG6_KaNLuttpasYRoeRjajt9B9-hKjhbPvFYt2hinCmKH3AN3WnFxfT6VmyPWH6KjTSVKyaPHS66BfPtJpyvSMHW_MR8fz97yO6m49oCteK1dhUtc1Ki7wz8UQiZ1BNL3K0onS7FGPjYo5boEPWP0fAWAzxm4s9zQpLZvGGGlBSKAwlAGeg887cCxl7oLp5G45t8fSARiY6tKERnlvpmbooXq9Cu49KZPcJYnAy_8mUlqVmYzji1ga7ziktDmVcfA3R2p-FHW__-8iz1CzFClNgodjq6vyBDIxp644TUA_cNdYsuCd7pXwOAil-QBu0Nqj1fBc6b1FsxTL8PRgPh6qC45YmufP7jLTct3k69vuAjZOgCCE-GSWO6soL1JJuFLtyyHeWsFjS0dW7TKGOlrDeEmHEneWFY61MRf0SN4Rey4ETCUqPhXt4FVMVhjkAxQ6FU9p9pSmLPh9tWery3WdwtJ2T9GQz5ZHtJEJE1OJGtrsfh7HJwRLrUUfLWPqyBlVqd4yqxRfJ3Lc-yiFnAw5EjLDC6oe-VZc5cBJ9qJyW_YHUX4iEG2JremuNrtwWGy9h5YotQnSJuE-cFavFo1hhLnOAH2YC6tSna4aHaWJ3DrO9pp1gx7T2SdzmOjtCbyQZjGQgSIgMcF6Qv9VaT4z4IhRD4l_G9XB5iGpqk_lx3kkiLnSM1LC_AYYOFMcIh8Oj1r9H4T2_Ksm8hnln-xprb8Z4f_9ejzGjKREspoeF2A_BtJ5KsF3ArweSBhV87ZYOSegL9r0ycsP9fi1Tojggntvsh7wUCtzxhTzjJ_tdxgR2nsTTxilhrWWUVIDq3JgeUS5tcbOuxP6IU398tdw5iAMdHNRv1evziO7NlHdmnv3RW6RLC80Q4CH0Ehr-ypzocLxOQbuXejeewpkwh_zwSDZAbrmpkgFRoq1QxjUvH2UbV5vb53ZDErSgdcuydx2nVj5ezwgIcalgCmD13UumECbG8uQ_ch4TxDt76KEF0Op7V8T1qywX6qPDhxGGDF-7IU8W1DbG-taviviQu0JPhaUPfvrZanIpsksRSv2iCgLUL2yXo6sRBhQ5D4nZogXqJelf7n8xh1qqiqPq3B6WGCTmH_GS86b1PA61HK-6h5klUtI-wTA1ZOEqRAmeADJSfWDOHZ-ApDz_fgm8cg8iha14V-isDVWDivsSML3GV3uH7XWFimMBst3o_jPb9f6aSWDNMG3BOV_BJuKWBs_Bw2fTrWLfA8LHSTAQD7-AYiWjUUvCQOezmB_a2utnuqw18tQ8aDQBT-4rZHZ7mkAU9nAAuy49KIEXOQ0SQUw03qZ3oqIJRNewc_DGpF7dKoKhYwRwHIlERtRJn0NijzS0AYnSbZyvYCNfsX8O4DTcc-uazTWawv-cy_xb95GCbxg8aHgQXEcRef8HhX_bmlEI96oKSWJYV1tZecgnpk-w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6745d79b1fa053-86870004','','','2024-11-26 14:14:00','2024-11-26 14:14:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41657',0,'cd-form-entry','',0),(41658,0,'2024-11-26 14:15:24','2024-11-26 14:15:24','{\"email\":\"harry.thomp99@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"5\",\"currentpostcode\":\"NR3 3HB\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA4rdZuw9-uEvD8u6GdVy5upmXBvReUf60TdHjS9WcWYzGRoh_rxq83DBAav1uGFJlRLSZH_zQhCv8WYwQaE3NJFIwohQkdx1mFA-uCtRRfqCsMYxlnyT-LNN9lJe9oqTJX2teX-tYP5C3pdKR2GRnyrf3BViB_hF_5KxWGqNK2yH308ch6jSKOkIQlfkVsI2BoaLVIy0r97eYHD-NUjG5IomqTbG2s-6sKk1uwEAvXy_QhGJdJnxzPfIMJ8dlg9V2zLHch5yCsQharQ-n6nh_n-deK3-im5eq08JLMLw2J6aSEYgAqQGzRdHJQM7esVJ7gF-ysIq44hVkV4bOtMd5eKleYaabbkng0UBgdnHIZIRCXNxflUjmtC3dyL9m0DUwsYhheYQrpmMmcxNDN7GgkP6Mb6WfqrHAUowguBsOPbYJUI4tfj8HbnunzHmuLaS61k7gzvyzb8CoN1vXHucuym2MvB9z3TWakkZqu3tIW8NZ0snysWRudBP8NXkGwDWbVvtSLXjS-124o85b0-X-JdAD7f-12Os_aSB40kR1jz8u567axDBYiQYj_YMpY2sxQkQp9MEr6VOBYA9iaWfagYssRPLYDz3pfRbAW1bgfgH_okV1zTSn2-CxZ-fy5u5SJVEmicDEjKcH6Nb-GJlhlD9CZFj0he6m2cOAXYwWkzy_oAdbh3E3f7ewbvT--b00GFsIt8dq1QicrkeSjyQrz-COSWS59Zk7F1KEH3L-jWgzjppzry4DB5l4SGS_H87WaqirWHRondxwWl3zkklG6wUe-Rt59bmKUq3o8SPwXJ30O_VF9L22fy4NGKAKN6bzVR53bAxPQ6OmG--P6TmYEydbt8gciIA7q3h45Y0P-PPSTcrTSnyrvoDaaNQu0sgy0q2ln8cGAqp1JSxrPLlsE5MeI596ZDw-CzvoKSHNCyPDIGxFhgY_GtbuMKhMjukUfGPXlRQ3ipL1hIMN1nMdJFB3hYSNIxp3QF8ML0BDfYavO5cXBaZBeFFSqTzEqgI8XhvloEK7WqzhXRDONB7nGxaaFeepnAjrM7tt5k7v7jShd6jrnZea2YJOoOCWCdOj3oGsd2Phr8lVEghvameFUfu1yDWdUSyC4Pe8dZx9AQtlnfoAGvfcHPayZUKbu9RjQRTDQS4PywOUealnUJk4Dewv9CjMtu-K5QwMaomJRl-H16cYnuccOw02sG4Purl1uAq0dWFbtn4PLtnuATT30uOm-N3vlz_59YWAcVs2ARcGn7eP5A3YPnzqIh9r_fayocFx3cDUT7XQjl4l1IpXMkLIj0NPxBRwz7UlfFdcAA0Sc3Jk7EBcjm4ZDTJayKX1kEmisE5VQrCWvF-lryKjW9qpVBHZSIVVOXDD3XbwIawlQB21borkCugI0pos--h1_DjcQO6UWM7EPy3LLpKYyu43kVACrIAZ2GviPXXUc3n9ngOmRft6JGZRmA7qVoRkcDlOHtedcuzMf8GGwulNSus3LSk583F6qTAtEtM_d1OV1qI4P4zyNv5ykH37eMIShIavJIUeg4JBFbXEjYbpUOw3lrM7xUYNXu5aopH72qDPYHWqeKgcgzmNlkvJvLql7tSfa0yZJkUXCZlzzuNS_Hq5Yy7FLyAK0u_O21bYaSu57HgrEJdENtwD1S6dcuD7Ex8vjWQogTOtnXGmirkZSxVAJabxSR2MEph4f0n6ckNVmLdXQ-ExEx8lenjVsdbordSzdeh9-Lk5ROF2PeE35W0jiQ3-Dxs8o0RIrSbFJMA8XeU4aTZFZ16b4MAdd6yI6akU3xmEJwAdUXxifc87V19pNrmOJ9Z05Y2X2adG-OfKVXdCh3aWrHhty9Dxai8KIkC2vML0ZSJxOHBjRH0U0g-6eXj11Eaeblnl4-xiy18LQ3DUa_YvXwlgIO-VSzzmDixPQ8pk7ihMSA4ncSjhAwSMmlPm2HD7M6YiaVzIrPXF6bDHdgkkC8Erobd3BtFz-jIciG20jA-d68x7qz5kw7pJK-y66SJdCR1B-fyuNShyNDOOo\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6745d7deb30186-52171037','','','2024-11-26 14:15:24','2024-11-26 14:15:24','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41658',0,'cd-form-entry','',0),(41659,0,'2024-11-26 14:15:09','2024-11-26 14:15:09','{\"firstname\":\"jacek\",\"lastname\":\"gawor\",\"email\":\"jacek_gawor@hotmail.com\",\"contactnumber\":\"07858079799\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAgJa6BhCOARIsAMiL7V_bztFViS2wpxX-cDevex0zAUIQ8ZN_N93T0LvePy17vGVSN7chrREaAlHZEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4F0gxq_z-p7vTfVeVD2Aiklr3IpYIWKNFQjbjHQmzX1wPAXXJk1vdY_DZ-HP0Qj8GU5_Frr-hAbfkBWujhjL-L6BIMRwErgu63guCFxRts5yK9ziKTA62MSxpDu2DvrjQHy_jd6iBNXROzA_zYJ7TkMG7nimhl9IoMXHueeWWaTqrLeB9IRz5Vy4XyPJlFa4xYenSl78prPxO_FkHPCxV10rwbI5r1zUxweh3oSjiLr6PqSOr1euaAC9Sz8jCIuHGP7xIjIAjpulKm-Dou0Rkr9E7Dv36RFqWTyCoz5S0BTQrDl75_UU4StqsS1r7YnmStxZw-rN7GJGflw0o8Hzy4oiuTDGZ-tmXui6au2ucCWlXpzwTICyBN93X_BdVJYv8Q444rge6DcibXCx4d2IgsiHQDt5RRXUvKw4y-OC34hbPXNGr1xZSAsYt3Y8mW8hvLoBJztc5ncf9AuuN72vF7xMLQHP2S1Znx8W7Jcq7r9Ig7v2eWrMzL0zOueKFNHex4zLujodQeryRmR00utYzhTUuqvfHT8pz7xWItY37xb8jebaQgy9UCzHhTceQQsjgTdowG-DDit0AGt2JLGwTg-eBs0u66MR2k3tFQkgCQnMIZO3WioMCp9aqXdEtGu38LEXcORLCtMeANG0axyhKKC_1w8puGr4aT-_P09Ju-32gsfc6RxE8wo6G5sFQRoO4bfIwnIf-ycR07iizXiLu70OfnT3iFOqOw-cIAWms6WFfp_wCAQjLPkMaxDuPKd2ShzR4yeXc8MKK9LUswyw4uIna7WWjfbEnLBOmVBdreK3l05iaODgTixaHHLAvevzcb-cbabpIxGIm60GA6Eq2B6GTUIBNey_rkv1QSAh-fVeYZjB6zhNHCkANfRHpWVTTM3ZLPt898TY6rA8NUVKfhZWBr9XRWUZTZSo8wUyTz57LmvuvdBVsqbgIS-njDhwiQ2zv-rBcVCVYBUoyRMvU38YJSwd2P3Mh2HdZgfREr5DtDttVA8Gs7uc06lI0vkDkAyoQ5epPbhyjqIq3GbnwDzyzOiKvIZbJDj9snsi_ekQPC1MMGKJlr82iy8v3VmBpznFAylF1Xh6-FpXdEivQF9qw-2y-g0A7T1Lbw7n6O88WME86rDOxBlezRHasxVr4FRAFh8xbHb9BBQ-XNCp85vme3tpWEZVrC7DtnkVNS5Yjo1g3fjivf22ZDOvysU4caVA5mjjXIe0lqvtOaiQqTOXvkltl_gW9MBdtd5_Id7jZf1GuXSu9NAP64Y1UXVx6j7TDhTAoqYd6YG5wDZZoOJCq5UZd6MLNWnX5dl5LCKp9kRpgmVOcxoiUmVQNoeqahRpLqMX6GzumBuERLCH6pWO59LVtCivDwGWwzgi2-6umYuipt4BoB7li18FHLShzdIy-UBXxxl_L6U8KvY6mBkBiKIrs8yjAud3GRoD-WaC-lW5mkvoeUp_YRjwna2TmQSypffL4IElAoyvwZWIAtQhGNK6ohYiIwLnLLB8ex7woJJqKyCpdb1PcbU6edDLhLkLNZCPeqS9rKrGY2_J5ysyF-wxdqFi6AMt55eQBjYM7wnRgEm2mTUedKthO6T_1-GSRyKOY-effKGR6sF8-vjV8GNG6ZD-ev84_EQIppKmDd_BLjz1OjbkxySCE8r20UAc5ewXDQgJ4qhLNeNE6BggdOCPXJLaIzgHEPJeA6fX0QzH_tupvVBXe0FlPkAO4EJs77J3EH9F4ZBWb-NhCTK5Qhl2-FVToTYLiCaD1Kgh6ZKw6uxaX5jRWlh1j5CyAiaeSsk8ifsTbl0dzcZnEypDLryoyKyQ6iV5xhomwOmzMHBaFLIMGag86HNd91GW3NGUUnaQa02CzJniTIjbmgNyRS4gG9m2V35lEU9QBGgsWuVsVJRYpvR5A3K7EYQHvsT3OmgOyzQGOcmODSlhxcU64DdQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6745d7e8009436-84801216','','','2024-11-26 14:15:09','2024-11-26 14:15:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41659',0,'cd-form-entry','',0),(41660,0,'2024-11-26 14:16:05','2024-11-26 14:16:05','{\"email\":\"jacek_gawor@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"3\",\"currentpostcode\":\"nn175du\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAgJa6BhCOARIsAMiL7V_bztFViS2wpxX-cDevex0zAUIQ8ZN_N93T0LvePy17vGVSN7chrREaAlHZEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6ZslUcDubHgAC8Ww4aGuQ8ngU5-vmzZC57HC_-1V-399NNw06PcmQ6YvwQLh8aEM6BVRzgcAmGXRBup8xjSrBvRtS9SjtEhf57DWV8OPVDGuR007LHyBkmgDxFYsKxEwJzsg3cyuRYPxtk72psTMj6i0dGgANCwvacp08IPRpis-hcwzzq2Xh41NqWB9wNSZkxm53TPKZmC77CWvevXKfVlYXmYUSlAUKebhLWIpU0oP7adFG9i4AWKYB3NFgaIS3PAlxX0k7Bcq307tE2Cj39Bl0C7qte39XX_lfv95FdFkFiXbctGz2xn-JOGW8kYLy54pd3oyp7MVAJLXGo9FqXaf1CTkoQeIrHnZcQ29zhjF-KdfB9L-cwNAIriErdXanFGv9RENWUHM3cQXSh_QPQiMZgVqkdbrsGiPkGecGvMq_1qJLDbFqMBS71COmBC08Pe7EZ960-h4-GLKsqwRinipWDAP_oaxPT90Gr1x8iP94QmfEwvI2pj_-o56-ltQSk2vRGBTKJ5pklaQk-OHRLa4vN2MZ87jBRO6OUTAUCkkjd105lsCEZAe8HZ4caSwVpssjSnhU2Y97zhcJ7N6tkdwBKw_ihcYZmsxhmmC6GDMnGxRwJFOiBWULUi08MyXB8vvnS6rKT_qLkJw1LlsuhnDygVgDGiRVSCHRHnIxkD9TlE-Hs9uiqUrKRZ7MeRHbgfzvR-WSnt3Tfc6EIkhwvGXJ9W-HG4rsv_u3-ciJ31as0FLw6EUUOx_yWyt-MTFh2Shc6-2dDeCMEB4MDBuu628dEILonV6VXD9ap8NHl4GK-a87MOXJ00Pcq1_z7tdBsyBfi_ajeYHLCNxOr3_OCGtKqi6CAUUQKgvY2-hACXS04NkUSOifiP9ZcAPJAQ9Z-azxe7tQ4QIBY75_TVCTMSHXst8FPsTWwQmZn0OeT2mrl5bxYFtnNNOKJwh8vcHKWLPWVyOgTnqO72uWMc6Z-MF0BxRjsLvoGQEYJ9KuuFGm0bWxLB-yvDRQ6aw-QQaJ179cLbJaVDUV6IHNFKRAYeTjQOGANRLhRavj9kFpq1zs_Xq0LVEYHK9zeqMm9Hv5Y9M-GH3rgiE4h7_Le1QR4S3VAZlpWI-dtLL6kswP742awEKvDU989_1KPjwKunpT1_2Gn5Hbc7fVLx8OefGG31UUsqe69Ay3xdd2lrSGMwi3Rw4RyGoIAKGsumPlwWFGF3HbNizox2SNHFMXBu4SYyulAJSbhyI7XNHsM--uiMnG6J2u41TrQUpXxuxbHCxXrm7w0S0kHkHUqt1kktxjqazq2vgencY2LQQY1D3shl2_CxaYllIpqiwQnJ8ZUDXxxn9lt8I_1oQzRefhyYzq6QILW_JWwHENRwSEVV3xke5NSyuka-pPOUZF9vNtIL_G7KO4H0cFTKRckVqVmLN2Nvc40cAckPbTCtyb7XoPQbc02gC3NWZPIv7qrsYBpzsniJwsJSyNTnd3OvEMvE0wjahvtIkeWSm24IgGYmMOv0ru8Fx6RcC5Wccp-jU1Ut0J3_nqK4DVgGPELlF2P9-Qao7LDRt757XstxnF3aCsGVG44taQAvQ3hHJfa4Ti-8sdeEwFKf8HX_aWpxs6tVMcfSqBEXvcvXzgLMkjsn4LLncnC3hrx3EAseFvuDj2a1BrXOwJmY2QfsxqbsQCREDQ6keA7PJcWjIwBDwawyH2ab1WMgRRpaYf81HhryHbQAPAeIyot5YtJD_LCtVnhGpo22hPGAdvySDhmrqj0-nQXuGPDrtp0S3HDp2KdF7-inLFcKl0pMMbGT5eaSaPUqn8wM9emA0vDfTgAc-hy0ByGDEsUw9b_pscLfvOXGS-i1ROB6BTHAHVpc1j4FIUjRSM28cMnJntOl8-0qh9eK9xjP7sBkUQrqRR5m8TpUUlbvWpEdo2za-9tvnvDx8oNP-rGcMVwFQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6745d80c7074f8-58927024','','','2024-11-26 14:16:05','2024-11-26 14:16:05','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41660',0,'cd-form-entry','',0),(41661,0,'2024-11-26 14:17:43','2024-11-26 14:17:43','{\"email\":\"harry.thomp99@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"5\",\"currentpostcode\":\"NR3 3HB\",\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA5Wny1XY52SnRJfK65EfPx4iL-k5VO2tG19Zss273DeeLNVNWherLLg9AdPNlVyvXORMi4-WpoU8Q4OGL5RGgHlwIpwHnLX10Lr3Dcn_-Rx_a1_80fjO7PJLHzmb6l4U1NaOnY_nbufPXY9CkdQVxsB4l4SkuXwD2Er0JI9ldk56hDl__MXci3lsrkTHyNJIfdYajyePXYZfRQq9G55tQ9tSRvZaa3HSthg4_ftnjKDFX5aU5QY_dG1dmNDncl8WEsli0Ss_KkOnbFEDSYJ7_feL--klnDr2fTRGDXjhcBk99D9VeGLrcZo4Kf9Ye9LNLfFCRkPRKgkArPsf-YkpomEECSeZk5BckupPOZOUqHBC7hZkxZOOMApDqtwyx45fcWMKTcp44KPosHSRhVkLePsTdqeNLnRktwn4H8Bw_1ZjYysxtj7abOvBrXw5fuE2tyzffV-JgM9r4JBuEP-MZXWMwi9yBDsRCW4PwE8DX2HK-JwGuJElBC-dSFgiQE_47ZjG7kN1reIMjoeEb8oPVBgk9PfQeMc4iCEFQauU2CeOkA235Px4M_mY4slDEDpniDt__FhLncOg0YwWSzus8o2fCwBn6Fdlp35-uijMeADBJ2NHMgz-dbDXgaJZwjgX5QgVsI3sQkzzONXMy9dO10iDhNzhrhMUokk-zmUGBw7HblBTYv9HKTZxikQzjAfkTjJSz2cw_rfVwsMHXIMz3-3gBchIPFFz8jxwlDnxUaH7OQkhE-WfCsvmF0lnVFc945MGfSDxSlYAvI9uuZ7FuxO4Q7rDPgeCm8jLFDB1fFjNDQ-HtaFvrE8IbIggOz52Aw5a2rcbUZkSr9FOWtwcdu43uad7EkbiQZGFjVf20QFp_pXZOFAL3CjC7k53pVS4bTBW5NgncDMGDQiGtZhIHAOr-xrzS4_tYInkm_M_O4PkL4-DJu_oRzurAYiirLkLLkBfMnhkN2JYAxsu5SSu1_NArzXCppvoaUnn78EpHlbbQbsjDnzKkH9WpXi4JLrlL7ud7V7Gw7b5IPOc6VCGG5Y8ZQXFH4KGx63SfxlTVKHQKLoJW4qzr1D6AL8Z-Vp3LLIGaKv2IzxG8Gk8WRYsE_TTlEG1B9JOh0zbY3NXh6IrRhnTfTUg-Cse17n5FoqrSEhWoxNCZLZhEgiZKk3g1AvczHFax_BaXqezD6mk3uM9eCWb-CZCEnDrfxxS4u_faFdBjO6bJqbdIhRUS0bF9844ICRtV_3HWIYdxj7drhzyS_Pw5oOJ13qIPLpwctnO_WW6jgl5SsPM8LZE4kFhYVJGZzHa58CrVLdybSuVV3fQzXgVjhhREtGQZITRdftFe_GnlTx2ODkoh7R9BnSTevXiLF3zO-tvzEBLHiGYIxwhyY1PdeWQy1W-PSGHaBD6Lwr1vL67ddFQWH8pqm7XRxYMNsD4DrbBgcmtjLhlBvGyFJPkGOKS-v3OXAzP6wi8Qf_0ne91ToBfMnv_byg6neqzfWvKmBY4Ysk5YC71bq4AS3ddrPbnKbLEHV_hS_IMvy9RUsQOBqUjGHLWR76FEtBr9QF5Gimggmiw8OSWGOBICVBiqcWSXTRG-wAXZTieislxuWlBr8cbW40eBI56X1rEi5r_oIrYn-hj63NQwDmZxXtVLNuTIbcAdFUS23jSnR4jo_qI9OCv3ke7XHYAALC7XXb8vky6ukWZ6WmXi-DZ7KIS7qrHFbBlLZeyOlmrTu6G1VDdo42O4rkvYyheUOyi2lBiU0rc8rnggxCFvEYIsiG-XU2uP1_EBtihWzyY_aavMKxgw9-7VSgfXXOnSXUJoiIN4POSTb5VTDQN532nW65mW4-IYb0sbDW2obHuvgciofWQQZxAb0LnQ8iUiK4oWXVN7HwNwk_Zuk_XiLce33aukaiYY0eOmcme2xSXoi5touURD31jhz3VeSNY9-ugPmIRIHeYXwZ8-2zH_AvbqxiYL8R_VKt3pvoZAFubHTa0qmG6PreyqjbOqgSo2xC3AoSzw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6745d8846c5204-09063190','','','2024-11-26 14:17:43','2024-11-26 14:17:43','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41661',0,'cd-form-entry','',0),(41662,0,'2024-11-26 14:22:01','2024-11-26 14:22:01','{\"firstname\":\"Harry\",\"lastname\":\"Thompson\",\"email\":\"harry.thomp99@gmail.com\",\"contactnumber\":\"07508060882\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA7pO3kI0TwTsaGibbTnV4R1Q_E-VZ-gIWqoF3a6oEZykeYijLyIPi4JyPP1flWWcfySxd9nb8Rjv5B7b_T5suRh8v9Y6WJkIrWRgXxITn2ZrJp1EMHLb_IZmsDthha3fEnRQuGv7rBG6Hh9oAqucqd87pGvcK2ddPD801QnZabgKFP6bVEWBhpEntDIrqjeLug_4Ry-ROErv23V5HXiIMUnYHCAQ918WAyfyDwXR0jDhS_FcRyeZF2aoBuPvAd-4AN4JLPtG8WO2DVSWcOgR0hIX1vuHohG_gXwDeEXgFv8ThubINrpV0NBySX4L033KBvr5W9IRCf_Fz4lg9pWaWkNRhSs7eeGMSbFZPSKyReDsKBDp_mhiTgWiT7h8hgZoDTHGvipWOvSXm-mI8mKUrZfFH1eLeVIVElcRSQT84JeG3ygh4FuwK3D4_q09KrHsvRlkr55lpQsxIc0Wmyj_DUvUxlukj4ukZe5aSScXtU-Xh2QcWAIYETOJo3fZMQd87Wj4TD6uj-qLDSNwiVD4gprOBGqvSAuoK6cHm1OqJLTAseoIdWnDhNiD0nmGzpIqQBpn6_nWDLCdDPnrsJTqrGCudnJkFHnK0_CINEYNPEwf8s_HhPHincql4T4TKYdHlmLkHKKJ56exYGHqf6gKN40XEy83WXLpkmy9bta2KRZqyw4FUr-uMOjotoZwZ1u73PsRIqZxlS7KFdQC-BjkVa-ZeWzkkS6bHOCq8zHyVVq3knKhFy6_ibsbm5xFXqTc_CRDdD6kKe7xY2dFMseTw1ORQSurJEa9IOOBHzq1fjL-R8m57hhJ5NCMlva3rmIqJWLRVaaTZNeVcbKJdkzS5cJtpoAUp1WAm0dbVf-oxO2L6OZC_IbpxrO5jXo8Wd1QBj_sxoyYWzUIMDnffKI3oaqwntfhStKkjVwmPpi04FJxShN9TWeOdsqZP6JkQ1fJh_1uIIGPOVNNYFc-uYko5q3xpI5e88xRaivzrEueD43X7wM_ODFt4oAKxklwX0Eq56W0pF6kJ2sGAYQgRXhSszpivJQAr4LCiyeY36Ril5SisC1c9eFyHzfI8uQcCL38fY5LCPPFzK97axE5xiNvdR5KXrxriaYFYMLCiHp4n0EqLugXfVpFW2UDuBVcMC57KhOyB8nsMrrFfpxS8MAljxwQp01Ii4cCXjrM-k0FzJWm1bC57tKz6z4wYehJXqNkik5StoHCCmRTuwL-s40KJ9piL7q5oK9m3QfZ3WWjXZJ_-kC1eQHtW2C1nmrQMuuL6Js_DqY3rB6OA2pkxXkcGIwfVBMRhzDAV6yob_rLL2EnTY3uA_h1XfSyUIOUp41UkBOtS_Mri5B76v-yoxgx1ViFnqfNUnbsgkP8LpCTr6nDUjx8NBYvW9_qylEQCk2lWaVk_vrSLB0YjrzmTXAZUvbvt2gnqJNFca6NS1LF8wZ9QUdwYpNqFpRlFetZnsxSjIH-j7CYvsRfVsw8KkjgQYO6OnKLyHPrQWj3HEVix93RPHSFdxNz5461-Xt-mNIu7TCCuuGE4w1WNzuwwJ7dKxMCx7SOmDJBKyluOZ0XgrOghLakngIX1xrWz5B6F5SQk_uQoQYw-1w-0_1m7wrViQiF-dsuOJkldUZdFQdprCJByLda7VOlJl9bBAPPSUmVRXruRJojSqrZXiSX6TTPPRT8cKJk8a0UuLxUENRWV6D1IQKAfa_s5ERGAPAC_5c6Ph2_9MI0hGwCvYlNFSb_0tZ3JX78QoDa9IGPFyVgmhY4QIrCJoRV7YCgY61gs4X9s2phWeEZZFPlqrjCaQNERR-uT-jHesc5jUl3_AbtcLSnScNNHvlT4V52_LtOT2npbGMhq2fH75xzvZdYlI98u-f2G6e2-TvaKX7HXIMR242utMZ4vHiyhw214_GJVy6xZOlUem9ZLtv2epiZn7KdP4Y_EFUVatHBMGCMeOIs7HeVKIh-mQnVzr7HUM4FQDSEscMM3QXSpsQOA3Ro5E67ODN1CYge5YlYLC1r8zAYtq4e41Y4x4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6745d983289cd9-22647378','','','2024-11-26 14:22:01','2024-11-26 14:22:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41662',0,'cd-form-entry','',0),(41663,0,'2024-11-26 14:23:43','2024-11-26 14:23:43','{\"email\":\"harry.thomp99@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"5\",\"currentpostcode\":\"NR3 3HB\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA6SpyHxFdmONLLR1paF4zdZuhj35r-X3tRXtn2EazJ3qnuYtcxLki3OX75EdDQj2ej7CTqGK0ncmoW7661WB3IO2CspODRAMqE3Q07nVEKuKIA-Cwh31fKS1aQsOUo59el2Zt1_gKsNufCoFeiysMfKz_neQwP2Tk4qmwECYgwsOT5FVUdtaaH7wVq9rewbS5TLmHrq1fNAtVnGcJCu1neGKVfoenT06x3N0aNtBRQeaLILgzhnjRfAc3Cs9JN1WcL6KPX0St_-H6m3yM9SIEnOxpFOZOi2uFVPd4Kk8qbVdEmWnjoe0YwCd-sPyzNR4NLJvTpsXPxT2DPl-OOzleGIYiV-bK7ORoxZtaNliauxwCcuZVCfurwhvduGIEh_rsz-XTbzfbdkZNJPzz0P2xzZYQNAW70QxtQwN2_chWx4bAG1nIrlDAHdHEJtnzikiokcP8aRlTHjt-YCwAvDXZAhbKHRnw84-0opfTGgzaVoDzbuP1mFWOj9Rwc83-Oj3UdmwYv0pxvJINsRDpCSExKLOa89OT5fntgRXd7mCAf3HQrecS_p6sMjJi9yN3NZyw5PIV7CR3hhbjZIgaEbnFIgaLt9a41scPSFP38dDZWdm7UFKK1KrGjyQCNXsnNnNfv5c3GEQ-ElYevRv3uD_nbwivh6j-QJQPUzWl6werkv19MrTEntn6_dvqKvVyk7EteRrisfZIZPnP8OZp7MrzIPVgn-kQ0RHwRK_ankkrMqQI9x2yuj19cnACJUVD7DiuhK9-WIIGJddCcFGcdYXKWtARlfFtabr2U2xy-jAFA1qId2FLitvStmvpkLDMlQkYvRm3rTrVtv_alQJgOW0pRhJBqiMSipWvMCxujPRQmYTmzmATGodfV91uLjUGaYtlarWzIrm763yU4Obv0VK4HhgQS7_vwdqc0Tv_KOEOfdUV-psL92mUfqQiGPcCME83AXhTGGYeHBsdz8BEtUXFmWfGqoqbI5-v2JYRoTSPmesAsZABeqaJoVHBvuC44iXWeZD-mpyrD2rnq28mSa1dTaeayGMfT0_72QOYu9hhhzBOfrKZ1GO8D7zkrI-Fw8uBBMNoxTXLivuP8pZTRYFzflFTQGSFK-BU5khApgkDyeXgXgJ1tTCvkTB-ISRCBM34adFQtTrBfk4yJ2ElhkPpmlWIPuGfpsmBYT_ZIn0OaxNH0q0eph-6uQAdOWna9XHIfzwc9hCxR3lQE02QKMZy6cap405PxDmXz_-QxXLf9aJeBX9LHewvl5Lt12FGyN1D34J5qZW9UdnKtzrnSAAe20IOMw13J63L9Eec8Z_dVNlPx3m4An019bwwTi0N-Ny_3sPYvxgV9IJ_sQYDLJsVXEQGHq8zJdQiNxGWsEJ9-mFbu2Tfh_LApHo65QmJvXn5yvH9O7Qhd2K44_5FDmnyLqeQhEOGIKKtE-Ow_V86Q2whTPLsXLA2CRjQZPx6BgXKp89SKxRDe35_QrWlw8UYaeuCEaDf7Li9gLSPUPbJ3lucWUFa0gZlTsKlnr6TILHwb7bCx__-c-YjIGl4Ku-xLfY8dsgkRaoJ7vt5327Cw-PBdpfePlBVOfG-iF9cZRLfPzMONC5bP_yAJBowr8PgPLUxGdgn4brGp_0-BQEauvST3-VpmIwWTXa9FhHqn5LakBB9UQ2sIN4EeTnr-ddbBL8H_A4PooILv9VTKoo-EvaOzfnV-G1ZTDDij5XVKzAiuPRLu57Rhx41k-b41C__qzUqXqq8jvEr2iuHBvcrOvOEKWxej3hzyE2d5lxNU-uw0f82ErgxzpnQIim7emNq9aRyUFFf87nMmcFrlBRX67Tzx6FRLtViB6jW51fposlPz3MOT72GU5aX0AB3rSQTioE6srgVQh-OVCiWbLGD4PA8icSvptzYurxnNhvchjXWBplKGZ9S0LOtFwMko1CMrvRVx_bFH6vJKCfSBj4PpR8o41GvlfG_T4WfeFohYI955yEoCimlDWHFMEO2fmH_MqwCHxTY7x3wevBgFA42OulvKcJyVa9aRknsAcEVqSQglpTioU\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\",\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6745d9db39b703-19723927','','','2024-11-26 14:23:43','2024-11-26 14:23:43','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41663',0,'cd-form-entry','',0),(41664,0,'2024-11-26 14:26:00','0000-00-00 00:00:00','{\"firstname\":\"Kenny\",\"lastname\":\"Thomson\",\"email\":\"kennykt@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/find-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA5fG0ekHy0VALKcS9tTTMY_gjq-defYb6Wd4V3B_mAptrFHjffO9DeWALai15HDL3ahEYMINfPvinNCdng8lUs7u1SxDVnhyUFMJ6fdQ4tUp5YBRbsb7Nikqsnw1Pcf4Wg00kz_0mq_uusmyQ0owmaHfMrTMU_X30OFHipXI-Nye2y87ITyoVDxpNw7jJ0Q5HV1Ga882I6PKsksvcpqRjAog9ocgr0VhQe2MpuzQBe8LC2fKU7sXR7l6UN3_Q62pkSn9s24ifu-_Wp3tOerfdePWFSoapFjRP637nga6862ezPW-sYIL4BbB5gwxSGnBCe8Ha1k2oPe_XjfEQUSZwUdvejTfKwdVn0PtM5XS9LThTy0Bg6_AN9kSHACgcr8oBbq4AfF9CTL9a6FE6MaEYqngSRLxRrmRDlifbHUvvyAuc5E2K3wDjHNp3E6mrvQER8ctb1QeKcneXa0s4xvXVn1gUG6ZiPt4Fu8GltFHXFKhfL-yOq1Pqf4yf_yaSixNAwmD4vj5j040UoHcNK-U_skulo2a2PIBnNQXZ6RYJ7079BDnmHuuEpNJrdjiQkOSAx_UYs9iWw8-aBugMcrc-_W7z61QmFAtoCvJNIt11FBkoWOQ5H1dh89jgya5YfwRySLWgIoW5Q1slYzqQkaT_SqpmiinEpm_kjDwKguWxRwy-A_91S5sjWZ9x3ekU1GmOG3tlIV8OXzX03yH8m7AcZiX3CusEjYgH3GDv7qVZK7NjZOxq5Dv1OFwtTzPGyJQzCUdVtTyhnM6iGlPxjsjoP0zo8tkjBwemTonP4A1ZUVKcyCo4sdN7dbZr_W_rnigtfgKhRIqu5dDFAM4Khh5-zMjPjQGqfISoOczoX_-W_4YpWGXMvtgyK0c3prX3uhNvdYCKChYgSug5dr3_6oYh60_B48Tud3ZwkJTHZlcFvJBpSOUM2XZ9aG4_xzGa0JZKfGi939ZlvDOK2YLzAjviE42eGCqKjNkI1D0bwOeVW9B-C74jlLMLctw-xIKAxvku0tnZpzYOtrq5Vwiet9gqoTErk5TbmdAHIhjPrAoPeHFMjCTkE13F2BObTTjWHOJFwtnrRqRyfDG28peB1KSx2EaMGCznfNdVSJncQkNg7SoYncvX63lcIiBccqKhracKNUVG_eXzHq8EYFurYE68zlYhyyYj4TzswYGGy2iPYQa1cpNEP-qgxXaZaM2UWKB3PP4K_ToBkwFaWSDuorl0cm1GHrYYO2FOX9jyX3BSlcnlCgfegzBiQ10bZT-5z2XY2V92I6G1pZY-B8E2iRpQgWGyuRmxf8_1P6Cmcsiu3SFF46pgIdNugK9poF44_QmPzgCmVJzb6pH4zgaAN6n3vqaQ9UF8-hn5OkIuutaP1nfl5cHjWrqGeTmF35ZpV2ppmZQW8Dtaavfgm0bUWzR0mNyw53TvmGlg_GdCeVfaE6xHGm-clGnAahBdX5v_y9BQ_FhP8zSivr8Yw8rBBDCSZOkZTo2lhuK8rFMmY7otvEJoyh4fZcv7i4fshfajfITlq_PjOuuImx2819uilPQwLC9UuMNH1b05MA53X5TfipXmQBDK49jdpSr4IYG2m9SfcLNqSX7M1soE_r4-C8KLBVrcjGOpA2S4rRZLDJsqc5ccxoF7giJvdp5zWBJSOEAA9wWeECCg4lXDdNkowCecdg9BlLv_Z_meQ53FFFsJKvLc4MeYVbcAqV-oqp46LoKsq-8dRlpGNleHEwWd1Zt2_j4nv5t0oO_R27ePKf9iftPcmzMAInGG6-ARlFGgr88PBQi_aD1u8wpG04U-3jEM60YBuR8aMFZ5YRldSuzlBp4jWFlhd6gMY_6f1aTX9XTx6yW3kyBDjVaOVE8uECVBBNSogPQixZeIKewGkNWs9H29LDXw5YIwwKwZRf8MiZBEjWUtENNPRlMVFIQc462aOjbdhMLlbW0RnAMaIxG_-z4VjvpYU8J7oYf0j9L1W_vtmZbh7NWTQluwaN_RnSpx5t2YcIYClWQjBHDCSTnuog-IOiVXTfw7tJLtz0SbV9_DGd5sT6\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6745da78acf887-94723106','','','2024-11-26 14:26:00','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41664',0,'cd-form-entry','',0),(41665,0,'2024-11-26 14:59:21','2024-11-26 14:59:21','{\"firstname\":\"Penny\",\"lastname\":\"C\",\"email\":\"penny.carman@extracare.org.uk\",\"contactnumber\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA7YpoN36PITRC2kzE1MUGNCSZoHm9254WbYlL0ZTCW-5Hx3cLicEktpQAi-aTZ493qwOYyJ26OxG_3i4OxjwlBUfPUqEhz7eu8X7Sk2OWlWagBqolqEgZ9tIenhfxTVVYrO7V3Htm82gVH0i6qU4PweVV5SnfK0YplZ20pcV6fEfc4AH_-henbynXGu2HfrxfXuvcL2PvdpnogxH4Qmb3g2_u3QVFjQOt4YunUNwQqFfvHOZoy_CWm3HGFvpFkGGterDhe4xIV5ezlo9GVu4vHac9XigptHr4o2bd1wk_gl_ui2nKLDx5QtLfWSqnFjdj1UWg-Ybh7A-zyXGlPvCx_tr-MfkdBjEgRdrWUF2x_jXvNX81fPUx22QJnP4fpcEnlnxXC0r14LejtsoUlRMfSBeFsMl0oIs6L44kuLh44cJDNmaUaKnLRfeKDHMWOm08v-HxpXHFqNQfzvdzAwmNWA0iOGnZ0SQJLHgIgouNfTaUXRgmkxSomIjNXCLY8EmIHx5n88MmmrYihNVuKsIm_zgESsRZqQeiPQlbjPC7in4Njmx35UsdGCqc0XDFFfe9xp8-LL0-YRMqk_qykD4OGT4B5-t7pCz0P1iiHqYj9QSzWTIZYBF3fyaur01t00_IFJRhsgoOaytAeDXlxwwrTE_UVXBoivwY6kdS560iWCcfSHa__ihhWWhqHLHf2SsC0U9cFUIuGNsIKGJ0joU-OQAStgk-peZrGca8W0FrOuF4C6Ck_ITeVYEKnFuXX36968Yq5PnPvs365ry6YMdPrboAbcExCLGuxYp-ROc1l5oRUNtZX23H_t2nAN5Mr-1ZrsIfhluoMhvYWq6fmnGePkTIgejVbPIe6GU_dxyxp6F69oO8T3QfdBz3PHttexkG3fVKHmVBKqOiU27IylFkdx2d_3f2Z5W7cl3Ej4g-wJrUReXYCTRoUAmCbLN9Yd_xnojyfDI_Gl3YA8cdd3_kb2oorb9hA__dgkwAzqoSX-r4RpfaY7-v2XO0oc5GSbwxRvpf_DF5osq4MLcczPxP4hqAVqjkkqspzP4T3eKYg9mAkLzI_MyGxvT_ezasFJF0FYB3Yf2Dhn46CNLeeCJlqbjtSWvT7W7bcIMOPZFgcHqwbifp9PvHqZlGg1bIcPKlZl2RFCTUuNqW-ojh6e3lnXkmpTFOSK3HzdlcL0gIC5n4wx7wIXz68vHT3tfWX1OkPhn5texk6sI5DHc-N9xxotNGS-xQyTtDwaCR9irazPFfmA5YyrNv7CLLffiKKyFyTFdV1PCDw74gDPtZ_MKowHv3pX4JSBQZO2KRm4oWfAk-_7JyrFmXop0oPlbQl2aWUixtQ2n-kCQYXHQ-RMVzf9g_tWhq8kKN7gVIG1beljW0Fv6kIy8Yt3m6nGvCkhcSemqXwx5gDTogg2df-fw7bQ9vaQRfFgaFcHbnm6CfXOzBBM5W4LGF3iqT1vBlmqB-tK0PaFTKeHVkP7xuCpMThaHNp1p1RelcYs9KVeCmQ2Sy7LaeYd_Gu-hmqJtHXh_h1ZlLtKEY5NWKa-Agw3et6kDQ55VT0w9yT-ZyjUcUD2SH-fY1ykuChYkjY7logtKj3EoYvMCroHK4dwmIyX9d7p4GXMYJJ90nXwDYlvTXBaOxj6CupOQT4HGdck6g2LAFrwlM5t6Lt45w6kUy6VnT_NzssG6r4O07fvZjHsI1hqXp6j40zwMMnHWbfOFa4X1vkxspkezrhzCC_YHmq6DV2HPwRwsKRKyKy8DCZfgpUC1AlD3chw9kSvACrN7to7cAld-nK58UkttM0Y7mRcSnTb5PZD-nnY3VOlQlpxBCKKnM74dAQGf0VcksopgB79DGL-8SLPY4ZS4ibVPWhpL3ooPOLq9BIT3a3h9YGLxJsKFclhw-jupOBar7vubJ6jjvRCXPhwYaA2V5YQTf9IPF_PMBmdyLWuJGLxy7cBjNys93LB9VqPz8XSLUJ4vs-0gm9v_ulJf_Ugv3E41qOd-vIb1HUGw_bWAXxtNaNulAT9A5yRkAV-DHQTu8NqIkAU8vBoz_Fj1LfoH_ATm5ELNXclQeGF3E02BGOgKGDkfY--T2dPeE-eBrYvCkPidXQLur_CY3D58kAq8UZJNXpOpJ9pm0dzIk7NZTw2HPa_BWOMqUfnrdN1aprtFcYnzwgmDOk6WVRMzhi1-_xt9JdCmC6sZehjgw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6745e23b84e102-70933985','','','2024-11-26 14:59:21','2024-11-26 14:59:21','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41665',0,'cd-form-entry','',0),(41666,0,'2024-11-26 15:34:45','0000-00-00 00:00:00','{\"firstname\":\"Sharon\",\"lastname\":\"Mundey\",\"email\":\"happymundeys@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39249\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/find-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA5NgQPLmpXKsIz0OB2Yrtxd1Ea0FNLW3UYD-j0EebbCDjaQC9A0DOMUPV88g-Acr5qq4cSMv0V5mjOiw4hHdO67wW6hsIPXhuBUpSGG0ZbOUnUBJJfuKtjSnI0_frEq-BCzHk4Pu4AuKKvTJtljJcnl_rOyLoW6sdQP1Q350fMGU94zfxSIpsffYBF_D2h2glBlL7lCMfkk09pf38ejH3vp-t0UZlguIlHVUXJ3pMlR6uV8--woKWHDooXGwL5SLu5P8UW2xny8Z4HZc5EMVe0QgqazQtHLTmYvEspoREDNp-CTBPX9q9EorYr2122QtdXgqX_lVyFsgvhQauwxlYLCSVcYMDH0FN6ALFg2_as9qDGLIOM5k8DJCGDue_TPHH8cqDhY-rxQDXgNDsiQ3qMfVWZVH3lY7p9hPNlpew1YTka72QMdP5WUjcdiD6uxxXScy4qyiqo3z8sbEW6-CGrOJRyutK870Oj51-2LZaogpZQOcPY0Azg0T0rDKva8RTxjmjB7wQ_McBSB_TRVjH2buaYFEV-NCpKpg7wj9P0gMCSle_pGOvZbwWum9RADHlGephz_uoH_GhQBOUcuq4fuYsl6Fh6GrUzBqstcN3ORXr8MEzlAkiQ4PxnwISd5AEFKf-m943OtgxAP--hzJIChmnfg1jOl2j1lB7TDCw9vtQ_-cVI6FgxRWzZzG7azkWKP82r7gPIeax3_Mk62lnA3FGQCqUlsO8TrF6n-oFNug85onQaJz_glqKrml2NktzCkfZoLeqI2gsYVbHCLcOWtMJBAeU2HGB5qbdhAIdgCBTA_QnGVA5DpI1vtj4MNj7nAzS9PG9tuJ5MBmERV9rX8Yo0IfFm7gTqOrNourLml-qNMp63kPQZ0DG9liXN2oO8ldG50pntZu4YPF5pa_zrYQpvT6ZMpZLWpFjf7Ferhu10wFLLmE_NxpLSnsHWFzw0VXDoP7mtb5k9a2yMyegz_U3rixadjgd9XUWLjTdYk3lQe5K_ObkD9ZahvU61YYFPThopJLj1lYnDJzlxWWRqiJJ5krAwK-gzIhW4LPl3_jtHwUG-ai4d68n2Fxp0Uh9-ov-S_7BW8PTIeWJqmpAcwz3nrUSK8lk1I0UU8xgOmtUa5RLCqi9nW0EHOcZcRetAsS8Ne0eSEaxlBemJFa_qVYbU5I7UjWElqgQDnJyQVOhGEvXf7ct-VnyZKb7zyTCl7K9TTF5iogwfxQ-tROjjRWIvptpSCHZNu4_lLeMxZ4FcQ74VOo90D4G6nUhSc9lQQ80qAeDKcXer3gVJAwxIhGcNWYbyjDVj8QKdwEiV1_nWLtJsQrTKzDwtfuy0BqjpHMNmiOyKQcvPh9H0dGSwF8WGVS2i-2AGJA2Q1HqBOl7PySeXSeB90T_WtAC9s0txjvRpyyJ4v65vja0MZ4t86VwXX-0AO8kgqC4TIyePGoTfbQmCtoGslSckCBBSoGAVSp8Ydx2H5d2H0cz7oGGvYEoOphTvnAhiQB56eskj0ygIkHqCW-A8RZGzKzThCaEH4iy64XZmzYDpWC1DlOsorHaK15loZZEXSYge5_ZKo32DsvqOeeDA1OU1U6l4rH-8-QRot18Zylf3IW9uJRCk4Dny1QI-TqwALIknte8fMRrG5banUQ6X9DY-MGOCnhnbjKc2q87g6vo_zi8_Ntc3GFYUTq_27du9RfFSWxi1F_GrXIZ2hvJ-mpOZdnlThW5LMc8iJ5FwybFuwrDLGy77YpEKo0knIBs3i5a2dP6bU6qB5mcwkanW-REtoxIW-6Mk5wuPTKc2JvWMlaq05TPsdaolvh31MtSIt7YTMow_k06hY3dohlUdXM935YyvC0gtrXthmz-96ArYYlxWd89gdX4t_bmSJhp28WnvxxcEqdKWTuctsPSqExSAoISD3yP5CaKWMH8JPIjhXWB7q_CWTbSQgYw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6745ea8d32aef0-69805952','','','2024-11-26 15:34:45','2024-11-26 15:34:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41666',0,'cd-form-entry','',0),(41667,0,'2024-11-26 16:38:20','2024-11-26 16:38:20','{\"firstname\":\"Susan\",\"lastname\":\"Nganga\",\"email\":\"susan@susannganga.com\",\"contactnumber\":\"+254722722068\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/find-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA5p8dggHjCd2q_JjqN5wnVsa26Xn6urzGJFiTZtCQUtpn5am8K60bcaIvZbDWTuHNwWZ9w3L3AxQqFUY_TMsJrNi_uxpY2KI-CUO8yBB8yZcE4Dx6tii0FLwqCEn0naSz-vCOmcz7D8NNMDuN0Y6Z0bSpZ3xwxUUpxYU5snFq3344xJVEvmu8xxRAz0KQTDHnazba3iSXCvSc0ul-a7TXdmBx-lk68Qo9nXzAX5BLOxqeTb2dH6Wcr2SGD_6Md1btSfyXdyXPbsb113_56-N_CteyCL1_D5h2TD3El54WFtC-eRHoK0r2nHSEAnPS_KMv9YtLZFKtFEEpXib2ppXXs_NYQiko62w8nU09N-fZhsN_g3oUih9TA--qsNlzsVWNI2reCb98eX-IsuXDnYhlbI-V1Jjp7IreWulJE640Bmvo532FuUwUSHH9NTofH6wYg0tpkpqR--ms987TXc_WHkWfH23BTEFdXBts1HJ1VeLn_-L-JMfhHEQmnFo2gy3A7yV8ohfIsm6uJOMsEiPKOP4lQnvKO2wo7RsJC5GReleadjb97H5XnNp3DU39MW8bG0KaB36O6K7wfoDIhr-4q7BN3yLOKKg1ZE5leFEb6tHw_nBq3QFa4F5Pd4wJk0pSP0HjtNGLhcenyY_xuPMwqF5fqJtydRrx-Unql0SgsLZ6-xEqO5EWXnC-cwa0T0XAML7inLohUvu0EcVIQcM7ngZjlC4CNK2aCdJOL7bA_pX_vPxQkn-Zy8DuOm-MhBq0PXJ3zsgdO-n-6eih9tfOK306Sx0HDCxj9FHSNs1mO-iE6Bh0trShUi7s5hIEhXenXddLUkJjlJI0Hsly_QV9YgfixuouRDQb3lTBSSmNbgvOPcyVrhgf1jhn2Ntlk0hBghymyt7vafTgHWrMTEGjSj3f-NdaaXrQzPTETTDgYFFCxRQJrXgBZoj36fKOQcM3kJ4BtqIajvhzG0K9RhhbRbLBCR-xCo4_pROKD9hVmySI-KGT8mRrtxr-vJUmj4hDYLMc8EXCmRrDUxIDI7V4EhPAYtUPPG0JIE8wJUoZuwVyEw_AhqPn22F14jCV38T5IE8ZoO22RJncvcsaVc0kDQPJpurnYIyU8GteCypXnZU4dEkp_1BMBX9M9A06aKYrgES9sOCGuiWEogOb_ahAGlN3j6D90qMiFqDBuI2S2Tg1XsMEZpOa6Me9NsInAJWExrk85kPmcfi16jaiXyrjOD81YmbSO1-zOojfZ5jizlggnhCzh7WTN0lwXjVIhQ-eiPTesfFoUFIS236TDQSWqLkKGJaC5CEefMy_Qa24EAnhKEWHhG4RhhuAt56e-q72dyKWNTlZGfspc7oI-bj1Yl3-xnIkmG_3PyvzmYfo44Oxk9pnF93bIvEit69-CIVJ3Cd_je5DhYwFwnxLRMpoOX9NQcD7jADJjFXwUWQx8lFIdq2VSHf2hKiGz76rUhs8m9iPGMhV646NIrzqJiUEQCT5W1HT5qGwef272m0YhOnvO6VZEEFne_4m_SkbY848H-ylW8ciKu6FftQO4xw_WYuqdBkUhSUkkPiWwmD0A9zmhK4Xua3LN6BXRIt-1zS0OyI5ENuDTipO9TTxUuqnlISfSfQdx-srjUwE4JBNexJ8nxRXQiZAu5surdXmGyhegaAcpzPeroAbEYZHcYc1Tnv-i9FM0R2vxeNkoYBmOTq6dEHFxrUzi41htoi6aoqaJayiUqSgpQioMWY4-r9knh89ABKUUvaf14WZ2zkgE2m4pE8-g9cdXihYDy6GMhifok6-vJ5SbfLOKBAexfrvUMkQRzWycWOgL9V0rJaafPMj6vqE0pAciCO77DjPt3h-m_NetkL7XRCJHXvGjGUnHjAd5vNkQjHymEnVK81h-z4F4hUUkbcKSWyG63jCo9Jcvg7e7FdQ7CM3yRuLOVUGj8JrjCR6Wj7fenDrYk_te_2Q9yakOrUiajV4VMoNJC7t4QsViC1KImkOpRGAv_Tfe_3ZkNk8JDfQ6UH6nORaZkdS7pg8hKXyfNyV1Aim12ybOMXUqJ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6745f95878e313-14916640','','','2024-11-26 16:38:20','2024-11-26 16:38:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41667',0,'cd-form-entry','',0),(41668,0,'2024-11-26 16:40:24','2024-11-26 16:40:24','{\"email\":\"susan@susannganga.com\",\"interestedbecause\":\"4\",\"agegroup\":\"5\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"Ooo\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/find-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA5GM4o0C__DkulmUg6Br8ldsN11YBFuX99F2ogFmNYL1XSYV4ifk8CHLVvpH_c5xJK7GsoBA5-TQa2E8sE8a5k_7D1ehah4URCZuRbCWDynxjz_nfAxFujKYy3Jf5Qct_DwdXKakL5tCMo163oxA4mi4wx5txwfIAPw0wlzOExIvaivuAdfWPqG_K6zbDxSkk7FKjvr5RkgYw3Ht-hWvu8Tn-W9okBY-qHiDDpD4Eiampp29IoH6fUlwDPf7mTKdgP7Q_6-W6A01nSHAmOk86XCdCMBEp8frvc7ZmXUv0p2Le4c9uvAfESjLlHIM9zCr-i7mK1lA9vSXGaA5KyI1dlfqOi3ml5fHRXUCgo7iHEWjQ-Yt4WaWEVuqm_HTKtT6q7Lrc6ohqnyOh9jkZxGleUB-gU510oBQQtlzcVxHe2yVb2UCFB9PRrhDOVWY6BbhFFv-Fe2buER2ClwSMv1sehpWmuRRWC9Dzi097jwmvFg9i4ewvvwCRCiC3a4lajpWj3FLfE-vJe8CsasNU6jADQA4a6J08Jk4pt6iCbSoygQVNxWYfbcQnh7Cxctp_gjbVWivysnEudDx1Dt48JVcOlPoI_ken9btvJLqwSoAgrXZaKD89eUE5zZWXsk96G4ILv5f8DCAQj9DmJYGl5okHzKriGiaAFXReuYc1TZbvd0c6yMOe013fAHGkt7m6JqKbUfIQPjA9UfQDqx3g_VEgSLiKnnICjboRtAH-rjxd_not373497869AwEDvYupys4KQ9MJMf7o2I7trQZMciNbOCGsKAINgjchhgXtxHY5_4nGlnEfxX5S9URusfdokM-mpkJSiyBRaw-ULu6R78Pkr55zfSZ1X3dW4Yjoq_oZibG9af-9OXH162Lg2DouH2ta6Sy1fjtMx5X9Q_KqL8bZ0bGkaIgTHIWLVgPKX4lj2nk2c8wpmAK4sY4lP7PAiyvZo6UTBsEo1QdbUBxsR1uAZb6LierScAwJugHaQtaro2YCEB2x9F3afVj2hGFuEEEHk7HeOi4vU7rqtjAjvum43ZombfV5NTm-03zYxhwapN2hoDgRCQe2X-RuAPmAwL6vgoMbambJ4iXYI2mLymksZY2C-1evxNOaUNJO5UNzRJzUFQ4Qs4_m2HZ-jCmBTPIO7LtFj8-3y32MchmUPzkGvugQ-rdgtQ4xIOo173QY4DSqqW_NUj9gbb2_Lw5uJpIQ6xe7XlVBCSmX3AkObL0XL2jlU_AoKqI3WDnU-2-OR70XiCnh4G6vmxwMYj0zceh2rZS7bNkeScF5aOd4W00C3aDV57Gb2rRSdVdPQC19VaSSiVl7skRmKqONUVFecxeC22O_OzVcCfYo3foMTmUIV69jRj-Nbbgq_GxwjQwGuzgXYU3-fprl2eIe3ksfrbKlTPZcSAadJj5dciCFKc2n4VC7_x9Ad3Ayowclzp-f0NbixIevCdAngGwwgdvl2DUnIdYWkXr9J8FFgMevDgDCcZCOlYKDpCnwOPTDY2rEi2No1lTN0OlONEkpxj52xQOkTzpgHqhzFckRwdXaNGpJslCviZtFluzdgPOmBObRfeL9GsOVC1k90xM0KG_jl880K85GTfC4fJQEdH--W7MjQRu_cyGehmzbvXf8R1iHOcPtKhiR1WvNJylA50YIGjFNQjgvo9qblpa71yfCix6vIsWDAy9FgXqa43ZfdMc3lkM3YdRTaPSNW_SOjjwLsHFLePYlzkBFwG5OBW_21HGX__rY3HLTKXSye5mXEPWYtNvsl1iDcQqKbq7B0vAcAcDZOBuj7tuXFBWS-d0U6RCkh2y2SsuQ5GlV3Q7ZW9_tK6JFuBBqID6LLJ32Xpr1aaeFcgv_D1y5EiJdEBC4k2orNhOtEmAoYVTgPE6OQHOpOI8FerPhIgXu8ltRbArASWp0pqD4m5hJXRcVbm_8j_-eHZslZZQgQMkc-3gQFzZTM8Oy_A8T1PhPGEMN30-7hFsXy1OBVUvuVCbwh5pejSrU4pm9NFxtgGgzgZJF14qY8vmfoQLKu4LHomrpSWNNUPZ5434YA5YdDS8vX1D7GWX9uyMBaKA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"2\",\"workindustry\":\"6\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6745f9c9d82041-13653999','','','2024-11-26 16:40:24','2024-11-26 16:40:24','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41668',0,'cd-form-entry','',0),(41669,0,'2024-11-27 06:18:40','2024-11-27 06:18:40','{\"firstname\":\"Rebecca\",\"lastname\":\"Craft\",\"email\":\"rebecca@healthybalance.org.uk\",\"contactnumber\":\"07706042746\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/imovefreely/\",\"recaptcha_token\":\"03AFcWeA5T3xkzDLJga28MSesLEyqgmaZnTqV0-buluvyDK05xwVtzd-4O2Fzd2tvdMjTcT6_gd6yYLzcEVhCTYmYWp80tA3S111wxYVDxWn0YMTgwFWX2ZoJWkCV2J_SUWNSZQrNGaRSJ21PwePkiKURiPeJKS34bHrKEe1zxJVTdnCxi0lkaU1LtgprLNXnPfIkgjwtrYZ90iq8nfI57Wc9ZNmECMct4ikD-okE37U42-rpR-4h_D3GrUuLE22rPlS5Qy4Tup00rSlTCcTWjQ6xw2yff_-AV_l6zuxA4yeZ0xHUX5jFSF5a8gwjGDJvlyPPsGEipHbw4yMNaq2otlN_kwmOihstPBb6h4NLw3HKYJhw1Es9CqA6-R8Ny3asM4tXOBKXNUuVUMB3MztvW5utkfBcCQHvpuiGGzKdZfB4LdijkUA80Zq1cEYS31_JKl63Pxh56ZZjaM8-AfP91AYBW0b_kRvSlDBgi8VXR0mb65ZZSzcX1dro3GyEo80Kj6U-zrmbOl3t8lHhsPN5FU7HTnL3wxPEPaRrSexgRMItYhceZifOyrCEWUw1ce8xj-Sgj7gzpGE01bp10sjQQRDY9xZdGowwfFicahQCMlWPJTO-8VEUQw2QsEhCefBQ8fsHGbo8uiKFrib4SgEP4HcsXHmGf-hlz6sLG1uQnG6wQZGT3zEAYMRPvu09kKEx9Bp4a1IGBFkatSZ49OfhS5YjemjNvuov1BzDY3KiNvOJ5FIhBAPvq0Dh2vj4UyFM4SJcxKuprqP_ljNH_io1VFMFRdykcQXBk3J6ntzJ0rrtU6BSkzcPXw1J7Lo1NfA0MNLgEgVdsSPRICzTNCS-57ZJfNU_YvJOwuzkyVHHo-REYu7EjNQPAe75AbWtL2Zo_FMxt8732RmT0BkmmKq4u69lHKPkm14_byDazHJiwxsTzX7btdyfieZrJTksGqcfnF1Jmcoix1OyienK4PEFR7KXsy1xnN9Wk86Dg6tnyobvFN0Ey3inLPuD6oB8iOlPhZalhcQE2JSsUXmP8pQdrwWZwD2KqU0_Aj7MJIhs0pce8GsnKOdeMx6DxelZ0tq6dqz1DyVkBy-59aj0BJfSMmFmlAWASTuBU59zjXbAZzqbkaWBElszx_0w19a2cgbZtwYiO1LPT6Se3o0epCHIDf7JeZSbjILL4FxYcCpbh_6Gqr-56D2xo5S11bUkpYtz2hroEMdw6DX6W9nXW5DsM0YcoESZrPsIF4-ukGysmSfo0QpuODfrIwXnqUx6P4nyAb9rzJCYSkpIEGeWw7e4Iorene2r951wm7JzFVix8hR5O5XaQdt0rFu09ajox4xmkrln5yMIJ_OdKMOfNgD9mmNWsxILZb239emtahUidGfH5sXEd14c7SvSJB1ueHnX3VQT_aU0nJO0B1kop0trENyBON8X5fBEj_ajzYkxoCRUmqoXL9Mqthb0r-E0TdklFDT9Q1LDTDhkevm5YvZvIUpgl76Hqa-zKb1InXEAOh3NyzbXb7xatiRs2DrU2-V2yvdXFT8CnnLv0rJZi77CdAPKcIPE-XU-Bh1mNR0aPDsyxuO46oFOu_TWRfOPqBip798x_M9mjaSvKAut1rH0M3TYuvjVKj6WZzvHonlwIxJITrGMBZVOMgW_G5NuII8WCk36MF_kh9vaU3SNzUihxuW49oN5FPa0M4iTcmfVQPxZMUgQ0x8qN-jMCwrS37-e0qvKLZP_5P_XEoeuqFiegPuIN2NV26G87hOEENbH3gdnGlM7yqyRoRqRTYg2xI9F6LvM79Bt00lNxzrt17uaAMtbVQYEymISuUk9wgbLSJ7GF8nEtdTjXjq2Hn6DTGU-ocYBGpJzA3DimjtgbS9gTk-25a34CEEixwDR-2wjE0G_oACBzI8wkHe8WdUQ6yNoMyrEKW1nl1eyWKvwVxxzNqqDh0D0RVwk3nA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6746b9bb133b08-52393138','','','2024-11-27 06:18:40','2024-11-27 06:18:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41669',0,'cd-form-entry','',0),(41670,0,'2024-11-27 11:18:32','2024-11-27 11:18:32','{\"firstname\":\"Amy\",\"lastname\":\"Atterbury\",\"email\":\"amyjade321@hotmail.com\",\"contactnumber\":\"07968660745\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sHNW6RIcMq0AWbrMHGOHNdm&amp;gclid=Cj0KCQiAo5u6BhDJARIsAAVoDWviDGBdvafMA7Z7-eayifbC6kMbjTEXcrup5hts-OVI-7sKJdxHJT0aAoTREALw_wcB\",\"recaptcha_token\":\"03AFcWeA5QQamjA_xfUwA2gj7WDI_tLJ2sVzKzzaIlgUXVwCfxAeNlagviK6HFLmSnNDKypLHWUMdwkFv-xoSSKdFpx9HKIkfrXxA3AspMg_E3jWde2daw5I3GYHe9r4F1HC3I8CMWQQbAUUfRRccR82fMH1EPMl1nD3KQ7DK27kc9xc39OZbbslauCWxFc5FhtW_Ayz6WBRjAkbYrf0pzT29yjW_DWLnUIhN8FjFn45yuniKhsumPGvaayUHiFhNy3-cv5sDM8wWGxZZAR4J30eE42vQ5NFjgAbIWbzueumOiGl_6xN2gDdAhltnu8O5LzryijXTwHckgupe6rIpaOWkAn_GcEY6Js76JkmIrM6NJhW6T2T4W1WDp9lOY6GGSGlXy2pKyvcFNgS2nQldZMoqG4Sz_0mJ1uDYeoodBOztGbe6uXNQql628KzjH1D1neqz80Ds1Ke8h74sfJkD8NtbQ0MYOqDvxOlJVYLQbSbndq1S03pdIsvIEZY7jNyMbEyjSLXsbwVS_ufDoD4qAFRTl2qaWMQ5lM-adeWyVLV_PY5MtO-ZeGo045AW2y3lnlRPe0mGpw24ReFoi1mez4oDFbULhGOVpdk3yacbbH_I5jqLo7hD4NpJUZN2AvYPRmu_0WRZ6C_hUnEQRdCqfLamkArAFLOQpUlQnqBXfiPLnMGtJ-WWE2n5Uk_Yis0448_iqdiPuiy-y0emITRL6VRA9yOUuIoW7CdwKsoV1O-VPJQsSvoHhLtLK3oxTXjM-h_XiM9fKKxS_ojQuLaz64WauEi68SQLbTzMO_jN0jMAMdJyW46TN-3tfS4eLmq0zdRVQvqchYCrEOC3vV0MwmxJ5lxXjiIPOXCttnc-Qd9ad3UKPF5uMbez_N8IAHK-l13PagqjNtXvU_zCzbd35NbzLvjMWElKw3FISF94zNRlQ4z4AcaM4nXNsZa51k2KPCieuA0hwF8QhnDGYW9YZHLqzlSIB3xG9KhLcfdPWw9NCdmtN1tpebr_ZTMrr6_W_KVSgu_rG2kykTE_TiD0v-7YyXLNEu9vMpV_Hbznt3S8tcWUlyp2bSWCzpmICJzAejoxLsB810isLd-SXMlCeJS7BvZyQw0XlppxJ-P10iyMvQ_CwMU7VSoAiYl0t6F2VX0JZ1CvhHH7yclhSFgTEJh8Zcd20fGupw8g56X7YRax8lCWW259dN0VCnf431Em5QoxsSha62LSdORpeUCiDmhm_KMilVxd5leur5u8KFPFcFhdI25Kr3bsKnAW2b-gONaWEsk8PDLptuIfpdyqVGx2Bhp3yPocIdk5VwABJKtG0vOnvWxDTNPCG7tTfoqim8mlvppziCP--NsbRrzZ1W8T_43CHPyycJRYPkmbnxjQ7egOfbyaZ_Qad6y7x39rYh-dTVAvWMpEErbghfjDrh0hPSp8QsheGLLfWLOCFk5pW1tWQAUPZU_S3_LWvj_d5wDYrW13v_I382GZkRRz8U8EE4XQx8ZDRFLZWqqqzD8rqpYry889VEyTndDvkWkGvojvnon2ZTo2mw8JRo5i5Fi-Yv_qbBnxOJTSlzqZew3K4AnHtzRUnivwICIYOqhHhQKUrQxbKOXbiASqId3hK16ir1iFMj0b4cLcxytPkXpjmYL0W7dI0PLlqlBUsJOaJpTYTfh20vUS5BS3OhtG3xox-1ApTH7o7s4W_Jx9PdUY-IPOD6wM2hdFhK4JeRS_ZiDA3YBoA6EA8_EV1mBUVv5JAmi-geFb4TxTlZi5KTVqWkMD3MuXXyiXDYKO0kj3rUE9mgv7CQ9hfMPx4pafBgKuYIY_w6d03XH-eByffHSAdTmkmHadiZg8djFplC0YVjuNuNv1sl8j6emSz4ohuldZrQ-QzVEAmrygdRyS-jnHOiZ_670xM_W3nEp5udXb5G2VbESg716o3Yw2L_7QZCOYkO8t0GB2RFtHUjaxe9GqnG_Vshq2HELHM4n7cpFQ1ltgth9viz-a20GuDhWdByQXeuRy2WCd8Ap_xWVGV62I4TZV1oimilGM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6746fff8b92132-88565929','','','2024-11-27 11:18:32','2024-11-27 11:18:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41670',0,'cd-form-entry','',0),(41671,0,'2024-11-28 04:11:04','2024-11-28 04:11:04','{\"firstname\":\"Sophie\",\"lastname\":\"Coulson\",\"email\":\"scoulson@hotmail.co.uk\",\"contactnumber\":\"07817850903\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAo5u6BhDJARIsAAVoDWvhTu0HIqP0nhcE-IAxyeZtN7c-pMxRt5Sl_O75_jYST0jaEeC8UXIaAilGEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4vFv3BZIglDKEhVsi8Og6WTmQMnnzwFCrE7CFP3CodaxAi2DsIsB3ng13F-anebCh-r6itWYaI5t70LwjeMRO9_RQUq85FCtNamu8pKCMn6SxcuEGMGkvg_eonNzdQ899MmUu7x8vUCpE9gKXzj61wbdIgE3yBLxw-pEfInumGKLZf_eJ-g1VsvsWAB0QC4IJpbQ0MHU2SBFf34nk5oEsJiY16vcvinU4IGyX9e-y2B5uuoSqColFm-toSaomvHPZu4GBqe4nCfZ5vaLn6fhwGJyyKZQuOMG3FltEAu3mbaB3yNHTS_dRK0nKF99UGMwg1_EwT9btRqd3rEjcewldEBcYQB3ikPsoTdw_7Nw_Rzc7S5-mtLODX05BtR1lyaH2Dd5oI5B9S6pL2MZVaTFFYmmBfeQ9ta8obzdx04ZxNNiWsaz-fwl1ghLFbZT7158jOjTIWPee8X4WXwLdzO89n9Qy8t0P5i5o_B8ZYD4VuT9ieeTyILndvCZj2AqpIu8HgQNXd-i5LYGTvWACXYvTaQ9zJxTXGp9GCN3Z7RpkpbXgJLDpoqksNVq3MZtDQWmccsBN-eAKj89piFi2FBYVff7HnTfeeVPv2sfR2HQzfz8shXDtixG6AMQWIta7U1finTfXyWwl8AR3Poyj_ZwSJ8spN6J0ijObX16wHYppoBxovNA3C50LFt07blBSx0_UGXs32mR7v0OjUS4WkTkMCXEUH5J_CYrN2mO33CDErds4goWRssehvIv6aemdAaUPKr0ZlN_nG515gFS7vxYvP2jPnVsqM0rd9M4E9X3r1SxnaN-OoCR69_-rR3lKHth1FvKH2aEnYnn8vSbUjccC-pJ1wjiU07PjH1LeBzqf7m4KoOliPuA28gtu71fV6f84BQWK2gboo9qq8M3mrcgZQKu-Bvw0Fqgt383x8Mz-4uvXqW50X2S7Jbyfek6PUx5mJZtFS7GzwfeLAo6BSH202ZRZ6iRrB4djGeEvDJNVtATfzVtzwQo7Tq72vl8yvKybG_hfvcmiK7QIK5BC2ZARTR-U1RDny03DiLxlJXq_oydx2aNrJrYx5VkqxRIkQY-iohAvEmxWCQkcCA_kyaktVJsaESkdoKqe6OkK3NsWfommSE23oHZAsyXSkHQB1pl2cq4qiZNLuAZ7cikHkXevPMc6qq83N8QGGg0ZEpWJ0UXHekVnzxI7XCSwp1Z7Z13QEhRz4CLAKm6yCYqiihj6VBNJnBpQdNME1c5vzx1t9Hv2BsQEAi3dC5idzqJ_A7h2z3HJFdH3sqvXOr_n5Z08NZ8SFixoLo4q6gece-_F2NQnZAsEmy_aQj1u1EdnD9Wd60Xj4HntMri0zY2rBVocI7cL1uWeCqi33_VGrhvBkEPeAVorjVsuZ6gyEfPRJGsocgEE0MeDAAEoTi6FHQeaQwCMHVTmHHHSAemLTqyPEZw_1_XEflYJeDn111WbmDSgH9GryMU0ztdXn1PJFl0Xs8qAHkHth6MWFDm8ckTB4tlZcAViwlYRHamnVjaJsMDwdycETkUEl8d9xGm2uxlBwlFYw7nixnEuLgq_fWGjMscQH3FPBMJQtqmPF-qem-YSGADGrCopqNmj0goUsCM4K0qWB9VZ7tOcDadenwGtBASXqyJCX7pI28sLHImMh55xEw-jXxoeinWpnD8yRkIJYhSCW2NH_vPt85R1_s7_jd9RQw2f7ObYk6fuJOEChHMvp__XVYx-tJ8hqOEeU3VTzY5r6vC0d6MFzsMFnR0Yre7MPtbCWUNph0In3ivtTTh1oCFL6tx3BC4Phz5T40tCZkfPoOPVVOhDWKVspzsm89sFGfo97FYMagpKtY6nOpJdki__uY92TmdLIzGX1hz648pelLA_82odPF_2lnZNImGlwllKbD6y2-OmKvliLBJYRFzRX\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6747ed4cd6a154-38753614','','','2024-11-28 04:11:04','2024-11-28 04:11:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41671',0,'cd-form-entry','',0),(41672,0,'2024-11-28 04:12:04','2024-11-28 04:12:04','{\"email\":\"scoulson@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"SE15 2NY\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAo5u6BhDJARIsAAVoDWvhTu0HIqP0nhcE-IAxyeZtN7c-pMxRt5Sl_O75_jYST0jaEeC8UXIaAilGEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4hemyYFAeW3OEYFA2h-GgCr5IdipAY2QuZ-TAPVxLuZ0DNJRrVUzndcLVyoG4TLVz5Qr9kjqBDz91WUtQ93IbMqZpFZrbquleWIXibiV-e4Rl_69K7snCBilaLzU3P79EdKu73IKyeEAUFLGSlPuBc24MAeXS5kJtZ_HcWc0LfI1uWJQB2--ZHwyZWb4zMUswaGEi-7-nXs_jtXZx1ygkWNZNU8I3CcDWWrTmWxuUOGulchWeJ4V-hJojvOp-0-GezpIShnYYlyp93s1F07lW8YFSs6hKeoSPxCocffpkwkDCc04m5XrVs1c5cFczpk8pik9MIynmbSGxpLnvtQL4y3lhjTSoKuhNyOHAg8VyStWwNQGqUvFwOK_syehgTYCI97Ut8RtR1tD22z2Ax73AIY-FVfHKXxn1sT3v_m81NVFvVXj1Us3j49p4NBRgIhj0Mg5CiSJLiKnCackCvdbxEj7i4mfSKOh3huZ89sWdsPO29O3iwpjuhJZYh_qUXiJXRGq0HUq7RqvpGaCsZ358CiChCiOYENM9TDtiW4jr_SVf-rQI4acy1SvvESq6U4UlHeqIuO73mVlbQdU9HWOtZyMjT51_kFDdtr1irZ7PLpmblTXpnOOiKZaxjFcaf7n_7QkvSD0qXI3w00op9PbklSlTQQrp40ROQr_jatASq-7yqZmCFbgXKRQNt7zLdRfaDa_gEHdxZkqPmGqG3o5vA7n09ehwLVr7NQ2U8740smnutVperiT0thECVQYuRpw6sR5FdDesbhnK0hfIofHq5mW3iZjrOtZfMqpXyCLNVOsiNFHEZNRgaQHr4WlS6tRwNQC41sX1u1kgCQs2zvXwOxFMgKx3glF4NC2WxXZTzMqoNOUwqZEm9qiPjO1FkUOyJziSk7NiBFL67DQjT9IEKHoNB19Nwu670esl_Qp5S98pS_Y4WM3et-dRN0vOroQjg5w2UawGfMav8_zaC_4TGGJOMR62-5ce4VguZlrIHxW6aOxTp8_PNMdGyavDc1CRLuT8orBLgcIjpbcqsNvA5B7mN8hIMc_kfMh79ykEwPcfH0zXKfBhym1OI1_006vc54MkEuFCCDcdACxykUOTljdkSnq-RpwuxJ49XnkbUZExNj1QM-icNFcetOhrPQRTZaQOsraWTDHv---AMEjcPe0g2npU6ZqEv8MYKBlriJS29mgcwv8m8Kq4-wgwGebNSlpae5ejl1VJk3Yh-aYT_iSNgZ5pgNOksdHfHfH3D_-fCTYwytxHVQI2I9ttHPXJHRLoTAwewGfzacLJyIgSZH-68RgoFzdcuY6XKKGgbig_qbeSE3oP6eh2eLsJcGS03T4QlvYUkGELvh7gJubUD6-maMGX4xXMJMP-WwkhbMYayMAcXitu6K9b_K8Ln9dEetbjp8NtyPm5Dxvn17zugmQiNa3u9GRx1-MTKqQU79kufNatMpi4ylQPpaDIiz9MiPArr4Fw6t1kMV3QtsjnrfDvA_7mcg6yXMRGVONE--h6woYbPdpfy3W7g2zW1T8ONDGvciyR_5OFML3TLhh3Dp0gJy9xsrTL3Bgg02WGTwzRe74i4KKu0xICiZ29YQBQ0MaEhAxdlTI0JsMIiQBCvl9ARdTxOuxt9iFROF_9iIBOGWX1jtwkzseJL2935_tTV5vJJjbLiB8kJoAFRmO0NJrCpalZs-1_veGtNkd91N7DfZnUOIbi3Farr08JPF_zlpXU-oHZRzaNYpQu1aTcypxkva2PrPITUWk3EfNGCt57ZXZVWMmSN3aaTDIKrtp_dihNl32cpIfZTeukScvnAgqVnjjYMIFqiq-fgmV98BOHGZdlYW7N7BDBbZXFns-24IoTxvLuS7mrZU_Jni0Mf42djxRgGBF0IgEMNEg51UyJ0vch4VkN_qarnXdrXYhe8a8YkX9hXxeYcs991yUvMkPBdtQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"4\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6747ed7a82dc50-33189761','','','2024-11-28 04:12:04','2024-11-28 04:12:04','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41672',0,'cd-form-entry','',0),(41673,0,'2024-11-28 11:10:02','2024-11-28 11:10:02','{\"firstname\":\"Vicki\",\"lastname\":\"ballard\",\"email\":\"vickiballard@btinternet.com\",\"contactnumber\":\"07831861493\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/what-is-biomechanics-biomechanics-education/\",\"recaptcha_token\":\"03AFcWeA5STcxqH1PCe4YYxiLZom3FCj4VTzRBKWkx7Ne_o2uS5Xt58l9So2SMb5PBP1Biysh9kc9DsYdFjMs_VNYzoOIupd7V1Jh528rcHbK0se5_Ybotg3hMs5Q8-4ggqe3ntXQJQyu2r8o54pv0YFPf04HymDFgKUyLUPODMNEmC5CjzgSRLk21-1KT-47Ftw9lRY_4fcdwfSLc9Xku3Ck1RYrBFSBGNDaeZVKWvNj-Y0k7tP-YON_Dw6pBtInR4HytYDVpX4NF8WQd3eSvGk_axdl4_ijwGcb0PvhGosuk7WTFQewHkJvalzGFXYYYNORMDzdOMVzGSps4QzT0cB3fifgufm5gmne2OIvYixwez_0J6bT66x4ZtI-WKFcV-zgBDF3PEEKqZslCC2opVGirnBRfJWjuZYzbh8UJlB3C_nr_f67wFpTrKRecXOjRbLCpXTap4pgGyJvNSbsRovAMuPIEP5bDoGOJ1Gch3Tk9bUehpVwG5SKrKx23PyNQ-FQDpF6rZUttpcIskBvMLUlxRTsCZ5Br3ZV5Yuaz_gTLZkcO7oGLxrZwCzTND7XFwEFD7MpasF2oenBOuZAmlANdttOywIqELYCsQRXyCea-v6-7lsB6usv7yPWzgHANtGPLBmYYg7HxTAnpstrV-HnxWM7L7zE1n3omna-sDODYek869lN7ASv-BtmMkl7HDq2dNreLZh03b7v-XYK37FPQjxoTAQYLxMc19PU3eEx_lfGsIHWf1LbMeE-Ciuwons-tzgCcf9_e42PfobycJgnCjqWnOW8rD3CByP_bW5eHeYKaGbQpt1z3ELiy43DeLQNLY6AV_0EFD3PXG4BSIkxwflYiHFxKEnGFoCzs4QFaEgO7yl9y-Zp2_PLg4h9FRJj1UHivQkC5QWlGTGvPbItDFeeo_Jyy5hn0rPFAI4B9p8mCuzQWTEIPM4FiDKMVSx9Md-UF2lSHcEJNAyyjsnLDJDNoZHEaA1zvU2lZ4x0DqM4Bvz5DdZIQbeHp_aoAxnuA4XOiJu1peX9_MzuiyXprvKcmUjg32U6ib_4JoU7FZY6Y3kIRhmg5DktAj6iiymjE4II1Jp-9boaaZiMOq-pHl-cCCiW7te325DPhMxawiOSZl2SK-zCvPXPJgVcnhMmwAyIHje1wSEvJgglkMoymwiJNs4AhYmcTFZeq0-5epgs9cdhbVO5oIVvzSEUbMN9IPsuEEJ_4YZssp3AaaeesxR7EG0HTmGFUvZGD8eDolBoz_jWTC5xjvS6BvDe892LMUGv_OmSVBfZ3qMWRapExFNN1vEiK_OKsUqTaqEqRLlaX0aqb9RyIbvD4Xebl4ORaxkz6JDvt7keIv2fNplfeYt6O3Tnr7qp5nS_R-qJzCAUjg3UQhbQV2ZZq92hyZmGe8-TrLmB_m3IzbTanPaeo0ifkzQdOd6BMPSNEk2L3hmC_d2EkmoUpVAjZ-wi1vyE5fBrvfj3zkEeAFBses3xq9Cf2E-pI9Xb0vhYEkDVjXuacoP621pDKPYegGVjlAQE7K3NGP-4O178kEXWv9Y_g0kHz8BUYZdA23QQPwLtaHn-NS6yDmX-XxXYWEYgFu-kOSbRe3fw5Qux8xSyAnfTr9P5znE3ALjAkZ690dUx2cEXYTjwFBg3wJ5LSSJik84m_jU7JXM5lxI25T_K-ImIrnsvtd-_vX42y_J8MIaouw14gP3v-rE6zDHTX1BDVq7kD7d9BFB4e_xUJr8AL2ThacM3A-2Smqe46Jzibpe6V8XdeYcLsSAjzy46qMRQ7sJeGi2ziyYWuty2qrcyPEPEmtgIh9wvJK10B9DNXnUj8O_3UxCCfHdqHBO_dOqSgGvEWBjQRERZeWoHDDZe64rUYZpDqJ8NpI4ouVaDif0v1taEa_g1lDphY7dwFuJL3ATYB43elw3Q1Pxc_OqmbReHA70HagYQfi3_0THmvaBeuzlCExkdC1wy1f5Pe7jcUf9RS1blrO8NNkoIf3FI-7K0xIyfQFAj8HAQSHRv1uEm5iFlCSjM8dUXkn69HAqzHLURK6g9ui_IVZI4QjJS8cHhjsBra29bf0o4kz4yg2BxAq8My95zaflOyj2xUTpAMj-YFd8Z4B0EGiIEpeou1-kv0__4HNRDSyw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67484eff2e27e7-62550283','','','2024-11-28 11:10:02','2024-11-28 11:10:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41673',0,'cd-form-entry','',0),(41674,0,'2024-11-28 11:11:58','2024-11-28 11:11:58','{\"email\":\"vickiballard@btinternet.com\",\"interestedbecause\":\"3\",\"agegroup\":\"6\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"DA130XU\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/what-is-biomechanics-biomechanics-education/\",\"recaptcha_token\":\"03AFcWeA6-_E9V5g66w-hmP4b9czB95Nv8SWiTaOxQhFbGFXk1kuScJ07XQWWUQ88GnL88oghP3FciXWeSklN4NosQE5i88lWSuc4cQpqqPia8-C4h0O0VM0Sm5BSlFgm4qyZmNtzS9hR_APBrNbQxklwirCiNdM-97FIUt6P8iZsf7GPi_co-rwjk-z-uay5DASvafRcLwgbtj7YDSgMNrf2Szjher51bg-dR5Tl2ti-gc0cWh3y-U1K5j0nLAm5MUV4zOEKeDUWrtf5C5jOJXsyH85hz0z6j8JOyvNti4bCk3QRte7LRwxH2YUPf-Q6VXAfjpJTURw6e-SM_SsZ_Mfa43EBxWuxy690uLx8_SATsjnso6THKMXRyzTl7z2OKngB3RvmAFYXBK8CSkqdL4VeAXbjD7C03tvTRh9Nl43ReLjCUS2Q0fwL-liiK1aViulDSlrU6aUCcUTzcMatRDc2Ks3lcs_vilA2AGrxik7zIY_R8xL8qMCyxhIUjaxbKJB79DSnA01YBK94vxLeIcq8u5mSTvd77SDM0cmCwUBZphr5e9m9zK_31ptx8sfMKl1ApQgr0cwM7uQY9xpNKtwaOwcg1vMRgavqf0D_f7jPE6R3Q8V5E1_WiOx9JQGjHGubm-eKWLzLf7hpFq5mo1oWdygSszR4rDKD_vCt9A7SkD5T7HUlnDxBZX6Bbyp1upas7L3SjF4qBTKRk1rGnMXkiFFHK2cKNXpVWSOeixAQMIl-fcT9tYXTk1fsURRE-3cgdC9ED9sVxB6PnI4Pphf3sxm19QCb46KBK4Pnu1kYOX73m0UWWO8w1fgbxEf6u21cS_OFt2gBdRniXwMHLC6RR63SFsDUfOA4YlQNWjYxGxFhLlewW_M_HvXVxlH_OXZd0iReHmJcvfvpnTwizY0y3jL-ZRqz_U3HvlkIBqV6Wv-g1tAmbtUletgAOq9CXT-ThoWK-IMt0EPwylPlDAAGiShRGJxsyTmp7eO4HHopH-1FIKAna85pGwQLOqGaSyg29MVzoI7kN15H59P1cjI32SvEyMc-wf5eQk_efAgwRUHbH7vmwptC1SVUT9CwDQUabvQgC22tsSJXYNb1MnKnrfL0RtAohswAMu9kRxSsDWQ6rTAc4O67vdk2UCMFeKY6Jd_2TZr93rphgMeGOacKP1n4fcCQaiSEk3grPXICsFpwF_qJn3HqzJiFWV8TtQ7BbTHzRj4ktWKo0UzTQmxS4NUuAhIphSAowFxysyd9j75hG9_veCUYN9gsTqDXsdIhRTrnby-UOxsczoa9zdY8E__myR7EkdBNZv_5GpqK0SM3lAOw1bXI51pZvv5cyyc9GB_5t6kxnGSnPiki96XLZepuX2_goDixp7LCeeBS6PMEph6K48WtQMnGOCcc6_KCQk7Sz9ASta3pLaxhFxx2h4cD_aotdRatrfHTu_ywyP64NY07WHTj9Yl7JTvsmmR52gYl48eL_7KeSUtUQPppMFUySicvVT5Zff9ZBTOZjJbXdcA8Amf-Dwf_ZRMFDYf-UwT-p8rGPJtcRvJq-iQZzBPPS0rZ8ztLFv8M-vuV21wVrYycUmHHMf0tu_U4rs5p4fjBciW6vSqZjqwGavvaWUTaCsXo6knWDZJ89CaBOm1tlVloOkp4OroLBJHaejvfwBl8BwYE2WHG3CSDZF4CGUJUNNIVbnP3Vn-0Q_SfE9QXoz7F4ktXWsACvU3AzTkX9e1rD_9_9fmsrbKDYsVhtIjbxSGGI1gbluCEQCqD4gAIYlG7xNlCZIJON2_P1oIPyvRxZyLU07_p-KFJfgCQx7IFkuPyiWn2Ys-ynDH0yB7nxP6LxAmApYt5IIl6grELX2NoqHpZN1x0mI20_HuI-irBqt1x7Q9RIly3eDHuNvpqa6IAC0oUEVbgkvFoinqZeKLMXdLzRPFPnrXX1Sw1UHUJYwmk0yUnBhF_NHTC6kMFMcpvMRMmC1z_SNZozI3PfnVey7GtAiLaAE5yojZTAal6T2gN-GYtmxJWw8FnX2hrLcttVyU4hmVp6JXD0eoE9QOurslULuLGyum3ZuNH-jR0rJ5tt9bPtDdzvMUg2ooenoakX5N4qjnyzkaD6ETVAREmbJEDw8pWzRUCETIA979lPrfyp4Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67484fda4d3159-81530733','','','2024-11-28 11:11:58','2024-11-28 11:11:58','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41674',0,'cd-form-entry','',0),(41675,0,'2024-11-28 11:32:34','2024-11-28 11:32:34','{\"firstname\":\"Ryan\",\"lastname\":\"Summers\",\"email\":\"summers.titan.training@gmail.com\",\"contactnumber\":\"07889187333\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7O3lDCYvJNtz0Hi1RULTJJHz9RkYZzqfWoiwNRLdnO3aP2vM60zlptyLRvYvz5x6iSunO-LBp1jRqwPgb3wHuoGdg7Lzp7Mnr_CA9jIgkJxLjnP9h1b12PVGdyanJg0VZvuS2X43ETh4x2Dss4qgUX6JLyUIoWXAGTWteo0cUfL7bRWjHw3UXuX8JP7GxM-nPzYj5wplKztuu5kziO-ysHKpPKp_xRb8zo9rEVawKhfHYiAzsT6o9NirpUgh5TpXGPJWkVBcIZwtEiQ7I_ixfGu_1_rGi1KfRt4UI88cbrIxfHXHHKKai7WgDTIBkmjsEp9XvGzXXfURh21Ip90aL8SPKrBgSwgwCZwz2Iy3qS77-6W67Wd2HAWoOvkM9bKNOVeIhAS2D2ndHja5Rxn4aU1B3-jJ0uytzV5S86h8B9PDUb6wci1fwd3JXrqxuBzRiWD7PEFvaXrIWXojbI6SN9iIktw_KJJDITmaidX81htmH_FmtV848yPy4QAtg0y2UI0FFjr19WoNIBE2CYhJfxtOHBEOoJf667MBLPis9RDfz8Rjnh_3C46qtAsxu_Xmvky-HR02KedueF5mUpjL48qV1j-ymyJwGNLLqOURO4FjovNaAT7fka-2PjSqD9b8YDm6CAaKAOfCA3vcXJnj9AbVYU2R_Tqncp8gz2656xG6Lz_Kr7kNZXgltAv93Fgv4H8og3NncTM0ajZGx3o-ptnC4DlZtzSBBY1omrquPNfq9rJpgftWVEBU_j39hz-pi80unFSv8gV-KxuSkdL8WoFYJdVI7i55HhyR_6YSPf7V3AC2MnEML9fWue59qU2Z8mw6zNPWDzwjpykZeWJYBcYIasDo1ko2lhOfpxBgvL1Mc_KThC2s3mnKqMmzM9YTBx9mh9hxhQQgdqoFwaXo_ou6U155qLnb3ggpzDWBxOvV1LDFmxcaNYBDlZP7GyMQbEvhByfEsIHMLWyEbAUgJ8eplwdN2IRP4okNBHEWBlAFcqaCagQUt4tYlYrY9pKTVnYz51YdvbRXW7UYI4YIvUqIoAHsRNzNMni0SNCwpoSGYNuAAE-AAQ_bp0bwNng4Equj8WXG4qu4DJKELX2-T3CWKBeMSxQxSgatMahpNJqc_t1hRMY7aqpFO1ycE9X-EcZGLwy1hxnXgQ-6mLg_u3m2yLlRLHoac8a7zHSaJK5Q_bK24NwlyOHcvYi1B_QjLsWg8FWGWxMDetYoP3642XwdSIszPv5SyEGzh45-9gQWHZp-_zUE_5wgx3KWuK9VUhVx-AZfORRm5PFfKtYeu1qfU3CVLGd4o_qWHAdd-zrbAT5Tb0OBdPD2U4gd1HNVjUCgevxbFWzvHQInaK16f2ruV2Ecz2ZWAskEXdupSR2NjUkB7fJ2usz4uiA5u2rAJ1rfmejGPOopzM-azOLoXONH9JUSYvuAfrzTflahiBBQNXqIa3aKxXPYBAD-z9y0eECnCx9qcikiXbr3rdb0Tn5A4YelZvIG5A6D_VZEf-x-i95uLbuur6m6XGMM6SYbTF6ASBxPqhPn3-DUILqRrc5f0lBz5yLK2LiKczzq58EvnOD1BOBnENycnaTN5rlsqSh_Cr9NrKX7dy0bAQk1swD-oZW0F9EVmQnZhM-OIpR8Qm7ZculeAcz6gcuMVv6SlzUtgfxDQpLWzwFMlnkheK3uizG01OkHYVkTx-eXC94LcH1-h3RcmfNkHmHXgVeYD7fd61lckB7KVFM6pidqUxXJXYdS2vwSlgFEzKqR0cXfHAbfXiVojJhU4V_Zr8mAeAjhi7wJkt_YQqw9rfg0PBZvl0UilpJJ-oszygIFTM_n12Hy0eYjr8ZZNmyebMQg9T_bvwdzCtwl7Wz4rEhTkfHzP4MhgX4zv9mGQp1mB_lc1z6HN6eOANdhgTsEf65hJQKhOXu8g51iUp-w3ZYG_xTxu8s4JY4kGVf8o2AR0qAF7PC6o\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674854bf849f29-13750412','','','2024-11-28 11:32:34','2024-11-28 11:32:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41675',0,'cd-form-entry','',0),(41679,0,'2024-11-29 16:10:17','2024-11-29 16:10:17','{\"firstname\":\"Sophie\",\"lastname\":\"Coulson\",\"email\":\"scoulson@hotmail.co.uk\",\"contactnumber\":\"07817850903\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/\",\"recaptcha_token\":\"03AFcWeA6ty7ffW2TrYIaXBdHTvz6yJbbGVtoo2CquVXbX3iB1ELaFR12OtrqCaUez8v0JOfH66Ws2xvvdRQbq8ogceCV7HMj1vVSElTPX69Q3U0BZOY7fvVzTPvs_Udu3X64YeEbAr3OUK3fkBoiq7CNvMTUpO64LPEyTwYpDmWMltB1qKCfJ5A9XBDdW6z5xw2TGDI6uKJNeW4p91JVtZOOpc0T6rclhl-Yizz4N8a-ZFxtVyBjAMrEbV3_k3k8LPxvrEsTIuUw0HyXtqMxEAztD1cFvLs8hn6Ml_IoPAzEVESc7etLywKJE9b91rH_wGMbB5-w16LOje_Wtd7vNyjY0R2a_cwh8WvHYuuk9UK-uPgytDNVK-GSjA76AUZC20DIILOLN3bKqAWh8Ei9CBYDitu1LMQ9RqA-tEDbffpmsBPsGFtNRX90ZjimLmFwqYWPQ4mHs2IaJXaw2ai70mE8HA3rEy3kn_9bjWX2ryeylaGzRLghQgcMLWO_o6Kr_oAkqT3OkjSaoRpG9ES7pOmC9bZFHqt9ISbLzy5g6jlGEMQ3NWTHquR_8wm2WTvGjNlbB590mg69YihC14a-XUBtAhN3laBTgcF4DUU6XtDV41BO5LJZk-RIxcwzs97r9VXRgCbKtKgztWmi8m8k4_YNlX1FV8k7dQ0AAzD2mlIDD5usJfXqsO0IpVYAXY_Q7mebpD4wZtp9JfRJTmrTI76M1GE2QRKtjydThAfHqYQq_7Qe6-zRy64Lopie4Hl8LR2l_Rg6WUa6KKE0nnGr8BYMEuifc0guOHBs5681vHaD4snq5QlVCBQtfWbSI1ghENVE10PVYEuuHzp9phkEjwaHTOyRG0HDWw9NLJGhTIIS77QT7NMCJ17sVZdsijSLosuIndNM8LJG2NolKQHyE8Vg0mcT_cDhWZNbJmR-hSCueDo9e9zvoehHNixZ_3kFKSu-6u9VRUixlFpTekdZv96bZ9ogyY4eXiAKYsLugcZ_sPxpzUn_bS1kc20eBrQWllRACc2h5A68KgxNXCeSdxSOp3Q5c_T5CIEbA-ULJXEocYRgoXilz4f-CY-4cXrpkPphlxZenLX_iYfTjL2DvcHdDBQF5Qc9xExDO8FlgtPVJndjQDy0Z28zLuZRCU_8S3uHZL4PuM4xWvAXKAQsbITP50HBA5s6xWrts6NV2U85aqvazl4vENJqtJC8uxCvkqc20zYhLN0lkoIQLIF8NrdbAR0_1LtX68hVEjSsr0kDkL8tvg2X3zeh0g5sp-qmfq0TfnFjVzFQ3S55mdQpkWzuNtE9fyXITES1t3Lcqt6UYsEcx6OzbeRE4-vt3GWsCAkZ0jl8O4yLIqpntso3W5PpCVdt6Bny9XkyagwgkhCrU3hv_8NKkObq7BzgEVHry6ojjRKXCO0cx1gShAcvlVozWbzWcfAwweLhw9ikkgcbGT4a3nuS3l6kbLghYZTnlsR2sAv5VqNP5UE21f4L24OyXOMyp6Y7CVVLajqUQCOubCuRsjWDwGwuDbAkjI5n2871HBm5bPCu9l7-EKg0AZzOBAsDHCBs9AI8DfcHZEBtcMBoOPylno2wsRAghmApTOlitVD7NYR7JzLW2s9LU7HIST079v5TYgotAlzbPIeHxNLkD_I7mtsD1cXM4R8OrweHY4Ppz_z_fGtURvqN0KTfJ2_bVcDm855uIm-A9imrrzs9O8VRad4S_1WwssS_bZ9yRGsLC6xIInFTivaHoYk-XUjBT9qjpASG6Wy8mFeZIAcYsYuq5mCDSbmZ6eUUwh-zsx9wlEnR3FodlxOfAHOY--7kPa3w5iohbzj-0Bu2VZC4rIqlnflC0Af9gtbNcUzBvHd-6xGRsN_W2J5_rZBuL0PJ2wS-8aKD3ZMiJU6mcn4dS1p7_sXBI77i9QT1lYwEtU4dwXWZuG7iqYaKgeMsygCCmqfKP9A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6749e761245f55-77418462','','','2024-11-29 16:10:17','2024-11-29 16:10:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41679',0,'cd-form-entry','',0),(41680,0,'2024-11-29 16:10:52','2024-11-29 16:10:52','{\"firstname\":\"Sophie\",\"lastname\":\"Coulson\",\"email\":\"scoulson@hotmail.co.uk\",\"contactnumber\":\"07817850903\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/\",\"recaptcha_token\":\"03AFcWeA46gL0ctuItBMMunAyN4Bt7zmZbmPGFcztK1SMnXOzaiA38VljjBudMP-G0MWsl8Pud7STyGWQSKY7_Afkw7SjqWvXPGYnmRr3Z5JUp8vhGH6xZpGjbdZg4PEaceVoRAJcofkg60Wq0xQlQnQcRuF9l-FInZ19eaaf0bLIdRotv1DfS1Efo1doz6hnfk1TTNgv8vZknnYQ_Sahre_tbIzv9OPQgAzaErqNzoQl8AaSAu2Z6JB3B6bJ963mAfIPhqhub8XSuEPYG9JS6paLO78JnLQSuKI07imXa13jJkJARHQ66zSEjj8q8uP7Wux8VtnN-2xZuggEh2uuG6CfTrggSiQGLHififsaiTi_4vtqiRjyWZ4_Y_huAKghPWIqTkecc5JxbMSsPgJqL3K63L6yOXre3eynSXBXr_b4btUvIq-Y0TyjSqLY_9od12v5eH9hK7hSY3W3Br13-1MeYe1wilexV6W4kj6qBcNYKSeKhGUhJ5bYpWMKg7NoHTF0LGehMwKzfX8tI9x1NWGkcMyeygmxQbwA7BTfq8sn9yT6yqxiDylq3WXCPUBRHGkxZCVcHzs7Zx9_Qud4uUOhLeczPOCywXpT6isbfklLSbnubfC7F_-6TKWYJUXRxPD63tAJqdTcCk9gi7oM3GS7ktZ5lpMRNSd7yLWRqg5RKIrXgSo_3X4Bd8Ke4CgOZFjv2bgRoWKCznHZu5IF53MaGmHHY3rg2dtgy5GZZ1nhro2jz2ez8ZSG05oYEcj8y45-MxgwQ25sDKLW5ov8S6AMVGI98139kCeqKGBz0xAuye1ngajwZrlw8RksUND8cL5UumrEuUUK4JGnBa09uzAjcB9gha5VqhOjl8dByvFZ60PFzCwssk0oQdh1xyNkyrdKw_6EMy1gfZUm5CFrefDx6qGZfcRfIqyVifih4Q0zbvBbUkikRgLP-erjiBGrctqyflnUsy-2Y7kvUP7lyVPymn6s5nrBuOEGTwlz_yz8TUju-FypQvJquFnyPwfdBEbbxRfNn42205mRyt8E2YNsSLlNd1zeYQc97ftaC92Q-hoCPZq_Wz3TOHCmu-q_dDGHrtccAv4wiWdLtDMk8zpoen1BTvuIU5OUM1veaxeDxfX0BC9Hlqw14zFyxnUmFaAGsjMaWJrkwiHdon9JtDl4e8g6K58VAXh8STh4Bkv3IioriHnbRjRtzDVngaYOQJwBaDK0VH1pjR2WAif0ZEJDsFNzl5ub1TiPHPD064RnJtosUwihpOlbBdrAO3z-v56mKS4B5EI7aOUjhSfzs1_A1GPfP8OZalK1QY7zDJtrpEr0o8FM5smM0YJ44JJQmWJbLrwPgYhPSvFYR2INsIJm0qudevAlVe6Xf_3CWR5y12fYnGqXtxkXZoEVUWhiXh_EWs7DUP2Dtn0LoIpAYgsdlC-4lnUXvNFd1fenUUroVV9TxmWfJLOx8SXEM4JWj3JkUKwakWM0-x74IQ5vecnefpeTaaF2cRjLk4aPs4TJEbForzVj4ajTBVUgq8DBksLk3gE1M42YBvQPS0Og-hibOmauTNyrgiu5NcwlnNDxTR5q5csPVLfAB9gWQcxoV6h37EpPLYXDczYuCTR2UXt3iRUAW_7zUhWiLMxf9LH5p7jNLvcccpYbhWu2GKnRPhrNXF50UFPQAaLHRZDedc_FiHiq5YG0CCVtfnNwi-54fFL1SYqIPQNTZl8nvEgsSSZ9e5JaO37rHkZR-aAv4eVZ6EDORRx3kxdxBTvEiPMa_3PTREUGt2ihi2ocgT1ggf-AiB2lz-ytrZ3d1fL0seN2MjrlMa3YwpAbHn5TzKnlMKeaupBw695LeP-DRuXbVofdAklZpkBTSyjLKMsdwHpsf6ZlZ-lHPYt6dSIr53SfCvlA8i0F7w7sX9T9DawniiEmhZ_D3uzRL4sAsaulKWBZxpIfF_oTixQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6749e784bd5d72-03910237','','','2024-11-29 16:10:52','2024-11-29 16:10:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41680',0,'cd-form-entry','',0),(41681,18,'2024-11-29 16:48:28','2024-11-29 16:48:28','','AFC Banner (1)','','inherit','closed','closed','','afc-banner-1','','','2024-11-29 16:48:28','2024-11-29 16:48:28','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/11/AFC-Banner-1.png',0,'attachment','image/png',0),(41682,0,'2024-11-29 17:49:06','2024-11-29 17:49:06','{\"firstname\":\"Feron\",\"lastname\":\"sayers\",\"email\":\"feronsayers@gmail.com\",\"contactnumber\":\"07944651210\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/how-to-add-value-to-your-business-charge-more/\",\"recaptcha_token\":\"03AFcWeA7mh2-vbVGftYUaLMPo_HnmX5wrdXWLHmRJhqzPqvCVHPzWAuUpPXFLZGj1etkA3Nx9CqHDy4vSCl5cpzQzDsOq7K88bB2uhzpZ3NX2Ayya9wTTE5QArIINdOlVXTyXEbs98bNsj_g0-daCOIGP5wqGxcNarDwskO4sy-ZnBhMxa97REzLJOxDAU2Tv60iF7B5ZjZ3Vv6jLrHugJxxWdFAG15wW0JH6kLT2rjNsWGCxpDs6Qt9R5e1-PXfF2_S5R10l94faofo1Q8GlKt0Tgf6whRHHV4FEXHamGK0aEK1q_k6Y9GX6zXibOZJWg9IwOcxM-9aWIgXv3LkEGhibBLY_VZqZPo5tEdx9mo540H091u1z8a5nI4Lz3vlDB26xL59vGU6rjajiWna7HTtcetrDvkzIxeOp-8KE2JLIsDd5O5J9w_Nf6XP2ihgzbnlvoB05XDhqn2uIQbYqSqFwd6s9CKoJyeczYdSVbZRtNNxMEw043EDa1iJWT_r2dyGzKag4v8oVgtpPaK74YHTVRk079PQdAcIRTmBPbQLP2zRuBiYx-P_4tdySen5cCKUFo43kPjWC_qeNdDLlOOtLyUfRdLHL_EidnGehg0FsrwVJUCGCW6bCYQ1KUD_fxSwZQSeY7NR2C4xhQ8ejUaMwVnv87h4emvAlODI0hfRB_5bu_UwfYgyIYeLgPxDlrIJNZsbUltSi6s1JvKWcla_XYyDK3MPU4nqEJoggLJw8AfVfOqQc14jY_L7wIRZovOE94e5azdCT7QR66gGnJFQBTDCy6s5pIDmifKHL97FIQJ6O7IXoTzsegMJSxMZHJicdoFlyxaPk3tw0UY16q2mpdoc4RJ17TQdBzAJHzUBESOjjl_58uZuP3CPbx2VnrmjbZI2dPjLfLfGacT5f0ioWErz2soItoxnlqiC5eauG2Kdm33BHrgMmfaiHSPaHsrXDinbazhoPp4BQ3sBkOc2sN-bU9nA87utIEHVf-ewYG7tNP1J8-FAMaT18ZJcNpMmZ5dh2UqsrBiSbOx563V2scbGouBeoosUJ8KoTM3G6JTjMiuDAzDDw1zGHmwcapBUISXHEm7bgyzJ77h4uI8MxRzr-QuhnVP2wxsTrqXATwn3JYRkTTlyqk9TlHeel50jBPSApRrX0MsxP6u5u6rtbR9SW8XSorX0h9m2uLxz0ofLGT5axuBG-vkH_Aa1N9_K5xOt5I4PokQzcHO3hKb11R0DTicGZHiIGRjr6dusTAJlsBHWYBdUjyiOHqF7TluzcfQZuHi_3IWdJ9HT7Bo4L8MX7VsZKHwPn93ggmD_YpqUEMJEsKO7W3uOlg7saNSNtHyZysge0vUKPdjcHGdH5-Bll-he01LoNyqiTc38smYUOHTmsFWEUmkjSPoxFolJ2on3gXW-mBBYemjNoYYkEsIbdZNQtN0vQ-e1xSIg-tOGRvqe-Q_G1EygV_CJ1vMOSmGfRFB4KVXx1jInhAON3ga44AMt4BZLBNej1cZYXVVsqy7hlQSP9ZRtVsRmPFZjRZdV5rgvrVXuZ_C_UmyVADH2pyuxmUM5acteojXV8uIJzkHUy90tTbf3wCURYncX3ZL8540fR_sb2iu3BINVX_kYDJJIGF7QVZ1VaWymHk7E4GoR0VsT5YjO100eIlVgq60V0Virs3RV-QDrutXXONmNudB4an4XgwPlKsfjTGozARH_DDBiMJjCBVifQp2lphgJCydeFVhgLw2F_xXI6VgCSu0Y1fc6xYCQ2HxdIizoKqkuGHkNSiSmVaik1uN2yqmjxqulgwTGqo5xEtNmwE4heGkKYSxwWUi3q-gUctxXghFU85uUOis3QHpevrQ39U2X4FzQoeE9Vg45Ex-XTZLJM1v7OXs5g0Rsf4ev6XK8hFkw4d-hUpMtLUhb5xMWciDOwSn_yPy6S6PPHOImPFw0bhsyWoA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6749fe86746076-90854673','','','2024-11-29 17:49:06','2024-11-29 17:49:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41682',0,'cd-form-entry','',0),(41683,0,'2024-11-29 19:47:55','2024-11-29 19:47:55','{\"firstname\":\"Vicky\",\"lastname\":\"Bright\",\"email\":\"brightv14@yahoo.co.uk\",\"contactnumber\":\"07949490394\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/imovefreely-instructor-programme-workshop/\",\"recaptcha_token\":\"03AFcWeA5zu5jAEgIbnMjctu9ySUe-vJJ1Nd-IiEduA5wJQgzu83euBZPustSSyXipOddsr9lX_yiJJCwbUKtoPEY7jS7KulCQliw05oOT7Ye1gkCv4xr1pafurMYiYR2XYOaqY7xLDkKfOttoNYZ3PaluzpdpG9eyIHiUyIrMhGvjMEeo4S-xNE773C3jZTMj6tXYDPKPZZYeYPR3TcvhfRMKtV8oaLH7DnprwNgWt0BZv2E15bfFCn7jdQVWIE-pf4k5NG8v6Z96UJrKYitkEf-9GDN4nyV5F0MQ6wuv46T98LIwSd4sEs5FhlNelcNLecbfN1zZ9i7VJeGJzladCsPB1CPRhJVyrZRD3dssRvncNhiirMY0n1L7ScouoIcwHmCRhBBbsL_sSrSmlC6MGnRxj2MyI7YXb4gAX4bu5kQTjisiFhgZEhT_gqLd7ISQk9iabw6xrStmdRlV-27dX-wbvvWLuXZGiWpYd6LdaiOizEn38tAiclwCTgcI2BfcfdmLdvzI1X0dfp3ejvnnmCzRjpoZx035xOLUcEUuVqyHV3D6cUe3UMBSdb9BrkwoVH-yr2Ms7dRhm-V3BGaQHCH3y1c6V7pajywpFCWetpg8dfAc9MybZJ3iH8veb6mrznyvRPph-TPJBLgnzMv4kyUU899JWZmCVxyhz2pf3HUqCp4xWY39Vd0XJqoMBpTVTAilTPfMNH03FkJCIFzhU3v9AxXWpilkZYW5u4MyjYEPhcQ-dJ0_yQ-GbFqZ1XnKcJ_2YSfSEXTyEf0gcUTSoAvPFdIeUfkipi1Fiai_N5hs1UVo8w0HT8zfJW7wKtvk8RycXekDy3PoVyLDQHNYsl0IqNyJD4DJX7KImFQsLpkvSYY1W7jAQTCp_ds1_7EIJfltxtoZEY4ZwPfb51ZNRP0G9fqoLTPycSPMhnNE6Ww27TkWOCfqHsiVO9oubK_QAbK36f6C6YxdpnA2vLPflap9RxASfZjWUfp3uhfGHGC5lPNFdEvKlePz1q0WIQ8Udzt6jvHvG-wW4fPxjRF-cXtkfnaCRpGt2PIGdhmtTZwFORi0SqNangPY80XT2k_VR768qj9s2n8gYhqPu-kWOQB5YXMAs_iVQIsExHdsGNOPVcGro-HM52QWzujAEMUf0kz585xJyHON_kr63KWn6kJ7_fF2ukuwJMqRJ3ppc4OU1rGF8cwc0-4ORisB4k2ic7eLuUxBgE8QYhwro4EP4h2rUDmr_ostnNwhCMyKITE5ERdvtPTmEMZyMpCmouaUvRLdtHspKMbT2GxGsLSGTo7qfUTD2vUgeGUV__i0qOgocTHl9JdFv81lGsgx83t3IRsaR3XyrEetolRbiGLyhgXMKifuNfa_Cie98ddeQhtm5Sr8_fD_a8RJk9ZvlRS8CPP2DB60rwZI0cDcU0mac9D6RwQCi3pZZifkpdfuWfOMWagQNkNnHiTDVAj7OSuVsga50v5L7WTb_Nlwk2zqyQW0zSaJJAt0hlIc0Q1PuFR8CyB1LVw0vGBhEIzyvJ5yizNkaubK11ODCINlwvE4VUFTV2I4Ji246j--7izk5sTp7Gk180kXfG-bX42PVMDJI0oIxgiylhD5OGHadDPxbMxbq4emoJooYUfgZVcljOdSJ4s0xW9Gp2JGBM-yQ_tnqu6KUINKZ5mxjWloaGIxW7e77JcKDkhNzlFSI2BgfLpwVODAzeTOe4LMXjT0Mko3DgcoUg9t8rvAz4FE4fJpwvgI-yCFcRqY_MpRQCNWgUxcPoUAz8sEiTonOd57zDd2BRP85Rmk0iSVvLGSXzyTaNq-PNgcn4kDOcOq3PvT4cTyS-PWU1JVm0SEEK1odqZzL4emv4jhuMq2k85oNg32CHXZqg9AOZkGiLKICXySr3lM2IS0iUSLix4lrjPjEafrvks-gYDt5pJINv2Qq_JQDQa7EpS6WHohSVQ5DH2TNF_0VOgTy5f7tREMDLHApaYLh7kkeXIpb3I0nNjghKB_IPZCWe_-bqphowqXtzvlXJnKp55bfj52UoUwareogpYm9V832PPUgcic\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674a1a59a17317-20326537','','','2024-11-29 19:47:55','2024-11-29 19:47:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41683',0,'cd-form-entry','',0),(41684,0,'2024-11-29 19:51:01','2024-11-29 19:51:01','{\"email\":\"brightv14@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"6\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"SO18 1NL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/imovefreely-instructor-programme-workshop/\",\"recaptcha_token\":\"03AFcWeA448tiwmhH8IxkqFfWi-m8Zg8bNMf-CPWpNyTr7qRK87hOXHo74bHvrQiAGkpYMn8uWlyIXSjKhA7UTXjkBjVfft9AUs7rl6RPXfvLsDPBMsMe3lLgZ_p3KqNwb7Tz3XT_ylhxCEM7uB2acAgfXmnBNGkzGany9XxEP5DR-dp-PanxgJ5O8qukRjR0un74rYuq9zM2gJgQ2UIkof6rV_eWaSgdAIJmob4K65zgaL9rIhNaz81HRwdHkMSFY5TMpdOzNdavgs4l2XwZUudCqayyaXNGYO6y0hRJPQZlYZyrEkJnmn2YDSdFMaX3QFXGLa9cHuqJpj6cml2ufZAWBYxU5VSUsPr_0map1GHkqMmWdDtzmWsn5h1iPI6piZCkpZRuqY3Y0YXx1WgQpS9CCvr6O4Onxth2jMDgEMIyF12TP2FugnZbydwtZ3UQtvZUYRhcic7oHqrh-d4i_TN2OBL5qwQa4hc-4fM2URYcUn7lBzxwlJ7Yu2h-6qZiobf8vsa85GjImhwOj6vXZgY7GnJ3MVtCTyB_WijuVY99DrMV1V37t797tGafXeTUSKB7gQrYtatYsXEItGbT4xjtmgkdyo8cW_mJetHaNKkCY2paEOVmyDIB6CVrwbYz63SmqMDk9apOD6d8oo03x6FBPnjYdBHPDtCXivezCD5OQ0hbfjB0-M5uQTcMljYtTpSs3rpUehLYZeALy-PcZkkloyMh-cguGapOjhb5EB5FX53HxKVsw-LRE6196iZ8DfdeVn-ChYXr2rSoEQRWiL6fxopYWaf1CxhbvLcpr68noKFMSr_7UUdIvHK3Cq14I0TImaNmpxXWXqAVuIMjzWYxvr5dkwcrFKkrKZUJtR-nVRi6-pqw2L10xrU_JaCY46iKzwLeA0ImsFsXF-BYT_j0eumlsXxzsnWNi56lH2kXLd_LM3LO-2j7ucOVFuVW6JVR_uiGgpB0oUp_OAicG1yeNr1qVyFZ3QXd4mUilb2vs-oMGAo9bIrVerpJ007qbJ7evHfssI84IV7QhnjCmaSUmI1NMbRUfRkn-xYRnB1jZrSBv7YNgb4s2Uj6Sd7EoPPXbEAOaKIIjhGtV0NuVKb02TNA0FHmhSKA58Z194vuxZv0DwS7pgKwAJGZfeRuV6v4LoO5rx7oUKVjn1k5IyriNDZzhUfsk00Q5CC72dlyrw-0GZ-qiTgwhuLbFIMFYzWA17nwyCyUw24mO-Ae6BnJDJ8uuoUEtjzn5LxtCztM7Dx2dfaKQ7gItAmWoCoLpncEGxsTGVYCTRE5IjRp_Z_egS-6S9XYLqNdqNTi_oOrshChrBkFY21W1uuKLV7yLWxolpfLqJeP2Zo160k2YNC3R3ahBjWXT-crYpBCyXzX1oVJhxVBl6Rsdn3Nup5dGpY-4-LqNKSi43wD5Tzj2YJJbf6qTGEpOpnXPinQ2xJE7-u_BsTciWx5qgm_lLAxXNzUd20v2tn7ZqvGPPtqGKStP7_1EJO6Cwj29JltIrcz1kIl98M0FdkkZdViSpJ2sHNrlMQ-6VmHrEMMffcli-PZjvyViuIWM_C1UUhKssEJBUpQqiwuYy6U_wtoFyBODlXQP5ZF026lC0KlIuxm6g4xuH7HiYhK5K8cxxNj4lSSHktK5AbyP9NRRZ5iSep98NgF6ISdbShXvtRd9kJnfelyjvLRbKk-N7NqJeQhJQzvudbJxMuKUk2tuckDuGujhsxq2Oo7FAy3e-F9kbrPAG3-HARpqkjUzB-qwt5GsWqMY_SXocrqXbRt47n8pNt2A9RPA3zu7-IuvARQLgh4uFpwgrO182221BcJw0F_P_ixuNHj-SJuwnwXOWnbbJ1NKlwNe8GTaTz9SrBaUYOshuQa92_Ax_aE9SupKN-9Rwj8SJq5OKY3veun4iLYzl1uUKQjb6iDRzL5oKdaLTth69qHcf7kcTD4Mv8_Fd42Gk8iLrw5ZPzWe0NWloCm_sAreU6Wm8EtnMlwkTlNr5rLVrjS-teTpyh9r92hfTNmQkK9Hr7vzKKUPYhFqV2IvJokomfpfSJo99J02\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674a1af71c4a56-60846632','','','2024-11-29 19:51:01','2024-11-29 19:51:01','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41684',0,'cd-form-entry','',0),(41685,0,'2024-11-29 22:42:42','0000-00-00 00:00:00','{\"firstname\":\"Susie\",\"lastname\":\"Lovelock\",\"email\":\"susielovelock@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA7W-f8ZIMfYREqKcU-hM_4wg3lU89j-T2tYSSgkVROSck8iIMvwEv6J1H5-99HkXN3-n67GxY_Z-vAEFrDtIAiWLyWlDRmbRuD7Vv4G9oY0Xdsq72yJcSJaHKPZXzlf0JGpXUpM_yM0LngpZ8xmR-fCrMWVSbw36tcUdti-UDfRCHpogV176dg-NwzFuRH_x9Y15XyDnu3Wx6VJzRDLc6OYrkgQGOGI1uEbHiVRcRLrRf6HRuCw3HEdn23MIsLmXECgXB4uITwT5bYActHb0GI-EmbMMk7cVIWS5chdopoQl6A5mcuuiDOwuLg04-X3KgWGiFeQHjezfz-Mz2TgpSS1Ai4hDobVIqOHPOtr3B4_lfMUM6ReL8YiOcvvVY_c9sHt9rAVUJdG_nAslL6hoPmENQS0wd1EJpjFy1_Vd9HA69S8BT2eKsKHrnPx5yoVU3TtQsJMV4GBKmY0SoSoyizQEJDDNzMRJnQUYaW09nlzhKspjYjvGqZV6BQ_2Ag70avZZixOLQdT85AsLNBbnjxJ97_ErwhDm6gQQs5q7n6TovPdupoem-uddUdPp7hEM-bUhlk0TEOxLTXMgxe76y-sLdKuNqjG1fsjS7a0Pvs_0nlh3ZcQPhHmodUXwFDEfDb4FJ4hO-zL-6r4Z1xTj-nea6w8CDJM1wUPToUqjbL3RXETWTlTRS7njA_8AB-QOYbUx4BYvyh1eZydqqSxFn7VyiPb7Na4zEWBrCFzy-bnSCS1NZ3_5o7aMiKE9-kKYKZpu-AcBmyDijkPrGHlGy52UD0rM3Pmxt56IF6d66y_Tk40NX8p0Xy9BjS9GdDxQXyR06Hw7NUOmyEC0Tl48g5RWPSiP-1gHs-2kOa2ShBfaYJP6XgqB7DcHydS0E1Byqi3ZCLLzzmAvjHj3VHVxQex59_-IZPyqin10fnNpBkENzLlI-UK_1IMHLsn-Ib6Voeji6MS8cnnGbe3eE4CyCRfDaHXkcxMnb8WoJuOYYwtmQ0bHihwqgm3ScuDLnu9XLN29R6JF6xFwW7fWM6giiQyfsZ3h3mAu6wAApVAT9e_o-kZpzpSW8PGxdzlnpH-UJ5gqdcFCEjmU91eBUGPs2FAC_ltUtHK-P6EY81ngDDJ1VsErHA_bA922LT-7MSUKPAb1_vMpRdZv82dkgh000Gl5mnwEKfs_82rTPh4kOzkZd4294wmHrCN-EYA4HDhKD3P2f1yIft3-Fx_4JdujUdek5VHlcLqKSR-bbgcoCmy4QBVLRaIhSRsmwob6A17fwqVZLNGqw8x2mHb8uZFY1OUTb3lnB6oQPR0pCm8eKUb6HUgE856q2GxFbylEclE67p9fAnrSit0MoKPdnq0FQ-zTfymGNmWIUiGNIWKwM7Q0BpH1-jpyNFhc1O7q0ckLXjdKmK0RN7V8Pl2lU0Q1oOlGeeow4ROAL4ngl3rhbkH4rrpMDP6CV_88xFF5egLKWxwy0pAzom7MshGc7TwPCdzbuz0BV0WRcK8FjZGZPbbMLDaav3IucX1HR1fd0O2FosUVGTxgPg3VMh8gcYqCejlbiYc6f3yzcB0qgjSsPC5ubhnP3I5RyD6vrBN0Gu4-mV7M7LEmGloJhjaG7CeV5w4eqLN8EZfN6rRl6N9OznZl0Jysnn6Hp3Ad7a19a8uJXl5ED4P7fvEHw1LUtTCGrrKLQiWkcc0qrByWzQt8vbU2cupZqOGB64jMEz5TaqAm49MEClS0t81FoyFRTAGRkSweJ9cfgpsRA6KOnDXDIzAQCuQ07AJTV6IRfPUxq7Z-1hmAPuMULySx4x7CFeNqA2LQuICZuz_we_pPuHmHk-NUwYvzkufITGYX2TYdDsx2NbD1ddNswPN3Kgi5AOIUlr-7Pebi08O5d9lansvivbO663q_50BWQock26Deds_JMqLNht5HqonhyoJdR15CQlYo5LlnHMVQT0xQX1lJF9Fz2h3IvVYeco_NsonUkxw-n6ikOjyOnprtVXYvpIz6Ew3DQXERzMvoD9gTu7GlVX6OXyEJ4Ji90fzD1SpuzVOI0xV01eWLQmrzo62vuJJc0zGg2CH9AqdLzXwWCzMDxRE8tp4K3n4jagY0LF_UWyDnvYGWxSVUJi7_saOYI8Pm-0Ju0mUmg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-674a4362d22330-00243841','','','2024-11-29 22:42:42','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41685',0,'cd-form-entry','',0),(41686,0,'2024-11-30 12:57:25','0000-00-00 00:00:00','{\"firstname\":\"Nikos\",\"lastname\":\"Gerakis\",\"email\":\"yerakis7@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA6UBiO_XbEsjDH1w3DmFUo1v2CWbuvJVAtmJ9svqZtRY17PrJImjX25P4-RJyzGpSsSZSap6Jb7F_dCzw3WwsLh388cM8K4wRGKwWO8qynoy49dnEgCeVIaswWe98ZESfPzgrqWSFXK7I1W5e7IKoEZVne8zKUW8J-lnFUGhK10chFd9Zmi3jArG2mGvlJuSPlqNrHwteoAaHruRQxSLgnM52Bo_kTo8ZjAkmCSB1gJDo8d-xZJTwMjO5g6FrE6L2qVwMKmaYxnKjtlPxWO1k4bW0dKNgc3cThPq9rQVejss-azmQwpOEzTJqEBv3GvnoPR44kkF1uiDYDZE-7AKHg1aJqv90tQV3KI5sPlO0TxLr75zVhojbyAgydpsuOh59Mm0150zceJz5WCL_-4_upt0tDquGnvmBU_LxSefBco0j_eewWQvISodtJcmRADrA0BYUuEG_PeGbx0MeYUbn2A7lTZd02ieeic8RU9XP_wPkOiJyhMwjWc_5sn2C77TrfH5NDAaNLBusUXGphN27NbP1oVQXN73UG2D2tzDPFcqXK2naCm3wA0qLHXHepo8B3UubOUDQnStzU77yx6kgx2p7z2euGagPpoiuKXKYfPP82tCZ7XsKtSMPm3fY43wDFsKyDexUfD3ySejYw9KWN4YATyxS88T_a3sM0EJWJDCS1p02Ykz4rN_VDYh_AUnuWczpIt0g6aBi3PLDpx5wvCVvmSm4pNnq2iRa1zuM8d6XAqqpEWPIGSdWNJ5Vuc2FZZhiHdyZ7U1vUxmntd8Et-7eWAqt1nDMNeRwX4AxqDsWdSScP1mcH3umGxUR0jE0nVYxcz9TnQ1dKgLz3pyYZHCHvOVkNBAYhJGuJQeVxH05CzeRk5nY8GEjm3sH2sGf94Mi48Cj25buDEt22IRhXQoJTgpCKgYwcrGG1ztuMQo31Zz1lDxLXVn9oWrxh3iM-3eC-IYD1Mxr_bVNtz50gsnJPq5b0uFy0txZxqufLv4ynAXKxLo-8Ko4TXZJCxUWJbEzBv1I9fxbn4mJddWZCo5TGo3tEZH_ymisWBc_8UmLLXZaX2FR_RjkWSRqrwqDNfvMv4VinXGb6UMpwEDb89n3CNBWpjd5lK_vWGGExMcvtL4bPxF-6pjvobi1bQI20Y4NFWsj2O2n8vSqWFyeg9n84Xmi1BE4FEiG0pq2JaY6Mf6K_PDXu7LoWs6etxLEQAJ-icJwS2i5yufZjeGGPa2UOE4IROwjAH7Aj2d7s6hG4OMPwulkwZmYDIfjc0-FPoI1C9nQjBwlZWRG0sZ6rBiQHm7mi8BuaRl6YSZ--MIqpXCwtZ-MAjdZjTaX6GpMlKAIZBOvvmp05PljBRPjANDiyXcpfyOzTWX4XTdBcZrLLX5lu8x67JjrJsdftJ-vIWhVU8WjJhSg4DYQrFeUrLC8nqMLg1uhZU2eEYRbJ-_gTC6sezAIbiz_k2Qq85Uw2d-rGpiGFcev8B4QkWrKHASuDz58R340fG9KSXKGqhoKk6P6mdMUv7AZhtl4eXhtkSEVJ1MvEXNhkp5SE86Kckl897hdHt921DWf5O-Q10FEpD_hcePYZkkkbNwlJa-egUj1dhFsmdqEyYPYUXaA3mGOCPHVY3n3KUQ9IKMeYoa-WZBv67UGJU_rgA7whJx8-SOp-WBjzRxYQ4G3v2vFRWv9NnjnIQYAwzEvgyaTRiQROzCMHIt0Knso06S9qEC-QVL4uudGfhSqjENmTbbFLrZIHZl1ZsuQc9bxtnx6MD_wvPLKveN7Jk3iIxYBu6U_alzMaoMjvQxOH4eaqsSdOpFcqxFaY2hUxBeP_7Yye2jsauwkKoiXKWOWJZpOJJtFGwvG0nbF9BuB0pec4I-fOfw8oTKg6bbwmpAWs23JZPcFe_CDCy_sijL4yeo6717hCpn2tI6pK3Ok0GQqmXoKk435vDE1iBCUgDU0BI1Bvdw8Qepg9x-qJ4LgXPsg2xuStdwsht\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-674b0bb5eee360-96266270','','','2024-11-30 12:57:25','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41686',0,'cd-form-entry','',0),(41687,0,'2024-11-30 19:56:19','2024-11-30 19:56:19','{\"firstname\":\"AA\",\"lastname\":\"B\",\"email\":\"egointegra@outlook.com\",\"contactnumber\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6rC2_sqbJ2qY9SSfyyYof2TyIdpl5W_c9c8k4oNgyiAOkjhhUhROadnxmaKV1RE-ck0OSr2VXDdYFoWGOr7y_ZRR9MZcNJ4O1C1tR3LiodWfTr2zB1m1bu3OWsNH8Xnu7ehMvDs0OUB2VcM1rdOuN0ColEAhhm_shP1NzReLnQyA-0na8yYDysR7MyaX4sYsLnBFucJy8QvS7HzrV2rSqXkfwGCq7wzwJ-S4nUK5MVAUBpkwBmZ1VKBpbKjH6qISvDmPZAQjJ-Svxmaucg6mMd9H02HNtN1ApJHnie_pT69lc0Pme2qJXHG8T63oXEX7LctbaJeoTJCIwoayAhutUsqoQUC1Dg-Sk0RleP05-Nz_LImkvs-x0ltp5RNqfl-qlmedv4j6ywBcDU8x_iMRpx08uWKRFLQTsX1QyhvSz-j1GqqTRtxUr5rR13Q5CU2EDVspIBFlGI40HvZOOU5ki8w_36y6jtfz7ClvMMjeukVEuCiMcAqREPOYCAaTiKDq291S8XAS_bZVPsxwBoYDG9vXBDwBNJUjrDGMwKBrdE6BPgqqL_QwSlntcnC6jXwmbOW0Oi5-Mc5exKUvhS3SCxIB-Hsg7Bvx7ZxSs65Cx50aiLeilZn-W9UCq5dtfsnPENekoy1JHo3fRBvhemOwrnAgDVwYT_iRXyOJa-NRrpTMtX_eBhSDxOvOEIDM9aJdDABUBU4XhmCZ7rX_HURUv7autXg3aeFSwt7OryrQIyBvruscP8UiFZdW_0tlHla_Q50Sr-QVH9bf4pF-nuh-q-q8dykL6F26HMPEt1XjDcW3lXPairqRdYQVnrbLNVVNx-vigI-iu6OrkFsPObSxQEGoT7akXr8N3TqP_B8TZX1ntxe6eGkmNEbJqC2WpxArKcTEW-f312cr_e4A2rq6jUeWJQgT5jOdHcxoz_rvCL5FqE3Q9idKLivOLRdjm1fj1ip03JHhlMP1eHPw4Eh4UQtfln-oCFB0bb4OEHzj2XquvRYmTm6GhzfjVOIGi3rho0a4q3NeXkniL87hBIcIhSfG81peZDmcbXVRQXhrKtytzt8UukcI--szA7JaM-9sEWKPRHqgk6uNUGaB-LHOjJwV2DwhSNw1mucgZoYHK6uZJjAhWFqlGkPZjM8TIkO6OOz8CMOei6C4l6EY-WdmNCAs2FyGxqG1tmp8-xItqITZZ7iKJ9ymBvXip9ywBcaOdCoOajcgKp6KSn3NYEOvhd_PfqBsH-pOd5KZKW5K2avBd0k2g5nd9nEnBsLzIj53y6VFcM-x7VE2epy-RUVhmxVvexlztx7iUbWJp8iwmUANz19T5RlSP_M2S6EHCXmBT8F1Pq7VR_xGud7HGQVthDw_0yKEHtDX0XaQCqGuoPNUvYy5OW53bx4jKDGOlT73I8V-UgKJFpTwhWq00Ajj9kdxwzIk7rmlz3bBCYvcHbVJEM9ocd48tcnQ0sRCa_QZmUmPK-IVDLjhkJ8DhwehXzMiuQbaEfSZQCSbrya5N_Gbvr2EJuvxVyBFkRNXq5g95JbhEJ1U8qqGTVfvbKa0AjrV7NSBdmkbBGZoLt4t4XGLgTDkJRGpV3eQQuu2aB1Wi4LWyL1MhEZ1vZSdz0XmqBYTO0S3gWsn7bJuCnmc-s_8rpFQrOOIx0w1KWu7mdX3htSqXRo6fsuDfAO-WJKpfhp7fXROAkRikUjlORquB1PMzs4cE-G3LcLMGtP3ETFf_Is1StHmDq3OMggPnf6wRbdlBZCEbMLziSov6d7pJaU66q103PMntBUGs--_faXPSvymTd9ihKgl4NhCqRkyb-pdawENXBhCmxXCKGejzLDXYs3oLGF7YvyPCeYUqdVyn-IJeV9WhbIbK8JbXw1bCdTVr03fHnQ7JMaquzYls1NUQbMKGDS4LLhRL2QtJvvWqWdl8o8fN-eYmDtz8KHqoHGR76D7rWRz3k_WVixTIo1l9OiuN75mTU220EPTwArZCO54aGYeEQ32JQsB5QjTOjiHb5bQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674b6d6aefecb6-05634862','','','2024-11-30 19:56:19','2024-11-30 19:56:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41687',0,'cd-form-entry','',0),(41688,0,'2024-11-30 20:51:26','0000-00-00 00:00:00','{\"firstname\":\"Lenka\",\"lastname\":\"Bennarova\",\"email\":\"vittoria.benn@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5YwQia9ah_cb51adnWSC45yDBJ3iUprJFGnRJ7Aag5SscVHQCTx4n8aZHMIm8am2-nFPzgtgmpCf4xlnHCU1MsOrVIJSFUQiI9MmL9g07YCKBHYDqgjhsNcMwnHGP3B1-75jEwg1zPSNz2WQUNP_eaXViWOS5ZiMJWY-1jQFjkNMVcDBfgNO2TQCZgyuSxF0lUsGJ-LBc3nsnQPQ51pJGpyCX6wIkL7tHl9UOP4VQAfeug-75w7iDquNBuutjJX-n_vls1NaFN0Bs2yIjiien6rUamo5hfIjcUXtlQO47CmB4oRh-mFW4HW9vAKrkvmV_7cfrs9pqEKP-164RpNKWk2aBnT6ekXwutAeD3ROEaHhmwib9v7Cu9ZMS142gkqN8lPvsrxbkgbgOrCG-2WtC1DKzpIMu1Nc6s2KspAjz3V9sjYNqMJVkbTWV8C2O_3B_E6K_miNhqDEYdd93hKJpSNg5loeZPKfbgh5STAneP_cVBdWUHH9egQAi1a1s5bij7bjGy5CyVBuCJMvHRzyAp3i9ZTN8xz2UKKY85GsyTk_bmap_oEeahEY9zYQsf352R1cB2vQfMu4mIyXurTgPI_sPJ-GbuLuiSVr6si23u9W_3eYu8L-0whXcr272JF3Pz16lysAF_vTwQ-eMqya9jd4it7mepwlM-yxa5Q0CnP2fTFALfsoKI8Rorw5czitUr4tLzNfMOUjhNOoyiBpsdzKJU3xxmjQR4dleE0g7YvBNn91ylauuFScKFRz_g2CQIe6DXzDnh0NdXCwfRY86lyF_hEWI1hT5rgvxwX7Yjq2bbzeABqFXSiZeEL3ideyH6MlE57s6zJZ3YlEf3d6RIPZ7l2_krD3muQBItL6C1TCDqg32OKQ4qExcQW1cKoTaS7g-PPCu3xFlKi2tR8JWNSc91na2O5Am_dDGB3fhwq7HVwSEEOSLI9FvsRmcpp6IDVZwyQ7TXSfMpTpHrMGkZjWEkTKUC7H_Z3e9X_ymwt3h-d8izhN2fUcyqjba_G_EWK8o5T8pztHMHKVf3ioUDwFN76YX_U0mw3gMLICLunJ6F_Vptdc5ifPclUDfvcqrP2NPe7iAn2IbgjGs-eLE-st_g1gFaHmUaLuMXTWfyqD_3PXoJDxFN6lcs6pAkYv0Uy1bkfAjX4aUdo7ys-4LAJsh-jYhf95YgJ_9VOu_GQ2KDi2XDwg8gvO10xVVqzQnUKRLehOji4HAAWTG6r8TPpaSw17vUrbPWeVdmZd2slNtNsdzubaHHhwX90zAAzzZz2DfnC11YOElC6WA34GbHiwvh3hzJYC88NgKFLcDy2pnSJb_GWcChk-x4Xe_xgMGJXtwlR-E0D5wDVjbxK-TOz-Bk49LBT6OvViJIxW8L-2NPVfF0thr5FanTKHNDxTANElfpCect10oKX6hC-n53xHmONr8JNSuZTz5VY2Uc4qlVG8xRRvEgEH1HVfIJyTEMzMS12_WO9xNaQbJSa11lkIpyOojEpIKqc50K_dmjyOHxdBo49ppLkoxX9rsc9DYGggqJ3XeaCwgfxyr99OAboU2-YFnc4xHhuPSe71buW3SRvl--5NvmsnEqxEf6hBQ4D7zPUdOWWPg_wIPBOHJfa6-2NZbAHHhP5b3P0CN6P8psrDPxT3COno3yFU5RsEKAMyrKBi1yoyEUveQLtQIVyn_A6jQ1FZquz4MS729RosYlT7DidtkLIdYWo6ql2JlHCW5OKnvmAZC94j76upv3Q7AUFF_GX-IPuoLhg8mNU-dyxh1IRPLbSoFysRm59wcvdhYo3BQxmlBw5L7AH27lUiCXA-bbHhpusZA7EGnsYT76KLyxmHYlMP5xAiDA_OCwreuIrmZDfiQ8hIoSYw4OXrQDgeRe8S255HB84pkJvVTr3OeRFDHkquYnLNP-45WbwCEmC8T5lBefq8bGthn89WbjoA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-674b7ace5fac66-22206610','','','2024-11-30 20:51:26','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41688',0,'cd-form-entry','',0),(41689,0,'2024-11-30 22:00:41','2024-11-30 22:00:41','{\"firstname\":\"Lenka\",\"lastname\":\"Bennarova\",\"email\":\"vittoria.benn@gmail.com\",\"contactnumber\":\"07710469080\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA7Szai2hM-dZ-XEqlOloolv-xJASNgYDtuGTkhwjj4Zxg-XjLy1veoA-5DAXCirk94rVhXGdVnqtXmZyE61P1u9XIkwIK0Xsvcv8vlgiU53fYd_tdqY4HlqFv9uUmwCP9Knr0K9JFreRE_fmIIhpnxKZKGIVe9gwLVccpFbwcteiSGgFYGal158oIH6ZySYSEbDLEKGrLmA4jpneFGwsSDKb44WBqsjhhWzdRxaiZTC_PKeWvbeVKVk9qBMD8ZUE3NdtKqw_cU99VfhMbx9T1t5u1rmYpKfM6ZSuJamMjCQ85fw3H3z-BwSXqyqwZP-bFrK-zi-RUaZVGWH3d14y1fCSKx4AWOaVwmaPFksylpul5GuoiEaioOGJPZaeT15czMwk0Gc2ZVYCtZm6svIRknZQA92tPLK0cqZ1IY74kNIfXYy7ME4MMxUUc-CzQI_0XXhuwAGpKZfDLjy-53yh8c7A2_b-Z1LA-pQGiK2omN5hCerpwh1tfYSYIQ_XVKnJMEROCYcIMDqfoYhsrXu8SCJ2ObZ7-BJe-LatQ5moDeFKq6PPxowIso7u_l-nzZ-KraOrY6vTbzVThCP2FigYWl5Tup7znBYThgRQJSDs4zaQxxJ1XZTyAWzrz6fiEw3PGxK9gbbQg7khZfuZxZSXqRjyprngV8cPGSmRdJzsNE7oMR9oZUxuoouPRkTLw4v-WIEvLwMorDG3MsJRD556E2Mn8JZD2gn3nT89Isz7aryk4D-pnSQg2z5hQQ3WIglQwEYOZjqyiVD9MiDPeCLDOiKWwPlCnJaDZy9PkAjjrEfubnGzbMVuDronvSwhCMEdFpLHXG3_8YQPyeMmNiAa7pCa2t9tXEZhrwne9IG75IMf2dO6qsFRS-U3a2OQzNlosFzR1Ft7QajnmTDigbmX3l-5jshOiwLAnhB7P38Hc29XsaSQ_8rtkf8QWhyx7f1p6YTtrfOX-cC_HYkv3McnuPsxEUcn-xAL7SW0ed-XtjempiEPfdz1aT6v4Er2K1p07LbkkvvXU9ToH3vvGN9XnY0Xml8M1KNm0wPH0cZVmFi68gh79Z9Vmz01RsU6NHCrC2ipVv-xv9Rl5ZdGqiihzpmIMrX_AqgRJdX-2N-EzYWIopslBMnhJptHgqdffLnW9LKs_a-vZB00fSsBum5DJaS5cbBGkgdSnVX2zTvESUE_038M8dEssIakgbUUOqsKnduoUIaVoOihc2YWQAKVc2kDNLeTLYQSCw9obueH0h1gJ-sqqKIr6Fj_FhJnMechUwy-sm8ksJ06v0ImJWl_1g0P0tPihZWYdI1p_2SZib5Y92QC0z3hUQnqmm-vK_ctZNcc4F91zt3-_DuutGXL2ZI-LrJ6Oj11uqXF3s9JxRl_QQZlvGgpx2_towu5KmeQa10xb__8k3e74pYEtBGz_e-iuHD7N7t0nFILyZvYk8GrbOoXVS7pfuXu8YiZ_z5eEk_Gkv7X0ZQa4tbGMfDaJROgll_jyFP7LSpf2wSYthDMv_sr_IFlIry6SUMBpcYSYMsUWDdJCxTiYiiaBC25cU90CuDtQdnwtDA-hcLDAvxy7KcUhXVEAJecM9UGEh3Bf4UEQ5XjNQqQumfd7wN0twSfgXS4Qxkxm8vA6SrJFU_C6IATBYL5HMs2sjH2iamiQNWWS3lUmygnhiDLbiRaLMzHE3RWvu3s14j6MIWaJ7aLJlFVf6QNeYIW5LXw_YwD3R2X1HyQn_WC0YFvyymGd1VLHxz4y-mKEs2laDouAxHrhJQTrbgXhosYhGAAM34krfevukrXJybt1b_wU11Q-GQCRWn_m7Gog2tIf3uHpzAnGf8WM9W80tuB66UO9-KErdHCDDLtjlbRz5eRkhWr2MphJwQaEO7nNaGoBH6ssV08mrJmjVWrcROaF13iI6dKX9xRpSZFU8g_W8jeCGGzaae72m_mA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674b8af6cdca81-96860817','','','2024-11-30 22:00:41','2024-11-30 22:00:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41689',0,'cd-form-entry','',0),(41690,0,'2024-12-01 04:10:03','2024-12-01 04:10:03','{\"firstname\":\"Madhuri singh\",\"lastname\":\"Singh\",\"email\":\"madhurisingh172005@gmail.com\",\"contactnumber\":\"7906838575\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA76Cvppcbw-zsOLd-5GSKw_zUk4oAFfN6Mlx2IXH7sGCd9mvqfZHfCtkLPFkvxhWYlxq9tJVnIG8A0rq2_IsCnS3Rn86lrvH802KeggM2ZaJS1ZmTzOjB5FeiwIwmfvGwQcOSOUegbR3B15GU37u1_bNeOejh2aYp4ErKG3KUFBK_RVhV8jNvEgUFnYK9iaNers6ylqTW6zewc5Z-F5uLbn96yES48ufHm6D5L2gQA9eJ9jcBTTtEGPDWHG-twCGHCBr1pzKpsJ7jLVZqp8U5YfGvLu1o6Kom7Te5KlYms2dN50thrdAipmMZlVpWI20tE693OrqCHAlXWkKrFY6n6jCfXjyPCJitD4mxbLNQEF8xnvOICHaR03yoX2id2f-8kM-OYI0kxv1iL9B3alI2DoFQbUscXl7Tj9LrSZ1xWoRXeAi90a5iUhm_9vZpp8E7bxxZOHGC2ClwDdqGpQwN4T8734BNnBpzAX3N8OkRuKGtm12ose0-lzF1rouVbx34QW15aKs7QgRn4HFfL6Fykyj4gsZKv9nVhtO0AGR_BL5M_jSv8RzVyx18VxLM6SaXjSleBWG2jg3Ed2oP1HCPLJkJ98GKiTehFbJhYVUKWjmzVq4Pqh2x_hdb-0gzDEipA2AacCCJar3uLb5XR8_2LtWOUylH5Wra_xl0BTv94Xzj5mdFn1ik0STsxdPt03EnmrPzcG7uhROoK6vJ3g_w5t-SkFGWDllHr89nEX6x5scmT0oYMilvK5XvE0n8jJxSbYZhjXiUCNob_h6hd-RytrYrMJB1wm5aFawOTQV2mW-W3XdrpRtJxgcp1Wa3dV9y3SUuIDXnecBnfJMyImDxfHe3J5eImXbcQTIEqB3PP3fnbLVR647IRaufmhjSV4yo-CF0z5osz6pqc-H73Fr3BqhPYa4V2LWrq6NAvWp4n_e1r9HeiceP6DceGPcNZN7sKTuiqkV3fg5rg68yD-pFLk91EPfKxGoJRtaJlS8F8Zoo4UGSij-nyB1BP9L57IL1crZHOfgPhXPfeAqysJxd4Em4gENYaEfGn9Z3-qhGsPMsO48-CIhSk8xlUrtAJd-Mrxsf2xctjOEY06S1W3qs59jb6xrUrazOs511gMtFxgVzWBiOr8OHhqpLzuh-1flhmiaK9ROnah_ji2-BbZRkFkV3FcGbo4EAr1PVHy4i6uQ2uXgsJg3d5JcQQbFWqXBLA91aOI_Zt4Pu4rzuR5Y26Osoh91X8NdCKDMY5Nro5mIamg9PV-t1LmS7bd4tFgnEtmnlqScdFndwBKd_sSVmqKOyCnHZE-Mm7bZpCgAtuD8aWHRk803aqRUJXDrAR7eaJUupATVbX53RfwXqQ8TE2kxw1NJbJzKoDzn3Lglho8jIxdZk4oOeQ97Z3Lt8pz_2EZdKSAMMve6WTTco0xHpaw3VK0UuucahhMpYeixrGU33HnscVWiD3Eslln5glUQeAg0d6rRcZ5E1-1NrrsEGOsKNsI2H3bfVO52oRThnIy4ntY_JRQ4uXI9U-nyBM7ghAz28cA6yUeupKD1i5aVxLVtcqW_9jXS0HdzKxkkqLQmY_-afFAggIW6fr_bvzQvZ8BKQpAppWrWaHSgnwcQm3_IT-coRHzIGOMIHQ8s0mjbkOT_E78fFvd4B__JUvJ2Z3Xd6x_HUxYQhnu4Ss5T9vfe7XhXJ6V3z05pQ6VTK0f6a7G7-N5U0sDZCxL5EbQAaOtl28Z-29s5Q3LqaVx4-AHDoE1iwqCe4Xx1Xdqy1hOvTlritwIuob8wOy2y1gfCIv4LQldc4mgVIayqxjHl8DGyUf_tAd6BvKxePAY7TzDjSz23gFnM71oRvCu0Dfp-iVCKKe6vFcpPFFIcanS6GQ7bPX4fBbPzDaCSi9VHmbtcqRxoABKhfyTybfy4RD60oSIJQ9B814Wn9h8cJDPTyD8fDjMMjJ0v2Dq8NBI-4KcvOEbQgCawvple7tqxAFY2bz7jsjt4twS_PdSQxOYNH7crlEM40HghsJ8vKvUoLEiASoz6m7UUmrED1_K4WN75K9RbG-xHWevavOnYYehqrF0lI3zxA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674be18b356154-33700697','','','2024-12-01 04:10:03','2024-12-01 04:10:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41690',0,'cd-form-entry','',0),(41691,0,'2024-12-01 11:02:50','2024-12-01 11:02:50','{\"firstname\":\"Mark\",\"lastname\":\"Leonardo\",\"email\":\"markjasonleonardo@gmail.com\",\"contactnumber\":\"07745339273\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sKlrqlsaDhmUwiHLvMOG9u4&amp;gclid=CjwKCAiAjKu6BhAMEiwAx4UsAmac6boFdGW_damDJw0JdgGbYRpa1w65KP78dMEzdYhDjiCLpvHGLxoCnjIQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5DEBq1XI2IeH24S7ao9sd30ghRvDiHQYNGlu28JCZj5C0gGrnsqd35kAArbc_ccYPcvYmqxoIY0BA0_J9Hpqzp7apAqlYrD4xcZc0arWp5PEyNAtqSk9kE-2hB8Z48yrj1Tu5x_77fqmfzqi75Arf5ndcODQgMS1RhcAO8QH2dQLocODevnVsczFyaphI-2Hbzvpzsytb7PUxjEcjcYOpCVb8minrHyW1PoLlFcvH77z5vSODOWaN-f1fIUbuoe1HU3LWBeptCPg-cQXFO_9YQLzMdLmv8XPlwh0MeRTFSytF9OcYHWSRy_XLIF2avHRsrjsYE6VljRwzAYd5PG5Sk93wwYvhN8DFdMcaHFFnF0kDbkWko2ZSJGjOTi1KRILeZgyR_huDidZ99I_vho_xR2zU7AjkGIfrRs1HEDTib8-4BTttTggoD1OzqHPTmtvSL0Vl7wtL70txCzqQwLavr-Hy93T84IntBDLTwtvb4UZMXxVQEqVmCFhRINtmZ4tTxHgPKpcO9b6kGLjLJorIrbVrkm7Bfnh4D3oem7VCBa_q5mUpm2cjW7wJHFTVUSTQ6IUWJtdMood-u4CunTWfwY-0MFMDj9RcRzsBhR00IkU83W95PGxWPsCvMoLPeLfPN4vYmwsqbvMlN0b6cpZVi2IT1ysnE1Bf2bi_IcsyS1JSTn4ER8NtKg8y4WWkfJbGJafUhhR9koK1ClNuvQDxTef3A0HdYEqWkElM2KHdME256-DQ1cu_nWrwheDhPbrTjE4dgwUki5IlgqQ-_drS78pz-x6jNP06jb0AFQWgTLw2-eEhi1focD_XVfSDvSFHHYRIkmzIAq_Vt7qGVSgD7kmrTCxXctrHNsrREDtGBRNGVxLKkou6ArkMV245wIGa51dg14OJAUutvc1HuDy76YSjU7E13JGsEn7kUikmNwbNI3owqaVeLF3ZsTHR6q5WTlf0w0k6cKuSMCkUy7lVtI5iblWpPDdJu6erH4AstB2wA4VjUa-Wdl6yc36fY9ByEZrFkpB3cI_l2gRQtgHhdmGYr6qIqhSbOwxLabMQScqwK0ZVcGt7kCyyd0WCV_-M5G-v1_Z81ByowTc9-BJSTE7A6bZ_g-4YDu7LBBRlVg_C3MbxfO-hpqLF9jzNGXwrlt0KOUxJ0XYNDIH-nmrix4Jz8TnGSVjQk1UgB4W6yo3czxG1tH0RxcnIJVaBuhhZVL71wL3f2PSK3aTPzwGGFNXo1gsrdXpbYZXpuxTGVtJvECfEHRMSIrx3M2e7dTWg0_bp6Nw4To2-YWu8rem1ugyQVHzRQL8gG3z01N1G-gAqQdCRr_EYBas3zgVPQcjaSwCB8oFaw7eNuGV8ea_v6GvP74U4PrIN7YOrIpBRywXniyqjh8m2gExgj0qYSiu7qwaRRSsn4VPcIvv0v98S9jlgOzowFI5Ew3t6-djbDb4gNSWEWmKDiOBnXwe7Yrph_ibGesafS7bYkPUmZwFHTSVgjl_1ss5bvedrYMkMABXXorTYz1io4WjouYe-pJ7cC80CsBpETeuK2z2HbcXv1U5KhSPRiRD8B6v6KkmGadA2WsJ9xRwHpaRo_Wf3dg64mRY5KbymaguHNuVhka_fSnFrIKDR9XIjWqQ3BdMCdZ5lmeXqhZ5YSrLY9-xHVS2hWQb63xCQhcKFZHBK8K2i5pX6vCKtajtMv6t4t_GEohq1GJLtNMKM45kDDyVNgKqgTJOJLM7-DM0XcKWC5TDqBPjZbfFX-pFI4k860pn4YURhvDHbgt046_QJk6Mhhu-RIYfPFjq1TD59nC4iX8ltCJRP5Q1pRJec-3GI7Z-8IqkaNbXRRl2fkRbPp9VIRgjGJpVLDK-k0h4JbM6fFxaWUCDXzoG_QlyDwkT1nC6F2wFfrHZHcx3DCCT2rg4RXFds95vZ4AQgz6-Wlo9Je9ewMtgMB-vVeHelu2TuFP-76X_jWwzmtKZvDOI1AsBuRqKfdTDxfc6PuBOhZC-Mg5-TRV5CFGQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674c42537f9115-17245689','','','2024-12-01 11:02:50','2024-12-01 11:02:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41691',0,'cd-form-entry','',0),(41692,0,'2024-12-01 18:18:48','2024-12-01 18:18:48','{\"firstname\":\"Steffan\",\"lastname\":\"Lewis\",\"email\":\"steffan1lewis@gmail.com\",\"contactnumber\":\"07383441444\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6eR3UMk_7hE13QC4wB_9k7DB_6tG3Y7FioygZ0Fm3Z73n4sFej-U6G-XMZkKK2YXIQfQGjTcoWnV8EYNuS3O46Sk_wZ4ZKgxzAavHaFzo0R31SkB6l9un2p3ufrmwIE2ADu-BuNSZwxpNNBUnrnEv5kogDFtnLCihDYfxknr9LYLLmD471a6WA742rZWjxpGren-Ydsi0DtXHUQ98pCoL3ceVbwVDAwb8mMXrTVstx64S8wRVdQ0OkW0LZAvmy7dWRvlC1uONeJtF_OWmABijZLrh7ptuznH0CpGMsxUcuclaFDO3C9dh5TWkXlbT5CYc5HklAbBNSL7xO23QBcNrvQFntm2pXfU4NWt8p8jt-bKTOvkxZuHgvuAU7kZQD3PpEOObcD1Mzwsujd6qzw7GKA72_XFF3qtSFvZIruS_rSbwuV98GuP1tKhTgj8meKuzKvDNz4Z9tYPv4BtsMyBcK_df-F9csF-IT7iLAbfV73rupKIjppU-n4oB7yQKQqHp_tSJ12oKwpnvuF91iNbx9l7h8EKmGWFFOTs6_dBoCPnoCWwSNR8EkXe8bmyaMMoUvXRdcCJt0V38T7qbocfauhRwLWTlSvlNGCmpDoh6t1aleYNcjhMk6uLVXy7B-QTikSKDoTE_g-xLzAp36FIh1hUHU9G5E1-HniYJ3XSYqwVfyY_Yjp9QYaZdQZjYMWoRMfatpfkU4pKHU3J2jaT2AmvYMBDatQgeipTyWWrHExyZX9p7mmZoYLoe3mJLdpgSAIbbCSCaGxBwOzwxvPag_m1PAPi6yCV_lxO3SENGztJk_13CngG3ZUz9rJKkB7dRuALPM3NmtbuF1IC8Jol0ZcuoZlgcNPSneqbfk51CvkfPj_YggsSXJVlcv79tWTJtym6jNquA1CYWn-c6bDWozDnZnl7lC0WZnjWYZk8MLDN7eCv21DgZb4EMNHXK1CzPmSA2SYnC8rgnuYVmUpKwIHfCTxZwdaCVAYU8rpz8xf2y0llvfNIxu3B9Mfvb2t1sr__VdIvor-ljT68Gc6BU70AZSOH6I-6zOIG7StdyKfyzaC-nVEqYQSMlFHmcMx7izp54zqdbCB6sQepGjCS3s9maUdYjgQjKp0QoWzlHwiWNh6dFubh19ODO4GjuG_DjtTxOD92J1aR78J6mtKf9TRlbvARpzVy2jWThMzzffa7GN06LsY3J3hyZA6U_qNnucl7TGgSU1VD3qSclGp3lWhxvKDgpM3sNkkN2jVNL_FhiCj_w1HTpfe0-irQmBVtrk4AvHHCcIA670DPfzBFOY-ZfkqPUnvnVC2jJJcVr5rpxHszmRWWc2ciCo0ykiSiiEnLH3DNEYMMCn1yVvmbei7N75zAhrXOaDy2Rw-oFk8Cga9F7T-dtq0TmKWYNvj5x4zkeLT2grNNHn0oqZSExtEf3T1xYzlnJNcJ8WwwaYzyYl9ezYblk2z4yN7XL6bnFOCWDeZDhaD3yWxtTo8Pa7-VJkBdZt5mTTEPqp7AaFPhjkdf4nh86SK_Apzf1zpQjWq1zGrMnVQ94-OzSI1T43--HxNCZ2IEB0tgDii4n-5V22hiARraPybF3qRldCA4cAShGqH_sqzJkqu0mH7tYrjW7r8eUB5nM2vuvrt6eorfWCOFU_JSnMbBaK3c8fLhNyuJMspdSDLpKj6z7mtCX0c7pgDkOQvwbnAo0c2fg35FvSDm4Mf-L-7vgwFeOzdX02EL2r0RjorYg-4jAmjKoxkThAexLfd-Ozx1HTxY-MZrcnvETrsTZv63Hs3djB9n3IxjNA45qvBPXEVGnotnMPtcO1tJ8m2lkk8aKGr0qa1ecriJWmgAsGDtaIhHHNY3CzjNzA6SEUkGvFxHeTh5YSOxrqfD9JFBspndux5xDJTXZTrNlxUzcLLKTysl_7rsN-e16fhAp7zqhgaXOAtt2c8KwP7YnA5Od2PbKFH-GuakdpS043NLO6h4_V5Jo5TFONUx2DjebYX-7itWw7lOr5XD50mTfBjt1dpXrU7BShxz2r5As\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674ca8646fd8f3-74379093','','','2024-12-01 18:18:48','2024-12-01 18:18:48','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41692',0,'cd-form-entry','',0),(41693,0,'2024-12-01 18:20:18','2024-12-01 18:20:18','{\"email\":\"steffan1lewis@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"sw12 0ht\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4bUPH6GfaIj32glOV187QrzzxgRqJt5P12-UpdcOEx1Wrz85Rs-7tWMxKYY8uOxn6Qzv6xNGu8yxT__N3vJh1az8xNZFKx6jHTPGmVJF8ZW0AuGYUKBC0aRhfL-Oo-VDPceOHfXp1POXDOiLTvrg7pcTJfDns9FglkiHEuPxlDbmstIuo13T03kEtzNsH7l5g__cDsQQr9vDqhQbo9K22aY4yVTFeuN5AHmC6tvo6itsrTz_FycyLOdB5N-UZ-jZkQ_0EdMksak3ICCP8Wob2sNsehjoNUoXi_GyiJ27dhTu45H_1EygnssORBa8mBbSNdnkozugzmWxIWkbzxjE8R1mU2PEXDT6H7wO64SE0T4OblE0gixT6CKcddMrKHtSUqh_ERbRgdIMYY-lYJOHh6Ucta56RaTCqJbtaR5kz292UjgQkb2EGwX3BVlFVLBa_wiwCt8MGiGG0KLDaaBi35uU_d4_iwdaQwGPtKH9bp7uWLXeH3pgVr8Qh6n2S11WwHrr59z78xOy1SFVYIzjzW-vcsqB0_frZbvnT8fy2jgzZQslfmIyvQ8qFih_ER-XwkBMbL7G1xFry12ds3WYB9qgHzC0ILa2QYZYGcwmejuXxdYDehSEzoebY3_DQMlhzJxuf8Q2XZ54Iq5GB8aHnqmxVPp_m5tiASLUVjkzk4dYlBaruFb-uvRpNi5KQn8pUwCAI1pDuDaVnSUEGR26ndr3flt5pKiyMDYEx7MUPMtzxjUFoab_KaoighVdaq_b0QwkhsuKEWainkR3D1zgtDT9tm8p8wqhK3VkMq458H42nyGSdpk4ygrJYnAokmwOfOc_d3KrOPM0R2YA5zpAPBjT7D0C00U3QUW41Swd6lTyd0fYehBNClUkhRmRDx3f_jJ-TH9xBQ1dLDDb2jgimbPJE-8lk9XEAKfW3J5LhTt6B5HjS2qLt_fRE41cI7layHN5qKmhfkpLX6xy_jCO7TUS0ixAJF7SNxAAN-iozckj2yEzZXM3YYpcUd83No7KWnirVJWVxgTk5imjsXv9Pijq9fHf2U8OYNdKKZQkbj5hQvjKGDTDJcpST1VBUfHL1yVWwgfUp53vXNKydAymx-Rx_wU1HDNPgrqn6xqCxnQlY0NHOPIvxMo4iKMjlgWA6sGxRQ_6Vptanp1HDP8UGaor_ze6n5cqyjFiQ7IHpsg9pKz8qG-i5EJghaMnqiM0zJMi0pi9db7ji2mLSUaJWD1a-Y-9zPH_ylDuBBTCWAZ2BuKG544qZ1cfnMs-R0lcN92JBMODnxD2h45KPYWnLCmYxpzsISwUZmNtsUlTTPJuyL_kL-6pw1bfLwBxMjS6UTg8rh2J7q6N2HC11TIOnG65TMjm6FTbLqCjF5FySeIbjZSKQc54ntBEtZPCarWAAJ4uLqxTv9ZDaM5teq5oNcczIt4NRn0gffGVaeSz5-gLNYlCu5Tn3KzHAJm1i-sFqdCudguPVAU3QEg8y_MiWz3Z76fGnBpi-bmU1ULs7iwSRwqoBsBh11ZqwbxyuQhThhPaSNfwLs39rw3yDIAnAt3Sq7mCAyq9MxC5Aa1bFw188YGE5pFDynTS_iw1NNpLzCtC_hm4l7Ossi3bhmMwEYtGzDX5l8bgrwy4KbxzJAcl3MCRf7JxwaOuw4Y3OEVYPPwyXDtL1AfQN5cR4KORA-vdddk18JNQy0ID5wbAyFt16I2QKGOe7zTLlVql6ddk2ApbHyzvbhCbGU5MlSL4pqlcHs83R_KwFU5OdZ1v5ynPH2Z6YYriBvEWo98bb4UX1O1PbI6kB8-Howm5BpHe4Bgkk25XIj--sAtyQHxGMiKmy4gyax7bUQwdt1vu7xKWkp46N73tUqaMv4xA4A_zOY156SRCTYJoNh3wX6LP3dmex5AmshhakEe8jY5XpAjhoaI2d_VhRb2xPQTPGaL8w93Dw3YaQTFhMKln582VjCPPwwr1sdPv9qmge4-DnTo8MTQ3wvA6mF_bfroN4P59xGL7ansZ9EfXysoxBP7At9D5GY3X8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"15\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674ca8b6320007-10844250','','','2024-12-01 18:20:18','2024-12-01 18:20:18','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41693',0,'cd-form-entry','',0),(41694,0,'2024-12-01 20:26:38','2024-12-01 20:26:38','{\"firstname\":\"Laura\",\"lastname\":\"Newill\",\"email\":\"pilateswithlaura.info@gmail.com\",\"contactnumber\":\"07766255890\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6b3y-cbTHuobALvcQDBiMx6DcoeHEd3W_iGVNfP-8JrV_kK63OMrCPpxhpBbuJM8mMZMqZvW4qIMknhpKy4b441bcOLuHZsdX860_eQ61maAbHUXbebZfKgEogUojlsQsZZ1EYyngrjVmTaHI2tBFnfrVI266JyJazi_F0hlI4ijvG8TRQAUawLYM9547p5Wwhw17zjY3lLtFugaZPllUS1o_kx7hZOAaXp8X01l3DxxQ2BKDJqtppPUU01HKP67OMCTXNQj-qp6aNTxxLMJEm2y_EYO0vdCeW4XrkUfAHXD7OQQ1_5lDaR3lbtVTEqDJM-nAlUtar9WWQA2Cx-lQNTKO8jBsLNvKAzceEhIOveAb45DBQ-a8Rnz-Hsa9o8NU69RFmF-OK2MQtCK_hP3ilEcL4loiZbUZ6wgVybF6E7jhlgKAi3R_-9x6XxGq6sC1uKAnnyFGVw2eyu5rvzfBPqnvBsUg31BzV0UC-vVV4UC9YiQFaso2ZoPUjbwEx3vR7y5Xh1EyD9p3A2sRr8mC-TabkSXA-bxyjMN50xtwGies3aGCb1zyLplaJKCwrU-GPUbP2M_Ur0Yse5ltdvZfrDPGXRpVp0ZtUd2dxaQ0YSP5Tkyp-2DTkyqJk4cwcpSE_YXtyXBvWz6BaWeIo8K-aOSWvj1PtIF3xZZxUSETVxy9Z2fW_9BNZ-JndtrZew2ydlkukPslOXp09MrLF15XpuJ4zqQi6EXg66t2nUktrOFSw4hOw5J21xZXngsj9yaYD4rp5ReSG2t4rsfojfr7OxH34R76dxmWrbrR_ZYE3Z8i5bPz8s07VCMaSXUM0uA_qqqjP6gWb8WPxJy13laFezHnQamhR5iNiNhHPJSEHUN_ZQRhLiupmANsQTUyp-iMr2zRzdEQOMVO9O4zDPVQTgXl08Z4nC8cnG7wW_vthToOhQeILvht1wzAnu94_-46Ivkq00Zg6DHPJkPxWwVHWQejmWFU7h000Qpr-GvchgFl9mlRCNSNorzpiA8GDaSCsKNtnlUwaE2yMzCv_lyGsLD3V77iiZbutC2M4KNZyvy-jSseixvJtUju6RbRIaVqgPsDHuQnTuKznYCy3QX1rWICQ2fSU9Mhh_iS-SzRq0833_9EzdnBM3i7Gu4XjEYp6brX5LENlMTDwp83U7ffPzBayI6mrMRLEEhF-EkxS4nRMaPbGoHQ5u0wB1bO9M1AEwEnatTG3s4InVI74aPvlzWJaTg18jM0OfwOaaIPSzHjtqyR-TLHCVN6CxyVL_KYEtdYEIIYSs82Ld4YYd6NlJWqTWa0VbOorFmBL4d7pbPeqPxj-LmfrdzEiuIEQa2FPRYVWBR5p2--h1Ei464ZtRGxS4VR_mvIrZhwg2JPq1s5nrPBOQEcmh0VDqxJMdKKKYEdJulEvRfJwZ6bSdeyIA5WJN9a2IknG0UulJB4p6SNbDGPUKVMz5MXGAoCqR47vO0_GgGsoUo1Iu7poQStam6EdQGOmxWfhTYAx8U6yyqxJD3-FnjgbX0HGt_RoTjBRYuHZky3ncCp045w5ey5f8hspz9fcI4-kdPLzOTim3UK6sFlBhzYU0ifQKkaqXqs-cLY4V5ELd25nDkDRTuGj51eSv2ayTuB36T39dOEdb63_oDM7CQyOU7shU-TiAcOxK2LHpg0yxKBJwSi-RCARhQuqOHgIRAdhkZfuln5ZtvWbvnUWXiCgfpwPzmvcRvSdHWNbrJ4gnMXkCgwSqKTNWGH6jU948WG_ZJLz0R4cN4fKqBSnnZN2O73X4uybEzhI1oIP6uM2jlTgCyNDz7uAKf8HkOIWrkXRnAtRoyQhECHdyBK_G9ebEHMPYO34tH-D7n8i8RKdgvFkLEPCXHEawKbOa30nB4XKKJ9ymDrD_jb6M-4C-HuF8fCUplQEIEHVuh8RpCSBk7SO8P1D_fdZXjcxvyNuF8kbG-ivFn-AqwrwSIi4ZNOVNOVqEyQyBuB_Dz0x\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674cc672a97745-17446208','','','2024-12-01 20:26:38','2024-12-01 20:26:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41694',0,'cd-form-entry','',0),(41695,0,'2024-12-02 00:24:59','2024-12-02 00:24:59','{\"firstname\":\"Jerry\",\"lastname\":\"Vangilder\",\"email\":\"jerry@adaptstrengthandconditioning.com\",\"contactnumber\":\"8106566798\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6JIKi3RDUBm9RVJXEVDl77fv6bC8ZBTx4BOCwTeSzWGpUvRE9edkw6Q9vytROeu_UtX5eae3sSr3vM0jTZaEY_WR_qyzaDoCHlkrujepAc4LiAO57V9l3uh6wRa3SPl_3ZNWXRXK9dzFRWC3rzsLaSa4Otqk2T7452Hfb6rzGPW0Y10OmTOIGESuxfl9nGjZu7n3x73YFvV6BkpYkNmoEiQ9XJyqW5mmHaRcElA8F6W5ykgWbjF560mtl5_O_3loanaX96P5IvapYElNhOA_UD4NDyYXo5U5WtqxePHaVXYEFI4cMHlXYI__pOpwOXeWY_QvXGhAI6YS-3jDdhzN0xVnmwRZZW10C4tm5wSlNUAoK07Ru3TsRjk-JmsMM0tjhGNy14fGok1_Lpq26erKjJBXmI5CC35N0rq3y2WZ3hW3Ua7w4xRL6r4JTpWWlhI6ZswpnMyXHSyQOjlsDH7K74P62WN6wdOugi2zdohcOJI6YuEzlK7QoI_uG0CEr4Dtoqto7a08mgf9X381CUceD9JY_DhXuPxB7iKhClZn4Zykgy2iWyMBAs5pXhR-Bj4vVG5nVa8p-h1m4o2l4EDYb4n-AGNe1AE5rzt7M8ERZETEFYnfDXFSSCc01t_a78tdmzu1Mz_HZOPaXIk1-dSx1I3LxUkyKqimAz-yqEDO7F76Om4FWSEA_9CkSk-tFDnIdq8PB75Lk1L8bSubCFQq6DEXdB5MM0zKIshFMclIS5J_p2CP5LscEGzfYIv7yOU167KXyha8OrpNE9EFRuDKSuHGs8XFV4eep1F1ZtAx989PI6zDjKkzSuYP1wvFJuZcZleleoJljss9a9p7fYhgatpbf5zFzAED6LNbMJ033dzkwcvCwv94h11ts96oTArj176IYXQoShduWZYsC_V4NidFr_NzWe3GQUA-lTbLxMNx67qrYnw-xUgEJ0rQ5V3x2viNr6TUMUWsKTlLfpahpVEx3rt35sQga2PAPFYVXV4UFHfwYTbA7zeC1qSRv8JUMT6gc01wgw90wYIF8YC4sQ8gvwMO6yz7rjavj1FsXwvD2cH527vTTnhSJEGmSFIa0e2A51kqbmDYcfKMBq6HXye-rmYkg4Fb3skT2wlh40I7xDoGvoTRZUA5xGJNl3o0y1EZAAWlOR0rvKZPxDeWlG-UpwDi-2db_DemBD1rldX8210bcZZdcd___Zw52GbIriTp_qxBpXYfAwUUw-fwfEIsl-7zIzejuwbPA13A9qbA1XXpxOKNn_zvrbJIqX_Cnb3G9bTaMUBd-aZ9fHZhzSmZvpm5WIMso9_YHuPxalwILfkbxji_g9ReR3EqV_tkZSRdg-mLEVBr9-28xKxACQK2tEKWo7CnTvqrglx5J0clgFBCk5vBmBUYew7qwyAtbcAxb9lGy9D8tM7_NFej1Xi1BUs-hat0fDZF4VbEExBhnO6yOPApssJnWfr_i1ooltf4tMaauQ2oTs907OClJHzUwjKoC3X6G-b-lVl2ZUQEeoA1HKmdLThLiNgUPVwMIwpvPsWzGfqbTflPqaxxXTjuC30-_RVxDWs11U48qHJlU4u1Tejzt55lJonY0qjRmj5eRE2Z3JZJxLhpm_HbtTPt0bUeyBWqBNh_zTQ8R_pazppPZ7P56iEkwQhP7TlnjQGru4y8FXSsToriz20nDsQceEkl_lw0_SWQV0bVQq2dJ2e_Ahp2C2jwyZPbqrTTltouIBy-ISmF8-M2gwdVw7L6StikNCtffgryAQa3htyV28kuvFBg2gyNQzy-W3uwMlRJIpHpTl7Or7HcQvIkjZQpIFkIWcOMktd04tCor-M6EkkGFj2_XjXR4JHMY-w6gUgBA7MZAS4vvq1L6BBV2CrkbJTrNdomC4jmzRFDj_AMnaJa4NeDpwnU-JsT-9SHZP7_kp3SD8rqMK8bu-q_Or4K5RL8zUJbBv8NSzW5oBXDz4Tq3MGOlEGSn8XbTcaCjKXZpnpu3obgUV8IstyXGr2oWRAk94U5MBRG9FuzvjVn2LgH8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674cfe3d5c4f75-99644323','','','2024-12-02 00:24:59','2024-12-02 00:24:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41695',0,'cd-form-entry','',0),(41696,0,'2024-12-02 00:26:42','2024-12-02 00:26:42','{\"email\":\"jerry@adaptstrengthandconditioning.com\",\"interestedbecause\":\"4\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"48167\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4QpJtXR9wW-QKyyM-vQSy3UyuLxaESUvuwn-rdv3KskF8oWrQjln00XebwAYykBFYlztQtGpe-RAoRF6eC0fNDj4Ha05gU5FxJt2FbkciGFHplYFNqlWYZB-PcruZWs_yWLgNDFecBQlBrp9EnwLLDpADOhl30Kic6glWz2lEFmM7U75AUvMOnhTr6IP6R4FljIGGfllOvMDe0rBV5T6wFvzGVaQ5Z3VFTUDjVtM5NSE4fq6xRqAQhEJvrAZquBaIASbfdDDYyK-kwPPm5aExNauw3DoMg-uSOS8P9KgyZJgunzxScJTRgUwu3sD1gpqtf9vQHDoHAZVQ4xH-T2aNnKxYYaoEe6ZX67JB37pFJJPrsO3mBASkEsVCozjY-a5W23dglB1gonnbHDsDUsJcDUrXFCYksUwtRXLBEYs1_xjrWvdTwEinj_TYRwMwKKUO-BC7rhsNQiGFS-X5xQY9WxL7INvU6_vIz7p_1BvIOVk2-Ly_U5iUJaRtiFmiaOHLeZ7k3px9CUDJbOs_ltWleJvLuhOmn1QhIcdWr0YDIMQdjsl-itq57od8OC8AIRG6DxTVs7pbXF8zXcskaR_HQt4rMsuBZZwjBX8kkCKEM8mYP93DD1A6Q85c0fo17j5G0PwNDZyKD6R0UKOviS_01BEgt4yI7ctYMVh_exjQ6EnTcEPxG4R2GqGrTlf2MeHCbIVhcpiZGmFDzobjPeyiHAkL97rTTUmD9f-W0NtD3x6rFiDA6u0kUCZ6Rp5_TITCkTOogaXCIH-hfQ27-n6bETrgX3u4Y5UVruEIWHyidEZ1m2puvN9Vge6TD_xnwQ7nnlmyYCgtWrTRId2QDd1dlPoSt0lG_mnNlAvHtfdKAcKxWKEMnuqZoDdizdsvCNNujqfK7tF_2ycMhMYMhq9m3zY3gMDIUO6lKLL-AvDyUQ_Vv8i3nkaQND_sHNCOEJcMayQDzV5EnvbzilH6f3oK7Yvq30GkELQhPXeT725xyvDKvRAT_9rOYtRuGISZ3eYnmkWhhpl5lzgMZCr0uoAO1-YpiSc3-Ne6RCZ2iSP2HS0ClGoKZwdjwqZBsJIE1i6Y8ngSy-llNEGR5txHBrYkkb4cL5JH799n6Y48C-Cp37XVTljcBGKB--Et2QaQZ90AZs-2vZvL0Xfzjjp4uUrDhkEy4mqamT1gba145IT72vMbONEDNlOE5BKRQnlPtP7mxV5Vs0hXCHH5IsC1PLuTMdkGKa0A5Dm-ERtfA7TdM171u9qbNHl0pkLrXo-_bNiNQxL_bToNaQZOa6AKGH07VPzb2japR3-k9bQ-_4RsdH4cUaFNiM97_7gXvoR0VR714C-wjPAALw7UgUsIzOh4RWXxe2ILB9xHEJualx7ps0NgvC_rjzkq0ua7W5zl_uxSWN6y0bgk_Xdpz-8Ztd4-z6QOTqEJ20b8_T4SXgB60YUoc24X-4JM9Ox15zBxLBR2BECkaeL--63-kvxcxpBs_FZ92Feyl4ja0NBhvKkM-qsJZ-5wW8-IvpRVuRGkX30ShPV65zCbLzQpuQL3beQlugTGr0J65YMTzNbhiYj5ZlvVDxuQiBEIEbUL5gO5hh-Ubx-ROMw70d-9ZQ5UDWAa_IcleYYJPrvuctRIGmRcK8f8oyqexOJX6GgUt6d6qRNFEhENzxK1ljpml6AAP96xvzhy5yvZ3qkzhgelryycAGCTBasTeXZLvDWdU10N4WcXpmARPL9acNITy4MuMPAlU5wMnDQQqYVGGX0p0D-Ye37UUTGmZPc0shrokjZbz371sxOTfNK-ETJs08GOl9ljYo7to25XQZ3dibVb_vXafCN42IAQ7ddEiC6653IHYsdEWGgQDSFkgWo41I65K-LxcKX8e7AX4t9Hva1EMhOIg1mY051P1vUdIwnVFES_ZelHWQRwIzLKw2Vyh5OertWndQsA5RC6zA14Nhmu-nr2P7gpBJGWD7VDqE8vMvY3oKoZjISvQtP33oP6KgccitCQY3QlV-75bTPJeacVaIt5WNPqqRmaZA0lECTr_w4Z6rAEGeeGJ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674cfe9b120241-82895642','','','2024-12-02 00:26:42','2024-12-02 00:26:42','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41696',0,'cd-form-entry','',0),(41697,0,'2024-12-02 01:39:54','2024-12-02 01:39:54','{\"firstname\":\"Ashlin\",\"lastname\":\"Maguire\",\"email\":\"ashlinmag@outlook.com\",\"contactnumber\":\"075852419690\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6N_lYUWUsHJSAWiXtmN2_CMu1CjpzleDcPfBe85tNiftY1pe6zP3WsIHqVUEusEX_IGigcqaBr2uNI3SNK4dgEB5QrhtGZ_rlqx1DhBoue0k26MZxGNUXno6sURVAByUo0VafjiLmKywDWNS8cVAmHYEf8BPvhECbpAzL5N85gHI4Od_-7GfliW0AHP-NIm3CaJ2UUwg5S_gSVlR78xPme31Ic9PIa8P2BUpzIFPJz4Fz2f5oTjdMC-EV73QqruYbh484LT2BApcxSExh7k9eE7DoiGgqY5Cwl8gt93Zros-EUFlblX-kATa18dyNIkn8LFwhH8pXY3cZDQH-Vc1s7TJu3zRcNtgfjl9AfpcQlXt3lA6p0NRsu_0PsSNVKXg0KePFFW4Jy9jK7g-b-BqY8oQQ7qY8UpERnpA-_Hln0Vm9ZJ5ZVi-61uLpVkzmMaVo9muKtBTohmhDOu2HP8Hn0wDn6qrkF6yjOvCXV7gQUklKnmzYlB0zv5nUOjUnXXVNrjIdbaLSpwa6jfLZzD_Xg8Kg3r3JqTj3VRozGhUSXqxOpi6gXhVhTj2lCLm1axV8hp0BKBooSOM6diPcS3jj4Dqd2iieE1eCdd7SIcRAgZA_y1ZIPdcdO8r39eadfM5tCOnOmRziiaczXT5v2eOAAk1VqXC2VFZTas7HnjGFgbpUs1zU8a6hymZvp9o3KCN3d3cpJbtaKnRFhVXYvBNUeuRUTHLsWsCWnJlF7OSho-LFMPfLXiJSBF2fb4QUTuMNX5db-gOLWk3iZnf7o4pNnj116dhoU5-dVASCmrhI9hPyfOrzMZGCLjANlLUFFtK9A8iklxowvxVqaZwxgFksMB-c4vVp8SbqwmwSmr16hAaOaI1pagkxlzQeihU4ZNEcbPDl17_L5U4mGMh4PqQld2nL2R50KSapXpSOorTbtkatG33wYMwHq89limGa5e0QHUuRnL21tQAR3tO70MK5FqTi-AzKd-Umle-H5PlvPNW7q9MHWdNLNKejPEkurbk04ccRaIJP1X1rq5IhsUQ3c6ffUG6hRw7IVUfQvcwYNAceNHOx-JWHQ7Pq7XGfOeXkmfD7s-0FERUv78L34m2ejZKuGjZ1u2QwLE8v4YbWxwkyvIZqceTXlfT0Y_fQ1hKOVtfBNvZ0rsrMkveG6rc6oicsumPamzb3H3oUYuwRBsvbUwKBoWJsJjlyyhQXJ3aOF5-8hbcqWkFB_pVU8KOO2yLDqr-eLkNqEXwxa2UidedOq8d6oVQqtf9w4AYr4ie9WvZi0UBGNi0q2syd2KduF-pIWSLdCK-pgCd34o2d9dAZUozKuKL86uJc0WxtRzfOqH2SoGBXLHppUx1TqzM6gVLyDp0KuP2Y9OqvJLIkPSbSJGJEVTzBWtn1vko57oWThpoIv8XNar_jcgHZEgCbsq1plNg9YQ88Gf-tG5UlAGWSDdTPLxtSwOyRTLuxhY9dzST2NRKOdPvdrPraLvPHCgZpS0SL_fSJuTm_MS5y90OE3bdabR7b6mtQIwbJMCQxGAxYH7q4h4RoVmMR64WVBd5gzRGZmWn6JERzEMFLg7X0izaJ6mbEAg0QL1M-RpVEqwMMWPjhVnDq1L4SPbknUOBr4NKuNGzb-fzfnO0skkC0Luc0l0l4rD9Nl8l9PTT-D-eDmlQeD2SOj6hcwm-MCAGPB47fI3yO1rR1n8ve0cdyhXcEsZu1Yu7LfDiYQqvtBoTi-l3g_1nNKnOvG3qHt5SruKb_R7YkpyMf-qg25L3IR0V4_9wNPHIvgQOyLZkhn4Tg7AsdWSIRGTnzU3en-whvYO3F5NEnKm0UTqRYCz4jSX8auo0i7sF9qxrqkXytkgtzd1Lb7kMZ0F4tE3sVd5CS1lvLvpqpwVTwKgJmMuVk73Qn2X82JSFNBUYm8WG44oyvCjFBhHKghxEVYYhw4QoNhB5jvXi-OzecgRuk0Uq_vnJlt-DtwiIdW9e_IE7teIOrHwl0UWmcMzPHVaVnbkFQHVuAXeMdyYFpzfAXtyzuADnBSvqWWecHHl-Xs23GFT6ONwvLYoGv3uVVItKcruW1BvhFHAfQOa0ToAdtHLKg-y1GR671qV1z6cyhYOhF-awks81wYOXyRurwdh59May9U3u8Lg2-sfHSG8NWT7WlvBjSxv0K3Neb34EaXHAiWr2oLinEGLbVowW4ynrKuC3NrgzjVDyh9RCk5mF1TdZ9XpTLHWnDNFikBsRdnr8Qz6hYI46u2Q3kK3BVbSiBjgoayd589l3Xc0Oy7qBXFs4JltZICeyl7gDhG-H77VXN-oATMBWHDbL8zGi1bWzZ0qBA53Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674d0fccde1a36-54925103','','','2024-12-02 01:39:54','2024-12-02 01:39:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41697',0,'cd-form-entry','',0),(41698,0,'2024-12-02 03:37:17','0000-00-00 00:00:00','{\"firstname\":\"Brian\",\"lastname\":\"Shea\",\"email\":\"Briansheapt@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6fubBAaKaq5krFNMnFotL5cKpX49bhwE6V6xD2E33xYN3PCB8aa-XyPE0veEbnMKsaHk6ctskYjp8guy300spgCVKES00cKhYtcrJMTZQhsBwUSGCF6CuvibCJFsSz5QTbwy5khFI5w4E_Zl9BBXjFDkg5ys0fYnCkCwUsqrv8L77NwslhXiu8EJDqgew1S3BNI21gBKE3r9SuF_DP7eFmCicAMFKWxxln1_9fnIhtrIiqUgpBzn-roQDWDVWUpkE00RLLT6by_Owl4hoBFVy0SnzJd2wGXGqOLvGTofBaYw6E4FcKemqOKiug8KJM1vSAyYfoCxhC-5hS7rZ6u0Y6hSfxYHkBmFkKMMc4RX9y4uk31TN-R2lmydQFJKyEPs_u1uOUQXiqlptWirD7xJ6YPcYGrvX27dBKChWg-6ywbe3SDKx5pGuVk6gylJNRk-HOQrHXdVV-FauS9Pyn86XRoL2BSqpf_3cmnYuorqP-x9vkmoCMwUIHl3JZDXHspPDPOO9K7_vOoU0u_Oh0Hxy7GuW77llXXXUscZINIxcj9nI5Ue-oVlfGQtYlbLA6wIL_aTW7NJcx2R6zHvBVUdvSW3jfGlVxbvbtWLwwMxSg5iBXrlcP_0ky5L3EUOIfr1zUxUE6VqdR5HrHM2ATCgZvnKphaaRgeVCiaQl54f_k2WW-d66bPWM1auttbJtEAVW1hmQEEt7Jk9sn7MH3wdrgS93Cjyf_vdR4EQsxY0cp9TgRX2aeYWJSoRoOt0GwCNKssyBa7iptpg9gUNGVXeA5aoqkIRoM0x3PsqE6RVcaun2iF6eVzVUnclIfi5QXh1Cr2EpNIn3y_HxcEMfaiE68dv1K22aDZlog6uwGhVxgBI7v8DjKlNPfsBMd4GZoYKrj0H1uy897Nya6kbR33m8N442lCQtXfmS2oI9AJeS3xjN7P9vyVeslIjsqiLPlAuFsplOPKB1akoCE6KSbam-TbwKxG2SJAOho3qAiqRRiAFgvDomtkL1ro1zcRsYLMTWO8bBkHTAmSoGUM-Q61bEcfvELys_6bCmmqVa6r6kyGMIB8cENEQ5jVG0b9fKNMKhRSg2wlfDmShsxZoddHZFkxvnKx41f9iw7klvnLLKq8j0cpdNjzI3TxmS3gW556Nt3BIMUQQbJkSKa1SPaHhzOK6uhqnqyAvueMcY-i6kOLb4w8SVKylgTBc8Yjd_Zo3u3HfFlrZCQhkqomgsmlwCNkfHwjLTbC17lUoAJWBm2WZLf2AVYJIy5GoaFRRV7HXMSguuoQ0Z_x0alIuMsritdN0B-5qdWNG7QQkEpuqm5YjroxD8a_34dWIz4nDNil9WqDi9sZJiNsM1_lxziWbM135dwsFZfRHJ-cBiFaPt0YifcOxF2YQ7_ipZ9TW8JngSC3DxcX2B-h3g0O2U_g9QUbug3R88StubUzpUmd2npNpSvaoruVhHih_ww0-I3GCruK7FWQJngZ6wPbMOMaTEH0k48enrHHW-m6HJ2FYerD9oaA1GaBBi-wIYXC-OYCioszDd2OWa5YwpzDNkQMKZnhZRCEVQqrfU5x7iwYV18k_LMfAHDO_FQhNwS22-PMssShaVRkNqTyBW5qP1OjeaUHR8Ak2K6MxW9xCZencn8-2F9XUDqIq6eRQxtQBeuoCG5K7HaC3pkqOicJavBHxMlm3QTyblBTgb0vBidvurKqX_thNtX-MLfsBDvV0mnK1xVZGa909RDbY2UYmv7chamAj7P1sQ5EiG0Drx4i-IsZaU_7LPGyTY7KpUtzfy6lypFPzSIoBZtrwJ9GrYFHvfVB68zHkYjlnmkximGuQAPzXXGyxMSYsuOHqkSbIS8IuS7UbMqBVdDb7xo9AfLTXANIuKaYJmmkuaZyW81iG9vDHSYJrywTxWTrer5RTRIA70Muxal67ZQ2ImdsW6_r7mvBh_VChmfqFdIeQG3GzTuBkj7ws6J-x-KDJFRxOtE93PQ-o0NsiBhGl3CWa6XzLlikOvmLQ\",\"recaptcha_score\":0.1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-674d2b51b6ca98-48329440','','','2024-12-02 03:37:17','2024-12-02 03:37:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41698',0,'cd-form-entry','',0),(41699,0,'2024-12-02 20:30:17','2024-12-02 20:30:17','{\"firstname\":\"Karen\",\"lastname\":\"Taylor\",\"email\":\"kaztaylor@sky.com\",\"contactnumber\":\"07894736338\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gclid=CjwKCAiA0rW6BhAcEiwAQH28IspjMwuSxgb3hauDg3p5ipcGZp7P8GKY1XpLTGYwMDcmC0TQ9C27xBoCIv8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6bvQO7HPUx_qoQm84W_DPutmGeqIPwzUUVeP-SUDxhw45xcHNi4MwCqj5YVEgOsRCZOpejiJalow0MKlOcwrFJF_yprCNwxnDROlOt0JMgIm0iRTD2B7UuiwZp76i_5ATOeQtr9V2BsJkTgicgvjlKS0R2KVbm0gcm3HK5rYB7A7wKg7JYv-QoWI6RQkJODXxpzb9Lv4SwJXjNLERMSmK8sUIti7R4TEuCVfB8wDIj5ce_88QB0RuM06xiBYHPXhgzKaxG8ltxmyT3-GIQ_LLGJIZVeeQPU1rpZd3tXkTtcswEJomfnLaXaKxJqBD5o0D2nl241CGfN7SkF5hHEciGNfUH2bFsond_SrO49iV_C3vkOgIy8m-fvdOawoL26UXyAWfIaBGucvNZMEtqlsh3LXD-9V2AQ37pLkgwstfUlESgza27xV9oaeaQ8H3gtEjcDjDQRjVyJpQmoLwAV5lOpOKtNZpHRkdKDpBxMqqpxLjfyN8UK4Q8JFJKQSpAhg-UYwtN0HINehWZeNDiyXb1Y5VNPYZmPoyNYvnlTTDInLB2Hqp0RMHO6AobiXDXFjMCmOcA-9EufrptRbWtaeZzLpGcgnxqj1Xv_9U4r-x9NYeP66nhI8evXZEctonANTi_q1p9RtpWFesUsWXA7BfYpHmUlyjpdDmQmGgNDMzYeJR4gyIIBck5w_Yam7AaMgBip325MBr312-5Ebww3ec2Io0p3ifYS4JQd6-ml2UvI6uJRZORG1UIumEskP2wNMgSsoHUpzjJC3XQlmkOWOX5iO6OxfdS4HZCNxp1MpGWPtjUWWrPuOl6H3AXPq5kBMPFIkAOEHQ8Os1mVefnoaQAW3hrvlc3u3eQhMSwxLEaFX1Nf0NArrbnfebOeJx_2OhA8o0ZipWorMV6-pd4SVH8993qZ7_dESefMUJeuAI56Kva06XmZ1FqlUZYBtK3rE_l7m4fkF0-z7seLsf4y_JLJLgcrhuj2MyEdPahcdO27cP0B6s__TW5S5VWUi8nZ_jSFK9-xNIksQaz9xyCsjH4BX1KBYaEegvi2P1diB1_lQCNMyL8YKJ18UVV-kKF2tr3KwgmWp-pJShAnWEKw4toFuXFCzFDlu3Y2Bcx5k2T0-8Z1QyV6z6dhoMqUETYrSKcX7fnz4KPd3mlOC3Hx7DosI2u_6J1iCB6L_jUl2MnsOIKpTACo-4LcsHbZWiN6lv2-_4FME75GsCbMfn4OzKWgCh2k0mQTr-JoV8sXkALNSfgsba4lhK0hwtUa7JwQsxaUwPg8m1oFc_jZYPQFrf0LmlbMrAVBhgADhJ3Q5bp7zO04lJ1PPQknNSYgGed2WiOpLQ8Prh1d8FAy7q5Lo77kqrX_k37uXHdJCIe6brMVOi8kXVNMhV3dNyvJ9KEPF7gjUXS2YNqVqNha_hF3Qs4mIxYaHuCifLyBQkDC1CaWiHuFuJSn0e4OC3gmnSlz54OMCtg8Jwa7i0bZYDmMHVZP7mb9bkCLola86Mf5l12itJADmukoawHDsjVuUw5Tc33maxIzGX8k4RQxgcX6WXl8z8WLFdiaLyX3ocpsuaQKX8OFG_9bk5A7Z4piRR50_vq6xKK3wf5Lj9wdz5cgWPGA_MfkBjqrJfy05TsiY8pE3Rt-fdbqAbGoWt5jBXX67a96it80fzyC-OySh8zkKgkYta_o88YoNjGeNp08bsAx08vVKrHMENayToI7UKjq1qqIUXx2mP1FvwQfoTT5gjdqtoBeDUo11ldDP-WmRv4P_PZueNxUqkA4mDGWBQ7w-P2D6SfQye6t2FYfxAb01AkKL4VFSfRYARXx8E9RF005gcoOirmdSSfye9Tb-zCksGFouyjMjQsCwbWFM902EgFiIFQkKHzezdQFdj5Z172QllNmNWZITCJmr6IRklcapIP9OKmJe3OYvqT2UUu54DKxuWOGyRwiqB5D-GaSzhfiD2YUsiBMEACz4Lxkc9xoK8TupO8qeY5o3ccBV5CuarNefgaPIsXmmTV0b0D_ZRyXZ_Fz_TilHcMOKsx0OgLifTu9Ap8P1AES4D6kHqbvR-sx8KUF8cZuxVI6Y5oxh9ExAZEFOnsZAod2QBahjkCeyh1XH83gAlSdUHee26UjbS8nd3u7pmEUoM0ici-rmvzpbU9M34hLmEJsee6zDED03665WP8_l7QbYYdNoGLSyZ2OEqNKMKiZj9HQwxLa7bJKUzFz7horJ8RpYtiWZtKkrImHAFlz6j13HDb8rh24pXRJDPXsg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674e18c7b2bec8-48742400','','','2024-12-02 20:30:17','2024-12-02 20:30:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41699',0,'cd-form-entry','',0),(41700,0,'2024-12-02 20:34:20','2024-12-02 20:34:20','{\"email\":\"kaztaylor@sky.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"RH12 3GP\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gclid=CjwKCAiA0rW6BhAcEiwAQH28IspjMwuSxgb3hauDg3p5ipcGZp7P8GKY1XpLTGYwMDcmC0TQ9C27xBoCIv8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5N6TOW4bhMeeDKIsgeUIe6g0n0HjNuGf8IQktuw6HjtmZnzEYUz3fv1XJNLXq5Paum3ae9VloZHzTzIUYZqXQiqXTa7cgue1Vr-taWCmmhvu0L6qptdUYSZUsnim3tJAorBvq3gLGF2REu1URPlvFtGJCQSEr4YQ34QbQk9q6u_ULsI3MlBNfvdTT3sUv7IdziDG3XQOKk65I-0zgNZpoK2szwj2iSHQZB0Z9DyAma4PA11j1hRCXnM0SvQ2trDB7s6IFzzev12Nsigs2TuhE2auBZZF33DkCidSGwFhKFHUk56e9RenWOutYeeCF2VUHdAxzoelspRRELMekU74Xpybxadmi1iLa56_oR54VGb0CYgiezPduoejIHRewBdLxldYIuV8AkNkSfVS5ceImT7KtfwdwUcvox-ak2ZQ_4RER3xxWmjSHVtWFQGhXecbcUO8nwqdBjWk7IXV_N-KmrGBVXUxtEloNNgTUCAzAM6pmGcyO5ge4MMwsRzpKSI-YLHAuIDF-8rihQAmqf42uMCtL0w2kJfmw6GZLY_X72SH2-Uq7VFvJq1L_IgLXZDtbZ9C2KSPT3pXcEGY2LRWfbWX3Vzm230080MUTyxhJUwvSMrOBAzW2eMwTsJSCcgzVw_XPF0kqCI8B4U2AsJjVF81ecfKC4GbR3Ju3-nCtY816r1405qy65RIl7qMFtBrFW-snybdf3pYxqP0YOg7Dg47BnjjQalSF2-8a8voeli5xbwd-42Mz0RnJgHECLA35xf1DHrO7aBOJhcdSyDV-CzaYGgRzKK31YDsxjSq0jdcSijTxKn0fUIEDn8swk97Tmh912qiHWdAoykn-nUnUA_3owyGV553mqO3X0RF93qZvKaN8ysHNkrCaTLP8YvFapZ2eZ9zRacd1t1iOhqf7Hffs4KrzC572-lxXKNZGLNXP_9l-9iPA74luPS9Zfu7-EaHMEDdNvq704ec_elrw-80bcfvcc7khqgpFAUIhJ6Ge0U0E8TE6S-6t07ohe-szMv1E8ERljti4GRsQBzxvujdHBGdTajierKJTqboawlhpm7FFTSSAxL1HZHUcO02HCUb7nd8baqcsV3aTVxKWSCXpPkdYNXIUtC9KEzL_1ZElyz-hFPmop_Y8AJueuR-U4ZRl_a2Ugd0AgNxIicHw4QNcgn5FBNiD-eGk-_eB_HneF2WrQkxA4nBRYIj5P65unkmdqkSQLPS5aH6t5v629MMkKJbBC1O7Kb6PvhzxvbzBZG3hQwhh_LgESOcNb1gvyVlH5cdgadh1n9wO1_imfobYHx3scvA4vXZy2o_ImdPL6CurjSVPM7Ln1nPmqug0htQSJCzGCa4EPJ-NH4UQEQNBiQVN1j_j3dsx8rVeEOhZA3WwTx87EYNx07HwHRFPRhXDybzm2p7BHSMNISkzkJbV-fgBPOvg-Y-HrvCFShi18EFoHmHPNgtzmizUbdL7Ie0kkqQApT7UumDBjdI96Z3ovQNYgcbbTIo4PdzToQfHzl8wEDttrfXSRRUtZz8pJHdcGUsUQhIG4rF_Nox0pZbiMBJa2QCCSGtXuyHjoAWWKlsnWfsR7Xg8ZnkIthBL-Nnmh0DhMuMTTjKs6jX6sEefVmclZGyAhr-6auNtQa_eEwbG3Btr2QoCOOWDbzlDpoD31CWMxgexYWXjN338QP1BRylTQ8ltVKwShVHnZl6PNBn-vIkkbmpN9eOLQnxKldt0ONyHHGzkoSUm2F2SqDpg_7O2jLmpBySEz1JQTqq6OmqFKKWGZ1KzY4Q0DT38WKDUU0rPXPnYoVw8Fr1ewP1V-DY3GX6c19z7niuJNWtXR_-1wo--SErWTsuy99dTBv64g1mbbRuQRZz7_7U-4BVrxac90_CZ3aXyzfkuH6oxJyQb-oO8NVvIQ_UztWLVJv-K3WExrdgDtMFjob2My2r7HCgpaZbgD1M2Radfv4R_Y__HvYo2cux3YpDS3sAy1ub15tC20kBw7hLdyr7RT8QAmYSXL0MhFrVWr25ZmpU5RTurFRMaWi2nXuR6jLGkuWHwS69f6wRd7fvjwDVvm_ZCGy2uo7Y_XoIO_iVTFaNQZK5qctMs7Y-JBcPXMMlBCVJZPzwAnZJGNOG55MuIwYSbOgZELTxCQjNVpSZYeUDXsnmHjY0SL56xIVS_ExDEIiA8jJi9CD_l5DSCGVa54PB3ugdxS2wbdSk_IRX63qmknXMjrAovK_6RC0H_KknH9_KjYyPlJ7RN51TKIZCSaTz6QmQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674e199d5bf2c5-66130817','','','2024-12-02 20:34:20','2024-12-02 20:34:20','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41700',0,'cd-form-entry','',0),(41701,0,'2024-12-02 20:35:26','2024-12-02 20:35:26','{\"firstname\":\"Karen\",\"lastname\":\"Taylor\",\"email\":\"kaztaylor@sky.com\",\"contactnumber\":\"07894736338\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gclid=CjwKCAiA0rW6BhAcEiwAQH28IspjMwuSxgb3hauDg3p5ipcGZp7P8GKY1XpLTGYwMDcmC0TQ9C27xBoCIv8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4RPNKloHAHGCsilFLKIlZA0A0kzGU1pwpNhALsr7_mooxHZmImmT5SwwGWcXKFZyo7FiR2Ynj9fDs-T-osyjrxvQcwJ-mWTUpwua2i0TJ9F-22ZdP6QcV9u-YDm5zgBXFPic_SiLL0KYP7eqRPAPYgqCvRxyfHJOnZ7x7YnJ4_kBza52Jv6UsncSref48_ob41zscQLSWJsTGPGQsmx_BobFfuuRdhThNA0Ibbv--pqA2-WRnKW1ReAnKOc2-EbQ7McIutnMQa8AE8Lncis2Z51dLckkfX70-9ck04HCP3DczbN5DxUxr9mHEFhCS2UYY3kb_Rh5oatlBh5xJAryorV6v3jPKL8mUC0mKFQmt3USgqJlWkHZJqO2B_f2a1Rmd9TzviHOvvko7e34FTgyU9Yv8aqQ27EiFieRzerPBVsm2uSCjO1aDA_eSCnUyJIGzhFlh3KC9HiRN407A6J1SQYAn6_2UtwEVy4-54wSLh_F3lXYLx10vOCZP9_jM2cwRvXzRY9sWIClg9EOBuqhVJ767ZZ31s1PiYO_4Q1mNvM6rXets0cP-9KVpGvRMWbXfLqf2_tLmrqFymT7qZ_KxEHs2wrOgWLiAT-Da5dK3FvmiDA-aSy-NC8jOKe2Xzc1mOpKPJUYxOwSodtbdtjtdONiNCzlg2hy9G3l8iJnlr5ZgjnVjAfuP_ABrLAAysOO1xX-nMI6KrnC_2K8T6k_kKWyWG-JXek4FRQ_jHvVbyuPQF3pGyhSznUwf-l-v8KpyCFBOyvCQcVXkpzobz7ih98-ZIKg0jkNW7oLW1z33_EzcDu0CIREcg9lE1PpniIdZOaOfvpnlUSw2ehDOjIBvXNwc38xa-7b9DYfZ4LJ5H8VG7I1Q3_ogssMTbwlOfMPDg4XWJTO6hxr0gAfclqX88jAO998pn3M1-w86mLoUJecY13xhpuY8_9u_wOSo4ef0ebRp67jTCqtlvjrUgaSBUwSpZtti7WSF-x8r71qESyKMQwhlT13qIvs5YwCTTm56YEGyVQTub4137DY3Tpqd4EEH5SuH3xGl_KbyoXnRZvHHZY7u2Nzmy9-m7Wz82EFOAyLbwgI1-UYtYwBAnXa1rnYBedzjFSBA7JXuioTSr_JO3GzVeuIZbdsobGgnrZCo6cG0vWvRnfUE4JWSJsG17SgXYCJtHa_dPC1ckJk3osk-L2rKA0h0J9VbICR3Gho724_XG7A5-I2z2VdgyvnXLGAEtLNBSt7cTf7nQ0RME-RB03g7zLWcyun0XGumpqRqB6Ijph42pjLdsKd_OfaS2gPVPswGI58K5a1sMAEdxIrwUwXBsR3gvkz-8K6FmPX9BXAPY8ffAYJiB7m8_smH3GyP93LsGHsXXP1VvhiFNJICaTeaXyEp8olC2sm_osuOBrCfIGRsZ_3Z909bhom3qy759ZryYvdUdMOM6wMhtiFdT2kbi39S08K0N7hMH80RuDjYpPVttIlthnGxDAe-GPS1D_6Pb6AkMxd4MhPmowf3Bxz-1TdMI0KjMuHxPOyJXd1cNcdZspEovKIys8ar0HZ7chCfHRYu3rn9M_ExKDPjdO-yTsjII75YG_0wUGWy4UH0OLmsDKSf9KdhqHYs4L1IuJBtRHudS0Y_x53iPF9b01as27QMZpcBzqT91ab-KDhluUVKJyAUS22Jy85n7bpc_67YVnNUQwdhTTZlohqtDwg1vQ7dB3n56qZvD8M3pEPOVHje2G67VMiEyS1oH9-7wO96vBRvJdBZYMg8MIcPhB7YnsEzW6uCFZPQf_2SM-VwRstPg3zsOXtz4whpYuU-YMCiTfT-8aKrrWIS6V5Rw-edW0xNtJQ_B7f3S6GWV5FGGrPnl7298mrzYUsOch8j0v4x7cTXZsfidf0bLDPfq1v-3pyE5k0tPeL_XBvsN3cgV7L0JfBOUHGRSW_J-b9b9bc1S209r_Zh_sZoJYFAoHeG1r3AZ-bd08HZmXMvrJpH4pYzdxbNNAEk7zaGjT9WFaMwSLTdqNm63FPVuXjo2x44gqGVMT53LZfZx0Hq4Q6ZU3TUULY8ibwV1tEPlZKPHG34StjBiV3RIWaVwaiTDJD0tkq6SBKu8vPW24xU5dVwnk_oJ0bqUI-KRPR1aRAdEyIv2-DwptcEY8aKp0uYoLa0yTeNWUuWSKIefYBVYQ-TvU-bucjVGaA5NnLOf9V_1MSCo7u0Dj-Kil5m-FLZng40\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674e19fd262191-94738752','','','2024-12-02 20:35:26','2024-12-02 20:35:26','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41701',0,'cd-form-entry','',0),(41702,0,'2024-12-02 21:55:52','2024-12-02 21:55:52','{\"firstname\":\"Jessica\",\"lastname\":\"Clyde\",\"email\":\"jess.clyde@icloud.com\",\"contactnumber\":\"07447618668\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gbraid=0AAAAA9_dL6tCQc6r3fF0Un0ZH_r_4fHw-&amp;gclid=CjwKCAiA0rW6BhAcEiwAQH28Imk7kN4fIiKE63yw1rStDXnczBLhJn239tzdrqv4cmE2SQMJav96jRoCIYcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5OXgkS5nWDxCRbMWRqvzfBqu_BlKe3MO-BsAqcnrSNVqidRH78cVSjkSJGLT3oxKfXDlN2aNmBgnvNVTxIhzHrTmSLyQJU3Vc8xLBnsU3QfqCRhgewiayY2hpBGE-pscF42K1kzi9bDt1HC9POHqZgEfFr9HcbAPdjtrGvembKsIJs0---koGrU0VjFqL7op4Opqhg1RXv8Z6QEoyAz4fXNB1T3-5-bXNkJ4DZYPxBPH4RTL2Uyp9114lXYf2V_Gxb7aJ_S42sisXeaRtrk_-DWqZH0q96LVizpu5NqgzPoL7PgE7BLQtmqetDwAEkOXliEZufZW5X4EcuCAWf4lK-fP7AYux7vNwXDHKdQSjr3KI7paB16HAIZqxy1nYDfq3F9p7Z4sj6qFTl2AtTHtawg5wJtbd6-f-gObz27IaWhEK8PCnJoEqT0Y5dl4pT-q_0IQEChHR6eGJLkhjTGdobO1lorzQE-eBnIE2F8CYeoWZt0GHeBdzF5LvC-BZsUVVfDQXqMkWMRs6V85zMnZdN77XqxzKQm0hapOiLKqP2bL1RjucJMfEFVHh6p4mbR1LMLCbEOdOgzA6NW5J8kiNcv1Daohs280maIJN46q6puUyplmmDGFlKtTqCHBt41T0bGZk7vNSjhHx0m0MRjZ62Ru0QDfnM9t3qg0vi4iQDDahbQbMrPvbzAO-uKtZdigM376XiaGgpSZjZMQxWep8pOdv-XKtfEL3lIjxesMrrbAp-wft7TWJkMviCmlNObuOhl9RGo7uz4OHVHJgN8CJQquseS_H37wNtdwUHw0tFpIPl40Fci7xJlK56zNdN4GuiqA15NyVsyLdrTZ1g9WHS0bSy5q78_6X8YBqkxbtpUf8T8tcc5moC0uqs_64hZDiQ4CQwv69D9oUVYuo038ZJUiEB36_yiAYWPW6ojCTO4xLnYSnPeaDYsUcwyAIAF6ZagIF4bHrMFNbH5LlG033TDDB1AGR9_42aBgM8nI92x2akk5yT-6rTbAlGW-7xHGOk9re5TtRwf9pnidjajLIz8Ylh5LzzdhY8-uc2iCCCbF2IK-tBx8oMUzYhN36cMqdcPPBKr5L6v8f-kZwnRe0EhKAIIzkJJF2sVgVvDtI9K1EWtBU8dOvWFMTzBddgYwYBdvGvZiT2y5YaPW4iWYDVN0m4FQxxJbGd3DVvgNng43rwlO8mDxCoRB117rc3wNrmaW8s4u85bgf1_D0weRQzH5-NlOJA8vIVm55yRzPZVvSzL-L2ZJVjhDrjkhUGuoDunwGhrsbMFsybJfO0YObOfZl0jFlMLTlW5w2RejKV0XRcrmlZfaEBXbgVzgk639eI4tYn4bLoqlFmJ4sHti12KrqmNpKYAFuKqywMr-hVzkBRW3ZoUuiFf8j1RHaJ6FgiFDCxIOSZrYJFbuuVD-HnVTqQ6egkjihh8BihFPAf4K7I4d0MFdqba6qJblgxqbt9NcgMaYnwGgk5JlxvoCoiNuvjgtex3UCug9JX2H8OHyX-UVgHwpNIqSw6UwnbZiDipYwcIhEnweCCR4_MU3yNTMHme9yqPldEmyy2JVxH9fI-3rOW3F2cXIx8nba4atS20hG8hMl4ZWNfuB_gqAiChOYYC8Py8GPQeQQdN_arMimdnwvRRGSGB4nq9cmXMi8LDc_c9lqq3znHgbVnaoMwo2zA1489bVRzVRWjozVwowfkazx9BnAsgV-uG2dnDcq-oU9O_6tCvETVsQQv6SzfFBXPjdiTo7eB6Hp56acXKyZH3iLVDGn3pQB0biCxeTMhCe_H2oeZoieokXGOyW-AYt8L0R5K1BA3MZjn6uOaBEfNoUhdwgOB92cUXdxh3rTstvbK3X__3d20FGAv0qRmBR1EnQKghNgdhpCglKYfXnvuKkmmbnk3u2yrteAK8sN7FZruBXYPtyL8NSLw9kLBGEpsjdImDOr_5yE6ZmKIfZIQ1Eemdy_JV8U7HYmiTQ8UWtibzjdFS_uMG2BtEg4cuOzscaS3egCmF1bm9Vv7mu_yiDLFpYcGkDvGBwgnBeF0boRE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674e2cd9629e04-24852163','','','2024-12-02 21:55:52','2024-12-02 21:55:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41702',0,'cd-form-entry','',0),(41703,0,'2024-12-02 21:58:20','0000-00-00 00:00:00','{\"email\":\"jess.clyde@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"2\",\"currentpostcode\":\"S11 9AQ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gbraid=0AAAAA9_dL6tCQc6r3fF0Un0ZH_r_4fHw-&amp;gclid=CjwKCAiA0rW6BhAcEiwAQH28Imk7kN4fIiKE63yw1rStDXnczBLhJn239tzdrqv4cmE2SQMJav96jRoCIYcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5vpxJTGjtibVV6EY7RuGJOHxC13gAPeA8QokDvYiwmOA5Yh_XxmcepKEuTpbL6M5CytWOQznUugNvxXvu1mmK8JMWp6VwV9LKMaiD02VhsA00ylVBzS8glcKmVAd7CSHWwWEcmZG_uzWvm7nsVEoBnnjyTxxt4ke4ZOkBAakrhqskafQT7g0wa33WiyXSii5CRmirK3YsLbArQGyLbHqcX_bCt68NsUdPBhIbkebJUq3YGLges2_hEPBMuiQjk2LYjyPmwsYFJ5G8pJnjp7y3eHitfilOpf5N-eDncrrSF3k4PkXcm4ZIQd5Hwt9Y5269tuTQy6NLcHOpV2EkFrDXhmk44t2U1Pr14NVrz6n2B9fxFDH9Ur6V3LIlCPoGjMJSDLK79v5MTPSBKJHEPjhKZ2VvMltGyrQERlq0mFqJqebcZWr3guqXS1VDVdy8vlCK3wkqLvU-XsuvcNsHwLSJ3IBJ9XWg1Qhz_n5CDH7gHOuEDeG5TYYfSJQgTLPmQIS_oQYh68OxHIHF7HZpKlQt8i168ipqqECzd-_tnCEI5fdL1jLLC2ntR5WZ9nbrEIAqxmchZwcyUT3YDzrmpPvavWUt1UOnq1X5QQ10qt5a4Znq266PpfKvMwOb1CEdLroFEN8Rc_Acpr1CTAsFB7JeF8rVIjgh05WIMEmyeY1xrUaJipetVM6RgOVjdMxK0K5x_YV-iZmEzuEgAgOBCyWyCvZLwopJjf3QZtLyaWcUrbhe8v602LR2duP5R-v_dosBEtg9d1es7m6Sug5iEGn3dYnvd9EmdcBynm9jD8TjtxbEjhrFdgXjkbYUx-cYw5UIFIODB7r2B-lWcIvkl5HH55QMj6MCbySzI0iRQQEOCx7qq7fmJ8YCKx0D5xc-q5yoDCe12sb0DsVBZfa9b9fVADTSfJv_8NuIWxUVW8pviJse3Vc9fbtGWhgYDH4okxJhknRYD1kCzLQabjPYsd7huF_TU5jF_V_HVl9iZU-UlRnnmNjzapljDf3VKcM70CvYLwvwAgROtGA1s2UCo6PWVqm0JPyH8PwyIcgp1uuMPHP2VWxDly4ARfipYgcVUyw7RDhHBH3soAFTlfMIVhl1q7T1jH_2YqL2zZLk3gUFRaYluvyGHIwdo48LisVjG_6BDrimr1oT_h5NKP01B8ZqLVLph5mm5fmBqWjYzG4aLZ9sxTeAAG4O25d9bbz0wCbH9IouxdNLj2ogeo7kOySDfGB58S9cViy6p4cuPeT1juRKbpyI55qv7-75lg0MCBgkNSyi4Ryq_GJFVuy4XF0otD_3RP7H5SiFi2uCj-WzFnz-tWvYdzjwCLD3vZlNn3WaPJf8TLj1LZbdJJSotvwi6NF-tu46Dw-2cT1DHD7QZfhulwDveqGK1mKiG6-9BmYb6T1XPZfLaTH6BL_wd0L4hfYLJItIJEneuuDqAvKIl9I7mBxk84C4BgwYgyEx534iJkyXpTLaqW3FIG_Q6JgXN3XrzdCFB9uXSr4W7SRKaKNStJniSpjETZbfp8DQ7CsSQuUX2PGBzWmmuBvMH6Jo9x2dZltm7ys3S33y1uXmww3TH6Mwkzidatt35tCby__PwQkSMy5wLNg5M4Nfg-UVazn4y5x3FGIOrciPepeHXse9rCAdIqYapTdsze8N0FTbQ-7R63DozcuIllP3KyfvpVPmGiBYM7lIeacnNgYuk0H_5iYlRP92kRjvnArnUtGcTmMOiKhtYChyeYY5p6CwNm02y5c-_Q9PoCKeWzeSSbDHyBtB5cdSHZUlbrKH-m7keL8mwYqvcSGrBf-7x-TampfWY2R3O1vHt3ZJv30B9YSYfPK18XztMtqfdUoiu240nv41aFzTJ32tiQLRhIr7eTO9aZX8uiLMyEGAafS_yH_YsAWoYJqKt5m-Pltn46oXCQuv6DcX7lvHoMYkqXHGrjtwNoygrxZ3frkP3SEAab58IEdiiS0dcYOwj4tn2jnMEbSGWK-p0ejJ8S4hpqEgTKXvQDog7lOhnNb82X9EVzV0iG4_TtGBTfG0fnX9SBlGA1Ij44-2etuBOzuB3u17ghqdTBhBs73QIkKu4plUBE_pBc0EsskdI9dAWC0l8nQpIngcpIaUi3Hhn4CGsFHWMEzop7GPUUfO7_5eOixHb4NUQnPpxeQQqJ2TqeWTSVcjxpzzg56qO-syOV7YOPynLt2VXOj6GKzT9RF529ILOvoglCEgvu13iDxJWnrjzGgmdlLM5JrhMDftxxa68zFnjmgH73w\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-674e2d7c5c5fd0-42297490','','','2024-12-02 21:58:20','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41703',0,'cd-form-entry','',0),(41704,0,'2024-12-02 22:02:16','2024-12-02 22:02:16','{\"firstname\":\"Jessica\",\"lastname\":\"Clyde\",\"email\":\"jess.clyde@icloud.com\",\"contactnumber\":\"07447618668\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA60ofWCUAaNLeAEwhJT4OX2lUsLWo1sdfeeVBEYjZewHVkKQKIxjF1Y_c14ZRDIwnzItIhisHYntn45bl5dyQeY22s-u6OtT2vn0Srxi83p5Scmbx1u-7FK8LBWcraI1mntgyA7s34gpztyjnNlXj0ubNbuYdXNYOymI6qrpX_ZLlUHQSrqs_BsoAZqubN5WfwNaoofwm9DnUpmwVEOaUKvwFRCiCRuobDHniw3eUf4KyAUy19yIQECkCCz8bYKXdNCFmits8423HtS7f9ZK87tTscDLJo_o82klXIQKbhHM2afJEtj17DCFacRfSL-2rEzIZH2b2eayVTHCb4L_-DCEOuGv0HBDkc36x9JIHMTHNXIsVyE6r_8YmbhOoQ3QnaK7R7XxOT3-WydUaE_LncznPr_524gfZtD5tTtQ7p0Y0y1jTc005yg2a3F-64RQRyeo3_QFTd7j5iyWkwTDOlubysMyDVpnVD3VMPNfkE700lnQ8vPtyzWQtz0iWUVgdD26ywUVzcNRjQdyvfE-CyfCoIDnJkf7M7wNzSUZRgf1KA5_ymliaSyOpijipUk2WbfC0_Gj8CZANVxi61pbUbP6F6ZcAnKpYQ2Ig4eVwiT_zKbrDNgTS_jvQhsPu5cQQkcOnMj0E3ppk_WB6KWxJEnUZtgbMKkOXzqSHms9o8CInGdqBL86dUbRs9Z6YgaN_u5rO5Ap5tnHyLw8tjHdPbNXZGCKafqIuhgApaGZ3qoqfeS9JVhtoIa2qDS5itCGFXNOkYVmPvwN-HbpFe5D1xLa6d8BVWj50vaS_3n8bMwCVguS0sQiLzzOBQhcmSEfYdkg6shMHAUEaqEbXSQcKB-dXMsXoptS2tNLRpfDOh2fPp00dYsyhXgQ0oIzFVu0c2a8yCUa_Hq3hEagRrEQC-LD4xlS2Sz1AjUslSzkENYUL_2vqXltM80FcziFOM_wSF2MSTucVsy1j5hbIAR-lvWGzM3ibnRRHI6owYYF2o6-0wt4ja8W17M_ylk3lcUnEq_7sMOWml2BGbsANCu3x-hyFsrzt_TiRPvP8hrHCXMMGdSaBY8HinQD23va-62GsvSVAKpOvUolzAzDFwlhtthAWNnQ9oahGpQYGx9bzUS1CMqgKSlkZudWuYBFWgUZBaHOYFvhm7mHcmedR9kb3Yp2VqDShPiWIFSlUhQuM53o-vaiNUJZ0Gd1EJrbVfUUUFZpKlPUGgk-G5UeBwZLnTEht3OYfRC15bHLK8ip6of7PicNDnGXso16XxlH5YhemPO_Bgke9op1WBvAfKkhmSCn8HV7evRLCbprXlKPTN3-4hoSF-FBn03pDrPXJkQkIUT_i53279XlZB4r9aOTKUtOQRCwOq4jCHppaaQNp-g9zs5XcLCzVToWnMDhV4Pu46bnolu0ktJIKUPlMi1xHX0orbLdQ7If37BKmibCSNl2HMjQ03ZJxZeh3llsobaVqz29UOVcMg7vG6lZuZjvDL4Ntd2fce8btxSnYhjNpjTTc4n-DUMsm58hDqITntMUqTQuoqWnh7EwYiRvo13l0ax6v304CLA775M6rzYyIkEgAhfMtRaXqenMFnabWCKGHKsGRt3oT3myGVn2W_RW4wWNVd7sRABOk1oHw25l2SAvnuiieNabOnAKJrVUTR66SBgAiWsD-zz6Q9SPPYbqdVJ2UEJQY0_O5UhJ5Iw7fBbpQQ7xYAxwOuNSZD2Aa54e9pB9CWEpPynkwoRi8dShkQPvSfXJqp-lCk8-qgrttvHtIMIJo62M0aOQ-tMl-0qT800HqoDziN38v8Kn5W0USlTxtcin31hAlDHE91oD8My_ftUniQW5rZ2XmFyVbiIraqhtt05LT8xgDmZjPSK-QKP6ip7g2_rFdHjMOvzvUub94Re49gnRSkN_dRa2JNW5Oy5QHWjOrwdlGHrLWTWMYK4MOQW0ujQXWad_hSSyjU23jmo_WDVfxHXUjlJeCNJwOZpO1LA-njdD5XcrfVHjIpp3pEk6-deCh9boGwjGOS8TYV6g21O16ru2pR-hcJ9w_jGySXNqkpIwBO-KWJ5Xm1iheJPoXkSqJuQGqsCXZ33ImrA7c4mS7JjPhbYt-f3mO_HExtFeZ0AX-Xy7yMmuf6BXnOvvCflnX4yXzg8TLs9tJtkmEMmI-tDQ6rv-Ci5zbVMIkFHt41d1bwEcUJCIENhw7P2XbYH-K3t3LPLjZO0iYBzd85Vrgn7_gDARwp1ynkp0mE-fc3uLu9TrnN8sgm128KrM2ox-gv-aoHsgyKv-eunXj4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674e2e594e2458-18993688','','','2024-12-02 22:02:16','2024-12-02 22:02:16','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41704',0,'cd-form-entry','',0),(41705,0,'2024-12-02 23:59:41','2024-12-02 23:59:41','{\"firstname\":\"Ray\",\"lastname\":\"Penamante\",\"email\":\"raypenamante@gmail.com\",\"contactnumber\":\"07834770996\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tCQc6r3fF0Un0ZH_r_4fHw-&amp;gclid=CjwKCAiA0rW6BhAcEiwAQH28IiLzEiVSlM_FA5r8EO7xq81fwSLKbTKuEPTu7-q6UdYcY6JDJHMEoxoCcUYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7Zo7upKC6ubvMhYC1WkMhJ4tyPGKlb1qIGknWN6vUS6Z50t73Kh4W66HKobdFjinFhnK1PDGH8-wyhFXTBTH508Ky6vpWP09VjpQLEPHKB2-AizTB8kRtek9tATQvfhJYGNlSPQ3ca1h-xuhvOPGYVMGCNIthKwqYjFqsP8ozHyt_Q6bqJKplaFimaTeP2vqbYmLhdjQcukb3ka96knXtUBW0XJWfwhSpLDT7kRIQklrQy4km5Oqu9ZfKwNa3FDEhbYkYtDv2y6EFcmBjIchEnXZWq0n5Cuh2M86UJqGwz8bdRHJgCkHvtTuL6SdlG8PD-dWQkS4Dc1GAetBnrPw5-MKyg3drO0DY0cMuKWptivzQCErJT3BBxgpNQ6b0KLi5SnZC5-WOcIj-vvONVkhAqAAZbjrc-eBh42pDEcUub6QjRXFL6v2iRQikLEuJuxqUFoYYiIh91_pPKYOw-zMhhE-QwBvdo8vEOTuAh-HIUwKOt1NI3oByZPoT7z9Imh_rHPAMhmKogpL1Ti3dtewBnm3ssQ3ecqIHQGqb-Jo4siXvOKY9za3tUaQi8ik2OU5xiuKzrVgvF3UoLdvC75U6J9bKlMRRS4hj-4pkBbRn6KBZDICFcgT05av0EFQ9VWAFD10uvpcYqAgxyoa9pUVZk2Mseezw9Z2x07sZ2UtbfnARgB-auHYw6ZXV6ybdGvv3o4GwFTzVlRfGrOB_ZGlGnDgz5AmLjuTOqWoIf5StdY7BaKG0OhDXhpRW9Z62CB3Kw-qJa3hkowvGdTPqk1yegfBsms_OVQ6goOOYj_ClWtwj5waF2VsqhJhXfHjbeHpgPaEbfNg5ekLqgCQFHrgnNQUs54LQ-v9CJP-UzvC7crF4WfrByOBPI0ncAShHZzCl1p0rhfsHAYZW-DGHrYdwq3_VOQw4H4a-8snb8cHqPAOGz6NGwWqBTMpfU9VyhYGTKDn4ZVdCqzKIS6eKYwkkgQN9jeeVHfNBKq8ae3ZQGjSvMg6GtOzSkTW31lcQwqlF6HTiqihd16Q4fnB2hTxcWRybdzQ-KwL7ZWJR_2xa9-w54J17u-2tii3VcaPZdBaHf1uCLYLpNDY-41hUCVza_sD6aUXrBvfHpBOUeD6vWr70qa0tQgFzDbGzfPp343zQ3ULTvlXePZMZFtoiosrImBE1SIjE0n175ibnF-jLZ0fW9kWNcA1VKIoB0VV824ynSwr4oM-BE-NmrwiJOIWRD-WaOTzmkpjhS8W_6xUc31qUk2GouCq_Nza4IOVtiUxd2WL2zU7wX24ymUwDkSHnj_057BnVRflGv0VrJ54vyvueoX15_01UbxRy7wlg8uorc2peH8G_hxZyby_nCp84ehjlJ7B-uniZCkFwf25oO8rggjxv8_o0WPXszm6BcVOVrwnL-YyvopYO9E2kUSXeBbr6Zky4EA8TF9pCqIGXarHQaClFtdOFzzDJwgSLCksz52TZAtLn3ovRlqL4lMGoYPMQtLBrGitiCbPnDNcBw65LHiYNixldhJdA6KxVOesW9a6J0ckniSIdGVF-HthM9I4lCuyZvCYFXT6xja_BlDkHu7-QgZw5VWWnEOzM7cWx_4Hj3B0TceMLUUwT0kJQY2NraJnXGuwapGLV2yH0VRcVOdGz7lsAQo_sdn6KbeIRNSQBv0I8fXxDeEw9NlYvfraQ4U8FcKeZOoQlAuNkkpsKUVqzOv5_f4lH88VwATeYJJaBjZr_vrEfMFVZ0du20t0mYKO4YYx21bZr5vpdxyprjpR0BL3MAspma-R5aDhA1tVLTZKp4MXJQkl6plCekaM8mEnxncvnGqJx7RPByMBNj80Lzw9s3qihDZH_yiC3tifk4LwhVbWAqHYGMkCNSodX_8EpwflB94UVWBeXK7JvYjoLY6LF0Ol7bHnxpfV-qSJ5kpcgDN8F1G-iNHxOaBrUegvsGz5kjWxhqA6fUmSkwAg05kGCCXdKAAtmMWyzqyIK1XUYLhEa-LMA60u3ptIbMMbq3dRXV_XSOX_qVXwbh2HenMHc945MlJOy40OKtOFF95QVipuOw5PxOvzI3eBQKiA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674e49e3b9def2-90002793','','','2024-12-02 23:59:41','2024-12-02 23:59:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41705',0,'cd-form-entry','',0),(41706,0,'2024-12-03 00:01:24','2024-12-03 00:01:24','{\"email\":\"raypenamante@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"Wc1h 8hg\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tCQc6r3fF0Un0ZH_r_4fHw-&amp;gclid=CjwKCAiA0rW6BhAcEiwAQH28IiLzEiVSlM_FA5r8EO7xq81fwSLKbTKuEPTu7-q6UdYcY6JDJHMEoxoCcUYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5mTmSgfTL-rpH5XMvDMF9kX6awPgx1MbJeljF0scI_3jGSvLQC4ZIYzmJQVjU5HP5Om7x0kJVA5geY6XZo8ug7Zj1P-RypV8h_rCX6oE6NOe3fOT0rNhVWZPeq2o4kMEFEJec3NjUK2A4m7FpN0GMTW5E2ykkJf-p8l79t4CBOYG5qFQb2Xm5CwrGazk0IupVGsR-EXC1u_PhOHPMIh8YNrfSwIwvq0Ip4zc9utFO2K4Rtj_LWYXsyDSnevVqne46HaRYK8HlV1z6GMdbmwsrpRVoFQbK9EI8o5eT5nJr5f26teoZk5nIpjmlUpiMrX0KGkqBw27Oa3uZUuIWK60MLuVASEFnaF1SzzPcXhhL5xDDF3fZXmZAkuolZgJHhgPwtk1om_T_DAIN_nh0PBCrlxC2N60loJwPheQvzgzwA1o0fnSIQR6VChP1bCgOqxFrpL0FWr5GpZo1R2WCJBSTH55RQGORU9dR0SLxUHsyDUF1cRBzMCnIkr0-BGh43d9dVo60czJRQ0XTvpJv4xFUB1b2V-a6p055zyrYrJV9QFCcnLOPRNUUMF6EOIgykSthT68p9ptHKFhxavY9czqldkuyvkoGXIwmWMRGXMwcETRHHf86o8du17YoSSKZAt2_Wg368GzJ3_6buzSJT-IbzxJMIxKHjw4hfwRB_6AZDUPm0Dm23cvHwbSdwxhwiZo6180mOXjU-TT0sKwAI7kxcm8-cLXx1yagjhCbVsPqFrHXCGgobVq7TRm1GA7rBulpHFlzf2J3OHeWo4hOTTjmUYAzZ9Y_VROOoGPTxZVU7zn1O8Rg_900XTAIcPymC7RJ3Hg3sWrFdQDogqVywp6mjNL9gwh9GEZxRWXUUw6-Sr0n7d1tiE-VK2Bf2w9ROjGyTs2tx01gc8p7EwiFznCq-hkPoslIGWZ_uXmiNW58gVmnlW9EtsUG2Aw7GOnjVDeVRIxfgkrwQ59SvDmDYOEI_aqq5_1aKhFW33y2PyannJnm7T6IW0yGKPfvhjrKVeKbdcFYsL28m7gr63yrfNXArquClVX3pHLTOO5N6cjhu9Ho27F4nLnl4fC8dbXBXg8kbuWFqdlg356rqLd9oeALwqkxtLlD1DOxQl7QVR53IAOtACS2VVJvrTt_4M_rJQ7efjew5g_ffhtVbvYDjJrZT1SN2pzrVBkvNObFtOV2DqDhqPjw8UkjZyysxZ0WecgD2d8NpWjw8vtssWRglTNN7crmzrDwg7-eR0E37JiAr6WjBZzUsUXv6EoSs8U5xGRDXPZLLTUzXFlhhNYcCe_gam00N05D6mal3ktntiPEFsbjwb1opGJX08ylft0qXXBn1hktuqhTjRy_YaLj6mVc6rKYfewPvcmIYFuK_ea7EPzW1Y_hGmjnfTGaI9RSBfmfiX7aZyuvfVnAg0kTvjGnjDUJbu3AemFY9QdZ1OXQioRr2QAgkEANKtpm2Ae06De2Xrr9FFHOdrcdmLDv3SAvhUpjiM52vsbV6KD-nEQC9xD5qcMvlCQopHKq1QxfglUaaGDgZDUB9uGE0e-imgTfwdvCs9axggi_OkUcDFfF1CL6nKHLEKSxnbWh3kg0B9Htjcd-kv1U61bwh0X7byKTkNL7zVZhgYrL23MFHWoeNFZ7smHX4seC2Iq4ICZrLEnTzigbGcyB4wP83pZ0LozCRb5OPnofjWYuGsXzQT_dhW9_1n9XhxXXM4JqbBHhthFPrlRWvYn0jW41oEXHd8rXfvjgtys2R29gs6Awi74QFWNU4DsGhiQrlVPqOU0xM4XG792Rx2MFNoCP_1U6LpzYpnHhAfuYJmr5J9nNL4sd56RsTFVWaNIAoLGPfYcI07vJYkpsB6QvWAxn20sqw8V1f9r34nrx93Oa7Q7MjVQVzYhflN4tqq9D_XBXzvXUaT8FNUF36USZsOXfhnz-UDtPSSuYgCBndCqanviXz9Dmx9xWeOeHlAoRL9aV2JBCznMpO9frf6go-RJBessl0UUXiV3-9gkC1ZPVADu-8n7dWXUazp3bC0nNMeXAC1A1YuZqCr2Ow6eFmKxhTYIocaw5nmP6EtNi46Q8vH1UBXhjaRPjMN-8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674e4a2919dbf5-27781985','','','2024-12-03 00:01:24','2024-12-03 00:01:24','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41706',0,'cd-form-entry','',0),(41707,17,'2024-12-03 10:35:30','2024-12-03 10:35:30','','Biomechanics Coaching Diploma for Personal Trainers','','inherit','closed','closed','','41115-autosave-v1','','','2024-12-03 10:35:30','2024-12-03 10:35:30','',41115,'https://biomechanicseducation.com/?p=41707',0,'revision','',0),(41708,0,'2024-12-03 11:03:22','0000-00-00 00:00:00','{\"firstname\":\"silvia\",\"lastname\":\"Figueiredo\",\"email\":\"artemisa.vasafi@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\",\"recaptcha_token\":\"03AFcWeA5ytBz5hcJBlVyk5m234AaBvFASB5yDiYPdUT0Tncn65JmQ2kCV_4usldc9dOJnU2m5IculMMacGnTYhS4a1rgetiAUpfbR7KKL7QyvbF3FLOb52gdvbBpkOTUNn3tlQgdwrAAbaeyq-rHOOIei3UUI55SdoGHYtvOFg_gFfcbday4yzgI99RO8eQKV2-h8aylSdsWvviavFggS-pZOfYzuMPkv5fJZ1Hehyiw0FyCsr0fq3T28jCu-dCgoJ2Ur4lUks3ofCSaC_X6JtPL1q3Dcj-pelkI4HHHuYpt2N4EhpyBXAp_l2meWZCn4P22IdQ38mR-pg9UBeJnn-KBVci5G-cA1GgicaAUzWv9M2Vno3EajU-oKvsALcGwvcFHKaR03KkUSDr2KScUDulgg8DTdPVwWfFAZtouhg75-ltroO-c6DpGnMwExDawvWGAd9_dHx1S-rUaBVy0OI9BN9pgoUCox7xAY291mrSAhwYj-RrB8R2XN5CyQq0OZhxJJ9TFEtRtTEfWuU-WAtjXQbnibIqj2gf4YQ3e42uyS6B3PcglS97TVaKSRClPVkh9_r9jDX5BZwXiwQMQWBwUFKoCyh0eO9ifDO2SMHaUfsijvxwj-2EuXkQiXcUJgQT0uDm7V5Sv4PnHUWjiDcOrVSIcNWNDXFOuEUNXoznFvZEDRBptYP8sdfTBMmgIh8p7whrBj2q89OFMsobvSiqf_cGk16sGd_S6eBVvz1TK8U_hXvoJ3QYpYcCkJysOJDO38W_AVX7NfrBu5UbI_7SA_AosgssFzgUT7kOqZQYjwzVW7HMkK2jwuXbLAUZmBxpGlH7nKO3ojNCR8dSVh1IxCp0nggs0Z22F3eQsHDCHMga3wFu-AH4Y7ae3D9mt2dpml7wCCjeN2KKjCPtFXMl6dNEUnWO31hL5apMiKurt4NX63UpehgIVevKgqwTGrCgxuIakHIJOgR-kp-OKIeCAfUHmID8ppgAsWES0fGIvlX4Zp73L-15RddFcjJj9nc36-9muRfn9cPs4uRb-5BUIlKF1aYYRuC_Sxi0FNpVVAETPHGzA8CFho5B5Pw6hcZ0xOmQWLkvP-5ISlHyyUkoMzeSqqJaYlezJnQJ2fDUiH5YNPhLPqhUmg_o8dby-lCDxVYNdd9d4xeJo3O3pyjBfH9eGNOJjybXaSpeEM4EBaGNEC0_bqrBA3uVCq-SpSrLu9pQ081YlRFpp5x3w1YIMz5_YN8vQ0Iw7_ruH9y7o6Jh1LzODCGNT2Ck0g4UazCz8ooQxPhzv6-Jgay8XKxbez-0YD2PFLGDr9qwhGsP1JASykxKJ4h638CHvn7yZSnmom2zKnCHH_hBaSNVtb98X3V8WYK14V3iAY7SKn8QPRBWFPwTbSYttz8ZyPZ1x_wRfKuhlgATQqkxiYaXpzGa6AfvSwQisTIRZae9VeVJOgN-hM7Mmlf5CvRe7p7Ue95FIbZpvi2pU7nISR6s-p-Y29bQqlmjeHQZG4CXStAhG3Q16w0veSCuWf2CnuLCCpqj-qxqBVSDeUCbXKxxlfS8Fuomt9q1lvBKaGuY09kCUsxqaLqR0YcTD-LwbGXDIY9Mq3UaowL2Mm40kK3apOUNCAV5wZjimTFUXCzsGKsPI_oMTYUEv6zvPenF6ziPyJPH2vUu0fEAyZSpUD1J5ixiIesmvtjkLVleRgJaxapllLqcF2dNyFoZbmu1qQuFB7SgJcHVNiKmzFulUSAca0sCmVlyLueeizTtG5z8Dw8jsks9qcJccM9qGoOdngz9afp7sZRkJ3l2qhCcaXfX-R2I7sGB-kOybh3X1xpYcYw3GXPmI3NX0S_ZjiG6nYNYVemJWDMsuiDIsoP3OSA-bG6onyX2LIVDAGlYaN50oemrmMfgZTeSEC7CRocvjlS1PTZzQvGEcd8JtCXaL4AkqX-cmlH5y5_D2ZrooxnDbXrZywtlnW-LpizfY8FUGzpB5xdJ0hoGhhuBm-nuOcRT7n9I99Kheiz45fRvOJ2S7McgOm0I-52mpYbzdtAWt78c827bl145fMZx2St1xVLg8v62tPCiLSG4o17GpYGhbSGAXxYJw_LPf2m-w6vqz4b9rDkBT5kLJYpcusCRNcgeC6n5ZJDLQ-tUtuVMObxI_2hVn7qLx7d7f1_xcwc5Xn0_t56RBEv-LqVobMlqaz9ijCCQyq9PzqHx4yTI9-hgd7ub2_PVEu2vV4nfB-mH_m6IB5x0r1vGM59mLRPGMlCSiM1kR86eQ8rSLiAg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-674ee57a233647-31549182','','','2024-12-03 11:03:22','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41708',0,'cd-form-entry','',0),(41709,0,'2024-12-03 11:10:29','2024-12-03 11:10:29','{\"firstname\":\"Aiste\",\"lastname\":\"Vaicekauskaite\",\"email\":\"info@coachvee.co.uk\",\"contactnumber\":\"07814121885\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA9bq6BhAKEiwAH6bqoCk_O_pLCx47b7jPTNv3S8x4ACQ0rJkFbXYTowqlDkrJNPXUtP-hJRoCFgEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7zQ7PnGDv5dQpl7e8qdv1KOaBQEgsYLJjzxfwul1Dc9x9czN47Tw6fYpuHGOu6vUIQbbRKPZV1orJy8V2RoyZ1OPzEJDAs2TiQ01vhjOIHXi6eQEbWsNOPlPDuWtC0cvBcHDmXyAYE0ApPukfg3irTXTOWvgvHgaxN3FPPLPF5iAiSq-Z6M4nBVGpuK88IEfXk39uYq_7C-DZOGKDxoy67tvJ2VB6XrG69VJf-4uASO0XDiumiIfA70IoP_88oSm2xMuf1_BOMzHlEbUVzVMMxZ_dqHPQSDeaQuOXTgVBdjY8qDBdmW8KnmKCHN1S6wgOVBGFM9YqYTtbzrq42PUbKY-3WfBAYA-pR3VGCDerrEgv-bt4SOUt1mc8mqLzn8s4fm9e-xg9XLvk3aDa_2wKVlzVwt8q9Yz45OeMEJhyyGOwtA0DVZSWGZwNYck6WlX7UURjvvAFamPeYzv9iWU-GrZR5ENIYfFP1OqlVGclegWMWTnmSTi4NMSvZBLwU-Ooyggy-PDx1TZStYf4yPXh8n2Y51DRcb2EdnGsnEvVyCkYyka6f_WtmWUnXSFkVrqU6C08U2MadLsQgfYohoM92AQ5FNHKqIkaiTupvsEQsBf-cYMphBBs7IPdI8cxrSm9_iCvkrxO0Hi56gqfkC3yF_y08HjT5z4H7MLZYPvYzItmzC08Kf273duNaHXn9qtAHKnAJXdzUQh0-KZKOJ_jyI1eO6e9JpChDVksza6P4SQAX7_CTqEx6PG4V6WNNlkMDTGZiLxrHM9rt-a6rwyTdhN8KqGjwXr3QPXkA8y_glNM2pL8DM2_PYqHxfIPjJ2nEpru-fs_sU7k0paUmwoE2B1KIyLiiQer3x-whjdvKJ7s_rE_lWpjwtijHS7ZzO0lMnoJPwEWkV6ZojcXnjtZ2MjpIOqI-2j2breEX0vmbyV5GnPWIYwOIv9jjOp0_NZS0yL1QbtfRZRIPZF48_OI7GseBiSRHe9ausBhmTfRww2tpFc8BPyGusf3UDfAmBEPgqulZ3ZnAsgQ5pq2ykneiVwrJB4rmRMljh7VJGBlZxaEGaQjTPv0nBTTEXrGSBnLWxnN8PWwm9M8uTQ8aOLJN-mb20QOPl-uWXsGihE1mBRZ6SdD0_4GAT8dWXBS26GsZMf3Skq4S5PfaAB-lBdXa_iFnDsoW6kj_kKT8at1N1WZMCHpN0wh10j6TBHd5nDEKYOCO3YeoSeW5_VzrvBUDG2T41fpXVP73f7vXGAq3f6q3jd8HFYiGOGzyM48sGHdYzxEjrLBJ0wtdPBSU9ZkwW-eE4jc-WxA68T8gsIYnMWsADsNxXm3sGdg1vKLjvhKqf3ZiyOvgIr3-xs8LavjyHezbm0Pa0mJYiRU039RamcpXHTeAj7vx07zO3XX_DibIh_mRjb73B_FOIpCIRSQwjD_Op3U0ak-WG1ptEj5BNlnN8LPLL-jAwKi4AGPhhQniThGuABKNkCwNcy9Ky5_LAxPsJX5RDlesLYccFQIG5luJ0vyDh0U_4yyi5Yc9ymEWgyf6-6cyB84oaxfxHyujjROBvz9QsSfjZBnFtciW7wmtEPB_pSxYFKZoMsdta1LVmPmEDguCseBpu7_nF38ZtHga6nuv8zlh3PwAJgmPg5SNINn7xCpsJhtEbconrUfFNM5HfL5AfCIs871KDXDqYY7oGGC0Fy7RH8xnnVW00BUs421d77F7vNRGSpeLcU9EHZo9tTASDK2-SpThv8oOKcuwY2Hd1DY0Ch7_GcFoGkKpdAg1jx95JGrFshAkUOuFJlWOx7ksKYg186YZdsYh-MYhL0wLvDl7Ba7sQbvUf-EInwI0nSiuKDUH-tTOMNarTfm3XIVEWnr2_aNtTSUzEXkDr4j5wNLE38v0WPtlnxtHYQGN_yYmB-9Qx3xn6_CCsFMVJkXHtwKMT1fN7HPbesZSKyjZecArzS99yQ_OfPvWgBMjgICV-NxA8NVkdHzo68NfH7dUJDvZxBLm93yq62wVs9HiRC5F8KHLUIPKvm_zJZxXjCZQItvvY_gQw7UWHrt2\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674ee71d2053a0-06849381','','','2024-12-03 11:10:29','2024-12-03 11:10:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41709',0,'cd-form-entry','',0),(41710,0,'2024-12-03 13:44:33','2024-12-03 13:44:33','{\"firstname\":\"Debbie karen\",\"lastname\":\"Smith\",\"email\":\"debsharpersmythe@yahoo.co.uk\",\"contactnumber\":\"07769905568\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6bKiOW8uOrmgUQK4mFdsHa0zxfpY7R2blj41m-S9yanm9mTm8_xLqblkCv-QvbdYwJ7IJn7eAQ9Cmk_SjXdfYK9uydyf-SA5i4Wf7zUeDW2MF6VYVlnbPX5w8ss5_svAAyN_VEYj3xxnIH9f8MWXlbLcVRqT4pQSJKKVfVz4BTASbrki9cddBrzKwSYLeWqH1vu6KOaFLi8VF48vUK2wAkvufRnCh5C4fc5_HKy5vSRvy63M7IGFw_4GvGeT_M99_BXtJPNlMROFaJvcRZ0nDyXhK_kjglsR_0t3xn18Gpf96kUdTuachwm8PMarvzHTVNfcBHZag5hnLgVGu9jAw5stAxpytDGeiIO0OQvsf9QIjJd7wKoqjrRtOY-Kb91SW96n4tNpLUVhztEMP7s27nCq7-qBDfcxeaS3GnIon7QzFhW1XQ0nIO7lTqaVyfixooKxnwkKduy_7SW8ViV1UbkkY8ZeJ5Tp5EokHByZCtSR6GSIcqCU-fpRiUwz-iicQ43jTyLEKdxnZAbvQvujXBXySAlUf8QB07B4jD_RHCVvwoIAAqIUVVf9tTw-v8d6kpwP5FjhCRKakuaA_nS5kDK4qlN5Vy8r1ueRRpYLftsbGyoHDGV_vm65cNO8Ln7goheQZC10tnlSYeexFQHm-Bo1mXz7_co68lWD5k2FuzF0C_kgkxOL8dApasvJeEiOgFGM5bnMK6A75st717QZn71L3Y63dGpiOSDSZePnk_-oTDxjyllLhCzUBi1FeZz910PEBvA24vcd_QWojXJLuqEEOAY1rBIPwlpm0SAMhnQeqY2ctvdh0oV0O9apXCRNMZE9jGqbalcSfhcvcf5Og3ubofgT0pywgIhgqBjfvticTHJRxIBeXYDxKmVWszzfymq4Yd_sxXnoBxNlirCISQvEdxKoRa6HhHA1pl1DqUVRj6-Ndx8rDAofFf-yA3cL-XBd2C87vmezDdAhVjeg0cFJHD9B5Ceb_t3wnWsgyxyMrSS-r73C5flrCoe5dcBg5MXNh_ZQS9tRsAikueKdOxqC_jlr1YyKYpGER0yLETAOHg01rWnWV2xDtAp_4ytipqBnAGxsIAmVxaIEvhIYFySMqus0WIqxxqcpffdumtaX9c6CbrjFyrPuFQ6dQ8A8uvVOI5lkYmwSolsPtZnikjNEFTnjm4okFS7pwM7Ocb-ux9jn4jVqB-1HjYhl0oULLG1qrdck5Ypx0fMhUJd_k-zAlcr4cGCIAMQz2Ndcr2wB23pHx1sslybI2gZ5Df_yOX2cYbESasIZd47pIBuAXIFqUiKklafuN0FoMNb-QqHe6XILREAMW7RGBfQPpEJCFD0cokz820ly3CPXrivFbixn56opO-i4TLmS0tXOxgTI9el-Fol0g7dDhbm0K5yGDjmSMMJP7hHxOvysOOmMVZ0suAo-b8iEHrclo611sbTI9LmjiqgcJ70K1D_bvRnoYShUw4PUEOxuV6cfT3jRP6nj0dFp4PNT_v-1BnKfTRFGjpzSvic2hoTQm2k9Q-sCVd9oJMT3aZihvHz_3uGGU4nmljgIHNQ4UpYHQeMLHcqCQnxYC_JaCKoA-_JFLF0CMUM34ZZYD2-unQczCGdR76XYOMll_mFQLSDxDB0i7_0c5zFCgjsMOvTESX4z4JNok8I8cPUjF0YvJr4NshJh4J8hYCTG8GrXjT5wDBar32ak3g1JzmI0Ap2aOSLdVDIA_gDkaFpGU6VxUSeqksOXFlRajVyHtQ1qtD2vMTDxSX31uLKzxyXW0QymxMmEYNNo8Bk9n-d02EVman5YF0gnllTFNOSfSeiX0D7DPv79kmQsOJo4d0TShvJbgnvEZ4UpDAJz-RNt1s0zRgimKfMMD7lDV9fZwjx0qOTW8o9CvTUW1eJgWhMv0E9M4J4lINAu_4z8JToDxwRVtTqd7J22swXuCXMA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674f0b341d85d3-98176673','','','2024-12-03 13:44:33','2024-12-03 13:44:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41710',0,'cd-form-entry','',0),(41711,0,'2024-12-03 14:32:12','2024-12-03 14:32:12','{\"firstname\":\"Rebekah\",\"lastname\":\"Beckett\",\"email\":\"skinandbeauty36@gmail.com\",\"contactnumber\":\"07860863330\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t1mB65Wm_BiThYpocLZunxU&amp;gclid=CjwKCAiA9bq6BhAKEiwAH6bqoL_la0PTzxq_Mn8qjKcjiGCQxzpYoLC1Gzkmwt7N3SFRpVawKKaduhoC9i8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5g304StRMeuke_8710mEYPVHo1Jye4Oi4EPrVnaC0UJIY1vX9HQW2TzXZerx2Zx0GukO0qzuYTHaIHWS2lapS2B_WxnIUsscpNuyg8iPdNwTn9j5v-nRVg6d2CCnfH1taGDn9aL-E7qPp1fGrnJ5xfQWJ4T8fSL2Vm1arrhl2deTkhGlIS6xQgNFNAcppWfUT4OSd78ZuEBuukQbMnpfYAT8m-ipfXHO8Aq5WePFMCbXQOGzuBxg5ieURZ2N03ndWnRj6XlULXe6jmOSxqFkMLwPLKlNRmIw4tRX8XmlQ-arBo6j0lB3Ita1rtJhzG-_JUyu2SQ4z1gD3b4JgshNIfxSpPz-tPQVgdcDTELufMRuHzpcPqWvkTq3svRkDbUJfJbu1zz0mlsAJCc2OOW3Pg3O4qa1QYsLsBUNk1T1xzJRPJ0dH1DQCyL5PG90ASExOEm3sxZx5EISMLygCOEe_5Jxh_bGwfmD8PB7QHCGbt6XvmM7dkGhy8GfWmXhKQBVTfa3D62bqtT_GoLxNzYxifDHi0NumhNyNTK-Hqv8wrfD-J0_Cpbc6r_0iUgzqmrjSjiYTddG2cafkx2iV3_gHZ5Q0TLETmTrLdA-80E019RXGDtpjFha16j2Ix_wuO-YIayu5Kc9fYcfutep8-xw34_77-ssSSFAHp0VnWkV89PkS4bSItlilqXQp11ZQfisF9-G__Wgs-omGDfQVUpnHXLgBBrAb0R5dvbRLWepPhxG8xoOtDsebCLnkNwa1UET28w7RGoUHVhtV_ijX3RE1fojOM-VnXyEdxR3PNpLcVxVMdJYfJgeMgnNjgYUIKBzIT8zSa_xt9PcGWo2SaLwUZwKEzSijqzi23ex3vy6aYqwR_GAyerz5Z3QjG-i_KVppkHQhL6zl9hp_CNtoFo4pQti1aaxI61YPDqdeYpVPQwEVsFT5rq8v4rnr9s1wfV5VY6uMok9Ii6kmbRal_rbjO7HaOnVogO6IzPN7oXNv3XQ82_oIVccwkowfMJv7cfOMis2qZsLi3gdHevQh219ajS4kWRVmQadOZa60LTrh0Dhg3lb7Wy5UcioGk89r9oc6Ne-xTHBuJEXXSB_fhbnlELtUkNI78VWqcuVnLGNmoR2mlmdiqu6ErEj1nTkVy8oQwN2yZ9OTXin-iLZYcJ6rzdKY4XtrEEtnk_WZ7qbGInI8EQET3QnnADGtc91YQxp4juDYPfGFWvQ4MOAmI4i3gPiVnvXsl5AV-57eWrcKjsbfK5OjkXjvotl57nKP0bdorG4xpXCQCTFpXFKY-rCbnsws9GuVsc9PZPTu2FHVoMG82ap8DqbhmO7PehcPukBWbR4OC6-iuXIFCn3ojnymdY1gdsssvaIjRTeF9GLUUmBWPbi9VwZZzP1sQcQG3OtlKg8JJEUmxYTHJPEAW2F5_P9QXYGiJyZUZ5rmTyEtn9eQx7-qYjz6fBJ7x3svQaCqdz3TU_ukGu3lbfmJihOWoyJH8zAVUPG0kzQlXtw54h8DXoHryS4vNrJbs9P90rf3i9QWDjjTtA032pnYeKwnY-lPwPRZmIuaySPM82Gyte9Maik5aS2sGJs7zyYulDvj7TGECtQNL6huauYUs0A41gOzUyOdBWEz1d1HTHYXfYNxRwim_8KwYhnHVX7mYFK9NMivra7-qK2WEU-DY5ah1n3U8hlRp3tHmTliOoTfOHQh5Ba1qM86cJxbXqgZvTbpR0FCMjv_Fd5eP_o3EGpk73I65DQZyfjwaM-fq5iSsMcgNdhuY02sQsnQr4iLOULHpkZAOq5bp0z-fEsgusEabyJDfGbIutd8QwT4d3_0MtjyrJtWamZkZK11MSYUkVV-MDK-PVFnQG-1A3GhmbCMYYgTUO2R2VbyhqymAcVz0eXEFtjGmGbBecXIwYsSvlAfIde-h1ouT7OYfixGI7Tcen8UxfmMUpIVBBpaDYVLpJS8JUh7p8VHU1s8ckDG3NaKtc0nSyYGUBN1OxLpYJnKZgOUD9ftsmEyqQsShKMUn68BJEikVP8pv2rkPPKqv6wxkWnkWlPUqLsdpGkefRv6HltMPTw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674f16469e8832-32601525','','','2024-12-03 14:32:12','2024-12-03 14:32:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41711',0,'cd-form-entry','',0),(41712,0,'2024-12-03 14:33:59','2024-12-03 14:33:59','{\"email\":\"skinandbeauty36@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"4\",\"currentpostcode\":\"OX16 9fn\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t1mB65Wm_BiThYpocLZunxU&amp;gclid=CjwKCAiA9bq6BhAKEiwAH6bqoL_la0PTzxq_Mn8qjKcjiGCQxzpYoLC1Gzkmwt7N3SFRpVawKKaduhoC9i8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7g-JhT_63UfZB5AMApn5z9AvHvlTzAE4sSzt37MQtRu5A2y5J6BnR-y5XH472YSmV0YPCtziUx4smmP0RunpIu4fO0aKFxqdk71MUJjCsUKjwezZHJlAOrqF95UgogNAg0JMBNa-i68NXSfdhYh208-8dvxjuiFmCrZAlXIzLPD0VeDJOgV1-Y5foc9EZKOC6u_LP9ndVWWJFkKCSKnA1IsosMy38qcqhnYqLyaqTqJBR5gzkwouCbg7GXADd-v7HXXqFmpdPppyLoiWFJSz6mn38yCr-xslquaVo-GtV_vuPwxsuVDDVjbW4mD9RjBuyElWLiWGsUEZazMR9SwCWPX1pY_b3_ta-soJjXnzL6TSiJmGx9EvjnROMPFuWlXAKmliAlpAdpoOSO8JgXo1jEC6jDzvtJMFH-ahD8Ga0GfPdmPbkvUwdSwd6CpCMsShcpAW2TNGyi5npa_MYcfbZiolT5AeHhQOMQC5e5_oEwboc-0pCX-7rba30PMP8E16TJtQTsjSn9oyQbqrxpHPlh9vDnE7Bs07sELBHrvmQYWcsqqLfYzDNg2EvOH5NgcmBZx63t8SYc92YStsUNGPrz0D8qkaIyoPZDyHGdrNSHt4LG1KGZb-2Ce6PPi9s1tMbF-70F4wntNc_nb_7Q4w7pCpfqGChPKMCPHm-FZksrkJSFWaPvoaZL7lZ8uezEpev1JPgfBrFBxsCqUudwYCBrwqA4l7ZND7RhRUxOEHHTnRLFOOTcjxE2upXra5Ud-1CldODDKawOe5huvlMsBCEj0TMegYSQFBRXsuf1JkxNttx_xAwVoBtS6-j7fOYquEPP1ex5udJ9x3AJO49G-ZSTAt53IS4vskuj6mtb-ann-snFec5hEIGcaj8FdGJPmSV9KHM4IzgoiEEPwn7D93j05K0rs_sY_mAf7nDfTfvr_f3Qi_ycsMzsEJihZYW15xix4vXb-sPJtJTpS7fR4u0GvsfuKf1vscu26rpJzOK8437ph1hr1XiMzqXnmI6XEL5pP_8nVT7IxRgIWQvMmn_ucC7p_b5FiidG-vFgvozTn8vcl77cWXXHKTXqfGTVfg0ZKZO2EFim-r2Ir7_DPhSQmbVHZkCuRccsm2doHk77lMxYftToVO7QZuK4s9g3p7Z3TbR_ujpIsg7snD-Jt1AMheWk6eetVzlH7YBzUTBtspVpBMO558au213w04f81tvAv2khbDEORR8TWh8C-3y5rzdnL0DfCmRR9tQzh8fG9MvjLi8vWASFPO7Q9nr_Dxc-Qd5DTT5HbKEi_7MT5WvBFvCmAzKI4EB1A8qe1XiA2-kfSxBNBjkxPU-GuAQNnUVYOyFYmGVJ2ZGJ10dewHtWPwQkNf0cib7dtAqdnr-scXOg8o8OTbNTnnaRmFPdXU4NPx3BwAeG3_h-1LwPj7N6IDiAA-cBhiV8zyTouDq-fxGVPbWBu5Q-Kr_ayRAsziD0nmY09F6710L1qtPeqPbrH9uR_0Be-ciMZ-_cJVN6aveLI-f0wDrmkaD82xwhsi4JuMx8XotEWvCP0Jw9m3b67AvQw0uLv7nPiBUKSZiuFM0zuOD9d76iMLTLxiL_1-GCAJVbtW8AfoOtPbJxzqaBBuzHZ05eLdygvomNUPexz6AE-3RJBSfgZP7sGzgw-QUy0VEx3JNnJsfCJBTIGEzadcCZJ0yZVaFGG-JqudnuFsS1r8OWdiw_wXc4pioLIYCYaDuP5dyKqeJAsxpxgEwjaIuXjOYZ1O7oBQmu8PDSxFyA8QTwl1WbwVxU8rU3giApCiK0myAkeA8nCusL1KUYoyl9-tbWFZ8fSfsQay6bbRuIu81J3L1SlzonWgiUtl3ApE4wstsOhbuau64lZlzudfx0o0qI7qaerJ3hQiRhHHQr1nQsKSfV0wj_PDfclyv21HENLn3KAJTDrGtfe1BCgnqnTYPm7GtLfOKinQDfoL3BBnwciUkp2OyDFYxlZFtTuo_82z40MenH2PVDnbiCJfZ2VtyskCLVyEW83jeKKvB51HBAduaQn6YtZl2Nccp14iMAlIIPMaEBv3ZFvAIEg74PR7QpfBsQmEMYgTSG18Nx7Wo\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-674f16ab2b4237-83286113','','','2024-12-03 14:33:59','2024-12-03 14:33:59','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41712',0,'cd-form-entry','',0),(41713,0,'2024-12-04 08:08:40','2024-12-04 08:08:40','{\"firstname\":\"Steve\",\"lastname\":\"Pope\",\"email\":\"stefan-p@hotmail.co.uk\",\"contactnumber\":\"07706136240\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAmMC6BhA6EiwAdN5iLWiT-0wHjEaqQaOZVM-r2e89fZ92FWfPRHcYmRsqa3g6FsA39XpQYxoCU1AQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5418qmBuE0mQLSNVpIEkq5wsHinOOKH621OfSbYO6jwUAK0j4V3s-UmRElbLpvlcdm_piCT_7d2OCdrmogsNNtpDaY9sa0iEJuGKsiD1VsVBudcwIacAQXn4glvGZZahctX9sgj9CS5Vdv98sHY7plbbJ9ZubJFCSkIkybZS_f-xpF1Mf8UcJAIn5-nbaaNnoAnf9WPpfGZZCRhJv_AWpQ1NidTmdGN3hhkVDTzvLR-_xXsL29fPYw2HM5GbqnSA5ltWn3jMlAHkoD7pLlUdAAyhaHO6zwnSALLLOXea0Ba994kYv9lSuhbxkXAz-MzFh-RbcCaOYt_o7kwopYcV8faGoFUW0wrYCNRlAVJGwjerCamKQJ08fTBEP5fBXHGLoNbnoEJvAnjKde8UFsdHBfzFJ0H_7mD1e4md3IHxLdYb2mzff8Ll70jmPCzsYscTm_T29QdwM0dcY0biQjJ98z35ELqW_tAgR4DvuuUrHNV2XOT5VBmJkG4TR9LRNQ9MCpwFzRQjAgbXLhVkDRuUJLlT2wP4zGydn0L6LWFER04EU2kH3K1zDJoIHI1cdUcjyUg5ObQhVX6B9FQ3zejyEJ3glauzygU6-c8ID9H6-EfKx8y-vlcH6hHnYnXm2HlbIxKLdtuYyKLi0FvPqmbsee1CqzZXqr4iSyGMugcPt1bs7VzMvtXkeBryqjySBVNJsyBoTUVuJ8JBDoWZGKTaT_3u3ZqJCkIefmkktRflD8C8CxIahMpmKgq91bqwmAO64DE4pc_RD8DfWa1855q42bchpSHnWke4NjbQCZQ2Crje6cCgolqP7M4iY4QKmzHJHvaSsI2aBa_hlKE1YtA3-U2tZj66LRx6z0y6H1W1rEoEtga6vjJI441XrvuOZOI-c4xo5bka0TPlJlIsd2q325GB2HGJFuCfkkHzZtRdx3GWmze5hgrBxOO-hDspt53tOoXcmd6AgTae0JJBDBaLOnaIlVu78ef9bCiXvsgax78uEMiyXMYdNLC0_FbY0yiOg29-H643NnyCyhWFshXZVlbFSTXhZUv-lXF0xPya-VfH0ETLm5RV_ODAE1DYJHRl2JEfYX_99nyUByPxy-3NnhQvbH_85r-M-TpdBIUZiANaiYzMIed0wuO0uK1QflI3OSCt_Ntnf_jd9pd45Gg9ICagG_E5aXPO-A2KFYCmK4E8Voj97SKYRwFx_EFXCl1QjvYmcntUob4WUZM8Tqmn4PM2rhy20WlvEyE183l-egt2_-gxyBbLipMSPhUofvJBbPyW7EyyOvV000aOSkMk9wVOkImd_OamIIZKoBBZUmejfULwwRKs0PeAmf51thtr-wUCWguBgTSMZp9GmQiBsODJuHP5bidK03tEO3dmVanDqDbHmY3U0QHgcgnE-nB5vb2utuaCopSqL5b3e085ko8sWouEoOV0k1qq26zphJUx1m0sMJjialZndDQQJYyfeyYp9SU5p_0-00LUtNgib_CH3JXfgVgWK4Ud6rtQf6HH9Cie68XGxd5bD01Iud3FHgoVsNWrO6VcPQ5OA02gUwIHc9kVLfg7e6VV-t1baU7ncQlJV0aWwMileQ3uT0irVaw_2LVzr7a9KolkHmbD9AjUG4vWyyIbxFfMVy4yRYVUimcDxgRNf-2ELRDqxDNnRCTWsRhlgtBXS2QTgvdnwOHZelVnABB6hAvBwcaVfgDlh-lCVFxFqHasUw5VpeNc6IJNZjL03LDQrpIgwuJTr6quoy6oXCqwGdSkoPi8_DX7hyMYJ2cV6dsWz8liQBTXWzMZFKajg2BhwccFAKqC_kq0oYGJJSAOEiN9XbDs3SE8DpUaZ7qZtWPei-fYGdrwTzUMjoosyM9taUgo_RXywBcu22He-fklWzLE85Vdj_AHx0uohtvhu3PnjxTxMUa3yJpPoRHbOWKKJYKzxaciIB1e6rwQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67500df66ac7b9-87495579','','','2024-12-04 08:08:40','2024-12-04 08:08:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41713',0,'cd-form-entry','',0),(41714,0,'2024-12-04 08:09:27','0000-00-00 00:00:00','{\"email\":\"stefan-p@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"CT17 9EL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAmMC6BhA6EiwAdN5iLWiT-0wHjEaqQaOZVM-r2e89fZ92FWfPRHcYmRsqa3g6FsA39XpQYxoCU1AQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7FQxEKKLRTOaXMJ0SHvokm32rVFs-lC0ElgylpuWhoQAC5mjWx1_VD5c849Vto77Kw2Ain7pRqMnOt-Wyx6bnPm_77ZSZnAhpkIhxOeBEniDbjglp-T5cu793knxEjFrq54wiExicEQFDYWWna5IGABgOGW-VpXfzr0YU1IG_iu72xfGbveOLrfWV7p2hEvqR2wYL9Ghs_-OPBMApyN3TQttHLt64XAy_KYjmU2QG0-vyr9ZWIyxkfBpa_mk04Sc-FaxxcPTJtsXsqpL1KKtjTyopZZy4e5mrrFkq1xd-3LM4i0cnmWapf_C3MNj3o6qaSq-Qvm5zBrR6ZTAtE9X78LUHCVb4MEngQKO2JWN9vuH7hbc0URwzULupV9DCV8obB2xGYNcMde0Z1hSXUW67RNJsAeHWz9oSgf3SqosXfz3G2lMwBErkG_CQrReVKuMLpgLGJpqh8zo1esaQBRKCWJ6-e7th8OVjSf9vhmr8tJqqp9DWkGZ7xvL2Durn4M8D3QsogGOQjA_nQbvlIAOiyoNH4I-I32kIM2zOkLR5y6qSOw75XGQshP9gJnYdHha43G3gXmpoORdSUrfBPLVhR30EB0NpMGzCqRjhyREgBz5KTaYl94JNS2edU3-dSGYATiQVxCl_UAXRU6YrkynV35vUUdV3DdQrJFQGq-MRhfOfmYPvaKy-9ksAjurKS7apIW-RA4GcMVt2NT5S7F4NAJhtnaYV0LZOzYXls9vRN8zK413U5rZTpjFtmbyBo20Gl88iQnBNclkXFr_kFLJobMsd5dkU60l1uS2teZqSmKt_Cyb6VYx1vS7YPblXoJ55F_HCKsrVLntnCkbdfhCbrRadyZvjtpw7kyBrU-1q03yNsN0RuRJaT_Buy2Isj353H2YdKbby_hqIedjm8M9OWG24Ccm9G_mjjpqldLTBzIoqLvlk5qxMeibS2L0MGVDmM2HD3pDkzqYkpE5bUcI1hN8GqjdasUzy4KR5TY-N2ud0coeG_qWi7MeGoGycAEeHD6C5pibg3K2FXakD302StST-e2EesmIsFRjIAyFCKkVq3mN-RfczWoQe_54KHYioq-ZX0arE6oba01P72QrIpBs0M6KfU3KcncraLYvFMGUjCGGMTZk8BTHuPteX2aGN4pk5Yjnscq5vHe8FE7Xq73kUkWjFsGEqfWJwmSeSXUaWBY2qTti-cX63nlC3PmIjtghLLVeC0bpVAJkEfjK0JZzfaZboxSdQxJpNfxAYOEE5fczGDLwyvPgagn7xZSod5kRthmUe3kMyzLQVbsMFZUnthfoHsVReQPfXdYGb-M0K2XPO6utniyoSW4Ll2y6qE2YEKXEg-xx6w-S6qIp23p6DBhMbBDfQ3zMQA8XDjYIoqho000mJRSaW_gR_oDgBHeSkKaMau1PYqVra3z6mIU6GxD0FqURQuEE3ZXUXalM99wX-7JGSPi-HWF96LLDm_YsZPOs2hRUtUXfTFnUcd0jHiN1GJ0P9LSKPTaM5uc7gAdBMV2zvUqcWek2D5L5Z6RZwXo-92Iok2uotJ89VlMKyafuRByHir_y90EdFnf6VH3_qYpPKZhCzAu2BGDyFJnnBSW7_VDZrn6BBHensVUQiEnx3y6Q84TBssCn0h0xUCFyZ0vK5rI8nN2D3VsaHf6jB95sOCrvXq_fgfkxb-uQjXhb2m2_Iof9qrMpHepwFuJNqJ2v1CZYtIj4JgkoAdARS6S9BUKENvFigRC2-H8yVYg5wbuhkgOFOZ5XAvUHNMUnlx8uxAZuhdTwMKT8J4sv-JqGgfkrQw05yf_GuMYZ7Zhej19Pc2p47_vgMDAxgNs8X2FhurszC2IWzojA1lHRYCGF9QpLGuO6s11dcGKIUduCv5StJdZk1cIZNI3a_nlwSpszXph5TLHG52Fjfj88xbO0ZnUWAwHhNKOYl3g-N3aqLeu3Z0AJTMlW3BxPVBiXQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67500e378f6ec8-44096891','','','2024-12-04 08:09:27','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41714',0,'cd-form-entry','',0),(41716,18,'2024-12-04 14:00:34','2024-12-04 14:00:34','','EMD UK Referral','','inherit','closed','closed','','39038-autosave-v1','','','2024-12-04 14:00:34','2024-12-04 14:00:34','',39038,'https://biomechanicseducation.com/?p=41716',0,'revision','',0),(41717,0,'2024-12-04 14:01:52','2024-12-04 14:01:52','{\"firstname\":\"Zsuzsa\",\"lastname\":\"Ember\",\"email\":\"zsuzsa.ember@gmail.com\",\"contactnumber\":\"07753306534\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/womens-health-menopause-and-programming/\",\"recaptcha_token\":\"03AFcWeA6xrF_AjuRiqQPNdRg9EuIdXWu0VnCRpsNFcGzLMGWd6jtw4VTd5hF4aM5gosjPFgIH7qO2o7U4Tsw3JUJwoiPiWg80_eRSsDYGxvk067Hc6BMTY5HoK6XFiXQ8oAJ_yh04YoACQwdd48bGEHaKgLruNjB5-blnaMyzhlnhNR421JRtV9J5fzZSTZu7uHjjX2XzkepOZSoYrjKdiKNn9uJRzdH3ab4iZnkzo-1ZkjIzSy3cWIJgsIQj0NNPXaL5vD_M3zIWl64UwRoKy9MECZCLLLovsOTSOYYbN2XutWPAKHz6ofKh-7ypzObzD60SnE_LgL8MONwi6mHcJXZaxjbwLjKYZ7NWYJZI8YKeJfMUERAOz5ePF8HydZ3wLqTZCqzh8nxBYjrA-M5SpRiYNqlrWLl_6ix7rfcU2RFWxb_q5aYfFVGLSPRDwMK3J_jOLl2o6f-A9L3pPCYqCqSgFfDK5CZ7og_s1iPyRViIdi-0jt1D5EAVjlygRJRnsKEtEHCIYlazP_k2WACa0ZD-9QBU-RMtfJ61s8QkU_6TBZnxzpsJom-xVtpQi-YqcI-9SBo9U-MDSMf2Rnvy-40K3VntCNXn0IEhByGSYWejojEML2ZQbJ74iEPpyIPK1tutbHYeeDxZ_e0r4yOHQEd8edK_RszYQKyxkkHpUYIa0xAoQQCB6eOzwaiQKk_5l3UPD-ndMSqLAkniXEoZFnZF6uwHvRKIHlnmt7kgCyeQP7D5J1QBo5JAB55HZ0icz-LYL7mczLjyEl3cHv8JeDVVGD0ex1aP1tOxYEDyA8kXBVY3mhGe8qZplAGPj0S4Pa8xelFAzn2JverKrHf3f_bgeXt2Hy6e009EQZss71fViLTccvOYJZ9lxYVKZd4FL4l_mOItQyslKmGyNyusVv-2qLrSgUytQSjqr7FjixohbToRSCpMZeHCcd3gg3PoChQTeEYxa4mHIP0p_YKBLI4aGOpEfkRXq10K5keWzKt3xb6V7X_w4HPVn9hjh4bt1422YiYQBn_pkvB5J7r9tECQJgTis7X0-wj6cMb5tQCLDLj4nn84rYgsNLZDCM28No5GVXZJiMysXoCGzhgZ_bN3_gvupWKZr91s6WfGi33JUXZ02a1unfGMF9-YdO9tGvhCt5TvVLUPbhsSx8c_8zO5Mp6E8aDrmQ1SEaBrAM0Kn7miZWbfEfYw52DpnQBiHHr7uCdS2ycQGY7bPQ6fCDIYSqIcZ8YPRarwVgb0XiFMNlL0NFpudaNIEdqfM-U4Lk6oRE9b6JVkTINQHysfES2FQZTqk8M3Bc1A9JOqHPS5sYYoZxBRNs_-g-wry28YZn1BYZ1oxtXRIE8MxX4Qppy4AMelm4zhnxm7NsOVupTlhQoJY2NysYEYg3Jxxkw8YkgajdKKr_LBmixGSecAFQalnwxRqz8BYTTnG54Lr30fmsQFUd4lNvfe347ThlvnQN72GUbtj-Y1qRR88dvQKu4RXexjK-w9vCQqS6vLDhfzbtYj0X59_vAw0f3c5vV9ZEz8GeRSG5LiTXLn5pqDCLdhlRI0Ce8nd8YtRAv-t1aFUOJW79B6VlGZAm2M5iOo-IltX3N4vgxXPWYh0D5fZW1g6lBU09JGIGlIBR6A2U7W-FY61DTqN8otI-ezAKxpGj3jixLGuuTd1hWdd6ZvX5pIYMOpay2cmU4DMOlOmdIAzUegFcqOoo8HFXE1s8GkfObr1GyYMWsuyZcNCUdB3l2mTUjR__b0mlIyhT4Az0WB38BpdCfTlg_cLCDUt8ei6931iOVBUWaXI6C0sMJAAAmID1emZpxtItIO08w3-pNffsBCdN9nxzbWvIfsIiTt3gidrngkBfbTrASfoDl862VvccsmLjSlVWpShF7KoYAphAzjjn_gxV0d5qwV_IbGcCLCrtL5xkS039T8SMF-f2Eh_pHssmJd9w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6750609f128273-76882746','','','2024-12-04 14:01:52','2024-12-04 14:01:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41717',0,'cd-form-entry','',0),(41720,18,'2024-12-05 12:31:52','2024-12-05 12:31:52','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-autosave-v1','','','2024-12-05 12:31:52','2024-12-05 12:31:52','',39245,'https://biomechanicseducation.com/?p=41720',0,'revision','',0),(41721,18,'2024-12-05 12:32:37','2024-12-05 12:32:37','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2024-12-05 12:32:37','2024-12-05 12:32:37','',39245,'https://biomechanicseducation.com/?p=41721',0,'revision','',0),(41722,0,'2024-12-05 13:35:27','2024-12-05 13:35:27','{\"firstname\":\"Ellie\",\"lastname\":\"Reece\",\"email\":\"ellie.reece99@gmail.com\",\"contactnumber\":\"07411056492\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6qTaoOGSoPicOMnwJ35WwjcKnh5lCobFukCDg3r20K4VY2H-NffmKVawD01vBXyjsp3Ff2FVNNmFsWi5ScXkq_xzkR7PM9xkLm2JU92_4bs6gyKNztCLf3eNJVfw65lOJ9ue3odt_NCgKlSIObETt6TUqWnprp_d-FMHJt5fHz8s8-VS50VAfUwa3g4i6nDVeNC_cyRWndS62DQm48-N61E2Az3JeoH_FBXcNSjwyZ7CsywPMSqSasmS8qnitMpFVy79oVoikGFpWorw0TQRxSvc9hAkp1jEImtRdhUitPtDXX_AheDj-h5e-OKR0h7UVXOWbhimcm4_M0zCg93eLpp5hvicE7Rf1QzjlV03CiBQkHcC4JYP36jspTQg-q-N0NWamaG5wdxgWoSyFF-n7iBluH7jo26ZWTRLlAsJ9kNTb57NYzXqnTjNzPC5WCR5MJNEjYTUTjNivZUGgF7rndazpnc_v-jeAlcKQwwY_cubslK9FlOr2G0tSU8Pzeg5ZZpvAqKqYfSo4Vh5nA5CpBWosgHxfvg-Q94YcFiLvsuM5j-E89QFvasoptyoIp3f0ODxIRuhDCtKkUqfOdgCwaZXCMizPWuxcpyM3IeXNz-47i2JV3es1AoQP18meBn4E0TSLdszXy_nN6KdfxY4_NE4zGZ5BN5LLi4_JrSFMIHRYZ_VkgaqI5QNn555Mb-jPy_juQkwWh2m7eSZKuUER_rUpKJkk6qhwpTSVPrNlKey6FVR0SRatsbQkQlieT2TTrUcCXPSOSgeiwESwxld43ffJ-RhG9UqyHnzojo1M70bUXy_K1pSva-sqeL-YyAcTBvvkVdP_JApCqTRH6g7SiUCnDhXlVRwHNRY4CGBncNqYCdiqBu3TBa0RJ7Opk9d7au8hOOAr4FF9YZD8imEk8ThYyTFFT9_68isPYY7O-pT8PqjQVKt1lXDbrFzSmo6aoO_TIhJcazq8JSwbamaqIo1YJ0IXqgKr_Yklu5H4clUDg4fPdvI0ynMwlgV9UlwZ27lfPQJMsk8JBMVc7ItBE1H1KkwXqqrKgQ8DqetN_f8V8SbX_41psliix0gwMhR6YrexW50NlQp_H42JgYazsEKf_zOwcv42nXDbxFWtNj_xe3Em5D4T1ejvlnhvOd4XO-qzOn24ANg84Zti7sulUIYDZiJXCiHCm7r5iLXFrW_4H53iz35IVHLK0eWXTz_YM7nqRXxIqjD2t9T22JlWbpWkXtYLOBysoBkm0nf5pOWW9MAkeanUNWFi2EP9QqDIFFrhyYCcIH8Au0nzOSjOkCgT6ejSJs94JlBF93oAxe-NYp6-a5bywWzm-PqgilBtSFknGp5jglrIiWDvDMvVEABruSuymwzH5QEN-X7pnKsgi3ek5M_TT7NSNvlO965Sid8x1au0JlSeWaHyCVuzSPUmI7IxEjNnmyvIE8LLQTYcpZIQEiB5faL8bZpCsxmwSAbeFur9FixzEyLAuAGn60ehzMUrMKEXDXZqxefGgyYln8f45JB3vR2serbOnZCrU3C1FmqXq0hCs3QM4Y3FMJuQ7lOmkFUWhlcabI32fceqwgsz-xD2GiiRv_AfFqIEetaF4sHXYAS9hCNPpiSIB1__Yeb73vWTGNDZXibZcwM1mdDrlQ_6kmNRPFFaAE_WlLkJanqjJzhhhFokH3UQvCQTmMk3IN6b06qa6oOhhPSwktQtvu3YDOWXnNmXhBmlqgGjw9Vj7a_R1TSfmazxbi5w3jlx8rHipdEH9aH7SVDrDijwE8ZVmxH5zRZBn0Z0FrIYwVSRQM40Y5nXhno87bXrta5ScWG0PBkwut1Op7VrY9T2BFYypfw8qoW9PBrVFIQ9C0vFONiyt_zDDaUC-W3co9z1lCiHSQT2O7oJVsjxtUlocQ7_EfidmcVSnzI38hY61d5eB_Hwy6qSiPz2sBoR98rvbC02rnWaW1SwKOLZ13hKjXXrSFXG6gdhBa5LXSxQ8TPXYJ9A1U-YeB6tKufkAds9pbzBb5-sfZIqF-enLE_ZVetiQOtsGPbCLhCrbhNb5yKE1i_gAwjwahlTYiEL4qc9q68eRD35_i0K2t4oU-4afhGKCtDeARW7ipAZl_5f0xgneteIcye6XrIv6MazH3C-oTjEa3wdyItKjgq2Evsp-StjewBEicgOliyHmMkmG0faVuquP4jY8ztn3CnwoT3aUlc967GlpgsQF_7BRYy2h_5dPlI3wwTT-sPIu0cnbrD2L0qXGLATwSHjSvkwfz_tZKL6om79-GXwGohHNxVA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6751ac13707be4-99384303','','','2024-12-05 13:35:27','2024-12-05 13:35:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41722',0,'cd-form-entry','',0),(41723,0,'2024-12-05 13:36:03','0000-00-00 00:00:00','{\"email\":\"ellie.reece99@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"RG264Bt\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7MRbl5hl0pY6sRPRGFmQjwb62LQs6YndjkdFTvL_SIgXwgJ5pQtsKkfIx7e92dtKgXHQuF8-E8DMAPOPQV1mcHIkHCYgDbJ0ZCu2cLThM52rnWiCh0Jo6VXfHZdDuqL4QoY751XUCRyIXApYkEsD-2E8h_nh_FjjVcfqucUf20eehp6gesVRCGdNHkAF-IWfjaqN6tCsQSengjXsfai_OlffSXXSj0m3WdhcGSNsxj3Ghqao0P1QrskpfklOlaI17wkyKOAs2i0bJeQ74wPU9Z2MBK3j1hM-KC3lBsV-L1-4DCKaRRdRswrOk8r42VNe5l12N9hqzL2HA0vvVT5YZGuzyXGrTrO60NVJPHkQzBklUmwTsSTJZYAIpUNtph-fYmNo0od6ZxEcXyfnmrgfI09YnHw3cTlDmUx5QIMcMA_pRdxhsTbNulHGqiTOc4nwc1aaVoT62LZf10tZ8H9lA-rP8xtu4Ue49nMaJFFCPYELvWuFBh4U-7dLqQcRwT1S4d1lD8sdLURGx7A4JfP8FmuHxWkUXNAJx5kLRpmh1iyilgOKQz3PfaoWPnnJBE0_p1RhqE4DkgRONbEOP5dsP1jtp11KTm4hc0IlLjRM4S0r-o6fNLXkED2-NOu7UZgjmRUkHnAH6AIoEyc15tjt9bMR2oSLU6Onut_61YYkIRce3fe1CQ6KXKPKgTj_JRjl-lPLLL0NoslM3Cei69OfUJW2_mYQlmpx4KF3Tod2y5iLNUSbGgvMXANR50fWnHiEtRMwzpAeGhsNoZD7Ls6DoJF5pVnhbVzlEVEyQ9X9asEzhPr3AwZrBNbWwKv8AQFvsx8XQ0KqLfT_3uDWXtuGKyZUSJhwOHkRFHHd-EAGWWCAc7Yf-ByE4K1pDoJwpNuIH1uQFIk6Dyu7enrq-JOyjiHqTDrUWP3rhi4eJ8_M9CXK1ViWJGD4FPMbGHD1lNN3Gx7b3gRDTwOt1O3hBLa9O6_-zJCmwoTP8BFlVxe1CVC4HWuu3TVbmUFWzxftZCAsuNi_wkwydclsbxJsYSdVr96p0v5jv5rlROMlL0JZbXV7o2NFzNK2SfKDbGjo4EORKIxc3SErq0VrTOQP_8A8Eb5PYsI4p2ht4MAjd2pKAsxFB0rq6AhUBAdgGLpUBzdZlELyn-ZFMUaTDVD_w7KczkvlvQgOSqmzXYgBBcMxotO0n1kO3vChF8WfkARZsED7fQUMUqoRBXR3cL4IjDowVCy4zDV0XuKruETkxnDRqW2GUyMsV1RNA_YU_KEmVPAyhB9AP0Yk-0o-a-g68cJ3E5g8M7D3Sd5K2Pn652cYDcf9j8Zwz1UJmc3Tb4gJHl6UyRfCfYxTFjuroWC_JtoqNOIvRCcsY3f7rJAcaecZ3brOXJZ43KWoCiM4EMfhNJjvdmDpALPnxdMJ_WzHPXwe-SZnz8CR_vJuv3r7-lVZnRwodTu5FpX4aLRJUMOEt_LwoTFa4WLhZBCarLoes6Vll52orKyZ-WxDW7ZuNoWo0RiN99GsaPn1HLLOz9-B4Lj2w5BPkW2Dwga5r-EZ9KI-nosqQgMeTY2bvt2Rk-ALANWYX4O4FkgZIXrwMNyDebwZm0LW8LkogKIoQl1S9vnLGgalbALntTjCMRJVtLdLeglpG_BeXtpTP1r5FLOwjqxP-hBI87Ka2STimEOFN1dkG8bAxRN9LGaryOi54QhefPXkfbPKQK4ADd09LFTIzTDcvQ7foId9xW6vkTngbV2ohUEKP8ye8ou567EXyVw9yavYuPvZDMnPBnhyCl9FSOOBMhV7rdsE2E5CmnXQM-zFo8QDVJzwjgYd2LwBWGfmrLieCoFGdlRVbtBSvAJyCHFCOJxY385ywCzx0S1vOG-FkJkcVB6283_C0g740QdNQijcvbOTbQyBVz7tixepAZ5oQ_YvYuswyAM-VNJdSPYDpmZvumYYQnvbo5O5pa1JstGXzxipjSC-nLtWKlgW1Nl7sjY-c6X2gcRcf95gVS7oqWEItnSW1I2ehuzYHH18bj4I_yLziVHRrx89BF8T_h3NUbN495y0X7BE2uMEHPAiB6dgDP3vkAe-xVfgwDBPwEtey9L1cN17AcVYs-uTkc6ZJyGGbzRc6WhnA8IbfBQEXI_QlrvhiEZKGmzqIGsgViBMNd1KideMwWe5kRDjVn_rad6Dbs5IRYG3BdyIBBFU8txKSS1s_0JSpIOZKia3jXGCkCCA6Z2kvyc8bIY66bfHajGVXND52QnCw9KYH2o9FAX6DkJ8mlfywR4wbVP7j6E2H3SGg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6751ac4196cde2-55475912','','','2024-12-05 13:36:03','2024-12-05 13:36:03','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41723',0,'cd-form-entry','',0),(41724,0,'2024-12-05 19:09:01','2024-12-05 19:09:01','{\"firstname\":\"Paul\",\"lastname\":\"Taylor\",\"email\":\"paul@tayloredfitnessandnutrition.com\",\"contactnumber\":\"07967406751\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAu8W6BhC-ARIsACEQoDCWPoU09ono4gbYcmLIpz-rBqUgda2O1qGENpKmNzY9txGzabi0JqoaAiCjEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6weHW2_zpbVkbhbAeGGjromg_meqn-eokkNTolHYMDjCCxdy4iJDL0-TFwd0QSpe--JPLm_dInAZE8Rt2kdFN_SqpBdQOgwUqZRlfOWPuJiTGUE1CbpvB3WtBZUHFNIx5bm78iV9bl5CdZXZyTAw5Scv8WTEcuBExBXw-MH-Sw8HqQcz7Qu8QXCrWAzc2XmpPtF-Vntws-gNWAY5jc6cSzj1QVXe8P0A9-slGCjN3E5oYLoGzTIkm94JgEtmD36ZnpWAJhuvh9pgaNHutgm3BKk_TQvI1vQ4RlwypHO6KqUQabAs0ahoEFdDipgAEFhH0CvRhuckaNZ7b_y05IVxHzrZYrFYO6lMXseKCvP2-ManS2bqDWVKD4GtMWyiH7fH8YLvD_6pgfkHICSoZgKnfvGitcg_nDuQjNaK3_5nNQZLpUfgV9Uk6WbbySrEQ2T5Bmy51zMtyL_Iu1bA8n7FaOuRscPsMX55rtpYO0h4X3aUQN93NdIBzLOTqMNIDMH4axS7drJBIZeG4w4rKzA2N_O8oXvqTw-21S1gfAw4d1FViUch_Bo49fqBR0veDnUgZADkTSbEVXJdPWDU0_LIV4xWybVJUa9sYtR2HyJDNBRDqArvrV7I3HN78GqjQjOoQ7G8owrX0oBoFP9FqWwLjvaqBlU3a_exufX0hjKwAAlBARJQ_gbPyVuXDpoo8XwbgWyK1atn4mOv5DX2Eam1x3oWSi7N8lNUnfTENl2sZYrO6MiFbnMIaNANj89Imm0lvLvpfdYOX1xDIML4Vu9fyEw7Ypl6gGG2vAzGURorONqF4m5ZJ1ba4wimEvMZ1Y9n5atGVou1yWR0AkW60-4cpZyzz-AQYu3bRbEyLFT7lrv1v3kFP0R1GwW4eKqoNEV0vnMHgt-_Ah21V8Thu2d4Cw7pkXjQI7rGW-IJMp0OwDbQF0T8dUJUvAGnMGIPvk48eQ6RvJERh-0JRC2jYQX2nHdQM5dhr6UXv7_yuVEOQyi1XI7VXGyoxlJ4r0meg_XRpgB6vJd2vr-YSdEcC5bLX7W22brsr2EjMuwSzXwtRRxt8vDJptOPqKRdt2XYzLWf4UTX--wyeYp8uWnW-o0NwCcV0z0qNUfKdXTKy-ilZJzkDifyijvXMB6sY8jhJ_VvqGi4uIeeb-hTxDgxPfAd4vuTyfvSpwewf7_oZCDuTCO6J7edUE--5eG5_ai7N6FgV4thz-_fukB1XOaMa-Kx-YmDYPh2HsVvM0xVQE5aEO6xqLkKf2msEtbB_cLQDPvjLADj7zt_8kKhdw1DtFm6_M9DpHycomdzPs7t4TIuLyvFiq_1ng3Z36L4DscPhocOU-oggzsBuj8cio_D-0SDJ-7Ox_Nkp2AKJUWtqh0EDI-k5lE4s4_CpuQmf14a2V1l2l5icYuu9RNGy1Ps646HVAQXnnlw-5dV0Vg1cH2mVt4IitjS8jCGjeD0KAKIYsgY956mDqfWb8M-vN9VvJuuVlwiKf8_HBJVk-VQDnH3I3w5tIAyX5DU9Xf9-o4ea8nCOQdtPVRab-DYgLTHgayzO6wLFUPEg3wGbj9O2rWPNd6pBdJ8rXhyGGmWhdkGnaVx8YEf8bVNqWDAnV5Egjdt6Cj0vEm-Lrc7s2hvihgufu6B87lTiYoEv1yx0gnylssGYuq52QBbq0wcyV0M-dGP-1QnfAEuL2aJg5UwZDZNyrCzcm3zIkCrGm8cLAqdQ4MLN2Y74WFxDMUnJTqe6SVTdEzr-bN6EUlYr9Ob4C-QWoQBYZLi1jQw3q6FKWnj3KwGiQj_9KxHZsC4hwcUKreVPUKR99KBW4Ytix1MhVX_AZf07WraQqp_1Z7ABk9SIsKvEsKyVX7guXMuCJ6pd34g2HHrQdn8JHXng6wzJJEeZlenP3j9tSuj3M6vCDAqX08JaVfBAHfqIVQuUYQsGzYS-2viwp9qgGSrQXsC9oZ_Qrx2M-746yY8lc_NWy9OTdaFuy6hd1pTinTcqYkv8JicHi7UV767gD4vnIGzKJiYfLPhChtqLh5wBguqchmrfe3pNhPX_ENLcEtoCczeZcq1uv6cEN8A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6751fa3a019390-93351192','','','2024-12-05 19:09:01','2024-12-05 19:09:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41724',0,'cd-form-entry','',0),(41725,0,'2024-12-05 19:10:21','2024-12-05 19:10:21','{\"email\":\"paul@tayloredfitnessandnutrition.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"10\",\"currentpostcode\":\"SA10 8NY\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAu8W6BhC-ARIsACEQoDCWPoU09ono4gbYcmLIpz-rBqUgda2O1qGENpKmNzY9txGzabi0JqoaAiCjEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4u0UvQOgnFG2an_DrL8sJt3sdHhVpt_3Xg7G6ZKVLYuxn-w314JaSbclyJPlOzzvukn8pf9dTlZ6k5Fw6wV2qWucFGHI_m9IXkXg6REz-kbrwgf0dLAuTN1wTI7GItmHym56jsftaiQwZNrELGUZ1I1I--5DmIHAhs-ruFsWT7y1pwB1WDLEZY2PogcyLQp-Pktowb0dKK_QoQGvr_P3ACK8RGCs5Wg0oM6rO_acmhEbX9Jrf3TINMBXD1YjhIGDwlyd4yN5uhzDh1jAj0qO7MNKgB_qRSyDbpQxh92mtiTbqdvOhm1hB3rJI-ijQw63a1vXK2N-4I9-P1sy20m33e8b2GwDEBd-3b1wdtLefXs6gs2u8H107kr1IrIJ34KzKE8-phSeGRkQ6G1aqjsHODn5UZnipLi8jF2EM9A71mjpvE-OBywaqT5OyDrqRPkYCIR9qi12_HulxNbx8NuC6FS-Wq2dUX15WlXe0jj1RETb7oG8712q4Vr26Pcs_H4tSzip6wZHm2-FVVnfcvIFo4ZSBUFng4z-eimbEs3Kvqfb00qTvLs1JBdP5A0DF8906ayW4RHW7JlZ7qXbCpE75WguTcA3P1SkyGS-GFNz_oCr5gLSi4owGze0xsk5QGr1E5-ZxhRnyoDX4PJ1ql8Fp0-8KTnMzf_pdu4A2uPqaxCtMWNlUtjdgg5M7fYYgb_V_fsLYcvFp0UIUNrXR5cWB5oeil3RxwzqwyfGfCQYuQizEXvb0Hs1WwpJYfm736hGnNKdQaNDD_hNVJdHvdWH7_BoeLXqE3t03VtLhMKDd6dt1SpM4aUeRdjwJywoPzmMIn-KgqUGGu-AN-23NrFCSYiwUrWvTbUTF8Tm7CziVU7bO0UECK-6W17inh75ldHE5eRdPI7ajyIBAzMkPDruQJYxpY8wUfUZfP2be8Cgi6CZb3pewUxL2iU-Kzz9AKSxzrmIXQC1VpJxyfnmQkTjDx53xrV30M3n1EccIwEDGPV4L1IkBlPM8KTAjj1YXco9utxRakTtEN2iWLzAMwzSFZRi6WopmMA16rDAJrUbVEhQtgUvQpQxbUAeltyRv8PZ9MhzGpVhQlOQnINIabPbHwgLwVVhNU_yAURLynyd9slzLgf6U6f7cXKsWlwEzFiKCErs7PQaD7Nnx-5goFpZDdHhrxEtuV4Kg-j7M5B0sRjNmFLPeBW3iJEfr9733sc9tfDGQNbDI7lmJfXTbBCHQ3MKXhpN_kPVRl_SXzbtDMBzdB64IlSr-QCbZkoHb0HeLQaMakKmBIh8fxfqbFnPn31QL40ZRvlYkmFXpB1_fZPjeQaXiC7I9flqTROwYAAOAhZ_A_qBuNdvsl051tBAjzBGvxD5tq8OjFnnGW_Zl1Mx2sr38-AFh2rpJzz3oCuzJl7cj9WZtuNw0uqcr3Z6pLiThuF-fB-FaI6pRNcgmeBAb0lzi3uoixxoHpl5tyvXImxXWdI2Z18caXBCO6SAJbyMiX03OAi2LbmxHAkAqqcvTqOgpoMAqYyUbQn-MNo2hcik_dWkA-YTbWu96tzO41z0Puuxli7A-QE6UunfoJrjhTFwxqH1f-VXqfMkoqMmEO_VACYIHa2QKomFUmg2yd5H5leeyQPpnMWq3yzm_tlzmedun77GyS50Zut7qwCemNlc9gUxRKwvWWp6Myisp29dnvOOnjm6fywIy1T90W0jESTwj-Q4IQJxN8khOhdbuexikzwyTnlwrPaVgP5yjhxCeKUEhISAtookv8MrGYjnRP3_r5Hk9IJJjMhffbkve_crv_70ba7gIdfe3Ldk1wynCBNcQPtqrykSmQE1pLZzpEXs83m8A_zXah-ppQ79ClCa_V665pmA3Nd4DV_AEHgG0By9TCPx808NAkFQ-W-8w1ahxcS0_UKWX5qszZde0O9FQ8MYAlOCOehsKG6BvU_6bxWgexVCK-22tqRXuPq6rbXBShwMnftPpIGSSfnnPTisHARUihHRVWIlKmsgQtnDSqC6ZHanF7F51Z1UmN8CBKW_FG_qHQjKrZv36Hw9ym9dta\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6751fa6e235366-10853541','','','2024-12-05 19:10:21','2024-12-05 19:10:21','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41725',0,'cd-form-entry','',0),(41726,0,'2024-12-05 20:27:58','0000-00-00 00:00:00','{\"firstname\":\"Alex\",\"lastname\":\"Mirley\",\"email\":\"mirleyalex@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAu8W6BhC-ARIsACEQoDAM0q7kFW2QIk4phk15JtmYegAjiqfmgf7M3Kd6Tm2sRLia983JFEQaAjoZEALw_wcB\",\"recaptcha_token\":\"03AFcWeA590c60Oa23D7wvOxHEetyfC-iAi7r6SFvp3ZzvZ9Znj_7j-dkD31jzAYbT6Vdyv0QmJvxTW1eUKtfgKXL0CCqm-ntXKjsV-w46mP85b1K5IOKsI8NxzX72riva01FYMnstN1eZHTXXBKnl96Pxr8_8xPtEc9UGRreSgeaXCg2g9TXNywqqqtqn-AR4-smRPo0vHU-26vf6ke2Nnh2dZ581nWecHTg99MXNQQRNu7exna-UCSrZDzUE2w-KKTz6jZv0tLT9iGBapBq4hWVBezt6DqOVyG_6-iHkxuLRDHlQQiLg7FJ0buP31QYj4u9cpDNp00inOv_Naa_S5O-7MBtDKx0yy1CPv7kkcJBLXj_6DnKl7dR55nsVKXYfN8QKcc1emKEaMft1JbWZ22o0yIsn8G_3lhGR6XcH0fp-Q-lD4UhkmfT5Y1hd-pEz5E_4gqlpTyRxCaIuS6mISX-0YW-AKr-ULSBhvkQrgeXJmMlR_SonyQdD4quytInMhuxNpEr1Fa1XXhbonOtXgi-P1oI7_OuK9RNdNDEs2fb8uELHxOdMOzMew-ppUtmjvSUt7sA5qFVJ_XbbVO535_vRgXqaNM104vGC_1UILXVuJBqCQSza8ah8JY8_e5_APjMZnayv-YsL1pnCGSgAC3KIj4ZmWUgEldU_JX8aTV_Jar2gyhuuSiKMbhcbdcJg48mGZdEIXRC0ExcCvu38DpsJH3I1EbuGYGjDveqQJvulmHIptLVXOyhK1dCfNbKRskuvmHrKYok2qP2YMG_bCKXIo7hplW5PeL-pQC_sxX3moZM4D33sMsi2YbW58I31V-x0jeY8qLwHWF_cNts_lVt4uP4NwG5jRHSZ_MK7VVJML2ZYmPeLUHq1BueZKj1__MK1ZgYWsztytpXPJzIQ3ZivYzZq2sRYuMrRmYaAW6lrqVp4VzlRFYtXLrq3pUZXxwLzE3YrF04R6hrV8LMUJjySNdBkq7eWHBfzZL3ee7eySk9ew8zeg6Rg8VwTAECvHhl7vaQ3yxoNyqoeLGpjmb4jfDkaJ9Wpld5IKn6yjAdoSWxqH_s_scqROXKUWOn9KGtYW1-FiC2Fv-n3UqPFX4XBnJJ-LGW4G9w_HwCPKeKh5CiVFyB3P4AK29T9oJwFtvXHafl92ZfX_Xv4ivABUmha_IfgqcR3AG9yBNQ01y81gXUHFSSjoZ7mwpXExB2-7xpzZfXu_-vl5c2w8-vkE2QK8WHuLolNQ6y6JbfCIu_3D_8A0iFCmH6HjA05ZGWyw2B6thgKkUavxu6mr34ojOZazsuvzRbCc7tyPAaI9PAAG7-K3n84jpXfaIvWiae7MhfExgkBxjzDBiT0Vh-Bkj1psBjT3mtciHbva__6WzZInynShKMGT_u2iqyjeqSbNLC_KeZXskFZMfsdhSsvgW7DqRiB49Wb3rkrwqiWyPVtEqIzSoAXnhd6kO3b_taqA2LMtWnVJkWjBnmPHxaZDZ57FQ0VtNEUbb-LA5I5TVJWCVQ2FjZlLDAYj_TFXVLIuE7YbY10i5OEId837xhNxfAnRIIeg-QqdF8zflwiaGqhGFSTG1JxRBx-fzZzQxrbFMMveJQ_NRy9FuJgp3MF6xPThybRdBsyxFE4tDmsZifGO_EuD28d3lIemzCteQZStr9xcJM1LZzt1WQWovackUdrbt7sExAEvsD7P9LIrAhIDg-Um7dhDw4tJmnwqdKnVXvY0Li1EfCwreV8fRBv3nDfbjQ1Y9ekm3vtoYC83uWut9dC6iwrPpaz_X6h6BGrrZz32ZrQXN8SEyYaO6Ix3gFS-DDDLA8YMSkWNAS_7cAjsUr26yqXclYHCqLhN06_qUR9wCXlcIdKvkyT-rJPxW0mwb4cbPc1GgiQkk8RR0tbQCATVJ1exFfpLSscHHgRnuNXK_8UTxUtZMZFBs8ekY0_vAQ0bMsHaIa5uY2lX2yZ71siye2Q6YjkhUVKnD_w8wckFn0PkUkLfatato5KPQb7eyJUlomVrtW8_rvZ3Wf8vv4IH1YvchQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67520cce2ac386-93113657','','','2024-12-05 20:27:58','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41726',0,'cd-form-entry','',0),(41727,0,'2024-12-06 01:55:41','2024-12-06 01:55:41','{\"firstname\":\"hatim\",\"lastname\":\"Errachidi\",\"email\":\"fkrona.hatim123@gmail.com\",\"contactnumber\":\"0682058447\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sjNcvqf05OSATG3qblwZG3D&amp;gclid=Cj0KCQiAu8W6BhC-ARIsACEQoDD2DwMBNl3RLIGPPampWGwgO6nkKrl9Cwkkw_opqO7FMU82lqWMLSIaAmPJEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4jTzXX1lpV_0SRqzDIqRXm91b0GQcy-awLSlbt6YGnr3Stbw1B9ziVppr9RqSaK_XLh555Ah_-UyqDukbab3okpaxSN9GLuTKgJPaeZKN7LYrmDGbyL9I8bt2si_3ao9088oLfjV-yHsKFSBn1B0fIZDAdHrfkRWX6TNlJoVf1W_SfmOr4eQgdKKT9_uT2AcMzzcUAWy5_FABNWGfc3_weGIjtWLccaNk8ers-bJdmmg64k3tafFXyQILR-ZIgDM_oSJtoZTc5rw2M3-GKhX1qnKTZKRisa4HreJiSw_QwZXTvkGKyIbplRR6UXWGziQG-hLXHdK9EfJxuKnS6Wjgy7td-yQzmxZYCNHZh7N0M7wS-K4oecWZzltFlLVhT1m3eUc8MX35B3n-ebmFtjoj5TDvys_HhDzMqlY0sFP64G1nCKSWfFu2KOwKyfltLNouYmwR9En3BZG5EFrik6qzrP1IctV9VKPb9txehTz9_c4GMH-TShSEys2xgub6FaqspFbGM0hRki8gfEkY9QmuJj8qmsnWjm65fuakeL0ND_2Xq0VAHZKgGvtU7BKuoUBDGbTzft7OPTCI_pwJGmZPXwVsUni9rj6acUZhzgxT8rl0603d-uZfjGbZKYaS0bo8lf4p5BYLnXG-RJj6X0nXf2rheL8NPVCyK0EXXzZ15-h_m_UT4ykGEuT_WaGqI30TtxnDjCd4oYiJH78VaRUV9icgsxDW7YvIus7uSCpt-Q4hKNLwMjPxRptIXPFYt6dCqgISQcrT1VOpXew0ULsg834Gd4kV3q4wfGgPEg2OFZSoEmslhiOxOW7-tGRlrUInZZHLJNsQpGm60H-FO1NwO5m9yCEaE16OgSjOgR-hGD_0wLwxJE5o7Pd-hPvhxntRXQXp2iJoKEg4m6kzUyr2zh-_L-EDKu5ZP09vFDGW78Wt8XWmRC-jG1hFEBPSnxyQYcxgUqIN__8rMaYhiQTQBosIeab2dehyMtaHqwWpbKRmRPGPXKd_07r0dbdg-DlEnAk7xWsmaEMc4brKmivBBuYTryz2oZXb_Xudl9A9Mfiz0nWIQmI4saOQ8eCnZzTvdJcCJ9QV8acPqr0sFMjYZWq0VJbdoNDw4KEpsPSukxvK13exI42S1VGcglcW_F9IjFuoSjzG6Zj3xfyxJQAQSzVyhLEhkw2GOmXChuCu64zDf9wXJd2ws_N-_uE0tP9g8FRmixRUHqR_UdTO00KqdL2n1Tx8XYvxsylqlAl4YPsoTH2mMtEMi1mARNWhWAffSetXsaKY4bvHzegpKChvwnm3biljri0KmeEUql1yHQodS4TYsLnu6ROWCPcHXZJQts3qb1Av1xmfnEl2P4C3a601GGkgeCcUZju2FDlL3FHn84OXwmC2IBORbVlWXWqU69OrlsV5zib7xD6fVaXm7_zeQUQSIRF5bv9IIGcWs5xL53pMuOGsBtjmXHLHDgyRnnylp4BdpXDiGhf49kzOvHh_G55KE1s8WdRpYroXxdNFxHlOvuadu5E4W25gSc9cMJxrL5IepYBsSC_xtR5p9XVdMySUjLbvQGfkSc5TnFMu2bDFD-sWCRPagBhwLpd0UtLhkurvqxJgZQ8cb5jMse63vInDwh8t8qV4jWQsQYkyxj6p9NJWCT7_JfTSnHnUgjaZKJ98ITdFIO2Pa4O2XBsA7zwobSsnZOuQVDr8bQCPUc59hiUlJHOYNFmJTyyWu2oMcIL3HJYZ0F4ZW01cy5pweUwQ609tEx8l_ut9_hgvYxPPfuCRSua0IQoCyskVg5YBkSgGAPQ1oqG9S-XFAeQnaO9N33SS76_E5hUnZ1HRshJbgOfdbZpvn7fqUoXnGAKawDf03_d66Jb1ckqSVAv7y_r7hbxbmlBSMFHM03_aEoVJhR2vvFO3ccAbgerhwcVc_Ze2DiaYbs06ZAsRxBAGExIP4QNulQr1iRLVoCjrpqmnfLfKSoqYBxxiTyauXVQ6112Mw6DcV6xDmAxpzKm_0ew\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6752598c291403-11501797','','','2024-12-06 01:55:41','2024-12-06 01:55:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41727',0,'cd-form-entry','',0),(41728,0,'2024-12-06 04:49:10','2024-12-06 04:49:10','{\"firstname\":\"Christopher\",\"lastname\":\"McGrath\",\"email\":\"mcgraths_sports_therapy@yahoo.com\",\"contactnumber\":\"07828 180342\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/fundamental-principles-of-movement/\",\"recaptcha_token\":\"03AFcWeA7DUce2pyFj9fKdMuNjB5vCr31oEEyFviIHTBskHebXDb90M3B1lWTfL7CNBht2zgCo7V0FqKLlHNwPhyBmsAoL-F9TFVRFPBfEKCQMADY6ZCB-GuEmF9wirtz5dGd1gKyNOx1dKjVlqWAHCgicEbbYZ_ghB-95RubzdeZ_9MXnIe05OWg9H_3Ne6I7u5DXmSrHs_9s8AwRBnYPMAoim8izGJ0dxRXn_a1arzjwiHWQldf3KFyP9Q3yv-b9jdlHkSW8WAkX4rcVAbbG-cRdJQsY4KaQC91flN49RDCIM8_fjFRvbIu5_IULTeI9ZYeEh77NNr5zfNk4ZLfPB9KUUhxl05grejIJiDQZxzg_8XWCAzUQghN-DZDTii4YWOo1_7xvrIUfcWs9CjmkuOQsqRO9Fid1lXrrWvWB5u7QnhRc8i8Grhsbk56Il_94QXBv6ZFPRGoTCQ81zc-Lht0uCOBqi-NLRs7t5O55GLRj5me-XtzkZB4X-9pDg17PwoEayNwSZ41e6ByixwQ3tOkJ5fga_dnMYWZQSFAxK-RodJ5e5LNcawUbhW3-tWE7-PrHcz1OHrLE_LigdFJKjVK0L6QZE5L0_teK3X1tdY1g-Gxqb5DUEoEclnUHSS0tym1yZV6DQF_TkEBA6JBF0LBxhOavEhmqQRmr4iBdbcbcUMScBjrJ9Vg7qFs497_GeyQWoSjdEn4nWTPAl_-8jYdD2r__1Zy3ornELr1lPc18W-Tf4JgndJXn8no2knKzCaXTUpEIzkxNZZ-w_A3Lil1q4Dp3NE5Xu43EfJSEmd9XTxbc0vwlalTB47t9KtEgvDkvJAGFU6sVKN98IZ5J0U6RYCeDhuwrAvUpqqBNJ93I_ZrBdEbwJCjj0Z-USM0Akub-AkO9995kZhoxb8WWSwlcWylsiulokeYxnYZEd3nj2DN19O3Pi7iJxJWd0nfFCpfoxFB21ZMtv7Hcoz7iIWbiEpMDZFzdQpQIlOqgvwcOBQLh-7e_6OryJjPN-qvKXoGTApqu6Q0m1oNQ6i-bHBeWsS50dI6-h2_36D4E8_YoUqFESRra-nKDnybyy-rUKoDqryblsIPaqKO4lbfOgwUhuFxcYF5MUM_Sa93wc_4qIBT2XEnTMYLwkze9aj9RfZn1tPRJOP3Jd9QK0zvbNnZlQEE6ckaBwdnqj9zzwYk6E1JU59sbcbuwPwfb1CEvIK0R3PSHG-6kOI9ybyxoKl8PcDxbA4t4kpMdzRjAS0YYPt7PVD_MdsmqjHiePkLTgLXAATxVX90pD_jdRbaldO3SJfMxT6hckPr45qdFhURHryeFBahN7YIOyh4WL9hrdkptciTCTjjrevO4j944H63kwWbVvkdwAVuf37dJO5Oz1g3GOBeOEWn1eIy9KdK5J5hpi7GNH3GykKx_gFVC_VrdFZlbRcdxIwK7RAyQVzZSISwOSRcG1HreldDY4hqWmfrsU88Y6F9IDW_2Y3KcFvBagWUmnMdRS7-hPrGDFRG-YdOdx44w84z5akLAcPKtQ1UREDW0BKsQZixkJBeceBSzMzc5PSV2ot7-DBEIHYYeg_x7ws6ZjwFazEzJ4WjAi8G34WSrr1hGyTMxnthl1_xVKA7WiR9rDjZqv61zo_7YRVyXtFqIqe67nQQVtTLhMElrylIs13r9uSniiyVHUO1srYJEIhbqUbxvjab6N8-ZOOriSA712IjGt9_R004GfRgDeY0Kiofmh3XGvlFxNgIjhNrrMZrX7KQ532wksYO97Pdtaydv7L3Sv9FjUpUrV8Z7sWgTEelzUOHiseoPX-DxReih9wOyprnkvBhrbgUDDzHUP3RLssSAR_kIImifrdZfmbp3sPFRerASXe7jJruSxJp0XfT4mYkCzQlnXn-PWPDrEWeyKnOYoNnzvpFXF4arx5zlgDFpnpi2R2Ab3PTV9Btfvtj5pfqiuQRtQVRwM4853nwUzOuwQZgkQCFG9UScLKZLL1tmzzDteuDuHqIXYHYg2ciBfq7C-CMMq36zx1WfPyj1VuH1aAvIZp8J3WLfH5b74SkYLKSbWEAG4CDnr4nxd8eQREo5I8W2leg08F9y3ijKWGFGsFCKjS1eq71l-0PRCjnwtTG7ttUUnHxj03NjjK5RkBDEug-4wdGm92FaaAUOmOtd3qi4cNQYgrfkGjiFCzb69iV8sb8Zq0gghgjdpa_Qv1F5SnlaR-kDxQZEXF70H04\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675282317e03d4-34605996','','','2024-12-06 04:49:10','2024-12-06 04:49:10','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41728',0,'cd-form-entry','',0),(41729,0,'2024-12-06 04:51:48','2024-12-06 04:51:48','{\"email\":\"mcgraths_sports_therapy@yahoo.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"11\",\"currentpostcode\":\"BT13 2LS\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/fundamental-principles-of-movement/\",\"recaptcha_token\":\"03AFcWeA4c5AxAoicFYcGyRIQs6LHt3Yjjdnqvbtku7ZoUVSI23ClKOZRM8SJoxUcC5YOB7fHClmZDzwUm0vSMUUj0b2Z3KJOWjuMY56k9DGbi_qndELb4ZgG4lDn8jkv4uv5sU8_Bd032hr586agvu5wAEzoDxQ2Hon4EER6FPBb659o4iq4Ra8WBGlWbfhAmqg4fU9TtJE6rDKBPRb0HyBhpvF5-2tqNg6fAxUOiHFLhI025sspaHFKZA5fZQeYcbY0GEtvba1UEceBtym5vz7LKm9NJJHxtWtE8x5AW35D0wAmmwqAFYXv--FZrLCCIF6KFiBurYaSZJ2DDl_j5KeJfZtZX5tbPfoBwFr1VSaRvAUn1oxf92QiBQ2rDDPdgh97LzOLYN65Kf23FSau-zA0x69icGmDC9_AF41Is64XXnJRLxmq_APovraoHzNe7NILuzye577F9lx18dUg0rBWYxlEu9GbsmetFBqy8wgzwZ-Z5vS8Yyrr_y1FVFiNG2Q2j7zYMQxGgDIb5Ne05nVlRVO_V8yZUz_M1W2BQ-KYSBrgZyo99-5gksUbQ1FqlGDimqWSL8fKg9S24dRu0cEt_YUMCCDRoJhKCSleaPIXEGXBqeSl1m_Cg3x45WYdOSucdIoasD0b5sdfxT2qawh9MKJDvDb4U3-Z-Lcbt5Mds2wl_xQWzZSp6bFmjplfQ2SeI1Hfg0nQMIssuq_PAm_dSFWjrW3uXg5DbTDjf2nQsfO1i2GS1MLSnrnr5hxWRzKKTrADF6Dc4ImEeiY3U4PNWcdYeUNr9M5EaXrvQ4o971qY6uA26-2vPCPoiKzGuag6Ud9Alrc9m3rIpBtmTNDrZPcg5H86FZ8iO4a0fBodOYfDr_dOGgweA41NLKT0D94Uu7cSGw3yQ-ISQqNuHhnlHy16T3pQ-ZVox_rCO7YdL9ZpZKROC-Xg88zd1Gzw-PJ_b8M5ClYS_kr9RY2c2Q49cAJkjWZ5BPj8EX0HtHsUUvVaBNHqLzLSC-6cu6-K5IG3XoPKUUFSzaaNIpC1xMEYKJX3q96E_1qY05dG-fAodahVEOVu1IuF4qVRWbsHcwSFx1moUymGZN2MwSn7o7-iwzjJk-qs7VPiMtFVhUSx2FewtoFzHBE-EN0dRNuaskGVpcjfoTBk9dlmtxvc2okZ6YiGTo6cSIzIy9TSkTOE9dsLssdAIWfPqeRFxrXjMrVOcmdxGYTSHr3f2suJD9yHzZGBFZ1BEcbBy0iUqrx0tb3Po7Prfb8rsMZPSAvP1aoIQTbqrfL1DXhfzushPGLS_UQ_aK-BzrYA2N3REzBewiUBLXXljokqVkiEXiJtLxVOpOn8FMZJdD5_PYvC8ey0qn5Z_dntLenqN3-TfseaGsrlSNtAVDwX1vLQnMcExvZihL8nVnVolJQAvIDPxtvY2Jan8-FRErF_IcTB3thdLppwrYcmuyA5gfccNkZh1ovVNlauOcCrTpJMJB0UTgMoS1T25YTaoueBEBJUJSQLFpaY3YxjsN8MGltbhEm9qAl_31qwq3MH1AS5vtLf3fug1wOFZUt1qFmQdugqv7AadHVEkJCmwl68h3juECihPeGKZTpZx6AL1-rzG3C0QDtkdehDsNVNe1HGtrJXG73spqy3QYjW3BzbXTMmCJCHUsC9xAcDRsgzmyViFsj4J5IRFqziTBxtSn0veT0b6wIxN1FioTn4to1FPOc01GzJtrnAh7bQznCy4mr7P53dhHB6kkn280Tcl5sBxSMoTQ8d21bosaseeJvy4U9EbfUJbqUP2h1UzrhDbyuC_Xl5m1vYlkr41Fd-pGcKMSeAPoR6QpUMB4xzzSRhwXS_6xwd8uyOXNeMsWxQ3z7EQCvWoOocPbckkHQVfyAJuJMPcS6NPtdwUhfbj2FrKPQrMPc4waPbKDpNIgBxjbdHvwXs41diRTIaUoN7iUxe55FmW5CkM1etpS6GwQumAZ6-L14FGR2oP2kVYYm11smCBBviWIcoIZ0Q4Ut7niGA1qQFeNmteKAyY0pf8EYS7la9d3feiHsRVDat3JTWBmrWUJ-qDxsPejv4nP2slRQkNPa8C78IDChtedQg6soHcalP8WlZLnbXtQCcmq0B9NGtsG2Zi6Lyd4hgSORV_yfHnh6xsJQ4HOcvkdi6gfgZH3B1m85zuqLsLCnr_O_LxFqRLyOroBX_73b8pmYYt2A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675282828a33a5-25684072','','','2024-12-06 04:51:48','2024-12-06 04:51:48','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41729',0,'cd-form-entry','',0),(41730,0,'2024-12-06 22:26:28','2024-12-06 22:26:28','{\"firstname\":\"Leigha\",\"lastname\":\"Verbeem\",\"email\":\"leigha.verbeem.6@hotmail.ca\",\"contactnumber\":\"5196976680\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4HrFHxB8OnLrOGugYGX6qJk2haUueorTE6LUDuSua0a-xQTyVMgkKfXbEbrHqQ8dMOLZXJLsHklE3ekrWcpabrFafJgwre3AXvZA3kQ_qFx3iclNHos8pW_SxdptvsYufJxoTpeEKG0HhV5M0ErJYUPJn-dnIIIsEVO7YVMNXs-8Uk6hoADb9D8DegPwKXtz-Uec6SXCj4UdKj17e1vPp75xJ_JBfw-DpHEqvUme263qleWL4wbQlhdgyo9qN25tRJT1jPGYSB1onhnKZ5YqcxA6f0m7p9kbpjIWrePwd6951hh22WOhnHknm0SS-cYNLwBvw5-BnTRP68nq2nQfhBwljfFBJOd_UmKY7kBtdfFcIYsEBBEdGokoKy73XGXdZCpbz5dEpxB7rU0kEwsYnVaOAk6Ydg9SK1lUb_ojx5fBiTJ6XgtYAgfFuo-O1Rqw_OID_5XFcaR_dEMkHvHh_jKiFBQ2wZFY2Wu8r-gDWVn0dzjW392l40Id4wnAm5UNBKt0iDIQtJxkyL6tMLG4zDPFbyG4FVipPtqOONrbZE4KFzumj8x3rzEHjXp3kOk4JhzMxjyNtOlPzQ83lcXrsVSVNRszz0DXDhw6K-2FRIuJ-q2kshwwMOhKEHlRCIGOSGkWYCFsjkrVvmSYJ59tauE7xDd69kadVf8k5rID5wVZ0bi1VfxO7KudgIpbBqEhRq0B9WvQ1nTcovGrDs4XF9_JBaIPHveu5_HJTnrPHWNrinKNjKvjVxd4UgBVfkWnv0VDKnlIKsiChGwulzxk3yQCjCLjjRTRCV5VqJ_m0GX85CfYpw7vTHLH6LhVRj4Nt5Kh7lswErqU06vd3wGv2WExS0F4M70oX0SA7XVKbuh9QTSlL5auRSRCb_WGCSg4_jmU76ZVACWJ_-pdhs-OqtawXevxInRbHbZ29uOPgASWDBrw0_sfIGLfsXwqAg6OqYKL9pPvbBWjKH-Rn3IWG74gliVM8x4MVrcMBo0KgZgqOByDyQoS0_3dPBOjtSTJzh20fmjA0K9z6COYq0p6lZcbTISx0Iv12OZM6R54kATroNXfwVSMQUVZY_CAV1shpQr9hHf-kVEdqhpafuccG6v9FbI_eEWVeqZ5YGCRj_wNqUemGtUyr33yx1Wa2sxvAvZ2OriM9qJwR3XX4MCO5ZSrPEl-TOVqTAkigmZT_-7yjG8N2KXelitOoIPZMXM8MbrDXHAuCF8PUelxOxUkG1KKhyBGpSoV6Twiccw5wW3rRVc4w6Pjb0_1NQ-4042JfygYDivccuV2Dys4vIf25krHi35j1OxEF3I_OipAY5LRgDu6xbhUPb7XCN4MBlsVixHt2V-VVWm-Xa4sdYOJfIcOTIjVp9v6WoHPc5cO1TSQYNaSR9h5PTgeWg0VVlOJNJqK1bV3lOJsicBWWJuOK6I1MsKTNfKgNN7L9BYpZKO-D6h41wvjygW8E00vVQTzyWzqSaR75sWyRqq4s3AqNy035LBg1NVqqccrTl06B1vsn4SHPE7a3EF_RQntt_RMBB8-vVVM7b7aWdXRsHhtw5tbwM9RsBo3RKgDgzN6it0iiW8pCztecSBLCNCuTWRGWreq8PBGkNMLLuRwMhy9mbR7CY-y-SbvsKIR2ON5QqhDV50j8M9ZYEj_LQ_Nue0dU_2r5mN0LawRm73FBfCv7kMKpxmDdQWuLR3WnyAx0Y2wIHVeMuZ3Nk9SNoeCpHZFMWwmTIRrYIQRtWlIJrY23USjWtmQ0FBJ1SUelu_C0PGgUcT1QFgK9lP_4yNgY6JxqwJKV9zXMULNiQWECSqXJSC-0-1n40Lbusdh3b-5E0bQdvQR7RqgGIfaDUZbAboggm0iowT_W6_6g6969SdMkpUlHEIKX3MZm33dzorwlDUiA0op8GfNXsarzRd7f4Y1wK2EIKFhgv_j8EYqI5VtRO5UWkiqv0NzFFkHrcuuxwp3ZUYH2DGEyLa8GLV0kNrlPQuggQh578yLxcP3HfwxRUthjCD6zb8CSN4h9uypzqxLuV7HmdB6EA_ivpfPfoo3gkdhtK\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67537a0e939883-61973767','','','2024-12-06 22:26:28','2024-12-06 22:26:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41730',0,'cd-form-entry','',0),(41731,0,'2024-12-06 22:35:56','2024-12-06 22:35:56','{\"firstname\":\"Leigha\",\"lastname\":\"Verbeem\",\"email\":\"leigha.verbeem.6@hotmail.ca\",\"contactnumber\":\"5196976680\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/#row-39270-1\",\"recaptcha_token\":\"03AFcWeA7QQ94alvhcka6IuopVMOAU3w9Bx7_gBFpXbCm8J58_BJR-dSsSLS-35GU92ErHI_zdUMdyLqQZgGCT_o-KWzst-d2sclbmYYJzpIijT-FPxppYjy0PoUvRPhH52Q0fC8KB922Or9XvndQuouUVG6dElqAxACQAsMXVOft5R21N-8w2r6u7tSIlEoufmrOci_SqL9L99NgyVXGixPbc42cZmy9IxXcipJhA3Mvg_hLOv-S6UsaUujPXYetY3wg194Yhe9u0IjY4NicXCucFlH7BvyYhgb3abUMMz6-KgxjCO6NS7E1jxcWi0JzeKG3kMUr1SY2XTmIPvbgXQTa6NKHdIuGkJC_R5F4JqefmOXl97EkTEf-_A8_3YnD4kAutlN3AOjjcCi7aSEPPtyGgsPRKn2vpH-4LHS8NjX47J5muQkdI0oRHm9Kub9WvyoAIvQJu-lTKVP9wqgQ8aLzwx5Y9rnoIL0PMkq9zQ2wH4-L71jznhywv20TjZgbwuKMOfzFzIxKeeNL5pSBZxi6QgMK7dSTrfd95WNotvKOXNii85DaQit7fIng92IJqCtjqdsg2E6EHR4GWowNrprFxq-Q1cCbe5xQ9bfjUfS4TP_VG05Ac5X6kbXOVN9HX0Iz5mFsZB7aLWAhj6zzLAnHgg42-Zf1eKCO_oN9iEoezLURCSr6n3lMw3QGDKZadJk034cpRE_n58hvkdsXNcv3k8nzkvx8apKg2QTPpmi24aR646NC3pMTjtrJAsfj1MKDUNEvv0ZWfwE6EhqGeZVKONEQHi5ApLSL3t2TMQZ0-wmrnvUvzD29uC6bDFM2BpaaJMgMURGQ7sUQ1reRTVqxLSAQ9Ecw1HC2tw_8dTEreeIql4qycPnYaoJr7ElHiNMq7mfcFUhxMPV_JM7fuhQ7J-T7ySsVZHU1jepuz5vlUhrDFJY0Nla5h4ZA2YmWxccdVzmxnzS9ETxfLTuGY2b1_8NieKvMG958FYLNKXyzSEbAkRbGxkF6kIArSo2uhLlWF_EyaxyYSNWUT7Bcj0AtDS5IpTMgThF6mbK51ZsyBvqne_X-0iz6okVX1JoD_zIcJtR5XF9fd-eLYKEHh1b79AZb6TNT83I2f3PznoztN3CBAofEsYuc7805d27I1AIBCaak-htN3fum5NUH1ZOvZRZ4skZzrhK9iVCpOoDyBJ2ZYN1VpOeRdEUjZKip_hh9JjSKl8vLix9iHibGCjlLds2-kdOsePzrQA8TiB8Q-bBWD-ER4Jl0lIzw4_DYDe_HPTjxUbKMfgWHuXFFDUFUqIeOfYmucif2etbEM9HyWeZBrYqqTif_Ix5pF7ZuVCCRabU_QRMy8Wyaqn-uS7lzmpeY63ZjfIotpC3FMRlYR14gw03N3_SZozqUSl4R4aqQEDBQnUXNCkh3KIOjV8bPwfzHzkBH9ZvLVk8JZimK48EhNQ_ttBtsZBImTPYY_52MxBOBpxR26wThCC-_tuSFF7DbJg_XFHaBugUwBqkaau43UGe2UBDe6XD9p3y8VxJhkmb7mGb0889SWrxubxjiu32mYtQjVL2bILLPfT6VlPBvsxgTgyJI3DedO8xnr6hhubDTDE6M8tv4khs4nbI4f6M2hKyYVX9GScLfjg9Cp1NPDvocsGsMaWw8ibkx8Wwz7IlLPtxUlV02XrT3zE85JXdarCMooi1g3kbnhH-AdRjefjmDF00clqEq7viSoOtaL3_ubwtS831RI4Qcvv8leiIN3X0AN6w4GwCSD1aqIn4p-i5fRHKbxbKTGKzuwtZgv7aBTKidi_ykUXsNXYZ0bP9ZscJksoKKoTDKoo27wQPt_ARAk-4ig95EHt-QVwZRoKpOO8IZlLhzUB6FrT1k5IiG8KakBp-fgB1nw1sEmJ_rHZtziUErsHXBWc4NGIEWIDuXsRxXdOr2m2vLmL4LDbDi5A_8pnruFjrg7BlwW1WmUzbkvhosYaJj6WNwISQWg9N9I4MqJsbE8gB_6TK4e_Zakl44FzWCFXcPTHnhKVkIcn3-LCL8vh8Xn8RNxsm-_c4S3YqqW\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67537c4739c0b6-60393162','','','2024-12-06 22:35:56','2024-12-06 22:35:56','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41731',0,'cd-form-entry','',0),(41732,0,'2024-12-06 22:36:55','2024-12-06 22:36:55','{\"email\":\"leigha.verbeem.6@hotmail.ca\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"N6G 5M6\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/#row-39270-1\",\"recaptcha_token\":\"03AFcWeA5qJBBUjbAi9Js_srcDrmZVLWKPrIW-yyYTg_MLo5qaJ5V80XyViQAET6IehvonCZfmW5k11qHhqCGPDvjXrN4oYl8T-aJK3Wwbv5CrDKFSePTckzbsT_ubYPrGnYjWX13J2wPpWrTQIbRY-dSpcUUQAC25c_-wz3Bim7tw6f-IKhTXegr_oG2I6Rsi5wfnNR2L6-3flQaqsVccOJ3souJuzqpddNQplOcZrHALe6jRqaLpP6biSnjd4eQN0ht-1ojVPcTC1Z8dCVa6ZGzZ3J7jhRjR4Qr6KWpPuvpfxcKmmWkr4AwV8Brp56Gz9K_njkdmSrTedxd3bkbOSD8QDxVspyvrzgvYsY8fkKKyt9VGDOo5eB_022WRImGRkg3tWLz_2Ctm6ulw4bzA3gf7uhq2nHD2dnuHAzQCg5WDMg4h8tt8A9DTjVyStvMlY52vJD-cRfsT_pgsJ9S-fwP0AUZRJ0PhgtxHfKCJPHx9eCwf7yVts7DicdAcLfGpwBR2mNGXFvqKYvKL8BWbYCMISWTe6_coFtqhFmbOSE9lccIfQfieqM7BOOwODprFT3qNvO3ARMBu6UVmJeV_hvomhaGmJv3d-NnLLq1-D25E-TJeXWncarMiZ2wY6hSnLMqrHtmhw3INCmNjnpJwAHXD2SldJUDrJtd0SQanYc90gsMhQPC2Lk4Y363FlCUQFzV4yHbDFygJZGPUV3ULShw9qbaoVCOgw4dvTaTPd0feW7Ql2_zklHPwCakYGdlQJlXeOg0u6bDz43MTWJAq9-ZN9JtD9DhWiHBgCIQaBgwoOLQFzgEZ39ZxIuqDXyA83o6mBAsLNkzMj6GiZnQcRK8daEqLf9m95TgyDDrJSVq55LKdzsjy3KTRoAtFLY7cJVMZH1X9HPFoibm9y5EImsL0tVReOMhrS5925rCNIRy6L_Z4ag-2cnc0PtFwbNxrxszCKjskiyQOrvddgX7JYK3WgHGNtz-w9Rm4VuE4ugZrYgyqJtHvbnC34TdG625rqMtrxfYbCAAjOlkeXs7Umm27qgx_mgsDStM4-GKKA3MlZa_tb4vo_S4LhsbeCbrBR11-bzncGU0qKj6fKxKCMpa7tIbswo9Gr0Se2SBOePRgXXGOn2-FjBCe_UImeZX3azRhAxibXpF4L6X8b600vfAWbOSoL9hpiRTv6IQPHPyO7XpqcsgOo00j2ywK9_wPfk4KaMygDMGv0VkSbc-OcvpamJvXQp7JlnkdRK0gbUdGWmbxVqfM5VG1Gja_a1Wj1KGwG_Xa44P4serrSqVn5PhILgfuCTw7HGgImZTZQYomtWI7htkqAEVeHwn0O1WRl-c5JZxcizsAU__DFwQzMzA1gTluMX8-lzry8pF4s2lIRlXpHPMx8fTSxh9RDGBOnhnBcnHYIc75U6f-02AS235tYsU_J-wbMT-bmNMJHWYsEfuFaxkyDjZtYhuxx49eVLZild_NyLmAwIpqddsc1FkBX1GOBhPTItZIp06io9kHYi-wct534hj8li-yt-O-Ap3DGBYTfNdlZFdqiNuBIxVG7Y3RxlCBDp99H1B-2MJuqHrM1FB2EP2dJv2oztcT1CHgUnVdeRa8nBp7bRyfX1Ca-90nh5nwPgYRZ1bNTWq5oNOUanWd_poaPgI4sZu83NYk90TbsR2htO0pEYbq2BW1Hf4DM0bcC72uQdbURGtZcHjPZ9fkv0_c90oVI5StQiSz2HY0TE3336SD3dlGKCX_YJdSj7Dt8Hwc51utMS431r9VMI23rpl1dq1kKXBVQ-YCblqjltPJqYLiAPczsS6Byay1SDgqK5X-cWkxVOtri2uwvyiE5E6f-iOXl6gIPwgx2XuFkTONeXTsqShAgiGvM6n-skA4BBRgyt7ln3qRdHfxFPEnqfItDP5ap2f73Veyfa-iBBZwp8Pu62BaJtqdB5Flm-C3VQ5ugtuBkiqnOpAdL37E8O-wHqKr0FilXmKs-xQNoqyV8vnZHZt3KAsOdThjtPsQJ25y5kpyZVrNtNgGfJkDD99TCAIP0IUXkQ1x7ZNx7ugr\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67537c6ce22310-84275963','','','2024-12-06 22:36:55','2024-12-06 22:36:55','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41732',0,'cd-form-entry','',0),(41733,0,'2024-12-07 10:24:07','2024-12-07 10:24:07','{\"firstname\":\"Susan\",\"lastname\":\"Powell\",\"email\":\"susanpowellfrst@gmail.com\",\"contactnumber\":\"07843471974\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA6TNK8vi8nwOsURBQn3eLbMTcnbl_6wTJJAZB3yLRICAu0v1enJ8GxtLtP5iz9KXNtGFpunhBudpBD3959qNL2tkZq3x5yodNvUhcaCNxpjiWNb8E0x_JSvbSjY_a1iBnMMtJxfr1ldpB68Ikgn7sHtRbqhRZbgL_S8iFOIFoCUH6TuNntjNMPjD4jABPilMqL-KC7jq6VL2H025Vo8O53a_WWvHfiKV_1q6fvt7d6SvdLqkXPgHMMyGrAP76ZfEzJ1wVj_b4N0DPJIz1Muk9RU8o-PNxWY_30OkoQpDw1oBdDGndRbC93TlC_oG8ShuInuo2RG8is18iHwRIx5bS4pxalzy6sgu-K68dBBUEQsu8hADbY43ySVtDrltAsG3Fp3UL2gE8Clsh1Jj90dXYLVQ2mir5YyAJuLLxwSup3Qxt7kFBBLpTIMAS8sfoZTDjQFdzJSao7Xiqpbn7DVDF9gIz1LBbHNFbTE6eY-3H6ZtSfDA36AU4VrQQIEDo33oSlQteTTJLZ4DCQa_AMA4JTh8COrYw4N6YdQcS8EQu8P5lswiKsYIbu4-5kWiT4Wu49NuHW52Wym-nBe0b4bn5fBSzclSLHMUS4FkD6SZR4ZlHxHA1ZU3PmDEkd3kELYS9YChQzEgnUc9GwB5nWjgnYj6MHhXmEUUNFVsT41w6Y-Erl3bavtNgvFQ5W_FwODW2GSbUdccuc2p9siRIiHYxvxYLkjbUjIGscB7y0Qggv57UFZeFDMsWskntJATz33JKK4WwpTUFt21-sBZGjR-Zrc8JW5hDL8vQAx50r88qyhZg_OI2CVVlBjMDn3fbzWJqSeFiCs9O0rvKr5pPUUnVqJ3u2_SbvgERlAQCAzOak0P-kzgd8syUM9Pu0Zv7NbHeQIxmrai4TTyMYTTkb4I_-hLox1MEi_lRvx-RRUGo417FvwS70gNNeOxR89HpxWKIQu9Kk8MePL7Gs3-V6sMbN9rnIzZaeVfJjODI_spmzil_iIAMvDX6QQLce6Cy8ZG_rUFwBIngTAxmhnh5TjtcJT8lP3VpwmiQ6cSXWRSfR94n60_umjyN70Kw04LUjCrb-vN_IHJNkXu7ICsCoQCw0heCcuznSmTk2q4mK95RwLmB_LNlUZgByqis84rDwC7OIPgs_7_zAuVXeBxMBYgsEjSmXyE0ewdXh_zYfVdpJ8r6iTwbEaa1rM1dIkkBON8SGttkoIgYh4sFX4vKSw8rX1mgeHrVu4cc34oAhNekWnMXXInxCxd2JLiwzk7cV8NuaW5VBJw5AAS8BsMrkT_0U8AiSE5Zgu_vock3gDlY0wAXVyW8QDXt4zYdpE1GoR5gFeqQWvozRDMJHNF1BwI0OhXB9CXEGFNRC9xXMizMPIkr9Jju-MgaFOl0MKZ_3cY7gqbf98fhXh4ziB-qVPloHRboQFi3RGY5HMcELLTEjrdLDLGR16p9N7TDIIVqPUk6gXKV9eE40ns61-j6sqWctSw4L8pw165vGfIhgmDFNdchMx6NqufV-5Fupl9Id4oV3Ffp5hu03jtxYz3H8s9203I_eOWutCuemr2wmu85g2p6aopOsFhr8nHKonUqMOxdeLCbWjSWB6Onbs8wnj-FYPslsSgO5AFFrDSyBRTyPYU1d6MsnSFyZyLx8mvK2kUEiMzB-E_5429cOD-KHIoEnOSsBLd8V-UduoBw6BDKBBAD19HX3O1Xph__ZyHi-H-5ULdLMfcgiAMmrX19pLdv-3wj-7gfmdVCQ90Nsvua2xxoRcC3lnybAwueWc-VgzXo72EahZgbXE3WZKT_5-wIlsayy5OAEnICfw8wS9m04DmW5X8hOEoiK4DcU2SXtFjwImOhvbGGGQ8ms9hhHObGCdDmhtrMgjqmCOd8rTzaLXkl98o55XOJa755yTWNE_4I4GiUGCMlfdca7So4BiovoTc1ZRJg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67542235a8e946-27891180','','','2024-12-07 10:24:07','2024-12-07 10:24:07','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41733',0,'cd-form-entry','',0),(41734,0,'2024-12-07 10:25:45','2024-12-07 10:25:45','{\"email\":\"susanpowellfrst@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"6\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"E143AH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA6SuKbqyMHnvxqqMvjn19vM2Z-GTSIPB0zLUo17wfdyITHUbNCPi_ki8bboZobaZRzozpQVebTEPE9HbiLNJN5Gf5L1AUh00AnHnmzSv3EpVzlIgaZNAQvVp1PXtufYCIKDfe0r6XfB5NVO2HvZmceGVJh2VBQTQohpHdZe846oHxmHnq-WAyjfXeRJeOQz_wxEPZax6WNzRTthUM9lAh2krkmY8ern1_QGMUpHR2f3MCqYmANM7Pu7IIXT2zVgLr4L7E5BkNLQGEGf3pSUi5ZGbwz7F8KXIeVYpbQp6TU1z-pgMsS8ZQi05v2PZs-CPFL2GenIthB0jbX41NgIhcMuOz9rQjnN4Y-PqAa9vVkIUQnLsy220CxxzBO9ph9KYeyiidPN9ItXFTHVawHWnTKQk9yAktUZuvZqMxPXRtU4Hhs6mW25scgfUjiCAR738PAVwBuhl_pbm2vvMHmDZKilQp74eaVDbV2eoTWaFT-azyNEoaQF7k79scfLevs6TKoPiWp8ymIPqRABy8DDMHkfNEpACKNP5QcYwpqJ2x-epZxD56E4Gjwprb4TWFUKt8q9fcK3-wv7UokkKxmYwKERJmiO1svXPesmyZZnJc7vl6UU0FOPdMAuo3IQdkO11K6adYq_ct7YkjXRrQMwL5KF2RIaasg33_lH4bIhNXW7TBDPAI1NwQHSSLcepep9IqdcT6RWcIwrsVPWIL63826TSa9xkuxIOzrmBnGSOlMdlEJwr9FnCbopeFY86PQI1-8pNreE5u1AXlLOvGMq1WBECTbFa8NYp9P33BpzxjK3_-LymOkBzV-nFOtpRlVMeMu9f9eui1sXzEmlTa_af6L6qu6CQjkLH59D58fB2uJi8Jhfd2DengHDGEtuJPIgZwnm9WZ73BfwzB31EbBMDBblPkCdk_Hgg2Ymit1Dt-oWDQJADHqqlcg058gXR1A39HBemhzE4atRJ3NjNUjw4mWCJwXcJyVoHAAnS48_JTox0E0PaWSvUh626S39sy1XsRa2lwmhXZCSNchlj5ILdk9ynrcPyQHzy8auWXwybKVzzPRNUSqy-KhFZ8iwAbvjFHueSDLg262yE64T6uc89OFT-SMKV9EsKbjUeTGkWFyqy1q-KjKN84FXRkALJvux3EDRAdCtuekH8y8uUYzwUJBWX6wz2cWtbL7BMb8leB1tIl7HxT7yphyqj0AiX1Dmr40boDwRIRQvrjltat9QCgLLWSTawshYWqL3yReBv19X-Hs1j_1U1p5Qich-ZvsJthABVxCkhvK_7RRWNGpuy5Fd45Wp8m4cMZEJI_iB-pvBUSSo2In0I9vGh_aWRCTPkGlGH2m8e7IU5aMEcyXeyqH050vUKeoZ_ptL4npEsiYGclirV8Kt29cQdYQucNVM9-CbAwPSLXIjLvFGEO81-54omPA5EwNThCtqkFoHB1BAG-Lk2dznGuQWj5KZ8ivR5c_b0XY2k9HhgRYfYEo5XvPXb_xD1tO3xMuqI3ma9FCdA7_ncDTUd6p5i5qoOzvLGFMt6cbhbUzhQMmWgoCi0DVgMnZOMJG0CBql_dzMS5Vp5MIxG1ie41nlAj0RcAg5l5HfhXNCdfYmxHenwYm0D0NIsRSPY6SZeyvtwMbyizlYcArFD-6haG3P_KU8Z7TO5xpjIL_f-OaBc_ata4CCXNTD_PcgisPVHoAKuA5vvaE8lwgUC1D5WUgOGrEOe48ZWr2y6dn7qowssfO3TCJ9I3FB8lZ18xWuNlQfdy4UwXi9PNYRraHstx6bRolZ5XlaummoyGqXxIRcEbnrShI63cUAOrAMUkfAMTNtwxYJdsCsI40KldT3TkyrOFteZnCZYaZku-t7MuB-_oClewNk1CXcQanXBtZqvdtGMgMgN_5G--ms1EENnU3SUSZons0tNgPF7RN3uPwl76xV9xXNbGlfFJ_skA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"5\",\"workindustry\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67542271158c99-90346243','','','2024-12-07 10:25:45','2024-12-07 10:25:45','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41734',0,'cd-form-entry','',0),(41735,0,'2024-12-07 15:06:23','2024-12-07 15:06:23','{\"firstname\":\"Erin\",\"lastname\":\"Blake\",\"email\":\"eb_pilates@yahoo.com\",\"contactnumber\":\"07598212336\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6WN3b_UeSEyPr6B2E_V2fVKVCLPlUQ5dZVXpVHk4LX-rVixjBuQOqpccMp0_cavO5JKl4p5_cK9dTMOwBT4XPlmYOpuVCv9HmkfxojUh5GobGxkUdy6D1Lu7mqfEcIaauWxGKuGnHemYg42JgVrb0NGAnZY5bFwuKlFpqaTbx8DcShiVVkMAHVri2mdwLHow9x0-xFlQ6JEtisYOn0NUfbPtbzz03WH2fqToeNxlrkWcmai31YBEdLMKXeWrIjp0cjDlpBK3dvLE8UU-SlcOaKnhwrUKxIzet93zcYswvWzIm6LbOkCp38N2Iyy7fUvLuLvjcoDeyQ6eu5r7nVtzBeJtX0DBIVnQ4qbwKstdB8mbcV2FV3mBIA4FNXGoW-oYopSdptkmjw_tHtRZgrr40sb1WFL05oKamO-aZ2UUGHDYMfn-3iDtnY4CQiXiDDgrxKdCh85SA_jUflb3RC59BHC26Q-1AKvoeFKAXxUOech1oFb-IBlcescFWqITN1Ybyum4mwecE6pnxdr8Kjhagr3_ewqbTsPMJO2FbYpq7Dl_7sdUiol7oSyqSHN-FXIaCFM1hU_ouyPRHl8wIgK67XD2Gx3hXXj6ibQgePTpcpaIWtNd_gd6A09_E9Qum53n_jFozeYsjx-afmIjvUJup39DZnOTue8wSQ5stM-wwAjuInlEli__TLr1CMP1UbXrP_CA8wmV4VgDFDiZ1OJDFeZqee__vR0fEbSNvYPV8SKyW08XJ-o0RPjl_vrJ7RYtzkLOQym6cLSBNHCtVNLDDM4iL0p0zKZA8_7zAy0WC8iuX0PGy4SnxoCBxd4-3ETwUlC7gxL2jVtcCyDGMc1ucfxXZzIJQICdiQ_EOvGDbqbYpRMKy2hhyHAVu5Mg5zKqq6D8_y52lAAOWSPrcLSbYFsGbGHOQbICNTYM1mlgGJLpZ_vMUHodkpq4vOTZH51Qon8F1dscus2yKJ0DHnK2E4j7i_yNDWgUtK-kyFwRr4HjiLQ4ACQzdidat1t6P2TFmbUNeTQKYG_EEI5cQoCYal6GR-ALlb-Ns34oTOqu7Gez7umCH81WZQOOKv0CKFnrGXsXl03U-3qzJwS_taA7xtGO4d4-XYHztJ8SQG4rY3uixL6m-4-mNZWXU4J97E0haLSvKMTCrjJrMJM8jVNuGEw9zjrngvJiAqDzPANIP56gakCHK-Nl_zDSmyXnphUEDiMZO7tlXVVeqEdaXn-C2TxK31d_GRzWHhRK7GkC-K-UkI5MRhPpzJO7sLHtuWKzqawsw4Z_eHUvQKhmXFrNw8ASTUZGsJ-0hCQqjtszFMU-QBO9e5BshQFIqx9lHqI-pap5kLESGthVvpOFU3JiRsPW31xPAaOAE08jZL9NpRYA8x4XkqWMUYkHVE9i9kmaU9T3KGohYL_xMQouamgUCcWsAIySGYA35RBH8TyGGmPJopDU_aNINdf5vzZFluZ3MSn5pizM_zyVgbYbUMIfa3p3qAiAngf3aLBFWFDchf6DQzhnlC7riOvQ8SWBgkJ3oVjqjul39wuVlFkAGNtaOYtDIs7qvjV_SPiCRN-bf7-OiyzF3EY7QihNe2eBUz8Ma9E5IW9EZ-LM59MEnONjNB0Zwj0inDWAj8Wk0-xgm5877sv_cXk0rlJHO1gNVIlWckft6nn6qKre0Rvae703jR1Gef05EZJblHcbrVtF64SwzB3-Rx6VfWtGtRFULUT6CgYBrO5ULSv7wudYZJ_GlTA-aDiewTfOixTcKOrsx5tST1FUIb_a0sUlZPaegE-uBx5S4TUpVZYyXRf7546jM-ww-1qrWsUwNyvE1H2eKNXyTJ6YqrRUN2Xuymt0_Lska25WHHlv3dc5rEsc9VAKMKGzH7H7CiAwzG_ZY9GnBzSVibm7fAme32DOJDMMfGjEFGVrjmejn9aRQbAuxtNMw783qq3g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675464650d2c27-93927937','','','2024-12-07 15:06:23','2024-12-07 15:06:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41735',0,'cd-form-entry','',0),(41736,0,'2024-12-07 15:42:32','0000-00-00 00:00:00','{\"firstname\":\"Erin\",\"lastname\":\"Blake\",\"email\":\"eb_pilates@yahoo.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6S61NHhxd3iLKHX8ZCto1fIrphHFUEcZZSKK0wy71hTwKmv-BxTKIeDmr98NGasPRDiEjXEDQfqZ2OlEBxJoyD0S1moTOjI4hF56plzoVUPyEJKijzfjjIiQeLX349Cw5qWP2axUGLnJTP31w0fYmntSeGz1wKvFltVF6pgnhG7OBPA0_7Oh5-TOC3ji0J1x9eCbdnkDE5wdKmcL4a1vZdyHgUWR9bhBmNOkAohdXWTtzU2VAAvHqNYj5LKtBwigLNAsyjYVwzApn92Y80DSEJUlxQl1YUXuCoUUzJ85TfEa_H1vb_tUVH1kfW1bv-3U7tOBhjRCjmOz6XAkTG-weEbAkVZYMvY7vFBS7-ZP48ZxKYKWPbfm3uTL6vHfl4HLWwVJzUYRxvb13MAQ1QVuYah2ZGTC0mbuCchGqWYKZ-0AnlOhDMq0xn8lUK6JG3wJulzvrN71fmAS5-KGYxS3avVquO76t3SUY-FoZfGxNsQhjK6cO8NEAMxa9_oN6lZy9i7WbZffxUiTOogeZy9sgLL1ug6kPaMpL3ijlKchTTKboG4NmunzROcponWjkxY17hSm3SBSYzRiCxIevFf4E4VPRlHTnqrydWFqaBkQ-bAuaF05PMezr7IWcbqIL-6uQwPoSyQ0NP1eIxhAuhumLt1PYfV8qaFlmLucn1Nt2U-Qc0LQH7CSQwhNFjKQg66zjXqe-A3g-o_wDUQgDu1Gz_Sl7MT79uh_Po7NHo3PQmh7MrlF8nrHeNruqB-Ix3Z46KQOZbP0YUgvzhs-V9K3XEJ9U-rMPx_4tGdyf1bQt8b1x4jTWpK6euyLDiyyO92XjSvZWs9abVkSXoQCwtugSOxFrbyZcphxItOA722YU0GV1PjF-XPF-wAfiTWkLTNKNJRYsHFh8iJ0aCxF6kJiT3aJLVCbh4qc-wO9sZD-eQzpG79Sch33SuKhmVKXcaOEAy0PywO23SNUq55KVDOBJNrB9jrfxeNwkeP8BcT9oA9W9ZIZZne_pRJ4wKoGPQiU23aMjtDR-hAlxX-6U3nz_ghgTSEa4U2tzdVqAZMVZlvuZYauk_-7PYsnAqjEjgDJtYfrZqdBTUcAj1G2U0N5Glyp7k5OmGzwtURhX_juTnOG_g-06ywTCT2J54VJdZRtg_Vs1GwtnCwCinxBvXnNP7HruNI0FYhjMIUtRiU8b5BdvQXFIcrlEbnhpawS2SRCxzRiQyei5caRuXJYEY_aw8D-l5OxI-O8dvhwIOH_Bclg8qTNXjqG5chffvUhYViu7TCY2qpVj-Js6Lq2QssMs-sz-cINDwlgXsa2yxVXaTAo5FCij6OVbFdFavJqxi7qf-nlqaKLOewL7I3I2_Xx1Y2aSqEeZykOE3YMHnd1hEgZ86EDR7feDjL7JZC6-bcXGT2S7OmotF_vTj9lYVc7jLSwSLTqfmd0R0T62cEc4kIsC3vOjjSRKL_f0a8AAg--4WGtb8lm6bC8vra_lJkAQW-StaKjtZuCO0rTFm6RM7gU0z3lUQ4uX1MNtNP-CTbTWVNcBPsCuZsF8SxQNJDSxqOTpNGEdBJoyvchvsxh8JwsCNFq0_7EzfBQopvG5QEL_-omqXyxWBi7EeKlj3ZLxfZNRsM80_Dm_UvNi7mTpq6mjfdvxq0g8l1RIHyJ08Z9UnWhBrgkCrY28iuK2DPNLFbRSL-H9-uintyFcLMKfwoozcJ4bEXWLeD-t7t-eC43KGRk8AaJEzQ55mdRrG93pisLJyKNQC-X8pvcRtENiT59qIxmOiMSK22VKnuSzyjMwAC7yAs1_OH40okMt6DHDn3QkXBG0Zf-W9pIaWlt_NDxC1tVJTQe_xNptG-UxH_Yfvhm5yF2fAxkptjx9KrC4PQEnLeSv02cup8epQ4xh_-1yE5To0y2UBIfIgbPIoRISQ2DMKS6Etg8B6jFoJXJSlNqCheh2Y3rKYtKb-sOeo0fZ2xa8LjX5is-98KzidSpQSFzpSOS1LJ3A7Njgzyt-YpT_d0kftEWvpaymGnHVC_9KydeR_fP20ob2yL4XZogLwn90_J7jAXxGgAnER0M7lvNbJrhhJW3D4_87PWcm5OHRQXUbMHLg_u_MqDGxUICBQHSrX-b2x26MKxrEM5utj283Srg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67546ce8568a82-95506798','','','2024-12-07 15:42:32','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41736',0,'cd-form-entry','',0),(41737,0,'2024-12-07 22:01:13','2024-12-07 22:01:13','{\"firstname\":\"Deborah\",\"lastname\":\"Augusta\",\"email\":\"Cohendeborah62@gmail.com\",\"contactnumber\":\"07776193697\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAgdC6BhCgARIsAPWNWH3edueBZR8dnBS-zl8heGa0SOyxIro4pNxaBdPlk7ZSEbPyDwonx9MaAkmfEALw_wcB\",\"recaptcha_token\":\"03AFcWeA76dW9UFreX9OxkCBrCC7BftZe2YRJR9lU8GbWm7h4BNb0uFDlJJJm6wAB0gLXVxBcDLUtZqoQcZ-JHWQdLbtyFSE-tlbLxo5tvGU-ZZxrs8YypKag1RiXd0FhXb9Ijrda3BOF2TmUpjzczlQtF81yZE3CSyWUkL2fLB9vyj6G5tPsj1gbJ35sR5g7lgB6danxVQhh9PLO8ewRDAhGHXViTeGcXDAQnatT75hrikZ76KYgTApowdYbdDWWErDvrhR9hhFlXsk3SlcK56YmwSO0PpGu7BfPR92z9JPWHN8mguyOhtuqpfGWdMYUSAyAWAvK0JPiYHttIkgDElaxvjMlhF6w3gjI1TKNqNP9s3wnDeaVNSSH90JRmnHOgg7QaE6Bo26BcjQhtfXUclU2D2zmlZC9ZkqT_aaoOKxzRsAMVwy1YZ2-evbpReu_aDUv2H-kqTp0l7Xj7WpKxasnJc7m6QB8OvlR2z2wHSY5_B3uLYFLEtCC49KnlVauIyuf3csFz6wA-kwQhiV2eBOe3ZdczmuYiJv4-DgIaSR-L80UmHy-X0TCB17Qrffzor7XwD64G4DUMa7VPcPYr0DDAdLmK17iIXwBJzajOU9mSh9PFjzNhkmJPZWcyi60sVc6mLcw3mw_FtEYJUujy4qRyAu81o1tEAdOvzDZ8ItUABGoXaAyCTl7O8F5qmfF48Ako3BijtHHvQHsbPnS1pQgMTvLT3DEtb1rWqnLksB217rSVhIc9Iu9wb7ca9eRbyjGvgp371qEaNseYhiBh-vWy75rXOtBO4qXtYZKvYzJBJ7KuMUg0b9BeHX7arsoTY1e78GqPZowYkiNpSocBGt-9dLp3cxXowpSPr44TLYO0qoyi1ONZvuHI-usfNz6LMJ9h4Nwa2BVsqdQFbfItRS1wEM4aeaWDfe8w6MCsiKgAXi4hJRxzZzLxvYdIz6SgX8RNGZdlEeK48jRa8kkKCohwugy6mTsAFiYI-UzlXtL68wwIAPSQq4i4x_8Y81-Imec4OVLWR0Oo0XLnbNSo6vBHQZe7zblsdmurFafBZsi3QEBPa-eHwzbnp9rpb29yLdRZi0goQwPTDusddLMKl8A520FD_-v3m15ctFGk-8_UjiD56CcKnIcoYm-wJXfS_hLlznS0g5o9SNdpXeacjGvGZYOfIaoWWIH1-FWiO6TaFyJidHiu-YcurrtYW4uPVltA0hODc7bxi8ScIwZsgb25ne60tbShYWNhdjre3k4E1D6-VCEORs6T9Kwmb5xanN6ZE7Th5-qvihkeG3ji6RG6iRYeYqveCxC_Ia6Bw6qEEoZDYsnU5Asv7KYJk3SPs6Om1HIOs5nqdIJ1Hp1GLlXWipbE9nda3zI0j9bQxa76rYK6k6BxgwfKAg3WuGQFjSAtSQdZbcu1HmS__pEUB95bx34ZHsSMar2Awv19eRwMYz8GdSd4DY4IjBOOnotNFSWo1XAuVMgGoeweLrnMd_yM57IgakJi6dRhtooGhdn-G00ozbEhOdwptlDonLtV9XaXI95y6f4dnc6tDZtSzTTnElf43O4df5cGI6ZMVpm81rbzMhVukKT7tbc0C04FJtjVe7gknREg0IaVn-oXvJXdp3f4W0nFFr2tNma_HNIF2pMbRvH8NAbi96YrVC685DsyjKqEq3KIatCBQIhpRGAjAzYNMW8xEm3j7OEcCX7x7IrB2wvWjJPm9TiJCjuenBViYStix8Xc_Ha_e6x51niSUUP6Bfm8L4wSg4lZ-J-pMGAKylwSILPQ0BHZPnUodgUDagC5ipG0iRf3DEQ3-szAqoOIJGOM3qDMaRdhAzL5-jCvJZeV-FthYDx8ynxP6zGYs-Vb8tmjxJi4EADdFEPzTf3jcYeHLHJsJLat9gZSBl7zqYOP77uuTqNJqALwl5QZEzSC4xSjAYI_KuaIcdDB3oCjfLphC2cmo1_OnFYQCRoa10RY4PHwMSTcOiR6HDYIvsjKcD_WonUZ1YJLMIIwUL2fWHHRWZrVdShFQYB50eeRXTSLY3Y\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6754c591eeeb53-25750198','','','2024-12-07 22:01:13','2024-12-07 22:01:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41737',0,'cd-form-entry','',0),(41738,0,'2024-12-07 22:05:07','2024-12-07 22:05:07','{\"email\":\"Cohendeborah62@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"SW9 0QH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAgdC6BhCgARIsAPWNWH3edueBZR8dnBS-zl8heGa0SOyxIro4pNxaBdPlk7ZSEbPyDwonx9MaAkmfEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7YUxyNwmHdNN3g5kUPMiR_e6Gss3wX62lLpBxzDyfQCrkd6vx-OoMXh_P7iew7ZmVwdOgd0f2arFkTY8RhtmnBIUV6u5PhFVMi3xOvMKOJhcYHbrGoI-3ETGUhGASaxjbHZnw5sKtymjy4z3hROVBXrSZVGKaCOtfiqFnQjipOnpq9CRQANAUowESPyO5DHd5OlehFH9ZpNYW3N5wpriaIqXvpVz05hvbuTxpPv_fpx4xcsHr0Dxb-Axe5oclSzblk9vEYnSmiB8ZFKUIRRceaDqZ-N6-zNDCUu6CX4OhodtmEWyUKkuNcPY40cESD903Nm6bnzrHbwT6EKs_RmMRszjI1K5RRLG1N0-Xtm3ibfPc3gTh-ZaawbFruMwwL-HBC0qqtB6Hwb5_ybZS6FKmmZAW0OvN23_Ckjf5v99bwlpv-QEjGcmrS3dUlM1uo96ZeNvsVPJ93EQm6RK79xkbiLgOI-l3BO3JTxSxh_TNFTeNop5_XhJAJo1_Tx0FKSiQ4FKKko3aKCosiZvRS0_WMYkaOlAG4PE-92E8kjVWM43N0pLugOijEjnURHywptT-R9moeOShpZBupem9dnguSkKY_Y-Ed-nncoLJs7KfFRUj1i8abDR1jV3JtGm3ik8WCjg2mEGUXxwEFylR3XyVaknCXjkL_Zr81CQMmOrXzB_vH0lNqcBaC5JPlFFtOXrhOvsqZ-koInIZ5L2cBSboZdni4KtgVGY5AD2SeQ0U5I6mDTegoWkSAD5yAm9tyKaXVCXQeW_FniLrjHl-I5KOa-g26Kp8VEFrUt8WuwkTUXdiQV3jqvjXZ18rVuCxERk6M5M2akRCRVF1r9Rr_sbCT3MlqH3dHwL6-NzDUpeut2T1T8DnfbvcxMW1hFPkk6VJxI2I3xJz1fTNRSVZO4v2SXEIvKwCfDC40Lk6ARGDGZu6Pvrzml7VvnoXMr0wewSmMyGokFiwHTTNPxhSOF0bkNQmoKwbWd6fKJEcgCTwXc1hbVWrb6aObibJf8QmoUCq0hsuqPm--trD3UyN_0clrrhyoQLCWkZhYCFs89X_6-ZuN2M_rEPto0IFjBoJ-oV_LJUAvnOAjHcCjTFXvuFsgiDGkgfXkVT4riNj5MvlGt8Sp9FCKdXJHdRzjYH-PFDKxaVr2QY-67fxW5ELwL2pr2vXAB96jRcDr4fqO2Lrbo-L-Mp2Z7RaIJx7AdUy80HMVrecxDELpnfqcQSZQWq77E_GYoSljVJJt0u3nrmCcCrSpvlTbRD7d1vo0A-F2pQI3SDSebOPDte4NmIgDxsyNBeE7nVn0U2rrLtwLOLOv-GmSxlseHLzn-o8b6XdlRWz38kHPu_WiJUVvHhDnKGYR2DXuRry8yok_WiKDrvwfZooNH4jBzHzlvX2U3K6wMbERznpAM-wYAyRFFyAcxoM_NIVruc4HmZBn7CJXPIKXDo_oWXP8DuObXtaaRloQgJxGVBeyCeh5JyVjcQZlOuhkcPzy2BWn7RjJIrFlkLiZjOqP1YDqPcB_NLdabRfkqKxYb46v8l188yCpXnblvUSZsKwL1DsLcPZ78_SkOPmK5LHDgYdl8JextOgrVV1vNMxbRTS0jZT5bi56fmsolBnsOxEnKXIUTkMEczvr9k6KRsQEB-5CDNjBBw2xjI5vHXJa7B2sP6CaqoElxywFJOM2IShbCINdrQhSDmTRuTwhQV21ZdS5ujWV5FtBS1MtiCp_207BLrfpalRNJ9IUAgmRvaoTojyowdzczldF8uM1k7-MmBCAwQVMZdK8LOc-NBIVCDf0V3t88-KWvr_5TUQnPtjeVd5LkfAD7zk0WU91mQQM8qoJvZo43TPFSA3CVRPNCwVvuSfn0eKqfGA3ofgP7ytJh6vhmcILAZgzZtqZ0-EyQ_EsQ3ZyXvVivruC6ZSpxYIaf7L8oqXej5nMkvRJfHW7tu2gsRG6-c-0IrMnbIYh4L4_TvMGr23mstg8pkoNU6TvjmRqnYjYDaxi0R5cT7EGQZdn1JAm2b9vdr1bsgSlQIE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"14\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6754c63b3a7063-52291799','','','2024-12-07 22:05:07','2024-12-07 22:05:07','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41738',0,'cd-form-entry','',0),(41739,0,'2024-12-08 10:10:39','0000-00-00 00:00:00','{\"firstname\":\"Diane\",\"lastname\":\"Zetterstrom\",\"email\":\"di_hamill@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiApNW6BhD5ARIsACmEbkVgpS_S4KV4osMYGrz6PeK2Xxbs0wcrED6QfSMUweJPTC7iK9y26uoaAopUEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7K_e7PJHx3VGiLBI-r5MSiPIzdgudrfy_LcpSayHjRuz_uFu4HRGbrP9TwfE7ZSaxLhu7HHCd6obD6zsDedD57PF_KFQShgMwRatRJBmYoX9l2n6OkyRX7H7FlitRbSedbYxB5mT2CtLTX2VOiypnTfk44d9kHPiw_38LaVBvEkcEv3kWcQXtfjkVLWZmtCdn5gx-bZNXqsq_03VwGebj3ElPQO2M3859_FyKXclQz2Va1agdcpiQsHxx9VTPZcseLOo1fPO9CrcJLkPVbQar_mt3Ic3u6c-XWn8-n6MhFlerTLdlW5wlhoL9jbu0433D3Z1hbzPsuFIvx6pHW45wLCMqiGmztBfI-WEHFk5Fbot3v86qlpB-4Dq8pJpRyQtLmP6PqcbBjj0PU_bxZMNqksMpTwJyTt-5gfsKARee1DhIL6i304E9_idDBk-EPNEqGG9f2YoBYR-m8U-YSGyGBrsp8qOq_UdKiJ4b10K4AVgvMwYjFcSaWpFxJWHWTPZel6sBEeZQhDEce5nQMhfpr6lSkjKpvqBoXSBoa7gKX_XjPdpej-erQnbhgzbC5Q1_EPrA4LDNef8LFiL_es1w0bAA1OMu9ntSQY0CLjG1o8KI2AmRv07MbX9gS5UAaUcqWN0or61rBk6u28jz5nU-D0ZwAEZdkXlfv0Stq3g1O1-Da8A8dM_UgsFnrQe1cL0RhSn9t3yAqsSDxo3VGM6CjyjMvba9OcnXKQ6fjNM9AjQmNEKljYKJRie9gdr02mXN_rc_bTvFo0d7GWcNitPtUpDnOeWjOkajoxiI7_1Bh5-goeBLOBRa1CGypzZ8EXbMy9IYBxOGEWv_4DQe2pWSbuoDO8aNUgIMzRVyjJwgLwn-GrrhODbfRtHgd8EZnZyn5rJ9_Zeojr2OkY10amJm0YOSV0QMfwPsyHUuA_8lAKhybtheVPvfr23Dumh5JVZ2R96kgAluhsupyXtRr8ypQmHyXYtEDijyldWW98vR21kGEY2kZsZCr7sS031HXOzmUze0S6Xc4Ojyn2o0086XZ8fSeale5YeKL4mc2j_JwCsaKOEQvh7N7yMs_w0020Uv3pElZ9Qr1Mu4LPTrvnqINEjH_n-vBIpo2ejgq4AG4-qT_Tg_LnjnGs8bWpqdMRzmU99cinfPYI7fniHLXsNYbA0SJy7oZcyM7tvIGHFQAuIqA6t2yM5KspvstfN_d7MLq1eDadheHfMYgvFJC5ipFEikoVx4WURXf85L9ssq6XTkXN-9eytwcDu2EJDM1hxFknTbypUmNMDlJJUdFqErG1gNLirDCtNW8LTWt1w19WJEoewgPwh6kIpG-POS_jVpudZ7zJu7Hj1qsKgj6XMJxCL9Tiga9721eQBsOOUe0nuejvDt-OlGN04rpKb9DgN5PVtarrKQ-uqSiFg77e3lBOLCNtDUhkjXrd5-PsiLuVnYE2wWnLv7dsCJ1021YmWgAqlkrbDx8VhHhsBT2F_TtjfdKfdsHaXiytqgcTeULrpZAHgpsKzkyfyPqkd2AUA29PV8dyG-ej2yT6XBmX5Y53Vl8jAfZdwEHLhVOeoLDCzfBS9nVezPDWH22KTqW-7bZwgahyXJ6AMor_kv5wjN5_n670dZ9_OGI0M6deMRnzeZubL-X2I3HaO97ZfAClJvfxckGvNUy7_IIrYQ3n6h0uYcWtHhEIuJYj2WzrdqgenV15al40sRBE9GUIejApwiLinE45Q5ai9cw0KeONvAIzFvxffvgDf6HGfgoBgYy1_MCDqd0g7B1K5oeWJMNkx73KZOoAR7WM88d-QWghNTWdT8dK0QwvejrJ7jjAv_b65ePLjsxmTpLtFCas2fKGtfpbNHQx48UBGRFeZUG-zxieoIQTm1wzyUmgOhLqpM-HnUW4JUPRHRF12wKslbrXVZdmnDUzcTAz9IuacrrZw1ti8ceXQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6755708f28b841-68183017','','','2024-12-08 10:10:39','2024-12-08 10:10:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41739',0,'cd-form-entry','',0),(41740,0,'2024-12-08 18:31:24','2024-12-08 18:31:24','{\"firstname\":\"Erin\",\"lastname\":\"Blake\",\"email\":\"eb_pilates@yahoo.com\",\"contactnumber\":\"07598212336\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6xJWzNS2SvamoJcHBnZXPfNslIZOba1ApZr78NXK9qKA0lPK-vHQRGfV_y9yIcXrUy0-Jky4KWn5UKWxGzAwyhDo1a8LbXMa8x6I-1gHvRvlo5wFhkvxBP2eue9nqYPp1i0mxg0bmX9oDDMlvoK5M_mFiTY3f2nnJqpHit8X0BDhrKQhi0BmN-heexa1KdCpNIdowMzgYodD5SoMjc6ESKI7rkfs9tGJ0VfKWtp1fzWCgyB4yzuGsmbgXKMGR5c1AXaC6pneXt2qCm2Lvef9sZLVpgAhKKeMwyWCFcMRg3HcXe_qpIIgsmedoHhAKeg0sd-hRq11in3wE91WqQ4HUwb9olxdJM11hDk7QmcX5xJnM3jfPtG2M0rCeqOy6lcSlBuaWi-NJla_yfgPZtSRQgHhZNosnS5sEoJ_5NspmSoiCrnk_o-V5o4ls7EiEwxonPhyFCW5g52fXMkQdogSyKCzYdCmtulaVsZGhLT4E3ec2gg0FN_kVBsHOldA8kBy98url9vaR62Z6KDNM4X3YrMouDLU1NBpUPHy1De7BsP5AaZNf2w8VqJI_95GwMTX6Na0DfEybQijZjHwH_jrucxVyWDcZusncQtZTWDmaYhrSgK1BA70YW6_hbvm2H8j3f2ZIFaEs7A0_Gu6xsXCkGzLMHHoFtt81csToUAqdG1lbWug1KDt5yhuZtu9GzOg16-kBeGYKI7XHUH3poYDJnCbsL1lACBtfuLl6eaqiAA32jkHWDYxOnuKUR-ktS8NuSH23OsXB9HdX94hhbZdG4sxMcJiCMNMBzFUQtSKedDCjwJ8KarcsNQsfWe1qsIu9Cgemye7uYdpyd1y8gtXCHLtcrKXFE3pFCSN2bhDyaMT5bQ2V7hKu8gtLLAlsI0IKOp-8Dm4gQOPdtMlMfZa2pQI0HEpTR5oUeXRJaH89lx9yxagaLS7fg8pah4XB6g7LE5G0mO9r62uPg60R7oWIaPKjLPSlPLxqfwZczsU9xrzT8ad8f0LUBNySeYPkQUCkgSFoI9wUt_0hOb-EX-FKiKspLlwCKjfX_-2Hspvnj9ktgUIp0cK0CYEOH1T4E01SH85Jjs3-F_GTMOJQeSe3CQBVsHUHrES0XY3DQ8-wq1enylZku_fQyywH4BWZSu4ecbt7PQ6TjklC6udmfSYIYfMNpH3u2RZOtVeBY15J8LiKedXzXT1X0arJkzOKm68jAAc9s7LijxjHi_kyhTSdFdsCO9WhmLqclNM5KWPsAnO0gh_Xq_0OGfMNFpmQTTutMC6wxreez3yoqoOc_fUn_OmUp5lKp8mfzhGwE694cdIEicaL3AQ3NaHcgcKV2hLVAE2YpaZpNA-Xk_O7SnmJJ_ecarAFFQKyaqua7FxDbX4PWiv800HsjT8VQ4zSDzIbqmsg-rfahyM5BtxTd8QJRBtVWoS-va0uTdTRhoNVIMrqRTxTTX_1TcUmBWe0twcvcG2JhzdZIpCQiKFp6NJ3-KUX0wWh9IXkxdqgYsNZeUNdqQCHqiNLS0yMYv37bs9aCXHWzc_CXJpFvFA0LsMvqDTgdWsKY2N2rybN_pFnmdpxmDGyBTL6gHV63o4i84OGYt9DFgjcpAs25t9xED-8dQlIQjwNroY9t12C18AFT7uAbq0HWrYhC9nu0_F0_5g-VcXaKYTzdSk8PPkQ2N08BQOF_zJz_bkxmgxaZgfo16tS345WooSz1Kc9GlWG3d4wOyz9IL0ClOqE6yds7jw3UAqxCJ6fgIjTWvwT-jTrdlkZzFenzkrbDKcMgxTN7GPMLfoN1bFXa4ZfZDQOww2IozrV4cXA3POT_NYdDW6TGTuOSW0_63pEASqJr2wSYYoFp_xXkGF0w09NUHQTFSfucE5Aa17mCBY7bdNAUAWW_hnClbVrbjJpWR0diaHcyF8IRBls7W0iCeI_4UYDb-z9zkcZlJQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6755e5f23b68d3-93120514','','','2024-12-08 18:31:24','2024-12-08 18:31:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41740',0,'cd-form-entry','',0),(41741,0,'2024-12-08 18:32:49','2024-12-08 18:32:49','{\"email\":\"eb_pilates@yahoo.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"2\",\"currentpostcode\":\"WF2 9PN\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5awt8UWPZz-hTlXI5RHUgRaLudDyy-dcI7SOH3ZubQZIgBg49XbtOYs-xCkWRv02UH1SqzjYEc5PqXmB9qaxUhplezwNuInP3fvFYL_mEJZJzTgMPD6Byuo36RYRZxVRlLm_F97BdH_JCwdJ1bbHOf3-sK5L0Q1WRhSmMyUJExGgmtz0cb7ftaLlaZJdkZa55VidFxgmHW3rNznZ7xpzp4aLHMB7r9Plaoa-dkiLaK-aKQjsFxRa8YjYJ5Zb3jabLg5PpFCD7Ib5CE9169aFoVShkBnFNyWaCaxyBz4Fruoz_isuz8wt_fjNe6EAcqHfucOWSyB1wjutCQSY4nSiMGeJOaQ4O7PngTEU1iRVHKd4GAJmhyfhOuPVCSaPE8B7orOvGeEz3t0zwVHEO61NRIhdzGW3Yj_9tmkvLMA0PJrppTwBR-0hSu8mLZbnQozXrwhclDLqSN2hVseSNORWMYAgDpvRdxWMiRfVlVgeheiVHzHZ9mJ8bj1vJ_l5MxkJvKkYptJOLTfCkiEjy2uYCQ7qnssrIPW8QlnBnj4O9j8vnaRX1Bc2Lriwfqn1kmR71eA5qlw4rZulOymWCbzvoyk50vyWJ90RZQNmqd55Gae6dPy28L9M9ama9Laph8T1XZ4RvrfcfuTk6qFDcrxmewU2yw14RTGltLbhLYIsecffRS6G9a5m67aQEuUbPRnyygiUY-QbgaL_Wd2N7dUojHapmvElqdZa_UPbpUiaTC1VijZHyN6rNwKIYCve3A69z3qqpnoi-RCuCYDSoVkBz331uhN_zeN4G2VIimLfYk99S3PpPOb6s8teB9zNMZHQlTuJ3Klp93sLMu7IV1CkbgiAPEnZO14-X_5uHITXRgJESyDHHuWy2DEz_AWZHDJiWq0WwHahKzl1X-pCauqCGzbQnk0NI8_ZUj49iGLKjuCKMJz1GmJBWqW0ITLT0d9lHBXH8NNt0tDEqMvNEQPyA0sAYQtqc6_xiIz6uDr50Co-wPIQdEkyxOBbtKx6KUYsaYe0yFuFyOILVEeD07wNMLVG4EfIpDUKVHJ4jX7fwISx-zgUZW6E2bfr4h9ok3P91Lk3RxNGaG77gdZTaJPm7uMaRR07m0cuZ-tdxZ6eXqd97GZCBX6L11XTqBFShBKu8nqRc27D6Gn0wE8UjoEd4zaLLkMWmE2PgstmKVFLN1e6pV6khATGPfjcipQptOo867veXb7tFwohhcdcL0bEuI-3ZVpXmIQadbEAGvRj2cqzWW0RWhe1NjxPnB5gSFHe1pcO2Wz-MrqO_GWELP35s1SzLtcpSAh3t8wdrtRhQGf4qL99Y6Ve7Zjv9hkosNUpPeGRZFW0NshkI_YDRJpkb5W9JiQL4r1F0YY6cmxR70Q9DfOr9rvor7oUM6LrBMxTqDGJh4yyxXZ6D-UOcDn1VKa7xLypAgsrdsq1G5aXLJeE9FlDLS0MzRdPzKthzrLqGnhPPChNcP5PZM8hNnHPIfYZlzG5W8h5_vopc0tf7D2bRk_47tz82852I4m3ydiVkIZGELYPx0Fvn9WE846qONwsYtCEiAQZMjNU9jQ44UXOIiUuX7Rrx7zFuPglzIBwpTdcDE2gH-NW0QGnvqY2NahBFoGm2-XyWyNsaBe0DDK3MF2OmcaDJI-979njol3KGuCBTof5uKCUBZpfdSLNbSleaXqHrxIRUBJN8n0zdbQF7ahTDYz82EGndPbl-StBomd74k2-a_NEZ5lbNcDZtAd3oDynI5rQ0Rig5zGWPNFYyFu8O-lrKej73gZ-6KJD_s9nue7jjzycZO__OxSUr_iEIlohkkoUwCyARujl5_-8aJn1FO90yYjOKsogQ0TTYVcVugOAZulHPumgbAeSLoPPXRdQnsTj3f_enY_76e4E0KUTbmA2AmW9UasVOt4SLp0TZ8Ndqn4U48mhAsU3EHZrHG8-3sIq6kdxkb5LXQjx7_4Z4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6755e61da933e0-49644492','','','2024-12-08 18:32:49','2024-12-08 18:32:49','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41741',0,'cd-form-entry','',0),(41742,0,'2024-12-09 23:58:45','2024-12-09 23:58:45','{\"firstname\":\"Chantell\",\"lastname\":\"Frost\",\"email\":\"chantellfrost@me.com\",\"contactnumber\":\"07853019704\",\"pageid\":\"40780\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tzEjswqvf0i9NzuwCpGA73-\",\"recaptcha_token\":\"03AFcWeA7FcU9d95j9wI5IiCsB_mxXvp7MbaYgQ3jNGroSL5-uZ4BBW6fmAKLOPCDYD6NzUHpbocNcjgCCnnul1lq073WnuEhVSz1yfEOqfoqEw1m-nNgUcdsGQrliL23R22DBSAP9UXxPttfFu94RqbBvahpA_2elaJqcM27P-PdRkcA3i5udIdX-S6ZEZE34X2BhLB7oTQ-d52SMrNyriX2JhpHLXuxlaqLEwCCafMbST_a2tQQonR5piX96tV525hX8wDnHq0PXT-Z5aNdj4t4TlnxpGp4-IdEoGuAgZ4X-og2Y-ACIt0_1guUGErwn6ETKRQTr4XNZS4vsuCTTGAl1Wzx_FSwki6jM8yGgMsPeCWc6cdIRpTpbE4pppaGcrvWgYEHttj0zZZe8JLVwyQOFkDKB4kQbA8_v5fE2eMT9KiX1LUrjE_dv59UJLl0WGqmM-u4EER8Jxwn2EmgOwaJh2AQ_d6Xmm9umy7Nn70xqBjq9aP_TzGQwulxcpk7_JFZMsRG2G2ksZrq-cWEJnWYkvab-lgPtYyo_7yAygXepisAQ9Sbk7FH9DqilxA0bT8cExyowSuSfaY8JmwgP6NzTsifIDBoS2BXPQDQcviu8BAkXODzHGPLL7OMFm4AeYND5HFEh3OUUy0Sy_R8xo06gWN4AwXbuQFO3zGz_EqJeunA896B_6wxO3xrzEnl0dSGtJMjiGjXvKlXnOy-wqNVOohtZtv5NLUZ1uy_G3Mhut74_6DfV1lj_iP3QZi3oN9JEKDPihwReLzHLT07XZ8R_fHiJRFlonsFy_szIsJkFQR3EFySYrsFRrtJ8AAlsAdXzt0Nn92CbfB0oZRWv95Ft_YbXAvZPT3UdlySfUiSGgTONqwZLmxCfsvLgCRayxY360fTq4rR9vXYfq5ZT8tMDQ99VQmdDJzf4O4OVbYpuY43gGafBu9ZtiFW7XRrBLusVamJh5K8zP67yWfmCZ-YpTqvUO_qfokoQBQWL_hkAIUcHZB-iv1oOzOnyCy1_ti7Cjq9yjjMo5jKhJlUW74lg0QSCw28PF_CvzGclbO5xLHZoaaH8Hk56aUULv_P73fD_Sn8QPpQtKQItRvgq5vMMOld2ya8wMR24WR9AvUwVWVTv8EdcyDup5tQOR8lMXy-Ia-s9KO26JMOq53bSJJWWMyF9z7FIiGX2AUy15UEeONd_yPSO4czgNTROOEDnVE8xINIP-0pY7BXG5ydnrk6q6T8vaZSE_n0tNoLLSW0ObsvxKE8hfYo9Wb8srLb1U3FfWR7IsSyznYuykEc3h1LCX2-Zm9i7ZIoWztg8hT5y0-rP_OBL3-ZCZaZYfbSwcSXlZkmcof2lJGohYAJhabpSP8gLB5wuz23Osvh__ijU7b761rMw75o-ltdjspytdKlJo0x1u-UsriOwmXSx0MvsOc4Ch2IkzLfLgxfHvJUdEUiXDPVFBbGFBZQDK5Ns24V6Mfw9UcfqTHldoFKwNCrxPk_pJHMrVK1UT40tWm67vbNrEBrYLTwWA8PcdkDR5JgZoEKcm4lwmPKoJ7MPcc-T2Ovqaav79ECXlUJazusVC47676wPfGPQNIuajEIVOz1eEoHvbgtsSQzUa-d_7V9On0dUuIwnMCNEXMGNK80puRhjWh0Symw5YepfFJ8CHH5jxUzywuBE6ZeM7I0SsxFC40KtvrZh-4XvXgjdogOt3jcvXTcO8JZTZW5IjpQxh-2sjpLfvqqJR3VgpW6Z3qGyocqGh-AEtDy4nakLwXKMIc8KD_KQdMrOtAe3c17dUB0iZ_jiChRRTidupIaH7aOwYhCwJnTsT_xs3OitumRP8WcA_9UmEbM-n7ERyQbkkef22iyOmUnyg7JDSss77dX4GRJ3cz13F_d8B0XMu0gASFo9bp842U9erA8Av6ewqOmLbBIjrTXYkSxkBJqmQa1phXAD5OuwOngR8BCPr82Ndl6CGXhWpSf7Arlz6lVQohJo5e_Xxu1Z85uYFoqK2R9OLJMWVtZKVjoEBjy0AZgJc0M6g0hokoG1DZdZ2k0Irb7F0TPKZSO_\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67578422e29b10-90902188','','','2024-12-09 23:58:45','2024-12-09 23:58:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41742',0,'cd-form-entry','',0),(41743,0,'2024-12-10 09:05:15','2024-12-10 09:05:15','{\"firstname\":\"Gail\",\"lastname\":\"Curry\",\"email\":\"gailfcurry@gmail.com\",\"contactnumber\":\"07816781213\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA64LSDLuAb5cQEIHlpCyXXk_OeoYPybKpYDZaTxf0U-WCHS7C-dqEmpPHJU58hGG-7oU5BKJZFdl9hh1nsAPIdcdikdkniPNBmTq-IOXsQbEnR5FPJxnsPbl4tkFRLlaDmBjXEhu2lZOlfJ3O9KSJ9cMG3BupJj5mmIrYFOp87htg0fOX6huh9v9iDgSdYC_Ls7jNPE7fI3myBeWkE-pceBVJLyGCIVRGGKJRGoywLjTZYioyQ4Xp5VK0I8e7a63gfygucVQ4bkU0vL8HWQUJ5cyS_BiN-IKFTbExxpGwbT8hx4kIjUZg52tfvJDro3a7K1o5MOM96EvhfPk1LPvbf5IPEw106-7r1YK5U1TVwKlodIJT9ewmcaG3D-FSBLIo5Joa2NGmrITJKTSeCW0c47lum--YucR8lm7_rCyapms88DQzFLDIBV-RvX29TrU5oEFlOpzoN2NY5q31dURG9D6H3k9eL6JNIMtdJOG1_iaB7o14JwgycQqtwZGvCx6lE78B6RWU4dGxdtqtvOaLPkOgtUwX0ggVgYgJJKQ34AnpT910rrT9pOJmlacD0CA-Hl7zgeQMGnbDOhvz-Pl9PrF8OhDU10Nmi1tQRGfCZOG1tQMi9G6ttxIm1ltvtOE6XHuKi9IfJFZUSXK2ntA7URLveSJEU_Dg5xl9Y78ygykjMLc-ajpF4pOBB9w-zv_kPv-vP0aEkz_unU55TCCebmp8SnYYXZvJuPXixiY34K4jNrVBOFapv2LhuqlGmFATGUL7xBwajIeMGFGeV-0f9IiEpavyDLUL0ciwM3wnuTQGhGT2Te18-PrM_MsG9U3upJHEbJZO7Cd7-TJ8ms-hqGzuYo5gZvzIkU2FZfwztafA9VwUMGmdlvotXQ6iM8KCww9EJe2EgSO2nd6_XHuxBnjHK7Q_xxJjNTUMzGeE27gEvN6p6ubO84LkGezEd6AE-RLu3-GvkYdUCNn05IYOG2l7pXji1hLjVv73xNVCnxYIB-rpM9mkE9nysGWqYu64ph3aqhpq-2s3qumNk5NvoG9tKzXtFsZQQKBqciVgstBFAnPjv2HX35WfaK99bVDWyzgCn2vEsq-EC0ebaMEI3pS7Dmulrd7uKoLLAkutFkeDMoklN1hq3eBVY4WSJ148uiBRqbH37n4MLj7gn8_fFvnJeRxaZ47AYfix3y_ZNZl23XKDd_O2hRA2p3yO8tdBDdXltj0CA6B0RFer2gzn9D0BKG4gHBI96frDKhca1DCrLSJHcl7dy4ajw87Jt0F4rJBbMTwsG_GqNZta2MX0xme5zuiEEqkGh40dqR8Idek2Di5tgV4MS1qmeK8EwMNmZXxrbfrWUSsfl8F5jkAddc-SPr39ZIslhTg12p7E4tUZPyCbSqFmfDqctR6OQXM_jv3yL-fRa8RUKBDN6QsUTZZTps9R5CPvVsLN40yhArTk4IvCGa_E1TF7fXb8dlg52CQThM5VYLp782BsfCOWp6LuFhDcLUJJstrkrD70K9h2kfn3nOwmWVbNGoaHTZjGdDdJTZmTtB6i2t9mrvAlvrxNqx6jAZfoxBdDCgjEcNYwuupgVXOsvh3N3Hu71g4TtgsUCzEnsDdJQkMlBao7p5ue7RyQvEpLgMHz4UwWPRR1oBI_Rgo3EOUB2DftEIuq3ddeRlT_sf_El00XNBd6mdiWBXEnPk6hNtgD_Dl4MKJrwiG2wSgU-yrIKX2ZcE9ELNYIlzUU3iV_MMxO2CF8HGnM9bwzyvuW75a176MRWE45jaJe3pH3G4E2ZixmMPkGA57EIKSWFLEbV8UwaALCJDQGTg6w1ddSTkIafjvBnucs110O2Uwt712Y2WDQm3i4w_QIa_hBqIHdlzrnzvHcpkIvbu18rOvixiSWUUE1Yctx8uihLUU3mb32xZEIVyMRT2JSQM1ZisWl6xMVDO3GBJiaB9ktFg5czypvG4_YjTVKB9Gls\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67580441c5e103-87405015','','','2024-12-10 09:05:15','2024-12-10 09:05:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41743',0,'cd-form-entry','',0),(41744,0,'2024-12-10 09:55:38','2024-12-10 09:55:38','{\"firstname\":\"Richard\",\"lastname\":\"Sleath\",\"email\":\"rich.sleath@gmail.com\",\"contactnumber\":\"7736 667167\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA6t-6BhA3EiwAltRFGAlByv2JA0Ywr-vZ3hXDLXIjHzGRrCr1zZ3zOHUZToCHqvGO3EPrDRoCIKoQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6kpBvpfJOzSPih0eShhKvKdattxrSYE0ldsQeEtMKFpv7SLcKhTpQwO6hB9fB7Wis6p3cpk_kV43srdxjwCC3GTX_HCq0H3VWNQri2gnt2IU2QhV2jaVGgEIhDMSlcD_N6MR_hEuyYAmGXI9x_EZDn8aKb8cjTj2JBkIC0pe2e2sjPrfpZ3Lj_ZSpDQbSSZQn_rCN6W0NaLH__06F-nJXFTrDbZD07vhuPH2dqS5YT_mIK_lFalOAz3G5bzo1v3syRwdsqtFOB3eBzO-kRCbFhtXDMfL-QS6ugVBJkaNWw4NdRH61l5bjKumAnf8DpRzkKcgWYOW9ESlYjM8BES2MG--9_eLQXliFy_3j_cE-Wph23CHNYQNSbGndR_CxJM6TzidK2QczweeTGeh8C2_02kCc-esGRXiCQ1vrs5QM3bNJ2wlKeyonXAIxGu5aWlKAwKSa0iicP_4ykkY3lPaYsjxFlSzr8SniEb0FOzaetzGum1ZbOZqgfjGHzwViwlF_6gaAk4L9P_blHdSAqtb8lWr9nQ-a--4V-F6UDimj5lU8u-r3BpzSWF-aXP6qfPRHH9AaT0mcLcsrDy1mtifEhNXF8eMilBvLAVk5c5RS5BsOAoEfwtOmNmY7nkjuHdhMF_T5OTiud_AeaMb__egBc4JLuQYz9VyZhHbOBSrrYeGxa0zT4TgDDlIJSbcTqkiqaOrWrq70px4DnnJ8gcbSJTraWZkTSnoWVOT7KPKU_hr8h43OtxUwBeTDzTLBCnlX-zYxe_HDhe1-iKvIxGS7DX-axgbAPIssaHgrwH-yQu9dyT13MwNH8saaY1L01Lm40OvecprCQg4QEJfO7k1HBeB0Ab2H0Fmr_sHlfjyyTcNSw9XZ8NSaLT8_G7WAwJuQ2_TgsWaFShyLGu3XPxa3enbK0DSsUUVFSTNyh52daVTui6STMUsEPIikntdBMOCw2N8SFzVzxxv5EAfXqVUkxdOn4QD41zXTQytstfffe3skYsU8YlpJE33dDJzUD6jSfQFHeyanNF8L2h225hqfxfmfCvMwfvKnJRK55LQJUPq3nouf84HrU7Ms5b-J3b7Gjsv7LBv6gFECC84r6PDW4IkpHdoW8phGuyhLqB4xQQETSBgaBffNu5yzfIkabKh_x9K8CS0gxoZb3KDfIkenUhaRxvWDqqgeCuXv2qQ_wUHabRHfRf9AKlj24i9v2w_bpeZ2_DGit0my3-0eeAOvce5ODSVkx08yFrbOpNj8Pwb-s3xLbsXq1ntP2Ldj8M3DH5z7wIVtkCANcEsDuFCbTe8RR7Z_3WODWN5oE9zx-CbPVijJirKScEetvceLCrxjOeICTnH6YF1vCF10-41s71kB_SIV4T-sSlkvbDhgG-xbVGXaEaVOj-EjSQIyI2xPAzzczuNlSzdvHegdkA8Lu4AEJwhdMwlkXzt0AZkKv9Ozd2EOkpQ0Nm_igWdA4nTgkt0zf0jnQbeO3YJt67FpzND5ik7_o785WhypIubTcM9p7EhnezNuJcXOj_QrLYfLkvBqWPI8FffQOzaXyElmXUKZZlME_v9iQMum2b2xOCIJMtctSss69ZXLYDjsB6RRDDKqFdAVD52wRxTL_HZBYzdDr0fIFZdADcG5Kb-oW2bFGpWnQPeRYpA1tT56oZ-dZaf51NieeqVKt3tZXg5ajKvc4l1teXRMGPgt4hJ29siQP5MREfg_sUIHQ8uMG-zG-iopQ3e0jkv2amf8MccRMAftcKFMquDuOqDuxviifRzMw87N18MKIvZg3usEGSkrxk0v0rR2XvFvnEQdGLzV1wwp1BuL3BHW3ZFWDzrtGMTMSAGmEJPGHTnL9tqjaeJYojixQK7qaNo78UrcvBK_yDLHe-9lbaVjJF5i9g4zqe5FqIbE9_QVfQNYnnZN0l8ZUtvvrBM0QEfIRWwcfqoYVU9zbfGWKi3knhAlc8hPYUdldGCI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675810098db3f6-07319424','','','2024-12-10 09:55:38','2024-12-10 09:55:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41744',0,'cd-form-entry','',0),(41745,0,'2024-12-10 13:51:09','2024-12-10 13:51:09','{\"firstname\":\"Alex\",\"lastname\":\"Mirley\",\"email\":\"mirleyalex@gmail.com\",\"contactnumber\":\"07920403141\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA6t-6BhA3EiwAltRFGPKWC0P6rzV8GVTcwfQR4JXG5-1IfIIu9NIQSUAg9003LUcxyfJwpBoCJ7kQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7oGjenKIK5QUOUsXIUixqQWzgzjfB3IAaWOcVLneuzS-5Mu5heRAkjePQ7WjU56ITAtCJpSikwSygR3xi0MQQNd-d-9Tk6vqizKHvIXSI58KRw7JUoaJeHu0I6YfNPhWlpnUYqAJ1T2QhpIY4V6kBEl_8u_ILWra2-pQ0CtkXXOksgdlNhIypxE7YTmBK3M1tkMyDH4QV3N4UmDZwO4usej7xVbV_LTHFCB2Tg5XGx0ypigiFHOhrR8wFW9D2sjuW_aPb9BYsQ2qPjgXcrJYQkpApt75RNi0R5JvotiV8XvRDftX9pYUnggewBqJQanBnEr4H2KGGJc8cnZMyZEuM0xFifEyvtAMrEExYOb3D3cIJda38m11MwW7yXWhy20f66bcFYMdJrFzJYnk7B6b-Eoo_kqa6fBVon7ZC93g7WxGPYy7MgMfvDG-9NJ1XvbdMNxEcdCox1mdAcY5YuCJgNCDV0C1yhjbDD4gLl_KykKXzjyawG8yWPAx8LOh-qKc2XQkxBy1dAtIYAF5MNK-9xt0pWNAIsdJt1I-7gxf8sv9sqcPNhHxk-i6OPLK78zX1hPT0Bs5FKrx9XyuWFY5HzAjsZRBk9Jy1Yrp0P-O9uh7N4wxhhMqQIVYg7_UL5ZwzW0kWhTbragIlSMTxDbgKaTclPj9FOphnf4vma4Wzahin40HYLDDj30qGWTz4evbSs5BMCYkEtwkpZu7-Wc6yFN59CYMKxY9XjlruTLC8230k2d6NJI6hYIGz6qPwursU846THSS2LprITP2AvL8bw5Wkz4hxQ5LHRgC8jDiovdtZg8VR1tpWR0QG8UxG7T4oGT3v3zm5Estw0PX1gB0aSbkA79myKm722odKLew4wF2UE9Ksxv0x8UTfpvPCPdeL5Syz7m-BjJM_kgTn892IN8HU1ByDwvXcahZapzfXDIQaq54QWKIO90_suNt-Glw0ts0rmdhXvVDVLlFF-cCxpENZgOS6regc3eEpVy22Uu-HwSoa9A87J76ww7xd1J9LBDViizfk6RHswrb9JYXyCKJRTXSUqU4erzO4uNlQVT_koESwGGiBAA4BksGabQ_R97bWU6XomTjPu-ejbpsG4vIWuMoXWmru0E-Iw6Hu9c_hERWyBYo73JVULpgU4W9HRs5WhPHIj_u0MaZIz88STvbAw_qhllSVExC7wjZzbIoQhr2tAEZwg77frp3UPgYhAdnq_8AxUnBG4jDLTvAMBvtoBERbALzI5L3y5Vq09vc5AduFz6bd4iG6DH3CovFwgqSfrMVrpigrRfH6F_Dv99_-1qJNLXiPcOdHiJoPKjgPl205PzyjtiAXD1KgQ1dKIodtzLQyIoegBtJbrycJpvrMLYl294rtQ9f6kBL8AEdeONVXqobkt02A-GyumL41veSoanmMA0hsJXhvZEzxcMRnIHTsU_USeudq6syQTAmSd-pmxt_YE6eN7W83USBjAMB9h4KRkdXhlZP5zVWBZ5bMtAf490qWhcELYPiCVmv9F4FEUytxfyP68Ax7UHWMS1qk8NYLxW1jdpRoBAvnB8Dak2iJwoNXElp7BPr3fGgibXLFRnPyVjXPplivhMh3wyDFwobgmrc8aO4HGed9uPL9zBQTIOD8-BYoBET7iV7rw-RspOQWJvBdkAt97WWoYNcisLWStTA2RBXN1QKUc0JF6pjY7-DDwuDwotEm0Bn3-paEg6z-mKCOq7WmkltmFuRiDixhz-z8Pk3a5W15UNRZ79Pxts1BuAwIWGLimWqdv1Z4p6OHkTwd3Y9eusvQkyVQNwXhjVPLwqPjvhAFbyb_SUoyPTvdDXz7u1zihFpP5bKvuMqf410R5XLV7Qa1mYicYQHx2qOu_hlO5Scqq07x3aBwq7JoJTpk5X9Mdcv7VQHFFPJ0m-UMtgj8bERA0v0dCFRe1w34odntlI09FtefITd1wv1NhSwj1pl56MdkbH2Rq7vHnQ4HozGxKAVhkJcI5BbN1q09cD86CHpvg0dk6pbEOZm_SFPR_joUZn4iTisI1g8oCk1ebnmWWVUeO3ufC\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67584745bb5374-09007826','','','2024-12-10 13:51:09','2024-12-10 13:51:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41745',0,'cd-form-entry','',0),(41746,0,'2024-12-10 13:52:59','2024-12-10 13:52:59','{\"email\":\"mirleyalex@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"0\",\"currentpostcode\":\"DH1 2DB\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA6t-6BhA3EiwAltRFGPKWC0P6rzV8GVTcwfQR4JXG5-1IfIIu9NIQSUAg9003LUcxyfJwpBoCJ7kQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA74N-VcBpH6OESnOh_qtv6H_XmvjuraDPgfuPtH68thrUg0PHI_AFYM2HqDaZ8ZWbKj8mQ3Q4cvPB5bZX4GcGLfm6Nx8kX5Vv5LjDY65wweFoZblEf0vAK_pDoZJ-GlYU6vEN-qPsQKB2LywApKXmcFDhtDgRem4m5BsBTnkGJD64uXmziWcgG4AJAyh2qAmAzXRW3n8M0Xuk5pc6II91kmIPJ_PyZ08MDuU_hIJxLxIEuctV75bTy_tMDq7v7dFEnZjOXnzzrkNV6_KIuKGXPX8KjG3BcRn776H0IpvX8gCRpiMVVSI00w5QiyCpxrr2U2vcQTq9Jzca8hxR4oiVBAl064v8V9TW-qdvfvm7lIO8dyrFxCuMMabHlpbdsPto1oInrbCEUlAqoIfzbmHAhKEZIyZDAx0EZPR7F7Se6lvZg03T_LvHhTsrrKsL4tNY_rIIO3kUFEgaKBkHPhmztO4fvBz6DaYmei0AsFML3e6mk53uFVJdqZdWG__ZKLQep71FreM7sKZFBmOZrIDaMtih7EZhal5nPz9gPG-tfPrHxmJz47QMoApcBkAE8drK9leMjOip27TZx2D1JsGhhE9ffQZZ4j10sjmap_BEoJ2Wb5flNTQ37VtseeEjxNJUSdAl7qPbOEiLaCyE8Q09CIFtHoyuNWzmN0lAUzjvbfXlTJgwncFmMxUHLDY6VTZADX0YeiELzZ4bUDme69OPdbFmjlY52xBGCGcGcvFv_6aaTi7ffpunYpSjnL8Kn2fzB8UOHRxfKJq6d-ocPJgU3t3yghIWnEzp8q0-FUfhe1FsMQX3wn4q5K94raAlSswt8t5bSwxcZCoGad7VCF6TL54FvZBzvzytvarevxSOSiKkiLR_AzRRlLg0k0qI3BC3x9pN85j0DhLIkp7Ou20enEkc4UDIzu5DECileLhA_6RG_fBlbJ7DnkfRV8tB6YyldKx0qRzFanwHd_zGjAyULYCqwgA7sIVauc4Zw8lVLHMKChFbOJLkL1HO17CXR9s6xfMkrXnoTCEYVirWwxiN0nUh2UfiZgqvlgKWhgZfy1lPqP2p1ULQt_7D-1bnv6vMap3wFy4psxOE26_UJ1JjKKScQz8X37TA83bSeXFVToJyzIbu_acrm2eIX7rSsHalZSZTzpLNz-t6Jf1V3r8XwjKmKzQMFoOsNfhsJ-SCHZ2CUetFe2stD56rZeStKcNsM0ujwMbpE2gjyABzSohen8wm0FtYqlWL1UVqm8rxEVLEp7Sr2sQ4RnDJ6qL6Cz2okhrFv0MyeWrdQae9DLrcsXClzE4k-VU5ktnd2Tx0gfVgjDqEQNb0M8lJOjdBrgu3H5xSbi6z1NSXot2sba9QMVuO3uG8AeBo2C0w3cU3VEUv0hq8qoZViroLKUKfOniijRooE7vIXZwNbySiPXL_PCDxBZ7BI3vCd76Qa6C3NL1mOyTWJ_6MQUAgeKQrgd-zDChyxIiwYL7jEa8p-FJuVM-_1pJg2Zs08fEX1sibWGiSV_DRwyIgp83uDOpsgVWhnEfmDgxU0BmMzbUdvLAunMoi_VS1rpWkk7qHwDIec1jscYTNRaXXcIEuUx7duu0U8-WAOzXhXyWrNoO7dY-zmdnYi0aB7CzDqChX5OXCyUP4ELI9vdoqYhsh99jpSQ5PSoVDo3KSheyrs3UaN-7FVpdBML4eP27XiDJ7C8laLIq61kES1fBuoiBalbZoRUFqvsMQM51NRL5WT_kVZMfcARkKLWQ08ZPuwjRMh4qPBYknp-UEYXPdDubK0nIRHe9RDNzZFPSzSN7jGbmnDzxGZNhSDOt9fkh2InEM3UDzh58bz1dYv31BicZv_zITGM2TdnEFl8cqdpKJV62OO_6H7q8Atp_4nPAur7UDF6PCiBdecjKfIL8zxxlUKUCKyFHr3tRISiQxvtzj9t4LhMQDlh3NWPP26i03lnMxIOP6fZs3JmRy9XdyGB_yCkNqyq4Xsor3lS4knyBGcTCLKgz8Z99YccqPlL-aG3nGhBwF2sHIJAxDKYHOHWsSlYknuq5pbcw4-h\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675847982a3c95-28808167','','','2024-12-10 13:52:59','2024-12-10 13:52:59','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41746',0,'cd-form-entry','',0),(41748,1,'2024-12-10 17:17:42','2024-12-10 17:17:42','','favicon - be','','inherit','closed','closed','','favicon-be','','','2024-12-10 17:17:42','2024-12-10 17:17:42','',0,'https://biomechanicseducation.com/wp-content/uploads/2024/12/favicon-be.png',0,'attachment','image/png',0),(41750,0,'2024-12-10 19:09:07','2024-12-10 19:09:07','{\"firstname\":\"Kim\",\"lastname\":\"McLaren\",\"email\":\"kimmclaren37@gmail.com\",\"contactnumber\":\"07962013008\",\"pageid\":\"39249\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA58UvM_0rb2_h-e0sVQH101sV0tObyO_eLH9syshDL5MJIzsY5qtfkAFkzCaa04vMXGWVjCa43wMW0PDcQYgOGVoiar1aa7xyRP6CHQ1LMKfRsCkeAi51oj08ypbDF0TnmKDLE7c3vkdfXilV5Jw3m4OTCD3h8Bmvkgt9NKxAyU2M9UnXynJVZM3KzRO9RZrrQ3P3HH0o7mO9uQ_75t-E4S-wP43piKaRkpZiuYCa-A9LamGFJ8cnnzdpN0xAMeid_q7dkZfg5bp-G0mYHuAFePc_8tq2-Hqy-2QB1a9KqwQomp_4dvW7wjjmY7DDboHOOqEydzLSt_8HrSv-QqTkBsqeG-u626lPTueJr4xVV1Q-X0CNTb5NFESWXy_XkmnppL8PlREIplFQx6xVuK6_CYJb6-GP_Xe4zxOsLTTfMNs3-yBRpD6vUvVdwxYUzyjRTa9w9RWaS7KyOLReNnKbqcGPfVgOXcZjyko0pkDmWYWo3267pPuaA21HD3N_Bufpy_6PisVYHY2c_Ap7bx63FE7irq_Yykt_B75h2B--23MlxzHsi__-VWYaW1et6jnFgu0us4Ecq6yKq-t4i1fpTSrLnDOiI2FRaNPik6RjMhY_Z-Sv_f6zXeE39_NsVXSBrgdEaldLafVGddWXI7Pm7DVF_ZrQBMiKWRHPVB5c2MTRIl_Ii_uOzSIaeBusHH4q3RVUhnYvdE6FjiOG98hGJMP7vFmAPYlgDJmP1mcqxWt6xxANC4k0pi-wltRitborVWAKt7NweVKKtGlgFHFsReLVPYeRUel2ZdhU-cPxU1c5l-R9eh6jd0B7akMUmaVtI3q4UTXTSGcHgb86I4EhoHpHNVN1igNyFI6ze_oRlbE89bLkGEkScQcukQk-28N08aLS_gb_wrjiMdc9Y2Z_HhaE60Bu6FBggr-hiv5aB5JhPz0vLvfFHWzHm-fFJ3Zid4SO6lILTB-NoKQp9kgmqM5wKF1iAIvlc4rrrPvIEIdxEy7KxISYm5Hs-cfTkc7oEJ7bbIHDCL5T1OclTgDTZ5FzhKNJEx3OdjM1h842cQsx1c6miOFk_crLgSrcsTG2eHgXps6F7WQrYqQudu_nPbzc52zLglgPeBCNlKZUsmJrnZa3AEw-ccQdey6AlVzJv_-L4Q_0smOz8OSuoFzj1wA-N4_DyBODxXUEoAGCN5ov5G3ga3DtIyf0S_6EGFM3boeEqG6x5A0lpouLy9_6r0NEkR2-i5unDft1lgcwrFKohAIuKZV-fTBkBfzYaN53UQfZ2UW1iFTwKZ5PW9Mblb1viHt9xT-or-T2a6NxVesYs4k6DbjEbuIVA5IV_zG4oVOb-mJmfCuq5522Pilq5A_fNInL5VCcU91gb99TGeS41bQWvlGf51y8i8bBM9g_uIx0vAGs-w7Ev_fZ_fhHHuIpR-TTqJbTjVPEP4U-EeD7kPw601ukXsR__y9cPtgV8RGXhdHBh8uljJs3AT9GewN8TYfs9zH6Z5vSC8rbHLtFiXuW2PtimvILSTx7OX4mwwLajN4fC3Ev829fR31Hg8ms0n6bBvl-Zx3xz7FBKViGMnYIpgqzs6cOxiZNMXJi0CQbbpxjZ8N5SZoGlZI4_TvnfR8OvaCeNWERm8BlK3zh3JBSRSZKpOkPG0LXBDXtJM7hCqzayBjb58rBgY6E7YWrKElEfwRESVVQLbiN5Fq-RuH0Fi7zJiZCSjetdmm7bnfD5w_S1hQteBUV4xWexpoVZapBCEimTspgDo9I6E-9MSe-7NVLijUE89-SbPFCKDUNH3nyh5Nzk3tqtxxpMr9CUKqMRTMeHOxdTO03ANYO1x5-gdY9ede1Ep3p6UxAyxMkNCjyn8XtnE3hk_P0ZuyTXTeQTlaxga5Q_hx6I5SsPElYFi6f76uIcFUdagBJkzno6yx9dnDQfnJq7n42G9XYs-qY2WFhL6Xcbz0KugC14op9mjn3TXQ_WZpxc8fGlsEbvcdjHg1JU1h3F8-E10SHI9-f9zyV4XtpGPKK7_PPpXxPU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675891cc2198b1-40264347','','','2024-12-10 19:09:07','2024-12-10 19:09:07','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41750',0,'cd-form-entry','',0),(41751,0,'2024-12-10 21:48:32','2024-12-10 21:48:32','{\"firstname\":\"Charlotte\",\"lastname\":\"Hayter\",\"email\":\"charlie533@btinternet.com\",\"contactnumber\":\"07999041234\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA6t-6BhA3EiwAltRFGBf5DCb6nrrgq7IQTmtbzYQhIg-1viHs7rUHRqHcWj-uwZ4lut1XDhoCgJAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4ro_3zvUDr_-YIHyUT2FDra7Hocsb0MUgDGsaGd3_VFEAAg2yaS6JvwYlgxuZxA8nh7dDV3399uDC7SE1C86a3wx1TDToWFokWbrqsdl_wfDUeIsp94yGlONlkrviWdklU_K6ns3BvAPB2S-zbBvb0LEar1DB0cd-Vshjlz-Rwx0Dw68mVu_Mehdpjky6M0z8AGL3U5onVPiyhWrHF3e4hzaSG7lvsfj7U8HtUlnw6fBe9r1famuT9ZrkxQiMUiyKnqj6WGqW8voEwSpPmma1AU-w0O_WgitRo5JLO94Ezl7aQBDls3kA_lsIIAt2qxy74S8Y0syAWx7JWEBqbiYnNWMWJwQWX55yoW7wOZIerbgN9zEiHTVMsCuJDoopX93-UJ5A3Z3SO0PyO_tIs7f33KnAyfoVjU3aj1p4PyS2gjtM8fOnABgKdE-cEfev-ctpxwpCAKpPXd7XW9XkMGJGu1-pxrDcHE93xwdb9BHQpj5mtlpNydZ6s5lVJELc54chFyCHcIftD8jy3qv1LsL6O-NWL6ANHOGsgf1uEuiR6Uw_RdbfAKaZhkU0G7MSkPTi3AczishV0CXQ74f3BTb2-NWrI5UTWSqo2jGEJNdSFQZ3DT31eclPhW9onPpv3TUbgYoMayg5k0LwwtZLifWd-i1lwYn6L9wHuzrb4gYv7hc6bVpPNpI8OpRPU_Ho8T9wrhxKbxlKkXMxP6I5GyQXJ8Gffqw19nes_W20vYulylCPGOS4voi91MULGJ08uKIGY2zpg7LqFfqC8a3mvPkqvCEWA0d28L-kftCnKdqbQciI3BblWQaGTRWBc-0roSJ3Tlql3qZ9fCJd6OErHuK1p_9xIEKoXteIzNPAE_ZGHzQsIRtkecVcZYb7N9d4dkJm4u0e_GHjABkBCRQd7ZFTdP9Xwhi6KacKY9GugQ-x7NZ1U-ONZtZXFDnbKSWVKpwysGAaretrSKnjCXFYY46SS-MvTenYO3FV4hmOtnGyFQwfC-Gd5YwkRGiCOG-WSbrWPO1q6RVzTG02ZWiKUs7PCbyRwHWqm5jWnIQ0mN9pI5MvM2MlNr6cvbjWvHn3diGKqKtLkqDZvXrEdgAOysIQvuni9PrYxLQT0bJHPVxEhlWf8AAZKD-goSXqQICLsXF6IOxpDwYB_MoORABpGlb1Ka6H-YvdvT0Hf_qHaAGCEUEFvS52V87tk674S7Pb4IuQlWstXjlX3Wc53Z9_cpYZN7FYpKeVQuD6PNhhFBEPNcOH8kDCTi17arFtUtvaTnmxa4WryWYxBsh3zRJ3hDlHTrF68hXuV7SX7kAAM1AWoNwdTJQ_YKYlIcK1UShoANTjWNuqjykvFgV1Lwk2xn2nxkZSm8UtSkLRi3Tp9SKRFq5lZUvpwW2-OQsGcee778XDVjYDecsjuOZGhJ0XgBEPsEofsYlkBMBVXnbqoLoG6dpZNcx0a19HdVeG_Sqn3-_GvDkAPP9bJPpdiKCqK-9znbIdzJ1v1l-_AvYLBENUrYqtR0ZGg1_qr6ST8Jii4CvzxHcGu61Ob_WIIks_G9z3k5_LAKVwObd2DBbxZJ4scuQytPyrLnR0fIP1k5wo-Bpa_CID7rsORso0rc4Ev1_dat5LQW69b4elfRkgb9QUfy7JSIzsLnFOUBH_szM6dZ-q-8eUSS5eeDJ_T1hnWHX5jrs09x-kjbaaFYnjVGHapIcG5Jz5pNTQDvnJ1-ScnEc12D5_LLj6V4r2hMgQU1ojsAY075aC4HMKH7oQm46lNbd2wkgUrnNqGjfemYOPihYBU1bP8C1qt9gWpuYzuvPogW4beE3hwCWWuAV_DgyACtA4BlaJJmBg1-b6dZUw1SqE3wNPoXNaPnYRe0mcLWMUo9cBjHobAcGPjVfN84ofAe6ftIwBjJWjRsGtjgOD_TPXYW_zuOWO8WzV6YVdeZNM90xID99lQHK2weJZkEM36AbN-ISe5zwBncN77DTTdoejzPacNf6pC9Z2mndzxRG6pGFmTwPKWaf4KVrhQQBEV0RKPwa0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6758b71b5bfa22-29382046','','','2024-12-10 21:48:32','2024-12-10 21:48:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41751',0,'cd-form-entry','',0),(41752,0,'2024-12-10 21:50:53','2024-12-10 21:50:53','{\"email\":\"charlie533@btinternet.com\",\"interestedbecause\":\"4\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"BH25 7HB\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA6t-6BhA3EiwAltRFGBf5DCb6nrrgq7IQTmtbzYQhIg-1viHs7rUHRqHcWj-uwZ4lut1XDhoCgJAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7RGdh8P6roYsThe7HeY45C5ARbqT0NITI8tb3DyWlY36l5gLRu97BfYBsAdwLLVs7_AvysS6DMf2jg7Iw8Ac6jlToAQtoYl3f4oCKsnb2yFleeYRH37kSuQt9CTXVClbgznpfT6gn7NI2UyGUm-q7r8ecIHo1xRa1LbMobiubBZrt3JLa2y-Ns4fDrh0lMfRKwiVnt8GGmhT9ucWlY6hk9HovaLhcRtHnegRcLrA3wZ5-dlLiHvKPofhmX5dmBJr3LDxKOIDY16rU62JDPc-Zn5EqHrgI9JhGWUwnxueHH8zBEFIeJ84uhRDnv8dTNfj4qqD2Wrx8kyPLeywgOiGCmnpl9iheLAX80Lz0cr9yixKjD9ya2vC3mVfXVNbGQ_M54QXXrUqy3urJPtkeSYKTKSRsywEzON3T8IQE_hhKCQI4TTNePYRWwMLzKiELLZtRfvrcoxuSKVgnAheGv75cRelyQGktEgATRIva1Xf2XoqlcSlrT3XsbLP4VbrfNgqKFTs3LiVW7l2khnZtCx9FliwnNSuApjZ2zwLNf05OxJgGaOtGU4YWYuIy_rJvLysQdKcEUexzO0Mai4cJGtJHLD8zHLabejuwqDI1o8NlWwjv-KSzEfeeBiQ96dnNgIN2ihMlz1lPqXh8jgFLO4-tA4w9aRKBh6koZgv92tGqOhObC60oQT8Gm1Buso2MRSxKsNVLigtK5WQd3wl-wyMDXbR2v_ojcTHk7ODzELVFv644r-mCkc-d_OwrAgFxQr90i__danYGtPi9QD_xqHagQPWRsiYbdZaZziVKdZ5J9_d-chnAdkjOAPEcSjz1ErBH7ask3PyE9c3VwRTetay8Apx1cE6Y8d1T5bqe3SbKNzFabYIQlLthJETlHKYH7FumYuGeYL3uEQc3l7Rbt5F7OZyNzfQmp3YAKayzdqjv0zhfxsOkeRpYRBpzUQsVv2JleYO7uJHYRNK1Eo4N0Cg45ReBmeGlrWJgXZcm-aQ-Yu70RZpnnMb2Q0vqmynKjOj_p4XFRXqU84QPicsmM_efLHfqwtx5wgfuUBRZfiqcl0JIY9_K5ccazRIM6X6KuJ1rFuGAEvXRvQlKicfxP-I4mxrveg9_NxWGVFrsbpU0MGj1OBgaHYJcm15Xm90QMRtPZrVlyNHQOsmmy5WI_d8xzoIwzDFa67FbGc03GtqDrKKO1Mm3P1P_U5LLGd0A-OGCAOdtWpbweMGw34p_TXefxSJVD9dNw-4_VZZYocNN-9nLanN6jypViYVkvWt495D91mlUcZGzD07kZVtqjQTKsT7GkuimITcLhxBseS0FyB0BHOZM87jRKU0LafYU7W41x_ZBTIfoUX-WEcd5StjCn1zZCsRrKczuSgssa43QWMfNFhnyKj1pPlehTPIg9atwRlD0n56XZcuoeIxvTxHHRVojxksFVk_LZkCvMRaOqtyZUmibw4TNrSNsUW7ApJx8pOoK60TJUb_JfwgrTjA9aDGA8otNC2u4f1Azf5ZqyoMfzZSJi6gsxljskqExasfAQb_Yc1S-MIe6n6z9xKNVISxIxr4a96FuiQ4IQpuLCE0dulJwzN60OJQBHUyrDqcSSRMuZrA8wsf1kEengpVCGR4Hz4PZSyX_POg3hc1K81gPTFl2ZS951IskJE276xZ_q0IAPTMyxtdUujnIrJgKnSAccPcioK1AQtGBjpZW53sl0zvr1LudH5pO22z2HMwI6t3vRJJ0vlvTMYzqOrA7sw8-YCj8c0WeF4KY0fo669t_cZWvLAKlSVVRF4_GkosTN-cKLA_SLQbMBJXRBoWMA6Fs3QywCLc0nztF25NQn9eOaPm9inu5kCqyehp4zpJa7bDyP8ZnwzNW3dwCPhEuvW521_Cu3gz9Qghm8WUEB_Dge157s9AUkQiiofIGHuMD2emtTAwrHPiL8wYpLVdS0JEgKAZsC3bTfNmIqnSqbu07BuQPFGS-u_460gZzGoITFmXxMpeMIVwjuK3K-4SNW94FqwCOxdTPRlexPtYk66k34bNI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6758b761b05780-53661314','','','2024-12-10 21:50:53','2024-12-10 21:50:53','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41752',0,'cd-form-entry','',0),(41753,0,'2024-12-10 23:47:24','2024-12-10 23:47:24','{\"firstname\":\"Vaggelis\",\"lastname\":\"Nomikos\",\"email\":\"VagNomikos@hotmail.com\",\"contactnumber\":\"07974475276\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA48ClTnXtpYcRGFZQqT-7H3-0jDWWc1rs3cvmC2wUjY__bfmV6yxDgBbArVPMAb2QqExMLNb5khhI0YbRZ5DnCJgFI-4eXg8e6wcEWwGPrZF6YoNd6jRm1SLSiD6R0ZddxJyFFJkczCOofEKlr3io_T8ElC5F7XSPUGyU1lAQYwYx_6pIKAEwHUoEwDmVce7urttJ-OC90xf652KzPBReos4vqbC5vWrYNzdsFjVknAWUeKdXsHOzueER-rBam7mClN6B9zpyLG64Qctj2V0ttcelDuA1LlvFyUMiCkGZ2Chhma6jZ4mbOOIpyxqtCKbiyBKoNozvDj1wNo769rzlYv0Pv5AdXEHy3lXwpuRc9V9zh7jdChyBdB-JqTmlvpH0bku7GlnyOFHTcpS4PdG2s7IHnHvsti3gNgOVfKuPoLN4mt7JAu9s9F79wGOVpHM_pdqCR8lpPxD0AGcd60dptX-vywv-dsc2tPqhHbXM5AwC3ldpDjJW9ZSsKHdF7Ioktxegjr8gvGFXG71icZjHkrCNAkQqGjeJPIJP_L68pLMwQPG1MGi9ozJD9CKa0puIRgq8gRUmv0Ygzm59mHX9HOsaDgNwTyRrKVqQs7OGSG9SqKAI_o0jhXP8PfI34548VejXkk89ZGh_zVb9-p9FTKfTlOGjFOtuokUvPlhUCIVjRVY7QPZ6614xDCyMS4fz-QMKIPzW7GOq0lboHhxdTgT1t8Fqp23gYc9lTrEgp2iFqR0s-bVdK8Uw9t5rXwNbt7Yz8Ydlyh_E2QPxc0Y9Wp-cyVxU6Ngeu7UdRiU1pBxY2kUZwwgwHEi-_H13oE9nLYV_VxTIM_wRc92B_MhPB2nFVHg1piBo18nkzsWlJQTxtiigN0vv8RTErYjtJG3Bja942RaSLDJK9QrHpmU4a3-bizpWg9b2rragc7yLSNs2qN4r4MsJddcfEbOZ0NlT-p6O5ZqBT3Q1a_qA92XbzztJef2xyJ4RsCjWKGQshNAHUigf9Jj9IVOrLarlnUv82a-Dbv4r9HKZQwVIuFNH64IFoSZ4O8Fjr416Z-AH9hlvfQAamm3LuxpYNoMSabYMQIXmy5A8yzgZDd8FhyuJ_8A2HQYyc9KE8wafFuIUWKJo7e7r9UgJTAd6Wb0XzThC_YtZN69COzy1uZW5eGLumy5VlkRk6yqBT6WKqq-8fkDET1L-QBSlGaxJv47PfifstRFo3owD8sjOyRKkNOKrl3AlwcJfJDbu1ku3z4kOzeWh4z3KnMgzcNp_L8xS0ARlqk-Ej8EiAwq9ZwNKDU-GEp8DZHgeuOzMTcP02L0Dq3xShztND47jh94ido4F_OkVz2aMH9B5hrW7phbYMo5AiVGCIuyxbTgvnkah7BqISPw3W4iTF5_7M9ExXyzGtq0Cfp5UVMdoIAcv1Joqt5Qh6TJcbI5FisqlfnOojvaxfAhCqqL0sK6hMpqJLusfTAFZKujoyzElIKLlSq_LmZBUGqHiCJiL8okio5iP-u4S_xMI2GXR0j1_JunVfJWBZZfCCChsmw27LPJ_dQEBl2Vv_yFCK9RpRnCkC0mJ3CbcDLsiMjn-UfZxbS8aruspBAgor0VpOXSJfggyw026dtW0Vu1L9A2tUKVB1Jq87h2ml3nLTDG8oCU-2fz-afjXP0V5mJXZ3zDydb1gSmQP8pedmZo5Fs2Dx3opOLmE1qMWMbwCU8qN1dvfg9G477BzK7QWRaNQFkWRbClkzafwnYVn_kUXo_L5nuSxYCjIzc5EtdyxhOkdPyS3XQaBd43j10PabDy0X6saZW3uyP10iA_2lpqQ7vE6sPyhW_wn_MQsYcjdz8THdQhBE0_1R91xIEcn6W0adbSuOxJS2t8L_uAxm7QNIT0gExBIforuxUenDV5S5_LYohl7T5etrURl0h2BFUlPPD0nwgBD71UUPYGIO8I5MMlH_GgEfqKb8Q1ELwAHlVTpvjfCO6zBAuRjoZJMedgAKUytvjAxyYMnEhckXUhORHK4VuPy6VMoiYB_j7ZtTvxc91Ptyp01ifj07aEanN6bSofwp2WzqEL87_zJmOKArz_7m8WeHgGABSE3xgaV5FpXesbWGcOnDLe5WAtZhGJkSfa1dwtOSzs6gjMQooSWRwpemkLMyS_jxhGa-nddfPRD1bHbUFN1PHBStKLRmYOglP\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6758d2aeb3f9c6-06924272','','','2024-12-10 23:47:24','2024-12-10 23:47:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41753',0,'cd-form-entry','',0),(41754,0,'2024-12-10 23:53:22','2024-12-10 23:53:22','{\"firstname\":\"Sebastian\",\"lastname\":\"Allen\",\"email\":\"sff2024@icloud.com\",\"contactnumber\":\"07301248774\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tpyXqOkfPW8H8xzhDIYk2PK&amp;gclid=EAIaIQobChMIwP3b6rKeigMVvJRQBh16KTQYEAAYASAAEgLlWPD_BwE\",\"recaptcha_token\":\"03AFcWeA49ahcEhcQ58LVzCeftZpixVGV4nXoja_7cmh2URN0hR4AyrIWsMyCG8N8WxbUp6BAJ7h-Xu3yU6EVHvbN4cRRelNrBKF95xpWnAUqhJU3g7uNVD9Iv-2ROALowaH_dbZE8K3HJLAY7oTnjNcET1MC_rhFrtJNA7LcJWxJOCVVCyO7RaZG8PYl7DX04E_Tt8DS8H5cfroSG6hN_QGzgrFP2zrDYo0bUay3kAdjMxDtUvdV4dCoKaxYU8Hn5qWvcD9EVajjcIF_xv1dSde0f4J2DYo9GujF0bptgDisD6cyB0c_B_au7mh0EsdtTC7qt8V1uqWRAIP3llzEJqjVltzZVedBq2_D8AXa2DsP8aqDwxspKQKFuaBYcfHSeab0a8Nt4SVcqfunIbSq69NgZtdocHPVHHeGS-cOE69aX3H6ZVRa7QKK1xCw-FZ2rskjG9ywjtYuc1IAPS0PJ2uob7MrrW-Ch_v9zT8-VDoKD5wyfj-uUsNAaTTIuGs_9vvZnUNv31wiFjfOziivSxlDtvsJrjyIGP9BugyyKlTMfcvyYcdbc3PKXa3ig72iyREwQHJCrrXvCSrkya4OPjD8GcOi4ubG_QZkdjZwx2pW2f5g9s-yagHXH-CFihWgkzAL-EiLjS50pxsEVzZx4bkRTRxfFPzLHBUcN_1fLCTkIlBMc_GVsUQkjlZLEG3g7tpLhmK-xgYe_2fy4lnrSANGBbBp4WMpFUZJJAmEpSwq_gnDoJ3GbBNFV1FMPSf4XNDXA9DjTN_bs41w9U8bhK_C5vSQhYRB8oB8nuUhaAyh9OYTi8fBWl0LT99eil1VfDDKJ1K1jSFbLlXxPz-iIMCDzEPqBAYeDOxKMwlaYT-DuWY3vkBUNYgRfPH5bnyejhlHFwE6U6eMBZIOrNBXW09R-FNLY_07pRSHQV7d5KGyJEdF55mVxlAKvJ739tSXACnhAt-4IfILBPPs_Q2y3HGkuXAkrJvyNHu4IExaUMdpdwdtOGNR94Is5OWI9rIJpWKaYVmvlI3HRkjPq9iVLgLxuzXSj98_EmkGLEAdpV_46Zl9tuMAlSDEUcPjSmAKOwcSsikHWUSXc6NQ5sy3kMiFdCQaRDPDLuJs-vh4gZM0OOoUAozOoZKwPB5nVLbkHm61hiswo9cZlnMQBGH1keospXuHaahWBMDo7pv4ys1slDGrWLBbph0aI95V8IERaS4Zat9ZVz7Xow9KUtUgTvBxa1pGx20GYigOPOurvf131GFUCShFd1BX2SPORGRdAiMpwi-Jz1fp1AbQ952EBc8NP_-X3KXwHILOC-ydFWFfEFarZQUR1I4PVwy59tqcZtl0wA0LdImmAUmJZxTGNjytZmLfu_HppHihjI6ZoyAnNyaYAbaVIiUDDX8M50QlK-9-Jnp6_Co8JQ1dLpvvsbKGUY1GMZ4RaSml2dtSBIDABoQJR5vNPyI1aaBnFv0YS4ON8O-tFPXDdmsv5RMA4euWU4nPcGZGH8yo2rf_S6nzDRp4HcWdSusXctLA6yH6ap0wLeMOXksiplzN4aaltvebL7E2d1cDdkK3f7B2pdEz-JX42VFyaoUy4j7Y4tIbVknbEH26shdtmHGJfXCZu-Z4RWMNAt7mOE6xVugznZoupr15kZQEph8twrhK8tlHJ-yyO9WfD2J7sXe0o4JNhwgSIv2f4e5NHa6c962gm3t2e9lPESSC04j5Vf6gNpLpFiUjk83irlSTvft5kfrvbLJ21liSvjHcv-8Ve_Q89HWjUbt0uNkt28lFr4O-bbJC26wcQxzcna6-3Q5RJyW_SUT5eWgfNJu39f38YSXACsRfoeKlGBHHn4PrQhY6mQy9w_nJxMQrm2cmCEDVY2EiEfPe0E6IwHdQGfd7T8dMGbAOL6O3aPX1p2vIAxqcMbKqpoQbKHuxfRgrxKZbGDkuU7Ej_woIAi_qmfRqM7D0hpxvxRZ6JmTCMk1Za0ezgWWzxeGN2-ho_5uPu6BAO7yckPR7a8Z9t91vAl5uQcWsqTTkR52RNOlUPcFB2JQicFqqxa2fSTAbD_l4h\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6758d4688ba209-39983910','','','2024-12-10 23:53:22','2024-12-10 23:53:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41754',0,'cd-form-entry','',0),(41755,0,'2024-12-10 23:54:59','2024-12-10 23:54:59','{\"email\":\"sff2024@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"WC1X 0AL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tpyXqOkfPW8H8xzhDIYk2PK&amp;gclid=EAIaIQobChMIwP3b6rKeigMVvJRQBh16KTQYEAAYASAAEgLlWPD_BwE\",\"recaptcha_token\":\"03AFcWeA7zevevl1lb3sX02__vq_DAzOTrpcy2SMv6CeiR4Q-Dola13FIH0TKgNn4pGCivhtHEvIiR4wsPCv8u2OFgkK9Qf6Gm91VIl1CJHCPILUqacBPttgw_fbt_Mq7-42RzXJoxEVNRsqifNK5ujU0aGGS-_AGzf_Rm7qCIU7viqIHf5ZL0Px-6VxiLYXe6L6i3WjR8zrz8rv815OiPXhyPa38O-iC0YQ3FpgUYZK_kpQWrm94Ua3zY5RRR0zpqoh0vQ4nSacf0E9TW9RJl_wgztSSq3vdEPje18sFIHq6aqBlEEUxqNpoFlSRIvs1ma3_LmzoA-I0Bp_bhFjOT-Lv6rz8hjFNnx4sHKHY4ytS3ssL6rIjHcK7eLKf9rGe_9igJ3hGBnPNqKHTwo0yyMndbVrf3TfHKwwZLdfpOegoku8-_6s0uzhhq10ZJLLagfM8Ero0CuH84tW8tOflHYaSpt08UwqPy1A9GZQxudfOPsm0FNnN_NIQFTd_7PFz8eHR6UjIoKhAINq8mwdq_DPoufnNjIMcXqrR5czx1KEh4NHz3EmkLuI5ClDhNjcXUaTaq2l6SoJucx1f0XUom0Oh1YSUTaaBhvg-_YxvQwM04YT3seXleG-20hdRaLkI9NYeZealvzZ9450OOH7B9HR_mspnPO38XHwrnlK5lePiJa_kwIHTiRYJJcAMyOecFLqtt5MxZJwtX1O2yEALw1D-FBfFNiQTYNBNBzT3Lb-j_ciHTsQJ6Y6hZ9A8j__7Bm4o53qoP-zdXMvkNEfoaZD8rIEuqZFlxgSkliCJ2gsOwAspVk0vXB62hBWCk027VFwENFJ3CeMTXaRLtZGEK02_79nauZCorUR3Zs-b-WBnRltLJl-pcpV6XkOvxfse2BVrAM1FggAtjW8j-DHPQjeJN1FxNogRtWqI3rD9hW1x4Py0JeR6X1nppa2nT2X2HWGkuTBvLIu4vAICK02_NtysvILf9iOH6Kv6ZMbwvpWEgXjewa6yqWv6Nqx0SELX1LPxnQkN17clQl8fJ_MGnugqazHLH8NKt76K_Rhj-buwH5AN-Kebt-SfuRkh2f10qVl2zLEN4-XttYEneoSVbqHVnTM0KMGCaaa7UYxslvreMuLMy9vh6-XaLgN0JsUt3P7aCTf0IljiSALvBr8rCzC1VCAtGtQhF4WVU7du6DtZEAvZn_9hKI1lEvTDrmOKM6zICx4yIhzMEynWx6NnPj3RyeddsKeBmx2iNrJLMwMHP6OD2rWc2bpjfGtD8zhMULRErASVXcEMo8EZLvP35cWJjz9Ka0cpN4AD5dr3JCfO6mSWNEXZXMuSJxcSAOgbtAR1-U6BWkYDHcHITMbiqlxkCXjd-6fROa5ENjXNvcbHl_I2S7zlJwi2ei-BGB8TqFIrNUIWWOjgRmdSgqRFr7R8CJjKvmaHxpwlD-bWzFD96jR_cmgzyqu_DMaVoOUAWU8KANcynk5uh5r3aPqj9hzEJJ6geAw_ARwL2v1JaTvmYUk6oDNxrU50wReohZltTm0-VHTBRjl_FFV-yf0N1F9gQJkumnCN7hBMkK0Y7vfcCiRu6JRI76Tx2nHevSGQAiDw34yFyjd7DZoEmyeTR50HFdip5ief-Ifvq8h63D2_pZU70oju8We3_-IBvEtzg3t6O1ptW7U-Tb6tUQEpgE18qychzV2piKeYilXk7KWQH8XuHWVFuOlAh4ggKBj-JUCIwvYeRfeVhxLdhHnTWYlNW4vlDjOkEYsQuLKrRpRTqYudkmhEh9X25hq4OqMbALl6v8k5gHewu4qXdf0oXcDXc5EaFLsOZXyr4TpgFGQMNxohLVLXduhsLOSbIPN4RWhzQI8yYMUvWj6RXpNGwx5th8dTc28qWNT412CwPtua8VhA257sSvAolYzQ9FeQ7s4vQOqSN6febONfp2Mfn31hpUqNOZwYAk5juYmvrUNB98MBxrWHHslPGWdvgg6A2wP3H3taSxIn1InOfwNXY5Gzh6rIn0JXezgLSmTeXRWNZfDuyXPQBO3fsPEcrX_4d1ABwWoGEsxsN\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\",\"livingcircumstances\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6758d4aa342d96-10028782','','','2024-12-10 23:54:59','2024-12-10 23:54:59','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41755',0,'cd-form-entry','',0),(41757,18,'2024-12-11 09:17:30','2024-12-11 09:17:30','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-12-11 09:17:30','2024-12-11 09:17:30','',40779,'https://biomechanicseducation.com/?p=41757',0,'revision','',0),(41758,18,'2024-12-11 09:18:23','2024-12-11 09:18:23','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-12-11 09:18:23','2024-12-11 09:18:23','',40779,'https://biomechanicseducation.com/?p=41758',0,'revision','',0),(41759,18,'2024-12-11 12:49:09','2024-12-11 12:49:09','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-12-11 12:49:09','2024-12-11 12:49:09','',40779,'https://biomechanicseducation.com/?p=41759',0,'revision','',0),(41760,18,'2024-12-11 12:49:47','2024-12-11 12:49:47','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2024-12-11 12:49:47','2024-12-11 12:49:47','',40779,'https://biomechanicseducation.com/?p=41760',0,'revision','',0),(41761,0,'2024-12-11 16:56:45','2024-12-11 16:56:45','{\"firstname\":\"vinod\",\"lastname\":\"venugopal\",\"email\":\"vinu783@gmail.com\",\"contactnumber\":\"07852471844\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAjeW6BhBAEiwAdKltMo19Ble5Q-FsoxOGlK_Ag4MLEIDdxvJFkdXwFY0i2Uxwr_hUd_v_lRoCgQIQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7cKcbELWWLtfEtbeGf19i4uVz7a0Cafn4ID94jUZi0hmxTQFUEmXF8XQRNLRzASfnaPgBryxxUE8JASltIQ7vOMUN2PUWEZPI-WZvBNs3AWdPiRjMuke3vtrs08g6oR9_PXmK71KzwTcQMYzcHuotvLIH1j8uyWfeszmKwaB8NigEF7M7eKNemdfRau7ImHdiHDPt4bCmDLD5e9dgoT0_2eykQsXKoRmn3rmN4pxly9LEt2kdSqupZgBXFyuMwbuvXwhuxFhNyU3cvWwuto4oR24e1v_AZavCODYKwbvB8_Pv1sw80a5w5MM68ouCwIBzx8JyvDVSInEcOavLuxk6XXkbGeAaCtnMQfcSrzkAutpqE0fvEOUbHbkaavNV4UQCgSXNC7g3We6d-Aj7J17NmHaOq37_HVxcA0IfjYa-8ENWd5lcqMk3zn9WKZqQmYCDCuzUoM8-oG0qJDSxPQl3IM4EZuWVBOGIjdA-IDDWOtn3NKBHIGNhzgPdiRCSfxxFTPa3a4Uo4XTAjjUKAmsmrz0jQQf8QobzSLdXsaOsC1s25qhJA26VUC9uAMcjikhwv5MycT8H6R90BZ7QshybwKOeyxRAl7rk_qdlBrEdENQLY53H9E5m7BuVAyTGiZRirVi0l6ESNtoSDiFK8SOCskKxaZPrQSxNt9agWrfwz94GzC9mvtE1fR49f0vAzik2bHpF3zCpbIfSWlepRInc-DoczcUSt-JukzQjDczDGW0D66SyhGGjepWvJTSHWaOS6AXX8BnPr1Kq_70eIj43jSoqxfBFzE4ETn72653wQi3cQL7RnN7CQH7eD3ttiV8pf5szNCw6I8F6X5M7t2nvqS_yuZ7kC3Bkuy3jkoPO5-ZiTVlLOPWUCDKiOLSHJ222lg0FEXC-L6xoUu2HSkfjMI8GHdDpd_4ETzeOa0S7jAeLtHZWRu9TMbT03vUfpbEillpWq4p00aSnNA_aRTF2LECrZfsRv7I5cLm2gbNt-YaLwJtqBeNCkaZxpUo_I85WIvYrn-uVKbEa9nTsVLtlfZ6o9fvU3sQH7YvWQRgN3igDPj2Id1ANBGnyQC4oQ7UMO4m2ZGD9VyC0EThuNm9rvj-XR1pWZ8OOWRk6ttEiEu1GtL2OPPUD4RcM4uVypAdct2P-J4kKwCCciZbk6u1x2UvmhLGdGhoBirlh-KDX2slwGzChaYUhpnpVIF9exuazcqwYJcv8TAxvEVdYsxmgD70uU9JelIE-Q7Gy-1yMWzMItEBNJp8BqatFBrgZOCtkQyGyJxZi-blxV01X8QNxAzK2ZgfRrAipsZQfA3M1CLUbOfdh7TLfIGeZjJbOMJNnDhFF3FOKH30DnGtIMA3Wa2oWRAa7uXCTDz27O2yybESxqOv1lhIA-Lus9rE-J3KOwV37jH5WLJfAQaYaQfSofN4M2EBLHt0jzWCZCFof_N8eAZoanmHAB5GnOvNC22cI9LSVYHEAFiqaLcNNWHZ3prO57RnnQljN3k_5arkI8A8k2vxmmmxydS6YvVu0zMOIGesAqD7IxPEDfbs95LGG824YZGPE7TMpg2-TRXIgsP7UT3_WWK6f16ETEFEdDswTRlwTG5qkPgR92nZyx4KTOlI9qHoNeon3WHIsof8yFu1f2aEGGllUXggEqmCrAqNjzGvyy0Wh3EK7Fk2CeZiSHYcYRMgEyUeakHXvEEqpUX_v7pTxVZnop3kxwEGSBrRXpAjdaf-Xrgx6S1m70o4eqtqMr_Qby0HTfVFDrcsnpmsLGVugCbbe6TndOlt4UkH9YxmBghBJA9e6zsKihwb5yb5cE7IqQ7B-Z0Bl-htf6zLfnCnaSF8vVjLrnfTgEiX0bqJJ_O5sYeV7M3hK-Gme35pJnH4QELqTkBrcMwDldLAv1Ao-RHKSIp6Z3YUcwWj1zypULEXLAElO-lMw8mJ3cwRZ8_w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6759c4389c2ca5-53198217','','','2024-12-11 16:56:45','2024-12-11 16:56:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41761',0,'cd-form-entry','',0),(41762,0,'2024-12-11 16:58:31','0000-00-00 00:00:00','{\"email\":\"vinu783@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"gu29sp\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAjeW6BhBAEiwAdKltMo19Ble5Q-FsoxOGlK_Ag4MLEIDdxvJFkdXwFY0i2Uxwr_hUd_v_lRoCgQIQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5ZR8vm8hofnW2xmHCGSA7Uocdxco2j1hCo5LMk25-lD90v1UC26r5bREQhVTQy91Y_jmPwXRMXbKeYbdsM3LK3TYPcXpRTqcSeKFqxm5JXWTiNmVePN4jkkf5zhdXKV4qDNoUl0biEkP-n6gkLFzYA_NQxK2qjXo5pCAn9bE-izjRGO9R6NnLFueBG3s5PTBecVhczaFWpPQhj4ZIETNwLfcoXbDT6sTagcf9MeBEpqrk4bcbahM11-lAdr4QlycSNMXstJ74xn9JcDLIIuMmzwOJ2PawfEmd8diJSVAA0ifEpHSVp3KZjuvCnoA0ibCWOw5dEoiPwDTYweLlqNPWJriucOnwSFlYDnZBX_PMei7UDznI-W68eZfJzvnccSt60ImsfZy8kdAM3NT1hnZEniVFLd695P5FsevxEaeN2qZQl0k_KLmsM33Yt0vO4kQQFxT_RId2Rg3P8LMcVR4HlsRibu3gX5t7I7VRXeklcqsjc5ztNq42SuBvwOfPoD39XmxsEZv0_f4_k1fley5wwTy3r4z23RZ0jIpUJ4EsGEND4mcveSfQJyPsTVif_tj_IDh4aAceGos1XcL4Q3tUnPSpV5Bp7u2cWW3sbeOanz0_-xEtpn-uHx6fQL8nRCtdTE40ksGAyr5WwuGvBEQ5FO9xE5sKP_vJ2KLpXm30JJnDYwTRKDOa14qNNhIDiv3crot38_AfzUvXGPaj_P7yy-nkQ6XK36L0inglz8TKAmbBf6nGZZVaDCFbfpAubxilbnwwyhfLRmmgd5ShXIsbe02cwi-J10Fwbwl8w64q1jTtBMS-_htGG1Yejl7I0sUoGMKVRux5-mdyG8vqonnp5dlb0pm5Q_oSEbuVig7StZtjDBTR57SasT3yIT1udt_Yu9aYgoQpyuQk7x0LZgfAc9l_dy43SCybp0pXXUvm4RF0nxZWqJitQA3qgYRBhZtS7xKeBTITEHr-HiOt4eGEJ5zMaLzKMIu-GgRH0oxP7er_7sDb1m-x3rAE-3oVCPOqOR-qZG2nIh1V0VwS-oxpZfBHFe0PO2XO3u7wnJGxOa58UHzmT1sIiMBtQHOatUZmA-XUiBpVk_80NM3x4M__mIgTo8suBaLV916FL6gkMfPMDRJ4o4f5C2hZf489ctCDQ_8JyMCQ31DUwt4XOTlDHIgi2YhZzEqMxhjb1BwiokqUBtkibSK62E2a5qFG9JdSN-oYDiFYeZyifRJBgJIdqL89TjeScTvFZ2z5tQG8MzxkxPK39bCioMD_SdBmYuMk4mpLxx_YRziJB9EX-Kp3qVvl8EWpVDTtvMg26Zw9lDyKtBxRT820bq6A92B0QEHp1On4iXNBwsjH46fOfmJZJPVOtvWh5CEQxCXoqHrv1J9cWQC3f19hjDKi11099QYO-3J-pwzjLRO6gMtVTt1A6f00z2E-PUDBm2FEyJZGygimGEpSBuaNvPQIldXt3oGzb8ENuSo5Nti2CmZybxEi6IJXsywU4xjXN7zXUIYiu91Lk-xnHj967VUVBIBOpcAbSDCDB3ESGaDvxnCh70u_Q9IxoSg5DG5f8qnoEGGj4CiHHWUJMlN9jwZLVwSUptHGVRFEvO3QLju4HXi0smgg5v5L59mczhXPg2bK4ktM-VthZ19Pc43exEogu2G8_Df0LMGdPH8qbU7CR51-vSbmUAictJHK5yYamCNbQQyHd4jeg3obsXC_plwaHN5TsNtvdbrhv9enkNFBQodJu5khKbIhTHtgj5-bX3az5hoLO2pmvrryiiIrf3SBXe_8n84l5sgw7qhzqLURN6ajwS5megTbzJ8Q3KNGKW7sls9W4_A2q273Yv8ikYgx413uATzoROSglhpvM3Arnv9z2e-R9Rj4P4UL26DWpzwsHAEfjv8Lb71Fp1xbDmP1e3BI8qMGuGDDYtguRPDw2UmYoRVKwtZzjP3TDBNT-NV_2-HE7nPcdPPA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"8\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6759c48600a681-52916564','','','2024-12-11 16:58:31','2024-12-11 16:58:31','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41762',0,'cd-form-entry','',0),(41763,0,'2024-12-11 16:59:31','2024-12-11 16:59:31','{\"firstname\":\"vinod\",\"lastname\":\"venugopal\",\"email\":\"vinu783@gmail.com\",\"contactnumber\":\"07852471844\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAjeW6BhBAEiwAdKltMo19Ble5Q-FsoxOGlK_Ag4MLEIDdxvJFkdXwFY0i2Uxwr_hUd_v_lRoCgQIQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5SGQJomwG1XYl4TguCV9tpmB88iyl7wyurHyHIbyKt_Np_qhW-YLsAIWScEa8Z4rg07AgwLVn7VVOsGVMyngHWHUHHfqhQZjRUWXnCmBPqvCnrNlpim8dbH4NL8OZel1vyO-mfmmCQksmgRkDSW3cdsb2F_HmcLaJurgcBUbxRL5Bva8u_XKzVpmOsAxOR9-tobMQWQQU172kudPKrXNMv8aTQJ2DVV8oBFDFQQCHJomRVuQmrmjOvlopbHV30c_r4x80-ivMBDz50RPnBWEOs5VOlGmBZf14mdDuQrRLTW2kMzn2SUvP_I-aXRh0fGGbYKyHhSmYW31a1s-bTjuzUxQ0RoE5ASTUKfu7Ekg_8eTyLN9afmc-6B8sTILwhzpare_8B6Yh6avDMsCz6IK0hU1hXB6n2bKGJeYvnCpBG0v0WN_IgUcDfApackuN5koWwoydsA4Vrhj2zxAXhpo8zVo8bmDMcfux1fIwvauuoAj3motB1nKUITJntnaQNXHbaPtVGlVApnxGLd5sDpSnn6bCNWpY3vftPAOPiSPnWFLLPBH9TPjnsSXNZyTk-xTMsrP0l4_92RBuv5vCf_977m2ooHCiTFHpnzHIW-4Evxcmhao9ICpGi1Rt8mayl4igPyROedSmlp96OcJRWto2f3ww48O2dfzPiemkvBxEUUfnkQbUa4shavgcULuKyQCZiRqWxy-wy8EfNMRT1rig_1T5bcGY7yjBnI1pjApbCDIqvW1k2neZOb72YYwA9ZXyqyHfRohtbqpQkuIwhZkjTEriLen2zDYP1-TljGOJuBvfaV1KJQsIgfPxnXwV2XqVRVRrHz9IQJxBDxtent1jFbZE4ZA05g5_VK0nfkZCtgL6vXzIvF0J1fUTArQt3ldcSE5UA7hyEe61jqDaUgq57q4fsqidlHnCdjTyYa8AWLdgyuJLs1SyzEA-XWdheZAk5Kbws2vkbc6Dp-te-5cCaqWKhkfpQzpa1jJoGNDPMfzA_i6sj5S_poyZHU-jtPRcwi8H9xttEW43tAF5BlPU-kyAuXXnighKZPAQf9sWW3tvbEV5ySO9HAtua40hSo9TtTa17jsjamF85K0KhA2qIT111Em5ymhiE82g3aBQLgadgBGIHusCRF3LbQOHKEOZhjYLjZNwAYhhLqxx7eX3cvFtLYy2B0hjb_RoACcOhm7HFAVZWfDeDw-Q3CSXBS9PBfExagNtMLz3e6KT65dAwdhrOyqtWSQi58h1B5z0k10rZpk0NwNd7Wes1T_g_KezjI7xrG47dXr_b7kzqbW6L9lczhWHxTBFpjVzdMP1EPLf9IsuhQrEAFqiAoYNq32alZ3esqEvED17YyDzvLf1lvjJUmHyW_bJDPvxM-ZsETZL64IMHZOkW0vg8OQ0gh84pmHOMOOhcuhLYCmZWSOgmJnz8Z_Cssu8ePk27BR5abPmNlHvPVTFIL-O5SvMQ5dmuykW4da1b84DZHkY-uSr-4jwlsEzB4QYv8MW2HbO6RX-AX830qQgMDtL7I3JXPHCtn1V_jTLnZPPPdqD_S89ZZxUgqdfNNCg4WZou_L5SjctttlVGVWrJcqHeYXkPNz_Kq7R758rs2UyZSJlUI48sgQvN7ArKP5rGLMxypYwQInK-hJ7ydlumTD7U_TuZ7Ba-LJQHJQoWpKY_3Vad8vdkyunHRa4Fi5sTsYge1Zcnujrxx6aMeZxSa2Zxn1krfiG-VJNXYtgPzoWdFraT--pge7xxrbdjcRhl9qUOkiokYANw6ith40MtBO6SEohdUqOzpn13IKiyBZKcmtJb-Q7DkM2URJo-6PBq8o2xAVdfJYt-_NxFFix5QeCDEurfskZoqigG56RpKCFIUHAMTg5PdmWt6JT3YLCI_MAv2UOoGzHJy3TaCHEuVERz2oJk_iJ9i5t69OEtSjWxCiaIG-BuznSFFw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6759c4e3688201-51695180','','','2024-12-11 16:59:31','2024-12-11 16:59:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41763',0,'cd-form-entry','',0),(41764,0,'2024-12-12 15:32:22','2024-12-12 15:32:22','{\"firstname\":\"Dean\",\"lastname\":\"McGregor\",\"email\":\"deanmcgregor@hotmail.co.uk\",\"contactnumber\":\"07770085341\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7Oj6UdkR2HAcfQ46ZIwwbU0NxSYufgkz96yYqn7Gq4XXPy9a5mt6S2rRjTegA1APdb9G8iXeOMKjJKzHiEh3LVTyROxwtAWxTdnrd0N1Vi-P15jMQPUmf3E0Jj0Sfvaa-nQDUkIWKEiYIBoi4trbcFgVkujxtY8YYznCFzO5bz8--M_tf9HncqOGAd-VldAl12yNcrBkDLUrVQfQWZ32o3z-xH9_71xSGWCm-NiV5Y97D0Secjr4z7X8MW9qw2MnaHp3tjjTFOtH2FdTOoX40elHAfifUZysXsiktaoN1W29vdC_DX2IapUaHUvccAp8trHgLpWrgI4GkxFTq7ueUcYyUjr8JJW0m5m5gdSDBSJkdNrBWc6PF77aHvy92bHLD3r0N7aXiKeWWS7wIYSQRzXFi2JUfA9qNxBf6iwTpD5ab5jR9XTpOGDtA1weANWSOTSkgFlyl4u0indsDFx3-e0ESjGLJrwYPxQgvr0MULqrcI79Zxmw4QyF38g8QVAnx8jiuPcFeoqlpghJ_h1uC9pT9EM0wEI_gboNcHzB0OxGDhnqoul5aMit_qqjEm_QEigk2TlLIGTbXJENA72wTyis86u5MNTR3zfnWlaPPPgMlXCz-ZO6hmJf4R7NUFdAzHeF7HsRRDoQwf4eNIe-6OjxOfXq07ha_-OcMRgdqj5BEbkQkxNtjypNbXGe8WGCZTCM9FCc-ZstS7CnAQXTtWL5nTuzziY1CabUjlJ5y6ioUB2IE-lGhv1YWeIxYg_i3uJ_bleYn1ysMiQTNbq7ZtZ85sgsg-IuUzfCY39PrtCwP8AtWf9jTHeQLQsPgTgvA5twOAT339a09PURnnCsIB9MJerszEpib_wofDLZl4wGqSzTQWQLkLHY_f7z8BXjGorS8pUjoJm02aIoRQ1_7gKj0v8tNPzmQg-c4ASxFbltYptCrDZ1-fFmOPRrDMGotYJOHaWiNHnj78vUwNIhdH024Zheq-uhKJn46BIudAujGPgNz4HiwFe8gOX8fp3rKWN4ST6s7dzGHysGD1maZisTKmNQ0u9gYp2rFgOccKk1tBL-UkM7idt2Rjc9cgXMWANydgSTPACtVZlah8trwiYKKx_lvmn3yrgMoRGavSjjx2wsVLLeP6y45etDGSp7S1UU2PCCc3URcTUPJ2NgUiEhBKuDcgF5fb25xtQZMv4WtEAG0tv2tpepWEUrjrLozDzoYtNzIDoO5Tu1dV3KbMeFWk-I19PWQ-FMC8O2u52ggOL_GTRCeWhJJKA4Mnfw4Qnuezbkb7DTAoaxvm49W0D47y9RrNzYexQOsQorR8aqOw7ycIdLYs5EN-4hXAMnmGDqgCmXmnFbdbLqyXj6BRCy2DIKNwxjIWF2m3ha7BZHpyfXbCDDFOA8x0oKWAa1OxVFwR04DMv4l1UqOzGkKXLVGMqxfctLy0y8yV8i03qf-wBoOO0MJ-NCEFipZLebkDQ9GbkcPIL6JrDpDoaWrJZ6g230G7rHpDCtlG4P0pPCRtIIGgCyMYGFDtM1PfZlRQUXIAF4VOuNjv1NylpQJFJa8h4_vbjtSgERrE-CepC0ybJp1qFDG6_S5fwIq_UroCf6BwK6rGifj9JH8thRFGIXL2XabsQUxzZlGVl-_Ply9_9SKEjq1jtAl6LpHJrptwxuXj1v17E7metKx8iK8BPr3OAS70mVG1mE3nrx8jdvGvI198ZNLxsxgV5i3dufEtmWqKys9aXq1hjApV2F3XzvXKHOsuU0IyBbY7b7HKd-xaZ2KC3dgIKtZSuBKS-sznTp8LAuXFLg6snig_WyCL-9f2Y_FArHtNS-EX7auoH2TmBrvHI2Ogob6EMiJ0szwm2OGfaqWMczAJvtLyq9bYM6RiShBRWhBf7pi3wU_6Tqf98NaCzmQBzhQiJQFIe9K__XYYr27npPF9SRemxufQL863cL4xTa_yVThv-Qc2CiXSppE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675b01ff315262-37134625','','','2024-12-12 15:32:22','2024-12-12 15:32:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41764',0,'cd-form-entry','',0),(41765,0,'2024-12-12 15:33:39','2024-12-12 15:33:39','{\"email\":\"deanmcgregor@hotmail.co.uk\",\"interestedbecause\":\"3\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"9\",\"currentpostcode\":\"EH54 8JF\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7NOn3QisbVe4AQZA52Bl73N6VdG3Zu2J0yusu6L9DYhn0T5P5Y1OuL8o7n3P7G9XVvS8zeC-Twgv1qzc2CMCRTP7cR4Y4IXkQ00jNQ2TtO31MHwqAHABQfAL-wLYba_A1oELAZSMz5HJCRPQLfBcbvPeUIMW72zGrm5X3JZFOkFFzmUa6Ss9PNI9CbXLTKOWQO63_YrQQ8KNorK9YMem_2Zyfb290Vgi-hl_4l5tTPzdBm9bCENaUeBQuNDzwWpCIKhxpbZwYNTCI47E2lavvdUE8Ii2XBQAxNAMGrF13U_mF0Zykc3-q8n07_hOLaWJ9qy7I-kdJP90tls0Skk_3_zxmAFDjoZ0zzRaqBWDmU2f_ygmrO4yLoQhNpfBYE8UqLOnzCTkCIgu8shihXyJIZLnpfWnENvnEQoesrx1vEPBL0RQRWiLgkx2GhRCSVLky1_dPoPZWhyHwMPYqXIqKtPmogxxylCIanGCsRfKzVnGLVFsW4qnOGF5H12o-7Lkai2LD2T-zVqPpSnSpJfGVseMfsMF8gQQPABcJLKmdd_UlFgqovsaOc7awouDb1WEPYL_vWbxAuPDVJi01NS72x-Yvs-hJ1rk5q85Zuesf6IQggHgxavO12mWF0ysIs8oGb5isUuwbwW6LSCualyebVxe-vGsouVPS5zc8au_afxv7pueoaEjWSzK10coNXo0XIWObjnxLDI70FJ9Z2H-zUOkrj08xplvuKqrbtGG_oxxbsTsxEn4vr_eSpddcrF8HUUYl5FreYxxGxOtS15YPd0XVqqCw2tIYWzD47jVb5qoT5BP7tjX3DZoUdk82ehHFCrbbmOoaPgeb9mbQTuWyHBceqJ4pOBQdrCDeXOBQ0Q4Vu_qevfXng__mqc_dJz29FY2fVRZrmNtHXGb1j8yYi1Hlog3HcI_K07XGTJ9OlWxXDg4Go2VApAid1q7oUaWo8tehdKAb00OA2esV8MG50q19HoTkh04SNHnwW8LlWQhXK06Trx6rwJh9Olt6bidVsxqzov93N1NXx1VfkJKU0RB5qm5RYYGZwiHf3R43B-K0ahfr5xKVdodHGCmvMI5cysJdxCL_oFaP8Mlm_meBzdlKuuSCrpGmDyaMQ3blteXn50TJXbpwrTlYpc9g1MW1plfxPmm3K5aI24imPxDpKb_EP1YopQlAdfNuIH9sQ_-UP1aL5ExCMrCF1c9DLuvqYf8G003b8Yh_FUTLtOMuHb5-lTcFFKQ4qePcuuTvDPp4NpWPaeW2VHDilKKYndwSNAZdSe-rtZjodfQhppohS6dLxLEZ8rLzCnGFnT10tHI7yaHJCe50Eb7dcLKWYhlIIdwBIX0BF0ugIojKx48WFEWQBjOWGKiilOkR3XKhJ9w-83MzQNDOI5gJdE5DQ7nDx56kfZZPZSv7xbLMVLPq_raxib3qVjrI3q0B8FX2dqj4uzw3471jNabWbFPedkuSFAomvrLPr7vr7ycQ8ULc5hkothU1oOjrYlIj30sJSYvoBcgkTEtmYcFgtFggCEG_5CasQnN9sXHh5MX4ThPjP46fKz2r3NqMMknWH8tDYTGf2_4sX4CaZMtj27chg7C38xd_I6FhEmFiNllxM1UT1iyLR6s11Wesyd115qTWB2Utc82jjPh1uK6c7WqS-c-pYcFEnTbZYhnjk3YRMOwuiScIj4SVz9FoIlWE3p9Ll32_Eroi-adNveWUzggKUtsOS3gPtC7BAsPEg1K4zRtHuKYXqw00X4v8VIy4M6prWxxA6Fr2uT5RxqXkfbEObvBe8yY5V19jIIFxx38bgaxKlDHCqsO6DWXzwKokm6AYKqBx2r2s-7b63Qv3PwSYtmOFUyA_p5SeYGifCZoRqFo51YIdyl1yJeHNpkKPxsdFgZ8QcNCnCUIivbEsgHxTZS1oWdTIVlU7UntmyMfRO4XU8oI_EwUAF9eaQyHzae2f4qzZQ5E8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675b02204a5d73-23490681','','','2024-12-12 15:33:39','2024-12-12 15:33:39','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41765',0,'cd-form-entry','',0),(41766,0,'2024-12-12 15:39:50','2024-12-12 15:39:50','{\"firstname\":\"Joaquina\",\"lastname\":\"Mendoza Tejada\",\"email\":\"joaquinamt23@gmail.com\",\"contactnumber\":\"982159211\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4C0HVp53fqVNdZTfQDMsVkV9TI3-mvcMhQLO8Is5VP_3mSY4DvQsXTE_y0n7RbKlvO2by5c2ZKMRsot82vIr_se1mkdcZMzXhPlUh_kUtAcE27Uo_r_08FbrvgnffE_m3ALdSDYZLE1Hij25VH0k7KMuLnVAA4yV1XArrb_EMU6r_5HXWNVYPIoM1PvXQ4x6rsHQDNgMC4BtWNzvOsjM9CNjfCrvgd-gzaqNpjcC9S7uMXmDoD3Njq6FMXDvFg7nD8h2yT4x-n9p4X-d3U5PVg_zmjrTpCbA0L61j2TmeedoNk_3lEtVB_Qj2V3fc2f-6SjTmPlcITDJYtAAK5bF_laREBd2OViAyOGu8VD0CwH-zAq3UcF_yzF1cQtfeHB2n2untYCWy69P9zesesL-4uU61CyNR2r1GFGuMnugELo0WL0n9oLwV2yVZt2KNvSr6nwOBUiNPq8hovZYuVMI-2yShxpC_WeyHwiC1NqNMVdLB4QMIjT2aWaGxFjIfzqs2PTZLaaYerggkh8zN3dJXwbywuQ-xwlfOXpTU0Jdk9pyGDJCpwxSFmVHQQTsvfBp8asM1LbheKnsWxA68saH4faiCoCGIjCvGVrFUp-S-jRDHGseS3tLdaK4Ggh_CiFwZFk2Yy6oloPhVggiIrpUrmkSrRIZKDKCYOE8neLXLyzZ5xpCUFvKm3XlJAmcNY1VEzAUgcllDBqCsGX3TG3CgCAjIouDQpnlE03wfBAx62Wg2j-xj00qTrGEpD2XJhSsDoZ6yPpD-1tlzjF2ogToO68vOSezgLqwvGZrKJVD9DSB9OGDdnsrl-UhWfUEeOZTE5-5wVrgovnaVEN3qSX1kLMIIh0SDb09TOq7jvpBLcvHWvFQToG9_hcGIm9HaEdhPQh6c-G7tc7A-BZpkc8_XRJKiC97IOZ9eUSUdcV30tXc5ggioZ_jDsqS5HxY7MJTgIrZP2d8amFz8Sr0M1xAmDvA7EpJOifsGkVjUc0rQLOSqj9Afm8BUEVj3H6iPWO-nTL0pKqsRcMHG1SHFa9BRRNX3JU2NTWvYOLlhC2sCe5DWIuBrLRlV3gWyUsce6jWajQff7-z9KtwPcsWjRWQEFz19BSACIW1ghvajElVPvWDWtv-WbPZTCy3CMt8ogL9vtt4_Cq-nvnKs3mkNo7olgijnWWUrT5WYlGACDdKm0O4FYSoaCibqtwvQDr0IKwTk1QYJJWvrHXEnz0SjshHOiRmkgBTIXslVCLs0AWE6hYHiKNUEyZPcGsbyys-EgL25IEiRfaHPnG3Upu3tJmG4C2KsAJpLYbdUMvzFx2EQ8mqUjiYcFhHWa3WfpFfV5nu-jI4cLm2WSR6L_uspbai0d8F0h6d8Glgk5AeY1Hb54G4InBKpTWCjp3OJnatrD7YJU1CKyJSF0enhw0k1JdzSFig7BvEX_DldUIiS9TYy0xn9pe3TkbIvnVWC3sHriAJ3iWvZfJRAgzWsWQVEf0-OCKRAnxu7yye_mvnxZIb28W23RRkEy8uTJAwjPHvPJ3vx8BK3SexmtTrxXwJZYtl-PCgf2sMtaLr06HrSvyzbVsI8_9wGCqj_TXvmhfHCgRovpU1EgbK_NEVt0fblfts5D1u-r7g0143xkgWpp8Oqh8BjufTIHaVJGa1EbzTKomwq5_pmopCctg-ETggPVvlZJCZnLiU56dB-xRqFMaPe4nuTyzsZs6f5Ej7tvhmTBUiGS3xhpl1Txsv4P-bzJM-EQwgUkaTWNCPu3tPKAVf1zdRNEqJZnVW_CYhxaj1005BR1mZapA5V9__hXR6TbwSIMpSnMvOs-einY07wSaAH3u4kzob8gHTYuyuUa5Q2aPqB-rjMLf6v7TicDNluNsAon9AJ6YotSpMjEd2ZWVNYk6hKpP3JpT5nv44kels6pK6jIB1PiAw16xrqvClNzqB_2n_r7HWHgRsG5GwxILIyUjnhBpBWxXlWL4Xhj1UfkvNTXlduf7co8hDWyJNHU_I7aKB_fow\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675b03b96bea67-36107517','','','2024-12-12 15:39:50','2024-12-12 15:39:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41766',0,'cd-form-entry','',0),(41767,0,'2024-12-13 16:06:39','2024-12-13 16:06:39','{\"firstname\":\"Ruth\",\"lastname\":\"Ward-Cox\",\"email\":\"ruth.ry123@gmail.com\",\"contactnumber\":\"07423745061\",\"pageid\":\"39214\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sS1HJqfi4Cvnv2vr8eHuriH\",\"recaptcha_token\":\"03AFcWeA6J1lI2ioeiXRLWKIFNF5keNWj7b0ODwtfRIhdhBhkqf0HmuK9hnItk49NmdkURO8QFu54Av0-guZeueHicsMnrvBs__UJhE7jOtVmUj3R6J5pP-O6SroQpx74i3KqoAAe884cNj8rv9Rbg88VChpkFPA7x3n1Z-4Mdo3B6w0D5AsBqcOJyJV04aOygvyy7f5RxzIk6s6mp208TC-kYOexp65SyVK3f0G2l5TbcJo6UVoZ_EQfsxPyIe57x2FSkiynR1SWd6V1OOUi1OnSM62fp2yeTeshzI7fT80J2PSsfTgmk-gWFGHEVUikzqx6KKIP_L02iWeLvrgBg7baiFo0rwhOyiD6m5ZPvXlwZdWWn_v0QrYYIfNtqxaTsd4j6MyMYPN1kNQXdCjI-6mkBHKAgD-Dt1Xa-oc7Lagr3-lQ7s1mE4VxWacgBlzDvz0dDbPmhROhhZrmt4a3ZK3Gr6MGkGMp2Mqe4BXAqBjaSNcGixLT3itdGKhP-q2BmHv2NNCsOWaU-22tBbQ8DAXxby93HMNsATWc6Ydmm3opbuc2JKo-iexbFskXB3CbcCosB8lfca9VANdNUd4hKSWyBgfzBswO9V8Ynj8uBqE4-Lpg-ElEOXEubgIlxb2sTZzOHiaeeO4nA3tpUypa4wRYiOg1z_3SLKLc7oxN1Qe2jclb0X3xcxMdpeVY-kG9my_lQPjVYq2dRmbMmORIz-r4Pq7fkRewuq7DsDi7-6kXfrknAs2juQzCAUY1xZvOS7J7O900v0c1dfslHNH3d8M4raCPc_rXhf45POLCqYqIjKLrIoGvlDxp6P-Lu-iNPeUyVAL2XqTfwc2-hN38tmmp6tjkh8xzqe711p265UnvpXzbQrdvl1IWKG2uJLhnUeIGgTuXk5qmZu4hvkzvfk6nG5Ipk_uehV9K41hNUQWzeVgfzL0gHiAMId4E5ttZR84LVyrEpKxo0t-vusL_gLIVd-GimHEW3Wfh-5iDZ5bgzcALXGDLi8W3AmQ2KsrCMZHQxplCxgiOQtjYHC6NwT2LtTu88WMTJTagCzkvbVa17vNJ6IlP-97-w5MtbiXk6oBj_NU_XQ2pMsX3In9mxHIKOBeNOQyQwLoJbuxIOUZAu14DOmOzCSmhxIbojD5aMCJBwVuH4DcHuvkIj2MHyfzsgULYQQdZl6MjtX2U3W80OWIS79JC0zPHpdqzIrjTgJVROkoqWVej7uMujVehaE6cjLxJKtW9X5JbY7Fv8QAC8vHPHH_DgBMZeV2WkdPBS4uoJTdINKe6BrU_DKjgBkqqbajtrH5KSpEhpAa1iVG8IiAxv9D_zagUsMCJzi1P0DCkKpT-Q_5ZjRYMZM5rb6-NiCs8EH6Ni1bmemTC9jaikvjcM-Tsrl8ejbntkl1G0rLBfTE4LBa2PWSZsMxyInNkFOuBAL6SBjVqnFqmFRFExVvVoBXPr1h3yf7TXnflDKQHd7Nx4c-lmSzZOdMwqyddl7Z1scHNtIl5B3j6-ntcxbGuY1K7AKR5NqMQ7ApFTTBN-DctUOhYoxONYGgHNQpSsrpAI6K1NxwOuAB_81fOmwqLVwlPMKLPSd-qZ9SGAN1TXtjN6lKlANyCPxxj0Ronl_RhRMV_oHhijqyAbEXRI6Iyp_AXHBSv9ZgXp4sbW4Q9ADO1jchc4pKOBC6IVZwdiiYqd0Z6wFGeWg0hs2ToHWBsQ6HrMSj_Qs-ufeyE3NcSmQ7gbkFcYqnHhZmmpAbEfz83air0LKa-bOx7IML-GSdWlkZjwU3DFGjzQ1cl3EEMe4a8GNZ18ZJknxzosXDNgokl-gOyF_DC9lbhaNICpgcvh8GmZfj_ef-_ZpoCHa_X2nEt1JIpCToiwAoLBwsG9zzSumf4nxVsQGxVVMIOX0DRh2vzB0uYY8Jv_q89ODFJX9E7RMiddHhBevbCGkvQffQrRqVqm7oaz3OwRvc6LY8q_LPGCaC2UaRIY7ByqRO6JeCRqQei8El-GnReneNrijZBswPw4653APKYkTUor0YMYYIDHfl0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675c5b80071ea2-71548131','','','2024-12-13 16:06:39','2024-12-13 16:06:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41767',0,'cd-form-entry','',0),(41768,0,'2024-12-13 16:08:08','2024-12-13 16:08:08','{\"email\":\"ruth.ry123@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"9\",\"currentpostcode\":\"ML106AR\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sS1HJqfi4Cvnv2vr8eHuriH\",\"recaptcha_token\":\"03AFcWeA5ryeZHjuhqP82ZbV3WuFx7s9kzSNFlCzQXJZNXm9p7yoOyZzR2E3AYVrQ6ZEapyOTz0nw1ld4is3D9nG_vEBtPZz3w0jCQk14gGWBLr7Qka_kFhfM88mx32ceI-qVJRVv9MRBx2FMcc4bJGgcDRi3Oo71ebXErcleRxTSPnj5gPmN7_cZBvoPrex9mJ2RYbe77cBE48n73Cay4pXpKjnE5YIGXRwQ68owrQWBwivkr5vxRROOtjwPFpOuroQzOeOpXTgj4pV77oPD-9xRFha7fES8LR8L_VKYUY-ZU1DIFOQuowKJT0LYI-oxp5ZN54lz6tB-TWjczBfUgJf6TZ9zU3nsDXzl_-0Us56yxrNnv1JMmmme1reOQDhjmjOFnOtRzte_1wq1sLFAsoO704cBakDgiZcfzDmxxZrCr-lIruNRg2V5wwzP9VlIvkQ16WeweqtmE6PIKp0lDmoreQbvMG0ZvSdwrmUytmA4yJuggWshUsMZNnmts1yLuN5byAbnWsSKh4J0_mWOp-cMVy9N4r1b_0BK45csy1Amtd7mrTwkiiIm7GgirxpojwP5M3_yPB3YdeNbAyfIKXAtGZ-oAC_ULTx20ZHZDNIFsfscQi9KtldPel9nL-Cyb1C98P1p1m18xEvvNlgQ-TdrXRgwLS_19_o68skaYUkxgG7HzxYoOTE63XqtHGDCKnmsY9H7S-3BYQYWtDJ6swgJIlzpfDn5Kq22smLZc_Zge6QGKBCsZ4g1Tc97w_P-AZZkFn15fRoiZZ3ss0aj5yrLsAla9lGdX9uYfvQkYNj4sQYaA9k4g09b3hL2ld99NYYmwa3qdOoHoFKQp-12B2kmrXCWj3E0U8leqfGF1dkGrGvXQ7g4tJA-FWQHQrDfWb5GqcMD5cvCemY-xmQ3dtO_QJA9W-3k_Bg8GlTzC9wl1_MVqDJKPojcM0ZrTmh7KlqZtqaH0wWFBMX6MTDj7YMX8vFeMYelszxw3X7eexydaX8uUpCJIjyqhwIIGhlG7Q097Csw6uA725NCn_IQ9meVQ6Vm8GJe2jF4LWEGChaXBxjhq5y4CjhthJdMnh149tTvoL4BmOl4oXV2hHZuQOi2_NgxGP08BuO08HE6VBh3wpwX_xEblCmURrbQWPVJylWuZSpqwwwgPeVHRfZMQlZAcyPdQgLL23OohFnBMgKtDmWrQUy3lhLPHTN7oHPnuhNm-HvSavfmk1NFheaafh9E59i9eC8v4hla7dgXPQJZw6qIi3863GOpapLPIeJwYM5Jc2tLh-OxmZ9woxEfU5IX5ZBvyKcWUV3ovfz5EFuEkHaDwgYR996t5Ag1p-iy4Krg9grQ6vStzHp4uNYlvvFpwD18Fee3ovY1hWe1PfSZLZIQr3yeEUG-9S7yDQ6A627ghOdNHzfMlnib0G_X0laHdkCmZKmy40kTMpF3Rduu7FeS_9DqxWux4VqTPLbYs-aGj93Z-vuQfJbih_ZR-SdXRquhKJxgoc7IT_KZ4hTxbmFFn2vI_tMaPi4Z-i8sJUy_bmO2dKQEBRBEEBOvQy9c0zsdcyGTeybNsXUPuiz4Eu9cBdj2pm-nc0B-eEtiXD3o913hT9vKDGBRFQN1OphSPmNjHSc31-Sfi_ZGyLlUsXV3AR9ZQcWC8h1U4AW6uH41p3QwwiXXCp9t63B4ZNfWR4Xw_ZApCdGOQSe1SdCW0YIlQh2BGPD2T4K-9hKzVdy-YWWPQyM8bgZdvTO4zZmJ0DumLWzljNOSXgENwoHhDwJWHWV9yrVxOYgsqAKcgPqiG7qD_71Dz-8gOseGs6ReWc56iNihlFLxtXinojGIgPLdjTVioDwmG3HurcdWFjTCL5h_MpANi1atWFcZ5Ru5PTBdXEht1uFtFtzctbQK3lBxeQIKdXqLhYoxSwMzx2oFZaHIkrCmN5z77N8tWUQ5f01JHhhR1O3GDu1grCU49KM08yN51kn3q5Ujc6TIv8NXdCbWyOP0GwY8IMynMRR5ybERnKcDxVsLRFTJCCGKjKtoSLwIbygU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675c5bc19e6039-95652941','','','2024-12-13 16:08:08','2024-12-13 16:08:08','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41768',0,'cd-form-entry','',0),(41769,0,'2024-12-13 23:58:32','0000-00-00 00:00:00','{\"firstname\":\"Andrea\",\"lastname\":\"Boedo\",\"email\":\"boedoa@yahoo.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA0--6BhCBARIsADYqyL8PJ8J63wr1ePf-IunJy3PZuzTEbXR8ivAFkw0mNBNSUq6RgFmIlDgaAhzNEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7oZxItWguD0uqlStH7eXUQtn5BGtS9gluEu78k2WW0DKnWZKV2bQPmz7HDBNzIjOVPwDXoLuNDNadYCnQWXa7oUxh3wy0K99GuLgFJVX__7LjogFPLMIzy6vziDedO0LcJolRswLXx_WIDtzC78ZKnmqQ7J3Yc04F8_at9XihQwNVdpXVlYqx2nhjZsqqjtIXJ--6dlNaHwuaFBIl64ErLs-AiJZJnbT7PXCsOZg7X-MiR7P5frspJjcmfPxRlfulDETwot4oBny_bwE4mhhND2Z7bYoxr9tm7rddHvjUNyVSvW-7WdUhkuPWbUSC4ELpQrb9YfKlQNhZoNFobaT2iINdHs7_ko0sgf5b6IiZ-aYUlnunFsY6B6uoQaNDk4von5_Z-xle7TB33d_gAO7fKevtmM88fF4k4MZes47p8jwpeV4MndCKCygaibvulkHh9X-JXhrm8ADsg5dKu2lWQMqM-FEGeEPLwjUF763l2OWNud7A0WjBn7FZaPQAuJBaH3SUvbKxKBM8jc8bPx93SWmxjLmdX3uZOQrtjGuVbPcXgzrhrCgWsAxwb46lQak57jQ0xYz_iXc-e3qkGKAEQIJ8Qu-zE_bh2Wfpmd-qBcJ-cH-7pMEoJhqnw6HmeznPfcvD6O7ZAmh4tA-j9a7pn5fdrRC1YBIDbNM-cEpa-x5r0eU2S26_NCCBnrT3kDvrnKToyutBoqsWpMYKqDz8UiFbUbjCceLxnUC5v7ZymH0Q8pBAwPl8Wgdqt2kurHBF57luNGuMO7T6j9u0rLdtABiB6Z_jyUucjmRm1WTy1iE60Nm7C2wE7qz66Vcszo6TfUjWUKhMQYsJE5a3vxk8E1z27suM1YWVrLCxuyGNCmt3uONy4x66Gj9Mm2HZUtlbDqD9OALhksWacnfNrP53oKV_EJ8NkaYITcnYRm5o5UoGwTEljbc9TXjaNh0wkbTBNZ2-19wDr0-iubirr57lYi_g7mNtQIpj5xQcxhXkDAJN80SEIEikig4ldDSKa85MWFN6BdTWVvJ1ahUvZ5aViPVbjBJtHhfir92MCFJZwh5xiO1gRt4fiMipMeRgwlT4pL7qzb3uN-ZKFiEqeu_Cp2PuTOk86mzqi2413PjjwJOuLhqrI8UGOBw5B-q9ufUH9xB1_UJabOtK0nngbo9Dj0A9L5ntSFffSPKluweM4ioDpXLlcn_jiGIvXxRKtxpgNGSkl_yo9Hb0TsyIe_00j_NMXL4xlqPDVv_rtuHqBs8pxa0BjTt5ssMo8xa8a46wNxhBMU0B5vy3da5leQrqTCm2m9D-GGZbONYxYYWL7sVLbVH9p9Zru9cJzYAXYRvoTIbE9Aj8xIsd4cm_J9Gb3cfAxAifaAUnpeI1zTWCjJsomOl9CPDgtlIlOGHOvtzxx0AxNYqlqwBMJgCYu75vbXj89DKlEF04ktDGt-wERzgm2uAd6mhc1-BOJuDqtEyXWgpUHvZ0swaa4X2Ub_UTpUABLfiHACmEDTCBd9QEv9D0vzEDEBeAIO51de0RwPjOXukXRMkV_rYMrkMTF_hP8i1wxUCqUP_wVjzW28_tOSGiYnLYeNkPxQ8qrKS7ecwedtCZz0iK9lM19OpGTUKRltTIbPaWfWu1C11gA_zN_myWUIaEmSt6Lq6bpyhpzNVMcig-8Zu5RIST4G9o4HZ-g0RGCEz5F1-FOz-_JPhOAtlRDWpKDYn8nhnpP7HyA-105rdtnDMAxWrKCSjIuzO4AoDKVn0yf46eC2v47Vg8pYHFd8PLorLCYYBoUfbpd5f7bWe5BpC9G-V0wy-X2a_hUVWGSBn0hDwABfL2R_4-J-bdEAVpxzvJAGvoloKx6Owzu8Nfl0grrJuaqUAzRhicA5GDPwxeabTP0r8yd5rkf9cc6EMc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-675cca1d4dbb81-36671812','','','2024-12-13 23:58:32','2024-12-13 23:58:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41769',0,'cd-form-entry','',0),(41770,0,'2024-12-14 00:00:30','0000-00-00 00:00:00','{\"firstname\":\"Andrea\",\"lastname\":\"Boedo\",\"email\":\"boedoa@yahoo.com\",\"contactnumber\":\"\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA0--6BhCBARIsADYqyL8PJ8J63wr1ePf-IunJy3PZuzTEbXR8ivAFkw0mNBNSUq6RgFmIlDgaAhzNEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6ssPEDb_GRMf1rGTjaAgmX9eclr3cgji9Rkw2bjkP8YeD1gYSJ4cbdqfpdtcjb5X_ISWs71hzk-qAq2WiPYsZAfWwm8Qx3863kHXBFQDK3s5MLleIF_rns3IGoAj7X373CZL6r_1jke0TLonwabWmtwA4eHZHEMiMn4xBA3072TsyXBr4qGwNXwh5eYnoMeiZ9AbbWZsNiXQX5E71esBOXl1U0WPFl5YNGfz2CJjMomzM-H4nZpgtPeoZszD5YeIxjSY8XFomUKUTG_kpg4oHZ25ONhdILKFmpjtvOJZoHeK-O8a45i4RJ_NbBrd1bkq415v5mtmbh3tj_yk-JhR-H5noh_gCrxxwcYYRuJDldPi-UAmoG8znF940d5AIhmLEm2Eblrh1vf3_FqzjvNEdmQQ6v4NCkS4TQNxP-YWDfX6VWE7umjILr0um66EJtdZ1AS4eVFe5zVAUrOkWUrBTLZoudhHOXNKCavAKu13uJr-xya9Aq-sCUT9PPrN4Qv42KG6EsH3sEtqcZR060Cam9VIHb7gs_Fn4UAWLdgCMNBRtcasCtFPstrZ1EhIrMWUtabJoapPG5TjLxsVnC4Cd3MXM48nOj_BwdaG7p4j1LxDRGN1GvhkoPxZtpwhp28f_AFzeljws1Qh0BN9tw9gsgM0lY-B8z5e6mAYUpryxERZL07RYb3xglTZnV075InldE04z_rjqh9LVfo2hrynrkRGfvbhTZE4uukAxyIGFSJd9KOctm-PDLfgEHY7ISftALM2mn0_w98ikwqmofwSVqlx8skDeVQ7H5hPuz1shfzXNXHz8M6iD8vZn-unLRvEbBFcMLMbKi-yWvYrbNI_y0G-ilA6emD9JHu1bWDLVci4JZ22BodfFdqS7v1eageeubib1RvYFxnO8t7t_o5WNgOdoTydej2zaTAuQPQYujAwoAqnlFKOqVs2wwqHOWcLlxvohQWysfOM-q0-LH8MyEc6z_C08wl5-qqGlFgLxRkBAuT-2hzx3FyURGAABSqd_dQEijaK6ebSGhGbaG4QCS4-lXIt_N0r-wKUoS8_8GzMHZWmIoGrcpaTgMGs8VgkrUQjN2F_ErJuHuqejChOfT-yOl244gSsIuwMdfmbGshDMH3ecfRzcMw1MprvdGVPa0kr6unRNKSje_mexAEMjHw3q5TeEv9UKGDe2T6APaxXzhYJvnt7tiF1qhDOvIecAZvs4sMQlf1Hbeip8VKWb9pxlyKwNXyb9SongfLSddz5EZ3MWoH_efpqUKtFslW_JSj_iH1yN37Ro1u-veRxw2muz9aBQlwDAvQOe2jJQQERVhJyrkQe87_nBOMmJV_8zHVnnrzDvafjs2mbxKaE_xestry3umc8-s90MqMHsPsuZLxXJKg8X2B6aEcGytp_qs8lAiwoTZCsaynHpOc0N1Xw8Zb5ahy9nGbNJQ8Q0bDW3ZGCyPTFHZ3ZPYjr2DMJGMhqFrhi6TQcmHS7GhmUHvLEaBzJCkwmo3-ELjzMir37FqwNA-mg9IZqI3-3jNT2Zdp8QBnoiPqlE2hU6z1oI8VQQgnk8G9VmTCvtlv8dIiHVKUXWfUzmuu1g2a-Bi2KUU8mBG8JxD3Ofjh8nS86wzGHi5MF8wwvnElTZ5k1zqHb_SW7NwoLpzLnqIhdGWWxCMqeXZ-6lzYfJGHD18SaG7eYj6b44okLmn6DHIgmAJsPjrg96Vw8nOKx7XnXJGYLrO4kOHZ7yFdrxyJZUz17QJlgEuTvrSRilnmuIOUis0xrWGvXIs58ghEhb9oCINw6_D9fzDeCHzIFRnKo3OtaPKbvPad71NxPGhZ-N3NP-SRYz2O6mC1uGXbNIaTzrRScYDw4KX4DfW93o0k8Ck4j39bvPRIj-Jc5qBX6vXElrr9QHu1t0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-675cca956a5741-79237677','','','2024-12-14 00:00:30','2024-12-14 00:00:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41770',0,'cd-form-entry','',0),(41771,0,'2024-12-14 09:56:31','2024-12-14 09:56:31','{\"firstname\":\"pavel\",\"lastname\":\"kamarashev\",\"email\":\"7kamarashev@gmail.com\",\"contactnumber\":\"07533745126\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/what-is-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA6D1KtBNw89e7gWNox8bKJlCAOPA4BsYwLDDC5ucMXAJMPXs9uN4dW_5sw96am07N2GAP8NVgCav8D7QtFwzLVI7AUFhyllYaEk4LiW2Tj_stIx1GvDaS50JcVpB0OloKIfPi3WcBDq-aAyPrOBCfW48Arzuqfiu3-mngnpymtcfxSnd6HlFbASfMovg9i4bRLfmdaqwQjKwF39KEcOcQcKY14VJAwyJcH0K9xAyClCsrW1vFi9wFlbfh_FsTjkQjeJaLTxDFhMDL2fVa2VDdUeiJQ5C-luIUSbORJqLRP1JMUNYVMYJ4AfOzlcRrwRxTFiezRMAO9JfoC8ou_VpQ2qQEbqpvkRQyxrCX-CsO3rMQoO4p0HpxN197lDjWJRQ76Jq5Tz9TKavifh8HXMIGvzfKiQYyhj788p1oEkqMY5afZTr1aWP5O5LoJAY07jc4pt_nRpUBceGcJhczDkJ-whtho5Rwg14Ykchd7oQTBj1mlZhM4dcgQj5c1UUXRF5u0PSvZ7R_xqUap0gXRu5PAk0h62qJIrkO-U_SYKvyQusbISTwOV2jj4pOSpDOFG8pzXTXR4vvoETbNuBStnLUTgmO2gGBK3nQdIpvTTl_bW-Kj8uNRagniRwIiooXXjPssM-98aQ2kdF79w_aPzSMBmUDiOnt5wxy3hlTRXz7u6CEcQ7qP_lPg-hApTuDPqcck_yXnASweq9zgNtjjhsXwRI6k-b-NSrXCjp6seVe6gPlWeFaZwOTSnp60uzMbIDQ-cu23rKk2KmQM7enoTz-DQnrO32YggEp5IPM-oz4tf_nqokjvUcxIts4Ehbpl9dxWLbS7MIaw7Y4liuLB97RyoWhoYwxhhFl3IWb6yjWzfQ7N4pkppwdD4MCbFaS98YJQur3UK6KrIoXHO0WEsYAqz16dM1O5TAxWsIx7xmLVSJUULFx8_BOFV2xFvTHKK4MC5ybI32peaEU4X0wUk3n1spRh294Xi3G4TVjDRoGh5CAlxS0FhR26oNEQjvB4nYHjD2PkrqxqYjTkTwUVctIjkSaB1fPHiNf7ODMEX-jP7vMhoQkhddMP3uVfYIGj1mWov7LUfbIp8UxH6fWreHb8A7pEZYRNgbRGGoUMWMlu8gWi7nINut_cDe_1rKgEdN4zY0AdYFRgDcq6Hgmvm6dlxMkfSNR3ZELUfBcbPHIyTZSp4SZXT6-0VL62ls3ugy6nl6AUE2E3z9Cisgejdss3XYdz-zGoWczFq7e6-tVcZfLhwmzOTL2cvetnFXtRQWjSiJ_hU38pZQwVvDJwY8Gsj_r-tpWqbAN-lEh0K5T62gf_xUqIkDR4QX69GaBshENRTVFIzICGsdO0pzm8pGFYSIoNV_SJGKmhQVhg0VIT5268a5E6-bdf4tEYckpfpeZB8qlh7a26jR_t44MIM1ZgKgZBPGCYKMXrf5peKSEAHXDfsY1d6p5aCWVXe7V4pmRK27JAXKabN5aoSX8KsUl3N90FJiPEfWa-uU2gu0TriVtmlDkFN0XBUFq093cjTHO0DG9E42z0RR4whwxJp-xcvqJFH06AXHflJPWtNQfLbMg7dvpWNDRdbgKXqrpU62BoaQw4DTfoJlllmn7NIb9-ICLY_Ak3SkH7hdWZigtJ0rb51jTQJ55Q5hrCJWbBqpWTzAi9uzC2yxvfzGeQPA3qFD9-kcJkd74VZyLu2uATjE2yFkl9MjyleY2NW6L3gsAGdfdSjkkNsTO97bXcjIf4hoQiUIRmKrgmp-Aacmon7TkCYhw4L2Y-WlCsqzvznK32Y26lZwuckaREa2vC7RmMvfKwK6HfPVmQXc-6qIVqURaDSuvecQfOv80tdKbFL5268X4pTrUKk9_3rdkGtuHDXHAvahTMsCl2nJSvm82Gk4QquILJ6jecq2FmvD_TpPMyu0HDRQoyWCDlyQbNjXsL8Mg2VTVxrfmKq-fnMXQ4jko1pOzw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675d5644dc9f34-82847364','','','2024-12-14 09:56:31','2024-12-14 09:56:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41771',0,'cd-form-entry','',0),(41772,0,'2024-12-14 10:46:58','2024-12-14 10:46:58','{\"firstname\":\"Mae\",\"lastname\":\"Griffin\",\"email\":\"mae@griffinsofttissuetherapy.co.uk\",\"contactnumber\":\"07790928965\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/about-us/\",\"recaptcha_token\":\"03AFcWeA6k8yMp9CZLOr1n-_jv1eDfyO0TCK4X5n1xdDiS_opOHMFMVruB0CcRh-XRTYSVkTpD4TOF0fenTJBRko97ifPqsrVdcIi1awfZ4zcRmSSVCnzoxHsMeI-EE3VUgegsPZNZJj0qcHX8PvgsF0H9gJZf0sU6FW1XmbYHSWl6uDSJkGyY-JYmpYZULy26C2XHW5IQaJVVgonubJG8fwNDgli9GeZIRstwfz7CWJ-Sp7k3hp-UUXu40t_c7vsO7htJZ3Y0tfiBJqCgH7GQsjTog2pq4DuPiYs5aajs5O55fUF43hXS9LIi9k2_LyfmNkXKqZa5-0hMbnxvjgJ8Z__3QcDOF6qtjBcWHYODpdxVVTjcZCBRkKlCuyZvW8CleJBMtilL3sj8pFLKsHKYjTLE-qw395ySgVYQVeQ5_R88unyu2P2lwuLViEB4BBJLVIrboKG0lCy6jbH1WoHt26BEFdWj_ALBMJjCtF1kmkZnc7TlOQsW2N15ZS1IkLflc_XItKt7dcQ8MGKckAHt-AM-HOMC99_13ObvtfNwpe5K5H6nRUjbDk5CIRBWSqhnNuGCDpxXHdeFTYkn96R1bun7owbUgA6kGO_eFEm8oREJjrQrSFIcI4GDIejt3uAlkpggDj5WgCVjlFAlv3lFH0YfsXKoG6IYGxQQNGoX8Th0lH3iqXfn3f3PJ3OMLlNKZcraUNsarsPq9E__z2Eo5yWtxVhTxqUB045udkJfV7lGC8A51ur7WCHF3kURepEI7r3BaxjGomgR53FjYHeKQ2Ga3wOvPapNIqH-b2Yf2AzYs1f9B9U4siTPyEgokawXniIqWE2MLqTUdTIazMlSubfL-XQ17aOcWif8p3rUT4LyLsb8XPyU7taHMgny4TpVP5dK-L-jF9mzUZZjtUft8ENHk_EfzvtaAVpaoe1rcQHBC1_C2tHR_GfnXJqMQaDSVY94xs5Q578KHnC9KbwKBJLuWMOGuICIeAzQgi9z9oaG1ibII0zdQVICRyWZzyoTTHI6_37Hkm9JMTsnEm-PqKzrD67Zp72p5Ldj0Fagw4oeuv_8b_9i8cZpBoahLAQO7lJJ12hJMOLrOJtnQpQlPYj-xNakDUdM3FV3ml5ls0hgs0tz0ORbY-U3CtPbTV1QgyynBIMQTDPzuCJWf7hf3xaznP9hRtrKeY0YFj-RrTZYjCAQ8_BHVvWIRo_buYBSNXcTBxj1XT7LdIEb47nXXqkBn15xqsxw5PESvZPkOdLRc2zoHLD27UvofW99XqwbLO8S5Firc0ct8WgxWN-luYGzsh6YbS0RLQklNbmIJDsjbMqPX6_tJTXugtDDTmDAhJIe_es3coO1WbdQSVveAcfGq-AHsOpjO34xwAAEnMVBCHIENcsRNrx54JyUIJTG2MAPMmatre1yZEPhkuah3NT8kFZLHZBDB781EAHH3Y6obyP1VxbAdMgXt5I_xU8sREIiWRB7KaUg0R_TjEdIIEoc5r3rSBX1pkrHWwgO0OEprjCAnxHswdwScX3AOioF1rSWGj5Ksrah6SCFACpe0uDHe6YlJRdcPnpyvrevCWOO-VuhkWWzCrHNIuH-fcE4_QZ0FV8Irqh4FGzwcasNDiUFKtVo2vr6P3wzwK-y-fe0FF3WfesIwPyOxUrPniKR639zvIFlg3HH_lc4V9XvQhYAKGmvByF0XrEFbpEZw5hKZ_2wzDC7cYj-oHHifvO_2b-HYzAGqy3LVHU7aKy3BUZZnDy-x9HbmTLFuTYXcDm7oWYJSZi04RRlPv2kB0sW_Wv7HZlsA-HT08beoOaFs4vu_f0Bv0tRg0-NKPJwxBAKeYcb7rZzdd61sBLU89SZuuQ5oUBjvlpem8dlvE3xlzmc_OpZBA7yQfuuj8AUI2J5klFRs6ac047iZ09ZBDoo_SEkmXbexaXApGQx4ZssxBB7D4qfABcoP-5wjPOCXbLQpBaaqa3hrYo\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675d62168bd9e6-49160943','','','2024-12-14 10:46:58','2024-12-14 10:46:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41772',0,'cd-form-entry','',0),(41773,0,'2024-12-14 14:26:48','2024-12-14 14:26:48','{\"firstname\":\"Colm\",\"lastname\":\"Woods\",\"email\":\"colm107@gmail.com\",\"contactnumber\":\"0831579400\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/10-minute-squat-test/\",\"recaptcha_token\":\"03AFcWeA4rpeDhbsQJLGwGoQbuBBHyR2l4sZOAowX5XtXdWDUXx0YRWP8UECXYVrrbSSJpgRbSRFsWS6HA4Y8wak3iVqQVWy0oKYU2zxwGfYW8VOivl7AIIMuuu1LMAEzWGDodchXMycxXdrJIPSAwX9rEGRiafyx8V7lpz6TzEyoFxj1dTlhySBXwDevZmyMyq5ioMBInIJIhBtkvWsqS1UerTXLmXZ6Q89YV0cxO1hl1xWspOaEg3GKrmPFDsrDKAHcNyhGDdLfWyL13mwYS8OnPpt7ctUKYoiT4ikX1GbNZVWjINxBx1ijyCQodyHfSTvArYAXcWsTK2z5-F53F72wYy8tXqo9I2sgrg2cXtoQdHnba4ClZ6onBwlftH0ivSrdFuCHbTgcy79S9CyAanj2QKWX0jzdtA89tdfZVOYq-4vU6tYU8Ko3SVoG7P9X3VkcxrYQ4V0T9cl7QPWCdY6cVbZFYIYtvg24h4wr5aOQG4V2nuaw28rFawbCSY-ly-vnMCSMgRgaRZszOD90SpbSrkeuuUV5oHdbeDn4N9d25ojGt_DtwEGahGVH38Fief4deo0_R7Er3Mf2dA92kF67oFdVuNvDfYXwXrOlCW_2sd2ylOpZ20AdpjggrGSUbQpQTyBZAG-Z_lTcnU1ECRdS2RGsNLU6df8-nCbBfHzr9hSiW6xMwnQuQ_vKFEGbvdVfEm4Bztr0IPiizQX-oMiK_IztmIOF13_In1br53Oi9YqatCZZanXnUs7hQS0iOPd4Kng0zu5xXq1MUdc0lRxPVKV_sULyFcy6-HduLwPu0qlrr_tmTjUssJdfG-hlpVogjyq0nBU_I_nJXW15BVbfbyHHWg9OgeOY91Xld0MR7CjrkH7nPNtDzy-DZE6EfvRXe7vO207QAEWXIVNi-BqzWBc-plSFMZ51f0oeDHfAqwm74S59vl7ZZzRnaZFCcsnaldJEnSZz2FKjA0GaMoZNPwxe_06Qib3qe0Uw_V-65BHaYi7jFmzyriobg4LRvg6tuAmIx5qxTZXwTZbJR2K-9DHdlC0zgnxDdvHsTn9MU75IYU1iAGLE-h_ti7jtUHLix-QpxpVcXf4WTxQXnW9UK9YaZGjWwcJcSNoZX1fbUGmKR00gRFxnzhpnyg3n3-fzdp9-_MQRZQcahylHWUlC9gY4GobmAoPLMfuh8xvEiyLlN9_5-puLlFycZ66EPLpYEj4xgwCATT6OvrlKEBobbAVdb4ZrOFAyIX_NFRpGKCS9vS3VMPUFQrh3r4oveJzbT7YPIQINjPQVmLYJ9HMKYgd5AmJnqh6k8UeqDX70ONJ9Sy6SN_VeX3dlA8iwxPuqdnBAWyYGUizyiF7MRHpkZahKITadOiXNwQiUqZfMB7K5aaWI6ZiccskwsMHSaRkZV8k3hREuYp__TJWGVOq0SHXUAKIgjmyHfB3cdTkeTafLVEY91c1cTnOxklsynn80rMc-l8K8cGpDNAnmsMS7KIcfMuhAg8pOCSs_QDDVU7Yos_eCNLohAZW-xNfPIoHQS9bAE-N58RL4-qq8pEXxlQmIO_8bYIEA5Gomz2XEZ90RJ_DVCVkYHVjCQ9LdPN7yKibHtozQKlxzVlfmnn-z-MQjpR7qONJORx8kpyz5reGjJasJDrwgMrSlWGBvNCUiAUIC2lDIyCy8cbY0IGJM1H8JZwOxOIc1AgrYs1dUH9UhxObK2hwEE8cRmoCso5FnxxRIEmxrpoTtmgSZtOuLQZvlwhJjv4EtW_esDwmUD3c4M_8ArRKF6DYo2thtXyQ-PFrdQpN3LWrPcUC3p1lk3uVVykBCbf2BQr0tN5-dw_kqcPfxKOq70rIP8odlIkOxXLZCnuwbuW16zKW3B9TycYtS9XfXvaZbctQ2GZCviB7OgEDpsE2AOATFBqYh3UkMyDFL35IMv6rD-UELBskD3zWRsq5sCwE02tCHCDrgEmGdW-OTY0lRraxVM5LuMWgb-D4V_SO8SoMYEv70KbnQiSSh6eV3vnZ0Rvn-r8jmyrU8t5B0KcGMjN462t7qDfIYx6xIuAeCvjIfi9I2gNgXHAnww-tbjKkF9oqnm82wFKsEkGu6bEwytWTxz8mIRsnq9SvFZpo5BICzh5ebDpFdW2mofJRaDo_H44XiBeWeIAfvo_ORB7jwrt2NCHC-PGWT9LyuACOdxF-MIMrK8M9kLGILNGH74nSnMO3yE8pD3viq2dcJh1VSspBLiVbLmyRVbzdRRHeVP\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675d959138b318-50980901','','','2024-12-14 14:26:48','2024-12-14 14:26:48','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41773',0,'cd-form-entry','',0),(41774,0,'2024-12-14 14:31:09','2024-12-14 14:31:09','{\"email\":\"colm107@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"A92HX4E\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/#row-40321-2\",\"recaptcha_token\":\"03AFcWeA6Co0hS_QnsQXBC5if3h8Zdt-sroIqKTyJ1uyP3mWydZMuh7zf1WByT3F0Yd7GJNwleS_rbsY6AM1KT-heVgM6nafI7Z7xVxiO0BZBc1A-52UmePGrHPZZnChWR7U0kbg1Wrcl_2OxAlRRSQGnEeYqaAI0tOzYFmGvDRj1I2GFJs0wsjjSvbAI0z96O8dWi65rJm4vMy_BKgo4XmQR-M6T7M5xY6IWztaNB7hzd4_GSRBEBOzo2ZiNyAqvWRvVZsSHfBh3cgYx6zOsZxSTrnW5SnmPk5a0segc_Z5_zCRXWIRZyDDnDM7H7wbBwmVd4HBkuCxsQyp3yZRxGdKohcN7ln5i2w31O6JdRc6Gah7RwcUYZ6fzBZq9O0inj-zFuwP6Zvw-YK6XDK8JRNY6HxZJkOrUhihKV9UKRa_H3fNvLYZ9viEsiBHTUrefi__btT7dHtdAuKCzDRoqUyZ8uW0brzfzcVJWaOEdcaX55lnRF6z8rWBSrE64BeFx4S303wGkwarFHlMDVTu2r3xXDK6m7_c3ymcVoI_FatG2ubT1-C_PW9ogyly1pWLHO9Hx9iAdLJo02MCRynOwzsMSd9XzZ5jscLsBNV3AIXMmBdA2n0tKBMK2HF2A5sxY8OPze0uCFni4DT36cBW-DG88U5QLiOpcCAbjd8MlPciRyCQq18nQvY0BE_QBD9WtdbhV6COf5M97NFMT3ygjI7q4sN56zzd6L7SQ7rc3S6cgHHnGVF8msVSRwiYSF9C17trvIFz3D8GNxEOU9W2gvXord207C3HZm3dTgBQD8e6D6GzlE5rQpfHAlscpfByrRxB-siijjpYDAD-SNIxlw1ttvtlZUx0kANM3_ttRWnnBRMfKSCjd-7GqO3ChRZ_s5wKtVDTAtvH9sGuM_ZfA-nIWRgU_t4nqxNkpisH-nNUFYhBmpLreodBVyJgFYEA9Jw12lnPoE_VUSL5whNTYUumn1deoaoqfJeT-d6UBJ3igrgK0ctdCRLHnabk9CHaUELvGYzIA7yLOsOElYPxuO3rSHRV9QMV-Gz5BZ3LFdzierc6tGpoD-xJVEllBinleEcFOFaev_n3Ov7AGSA_baDBJVOtEHjie7z7GLMslYz92nIk-OdD-V26BfT0_wreUEmDewdY7B9uVHUW4WIwYhs4KmHMkI4HeyWrUFvgZSjfdPrqIll8k2iTU82w39rzt7EnP2UHfL6Hk6_NlfqHjYXF5nmJPnnbB8JFC-Px-qSbeMOBV5t1DVIh9heFP-HxRLevA5ktbLu_ANXHNycW2BBLx4ivep_QAMFJ6s4rYtNQi7s5KuqMubIiGWNSrD6ykbhOX-95aj7xGD1IIFiICuuvwcbIQvxQZy0jDzVfoXZgWestBFSfKr1BnUDW6l0WJd7EbGSjBm8fQLhz88AyebT6cp5-obe1OHk1Z_A3S-jikumx-8t6De78uhW9UaTmWsBA4WDde3rcsKqIZyNmrYDc0yg3MzC5BsQ4IxSKJUFrMHcACQMR-U8B804e0wwHoNbEMc_siKI8gWeJnhLjJ7yBLyP3x--YtIEV4TsXjU3i2Om3sprUi1GuK4CBr3BI_z9_euAV6GQOQ_jTS7zQDIlItv65pDxLhWvy2sQZmcj_1RQIcBSqyJR7D-GE_sVkRgq8ok3stEXmX86mhRlDF5uNrSxvXtbC8a5_nmr_AF17lHZ2C4lpsjhgGKK5NHMCrcpc8HQ_EWRtSATVSmcIX9Ztn2mGQpwiRhC0AahbnuS10r4olnkFM9cgLzryDoMgSW-UvCeASG4iO0DaeIxGiLYenHXsTLZWVyIwd63MS9nfDGcmQ7_AL1tNBG6yOgromrmm7uWrCtqX7werEkxT_XFW31G5a8nWmz-Z2cNY_KR73S6yUKEXUgewGkfErCRllmD7nbqdq02hDo7q2_-sKA23b9SHKSkguLvbEmXqXSljsWF5u5S9TxeC5uwmdpvBcPvASGwEcWSsn-ZbVv0SLwBEESVhNm99FnsDF6kB8i_SKuY-eQ_XH5YkY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675d966edf0912-90764922','','','2024-12-14 14:31:09','2024-12-14 14:31:09','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41774',0,'cd-form-entry','',0),(41775,0,'2024-12-14 15:09:41','2024-12-14 15:09:41','{\"firstname\":\"Joe\",\"lastname\":\"Langley\",\"email\":\"joe@langleypt.com\",\"contactnumber\":\"07508229350\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tSfa698CQyw75kT1pow8kQ-&amp;gclid=CjwKCAiA9vS6BhA9EiwAJpnXw-P343BIjYQefyZihQawS738FbQezqaFePbrQjv7UDsj7uDWBrFg_xoCt4wQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA41bxQmH-Xubi-Cpd_Z2Fru-ysVY0YeOx5KEVFvJBf6RPh-qPN_N-A9D3sbgZMX8bppqtVGPrFYYJBscKXbyfBWqZz38fphZkoqCBbeSYZAQmYy_1u4NMG_MzTTsWGb2GKxwt5qIImUVioLCyZye_A42LPbzBCBMRRmfdxAN7rDOs-hmdpgPaW4-qh0Fpdf_vX32Q7cU5Vgc8DDdkHZ0UimY6T45VOKiROyMu3Kf-Xs6Lc5PDV-xFpnjFO43X8W2EXEuWvoJl2qQVq0AfE6y5JksBW8l1HVFkd3R4kuy1ZtIUYa6bpDPJMv3QGq7KTEauKIFZBjENpvN_qgvjW9DLvo6Zvze10qHk4zEgmhl-yNHvxxHWM87OnmSMU0Ka_vJVbsTku1pfow9yjyV9acIQ-naTAMpT5fwKhjWB_dDyqXrcvZ0jVCkLylO2WvsMIMzTibFobXBJuianWFNxIAQsf2OyVa_dlu9ZlQ0So06Iz0mTkI3H6-vKpAOFQITWMnV_d329zXg7zEigpga_JPwdeOnyES6EOsFFdzmpRTt_M7_tbMzShc-8Dz8OrmBmcOKufjVE8TC9v02HWNHFLYfm_zTkgBWOCTzYvHuX0fUzQICP5WwvNvWa5SK7kClxBCNDdj1YJsQblJGukRvAcnOPbwn-xf8vO9rPJ4fS5yIsjoG6Dm44iHEGIa47x4DVrK92jA97vExjA9oJzi7kP9hhnEL5Sg37ffKrUrC_pDour60s-RuImQyH-rYvft0IqnshAQz1Z-rYv-hW3ZFLJPylTPnKICIQuvs1AoVWkPm7JRnkgn0CBTG1sCfOD_4fQRqZmerr6SGYYc-gHvCTpxvq3NGvjbvPzDwKOfP91Jz298bmf4GVtnUxWT0qwXjZxh6eOq4kDuMTQKQSrS88EAI8o5PC3RsyjVE7KTUF3dXZEKqgwwvFhh2917wyVezbk7A8SFS3_XtQ09Nyo8jvIJ2JmMFSEq7xNQvP6WTAK9219fUW2t0P1UIAMMYpYtPYyE686q0VqafMPF6qd1Yt9EJmqU1OAOEdgA3DF-86LaqQT8pWFCqYj-CinVLAPyZDWhrAE00itzElQO9U3_fWoAnUdPkyWyOsej71QdonHSZWNil5ViUl_rMnUQULwt6mwnJXQ-2w8PcSXppdjaQgzcvJLrMPJc6-enMXnSuVEGJEOBf5sDN6USH3ykFv7o9QsJeGhS260cvjdajLHLwNUxYaRbl7UO36tmo63Jxjxr1g21h-0pOQLh39Z9obpvwwoEvwvbqkCQBxUKWmL3FX6sn7yOKBMo5IWm59-YJ6Z89akClq9HBKoYmpMQmD_SD5e80uGcbErng44dlLRqf42drAhS8qEq0sycLsVbtY6ssLINap-_G6A7fAh0C2bQVtL2PdYtTadzTqHDZtv9_QHDmprbnFsH_ryLNGIZz3qIdJ_VPJ5MQ7lLZ2zT7xbdc1Dwyxiu-yWuIEkOfdKSwJdOERFXeZYEE3fuoM2f_qanfQ_4vcSrzp3w95N2VrYQIF3kXerlN_Gx2ZSp0Dos3RiibqcTC3WEfckNOb4Y6F-zmTiJ1qPCgRmBgdnPsa63P4s63Ox9KFwIMFDbjyJyDLCKDDP-1mjeqoYQSWG73d-_lLHo1UYtcvRtewJa-1G8fjZIDDQjbVUv6OsxpIFCz_lFymAO7062Ii0-qLQApD63EJJyjqDfY8UUNM908aAvmRPj8gpFzW-s7gJOswlD1tensXpfbXeb71G2aZJZdRfjWuJg5cvNtiwRZ0s4UV3V3sL3QQv89wFsM7Lncc7AF9j7vEPncdl1quC_fsasw6sWdsgFd-_HnOl8PJKh19uRUqYfIEGGeouVcaKmpfzyykQHPx1kiw7p3Y84H3TWXvsf96bm63FZUScgyg0u_O9OZXtVsDHY2Tb04gFUAKGPfiab1-tRLjF98lyNN9LcXmyvbcLIj6uVroizDL3MFbtt60bYjDvWyogg9t2H9P-dLIbdqZrwmr7BxuoQrHMplvzEE3ANbicHb1Qox3FRZ32z2PpfYyjKDfPCkt2bwLi2caiFp8XWzoznp4_4H9P6ViCt3A8sVJsQiyefsupAOs9eILmTZBtD4Z0ozvfO9-NLYcMy8O1fE_QC0C29lRKYaVstnbpGaWWUgNYWfQ2Gz2naEJaLUxZjhnktzaopYHEe9AGbLvISKwcetgcCY7ObYeIaNFjdBqa1c4wCF-lRPeyzgt7YZL1J4w5o\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675d9fabb2a3d6-27787953','','','2024-12-14 15:09:41','2024-12-14 15:09:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41775',0,'cd-form-entry','',0),(41776,0,'2024-12-15 07:16:59','2024-12-15 07:16:59','{\"firstname\":\"rosalind\",\"lastname\":\"noctor\",\"email\":\"rosalindnoctor@gmail.com\",\"contactnumber\":\"07946782380\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gclid=CjwKCAiA9vS6BhA9EiwAJpnXw7jBBYo46C0kFw6M1SpmzCGeY8rore1ZPEh4T9sG62NZHH3kzK4BpRoCjVkQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6Ek2jyx_4j73v9yiYgwr1zGMSy0DugdeSBLrt0x7WEDnV7iRpMu8y9r1JbePHL21Il4oi64jL0cvTg-076XobuJtX5By6xTco6nZc61D3HSLniijBkn_rd8BDTfSik_u0i7yS1fK--RSJpRBRz6ZLnFlFNKyUhOeQLaHEwc_xsOMB_dj3X1apYA2djjYpTN_x3HWJLU-T_j3ITVXt5fxjLC4WzqEvB8LAoV4W7c1W_KdEy6U4jKr9J4Q2VB3USdNycmviut57OfGutnmd5PH4hFNYo0h98LA6k-d6Xa_5QZQj9X0tFaW34U7uQgB7sdPsnv6D4ZW-K77l3UIvY832fiWiRZUybFMfgxHuI7105PSiVg6SrpwkDXFecOU-9Iqc5fay2DJuL82hHOnmh_lSldZDunD0_qckRNOQHoOBjUGChe9XgYGyrZm_DlRRUPRSX5raBL5_GhiTLcZoHlUkhvapwu0jcGWCdzzqdAuVyQkIYh0DCrmHJA7J09_OI3_LV8rCXCy4FiUN9P2RSP4T8F3S0uEa8okfbxkKKiaSeUS4CEaNJVMShcQWbw_39L255yLRSCSI4OjRHI9iV_dIctkW1IVsVpcrpA6VUM93vkcO-K6wkGKEEoh_HgJvjtqh6KQf2uTMvKE5WFYV8JX2tOdq3MV_-PVYz0hNMB5AF-6cDfhXX_UYCIuC9Jq2t4ru31FXGDz3Op3p6CU_Tf58BJO7dkN0f6X0Y0DvgQ3h9utjXeyfUw9vXxv4kcAMrXYTRSwWm98NB8qLxbXlajXgcW3kXhW3_HWhkLaH0hq5HPyqk0US0bALtzIDPG-PwDvEbvYtdHDZu78xm8_AsHlzwHJV9qkFyxen1vIfovVSJxpuXAXda73L9QpRZztOdPvF86Bk2TGPxJkUcw4DtH5k_JXSRpjS___5BHQaKSbCSJ9ifL8GuSH0rl42lT8coykvVSziiaoToFHz_beZe05iIT_PaL_rC-ny6ci-ydBK1DZ0kY-0gSRY8m1UvUGD_Nf0sjN_dJXuY0kSNrNHqBhqDBsQWoG3-FgmnXvFoSEkJrEoDfYL-jsTTZAm8v8t4Foao2ZBYYxVWt-86BHF19-DdU-DgLloKgFCgzYDIDrixFuoiJtRnOn9QaP60wpV0wZGRWGK43SMFtwiYAi-KLCmgPbJwm2oWEonnt51G5gGjjRMAGNzzN_riHRaAS1orcSoT7J-vlbeQ2gL0Sl4feV3mMlZH-Ut24UkoN682-wKxG99AwlUUhOujwrtwj8Og5lQR2Bz-msU5RUH98Ysc1XqwRXTeTwesKlbcK2gTM26LugVXt4T0_mLo09O5_BQ74lMvNaBZQalFQJMwTZa9ptJJrmYur1vjInnf7JKW2PxeAokjDKnMj3kAvY4Y1ZlDMtK0jv7VgFFyZN9RckGFmx-dWcbJcMa_QxHaquWsg_BspQl3YRA2jN3H1gntLVJcRGgkoMFodwq5pTbo1GsoYQZoiJnHzXlLWJsB2QdnOD5naCn3g_53A5Fgu4aP0HNSzCnii58dq3ugr0FkFYZLtdvXNR1X_pFeJXJKh_4EzP7N4QP-28Hr3ELwR-B_uVEcKIYNa_Zw_2CqDQoXcrZo2beP68XH0lwolVFbB4y6YE221EcjUcbnE2qFkM0VCun5eTT55yrhodHvlCgOjIfSkBfGSD7ckhlxgI4Q9aN8M3v9jJvMI_ORtQgI5kZjIQm0xw5XYmf82q7ZZJOSauwxt73BnP59RewbgUccEVpHY5wM-YtLfN77jj9a9wxFLR0R-UU5M6eoaIsfeMt16MHUwfImha0fCvY6wnTf6Q6byGs4XUC_PcFtMldP-xB__G5Agn6TwJl6qCXmDPtlGvBEN1a_0WnbG0Mxm7HfGuCXuJYcNYP0Pp4fOv_KJcH0nSoTNcm-N5nbLY1qd5Qty8lMxAzwN8VutSPtDEdBDq1Stsx-b66X1gR_ak4EBC0e7Vu_XBjA3qxS\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675e8265318bf5-93746412','','','2024-12-15 07:16:59','2024-12-15 07:16:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41776',0,'cd-form-entry','',0),(41777,0,'2024-12-15 08:19:09','2024-12-15 08:19:09','{\"firstname\":\"ashton\",\"lastname\":\"haward\",\"email\":\"hawardashton@gmail.com\",\"contactnumber\":\"0416522004\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7YwDUXGK3xUnDOxbUY9_k1oZmYJkIX4TxsiJwYKvUkSEmJIUwBF49QmlzECAEGazclllDX_4WR8Mw4GwHWauEWB6WuZvZpv_P0sL_zJgpshOozvf20jqMqwM5tt2bsgocX-0kF-3BNVRy6JSo9e3vFBzQwHJ30YCVbnhGUuHZY9ng7s96aTZ9g8_Jq8xBDl75gIOjnmSyd4X9ZxrXikUgg2atCXILTkseGyO160lU-8Il4SqdA_5j27ONtuUpiByjfISBlKJG4x1vRcGX6YNnRdo5C8EW1YPbUvvDjNAMwCEn5KmT6VUV4DyINQy1TnLMyiXUcP2x6R0JCnsfQyeE_yobOmpjEk-OHaM2SPzrOhN3sMrLqfPNNdo4PHKJbqEUyaeJzf5I5rbMk-wbmSuYc0Ou9Yx70wDweMLtoRYNoGwJRzs9sGQP_TO06RgyNceL377KzU-tWny70XCwC_wG4aPDwLMyQt-LEZPspAZuLMl0Kh_LT7nLGRO4Kk3S7w1FD393IBoA2yM1bvGTUTi0K9jty6VsnkYaBU1FD4VbVOSwMqCFRF0KohAHN-ndLOyDKPhdrEy5iXCbyT3z4wO9y-Trf83mCElNnD3wIgpNJY2Z1hd9wLJb5cytj02PFsKecGmWtz0hv2bPductU8NdHfbKC8LAFUmZ8cM4eKHXT0nS5RoOYUuZJLzZrv8pputkO8e3LiXVbBRACLLEGOVSmYvtp8y2JbwKx59g1LK_e37Zejca4sctYa9O_LlYomdmRzDF5EsjqQaQgN-uhvp_1-p69nifMl42kI_xJ-YMVNueZnD-KJIbSTiSevaKWfwCFk7_5-090bvEAMZyw4nOaMZfMe6IosVjYBXV2MSOBM_0WCJ4GfhDsRhEZH8eXO3s68Y4AMTFHFfWb6G5bzWBHaafr1CY--ZFgF-ab4oQx0EtlJMrUjr2wQZ5kS695e9sYCerYg5A3zd7nB0kx5LeKIu61a9K9ylJRDaL7rd4E4_PNCcAnvapK84L8KNi9yCb447lZ1a0Mcd5_kMsx-V-Y4L0rS4Gf_pJsAAAf_oniSLsgkaj4ofRrxNHLYXu3Ob5wWgbwVcA5oeumw9qECyNnpl-xsjESYRKVQlfb72Y0fW4r6qPNcgmrP7-lSlT_fZdF7B77KNb5dCNFN0razgqZypKGjcU2rnOMiybsMnxvC2Puvlx8ImKfksJY1oLJhjAx-BxoiWslbFJv8memys2Zew7uE8Y59hbYgh6OfR3usSZpxXr63wK8ZystWQjcEtufMHVQ884d_5kaRYYGhUR9IK2T7VXr9HwyYwh_3uaPbKhKwXwz_rq4KIGn9Bd4ekwo3jfzq4Lu4qS-L8JxZl0jy8Gn37cYth8kUOObSfa8iYi6SvY3kRiujd1yYEw7NNEslJbBcxWF2BVIRSTh8ffoIjB1DIYl0nsK8MOEiOqUXABYsPzkObQUHcLu0RVWlSuxPxuYAD1GYhqkmrD2mVCswae8MzPk-_uzMmsDGNKr6cXT1BI2ZhiU1Gadn53KTxw9o0Uj4NrRoPLdrw-ISH5_v963cMNgAg6nRYhubRxgoiVdX3mO6I0AtJ5T0s-5WnwbcUIsYjUD9FHxfSgm_tkZoqEagBf6i-_3j-doZfQGIq6M-y92bCGMYdsU4oBIhYobuDU0wSxI40FWONFhtGlnYs0XWVDTkVPj5ui8K-H4TtbQw04SVwd_6lF017bJqg2dEH5vDDpoDro_4_dtlIzInpE7hfizgpcUxJz2kLk5QLYqzXJggOJhZlYN1JoP7_sADr2PocCXa6qZSq4ZhwYu1iMBVEOLpTAsJ4Y2RttVEQZLR3fdfjBkjikjZF06bMHeqLvgsKh5Uax2mSPsOLzqKBmpFRjQJaVMPrL-DH-kdRujrtsL6F2VIDrBcekLpl6HmhZzIHosgb0OWIc7EQ9LFfYIiLiXi9JM0XLd8Z13C-NNT25OAVE0ydNrqpJ_r7SaNKdKHKKKGxjGpe8w7LqcHkVk9d5im2w3RTBVDPMbKy7gV9GmmofjBIGgnHnxHH59qKbfH9-26DdC9b3KmWwusNDHEu_Qkz0TlofLv3pRDbtFzH3lNXtDcFtrMw0Vat5302v9gYsEc5dDsV_SNfIMrjcflQpxBx4OHs9jQ2bdsRiV8WCNRgSUarfQ02mxzXl6_RHkbcT6-bS2QFLWC_mmhyFyfbApVGkue5btGYyB35OoERJYaflHxCsKf0aPa6_p4yHz\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675e90f248adc7-25983896','','','2024-12-15 08:19:09','2024-12-15 08:19:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41777',0,'cd-form-entry','',0),(41778,0,'2024-12-15 21:50:25','2024-12-15 21:50:25','{\"firstname\":\"Tracey\",\"lastname\":\"Graney\",\"email\":\"traceyanngraney@googlemail.com\",\"contactnumber\":\"07882080499\",\"pageid\":\"39245\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gbraid=0AAAAA9_dL6vn5TiDJZJIkTrnBTjhh7pdW&amp;gclid=EAIaIQobChMIuJLJ3dyqigMVbYBQBh2wdSeVEAAYASADEgKrF_D_BwE\",\"recaptcha_token\":\"03AFcWeA6HSxWJ40Qs68RaktlypZ7tp78KI0PKo0ao5ENbwA-68QGhm_izZFPNyBjCSjSSiA9IJVlm6VVFCCljuhaApsp-l62Ah9fyX_m7GYJ31zhwDWB1nll5ex24SkLgLQJRvYMqHYWcNBWR6h4oLprRptXnx-54osY9fI9A0El37oT4DOgowYLNSW9v0BTVYtVSS3eJ3oi-8GGSQ_NXlIb0_vbxcU98MDSscW_tI_aunSiLpmYJ1qxkBSrMxKKvs1cB3L66bScGy2KD6tRKYrBKee67Zx0Xo4afCJYUHNu9-2cpG--3RmZKb3LFaZfwdBmg01evxJrSTIRevGfdmb3W5TSyWVUQv7PHfXYXK1nwscpYXiwq3Ar-DdYvktDyjOiWzkGWT3rEtSOUiXANnPsMvK1E7zzURFl6wdGGAHkBPWJYDS_5TI6NYHHsIemEjye4G5RP_M8fv-Bhs56pLejhCMlICS2f08jpP2uwn-i6qwSZKJYzhhdcQdvem-k-0IMSih6SnCf1QY9GvBDUItnVDawn4Y0fHd9lS_osdl3Lde3n6sFrSayiSoAfdt58fIQvZu_GvVz6_RdgauPHiHYWJ0eC-nusJQlIX5ZX0FWhDPAKkpEKEUWG1viDrLbibJOW6VCa4FUhzR5zJaqPXytg-lt9uqmd7vjsK9DQknmuq6RUKQYapmVWKna6k1MWQ5TUSt-cexUrtFFthEsdiPhT6mjTbA3VuGTNLkHLS8YJcXdi4UJEOlR7XYEZtPlDsu3p9k6PLxJdw10UT_tXoiHvt_8nLzsG1EhkJnabQEaR-z9l0rVYOsP6I4HN2KAvcriR29m0OqLHibbG207Qbi6X62lRV4MSSGvaA8xeFkPvwIUZkIexdCLuc7Cp6utDlatqXfAXqpbqSz8VnH_BZqXcfMJJtEraKmkqSMw-em39NUqDLgbF7eaqv3EIjotgX_ZlVA8EFcMeL7vata57bPfpm2wVBBJNe80ASn3F7PnHW_1C7o-DZZRWS539SfgcTptDDI8rSNid9-XRClZlbmhFWBT5cXqYwOWq-NMtMQ7po89Jms5itNDbm65clAqhxknGm3ZRTRTBbGBZ0V5PoKAPFeQxFwTMsZqk-wq7CM8pTYqItZFNqu8M94XJRCH7yaUdVZfutylyp160rp4b-upaRNZ66LFV-IF_X6k-U2XwWmbbeX0OuEEwLZ1WNSaRMQ-9fstR9HBEpaC47cXppYOlb8ew6sj5Hi7Mdnx0iMzToK5U4ugM9l2-szauKApwduJVpA_FzjEchttnAW_HFpjhayoMXTxP1j_oTK1rX0ztzlwPDVFguYzaGpLbmBayM7-JF1wxyLu0tAIydxUC5x_2mjjX_bQ_5FcTkiv7kY0gGi3g7pSSMMQIPmGCDusbX-yPKLOeD331NRclEYI4yhyHfSmToIHYOWM3PNs1oMr3VwJ2eJZuMJufCy8NvKBU0AbxJZO2xZe0ZZIq4T5XY4yvUe4W4povhIPt4W7usv6qDLczM13TGMFQqZeAq4OsGByb7fPEy05BiwPgIEK6u4nOrijQtN2t_MVavqZt4tuHiM0yM1lF7RiUPhq9FsYawEc8Z3ddKz8VuL2dIss2NbYZ4v4ypV5C9QgakmAm-GxnxsfnRJtqLCAxtAqdSsZBt2e513fakZZ5sH_ozJjPn53aGLCGfnZelvJ2XB8N02ygBimkXLufo4Dk1i-cHZNUDaWabnMKThQBLW4xKUGS6VIXzy2v8xJEyUTc1Xdja7prNUgDbFbYx2Oje00T4pH56M6VhBXo3mSDTx3a5p_pojUZNUF6B6JHtJzHRsRpVjWgYZWgP5cEhtH53Ss0Un9-BVdd4VaoLmhFcZLr94HIKkslFpaHsOryifKM93_8A67FwHHDomFqpSmiG6cjRsvzWLjGAjSZB5AGGA_uh9KYLIA4-gledJ0NkbacYlPKw4_0jPmXyBC6fWncCqivUGt2LR5J0K0onGVjg75OTJw-yCaXZ2wrH45qZTN9XatNnQ71QzxR--2b14k\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-675f4f16932122-39891904','','','2024-12-15 21:50:25','2024-12-15 21:50:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41778',0,'cd-form-entry','',0),(41781,0,'2024-12-16 12:19:02','2024-12-16 12:19:02','{\"firstname\":\"Eleanor\",\"lastname\":\"Preston\",\"email\":\"benewformtest@maildrop.cc\",\"contactnumber\":\"01234456789\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4ZW2L0-SvyuAuaKBwmxn8Ibpp_4mJLF7YyoL37KblIgVb8oq8Mw5WkW_l8n8XV6oU-rARnJMAzvEgclkNjLDvNZaVDI1ZEGGSHaelv5D6S_pvLeDYLaghufEFFBKpPPYnQ5PqxJjVrhKbgxIL8WVjuljT4grVCMEhx3skEUt6-XpKdLFrLZO1LoH90loxkcsdYdfoKpcdK6k0IY4vpNQt9YJtMrOoY7IMOW8XCXYE0m1A06IsFxIUMKMymN5JfIUdNJ2-vMclPMCAwNTQ2CwijLuyzhKMRAJqRdXdL7MTGGUUCFYsYTwdFgs6x-8j3leeNPvxXGKDkEOakwmoB4DlkvDKRvr94XZ6QrJbUjjEwZpKfZvKv1HLxNBRHhg0v0SCnn-SeAESSzNWK_KMlG27w1DBNwbAdyhVvRLfcBIkoToVc45L53Uds3KsLiqioGhgCHvuToE5_c2RTf-2Vh-PFbOxbGf-7e0YCkjDPpCtK8IeQXGzo6UGOTeirDeWx7GgU2yEwbK_PLErLnBpsYUJbAQV7Yx7lsz49Ti6lrqB1jErtqZ8t7Z3Q9wAkcM1DfPoV4_KAucakRoEMx9WsSJst0bhwob9nUo2055ucv8ReKO3sf72J9IY_KSy4fg3qjWTPNHkICwP9yIgwxkP8qkuRfWsHFj1bzx755pa3rrIG3Grl1uwN9Ut2C1NgmA3ui0EIdbZ8muowQIeA-BTx2cuthxpsUwfRVu5LtjtyqRW8tzOwqcpzuyaXkzVH34L5u1B6Xa-ElscC6dIwgfbGFZ5VnzaKdP6nhUA4PW1RnjmztEwSze7Pn4zyrJ0wKzO0Ahj2IhB0hJ7wMXXmMeq4UIAFr4_Sq7Y4qy4vKc3O9oHnGypsMbb5aGMG16HMltY8J08tfqFwcSyjH6BImlOoC0oAuIyDOmGmANC1OrL78wR_tWCz4DPGmoQuBIU2so1zCMX3-Jqq4up4UlzueJD8X3LNYPZA7IMh-BIL9-YwYjcKxlaN3v6wqFSz5xAWB7jO8VbJ-_3jn3m8Mw67561mEkI1tubrPpGCt7aGCLw2q37HqXM-755KwxL2a3IS44LLnYm1NvqImZQrkj1DeiHN7KrHmMNrs9sXR7IYII5d2n8XC-B9O8EBs1M4WkqlHH9aCOVbsgQXLxAUN9QunfFqV5zDppT8I12bnuYpcYX3-tmfbNwrv3tGEbISV6w-ubrOykCbd4U0uYjM73bFclLGMM2-uBRZbKXKqzW3X6XaaNBU374mc9j50rLF3rVtvSvEZkaQSt57xbyQiWwAM_F9WCTqWH7xn0eLYm8z8WfMXsS_l4RzJPsA1lrU_lJlPJee4-fe9vFupL2XH8lQXZ2yh6NMwYS2Qubt3xUPOb4-C26ob4Pv051uLmOob6xxIRbuqmQcWeLfRKOFmu9beyTthEz0HqDDL99ckULi7HabGU-tgkeCI9b_IeNQ7GDlRkoYJEPUmA8Dqtbsx23SHH6ekBxNmLDRAiWL0zt_hwbuwZNskizS9liSVEh7V91IG8N-s3AX3KE-AGjJOtznitBRfgfsfLjW5-90A7854vu3JmMqnu1CT58kXwx_-3kFWIcURuNBYsfw7Qzq55uMvqPSWOpmAXD3zZQ4edCUj1Nhd5PuvMIR0zPQxtOrer8kGRYER0F-Na7BV32SwPpCBIxC7cSpgxVmvhdTKvdIgLi-Le5nqBLoLkK5IXpeCqLieO157Q4r-5QVUaMy4isQJxRHZA3kyQbucGhCGp9_aGsNASjLDknwJCdkJ5DYCispg5aUSuHd4jeIadMW--6h9ZAm2P0ROv7B9dEdC6o2StWpYWY2euDh0HFfICkmKXcI4IKStDjD5HRCij7t6JG-AUMspcLIP-budRRbzuPsa1pzKvnPMgHJk-7rS5XV5X9veXhc69gMzJd8dqkEYdBdXxC5yfOf0ldPDE63aaT0gnmJf6DG8ISr0AWkTijBQdFRMD_0WztmPhe2HFu9lTE3VfNgh4DqTUPcEQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67601a95e00f68-94194768','','','2024-12-16 12:19:02','2024-12-16 12:19:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41781',0,'cd-form-entry','',0),(41782,15,'2024-12-16 14:39:18','2024-12-16 14:39:18','','Biomechanics Education - EMD - Referral Lead Gen - September 2024 - EP','','inherit','closed','closed','','40413-autosave-v1','','','2024-12-16 14:39:18','2024-12-16 14:39:18','',40413,'https://biomechanicseducation.com/?p=41782',0,'revision','',0),(41783,0,'2024-12-16 14:42:21','2024-12-16 14:42:21','{\"firstname\":\"Eleanor\",\"lastname\":\"Preston\",\"email\":\"benewformtesthtb@maildrop.cc\",\"contactnumber\":\"01234536716\",\"currentwork\":\"4\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4519sAa2kQ32UU0_pVNo8EBx8mCSuVXkwZJuTOCX-E_-w7NLp1e0HlxqNAZbYW765tqFHjFbx6zZvRmuNNGCUphfukRQtSaAUjVhct5i_HJjhfyFjCEHwt_74pEkvLUXXxJ2Unj-RIiSZck5HTKOKx8viPwUxDAjTkwLkjJhPTyvOHNEFc-2GEFpf_vaQM_uea-IRcIE5C8U6bH0JxLTKUmbJuCF2eab9rrFRuGEubUy9qGkj9JdgQaeJldt0Jb5qmS42Q9XtdHamfQPEogkdYzIAFvh29rPNaKsjNOpgmPIYnpzzrDkif-VWi17Hbtyhc8bqCNUzmnE9mG7VE3JAWClZmqjHuyLlKz8clTiPOCwL5GvrXd9F2lCVUq27R9fdh_uVAdyacOaHfG7rSIbzp445HnYxQ8VPlmPPfL-BUler1ADZZqxt0AqHflngfxQLjayptJ-ekZNRMSdE4Uyu7kW-2SF0UKnmYv4dvZEwHFqeoF7wPipCYJPLVbunXAcONrbz8RUexQgP4qArLBpDw9LFU8WLccOLTI8HnyMtBXqn7i-rX9OXNrfpJ3vSac8kEb0MjPuHmBPD-cqHC1a0AcNBDJpBEl9-Ubjv9KslG_y0wp-dn75C7_TNHXutGbO4WC4tR8DS2lNmUfPuO1EstGvQ4GufPtFJ8kBqRoETIcSRyPzXfzgJpaS8MuExSh92A0-ULV7rBjqRsk3N4qN9GSr7T7T3SQuJcEhrMvZTgw-3-lJTAYuy0wwvhSRj2jQvucqmv2FzyUC2yqTIZDNiafqY1JKs2cRmG1pT4Q86c0OpfCBa7KIMGFKDZEasWkHfKXbDMt9egGAbsIcEh3pUOB_g1cpcr70SiLYHnLgFkILa8Ls7AngBwTb_vcoGX4XaI8XLQyBJZzNvuwa8iX9md8wqVvHDZnsMrzT0J-fQtquZe_GIm7BqY2-nbRaptnUjx-TfRz1TptoGskzZ6gtmCwZeasvb_YWlFK9EJaMi5N5jzvRncTK554CQPyPDkNVxRqFpXe1qtwq9fqEMHBoSnWjCFXpBOID05daibgsQ02LFCRLoGW-PwFRakwd3v8ZdNK336GrtWtRpbJgZ_eQRtDDgDBffYVPV1AijEiHrN1lSXC-K1-vT7Fm6fEn7nwpf3gpZf6Q7pN_JRBGTFJ11JaIzWtSDLhNCli610SgzfZIP0APKh0oqBCPKef4biwd65uPMi-boQFd7Ca3OIEMbMFRg6R5IU_va8ejMVcfUfJPfBZf2sfvXgKU13ys3LCRdzb_sZFU5G_gpBaWnrYUcob-vNZgNDcORubTfLoAx2HGJvtTnEzb2WLbK4OrkvJUJdycMLqsgODaMlzivuwjIXvQ61wBc9jCpjA7Lns-8XERu_Qb-OCawH_bqS4e1Zoo_RH0R4lSdu4iy6pcQPrpVVlzpFVIGUWQFdeS2ra6ypJ90sj94BCij9QHFTxhSoiZJmQTfQ52pVEMNyYlkMEIp4uj78Ol7hW7Rp6ElpQxxXkWHdwojdM0Sl5fVnVzAb_JHqZms3TAUNjZmZ8DtAbFxOHGKw2iclujSliLUZQsZwxBphgEzMErmdW1nWiXwi2NpHcLWaPliR-0d13WKHQ-P3YuEU3Cxdhd7uEPk_7R4sUUkbl4rwumJvw-6SLVbe_wJmJMqD5qVq1cVNRAmhrGqDX4tiqF2_2n_SOk51ZpFETwhj4r6F0gDt1D_qQ1Rsh42vMOFbxrGPbZUnu_zle8A8j50aXTRWURfVVrFqdelTBTCi1zPdoptuXM2Xch_7_8nmSAXIAyImnyM4myvN_7SXrrRCY0CJ0R-hIi2nQM1OqereskKhEOf5p3labVQWO5-8ZkLHuHJgVoxhq6qrV5aSAGKIAhUNO7sn4DTkx9XDA226sbB28GG3SVFaWPSOO09AqHq814Dlvmwf14PCdKIxi5wY9Iq4NAYUIquVFGC2pW0JdzAMRQmlvf-Owx0BPWvoU_SCA3KOhy4W9pFTO9dg6rX5iA\",\"recaptcha_score\":0.6,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67603c3c918536-65555700','','','2024-12-16 14:42:21','2024-12-16 14:42:21','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41783',0,'cd-form-entry','',0),(41784,0,'2024-12-16 14:45:17','2024-12-16 14:45:17','{\"firstname\":\"Eleanor\",\"lastname\":\"Preston\",\"email\":\"benewformtestevent@maildrop.cc\",\"contactnumber\":\"09876653224\",\"pageid\":\"39043\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5sgZ0trPf2hVL2lncOnOUl2FVuaXgUwf38dqAWeppd1RNuAlT2XFTPUhxZdXHiQOZc1PuSaqBcZRRJX00i4qq_WA07x1LViucU4mQ3ksEq7Ct2LmymOddZC4idhut5E0MeC-YGw2veaQXlgdoHWmqhhkNKtg11MClfDvhmLlGGKm9xw0MwLTvG6WjYoz5gIiZ35ehOcRyFiM-hRZ8ETkn5FOBw1bsHiWKaI8vSty2TKexGjtP-OSN_guO3WKeHaf9XqwfM94YaGoVXbnYjJ3sf7Dh7qqY9JmtQ_YHPdwNCUzjEqVP0ppSE7rLmh3pDjSzsZukxrp__MkeZGj3zF64JpAI1EDRHkDLupH-XiwL9JqozbJyh7nad7sJTdZxeEpLHi6-JISOWwfncK3sbsuoCshoBxPwakOQr_puX_IxW1i6XHYierHbE--1dLIAn0JTpqOYyxN8uEoMh6q1P_-Crk6OyYQ98I8nUvcPQBCCjMupnTF8_dcBx54gvAD6GYAjSH__z9h_mg1fT7IfXEKlKW30dcReBcPI6oEjuj0mGAZlN0STfLXbBBLHh7ZAhitO5hqWg_Zss5NUjSAefAQvaHrF2rejbuMN-cXq594ad7bjz1wH79_GZ9ZnQ_RGayUea2vUlT445Z0GfSHEC39H7RPDeZiUgIl5Hnhb0DFBh3ckJylRoUicmTit_ToI84iPkEJAWksYEWIlAqPsB5-6iBkyz7hrLKqkJRWoPDKu5Q6C_ErqRb9T7WKfKuVID51wUjKixRi35IkenDAS3LM35oEvGNf6OsfdUfINVHbIHjG4xo_YFkdlELbPznNbmwFT6fPk3G9Xy8NL_Nh6xh1qIpBt32pS5X69u9ym3yBMvQya7_UOaJcWbiqHgcjem42hAK8ScIzfXXJHjjvVdo0KyM151JA2HvyFJNLQPMG5_YKxHVJS3AVPb1kHiaxnRLNd2whwKm0wBWqlZJYIF65l-d0EBnjcgCo7putb2ajnW9nD77x6OMoAsKNr1J9Fpl98A_XQKz8WLGnj1UXg5pgyP-aeFQ73h_YQ6YWQaMTjB4T-37IN59LADY6imDMfX0z1T-qnRQ5T39vTOLagHv4gi_QKgaPsUbqQnVEmrXdZAQDbue2Toy2QTprK6SNz1Lkx8eUfgmRoPuXZPLddxplW8Hx-eJR__uBlM1gekjBhAEBkyZqXvBE_gIWbe9M7McUcp3lRT7rpeVxUpcuOA8XfC8OLPHkbhfE7MlOfIfob4HiAbtyH9j8HHuOw0aJKSSpvIRQrsokPPtzME3X-yZ642SefHAyEtLNWf5NhTR_f3lEXpNRZlN3w59lRJxZ_R1KcaQhKljqJOGlBDcs-coJogoToySE4Yr3td3HVO4Qc0mF-5MWrcxP735dONwFsmvy7-plht5ZAloW-izlw54OflefcfqEykASv_pIejsKepvAAJT9wJ21pt-NV7Xr3hHgWsRTu2CDYYhkGPTCDPKSeYCnkGCezmBt6WrQgLYC19OAGTnp9LlRn9lrvK4bkXMhnRJsPfU8Y0V9a0GmtiI_cr-9zJWDKlE7Pj4ps3GAy8UIc0juSAaa9CviQYrkxAofRbP3I00F_iR2AN-Se6mTE_Aomafbuo8dxlUc8wy1_wMwHxM-O4CKsCHFx6Bkpm_DasjbrF0MLfyHpoih8MRWb6S2sylsDF0LGH3DUhou34igd4H0jAi2gsMbvkEaafWdVzi-b-lqGlCQR-ZOtbRqruwFOnT3_LfgSs7zysweY_1TurYLrB-NVdyyY1XADtzdslyJIad11v9pme-6Cvyo3qDtEHtCfbs8Wuj9_F3RqlyFreDRvq0GumYKQ9DFB6ArN5QMErrNZW7DXXgqnF8ft0323okBSIwYVZ4lPPQx3qGF0Hr59gYQnlMZF-S_VInQ3_C7j56AYYPABKwqdsg53FS9UtUgptIbl-1WeVSktB7m_ahvdvilGamWizZSh9ohsa-wpLS58oMGR19Ork8G_w94SPgQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40416\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Event - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67603ceedad899-10015180','','','2024-12-16 14:45:17','2024-12-16 14:45:17','',40416,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41784',0,'cd-form-entry','',0),(41785,0,'2024-12-16 14:50:07','2024-12-16 14:50:07','{\"firstname\":\"Eleanor\",\"lastname\":\"Preston\",\"email\":\"benewformtesthtb@maildrop.cc\",\"contactnumber\":\"08752223332\",\"pageid\":\"38973\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA57PNleZejqyBaMYtFK1iemEJqhNVRzQKj_X1F-eKAWeXvmD8eAy0CgtucGkzZuEZKCzbDbQJP6YXQA3azNfjpc_9DNf3kkVKMFy-jOaf4G6aleHel6FCMzXHqSjf4M0AIvLK9ZkrRnVk-0Veq6mVswgVWKPhx7vxPweSfeq47QtYp5POzIkXnEVMKTMwmN5hxwQU9yLH8Uz8LoKgYGej0aD3OgPiuHNH9x6t_wwOK1-GyjxxoeDMQKuL0uMaqkvZEHPW-L7ESvfD8yHggjshjsq3xN1e4OU03i6bAihJSO9a8TLX3d5TQegT-r_ti2wA74YmmEJgoA2ZSCREkBlUCW5oD12qIe_biwTPNFX2crNrgwkCbkJyV6jdc3sheTXungaXvxi12s6mt-WFD4bI2MGqZfWv9Zf_mU2PBk6r9BHMtgtni0N9ws0ldaMNvX7wBR14zz8fHJYsyi_vEaWydsIiC25jomKhLj5iT_AIdv_4S5x0ayalZohs1YTTij6yKkdWLnyeBsRGFjuN-eokkYKRp6hKd6LQgxmRjoKxW8jpkzab7bNCgP7f7PxjhJnuaLSSIf02SXNw0aow8yREBmaH55oXOfcuaV2jk04O13iSmBgGdIfHzpGfpMRlYoiO0bvOXSX_vJzKTK_FWjch1uLYllexmtYSOnQkil807ZGSBopvUGQp1EkA0yMo4Bp9vSAIzvESHs2oLkjJtEu16onAoQhVFo0s51rB6WegYL_5GCIjRT4C2nkDlP9jvqmBCH4Fspxx7K1OM_ZCOhDb8iWGT6LhyRLQSry4TpY-KnSDhBGFL_gz9wrvtj8vCvNhjfQukgkakxvrig-slAu2zj2MzJPWDqXDARB1PXsaDN6DpmfnHxBT38MyenMeo1-6d6l7jJrM7z4C5yxUbkDrzJWGiXNbvaJE-YfJYOgYyxy5-gc2HuAHOUnqUIXa3DaMZl4JmmcgunfTRbCgY5A8pQmQtMQeN-2NqXCSpTgWiKTdK79iqA42vNWXMgmjhRpqalBlzClJO7cbrr7zUsdRcCJ0rCrv4Hj_ijeE8TX0AGP_E8oNY-gQGfI_Bq_nar2Yj1NecHjTb4WFYXXnFPRTBasmFbTs7E1y-sSbeqhcvO-Pe3tcNE7oUZM5pQo7o07qo9POseUXbIldO33jygfYUCUOLK3qGSXjZs-YSt38g9mFQIRrgYmjC1GEW2r-Pn5sNWwOvtrHuXy25Li1t_ESeMYcbDVbRjKOgKMWoFtgXF5izbBiGx1Kz8OGPoq84WjXXITjhrEnW3dVf8v2kdUZ6PFnWWx1h28pnVxjJeeUn-1_T5af4ijgGseq_5oz5kiJUYlYLmgtaq5xizxa5e4PQEhRcSyOeY-rpRj5NIO5qbA7Vq-vg6n98HbNihzgbnH7k459x9cH_0ZUiQoIPqUhHHlfhWcg57wlq6Ks17vIeO_Xs0MO6hLNxcUixSz78J4qK8T0OxBuIqD81wt9q8aXKwu5Pt-LV8wO4c1j--Ty2_oAiziantpsXFW845Zl6scfDpLjWFnM1KT7UTP9rqsp5QnAOrscqTQ4xhLOHhK3BEtdRer7GSuehF5clYXY8-XheUl6WMMXY7eYO5OJTE7ZdSWtZKmI6dw-pyDS8er5Y4MwtRnjHb4FzqXbNz5nMoRaQEXspWHrcygTQm6QB3QvYrMOnWkZUt0wdeBTyP0_kV408w1N_6OSz8XWZKfYFp0PwbmagF5szkIIkGF2O3I_dWT8sLWfth75HmvmskhoU4RUZpcQF-XTMTPjP7BMkPx6R3SXT3qegMqZYfGMmCfo1v6ZqooBVCMU2pKgVfIbMnM3pf3s1mX_zd2c8-yfJ5vFwMqdn6wkOv9h4kqVablLY1PU9rNQBRUqp1rN8IYM5KlzV991WiImEXzOfzuq-HDLljOOGiHV9tOgZ0xKBpf-Tb66aabA9WckdpA4Nkb70nvVFK0NnrVTwsGreMWDh_CwSVLEOQwKbSSgo0A1fzpxqn7nZ8WA\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40414\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\"}','Biomechanics Education - David Lloyd - Referral Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67603e1649b039-09521180','','','2024-12-16 14:50:07','2024-12-16 14:50:07','',40414,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41785',0,'cd-form-entry','',0),(41786,0,'2024-12-16 14:52:10','2024-12-16 14:52:10','{\"firstname\":\"Eleanor\",\"lastname\":\"Preston\",\"email\":\"benewformtestemd@maildrop.cc\",\"contactnumber\":\"08876533789\",\"pageid\":\"39038\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4kHvckgTYyBCkJgco0VT02MObit4Yybt-auCqFbJpClJzK2FkeuiS4cnZaIjeYp3DMG9Tubrb98YfoO_qqaCNJPVX4g_tn3sf5amqA6JUmTcwI6ag2if_hu4bhLcSi9vfVfJbCbT-QJZ5pKjhDzMqRMV5bAFJ4uQOkKNT-E1avWeTNNUjhX7TD5PHvTW20h3ldhc8RwLQ1kMzMbKJ0wcfLSQF5-_MjtoXfxIe3a58yNBVQoqZA3XA3aBMn8HPSLOTLXgpN2vAgmq7iyAevXsXn7ucpbVKylfFdda2ztguB2w_67PLfp2qQGSRxylcn1n2EXcqZgw9wtxbOyHKubGLjT5ZGvzdWyhKzZsr5n6JFBi-yX48p8gXwAQfZtC5YJaE9am_B3WO4c0lAIEvtKBC5j7YPee0qjzSHzRL4GSycP7SOQtF689vI6D1_P2NW4XLrnOvzPW6R0nAqIUoLmcyR4bPx_zu2s9I3XObf-rzCQrNWnspngMCeLfCD5o1moMqod9Av0isUArPxao9RGgqZi8uhH5kHvFbeQeG2QuSYNRIydYLnWs5Dk0C3Vpf0NN4ZS6oS4pw5Nvh8ZUcj2upWiYmA0Y22lvIuelq32JZ268CZEwiY4qn7GgqwPVFWU-6Loqz-TVOoaD8kKpJcbkPRn_tzfpDpERyCmgtSaIs2XUOr8uLrs3qd5OsVfwqA45kJjvCXEiUPY3nimT9OPxEcQ0FAG-Ot8GVLU5juGr1qdFW0_UtEgtzFzUI2OWnkHWFWPv6ViRdgOYWNv9M2E9jrh6db7gIkhxfL-j2XNaNuZkaXO_Ewc8YZchI_SZgNP-1pD2LYZU9HVZ3jhRQ0ilnJ0w_h1RX6xe945gJ6_Kt6cvcgX7EysowtdEO2JykPRqCnbtAfRWzQZdYIddQGPsihz2l7sGOfDMegxYpA-CMhwWN5O_7abYSQfdueAw3IJmoW0F_lt8WpkWkdTmXj8M11K14F-egtvn74NkVjYuF76HnjbOdJch7DvmUJMsC-4RZtU-LS4Xix0BEA8G3k6lbI_eGPYaQwD765WAmmbsx5Bt2yrfkPv8LkUJzSmGWFgX0zeavRleOwBsKL1J3PBgoesOmFnIcfuQ2FWryVCDV1ZXwQbE3_dh_q-1OfbUhNmnxAfqmTgUfuuOJ_bli1VLMkCFqWrWbwIAOoWAK_gUrLE4wgVj_LcmSmjn7NDYhqDsPkcsXIeG3BatZM4A_MOqSn03MO2Ii5bi4x-tOQ8I6OrpCW6HoLfg6yWOiCyFSORB-gjg14fVHnnqddaq5G_tqD7StA6hgbAXppdqVIrfjUg7y0r8IbjP9nnUQUtPpCLpCqRmuz6sAhbfgmKPzquRnXBqX9Xl8Fpc8ukdy6blCX_-NYtEe1rpD5KX0N8SNMcJ3cHsGR5oxildNfoQ1gng5tIK60vBS3hjvvFImy6mcoq6iDi3_BLPALGRsOfTt-yvCaCt35dFg2sZ7MSpWxpria4Jxt7wc2jsD4pD_bVDLwcByZS11RTpQ2F5lGBeP4Sxlvag0ZYiI3baxUbwMkgWcvSodWJAmb9KoAbuGjzPrEV3GxmnmFYAmmsmaFAHcDvqgIN7McgtBY66bdKr1wAKaNSAyb8TOAilrrwLjSmRNdGndtMjbQrNmOojGqDLNeV_nMJaXCQpyPuYbMfq2D_N9XWPY5os6YVDjgOJ_U661X3BacIwPar7T55ZiQykKNVmPbuDmKztqlEOdTLO0pP7ERpCD-ukhHEuI7ULxEWNeiT4PU0ihOVVjns53R_tYa5q2EmmzkvM0E5_NYoS-g-A2zvHj9-81XREOnlR-rWA0zX_f70uiA7stJ0edfTsc1aLxxAKPSoD1v78RDXyfmGty730SXV35nDUus8sp9NEu4OQJVHoI1hZMel239UZjccC0tnZC8QiQXf--XNDGAX0CJzdEWw4egoRaCFxmHRzqCQEcJhicpx8n6kzNlMpCWyLTX6DNvZuEt5dYc-MrfKXMwcU27BQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40413\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - EMD - Referral Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67603e9168c176-27202822','','','2024-12-16 14:52:10','2024-12-16 14:52:10','',40413,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41786',0,'cd-form-entry','',0),(41787,0,'2024-12-16 14:57:30','2024-12-16 14:57:30','{\"firstname\":\"Eleanor\",\"lastname\":\"Preston\",\"email\":\"benewformtestdavidl@maildrop.cc\",\"contactnumber\":\"09876334253\",\"pageid\":\"38973\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4lwCAaqrCDEUiqOUInqjoVVcGZoJW5F-WevgBFbKSkvqdWRNav2UKgp7mL4r0h_bxQtExjDRgRzxbw26J17xQnKqg17kahgzgPz-Sl6xDk2VTMjHyHM4vqi7fwYzH1r9IpPAR4F8d-4P0QeIE8sdZpeQfYXstYqBj6BOE4TDsJvr7f-0wBSFGuE4Id8g15X91yt1QNS9UyI7n7NJQMLFokvGQATXLyK4Tmj93WN4BYD6DVYX9qb7lFlHYYh149lGI987HzMy7iUlNS0nmWjPLxovi7neYl4rmAXHSR61jMGh5waOsRu3ir-8T1Va8qGo9rAWRK-cVknGw1fODuddLsrWurQbY58DpdjfjeZqUht_pJAJrKo2t6n3qrEeXAxSDq9RCRUGqjQP1fBi4vgRTmlXebu-qw3z1CukffGN-jyDrxHV0jKaZP-rRptinhK-ttrOfZKlIdoOTUkEblGIKOCnSdF6vfRzrXkLv-0k2sAL9R7dC4KtgL9bT6bPPukCVjNdA1o96TdYT9J58E2TbRyhIguV-BWDa16iQs4S_0OAffa9ZM_roaSgw6-LewGLVLarfqSm_ugToTT16BDXJlFm4xMBiHVWoCHMxGm4LXmm67x8lOlFc96T7bp83wJFLNw5-ZoSWYk8rscr9MlvHocrMkHUagc7jkckJncV1LpiavyjvvlOalqsHOtyKuR7Z3vGdlqgGa00wXCvUQOtP5RUvsJCv1F46n1T7d_7Wi-CMUhyUsSzJB0JU5Lidlit7l7ezwui-rCX7mAFcbP9YOtl_md7wn0qwa1F8R90_RTErXYlbYTaLdkA8PCjMJOPemAu_5-74hitz5XtKgClHO_5epnwAhsWC24iqnZT8MQmZOq9nX7N1Pg2PHnMmYi-mKzQx10HSesRHxUwN7AbG5xe0xR7TLh-cPlaDJD-Il45pLt1dcTGEETj6BJvruFBeum2rKx-GNR7qsKDsBXCZBxKIx970p1vVmwSyBmQoGjux86lxz3dHf_6pyYfT7-XJwsp8zX0L-uHWQOFJmjVvSScTvW5ixPzvmCJKCaYhjeAzxNGDa04NhKW6VWDgzp-hJ9YvfgITe2TCkjVxYCzCvuUz7dTJvUFh-u_N4f5wH8QgRApRnXs9MYIaZ7Sfp6V3VxU5Z4melKtp5AZMNmcPyMO5woh9BlIMAAsdcF9N0AU8HMsJ2U6x2l6imZJ7uRjXgSwWoObSDGKHeKUTmxr3BePBksrFA8v51YJZCEtXn3QlLa0ZAlOOskuviKit1LWKKUmThil5KSy5GUPzyOcCIf-KwwM4SwLQvSdvk_MfqPBsdM_pc8P4DrDHkJs2nAMUMFAGEY8ELAVT5D0EotXBrEq1xaqn2_ErSVUTy2taQqUCbqoyYo4C8_Pxxjp3Cg82GYErd61PNatKbYXsTqjTuYfQXG1D4Docta73kM2sJ44sC2Sp3y6FFsYGsh84D2ZpeV8vUF_Q9VJ5JwVzXLTxbsIcgB4JJrCGKwQexXofA7YvT_wn89wvQXRJyveXxstFQH1_6v6GUQ-Snnpj220AxfJ-n_pIodbTrcWJzK_mwoLSsIR9GBkDGqTs9TGUtm-bQH4Dz6fluJa2eOOrOItN7rOH1VQKRyUKSnZhtV7IlNb7792vh0XlKLWZ5J3DnmI4L2j4SgxOFCrcF1M2TPG56FAeVGdgd9AEKK4ZOEkHsZlVqnFY4ESVOQuSfjIbvpg4Sw6r2XnqSEi8S_3YSVff3kVGVbPWjRhEIgxgw0CcaTTc98dQH-xR24Ud53LlRUxorJ1RschFYNVe9q07YGSTCfLXFmfIIDMTdgnoLyC_6caJDm6ZU_BWyxgwMYaxrEIVS9U6KeZODNwhjpNyNf1CFgBUKgtIHoIcTMB2e14nbpWtVBtMvU4rU87YIl_Ra65wVjFBExNKds7hzBboKulJd_72P4nUmkD_hJyPm4Apu7a6O0bkeonxwARGT8zp5jLQ1Fx-mFC_Rjt2CNVPYdx9M9MM6Nw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40414\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - David Lloyd - Referral Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67603fcf728af9-09501854','','','2024-12-16 14:57:30','2024-12-16 14:57:30','',40414,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41787',0,'cd-form-entry','',0),(41788,0,'2024-12-16 15:01:32','2024-12-16 15:01:32','{\"firstname\":\"Eleanor\",\"lastname\":\"Preston\",\"email\":\"benewformtestevent2@maildrop.cc\",\"contactnumber\":\"05342332657\",\"pageid\":\"39043\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6CJfnCjG3irvJmecZE3AfjvJ6AfXFG7FqQTJ7N-virlAB2wNY6BprnJKkl2YqfCNeZWKPYouMMF8nyYBqdFDYm2oqh30vqhdeDMCrDh6uGypzGC0aBFxeTwDUAyrw8J-sw5vWw57ZAnE5INqyt2HsSY75iJlBJLR7dSGxV19vXaPijSbnNNuSiijbZjd68zbaz5byGgc2y7dQ2H8Vi9fC4bZLjjB18AN2wKQ70MES8Ct6AcZbzPmK8yHQawNaE4cM90PxuZjQWbR08UUQPF4E8G8IMABqIx2ttqIN5P64SazDB4jhoA7a92cv7_Vi6-K2DAU3bJr1LAApOfDLViLuyf9tfaheDYQMZApk4BCUmavchXRJQG1Br7JrDebQ9AuDalFYuU_spN2pFtky2gHxrL1m_GV4Mbv3nZ-PE3yRaoH0oDW8XTDU6J7KlvO8vQF4DYOOB5wWtZiwwxwHjoIL9jIq03tWdlrakzOhSjuULK9nPdTJpUuQetx1gvqK319vmNlbneCKXI4VUx7RGUjsvIIaGt1GhMhLgeC1IK3raU7V1wU2bUx5dIMJoppcI2basxcRZqaY9WzxSCu4oC-M7wqhUqboD1kIxLHlgb2Gfbv7MtJay6F4s8eaFPicc86z1CI6cRXwbOmPRrUxPqif41jRjxNHv3Ht7NBl6ycyUpppuHgTsY68q_g_wvL2pj4b73kJcv7-OEvMqRyvEQ2nbUiWvLwuFNm8hUB66zkwgqCTc-zO6obRUEXMgq5NLb7v32S9HibFhiZLp9YecGd14XlQLSH50C5NXUebX_EXbor7itlwyUyQb6xnR-W40cOlfeWbINUG3nzuejcTYOYSK7qzEnRwv9dSO5OzY6v9Lhgg0_nCZyzdT9nHAkfXp6AB2wNKtyGnv6BaMsPhpzFk9L9pspYEiNw66Z_Br9PmPWlizDg2-_D4_KcJz_YgwYyOUf8KkqjjUh7tWkjH_OjEdq6qOtDLBRkPLoAaDqdmipdZFVIqpXJlnBWSIHv5Mjf7NTjF7_9tVT5MZ3Z1haB7PkzjQYmm1vKHt5zD2wj1k1nkL-WhRvhQTTQP5iHOib0NjCfDFI8aleVuBCIrvMD94_om1aiD_0i1qKHSAMbrrhcIuuo0q9RoRJ2ING9WpHCDJz9A_Z1AZSxE-kGTK091MF61kbh95Yv2bQ99A9twnipEBwjQz0BOv3X4TRrs57tvtTTSH7wruArda6q5pUnv6pkZoHlMXr5xtBmaTZKjgLDXV2C9ClgLM8A6TRNLKc7PkHBhtpl_fth7mEv_sWEwbs0oivA9rA-RraCHi32gYijhxMMte6Mi7gmbFZ5nNEeHmsjO7lIzzLFGe2RplO8gHZQ4PXA7N1HhP67cguSnAmLfO5P-frLlYmNd2uDeQz27spR-LYDdiINwfTHCew4hy5Y64XSnpu9aRAsVLqfR_XPLRrjByEUxU_25cmhFnNRJlH8kzxiV2JRHFEbNOxkBIdj-2kD0SWi24PjnzQe81_-y6AvhvSGbQ536iHA5oPtCQb3GmAYUutuaW_HLCGMsvVJH76vDpiCsCdfJP76B9_LVVNHz5YWZnt2RyaVKAcQ8qZSa6IOBr-UTmRKTP-TlKOgZNTkSxX8xfBSOuKdwhzzcNKbKIw92OpYDcPuqiVHv5vxL14BeSvUUC3GNEXqdnFeg1tcz2IbTYjAT-tFpvxE3q-8tfx-_fwzURuIABlPIfhMy5X5CAIWibNf_ZjKc0cPibVcvbNaTgagUQBEsJMkvGLjPzunhrYQhU_VHXx2cneljIRbUl7UaxdYUsCB-BVErd3u6xtgFBY5bngp0nDqn4Rljjv1Sfsc58OQVZbGmzQq-VtkediRefGvC7vyfTXxHTTwcju30gjhzut79hv6rcbFcS5wYj66Dlyf3QMzEa1I8EuqhFS0zkJzh6qjAroKKLa0Te2r-cGKh_SOpB5XW6NPuUKRTxhmrVi616HVVsHDJCF-EjGeONNWjH0Vfh5RDyyw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40416\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Event - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676040bd4b8393-26358784','','','2024-12-16 15:01:32','2024-12-16 15:01:32','',40416,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41788',0,'cd-form-entry','',0),(41789,0,'2024-12-16 16:11:22','2024-12-16 16:11:22','{\"firstname\":\"Sebastian\",\"lastname\":\"L\",\"email\":\"sadikscincosk@gmail.com\",\"contactnumber\":\"07594756103\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAvP-6BhDyARIsAJ3uv7aB8dArskQFmsi_CH73pvhcUXbuzxCTFuxhytTsJF82hmXIsKjVsKcaAoNiEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6XbZBdG2AFuW71BTRwlj7HUDNpvGjWIqWUpu8kpx50J-sNZy_GOUo2HK4Zk36c5ME07V-Q7FQDJ-u04DM2CyfqbmTTgjsCNStbUez9Jhe9wiYSj13pE09UFrLTGa5Uk3iFdbRUbKNfU7eCi1Otu7VjYGmZ8W9gRb2bvIZq3J7H9EUlslyE2XXf1rmK0iHvwH78S5NfrUaOX02iTPPpQrMNQt6s4riM4rI6FKIA9qlTssgzYilaNQXv0nOxTB4SiWa-BxcSumAXTZmIgxr0Hdf_n7fHyCErVh9XquaFA4GQZNg7mYIs116-K_FZ-bRMv1-zc879X8LttDw6BnXKy3cp6ebkGpyd9XoyLU0iWfw_jKmWOFUYiERxe1VNZ_1d2g7sD__3QDAQDyfkd2OKD7dLFzNVSEdbBok2O-y0_91HMNDkDiz7TVfh4VebGxubcqOmxflN_jNKxXotiVx2kVC7wLcC5Oz_PKIyFLVeyg1iIQBlvZJfAjEC_fr16TJ4UV8U9zfrLNWyGy7LWnaOpZBjvvI8RjlB0bkxPNNMZh1aMsmGaRMVOaV1XfmFExyDdy0LF_1Q5Xx9XvzK_S7nflNeH5Sf6XxQRBSmpve_Vcr9djyouiBIbTlyqCpdkdTWdn6knDSOY4NLz7MVbRfD4CcM7v-rjADuYTm2hPdhnCGPM_UiPYWp_mXDUc7VkSAt4cewkfX2arGz4eFuVMzxNIRcCy_MB4XZ6T-zPCi7fGv6OYZY27o9y15C4VI4ysG799m8GHnbHWygVzSoKFdfEB89wT-uGFXH9CYWpSLN34I0oNImsylTCyFW05S8JxOarUpJYVUnUIHBuz0_I9Sea6TJIJ5ki8SG8_HCxoHPFphzaDfsIoqyI_Nwah9pUOHxfhi7ux6_assNA_vnmTgzkdf40dL_ItkjvPclPbg3Y7abUEy6cqlcF1bPvMInLoAorF6c2Ub6kOqAwYY5G9VhNqPEfRnbBCTZgExUDUyT9vkaVqKFxW5LGWi3dRxi12Yi49ISHyrCs08x9K-v2hnXRIuSKIpf4aQlVYg8PhhisXP9Ab1TPUlTe4vgDonyLcX9djj9jSwhcq1aMP0ZwTetFqqcjL0dvUutbifOqgVN_w3ecNYjZkJ9Etrq7S-mXqEsoNJ_XSd7b0zKpsG-CD8Ww6K0PaVW-D30oxS1wnYlyRPaz5M-jF5NAAypWXPtqhakTKpH0slctF_FBPa0E_NWvEQiKXeHMLE9WNIvJPyQ5LvPhbX-WnaK9PhXWtg0t2pin9yss9Jo9fMeKqewK0dJ6931O6v_wPB4eJLMlIG5ONo_24pcmFvEcH11oK3LWuEAlFQjLUs_43g9JbAtanhGd9J5_Bmji2w460gIf0dRxQn2QFauQpuMp727gFWE0LVDCsU2-XQGh4J7HUbHCZdmwFu4_9dFjutu4NH5i9_MDR847Re8NNANcspiKWfw2RbmHmJ960pRGWCtOtlpYGkJUUgkybPSJYQBakLrga15lNpBgIT6GoZb7GpEfxxAt1xWDMVkduI2_vrZxSId14NgVqG6hGOzXBFO8MyoGw8-JWN0LClVr-9klTqeJtuzXsYAQA4GiQz4iHQp1KREL6ghWKXDUxgAlzzZCUdlglMP5m1w7LYdpLQSLQyl55iYlWQD4xUKZ8p8lEK2J3e5Si9rY8y9PEW4uA4khjbShuJEhgTun8CvIYIuyWhhwjtnn7PUfOf77J2i5-EMla8IJVPICcUw8S5UGmQdv5TMDwH_cn4IHm4DWHae5pIvaPK_7dyeRulKtsJgVmOCUIIozOe_QnKn0lWonuqa60vHlkHIp7lzh47X-gTjm95j6ulBlIHMnd9YLafaJS2cuI80Bo6magZoEVq4vDXd1a46OtQneqMZXsWTD4GmDcmWLYgjR_k-mNgyuGSIWf7Q970oaDlrhTGxmseKYQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6760511902d0f9-38608392','','','2024-12-16 16:11:22','2024-12-16 16:11:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41789',0,'cd-form-entry','',0),(41790,0,'2024-12-16 16:16:48','0000-00-00 00:00:00','{\"email\":\"sadikscincosk@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"n166qa\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAvP-6BhDyARIsAJ3uv7aB8dArskQFmsi_CH73pvhcUXbuzxCTFuxhytTsJF82hmXIsKjVsKcaAoNiEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4FFOw-mH5s-gTfrY4dGSXd17drYCnnf8SlyLx-28ms_adWinxNDapDUZQaX1G-TvIdyT8aQW4lEgJdx1UI_tHyxkdrT9b-x-L3CHYC6pNUgywRoo2o0h_XuSuGigLqlG6q2q4foV06GjrM_YFS6g6DaCNgsqAMOodOsIAs92h5C9ckygAtN6WlsCqsxwnejYynmzR1mS-Vt_rn2TRJyMMxmyBo5qMjIWLa1JYvm9CXCF6X9Mujop7oX2jnkH5MRnGe5WPxEu3_HqGc5BAqdf-QD5fOkpEm-hicnGLOfO7J0iylNruUh4rylUmPFaQFtEfzjXJIr-QnVlTb27BopiU2Zd85PxSkyp1dEY3-SFTFpem5UIL4WCG5H5Rl1CKtksZB95YBEfcp9P8q758Jg_9CEsRYYCxuEvU3I0zI0McA6PGf9ujMf9ba_u3OQ4CtDlPXEOimyDlc4U8TauHiQjfqm5i_He493BNnK3PhpJH7R-EYBpenT0rWMDNr9PY-pUfE8Is9MoTrGqIyzAHWRKf100MaU_JduJdVnsbTajpCI2QfBS6W7N1UOnJcQ6J7SSyWpIpxP39_6sav7TpvZmpe-7f0Ev05P4ssPcEAPjkJmb5O5FXAQz2dwiUW3MZxDgqHQsgto39u3Z0WF-j9JQ7L98WdLBWH9inwr_MOeGQ34kkil-JVs4nqmgPjCwVYREptOH8qvWyUg7tPbUfxIawY4eiZlUWXMEy8kz3B9H8nke8K3Xo-tJEbUPnuDtpA9YMN9VeTjDs73KLADFdvGYoVYt_bT0kVLMYaI1cnh1dTvYxFD6DR2gpoDM0PjURpQLEALqolPJMPzfYBR9Vacp35Ol0sayWvHegq5nwVAHdKZghy2Ml5iKvHaa3wP2jPbwCoFuIPeRRJk6M_unKXtDrVAW0EyY4ODuBJvd1P5M--kETZzk47hMpOS7zaybqcVoR28uCihwxMzCfBI_v_Ip11lVOl086jd3jY3vceGhEXi9lmCz85IhhpejtyW1o9XtMSzRkJt59b9N5y21RFBUI0TOqE1RjLQNiJ3pLh99ObuDlS3-Ig07VxVaX0dhVHdYW3nbJmRbwU9B7r_Syb_ryJPP8Iyr_uDkUarOPKda4Hvu6QmrmT_GaKykEIFypxNzbfD97kXxSS6Re_M-39DKd_FlymExl-9vFW4UpFCbUBNLchKhnaDx6bZI2k9OTa8CwU-qRiq80BkcRsvUAF3mjOnraDg5Z1bjTv-_Wcv0PNyv7YV4r6_k-q7rSeINxHQ7ArnPWkND5TbkQ6c_HaWqU1XliBjqdZzgTEP6fKRihIhecdRer7IZ5-v7sNhVFDKj6LRrsiS0uI4jyfwxNZdbYhPrdy1iQWSp6s1yWDQ9_LQB6E2WElMxFGo56xRhRQniPA3rjaR6AdqXYRSuywPZAXN5tYpJ00_sgXLKEdwOPhU4al4kbUW-6ePat2gh3hwd2VwYqNOhJRh9vySKIDbwFnnL3IoRdRWBKXOxb4AzASNv47hsNXpHig_Vb5ycEohbxxp_4q_8A_rFnUCAhhpY1VuraP8ib5Nqe9X9i2kB4vAKOJNq7wFSAj5VHy12UOsDQzfQrAYx4zf6k0FyTdXmRxCh1aS9WKAGPfrwYOzNsGhWuGPxS_C6geGFQEkN3rDnQhrar546U_bFItTWG_IrSUwJrmG2cOjFemAg0F0vUkwXdeOqXFymuBLGgAb_NZN4GD6YX6Q6gVurLTHt-OGlM2Xm7SPk6dwi0AQn7DV6PmghQymIe1ApVZZ-UeCkJFxH6l5hSVYIb9KaDvkw_hrEAp-3fd2tocB_TtEpkEWd95jemNhfqjYkAhOEPbhLMHEv7l9dF3dCIvOuQ3pyU40YUiIwVkfdrtbtVdtX19qFUTgQCQOl0fGmrwfkV0hCvVdFzywlASA3sXKNy2tsjq8wmsra9FwA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67605270377b26-08336110','','','2024-12-16 16:16:48','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41790',0,'cd-form-entry','',0),(41791,0,'2024-12-16 16:17:16','2024-12-16 16:17:16','{\"firstname\":\"Sebastian\",\"lastname\":\"L\",\"email\":\"sadikscincosk@gmail.com\",\"contactnumber\":\"07594756103\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAvP-6BhDyARIsAJ3uv7aB8dArskQFmsi_CH73pvhcUXbuzxCTFuxhytTsJF82hmXIsKjVsKcaAoNiEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6ntA0S4FQ02IIHEZ_EOsrt8E6IdYtT6b2e6lRXd_z1L5igbdVFpXqJ6xz22ijD4zuFden2DthPUH_kcHUJlHIvJOZKoQliwp-wYdgDo_Xajl_arL0yGUbVUFeJguJ7kXV5MoNZY14ly5_j0z09qn_zt7nqg6S24-d5gS-1GOZ0ykmD1bDlCAe9i_FoFE0CAIztISlC7WOUScSkvDd143gQk5FRSueVPRUs0wHb86HuYDzDhswsw7pXGDnxc8HKKqipwYXKdJB_FOkyw_cnNBFpXL0QYe1VvqBFWLRQhv-sAMhSD0iu-EY6wxYUZ1yn4WlZAnYVwK6PQUp873VH_2rRQpQJ__clv40Z_QmCUXXR3K8ubmTyDGoATJ3TukIfGl4zqxjsGtrqk4lrXj_bm-rNURhJu0_R49H-Hmcli9EBRZUl5nbaXcbLcBAgYHqhhFRRazLZKRy6hnpYhs9AnnzDVSNOgtQf0uiEoSrhh4LPJAxR9cjV7emtebU2r_8cUnLVQad4IZ3tRF9BbYACgZ66fBg0YFzg-63qNt-LTsdvk5Cd4e_xHMlVBK0JRQbxED4bkRKqQR8Ft_Vk5-2P7ud-Z9hk3uFDkgWcDY39LILnUD-drMEZpU6SztMUMITMzHNOyPdpC3ismi3kbojNqTrFZq3swowOrMd-y--R65hJrh_QWtbcaSZqoL2bxZzvf_26VHg6H_-l3dt-hLlRUkob44to9LKi33j8IlcTF5BFp6GCtnSFoHsqTIEHM2Y_v6U92EEhVg2-sOEqwxg28nDlQWBodWEaWq1We9DaazE3r70SoIB7Y8jLbfOkiVwfS0GtYQmGdMs__Se9fkFHm1HIVwiQ0qJrknYznLSGfXoJMThEdIl6-6SqQpl9lVD9iocuIlcKtD8b3SlfrmKEOWn3CsBgVQmDuA3r7s_wFfi39oxQlVF8k7s3m_QhkMvICGICpo0wbJeQjMHj-D_sPeqfk-Hn9YLTxDDt33l4i7Tl5hcHQgUs3O7EfQwEWMVPXE7JPOq7ojNtN9DSidBX0Trqc9Wb_P7dCLItv_9VUdjIqeDLdaAEJS6QVL1RKq2oyYVX1QwJd5tRutFnN2wXQVAJbS3as6O0chGP8A7frhVMM3NzvqGoQaRIWxgHuBn78XpBloZm-91t59pDrwq_bSbqw6-lp2Ss-wny8E6zIovaYYl9L00XvTgZJAFHZNU8yI6zDQy03Q6vDY-vn2cEKLzc_9aaFhG_AM6_gxi_TGI4sIWfQI7vmsd39928F45kpnZPCoRaFk0gYjMvCAeiZqsdb1tcaxOcM6RdfTSysrS4qZaY3wmqKs0V-jPyNb2sYN2enLAJC5mttaeBESEZjWKDDAH5dpfB98zK8-3E1_gLCP__Zfpy7NONxP8mEYSgrUL1vJmM6KjMds5zs5x2xrptL5Jzxn-KWftT_AvDfAhppL3LtTx7XNsoj_AdK49FHwYc4DlxVfRrJG4Y6Tx3ogze_-tnNSlGbACCAfGE2nax136d6gE8aMnAyE5W8RwVI5_GsX8iHtLacqfflfpwtmx45GkaBub3fo_qlzs2KjG1PPy16aJloWZKXHPapDMtwgQbzjYjAHPupW786jj7QjvLKkJynSMENQlpS7C6Ryid7bsmke0b4-I848Wxvm2rRjH27-kgujQZeSKw2mV7SAhU8bonsoIval4h3Wih7f67otABYaC-TTgWbwh2ePkfz34ws1eDZN5ZYZLbVIyx9UnKSD1Dhs44vZEfarKzPrtd2PMDkQ1kP6KIoQETc1nfJW1RJPZF8i5R4R-dNWTUBvTIBfztxC7kl7EA6NMg4T1TEREjq-R-0A4PXXjQ3jR4Bo_gVT3V0imSMA8gWZvWcFWAAdxKQm-YwPHhkrshSOORtYXUMkD5iETefKe2oWtdz9UPruE5ZdgP1gSOP3J_YKUzC3urgg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676052807ccb81-11478422','','','2024-12-16 16:17:16','2024-12-16 16:17:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41791',0,'cd-form-entry','',0),(41792,0,'2024-12-16 16:18:03','2024-12-16 16:18:03','{\"email\":\"sadikscincosk@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"n166qa\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAvP-6BhDyARIsAJ3uv7aB8dArskQFmsi_CH73pvhcUXbuzxCTFuxhytTsJF82hmXIsKjVsKcaAoNiEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7yIPo8t9HOpeDPuBV1czU59rJrapAZBzfBDrq4QNk3-HKwmgHhnFJKCJXNj1iZJlcBwfuuXNCkP3CVqTlmNVJjHSVzuWFpD9OhLWDHHlvB3lvJpN06lMy7Uyeap3Q-xelVtigOzxWuMA8BkTwFQpebQjRj-0DTcVMCW0eMIoFASlmZVf_N36tiaN-SA-hc_e2XwAQy9UOC8tMcVsQyUWa5a0tiBxcnTIlj9Fm4RG4T1Ut3x07O7qqzOXQe4itvwRQBbNDAQs1t3-HTue-SKszYFD_0bEY76RIRzDpZoWVsklkR6dN5aBOoTRl6mHSH4YbYdhqjIxRTDLVerm3YgryJWIAcQAfYuQ1a6Sa0y4Ha1gHH5WTJPATxNTG9clrrVXdmWXQneD6fC4zzLik9l0e7y8HkoDjoyOvT5FfxdLS0HyKK4rRN9w6TPFzDNCuni6cemxpFf03F7v9glwI3Lr-QIrAHgO2RIE6lCwo82TfQYO91bVGU0CYRkTJigehJfW-yCO1zNITsbcRi-AbBRm1_Y6Csu4QJ_xUfdGGQ54cv5KgnE9j-Sj70g3Cz4tyY80itJCbmhdu2_KuRPPFtlx-cRRDXB5XPWK2Al1Mzz1fipFwi8s0bYdty78dTHwWKWVwjj0HISNR0rXJlpLaUbBVox-waE1aC8ZhMLQATiCPEF4GaHGXzJ2nPzlEqn44c_yWXpLSkKhSXB81wMkOvE6zlqvp-XNtE9N2puEC5_Ad_03-XiNyV6i-ffu3kco4tH0z_4W7aAGJDw2Ah3cuMqwLjFpCexsRteHTxzA4vrl9HqhwaHjp40ZO4wgPUbL2u4PNu9O_slC93I2eKKsN9-0BX9NG8F6x0JJIBWTNJELMVIc54YG12l9KDZK-xuPSipXe3NYTlZceGHR7jKVdG56PbC7cdRbKU8-_zznCDvKQTT0I96Y_-EqCc00whg5nXiucAZoCCoLEBisnnjHf_Q5kO1heUVlN8MpENF3RBWSf5fFYHvJCJBPFNgYsWMPBEUkz2hFbwRrp-iXw7tdwuoQj6ZmSJ1XsWEaSPkDII595OrpHeycvymOKTb3XKCFJy-ivgWICeRu-zdIwg0V_r2RAZUU5DK7HUODHxnshIcuzd_3gOnx-EgoRyVYc4LarfsOezYJVTaioVXr1ha6Ls4W_cI_Lv-YokMVvC6Fs7BrQcaS20cHQG3ElymCCVDac6_IfjdnPC-Nc1UTiGnJ82aoOAAGy4T50T5tBKbJmQIXvf1r0Srp4TjjyGsAqIF56oJXlZgtGwuvE9ri0YKhmM4pcOYXBDUf9mBByQ5rItzSwPkkVRuu_DGZ7Qe5p10S6SctULYDTsIMCmEFBQSGvJXaSXs8KyrTbwB1nxJZc93ePtHWEKMGikfcpMBMazAOM6_BQcQ51tcg17qdPLvZK_4TY0XwKJgy1mYY5_62fC7FV8uUARETvVitQJauuR-d1hnOjfaIMvbtUEjKNwq3af4L7LLsaP0VNmIqqrVFbCUsWx4hYXYEWVI8BKNMO8V-bm_O-CpnK6xMT4vTkyQwL3V2mF7zbBRU0DXctdPU00stohjBKCcubqyqtSHUT-qWMZAfxuxCOOYthdusbkT_xOYlT956Y_uhchbEwaW9sqmruXI4wiaN4bzeUNJa7zLico5FF93n7-5nbL8Qkk9HjJfDGNi2jcGoCQCzLSip0xTGLnmQvZAPmb7Fo-bp1vNBb02FaDvV9CI8snT_1UXEWp1rdfpPFB_IeY29Hx4-8vmdqATGn8ISglHYdNbtIc2UBpih8Avsh4APzVrF9pWA0LYagA7hnR_xCj8vEizEfhKgSqVVMx7n5fAsDldEwatRJp5IQz5kXIG0MJX039Afgjm6lkFYHRdB8StHiPZurzyKUIVhMWr8HBrGJ5Vw7c0FY9rhws5MILbuROYwUvpEnp6gABs28L6cvZTYqSqjpuueCfCNc821g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676052aa4ba750-22826072','','','2024-12-16 16:18:03','2024-12-16 16:18:03','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41792',0,'cd-form-entry','',0),(41793,0,'2024-12-16 17:01:02','0000-00-00 00:00:00','{\"firstname\":\"das\",\"lastname\":\"ad\",\"email\":\"ada@dsdx.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMI-o6w9eGsigMVVotQBh0jjyK2EAAYASAAEgJg7vD_BwE\",\"recaptcha_token\":\"03AFcWeA5l5tK1-1P1rT91UV-yikjlkTKeE8YqA8PJRMVqOes4nXfINYNM-hMfs2wCBr53Nt5QDc628DGHHQs-NzzVd5Om9WDa_Ev358M5oLvxcNLCWUTrK-63lPfP0t0sXA7k1oQT58xua_0zCvHzO2UZKZM6XOKlN6A3m_mjV5p3Dy6lwGCTyf9gK8rDsg0OrZ_-HXO6BDN9qNks0QCS65KQRdecp-bm2-l40RT6WZA0DH3APS8clq6pHt1qnP2E3TLxNDZizWA_YnBsWzHVt58Zdo3aMQb9YeZb9mccYkbEOKfOfJInl_-7PQS-7OkE0caT0_3XJyuGbl0Mhc4h1BAQ1wXr9eOzKy_aDE0RrYi1gEo88RsmDo8RMHvDlRvAXL-7w0zyqdrH56vmaO1WGTT4mtgiHpJLTSdlLws80oRog6rPPKFUFVJ2oI2ZQcyKjs_HjCvMhpbG7sn5qQ3OpOi3URRQi3iQbezsISSXeVCHJdXmGnBP15mb_8mwC0x_M0TwHw2P7gSoVT4b4ApJukNC_9c8_175cb4nXpiFeNICFW969dSYVb9gX3beh7BGsWDPV5vxa_LH3xWUnGAcufq8JcIIivnyg4bu6Txo0WsvJVNirZtYCJcOr4YMP6he3iOjWGS9WuDEYsFPWcJEWFv1iikV9OAfWRYQSzTsCWTC_J7Hy23ftHYANHOQbeX-Soq2ViJbcZntfSBCnWZo5vxbqRy6-35oli-OuLDn6H1dmIwAHimGM3ox4DW1ODkM6UJMUZnIsoeXX3_omiJPHL_ujidY9NhgXlzfryEgDeZJ-UqnAKzIEaQtkqqqBBqv78Nvq9IYRrqU0JmED0dc2CFf4vJIcPfjTVsUyOXJSnlu7mqb0CW7VO4mX2eXN1Y9BpXzEWwQac5ZpWdiwaQakOtLUQ6Ee26F409GfU4D0FFkg4TsJ0QyrALoQGxoz81UoYAug737hZWSDu6BCyoWpL9pPCwwO8WK6QRxr4I3LakrvW-4618wyVtQiXPPIhPCfDUsZAZz1QEr4J05KzAwt--cziC4DMKjoD5AwtG-8svWSFYiVNOlQ06-9cluJhupm4dTUj6-urRXIdI9c1uelCprY3FrXXLIOU1Wv3sudMp0_eSRZkZH_Rj8AoXUIedUVoNqVkQmU1_ex5yh-TYHGrWFtnkGJXyDXMakYoOPk3JvU173usK3deKbFYtCHXO0HE29bffh7iOf6w5Wd7AuMElXVM0HHB1zCR4MWWFdGQ1KF3UeRKjhK9QCY6eSApivu_Hywb2kMKKR4QIE0HZRieFqK2L2rzr2mTbG5HdJEOj3XwCd-JoFiSzDLd4jqIa_FIuRbz3VLXrUYAV_L4hYMBFBNNkeCcKX3utj_frz5abKvp3poWXVxWOyTgZ0Dt2NgtQXgrYmw6d_VXzGUMePevXutOhc2QL4SLR1rvh8CTkJKDXxqXsFjjV0H4G-WJxl_q_RNk7ibM3EK9xCCe0yLXFzod_duhhrsj3tSD5CxALryB6GjnleUkORvcZZyfAsvuNNtBPEghef93DjX4mf5DzJzIKC0zQMsTY_8P-pjj-qDQVkuJATCwy3Zsccwm-3pmTkgvYeXdTst_NXMCmxPibPqV1xtpHT9nOgspbysXD4SWtdLBlrd3V9_KByWK2gayGMhZgkKBzEK8_D7nRoCYa2PkM-9Ymy8aJUutD5GaK4II-72YCgngb2uYaQ8N9ttrmYlRZZRsmWpyiKFzz9wDiDMoMkJ8BC0Z6CbosgfygeQ6SGUYmfw6fGaA7U3zk2S_dxC9VIrsCgFG4rZngjA2hbjfaWQLceSnuBAUrVHPZh4ydxZalbnwpgXJKd5Ck2B9xjRdJ4EQt45eQVXkFk_GxPGDmCNsUv17WpzAomh6V6SSZS4d9PoAfuTmbOfH3azQ6-8UgvDiF1_gQq7F6NhyYsRtRZjS64Hw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67605ccec78e68-30037339','','','2024-12-16 17:01:02','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41793',0,'cd-form-entry','',0),(41794,0,'2024-12-16 17:01:35','0000-00-00 00:00:00','{\"firstname\":\"xczs\",\"lastname\":\"asd\",\"email\":\"ads@desed.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMI-o6w9eGsigMVVotQBh0jjyK2EAAYASAAEgJg7vD_BwE\",\"recaptcha_token\":\"03AFcWeA4ExohQCfhSfPtNB871LLo1CNQJYTi6p_jQJsFzrueaxXi-Jdo0Mxn3x28gB7OFzx_KzJEEcQkmWioOKQfwejgOaif2T3yHhq4BuQCt2D59xmyesTaXK09o2P7S3tTjaiEA5W9R2Oj1D2_hWm6adNszRyhKfHqpeccPxArPf__SDZIu2ExhfR5aXbKASIrKZtouQnVRuDObZCt72JnQlbi9xANWRYajwg0RIQ7gUugLZQfbDAuwAnL5HloYa9K4JM42_c9qFl_dK6g6ia_9rPvHHBSkFzzDWOehul1Py3eRP9NlQ9vhw91JXNRnH6pKDysXyFxkk9Mh3Kg_CgVnMAOsTRuHYd53mezMYwtuFqkP4JosQj07i7s9mWZPJCebYFGXzRIkRjcTADw_HJF-pBAH9zZAhO83qdIQYDDPG5RYh0vf6FU8MzgAxm5Gb2zbkkmVVYQJdTk0RFnKB0iiT1KTaqMZA8SrhmYlGKM6F3cPwVzFR_kDxEXBr-Vn89G5LQyPoErQqKt6I6JFxSjbBrRCQS-x5DoErS7NSa-3yu23XeC-MIpLErul6mljcbA6UeiSGb0dikp-99MskNOfTfGVLQBGQ-ovyhvU5Mzfz0B9bz8YEa4BX-FjBsp4zan4DojkByQMikEskOA6XWi1_MVtCXa50exEhly6KAy-LzH3mg8Lf2Opcv7hB_i53ChjjG__qTZbE_uPlDkcAx4SOZGBFPaNH-JUxefDyRVkrZJTVEXBoWgVZ0CTh4tWKiXz_gOZUoWCIAtLEH9GsMZj6nI_YBjJUDvn5eTHxYcNdbjEiOB4XLyVo7HSjdF7AVq2BhkAzSXskKE5BrgSjXqJ4Fn-1AwgxdQ4BjrrSaohee3cfJMtGldKSfA6EajCCLgDUFTsMYMWMgALIB6kvDtXpRwiV4ryGDbIc0jJhT21D8Y37rfqI3ZTn9-VYSF36qUEeukpnBIs2aPBIW-rpwMa3L_Ms_8jUDFJfTGRZGmSQE__T26D2-uRbmc3TMJUnX4lB1iiBFbCRDVFjX88de5gCDm_SC5QBLPMkee_9Cl1VqH4kWk1xMEvcOOrcEOMomIAaj04pGdLo033bO3f_L-JhJAg5ewDci2pDd551V3wBEmR63Q972ytLhZH53AiacMGirWynvIcja9yAdhjygyxcIUZ3HLJKSThczysZJJM_w_kTHHm4qdh39Zspw_pFKiijuC9CvaoxVKjHIguLYWNBsTs1fwIdP__NCgMtVS84rVvLDvRdM9P-aMNH8P9tPMWtz4kb50I21NbMIl6RRUoV6hB1nFevVotIol0iqRG-P6fX1yfTkbNOTiELij11gPUcGqX1l6FcG5yKH_OP5W_zJXAI6eaAeuvGBMtulvG5ExJLCw4FGQVqHyhNqPQb1cCB-rN5HSfXhKyKVLCVlaujETsYdPB9399TVQJGZ-OFGr8RkEN72nmSlyYEnN5kYKzc77Z2xX-iMoalFrK3M9XIyyjuCaJ-koSIl_cfRurQdka8DvMMuSQfMBS4kml0kQK5MgFHMIoVZIzKWRheqqxDFdGdRhdi2G6pzCe6vYkkhxypHaIcOSwYu1LwQ65UUIrr3UbDAGBe6pGRwdtmIYy1JMzP4F31h7x9iccZM5kxHjGEavFNUqB550u0_57D1gOHWwxZXpuLxVsGUd4QXjm1BT2HKyZTTMVMUTqnHjqwuxMMNT1UjwGa2CUhCCkc2Fn8-2G4NB4p8DSBWBRoDt9K8MSWgTcveUlD44fap8Uv2SUcdbrAs8SY7Gh459_UKbZ-hmk4hmG28YvnpQzBvv8ixd-ItkOAiFPGBfK2TObrMQOx4sJFpBov4ieOKCiDIVfATiFaqlktWqFT3lCmsgv7SJ2fquzx6laTb5uMnGZU7A2s5mHUQykwI4eiwHvEt8QEGAj6gJDdMJuGpCFjVKwam0qp7EeVQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67605cefde4798-27670662','','','2024-12-16 17:01:35','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41794',0,'cd-form-entry','',0),(41796,0,'2024-12-16 18:39:44','0000-00-00 00:00:00','{\"firstname\":\"Nadia\",\"lastname\":\"Bernard\",\"email\":\"nadia.bernard@aol.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7liuumZhu_0mSIfLqecyJMDUUOJFcQqjpmcp5UIgVRZy-DSRahi871XWEoEOi03P5X3RXeIpRixyxIGmcPzrdeyYFu0pxOWDCCqoklBxV007_X618T591x83j_D3qfjxr-PeMXsUsYCki1UJCvMGHUVP93rtYl3hEzqiGolicqX04wr9HS8TIi-WnGgg5Z55RpezOPH3Bai6DAw9ochaJCMcUZMRqsJ8bwVOR2rJGtv4CzK1lZMK9WuyYG-IxtkVhENizjv335O5Ux7tvM5CTFQhA9edc5DRVYFwDsOAzHu9BrynmnKZZXQun_w9KMKoCfmrg9dAmc68R1iZLxuRzC-5OJ6fXHVYLbN-vq48kOz8MzeHQ3ouMsziTyAB40B-LlxEqgRBSiZt-ZIBCEv2UULUaWG6YVdRx38_bEgdA-xLvYQPkN9msg5AC2Y-BT97ODhztg4Pl9vfQI1_wgk1Jh6RyBOlBrJa8fm2PLzpbul8NzaUZd4E5eVRpBESQ9x3Xx30q1lMlq-LQ4r9ledmIVCSYHDSfOYirc78i7kjyiws9i5O6mIg_yIoo1pA9k9H3RLMj5Au73a0T89pZS3ENSY_BBJngMyNFa4f6BH5kXvhLsltLv2W-97sYcVkdjNn5gQvDsFNyVuyTVV1N41zgpm_BubZic0d3ZW9DD-Di-gtxOx4TrTXr-EYcjoiAcLRgxh1DreQzlWAGj2tZ37_Hnrn68q2H9_qQHxxdIxw8XzlKzZZpxUNDIXhQfNZmK4NRHkbp1l1Brh0lfXmjZCYMInhnSEI0AqtRusf9pCgYvsAAlPxsigOYcHoEyNmmmUBNLRFAlgw3YU_tHpE6wNwGOWuglpboZIWXHyxcfV0ixaAOX0YbdConJdEExVQkMbztC1mhjHeSrcQ8CQRVr-WK6CYhAXDRvD-xwrfZz8SAEO6hFKJW5Za30IBMcPDzaSTsMr1RxOqhcBrDjZAZ0ZUAEIWjz66-AxMGJso-yNlD2ms4nSOWFg9rKLUyWYR0g9L6hxJrwEl_61yv8ONvQfO4DdnQmrDE8nZtv2uDW_zUF9ypcN0Dpn-XVuMLYBWdrS39lzr_QTz8KA35pXs5UlCN2boEgDRQAsB6lvtAul3jQRkrsfY4SF3J42zh6jBcUJIk9WKQX9CXsW10JoaF1DMRuoGXOSYPyMIzmY5vMW0CsoNrcv6JoMBkTVHGPTe3yYCLtAtbaDXGIQk1dH6E0iN8r-eY-jjzZov3s5Qs_RNjGWwhMzU2vaXrP3gP2QchOUwvL8D5t9Z-4grWL0ytnvl9E21zNF23xDqBVjE06CFmM4RtWnVaIUVbB8JyuiICcFjoRCOsQ4y6lCQGBAQWNX33JX7lNvAXg-anlKmRyD_SThy-2xfTn0e6y8MCRhqWESwlkn9OCpLQPiu0InMgBmG9tSLtAYNkB48PBbSSV742D5b0oCyXl3Uenkgna5uDjUMsqhRsvZjM0vWIC7OvCmJFw-G6YtjZ3FAAh76nyBUfXwus63c2pFGceizdUPp6xtiNrDT6VdSBR89md-akCY6YVc325ib5MYiQ_Yny3u5QGn8qXlRl-8cGdBUQRGTJC7Yqy0vwgSWnjG4zUgMCMB3qwVxOwEEIcwjdWZCJzS5HHonUBNTBzIbTORCWjou1YjLKmNyNtNH5b47YWcIiHqc35o-R13kTvhpHBpefzY4XSAn_RXNmyfkuixV4L_c-gwldyYJhzHLW_pdQutsjbAtU8LdNXKrzC7Z5SGukNmHa_RpXI7UWefsmKvjcJ_ji_7OQ0dr8R_TZnwGnbwBq7FvBNXXxKC9-VkV1Y20WS73X1fH55fKrGToApf5fiSB-uoSoEd9o5hQu8kanJ3ykfCLrRHxjhvDbvizpRJpB1k7mhMgWPB77-WNdeQI53m3hEgq2S1Pu9TwgpfzcPxJC5WI6ffUmNUDjXfoccEu6DLyXWfyGa9VzxEm2g3TVDUA2p0JPFhsr-in2FV4xO1EzIp4tOS1d1gbC6lrnk1Ai2ebtfVdFyEqk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-676073f01258a1-67063936','','','2024-12-16 18:39:44','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41796',0,'cd-form-entry','',0),(41797,0,'2024-12-16 20:34:31','0000-00-00 00:00:00','{\"firstname\":\"Jay\",\"lastname\":\"Bell\",\"email\":\"jaybayley16@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6ua1u5H23bNqyBnVHnPtFjsJ&amp;gclid=EAIaIQobChMI8djpwJGtigMV8CwGAB1IKwnUEAAYASAAEgJctfD_BwE\",\"recaptcha_token\":\"03AFcWeA7oLZnVkOw661VL2xjWxSd5p4HSC0c09knA5gzEjmDpGOUKUfsnMA0dnoVDvsH4kiLDKmCBXzp4FP7w4kWVnLDdDQxJw-5GL66h0cz6bHlTrTDmMs3Ushfi2UoEoePChBcTQ8-IR0j13QBRNqedBeAqiERRlBPrTNLdIkRvFxTfvKKaG3J-wnXcLFsSMqU6ja2QiPWgvFjtq71K_Wz5vV7DKbShEc13rhNgaBMQdDvEkYR9WLzUXhCigEt-rr-Zk2Nk8XUUf6Pi6xhPd-HQjtgAGdvJc8AbUH_d-AywyZzejUOLNq79f8cN3qTISweip5GAA-x-wdxXEV-wkOE8lIb9LsCkTL9N63uLB0iTm41h5snCn5cnvomwuoWO2sYGXMjZYWDkv9ILAgqV1lSOfsn0MNALbwhQfNvh7hiG2izKXDKx3b33awISOJojzFRz9MEt094ci-wooQ5VGbLTTboEX1qN96fd-pmc6aZSD8Uda2rpElPnwzi_anHqsxPMoyq6LbsfMPGv4Kl_rk95wZiVrBCpE0JpwGNmp6iltmaaNGmZvnEofvX2rfiFhOnUYP1JxpIVrjJ0p5LVRoDx7wxU19vQFgYWll7eAkrQKzfpiFekvV2n-gLurf_s9HD9ZnjJfPdR1D7Yt52SHWNmmVlAnAhrx6G9YS5K6CGxm7BHbiV2rFi6wdj4pqJok8V8FMg3dcZAMfYsp_5rK2NzsYzuG_VJm8QkcYIWmqU-ydyxJ_O2uaIWgd-fKjKiE9vQUyV3mHfuumGIufeEzkAW9_XwYZXA6AMea3AGlbDjkjwjgAO9vfterYfDOVk-IWuo_aFmzVZFuQJh_wEo7MNSK6BgIsTdxgMaaJQYa8Jy0FBQlAzCuv1Kq-bp7WUWwk11SWzmpFxkZZ5zst2VgfMLmCb3NonX8CaJ6SeUGk6lyx1crsFm6Cq_YIR2Bsq2NeaHnoTAMTmEQW9upF7glc44fb9QgVgBtSu4rDgme1iEHlew3TztzTXZs2zfjeDFNomuz5l07xRzCvJlL9LFB2ysm9hJM_kZjOJ4qVjDYUDlEK3ju3BJw2nqG8hGYCGcDKG6Ia2-kZC2p5nYdSUQU3C0h3WBZ0YMw4Kt5cBvBzhzd6SqEK9iMBYyBet549mhoFxPyXvuNINEBquCfjBB58uvhKtK9NE3gyGjHyKtYAncLJraWSKSz1V7FSvTb7yBMWFaVGgIgdtMWtVVviBLduF-2n4XgcQ-zhGVJOzZ085RCfvDYFozGzbbLeNHIXoRPkJIkIjmWsu_eBeWfvm7NsQVqi-7Q_9DGsLSpjAzR5DkIeYODM20iVszrExdLRGboDnT7oDnzCYcEQO9VoUdn8f7JOjbX-rxWfqdGQGN4UIodTfj829vAhoZPsf42gHu12B60AU1Lrg3QDX2MznEEn37DCbfbrHZfYFhaxyA1FlR1Yjl_fC13mzsDPoqJPSAIRzlJKuMjTpO-BpSKFxxu0n2RplWU6nOjgXU6EEeoZEQwDK4T-8xhWa42e1-ci23LYgA9im9C6i675z83G9gmUfsLqtAUOsdzUFYQoQ83GikmtWkDmMaXiA6AFV2V5ntmrZ0r8ER4zLWqoS9LCXjgWDaASwZy6okhpH4G2_tsz3MqrmSuRZz7UU7idXSzaFrhN8F5KVuEDeb0GUExzGdpJVd4iUHV_jyAkkshTw2e3qSfWtOWbB6RMB9iki27tpsRhSRiFa_60s9Ena9qoLUgeywYrY91fgEJR2X8jLAAa0ytxvfdHxl1vlZ01_BDFcy34MQfkz0lJMlK0It3zqe3M5uUv4S94xpljJ6kwJuHz0DDMONkRStFA5OENzQeJNdaaBE6_SP_byxZIfg2_OQwPnJ0doVfV_wPMZgHamc9ErDRDK-tJunPfyN91KF94roRuMvYARPQOIYRwDkSUZ8HOZO7hCJPTrfKoi9nUvtHv2e2XJJlvnLnMX3bkE7outbw3FwlpSN104K1yGtaldiYeBbNih-Waa1JC9YPdj4fMuY8Sq3xfu6opwnPDebJVUblSMENd-6o_tn\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67608ed7addea5-53007579','','','2024-12-16 20:34:31','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41797',0,'cd-form-entry','',0),(41798,0,'2024-12-17 00:02:54','0000-00-00 00:00:00','{\"firstname\":\"Lucy\",\"lastname\":\"Brydon\",\"email\":\"lucy@equilibratesportservices.co.uk\",\"contactnumber\":\"07745995139\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA5lER7Vy4xLbbWB6J9fYeEqvRdJ58xob3r4geo-1nWqd9sp7F38PPY2vtQ9TA42fFrUTr4gXDNlU3mYR_6zAK9KQqwws0KhhA_vxAxqT72_2FFcl6O_LICluWtD4gGo-w065RL506fBPK6IMGGEpwp49XiwNV8om3Nntfpsk6O_Z_T88ALswfRkpsPBKtO1wb4t5P_sruOzgayNqELp_tjmJVYLEnSgjFurTgON5i2R1M00P68w0HZi86MuNKwNStpSDhR7lnup9kwYDwll-NLNZKqFe6wqi3po23719kKArIDgG27x4bdclVuRQjj4jYBy7ZrhddpL3lonMigDKvTmyyrtfi1aWFmYjDPeOa107kkjlAVfD9JfOHhWvdVgW8pRIEPVx8fSJOHRJUqdJgtnUvgGZw-T9_jPpC1JdQ8QMNBPlxQRE6CDO-U9JhSYIx9wReFI8PVHRThXwQE7vVtVRqd4YbtwCaLC8Ox8EQweyjMZONzvL9v83OKUD8OJD6PDaedE3TpKQMLMMslI4i8_7coLkFYuHs90ZrJqsclVxx0C_y9UZnsr-2CGgKwnp_psQbejcPZcNvy5MDOKGb5H0AmzXynzGfcZlAlRk8ZZAxS7oQePgHwsjpwX51sUNdeTqwXajPq9XGU6jSffUV8LdNyx395TmXFEktoael-2NfQ85N7LGePFGgnKJvCBIzhXZ4ev6oZzDbrpvt2j09YB4f9hiNtnRTz_jByUTzfTQqsBZgueFQlqc1qqtB2H19qWa-FmYWQaSO3rWOKNDYtV0dfYknV7Nl-aHQPu9J-FfX1M_PrY2ebPFWrgQqoXwpXKBYYD5_9gY10lGcDKkIwRYeyzJnUQoO6eIDhJ2bMpqUNgbZrbwX3AVCaZP3BBKeya48E0y8stxecbEDtEQhE7cIsEY_HDT5QvyN2i8d46FFC-5l-TP7ywwM7mt_sWLCpZvjV1xJWtPbyGKLBn2oTVf0EqTr7noColt6EJ-_ZEnO9qvP6UUwWraUtCdFpMF_sPRzCXajkeTg-I5gcgMpyRD0_z174GoViTEN0iTt_Pe3blHFxfDuiDtvpO43W_J1bS9R1cixC0oGe1t4pjf4D5izheinNoCiWUeEj0eC-LZaKUxrSxCVOmZyzKEYqrAvmWIQo6igTYH-6PFRtS_aMf-XDuCfL3x1GWMU6-E_zVoq8sJBbmPVgA77HSsrg0a31i4Bw0uu89yX7GbX036g8PKQ5IuFuv8xrYsbGcMtTEZf45zWC4VRZWjattBzIJDsx7w9feRj9ydnCHhgxF9oyCmHaFq7exdWr5JSPRyKJu0oC1TVNeOLSCCPCNdm8yNDdIt7N44-IS7DxJYlcLpCDqobby2zqsfhwVLxUbgCU3fj5qwFUvAPIvEl4XyK2jJ8DVA-Lrlub4HNaKgOqm6zfNh_rGLg8fENRy-1VziSrLHrNMZHwvZGZGvY6I41VhQbV4yUATOM_Ns8laKx4V_cvCRs5cE0mzkhjwe7klS2Z97NBgOkyiDnqatdPgE24UwQubb1lYV_uk0ivJT5GAWgr2NW5nsz4IMm2DcJZ6fNAtRJJmgD51Fv6ov1aMOrPBRsp87IcWTHkA33AVcIp8y6pBwtq0dXwO6VKk2KfhZ8DuUDm45A7m-WFPQMHf3Rw644fVinCVrcBfr0VhTJf3Bk6kkyVJI_QtPfbep0KZs-RoovXbfwdQTruTkAVTkgWpObWTfhF5uRyYBGeks-HMdC7PW9kJfrQjb1qnRIw4hRVxBbDEVLH6uNIbbAy_UHFqO8dR5aCtG2OvDNcYSqyizlY9hEgt88VyEfnezh51vETB89c4fvkwzAymzBp1iPKagVMaLCnXI4aWgGIeQv4C5ZcqfRgbm-gQ5tYVHag7YFY0xOYDKfWD12V_RuqXVBoaPD5p2pWvVPLGqclYtKD63nDm_yrbDwUxMfDDrLqRc3na7GZsy9jWe1_a_HmqalSRFU7os0MWZCZQLUmyQUjnAlbzuBDz1Q_FCoWWcsOYcKMO7tEvOoA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6760bf9d9d9ef6-80880431','','','2024-12-17 00:02:54','2024-12-17 00:02:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41798',0,'cd-form-entry','',0),(41799,0,'2024-12-17 08:42:44','2024-12-17 08:42:44','{\"firstname\":\"Michael\",\"lastname\":\"Course\",\"email\":\"Mikecourse199@gmail.com\",\"contactnumber\":\"07960058887\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA34S7BhAtEiwACZzv4exYehDsasvRJsjm0GArdiKUeJNPh_0F-tT9kQKDhhPx6VLbsx0s1xoCHCMQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5FtP8hHUJpNHJRtfNW-m7eyyU3nSEdIPAQykX2M6sj8AcA7E2OWAhPfs6nZ8euMkyRgNfVZ1Ou7_-xS0gJckX216NALlQBbdZ54Ne6o1mY6WQBrffvqXJGtiWaGrMlEKkr6LSyo5m_V-Xd4ssQvYha_T8r3HIMbIk3tbhebCYZofiBa7hw1nqPy0EfJqQXA1sJWv_ksQWIeBuMTH3jgtoOYB9EY3p0rK5oSnCgTkaCaQNHtcWGMyi6Md5E_U6vrLQwDYBscANFmWiygwKffznjCPuvij3S4WlaXMFtU8XyZKbHZO0kU8CwCyX_9X0qaDs-pbAsolhES_X8ICDToaBJLVlAd8ACDAtcwnJn5KFn13d6DJqmeLc5hmRfMTLErUDXjRXifnR64AwtK1JUM4X7QNheHUvIllQ0tOuMNasFxkqmjgbkjEXrOzL556VWKttVisL9C-se_hX92AyetkoRUbC-sZH9NwjxsWnot_KUzipefTW4A4xL_qoPNDM8_OsQqKsMcwXs0FtTV4JGrzTdaWcoKfZ2OdlZ3SCYH2y88VRm-Zs6eKbLOt0omrEtsMrHYoiUP509FS2QEf8CaXnAdWXeTQjRTmHraVezqKYbVWPnfurbTxne9x7IsIfh2qRwUp8GQmd7Vis0N7OZg0lnfU2sxpNh1VHI_6-I--6-h26_9R9weNjitKEizBSteLIyvsauxDekOrLRMjaaBx4dSS01EgtsBqK5B-aGz-zzPMttUElmvk2p0MeUS2PS65RQ2vr3BCx15OOqPvGSJgqcEVydkuQb_BK1GBICCEuA789nfBxnWQzlMm2g8Zfb5NTmTUBhaMH1kdezXm4H4nNkXmghu3f97u0QuP3rPfSaPtimVKOeqH2s32k08nB4Djl1kJXkLETnfA9te2O9i9XC0GtWDVKy-ccYKw4x1-nUs_qm82JtJbSPzZRFs13ZdwBCqKK9iv6ctZvXoVRUViwybr520fWgIQauhSf4Y0r34TdwS_j2vKYMYsNNssMohvIEKKpH43SM78K0jEIigqR55m27RbMVCfNtKbJqVGsBREUZbHG0Pf33EuiMYFWdPztxcYR3Ug6mFrmDTEcj5fC8G6NnwSc59q7w1MlQa2IueDgiJodxpGi8I9hGkVA7x0vUT6Oo3wDdUY8dBj3_SOhwr-PsXab8s9hXaqLKlnQ_Kr0q8vqGddY61xTuPrxpMSgEfp9s3HgMKiiMBlIQNdg8D-xTosver6n_Y1LUHTcd6mLUeSfLtFDMSf6i6RHp7Zs7TwgNprs1MaOpK3qmVcGSeXEV-k2-5im9QrUEg20N5aPYRBj2VLRjJ9HL8D7hsaGOcLzBB4g75VPxCswVEcKFbV7j5fUWLCr8w-TjvEb-oxqh8kHjnPter4FTfwcw4Id6446C7zKi1G3h1tQcAOXPln9vpN8j2Dfi5zBahZl8ODBCIg8Gi1N2hnxfokz3fSzrQyuQMMLcepVMQ5eqpz6Zes67tIbAs-6s_W_RDkXR9ZcpNlLEeuNl453Tw3bAsc021Exs89R-XwZJuKhnMsJErgr1O-o6Q0XYexTSGbfsynPLt9HkflImgvdJd3f7XBnEMHnSBSDz1doLku8x-0RFQwr07oaCASMegT0adf_e-iVOgnweq62lU5Of5708zGYjKzuU4YSzk6j2dPHAE5nrvQyq1IEcFyORF_ChN7qXEbpNCNOKJqlaIA5KnT9rl93njQnQqj1lx9keVpJIhVWpJ4Suc3DA32CqToRqq_zwVTNFeDtzNhPJGW7vW5TSvZ5YmK09dw92HVEZ1W0FI0UkfKnUB7xhkqadyYIyP3n5ntyiaBQrvrbspP_QnwMmmrMUyOGMlhJ0AqQNs-2cAqMupRTGW_RNndxTTSd9FB4suYIxfcXiJfeRz34g5_AyoDPqlCpVeTpAMgYIKni2bA-3pFh3PyU4G5o_sAT5EHCZQfTSv0FssEyfen4HMvsjqvXlp0kS_mwS_tWR9XKhJrmOA1PIAQxS_ouVXzqJepeoYXB6QfSU_vNTwtWSoPE_TGEoqgZ7\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67613974636515-97657282','','','2024-12-17 08:42:44','2024-12-17 08:42:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41799',0,'cd-form-entry','',0),(41800,0,'2024-12-17 08:46:14','2024-12-17 08:46:14','{\"email\":\"mikecourse199@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"E15 4AB\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA34S7BhAtEiwACZzv4exYehDsasvRJsjm0GArdiKUeJNPh_0F-tT9kQKDhhPx6VLbsx0s1xoCHCMQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5xoETFRQXH41O0ysxi_GviLVM42bfld4Kkzdj2yRdfaob4toeIgtQIuHdPVfwsL8d3-Ve0JdzNONkU_QJwj8FzZLvJc_0pIh8amUAYtUWeVLUUOqVID_Bzh4lphJIeo-Vt36_oZBccR254kg8k1vW42uFDK8PrC0gOEMj2T_7fRwdxZdHgv-Zx_7QYKbWpsPZWEtI6qqGcm9yrAR3gAtGqeRNyA8PuF6SdVNB51tDP93KSAYdIHnYLaxoBt_brdjMRCTu6Y3QfwER351FPKj58Y3q9XJ1UtnMdgbmxkO63r3gIY_j1FrJN225Z1cas1whsQgKP8GJvmhWpZ9VzOSBWjXWgEup7RkzjDf_HpnZiVjrUUJsCwWnZX_NFsWEwwaUD9TuI8IXsNnsmgluLUcn1zPzKiEfUxbnJafWkv65yJUxplLMa9N3v0-Nr3KDg4EIbn35qTFZxe1BJ4XL_-sGS8yoN1hVK8bWGDFur9ZmGQi1Rs1sabOFiEcprb7Yu2-dK0fHK3LentKDmN_jx1WOX5cvMkiXgJvqsGFqq6zSDhi3UvGodRyJhtnWiu0Yxy77EUISwmfsBA8KZjsTV5lLhUFxgqf4Kteddsy7X5OEi_Yxh_6CO3XEJpwwML4RyO4XswLZpnA4vyLZmLpy25oKPxXreAI2l8jBchzqCWWD7_gBaeAJuG57-keM4XCGHs86L16-OZOUL4Cbj0aqiDwZ061eb3pb_BfBN_M9eHNlv-8rw9A0Lwd3IgV85c7FEMIt3k865_89ZqhdZhdFhlcCsr9cqMfYQGaj_jE48sJ_Bkm4c6mfzV8BGH4iWPsNoVbQh3VeG6NOqi1vTe0SF2R28di0SJEPipfXnalf8v3qUXWmeQIc44HA_ESGDub-WoCNVuDSnK3FEB_kGE3hhssICnUNfAh9L6fhCTcUobtT3JUePE0KaDD_DRsWQCSYFbFhcCZcnBIKYGNNalT5wifQwYEioxFktCMVQ_LvPZS9xLe8_og9gpAF2PW_u_7gPIia6GlQHaPZ0D82eLhwHSCEV39Zc7pQ9iDODPeAmYygBzrdQc_1rCAl7pXhtdjf1GpSMFyoWXBC91Rkes_l7OunV9R2IzqAgJR3SB2mrRViK-RGq1GJGZUq8Im1EBZ3iSDlQ-QaJHnzjCM3BQBnSB3ofK_X8VbGgLbT8X3P75yXcrn9IxaCc8MsMpyAtsNF4gSaJ2QzosA_PxORah3sCkQTpvlwXZDa-XMXu74zvXU7k8tmktCEt3sepD_V_GGbCUQqt3IR9wbo9eCPStIAtBvVx9sNrahAGI3trY9c8YsEJr_8atQrb7vX3l8hsNmBoX-nwHhCpUxnhVptWms7L7HRu_u-0UZ1H73Lk47umPMov6irzDpgYBEpZKt_BSq3j3F6WBQ_jrRzoFRs0ujy3Zo89RXIKg0rIl8oLsJT5hVYKtboAnkawSiMrNX12ngavY1Lbo7_G9EeGvNR9jCA_BH84DtUGuzt6NH42lt3C-Qta61mqy408GxirPlSVSdQ1BW2Nrf-6iuvm9R-TkCAei0qlEkAjSofAIglKPoDwdMIFiMQZVZBaxScC7BrrTY0Z6AI7Ow1pNVFmk_1-FHYdyN3rPIXol1ZtVpoFxm6zcC54-AtOT5UI9E8BpKCuFkPo-jMYpb69AyEB0sy9IfUcqZTml3xsQp_e7ZC0eOFNgo1phhHEpgZr9SBfbYm8y-6MJdWIkcqDV4zJbW-AIPOzrmOcXBkc1W7p8LgRjOqvw1k54O82qqMUjwC57xjm8lftZH8u3mMbjJDdrK6ECzdyef7_xgpjQSn5nZ1Ze2maQ7lcqFqYYjNM_kEBiOVX9rJlg3_WyzbMndyOVgedyhoE38C2wJDQ6nU4a20i174ChBXMd24r2JK_DNzqbFvm-bA9cAmwiEu3g2Q9-DcfmT9Z1Pa9EhLzQvx7VLLye3G39N7Xzj0wnnG4OKAEqJJS-NQjKBgFmSraFsGoUeSOWyGCw1vpckMKwqwBbxlseVnNebUta0bBhN-kxUe5iC7UEVwRw4u1v_bH7BC5ees8X3_MNiNILWCFKA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"4\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67613a2eda5329-26200538','','','2024-12-17 08:46:14','2024-12-17 08:46:14','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41800',0,'cd-form-entry','',0),(41801,0,'2024-12-17 20:18:20','2024-12-17 20:18:20','{\"firstname\":\"Jessica\",\"lastname\":\"Houghton\",\"email\":\"jessiehoughtonfitness@gmail.com\",\"contactnumber\":\"2165132053\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/author/bioadmin/\",\"recaptcha_token\":\"03AFcWeA5yGEye88DFRhqXHfpckcy9fN_C4Azz2KGM_meqIHAylmmSaJowID8sPIgGPsi7g0W8pZnq1J2FeaUSGe28Drxk7RmU3wszpsJ5LoS_ixNmeWlXFKpV97VVjmRA273PTaEogJdDsmtgPZipnczNM4rqQSycTUTgy-h2Op6UKO1oIxG1u6rHfFSE4Nk-FiCOOcPLRB6XPwd_tvkznmT33LIp-ppHmkX0ovplbFZXil2vQ3fIykB_-WXswsFa9d6kDRSntIWyau7b66s8OTrb9xVqXL07Ut1P3SdpUu5nqJGhQLqPaO5-3NWkyOlVgYnXy7Q-5eJTnewsWj5Rn9fc0_3VcWbMPsXHDHJp62Gnzvh3w2DKFDcVgSnrx9aYIMon0lr1eK5yeT_fHjh1vcRbG_7Gfec8pODHNFVLWkI3xrcJBhScR-l-ip5NnaBY8PYJfCX7Ws3zPg6ZUK8slgYL0ZiJT60_XpeoEbZu4tjVvoYhNAWF7W2MZlTgwwgSruJ_1WkXcJwUQPMnpRcyLA0O4HgQVqygU-5GocXnCaqVo02gAdXlIqUV-vsDqJx2vEfaa2cv_Go6z4-IE2UEQ3KvgapMKdbcmJFTkjuO-zFXMEbMvDuYZwxAPhLCw8pLXjzUhuD9aAFlGawRXW2Sduj-CxKT4OzlvU1ri7acY7TOMOuBCT9DX7gus8LXLtGjpUKLocxeYw3Ht_z0SVEl4VeRhGFdfjXFkRHMevPpPmZRwOx23aclQLCcUNqTzvIfCXxKuSHTKHao3J0ZTOLtgWjILyKRxiIWlhiU1qI3RuJ7k5koLh1-sxhXSDK4gWrMR_DKtueuLM5_H6V_SBxQdMhSPTKIlsb7Vy94pvNZ3l_YdiagMzOZbKm_ytWBm0h_-742TY4LORGa2JW3lX0lPjTckYpXrsy5ctNsQRYLZHjEwhZOuDJoR13RiTWRaC3R_uAU4uiySoyOZ7nhuHgidHF65zbcW4N0C9k7VR2LBcr03Z3m9TDcTdcSDb0f9fs0DJAsosL9E7B3aOD_dySUmz4nxWFMuzzXKP-z36FjS7OPGw8eEnCoEvBF_3bhvM4akrRuLoJ-c86sQx1jcNTqX75MfCoKGQF8dX8XXY-BqUzhE7vC2N4v7rubdIYBtAd1yfhfcqs9TrAjBeDrOlqstEDEu6K46lxSScUPcTRY367_IYvTD86pZwD4LEZN-c5c2SUd8EoMbqAFrsAF3gaYPMe7Zw47jN5eujk0A6H6hOJxb0cM1OhaI6eNLyVll8uQTa65Hqr5jHB4H4MBEBlZkcygl0aH8HyPcrR5Z7dkcWFR51pHu2HqaX7quhJF04eVLBKXK2Xw5dK602_jkj4gttKkp4rG_v_OyezccfmkczgLMNwEKzcIvGERbt6c8CdCq_Ng5XugEkp5hXD-e-z620vDMhyT-bXk_p_b7v2ZvEqgqpjacBixruZcR11EkdV3LirJ6WHofTGcjJkHIH6kC_B5eYsqWRuh1DUq9UEZ54wtAMqoOgDwAbbSCxrlv6TZvCvQmuc8UudaBRthd9xsoQKb-EnttRXsYlzZADbDSlFkx-r4aT14fy8zcmx3FYJ8Nf8aQzThOD4XkF_ZP-bne2QLFqAWd2KmDpZVzItvzvtSJlUoltlLpvQV4hVZKp2b8DHMXOMwJ8DKuEkuQ3f0gUgaL1s8XIgjru-gmJNkevtlTqNq2LdmNokizm8W6-d9F-P0jbO_Q2gzCKTz_uuU_MnG4uyMkpmRu5ImNRqrKexRQzJK__wQ3XLuVLEvcnIjeIuIJ_JyO43phihnhx_pIDv_QJkD42nfspM4XBL2f2Mbf-KSs8wREpV7FUip43o53YLloYOF-6JWEiz9QiWJM6_hgKkWscWE-JYL-ihnG31Mzm_hKZOffIuwa0xCovjF2E2Ww8zvc4y8zAea9P8Bx3bSYf59bNexTQO2Ye1_dKxASDa6N7zns4g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6761dc807f54b8-70733194','','','2024-12-17 20:18:20','2024-12-17 20:18:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41801',0,'cd-form-entry','',0),(41802,0,'2024-12-17 20:19:39','2024-12-17 20:19:39','{\"email\":\"jessiehoughtonfitness@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"98027\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/author/bioadmin/\",\"recaptcha_token\":\"03AFcWeA6Wo6vVFQ78B67AGwigQyKXxy3tKl991RVJ-6rlt6OMlfvgvS2zSxaXS0ne-DN0-kKcZHtmTXTdLkHBrJaf-zChv7L5eBXoctlq7wF77abKn3jY-0FFvZUCBdn1zyx0hsDsRVTGlQdskt2ZcLIrBQ2bUCJEH2bWyPbPlACDaO1aOmvYkylYqLCJrAVAvTiZ_e8DngKM9TF8xCnyUfRyfklIf91Q01E27yQ7gtJdmBxCKO2YuhZGyJ0Kn8JgCMv4Rt5sYmQvjQTGDyT8usupIrw3KueKuRHpa6uy13vTAETWT-EgMQFcl9dTtkNnun09Aphb4UIE-Db0o9XtBenl5lXaJ96r_hORUtxiVKdTygKj_eIe5RPwEppJCfG_RmVnxWVZmzrTcYIi6aNJFT9C2kAVNs2jTGOrSu2OhOPG1od-m499VrPc5W8TWl-3H-s6xiXAjk7dhCE9Oz_HSxctKRefeCb-5ClZUdZMW9EOrNiY2kMH9bJ2qd78_Nz3yROO-0ib4khfil9fsApPr2zZn5MTn01aE09PKG2qPHjjAr3pmBzFZ4eKtbiEIQMN86gfkrH4GGdB0PLotbo7pXgfElmnMEzTRZGCr7Zpz5egI5IBbIpJly5OqgOXM5u--iZVl1rPFmWNTj4oQAq_6V2zrqM7FLOjMwVpeX0piIYgmbIrpuH6kGvU8JshuwjPso5d1zMpGe-u6iQvOseT2zUSGWU3E3vCtDW-36asU4c0nRi4Q-_ISxv-mT1j8vJ00zfS14N3qh2FflA7Fr0t-UrXaGaZ2PpVK1YkfRTLMUZrZ1ag9T1nO3OInsOnS2YYiBdC3J0eVaeJKDtq9lnCtitUZL9IzMpFiaYNuILoGfADqv3iRFEEZoc6WKIK5y7FL9e2jHp7nesSDwiFo7vuoTN_JBNaFYfALcNVfPXQcqjbY7LxNPHH5uo1MOxRrS_l58vPnATAR9inu-z3YHVjM0GUZ8S_BbvHIzp0aJOsWnsbQHYt5YjnmgLupPoIS6iJA2RoBjWpTuTgoEFZkqfGIynUCZ-OZO9TQSkZrn50BFDd8QWWURI2LASUnssKmo9ikRC-h5aYJ2kdJUmLcqgTzbbNoYQRCJvX8NptyTYVgvFrue9CqK1jc0d8XJ9B7hApoYyYCretbZr8ZnrIfGD_9kW0ZQQT-lm4bUQ8YzZmxByiLSC_a762TPBuea2-W0elt5co99K3O6avcttbNVYUT7_GnaD-L5z2NUUAdOauU__9ZPzWKL1YzvKZamKOwRU6Ro1lYYINhhkdKYP2E4XtAzxaIybqsl3_ICypJuSWjbNaWjFmJ9j3F360x71dHufdoHlu1AuW9ykBcDVWQ3zWLofU0IUhPm_jwqeNChl-QDWjngCRQiC5lzBw-Ob58d-vR8TnXrE1CcApVbvWyNipnrwtQd1rekVcP14YH4X8l4YRQuzrceqUUnU58KpzIyvQOOdt6HkxgmSTIk0qRS4TtWjINlmnZd0Uk6aVBSFabRgmYOgCyskbpofFsOO8mB5IsmSep7ibNSVK77bSpxnJJDOKhszr5LnOJdWPMR41KzO0fhJTiN8sYVpqfJ_s4RunIEYuPu_znxYDzX1czjjl-QPrpXJorEBHxAcQSU-e2DhKnZ2r8f9HKSw2G4iEh5Sj0gRfN9RYqXPZR4zoXM2UxdFoRPzTLaPR3yGVUC-9b4mFk6W4nYoKjqmCt_qzhi2b_p-xqchE8qIaQPpr-OlYBtdubt3-EgCKHYBu8jiyBF9-bUxnE5xqs1ROAJwArE2hz--tEGrifj4qBcFaXluPPuXUF9hoDy_x1AF24p5qfumwR_ukpOhATJxzwXdvrpRv9l0WvDGTpmTbcphQmvRxirhe9kNdiSAX6kLjU6jmbhZ1DMnuJNII6He3JwDMCkZE4SlHTuWH0T3zV0H6WOfjYWO-wf73JTdEqBZcmIBztqzn2tEPQga_3B4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6761dcbb96a8a8-37048009','','','2024-12-17 20:19:39','2024-12-17 20:19:39','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41802',0,'cd-form-entry','',0),(41803,0,'2024-12-17 22:58:52','2024-12-17 22:58:52','{\"firstname\":\"Diana\",\"lastname\":\"Schastlivtseva\",\"email\":\"dstchastlivtseva@hotmail.com\",\"contactnumber\":\"07944 331884\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/intrinsic-biomechanics-association/\",\"recaptcha_token\":\"03AFcWeA4WU9ewqY1SkD48J9aFlu-OkY-H20Q7cydoiD0iVc5CIIQrzgpMwHXBviHmMuApsFaZ_0wGSlwCvo6l7V--nh5Bz6fZPxIDZdCP3FYs5-g61MZjOXuGmQrWlhVokaCVkZA5HnPQy_7ACeEEiZ6I-IjmIjPfSecRZ3XoOKprSrStaZmif9GM-GKHWW1TOcaySN8rvb1NCTOXiCP7IB4l1fOyLKcwYe2TChcto3DkxdslRX8ciPnLiWGFVsfL5PL7XFOq7Mo1fqhu1gWLIyF7RxJZ5xZIlecF_5tVHOxoZJJ032n4bqbqffJg2zRsyAj9-gqR0bz03L-O2SgwGrbV_lQxTEXgF5NNnmJJxnARUMlICOlQmRu_iXa067fTQ7HNDwNTJPwwWk0TnMnnSRewDFfpQh2h5kEOH71d3N527tbxYDXdexepn312bDadF7ljmnPHEI3jtfBT3q3AAjo44EsCCfSLkeSkQjIB9szLZTsNAeeQyGnWnvsY_SId6Q1dMzLO7Y1w825qdw_GHM7q7M5diwuBMarwCQbz65s9k-mKxbeVkoa_mcRDEgBPctQhE6Jj72S-jLYua775EKbR1Y6IVX4u3VHJ9BXQ21QyPweK67sjazQ_14YQa1tsCWSh2cdGRaodeLqFTYOb0Ewxa62zq9y1g9DNzrvM-DMsJMmG09PGvxbzAFF6z0BwAmbPV_VcIQEXI6FLUya4_cuXwMgCSxgpAqkmWOMtG-UklKnNDldgithvla5PpbICzx4teFgeS6yn6PmpJgQnMkrWUt1CIYP_U1O2Uj916gWGaIrYYJe8hDcs59I9fyLHGeHcuryRAMyqliQjeImoxj_DOH92CjTWWFRAM_gOcE_ChTMItWubvYJt-w8PL4xIpsYkEPmUv22WZm24rddBt_K3ddeSyZCCrVtQ2sWUcHJaJ7RLQo2viwKZk7t-Pfq0lLC1hyINfpHM4868lCqWXF0O_32UVoEJN0T1VJHj79D9Ytv7pWOS86xM-6ocL6IqTBPjBFhItGFUUZsT6UTzkb9RruYCdMDvI8HBZy9muN9maPJm1YQ4UTpX3ehb-4ShqUOX8ujAchdB1aJbeGe3scnoASwgn7_W5PxLKOV5eUGaWc1a9RQnq46CAvYxcg8346igt7TQOflU1YnKBzDYHtQj9Yzb92STzZSXpO9NE_7TfQ0zF0_0tJYKEYF8NxRzYIusCDA-JBl416bXgnIBslXVK0cvv8WTH53vXdf77Xu8W_P3_g-q3z-BLqBeJjBbymkdNmgOeejsKp6p35HRRTLoC0LGOewXFMOM9llbyyW9U6-_EjBlTEdSKI5vIbMqDpzt_QpGhUV60lNvaBW7OaLH8cxz5wW3J5J3nYBiEesqdDtSVdJM3I3rgHBA7CJ4JGW7-K7eQnIWR0fs0nQdynnO8cBlX_txC_GpCI7ax3D9S2UbpkCC05CShBLwYM_X3zFm5S-lGU_h1iTJZB-pu5yqDoE6q5qN7tWU79Af82kut-njKgoDwYbvo1RWASgVAIJ8-WL1XnF80WZ8vhphGxRV5A0QRBIgMg8hvbsKS1HqqoXT-0CDWd1LFqlrfJLBJFIAaNMtgyiycOUHwQ4RMWH0LfM93sq3VE19mXZsIWovtOfprF-0HICLHbPsSrbfmEv5aeI1EWhJY1P1KxBzsSGDeJU3IS_qLFd4V3hw2c1AqLse2WYfTWIYdXYWeSf__YEmWPIawJ0dDXAGDzlpz6SOxLe7Dighlsb_uIpJB-T-K0cXOK6URVI4_sAQ8oOahLIlLQKCnYlN3kAbMsYCggoAWIVTxfTJu3RPeX6s-jZxOGpHiAaZgQwCWbJrYYJiPefS-H0CPUDyCP0k4gqPJzjpXEHQHSQAvxt1idViV_1i3EM0X4_WPsFfLLlt-q5GTUZSnDaHsBNbMQJDiRt1pMJ63_Vs3p97sPzrzbfqxwh0RPTSViV-iF4KzNgUdOuSO3s1DZJnfnQG6vT9i3KBndD2PZ3UIU-fLe5-xsXWmuGz3ob6hnIbgA28bjsQQ5q8YstteKvn250b-Q7zdaOmpXm_ZtffeeCOXUpyHQ99fd5b3oKoxEMkWZGjRk8G4KVhDe9xndJlAeO54OADqd5IT1-yyqZ0SljP41UfdNZX8zODd4NeDPNDSNAOc0muLopc2Et53En461oQ4jo3bR7RCbIpwgqufTbjVVZH99z9_fo0gXf8pezR5lVmuqsK7DdoQBbDmZhI57wKx0R0E6ofWh7Obb5hZuVHlypJO3jR3nlY-5TLfChK8oc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6762020f065760-14944509','','','2024-12-17 22:58:52','2024-12-17 22:58:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41803',0,'cd-form-entry','',0),(41804,0,'2024-12-18 00:26:06','2024-12-18 00:26:06','{\"firstname\":\"Holly\",\"lastname\":\"Keith\",\"email\":\"hollyiriskeith@gmail.com\",\"contactnumber\":\"07866570060\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA4Y_ydbfXciwTl31jaWRMUw4vmfABaDqWcmg_301h9Ej8u6SQcCPS4RD0eIe2dpyLbkDGZnr-1lVORlJ7sl63W5WiBXvAOdj5uUATZH2NXtN89cZJ6R6dHe503n8NsXyRMsqXlGpd0mA4t_5Lh6voDZ2EoshPVGCfym3ao6Kqn97VLnWiqzdMZO6lI2VMjQaUM-UxvS8YPXKpqcFDtNwT0rhhGyK2BQRsqotMIWiLljOQ-Nkknfr-yclTg_PSqI9gHWwYQaGzq3BEy7ZE9gil5N7cyizp0UnMTA5k6XwJ6znLnFJVqWDiyGciCmasG3EA9W50OyeFssnAayl11pMa13k-ZTlTmXKdDg8MXJlrS7ygxYjGkmgwVIl1uomDFHKPxO7xkyZLDfO6ESyp0RE5By9UWu-F1t_0t3OyNCJE_gXu37ZzpOSIaAkHMzDLOTD7HtPv8CsMUPOxOg-eS63lckYmcab_4KbAc0bfOJgjYYCnGSiWIZ-yNToJ6Ct3J7nOv4vICDeELhO31Me55UFPuy1AKuQ83DO6x33riq8w3ztX56PGBVhc2e-ejoRD2VZKjXVI_ejaXr9_Pe9WEBHGXOfW_rB4__70sXe87JbtrS31zQFbFkn6L50_9O1Y31exXosFjVUGUbrYolPN75Wb3-qEPQD_Fkw_7A7d5H2my7jatqsnY9tRcsjDmZTk30ErIReAdxTxz0MVhyE2n9Ix19W0Fur9yyqVDqF3v8Jy21O2mp6LVOaQ2iGDpBrQaf5blHca8giJGE_0c5Mg3F539y-Jgdb0XmXSrQ8eIZpyDrLRuJhOf6vcEjf2QgoQ1GeZ2f0UEklpYfbVtFTuA8dSaAzcVSd1oTaCC_nanQIwa-1JPTP-qLbSidfvrh6dIEGpMr2L4SY3UVxOHe2JvO-MKfC0birDbnD5sHFW7UXcJTljV9cMsTxm5_FHv-yPNAx-t2N3PjMldk4rKPirYxQ4_ZgFa6TyCYa5RwmK2k3fezzmZod2lxvFwtJy6ff8ftE8JgruiMlK_fDMcNiODGn7gJ6BwxUJaRr41zIVz-NvQRXmv-Eau8VGEziWxrx0BwGbixirZR2IlkuVqimrWW1206yGwG0hEOXwovD8kzyGTO4-ADpDNiKTKnNfH0ZCQ8ww0ymPOzju4kjqkx7rFEg_2XW337RDbOsHT9jKhARE19DTrfRtsz2cl9mV4H8snTPAzOSBf2jAqUjSEZGpvqrSPYoHlJC_GFi8_QXzzaPWhL0UhoZee1mAAVBJk-fTegeoiO6f3LyGBMU1TKCuoqjgRUjsBndfLhiR7FcRb8wjmBRSkGKp-VE9G4Rw3uksQZzaL564BzUBTywwVM0jk0zr23p4Rin_zSQAYrlbai-WRnrPBUsSK4HLNJnPGydbJXDEOGnxkY083aivBySW3HFILpGtn-8YPVxqJlOQAtf56L1J6yLoL2pNWBN6KmnE57U6NqP5dyLJWDyQTk_OnXg4byoygRAckptw1Q8pNtXXf6veBrGU3TFrrEvItDRmVjgzpi05Bn3GtRedaqSJN58GvAk_RlZY1UTSgOiq44V2-mNgF7g0FzaWYfu1wBm18XMXAJlcawLKU2juC51PvLqqbHyscZr0GKIXonqWsEyXOXDbDrWmG_17hHOT5xNhO9Ign2S043XZgUWyaURwy16VvARq8ZxHJPE84dHfNmNKuG-BFIdeXdB3sk4UKyv_f7g75nEuoUWfyy_4NkIMr0r-0cb8shMaqet71_J-zYOKvpDnTtgKyKRb_npOyAh2FLe9rDwfi1CAXYO6l-GECJV6X26iYVdCkyj0Z2hC9Xbm0FZntAYXIwUnIv--7qdXbSfB8qeuOtZkoS1Jkjd8SDfQjymv34c4mYH6ioQ9l406UzaFgsDLa5YVfEAaGMqUzT4F9ANG8N1oqGGLJVySd7LBbhTxdUcU2BRlydyKuI92us9PQ3ufrZ3qqbNefUqcC6jnXTVIBJJKyHqtHyCYwgS_hXQCCzVvyj3LFGasGhotE8zN6Z2z5sns11WaW2RyDIJetBIBO_\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676216821906c7-60795485','','','2024-12-18 00:26:06','2024-12-18 00:26:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41804',0,'cd-form-entry','',0),(41806,11,'2024-12-18 09:22:18','2024-12-18 09:22:18','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-revision-v1','','','2024-12-18 09:22:18','2024-12-18 09:22:18','',40264,'https://biomechanicseducation.com/?p=41806',0,'revision','',0),(41807,11,'2024-12-18 09:23:18','2024-12-18 09:23:18','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-revision-v1','','','2024-12-18 09:23:18','2024-12-18 09:23:18','',40264,'https://biomechanicseducation.com/?p=41807',0,'revision','',0),(41808,11,'2024-12-18 09:23:49','2024-12-18 09:23:49','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-revision-v1','','','2024-12-18 09:23:49','2024-12-18 09:23:49','',40264,'https://biomechanicseducation.com/?p=41808',0,'revision','',0),(41809,11,'2024-12-18 09:28:02','2024-12-18 09:28:02','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-revision-v1','','','2024-12-18 09:28:02','2024-12-18 09:28:02','',40264,'https://biomechanicseducation.com/?p=41809',0,'revision','',0),(41810,11,'2024-12-18 09:28:37','2024-12-18 09:28:37','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-revision-v1','','','2024-12-18 09:28:37','2024-12-18 09:28:37','',40264,'https://biomechanicseducation.com/?p=41810',0,'revision','',0),(41811,11,'2024-12-18 09:30:09','2024-12-18 09:30:09','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-revision-v1','','','2024-12-18 09:30:09','2024-12-18 09:30:09','',40264,'https://biomechanicseducation.com/?p=41811',0,'revision','',0),(41812,11,'2024-12-18 09:31:28','2024-12-18 09:31:28','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-revision-v1','','','2024-12-18 09:31:28','2024-12-18 09:31:28','',40264,'https://biomechanicseducation.com/?p=41812',0,'revision','',0),(41813,11,'2024-12-18 09:31:57','2024-12-18 09:31:57','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-revision-v1','','','2024-12-18 09:31:57','2024-12-18 09:31:57','',40264,'https://biomechanicseducation.com/?p=41813',0,'revision','',0),(41814,11,'2024-12-18 09:32:15','2024-12-18 09:32:15','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-revision-v1','','','2024-12-18 09:32:15','2024-12-18 09:32:15','',40264,'https://biomechanicseducation.com/?p=41814',0,'revision','',0),(41815,11,'2024-12-18 09:33:04','2024-12-18 09:33:04','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-revision-v1','','','2024-12-18 09:33:04','2024-12-18 09:33:04','',40264,'https://biomechanicseducation.com/?p=41815',0,'revision','',0),(41816,11,'2024-12-18 09:33:29','2024-12-18 09:33:29','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-revision-v1','','','2024-12-18 09:33:29','2024-12-18 09:33:29','',40264,'https://biomechanicseducation.com/?p=41816',0,'revision','',0),(41817,11,'2024-12-18 09:33:38','2024-12-18 09:33:38','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-autosave-v1','','','2024-12-18 09:33:38','2024-12-18 09:33:38','',40264,'https://biomechanicseducation.com/?p=41817',0,'revision','',0),(41818,11,'2024-12-18 09:33:47','2024-12-18 09:33:47','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-revision-v1','','','2024-12-18 09:33:47','2024-12-18 09:33:47','',40264,'https://biomechanicseducation.com/?p=41818',0,'revision','',0),(41819,11,'2024-12-18 09:34:22','2024-12-18 09:34:22','','Biomechanics for Personal Trainers','','inherit','closed','closed','','40264-revision-v1','','','2024-12-18 09:34:22','2024-12-18 09:34:22','',40264,'https://biomechanicseducation.com/?p=41819',0,'revision','',0),(41820,0,'2024-12-18 10:46:52','2024-12-18 10:46:52','{\"firstname\":\"Matthew\",\"lastname\":\"Levesconte\",\"email\":\"levesconte87@hotmail.co.uk\",\"contactnumber\":\"07854404018\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tQfc9VulSnIBUKC8fqfJ4gh&amp;gclid=CjwKCAiAgoq7BhBxEiwAVcW0LHJ7auyMgjOL1qais1QIHmEpZVlcqVXzBZm2LnII8xxQXbc000GKQBoCAS4QAvD_BwE\",\"recaptcha_token\":\"HFMnV4IQxcfAAdEWFNHF9cHRQQRxkQBSYeZHclbzsFMmwBWSowcQUFLXUZKDFxJmxQFxU7QRELMBEOWlpFHHFpRiMPfytGXn4TGkR9MmEoAjkkYmQ9G3dmFkNJKltXXVdWGwoNPUtjJ0pxa3xwZ0wzdlxFdX98aEkwJX5MIQssfABsUjYLCX1LGlhIGw9XLCJ_Jyh-KHluRzZUJH1TZnQSOnUCcGYBEA\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6762a57ef27531-06082885','','','2024-12-18 10:46:52','2024-12-18 10:46:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41820',0,'cd-form-entry','',0),(41822,0,'2024-12-18 15:35:41','2024-12-18 15:35:41','{\"firstname\":\"Andrea\",\"lastname\":\"Tuccillo\",\"email\":\"andreatuccillo.a@gmail.com\",\"contactnumber\":\"07765320742\",\"pageid\":\"40778\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA45FXLjKAtWoKtVT1nbMbBjoQR6DjCgy5ZfSBbF6v49la-DNQe2yNyz2D49RvxGYN8iRUWJ-ShujiF1V-CQmbNRLliJNB5CG_O-ZVeUcyGpL9GB9fRQUw6YpymbPqMJHbHpNso0A5d9GIPDqJr2X_5V2pTPTKSGSBWBbDr2SpDTkDghWi4jUP8x8VXANYXSwRS9plWYaRwlUQyWa3CifvH2Lf_1BlE9bFzIguszLLrcfl1OT9FJRUCh0X5pBwgZv2KuYQwQGc62dI6IJ8TxwUJAIPLeO7clWnUum7bLdmD9o4_f4qf5qC6OERHEyVQb4HgCrQ7sEwZhqorLkX9LeAATWWGOGcsalgCzsvmDJqRz7ZGJbrmBfO66PTlqepg9qRcHy4Ds7GUNogbtu-SCq_g2GU-Upc7Ov3a2DzUNVgFlpWIUO9u1_6KZLnbbhsD5VnbMmoQS9-tABNuoxjEMlmHhVxMRaGFErtz9wNG6INLNuEASM91uKwc6g7hzXWtMsoG0cjgORGlSTPRME6h3qjSn9NsFrXpZeQQS63_hx0KIhyAdYDQYELLFUHoLLOhPmDXmDZudxzQFzzAdmDVcIay1zZU0VHRgpeQkkiYlBSgVBQv9_sS4oHg_Ng4KhQJqm8UgZqw0SUfbIAF4EmIgLcdxEceUnLKxpxMgGmzL1KutKrjI4aN8t9PAUKtZWOa5haL1hrH4YrbwzgtLwY-hJqtW564Isx6FsWegjehatpmi8yq74K7FYTlSXuJX-Ac9i_j8au0A9TQlSYisTbZsFYkc07Fsv4iei8kDvuShxgnKWN5xiL_OWzZKMVqTkFp1kBc3fTewxNthbpqh_PVXsSZtMR2qgOZUmkeq9YKAP3zMAyHWvoYkCGaTAf_7jrE168yyxMkYHhMSZJrmY-QTIAqH6su282FHE7cyMwLXCl8L6UhAAlymJeARtuTfzj0OOSHpJ4Ua3L5C6XVUaDr7RpZ15Ly38DRCx3n-DTz7s-qH3nBGt0lsh4tWDWLwhhlOwLI7D0DoVkbCGPM08mv4-omQoZrrzRY-zI9hZRvdFOGS0mT2gyi0bJvED0mK7XWetwLbR48HcBXgOIAnUHtQqmFFgP08CkgEMdxqKweELwVCso4Cb9fcOsP7DvvxMalYOtbLQYdb110vhm2qfja25WQgQTIl3NT0DYqyPDPnOi8TmRIW1fiROWJg0VS8Kz8sfjFWEyJa12MyZjvfKgfiL-DfWGTxPQYxyT4WGSEqjQ1XH4yGGveOFcYaIWE6fJFV6zZGaOcuYoD9eFLw13WXtZh6jd-qwgGU9DHeggAjjSHv9jHHPCo04kwVz48aG2ziowESU6NpRHW7XKkD8KOARl6dG65sFpGgdDJzlHiobBFFlsOJD2zbvKt8dv1T6of4yDdF3OznwMpScdhorCml2muE1STo2IjK8JsylzwJj-XKwxViESfgS_FnHXLWWIO3TMF-8_IBNOuaZvSfgx4FNhvy8R7uc36gEnBRfIeYb8nscMhrbyOYu0a_bMKZlelrEKsQ7unsYQGRlRmhZV2PKAQaQc4r1d_9B9aOXNPmP98BZPv_l7OBS0sauixlhQMWa4_h1yTWBxvHilKBnF5BQVk4x6btg1h4K9ZZb3WFvBjfHpMAoMlYHEsO7bVj1VOf7XYm5lFgo54urg8aKNIlbfwZLwbCTHMqGY9rMMWZ9B6dN-nipl-_-t5JkzsY-K4GOIYblqNAMGScYu-K1i3HRSmPuYOx1ZfwcouP76YPUbaSLK7prNQ782RIpO6HWabsGrijTa3JeGWBz2_3rewuRa4QfHeZ80hT6I5chYk-DxOHLrDOvwbirINYq09_77DaAVshf5OI-u9VTkMbr9wHkxjNAXOrlAucFPAER-do4nukfgRMWEhPqtx-BsyNHiJbLZ2tclm6NNfJ1JiXWSW1omnsmtobbNs8YP7dr3iEvoFukuwIzstCgf6ppuI5FIDO1f8S4c6RZWPoNRw6VpbRE86wo9JwGA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6762ebba02f582-82128704','','','2024-12-18 15:35:41','2024-12-18 15:35:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41822',0,'cd-form-entry','',0),(41823,0,'2024-12-18 15:49:14','2024-12-18 15:49:14','{\"firstname\":\"Andrea\",\"lastname\":\"Tuccillo\",\"email\":\"andreatuccillo.a@gmail.com\",\"contactnumber\":\"07765320742\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7EzfOM9OqUtuxkiAjdc3fI-dKzB6aBZeRMSLfB9X1z-Xg8eHfqkTyMSfeLwXJDYkyxwFLAWEo5fdS7uqciX0NPd48eHBpmq53Yg3jF5iXjUglgqcFNf2PFKurhqNhmByZJ3btraQCOob9iD-SJXUxYf0sR5wjHiKbggcZWSO2IM89-G2NUke2_AAB3RmaHPTJLs7cvKVm_uIGeFGxD1tmQ8F2i-7NVmHRuaeeU24o5CvOYkoFgc3SoXe2x6vsKyarvzU9jlR8uPqITFwUG6XQfPOQ7wwKFILvH7hM9pgOh6u3ZQUyuyB9g7SCzKa_nLwoWuEbbfss3HzR5aOmN3JAgsFKs7xzzsBYs31yK8JTDdNO7Z3gDe4bvgdlrXw6JtaNaOvmoCawhXlVwFYffJEizgjl12Iezujni1pSI44N7gS-f1jrJ2e81RaZHtgn24PYRFG3ZW74J8fOJYwFx-MVJ_hA1Ot2KhvAkXDxfdgdt5YE3jXp9FBC1dCxHvT-kidovEA1K7ATjkRlF5P2MAsWkLHYrk-8DDklYX4KTSf4wvLkGyXKm0ndLXSGpK7rfsKOhW_3rhtcS1yOMRzOrinw6Nz5MUS3qyVacDMxkrD17e3zSFJdu0vdhKwUCi9nlxm2p3B7i37m4L121kifuhkTWkJGsIpny0zmSX4yZkt2cfIttF4H382Mii7qvpli7wMh69BdgkM_TAo6fQfokBENkmtJcWLre8AnR3ucGmIaVuOH8GuSFS3Z46iudlvjy18SbCLCJGzFmWoFH6povfN7oY74g-3Zoe1ZHxbYop6TEGqU4us20BMiaEXSXkSKIGgmDNM7IqZvYUbad9IzRLW49urwlO5JIMyL415zEt6bx54yXlh1Hp5ZhPhm88YjmD_aYVNVcVUq1xxtRTQy8mHjG798hMfSRhlBWfbouusrx6xcyW--Cq1Ei-3v5znEWL2PhJXR_3T0HMsWDEXNNZ0j7ZGMdUOShEBjxfFZIaYQxHaf2uMe1ZTLCoPkX3uJwIhpJKHqIvoeqZMDg_Uc_vQjvnrwHGWr6C7bYTeHEuE43x8GonGNz-tl8Y2kgvOWobdQV8Jsmi5Sxd1ZB-L-dWyUUHANxZGY7AsvfmSgR8ivHzohXtNBgLO3LHNkqJD6CLhDgeb1F7Rpm5ruIkLtZSmHk1zqY7MD21xFJASdAaRyTLS5jJPTxYS0qoxg4hDsLWSKWE33sYIPxqquGCmUsKFSWl-KWWOCGBdxFceTUp8zPZGA-uUn1rN2_01lBnTS5T3mym_tLr-rGj1WfwNRx4qj2Py9uPhwndJA-zsME3to-Oo5TyFPrA5kqcPN7E1G6ywV8kOvjDz9MVK7fwJw4VgQi4ECrYrmmX57CZgo2WUuPPGBtxFyLZPpT9kBXuJVR25o2iy8qvT7wprfOxn5KKCIeTX_FH-VyWO7MVe_ZCwd0jvI98u1OmyYhj_50_15_0pBQmzyzlXlWUdMy9oGhveWAIbANAJlb2aot6yE1bLzG0lcFDSnx0VWPCTg4_NizxZVIkvtaK31iMuuA9SJevoKYgmrCuOsZd_GXqpfjatAvNXJR6d8gCiYAJsa9GsdIjYZFZKpKPoCYifEA9QWTAfngpIu7q-QpB6Sdf_WMLMCESU8Mw5U0UvXonDX656za1GDPqeyt3TGmYURO4JhdjzHlaZlGtINrDTnafrmX_724mIub_xeRRh3x0Hgowfeoq7F_7h5DR7yYIuXW0AIVUUo2_lb2GHP1gP1RE-l2gHHbhOTFHF8bNNWKy6-2daQ9yd1OYBDqW7kfLM2oVq9A4xVxqOy2d8JqzBhyJzoL8ebLDMtupFy0DXc9owyYbfeNLKxd0LTiuazmqeMEQXH-wDfSTFX-jZHKyWD0bGJn6hhJkStIKNPe1nNQ0l146ZfxDN4XbmpUIWTDY4MDgqqBEFM_fb57M0-n-YWsh5iiFqm_unadtMOZu4iOjAYkbJTtsIhsyYgAdr_orZKCRXi6o8gAwwqrJQ2hlRteZ7uhHiStFfaVvzfYF-zhBcRVJj9B_TRTXHctRGlLDM9WuPB0xyY3e6QIKg_HgbyV9CCcS4SrRGL5FrLMQbVKmNOrq0C3Trr_vwCCVO7sXO04nMYCVkBXVccPvxGFSrwFDNbdCfVLbTBO3Sg3Go5iKDz_Zl2714Wa4lAkzWGsJp0pmnq9z4hDh1mH4e5lnjXOVHFYGccFYpvHr8KyUXS7L1D1er3_OnfRJ1uEZenEN1-Lgs3r9kxaDVDbiaTyOBcPMX-Tfvzl4TEF0jSn5zGwhjrg5lldc9q5hjU-\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6762eeeb4aacc5-26882369','','','2024-12-18 15:49:14','2024-12-18 15:49:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41823',0,'cd-form-entry','',0),(41824,0,'2024-12-18 23:36:08','2024-12-18 23:36:08','{\"firstname\":\"Sean\",\"lastname\":\"Kowalenko\",\"email\":\"Skowalenko@hotmail.com\",\"contactnumber\":\"07790588309\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7ozWaQy9gWexeg--rH1jAF6mQUnzD8DQK8VaTebvL2K5ReuKQZKpB1CTOgGxuqLimnmuBkeiBqsbVgEWz86l9brsMIb28UvpVWrT8pKakK8MR3M8HGyCb1jgTRMjkkcdHn8Q0HgZkujpKQrTdD-ZhUaFDIKAI6wphWeWOFQHWeTU9Bk1pUSEQD6gPxXHbw9DaHjEwcqIveAwU_wmUyDncmw4Yds-oowryXsIu6Gvo7S1d7dikXELyJ8k-WuFUKvOE-Amn6qTyQ8fZ0-9S3U4VWN0IhiDmyf33hEUKpmQTQ8q2nCbxOe01rzBz9HuxVw4ly3X2OP7PsJ70P8-o48J2e2CDkGv4jetZx5mIILGr2z25TP_HZ0BlqwOUYm8VHUu4QxElHwZ3wNAN7EYGdvHD6E4V22gxfrzH9YadReZo4CieGRA2V8NN_-rHYhG25YY0Oo8qcnMiGZz6pS2CTBNNHwQkXI3BNaoSergj-9Z74xS94xtWtTZPP6tndyyGi4ZmFvmLuVgsymszKNYUdu5ryNkmKjivbS9VLPFXZfuiF0JCSnRw5lmnLa6-98JpPqkgosIjBS3d-AV3t3eiKzHx-0xXQY84E8rgOS_NISbD_ZytPW5G0wD7F1eHeCOafZp8bEOBcT_0TC-Mt5VjJqLyonjeCkZEGvy10sSN8BbglqYTZGLggqzGMKsBHwsmzRcRCfI5j_16tXKfNXOH6E8lHFHJIW0_emahsZ6bk4giy81ACqax19LFv-LXa93XYW7y49zqEor__-apK2IfvWaP6tT6x8uwZhasaJJXeS7tqptXI2aPYH_5sDhkgTZhqk9NwxzTALi4t-2S0JP1oJTlgiIihgCK_uX_HaGGmGLCjyZkVGoHXirvnC5cC9B7UZrVsBkF6dTONZUE2b1dOzQIGFWJ28FDNzROtVIlkrTqTXWgij9xtBvb-eTWhjA_KAGR1i3vIVykr7dhUsNh4Vg-FdGFQX3JUpjXhXInAhsAYEIGmD2e8FDCTOIE-xwq4EZc3EZpPfYmrRQmqeUVnknyUqtoh-UXns2-TaJdOKpFIOjEvWUwgWCB-90XMHe3H-7U_37MUZ6LpbTdfwUa8jdz9IIWCwv-Ucrm4PwFUEP8RqBJ07vWNWCbbUBVdct1qoMjmxENJj8nSec8kNTPHxxLmG7vvCkTZPEndW_unDpe1JalII2z4gLkZZBtPaXlgtvxpcHXLuWa5b0jWXnSmlTOcZNqOUT77wxRt0PWHCF2Wn7kM7JvTKGcEXxcVToauVt3fy0SQboCCGRtnYkBzMlum7JORQwHSXSFUvU0pmUcxD1ptt_fL8JjQ2g5lH-fy7TOo-q0knHgwpqIe72z1zWCZy2uDwhjfcsn5CSRzD_B1eZG2K2sic4tc_qBsCjIIOXTiq-FOnFwIBvUh3AaDLM8kRKWENrv_F-jniOektRF6_sP8841A-vxasdC3TmImZaTHnxERmenPRWcjoYP5h95NTEMnwo0MRXPgEg9xTNggEM_FF8nRf6tfOearxv0NQUZ1ePmOO00OBd9rjKCWJGQzSeMRve-wHoAx3xcW8o7siHK9tsMDIolK4QwjV-b-D2psaoYKg_Sj1k_VR4qEDX__VeuIEhtJjgFDKlC2hdCp9TE199-jTQcQF38wMg8qb4wrJnx2EhIwVwjBYiVzSnzFfhSsp7Pwi4xWr8YKQhgvblxyc5GOyPWfqKvOmU4Zz_8uUV194RocDgmN04dUYxGQhRvOnR3ZiY-x2hD1Rqt1o0ybFicz0lwshvukWfmi9aXBZny3PTIQhqPeBl2jLfEdWEqV84d3XYKE2aYkHpbBmXb4bd2tCqB4YZ2AhzF27UZavF9vBV7Taly3kMpOrdUdo-GD5K20vjncQSDIZStTysphzzwGgQbSR-RSw0jzwCK8MWK_Il-WJOF8BkoUSDD3c_KwJp184cdYJiQUR0IDn2iwCtVqMVlubG-VV7bBp3Gq_p-Qow6nPsCWAIxghqignCWMEnnZ_AkpVGPDgAL90cISOYxm6q3tQ-ozK_KWvBIoW6BnSytcsWsTCx2gSCl8ysiU0t18FtBopvrgLwt31X10Q9VAEYcT9-MGTAID5rnfoVXk3CqmF3aC52BKsSYeiwdPqI2b1NapOD8yyt51SmcCuEsL_UU2sfGxIAtMHuHfopHLwBmIPKn0cFsmVPihEwVwoUPYnwul5Q0oub6GPPXpaS8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67635c52e949e0-45561805','','','2024-12-18 23:36:08','2024-12-18 23:36:08','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41824',0,'cd-form-entry','',0),(41825,0,'2024-12-18 23:39:15','2024-12-18 23:39:15','{\"email\":\"Skowalenko@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"1\",\"currentpostcode\":\"NG19 0AJ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4uMsxPQmmyha1Qp5gfUfJULc0jcNVhkIkAe-ZlC7zd9VUIeak83mFVWY7fVCiUqNCoHyAle4WuK1GtEFNBpQ56RDAvnAKFmeyZo7IrFKcLrTlau9J1jR_r3lo5ceCC4_ZJR3dGVZfgzn_wRYO1QjME_8gq9x2LbDknjQ01vFv5xKnDrt6AyjuY6q89hhxXRq4uamCkZVnidMvAENPaASUhXpyi5HgYTKwNLWsLV2N-jQ51ENpNvmP9Tl-93bL-4tGa6Nl7gp-RhOjv_JnRkyxUYwnZEIPoa3zEyxbsDMLrybIYhy_NOV-IyandOCCQfxzlgm3vXzxkx0JKxaawgOjTx1jSP5K-0hqGCEPgGZ7SVtjY6fvE0d6-ENDtnReRhjTQoSI4cONsyeLlJg_qxSMDgy6cKnEP0R_miI5Ss1DNEZ7cMCyrv4HnNa0US5Jg5_tlfrfcqftGOl--xKvI_rPNmO2br_gSY1zV5BKR65e-7kPj2VbMC5mZGy2g_0wCk9bWO5j3FHxzPPWxz5RvkYVrzjrS04le_hMZfMISRvk7iP1a2sm-7M5HTnhzaLqThReVsSfO0HxahKFGNcgPVw6Ey2cQX-nQUszaOo_l9RwBvF5LYybLB4Yg1SBFFnfYnIkGeMHd05YTq4gY-UJ8FLid5WuFeAQCr8EVwIUTeaxdUY6jYN6QxEDoJLVZ8Vlji9ZKj4O74oix-1-JGZBcJ6r_DE7VMztNdOxrGMEKvDsU2yvkPIC_hOHAEXN91KBpvZnd-ASySTZEAj-ueicJ4Wnfs-2HXOIdYtC17MD8-_PtoIX0OhZSKdl64e1cwPSiBwIvfziL_eZYm9fUbAejN8gG3pKjTKp_NMwg_gD9S5iSb04NO2KkPgH7oRaA1cLXLf-i0rUz3n_cz2u_l_EdtAReAxPYNwXG1lTAXr_aZD0sqg8ecdqnvXLI1T7Hy-IC5nGUzG7ydONJOMx1NJ510b2ruN3lCwgwtUgghW1duGwaZdGVhWNlXd44ZodtPL2J2wVc93Pev2lunrtOETo1QAPZV9qGMM9DYsgSREIWHVkx4BFTlb-8g3Ek3sAELluqy8p1421e1jBaAQ2wQxRdsh_Jf77qGdrG9PNTW-8LbGPf5Q02yfpNoW1Ok9f7gCXfGraNXZrM29HcdYBQ7cmQxUYENMeRqFDHl5epGGryGw3aYTJL7eJRgx4ikwRrOX1Ogwk-s9ezmsYG99MRCl1WmRR0a1i51AlC6X48RLwdJ1gyysnETyaFKRF98ODlo07eOiVzkOS-_PLiNVmblKj_PeC7XokK1BEKth6gYLOdXavvpcWeriAvxXcPIbGc3evaz3pyFYPrXOY0TZbMBLKHeNzvEX2PCWzbOck_Vy1yUsntCXNZMLXPteKH2nGpm9W2Gs2K5i1_V6J0QIBrdigmJtfGSe2nYmFLDvpYL9xm0fBOuYpnYOUADdJd6zCMpx68y5PXmfqmXo2s8M_yTQ-LpeDMoMll2a59PJbFXVSJZY6Z7hIZ4lLNIyQY6K6mKsNYMWMi1PeVETWX6Ct1tvpXOLdVp9xVTH6JWfzdQqvfOTp3iU_foUCysgd-W-dWkcJuWuf2uZYuG1yBNlHy1Rp3WOsaZgtwveENfA6_zWz4D8njONqgdCbqkKbl4B5eFhcZPD6XEO7hC59b6OHZ8JebmlFb0x42pXPopqDhOT4mrhak_p5ndNIw8RYpGl6BsmQXhtDaYkdCoSu7NUeZjfG6UE2JlRmki_VYbf5Q5TR79m3ZIcji3x3ODXS_OrrjulIWUQxkHhJpLmupOHEe3DftfBl44epuCmThogwiV2xaoBE4qsUJ6veHT6rZBcgcyLhs6GTTb2_OKNyNLjl9VqmvdKHLyKxW134Geem4Cn7cTgE5IUuEToZEUoMHtdw2XDrZ776MT-nBsmFGSAOoIvy_Sys_p9ycrxyFwaEPxhTbbnu76s5eHdFzUIyu018kdTb_rGcH3QtCfFVBRWd51a5rNLvpk5vNbjw7WIv1iU1bOP9uUilDk-_X06PdNJDN8B3NpZ1pF2IsDEhSih2I2l0xAPHZ4u7R1Qi_1xbG4hU-MsaP2XKwWeWqUvouriMpb4dyZCib1XqpYEETgI1ZFJA0HI454_Z5mpTMUlurJTszCa_MAWKWRzLBS5XYOLHI8b8m764H0vM4GVZ9Y9Ii4FHm30NrQZvaXp9iRJRRngZlfbfTazEVMAM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67635ce642cf80-43393924','','','2024-12-18 23:39:15','2024-12-18 23:39:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41825',0,'cd-form-entry','',0),(41826,0,'2024-12-19 14:44:06','2024-12-19 14:44:06','{\"firstname\":\"Barry\",\"lastname\":\"Craig\",\"email\":\"bazzacraig1@hotmail.co.uk\",\"contactnumber\":\"07810025707\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7O4BCSbWSJGt_LHCNbLk2kdRnH94dqUxMjZCZM26UhaoopTIlWU2T8tHj4uIhkzzsUsvHzaFYygRQBhFFRfZs3hkHQGV_h21Z99shuflnj__OhiHMfw6sDVDF4uXW7Q1s6Ay2H-1BDKbpF-5kWV0jBAwi_tiy12H9Eh0BLW6cEIo9i3wYG0VLAqpasyb_mfN2EbImOuuB2rqc4mPzH4wiOObTOkgnHSr-I_ua9UBuVRGIA8u40vUP6Uxkf_tx2SNITXHo3g94N-8SaGz3TrdSk5dTODOFebl1_0XyeahSts-D-0dKfGQC1dO0VpmWuIYgXts0EbE7TL28E1pz_2DUg7rk5wqqSS7pzWnqn9fWYKebLMI1xODlcda0GmygERN5-DRiEsc1RFx2a6NllrLv01wYZo2TvmPkjoagksWQuavbjFkCgjUyNjjWE4OH_JNprcETZCaoXLYKguQEdzBXzvfK0_F0zGIGvVzLjAC2AB2HpMPJlLEG9J7rcE6jZm61wc7ycReQ2X9cp-BmPXpv56w-N4c2nFe9hMre4JYtsJRTKcl8b_mT1BiJkxjHRF_I3XRCX-TcyFhuqj1QdEG-80eAq6HxGIT0g5iyEh74DoWtwvbb1VdTnuTvXpQyMKueRHr0DUHpeYA5MPoWP0ZxT0hYj9MdSWGQCFHH6aBf89CYZ5AQizykX1r221cmM1ulVvhlm5fdpHgOmx0VPUY9zyvC4i68AqWtsXLLhq6Qnp5JQ8HhZ0HuZO1WriG3yOksTCivx3MP0nfpVJo8fwIjU11oYw7HWEGkA_eRUWMfqYre4oXUb6LyHf7JWExI-WCWqMkhvlRq-u4-y1h8-3sNcFupcU1LhZuHUqDKiTvbfG4x7r2j2aR7Q8F3Nx5EryGO7FDFjaAS9SjEQw9z7cCfkvC3JrIh70WDrw-AOPh9NzZnz_wvS1WQBFYuKeuCPmTwThR2fkT_DN9xd8XhdbP75ezQjdhpi-Whnji4hi71EPvNzk6BHrmtsiUnwTmO3bxnmdy1Fj2ehNVugGnDZhXVgfWhIbb2nhHfVk6tsT9gM0q0EIXcqU1jRJEdec9CN7EaOox4sYqq-Qch3k5yU1moYOG9iBnlFIslV-HI8GQJ-WWZeBaYtYxY6BL98K3o2sXsKFVPvPgcCeh6bacZUSChH88f1b7MkfbNgXBgiQCLatnGoVE6H3CtV1VIWDgMC5Q6RP4bBPKXzwG8BBv3iyYYzQr9G0lUel1jfvqZTFzhXD7Bp1JfqW5rVwGxkqc3EIzTaR9OKoWQM3FlECWgjDNNP2ShfqrFQIJ_Jvy7Nz_nDSBiFjY6ndz8UNKRvnKWSLkziYdOU2u7PK1apJODiif3Q_hxcl5kmyCq9wTDi0PyJZWCMDlrgwBy3rsbxYoC5K1habW6gWUqsUEJpMR5n5m90fWBnQoLfYI3U5-njrTofdFYBuTQKie_F6RQzQFQy5BSJhhRdu7Eu3kmuSKzapuqceeAljTCP9h3ETabz6aJ4AQ0-KQrS1fhHiEFx5k4AwhP_1LgCkVcaUl7uFhyOZNYl6pbM3h-a8ajXDvHIVyLoU98EF1iF6E3IHByGaoG3Kf4QZn6Xfj6Ih5EpJo-BZRXe0_0HDvX9gxky0zOWK1Zb41vY7rI8lnvXz05qEyCXjduuoYKCY4EdSzjtQyPoh45eFghM6CkWFiSZBbvl8J_uX0u3zDTeVGTik1mNWbEZtRheGUqqyuX_P2mBp-V8bM9LALSMWm5NTOGruAuG7rbX6UUf4vLOjpXmN-pVNvzW1IJjSpVmfU163MxrAfxE03qKakBjzqk4olN7fow4vJCiCAlPTsda7uiqUREAm68aV-0P3KdbXObbvavCRE6AbzymdvZsgPY5Q_QQjG1EF30bSsrWoBa7cZgIGFlcjZyuSHz6JRJW6d8J7QXym_vOA-83JlMTc8eZEbRf1u2zc3HppzwR5yqvsa6p1PFa20eU8l0qYmNY4V6F9UmsdS4cNG-YLDldb2WutG3qbv9AXdCYpmn39Xw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6764311e4c4d21-64653048','','','2024-12-19 14:44:06','2024-12-19 14:44:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41826',0,'cd-form-entry','',0),(41827,0,'2024-12-19 20:59:47','2024-12-19 20:59:47','{\"firstname\":\"Mr Michal\",\"lastname\":\"halambiec\",\"email\":\"10645976@cityplym.ac.uk\",\"contactnumber\":\"07948568146\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiApY-7BhBjEiwAQMrrETmJFRQa7kGoyI7iCb1W09DGDMLxVhJTkZNAUKg-DQ_JgEAJI0-U9RoCi2EQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6eC1nDzr2twHUa8XOvfKLMWEK-TqN_xfLJWlC0xofAxgQMZ_laqk6p6t1IvWyVdLrTmzJI28jdC_e8mcNhku0YjWOhBMrblzNOWEZ0A6MNHkasu4ytXnK74x42eLglXYyH2x0JsJxfDY_HLKua9H0bR7KMjG2_Moly1CRAJDeQgetIp_9jnRvHX_3_IRWNW-K-W93uQESbGLUQJoObpU6PEiuWk2oi65zw4cnKczzYGB4luHbt69ySb_7gg8GReX71e6QCg_8-f84cNxVJ4nKaWKlISkPp1_8xB0srdcN9vPauM-UkSjg8UBE0pCSF9SxOcM5BrIkH5ZCShIznlOsxFjsAX3o4zeDszHje2DfnrBQ5YyKw2ulGtBD0cPsQ2hSuV5N7gPqxEV6AFdl9IEGWk6QpQd4MDV2ncglLRGGcwYrpENVoT0LGFYzgW--NVB0dl4cdx8p6da0eJKyYo18H6m5_YvoWmjVYtbw9c4ww8znedfGuy2_SWATKWsHeHiBxhSaHeE6LLUsWZVRPZxxFOLnp8FvfsaKKngEFXWZR0XSDhk3bz8xeojiILK6Mau_jXrqd_ZAHVv2ADK_HpeyCx5tCrI2tqmsGyOzvU7y49gfSZIUE1BxS-HxKbJ2CLa3ztwELfB1Ez_XqYFvYTRYRfcZ092QNjnys2qsRCuDQLVPk8GNZmU02e6L75P5othdObpc4oQJIRmBhMtZNfqN0BxjIszh4LAEzYGJ_J85q_vMETik-ymdW3vQHozYRCW0U2lyr_BKejn9tpXXqAfgNdQ_UtdOaMdSkNvP4wYGLTm90qpu3JaftYDdGtoFSP77OEbwYTosFiOghPYxXMQCHg_wXa0PnazmoFN_HQDyr8lsjhtRDO4KynSqgm--tBLc9BRLnbMnFFRk1xVOVWH4cSHJqPjZZcNLXst33lBEH3GqV97AVmFS0VSG5u8HAHfSyFVxK6xehpfbM2zhY-9BGTAN9uToaLNvuSusHWvE0_pdDdN740WAMn2CijAHATGek6bE1DPntOp8F6cKsL1WvtYa6lbsAFoaZRGPcAGXBLR2oj6lyt8TQczqJLiSUmP1mmoXmFlx1CUKFa3jh7GQWiZ_i3lW_1BImtx7NCDZY_y-OtObVG_EU5heV7O8plXAgQaWwV8jzO0oJejxEN8RG2Awq_-M232CZFPgZOo_i12eEUkozFpPnwfrPfn2Eb_mmDrBJBCo1rVhHhcyI7BIQLiJO9NBw-tfRPJCLs40Nv-RdlbBicXxeBjqaKanvuZ5O8150D-o2ftwRgjKANiPwzenaacdLKjrn4m_KYYGd-9-KJbV5HKeOhsCwcgV7-XFyyCTeF7SRssS7Wnp616_DRpG62zRDEcV04VIJ8tJir8gd9CMExb6XNEPSnzo6emB46KsmBcttlsVM06kX7O834V7E6D0a4msuthBt0-T0gWpeLQDUpUwGUfWuN_7fCBA0t_ul1xhejHFCbjjk6-GDLYnel_oNrT9mw5Iz8Hlb1UiZwS9UW75VxeIKePONMilfPrqh0LJjTfOcK88MkELESN5CHxzw4Np6ryFeDCEd_q7oEduwNeTAxLFT0-G6hPA4ayeciYLuA6Y186AXB1fPdngdMPQd5UchbYmQ9dGdCQr5aLcEOyJGJ5pB2gDQvUURyxlcu-uDEGWddKkcrnH63wj4-0zFyykSfBic_uh1OyPrWcSN9FlIXTrzb5oYQ99XVDGNFzLNL-TuafHoGT0XVYPQyDsPfYeAjAJhgGgTu07qdGBoGcfnCRXXsjfYKNtYxhENm3DCb_CbAGA09Qrr3PBhr0lFhiE6XTRJ5CyoOyBKYgC2DkjfMPrhjfhY9dKfy4xUtla5AW4I9m_LQP2Ov3IHdmHV77ugCVjZrKh7iEerS0hHnQAsIPzKRqSYlfNZekNcTtAxJXKiaPmuSVQoAUdkbMer52QNO-9pZLEBbCZlJ8eO0r_7fTh5hKPK_JjxWMt1-Rw5lTFiMpjPyzdHVppFH6U6DcN1xYCu26mSanfZaYDYgdCfm7HDAHb4sBzzRMVg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6764892dd9e1a8-73904752','','','2024-12-19 20:59:47','2024-12-19 20:59:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41827',0,'cd-form-entry','',0),(41828,0,'2024-12-20 01:36:12','2024-12-20 01:36:12','{\"firstname\":\"David\",\"lastname\":\"McDonald\",\"email\":\"dmclonerwolf@gmail.com\",\"contactnumber\":\"07999814837\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiApY-7BhBjEiwAQMrrEVrpR8Ni0io3IPKXhe1FEiNE483hD41KkAqkXcKgVpTwfKtkadvlpxoCl9EQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6ftuxe_0oi1USj2_y3J0JqBdxWFrOkJmfxLSSp06T34oO5CKAgwWqjhM9SyT-MbZgIoS6-FQ8CXqwki_F65VHjzTSXzMgFSjbAYx1gQhAW2ttEajRAgopOTdiQN4RodePyKPkZGVD6uTuToEy5wSuYgx0NlJUQK7NE_NnC48YjMOX2YB5ZynKDpyygPUQvuA1VazZ-rGAIW3nDtHA8fbq5YhwuzJ9qKehpKhF82RgApfG2z5dziJZUyR80pvkKKCswMI81MLrcM4XbSGPBLUwA9zwlQ1O4nvvbuhzXVbgwpklr6lliWkAJaYiVgZZBLGvGSXcEayPHIYHdoXVgoPhQ00g-ciBdC3Fq44owsEeFcsUkpt-uMqU5TO8rvc9hkL-TTK_Wb1fEFnLYXPBVs_rfgHMEjDlhh-j92-1hDIxpHNJ7pEdmgojoPlryw2sc_exZH3TQWtuoXtOdMYayrgb-Evh4p91P-GRHpo9eeGx_AOK8zE-Y1AqFzT60wUYzM_JR7KuiciLZFIA0H0K0cuKyMT9IDfQLTALy4xZ0Th6EAkYMU3DBK22qmEYZtg4m8fhzkr3R-Y5whDvvxncqdNKJlP6fLp9_drB_31xPav358zNOAv-ImvzCj087Z6elDOGffduXlp2sfXg73hsH03fPtdCJo-McflBGcN_hy-vk3AEmBRIG2EBfEsL5Uy0__0MUQvR9vBiPJjAX2-YCwVKLgwig27bl0itlreKHb_lgBA-U95J22zzqYZrCZ1038Goyf9WwImBYUT3pycJ9rW6rC93mBgeo4ByyhbL81SS2MsqcPf_3myKLGYNFLkFFQ7M0zE-qTON9BpsOyI9YMZF40sRjP-xy2Awgk7Fk8hZGzp_bGFLZGOETpEN9rqMTsCetK_ho94qAwJtMr93M22LzrpElhZlc338LwkD5r2AdVGaD-SXPX6OrFmH9ViO3iopzOgvKTcATZNe9UpQpUr6Wp-1Mt0NTJjPgH1E1VmxhjvwDdXFzq07GpTLDp8No1P2q99pKFizGY_Sb_MKdbqGEYGe7NBPSgRj_zJ94kj_junI9BVJhu0_EKh2_yBgZB3UbPsY6hxeU5Jr8nJ66_FWuU22bej8LFx8gePoVLZfC8toT5CuDfACSZ_n2Y9bIuMjo2QP56d5P9y9x02g-LTx5TrXFs-WK91uuyvEeZD9XZyG9RKH6oCUC34W51Rn00kelIat4b4REjzytxx8aspkR0BW3Fge3SK4cpzju0cJhZOXhXszmOOmllBYFErHCryn2Ebv8CDQEZ51jeb0JHNOZ12Cmd14zM6_BtmCy5jmRTQxWe2m7ZELywjUWsFxQpn3bxfbd00kfkxP-bOl9yXA8dyNj01NmCEFOpI-akVPk-7AGWjRYvCZofTSr-ZCyLwDt37Zh5PDgtzroqTsXpChRvlSBhV3m4IUL3lr6sMgxHmUvtyWE8791k1ASgMAo9EZK9C9tNa_HMSbBznBuDgkWfU_lgkkENJ3TeT_OON0KqjfE3yAUx5dzWhCw5wEXY7aG0SG56AZtmprMau7VFMbNkNuX98t1q27RDBF7wuIXjgI2KkB7kydSoLPKMbzv9bL2wE8Av0V-pFgWxUl_Scu1fx8uGMnLBsoE8k6ia6niQVRYU7an2SSBrdG1CfjQxk5B4vDqMxGRj1risw828UbuoaT3qlVJYEEqVUBI7uv6YjayYYvTdnu6S-4iPggHyCtOzFlrzuBvJeu64iYcpls89TG-FZxuQ_F_iSCUmXnuk1PfCoq1ROPnf5GFY2P0K4jit6S86sijEt_YndFKOQca27Vq36PrH9Z6XfC7NkkbcWNsTmbmqiUGOpAsE2Hw2rRrlh-011WO5nKDfSArCghN1fFgv7-clINEciqvIAZmBxCqwahJ3UzFrlQyX1M9GNS6FYaR\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6764c9fb428747-81902229','','','2024-12-20 01:36:12','2024-12-20 01:36:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41828',0,'cd-form-entry','',0),(41829,0,'2024-12-20 01:36:48','0000-00-00 00:00:00','{\"email\":\"dmclonerwolf@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"4\",\"currentpostcode\":\"B23 6BT\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiApY-7BhBjEiwAQMrrEVrpR8Ni0io3IPKXhe1FEiNE483hD41KkAqkXcKgVpTwfKtkadvlpxoCl9EQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5mrbfNCiq9C3M7-S0nI2UKpR51Us2MSUTshAxfQoObZLqlPzt2OPdfcoRuX8fRd0CZjV040pDxXAmRJ0lifqpV20tOTFXWyMp8nKVK2ENztPEUPXE9RdvuvxsvrJ0qJF5yYOAD1QP0-lzwO6DM0eUnPVb_T-l4ik9ZevN6J3CVLnaUKz5EK2hGWsfGLaJtZFii2hhO0FjEf3tGgp5FdQLNkHio7CwRwHepUNmRQ0zem8N8ql0cc267zCP9jz3I0ak_gGGVcyjyj5EkG8vKcCJbaziOb-5SPrt4id6WYY_rauQkxaoywdiRWB4vDKNDEEwwS_DtopsxTT3FyQjXYoVPY_DUEODD6VT3ZKDeCXQXm1qYnPvAkvzZ6_7CrVs4FkK7CaOmg04eUXyl21JUPBJQvwbYrqln0kypJ-rrxx1SUbR22KRSUGhBoQfYMqz3drk8agfaWZAIuroZqX6M4HzIw93IHJBmFG9ZC6NdFLxLg9lnGxgzoJpqcmuj8MG8Ye3LZrrRexQMm97NH80DjsEdD13_Z-G-9CN32lkC_94-ei54juVZRh_VW4vsbYx7W4Dn-qNEr2ZVccyHBY717D0ypz2_KstRAfS1F0ZA5RisIbu_jB4BuUMkcOJZDyjeGh_h-pNZyCdFPrzi1VApU5L8LpylJAX3jm-apDRNBXLAOGxWm_MhpPJrxXyhbUSebxzDSMllUaCMyMhzlgzi_5N2XXnNc53utdhXNhQrf7mk9NBPyzUlCBwFowgTNMa8ti6kzn1jsb1wEy_mguN8W4-ChcTQFq_iRX8WrEtmx6LPv0rCQTNXIiyXDWLs7zKpLOUD4_Bwh2CMtSHcjXeQNcrIMKWHYO-JOASKRy-pQH6tcGcnEZq27p24wfosB-opN9JMwyO7iPBt8ZoUS18q68XkDPpRhctvj1ilIxHP066PgFtn2Zck1-MasEizR0mdmxsx0WqhuXNw1CwtBwEZL0UbTuJLJpKP6E7TS-4yIcNFPlZDyL10n0sj6OhS9To3ViC4l7dZ-oi-GjrN1dILwi9ZVM3VO571AJ6Md3lp5EfuGttqHropagfRs00MXjKYNrQbGEOpS55vrjxES3FzDS6p5IEiYfM5AEsxA0cObA6I9wDNqaLxcNtmgWhQUbd-vKmcyU0oHhfANOKGXZ9_yXKXobAp1SuiR4PKhtrA5lFStf5J1l1sVZhhN7L64BVpgl6R3aeBDP4zD22w78HTIE_WXqUdutoYNHdpRruW-P1v9DC9iaIcOrM3nvgjbthb8H8mn_U81JH6PiiraXXD37L3i9wMu0xFcdvrXb_tqdiUuFjKpVPpdTOKLYDu3l93JkXeM4QLkboix2HU2AhDr87VQRiTz0xVzZS3qMxXLxX4IagqP0jvX-Ww1gR5UYR5gOO0wmvEMT8CKfFqYCJPJoHZhx-68DWPRha2oX18IVCjKQXiRQCgihCveNhPeF9_3BddNZMnFFwFB2FZYGoqWlNopBmRX4mBLZU0TUSQc80KiloOTdVPMCoff7Q34_ChctP7dd3TmWuzh1ilevESJS_DFDjX0ja9q3fwXsaOsWWsJaEFaUGicGc_ZBjL-DU_JjRJ9dzxVny8Bgg5SpNeW0MC35EqmbNtJx9HAZupN3vdSiJcc2Z74vl7UqmiLkHZhxn8vvvwEC88ZOAyL64OqgG00MCh9wv9klE68sZGL5q3RGcATBcQyBAZm4to5hQNPZ5Z5kg_LZLV_rzanXM8--2vTyGkn4p2h1QQ2SK5SJXxhj4y7gnB5GBKu__X7HUnRmi6-fq7U5kAr9lmJWYWKqwj-TYgpkRNrT90dkVajKpPDCTkltAMN1genLukVttWWm0ZVD3Hpzv-5D5xFDLpWWyqX9reqNJXt614kytz-_Jpw1f2xtL6syJD8gMK3mBjXr2qKGDxVEs8y2j5WZJHiuAYYIjEOQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6764ca309194e1-11634398','','','2024-12-20 01:36:48','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41829',0,'cd-form-entry','',0),(41830,0,'2024-12-20 09:48:42','2024-12-20 09:48:42','{\"firstname\":\"Angela\",\"lastname\":\"Paterson\",\"email\":\"mrs.a.p@hotmail.co.uk\",\"contactnumber\":\"07877620714\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sDS4mjLiyzZE1WP5Vdfqw5Z&amp;gclid=CjwKCAiAyJS7BhBiEiwAyS9uNc8x8RWw-TNxLbQCs2voL07GzMg2T-Oi74oekwrgxEPZzA-QswgH7BoCg7wQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7Zfy2XbXq3b3xzPPy15QRWIWCyXnIfxSB6dxgAxxkMlb1Ii_9hQgVksXpJERXZHNoJLeVcIfhUf9HGUXysUKygT3VA7J3m9Fa5szALZODEH_RZQLD1cBoCq5jb53Qbc8o1qz9jw21UOU5zNSkOnUCNDTGMYYdRlaGRbPhs3hIf2_UGC5bzMypN1NzXBBl_2cliwnMZ5Id5K1SFdvV0zZn830fprXMctysk8-tj4HwrEOWx-RTH_HKq58ABvd7C1G0AEZ9PdTLYfoqvLVHLKoshoC5z_ig4JmdhYe4aq6rpGjw9WNFgLRFcPk7oIOhH4NgsENzznt3AeDvt4Ewplg4Gkusm8AUzv_aPtzTzxiK3CFZv0Y4RHOYUwJDTMJpjurDQkYN-AFEdXhgEXkxj1mZ93xaytgBhn4EfctVi4YNIyo6qq4mr4p6vilwFS4xgCjmQ7DXcYR_hZjP3shXc9mVXuAEsDDff6uvbcafP4fU4QH6klljA9KvUOq-1at1HqY_PKio2lb0fYK0W2f6XGskLekhFnlo5xMt29mZwLiYlMdvtFV-NeIbKbgiw5cpq6hyvFv2uSDqM33xhq6nHlHO7EroybAjmxV9HMhhhlcxBUujYsL3YvlARAkj3_bCuBAl29Ouk2j8bjRFg_4zGyT0uUoHPPCN2fyfGir9ToJreZQEdIFIKVagxKiJrMhb5ilNs2iKCY9nanGhxUlyAwLxPwwRxWO-RSxoM0Jy8bGIVarEcPZEhcxMVuWvLCNe7G4uP87GMpiFqXTstFfwYk8NUDdUuFjSyHpsOC3n-Ozs9B1CZHk6zyy6cJRYKyLGS7gIgGlGNvbeeR0zTR9GJA8m8Qxi2Ltne3r5xUtkLuRJCMSp1jSiKTmhQmlFkKBgTOdkBQGFlJjkohNaBsLnt1-KceiMQ9CEiRbavvvvcTWCvlyUcLmwD0IHHGHpWXpsAZsRqAsqWKVoAeRCnwZaI69kiyGXaEzHUIvkRdNcpuljk_coRYKF_ZEuHMTbLtoQ8C-hUngAlRvf885lwg-9lyjL-xzCS3UzUvKJgLJJd5rmgSaJvu0kFPz_fs7CRIo5-J-vyjlqJ8h9Ge84cOK35vTBbqCKE9GjU9Bu4pFDdKwIr62TDjge5EL-DpSGyAByHHDBjR64xoeiPrJA-quI_vmFMjeGXzAVRDa1ck73uwJDWCMTjBsLK5QMb-vbkmiBzK7cbJRn4H7vyP1U6v8cwELA5zgldJuGUzaZX1u8q75KIvYA5j21Xm3fFCX-geOLmu0Hpiryzc_gRcJ7oXaSHyMFkzBGyB048Gc6vyqFWZZ5iuJr9-U82GYNDvtU38r4Op7_Eq1v6lsWvN_fegs5kFEJv54Ng20f8mgq6KM6EdFvr4Yl-B36WSTSRDFxIAXgZxqCXKgyAdPpP5SpBqpMGRmsGsOKUs2XPIJq-wggzQmuVnPF3P85P6wGVuI6AHXjWKYx3cI9uyslTp0aHkbRO5j1KXi0GdfFppc-19f8PbIu2CqTm7BL6go2j1g4ZPvILtI0D8iXBHuGNyDCs3WunymGLqMQDXxFhWfZSJtEIxNDaAn5wirrZk13Zv-0WTMCb9qLM1cmNzv5AeecIRv8D-LryxbOQwNRXcSNBoeT6voRATKud_hxuDi90b8Am7C7Qyd7ajf6DaS5IKh96qUZmgOTPWZsX1sFagRaPX57LYdbkKHMZkaOF-2zC5ZxeU6ML-_GDtEGBYmM3JnqCvfAPBu49UVTIp0kxYlfKRtIOlKx5jtWgRvd319bGZgfMks91_rzQxolk8f4UKZDP8tSJb6C26nr-qafpTNFlYxUoQUg_wxrCtJgV9qhKDRUPLejhKftQwbtf_xwH8hMbfOG219DG55T_FC-Gt_zmfglHnuxMR_aumnMXf8IsDqs4NphNWqd-7JeB11t4vS0Mc68xmnGjEdeBI7_usxC72_QAT9pZWROGtqh30VxIaGq2uz-L9gIL9wTZVemfs7dDYa5nKjM-NsPCZw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67653d6fe85ba4-40888391','','','2024-12-20 09:48:42','2024-12-20 09:48:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41830',0,'cd-form-entry','',0),(41831,0,'2024-12-20 09:50:52','2024-12-20 09:50:52','{\"firstname\":\"Angela\",\"lastname\":\"Paterson\",\"email\":\"mrs.a.p@hotmail.co.uk\",\"contactnumber\":\"07877620714\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sDS4mjLiyzZE1WP5Vdfqw5Z&amp;gclid=CjwKCAiAyJS7BhBiEiwAyS9uNc8x8RWw-TNxLbQCs2voL07GzMg2T-Oi74oekwrgxEPZzA-QswgH7BoCg7wQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4zVL8MnJBc2SC7P6Lc2ehvYglV_27TOPAgiYAgVyESzLVlaKi0DI_imI8ZPRPaovyrNzsUzEdSugmhYX-x7RDM--40rEARUxhAV5zPUqLO0lQATITG2fMyQO22w8_96DgVDzZf1CKm3cYdJJR3gOjKwNZ8N3nUmHvHcyG8f30UFjACtPHBQtA6Vc31UeHPBYKh6SCTF9A2g7XO78NOpKyVRsVzQ1sDHvnZL4hlavkHEFudIZmcv1qQkQjXpXpJ4lwIkjOt6JtD204rcCkBOuR7OXURUwi_mhm8_GQ35pjGj68yzkXUMTRibGN8OjECLDfS3Gdtrmcz5NWlHEu4fn-7-XjRS6cOu_IfH4VqISOujp1jMGX9lge0rCeGkk2RpsDAECAe3H3wOojRiDezFuL-g4jV86hCrWuMku2lV0VR3u8d68DF9sAR7dBLU3GGPPA5juuBd1BGDVZ95qi2W9OjrwH0SfAFB376J5NEIi4ceEZDUAJ0VTlA4aawd-KPlSaPm-jNuX_GYUQVd6jkzzAVjKErVkCT7vKXvRhzdK3QB9lDnGO_v1wnZZOj1dzM8xnzGFh4H6jhvNSE78oZ6q902Bgi94dR9XeAq64S3gxx7ODbMTM9rRm_eF1rF7PPFFmXytNNVY78VDmaKvI2lQCfMfhQnx9BvCMaN8C6WE8NTiey0Mn73fNOfYPnp8bXu7D63xZRKA5K20bnXGaH-xRVfQ2PVuLnW6a2UyMkjyL6-gxXAr7deEl4s4ckNAa8o0LdEmhUTtFnZQFM9vQkJqWf7WbloD3fZQNinP4KOCHk9R3Sk3hlM1Oe_yLqnB-18s7h03BiCNDCWsKdav-8LqWBm5XOEXNjnU9fZ2w7rb0qHPROXTKA9Mfs2szhIsltwelW2loC-hLKnkGzuPpqW6wNP1ohf-MUcf9cgJTh3df19xecOjqfgo2T_tjzEiY5W3CFqC-XfHBtRvuG2Adc2ErUQ3IIEK2RvJ82w0th8X5rBvQEfrymldi2VAmJ_IqUgzqO03FJ0uLXtRa3jDdnBnruyiHiOTfL0qhfAOxAScwBy97KY6yABoO90d7szTQ5iymX4BCP6G6Dqwfu4tMC4r5wmYPmvHnBdl0DTnVdrbXglB_4mrmOpOYKr9kKxZhR2tQ214fcYLV7HnispevpBuIgEB51O1esU3jPL2UnCgHcLX0qMPtJ4bVYDpdIUkU063vXxbTvITYmF8PqdurjKjzho_LsqD_ncON9enSih_edEupWVfVmiRtGfWcHGKsGbEsVrH9oBtIAleyt3qxoBUeoDcVVRBW0AjOYn4tcr7tEQGQJApn_TUPCkXWR70gYYkeGYvBFV8_GgcB60mPow7PY_TlLt22hxUsDs0a6BFKA_799uSxOswNHErHXlTSOAkRlfQ7ZBhAdlDxSdMN09s6dPRG-vqopc4r1XyvBElYUV691o9LxxPnFRybZTZHRF47-4wEHOcZVkHeR1zHyMll4tB-hpuBE8O6FjWUPMpzFXta2wyM7HbING9NMrtUv0fT18RTjhOPIzO03PilQMfzLXimSdgFvHWdkJ3W569OsPUFQNtAORa6YPbSCzQpqh9aPzIZQfttu5J2GFYNNTL5GYj8T3-eiSQilQ1s_0HOML8zwKXq5huuHZYgne1DRFj0J-acQkHJzCH8dtb9jp8CHUITeVA8A4Sg5wVg0b__11Qf2rFfDYeB-v-osccbOX3YaBi3Xe-Yc8uGMveR7hwuBiIZ2fwHVZf686hpREsS7GShD0RWGUVRv-9ANKKw-dkIoTURp8XPNbzq_2-lWHr178uyqqyqhB1Kf3uHUtjdTKkiRg5cZwiGTSqIJScUI-dW8EZpJfb1oubgveUELayqICVwME_YncixsvE9HtutXYwX626Tf7ts1usxNXYP1d3bL9cknC1OIfcAmwPoAXtF3zU_uUK4HXFCTfMhrUXd7UK71O_jknu6937i14f0adx6ppi09\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67653df36b6170-91344787','','','2024-12-20 09:50:52','2024-12-20 09:50:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41831',0,'cd-form-entry','',0),(41832,0,'2024-12-20 09:52:26','2024-12-20 09:52:26','{\"email\":\"mrs.a.p@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"KT11 1JL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sDS4mjLiyzZE1WP5Vdfqw5Z&amp;gclid=CjwKCAiAyJS7BhBiEiwAyS9uNc8x8RWw-TNxLbQCs2voL07GzMg2T-Oi74oekwrgxEPZzA-QswgH7BoCg7wQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7pHfdDSwRpXUwhffkPSy_tCoKvtxuevo2zkTXBja6QOAS5LGYvCT82tp915XGwLWXEPOjDD5U-fFPUUIntFvEWjZ1BjcZ978YGJ2Iqzk5lrm-iT9p5t3DvvICUsMHDGx6OuRAP4gxUkiNf6U0HUdFTbQiyJRPWps8OAyB8fJ9n_0PcZDeXeHG5JUgVCRedeRhE211m52WNFX3Ai0GvxHR-z9qcL8PMt-o-_JWKEoed4hHtm13YbpXNENLrEC84pK4Wic_DI0nNboN6Hxl8bolkl29_lO5PCaal4lPYguLQKZ41JhY4pcrKoxmpUq-L8IxI-u_ct-Ky8F16QmH1j5aDNPgZcoSYNTxTFYwE862B9GjDf8ggQro-N0bR_nEsex14lIxiSmoueSWeGrjO7dWKTqee8oQeMZv8Zdm0JYHnOgNUBvknHvybBxl8F5Zk8O1QGvQy5BYuU_YIPp4ABdkkuwHyogCnFHHhcXA8FXr6fkKJ0w34l075wZyPOUtd7Z4hbu4FE2ca3TVyRpYRiI7Er27-QUDEMeIe5W19v9MT5izVdWqKmjrD1KlVVreadfWzvsijnu0LrNMf-yg-y6EHxaxyvvmWvjyiIKJXOURhK04vVVmrBY15mpbYfQLD7R0Nr34w6UzqFOWBwcb6HcEX3B9wtOayAtErkg4gwEoIRgy5g3_hpR7z32FAsYD0X_vSgQBQ0SPP3mNd-fHc3AHQAd2BnIK5OQ2d6GhFhLrZDFB9bXm5j2ec_DmXeiF7q1BDafHqC6poRMRHSYaCTbnC9ZoeDs7KN89ncwI3rtGzhLimsnRxilsTbOWhQIOnjMg7iTgbR1iROwIPjaETvdx1iC8U9_eZJ328rmUy_lOXvLO-yUFAv4xMHXJESSUgBkn9CC9qseBj5Q9eRDnsbMos-y1P1afJ56mt8HNWnqMa4E-LZ04hhHre6pH6cjMM1AyVPj9YR8_BZJT9U_5So45b2jugOlGM0glpzHTYxns4FSmilhhM2O86GoxSq5_Cry24Pda4t66WJ3MLAZofg725lpLQuu4CfvNKIo7T4xhG3TmzOa4orGksx4LwMFqHY3_OZVX_T-uBViW5GSKVY0lsd6Zk0InJDTARIc8VeDKnsUpwlDM6IvnrIRrxhbk4RWcvmYqBMsitaiZ_fZyu86Le-AeweE6nQGbytIk2ZfA4pYYqF6_nHyMhHdQSMJcI89BatgmhEOVYcHlFk2OnpcMQqJuc5DngfiTGkfAZ0TnIHXZIqWYwhWcYBfzJcpDXYEs5ygVj-amCD845IHgg-onkD-D7rOauVtohhyBs7jszOoiSq2EparMW7LaF60N_nCTlxDN_IldYwqCrf240BzwCrywm0YrXKUMsQw2IqYLUIChwXY70eVFDpzJjpoi-asO_2QRcj-AddAhM8Oyvqa6jVyGCXGILI4KzmXBN7RhF3Ul0nvvqmI1s4FRe6Dy-1opiBUdz_Wz_o3AdTQYwnahE7YSG43MX45yaELD2IfAn8l_5QPNXcY2qacrF_M7hn0zCPY2V4XoSBZIHaXFksCEsELQ7FxhlPV-0VEHw1CdtOpwQe03HTo6xjeVWPmpptVAn1teMawyvXDrc_sBJsGhl7cTQK7LPrxu81VHfg-nh3uMZ9GoNphgHQa663-CunNtl9T7sx-16G2KQqsJBd-HVeIVP3dwvEFqJGdecPXH1qJevCUjqqfnaoKfTGu2-Snj9RqBJH7h6ZNkI8aWj5bI3zBUAkpvyFG0CiSJLfB0O3m2E49uXQtwad_26774v4x3KTFv9NTqB6QetqWCBhDr0Le5_BoF9XvfVxV2bFqMd2WiL1XqQQr0nHQ3kQOiNwykewP1T8TUmAHbonDRfSXRuemTB_bsOO9DbTvZnt84UfnBuN5MvWUp7hcN5vgQ2k9Bd4kV2LI4EFkskV01mCoiAtunmgHD9CyFYP4gGvDAoS7qDBY2UGX8c_Y9Vf3BhGZAoVHMo\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67653e36800c23-61658995','','','2024-12-20 09:52:26','2024-12-20 09:52:26','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41832',0,'cd-form-entry','',0),(41833,0,'2024-12-20 10:36:39','0000-00-00 00:00:00','{\"firstname\":\"test\",\"lastname\":\"test\",\"email\":\"dsfsdf@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5X-RR3A6Z_WooeiBXWlqntkx8ajdA0byDit_VG120Yi-9DOl6II-AVgzQ8uL-Gkia3SJHuDZygtOhZAcyZjZE2xAhOOyLnptkwnzsKFqK7ksAvLil38X0feZWA2OYdd9ZIl2_h7v8D8Ekt8bSVlZ5rXB8LPIHz-_cwDcQ9EkBiy085XLTCH7PoKZOcHNkArwI58SjA1dltIjdbS3SPoGqEF_j874XUCDse3XqJ74XG-cZ0nS2V93pWpB2X8nJRvQtkeuyAihrSEfh2MRT0_5NtsKoQfEmn6duIf6qjOFfsbGqsKaDzdqfLStk4JOvQS661eikhP91gUASMbWCucDAzxLZgREPgJp14Yol82EbAeT9TCUAtPrLheCfpxf9XcakXK4ql3M3iNR4Vrkjip4Ut4TanuGZZDeGxO3KIT0RDWKqXlP-6iMVWmpEVFnVqkszdj7S-nzratuVObznHSgyUb5NAkgA6uvKaPLQp0l1904ZWJVmyoxG08dgmeL4xZGYxOuu51c-wIZjNE6WTVSwoqdomIH37e5zvqUnPWSMm5VP8wBPUnztBp9NqKOxZvmMrtaGkiQOHuV5Lx-dtuSu97qFS5rka6OmKJTBxuLp9LTwTzlm-928vke9jktlE13SUhznkWw70X8w31WiiQKKoszlQkNnFwV6WTnA9SpPA72x5wOOgJg72Tm_8kVz8zGYW2IiXgU8xZcJ3sEuTdOe6gKtQdKT9mAJCZ5Z0Rp6B4ejGx8dfB-c5pbMuk_rM5D3qncvIg7upRlNDIdgSRXZosHq21H-L5od5Z0TnaA4_PVfE2fzejSM9zFghXYSlL9sMYK8gW0JvwhhzwFGv_RJCe1w2Z0P3kGsYkYrq4zRjpZD9htR6mDtsWaXE-YdN-C8Bstp6L7KnU7RaV4PDqqgEftiEyprL5p7bQ1BUlL0gGSH2BQnuuLDEzFcj1XBPo1Lhj3_GSzdx71k3ZHJJN2phIaD6GYfgRQWWNWAYSIteOjAFC--Kk7_dTOLb1g6NhidcbACKjvKYLxvpOQ8FR-zN9AwcpXB-kzah8woJVeAyZQyyHjjsIrle45aTgY8QvxhVdFsmju5XlM97mspFS_3tAEQIGOekhcUTJWVRRVQdSua0EnubWq_HvdoAKV5_A9D3cm7mxCXpPy_AtQd1CnxaHurawVABjVmpPEptyE4lCjpWyrxMoe_MOIgjS_DLZ1pQwp9uHZ2GUoliaNXoVfLePyG9-fvKgTzZPQ_iwv2k1qns8G7QFzvvBm9Q8q7pnmqbg7uI4DPj8Br8OfHhm7nh586muVWuxVMoRyeb1IA49BxdVUQHZDxURTbjZ0BoGnbluz5K4_gu3w4GWCt5CjDGrT0Qw0bbPXGnC6HKDnAQaGqaMMaz-mS494YrFGJva49MCF7_QhkEEqYcjHMW688PJGd61Z7i9fZgMobhLr8U7uSFG3nJ-9IUDLkdREiOR86nnTqkDQj0v4dCaeurUU6jLG7hVbL-vLCxsyy4NXlOTvko_RUbQ82TP3FaahceitDoRPuvMplXACI65aFPCwCQuSr58FKyn1AQYN0jKsFO3n1DVtaFs4mbLuW_JfOcGA7he1OiZlAUyT18v7ezn3eRv5Xt41-_c-LqnBq072Wo_VaOPEHIOgAuLK1k5aTbnOxVZzNoAOtSYYrlAjT3jo4BMXAk-xxH2x51SPkoWggX1bGKOXMexutU0BbXIRlnALn4B8Lw6WthO5zxSlJhx0P2-7KL9D3b0_yxpE2IQSFMMwCshRQkQyUSRP8A-WvDVjqpTZhGe7-JY-VPe-DBB9opKoHTND9idnH7GnQ-S__dCAdOt95AjcXce9s86ZvEoZ8LYRKcvHrhqYpCnljiBsCd_pzrGiaJv2rdOJfUmpzFObho_5g8jWQQe2N8OQy9DyWU5q8F\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-676548b70b9e13-01288883','','','2024-12-20 10:36:39','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41833',0,'cd-form-entry','',0),(41834,0,'2024-12-20 16:26:20','0000-00-00 00:00:00','{\"firstname\":\"test\",\"lastname\":\"test\",\"email\":\"aasfd@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6IR3d6x_Z9wthE4BTeWcQqL78l930L901JQsBsndwzNIZ9HqY3HqTYRK_Z_kaOL0zXIOVGOmaqb9h9HOfnYqMikLF-eXFjoGp9Swlum2D0Xpk_l92-dkfQ3yuMkR4ZzYHZFz-w3qNJedr_b0y9s5v2pnCzSazs-b5AhoVCGgnMkUbf4SYAEyjGBOuJl4jixs3YEgfCwFatqyvvEz71d6AYOQickdtpBuJw-UAbjAwEPpDFRY1pcoG77dvcdhkGrIuoxPgwggtrBt0AIUjm3HTcITG-0ng4kto9oTAnYm0mJ5wnqgC143AfB4sgIuS81fSucIdQZ6B3aWhw3__vjvRX8PBBk5g9Yc9bE3Rw2jA2uuMwQLTpzsti8g1mSK0NDdKGkttsIeIGJGTPcczNlGbKx4PswwxxX8xHGWSYz4_QZhylHDggrzyahvEEozNG5oz4T9OpsImdiI6bkKDSTNjFo3vQzN52yaNqtfX-HUulmyFI2vtdPZMPObL_PDHGBWWtQlZzX5HQX7JDAtoZnu_u0IDtXqc8fG5r2sUHDXVSeLYTWL6OEJ5K0Oz6DKYKxrO6ptuSHOZJ5OXBxaSIbJ2fP9h5XC7ai14KZN66Xl4j7aLxRBFaHVfVnr96n19lQupEredfPtq2ABPwVd5TWoCJj6gojvlxYsDz6WdVi8mnTqt4ma1bx-6zVkQeGv08Ickrsu78KXgjD97vjaPS9UEXhq-4Yfo6CMhnQQU-Rabs2Em8I0QGmGPhb5EZLMTzCvW5yDPUTdUi1yvVoH-KHp7XMDM7CB3GxI-B077oNmniGJBdZzeO-luyWOF_CJrqNyYriDO07gakfVG8iZtloJjooob5IanXPQ633m0NA1X9jkWTX5aKIGteCIXznW4M_uEZrUWz48U_T2VqH0iT7XyZqFfqCH6oIw6a9bQYeFQI-9c2XEqy7A7GncDsRF1yxUEPqNdKY6WG3zNH4u00tVHP3eQ-JfTazSZskJ2YpaP9jCDfJPSqg817QR49HDpG1pgWtFECv04VobvV81SsRXyu_mKCD8zp6d4dkFR0Q81gFaCsA_ou-i12xDYPYKK-upuj4swFSgRMs67c7kYzKIVFNkYyzfk1weVQ7ftVaBL0I5tJXUxrFgTR2adkBdwNB2Wzccfb017siAuzxlJDast3QubNLYjwmdqlyH0_O9c7I5q8rO7YXhDT3lFFGs065kDKy_8BS6esvagzyuY9plywsuOqQUld0wZoS7kxPVO1BSc37WyIYeZ3_E_dnSX5uoDHzTCr1d-B4kC59f5DcIQXPsUoVPCteCmgWmqp-de8JYpFwN0V2zPIkBBZI0ChVA8amd4_wycolmwdPbKW1FMKOVKOTLNbFvIKQYTurlUhoO9z6ooJne4GjTytfmQl8oCSSuJWaOiSai8N-YmHtZi_bcF2speL3ZGz-gKggBAj_qgkDKR7hckOp037e1QpjrDSO12rRcjvqauOjeR8fm8nAlWADKhU_SAElP60-41f7UBK5RYDrn3kkb1dtxLBS9kOImP1_uy3RUDFUHTi3f-2-UCQ73bPF5F0W3oo-8j7MPsEqRySo5JpTuEj54no1GCmxpG2sgoGzz79lrysEg4_R5fTpHqO1SYIgRRXN3BVXT_bYDBTeVETMTF_-MNM0DntKKZY0uEOsCYB5Hh12mGG1QGVe-SIulrtFg8jQVE-QifMcDiE5itYrT9qGpFd5pVRGYZidWv9lJxgefbB_T1D7Tc7yEJOPgPu53iMPIhGqreeKCnrZZe_JlpG7puaZc9fijg1Y93ZavX2OO-tpBI8AjnE7qfKPkFEFYxWgYxI_Gj_yUEcO13hQvF_Gg-69n7dBOf_4txMBW6iOXC6J6zfWb4-4mNHz4iluXQwzErIm9JJHRP5mqYHio6XtIYsZfNxkUsv\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67659aac8b87d8-71937512','','','2024-12-20 16:26:20','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41834',0,'cd-form-entry','',0),(41835,0,'2024-12-20 23:41:49','2024-12-20 23:41:49','{\"firstname\":\"Lucy\",\"lastname\":\"Brydon\",\"email\":\"lucy@equilibratesportservices.co.uk\",\"contactnumber\":\"07565933223\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/about-us/fees-and-funding/\",\"recaptcha_token\":\"03AFcWeA7ocnijat10wk9YGJytY7cvSAYqhNSTyRyIMsTTpNydWOZ_qrBlY5NMWOBbGnFlH5MW3r415lVePwTGgUvxk4GI_QQSuXsVDyygg4frMjgMzVUlJatj_GagCc3Fp1QE7Z7hLpcHeScj28otFsKc5GfsOnNk1MGwMJq_S_FffQTq9mX91D0TxCfaKWNVvBQXZZQ8liIPWPZn63fmmoNi77fzKN_yeK22Be01VUO08s5IXuJDOxk4fvbLJqdVMu6PKaDTVgQjE19lV2RNXqXLAGN2Dhu9Vf4Sh8hzZwYtx7pWQzKC_2mNyb39U0dh3f42aP-6pnCe3nOcKTiWDpmcPxGAkRTZyt3aJCo_Rj2-5gOkEaR6KD4RxjSPmaV0f3jJfYu3NKUq4a2FPnjLM3QNwFhsox2aKkd97bKOF6u4voHjVpjgLpd-Qqnc6yZxGhe8rL0ykd9S9iUpUUjt9Tk5SGyGZns1QA_6lLho3ZwhW8BFtUBWO5M_sMBPyKbImbgwe3fTbk47c8bTS82XmNIy_Bppojig7DIqMIVuu7AbeDbcungqcrFq9ygTMJMXTywtmqBdUIil6gXwG6vojLrctKJLY_9lo4jsBO-QoeLPyOeknJA0mAx5d5r7iVmRBiMkT6mbhtFE5WF2nucaxgNQ0-BhaEtErsJgftl5KWt0vTHeDZg7CGya004qiwNVP60HY6sWU3Eu2wjxTGpNXheUL3gRhOzI11BkOXfROPtcoM4fAtox3qN5KTXT3-eBc2XQVTp-ln_hNY_iOXp2YZJwo0kGLBI3PsfbDOQdQmRYSZUz1accRRVRNexwU3lJmjwtGMYRp3Xl2D_clXFAjG1kFSn8S18AC8jNTvHw30q92MNpJGb5NsimHEjb4mFAI_MEDcX7ZuUHMrr24t37k0lBjqkXYCJe2PhXDoIOr2OJG4ufd7NuwUIlbx4Yg8zderWK3T9yuZTkxYFKwD5S_HYt-oVKbavgZo0e_HAItjRZE8EwWdMwjKIzNQ0iyTvPBIPQXa7hJ3wKe1UAiOsCmVeMdj5pgRQ_MeYVVYXMpXe9thazLKUPCTAIu8QJFLbU5xqZCvLhQERpnlFGRsT1ey6telzEUZSyvzLxeCcMNs11nrmjrsK1edGvDpx6v150ank-ILAZJ339ih3kcrflH5JOT5t_eTTF_tLI1JjGaeMWoX_Ycv_5RXgC_6mUnfV95M31iRdc7UFu9lvR3LLJv-rbqDB-ZWEGVn8_QHT6j1csvVdzzgJHo5ToxDKUnqanwKW5ov-DFHUvQK2vMNmtHiMM5Hc_q5zYWB6zMJYNCWR5gF6j9tpHUrWjgzz_lxosyO5zWl84OW97A9Y55tNnV2U4idZjx1Zz99nVKfAwk7lOQUx80lyetGNxBmHtS7ScbkhjkGvBqaEQCBjTVpurs0MgsOFe_0CQwXJ0l2ktuqEPctMwj80m9nXDvyNnqDi0-ghcICrwsPnsyvl_eGaZRgQ9_I0iBmMUMvrKjS7shIJ4asl_uHCy3U6xdxvBdMECLDWS3Zn_UGdlu0uY8-pXarBpYfXdsVVVYjS6Y3LXEJWr2pPbDg2yKP0surI46y2ICR19FC5oMuCj9YsxK0ERFGaiJzekgoLeZr794h_XIdSpEseEwBXyBAWUewGcz8BjDyB21aR_sIKj6EOdjS8W8rcPrubAIVg06gQIuq4P9QWoDStfmxE42V4CpA4oKdILcdojJFtgWoIix5gilXIlBpj0Vh0Q3tInWw2M_UZuY65mXRsVLq6nkI_aqROzwNQkF7y0j_G_7IzkK5XCGyc6bmgtSEbrbPnixqqakOGOQye2630qCzOiVYBRrdN3LEQqFeF87b5b0PM8tTF0rK0W3cpDz9CKRqnQYfhNrLVgNDfRH8fLxqUYtDLNgicXDZ8j1iKbFFNV6P6JwLqNFQIHpJO6-Gug31YVCdit09fW_Av7hby5extS_Rm1DHqAlQfc3BJPNQmWighxt5w-YBCVDb9UyRSV3wlwTgvOnq06G8eBtDbkc4lhggg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676600a919fe35-09341835','','','2024-12-20 23:41:49','2024-12-20 23:41:49','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41835',0,'cd-form-entry','',0),(41836,0,'2024-12-20 23:45:30','2024-12-20 23:45:30','{\"email\":\"lucy@equilibratesportservices.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"1\",\"currentpostcode\":\"cw2 8jh\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/about-us/fees-and-funding/\",\"recaptcha_token\":\"03AFcWeA4WVefV_p-5jjpia67KLrja2p8S3Q-OEdLZLhnzPzfbHHYiYtcsZiMqjKZPgWVVsmJfRMqdXWrgo9TzX_lt9L_AaYc16To3bk3y304bYv1vsy3_xMa5oy8a1QZyy2lj1s3H3C3r1P9fCdMxzQ-BhHmGeZl6MNvygoWHLUCUqeVmhgG2rq88Nwe3GNiH0gLvit1aEJ0djVFWBncTBAD9RGEuONQ4vKOYSuK5jGM9CQazG3iwkxkfslgiCKY9eJ2GOe4O-MpscCuPyda06xd05TbIgYu0dfWgXQCGL8hsy-Hm2kR670pWyuLfAUIjqVhjzR9Qp3XuidqFiAPcsOr21_ACZmI87dFe1l_g_uRUsqqJi6U7RrpUJCKvVf4pddybCay_DJXJSd1YEvwe5H5matWwVSR5YxrHG3oB9RioHIea5EuJ0Jo92M6g6N5CuV2m3ht2HGNwVLNgo3_hrCKP_hB77VfpA_U8DBa74z-K55S90OsVK93XigKFU-jAdOhvp2EaqnHRjaNK3Uom4euWDeEQxB1IlWNyrGrd3sZfpXv27dfOZIIkOiYeujWWGTAvEnMNlhRqXVsywzsGfbQTq5IL16XxJl6qEEY8H7bBa5_yhiGNSEmoSr5PQP6T9zi18x70P3lKn_LqzOZS4MHgakBXet8p7gSnFYNiRVY5U-ztAYWbHXNuRhzGTl08LVYwfPPcbxtrxJn6e4qa-hc9EQSg2dHiZPCZnQdy7EMDyO10cHBrv4LP4BSE2K7EbO6EPx0HBe-qglN0GL-OufyA1Nm7iQjLicYuy9saq6Xqvbr8hVM1q9Sg4eABcOJy2sdWEurP7R3Zc6ytw1Xt3LcmuLhB5rF1U76ic9OI5EpHgQeILZre40CkWR5Xfbklf_lJB5lMNCUApNC1KP0rUN8u_35PXIgMCeJDlifNs8f7LgzVvYz2qaIzcweXwsGsKySBthZQmR75NLsiAnF0FYGRvFF0MZCbjJ5qFR0cEsJIdesQjRwC4MqA4t1hpfQCqoJuIhhg7CsOm537MB_tBkUBAumDCuHJ5gUp4Ltt5_lI2uHRiEWD6Pds-e-hX9C1uXPFvRY8OQAXuXLKEKftZabAiUW6xx1eBNVs4P1kn8Y6QTKM2SSLrM__thSGaOu1gte_bL4_Kq2dCVlWZesZsK1bPr5wLOEne4iOc5lUCvwm0aZoXD8CZLm6_TZVWDIgkuA5iMlro-rhoNVbIFhj6zcpWQBwvmhSmq5bMDXdukaNZ2TnqTiPP-2Gc1E-n2l_YOY1mkumprlMYs4ruxTqtkaBOE4a9tcY0_KT_gFATSDUyv0oUQFY6bQmrguHvelWXWjGddsyXg4A2RigRuAqSOo3Kzm-4eKi-ul9A1stSPfbiZgU2fMwdnx2-cQTgWUsDxvm6tE55y740vQaMSt6R0-TUv2GxHwgbxxld-MJs38GGUvDb04S2Bkg-2T3stW8gzi0YNEGV4qe1u_VvdWPFNwyNd8dU5Pb-5fewqukmoVigXsJRto9G5kIOrbeiVj7Jczv-CfCt2CjZnPyBAWUUBtDU3i0THthXwoSJzRNz3OQaKxophBPpNaKLdfTmmWPJK33dvtIF9m3BrgM7keK-xoCrx8yrM7kUyWE2O_8g88IMwnzJTHusnnxirOnm3muJ13mF8XR7eFdNx8enLAFJLkxy9znswqdgk2TPCAYCB3xljgmzmA4CumX8GJoqYJGEeoV7XObhR7QUG_8IkjT-z3rBZ5kmkHDtdea95JHdgOlJLZHifm4s31Na5MJNSIVDvCFgd5Jdr_wgHDg6SjP_9s8ImI2FKeLNqhPJGwotsHT1HbvYI0ucMfCagP12PHKBR8gRnO_slg9k7gz4g3d3firA9eUjipDlgyqoNwPGweCfdHAwvPI3dHwsbN0vwYS0ApGN8g9iksuiVCw6ANwFCdVfveibcH10LFwVPFKgklU8fM06UnHAfvoSWc2m84el5USs2dtuI-wIg0lAea45aQlW0InyWZZV1dTuXAahw6hCYrgCZxb4_rxlyyfayZkxoJXf7QpCb9r\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67660162c51412-73197810','','','2024-12-20 23:45:30','2024-12-20 23:45:30','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41836',0,'cd-form-entry','',0),(41837,0,'2024-12-21 00:37:27','2024-12-21 00:37:27','{\"firstname\":\"Ricky\",\"lastname\":\"Mediavilla\",\"email\":\"rickymediavilla@yahoo.com\",\"contactnumber\":\"0424700779\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5-ex2MJgXayoSET6PW3JNDxlYYLwN49X37Ii92IUci1gTS9gdL8wMSLh5WAMwgC6_dUiu0RsEPmm_wFErwzrTpH0Q72Ix6FHMviQkKN72D4iG-2fSPXWaXgD6_EgAP94kLotE5lrmtkSdhKmogeC403DMHiln0JPridQPUUAC6QPSAZXnCbaGvrVTeemyUaZpMkYtIotFtZWYv2DG1qLJOrMrG7kL7-TggUy8M5IdGfS3CJ_jKlJftUGFRhLCU9CzzwWVuhsE6bKbIaRn6HE82-6MVx3unh8yOJ_0bVV-ZtnnqFNpB2otHgWw-jIdtfwApnznTT5JWW7aGpNiJVK0relFr6F9sKZcEg6QD4fUltWp-MbjNXVH6tLH8iLLu_qAj_qOjNgdWgsjVfm9yZQJKYmUp0-iho-PYpHFPLiplxBYxjTUKxLgDnat8SFILhMncrvFG7p8DKzlneYwlHfPte27puZmSb4EU0bo-8l5eyFk3_AojHWkMo0KznMsEHStSiQMT7ZhihFU0CrpJLgeCv1iJ6t_y5EL6P4KTke4TG27CmX2w3QW0EUnNzJT1jgPJyws5aqOSikwK8vpzZra8-lApGTLaXsdcY9RyH6c0IglcZjsSHe3cS45rzs5U0PzDnRZK2Uo9OX5CbrZrWJWQdwRXKDz25P4QUw0t-dIXRdQ1_-zTzYS9iQH2wGsf0FTmSTy20f8-XVVetdxuV0bqos4225w7AnnukVIPhhBlEgJez_XzEOKPQAEhsDZ4LhF9-Qb7RuygXyqmivCHH9ygsJ5-WfmYRzkamZR0EOzHZmFmoEVq1wfe0kezPLk8U6LxjKRSJlcH1p8KhHy_yXv8Uh9o2c3Bt6Z-LvRuD4CuendcKhnL54AkjUP4ZRS4Mr9Bim0Md4OkwT871t0EAY3nuIS5tSQ68yfqNexrc6qqyl6Qg2b88Kk44d-IBQS2mI-BeXXS7q34biznzdYGxNkNZr7ug-hwKl22PYBNJv1LlYWAnso0msaRJp92oezFpzkJB1Xn8tz8HWdKd9S-MdPLQ5txbWaJ3TkNbdtDrFVLjw2S-CpiuE-qSDjlwvN2MxA1e_RQEKtKk2dLtTkW7IiIc04D-dQjxh9_Am0Zv9MWt41KkSSe6MSHoAaXh_iiV2zWD6LZtKPznCJpZb_aIdq-60g7uGuzzoTFj3hCpK5JQsjYmwxKXorKRFmNIDDb_c-OP48n_ZnEo360pFujc-A9xEpq_zyFBicb2v2ploJ2OwpQGGVyiNtWVC2rc_yKmw_4GmL4KjeBbRdIhlf2MRBEpdbJWHvOTTJzkF88qah6j7yKFuKBo9jv_XTQUpw1SNQJc4qWFTXAYJIR0jspt1EY5tbJmqY-zOvhiKqhcgJIRq0XabITqE-KJVcnMz4NnptbPudm2oDUrRMSIHMRiR5A7M89o0acgef4dVZIyybrZ1CajLAjs7GN9UOJSO9w-BsXfBh6p-rqrvXEdyu441j0zLqYiSphqilKhwgkoT3mLFLF_1wZSZeHS64jxeubtEq0dVrFXl2GnIAx8HaI35r4GUVZMjHpCP-wkKCFd5eVL-DkKpmLFZRlmn4_3QiyT-z0PhHB1V3tVCxh1M2ovKSeVnkfAanXXsDMEAU21fX1l5kiZl8hbWcQ7yE3HxOP44R7j9ODvwiXJqKlwLFpy1Uc5tFpINgBGDfXGVcPiw9PIdFXOAc68jmqO8LhFKHF4ijzydTryj87zgAMqeTTh5it1wORRUKuIxNz74psb-eWKCHvDPTqK5-74f4jtBhmcgCpFCTWWCsCx0_3XKH90x8xik6yVEO-ylLNVJIAXuXRLgXCyr4IjKUc6KwQJw7V6PhhJv314BXIijXeapfqibCs3jzzijLDpxkU-WPaQm0VywEsZA8AtrUIbqYsvGSr-xVv6FuPhkpOoSyiI2xRNg7JR4mNdA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67660db4e6bd26-39123797','','','2024-12-21 00:37:27','2024-12-21 00:37:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41837',0,'cd-form-entry','',0),(41838,0,'2024-12-21 02:01:25','0000-00-00 00:00:00','{\"firstname\":\"Clifford\",\"lastname\":\"Cooper\",\"email\":\"cliffcooper2014@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tXO1vr1ffPsFr3RM5dPMWDY&amp;gclid=EAIaIQobChMIzOPz7OG3igMVj5ZQBh0qMQfKEAAYASAAEgKa_fD_BwE\",\"recaptcha_token\":\"03AFcWeA4E3Gutb9CoBVapIET6SAj2cQVdBLxAL1CSOhOScRtS9QsB3LbPO2RyyGyXw4Kuv29EZEGV-YWIj4SvO_zUq383vLolEvLjyfKPSfhkdPIbhw0C-b3PQAJdMc3-hgvNGUi8qQdGgaRKUT8S5llovWDkHaW78JK6mgTz0C3pzVTT7mwR37rH8W2KJmbl7iGu4uOlo7U3MLjiPK2qrSjMRfm2Q1ok7NVG6T1GuMgH4pZXaR80Fmancsj4yNEv6OCSRScH-TkKEobDsQHj7W9ooGx2NBhdV908HJfuBQ1zA5uy1SWV21pMS3P6CdJvSsKt199hLwPT7-xYVvVrUBVMwVyfkOlZupZNd3tAS0yhwJoNcmIswrPvDX6zxR48nqVWGeXjmtvFfIasXfsljFLR7L6Va3Pimv0dIcycVyr0-DgUWEZguqWPA0g_G39wkbcnN8Bz4yYlMzRJ3QD2H3BWwVirrZ8BXkf0j9fVyoep35WJz0iz6XuPMkZfkQZ_Tfzn8cMyntA_9HKTTO7D4bdq6InKoI6AnUfzgB8GgDWL5FLh9o-o-uXKm4-QRun_eEt2UgJ2VDNKZ8u2m4_Vojo_gGGtM3ZvQx2sX4DFIRfkTRD_Ke4mMvWkCPBFcixWonnxbpRHjePeAVGBdBXjjtCvOYFNU3v6jfDTvpF0CtI0gBdZPyuy0wwsxCDCWgRjUKgdS30LrpE53UbX-k9TjzQwRjiSTT_Uqohkq1JAfb7NYYXX2MO3QhEa-vs0QZvNRdK1_6tNUSQGs9miQkKKq1GXEYdPyVdFTfly54JVpAVLaEQrKuQn5jwuTUBNPGE6ZDXTUqyyAEztpD7Hjwu9F5uA4ysRWpsPb-77P8935AGPqSR2muznZaZ2F5EpXU5M3yjbooCTCSS28oChvKyUNtoz3Vk_OQcnE7E0TdSiPU0MxlQQvLQkn7pUK2__rPATJO4OzQipDFqkuoQnW4b46paIM_YSruFuzvZqmuSpLxSN5CckAtJfrzgJK2PHpyPEQuzRWh_GY0uqefkncFenqOgSnyhw54MDj01K_lc4ryU9Gmw5Xgy6hgx5P8t5fpxfDpEzeq190JrCYAc03hV2eqtfK7or0Zk7KUs05xGf5YvRp4qvp2WE7aAKlKR3QVaN_s59OCeQgY4yZPOeUYPbCBE28k_MaDSTZVRX9KZ-VYc9Yuu3m0ttRNGdEccbrbekHGbFFnQ_s-jFmvlN5UOXdvO6yEj6_E6f6KylGnOjzG7DTavK_dayxTg0n1J-HCQgn-IsEU-GA8VpuMxR2dW4jfJhcZ_Z3TQoeecHsN-p0h2qgavynXca4AaPUp_pmwJ-oXcBx0HCsMh-3AECXRqpabp-95X0trLL1dyfpYN1dPCFPkOCa2fjfbb_AmR5xhCBT4joSsf8r60nssqhhoG6Y2OraqxUHt0vJdcSQU62PF7a7Mufh7_6VTGrvGyudcvqjw6TOYlaWrshmQtt2XMM15DJ4TVYf-5aJZ3fzsh4R9yeFAqe_HCA1xMZQr7tmCrdU98zTOMpjywcR5r0nMNLqnIbAOW-p6DMTHoK41yys1F8JhfG0p_ma6TTGSzAcORioaLcgXY75wIt1FAIFBvPMpMCDtJRkDidA1WFzm3c9Yppvenkwh5ZDhAflSUOh1SA_iQnwgsUziiljm7sO8DSaYllkRqwMy2b8rrjy85SGz5L_LeG3aqH3NX9OVz48xB6ZCt5WgHa7MEdviuLyZoePFgBaLbYsuZ0bMYgpww4L_CaAm1dYUVWyzCI2uFPwATq_zDMRVIHlQWjXkPqz_MuJZ6Ik5Vylk5Z1VjmGSzI2GSSNjujOk75Du7KG1lq18HIUmzvPEqMqv96fL5E8uQXk4v4_duAWbys4ym7oeI6P7Y-XfIdAVK3cMRJk-go_9RCHSRyzaiQIMTw7106xWnVRQfYN8zveVRVRWrRf8sBPsVKRQx26zW-pOuEclBpHKPN4oX9pXf05skEgIk_837RalD1iO2j38zVlZ2m3vLvae10IFK645GZwW4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67662148e054a1-32244283','','','2024-12-21 02:01:25','2024-12-21 02:01:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41838',0,'cd-form-entry','',0),(41839,0,'2024-12-21 07:59:38','2024-12-21 07:59:38','{\"firstname\":\"Andy\",\"lastname\":\"Wilson\",\"email\":\"awpt@live.co.uk\",\"contactnumber\":\"07917207702\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tXO1vr1ffPsFr3RM5dPMWDY&amp;gclid=EAIaIQobChMIlvqNjbK4igMV55BQBh07HTB_EAAYASAAEgJeQPD_BwE\",\"recaptcha_token\":\"03AFcWeA7peP-u3l0asJp_2DG5zreEf4Uh1pVVMK94u-01xUV3oX-tV8vKtC4sdoNJ2SdLV07QaMZj_ryU7TaHedc6_-lbR3iE0RVPfUniPFOvAvYiQyQfha1cWJUOd8HQia3TksJPRk0IpJENhmhFKEjKAul5_t5YO6ZSUcmvnzDcaAukjPUEQ9C2aVATO2VJSQ-C3YtlbP5ffEqAelQPzGmTBzMp3GFH3JoPGUwAex049OlSy6d17DIqwPC_ziYmXuj3auteJh2uLp-317iLIVIsquBg3uVXo9i3ycEn2R0J-uWJMWqKNdHmNm3dROhKzA9kSzx7u6A9oxnRPq4T5FGJ02FYl2DtfMBvttV5SRX-Cb0azfahMKhMstcVZckl1-y8MZ98YMTUJvwjo2-a11DDeBV636yqW2cZv5L0xXpvzIQ2YMjRb2X4VVqWqk1qGYKwlF4RzLx3GKnkGp0_VJgAlAXVEHgdG019ddKicO34svOUdx9nCjbnVDso3A6Kd_rilJHeO7RGFsgeWdGSHMiAr205N8djNKg7AukCz48IFBRzdj9N8pBmMMKgACVxowfxbR3pRT38EjT-T-PkGmDjabWSLWuH4F60sSDDyQpUNS-K5OF6tVphcXcLav5--n4uFCkjuYe3jAOKKQ4_QXjdiVQvi7b3G0hnG_CNLBlR6FKmlVhOpZa2JPYh9fege1OW16n4qzTF4JsJN-6yBgfLeDxSuAdCRfai-Iygbl3J3HfGViNYUmxuXWdE-P_RrzXKtw7_uF2GLkphAr3pgPXSluT_qJATKmsI_CrcrmxWncsd9WMNtz8QuSq4ezIrWqXQjDDcj8DDqeU07RwXO-4HTcSnHyJfe5UI9gFJAc1k75NrYgvnAoCPDTDn_IXTgQShq2x2y1a5p5DwuxhsYQfpsJkahx3XCQ7g57rR7VifCgwEMpMjKVQ2D8DHoR99-M1zaKz8xs70VaY4blt-f5yqiJxh_RwW3WVXnFHi_oT_i5CoO3y0omVrfgP1hAh37-aayPSQIsmR8HSBAW9LCsOb-INtDjuv2E1Y8AFaKGZjTkyJcaik2hgQXxxtzqgwCqvDVUh8ubEcz_icpAZb-c2YOXZRbc4jjj_BAraAwz_NfhiWVBsvx2TZZ4XMqXX2suhuY5XusyseLk_OS5hmNUk7A_bazlyMCC6RKgYQvnjkQrYJq2pCv80A4K5w-r9BoZi4oLtEX9UepPPUr5QiFw8SG9JEiDmPK6TtB6Kz7koF2kp_fLElBBTdQCdq-VXydTMQYUiwgxThLZPJEMaTf5T00SjOyyLuu-B5RXSd5LI_NOYlGxZqEfEdySjBtlPMuhNxcb1-tvX-lqMjRapDdOv-dfGdkfri3K6qJQ0ZjUklgbw7wEkwrfjFMVNF2pqAlrirjj5IUMa9hJA__JsBzv2hEov_g0tCKIJ1PjdHZhayjiEGeYidYkqF9kQwjNnUGniCbKLE5dLiZ7gxTh7tmjkjJhmmR7G6998TTL33bWPAd2liHFaHwkPKOlPHV61Ft6BMAhkej49N59iht-gPUqHgyEoCerNMRhuWO1RDwsIr_uGhpIoc0OIC9KL38SMvkkC-ZP9Rfu0u2vh3FvJ_9P6W4KVl0WDDQ3W960uS5P8tR24V06fE-5Bo4X0SKa3siwA4iI3DtGpCfwnlQUl6jt-27M17FphPuIqJgICDEG2W1uq2z46Oi_eZGzH7oeE-RB-4OtDJmwCODFRPc2XSBPcpuJfdM5DY4tgtHvW4yZygifY1wwRRsxe6wzYYP_iwogpNxYOKqpMtsFWgDWeFCGMwH9kHhR6n-qeMLgWjtK4fP3oi49kqnxd-cRqlvF6eef5sczLEGW8REV9PsyRxUF3t-lFeEyoJzt6sQx9EzCOPXRyikIFQlXNrriseWNFrX2ZslT4a1apIayELCQFfoFwdGKB_IFKjjZhDTz0GJ5XlwPOy22O0S1z1xMtZMKmGrYwk5OK4fhSpWnwzCVj6uTYz6-Psu_M2a2M77vGvqQlm-jdGB-TJZMHEZvfgDyKj4ump0pOHe2Xl48873bsZdTSR74C0sIPAzw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67667552d54601-36272385','','','2024-12-21 07:59:38','2024-12-21 07:59:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41839',0,'cd-form-entry','',0),(41840,0,'2024-12-21 10:38:51','0000-00-00 00:00:00','{\"firstname\":\"Sara\",\"lastname\":\"Utberg\",\"email\":\"sara@innerspace.guru\",\"contactnumber\":\"\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6T0FTY90MQ-iJUqWLhAsrQUI_LtosddmtjunJG1MUGH7GVdHfa8Og6CEZz6QA53VbBBww5XDdSFYjlVqQE-r2G42IUqymBKh8aJ0tgRSjWvupURzX67F3-z5SwHi854r1aqvrK-OqzVCve4jYCc2_-gHhL24jwvgrL8EX3GyluCq6dxprblJWu9oi_vs4yHFqbCjJrpCZ-FnxNgiIsLRq-KXqgQA-PxbSmv-fg_SzgangnbNSHi9omUR5c2enGr6wnITN7yZtDEPvpHkbMEwlGZWTCZKCQ4kyRX1k7Xqr8DZ4xXxnvBdTNflMmjpsemzmWlDI8kxkUxgRT3I3WwjiBYjzRxs9TBa20pHAwV3e5XJ3W63Fl4doObQfyiCT8veMJnBPxAU_4m3U4FKD7eviQ_Vb8BTO8PlbfxmToWlxdiEL1podnulK1BqF-EAn60UJUbTfV8byoDyhT2QAy_FY4s1y8Mf-3thzYpSJg-AgzrJBwopc1bcNG7kNMAT55MonyY-iwGLVeBmA9HbXmVg_m6fkyd6GYhqnuyPhkfL9GytalbBt_N_BvXOoxKINHcZNmgPDaa_Uy-YbV7HxU9W0civwL6TpDpoH6oB_qRDzWk9T_PWJX9Dq9fR96wdOavTPA5AkP-jIUpeKSI0uZcK3MDSE7vGm7UhuKmvAKBMEfq1u0Gkd4-v7LoSfhe1nm_w1-ofOdShVdCuKeH1im9jFK6fH1tyYzW_oge8lc7KUfFeYR20r2MlbuCAm8J5qjof9wOp2jL8BkzJ8l3tm_W1OxrfEJRfVAwaVOHqn1nclBWoLvCv9LAR19-Rt1Pc4qMbCBkT7tAZaZLpx6AaIaW61GmStw5i-fnY78zuDmZRa5dJtLWJHrcaILL4-YBxBI8zRgoB59VQKsx8NHTd-wf6B4EHWGsZSqeEIAqwKbjKB6pFT8SCka1XWc_73kcLdML0l8HsogSHqfSnICmruoJ8P-bO9PGGJCRAiSZhI8M4eeE4UMhvAF4eXqrrN_kcjGGpmzwVwOn5bad9hW1_FTA0Jq3h4kZcXH_0ozLnDsV5cr0f0w_wJLCFxuXtBzuHoxAKtR39SJOZuPREfhvWJvJrvrYJumrI9i6QWQqpiavv77MD-w0mGpbJDz5gV_XGKxTvpnE-XVQ7Hd7SLZhh_0YJ466pJhbSc_U6pQeX28I8u-xOHACteJTlLktlws8wJUYp5xeSvbi82hFR9Ay9UXb3XFHHCHa6mPYUx72QeXIgr_3jORAwEMnQGV88LQKM1r5pzQNsCIwKAPWprf7Qk1XQLT3bk3IIOw7tFR4LVNWVSf27KOBCmQaKME5AYTQK_-3lvrorUiR_VH-vOMHwDuS1MyRBXMlxtjoAcT5F_-LmBli9dUOVw73-gce8VpRjkD70rOgXIqL6-qdzGN22q7UjbVXvA4b5JVquPO-ep0il-pcq9M3nlDKGLLq-XZp8ajxlbW1MyP3hRcugyyfYrBy0kB1hp36xR8ZPRkykQCF3rHjMJzlqA3J2GSlbTJEeFecnjus7XZqyaZWHs0swAxzAyGpEPYFmNCVm7uAUSf6VcNTy2IJeqFoSmbnoT4HNFnINB0T0ls1NwpPpfZC-93UG9oRJiqBXeKEZA4_rCTiKrbm9RcR60wVn6un6rOxpEXyOEPQtRPiWLCPr7RK4PNiYruhdlvBgw_rr8xLdgXetKOjZsAovNgW3VPYTabm3_NjGtpnwDabL6oy2fDmcnfQ5TUsiynSAmdm0yLJFnyLZAHfhIu8eKZhYaN-dgjnw06thbX9dc7st-8QVcaDNiZOC1Bxbmi4hPIqQrskyXg96_xbRZt-oxqJWvJgtFYCGDyj1LamAOsPyjC7YR-aZgLkrrz74Vgd3_iM2Ydpq1Kg8IYU583-PIbBpSwYNHpUfIR4S18JD_H1YxhBQMOIIJEZV3PWK7KRXmmI8g5vX8MNnVye9V40O34JFDl0aw9SdrAK1xCId-DCWZZ0ZYSaHWmftIXVvoL-UIgi6i5-mvUS0gJxyRu4gpwUGHIUJ16QJR0diNzooR6\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67669a0d7eada0-38919837','','','2024-12-21 10:38:51','2024-12-21 10:38:51','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41840',0,'cd-form-entry','',0),(41841,0,'2024-12-21 20:35:53','2024-12-21 20:35:53','{\"firstname\":\"Marta\",\"lastname\":\"Zaghi\",\"email\":\"marta.zaghi9@gmail.com\",\"contactnumber\":\"07720817969\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7TXOn_-bWzUeX14MVpPRJ4_0UX_bDffSXFVu5-1g11JxT6akP_UX9JbZ3dPP4FoLHoVRPYGnCGCvm0CJY7v1mfzPO_Y3eiO8FTaju_ubdb1mhwXO114E0_q8_Sv89smQelUl7rG-kZ-Yc5r0j33QlT97mYWj5e9x_tN38WAH-Ji9iJXdciDy2Y5VJ2wjuHORAGTn19gOE0NcfNRwdza29pGTWoGnt3AtOG5Xo4n-RAZRNXdqmtGtxovqO3TPDawdgZhfQOMfzKz_F8-ZFvdhqLXLs3bp2NZLVVd84irQscDhUo4GiuDq1nGjGTAYc9BtRMNU012nDeqa1NXKWLXa6Dmt1voik1ynhr_mmsWc_y5bDxIwj2BZoagF1hmJBowG3rHooAFsq5EIIVr8x60yYFFs24BS7Fry0dOTSvKnru5_Ha8vgs5m5OGLAtjmk2Cx0rGEZ0x7kPXVroEF5a5hBsv3KfMpYX6Ldx8oyCrKt584383XDVhO7Ub3VkCC1gWSnuIXHKj6mZMYlGx09nze5XxSQ8XYxXY_U8UFcskPC7W6UVhKZ_b2GFYR1QmGcQRUxRDgRuZLu-LSejgCZfCxOs-R-pp2U-XAWqrO1LJjZzGxwy2A7fyydNNLaF4UhF6GBr9Z9tAS017at9m4_UkQ9w-yEpmcOyQxEu7b_xDvMgMOncG8BO1ez6FH2nqH583Q7wzajua1PSYrCMbzsxeyth_w_NWzTELpQ1EruKOHone64fH_9BjJZgTZWQvtLAiPKIIw8xISA_MAMO789PL4TA1pMG79w090pGENZl_q9qQ1jsYO8hJOLGZAi_br6cVLnOWJswwvWMiZEK8LTJXZWTOVbossX43Sp3dGu-LMDNe7wDJJ2NYnPQ_rLLOWsVoPqcjUXJmxQjQzXuNPH8zHIhRD4wmB4sIZIWJYNxjX6lw6Hqs2kXIezHVQkegrYwV4I0KBnZQEJMoqZckjSHb599vB7yJQw1SVm1YHMK_sLGdZgVjaREi7HtxvtwuQMdh2jCTkCwLDz2Oaov6VHl2vUsg45wGInBPnNilyn0hiYaZkMk2zVcmqz1RiwGiYFA7luHhz7NBRUcWBpAtVsCphjVg7KXsq9Gbb7Ngcc43dC4L3B47CqJR3V3lvaVmLrpBIJiAZ_nLwYqey82kGhMNXsyFZfYYVPDvaJSttEVe9STwEWeQbijMFYkJPkuU665dGMxEZ0Ty8DS6BYIQEmfXx1UQ_9J1VbHq_LWQno0y6-FBoYIu99ayPNT1tsSqp0amo83jOroT_LUv8_6YAWGj6wvR53g2fo2oqaHSaq98HtoOGcVxiYF1rlIf_V1gnr2jN10jZmI-KDJyWplD8dEz3ndnGD2FPkjEi223yeiC7yToNqWT9XSypQcdt7KMf7zIGqWgS34xYskcyI7Qq3mNRvDSKeHwPIry2CmIDVtaSqfw-NaHfVJoGXfxJQfo3NBh60LCplbo_zLiZECLhGDiA3slU8a63Bj4nY0laEU1rh6ecebzuMvqhYFG0H48RwldogWzqhftUEwn7wlVGpPrIDvA4-C0Qb_KcpC6ONlS8FAEYA6zQQXrEfVGPBg_cIFYtO8jjfhTY9yrjFEt5_1D2OorMgbxfdMexbXPQw4jk9apAaSjku2Xz-VwFNHyUiVcyzXk6bBnR4HYbExpFiIizisPVmICKlcn72KHdcfbOrVJ2QGT8CWKaP7wRcbsEtpIgPE92_ckwu_b-ZsvDMW4lOVfwrEelAdgMPQ7Sl65uWOm02VTVh4Nl_nxBk3kvd-pKLLqriHWOrBMavhKFjWXwZKA5EChpPDHMEZ4rtHlKGVr1KvEMHYyB3euFkt0050PJNpRdqImntLETeLb3uCUbn7EO1qM6WJL-zYDbKzwQMcishEoJmNTEp9ea--UoyQqOJl0nblhwjp2SYIzJHDzvy303SiViNysfXhetauobuNeIpo2rnFY644LYa9-CRQp42OZeDJ8RyHE-sJNkZ6XGRi-J8wOFFa2kBvaVz9GAaPCQ1YLniQ7TdlZbWIqCH-scuVF6hmvWEqLFXEaJvpW47HNLcyFA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6767269385c113-80171314','','','2024-12-21 20:35:53','2024-12-21 20:35:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41841',0,'cd-form-entry','',0),(41842,0,'2024-12-21 22:34:05','2024-12-21 22:34:05','{\"firstname\":\"Michelle\",\"lastname\":\"Magee\",\"email\":\"michelle.torrens70@icloud.com\",\"contactnumber\":\"07821450054\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIk5SL5fO5igMVu5VQBh03YAZrEAAYASAAEgLnyPD_BwE\",\"recaptcha_token\":\"03AFcWeA6rFwUU7pZBkfjMGqKxZq-tR5yUQyWLMO_50HVA9j4paPxhPF0nzXEHWvWIYoFL5tAndfFr4Vvk1gVGSVs3Z2YC8yDUT8XD8kf3J-aDPi30-mb9vpXpGwVgzSLUZ-AoGIfXgMhhA7SyKMr-mcbYE3Lq8-iy5tjD7vVuLcgheYnXPw-BZ7C5aNLjFf8Spa3TtzhzaAlPA0GrJBFeZUNj69yXu8GWmc0TswZCJoZF1x92NPm6IihneWvALw6X713N-GKzy1BRE6ItwJqXqu53KMdJ6DwlY42ljtt5IYXvDBp2g_8rrY03nP1q1KBq2WzRJxSMh3EuGSNSL3GlgG5KuvEZo2Duq5ai52VWqQIrWykoY-V-6CBjTl-Xkwx2P3K5x6QDKurC5q95R8aiIV8QZPIde-2kCVpf4m7iZ7-EjRkgFUwMHnNY9MnoClNkw9MZJ19nA3gJOrWcPRaOpSX9CfnDc64pL9q9Xi_gB0UpCFWuiXSoCgNP7hvF4O6TvV8hvsjpyXWskiF1wOSzRS7FvJhiVq-BNCrQd9Q3GwNreBuGCNvPPfwLMGw48eKWbYcTxb50Jnh6JqPXW4szLTjtU0F0GekBm1cFQ_dBhH__7fkfmPlt92-BFBi6hBqp6BoF3t9u35UcI4gered_-M_GkdwSeHPXqlA_PowISAOUzy6vKqRniEaFV0keo85OXTcwbWMxBChQviSfO4qp0Gb4JiU4OlWxn6IuJBwWSz-m5oLucSJ2TWT7zvPTCoFtNuBIt3rxWJoFjGySnKvrJm6tKuIYuDY7aWv6qj2Hn1MsKDKOglnsgRFkiEnFZpAtTXxKTKz2kOeefMLBbWnAGulGc6c4Y7pZgmh6PHjMKB5BKQ_Zagg57i0tdxIpSFzT-bUxWJVUe_FFpgeorfslrllP8tGRLEgn6TdmZ8c4siTp9-7e0_Aw8C1gHDNFM09em1uE4u4CIuo1HyLdWsaaHBDydvuz1zN8pU8Pbu2Y98ABdp7t0p5JGiypY0VOGwivu5qygQvoTVyje_by4G_dZzKMcqTrM0yE2SwCWkVq6hNO6UDcuQfbGsOdnkeNmnYBGnjWA2KX4me34qNekpI31oy4e6uneDDskPK9NcON6u7KiXRKfIjtL3AGaDinRhFn-exwR-a0waqz3KGl8Q6g8hEW2EF6cEHtXdRWkEu35asykFd1Dd-N8ksx80L8O_23LTx2gslr74HCDMOaf0fRxeetJiqmd29kgp-793dv_hQd-iwx09gbigZwpkG8rVefc0NmYDfvsoCc4mNmff7QccaTalNXqFNxwhxofmaPLGDav9D34xQAG2rNFHrjvv5bEJ_ezq6GAZCfNqZ8KxPMZ-DUvHcou3abvm3fHym18KFrAsq8VBHDG30FpsDTBbhXsfylkn6UkslwP6rsgpd_goZf3xiAX0DwFVz4_OxhDWVPveiM-dKKpfl5R6NsEs_WhTHmxgXyBV_5ETBn0UMqBJxSAQuKS63CihdjxHK-QJQ8-edg83996eKG3uXoC3bE6dKzXFN71UHM1I-QbOmpBxJvItciea7VvSIM4EHaLl5kU6HoZI25pu2SuxtV_NG-StDxIdQw0K1KBDF5m3oE0_aw625YmrIvyttpIh2A-wt7LvHKo1ganzB0kiFZyUxrjgUB6kN2pfiVFshf5QzfTRXOI8KP7OlHL26ntLKwlDVHtBJTaXNtfJ5tkwWMXVpjOkOBsWc2-AFAEAmHTGvE51d8CbmHLji50YD-dXOu5FTXw_bcpI_DCZWL_KhL9KcA5wKLhnz175HQ2eru5D8HiDziEFUT5T0Fj2FnT4TOIjd7AbXCzwcTpQ-t-SqnRPgzeAzfCbU3fUg_nXVpnCy2XKEpzS7pVvm7366L8BYjFEwhGOZMqvpDLIYsTrGCV_tf00WuKmz8zqRMTpU3TZCTHnipUpVWt5L0tDwIpbrRsuFp7fniGOmosxGzhOuDvJ1SfVC0VxB8R-RPhiB2VhH7ShqWZXZloFGvKfFOZSRZPip91TzCVyxUNoct2soyvoccbaYFM8kKRdkJehq-0s2hC-ED8y_A_EOACQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6767422eef2587-93830863','','','2024-12-21 22:34:05','2024-12-21 22:34:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41842',0,'cd-form-entry','',0),(41843,0,'2024-12-22 19:00:55','2024-12-22 19:00:55','{\"firstname\":\"Sadie\",\"lastname\":\"Tattersall\",\"email\":\"sadiemctatt@yahoo.co.uk\",\"contactnumber\":\"07783509046\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAjp-7BhBZEiwAmh9rBXdHplivTF-mwegsN65bBU2SeFBdXn6ducrkdQiG7PjH_mqZed-A9BoCXKcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7c-Hwe---X2VM69NMWIEpSlIbBREcSrPY-S_iCstb_Tn0IgxD9ZgUByA-Nd9j6ijxVeEdGetRbPqmAvPyNDfNSNJHwcBdvZlQtlLQzgyIHy35ePGIPAHSsQrlbUFPZHEIjePG-8z-WdafmwzXg5-Hbs6Tt9Gc7aMhFioQn9Wk2YRqu9Zwromtw_rUmh64vL2fcyIiNTV0ytbCmXHQ7todCQKjz_xKd-aqkldRPV3MDwNDaKr2xTt0PHHuqDJY9yKOVRH37N6rgdJkujcBiGISW958GvHMhG387-5gOwiINj96JOGx_E45FPxZ04SKnEIQL7z1VzmP2eyr7hvlxBZCZwjhnN2TnsCK83FeChINZT7riAxWsb1c-9N0D4O9j-kWGi2cd4VkKFWkPZuSJsv51rWegz688w4Ob1TN3qchfYJvuk9k6X-va7SR4koTwhjyD_3ERc3MsmnpXK3H6HNxTEd7ux591qfpSHh3aGmUUEGSVSEGfLqJqRQJJKzhd8mDQmZQ_2sLQ7J3870LqGfGKP8Zey2cCf4K51vYrLtVy_p-LuuHGCIJU-wKKDcSGuM396o2zKSjm2XDuQeCnwK6FzVdtrHTsZIvyfPn90PyvxcfNV058MnYSmfGv23ez_oxSItH6BzRe6gwN88LTFpzPsdqdjo8tk0QC6Te9gci2vdDrUMyTFKiIFCyM-7WWXNRrOPlx_--QnGzfZUnnRE52ltW687TJYRWxp21TydWRhYf7NxvxXMv74IeSkqulUgt-Lg3mir7q6Gis-F7_ZdjXD6B6Glny1pGn7HCdFCNIFp40F-i6cw3VBBtUuErTJ3QQJSYUiNF02dA35DcDl7PaZz-FtHhzbf8i6Y0oTU6w_USSNeGk-q5VO1U8C7yRXx63ZITSalX50903UmgYQFNS8A9JKTsgaBV08d5gLLfWl-IxRmHx9IM9Nc4yEEfinOdIgQKqkxmqLzydd8xJNM1LDmCWk_P1eYFwCql1MTld6ET7SKR61wEzDolTRP2nsYNyeeHPq4BmC9XVNgrE9O74m424hgGlmUQCrwlJNoJ8m3HzGjjbdTCIbrJP6wUQs1wsttMOMPoHGUQQGtRasZrjUYiHAw6sX5n0KDLvJGHqheX4PTcrevfvYR4s6bkUu4cWtLdCVfIrvRd6XKMLIW7kl6EferXrz1ieGHU-OW4k2SZ2N4QdML1dQwRizVXDO63iDf2sltPntwb2RiaushEixH3D1aU0KKsRLKzIWdLV6Bo1UjWoA63mGC77AbUEY2vbqXtA1EQ8HSi6jifk4nGRRbiE-3Mp00_XsQJtX_77A5TGsH2tGZ_1b1C21KtWTOLYd5lYjTedFX1NWXZouTdAMgC8HDaUIL2IX_Kmbdy4d90wZ-BXAND8r-X5TwrnfSkSEz8d0b70P4LngBOa6me6q1bpKJUuq7Q1vlMKp8RCCDzslyOMyHecPth1Oe0gAI1Nvz4ZfQ8zfjgsAYXoGSDlyAmh33FCF1wYM326WEZHk-UDyg02GTDXm2SfVUE4ChH74s6E9uYk7UoR1zw7SOpco_mp_ryrlItqG0vskZ8QNTQ4Ia8pdNVm-smPe7w2V9vTs3fCK69nqnoRSZZtD_mnfadXf0pFBzVcqDz0EyQ3taxCYE_Iax380Nv9c2ZPTbbeWtAWK-shAKLU8ReUQ4GbO9R2E4QRnrZK0khOQJ6Uld_Bn0tRSdOrtdaA7zQy6HB5XdiMoIgeiO29kAItPDr-EbN45D7HkJR2gBuOXx_oJzYTqUYtZ2IfTenX89QcTZVdcmMibK534BkSvusliLzMJnZsnn1O5nj5qinVc88SqrD4Xxqe9lELG14N-L1L5s9pExJ58jdMtVUeLRrON-MqYo0K7A16PWIPKK2mn0zZG71pY_gC7sjGPBg9H7cY1X6xEApdlsoznQk5KMGDOzl438bewAbBEY6gzg5_zjoLFzV4txjtTyBOtdg5ifxJkTS7PUw7Sub2M60XpgoISjoM7fGffA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676861d8595d36-15724339','','','2024-12-22 19:00:55','2024-12-22 19:00:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41843',0,'cd-form-entry','',0),(41845,0,'2024-12-23 19:39:49','2024-12-23 19:39:49','{\"firstname\":\"dominic\",\"lastname\":\"parsons\",\"email\":\"dominic1parsons1@gmail.com\",\"contactnumber\":\"07784970993\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAsaS7BhDPARIsAAX5cSA4ngGcS1-PWOChrpiK7qe9SFOB0j5OIyQITssp6D_tVtdO-qKlKAkaAr-vEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7DaEXlFlTJXJWR562_Kxm25YQejQ69R45WwdKvt2WJDvcvNBqV-3VHF3XOx_1cnUf4dzYKQLF1P8RFykBeKk97V3x5HVz_l2KUBx_LanIrZUJj5vy4KLVGnknn4OWMmxJCD3oJvyORg7UDrLNmGUsqIoLCfmDdkfYkUCmnHzFR6W_aDlzXEU7IyWw1pC7FHZVnllngzpB_83xK9Rk1m6vYBMT_oukM1AjcgKOich8tDyaBVLl9Vf75MpGIkUEC3b1PJPnl5nBDiFL8MjrzYLlGXgoYO8RbfpLsRjsmfvCliyOPMdi5f65PW6dhpsPQoP0vaOvMwKAGe2DkmL6RmGUeywxtI8OCPeicPfLJoPChDs9m9as1neboaFkMuDHAC8qh6gA0gM6RMSgoWNG3XEVp4wgKNzPPdXTY9wtPrdgMPrqNdMKY6P8Hwi3DWU8YMDUaw7zD6dXJAc_zAGI9Xqrh0gQcHbCnVOP509QhEZrS_5V12WksXn36shcZ-efqB77875o3_E8U16uSOhkd6v2NGrB6IdM0LR3Cj8uc34mG8dbz-2zXWltQP_EU8xVthZmihc2TIO3eERPKh7PI6pcSiTHMm3yZCW7gzA8-1FAoUIZOlJRrRsNcBYoMvByU7hiPPvc-hXjrZmZkwolA-jTkx5DLXpgeKTZvVpyG1ijibrIXkBTPdaP58WHps0FXZ5GO7Zm8crKqQAO7zjn_R0RSCe2uoMKmnQxPXKPgdry9yKkbGhYetkZ_LFvupRZ5IYpGX_b3eun4Z-to5spO-VSl5SK8PFqD6feEMDUv5U-5-iW2r4iTzL6QYWxUtKThhS4t0TdwqxjbQYVrLwq3tvsAjtiP0tOHvKugDzwzlDK5fjhnJU6eBQ_bdXQ6XaR1aEKWQDHS933zRBO4Fkwxyj8Jty0JTfdewhvZKtaHupElIe2fydGN0dRvxEIJCTDRBWWoRO7HCLvJjngzoRQ7Z8Ixuczo9hf8VernbuEjgiwveZ9cTfa7teGVX44KK190Dxl9e_spR_YUhFcmFJj0-NzNiI5EnNMywsanAZvnQP3eFOp8A1kBJy8Gjsm3CHC3LtzOQdz-SW04wyDZQZZD748gRrUI1OY6biA_WBd_bOYeJIoyIhkQZJwriRK0dgc7aLShbuR1czjGGGPR2uYaLXZrZ9arYzjPj9NPgi3gbvUCsWc8Ug7JuNJOet9uWmSWClICC-WSejZ9DSGheJxQDGESSw_FpIMaCrMoKIUL12jGaKDOrrZSDTptaiKJ_odPDVDC6h4sMUE2Fb_v5MF6Nk1vaOv9P2ybdFvOj_oQQrtGSAY8mvZ4GagEmt7RnLWI7SFXPVR7n7hcCb0nEtsIn4TCtbeEMEL35R9HByAq4pT1H33uaDJ1WjHmtaqO6uVA3VynnNe5DKNcPVXh90Nsiuekj-SIUSilk1lCZ9lB9BEyQ5PuA4zKFzrIoqtH0od-v3p2_sjMsT73dLPXRu3FIrZrWYJdyrP5De5Z_SxcLQnxQL62Bqs6kBEpvbeAHLPfHqzFw0LgAIz2OQvpD6W7TFWF-NOE-KeSd6QOBQJdSttC4KwBu6Ilh-xotcW4sqBgcHUKScV5NRlltGT9kL8Iy7gtiTA-nnFabel9d66_UQgQkv4UA-gKcR3uQbDSC1U4MQ26VdzgHA1zoJRRelHHUnsVka_qagniP4kir5CIEwYNZ4vd7ZRGDgJbcQv2TNd9YUCcFtrQD0dizgTaK4qvGMJg_LAlMkPHtdPNKW8RjpK2rBJXQZSX1tVgBmfHBXK-IEgM7jkn2fLKxnJXcpYjt4KJT9OF9nkdrXMohlMdw729oxDdLe0nIqrhP7e5YXUSwH02KZyEZ2fZr__UcQ1xvgSxMOQ958xLUuquWVwu-C_Io_jaC3KqHU11CtdjZfKN2-ZbvpShZKvGHWOA_TQSAk2DDxg29w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6769bc73072ec2-60417360','','','2024-12-23 19:39:49','2024-12-23 19:39:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41845',0,'cd-form-entry','',0),(41846,0,'2024-12-23 19:46:29','2024-12-23 19:46:29','{\"firstname\":\"dominic\",\"lastname\":\"parsons\",\"email\":\"dominic1parsons1@gmail.com\",\"contactnumber\":\"07784970993\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5gTy80NxbxHRVsoHlvak7OqBGRui4yUw1UeR9AIeVmQYoFZxJNV_CsuwKGlx2m4aqMUwSu-A72fyb7UNUK_YvBawtGh7P9U7FnaCIL28_u-vhJJLKSGOcMBdlSypNJZiS-BbVn_xS8hH-vSDK5KL1B_bsIvc1pG9hZYn7hiBtHbU6QSj8VOdS-L5C8X4F1NJfG5-Qfdn-sHwAqNswlb55HJaKwRK0N6XChKLYehUYVzfLYNusQbdJjjwmEUrCwOD_ibwaSWaEPuNE7C-NCjFh-gyKfEdyf5Xi1s1VgkXAI6_Pe98MqeDQpqEHEYHxwB3FT2egK5s4OXPClwIchL5IosflA86VbYR8uPQhTCKWa9kB12Uzz_RSRm_UmuvdWf6CcpAno3Vty5tGOwzVKtnrRSkMAS2TpeXifMJoKFBwMEGNOpVtQFypC3psCy2npRqkMIPhjoCJyj_W67CsXTLj5QlK7v49JSLVOIUVNlXvc6zpthi_PDv9Hic5C5_AvYuMVBGIljxaT4wZ4YoGXFLMRyEKmfQhzs1jHaWiPGFn7MfvL1R1G1z3tH02j4XGm7dGkjH_iiQDf5FypOaS-nY9mUXrah946XUxlAk_dsFTnp38WJWM8QUIT6sD16IG6vmELDXDr9uRSR5MLIEOxL852_Q8RBTkU0Zv2xNADd-RTgfPxUTYsK4qMFdsw2eXdTtfQsTmKa8e0RxhGBhTyHMmf_PLZ0bPdhfZme3OrDXjv3Lbgb3VPG6m1-1HnLwxJUb_n-Ga3C145DVQTBh5HRVTWvkjYw6WM5M9wFEIg6ohywSdfJHQncYzvp5mH_LHEK6GoRIT68KG5YB6ZIfsRX6Qk1uXwnKT2Xy-2ZA1hjv0k7r7p7S6E6wluT1mZdBl5LYSDdAonDIthdI7In4aM3Lz3QkqK2v0_YKKlQYR6j9tR7z-U3FFzK3-QpyQMWBaiVnF_q62R-yV5FH8FwiwJNnycE3Auh9tm9DuPa4VlUfbSv_yVIYMI-5HSgJ2Donlx_1svjEDBQLYPGeyrd2eIGH6ut3_pE_FEnIBUu99z10J-VLfv97Lxz5XqzK-iXo--Ry7JCPWEy_WEqEVfQ6WVHcBzZIKPhCPTkYPNUtu1E4j9Qkfb2Q5AdC-AGX9BS9DhttrC_zzqHnh2tm5le72stZSnleM-Crb1TXdGQ57sqapX-IY84F94VMeC4E7m3lePAqvS6tUmDUlpiup18_bdFF5ibsTzF2ii_emrZREiz9-9lXG9xZ5MxGVl9VrE5rbYNG0flPOYr7LLp-xW3L5xp9-YtPBSyP9KbAZ27NwBELGbMJMgc-vyfil0a0ZT6f-2M87l6aLmwI-kBuFNCKDfsDEFxeenZMIVbTlo-XsZNUuauSs-TP63qp1sqBxathAR6HRu-dTUBAZZqmUPAF_pD_1KySslyNjA49wZlNN3DH9wWoF6wO1LzrUyUuIB82CFKY2fUMKE--P5TT83nlt9LquacnH2BSnaT1yjd4ROQRggDiPsUyJ-W3arEaV0cuEje2KlUKpVNIGfVmN8FEauT_BqdEw_kJkCLTM5QZYiIyna--H_lNWaVmkKnVVd9sMSeTGZamhiVd0y7lsszqs1s7otC9zzWBOLPggUH4Uyng9eYyisLpD3rBXjL4PtwrHz4kdJ53MVqrHBdoP0r5pK0K7OyA6U9i_GJWpdvOygqs0vWAWkwW2LY9klfyKXqHLHsg6u9pGUI6SKzMNOwsMnPDpZUmKuD7JdO0hyJUx5vwCR_HdlA8XRGo6Ecxxpu7s-5eNcHDH753MJQ7dbj6GyEGLsnNXW-ekRRyleQl4noEw_4pHXe4nDdzwbR48YHh7CWhuwUSZQRHHfoYwSANa3ELp0_KJTm2z2wjbkUw7i6ti9caq17AeSBBihDIGQTDSV25185TTlNrWVJo2fU3Y1igZ8laFf7Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6769be08b3db98-82867613','','','2024-12-23 19:46:29','2024-12-23 19:46:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41846',0,'cd-form-entry','',0),(41847,0,'2024-12-23 19:46:57','2024-12-23 19:46:57','{\"firstname\":\"dominic\",\"lastname\":\"parsons\",\"email\":\"dominic1parsons1@gmail.com\",\"contactnumber\":\"07784970993\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy/\",\"recaptcha_token\":\"03AFcWeA4uW0ncpVwfvQexWBhuzYvFEvXDkK8bON1HZEGUiqYGfrJf1ktdc3r8iEjJirIWz-ZslvKNNHIhfAF-D7k7PEpia5G7TZm2p2C47kMNLFwr3y9XwLspa3mG6eppQCVB6j7JcNQpf6Ck2po0B9faEHUkOIRLULUHwaurrxy907rb-YFsx6NYkFEtnaX7TKHqzBh6lt2mSLB-dQYkStzkN72a81Yl68TxROSjmI9MAfPEKn7qycIe1kYsjwmO7tSTIvv99koD3ch2mOo3cd661wVfJkVllxOlEKRYDj7YZkyKfctQVXalSeWiZjM9H9Q5XCetdlyYgS8OpGHnEYuS8zl12lw-5bAgRxn369xcg3EdwpMKCdoHC1lz53c2LBUIunfrelVWLZRJwWHq1bbvPKN5ScJ77XytbeT_TmsDRnboRSm3sV1ACj4TFKcKnRwhEivDUi97WzCVTKiE3FkGGITRHXYFqS3PYcmlt1o3MykT-CC5S4zGPK-6umbbGHZauzFFPlxwH7UO8JJ7W75TencrNgCAtMIT3R9aa-o3WJ8N02EO_uwLyo8Gj57pP1XlJU1PPcsLwSdb6NgSZi80WfTL1lj_5aI4AhV1MS9rePVuy9h4zb8FNjn13InmNbQ9iTGNZg3TQQpI6Cvix1RYeYbl85OE6sjfvphtaBKZR1RkuilxWLxN4IH-DvkCI134Bc3lXgkKnRAyl0YnftEzTsaoit3kY9TZtxjAPDcQVJiHbcwcq-hzL2YJFNykK9RVGeRmv4CbGB8-D9IZXDf_RwpRICOqW7N2rmNi3Wy689ubyAL8YAPzxaFdsmrUIEmoRWEaI7BLzs_ngnz87sYV8laLWqvCgZDI3GyrCANYeTYoZzBDAuevaDPNEzyOhu-hLL15qsoAzPv5yGjTjhI_6YT7N0ScOqK410TUgpM36gvf-8gBoVDweh8GWXit7KIZCizIq5u_mW4aWu7amhngPzs91YxSUty9zpkdjz0a7321VpXOFiAjVBSfNiewiGTJTUmyaFUmMSJBvYtbGEaSGTqOPsyugvepvlU6Fe9lMfqM1J5spfZh8C8VcLSy1V9EXfe2HodprpX9CkQuDX2OAc3SZTE6htw7otqLad_Ra2Ofc46yDYhdY6n7lhzw2rBADpC_dxpXnJjru72THS6A8-Rzb8dv_zkvTGya8dBdHLcjXVROik00n-PNl3znF8OWy_ZZ8BzqXn_w_j7ItDMnmq1Y0Q8I5p_4TxRo8s2-7N-gjYkzz1nK554tr-B_wStcf94HruzyrA7VUAx0IWeUcrfQpYBrGE2ZayfSwCOpge41KUtGlHhmUAkujnTKZ2mdTzuvYEDrq_uKGbHJLBW_hEMvG3U3esFZtuF51N_lAq9jR_A0QX66k6zByfhRGUgQES2sCfD6zcOSH2Ivka_N_jGVrfNggvrkb8CFegYMvLjYUC-binXL8plSfLYGsoztrUr3gMcKuUUUR4fbGM9t_voVwC7twdf_3ShSInROnafv8lppcDGcpr8S50egTc67zcTRmp4nnq2yqCz9646rZUWsq04xusEH5GjwOkFzCyx-yUxbO64IfgIr9lJu7MyaFLlLVsR5mfHmNNm_YIeOo9Tkvi4kJk9Upp_SEc-SIcar9d3jd5veOIGso07P-vkopWjQV-X1cJ9vdtHxwfB7O9K6AMY9U99l2vYTTnDZ2MpnmaOtsvAmxTQw6_BG5egfBUVwQ88GxuXRFHQF_xO-le3rllM8jdjL-ewMXUYFKLbJy6lmoBXJ2l4mwCSoxNqzt-dkEvvN1snzelowdsBBrxO61J7k7wj5uxnsseOsg85SJB7OaN_i5H53fyEJdCZ5WiuMNqv4-XkHpN9jtZ27ggEAyKMMXRr9zHz3upxQEiG0WKMl60vx6-mzK3O_3WJdkJ0imKA1iv3Z74IDSTufCT0RiU4Gtg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6769be2597a366-15060320','','','2024-12-23 19:46:57','2024-12-23 19:46:57','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41847',0,'cd-form-entry','',0),(41848,0,'2024-12-23 19:47:59','2024-12-23 19:47:59','{\"email\":\"dominic1parsons1@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"sl44jn\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy/\",\"recaptcha_token\":\"03AFcWeA5u4B3Ozg9o7M3-b_x_sMf3BZpaCno9044ZbbVywN5bnpdZQOVC7joD3NmYfwhBv5eif5SA1mxO0rqYCukNldDC0IGO7jaErPujpaEQkMqef_duUDGEWw3rbouWvn2FJDTF8X3AmOabQQzaDDQgCPI7zXmuc-X92MqVZGcXjEI-J2L-gHDHUjufnJl1cB6mEWIU59GiVAUqwy79NNmbWYbN84rTQa_Gr4x0O7-eFAjU6FzEMtrJnJmjRFdLk7yuekJQF0zMY3-WPbQJPVDQMrWXLwdhexP0vzE1AOR6ikFjbNAAT8jCAFFvGqxh8cM4pgakZpJdyuc2QT3wGO7rI0xDrNqknNAGWPatASiV0QBC6zZosMhd04PREEu4uVT1dHgNtD9EhfNuW3VxAfndS3E7Jp3hb-zQygmyCYL5eW1fCSijWyWLkwTXqfBYTtYp1-GZfT-az8OnBQL3McnnaU_3aW2mMNUko9LQ6CmGPkVrdYRLI00Rr2Y7X5r5auNU6Ayc-a5nwmwEBoTTcKbKJL3lkVrQdpLxrAqOzjto3qgFdXDdDPWQYvIE7rsVa_4csvGGv0ADZ92--vPqu5jCByvAkNEAJ58d6B24fyTb3qsGSfD33Byls07cx4-7FJKl7puorudGeUT-J9sMjG-eTOBzxnyTbhzMSQpprkXqxkuQTeptSNjShcVraKMLv0PCnIePUNfQrRt5KgNG0YJVShui46KORYYfLaudAW1EbPzAMBubSIuOrzlKQbOe2JpxZgDQwKnEAgP5IrbVVtI9EwqC7lMrgK5t2xLvXEx2JJ-_bUyraWdHwWEdh8itU-u0zFTqasZV6TT2X7maphxK1TXcv4w0b5eNCFCTaHpEej8l_dGFNk8NSGu5E-60oJm_kTUa9lPZLik4x_uzWRS0W-nN4NI5fMX1PRbQprFrbst-3zNFWIEb1F5dINegITPnAHBhYBi5letNJYYgeD1sOJpY0_XlJEVpjQv-Ez0lYqoPgYQJ48l1M9IUi6-75FKjIH71hu-mc5yTJApvYH56jFprP2kXmyGr8fstDnuhlklkhkUCDZ17uXIOWvtFepaKH07A92rKfsIMYtQ1S_54LnT04-J37NddonrXWq39nIsBoXghv2FoumtO717EhxNDZcRse7-LDjhI50Yy5dx60VTGQ-CqMSN-zTpShFWIQnLgiuN_Ps6H5DFmh-DQ2kAZSUWefZYEKQ38VVSc8kPWKoshqpydCqgvmlvrA-lfWlrIznVvvF_s5pGnu9XU79GPjhrG7lgSnURrHJOLcoBKzkMm0r56ZcUdnJ25PpUdBG2i5JiEaprlsURnDdN4aqKyg_6Wewqje-SrxSbd6rkbuAaon96StGLMEoCPz7oZnfq64pK9p1_OUtMfZU0FhUJia4X_0ievBlA8ajditonP42UIe4Z_fAZ5Wgk791uKq1QqLoFpRGrOSjmkcgQ8JdJl2OvBPwl3JlOc03lPXCcttJv3SuNOh5QJyrzfe8zcDd0Btg257d50mXPhtONwI-8LXna-tDWsLPjduwsWVetdAcQHj3nhY8Wcyvvmp4GDrimhw-S5OBtNXL2W5j0bjEDDLa5IZ9XJfFwfAMVQ-_TUgCRDltG5t1HIQwUbbafp7PDSYg6K7LqMe_g_wW9c4GVkc3Ho81A5llHSEwOjo4mL5G8_LSoesp0sNWl4emuxcOwE8pQM2u6Tji_OYJ34ewB-i29HOnfW7M_XGbCbP0S70NJ3fE9G2pWwYWS6jfNEzQVQpYOxGJOW0IhdNL1tn_Qefm4xz56BLpiL7qfroth_yyEuwgSnQoaIn2Le3ZMsSIvHKrNT-doY80uy_61AaDeX9h7uONiXDKrhLckjXMEMe9fqq6awhJl7VJD9s34tPjJkZ76BA5wvgPAp34TLXD3xy7W7kqPO3okAgS9NIM6AyEb2RQ8duqsgsSlx7TKJSOISQLuFBvA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6769be4e64d931-43237547','','','2024-12-23 19:47:59','2024-12-23 19:47:59','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41848',0,'cd-form-entry','',0),(41849,0,'2024-12-24 05:42:24','2024-12-24 05:42:24','{\"firstname\":\"Alla\",\"lastname\":\"Vasilyeva\",\"email\":\"allanbrae@hotmail.com\",\"contactnumber\":\"07764723201\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAsaS7BhDPARIsAAX5cSDsb1ced7DUzcS5h_jW5sUzN6dTn3OMO0AwIhODM7pxl5HqdCDX5mYaAkU9EALw_wcB\",\"recaptcha_token\":\"03AFcWeA5XdRjP1dw65iVpEOTNCB7ZQzuHICM-0pGAVtb_hWfFS2bLa2dtsxtrLJkoT6wxwrlwy7UoIH9GZtTMednNExckGMqOn-dh4Ec3CykN8cOT60cCRs5UpiCVa0-6s4-hZKiKFnDmSg-B4yShACTc6GGEvdylc-6g0Cou7bkhY0-b2TdLUMp77lnuvkZcix6sySPVVE3tcPkUSsBU9kUg1pr7DeibsU66UPcaMGMbZ1LDoWSnLEdBn-aktIVjYTzzPrrepV6Za7HRoVw5sdkPewFi4DUbsa2PpiiXRr3oIqUSGgMs170AqiO02R7YzlZHaIMICoKGWWnlF8lfOkmJ4a7kNG-RtdlmcliDn4d5bxr9eht6jYrrdCTZ6oQxHD8u7WGheubb6hNSctaXLmwU-JeE-XdCJb7b7HlTiAojyHthOD0g2v18IZ2uYEe_hfdlU_BTPn0D8mh5t1DDZXQvHe54KjpF6CI2dHNZwXceeGmUeQOpgZhGIZ4VAVyek3AW8sZSz7H_zgdb0K8QyJeaDb2CJWavTRrpj3qziMwabpWSe4a5T0-g9nbCMbAkh-HZGBAwgJzv_I-dIYNYR5XPbOKxzyxRVN-nl3wSHoQ0Q6vDv2Bfi5OBGB6dpZ95pir3T2y7-PoHwowMOJ4-NEByjSybG_mPjV1xb7soSf7LRN2xOogvSH9CBEjzwtat2FNudKAFBDTyGnABBU9SWlzHIWUUxqSJfyphkc-mlLnQV-dqYDDYZj-5aB2TBOvGGVcGfyH41ROIG_sgxIY1TTmUqIyAC01T3EKwT64fSygnXAWu1BoBqz_bLbqJ6Bs1G8cEED47RNvTHfXcVpK-bwBabXuIkrnGGSqLJg4bu2aXNJdBYPeebAqASn5WA9jq3WAdwI3DaryFxwVvdUAoQa9izj2olS9cKfz4DzC_6N2q55_tHg4lvs_kS4BNzEWzjzSTt_8dwjSuMXj-cvDYvKFOV9xZ7aQsIvOZLIHVSh99z8AGqFUjdU_NRYveZVGB14KUVECawjBc2nCJWGaVllzIgvZ0LTUMCsApQnsKaWy_4SIjVQd5BXe0453TTiIjGek4nCedFhQrJlqtj7O11o4fxCFH23cEFslaMd9RUD96DN5AqQbd6DyC5kAFMSzx70JKVlbtjQpXgJAiK2-txkfklQfR7VTAEvnumIQn9vvQFU_8JDRbLSkgA7OlclfxjpdrQtMzhtkH4eengMy_WP_cGrVSUoRxu_z01_QEaN7U7IFRXQINMWeEDKVuOAcGzbX5AehqqdAJm5zUmaZ8TEo0zb6zO5CUoI-8VIN_wVb9YjXOhChHcrZDI9fxy4QuFvZ9zzEDw_vJWMp-JI-KrV0cX0quGFx8CpnU3EwvvwvmMEmApCK51BV5wDxdFoPKkA3NYIFPljhmaQgK-ln6cBmLIYXQysx3KWGeGinI4f_35YIcpQ95L5TQEpKcacn8KUJWm3IBzlfdPX2VaUOh0kzgcRGJHYqIK6r-zRtDWxVCK2VanLymdZCKoTMqbOzVXdj4jMqEX6FGOBo_c-3ctqczUcnd12_PKv80wUpbiIZvjVJTxHqtcieJ6Q3FbIWBBUwXv3IREqa6MIM6rLEold7PtI2K9z3AZmEWvlfz9ncXFEfYB_1XJ0dl-QRoilDtYBa_gltSn4ij5VxGwTtMsV-nq60y0_PwU_0dgSg_RXbQXLPOCJiUO3sshGI9SEXnBI5Q9rQVWlOv34LlUeh6u2Km4P9WUS4uYep0d03Ztd7eS9vuIqHGAJcttAPPpaOQ3hn0xrqRHwXyfl07Bm0U2MAleZ_KrpD_Nq1VKtIrc9uDXVSnOx9q5VVKOXZsI-NzjLUqQ5Tiv9CaNmq687WJTnckuHYdPE-xW8cWmMEPXLocKDMuZ_EDcATncP4gbsnX4K2_qKk43wPIyZPQGW4Jg_yspE4ASjl_d3SeJgdEfufeBy1_VfbbbL7PGH10rIWlKEjud-j33rD5\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676a49a2f32485-92031094','','','2024-12-24 05:42:24','2024-12-24 05:42:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41849',0,'cd-form-entry','',0),(41850,0,'2024-12-24 05:44:15','2024-12-24 05:44:15','{\"email\":\"allanbrae@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"Nw10 1ph\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAsaS7BhDPARIsAAX5cSDsb1ced7DUzcS5h_jW5sUzN6dTn3OMO0AwIhODM7pxl5HqdCDX5mYaAkU9EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4UEJKjB05jH8-A9fV-lWjQqzFzGedEzhEjWWpH2mP5Vm7o0LK8mYOTcd6nDyVQKImY0o2EKfhWjX1xf4WPc2jqfKkifuKSIKbOmhpNmSg9-KfJYSYGtQxnvvkSZVj4BJYcaQcocPFnDnXPgt_qovGF4VBXlxxDY8Stp-KLviCrfJkKH0XiXcyQzxICOIqr51oy9cciw1tpPLFTy3FH7WbIGfX2rgbcy5c-vlGaSXgCblCs1O3fSOOQNV3m3Y5pc-rR4wUaDKCtzkBbY9BdjVNg1WkewjEjNUcYdtQReVCA2p6pAP2GgT9ZDAIElnS0-6ROft_RfbEWYFoh2IzQ5vUGLfjE4zlq7ZxArd6TaYk3Q_BzaMcgrYWnCA41XUUo2lzXAeUBYvLNckHWn_rvKr8G737c4Z353tPzBPn1N57b-gjN6rS9HR-TYmduuUBAo0-Thngxgzx8CsK0rrCH9a_SgF4MIdvkVayz_FSQR7Djm64St83sknL4Ckum5SIQSkrSV3RAaVihsMnIohQf9tGShPp36I38Y2Jwg5zGLwn7fuua385L6NZUp6DzYaaXSccoWw5u_zKpVqCTGpMNnNRAP9UngfCq1so-zGktXTV7PI9Ql8Nsif_aUx-bGKw9uY0oal1vACxEtihjs0lY3z62seJhexKs8_OBpVROl4HZ7P2JowvfOTbfB5k32fRVQ3oUXJWt8aDmTW4FeRVkyrb5qsnH-RcYU7M0mR4Fiu9cR1dAekqU8Hubid8_LhPWSSz4f8_buqLlIF_9ZdRG5BYOvbNsdUZ-C62SBhR5m_n92bUiMuoBbws-SmweuyMr7-lgNVVNOzXDRDRsi46jrO80dSS_uHSTSpUv2wC508mud5VtaLhWZIYEZBTnTcCnH_CBpmDZRmNWWAENvaciHJNwqxUvpum9O_Q9GQabNPFzjZ8VwNgPWbAmcAqjZzELi5qyhJfSxlNh1uAx77319ceSnMaCmtP6lfa4VcNuGsrKUnGbudH-WkCF6BdS7Cdz_-fOHmf7qV3Z1Dor9eWILCAftbI6lhlue65-AIKBbcOq1Or0PmwARsPfNpPUyX8plLoUf-75ivK2ywfO7_3KGSieXInXdRHOqSKwKLJS1IA9xO-z-AAx-NY2nOSecx0WaJakLOrifcXoqMy-djUM4wjLk3uxykzLfQtCohZdW3KgBgd0EDTaJm_8h1BH_5Xnm0_bsg9FpCTtgh6a2jRNqti73f2lhxm-C6c9BogDm6P6XEkeBY5dzdP9adbDdUNbGsgb8KPk0uhOhrK2N36K3Nptz50Fa9AHfj_NvNwTrz0kHlWjTnOCIaHPHw2FZxRfbihtXFX6VJrA1nkM7XX8r7_jU9o2D11igTtMXBvBQSLj1IuWxBH4DkRbahIPrLSeB_yPZEVuCBRWW550DhIDwNByAH9_w3IYFmy1AxejaprX2xhQT-aGJ2WESVchdoYRJUgIKSvfeQyGzjho3fANGSntN6v6X1AlBn59XZz-dEdMepNzx7_HIPU-N05NfNyelERWcNmea0w6XTyyAiMN-g66RuJCK-Wa4EsMMBDgLa7tTuel6jrw5pDLEI1xpMa9ELGMhs6fSYkbsLs88ojP13PXYmICAf8A4dSas1h3N_ST5QWaDHUFCbAOBFUouH99FTqavP3zc50D8SRKiWyf9w__1D3Ogk-NxoO2HBQZneo4kb3iPEC_cr63XhWrhWVeYk5mxB_YDkAEKudWeQB56V-Wjh309a_Ku1w54EZ72x92Zj_5TNGvnwHb230srN_S3iO1thGoKntsY8-4WIFbfnw5dymwOBFuBwPekHtz7o0pDcw2n5pJjdf4bEBkvooGS0101wmW6EZu-prAudpu32QXl4LzrkAz19BguHKvC8FFsV3Ue4EYr4vpX4i4kQuHwdAEduO46UCix5XN_5a3WCVOvavVkECJQDq6DSIvJ_pnlg8j6fd43nqenLSLycTsOYVoZcmG\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"0\",\"employmentstatus\":\"4\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676a4a06be1db5-97293060','','','2024-12-24 05:44:15','2024-12-24 05:44:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41850',0,'cd-form-entry','',0),(41851,0,'2024-12-24 10:36:04','2024-12-24 10:36:04','{\"firstname\":\"Kirsty\",\"lastname\":\"Bradley\",\"email\":\"kirsty.bradley97@hotmail.com\",\"contactnumber\":\"07534441715\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sokbRpRJnE7Pc1MD1_yJ8ld&amp;gclid=Cj0KCQiA1Km7BhC9ARIsAFZfEIt7Ygi8zUxuqAtXVhbVp3QbzxJqaxL_e82yhrCzQkEzH1Y2RvWXKxMaAi5PEALw_wcB\",\"recaptcha_token\":\"03AFcWeA78mFFMHQM1vcQtuwdSbA9c5Z69Sw-oivVVzQmOqRfKHzvCCm4QY4WLBmAbRkuT6Rvc6zfq23FI1w_pdiK8SxFt1ea8csnMs0WPCHi6AoU_EzbmnUEEgZEqqqNYOOpWAdcTZZYdWuT0Pv4qQKSXLr-J44pGuCHymfi-1J3HMv5WvDRjBaisC2epEfVdCK0hgjanablYyq5lqbjGHO10j8OfCLn7g3r5x8JvimZnOQ4XYvf_PgP02lBkteEIHxaA0OSWR0IVeBhYnPNT7LEdy_BJlyCQ-n9qG3HI_SDDZSK06kCRJJ_ptzSItw1CF814EPwz4_Vn7SRK21EJYwC1GMCrpLIUNcGqlBpZdr1I_dtM_O562mvA0zxzPaXu_OoeeRm8Qwu8g8i0JlJqGaBcU2bmNGvjKEAe-Z1iFblVE0mqkFV8A8KSWZfLAW3d_kF7lxJLQF5TzLGOFaoKjgJYjEBJlbI0fyx-mAQezZ5JKx3d7v8ndnb8xJ1SEbLpm8EgDQVyUD3e-QyGAz8W-uSS1lQ1Nm224X3uvGtCMaJQhmq9YsbzfEfhzidTjXs-JN6fpzcp2n0EGb8h-sczVcoAlUXj9Xk0Or8BwIRi3uRTt5nvgU89H4VQrd_lb8IUbjOzgJoOgkqXVHjbUYr7Rvd7cDFutntv30MbBOlxbtb0fOfKH7WRs5Bk6FdcAgsa43_UpV__fIkV4CQL_H6KoPKnotsOOcUa5VeKXH8A8iT5aH7IxvZYcEqYVJ4YzncLCkykk3ldcJPgRksfqhxp2Al0MHD_ne6wOm_FetvQ4u2BfQ5M7BEzrQgj6Sv_b_zvcPLKvs4EyOpVKlfzrh0DEVUW_wekkEL9iAcQVmhR1x4IYqOghyHOSmqYTatK9NjSGZaH2hgmiC9pN0JBAyf7AyLCQB8FfJa1FWGZSgQiHNjnTBGJahlskdiMVLRqA6QHuJOzBbSCm9RfJpDv57H3fzIiworGx97PKPR8DUWaiRU3aaHxVKlZ0DJN-TplzRATHviriL_fBSCAzUAZurFrclIhxT8KaLUstFCEQwKHWODOiK_X6WKicdZiE-LcnaknvLxEr_zTuzt7d4-zn-wYY6UvU_xUy4OKG338XQSluVKJ-TXxfeJOePpDuS5wCnPVZsi0YPdIIB9c_kCup0IcnfijDgPd6rYTPl8L5GvSnJbyJBjsn_dkdr3fUynXDOgtaQTQmlMijZpCmXYvSaTHv9vRUa4DEOsOlxQIIX__9OMPolcqlGWAvZpDm3c-eWUEp0VzQ-VVJxdrU-pEmquE0XhSDjWJxC3M3YUJE7oM48uV77y6QZNxfgOvWPYtJ3E9CZtJm8sDj2aV99qJzUAwVxxmsm0U_pg0DioUr6tmmnj-oWDvTHIB-lrCiU1E7ZmHBMBvT7Ujgq-zq7f6IdmMsp85sLPuSHIIJFXHg1K7RLOXor6Z71PV8hszsQGyrb5lSoge2LsYIkXWYJlGjqL2eV2pESRHCooXyzAjUbbbOCtDKSqmXMl7By2vX1GmaqweG7rPtddboH9PErXjiPkAukLnz1Trs7WpKyRpcjeWRgrB1zV8o66EoVu2Es68Qd96zl2qwzJkuBw_MKl8uFHa5XLbiWV_mqJVGcr1rM41eGfwvEotojHTwL4efXeCXW5CgHPytP2E6tVM3jtlGEYCTQiCIghTrb1Qmm6n_99zqrV-vz3OEJJAsvQQUrqncz0BoHu6Gj4YqKpny8SfVPa60uyBdwYstFk2AZ8sM2_5TQlD1ygkWZHlcMrP_AaG-yuf9CFjmmjqVkbctX4NJa4-9OC7eYzY6alxBFHCgr_HVE1Ea7nZPV7m9Pkgri6KREkG--mTKClqSW5JvaEvZpn6ofAPy2hKU8qsToOh4s4b_1SBwKRMO63TXlzJRgkFAUutXm10rBZMPlenVHqFyqQ7umLz5KmIbc-GIdgeFWMlRlE2e5y9zgnXV4mkhTHNOxFzgMlQqUYOQL2LdHCXJ2HlLOm3G1kf59vWoO4uHGQGdDwGI27AsFx0W3g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676a8e89174007-97233424','','','2024-12-24 10:36:04','2024-12-24 10:36:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41851',0,'cd-form-entry','',0),(41852,0,'2024-12-24 10:37:34','2024-12-24 10:37:34','{\"email\":\"kirsty.bradley97@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"Tq6 0rg\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sokbRpRJnE7Pc1MD1_yJ8ld&amp;gclid=Cj0KCQiA1Km7BhC9ARIsAFZfEIt7Ygi8zUxuqAtXVhbVp3QbzxJqaxL_e82yhrCzQkEzH1Y2RvWXKxMaAi5PEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6JK1JUEMizlWiLqXRA_LSrccEObG9ikT5oaHAS7F8avxI0iD6Eh8s4iQfy-K-0Fmm2SCybHVV8n_C8Z0dFrrCB-e2DrGhyNMkrgaTG3ifVISslZxzg1FKDdXceWo3NrEg6pKL6uHB7admK6EqJn5UOYAk2diF7L6YNwLGMQ7EaCi2FazzZzayQvFc0NIAP1ygg3mnQxECNq0_zXnDSi9e78X2dj6noKjci-IGpjOi858Q2ymgbEtfGx5VjsiO2dvHUZZVyOYP_mB1tQB1Vycnl6Wm8JZMIhQp3WEAOcOFZTlCJuOR-S-7Tu7QsybMhRYSF5wr7K2NoEcjcLHtZQ6ab6g3E946BU9Z2PP3VU5Dwwzn5SXXq-bO5FbCDxtUvMIZVE3wdV3KJS2tpeGsRzQuqzSHusDPOjFgw6dFbIK_R1Zj_pLzFGMLsRvFx_dz-6lD2m9rR6mTc2t9TLNe4uckA1IIkZE5ZulR5V7DTjrITYosP7VBpLAoTiNhetuZmyV8wf_S2L_04f00AsKwGn2dOEqqACA2iojE09I98bgRoVCJtVXeDuI12kUkpLqhGkb6jIrtNm-5sYAvVCdVpG9MqBbrBYM4ZuasC8e4MMu0KFS5mBxd4mi9-YvyAzN-TCUlePq3rymBfbBhWN_RgJrG1G77YpZVmTD_R7bJkYDsShxdPfJSceo4J2-iS_69KU-eE0naZ0nBULI5V9ovAPqio0Fd88FSfKn3Mi9ic7MIAyaSZig0FhQ3dCmz_UAt27-eYTmUAHwoRXfkuHMrXWhBSC9bo_EBSfYzpCUxGUwP0scYc4z-Uq4VYbi-3MgL57egukrLQppnw2S5SBP3e-q4DZYYyUsJcN70KLQ5yjmJZ3S_cTx6EZfIAUF0g8JhV-amNvOvv13gMU3e21xL38ddrHf0vQ1OOw7zrWeyqQzpyoxtkwCcDehN2r05e95PpFiNXBbL_7KkmXf_w3DeQD4OxwQ_HqD64lFJ35wYiyM_YdFxlQUZF6CLz_z9YAk2pZja6vdL0lHebWZL1xBKuhOGTlbHCB_hr85U1IBlTdkVHAOXSdO5TNWVkKBzUA-SJWJtnA9TBUjy6LbF4nCiErq1BVduwktY172zOGVG9ZnqW0VcIDxMEiKOljT8Rn1FC_4FM3xo6lfua6dDORBzq1ZmqVK_neCt0aJIcE1RifSaSseyGTBJL30Oj28Fn5s3BiGU5WlQOUVltyUMWXiyq_9quj5u-m4_6s_ozMgKrOOo7DQOA5JOoJ-vQOV9phAXas_9pQHqB9LWZDHgLHBrXhuzldDORhH1k3mGGzs2uQA0vTlSLMGmB80cuck9dZCkgSmDZ4_vcd1dxbaUOHnAITcBAEOUHyPweCfOmur_R37JK3hHn4Acag-I86jiCul2I-k2JMUI1rUEzlJ3G0sVMIF4t0sut7jjQnrCvW506HDTLjSgzNn_NkRFMM-wWp8dU-MB3fmE7D8OXPFfz2W1vSNhN-VmPXAl9UY9FMqGsifad18SJPyRxeOK7lPoeJJkY-gA5bZQlm2itPFo0Q6oTcKbXN6a-WxUja95DoanKFgTgB77eh8nyWwzWzcycrxFBzPqcnrM6uCoIEtf4W4bV_qmwxSXYN6fiWcWkbZi-SnBvRH6iaskpyDrV0KWl0t8nZ6-ESs1gcGH40NeO_Ni3dHMqwWCaCyy-XIok6Sk-DMuBciYDgG0oEphb0yZ6rEfxrtUYVZkMZhN4v-6TvhJYLMK1y_soJoIHaeIFamh4BJrO_ClA31iz9C80sgzabEvQ880zwzhiYRttRAOxebnsSZO3IHnXESKhDU78m18HllJyzUo3Wtht8LtKBejRbwjYjiEu1pPlV8H4IF4h_iiyF8cgI3VCiMH_nyp4Qo8vdb8ViHeu5k6Uv0uxQDL6XAnBRcsosjC8n_2wP8IljkHJGfKE9Iubn89NxR7TCqEFs6Wr6491FE1U-gITGZ4peN_yCK53JWgwM6Ff7GjXp1VopG7GgLupT7DBBzoNpMCAMk4yEkq78ts\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676a8ecc2c8356-53946124','','','2024-12-24 10:37:34','2024-12-24 10:37:34','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41852',0,'cd-form-entry','',0),(41853,0,'2024-12-25 14:48:11','2024-12-25 14:48:11','{\"firstname\":\"Nicki\",\"lastname\":\"McMahon\",\"email\":\"nmc68@live.co.uk\",\"contactnumber\":\"07788516596\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA71YNSyHSABqb0GOqRBoxqPA98oOqH_ZyrLeGbb3q_4GTeJ5UjvN9t1Zqn06J196p-ZXu_5HfWzIt9CY0b0wl2fX-TZKwlaX62PMzSonz9ambrUxv9dxgJZJ7--6SaQcKrTzPvfv9enO_3rfTEbMb38vy9bAFk_yYZ6KSfzAj2j22462D1L4Ukms89aVsbQqj-rzjsQvWfumvXFMcLs-WikpMBdggV4wk07DTBE8hiDa1l58KIKt5hXqskbvwdmsM_xJqwzBuk-afuh7k2dJS-Rtc7Fm7cO31UMpRfLs1JJfQ4OWDpIjbzZU64yn71BSRw0Kp-tyHxO8urABVevLM5Osu-kUhsonlUOxAdVeY4V6GDqDAOQ0YBrEo6QME07iKKKZi4ng3sd0EnUci6w27V9BfWTxhoUrkm_sEaU2mBSL3tvnOxkhaYtZ2wSUC5NNOA3dflSYNQ5bxp39XYhUof8kNNlHoB5FO4klOH46SrZ66dQ1TMvNg2rh2n0soU9Vrt6yX_yrrlczsO_NrEAqATE5aqdoka5bF1RLR4wA94b8Cvwvf1r93TTlCpijcWlBBc4kUpdCS9TI_NsM_sXswuPAgfX8OyhRr8nrXAhkABgONZVKtMLZYMcMPugceiWJC12hsTrchsOINIoRoetpmoR8pIMSJOMgZBjxOS_0hKfFOCLfYIc0FK2lVn3Cfh6ohL-FrgkZyUtvkw4vBXwYcuZdQILcJu0__kt3rOixk_MPL2ML64riaG1T5RBN7MGv8i1GrUivtpMiFPcui32C5oXfRzMEjPDY7QSJ2NL4EB4E7Xx8oBhO5dM2ezTsdkKkkjMwrzkugppjPkUIpsObAn3BgN9Ypjs9-DZba5uilD0ZixyJSuImYfi9rkV9gnu0Osm4sqhAZbAo5gWyei44A2CST_tIN0D2gQcSI_GISObEKkJ8jQGN0NzDAlDD1XE92NuJ5DnnwtJiypl56xoMLgFqt_9b5c7i9nZ-1ZOB73yJSbPVhuAXJZDSQDXqvPM3Gqqz943T9bCtquhZbK8i-hAhPg-4YAnsHfAQpDKdQ9sZ2iBBntrmtdMJ5RVLlKOo1zr-PebXRJjLX6VSw-H2VkJqxWsUKnB7xfqRImybyeemmf7L5qqXepZBXsnHiiUnlT7ZZmhLysmw5DhFTSUbYliklz5pYKVOCiQmVNBeA-4g9o2urcyhEcfHyJgfiL7sUMaMyE70x-k7Vn_MhOzA2cdDIrexQ-6NKsNsmLEbwOSUaX5nO43vUIXLz7jCUniuxw6ItbJ2KqOMRnq_Da0PpsM6T3Of_Oz1q-EtOF0yBrACc1yf2J_CdNgTU9aa6a3giNBA6spd_93maI13D6dFaBIXTGNw3JJnUYwi3c9QM0wc8QwvktPmxzG_6cu9xFLgkfu_oA6q9CJV_Q6tbVqUZuW8XXMZfjd7FKDhMJJFn1UsC56868N93L2HayyRVVulDMCkhS_GnWHtazG1hAsOOnpd25bQ1PmHRGhhcD9T0e5EYeXYXoj1bdyphWA6tlMO1BbqtnLc3KNHaRmjmlqUrdtCuvmFNTEWXQSpPbQxkzA4rrzLTycDXGgQEq0v3xcgz5JpLO-iYDCMG98cDrTw1afKou-C4dCDcVE7UM-JcKysixIz0hihJhS7K3fXP2p4qNzIpiVyYh2iA4KztkyGq8164lDYV62p6DbQu6_zQCX3F0xXdEjUqvUo4ydtuklll521NDYvRrof5xVLo_DYuthq2uC6dZTQVRfoCWM1wDe7uLmdYF0qVaw49sC-TPr-odirmLXTHFQ2aX-TsL6lY18vA8j6TeLsYTZkGa7LWknuwCDXpeeodzq1_wTMD6vY80qAErywFReLvfhtwktvAsqLP-W3BstkRn5c81vCBMi4w7sT1U3PkfwV-Ov4e2-Ch6xJDZ5A0KAiG8fT3592zog27dxlw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676c1a8e271012-02462413','','','2024-12-25 14:48:11','2024-12-25 14:48:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41853',0,'cd-form-entry','',0),(41854,0,'2024-12-25 20:18:08','2024-12-25 20:18:08','{\"firstname\":\"Shallu\",\"lastname\":\"Gupta\",\"email\":\"shallu1610@gmail.com\",\"contactnumber\":\"07982063032\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA9667BhDoARIsANnamQY6C6BNB5wC58y9Ysl1uNBU4bMzz_jh0duqbuDnrnwaK4enhPYA3OEaApB8EALw_wcB\",\"recaptcha_token\":\"03AFcWeA5TengABYtCJzd8YQYD0mCRdfUI30r7W0w9XMVOKf8qiaM5VZX0LoZtp_hH5YQKB6-XTJav-DoXCE1iy_RC9nxzLUkS_ANkValO9cbC5YhZ2Sh3Y5maJC3kZA3o0GqO4CgfJUuU3c_mQLjedbNW9Wom9AwJwsdhAcfA7Sbg3oiagmuWvX8BBLw1u4c9EzIiDwATbQr_IxxJ_DmxXpwBd7XEoPFGaWc8OzHj0SPVYxG2wO5QXdW4jJwg1WucFs3Cw-C_JHJ3qNIY50WJGgzvmweh6vU-GROHzdZbS23C6t3MnZCWNzKLa8oCL2EbG_kzwugTLAEd1p_lekmu7rrRnyzAcvAdSlIdg8PG8jRanATEnB-VQ07bIp3IqxYWKFrKqvndDmEYS0bOxy6_QOoJy9e-EQXXLx5hkY8TSTEx4L-FYMDXp6nfVfMrXglwoVGGmEtARK3mS7k4nEIv9V35ePZ8ZfHhzK5i19AmZcHX94FcxoCWK1Kzf2d6c4RbfGxOpF27Fk3Pf9vd1z0Wx1PWwMf75lMS5cJWTeB6fYnqa8Jx99Z_VQdGctXHHZMLZN-JC01QYcw-JKcQNSWdSdiQKqGc8WdV6yGn-QuS30vrvsk0kY63dZUHHGHZWyN3N27JUYoDQKDolwIsP-KWyVXRNQhD8jO8bLBio5Rod1JmvUk3wmOINU-rwcZRHH-MLRuSpMB9ETZ1RIrtLIfiI7QRcflh2ed6dkISqWIznK2FI33cd94tw8hLo7sNZ93qNk0-X6Pcj-ASrEXg5XCJCk86qPY8ORKydb3wzj1K9Rur445a0v47KMv-2fhFeX4csGf3GJHuBBZcoPoFZ-jNMMo0mc6pEef6XWqcSwLqLXvirSSbTi0ysl81rZq7MlF_4Wu0kURn4xm_DP1AxrAeBV0EkJDarJ85fLUqtsiMQ5QJBV23kDeuu_BkbivOtwKzOEgz02wA_0aDKUy8fG17ueX-CFLwBTaCKq1EAfWFVBf7nYMFpSvP8IUBFOmaUhkz3ER4VkFbP38kbOBTfaktdZVVyapodPXrZ60ywNreFE-4FiUNNQVSx11NQwSsq_fRw6iLdL41HTshZub94eGYyn6JENKCb6DWpNp_dP_wt7Rhg9zIizz3gUpC9UY5qBIzJ_xcR5KDOBUsdI_WlyJxQM0XQfHXAeqv3IigBWSDsYWgtxg94hpaUu34Cy3D6EaUOE-t4XSFuLTOeuu1_1bK_x5NJM98NALc_O9_NXtf6wuTCM5fcVLMDE6FKIYwHDh_Md4JORxn5NIeYzf05d24NjynTWVo9lOTonlZGHHSPzokdOf9-3pMVeQB7jptXZ2M15G5dY_Re54rIFnkyKy5HF1OVQi5a0UHd_x23t0YD03kQknrxFLibMgywQRbEnzqHPq5E9-FiD2IpFeXXsJl_QV7sDslXPYeF1vvaWjaXshaHuoh0L7kokBrfGrOo7qvMa0FLg-SUZbgeflBlVeca_HvENGbbavy0ji85ysyICczCwXlLm8sgW4J6mnaRfmjhi49jUFtc5oTqJe_XKS9-dkT-qPQqIK6URnHNwpFhbZULh6PPq62Iw02dM19RMqEoiQuj1oGJyKkzrVEwH6pr3PWWxqHXUXBxOoti2YCl20SA1t9mM7wQu1jTd9iXMSj5rLXitKle4CKMWvM0CZXLGm8jlLgozWcKLW0_Xe77fX_LZPyR0hd8KhV1Km_f7lEcr75_WNRCKE-_gJbgA3mV8ZXDLtfy-qMFR-LrJKAhZMHOKvAsGvqU1BFUVQ5p8GA6Toi8V2dISc2QifryDkzppxW0h1gHU3v6ESWlCjg8QnZRVtJ0sazAGem-DAu3Sra9I9KeVIztza02UYAzyEMeoRY9eJ4lkzEEVjiovtQugXaZ9TKAntHlVWQAyUUZc_WwDHonhBknhQqvrTFFVWWMxxq6wNmmG63nFqDYMw5YXGeXiiuwwymZZA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676c686f681788-03533763','','','2024-12-25 20:18:08','2024-12-25 20:18:08','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41854',0,'cd-form-entry','',0),(41855,0,'2024-12-25 20:19:31','2024-12-25 20:19:31','{\"email\":\"shallu1610@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"Ig2 6nb\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA9667BhDoARIsANnamQY6C6BNB5wC58y9Ysl1uNBU4bMzz_jh0duqbuDnrnwaK4enhPYA3OEaApB8EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4ipIdQmDJxdRsm05nYSsrJY9nOMGtcBH1n9CfVUh1a3w1QT_3NLGWeUPL94H_KzbUUjnY30pV4aXm2YdUSv4IMGaMC6qKf4-U00eBOie8pYHpe97HhqGCSy89E75RpblqBkXxeUNNXe1eNX2i95OikOOHLJmCs_ggPA8Qkmmi40fTA8l6OvfuKsFY4y87GvVHSKgqazsLxiag13DatdfFbEQ4EJrOhWSqdmpQysEUL8kECaryDHiAtqo__h0a1AOd3poTdAqqV-_NjEFnB6gxul23HnVrgmvABxhVdAKhxP49X7vWML2cNuHD3ZwE4RQ38ClbcleBeqWqfb-fpczGIceOO3GkuCNO1g0s1hgWSTWukjwi6_XhrGEffCyLfNimh583JOWlQVGH3LNmG8peztnqbttGF9_sMdUjAFKWy2sVomkv6xEtjTdQ3-FT5J92r34UTZiyFHXfDgYpBhGPDVscbXhdOrwouIReTGNK2IaPCMO_a2vIILxsDBMJ4xdelIT6rW_uxylDvaojtaus0xUGmXPIT3BqnkRmYC_SMOZgzVZ8iogigBrMLRFCNMkLrQWKNzkIfDKPCX6Fc9CTBuihEbEY_EzjnmDmsdIehfQtj0kAQj2xyF-emzE9wvgszCvSBvECqC_gy6BHNwXIdmQSA7ITWQz_h_yzCk62sHS0ty2EZWaoUr7DanBZ1xs6OJ6CV4c54eE9UalAMCpGeGTjyktiE5jdFnQx8xuTEWFzdfnSx0X5H4XgJ69LQFiYv_MN_tPVlOZJm5Ej5Lfjti8CgZ-IkYCIIv0KshOxvXDOPDs7vAb9lng4r1AWX6tZJ0ToN1SvHgTNbt44wl4c5yB5ClKmV2GPcpDYR3qb-U6QPs6s71aGUIdk5EklHRvpsxDgMRrJRbG6wdVlMyYO-COKPVL5kpzQWi1F9CTr2tN6cWkgyXq6cc2fSnD6YvNOapqKHEGLX19qbnpspXtOB4Bs6LUHsIqAfSZrmhqrIJzTA2ANTYnhFiHcCbSaQVC476k5XkehI2dwNFzllfBgg3h3LqIhDnSw_XZwgzMZN85UeVjr7wO5pxjDByk49_g8z3J3CTpVNw9r54sJqsBDMZXoRIAQs7Cjhk7BWyHeXr1ZAWMg-9hJYU-nN8354EBDhSaKpVPpE62dlF4eNKzQ6K8pu9EQwpJEw1BFiotBcUJw6hJiCbc9I6yx7fifGcY4K7n68_gpdklqH6LLSKgaxJb6A7Is50yxxRKy9ffhzhL7W4Z_0JeWnSrNhmQtYxRnG9iYXCuRTTk7RjhKIf-mTL08D7JoSLBhsvZmJ5BJDEXbaH4e51-mDwARbtQUVFynkm6yPKhOVSW-tpWaybpOrvMc6dKx6fQlRVcv92e2fdOH6BQR85FD2FFek9diVPAHY5aO0jUSnVWXO2ioJzWucrgZojFQLa_8i0Blk6oCuWUI0HB6ky3rGx3bCzkfBrQx-He-NicNZQk41fqk93-cnAOw2THbh11PV-Ul0yEXwFGb_df5gJP81Xd9DXbIuwYROq2W5YyD3p-XGfaZdoguPUGuR95R5ydUbmhq3L4GOnse7oxhVPI3gafWQTkfeP0a1YS6hBQqaPEdZYJZvwa_KDE00X-Ujx2QI1Gg7Xhk6I0gANtjtxNOoxRdWAAaBKqmjwbRFHsSw6GPXmbV17Fn0wnkWj2v5EUx917WSWs83agX_x2P4DMe0PZ3iPVKKIkaKXhjRQLn9gxMO7EK45VNsIdYQRBonuupExGwGhSGQLEOBhbU2NEjtNCxxxrkr8ElFacCsEDwwe1zWVkGRRKFkiIyp00228UlIw5m_dDAP_boksoFy-CUAji9acuAVY2X9LiClXUzRIHPTIDd3Ao7w9KA_IAKMuM3YL7inwMveJ9fjswGNKLItwRdDS5beK0amBUnRUeDgIIyJFMGQxN-LkcGbVZG8H16ndjOyEQ6CATNWscohoX8jXPhokiMUXzNracsF\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\",\"childrenordependants\":\"0\",\"livingcircumstances\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676c68a9421652-12974515','','','2024-12-25 20:19:31','2024-12-25 20:19:31','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41855',0,'cd-form-entry','',0),(41856,0,'2024-12-25 23:16:51','2024-12-25 23:16:51','{\"firstname\":\"Bernadette\",\"lastname\":\"Parry\",\"email\":\"bernadette.parry89@gmail.com\",\"contactnumber\":\"07938174354\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA9667BhDoARIsANnamQam5ucSNVvMdAoLELuHwjeGUFeC6i_TAExBvtNc2zKHumZdlUeotHoaAgfLEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4rx0rOKr3GqpIkT4vywSKES-Vi0b09OXODuUqkFjUlLrGT_L1OdkKBD6AcvdIHcSOOz8r1aQtVx2WczaYjJTC4Ja9aqFym7lca-x1zvlPxc6Sadtu-KJLMv6Qpb7adbHCmBou3OgC3pjJEViD-v_I6y4Xv7_MFK6npAN4MaAXAcF2Fj23XEmIEfde6VUO0VsnPBPkByedPvNOomEmk5Rv1y7SPsCnFfBtycvlfLc8H5055bpt8wR46cmxqPcrq3Tj0Ke9awrGp3NamuYRB-vIRN-IAp0i6YqrKi8h1d6oRs9h7QwaEOFyjVUZjdjnpsXko9iSMDULgs0bW6dgWawbDYBB3EIPPTaqcONNL5TukbiycF4FSj--nlTZPDJNilLdRuxbTGGgqpntkt9eyQ-UgWYnhWaQ_ajVAuiHQ9bhkUsZ8hjzCCNGJOc1NjgF1UK-SONABXG_mOoAgmQ6HlAAKoFMCt91CDIzhcbTQbTdPgMlRB0dJlXio5jplMudiZDQPgtOTYdB3Qbwf78mZ80o2xYqZkeFckFBrd5-IvevDbzp4CmTQPuIPy4i5inIw58E7r-oWObeucjLseuxeCPimHrkTN1cJ4VaVyR9sbjV4o_KU5_hIeU3lXsacKwVjEEEK7qDxuSJUIdZ7cndQUfBk6jm9X6jyeZO-6LS211WSzVn4vJc9fDNgxKQpfqOsWoTQyQJo30cPXWJyDXKvvtuTvY8OiT35Gzd78UIlejxohlS4VkUgsR8lD3xQLXKwwNSrIeufJIZbcIN1PVEUjX3Fo2m6MPge_tbh4XXvPn5YIovUjkIGDSqS-3eSkPXH9IgW34CvwKuC2Wp8jO6FawQ1vJFkreMwM3jGNYhIyNqlIT7ouLZ05KbtoJ4wJfHvOdb0He4UTHvaEkiSGYBPcmMxk5fOFBeirLY5S26J3-bIWhoHxHZ_ZM0Sto_H8b40rcX8M3Z-8XC3IrKzJ7JxRdicnY2c0sM3OgjxIo4c2k_Wez0Y6amKonp46gxO6vC0OxQU83rznWd6Ug5nN6B6ylFHYrVaaJr7FXZ8OGGmgw8JrSE3jE3BkdjH8lesy7yUFTTjcH3-mmcg0CcVvWwOpxA6FVqj11pT2UDbTCxmef-UtZkIx74udqapUqeRyRiVnO3cGE9mVc9HEvDgkFxpyrLIZg-SARRy_i0fTzk1paZ8ZRW7Qb0d1pZyLP5-tC2I7dgkVB_jeCYqIvAvtqGCa-866ga-tNA4j6xc46NuTxXimcueLDR974OhHlEA9mDxKXktWAaGqDumSWNmBxKBOSviu2NPkIAZ5TQqmGLz7E_UIpcR3y4hv_eCHRCpAcZXr3SxPtbIUFpbD0DwNT5zSPlSzr9thHptADCskowOwbAVVi4o47tbDaP2Jelox9SNw2fHhK8y5ImMDVDWmzCUqM1hJ0Cp2MaK0sdzDJcgMRxV1hJsF1qXU_jZ7IkixSqEApUdiDFHqnY89IeQY9zzLawUAQ3682htv5CYBf-PqhT7OpDpQkVGv_HUCgoR0W6Rb5Xnis17egxCzw3qk_UiXwnsFw53BWN9E1VGzeAhiRKTwouu1IjdIh2GvL0VS1Wp-EawJSH6dicPnD5zz3_yWP8ue7gj_v6U0EqvaJfZP2UO8pHbBVIieLZgZ6p3aS2G1a6jCvUV_hWOMowNoIWRKB1WJ5zTma2YhYYLU-MJWPMKHik23SpDFj13Kh0Jbw5lmn1IWw_6PLqy36uAAxb7Sepnjzwn9fY_rB9A24lrYccHs8O0ed64yjf_FZr0NYfZF3YmtJ3d8JUuXt2s2U_7hDLKXgHsoWyZofs2bOHknDA357-M2gFtvkR1WjQ8BakBPv-s_JPm0ryCY0VqT9ay9hpbGpmbQ3DFbhX1cC1i9E-CGlGIJ8u_LO9tTAdSOcjg2Ra54AwOlxaFto4EpK6hcQQGgzzlNghr4lqlyQZeGJZWW2-61t_-aB4Yz9M0N5efVfFZuBEQUtqP7zpDdg39mCi4_30c7QQJLT3x0jWhNvEglgDA9OPzlK2K16pgec5uKIpdfjjP_nSTCpcTtZTSTBmk2qt165qdwug6tlJFydpzchln21psj01NPUmjY-W7DbEeiq4_vjUO1sx7QWz9AjvmD7VY7tGWyj6gzXag38n0XLR-1C8mLKXF9CtpDOivBwPiMtgSG75-8gNqUNYl7e7ADgXQK4Y2fS08lu02H1WdsiPsWiNiMgVJmoCamPwS7WzzvSaaeNgeb001-UVee0XdAIA6SfIfNRUhFJ1QkETnGODP8iE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676c925227f031-32041308','','','2024-12-25 23:16:51','2024-12-25 23:16:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41856',0,'cd-form-entry','',0),(41857,0,'2024-12-25 23:21:17','0000-00-00 00:00:00','{\"firstname\":\"Bernadette\",\"lastname\":\"Parry\",\"email\":\"bernadette.parry89@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA9667BhDoARIsANnamQam5ucSNVvMdAoLELuHwjeGUFeC6i_TAExBvtNc2zKHumZdlUeotHoaAgfLEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5QGn8fj-kb0B_Q5BpzCyh3gAgRHNbCU08OFxeIWs64ds8BAJfGGgoMAjriwjwog8IKOmqdyIBnQACbOmtt8ZrrZ8DeCMbAqNClW2SrBWlcDxJx8H1Rcz-zM-c0yGy32OFxspcaLUotGkCD9vH8iWa4G_zXOR0dGkdUFpTgnOclreTmGLiZqjPYNCqdnDAylqk7Yvb9r5Dy9KoA8i0AUOhWGwyWwPeoUgbkLpI8qjTrvwUDTeAOFxUVKhBOj9remG9G0EGww7g0kB3z1Su8MbhGhqY8Ru4-Ayk0Ye_L5dL-vUrR8JjP0Ess9JVA50H6O8tWUOxmBDj5Yo7hGYcnVnZRaFQuHo67tmUPpV5S1KEflcmIJ37leYnRPZUcB8MKRFPH3jAbMC_jT3VExZ_STByEWrqx7ECwEBcJoUguBOBEnZUOPL3xIkxKGgIYosnzDIjNpJdmtbBmCRfHHcDg3nWxD1WQhwMCZoA0revvsGV6F6cjR5r4tnUD5tb1qmyra9iqjGR3RIX7uH8CE2Uo5dZAm-lAMvmKKtwnrHx6ffopUYQAWy6qBNfXdZn0dOGRGif-dcTvcIaSeJIA7WVveMW3kCPEqiE6P1SplQFSLpV03FCuQkYQeT11ub9JvBZY8KnEcPw6haIYb4miErhOKRGViihdznvZiJCbdvGtnE0TILTlKynudVgRKsgOLYwuWlUc7zttBRrsq3K5TssjUUm6ZXsXZy9QpcHkzOkj8HXTkVNG_1AZ2Rk8gLGZrqjKKkE02kLX1gw3hUeV6sP0n2xH9HI-YTyvuXfFijULVT05-QOrbmGVO1m7JHYqgMzEQ2U8adJ22s53waF-OCMkxM3w3z4YQb1I0z9Z9CQ0Jy17YBqu90Zlo6l060m5VZRyijeBkvxqzXgYobDPdK3Dv1Vbqi4DbzUBlsbILvHnH9X9i19_f3908o3OntdOIS8N7A7eY8ioVBTEQChVQpvhc3nosTCm99V3N_SLNgZNN7xru3ywVSbAPwforTMJR8KEtsdpVbcNJg1WzuUIGhz5aXJuFYnkyNQAy0dFlvAJqwhE99ePwt3mc9pukBt9Nwe9lVLjeH5LseVo0Mfx2AYrsmq6GXqXlhNxztbBRZKNBpUUCvK-kUyPczSv06e_nuj4poz_vHbqRlpmiJQiuxfXihforeoCW8KfnYenMyK4qy_CiD8hY8hxiysNz1v8356vd4uc36IjxDQTE3_-8igjNJ5q5L8FhPV3w8CXuK4jWdGK7nKxCicl1nGeUZkCkwRjEczvFQHapXsqw0MX40SbUYMUrTX8BFWh2lbhfB_lLv9bOUChXiyHhDGNpaaWzax59ctcor_4QL2dcIkvkIoo2EIrObyz5qQgm5NhDUYR4vHq2SK0eN9_glvyFn1v8AJJVUSkVsZ4DuWZa-vVHfXxRwzRcQZj2FtzXellTSPJMt9Bw74sfx4WLG1vfueY0OybB2M5zceivqOFB4qzT5Ik7TtWpg1u0RzLR6Scgo__dchMj9aLzsrs5w8yy1le7lmOstT7QB2H0-Fke43fpejGDRvmdFRXGwEKVok2jAmuy7SrDtjhrYEPtjnfZKAX6XMbeT8r-cBsLVFhPat57Ds9F9yYHwtbeQLw3hMiTj1Ho-04PspVBCSKVWdJdeexVZlveRwhr9MxDxXNgCtUmeMttr-Pl6uG5m0zPG2p5zLkzkc-JPEremtUmXM-F40EF9YSNeb_U8dLJVmBsh9PAE_P2_MGAc-JKiUPuVXSxsjJ2_JD7Z_EE09Me_lVwoLKhXTW-B2DTTV6w_WS2Don8ljCarf5ZDpW-yhZGf9ZYF1KxGwfWropDHSHXI-uPBByZSQZaktI4j1IJbn--6eQYGi6XzTc24u7ciwa66uVTCPQs-ELv39iu03qSIEhN791B5DT6YWaUgMDDEfcuB2bVEB6EeDOn-On66zFC_C0JXYBMeAWO2jnpI33vpDkAYn8o0BK2u0WJN-cfLETDnCPVlMS0O3g5IIT1VhbOSeVNn8h1dezGtuVEDzShkvh19_oh8Uxaywc5PLX909QBOOLXdIgObOfgaflQUIt59_VjdBqzdZdjZcju77qitnCzBCYleuqV84L7JwVu2Azsil6LPPdbnHVx9rmd4ChTbpHa8ul6ZhlKIKlkQQXutwzwSBSjL1JN16tNRkFRUqDcFeWR_0LNzcdDXKcVJ_283NvKXPCszbLuFVSPUkTOUhx2sVx-1JH6kQsZgjfrgqQd_hlq6gIPL9THWKvBVEN2TsNWAFNqDJfM8Kz9cw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-676c936dabbd28-45363288','','','2024-12-25 23:21:17','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41857',0,'cd-form-entry','',0),(41858,0,'2024-12-26 09:41:34','2024-12-26 09:41:34','{\"firstname\":\"Alexis\",\"lastname\":\"Hudgins\",\"email\":\"alexishudgins@gmail.com\",\"contactnumber\":\"07446861073\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7jlIJvK1X2pOgjIeCdsu_dcAIulysMvvJBvr7JzwfSfgnogvH3L8zuqJJYwRKhmSVjiTeeP9G8XQ8SSsebTc2clTM8VWiYMWut9sDVQjHhfYMxwUzGmDmdMROpdWnmHMvPH8wtqsufuFgGZM_VV1UWRuaQi0ynH002a6JwuwZ8Fhfpm6R9fmDbGfZNZQavnSp7tCibLvsajkb1bMXDGN_lrtcJYWtgw0gORREh5LigiZ2VZAVoaCAPv9F5ZqLuaS4gAAOGYH2FjfY0BiXnHMg2k3KpfrjTXbZgHpXc7F1VH6FyNloahc6WF8gYR5vJMsrHd45_L7aal6_17sOrWMYQ9-W63XJrJYrg9oFzROuBZ_V46jU1Nx7IRwGshl86jOEAPVq_sba2DxgigRIRA3XG1QFK57zyywWwRHMemBrhtfezZQq1twTb8rzeBlf1ztVTCpIeAMbsoZl-OGWUEL4zyJIv6Pojvrf65QKrV3oyMvkkQpcOX2nygdfplqS6dE0BIOPDZ3t3PChJ5XRzas4zvzoBAvrWmbz7g0eMUi4M5usLgB8hFnFXkH5jhnIzpzHVkceZAp214YYrSKQTO2J-vOqWqJj6-LO9EjUDICLlACklWXww1hPGdRIEWBMtONlYrsVqwMrl_fKBsKNTETMjSB6B95G8GWeAjktypZNq5sQFeQWdlQcJvFvYMGk0NITrB5VQDk2jtTNjSxdYjreojWmaEAS4p80Pw0Mrw4StGKVwCGREwFwxJ8xlj_rUMNhKwrX7qisztJrdeQ4NZA-XZTh8HdOk-4fdXv_SGkKE6Y872ur1NyVtK0Y-EGpgMuwTLSdxcgtRru8nGpLXsXj1UoTZsrLwA2ms2_dREevhgX-SQLN_QdDXOtIw2Z8RCXwo-zn9f3dv5yIqHMM4O7f6DnLBMm_iIA0aJyEg8jQ-qBylj1BEf7rNBGv7U7VOK_eFyNbCirYHEWcNWPuPnRI04Pu2ZAZvUYTSfEI3z6xlWSuuuyx6rT901bXJ3Hlt4kGysWf6IJcY2ACKzAZ6XqivSkeHs4_X_9rvvbJOPdFZ2BzhxG7vLX7nugbbCQaifqAWl64GSfXKQJL8YScfVetQWzhD96Zbu4NL07XjOusYFOB2_EFIeza89OShusUcX_XFeCn5ivLKu0p2p6FF3jRC__8TAqhPlcXdh-C7BQ7q83Psj3vmGETWQAkkDV7t0drufMuMY2H-Md2S6EaV0FBLrnsT7AbEtpPVuPnoHwPKeOaEHnAVQqvQ9HDTi8ddrFTPahKHpB5Ur5CoILyAoTRO5e55sddaIxLIkvY3rAqGi21c3CbXYGmdos_i5qgYFkMQ6CNKH50wlSp4YMypoqXvYzhcg93NLAvUQ2XuK534BU67YMeifN11CSUMAPgMkG31DP9hYPKGhDlazZAaZSG20ovpgiVUA1pJjzi3Qj320_OiOZQYkwLF8uhMYW4iD0-qFhurzeaW7g5xBZD2ph5-l73uZsVwK1n505sifgscZzCnt_VauRiJhl99OwxsYioHCwIT66fZu7wwDeSgqeC40iH8M4YsZGnCVFlp5VBLvOAUnsthfcCP1_MaXVo-Dr5x09ra-eW-Ohrrb3DWbW3ssZVRZNrznpOHfEd3SHUucf20KghByuZoU2O9LRtrBHKnoj3RDk0BBXEWpZfGcssM-J3RYrKCvqfajkVdvzS5BAHUtxi6mFaFPTG6WCRAGfC9EVTUUUQdcWO8XNHonUl1k7vToc_C-jV3gDs_2ybeJ-_m3StJWV-POsIIkMisbpPlNP_FRLJMqcy1zyIxa7zFjLd9OxsRCdZvqzFXWxGxCNv8mg4u5BC5RWmi0wzbWzerhBGgCnq5nxL7a4puprkPbAeVvSxFu6Y8iqsW2mSSFRquR5x2TYcvT1tMwdRf4WAQoY4ZCiRit0dOSfN7rVPUeVtw1kWX0dhPS7qEJhIfigHoTcvg5hsB0B3mc6cnKGXycpGMYlEBlup8wjAHIatfqiCyMuSmO8QosOmPHIaiBbGbacOBup-U1mZqy6317iC61GJCy_hl5Dh97UYMCVRRErX0e82578_X7NIh68O0jMuDZIMk6w7tT2fpS3cQJ1vOr4XVFomNX-1QRSfpzDC8arOcIOIpEg9l79BOObxMD1rzzEYpnSC0RpgNKDx2Nt0mFxAqEXZlxLEh0lFZ16oL9N_aUBaDi8Pis5aaweple10JRVf-kTFoRoNh3YW3qJuMhgtoQj6EIoysJwdAPhlzNAQ27h7_yaDIGoTvvbaOuBtWzhc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676d24c3d9ff70-38395649','','','2024-12-26 09:41:34','2024-12-26 09:41:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41858',0,'cd-form-entry','',0),(41859,0,'2024-12-26 09:48:54','2024-12-26 09:48:54','{\"firstname\":\"Wayne\",\"lastname\":\"Askin\",\"email\":\"wayneaskinavfc@gmail.com\",\"contactnumber\":\"07806462513\",\"pageid\":\"39245\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAmrS7BhBJEiwAei59i20QUsPYqyxqkTrh8IrtvZZ0xrCDS6qKdOD5QviSBpwy3Uc3TMqcTRoCXOoQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7WbWrvSHICn7J5WnV7w_vTQNyDVmwzpDFXOFHHYSLrNjrclm1PcEXTOS3rorfro3ULbmnno1aypbgWp9O60p_TDUEFYdno8p2cD_uH6JNqidzwN0zka4RwG5b44xH3Qpgyt5RgYiebFx4OwClfDjP4qvw_ZWec5WgVUkmNcAZQZAqHm6dxV7riQ7hFoR_ofFbTf-tWyhVcfmhpsoQUbxejTMhXVLD81rXJr0OnnSlTFwZEuJRECNaGAPsb7_gDfLdImqPruCoAiN9_S_ch-_X1CHYWhXw4_33McY72CcHnrDCf4ciqYECGkXfpEh7B4MSF1h3VuuTQHg6dZNO-ISxi58U3rikNhq-l0uw-ki2XDbC4fwof_zKid_hpkPSgxlfJ4rh0GTgX7mhipyS_-Bra5vhi4TauhiQ_cjIkOt7gy289tBHJ4Jv5--tyVlIyKw4-M-Abi98VRoHPM2juYTLYvQYX1sNMv9euBcdNr27G67YSLXjcEPfAy0uXUbGHxso0SmwNj6olBI9RzeSFe9VJyJAiJQdft3MBFWP5HOCrJpWkXCrXZI-CIqz1PyICF9UhcdbXGWOw04zeYw9dJS1kpUeyIem0v3mj6P3MRcgYyyOacbcwC-RQipms1F6oBUM8kYMK2FUEXIti07YkPWxhbsFMBVfNV1pmbV59ySrvLyMdm0Rd5gHhlMoy-r-q_RYk_3i9ZhIwq7VBZzzBHQao2GoKRP185ynYo7IBnQcZhur96BxICaK2Q8WMKmXEGOlbVpbK2sU1xvXFMRr3Qk10TryHQ8VTmUP9k8lA9hp8-JRSeddZ9i8VxNz6S_w_zNfr8kF0UOnU8twiIiN9GKtD3pyWaeteGcRIwIBNS0U16UcGhyzpAv0slUiZizW_J_liScimstbm_90DcSc9JIS2OLcV6UMN6pudd98ozT243TM1bSREfuPxAAJ74oPBIVsA7SZlysaTeRY8YW0QnbGloDDpvA1s_dcRrxhM1JyvCr5vwbSfzQH01k_LwnR0fRrzu_wOpXXAxKlw_kWMpnd5hRmY_Hsaxk8pVe1A3xYstdbWyevNKq9w6f77P8HCed90LOMiiEnBxVT7zq7Xsj51NZjJ8kdRO7kWJrR3Lo6FZeAiWKk47Xrcc0gvSG8ISB02tZ5XTIgILC4K0dW-dcLvwKhQnPfQSch5yy3YFGjHGNx5EDv_if2Gez_jThR-mkqTBWtD6Gtv1pu8Q9bQelwho_JIZclYDGwRAJc84W8vEIHuxmHF9f-aNoX-SfFBKdrATkAllVrb9fsO44dcdknbgYQ1REIzpP_WN3MHyEhZluKrgxMyNuWPkp1iWTRinDQLcIlkZGVAEqzfcYNNB6WwuE-eHGpGYrMegiutfh7UzsUsxlX3nBKKlMZC8k-4v7wGi2GpSEghQpDd9p7GV27PYBfpm2ODoz7DaquMHX9bxuZsZc7fUFDUtaiZo5fOyJhkSypoelcbiGKkqzyymnrglxi4ZXWVFk_YZ4XA2i48-txXrXcQqM2Hbu21_E3f20iWT02r2CUExKl3UqKrKRBgA9mUNfM511LZ0sTaBNp-sFiZZ2I6vQFLTWDmMsA0AWJT5nVwvRcjIrBcde-g7rLL8VdCdm8miRjAdskZJJR-rjB5aAYH9okNX2aWdONuKq_5FKuRtqCKJVQ_8yKtp9HHT8jsF34_KVMyalsfJly-1bo_aSHQwT5tDV2tzjVvmhmI2f6BglpI3b43PJa8yJ2Qnl2SZNipWmVyr87KESPsdRKYwbQ9yBCDPoLGEAUJFhUzTf3SvjUvwux1X1c2-RpbhaLcRIlHzvu9qkXKt4Sinpw1BrBAL8hG2bjeBODBuVkH5GosGcpx8mfYeJmhv1CHm1A4HAvyBMkGW1LC93NNfhhJ8Rd_ArDRhESo3c1ZADSl9Ib9KCn4RwMNLxVVGd_HyFo3TU8qtfFuifEajL9N--h4pAyNMGyryBEW8Fxv-MWGhJBoM2fzhNQteUN5yR4Ov7iIObDXPHaV6dyl5gTPU75zWtg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676d2672afc310-92299044','','','2024-12-26 09:48:54','2024-12-26 09:48:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41859',0,'cd-form-entry','',0),(41860,0,'2024-12-26 12:34:37','0000-00-00 00:00:00','{\"firstname\":\"Aneu017eka\",\"lastname\":\"Jurmanovu00e1\",\"email\":\"platna.hrnec7b@icloud.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA65lwaw6slugjXraZCQN4aYnaKjZsAJIWnwN3cBbSurZOQO6ciMFsbTqcyZLR5MQA2eq7PaWKW0fDd32168M9bHsWM6Ca6rUDCn8kqxrlw1IkXuq5TCiXuoTgV2aV_-b3GMYovKDgcswrSYh8uetrid3huG9XD_kAuLlkL0SR-JyUwdMLgc3ieMPhMBZpmWXWddXMEw1I1GjiHqe0GFeN88X6bAeikuC6lihLM4nfKqFcSuF0QyAvWCVcOv7ZCBAsWq_ARXXvZE8T3bFIFeB8BdWNznCTlrltM9a-er3G2Vbgt3wFj04p3w4dl2S1JoBtiR76c_9hQn1Jul4eYxjER3oIqX335W7I5hlgkrqRTdxyJuP_1_VvOJZQ87bg0gOUONC-wp1vcPYqspYMhf6zNmL_hlNRaFR57yvQfDaoD76y8KE6a2hUXBLFcqZQcQGhLW2NdUMOUJrUzAkP8WrYjLzRvm4astcfosf_JguCR1wcHEwuW02ApUiFNbJcZbCOlYYaQkUPa_4RjDPFcXgjr1zaX-PhBzRAh3Do9Rt5X44dW_yNart_DnQevLKNo--qKYsbagxhcfDPA9pWvOdbZGe6IGjHaTd5ZYsDpvoIC0PrmwkVxJ2NKsXGEsdcawKmw56Z7UiQ4wUqoYR-sjqTGiW0DFKmMC7yLl-FpV8My71B2Io2Poz5TCwiJ3kPy7USW9ho87bAj-tStyJuFG0RJvX3xce3LJDKm2MAIhFTtraIdSLr195LfW09rlrruXht-W0kZxDZeD7H3DQF8L1J-Zr_btWdgY3C_3V5YF07sUCCz_hMGbauLHQvSHq9lOwfa_OS203fgjzhjpZPJ42njXtyw4Y6WqoPIjDXtyPxwmF5lSl8XmWrOM4tMKH_lqIkyk8q0kziuqVLSVDbgk9kzUDEKfADHxLryKApE7Bd5nLFYid0U1sjOT8Exy4lqfaDE_DsQsgTZ1NG5rg3uxayWGYutCHMJsKvZ9XWZ0G-R9B35pTu2trWRBdohcr1G826ASKItDoS6_nXKdAazP_TWF9qmRxa_sLff6vuX0_41ytIXPrOvgm9GDUlY23NAlx33Ka2GeW7S9pc2HgniBRzpNUY-n6NUzGFwnpSQW1XjQtcerCS6muA0S3e5vYcV0y6yl-kNsaHGIrzBUG5JBiRiDOsaT73yDqwUZfU5NR2xgWic4ZZxtUQh-NKKwmspV13ZgFs2NHyqx-jOu1G7SWkt7jbGe9KCgis9tsAZqb4hSLnrl_bWNeAiFBJSnC8ZzQPPeoyhgdo18KrBizZprQWysJjshTtF9o2z7GHcT5jnN4WdPys4uEu8c8y-Hj_ySqcP7hGUVS075eOQU14mExUYiFhnAd5HVP58UU-YgaN1tb8LG1La7yzDrgctSGy9FvQozC8M7oAWf0BRrenzqA4bRg0moUWlG4KoZUte-rXv5darwQrO5rSEOWm0XdbFeWRb4lDR93FiSWsrgrmnw6BbgVmRoZNWcLHwBi_fsA7Xsvkv-RUMT_bahfpEgPH49vjTwoTz_CCSoylAPyEShAOVIOGrZ5-qCCeURLnJ3yysi-H9i5HsI0Zn2z5TSjStAbVk_anHeQoyEkftRyIXwJPiEnYMGOXNOWaXKvIbjBp8gbvm8mIF0o43UDdhqcWnZ4XWhJpt36p-9C8RcR4pvHjEVwkei1czqv13VKC6QhrCf_gRb5IpAMJGbQ7ZHExei3HmVOyjfet6_JbLvfX7uxoDqChnNTH90Ec35wwUalvGLz8mGRPIg8tsC9VOlRYl4lK_7-cSYdQSkPDTjZQp6Wgf4GhzIJfantcBEWGnC5nI0O95Vx2Eifg9XgJGlEzgQfnh3XZc-I3zjWetaMulH-pEdqeYg-uq9I1C42LhLr8RhJJb-9Wxg8pbEiwaq5cIqEZ85oqaFuFQ8X5HqHCZk1CpxqPe0I9dp-LrnQ2yoH64V1HKm5bh2x4bNAlqMhAuP8RVLH4YtMsp4qbx2C9NXVD9kxgTJ3DOcN5sXqHl551PJg1e8G5h0N2uZndo4UE1JBONWP1Mp\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-676d4d5d0d0e67-88369601','','','2024-12-26 12:34:37','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41860',0,'cd-form-entry','',0),(41861,0,'2024-12-26 12:35:26','0000-00-00 00:00:00','{\"firstname\":\"Aneu017eka\",\"lastname\":\"Jurmanovu00e1\",\"email\":\"anezkajurmanova@seznam.cz\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA5WZjQvOWnrT4uEb-kzWfKxZqpmkqXMvGXW1WLIPckic7Zb-wYjYtMKta4Xu4xRNnu4DHc4vT1_XitxB3VtjF1p2HtCONjnQd9zaUbQr4QuexpSnMVcn_L7bslxpP1hs-NAKWysKByWVPHeX3E3htYiGqRfedqOWQx8x3xzMnbG3J-VLz-6yDrNxA0nw_GJtiDjgQrpd7wLJOu_UWaEU4IwtBw92aHfFjr06qhvzhST3WOGiPsWzbi7e26M6ef07YyfR5q6Ws116Rmlpc63_fJLGQhf6wbFg2f9aZQygUscmESMwP6uVtIdIXF0zpPb4IENoHd_a3CYJuRfU9caqacCl4dB5T0BtFCbsoCiUt2djh5l_TSxkdpd-PF8U2xnysL5mw0VOCXW87V3QIHtNXyPk3A4cOTl_zNEUhNb5LCs4ngQDDc70OYXODy-vu9ZdQCRMpxHQTitoJhjwO-bDKMgVjLAQOdGSuz1vzg0E_ro3FhgoYDLPWP7zAsrKHPz3Qb3mGuS_PX3G5Dbw61uiqR-Op1xLySzcIgmcQxb4ywX10E_LZ3ZqetYfj4aBadhLyM9ZRQQ6kcS1FlQoiJGLMjCETPEE5CmspEYgwlSEz-7TzP0k5gq_NRxiBH9Au5XDLto8OgKXKJgWHjmGGGqnTDVtwXm8FLWMIuab0seJ5uYlHfYgRAsgCC4jYcwVoVGvghE717LuOUeyn1dViwN48-hDXjljWuf9AUUQttqTTCYqAG-RfBMKZCbo6B3J5_xZ49UV00gQohTU_9Au0JDrL0MvvLx6XPyILz6GqK7AYGq1Ojo73EY9ShXmWXgGuoqwyLVwgMLFzmNl21Rb0VVej5UtRA6NWwN1tpDJZQBRAfgUB3BOhVWCr3mq5aVlO9BEMI7-UrmigvNP5BDjentGpgO_95U81S8wDm-uz5wnV-NmXNhTGOQij-TaoGeUcTZ-BR8rbRKWbLh8fdrmwE-KDFqpvuvTq0k_cqICmJzej_z5Nh32A_l3baMDzp_Ci4YD0Z9r_dzJJ1NsfN2Ney2dCukgU5hVqZmqMxCCFyDXhih6BXKeGfEAdyZcd01iLDm49nauk2UEAawzLcFeCjRwRmzvFZpHTr630X4skY3K_ST4NltMiYYMLDCEBhj_xB0ay8KU-C_I4VqzZunJKoyIov4uCUqihb91mIyg4dg1TwvwQK6MBXzaMSbbnOerWCZ14eVPyGvr7wWFP6DfAM9hag_quRxx6AtzXd3S-5Dyi0hYNOcKMSFJ7KqDF7-oDzlLtMLNoEN2O4ChnZ0kbnZQ906PP_VEKwJHFvTC3pEF13ku2hTsCcfUH20JYxQqXUt7FUMFvK7xvc6p0432w0D-tiv8uFornq-hi-y9zzlt9nb_Y0CJTnPk4BNOrUC-8mbMYpbligoutfjx7rEkUt8rXSZxyz6ZDkdo6m_n5TwMV1bTOmiFDprCpeBH2bbmRkFlPdyyXIYyvNYBdcOvjpNxogL70PWrST_k9SPi5LJoJ08PH4-EVoU9l2HM2JhAuNXkVfT1ynuujn_Z81NB9pKuSUbDuBs8YBs5UpQnMbm6GFMAQnkhckq7OQ7K6YGgDEKu0MKbRnrz754v8v3NgQW5UidVSrxb8BKLGxkyb8ScV-lH9JOssIPK5QVefy1w3F-Q5WmcFLXtU_JBlcKxfAl1N5DEH1i1Z4J9bNTM7B1nW8JOrK_bJGcX0sZibdS3KKXV5cv-PbabBlGrtxRwh4BHfTrGB9iz3rHvUrLBALbXX2XInBo0AlC0y3bYV9Jz1ulCcHHMHEoKQfUOZzg2ITcJQp_56qEZM54yCNx1iRmEswZPFS9IPce4bzob0IZ_9GgMlOhbC4T00G0SSQbDmED0a540q12rGhIyvZYmkGkx8cpe1LeSt1jEUmNV_A6ToDC9AAORiRdgtl68HqimbxCf6nh-ZVNwg80T5_QNEfq1oCIFuxxAR0weAmTjzPSmA9uHdVqv6rrOqIQcaWtc0EAQWlDLU2524E_3C6dzBuOCL-g-S7LJVrqudOVb8ggfO8jUnpRmGvO\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-676d4d8ee9f307-46827634','','','2024-12-26 12:35:26','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41861',0,'cd-form-entry','',0),(41862,0,'2024-12-26 12:37:09','2024-12-26 12:37:09','{\"firstname\":\"Aneu017eka\",\"lastname\":\"Jurmanovu00e1\",\"email\":\"anezkajurmanova@seznam.cz\",\"contactnumber\":\"720189479\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA7uiplAfzl3qHSHtB0kZ826tkniOCll6oK-NGGDewo5cVveuuGN1xf43_59dm2l1tgCq-afoSHLZJQ6OQNQWNB-Uwmx8vUA7WFM3SNz-ucIVivS_QupzRx4_4NuUrAAXel0bE9IvXWRp5vYB6oEzVI2638iLuSAbBGrti2WXa6Jyn9s5UA8dh_yDmEPQBgv6GHuyooQwJuwmCLSe0WvZotwwf5HYom0V0ArxpN4G4cfnU6uAylsTaCFr0tN3zHOF1lCVy-74PWkd7pZh23jSqDt6TqSN8dzIds6aPTCwa2m7GSZzvXSaNa83XLVlrf7Tm-lNPyJMIa9N0X00bKyB6w0QVOppwbct6_vtO4XXmsDnD6Q7U1sgeb1IZl9pFDd7TKyPSe5Zj-AbNzwH9-HrfH6NZ0czw989iVIzCRf3_1d_lqlQ0w5K2Vi1gkhHwuolr5O_UQNe0sYCr7obKrRO-YwGYZOiIwGCERxFfIlOiHKSQpQ5w1WacWOZxKWbWV2P5oFRBmt3FCqc-oi3Idxs2-7brV9xdnzQ3JxPJH4wDt9RYoSEl8zdjUb79p1Cr3ytKX6hlzHBJaimUtEnVajYywyQox90F0zgRbmfrWoSX6uVGRqttYK8gYtdjIuc2HmZP5zTLxA_rN119EQEh84_bM5QF1hPTVdP5cj-HTe-JBzVaC-V7muCnFduNTNHKQB6NAKgvrv9-T87ymnBXudgHnuMyaBDM1zQo8VpUef4m7K-8VJAfFfrp5MtY0WWFoTmxRbbzDXM65WQgz54MIRnt_K3w4hc0F7ymEHWVMf-QLy5OIT4hIA1tV9DRB_fvzV2SikigF09OWwoFDEYaOHb75AZSlESzJr16h__Yi4x6j11uDByUVj2pz5n84LfJiF3Bf077VSA0sVZbj0AFH-tcnj_Xnka47BtlTbtAMS2qUSWPBJGrDRjAjtqyZIge7kCpGh6fG-EgbWhESKaCFTkklq8RbXIF-WnNX_DNKwmqh-CpApDg77f5HpGNlMqoZPENIadOHa4cxs24aczzWBUqWOvqHXWXPyM5jKv_cQTWqdjUnlbFSTVVfli2ol_bWYZm9xqJaZHPXUB4zy4-q4T2FpcSk2lTRAbZ9bavO1e_dhjDGB0PK-I_j8QT9uT6l1Ge0WZ6rbx4KY87I5ZuY8eAA2Mnp5b1lh9hVky6NlDKHTd_7Lvt-2vzVmSPTN4-YYBbQzOhQJ7-GxrpMzYD-4kFrEey_cnlLWiHNi84iGJnjAns_tiTGWvRsqBNjtiddkqqHXO1JnYpQszHG0w5Y6sQq2hTm03T4qMvdAtdzkeMf7XjLCgyfsJST7vJM2bIkaSdTgJKfvXPjOQUQdbr5bP5wXmzrknJGs22geB8a09v6Bg_ZpULZJ6rYSwpcHIUWG_zql5JTdqnK7KBwPfnAupxRpFsDFtzcJ5LBzm0lt_UyKoY7QWLaZWpgDGI8JJiDsj496kd_UESRXb3vEi17fuCx4nzuNCRp4sR3MSimTT6rGHEmJ0hv_1aKGGPDnLxeLK34TnTr1MRDXOcR_aD4fxiVo48EH98TWll8h38dhukM7ZVU96Xmw9auyeC-_94tiegCDn8wNMwBs6bljKsT7ZWTc4k-B40WHWx_xxNgG843gcH9Hg3jc3Hnw4Pd1x06VpL6NdnELhAQTvuO3ImOwkMlNycUENMaYbBcbpDNEEJLpGQEbEQobSS_d-VGqVTkgtvnxwb5VJuRbFvPXPpM8Lp9hLwfK7P8rYlX7T5gLjEpJ1GQxzu4JX1bXvL9t7EXQ-CbD5K9ypkXLLebq92ZGa--XeWyksxuybsHa05DhsWUIxtltvKqngeq9HwtUtEHKOVob4M-0_1MT5EI8WoUIV5vUhuOyyFJroCRszTQ5Dwl-Z8lFVqmr2hbyiyTw3NUR7AIgB8wGDS6sgNBl3j6FxZrf4hGm8Bj8Twg3vYkHOs9Tn_eBVd5GWbQNbadZe_LbAlye4uyNvxpmrA4o59JgErjpR66d89EPrI5JZsP9lAfL7GLKCrnXtz0jwtEqoZkq8cWfS6t_\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676d4de6a265e4-20627461','','','2024-12-26 12:37:09','2024-12-26 12:37:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41862',0,'cd-form-entry','',0),(41863,0,'2024-12-26 17:15:54','2024-12-26 17:15:54','{\"firstname\":\"Alma\",\"lastname\":\"Saraci\",\"email\":\"alma.saraci@yahoo.com\",\"contactnumber\":\"07915185097\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tnr7MoqSp1vkj_Eovm1wqsV&amp;gclid=EAIaIQobChMI6smy2vbFigMV84tQBh3bqisNEAAYASAAEgK13vD_BwE\",\"recaptcha_token\":\"03AFcWeA5vGHBDVVkv4ump8pA1VoVIo82zt6EX3y3hqIM30IDWhzs4s3PtixvvdSy9kBWBXjXe4mBTJ0o208PRiZjwePcADpQWESfJzEdsECZV1LnJ_0WX0xY_epXWk5h4_gKpkH8pmVDQPOT49MpgV57dWEYx9d1mY8RsjrTt0fe9TuedCeUTnAME8bNBCs6MALi-JN-wU55xiBgQzuumtNXYGymSrs01YRg0DNIi9SREVcYrXMYNdGDQxfqMykFRRJo_VvXIDk6oR8pZfrlB-NgJTdMQMUG57b-RC6bC693IXGQrxGr5WOX7fgJDaDdCmf9r1TpYgyT7pvn9HrL_TLb7xFpD2JlD-KEUmj2k1NS2PrVGc42eKv_vO5QyVDPDJ9z0SBB4Aem1ivwrMF8KAI2WuZetQ-Wrf-8OLkxEaWOUXAQXs6mktsn0o6y6PnNN_JXS9FOAqoz4Rqv98tr1gpktC3lx-rYsu-RWs8PDSXUHsP5vyYqCGWeUpNtPrxlqzJkPydfOHx5i0pbxNSGSKc5WXGsxg8Zn6WaIy48pVrLisoiGLfwfiUei7VgSRW-OZMjMrT66GqQiOKb-Kci5BlYIRw13zFMxgmMu8p2f1dI0qdBHssxko5cdrOwPgVIf0deBDEemrv_wO8yKtKLr2aLy4y3u0bpg7tE6CsW7e1aA1B3YFqyiCF4TtdAv0gEAd_8FDF82jcxKHwbPLQxv19V6EJLH4rOIgv5FRy7VoGZ6uR8TIWtT12RX4CkuV793VAjwFoHpyQVzEC4EndTZo0RMD5O_g3JQ2cUXt69f43s6fVYDUIXpAEAYNEEHS6AUPYBfn0u6uGnV0eDRtIbPTKH4C_eVWdq31KJBNL_TdDEAZi7Qw1shp_ldY2zwy5LiVgZKavKzWyz6NTAvZpdsdg2yf75_2u43nGT3j3aN8SuGjqs_0j9eQsghR-9pyQMNeLipmQU-HXXgl_M9zvJ1lhJLGaChYDzaOOZ9j-ao0X_lgJmmK8lFPUMszbmXWe8j6XTzZA6Rzj7WmNMj2p_mb67MtENcOHyB7zq0cnmYfYsAdgUahoh11MKBC4BKs0uTYgEVm3DCJPPUjWMtRjT3xjqOH6DllYBhLd4xwFP0jNprY5_xCUJJKd3_lE_Yg32vG7OHjO6fMyQNR4HbFURYm6tdaYEat4rPavK_AAevZcUDyPwtPV2Cftw9VW6t0a5VEjUzYwRWZ3r8X3fx8C6nE9lKkStfl8gUt70Kqy_8llszEWJcLpytFgo6bCWXHNcoAt2EzECl6iMdfrhKsHqUMUrocIAEpdBFJ_bxIrdHctMGqu7vR80ZMYeiI9LQpgC4KJjCd698AgIG_Z7-8GgK8NGeeyrwA_PlzjMDi2n0odzQft1Ox_0QyfFxZrwowElOgkK96bn3MeMF-cYiSB06vbjyYLWc1owpkxloQH853eGFYXe1XrP57bMNz4h9jc5qz4QyOpZy782mnkB3vb70A2RV3gtmKHY8ICOldnFAWfeN8j1KTNAnhnA-qq35La4Ke3er9xCInKhh6Q0BUxcW-lTvlmN9AP8NKLitZxhRtIk0MW8CoSv-3mu2a7dsbNpBOXgDxSBAqinX4_smBsXqDN-nqWIY8IeQmapK4oYD-vwSwh9CGnDc9_0FHfIOEToVD-8gkeAzJRn8sawOTIbos7UEFjGGEPG766UYmtY-X4lvTCw0AaR1hv4YZACHgafzf5366XeZBTcYWwb3hGUlDACY7N9Y3E6pFBQ8i2d0u42bSmvKHTtQ9aGIFLxNIQnAuqgn17o1vyNlsU0Wxjtm2vPE7dUgCpV2VOw6XPHJzVxJAzhdlJF3GqarXc_vsXg2QggNbTy9zqKrqqPy5SQksTTBGCiPCoo-6KFzqQANgJ4f9gtpRF9kSAFGmVqgdnEdw-LLyCjmgk0rNhETnW7sOSJj4bwLTfISaPrkq3gBD-lt6ZdEXdi7-EUHhFA13ySp1mcY0vA-y4KQoHunWwvlNbOdUP1-irUH7M7fe-8j6yb72q20zyEMZBBi7jOrCboRAC_Xnp2wpc6S\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676d8f2c8fb033-40715119','','','2024-12-26 17:15:54','2024-12-26 17:15:54','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41863',0,'cd-form-entry','',0),(41864,0,'2024-12-27 06:38:11','2024-12-27 06:38:11','{\"firstname\":\"Daniel\",\"lastname\":\"Moore\",\"email\":\"dmoore.fitness.pt@gmail.com\",\"contactnumber\":\"07505678761\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sc0-Yjvb7OVX2t-IdwprF7W&amp;gclid=EAIaIQobChMIh6n_4qrHigMVdJxQBh3s5Qg_EAAYAiAAEgJ7IPD_BwE\",\"recaptcha_token\":\"03AFcWeA4ySdEbTR7ehwMzjHzK8NDigl57KV16Yx6jo0RIWvdFlkfQ06g8hCIVn-JEjrtgL-FP2EB_gEsy50zPtGAQlLsEg_faOrWf0S8JmgX-JMKG8HpCWIGEAhfd-dr859-9LXAzVwBvGY8DznbLWp5_MZD6oW21rdeDxpWyhQRv-dQywzLR3CW3QrEMbSWkJ3RKFdSqT5LVxxdS5YpMJrzTKv2wCQ7AjJrKdmCuweZKxKG5KhfzPTgRRWRky9_6orOMdEIzvw4Zq97amtc58Umk6CvArtZ1SYFzzyewHMii__43LGf69VUNW95W2ekhXQy6qeTH9eytb80Nbz3s8vsXEvqVK8xf66sdtF_DbRGuVs42dercbDuUuzobpxVZJJvictii0nQg2pXuj1js1gqH1DCJjptW6vXNQfmhd2_U7iqZDmnNmtLTcnOUsJOn9ItNt2losJ51IMbsCZJnPsIsz8AHG6qCpzr_dua-EjHZm9DwIWVBEtiSDI7QQb7Pgka82RA9bHFsS1WMlZIO712kfUbuXGfU6m1H8wqpXdqerWcsKgN_vPEEhcyGQB8D9ia6O2gizC5ZOAKVYBYCfRfXlB0EFqLNfNl9es7HKzZLZ9v0t2qhKwTFdtnmKpghu_a63Xud3oYNQyKlqNGDljVuyFLWvv91kPoprT2h4kbrqQndpMKo_W4Zhrrc07Jq6yA3Kq_Dg6nxDQg5EgBHnvJDpC5qByq8aFa3UV7bxf25Nf8SCeTB4s2ZP0G5aoJccFXhaMaMGfdWBqvVC9nCuMfJk055NABN0ZjvAvPpUFJ8i0UkAmxgeUUJiSktYR8KZ4qptTzNodtRLrANzNngjXw3PmZADqDkMDKRKSCrEB3Hc4rQs1a7jcp5ANm13F95qgRDDVTK2E3rj_G8Y014kEoNNGOZuXw5bIWKT01Utr1oxeCewGpxgRO6wTGzJAetUC_6IuaMBwaRPajr2G2V7uUC1MNzSb0cbxQA9zz48F6PqTlXHVkQe01ygUFMYXvMwvjtglplylOD_TyJLYXcMRLGHKRD9-22AMy3TSZVeWbDkgDBrAKAPzgA32MorVFNVGWB1mNjIkRqPYT0hToRU8O12Zwvxp9q7dnd1TWXoZ3qIqvSreYnjdS2GS1dLZdo0_hvDVJVDgldU-DXjAbV-lgSZ4etLjy3mlbAYNxNHGDHGVw9G4lXHsR5th2joQkmTPHxXwHVb-7SjEcgcUlxAqCyXNcyeWJP0TUXSVa9aWfz_9YgZQRrWGIpugAgEvjz578v5Uq1rnLdgLlGROk66uvGKhv9_6xhJUAEov4dB-NXrbUzOMeiH2oYXtk7XnbgZJUJAYTz6WyQOR1HKcla9cLrjurBIkvgGaCQD4IcNNPSKFz4ZXAbJFxjj7kxVHR0lXlFqeIKPxreuSjcNhzCACzHW0xCMEZJ6HW6o6vAtxGWtsOd1lb8zXAAbOIxfFlSJXYClLFPccFOjGmPKNBzHLQ4lb8sLKa9GS_nF0aRDuvcXzK-vpLPNlCtqucFhR8l-xWqLG1RrjIKVzHYvj2nvnVYO15n_1Qu3zrqTtj84R7iVvSdIFf2lsKz2DGZxnTsFD_EK47GCV4mEHDpkrwJZwZ-UE7varsWPbNs5kIiUxepdanySWkY9wYp7nZvgPRVhq8IfJpJAb8a3UAS2fAvpHdhwlY2wxboefmkacBARhP4kG3pCHDMHEitM9CfwzldKCB56zqn72zirUTXiIqOWo9q06456KX7ueqTLpm0_WKnqLVujkuNMoZzX4608nlaZUghb-XcdGRP-C71m_b7x1we9jWstT4LI1ScIbKNXj-zpHpvAD3dL697oeveYiDPxsQcQehHV0Fyb7dc6bSfU1XOFzwJJLAkR891Ibq-BX-o9yiyMEFLLh95vhjeMdPWnjIDKklfsdSyf2A85czEVh0Q8-B0e4f8rA_Mg_HaSzUa4MPVj-5WVLpD0E4RSWABrA-R822aGwmE0N-dvyigoXAWvdw1NDwsNRsvKI4tpGGaovhwppMBuH8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676e4b469086c2-49411231','','','2024-12-27 06:38:11','2024-12-27 06:38:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41864',0,'cd-form-entry','',0),(41865,0,'2024-12-27 06:40:10','2024-12-27 06:40:10','{\"email\":\"dmoore.fitness.pt@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"Gu2 9al\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/\",\"recaptcha_token\":\"03AFcWeA4r-Rgo08R9Qq7Dhmn_VOdfibV0IwELFB--NLVPMnWW1ttx1p-T0FjvuHNc2Ihky7QvtI2sPSYclOUkpWjk6pa40POfRKzEIOg5hGx1IB09Z9ghcGhfaSbJ749ZgYr0We-eHw5TtzvQ7X9jB55WT6JAypteK3qLe9I3ZG30Aj--dEYlStix1v7_8OIM_Tymuqr9nAhBR-dJGfq6zJNGtcoZfIz3R68pwsmxupzRIu13Ow8rmCWvooIkN05a6oTE0X5g5bTxbVnPgVyqwCFi7Cx4h2JHUgd7NJ0BnLAA_SNvnuIBWmgvMpen7GKDNEdtWJZHmpl0kjMKM4rDM2_gIIYQesNuFjx6NhrZZ_B80ELBfD1dPJ8dpCrTgCLhoQPWw1sDGNDmd7mJ8HGZArWCQlbNPW0Q5nhnfrSnzFZFX_UY877MDIJWGVhT_woTdiRIpOvjkNI10AgHQYIAE7tMtJcaSViECJwklyww15oZymblWJppx6phBvko0h9hBdJnlIil7osKdrUJ8bIlcR_y-48LdoEDaGoiia-tWuZdjkAxSoZP8jQvkpS1ZKGeFZt12PQpA06feSs6gYraTrEIS82871jTlBWuzcVuS6CYJ7Vy9WjERzfcFSBWiHuSpF6q4cwnf3a9EwEPU5uSrranVu0_bsoYDkDfXOn11fyZPY79_nUp8Iy-mtWSZZqvcnLh5ZWH7Dj2gIIOuvksi4Z9CFo2InYeAwjMw92S_g1I8PYclno49zivXLpcWb12pkQfIPibrajCycnxh35DNzVc7z-JlttBupKv19Ca-6qYM_hROjSNl4pMh5M3C87BI1mz625LpY-7OyCCS78LZToKwycKP-jM8hhqfc3ckEcBlP7dlOCYa3V7cofqM98KVqRDNvgfk_cPwjaIyLWynn3PM67lzD-gTz-IkTg-PVv6Hop7aYABSFpZAnBtFbjRsRdCSClTAG5_Xtp3o6Mza7vR9bVjAuHx6RDYi4jlGmvBtTow2FEgJC2D8JDou5pa8-dCDUBGPgKh994Mi7XbeBSTOR2ZprnmrIZzaf2UTT3niGXZuLCQ31SKDVMlMqDnEjj6hVU85cBzk7Vj3cbKbzE--Woyf4VdG61jSwmpBMYSmihDr3kPMTbJ5oRfKpiV1bJU12uFOHMIswqL7-UILCMNlX-QozFBy8Dm4Qhabc9Ei_PYPGnn3rmw1cLBqsRsf2Qd5NaFDR8MK2PlnMpeyg7vq9HBA40GsfBQkGNmGYIyge68gsE7lvbxSliFnpOJpE486BcAE-4Yw96f4c0rbrPwX5HIac3Pn66HgE54EZuvgqhQ8w1dh49izzkJJpCXUa4PtzWAPAo8Y1fTppmfq_vvWavfTVXMcOpM-JRA-I0RllDWeseUIDEvKPGuwvbU8CkEA4hsRqTSeIJYQlq-n7Kyz4qmD91M8SUbQxIKaq13y1ClBGml4ianqiWdKvZWDGv42h-4G3RoP7LaU_1YPQXLQRs2ED36DJ4RRrgBtix7klPgLyjTQ3dZuQ1Y5n_baLPBJ1Xk5IKNo6ZXyQam-TORwjW5ZoaJ4GIQB3cQ_O5lz-j_Fa33ROpywPtUo9rrGo8g2P_WaP5CkwoCesr3Fsa4ZwMWJnLCEap4zG4-SqoPt3w_oViCssR3_fouugvxqAG4AdITgSA7XMS36w9VikLjBfo-2N6S6kqF31soc9BxFkMHuvC0YyFBdBfHjH2Sd2AtO4fbOSWuoIzlmta6emy3kBX8vrQdyyW8Oyiq9lrh7tzJQSpFaR-iUu92aL9FPMv0wZ-mQ3-lSn0rkvlAlyiUu-l0iuC-70uLLtJH9tomwWCldkGKdZdhKUCFw0Q60DyZXn-W1XjWuDOMaw-Lkz3vl6PHNT3VY88KyPh0uf4e_bh5wpHBQy1QsiVDOC0LhaCH64tuBdPbUYgvnXUDdDWweuhf5XOX2ppz4_kWfgZAFOZJmoUTUZQa2_JDLZtjkjy5ZSKqNCbpraRwA81iE4Q_UdZ4mps-c9GIZtZEjQkXKzM9T4C1i5k\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676e4bb2a2be97-62178029','','','2024-12-27 06:40:10','2024-12-27 06:40:10','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41865',0,'cd-form-entry','',0),(41866,0,'2024-12-27 10:36:58','2024-12-27 10:36:58','{\"firstname\":\"Tabatha\",\"lastname\":\"White\",\"email\":\"tabby3862@yahoo.com\",\"contactnumber\":\"07989859836\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA62pRv9_e7ZAO_g-CAtc36ElqVSmZozSi-eqfDyP4d_QZVuQMUBevmdpaLVS-xXS-1S5DWiTgmIKvyMxirjpgJYac10Yy2_owYvBZPbCjcrdNDCbJOcNM8D1rNdDqSka4TThQWfZtlFnRBF9HlIeCvC4lCDMTmK4boDTW5BOhWElyKLigGWOfrKNynXvVyATI4d_r4pOUGjf2-sEls3OBvGdGyo3zibuCTZ-kjEQdEhWefHyQcEj_XPjU0GdEWpO4nPV0faNilPEkApjiKrvvWfOznyo-E2s_FrAAXHJAPWhF5MFcxvpoR12dEEdGB8_yslvTjZiq881EALQqrGLxJPWkRf4wa_-g_bwTrCceJNLG75DuDmQJbMFlqSI7WceMyF3cRDVevN53MbziY7FS0Ihg2Ny12r26dcZ3NgBb0jGAlcvYhAwBFJwAjvm3ny_ir_GjijpWPflBH8fXRB8sWfg6MFgcyRFyEM2emmSGuUm1e1RegUrmKY7EjkkI6lCVx0N2kI53RBo27p6NUia5aTNnV2Cwo0zjkfU8Aa3dMB1xNxAva4QszABL7EffvYYO2NHw6ZWYsPO27dPKUcE4kLaJ2JI7PORsA4yauVeobdD30Y-1M6IKHv0Aqizgvokv8gVv4LDt9Uv7Ls2tfI7jotsjolBAgV9tO-lTy1KnB5Ru7DwJ81bCgEaMiAVqerW3IVNloPmqAG1hThbiXYmgaGUg_04bGyn9JhjNzSU2j9ZAIbGZHEtj6E1UdAgOKHPlI8zbCGPWdpU9_JynLsR1UziqYVaJjS8p384REoUYY356LEJZ-9JE6_NPBmdAdpjDkRI3ewBq4YmwcWL7CFGBN-TCy6yOPnlyhngKP7C6FVJGBkhSROzw_sDlb06cTlAiD2N5HjvPGl980rbq84lh2C3uzF-9F-ziyhuTx-mkP6qkYvwt9tgW1fe9WRaZJ1Pu15STz-lt9Ydpj1MZKM7JbSuQbp0GrV441RJgvxzcyCydMEmy48bnp6TT8yjJzREZDJGMdjqS7Ja6u9F_2MyArWREpxtV0SvuCokaowvgRO8TkiZHicrAh6vwa7-4C5uj6QpTYkxHNgqyuCvFrjupVCBT8t_Do5toYpbj05510yli3BbD4YIxQsTQGCR0GsWrxwSru8lR0HGvmzXtmuOhIwN8oBb_YjS31dhxSD1nrxRYXZlXPhEwq6qZzF4a2oNIs-1-yZG35rvGymhh_cT9fJqCDeVpa-1YhYqVtwrcij_Giuymq75XjX5QnEODO-0qlY4P5QNxP-BPrgSVsvh-d73uzRTA5csP14ic0_hRnsGSWVJBzKlHSyIds7du6iHgTCX7vjlJ1drVXBBhyWJcekKB5QTWGSnDpcemI5EhynWc7H5bU_BLh0Qgv-SfaDmvpH2ZkL4-BzcO6juX1o0zla8iGH_jaE7wH7vO6OpEoMqtumFDwJYQOcLQCcd7-tqrSzeAFLL3HELvIMysmesH7N8A7T0EYoSI7yAsR9ZivgXN8TcYxJcaJ264OT98uV7p7VljwLVKrBXksS18CCkyH-NTEy3i4S-xcab8yxluTF7s-vsh1CSNREVK_wbNabpbmxBcVOupoLcZFRyq9vK2iVZwZJSYOfLJFEYtyh790pvmVjVbrrxteUpRHedxnjziy_tYXHTqtmiYN0cltxJ8hhvkVUQeI1PAoBhnU1mjM5Aid-yXl4Av-XHTqilf-kYzbzaqBDDuctVSVhU2uWQ4wOHSCmlctgNTSndWYU9yg_P_8ALMH6LK_xOC0oDsqY3zHCHOYPhC9uoJ4k-JTelkI5YoG2JNFOQDj7Rsi_Bwf5PhwQ-4luf-_v0eJWXdasaq5-X5_9c5WVqaN7I8Y1oqTYG9RDsE7V4Zrn2DnIemrHPn4Ox_RIFTtALMRyvHLtkC4NURrnhvWTBVkHHusaj_Hx3gq76CiNhd7CNNGIUY1qYgdb9qltYeDLCbbSngtARoIMY17tXdsSo75VLiMVMOiqi5mDY3AugSiAyOBO-SP5JdgByXFZmQDSc8caDEr0aUZfmBYyvinnntv1XUz9q_G4BD7YWHOUXtsh_RfO82N_LQrZxC8cBd-b7IQ8FluvpcQ5H0GoDZcIibqabfuH3SmHTJhYrLSFWdz3zlG6Nf1YUwIo0CS7L37GzYQ1H-fl1O3pYV73H6WdtCWB931ovPuyzLc5_rHhIF8s9vDY3DG76wJnidcc5qWp_zetgLXUKyjw_15r\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676e8334075776-07796642','','','2024-12-27 10:36:58','2024-12-27 10:36:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41866',0,'cd-form-entry','',0),(41867,0,'2024-12-27 10:39:15','2024-12-27 10:39:15','{\"email\":\"tabby3862@yahoo.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"S330BJ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5HvvIkmVEZbno0lzUw0C3APbdbSHL92hTFLRK_Wcot5H8wB3BmSm0WQVVmhNeqqqyXmxv26fvTsd3_OWhK6-GdaMJIeuyJ0-DoqVqkjvKTGWNwgy5N4bIIS_mad6Dol3Y3tG6FAP9mdp-WnXC5acVWUtubiZTIeTdWy0H-EnsJjVVqtpNa9-_JG8PSZu1XOCQqp1k409GW80P5XGo-IMwbKyBiJpoKWMkBNlse2qeMXbf0rHwvAAQgxBBl3HymO5A9AQ707caDANVTb29B19GoinuPvbM9tIr8X64qwjt7p5N8Wi8-hnsvZ8iqQnFpEMBES4T16jj8YvfDIvNmfx3RGEgl3BJsIDSLLC_gbAZQ_rXt0RsFDbJw9a5R7O1CeqNLhbZBsrBSbrrbjlP8TVbiFJCFK6_ZA5x2_4PJkVUo768fNsOGmD5AMMRxzvQFDGaUIsB0xeX_yppmmN-sNOvVgjhyheTxqRdDKQYJnixVZ8LpMuPGgGE1f3GWzoE_MDPOHyAZ7HwoZsp9YL8w-KDU3kFIdh3Vzo1eyN1h-LEdzY84KAj5xFFXkfVJpetQmp5IbEB_P4QSKZCZee0l0GbhuiA5splWHXirAQF-UyOMGhkV_9GYlmMFR5wWB_10fdPPCSdJjm-Lysh-BvYMiHmb1DeYIQiL5g746B34fbMX94LDdC6xgP8Z0XrCZD4c-yt8I5Qs_qEPzjPLaqeoa5JEef7fSitcfDupSWCSqgiUFWcXXYKbDg_hpLDobxYFyPUGu26-jfvOsehQ8SRL0Hisp7Oy0kqlEhZou80jmG_5Dq7KRg0xqpmK6G384if9LVE32pr0P2tdaM0UgAfIO8r012FDxzkiO_NKod00stuYt8bAB6_d5cGckG0ukvLMADn589oSxlP15H0TYYqZjjnqG5zX-g3gYM8rTrE86LDDZKTYuqnhd6lKewqN4WDgVvausR_XAq1jij3fVX5q2QVGPDeVujmOu6549dMgkhZSNPPrZQoBqKbGA6jmb3Bg7RoIbbId71BUhg_lF3eoDB8PCLbMUGd6i6pF0NB4iyzTRY48OWkZlaDzJ1l2YuK9G9vjqRYhbzvzgqVtvhALnPGsdasLyerV4tBpTRezxaYSReMseEk7s0eDHh67jbIWe3E40lVuItkTiOHPi9pIjxO-EODi30wM7zs70VAFJWSVUvrVMK5FK0QdvoLSnV-pi9gRItYSqezA4RFuTb40Wd1l4ZVxoOTZeY5DgdWX87wnsWHfAV-C3Wq--GeLicVv_TZBkv3CakuYN1uUXayWFiUtqDbeKAlLDGpbqa8tdlGNdQND_ALW8Fk1vmdI5KqPeiDmIv7G57hoazKxnHQCa9S2-QwrepTazgun-MipC7yBVjtgCg1fGo015L_xY5fz3D6p4TumNnVdZNLnaJtknxwlIZyVBeolrJ0M03wxw70KKLoE56HIdYlbGjStdHgpC9-OtTuMqfG7j_kTA49vZSB80cfb8NgbJfpEcmWdg9lp5mSd2nSeW_-E8d8XPflCyA21TTFm9M_7QG99264nA6mvyJfPfAiId6IYok8xLCMgQ33_kIfdkyyelW7UJrA43uqAlGVe3F1fC9yWMy4HP-8l8ZCYZ2s-oFfY-EjNQlXy4TcI7oz1-kDllBet8oedmihNhrS6fcH2AmO3UETJZUsf_MfGzZBz61KMhTxKmHjn-9oBa57Zr5Xb8srx0rTpQDwu-dVP6jwMofycBgtz3UtbA8sZhGAwbjPpMJw9HXGA7NnyLc1ZqoEPy9peEt6MdoiP-6JZcO8RGqTnYYqNoeDzwirjFR5vu-Tfs4NRwBDtVPU8TCWPQJA8lbUQfE4bIlXTbnp5CAbnO1CtwsWfuasN95ASAX_fwzrSbIOegEN0cWOm54fSAoG5dCMj7m-v8I69WGuUTMmQrvrWIu0ua5q_f5idy6FS0mDmaKBLqNPoxP6c7gJru-DOzTdlDecW0q8OKh6NePImGqOUgYR_k749oiZdzXH8qbqQ4IiW0GPLP5y0XBwAfl3I9gdARF4KZRTvop_gO8adb6HH4nrctXhgeAWPXk5RThTQlxZ8_aySdRT6uXwqVgS-cGhQSqTnUFg-A8muIzXSHHS4plAYLDsWtUsGCe8bd-E9XyV9hIB9rgggnci6jn4tFpK-Rwov3oBtGlJGDNdAnUABUHa3tevufjYDJ7RVCXJCeVpRuIxEZAWjZ4aiIw0ePqhIFiFogf9Yo-VCYzKTWQyuw5ctcdIZsAfvoQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676e83a7bc0b71-12549307','','','2024-12-27 10:39:15','2024-12-27 10:39:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41867',0,'cd-form-entry','',0),(41868,0,'2024-12-27 12:13:55','2024-12-27 12:13:55','{\"firstname\":\"Leon James\",\"lastname\":\"Randall\",\"email\":\"healthybodyhealthymind21@gmail.com\",\"contactnumber\":\"07927915086\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAvbm7BhC5ARIsAFjwNHvbGoW8G-SMbpW8XG_FZOSU81CWkdoweQbNM9gbDrKoKyJusdCFlakaAl3yEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6MMXFpJkXPwasKBSmcnjRt3dQxGXRHAbO9x9ouhkkUdK4c85Taj0bvfzNCq-xwySZwFOtL56CsK5ZpZBzglezBJCejX5_ilIBPR5hQoI8jOZ308fhLYTxwl8lWbJGv0vAXYKXE8v_U8Adon7tSOO5mvx1PvisFYJ1cUdhwbFr9tjaVsk5vPCzxgHSfuxgHywMVmS6cDEIsjxB0H7Y06YaTBmB-QN4ad6t1jm9mUBAy64XBs4gShX2wRGjQ4ZxsqSdgVkUxd9Cb3FOAUwqXsBKaiS9HIFpcgAnPme8xQUjvVqgnkmw3DQWQrzzxz8W-m7W2yj3QgZPjOkO80K_wVCsApmVsPTIKpzBK4wR9vqiRq_OYvuoZfYCPr5vVI_P7eR9kRT7NPcbBDE_YRy0RZcFtbBqgLDMFoYL0aa3U-zjXv_fm2zAV1xbxHg5BfGW86o_Pjf5yMsaL6FM6COyiGQHgQA84jKN-RtJhcujp7ZYOcvbd-5wfukKt8hXsX5O4j1lg6Q_-Kstyx5x1oXe_-impfmiARaQRz0DsMILACdQvCmv7YGE1MQoVbcJxpIjtO99KmlJV7ocPm20hrRtXkuincrNphAroldJjXAzXfrcY8BTbj4o1I6_YnixIOnxVezjegMBFjBQ5_e1mXyybtM-9pehleaRBjjWC-l5G8s1NjpSmZDln0uNatcbPqCSXGn1uDxijigUQB9VWVJ1Yy4fkJfV2Cl4E02LT7NEeSB8ze7meNAFcD0ZCse7u_LrQZH6bd_VThKfIHynfvCFDcSMEYGdcvE-ndQk9jFM83l55qaYAX7z4cTxotdQkPnRrHb_pHuoZLbzTRYETI6ks760wVsUTbkbw8wxd_7qp1FhTBK7qMfvGOe6fex5O2P7LMvupxDBYqtzfwxlxSfN1Ccpvx4awuI3hwhs54q-2EsT0dfYQskX2AvioiHwO9z2DPkDK1cZiU4SGJPKvyCBVi_YLl_JEZ7pCuQ9qLNCUCMAgjhxi59Xf6-XlETMFCXhIqnQAoB_BP0G2QCfHuT3Fb0F3GBQvo--4IOhc3RuA7A9s9uLK03_eGIqpqAOIDRhQpAJdCjmTdYgqcxAQt1ufkuCfPe2iEJy_uNDey87Du7KxRf29gZ_8GcRDBV0jymhfNEeSboKUIf7li6MW9D74Wg5cYtm_vgE940Jh9Av5ZAI0QPPZhsKzTSMyFwfr-zD63F66O7TsiHgT6AzNyi7DejJwCIpa7Jg9GiuSoLu_wCkG7KGuwG_dCHae_2cLAtvEQYZ-zlajPXxpa3PvI3UV33P3AXW77ZEeXIl2MU5-OcTV4bfM-J2njWpiu-o68j3T7azT4fWrL5D5POXXewqqi5aw27SRHlqrAsc6OwYMtcAz61yxPVV4PRY3PQkCTqE5U1i_k_e6s5Ug1hBragHfUSQT3Aa7uXtxVM2nX5nfjj0HaFURNajvkYcK0OJZYKH1-MBxwa4sO9fldlDP84krzBzP_O-WLUGtsYcn6zEi5a9B-5rosUhQEBG5Cb4Xeyi6ckJHj0fAZKhn1a5w6GKXUNoAASc6fW_DTjGeP-_CeSYk_8MEVC2MPHfXc0mQ9qHEaHPngKFJMzSmwls8Csw38YPHQ9QzGyaQskJolW9eGKIoypC15MCYBFIfYy7TcxS7lcprsYSX13vCk0BU0S_q7DqdQxzigJj5I6oX5O9qN2uW2XCRzrPmkQDp_4vetJyNEBykLey5gFAzJ-2vi8R1Evku8xPWBIRmQJk2g6S4kqtOvKlROtzwGuQsh013ngOmyED5UJtRanGxHEOTRJqsbKGS5PTaw7HXsYeDGVD0KzdvZz1l7gc8BgfW2JxxfY7Il5o3b6dSLzpxBtdUVLiUavkkKUlgoa91lfmfi4eCi_NiVy8W93MVz7jqa02mdgKSDZ2fM9hfMWaqVxXqI1k0EKAi5zW7dw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676e99f271b091-63716683','','','2024-12-27 12:13:55','2024-12-27 12:13:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41868',0,'cd-form-entry','',0),(41869,0,'2024-12-28 03:55:22','2024-12-28 03:55:22','{\"firstname\":\"Elisabeth\",\"lastname\":\"Sheridan\",\"email\":\"lbiggers@hotmail.co.uk\",\"contactnumber\":\"07870690071\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA76bnbGxkRD8s6IuYbBPOQ3zkJ2Nzoc8jQJfxTf7rOUA3sdvc5hyx6njiif8Si50BeV5_A6vvJnSOQEIp2ygfv2iA_Cj71BbdaTwT0mXMySDC_s9wbh2_WLwQJFEHH22U2Ofjiie02Gen4FKSU-5skrEI5VHm9u2C1V9zm5Ai9SmYC0NBiREcs4pkxhF2B5gcuKkvVEVgQqNylsUf-SB6egxwXBjEO_wJ7nzMBUqJi9HQ3Xds-TljP55L-i8UK4QssLx6u_6sr_XIXQPA_cJ8h673OrIJ1lLBAzMrdiN7bf5ryyDMra29rYI_3qM1oHJMDJgI0__x47rB5peVv0BSDjIITZBP7oma7PQYoonhHMHeZxoh6XXznaXZyxmX4K6-O5lO1_uKtJZyn_ftKR9_kyUhb9XImRy-eOhZTvOG8SYgdMc7uP-hb-PEpIIvg7cD8mJwOhfjCn7tk_voGuJFL26PRLB3LmXerUR048Dl09xkQE5fl0nx9-znCYm81e7XgBdT5_9N5OZSlahA3hCu8_G0qvFgwIZNcDurce_gC86-D1O3KzHmdJry63cO8Hsau51g4YVn2fuRC2fCtub1bg12gLS_SJXcbA13i_p-wIgol4O1g7bl6Fg8A9RtoR57cifHDk0cpTHGPqEQoicB89hWfNhtCGHjCCSwNX4Zqa-YfMqyXKBtSYgxill6waKAr4FhEn0ocd8jEe0_Krd46aLo8ANcC3oYrNVFgulSzyP_SerPG3-ZZt4aVhXhzIptrF5e9RdbFmrdkZ6Pz7jEx4jf58dVSHkE4sccPQJVSD6XhJLErOTWiDoUUkuTehicYuWQjp_NlIUYLiJRC_bkG4GNYfdH4Y45cExVQ8i-R72DF4ybF0os_lkwvGLEOHXW1bj5BjaajQPGlPn7_tBhfepp2fo8AoMrrzGQx_7mNq3HcY3lfz-Mqs1UZ1MDmXYHbItv3539wuOXb6K8Oudb8YpgAFOqf_uAqHF_kqhz54-VLDcupvniM-lC333iq6brfy842z8f8gHifOzpViF0JaiiR-BRa4TvOq-LVLfmIArPOthB65ffMj3rX7cuuGDKhkazH_oaYdjgKQJ4tbe945ySdczAjK1AT9-RbETLi1uxs68xzNBYVu3124f2s6A9wrvVBlPRICsw20sWL9lBGhNO_OHmE75tRZxynCXNQgWdMJhuKh6wHmowfIgMJkS1PHCK7_c-jSyPzPJC2UBgn-6XZHYAem3zOLpn8NXKqN-aVRWdDEv492j95q05iB3BntWcTaUdXiUKCjScyUgkI8a6dayj8x-PRmzIV3azrV0KcyPPNbaJhluLTxZ4I7P3onUpy-Q3MwkskNQZRN-ddPV9FP2n4X2MeBCJg-DJhGSPVC40OabUa5pxtdPVKdyju5rlOWBTxQj4ZcUi4nc-y_Z_A8e4I5Tx0qzRjeAeyTJfIKoEnoiUnvuJHX_3_Y8WQ9f_-kILaUeDBMbzs7qVw8TPgO_2aTs3FRzOVZFbbjN_dJNwpLQ1ukaLIx4X_HltDzerHUpTvrIQGNmbAuwd6S1UNbohqj62O-3ze1chgoj06Ebuu-5wC0dUn0T3njln9sOp0OmBABwZXI5Ma9hV20MDQbc2o9DPWzlCaR99c_ApAfib1cpiunzZpjNv5aZkcmPg_XYVHmqReprz6ukifjSdccM-C4A-lOZWhQzkg6uM2Fjy1bsKaPFTj-HYdebxsAMjaev7WGX7QTxPmokoVmxEDBG-1ANmTOVqlHPw_u4r6V93S2vLjxedCKXB4afYgVuHp_YPGhHrkgY5QzxG30qJoIGUVLfR3-iyPieZ23ude5B0N-rrWDH1iRLab0dmSl1aEPiN2jE7Bv3GdXek9Dg2ZgdfDx3q_L60AcJX_nCCmHEQdM3i5-LnZtqDSFKEfFjCZUrCtmRsF6UTun6yincn5L_xTs4GyjG_H5bAdzXbV25sgR7bDEJ0SERFUIqK5PLIzz2k0OairEzbIWI3kdS8dGVEZG75vfPD5LjYRMVnRYV9itOSR5KIRzGfLNYyhNc1vOekLuuLPQxrz5PO9EYP76YtcovWtuFznToygN7WhRyT5z1bpMfbfe8Y7rXVZ7BEq0lk0pku_vf_p-y5gH1WvtpWlh_2w1t0sAMXnrKTvO0mSceTj2CApstshoycy_paswiQ5icvTIVuKdkLoAGZ0lWnXUYFPUxqSxnwaaSqRY_kG-e5EPBSt8UlPVy09ab9WdCK4An7dBCzCNfJSOCWKqgA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676f769305ddd6-36626597','','','2024-12-28 03:55:22','2024-12-28 03:55:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41869',0,'cd-form-entry','',0),(41870,0,'2024-12-28 12:50:19','2024-12-28 12:50:19','{\"firstname\":\"Anna\",\"lastname\":\"Ayres\",\"email\":\"anna.ayres@hotmail.co.uk\",\"contactnumber\":\"07486637787\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA4L67BhDUARIsADWrl7Hfj0rXYSBIxvxfGHvAOTJmI0vCJHk15KNAHoO-34Ea8s9dzecY4HYaAtB_EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4o1REHNC_i38B9BuwtEjeWAoQ36ReuZ_YrtZ1EwfWHbReFs8v3qY7-5mrJOwEI-aiNmBwl6Z2ybbAjXY0CafLxpl0fvA6GOmkULAWxeW_ugNe61R8GC7qOd187eEeqQpUqy2M9mnAakdBoO2vM46wSEzG_RVYtuhbdACf7n_-zcP8u_iXDOOldPvnAgCht3KQ1BvVXxBcI84y49BZ2wiEoVy73tsOFF3al5jFF-osXyKJYMNboJPlYJHgrsCGFAMi2frU8yl0sJFSGKNCtnQk9-XS7Ts_ecE7FRZGi0r2q4a0apySIHM5OJO1lLnHyCKWlsb0CKiHr8-ZgJ_UwZNBZcj00r0pjWXiPA4khQV-RyISpdoVcQOs5IizCqVfgVR8OFfz-6_UFDwMCH-p7CGJoBVqwQ6aaDNMfkxuXodM6jf2l9lO5PXzaeoq6Iin9tLX7C6PeIPudr-fz9zem8blfxY9BeTpAjwLzLFSULrVshrbpJbC62eYYAdj2Zj56GD4deB8hoEF76E0RKcFeOmrsZPBwETW98v8KJEMb9hc9DyBju71foGnlP4uZAB275DSKz2ZFrq3XZMYl3yCg8aWZT_ybHXBw2pxCCXvQQZ2F6AdIx7IO-qQNfHUKFhop2J2q9xE7e8uDubnvlDhiVSCmuFZQpQ_o0jJ-Fnsw2HV-R2OKwT3x0hwluiiqqhCQMKWV6n76MNYShMxUgiJ4RJH-Ho42mBb0WKRhi_kuFMhsrJfDBU7ACTkvDrHzTIIzRBye9jj0xOQel0_g_gMkmaxUY3W8fnAGRnHfR8CvJUgRWPm5gBpgx__Z1MLxzEdWHk1eVeN643meB-pd3cGK7xxXJSi6dvLHdVnxPk08ZcOJupjiSNlk0G_yUTEz7apSEoby6eQa5m4jLvRtpkcWfVqgvLPeuxPgASYCN1OI9baTiqWnST_iebXuoTWdQX9VUCY2upWmfdAQhicCzr63Nd-EZ46M4IV8wtOl0oLPr0XTrfauhvNU2yaY-xupfS9pbUv2qiermQusugiIvMfQCGkSRpM1_XWSpHrlceTd9COOGl7gAl6nexOx8qc_9lJFw7NS_unabWkn7JAHfLKevJDVWrjW2T1F1ob8GyMUQ2WKAlwKqXZ28k7JOByAXr1qNQy3SEcO9Q_g5e13ScQYCsclsMz9YjlmM7175Q2-qtRLqCphzgvxyJdJpk7Ywhx24znXDfxK41XGsRuACbi72q-9sKVJBL4RDIZn3KEdkx2oP2jLqahtXkCrQ-Ogzn4NaKZrfTMQenFLJhnFvbx65OS8nloSEXXtXkdGsDjt9f2pVuoYvMJTTBiLXHz-6hRldZjPGYoT1_91Lw19GQDawUXgTbudIskbj5BGHrdVslwP1gshz3YtgdtN937mKWy6AKJlgIWq4R3ZmCNitIMTsFRSePH2Ru7kdtLH6O8uIVHtM62rQVU6up-yQP2_cYHIM9LZDgDzdO8WR_QTIWvKh2xQPTSjayn8uAwBpuJ92pTrvVkTovLyO131Ve8xmQB8ddbGkyYcrVprhMHS2jeZoiLaXbyPlYet16FXbTaV2_cZaFI4OL_MOCYj2puIA0SUJBGy3JS7XSa-M38lv7qbbtKYtqGmZsALKdNrVgd5nr5OOmILEWTQ54g-6wq_ijUkjIcW9tZYazUCYRoISiVn1FPBEGWzKJOlKcQaWuqs5dpFdJxIaQFhCjaWtFdzAtzYHZTQxPJwQnBTnVM9VfI3hNvsNooD7zrFizkdtn6hf3ITmfZpnY_3oav7beekSCiE-6zKFu52mqOGij7Js3lXFwm3_vAT4IdAPYHC3ZzzOgMyxIWluOkuRRefWUQsSVzUzHBBMNO--f4l4J0lx5IFxsLDHprvUpiDDe-Lr-2agzXlbI9k7l16PMU-Jf-WHVggSthukGYiwXb_q0_1zz22zbaDBTapEQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-676ff3e2bef5e9-54275774','','','2024-12-28 12:50:19','2024-12-28 12:50:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41870',0,'cd-form-entry','',0),(41871,0,'2024-12-28 15:11:01','2024-12-28 15:11:01','{\"firstname\":\"Adam\",\"lastname\":\"McAleer\",\"email\":\"adammcaleer15@icloud.com\",\"contactnumber\":\"07872393801\",\"pageid\":\"41115\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vpiPu5cXQiq8o6r714tASRM\",\"recaptcha_token\":\"03AFcWeA4m8Kd7aRFAbO9lzAKr9tgguKeJ5lZvZ6y_VsyjT67zZNTVeMtDfZKRulcAnZCogOxiMolMJ65HD28E1zU9M9CLsLSaDzyRAZfI1wjhMnNwBnzPtwjbca8ZNGrVL30sQaBF2qxsd3BNu6U4rkpvaE6KJ92Xm-QJfqrUbEBwKPki7wOewW-vzLWyjVgxAaDjoyPKSeNoWPJJ9FHPx-PId4XaWXI0liihDkB6RTRyNnZFyeX9qlsVLcWLZb56q9VjURYW0uCTHZaoTBbzX7TaVu1nL32OC1rhTcqISFKPFbnYn_RdADVbF4gmqILvPPDIp54syMWu7f4TECEAjusUvfKW_o2FlqBfMEAX4SGUMEEq45cUEUqeNWneqFQhDRl6_XLlq49S8LpSFHSm2egtO1cwiXsA_Mktm8ZJml2xdphds23GfQ4n0LtrlOQHd_4uAcr-oVCL3b0AhEMlVb2b1C7IBrBgxrYrNoIH4ThLI6fL_E3DtJA6eh0V7INlTUSKhjRJVbrqgLvp2epx9UPNyv16VREDAP12CbbMNpR92Td4yIMKFQCD3nuNrXlRFvh4REcFwzSGxuvOT3Hea4PTFZr4l6-hNw0qov8tc4FQc88tCsyZ9ELi-1zH_2N-cjfESqeu5FWbzfOmFjI0WyiSaNGjlwHCND3XZjmjhnoyS6VKdc962iNzCYQNv8TKHgN0RxVceOt2GfwrrO26PQvQ6J98XiS9VQrkNAGDEj6g12fSnYlKaHVs_dcBQhGtzf90439CCqeVt7-tuWphJB_YJ5kXTn5U9qoaN7DSCmplmD5Uh02IRdHJjZWpTavwA4LQ8zzQM1rzBBO2PxzzkCrvCXMgGbrroonogKY7a7E-IEPTKrZi2xbSjcSEVFZX-Kxt6xCziBrtd5CVurzkcaHz2KRZyqUR6keABtodQhPsly_WMGtAqGbDPPXw1Fan9GD3uc3BYO22pr7CKyxfdnb_ntBvFABAoOmDfBju8OBCQS7TWX8r5zkvebeivQdloVbsUjdFcSSlZguWceYQe3_EixrzHcFuPOao69BUkZV2KHMbFzBaF4LQS9uOCZ2f0ss4J25WTqg-3i-n53JaQbhyaSQU-fYJtrdotd2xmwpbmwNOkVfr9VcZAA5a5CsaK_zgdTPDf_elBl4hnisT000jFc6D43bj0ogT8RmDOLH_gMXHEBC9KiuppSC4QPC-Sv1yK-DNKQOYZpcp8dMKx1gF3TnOxsZ1vMhaVqC_-swL1dojaKmp91iRf_eeXIyIHVZn99pLz8rDK_IuU3CCp7ob5ykxc2lo-MGHM8cEWmPnZTrGQ_ciKIRYmMCPRsVXd8j_LnQGd39-wf89l1iio1DMZQVLZV3hdeyPxa9-YqUld13Q7ujED1EHYZHb-fUDxoqIwZLNQe4gjz-KT3EOg6ku0cahXeAX7womkAM3HmRxNRMNvUta2CKQK0knQo4tH5m_BHGTeC0CIF_qwf52_NrdoWnfSAofgu-8nsFuVst__ut6LkFJLfhJRpBFjb3cuyCgbdJKHdhIwQUOh97bUEDvIW4jT4Mq9x3k8N9KbC7UFmixv4eaglORoBumxRmyxKVtL3WC4pPtBFKpAy6IguPDZYVss9Cc_mfstiHFzyz2MEdz5f-uFuW2RgDh7QzA4f9aKreGh3iaBA6ikcPrTUS-LW0TTR_7zuCwaOlLeV7JJaRUZfUelLvLeMTyUVsbDl7fBsJIk4Ms4PViDN_ZZYWodiHQ71TNiiY_OQwWJqfGCJGxJLaVMmlpnu64CFaclhMoZVHJOuNhOQX8HwPXG1EEHlRMyG-01gRA51Z7HCY7CUypKHCYSSQAwp5e-sBNpVlY5kFfZOmVjI1UwLlw0lF_coLpPKC-fSepmQUkhxHIc2iSkwM6XgeEuJ4Pf7gA-VD1JESgdKy9Uynins1JoeQnxFOdmFCuMN1Oy8DVxkcgE0nCjyclSRjxWVQTtIyNSHTVgaQ3AyM-7pkQKdDuRfX1t0n94jLT0dWwQhbT9pnlR4LBXZkJv80KCD1Zc6K1fR23SX8BSrr_xZYI_PPSzKpN37NFQV9FTg\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677014f47da0e4-80435937','','','2024-12-28 15:11:01','2024-12-28 15:11:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41871',0,'cd-form-entry','',0),(41872,0,'2024-12-28 15:12:17','2024-12-28 15:12:17','{\"email\":\"adammcaleer15@icloud.com\",\"interestedbecause\":\"0\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"11\",\"currentpostcode\":\"BT79 7UE\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vpiPu5cXQiq8o6r714tASRM\",\"recaptcha_token\":\"03AFcWeA5QNfnupga7nmyNInQQvL4RG0hy6NB5wE6_W-SqumahL93uK8MA7LPqV9hJL50RUZ8fm8DvKv1aDPBHE6MKDdp6aUnFYAn2LY0laxEs0Kp_hZmVCa-SPO4j-mzPlIPaM0_RPNGZg4gMlEiT026dAiDGbHlRcHxUIut1HwMThD5u-X2cBfUhY0ZfZ17h_tnLO2_KCNWhv61zHQLkxvIgXgTaeCxlT9-lQej1IVyiPGpcDSihuC7eDq9bq4WNekPIoV00H1Rua6VsdjI9SDjIR4rOmY-rYmvdZ6niHKZ1gwXj_mt-4oXCLNYaGvWvHwH3UBqBNC8eeVOUB6hp2yE4JM6BatV5p7cXqxnFNhAw5FGGbauohpCNpOa38VMEsccFxBlf9hLRayXzGJr9okr1-ILnsccfiRA2oS91kixQG9FBKNqjW08IlhBCvkHC1k5wCJDlQTpJ7XZrLpiCWxMYR3F9i455pSiVpYh07Hnm8vRGPCVEjAVrrfHCECb9hjuNBEXRWp6vjL7cbN_pyAdzMgTYPrA1iX83VcJYwlMcssQBaHRGY2IM5OUJJmQPGtg-x8nBiXDrgeLdLFXSM00C6CTa9CjvSBe3u-TOnQHR2dFUxfA_SgTCyPNrJehVuE06JNlAx2bwt6I8-eVbU9H1zeU7zZPAjnJ06TxeOCiNmmsIJt86n6ywhI26HToDPW7qStS5jyHgm5DpLwwswApjQFySBCpxCMCmJprgr7z_dIg7EfF7Ew9yDGUVftNNzHNicFgR-la06hr8QlzTEUd-9cKXJIZVYiibhny7gXmzprKAJO1P3_WjU4PIFdHK6udi5vAsQBZfpa7K-SNFN7pBM3seP0DmpYJ_PUqmP1ow-sLv2u_hJND24HBowa-f89q8K6QRlOnlgjCG5YFbDIMXQzgcQCTAdEJHQrFzwaM4BrrwSGwzWmEZ4r5sd6VEhitK64oqEfY_p_TXouRVC9B8OmaR-OOLvYoDQXVGDpRqMlANTj63ZHTXdsq7cBut3IgbnOup35o6SoJ1epOXXHxlmhiBThnUhLRuZjSjyVU7wY2JUKsT9_SUjV6WgiSf7mOgMbyqcFxl9T2o8PVdxIaivVYIc_G2c0On4CqzibPoEWsnXarJ-gCB8boaMbFlnvNGRKhkI4ywXh6nOmTbG_6IOWfKkToZxbLE6bc8onabZzVk-1UQO_Fm4lDYenURnV6VNI0-f1DWooEgZjmsi2dszU8cy7PFD8RVwkrUJDCLWB5kZWxnSaYCJiCDGaXZIyiUoJRpapuWMdOcEHgOCq8jAUUcuqReX80_BwFdUnEIRsFtDYj45yfiZAw7I-2b2nTuxF81G1zvVmCKtqMvjWs5uN6eBHJm6vNlTkaDazX4mSJOFxjCv85qHXu2FrPmkgmIHH0NoH9fvI9LyC7a3DgoAolI8b1eTry0sZhj3iJsy2wgiNW0Vls_qXSohj9K9fdOLhStRlD7hPFqZPxZeNy48yU51w2nzPXqs0ppOzhjfHub6NbD28L3rDgtNZLiIeXY0fdMvlAjv1MwENXUcRH_TxpObr-VdBaPJaD7J4ArXK-bGGp3fzExbabX05y--zqoKwYhBNBCTNA8ZtGNuyg7mtnKFZ6-ZJPDAr_jcSIwMFHUlHRXoEYxoMK5_hiycpv1wc319s6-7ShbpTuicLF_dQx_KoWJG_Tx0H5MpSd9YRSAY77BT5MgfBqP6DBgNaugqfhYUBEhVVBl7nAp55qEn-BTtOQ-hBjCf0uOileY3PEBMiWJ1zYj1Ljc2ZZA-IrNR0lvvYGuMJaVkIJfIw0dUb7SalP-CKBND-RtP7YifIjwi6yjzireY4dx5iPCCBK0uplrBOEJCbWYF8uXpXBpjCpkcFetjpl7CchfYdbKJqlWcAasib3cePeM7iZaDNleKzU31Ree8DMd9iLhZYD8kExNncZlpYS9MPU2yPpyGA0cVr35p-9YvwzPsoxpSz6-pw6zKth3l8ZNYBOPM4vxlLIS6McQCrIbrM-pwYdFNSZBY6iN0TaYoqK7uc7vKYJHP9bKHO0tqzvExR6bH8aakqK1vFZuTQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6770153655cbc2-80833770','','','2024-12-28 15:12:17','2024-12-28 15:12:17','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41872',0,'cd-form-entry','',0),(41873,0,'2024-12-28 22:21:39','2024-12-28 22:21:39','{\"firstname\":\"Jonathan\",\"lastname\":\"worthey\",\"email\":\"wortheyworkstation@live.co.uk\",\"contactnumber\":\"07790190688\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA5VBdg8uL6GOxYui1FjGonmzDYqdon81uD8JpU4qQ68K3m2EHOq1vkuVUScXotTOxOmU2CNb9iAokioGm1n46osaW8blygTp0HU3u6TTonDmQA4vrNt-5Dwcln9HpJPXnLVfY-th1TNM3CUfmzHb1nPfXq1EwlQpKRQgWwGXFjsj4_JqJVVYZe8Bbc0KbY0Qa22thNy7K9grzCZ304qEnXiti-6ahCseRYbVW6_lQdIjCe8_-IvR1qdUSwX9hPYOgV1vYfFD9BuuXLM-jEnJU_GmIb2G2fxsMozU53FLsYRcv6_xAwANMjci3obUq9QmZz6zJfIYs8zzxkvgK0LFI0Qyc3GqSQ_6BpHh2MhJGWJakQA6oVvJ-QORqcuCtSyfJBSoOf4kB5VlHDBpQLhQmwSp-jCFntpRVAXt_k3ZI95ZsKiHKmLvpFYy3ItbfB3K2Te0PlEpLJ8_rrodooI-765n5Xpb8o8hRk4DnHjU4Jd-kqLzdebBCGRlBInKmalkfGgOcR7eIKATJECm5pREH5suWLFg_CCL7dXPtGJ8kcxL0F8YyJfXjOPq5fRySv-wxK1rR_WqOAX30-xqxQ7rQnu3ldlW3_lUIynGhrnRR46_ihdrITJscznpVonT1fgHGosxM4-i2NAZQYhZhV2siVG9Vp1DX-coK3hgHrUkocy_cd0sFh6TLHgq7KVASzHzHbkDgR_FrwMQBdqntQWMqZn93dwfILSK9Lb17gygXGFXd3s6cfBjK43nmFxPrI9cT8AyyHSXwLrxTcPeoXD_jlf62r9CdC0daHfvANLSD8FT488xWArsgP0UaKUZcKDWNcAZA0iaFWEJy6F3Vo-qXfSaJTvxIZZd_N3Oyoa6Px91uLAqhgpnbgLcdcl6wFXpIZB4NMwZPrD-jxSOvMDL_ScTaDG0Bn7_UhKGmA8qOTnMzk9ABtLj3utWQKob1U_P2GwjjiXco9JbpkkKf48YYuK2oViOdtduqiFayBqikGl_YHAXvcb7uDAzDtdF4qYGcGddmWJynjKFelHxTHyG6oyZNWnldNUSyirRVEaCJXOKbzDJJqyaa-2GgLxJuSRmJnGItsq7Wf1vYrCTVIyTINdc49DahOtzeXpyUuVDOJCaqgYLUOphj9aJWadafVBZy6HXs7hHGYhJhPyAXrngKGq61punoGV0JMaqNlVX3r5Y59fKN-CPJd0xyKXUNih5fI_7UfvvYdCG0QVoKVQXkmUzkfmRaMZCC_BBWMyK2jqKirQ4UzD8zUSFWKyXFfDHDPdnOPTGj2wOPnFBby4aqcWcewZXf02JPFBZjiFfkvtBMHxgcswk12-CQhpt1W4hpfN0tKANZAOUvDN_kztmWxMAzGlbia7U6Y4f23k15dzzLaBA_Cb1ssndbLrh7PkoNgzYr_g04KWRon9U0w9C1SkM9Yi-IHiFZMerRdRbBB1NI9-M2UGRNLCREwFh4A1iYmrljCF5ephI0ZAX4IjOW8gRYQxg9hnFg8VaNaICuwZf_BXmfSNCDwi38kMvKcK2281_XZZlWMDXpKSzH6EVZeJVELptslc11LfYJwYSmtd5Tn7L1h_I9reVdvyj36CX_7GtGj3ANEiNVfVkluyRgi6-FeyGPPY9fRwhrzfIin8m9kvDYsCItBzcjs-eGlkrj5QNbghAsaXPdBj7a87GD7htCz3t2ZJNecqnVUUJm__SGvZ40MC0HcES7rW-_a3IEGPJqyqYon1nP3RRlncNOJgTiX8uKhWxCv-qFh7MgfaSvi3cgkRtEgcI1PNYCEo17PZ8Ci9QhWHWnvat856NTKeVK3Vtta2dsD3zNRGHnCf2vfqTASJ6kbdDu143GNhKr9lwRO5dQeEEy5Yt2-_XvtVY6VRpSTpwJeobTKqAmEK1C1TXKnZ3IuqAwrdZSMcpV2Z6al1LcPOVmEGwcF1YmDmyrCP7eHanQq8SEhQsESzZf9-Lk8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677079dd4c3514-32259083','','','2024-12-28 22:21:39','2024-12-28 22:21:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41873',0,'cd-form-entry','',0),(41874,0,'2024-12-29 17:32:15','2024-12-29 17:32:15','{\"firstname\":\"Jo\",\"lastname\":\"Penny\",\"email\":\"kelsey.pilates@gmail.com\",\"contactnumber\":\"07892795018\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7dPqk5sTz19fxpt_yoAyXKS_Bo-xtLsOPVoa2h9Yuu7Z5XAY2Eilwb2UKJQjn0Pdt6g8Eo_IfqZqO2d309ULrOsusxrwW8qvslSXY5bur8P3z7iQv31BPKNwIvqpCm9z3q5mpgpSKB2zKMYkbN0-WpZ-Qg1qqFdjHtijKejALrugsuMQr7UZ9iLjfJWRoMZ_hV2mKurb7cmDqGelAo9PNhpTfQzFFNdlHQwmpVAp1JOh-cZb5-OIJ01175l7aS8jEPtaDjnf4Map1jDS6RbeFPqKOa35T_Kw8Yhhg4b-cHvZNV3oB3e5bMLsOsX1JHmuh97X1qsvn_Pm7UKl9tONIFRiI5P2OdpqCYvCzd-ffH92Gu1lCD89QvvkCFj82l9ZbgLM7kxiyZOEN8-jkxVbWVRYQd4KUf-AIl8bdqPiPYGPs9PYDXKL796DRmD6eV-Pv9dAdta8VpsPFwfmgnzI9BsXHeSuAHy1Z9e9A93AN1spkmiGZF97MP_STVOGw0e6f37ODAIOXKQcY704eQUttCqxDhQ7WWCgl-wBYoAolpo8IWFXhkEk8QG4F3XmUllFXsfPCg5kmCboCduuuE1pHtsg6zARUMkSC5YKqid6vAiQtkr7i5kAMqyYGfQNpjlqdAUY4sE77FRzoQ8vGw7zjB2kaNPltQgMlOG4Q9two2DGI20dCDbadwLZlkL-0tuUemlA0PYUjR3TDdhGoTlB9l3z8de11YmqoT3tWKRVszPaa5uSqKgWM6igGdLuOfvGBk1jumeLcSCRCkxFoc6mD9TsPfQFoBvxYb_YS5q_7wTMC45zj1r19p6yuAYa5126bQKqJaA8GmYg6otobBmDLoFvPeBDE4HxC77EPkoDG0zjrnvfNKk-_Uc_R717EBfVj7yIs3V3za4kg1cOSsQK3mxCBeS5AEoDPHHOdQtbmD63Is8ebdiZXJz-_DIHmROvk3jBhUvd1diinWb_UylnaCJlHekxSm6kRoPOxByMirhegbdEtGZbwpye7XShseoh9iuVqjk95-3iaJkMG5sPVYiGrv9lDmugsENkgjfT5nbyAf4pU42YfOqPUqOnL4dpC-5L1lTuMqlx2e1byQ7fIHRxRGTjsrWh7sigzoFKmdh05nGdCTrVe9q8rwRKeQV4ewKZNDOCT7_zq9Ofm8BVi1-73PhTRy9AOMKd2RNQQt7BO85YiExHeHw8mfpukL3s8imscWo-pDJFoXFld8KC7RouXvfWfjf5C1r7P6ci_1I1G1ls-615YwuEj5zqKMXtRIhPMqyh9omAAETXv33mng7cZ7eUlUXjiYrAgKpL6h0N64_tNkdizCOVznCoBTTVxUSQFfZrzEAMTxeN539Km0V8Zhz7yZ_yfupaKXw2QG6rEfcM5FkHZSo3HZ5SGwEmLj5zEOegU7yvTtefuU8MMQ3hCBn00AQuklxEZA8oWJBU53WkyNje6rwfmePAYMCfbDPSZ5I0wc3Rpf_Ie-zxAQT2O3dDoS6C_o54_R67kcB-zw3XWpe-yVTOxqd1e7q8ckAuIAxD3AqOsMD0HwI0KigQmgt9wP3xD4klaTuWDLtygYr0RdlE0M5RavydGJmgP8MaRNaYyHT1mkQPuMLq3tKKkAt9quz6kJMr2OKiUBywbG2PQUu85Rphc6codtUxUJgzq98W1Em5tH1bZ-U50OMTWY8on_DEcOu4BZ07vs4oFonLetV9twHz5AOGZQ6vSCpvKCe2pGlYXpsSNhO5rIHzN9Qe1mMbjRkeN3a4qoywxoa5OVAEET5SebXYOWE-v2aoajU9JzjYCzIjCpCuF_PlEEtMLIEq0dBA_hgbNF7XI5PaFyT8kbJiI7-NjscNw4N1lLV1TCi7QgN0gAmJV5-qjfseTfUz8ugrtTFPtjDYlhFFVFx6nmbVJgDFHKrSX5_-uQY8JCG9wIc_Tp61LuhysB0oDBpzQoq5045qoW5l5Qk0wnKmnXQZjGlFZu97aRIXti\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6771877b63d4a0-24614759','','','2024-12-29 17:32:15','2024-12-29 17:32:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41874',0,'cd-form-entry','',0),(41875,0,'2024-12-29 21:57:32','2024-12-29 21:57:32','{\"firstname\":\"Sophie\",\"lastname\":\"Whiting\",\"email\":\"sophie@lo2max.co.uk\",\"contactnumber\":\"07908313822\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vWYl9bsDESFI1UUW9itPYyA&amp;gclid=EAIaIQobChMI-K_KlfzNigMVxZFQBh1JXjoCEAAYAiAAEgLdC_D_BwE\",\"recaptcha_token\":\"03AFcWeA6JAC3qiabyGZYSVsd2J6ZW9tbI86W6sOEay0rniEcHiMOwuu13LRaE4QoJT1hLIyIg9wqkqZ8eq6irv63q0RoV6_qAg4WCsWLPnOTdILNWgRhG5wdPoGT_CZ_5ZyaJMZt-tLIiKn-toMGqqV3IBGIF0pTPgLS_ERfvKBDySTkQwxI2yZ-vH48bxi08nf9F5QdJezqqinOzhF6FW5eNRi1_Rr-tSqoQ0vj_v2xHSmDvggioZ40_ipMaU5d9OPcxGvPiOMP-BjIUC27hMmwv9D_4CZtrHn4mx6bTE_ORLETz7qUQL9TqwAGwGt7oBY40ERbUAxlabnGrxEwvz6xpygGucD8Op_x46pBJ1qorOz0awmdbn7GUdQYmIbwf353h932lo2vXAIYaBuxrJ8flMn48czzfGQs3FtKaTTe1Apsunac-v9RG9ks6Z6rOD2GoyWuWX-0a_yl0o0lTqNlgozhRexzIb31H957hCUrRRuFfh7CP8iYZx15I_C_n80n_-SXVRB91Zvd9y6VBVuKh4uJsV67NSyyyrgxxlrWc75QKj6EIHWqS_p6qXu67dwiphy-WbSZGFgig9pXix324mwa9YBRenHMvntnCY9Pxb7ZOSx5DodaH6jJyFTD2GF6nWfN3gcg5z2xI1nN57IcLQZHRpU9tiFSbgptRu78-mZfK_zZMjYSOv-co2CrBa1nhs1AIX8FleFRTg10u-F8FI2d-T8TTudQtWtmquC0pE5dT-7K-vuY8MD04lNEzvowifj1h92u37OwqycUfwAuZ704jh_-lgMdw8q9JkF110QqvlN3ql4bMc6GYckAN01srE0ol13f0sCti9j4uprFDljamMjp7xxsjK32dpcbTOciMt_H2eo-0_Fg917tDq5OJ7Unu4KjBBnLVN7MYKv7pUQ-W1AJBQg5YCJaaihj1wF3Tg4PgZh88HdaGKKSCeF8gWzh9PbiWRvU7rb78HUCaXS-RmElPSybELkrB5vAebtZvEhvlwmW0YzB0mR9AwYeIGOmw0zf4te531a4ZiqZQmLVW4or9tCqQlAXNUy7aOUOSqQ2frvNnsMEoESmqFFI9CTnvdQ8vcxrTdM1hUCFxe_QIL3gFpjsP9M6cYabF4hqM79k3IhyXlxEsnImIId8jpHvEXJLeuV8Iu-8Yc5J89qMiuZRFYnWlh1v2JJNtLEp6Nri1I8m9luVmmtR_5Ahsq4MT8gZlPyB40DcAwgWzgvYamvxhwd62GOOnzN4apwUAibFKxLEF5ZZAk_6nkCTCaWmXgeSJyF1sNa7bo9IP4DHJs0HU__Mn7eda8Wm0UujSUcICAQd2SA60Mdo7dvObKegIqLrWRPTVPrj_BA4IQP9-Zacy0TqOY0ydxu2buWPBub6Q-bZcRt3HyjY9Hcpc5sThhSwAZsI-gJn00JvLH9AGDaYoSI6-lD58V371Y-MaPGrWKx1zPtSrDDKyBdRg5quMkKioXdOqxmuIKQYvPhgTp-GQwDjk285GVtehTGCAsvun9QWdaI5qFry2TCFDT_otPNqllYbf4FYW8xYXOokDa1iS4psl1nnGfFN4S94EYdA8HDbg4y6dCYdq3Mk9IS9wOZhNldI3lH327837otrnZ7XwVFdoFVMa1VVUW-IlkIDzS7m2kGPC7cABx4E6Wf1ueb8eEjxnF3d7BWagAjkaeaIHGYDqoCXTw-o9ezVVYkpM7bZbCF69BsbpT-7GHfZ5JZoY4rBwAgBGs7KcXZyHLdaYYD4nj2dYAT9X08cpFJ31b0lanFJf6X3AwIaCq-5DbBMRMD38zagOKfKbAOtZ9a_VL_24-_TC-8m1EccYQpW-dGLe-m0LG4BxVO6GWrs5w8wCuG7T2sd8LL19coZPW_tBz3frskcKAn4JTgw_GMNfjLqqA5mWLqU1WaS178llOwzF-EklR4p8zItwF7LZb8o0CsXgmVSMa4xWLUd8HYlwZyu90a4LYGPONxqwVtszGc3XcXScDD1O-EBESKgN2Us9Qw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6771c5c4f10e17-30637222','','','2024-12-29 21:57:32','2024-12-29 21:57:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41875',0,'cd-form-entry','',0),(41876,0,'2024-12-30 06:22:26','2024-12-30 06:22:26','{\"firstname\":\"u0426u0432u0435u0442u0438u0441u043bu0430u0432u0430\",\"lastname\":\"u041fu0430u043du043eu0432u0430\",\"email\":\"cccveti@gmail.com\",\"contactnumber\":\"+359879051823\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/how-does-understanding-intrinsic-biomechanics-help-rehabilitation/?fbclid=IwZXh0bgNhZW0CMTEAAR2dGaBujbT1BcvPXS8fy74vl0O3OHbWfsC_W8iBWNvKp57h5h8NYUqvWyc_aem_d9cf1D0i8U3cfXzZw-Tw5w\",\"recaptcha_token\":\"03AFcWeA40w_X0NNfY2MNILNlMOEwOCmU07ufNQEGAPgwuzz_iIc2gHRPbHOEqh_TzpchUEVCfBarEks82LSqsN7iuKEaBCMBxxOVhUE2JcHuSjRgMxwWd7LqHbdcgPnToA6ZgJapov8FP6vdEcWkkMpoSSseIst7F5JzAju6owHLMETQ22YrTrO8bDa7NY_5fb1Mn5TWkxi9vdhWyKDXzgvx1QXzKLwP2DW36-dU58CZCf9YfwKRe4EgAZ3N-jUFJ-pzffvQJZV55102Tkb8ahCizCkBnOvD5A2wsTwHsoIwQqXlgvhPpVFIGeYEuOcBitUawFSlRrZVLcZ08VDFxg-kSNcRAnOWoK7w14R0ioaQiUsTaqKSIEUl3-PPm40SVijO2Q-r2B5J8VtscJ_YXbCotHB39MINpmdm7jOj1TN1WDCTHxll5e6chMrPaOF2RssI19QQb-KV6U5W0-SFlOCcSD4klKCaeN7vQ2-j_SAbPO_tYBCfN2lWN0gvAUlAnUeeqdkTLspFnRwvvPCj8UpD_cA5LM4SXvD6uXnrnD4alZqdaHNelyRr4BZhlDPNEM-1iUOn076la9M0JwhobWfywUzj_NSSTZO8e4yaSxRAoGAZH-1bNfwdZL0P4X332jipRkW6-Za86GLAoOEW-tBnEoEUWz-eHe6Wv3k5SRYda2VzPiee0giXqVp-LWmdSWiEPvs2r-znMWpBl4-UAQP2Y2QOzFaFyPt3cjblhJ0ThqH3DQc85MQS1P85_1HlauyXZjTWMAis0jDJfu9dd4_E9S-KgggSfGy6YwGgKJSrgZdmd5ZPZg-GTk1D3rBXhQ7xWtGgmhCXAhmGJWjTzglWKHVblIt-X4Jyu-OLSVtQDAye5V75V1DNqkUU_lRalDKhteyUuZPk4ojNnNSg12kdG5w5OSOLTaHmkTYUZHhGGLrrWCSz11kgUnS9lcLOICodSj0vn9is0rKhUHk1dzuE2VlKt39xCVID1K7VxxssSAQ96yfdAdhdlPMt163bVv30aaeyn73F2gjZBqf28SSIjykXvSsUcG-1k3M6_EtN7YBo_JwIQKE-t6pNAN3rqIEl17XCCaZoZaMFTJ_--ksXejWdWzcdTML4o1f37idG-FvJ2xAS2i3T9xFQn_kYCBaJlMtEFR2dfbQ3dVDNxY3Efx2aq5UyA75cQImInVoV4wIRex3EoyIKc1q21vVSMzZ3F-424HPB5yWMjSZC-kWiubobQhH5kWa64LO7ztWEcxPhobHg8aMlfk5tVcB6uFihBpOU5SKTJIqb01WkqoHP_VXbDRjDWDfl08FpNTR3LOSI9aGN5zejTlvTVqf8bSFOGCaNtHZDpn9KURHO-AyL3j_FeQPeekKer3gbW0RA7U3ONDVyyuWrkdurVWt_dCVR7n5rbbV9Bb2F0RNpIVcVSW356GNeWIDsZ0BTSEZdLV4mBaF_KBcmvOKFUGSscDgSBCxFeqsKcLd8Ppv4__e93Bp2HIfGxaTwif-08des1kUa6tj_jcywdh7pJ22QYuFh5v-v0KY6_nEtImFiRU3Vk2jgH5-K54WtCTiKGvVK9payJMEdcEmRi1dZFlsWT8YcMcrvxi1N74LfjbmaxM4raxHmudNt9rlJl9Hz1ScM322BwtSU845EHTvDP_yx_gt0nW8Jj11cZerpDpVTVh_1lp8oH3jkLJwGr9udw1aIuHFAePlzQ_ckP2piHsHE0P2T28IfcntRthGCw7GJ9o8q9V4Bt-kG-F6QLNtI9yVSL43WnziLSsymbGL-bvgnMIpT9y1lCgYJrMfN8CNyWCM3OBbTMMjleaPAyBSJJeykOWOsjcZfB9UGXevC0UVjMcCMiAl4HCOiI5F64y50Md6a_u3K_ksXaTtghiFfmNpcMee3fLOfih-q2RML3s_iis9xU0owwvvVDOObI9SFeM8nAzkLrGONS2uLHnq6QB92OY7KcTo_SN8Tjni7GqwdKYYybmEf6_Ybqb2euLVgyV0eNfpA0sNcLhKuXgMfKMQOyO3m4e3dUYvoTZVwVKFyWfGWY4JuVKbLvwNYxYeoILr1uykdlKqmhenfioiupR_QCC_UyG8M0l6xr3bbplwDPJWbbUkG6v_z6aCWId4Wfbp5epvx8D6xggw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67723bf0645f82-10704986','','','2024-12-30 06:22:26','2024-12-30 06:22:26','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41876',0,'cd-form-entry','',0),(41877,0,'2024-12-30 06:24:41','2024-12-30 06:24:41','{\"email\":\"cccveti@gmail.com\",\"interestedbecause\":\"1\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"9010\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/how-does-understanding-intrinsic-biomechanics-help-rehabilitation/?fbclid=IwZXh0bgNhZW0CMTEAAR2dGaBujbT1BcvPXS8fy74vl0O3OHbWfsC_W8iBWNvKp57h5h8NYUqvWyc_aem_d9cf1D0i8U3cfXzZw-Tw5w\",\"recaptcha_token\":\"03AFcWeA75-_mvlLWKod3RI9SMokCrYyUWOEq03QExqMSFtJzDcAIif7jTbSKI-BuXz5ZdX6DQPouWL9QZh3kY8oRAxmSa0fz2NBfRyTomfaMeso5Ps7GDqkyeZRmaP_8tPkwmIjNG8R3zypiXquTOdlicEmVuHJTXfktExnNmwL_wZ13rzcrYyykpjhb3BhEID6_E6XeXO5bEbj2LK9_wmxjAA7g5lLDAYdsxgrDqgHGdNhH2-uSl_QBvMXSNbwePZXL77MT4LCv5lXejaWW6-ymcuVHHV5xmwv437GLsP56gaEferFSgmJGuFR0X64Rh9pJvU6mkcB0Xtz23c_PBPj0E7JbgU4DRbYzjymDwigygl1VWQXElgiw1vQI3KIgD4QNYf_MX8TlF_SW_ElclVhG_r8xFilkV1NJnp-lP2Wz8zGSgDMkhEkPTN29LNFY2BMo0kt9QmyDIQwnParlKqqI85A_5v8xDysWVvbIuK1BoBW7_ijibhu1Cmhxv9AVPS6868IUL8zr1fFgvabFnF56l1CQfODmst10MzP2C_2HvXkvtYXHgEl78cqWOrjNXhtD5oVg8yT8Q4dpHkyur3WYP2zMmvzHqnI2Yw3uyOc9pgAQSD98nWb6E2oPefm1yhQiEdkjAkWeCDIl7qiUFddy9quK4_u_arCjv4Sx0UFzCjvYcy2hzwnYcSD1I-zgXDe0EJd1ZDO5KchPm297TxB_PiYxsQJKZ5WPe5zjHurEDiFkGqo9kucI9q2_9qA7QKlYdANTzcT08kB0qmhGhb2c7YBp3lPPWfTFH4yHGM6kUfX992Fg0bZ9or4OqZB82MpPbwcKCb4shBMLQrfk9tfyQH1qsAQAJQDRMdAM8aQOUjBm1NsOvNbBnFQoep4N_pnX9qyewMN0TwP0Rambok_ozUtp30ZVJlaIb_L1ZAi3mF2wAyNpN9lF1iPbY71ekHEaxy4AMrQ9tkgdXjt3HGghwzqz-nXD_xfTjuE_iaoTaxQgeZtON0zUjbtQJ2HwcqdWEp-ELIsGa9cE2aNIjIt8kG2UKl3Ip69tsWGmyNmz-S9ohfXdBOSfzc2IYaIH2viUSQkDSg062Yn-W-lE6HmJ2c2SjmWbjH3bQn4C857Wkn-WS2cjz0n8D_vj9nL-anmu6vWI0mS74DEBtodSMTETRkLVl-GLVLbk0fiWZBMI0MRJnE_fwcN-fb2h1Z5EyE-a6afP7yidoyv6himIVSpvYUxHxjBBk54j9HP37MOdZGeZrfkTLrXyWXpgWGtQI10eaPrIvP9UWpgygKn16srMD_Wi-5RPTgPyAf4ma-LbyAFIAISuY35j-aaTItDmhGbm3XMo04Mlfl1In6TpDxL-zCVCJ0vFBUkBJ8txN_BPc0zpYwu9sxOjgr1P-KMUeCLLS_ZHdM9lIRvMZEZ5ex7yfR3VVljSztao0OefLVebXcynPADxM8AQ9a2pSD13gRyBFHNvTWvC_OJ9wMCnAYZ0A_QchUumO8Jah-Jjw1hlk_KQbf7volYbcbeh5VlV9Gp7fbfC1bYj6gQIF-xtQZOXqCQ6rASkiSo-1UHYjnuye4VnTcLCjtOerl221kI-PLQhjKwc92sFyeO5pSpAwiVLAaHk3K3UrYVjPKzh_myyEjeL9jcBolI5PL1WFSGRuBV7o5Xp2Z7o6QBxtNIrFIxhg9ev__LaxFc4W22pFdavt9bxDoCTQ6ZwmL5aSWmIaGqkV_unj9RAwKP-jrMansAzTCOjKpl3al1jYIPsda8TcMWn1g6Fqleb2HhrnhzTpadBSCeKJizAknxuym4xAI8pZaK297ipMNOwePltBf1T0A9l_Dfy2Fa1hb_dBdfi-rXyS6n2Mt6x1Y9XbkfGJOTyx41_o1LOTkskBNVZEAMRZc3WLD4y6mf-WuPId3uhZzHqg5PmZYB4wltgrgolMGCj9nhHl8aEiUiNKnsL1GAqQWm-W-cYITtQ7XyzMHqWwk1TVOEe1H30NdKrU-rBQ1eNDgZTdw2nWCwVGZiGH9Nny2bJRu0AtOO64pVya6eKEebLxi0XaFpYkzD7TaJFXNLdf5v4GELhYPFxFF0Mnbn1lRt9fSlcTOCVxJ6tii6W7220yOO9KUDfuYxkcvynw66-7s0v4hb79Qw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"agegroup\":\"3\",\"livingcircumstances\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"10\",\"childrenordependants\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67723c6693a731-00483251','','','2024-12-30 06:24:41','2024-12-30 06:24:41','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41877',0,'cd-form-entry','',0),(41878,0,'2024-12-30 16:56:49','2024-12-30 16:56:49','{\"firstname\":\"sa\",\"lastname\":\"asd\",\"email\":\"xinow18839@myweblaw.com\",\"contactnumber\":\"9655839203\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy/\",\"recaptcha_token\":\"03AFcWeA4C3rp_uupwxDeV4eNxlgnrQVPZB6-KehKjnAt8__KXZ6DbtHZ4dWKxQf-4L8dofameG0J1csl7KBOpNbmGdaz5h70WKy-2aYjCBCNVSakHWrIlknvPDjGWzu100wO66wuEhuOjJsndrBtBfHMHLR7qmyFuyo2ujkzXNUZ0f2qeI7E4SMZxk_jnTJUH2UbBwBoSh3NLrq4I8uB3Vq7aeZgKq2ogiHiihA-P_qCBZ195UFhLeMy7nqyTgbTkrP2L4pt3GE32JwqEWZfpABc_bXEnK1i2Ibu85iDgNIDmb8XrcvPtzFzYUMLRH9-GDkcvfi7psk4Tj3wUsJsYv4me1OoLNzZH7DSKREKKaXdmfXDbhVZ156tvXzjTy5sMf13zOfARwJG8lFLLRAk4jAlNZr4JgKM2RsPacxKrmavfirBMdPfyhihYC1h7HwfJpJazfu1V6x8tvp4be0fICtWhMNY7YUAuSXI4FjOtlXn7qgoGdEP_2dUMwZz3HwtAwl4Q9-sUBnei61aamESKk4HIiq45xgHSqN3t-RsdMGB6rUR4wv5jSq85-NskaemvrBR9Sofae36yE8PK5GMTG6GcH6K2Wos2JvPGH36o8xA850Mje2ChZy2xmlcwM0Lo3KFYvxKTOASkx3YPo0cBDleN4YcnqPWlTkZlIFnWKvyozZzhFSfz1z8EgG9oJMFrdbhQhcva-WJpaaGC0OeBElnBPaDZMRXLv0CCfHEKFoa1OA80TF9L-cPgu3gWfsFnpZev6xfvs9IBuyvpKidtQ1RDLV1gHCPGDW19h_48x70VUOD_szNfXWflM2t9YWJ-z1-ShTrbqhviORBGLlKd73fPG7m349rjD8wq30P3FZYiu-18sz1ocBM6T7DfmkJZcuyHY8-4lUTd4otSgXILi1LoYOmN4Rwx5j6yP2sqsvAzerU7CeFZIDTYSSdJ5sOy11MUk2LMM_MoBC2k7lduySZL_mgMCukoORd7plum5DA4Ay_JAPpKQCUbnK2fasmYSdF_iCjKk0BWmk8-shh3CHqAC0ckgFC9DhjDL1kjyeVmaLpQk0LbgKy6VQ7DCDpIjcCu7BZX8lK6-EJ2z_HZwZSyXecEXpQ-vYVLdcFXE3OUUxLl1TOC-D0hOVCQm4Le-j-dilGnss8xG0aQo4vPy1kHQHU6-1KQaJzAgs_x7mCTljVQyR6ZTMqZEXdoQ-ib5uZJJqyEiJI7iz6978yiQlAileSQ3G_vZECScFIHLzTFY5aK_A5ZVK2O3jrPy1ZtxgrKpqlXiCyotB7ay_9E6bXX8aV0afhqci7jvwYo-hM8Nfur5P_fvC04WNDAlRAb5POfF9mkOPSc5xuQUDrfJP5eO3P2DUsxrF3CSeEmIEWIyfX5gvqRAQ792DEXSP8V2N1zpndD6lCslTBVSEC57dnpRvbuyDPNzKZVcQWCJEGF_LBb3VUu1w2sargIeGG5cHC_lpKsItBhrZJjDrQrY3qe_yJBQLZW4MqnrhqI3rHm_QUwUullTCYbdzE1Q-N_3TIoS2bqA2pyl-W-pU9PRCMoz4Mg5XHsgk-E-hUAjRiMvNh9yEu1EHHVB-4KYvTBJ3jXsTDCLTUWIuE9_wAkslAM5ZyseZSE3wVU3i3eG2zzpXzhgdKHiGUU-tBY9NsJCeewQk5p9yOboZXdJKYFQhEzy-DT2hMIMZKgfgUhd3b0kiN1oqmg-SzPjQpNJV7kHvdyo3Ke8nhJ9Y9aKtkyOObp6wPwY28QmpzEkFxQB3QyAdzv0TFIDGWQHBXN8Wp0QXsT5YVqHIvHhhl9buw7LPALOJt8IGmJLMQ-oVSuwIUfGn7WVzCemXe6ItqnvwA5VA9s2bNnKTREg6I6qyqVWA-jhKiVImS01iFqGTth7kDccaipi96pz3B8xuNZpz40zja5oNWa2K7ogis3aeD9fA-0qz_oTvtizQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6772d0abb3d2f4-33760886','','','2024-12-30 16:56:49','2024-12-30 16:56:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41878',0,'cd-form-entry','',0),(41879,0,'2024-12-30 17:38:11','2024-12-30 17:38:11','{\"firstname\":\"Eve\",\"lastname\":\"Booth\",\"email\":\"eveboothxo@gmail.com\",\"contactnumber\":\"07964393905\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tWYIeBNmhnMBC9u3Bi1bpYO&amp;gclid=CjwKCAiApsm7BhBZEiwAvIu2XzAq5pP3jwNwxFCBkYTfivA59gwGKLvJr4vY_HLMbzbAxZRfUall6xoCNdAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4NraivBuyupOAj6EIUa0MpIwYbKxMkgAgvyoovubCg6sYYxDELIe8Os6jTqfLJs4oOURlVHGiDHkroh3iMzUx7kL_VotNP7KAEXyyn8P-AoaQKPl2vamQfJPzB5rnEZheJ25sPLs_eG59JfVOITNj9Rg85AGNOzz1RqZd-1aPGvGyw9Y8z7-Id57BsVlPtulidWX7qqwAEyqG2TG9llzMJupBAtR4iUOBAya_GNjiH1_C_2Hso7dohs2_P79DbQrIMTxDUPh1VozHN_25jmWG94kDL8TdNXf9y0b0Hpbj2voRSkVAp6VrtcMEEzd5FCGH8GYiPc01AlPYUWsveU_QccuKOZ5dn9LzpSmCtFNhDhS3RGlXuYOR4WbHL4NktLyneYPJtfmOrMZcqIXZU3pA5h8n1_RwsWUi5wAJ_SwZcVApESa5ja2LVsnUawx_WfnIXz5A4WIvswdw190KMwEczJjssOi4kcP9UdqWq9gj9MHRgRKbU2fGzuQhpcgfkIqU5ytKCMbVDUylBHMWaU7EdmJ4u8gmc-EqN1V0ZKsKXkMSoigne_S6pqt40szxA3F_xNGVd4JFiQ9rtiicPZVZ95TMy92qDQhL3-1og6XkrWsfhR2R3mQRFfXTWMtoHHV9LRpf7bvY8uJA942hk31Fj9gdCQAzTEaasK-V_Xf0_otbHeK2_HUzKXtINPBMgvlO5VZgXwzhtEyb31UCd3rncRYPCa05Idd_WmavZDKd0XZHQYtR5p1MdkKycv4n88LWiUTbbQpKIdybIGGKzSRNwhRlf3zYhrtT-lk3R9DFjg-E0Tl1BuP5rXQm-OhP5_818XhDqoIEQZud6-8YKQwdsRx5ecThie_dsZpJwAOXKZY0lzBpmPNDEO28idmnd3JeR429Yf9-d4Tx5UAZkcnKg7loI20817R_MA09NP4tci_sTl5ucUMYs_dPFPSmXKCGndLd4suejAjPwFe3ptqcycBdAUcmPp_d7c9fwCD7AEuTiIwkmq5QpzRcQJ4w18Aez6nL5T0L6EoQbA0ixJyQHIw00Xm3wbXAKeZ40sIG1xvt9ImeKmtvGaowEPRS539ITYzlHRVVg0lsZ966dU8c1NdkNr-UWvdqoNyz0B_0BMnU7yIIdkLa7uNGvqFim7e8B5Llwnrck1T6khAaRs1v1_7jifTrzOQFpiHkOaPLRt4mC_6h9Gakbmx1C8Dh8F80AuK20jBkhUviYcqnOPtdS517pt1j-fy2oBuWJReFT3EwAKG_vDK6j3DNE2SoGIDpGf2HlRjLCFH8n1oUri5TShvwh6IHd0eRgIYXAfpTnZtGRgpcC0vqvQ9aADN_Ktk2RhU7mOW95lO-EiCuywsYsW2fPXPaiVwAV3fhUWcfEMG0X0QOxw0VeGz0qNuW7qXb3wqbrmpA5V4fYGp-uUAUeABQj7LSxQzkeWWcn-SHaLY_8j3pACPILfdrjcema41am1ZZSoIx4QGDsCibpSE8wQTJOctEonuZV4CH0nbDMvCYEN8uCcfB-YSDSw24eDqN67ODnruHnHShUtUdQWrPKEusYYz50_PT5nsONfKyxApFCONv1ubYezSsFh6SWqRjNLI2wfG_X1AfgfFdTRJGXGuLycc1P935DXfItA9bCgN7NUR652D7NJ1Vj9LyzQ1xRADZSWC8-fP_AAtYe9W2K3_GnZJYBMdHEIqmUUfbx9s8FFheTf9jqBfTn_aXOP-jqlnpDm68i3eZpCeRCoohQiZlRP0xwpxBhr5JRgDLpbtrTrCIzrxZ39vX7VVjfFeG1KV4nsSEIrZh7r8QKlx4me113ylF126Gov1wslPkVE6qq-8AGZKv1GCWtAr2JHkROnjaWIVcujEtN2H7zfPcTKabuHMXqvPpwZvNeWd3i_kh3BC6x7tSIzuJdlEI5tCf76E91NSLlbZsCpfr_3UfQ29WEAjNQTWYDxPEzdf8_pE-P2tC2qNdS2353rqcplFOINYH49c-GqS2mEUukAvZrbnUVSBgCaKnQ9mjD2u0qjUfW2_3p6RKLxyUW8bmlLNZAnUUh0lxhjS7-QHSOJO50KhHp4b0YAiMPGWDWA6fvl66ydzHyQ17C0ZF9IAmL6ccBPEdEHtLZgS6jV-yhi7KT4EsSyU-xZRL3N0HwhCbdWV45ALrOKWtKizmwH_k6aNFIslL-tG5NBRdFRukMpHxlYf1ZcsVI_2XmxslfRyDtEhRlRZ1fbKNt2IbPctmlCuevi1Vhy3Asdl-eEuhihgXyMMM6bQ9M1vCzEK-XOvFpB2UccNakSoamujUS1dLEXgEnJx5n\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6772da76b4ebb8-04921054','','','2024-12-30 17:38:11','2024-12-30 17:38:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41879',0,'cd-form-entry','',0),(41880,0,'2025-01-01 09:10:06','2025-01-01 09:10:06','{\"firstname\":\"Jill\",\"lastname\":\"McKelvey\",\"email\":\"jill@jillsfitness.co.uk\",\"contactnumber\":\"07921044392\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4rHidB3L6O56yuJStGgyMVHdHXXwrIhGWtI9RxbXERXIU8WAcueGi151ZEAFuH8-UeTB7lUViruL-EYeU4asTE2nuKQtQPgMG8ZizpO5yJiP4jwS4AA3-Xkit2VhbEaGqCRs1W_HpiuOxZtJ4TozcMBRSQiQOaKysCELeI-kZnx90GWFoE_g-zNymv5iGB96zr1OCNfDtgaUDepOpkTq-CF-Jwk7uscV2AnqW3f62OeDWzRSunee1JGX9zFPAWXIlQWHkmG3x8LQzOsh_6kkaocRVPPhAYgkEOp92yD_dTgIY_mpUklz4_dO4RAyuORnNdo6N6h9_N9eOhcNTCrbTXbVAR5hY7hJLcbdW4IB_9TW_7MqZ4U9hlWojjkR5tiWTAU8kTB0K-y1dBP7FQ2Wd2fIqum7coYI3dzLdS6DVUcgriuJpKSJ4-TuJt0Qeg6ycDDgV-yksseJ0nhPFI8gMk9gCuhERGmN2VURwAaBYVnwYlQDIFkQGNcOzj2LgeLtEoAlb9oLBcffS_hiN4OX7QxD4dGgm6-57R3EgdFyaRZS8GCt8H66hNWQ3OUdQpfbCjF11xgvgrlpbjzXCzPNuEbzPBDiCZmioeKLViYxc-61iygGK3DU-3C6CAZ0hKK6zLNWTIcdy55h_2vVJIUis0rrbi75QJnPH-XaSjJCq4vssZ4rpCJVMCGrTbes5l9eNNGN9B6758lrU3oczOxqM8X6eACcpNbTRexoPO64D0rAEHl6_hgqji3jxLlINK95ibe2rew9adEbetzrxy1dTQftq9DfYTyN8n5axpTC0C1h15zbzodDQFDoYNd4B9zOP6zt6dukvg9SRL_xVI-FbOypZmO2qGZQRT2tLbzf5y0x8O7Mn38ajvehgWqffV_N4hBczfmUAyNID8UsaRO1qutA6ys_FoMzt5QG0qExbRA7FI0p0nYMs07VNFsu-QtNEs5Zh-BQdTgySQ57OZXAdc9s0HtpXB74v2r7pUjAvDxWQRsMMb7sDU6BH3BA35LbmR568wfBKbjeZUT07G7HCh0wJoL1JXgct5QAXdWK9hhvjJEpY1QCyyTWKISLBkF3XCOa1a6NjDlULv12eEMeXbckaBYlIHJXL1GhzoaztSxAmXvFa-lEVywFY_7cjG7vvDSaeMjee1NXZt0ua6iO-xSk9JW_YvmaF0FZFJDF8Z7zE6dIU2ZOZ8G5PNLQNF3R_qkoME3PmS_BpsAYZLXM9zrCm095TZ8WBLVtCmwsyUM19HRMQUPO-7PMwvs7dIAspYWNihLSveqJQR2HGmwZrKD6cXkqkm-_OKKlSYD1fc7HPDgU83Z10AaYY0cuz78BF8Qh6aO114y2xM_0_V8ZgWQGK3QtsKuufIWC5kmGQn1oY5bG-fjVhptth_76L_SyXDespnahkjqa0NT8JzmvVAz1FRg4Bd0vVKHxFmf5QHQ7Xn-OMzcKUL28TQquJT58xyejEugAE0_mgZSWuODyrhLKb_-XOW-xuI3BbW7BlgQhlow1Cbhne3fRQY2bj3EMvoZYmYD_b6RYfvTHIXQ2EIW2DMMzFEoHgqnqLOpEpbGYnwdCCPe4zvfSkToBV6UQIrhSLHnu49pW2Y6ecKdbP-PyYdf6l-Wqw23LMCvTstHCfrQjLu1rTQCSbVMm933uUy6pxPlon39w-Wim1vOP8h0FqZe2zQUpPOqN6un2IlzJkHHLPikPEoLp5PXNfd1TP2PbsfXq3BXOtOy2rFTr_rnXsE8YiUklf4vIg2plGtS8K6gPPcN5UVUGBRybJzP1J8Rq5OJLvR6nlcuiAKXyRJzGyg1VXQ6yJU-OYMjZsRHXdrqj1wWyNMza9KENPyA2hzA8dYoIcKg8d-gLIPWrXdifvHmOeFm0mp9hrD6NKLBBBekxgkdk_NTVnYKHlvJKRX_QN0Rfn_5Uu0ZKtGGKGN7zl7LavHyvhWpeBITPh31KI_19dR-qsMRZZfUu-S1hP4Sdg2zCJir4xCLbd7D7Wb3JnTgZjrOxTY26i7xJSPvUm0Zc9poBLg2yzJMeWtcrjaZG2-t04oS0ww0GRs9SSe7tfINvFo3fw2wxN-3uszvkwg0FfZpqFCy4mfy-ygsQemiSiqcDVW5zez66g_mbFGkIjaCFUIUghfXtaqQZlhp9cfmRg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6775064d92d908-29283605','','','2025-01-01 09:10:06','2025-01-01 09:10:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41880',0,'cd-form-entry','',0),(41881,0,'2025-01-01 18:48:22','2025-01-01 18:48:22','{\"firstname\":\"Lisa\",\"lastname\":\"White\",\"email\":\"lisacmwhite@yahoo.co.uk\",\"contactnumber\":\"07544 101 520\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA7NO7BhDsARIsADg_hIZk6MIFPguGco4sUA1KGZfVhVIXWRgTRD_5iybWd5eVqadf4mx8cK0aAiXMEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4NM9QZMaHxacUaFqUYayXMrc18XIM_0VPphJ9f3jO2veJXgozUxHUQXHZxiA0SMxXogiEHZEL-EUr7-EFin_kfbggdO14IQgIw_oTugmBdHUB8ZeixPGyo7ZgBS13iiYxuwogAMiGTVJ4slIA5SIZD1c5yrNlg1Otn34YR0J4EPD5FAXQFp2NcdZic9S3P0MOyECg1IzVNUgzzUffTuIKFv4JhZzjFPn5nRLolHtyzrYdvyMPCWNoSRgLMABe5TnNgpMr70QfX27h92u_QgeFcgisv-SF_R9a3y-F2566wBVxtPu-a5qrmHqUiIIAD2aOQ_3mNaMJ-bcYhcck9HwIHWYXFpEG8vNJlRnv8QTJtSLxbB4cjB8FssCFRSEtRryFyg771kGMSfwqd48Ksw13KA956ImuXWewe88uoUgz3UcT4lk5Ywo9tNSh0ZhVKpkAZ9ioSiSKqzFuMueTBMpyP5dJQhgIXVaKFHB8oQHFZ83jmr7a6EUxg1AEikyuPeXP_n0VJ-y8PCAUi7YW5sVCHUS0FsRlMM8zFFwiN3JbB1YcoI6VPE3zElr5Q3tu4wBlUCZ4NQ1rAkZZJArf-77z-Ajn0kCVcQor0Q_lRZNR2MOwFvHbZXN298D-yRRhraopOXp4dc2GAYIaKyuG8Jph_tEneiGka_UYJicP2JFIMuz7hrYkJ01UEuYWOarSw-C0SSNc6grq2lNZRb2g5Vjp7Fq-aJcphwgAlOMoBsykBzylxX4Wp5cooP0DUH8CRH4-w0dAd-MGVZG6J4oy5kOXNWjWvr-774kIza0CrkyPM8XOrYO6NYAAFj_RbMvkEEnjEszdOjKQA2RU5RvJSLCgSA4ZIxrmPbBeUECfzFez2o0TA7DlkhN4Xl2Fpqfee4bDlr_mS8NJH0XfzgFsQMV54wEQGQUpS4gtfC6jd7kZ__wca_eHE47th3ShuAzf9oOtUDxC1fkXSelUMP8VuGmhDb6TcAnt8SO70DdRR1E4Txbtxl1XcNilLb_llF02bMEPbx7gP6ZLU3WLovtYd7ARh6ApKkM9GO8tJBLI1MxX5zHiIG9l9MSNQnRBqCASlwf0XRP-I7DuzFlXLwpsVSPKJgIEw6OU89IQ1RtcZx7JXcacE2ok5yiEnMTe9mYwjN5xrc7Cf9jqe0G8SKkTpSCoxhGmPoG_wtzypebCDn5A8GdTFR50gGGTOxQ1M4BnvIwrAHP0nSFB1tvxwOL-L7XVcDlSa7ng9-OnF0GrFTTI-KxIjKtkXaff_nalvpXRTCUfueW2-Xz1DnDDmt4YE140mO-sdkfofgqmpVEAEmqwOIQ3qmEjWnvtZ_BBGWU1fDhwa57mMJBQXzrjAHac2vfA9pkRZQNXFCiTQZ5goaBNgwZuM8UHrUASz_RubQHyZUe-8nO48VlA_Q9qCn9RVF0Sgcl1yIB4WbfIU3V9J4En2FUdA7M9uqPcJRBsuArSOrsVMYXcCrCWMVf8CSXRYkSbCVhPoaDS6XadGA_IvbmddUFG9TX5MfZDK4auqSLfqQ0wcWFU87qAK7rhwYGkC_rtl8WXrsrxjnCIjQ0Q5x83gYPrAeM--LHgGIPqziTLc12j-GVl2EhM5gxO0B8x2yaRoQpH4Cb_4ag-IE9OqI7KHiTem_0sUc63GuNrwTK7BfJaVburLas4FKTTmv0VsqiIYvV4sz-qVgoYR1eFOhkYzCwBaR6RkSWgjAQsmiuy7WJhsBAnWJnY9R-LdHcDn8Dq4zO_Jay4lavPdzkkBVwK1sRog1o4dzTlEu8j21oBynxSxlzwwGXELaf41wmv_-TCO7m0QdHVQTrbDY_IXnwIUUtWaP-vXLJiqShWJwSmyIQX59y0P9h-cj3MPJTDAnK4wRWNqaqld6B9Aa-PO4sHALAiEpWNHP3dOfocXvHEwwxQkuJC7LZZvndgI3LFLxjZvyDYKyOzMOtpsGwAHCCZZTiGhR80EOe9O4xdZzRR90w0EDe6wihWEJ-QkuJcgtf2-RJBd03_0BBaK-PdjSa65DjQvAbQae171jGvqgkeJtEKK5MO4KJPC2cjb2l2XRUyws-SqFXbTjfjmSLu9-_26aQsKS0ThUcFu8NyWMFLdyABptM--nHL9IxYydhZptu_997sld46tCZ25vKNpeZ_TYOA0aJMo9-PGOlXOKpfk6H3Jw6w_SXlgl6ZY3Svbm3-XnBztu5tch4GXdyX6RY9AvuhSkOc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67758de2308843-69195912','','','2025-01-01 18:48:22','2025-01-01 18:48:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41881',0,'cd-form-entry','',0);
INSERT INTO `6m7_posts` VALUES (41882,0,'2025-01-01 21:39:58','0000-00-00 00:00:00','{\"firstname\":\"Suann\",\"lastname\":\"Serra\",\"email\":\"401-741-3893\",\"contactnumber\":\"\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/?fbclid=IwZXh0bgNhZW0CMTEAAR1-6IDOuuxzgvZHIMLNYmjdyA205JGPLf6rOKNfzbRsIfcxDFsYsQPbtZ0_aem_lzkWN2cQDbYgqKTxmHR-Wg\",\"recaptcha_token\":\"03AFcWeA58xXmNhzrqBP51wKBm2eU17C_wJvsiAmWVs6jYY3A9Qw_gyv6ypn--JC5gRfCXiRkjMduAQAP0coyK-4uEeJsH572ZuGdLjZAz-dkx-lbzshLKZdrHuFllwcfMFO5IRw4pIzbK23nrVsdBTvMOskfPolJZyvH6IWQeGHqipyctBor-mjufyzh7eZRxU502Tc3QL7wAeQbbu4vpncj9ZKh4dwMs4rzkUNULn9Ll6-fedHhGD_ZDDbcWaFS6RMcD22cbLPtj3ChAHBadEEOYHBa2bNidJ9gd2--XlMp_Qv_gFo1oSw8-muRGtRhwz607DVoz5pPxxdk1qq4qC5W8WKTHGpj2ghf5SwuQgsJnkeeFn2EJC3cqeqUfcjdna1N1uvx2m8ZpbArtDnvon79XylLA4IKrDb_J3My1FytOxeBuZAwxuqMr3dzH9UnXpHcTSMR_x_1l6PP_1JGBWE3OeUdNhQ2X8CyG1DuW8yd378kfWSHfgGgHK72-ofQ-qlAtdllth-1mW03BJxHnGXbmlAQIsQekcsnAff8eUzduBWrmn8TwdLnTmQCWIIlruAhUBX69kdf7zItyIGCnqCVetx12O99A7HfcdDvo8eKvoy9DOZEBpYkLyVBr94sWrdiqz5_95_tIJxKV6-PUtpFjo694OFqOq1MbI24iJes-BHEs1BoTkoGYcapDRxzuUNONDcU54hhM_FBJEyWKRItORJApv4REoKSMn6hcSD89VnOyEkLfHB1pAogEef87ayeQhD8_eA7fa5bPcpaDo9Tb4yRSvsMkx7hDQ8G5tDHDp4RrE_6oCPneLX2Ath3-BA2mVIMee4ebyFCQNM-Mdr-pR_wpnJr88mNKiBVa_DDsifcol5A8x8W6KRyT3dXtAbUn6TY3tBdg8fDumBtLUwtaMNhfVwFFOj8E4brNLWlbIGQBwvO-f1Z9j1P3kxmoQOvg191ykZkRGbgGpe8OqZA91tCXr80zC_zGwdWKilLrhJpReAmhHPPNtlC1CuwPbR-nhW3uYhmxDbgmELxxMs7cUivgCZdNA0Z_bbYyzIje-eS6rKDL29bB5T0-q2McWHehw_eP9SZuSt0VJR2uGdpNbKiNyOLK47SuHb2tU5IxdBbMDLeD_zEQVquMPuCGGQt0jUmPjtVrhfAj-rdLx2x38Gur_u4suapIFQiFakFORACBFSlYJab7RPxoZ-jByXpAvbXoKH0etJLXpACHyhRL_D6nA61bFS_i3j9ohFAXAaP1TPTCuerlNB0eV-T_XFfnAa6GyLpJZp8v89NPf5-ICj1FRgJb_7izrKF03W3RyndU0ZqwO8Bf6OwD9wzIIOx_UDVtLKH8WWyUf9VXIvddGOpx5n7sGQCyOzvshH3IcQHoxiq6QaQbVXmkgd3uivHnFlgDj5KR-B_vXflNLHOCcaNrOJH9xrkAdut2ng-GMv6P8vsHTixTWBIhQDYG4bSV1-UjFsxCHtWxKNa6XN3CsJssUKd5exc81PJoRsmkKuMQ_l5Zqaq6bBsFQmPY4VUjMIU51apyz5_JKVyetikn_1pZYqVQkDCvg0TPQN97jNsKd5dur4RoNCD8GvfcdjHW3MiN3RYia7hIqOmiFitBG10ZiNupkvH_YllR07h9vBI_Orxze2u0YsUMaXpEMRgWih1SpMtedV_qRqCIaA3oCaO7ksN-3cqmYaJVxXK9cjECiHsdk1HsL5p6pMfUpnCxD8u5dkgjO-7O6ZYJSi3lkUJEZOnswh20gTDlAsy3Lzv029sxw73eygqjQS45q4AEi42JVU_Y71Z-XYs0ARkt4BnmmNhg4lwzwFPmxYiKWuwiv9PuDJZRJUnZctgcsi-78LmHMLFgxVTISIbTyWnA8e824c2oAlZi6iifSgljjmLnw9BWwnH2qveZf2VG1BsVj0a7Iko7EcDpQLiOyNdP-5dFB8qvJCS6fUEEeNcMMxioyfzApF78Mq20tsvQNLgbgX1qRJMnBziPrpkFN-T-tIdP38igHJIWmkad_ye0glO3fTEyDVJHMyy6-xZMTeakJAvVwW4Wjzk0QYf9bkmXy8mHAr7MtQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6775b62ea36e25-01628476','','','2025-01-01 21:39:58','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41882',0,'cd-form-entry','',0),(41884,0,'2025-01-02 13:07:51','2025-01-02 13:07:51','{\"firstname\":\"Lee\",\"lastname\":\"Thomas\",\"email\":\"lee@the-training-room.com\",\"contactnumber\":\"07592089099\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAj9m7BhD1ARIsANsIIvC70wAHxmPB4BKRgWqaBXZzjb4EPIPUkqVJK_nijZZ8hgn9JGFmSi8aAlplEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4ug6lqVz2aivgNmQlXtFvxQNcTYsWLuM675-hKVG9n44Gbxqzo-utJSHWppbLIjqi8y2iJm8LjhK48IjCI91GuoG4cazA6AuZSqJpY46xegrODYYEOBF3i841tKrkaKA3UEU-0TCV8t24m1LGTeH1DrN9hU8TZE4bSCFCFOU_nu1iig7bnM06_iE5YfadGJvlYKHtnUT6ZEqjy2BmHvf_0NKY4_THdBQeDK3zokeYxLE4DVSFdfCuakqLHLATDKcFYn6vJNOgrvYsJlMCftb5k3VKA9qjw-Xgiap8rw8g0BQURcbkL3jr0XuDI8PFhn4MY68XfHmzvvLm6HHLw7mKS2l4OqPpQhRU-jiEZFiz6GPMAfwHDxqPI70qTOFx1UYG-6hr8OA6P1w6WQHijHcVxzW73QSKUJ7L8uCT_7V50a4TIWwrEFBUEPyq94iQp3AecRne_zaHGxteoEs35FKVSbYUg5DJDoULolaJZYifvjc9UefVLCy_KmgzpLMOmPSCRXcDDRz8M-P1ymSwzVYFowZb0cJ8Dpvd8K3EDyGLBBkIGnZqlvSVn_7ZQKDuWQCDUs8qEjiGur1W2YZXEGzyJbj-NywV3w02QG0UswnkgeQfRPlNDihQhfm5oKgSY4naeW5m1VxgqhO9FDbMHCuy8E3RlVpfnYENXLFqALiYawhqUWKD44D31KFwtbaak0HREs2BjVKGtme2P2E6gNlxt9aZvcsmE-mVEgTcl9KB8xYko1Vv2ZDLZ35kmjkdDQTd4Z_z3Eoxe5Cd_oYxh3bJF9PZAkH6nKIdXcEQRv9082pubdqud2kPWviJoF2NHa2X06p9fj5Aop3ZH0XJPM5pgePOiCte80_pjH_DYcAsUUotVESnj1vnxTz95MaLDX2gAMC-9ikfm8wVXG0P8dwfDw9dg-l_iBG2Ebn-_RxjSo7oC4bz4oJZku79QW1NEa79L7s2q4NaVWayF9hqq_u9NFEXbMg-F55q52LHijeEwK_oqlSYptJL58LJ6rNGXmqjDcdX57peUvY20nhcuhVNWwyVRIru2akOgR8IYczwHtXBa34FfR2GkCUwOvHSwN9g9FO9xuvV8MWvvJDoMrSQ7yL8asDpj5YokeUzc85mgJTGzaRUwevRtwnfQWR4ElBhefrmQsUwgAZAXK0GcNMhKh3ij3bgbBJK3n5gJCBucRBz10RAY_YiWrMQcdaxsjaGT5lXismE_b9xExInkqXTyMDPNhE00mLVhj0rmvpYbDZJjFUHQXJDwRSI_8uUWmETSEWtHOu_GUqBYl-AKkmWioAxSrMQb6CT_KLOYmHh2-L120u6y386RQB5pvM2swwiNumbLNJWUeisaZwelJ1nwjCY-AJjHnlbU6iHh6rZx2YrBPADR-wsmFMiHz4m8oyzXgeaPXn7iz7CqpOcP0G5k1lvfKUak-aNYiKUv5p9qz2YhrMkpvLVB-AB_LxebJeAmI3IBAjok9JWvlOfRmhr7UQIfxgXtnxj3TBKkHPDp6l4_aFJtLFCzu7EnwyesEDZwNLOsW0szOlTxzxqp8cVOWQynzDlG-2G__c5z8F3wbISfu7vBaMHlmBiIlow73BSldN4ewMhRR9CGO2iOBP0o9kzWdKqc9UPNMCy-NaNPY0R78viqPp1Pij1AU7lIjTve8rj_pTdeWJOZnqiqSMLQWspZWmoKtIJbjpVrHwXqatyO04fsbAloBkZJU2JBgV7k_CQhxpwt7g49x2rR1w4Mbo4MfFG1W_rr1uENH6MZyHIyeCJScFdkQAF73kFNIaxD_6VYpWZmJEXVfv0xelHjnVQwgNhQf9347aULTdtlUiLY9PBn0ETLJJysolxGCxN1nHQa9zVp2xkKQm88luqCtfUpTjBGrA1L_YxPEUPsKW6-5LzPQfJo14QYS8MbYeFi_alGJz0u6K-qXH8UNXtDFU4KFhwNQzyZ-OMvqRJNyaUP1BFv2ptPjrXHiFcmvWEucYrS\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67768f95191054-52790046','','','2025-01-02 13:07:51','2025-01-02 13:07:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41884',0,'cd-form-entry','',0),(41885,0,'2025-01-02 21:48:47','0000-00-00 00:00:00','{\"firstname\":\"Tracey\",\"lastname\":\"Keeling\",\"email\":\"traceykeeling@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6td7kFCZ4TSeDE2Y72jEkUPc&amp;gclid=EAIaIQobChMI0J6_vfTXigMV9ZhQBh2ccjAQEAAYAyAAEgIUNPD_BwE\",\"recaptcha_token\":\"03AFcWeA4PcW-XI0le7KydMPCAfreapZXzR_Tjwn8_VARtTrDhSOjMcwPTAC2dwhDs4Vwy6J2UHAWWi5R9hihjl64WIV7MC5n_vZOKmGq2d6cYv-sTRiB9FjimDBJ1E7JVpuxzO9cQYrBZWOG_Vw7mpdPmffH9kIdbgRbekiiahJ0ZMsS3qQT4IxcxumRH-U0DHvKXF3RMOy0w5VnFu5UtwL3iQ8LsSfkLvAuOLksJxmuRa2iPc349WZQr0CSKq6NiwyHiAZbVjVCuGqo3yx8T4afqTuX1lrcn43iRXYP-Q7ywPPABBKZgh2mmmeN6OOKN0PkTLbXaRUTfIOUY5gCLU5fF1_FQ9Oj1ih7wRITM5AnMDfxFahhITXekymaesweKcYCDJ3l0WhDqUApi6c67IMu_wxh6_KVi-wMNf2uoV4_FSGaZ4FPCxU708cz5NlNDvgV81vtua-ARdphrErhs0x5yyq4EQRVlZ87qSglU-UncfdsHgaR5wm9N8XhY5mzdjRxrQthoiLXlHjV2Fi4DlbopzUQzUgRz9zGQbAjAB1T6RhreXfRMjYIGN6bJNYoVwGANQrAfS8wFNpWpEZhbHlurTaSBlWLLKMq_rxB9f3ZLLAZkaClJJrp4JvV0Gp9zuldD6IBXGiTWzxQLkQFf8iWNsxkYlocjhlwHKxRExbE1_e_Psn-NFz3KKJwcJN1bo7yHTfHQiBhpHjrUH7Fv-BoNkI1q_4Yn7QmwzZFBC2omVQSEhXj8y24k881on4TTKGCVJLXXWSEPuPfHwBb2e4wJSvtUyBx03JhKnRkzp2nY0yMUypHbWmuz2mtw5F83SImhiGQkxWTMI-gA0EXzLY6YUhdEWLgppipuu2U-KGHDhwM4wxsVJStZHrmK7Tud86zMRO4U1jvP-EW04uuVVeY1qIiQ0GEkWEDZQJ3lIx1klm63VOaoBw3-CmU4rPWKqaAJu2BElM_TbnC00a4dK_pIcDkdbhDoo3BDxESyQOPKO7hizrh3zn7l47Sw3hnpBSZlRjbeRXR1VB7m7FT0dhPKGGqf26jdv2lQFPs1K237u4bcXx02_PkXi5q8-OrzriyhE1HPatk1zYEnhoEOySBAse2TvOJBp0UPnuAzI4fRIsSKTbHL_UEOqfjLD8IJgrd9w855N0ANSqXmdnIQsuTtqZlnc9d9hWB_iJfIwaGQyJWj5gYIhcO5O_88OagrcH-OUuAc4_cKbtYEZHYLo3sT8zyBv_2JmlCBwLrwonK9wtNJ_jwpDMZjtAJBiomJcsPujQK20LS-k3z76vuanfYoy8sYgyQaz5DekzTn7DfuLYGW5D7sFTt1qhhpx8DIFsLdD5M1omUC4yt1MhPY2DwIpe-M4RX7nRo5EMzoiyxW-M7WQY4iFktntNy8CyxaBtVaLur9WluX_k9-GOYaOf41PhXufcz3Li2-MTmVuchZGc4nr_xCeMv0n-CcmFjFBA-Za1qQt0C0ivgDQd3twUGDM4s_lpnzFTZc1oghJz9AIrTLVWU2_A3pb4oYWmurMwl9E6ebvpYNxzb9fVE1fh07RoIX1sSqPz_8Mm1yubzDb0URw3v1m6ZPHVmE1sqDy4RCFJd_YzOcoQ8zLpCyXEGs-oniyoyF9o2EgD_7Dc81C396rZWv5urvvoWe1purpsf80CH6rfN3cpwlIRpOBHiKxP5t11SfijKBuuQsxLmGIRH8Obh0Aggizs-2wiWk0O5KVOsLtYMYnkKLWdQE7zqhN8OWPN3hBR_YtB_GVfvqCe6AIkVNNLGzRElSjDqos24zfEcjDJoWqujPyvwwgxDsm1OYyaEVhvI7NNPDUJeBnnikkrAKzHSHh6H5R6MAMbmAxM5AJ8xgChcTbW38Fc7HyhV2i2OUh3S1NN1YsQf5RdrTuEchDsnm6cvbRK-vxLnFIwFBadv0mmvO7S4LH5WTskctSJQJRntPA-RODPpFGGsRtTUQTMy0lpn9p0nvVNJ9nkszXBcJ2ck3o1Hjb3b62HPnagTwlg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-677709a58bdcc3-90319784','','','2025-01-02 21:48:47','2025-01-02 21:48:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41885',0,'cd-form-entry','',0),(41886,0,'2025-01-03 06:22:13','2025-01-03 06:22:13','{\"firstname\":\"Jolyon\",\"lastname\":\"Nicks\",\"email\":\"jolyon.nicks@ntlworld.com\",\"contactnumber\":\"07714237046\",\"pageid\":\"41115\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sgzUO8kNk8KtceBstGKzX3i\",\"recaptcha_token\":\"03AFcWeA4M_GjUNJeKvIMDKa2m6-ZhK5Qiqjccb47RHURu1mOpZ5mPkKcDM3IBmCLBs7a28z5XUkgSzabt6qJXHnjdp68hIEdC7u6GWkoCi_8YR6BcfsS7LWVfo7-Pi6A22OkK1UFfdWvLDeHSZlAjNIDdyuO3f5pDREF2RKlZje4oK66Ktpi8Lo2WsUQ_xCGz8YEhcicJSJrYXprEzW8dlUR0VUQANqnAf0vS_ngkEJI71SP7y-2hszkkE2tbAjqBDYaFwYOUFYbVX7potYZn0uF0_QiWdkolurRFWyrX1fk_Ia66OQNJTWgC23w13azsESLKcGLAhrHGJbYur4Obje7SZrSh3W2v_wsDQUxDAy3VFzvjjfJbcL1v3803IRKlJXqML4YqR9lPW_iUuZn_Ak2-HPpi22lE_8HeCplmnfHgDjtV8kMJtPg8uAbeT9tbbjt05jh5O3wapp1WhmxcUoF_K5mlA7b7RteKzPc6YeVmHE3mC2lrqxMxyAj-QrWTV8jLTVbcfm_SyFzbC56InSpAZJCHgVXswTe9z6loeYEGzARcKxS-GRygqAZG-yxNTZZrOEuOqRf-zUplwpeGEWaOKWwhPPJrxO9IIMNh6ggPZAFW0Sndlz6u1To_pr_toAszveHbxqsQR1GE7zDDwuslYkNkUBKhR1MR-Do3BeGWR10rYnRAHRE_G3LatC5TIZCeHM60pJHhMJrhXumRyrXE1NLshBIKseUW7ku4YSFtDyagUcQsPB1UvsGyispnkG9PLYBDbV_hqBQgOwsfmdJndi0HcPyWEPwTzrut_9TL08fq22FPrs0SNPlxeermCK8-RKzl6mPgn5z6GOmHKjKa7KQ7PnSNoY2DG4X5bBIAnV8rm_igD-kxpuAZ6V6WVpYVeFq6V3pn5C7jpfdb_Ik-qHIOt6ybFxL7oacfBfsRieVuRS852uCqUspcyt7ph3YYFRVBWVXe2a1_G5GgLRUOvXEeej4FngF9nlPE4jEj_kC71vWWRq6CrT5-0E64t48aOkmJiBZpx3p9nf7q4jwHvRbPSDISIe3051OiAvJY4TBGYVk3lGK0WX0AVfm-fXiWTovKsqUpB9GDlnC2kRBKGlrezFfi9DO-SFVRGktP0KhiseVcnnG3AVW4W7a4vv6LBVisN-5qOrs9KMQT6xQ6mdR6X6zjD9-si3MWY2wRFKp6BxxtyJq7g0Z67xsk7PXwe0aR8lv2tBOA8ffJg9BDjMGA_JSP47EnJ68Yw43VcflbGLTb9EiTRYQy9twIVfXc2YmMq54yNB-5GqF6HPMMtJj0hxBL8HUfUnMto12citqW2KdIj4tiMYMZbbGm4CxqSs3cn03pqf2E4zm--KsSmmgA8patsHsy-Zz3H_SARTMYjO1Eh7nHxwqNBzyUPBeU_1eP_WLKKh9lobVvJgIrGDTcUfrNQdAKeuGFf4Qsjpktj7QsnL4_SA0YcWI-Zl2pOidzkpEf0cU46pdXCwyN__EW-t0rfNyB_rDj7s0nyZuWCCaOMGEew4w0oANX33AbJOOe3xNArvcGLaeTFiLWNUVb4WdZWQiYWJzzRMwyI0N4wT6iCGSUxKIS7yjmSgHothqzPdP8ARIC5mB4QXVoeMGfC2kAFnA1zb0MBb4KHpgesUojMwEioaWLJIBYBgaQpGgBN0-J7orPZGOjogwmkSAWgu7akFXwO-VAOhl93-eaANwzVzsCbBPl1bPV8Xf6RxGbKD0bgdgyZp7Qt0TE8VABf3Sc5gwOITOneH1T64dVZ2K9f6yZiDNS9Ph1vXtzxuY6raWwjpZFdLRy4FpNkKddajY4uWS_UyS1ie63S7u_8uIRZAH99hKG50jb2YXjEReXmujB3xg6b5V3YsAcBZnC-7vgn1EdqdbhV_GiQPBSvq8WT8XOLjF3JH7EJ9FA7kODtf4QGdYF1kesWNJFK39gW_MirfgaMSF5r6V0skSEYS2vQz7lvY4_0JmF7gY9y-BTBQ6PK-x6UzRqWVqfARtsQEzAc92GGPZUABrbteD-q1yBWja3cOZQjm4vHdxKoMoJYM788TzMP9qm42tG-2PuKILJxA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677781fe6596b9-14297111','','','2025-01-03 06:22:13','2025-01-03 06:22:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41886',0,'cd-form-entry','',0),(41887,0,'2025-01-03 06:22:55','2025-01-03 06:22:55','{\"firstname\":\"JC\",\"lastname\":\"Nicks\",\"email\":\"jolyon.nicks@ntlworld.com\",\"contactnumber\":\"009999998888\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sgzUO8kNk8KtceBstGKzX3i\",\"recaptcha_token\":\"03AFcWeA6Kg4bXUwYNmr0kXHeYXu-ABuo8f8N8QEYCRw1xfA1ph9DUJBNwOYxUf9LdTYzC1EU5uV3owlCUZCPh-MBFXJehU5vQlOOnNqBG_t71h3Imu4oZH0CavBiyye5jNotvi6nZfTOp77kva56A09xh2dhhlg7UbmSqKcinZTCwcIIVcS827q1m0bRJSOf3JOOy2oojQ-fIjoXF1-CylVDFOF6bL-e-r77NTjGOKKmJukN-_kfSULq6BOj8K4YbfWfjcghZixMHMzcAwTOWtiRP8Vk0SrCFYarpYR7nPntLJvNTYmWWsySKGEqgiBejLZqW0HwHLeVD642LA3EcMJYZXuONTL9FkT3gMWmdJ93ESjZBRL5FRdVNLQWI4DnxyUmYgwq_NhcJgVx9JeatWxVYVRld_awAPWVN0jBEGoBxEUqgzqw78nDlCcE26Pftjbueb5LTUVZPjzOjx2VDYYvGl90XMNs0KYDnN0wpSD9lABcS_dv28owhXw5GnUDxw5-1lFecyd_RSlwrcV1NAqLACXJU-FoNJqPIxJ9MBnnnwMT3qE-Qh0eXUNksxPj2KusgCiHtfQ7YfSR2nirge-8QcDZ5ZO1mEZznf00K5ZtGMcLT_uOT9lD5ZxKIfr8UDgFcVCQGlFjDgdlsIBcQfQS-qa3ju5axnhmFixkpgJmRJIM5dS28RHgtoR3v29jstDJZbziw33BdspAAwGwHOf-Ybu4FYmzEON90yVj0zNx1cN9CnxOBwdp1-LPGpEjDIrwvfQnZ99EW5vhlioYRGEDQSbaP5OHq47BpbPmdnh8nXSox7jBVrz_TPzZCicei4nImrtIPiEXjgDN3yzXKtkIlnH5LpLvkcuWUU4JwHjJNYX7hHjy9n78OzY6rYZD9atzCfitGMrw0HlbWjR3vkFx_1WDf2ggNr56ooa32UlXvNcNBJtBmm8x3wHzoBb52KygRHn3RYArJ-OFAhhEd9Jvkxa9iBXVyNNwGQRkr9r9iB39Ue4Y5x2rdRilPXpoltuDIruieF1f6m8eZeHztJ9BBiZnjc3jlF7IMIvmGK6WfxG1FsE7kHUv8vUunTrydITUPkxp9UhG5oPbjsrso6_18uaT_BZDzwu3VzHg-2EFGySuC7KCJk6sDBK6LrJF22Wk6i9GvPpBtHwEVGknyecQ37sRgDikYKQ0WYxag-pHJQUu--sLjmGjwJNIm1fXH6A0FF8q3BWG7yg6BHCpJESnC5e5CdZg--3hh91AKC2dnUT4o1uahffOuMjmtm3kkBN3Y8J_6ngBoCaV-yG0xA8OgtpoN5NR1X0C_qhlzO5x7xPbqDELH-I9TwaqrYhsk0LJgyamFXGp1NCH2C__7FSL7BqVeSCTZpNbOBfduB6lr5Zfi_FwxD6A1DRrz1EwUTlWd-Hksg86weRU6FzHT1nW4wUxQfXREyGwDVRPamS4NhM9P6yBTBAQxJxxnmphscZ8ZKvVZ1ETFjChvk7bh-Liuc3QkICxR6iT5dEDNOD_LeWAxZZdLV8E1_Z0nzfWaKUXd_1M7BC660JzfnYElzPP5Q18Axtfauioj1JA-aRxkO3fureoiF8LObtSlL43bhzNOPA2pu8BiuiOP5klZq1vyF4luMt_Gv-B_BUVdXvf_nq_mwXimdusorchN_Cxp3EsQ-cSt0TBM6iHyJ88T_XmV5TobwQ8KqR6FYt4j-3dmAVG4EMXFGeaiOAdjLvpFVo58lZlpkvneR4WEPYKQ-zzq18ntOYVfO-JwqkfdtLzVBfYmKyuA_FYdBsvX7hvc83OfcLMwUPzVipstrG6n4sonHqO2e7zSSwnR47fPLjKaUDlK2_7q87sS2cLrl5MIPzGZE5Q6bv51zP9xOTsENNepPzoxzXPsMYT-WysQ0GEfOhv71pAYrWNNkTBA2JlGkGGcAj1x2q3EXgxeDWMegoJguSR8O_JjgxCN5RcCdTL-4PUd2ABzPhG_qM37SBafYYAJdbMvoO8u_jbYNZas4T1J1PU04hUnLxXX4w4Eq7KDtiYcA68HK6xyl4dGtI05enmrMr8aetDVXUojkXRn3GcQGqMBunhatQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677782302e3606-81745573','','','2025-01-03 06:22:55','2025-01-03 06:22:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41887',0,'cd-form-entry','',0),(41888,0,'2025-01-03 06:34:07','2025-01-03 06:34:07','{\"firstname\":\"Jenny\",\"lastname\":\"Meadows\",\"email\":\"jennymeadows43@yahoo.com\",\"contactnumber\":\"07743143340\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sgzUO8kNk8KtceBstGKzX3i&amp;gclid=Cj0KCQiAj9m7BhD1ARIsANsIIvDx7MiTsjYF7tmSxtn27lcpwd5NQT4Lqh13KiaaF7sEN4Jw_GMjycAaAhClEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7pKd45nBK-fNz1HuZdvufNArVbkq0girp2hEVUNLhd5fo61nShiEy19viC9HeQP4jYLIuMNHo7I2k1RBy2cdU2iXTw0NHD0yf8q3OjDxJW9q3yvSO0_5d3K4aNcHp4cjrpu6KYynfVoTdCfTTY_-1FCO-1mjhRun-LJEno65qbYnFBj60JhlLUhRp7SlE3emUXSAAYYTwmH4VEbJiq21jgwRsz77_oV2ZI1D2uHVsjZo92Ok1n9oXDgT2Hdyek7KO9zOSzLZqNg32uzKWQQFFpx1PgzhEqI8v-0BkusNf4pZOZh1z2VRK3CxUYAm7-9YObKAKikIxYoKHLoH4YGTADIQFffNRo0AqnUwok3WO4HVjmIBb-n4ae4D46jiVPTHQZ6Ha3cX42N4GJQxmkCLpkAHXfKNahoTUZBaL19N1Hj0rHSu6taggqcsF8wtIVs67NPXUD53RmqOZLSsgEtJtY2wz3kyxVR6giFKNkCo8alq7qdVuac7c7IR1-3RmL_yOxysF34mAld79GFzao7RY7f64O1putoJY-XmLiqjH2GgZSByGhCiJ6TNHIRsdaIlFIAYVi0HckXTV6Fm2weWdwVBCefX1Bhpt1qpPC8Ed2bkgbodRN41t6t_bUw_OJlSMaLSiOHurBShbKrQtxTAlTgkfhRZG2f4nNPFeplXnppaAucFnfzuILg5aIKYvq1D3V-y8g3hMPJmqwUlWBF7ggOCfyh0iK3aoYLDb_AX_MjavIysVB7zsilskDxaz_nEfa6dziFhx4pptWwj7wmsEhXgL5ko8pp9XTPWgj8i12UlCvPyO6wsrAD3DpHm0GpRSw-zeqfg4lRLHptFBdT_Y1axH-YMYMRTDB_siLivc-_qTR_LvS-eF9Ff-LWYyQZzkem3Hf2he2U6_7WxO3n33SpYfXmh0TapG3cq8khM9QLDm0v0zfaPXCOmya7-c-s6iZgC2e3vBeSkH-m-B0cYcqZqz8LfTWEYB306coe9zr7UNZe99JtX7C6qpG3NP-OdKIhZSK7LxpladzuuWDzHEOGRJY9sxI44jDg4H5eT_ldhqU8HjN0SWbVfSMyXUSqlSZTICgagXppxVo1y6RiFr_W6mXBKpeGzZGrAX3hljgbRrgvsKakZmvqzD9PlctdbK5CEgukzoWVMtrjY5WRSDfG55u4coAKt4DxAUQaW_-aHrSeFHmz7arHKUFBf1cFpeLPc3SbmJ792iR0BzcHqQLEkseM-S-03S0TIjNuZKrOx8yB88K6EakYtbQgObqu3g84kwEidw7JujQtdgnsNlQR8KVekFXJOI-sppg1upZ07_NZpqFRsv6P2SgRcdflr2EC93McK6l8dgoDfWTcy1HOcILbRLpOyuoj0imzMPYY3N2U7KhL9oaXwN-EYPGrFDSC1bffw-GMbAWkFrgwhvum7lySwBufsh0nW0qP870laGIWgFphqPWWbrlw9cJhV49FAib3wFLzi6kxy-z89JijMuTxhLB8TdV16umvefEIDiDmy5OAmuNrAid17PMzy1h5lrVsDILQ1cqe9fP-ntV313eC7ogt6yaKOULAZnGSIYX3BQz3cDw4cwhCCqNg7ybJQnLjVah-70BdWftFdZAmyl0nhtkh0vVPKIznWAuk0GeI2sRFw8Yqw45q-jVPHhd6EnYy1tdnQr_SWEkmThgKZ7Z7_ROzMpohvRwLzG9PZ0q15qlVBiKE422qQqqDECGa7sIHc8cY14N3-JVqpqdp7FrX8V67vNLcP0i4PcWzUU4pyY7q6MbGASSQYYNwFhjjMUA3S1vMHzc-aP86ezcX3p2C50Qkx9LImRuWH8mjrabli38MRuaVemTUo1OLaov95SpaShTTnDzqp25f2ge2KsFWaTcy1j2vtCa0VLSsPiR_u9RgPWRfi0CcbUWq5bfbfNXw_435Rv9RruYVHwua7ujgJIa_SJGuhGdkwK0zqkZTB29fP65lj9Bqqf7Wu_TjOrFbYCzsTHHphX-9ck0i4BDl_1C2bI9DP9TWiGFB0eu8QKiGIf7Zb_W0n_Zg9b54IgcHK5UQvfIPFjkgD6BrjhRUA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677784a00fc418-16002533','','','2025-01-03 06:34:07','2025-01-03 06:34:07','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41888',0,'cd-form-entry','',0),(41889,0,'2025-01-03 06:35:40','2025-01-03 06:35:40','{\"email\":\"jennymeadows43@yahoo.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"NN14 4RS\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sgzUO8kNk8KtceBstGKzX3i&amp;gclid=Cj0KCQiAj9m7BhD1ARIsANsIIvDx7MiTsjYF7tmSxtn27lcpwd5NQT4Lqh13KiaaF7sEN4Jw_GMjycAaAhClEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7SDK2XF2dsy2POgLLpGVoBpUOjjsfc_lCjf8DVu-AWXfvBaAPLmV4v-myHDbM5ohSE4ca00NBn9tDcFYZf9f2oU4Mo9K_mwvHoanLlJXaNbgFAhAgWWQFN5keGRTdzZlAYQahFJHUFLL9G3S4thXWZE3R6iZwfmXK2wHHo45ktqIK0GdqqgBCQ5YCPNoqp8Z00M672VpLLErKR_zMzDdmJZlCQ9KcdHKZbqzlmmAuG4OGn9Ylwys4wTXs4lAayz0nzwoNggUgdlgrKwl8mWjtzhm1aHzlqM6uG1MNSaJCycGdk4Kq0ZApRsrBHwvlKWwvOv7TI1vxH1mJrL42-6tWu-GMdIz1plTXFtx3afOqBQ-U2X5VAinh-9LU-u0KVD-JFX--KMpPegqnszetUFbDgTirQu3pGBS1r0io_pNO2WX1-7d3soSmh1GEKFZFXEEf1cK7LiFCDnVPY2FFErBx0YQLjqof1ggodm5nw2gGAFDh2jieeIijeRQ6XwZsNzxv_YGAD-T16_HQawahQQrbRILFE-wWyl9csFTE74ntH1kX9d_tD43EoTNJtOAbhgOH3TUMTkRjzUhBtH5JCluVaJGb9taCVfJNTQybtBpipW-SC3ZFVA4_i7wYC8AsLZ-knmdVq3rpB2RChmIJ6EVtH9x-N3B67Op83sz1qAj8EUk2TIviAjZHK2_UFDy3mPDR3IIzmkEokwWQdsdeHMyQJl2eJ0v_15aEPl7QM-NAb9uSJUGzQ7XuuLyMjlEcU-SCTV8KzWTcWaLJH6yEz6LhQjX1XPkHM6nfukvXQT4goIfLSp2B9PcI6KrQVE04Wgo6c_AAGMis2InEd-BtlHpNGo5AH2OKsZEyIOmVgNPI-yReKOyYgC2-VkcUOaR5nHRr44Hscr9ffxa8BWpxc53dzgtaOKYyCc1blH-Dq6rLTStDbD8oWBHHmb6AgPzcMI40E5EjH6ZH6bwqjn_pcJQ6rrjyuyEzCNvRwT4V2nkYdjntVA1K9BxbUvLlgiVtCmSJlnak7ohqxnJDr-2gcKHdnufISeaYIz86u4NLQmklYv6vEOatGVP-zeXky9TI23WEvbbizKg9qFmDS3q4BCTXJlUIa7bIpgDZ5Ymp2tVjJODqmlGz2MrCj85kmncdWEvNg5708jjDEBcmYcfhp9w8CFkXvQHURPtNSDKgFFytDc38FkIhOxwULfpu3m_pp-c1s8jIGDaKnk8TFE0C2Ijvt0EJI2lPkZfkhNCTxRkYPuypXKyt91rfvV2VZ_VWGm8HwswlFxmWCZcrd_buWyahwf09cLvrka85pDsXOvZSIe9qhLWRgBJhPo_s8KX-hKhdc3dk_MHuH8DZUcYT5GtXqsx2fIJrEw4yZGg6zfcVF8V34MJZzmSiZK8DaFfGK2d-KtzN1CVNuG3aCc_r37sfFbzx0kFW0Wg60Dombr_SJHIj91fOcz1AHe9JKJ-BoeXuYbahej6GuVsFDR9FZ2hBErk4rEBsW37mjRHrY7aP0nTDwvkstTAq8xmZn0yrAXBkaPuSU1_DgE1OjViQpv8dDikw6ei0sYPWmVwZ6U08RIpGnNHS2T-j9ElfHmMI_vk0DH4uTL3qaggtC_oGjzJoB0iMjS56iVanI2W1mIJK04InI72kNoi5XIHhUqE0ghuLIw4WlhH4dzsMoArtlujwJJqlNvbuywMMreDTQVHdOVsy_1NAquyP9bKnO5CXel1CiAC2QFPYbbW53A1myjsqGcFNyM5TtJ6BBtI6dcJdtyD1MF3M7rrs09DwaHgQY1XEL0yuP0s8frEcRT2Je2QnmkSdNIR6ZKp4vmCCRTRlojnsFEQMjENUmnFHsarzQjGIDo3hQEYCHu1grVsW-8XyCDKy90nRN-vJjDRmIrKOh3OaZc1Y64PdD2hTHT4eBv2vvHHgym3UEQ-euSsMOFatKU4mDw7x19Srrl28gUdORQy5fwhwtWRpXAhzK5v0G_T2_lkg4bKqP4aZRSEBq14EAUtY10oqhAMxZIe4TwdcB_VH_5Yx7NTQieNZHoqziAt_PpI93IM3ycHFrLUT3DfR5uk-wBw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6777850c9e2827-72731136','','','2025-01-03 06:35:40','2025-01-03 06:35:40','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41889',0,'cd-form-entry','',0),(41890,0,'2025-01-03 06:39:41','2025-01-03 06:39:41','{\"firstname\":\"Jolyon\",\"lastname\":\"Nicks\",\"email\":\"jolyon.nicks@ntlworld.com\",\"contactnumber\":\"07714237046\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/?utm_source=chatgpt.com\",\"recaptcha_token\":\"03AFcWeA6gT6xwKu68o3hVnh9R76dFm8FSGNlZAoezE21J0kdzeb0GTp1VSKsbiJUpKpU7QNaGgY7RRIkxjJtzeABbcbQDOpAPp9p98Y6TQGtUJ-5D__Q2LrGyJB0x0VnKTHovA6dxnJWHoH9olHGRK5Jhu3LQAOWNy_cYMlvxQ0yod3SVQ7pu7TXjvs48balgmLfY6auYXWox7IzbYweaXOKVSRHHwxNfOFEGEVlXGR3pBgcnl-x2nGksfx58uObz9f59Hpqf4WjhCBgYSqxwf0VbF4z4LNM-J-rwEt5N2Oy7oNRqGpjOrW3mRlpqFrykA7xTXGWfKWclK95jIhZVVq6Pd2hyxXVH_MvuK6QA5NJW2GrQQDv-QMVwVLz6irX9LYVab03S24CGuMyPqQpdq127ddQB0irlM53uHRImRw6Bdni3dFcDcqxCBPgAM6kRQTIdoe-spxPDiIDS6AdqDdPk4OJ-cpcLuepTc9Dm2jr9cvN8uKJLZMxHJOdb4NMrvSoqxO5LcDjGkKZAPF8fa4pXkhH-Td1SJvYc-q11S0K6Q5HQVGizThHJHuTrXIlZTRL-6eFLcp6o44TSWrWgP2G5pt6Z2KmPU1oz6FmQsstJPSZ6QUdwFAaQBFAyC-p9i6xKEHyt3QUHkydIttkJH4AKtpXuINotGz9rzmAvYSgmpRAIOW_Ii_VE94_eCNa5wYK0nIuf6OEfml_1LHz4OMTd-aFZ6_Hsm2Wb8_qyJmJxYJKIbHayoM3PEHTVDaiL25VTsxO9roo8br8yPau1nlTrXOa1y55ghrIyQd6ujKVL9LL_wHM6-LN_4GcKv-rkLElMsOBqw7wLlApR-qiUuKTTcxxKYWe3WalKSvnbAecvxQvMyfMPiht2lBSdF_v4dJ1dv7E-DegAYP1iwYEb-F8f-CRmch_o9svm_FX8aPCNyXoJJ2_zDEQDwvbXR2ZvNzukB1bMuOfcuyr_AVWexLGXlDcH5QOAAybXDPIj8cG7peEjcpZObnEIaWu96f0Gz0rkStr5dw4pxRggBqxkZ_EjIhmvNnXm8nSKvjKosx_JvpXMsWCcEV6Us6_gaajeLiHlCce55PNwWSOPPcVFp7atDxjHgdI55cPoRzNUHD3iyqlU3ynXz-0RMyRbERLszqbQrPJ30BF8peeTgRWqJTbIcpPTjRRk2yeLulY3ttulWikdy8T1IcZ8etO2DFHE1AE2n4y7Bke8PbSDuoJhlctrUhhD1h712409va5dHTbHLBNZwTlU3hkqCo4TYQSUMHs6A13Q4Z5pGTLjIvFurIbWn_T8XvGo558dgJ3VjUt9K922bhmiNdc5r0cGW3TseoYYytfxIIfrEiUy9uIdWI6V2IkhO7aTKaXcCXbiOcOyA64eVMDZjyk9HGVmHPt0LLheW26_g1n_vE0xxXB_FiZXilZXgHZGrreC1IF3dyDTxefgLit44n3Ayqlx8lMtqcugfq7Fr0uXmvnLw7eq0Gi3v842zNudz8FM1GFcK22VQR6X0mP06hK54635P69x8WIdN0wX0yiwYDKC5aEb5Lie3H98OdQ_qTAJdIEMCwu8GtK6Mnd4bWB3XyjZ86_k83Pi2y979cH-rRldEBspvlcKoHlRGz4hqIEMf5q4EYrCK4t8JmlbDEU7YMVvreNePpNhQZ-E3mdNma48R1RrTdSU3SMo5wKKZ8gucoaqN-cyHAON43UMBp-E9WTxQfKngpYpMYzJXyOahsTMnTHgdLPlc5_KSXwgl5SkEMGY7N5L23Xh1idQAoE_CVOJxu_YRIpqKxQYO9HUhhNytI-iT8oC3McQhOT5_8zwZNo2jhA8Z1qytW5iR7-yYLSXOEtXeDzCgMKgMd79ilAfoLfQpSQ4VmyKAWUHuxPhn5yQbduvuUF6CWNg4fuGVER29CSbt-bxTtx1NSubX_dGUzh0z2YDE_SIY3vS5F9h2ci1KloHRhLsx96fjtWnPRXiqIouFRHKOa41wwkttjD_shubE4ZTRBnqqRvBe8C3213gtkeoqHTcZYw0LhTjoN4HRZvGNOOSvpRmXzZof_MMjzZdz0RaWGjx_hYNZQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6777860cebcd55-33419376','','','2025-01-03 06:39:41','2025-01-03 06:39:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41890',0,'cd-form-entry','',0),(41893,18,'2025-01-03 14:40:29','2025-01-03 14:40:29','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-autosave-v1','','','2025-01-03 14:40:29','2025-01-03 14:40:29','',39214,'https://biomechanicseducation.com/?p=41893',0,'revision','',0),(41894,18,'2025-01-03 14:40:34','2025-01-03 14:40:34','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2025-01-03 14:40:34','2025-01-03 14:40:34','',39214,'https://biomechanicseducation.com/?p=41894',0,'revision','',0),(41895,18,'2025-01-03 14:41:28','2025-01-03 14:41:28','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2025-01-03 14:41:28','2025-01-03 14:41:28','',39231,'https://biomechanicseducation.com/?p=41895',0,'revision','',0),(41896,18,'2025-01-03 14:41:53','2025-01-03 14:41:53','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2025-01-03 14:41:53','2025-01-03 14:41:53','',39238,'https://biomechanicseducation.com/?p=41896',0,'revision','',0),(41897,18,'2025-01-03 14:42:21','2025-01-03 14:42:21','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2025-01-03 14:42:21','2025-01-03 14:42:21','',39245,'https://biomechanicseducation.com/?p=41897',0,'revision','',0),(41898,18,'2025-01-03 14:42:46','2025-01-03 14:42:46','','Biomechanics and Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2025-01-03 14:42:46','2025-01-03 14:42:46','',39249,'https://biomechanicseducation.com/?p=41898',0,'revision','',0),(41899,18,'2025-01-03 14:43:19','2025-01-03 14:43:19','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2025-01-03 14:43:19','2025-01-03 14:43:19','',39254,'https://biomechanicseducation.com/?p=41899',0,'revision','',0),(41900,18,'2025-01-03 14:43:43','2025-01-03 14:43:43','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2025-01-03 14:43:43','2025-01-03 14:43:43','',39263,'https://biomechanicseducation.com/?p=41900',0,'revision','',0),(41901,18,'2025-01-03 14:54:00','2025-01-03 14:54:00','','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41520-revision-v1','','','2025-01-03 14:54:00','2025-01-03 14:54:00','',41520,'https://biomechanicseducation.com/?p=41901',0,'revision','',0),(41902,18,'2025-01-03 14:54:18','2025-01-03 14:54:18','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2025-01-03 14:54:18','2025-01-03 14:54:18','',41425,'https://biomechanicseducation.com/?p=41902',0,'revision','',0),(41903,18,'2025-01-03 14:54:36','2025-01-03 14:54:36','','Level 4 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41455-revision-v1','','','2025-01-03 14:54:36','2025-01-03 14:54:36','',41455,'https://biomechanicseducation.com/?p=41903',0,'revision','',0),(41905,18,'2025-01-03 15:04:28','2025-01-03 15:04:28','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-autosave-v1','','','2025-01-03 15:04:28','2025-01-03 15:04:28','',41425,'https://biomechanicseducation.com/?p=41905',0,'revision','',0),(41906,18,'2025-01-03 15:05:19','2025-01-03 15:05:19','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2025-01-03 15:05:19','2025-01-03 15:05:19','',41425,'https://biomechanicseducation.com/?p=41906',0,'revision','',0),(41907,0,'2025-01-03 19:02:56','2025-01-03 19:02:56','{\"firstname\":\"Matthew\",\"lastname\":\"Wood\",\"email\":\"matt.yolofit365@gmail.com\",\"contactnumber\":\"07840390242\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sgzUO8kNk8KtceBstGKzX3i&amp;gclid=Cj0KCQiAst67BhCEARIsAKKdWOl8Zma_AmnfOyoF-CGK_d3kELSxc0xF7YY_8EDfh4K1fLmQu5oshb0aAlzKEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4SUpKRtugS1J3IFo78Ycm3KSo2dswszLFm4Q2buKNR6luTr0AB5l2fhzU4ZtZDV3FlhrTcB9aB2iJsjfSSx2MyOf7-yZ10Ssl64FGe-X0rsZYF-yL7YpxKtffcR4s14bVStvqwpPPF4Zgw1gbBpFeOYABvseJmcPQWdwjyBAIrhSr1nAIpARnN2Ki66baaBXuXbyUge8Q31ksyaPNNWfH6_kcHRJUv592XSCI2Lu97_wsRKm618mUUWHD8ZEVhLjsjSJt8BxTWh4M8op_U_pFdj9oiCqnh4zXmtJthVaxpCo-iZhVjwQVOj0FLxu8_Vjs9vtEQQVR2Lb9190laskLxn1CnUGH6kp0piPtXcEduWgMeDa3f-9YMdl_E2ZchEq_KzeqZ3_26tFaNgX6KgEV_FINdH6jfXGnbpcHYsr03AtcKjF1zFzeGl9n-BT8UgzWpfxOUA3qX2ce24rrvqE_eamjYXA6H6Kf4eVNAijkZW7BFFACAG-BqHDZOtCnUz4nNvkTny9493-Uh8NQEq5DzEH0_sDrcJBMorUXSaMWD7J-XQWiLhRYquQEeWNVTSEn4wloyxzbGr3DseBBZ2YcoJVQP8WCCfaA3H83czBMH7Y4VZg0H30ID4KkQ6KwPKVcUEM2c_NDAN0EHgtSslyJEyHqH31tavnFnNnvxmQlJAmybS0X4eVh4uLySRSKcgpIe2Cj1-yK1vOAUF7Xh1T2DjnDTaSXHaPbfw4YOcitPH4AKXoe4Cl5ox-5eCBPBwmNbBWGtFamKYh4Ks5PXjibZIa9_tkpUIXFWFgxKFx_P1e8-uRqHIjdwgq77i0jbGAJKFfIOlW_YFDD3SIKRtAVz4cBBpagXe37wXvXODSs9-M6tzGydiCiHgZ6YOvw3Q9jxTD3graPNA2a4CgeFvAQh0DiQwYC0yl9hgmJzYK7Uphf5ZNn8eBopUXxAePrZI6VmjFWG6v0Z7LQVe27E3zS5v3Eb8lNEYypl-8EwJjGRbS0NzbI7e5YVNlO_GKlKVfXx01O3bSzrEGDaGMsrU8-QBu1OC7fXLmuPaNCd-XoZqVmFHBWzuk8i4h_pACISvP8wBmNyAoLCTkPSBvLlQnzPbHJx3qUX_9wZguUZbwb_fSnNUHaFSfY4f5aHm5iGT0j1FO9iLAty1ovtC3dj4OspBAHtghaVCNtiTRSDvPABex_a-cHfmKuDce9ALNCFAP-CUqiLXhuniB9BYquTM9yPUURaCuMPidScS5iP5qWOOMYtNSLb44QrGlk4BqFOUBNRsHNJMPqBVTgfeVCc_SLouh5xxll3hC1-DVU9q7LcJzSa0r08mvvIql4FXFhpikEdfN2jK73fiqDpTThwlqZFJoVf3oKMS1amUC0kZgFINr-pDoLi5wjILt9HEqiC6T0GKQL4ZnLQBbok_8zHHZ4yclc_ST9tn3HyvDDeH1hkco_MQVbZusHP-X6O4nSKeCQSed7Urft5_08ODY3yA_OXCjou-Tr5ERjYf7vLI7U1wlgjLOwsogrQ2pd2Inf_clOLTKD1E01KcSJge1LHfxHclWi619JgCOp1zuWse5RVEXxaX9kx2IOLWTka583Z6YiZHV6blsW6zi9t7r_DSAg7OgDJxPSrAMjFtKzjRJ5vXDIAF92I6pqL-t-GiTI_oVIqhedGfengxP84WS6fFOqhRUhAoyo8v8xs2Zm5Knu65FkRMEKEepcO_ElhOEphQrx_9QE-huYxLKQDzINMd55Fy_tDMot0q6bSPDT7J_c0_bMv6IU_9Mgjkxe5nJHQAWhUVGtQUkGle7VCwEdq-1uls8gjNiZp2Ogps6Bo5nzwFDonC8JXyTXj1R8-9p13TJXwMZLj8PPKVr1H3JKP1dvgtlbRjn635ShctE8oGysXd7K14DDRssXE5tP3PK9FC_jPKdh9QOOEsk592HP0_YFa9orhtMYHzl5dZh7jG2cvA-HtJNHn1ikM-10Mf6lTdVdTPL2Si9NLXuphoUjaRg_SvNSmlBc53TJcjjggtc6Jz3LfN4-c6AcMm0TyV-jlIrf_C55z3UfJirP4PEhDBt_nVckUo_SV-cVybgEmxlfvWB2HG7zf-AnZEEWw-bRsuHOP5FgGiVBHXy4igiz29cagZnlrgbSxrYWz_Oom7C7KD7VRb_DHmp-6ro4hoj6rYwRQqzv8T9oxar4g-Etk0B_2oImyOjn_ILQkBCm7X_n0_1pogFelMEZeg0p96dNpIGelpPB7Hrvhgvm2uucS3iT_wPfEKQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6778343e4fceb7-57397583','','','2025-01-03 19:02:56','2025-01-03 19:02:56','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41907',0,'cd-form-entry','',0),(41908,0,'2025-01-04 14:20:39','2025-01-04 14:20:39','{\"firstname\":\"Connor\",\"lastname\":\"Bishop\",\"email\":\"connorbishop497@gmail.com\",\"contactnumber\":\"07498544170\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA1eO7BhATEiwAm0Ee-CMBBjkgGAq54QBOjCeP9pa0-iINVPKwLv2KIXLDywTAIuAiPHw-yxoCpHQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA75V5s3GJ2-MJGvyBcpQ2YXbTN7JITk2eVvZ7jyG_biMjoo416_vSeUnMpXqhISbnWH9JT-bO_WnwSTsrY_8FOFHml0mTTsfbXEvPP4zHvoQhW2KsUJfkM97YZMLkmuINJlmaYIkk0KUs74Cp00omSda-VosblAKmd-Ogw2xe4KRtg7Y9ez84DBKTzIbQoHCKlsWxcIvoofXCfdDO7HmO_Hvfxup-ceePSBAXd7krOVjUzI9iPcQxj0nZAsxk2vgAuCbsWkK981OC1MsDFgLETteU62EmOjHgQa2je56q9CNYYTwS-Yqu-d29-JbWcUKrFvY6YNr2ZTH9jRZPqvNfMKZmB5mV8hD3CaoV1Z98zp6L7iqly1X1-2P-tWzPTVu9kCVcvts25oL2S3Xwh59O74oQwj7LB5cam9RH430Rbkl4PxlSmbZOuYf-10SPHNYTdt6vsPkqLiIbfL0bGqBBWpuQ0yJNPte-5b_VKTU0rWvVqwqwPIRTOGUQcOFhRiOaTec6KWlRKUiq7RCWG9xahHVwqoEmIXYo8sW6Z0Zw1r84nT4GjR8UmEpt-C5IievM9jDjptYEjwRWihUTfow17zPNsgGn8CY5RcUqxZsPN_vxUIOdevwv0BYy6s9XG7tb9-9ybbJrfR3v40DDrFsrZakr_KBO1CTj9kM7MUyM5mA4GRRBeB-nPlIlp7j06AWWMq1thV1cNCy9B2DqBNisfWzlTetUCwYwQO6a2x8AWf2HUhe4tqC2rXivR1GEGbJIgvDBzvw81_v5r6jDnPHpSNy25_Oq0LeJKDvjgK5yQd3CqXUKLVPUc2EpLzPJ--rd1YtZE3ZdmeARMqBxyYf7yeJp6_C-DxsTI5Ib1q4qOJ7FzDAj3Sq0GQg4Eu22L1ak9Zg8M4tG8uIJgA1whzYaT1e1RoIDT4AK0KgjimdxMZdS6vxR833rg17eW30Ku-WMqx2RCEVQ2BHxtzQ9X08r6Gm55do-9sdKxLOTInMJV9fUHweUsabzL9j9V7Q4nMQrFGBz_Q6RZNIi9LCNJJ56wGAmxfUilkfrxjs0zd42pA09qKxd9ZqExyl08pSKc4Iro3DHWd4QDjV93qWPmQaR1Bbhi_0SfgO8ovjiygixIQ-vBCXc1naljgZs4TMM23fMM5kWRZynp1f1txMMrQR4vYjttMYUt5jTsM-s4GjanwkcVGcNSiXgSYyuqH0to4xjlbjZEA8oW1TaVu_Nw9DqXpVwLTArKNPbxvr_SCaPGoAi-8srjmWgEF2ZoOKGT2CPaEDUsRlCxhwf1XOo4639Cza53PJ9LBZnQxe2XeaBTXEhKdr1be0rY9MhDQjtiWZnNLfMjLmOq-aeJflciODBvj5fVx8dx1YG15Iol1pfU8OfuYYQbbI3TdX_9bw21ed3a8R5oqRq1xZSsL5Xkt4BE5oNDJlBXfkOV4pfFwIEwF7YnIIPCeH6PXEnmV6ImG8_u3MtZ7N2M8eVhuB8mqNDOdNbb1atBZHxekBlJuMcP4bqeYzZHKNv1M5Va92Z5-bywTrj4wBG2Cs4JD60EE3OR9dhvtVyHVllTwSVcM8ezX50xCca8IDxHsPJO8VUAPBj-XNPbMvFhWctGXu2mo72WWmjUZo97p6E6NzV4uASXHj1FJVRUizlPoN-yYiMecWpybUseauTr5H3L6JHgA0U67jBUuZoUy6Hnu3bmq1rsSQIyY0Tg63OnNdPj51mGTOVDgD59xTP8JLFhKUIgJOzAefMXoBxkulK1wx_ncoT7M9lwXiV8Me4WWM1R0v0Hks0MxHvSVNlLhnCewhyYieuH9kUxMul3nfEyghx9XpZeHoqZSdAd3bcLKcusURB5BRIH04ko_P3Lkuw6Y3oNgz3gffmbbS3ICM8UXrIE5_1p_s3cVJHx_bC9a1oZ_XSqW5ieKrPG8_fnCImXeleLGFoPApLc55Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677943af187a01-52427585','','','2025-01-04 14:20:39','2025-01-04 14:20:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41908',0,'cd-form-entry','',0),(41909,0,'2025-01-04 17:34:02','0000-00-00 00:00:00','{\"firstname\":\"Jenny\",\"lastname\":\"Yale\",\"email\":\"Jenny.yale@sky.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gclid=CjwKCAiA1eO7BhATEiwAm0Ee-CGYs50hsIUA5kte8SN_RPigZ6YDivXbVoyWMd_9NeMbEzqci3TjMhoCcmsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5xVp6th1W7RmDAw_X4W5_MVPsCJABpvYKCmVhptJqx2zwfKE7_XJs3xQZ_e94miZH9SsU2D3M3Xz4d8K7zZsTR5k1480FCtNB-nZD7bkqHQmssCCTnQRpI89JAsuJv3IIaqqs3AcFWfGsyP74ZL1Z45Cods_KuJ7EPNShUu8O4_IXzCPVz5BevQhz1Sj2SDvTXcIU0cS1WYRUyNicXeBLs2XXRzD-rCNauD0RGTNlaWO5dO7NZ1zEEsY0F3ttVmCoAcuQ3w8_IPHiftWisuuDV9jpnRyuyr8cwDtK4KN95yQ2Gc62tIdMk8YRQOzFT4YtWM1P3INvbbXtkgBsElnE2OBemFGd2WmNeWaPK6qsOJJ208VgmMlqTwOsRsSsEjCujBiNPb2DFhwxPndyA4p3WPzUydr6jJ-cnEPHt0cLMgqgpbXUM7RtimYxxzcgI-_RSqYaWzK9XnzmHEFxpqUn6SAjs4xdvkla97UrqnMuW3Ky9h8OCkyOVkbThpNyT9lVL5V34XwMoSVWMrhbXzSK9pidccCFz3o4JIBw_83A2yy69N4mqyw1-0x1qA5GxdFeMs69YS0sLv5x7wgv6SqcEzg85DABm-uQOIVGzPNYNjxJRqJ-wev6hDbmqqNqgCULoDGpDD18x5127HwCOY7TRwkqVjS6CHtzKQ1sQlwptRJond0D-iMBGBgnbRh_786puuU8kIyCGGUO2kOxjnJfqKxzsLMo1YYZyXiJCYNLqhCY5JRDuo4Isez4TI1I8t2gtBvYXKjeRwACBx-iQ0cIAZIHd-awvytDFSrCQa6LjpU5LOSOCfSQyrr4qghbTnGmyRnus0mVxnDxpv3sOOdDjh4jAf1Rqoy84TL5rw7ej3z8s-ThLSfhbrBGJfaldDjDjpM4EtcmE-ijylyLzPBW0l9JzuZFaUDOygzEyWUvJduD5ZWiPz9Q4V5bQTgtcrf2JU0MMktO3z15dwnK2XSfUZu-UgQIcZTWZ0vYSy4MHKTS9rAc6a0LAOh4k6H5KaOr1oT8qB8EFNlDhXz9sMMn1vgqsNfBTJA3dwIYCxozxAnWZMhrW1vcQEybHVc3aFEWZ65MvCuYqAj0Yj7e-hxlYVIbMoklIkrq3IGE5EcyNBsE4Hc7_oc2lDPnf4aETP9ND-U8rtb8feGzGSgrqGAwft_Ra0cGj4GJCByyd-wfsgqptrRrRMeumCPOf1NMV292__BA9AT3a344QmBoyn4WWPuI9lMpjQxYCeRKYGnnkARbHxu6raBlZ6kr-MTZ-ix4EvhWyNe2Ls8YUIu5FD2SVCwxtxJjBaD_Rvj39MuHHjmKUdL35KRzfveragVqUJNTi_kI3WFHUBwGS4nD5zweinBoSGIKWJ9SZ271gG4rR7s55VvcP2TNQTVZrmdljzmmLHQq9T8auvRU1HL7nQaHmQ35ivoSKCY1e1iZQ0AxYCB19NukCLJS2tlPI_IJGmdnMY-Km2Wrl7qPurk-1q_1Y0E6ZYRHieygNqKp3JGgyZ9Y0IrDGLzQD9IEeBNQ0BmU3EYuq3LzwykDXLrskt5M1LpYKoxvh4WYboaji6qpoNDJFFrq1dUHpILdtotYSBlUu3dyDItNVMYLb5vEvtCG7TduXTPCBpPYeSgMV2VWOgJuLngWyCWdmd8YLq8ncrtHFhkBA_mIstXeiQ7RdGPfD3T93MnL576C3LD-XH7BnWt7WdQAfV8EII6Zkjpr7CMk81lFbZXyH9d-WF0EOO7UimC0pfns2LVkxX3SLsk2c-nU2R_DPejtanUHIxB3jy-yKAyFLdycrMJTxh3tdhyXGAY3UmiyJv3Tc3xxgfh6h1JEUPyzG1T50pI44qV6qx_-CTfRekoT027IKCGHTS3mr8tw45O135x5CQvOZherruezUTlKxAb4j8CeVwPzCZVYpduPW0ivuGSCebHheD317-po64TYCl6E-Vid19P6G8LMjIhTkwIT52h5aCOhmTDHMRWY-0ZZM_yLq2VjfsOdzqtEvzQTIjjxX6xyWMJEIYXc3fkw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6779710ac70e85-45067264','','','2025-01-04 17:34:02','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41909',0,'cd-form-entry','',0),(41910,0,'2025-01-04 18:56:15','0000-00-00 00:00:00','{\"firstname\":\"Jenny\",\"lastname\":\"Yale\",\"email\":\"jenny.yale@sky.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA4JXkYrZhUekpFrUU4VWScpZHy52qOWxow12tgg1HrSLye-OMBD5iJ5GWmw-P2Q0AZbtliOx2PlJkGBUQgjo1NSGoDzMhJTcC1FBkECnqXmXjy2IDmngw9bxW0HuzbxugpfqfN4X9xT7tUtErhlMQrhbqXbwIEviWOD5y95DWCU6pu_6O5EUYOcRj2g_j9bDj4Lh6bmkz0GS6F8glxBHLLMZNS0Mi1RExf7W_SgIQHHJta8VmVV4yg6W7sp3q_yutQ0bc7d4-6gVkNLMHaq_8nELJuvS3bxbZBE9sw1ImWNyfnUVZzWTfMDenjpQgYUNsYm0e8tx87BWIhL9oDP9GkstfLdnvxkQSDoG7Ny-C9S2hLmEfcMUw4UYzFN2suqOmOEplmT46EnNcTw3PlQ4D8RcWCH31VYPKP0KI61UP5nAPAwPAAmMoOLoCQY2u9k9pwria68hqVzdJDjZTGKAUpfCXP10rttYmOHfQvjQViOuK0ekziG2ktYpzEdPmVby5xAWhewItoXv9sloKQ_u4CcN0bpklhdN1kgWmgJ4V3Y8ZWwiDTTsGVRoih1UJ6cgBakOpNGth7Q2u8VHkiEXVOlgrzok2rFT45eI0OjzfOuqefdWSYl0_YhPQE1B-YZFWiuqhkTpPAWVGGVloq1feVsPSPj6AeJDknIf_E9Wic_lpVWKt9FI3o72yZN7BK7sWOyE6SbDh4MnMp0JuOq60XZFRM52GNShNe0Y69a_UqQZkFxFUf6H8hhIOfafJRVoZiWjZTPipT0DWy9kREEc4WgC7szn02P3vKttER-CM0GUl79ikPdI4ai3XzBnovC-AzbbT0CV8INqYbg--6qGG7ve3micIKa_4PYXknWlsgGqykGlheWGT9LZRHftmm0lX8EEElMizcdVcjd0n1o6jYCm4uASZr2u2kk3S6E5TNzLie0i1OuMVSm5_FQhySty6OTm-xrnXvGqhM_OKsJkb9dka0EVsEUamvR7ntSMACjeqM5aS82K944Agif4LZMw5sLz6YONnxuGPLg7Xi3K3eRdu183MSPS_CYP5YduMnd_tVgT-1Xp9keFWXuRH9hW0xu-IF1ZB56W8QqA_WuHTCUeriOJ6jPPUvWY60sJH2MOKRM4pnFlahIpJhQ5Mb7Piw3WZ4cqUisyDAMECXtSvo56IN9acZniDvfDrdEAF7Zli3KndZhkXGuzVpNl6AiI5QQhlCEtlXPDMxJ_rXhO9B9BYLUOFa-CnXh8IwFt4bsCn5mYYeoNbK2eitkDgiqouYQQRJr_kNIUD67K4gKsSOjaYLy3NEtAE29U2gw7MboFo6nKO848kRTVkspL2FFBPnncTzDm9sC13L1EeaigD1hIUzp5-M5lL0_fGXgIZwoBF17XCYevZCNlHQOLsKId6BkjCM0FOVXvBWEmLFZhoFDUuPRJvwFCS3d6QNi_rwkVISGlOMwgwy6OPZxqEVvgdyqfJwlpi-8sc5qWIaqN_EbEaX3VlAgm5wXR0Tbh-PrptYCnQlwns4Upu7lIB9agWpCsQWIjFlZ7FwSCl5rtA9mnF25VMDXYmMHpWZDv3uimZCObcGAzcqnfzhWVprMYUKf27oLqSJTnNdX6cHqxY2DQ7Os2E7_vGjcTjMGmYhzEMSiiMi8ady5p4vtGcAP7c7A2TOksnjLyINSTEGRiukccYz8b_SI-gqfKnS-WChLco1pqhw1XlhydqTXv6imgdjpC33GYUgJ9FdrXUVF6sm2JZ7BLrhPN8z81rFgmErI2SX5TrlXPAjWeNo4UYXWpYHtxK0iEPEgW7fuyiBDfvWgegIP0EayDZnYpgFuExZmH3gZydaJ32BmI6E3Z5O_QxBMx2ShZ6QCTR2zbd4y_kjIAcic1jcGT_9zKe2L7x9nGPxEwpD5cFYsQWNHs3NVB2DxhzitsQ16a7XulukFTuNZ4TtEca1SOm6du20hlPx3LGRJX_GohgNS2K_jJvRKOYAhJ50KkpgTc4HGM_0A6Ldf4jEOiR8bKasgIbEZI-Ps6KgQ5l8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6779844f81ffe5-24722492','','','2025-01-04 18:56:15','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41910',0,'cd-form-entry','',0),(41911,0,'2025-01-05 16:29:30','2025-01-05 16:29:30','{\"firstname\":\"Sam\",\"lastname\":\"Graves\",\"email\":\"sam687235@gmail.com\",\"contactnumber\":\"07359302718\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA-Oi7BhA1EiwA2rIu23Kuf_rG6GO1vWcpTRsINK_1ETcPo9y7_XivI1zZdEa1pT5LiZoKcBoCTCcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4rodEc6fBDHlbnMbN9ozqG4shWxznK4WyyyfGTefcR47I0d0wpAY8ESTmw1qFgDCewia1YXyHD7liiqHcrdZxLgqpwmu3piJZEPEtOaKapl_S04H4oHlvHB0NcMhOUG_uMQtPz9mrsxlr6_fMx6XkZm15dmSryjzekzcQ6SgH_dsqdXrGoKEQ9wY8a0U6dME7uxnHJGs-fJrDt0Y_4jVu-FcSUawBEP08HsWEnzM6h6WF5lQlllEBXBTjGjUleWGcQIPK9Q-GElv1FfpZt7oaHTBBPcVMTOOZCetHESudO0GhI37WLRHc5DlDpqpyCrcwkn5ca7R-BAlCQE-DzWJbVfVD7_etYIO50uduaW0p4RMyFUFeGmkLDM70JA4a4FMvmXTzJSsCsVhqU6lIfWTjuL0xy9nKgk70JOTKIw6IG2zIN1p7XDUgRVIprRARFeSp0moHNRRVNrKmm7S25awwQQFDhVni0PhkywYNNKnC8NgJ1Knm7okCqTkfYrlA9BoZ05sgz50q5zhMpDnfUhRNPdfnqoOTh74Llhg_xh1yCd6cPlL4c8GQ_J3a1sLfw5kJjND1gtls6wTZKuvzo5I2WnUHm0hWLbjqOJI_1ojFel3DcV57dpmMlx8R4q5_kwfkV83lxPmHbq6rIMN2Q7PbFVTEtlcEtiI9AOywcYqBTQffNyxAw1FZSkVmqrCT_dkx6cazNddscQrTPTHJjqXS9v1NaFBUlar8V5eFtGFGz3Tl1Yb7wtgc93GkV-5BMysCZ9Qho3eLscxEqwb7vAKMMqX4bur3zMicssDt3lHZc6YOwz9ZlkQZ1QHdQlaId6Ti1MvMEaymDNXd-gQ3g-ODRQqqvuCqmo46OQzCQmZ-_hbkrVlJUD3OT0M1wV6GYOAEz7drEYKNjAlNJiTZg5Oy87zw-IbpOUvNxFOYe22HKqlvya6SK2Xd-KYfywG8vXAnvGknGX0UbE5GoLBUtLBYusYk5D0IcC30ilBBdzkeBs1dXbGAVxmh7sABwUWKahLTfWMF7cG_TVT40cVPpwiZeawmE6WcpASoaLovw-9FADazO4Jes9pgCUgmTylO2gsO5ZZVwlQ-aFefU8CiUSZSDRuEpGJJWgvc09cF8Av8SiepeUlnSK3R9jqbL8YPBnBr3mLkeynzRRxNKUi1dBKv2Mf17cbThMpu-haKYnrVklvYlxcX8s1LlDd56bX1bpekiFbZZ01fvLDEJXZj3TUzpCbQ21KZqyFhIC6C_MEkfz5qsWwzFlOiJWl6is3700pyBMKC9GomhIpYVuulJJmxkb_toTttrHmfre7kH4CTpOaJ8-MWLb1XkcVbSy8Mir41jniS9CmGrrpKjpYW0-xHeEYcNafCUGYoClg7D4vR8HktZGfZhxOJL7O8QUKW3KTA0YnLLpv7DkARZf2dVAU1pKkzevvxrteumEOVjAcUj6wlUWA2ngBVJQuBtgfTRR4U76eEAfJUED9fphTG2wUZFYsaWoknV21lDPp97dXWeea7z8Zjuk6FZ_YjaMgGERYn1Y5qbVf1QCFxvLISCamXsu_AUa7SUzVqfY1VBaX_uQjSA3gsAR9IWz9Y4hEDOsbHyZcK6rMX8nwU8hGGxO7JvmHNoHjSvTGgpmjqCLOibQsvx8C0HatXY5qu9arnV9BQ26IYfEpjthsq-bKuOuZhT2mhrgTeKnArUvuQkRfsANm2hi-vV-sT8ro1bKqs671sgy4AE0M9CHzotuPNeVnqpLB1sY09JXEZTZJfKz02tSDKRyFgSLd-vTCOl46noylxu6TxYUYxn2hnJXBfoiFCazdAaGy_fSQ8IPHOxDs-XGQ2gLq470zkpX_mX0EdBxr0kkgiSB4YrEocLJgltf-BG6rJ_RE89483cqWfQt4aVS6mF3lWF8t6uP7vO0ORLf9TdIn4loqullWdHD_vHXbWKeoWAh9G5CxGhZB66x9yDlMQbgEMNT_F3XXXxYAOEvAsQz6Yuqvn7yC0r-95oJFtNp3aJ7uVw-dU26wM6d6gt-McTCZE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677ab3584acd77-97327176','','','2025-01-05 16:29:30','2025-01-05 16:29:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41911',0,'cd-form-entry','',0),(41912,0,'2025-01-05 18:30:21','2025-01-05 18:30:21','{\"firstname\":\"Mae\",\"lastname\":\"Stanford\",\"email\":\"mae_stanford@hotmail.co.uk\",\"contactnumber\":\"07891723199\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA-Oi7BhA1EiwA2rIu28aCSgB_OTvIA3ncRH7hPjSZ-UxzbkR7fANod5eqQsmHlYHes5MroRoCWSgQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4OUpw17BCtl2w0Lgf2E9UDWTOPhURa9IdYTo9UrL0Ql0wAcAaWb1Fz09THsAnrAxl-9kwbnYIP_-ASBmjrJpXAgD10zawnW7VZm4jw2dC4hmjk5zEyJfUgqt1K7sY002cI_HooSFGb_yrsAmryyl99-WtF_rEGKBJzAzRTyjZmIiTw-R75vgtmL5hCwbYJ9I7MD932L0Cq_c00c80HSFjDPHUeKExTlU1CSdpIOdHueaJzCtcM9HP_SwUpMpBButf5PWUu9v_4DEuaV8Yjjcpvrv7ac1AXiL44AahREz1hHeeENXPCpawldY3kk0xqSl8JnnVd5mN5YJP0nvtD5VFNxEK1azvv8gNkqSB5UhSgfPupAkxugs0h8RR_wux-qijPurV7B3Ryh8gCmw9pshInsuzlWz48FiqGDSW7OlAGdpNmHGMgcpN1sN1Xk3ENvz22O7P5NPy8Dni80j2mOKif9SLUca_ybkPSvhIGPbx7i64SLwjnOSrtYPpFM38PA_yp8cPPC-MkW4P1ACf7OulXVBVJG4V3K2QozXfw658ShT8djzdagq3e2nKZik0cGbdTo6b0DlCwb6RcaNYyrG9WRdDZn8RWDXW6Z4h-vqjb0VxPQWJWM0UhbvHGkr-G1Jd0wGVm1TYpF3vB5Qd3o7JiWC9jCbw2Mu_P2fIWcFclqHF9-ks444lUm1BmB0rhC3EzVm-SAJi10OtxBESAiz7PJr9hPLjF43V1WXtyoQDx-iqvRilLxhroW9ASBcgRectClJr79TletLXl_9xCg_1rY9ap0wY13-pyH1ygoUc3XAnR75vLd6MNCdbJrNh_EvqBwEri59_fCWvAzFj83fNlBNeNt_1D5WnZCAMweDhbwe5VweRz9P8XzFAVfQykFsYrMUoHBjirN2C8UT9u407bk0UVIYxzW1kBAW_K_dbP6sCzpaN9Q_hgQYC_1kbqsfT-r2WuV35dtHLgR0pvWsxaPbMmiOsO9xdBBC4KeG57mvH5NF_yt6gy72LwvbPZ4m0Ov7y1puX19OXLdr0iXc1gALkqyLHZlyFjxNQCBWiS4V64I0wM9cyvXm3xsFfd6b9hxf4HHeJEf3Wdmp_4_1UTQrc9ARSpUUGZkdmJu2RxAEHz0nO_3FrSCreOSKWPZFeDwyb-Mgd9RGEm_s4O4JdCLlnmJr6R9saQuY8jrTN1HyvhLEKc_SgVtEckRDBpVo8tjAVNEG1sOUUAKB7RFugdv6fIJ2bO45adr2F8Hln8zkDc8qWQeL5FxUq75gSP_1KO9VFZalG6BV5jp53_4hsaXcb8AKQdBkXAuYuoFB524FzkBaHs2peqMhfPJw4myAcbXP-apDlr9pZ8CyzZsh_glyMV0a9B-C26MyYg7N7MNkiQb2-epib0nK3wjMaq5Rdx29oUwxtDdtX0dL6X978qJ0B2rW50k3lwaMpdR2DBAp4WMxKE2qJ2tXqilYcv4FUDX_R1vj6bXRNzJ_TBxyJeA5tRly1TGHFBg0De_-zAXMzfaGuFKCc8l7h2-nKFwbUb13PJumf3u8FueG4U7KQx6RXrqUfzPkdPEB9SHrMvZbktP14jxmPCoW5mYjRRVooNnhAHKFKzP-bVts9k_rlzoQcD5o80Ro8popErawdttnp8Hdk9TOG2GSoGnfx5TRbYjQl7VhqgupE8wWPTQdgyt0WuFTIr9nch6XsrzEn2Mv5E6DT2K-YJDqA0IeTVD3egYoNa_1c0FR8CHPT6OGSfHG77veOb71BEGl-OEGhi2lVtiNfscLCv2RBmUXO9FBqR2XRpboX8-ti8ug20ZMVuziat2uPqdqQXRslIokNDDlMuViXj_bic_P1YKui8YT5oN29kqjoIzp8MfpUTrZyQd_zGBepqZXDLVpT_WKx_eRWCXP69Nx_xfzBS-v88wifpuAucAKHQCgk4Jen7CPesbM8gF1TDKpcpRejwRManIIBRAx4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677aced9955fd0-42890840','','','2025-01-05 18:30:21','2025-01-05 18:30:21','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41912',0,'cd-form-entry','',0),(41913,0,'2025-01-05 18:53:01','2025-01-05 18:53:01','{\"firstname\":\"Susie\",\"lastname\":\"Lovelock\",\"email\":\"susielovelock@gmail.com\",\"contactnumber\":\"07950982890\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA46K5muwSspQ3FnFgnJAtn3rhexSmpblj6b90KReHTmAQ9BZPa_dDG69S_9pbvetg60dgDvi5cxJ2jovOgl46m1GGW8Wmy_-gOa8otXrbY9S5XEXHAXRdExIn5BAzZSkFDgQVIDdNUzpGz-um5Hj4kUWulWW_WwQtqBiDfNEr3dLNnZyRffANc7vuzIIj5bOQMPFNMs_TeIb9pWsZyXrk73fUlRtdWCdR0pUFSb8-utOkXY6QpbXMEYX0uBC4L35HC373POPuPU3nhft8TRKRqU4NHTS314rttSn-2xB5YrECPUzoPbSLE7V8R_9C3nEluHVHPvPbdcqb24m_2YB4Cs91CXTHFx-Gcu1b5wE8MyOlXijnqImhAfq_rqfgG3-Wt4ciuC18UJXvR9sZEuVteC4S1MhKyFguH4-Uj2zZvVmKicPp9iYALUrSUpSelt76295pifFiEywu3CbViAkVc-mJ0ZdKiI-GjumdH7-D1-8fuv174-w3KxRfLij3NQEFH5df_Uz-nNAVwehQCOWQZPQLgb4FihN9Vk-meFmcZYKckmfETPQqZhCzDACXrYPqNsjje-S7htX4Epf8j33A0o9LogPCmBmJ5tqseVSRqr5W7eqiQMjR87YcZjr2T0yr2srevEbsHaE8ycDEuFohXYpW6jGACG07E_7hTk9zq1U4aSKiQnk4fPen2R2BlfptyZjlroEho1D_nxflamorO4bj7zDbiRX3ONRWGeh9rXBi9MnuwspAm0DKvJh3BHqYgidiL8qt09oIl_eiBWNg8I6wy1y61GEQ4aWHTzoKFQ-p_3DqdSV2G6IYm4jozE_BdfTF4jWeLmSwX3_HV26YiUiU8GDXpR4DX36vfgmo4AzZApd93VMa9ZFs4N9Z1rVoTCpy2rePCGX9jeZJCPOvsuBS_fDEvNdnxfTqlrDnTb62Q_64ALmV-V3Epvqna5h3ub8-Rh5gR1cr7Azqp8ic8nhqnL2QMZ0iitwyclvMJ4Rudeb_xKJWHlbqaLN36xzeHRr9Sc1timkylDbzcYSQRrNWDoMJ9PjRvc2Zo6p8LxlGOLEqHmyErJvnnVai4X7SlcQgIlClNXB4HzBSksuEm-orVYI_VEkWJP81EgHuzhcWhVbaxDfzGj3WMTn1iy-wr33x1oEVIaJjJrHW0E3hVwsxG4ORZAQ8HBjPmhKoKEt0lmqc1GNVCYdOJNa0eyfegfz31A8_UBL7tWc29mzjg2qhHFzqmT-aVAzB9ZhOkKoLmLydVusETLJqKc1qdqlgtBGY6mBBcRwycd3pSAp3bi5UtL-i2W5BbKnprlLUJRwHniks7_bGJVrL16tg-RupZisZHTNtu2lyx8pp8gAkhGo9cHu4egUvB29JOqN4Nr3juEJna_eUTzE5MAnNpLtODdZiC9xYO5aXZ6F199c1tn1Hj3MeyOoP3RBk20dN59p0Ui_cf2pMuvNuqRVQSTSJIBzx-uR_B_1qUoqoLm7LGjt28fQkKXbKOgecYbXNu1oPQDUJL2jqAGQHPMwx6AlzE9CIJli-3wzBgsTtE1pT5Sg7NlV-Jh9zUm6nka9qhYIaM2oU5Ze3HimzHslF36woISwPj6C-J5qjB8VgRTq4JXt7kS9eN8hzZ5W-A46l7gp2WKPwW8JnM9n1t3HDylb6QnUEAaMnd8xfEMrYcz1b5Ak-eOxzd8Uc9YnjG3trp1F0UVjqFs1oqZ7uGYfnqULSEhc8U4gZg68jrAeJeodoQ9CEurN_dFlq_BNdw6yK6wuXVgWypKZTfDIRLoWaByWYAY3JCtT26l1QwzKr0eaHM6LgNW-sENadD5JEdxFlFXVmM38xpGo1qmg2BelBop0Zr_Ojjygb4binEssN3sTV98eL8qHB8QhxAHLIERMTGKIBAy4lv9YBYqrkE9yV_svKO6ASKxqqqILB_ZpuZtcJufSvMts_pjD4LBHS7uQhDxdS_ezGI0pzdR51r1JgeCkRjYiXDb0k_RLcfeiYm3FsB8utrUqZU4KcthuCwZA9BoyydlELKhoMtNqiceB3oigAaYtfG40-7hIAKJWQjVlj0331RuFLh2bUbe9wrEfDUT5Xu4m69xiHQPfbJHGmu1z9qT7ffyFEjsxB5eaBjdCiQHT8pjH-UajioinWbG9jL-Jn5x7fY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677ad4e38560f3-92019302','','','2025-01-05 18:53:01','2025-01-05 18:53:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41913',0,'cd-form-entry','',0),(41914,0,'2025-01-05 21:05:10','2025-01-05 21:05:10','{\"firstname\":\"Stephanie\",\"lastname\":\"Wallace\",\"email\":\"steph2570@gmail.com\",\"contactnumber\":\"07941552788\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA-Oi7BhA1EiwA2rIu2003oiqYwpnSryN93Y5Fqr-WoBXfuj4t1DW-Vu3-I756ba9tUmSslhoCeXcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA63f4ofxM55ZDWqegBMtmiwVIPkBntN3ahHuMHCDP-LejdJLgftngmwQsTww_2dr3tL7o57dtC_oP5W62EnXZsH8MOwHiW2DX0E3xXavxonkNfkCd0ELfVaG9osuQTe21BudV787PJnQpD0qi6NJFGcWNHnAKwglheRCXK4wYTqqsbkapiWG1jg-oHRpsCBLvUUlM8UBEF71tRalLZdh7Fzp8L9qV5LMFBtXMkZWuNMuicKI6tvqvEFoeJ6BTI18LCyoY0XyRWtku-rcXljwTdSHX3X2THNvAFFTRQtm-y0peLH94bGcbTL4XMRja7lGNpdEp8kJYnfAES1-B2qv7Os7hJAFs5c4kzmojXcX1wq98oROpcCu5_N5Rfh-Jb3OeqIKanvt2HdXj2wIiPuHE5LIeUw7d71JyIUUUiwTKUl9le10Pjf9Grw-WWN-NYQjfHXq7Gy0IqOVWtl56F7JTdM0aEgz1Q_1W7uccbtrQw8s2NfYMbIguTPJxC0JUc28yKgCsJq8VPGw1UYGs2ky6awuKTY5IHC5-Krsj369y6hZDojk0LIq7_ycILzNJrfIs2Bomiqzbtm0reX69o3lArLwFYIlOydAR-LqDOEREt073dmdhMO1Yrv0S5HuI-5k44V8FkGdHhq7EaVTKG0NSy1db7X-cjdyGOVDaW1cnubaGXD4533NVzufnXmJxO2LwIgIk6gCnD4546qMMuIp_LYJghCX0at-frG9Vsj8uuP_D-ynprcp40z-3rKbRSWUViS4Z3eemeO78EBG5RFWj4L9tbbIGSHYGNBRwBQfr_tai74Nq10jE1zTGN6T8Qj8bzjd3MswVk4v9hghbMpgmY0PwIUfq2ZiGqaumlQgyxGikIsvK7E1dUwChTebY3MZpRChw2q7qgXjouL4bPTD7FMfMD45kpHElXsv8PJXKkXzd6NDt2IAgjiSiffXY2rbqRUiZUYPjZJEVqjUtJ-EkkLmgeN1g0CBCecnhn41eOuZAPYS7XRRE1rnp7q-G24jWdbQna7YDHwIC8u8nAhUifP_ApxWUuwQtleLjmp_nwafrSlPz3wRaw1fZXcZ7KEciz_N9SIsuv99Vrwbd9U2hZd9UhxGyCkQI-6TFfHNL723UUeleU9ISDkBI-8v-D-mmr3r_42mI2rNIk4qiKslqEVKQHPDEqAyvTBJLutr3661kiXDVs9PCsKUR4wpxQlQ_h6Id0UjeyXldSppWKzMWV9Z9jUdNXluhWLRXqNEIiiJi1egVoRx0eX7MJWAzGlVRUiUIiEmc-00UzAkrFE00-MD35IrOLZzCXTwRh0iLFab1i90dSqmm8BheWRdrb9IUkNojakoRCEOts9TNHj7aaJFXFDWkNfF-OlwA8GNuJjyN0nk4rudjx-gF3jN8M0kEUi7ROzRtnV70KU2rkA0BnFcIPaagI3zQZ25gU-z6MfjaEmrTkc8qQScWnLUZpH-Y_RvnqGL9hWJ8FwyomhIX2o0w1ayk49VNiOuhpMwEyN8CTktZlBWZQGAzA5AtKn1Q78GjDm-AiFOKbQzX41wRle8QW_uy0-2cdgEbaB5t-sUehD5mmveNSx_VfbR20LY9G1hVQksHpliG0iGqkb5SaDge-y47fVdexStvrvNQQmQY3s2dff-pP3O5Q76y1McIKNkb97Z27sn9sNCecj4brhE2Z7YO7wkcbqzoKCs7Iad9L2cXfCuB1-DEj_NTNF75XR5rJxEE5t-lQhHDVD4GlMSfaLcAFXwkTq9dTqY1WTUm5M2BcuvCbmc9xIKC52O0JicF70Nn-rLdTrFLHUwdWT1a3OSYh_cWpa33MJUEmh_lIe6UPAbs9ebIAEuqPvLgykifPN3e9AhaECK7RX2w0vAvPTkl-KXtOTtHWWSALcWDGlrz2c3FFHcRf95j5PCTR8oMntSFkOZTeS1mfglgOwm8L71C4Cc124JlclZsLm_qNO1L3zmSNrPSWyLhojbpvSCDe5nFNYAu8VON0sv64LZS9sF_mL3Y74kJug1YZ-ae37eXlsL4JgTz7NV6QrOhm8gzE_-B3ku90q7PtWH9c55qsMeGpagp1FvylkXN9EtO1qG2HCIqRydd0SaST4N9VraX6PNMnGCP24CwoN-I1_wKePP6fZSeJZYkiRHc_RDBYRnqH4eOWoG78480p3Ps7-zeN4jDnaXKGVWglx5nJxhE2zMNRJpEI6IV7n-zX66dKF8dKVmODBC6lhulWCe1UfUPTXj8-8CaaROOn12SKFwfLO2GUUumpY8BS_PS-0jFQEu_8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677af3ef302080-20106866','','','2025-01-05 21:05:10','2025-01-05 21:05:10','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41914',0,'cd-form-entry','',0),(41915,0,'2025-01-05 23:24:23','2025-01-05 23:24:23','{\"firstname\":\"ethan\",\"lastname\":\"coffin\",\"email\":\"ethanfitness888@gmail.com\",\"contactnumber\":\"07368860938\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6udK6C0dGSEjLS9YjjfMzCwD&amp;gclid=CjwKCAiA-Oi7BhA1EiwA2rIu2yyFhM1mVRQyptWiDUhMIhLzmezZAo1J-Txrz-gyf9jb41O8Hog2PRoCiKQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6B9rnwYiJEm1RjJ5gF9zZ6w31w7EKuEJk4wxTRrO6z_ej7Ah7qvTBBR5UQSR3e51FiDxf1cVkhmfNyiouBzx7_kxbF62_3wU2zoEQt6yI4bVJsxvdKkDXMYcb63A5n3s5rOgNLWL7mE0qWGtWxE_9V8KIUGlNrZOd_GtsEu4ObextbWNfgL8P13e2h3lbAoFIGCALWakPwakxfBOAoyfD3RxfbMaWAproqXaRD-Q_zK_SS6dIRzb2UikBO_4lfY3VepwWXbzrirycGHimtXrQ5qnUwp_wefaAMdBIPhHULFdF_zKj-Pr6_EW1HbnFWlvxYC2X87blo4f2zfFbajiBgj3mwP4wJ8I462XJyJV9WjeyWopOvIugic5EH0tXjxrZ_zbeDcwIdYGxe3-OuZpkZDZ0hzEOAAQNs1g4wyl0RTFDOLZIcpF0vwZdvyt_T8NbnME0zeiW4VUz3zmjkbZlMF-68NeE52b7UWsRT4JZjLlWt2TlfMtyDsdwTst3OVxmq8q5xI3YNKfmRDIMR_ZpokcteqCZEEdZCKeX35FAbWaCIIFQcm9lkEXuxMCf4FTvo4jFY7VWzYVR7Ob7GNNRWyPi_S_eE1u7NUZIZheHplRfp3SZIzGxKHn-lKGPFRorNVpvAx47FPSNTfa7gfZIlxTNZfQKSzdxB95gaC3X6bWhs2x5b9d8JIIonVxNTGtsuNJecQqcBpJ_71XTuGUoyjC2vkXIrw0enKMRQF9H8OMyqO6G1cw05cwgwe22Kc385eKxb64wP-pYBMAao7LIDh56WS3V2uVrcvHk8GVRhjncA0-IBxNDEBqLm3jIGLrr6gk_FKYOGMmFc1FAkigm34PQ5VsRF2z4w5w4T2sRyAUHLJTjgMidmuwIP5QQGgIaysFCH4BSA_BEdw8PikGCvxY1TZXWodn37_0jzNRcbMMd1OJCcFaxhqC9lC6Q6jENGLfNXppyfe1pXVW1M47IeNoxGv_cAH9qTTGUkllc6til7XgBa5nQNS0eJWfs5KX5etak4M1VubqmTMmdY8lLTyjnlq6JkzdFyNyHw1QVF8KK2T2kSbhB-h9YyjyEuBpPz0s4UyOk86Rs81xeFqn38Gki2TsnEAe29QeurCExumJxuUgO3Dr_T_fXrdrA9BNr89LDHgC_AibhPoMQrFDARBYkGOOWJKQkgw70a-eR33JhRR0pNz-fz48V35kaK9ONQAxn6iST12k9Bb7-clzNtnUu0PHFokXvFCehD2Vrw2jZwZ0FZ9CgMmGa79oPRZWG7OTuH2WWlqotZuHLZm4iC8hEqFlLo2vBoZTOd_ceblwjSyYr7K15yJUOxwsL71vuFCwN4gFlcryav1VSmh04HV08PwEyHkLKOS92ykOkzpGkKK2yip0pp6EwQ8aozYj0AFTJXWUPhT2qcuA1Qov1_YcKPEs6v3noE5TF9lfTx7H2u3LJ5fMiY4bhjmkkvV6eU8uEiIC6-VTHNsK6ccrGJCvIGVehJY3C7KjxDpO92CkH3gYKca2bdDRIZqf8RFHmG30LZrqY9NW_px3vbWVUhJlEBNm2c3B1xlA4EPb8IR0H73Uc-j_mBqeZ6fPzmoGJhv4CLduc4rNSSv3bbiehTHk32_O6VRBZwRkiaXERkpKWdZC6nAvmRbouC6jwv8o3jM6W8bJp8xHsZPxLlnA0GvqoCntP03oll5tDQousc7WwuqAEGClubdYl9vCh3II9GYutWeSFb2cymTyl36Q2g8lUJNFjc9vtEKLV0ChVqLljTTtNZ8l7z50vcmLjeprB1lSlKg3F4tc_rLMmHKxbIge3vLA-aVBeZf_nZwPEt_QUwbyPhlcgYBgMvo_BeRNO4gECRjVw8mg0XMGgrQfUildMLAzyu5ksv9kICOjI2WiF3IUQlH3s5O2x2QmMk9jNnFD5_gsvOU-yNlkFJBAxvqcc6OfE8MW4iLkcffNsRCL33tJq1RPSG-VoaeEbp6a99aSTMu1TTG4--6Kg4B_dUaRgRvZfyNdhkm5tOuqFxS6n4FmCGCTAEngaZ-CDuioBIXG8zlRmNNl0EGP2v-08s11z3bOCyDKZzmJGuJPMe9QdIE4hbliGT3A5agbG5Y_DYCLFD7cXtLbdcrWFuHukQToREJjAYll5pGtzlEr1tlyvyXQAVEfZy1sAo1HY947Gj7B5ruqkwQPEGZy-1_FtXaWN_1Zj5lcP3ocK5rPe6gNMdLH2T5gEDDXBaMzkHG3JMj6y4wQnqwn6TwAl7zSJ1ZZGAnqlqWWKURue6VGdY3cU6ulV9By-9CPFKvRzz4dpyAPTc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677b149758ff18-02524143','','','2025-01-05 23:24:23','2025-01-05 23:24:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41915',0,'cd-form-entry','',0),(41916,0,'2025-01-06 02:19:39','2025-01-06 02:19:39','{\"firstname\":\"suzyo\",\"lastname\":\"nyirenda\",\"email\":\"nyirenda.suzyo@yahoo.com\",\"contactnumber\":\"07435903940\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA-Oi7BhA1EiwA2rIu2-iYZ9hUNBQm7IEvUBSZWo0Zs2GsGIa8bEDX09ZSO83lP992oT649RoCYcEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6GDcr6FASUg_DAL9sJVs2_ZZP3UI6OnzTHf9QXqiAU4nn4ZtupYUviVFhNS4r_KIv3l42_ZZ-HZN52rEfne3bOLmadyo039YzxphGawbMLeKxN0CwrrRECOq3aH2AKT4_PkptWOvQV9yP2GYI6cpVx9eMULcs9B8T27113q5svqTlYUrsUKZaD6FrBCpPZoIhWJzUot7dyJicInS8mmuEFUCeh4KNXlWkrToxsbrrw4chB7fap_fv-xEHcrZZUEeOLAGlAHSQvdvOxwBegA-Iip_d4LTPTPTSKBxAsc-VlvbFYV8jyIx2QTw4IHOkBuih8ratSd3sMNWvQTBujkEjrYxR2Pttc3obuDXyIA8_XlEkwM5g-S-O8O6SliSEBKHcekUo4NbbQW50HtzCS1ijqZNwxOGW8KrCoZEUkdzGYR7cWNrUcxO_R5w4fYItaoOI2SMf-GObohMDbfc-zu_Tdvw5I8dcAYSGxCEG4rUXn2mUqWZCeaESYnTxdYVws5-GHjkNC1YRHIgODIivFLgcyyokcZSchFZHPZqPK0IvDyPXByXdmPJW022lswJtaiwAB-eL2HnCDnmgOpFcYE8XAaB76ozPsOvkg5vqRjkmD87DR3scYrW9XpkCLuoVNqM3qxQ6COKbs-n-46q-iFJng891PDON8zLc6033GDMGZsWGlyHzqxZP5feO1RaypSeb6n1KIDs-IWbEN05iwB4LCWws20Itj3_nsFSmR87RGMTjyKe5dhqbU4kbPlifBMg17Z_LMIAhubQ6gwmLoTTtc02fjOxq6XadaMM4L_BfsCB4Lkub8hmUPGSc6CqU_AWZN3DagTWGFwRr9IJC1NPOxBIdAAbrs8n27wFaTVS12Rhp4Ygl7sG_CVyaJKFQbjMDZ_oazZjl2kHjIKPDPaDi8veIY0hBPSwOZ7YLBhZrql5vu43eweKRr973ecjoGODqKI2hFLd695_7Agy4fTbYdRjw38dSS1D5qCggEJ5z-p-Yi9tl9Yb2zyq4EB6vro6rq_KdxJoXpLN6iVHsym-dq2YzvWFdLSCJufu0TnFW6_Dkx2WFO9xHu0MkEzGOYhBy6kQX2FFkfMw8bkix2e_OfGTqamjbVW81LXXlxNaee02ITcVkqGBGzQbu6QFVgp8xO3ZMjDztszuZfr3J-jm8yS5gPsJ3IDmP9Fwevjz72nesZkN8tAAA4yTIk4jZEbmntM15-BpSg_VmLIuwsVkulFjut-27s8CkASrcRoA0_o59sLgU4wwAr7d4hp0PUd6BjnOVPuCNBPBDaTx4sTNgIULmyNgu_8i1IeoHHL10HRvNJRQ6n_Jnu93g-uYieGtrD_YdkDgYxxodcpUS0cpAFcSK7Ww7LGgaOyjXw20lwgh2-q1mkR7K2IflHrqtTTCEjeodikOOFX72H8WVJl4gomEun0FORE8Xhk5gUO88RQvun5JxFh_cydwt0ICwoMAJoXZICgt5mlDEHrVhd4qGgRytCRttGx-cQwIoqQH8PRnUUtBQ6odM_j_Jfogx-2r9-kDjxSBHcLf883CcNtJGNJN86wUViG7ptsGxWXyqLM06uRi7h9Dpt3DNTmSfF_tVWAPC3nKWhAm45coKRi43RYkZ68Ctl38_cQS5F9YlWAJg9ST5sfqqswybGP0gW0gP0Fhw47h6uuccjeZ6fTLeKoItN8OCrPZSdgksYUMsML9VPAZSvZuDDAUGtjeRpZzdalYVHW-u8S2oYGXHJxRFevB6MrSdBXJPNXLNj8BmdqdGtCeFIA8vMIyXmQp_xfr5ja2kemj8eds-Qi9xyioJmy9wtPF63Wnxvr5ecAg7djqgti7vt4MtgDBmO_TS6foEXFkKrlSmq4jYQyIj9qIIuB-IhUyyhrZqkrIa0JdIGQv50D5nrAUI-_qpeLz6IHWKjX3AIxeBfsmG8rgor4ivvrY5I38SA7HJ_Np_7l594-F1fUpk2L_f5ZXLbr4JmCxJL89bnJ8cOMdNBbgJbUn_WSoJdLA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677b3daba372c6-86196697','','','2025-01-06 02:19:39','2025-01-06 02:19:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41916',0,'cd-form-entry','',0),(41917,0,'2025-01-06 13:28:20','2025-01-06 13:28:20','{\"firstname\":\"Martyn\",\"lastname\":\"Chandler\",\"email\":\"msc2316@gmail.com\",\"contactnumber\":\"07972856927\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAm-67BhBlEiwAEVftNvPKpKGHvntVABzX3C_61qK2DZJMTgH3IUvSvVvrtqpykcppv6eQXBoCdC0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4Wsjn6sm9Yu6o9jJvZTl4s_Ia_VyYXvqI7HhhE82dNPwuwZUDGe_7X6MLCR7wu6bDP2Hc1ke4Fox-9a2iF1JT71Yz6AVoqBcRdlH-sHTl16K7n970ebkJ8jvxUTx-CMIWUifii-7vvKIveUZjrXVNSqg4MY9ZpK2yg32tnqGcjaMInzwC6KpNsZTDOaTk24K-CYI7rH33VNK5nBbamfJ4KCCIflTIKuZbFwnT6ZF0ZhjISu-TiPKE6ejrj5AtUAPkRleU7nLqDIITp3u-trDmBjCH9nefZEPTcF6GY2Kg17R6xKrHZkRLAKvbApJgBiG16VE2yBbyA2jNazCuRbChnI6fH9wfXJulJh008XZ5NgPVVJVOm6tgJhxz8zQvDPdYZXvqs7O6VKq67O24Mx91_rV-cTx-bN52tYE7PbdR9OD5qmE-ce5Imku7aXKWeyD6pN7LvoiHuaulxBCVtx158r09-b9KvgWcP_5b2ubmfVExJnvP7dgRX2yEjg1xqBYowcMb_JLTgR6FFcyBuVDjM3Jcb8vNgzz_t2mvt_cJyL0njP_Mrzj3VYvR2hNxa8xue8QljWKHwR993d6Z0yeiOSrsa6RbBFeFRGTVfB7WXQgw-6NNOKshOYYUE0c4VUYQLJnocZRY1OQtTQ-YX13RMnSxqfjvO1EIHlN34IRxZCgKVvWQqHHZFpWmOSl18gQs9bREHecX6gaOeEjXYWXlPnctkyz13KYX6miBmYM8VIhMIb4866kiWRYJ9pIRsNJ-7SARQRuuxOU92hnKsEX7ZuuhlHoB1IKG_-3w1kXU516U6uYbaFU9PrcAU20VQSMOEMNAkfvW3zMo50rkrv2VZ3chYNmOMUP1e-JWBF16kLcU8x4hlQAT45nzME8Nrykta4WkKbsoZ9JW9STpCSmikqJ8ZmRZjoEqQ48Itw063VlzIq1ZmnBxUFxb2_wfOC_7taA_EDOUc7EgUapO-zA_E8nRtmnVlz8JoFelaTa6536TgwpnE7pVL5cRytgb3nrV9NqRdlMC2aVBWo5Wdv_RIYaUL7FerdiXXpZeJ3iGT593hCk-ENDb59ZfZrN8ODDifTnHKDncmafaFES7O0iPOTnT673TgbaCi_9ioF-443WwCUjKH1RtOZEOsV5iGdtN1ZcU5BKzVzX9KygH0N4cRkmu-9qvQaeMNesTR3pCU2NWwrkFWHX6pb7rg0bgrZ0zr2BrwsDvhu_Dn9R2TUCRlo5U7p6eoLGK8CZ8GQwsih0IPWp48ajKf-Z3BLa9349d0wt6NGj-X5Zo4G36zKJNWd0Qmzhvvf4MDAyCX2JIQbH1D3ZbtgLYgAEKcxhrlykyxbSpdL1afny4Bj3rXEubpvzq3C2sJxg2RvkQ8kjOw1pNGXuuN0IU2MEsBdedmZ0Q-HsYeubnA5w5WyXaqlVemm9lxceROkhnrCVy3BR70ho2y1HSKsp5IeknpUqwHHcxlQSPvVKRH8Orsz4IvaZKnf-35Y7M3YNLsL8giJZ_HAvam2FYZYYKWHno-F2-sZlVuUPJrBAM1At0NXWNn_ufNgITcX6kT8tYsgod8A93I-V9M1e0lruTzAmuoVKuyHHfzWTzfoKFVG6R-L5Pw47PE4PTgq0HF3aW4DBLfF0Zu5dpdY98q-sWS2jq2GCxVJnB2chisYT3MLMR31n7bvh2u05O76_9zDmeu-OdkWMSZAN0rCBeIIcwtyyRSPNoin6rNTuiCyGmn63R3AhB400jPVWzDZVnsjKlWyjEk9xNOOCveHzzxqFL1akbi-TDGp1yVQMt9H-1eNAWDvGKUSFeiZ5lOUGi4jVRE-Om5tDN0d1o28TAmsJtMOu4zIi12B5JRBAG59vKe0PDU6kphaweK1pVCk1h7paoCWmvYNvXCL5wZsEFNlG9oB-aRxkWZPuQ8J9MsVolKTg8LGX9wDJiQ3vfpmg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677bda6911a517-16821465','','','2025-01-06 13:28:20','2025-01-06 13:28:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41917',0,'cd-form-entry','',0),(41918,0,'2025-01-06 17:56:55','2025-01-06 17:56:55','{\"firstname\":\"MIchelle\",\"lastname\":\"Champagne\",\"email\":\"michellemassochampagne@gmail.com\",\"contactnumber\":\"514-2721287\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7vdT_9Vl2-YAaL8dhZxjX_2vL-XMzVY296bXBcGVOjiDHBbLPfflE1kLyCJVkHSNopZHiSkKENikXWl-9NnmMNxG-FyFDJ-KctZt8IelzVwkssfkthCekW5aU1-yCx8ooqF53GnijdHtHW2-aoRRZDmZIpQ7omovnEL_QamiKtrNE7MbVKljpX_oIwg02XD1k85ycOTx70rLFm-VjSj0g3NVdSLNLiJoBs6OmujzgPtF01XCQsE5Ra12M87Y5E3mptax9tARs5VGY0n3Pd7UPiveJksJOMuIazDuvbZwbAvsQD60iXufRDEIAf6nz6RzjaVdlhm42rVRf_6aOJZCPYYNCgxtst91kxIffePHICbUkcsGjQJ5bOJCnLfNpoShDfhgKPEORZhV2RiOX31M-CcCKmo8M93cWbA7-CC_0gbvGEEXN0qF28A0t0OcASGjgl2Rvwod3eTMzOgtcbhKbHWG0P-GwrQK9gU23L-NuFJY-HE2E4rxokSsdawIz5dvpUOs_FcP6aRyMoff6BkcMDETh4NP3nWwgRz9H7-dYPWEw-r9lypTMv8ZOLzJ-tmGwdGSfiPckAUFnn0TPP-2p78eBunjRkogxKPN_yEbRkRYkrzKbxl1ZDdpmAFFkuc-Z_TXDJxBj1LpeQDAtmiTobqcb4l7IcFU2fOs0ehfrlV0ZaYE84aPo8SFBroo___KE9KVbus2moO_KETcnnJHma1ADxGR4wljdFkApn2-4tvXHu_arncU_xJd2DpRqfAnmQYVeLBObnToA6JZ6gjA5EVGwMugrm1n-H2XTvodrFdVpjkubjedIHD4GkLYp__tCqn6sky96fgI-bhViu5oA-C7lC12Gw8qb5iqwxzsnXd_OxoSztWKhkZt3Nrfre2GslSImlRlRyrDBK1cGHntueY924QaGpI9Z5l4h_f_-cfqHaiiFqEy6jg4i3v4VM4dHVD2us3_6GJL5HCtnzBF8_u_gjqjO19yaQUArlLdErWPe8LUDFcT3jGMLSQIU-Qe0wnUOpAA01GUoDzRfl6eCmO7jIFOu6Z-7N-4ClJ7dALsEiPIFizavzrd-mQY8GFX5qTodaCMRCM29xBcBHC_nBULW4pNIRTjXn43idYc25dUiXopUIPIvKy5gpCYZZUd3GVzxQ-7SFAD8pIeWlcAklHfuUux3Ei_HghEenHrcshdMLQYofYPJ1VqZQrXVbMztB1NXrXWKrkrj6kxtiBIAPNS_dWhRmMwJvRdlTwI3ZQX6_6EGUk0HU5wjz05TOTs7rTeGzGfAEqFLCXtg5rfv5IMYXkYmBI1RElQf-C9n0xotgJ5j8SpQUbqSlTwsavayCyE58o5KiXuGn5ccICgVEB4rq-sHyIG27vM_SEakkEjfqVd1AHfGZloPPD1U_Kfj3kXJw8C0bChfXYWX3vJuuQJsIUGI3VRk_tdaK28sXwxTd5VTZZyVZjqR1Rmi05WKRGMaGi43qwuuAj0owlvxfIrAliQJFDBYbQpPneVYIPgEz6-P1NRF8MaNRkKs396wSfHK_S2o4Bp4HQm-iwe5lIef0FZdAvDWjlXDRxdt8kG69FL6otH8dxj-SyyHA6BFlbT6wp3TvPxGmHZZb2HjQvO_SSnO-71fL4DMfdphjSFIGsMTIxHL-VECmKlaYXMrT6-6yxUCRFjr6zFQtvLIqzBpmqqUStOoP_t2kBJ5HhMVwdbgS6WIBxmbQDzuhM-9l72-mNwTeZI6lXNj_cWNCfGShxz47ZMhsvUMQPHs2yPYQQil3qpeEMTJMDN2nlF4I1Wm-r6KIVx_4J4m05UcBH01r_xHTMIKPv29h8cCXf6QukbfFb0mpoxsqKAZB2HZjb651uvLnnzqDtP1cYqVfKAIlVztPY0WT3j_1yjmXrKN-j23gjaPmrnKV-WZ75sGeRoH0YG9zSblunJKrQnT2OtFiqLxFWqAsDp32H7PJDF08kWRMzZRPxB75jN8osET5JXYV\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677c19374d0f03-60361315','','','2025-01-06 17:56:55','2025-01-06 17:56:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41918',0,'cd-form-entry','',0),(41919,0,'2025-01-06 19:08:09','2025-01-06 19:08:09','{\"firstname\":\"Aaron\",\"lastname\":\"Pashley\",\"email\":\"pashley87@icloud.com\",\"contactnumber\":\"07908732508\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vMjJyBesZLGhrHuWCY9k8Uv&amp;gclid=EAIaIQobChMImZGvuOThigMVH4lQBh0HUgDzEAAYAiAAEgLuofD_BwE\",\"recaptcha_token\":\"03AFcWeA7QIMm5gK2xNiZne8OGaCIutIwQQX7MpM1H_IbJdd0RBYW5F3hkEIhalSdghXdg_yhX-y8Bi_UX_7riJlxRwGyDzjFXgB-B0qi2QofEVYnOJcdyje9pkZCIVjqlbdvAuHa1jijtDcmMNpomSp4TVWWXc8i2y0j4nfqo7PWqTcN-fliDVKWQWfpceSFXJXcNA00Uqsr0eRf-x7qDXreZHEMloQzRDXCypJFfvbhmKdyfnBeIkos1oaYURQ_dujdpeKtDv2-64SeX4jUvFqtYU1LLXMvToiTpUcb0RlxXyd-iDHBQ_pPJQowSJN_CW-gAVDhyQFAGbaIxCEW0GBOhyeS7nfNpI3WrvFfw4fWxajnFc4F4i-3LPwxq9iUs5MD-SPLMJJOSq-wsnOcfhDj8B7bJ0X56n1pbPDIyldYNsNxlCzKTXz9TWG2rMCyqurQcjKAH-wH_pyOnMk5KnfcSaCaz28-PN2HfTr5dlRVMOOOH5SsjdbmepCHZbMq7AD-g31gIWoCM1dZapEhOTN_YwPmMVn22RGodM7M0j6yoS4kfD1RWRmAoE68KC0vLI4XttgjPF714TuNuUSDGoECNul_R8vGHRUJtzB3AGP80zaAX58HVR9xwGZtbFtu2eAHZUJr44ceX0eb_zgC8GnZ0zFyURlMuKI74TUeyc0hQs7RLehsyCBw8ekbo32tORvUo3aaelolPtLl50C4SQofQOGdwvEHnPMeRV8GwxuY1gTdlOs7su7GpLklKhwh_27QPw5IFCUTdE212wUjASRblHwPKIr94so3ymy38X68uhpGG_RVxt6qQivl0uwNmtT2HcMeKlY9Zd23NF2LFrV44gtgk33ucHaEIbnUdMQRP21PM9OQVvRfZObw7UVu4rO_bvNW1srG9Z9NiSmORxqoZkN8yIqK4-b8YkqF6eRAo1_DiBFp6zL1Gj5IaIGmkhdolZbraUHfMzX5ldDw_YvH1Trqo7grIz31k02HQjRdydTkcqgOOrGORr9Jz4GWWTHJopRK0tL-QHtqV33fbcNMPro733sDz-oiC7-5Yzjtj0HB-geJqZcln5Y5HVFpB-b1DZ07ZE1pN9LWJPKOOVGA0E8V6RERM_km_euCj2DuOGKWe0Q2L8jAyfsfillGTJSNM7lSddfrxRTQ3lOa-c6Pe2xEA2mdsy0iHly-0AyaFifwSJJIQur2IOrdN88ALEbKCsiDBtEEzLlTrWKMs0P-3Ztect_3KUiiMG5sV_OzN_a8mwtHa0-9dw-IfAgpP5feOvLt4ZYvLUGYvue9_es6aNTTFhVnITSt0yNoOHvoqVp5HUwCnrKyQLKtfV3gtDNCZ5R7QNBUU_2vcmtCvuoD-4YvvAsd_RLUlpwZkkSElGhYUCItwJMkip643_nqwsXMXXGfoSRNjdV9vh-cLUfJ5w1_Sc453VuTDPo4cd80lJS2-jVxlZS14uo-cWNwWuSIIQ8RzASUtX4cutGQ9x_mmryIL9obYB6H6d-32YXvcGT6Jh0p_pnj6sokoOqLoyUwhfcoHPBe4j8PLHrFGfFQmGWIl1TfTF3IgBH2XAtMGQDz9RFTSDlgGwHKifCwTD70CBSbYlFL-B4GAvrB0Q-8nfVx88g5FUoT7wzs7yMpb-1FU5smQ0E-YRn_qbIOM6dg6K-tvfnUAq5rNIK9Tk2lFuBt2SIzbgQujvfRiAxlRbp03Yiqqj36lC7hAZm5Vzy5pfQjth9AYWeuzIjQZLpE2XxquXcnrhbqXUW-HOD0cZhfUQCor1tpnLmIVdfjtUEnFemS8atha-801kPGUSSt4NNBZnU6u_O3l02MNmejPlh_a6-PV9jkj9L2mh9OfjZGUIkVthLpACWzgDBO9CX7q6aznkNUcMfJoSQ9MYKwFkmuvCm1VWNKMkWLR86TCGXJZ94bqoh5edTi2j7LSm4GPe-GC76lDiYBrkKH7klOxBJVQyBeEREo\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677c2a0e0a00f5-68953647','','','2025-01-06 19:08:09','2025-01-06 19:08:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41919',0,'cd-form-entry','',0),(41920,0,'2025-01-06 19:09:11','2025-01-06 19:09:11','{\"email\":\"pashley87@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"BN1 3PD\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vMjJyBesZLGhrHuWCY9k8Uv&amp;gclid=EAIaIQobChMImZGvuOThigMVH4lQBh0HUgDzEAAYAiAAEgLuofD_BwE\",\"recaptcha_token\":\"03AFcWeA6TsLkNpAxItpxNymOkSyFdRxsez2uXXwPrjaWw1xM4o9UPHdKwqnv8FSWBdoPTyLG8N7viYa-iziOHCkkr2LKT5CqRoZhC0e04MDb10Q-CEMYG6tUpWbaIONKCVXIk0l2O1f1csSzflISghJKmm98HgjQVpKAusBaiX4YkB_PZRAt-shn8xu7HexlU-dSol8ugzVLV2SMkDoZ6dZOen3YVNEpDpdGCYgCQ3W_mwATmLvmNJeMN6Le7j6rRctX9VzNFVmMQIMG5rVtUI6AU03A0ek5Z5xSvVOC9BLwBu6ez6LDTGwTWK3Z1TUivPva-EJ6e5d_Oxin8l21eZLiZPb0QziUNCVI0BUEu3-MpWnShda3sSbrEeTNOVZ9DW1pJ4D8G-pmrmbCxDznsc0OEyo1TtXSHF6SeylbTHVXVyGz3FjWmc1QbmNAGaCDaBG_jqOE02WKB_m4IKVBL1n21LSyGZ7aATw_hVStfAePQofjFP1BCrqxj0khPF-S9xqH47bNddDtEz3bs3BtZQKivc4Ay5IZomFulFI_j4Uro-kSK7xL12tZxaMyYK_bhayl25NRdiSCjFwpTuRSGSAJnjK_WgQs5th6VPPvir3NTyC7Ay9QlExBDJ9ejBu4HfXd4AEr-h24cCsbVs4faraXyG9RHwyIMK7IYEceKTewcJkowpYEGSfmGejAJhci52sdBL8KG3oRUR65wrILCFgHWGj0IdegIdF1vtrt5l2xYvGWbLupERv9xAHTCsNTosNjx7Ztppl2URNrTVWHTNjo6el9R_I1q6WPPz6bFb65SOAfKbjxYBn01-bttrd5nevifNljjXnoifI-sw03RFoReUmAkaZh7T3k8TLuwYvpMk1Jhl-Va3OElh4hHyDTRaxTqQHabaDMDygLoMRBA2jQ0sdfkj2OcOuRJmmExZfjwEmznk0AAaTN2v7WkI0e7P3BpPKXyvyaF4viy9wmo5gHndxCnus4qppmaOk6mifGnj6XVVmf_RrP1XQD44M8YRp3SuZEI6QWwt7HJjFFnvcbhiweS3D9MwxP_cl51SMsnWiJ5nQ2IoGdDlsF_olC5HbteuVuMV0Ue07T5voJeHtDUZIIfzlgInIh8cRZp7Vh20UQHA4jMb3d3EJyfELf1yomINgmNFZE8KtMP-G3kGNIEnMZR8BYLBg_Fk3W4rqxg4lnnWnki6j5hinZnfqPYTP0TEhJSjrjl8pUIR20pjWYDF0TxVtmgUAcdM9vm-xJNS2SR80vGLGb2LSXNdEX1b2nF_igGJjFucbJGM9M2qC1a85Npczwq6R2eJA2-oGWOfNMuRRete3tEuB1E0U9im28k_VmAu-wUu1jmplnzbZIMIAOWP2dp2Y3atGfJHidK5JudvanvFzEzPPJtNKl9eEWq4wB8K6RpbcRAgY1THwbtVkDf0LQN-2EwT_V7oLPYq8DtUnRSQdNlawKh72ML5o6u4gzRWa7hWMKs0rm1aHw6mmESDFDZ6G6GS-ywChf0GHgxcJsJccFFLYw6qjB_4DnfVAsYR4pyT2V-WFy7j1roou-wiu76io-q9dkem5maO8qMCg_YPuRlRqxLHqtcLIcGps8OPBkKC4bdvgx4sXnOMmhzycGavQDCX7mSTHZfIHexWWQIsn_7UODjPeIkdhbvJ9LkxkAgw3EM9MIe6cE_-WmG_61CAq654i1PRFrokiFKK7dTrbUGITFjDu3MIyoYcoaa120gR9Bdod7ODqQ2l-_SRb4T8j_9haLN5kfQw-BURxC_KCHbFx6HphodbjfXSM43jdz3MdXCrW_44RARAo20ur5S2KbSyaL36qolEj6bOyEuPscKhKBev7SRAVR2sVwu2QeYMWmPwVcLVUXIru6-YAtMkwgux8IFHtHguKQ92hCjCQAie77Pm5Vg_y2IsYGdW0yN4yuSIE_CneKg0KT70kGzep4fbeEEJdeJKyefz1X5ebc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677c2a4203da35-28568966','','','2025-01-06 19:09:11','2025-01-06 19:09:11','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41920',0,'cd-form-entry','',0),(41921,0,'2025-01-06 19:11:35','2025-01-06 19:11:35','{\"firstname\":\"Aaron\",\"lastname\":\"Pashley\",\"email\":\"pashley87@icloud.com\",\"contactnumber\":\"07908732508\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vMjJyBesZLGhrHuWCY9k8Uv&amp;gclid=EAIaIQobChMImZGvuOThigMVH4lQBh0HUgDzEAAYAiAAEgLuofD_BwE\",\"recaptcha_token\":\"03AFcWeA63ZAE2PRBZXFlj7_-SiTm5jFRLIePlpGfyEhzuCLgYxMldWienERqEftpuPBk8tOAPEpDae8G5NuAWdoGvqhbAoHNnfZl0XaZEJ_x_dES4gra7lvWrlks3HB_FYV5e9IaZBgablilmPqpeCKDO86yfVcQR34GqbiPUp76G2MryZ2bqR1Fm_TqqOcjPiG6sl5VEx4c7rw6JMPOjt5or2nB4-edWpDuQwVAKjT_S1R2HUM6UaYNZFNDvgDwMY9WYOm7EMDDhdGio0kuNxlxOYdac01-_BryeZb5Ud61FmAC47u6yhzeinciDCB8g-aVpmx_rU8rIlltg-lrf0mX0eG5ittkdWaY6mgx-ocdcuhxVmHnqhdbgZt0IxC5UXb4J40Wfz4yT92xbqPxx6FS1XexuXuDuPyXFXRybrcQsOcRI3BbaR1uqCcdP0yrsRcOMFujPaiVPn9Wze-2aWJLZjNGO_l6-raQBm8PwIs2IWMvI9mZmAznm6pLYREz3rTUHZhuqDDXfEeeJbP7Ub7PdgnDcoGzneHw9jPkLYGTB2sPlSUBC582YoW1Am9EC8VLF6yIMc4-EIrLKVJYgm4HUC1BOoE6UpNc8baucIMmlBEabohAArRMwiixmG85gn8rzU9bS3HZ1Z5x3M0Ur4T8gf3bK4ahGu4qOq2wOIbws3547Ra2yC166UVYnrzBeTJxjMDSvjyXU-DSXUn1eHtJrjfzZfge-0CXQx2O37DuuQY4LQIm1dApYUqSNoPcMfVtI7G4etvrt2HnO_-d4_O_6y7auUyeAm8AYC6WSMpu1pd1wNBvX7zobMoLXC7zu-XuOp-qS0W6SnaoOlN9TaGPhuERLWAyUiUFhztQxJkCpB_WahcvReNZD_CG3ABl0EIBr9EA6kQaSO_DnRTqeD3ONaqkmLDhlMEyE7M6JzDEUWbYAtSzMfNnNmA5zUabbPxby3WQO7sWTQ-dyltu4r2jlW1LKRzDUG2kY6X5dKwaRmFz7Ws8uKOOasz1TCVrfcBMylBvuPhoOfNfAIj0R2xOimmrs3xSXsxzdinTo3mq0Ua_gUzYXq_zl5UCVOZh1lpuOzm2X9EmyNZcPwyl1aRSJ2xTS0EhnB2WyIvajY5aCcBseHBz9Lw-ExQv0qA-XgwlS5zergP5nugnjExRqC_hWPVrp3MFA6Zvt5oizlyWY-UNjk-0sX3Ly5PxPHfVyczUo1qheBxy7LEaTifzNeyrL-Gi2ujZPUa0uTcMfgyxk9EW0dtHxmi5bUfbNSrzvBFXeZv614SbB2-r4IZCPaA8gGD2YmM00RIMdeeybaWX551qXSFki58Do1TM4odRvsSbvqbKTA4gMJJaxVf913YnoWKx0uRmVAmMEAWB6a0xmtRtyW4cpOs7qcc83o2enDg0A9ydvjVyR3aB-PeyVZAAEVbmQlEZWrsRFfK73rWsUSU6t62Wi4xv6u9F2rbW4-_vq0NGG_B32HC-6TdQOzJvKGzI9c-ylkXYk1yrbjbzxMiw0gAfHXBP0zNN89V2EiR-DwXizhtFN_9Yz_R-iYXRPii_hjL4gAXn2M4LxudOIhm2r8yBdAq4cazsK3LXm4ouDhD_4TPZg616GJW6ZAi8wjUN7vMUv60wTlc-XnmFoxnUNSnfleRI9rOFn_z2uU2pmOEX1Bnkub3mawxrRWHQVoG3ROGx5NBqbgF5NSwYz8bCEB3hLz3Gxw1Cbo2sOEDYKuXm10EKzi0f1B8QpOqqOUpyGEbWWirta8GfW4tR2FGkK9sk-H_vWTXXNT94he1XsJY69Cujs--Tg42-SJ_rtqPQNvuppIo_wbEnb-KcRgQv--ddj2GfvFg9c_yhw4HN2uzhf2fRCZ46Mgd23QMkQU_yur7_d0mR-acf0cL-fulIDd6wGz4jBC6aRjS9jKYDLulnV0wyOVu4plBCxLtS-rHHsZjrd2uMs78_nGMzCSaimn4VlIJiyJCMJCqXzd2gXmkzb8Nyv\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677c2acdbc6b76-37032088','','','2025-01-06 19:11:35','2025-01-06 19:11:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41921',0,'cd-form-entry','',0),(41922,0,'2025-01-07 04:15:25','2025-01-07 04:15:25','{\"firstname\":\"Mukessh\",\"lastname\":\"palival\",\"email\":\"mukeshpalival77@gmail.com\",\"contactnumber\":\"919820381398\",\"pageid\":\"39254\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5Wf0-KkIgBZRz3ozfHIgQclzXXMQsT1r0YhbBGL-Enc0lBUYsX28d_RGkGeu2ziXKDVEY6Nb8e0PNkfDc6mAqP1QFAIiSrg2_dxk3CJYA-VecnKrC177msDK9OWIpdQ99xjD_oiFD4Pm9JiSEs67x4ssClv83ehdIQuqyi4LQx1utfmM2Xi2tLDrtzM3ewLTeGDpWXoyn3DOCEuAdlRI7TjuzLZsBLtzrTWDBRztv4uvYkzCV5KbEfcKCRvkxpTs9Bg16OVQyscgnfzeicB30SnL1MLAjIi-TZbol4zeUwQ2-fOHwQEZ0ksB6iK8GT6tF_1_SywAE9g6Xl9bFCwqm6qMqHx0ArcG8Oy-N05NhnPZUskYDPqZzcxq1g39EapxerSvzHR0-MY7kAp6SoYvAf5pnvMTS18h2CiragGhdzvJuqk93M0v8IYIQBz4PEoqtzlGUp5oVZkVYOnGHytkyMDliqXH4Ma6V03vWkBokjhC_QZFsOljjNI5Uro40HjMn_ja5RiOs8CaJpqy2QEkKjByzO-wYQddGXTSaSHkWFAEVXW-n0LMJGPg_kjVGGSFXND97eai7T3Zs7fRKwgAgDwzCLNtAkARWnWXg88i-jah7540x-EVhCwtfbeQcrfV0EPHxoizNxH1UqRfFzSxI1HUWWC9UU8hMSKuBN-UWvG9Kw099UUjQeDMPNyi2vfYg3ACYfK7pT9XeUYKKOVToq4DhVx9WSvdWIepiYNai4NoCpD2Qwe9nNBuxyiNkwNiijHvAAKSnzneifyl5PjgMPkjmPtDYhCycUH9cT44hrQuF4oxRYqjosqhvCgiAu_gWGiWM2DplG_mSKhQbFgZ4edJNWPpE7Gp3ULkaDeo6Vn0BATJxb74IgHq7yqxUNUG5FEQcS3rPk_pRW6X6bXAMur3RyiU2vm9CJHDKE7mvCb0fcTUVQ8NpS2QNjNKakgXG-hkxKY4SXfh9IctUROQZqU1WLy4gHoqvZZgggmAuwdcYNvyBSCpfOgl9F3Y5tIVW3dEcXXcyeS1iQmALVFISAswJxJ2M91GyTdUQPxCa6wuSE28Q3YXsb5zt6Vr0jmiv_FP1uC_NyoxYi7glQa0oQh4nH2eGjK3RwB1_rjgNN9pJhRmwGMZ4HXDS0wz2I5TUcDuvkPjlWHcTyvRQUyX4a-nvNghJpA_7yAM-TCmDIXO3CqQF6A-ueAtdjqVxpbBY60Y4y1xw5hxpKEr56IayiYBMkDrAnzusoK_trWn_nDSjsY2X2ImXLQXcQkmMmavbf_nczKGBWGWymfIFRfbfbtNDtPVnDWy0o1QKOKXS7-aNDW-eSGgj6p3hMMCKkGELPekGvqSo4VAjgwPRZxo2GrelmpWqLBxsL2uIDkO4-H7hqCW9tuJozq33Jwi9OvK-1zDQk44pt-4AdAHTge6XNjgqJ3IIKwHDpyACRrfAvxEsqvczZGby0hlXpxbeHX8PL8l-xnfnyu4Q5biUWCyKdODFGohwX4Y9jVqVqhpP664VUyd9LcriLAveaRlmi6h_Qcx6-Y6FXMH2gjH4cPs6F10fNZADmBLfrf1TCLyRLyEkEIjshagXy5Kd7LsTdxfTawews55KejafD_5oZs8EmnS2oP5Yw4-oQT4NmiXS9gYcIe0ZstuDmh2IZ2xfK8NhHNh3qEAhmzrAk-vSv-4fm2pFO7LlZJX99IKJy63x64hK_qGbzpt8VJydr5DijaPfxctH1DKycEESK_-X0_BJql11I8kTxzGBD8-zMCJQ_3dIArKGtzW7mF4h3xCFzvrVn98zuR5YHpxIo0viFj5r9YSnVO_D2v0mNxqQBqKVkd5c87mu6fxMMz0-3_ekAjkI-JeeCIZWl25kthw1NcPulshGLd8CpFC0U7gjB1poe6Kot6J5o6jRO_lImal3ubAZ7TdgGpr-bo54vcTTB1hTZBkpbI9sItUP4YYKVs66Eh49tD1ZqRiyIaK1gNskPjasw7fQNpj0y27il5Tlu_MT1PctTHE03aAAoyi1de1nZFAWSmCnfIjtsS2Zco_-rlfAN_-7aDznmuqqYeWNr7usebHc1Xg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677caa4a816f32-83109826','','','2025-01-07 04:15:25','2025-01-07 04:15:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41922',0,'cd-form-entry','',0),(41923,0,'2025-01-07 08:44:53','2025-01-07 08:44:53','{\"firstname\":\"Joanna\",\"lastname\":\"Makin\",\"email\":\"joannamakin13@hotmail.com\",\"contactnumber\":\"07850551221\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tizkDnN6Q2YcB5gOsimwvRS&amp;gclid=Cj0KCQiAvvO7BhC-ARIsAGFyToUMHh72733BO60yoTBFazoV3Qgs2x0TDb1pJg6aGmT7ika63QtuBSgaArChEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7ZpwjvH7WfZMkNK9GvGgryUjNFqEJZ_7hTs5Tb6n3PQKdj5ZDNPl3YoOoF-VpfA-WeaLoqA2epzrWSPuKfsFqAepj5dEwmU2xvVjPE384z4RznQfq9bBzktua2JJMYvf9MP8Hdegz-o-qsp1nizV-t5UE2XZ5oR9lXyKgvJ4bWJYM82SsxoKaKnL2ZdWut7MOCYyD39JYhwBLS_KcK8kXm-nXW-irPjMBwLsFnas8X3xC6ztvK3I4UqGdyQqW_RVJ3jR50yiQTfmapIATKQYNiha5SQ1VnfROw1IOfPpCSqrTB4UXyMIizsPG9WAPO511oMHjA1kKx5HnshYUpms76p4zqPpOB9dHG3Cl1JOK4hfFlc953N85cZequyLY9YAN5kqU5pQ_N4rQyX2gg1PmOI-vjz-n3a7VHWINopq0Z3fJBWwmN9l9y1MPwj6SxlnVlli0k1I2z68uks9Ev7RyTukWOY-NsdN3_U9BXgn8QyPAMtK_AjyksTPKtlLZ53oiH_O8ZKjA1udhtJhqL-FePAPdkO5Q_cL8EBJTufh2yuiJFmwSvO-NwggQK4YNRcj3nwNiXnhhIG2n8nLKA5YrneZD3YHkC2h_WWaCjCe8cEbKDU80ee9JsT9-NMAajAKavBDg7Tpf_Z5TQtx6tKAzTBGT3zybuqvU7hkn5BpVDaE-f1WUMsyoE1fJNnzCZhHK4xkFjKud9l4ce2365JoqAx4jPc74l226HVcCUyMclf-_3J-ULcPYJVx4mDzTponCzZVYSYygw2wQRWTP4z7rdnuw5Wvxpc8alKC4U43HD2lhx2p7RdzlSud_HDvxzGlZ6yuGcz1rl8OhT0ooihKIfFJ_inMwtjd_oGk2fLc94-PORDzfuVaZNkW85inXzVXunmp5ehZLOrfOtPRb3F4PuvRsg8FADbm2Uqs4_1_YL6coVbfSxyd0tB7Oz8IALiSIISTkumcCjYJDlsHevUDcTRjY5itM5tchEkRtYCtJpAuZdQUuvuEuybq9tLapHBmF9kBvY_jB4LqiLV_O1ZnXoGjl9oO8Zbk7EsebEevLiOFxBEvBtktm0r2c4_zn06ByN9_6BRAeh_xucAHwOMJMNOVAoFEQDwDMILoxQuBHVBS6BHZNsKi5ctCNuJe41tek6Z4pPaDeMVOfXIP-ktiIQmA4H1fz0UH-Q7vmk8p0-C_Euy0114vYfCbGh6STOj8tuhQRhH5sZfqH-qooRAbuxv8jScwGta4-4rPP9ggEbq7w6PLmtpWmGK-2ZGRA6a-1iJB-9Jxtvwaa6sJF7GCZLU4-COyeMgI4RPZNgOb99HscqZki6b0x26ahrPJOPVwp75rBNBtI_1rbkGVQMGX1qDZwF88qzaihvQgoej_tNfXJYCDx9ui1ZOP-wCHBIUmANEx_8ZEDQJVrqHAmb_tHyjDSCdyOBmDvPUjq-1-vw7RvovGVOHIDkpHvYFZ3FCuvjlKtxUiunvHhGmfRLC-0-AicCGNsjzhQE0HPc3MWxfYkv2s7B7fFW3ov7QclxrRpb1iqLL5lRpDjUNtthxyioU4vK6Nk32FEGElPHzg5pYX2XKvxuunyjZWKxkIWbV8QJIr58FmEkXzNGUZjboXzfbZ2Vwx3DWWJeF3qis4gO-LRUEH14jFwfoeO7blYhr-oTf7fONZbyJx-93extNZGMIVNRSniWI-qT5ZzFuJO3eXg04q1HZMfvvmmLgLeRwYccknI2UvaRnEHWdQH3q2dCNEB4JhIHzDDnlrz9xvElbvdRqHDdGyoOet1Ikf4TcxvCbJreRqZoRToFEg3EgjeSOjHXKL52DEYgjYd1H_wa30dBYOIIgKM9x8ac7Ykll0WYzFs1Fn5nV_bdSAh6pRA-pBzByZL6AAEldMEijg_4liYE8a7OvaXnDHVWJFQYcR4PX5e2FRgkWteYjAn7M0Ici8FFBlTOSXTIGP2bdViwLkTCWpzJ_jsF8T6QGjqPwNWTbDNmQf142k07w1aWHJ1BGz4T38IWTuBa6xNg8Gm5LHs28TMJbWhqkPfpyMLtg2fbiI2XPmYw9-nm44JL6JYns9hPdT5_OcGn2X16Wn7WhdI-qZ_7u9OeKaupGhMVuikBdAdwkEzCBglrILMd2vpgRHq3aMEzeauFNEUVbXKL3vU3ZpMJsjNQqsQIWEiW0xD8lP8G7mmcnwr67KaBgiSNGwgCsyguTV9Fc9fIq0uBSGmVe7zbQoMdJQitBus6JeG6BSFvB_SYhVGZV1P0qCoRIUdXzg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677ce975df6fc8-58382884','','','2025-01-07 08:44:53','2025-01-07 08:44:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41923',0,'cd-form-entry','',0),(41924,0,'2025-01-07 08:45:57','2025-01-07 08:45:57','{\"email\":\"joannamakin13@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"1\",\"currentpostcode\":\"OL10 1FP\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tizkDnN6Q2YcB5gOsimwvRS&amp;gclid=Cj0KCQiAvvO7BhC-ARIsAGFyToUMHh72733BO60yoTBFazoV3Qgs2x0TDb1pJg6aGmT7ika63QtuBSgaArChEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4rStTQlWgh8AlprRwjjZ9c3KDjIfkRn3TqKsSEMK4UZU8jvrPWzfK8Y7uKlCw3v0hZPII5QGAYfgVG3UcHsXMIy6d_WQdeT1hTenuN-Ja2YIArTPhwvvpWj2tJdIpdXsrTFUYBHat8jzGM-ynI0YoiCq5t5KxousF8YhpyU_umUQjr1-85M2Ti7zWLzvWjWxve73JM9-bKY91r8JVZuFKLUyHpxR3akozhYiBYY6zmeYVHp9MnXIPj4iwR1afdWqDihqegyh4GkcJTE40UAHTAyywLoe4izSAm5tC2aFxi1sBheDWFp5y0ZXvjroPAi4mlzNhsC7ktI0Shf4Hm4JJpr16wjtyjn5O85AzE5YrgjlTqN3WtqYZl1eA2LK7SbIV63cCALlJwz1uRCfeOxO2AzAWa1nVc4PZPq5L7C40WGQyyk0ligPxII-Inq9EMq6S_CiEfpAZc_bx_hkZZwZIMiDB6uPuycKqtjBSjiJkkHP2zFLK4-Rj1PFEUJWgq4wSKSYt0FYF50YugSvEPd3Je5-NxDD7XwurG8uMoVLqpZciMdYKaeIJfjE-wWKaNv9m88XnwlE-EfpuSthg_Qere0IjT790BLUQkEl6GzFojnz4BmEc9FZD_HwnnFVgrg4ZkQ0GYWb13Z5da0oAPelkO2yUVTJFncVh3ULBxVo-8wPBoqRSPwhcwrB7VVwj8Hpy2D8UEQevG8nVRdECsYLGLUS7q1FMeQ-WHsvtzYHqCd4pfk2DqsqFqnKDhbiQ91lk3Z6xBRYGjVVLSQdZwyxtB13kxXQ5wIe9t2RWiPvxsgpi9CrJqa0Xf7Ttx27QqMS58zKjZty6E_TZFuRHac1syJ7NOx4213eIi1hY-U8fBCkhHg5NpJ-IHt48tGTZg2M2DAjp2p4vKQWhU_sb8kCkxVTtDSM-Uh6lji9-nlKQZBIgkdd9GPghkkOuElpb5MbvKIdSeUyuofmC6wKUuassmvNFxyZbXehez_er7-lLeEpxwqgS3miTOYhHlr0q51vEEjAf41oWqW8EBCJ06mydhoiSQUkN3fgX7qwkKHFx5LPD6XoQTPCNPFnDTRxCtKyE9aWKSNNzslaORG_1U3ppE-LaLizqAXXVi3eet0hpQZI6mxKn-sUJPJnFJJEFhOSb2F4dH0_BJv9W-LIKw65G9UA_tPDTWnTFzIb0I2519SHIirkQjAKtLGa_RgjxAuL-G6Cgrwnujk9Eu8clOfKRYuo-yMP-xDW-iPDnkt0RgRg5wh4rG8dlZWEwUiyi-LLB0Z3x9alKCjhdYvvYiUJ1RkTBFFm3lCqCKNVzfZLsVAk4JFtXkajMVukzOmGSMmz7mj0rkJmMy9iF_1dkbBasyURVEne_hRfo61rUKaGUYuXCJV0gTG4wN1YuFxMqSRn8skk9I-46CzMhNOxIGXo3iE3pXsfz1jGd679VkRKZjWJtd9THPlbxCp-fDzQROC2xWsQMUXy6gwiG0hzOYgLZLgetOPGD0irqxPTDTQajERCqJ65A1qkuwoPdy2gb1jjn0I3lJIQKgJmX_XQ4UYI4TF9PqZ2g3wsXGnkDog2OF6F09w_pRyHPLcot2lK7sAwkOEX1aNZQYGB9l7eZJvlX41jtb_pe7EhmWbKiBx36Fv03ifWj7nILsglQkM5nIk_Jq6YGcjoS69Vh6EEzpZE8Ak2wdoWKskKdm6QbIpLuANDM_tt7stNZTP-NB1e6YtKwUWHnhHUSUEI8-n_PkVG1w9BBQ4PBmdPSNDijYvrzANhtu76Nc-iPeQUMNs1YYh_V_KQi78ukHOEpZpCppz3kWVTa3HbviciiO2QEUHgnEcKS52IieyGuEzGjxRXLUWAaNR31XM6UJk3jvwkp2P4Edpslrj3mocRbeQDcP0ydKBytW4EDO3CWgGzbnu-et6qGVPaQ_U0fPgBkO-eJdzAXJ_fgXMzh_9awzUlRqhQJmIIZw-ykJLn2YPGb1Kh2244LL40D-PTpzjdxsXt7aPtQVjawHISv3GqeL7jcfHPfdRb17bdiVdhAgWcRN8ycc3QWgSvtj1wVQe3TLOupLQ0LlUS0Y6m824DTnKTd_UpyuqAbNDg8JyFYtbcjghvELBQbQGi2dRcgLUL0CfcGdT6LdSmlC0x-hCABhEjC5_U0cy_1RBO36bQccFSq_ivP8nq48uJdQ-vGEupBbV8KrnNfGFXzDSsMl-MnNUGQABHjSdCiA-21Yodufp5XiRdLewLf33Zl855U_sYhMdckNT0G143_iGTfsJBQXqw38Us6qwH__VQI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677ce9a6332036-16861045','','','2025-01-07 08:45:57','2025-01-07 08:45:57','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41924',0,'cd-form-entry','',0),(41925,0,'2025-01-07 10:05:33','2025-01-07 10:05:33','{\"firstname\":\"Sadie\",\"lastname\":\"Carroll\",\"email\":\"sadie.carroll@gmail.com\",\"contactnumber\":\"07912178754\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tizkDnN6Q2YcB5gOsimwvRS&amp;gclid=Cj0KCQiAvvO7BhC-ARIsAGFyToWP_Ca7OwaeWhbbYsFIfmQ_WJOKgIYhW3hcPVPV6UgrKa0qCj3sLaQaAu_BEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6AmJTVdbmRTNk3nsTHCDlE9u2ZnQmTsL-UMxpqXx2jQqGDpJ4bV_XC7Tw7HCbi3l5matFnY3XcWuWK7N3ppCW9U0OHxIhVgoRHqqhCdGrGsvAMaslpk-EtmkHo8VC1-QhkqnLVO2lEcWAgz23BVVtF3-JIu5ktOyzqe6sVw2fVg64bY3tWCq7GCA6W6zIqq51S5656MgyE9qoqauRgIgUxeWTUvzN5KeW6UIhmrohxvwB88nAsxDUwpfeLAfzWfQak8wHNXau4gc1e_87WSrk7GiTpinnCOR9R2sWRUWjtOpkHnfQohXfWAZsNpcIZ1u5wi3kQzg9ZvKojrWo9opfddXLqyVYMnwqZMIYVLH9myaxp11pHj89RszlsapvYldrWmKMvyp1Z0aUxCwJJHHzjPOikZGlokZooYKZLyLNLGUtcHpiOXdXENmOgVLBto53LGLtq3Q7GSSKFTEClXNWlNdK6GP9dvcGNFMQOmVvdklb6ZAFGQyg8r77r13xjTCzyCg3hJLml6ysXHuWZHJljZPU07bYoMGrfA-RyG6p1EJHWJJ7YNanCp2fWCrTdNuQiBP3eWUAwWfY-BJ27kH-rXo-PZGf-XHWXAFwwJHecEN5F7xCyxZvVj5p-i0S6thMCjOkcEBYROzhKAFI_WH3S_o74EHQ4CPObRW5BOJCcodrQLugmja6WjYuJjM6C3HiP47ATmhfIMSmQ3SgLFtl2lrfftvVtqzpILmZgwFma3R56oWbL2Yr2BZMp3Cz6wPVS0chLMJ664UK771SEoG5lrWFZgyErkqtn_cEYWzt2O-RXBdmoAK5irf_bQM17T3H3keEXYsB9jfW1KmQ6Fds542B36eRmx0NZ3fhosGTsWYZczc3MqZDTT_mkkZZystlNGYlfTUsHYyeJMmdPlPKeOagzJ421OM_KGinG0ePJkX1z66TwODdD9FVmvFfRmFU7d1H02AweKBJN9r_y1_rneRKMPBadPq72hpJOLtLyEA-x6pRtS3zoTu3V2873JCC2WA9aEyVJg1y5mHJn0kDqQ9WwXKdlf-7MzblLnmLjG7wUM8T5wNGNpWzu8ODQ4iomtljidfLv8kEIcosK9fUPeaHXJSNzb1i55PIM9WV5969FciH46XWS7XqtvjKwaYE6tHRbf1dMPm2BK5sESFNT1xUtWewn9RPINf-XPbkpKt_w34NR56kz_do8pm5YhJ-QznAG6V3C5HdY-ftJJKNilVvY8aps5K8GdqmOUyY9U6gNY47D_NWacpQVvrnjfQX7JtF1vQ7TUfd1tTpV0vpaHmn5KFp7Vz5KzwsxbjXyAu7jgG2asZbcEfCbzvW_H1GIPnZEJklX9k1sHmmWdSTc3oyBI5fGDqbUYcc7ed0XSDW6O53EhqVK_stqrYE0nfZeoCUKu7R-RfK682DLm4pvJCpMsLz7zPvAAKSv3vET0tdCRj6U7CHT7vHZKvO0BB7S0XJ0KKAeWRctFTXs6tu9JkX_KTMzIBqgekHO-T5tC4Oqznu0Mg6PYLFMhuFq1a9REh-m91x_qNEW3RDhFenYCiwevIQ7qZ63ycngoKSVLwJjXEu4UwX6xp5stw4kpwoaqEAjRobgZpqShjzCXWUxMqSUvIsJkpn4giMJPuiicJtV66V9tLTpH9mmjFhkRAsNb0EgSrag40HZEAj_4BBeeH4n0TSkBDlmU5fCwgbIsCpLYV9RacKopNajxbxxjjVp0gjSCx9E7iitYRS5cX5ajtKxLh7neNG0Q7nhRYzrXcCBb0EXnqapEbJqte-D0Z6Z1g7yJHR08nXG4wyGJ5SUOPLiIRaJ3PpaUKe9PPyp5EquFAq7-GjOuFTWOdtiwj93UCYQ-5vFMHz0T5Ds1o4fXiszEwnUtb0lPIahIJcBIZhjyqFzpvAVN0NJyOKW_7LVqTPSW0mdjCdgJbFEmW0U59eCFsqS2oVOnPxz_1noRalEGhcMoteFeTFuJYjxH9C8DVKT-W9Xv72vVFZSIQ7IamLXcBtfnrlUo_VRFi2o0fhf6hSt2y4IggfghwjvvD-XXApJBAFN6LbA94Pc59LSD4Spzw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677cfc5a9b1e58-41040048','','','2025-01-07 10:05:33','2025-01-07 10:05:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41925',0,'cd-form-entry','',0),(41926,0,'2025-01-07 12:02:10','2025-01-07 12:02:10','{\"firstname\":\"Michael\",\"lastname\":\"Hollingbery\",\"email\":\"ewsidrivingschool@gmail.com\",\"contactnumber\":\"07581350159\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAvvO7BhC-ARIsAGFyToVn9CFEm6cTegjtmQIqHeFOwOlRzFD2-DrLe5Bq4UR5jC1EW166rhYaAi_4EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4HLNcKShmax5BOp1UBwjbkmoRqRS5KaU1UdAzafsrYqipwM1HH2mo32-qx43qQqHxNTHoLcP5t8aKeTATx0VhdlSXSZk2-1PUrucPYP1yyfua8LgcDJz0zszs1FRiDBrKHtDZcF0nPqiGF2QfzffxgFBBFD3jLlOJ3PCJjKEUkCekiUG98suTnIrY2dOBhX38Z7Hq95Qa3davQFWgj8GUlM7hHWpWj2LB1SYXTiazgMhFJvBFqPvwn7jTOh5hTp5jS67m1TWzFWHIDXgiDGH53w0Z3wVD9v58sln0yrNXIOmZ861TFytGa1q13ZTL6J3L7jbtWpFFfEACEhkehrEcHaJTNC0_Lsj6LKBeDVT4Vr7SzZU7Ynd74G7-9gXkE01J2-X7BwttCtybeEHn7bO8HmLt6j1OhLwZ4Kt7fTG5W0bBpjb9K9VWEJNPUBjaZy_WTrkpg3n84IhKZ2fbS7dXoRoBhgoGyv0zrAEqRyWdDYHlfP25XCrkTOM2N3t0OI5pOe0cpRXcGQEUu_b_94J5JAHcs0L9oMppkqgFuwQUNNet9fQ6Ap6WfXgZGtnB4yn22sDpgQAHZIQcsV5zvBSgc9XNWBMZZrMHTguSUHLXAWtQKi1hVKYuxTAqk5Xd6uNEAYdeYm3fCmioQamToLP5ynifzjw3ByGIOD8vg0c3kq7IVeW_AzKD0uo3IssYTR8dmniU07MdSuHF6-um2iNNtzBMCic7fmtXV6xgVgHBCHZ_TkiTVodwxTaFLr0aZ28oB09dD-VXSqiCBk-H3jpdlb24Kz6NpgVgz4j3hYDj_FRKfpdZl6xxRayZfO1WawzJQbN6YqYiwJ-kvQyNA9w_iOfRbJXywgD-88z8WvANbXkJI5oIGvUclpbsK9LGBKEXcRSlM3jLK-ijK3axGXTVXVUaYH4BeYbwqm2W2DBQNQ2sSj0DD6wpHgGf9gx4HBbDQXfV_P_YTwTkQqiygkdOTkKWy2nFzJmk_jjJ3iKB3_FJnPwPwKEB8pm0xtIUM82KEouZIEtb0NCnFR130yQkw8NC6OUCbik0XKxSKMohIcLkd_uNRq_lQk0E7Cl7Aq39oexSZSnukRHLIykJKbyYPAePTM52Lu6zdGxDAhKyKsjP1MZZcs0UXRLB3iUSbuDCepaZ4ZFZwie_CzW4tKpvLc9GZ8kr1JNu_tGJ6OlkcEtw80jXN-WsjYbo0rUcwIhHDIpaiNPHgdElaIm4eTybeQ-jN5dhhZS6ku4veloYrJvUDTn5YuVeZGJ4NuB3zGfdss_biuHI7yiVmSbctqTE9bJ3F56wKdeQL8zrwA4W59L1VToBCysuz1ZgoDrgY3UC8e6x14eYID8F-BwEkjxEc1YX_8UNcvKOXU8dcpF2CY19iOd_DxXJoIlFcdqY2GP8yhruI3dhFYAxVx66QOZtLou3nznvLCT-lfHTYwMGbX2UgVMYfQo7tGn-M8yg3yS0E_2DhCGlFwzOihJtiFl23mBbvoACXJSiXw17I8KcDxAUJHGRxNRRiNBKuHF0R84dJKQH7IFStwJBnfMzJ91CK87melJTR1FEfbU95Pck44eMGEtb9AA4vOIOaFS5V6gsS-dBg3luaqAjxvXbXtECWd5js-Nz1u_VGW9L286By_9pVQ_refwHohmBf2x_gJD1z9O7Pizf1s3oB5u9zfu4msSIAEwslrhuZueY5ZTjDZaohSYtWC8oxpMaryDleD0AV6yjcb_QwnyrU-ZJuoEnc3X9qCGRduNZLeZD0rHKauDbexgFPCja-pfdkiv2D43uo6_FWpTYvMXpuobqFFk19SIlL1BONoA3qSdyDxaFJNZ2CHIKxXPGMKGunE7sCyw54GGmEUZAWM8b_FTkHgUiXrag2ibD6JVJxUhlJIRVhlIxgzcJKFjVKfYo3PFzfvYr666yVE6Ao8-3k84Lm8EeO09_dJ8QdrJQACna1pGAUbncNXgk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677d17af49ca20-66566019','','','2025-01-07 12:02:10','2025-01-07 12:02:10','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41926',0,'cd-form-entry','',0),(41927,0,'2025-01-07 17:21:18','2025-01-07 17:21:18','{\"firstname\":\"Jason\",\"lastname\":\"Stack\",\"email\":\"jason_stack21@hotmail.com\",\"contactnumber\":\"07930844480\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tizkDnN6Q2YcB5gOsimwvRS\",\"recaptcha_token\":\"03AFcWeA6_iksjcXcrbfclKrWOuK3AF1Lu6Q6igHOLCihj7TUP5D_6nu3RGQPgJYrKAIdTT3VoVzNgahLD5agkj2tfMFqJB3LQlwZBka6GBNfd8yEF01CYDUf2RrMTKgC_55qjN16Ag62G538pjE8Y3vwuGkXfJuAZSAaj7O6HuBE2jQt2vchAXnu-9buCkUr48KS0r-fI6rM02QzpS92qMwLErd3fea7z_ao16Zdg7_aY6h9ymtp4zvGDtrmcNJdgvJ4vgAncJpjOMN0KbovKbTYIRrlFYPUnpt8oFW0wSf-n-cLe3GVV4sogHteBtUt2TrnY3feAWS9aoYTresqYJeuEwLbThPU6XBooEDV08xencQ3n9pU6Kn0azf9t3bcyaFMHNtHySrH8KU0u6Kd8NmfTzl37f-b7jNYLZozwdNz5n0VWoBKm9myIwB-_VK4_0_wEcgwRh1sWAeUMiV5BNP7Xf0nquCwHV2J1Zp-sZT3xdbwr6GPkfnXNxnUTxyIzrITBLLp1G5GBX-ADoxySXzMnyaxxIWUzkGOTGmQ5-FICB8kvD7BhhXcIrTL1333pVQaIQi3LkUeGX82ZRiKC2ENaD0urs-PmnK_xYMkhksGq9ZG2DVjFo2Wejc939Egh6qwk5ZfW7yR8o7UQN3g7OAatTpqGeubUyN-PED4zxTgnCtrMk7dXa3JpAfZW2TC1ZyLNbNJq6YgiICEuNzb88bFLpkefRKp0A4NMiKDdtbiHdV-uSnjbi0-sgprCwttR-ZC60GIEd9nRXNUdFJDtZpmgHlReW1rED100v_MKTfcKrmTpDuZaUHOD7s4m4vNLYC5qwll1euxbzonCRJ4vcd-pVJbHfWcn6EP5gnTR1CQyXEqdTnJMLv692TXo394gbRguGp8KL0TI6XSUbNOX93su546EZBerWqKUjicBGrZx0ai6fq2Il_EN-tcQDum6x1Kgy3VQznjPawPG-msHabvvWVJT82rsyD9-sygqbip_BjwL47ibQfRnshmBdvi94zcttlKt6E9JYSNr10nkEeS9N05El2HQB5GzUiv45XVBvVnTDK30HDywxNY9eIK8-cz3uyN6Z7Cp6BUh9C8s9IalKYAQZdiMP4Tx3Uxy8ze2nUAHkdGJJvfXml3Jh3tzcDuza1Nr2NrINnGjtW31J0hBWf985cOjddmnY83SJlFoYkwW1e8oRIQ3QAf4ECGi2HNSumW6QPtWAIuhIRY_C8aRIbzAEeeJr9qjmMVLtJIszLD5GdxUGgVCPyf4nA665WQhkByEOo7FM-WtMl1IGjWwr3bazOAKe-tixYGFfnklZ68Kf8IqlOEKsR1p2W2qGrBNDy8_-w5j1Y92TklrdfgK-3nQkYpN43NBTyY6ZytZNSVG6MO6l1QvVhs_B14VGOi27QdvLSYoI1ApwEGl0mPAbVzdGtpZ2DlgsWaAM7tcjktXsHiQ-P7a1XhC3pN0BeRua1MWhGAYRQEydhiA4Ngc1mJm7wsT5mrGl4yJXYiJ2skLlqxkFHHR2Q8b_lbjB1MJiDMknIychHpsu-U0DrS5HlwV_6_H1XedtHQjmDlH0oF003O4ih6qpK6Tc3NFeKnu9epWC5ukUmpqYp4njDpFg9I62IuCSLJ0Dn3IF_UG46qs85vytbExtNrSWqJUOGN0wwbfSAcY9K9z6nj-PJcACCZJG0pXWuy6cbODOf4cFpF3QJvc1mJO3rzNy4lkSobDdnrPf-7_DZGwH55ajfauSH6jbUTvWl7GxteYE7yrKU-s9TCQ1ibLwaVKGc5iENOYv0JI8T1bQDhQZ8IDrhB_XyCl65OpJzOVX-48_jRRfBE_ebEIU2KzY6sPl54yZASZa8VGU52ehyMgdRMBZYfSMsgtT-dNYFFz3hNnbgD0DDs6d9sv05vEZ6QhFTiZOym6Zx1HBMba_d-etdH8xNexccwk3WvqjCcJW4URrHQ-HSWawe7ko6mRxpHowcBef1mwOQscrC8YtZWlGIQt0tU00AubM2b3p7k7we-mTks56-rXHXSZhZky6T3KMzOHJV7egPt5g59SyjNgzas0_oXtf5GwXzty4sZkFfOdtwhuXVTEiYMtgsAtbsCQzn5tnTa4J946aAldq7huprL_AVGcAXV6PZNEX2oUfSTldcm-06E9-6wIa7E7wX5Lcu8-shAatEJjKDEYQnpAuC7aTlDtvFRaRVLu_QkFOgMNF22bhLRRJYDOYh3HUSB_5A5rCcdVJsKaUJfxP-VuKBswJ5em6iA5EuHtYw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677d6280ee4d64-13922191','','','2025-01-07 17:21:18','2025-01-07 17:21:18','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41927',0,'cd-form-entry','',0),(41928,0,'2025-01-07 17:22:11','2025-01-07 17:22:11','{\"email\":\"jason_stack21@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"N20 0NA\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tizkDnN6Q2YcB5gOsimwvRS\",\"recaptcha_token\":\"03AFcWeA7HZtTnUwnikKJgkVtoygyNYpnZpuHZMWhtJ-Vt0OJMJmKZFwK5CAQ39nwFH7YlID95Q_GTdlXsAi3cONDGLqDpfmlA6c_KwHw5HW2X7X6hrtQT104FO1ENhzp6jTEHSLiX2Sa-mO-L9azyrI-jBESqphIYS1ssuvWAPeENDS3dkdrRXANbtJVGDmrTq6bpZkSdxhxrPPkasI_OjkrzV2TtuZOV8jJIzJi9iuKeIC5eKM1JAj8OscKTswRPVPN4heOULELBEeCNudSuoeARKhLfT4-hc7Scv0Oiu3QpjUk5DbDQctGqKe_zNqOiaDOt9EgMOXvUMH1artbUhB16k9J5zLF8U9vWweVcfeVhZNMSg3Gb_1wyosrfZ-z6_Bgq9usbmR0IMRrYJZQBZ2w9ip7X3HrvS4cIq4byTtegf-ynkAoc3oLBvhpkNiqgq27hLqpFJDTf5piQofSi22Yu0EGDtIUBZXRI3xcpqPN9YdWGHqQBzYBMP-weA3OTYlh_6bN8Uypx8yJgVS-OrKSP5oqU1NlTSlsH-s7KTbOfSaUXTTuCKSHXTwDH02MAdmuK4yuImRqHn2cwtj0JdZED7ykYox2T0frXiU-VdREAwf-3AXPrsQlAPgttJnW3L9JoTpO1nAKnSm3p6cjZXGkx6uyc12LG2WcVeqY_BQCS-FjC0p9w4wNHC33FbXWWQLCmKRC-8OS8oiwvclVwk7ZHA-7_8XgF8MXOn2QYBRHlnS_PWX6T-OeUzvI9OOA0Ccf6lcjryndAgoWa5t6FDPRGMhimQiz51dR9GH10KG1Qm88DCd3tVOLLxOXLwKr2RlDtCS-XYKid1ODVdRgzADMifc0VyiuNbAx04cu9F1OjEmYAIKyGFvA9UwWyeHZgXU8FOSdaKoYx8dO0Jey9aOxowEN8K-lt0YMe9usRXf0UYDOGSJ34pacGVfLYSxSfVsdfWUHVW3QChSdndYp0hBGhIlxEN99Rx4kKrO7wzVnF8dBfmOjIdzK4rJq_KtgY8ajQletqPdtAJd84DFrCtMWeCC5uNFn7s9EFeE_YmzJW9hhFRWbrzbUdv7_DtuaY4IWmzCfHPFlFEOhUV7LMKAYAu303jg4yvu485Q5dRgX_1LHz6oxafjA0k6AScS_kNMLri_1RoQooOQ3C-EAHeLdftikj22TTVsraB7kE89qxSEiD58R9u5YZWhHKmvgoMDJhgYbU8apFsc9UYeUY3cRu2MtiAYhL7DlOmhTqSArqDsm-Kp2syQpztxQiylWF8pisVoxZJEIyw2aAOUoqxvot-CO4mmx9f7CsNG4cynyFI1LDUx3LV6BqxgNqdbS2Ej1TFK8J1ewyF3JP8OkfLdl27T7cGU5iJh3ZRdp4BUF7WrN09L9EpikpRjPkHcgHxZTsso9PYPPeTeUO_AWMDhkNe7-Ppz6xqzVNBpN6YZX9MDS0B87OZ71gtuTJczqOFB1HAdg-kjmcwbHLx5Q_t3mwyprI2tEde8Sff3UiIJ51lyU0tWlB51fLrqsCpx9ihoDZZrvzGw3hdVLmQVbLeCQysO_cdmWy3HtLZg7FFSiFvwJ-gjc9wfvDMM1Ds8-IG6E94lTp_LITolUHxU4fxsnKDAPz1PqGLsedKTdrRlf8R3BniMZ6fkahUQi0gQmFxis1aRvPHv76zM8YHkcewVzA6r0BJj5R52RvH7XHKvo4Tf7CgVXvdJal45RRq0ylIR7W1IQ9ctJIbwPWdgkZmYbFO8yctA0ClbhWnAdYe8b47h47HJGCDppIF1b1p6-rlaWx1Me2eLJI0DUgBeF9x6wvC3GNQcrOL4o-nvjs8moZ94TvG2kxSs7A_1hkoTRj1Pd7yLKrY2pQbJ2pJa6SsOWw24Ei0MEHMhcq_y2jvftGLAPk8dEdYFzXYPzXFxzC6vFiguV7RZ9KknwDO1hPaNGjEsWmGTHTIT88X97MCToiV5wjNPIK_n3WxoTQUe0FKarQTm6ttbIjx2FdgL9ByC_AiVVG2hsMbIvptJcdGR9u6vZu_vVmvSsMsQy2F6BL0MQZVjSX4G4DGUGB_yyYjTrlZX-2KjSvLKkBdl-BFYNDSqhMekOIi0LN1RpmWytBfDUTw-Xtb9hyl7FVO51wl8qClltItuuB1Ujz-GUsFuda41cMWhM_z_bkSNEqG9HAB__Gn-Tqg-GqENMHyNqmKG_sWhHQDSv92DGR2cyYv_LL3GfL7MC3S8o5nUYNI5BxRxsqM4BdgPfra9hdGXjH000wX39BLjezYg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677d62aa2b3823-61286076','','','2025-01-07 17:22:11','2025-01-07 17:22:11','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41928',0,'cd-form-entry','',0),(41929,0,'2025-01-07 23:29:07','2025-01-07 23:29:07','{\"firstname\":\"Guo\",\"lastname\":\"Malcolm\",\"email\":\"yesiam1988@gmail.com\",\"contactnumber\":\"008618941156672\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4ZH9aQ5XQ8p_LbGiQwgWA35KfgC67HuLIwJIm5bS5rY93ebbR45KR-_ISkhtQkCbudopviFdYvRHOX92aKJcM29s3fXX-c9aySR5-x7zRndEk2ptTCdOkP2yGNBp2NV5VjDMhI2XmRsVCvxFHYwXykyvUyRiBPvRNCQXhLCic4DVJByGSuS4AMT_zgc0m8KQTqDSC9kZeYYOCt3m1wyCGUaKEoChUA0JCFQSpFILCGxZgpug0-z-ykW8TTrCx-Ea_TIHoDSPqxcJH4rNNsw3sIyQA44zTFtMX9gWBCcLokVX2-tX0uCiwyrfRfDmauQLGQbDlA6T_P0DA084xtw2w66IeigZ94AJrO4ZV44tmVdpUHweXR15OjKpp45AGNID3iCUjzTPuzQq-Td7Pgrcot1U3GsPbwUN0vTAz0lnm6BJxe11W9r463VxAId-Plvzof0148zfJEkMs7gjUcXXTvRafxTR_Nv311z31zWmPDQN09fcE604kibqYaoBhZ9CCmUFgIw-1G047hWLYjRKW5xOrfuqYnK_0HwNCLoJXm94fWvVIsym3xKMvmYkDc5wniFNXk-LoIOYi-CG0m-qxdJtLzvZ-XP0YuM_gKxMxSKrJRKsiGTeEpVH1MKHIA5SiR0L8TrYZiqM2AEkbDugXfqTl-0qhriKYju-tWvvqsJZyZ4ONIct593ECVuC_7hxlHbOI1xhmh6ZEmVZMjx14EMRKOW48AdZ4nTQ9jGqyhMfqgbcnhjEruzBb8-mlmyN1Y4vNa8L0xqr1SXzBt49TVtzt6VCX-a8uBJYCMbekjX-ZPq1qLmsf_4snzRkPATfbPH2-BN_zfPm9J6w9BBjxZW9UN-Yzq3xOhyKAiNk4xybwrTqa9Q2aDGt38rbWFnOFMu26xce77KV5eVYcHWBlQf3ACmGz2Elh89X2BAKjo7aaVTSbPi2tTXdnZBNMeB61J6EDrgk3FkgaDq2ZsF8NM-aDfM9RMCtd04nKSaHlqGAaQj8UDOkrVmCEhrH5X-lIS9KKVMLqxm7GWRS1xhBN_Cu2NKeNtD6VF7Lte-fpzWFxKRo8bTRoSaFzyR6NhOPdnWWnWQmwPIiXFtTvL7THNMS3-VaY-FXfOJVIDDcxMFtQZsyNE5-2agvbjURoVLCQKAYijmaQeWuQdqZpRZA4f2N7AaRYz5t1Lnb6UOv0tvBS5R9PHsKHuPitvmLZLSRYMtx-YWi9a37rk3UfS9w3IDdRNRjSNEoaxqWdhKpK2HCho1MKE3xVyVrNGP02_IhLPrkLl0w8vMf9NMowPBM3DrlyLcCd2AROVLd5ejDN9wNp873FZWDX-Ar20c8ElT3oAypyUx_x5bgNPbfYj2EuOi9MLcHRvwvSH7XUwtNg_NZvzxtOYqdGLI_fC6XYJlK3cTNxRx2VdhU8aN-W0uL1Q62eNrx6qU-Z0M0L9OgMQKgFccFznECtxFU0wjxf7-eoCu6UfrJZ5hY_6H4joFXhLLCL9PoWOa3mOuG1bYzW1vbMR941sWGQaIhD9wd5yrzaQl9AWJrr-5U9SjJ0a6EThiKacRRQfmCCtuNSEPEjhUgEwAU3m0NVZEuDo2ftXbmxa_SmC5E5EeUQuyvA-e950ThL3ZycbmvsPpQIa0OzWh63_nrnhX5MnuWhNiHX1kJPeJ_OM0qXMOtk7cgiH9ztEsBtsUiJmuiSMnmoIsSpHM8JN871ma0gdeUGiy_gezwm3CPooXP9Xh-Vf3wAofck2ZTD4IatyH4KCiFPrkmNG1Gko83xox1COYF7sSEO5HDaKgqcF1NNxw-qN5uzJ_3g2MDtvxbq0CFkG0NvpVqSfH4Ix6YuRBVzgAaj4mXWcT_GYQ6OioczXa8HeE6RIfJs4ghFYl37oGW826ozlBDYpWnG0rBAAzkFOvpgId9uVED4Dh2uPQOM1s4L-kmad5JvbtgaWIs_6onHjV03YYXIQYxQ1l1b03uBLzfjmzMGFMQyO_-1omP0mveb09JxV2XkTVH9iO8Py2v2iJ5P1EAsbimVTW0IaxQDdi2D6rSXLcDSXkmBdsyoD-H2lFZOHkjM2xPEDp_fybyUJ9qzP3fkZjcBxqNXzGyobdP1I7591Wp4RmFsg3XrWasAz0fnZepiMHsYmxHVtLTGnAqwuzM4s9iRpKBW1mOQBJgKVc-eX0h3rwYfdxODUUwI1kkNJiBeu6wSNXIzDEFMJzsxCokl2d8GaaLk2gjZg6nhwMipS8Dja3QXq83-i86sDnKIncyjBwpoyXAIc5M_-rv7T1jGhg5PqI2PUF43BrA4agthnMafUwmipIKnlYM2hm14zNkdOHiZ1cKYBSvjihqgFqyq6wIo-vjg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677db8a66fa7f6-57021883','','','2025-01-07 23:29:07','2025-01-07 23:29:07','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41929',0,'cd-form-entry','',0),(41930,0,'2025-01-07 23:32:05','2025-01-07 23:32:05','{\"email\":\"yesiam1988@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"116000\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5LVe-MORzWzntDR_hfZ3Rn9etZoB2I3USvGTMBouVwNFat8C25qxmYWjk6NVKEkRLwcjrhu_fRfANpYVmEPSadf_S86BPzeHX3Pst971Xc3ZLVmJcY11VFbw0PNlGBt76R-egLb4d9vzku5Uig_FA0VWwDP6n5x1x67zvfx84z1GRQvScJMq0rtwcLydT_UBglQy0aTO7PZJarWn6HGH6TlYr0brHxjc_jqEz78ZCk8Obm8w0pcq04IeBfeN1wzv9U09vcbbj_ctIFfuuz34SpkANkXNiO0s7ZSfWN-lWCD4azfaBQjbZJr1VAZ67mV62DMX6Okg169r3IgE7pm_usksTiiudWlrnPfYkmMYDxRYAyYrqGrla-lZRn0WxY49HTqvaq3YvV_MgCdNHhEuVCxJYGv2QAieyCoxljUanLGG6VtNNdbmYPI5DbaaiSltUpMO5QQE12HdJ5nKa4Ad9repJbwpcwcdseHbgooZdtHJd7KL1Ddrx_GMizuDzuptCyYSlYbndx9A5PLmVhvSMVUwbE1_isGt_LGwJreNBs0KDrxo5KtCb8yo5uE3jIqu2U7tJu2TNCMqgmEZOAeLE4IvIdKi7gt1Fnu5v7FkcPwK-n4nkVx2v94tG2A1qgDxhEDgUu0UXIVgpBYm_Ql0-jNhi587CAC8J4bdhz6bEGI_zJ509_QqhFVIpBuWB22QCuhziYNDBu-ZI_zl4iHhq1OerTh6KVCiBsGjghIvtYxiPTYHDznmETGgX_BH91pg3pI4VmygErfGdvyOXxPLbQllcXcMRDuPrnPqOWLwXtY4Y9-ZuOvMTwthoHsvoT53p6-DsairX3yzBiy6cldGHdR-V4M01zqSCxEFU1BJYCLWYD9Jcm_cFWEhwZJDjAwsNgePuvWwucQq6Ap4i4_ZPS0BLhghy-yvkmxITsFHqihTtJuZzWYqXMay-PBhm6ULdydl_M8VPE0FW1rO9ECAlqA1rDvLjhJxf0m7ZDKstb_DpxVxps-6SFQaHucVoqGFfYeHAJoZBUQAfD4_fHcztjgLd879UI5GJnOSCOWxBKuHFFmPdlg6IEC15GLCfTKV-tfvfu7XSRe5a6fhPg5pk8JTHnyTEbBKqEW-GxVCfmtt9LvWN9hq0Ti0LryWC4oguD3mKR2DR_JCReiufW02hnxmdZJOew_wuyPROcYyz1OkCoXzY5Jn3nakMgRPbAeVAzB5gcnuAOO9LEQCTishfOuK861at0KEm0VDz6kMh5ex8hEc3L-k9biI9kPPmxDe7Y1hhRYL3y5kyRvGjpikwuNVejNFtuGYg0Oh5hvad_tgk3YMYvIrxLtK28gyi_pxAuXCySBqwNluh5fRy-tDjHzEft0jAEz1d9JyW8Vg9-BOzHwUKGesD_C6uHtPu9tmvIWK7elrWduHo76pgAInj1J5dL-TCBcpivXZPC46MfHjisBg2YF0ZFvwrQDu3JbstUqAJKn1ytWrZel1UH_8vNB8zz9zcOjGCwI0PMcHS5LlaJ_NHtIErsN4a9FNUWzHRtihbOFFCrCirfEAUYWLbwMtg949UnhJqmndxZGVu9q78IV3fIIwRNoVc-xT2DC8I1847Pm7xRfmem17o_AeHA52iiYYf5YWYJLIUxDeEZrTHalFuHZIXqEtrQrRuZmqQsYCoOm5FAJ2pZ6MDJuCJs_zdYI_nfT8Kq1pcJS_tuLn-NB2EQw2phOt4uvqJfBUW4hrfoX9sXWUn6NxowbPGDPjiFtTHtF0Ls_k8G-BXKjNoiPAkpkxTl8pHtH4sf8YxjjVl--uJTPfi6P1NRwuxqPCRSqRLIA7FiUISmI1v5UyWYSBT2axDP35EZkpmuIGEL7_OMEnK2y22Khu1oU_2GyeOiRreNNbGKnjiKRI658m6JWN4J1KupdoDrNPR8PaLYmwL1hlnD5leyhxpJX-3ttYXM7p_XWPwZDc4iWZTGDRorbqBCbntHXmgXfG0Gr94MPH0BpX916dxSHwg3idlVwG-rnWXMVem6nFlGZMfjDr2sXxQ9aqCuDTjikACCIu63Lh4YB12NC0YFXfs9xz5nfiomZTeO1I3Otw-48eqdJ6IsK0jF-ACXtyWab_41wzOsWVz0P1CbEJpr5IghP50NIzb5SZR5LTfYalWIM4jT6ESZ88_qQ1TIA8bSKceyVDf1kGP4xv6_11YMFl57Hk_LRF984XkicEmAe_p4Y_Ov-EW5EaBQsdvP6K6c1XutG_zuTiQaGbdDiHocDQG1peGiFG-XPkHMqqWc07bD0qSRxA9pXM77JJ_r0-RJWzzzmjoABIM-7DUo2xJkdyHiDB8Sifue_k6-_Uzp8O-SHyZX9HmaJQFbREx_GekdgVfeliA6ndF8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677db93eb860d4-18862301','','','2025-01-07 23:32:05','2025-01-07 23:32:05','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41930',0,'cd-form-entry','',0),(41931,0,'2025-01-08 12:08:54','0000-00-00 00:00:00','{\"firstname\":\"Ben\",\"lastname\":\"Stallard\",\"email\":\"benstallard44@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7UcrceqVJG_ssFDz7LxjVuyriGBUm8nm94zWyaKMWVcRAxI2l3Igt4tviCoG-oS-noIIvNPr2pixNVvWr0lQp8fuPYuBU0tcnQ7L2Nx9Sl3R4OMGrjlDZm0eOSnE-opqEbEMXfQ7JjV2lsDm1d_ZqL1doypkwTEe-67a8SGv_7FzxoL4hhfXdQ3KePddsMJ5GrXFta-lpfPfL-S6gwBUu6_7DyR6gU_DjyeBhax1uznP7YpttIFcgeYwMmiD2dmOL_pLHqW8PxEQpGMT2u-qvw1gt6iDjhMwH0-9EAj06a7q1doLWTKOabK5FiQ3xVXm56b7_P-azROpskY2sGTnfygKZFSae1AqZ0ZUS-mL6_4EvJbYsCIPqrPnyHwiB39UokDnIii2TPHfnrcz73cn3CNl7ug9cWRjt5sbVn6Yp68FbG8cN6BfdrEh4yw70-I94ps24a9tqP_X7aMzFpyCS_gLNDcHP91-0ZZaNLAYHjNhOz9b4NN3KNQoLoYqFDpDiFkq7ZdPO0c8rjEXRNhtIeZYGQBXMkZL7KfuJAUVanDNnHxkaN2gHNs4WMQuSoZq9VjZx3f3BEnpHENDg0j-UWrsg3TfTrjWoK0TNxV_JfVq_MSt-K8Ga68FRML86Gwa9MimOmyo5wDlUQCXotv-A5srbaaSRhm_EPwjwP3u5CJzphP5hF6kMu4P6lDUAuZZFW3CsV8BERTieHEfzPhxcHidQoPYnKDMYVxOWULnuYSphzYp92dUu2fELf9ZUdd1MhjDGMWu9Gq10hdxNBffohQa-SXkMRp1IgonPcWZlNRDJLsyQXIytTsY7g5Qx5gi8IaO8nDb_9PzHDDfu4V019oSttJekf9ViDW7SRC7RNn8h-3dHeBOBKNBUjVqzkgk1KS2KGvywSf5KIgkNGEpUjT5fhV6s75s8LsSAMS-0zg99S0ekDsQPbtKlclx7MDUdQA8eLmP5n3l8s50Y81QCjmwp7CCdl4Ppv1mwB9Pps4QhjnMeFuZ1r1KYn8RGMORuf6SStBt5GLu4NBZ7vi7irNb569nX4scTOAnXXCQy5VrGSBs43aPmvr3hcKGPl3aKvtyFG3tmXuSmWV1ATnCak-3LmEBj9rdUdt7K10ejaDsA1HIaX3yj58H_MglxvG5IZB-28a6ci_-SGju2qLdQL_tYHWC4lKQUVi7SyEEPfm9leT6YHpg20bdu4ehp-9KDEpD2KuKKdXpg3hYI5LQY_WjaSyZahrs9fhTbg2759PNaMsN-GhFM1arQqSxHKjrOVZetWMHaAeBwSQ6Ue8DDObicHLRLl6zKRzYB_wyt-O6VVHJPnMYYAe-yJq9UcfiQiKdDtINQrIAkjlvVR4Wx5Jx9mFTyx4ntEL_BQs-MZQXCNe4THB8-yG7QVKjkFFeWDib1SpupTYAS9tA7og5RgiBP4tMo4p8IulzKNts2-xV4CMC3z1xQMrRDb5ob-xRMKkwwfTBd9KUakQLiKT53WR0F7Mz-3Hjc_lsoybtaXKtDSRkdvaNNFgS0Yq967pnP5e3KvVh7oQ3vX1K6wI5DsBMc-q4QQwQlrMhpuvHQnaOEMcIx3DpcV5eyIUa-XgkfiI1dwPrvSnyA2yVfBZFPnvgf-lnacq8RM92blzMid8DdAMN6SCNxc0i_rG1v5DHZL9qlmOCpV2pDEWo5k2QLIccWfbYzxlOzOUUBPFRs_gRBjfyhZdZZiR6TY1EwzxGZlNhEpaGEs9ZpxTDgU-P5IWLXam4Wk-drLZgbrUgLY4M-kEt1JXPc-kXSryWpa-lkhJhcL9QpyjcX64Ep1B_kVZPBIIwjtJROhICMhQd45Rh3TdZvgylPALm_OM7MVrK0imFPwIFyhSh2sPYG1kqUq6BkLnkmuTNfIsgsGbzBHwhdOIJF1zpE_AuidbJTh1JIKDe7rF24awtcNTwWm3qqPe5hTBiNMZlHPJ8pml4IvrwnC-cMK3kb-9th0V_ozg6--cbt2F2HjuyNbYZXnlFBdZgDmP_S1Y6WIiSL82t_a67Z019LVV4wgXJ2b-aI6HXadmz_qGdsd0iTMrx6txIXqgo2p67p0ZMqpJGxoCDAUGiE3_nZ1xGke-YIC9VDr1U7TKs2OyYRyUsUV2HEcH7syg_5zASXRQ47dzvUfB1lIdDt_rhUQSa3b9pz6ifpjymFzNxUCAvryx6ZsrMEdlqoPhmk3MpQPfIPtLNK5-xxApohIhCWy2mnnYmcIRUm6gyWT9c1p8DLV_2woLXPdghy7dQnIGQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-677e6ad6c44ea3-44940712','','','2025-01-08 12:08:54','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41931',0,'cd-form-entry','',0),(41932,0,'2025-01-08 12:09:46','2025-01-08 12:09:46','{\"firstname\":\"marnie\",\"lastname\":\"jones\",\"email\":\"marnibamang@gmail.com\",\"contactnumber\":\"07494774495\",\"pageid\":\"41455\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy/\",\"recaptcha_token\":\"03AFcWeA6Oy2YUSnCZryjqC7zo_c0reiuZjRnhwm57Sb32vX-piRizBSSSBub947SWUaQuCfPk8JGtE-z9zihE5Ev5F_sHlkfy39y7DkZNK-0GKgXwmgJvDC0Va1vMG0sUJtQNWcVLfWrLnFeSBle3xDjwQkz6FEHgCFty0BRRC38cBAypTKZiKZ3mcPs2_1n6uSrHwLW0oea8Tq33LkYW-ZpRD_SD73wZS_V93j5HJjefTcNKy-jiYsFca-zPowYST-MtbB8hkHdfbBoW1aN4Xm6_JKEby_rzoEqZK-tyPuxxoTyvZzDuJO7GUSp7QOAwzxINAWHGy3wdnb_sVLwKl7mmAnK9sQ7ZCeJZqIT2cLcqkY3uBuucGU0juok3WIwYuSLHvhTmFbtJBFX-ABP0_BnQdExf-hvX1z0wYEELLv2QIGKyLWtZGShjh9E4rNZOCWmeyTVFDZOQbVwgdwpcgBUyDGLflMWlxpuk_2jwpfeBt_Otzu2HMEG5yYR0nqucPfuPxdPxtu4VPUcsHjvT2mqfx9HHT5kP5rWP58jHvDtPHDrFBzgx6X3d5bUNJdrbzcBKuS-1T8M9xRhmGlTfnFptglV0B-squd3qMFhdHupcBWuvZNkNllRgben_Z3B0Xx06ecDgmU2zhmtv1US4gSaOYbLjuEBvJVJDVCIIdKKBzsxKZ2XMvDTmO5DS-lYZMNXqfXMNPVyJ_Gv0JxHXA65_jWW-JieAuN2I0kbrVPPUxHj2Mnd3j33rvJ1U-wTIJ7CLHFPEu29-I2A80h3xvPiNTxv0HXl0scJcY9_twpuaI2f8iS-h028CFqMEXEMKMSBSvgsUZfaV1ZCchCpHyEiUTdum-yd5sWCnv1JWCM2DEqnQn3eObtJ1aQKSp5btYePaFWO4NuogOv4lj7TVKDnGGkxehvj0MqfIL3JJwrmpAQ00iWHo6puDY0tPdYxb-KNPCsaA0Vi_S5BWYZs-RZFLvqpwMg_hwK00pKtMac4RqD11kbonykFheYOYuvRf4q-P6zzKquVLUiXeKnomPnASVg0u9YCJJnDFj8ATR2OCjRzQlh10ijr5jO56vcHgmlUpRHDy1yS1ecLTgdIh1xo_usK9uPRtqy92_8JL6JvaoLAhkxmE4fGeI31NioohI0diSYfdBictYMkZ829wcS8gh88jINncqimjnp_sujuCKR_swJ69dbI6PQ3H3R2SJosheVnpCW0v5IeEVaEfNzjBwCfl4FOQ8mnRs0s0pK_vNRlylCi2spAuMiytnph2RlSqggUHwbEwp_APcB7fRZ4f1YZG_vvaS6faaT7WwJeFcNIIaYt3bDh3yQx7JVnpihV-tEVxUMKDhAu0wvjITxPg9a2NR3hgov0bNmVb_nxGQQ90a0V0xiZmI6y8S3lYXIQFPJtsbYsREqB9VD7PS41MlL9FIPOXvP5J4QUgXspgJ-PRaJ4hu1EPAIeVWWDZtFjfKpyYvLJRm8Sd8fPa6s1Wm_1htWxhtuWhiBdSg-mZq_eySYQD0Lfue1Zn8wBB9O8oHIAAPgS5YKbis5l3NiiPm82ECgehHWhdmfne40HsnPebwuemmulzTv9Njo-1qUY1sxdAsWxRPxbeFPNqx9P_Vm2-s169ZpVTL87gR9iUXCja9J3AOMjbJYPHzXE7WRVkMlSts1h7L98YpdxUG7W9WXcZRMVbKdrXxiK5ODtitkxP_azX0_FVb1Wo1WK6RTRfPqLfOOm50oBVlkj0PWRmvTr3JTM0aeF77Q8No0gcniYswIubhp9pOmDwn5sb6eaYND-t_0UujXT7XJj3DTt3JIkvGOt05VNS3lp4EMvpu5jfx7Oop5b9PSuK41vXKfH5b0YiwzhfQtq2dQ9V3U8c9ZgqCkAmrwkhqZOY-jehviXElIYgtzksnm7m0AWF451uF1xmSO6AkY4Q9WqEicgp3EZxsTLjcSkpAQV_XmEKo2NUWBoOYhUDd6jvAiGzfx8Z6pSpCHCnKaGOhV7Kn2zUmwzDCkqblIibTwPCW48Mfoj4CuGxsXS-awk_COxv61AJeQ9F3BgSO0gm_sZjmGJHYRIVs7mzrF9BSksUoklY90xLdZgVy_0mKaKX4gSCUBpN6dhaQSRg9g2SI3ZPhlmznKzPuLSKBU4NRMmhzrqP1I75LdfKtc23xobPIpL1H3FcZhSCTHYqirWKsZGnKXIpyazHgT97A4smW_mLWrGrJZKmXevk8NQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677e6af267d6e0-90190887','','','2025-01-08 12:09:46','2025-01-08 12:09:46','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41932',0,'cd-form-entry','',0),(41933,0,'2025-01-08 12:43:26','2025-01-08 12:43:26','{\"firstname\":\"Nina\",\"lastname\":\"Hollister\",\"email\":\"ninatarry@gmail.com\",\"contactnumber\":\"07595743798\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-personal-trainers/\",\"recaptcha_token\":\"03AFcWeA6Nt5uKE84GuGvcn2vcpiok3F_6rpiF5P_jN8v8HiBBfl869e5OKafAtKYkEJNH0PKcXf0m6YEcC_sNZMkGNYEQVYqfYCCRcOsUdSmgI7vytW_cXmZfNXJD5mmIQ82XpkppOj-zUZDNTfibwoe3PrSPionDNH3UJJI1nj2FU0Va80fyR0h7a6dO1Yp4kAfsHla6-i7_zP3ID98JtOQ79zhOonSYouwgjDAU5hNrYEG2LqPV3_j2pPQVqPn0cpCGSOm-Ifa6gkS7lmLpobK22zXxvNwwP8sBSidgKzs50UzN-XQJ90RIbK3NEjAvWqI0ociEZefHBhtYY99NIunFx1dPrNyT1mtYT9d_kM9lp43uySZ_D7yne2_VZYHcZZXr6QwuWdIzbAyBxHQPu7Bl1Duv8CgBdsK7lp772uUtrG1RmQFVHIEFviptGz97vtfCir9pFeFPHlPBkQ3FEEoc7GnfpPQ3NlYIMQBT2U0oyCP0fVNVw0nJx-6eH-F9P7uieB6umlK92HnPnPyf69O1zsu76npu6p7btaNfYxJxUu3ZxCpBLEoCc69HMuHnFg9-Douac6VmQgO7il9NhCDbEmNBi__0YNo0ahESvUYkzKpDqgmVxsx4M25wy4s-VVVjF8qIh_V-AJFwa0kQdE3fpnPbHpgYgfHrxxYkwt8CK4NTPushxhvkNdhaIMO7hBhtA7VmZwAGchHNWUnnR6m4gJeVQc9FGyI5Gx7JrL7iDaOoaV269vZaxKZuYa-gIlj5Eov_0f05MYglJgcwLgu0iCcjr8GmU54heKPtQiuiTIbwWHDXT8pC0llPaSyyUjQvnqWcEmh56Oy2asXhi3sK9vBZQt3QmfJFSQuCPW77UEjS-xzHBo4MiPRs4FVMgcxx8RQ-9dX4e-ElWXbxid4Ln0k996cMyclurVDK-nBBJJD0ndp7Y_KHW4KeuDvFmGnn4iIF9DukTPweHJrHSqJyr1zU3FUW2cUkcxHhXja3Up50a86DjnxzemjTB91ti3kR-fy-im23-nxucHMj3PP36Q8pEi4bSVKm68Ez17Qehn4dAzqh0IuYaIXXjUOkZZINPYrjLnry_kMmKXDdMaBuJLMuxFN1YMZCbmzHRzsXB8DspbjhtE7QqVeg7L7lQnqLFBbSWcyNQCJhyHDK3Vkf5MEVUaoTeldnitFmWNdtw0XZjx62ctIUS1nSQs9lW7Q1Vyj7r_niMn8qD-d4CyqAd41SQX2ZFbQofdC6SAkgN7EBA0w4qkg7Zv_9WEHPx-jgehPWNi2TEzB7vy2neisjuQ3NZQBgvMBVQaSy4MbqwZVMzvPpo0_ka_VTvaYBGgFnPbDhcDJdhtSVA9BnKm7Ec2aWkBhds7Nzhq9h1gi9lQI3FIsGddDr96vF5FB4qvEjK5vbeC8PKeZfTU-iH56kb32u4Afz2Ohv6pfFLDCAxIMA44p7ujmYtZufA55ZzUp6X977KVR6BKvErJR5nvsD7yGKQyN1YryVleSQ6dnMJYmYOBeZnRgR5Ybfpz3zNLojeT3xdn0VyN98tiO3w4pSV6DJy0SFfQWNqoUmUSv6UHi5eJYR5_wySPfU78w5o_WOo3m5MSmOnCWUO-tDW17pMnQlUk8oBzNgxwl_dTRjjSTLYCGvb9xEFumQNQhLINUcLeZCKDHCFyiQJ-NYizAO-QtnS1MZGmwFO2M2dg61o9RDlI6LVxiy1l3-ogEE2O4NCT1kWE5I1nDz0GdWsTTTMncVdlSeLQmIKgt9Y7E7o8o7XMgm7hkdYSX_8xmodI0Chr7C89532ysDFFqHWZK4cfjIhjp4AaYmPvyVkP_et41KYhCAnRqbYguaIfU8uYEwGhTtianpC5MJO1jr6s8AsrC2O7IMxyJHd86RhFabFMJM0j_UO0vLy3bVRtqQeFgnlQC-YoJW5YJBW-eW846ESgo1svDeBifyuOlt4SwgrthHeUjcTJE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677e72d088dcc6-41655368','','','2025-01-08 12:43:26','2025-01-08 12:43:26','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41933',0,'cd-form-entry','',0),(41934,0,'2025-01-08 15:11:28','2025-01-08 15:11:28','{\"firstname\":\"Natalie\",\"lastname\":\"Gabellone\",\"email\":\"nataliegabellone@gmail.com\",\"contactnumber\":\"5548470844\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4zoOznbhqGTDoOI8F7EEhPJLjfHtKtwjuf1pWdu06OA9zM_qoCicUL5gHLg3S4N0fmf3ePEFdlGFJT1HLjhrX63exOO-_quADMUTDNXjRQa26Flq4-IhVQKpbYVIAbidc6wNf07T9oj9bJlpTXWL8kzpC_5Ton5JeAaSYh6vwvqV_f-6wJsxKCejTOMbuYH4-EP_qSayLkgLrPTkpEvv5kmxnE0uXD43SnVBrRPszS-yOGVzlV2Jh37x52H-oMIof8eAdLE5bBCQgYvNINzxWc4eHAn8ceZH9h7Oxhe-5Y4PCsAKQdUHdTkDLo_2lUlnG_CkkePAjAxOkB7op2iVbX2Nl97EgvA2wtraaIVg9Cinohu8g2PsC67XOZ-by6wbo1fMuC3ouXj_pc7Fdah1onJN6vwCMrdEUr-Yh-8U_NHDa-1T_zFXLRDEOllyNGP-ewp3sJpfMHw4ozjoHAK41uXj8ufZKaz984E8CMMzAWEcUKCGiTeUxfBi2pOoRrVSys3gX0AnmZTbaJtm6dpdz8nLlgXPwpwwsh4Dh3EgDcIya113wK0-Ci2JQ9J1y8lMti-mYRGz4_AFz6g2pmYSkj1VLTxBz9aOkQd1T2StRdA0BX8BBsaX30L7f1fuNiFM6fFC-6Hz4VCKzy4N32yKb3yvWf1XMdKTQRValQRk7mOIlRfmCtJ2_UM6fWLxpKAR_E9jxTMDHvaFFa3FD8177tU5wlBhKoTPeAQkstLj9n5jNfefgpWwVVhkwTEqnyIUrJ-b5KSNhdsbDxRwUbgw_UA2smFgwKJoIUmFVdeFa1kClbzhtKjQgNniq4TONu5cm64jLt1G2eA_X0H0gI1o0TlBrDm876ny_gkoC4ur2OkEhuAF2uLcomY6S9pfTiV_lhaNrLDeiihP2QQ6ykx4q4HWyYgL6kjH4Er5GcPTSIA7RgAlfFXtqvWYnnw7m8oncldZTCrzugG9SNbpdyx9YTQR_zAcZFJRKpyBaWc6lsBEV9Jmj70voq6KhUwEEfHxbyM7sz_Pnm0c0fmwJo2pobrpLgTKkUrt5GwqkzgdWbBjQnWVJxiZTY-lByZ0KbY5bpbKQ7C5XlwIRDU0JGYlXONmuDah25cqTV8-b_XAxKQ9QV9XkKPWzjz4vddL6IRD9qxeRqmIAo6iBgbF568ycQO62dV6wt-ZeyMBODcFd1pPlM9-bUcU_hzos537s1Cncw0XJwMQ2IzJhwKwGvI4gd0VImEmqReTVLehJft-RGeSiRWAnlFFs-xr_O0tSlGQ587J_lPr5uOHcriXYTka6CN9ij7mhyDJM8hkssZhQj30OBrC8ad-qbhHkL2vAEFp-wzUl0Pfa53ZyLmuHlm-POkQMPihzwfMvrTI-W1baNWTacBiz6CBBQ0rVyX7LKt3-iF8ZNbRu2zNftBgEatvKvrHECNm_loFvQb6vdIV3Ka7EnoU-B-ky9nQ5k4lJLSorMmbvZfg77fnsr3RdW81H6wbnorEhZtRnCa1W8yl8JlXq_QH7m7MX19Aviahzxzmummk60rnQ5d89gAsNnWUorbTx_4Byk5dAfWGXeD9ApLmmhLivBV2YnmMN7KCEj6n-FTytSc8GiKLtSwZe2mUuT9QEo7VrbV_flh5fpF7f9kP4dW1DORoxaiY5lBX_x6P2M6P0pkRPg2kJbGjMcWrxxai46xhT4FskZBTZ_dfTcbcDTTzy3J-V-h6qwA3dyMYPSXT2UYDQ0G0cuOVnH05NdbK8rrrsKOHmU8ANL8zHwYRit91lX1Q9YhSnVxO7ybP1HTFa8Q_RSiTP7qjAG1ZuYOeUZSVTyVEXd7BBO0-9dnYhMGvMXkW3qnXiaaPovyLEzi7wIh4oM9G8cQXPh7pmg4aMjaY1xl_Opm3NQv_fnmIpiUSgsBBV6AzEi2Y-rql2aUgUkho0UfKXvBvRVpC9RIi4vxIjobWyuCcgAu0Y63onItFxrDY1wRNqXnJkKDo7tl7tq2q5ZpkstuJ6XLgFxgkVlyMUe68FK4A4XzxABpKCVatwMLQXipy7rfY2A-8tmvFkl\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677e958dc49302-62162861','','','2025-01-08 15:11:28','2025-01-08 15:11:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41934',0,'cd-form-entry','',0),(41935,0,'2025-01-08 16:01:38','0000-00-00 00:00:00','{\"firstname\":\"Rebecca\",\"lastname\":\"Rigby\",\"email\":\"becky.rigby@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA4fi7BhC5ARIsAEV1YibUGQpkNho0mOsOz9lzsSG9QkUSgBMuEXcRq5z6VqmrvaYQjzO8WLAaAo28EALw_wcB\",\"recaptcha_token\":\"03AFcWeA60rsluYlGRhJRYY4OEwwCU2-XJBDwW0UDYo326vS7n4weTgUGTFG3wL7-MYM6K1XP9sY-kjPhO-h2JYKPF-IQJi-6d_SgTXmMGDI38YIDWp4u5Ia8wjG91hzaGDf_oJ4n97FXGjym7g8YDbU5bp4pE1JkX8kqLEoMOTmKYIZXu8Hb2FEbFh7a7PxR9FPZkKIpdaQhNXcaGMPwDR7jzau74Q_q5ZeHFlvM1GwL-Wkx4dEAwwttkK_zrAhTvXxy1BVC9fG1vyJPYRbFe2Zqy5aLFRV2FV4ZURIDMfbPRmp4y-QzL9R0M2CvxOOB-ZasD5LrBNtz0aQ2DK21HciJdt-Ju8nFujdY1GpcIZFPuGtI7OpH1hQdkzO6wtjPA5NgiWqb1yMsHa8fdQ0nurjb9rUMNKLiAy8nr7A4DwuksIblv6i-CRRiQ-qDqOcw0IBruTRIlB-X-jDkuX7Xfs0KbvPBbe6wwsIYsIRqC3yhl4JQ7JJh-Z2i4XLtJAdWQiEZyPMPJdyNE1ivjAdAOJQEmWZyMuC2Oj2NkBRwltiWb_0jNNVoH_0gfnVlwGSHqOPcd2LSH02FaXYuOqwBM6C9h5_nFOi-cVSagboGR6lr9qq-Zlkx79DqzlxgAxUz_szBKkXZNhwwZE88YjqSFg8ylWfJZwJixtXYJ8Q3MMgZ1VGQXNB6w77eCdnXdRs50SijVgg393NlqIyBg-BtxW2v8964_VLTO2E7ZoI-wPCi4EiH3EuXu7NEuw3TMMTPklBu8hNV0nNv4C2hUqGlcIy_xHff8Jruin25sOduFIRKOWxufpkGmL88e6IdvN9ztK_uM2VbUfI91RJoDmGUuL4JjM0beIds5_USFQaSWyYa-RNS5ynkTJqgAtK3qwiEKA6RE_J_5mFWFz8OUiBCbOcPS6O-ZaQ_45N1qIEUSl7K-2Ym93Y3xatSe6BJA-PoTyiY4511s-ZD64c_62Ujtr-B_LrOU50EFDTWCZwhFj_l2hbQaoOgmcpf8AEvHDwOBYIQ-wHEKQ0RI_QqCfc2qKo9zbn8C-GtU_f9jRAJZQOdWcVIY34srRtApeJudE9kvHMOGMUhQX_-BT4TO5HjPaNPHP0DJs7FQeZhNHqW7P96XUl_zHkMNvLm-HPm_TVg2DDaA-QYVF2lA8Wgxb69IzxqfcTjtSgslLi_cVCz-PcDgzl2af-Yd8UABB8uddwvtvpyUb1X2tFI82JxYKulQM29oEtB0MXm8F3eaBdrAESbZBvnz2gf1yipGW8dRNJ_AkqJVxEV6Psqy42NesEl_-sJO97xxjQrQN6nyhrnhERWdbBA8LWnxTS36XNfh4sI6gChFWATbuI7lC1EM40wajPYAJUOopBxjI6JfuoiZfWU3WbnAbJd6nwYJ2CrelPTEGObL_J6aHu0f_LHQhYZM981RAH0U95CoLn_-FfJRW5LIwSirBJ1FoDSzYouQ8XHLX04irK57zwxUGlgRd_MRgV_x96E5GYjb0zLDH95w_gTqITVA0-ZnVCalab3ob5QNu7jl_MyivnmawGjbik6iU_QmoOEt8Ba-qwduGTX6EWCONlZbL5Khy0bxY4DCmtmgYdUFtfaFh-HlT6LU57oQC0xqAdothSWDv12J4dCJ7BEslOlTnTbIjDl7A_XEXwttMReS58wMVaOmhJQwQyTGG8SbBfkL_ZFlpNmjjaVAcTegs9wil6ThC_CNyvk7fWFVnLKedPcukQ3Ou93_iv9lmcL6EGe24OHzIEXifH4hVuV_cm_zlryHm6HjG63st3XPM2a4-JQXSUGsqzffBiXGhPOxiBxtCSiQ1wEntYVFygHU4NW0DfWph2--Il2-1mV4VKoLufAtxHTvBwvr8h-kXU3Fz0PYGpu6n1dbpjQXjR3F7Q04bxrWrcKzdDJVz9jyOttym975D-kzW3sdVKy_QvcsJ6BmQgvW8Gljn84KyUoFv3Hih3Wom13THekUEhv_hryGIqEVn5JmoT4A-sJfqtcGJxXrmv0bclM9wqBBsuQ8LHQ3AiisISVH_7aRYNRAj_S8ew8dZ3O9rnUIYaPqR_j8hmKi5ywGG7KG7mexdDN4kU8Ax06_Jrf2dGeacyLFZYOaHJO0um5-z0fZN3Gev4vJHSfgyEYYZQ8kD5cA1TkKBDX9YIRCtoyVn8MOkq1DiewJ0iItI2Q75Mp5wmkA27TGhlDVqb9_6UeSaTk1s5fvBr6EFzENk33NkOxS_j52yUyfQBH0IBDdW_D6vsbKnzetj_zMzaVRAQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-677ea162d34e22-33636197','','','2025-01-08 16:01:38','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41935',0,'cd-form-entry','',0),(41936,0,'2025-01-08 17:25:35','2025-01-08 17:25:35','{\"firstname\":\"Lucy\",\"lastname\":\"Butterley\",\"email\":\"by.wild.beautiful.free@gmail.com\",\"contactnumber\":\"07342790590\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4iciKLQGYBKFKRTjDYmqgXq_EcT4oj-_4X1scOiUX_LZtXZdFxrLEgAE7WGWjl5YsELwnsBVlBOaRAyTl4-kIszSaIPyfUNPdJF6aWqIh9fm-CqCAxp09B9PyPIgQKBytOlaF5wuSoneD-rCwzaAV0cdEa7mcs_6Ss5pjynOQ8Zwo6u6UAp3-_A70U-GTx30GC6g2ClMWjga9fwNN_kZZTJSwHfm3eMKx5V4gNfPgTesKn6i3QtFuxjP_t8ZQb6S-TVIwnRSP4sMSoyLG0LpOTbJIlwn97B8NOKAk-2t-M0Hs3LMBFdPhk21FPk-76go8L3UPrMHM8s1xOLBCSu4U6vHyp81LyO7gWj4WB8ToGokYr6OXzZDW2xrhVWc9oc0j7hzlfeyKqBgPCTlDodpET-nsoCtODaQlhI02JY0bqj1Nkjh7Ns9bkhLKogA_r09KzuZzMvmw-r3VMpzK_jcSkKPKssAdkC1x8-bYuuSi42yTfQISmRqHepKO85dmulhHTMsSYhbRGJtysOujeT97RqGo_tnx9CxYFChhyez4Ozrl2nk1HG68YC5wcz8wiBSQ7AuKU1blnCMlQeKdmqLN2ucp_sX_HZ1tqo9xyZdeF2fe41QYmtItI7vflSzDHnXI8AFip_H16XnTtk43lLfnuEDVB65uq9o6KctX4YDwwfezxF6ofbka4Nj7qME64oS0I_b-ybfHmF-I3fL0VoK2vQL1ubVBZMpUK7nD-VsKcBz8oFskDbZ5PdBW2oRwMTltED7SvROKKtGTHqxFZBs6dspWeA-tyW0g_6M2PAbkkocW2aTOexx_rTQ3OdviPIRJ0n5w0OyycudmnB9flnqqvof7fX5KEoRPKWMP6Kw6GdvzlNhqNRBxweuL_2pcu5TPUaAJepRehq5ne9qxlHKSH9SioHyMQKHiO3K2sLNctio4erdOTp7IHCoUzm0x23cS3K0tSm20Q1bxVbXXuNYyZJbF3SJSsWGRdxtm9qIldHIDtHZoalr5ZsKrOJzOoo4QgfNoxiX96MZRIE57u-kCpSmDg8SHF9beGOT10eeVKrdTyqi1IP8Hjdr1r8rHztNjsLf3YGeA3LVn2Fa3Cl2Jy0w_-Nz02seyR51320sbcHvPKt7R5mYz5Kagws1clwnMDiD0JuKCcsjqbDntz2LXXGHjH-j1MuU33_TD8E2jZZeEZYUlWacQe-mBxyx6m6L3A7wcZSnvu6TAs8-DRIiFPOSPlzFwUhosw3lkrkbBtZpQCOilZdPaNcXmHVIpTGyCCXYQ8xkdQMOVBAjMbKvXI5tdPk-svKxh4GPIRG9lTfDLx7UeQhYlevl3Qh8JyW_QSh1ym3rP1z8rVlGdN8JBwThkq1rCy5PveAdQETms21Wyzd6Xd5bS0Qtgi4gvZUTdILs2MKby-lf01Wp4oujWjUAZJhEHshzt4IFSJmXg9hl1sfR4kkavHwJ0z16z6D8IMJdp0r0kKY3ZnkADlTZEegm7UtfIwFVo6ftOldm7NZsOfsEF5d5T5WdkxZrwDmqR-gUedmL2brZiCmw_9nNszxVpdXiIMyg5Fq-1AFCxP8EltRN6iDyT4OixUVG02KvfNjjdaw-q6wQX-_Ty6ONlN0pCtY660UiD8x545yDS989-ATKBySFd1Dk3NzIL0lr6iKz0cW5PjJmpK_Fn9gpHuaCAMXgm_tEtMjE0OwuGjWBd0QzPIjTM8p9tgejPPh9qYPrGNZt-P9PQ0V3tWtPrMOD0A4uniaLHXbJG2Nv2dwH5gJps3yW-l9O-_fBPNZxU7q1wyUX9FTN6g9z0iaLqAhhYTcjd9n3Wc5eWkuJ1HCAqFDhoXX_oQhNFrzdgsM8Qcy3MG1ayZ6eUGHzyse9KdOZ47vZmyednyPbpZ6ffKMWKIwnb5cKfTz3FCSui6cF0JUsZY0VaGVewdS6AGmU0INzxQxPe0lxtlogZdGGjzyZMrkt8da5Ds3oseGph3KsECK2IYGB6iutlnwRXiTYBnTX21i-nW4vg_bH1QV9Rz5GRckgE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677eb4fcd6dc97-36136526','','','2025-01-08 17:25:35','2025-01-08 17:25:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41936',0,'cd-form-entry','',0),(41937,0,'2025-01-08 17:26:16','0000-00-00 00:00:00','{\"email\":\"by.wild.beautiful.free@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"2\",\"currentpostcode\":\"S6 3AF\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA550T0GhJfAGrfCpk0GEHoBpc516gKxoGa4miCujF9yAEiwj4giTemv1h_nixtug7TozbazzM4HqNOe3Tv4qcNqJkGS-TckWBkDrUY081VRIWgfMNoyYxfFeXVPB-RnEaVQnfmJ3UKClPlBqnh6Yvs03g8sAz1NbKMcInbqt3pMuSbTbqmVLkMLmvJrkz_UXfgwQeXod57AZPcuDd-jPV0PGJ0Q9JOYOYYz8TXuy9zZzVR0YCAFrrXTZOe34PwacWsQes0R75fNTz6_a-_6tYqyMk4hPIlm-uIIYKUY60VhdSOH0uWgQqxnmTcRl7CaWgJrQFWgXgEZmrD3oTrMxAprUKSrDfsyZBUeXg7rFrApnkDhy22SRie6RHJEFR4qsxDAdEQoHHSe9yxVjLF1cqal7tI6RA38wSBqtmKQpo854AGgYihJ-5yUXgK5awoH0J3KV5wAJiS9F6qeZ6BOQBGwoeVcgwU6mJoaphOe15NvN8d3lNP_OUDBL64pb44Udw3pDx4Y4095lZax0e9LbXuKctKdTRIQC-G479IWjPU6EBh_O3u8BlqTfp3LFQ8KjWJJiqg8PsVEMKEHjzMLbtW5j6_u44uWyOrHFBaVteQ9Rl5WcMtdeX-34O_zSXcBTS-uEMFlLCZwXt63suOocqgv5gv3-pRZFvJPoMuYvPgmNJTkfyzkwH9Q2UUzMZyP_ln-TapfSB9_44kIf_CxgGIjsYhvsvlGqYYzck1NyRru-IMKjm2IT7w6-Qd9eYRC_ByLKMxykAwKrUQbKKuFvqd2PaW_D2yZ4ma1lKaT5gOpcqVa3VI1QUGR_XjwfBREooIZi4BeptG3_u4ST2QT6O2gNGqApCbmTumZ_W-vis_bMQNcXrpq31UoBinyua98HxGlikJ3y8dAGB1-AhBinfYojtYwuAaqk6MYWfoe798OByqIj0ecijqFt52NbaIMo8XYGRS9Huwwfo-7oPg0IfG7crirZ_jjETW_LUIOMRnT82ZWIBCWbhbB1B047eb_R2aPNigB3uX91rAnvu6kYTveu665Fgr3GIFMFfwrzrap9HLK8Iqlk9WAa9vNxJBi0Dvz55hQ7Ed6_GagQO8x_UeCN1vkHDsckyDQd3KsCt7jytDq-fdVrbkZMOCUbwtGXjkCQ9jTCYU4DhibHzbXCLqhIHz-zyHmW7pJEgQPmCS1SnLZIoF79PeddUlWrRL9M9jnkGdb4Gbdkj2Ne2Py3pt5Ls0D6ClOyg3OmhxSjT6HmrQWbJwIDQgHsYSEp1At7q8hDzk3wS_1QgJnPGwyAOruyL5TP8h0JTlymR3fIUgsGBHrafT20q9Zmgc2AXpkrfvhg8G_KuzIlftQD_mfTb1pxVEtNAIdOXbvMC57mEblue0c5akkyu4ynDQSa8-nP7BghOCz9tREfB_45vSNNL2DQ-nGr55Be_X9R6Tk5eqPL9Fl_cGVr57BoBYEJH6WkOpUca8BpXbIowvgJrJWu991yMNEfbrG57VYVNHOv3ZGhG5H2LiJnjvN_Wy3glehX9mIaXyqDnuDJ0_VtsRrTExIYQLZ3mhvGDa8YFFsRdU5wTIQRtf8waW0tzlY96mW0w7B5phqxUFwLSZjG6_14y2fRoZRhqIxGlutdyCxvqzWwSfc9aIgdkAC9xUA-Oqk-nzDf-Ub0g5uJenlqgX4XBYD5PCrGWQMvuN3450VHPPg0zyFbliDWFuCgcUYv5Hk8_LTtssu2iLOI9CgB5DQZRaHQTDxizKQKm8oYLBR4BakkXJACZEfxyDGEPwgrjat_kdFa4cewTf8Fg8AwKzTyTvf6wjPl5kq8leBcWjDd8dyI81Wc8HJCtkIW54tCvj_My5lyWHO1gWYybIztM_R7VSSEPDPESJEBffB8rrMR4ujuX9aacSEXhda3gScGp78pedBOV75lsHM2f5j0CG692pSvPjjYgl7z2VY3Dr03fWyhIL4GxePiYQyAb54GlbDzrtdPYxMAM4LImyhg0C-H6RtJ-W69BUOC1PNAyyvSTTmAu0a8Bg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-677eb5388e6939-70332671','','','2025-01-08 17:26:16','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41937',0,'cd-form-entry','',0),(41938,0,'2025-01-08 17:28:12','2025-01-08 17:28:12','{\"firstname\":\"Kim\",\"lastname\":\"Salmon\",\"email\":\"kimsalmon8@gmail.com\",\"contactnumber\":\"07388056950\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA7d7rUVgQ0hZUi2ljJFH9NeX9BHr6AfvWWtzJx_HUSYtvuco2DhqBLXi8j61rDv52MYhL_rc5TQ8gaNrXrsk-4Du4vgXrU6aN0KMieMtMiq9MYyqMO4v9Ifcv9MZp7oamBNsPsJMHULZsfckAh2Sg94OqjOEKZbmMh9l6DpUCXmXeWYDK-4-tG-SZxNh0fEgKbmVDaVCQhYAzCvV7_mwfn883ye6gwgEhiuszCyLyIMH47wIwv-P5C9Pp6odgiy1fCa7S8h9DhH3r_jWRzxtHDOMeI19IaWWrc8U5zFkv0ytnCIowmeJzYkLwfpRQqMcMjO-wouRmyDjJC0PJABLr3LuatAiPwHJs3K1A5rMP0SJDIWKgrH7Dqgw3zxJ52fd4xIL8uSppo9BL8Uwo5Vi0Ujq748Gsr_F8JA_0hh8Fw4kN3qn_8qbzbemTvhhZPiHelWygp6I3prmnt2ar5keP1Pl5wqIYaBm98e9l_nytThvRbepwJEL2qz38GPUl8jgp5fRFlHmi7AbG8vIkds70heM1-xx1snLKdUwbnnvJueQEy5JZ-xTgTRxj22oJe7Lrxyci3eWLEvqhILNMCrXZCMXiY-LTk6x6SMYVhCJN23VSJwsLFeM_I5fd5k1h6PRymThWr5YgpkgIbOyiFqS5zlXpqUipOxZcfg951mv51YTJMGFRqdg5Mp6Syfp9WQNw7dDfarDyq_VgnngrhvqPwotnUVU7Da30eU-pr6HF9KEtlIfl_6ympjDANUlH25L5B-ofvnt1Z3rP_ih1n8rLJ3JH_fnJ89bQikjva_OVIzpRY4wh663Dn9XKBRE5n878lPhOYsUXVYWJamYdlaVrD6HmUQTTZkoXbj0SLZ0BOZk5v9ZDANsWqEFAAZwoUUNANawq5EdDQhl3l0lTDIGfnvna1pRwz1X7evA1GQHUkJxhk0piCGiSAnWgDuKMRk6v24ncaG7YTzW4k3cCFiKwEsahoLzVDhCydnjq6hWNY0c0U5lvRb4k8GE4UL7hoIYEh09ejZ9YAjmMz3YkGvx2dzlo2RBcfOK8DiYEhByHt6O0F5q7klLAELFAurdzrW440ztSloqRTeBLKR4dLnAkOQFg2g8I533aGzKkaNu3VQJmptMwZDKJwKNJgKS9kjWz8OWoeXhBuyyuknV-ThC4HC0FCDr3VauxSjhOrvyz80KdDF9LTADxV_YjQLHHdH2iTzu51TweydJ6eRhieKc0y2i7qUTA-9eOsAqxUbU-4mU2JvupQBH1B1gBLIR5v19AYKEbgQnNF1NKq36nXqX1AWXG9ObHSERmhJ04fGnGf7fG4UgFuaz8YGwl8WNEko_1NSx35f4_5BK28dTRQZlfREdxbFQkHMhtzOh65uL894-FFKls-IJyTjM4erWl23QuCPVx7EJO8gBPMKSFJSJGWZNhDCa02bgFumAXmDo7er9_SrWSq7h5wmbKDSYeCeigEFVtMfnU2F8f4NGaqMq90mFAargMvlgCaavIfsJVh18DZ9sFOMO0aVRUfJh-APkyqthLebfzacaRAjNeQbJSSrU4otu1rtt0mDmRIHaIGB3CRAg4WRk3azZq_Q3507wp8EiJfw9OgjgdASjBW7aAmqiezloELeUEUiot9MyVeP6KCmaSOW7wjk51FtgQ-ZwoIgVGcYXUZua-CGSH_QrHh8z7rbwZr3Z_KRW3fsl2J7Bjy2zG4FrLrtlhAUUPm4ATDVVH2DvV3V4wFHvjaHvg7Wh2d31wXs9WXcnzotk4t5jyO7vXwVK7s8pM1xK9kPbRkOhTqwnsTS0ZFFEduFPCVVhSq81u3LHoNSu_xJ84pf62i6ikfRgweJQUS5yC6Hq5Mb8clzzgUvCdfVswsz8ZmOXqFw0gHiKfYjxLHkaT1yMOQ9Y3qzBZEEQdyymgnRndEzzJo88KjCJOGeU_Ut51oCJ11NwA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677eb58a1abf50-47445539','','','2025-01-08 17:28:12','2025-01-08 17:28:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41938',0,'cd-form-entry','',0),(41939,0,'2025-01-08 18:10:57','2025-01-08 18:10:57','{\"firstname\":\"Jason\",\"lastname\":\"Legg\",\"email\":\"jayjayncc@aol.com\",\"contactnumber\":\"07810838068\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA4fi7BhC5ARIsAEV1YiZta8iRSBNG4nNN5tBXz2fyoCzz38KGMG0nvs-BnT62ymLKHq7aixwaAhymEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6KqrMaXdRC5BdPL74nTa1tHs_kR-UD_oEibigEAm0I7c9siMS58w35_iQinv8fkS3eVj7ku3WppvC6crBVT8Oc7Z23tiBuTSCRYluOdURg3EXl0FvtsrsXyMwV5h5g1xCq9vOv_Y81DoQZTUVdTuutHP0mvMkuEGu18EUgM8jy9kJRIWq6fvYD4vaDOrXIP6oiGni8r352NyK8Ukrh799R7bmUtkYQo6ND6u4UuXcyRx2ag2bnZMXcZqYozQlOyDC5kluHC3PSq3fKw403JsLO2lb1Tt0LJeHJlIP2phcW2W671-nUpvLMEBoePHdmLxg5o7H1WMvRdk43Z9IZVnYo_YIaNlrPxEcXGSRNkBYhh5FcZdt9PakQ2X4FviJ8wZpOek2vvphDCsonHEmRkSL5aHyU5I3RmmZkp4qSGUyyQ9SQu98fhGZt93LXJke7P3xakEGOox47Iuxd7icT9UTh3_NWPx8zCKPKrX2xZSqT5JGLmDw1OrRW9VGK0K3SoE2KZDusadOeFphWPnhKSgmSmASQWlLnbawoxxCbsjQpJclKAp2l70W92G0kvM8N-wHWl6kW5g1puYkfGV7aoenmm6ZGePJRrTK0hSAZeqDB4vpaYM77EJ_A2nowVYhIVmj1gEQVe73drO8WvZaDrEOxdpO_us2JVOOK7WlTZbYj1kOgHTs-N87vYdlFPAQs4sZVBH0fdr92ykXSkHXYCbdF0RHgjkiLo0iTQjq1-pU4wNxj5oNLZeY9RZSEcl1T9o-3k6HIxoYs0QQqJRmJitrMWbi0CdK_2jJwGI1L9ytkR1Xr-4ApJfwbBbXQXaOkoa4fm6kU82mZN5YYj1tQ_tJDLek7ipiTW0x1xeQe6iyDDbjHakuKqZ1mi2tDSS3bE8DZ3ybJiZrqWC5rF39IQOvi-h-PGxBuypaZ1C-Bl247qiBqaHtoBIY27-gVIUK8a7HfruoEUZ2gKaiOtvF337YcOXKl0XNvkTaJioc4hmqGbMyQXPGsb5AenSgqApu72xAyaF1gKy5FtPDveUAcQoshxXwoP2Vc2VLxvgI4mIjjaTZysFgJrkgN1S_JonvOfcn8G74BLqEm22rkbeLBODIvKPqonJWznYGUX5L92dILphoN32SW9T1UOsSrFi9EyQPUu6yTQ04tO1tghwNSvjtkzqQLcSmVyx-GREX8hB209rxyRbVSP9U3Ylk6q_-2Vwhp8HutmllL9BjMgmyW8ymoRD2TXPmVsWCUw5tmuqipvzv97hgfP2zn7Djd4hHCE0SMfBW4433WMFomvyIcZQEtUblQsRUMctSYqlTEGlq8br6_5bz8G291EuKuy0JEG7xR1AnyULBAk-VGHCKM1_Dr13xMV03GSeDe8BOmOCLk4j-bWlei8efC8Yf06KxLyTQ4r9WmpDjtSKWDvpdJD38puJcJ5F3Yfok5J0fIGw9xBvAD2OxtDWat4TSyxB0JEJr9_tFLc4KCKH5_YYZ05xge1i1Evbjvu2aizKUB8xzS9iHvhIV61heRsS79CMFRH8prtTuF1XhJajbv2XsCRc46MJPq70zLHVdB2amhE5-JSswTArrWKhC8YVDKExVw_wZ51nwmkXVcJhfFQwGp730hhJ9c2TBOWvJxy4LMTiyIzQ5LrIV49XPTaD5f1XDb7pOkhYNC9IuPcfkoDzA51YklJLfiSJduDCVIB3IIFtUx-oiF8rsl32_glYcNNSkByggkidYFe0beCL8O8L16qGKWv22nx9ldqSGZ09xlSXF7-vABwsPgZEL7DNRr02jXKx2d6Uym4el6iwoH0KoxgVB5qyUud3auUpzaaPLjPSo0O742BR2N1rL8RtWu6XcAvHT1HOkZ69w2rFTVelSfyu1RpTBgHjLOr_UCyRWao1cZe6UUaZpvQFvRaq3YpZYpiZTPmbFAPFLWqVmySgjoAY-LmGq40PYCPf8c8XCv4Ho6amKZ8-628cAov8WOozjAvJlEbX03OfIrp1RULyCsrlGSqXco7qyeQB_OuXfjL4NNp-Lyv0w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677ebf8b686d32-76490836','','','2025-01-08 18:10:57','2025-01-08 18:10:57','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41939',0,'cd-form-entry','',0),(41940,0,'2025-01-09 10:19:06','2025-01-09 10:19:06','{\"firstname\":\"Steve\",\"lastname\":\"Harrison\",\"email\":\"stephen.harrison234@yahoo.co.uk\",\"contactnumber\":\"07935362088\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA77kG6_3ueNWbxTLVySRysBHnI8KjAuiwBDA8G_BluQXNBDPNfTmp4ybO1xX0L2aiCVLl74WpOzR-maK6_AYTnSvbsK-zWiFMJGUCoj-s5TZJvirurij4eI7o4BJK23PdSRx4BbXXqiZngh_kDmCVrlb5PaU5mrIMxrJxNEM-ZkDnMUKwnAJ4mnEQUm4v1X2t7dT4BlrTOePtOgBbbluu4i9z3xuqjGh0T2GjnfFhcez-cMJjygk6NGIZtMY2O1dAjYm256AEi_f1eZTz51DP-ezMGfbNddf1EvIz9OddeyYSyRYyitY-l0uNR06-A8WphzCvuQ7wTAXA7_2z1VVYR8TXEL4BbyNUQJHJIimXWqrIABmNTJjD26E2odZx4eQ6vXiN92R1ZjemEOmaKsgfkjAYWbCIJk75rzM_KnfoSCyvvwwIE2oIqbLEZIyL0zt3uwRM0dIrNm7RqnAZpgDvXndiAIa-lmUpPKXcMFvabQ20ZlrZ-YvRTn_Djg8IOwr6xwITxQperJ0Kb_B68g1hM55MmBuwlESK4eHHqqCjugFpyCKuKFAa3GGXtypFH75GI2hjd11ar3sMQ6IhE9n2s_4V7S8oyh6XtyCo8fDNOzn_OC3fvJLOv5naBheljPAgYfQu05qJQxvnlIDUjBQFlZFN5-eE3QV6xr5wEF6FrsOAp_xGTnK4k03mnkgHf820xG7KiXQSykpA9Ke9UrpcsTMCCBR9phovvVWn4MrK5OWqX74MJ62MmpUfvqPN0eRKclNt0c5tc92CJF0SN5a8-AnMiGjZNYCQWrRHMU9ukE6e_u27kpBVr5lzpecJzZDHS7oLuqrqVcWIgy4h1H-o8iF6LzNYu1D7OinjJq9FwaPcc3R3BtsaeowRyOAu4bXgUQFk0NRY9Ximu1x1JZCbkBni5ru4jHgoq7tfG0ZP02QDOPlsPULdp3kAHGgZgsbQGj30qrgIEJNNU139R-ImFn8Sn7dqwOrswpNZFOAspKPFYJxr4qKnjUDDev0aERO7Bk7VXMc-ttTirOwQwwaCNkIC2iopg1Be8td-yDF52hIdfpekBD0_1emN4tUd0TXoX57H8tM3oI7xKtE2gq9695Q2yAy5XwFKcIn8YNw4h0p5Ir6W4lth4XDgJgO9p6sMGi5lhN4kSqg-fzHGUsDO6DISZD-OOy4k4YP_JQ5O1qECGCMnJXWekGpaPtQ0wCJ3iS8JKFeLd3-0dzkktAH-hUDFeuyHRaM2dm6Wgkf1f2ZPtAkN5m6pM6na8770I5V1NNPZq19l4AXk1MTizM3mNGQyaSd6i92YpfxNAs8D73OBo_d2wBiYcCk0KotZxy7eAClA-sbj8YZIQJ5fUYx6BgSKaq2QXbcHEWcgPkYce9WVplOlfUSAKsCRuYYerLh75SPGjOc5xRSSqr8VvcwSdh7iuvpkVs2hNQTNSvVYPke6hV-l6JMwU7w0I07ZGGad14KOwIKizfjZe8SBdU2piq3TQXiir8g8Yj9URSB5-y9_wyFI6QzM31qIITZwkGJaCI07gtBljXsDG6QkhQHlbNxKl5HegHZ9v_pCpGy1Rnv4INC_b0wr00df0V8caVraflcQepU-TWseQACN7TdFVlDykYviJee_M6tYuH4sAmbQcPhtNGdUkwPgj4E6XiUme9zZSrP4T18mfCTD4IgSySp_N4_rNuTnvCkfXrjLGW9Utv35FM3KV69Is8EwnMspA0MRMjn9WORAY67yJMs02tmJGbL1eQxOe0vHChPbFnV0zyrwY4Noahuei4iSRchRSIwNcCU2HvERH3M0hmRYPFTKjN5mIObQJ1ZnUP29UVqhQMhyMFWnow7PCMDkDbrc_8LBjwGVcQhoXUCl0ZsYm_DqxqRdk7gK-7sOAKTknQNttrQD6JuUuu3BFxVW2F2fvPknQS6dp9943EjcgmugfuoshdxLuQEfpWS6dFFu0e5Iu_eCkvPeMnp31eoHXa7g9323J_TxCeaojRDQF5C8U7K75nw3OLVWnxzgn5qJOp4EjW3v3kSiDun4DuNOSnX0M6FvNh\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677fa27b4ac4d9-73679863','','','2025-01-09 10:19:06','2025-01-09 10:19:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41940',0,'cd-form-entry','',0),(41941,0,'2025-01-09 10:24:33','2025-01-09 10:24:33','{\"firstname\":\"Steve\",\"lastname\":\"Harrison\",\"email\":\"stephen.harrison234@yahoo.co.uk\",\"contactnumber\":\"07935362088\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4AlwdS6muVpv00wtK-9S4l2v1020ldBkcJQHd29Kg54_snQaQVArG8ALzaZmsfEUOAqRL6jhvLFWBv8rktEHSAskcYinQvyCwv0rPrIgcbo1Czb1kwFXP-o4kaOGsp5dow251qD38SNHQR9iGiZ9PeuEjKn8x8r_ky5b11XEH3HGp2ZRVBTZXoRal8L9DcibvYRyAczumfbmzIADkwl2hzzM8hDPURRqIyU3ZF5jw2Yk68C03xl6O8hyxKStkGruVFgAK_j749TrPwV1kHHs97eBY9lv1T0fYjCwwyh9P-9kqMAxtFMt3Es7yqaIY9Lw91XxhNmUfX0wR6m9MXQKIOtr4xuQRx-jkM0cElqMsVY1RrFnipENqCY0_0hO8Jg9GTLburlBJrHGgMsiSUdM9FdsZpURjFEtY1UvkdZP6DCiFyPxXbYK1mYzmkFXtTvXKtzI1w_EpSiptUqCJNZGzTti40-B2lyqUe-YWs8j-3nmDdrJZ0pGk25L4cGWoIrAbBSaRKJ_YevczXmsceUpqjSkV67I73bqmopwxSTYJS5R_tUcdD5mwPetc2wGBg1lPWBGxCCTSImp_RWDl6U9L7QmTFBVmegEF3cgNBk-yVOwjqeJD2HJjjoCslHltSii-Miopdf2Oxtt5uvB98doB54njWGGOWy8scvBYT0NNV1SU0sqMabEiVD2Zxo9UBJzWQLcVGm_haNCsy7Jrwml7uKgITP3n2jksRON34lA7sJKoSenW5oQ-vJSC85jDf432Bjt0y5KylhQFrlbLdXsbBq13xSRDRPEZDEiSUhfzQsHV-tczNaor-otpVQCX4r3yPLQ-_beV6J49h-cSSYxtxXTjGm7cf8maKHjlo3kdVbuOEHUfQ28PVg6Utqj8u-6RleVMcXehuCw3Fwhi0XaAxgbNN_zMgxwF8Xj4EIq8oeYnEyfG1nkWvWouGTbALs_baB15ViySNgGuFeq6NQk8x3Z8HGRZWkj-AiqNvvoLKMSjCda9VPx6qj1WAkpLpVDplu4o_uOjIwUcIsxk15fvT--yr6WOoTy8kaCx0Gdm6pjPRrfbB2WXP1QueEXo-c-I4_mrUN9sP5ZXtU8UHQxK32kvboL-0bScVIUSPdS5U0JYK9SY4qidUk271NnwQjkI5r0KqUA32JVy6EZu5Xekl1JDSarni9socoh9BFWGOgMx0WBc4FDD_4q_cTBnA2R0il4FNs4XvNWnvGjz1Ul3ih_Y16ktGvpBwCwaax3sEumH63Ff9uj6-OV8Wf3P8fccKbkUGY9EylEIoVIhsv_XJzCKD57XySXPzZpxU7WFJufrR3DmIt3ngcUhdK7Y83HinRVeCSlS9iUBUsErHOLpz-DI-rTmY4YS_qYZIood9j--40KJeQJJWOEtxLOig-vpw4zWrIpdZ81nZydpjdYd7IWpBFTTVUuo9Gsjn2ZSCARlo-DplqeB_nVNqK2I3r02SafMalPmzueV_kqEK5W3fm-TAGGkSV2EXJC3JGPejqyjka1bO_MsHryKG0HatwfYjFS6ODE9F0OI22qYAOBvHyj68Azu9bAuFl9gHYLcIWX1UVcnhhz5nlW_9VGfBEHiQdr1QHT-pM1XxIC4cF7JbJwJ5MPoUCmp4OxuQuHtJ30B1FVX2phnP4GBmI08BNq2xfKveLfLNl15RJiDQvxtAl6iPKQxMm5QwDI9f9y88LG5ThXBx4_7uu9nz-FIyKTQgSj68-cAQxa1GvaUSAMvG2j1uutBew4woBgzPUJMIZxXnNsbxP1HlUyinuAHIb3eOswGWbuYiJJINrLgApNbrOsDp5xl_q2LfwW-N5d3SJy0CuCYSVHsuE3pEgagtw6ZZ3LSEC-Cmow1D1KT_dCpT14gL4YKrf-Mv8gkGMPOrbwTJdG_P8-b3CcKAe4Am7lnD2JhLqUBgUVU_L7aCLVW4SWYl_Cs7iOvY-yg5qI886bx5GBaBzEbFmDP0jiHoxHT-gUEDvxjiXBxn4rz8Q3rjRuIbm4j8Up13Mtx-G0q3d7DxN8w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677fa3cfb67cf0-38772869','','','2025-01-09 10:24:33','2025-01-09 10:24:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41941',0,'cd-form-entry','',0),(41942,0,'2025-01-09 10:26:43','2025-01-09 10:26:43','{\"email\":\"stephen.harrison234@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"3\",\"currentpostcode\":\"NN5 6XJ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6YGHnF5AbyiJ-TUcxO22kil51bwW1HBH2YxbMDPyDoritsmmHXAo2zwJhlxYhcElsz2V6BlOv1k8RA0ByGapReuo0mOm_YoCCZK-mA9oS4N46JfU4v-3VV0MeN6zk0RWyVNJOAwewEJ_Ov3Nn9alL0MYyej5WNyH9VBw2lUz8QQ4_4W0RWU46i2OMAD8Q71ngwdQwl0hTVdaRcNADHK4IpZuYCx_4zHdTfU2LFRvZC5EnX-ykJ_r_zMvHPLr6wajyS8QUynRAHbCuiDqlpH43uQmPfddUu8OHUeRnFllZGddHiqLE_0u5kuliDPnsthgdxOBdImKMXAbbospEsrI9n09zPWHCRIKrazpqP-NEi_CZcY3qHDNpXNr0f3pLP4b5GaaChfLVz4Ddu0T5kgB0JAKCvt791sutFqKgzr8EttKza6SmIktnb4ebaxU_ZCnSoZD-2U6FwaLccoSsHgf7pzWmVyXwIWxktr87eskYxm8Kwi2a9YEFMOUL1al4tEGPypWK8hPcjsCOlaf8i3TxIYEF9TMF_TLqzY0JbzcwaeT3tAzBzCoqMRRdeMrlt9CbbY_18pf6EEgh3VJ55l9wfFJjkRMxISZXkbJgSve-O7l9G51k5bUgAiJKyxQjLIFWnkMD2ewoUnCHkC9WjKrkbWTEVQTufp5vfrqJ52lqyvoImZ23VSAAjwXrW3slloWgiUoyEIoQQI_13NRdz4m5Lt3vSIgxXp3at2BMLbJg7UHEOCSEGoOtnKMSZW85qE-c0IV9DYYbf_5B8dOJI6HyKz22NjcxWCT85-ly9s8fpdjdQ26bjqBQnRhpEf3r667JGQEsMjLacP_wL8AF377Az50wW2PaSnHJBQsfNJlixn6Wgb37tm6UgcZpc1Bi5k7ZE4_0rBMg5_EN4SYCQKNlN0p20tNAc6IkoS98c1CqiS_TOELJ0R49latQLwvPppwGMvOU8dJu98SRzjwxOn3X8Jn5_t27zf-WMpuBHrnSnplI7PP2mFR1n9BsfBKZZKQ46QQNuySo2iqx5Qbo4mXNP5bmkghj3W9Mgke9SXmiJLuQmHKLy3Jh2OQdezdXW_eQnSPTaU017TVJh5tSE6yEladXNc13CNyDf1V2js94GgSZOTRo72Nw3HiPwaCzAJI-Ti0zK-JVFWBb8AzbHrnB7BSeL2eEd99rpaDpkf1rm6HOAYYKc38sl-LNpW3Azx_ptqSNR6P7M030lizFxzuB5BrUsxrV-IQTR6Raxz3Xs2ltk_BuAX-deaM4DGW4BlJOvgnJFkgbCeqAY0gDBNR9ar7crdfbLAp-V2qepG7XBgruoEUBRjDye2UyyjD9nEYKYkwEdDs-Edmn5OBFrav6gI7n6gqO-RbAk5kbQekenyXF5qYWoebmCRnDrzEUO2wE00WbOFi_NGy9ssAKP4ulVyHRoQDsaeS5QGp_BlFKWXaFurWtBVhvEz_Bh0PQ9Bks4UYGMppwyuH8IagQDd7W4nj1lwybj_cw2SmmYr2_wQZ_dsbWSBICYOYt0WuNTQRtYJizwdWEcoVK35b5VQFuwY0wQ2JQYLFUY9t14mBdos9n7EmAPeHBHh7Qw_UdvwcugbMoyJNu37wTcSZSDX6TEUJVm-abURDqemDbBOsNNo4vAmZZ_H948RYKK3dIGkFTi9c1AIjGalXCfYmYZ2UO4RDOT0F99p9rZhJXIBPP41hzbV0-zXqq386wl06AJKqhz8tiLlzKEXT55yl_nKuyqM2ggUTOZ0pjcKvyCPjNUdskUgPE1OCQUsKduWAP3jpybRBCQ7ODhBPPHaLg4WHTvGj_KtYMNRZvCudksJfNheTi3l4Nul6LEaDFRy842BZrXsApp50lDWS9unSOkAVzm7-26O2nD2OD8H4-rVSPNSmQvzctBTshlbAeYePkNtwGnBWBdsf2s3atLHtKDQfGqfE3iSB5GeWm7A2O76lpMcX9U4jKTxzYRc1SbMw1LrzRobUFRBTnaWb3X1h6PvvXk6LkbBoFawQQxEASiKPoDeo08-ic\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677fa42a4c6ae5-72821614','','','2025-01-09 10:26:43','2025-01-09 10:26:43','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41942',0,'cd-form-entry','',0),(41943,0,'2025-01-09 11:04:31','2025-01-09 11:04:31','{\"firstname\":\"Karen\",\"lastname\":\"Taylor\",\"email\":\"kaztaylor@sky.com\",\"contactnumber\":\"07894736338\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA51DzvYIJ5LAUzhQPLHjfqx-RofYxN6DfpuNiFvqOytcWCYSSHLlrP2N8_pobtJuLGf7tIyqTVIEFBM01iuDh6EFQnRcqWCJORquwQJV0_fDZWc0-Vn-dTqTBwPtuj6SsjI1Rnf4lNxwyjQdfVDXgHqL4UF4VmJJRFPVU-eoBEIDSKwWbxmpgTh89icwehkfxLVJZRX9crijpfA4NPtUC5VKo4C7aL_rtS4X2vWJ6pXBTB2AOMLxfeEUKKPXEdldTa25Wa6mdsxoJXo-XffPKZq0tIs-llHkXtZftLTYk3Qvp9qfT7Gtw8sSsc7aqwNK2Ms7Zon4BL8AChpA1I9wGOPZ_Af6zVCAuPKdbdnxWYhAuyIHebCgNlixkw9NAX-s4LQrijDUFOnka-GF7hEBmKP7hL7BzVGPPrNeJwUIYSEjlE6Rrxe2eFwvTdtnN9NRVXX3GRT-dDtCZ_xoYlMq3DOq4eAbITKDLWGZP-q1PAxJsHbUQaazogg4QZQIdQRc2nU_L8uB1yMTSsWLccvII1EuySKLIHrMvHO_1hF20jW46h1yCx2aM7_ALMKg45uPa5Z92wqUbn6aLMDTKrxNYVh5wk2LzQJBA3yU-PxPlUrPPJLgShgXI7gSyq7g93SDMiheLi2G7gyi0Mrao5HBDZogA_NP4B6mbHxCqsx9VnWFa7NCwr2WLTKguXh-SZXtmo-LvidK7GhIGLgeE4wUou6eDKxwQI4RqNvgSl7zJH5My9Zsww4B1DEVY_UIuxGxOQXRQg-hIcWzpzNxwrioRN2qFbzXcryflzT_KIrDcVCJzHcHg4ZTz_fWPlTcre2Ngdw1kUOQ15hYqxLO0lPKsO9uzK3-pCtAKbBro-Y-2E3VLlSfF6ls9Cm7gmj0qHCrYfaTdoqMZzk6eYTp1GGmXOtkPhGTAmwGAIk5_1iGGZjmHQKqB1Li4S6DsorrT1YJXBK-52WCJ35CQqKzOCkgFPdNmmCf8cWyyLaK26v--YlGQ1xt3lyp1YP2SRyE8wpifGaQkBkLddYfyuG7CpAq2Nc-oDAQNLGFjKvYiCtq7mcxVuunWe_adfSvX3aEoUn_aa031wxWmEDIPAZF4cwWz0BJlgbEurLIoiFYTtTZDKAV322Jp6iIFlPiUAAYaNjT1VzBwNxUT54BHGY29XTCwgFMMZRsB5BENPYDcfU79WmOVFJG8PttvMRM18oGcJ_fQPYN8LrsauW7SQ4qoqYpCSuA89Upzwe2fi0dwaQLrRwwBHlsLCqhbqDJ-k5_r9NjRBeyBHBlwAWn4wX73ErOFZcDYjBnOioDn_A1QrHjBsnaNWd0HbEu3CVzbz7D1KIxWFFtLnAxhCe9zLb2OQNlx8ki5AB4ygH-JfsLMsrkTDwiTPeMyouU2VxVNZZa41C7MI-Gm4xGH2Cj8Iau2zTO_6uIW5v6QyCwyw76NBdjKpSNsCaPFRoJARHaUorwXBk-QWwEfmoOSXO3VP0ieBm_FdToVI0BIRkSS4eK8jJGApAkOHOaZuMFw3TCjJghT5UzK6ywljyHxE_mfprKzoVup83B1NxYHil9ZeCs598Jpk6QM4m-WMGS0hcMVRU85_-PR8dBke6-N_LR2KJ2IUPT0rYjZTPce6ytV8lXkckJCpD_BaOk7JKumwm0DHkK0fRu2s41w5_Rcb0FJ051swVSkhO_nzp57og7ZjVfRyaLxY46zTFB68lJx7swVfSdW-Lwkf193kfYklvdjPztyA2B2qQFBxEYhPtRODeEKw7J9YxnNYo7mTQCWffaLepcGMpj7rnrHvYNTdN9ESWKEitVzUuulxX_uoiFagUYUdYgy-7aZ_veMg0WDqytakyqYAucHwDKWTnfMM4zq3Try41njuu0u8EkODNQV92oowuHIkSjI2BYodJwHbZVofFmPf7sR_SkHnMxk3QTVnD3GXVc0Q1_6olcgJFeE1Ho6TFfQ8s_DaT3NdouiBDwCja_FUB5R-9vLrX_-L-4GhtJTftdXmU6ERXUi1ObmpvO_tPuSHoNfuKcLq9fsUPtl9F335aoXheGLfYFd_8I0eQ_pfsKsNnWoP9zjS3yF0GnlQet7XuNiQQPru9DMrHuNDuULPmgKFrkgWq9aS-TBQ_mrm44_w1W5xmCoaK-ZP0jLH4VcaimSqJLy-5kM04y4IQs4EGY_t4TE25MuQRVH-jw-ah2HuitBjz-CXoyGgPsrO7C251YuuERrI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-677fad25d7fa81-80380720','','','2025-01-09 11:04:31','2025-01-09 11:04:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41943',0,'cd-form-entry','',0),(41944,0,'2025-01-09 19:11:11','0000-00-00 00:00:00','{\"firstname\":\"Bennett\",\"lastname\":\"Dove\",\"email\":\"bennettdove@outlook.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAhP67BhAVEiwA2E_9gw-u1PyKU-HqvPEWkFfGnraF3DHhVw6l4iwEDdgITQjoMupNBM1ztBoCAfYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA60FIUuCx5rF8-PLq0JkQ9lKuV9VKr0lB1VSyiPy6-YRsBx7PIVpcxip1GCReLJgkf9vFNnt183ldmCixQgwL3BFf24-soBXtE4ipJhMN8qTs8B_3sCJyp5MK7To3oo_m-hvgKR0h09scjmBoLHtPb0r-NDiDx7oVSGKioc-Ej__Ny9n2H87-pwCNfHeh44kQtJnJL4MpESmh2hAz5d44M0tcv-O0ZOY0xCLpABv_Jvyj0pMXQ5z1LsVVwgoEUB2VShWksFVdnnjJVt9xwLiNUci5m0xccXOOssiSVoAeAbacrPBljHj_U1xC0smbG6MKRUEfz4Tlv0mV6YGsvAFCYSxl3aSkOo7_nO63ac_rM3oMFalqIdfy6eUaH7oXQBMSwAKbLz5O1WWIWAsIq_XJYtJlhDheUHAyehN2BZp8Y35XvTLNmESBPqq6Ad7JxrXfDr_l51M2tSGveO9c5P1u_nbPWCOkI-7P7l7x7vbLLcozOqVxuLSwhiHbsOKAsXa70bRRH5RHeTu4mAHbAwyTe86p3wlAp4Y0Tv0qn73t7kX7TSI2tErj1o3iVR3Zgy_Uu6P8o71ccZHWNcYnvluUEwi7cDa1oNDZsEJHKSH9Ej_MTeEqAcKE4KnSm1aQGNVlVOBtJ0Ara1vZZI471ioQsYrgAWAXZWrz-EwTsLCUvw4ntJQgDBNBu6cbXEjJRIvjqoxGDVXsxBUSm49-ReRLdpiu8ieDBwKLhL_JMDtJRjV6rL2DkQYkbgt0vvUr8Ts9yVhXVIlUHbFItXFaezvD2vAYgghP7xjkRSzVBsDCWU-T5cVXMVFUpzvdWnbRCNjOrZ3S-82tb1xH6CYnEIc7ihHNW3lXh0qfMaDqMJb5oFYZe4pQvA1PceVMwcfjuHWw2TaPK33Tta3cpqTsDGS78QhqmAUzr8QA7-3fUtnX4cv71p_rbLqYta_8seLe-wtpYdmUftJEheyoxiima3f8SCCev8AZ58EXU4A9YUMDxyKFsjwpdJJ0R802gkmY6JheVd96ZtlpkbxeF3E3RmcrY_vkuKPY_f4dzV1hDGe4Gra0JIZcv1O1RhOg_cYm542AkiBl47MWj69HAXyi-eF9uK6Uv2Q0msDqEjBhInv8BPJCy_VgAUo1YlL_y9k5W3iYbDDnaawnKGL2J-aHH3WdpazT6zUHinJ8RicEj3gPI3yHCtVBe74lvlOWTmZxxXpTYKs2sB2qHRJAEmo9czIlgZhmziw0jBikLwMUV86FCXR1ufcB_KBb1_0cnC0KUbrYcoMoKam19U7XB-VqYKZ0SLjCk4OizSLFF6b5DicVVs1D8ADQH3Z43VRWshxyapUR8OJ0-H8qRuXEFcVN_8Y_3rlJr9w7TIeGJWePgV5UajKrcpiOct_dPLAUFsP6s4t21Bw4Jgau_G9LHF3gjQ9QScz74ornPZeS79Mj0L-mOgcEukdtPAHML73if7XwqPOIh4hTQpvS_eO1Avqi2ZxQ9eaSM4ZCmMQQkySLZ4Qur5wmudy4QyuqiJYpNyHr7U5rjl_Py-Re9zf8YJDafdPCeA_trajgpJMqGY4sDE4ZGOYwDS1Kinu1CEWa1qVLaVrf-zVUTjFw6UaF0htVzyPK5yU_2jtx31EH5bZAhT0xyTsU_rG6lb6ut9-FTMlcqBUbOCLWOwWL40mO7zMdyJLvsTvM2Kh7ti3PpPWXPARIDhDy-f98Elv_vyCVXC6rNow3sZfqYR_t_F35-GZ1yUJWj_9QjfJJkdx7Qn-3DVF6dZktFem1rGuvwZq97LgoZVRTTMPfJOlanvcgekaDu2CQkscCQKv9D6UkKcP7_Lq83HeygW7udbEBFEfZQsIZG-6v33YJyYmMYwKyB_ZaIU0Geaok8sM44I1CSi3sZVzDEhqPafXDC69R5_gpiR5sqT6C-8Rp58-YZX2rE9FWqWgSBzg834x-26gBTtP3ORr-LwVngf6kDey9kXmujSWnDJzPwokbhCWXvifQP35QviDVodYiYuaXcpYjHz9F-ZhP79MdjHkSw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67801f378e5787-44524527','','','2025-01-09 19:11:11','2025-01-09 19:11:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41944',0,'cd-form-entry','',0),(41945,0,'2025-01-09 19:12:01','2025-01-09 19:12:01','{\"firstname\":\"Bennett\",\"lastname\":\"Dove\",\"email\":\"bennettdove@outlook.com\",\"contactnumber\":\"07712341836\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAhP67BhAVEiwA2E_9gw-u1PyKU-HqvPEWkFfGnraF3DHhVw6l4iwEDdgITQjoMupNBM1ztBoCAfYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6c0Z7AsY173CQLPT2UPHJZAFpmdJCXPydEXv0ztk-2jyAzekj_heBd43Sg0pEPFE_JPTs5Jv8EPEowof2d62dM0iM55e_bo3g9oWUuvaJXBu0Xgnbo_3eNdngdElAp89cWwvUawIlTD_-_ulSzoMx1TRyZCgu-F4XeDqAHZZWfj71aHP6z3NH_Cfp1a3i0Ix_AI-SLN_ENtJoMaOkkGuCgGVopPj1Tghs2oVsaAPQ_bTFA0ZRcbtsBGmy-tKgyWNu1mITyDi8jIt_sZEtDxQDBx97FR695nyn0gM5qEqfLhAwcrUVpFpM6maUTkYBFf9LgmW4D6MkcSbDvcWfK_8sgUBOYnKgNleHjO_lnZhlTbyNgu2QIQgBtiEy8nGZ99hKdobH0FkWUhNuqup_s4lVkHaJWzjEhhr3FmS_RyqMNwXEmXJ8b4zG7_tfSlHthU_t1Q9ZmAMgajuzN2Thg6NgD773vuzTK3untZnHSGKgGXQTDJmBw6RFFxz-_IklFxgBKH1an194UMwiqGe-aTXcqXaU1UP9eXBiBQHi2XNkraA_Ky6eLjGGinurmTt3btv2Hj8jQrosIf6tgF9qd_Wub1mZ_P0xM44U5ejvLbkuHNj02PvO9jtwrz2EC6FdDZqECQ0vzEYLf4D8z0zN4NPZcnwpqYOHgJz_3X4Axgyy38u4T6vhvhY40eEIm66p_u-DTuKTnMGjulYWwlWg19eTDGWxCg2i5hmeQ1ynkMY7BZyZ2SfGasB3LlOFOtXmyG9rxHRXs2JR_GF_SjWPfYQ-vi4HwUO248JRhQzuk3c3-lO4mBpA2-wIQjKPEe559geJdJs81pYv8K0eBwRJp4wbfmwPrbuPJZmGVPP2w_v_W3EOlpJhltLS7SVD1O9Ca_DdVefsu_GcxY9iFREPVtpM1Y_mwnPn7JySW4_tN08uBz5p_VVvk_ICIeGh-kKyxaPwT4aYa0qficmdLXMb3TjTTtQPjpV1GPrYzNSJ7M3F3PUCdPoT9UvOVr1nwlGnIGXwUc-57QUJejp7K6xA0xuBoNmUgjo2C7Qk6Oye4gBBX2RaHiezVLnI4Y5NPx_C2RSfVYmLY4jH2Xn4pQuDy3DjpimpmoVczWS5RHnC2OAevZ07Y6ZWVax3hk6zqXLu5vHE00k89tPA8yaeHzIMouprvawYVfR269mrIcZZNvb5LvD5LA_sgq6C1YzivvsV17_Dd81xd5cpRYG6CPSk1RsnaB0BQWxoKEuCxHir8INQEivIVKFVzbocbsnwDEUEh62bROUmqi9iT6IvkuEeAuGimJKb2vUQamjE-l4CNGSBfPRGc-CSe81H8XJB70uWBEunO1tud4acmp66EHOuxHJ77ujIZWmPKRAS6gsiVhvhjCjzKUE0vUAFP8Z_Y-M9wStOeiF3QghjrWK6KbVN4unxfUUdEyAUt43vwtqPFjOBCIsvH3eJKosVrxHV2uYSDulv7h-ozGMA5dzUUX_OT2lgF200nFF15otSHxvHv0JPq1ADwVH2umsgTL4UxrmBfdqPwiia4jYxnWhd3pMU6g3lxrxbVNLADRb-sNc6Jnaq4EA1tAO0pSTiUPY3H26aFKxniG9dXVCFcmpaqtvYYIEOMbDvQDovGooWJCKsTNN0Nkdgyodp1_MvTH1nIf0C9FIc5bEiEmI8Ki4v9J6Pe4mpXPzFnSbBD2ubkGn1Uik1mRnD6YACGN-N9BuulXPDpDeRG-6nKCqVpHCwLmZI7FBqX_JmY1TQatUAi6p_CbdQ4Vc3t7U-9ulipJbgcB1PvAhNIfAZ8Sjg5MDDIvD3oTcyJjSV-Pxynn4QTCtixEeGcrEZspdWu0qhq2J7AdWIyo6vXaDHnT_Y4KpKINgEtXyrWy5j4cxcr2iR6W7kGa1XV4sprgjvtCIupAmdJvoMFfxb1mL1a0MkP8gyyS7uBkzRlufUyL-tt-rMDyenyfbcLs1J9rADqoLBHQGYCl1A-uz8uscQSumxMgQa93kz_her5b87JuSSvajA46WPXd9LOcTK5VP0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67801f750dbe19-06597530','','','2025-01-09 19:12:01','2025-01-09 19:12:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41945',0,'cd-form-entry','',0),(41946,0,'2025-01-09 19:13:43','2025-01-09 19:13:43','{\"email\":\"bennettdove@outlook.com\",\"interestedbecause\":\"4\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"SE10 9SA\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAhP67BhAVEiwA2E_9gw-u1PyKU-HqvPEWkFfGnraF3DHhVw6l4iwEDdgITQjoMupNBM1ztBoCAfYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7VY9uqHW5WjfR7mOsG2H0NkSJAfuX60pmgsPGb1eLJIR1e6rN8vQ-Im9e6GuCVVrA3ZyMKBNmWLoHmvQowUycnJQdg4KbC8dk1rOA-MkoMb0-rYov0KcPI0dHpWLvX1c95m5LJC6nMRvf0UVqqQVh-5aKtGUVvmrOH4s-2cByNTQB6eMie3xMke2K8yEP6FUWFeO7kLR64SKW4jnnLpV0fsAYbVrgAoeHDvCAeHAQajfyIziRdaOh8p_XSXwpGXuGfU61icvUQWsmnX5oEQzSyh4hu0asdHcDarJvKY9s5LktttnBgX6fB_1gjWw-duRId3fEYHs1yI-2PYP3ugwcb2wLPBB0FJm1e7WzMhYFYoJm15TzzTdg4ib1QtWzBKkVT1YFFB-BBi7fs5aKbp_T4TT8x_GTcBZAEpKbeA6FqI8QwNxkfPolpetJFyKy8kH4Y7pjoy9Ft9w8HWyb7O2OF-Qtq6KvzM4CAzra4f1ugkMdG_X0IdFAeG4zOoJo046aTc5kCYYCK7M6fs4MpP_c9vK3WKTg6FvH8Qd1ihZy3XnbQiFNlaOk0tBsK52M6BsQz5RIQr9M8NvYTONTFdoWPIbNe5aSnSQTlWHZSFFNCqnQfuAkqWN5UQOFGp-qr8Y0pfpZp6QP7p4LE-sNAK0KrZydJNP-zXeJAbrJHI_1cuAJe-a-sTo_kZkHqVF_ZdgYtIXxwBki9p4lkTpJdwtp3h-mNNFKvaZoSXLvynGJhTSmJKidkM8gs_5SjkXnTRVtqHSjKU7HXpKmZu-d6aiGlgnxiPZU92ttQFonEUinPE9QL07nRVIYBusvRQ3nztIfQdD_xHLPj8468nqK1CbA1sYO2HW06daYKZaVJKg8BhJp8q2zLelrD5burB5crbjlbSfsyRXlKlKagL9HiI4geqPD-N2KPKO7l45r9csLdnUz2egCjrfYHU4xtkHf9wdbRu4ImULYzR1l8qDKtcmE_zY9v09boJNS2Frm68ycSSl-goIpCZheB55vW38fZESbygvNOPw16EFtoGiO-6dKywSLM43_5cDG9pwLah-XhAthLnThcm8rlefbM4r_MlMZBzbGPgKbM_IV07ufzQRBjqQA14jtI0AyGy6dXpH1u4p-F-1cGSX0C7wAFSTAAbMA-31kqA0ry4HS-CfSVobPz1NKq_UBIfP0r6gqIfDmSg8EO0VW3ceXgW7ZIGapXhkjTGyi3mYe58aKnSlEit_40jDsTmRQ4ObA203QVcRfQvCYo1AAGv9z7OKW9EwqXL7T0OMzY8WnsnxJOkCFECioIkmWVYu_iL72hv-kSPv8N7FKW3NfaKjN3ySp02Qf7hJ7w55MzB5g5CQ-yHtNaNSnP06vlpGQLSXtZM4yxvCNBJqSglx0w1UAU9cGsGvxO4YYxhHeMNkVu_9ooJ1c4qra9mwX9Y7mj354s50KyT7nuTg1ZhdMXQHEIhn-PPB5OTHSQ_TpgRTRj8TUrY6svUVjLUoQv3RnnLH1n7Y4FltiGOx2Iwdy8aTjt9Xk_g9wApvB_cJC7QYl6oSEQBlLKlqF5T3DWNys82QKNL2VS_bpRQz-cyNP9v_XFHpsoDieHYIRftVB-PbH_AckdYlp56v3vuaEgc7TVwEEVdyBXAD4dfGFb5KJMPT4bz4vViMqn38ZSAOuQWLChuZeTMEPM5gH2YrGAr993mfLRatqysLEYBGExJIn6EbgXGjlKQHytJB7uNvuRpkaDrGuzEscZLICxPnyUUdUxUk2rLY-IkELPyz9ppMPs4miM724Zpy-lusXA8u8A0pl638QrspTvApcEiwABLGBjnBPO5pdQ9ied249LblGa94Zr7C8S57eavw2o9mzljd5QsxsGX1MaBolxkhdrkvlfFgFZ1seIkgwKAnyjExoin0vFn79-w867JAOgBa9V33gVQP9fjXL9T4ECI1eGowf7-vMI9UL_c55fP9ZO0jjM-WxLTiIeKHmDJDFBh9cYyL68VNziUYO0keOtUKxKKkYe5Ob1NcGuqN_jPLGhrC8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67801fad780ae0-55687161','','','2025-01-09 19:13:43','2025-01-09 19:13:43','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41946',0,'cd-form-entry','',0),(41947,0,'2025-01-10 00:32:25','0000-00-00 00:00:00','{\"firstname\":\"Aggy\",\"lastname\":\"Gray\",\"email\":\"agschoolofballet@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vBQ9kTXyS6tl0GO7LDIv15d&amp;gclid=CjwKCAiAhP67BhAVEiwA2E_9g7VtLyz14Q862ND3r8WESmaPiwYQQmQHotuB7UiRWiYzq_1ifd-TWBoC5DYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7zpKHWAc3U11hSPrT9HYYzQgECwf1a-Arb5OFRolObHh68rmAmoaZH1icE1uSu_pWYSP7E8dmE2UpjT-FMjS75b37d6vbi9tQ_bELOPAzsJUzepYPcQqE3ZDHvZtp1NHBopSYSdMB3QG66zpSKJ2S07QQceSb5488_KhMA0g2tcEbWX0aNT7brEipBO0zBbQ-vWgimf4rMGIeIMw4xuyM6BXOBQX2ytRg-Thkx8BhtoxmsxrF5tDPPwUcCtEYVKCbXmdL2sv0R2F7KaSD9NDJwiWg1sGqhKuEvFBfWh2lxi2pVIRYNzUv2bbzcP49LnBMzGHEKKl4pxNHDsuadko3RJfYZ2CAPw83hNfbxK2hV5wo83-N6mzxFlZtbwAf1bSwT3dCnYw6jz0ZuXikTsa6gLnD1DHg97pO6IKJQAr9cGYAtUop_SJQnaQb66rhD30l82xYpQTMyb6G6DKACK3r5d5RHXtEhxmoqVu4PGmu2qZjX2iTyDhn59OLbnZeF7iD6-qYAhpOCiuahx9yxiy1MhGzq0f1OciZfy4ww4Hzun6NM2n8AQc49v6Hb7hi4ZBoZ-EQh7WCH8MCBVub6aj5lJzzf8gL29EpQWpbFCRLIE0BZj5LaTm2VIVpJNicHkIiAL1a2gu3I2K9jMwmbqtv--9tzul6laXHSSXpYu9nFiREK0QrGS3WKVd-t23Y7-LOYQHyyhW65S_xQqI-9MEXBVXEFT6kRF_VUY1nDZKhBpBN8JZtIPjTIScCfbLUaF1toRgGYHeN8lpxvazynk9HL5ELsf-pf9YKp2O6gq3jmdanpNGffafELma6KChq8whe03Nk3ADHSAU_pl6o1LLIvKSWXytaVd2cQabsMNdD_DIVbvf2CvWAH8zITD1G99iPWjrKRgnkmoj2g8-6mtxaRMnvDgToEPiB4WTkhC8JzlYl926PZCtqJRlJEh51o4GLoKLe325rwe96AUlLdz0FS7MNXDsVlgKO2OQ37H01sS7BvSiHp_OmUQoJDzlxApwx2Jee7plrzJyXkR2n08i06qptxhUwudEKQEy0nTjXDUMGKGrv9NBCLyqXP8dL--xg-0arzLxJ-EckMY3bKwH6L2tKz_aZV0HwatcLbEshhpuPQfZ3kcylqvMvCeda8jXzIdDMJD7hGuRoQYw-ICyIfGFhd53rfcHniHVlZis11cUyQPYY67Hw075qJL_lWHgnBkTsH4nzN387P5IKEUULv1-gyk3OOCPWhSgi8yq70HG8NzGSLq2qK-rCA3Ti4f_xx9SnTJoZLZZ-zUUFe0Ek2NJF4vhO5JnHYIRqObXOYH9fPD9WKO2NsJ1Vk0k3yc0NIjXzA-4-_675p9FiDWCwvb1Erq1XB8l48TvJDVXhRwwha_s7OnMC8z2_pG7GkES_s9XpP59vj0Nh3OUPU7wpLCpbLudmk_9RNdmtcIhXbDmGM3iQRvygmg485YTXcHMiN55sx0nRZYhVLRSY-wDK6G-oxd3iPurvEeoxX_PJPIXhqIfrpu8jd_H0E8Grw7ex4uw38i5w4ecIzV7TRedU1Jaq-luOaEeHCm3Lte67Dqvz-F0sGKX8PSfmk2GdlbEH6vAPDxl8ASolfjYl1ofprzIGR703zxiUF1d4Z4_HjbRWQVP4nHFDdNLbOpYauw_H9LwWtElBKjzxYb8CgY0hu0atRSXsz66CdAncVtolBKfr341z6eaIvJT9hOzC63b45MxuTPpB_baXe4Z01i7ISRDJqRtJVZyr6nbhfuNzubgvOFfBRR9ACPE1PD8VUYEb4PE9Ee5QtlmXGw69IvLr63D9hEYHeojtHJCPQMu_r77TGkNIEnodHndsdX4F1SEgJ7y-GHbg-XFTYc9Q-jQKBYvI8Js4BBFCsM2Ymw-KBhmf0Ym7eMr_vqUw860LXrLsG94ejyHkYFBgvnpuIiShM6BZYcvYrYiJELzltBsqxccgQiGJ5pE5hmloufgud1Bk3oFC1Y_xTT7AjWK99HN3hcfKmP57QgVyJhiSmLW4uk8D3G4RZ6WVVo3RrHH-aaa4pV7TuEdUdR-V1hyLLEGCqVcLJtAjIdksHqqx34KfHaFaA-KrOzzfXcTdAeNr1cMJOsMg-Zoyv02fXJ8ZCeJnmrw07pmQMZueJ5LX6fOvKaaMkhH2VMZou3gIVMEjMWyNnsnbtgP2yxm3l3GKTdX3Inywc9DT7rQHjL2xMPo0U0hmpqV108x8ArHiFPO5jIXrWzLgFQ-s3asDNfKVGrsr0lx_eCQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67806a99360c00-60587182','','','2025-01-10 00:32:25','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41947',0,'cd-form-entry','',0),(41948,0,'2025-01-10 00:34:56','2025-01-10 00:34:56','{\"firstname\":\"Aggy\",\"lastname\":\"Gray\",\"email\":\"agschoolofballet@gmail.com\",\"contactnumber\":\"0787656766\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vBQ9kTXyS6tl0GO7LDIv15d&amp;gclid=CjwKCAiAhP67BhAVEiwA2E_9g7VtLyz14Q862ND3r8WESmaPiwYQQmQHotuB7UiRWiYzq_1ifd-TWBoC5DYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7OEoeuHBNY6cBTSmbZO9oF8gb0nzew77CkqS5Du8Oq24Tct5Mvbm6GhL3UZjim7u3TpzntCMfDipIYEyI7iqsCPly_XlZQi-tWb9d0VQbScL3eY8mL-mZHeI6r1aBUYRWIWFfQ1opskO8vAprnpwC0xg9n4X-jabnvxncn86ar29_OpJ0fRkHUSw2VowzqGNqH1yyBHREuTCV3c2Wjs2NQv6ZspgdGdvF-pYQ1Bp9NG5O4lcOx6GoT75mnfSBPJ4Wf5UKLuC7xdjP0CJWlN99cAkwz1mKInNORIuYHIHkyNQsFsuaXKJEr3eKDGtS5ch0DbOWCxAu1KQ_44kbAV9VXKTnq5GVcmrijS3cUZCQ8rbLy8SIknKYrg-hiFU0cvcY68tsoydNkNlbNElTI3vozGvKwHAIShMrDIHg92iOcRyl_HbZy9Vu26eLAvDZpE94UluTpOVuR-lyRv_zzSWc1pd260WYTDobulHPUYD4YAXZRSlo8VATrsNxUO0SFl4f3TzwOrtCUm6psOUzNOtnZkvQxGhuIUsTioLqQJFJ0WPq2DMKi6gI1UlyrVlG8odYDHL-dwyNSqNe4tYA0lFDnMmMcj9yUaDb4F1Q_NiGwJxqWgcYVGbrMxxyxi9gfyThvZ1ssmxkvtBvoOu-sucb31SnWIOEJmNONQXUVU3OlxG8VeJLyTXh6cHux89wjy7GXIfywCSrAXeGkWFqG3POBElmXyIwMi14VYFqlMz5PHyRIr_lQMevSJmjbUy9SBw55vaJOjHKU9wCcerLW6F7AKijQen5uMn6qWGx4yOA0IikdzGV2t0koUhCVCz8cHdi9EAmfxwAAPHm5XcDKyYwWW9ytat2HK78pxW05E_30sgIIY2C8muSQoH7PzG-mLqnMlIgLXzbnz5RKMOQhBXmH5rcStoxv7-M2U4B9VmDckH9Ekc5ZFGW88oXr8D-IVvAE11vcTE9FUW90KmfmbkjULu7Mwj15Ag1bc9SkhjYsGqqlT_xo8pB0sDQW4f_izcBpwpXxNCGGgsEy1mKUVtTYnsAkCiuQChrpifMWQKrkgr7EIdP-EMiIbu7Bp4uonIgZvIQY9CgR8wOygItlCU2IITco9uazJlAzb27tlRqQGkVfvtxYyTLI9jUJxtMUrF4jWiHJpTyYxoP74Xrt7YbnOXDPxM2SegYnMmdC0ygH0NB9Ahp_bT-blRsMYGIQXPt6ZMPI-VzKY05jFqI_Sg-J33Dzl_h-jarXIRll2e5d2QC_Qya4pTdTLFA7r6R2CMVGqMWw6ZIrkj-fFqg8ga4-agsu1GvcrI0ZmcKhI-RPi91A6s3lO_Vzlxz6h59nqWrQjC-aGl9-Zl8ZYsqzhn8RCrPMSDh9nFR4TcBb2lsUGlV7bSfl3RKz2OTR5xKUyV_FaupGCMj-LTaVqXfa-WQs8kCmQJsRfYrprfr87fVBbNazyQPJQiaICb4htRKG7_w7o2pICUn2Q27MN6003_QUR-WbpYWKrdKA-N8CZuNXUt90-4vxs0rdO6Cqh8zvfouDOWNktxPT-7UGFJongxmsH5ISoejzhCdWugr6xxKTIUjio2tswQ4UD9uuSy88j_pVvnRajy4UdpevVyNPZ-MxIMWHYi17S3vVmgB1t1jdbH7o0jLqopd6yzdSs3DFbObt-w3FPa1OMPWs1i_Mlp3vm7zSkBAY9C9lGQvEOYdXhJ8dG8rir6wuPXe3sylz0m9UzSgIfc9SfxbYi-VEqHiiJSM0AhaqcauzeUZSVDJrZiUjoEhf7-0ekVgTVgss9EG7oM7IzgzdDaubJ98o_KDMl2UOdLotGy5yACrWq-9wxyPK-UPRIzPfNULct3K6o4l1vPytPUzWV8O-jD6iowI33YJh7D9ds3PXHFhjQ9t5rZMI_0pDCV8DLKoSSiDcIg0ZC7JIPOZ2btCBxpp8wCcm6TLK7DmwJPCkEjAtASJRis30rwZX-etaJSVRoHP31KicAGiocD1VWB0W5d3_eC8G1N0whFkUhE0wEr3tBUh_pYGi59y9E6kNyjkCRZwXtNC4VALjFQVt5zkyPQNBC1uw6GIyBiuJV00Sf9Mk0BrM1RQV1DBfh90cORR81A0EXTlAseRvnPiz7N9MIi5ImeyB6Bt5Xn0SyYygH9AbvivN4Au4JHJg0vlJSEQfg3ohCImyrHssRPNGr0Iqs-b6Kt6I1bLICqP3NRIUqTFffyra731qLg3qbGo5GLFZl3h0Z91P7FVis7R3jjuN2Szi-EFqf6ArxA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67806b1936c087-10847250','','','2025-01-10 00:34:56','2025-01-10 00:34:56','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41948',0,'cd-form-entry','',0),(41949,0,'2025-01-10 01:20:24','2025-01-10 01:20:24','{\"firstname\":\"Aggy\",\"lastname\":\"Gray\",\"email\":\"agschoolofballet@gmail.com\",\"contactnumber\":\"07475666788\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vBQ9kTXyS6tl0GO7LDIv15d&amp;gclid=CjwKCAiAhP67BhAVEiwA2E_9g7VtLyz14Q862ND3r8WESmaPiwYQQmQHotuB7UiRWiYzq_1ifd-TWBoC5DYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5IVK-ALzHTH8iCFVqedRM_iDjZiCxfBj0Jt0TNGUZ5o8-UbiFR_F21XuogPV8QwJODZmcsf1gwnPAJPBuZd64zd4qlXPEb0o4cnpza8Hfiv95F6Cyf8C8wnnW5zYJyWP-InHe7mUgS6Rz-BIZ8374WWJp-76bGHO7HlgUnbhdtsn3K0IheSn25zg-gpnFrHkTv4MYdkMFs7OcKmkyVWJcdNCdTpWYN6CXc9tDJKO4l0f-vDz9__SIA5cwJ8FkZUco6KAqBRJwxwxdjF-m8b-6zp72U5hME7XOn4njddjro3CMWtmmJuPOfThzFc_ijo-x4_-DfW6Gv16eCb4gjWRTvcz4asip1M3PjBwXnIRqUyLh5CTi9j8BV4VN-U53MRqh9vG2RwawGvEJFJtapFcLUXych1FmMUzq2W0b6ZNlGkddusi4gl8u0pyMk2XAxythZd3RiKyhupDud_-oHIMWFsdpPbibEuu9_XqMHtGgS1X-Gd6a5iXR_mM1EPD9z0GJQ1A9ciByvdoD2h4uxBMvnVmHuJOZT9I8dLsWkOgywrX2THdig3_w-0-mAdvVVYrUL8Oneo9IyHsNaGDUcpobrIHujtLpL0FJweP7jYGJPJ49__maG04cWTc3DST5tHNO-Pr7Pswf5eiWICDldvrjsdXblS-bRrRiMlYfzDkXwMxQNXukgPAKa6QpCe8o5OTjFjwSkXSyPU5Lqyef94VQKToJoe7Aqc7ogn7YtggkusXhdSYsNHNhz9UTbLBXAu4mcLKcAp2yNxlAemg8Yz7rpXdnPM0tWXNwlCWGlPk1ZKoWDfhIQI4PaCSHpbWrLpCW3E1aJ8lLw92Rrz1qcaF1K_Ic9PRfQSDofV28-Mv9rv5VYR02ge_Y38MjJX-xJmYCdqRCczO6JbT_5F8newrz2UfkPx0kP4izQvU22QSMK47flhCIoTCCJUmc3RWowVhbMlQ_WDe2mKuYYNkPhUj6xh9w_IAVkgI9OUcJssGAetaUa9QCKa4Ru270siJct11k24E7_eBa-JBWFjf3vsAPnJPS-K4WuPlozPfe5DBlZB0g0Y-wl24aaQFxnwC3XHuPrm6zAKZOYYJd_UCL0gfZchY63nGWsn_NrM0DsMIbE7tg_2WvEoPLytU4Z9Z3VNf63YSshf4V3F_AHizxVk2I-maA-l8sekUWFVkOjYsMiHEtZc6z2cOHHd2jaGxjbnnq6zgg-cfeeddL4T-VM1fxd_qi3-cvh8EiXKQWTJP3wDykGQDbJffpnAvd2lVyOv9fD3viCOLm13R9CjrRGi6FntUcuDUwi_UiAQ9CtHm_ETT1yhwFwVp241kAlKjRdPluhIAyhmb6VKXTR1srk9_dNMx20uayP6yAG2-fCGUt61EAvlhhwEHIFM1PRQznrc0j18IdAt3Stqe5Owi5Eq_6Vy4j7sr8IdGgzvBepLIM4YHkgjD19wDJIN4R0nydtIsaPP4Ktqx8MqkctBIjlI_mqeBhLum9WfvnZ4FC-nonYHIfkAfoJ7dmnbZnLvMGIrmOU6lywaaB5dQgj9DvAChET3dI9Z9Ei5giNvCXxIiR3mqhYMN8JOfm_S6NJdKuaR8eiecQmzYVLl2R720GGWKmkb3Fj2qfZIagf0a0f2Ue-XMqZN1Nn3-3wBE9vDedk14zFdCia25GWCCdXPIvFZphe1_9kYsQcZzOpGFbGpiKztG3oxfgK8hUm5cyKAnDJFh90BNygf8A7uyGG_bcTQWytzFS_YuQa_kLyZYHOnuU6sPUQYqqcSWxuKr06PS4iRRjIxPSf7t_opb-flMgzcTmarIOVr94B-6ieskyw11PxMXSmohZZ7A5GjP3kH0PdtDBdUKSjbQA4xgRpbWS2KNoddOFVbgItBqNDD7J-jEpkJHvShzgj1wGwjpUXrEnmX3bq70yCQHQlVFDADIJ1F0-2TskI1VRg1nvpGphRlqY6wwPvs-rZJlMS5hOenO-rRzcgn2Y4RUHvGOB400Hh0Dj1O_xbVd4Y8vyMB4hPCxHaX3gfDbY0BlNQkIu1JunmRLV9WdLJrfsl8Arn4pWd2CfDf8-kvkBWD_DujY49wLUu4R6b3BX1PIoBxDS4ve9RMaJJBUGzg1OQAI2-x8XoQ-1h2zB-QJI6yAEvCLc7GHn0Rl8lOWYEwy4PcgBfb6S0Xc1kv2h-h1lMgAykm1RWFY2LXQXgCTvSTUdNQBy7v_6-qdfNdFQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678075b2df0c24-90468052','','','2025-01-10 01:20:24','2025-01-10 01:20:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41949',0,'cd-form-entry','',0),(41950,0,'2025-01-10 09:49:46','2025-01-10 09:49:46','{\"firstname\":\"Susi\",\"lastname\":\"Dale\",\"email\":\"susi@recentre-health.co.uk\",\"contactnumber\":\"07764453038\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA41jZ0y3LmCEJINBOu2QPQh40Gl702tqaKWDKpIwlV0xFewx_KTd3g1LwnqZvv1_hf8P0awydz0S_y_7GHMhCO5ELZlOEbfqeqJNjdJm_BoyoXfx6VIoFxWZ9guniUwBCWH9aYw5oJh5XaDiS-onzJRcXHKokSy5V2fklVxSdi4LpaoKNt94c-WtUmu21D00-m35V-IOotZJ6WrpZS-k4vuAYaexZWH6wiebr_ccFkj6fPYzuNYDdukevXPRdK089AIusbNexRJK44nlM0tUOzbSLa74kd5-1wdxxd_XWsLsKUW0Q2whK_e6NStZrlNpCqcQ_ANupVCLHnz7hsrjM-5X1dfC9IBAoaNBsYS9_Ql3Caaf0laj8H7wpArnAXwDGRujkOOZ4dA6MyziPBT21P6Dm8zCeVysSTrjq2_1cDj-rCJ9VS9UYKdQQYrGU0Hm-mpIjeHqe7yCT-uLmmVvUNMUHqR4BsJnd6h99nLt0SuViX2sDWd8r9-oVdcvF8yWSKfRn-QcfgyF9mn_99L0GR0OZiioM9p1UOEVBEj-WPyXBtkz4-cN2u1wtnRXTz8WaZsfMzDdn8rmHIkX5YqG6p67URVfR5n2C0dDzoYAzbZl_OdduhtQnhtvzhYeq3EKXANlnE10kFDo7i5wbmKgxnjLLLWm6F3rTkob7DaMFjHuVC_Ii9_N5FsP3o3fe6v594ch7Hqy7ltpdP7KYFRhE-vL-7TTT2-k5ArFQtHcyw_59mzZ72niZj18AHBHixvo45WpiV08_sh61WNbvA-G6mi-SANuGw712noh31Bvwgf-ZjXF8NTD2pqlr1UqGNydUpxWhoLkAgA8vNX2ejJHCNci-URVI5eHTOyP3rHeOHeCTUxynvtd7HUqjwb1ybA1YX1AlcJjxHtG583z1nK7GtR_UM-44siCnNcT6cqPWwjvn1tMNkhAI_jAgUlEnBpHm4ORhwz1xW_Zzc7mVB5blPpdBAqYoTSDrfVx66LjTEtCeTy57mCMcWHYMJy7NGU16UeW2bhJmsCv4jijT1NQboJR4hCJwfO_8b7MvZyVAiWgp6UsTRhB9BNmcWAxkh3udjRZEnjOt7St3SR9bD2UVpnWeTWkpQRsqtbJm4pA9TJJk17utxA6vamB3Tfur0Rorz3tosDbs8FeuNSIZ0-m6AB1QPw0JGn6yXmau9cOLI0H68uBQEdLkeRfBxcn7Zpn5jOdCurAPDZ24muWQZTn0FcPTbBpAN2uP67_ZKlffCp9thed6Ewt0LTPQ-Z9gCrwqQzLJ2VySNREeWeMSPDYAcwRRibuC6Unfu5yNMNJKiDCzoUyhpjcMNoW65QqFF4HDqZK9Y6uoPVzFjYfbd1Z5DgNnjA0p71Zx0x6M2YxKv856lSLPitG7r8dFvCY_4KA1N1_YjklTdohpaBToU9ix4MUbKNsj9zMoEvgZmOyvvQWtWzTzRcUJfJ1qvae5CdWTqUQMA0Hry67rQ45lVluwdKqpy2keNjVTtH7YJWYT5fG3cgh8sTE54f96AiEFGI7tsomtZdp1UIiLuV60NHYKshkxU4zGlQnL8ZVxF_DBH2rQ1RfD1GFOWAUOCyy0bM8ZU3JNl8AQpYAkupvqEQ6YNNW8f1CLKU_w0FfqB0G-gcbzSo4UCmHUXxckLoiNyR1pqdAyOayVVYD50pvi5lmDNM5waAzxx5EgirC0p3l5vIh1czczIGZN5HDPe4Ec5Xx3zGAWm2bQt7h0KN-49IAe_nXiCJt_G3uL6yMe6sPuvrvRyhnsIg5oYY2PAjFysF2UlhBZtQ3TU09UIGHS0y7RZ6hpzGslXDApnji74Wxm-8MU5ZmD2QXgtKcayH9lE-ItCxoVQJ9s28zMK9kyEKFYiXhVZE9dwMXFA-ws644qSGSLohTMwnUj8QKU7qe2HY7eIJIJHqNJGBHMGAhMkWY9msqNhDKhiUD8P7H7tVkaukYdJqX7s\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6780ed21e50e47-55036846','','','2025-01-10 09:49:46','2025-01-10 09:49:46','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41950',0,'cd-form-entry','',0),(41951,0,'2025-01-10 11:30:20','2025-01-10 11:30:20','{\"firstname\":\"MIchele\",\"lastname\":\"Larkin\",\"email\":\"michele_larkin@hotmail.co.uk\",\"contactnumber\":\"07903113385\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAp4O8BhAkEiwAqv2UqNacqu4e9kvvIKLTjpSR2R76TrLaGlQJgx8u7kBJG8fyP28uie4dFhoCfagQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5G_T84i-ocSHaSCic6bxkMKQx61OsxWZZlpg8AUuZYiXC_nlKu1Ffh34dJo69qnQG2lgQ8ILiOshEy1DkSGH3eVYc1t4lRS0uy2hVfrFNSH7TU_uq-Bk6TvbLxG3XO6X6jOt83TxjyPT_5Fgd19Lf4WVcjnHqUVX1yeJ02a9skIMuzLcGyQpsrzaKyAZFplRaP1FHy2fVKXfi0PMRGVrD54ZJTfNyf0ZjmFAzVY_zPFZqXovucbFQEbeR9EQ4NCJLZUK-a7zUfjfUfWXaV5cm2oZ5FEYkf5awTAnTF3olFY080nWioqugCbyjAxy9WOmsaLVnwEBXWd1mEb3iE1wejKgdmgA471KjZOZYT2WPR6rWN-9Czk1DUIITpelbUaPOxNTquw5CuTAOlGWoTkTVHP1pu1VsdU_88G8fjtv7lRRUw8XPvOAwzW9S_Mfl8CFGYa10-9Suj2WcUT3Oh9xg4_R4L3kLwbqcgN7CQ7tgTzFfBw0NdEZ8y9zEUcdhhzuxQem-nbXFLGbbWA1oDhT8MMwcFGkPhbSmybvdxRbXBXiAK9DKouKZttzXfTPFJepvcQqanCUqD1VNWkVU74dVXZUb8DMVZS5HZWAZtVrAb-GcA8oZT_O6XtsIabrM4n3QLF0mmoWaHvMsnYi9k-5ubVCApFZISGqMIPvGQ35NwP_aWZUCM_r76KDdMJ-JM9Qed4OYafP8qXMIwWa0efHc9cU5rxSIUPJDXrE8rNcHy7Vp05QzDSbGQ9noNIGgFiLAR2LO70feYV831rnM5bN92Rr-kJ9jZ0dita3ZDF6DE4iW6YsdQ3Yutcbi-58gi3EW3twSXl7OU3OSHE0sUtofszQNLl-1wLuI1ucK8Qk8JdRidmwc_0Bfay1KkM7jfjsrobA-b7p3P2RxSYOmOEIE3XnId7RWMZLk6pmLl5na9gOsAA3ea1oBJZD9EUnAAlyxcsO3T40N2A7RKl5DFST7mE2iQ1fy-P_GZM6vqpKkbBm-GjYWv-LyZ_iz9rpOGGVLDlStENrvcQvuZhfw5yMsc5u5iOpDXJ7u2uJ0FpY5sjvAqc3nbHbqYZvKc6bdnwPVw_31N0BMEJRAgC5UuHvMtn3SwJQ9QBd2ZqDLapeaOzHPnm6oUIQ270dNOfzx-kDoUvhjigLDxaUTqw4OmHm3zAqd2ZbzirzkK5TVPpc0tc-91n0MX8JiGXLK7_Cylr4UzlJHn2u365FROy66H-zNjWb4L8xS54YYYzuOvEqMAr6q1Hzl0RRrESxT0X5VurV97ak_uDpfEx6e9pslHvY_zm5qEquNsfrtxEu3WhURVazGx-fGEaBwiqBUSEp8AwL0b0BfTRs43CGh_kUic8waP6-QpO_BFByz0YBIq-l49BI899qpA_l64pNxAu_54ByJ7wGEshRZHsb-lWoqsKEUNlKexHqdLPh4pA3ZwporgskYWdIEc0AMXLLbgxtHuvFxXX7dnV-tL72-iK1pO9gU30GIj6b2wcekbxsVXxJmZgDCk55Vc_tUf4AMQypQ0v4J3wnf1UtZZ1M8nJKCq4EyJ9hqNhCC2n9mSTzqkC2iQ4z-aWUOOa-ufulRShsy6dvELIKoLI8a1oM0-rWhyUoQr9CrcGjGuVEwlA2vwMklmTAyG6Yu-UPg6YjR7o5xpcOn9mBBvw6_TXZZh2fI-0KBcHMVKQva1hyB5wetRAq6DGeP0wVc-W5y23lgczNiTzVMcCy6wARiqFoGpw-nsLFo-ynK1J5WG2HBq9gJkunO2F5DYqLwf0_xFgEJNS5-Q13sFdSGC2wL96dZ2LrDW0oXVjyGi-p1Vc3Fm49ucYQFVFLSzoiArRSa8o8Efz1gFV45y915tQHaKACYrHL6uo4pKB90qX2iyBt6V4-JZtIdEySJW5KQgwaKqUWoukaGAIuzgEyctgSIw1Q63DxRrWq67520uzlARMbDV4YGc455Qt1ld_iSlPFs4Wn_Z7anTfNot_R-zt8c4VVS5DNl9gGBd3VDutbuqU3EKyNDismGgT81GYDs\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678104afee6226-10939463','','','2025-01-10 11:30:20','2025-01-10 11:30:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41951',0,'cd-form-entry','',0),(41952,0,'2025-01-10 11:31:32','2025-01-10 11:31:32','{\"firstname\":\"Michele\",\"lastname\":\"LArkin\",\"email\":\"michele_larkin@larkin.co.uk\",\"contactnumber\":\"07903113385\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAp4O8BhAkEiwAqv2UqNacqu4e9kvvIKLTjpSR2R76TrLaGlQJgx8u7kBJG8fyP28uie4dFhoCfagQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7Kqfwrt9iMm_S6UzUfeO8sSVEcFUJq8BcMWHYDCOO3caUDLsl0VtdxUfThy3kvvatQW6krlN9dhWbfOz0Odd31cKgJYWZMJ4WzLKmE7rqhjulU68hK4N__zjlA0MspOqII8olz2W9rpbM8REleX8h-oj4Vt3HwPLr7N5mSufhompKBqFL-taYYMrZ_vlWOYjFyeiVWbq8VsLOqpOilyOi9dgmkWq-qAmQlPj_zXflJO1agCadN2cTkvF0RR2DqR8IHjn48Exdi5WYYYBOcLM9L4ZUJq3CVQb7gQKWaq56Qqo0K3G0b66nj5SHMwpCZIUPl3FF9zJR_vqmDWdmZYQx3c95ZyCOaxj7DzTP_bNZiPqwXWfQksSBrA9jJT-gMvszSI83QZFKzL5YyNOBNNIjR3QSjOxrcQphSbiqODPIezArHA1h_eB5kTjyE54x-_52SvC_JPGhJfG9iojCP4cK9LbbA8ereFLGGkyi5cfPt8-NHSeI-B41ZrvT5g-JS6E1WRcQ-8IPR3bDHAPZCOgsQJ2LA_nYiTe74eP_fA49uP7NQ0pbZI_yg1_m7ePQzC325UNoxaW-4_Hnt53V30RiX3RmbAYI9IdxsJOo3EU1HA2k6JDVr9GZqpK1bBLVQPBCgY3bB-B1Wv1LAYJDVm4ZfDS6sifwncnyRilWgKi6NikqOPrGE1NR4UT2BD4oyM54YuIL-467kmK_A4C-kMiTK9rsCNYNcPI6lI7VsA7ziEabkdb-S4xdz-Em3TdsEmgqq6SxJF25WeQLuFpjzHEZBSuAJrxCCl29GuDiiTFEiC1bH5nWWk8yBswVPt9tQVAaSiUNzJbebc8zoQROLkujrqP_RVzucn4Zsti1wN6cY1ZrWifyXrfmmlyl7rh8zQ7AhuJaJelrJ8HI7JiyyffmEq7gSVpwD8VQDOVRA9gy3gbTNlh0YDZM9AwY2Lg9zxa1wPectUSR-gVBOo8HM7AmI_nDPHF9h-ayTnuLfOogCAKLZ7SijsJ9JpAjQqV2MDI5ttxZlHUCjtXRNQcGJJqEspTjFTB7gtKukaXAUxYA0uqw-EtBdlnJ640ZnQGkZPeisstBGlp4LRRjQOJadTYaiMGd9JDc1W6kkJPagJhR6tizhRrBdHOYaw_soSekfJYnw9z57mrFFHRmwKbfcP3fXmkUbIAN9WCdVPfoyhEb7boyIqMLGOx9Q6emB7WpbyliQL1kjw4kG01PHZ9DohU42JFcQck8_Jxoe3tUfpxWPA8L6xU86PjtRzC9oVXYZowFiBhUmTLZkGEAw_2Npru6nfUyGmNMwo7sLe8TpIEdgM-wGHHgwcF9ipXL0ta5IZAayJt9SkDV2DJolLImNZ4VOW8OvULpXhkkh3D3T4QguMH84ufK34YAHCp0RyrkfUVQnXgaF4p9tkvJso6cfhkFXEvfPmtYL1sXVKj7GKStb3Ai2MnYG3rhkp1JtZKFITOJBbiSjjqJi9BZhnXzzylIAgcONzQLT1Zh8Mk827aHMjhj-bhV82Z847Ub6h-16hJKaIvrieR9kUXkVA0aQk7kRc52kIVvYNeRRtfrtvuphvdahZ0aU6h_IrcEDDDIJAa9uTXEFZboW6rRpnbZiWc2AtpLWvWyNFyted5jG63EB4ThzAQxorXUDn78vg-laI8lVq8TDC8qabhvZUdoX5svD0GWDiGtmKmpiPw7RV0T6cmfgAuuYrV_fSNCqr3mqJKpCkJ9JznLc7Rt2KjseJ1N6wG5BEC_9XV6MkxPDHvQl6shogEnV_C-hl3TEewwK7YXVEhauCF9L2qfigNjJYvsSRhtIFRxPOGhyCPBvWzSRLB9UgQGnKmP9njPe_-ptryEHvso6fjABzwLcIRcz0OZ_LNGx2q6WVC7Rk5Gjl3zhhLYKe7zQuS56KGf__-BcvCoMC0iJO_PtjWJ3J1H9neGlb384JreQ6EuebypEsOAFoNO2x3Q-HBZU7mzWVPjg8KniSGuETdWbv2V8KW79mruY07SlTimrNYmCXohwF6Uy_FcQuog\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67810502d2e8a8-96702856','','','2025-01-10 11:31:32','2025-01-10 11:31:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41952',0,'cd-form-entry','',0),(41953,0,'2025-01-10 11:33:17','2025-01-10 11:33:17','{\"firstname\":\"Michele\",\"lastname\":\"LArkin\",\"email\":\"michele_larkin@hotmail.co.uk\",\"contactnumber\":\"07903113385\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAp4O8BhAkEiwAqv2UqNacqu4e9kvvIKLTjpSR2R76TrLaGlQJgx8u7kBJG8fyP28uie4dFhoCfagQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6_4vdmZV7jMLeqLgZle0_30sTcwHZJKCiD8BCHzl9jJgHjdz-qof9351aEJaCf9D3393MD_cSbV5iWzWVrx3WI_ZisYPQDijRO2qaF1T0XGxkpdlFpNey0__prIP7lqRf3Q3xr-mqIPvMFPMKVwTGx-CdicWk1UQZg6EljD3wMZ5JIxeHnkCNYeD7s0p0iJU0OHL29HF3OFlsTmwQDovENS7XeSsvYr8dTw9gW3UFktCGSPTTlxcqoR0JctzhI4HjvYpa0WPlj4HbkRy9F6WliNc0GCzUvJvPePo3kW6CV0GWhGKp6jfr7fMpBDZowal6gzKMfBWgBAi-MN_Pi6ITpB4RTFO3YMdTcIm8JQINbgyGqTOKuD7vV3XMnUS4DUtrktEKfVQgUphMEEarjwVqvwAgqQ4bTZ1r0iMGCDD4wr1I67L2DuNfUmt2QdpbaQVdSI3r56tk_WtUJf8orPw6bbXHCWaoqUbYDNxHTSe1vHuwTNhgcOwiAPBfpM-qV5d_CQFrQNdlBhJp7v0iFc_gPG5rxgrw6zp8rvjnwDP-yX0ztm_EVJsMmz37yVkzwNcbLuRVyUPg2TelnXlAMerMLwT1bggEI5xEk0jyxZXkPJ-11V8t6Pw0E002am1Lk6C1HjJlIRmzHAHKV2jX-8Hf_3WADmpUXESq0kZBokwohVCQnJsCeoU_x8K2WrlxSLMm9-_9z3cDPAfMnMjLjGUakAgJJiaZZf8OhmsGnANLTPTu52sevXttBf3SeshdXjF7Hj2zXusb7vm4eqsC0mzV4fx09dsxzmyZbLn0DX1u0SXAFTchB5C2RGTzt1xD5IBiI33EY5CbzHcSUS6pmYts1YNxvEhy7G5HVNyQ4GPkPiub9tTHKnI_eDuu7EkRb2HsRd71Iz4UEDYUefnhZ5unnsLR-bUbXPYacQ4HuavRipL4e35NCt79mZP8JcJfVwalPq3gN36bdd7ZThcAcMYZiX4r8KMr071s9T-RPNit2P4-0UaOqI60SeW0anrsKKLDK7jKyq3aJXXjv24dGwYGhzt8gS0OYXKhokSmgu4qndLZu4QRwaGD6PIgUGYjV8aC53RIzHsKLrSy0e7Xmphsy_nbF0yLtI_KX4lts3zp-4hEUOvfMv7YC4H8n3x5u6_tKA4fJFChS6mmhaY-1egfvBXtf940goa3S8VaKlQdp1c83gb6q74AmFQFIEWHpteFj-BL9Ffmtre6ClfoT6wyEsu2C6XqI3V3IZ6j2K1Wv71kR9GLxojD8VZ9HwwewZVYSqz25xhGCRwpAg_puxhzyBeKl1sSleplEN-ta2wTwhb72wMyCchEJyKpdCtO25qvMSQq0uCauYK4UhWwGQhAeLkMDcWPTRUQCcpaCbi6uZbGPq4HNq6ITEXxTTh-JHHjuDl_ern0jUAxq1CmgPnvhujG4QjJ-tRfQYWyDFiQ6MlpCQduYdm4Ryw-vGVEIvNLY586T52VX8lZz64Je0yolqwe-ugsqs3ynVFjQ6JD3TCejLHl-STShKFNafGAnFi60EkPyYXy1F6UUw4v139dl0JzttqCxjErn5aGgnsJqeSZ8LlZi2pa0rQ_bgZEtfQTnfJdVbGvcqyEoLo6bj1BOIK-BkB4fEwa3bn_jaw9h3vtWc9k1kj3M_b_5KjqcIgjhMxtvWGM1q31YiDYps9HFKW1apbXx9dHzk_W8misWPZ2RVF3M2O_vL4l6jjGl4eVDNH5mo9zJkpr_sZw_SZwq6ix3Kywqy5hkbGe547a-KY9gbGUPaCL0wG7v9u7rFNRV19i3nZgIYH4kl38yvUMDCw8G_lH2ViRik1e1672cviF1brjDsjG1V420XGXpnGF8R8KICGj-3piStn37DZwlTv1Bkt1DYcQE3uOwclkj-ZDNhWWKNnjQRA2QOUZR82E-EKXpRv3BC7iZWkMh-3bVgl5gShZSmIvjOpKDVgBSJxQVfnFdA2NJ-wQJ6HBg5pJ6K6UQlHwZlhpSX9qxBOOyL-1spA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6781056b85e200-72583110','','','2025-01-10 11:33:17','2025-01-10 11:33:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41953',0,'cd-form-entry','',0),(41954,0,'2025-01-10 12:15:23','2025-01-10 12:15:23','{\"firstname\":\"Oscar\",\"lastname\":\"hamilton\",\"email\":\"OPTin2fitness@gmail.com\",\"contactnumber\":\"7487685563\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6se1FRiAgVDLoE-SpTWm313-&amp;gclid=CjwKCAiAp4O8BhAkEiwAqv2UqCQPzWl3kVIOIDqPyM0UKKXQKXX25-0AV00_otYSxAGKVv-exG23hRoCErIQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4msS89ifrjzQJcpLfAvKSPBrLwZmZ7dcMGrcofPUXJi4TwUg7crxyrSBD6Te8oBLcLYoCDemLZb0wOepmFQoM150PTay7xdyseENzEps9rkVxiPV7pvAZaUd73n7-5w60a5rW_YmE9nSCcsslezCTJ_fqExGRzW3Ni9mCCLYJpr3CNAKYCoM_dhBMYbfVnyLWFEL5ZHEOFZOgqdmEugz1KW_qe0h6JuEm-x1aXPvCWNjlBMKkBYHeORv23sZxp1UI8fKXCWKTPduTVw3mukkoj1gf05f7vI5yMQ-SbM_Vvv-zdP6_-811PYHtceRyMR3MXdzKLUfFJ3JRsvm3pf-4ZZM4uP1RRRFNiDhQYy5QsK_PX5Gr1uUj0L5Lcplvsmm6FTC958jN-9XrtQfo8hGtdb_h5gqAObuR1sXnImLWJvlgnPam87yilBIg61qhJ47rBoJzVo8A8v3DqAEGWyp7rlHPw0Kcarrw7QxOCA-cX9yH1GYQkSiorGvZ8GWEDtAxY16O_zqGEmbdmtyYhtK9J8f_90khAXO9Pw6Snj7kguJSub4hQsff3oHuUSGYvwVK_DF0osBkGHNQZ_ZMaO_0cOH4RZCneokk_D1MH7FXyfe3cUVLd4pnNYSfFezkZ6wDA55B14kIU5nK5lYUTevSjQKlQ32JMj_6InJ8Y8IRgqv3hLsMRkxIOvL6T8iyJCAICAsz-KrScJfPIWk0OaeOJotKz-0D-ocLQO4qMWA9C-To2neY6CqlMGp0-VMzqqm2EtH57H46aM_4BKeHnqDmIXlJjNLQtWp_TD2E7aCnKN1GY88LFz0jXtn8Wudz35CIofSNosD1E8VMQEtM4O5dFuuqKIjjiBdgytRdK_ZnFckWEOnYGvDJBtoVQOIPXNv2dH4reQSVCbad0NthytuDFv-wOVysHYtfaN_HVhx0V0RNNKPckYAL2feeAKzleB2HTUN4DY9Ig5c5YpAmaOyYhvuqMzDAtgunTR3cn8Ex0yzS2OmYkQAX1urnVU_T8o2C3I6mPd0plAiNK3fmFeDwh-zmv18e5hOhWuH8ExFFmUQOD0PD73IwAeLzupDE4njvhCuEqV4M0QReI4dIxXedwS1SJXBuodkmGN7tn_--89rf8XrBLbUHiklsz1CO5ejM7xHdk1aWZB0S25Jis3XjHL0sQk1QCtxcYr8w5ihOrn2EdIJW5q5OjhPdcOrG13pUn3FyqeYHysgTsRKT5rkqEzYItoISnoXgfjWvQlUI61cIuSxxrOJccSA5PxMKZUowG1_TGzDgorXnZTLYoRreWGEcqStFh63_kdjiZhmhptky-W1vBuR3LpoBuueA6KFch-44Uv-ifNuvXgtpMXJOyrJ9xrTVZZdsZFmtEFHW86kUcss2qAW-jLycK5IQWooCPWZUZV8hG1CBT8TZsDBKjHXEJWtRlOL16Jo4QivzC79xl0dry03cOzDWLgWpmi6EC1Q7J8xilIXyr0P73n1CqhyqZX3oCD3w-GH9biTsvpOktimGPrgTwy75GdoQnPDI63b5U_OSjJdT1BrHt7BI83jwh1GvIlMlBbqXoryaDwfuVC1jYoYL9-VQAKOnR9Q1JFOpJzd6bW-NkQBKAMJ4aE52kv8DWVVAGp9ysc755jXVZLxGxQZmp56H8nQvawWLSeFy59qnBvfp-5gXQHp-BqpbV3tonX5fSdxi_vML2OfUSVquFh33jPapphxMSaW7InH5--nihq2Y_QHGzrgrJcxAJyFgOaSFz2uApZDC3BUopVp5ismv_NrejA9Oiw64T3XM46XeRBkPci75vyzh70r53gWRDFnPRDPPicVUa0nMxO52iYTzI4M1dq-Ahlf2v4SWOTDIyBh9zxqykFzbfYVJHlKzf2vozRcYEW59ZJK2s36mq6zWTEuNgEBAR6VCCGE6hSzGONFT78zEs_qtdNXQ7BggRhzn3P_5qnstZIzq3FzWTQeAIA6CwX5gOKTOxvxjYS4Q4Hb2JHztg4y2eoCE8rO5G0KmUobSAFrRb9J7KfWg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67810f5148d872-19970973','','','2025-01-10 12:15:23','2025-01-10 12:15:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41954',0,'cd-form-entry','',0),(41955,0,'2025-01-10 12:16:44','2025-01-10 12:16:44','{\"firstname\":\"Oscar\",\"lastname\":\"Hamilton\",\"email\":\"optin2fitness@gmail.com\",\"contactnumber\":\"7487685563\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6se1FRiAgVDLoE-SpTWm313-&amp;gclid=CjwKCAiAp4O8BhAkEiwAqv2UqCQPzWl3kVIOIDqPyM0UKKXQKXX25-0AV00_otYSxAGKVv-exG23hRoCErIQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6_5U0FN1OZHN6n8kMUIzXF3ZjbA4OYxJQForLXXzMcNsZghGm_V6OjzGYn3vdKRPia90jifUR7My1hXGciNYVNeOIXD1n08tLNnqanVJSaAnV72W8W6Kclpb5oGQ7S0hRXfk59dJlyktYJpIEvhrfY73MuMZxz9HG-hKQ2-oEHaVDmakOKBj-EAbh9IvuxLEmOiBwLrUiZp9_A-TrJq0FhJaooS7r8zuMKq4ivoWd7a5kJI9HvJuERo8aEXk0cL9AB6nkZlKElaME5S_stEkVf_UzPrU7gGmxWMBCb8DkBlJ1DYoDnI_S8xtgmfPPLn4yxPPXJEdt6JY7-z9wvO65xou9P82d1g4v20BCS4aiMFP1wx5H0_jfBkECxPTT90wlpRPk1PxB9-cGWkZg0bnu1e3ebwY7iUaTwTETPiVQO9MM_svDqLFZQebVa5sah3VYbQU3HshyQXb9QROdxiHPxdbhDA3AlzJqDDtJDlZkcrVac_C7AIlGJCwvtXmo7egcug5fUTrZHhBY-9JadsdWnu1IT6LIYFnVV1B0N964mYJqzR_GMiUnzY7D2Rxllu8FCrZsHWzZgden3DEBrwOL77LjGY2BgaKNu3dipv3T9tDk42QAx2wKS3xDl4eKkXKUE907M-Kf9iJEKGOzFU2yi91hlz3m30dhyo8kw3qvJyWkBuG3b0OjydxrinWrS7rj0oq132orDgxgauPJc1k1uvNai0lHPQLHzn6pYHT4EbsGcsa1LJmJbUJOrq9pYEhXWScTlpOmn9xF8SPBXitEnhahXo8arl0mmrlCrBhIonXzbQuESxtQ2XWz8spNelHunM5H8G8NaRs5mBg87h1gp5-6N3ohed1fnjJTxobJOz6OVvTK5XDTJ2Smn4RYISvP9LnVfowinoy5YvoOFHqFeWkwRBsu-cE5bPZp583Om_U4K_WtAC3g_4cmcmRLJJ3ZpLMkwzEIkB5ZCACRey63e5YsHQGw5jB0lBCQuWmaqvZnFAkUYxnP8b-jO1LRSg2GsqY_fagwOcGA778iy5Ht8VoXfb0ET0bbqfvYWOx6mB6f1VXGwhn5DfZEQsnI1ZpSHW6MmzyIe8MhNWQ1jdFgsDZ93O2_IIzjVosVx6lxRK_vnNeFb_doTNbWBiAIP6s5GJtb35P3Xuwtzm5oll9NynVN_azldroaszssXlEyKrcpUTQqCbCfWXB5_4R__pF7aP8FkznNm5uKro2uvPyzG_DFdWAzJTEgEoLqvaK32OA882F2ONviaqNJpMHc6qetxvDGHdoG1a_RNUhDoYIHKLk3ZadrFLv31QGvFkEgLokyFYNCICreFUFm7Mk7lU-4j0pVp61c4Cj19PnY8WH0VBEpNk09OSxOfWBJKdTuzMW5RsVu9rTfMyUSshR0vQ0v6EkeK_KhxiFH40HiLDzSABCvzm_jv7GABbDGg-BZQ0p9BI_C2eANWHLEzPTfFHc5XsTzurPmZxpnJORCJsJbqbEitU-LoLcZiTWpmD_ukzqG60XQU74dgQisHfcCKv6bxQFiDOoazEvY4YMDuPKiovid0f68225UYboy4rweM5kkMRaGHpfZbPGR9G59wcA1VhEdOEDRst1sUeL6uGYg28Pilja7eVS0RfRq5GgYyT-iyfe9NAdZZdk4vIg8jHv7Q4z_WAlDANUSZKFWYpaP8zCX6OJemH10Jk5JgCgiT2GoWf4IcCgk2RAM7vaFQ06o0nWXfi8Pm_aoSZQVZJRZCfnEmmdClXOmDoaI1Aew3pdapieIRoglVB0AZGHWmFoe3vyA_PrT-NdC69c5A55E335MMsl344v59A0Exwx608VuU8gdg9NIIo10z8jPMaHIjThKsj6wmor4ECYKGXA2_1u6Qb_DGiX2XDRbghFeW_p_cNaRztJuYmeK_UZupiXq5eu3zEZ1qtKpCBzd-MtjAE4K_7BVK4eT5rL-mYybECoOPfoMy4QB_3LmMkuSquwpKOdQDYmf-3a41mfCnQ0cAf3gKqGdcQLPbUE1KZWVtmPpycyFmQYlcqBHOrj6EMjso4kjscSIDlJP6S3JbjtZBGZxOIDtGyp386q-rw582Y_zIcrxE9009rX90D8mo2hROlCpRbWKnZ6j0cZBmTWdfyPB8cuuFYP_FiFP3jgm_aqRkaP9_T1NxjG74Gkmth9BSEVwSsftuZkV6IBBQa16K_xBMD_Bt2ynS0ar5RYDHd5J2WIaLE05SKNEDgh6LaCdm8OqHO22egXZFacRgvdxcRRurr8WeyKm_4AuRMTkWJ2nyADM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67810fa179f048-43855957','','','2025-01-10 12:16:44','2025-01-10 12:16:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41955',0,'cd-form-entry','',0),(41956,0,'2025-01-10 13:38:37','2025-01-10 13:38:37','{\"firstname\":\"david\",\"lastname\":\"dickinson-Wood\",\"email\":\"daviddickinson90@yahoo.co.uk\",\"contactnumber\":\"07434254279\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6V1eol7RJxhcDsR055D6sCT_RKv050hvtoqHBK_MIzXZOePWrUbmECyvJ5vxXInnCdCuE5NWkXp4BvZE7IUBggZxx8_HjW4xIxgyxjW0TmuK9OT0YDuoSRM4MTZCwYu0Ca1_d4diXa_JwyCmiKR2OWOib6IlFz8eD66-8wAp5z8_RpBlbtDkII_ujz5TmhKa3NDXFz4ZUa4xYQ4T9jie6L8w9GgpHIq6ntitAzsx1rfTHiJKbXo7v6s5RsIv1Wr7NjYhgx3nKgr7b3nfnSFCEb_Boc3ZnmFMlkWRdsa-Ldw5low6Lc8z2jFIHHVoWEByCg4kibRU7XB6-Z1Cqat_V4ae0gNZuTTOeIbquvTMqnQHMaEDdeKtojgLfiBYHbc6Js9Bdztm-RQhkexKJMcTIkE2XJ7bUcMZ4GImDSOotHr7BF48vCjPEYcWjspvnwIb9g9VST9sIJ7PPxdWyHFcFxCBZX1Kpp0UBO-eD2KQ_lQv3tL5ul0ikPWQBkV9fEl-5hxmw1PULNCFNWwnOwzrcSIbvK-RIzJiMWbOi8DfbDnyi1evL2RW3hYD6lf7qex1WZm6ltS7lmZtaqgSYWCtGOhYZnfeKmTzsmiFGQCULW0ZfQH1uxFDVyqrYNwWvC2uRnkUaRGbGMP5BJVgd8lR3d_jTS450svwwB801V0zPsl-Isfc83XM_v4d3T_pcC1m-6kAGJBlprnM1WarGk75FwBTyjJwb3i2lxrr7RIbVqGtMYctfke9PP-9theYKso7RHvcbC0iInskb-heE6irjYNjbRpY7ikT9Z8r5iu9HZ1_4dp7Stl5945b8uPxSNDogn5wvKbic0-NsHJAzFOnZV5SDu8l3Hl0N3fXbZnuFQsoVaarR40QzfR-_jr2F9OrOEIvFPgns6Todi2KnzIySJZYxjAIQXzSGLzRISE-BmoXsG4pQPCNfF_NnFPOQ37Wm5YvicXP0-dwRr2x3odIvXBWoZtOohQ5QTpmM5ZGrv72mjguzYncWW3Anos-15wES9oSz0RQv2kbX0wHDHhNRf7V4Q6UQRxqdLPTbN2v_oEzo6hbZOPku7TSpp5o6ohUh0-P1WynMV6ToDtfFWyJ4rThmzXl3Q_j-x2aGdjDt_-sT-po4OeI_Rp0tX_6Jv39wsIT7De2Qkw1iKyQWIaQr2TtkQjaSFkWexKd0yysiyak9BZjvF1-bzKcFs2-fNSFaXs2CDrtVlUeEqehuGfLXe6-iPcdigVET5E_EVVB8Axpw18SbOZe8aY_TkXuXKseHVcYDc3yOjILnJYGfiOaZgGkvEt7cntltrHYslCxqtHDFSXCmCbyTABCkKFmYP8v3XzurilJ4464RlL6afoNh3Q2oyfQBP-AsFWBx_4ZH_kc-bTy-bcPBTDeh_xxip5qriEDXd6jLYh8XMBW8_iEAyNHgW7KMhKKCjMXwg_gTrO6KsCezQlTx6vc9kvYyZ_EQ2_-kQQvewsUP3XP8Cc_fv44WgjM2WmOjjd-cWSyY1mEFtQbuj883nsPT-mNRM8D_NvHnq3zIwBAEPfYghJ5EexCJix2euHZMI-CJCanElrhPorNDtBwqcjzEjJC2MN16ZBG5QYAZU-IhVnuuESfdMiTllwJlt-IEwNn7TL4ccaehNotH5gyRnuR-dYahEVLDphkgs1E4C3k3Yg7BZV0Yuk7bGrU8km6xfvtQv84cAdcrPZ_5u9XpfbId3nQVhCTOyAIsCquRl84ib4BMJ-Wm-SjFbpOBstK9UK0NSb2jW5LeIGwKh9xtkUX-c3NLT87gy4i2a9lXj0zTZJdm0IfsYkzTyaBrHqbSlWGCKt8_Vd1_iimcMcZktZQA6iM6OWtw5szAdOlC9o29vcBe_QdtMhEGLAPKWiK-L8THj6TvYInbX7giihDz6XfbWg7BYR5G0WHakPWkgfaVkREniEWPGaYpKKxa4s5W2-o05zFwqWKCTdOGwWQnJ0Bxrc1JVFSNfFkatcDiShTdRp_DOvEBV-Mvnk5-7qqKgjlHmpiAf44bgpA4pMgOWNUa_T9yq9sgd6oamQopYHe22DMzgN6E9j04KdX9LnhVCG2UP2gflRfgMGfRVDQN1Th2LqrBQQbbKkdB8J-i58DRzshrNo8osoWdjJt-fc7fqKhZKAxSe1aBGA3uwR1Y3BV3v-AIxQD2Di86HD1XF6JHIBt8h0bDJnkhTBore2eKlzgbPFW-0oII5PMMdvHUcDYFu0lidkbN7Egezm3miP0KsP54YvOdXlgLikvi52GvlOWQ7d9TyOSkWw7svlxM6fnoGwWmrzWJuDuoDYyoYXpvX-ezbciNFThY9VvBE8vPUOgTcdGa4EGZF8Ug_akyfqntoD2BxzXB6oZ_G\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678122b24027b9-22483389','','','2025-01-10 13:38:37','2025-01-10 13:38:37','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41956',0,'cd-form-entry','',0),(41957,0,'2025-01-10 15:21:59','2025-01-10 15:21:59','{\"firstname\":\"chloe\",\"lastname\":\"saumade\",\"email\":\"chloesaumade@gmail.com\",\"contactnumber\":\"0033767084105\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/what-is-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA78iNtTHTxqSB6WNVlzZSN8MjGTo-tkOi97R1EGFp9Hw_6lh0-cd75eHzu5jU7aMCqmFPgbJ0yVzGbLky404GY4JqmEfcGHdB_sBGL4IXtxblxliX-H7AbErOwopU2MKbW7mXmnwDD4XQVgc1W_1V1NHjtoID57FxslZczR44Ja8jsCxBE4u6xFnAzB7xoc3VrIz8DCsVgQocPkpcY1Jhg1yD3B_7RfJuDSlAsWgoT9dHFblyAiKmHaz3LgU-7CZHSagdgnWBPOVs-YCAW11WcHOGG6lSWnoBSgKYglnPrhBzgiWkfDHKWgJJADKQNnsArsNuL6M8uULCaUM5H-97RG9l24OV0Lqy4ajm-7Q6aptd4n4WXSVd9anlSyObFFY44Uxh4LHlxH5LS0tagePJoOa87aBeUOh__QWOJaR0EHgc1XCrG5DVcQaN1DNAYQykZSggyMPULsklBCRFTUUe9quwD_2e03KR6aoTLWdYzEy3jyS2IuGhxEAIDCXjypE6mOGAlyxWsKEyVYwQC0klUl72CssbkQGDg__NGUr2Yy7RPCJeRVeAft6uHS1lWpUSrmoqOch5gG3_5rZAR6D2XsxQbA6uXrmp5J29Z2e6WjtmiKfDEQYBbRP96i8AGey-uB3uByDlqTId5fsNdN4IHdNJ3Q8icp8OB22np0EH-BopZeL3d14BKhc-NInADR8g9Atezd_yDo0t7MpXIg2tyTm9ZIvHmlxJUZqJY75e_3kevBhSRmbN5s_XYbj6RthtnKAjxVEkmKVa6lDahBnFjOSTFVeMT_hFbGRMkDrWme_QCFy7GYsskrtvS8mn-nThpd3FkHrSnhxM5WXiU4QTSVtqWCX4B8r3sEYS_rYpDYE9ow8EX-bd5mLZdB-_9whN_wBHSG7HhMLz92Oh1o_yev3qqyTDoQNXvpxaGPdIu6tcO_e11iWQnilhfc0yL4asXGF9fXRs6cKrgR4SEG12vgqqnLvPNi-5UuC7fxhWPwa-AkVgR8zWP6fxY1Ww9R3MYrkvnZaqPQsB9iYvP3S3Qt9O79mqm8IkhliPBI6jEosNHS9j6zORK3XKGV9InuljvlwsgFAU8WDXNF03-XuhFtwnD2jeUhGrdETI2gdupyZLqdTvJAjoL0bAB-GgGFpmqSZtLQ9AwnaoKkfN_yPDKf-WJxHqwf_ZQqXO3WdQeZk7fi9Oz3Eef78s6hkgLD5QFhBihEcqe1joU3CTjlEhJwRybxeLUeUurmRtNeRadZfQHBFa-IpXtmtSk_5Lc61O6Rd-AtdDpHV1xdQ_JycgkF1NFzchVVByVnKSnId_YXFcl3Ovo2laKtwD41fNLoKpCWbroClllCDapGtqK6YzMzT2WXHhMVi6uqGg7BN38CIrjKk1uLCWL1Tma7Mo6VLC951Zn06g6BqWuqjkPfQAu6Q9YjmL93Db8u6ZGt_sVVCZmeAJKni3m-S2H-rR5V4ZY33yvoUqtsClpz1faybLTcx3xkG11ZALoBqZsmJ_7ioc-nMd2mlGXjXYF-c5-uiigeAY6v5Pzp5xFwgLAOY19IUeepZAMF1fx5NXmlJQsFlmyunupfEHahBlcxFeAlYOIk8YYN8dPHk8T-Ph8JLsI97FB9hCfrt47XTXbaZOXvOJk-ERas67u1ql21fTpznF6FuKUcwSDKIcGQVd6evPDK7S3bmj71vfL5F-HgMmX3dNWX0v-kw8KU4H5Im6ifJK_uYOVx3s9oVd7MPT3J9rSx-8bM6aWxgkkKkwEvWCZ1uxE_SyxzN6rQKFNiJ1tMOINIKgGAlHMN-C6FAqyZDkObocoph4IyhNwPMSJHF0HsZ6MFuqjan_urr3phJ72WmpqTHlK47k6Q4Nce56GDba1JqQ5Do9VHPd4VdVoc_l-vtNJVjO4mYNjI94ESOHUOHKzbV6e3PofkrpodKnyo4Eo100Cn_kXM_5pE5rB6vOM1bkyKUSs\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67813af3b75aa3-48708968','','','2025-01-10 15:21:59','2025-01-10 15:21:59','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41957',0,'cd-form-entry','',0),(41958,0,'2025-01-10 23:07:25','2025-01-10 23:07:25','{\"firstname\":\"Lisa\",\"lastname\":\"Williams\",\"email\":\"Lisa.m.williams1990@gmail.com\",\"contactnumber\":\"07388907557\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAp4O8BhAkEiwAqv2UqDuSTyfYSDqRomFJf024vTRkv4EJTRAr5O7XomSmfDY5AhAL8n43KxoCJGgQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA61Kkc5rnoDOkw1QZTTcGSTxDxIi_pGvvt1QaLYrerJyqkbhqG0YUxcYRt5mbKx2C5mS4A9uLJT7a9IbiMsMrBkTN4yax3MoR899Ujn7UL9OU2nCB2xPdPYARkRCMGVoEgnjwiW7e0bkLFbf3dgJ8SCeOSU1x7xTaBnQQnS_jyh8-5vxslCuzLQhz1VyoU50OhE4cihlCr_BhbHWw1Lo3jCvyeJOWOt6kEWWKpovKugPg5u05gEOZgYdnRmbfQn6gRsn6wTcYdDev8xAKLJk7KAXsoz1hTabUXGfxnuRQbL1dD_AhrGwf1acr_fCMqaRWjGIL2ROm-KcF5Xk3Vr_krZ0ZNmD70S46m4qBkZhLXQdK0UKHnI-msFUJwAxEiB7BgVmQwfZ1_YIgDCUtJBE-G_DiN8ORLI8GEm0-MbXK_PNu9ZfpK8ShKT7EG2AxwwuGedc5I4cPWasGsqFkaQpo7nJWp1mvQ9WV3vxg8qcwBHAnaoo_JTJ740QZ8hABlZpNP8LKVJweinipLETvSz10gptzmyuHQy4RfbbgowbG45sWT2J_He36B-GIqtxQJG7x7R5uRExPs3cbbUt_8OmzMar2XoDV0UHqMyYCHIExSUX5ePpXCt_UO9G1XaVzdcYys-LUosmSz1HDx1sHko-9PTQzgeaQmA3Ojn1puaURPG66z1ivfWny0jBZW9uh5b7hyvHprvErEt-ASRdKAdYi58uqnQkrg5L7KnGcUnbQ6IKK1vPu-jpuc1SIMcsEt38a6fFxl4oU8TPP7p-FnIrc_6Y-bydyitrpbURjei4o13zNONWYhi_3kaNBbu0NXJX2-HJaaOtndCqwcvMAL7imaKz2LZJXUYTPvQINHbfaZJBLfHGRxkctJgx1QuFz8ybwS056eWVB5vyD2_Qg8qbXU-1lBDTrbNEfLg-fJ7Q9zgcdKZ1TDXgdP2rXPLZj-hMS6YEpVodawAdGk1alVBafOXtkQLSXgq6w5isCReTQKYSWOb6aNkpQ_7mk-bXCWt-hztG2GFDXqHOZE7kWUzdjujA0TBsZx3Muel4rBWeBDnqUkgylgAapEVWMurFd84X6Z7-xtjdM9R3-17R9Zsn4Fqzx86azrgvo7PyevH5kuP4gAcAmY43U_8jRiJ38LSEhKaYnJJW_0WkQsPbnTyL1AV6YQxvdE1BKeKyqNIiK_AnSf0IDcLAX8a6rIvLCwg3JmPsn3pRbl10XHva8bewS3BLc6ZYWGtxcWh4J4UUfMoUbTaXoRlFAa7OZwD_5oK9CN5_GdqrfVop96Fh1F_KOczzQhv05dretHTa1jvtKLPRUClhQWoAmC1LB1jbiFMCQK70NRVeGhHGUlP9zAuvOwd1vpFr8N7k1vQgq_YFs3l6aCW420dyYP_rDGECvrk8c1CwLB798-cb4dtYMfNXvEL-FGwzfRr3ZyBWmhsRqxJzb4jGnUWCR793EHzqi4hxW8sRm6sVBpYjbBMsZQ1wgc8YBauiRIfPWTE4pXK6mZM_XuwNwur-HhEPwmK3p2zjsjT9nnNSQwgNgXUOZiZsk9CPIefGY7kRPUQvoFCSaKW2Na-ClbCUCawxk8GrUHBz7rrN4GDlDXNvj3PVuTm33c47n1cDrypQD_koFtlfEr3i3p1LSB_lTByNY-5yRmD-XeeeWpp-Gvn_1u1LlRF_vTlKiCaahqQ8FVuaDihW9lOn0Uw9hIzCiZePTd1b4W-4MDnmXA2k4qdBvtNL2JKbKIPRX0BfIy3ogVKr4AWKpUnXAPWjS-U5h_j4BSFADfFrJUvZij50_-aqJjnc73Uzottyqe3eq6udfn0AS0twlMp3vZNXPG3p48SRfV6mGkHdcIwHmlUY_wTUAJeG-z-52DcqcJ67DJ7eHM4Cx5SIY4vaN4ppR7CAwH-LGboXPOEPw2SbjX6kbB6AVnWtjhm17MSAQsahtpUNb_ynRy6Gv9OULzl8WF9IYqNHYAmYwaJGydCoNTWmeXKIpNNZ4IH4eYJJlZvlQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6781a81b6f0768-40157539','','','2025-01-10 23:07:25','2025-01-10 23:07:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41958',0,'cd-form-entry','',0),(41959,0,'2025-01-10 23:11:06','2025-01-10 23:11:06','{\"email\":\"Lisa.m.williams1990@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"S40 2HU\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/#\",\"recaptcha_token\":\"03AFcWeA6UKzB28AoqiEJETgpcbxn2ibmtd7KBpt1eqzSFWPI53QYYkedVafYJujBn186XV7HRe-C2MY8RHuilNVRiAxdlTwgOCjukGeg4sBXA2-AMvD81D-BEEenkpZrd6UUMXLgttjrcwKR6W2rtBxyOsAB0LwVoK10p0QGk9aRjkuUhCxam3JZuVq6vJfKb8HS-Yp5U4JpzGKvsAonZIwmDYdICf5In3QjvIqg72t6i8xtqblRIRtcaBwL20MzRlwpagyjCReoDsiEd8773a8FCz16_ALV-E0kU1IKKmifHLRThNv5hfehIPBqovueMv5tZuFi2JGR7XbxmNusxi44UW2kuS9DTodXteFVDEenk03qkMWZ6x7Qdy7yoGAbOjoYVfByJhf9argSRsRoXIfncpJfZSz6wQD3ZMdaqqAZ9RApK3ca3uY9vxXNXsRra3Ej3e0U4mGKly0JDkjW7CjxDfy5BIsqa6LI6v9aqYSZHaHdD5cHIj6CR5mJCbfpNg7EKtzAqBLSVoGmEHUdDn3YPlrrIeB-2moTojT09FPgoUiJWHfceVWdQ6Uvebu5DREfHIxrRS27ePCzatwjPdG9El_SbZmjXgjA2aZZ0pYdnwYUGV81ToPRWsH26ZKbW3h9G9Dmo-kxo5egW5drgzhbsL-opVmiWWFoN9jN5lkLlM-mh9-7FCQ6yUCl9dpF0Z4AIKxEQAf9oCXQNxj4q48JM_jq-2Y_yazcNJUkuMR7Kd939vpmTKs9rRAIH4sUMJ7RQTJwRsGZIdQz5UiWfxHivzBHJUFh2Yk9P3JOSV-7vUHY2WurZoGwrDIYqVBPnouEg2cqvLVEHJA-BQN0sVuBOl4XCtQ3P2vK-vIWiwb32J-mp3aUxaDphHJwlKgyJGr8T0MOWNdREFiRfyt_YmhOyyK3PMoVK6Sb23UYlVoGKlFZYhu1j-w29JFssR_4_m4gpOyHfYpbzStYG4LS2X5PjCguDNESCGxNvtDrvOYARa9p4jpjilIOZjRQURJKz0S0x16PH5dTBg9o97Epj5NEc62EfMmNKKNN_jQ-ZotWVCbQZoSejaDPfH7PgfbfmdgibdSKEjmn8bmjbqrnEltIctyagzEnxDsRmNbbBVnl9BLJKkD42KYUdzEjxpOyc7cM7JIAoelkfE5tHg2w90d7NQ_f9xIj-WvQOVIgAqVMwfqc3cETYjBI5xcdd_aP_CWyHutvkS-YKPsAnn8aAo5OWXbAh6xIMbAshdokSSt7HzzIbilHIl0i9fAm4Meoj_sxE3dx4JxHUvxgkD1VPVWEgN3BIAMQKWFlhBhajhdlvgg6FQKx7ThG282GERPFTZ4GFtEpZGeEAwDTatxtAmyL-0rknIALx01YIYsVXTWhvnMOBo6ddKl9ndG4coqrNWQ45knn2j6g1eD_niHsEQKU0YHZ0UFogqC4sDSPE5AG-Y3TI9lmTEuzcFSGVnx68LxiTaKo0oq398Hw592rCjjuD1dPFmY6OTzq_miBLj40oSJHvponbwq7vUUXuXC--c4kKoJI3s3XQGAzkc8z7mmgyaEqIexrh0RsYXsUE9Lpgfv5UeFUOW2H4xYjxKhVlWdkK0ypwRAjL0w46kQiyCPGpr8QmcepDw5O0iPx_vc6-q8xLGbnvNlezy6CyslNvls1WN0Z86W_kGMzeipxMkgPXpJ3kG_4o1WZovxrQV4omCH7Uw8lTbcpWVB74fGVuU1kja6Ej4j5d-wjT60qFFB48wRqgX7EIbAa36EIzTx-1TvIUR3JYAcQmJ2tK7dd_CCU6CiAni4oUpaEd-mxtlJWQ6hJc2I9UA13Re3latZzRPHjLXWSbpkDMq2qxVRil-JCKnijLh-NtoUM1RAaag_IaXvHSOe9C2Q4pGliRgCEOR0E7CQb21AcwB7iFwkKE1DlZiJCs6ddo-Ogap6mt9BG0LPVR33EwNQd54Yfp5enXvUqATsPFOVhkwI2_-olXLDZwPbJ6ArB4nIYH5Zeey7sWXq8X9UNGsnsqsINFwrI-Y9spjXklhkHLLQHaHnn8MyRf27S9j26C\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6781a8e8cb5948-88283828','','','2025-01-10 23:11:06','2025-01-10 23:11:06','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41959',0,'cd-form-entry','',0),(41960,0,'2025-01-10 23:12:24','2025-01-10 23:12:24','{\"firstname\":\"Lisa\",\"lastname\":\"Williams\",\"email\":\"Lisa.m.williams1990@gmail.com\",\"contactnumber\":\"07388907557\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/#\",\"recaptcha_token\":\"03AFcWeA6b16U0aH9kPj6bn2fJ84kcKHlYKK0cO_CUmmeRuue93lSVR17RiayBgYRMjbSTXmt8AO2fOAVWytVjWnxxyj7YpZuo7N16HLXqAhB_TE9D009UGF4EzLBulhnxTENZy2R3AZ-X5wzZ_Mguwqu5Sp9p4XhKZRgdgPt0QsNbMGsqUr-3RHYWfQ28FRUrzJLXHl6JY41sZAzAQSbCQVYrhh6u6yV6K6zgj71cyY72NzbPDJtKQK_gQQCT5of_955w8Hkp_0LN0S7j6ui3qIVoawHgoFI_GgXmQlV0djed7wQCg0FU0yL1EL93WrflfDjqwSaE_t6FL9jFtPnqooeQa-DpxIZQHhnDbNu21orE8awQs6q3lNKyZYE6yOuLKWxUK6CGGbGnfU9QSpMyYjADy2qDq4N4N3TC1Q8TC244CUMs-axAVQrlNhjjsq4yoJWKRhMhOD7Mx87M5PzaVuMoR4K7NdfyVbeVNNS-me7Zop46cRZSoFV-GrrMfY5SNXNtNBPYtWIWgTwaEiD3S5ZDswe40QH6ARynHGHEj2jyPrHDCMAoy5Sj4StCmBYbRCvKsGJGW8gYEq2c2ZPk7vx5l4Zw-g8otNraQsGaQHbuGSF90fQrcWZtgGSWAKwt1cXW-q0hzHYV4O6RQj5MaRqmjQHVTAE-xZI42ijt9NvqwVU8YSmQGGxTJ65stYvtK1IzjBeKQwx6lNXqQq2lRPafIu_6di9Be8WnCPclBK-ME35LJLASU-03SJZkVndS2zt8z6eF5IJdrkUFFDFlxFIWHFOz0iuXx7nut3cpA6HO6-c_rhn7QlXezhnK9CHbiMKG7HgRKQHnCJE_fBlc6AeT8ZAtUWOm9BE9ouUXuzA0c6VZirnkcl_bauVAWV2Xhy1DStM65XFBVtUn4raoWcaXt-3bqKr6sOJOevC833LF0GUHZdjqQz9i5tRSM6GZL-aZmCj3qyR0en0eeUI72snCtv9mr-dNbR5AfNihFfrOhZPHrw7JDfCeIr8dZn4EP0tgVoMQaGmxbK5BWz04e0IB1c1cV2_yUrmyytren1DCwcKPHqtKAk1bqImwOOrPWEmg9mH0XDox3tQo6T3OXJ03ktjJUAESEGcRkwv6KuyGCAu3Hm3wDwAC4pQUA1HVQb96_9LL_C1-ixE1kPxx4sPp1SOuhIP3Pcwe2sOuMj7JTSTrjIi6v2POxIhjfz8OsihUgDLSrlV0HlCgFwBSOvrPXBrcn8pISlqgjKuAR-zZQIn_4afeVoYgN2ZyuQn6Tlw1hDQlEM6VbhafDG37DAoggzWxrk5UgGdxDO4WG_NyORgmeSMyLUXRQR_4iZslf9pq8_t5fEQygPLz7JA9l_JjOGw8qFzMFHoQpWsZoQyajAZY70m8BHqNQichjrVMlH-avPpZeLQ_JT0s7RcNKTvnbFKoAe674sV6j7bU4d-PTZjYnWb6OMY30h783uN1uy4wkOLCQdS7-5_wS-c2YVnXxilJzfG0vTmoUXdWe9rv62ZbDIPwii8jMhXuZXZfk2qq46yRauxLy540XnTuzHvUE3TQ4jHa1bQHv0FWoOKzZSEn864iXuOABtdPwCq1VitRqeKbVzFZ63SPO_w71jkjBs8wtqlEYczrmYqG8C1xw7-tyL4eWjScDh6gPTk8PaekD1IBKy-R_BwJ25wi4WUZRgDEG5HKZjU2g5zrEWPahAKfTGD9AdsPQpj_omGadkKzuYzWyjBdJk0-w95gI7KY1vEur50oEe0oqpprmsqXiTo_fFeYGR_ikNWLovqOn-eWla3a83UEftec9a34FTvfWjdNZK4OHQBq4B-IRiYkUACG_dG5UqlD8rYf28HeAGvvKGz23R4Q-w26hH8LU7EctcewbPOzI0ibidyrCy8E4K1pvxesZvpnpc5-F6Y2u5g9kWEQShB0gNVeP7qa6QEbHtlIbmZz7FNRhBibBIA81JQIAAGA9IWwqB1y4TqJyzB1anLzJvp_T500t-XZknkXRRqKS5KLv8ndn4vwsPsuvxzMI_dhBSw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6781a94cdc5ab4-79333186','','','2025-01-10 23:12:24','2025-01-10 23:12:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41960',0,'cd-form-entry','',0),(41961,0,'2025-01-11 00:32:08','2025-01-11 00:32:08','{\"firstname\":\"Anastacia\",\"lastname\":\"Gouros\",\"email\":\"anastacia.gouros@gmail.com\",\"contactnumber\":\"0422248122\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4xAxDqbU7xJ6M-YV7zi7q71B_7efNZgiwYf-k4rKsK_iKrmzQrJT7tKBuMdsd4dnKB-TeMsdgMnpV_gm9jy6Hmgxi-xIAjRTotE7JHjngtmGgRf4Xo1SMKyGtJVR7ScbAeLqHU-5LXX8CNu55Zj7uJlQ-krIvBLdt3woTYfE1MocatH9gLpA_KLag90EFVceTNkDYiL0dXNqgT4Km7EcVKvuQv2iG2VfXJ0F59Nv7UNBs2soZ-6mm-nyXxet8OLqwhp0HY0LbOku1pbOeL3QkIIOvzK-fF8zE_LGyObnpGLMfnU7ZHNvW5anWR3mt-X1v1eR2Hp1PgcWLeIZkcxueQbJq1Lb2SI3fNysDodDJrmd_w8KUSzsvvzWDZ1dURQfj1w5CHxEbz0-jhyzxiB6-iMxTmtZWwkwH6a7jKkV9D6iH0AfPRZATH14X53rPIPcj__b-b6LTq9sMdA54JJP8XQY2V6s9XGcA4Q-EGrR-YdHz_s2vLg0632cq-6VYTMd9i8fHGUnfQhA23hJbyUUZRWUDPtrNDZaVJLwXUvPVLgWbHZVu7JWLMYtceoOdQ0xKF3qOrBSJ5_7j8Kmjm-dOPpgsUna86asd3iuH2kB0pGOPdAwjDSitIaUR2h_wCQ8F68643GHCzmsx8sBQjvYFSlel3H7s-t9sA1P3M6GXzkvXNHUKHuBoWqIYBti6DOyWfMjjONSt4E2btVVuLp4FJWcrqotLKhXe7KpgE2R5DgcfhN28og0EaTfjcCRCIG5CHfqNIlROHQcgVAC-mMFNMa7U-Wab-vVpISUvjAclyGyVScFduayIypCHR4LdRjmZXcXDIrpzUtAd8-WWSC68cC9VkSADmSiKZB087tSaKK02jwCbqBce1F2C0lI6FPaqoPZwOt0fO9lYpJBEzquE57GbByZDuJQQ1j-o-iAUEmROs7VM2zG8EWEU54vMBcT-PGaKCyGYEqNVtmlzwvFGsPc3zoQkty4Mr_g5DPSFtK9gQUYUeeOswjCya5WhdpW3XgAspXqsRMw4i8u5Fph4z6D1mDyJrcLfVMO1fCewHtu10HaLXasueN-2HDJ4nXeXWdxMSFto8zTZzK_u3WG5ooxuRNWGmhYqhekDFEAuYOLv9lTMTzewfWiwrVYybxJ8PCzXKTI-YQgcVX8Qc-xPTX8BIFUjBBoeBF1hUdlHW8o9WaJS_r0-XN8EovqUdNbUV6RHyT8fIf5muaGt5KpDF5coFulIv-MVvMALUrmqpN_Ekh5JGJO1_b8NlYplC2mmJ-3Wv5fiY-zx8iOTU88AVwzCyoVUV9hGqf_UdVONNfZZe9PgmkMl3Rm3doagsILMYnEjNVL48Cg_6plTuOm8AHEDc0T17Z75E3KpLKE9McHrbLIDk6dro3qUtaXly1AZ58JckTlWuiyyAtjawf4EF-mRrgJs6iKOoqAAA1PzvVP5a53XqijmDL6R-J6tV0wC4x09UBSD9F0cd-wKt2_L0TeDz6DJCdYaE6mlhzqVRQLlyw2HyDDnk2KfmYXwFu0EeKLbGHPnTeXoELMGruaq_CdSP2OcoqrMxjlHm4hK-Jp7ypzilGJD_50eiCNgB3Dku90_NZ4MlKuSLxBtGBUWJ7bUe1h689bWRxsKymdRChzZzVUoKuvTO9TP7pAVrkj_siWjcM4FZVcfJ3EIP1Oax2GyevTZ_c2G6xE4Nxu1Oy5eku9-g8Bpc1S0nMsNTIcOMtwodP0Oz_32x-4PGdS3QAOaRqMAhzvN8QQy0b4rij-mnoG-IiLXUez0GgsOqaUHc0ZrgXJwV4GkxMXv-VNU3WqNXxtXPcTOuS0_mFtUXsp-1_9n9YItCxf2Adtt9Zt7eIpNMn5C-2SQgBKZd4E6_cZy8Dt3oHhm0JUwWPe46MlWFIZFjEeibgFRrxvfiFUyDV_JPXRgR08a3wmt8TH5FKMFnFHkYkYn-Fp1ZF6ymFqQs5lfTECn_rlWnMJ5Shq4TDDU6hwe-1BRIer7k9eoJmZBgyUp9Pqsnyhu1_l_qHoiXBPQbq42Xh598mqgSHlnM9IaB\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6781bbfa962998-39562206','','','2025-01-11 00:32:08','2025-01-11 00:32:08','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41961',0,'cd-form-entry','',0),(41962,0,'2025-01-11 15:50:19','2025-01-11 15:50:19','{\"firstname\":\"Darren\",\"lastname\":\"Smith\",\"email\":\"darrenjohnsmith@hotmail.co.uk\",\"contactnumber\":\"7725949715\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6s58CVkNlr-X133jc0pVgI8R&amp;gclid=Cj0KCQiAyoi8BhDvARIsAO_CDsDKY-7VWKMumWlPoxh4mJqweuuvFN9jp16Yi5TkX48_TzzaBCe95lQaAvC-EALw_wcB\",\"recaptcha_token\":\"03AFcWeA752XScZoyJUdryIklaPA94-A8bUvh5ElIbLF-uxcz_ZINQyUH7xv3T1SyHmIW3mBSCH9SE5P3WaolTwoXpo4W-G14HlIgllll00YUrpFQjFpEJuXVBJvz7TRzRn0Hi9xulhJQS5LgeEqc763KUiBtR0UsYgyrwcASrtEGdNgZ1_af_al4OxR1EdcEmHJp6ISMHFN925LHDgIvx4ldnsXWT8ugugBPh8N6jQfsdBZ9HYDh-TXVVV_W-xc_3TdLteU_R9jRxuXNPN5_QXEQaMqxjef9M9rnnbMEdZuZLh9E4Quye-c0FRINJAtyKS2JaoSD1zbTNNHhEqtvSOA1EzNnSxg-LcWS9Nf3fuTuD5hT4iQzRQktpFz1OgCBOvFoKAIiSNOObY2UDne6qel5nW9eiTCg7go28tjD1qgbMmY2Vyu9YkvkMHbRp1S583pSQMOtVfmsUdQWq380qun6jT-FkE4m1Ph25Sv7PA5TuU4FXwNIn_KJCwp7YxMhGwQJUm6zi_GVNVSqha7kwa1V0LbxUo3CZsGV7-0hP5z3h09uWQ7NUY4auYDQ7vF_bFZqkEvYXehNRpr6M_VxJVZMosarVJTkQYups9m2SVa_H_15a5TdTsTqwqFU-Qt6_If0E9fvAwhQgWfqgMPonsuK6stVb6IHJGYepvKuM0QvCaf5R8szgSzQoMtFSeZISDudZwN1aknejeaqZH8wUd84CuitICBgluKFoJL93NPAWDzgGjRyuJJxjWFPuPHV8V2DVxXzndkZl3U3oAe64GdDppWAnW5ay96kN-oArq2NepJd-QeuKWtgkaexbo4A0utNhbBmYqzzca1npxf0v4PhdP3at5mjaidrq7P7-HZ4id7-9rirNKpHVUy6qQh0slUBqJcUekknKNTuUVbHhum_7xNfTwzFarAm2PSjud0XxnYd5RThZWpVS-VlY2iQCUPxbpAh7MttJ9P3DPYlX5av-ssu1r0k23AFocsgbHPwaGElVbl2VUpYYfLqDP7QPm561XXYDFjZNyz7eusVj41YQqRpqFYncMP9P9rJRsa5TRQF7ADsPjhTFkD7N3LHp9wGUS7D_iRW6-rKtTgnEPmfyGgBP_2eC8dxltd-TAIq6hANz-J1RMQ88nRWk2ldt_lbKFOWywIjGgH1syzqV4LlHXl8_EeXWGSxGfaLwGZyt2vVgh6Ayc9TuTK-PmzLFsxS7iYOzOobY0iYJnZVVss9xJXiZC9p3Ae5E9_MozDPUhsf_al5HfZzfSTBOxSTr3U0ROSaL60lWZA4DNjGocef3WT4KpWfPfR359g6aj_mXcN7mCh7rFI4WJrMPtjElDBMCZYsnQJkvvnWLzeITTgkIAWgVjwTlwgv32KlfSFEeTg0fEDc0880ZHbS4sWZN2CXjKsq4Q8nqZXSIpw1G6htj-srxhFxMxe_tA_weuk09SrA862Cfuojw7J5wElsZUNPucHbl5Qkyos2AqsPNgQb8A-i0JjjLOVip13RUVLi3lMwX8UfdlYyz_JR2VYo7UjZtilBzmemrEyE2kHHcyxmnzOlnTlzDHoFliHw8E_BS2KOILTqbcZXkGm44aRPEoJBBbeB9RdK2egxHDve9lq2Jj0eSLO-iQPsDEggY0MRhkGjcbvDkymTLySfp2F2dMjOz4xTB0FwnmQxPvvv4GND1ej7Ls9dBGBdH1WN0P2x41Qc6tS6jLBbXTARoUXCfVSxSjiyUJ6_WGgk_-IjRVtZqZhDQDj7d85uqpVXNwvyGTEX2GDXX3pMtPbMB7tK_NvHxkheEzN8YpglWe0-6SDiIjYFFQuS9JUfx8f2R_Dt7eJiwoQ1fWVAAdoj23d8JQKcWu63Z_6rjwFmA6Qk2dpfVdGIxWdZ5jHtnCq2a6tED9lORGYvTt2ejgr_P0NR08T-ucWMO5ihYT_shEMrqLqgJa4k9WW-p2trxrgnM0FZXpWpej6uJp22sMuBtESGCLWQd_pfsgqRbDnKYFRVs4CJz6U16sIwWiXgIqZaj_HKfmLRfQjg0nuTmI4ror6Zy5r5jvtwY5BTR\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6782931685c8a3-54022590','','','2025-01-11 15:50:19','2025-01-11 15:50:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41962',0,'cd-form-entry','',0),(41963,0,'2025-01-12 02:46:04','2025-01-12 02:46:04','{\"firstname\":\"abubakir\",\"lastname\":\"Fadul\",\"email\":\"abubakir.fadul@icloud.com\",\"contactnumber\":\"07717778628\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tMANSADTxLMfq2pw66JJ4yP&amp;gclid=Cj0KCQiAyoi8BhDvARIsAO_CDsDww4_x6xjN2rKH0l7u73VLkaiv-JiJPVh94RxXNGwUzVt72-_ANAcaAuviEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4ztoiRCA4vKZnPqA0OejGCqr4_zul8IWjMt6CUIcmwBZ80ZuCt-yPkAzEbfqx7MmlWiiCSft1fRTdO8nVpv40GmvY_G_06Ep9DvpgVZG3zYCOBAd41IC-xGJvAnammjSZKHlM82BRJZjFlbGvgCkI-PV4wjuNd-44YFXN1v2Jvb2Fi52WX1sIW2OzrPatHbCGjkaPIImf9dwlnN00-FLWLjR6wkfk0j5At-FM8vhFVlPli4NTQ_Kdd-VKxt7Tkhvj-id_7-aMgf31Rlt5M6-ZlaDf0UBe_Ujg6ZyUorTAvE33nhlQwth-_NKel0GjCVugEVAoGQ7tom3dXMZ8awDfzGDxYzDzjkxLlgMsFmgkAvcLTU5qtqZhUZMwRhU_o1hXq6tW5pSGdVqJgrnyCrEyNfWGWVtjFqX6UOtogDuP_24Xm32L1zj5NX-z1z0QEQPujsaSXedqrbd9zzDn3rHtZOc2MVU_o0Rjs4AZ14S_uXE90dzJO8hRxvPoroBP_GvrZfuqr7VvV7h9K2045wghKoZ7KdkLG1mJV3EwKEPLbzImVSCHrFnWpN4EmfdnZkROW5sQqQxPq__Z6HwtIyCEAAMBkk9Q1AK1pNsZROusn9sWtmFdbYuRhX6RwGLTBl4n2cxucEDDDBcV4F9SvCPzlBSIanHBwwexa9u1PCoM0EDqlCPo1qey_4ghiy5kacEn0aF5ugySaMHCJ1mA3xw1CdBZ-qA22TCr7bU7TMzph-4P79wO_kL2uYnbnYILZ8SxRdSrMPclalPs3sPjJL_pJfyuOT52HHhV0DQt8PX6aBi8QYYHuqRnDh6sHsNZP1R4tIywdkl-229gYyUHqsXiu-bBeaDC6xOncjwLh-DFpSCiCEFLHG6xHN8IPYJQ8ACqGK1izuWZ5g-sAYn1TcdveHZM-dr7QeAiwy0ssn2oLm7NhEbx76aLWXPZ6wVnzVh5TFciY9_NryiebXFBYeBPWQQjFkiQLzxpROfFdGTfwhz0Zxpmnjmhku0LusxmIS1Et6E_mjztwm4gBvAoVftcaprPn0CvcQz0qLSqvLvFUgF2PKDW-Ke_sPm0PE8H4SwtoVeLJXV4SZ4-2zmRrNiK0zvG6DXj7GfBNaXy_ZjfHPAJvVd_YEx5BPCiBdfb1xHAJsg_Eom6ThtpyKVulb0GFXwNwB2rI-0v3ylWXKY3qzPu3IAgS0h_qWJTLK4kjrKPEljS_uRzNUup3tKdMg0BCM8GWZHBg_zoTEppDR-9n3rwB4fk0ikJYRB3EIAs18LiduRWidfB5C90rIViscMLn0U7Wxidvkx4RtJ6UdJwgg8BOoSzodQOv06huN9dozf4f1yemqynNnCy0OJc4bXnU_9A1nOMbxzA1rQa9MHNKvE79fp6ew7Sh_iVqCtzytuc0e5jLOTc_p9bmHIiB0oMDVKyps-vMI9dqbqscst7iCpv3fsvg0hhImF9_wwQ80ExgVhMEQO3hfrS9b5GYo-09Poig0DG2vwmPybI490OiWG5l_RX51hgsfR1kZU0fl12wdfSKOIura_JTAxnxR-Zv0aeWlwsZEzWt7zM5g4cLPoAs7xNXV9ibDHnZHp7MPBNJd4-nw4GYfYtk5hq1VULnYZnkJmlJlgR0e1qbWKOpCIx0Rpd2S_i6PyDrju8W9v8S6DV4o6HtUQ0Ce6itQlSNxDLvygCOU9BZiXeaALwzETmlX7x6p0yR4LJGRxPK5KxjbLwjNdXgTPm-tqWwDae42TjHIX7NzyGv6n_OeE4AOX7NL9EXf_J1Fosuq5_pDrhhxOxcbFF8c4M4wEg67xvbtQxsl4_RfCXsOHJV-aqGjpT0_9nyMOzErzzPtNjLEJb5m5l8OzITcbfM8C5I0yZwXYpiA2kQjagyyaWOSQmA5O5IUAFWEckT8Ow7lf2tocFW-1NxSg9aQhrGuYiIofOK0HSGeSjwIz8NzERXfgNdbvx_6fb2dY08qMSIGp5JQHB6hPCWx6mI49FLj4lWTcT89goBlg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67832cb0bba5b2-76066642','','','2025-01-12 02:46:04','2025-01-12 02:46:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41963',0,'cd-form-entry','',0),(41964,0,'2025-01-12 02:48:47','2025-01-12 02:48:47','{\"email\":\"abubakir.fadul@icloud.com\",\"interestedbecause\":\"2\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"4\",\"currentpostcode\":\"b32 2sb\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tMANSADTxLMfq2pw66JJ4yP&amp;gclid=Cj0KCQiAyoi8BhDvARIsAO_CDsDww4_x6xjN2rKH0l7u73VLkaiv-JiJPVh94RxXNGwUzVt72-_ANAcaAuviEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6GSRrDJIVxrJ0shIwjR2gSeq8iEURuoSZxUBt6t0iDGjw-xWTSwWazAeeJ5fIfXFtXeOkajP51kXq6y3ItrI6lW19Yy7OCoLO25sdA5AY2NsuYCGb6FTwwp53Pyz9IJRC_ZJxpWCxXvxrLI8aUvQE4dIrHms4wxnZS_xzIcvLo_UyY5ZtUg8Zmx5fjWP3LPpO96flUojTZiUfkfFFWUKTqAN-wNkT_4OOcgcHEaBtwspBYBTvLYw0lCpWHcp7bFiR9iErKqgTJk05BvvFo2qxIocQC610jEPzx3gdRDPlqTWSpwQNgPz4A57UAIshyGBRy13qqb4-r9-rA-52bsZm8bWX2SKgCRh6Xr6aAht57gMdbmh9R1Ry193miOs18gCzELCghfTuxO8zjopBWdKEIkLgcZvDrUa1p6ofnGxtvWEr9LrYoAPKiJSIeIPq6w8gSnmCpi1U0LkOzUqiO3BPjb7ns_JyJApkOZACZD5pd_fCQc5P6cIVwH7IFQoCizHAXP2erNEVrcu2pPOTYlpK017rUGUoQXV3pRiH3pJrtuRvmwJmQEDODVzIo_EL8WW7eTYWvsa8R0z07g2n7sSzjKZ1LQ_PCKysswFwXsW8DtO7jogvS7NPajLcfty5Ft0mdenWMoXqhV8-tw0j4ofSaebr0tOYEDEKwHg--J_N-gZw2Q-me-LgaIP4JAHoEWa0gezqQf1ycnarorR_JkT2kjUomFxJ8MfLjs5k7tgnX9MVP_GdGFCXqdsGM8WOXbzE9BZ3IzCBR2QFg5Q5e8GI_fVjJTEfEOIakugziIh4SWd5SY98H96SAPu0gmkUK8CyfdjRbJ6Z6WEQV8RZGW0Fd6kTYCLdOW22X91mv8oaBVmanZgQ87WRpf9lLCBYfshZQXycSvY_j5hgK0bLy5od_TUWpgfKv121mR15wihYdJJHfhn7CSsUfSk8rAfCV2FkH_nkO53RNSs-NsOLUJiFPqQYNnP73JQXUueuFhYv3lt_icD7oD2OF3K8s9TrKummyqH1yxQfc6wSiRy6ebFUaUa5j2gPC5Wcdpbq2zfzAEWMbALu5ox3oPIT6aUoR_o1Ill0vN-my-140XeNDnDbL6xMsuXHS_K1NfxDj4p5DEhwsXYfw9Xo-SgXPOoasS5BvhmIrT1eNwH8cZCPekN6p4WN88UZ6WF59OCb6gG1tlolKQoyTj8bTZjrMTyP6enluZpRjFscwXGEdhDRtSMuovWbiXdgz2DyixXvxp_-q243RFNMTIzX5WSgRtidCgZ5t-mU_PDMtc0qjMLTnwSe9hPEoXoIW1qh-7BWNzxKnClh9tMfAy2aP6o9za4MqU3qO6_G1v2XWazB-szMKo6tHkZ09a3GwzCQwQj5Z-C4hEc9fr5xvY_r9OgMh1cxJxDAShv4ZW5NxQB80vTGOGs2YoWSln9ImunO5AJLzkjvPERhSCLinT8I5HfbYKXSP0dkq79_yQo7u21hIvU9EV66d-PEO97uj010xtc2GlxmEc-ueK8mVZTi4PzQZ9SlXe_KqbYnzNhYnpT71nVq51lTstETjPNaDFb9IE6RfvFiOaoz8EGas9miX69_IduhCVU6fz38YFYL8WIHxMlE3EGmEBHV4WkbA-wlB3CHlNPtcKBPixqQUgH54GqfnQXJFAChT31cVWyiBWVtbRK9CzPpCzkX2mujuPCPt1DXYmWKsn-d-ATeUOxDRPoY15nbJg9IxaSNvZ-94Gk5wDUOXyAz1_9kTbxiFtLTfss5Cx43jAkhBOm121rsO_EoCGijSxEySVzu3xbj3cNBkNiqj_L1Z_CDIGrLFFj6gKzDKNd9DCG5616M_s1Jj-I6AzmJHT17svVxUWugN0MntrNJ1gxg1K_nbzYaEvQyOmlh0v_akKSgCk450ytgJe4gQbxDnXEyaknfcVO7wOHuP9aNbswCJRPJRcQnpO2C7G56hbC52DkyTTg2TpD9bh21VUHpMk3SBNppwIkv1nrj36VjRu_5vP_MFAM4LqlLEoLjt_kn4d2nO1C4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67832d468cada6-13375739','','','2025-01-12 02:48:47','2025-01-12 02:48:47','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41964',0,'cd-form-entry','',0),(41965,0,'2025-01-12 07:33:30','2025-01-12 07:33:30','{\"firstname\":\"Aaron\",\"lastname\":\"Jenner\",\"email\":\"raisingvibrationsuk@gmail.com\",\"contactnumber\":\"07849739208\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAyoi8BhDvARIsAO_CDsA3TwXDsD_xXGFbW1uOOiW2SNMKo_PHY1qjzKTySa4kOtBwJcPWn9waAj6wEALw_wcB\",\"recaptcha_token\":\"03AFcWeA43iKwSsb6DU8Dz2shNzHR6IdRvPRFP1qxatMuJcPTl-0lvwHNvQJadzlRpqgCHcAM3MviZ15JQhG6ayCmRX-IrFLc9km4yG-3Quug0Anfc6PxuRd1vw3d2fTA6IL76hAyqzHGOZKEPKTcqKW3pRBOzvtJhsbapP6s3RrGlCL7HU3e-ZGp4hEi3g6av4Z68b6v5PYCH1F6ht8BYABWxQasdmhjFv_fLVBC7SzbLx_fEPYUVCVl_8HOXHf70lJMOCVG-Yfy6FEPsxRRqZAU3Y1GdOPn0A8HgAbi2U7ed48ZS7upwEH8ErTvo4M8JghomNmA-BgsWsYZv39H8sjNUmYa2m-8r1kE0tuXXHpa9Y_pDmJMYLq6TR0-7vP8Re5KHNaLbOBZpDaQ4L2Rlma2Cp5FiwGl02q5H4IYd1eJn0Q01GeJGm9O33hngDN-HKk9b-oYYF5gr6U-_Jpy6bG-jopUu0JlnbYyeGCNQ6aeuZ6emIgsAB5CDS6euMIpdXzGgJ0HNPbK61__qqTvsbY03XnJ5IfwckdEcl7dg5aJYpEuQie_NIT7pszo3VEz8K1d8IVYrx5XIUlxycckkB0W5Q2rfbqsX0YJbWxU5M2Qz_gd5J24Dcye0J2WakoPWsW3QqjIZluW7DzqhNVEQ4vK44wRGaO5eR4yjqSmcSqdFnSt5djfKll4GFKBFHn2sD1nHdL9wNihAW_mO6b9D4u12VFkQmqZA96cP0lIk3EpUZKeuhQ8_qF6sVXx-fZCHF3iKSMsWMxvd1ylWBeTK2FhPEoX4CoY1LagPqnaIsKo1ossGnMR6HU8xLn7LTrpmRZ7m59QEgc8zQOKdaIy3KnJOu_qYRAWVuCQ1IAcZ6swDHPT137kW9wYkRUfU03qIZvMR1GQedhawAKtXSK7lBim_dvodi1vU3Eum6sS7QTFSMknY24xmNwt17_Ha4uTxioKO6PTUTt853ULvyTTN-EFWcLiytbr7NEG_DRntp4JK07yh3cbEG7azdomVTIEn1lW9wXzn4SN00HHHWbHuWyGUz11-s5hmc9wBw1K5fG0Y5GoJd2RdfEoQN9PfR8Z9Xt1Rh-Wk00smGZ22tpC9ZDl74zL45649Q5gwsHnY7Q5pYwocnCgJJqI4NFQ-fBaT_FBEjodggmkwJCtYYFi6cD8b-qxASE040oFSIR3k2M6bJkBiPMRmKmfo3cvVzEmaTWXC2pEQZ0-EKNpsBK87vwwBmaa6X9TbcpD_jRteomwjjqHXWndGVlr-fLa20Gs2ZyjsCA4qiw3xXRAVJII9PRsFofZ7cmw8J_F0Zzfoa0YELtncMYiOrKrsJFwnYia6acn9cntETZfAk5z01rdVe9u_GEaNFlQOaKFxieGanV5R_533dHFWldDSf-c2WPU8qZVVEZXNIAER_XDtOIfyKZYhDRMF4oj1zkVuMXazH91FFRFk4G4EZozx4TCqaUb2tpLE-5f-gjYFWw-cCmnb2N-0pVc-LFgiA86_FM3BuJ5COMu4c3n_S2To0b5FhMp5C353Dsb-tmqFLrGjnqUIDZ86VBCCs_Ujb-QkVm9Q5OJ_z9yHdTIwSu0_RWAqICaCsDhw_s7ZCRhJXOH0rBL2ZLvESzTiJeHiC4lmrOKUxCmeyyiLU2uOfsc06zrhUCs8IhwkSCPf86DkAfh5ZbAOp9MIq5Gf9tyXw0WBUFCmCEvpcUVKPX36b5SWFOnIsBvi-BZ5a-hkI6qGcOl_5Jf0YHQQk5jevBcmk7ONoZYn88oV7oeJ3w_t_jCCHOJme_VsZ1Xhq7h3PhXEjZOvtrOV9lPar35vSngdGmVnH_j7BOKD-8CXqTcPUWlGRD4vjIQhX-lL1X_y0sZ-MUZcytVyzVBO26mTUzedSl1przeOzopWKTyeuLiF6tvyoYA8U56LZNNg0eMq4vG_px3hnqJs4ZSIV6nYoIGHbYpU3LqtbYd8va72A0j7n-4JZOD1_m-qwixxlKHHRSI_\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6783702bbe2da9-43552304','','','2025-01-12 07:33:30','2025-01-12 07:33:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41965',0,'cd-form-entry','',0),(41966,0,'2025-01-12 09:55:15','2025-01-12 09:55:15','{\"firstname\":\"Idris\",\"lastname\":\"Boussetoua\",\"email\":\"Idrisbousseta@hotmail.com\",\"contactnumber\":\"07599 9 703365\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA7Y28BhAnEiwAAdOJULwNuo99j5xD6D4rC7yETzt1tIhulN1OTGLl_Gqy8OLj2w9On8QCXBoCmKgQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5G7D7ACsoVkGfdpOuUcuB4nhinJbNT8vOUWaZ3UXz2ZHdXepyU8rzVV5MeuYEJR_UQZby7_8Z_LQCpl6DoGC3Xy8Tg633W1-Rp5Sk00myK-erZ5AlcaMeerjT7zKZ4p_cZMyQHrGNvYsqnU6b6Sm5iGvDJ_xejkhdp5fIHnAySM3Z3ZGu081XGYFTqoqX42Pdy4CT8FHmtUJu2fkSSsWMGq2ic5G4nraBZM8J8cWd_MCM6di7Xeo6VWnq9K2G670zkwRyaWI8RBlvqxktXuGf6SQ5mqy5oJla5kILTWqBDn2T8CwgUODZaD722LkxZ8pgYhScHmaaYnJNtK9dXrpjar7I6dZfO67QvEik9pS9Ldenqz6veo_ojspoQKkjBev5DdIy3YdgtnETZMMTeta1-B8p4nqpWG88jJOoWr3JZwCSYAKjNGcqL9RZ8KQh8NNLyno9vu_lVcBVaUUpEdaIHTnGxdPbp7aPbXvXtZc-fmnhYlpjSWL-Uma8yYY9PTM4bP2taUbQYQsVyT518up1oXZgpOMGNaArvl-qVXmSCbPN8d2yN4nnRSliX45fCYm1PRADSlR6EMJD9ah8h4QSFZ-L13oMhuiFD-zQYSJiG3cqiktpei_rSJXweq4E-uweD2LPtZ5AhulEXzcgnqEhFYE2GUFaeYcViFvUdmuTD_fEd_OmFqNNDEEpM0SO8lOZ_3oRU838AiS3zMp6Vw6pWncujMLAzzEU7Bz8lHavp1bTMzv6aKT1ibA5mhVu2XQW2UovOSEsBaa2Yd-IwZlSa0Imu5Fj6tdijRnoJ_SJ9azpe38f1f_NxkZ5N5lcYajyEpGPN8gMkELfzRJbgcd7j6hvm8dE0Nk830mgEHSt3kpFf4UMkHPKGvPVo8PbSdVxC2CPvRK7SjdSe3q4LTfnxRr8Y06hPtxKkW1ZHnTSw9uG11XrwqNMKa4sHQmrgZQELW1kr6KmEdFCkYAUOwvyUIJMHBGQIta6KA14uMqUqL_tq5wQ9uhytk1NfVAtPtbn0d0KVMp7dZ0zZK6kzwq94NN65DHpmyW3FQE7uLTfQNxdJKhPMsG0bsF0XLrUU2FBb5HvOHZnFkuxUSbMKQR0LyzrJqSaLOMni3zQfcrF1R3mc0l-vPB9XKHZBemkw_7s8tKT9V6wFd2SNMhuDL70mGesuA42QU7rhOUQDikjkntYwt7eqk9zQ3Ux-pQG6HubanGsHePk_pOEALU3ZxSg3TxIuPU29kyUcPCn6bOqsBYxKXhw7fiouPrZzu-tl8NfIyFKjq5kgrfJg6bPMx6IrLrOqLRU_S8yObD-qRYTM7mIHOSt-09YNbSsigxE6FhoiF01AdPq9KPPcnOzDxkGAEGQR97IQWv1HnUvRa1x-mOkcJQuiCHteOwdLvTG5m6iFXEIjSDfDf94E933nsurDdna9gvPzAeocU7xRL6UQgclpEkqCggJK665n4pxS5EhP1vGwcWHdc1DEjLOqlyWqvhx4RIjRBavFWHx-HbEE-1qyvFyWQ41XgiURktPAs-NDOkcafGKyxu_OlZ592SOaVObpIoDrvShaKGxM-XKG3Hv7c6QBWbPCv7mTl0GtyTiDinS85n19bEnODZefJfh1RquE999ahuqXQr6XuI5dIRGFDkJuIP_QXNT8e4AgDhzQS4g67Z7Guzvgnjcuou33JlcZETokKcncplOo1J8UnYsGVe666rGa2rjuYnprsnc2Aet5orqHbdmfW2-48VbaIIHxu28QusSU_K27WY07Fkv_V0q6hP3oUaUxzyQUgkKJs4IEzeUz3hjcCe_LtRxpPSYMvh7AfC0DoUBWrI7iQ0buvQAQvg-Ru1r6R8Ct8qTd3xQc17Gi0lynZWRWyvpeRLf38WSdb9mAaqJ5-hdmG3aV_a1JdEanOgdVvgE4MR83BNRnRu-QjX7UMEg2Y7xVph95mKdWSYsQWt4f9-9MYdQ2Cm1N9OsAKrP8fdbqiRxE_ctAB5HQR3aYftAHzmc1mJQdYih5h4ndPV1OdL26nXg8edU\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678391518310f9-82500331','','','2025-01-12 09:55:15','2025-01-12 09:55:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41966',0,'cd-form-entry','',0),(41967,0,'2025-01-13 08:36:30','2025-01-13 08:36:30','{\"firstname\":\"Daniel\",\"lastname\":\"Delsol\",\"email\":\"dlowcampathletics@gmail.com\",\"contactnumber\":\"7459208819\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5yRwZDnXIB_VDoAR3EIotzk1qHXBK37n5AdXlAnlZZeddBegQ1cwOXoYVppBuHURkTshULm3Q-X6-2pQWrD8KmTvQp5b0q4abx84a1U7-Wx6AnEf3uNDLCimvGBWpDevc_oQIS8rIWWqslRQ2jbhBhM7N4UO6CY7Yhc_MqXzCZk_nruyP16tz1xz9q4Jy_i42BMWqJ-rqKe66sJifOSvtI0Lvbg4DicIw274HfveB4T9O2wlhrDKs8X8Ubn_TNFgNI7ZhfacH4QYaK9FBX5Db00SuR-QVGNwxLdFIyy4tGThqUX4kUDzjeuiT4v87hVlxeetpT2jUN8VYUU2aKNj63fduDV1H5hu8xdW8r5rMfnu9OyiwpuR3Gj5931v5B78VIXuykL9lv8INEsjvrVWUWsE66ymkDSaJ8CW0yXHq2wXy1KAV59cUHVz7746xWr3qma1zqKbeZjQesDQuOqqHhsXJq1aTnM2TK_I3yNjybE3uo9pvAj_je6EDx_NnttsnX9egq6FZvuDVJ0RAs2R7M_6QCoOAlABEZu19qcQoWUSiST2hMTrwtH5NlKRtBq6mxqxlbs9OBNT2kjAzc5nBN3QP7Wf1ehZFwEbi--pBBL32KRRYSjIXsbPErh3B3IQQiS4HYwB0jk6iSpNULBtgYlkdVF6Jv-q-aAqOTnNYr0-jZ7qwA7moBkw4SK3XE1VwBK-emIitN28Vk2DEyiHhgZTO5ZLbHjPQnSWHb_-ksMBsRmnaGS2T-fPF25892n0WWrIUmolmY0xUuI_66DY09bmL1dTJ0uE38scJzxoKlCh11tAQBatD3b964aAgKDuTfHUyCFyg-X7M-fxxE3QEkXmd-ugp9b7hL30A-ZNtlIj1FGQS4M1eon2UwZpf47c5stBA_N5u1eX49DOBYoL1mqvulR2FhEoYS9wQd7gkLMSGJiazWkAZg-PfTBbjvjjst4LZJFvUcxS0x1LcTcmHArzkJIio4Px6TocSuXU9BQX5A2rDBd5VRi-2ZWZqtCP79lAenJ-6y6N9H4VXhpz_UaQwoFHUsWPrpAByYGZbOxg9vLI5TUlPz1NQbIfp2-zCiGaWap5-N7KUu1WtaOPmlpp4KdACRPAviLECqn2iPwZjGNCZNjgRcfF-XMZ3ky9wq2GzSAg9j1dIBzKU9Wqwlh7y72W5duooTnWGYGghjW_RVyH_Rl-tjOO3hW9EzNODV0EOYvwy71EWNdOCGXaBvZd7BaNKJ98mq-Qog9awJm7o395zRPTzgMz20Ul0_JS1enptrtzGx7jvlrL-2HMBXP5A_8rVhxNK0B-yeqtgl7YqylDp368IZwRCBuEymM_MtLHgMEDuxtjoKpyxdpJGDTguahmwzX0pULgmPVP58kpH0tXZ3Qoz5aMsGa1H8Z5izmxwjaI3pB38OwOElm64NWRSA8n37trcBnALV1cncSVIqWNz1uwHnOg2qP9rxViLg7UjQRPZhr4X85Eo0Qawi6_aV4c-I7z2xqlW4dic5yhVd0lvGPwb1ndhM_xLKM2VhCjqbZJ2E_KQ50rgz1V55xCZTdtX-tKgDbbP66vtUMxIwTmL572VqGwq2rnlSADL8gCanxpr1Dry-sAuD73FiarKMd5uU2OQxS9oSKQ8DqZ-5FUjycm4tLfxeWinKRLltFgK0OJMf0ah8thQbwJ4qmqsc0NFQyyH1Mj_fYxKNs0TLJoFHfOHiRRJNQyh3r8CjUjd14QwtxezaEg07JmRlzcQXW67IQeNH-hU28BPP-FjGfBe5CfpbFFUrcmm0_o1_cpZPoqBqc-flBpbwboRd8VPoxoVDHqK3-X_WL0LaXS75BbilszvIUeQhPYeXycBo7SsVDwi-i30bvu2ojZmBHuNwa6Wtmc0JLpJJDhZoXEZCZc_fjb729wYFYYajjkiQVSogu-xRHHbFkVZN9TJkIVrXUsBkYT2cgny8bsPykFxj8HQb-AzYIeNWXW-KTmPeUip1NvMuY8OngKHx7kN1ileFQaE4Ahmcna6Gy_oYjQhjZdRYZcNjTsVhyH2KVA9fmnqvEKrNpSVS_XaXahj2YbakJeV2JL4ZB1c6QNof4dcGIYkgCSWUsg4EfhCEiI3b8-hXbAkIYa36zZZMh8MyrQxgKxoTLgk0AqjXBZZhhwJxVL7nPkEmBbHQoAyzppF25VpbBHQVwVw3xzrX4G80ihg3GgFG8EZMrXNIrckRTQw4WgltESxBLPu0odDx0tStzp0C\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6784cfede781d6-17459088','','','2025-01-13 08:36:30','2025-01-13 08:36:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41967',0,'cd-form-entry','',0),(41969,0,'2025-01-13 09:43:10','2025-01-13 09:43:10','{\"firstname\":\"Aakash\",\"lastname\":\"Garg\",\"email\":\"akashgarg1710@gmail.com\",\"contactnumber\":\"7503845390\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4_n4dPqW7nZmbx-fZ8VmkpekBwY6bPVhcxyxvyniDqnVqqvtkMddPiq158crcdM1VCGJMtNxvXeGic3kYi8rkD3b-susTIJaynpukTVp7Qy-EPHaAGc9xOssC0X531MuxzgcdmY7wg0QaGutyoBKpKLk0WaH2XKamETuSUudkYWuuKxs85ZxVXDufopqjY9DGH2nWaGkg_HGe9v9239eigfdP716VN_l6HKBHE0ZihSuPBAkhvZYrMcLoCUfHmwQm9H86D7akcEGqV2Tsz2tCUu3HyiydBpSfurBWplV0NaKm_lk7PC4crag2LPL9vbRd3v3y8ovkjGLGZfjoepAQoUdZGJzHl84x3gMwqmJZBvBhQ427eATz4A8-dljCLUSROT00bR0-v1Ztzzvpdk8wygmAHhonYoeFsAI4lXv4chEHVL1vY_MDd36WpZ9FDYojxm0w27sWPLNGy_OmHi4CZA3tahLtay3GVNM_iQJeav71bELno4NO5RDsX2AJlKOQ0r37ODuJHMhn_O7WXtNf7SQFFJ1TetoRsEbUXLaFeSAXfEUyLhkphU3Qy_OeRxsmWIGqkXNGwwCUn0TMBWpwRsWMf-WF1RBsZnk4PjcmXJhChaG7XGdg9xZqZKFiqygwsd8sf_Gi8Dy1rYDd06jS-P0LbKhzvXsfZN259kEuTaUNrvdTi2vKsJonCm2gSJphhQDbvNuOdqwNhRK65QTGc5QDY3QqLU9AF5F2Wzks_cNF7syAi0CwXU6t8N0pTL5SuAKkflZodSul8TmtTXRbFggFy3MlZdnEjsoqiSpZPrHkaG919PxEdoqZaAq7nJ8OHM3iR2EhxkEiO2_CojLiNkr1ldaoaqrT_XqnoegWNW6btTjX8cdQayoErth-uxwH0dRL2SojbrQ6B4lQqcwY1lWnIf0sfMrkP6ob5wZS9BjiLQ1u3mSIy6fbtD_jWwq_ksrFyWvQbRpsZPqMPQoZJyj9-KR-832S0RTAAHbz6foxjcRID3JQD9Vi6hcQQJgChCVaURyJhl4-_NcOJnN3XWegP9hqkjjXt0yoM_5j24oBUiShhqJjsTdZ82mVUmKbYJO_qY860Ij4hFLA6XrhMORasNf-Au6ICKnP70Np98sPrgaMFvciS9WAlQk5YB5h1FeNfUusbY7B52BdI7cZY46zlT67l6dPvezzwUddNaL9rbMIITc4vxjtkXDhy-Akdg3RcnmgR_LhisGcEnI8DEsZJ5wrxPODAHsY8YS7oBidzU47uvXVdWhcTvlaDqDxf_TOajwOSvvbnSUbG_ZK70x-CB7R4YdQqy6C3iPvksJHzUa7E6DFykLsruFOSk1I3Q7bSeCh4xW8Oiij1PesOdw0hBXdwDZR7QKPsan9JZzp5LT2O67WhLm4W_jO14L4TAMu91JwMlaqh-sqZhB1vb7ePFyAhcAtv3U4yCRVLCLyxVNT9IwuILWIPXBYgNoK5h2rMPlZPwRzQgRhWZ77bph9EbqTp49U0tS0l9S9hGz-PdTNKMdtDN7yTA_pX5P5vs1JtFLcMBY42r3lOCRfH0rhE0Dso7o-z_NrW-rH_yNkQqYGTnpLrA7IgybWSWbLC_cMgNRbq_pOwwmB1AxHAhVmRd0NmpVBeRLOIRGbSv5mq35AFVuyPNSCW9aqPkhE_Ie4dmbo4v3KyETpCJNLgcssTBZColMdksAP5NG8h30tdxn-VwW0lUKAA-YAPGDe6KO7pAyzS5oeyoxDgo_pq5BoSossI8HYjV2avo5_7rw891fB8rx4mWO43siM1igaOsG0LbW6A1zhYg89KLN2ErpxFdHzIAvE8xgm4-MqKXfy35ddlLAc8L5PoNT0KbZQ8uHzyZvQxdmd1hbvFULOYC3aBmIKQhwhtpVTdXHeOzUIZC791TuafiyWSeWFKVERLbWFqe4ztOsX_XJNQ4YF2P-VN-BseqJZzx9qUsHti-ndZEECJyLvlF58-o1Ep7SEaH1E1LANkgtvUmu2Z_jSqhuG0HA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6784e01c57ae61-01961428','','','2025-01-13 09:43:10','2025-01-13 09:43:10','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41969',0,'cd-form-entry','',0),(41970,0,'2025-01-13 10:43:18','2025-01-13 10:43:18','{\"firstname\":\"Emmett\",\"lastname\":\"Irvine\",\"email\":\"emmett.irvine@gmail.com\",\"contactnumber\":\"07826030208\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6v9NiIjAIsbacsrHkoOXH8PG\",\"recaptcha_token\":\"03AFcWeA51YURecn-MOThPYlegIo7HFoteVFOtRgGBVtqQcTX03pOLdB4ot7ofjgiGjU115xWVQfH79cikR9rSPOqMXSGmL0pg0RgMym2-Ryes82pfEDpH9-AwnIa-VtxrxnmAyvfG1pBpoN4VlXAHg7AdLEwOZK7xC1u6t_NXtQXhZbV7jgpFCZB_lK7xR8s-_SREK7Dyfw_sb158l7KQhgRLNqJBILws9MNZY_65-XeKDRuDuE95EEA9iQjzk1I9yDA2WWH_H96o4EYuchblkxiwfIbnatqCB3biFWrh1Fjhw_7XgjRpUKFLE3EZgOlSctodQ0B6G2vcEgCyqPD8YE0Ijj1RdmWTGXjUc6imuYH1gsY4C5S9xat6xNegbQsxk3Jt_QE8V_oBFLWejm9c_vKV0dSbEuK2WDCFrISfzHAS0f49mwbFZBkhHxnkP5kM5ujCnVBWc8-VZ8Dv1X3A9zJZ7I-elf6SKrOW19WT_fGaqqJiVbBDHJLDrs955xLTj5NnZXAz62IvPLyQzlj57c4PoAqe3uOJc_oIz_Bl4P-u3NeJrjbzPJvO7AxqO8NhCn6_frB0ergmrjsRALTS6w9eomOEcI78hKV8gw1qawUljd_8_z8sFVjvKqNDoLtRUxK4t6pt-8vsFtPjmwzJEz6InpD0dRdLXsbceu-RT_EWuv6e4LcOXCILPAbR_iRlMg8yvCCSJ8bayjydOsdsquxXGNHXL4pWX0HNGQZoO7jwqfWNIvfdIr3F0Qzi4vjpNj3vYSeqzpOHxKgP9GZ2D7Gjo-8ZQJiH_5qHHCNwY2-m4pQgo2a18zbadAWhV7LCOXbJiBWOpmxOWR6PQoSYE787JEpPumNStqdTXsEgA_Vvgu9uOX0Ml5uPrQAsTpG9tbWPg6dljheTTegqXTbemtv7HmzKp66x9WIxmYc2tBQu2rtbe1CHmZ34xuOaKpp830eo5vYXKrHpiYvgDjCalrCRgfrqadEU7A9Z3McV1u0_wmiiazT2KfnB6esdbhi0LaN8SuSIEFej3tqQCSYRG6lk0bcSfEZ7bGHL2iUlooDge4O44jwnCHELBuHxpg5mj6yqENjkEOc_Ttoxv8SaNjvwPURvu_LOCkG_Hq7DDAZ-TpvYECNN4F6dhMGPK4NvTJ7fQdoon7FAn4uLDOPPNes63yMhOrgnO7tYcHOmNfWfjjf7X7QxEsE3ucIXBx7Lu2aygtt7yfI9PHoPOQ8dCVFKu88H3e4R4MhnFNCeC-RlMg7lM--XtBzfA6gC01faan8rq2yIERQr-PS_zLeiZGXn8pxdW5wmILBZ4V71Vpu2AkDZNZXdffE0KFi3uSmMiC5F7yAPtaEfzfTLkTjLl-jMnNTtTqq7705XnbOvfXL_QDDMSaJbae4dSVAx54BitqRL_FZcgnmPB0TNT2FUtbL8oaZr2CHE7JFu01AMiNLQQ9mHE7Ge8xzhNPvEYFZGG5K-7zOvSZqVBbD4aCKjSOQqp82bBOp8VY4UGjSaFN9nf0UyVYKmOUbPRVZKXiapnF0YWWNRlxBVKUDVeBzopqlPYuiAjddUiWLwlPKjMC4_NH4vOJ1A9HGFt6bKp6FAVn6YB48OJ4hNKgilNSW4gRj7fx2tB6XjDfPiZo4m4xdO4-wn8HXOz3kWE6IzGp42S9yDwdHqDjeZtsllyGlNpjAr3OEPZTCIcPFt1zFgIO7C-mnayikCCwCTJHkPwR_XY3pTIUefx5_owyGaDAD7pUpHYxd9WeZaydptMbnXr8v1lG90sFcXU2RYNRnyQlNxIJLMjD6zFHBreuvIW_A0xK3ecbs4rxPpjQI-YzzjcNe3wVBAgZ3CP3xCjrXg9ZA3BW8oDshfDHCaR7SNz38BlAOhZmX8QqiTV6R8tPKcd3SLrFDlsB1gbTYLhnAANXIP3QWN3jE1kGwhGZLEGwXDPreUk2LmdiygeDqZcW3_eaUNXdjyjE2ONUoa9mOVnnglu05kKEbO_Imgeq6TTT9dC06NcuXMG8mPxd4cT-exB9hv0nJRyowgQhgZ4E6RLR68dXCRp-l2q8Y_qlPVvUvWZq_Mn3456JDnUg\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6784ee38534750-88792412','','','2025-01-13 10:43:18','2025-01-13 10:43:18','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41970',0,'cd-form-entry','',0),(41971,0,'2025-01-13 10:44:36','2025-01-13 10:44:36','{\"email\":\"emmett.irvine@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"11\",\"currentpostcode\":\"Bt294fx\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6v9NiIjAIsbacsrHkoOXH8PG\",\"recaptcha_token\":\"03AFcWeA5KIrFCawFzpyKYByrTHxoBwxn833aSNTEqUtu3PHh3xo3nG4nRQO3xlHvUj7atCNIXqSFM8KjiFeCALdKnli7goHvhInYlwSfZtzKU676dOPgOvLkCsTqF8wa7q3gVaYsD7HClzKR4mhyI7XTNsYvOFgyjR01hrpjpimjorFv2kfjVcaaUpEGjfvfO0kkyw1WBBH2uvDCUKYRsOeX1k6wLuIfIPOBVlIvIfGP9nWqPfJlwxdbElWiCAlkGmOpQ9k3Vo_h1pmsE3bZMFSN3Fdx2uYN1a5Ex2x12wQv9Filn8kgUxXp7OXVQNF8HTLzaj68AcwlTWR7PojpFW_jxuhayFxnY83M4_vo4Yn9l60zrz0Bbh1on1BwIMlI0AS9GHdS72E4YkRDM2_2tX83zhU6h4eL2wucXzBEW_QngHxuDWEuWII6eXFEmywV50ewZDpAdpRkBh50HBWOQm-YKecfqEe2AYN-hf4VvAv49u8oS_Fm4SJPuRn8Qz0XKkJzHelbBO2-TzamLnQO3vblu7c5BRQEHkGHGhAUlBR-8xWlVyFaLhGl0MmlwRCuxSNnh83hGyfcYCzpNWDGbPmp9iuZv5hgBdetYbNbLowN0pa_eHTdrN86sIN888oYG98927Hrfi4oeAQvKdeQMZ507q9vThuH9sAc4Xm1KMuuLYEeucPdRohiR522zOs4AV0YLihS-s79Cx-_bd3YG3W5dZx87hoUwmqdNmA4UZTewEhfO9cRtcHvm9Kr5LWjTYZl8fK_yR_d39J2ZRAFZ0OPXP9dDgEX1jqfrQB4hgMTH583NLBJpsJ0is_jWbR_hxjogNXWvxiI3ukNPdfk2MNI4pi3MKeM6nHYSmW91KXt8HmS7mfez1ZTtqkGmAqCVocZUm5B8k7FcMEdrVzdSGCKKeStWmM2rcznPn-9tUy79ZsTvIZORX-t-4ElzmSNC1V7uwRGLidRdtyzQkAKhxVVAZQJKagr_fn91tykzbIKM8SlC7eOhTUiJWCKnCiTupDFB89N2ia7MIsBH_Hl-H-bqJyvAFzozegu5MlcPe8gDm94H8rL08ECIieszY9dmrCjlGOkh0n_tfb4o5xO-ICkTOQ2o7NLpxW4xgU-64YCaSLyUD_HG0qvuDefo6CWh6iuUkrAnCP3ZJz_er316FvUeTMykchYB3VjzU0DayqD3QrImTvOtKEc9NEnfp-ZS7TdcHo-fPMAeJGzb3Oa5-VuBgHEOS1gWmjeqj3AqOVGSSIlktv-qKAGez2IWiAJjxRpxBww_ihweX8eB_AsyDR10hXoofONSP1II4uswfwr9IxLS0pxp2rfh48Mg3-d1WM-FeQ2qqUAyFv5Z7FaYTN9LZvJkXXfwkgZK-aV688PFh8I1V1ySls0G1jDM8NWrc2G5DQzjBQM4VrodNX9CrroCN8KKSnnT07CSIqpxIJgPM0MRCeU7-fShqr-_bwEqKmBynH9gNwCRW9ercSokItoGl59FEXh0ADc-aOpaOoK3jXuhdiSiszqqMHsj-PETrTgbzCEVITgoN2ZYzNTwzFi-Vqry7SqOwDy9qVIeYXJY879qY5YTDmS1HMc6r8zIRw947u5OROH0lpS4V14yMROlLjynQiMAMFh7ZhL4oztdQgGdLya5Ihf1M8UdxlR9RCndqnUzKBxfbTkXKx3jCxV27dIao1Eipgxv3zGeypVj3m9tkn9su2zH3K1zfCWZz6RQ5-RL1BHxaWxUkjECzujPjtskbZoVBPrKUerQCSzx7UJETnkeszkd9r4zGSyh0OAxInLyJtPHtxTTiw0lJpz95VQBjs4pjrl_vJ6-NyGT0MFzIqvQGkZ_rbPeIBeYXlWkU-7WHBquoidJUuFJsmEnso9ju4H3wotfXaMo28vScd3XFsXDdUGuVb01rkw09hpiXsk32J4gMY84rXURW-k-cqva-vgjcN1sI7lDsVn61cAHMA1MK-wG_eAgubexUsK3ZDoA0_Q5ZlxMzRqevIqYmunxPuALY2HrvzgPDZ8YI4tS5Xzbi_ZnPRr-7V9nIvwSml4jls7MJxKrl5Tt8mYSArnzSu_LFw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6784ee6e4ca995-95549771','','','2025-01-13 10:44:36','2025-01-13 10:44:36','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41971',0,'cd-form-entry','',0),(41972,0,'2025-01-13 13:32:01','0000-00-00 00:00:00','{\"firstname\":\"Gillian\",\"lastname\":\"Taylor\",\"email\":\"gillstaylor3@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/neuromuscular-exercise/\",\"recaptcha_token\":\"03AFcWeA728BWkzafPn4KIvFtYGy_GmG4Dad0MNbTaiA6bgpX4viLYWzOqoAymFCj-L1WxMx6gObtMHzyhwzTdGXtdPvD660RSwPZmP9woGgJa8un8WZb9gjQ7ar4VOTwY5S8sl1yc9ovoIDYcO8vEbtE9-Zq39CGSCluZX-PvnnUqkyH5GQZLOgQUoqceaVD48jtkDj4fqLNN-eMVmbwYcDDm344vxIsFMTd8sk8t5mKBqpsj6irNWClN0cO8eJKsQxzhpHomql3gx9A7PtXXmNH1X2KRW0tL0yGVbtViJawnplmXeceFjsBZDO8nlUr7zcpR8cuJU6O1b9T7Yi-C5Nvph7ckpza8NQP2WIe5Fl4BttUui_zDMPB1BqWiSDJWYluAmsbBFYM2_r_0QCnKmGJzVBgqzAQUxjaHBFubEpK8qLFw0z1zwqqy8fZFMIUptPyZtdJ_9HydkGFeIv4TgjjeuwkK4iJiIXqzjbM0b6YJ3_YpQfw_o-LeSjsO1aFGmM_SEfYipvGSw9XZ94C3pVQxGklp9B5G7fsSFPgndTtjaCRciLq2xfcFMyqbDln_biP3WADbdUTwWzSPsVY7JpOzGCMbxBVXwtcpVCnwV-YkbeZRyaqLnkNEQb2RbpzBZCLR_IglBpNvgQmJVMiuN-O6WY8G2zMe7PCtSBkYOBhaykNxkrKp6VV0iJ95_EQNBgDoZHCVchKX1xbGq3YkirhdgV8YNIpY4yxlWjW53EC0Qtth6KxYRfum0Be_LQiUqwTtfE_Ldx0I36uvuA0jsNtnN2XDjWRdXNHe09RCd1-ui2c2_M2fu9BPNBgsH2Faa9APmq0Oi2qPHx6bdOSSd8D-UvofNPi8RHG9QH7YR59h7F1eBFNk_BgC05dgHLre-FGh44nz7x84Cmjww4Ek5HicTMbuMkDJvNV9pK5a0SXshtwy5uP_mBOMhPwvANTmdZJz0B64um5HHjxHIOeUaRC50pahejyenoELmI3zN_Z5piNRF2SNTlPedPk_NZkhZmuxh3iWpz3Ljl9a5pENtRrtjZI2yFfA9ddCgOBIfLMM5rAv3Z5RjOOq1aniTerJWbJYL5WWos9bJ_AmWZmHUMy0WlcNZkzk_Nyxj7SKUg-rgBwN1gUUeha647yzqgpX8tYBGRjOvnZa07ZZ1y81mTztjqKDLq1Y4oPYRt1vfxr8xhFNPtCz1gEJKXt_mRujeD12TZXI3LqPz5fpZR9bDCER_GcEr37GSf07rYkYf_mYWBH3ZjECgE2tcPBvATW7kllb4heJdxD35mIBil2jz1CNuApPRN7XggMyf7y8VHjNgLcKxjPBmtIUTViS7irVvgDBOiUXpI8NrG6TjOiIhRdKDWeYTmL7aarwEDezaSV5MnlmyGOEhgxd2ytJm_TfAmC0QC-nuP-jWeBiLVnvIUCAPfmQMNFfw_3t-3SP2nSMgD3PaURLkrsXBGhDgzXP15EiCMRR_Sc2oG6XYb_dFIy8lTLUJmZTGR8lkCvhCbbjlXqtmSnKDWbO0o57jfQqqo2NR11f3N_QLFvQJuQIy53oOtOyoZfPxtVp6ZdOd6foopf15B_5FIXEYdkWV8Qd1kiOl-5dvZYOH5qX8ZYKjOVbt8sMbVylNCO78Eo9qEkkRYJ_ENQ4QsSdfiS6T0wLdK7EslU7g8_eqEko4f3mU_taXWrL7VJcbA4Ru8UovwA6ABeOK01h5QEsbciXoYV0oG7aO6PelfVNIuln4YC4a3fHNjvsQBlVWw-mI1MFPoVzavClzixn_8-ey4YkGyEr9fVADNIMqEFGRi_2z16aw0L7REcRRXqGOBOsjw_W4TC3Y2aQ-J0QEU2i0SUH_DOnpfcESZGCEJJTbp7_Bz683SThhK9Yifc1YsLOlMvXs9nk3KR0vH475yBdyWaBcCvOFdPl0x64X10tNcxE2hztR99ERUwchkmmiH8wfMyFiRAC4lUt-OVIYJJBLwCipKBIpv93Zlvej5QLshirKY3-QjtzcCou9duXUYaeLQZsR-yvPxeBKr4GVqUi_x7WVvN1Q5XyAoLnQKfQNxAIQFq_PNc97fFUPYrq3RC1XS6NSRfjDAkCGzhKeAk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67851586c73453-41173043','','','2025-01-13 13:32:01','2025-01-13 13:32:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41972',0,'cd-form-entry','',0),(41974,15,'2025-01-13 17:16:29','2025-01-13 17:16:29','','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41520-revision-v1','','','2025-01-13 17:16:29','2025-01-13 17:16:29','',41520,'https://biomechanicseducation.com/?p=41974',0,'revision','',0),(41975,15,'2025-01-13 17:22:01','2025-01-13 17:22:01','','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41520-revision-v1','','','2025-01-13 17:22:01','2025-01-13 17:22:01','',41520,'https://biomechanicseducation.com/?p=41975',0,'revision','',0),(41976,0,'2025-01-14 07:40:28','2025-01-14 07:40:28','{\"firstname\":\"Stephanie\",\"lastname\":\"Chillingworth\",\"email\":\"sachillingworth@gmail.com\",\"contactnumber\":\"07596564044\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vSWqursLL88LxfE6Z4NMPdb&amp;gclid=Cj0KCQiAkJO8BhCGARIsAMkswyjWyM3O3Rtji6-bID9MSaBSxIUwCp3wMsVQ1bXTKBa55TXTC2cl8joaAuA9EALw_wcB\",\"recaptcha_token\":\"03AFcWeA57FnJ5d54FkmC1I9LWkeAgS9bDGEeRI4kg7GKT-cCqNF6858EPHzcbQlVx9vYArrBUhe8eCYj_gwgEEvhEWEKMNGG2SW4fKwUo-RUNL6QJ2885HEFHttky1RsXw9U8n0nnoFQ_TkFT8JkZgwG9W45wN3HxR-NGx1Z6vx4mqdM6UMrI8nNoRGKw7Wyh6sznqG-t5mhIKv9tk5Jl1BNry4UsxI82Cyd4oU5P5w8Y-FWZUZIKICXRg8g-VhleqxfrRggnzTOTP6YbuyHyF0AtF8lL6Km6adepY1U74sHqp4WCj7Ky1rIPc1tv14MUpBhrtMLdrj-fa4N7NX1Fb4gIDpyi7VMDNsQglPn1RmTFy-R_xM9Q5ZGS2ZTpzOB2gj23giO6vEu3cNa_pGMviQhe3mFyi-LXoyGw3FTHfHkpMjArfgFIOlbVSEh3Wk6WKAoPSLydNsWghJcbpFt56LKAxVLYUlfB9XCpeTPs8MsJS_FJQeQwJVxk23Wvx15WvCqtF_Q4jDBOtGaH06hXS_cRttpmPc5vxhoPMDWjNTCeSwOXWu2yncCTPL7l1Mw7Bh1-jcLrHbGrf_WckeujySKYvNhCa_n7d6sj2NZpkU3Ni-pjrPPkkg_cF89s0ofZsFtNq2nhRyipsZjZsxzPI-nMBFHzYc3pJIxiEajA21pIuIpQqT2Tz0zXHMGTBM5cb6Dr9cO31fIE8xQnGEgRnKnY1Y7zn2CIOb9h8dfA09YqcuNDuDRgoCCeL_bs-twshYpuO-CNm-bQB4yhhR-R44y2au1PTLLPgLsJCnaGkSOW7YfiD4ZAepkaOQbG5HbbgjJNukBEUxZlhN8DSc2lcpVWkD2dILu1XUv7mQr4MNkv0yIPVSdw97_xTqOE5y_sYhWBdPXF6sOFl8vIH_rKz5ZgODD5K_cCh95V-DcyKpjzWDRKtQM1twSdq9jWdbPo6XLMWxH5b3Be4WKoibQf5H42G5cvxtROQvNac5ObVxER6zOXnJEjp-vjJRnsed8w6WDSfMBLw2bDnxHyJl56I1F6KZEDskFArQ62x0hBGeJ5C_7jWbUl5EW1IetOW0DKizDrqiymWOVtw0zwqmR6A-FN2ST1JbSe3mNCy5fltmYb38h1uojShQGQkrFfDQoUhnna3hdRxWcLH8k9qI8rnceiNge-k1QaUwRcqDQbOMIppvwAMNQ8uODiOmt9_C4A1Y9GkksvQzSbG9MexbXXSCNWVTAhswgRf4d1OzE8BMyhssAGH9Skfq75jns5SQTTYoN_YthgdrOJHlXKsUz_6oOshxX7HT3-VImss3tbF7jzwbT9nKJ045FXYYdrO0xSMzP7z4tsjWEjzRh4yueLGFg1LV2saCZW0CRZy5ycKNnjprViJ0W0ziM6m2jiv4v-NMVhJvg21ImCE9Ghb5JF0Rk3eNKJP2nb1fPKvaXfcrcJ6ejFvaL5ma_S50y1TmAnCsIDBtHtJ-zTUjzfgUQxdzS6MwAFVCvJ6VV3iY9DMlmtn0peNQ5Okojpk5lGifZyRMAHxuZea8zQ3tTEzy9mOpwmIm8EwSXcrQe8u_MLeS_YmJKHl7pYg3E6kp1FA1G0P2_u08335_stj_T-x0XAXcChAzlw7OwXvIrpO5E17djKxrwTW0MboEIws7UMWrWQM9HENF9m1dOxt_jz8NrGFsa-dC-GflPFNM61eLzqduAxPo_ArdEg3GO6IIN4W0L9ey1wmrLjG0JozsGWVatmD3G6WduckqSnQi1CLCXRm0Ltipy6N3wsmJm6kjhk0P7dQEFyIb4SwtMJHVDAyCdra7vQ6s0dOmP8Ch9p2Yg0LfZEYxmvaQRu60LCDhhw1fClsF28UiSNYVlj1Eun0c2bYAA1Fz5UUwOU7jH6-B8MTz6PSMBoyar4Iiz5kbP9GqysXnaGuAiER5TsYUiCCs4G9YQoc94qrdcvjGFNOUS0nq3Dfoag_FgJuoWmNdJ7T6ZWw_6xLtH5R2h6SZM92EXb4GDE6NxFRP9EalJxWcq4Z9cyyX6c5MOHsz3SlMqcqMpAynbAsx0tbLAPtEEg8--HDlJMZUSOtPiRCA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678614d50acbf3-00393125','','','2025-01-14 07:40:28','2025-01-14 07:40:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41976',0,'cd-form-entry','',0),(41977,0,'2025-01-14 07:48:34','2025-01-14 07:48:34','{\"firstname\":\"Sam\",\"lastname\":\"Baker\",\"email\":\"sambakerxx@me.com\",\"contactnumber\":\"07967450064\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6ucWTf8-XA_my0budBZu6sp_&amp;gclid=Cj0KCQiAkJO8BhCGARIsAMkswyh6XjOG7Ej83jtq2pgxnCxVwLgIc9j858N6HBUtbuyPgbdG8ms31IsaAka-EALw_wcB\",\"recaptcha_token\":\"03AFcWeA5RF2yKzQ7u5DpZFZwDkBWPNoy0axVWdkS9E88vXtkGeWzvPdW-U1HjcxCVxbY_1grNPlsLmKYorZqM15Mtq4P8177A7BXQm_KEXJ1c0yOjghAJFhK_nVdgQMBLPLAUIqjRhrX1H8tzf_kTka8206UwOrrQ4RIblP5d9cKQRltrxMBluRDE_v_eYORR3xDYAUoTcEpbQUbRN5YoWC_G0hCxiU3T7ruFjLQutGYbuO3nSL2trztlNNuSDGXZtzw-V1MxHW44EpzD3gd7-qLd_yErZcXA7V1lkJxX7NIiL_nxFHs5c3byazGjltkwGhXdzNAs83m5uCLC1gc18V2A3TJHDhEJIC9zeFNuqgbBT2mY-cG_AGkIjA8cSNx9EDFbCoaUDBSn7ZB5u_KFKZ0bwRuT3TNvPkqSOen5ZTIaY3PbkEOOVfxOXTZKfw-7KgpJZOnhqExMN1e7_yAZz2TmQXbCGfLBq3kgHza7uqe1eCmYKk3TzA5NhkrnA_VY3kmYhotMsDxerQ5SQWXSRnxI-Ih4KQwKyqq54zXWabHXBl9zq7v1BULVCW_rn__yJA0OOA1JIbprNETAvdLWpopqitbIGqE--T95fBRtscMz_OswKh3O6-5gvtziOtPf-5qrteRwpKb8ZNL0d5g5EBFDtNQXz8CDUviGDo6isyltp9MKWTfrSQDJWlT_V8TTgjTrc6NLLL0L95EdXhvaPxPmtZGs3L76m6u8o72g-kMQllFLHrqtGn3vwFD5F4mTd-KdS0XpXMPA4qVRkADbRYcaI9G6pDmg50oS1ccBkB4gwp6rLgEoTZ4u67rO9_76-wfhZZCbuu9jLPoS7Ud-9-cl5hXzOgT2xSgAEgO2rwdUQQLzXQ-XuIJTEOCm9XYaNCmJ3bw7kC8qeCJAHu7TI4zQLLqzPJsDGJO4mUDMIyUkh7ghxMZChEiE4XFvKe1v1mvptsS3mNLbjsn4J1yCCGXMGF9tEqGuOd3mVI-nqKhSW5IOEYre4ZAuPwq6GLUTZA4u3-2SeS0BAu2NwHpiDxQvaAncoO810wUYwqkMwOWEU7biJiKpuoaDWllu2o3Tm2SuTWNWKA4zPbzXOBZ7CqNaT0jvv24M725GQAWxcJQR2IcHR-bqD59uBICFmyVmvi9RTJvvX6E-NfFVRumbJ3zIDVqoM_R6XsOcfM0Hlf_8Ucc5qFMijJy-L3vMsnbwjXNrx8TiN0_G3EtFmnCw36XDjWUO2CLG99UTSuwjzhcL75SHb3d07uAQ90i9ngKW7ZSMzQDSKn88z_rPQvXLbMT6ze_N8PFwYmu3UnJakYqxpCOnXHtS_cs8xBFQ5sIm_q0PuaD2x02tD7mUGdBjY2B_wsM2-7O1udxO9FRLdkaCNkX1xHhQ_RjPMXTgFGL8c1y5o_FqDM2RK4PVCQnFgeTPXyT1Z0TdByyT2hltnz_IMRuqysFRtHIAC04oUdSgW0wj3Z3dKWWFVLsXriPF04fA9T-va4CB0j3O1QWarWij2ypP2AU0cPo_eLTLQp6oLGGzCSP6bRlnWgCRudpq9ma2QQRC8TyKAoxV18K0QkimwvRNXnahLikNBcssi6CWaijqJzdow1tAGYgdIjwR3bqtRTxdWTebq1GvCnL4-KhLO7UuCTxBikBw-k-iOTdn56_ZocXghXNm3ncusYuE4lmFDTYIk2CBqG9U2n0XN53w7cASIbTj8yteKHY5RFjdgC79XB8Q6A1nYBloVZq2Xo6sMH0a9ax2fN_eqzyfB2fiszL4gcCcwU86NDBQvefXixqe5D3fcIeEYbNECGXbY7I4YMD36aKw8LaSxWCdCfrDaLmo-V0b3YafclpGWAn30JTML0KLzlgEDE1iimd-Ps13Yjumbe_MbFZ5pAdOroo4NujK6fJ6db22vcbVwRurOiC6GcmGWfTdXWn5k8zH3xTvbsx14iAHOgFlKjSvKNI5op0qEA3f0WjCIyKnNndv-ixiPpPtCj6FmfCwHJtIY75qth4akIROykGoaHjy-KtxiDusVChyncopiYtorKgOH2qk2qsLgeqB-N_dfeYfHVRTizs2N91X7w\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678616c10b79f6-68586575','','','2025-01-14 07:48:34','2025-01-14 07:48:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41977',0,'cd-form-entry','',0),(41978,0,'2025-01-14 07:49:27','2025-01-14 07:49:27','{\"email\":\"sambakerxx@me.com\",\"interestedbecause\":\"0\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"8\",\"currentpostcode\":\"BS30 9DW\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6ucWTf8-XA_my0budBZu6sp_&amp;gclid=Cj0KCQiAkJO8BhCGARIsAMkswyh6XjOG7Ej83jtq2pgxnCxVwLgIc9j858N6HBUtbuyPgbdG8ms31IsaAka-EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4pMBU1fHK_1wO2-6N8HdRxuF0dovHb6S8EVW345Bvu0l_NidUBt3nhpWTcI-ik_IFbJyTiZCdHNvVEInqifONwviQezk0M3MQcuq-K3PzGJ3vVPMn3zfxGfcFwGNvJXlQAIuK22ydl2XgzFGcf_aZSjI17eX1ZLCjKPc0HcKPt58Kt9uWREu5KpmWe_5siq34_B5W7Ys1nvChvW9tzcsPPq7aQcuQIgltg73DGPpaqOu90lDCq_gZbMtefmZsNts9ajz_Eqz9UGmBMUihdwu5KPCvDExNTcNoFu5K1aZhm03Gkt_71gdD5u89GNz69n381nu36fAO_nipOxMTITp5pTHtBYP_AtJ7R8o_WrP-OdIhC0tX1RE_KrIHUvbFGMeWNKmJuFjQP0kOsp_-IbJFsUs1WZOVXO4ZoQRXVkwrbf2hSbmTHCbC4v1D_hZa1MSk7V9FqiK2geRKTpmOeaf0j-UIB3nkkmLYu4FF6WtHiF1h1K3Eei0M-Tcy1LLsmqzIlzmr5z8J5oqzxCxu4xUiUnghOVMJCo5t2fMPts9phQSA9a4vzo7_urcGLfOyVDsp4o85rjN_MiqW_p7tq0s0Xt-m7ALucVvmpRYH-T1qfeZukWmNbwfCAfRPzNWwgSGZzTBTo0C7Us4bs4rUMlxobPVUFmkgO4HZnEaS0wKRMLYSBjogxRd1m5x2070tyPaRuBm0CGTutlzs4ZlRr-k6Z1AuVBuWo5-LYPiVuACRi8xj0VWb9uRTaL9c2ajvUAJVqrckuON4j8lAj1aADrKF3aqjimgUxbDROlPRLqumdXefrbFStKFjeVtIRLE_tNXQV1InbTGCUDqTDeDjL787WEAh5iLsxwD7al6agHtylCigxuT4BYu7BEidjOqWFySjmeGEk_txeoXJVVUiClcDwNFOa-QfnNyTAGiql6NMS9aCWu3XeVZjYMu1z1RCEoq61pIdj04zH5vToqroPfdXknZ0CBCygzNshKIH0a14E4xYNfusG6M8Acq74wYDyRhUogvGrjYEGMt-w2L2sZfD5P4-RCZnmJouWAT9s1V7LaMoQeAX4GGqrNJe6Szp5H7BgqFV-3hhLsToWvnViage8lP0KOPEQPUjYeoU6WCNYoUJ1Np1STVw8gram9vBmS8gws8KVKWqWR_a2Fic64Bjil2mI9eshoIr7CQGk5Zc8PkmoBZYbiDiS2_daV5oHYgfCtQrbag1AevqsPrSje1T7ch8DIIOUCMwsOJ2hoqCthyieR5oEVTHT7DzbgQKHgk6pscRWiWszSDpcybNhZLBYA8MkUsAQBzAsHslvd_hVO-0SlT3znKelYeyRdJVIdj9n_k0vJKko0SaVOP4lAkbsguEi_d0SryK2Pd0iFcDheE9cRjrhviiqzbJIMI_rfZEUuXrV2dWoVt4ZECjz46Sa1D2QO2Aj-05bbWUs5-lrzp8W0QbA6tfLxtnN3pOck8IYA70FOuXF38G0omqJjv8sdE0KwAd4W2achFOyYFHb082cNW0iWXCi07tSaS9InI84XeFoxmogMwZiayGnmfiNsotkp-51-hPVW9NF1S6CW64UpXNHRknndechZM7iDidKysR7dcu4ipO5BYm_MkYGv_DUnw5FdNqmILmxi_AcsYqPHlyaVdKQd2S0OrRU_7SDoFH0-meGMNOtxcRcmmnWeXxu3mhjp_vL2I7c7bAw--SbC938wa3CAhjdPwkJ_r8ooKZ3awJY6pX4e1C_xRArjCvdcpqctiPH6jw3v3Gury7Yg6B1L4cbRGWcS6Ym0Hxyfp_hvAWhhVRkEEVxg9RzSlDUZ5Db19IGwUXZW7flAFL-NGnadkXcV1F8h15h1p1iF1gDiP4hzrP_4wy4om-X99Hc9cPdXHu-KrpGcLLlRwHufXQaDH0VH77VTN3pSwxgyydtB7qp-vWWQnVNwMngYf7jVjngT6dOt_yDUG6ukUqZd3bzTADDZUxU3gI9UCNT0DSwpMyyGi1YIUqy5QfSaw35dq7Jof6TImIIA4kBOBUmEj6pOUKLxQnN5qNy6eFVc9I2l4VeyyByOm081cjcxGKdIg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678616efe97538-92995107','','','2025-01-14 07:49:27','2025-01-14 07:49:27','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41978',0,'cd-form-entry','',0),(41979,0,'2025-01-14 11:39:42','2025-01-14 11:39:42','{\"firstname\":\"Ines\",\"lastname\":\"Slimani\",\"email\":\"ines.slimani.92@gmail.com\",\"contactnumber\":\"96515222\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA4ffpIL7SBq4DtnOHvt8xI8tc_BWGDu3h7rmqpO1mUPmgmTjVliUf6OyAUmObXII92BO_6a9yM05_ldmY3op9QBe9oTU6_YVE6nNGrgN_cvCOzUoRnwnmrAW4QVob8z4g5-VrUtTIy30ru0G0uH4VahEkThb77YHz98xdaT0C_wIRZs4KbTn_7mUbU5HwBZiIK6zRvFQIuhprjkNxMQ4xOvgzgNr8bWhRfLuBD-PG2TsJ5X7R7rw50ebpZjltlZtHpyX9SgjXYlSE_Cp940UbSzYJEyt9Lm2Khe5YXy67sd3afUtz-K8XTJ7k_50uvWDScAtGrapoeKd82QH5Af2aTIdCYk1jTZ5NIcAYk159CD0_icR5w-11J-mCs4RSU8uQ_jf1wth5lUnOfX8VHdhZmVtoHseb0b9KIKlFNEoNEw9Bg1OQXJ__LYuXu_NkQOHaC3gCJRjkcXUSAnVuyLWuO_lb6voR-7qLlpgV5Rz-66a-nH0R2jStHURBloo5CM50mp7tuIgBvwBxxNkuOyrfDNF_i7IAac-vlOCj7yaNyPSPb2NeW7v82BO-M3GSc4LZT_oEG_LQankntqoZ38iDElTx4V7KRR6gPkLeoKbiie15AYjzqiQ5Gj7_D-hwJ12bmib96htrcezNk75JYO8cwU2Vp5dnPhTuptN7nXy7VEnaEtE-Hs6dkvOPU9psH9yZATHjN73pbd9o1vLvHV2Kgt7UZNYOzGd0VEXWzpirIaZj_0Dpv1Xbbz-MUL6qYQE7VIocwi5IkKsc0J5G6JlZrO_Q8mLRCfdFfbRTI7wm69h1sd3s0rjpeawhdKS4Q1sDZXFVxY4XDQZy6pTD-5XujhSrCY2MmjmStI2XE5Jwjzawl6bbMb6HPfNnnBgt9yDXdbSrMfrNFh3-I4Xo9RPRV0oSZ_0Hp8FZKF7CfvH0G7EWL9SAPJHOZKT8lIhLmcFl6A3LS4l5Pcj1pa73NL_UhOZopIMNt42Ae_6xJX2Hp7Rd0mOxjtfCNGd1bDU2hYcN2e8MVfTfkm-j2J5VjdPBZD5WJ2yhml1pnkm_t5m-FSHgqMuWE2U0wsf0n4qQUrQ24SmeB0Cf_6yKkm55uk0gIZlQkpKndscRzLCd59V0N_vfgqB8lkhjO_uMnG2tKNu5tDy5fRXxiLR9ON_lG6cmozh2U0zgvd3saExNtX5Rpf94s7TaVjSJtjwMJ_bi7pF54rzZs5XqpM6bSOJu3mlZCgELYOxdPLPzVpbWHU5vzfd2JhWctzms5YSlP0bOItYm1mfJAs9Ve3iJ_U3WOJIC7WVq1IGe5nLN37ZDEAY14i-7RR23OsYpCCfygsqZ9QqADYRJNdNa0cvAlXqNnxoQ2TCxIJiGuOyHH98mIJ3KFSXk114aYQOzZ3PK6xFfNa95DAFs6WPQsloUGPgr9LZHeTM7-BwPyVgvXn3NCWl0q9BL37e_JQXZZexu3TpxEDM1rXZ3ZTGuxONAks4BzH1efrwsuLDvunxWBjev8JyX7qpcEl5XVTNjhZtd9DbXpMkF2n7e7w2F78xr5RQzQ3T9ZrxvfEG4ATqnBobaoj3DUbwKcXTgIgfws-yjYIMuc5amUOSoNOjlwmdcoCzXdyXvrr-9iQaZQ-fFyioXRV7lK94lMfh-U2Jnq-Q8b_0jUSEW1E3aNt_EHgA5EJNOzO8jlB9BD2JbGXZiqFYUuMY98_Tx6JJICsl780tEfMOxiqoFnkdbywIBvkS3eoDkB3V14nmYm4Xya7nxDwn9B-QtJxsEJzwQfW4c8Tfjis041hYTF5tZipm-CqQXw1oc7rlu0EDn2J8j7Ho5eUrICznIjAOzfyV0AVNb9tg66Te3QHSmiUZjL62JGbXNDeoIq9ufxweE7Cqzy69yq8e-WHAGaP6gy-1PkBANPl9GvEuEXMzI3gbiEmEAEX7UlM9J1toxkz_tF9r5fIo-0S_GOYGi4Vc6G36rc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67864cab327f68-20114266','','','2025-01-14 11:39:42','2025-01-14 11:39:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41979',0,'cd-form-entry','',0),(41980,0,'2025-01-14 13:38:24','0000-00-00 00:00:00','{\"firstname\":\"Tracy\",\"lastname\":\"Cross\",\"email\":\"tracycross83@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39154\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7WCFaGvV3sJFtO1QmfkuMnfIRTP92uhqx_Hg1Rn5nhdF46B-FcyizycMMusF7U5D8i5QMTTN0TuEV-sKsnLF3IMi2XYbf4qG0_WEnjs2SfPjFevQWgUy1Qr1eBKzeVnor6G_ROA9grs7fKdrSFaGVtl8kcr4taGIL-Psd1XJOO1lMOmSmUeQuLWhk9zqQSjiMkaFjmBVvaJFjCjfApICBCQ1fMGTWxQWOsECwcSLLcZBst7wlMeEjIOcytIAzo2f_biW4q6I5UbVWdcA4IQXSiwJJbpyIlTnAU5UL-VB-LxJDLT5tuL9JlTmd7siJl3h52hlZ4X7M2V4UhOejmhvDtb35Ycap3BBoB2-cekVAWoQ7QFcJyri3XckEJHMVoakjFrmUzfWXbbYyRB50-WiCYclsiRdDx8rmGs7tNeZeQHpHAqva5GkB4Es4ycCs_ShkGcgZVQknqZQ2glHB4wZmK3WFZkEDM_on3qS_Ayr6hQd_Ul_G1G2NPEyLS_-EadszweejMPYl_6gq-zR1h1TdMJPP0ImUEi74F40Jw2kftR6M5gwrruOQ0rctuqCWQ3jTDI7lIsLLAJnx2gf6skjnzsdoV7Qk71ZYHKzKkYMEHzEz97B6UXbmaomjsmpYJ1_V9BzdvK8SIMFC-PQb3ZmemcaiX9KJ5DjmSyIk7A2ZaTlvgjx_h1po9oTiBbFnsG-2ha3hYZLQr-pF1oZMSA6EHcz7CX2M0AmLB3gYhuByjPiF97dyyf3zjkoGpGaOd-i5X5PVgv8SbJDH7XdolXaj355BHUX4IFwQqAbJ6KxMAKL490FZtziKWN-un4UFX_TUnHrB5Nkx9Zt1Jen55Tirzw6CEHj5XFlITqJLfWRoHejA_waPqsBwhb9AxDJeeHN27pNbXWUdWb2hZxgNYP1EERiRBN4FTEzgpN5eyjGBwhg4b0DCrJgQOoTGt3tR4TqokIhhMxsBywrAOrw_OnsIIcXP_HB7f1ktkvPwtfmWyXWY2yeqmzI8ky_zGOhKtFuqmSI09Yc0hVPTFr2vThS_GV-SKzDLySKI8GMwNQT3oFagbXqqpQQLs1nDjqU4PMzFHfPooVleAX9v_B_pDfpHRBtdua3W4bj1mWy-ImACVgSEmnS0UtcmgvTyVHGEQA0YsYuEycAh29cOolJ1QlNyGd5OEuYKHHp9LliChwNls53UXa0i8nUCwMZOlqggyxOpa7X1PbjuBK9xKYtsqpvN0YZcBAGUFAhiXEhL19n8fN0OXnTlMveqBsImjM-RlkZDrdxwtYcuTBFjS_WkwmmYwjLK9FUeJt_hzX24TNsnqm6wyp4Hd7Xc8rO7ebcINapzfBui_iS32pY-h8TBiOX7nFCc38n-6nUaSFiyT37X47bZsXqYEfeya8H43Jlhc-LiyesL80QhyvFfDKBohvaR32svxQZGz1_CxP_nEK7i5a1___wBpYCkh0Z88dKAXAFduR1Ck6a0jVczx1_kcYhqEdKBpn0Q_trCyea__h24hyRhV9StXC5vFgne_MO6dJu6_eb4wdE8Fl-6lgt9iZzDIjrXZBKfVQ7surt2DIhXKX1hLliUW3yo6wq2rO3kFNovCpcKX1aLILnjzlRmwT4td8886RWiGwklMW8BQlMMRbzJYqEt_SsdOu0Bbfnyu26Mc92RXuaIBGLsu9GkHAOmFw0z8WUFKxut0-2rO3VDoXySKWzyeWmWN2LJC4naVqOgnFLdAvVVHSZHl32cXmf0P0t53iiAlJKcYc-RpeeCMhzx5I8TMRvSB-a3BYldvRIad8uH2_fu4Q0fqer2eg8-mv5iN4NS5G4pIiKLMGBj0LJ0yCEA3LdEA460PXZ0J-AhscTS2NmygjUdqzEKkOwIrMDdT2Tf5E-SKs3C4n_YCqcGWDPnqaI9NMYO0HNOA6pOr79luShG8ebiZH9GWM5pKt67THg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-678668d0782279-32107474','','','2025-01-14 13:38:24','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=41980',0,'cd-form-entry','',0),(41981,0,'2025-01-14 18:31:22','2025-01-14 18:31:22','{\"firstname\":\"James\",\"lastname\":\"Joynt\",\"email\":\"jamesjoynt@icloud.com\",\"contactnumber\":\"08438860777\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vSWqursLL88LxfE6Z4NMPdb&amp;gclid=Cj0KCQiAs5i8BhDmARIsAGE4xHx_j83vH7zBubJxxxMOgeSxI8GAg_lDr-WTNL58vAaP6QNlORE1c4AaAs1fEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7byylZwgRKVpRnFpFffB6TbAzSfWJss7S0niIvijk_iBFIgQy3DgK2Jh6CEmGKLVn7dPAnkhq0MhEpGGnGOEk_mHltRJmHR1_oSaawvdLveWBX13nrt8J9-qIIZpRjA0nNY7oIZjRwy_fDHGwQ1NXJfZDEyZNc-6St7Mf1s8vcUGFYONzbW1EKqWysM2hCxVERYmDMgGuaQgWtTfY5GKrNkryvs0evci06G_A07ugM0eQdUTZfDYDG_SQ6u-toO6zmR828r9A19y4QRpBSweVQilR6zZQ0tGUVCAXGQXiQiQ6_XNZM6aijhfJF48POJhIAYxwlMtpN5I0jJTcXEFU3gEvYeJUZMxGXGmYYO3mkwQFOoXoB6sYCV6d-5xQLyEMQyevDfxynx_2HnTWU0FpzplJQgY9Hgfml_j_YV9s7Fptk2use7kzXDMOlvttZM07bF9fpJsg3w2e_ylLDzAcLnlG6Qh_w6rWFXFmRh_Hqstt7Gs8DFLa6FGUXanVx1JCRABW54ewW8KAfaAbdX3WTGRWB-Wja6c4WFDkdPsK_cOnIK-9MMKyWwn1TjhoP-osvyjNwy1UVLzu9eFFSjPYOY0QRcPxq9faID1qe5R9xcMKVR3NQHWyvZmMuwElJLz1vOd6AlrnUqDbTb-yi05Nyw8T2g6FnEfcR_zfP2E1JZDkSiLwyjKoHF4tasVcCFtwStdMva2fNjQaiCF8YKvG24d3RadHgMcp72pgBqZ7GuLXe5sP_RdLmZarEHM1AlFUfvaFkRcbT8Vhw31LjMXoDtGlsdKqJKzWtV0lSCe4r888j0cIEPC96l_ib6zGZxjX7rd3zqSACAVX1mUpeLNK1JE88J48uz47elvs_N1L9Fd9xd1u7QHsZRgHM_645idDEUGjO_ZziU2FKJoJa82Gbel04wQrNDNFmsU_9nlQvlN8cRmSCud0ubQixlHUGsBPosdvgaV8wHpYfaq3r-nUxERTkGapY8uD27cD0eemsfJZVbEvxmLAgiB3SA7Ux21B0Tzp7hHi1QYkc-LFPhozmlbvK3VoJ-w6-4a26rmOCYSR75kdQ81ajI6qadwtK4aFwDEoWNBcx51DcfINDWYJmbhtdu5Qh1ZedNanlhk-r5f-6r6bkkceeGJQlJEeWyhLid8BOj6bp07HpAc2Iy_iIKJKd8AR9lHoZgkWVlM5pQ2YDaEeedjHs-qhIiSin87l-rSwKkPXQDxpnn9Om2gnL-MW6KZ409Y-w0n8Uv3MXhCvv2ExDWYA_y_z0Qhq4BiyvoJB9DzIvtjh3j1LohY82fnPqJP17F7vs5q70foOygOzerBA04svFTJ7dvevPY4k-f7KfL_rpZy2OqHjc3z8Ul2zDBXMnH0OurMTwIxCJ8Jms6slG7gcHRSV_YvcXhyscxakuKsoR2d69Oxc_ESZhGTmUfXokCQjFhwCe39VUk5LF3jz2-LTgU4UF1yP2-mjS6mmxoj_LBwkLQnIz47dnkAvYOpL45POObozEny85epryOF53h4Lvcc7NZMB2HyDPjOtHf1F8DFXVJlVhmGqOxqy7MOmYoN1YuXnG-pgAyUBtsq84zSuy-hvFBXrOc1gS8bY93UV7bdpEZq3otp-IZ5BkWaFM_GuXfCXeZlNYoyMlfWJvtz3v3Hm_WtGGqo17muIw61-zmiS78nxlyVCBPotzBWas_2LUhJH64nvMDr9Fhxi4FpvEKriJ402Itryw4s8pKtoEx1KJ8pAwDqVo6Bu0s1A9c7BW-bEGk8vB8pRz3k97tBcaq5gqoNNIvakww7CweYBKqQ4js8p_QhWn4rnOPRbbJq-6bJd0dVRKhr4JiC_JfLj7UDC7I0_GlM9ESqS8YiYzwjh04Gpy8eMSMa_dWPVoV3su1k5A9geyniBty8ZMwuDxfN-sUxSZJWy0m1JLJ6TUWLYp7yZV_ScpY3Ht7GoxHYl86qgv_bp-3Ug_2wXB5Wu0M9HpCn_sLg9pcAcZaGqqFkjZ86f1b7m5twwzd77aAeODO-9GFS2pLKHulGn2qcEF55OjY_5QONBNGxSicC5WS-n-1exr27Y5-y5UpR5Mf_khfF4EwhsC9Vz-uFNj5OblWjnOGCFOg5kT1w_FovkgLO0LhS_iJ9wxuKdDu6URB9OsoRzaIkxApWJXooKEY7u4juLiRsYyakTDoDP6L724ZYpH7j2Q_hedh2xwFMrwSOzAq_OpTvOOs89tgvmnuCJXxh87xPTlmJLK8btQmBepsjN977xBqt-juEe5pzdI9rRU3KXyWTgLwpFIYEM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"4\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6786ad6a0e5c01-51520696','','','2025-01-14 18:31:22','2025-01-14 18:31:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41981',0,'cd-form-entry','',0),(41982,0,'2025-01-14 18:33:07','2025-01-14 18:33:07','{\"firstname\":\"James\",\"lastname\":\"Joynt\",\"email\":\"jamesjoynt@icloud.com\",\"contactnumber\":\"08438860777\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vSWqursLL88LxfE6Z4NMPdb&amp;gclid=Cj0KCQiAs5i8BhDmARIsAGE4xHx_j83vH7zBubJxxxMOgeSxI8GAg_lDr-WTNL58vAaP6QNlORE1c4AaAs1fEALw_wcB\",\"recaptcha_token\":\"03AFcWeA44fRcWxVB2FZUiibY1cUHv-j_wqmpm14B71X_y_z5ZW8fpvnpq9TtghHPRM7zMM6VQCBevyRk_41td7fHdflSBVoYAPBsoAMItwZwBom7xNxcSsm2SImX-C6kzLLjohzvOrJsr64gcorBTqJf6X3Do_zvnJq4BfpNunDI7VmUJTZxt59w0uHQWhlDfbk6ON4K0_oYgh9r0t6rT_G7-CQ1H8syMbIILGCoNBWQeX-MeaZCU0mCm-AvezL7p77UZlYlvzAIboay-2oTyDLTsMbyVAPhfEA8TAhb42K3DQmcYU0pGViW0hSWZ6TE035kz6t3y4irvsJ0FdeWFlAJqMw7aXjt5r2VyCVDXilVK4bo56vHBGbpQ1JmqfjBQl6cC_b_EIAxRNKbtDUCmwoym416gkElA1li2aIxrbSypp1WsvmHLYguEAiPGHTiKlVH5ek6gnNlFLb6uKKVkvjmNGulh6LwBNPHMT6xWmMAo-b2H8nL2hC2V-iuj_I2bKqTjHmZ_6X15bX7OyIpYLvyOLtfDgQb_N2VLZwtYZrmesbGjfHHs_IX-rz79ad3k8aQ710_Xv2Rg7Yr7JpS2UQJG7tRn2Rr1tIhFGLuZGoCKiE2Thq5UjcbeeAJ1tY4Q__yFR83HSagG58pWob1JgqEw0JDBnJWWLkOmPM-Cj-nZVZtBPNuZ0ePPOr83hmAY9-yBf6SiVMysVXbx65TBjza5eMDzal0UgAsVcYLr6fStnQpVW0w9QTl4_3xbemIBsccpJ2EHQBGA37AE76N-XlDrQeeErFnIACJD-D-x8nqku-6NN32fPvJJydg43OAgltN5pS30ZLDEvVXTesEdtZmneppd5t6mSpK-144KjNNmfL5XLNOmOjvYMW0xNYsysyAMRO3dV28hDENr6MeJDipTuSEA17CL5_D42oU71q0oiflNr00tPrplUsJeYKp7AUA0RW75tP_9lcozXxOT0cCRt89Ks1BCX9L0qWoKCtuIegqo9DaLt_dRl6mZiJGhxvLt3QT39X3VEFim_ND3xA5pnbliCxzWIY1gg8TEu_RhydNx7sm7lWrr8YnHO1d9nnmezpwZewrGDBjZLSjvAvDUjti0kAgvNF74ia8_a5WPNDo-suaC8BJH-IhGiCoqk_CLEckJd41tXLa_PKvAKz8mBPcPvrgrScf_RXyjLk-yMz84L9EDDtzOZkx5LrLIW65IfDX8TqiMw3N7jSWJQrRMe3nZwzH7B85vwJmuAV7Bl-EtaEgs2WDRH2BrjH0fuo5TFCL5iOAAPwXiKfZZyfUZEeCur_ia0n_rTNXlFdXbrNKoVxJno2k4UHu5hIFLit6pFDt7WrD-S2bpNG9l1Vt3gqFaTYzcj_CXC9Wy7VvMM_RenxSsFRGdgxRXAbgDvxy9o8TfBL9sJ3mbvdZ6BtLTwnan6bxsoRhGu_Z_xjmvU8RameMxnJ70Miy1rbFd5PMh8AuIt0DZB1b7h68vCSs2jJRT54YvLFw2BXBQqqhcZVsx35UnNZ-11JZTupzPcPJtw6JRz-Fn5iPGqUrJK7zuzY2j0n5Bg4R18IQZrllg3HHza_k9CKczwvHqV2BrsBD6iKBX9N9QdzqWRhVyD2UyGvQAIwVgW424E4fJ3Lz0MX8PJYb82ctLDSY7He7CW2xT4NoRcBWYvvbIY8J3eRL5k96bhmIND9G-YDq96f3IT97JAdLaONb0MAv8PMeBpgNVdmTK_ZGhUoPde_iwx9B5hUFqaBzTd_YRmanJHz4AbrzkhpjyLtitB5gpghtnJARkJdsZ9yMVZI_DiyEsbOqGdfjIlwr8a7BnDMy3HxKlJdrePAW802yqf1JxX-ZNPsETdsi2LbMTipwAAWfyFb-7gveNWhSGFpn29JtlM4gTEg8dCfKuv6Np7LvYmtUm_rSDt1H_milGGd5zp2febNirZt4vkAPmnuKByi4-k-7tpPuZVD_Gd5JD7sDXRNWKk8xxt3FDUI8-gr0OOVc9YMYAwtsyK9Jnr0a15jUvHsI2qEKrlRBvjwJF0ujZoHAso9ehMAfRD_hnEvDHFVm5uzivYNWrHbPNuCk59olUWjYWZ0bCm3C1fbNdEcF-qvhyp4kvRYWPFwnjqzsrTwD9qHjtxBnlPDNksMI7thbPAQaryk35RkGT88ngnpWFVu_bAb4C9FPuYQyyBoZUI4tvlmvruyjnKdxiqN8UNsfvAQJ5lPXd8DvV8EY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6786ada1d930b1-83265931','','','2025-01-14 18:33:07','2025-01-14 18:33:07','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41982',0,'cd-form-entry','',0),(41983,0,'2025-01-14 18:34:15','2025-01-14 18:34:15','{\"email\":\"jamesjoynt@icloud.com\",\"interestedbecause\":\"0\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"8\",\"currentpostcode\":\"HR2 6SP\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vSWqursLL88LxfE6Z4NMPdb&amp;gclid=Cj0KCQiAs5i8BhDmARIsAGE4xHx_j83vH7zBubJxxxMOgeSxI8GAg_lDr-WTNL58vAaP6QNlORE1c4AaAs1fEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4Fwhil_vbBB_SwiLbRb9c24ImN3AnJk6ffu2-cWWRiqIV_XVRwHi2kV9c9BxCHbMSj40eKzI4W_BNv6KM2yYfygRAeiAD0F8x1tD8CvDdRvXwaDlaCjdouGO0DIvmJ-r9OXVgFmVp474BowqknfxaJ_IgM5riUKBttvxoE6phAilR8dPfg2m7M382P8CnCidgDUEblzeCJV_SBj4Rjfz-QFOi37FHfkAPjQ7gRpsxLGVATiWmMn3pklyGHof4oNKSY738RIiMkKp0E_0qmKmWKz2_VMHdW553F4v7kHfkfVvMCYatOVzEmuErVPTnLaBEbMaGe6D_7OnY2l-Y35PcxWGAR1KV-Zc0i7NRBxF-hH8OUwYj1duWcrTnrCGVeeSRl8C3MogmVDOCide3pVJG-DJLCy7yrrr1hSsocFoa8ZxQg147qF_B-h1H1KJNs-6CLifV6VBLYz9oBHMzdEK-s6mFjgDMuUREv3Pczno6AoiqAefRNKR2AwaxeIaTJE7C0ha91I4fM4bGd__ywypzt9D19Fyp8KGGUqvcqT-clPTqkIoH9ZM9TraNjTYFs6-v71NybwcVfYllRFQgOyF-gpeiTVzsiX7R2lfwZUjSQjs-IUYTMHMT7HLoMw6LsNahXorJ5GTVDxLuJucyavMnj9KXdgn_Hk42uGLJYbDI7KpRTGhGxKrc6tLGup0nSXVgk2-49NBVXWArXwzj1DOEp04bNPqpAe1y0lzJIoj0gdjRZsKpGfnyaIig_JhMzWY5X5ngN2LiMauK7y6-n9Q7hhHedDHlu1mLOOxZFqEGarD6PhH5vByahDczavT4mK8IOnJMBEmmrr8U50qXqnzW9oKvemNVUydXyZa147UZu_L-kStKdlMSD2zRYyH7C3tcdRtEfrPHb4_RBwkMmRI6YCGofv-rfK6cL-t7uf891PPjj5GxHU3dmTY1_DKbYWwn7xYxigSo4TbObSKN_lNDhHlqQ7wvNB-iC68VdEOzo3VfgRa-613ANPQs2mmd_fS75VwMMHk76ksQMxj2GqqAVbZwkzdTHVYR6pRl9NyKwfMIyjkT4DxPdJGJ08ljXr8n2peE_fxIaY-HP9NAAsbVDAiB2nh58evYoIOCJVihiBHjhyLRWrEse9KgsLT9PNeLdsFwWleIydfwn8RaJbTy0Ukwf0WjBA-BtyF981IyfNLEPRTdU8nS_ng3jz3JpTGhsxGYjSnsh_iw8MCrTXzOotwdH6Zjckr3O6r3HliUBZxwzUaKrT48mEyNpBtzCSv18Fu-mNGjvCHWtodwWLOqlSGua4PDf3cAw0yEHqyt3M1m84PUnDPgE-_k6dNtLvSYl0iqLaW3pv4iWvh8t6DMrKaxf0FX22y98QrYwMbmbztCJ-t8YR1lwOX3PetcRzuwRULAQrQ5bf0o-j3seHekMVODR3GV-BV8IgId0jOxzgROY6C61s8Xo56c6WaF92iwlPjAWpgFCSF1KRMqcTMa37kNPKh5YMzWgvYNFnZBycMzGe0Ae1k7SuoKQFkG3V1B4FYSXrra45BGOY_XRD1TMxkcaAm6G4avOMifuWMnR3J3hwNHTnZ8eEDl8BXr0bsCp0dNQAE9_ma5of5zMnqj8x-EK3q0cTP4PTzZHswCrp56707IKIqAO4ygIEmLUoFwQ1ABb3H3hFPhAd51ZDRDR1JNwNHT3dyZZ4_cVwLgxDWyI3TZnTXxsDMHoONq7sWoNyofWbduXMRxo9xmcf78LFkmJbLS8qsWeArSPMAX4gB3Vcd2jUMoFVcAiDsS796mdIlHN9XX_hfxMGsjz2jDT0XuXeXBDB3PFx7_y5NoA6PZd__UHaXpqkPR4E6iynVHa9NenMf4cnKGdpNykktszAHHvqamhdKoq31_KWh_41NiPuertyif686q4k8ProBSMnqr9ZWOtrpKSAPjrjtkZKzD8mWvvDAee6QcPIdJLviIQZoNC43tzVK6e35kE_vKKjYuenC6bRwEF5T8E1iaaARn5rxgG4stFluO0hN5U8VHWMdNvEAnIxXA2Ipifvuzzjf65gV5vIeEGHqcNLxrysO633VkKFzOSTYYp3YSMG5I-Y4E8jlXFmXLY5FFKFErx1vA5tQTpZ98bzkBIvW_XsH54-KUJK9MVUUMtJO1HbrK3mx06HVX6KbgNbwOVQ6GZN3dBj5c-HCaRMmi_y7RgAsd9pWsFkHfAoACp2IT6zak1BkAOKTTPJ4tx-QTLGH4hxB_CFvzOlBfhi_7AapoZc9CNNU4nz4bL0CGKDcNkuIyLE-Y\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6786ae0a617750-43817155','','','2025-01-14 18:34:15','2025-01-14 18:34:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41983',0,'cd-form-entry','',0),(41984,17,'2025-01-15 11:31:05','2025-01-15 11:31:05','','CIMSPA Education Partner Logo','','inherit','closed','closed','','cimspa-education-partner-logo','','','2025-01-15 11:31:09','2025-01-15 11:31:09','',39207,'https://biomechanicseducation.com/wp-content/uploads/2024/08/CIMSPA-Education-Partner-Logo.png',0,'attachment','image/png',0),(41985,0,'2025-01-15 16:01:31','2025-01-15 16:01:31','{\"firstname\":\"Chris\",\"lastname\":\"Smith\",\"email\":\"ceejay.uk@gmail.com\",\"contactnumber\":\"07738638038\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4AqygPzphcLUFRIjPXq2Ly2OL2A291XQwQwKg0jfndEW3nijSTXBC5nn4jQfj8m95joSisuJolpH9yY--26GL1sOtaUMG0hTQGPXago3vh9c8odglI-YA7QhY7tVmZbpIdKPWUpxm-Vm58pfn1Er9VmsEGrqR6798J07Er5Wpr-3vh5tRlm2iFDTenr6M8pWpMQQpeyKOJiIDQjQz_BiXplftVSH_Bt6-ypBmp4s8LTn-zcgicgnX8Gv-D2hfnmvWYF5FDxVfGnRdJNoQMDFHZel8Gg45EBM5io4TMccdJX42bTLCn7WeNfLodISoUKE8nTpIKLTCwTl9tjbIp_tnmuwuljAVsEz3QskL0WksIULjEc2AHrYN8Qnz7wUQEfby8dMoTr6o4Gc67N_mwrzg2nBYz8_wZOjOgAbF3VDEqp1oOjGzQOC9ByEZM9h5nI0mv0ELprQ1hbLO79FzVbqqsjxETmU-YJHIwkJXLZ7CheGHHrnJhEwwZ2ay0lu2stp44jcCr7KjSWLBplneoIafcXqbYvnnxIc2THjuyzEdTFOyuwA0f1EUi5Tz2EISg69yCQfopMVZEPsjchR3jHhta-I7oWaZVm-83AZf2i1BX8-iedga8vm0tYflNk1kagR0a1o2kWaNFiksddhh29zWb26J3bEFmvMmI4_Ku1FTJOXimwEPTPa3VcoNGo2eJknJPB-tkxaEegAOZQsMOtcUZx5MYJEsEbVubcejKM_Tc69GLiW2YEbFgNSI8hTp9PbjfxrQJfLMc_KAJxwV5dARvkfW2c0YOLSJDsFjkg0522iwd9BAdeSoRXs4toq_SXZSotxdnL7g3xGBXG1q3VHWJzQgHf_MfxJq06hrpMgMhpKpev59Ok_-Dd045KoSieyOVaXtPSyQmIiyQoG4zhVU6U_6z3_G3oWJWA4MoJ_L-KrfCn9ZMLis8giDjYBS9pTcBxPrd7VXStpRUf-lsJyjhFrsouII0Cgng5XbjX4C2Dw2vIiZoVa8l7RoSd_CxjaGeFa7weIX8xqZ_zd4kvZpbDZeevdz2G2NPIDhF2QoIiUwU2dM1XzDRp8W0593iNDwwBBP81dLXKi7CTU0NJU_vVvKcz8k0pfZe7DSWwF-fQUE4j5p7I4YBFKYMFySHv_kKsN3diCa1KAFwFZSyAYHEgyt4R96ZeeJt-VMjYKYa_RrkpQbM_C85WGny3ou0mA6ujF0XJ6YwcuNGwnXBcmrJYR0qfYLd3_gjQw1-5vPbJYpOkC9dOjctHY1i9jXlUofS0tvjw9JnlM6PJKriMuuJ1Fy6RncBF0bqsCT7VE2MfnwHVlvqMmud0Dj5EdaYvWWwTfBuye7RKw8bERkqCWJ-Y-Z0Q1nwHs5Iz4mfRlDzhIbsVv62j48CkAiS_lCGaM4Avc_Tkrjteh1WiP54ogl2TrfDPBHPWq-CU_z2ekWmE6pMIpOUxNuKBaVACjlunfjWarwRm_UyyuXLF0b5mnT8es4rEqNUyM_exjEHH2Ge3e778Qx_zaG6qTGCDRomUJpu533uPwLnwqhEJuZHRf_DQyJFRzYYrylbcf9fZTpxQfq2YNCFD0Q-2OqKk7EvhIvABoHvDlcGpCOJwuZKtyCTNlk7F9XlZUv2RHS8Yw8Wju2x1Ki3zJit3fR4pOIF5T47CUyx_oqEAD3kO7HaPrEHlcGfKLo4uQlCkpThjBVk3QlBh6yKHCwToKJA9qk_EedAdGOmRcODvKyaJLoCBz3-NQgMHYcdtm_z_NSDulv94_gbGfCt0LnIaMeqFW-QUC594STt-SEuQOSzfbBM94yAMqng7_NwdXY0I2b2KAP24f9FoLnxIvfuvhOUowNJqyuuru1tnzb5AkfwaSzXRmQv6Y_bL5geGZVAbKynB73BAON3EqAS3X-lbAHmbVc_rb_kvIwnOT6VSFGj5P3vf6l_6ALKNA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6787dbb062d3b8-17551093','','','2025-01-15 16:01:31','2025-01-15 16:01:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41985',0,'cd-form-entry','',0),(41986,0,'2025-01-15 16:17:23','2025-01-15 16:17:23','{\"firstname\":\"Chris\",\"lastname\":\"Smith\",\"email\":\"ceejay.uk@gmail.com\",\"contactnumber\":\"07738638038\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7Jh7S0p6YU79iPenLIsfDC3HEbCGzqVwueFZ6C-rtajmgtg7OIMEV-HTJsiGtef0fHIGNzARlfaoKge4WDcxovrGh0WJ4IPZB-hasAUGU0Kh94ICWkOlsT1MP8J5YaFSh69nnpgGVaKtPO7_FhzTDbeYO-1efvVJT0IlUlmZWh5BvmV7FY8ri6_BkEPc-01VCeHxH_kW3ap8yF71NLJXERyCC4oXSaoBzFKc9cU5PPWXPhrGM4zx4vAHsj3Z0l9j_emGvMOwNqx1A7wnLC6-lU6H5bIia4ZNlmXb-ymPTNbSgBIx-xYoyijpn2kzoP1e3LB2Hn_naKs7-kX6twkK5cefl17BDZ4LtbyMapRQa7MdrV6PGoaqZzEuk3pgYtPxQTzoO2S7wTPzr9hYJTCgL_vtN03XRx72RHuKxBQbJJ2Zli9Isb77O3iVtrF6-QVrZLVxBle10fUUeeUAHW35L56oWGiaH678mTlxmTwe_HN2m5P7M6sFKWt280-QlgZSXkXxy743n0-sAR6ADmg076j7hZbQWZzebL5x4-j_X7TAs7gz9Iie1uwRP1TU8eZc7GgKiDuFIfaAud1ryGFoY01Xlh2CT_M2BmKipa6wtXxPCGdsw8zMY-MlsXE7j59SRC0qFvzJtMFZIRRuNgnhACjbe8XbHa9QAoRj0oDEcA2jsbo3BUmVEWB9ntGSqkaiaqygrMiU5h6x639uWbQ0btpgr1S1Nd3Qc1mcADd038vOnbhAv2Jz-AAzn-nPdJz4sVIv3CH7b2vhLPQnFu_6th_ifqU_Z-K3DE3Yn31f3tY_QCQ-iS8ECKjxqmr52R4hSgcJ2eIOTgdxBTWywffQT7QVoxvLdCf1k33rs-lb85kEi-3TDg1u1LXalnhRGxCLqCuIXo_R80rcPP6Cc5sUEWoVxfQHOSWnjY5_K127aye4OAIimxmBRCwuy2tk2NMS52xf_HAWilk5R5iN-s2nS-9ZR6I6GSSe_HHjCGwcjrKgfe0-E1u7ZffWls3ny_te2BnU0wv8Wbb7DwmR_b9wGGqDIEIV7-6GppJTeceLqeQx_FkrSNm41cr_MciY8FfPI49oikJE7EASz6yrLtLlvheZGaPUbEvXf7Ga3fyZdr9JNPozwJYILQIcLDtbMHIvFX0tdt-8t8gSxsO2J0OLhL5u1-Je6DiCs6fs4KDvxcpx7t7cskQApLTtkTRwQcwOO-IlpkS6bJCyJCVDFm2zeVPJiTeUDpIspJtc1lW79sNX7GUDd8vpoYrYKWs1j-bGa69eTQ5igqot3x2vZ6O_UwjN0251dcL6VpeYS_xcLpz6aoAQ8aMZKZR46ifItijXE35OfoeuxqlxpbbsMcjUlbOCyaHjV9DWAt_6vS_l5S_27XxIWlq80j-X27ZbMoiHctT3z6S0Z91g-y5XH60J8gfbgjg5eYgaG_Ah3rL1CSYe_blgp_SwqObnP_Zk2PLPN-Ld3kFD0Fou1TmW1oVaXDfXcR-GV8MomMxzSEByHLlVFDUxKn-dDQICZhvFJxoTCKBfI9oTKiUapZ9tjxg1Zp1n25KiwoqKMknJ5gygQ10c0BJnVeiy5bCJijxLNUoAuWdee0MdL9skq0dOScTj_js0-LWn53Tc9gcmZZXygu_WkbLITI6H3n6fCVLwCscVzyk4HAvs3PJicEa-1lLgKrBjWsKo7QSXjyazgvdmr9t6aVqHxUceufH_C8cfmXWojCWMx2jJjy2MrAz_aO6lpbk_pW4hmb_2FzUXQ7s7l_T5Rpt1UhWV-dqWZQXYUqGzo9lVABORqxA-ARfRcJlN8Cl2KMe4Xn3OVnNO2zHg-t5dg7AQvTgE7i_XZJ_ItleRwTcLJaQbqR2lR_xESU4t_wg_kcoTSs0Nrifk8se0RWmgs0MpWR8DsKnDIr9ZP5yWsg7P9Nxf5-ikIhVj33Nin9z6IWZFGtHBQC4ZavGA-oCNDrfrQXINnpN-K3QRmz3G0ZE4Qd\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6787df80651ad1-32980387','','','2025-01-15 16:17:23','2025-01-15 16:17:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41986',0,'cd-form-entry','',0),(41987,0,'2025-01-15 16:19:19','2025-01-15 16:19:19','{\"email\":\"ceejay.uk@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"0\",\"regionlive\":\"11\",\"currentpostcode\":\"BT27 4LL\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA59SS4vR3PvTR0JMb7gXLYccH_W_IzyCfE-X3erjuIohSmbM4u9yzGwsEVk_Td4Q8efsZfaoAYDprmsswuwixxATyQB7ekibCqCXIwM9u7azRJ0BbYw0ydwlHTS8vTOgPgcw3TA6j-T3DkIPcnqOicT6T49yicltA14HDpyCV_6EclTVaW2PnqFf-pbPmB6ZV8p875_w7MAiURtIT2gRhpphcHC897-q4Of_zuIlotJaGuNj08xq7xe7qcOcmZBwBQYRTlUnHqFfbkcZ69aQtvDaVBI8-wtIoc6ePUAJBeXRyVaPpo85cdMudSNErJ6uS7MdVrgLXZ2C3Tb4qpXrWd2G9Xz3UVyctCw9Dnm-667ty7jBNv7_aOcDOnVpS7ETvhBMRixx1xRz1KQBqtMD9gEFzETj7RXqrvFrsH-lUyXUTgLKIRygP6RRdNaryvfPNRiAmKj1N_p6V3j2nRkSWRkH99uNVavKbGkzEXYGn2kndV4wSxX4PZmT-rO3fFswr8tuGp4kI0W9JbXYdp1mHjM5daf1woTQYAExUCCS3Yf0UBtmgVj4v9tNAtRdrbZyTyjEDiiJV481scXqOWl2r1MfbJ7NXF3jpUR6dAgyisvX_8FfJksZ1YQKgkVRL3nd6u6lJpG-LkN5vSJpQSIehVgVIDD3FxAs2jmjNPJy98xAYcd1SqwHdmT375gAKP-cGumWkc14g7Kgdea39V3RUUicakwbZZRfzOW_IM8T1hF2xKpnt2GeBdu6isU-lLVqxOn5htum3WcuLTRPxthbDPXcmeRRrC8Uy7R4YGa-R6SXVS1LSIo4XF2W_cDmDfzhXdZKJ9y_3uwV6sJ3-BRdiUf5P6G2uqdZnOc_meXl8Rz6HAQUQgltnkeNKLLsAAcfZFtlOtlCQAp_dTfk78yTWDV0645Cm2Ncdj5C8oWFpt5X82pCrBT5lvXvfVwfQgVAS7KvJvVpbxB_d4yXMzdx0scxB6p2T50QbLm6gp1hfliNrC3jhIbe7Am_VIRNF_tmDyUxF49YN_Ugx4wP8MSyNRSxQ0vwzGVY1_Goq2tAmx6kEZLi8IBMHsJX-vD9G3fimVVG46X_5tZXneH1UB1RjmjBcfJJpqhVtkClfCwVwgaEX57-2IT0zcB4RbfjbjTG-GuiiE76RN6hvLVOnOy6Azdt1VFpKU5TcmBfSvcSIu9owmj5rK7bha1KN3vrjC5raXV4obQj4ew35gT-oNHNpEQ7UiH0qgDdkFDrc2bR_iNraZbjHiQJUIbpEhWcPL9aQv17k99k_xWtzCKbRo20807qrWcn5uO_yurgoMZPpr_P_tokQdqVOFggP0Ze9aweR0WW-qXAbc-73j9ufPYmbPlRKGoqTXgq2vo3NfPGYQhJxVrjjK61S8IdRrZFIZwnsGmsZI0136UGdTALyMNTtmOL_Jw9wKyRtu76aPbWFI1Gc6qF-HToA09hDgSoskRaGjuc8lJ97Ux648fooQjwHiSbiNbDnPs9_sGv8eI6BHVDxu8hLXtKq7HT-C3ceawk9fInG0nlyunMz7o1N7zwJu7BI2fn_lK7vjCNVCADCC2w9N2JNr5DthD1me2nP_p51ADEutGIt3GSoCdw6uMO2suowWVwmQBYV_gK0rH-1sVm6P57nSRaUI8w7gfaUHgEz8H4j3ICYRsI9D_whFRUNcOTpuUURuh4b0CLMxvcqqH6Rv3_g1eLNNhbtQwBSl1fMVxTrksLWQpJlyGiNbyAeAclvn8d6AKwSbf5iHa-BymaRvPVQs1zCWlYsrRD-DDP5eVQQOgfqmxfw6Iy8Zg8GpTsfj4De_3KawAsEC0qjXaCfAEd7aZpn0Wl6qxmdD7PDkVX9A_V6ARJzTEcB-WfdFwoaAzLF2P5Kf3QxY3PJrsh1RzM1YAXqKNvVAV1yYyqLS5_m8-99NEHFdVLK8WpAi0uhmPtmQBTB52mf7Nrb60XT6SsURt71IvPYYNszxOenLhlFNp\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"15\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6787dfd912cb83-35176339','','','2025-01-15 16:19:19','2025-01-15 16:19:19','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41987',0,'cd-form-entry','',0),(41988,0,'2025-01-15 22:38:09','2025-01-15 22:38:09','{\"firstname\":\"Yan\",\"lastname\":\"Huang\",\"email\":\"wellnesswithyan@gmail.com\",\"contactnumber\":\"98311111\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6UQFA1m83Crr6DvdlyPGKALAX7axRLdiOF4zBkyrB84vUvjZMou10T7D5brCpU5-jOWgRPWY8_eElh8xHSZTYeAtFCfZw7BHVydk8tmQ1V3rAmh6CnWi9OQRhwdSU2nIBUY6mkcfK173PLxWip3dofMqtzA--sKHQH_W_Fi0o_7SqVbBuJ-zgRB-48OfW9wTaergMsA7Qo5cycZzTyWByGxTqrmtQsNbsn2pulXOTwpMFWyh_0kW8q57kRekm-xF_QTD3rd5PnIy9p5K0cHXbLXSI4EkhpljSs8Tsf0VSBuZbXGg4OaCx_c05GFuyf6jpbQLzE_QWAERuvNP1a8dHlDaxSJ5SIsX3Jjw6wprMWDuGC1K0JLdcnwqpt4E42VWCSd1JwmLPYunMowI5ZQcHGc0PSPhJXakiQZet4iZQGFnO9hZvAo9Ev5FzXd-D6GHe9u6oyhNVutPc8c8ERM8wTMQty5KyfrAoPjQjjMmIAZfuNFwhAD6MwCbaYk_LFK4kvhCPiiFy1pseLCAQQV5EUddlrqeOgsZd1WR2FH0oPZrcuhUyTawhGKWWsiDZepHwoPz8MvkQdmOCRYbg28yg5NVGb4q4RiVoNF8Pb5ZK3jj2tfyTypDwoPae919AoY97ZTt6VoZ03_uPziyobXhrV2L408dbIsMCwq9sYWrBDZywfbm51Iklx4R7xbBBJ20CxCXgn5aJau3vQUbWwzHc2gMVpcm4kR1EYuLTFjKuETJuHs0VGz1jiS355udi9CFEHKHefPmd3PcxW-MBatO3oPUBJ_-xfga02DJJ64B5foXjJxXgTMjaa0BG4yLH8sI8Y4jyzASgYcJE4Bt-nJqea4Adaoc3WuG92bYxv3zLW9RdJcbuJuI2nexSa4eT8_vm0fR6BtAnI3BD4fLnajU_VQeCdnpMjx9rdTfHxnuvMo30adHK0N-c-KGa8gPopzQTMVIYS9IHMVvSjKn5zx8LDK8thECC-8F5TO8q-bViDE5r3zGlkNSH3oMG_JklNgLD4P7oHncDB7Dm9nR3ctXMfvjIAdspAXgkyj9HPekyAyzsQ09CJKM9ww7VA8hBADOM1LN8R8by7CxjbVVnluN_8LLccEUqqdiM64ynvs_9cEzSTX_qtX35L1L3kXdWQ0yYIURc163obAYDkCLnnwOg2-pDkf0T4NsQA0DrqWG7BXqY4HeCcMIe_1RCLxMzYtvu5FzE8m41TQr8va6d_Jf-Crkst7rSOTD4F8W6sS6OQDCASAlnKdpmuce7u8OD-coSI2uwQnva-fEBsQnmuRXbzaa-GHMp8WCbbQ6PnlIW-pfqRLOkc5_c1lvGC3CyGYWHZSNPCAhhaE4BW85e70c4_zAYyk-n3Jbs23Y6SGgrgtv8VrOvGjUNQc3LiBBBVhpPO9_TJ8AVtkc2CyByEP76kJINunKWfwnnhQs1_rr2OW5KqJBoe_3mBh7kiQIWzjeOysbSfaBuX5WO4ITOPgo8kB3elT1aBcP1qyq6yLW4K5sM4_m-bWwofY-SPVVZ6aMRzbVAQDh5ZfRQB7uUpvKuQJUUAM8yYdKmBQAkrK-O2-NBQed6T4NPl4kvSXTNbEbjFeRXdBVBSB40qmyh-gtn9rIz-yYWdzI2m5qlIWHjLy2D0hPYB30cLONBAA13KaZqsU9bNnlUnMepThfTrOFrulExfL7ZAJJjNY9LYtfj_MT8xSJ1WGhJn4xQ_ORK4pWsW7nt_-aojO27g98PktoXcJRf8m1C5_wA4rMcxPYFCZctCe7os-p7m9Tj35rjKaIRtUzMqhIEmB5RBP-6QEq5jQwu7c_CATpTKpU1aIFvaa9xOxtsRa-BftBYa8-Je1eA6MXg_W5bDvh47QZWlFVhMBQA2L3ormzANmk6CH1l5X5kqKaQ9htTKGc4WUnq4t2Jr77ylDip8LcrydwxIBnDIed5nxnxLPdMJHxJmRkzIszazcsZm8IuAYuEWUBmdOOW8SFWW1vTfolDCycUxSVxo1awfeuKJN3puB2X0L2be9dNetButzg2E54dJmGyHylHh4HsDHVm6gZ2YKl2qpcnLoz4r6aQebIjxp4nTlz6__8mVEXA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678838c699edd6-44755825','','','2025-01-15 22:38:09','2025-01-15 22:38:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41988',0,'cd-form-entry','',0),(41989,0,'2025-01-16 07:42:05','2025-01-16 07:42:05','{\"firstname\":\"Chrissie\",\"lastname\":\"Mckay\",\"email\":\"chrissiemckay@outlook.com\",\"contactnumber\":\"07515832667\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/imovefreely-3/?utm_source=facebook&amp;utm_medium=organic&amp;utm_campaign=iMoveFreely\",\"recaptcha_token\":\"03AFcWeA5o5vYsDNHs8N6SkeslwmUTlz30JbLKCv_TguZFt14SHfZX3uCxvX69fF-OPzTRzUmeh2Xd5kB7hHSDuOKXa7zRYREAdM1jzweKVoKjzPgpOdWdkCc9F7r0H_ocoU29Ati9SYrgNiFOwRv6eTbncSQ1_SZHD7lknZ7TJhAa86QcfmEAIc2Kpv_KOQgGz4a53FhKBWlkbvviO-eIN5YwaLzaGqChc-83F1Zr0Y7RHPcW1IKCHf5I_SGIeMTYLRGB_7Duet_vZax_qt_PgVc71Izz9vgd7ixQgx9uWaBAFsRQ4nErmX0Do2Q4kNhjVBKBzbTVApBabDU3i0rjUrwdG8xRXcK-OL46U-VdE-0GhKpNm0CiKKdPX_Sncb6sp6NDVtlnq33_SxQ78lGyr3QStiT6wLVKJK2YBDl4_eE0PSlTHLWoAg0BQCoh5aa4yrCH_oP1SRiuwt59O-hI-HWUo5pERhlblUzT3KcSq-bPX964GfkJMl8Pn2oQpidcJiDRD2xKMqFFq4_E_xxdd5h8eiTizoj-5ewp-OnBhHkd9dly5sEitLOiGNhtwrDj35_EU-oFhIoW-ghE32-31Tlif9rFcYl2jiNyOeM1t9EKieNXaWBwE91qplA4vZP260VFLmVQ54-bJatzoFF7oktf4aw7ZORJz8sT1e1nAKdrRAv9X0qfvgBtr6m2hXvQbIkiNTXqeE9z32Bi8Wd-dVsF48a4hCN6PCyXIdJ4EzbbAN_b4cwhfiE0hV17Z9Zb2KrBNLIR0e18Npu_KWtpGWF6yf-zK49aX2c3Tqh0A_0M9LoFuoWqn3M5la-M6avTO9xp_AqoIHQCIb3ElNkH1kUCQ8eiEXU3wbi0gy9cV7-FdqiMLKdtyyjFY7p_KUnOymWmGmvvCG3JB1bC46sr3ETwK2b0HAHc1VUWV5hK53mTJShvXKhTRUZ5nrZ9-kMqfmDk_JjTv5kx_ofkL6TbfiZWOPoB7HpOJAZ9Yyi5aAI1-ahwStMzQ0zAk8E9qrKxl9ZyTM7AEUzuAkPFJLWA28WWa7ZXz1vIhdykiKgPzv8dFaXT-arGCwQbsR9R27cBi-kEmeO_jEEIfVfQHMZzPNyk9Bm9ZLMMLhVm4B2gOgX3UnzU0-2Td2LrcqcWjS9IBFhrECShSuH_OgHTjKGKVbUaLR9Pwe2eQG3r2pobUO2HkD_PWALa4bZ9u4OE64xhaSyG5qWzBN1bjJqTAdwTijaJWTLXSoUMN0V0SiDLIZcxOJsCW6o2ewJbuF7Wf_jIREJQa1LsVSGPktto2F0P-9xBIFyHVuOhKAGoxNmKHyNJUqL2H5UwVvX2yUqGRhisg3xVzIZfmGKyri1QGdCKs0WVLDv3MtrE3F7XFfmY3FAypIF7rAOYubr6jZDic6CrdkH_27Pyun9EbwJH1EMTB680gPpTEsfCl1EY5GpVyNp694jfzmkKs9FHvBcJgbtz_Wl0KHHpOb2AnYBxsgCrQn5YlnH1gl4HDVGLkjD353MiFwmJG8jSy2YedXNSBnjbDN5i8huTu5GnRf7mFZsWGgHguoRVhxt6ATmsowaUi-oOsA8FiPtW5m-s_p4GoYCuchk20QpttVlyqArU_XXQm9Vxo1BUI9HZEI2Vwqu15R3rQ7YyWywIZe4nrGWDtL8z1a_Uo9RMCWJ2NkQ1ekxjOiBsUdsjRIwbDmwgqB_TbMPN0AuH4gQHADH4MzX_9GlMdmntbjtKcHMW6vvVFnRU9Q_7NtKzNwwGf80lWEn-4oS8WyDxcKhxKfbFY0ThcwyzWOgVUKyfzOGMRKGhN5CHeORBf5HwE5jgxiyAquc3GswAn7lTKPyt21py33AMFKTk6yCbo2vQQ7gRojZvIewlYCmQ74tLWSw_6Xc-eh-SprMdZUfRDbA8K9YsZUC634VIIPqyBVBbLTTcgvnm_KO6xSGGJ8u48QfZ-DmeAU6I_znVfll8AtawElNMFBc0VRFciQyBc7j-pAgPOSm91jVU25lMsNYl2RxA3BK8JGPXDg_pUkpDKeUzHzwGGCm6Ikv7QsKAHb4WGTlc3YuhXHn-9KO_pM3NajI06OJzQToI1cDt1FYdqHNox9kFG4DStyzBqg1mbFKTNzuMrXpeNAO8aY5FBP_4fn2uRU4JilKsGLWC3KD2j6RWzDw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6788b83568fb87-88905161','','','2025-01-16 07:42:05','2025-01-16 07:42:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41989',0,'cd-form-entry','',0),(41990,0,'2025-01-16 07:43:14','2025-01-16 07:43:14','{\"email\":\"chrissiemckay@outlook.com\",\"interestedbecause\":\"4\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"LE12 6HW\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/imovefreely-3/?utm_source=facebook&amp;utm_medium=organic&amp;utm_campaign=iMoveFreely\",\"recaptcha_token\":\"03AFcWeA4PYCeC35ZBA94D0Xf9tUaPWsnKfZR9OQQt6f4gye8PsFQ7vJEtcJUwofkY63JZtRLHVAazdWYYutLGOrHArlr5rAz9yP0vQYWuWohIR-_ZPAYlbRW6QLcI4Ndcn-cZ5xTFXR-HBLDu1eE4TfYOGe9xRM6l7cYVji_o-gwL3P1XBPXxuM2QtSIau0XiXVU09bh0u_anT6HFSB645hg64K_NOjC5JOWRahRg27Hq9QIcIF_A0gHjrNXDPQbcwvuf88DUUnhgDs3TeN8SH_PqXsFGTdtCTJfpUglKAWZtN7Eyg9uxgVccKwPLSDuOjK9FTuSDQpbZRgBFNSsGY7e2uelWyT-SuDbaYCL9isud05T9-tyIrCxoIcCHoaB8O8c4Wk0AOihtduSTOKL420oNQBnrHcJA91KS0xj1ITBRz_fNnMaOOjXCLRhxSgxi47DkXv44cWi07HmfDtoDdEScJAAZp2PlnmeZscig0sArcSseNqSNQcHMms8gE0gihqeU-iCAsfvWwsDZuNHr2WGUaK6XAwzrhQ1ylyqJ2fG2Cn_ynVQSBEEizgsesuN8zjHHpxzKk72LO-Hykj1fA0swDORj1x_YMsda5tHWGFJPTr4jRSmXmWvsr1Qsoxvc7ikcVsn5g27_CtKYkgSzX9Z-3_7XEb_VXmwy5Vrn79g8SRbATGioHH75F7vZCZP-MNUs3ndvru7fHSrZoOpvWnUOdLyjlhFG8SOH2W0DSxgcnSE7q6aY4MSY2Gmh2lgEFk3c9QSG3z8lVCQTLFXmJ_eERvw9IEDIE-cgnPtJcoDTbRTWOutLyQqAbb1O5teLF16-Ap_3AQp5EdA1QizMAL1_mv9d3M2pJjMGIu18-WVg7tisXfLweQMeSa7JAswgkXSghsTDNITcfgZ2jy53ZbQPChDdP3DhczT33u2O9GFUL5Y6mfOYXqt2InACw8xBxNJ8oZ9dvnjRC8qLQSEU1uIRIg9m6Uhihjg3mNKLkIIK8uj5MxHIJ_xB_ctW8wCSHir2yjYrVcBQ5pHrZNJ1TfDA_jZLq_QZ6Icy8B2m8y9c0rW2WgJZqjQmheT90cYXi3RpTpPU5kKb5SRt-ihCwMOEJ5lhcl7viqh6uLd2HHtVy20o4FrK2-H1BshCRXus_KYgK_Hhu0KXyCgPejRRldeaY5ai_o9ujB1XzQsCU3PVRmOg4--ba_QKdRYiZdtzUId2CqI7u0nV5JqauBvb3CBXhlZ3R4bBsjVzt8j0tDuNmyVFr3cuUnoSR7_MEo1da30lKsApcFDtHs7cPlveloSVRFSXL7ooqpiUfYL8CZzTky27LunfUIo29Ir6F-cN0OG7hEd1Fk6Hx0S3k9ENaAkZqarTGNHlTf4nO6ACNbkCTmkPv-X3uT_OzVOOfeLle8ls7_Gi4H1VRj_a3AuufLm9ZqhloYpaVRnuC5dB_iYF9-q_xX7doO8lph5DtmGf0rZZ-4mrEBS1Q3f3HtrfhsWGv3aQjptBuD7gSqOEA8mpyy9XjLBJ1igk9gFR-CVOFr7CA_EynoSW-tpNOOSvbotug5IENQXdwKEqqZy7k4GoBfcYVwVl0SYFpGcWKbGdRIaSh382GHj92rYWFL_OEhFABmSrIVYHUhKfWU1cAhHQWBe_OgWe6VO4DBTn6Dqr_-K_pR8Z890YYhDbx3AVsAZqQXAhgZfMgtm0Yk4V9ZIBZnhGZFDf3MEbT9iH9f7EAYnrzgXD6UoCKUGnVSj5kdLnKUKOQHtfNRkqBSnWumncAOgMUnJezlwJtrN-OKDsctPsnfq6JVgKBMZ6BYIRwsByL5zZn1sVmJQUnNb5S2Bv5R94nDHsbliaSsfsn-JjJgnV6Vg1V-MKAhIjZ8HxTdMibhUBRVVxhVhctQO6uFt7fH85blr6cKTNSwzG647EC4oHXLJctWRiHO-N9YDKU0_IY3hD7j0NVT6CyV_b0tlwmCI3CS_HrDB5q_nrhGT4uQjTS9wZNp4GuwS7rQzPVkyg3ZBUpDb0NRNBdxMZ2yC88IqQ5GqFEjAct7dvFBPQI4kTVaU5hBKXuVHZ6wBekw4wHs49dT5TB5Utl6deCOYtXs0tbfgIBFvusKBcdaiHB6mYWzhHkWiDb9xmDdgziWXXHrBkAZukliuWK92U1OSY5zr2AfI5WI4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6788b86c53ab32-43717226','','','2025-01-16 07:43:14','2025-01-16 07:43:14','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41990',0,'cd-form-entry','',0),(41991,0,'2025-01-16 11:28:06','2025-01-16 11:28:06','{\"firstname\":\"Olivia\",\"lastname\":\"Plato\",\"email\":\"rebelpowerfitness@gmail.com\",\"contactnumber\":\"07377 990370u202c\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/in-person-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA4DJjx_ZRvc3wJhG2ZyZl9Zl_Lu0vzqpz434jLMF-MaJI3DSwieOhFs-LNKMUnannne8Wc_aOqw0tkZA09aPz31zCAukIkyhKnGSUVAVk2VfIRJJQ3K6V1Jj9z6llXn3qbHahnFFLq8UkARZGKKu-AjsOTiPTXnX7Y05qRD1DCWmOe13neYYcYEF1a-L9UlwIr99WwevZKMId_NbvLQsAh8I5Ya2tEcwIXjhCujRSUHE9Ri5wpCaDAR5cyMwx7XqDEVVgHBB57TjGNAymldJIZmpOHUr_K-QbEA7ISmqRJRJ2gSzbB5vcO-8pNnKKXbAn9a_swki6EMVgUkIe41RBs-kC-nH1oKSIEuDZgV1F7IVsLIWCrvOhooEsuIGghm6y2JhyAJ27Os3Aj_KgiXefh_s0RV17NGk5dOAXlS2VC8N91VdOJpTIN0l4LwFfWms3RsEVc32SjqBkzq9auDhRweO4LMididiL9fo5YWBjk585mFUWEfI3zjKZAwypJqkMtLWMo_jss9482L04S7Jh24Cjt5IUpQF-K1A0O637A7cCq66TmmW2H5VxzrtJfaCiRIIfodeJEdV5DrmHg5PGMlXZXPwvCGlJzTob68Uwn4eMom7YdyOFSL2cOzGw6qGTnv1wbt2Pumkr9zdH_h3Pg5wNUMpqw8A04NUvmM3BTXA_W568EIj9L5nhuBuOqeWxCR1VuI8V66mrrSfU_s3I_Avlwui9Pg4Ozeh7aBr4r578MntB5lY10VJ0NkORQoLApf4fLiu7LIl0Ao7cc6k7mFfG9HZrjjfJs19Pw6DHfkXljadnz6O7QnTZ3jpzUMcJuflTSB1VRFOd-iSzPRFDk9bv7a90iY3akSGM0x8wpUrRjDUaV0q9pEJPLFAwebbAC5UsU74u7nFW7IQpr4tIa9zv7_OAZtzqBoQqoEVPK0vxr-Rr7UmOFd9oV_fkPSFFxF4cFEmBywelO2yDpOS_7uBRJsi31HaDXprAe58yuFDW-iuqNJ46QP4oi9E2rqRdOg9x2TLj-e3FhkixMQSE6rNcb3_r1dUKu374f4zaM436lF9W_wgnz7ZNFceD9GqnP12kYysBNoQLzSPh-DJYKLfCyH1dKCAxLQ7a7bcRumowix4N9RAiFndt0e1p3mCgNnM-XZ3zvioqETahcfWtpNGY6GSqqgYKmtsGrPbRO7y4mDoDu0hfXQzulorlNmuUvsplOvw3ST6FRcMeaF7Xhw9LfMtPeMqucxAQ-AYHEwWjXPDzSoRoDFP2oGC5WGI98qaPzI_lHLTI3EIS_VDcCkwEp8_nBiALPgvYFtaZpo0AlLWFIIrsrK73HeYpQMPFer-bIGOMnBJc33-b2qMNKqtN5kCOedDYSioRObrlIxyZ5pvAoj1sgB9QGovEUbdZSrhOJr8PeepRINNVVcO_foqzyWVrUMDVhBmPcGNfZqlR2-PXp0jdtS5G3xWdEX58bfFAbLOm12jYUCe27ZkOvmyjgD4PLLn7VfPfDupyocWye43WFAOzRTLzRKFHXZIyQZPOFuKJiig7UQvoIY-ihb42251dB6ahK8YDVHUF4i9uduotSH1npTLF0sNAdXkJV1nPyH-yJGc8r8awIb_OCJb9x52FCP9N6AgIotqF3LmSDYNxthVvyWXmvyx72HUDWiMCCwmEkP35D-d37uJSssBRVW9OhlZehLosFWvhBoPrV-j4HHirahvMCq0u0GHRsQm3568WsG7FXZrCIw2kb6qbM0eKR-PraymRlOOwDdkixrtMf978ij5uOfWx24rnr4sSGrQ2ApRcSrMXfPw99sROhaWv8zW-RAp7JOmPsGQX_Ra-5UWFyd_B7iUXcKl3eDnHHvTQm2pFIKiA1hbWQmu8GCOuaZfWmLW0q-NZQKvuanf2ncjtmibAJpKVDDrrafIQPf7s9MFb0DCOG4Id6OoXrj7g\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6788ed108b4037-31861649','','','2025-01-16 11:28:06','2025-01-16 11:28:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41991',0,'cd-form-entry','',0),(41992,0,'2025-01-16 11:36:08','2025-01-16 11:36:08','{\"email\":\"rebelpowerfitness@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"BS2 9YR\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/in-person-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA7PwHVimBA3G0f8fI8srEZ5n8Wh--KuO7IdKL_PJ6w8kh8S4WBY51-3ciqNingXCaCDwq_XcIDTD9A1-4ZozyOwtdItLPG67IFOlYZcr42XgLf0WwUQVfqghP9Do4reen4YKjv1IsFxo4Qxdjkt94JkdYPccreLz5eTHSAp9_PDNn9Vfrhi7rdxwvSskWbwRFe-footiEPPfbP8gDPYk_aXEuygl1gqyHN33Ejb41QcDiFawiT3bNFlg0QD5wh2hIKSYBtYEco9h-g6rVcZxsaKuup0yzTwiFDrUKIwXKQrc_wKLRv0VPL1owOPYDxn4xWkQz2jNZjkVHlWrIqylRjy8om-8d7M2gvaVMdjEg-G3sJ-PufiVVa49IOz8mXx7vfn5M4igG2o-L-1FbuRJkG3atEbhPjg91TCA79qiZxGrdY0npgKd1lZ5gj3pYqiK2ijFet_qw6DM-ghXXYo2EO0I3RUc2eNSE31hGRQIQlFpjSgdvn1f1AYKRa1k0K24slzbIk_GEBb1x-2T8qTfRoVYaD4l8x3hIHKZE1dB_I6zj0_SQEwIuBm0HCAThlLaDPrTRDsODY3cKCw95U5qlIrHIVIHMTiPFYHLnBnghAdN5IfFEaHcflcpO4BIgf3rKWzvh8dzLEDJnkCXkSkyrFxij26zcdind6_S19UiSPWgh2Rcnjtev2q_eD-YjXsegU7KWaihe3rSQoZNSJRMSaNl51ejzUOfh4_znPRf8DVwN8yW57dq58uV_xfq-vCvaGUbyZudPC_CKrqDgUU9gCukBU2jU1twoi2es0ZkOtiBNP6xxsvKHuNo_emNjg_WnYzWXjsUcWBhgChrnr8QnL6ogh_8e8t6manzwocpcSQR2JArfPp5cokFW9c3H25h4s6exlKsceit0ygioFj-_JP232Lh84nyFQAPHXdrADWx5_funvoJ_51P-eyiYQrPbcTw3oonw3NhFJdPFbZFo9Yd1ItvisUJqSjkVqngj0Ea4K5GHS7f5RfTziXvba_XnKaU1jSFHp-p1b7fqbdwssUI_R4IROhII3WZW-0J5s68A-xzFMq45vLmH22lew6YWbbqTQzTsqdSsf2h5Hzu11IKdiRDQSV-jNP_PjtcZLcMHHVu8642UCQlITIMKTnEnr_ewjmtllhfM0HExhsX9_1CMfgmAj-9c6rK2UXOg3ov0v72gFxMaFOhKxVhJqNvcbDaly_bVy_sZ7sULvn9ET8otlDPvlqiFd0YoJxnce9KasK-PWwyW7ucuI5geLOKgMiqUJOfTXJXgxLwSqzpWUnrY0gkqFgcMYLuC0NEUGe1N_wSt9oE57jfex0mnXtrOv3OYILOJc66hJG-uDymkinkZ4tLbSTNMj63hr6ntXlya3vPe6ny8BjB7ZJTZWxBY0AngVtz8GYD34DM1lhsMuO-SmjM-bn9dSkEZHgT1JftS1Y1AR7ljNTFZhr-8nnp6gION_QHL9ANgtLUQ7ydPFGiOWDmBkb4mdQX2YWxRRqYxReSYxfCl95Y1XQ3j_QyTp7QfvvDMb0mlDU-d9BhV3kGcvZaNzDB63Ed0SR19e8f_X3BMOckldZ0bUNMMi3JxwG86piEP8pHWjZ7HZm1VXV_wQN12JkmRw_TW6Scz-Rs4zbb4lP1l7zyu9VoJuXMkGYQtjik6dfGydyKNUwgJYMkdeno5zoFZiloVNnuvdjuFlQlu8ooXKYTovWLCwy3hRGzBMgo3uts3_3p2fTAf4XJNmI57l2wlHr_llE_1g0xsDbGYAHniUIjquWmD-uRbRl3ABbWyQN80_wkYK6Zq4_LhsA5N6K5hUcdO3mtSZG_xHT0sfYAPSnNcehpfHb_HL5KZwow6ikjrYzeLvzT_WJzbY8rHkC-dGz2x7VZKpeX1k687obVGhqOGQjWqre3Tvp4w5KDKu0EwK23CfQa3ICdjm_IA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6788ee97b6ab28-27793868','','','2025-01-16 11:36:08','2025-01-16 11:36:08','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41992',0,'cd-form-entry','',0),(41993,0,'2025-01-16 13:59:19','2025-01-16 13:59:19','{\"firstname\":\"Alice\",\"lastname\":\"Eagle\",\"email\":\"alice_eagle94@hotmail.co.uk\",\"contactnumber\":\"07528381626\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sQTkGWJZsKotpHeVh0lupLD&amp;gclid=EAIaIQobChMI7qXN87H6igMVwo5QBh2k6h7QEAAYAyAAEgLZP_D_BwE\",\"recaptcha_token\":\"03AFcWeA5EkDcgH_Fi6yMpmlH9T9ggIJTTCvcrQzV1IpXqTwCLfh7J8Gx_mjVKEVGOe5rplfDBteLz5ci-w5oO79VA85P-M3bMPO9r3pyEBn3CEGSJk9hYmaRqEd5mv06v0RmHiMy0pPv8VzhAB_4BDrk0Cn3RNxUdJMiglv3r6A_V5KQbYf2SAzC-puzCgYDaCe3sTwhRygX5ulivBkN9wa0pJGNTVP7RbC6sf_t9flhDumsN4rCEBIoq8X4Qycoe9a_MShGnJ5iy590WHIwG_dr2oTjq_zdokEqkiiMb_SprkTxPDJf3mzB2GixKmLm-irgXEaNWB5u7vxhMcJfhK48cu3HcAK9ILJooIDa1eiR5L8gK3QE6ESuOtnbtyPAnkDoVXgyzoTDIyB2mK9axt0Wj0n6v95D-zX5DPucP15dd9qKYWRSPrSUHQuLb9bRiAkZFmtgHqLEHsHRhA_Gpi40Rkw2k5MOTdtOeR6ORkfimnZufGbgGMEJAaX30d9bZUel38rf0VMU5oGhM0QWt6f4NhIwFQOyPr_Ghhy9K-uOG4rB-VUUiAxkGnsUG-kF75udxvs8IzgnV-feCVwdJaz7XjST9IdJJrYSLmMQmFxUJKJIZZX_igX2hG6STukeIjZeCgohOB1AklpdKZcyL5iVc3pqz47R-AyfpohVwxqHttYh06IZE0McJfn4zD9kpRqaQLzAYaTuUwal2b5Hvvc1bxcjysH-KYeP_osEbLwwOLS-7YUN-lEFq8rfSn0hUPtPBGs1qwBmPEpDrGJdtd-H4S5jpsk2-IE6d5ojrbqN6iriiO6O1CiFPUqwKqtsT1QqfnClos_ziTJdzrCRrgRKln_hnFS5UbRiz4UMyeMb-eMdinv8oLnSVMBNf_hVm0lcOxYBQj389z-mdl51iEMTwqslzL-dlDscBCbd_rJgj3Qfb8UtLjYG8K0CkKUqpOgkKQWLI5ysgXseIXWr7zunxr-JSyVKLcMZ7NDnMUZ8YgWebvUWJCxYkwVF2V6je7ge3HZCm0P-wOqZhA4jVNfBad4eYwDZWQartr3seoXbZ9gU5adrmcYOHPNIrNOxMTOIbq0Um3zvl7Sh5L1pIIrtE0rWsJwwKOY79cRwyKV1vywKsVdLx8IxQTYjpIjIsZSGKD1UsBMYRnRsy0mBJVKyFgGHBv8QuHx2IYuIuevTGpIH-i-aVqh8s71-ei-3Lrig-uty4hAohPFsoLxB3J4eCK8Aaf2B-Gwl_Phei_mNjh8qxpW6KHD_IIYadQEe0_9RAKGcF9Qa4OHfKwzB0apZrAu5vcUDyfdi1oNDa7IMcw0hgjppyUt3Vh3iOkec0YOPXY5jbQO3t5-JptUhKF2v_TeNe40-HTTK_O40GEmevj-1igWqTr4JnL85P4hN5Ssq9eiUpUNhd_50yGCfopRN0afM629NmGUfKp1-Uelb-xQjNbcZdKwBrpkOfDQGgpRG2Oa2HDW9AIYH3Hl4eLGQboGQmFhi7WNj451MgGx9mpGiijErmvoK_viZhNbIOHYwK6owOP_MqoUNtECDPSjlGhmGISlCEWsuEG4wS7ap1FVPkck57rXOJv_apVL9a_-GisVGCKxp88HmogYCi0zkWokZkCk_mRMIh0vqoWf05xO_KTLmVKI2tVkRxjLs0hlt_DH4drcaGsmPZC0rBwVRa_4IX0wd2pw8wQ-z598qOpl66cWmOC98Q-AUN5vkWYFhrsEud5FygRko2w2ovznuW-6-8Isl4NTJyVu0kRR2rmN0vbX4kVJbQLy9aJoP059dJx8BNwfmcr6GubpLnkVRkT6IhUCWJJo3ER0op0pmkV7B8N5tJqd5APol44avF0mC6kG5oCr6yXKm5rbXlYLHusjoJJMFYV6uT_Hmh06vkGby5ji0bPBO8ehQ-gyu2kM6hDTVnHkh-RqWcl83IlcmsOUH4rNZR195oRHGnYX3yV3PkT8ZPcOiYimQsbMiOJ2cJxNXr7ibRVQrwUOSe6afTHftIfAzFETWFPqMwspbjNY9NdGq2YG0RxTEBUg9bWQpw-UvgfTinECvrvNEyQL6QWmF6PcEPxw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678910acbab346-43529078','','','2025-01-16 13:59:19','2025-01-16 13:59:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41993',0,'cd-form-entry','',0),(41994,0,'2025-01-16 14:01:27','2025-01-16 14:01:27','{\"email\":\"alice_eagle94@hotmail.co.uk\",\"interestedbecause\":\"0\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"Ng241hj\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sQTkGWJZsKotpHeVh0lupLD&amp;gclid=EAIaIQobChMI7qXN87H6igMVwo5QBh2k6h7QEAAYAyAAEgLZP_D_BwE\",\"recaptcha_token\":\"03AFcWeA5XEPB6Pf8jAIJ4SIa60zHqgq3TOuZ-pqLRMah6UYqOvQ09C9DN1fis9nRtqq4dtddxZpzVawxDTGU4gH2rWu7luvnW-NsVjhtezMv0wTlC2K-Q45GecWiGGXdEuBbDBSW4_djh9Gm_Ir9OBnl7pPSxGBLx2clrQVKunb9LZGCxuzlfUclm1n2KMp_O_Bo0YV5JEW_7XqKtXmbfNyWtaGRk6fzbli0XyxMmOnKluoOtB1qk3HN9DFn-Wa2JXfBoP7Jrz7SGgxTFL03abZiZ2itXTeyOOy-xkM1dzgBOU1fbA6Y9RwOOwlJhAXz63RLp-YvBZYSvR9JokpC1TfSaGltfdZq3pg-AIZNyJPuon82KPUtg_gzNnYI74XulkilcXV1_BnVSKENK9ms195pB7R_ZFx_1E3b6Wtlv_jNGUMy33tIPf1ncFXrvKsvf5JJyc3nKiZ54oGRy31q_eJO4nVzg3Kd_sbq97YjcwLkn-5zPfjB4B_Gy3ddegUMtU4brUP5olkucqyEB0ju-qxg1_clmzSCvFQySvyxZo9VXHvP31eJfLgdES2mTAP7RMqk2QwimvOGyK1z0gFI3T2js__c31ed6_uFN201gJCFRk4VoBwlK_tyUbcIV2TyMMZFWaIqvH3f8IamPOsqy5GWKUs7JVE2Gputr-aUGya5OJKInEdqXV7Dhy3OrDV9lne9vyjFGw_2EyuurKu7hcbBc6J4WJPrETvRV7My378g9jDF06G_4cyJ742rvKXfLlwn2oDaNUl2ymPEUrBVEwldDwxUtjfDadCs-P1XaRgo7dJMDW8IBFZD2KIm97B_DR3vsRw5sygX4sMpeZ3hl6nv3CLxqPXruCusYqUG1XGh_u5DfxclGxTmfw3zjRBe-b6HrfPIdcHpfIp7AI8I7aQFzn8WX-iNYV8AF-AHCaAnRuHJxcAEjOldhjyySu-lEjsANTwLXzJVmmeMUg3DvtT0-xNhGgJc-aWDb0kWhZS9WJR1cTrx-znlFN8lILrk7sZZzIuLAWPvH4F-IzqeWjVG77eytqcyJTCOmUKw8BxGZ2z33p2cRi8hMfsFVGfuGt98blj68q0vTWDs2DNd3h4lXmaj5H-qqAtEGK6RqxUqldrc3Hpe1F2LKubiozs4Zd4kpXtcmcYSnSsnxG39WIObuRiXFJKszd6nmO8cyU4KGl5xsHvaEe0HtzWXdMNGXVm1kMrlJrxEDKByv5PdZA59fCUBZyKN_jP_vtLJow-3b_Fr4hxNDCpP0E2wWu61aNWvdO06REbMjYeWCxykkcS1a6CRVD1XpVjGPU2_9ZQFIfPZoKdwKm-Ipg09DBseD29R4xnjwrHio1Vq0jCrfSOd9jX53Ho5sOg5gD-z-K9WoXLHzKz9RMavCTYevkBg2w2Omg8jJEdL9l3C2Vpd8OLxP1YITMztpLWLAH8PY03qll84BTCuZ1nvs87P0EDgspmI18ORbyHtycZkFzu_g_T9ezp_ErQQGGVwtXhOlqrKu9KzySoQCqHBMeu7sOCQGdrDSOxnfIIS2Eg_wdarEvxvf-Nzgz8iV8P3p7fBexo7jZwLqfPE2_P6jUVAZC0svOYMrpuwunnPTxYXgNSfSPZc214MPGJXnQ3K71YCyk_u0xWrvEraBQiO4H8T4pV0IBtJx57eFOYWf4K-8hsqftX1L1KjJ_X_PmfVN53l5ng-t6ADQG2t7ZGsDiKmr3hAWqrG3YnSGLZ9YOqk8FVDXNnYZIpCuIU7pj7BIhEBPfu3Qjwer5gzyeaXQas7NdMibotc1nDqv6J-ukIUBbhc7_16CN9nE87byZpGWisWSuoZpYImJObs7EaBwA3FnL9LSn-oXUpFdvKB2GqULvBeGz2OU50zR0czN0c8MViVurBBfWJOBGInDPK3oXq34iudF7rp9oCYA5i9TJILy_sIQO1XRzjozpgBTYgdleploNdlTLeooaOhNjnB1Hj6tRGZf83037nwVLiyfWtt_EGCSDdC-OAPcixP5M4lnR6PuGHbScfcO1ELFBezDKyG1ZYWzTj955LCSdopCF5ublALvuUc2NqrLkRVijTpkkVS7ZRqQq0mJFysmV7fZwFEreAMbcB1zgkFOdGHsNlPfqQJJPmHIguw4cfKrkQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"9\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67891122dc5a31-69977590','','','2025-01-16 14:01:27','2025-01-16 14:01:27','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41994',0,'cd-form-entry','',0),(41995,0,'2025-01-17 10:39:50','0000-00-00 00:00:00','{\"firstname\":\"Gary\",\"lastname\":\"Stevens\",\"email\":\"gary1073@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAnKi8BhB0EiwA58DA4c3LJJuBY5xKiH7EwMPx79-brCrUpliceW4Y__Mv_bxBDo1bItMNgRoCEZMQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA62aFgiLbCE3dYVngnRLo6SAII4megekANfLeBUguhb9FA_w3E9NN63xYaozUiI8yulFynC95c5TBHQf9DRd9-f2d8_NTtfgA9zIJvtX1numdQ2LAT4YXMQ0KtDLX-fk6fxY3lDohLnKwj9mn5zVQBfo7Me30fTZvG1FLfrQUVtF1gX7MwG5fYNAvMvkxht_5HCsWsz9vgUBlpOa8x1nPzfjHYYmn3mi08qsmJDDmz4aPXGbCd-pb_5hKCxeDU8ADFIa3F8KPMT617RkQ21zo23--6ACSILpN4jg1MKgFBbDqnc18QI-Iy0kJi75Nom05TqcHr3lcp4L0hw15PXHl90Sgf-yPkPND0524evnDZvKDyWEvjXJeh48RTGYHczSQc1gr3r1Fz3C0GB9zbR7eU0lHZXi6gpo50kDO0rHt42h2OOb2H76fP537MHEyYYuvXoR-SmJFAtOagwPNESU2t09kZPe3Si0GHoczJLthwqPDEO08jyopBcRaAAW5upMfbk8aG0ddv5cE_79GXieDzuWNueUHlpibU361CriLCTAKtkbnToBZgLo_Keb7IIIXfM4qz4REcM0aL6Sd0rLR4YOf8RUghtOfydnU_HEUmR2RTDSPen_RJjV10I3TC2U7T1i0EckYDJhQbheDiohdXViFaTDgedeBv1-fwa4EXhRjyyigPTr9w5yAayyl5JoVoFyXe6csWMlv7wMoQ8fs6clQtG6CBWJvTXrW68s1RtjyR-M4Tf7Fr9-S8e9vOvLe-fFYAtPSmoo61PX-99SY5LR1QlWBrxAA8w_UXEOd4_TjyCIov2QTR6-lsA3nY9uTl7ITp-T5L_xG57yyRulVYViJXU0iuMsb9sFhTXyHscKK9Duh3OFQ_qesztYizJP1RdnyA00pd0pOBK7r4b_cb80JH685k37ffSfErqWNBsubIKZqD45CaJAqucBeIwzXQIG63ksjuyZu71KGJ4sNKd70Os3x87KhcGvEWaFiEb_I6FAwpfAHuXDt5ZMYDklZcwbc_t-Q64HS0vhRD8qtXRBOjqhlV1PO-GnyqllIpPbDBHVWyj_8I4ph-4XpYXHW3rispohGPF_N-g_RLVF5RKk1sMPXUc179JHAV64ekjCC7B9L4N8_Nw2YHjatkDZAMStMT1UmkmNFE3PDtgH9J82b21RB-7FsaP4jsNgVH5fsGhQys8FxoiZ97zFSAG54PN-tHuZOH3Lkxxp33nrJ35epPw5WEypirO820B1uuir73mKNY-DyG0Lcj16pckOpBQO0_LAZaCcedvlu53YUPahsenJhs9GljxB-uS42ongcszKm9i6QewdBIPng12jVVhN61KXUYIW04rpSUJDdH9lm93oj7Aj0TNS2KqmPFvnK2mZSP3MyqslDsyShpsWGDfNg4MrxMY-XpmOuFPCMvXgqAg9Y5k43y5t3-LSxdAEu7M2J4H6G604J9o6yfZ3qMlhBqMLETiR9hYkFIuIsMF-IWKdPqSVASH9OIs0bLVIVPy566nlYE4h0Cw5b2MtsYN1Lt4Lv17G22OGsCQAUCoDk4abUEfycgxQcI3fDUATfLUQE0y8DLT5kmjJkIN9VcyRyyB3U7FIHpQbZKaUoe2MdA8vzPMmRIx3qQHrJxatE4MiRrZqs9jwejWoXu-nOUzrEVozOJeiIMH07LnXCzf7rXK_YCpaSnkpnrPniGZFYkAkO_lF9YsgW-lAPkeCJKaiClPvXVabNQe2YMtHCU-4J5QTE_fkDsBQVI66EHVYaKVZ9Yoo8LEolJGPbxxxcfoCr_tsZkT6nuACqjJ5o_mvyAV5gLJlVqx1kCgjYqjikkjERxPkqoTcxXvQLchZpXUxsSv-QRiUINyp6Q2d7eeGF7JF8_Lsw9l-21oRd_kGz1B5rUMXKk_gyMUkzAJC5-Y-nLUL64lzNsLxnDnFhAYO2Pv54ojgPWbJQc9-qkZm5ndLKcZSAxTT6gYT32P9qble1d9\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-678a335fa87972-29085609','','','2025-01-17 10:39:50','2025-01-17 10:39:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41995',0,'cd-form-entry','',0),(41996,0,'2025-01-17 10:43:07','2025-01-17 10:43:07','{\"firstname\":\"Gary\",\"lastname\":\"Stevens\",\"email\":\"gary107073@hotmail.co.uk\",\"contactnumber\":\"07368241270\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAnKi8BhB0EiwA58DA4c3LJJuBY5xKiH7EwMPx79-brCrUpliceW4Y__Mv_bxBDo1bItMNgRoCEZMQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6erBKoxG_UpOmN73S-agbfwZdOdybvXcVYcjp6Mjhn4_ciAqn50MYmOxssh0v18M3-DUarHpqDQcW3QL8IDXSpwspiejh_BTOVa39Ik3Yby-m3DGQNeMC-nL7O6xaoB18pqMUeqi79bW4dzPoIxc-E6-sYGcocr-Odd5lD1RPnbvA4glnAp8ILUje_T2DVl0PazE3aW-y3b44xmk7P2NDN-2fxmY4k423E2ynv8n2XO3doaP-MIFohPM8pMH-yM1SGUmljfFz3GuwWLeLfjMsQFJ7xRgQ7_9pZFlFkcCwj8F85daoYe5RSU36AvE3V-XDz_hjt7wmkIu4PUPg_57FzX8gJm_PipHLBdXofbD5_j_iZepkqpoKCo3EwNS4M0ksrUJKnaPFegHGm5arKuvPnp9oKHlMmzADl28jnBjiturljQabfRvj4Cf3T6v_IEXATkQzIQy3cO_bp9uZw-D3f-qGL3mW24waJikjepNFiJjwv6ch_bSI-ef2eYipXcQnfpDd0CCwHI0LCzbTTH4k-MNNgnTm0o__2MKwZ5o4ENzud2S6G84LkZUV2VZHKoDei16EOuERFh62tMYjaQUTGruheT3dLwSioo0TgyRja56DVZkEcghzxuBeCCQLOjBDR3935aupS-D6n4w560S6aUB0gV0B9GUNGxmlgwg6T_Psq3NLPF2Fz_7zo4_XGCZntZlOdyiwi5WFWyx4piIaVIkq7xvRLplX62xn9ya_PK9VtPiT9F_Vp7AmnzHy4FsdIszzXSf_9e5LYAteINtKFyGvL98y3bDTbZXcPAvBhlowySlkIEzsqYXN8Z3G5jXJ3BD-hNf0KsVLPgfVdiAm2qE7_Wn6PP9fdQuoNn5DVewRqGcUpCzHSFthlc4VgrEzpk6A6bvZT_6H886Y6iwtWGBdgCXVc7qBsmcWwr8q2h_XwCY7EkF1dnkv6Uf12lA6kt8e9njZEPMV34VZasPRKCopC-eu9biJ65-Q7lpQI3YdcVpq-qVC7Onl7fu2N1_tGG-DMem7G4RZZku0DnYVWAeYvWbpnxahuk1b5kjl6YKFLbOphgWhauOvR8Vm4IjNJMW_i3ulfVn5oCSCVoU2KvG2YIcJRj4wdgq8LyJqVjS0nbF-CGNnvZIVplhFmLV0SYJ9QZ78y2PTtWOY-rwwZU3a3R8JnlUdhLLjKokeeoFJvA6wXs0U5r50xWvjZwyPUvA1cK0v-gaHzK2Bo4aFK88fwyH1YK-DG3SsDt4Zf-TtD0rDEwGvwgykdSLEi47dI7Fnnx54Zxc7q-ZUxagyM734GaHQxZh6LG3TTDKh_hhyzcSlEPesf15CCgwwOaDn5O7qv-0wdZfh3mHAz2yhQ4tGcwdeXJRAhRd8y5qZQfFgEqeFBMnJyDeJjqLjvUCuLtJqYxmm0clUNpgDTm7KoVQIuVtWRANGoRjWG8bEvKflIg1qyQHUlMHySREfFffw-4_70FMt1RSZV_FtjzctUtsVx82_yfjrYQ1D-rVOr6Bz2NI6760XELS_nr7ytnCgaUpYO2aweqyBlziXGz1o5m7YktSl3SWeWwp3zJYxT6JUzZ4-PjPr1PFSHlwvs2Cxwv9Oa4fQkHE-sv7YdDQClgV031Ur3i1FWYrhMZtLigMmBXvLluuK2DdUuOApZYGBl-AKnpoI7HnZYQeUCxCp6JgUADEm6K-1WhlcOVL3m9x_GmMMheemxtaAJlDvsEtNf3U8Xxp465YSWgAVquH52WGwqk9EIRUhEmcycck8SUoTv4uL2FzAAmIGZ8OOvor088QLJ2IQ7DuHG6sE8DgEiWRPYH8GIMnc0TMqTF0CXto8syMRcld9SZ_Eke1anAwiBBHg-8Ot22paGqrxU4S44nR0iQ4IaHxqKUF1sKA_-2hTo7Pq97J1CPTpmwwiP6eDV0vFpX5DnTOevxHEdx79gwnV8ubQbKbbOsHqi_oS8ORAKARrPv6XZnl_K1-UwSLQ2tY9k\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678a3416b22a27-07486887','','','2025-01-17 10:43:07','2025-01-17 10:43:07','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41996',0,'cd-form-entry','',0),(41997,0,'2025-01-17 11:49:06','2025-01-17 11:49:06','{\"firstname\":\"Sarah\",\"lastname\":\"Carr\",\"email\":\"sarahmareacarr@gmail.com\",\"contactnumber\":\"07759708703\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAnKi8BhB0EiwA58DA4eOXINhFFJ0BByhe51iu2pmfp_z-QVR1WXGah1n9Y8Fkj3ToQ8u45hoCC7cQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7beusbUaIRBs5SE3OnO8cH8Ys_hdd5IWn19TqnO0rFF7jaOUGsGJA-kYfi_XfeQsErUtgOxBFyMyg5YoedX_homooxlIGSOZ-N84Me5kmtNbnTgm_NgL6vv_MAd-gdIh0Kqouj9Or6aexuP46oEego7AiPn6VCBCMn0YwwmCt84PWklsBxC3_Q1MS5ySnFwXeltJXVoTruiTlAOl1P-ZiLw9uW8AZ8YkIYSuKo-2YH9-mBbNXMg_jSYogFHMPj0qPBOvE20n569UQeDoNHFp7roqz0ONqUnReWd3p10ytgdtJvexSima39AlN9STAGDsXl0FYrvwlSGJ3709pC3GIwfPKAbn3ooRchoePgO7S9S3UL1KvuV-qc05rp9xRRMJ1SPZcDnFsI8eXznMPi6HhQ8W9LZBGDV8a0HQ_YpSKYdNRBJ4rUfRM9EruUrSCCqRTJmtZn8FMpsClkL2cpx4fgt8-qyWv1VtsX-HDArYcpQ0qTnM8VWtxhhJwFC-ffqVafO0-KcytQusr0GlQWsUqm-pHadKAZUcrW3DIWL-3nNdYDc6q2dfYz28uDF1ddiTgHmBIPgOE-fYPpOCooZptGTAk32muDNCWz1racFVsFMlAxSLI3scNxICXHOfR31FZrpOeFhD-2EEHKyMQ9NnIccNml7u3NzyhYrL4h0G-e0ogmnkzwsyQ4cAB-Js5QQfKqCsy53u3GUAgtEalzzZ34p9KquNeTeastGsgK8jn0qlTbG9M1dSHgTS2j_HVIhdMDkIptXKCkMljLOCs_qS4Y6zS_L5AGOeifxkYHsjLZs2aCdgb-k1dSRS4UzIHBHvJ5-ndrNu-id3L1PzyasRfbzYLvCERsUmp2ilo7_6AwstiXLLeIYKQvb7x_gDSZr5Y3mSnt869WidmR5DByX9KkzQcBJxRDRrv3SevlMpQ6mulWP34oR6n24sfxnQ2oaD1EfjaFlF6L-ryCjrdAZ3FaLxZw7WEwETg5-bE5SMbdkA_oya2foKrWb0UW7h_8nbRMIPlcguUA-igjctuJY22q7OdZY80iKzrLtawvxkeTzrNNhdZn185OgGl_jNz1n7fWX3DQE-3OJFfSNNcHxdXoDcJu9OgaK7X2-OZMkUd01DffYE424Vhk1pGwqjSd4oAppC75bnXgZsU8oaBIeBZwu6GrSb9JFfoei-zR6GXBoTfATzzyhEnVYFc6In0cLS6n1qVI07G9vKf2L-iSxSroUKNbsYgXytTgleMSN_M7iZ26w7-VmJgOjM1SM-8wgp4_tpewXcVeJ_RfQuYusPl_eeMPLyAW-b4y9yf4PMTiMZqn_CH3u3aFYBbPcsyOldXAi6binfcvIxQFlt5ARK2k1MBXKebsm4Xz3c_YoR-kG_Vmhp7sBD9CMHzZRHG0IwQ7kFnEaDkfLo2T95JgpnuIkqpTy2yMI3au8H4vBDKumUJBC7k5djNebMvJ57Awpld4QHOe7vywrTrrFfoa60oNV1p3_t0CEWvr7mAEIsyYHMKOgKFVZOqSfZoqSMFJUiqbaJOmoOZ5vTv0YdjO-vwaf8chyjay3ilt4vGmJKrZjYJbnarvw3FwATy3crVyY_ERiH9lH6ITf7RYy9wxbora9CqnoMZ5-chNREVIMcgoCUeLHSaowMgsiAO4X1O1qwNauB8HiPERMCnRXaTowb5qndYgucpvs4PQEjzrtOZ18CCwHNBZ89QGeNskr0ZqI70CiL7w03Y3bBo35ermMJZeXLD7nsxFywkoc4YKft08TXgqDx2fUJ9My-zsU36wTLxPerOL0CzlES1Ka4FUcoDEfi8YNaV4KFSooiI1f9YdB_eGaAPdkQjiP8Tdmb-YaKWSTu-EN-Q-5cmXYmAeKyLs_MFa2rett5XtmGYugGN4zu1Gr84JfHhav5_4tYt0DYMytdae3LAPYqc84saY-OFumtPyIfBeJzm-6UgAiQj-vOMy__1bI84v1aux-OHtmN0uVMiJhU9dDE35o4-IbQriQxQMxr1-5P1LH9k6yg8aNCLHyu82oETQsHxFcOW_Z3Kj8UgGHfmpHbI7uU2R5v5lbQyAWPUiC22gK-Bkp0KUy1aACMuY_6jBQacDrysr03rVN5EKyFwrrqlv4smUWwdamsTwUbUVNkzvTp8toJrfJmQUfP9XoURMUpxYKkZuYH2DZtYtZhYDV4ZSI2YOK91mtrF-ioX9Hh7NJkIOiDKkUht9bSJsGSl1o89YNWZr1urOH16dt_Ad9d_NR1mytdKJKzL65g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678a4395a05752-09514564','','','2025-01-17 11:49:06','2025-01-17 11:49:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41997',0,'cd-form-entry','',0),(41998,0,'2025-01-17 11:50:39','2025-01-17 11:50:39','{\"email\":\"sarahmareacarr@gmail.com\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"SE19 2RF\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAnKi8BhB0EiwA58DA4eOXINhFFJ0BByhe51iu2pmfp_z-QVR1WXGah1n9Y8Fkj3ToQ8u45hoCC7cQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7Hf5I8fXts4i1fXq91FvZ-nQ2w8WJInJxfTreSOxl9zBRcv_78hppXt6FjtyCKofETQ3nNX68PEhqAt1F76hrBxiGye_vil3tVj4AWOtTzNU8sikS-WjBzweEH1DLFRLDiFjR5XUclfKE40esRYKjiIHKaJ0UbDbWGVXoDtQIXoduhP3cofVjGfGobTYWy8ogaKXwtVFBQ7YzGCFUa9I7Ta_TwoznUA0DndmUC2ZwbBTRpYzGexoFjPAa5N9HCQbP8b-sKvaNmLCKt4zuy3LV0GYZooJNdQPYJmjeKbE9QjhKjE7FiITgbFp7E136DMn1AauxloQjyOtQNf2XA1mKNLr4XYRX-UK0VghBetv22M0srPizUuTelImo1jjoEUDvt9E2GkT8MfrfIfvrHomUJuVmHp9zSgGioGY2HM1sVbt59VYO5xKtFZpwuSF7ajiEWE7fD6bubR9G8M8v4Sch_HDC5IAd8UIhRAk45uNLIOyvQyNAz32tC2eOu5fL_m46AkFxinZoB34K6H6MGY7UhFMLTLhUmQm6c4ptjWSkmLMuyD1RnY7w88M0V_P6GplC_tC7csZRH2BBW5sTWWHsGiWQy8CHb1oxvEa_wKcCwhWxLy6wNVIQXXN7wutvsY0bWS9ZgKUfspqLjxx9HqjCWvZYfWm7dx8zfe7Nx95mzXXpDino0QLTHZitbPbINYhUyiVL6fmW-kI39UKnx1FYFONzrPQH6vT7kGmzh42q_KitPUzmzybnqPN22yEaYEAMWcHNhUKRlIqaEy1oAbDb7u9fmlj4t4HN4tDHPFmGtvFdrrYFBFkPmli7G6Pvt5QHxkUMbPK8Fru6FTgky1XPD-yzTMGyXujhBsp3Mvni9Yfd5M1rMEcRt7WIqi6WL7d1BiDz_cp7pzWTP0GpXS2BBdu-ouaBEWymDt6CcBxcgNxsQj8tGdf_e8bkE3_c0Nt-G88b4Zt05G7qoA1VrH8ULeXMxycUTFKByCvpBl2jlCFRZvaex7sEqflGpAnYqEyc0sSXw6sUsQtLEMi7ApKG4ARv9Ux_2_FPjGgazB77QHCdQ-PG0a-yVo8_XAS2A4PUuzxiivWCsP9VyYW0KwsMmEYbinmk4y7CQXsS_jlBJApDhMtvCtChL8zg1vgsHAXOuL4fNoUkRgUeCVGog7iikEAV57-JHC5alR295DY0ZV27fBPK7vyGA1YgqUntB1Vvl9SDMcywpWpBsim43DniDa2JytIa0x1lGjJdQgqzmeQtLAmofZUMQTPHmZp_hrWXK-kKGzzCdaVikHh8YthrfXADvaMTjQ26W8QgwOBiias-31AC3nh94wbRP17d7ri47A1jIofKwi1J4OpU554VUOos-Z_GA4FxvN4W982XqIr8SuonldxuJsgfolrGa0DkQdAi4-pZK9069sEEfioO6hMDMERM3p0Rs0tHme3r1Zak2Gk3yJMeeCTDAZSKW5ZM0XAWL91J3ydu_bhgHoSN1E_erl9ACN-8c4Q0C0tQ-H9h-JT-vAzA8ruioTxStStv8iWzNsfwccYuMffH1_PQdFATDq8AsDT9g8AKYwEa57LHJeQNcHP45SmozXuYP5Rg2GXE_8w8HY9bDyAiw5N7X8Tbx3-YfvH-bbURADFjQSvODDdHmd3ZfINzqrRyphsDEiHA1mQtBkY79R6E7MsJWWstMJnfQkDYzvPGv5y_hzK2tbLRMkmwVoyL6Dw2THBLWJabVneyh8Rnvb33Uob0kjhE8vGRFvqIKK80O7umz0NyA3mz9nQwfvPEvLhq8_9gMWwoO47fKHkx5FW767LT-QTszGl4BUmaT3au4nxT68d5h4i_Qq7Eu55KdNvTHK2rGCr1EQaUKMCWu7Wr3FJ6UQJrZ71jmUmZNSU5I6fuMP2K4ykoAAa7kUcey6OLzMHoQPZ-D7j3HnwJmUkigl67B08V6QCjEVolx4HbSBicaClUpmvoB58IHI9gZm2q4NxNt4gxI2irieDZW6geK3XNQhxbTJVQpuQGilPixZeGa4Hla7OdegOMH3809mhp6NEUSmoB4Vyj1lztOw223pFrY1V8W23Foh0J7cBNq0GNkwt4KtqB-9UKkCx9bqZn1enNbvGulyTFNwQKiDc5ZDxyYuNOYaSfJbl3TcFAs12XfrS62slD3fDlpR5PaxCEUQ7Oz8InfbFyN37bQ1Cg0FFiYiN2XOR_5XD4anBJyoRnybIOClYtT1bVMYPBh6Ruq93WLe4dl-FygqoxuyOCVwzy0QKLmVQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"interestedbecause\":\"1\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"4\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678a43ec8ab997-86861926','','','2025-01-17 11:50:39','2025-01-17 11:50:39','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41998',0,'cd-form-entry','',0),(41999,0,'2025-01-17 11:52:08','2025-01-17 11:52:08','{\"firstname\":\"Sarah\",\"lastname\":\"Carr\",\"email\":\"sarahmareacarr@gmail.com\",\"contactnumber\":\"07759708703\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/#\",\"recaptcha_token\":\"03AFcWeA6HyGJv47xUwv2Bd9pJDzILlJPw42lCajS8K4AhAOomUDUGX3ruxjYzul-HyMugmDaAm1qm10XShKOwEhAUiPtiacBCnY5iuJ1078QHf5EAquPwcJUZVCUn_8Dqi9655iLUKUrwBn8EosmTvMMmbQ8Di-5qTy1GBIXirQgXcEQI5Q1OZ1obEelknqig_LC_yaRAFxZaBIj4DITVZ4kx96ofJgn-XywE5HMWLgpbT5lur5LlbV3oj43nZEAZQ50r9YPN3Pe1q5EOHJdLxyPVcZce5EpSu53xnT1eiKyNtInsZC43mj4p9z6WSKZ4fi8QTVHv9qwCl0OG5venueqWBu6BLcL__u47ggb_GRA5VXQeXm0FNVHgFPRZ4xac3d9ZqrQmbDEZ95ftGr8-ilbtMgvnSzfLIhYHFuvnXpD1VG38nk3No5vnuYIzpQMmJXSDEVXjB7gO86lnnRj9G4PrYsFBlD7dCBYOKRSo4uo7Z4xLL0nj2805AUFSuYT3D779Qzh3phRD5l0Y-optUnXMVD8uE-8vb1euXTgsU8l-Iev_MkSCGnxSsMs0GvDwEpLMgE8mB-owpaqBat5ALXQkmeJtoMrATOM33vXzymKYXzI_kck2p_xn7BEOV49fD5qxvXjbIyD82sdyCI2oDxCAJIu44E1aZFmIH43mAtrL7X9cRJeoOUoOUvrmWwPVTyFkFrGWwuT6cfhCBWXgtYFHX-Sd4iHp7AXJOJyhEPGbiA4sM1pYpeHzeywhxH6GfO8zcYotHjkjPG-FZYqvPs5UCVh7LwCx1xhwttcyLIlB-jBFLCy_jOD3MC0fAl-gDjUuomnVKQQdJ8HQU8aIKud2fxMqhj-MgX0FVcniFmtn5ftBln9t1fjKIQX8R2FbosENktcL21RQUEcDZOPd_0imaN7pfKV0fQZrGxtRfTi5UJzfdUyYSeXG1yx9EEIsEhxje7hCcsFN2HqZKRhx_epU40PpKrLM9lF4R0IYKuAuVnyNEn3T7NBZBS8vLWMWoOo7LlKJBAUchwjaTjO7BWv7Ry-DPKj1oBXNpydrc-4xTZdouw61L7qoeF1oxNBY4DkcgDM6tmXxwYW_vmiCmQVX5lOpxTMMN3LqGKUrxcVlgo3nLuMd-HtAUcCfzLydI77UIdqLn1kFhUt9WcmFWuBzZTDzRYJBspnfCjVzgzUy8CMZwCetk6aml0CF2QqWJUdU4tImsrpcaAQEbmtkKWpIUJbJ2kmI-KHTpZKsWaUv4f025FyaaXv-Zk_C6vui_hP4gl9XsbNnDZpHSZ8jdSo35yrcZ30gSuug4vyghlJIs0CmNwCsRHDzjuyt1CbsSITTKfzIVX5MAdjuPQ9olMLGBBC1lFSCtyRdphEVqqICq1Ag7swopD7kaWiIoR3haGw8WjlZ7C9Q9eCWLH3U6K9EJ__KugnpQqbPVzgqTzcDVmWV6afSUhDjwUWSaIUVnyinul_g6jQvIG7hNNc6cFhtPNARSYICw7yTupMxowHOCtKSr1cVMJF56FVNU1zLfbIWEmEb4Q_5_YM_vXxX6gwgiPkpr9IcU7ndF5Pw0QxROkLGa_yRP6WKE1h0z4DbiraQ0COOBphWv5Qp3s5S_WfjMwEpz9XubU32qQq8mNgDI8lpbmMvd9GGDbd4kKFfX4MM4Wyjq7EXvlLCMQsad5jvglguyoMNmUBx9-LZgvl04aQdWIqyyfmykERVcrAEWqQW8kg04YMDjj-3Oz5maFw3GNMQN46Y8Ux5xhE8dFOOMeTmUsWAnjQdYE2EeG3Ci-Py8peNVsbth5MFjphFhgZhHs4i5vHj3yfIYrdzopz29ZrImmVS5LLfI_7IDlSuIbbN9L5xWIkoa8iIx6wScIIo2js-Z8w9i95vwjN2FN3EOTIO1b9Ep6HoQkH_ajP_kx0txWZC-L94iBNvOdOrzNQCozacZcfxRutCyhZXXKw8xogRQ-Zjzpd1K7DYF1JbmAxQ4g_g4yXp6FcqxSjOf0EWP-TNeYBP7gGryz00XqbJn3nK418BmhG_NAOhMRrhUCPMcSSJr6pe9IZwyLGnATtOIMWEC3C9oZ_LxciPO9i3T3dK9wVaRrbp9OqTnqiHDNezBIFj-0SDHbS-4k6I1PLML8BuVZl6515nnICQs-K6gJb8fMxMyAPGuQoeFab84ilcN6SbKz0RH9FPTe7nre4KktNkNvsmLbhaIHoPVNdnKYd7Bz4FqhE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678a445e0e1142-40730759','','','2025-01-17 11:52:08','2025-01-17 11:52:08','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=41999',0,'cd-form-entry','',0),(42000,0,'2025-01-17 12:53:40','2025-01-17 12:53:40','{\"firstname\":\"Alex\",\"lastname\":\"Joseph\",\"email\":\"alexjj80@googlemail.com\",\"contactnumber\":\"00000000000\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAnKi8BhB0EiwA58DA4WmnExNwG6NNnDHmr74lyScRS-uMXcg0VCV8ATuVg9hTZKBmFg0UehoCW9IQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7WP96CdpsijzDpbAUfFJmrgvujSd4okVry5nG_DwRecTHCe-MMOooL8msHeTIbUStWGo71oynEzqZYosf-o7BQSBfo6kiOTiOGwnu8njJ8__3EGSthEsBfSapAKScJLLruigcSrPgS5QxhkcHllz_4OX_ZJKGPB60Ghb-kiLy2g4GWLtCDXea0saV-UA_wokSzQJuSkMoof_Pd0JKqcyXuYwIkgjFYxE-izPPE3MMgD4XYstg-sWfzR74Ws1xEEekMcd9aj432LwESItDXSe5j1whkny3nwEu47RChnGCxLGrmGmPsDHU6qi5dLyDFUkWyKkRZfIGhPVmKAGUEmJ-2CaJJHJcIVkNv5IQs0coRUhMnDZEz1ef4xJS-owtSCLOIS9vbpcCTwQnCtHOsTeT5t5-QZkIyyBn23O43nkllRYihzoOLvf-9bIVmgnnD2uq2_wMWfhdHAqf0-KkaeGIbAZynZzPI3BUdvq2w_Sp3wvNWCYzyeR6mXirzl8BPFgp12eLxDB7zl_mtcHUhVCvhbI2fdnVzmG-6IDa2_K-KELftTuQaqRPrGfbmZCwZR_IwgRwm3iU30fCPW88jJohXaBX0an9jmIjDjRhHLEdB7zyu6NW9iwtVquY_2PmQ1hEO0INij6h42c2fUSudqYBfHkhHJp0X1GlWBRSsff4NkAoFz7s-Hrw4PsL74Cab54c-_CUw2zq1jx1AICZTJd2Qmpr3kwe6iWB1X6bzDuHtgoRVx8mVbHWVi2apgjpk8oUUpHdx03CsCDRNMV4lT_gqS1rNJ8zkik-4HNf-YmWo1SV43r6JIXJdrtNwWCKMGn_pn5kdDn4dqgtx7bDkD1rmT-_UELgcZnFV7kdCxR2OQMXWyvvH_bTkwxA8PsURfwk0GhhqU95ydSLvX3DHFIgcj4DKoqXmAbfUOMVEg6tcMY0GwUN7vuNZlDSQsVuteh2BjMngdq24GIl6WIzUe6jojjtxrgicdzST41egbKEcTmWENwI2SRl9-ZiKgki4n-HqexedZxCqpEphRqosMnQENDdnbePcrQQ0QPH1L6to_EZdTd5xXzJvBuPiFCwI7tmYC3kuO-n3_n6syvWON9ZwTwC2M7gdILD0aTz4lAHE62HyH6S-HVlPS1JNAa8blNi6FdEUTiKjI_avCiVB4yGPh-0cZBnENLvw0eqXGfH8Z67Daj2C23_8A6f3Fzf8juNla4tkbojlNIlQ0k_1fQT5hnK0y3hANEaMgtzx8UQgvHpB8luuBU-rf3ZHE0_4lrp15X0GlsHY0iM3mRALSySKX4o04jrRXfD1Nhs5jj4cZgQNcFsr7W0piLJxyVBgNLRLA1ibyZ9aUJhSR9ZWMN_sEmft69Yc3AbM6nGsGWIcu1lzQ09OHWZV15ezyTISvoA2OuTwu542OZw_ZtkrC6qcRKNc3hXqPkWdO8IjM-d-GmZ8YfPtvduuXMsFU1DZOVntpWcFN6FItDKwydR0zkTwDZF7Vtn5Ub_ygI7WITZFWCPR6ZkDuO4iWHU0I-6umYt1zNrNnKEOAjs3jxvJn0ko2hKVBq3ZLhOH-Z3Xwq5JXu421gkoTQYWe9G9uR593kn0731RwPUVMb6hoZ5zWRpx-9o5Kv4AGkHgNsxkJ-ftQXRtk3JTdYtnumguUm12v8VXR9C53sQRjvMWvlB6tt8bfgd2b20uDtKXLSczh9sh6C0tZsVOTFEHS2p-VEVwB7x7mTxAdbwaFmxXyKTYZZHv4UB-D5lSK47JQqig8yw-TliHqbZ7K6ddIu4Ub7VySx0Ti9p-am3spJ8vF27SSOnAdSoQVIqlRvsBDJ2YsamNCLRBgtC99Uz6_vlIqxngrKMR_kI_SyGCIysek9lgS3uMaU1Ds-xv7dYJpunRqE4eIk6BradXoULO6tRRCP436Mkni2_eyzhIQum1XlPIs2NgRPM8fpKd74zpcZDBxDLZ4UpjSy60kUCjL2YyfZ199H6a_Gy_\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678a52898191a4-26411483','','','2025-01-17 12:53:40','2025-01-17 12:53:40','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42000',0,'cd-form-entry','',0),(42001,0,'2025-01-17 12:55:12','0000-00-00 00:00:00','{\"email\":\"alexjj80@googlemail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"XXXXXXX\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAnKi8BhB0EiwA58DA4WmnExNwG6NNnDHmr74lyScRS-uMXcg0VCV8ATuVg9hTZKBmFg0UehoCW9IQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6gzf59WI6sSjXfpggwBFk3CwfAx6TFMxtzW_lR9-l1mKmW_HMGxwOI5-5rY_dxTDOUE5PrAU-L8kKVRIdoYc2xY-BbKwdZlIqZwNoBzjbxNDyvHlkZA4WlQ5U7OcwgQR_qgJIrLhBMM18N03jv1mDHG0WoAA9FobwKCkOoM7MOJAz4lYWdtfZ4wfNKexUNXUM89JvOM3gxQlbCJwd7GhnmvyOOiSt2mZXAcomPz1jlsXIS-Z3AbVLbSDEPa3GYTycZWA6Vh7XFHPU6vEbYG_qCnW4tDR9FQoumSkdpdJAdffhuIVMeNDsz1GIRBIxpsaJzOsBLUlfkl5tUIGUK_IEqyrPboaU_psaL4yJ65_GtNijIJTuogsX9P3nSPAB-dfa7Yts6oPGCVCVShMaSxXGpUssHZSepUIZekvUspk1tvZdf6NGY1fnLGdaCZu5F5NDSHsr_MgWWvxESWXsBSkSyT0YNOhIVE_MoI_ia4A0f6Gme-0PByF-D3mr0YXtdI6G6Rldri-xIiabOdorIWjgsoOWYVs35jywZPo_xAWj7T_EPXxdsF7dEdy82o_duDOtvFtZBXZYq2sg0WLt-VbA4oDWtc9-kyPd9l-TEoVoVxZF-yuKSinYla2lUCtWrJBcDGMx3n0P_N_DM4PGv8h-YowHTS0kyJIXhmMlJXqshi1pSVekPi254tgOES10EqvBCibAGvWxNyHnBL8jmPLqTc1k6AMyVN4GS1j3CGrVuOKAun5boMkr68yai86hSOAsbQ0nZsXnXC5nitFXKAVsgxgTw4icj14ALqwBhQ9YWitn_QA3ETdonMxyOF3aYhwNfYpDJmR1rCkx1CmM0fVeoxd9U_1XyawUjtWwadRCH4Whq3QHSoOPC2n1y3-SKM5IYiu4FV9mE3xVCfl9WrOLAftcFn9zMBl8RAL46-5rLcw33JOtAe9gu627FTgX-ecTNs6RTc_SlxJDTLBOGY9Hk8KLsiu-mNaAzGpQ1FKFvX5Xezxoxw5gsrn-4GOPmd6oJGxkCSaXQV7gMHGpa7c5TaLQzf1d8X0uLGlhaKL9DS8kCi0zqLa-WjifgY3qTJOzTVmDSdrZXOkbL8-wacVnqiD6Hs4JadSUAfLpbZCqLPC9Zn6UmAxHfz2Q94yfXLlo_7AOfupXYhYiiDN0EntmhjK5ZzOm84y_LHlrbUOE8g-5eP1e94gM1u7w3i46ZRrRiqt4VtEY8YOspcX_SNiz2mTTepjCfb1YqVYFv1WhQyVvAtT9qN7fw0QCujWZ-B8to2YuYj24T9dgST1vc2vD5lRSDLZ3txJ-F8QaxK9_IJhtWX-xNl9do5amdcKVQXkzoRyowVZnJLbZjk72D-NxkLvmUFzjqf6LrbSH1kIeE0LTDsn7uihDbxKJuH5RqzhTWXnI5LQa5EUKeIYcrQ8lpUAeZXbsdeSjcouG1TKoH-7HAdso0_CixfMMigOgKsJ0-mz9obRSpzO2eeQuM8k4cZoQOxaxtE-a2yzrbEI3WfTGXfoQ21NbIF_oofs4Z2WV_vvE6fmDv5L8W_NLNLl8qONAp77EGISxDzfu3ku84eCM4u25OBKe5rC_V29KVmjw_jPrRxN6FHsNgiJhkCVj6iZc9emE_xmFI2W5gCOIRPbziVByuldsvG0ZO-lW3fkA3lDWOP0b5UBQKbfVkE1UOr8zsl68-CoCukwijYpyph_dB7rRViQlnzyDffYypzD3WLSfxsonMmx19l4TCGb-66YevRUcSwnJHi53XoAM_9VyeVoKO8wcLoe7zAw9XgYA5uDTtnqXHjxPp2TWhOMDWeGTtphXCHMjL0H8c3xDuWu3DT2mzmmeJOqrW3JhRnR3Z3WVt5OpRK8VWtvwuoK8cdIbVRlj38ro0422z9XbGIXNY2X_OujZLrKuHplCS_N6kDXS5YbJMeptki_-tpV5lO8X5pdMTLkHtiwNMmW7nHvxsa_-uYLPoWOu-elzz-rL2-4r7\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-678a5330e4c5b4-49380875','','','2025-01-17 12:55:12','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42001',0,'cd-form-entry','',0),(42002,0,'2025-01-17 13:07:50','2025-01-17 13:07:50','{\"firstname\":\"Mel\",\"lastname\":\"Carpenter\",\"email\":\"melc@cardiocentral.co.uk\",\"contactnumber\":\"07980154139\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/tom-waldron/\",\"recaptcha_token\":\"03AFcWeA4-ALGib2ADrrPuVDZjvzfDtfhMlqujf2d9Fn0pIz2MmpQWknPDZL5Rm7c3Vpsg4cnf-N4TmOorS4PpX28Dhd1yjqkHjGRTUeOIIIuQrrvJLQknKYSYoyZlzZEvIfYMbyAXt3Kad3LdLfcR2aIAn1M2WTMpeg8oKs5QsdsaRJtetRGboSX7nQNF8NRQw10EqYVCazqKxUgx5nDCRTbcz2XP5pOmK8FeN-37MjoRRd3TX2DObBu4bqUCwn2FQcjcf6gsG-aun6gaUVNZUxP8ULGHwjPX9slrD5Oi09q2e6yVUzccXwIVgoQhWiLlfjbCoLmFfuQZqh-9zMdqWwXjoWMdGovqB2Wg0bZJBLp8NTUbs2FTap-w_WmPtv7aYvuyDKnnG5MUGTOYzC8bzSj1zi1OU5gMkOnMk-xGKWS6H0ZCqd0Q2DU8essL5Q9NhlztJ28A9lIe5bOHpewUE6GNX_t88RBzfdbVv9cDQl_fqzu7cqWl_E3JQFMRm95_4vhRD2DiP-UL-xJJNWesUp85S6xwakH2iVqbC8Hva3CG8ocj3vZWcNmJ_JP-dmFBp0D82QF83vm-e-Ilu7kPgOpbBs6CW45KuANbTxz0LnvFn_a4ZGD_BCiMz9k-DUIad0ciHTXeThWO5oQ-ZYKO8RlPJyX7EuJtKImpORt1z7lTLKxHHIohyAb7oEHup1rMq6lDx8VO80mASZzsivZcyQwHfSnlqcwO6KUdwBUuZpfSh0QzMTULl96133ZEGPJBK9lDzmWFG8wb8O2hnOAqbC7M_IPNX6nPOvjSnanv-mqBQnhO0tQToF8z-ON6eAHUkhEn1LoJNd3k-Ngadp4oUQOa5uwVcRN635M8zP1HHs2CZIN4GVr-ZI5MwozC05Kum7JWi18yRUPITgtRXtblEO55cY9PnV6NuM3_R0XqGYhIpilzX-86UbAKOEiGepDjhVytPAfrH4yVK5-hi7Shzo5xo-y8yHwOFR7sbdkVXhABsxWbfiNyNer3MjVAMaqPNlPYge148355Vlh88nv-aCGbJDdV-JPU98ydj_fzklCYJMtsmEzzQQkA0U7Ayn4Hl_WFAlk12gcu0dsqpy_hEA2AC2wPshr1IkcNLJwFZVrimx9MYOUXmMP7wX-RWUyvd0Mh5qzRhswtn_eZcNUlYrNd-YTNeqm0h8a8h1bvBLHLfC2xOMLxXG1rqjh3LZE3z36VomdhbCMumH6pycHA9wUsavhQuTprksqmBT-chQ7PJpzGzcYgGZLjIvRAgQAVn0CfQYLez8GiYga_tPp5BRSHDd1m4tm40adSfugM90bl_FL1Lv22KVm2mJlsyStto2CiOTtCv9sR2jloyLl1RD3qQWzx3fGE3oojlK7R1vONmGm8QNDo1EO8VEoZ5XH_lxsNSgoIIQntcfBTjxh25gxECa9W41ZIy0mKzfe1kqCYlhD7-Oe0-oYY6SNZ_ZgiXD2nh6dOBHET-mH7XrRq2vft_-2EICP3vd7815_dJZrWPtprKbu7LaREtpU0fOormPo0j7Ul63-fQKK3mLRvJhUogobXIAImwnsrFbeN_eHEqlZ4aIU0--y2Tn0eHwO9uHRjn76ZcL5DiH_K0vgww2eWtoBoAm7vdHqexlzoG0nXdq5RtyfG9v6tcfVVZuZmYBQ12MmsjRVs7TAYr-gujt4QY2WwC6buq6SF4Up_x5zEl2TmUfeZmRMYhR3J3LpOjSqrKhv6636ZDBTUqg_bbPeTxz3mEwAAq0PYm0Tb2FzedQ580uWelBGgAq-ZnddiJeun6gHQMG0dlQTgy-Qgy_nKYzTWcH7A3qPEZy9XU1YOcEPj0G6DzmV8U58o6kv6NcdePb8e6qZywC2IkvqFRefneyOj6qXBkEQQOdgtEv3QGpNW1BOqmfnMwz_9cMtLrckK8rwIBZOODmhgFmRej5bVx2V7eNu_djNjg7LwTFxwTfYfDw8PcYrbBuc17Dd0Ze8JsgsCj_CqRMTVyaI-YOPgg6TUkKdtwUQfTslOnyu7mHdB-LldxkXgu5jLnzycqkB6x5t1EFSQ18Nv5Dshp-orCxNrccbIfIKZ-9gB3HrMPdoDZKo9ZpHdD6js3PwhGpHKmyFEbQRSx1Og56pnipJmQXun6EoWYul7ebbajB2dPbTfcpp2vC_Eek5tO7g5XFJPU6LSY79AmhbXhA9pnokcbS16oGGZq3grwbbMy_KaXAWgRNvZUKjwFuf23F8_hNJpe-ZTSJ1Y\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678a5613099773-41303478','','','2025-01-17 13:07:50','2025-01-17 13:07:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42002',0,'cd-form-entry','',0),(42003,3,'2025-01-20 01:00:20','2025-01-20 01:00:20','The connection between body and mind is becoming far more evident in studies. If we understand how they interact, it can provide exercise practitioners with a broader set of options to help more people, move more freely and with less pain.\r\n\r\nSkills and techniques that improve physical health with mental practices can hold real power. It might even be the simplest way to improve physical health, particularly for those who are fearful of movement or experience persistent pain. A ‘no sweat workout’ like <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> is a great example of this kind of movement programme, because of they way it taps into the mind. The muscle energy techniques require the mind to muscle conscious connection, the nerve mobilisations specifically ‘calm the system down’, including the brain/CNS, and those ‘pure’ small joint mobilisations really hone in on body awareness and proprioception offers the brain a focus.\r\n\r\nWhat we know from brain (and pain) science is how the brain produces physiological changes alongside the psychological ones. Imagine that when you are watching a horror movie how you might flinch or jump at the scary or gory parts, in the same way that during a funny movie you may ‘roll around’ laughing uncontrollably. Then imagine when you see someone you love, your cheeks heat up as you blush and maybe feel butterflies in your stomach. These are changes in our body that demonstrate how what we think can influence our physiology and movement. Try this: close your eyes and think about biting into a fresh, juicy lemon segment… go on… sink your teeth deep into the flesh, noticing the lemon juice dripping down your chin, inhale the citrus smell… did you notice more saliva in your mouth after doing this?\r\n\r\nSo, it may be that if we move differently, we can alter our mood or emotions too!? If we deliberately move in a certain way could it change the way we think? For example, try walking with big strides, chest open, chin up and smiling and notice how this makes you feel… what might you feel? Confident? Maybe you have caused a stranger to smile if you caught their eye as you smiled at them? How would this make you or them feel? The ‘ripple’ effect being around people who exude certain feelings/emotions, ways of moving or both, can really impact upon others.\r\n\r\nAs exercise practitioners we do this all the time, maybe without even thinking about it, or maybe with more focus on one aspect, i.e. movement. Yet if we consider the power of this physical and mental connection we may be able to have an even greater impact or influence on even more people.\r\n\r\nBy communicating in a variety of ways about either movement, or ways of thinking, we can connect with different personality types, helping them to feel more confidence in their physical ability and therefore helping their self-esteem. This can reduces stress and anxiety, and even improve sleep.\r\n\r\nThe techniques of <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> combines both mind and body using rehabilitation protocols as prehabilitation which enhances both.\r\n\r\nThese low grade movement preparation techniques allow ALL abilities to feel empowered in their motion and their emotions. It can expand their understanding of what movement is when using mindful ways of applying these mind to muscle, nerve and bone connections.\r\nWe know movement is a great way to enhance our wellbeing. In fact, did you now that just a 10 minute brisk walk can boost mood, increase mental alertness and our energy levels. People often like accountability so something as simple as a walking group, helps with the positive mental and physical boosts, from simply moving in fresh air with others. Maybe adding some <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> on the park bench, against the tree and in pairs could also be added to prepare them for progressing into something more challenging, if they so choose.\r\nAs they progress, maybe even becoming members of your studio or gym, the <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> programme can be taken to the next level with body weight training or using bands or light weights further developing movement confidence and therefore mental confidence of what is possible.\r\n\r\nUsing breathing techniques during the muscle energy techniques is a no brainer! Why not try some METS with berth work with me this Blue Monday…\r\n\r\nhttps://www.youtube.com/watch?v=fKhQ_LdTUAo\r\n\r\n&nbsp;\r\n\r\n<strong>References </strong>\r\n<i><span data-contrast=\"none\">(No date) (PDF) Pathways linking physical and mental health: The role of Brain Structure and Environment</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://www.researchgate.net/publication/377459155_Pathways_linking_physical_and_mental_health_The_role_of_brain_structure_and_environment\"><span data-contrast=\"none\">https://www.researchgate.net/publication/377459155_Pathways_linking_physical_and_mental_health_The_role_of_brain_structure_and_environment</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). </span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\">A;, V.M.B. (no date) </span><i><span data-contrast=\"none\">Editorial: Moving the mind, thinking the body: New insights on the mind-body connection from the neuroscience of movement, sports, arts, yoga, and meditation</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Frontiers in human neuroscience</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/38384331/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/38384331/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024).</span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\">BUTLER, D.S. (1989) ‘Adverse mechanical tension in the nervous system: A model for assessment and treatment’, </span><i><span data-contrast=\"none\">Australian Journal of Physiotherapy</span></i><span data-contrast=\"none\">, 35(4), pp. 227–238. doi:10.1016/s0004-9514(14)60511-0. Grant JA;Courtemanche J;Duerden EG;Duncan GH;Rainville P; (no date) </span><i><span data-contrast=\"none\">Cortical thickness and pain sensitivity in Zen meditators</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Emotion (Washington, D.C.)</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/20141301/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/20141301/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). </span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\">Greeson, J. and Eisenlohr-Moul, T. (2014) ‘Mindfulness-based stress reduction for chronic pain’, </span><i><span data-contrast=\"none\">Mindfulness-Based Treatment Approaches</span></i><span data-contrast=\"none\">, pp. 269–292. doi:10.1016/b978-0-12-416031-6.00012-8. Grossman, P. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2004)</span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\"> ‘Mindfulness-based stress reduction and health benefits’, </span><i><span data-contrast=\"none\">Journal of Psychosomatic Research</span></i><span data-contrast=\"none\">, 57(1), pp. 35–43. doi:10.1016/s0022-3999(03)00573-7. McGonigal, K. (2021) </span><i><span data-contrast=\"none\">The joy of movement: How exercise helps us find happiness, hope, connection, and courage</span></i><span data-contrast=\"none\">. New York, NY: Avery, an imprint of Penguin Random House LLC. Office for Health Improvement and Disparities (OHID) (no date) </span><i><span data-contrast=\"none\">Physical activity</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Physical Activity - Data - OHID</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://fingertips.phe.org.uk/profile/physical-activity/data\"><span data-contrast=\"none\">https://fingertips.phe.org.uk/profile/physical-activity/data</span></a><span data-contrast=\"none\"> (Accessed: 23 April 2023). Raymond St. Marie, M.D. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2018) </span><i><span data-contrast=\"none\">Neurological evidence of a mind-body connection: Mindfulness and pain control</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">American Journal of Psychiatry Residents’ Journal</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://psychiatryonline.org/doi/full/10.1176/appi.ajp-rj.2018.130401\"><span data-contrast=\"none\">https://psychiatryonline.org/doi/full/10.1176/appi.ajp-rj.2018.130401</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). Ribot-Ciscar, E. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (1991) ‘Post-contraction changes in human muscle spindle resting discharge and stretch sensitivity’, </span><i><span data-contrast=\"none\">Experimental Brain Research</span></i><span data-contrast=\"none\">, 86(3). doi:10.1007/bf00230541.Rosenzweig S;Greeson JM;Reibel DK;Green JS;Jasser SA;Beasley D; (no date) </span><i><span data-contrast=\"none\">Mindfulness-based stress reduction for chronic pain conditions: Variation in treatment outcomes and role of Home Meditation Practice</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Journal of psychosomatic research</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/20004298/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/20004298/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). Shapiro, S.L. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2005) ‘Mechanisms of mindfulness’, </span><i><span data-contrast=\"none\">Journal of Clinical Psychology</span></i><span data-contrast=\"none\">, 62(3), pp. 373–386. doi:10.1002/jclp.20237. Singh, B. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2023) </span><i><span data-contrast=\"none\">Effectiveness of physical activity interventions for improving depression, anxiety and distress: An overview of systematic reviews</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">British Journal of Sports Medicine</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://bjsm.bmj.com/content/early/2023/03/02/bjsports-2022-106195\"><span data-contrast=\"none\">https://bjsm.bmj.com/content/early/2023/03/02/bjsports-2022-106195</span></a><span data-contrast=\"none\"> (Accessed: 23 April 2023). Wong, S.Y.-S. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2011) ‘Comparing the effectiveness of mindfulness-based stress reduction and multidisciplinary intervention programs for chronic pain’, </span><i><span data-contrast=\"none\">The Clinical Journal of Pain</span></i><span data-contrast=\"none\">, 27(8), pp. 724–734. doi:10.1097/ajp.0b013e3182183c6e.</span><span data-ccp-props=\"{}\"> </span>','Think the Body / Move the Mind','','publish','closed','closed','','think-the-body-move-the-mind','','','2025-01-20 16:01:56','2025-01-20 16:01:56','',0,'https://biomechanicseducation.com/?p=42003',0,'post','',0),(42004,17,'2025-01-17 17:00:39','2025-01-17 17:00:39','The connection between body and mind is becoming far more evident in studies. If we understand how they interact, it can provide exercise practitioners with a broader set of options to help more people, move more freely and with less pain.\r\n\r\nSkills and techniques that improve physical health with mental practices can hold real power. It might even be the simplest way to improve physical health, particularly for those who are fearful of movement or experience persistent pain. A ‘no sweat workout’ like <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> is a great example of this kind of movement programme, because of they way it taps into the mind. The muscle energy techniques require the mind to muscle conscious connection, the nerve mobilisations specifically ‘calm the system down’, including the brain/CNS, and those ‘pure’ small joint mobilisations really hone in on body awareness and proprioception offers the brain a focus.\r\n\r\nWhat we know from brain (and pain) science is how the brain produces physiological changes alongside the psychological ones. Imagine that when you are watching a horror movie how you might flinch or jump at the scary or gory parts, in the same way that during a funny movie you may ‘roll around’ laughing uncontrollably. Then imagine when you see someone you love, your cheeks heat up as you blush and maybe feel butterflies in your stomach. These are changes in our body that demonstrate how what we think can influence our physiology and movement. Try this: close your eyes and think about biting into a fresh, juicy lemon segment… go on… sink your teeth deep into the flesh, noticing the lemon juice dripping down your chin, inhale the citrus smell… did you notice more saliva in your mouth after doing this?\r\n\r\nSo, it may be that if we move differently, we can alter our mood or emotions too!? If we deliberately move in a certain way could it change the way we think? For example, try walking with big strides, chest open, chin up and smiling and notice how this makes you feel… what might you feel? Confident? Maybe you have caused a stranger to smile if you caught their eye as you smiled at them? How would this make you or them feel? The ‘ripple’ effect being around people who exude certain feelings/emotions, ways of moving or both, can really impact upon others.\r\n\r\nAs exercise practitioners we do this all the time, maybe without even thinking about it, or maybe with more focus on one aspect, i.e. movement. Yet if we consider the power of this physical and mental connection we may be able to have an even greater impact or influence on even more people.\r\n\r\nBy communicating in a variety of ways about either movement, or ways of thinking, we can connect with different personality types, helping them to feel more confidence in their physical ability and therefore helping their self-esteem. This can reduces stress and anxiety, and even improve sleep.\r\n\r\nThe techniques of <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> combines both mind and body using rehabilitation protocols as prehabilitation which enhances both.\r\n\r\nThese low grade movement preparation techniques allow ALL abilities to feel empowered in their motion and their emotions. It can expand their understanding of what movement is when using mindful ways of applying these mind to muscle, nerve and bone connections.\r\nWe know movement is a great way to enhance our wellbeing. In fact, did you now that just a 10 minute brisk walk can boost mood, increase mental alertness and our energy levels. People often like accountability so something as simple as a walking group, helps with the positive mental and physical boosts, from simply moving in fresh air with others. Maybe adding some <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> on the park bench, against the tree and in pairs could also be added to prepare them for progressing into something more challenging, if they so choose.\r\nAs they progress, maybe even becoming members of your studio or gym, the <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> programme can be taken to the next level with body weight training or using bands or light weights further developing movement confidence and therefore mental confidence of what is possible.\r\n\r\nUsing breathing techniques during the muscle energy techniques is a no brainer! Why not try some METS with berth work with me this Blue Monday…\r\n\r\nhttps://www.youtube.com/watch?v=fKhQ_LdTUAo\r\n\r\n&nbsp;\r\n\r\n<strong>References </strong>\r\n<i><span data-contrast=\"none\">(No date) (PDF) Pathways linking physical and mental health: The role of Brain Structure and Environment</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://www.researchgate.net/publication/377459155_Pathways_linking_physical_and_mental_health_The_role_of_brain_structure_and_environment\"><span data-contrast=\"none\">https://www.researchgate.net/publication/377459155_Pathways_linking_physical_and_mental_health_The_role_of_brain_structure_and_environment</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). </span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\">A;, V.M.B. (no date) </span><i><span data-contrast=\"none\">Editorial: Moving the mind, thinking the body: New insights on the mind-body connection from the neuroscience of movement, sports, arts, yoga, and meditation</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Frontiers in human neuroscience</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/38384331/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/38384331/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024).</span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\">BUTLER, D.S. (1989) ‘Adverse mechanical tension in the nervous system: A model for assessment and treatment’, </span><i><span data-contrast=\"none\">Australian Journal of Physiotherapy</span></i><span data-contrast=\"none\">, 35(4), pp. 227–238. doi:10.1016/s0004-9514(14)60511-0. Grant JA;Courtemanche J;Duerden EG;Duncan GH;Rainville P; (no date) </span><i><span data-contrast=\"none\">Cortical thickness and pain sensitivity in Zen meditators</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Emotion (Washington, D.C.)</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/20141301/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/20141301/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). </span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\">Greeson, J. and Eisenlohr-Moul, T. (2014) ‘Mindfulness-based stress reduction for chronic pain’, </span><i><span data-contrast=\"none\">Mindfulness-Based Treatment Approaches</span></i><span data-contrast=\"none\">, pp. 269–292. doi:10.1016/b978-0-12-416031-6.00012-8. Grossman, P. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2004)</span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\"> ‘Mindfulness-based stress reduction and health benefits’, </span><i><span data-contrast=\"none\">Journal of Psychosomatic Research</span></i><span data-contrast=\"none\">, 57(1), pp. 35–43. doi:10.1016/s0022-3999(03)00573-7. McGonigal, K. (2021) </span><i><span data-contrast=\"none\">The joy of movement: How exercise helps us find happiness, hope, connection, and courage</span></i><span data-contrast=\"none\">. New York, NY: Avery, an imprint of Penguin Random House LLC. Office for Health Improvement and Disparities (OHID) (no date) </span><i><span data-contrast=\"none\">Physical activity</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Physical Activity - Data - OHID</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://fingertips.phe.org.uk/profile/physical-activity/data\"><span data-contrast=\"none\">https://fingertips.phe.org.uk/profile/physical-activity/data</span></a><span data-contrast=\"none\"> (Accessed: 23 April 2023). Raymond St. Marie, M.D. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2018) </span><i><span data-contrast=\"none\">Neurological evidence of a mind-body connection: Mindfulness and pain control</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">American Journal of Psychiatry Residents’ Journal</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://psychiatryonline.org/doi/full/10.1176/appi.ajp-rj.2018.130401\"><span data-contrast=\"none\">https://psychiatryonline.org/doi/full/10.1176/appi.ajp-rj.2018.130401</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). Ribot-Ciscar, E. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (1991) ‘Post-contraction changes in human muscle spindle resting discharge and stretch sensitivity’, </span><i><span data-contrast=\"none\">Experimental Brain Research</span></i><span data-contrast=\"none\">, 86(3). doi:10.1007/bf00230541.Rosenzweig S;Greeson JM;Reibel DK;Green JS;Jasser SA;Beasley D; (no date) </span><i><span data-contrast=\"none\">Mindfulness-based stress reduction for chronic pain conditions: Variation in treatment outcomes and role of Home Meditation Practice</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Journal of psychosomatic research</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/20004298/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/20004298/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). Shapiro, S.L. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2005) ‘Mechanisms of mindfulness’, </span><i><span data-contrast=\"none\">Journal of Clinical Psychology</span></i><span data-contrast=\"none\">, 62(3), pp. 373–386. doi:10.1002/jclp.20237. Singh, B. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2023) </span><i><span data-contrast=\"none\">Effectiveness of physical activity interventions for improving depression, anxiety and distress: An overview of systematic reviews</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">British Journal of Sports Medicine</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://bjsm.bmj.com/content/early/2023/03/02/bjsports-2022-106195\"><span data-contrast=\"none\">https://bjsm.bmj.com/content/early/2023/03/02/bjsports-2022-106195</span></a><span data-contrast=\"none\"> (Accessed: 23 April 2023). Wong, S.Y.-S. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2011) ‘Comparing the effectiveness of mindfulness-based stress reduction and multidisciplinary intervention programs for chronic pain’, </span><i><span data-contrast=\"none\">The Clinical Journal of Pain</span></i><span data-contrast=\"none\">, 27(8), pp. 724–734. doi:10.1097/ajp.0b013e3182183c6e.</span><span data-ccp-props=\"{}\"> </span>','Think the Body / Move the Mind','','inherit','closed','closed','','42003-revision-v1','','','2025-01-17 17:00:39','2025-01-17 17:00:39','',42003,'https://biomechanicseducation.com/?p=42004',0,'revision','',0),(42005,17,'2025-01-17 17:03:00','2025-01-17 17:03:00','The connection between body and mind is becoming far more evident in studies. If we understand how they interact, it can provide exercise practitioners with a broader set of options to help more people, move more freely and with less pain.\r\n\r\nSkills and techniques that improve physical health with mental practices can hold real power. It might even be the simplest way to improve physical health, particularly for those who are fearful of movement or experience persistent pain. A ‘no sweat workout’ like <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> is a great example of this kind of movement programme, because of they way it taps into the mind. The muscle energy techniques require the mind to muscle conscious connection, the nerve mobilisations specifically ‘calm the system down’, including the brain/CNS, and those ‘pure’ small joint mobilisations really hone in on body awareness and proprioception offers the brain a focus.\r\n\r\nWhat we know from brain (and pain) science is how the brain produces physiological changes alongside the psychological ones. Imagine that when you are watching a horror movie how you might flinch or jump at the scary or gory parts, in the same way that during a funny movie you may ‘roll around’ laughing uncontrollably. Then imagine when you see someone you love, your cheeks heat up as you blush and maybe feel butterflies in your stomach. These are changes in our body that demonstrate how what we think can influence our physiology and movement. Try this: close your eyes and think about biting into a fresh, juicy lemon segment… go on… sink your teeth deep into the flesh, noticing the lemon juice dripping down your chin, inhale the citrus smell… did you notice more saliva in your mouth after doing this?\r\n\r\nSo, it may be that if we move differently, we can alter our mood or emotions too!? If we deliberately move in a certain way could it change the way we think? For example, try walking with big strides, chest open, chin up and smiling and notice how this makes you feel… what might you feel? Confident? Maybe you have caused a stranger to smile if you caught their eye as you smiled at them? How would this make you or them feel? The ‘ripple’ effect being around people who exude certain feelings/emotions, ways of moving or both, can really impact upon others.\r\n\r\nAs exercise practitioners we do this all the time, maybe without even thinking about it, or maybe with more focus on one aspect, i.e. movement. Yet if we consider the power of this physical and mental connection we may be able to have an even greater impact or influence on even more people.\r\n\r\nBy communicating in a variety of ways about either movement, or ways of thinking, we can connect with different personality types, helping them to feel more confidence in their physical ability and therefore helping their self-esteem. This can reduces stress and anxiety, and even improve sleep.\r\n\r\nThe techniques of <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> combines both mind and body using rehabilitation protocols as prehabilitation which enhances both.\r\n\r\nThese low grade movement preparation techniques allow ALL abilities to feel empowered in their motion and their emotions. It can expand their understanding of what movement is when using mindful ways of applying these mind to muscle, nerve and bone connections.\r\nWe know movement is a great way to enhance our wellbeing. In fact, did you now that just a 10 minute brisk walk can boost mood, increase mental alertness and our energy levels. People often like accountability so something as simple as a walking group, helps with the positive mental and physical boosts, from simply moving in fresh air with others. Maybe adding some <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> on the park bench, against the tree and in pairs could also be added to prepare them for progressing into something more challenging, if they so choose.\r\nAs they progress, maybe even becoming members of your studio or gym, the <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> programme can be taken to the next level with body weight training or using bands or light weights further developing movement confidence and therefore mental confidence of what is possible.\r\n\r\nUsing breathing techniques during the muscle energy techniques is a no brainer! Why not try some METS with berth work with me this Blue Monday…\r\n\r\nhttps://www.youtube.com/watch?v=fKhQ_LdTUAo\r\n\r\n&nbsp;\r\n\r\n<strong>References </strong>\r\n<i><span data-contrast=\"none\">(No date) (PDF) Pathways linking physical and mental health: The role of Brain Structure and Environment</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://www.researchgate.net/publication/377459155_Pathways_linking_physical_and_mental_health_The_role_of_brain_structure_and_environment\"><span data-contrast=\"none\">https://www.researchgate.net/publication/377459155_Pathways_linking_physical_and_mental_health_The_role_of_brain_structure_and_environment</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). </span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\">A;, V.M.B. (no date) </span><i><span data-contrast=\"none\">Editorial: Moving the mind, thinking the body: New insights on the mind-body connection from the neuroscience of movement, sports, arts, yoga, and meditation</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Frontiers in human neuroscience</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/38384331/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/38384331/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024).</span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\">BUTLER, D.S. (1989) ‘Adverse mechanical tension in the nervous system: A model for assessment and treatment’, </span><i><span data-contrast=\"none\">Australian Journal of Physiotherapy</span></i><span data-contrast=\"none\">, 35(4), pp. 227–238. doi:10.1016/s0004-9514(14)60511-0. Grant JA;Courtemanche J;Duerden EG;Duncan GH;Rainville P; (no date) </span><i><span data-contrast=\"none\">Cortical thickness and pain sensitivity in Zen meditators</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Emotion (Washington, D.C.)</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/20141301/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/20141301/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). </span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\">Greeson, J. and Eisenlohr-Moul, T. (2014) ‘Mindfulness-based stress reduction for chronic pain’, </span><i><span data-contrast=\"none\">Mindfulness-Based Treatment Approaches</span></i><span data-contrast=\"none\">, pp. 269–292. doi:10.1016/b978-0-12-416031-6.00012-8. Grossman, P. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2004)</span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\"> ‘Mindfulness-based stress reduction and health benefits’, </span><i><span data-contrast=\"none\">Journal of Psychosomatic Research</span></i><span data-contrast=\"none\">, 57(1), pp. 35–43. doi:10.1016/s0022-3999(03)00573-7. McGonigal, K. (2021) </span><i><span data-contrast=\"none\">The joy of movement: How exercise helps us find happiness, hope, connection, and courage</span></i><span data-contrast=\"none\">. New York, NY: Avery, an imprint of Penguin Random House LLC. Office for Health Improvement and Disparities (OHID) (no date) </span><i><span data-contrast=\"none\">Physical activity</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Physical Activity - Data - OHID</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://fingertips.phe.org.uk/profile/physical-activity/data\"><span data-contrast=\"none\">https://fingertips.phe.org.uk/profile/physical-activity/data</span></a><span data-contrast=\"none\"> (Accessed: 23 April 2023). Raymond St. Marie, M.D. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2018) </span><i><span data-contrast=\"none\">Neurological evidence of a mind-body connection: Mindfulness and pain control</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">American Journal of Psychiatry Residents’ Journal</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://psychiatryonline.org/doi/full/10.1176/appi.ajp-rj.2018.130401\"><span data-contrast=\"none\">https://psychiatryonline.org/doi/full/10.1176/appi.ajp-rj.2018.130401</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). Ribot-Ciscar, E. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (1991) ‘Post-contraction changes in human muscle spindle resting discharge and stretch sensitivity’, </span><i><span data-contrast=\"none\">Experimental Brain Research</span></i><span data-contrast=\"none\">, 86(3). doi:10.1007/bf00230541.Rosenzweig S;Greeson JM;Reibel DK;Green JS;Jasser SA;Beasley D; (no date) </span><i><span data-contrast=\"none\">Mindfulness-based stress reduction for chronic pain conditions: Variation in treatment outcomes and role of Home Meditation Practice</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Journal of psychosomatic research</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/20004298/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/20004298/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). Shapiro, S.L. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2005) ‘Mechanisms of mindfulness’, </span><i><span data-contrast=\"none\">Journal of Clinical Psychology</span></i><span data-contrast=\"none\">, 62(3), pp. 373–386. doi:10.1002/jclp.20237. Singh, B. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2023) </span><i><span data-contrast=\"none\">Effectiveness of physical activity interventions for improving depression, anxiety and distress: An overview of systematic reviews</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">British Journal of Sports Medicine</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://bjsm.bmj.com/content/early/2023/03/02/bjsports-2022-106195\"><span data-contrast=\"none\">https://bjsm.bmj.com/content/early/2023/03/02/bjsports-2022-106195</span></a><span data-contrast=\"none\"> (Accessed: 23 April 2023). Wong, S.Y.-S. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2011) ‘Comparing the effectiveness of mindfulness-based stress reduction and multidisciplinary intervention programs for chronic pain’, </span><i><span data-contrast=\"none\">The Clinical Journal of Pain</span></i><span data-contrast=\"none\">, 27(8), pp. 724–734. doi:10.1097/ajp.0b013e3182183c6e.</span><span data-ccp-props=\"{}\"> </span>','Think the Body / Move the Mind','','inherit','closed','closed','','42003-revision-v1','','','2025-01-17 17:03:00','2025-01-17 17:03:00','',42003,'https://biomechanicseducation.com/?p=42005',0,'revision','',0),(42006,17,'2025-01-20 13:38:31','2025-01-20 13:38:31','The connection between body and mind is becoming far more evident in studies. If we understand how they interact, it can provide exercise practitioners with a broader set of options to help more people, move more freely and with less pain.\n\nSkills and techniques that improve physical health with mental practices can hold real power. It might even be the simplest way to improve physical health, particularly for those who are fearful of movement or experience persistent pain. A ‘no sweat workout’ like <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> is a great example of this kind of movement programme, because of they way it taps into the mind. The muscle energy techniques require the mind to muscle conscious connection, the nerve mobilisations specifically ‘calm the system down’, including the brain/CNS, and those ‘pure’ small joint mobilisations really hone in on body awareness and proprioception offers the brain a focus.\n\nWhat we know from brain (and pain) science is how the brain produces physiological changes alongside the psychological ones. Imagine that when you are watching a horror movie how you might flinch or jump at the scary or gory parts, in the same way that during a funny movie you may ‘roll around’ laughing uncontrollably. Then imagine when you see someone you love, your cheeks heat up as you blush and maybe feel butterflies in your stomach. These are changes in our body that demonstrate how what we think can influence our physiology and movement. Try this: close your eyes and think about biting into a fresh, juicy lemon segment… go on… sink your teeth deep into the flesh, noticing the lemon juice dripping down your chin, inhale the citrus smell… did you notice more saliva in your mouth after doing this?\n\nSo, it may be that if we move differently, we can alter our mood or emotions too!? If we deliberately move in a certain way could it change the way we think? For example, try walking with big strides, chest open, chin up and smiling and notice how this makes you feel… what might you feel? Confident? Maybe you have caused a stranger to smile if you caught their eye as you smiled at them? How would this make you or them feel? The ‘ripple’ effect being around people who exude certain feelings/emotions, ways of moving or both, can really impact upon others.\n\nAs exercise practitioners we do this all the time, maybe without even thinking about it, or maybe with more focus on one aspect, i.e. movement. Yet if we consider the power of this physical and mental connection we may be able to have an even greater impact or influence on even more people.\n\nBy communicating in a variety of ways about either movement, or ways of thinking, we can connect with different personality types, helping them to feel more confidence in their physical ability and therefore helping their self-esteem. This can reduces stress and anxiety, and even improve sleep.\n\nThe techniques of <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> combines both mind and body using rehabilitation protocols as prehabilitation which enhances both.\n\nThese low grade movement preparation techniques allow ALL abilities to feel empowered in their motion and their emotions. It can expand their understanding of what movement is when using mindful ways of applying these mind to muscle, nerve and bone connections.\nWe know movement is a great way to enhance our wellbeing. In fact, did you now that just a 10 minute brisk walk can boost mood, increase mental alertness and our energy levels. People often like accountability so something as simple as a walking group, helps with the positive mental and physical boosts, from simply moving in fresh air with others. Maybe adding some <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> on the park bench, against the tree and in pairs could also be added to prepare them for progressing into something more challenging, if they so choose.\nAs they progress, maybe even becoming members of your studio or gym, the <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> programme can be taken to the next level with body weight training or using bands or light weights further developing movement confidence and therefore mental confidence of what is possible.\n\nUsing breathing techniques during the muscle energy techniques is a no brainer! Why not try some METS with berth work with me this Blue Monday…\n\nhttps://www.youtube.com/watch?v=fKhQ_LdTUAo\n\n&nbsp;\n\n<strong>References </strong>\n<i><span data-contrast=\"none\">(No date) (PDF) Pathways linking physical and mental health: The role of Brain Structure and Environment</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://www.researchgate.net/publication/377459155_Pathways_linking_physical_and_mental_health_The_role_of_brain_structure_and_environment\"><span data-contrast=\"none\">https://www.researchgate.net/publication/377459155_Pathways_linking_physical_and_mental_health_The_role_of_brain_structure_and_environment</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). </span><span data-ccp-props=\"{}\"> </span>\n\n<span data-contrast=\"none\">A;, V.M.B. (no date) </span><i><span data-contrast=\"none\">Editorial: Moving the mind, thinking the body: New insights on the mind-body connection from the neuroscience of movement, sports, arts, yoga, and meditation</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Frontiers in human neuroscience</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/38384331/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/38384331/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024).</span><span data-ccp-props=\"{}\"> </span>\n\n<span data-contrast=\"none\">BUTLER, D.S. (1989) ‘Adverse mechanical tension in the nervous system: A model for assessment and treatment’, </span><i><span data-contrast=\"none\">Australian Journal of Physiotherapy</span></i><span data-contrast=\"none\">, 35(4), pp. 227–238. doi:10.1016/s0004-9514(14)60511-0. Grant JA;Courtemanche J;Duerden EG;Duncan GH;Rainville P; (no date) </span><i><span data-contrast=\"none\">Cortical thickness and pain sensitivity in Zen meditators</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Emotion (Washington, D.C.)</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/20141301/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/20141301/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). </span><span data-ccp-props=\"{}\"> </span>\n\n<span data-contrast=\"none\">Greeson, J. and Eisenlohr-Moul, T. (2014) ‘Mindfulness-based stress reduction for chronic pain’, </span><i><span data-contrast=\"none\">Mindfulness-Based Treatment Approaches</span></i><span data-contrast=\"none\">, pp. 269–292. doi:10.1016/b978-0-12-416031-6.00012-8. Grossman, P. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2004)</span><span data-ccp-props=\"{}\"> </span>\n\n<span data-contrast=\"none\"> ‘Mindfulness-based stress reduction and health benefits’, </span><i><span data-contrast=\"none\">Journal of Psychosomatic Research</span></i><span data-contrast=\"none\">, 57(1), pp. 35–43. doi:10.1016/s0022-3999(03)00573-7. McGonigal, K. (2021) </span><i><span data-contrast=\"none\">The joy of movement: How exercise helps us find happiness, hope, connection, and courage</span></i><span data-contrast=\"none\">. New York, NY: Avery, an imprint of Penguin Random House LLC. Office for Health Improvement and Disparities (OHID) (no date) </span><i><span data-contrast=\"none\">Physical activity</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Physical Activity - Data - OHID</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://fingertips.phe.org.uk/profile/physical-activity/data\"><span data-contrast=\"none\">https://fingertips.phe.org.uk/profile/physical-activity/data</span></a><span data-contrast=\"none\"> (Accessed: 23 April 2023). Raymond St. Marie, M.D. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2018) </span><i><span data-contrast=\"none\">Neurological evidence of a mind-body connection: Mindfulness and pain control</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">American Journal of Psychiatry Residents’ Journal</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://psychiatryonline.org/doi/full/10.1176/appi.ajp-rj.2018.130401\"><span data-contrast=\"none\">https://psychiatryonline.org/doi/full/10.1176/appi.ajp-rj.2018.130401</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). Ribot-Ciscar, E. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (1991) ‘Post-contraction changes in human muscle spindle resting discharge and stretch sensitivity’, </span><i><span data-contrast=\"none\">Experimental Brain Research</span></i><span data-contrast=\"none\">, 86(3). doi:10.1007/bf00230541.Rosenzweig S;Greeson JM;Reibel DK;Green JS;Jasser SA;Beasley D; (no date) </span><i><span data-contrast=\"none\">Mindfulness-based stress reduction for chronic pain conditions: Variation in treatment outcomes and role of Home Meditation Practice</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Journal of psychosomatic research</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/20004298/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/20004298/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). Shapiro, S.L. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2005) ‘Mechanisms of mindfulness’, </span><i><span data-contrast=\"none\">Journal of Clinical Psychology</span></i><span data-contrast=\"none\">, 62(3), pp. 373–386. doi:10.1002/jclp.20237. Singh, B. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2023) </span><i><span data-contrast=\"none\">Effectiveness of physical activity interventions for improving depression, anxiety and distress: An overview of systematic reviews</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">British Journal of Sports Medicine</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://bjsm.bmj.com/content/early/2023/03/02/bjsports-2022-106195\"><span data-contrast=\"none\">https://bjsm.bmj.com/content/early/2023/03/02/bjsports-2022-106195</span></a><span data-contrast=\"none\"> (Accessed: 23 April 2023). Wong, S.Y.-S. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2011) ‘Comparing the effectiveness of mindfulness-based stress reduction and multidisciplinary intervention programs for chronic pain’, </span><i><span data-contrast=\"none\">The Clinical Journal of Pain</span></i><span data-contrast=\"none\">, 27(8), pp. 724–734. doi:10.1097/ajp.0b013e3182183c6e.</span><span data-ccp-props=\"{}\"> </span>','Think the Body / Move the Mind','','inherit','closed','closed','','42003-autosave-v1','','','2025-01-20 13:38:31','2025-01-20 13:38:31','',42003,'https://biomechanicseducation.com/?p=42006',0,'revision','',0),(42007,0,'2025-01-18 16:11:56','2025-01-18 16:11:56','{\"firstname\":\"Nima\",\"lastname\":\"Moazed\",\"email\":\"nima.moazed@gmail.com\",\"contactnumber\":\"0989373221420\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAv628BhC2ARIsAIJIiK-Y0KewJTfYsRgtxBZ8v2Cb1MN4Kn2-rQYENGnqGom_KCW-BNzdAOkaAkWDEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6ZjwZqd7_bIIVXceTngKo3yGh51lIlBdfb2njscPVRPp89rAoD1NGHdMDNunSayuXKOftVNhiliERS23t3OVWUMo_OHm7wblNHpLqllndI39km4mI074chHzwu74HV2XNwuy9hbyFlGvWaLxsPNHYKQSMa9kl7R_VxtlvDBQFdS88YN1D2d1gfCpe5cAwKwNvSMhEP6iJmY2nbdx--0Zut-vxKkl5g4uXKIAGJ_AMoBKYt5aYg_RCR7Omiig-Zs02wTSXFd8x_AyIBDx8fenXLXK3F1Rq_Gr4RFy2rY6Z4646SNw9bD5vgvqF5ggVS3NIiiW8X_69ZDLOyTqX3rYKUgKgu7WNPghTFHuHsBb7QLN20y_cz3frKx7jO35AmqGrMmdU8x3Oe7ABNDvlGlMyzGyAsQUp6ABfqnwxfE7VJhqByOzu3UMCDwu9lv80RwgJa9uWBSbSyzjqZnwOo-QId-lAHD-0OV3FY4l_zzjOrRkysQ8S1nh2Qci1wY0mnt1wHPHXTtyFwZ9Rjq6pfBMuvM_Kl4Tryq-7mkp5xdIUvTAAyEFdcDYaOvpRIxwgYvYFtNZorAw-nDEzhtVVVSUMe8ADWigKev2Yw8WrrD3NKLluO5z9zSOSIIHEQcGgjlULfwOimqHx99hCT3F1lhD2V8qg3XLoc6l7QppoUo7mte7evPjdAx6L4VQIO9VAjQrDERgzCkDXWVAjb4g_zsb6qVPYSwb7ZWoa_UOiBL-Cvc5wrEKo6RapsOa0GK4OImmPKWoqwJNORDy6XtDZxdqDt5WZ7RnILaKmPOn6tF5NAAMC5XVIIKuwt_Gwffle_uZVX7Q58ncMPlb8et0LsHhaGBSwqB24GwuUQRLBRvv7TDLN01mgOJwquhGrN0eMYPf3QjST8bJ7usfZG6HUmmTIVgX7zaiOBTEuiJuZU349vZ0TnN-U6NagZXoMBywbhJb4xG33NPwH3HBqRwTR9QYHeoKlkcYNSsDmMeWRTxoKHkZc5bDvccJbZ_khcop-sTlalvGazIRnnO3d5NZWZP-yedESUfuKefGA-HJHPDaP82WwHqFHLhu9qHJXb7V0E9Jd8d85Ps3r9489Vv5swQHzMxx6f6azCAIBriWYhEIs0KNu0CIovD0Pv6lwpRR-DzbnJb1DIaCzp3RLpShRUfAvP5uOk8k1sx3QQ2jRHnyStg_5lhm_mtIyh5we7AKnRv_9Cz_XbC1xMEq0WEawM6wNoxtMpeTB0aLT0JghF7qSCvCU2HnGXEUD3iafInu_VdwxovH8g5WgWVYEAG9NNVlQ-rkqCLhOqqHQPc-cmGaxZElI5oEa8IHZKSs7iRMKHP05Q6tqvWw7QxQepvmBWiOLrvB1uxK4lykDZQhp99NpIixkXXzdXsC1oX8HFeFtaZKfFAIHV6rRTEoNNlQ7zF1UcbHzmg2sDNS9zfivTU5pCj7YGhrsymv0k2UvF81DE0Wzfh0fcw2ZuPVY_dmcvbqn5wmSDUsxVGp3DLVtQHFCnBKaecdCu1HBN7nbBU_lzBCbco2zBZCqCU2I4Rz_1DYxt5ypZeOE0Hq61OfUsgsnotJmbpHvW29yTboOt0FD-cSmrgXFV6ZdhPs7dRXN_LRIL_6x8pnYSFn2oWu5x-F2s1OK1LR-N1TV-5fSYValz99uYZalSWL74_Q387fDs0TCrr8wn6MDFC9aYZTygUUkG3-nxfPhiKlu9Y3Gi_Vfe7-FoA3BkNICsRiAsHEkL8h8k4lkebwnINbr8co8CMWZyYRyamAr_4ao5tMe2lBuh6WCv2SaICy7tgeVFZ3vTIkTyh_QxmtZzjyErutLVX47wCJXv5QXggraqA9NBWGEgR7tGFH_Eq8D-PUbVti75t_lJ_PgGsblhPe7Xn__OOa8WieHuyZTw8txJUfG4ST2xsc3wmCqXk4sSeAq3I0My_OvMgc-GxO64WdgX0CrA_rYmo8ZsKSd0FeLylxcnkHwHIzz2cIrrAEvzkH6Pd-rBPd3_MgE41dmF1sfPLtpmv3W4s3reRxHg5bNEGvPxDx53o6HGXLBOwF5h8RxYDEz7lS-RMO_ZLHcR2_EJxJb5TxuM9GaY0St6WkUd6G27rCggmtV7EgdG8BKXCF-Jd3KIPJ5gKb6u8Ne20bXHXd_IZNXRhOiULm8s1hDbZjj7uQM_dl61aoxRjuRSZ_vocHp8y9KtAG1lJw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678bd29ef10421-00956813','','','2025-01-18 16:11:56','2025-01-18 16:11:56','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42007',0,'cd-form-entry','',0),(42008,0,'2025-01-18 21:11:19','2025-01-18 21:11:19','{\"firstname\":\"Oliver\",\"lastname\":\"Grisedale\",\"email\":\"oligrisedale@gmail.com\",\"contactnumber\":\"07473884576\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAv628BhC2ARIsAIJIiK984nNBs9Y-JoGVhsHDMhSE3VcnAqOAgotmNjgjLYXvPANXsVqJWkQaAhPLEALw_wcB\",\"recaptcha_token\":\"03AFcWeA606L3LE3y7DuhZRvcFbo5AFL5KxPymPLLFoc6Vzh0yHunuL2G4DQQYap_gmKnN_f2XJQPPIULrV0S3Xtq5l5PdO0Kn7KsjUCaqPyJZbZocpuipHEriYNmBYZwXomwqt1uGSvc0JC-Q99pfqYx1FIIDKdjaXVadWqIFgtu_TASyxToa8qAIthWbkibvDhtpexNDfFt62p62JPYFfjfB2pXQIZmyHluOSYQRnRj49nf8pfTg48wpxWcwTwHI0UCNv-GFxsmOBx1br02hUBQ2Ij8VHbW3TN72Mz8n08d2PqdzZEtF16yP3rUrzmaUJ849oE9Sb77NWkUIvE6h7pQdwLhDDWiSOP1OxY64s-Lhg5307plXHuxf0HoqI7P8m1531YKOOjeEKKqU6YnRFDqa-rqFi5--8n6RMvLDJ5foDQ_shdA8sz-vhPWjheK8u-5IEX5xiof9fb9JUcx2QKX2eKzH460rlv8AB5rWXTTdOBcNJhBHnI2F82exQd8zlutgb-c2tQni38kY53dn7DauSzMfw9kUzUA3Qfyn_lnbXxzcZL9xFq3LLapBqnuwZKXeAEqYZ1rbfEywfJNLiKKDmXNM1xPkna8XcV6E4uUJuggKiR4Bm7xwwvDQxn3JNFEz_67kT73r-aMsl8Kn1NobQ62vX0RjaaxRuCf1Vjir-5_QxlacmkrRpUf_H5LEC2jRbr-5lJ7yjdQb850MpHwt0P4d7tFqaTfccREYHAOVavFwB4dZD5DBjXX_xhRI_0S1kEQsIUblij02_QwY3x24a2c5H0zxcw8hWux5ssvLYpYpNzGSC51CBMceCRbWREEIh7kOmnwCUgp_-l5PxcQTLneyD_HL_5cAJa-Xt-Pa743sGvsNdwRWyX_ywuNkc2ZZrZEQllM8Xf6MD56OcVsVYwJ4p81H98mH1AFCEw7O2aVPzUIl4LWv8s5Ktg0N6sgXvnKgYg_KMwl8aRfvuiP1oO2lQ2hcpf0gLjex3WMHhNSr8omN59k9DtKfKrmn9jnv1hl6hG1K8umS43kAlLJPWaaO96Jo4whiOmKCM_AcpzdLG1ovWFkQyQq57ikK_9MjVEj3n9dSazWolLiEMI6q3UGkE_3TA1saDAeqVkVzqfv__o4cDoMFrytvlgOXngYkJFu7Ma5T0xybTT77dh1de3aaB0w-EFeRJ_NvTTZpmEDMmfdftfIdHzN4GwYg63vA_u9WclJQ2eiYJSLrv4So81qEO_sFKNObrZV_Qi8jOb-HxNs0K2iJL1oJhBwqEX7VzUEv7wQ0rfaSRMGOEWjaAlu0-fsexwEgvnjb9Wq9FVAK9ntlC6C7N4g3Jis2sVOLhpLSUZYkg7O3yu8qGlTpvVxAKNbfKW8VhD7f3WLQ-9kE0pWO3e5d_nVOQOR4pt4yoykGqug8jnPuV1xaqqwGrmUAQ5FdxEyJQmfIbbPGXJ6y2nF01pvqqvfAGtTSC0KcXlxpN7UBtbCV_UZjdIDLN_epzY8L2llpdwz7c4-RVNrRdyXMd_TkAC8sC23ZONWXWDyRSHMMjehA7DBMsTsVk6uPiJrLuhqhxh68MVWYSeMJEm00jjDHJc-wbuAvVsUjUsjZkQcTqqVoYYAH5vKaJdfNs1HY4VFpVIcOKs517_eyX8Bx_KXRY3J18xM9rUeUOsErhFVZJefGVuVy09-lgbR3ADbagXcdgM_329GYExGwP2DoOTdV_bDVlQB0MsdEx7QF091HH6e2jA6MvwzLaxfONV4jyZXqpTditYNyGX2R001TN0dPBPRJQKPc8bjwHJo3VXpiG0tH3HfE_0P1iH1G5GOg5FgfsAbhf1_ndZuE6MIpp2rZaJ5D77taUmkc4FKjG8A_1OQE71fw5BCmzbngiMxyGEbbadd2Uk62IIdcHZKwSuIbe5qEe3sTP7okXyVGsDSPtC7RSl8QNrSO4tH0ZRQO1DqzrXYfaP8_eexrH8AbueUg8zU1tlefB5TP16-LkjO45WNt5EVQxZA6J2nILlpAbI-qkMF7rtO-bePk-X1k20k8kY28ASiqgcCoW5LVQq8K\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678c18ebda76e7-66659899','','','2025-01-18 21:11:19','2025-01-18 21:11:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42008',0,'cd-form-entry','',0),(42009,0,'2025-01-18 21:11:49','0000-00-00 00:00:00','{\"email\":\"oligrisedale@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"1\",\"currentpostcode\":\"CA13 0ZF\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAv628BhC2ARIsAIJIiK984nNBs9Y-JoGVhsHDMhSE3VcnAqOAgotmNjgjLYXvPANXsVqJWkQaAhPLEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4k4fy-iG6A40QjISJx5Hb66RZTgwr3nllzlV4XMbJzvR-IKsXb23L9PmhTt4458HqP7pK-nP_uKxgVtIbTpzWFONejxcv55LYgfBlER4NGn7pyz-hgMyqi-YtF1Zvy4V6244O-2M52C1rp7ojCMq6gzNtthWmUx_YkAb5PnX1Sle8g-p4edrGY8DhDUf7UKj2ARTmrd8Ofywu0J-PihXXU1v9PbauTKyfeiKeYDuL2LaKwhVyhlX0yhA1DVpn8b5-IIVtttddkra45H_HG-ECd0JVGEdYcW2qIVMYF9HITaU2lNBkUebA-oy8T6BmOnzaxKuFqYsSt-9JWPrql5LG-wE6Oxznp4IO9WGnquBm7cO5fE6PYVh_PgEpGDX6GvDRfTbYjzzGHMi963bVQ4pmhs74XhBBmIMzn5x992-Myen5dQnVExR3bhX28PcpB-S241jxzhKT4ncaBMkaggeAcTFpfpddn4SOikpNybySQpvzPFJEirvp9c9ftygdEqzkEnEst6F0SjhALxcKiaRxxILt_0oj4GUSiRAie1QKhDiVFMPr93qL67pA7TmHfaK1JkbezB41qxU-XkDoOwt32RApnBmX8bq9vwiK3TkLe-tFj-rhfl-xSHdQTstkzcVyYKQQLLSJnFWlDUEaIdHS1hlctyWi64fru6Xz5n4k27GYWHDau5c1W3h3xI_UoACRq3ICtVqgglVpX4cRBndYYBgmVNKnLMBp75oTumYLA4DHUPlz-YKWlEna2dGOBCNG_C-dLSM77mOdveE-5IDe7MMupC9vMwT5M3vnknpPZnrsLDp2-VtJM6YIXwaH-SR3Rs9ZtJLphyR_IrUwfN74tFPWnI_3ubqAyg2ngXXkF747ux9kc0n1gYw9XwVzij_UG8pkfyojguq2SmJd5u3xDAd_IVXWV0e9faOGSnSndU2JqK8dXY5X8RZVjgXKeRBccPjuKHo-ukvsx3I3SNl54DAT1j0rl5aqN7zHPWHABGeHk4liNAFTjv2nqnEjaz35Dy11xiH8on6RIkZuV_k6yOwxU6cY4g3ZZ6w_bTWOa5V50Rv3DS2cDWEb1OdeI14ffGNRp72V7Nftkn7wps7Kkk8P1L_rnmaDdU_iIfHt_7jiXwkJBel0chYgn2VDTJxHr0CXOss30S4lm8eQQE64HA3eofa2fYg-Ry4Bsr6jHr-tSDtwoZbA9ypd2DW58v-znfs8xc_2Jn9QsaIafDE550T0F_1XEx0xQqo2PBcOlVekTJvA1dbjWZgbILuaRmO8ssC0wxkPcasQUNu1yUDo9qReay68MZPav6pPbIHJgwnULhRg--KgU5ROXYl7IoePPGFJ9Ym_6vS8lyWaqqkPUl_R4zC3OreylMjgyfRtYsxjxjcW0tbYjEG2ZPh0B4tBvUJMdnuXPJ8DIOe-Tj6-GftmC66AYmeVtCKZeJmfsBRHKn0clRlnkZPH1Nyb6YAvxOYvQghFgJFAvf-HnJfAgb9-LcQdY2gXdy9YiWjdCq5VrfWRypYy-MVtDhbE5dPM1coH5Xkg55gH1gnTt3LUl0qZg5O8O_yxAdHpwJDupCIk8k3eZcbZrTPMh5f6BHGruoi2h_mcVm3DGoI7i4gWLXds5bCVeYLuEjzpfTZOggiD8ooB-HEdW67CPGivZX9mJ2HsXFZOjSvpjK4TFxqSBmE-h8-QvnTWeQUb-XVxBcoItBXZ7HPy8bpOE59V9p69SrupYa2xIqx86Cg9DzUL1cPdkb9xsfjm2NQnOwCyZwvVEDD9fL1yXpmaoBvoV5Ck1h7jGaZ6fhMOuPD20wE6otgx8nBF5cpVNmzU3S4qV79Hk3mPVpFNTjL2tmBhAldxPERN11H7AvDOm5MSEQJoZ7AKaqA1b8lHOHFuPaYiIMsVCFI9v1UgSZeT94EZlh2BsWY0GzRMtRFdI4Z8qn-qdTW4SSI7M0qgCqNI8xQeAWtwtHETAWOx5dajVeIgrArWFL9hYsM52yWzNybu7C1O3kfpQ61v-Ougkw7U0djG7VymnPPa_Y5vCy-2lHmbNlpHOy7jdnhlxPuW3Se37UXqCCvoGHw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-678c19150c2fd8-69119525','','','2025-01-18 21:11:49','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42009',0,'cd-form-entry','',0),(42010,0,'2025-01-18 21:12:12','0000-00-00 00:00:00','{\"firstname\":\"Oli\",\"lastname\":\"Grisedale\",\"email\":\"oligrisedale@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAv628BhC2ARIsAIJIiK984nNBs9Y-JoGVhsHDMhSE3VcnAqOAgotmNjgjLYXvPANXsVqJWkQaAhPLEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7oEmQBrY_Sd23S7qFbmcMcFSwWnIeqGzRFIjw0kN1naF2-FjDGmVTHkWLT16Mz9sfXf6nFGVA0ZPPNpNG5Rb7-YPtWYwVGasFwin3gNww70K0JaxOxLFHeFon6sf006vms3vz7ohtHySlhY43zFI_QrJbvKx1-7BXyJehOOXiEetA754po5oyau2XiDZ-fpAPt0mbdJ_WHXVB63nIy1lqKv_JWEWQ22zeSYv3S0EOoDdV6sbYuo3ikysJlX5EtV7OapFQnbpPwH7gl6f9yeRProfeFNfvhSREO1Dl8u5icVCffHxp211wde-0LpjDZDGbkL8dHSCqTNB-V4ZBMCIaMS6pL10wN9wbiIrkb-eeg9a_KTAsEPkbWJU8M9yIRNdl30mst1ocieG47fAJXA54w6fcJ-93hERWG52JZXVvC0DDOdKURkUi4Mp_B40F0WEhkTEBiRjQ4W-VfeBJTjb0pafviTxKKjVcMgnyVEnz08kAWAg_8WRSpV4DleSm_a_V1wSm8-IsPgXcTp7P5CvgZhS2wBTOrF-2PdYNoUOylrjlqMnnmh5BTZqM_RxvD0RNMmRvQae5c_ZzE93H8QkfKpUWH1jBKHRA6cYKmjYYdjjLdEjktCgxk5OCOibCucmw7shuWgD0MLQrMg1O1G6Ft8aKaA74v7FrSfbcULi-XvzpoAbhxi8SDxJMIcxlkH46XbR1I1mFD18eWN5ES7jar7UPfbjeaI2_SNvBAALsq-qln2Zrzay4TgRzFoyCqprS85dNFEF5M5QPu8b7gTvCQD-y29FyZK9KcNUi57M8QiOhYotNlEfnS1lv0URPQJ-HCzIZ_yBp1pokoAIpDQ6wmWmzQbtBhey8X3KWpIc_awHE5pcPw__mauCNKx9SnWjUwVloJK2AEnR6FUeM2onctHgNwgO2Sv4K1MNgp8uo4cACMoOZB7fqopDTFECU_Cc6bCfMjbuOed8D1yevUaQMmJ8JuCSv420KHsey0GyU3jIiERQ-JlnJTcrm-Dmp_IwdYcMYF_naHboz02yIPMVmnl0bXNEB4mZwxvGYl1TBq-ZFiWnsBRUMT_ILg5hlni6CYv5C4y4CeXFkntd1tfiLuU2frDXCroiuM_suzbf0GtMzrO1nk7pwSHK2zoDaMTCcSUElu3i6olejJiQ7oLLXi9A9X2OHmdw0HFnnVSH6iPZh0hEhAbgv9rECW1tRV4SaG-74VPLAi-mTikOPavaEcXKU0tsvW-glYwPn23GFmoOHAZD3672VB2MEDeAIwcwCpFpZoPg9NYfBnqk7NTtzYMHkCKoeOc2k1Ygnh-WoJtZ2p-nTXQi66hQtX-GfP0tjqQqmSvQhFA-8kzDc1NM8Q8tALup1NBjUiAs5xW2C8hRBXetnBpaTFSY1R32HT8wazD5jSS_JygNMzirSjXuexMxBsB3FO3cZnLOF5U_x96dGt8tbO6vNEpZ1sXDDVMrVIi-7dg9sjVM70YvSdbuoL-AJLzYta5SFw-BrqkNo-u0cVp7fC9w4yBkgSh-ifZrJ-_h2-bhqc51bgxkdJZ9z_VV68KQLqhvWpestUO058J1t8fVIDDZe8pK3n-xU2Zl07eQTMyLBSYSH0ywYKP6xRR4_ojndF_7cukCcg-Rb4qGIUOUMlp04ktutLRw1QXKw13zzwhgs6WWVxC4Su77agHMj9geIzgqwREyd3IioL9jJAb9mjpGSrgm4BvHZPYtfDkVILlV1BRNH_FTvZKDMn7NxHzalFXHPAlZv5JB4bRXw4kRoSgp7_GIhYk6own2LbtuG7ghxkb_goV292niUVMVfuGhmtQc3OOJVyafCZGonCTW70hbDhwAhMPQcLZgVZlE-kkIic0VlgeZAPrC8Ypm1N0uvK2BN1XaN8u2fkJh6q3ujymEr4If7nrhFilYwxO0XWp44IigPUf6L6PU-MBR_PQVdLyMpT1kFwwsisrtq3iFDQhuC3bq_qDTIDqdbDHo8qFz3MuCHCl65YTZZAuKLy1U1u6ti_NW3mN8Rcb_7oIfRukjfp4POgeRIPdru3zFe3LMB3VHRDmEiTm5DZ7bz0_w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-678c19283aa1a3-59362995','','','2025-01-18 21:12:12','2025-01-18 21:12:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42010',0,'cd-form-entry','',0),(42011,0,'2025-01-19 09:13:53','2025-01-19 09:13:53','{\"firstname\":\"Heather\",\"lastname\":\"McNamee\",\"email\":\"heathermcnamee@hotmail.co.uk\",\"contactnumber\":\"07794548730\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sU48M7PwR6FAEIY6qGguLD7&amp;gclid=EAIaIQobChMI0oH3l7iBiwMVlKVQBh3l6DFsEAAYASAAEgJS3fD_BwE\",\"recaptcha_token\":\"03AFcWeA6o64DlEC21eacYQt-xA-nJs--q5a6c4kABD0GOEoSLDHE_7MJ8yfVx3MbWEn4moPo9Nvtr_cQAnYJP9uPdtgW6-Xa1NCl6ikLkQa8IiY-lDEXsgKeJ2_tw3rcygDtYBjq25DXXbPiNVgSMgkthYBjZZfs-n8NZ5OP6g-oEk_6F0dZaEqJZRl6PBk3bYA0Pq7KFoo-dZ_2YsGY_OMBbnWX2GzUcj-2qlMvpXIO3a1K1BhypfB_ZMGYM4AaEWX7cVDmRIAYTB1vHm67uwjED397coe_Yd-I3qXaC2dRc578yPogBwq1UeN0m97JutHZcoD9BXOh2KzuJnQ9oQ4NrNwiaQ5HjTAhAWfbtA4JJ3-k_NTuX7sCqTsyOItRlDQSUjgQdzZz0BmL91CQCEYvVrxuFoDQvbSACiDL9_bbNfLndZEDcS36FaLdf5VgngO6T5N5yzTxqVSCPQAVfIRv_erpfOHErzAdipWM4l8lBKunnWf2lYNJd49NIqOOjkwaV9-VtgbDOyPd3Vzi-Zej-W6M2neG6xtaRmHPHiK24ZelSGbyT3DnsUHzCo3gNsTuwEmbTLX1ZwALIqiuDw7mYxcLOVkVGc1wnmd8k5HD9r7nVjuXDcOWivwpZuLiL1HUSWhMo_oBRWIu5KS0dPe88QYwNI9JLvLLbfpGHXbRhwDMy_EiPv78c-eY0wm6Ct7w9R3yvSuHm4fhZmAfSjS3lEpcZ2nW6R_wL5WNBvj3rz5F1R09W18Eg6Y4M_hwWroDv78k4bLq4r__xmFMSBhjSnLwJJeDwhtqA8eXvKhSLs56c4458HypMI68q39ko3pK3v2hOzks0xE2DKje3EWQbbT5VX-e0KJ3La3nxncZoMfjO1OeoXKkehCA6NPqxjqgRAPDheGuox8Y3uomE7ZhU6oixO_9IeO_OipxTulM4hoeWeOMjLV4omE2rPzQWJnp-4ZLzG_NAaRZeCXaNLfHmjY_ulGqWsfXXWTQK4nb9HEEXs8a3CN_nwc03Q60W1N7dx5SCG9rHTLzI4B-rn1hJi26bINHcMd3nx3r0vh5NX7v-_DPwCpLHbxiUxKYBvCYOOztw2r02Nt380A0Md_rF7xIoU8jG8cx-NQcscOTt7H4a2gFh7wcjHZBrL57Yur9EhngXG67xVw-veUczS6XJM7YGq1DwMKJqcXHoosRCqk0bkI-PLatpTORDD30gCi30Z6oghUrzd7ZM7mI1hjzgw5h87_U4Bumn0O3Xpg2Mi9L-LkGlQJ9PS8WJeLNP2gM-1rvOz-lr8wgmi3UHcXPP-I8fgy68_d63N5FaXkZgXVUeD7rgna8_VHzkjM5U2env3jh-_Alg_jSz0rvFOZsanONryApm8CK5wLKTcxp_5V83E-naIMWD4-5JCE11hJLiNoV67gD_uXkaLkcFyKQQ_b8zRPQBz2PDKFlHyoYT1Op3os56wVZUv3p1Kn-L-WpHAt0fCWSoHznGjT8gr1BE3fFK3L0YGHlA4WPebKUa4Rii3wyErn3sWAVUjl-KtMYpPpYZtjG2pdioQrJ_Wv0BduvCY3hdYHCjhBRZBCt1GZAK-DrWPsn5SXmpQVo6u5YOqRQZlnKMoDrXgghvVXv6klB50uQqWFOjnoWKoW2A7XmNEkILXaXICDJF531daD4a3kxsh1PRLeNDVATS3u3pB9ECJzD6YqFO20OxsmLCiB-K_9eJNQVQKAfOzim7jMeHpUE1jAWJQJMMAcah_o9FBKCQi_uDeFBO2gcLM487uDAYLe7OlyqX0OkP7OWU1HjRaLnH-F4PynZzwEq4NipFcNCgMEbc6NSUykaccWI2KsCRznSRazfr2aUx3wk2Pc3ljPai19Xvj1w4QTvgQJDRgUalJMN7l6DgHbteA8hpH6UZtCJL2247GfMeVSSFfbMRvUasPYo7pLnAhLyZy53TkZOpiL-kauXu-ZSZsm7J-xjTqeYHcIbOQ3U_GZ6nl2_UXLuP1SLfmcJtRdTxONpmkrkv_LlSkKf0CXjopihmp3NQpuktFiewcNYJc8oNL2wFiAMen49yipzzSsyPlqtu8U_SO2kobg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678cc238c8b8b4-63536396','','','2025-01-19 09:13:53','2025-01-19 09:13:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42011',0,'cd-form-entry','',0),(42012,0,'2025-01-19 09:14:25','0000-00-00 00:00:00','{\"email\":\"heathermcnamee@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"SN5 4DB\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sU48M7PwR6FAEIY6qGguLD7&amp;gclid=EAIaIQobChMI0oH3l7iBiwMVlKVQBh3l6DFsEAAYASAAEgJS3fD_BwE\",\"recaptcha_token\":\"03AFcWeA7oP6JmkZlMqppcDmsG6WOE4ACmmMmMZr1sRXW5wAv2GtA2nBFwzr8wuGmWU-TL-QDh2jQVi_5w8eY9K6Cmt3C8Fq7eKR9CzTL1T7hP6C1PuLYmZPZyGb1Ri1HL2QiNucYikEukg50Ix6H_9UuwbzU6PpW784cyNsWg7pN0GVjnsfTdAIDCV_RPKG8_EcxZDL1Qs_hxy89m0wfl0HIWYlXI9kp4cPaCAborKaLFYVtXAfgM3y3Y1xhoFcwoeUTLaEUTMXtdfz7WnX5EKnfWl2JW1M2tVnjHg-bYovX9OnHcQeZTZNzogmD1y7y6T6HEj15qUIm3ZatzTxXwg-DdMXemuVRZVgGzIE94O9K_ubtc9WMIQt3M9vkwmWXXNVP7kyomSEOo577EMB1JKOxhMbeGV7l-v9bLcdjS3Svsvz418NmiHks5r3_JegZ2B9yCiQqT_SXh3Rnt0rZO6uKq6YybK5hiY2fZZXXdEAUXvhZ4W8VrLa7gxOiPGH-AMJhS_0FtL2oIIJEL_ZaXSqlfCs9qbE20QrM-OYu88c14i66lWdzhSx0RTYYdHF6edAlOdwxLm3JJD4nI9_C7J7z2beMWALgGpwJpdYAf9iF_bzXtK-CKlV6nmvUji1d6MUJi_bXe1CD35zWN6hgW8Qt2UZshGbMXgHJ00zOYs8k_ZySrNziI1icse4JcB3sUAITXTbCJy2sHZwFpOlfpAxt1Jb4KvotQ4lpu9-1UVcySfd-N3E5se9C78CDFMOTnd7HRWhcD2Z4FJar9ZZ88NUcZmvJV2tU-Lwj3Ovr5QYebIFCH8pGcHyR10h-_xULrXI-OW1ZB6YJ46DY14l3EhurlCl4ULiJdrnBUTfejdx9jlHB0YYkULsinj0kjbWqMOt_v54aQzvK5DUWHpPQW_1bqryIMGMU39uLt5KsHC1sd5MOIBEK2fjH-8UG7bP6CafuwO4TG2GuUHOkCli-qbp20IC2KzmRVQS3iYtsl1AJj77oVMOB8Z9fqOws9T111reGzkbL_2epmJ4q3-KfnLGThQthgqiVPYbJrGjH0I-xadXTva_eZPylgal1gfcBYVpHIWNHjwMvN7sY9Vlp5SzbQF5mhF6zO5VaZVzMjxdvGvki0uYfalpOR-2isnaEQ147pfD_ZERApHo1k9z93BBrpbPPCsOHAcwXi-AKtAwYOa4k8v9dOTxPGMKUPRy5fSFVyDs1fhoiAztjTb05Df-wauB2v2rtPxi9s84871DdcvPeGRThvDJOg-4WtwsdNR6lE51EAorLPBDlL4dqr-bmfatvuFVYDyDIl8A-q87CJe6ooXId6JMr-dCDw2C5szO908AgSgoVkofNvtYRrLg0PKbi1_QUH0NWbTlFKnfVQsJvv63fT92j_eeP__lLMM9S03U1iVFUNvTvoHd0wZzMRA7EYwwBoBCWlacKz_RvzIr7Zb1JP0BG2nCOwGe21QSkp136szKjKQ0JXy_eXRzB6vZ-DeO8rEZmoRBqNFAjuYcQNOgqF2VLCZiVA9sHSgJEN0Du52uMwT0bYIg3O1xtd03fIInb74_TKiCZHh7RsuKTPpXsWkcqCf5zDxaalEuyt6FwmAa058Mzvksdtnf_Lqqr1yJr8psUuLTavLLGzJgd3ixLCq2NDUk2qcKf9ChfyISYsi0sGS9V0fjatoGRJ9YiBgZnvl1XTf1pHtOyPpxLuQbGFp_2-CC3N3zq9QWrkyQG0Ua3z-fF2SW-aKSQduQTm3w0XTz-5vHhjiJVHdrZGNkmxB-waywgFw3tmW8EyH4iMOmjQRhgNIToE7vTTpGtsLO1ptgnp72pa2zA4OwDj4_AtAGSg-_agZCW93pAG7iOF7yIBAnyKxfc5JcK30TLLdBNxGwBl5cnKugbhKOZjR_2UmoG0HPG_3WzN9H1Tlj3hoM9yKAgq2d4HHZ0JF3-WxH6m5aiBiYcmxl0Yghlf_in85_-VK_DDRs_88lBSoLmXez1ILR3bjxt7zX0NOe2se29uQyMIazWqtFIGi5D0uRhqV0Cmxgg2qqsNl3BozlBBpmbH\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-678cc271d382b2-89876812','','','2025-01-19 09:14:25','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42012',0,'cd-form-entry','',0),(42013,0,'2025-01-19 10:00:35','2025-01-19 10:00:35','{\"firstname\":\"Ketan\",\"lastname\":\"McHale\",\"email\":\"kmfitness02@gmail.com\",\"contactnumber\":\"07359183161\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5r6hlSz-QLakJSQY6xD5Wo_f7vEOjemIWenrBa6C9QFT3oJJWdVb_47xV2ZZTn1SKoSfOoPd4s9oz2OkdtTvZLOJAPT7jds7jYk5FdnKb3ke8016b9TgOFZKfeX-1JVUUNrWrpYO1WmSZtoGlB7nmlKiedrA17jmKC-dK_tSg0gVTcvWXTWLNxwGaJcoyCBbYXe0ygSa5EFe0Z-i1dRJSCRBX0C4AAAZtlduOgaSeaLxv211jtgnmgGGB5UND9y4pWvkX2d3n8v2fRXppJ0dw7eTKtNm2YcWtiAP0x2KJUrt9TMAu7ucXIZegiMwAeScpOAyqx_2N60t_AWi4inAP1Mw5kddrnNLafcZPpOV3FLN1q6V3k25tZDSeSc56UyMNBEo-JjQrHOfbVe4D-aUX8eKLg5AWeBua3melgPifbKDsiGQGqh3m-inDn8tCZGC07-4RNEhJmgD9Yis6nsXeJQU5BWbwtbvddwWsjoAweAYUZi-X_bYFX_y635f23qibhD2jEYSNwqOpS6tFEeT2h36kPIfeX5nLMMtlA6l3XmvzJ94bpcZYzcGnpvjD4JjKnuHGs-qvanXPNMnqL6xK83JDNg_OMzNcThu5xRFhbBexgNK4oxO7qeMZfvyZ63KPJgpqZYaYJ3jkcs16q_b_H5skPrLw4VOMiu3b9E4MDdvRF4cDvAASlklDpoHtLdWlYFriuvZPGAiJ7MLHbfWkGi6p6Lfz-1p8TE8a9AzPpWtCwunJGypxUCr5IOBVnlgBkf4CFtuT0qeG80upF6O7b6ETcWO_obeIn_DI_dzZydlCUUGVfzWfIkgTjapHiNwmPYgdjDZaBkbA-wGxM89dmNJnPkHvwb0T9qD3ty_0rzQcCNueJff0nB2UThHWmqRUYagUuvrpPWoXw651gNxP0LSPaoC02RPQVbBWJB1KfTe0NWuc8EACIMOZhx8U5Y9sWMyUjECjMWFGsMyKbbizSgK16BlD3-RwCBM_t7q1o2Iowq8QzlgDqb7S7atZTna-MGoeP4EpSP4U41Q_pD4cMY6bAzJD6p_rJGLRop7atEidO6kA274Ro0n_uAC4cEH-u1A5iNsQZR5pFOxsPEGmgh2-JAjgjlGQ412kEaB6hrS2g2ZbxtDjDKjSgrP2L7Lzl3H0fEuaiByETEdBlNNzVPXcZzoT_1IcWEm6PfBiP769cNerptGqbbcdTUNWSd_wXaAtHSQEPhjnUwm_puazoWeY5tsYCUPwC72rokkj65mFcztp1R9-Z0F8vMEWtMqQM0jgNv1vo95BVNtYmkpLpBPAX0aFXs-yXq2-pz68NRo8dWyQ1SQA9s2ZQr7gBlh_NGEyrXWt__kPg00tbpqJJ2Quqc8HA2VPek0KbFePzxsVP7eG6XVyTDYbIjYCW8Cs4mw3goYakKnqGk5diXf-EHh15zRq920414nGApIdGMJisgRI-0N8uP2_RPnzPslEBz8sFZZyYZx_LUmloCGQqC4eSAHesiQ6lNwz73GHaVq0En9CifebJV3HrxSz683-U1wpetXdOi9HFrmDeLyLRke5NFV-9pvIMx1w19UV0YDWyf2rwSUK6ItJEC7qmbK7me92dnJLGEGl2csMxCQyRLLf6uzZybBlheqIbj_UkSbRgUFPRvZDKDDKMBfL3O8LFinenF5jT9Y7oRy2qooROP5KHCsUp4bv11d2ikoSAUtZJsUrvtg2pb8QLigQpeZpH63W-PaYSXL_Lw1gDsOjtSf1nMXt9J8e5nTmRnhbsqTAQGG2Quz9jknE9aRXWo8rasPVbk-nregRZt6epnQVP3HCCHadeG3hPP7bkm_APXjkAo903PQ6VmHTgoAsjPXao5CviNOC64ESGuSZrCsXLRr7HMMNlTdj_oZGzI5qb71MmBTYlo7Fi3kLn_7oknjAXYgMzsW_iEimUb83suheJGdiwpKh1FJCFdXUPfhAO8YvUl3DLYPh5NDIo817DAbp9fKjKKzWw2M4Q9grOPYKeIRZbdRBAscNjzHubQ8hr0PwXdTB0YJCt5CokLZALlXFyP56rqBYmkNWzNhuTQVT07tJYDsf_LMHL9XO3Bqy8nY449Qu0zhR8Fni10WB3zgYIrqd3WPvmmH_QsjSWPjG6nMuFIXJ4S61UGoluW7CGs7cwy6udiDylxHRCmR-rz7vaYgh9VClSC-URrR-1WIkaJZZa_lhfWPoN8GD2s9IoJHuezr3eO54_pMdOCLxxM-sp_sfRyytBMoOQnbG7eqclJv1XkJI1q_FZ9INk5RUO5TZ6v_zF-3pbQOsjVs_7-WaEsny2\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678ccd2ed07170-53209928','','','2025-01-19 10:00:35','2025-01-19 10:00:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42013',0,'cd-form-entry','',0),(42014,0,'2025-01-19 10:01:57','2025-01-19 10:01:57','{\"email\":\"kmfitness02@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"2\",\"currentpostcode\":\"HD9 7EZ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4WhmJ4cML0QC5RKo--J3O1t1tImI7tKss0c77_PLrjb5T_QfU1Y7v2jYrAkEJkSA0RBADwLX3M-jGyq6vhqk98KAdpDpvyenxNS6oCuAXbI7m5hmHVM_FdXkmZyezRiCjLC_hCws_-Gmy6ZANZgk83JfsSadsKRWSjEq74htpkdWv3VjSgyTmbNEGCezJNRvAC7XGr6qV9LN_KaxnFKuJQyB2R-K-uoKUYMZy8wQq4FI-NZ-aUsHKZzKU7Mw-NRo11FaRzyJEgWo6hgVFTQ7WhCGlxWWWvBdLo12wbJIPYzCSTJoywQ0MrLWXzGSsQNl-9ShKmGU2zWERjm5VvYmdVU7yxtqtBOg_OFk9-tEUTV7bzWQC-zVweM6sPWyv6jtm9vnIrbwJ84YdTJwm1tCf3H-7Y2T7ssYsp98W_oEnyrcQGxP96pR1XZHpmKsc23uX7MxB0G8J-Dco-ILnKBYOlLvxautwghqzOZhaByUvfKmEE5bpLnLYA3Rj8wB8wnstCHcLwHdSgIpTXw6sycmlGZaJg8kF7XLnNTpnhAhVtVq5xEX4fYXslVwcWXJXRniIZIXrnju_sTJFa1HSJE16VhzcHt0k3mFIro9ANBt4_tnCvFsy-YgODH5XTdEqc7NF_3Cp2ZGwHR9HRFWlZot2yZ9E8oZwvuEGAYexWTL5iTVHfQuMdGwskCdloOJDTWM2VWvZPSaVqk07gZ5QWOPAy812CM1MA06om_9x_6IneCtHaW1jBAx_fVU3716JieF65jfV1ZwSH1DpWR29hJRBS6dOJsUCFf3CxcgfNQZr0UFIvpUmqOUfaHTRrLvmYf1-KNmJhXrRQHWv6Brz4LTkd61QeZ_vVj3fKuCrSKpGxRcjPY86KGtDw3YeIPmR5t3zEvWKbRI9lF1D0qUNMY26qZK34ySx2VakmHMQLyBswQFCZ7v7XsF9utJp3qKzYquE1hPop0AEe4ZuWyTbpnbvhysWQXFhLjXlwSF-mTUbPnbUQ7LW-Kw0KcaN36YrjIY-MaDckTLrYllXd90CuVMGnhacnA4FmBh7xTKYqOZwR_5vOyVvfRPjnw_gJvlBAme-KdC8s1XrtdjrMUA4CTdnj4KQxN9rFfD1y6HxhvMLBpJaHhftLHuIE-DRuzsO1Npu46doqAdzk-UfLo6XPXwFK8RwBaMY2lrilahOVC7C0NW7vTogC75XNI4GNqJvq-Hx98OjPGZuwt0GDS4oMblFX1akK-Zrf5j8_ls3ZgwOmsfrJJE9bqupycXIBsZXOb-fUJA_D-0SDaJXVOKU3ekxa1WrPgvLTP2UyBTDWaCBskqB8sGhV0rinjQBb1Gd6UWqg54hS3dRO6AFYWkgoPHm0rUgDZb9tM5aghF_jk7o7pWPNpPgEXuxdCDE62ykK3sFSI4JxOfdrT6sdXjcfHmE0fZnQGAynTZ5nqgT2q1Bdl1LJQ1Lw9g60Edv_5D1CdExjehbGSU0rmGLYLzpbKpe7gOaVf4kJNoJZwSlqy6ybr9lzsmKUSa7eBFm85ymnVgvzDfVCruhaW56-JGMaaSqPYF595xUrdY2a_-e8j01wNkpc8kDkEvEkVCtT3wHrD0yHRImCnlXzvQeh0HXa9b85XzbzGA9MyZPRaa4Z2tjVbhptXoNNxm444x13oKkAVslZS5fwhrP3cAKGUZteTSoLTzEO4nfXnI0qX7ZsqXfc4G8eaWjnG676HFQg5xFIyW9012224jLzYHU_EtsDEOpJ0tguz2ab8uvrmf7qYup3wQJgLyzffJenKjrDNiFDelg4aVIESjbMvScVQhNnIwkn-zfq143Ced3j5RJ66wJ325niyalxanZKmwXlCy6Znmv0Vr4QjhDOaQs9F7yMhBonn4Lk23JUWlN0IdJw4fPYk5nefC1AX41Mi0_M2D4RssPmaBA0ckhqFHfUGQIUKa-gcDFg0OFH5ggNoPrtwvPmitmaeGdfBrHXGEoSaTdXtAYazdBtWTZuyI_EIkuj_-D43_yhI35MtuRXRQFylhGD4XUUI-1XW8JDmL3bWChknkmyxhiXl7ORiytkLI4puxhlTv-kdJ7aQB6_G2mdEigzWTR2RwoMYDYQBeRmTWJO_YF3UmWMz0vwjLWizi8TkBW9LlCPBIPBwH1eOwzO_Vcuj3CQIM03FHr71WIAfdyLuT_QQYyhbyJ6DcyJU-vIOLW7VF8d2TnJuMTnofYfquoNhJ8REyNCR5_Tc-lUDvAlE04oHtYncBc0D7GnKghj5qoC1C6bes5EUBmdFIvdQ7AJebBY8Z9JgqfzLYXivRgU8rcfebhl\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\",\"livingcircumstances\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678ccd6c085dc2-06156928','','','2025-01-19 10:01:57','2025-01-19 10:01:57','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42014',0,'cd-form-entry','',0),(42015,0,'2025-01-19 12:45:36','2025-01-19 12:45:36','{\"firstname\":\"Sheema\",\"lastname\":\"Kynaat\",\"email\":\"skynaat@gmail.com\",\"contactnumber\":\"07437114974\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA4rK8BhD7ARIsAFe5LXLx1Glfii_IRUlZ_hZr_BX3FyVG2Jdj89ft3Ny4T9G6vwBKm6zHNEgaApadEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6iDrgXXGCXI6rXdSWzdzNHnn_JplpIZjoINwM4bJgPft8JsMjUYAdWvU3xp-_Wj7HnyvAp1jn7JdbAbgrhtJy-ZX_cRr4ZsZiNkySbcemhaW4zaToXXgbzIP61gsyJCnMtadn0TgA0u17dCLt2Cgr1GCgt2SrqEq0XcgIsg5ufENhNxjb2R-avVzLYRqzbizPd6hx5yuiLAxd6cZd1EhPepno04nNhZYAMlh2-ZWjcpI0ag19Kjkarl6uVDEkoc_snnOCCDDZjfLtotDhMsiCU1_sHl6NVETvOzVpuT7pGKXOt_OD7E5BaRRDXYAIKTu396ZFLpvON-HvocfGVSR0_LOKttXMCsd97Ap5SBYIlFcatJejn9DLfy5YRRvinnXpm-g3kw_ktIeHq_oBQl0CE96Mo6lScAJD7MU8-DLk_buX6hU6MRWGUJAGqp9OSD9KZyvYunrB8uLQ8M9GvRnjdafc7mj4jVztwajP4R4FEC6MEzt6bsWFY8nDzKwXnUylA7MtK4RrZZTgn6Qerkd7h6Jfi3--J4VEJ_YuUpxy4PCVA3GzFumI1QccfS9nhhivk5yf-WK51fW7Rz7Wf6CXUNAiNxao143y6fSjKWK5MxMTROrJ9kEzkaEQQiOe29EUUIdWJxza50aBpdQKh8QsXOrEVD365ZutzBEkAtWekgq4tDpo29eTGJyuk46JxioTiEN9IRFZnKPU1PrgQuXLvrL8LuWxrByUxxnt0MRRazYOTCX2K-sYoAXZ9ilNlRfcvQ-CR_8Opp8aDNqfzzLtStRMwJlHOi50t7aW6EzDvfJx5HeWOJvhCmzrMHblC8c5nP7u3To1rM_EzgZDUMgr5bHCCtdEmIkiwaNrxU1_9FsRFcnzXpCmMwwQXoeoy7Gkaoqk4RL1qX9cZPyGiQg6tF7tVw-9zEGkkTRcT4MQB8aYLDjWA7Ch7hLXVR_U0klieO1jCG4VrcOGMNnbtfiu-fBL85F5j9wMDWp30UA69XmSxPEWzzGzGrJs8mvS4zSLVXILkG-4mHD7wPKKmHhs9mJfuPHzjkcK33tk0WO0sjgDFR7ngo5ic2LH9olRJUtBckW-4fk4LBq0jX5zMU7RQboXVGfpXFl4XaLG5XFmC3-INmKNapXDi-rbDbsK_HbARlD3GpyRxtoIs15uyKLA-l6cAHghgft8zfG9q_3gtRAU9Ph1dTnk6QB08zBgvXCQXAj8vWXf-d-uQ9thZd8jsQYK_3syTUyeRxaoZ8dbZG3lg8lAMmZzxyNmJd_UUGBO-wkohQ_Xqx9SQ2G99XDwvyiAwVvPdo3P-I61notZzPtRn72omq44h7CEg-yZpwjC6zisLZbGf88zAl7opfP-ZicZE8cB5h29--I6AznAG9LmFvNPnQCxPH2w74mMoJsGjrisVwyIjEOpYvnkLajZfYoZGEI-tC4sTtoqMSV6sPg3SQqTSJkkV79qK9g5uWgE1bWnYom7ZTvctEsw0_LGe0S4Ix2gBZTDziDuZ_s0qRLzn6EUGbUnqIHTfJIjgaWZw1JFKL5oERTU_K_CAsN5LaWjkNUXmYRbI98f3Bqn7RHczp-526_ACMT-v6tlUYexjc1iDc-72CgKADOfMk4Kdw-qK_B7PP4XylyBZyNZAt4Q15RLdzfzNNQT2bxUrcTmb9dUQhSoxGeOaydqYbCZhdiRmEy8dZwCgHoJWx9ECd1Ym5qyIpzbQhI-1u323k-v5zXEOkwfmZsi8OaKo2cRK-l1mIVM_w6CMuJdPNStNafKB1MJIS0j3FjL2qxmtcLiKULzytGGNqc9vZUe5cO5feWPvV9Zdu6mChwM_uutDR7z4p7xsmywtSeDlW3fRbUt-kzKQb79AexNykyvv84G3IJ16tqsu33UznC1fL1FoMCZJD155Y42W48ZHLDQxk6rHJgyb9FCenTj-BO50VPLM2WaKzlpruzQREalszBhXH_FkE4Blo8P2mxNWvD8voJDjW6ysM9ZQrT4DkpUhVJ9Iu-rkvg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678cf3e24ff928-72749799','','','2025-01-19 12:45:36','2025-01-19 12:45:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42015',0,'cd-form-entry','',0),(42016,0,'2025-01-19 12:46:36','2025-01-19 12:46:36','{\"email\":\"skynaat@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"1\",\"currentpostcode\":\"BB5 5RE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA4rK8BhD7ARIsAFe5LXLx1Glfii_IRUlZ_hZr_BX3FyVG2Jdj89ft3Ny4T9G6vwBKm6zHNEgaApadEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6cEE8Nf7gAkPXLL4toYN2u_s7_ifgy-k74zWPi9ZBHf2WBpUGi0yKDzo35qWFPYhl8YKEsDDBevosTj0T_v-Yp8nZBx7DU7j0MzFyXQVvqKxRZdT01BV_OAnvM-N_QoJgVf5gbTRnrhvZo5QD4_SezA3vSoLmVlcfJzbSw-XeBg_3tVi5mELvecgH2vnGpagO9heON7VdhRBqME1dlUszVmYvMb96en1YJ5zVlbNsPteKzkXHbgyuzcH0yg6x25gOL2ixL59AWXLZO7RJVlMWQW3v7zBZkr-BNJ0BNCa6m3jJrCMEk9Ci8QFQLGj-6Tczeytjkr3uI_HM7IAUX-mDtHIpnEI0rgrH7EeSWseCorJnWyeDpLlil9reVPRD3O8gM_nwBIyp2Q_4YTrFx8RHo_YHXZIOmD0J7nWdolMlD8HaCOEjIgWyDae-1LO8iBfn3d3E9mSvuJPq7K6B9vtF2ttsi8Kopsb9B3WeloQ8c1oD4q1yy5Txd3nZ0FPHnmPLVTJX8qlQHmGG-S3KXOgUIfitXhxQ7K7uB1_FNUs_eFXaEiWCIKLSNMAa4xLt_5qAD3TOKa3yi5meEyFPUKcYOxpBoFnai-2RB21DXxTIXGlXp8Roo0MivwxT0ylfMVbg8HA7-0QTnlNvSrExOXBzOwCYmauVKlEDOJrjKjbM2gJSQL3VH_CBQ0rlXNCAoJ63FrLvaQHZSGbR7v3whHkBkVeD34Uxl87tly9sCF6-XIJZ2lezMQUos-qJhgR56X6aYDbPTfpLY-W8yRp3vNs23DlOpQfz5l3aY1kKIkK13gIbQp0Q9BhK7w13vOvg02OYFOS34XWEuISh3UNne_guglKfLkJggHSkeRr6Eyk7_kRNDYA73MMl7LKElaZl3vcjkcKtygLVPZ4IKC3B5zGKDGCTUqbx9Mh_XlwIWoKB8ofzckgOwpGgJhb3ba5zCYTYhdM8TTt5_Rl_dbF_BM1jq-NTeHItGPNLOPQVMJlMGIMRil2c1CIAjunhgng85eN1HJn0CJeSamP0DN5l82QBNvjeN0kzzADQaHyMMS9Sow40gg6eRZoaa2-Lss2QC20tIFeTUfCCLyOPYPJO8AEFMhE6tOkZOlZOxBQ-ALzbS66tQqdbO40mLtetcqqJ0bQ9y4GKAmGZeJpaSN17Trk0VSILUr6I3tQqvN4QG9v_fCioX8LHom9Oo9ARYYlLkZKvOYKzfrwkI72w1rigZIxfQSFjVkmWwHOcrshyNzNkyxg2fZ2X4eVpoNcvlVnfgfV1q1nN6Sjv6-MeJA5yOMAlMT8Gbo-rf2xrXCCgBHwa_yQHGiYs0ZEBje0Jk4U_RfNvzY5wuMrdCzd4HejKdwpvkC6xweGiFYY0GecQlY0yWx_EY8FFPNGPPZVGd6B3PrsBobARBm7P4_lwUEQA6HIAZiXZJhkqCcFQOk10y_2yNsokVoEZIkUOnmjATgSMm8vN8cF5aoUKWQ4Lp370Z3EOWxnQR7dzix8HvWuHkSQMhVsXkoPNwWlxwVlDkU7msgMt1dVJDsMZ9XafSvtBH0AhXHf7ZL3jaWe23c4Q3DPUNavS5BBkgJ8tbJ6Byj3QFQ9Xs_68GoPGyn-PJlZc_XhJKksEu8U_ol9nheV4IqyhNBa-xORX6BOATUFwp41qxs-5XZOCat5iPpB8RSIKXy_C27zSpSm4bGNTCp8ilJheDGvkFV7W92YMjiWWtzuLFrdafKKPnyw-99W0rIAtV3aAbv5gXKIKIYdKRMIHJKol6U9wRzTSNnS4N7rHvo0NqiberhQ5dhonc_w5F7GNjfWgKx-e-WmYC6xA4DLbtQYX4Z8PoJW5mODVNRQb4T3ajznRdD8nzp-RkyYAHK1rPSaehTNyhalvIT9fsnrbjVUihvcOnTDMsfUPzxP1bk8QAk4c-3lF7u6zaMfuXsFdC9Jp9-jrsdRUMXN2ECe_MpnxVADZZGPO7rkDdNGYQzshOnLt6IGZX_U6B5PuSFnLfY9zlJrWJJg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678cf4170b3d67-21364245','','','2025-01-19 12:46:36','2025-01-19 12:46:36','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42016',0,'cd-form-entry','',0),(42017,0,'2025-01-19 19:56:09','2025-01-19 19:56:09','{\"firstname\":\"Jessica\",\"lastname\":\"Hudson-Davies\",\"email\":\"jesshudsondavies@gmail.com\",\"contactnumber\":\"07805827540\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA4rK8BhD7ARIsAFe5LXJHH64tB7H5YZaii6J-a3yz1NxRnD-Zf7PvHAvPY7_w8HJBJ1qEgW8aAvsfEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4SDY3bTVtRJvDe6MSUR5qrwHbET_qEknyTWecJbea74FzkX0fnsirXfuftCs65h0gAu0Fkf_Z8yoi3ClTYy_7UR5RKuh8qItYyEOU3e8do1SLn85NOwiZiIFXX3bA9umc0h7HqPcWc4Sj4dSBN3p2fGwFMHyOc4EaEWCGaCEUWmSmC5DyJvvr0rX2ICriQWsqx9GAMO7t1j6iEOQUP6tW1FKHmvBL3c38VfS-ajSRv_ankAO8LXPVbAyTB93KzR4Rm4SlVel6rVqYN45fccn1eoLpn-Ewlm770d3BMEXes9hG-z3Mu-GP7bISyFCUkwOpkVe6pyDib2O94VpnIEHvuIuz_1BdOrqHsjzXhhY7D1mfGPIuE7TXhOX0J-U6VzHimj2JlFaJa28OpycEPe-d874tPtQEvxzGQLgITWpCj2gesUHtw2-5n3mCrjXXlhs9R1akpzuAEoAGaZkACJ2DYD2HB3U0zPFZcadsKqbtpMZ4-Dny0PewAQGN23Ew2dG9Ii0eOtAxgFxrJ7RRcmbWQ5_hQvdpqeA3RZ3Tkt4OFpde9wO4UJ3NZHhea5ccHRexEcWMFVP1LCwG8MPqY8aJMilET9KJmH83JCjQVkalV6L5M_iTGPHvCHs0Y5YkqHOVFZFEb0dSe4G0Z1dxgTN6nm59bTIXcDK74D83nTP_0s75w804ROezL6y0V5IFUC5piesT9aCDzRCERgnoR7B4gh1hxRBfP4F7VmPK1CHR4XmPa9DIQU7lwWDyeeuVPeJ1nDA_t63Ss74OO0eOXY71DsOZe0rTtxyQZhBo3fGAkfxiyHAfxgAClID-rzvEA-83_CYuJjBJlo9H2Vf9oQ7cUb2VH2BotyTsU72JElqmqXYkXvUEKFaKUC0Qh3BJWLF3k66UqS1gmr6GqaA_BKnPr0QzPIzrkYDuZppxaJHjRsqsBGzsidm4Fv_Rn-22jgJ57LGMzAMPDjtPL7wN1po82R2rNtPoaxRVPheBNlWGAmurf-_xJFVvGtDPBjL2r2L9BNNN95kXwT8cZsToVIcMs_UiVzzU7s3ReiFuvaXb9DlbSXGlQl2ehuoxIQEgAU9DDmznx9K_1l0NU1euiNDhiBkV55ElxsyyGc6zW_yhofzs2OEtfYpIlRtrd2An1rKaVx-IVrdPckAfT7ndYToxH0gJYZQ8VMbuMkvTs3opsGb4Y0hPWgMdzKt1l9RVoMsDUtjLQZk5qB_bmbpBv_iFqkwLpF7Y28b4tVt54IEcIvmEFkGgj7_y072cERHZciAiBVBICHsrP2jt4X9amYcQxJyiGBhHKY32s3T-Z3Ds8xb0lTiTDserJ3uo06hDnjW05JBVVj4aHmaHMyV2RIYzOObeH0KAEVVLofsnIwU5pb1nRNzeq3sDs1xdiYpx5Lydv9hL0sTUKWmSabef2WBA3ELh7OLmcn5pKLBF52765e3FK87u1L8xNtBr0a8LyHMp3xIx_Z1hocCx5oBYh9lw7zzSWi-7BayyzYpcW7xhrgC4j6nQqYv-EgM8qM3hwlsvjSVZ4s9oMuz50ksSfCuGo5IXUSUWI_a5e8W9L4JFH6qr00GyNrPs2mMgJqppqTMuUMgsgw_vgEYKZnMDsRKjENN2WDFXEtiTOjKP5XJWS_56eBq9oEu3LnvAzWjHFjjFGBBpxlQeHNbgdMPqV9SwcNkNDNqHhj0jWHXAzI30od5MGwgzWXU1e5u_gBCb8_9BUyYSNfC9228Ubdv6XWlMckD7PkXIl6LMSRTwHwf8CswlJ0p1OXP0YAdXH1DqYIefLZfphiAu89dwNw26bTs-yPZhUZ_Fcjc8k1G57uvcfAaW65I9ZUvEpYDJdn8yrn1YahMYUTPYCJQyWlEDnSSVaZtj-GGIpH1yxcmJqT6Jq8fKi98nNdGVkjG6IvbIypoPvmZMaQYes3KxeE1nfd1eSyFg2ezoQi8NNpkEGFs_R0rbgUvQBR00rWl8DLB05Ywh0RG7ymSfS-9m0Z3g-89nUYRLzIw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678d58c9964342-71474319','','','2025-01-19 19:56:09','2025-01-19 19:56:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42017',0,'cd-form-entry','',0),(42018,0,'2025-01-19 20:21:19','2025-01-19 20:21:19','{\"firstname\":\"Michael\",\"lastname\":\"Manley\",\"email\":\"info@zeerstherapy.com\",\"contactnumber\":\"07948469157\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA4rK8BhD7ARIsAFe5LXJ4jlR8acUp1wSKrOpwsA7I1u6-X-IN6ne0zVrZRY-8KlJvmwf4oPUaAudpEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7jYtYYQQguu0r-E2p2xC6UFRi4bCvgWdG29w1xG1oAWSru4iDZgTjFNZGIfP1lH7x7VivUz2PMwCGSmCirzCMDS4f92E3dST6mm9u3bI6vN7fRxxvp7UC_-5q-tCdaQqsjechGv4HrFTQATlY6Yp0tvygH8e1YFTQAhlZnyBNAk-jIUeBURNxTv4SwJw1a_aqfe5HjjZ_zns3hFddC_sj__qKjX0H2bBtHS-D9hCaZhIa7eskIJOljG45fji1IJ4Dv1_eVaVxfFBMavQs-YOkcVsOFxXS4OKgDSpt1ACAJakHKQv7Mnf9rdQozaFgmGVMiUdxLMsybOJS9bOM9d9Q5Seoukfo-_zcR35oTud66o40jjcsyU95j40KS8VJVDqvegFPSloaUM_rayCGtQsoaPrtyHj0hNxJOrv7SinT2J53Vy_5xo5ceYmEHk0G9FZZFjt8NtveS36ilDLOQlG9_uE2hEO4OTD84zlM4MBVnFgiyQGi3Ki0rTHOuhWRnhtK7cgM4hrKN9KG6xT5QZCfvUQsMbodaxCIPskaIcPT78D1aMnkm6y4Cj_1lcGwAXZXSTpdEwdpr4z8_y93sBQOyi8q-j-X93Xv4jprdCyNp5ve3TD84lWjTMceEF9qrteF_w2qUYBhXykFA1hbRnlSludealG68CFKln70LYPPqYXpIyPifixLx3J2orELl--02HX_yeEvDbzQQxGljQES-xEfBMlw7lLD98YlYa12KF_kBIyLJCnsl_CSCKVcHjR0zmpcdN-tuq80CTH-Ia8ynLMLdyMUaMmlilnZOw0CpB96nCDZIWcTXVTUwQBmrGJPMOrPzR2egrkOEqrTkMirEKCOJz4WwmTHPuUFpmVR7c7wY07b6MZPYR4vNubcb2bzJ7dx_c3wAW5vAjetcz9UCDMbadhzk__1Wsqshy5ohQodkUpakiBOo0P00G-D0viia3pmxl8DEi8PphDpaASu5m_NWARC2BuHMOqTWP1yJeMHZyDzvPpZS2FAEh9sxjJWLEHWxLCAR1-w0uj0uOtxIKwlkXYlaqrOt15Af4fuPyqqDC1MXcC8Tiv29NhXjbiIAhbJd2OBAGR3vqg_FCOyNcPdl50kdLU1IbVG9vuY7ecNVxofTLQF8v0lV76StnJxsYJdk6fGlnNwUL1BoQcc5sAAsY5imAZCLbAxoEOcCsiKLxr3H1EWo2E_eiwTfgOy9-WNWSnlZptiNhvBUv9Y3RjRGM8ztlLW37nap4KqcDekFDB2iNkWtIRElpaJHpHrDuYWTpSbj5lprHcQE22cWjCHvgm0_1lvtViyrKvYroMyhhlVmpASyPuqLScQ6I3lxmB8dkd3khOHwDW7yV0BaKUK7xUShICmagPpi7pGEYpQL4kLkXxAYmcqy2LnD2ie2IZwsNO3WA1kzLsV5XPVtelxWRwS7PMJC7zwmRFlT6Z44oQX0uRRr6giBIO_VOCPHEXbrqenQTX7evxaDNocmNbVBBP3ZLL4-R1V8nTvqBs5PHaKLuBQahzljcwDiwRhuumlBKL6ORuqoFfJtMj2LwIxsU--SfNnBNECMTLItzJdQuA11RLrHTCVbHfAnToRb7O8Kd2CMGzClkbS1N4XkFdE-VNuIU-k4MAQm90Gbr3TIlQGbmJUjy7U6Pg6FNRpJjgx8Nme6W_QULPpuV-BOLeSx8xFIfoP02ou3mSRnR7BRCi-kyaCOjG6qzD2gCHmiyfJOMqJ4jpBPavAgfoeld9q93W93c-ji5t4M3sgK_cxP95P7DlgzNixMA_53Niiq_ElFo1kUjC5YwWblKAk4JLne5kpGoje12Eq_9W5UejvMcPcAgOEkdYnfzsRwXaj5RdgVqt6ACg0w4gevzfm_5naM5w2uesi5ZUd-PMghXm2JZxLFEcZQi7BVb4RiPx79gsNQY0RkHBENnumiArW2m08HSr9ZX6oYFiwZn-jBzx6kEwU\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678d5eb06baf26-62887151','','','2025-01-19 20:21:19','2025-01-19 20:21:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42018',0,'cd-form-entry','',0),(42019,0,'2025-01-19 21:04:48','2025-01-19 21:04:48','{\"firstname\":\"Aline\",\"lastname\":\"Helou\",\"email\":\"lifisiofarm@gmail.com\",\"contactnumber\":\"+393515246117\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7b5eMceYQGqAnHJaYdgWEs0jghRi3R_VWLaf3F8fc9-5pQXmnZU6NkglEkz5pXh8iXrgLlccUtES1cZmWH1lbzvnLmmBiabqfBen-BLjLvN5CQCTB4a-cI3dHctqXJH4CMcA_x9qYiAIxXGKOaFE2ciRXloGaiS21Q3BqxvTMn7rxEH6_AE021AsETKLHjSljQsxtolBjaqMKe4jZh6Z_jSOCLRW63PmKza3nrmLatt3F4C0o0LOz5zjBoCgNUrZTHQtbX9b3P9VL6EmFTtK0o4dBmfgugmhT4DBYt5AVHMJ0Nmt64QlNXZodmJZ8gV3qOoWezONhy8tMcSGmoxGa3UnkNikJUdK1ASc1lJmQLQnbQFXm99W66G5GTIbsK223CjrDeP8bJ4biAT15cQIV10W5qMQUI51IVON5ybUo10ZUAqHxtbAZNy1zY2_8mcWMq3PWGHhnA_Vn-i-A4JB-AVoOMkC8k0B19H3RpE9A256MGZnAKVpVV7a4Kpw2iT4Oopb5zGXZ_J5wimDPXm1KpdsZDFpyeNOkMBx0xm7zWKgrZIaL1-oOCgXUwDYuyTtWF5LnyscqRFYUpB0M38EsXJvIvEKjKqdCURz34mCcJ320H0iryYJUgl-DYYOO-ICU2PY0RWVz3JcKw6JbQA1g9vDrkWXduP-p0i-xqyZSz-qpAivZpdNIHjA6RscRlmD13cSL8ta2Ri9MkdzH_9wHPmPP-GC7xGWETe5GE-NsGsiQ_jtmvIaQW3dG6hPIw59VvbgKMgWt_P3i8cJ5h9Hzpnjip2vdt7Qy9WG_OkGplyC0s08CO2B-qGgCZOs_AfYjNQHq1iPbaVAYww_-Npu9eLXrlLhKqAUqMmjw93aU7MJigYgHYtDekSiacQdGPQ19rJATt82-gTONZmJgm-oDP6KAOCOFo9gZ-so5PDndHMqe0q30KzOoDPFFF-B15G3ZcW6sHq58pH0VXC4YVGcwoTWmZ_1b529oqTzCicneb-IBsSjlOIgQSPY8dXMaRkd5pIbhxNO3I4Jrhd0GxNIC8plV1whQZwMktjMXufJVwP8mZSU3jIwuagbWs1Ps8ZSZcgIp64wn8iWRCk3SeaD48x2WC5aisx7XrCz1N14ZOAian4rtDqlpRlvxaoIjV0QFvyLZjB71MWRhBL2CsBZJpSLBHU4Uuxz7IliOubi4z_DDa8b_EG0hjZXniaqEVOPnZwGDfQhkbaBewrLBUZE4e7ZeAEc5tjTuXCY0KROSlRhgOMIrue5uS-j6Di-fGfKDkpsVFJ7lffJFUybnruPpg4ZECl9-Xm9u0czCcIDetuybqc8AEY071UD-V_TLQtv39YnLOnoO0MLZTOOalQOfuyi0O1K8Poi69yW9p6nX8f9sWWM2PZ4GVQfvm4sDPb8ozKuoyomRBiAz_oQA5Fg0h4bOVk0HtidCTW3jAOeJhsdWNPQTIYWaz-RL2L_x0qWAnEpR3cn_VuOROBZRJlhgJE8NYLovqlAur-fPch3gP1ZrsUhpcDx9Ep6y4SfJxC17QbTTKgOK6ONlcowj3Qjb2GrCR11XWz5YllZVeIbnJgm2vR4pyw1cd7FhCG_lrztPUpprWePHcEjInHVtafOexrnlXz0Kl0GhGL35PR-Ujd7B63w8s45A9vdsoGYa6Gj4v1-4xEWW9N5taoas2zEY5lVWM1SK2hpUQ2HG04wKG094otTHdHqy3_cyTLAHcsiRsn5WI5H1NjABecXWQ5Ryt76jEAJdD3AUXMgGn7fj8FCng2mjP8_gse0Ojno2D-XHvAOZ415naINAzWo_tWEQMO172vf4CAI9VXdP8TI82OKfW6uDn18KG-icj0TJwA13Fud5-As98zFwuEGZ_-oKkCoJsQVmiNcDLt1D_9xxCn8WxsaWQSV09GAeg5imBcDlwSrS5lxwgv9p01dIrnOant4fYmgYioLKjokOigL8dxMOvhLIHbPUhicflghoAzo8OAJpU\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678d68cd72f8d9-60825178','','','2025-01-19 21:04:48','2025-01-19 21:04:48','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42019',0,'cd-form-entry','',0),(42020,0,'2025-01-19 21:06:39','2025-01-19 21:06:39','{\"email\":\"lifisiofarm@gmail.com\",\"interestedbecause\":\"3\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"00071\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5rNBWGAx0eMAi-8tN05YcN5SliEpzCvf4vFdJa7ZAKGSCoR4eP00S0hiyhvSeL9gvisdt3m__6OtuSjlgd4HlKgO9HyC-w2oOHZ1-y8HMfxPTq6YE7WWinur85WEx-L_1qVfXC6UlXms1vMYwC_8Xy-NtBRuxv8wqO16m_PrYlQ2JYMQ6K3nIun-10CvAwUvkAhDT8PIqZuD4aSNuoMkBcnv1HVuyPiv-SUJhME8XsvedC0LWhrecxTuv406R9GY9OaIeN9jT-AqqrxqBHxs8-l50TyOUowZRAGTebYmbJpAmTBNFYKloOO8ZsNPlaJSlWrkx1fOuH3gXCZwkumXI9ezC2ch4qLnnxiwV_SyW8U6sV1Zu2IGRHIx-aLdQbtZu6UqBO0v9zy2cxR8Dd_zp3NxBm1c7UrfI51XXr57XRYuw_NBbZbUNTS2CSEdaWTOxxc4QbJPsUO7i4z5WBSYHIk2UpeLRlsvHZViTEBM7J7aPisjrwQix93GRBu_c-UwEgoJ3bkHdbVRGf1qaH70wkV0UonnLSHl0mi2uZ8rWQtd7Q5dTM-w5pLcO6Tsaax1US91f9LieBpUMBYf_moXm18X_zOPE3cs9WirNuppUqU53YPrfwu0hecOdJxT8LU-B-rpD1wEYG5Tl8vxX2n0nCQA_DWqsMLXp9GFdVQdeK5dLtltG7_nAFEOqOpzNwqVmj8uH6nKd9GOlH2WAwM9-755FW4In9DoFKjEhZL6iy_LQAJyPbrx-RwE9ciInEnmLO4DhK5CME5ca-B2wnYIzxeWijPiFCWQVB5fNPOInJcOf59j0P2GSVsti44zkv8ixIlkXSYeWFwVgoRrAWTHgK9H_zA2gI7W3XiAIpVT1byxbXqJMH23mw6ol9eRDH2Mphr_9ylhhVolB9vS9q1XSjo1Ksk0I8A-BvgbKp7PlQuZE6YBjel4uboEyca9z99weh6j0WmuJZG4cV6s8fS1l0RtWi9vO3oCv2_iBLcaHtmCpBGEtxPgqNLZrkXGnWX2GlTLgVF_eMIQX7Cj2GBgL4KvMDjvq_P5ZDwb8SOQLeJruZrO4g3jKipXWd9McyQC3glpANOHoExj4lluGUC3Sg-KPMRc3IQtVNEo90YBvkzWdNu0sMkpgvZ16-16bjxmtx2sK2wNIScy-iRqzb2fstk2vpAkfZNs_2zU5cq4eQNnmz_z2iEwQbS-yChU53hYlnMQnlFVx8O3kVk8qe1J2cAgNPLbVD1ySEcawt0nf_04BDy85_hhw7AOapPJrYZL09haFSYz3NGk5RkvOmwxAn2Y1wZlXpn343D7BYZeqmzyAAyRNPiLARDO8YZqO1ZsWL9beFI-Dg23KgJoEnrP-f_1vtto27oyEdPN7z20Gf4ZRty6kviwst9JoPB6E_1GdXGlnRYFh3TkQJ-D6ebNvlun_8cjgtfz1edyDTzFXUHYMf1itF89C1Q4eFK8_MR2p4X1V63aVLUrh_Gy3ZSznmTo-QE9f0ijqncwQkiFhwfF0WPD9V-5TbzjVE2sdDqR-VBaDuR2fJBaSjf5iBYz9cLtZ3nogO2U3ZEBjbBw0USdaR9tBm-Zetfo2XHvzgX1ydrbrM9bdA0ZaWW9mMrk1YJ7k9QzHJVLVRFfT0lZsOT-mG1TsmG8qup1y5-8e_uE0_e7ULJP0COku_83t7Oz1VE5q1lMAlwFskfIjrlXhXEVOPnZdIrLcUr5Dm7jHsz9lvbMdHtZo1dy7AQ9NmflR6gpian9hxTHdwmzO-5dZqJ65FOEAlHpAhqySvRzuQmzZM9adVesQ_IBK10eTZggLBt4gbUKq9ei3_Ar4xgMZkAUwt06CnobaivNF1GfRnWiNA8u5-VEWndiSvR7hipyqVXnHUnhvgzi4UZ23wAXwvGxEymVmKfyMOuRXUYo1St7rR3eh6xsc5hl1E4Uui__qIphmBnAfSnaW4wHxUfiBpTLIl0NHM5JvPrz8D99rR1IAww3kO\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678d692bb0d607-50519863','','','2025-01-19 21:06:39','2025-01-19 21:06:39','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42020',0,'cd-form-entry','',0),(42021,0,'2025-01-19 21:07:21','2025-01-19 21:07:21','{\"firstname\":\"Carmen\",\"lastname\":\"Mehmet\",\"email\":\"carmen.mehmet91@gmail.com\",\"contactnumber\":\"07803409283\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA4rK8BhD7ARIsAFe5LXIYP0Ftfgd7V0ImGcADAVpV-YyLugIXk4_bdeYTXZB3VwfV5P1Gu3QaAudoEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5S41IWgic3pecqqaAmCpVbDMlipFf5GWpKBkP-ATkPCumdRRifhbCZkzA4Ni0v6vEdmcf0Ig9YwZTd4woF42IEVQDxjK2Vak5nJmmHdfGmS_8KMi2kYP7-YWxYzapyu3NJXgLYglfIcy5EN6gw7ASQEEm7HBhY7xy9-Ufu2dYeLlddkquYF0Dk79IQ_MsINZ2elMb89JJESwxQv9jmkyLbtp12URVLcAWC1HoysZb8pvHT5MhLggLZDEeDZfAYgmDHuIMpOuepdbU7cm5H015hl7gZlYj3KhND1RPIf3Juk_9joZ8nyMs7jOjTt25E231MIoo0DL38hddwwxQt-5llsBHHtlzoXzl-Sy5j0JhSH1YhDs2KhTNpmE09z-gVE9MX4Rg4dyL8ahhG4BbZQ7bG_DdzgiEbqTWMK9kGriN0vT8M0hifV6AKAcMhfOoCrzIvF1xtFUH5xU7AQjitlrIKf5PVVoSPjMm2T4D-bLqaUo9SolDNPDZsXlMmSMfpLFKo7JNS6Fzz6Mg-fdKtxh2_qSy0NWewCTdA7f2Pg4AkBKVUjJhtyEZVzsNoGEps38O7UzhYL_B4ZH8vpHC8Rr6EQ88-1_ROdrNBQUwrhnB5-ivM-MuTLc0MNy-8-E-ALPito4gogkRBhdbhc_KZ32DP25QrGba0JCOoGn_iqeBNVK0EePea_Pfjge6pVSZUhQl2-HsCAklAo2X4BFcby0sxwgihwvp3eRxx0Lbc9zjEjVm9z_f6f9UlcDxDnJ1s-uEQ0_2sWZ-WAIvNeLcobFpDCCSukET0j2SoDh7qtFU4cW0Y8nM5U9EwM7d7P9kfzyprKf9mv_8xGXvaykS6ASKu4B2Hru8cUNKSsYAuCUZyJIbtzqQP5FqpwkSvCgbvTb30osI3NTEB5I_Tb1_3rtiGEncytRkei5TTHADf3BD48iD36rrLWGvb85NnndRXk1AORfAOJPF7XSIf8crMgEk-vgAOg5n6oYx9YTuW7T2U1rF1b9BlsQAy9QODp0-E5GxY4SGTK55ABwBDr0R7JKyNm9YCQbvusVSs7aLRvocNF3RAO5LF7guAPWD2PWc-johonF6BZiO9Gix9o2XzzgW2j2mLp3kf131gbyE1ioJeNENohtbzzIHa6MwT4CvC7TpTujaFg_FFsb0I5ABqOuwVhW9S8fohw9FdnceEb1bmBaa6Bq-XB9DEfY5skKPFBAc99haVhNIsXcGym9Wbu58naNFoJqCT7IbAK5vYZRBfjW5plGFV55oQ0ABmVTVrGLdytsLpz1DyBjw-jNQIWNbyycv6xwKL1n3CHRcguluBlN2FP5eSNp7DZDKEL_ysjUOpEbEIhQZi0kpnlelQ36wAiZqcIiT4GpWDhAtdXh8TieF1aaZ41wIpA695jLyHuwJBzZKeBOblCJk2POKmE7RId5oqN3kqotLLCMEHWLV6gkJjFi5_X_KUgfYfGiFFmTnxyLhyuclhHif7M8n0X9gyINZ-M4dSR4oLmhxATIr7T4Wvt0sY0SIgdSjkItumL6529g6lo7EEs1BNl9LqPtnK0Tl86ofHKtVDCyA43RSNYpXbXPUJG8mg-ASoLxfBNyVfUED2iSkDrMp_WjhCa5LQ-WYFNgNksmIVnVp1IblN6WHVG0eN12sr-7mmejDQXvoZU-4KtLwrqzdRz-RczKfjrU-pl61qDNfwt34Y4lp3DFt_ZgWNvZDBFuaPuYFZ6nsuEAlZsz2nbp2ElhWRD0M5A6OllgnNGP_S0DPXSRzPExgNsHJ_ZXd6kPoMVIst-0LZs7Yxjih8k9LrwlEglsZNk6-6XxjBXLfbks9QWS9gV-8SsjAhmN1_UtqoHdcX5l6ameqr8sg0B92KP7mhwxiUnTYKxHs7pjQHh3y4QpbfHftRN72VRrjAjIeobDFT9uT2ttHNdtm3r8diqBSKWl0_gzTXjuOjU78lWuaLmdtul_SV25jSjvRktUx10Y-Fu_vyOw4O\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678d69782a2d01-35405830','','','2025-01-19 21:07:21','2025-01-19 21:07:21','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42021',0,'cd-form-entry','',0),(42022,0,'2025-01-19 21:19:36','0000-00-00 00:00:00','{\"firstname\":\"LING TZE\",\"lastname\":\"Tan\",\"email\":\"lingtzetan@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4qVR9jpGbFtpk1ebC6W6I3H0ta1ZRv0CtbmJYDDxETSDax_Df37ssgXEbiNHwSJw0mp9LEvmEkoh3Ow9-tAN_aX3NsG8hVuEQ2V3CEO_N0gHUwwJEsObhqfNlAGlmKR6aiJQkjJNO6dH-Gwm8ITUtYz-RnGW-75nP08EJs7_rSBSyLtgZ3MDP9MqN0SQeFkovUQTw9rXAYTcoiLj7CpXpS6-ry1o4x_QNYtVBinyoFRKq20MnyX-_9zfWzJnmUe5wh5KT1vGh4XYE01r7iG-3WuD8hhBIoZQdHE4t320gaw08h3GDW7nTuO_40avseKM-sZUJMsBak4hLvtOL1JK8CxuUL-JrXLKbUBE3x_mZm1MT-rB0qaFn3e89eWIvi7n2DZUh2Stbcz9HqXxufvjtr-E6b6n9dQ7faGNKJILLA5twh6bpn87lrkGqMijNugLxE9dv_I06DkEKggLrSgdnj20RpzhkJzfzFS-QbrhmUNmx-KxK6quqB39xQRzrfFYOvLDaRi6ZoeVxVX6xACjgQvaCOQvzx3PoqlnQGtsrHoqMh9TlignvjvpGOmgMuzyLShAog5u5ecXRbQWYl4tbZ-2zGcyl1_CwTe-A2un4iJ2pjbXl2jtOlzhEUaOHddceZXlaRT0x6oX-YgBO8zU9W9o-5415h-cGAsG4KWgb7ENJvARxRz1TlnMONpEN2ctep4kHPj5u00ZbH7iInDCizrqjeeGUWtoFmqPNE3ptKuFUSah4b-4wwkr5kVOEqjSj_e1f2-qfh3tuJFUZKFx5id3Tox3aTO2FbX0FCff7PpoyDDKr6xw6VNI7ux5Hv2tHtkUILsamVSmAdep2WO2iEXpcwXnfBDtuLlz0IqBa5ouL3lEVgknnQveudRgZD4wz76I8XFf7MuBEMgrgUdFd3HSaMDLvTJDl6TgwW36cnplQC14SHJnrBV3V6I9uO9YS6PSur1MBn0Z8iJr-B8ChgoqFfbdEq9yzLNWEcOrTbeGB7AnBmcZvkWfWtbNlI3HTvEc71RWR0Df0E8JlqpWl-kxTl898FEodU7l1u63yowTmFoBA7ervDyXJHJUU5jAy0ZRi3GqjXQbV9dSoUefGRHHW0xoW0GeKbgzT3ephBEIdaUpGSv3t9jyVTnKdvTaE2NxtV2EmluNu-qiTPZa7hKnTD0ptw_NbYFWe9xoWo7vVTi3AtPYQnjfwGlFYGNO_lXUa7KiElySMlQKR65ylSizCLjFnJIuE_vJKwVzry-S4WdxIF9ztNRs3BQHAXT1GBiklx0eo5LgLTArm5jHojZNg_yJX1Px9qjldcHMTvnvUkdPsT8G7EPXLh-3ggqUmYTyvpak__CHafvmOj2M9kDsW2qBEgqwSA50U6GAicOA6xaS7uGHOF6Gc5-dRXYHqqTpdfQmLxxTwM-AOvb8AURkAnqOxgfnxoCkfYMbdwm8m4rcbirZo2PP81Dq5wcgQI7xFk9mTTIFuIAoAkOt2s-XcJaLr-w4O7WYQJSXbFMwI1mWJT7C2qbXBVNc06RDI-kCvpYvhugRlhDrvqOSJ4kHdfDaozQ6Zl-b-MrE6yGPG_ft_S2fofKPD3QhhBVVEFwO6lHx4k8mmXFudRnFsdt34dBTe0XL0isEdttBpVsvBx_O7Lqh-Z2RBTvfzk5xNFBjykpxvwinKJnyEMf1QxQLufBkIYxF3rtGEUnLeWQMG0a4N-YtPQE7uKS8cmZ2iNM_FjsSfuAQPSgWUBXpepNtjj0B0qm4VBqkSQGONUxS7Uglv__DOB6S_buEosmYvl0OfIosz1yQWm2emD1_9JAtaiJ-ihdGyeSIOrQOCDQC6A8OJniE_TCmgDPpCeQ2O0XHOH9WViAFqP6zYHlywcRRXG7vlpmb1fInIIwLwwWFD4WAyUg8GziFbGZcx1XrTUGwN-ntAWtDG0Oi2DDazC4nHvXaODFnu4_4zWkIjLDiYdEcQAEprr6amVPytd_MAL6nOJxfrOCF_k5ynT-aPCqJCSy54cMChDsz7PQStJxsXRQKpepgxi0GlthHuLxPPbqR-G3j7CA-d7xF46he-9X2lsvXQY3N1f1r29xbX9Ye-iZlxs5a-ppJqitW-zja-io8Mz2Q6tm7Dy7Z4ziw6YlYsMS3HJ15boOBZfVhB54o51tIKtw-EFX0qtcHnIcLvysqJovrJcc69hqEdYbRBUqVxeYJ2O-gloOt1DHtSnw7jpefx-iAj8Uzuh_VXYpGmmlUh5R2O-wHMaM-MSlC93OEf0Sw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-678d6c68a5b064-64411871','','','2025-01-19 21:19:36','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42022',0,'cd-form-entry','',0),(42023,0,'2025-01-20 11:05:31','0000-00-00 00:00:00','{\"firstname\":\"Eleanor\",\"lastname\":\"Preston\",\"email\":\"ellie.l.preston@outlook.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5Zyjr34_ZM0K6RSvCKGAXqTrq0sbOHbSekNvoqBD46Xsehom3RCLzCOQUkNEe24i8eWUHV5Nb5ZtPjX_bh2bjzq__8L2_QSc62rvyAF1rWMFXSk9lnvR-T3cUkSXavyn9vAyAtRUW2YbWCrrmie3zPAFVJMWARyOE22aH95zZUg4-95liTXenqOkPnbskyDWZZdm4ce2Xf2MHdrhRuMwFqTY4ybTDVAZH1FCVPD0Sk4q18S-yd6lhdYi-YAnvBy2CMbLj6-qx2yQhjNkpgPezX3cmZiZrji_OqGdeK3rmdu3onfUsyfrj4rP-fYq5SiXNRYH_9OxboPG4cF1kSGiTK3dDvo7PviB57ds58Czkb3lxPpaNSFQG9HncPPDUACt6kuMMQh85L_h5R1NEThMYnpVqL4_6hHWfzyOFYvtSamviGWu-fn44Ccn70CwOLwmzV2ESkNy8yR1PRQlM00zKX3gdmxVqQghxZ77xXwfkiXr22n7qz4pcGVBt1tCKsY4SRXHude3Mlj71lBBDBIi5RikDSGLYElR788hG3zXLEvnDE9ZSAkMF8Tzf6SOtBZurV1c4KDoktA-qMqbWidkN28gRyzoKZgqsW4fYpRjbGSEFnHk96x3_brdvNdCtM9tKA4b8rAVMdwBsPch2tizvaPg4GAjx-fPt7u-Y1vdm9ysNYsDfBymVn-0Y6GvXVTLp_ai5omm7BizdFY7tHE8uGgQer9j7yrIT5NnTYvR9dXsLdPrE3GaMjhYQYxcDjwp6dkMZAz5IaMhqvTB4WcHFqLEYH_YkVuwYPpXPtJHXrX7L0V4zYnSb_5sJrfwBzr0abO3MNQ0umUSSDkErUgmxkq3Q2gDJ1XIpUUxWVd3gamXlqNT9GG7GKaXeQzaSXEq3jNg2kF6RQafztPjEUfqgKH0zHDwwp_QdM1jzdUgimw7fGum39jnXxYIMkqOCnqe9-2ESgLyxToZqb1EA8VtZXefh2YlD8UYemvnfsavGY8kTD40ZmOoihMiDeOccbwr9CL07a6vqp3avUJIYLCn1L6Bw786NbfwOPU5l9AnGpexd1CC8HeyFxRJltsFE4ULKmp1lyryeVDbnmRA3yD8VPUoWFpfQKXcVI61Eukyfpx0ex_JQBL-cOTAcs9H0ZJ4dtxcH_rez8ZKtJCMr1ysjMvA6bwADdj-0AiqWILEOKmONjFJLE6Mz6DY8OAeDllUxQgdXCHx2pPIM11VErt770CwRnK458rq2vxX8Yi9P-y-DdX0ZXVa0PAFVFB9cwZfDX1Xax8K-K16zB4eY30BryBRAVLLT1rBjhSi4A58ZT2ky9D9VEFhwVQqbzsrj7T-qXjpg1aHj9xks4AmuLY2gpVhLqPwHwO9DxYnE8qynYAH8mK3c95Wxka1NZYDlt2ImlpqGe7Ow74fCLYcvakAVlM_2lok66wZahcLwGO1G8iF5Bw6l3UP2IqgemGyLwrj0OCpSesPkCi7jxIPBxXUoZuWcyNYMx4DOC-WYoSQItB8xbCjfTBmbBeZMwdXe9cpNPNzuhlHiyJm1OjT2DqDe7IV5bXmDncKE_GBF05viaIPrhVZysTFD8IJa_0rkiZuhUl7IEt7IZn28lzr1Z68L5v0KLpNyKwMBn0O0kMaZUUsqHNmZM7seJlVdgXyhAnGXWfyrOv6aJBNwcYZ1hiPpa-iPFq_RmX5WE7AVSoCCGumciWhYo6F0bzDjr8g9F9wJzvl6CIVSIbCZPhRaJg-9cfO60lmmt6ZfwKLhWMtqplzR8weVzQcuKFZFF3SFKBm8bBZmc5V9GIoyJ2565HcVQXrpPWsUq0dnC3QqBwG8pIbQelebAd4BdCHTs-iFoXUL8nvjnbAt98DxDldT3ETn21MqO8r0iq2wwLhfipQIGX2MZp83yQGcIlFmchNo1UQESDZ2eevnP7BOixTBYGsnLCnUylt-zIyjAglbJ2ekJzyfB9F6vT3kT8Vj8LcnS0vgJXkIjGyrQBCT-TmMsNNflrMeQjbXRHCMN4uWL9F_RRsd_0Dr5CinwpXcAmXKDL0jvovKy\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-678e2dfb6dd511-25347233','','','2025-01-20 11:05:31','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42023',0,'cd-form-entry','',0),(42025,17,'2025-01-20 13:40:11','2025-01-20 13:40:11','The connection between body and mind is becoming far more evident in studies. If we understand how they interact, it can provide exercise practitioners with a broader set of options to help more people, move more freely and with less pain.\r\n\r\nSkills and techniques that improve physical health with mental practices can hold real power. It might even be the simplest way to improve physical health, particularly for those who are fearful of movement or experience persistent pain. A ‘no sweat workout’ like <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> is a great example of this kind of movement programme, because of they way it taps into the mind. The muscle energy techniques require the mind to muscle conscious connection, the nerve mobilisations specifically ‘calm the system down’, including the brain/CNS, and those ‘pure’ small joint mobilisations really hone in on body awareness and proprioception offers the brain a focus.\r\n\r\nWhat we know from brain (and pain) science is how the brain produces physiological changes alongside the psychological ones. Imagine that when you are watching a horror movie how you might flinch or jump at the scary or gory parts, in the same way that during a funny movie you may ‘roll around’ laughing uncontrollably. Then imagine when you see someone you love, your cheeks heat up as you blush and maybe feel butterflies in your stomach. These are changes in our body that demonstrate how what we think can influence our physiology and movement. Try this: close your eyes and think about biting into a fresh, juicy lemon segment… go on… sink your teeth deep into the flesh, noticing the lemon juice dripping down your chin, inhale the citrus smell… did you notice more saliva in your mouth after doing this?\r\n\r\nSo, it may be that if we move differently, we can alter our mood or emotions too!? If we deliberately move in a certain way could it change the way we think? For example, try walking with big strides, chest open, chin up and smiling and notice how this makes you feel… what might you feel? Confident? Maybe you have caused a stranger to smile if you caught their eye as you smiled at them? How would this make you or them feel? The ‘ripple’ effect being around people who exude certain feelings/emotions, ways of moving or both, can really impact upon others.\r\n\r\nAs exercise practitioners we do this all the time, maybe without even thinking about it, or maybe with more focus on one aspect, i.e. movement. Yet if we consider the power of this physical and mental connection we may be able to have an even greater impact or influence on even more people.\r\n\r\nBy communicating in a variety of ways about either movement, or ways of thinking, we can connect with different personality types, helping them to feel more confidence in their physical ability and therefore helping their self-esteem. This can reduces stress and anxiety, and even improve sleep.\r\n\r\nThe techniques of <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> combines both mind and body using rehabilitation protocols as prehabilitation which enhances both.\r\n\r\nThese low grade movement preparation techniques allow ALL abilities to feel empowered in their motion and their emotions. It can expand their understanding of what movement is when using mindful ways of applying these mind to muscle, nerve and bone connections.\r\nWe know movement is a great way to enhance our wellbeing. In fact, did you now that just a 10 minute brisk walk can boost mood, increase mental alertness and our energy levels. People often like accountability so something as simple as a walking group, helps with the positive mental and physical boosts, from simply moving in fresh air with others. Maybe adding some <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> on the park bench, against the tree and in pairs could also be added to prepare them for progressing into something more challenging, if they so choose.\r\nAs they progress, maybe even becoming members of your studio or gym, the <a href=\"https://www.imovefreely.com/\">iMoveFreely</a> programme can be taken to the next level with body weight training or using bands or light weights further developing movement confidence and therefore mental confidence of what is possible.\r\n\r\nUsing breathing techniques during the muscle energy techniques is a no brainer! Why not try some METS with berth work with me this Blue Monday…\r\n\r\nhttps://www.youtube.com/watch?v=fKhQ_LdTUAo\r\n\r\n&nbsp;\r\n\r\n<strong>References </strong>\r\n<i><span data-contrast=\"none\">(No date) (PDF) Pathways linking physical and mental health: The role of Brain Structure and Environment</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://www.researchgate.net/publication/377459155_Pathways_linking_physical_and_mental_health_The_role_of_brain_structure_and_environment\"><span data-contrast=\"none\">https://www.researchgate.net/publication/377459155_Pathways_linking_physical_and_mental_health_The_role_of_brain_structure_and_environment</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). </span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\">A;, V.M.B. (no date) </span><i><span data-contrast=\"none\">Editorial: Moving the mind, thinking the body: New insights on the mind-body connection from the neuroscience of movement, sports, arts, yoga, and meditation</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Frontiers in human neuroscience</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/38384331/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/38384331/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024).</span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\">BUTLER, D.S. (1989) ‘Adverse mechanical tension in the nervous system: A model for assessment and treatment’, </span><i><span data-contrast=\"none\">Australian Journal of Physiotherapy</span></i><span data-contrast=\"none\">, 35(4), pp. 227–238. doi:10.1016/s0004-9514(14)60511-0. Grant JA;Courtemanche J;Duerden EG;Duncan GH;Rainville P; (no date) </span><i><span data-contrast=\"none\">Cortical thickness and pain sensitivity in Zen meditators</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Emotion (Washington, D.C.)</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/20141301/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/20141301/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). </span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\">Greeson, J. and Eisenlohr-Moul, T. (2014) ‘Mindfulness-based stress reduction for chronic pain’, </span><i><span data-contrast=\"none\">Mindfulness-Based Treatment Approaches</span></i><span data-contrast=\"none\">, pp. 269–292. doi:10.1016/b978-0-12-416031-6.00012-8. Grossman, P. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2004)</span><span data-ccp-props=\"{}\"> </span>\r\n\r\n<span data-contrast=\"none\"> ‘Mindfulness-based stress reduction and health benefits’, </span><i><span data-contrast=\"none\">Journal of Psychosomatic Research</span></i><span data-contrast=\"none\">, 57(1), pp. 35–43. doi:10.1016/s0022-3999(03)00573-7. McGonigal, K. (2021) </span><i><span data-contrast=\"none\">The joy of movement: How exercise helps us find happiness, hope, connection, and courage</span></i><span data-contrast=\"none\">. New York, NY: Avery, an imprint of Penguin Random House LLC. Office for Health Improvement and Disparities (OHID) (no date) </span><i><span data-contrast=\"none\">Physical activity</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Physical Activity - Data - OHID</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://fingertips.phe.org.uk/profile/physical-activity/data\"><span data-contrast=\"none\">https://fingertips.phe.org.uk/profile/physical-activity/data</span></a><span data-contrast=\"none\"> (Accessed: 23 April 2023). Raymond St. Marie, M.D. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2018) </span><i><span data-contrast=\"none\">Neurological evidence of a mind-body connection: Mindfulness and pain control</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">American Journal of Psychiatry Residents’ Journal</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://psychiatryonline.org/doi/full/10.1176/appi.ajp-rj.2018.130401\"><span data-contrast=\"none\">https://psychiatryonline.org/doi/full/10.1176/appi.ajp-rj.2018.130401</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). Ribot-Ciscar, E. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (1991) ‘Post-contraction changes in human muscle spindle resting discharge and stretch sensitivity’, </span><i><span data-contrast=\"none\">Experimental Brain Research</span></i><span data-contrast=\"none\">, 86(3). doi:10.1007/bf00230541.Rosenzweig S;Greeson JM;Reibel DK;Green JS;Jasser SA;Beasley D; (no date) </span><i><span data-contrast=\"none\">Mindfulness-based stress reduction for chronic pain conditions: Variation in treatment outcomes and role of Home Meditation Practice</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">Journal of psychosomatic research</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://pubmed.ncbi.nlm.nih.gov/20004298/\"><span data-contrast=\"none\">https://pubmed.ncbi.nlm.nih.gov/20004298/</span></a><span data-contrast=\"none\"> (Accessed: 14 December 2024). Shapiro, S.L. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2005) ‘Mechanisms of mindfulness’, </span><i><span data-contrast=\"none\">Journal of Clinical Psychology</span></i><span data-contrast=\"none\">, 62(3), pp. 373–386. doi:10.1002/jclp.20237. Singh, B. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2023) </span><i><span data-contrast=\"none\">Effectiveness of physical activity interventions for improving depression, anxiety and distress: An overview of systematic reviews</span></i><span data-contrast=\"none\">, </span><i><span data-contrast=\"none\">British Journal of Sports Medicine</span></i><span data-contrast=\"none\">. Available at: </span><a href=\"https://bjsm.bmj.com/content/early/2023/03/02/bjsports-2022-106195\"><span data-contrast=\"none\">https://bjsm.bmj.com/content/early/2023/03/02/bjsports-2022-106195</span></a><span data-contrast=\"none\"> (Accessed: 23 April 2023). Wong, S.Y.-S. </span><i><span data-contrast=\"none\">et al.</span></i><span data-contrast=\"none\"> (2011) ‘Comparing the effectiveness of mindfulness-based stress reduction and multidisciplinary intervention programs for chronic pain’, </span><i><span data-contrast=\"none\">The Clinical Journal of Pain</span></i><span data-contrast=\"none\">, 27(8), pp. 724–734. doi:10.1097/ajp.0b013e3182183c6e.</span><span data-ccp-props=\"{}\"> </span>','Think the Body / Move the Mind','','inherit','closed','closed','','42003-revision-v1','','','2025-01-20 13:40:11','2025-01-20 13:40:11','',42003,'https://biomechanicseducation.com/?p=42025',0,'revision','',0),(42026,0,'2025-01-20 14:05:39','2025-01-20 14:05:39','{\"firstname\":\"Hannah\",\"lastname\":\"New\",\"email\":\"hannahnewfitness@gmail.com\",\"contactnumber\":\"07503610897\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tAMKIulEDF56KrvdDKBGiqm&amp;gclid=Cj0KCQiAhbi8BhDIARIsAJLOlufjHrLB5alsN1xmaai2MA7cf0tzqwgQCVfDYt-fVnl3pQbkRLDYMQ8aAi1KEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7Q0nwOmLbeG0CR6fZ-1TR9c-fOt2BPNQUaXv9qGYcVEpE5tXc1AyT-BQZobvY-mu5rnvGgyAFLxMyCZL4JkKXBbf5B6YekAZcVAS-BQVmo8OJyzYvRZVy8Y3abm4Q37dhgVS7JyRwsM-v8l82Gv1VCeFAjwXdq-R0FT837f7DzFUy1DByDV7Bw00hPpBZF5fKVckhRUYb1aTcNz-mDH5lGP7qMvuVcpa-oTK6BQ9JnCUxnT32R-R78P6WxSmaiy8F6tf97eNLmbVf8PR51PM4r7U_Iufid_Qj31VCzKTHMjiEeK5IBMsy6Y33iCR-SgMuoEYkzGSLwSXueAy9IbR3C7ZlMy3ZN9XlFuymNJzBQWUbPHXtF9bdG-UOpqE5CLewkCevwlCBOgJNKom7ECYaHaYcj_0aq1VFKrd0L_FS7gZdQGPk9yScxWGaKA4ZEFgdPixpBA-6I_m9NwciOuex3PwVc8YB6XmrWLebwc6HShHLlDU7w3ZqjRMWsidzWrvj0AKb1LtdAs-MNNYRB6Q2I9KFXoJfwwSxwnjGDS02RdHY05Nq8_EnoJArpC1uiJFZ5zRNiOWXo2CTYwuh3CoCcOmfo6JWpC-da2GUU70B9AlnHo066XnYNT2bxMAhfQ7HzKi3MSRYBExsgeNmf62Qo0hymA_kTJI-6QLdwiDFcvBVQHM2bYro3KJo9-3d8-bj1GLNrd44A3BvGg3k8oJNe3Rrxu0zS5Xf_d4QB5wu45WKSQGWXr26nQNJAYK0s6qZvT2jVuupgwSZJdpPDnBdpZM4mDcA4RzdigmOdlJ06ZHkhybRQHmGeRZnqDD-9u2qwi3phXbDF5jd8Z-KbzbRS0YKMDjaY5Jx6D5uEp2Vic6XT1ZW4hhvUuyuWoSd-l1W7AdjUzfLz2s24m9KfG9OqPAC4p3YPOfQ-Cg_FY-LGTt2hcOmI9__Ncu--cAeqxBa2a9i0YFF-fqRLjuwBAvdYav0gmWUge5sytl5euIeQ0g8ak4d2byFC2inxfO7m6F3S9OzSIL6km5ld_9FtXhCjO7b4OLMKse7gD3xQG9R-_-AnYDU2aP0KHzxD-wlZlM5_8Y8d0py-0-M9AtsM-ZThbtHtlMTy5OcBUt0ITpAIT4cCsShgD068z-YvEJf_v-npuwyy0tgHHzWeFQM_lyjNLHdRAAipKUFfnHifIX3MQLEYQO5lGF-faqgoc0Vefo6hOYrwjWi0o2j0CN21Vv4Y9pEiMRsn2x8FvX7HgEgL25Du8eThmgl3vlQqetbLmSngQ13_Eu1QO21jbeub0Z9qROnxDrkXJY7CNGWEatlkxJ6Fty-DpJNl3BtNArRL1n0Emp3fI4Qmf-4hXUE4N6s5mPYinkXMPKY-4YfC9J49zFeTOqKj8tbSHe9lQXpbux67MHIQf3igI6D-HoOeb_x2QlbXMW2vPAqsi_a1xLhSACzFDgcEaE31f9rU3B7e2CgRSsvrWe2v5bGxwfoXgIpsyI7tLgCY885I3e7MRBuERpyzlGsPHKNUWNbtHBXOj8hlqIGUn--4heY9DTg34ALJzOAq6PcUSWzsM-VYwjFbZOFVrZ1dCC2HIkxEpU0FpWrEdz3n_fkEXTvtLZdsgCKDqqHMTTDen6mXmTlajiUOa10anmV1DK_WczqD3WHY7WZ9pFvYMSp9gkcv3go6vc1c2vntpG3o8x4HqE9zW6KPRshUv_T672u7EismR3FQYb-DpzEnQViRgiyw4zNpbUc9MLaHwpKCvYHkL4_u-4EmyQZwgkzU3uRzUgV84g3q8vME-MPnhgcDmrp6oQNdW5nHnS1jZscyD0esjAud4ttfLWSHL3Ry8Mo-aU2S3VIC8Wvznq__dwv_I6riQXyf4Ji2sHUT8NgimG5TPzF52Pv1IDKr6rEPtkqHBF5m2hmh4-6Mvk50Iu4Yv2_A3E1oG_Kp1uhwzhFhJsNVzO8xCfqxiMR8BHh5Q4Adc3fCfxBok_C86NtBe-qcahAENvjy342W_nlO7IUlZMdCbcqc4eBvVydHcBQUWP-8KIc0fx-jUbl9ryyx7GmG-pUu4eF38Mt-bMEk8Lg-xPVl1tXJgdAyUyt9EkraDEXtUA_t3yOKlHgf99433P19RX0prf4dHzVJ-sjgNNFMJpurqZ09NJ3azOFRphrIeewnZmduWec3YW5Fo8keLBOpRQVe1IgOUw3QGkP60-K1vUl5qmMEhQEA_TYcYM6P2N3pVqZRrjfZvfQBZwLjNky4c0EprjilQme9OEt_Ow\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678e582488da12-10861866','','','2025-01-20 14:05:39','2025-01-20 14:05:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42026',0,'cd-form-entry','',0),(42027,0,'2025-01-20 14:15:35','0000-00-00 00:00:00','{\"firstname\":\"SHYLLA\",\"lastname\":\"CARTY-DUHANEY\",\"email\":\"shyc3@sky.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAhbi8BhDIARIsAJLOlucXjj98Frv9vYZNrcGI_atTliqEMEtYr_P9FqvKoFdoF2h5NAEepD4aAoKFEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5iV48EGhHOoXHOReCTwaYMdVtFU3WaxEmAc9kLdncfXtAhHaQuuEKkhP8-zTkkXPGun97tBTAI7-6_kvmm_w6LIiVZaehRn9hOi_LtWKYzpeU3El_58icF-NkKQsfV6cTVGH9rRzIdJmvPU3aoYDIHQ1Pvp-F2mS0Y6-znM1QFGQHg2p_Tq3qexPVOs5NPqLnQfUkgFbOqAz1aOPuXM4RSpXgwwx0rlN3CSWjz1aYbRrumzstYVr4I0GTKkjDABoXFYnIGtsLkpnnWeSB4OOl01s87T7cbWnrDFWf6mwV32dPYFIM-g0ffBoAOPFVXrQYwoR1moRtr_i9tgxWkKkj3ONypQ-9t2RO3M4VYSyxdaDWDyW5hCPW0nLJ-bnnuQG_Es-mS_9sJ-FdQBYSgoacVnzPO3kI690xbQfoOaI_UScFlW270X29gpHLTZ5dI9xa49sPDdPnYTILf6Gl_-mzSq02oDfZp-8yVrKus1O5eJRJ1Lx-fQsAi3HVUYCTZjlboYQytxTUZWB5r3-v0Uqz_ddl8N90pz-uyWKRqmQ6gCMArkINoC8YMEr6_HK4YnCbWTDVrQb1WX1cuj4xJV33XfY5Cv-Ca2kxkOw0RgMzrRDSMYXDK-45KQQgFRGCEVwUowLCCq63743rbcT2rG_G9UbJZHr1dCw48Xf2XzblezjIRozxfn9Pp0qVGTMdF9L0Eoh-E-WDtqU9utNS-Ro5-LYa1YIkN2JFte5D9SYPPjkrWuPVGaRzN9cWei0g_bM_6grj_13yuNysGMC2oqqSo73Zf--6h9CxB8Nl_Rq8AkEOdV6XoPAqFu7jgXAsLTA7KS4qnRgu0bThWQ6AiSLALE1ToGu7URG2_OewDpVKKh7ESqC67J_8o2ukw5rB6MzgIbU9IxTzewN73dp3FpesAO1JG8NoB0ijz-JRNVjLXbjBV9sLEK314RW1yp61uF8GyLaSRUpMS6fMeqpE50nYSXGWRZhOzKZM1zjo1JVvKvLWoB-i8QDNz7JuqMt-zyz9-sNrgBLlMvq2CkZJ9kVzgQwKKpPK34UgmaEU0Kv--STUPeSDMidfhjgcnTI9Xezwp6GcMn-Lsns8dM0L0xlpg_lRrBgRi3i3eLQjKQKW5sPuAe-mj0BTLn0uNxcB4ZcO1PFVFpW0hlwlGhxtZ1UDHwNavvz7nVJMIHKhlvTMcL5Bl4ieZ8_6F1pNHJOeKMBgjNI7IIXnjcHIY4Jnh9y1bULG9dOqddPVOR7sJmUdW9Q1UkkW5j_yr2vKVyCXDZF-jdAKd7EipHcYeWoh93rdZIVZx_mxwQykL4sEYgLkJif9IwJJ7elrgAO2lc1zLTqQrRINxvAgfjDLO7kstGEMi-lSUsAWs9-EBpbLMgsq-W5BG7s6C3kM3NzgMK-gZDNf0mj1Xi3r5Oddeeln8ujSjc1j6okIrHtV92Z-yRH6-70AeUnYSSLEDqZy63g1-iRVWMnDhiGAOjV7qQy3_lr4OOjBJG5uv5Vb5l5PRI9otT9hbzCv750A8_zCxvlW_NS-KoCQ5Hqcmd49IX9rdS0dFp9DXZZ74hh4tevMbdGmSHJe9iu3fBx2EtbHpORc7UIfG4RgxjydGQ3n9g2a9sCXZ_OOWNAch8HY1wSqrnpP_U8xR6n7USaI-n8agZP-hqtDU-2leqioQdJmRHfck1Mmll9QWDXsBIl5EZ3Zn0PQJqqDQ9iOvgtfoP4oq4Ug8BQ1Dd34tw1yBNgQCe8fp5OjXn5cCj5RYlxTdwHYiTpIGmlaSs6WhDhEpXf3rTT9KjxL35bg0hUOhELi8p9cOz641Up8NFssQSveQ9RIlNAPCkEfwQLTS_AjUDW9Rgl0_7XNCC1TbeLw9bzGGDmZouwdJwvEKV04yp_PSMFZSPwJEJ_yU4r8-OEftMcSMmlUsQkM1XT0DeRH3GtP3Qu_XcB7GTyjQBcF_4M6pWNxBNxCGZ7adiIx0doTkJ251-Rfktxm5-FzA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-678e5a87cd3b18-24069414','','','2025-01-20 14:15:35','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42027',0,'cd-form-entry','',0),(42028,0,'2025-01-20 14:30:19','2025-01-20 14:30:19','{\"firstname\":\"James\",\"lastname\":\"Ayres\",\"email\":\"domi0911@icloud.com\",\"contactnumber\":\"07378862544\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tAMKIulEDF56KrvdDKBGiqm&amp;gclid=EAIaIQobChMIv7zSysCEiwMVmZhQBh0sahsTEAAYASAAEgIwyfD_BwE\",\"recaptcha_token\":\"03AFcWeA7rgIsangaUCyaflmjapIsv4X0crCPRUcFC7EhG76oKbceWAG-VOlhEdzHDO0Qv-gEvI4OqfXvbDN0XeZ_AMUoXnHhXgun1vMiq5-_FQeCgQH-zdw3uj8Xn8NaVBiNTZo0ybReKlf1cbpqKE7Ed_fAbpUTrBTpC2C9peMWAwYmJ4qLgUqShDKO84K7wuVj4l6wUrLjDEfUiuUXok_y0f55sRQFz2rQrAo-ESrKhYpaWjRfXBBbzLXbFJcOUDQp1nXvsljc76avt9cXb5SdQUa5xq8hIwMJLTAyepYPhSxlsM33zQ7nVIPXWrBsEVJM_cjHLZnfjgmt-8fiMIaNsN0-if8kdccIwAbXSRtPfiv3mY9cfJp9dgAQzyHyGR0CvNxyj9xaLLA0r2QClLCpE0Q-rpd1xrQwjKDTMrIOvXiTLvMUB_s_RtZl6Mmkp3tLBYuJpuR10tZxOEurLNbblYOVWrz6E090nfbGzPRJDfnxerzLT8uacV_S8aS7tIxe_vxowwxR8nGNC1QDMYFCBHZF-FdW69MBKwH-JINXYQOejQzcXFtLAVyaw_15aq2h4FPbKbVZei7wkUJ0y52L8ywPZ_hbJGycEtrT4QPZ_Pk-HT688Op5YjILSf1SgQTGjTgwEsccGe_kkDKu1TZnY64WZDUZSNr287PmnglTFPHokifMNmZrxBDmOve5gDmSBsebrjZ_yvT01BD3ZOpKTT8omC92_IZYYK20riYPVwUOdURdIy3dDJ-KYsbNW4GEemjZ9IavvwWiuxyFuBKEqUA3wZUk_aDgx6zLwOLDKjoH7d6Yhpc7rp_hEkzKqNi06UbaAPIaaJBMNsYmWjJNrO24P2AddJG8DOBRgGz-eHxXHXjcGuVdqA4B9m0rVFZWoNa2I4jhJBqvpwJKT_hiATLB4nQYhuNlBMEvLeXHQCYVHThMvZ4YnY_zetSgMEkTrjdYASehuzBBxzwBIMWG42NrAAPgOdbicbt0GaDLBC8Te8Cozdo-yyTNfFerQhEBoob0C_ddlxJEJ82MTm7J7RDGdq1yXVTUc_48XXZ4m9o9pvI9Ck9wl3b2ahjQFP3x8TL-1zsQ5aGakhCauKiT3bf5zwAVUasU3Tdy-yy2HanZ5LlQWCeIy2frk-r-NgPcaL-sG37ph9SBgNnL7bc-fqAHXlc_ATA7KInyPuyI47ug9krHB6j6QT7F4tKU50CwgvTNauJcMfitcBLV16cBrFtClrWoPmUG3k-erRuv-xw4QDpIiv4xpc4oyMyBXZj2MPyEM16DCpoQhMxD3Edj0tREVlIyTlwjwnYSKd4ApGnvEBVqYTVNrQHP0BZzvNf1IP0lav4-1QFIwMs_jZL1JxldzMCKVcggkBedWe5oq1AuA7XAlZwGDeTAna2lar7FS6WxOahGc2ETokMve0MLBnrYD-EoQJKzKSzColP00kodeUHhdpqwlXrqlE9Zwsj7QUT8LY8Adtlj173DqyCUWsHY3kgINROecDh5o7DRVqMwJE184IeljaIGHfQaa_9fjZ1SSemg3T7xWkMrf4Q-NA9_1-pxeNgYnWVG4ii755kYJC0KXa-N4G5Bsc16cdyn44klb2EksMeOyWr0SZsROfoq9nvLSAoIyj7gAV5Wyr6lXXu5r6hYeUwxNbXp4zRs7i_O36g4f4Fx0KfOZad6nWmcoUUMcvJW3Fn2DA_2yuYbycAASXaM21-vX471QpmFgjgbq7OkcbXWJGxHghciuBdUSvLB7Bdqs9hVH4hSCESwVVnAs5xBj2SDbgtLTVlBBrAKb9_m5nbspM2OjdKdi8Y7Dwqj-vdMOIJYCp_GdwkJybN9zqZwV9Q-0cfo8jK3te-90OGQh96B1B1xK9F2_PNtJb4Ha2ptqkRe_HMDaIjYH7vjUs8RhInvWYNtWloMVxkFnxRc19fZHTDK0Qt099kWEJj0p3aUwCSCEdtSxcd2wsb0-Zo_QF3tKoNkPyEnKHTRMQoXxafOIZf9dv3Xnsz_Vf_HFID2CLRV1J0Si8Kkevznbg6zdVTueS6cYdGEOOFgvMEP-ojTTkztnvBVxPm29TpJLZOpsp-G9Sh-YuAut11JXsdsNSM8CSB_F21o9BJwOigWgCTiJtubpaoIceVPk4--GE5wUvw_TzxWFatJU8dYiK7UjZNMUiU0gwZXAfDkANaLBVsi5sQgyd2q-kr4Hfp0QaD5Gje4DRshb-ydRntnvfu8O6HGQCZEzA11rY5nEzM1ZjYVrTgXMQ1ZaJbM_f2QCkgn6KHuVG6oGaicO0CEyA173cGut49J44YBO9EkX2Ic6\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678e5de5b49a41-05413843','','','2025-01-20 14:30:19','2025-01-20 14:30:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42028',0,'cd-form-entry','',0),(42029,0,'2025-01-20 14:31:35','2025-01-20 14:31:35','{\"email\":\"domi0911@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"Mk107jl\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tAMKIulEDF56KrvdDKBGiqm&amp;gclid=EAIaIQobChMIv7zSysCEiwMVmZhQBh0sahsTEAAYASAAEgIwyfD_BwE\",\"recaptcha_token\":\"03AFcWeA5b4WuKujdUFg4DVV6Tddefor3HGJj5QHsI5s_VFgMGwjUGFNadXk7hfYvA0twG6iXm8ByFEvsiYTMls62UNyt4KhITzrNBspjn7Y8NBhFL3R7b5oiJf2UBZiCU7d4RYGGNBo4Y-1SMgzDvOCHN4IcpUfYVXKMYoxDDrEoB3K3WcaY2LaMiJwWGrWz3uc8OoSBFidDpAjb_EdkN2k83qwB1Rvc8NqGnpUgTFXDVVit4BLhZtvfMedYFT9f6B5B2BnGf8HWH3ZCso1rh9RErA_sCu06GvuTMauGJRWK0BL8sFuth-HNsGp2mD_SR9Q3pmEbO4ovrIRJ3ziBDybKiGYXshXFhcDD_T7N4GXWrKQHnAqByoCNM0_qtY7tCk0ooeeaunDn8Sbixb78SuABMd7JuYpFKCv7pMpmcNrIJT0do_kQ93Ktu09EWkMNT1w57ui8SqAsY2Mk9XOKx6QzCblvAZJF27Nv1IXGMJ3R5qFkuWIEHqk-3MUYm8HDpx9sObTFbMTPmgdQgg-cLwOF-YhUid8_DSrp7vQ0zpJlZgbeyxUav-p7DmS3Oifl53JHKHAqgTazpI-1dkCThP8wbve6QcooetZDKIgYO73ON34HMGO5aaK14klq3OIebjRr0aImhGoj7pCD2fCWSWz2W8inj8PWc3NYU5GcTnQphPc3tUs_aXKTG7YVSwCXncW0tWHAE3GwWRV94SB5xT5Q0fyR4JRWm_VgqjcxjSv15bgFYByyvc5NLY5ef28F3gnSvjhwK_Gh7VVNWT6BBZOg6wWDpzWrj1jspqJh7LMHUuQZ00w9SWmGzJM0__ufAJ7PdseY-YAGEPqa0GWao9BuJGCM68BZbYHMtyUOHaXfRA9ra9V1BP3l6869YzDkTojJzcfXrVAGkNEA0-l8cbwarZNkAAWbaSjbnXKX950poFJw75xAKvjTySEErdhxiaFfsaEZYqBbhJNAnLlL19FEH2xQqgRIh_UY0MjR6NTyYn-To923GE2HzFc8B9oU0I-O1tr3PhvhnhNeqOZ6oOnb4416exWGI1si9gMYurmNsmST9PJAkziE4LZHfES8ef-482BaOa3SbSUp-gTMDPOy1Vu9DFbJClGNcgALb17OrJenpoVDjeZ0GApL0Zd3H8_KFk3is_sqk-0vYBSLcwfmElx86HDLXN5EZJjulRrwOKNq3WV2TXM1ZpKHuThhJE6pALVusnpMqf9MDbVIYT0g_-Zs-AbwqwsHlKLVjakzi-gqdntzGR3X_ngNaV6QBRNzHgJTBeTGIVPDpIFEKY4G2GqouO5P2KdgfzLexO4-_6SF3iczgJ7XMRtnj02N2uE0dedpHcNRbCLS7EM8wR7wNwtkJNZwP7TcgnNGRqYqg9q1ePl7EnbUiYfY0TGru6zpCXMMvHLx0RLshjEw2ArfvyeZQt1YYJV_BEa5cq4UPeVF29gofYQdyZw5kcGAENCUnOMdek4ENnwzGT3-ZAvB8rY52Lu-yYqCx94ShqdOUb9Cx03m8M2WkhcnM9VH9EZ-GUXZ_2lh_oIAV3LFTQ5uFt7ANSWejyinl-smGdX2nhv8h2s1kr8TlQNMVZ8jph6W6N_h02aQs4IfufXkuqFuWmulmxNFOaait2kb5OlRhLyftAx8w38Jz4pfNz5tfaiU7LSB_brWJR8hhVLbErJTmjFnRphubgXqOgRT84kiuItlyPl5LHo5sbwIyvIC9rMpWk_t9weQIYLIp-mMDG5APrwkGv38VsVTpNzAnjbQx9otSu0OA-_KRDP535QCZQxs-V7WEVS4R6o1-MvWxA3KEJibD1svBZXrVkW0iD6JHEzMDiD_TWlBay668tW6UTtLeO3GobYqXI81BTlKdQ7fp7yfym6pE7UzkMiw3CISReJZoF7DuOrLpiJBRZJ5UEEI68iSNAlfarzuM78LtQGdDnmyWrM_OQKZvByI5LFoXrMvLsBb1cS1tMhJ7Ad-A17OCMPfoRCAyzmO7cZqE5NVLmKeJUnFfZauVil8dTuJPLjNZQGuVHWd0BmUr3LwSiQ4fubeaKI3b3ngmFR5RV6gByBkYgoTPVVTBWtzjpDv28MxJI4c2ptopoyQkrZjdvvKblH4o2DlC7yQfvg1pvGfkII1rtkQfSSzAeA5L7I-tDAC9fWo3R__ExOu3tIk3pqA09x4JZNcds7kZ2VvLeUBZIAzPmRFLlLAhZGFfQtfi9ihjSRmA1TU8-CTtsrmHO5g0jYtNJkK-H1_02oJyeRruT64grv3jHhr1VYZBrGXoCIaLQ7YyHqNMJD9v798mpOfDRfwe4Add\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678e5e271e19b8-79390766','','','2025-01-20 14:31:35','2025-01-20 14:31:35','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42029',0,'cd-form-entry','',0),(42030,0,'2025-01-20 15:52:50','2025-01-20 15:52:50','{\"firstname\":\"linda\",\"lastname\":\"albinsson\",\"email\":\"linalbin@yahoo.co.uk\",\"contactnumber\":\"07799148011\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sm6majnSUy_XpJxuraptFFM&amp;gclid=EAIaIQobChMIuanKttOEiwMV04BQBh2sLgkoEAAYASAAEgK3vPD_BwE\",\"recaptcha_token\":\"03AFcWeA4wzCJEjrTXdyBm7k_sn-8DHCm9x1KRc4k9MsW5ZmlEY3tdf5BVJ3tRhDGxs0MqyCMt35JMYOdaVPcWZRpTD2l-ze1S5dkfyFywnbSV-f6g_pA1rU6DfDMZAcmKu58Pzb2cKDHJSy64Fi__ZwalVB6havaluTBx-ns8rYJTwN1ZCHrvFODvbU0riXnBghlQgNwkgmFHQ7S0WTEft2vob_UHrfc59wDyW1LG7Un1N8R6w2mnBaNNv_ebTFxQ8m99QxOH5VbDA8Ydh_-pL_LPdGCWAr9AXme5ZnXEc0Kpg_q8A_WECwx9EYLvk6gkl-QGUJm4BlkCsEnSileOpr6LfPXjjdwggv8UzDefS-VzV3fyrEtpaHljfacZbemd3tlLEuC9wPD5EgZUN6wDwK6zf7vSU2eRG_xviopVxSUsivD_97ounANOhLwcWMHFwKdJhwm46x9Q6nSyE-ExEYOlzHBHOJvxqfRYG0kNohm05q9qlmUmW9wRAY_Z1_LtUkgTGkcNIMQhJngRwtW555nqxSxxShXfn_U6oXOxtqDT_n_UkcCJLcWDwkCPyUUCqf-utTS7W5CVjV4SUhAPvZY_WSUwlrB-5SJQwkaXpcFJJOPl4TniXgs4CEHaS4QYCPKyIXdgY6CXOXkfxcoNHLb8ampLO6k0VYGdcM8dLlhABjV-m9_F5C1z4ZlIOU4ThIhihZ0oCpz6w-kYGOSkjf6702fb69n_l0ZIY8Aw4DSpFpkG4wGPmaTpTdma_jPsP7_lKNaeeKzABbux5emnMpFV6JL7Ergzzlzd5avQncr6e26n3X58eOYBuzt9fq7pszrEgzjNGByCHGUGHDJevy15IYTb0zy5yDQ4TdVq6EHGDr0eBwXALNQHAMFI1I-V3Y-sO7-sCoI-EcCTOgeOkOwsBzl-uSCXZ67hkL1UDh-sx72B0S2P4zzVYCMXwomCxOKzBgXAUVn8WPbCIJoyMCAOazR1l5HEhp8mRvmbnlotXk8W1o4xi3jfmA9OZDbELt4pJwfDtIELQ9Kppk1_kV6QzDe4ANwYchGGGbXCHRzCzvK_AZ0A4Av3eS0pgsf_Hn-yLKOa5M5h5sZout_raA8kWT_Zx0hZaKIGO4ACSVODoHJ3FgnME_ndtGRpwlHDOUxERbnr1qIEVYILLgGJjbbGoAOKZcpsnOxt825AuAIt_JjAeVA08_8jRh-_9QE7COjmuRTliXKfQvdgcnkGjlWM9g104-nmser_ecTCMjXjUQZm9Eu3dA-tvjAB9zEMSW0LE7Fw1WLirEbhAhnU1XkHvhnbPJmIYOGXe7o-ReteXZ6LLj51iLEuli8mktxeBws37C500ziLhUet-SLBoBvOryZIpB1EDhu9iVPBSxyE0Peu5N3gwKMizxG_Koii86htCCIBut1IB3W1v-fe7XReD7CFnkPYxWZlAzfb8u9E0Nx_9urDBZmXGyspICbe3fS8tHZLblXxu6r4UoXdY8m-TSTSUj9HMBIUoItUptNNCAaDksADiK1R_JTCZhaXkp9jRyP34p-oWADu_bFGVs7-8REOzMnAPUF_ygG0gtkRRtiVZ4Qu4J5wzh0xzrj0aUPcQ0AbHLdTObBXtx_3BoqFfQemveyYB4ZHxkvIzOkxvVdPJ2h1xsiEup-iUTNNdEHandHFeUszPr_pUFYyx9vRRpgInt09cW-w1Uoy-5ixZeA7ojIz4d1Y90b3sApfjxX7yCucdWWY5KHNMAizkrkNEHjEfuGHsg-m-UVeC07T3e5zMEGy87q3rVggc7GDlYx2eQk05a5p3DafBtcL-SI7Bvh3-n75aVTxMcK0-bkYugpF9RchhRFrrn9uJx24xgkVYVvdQvrGGX8gTOo3AaP2PRZkvCvXJDN2PUq1AhaKLOF71skC0NxlDlT7L5CDWxy3T0_qKssXvvMpZQ6VYStdxnDPYgOb9dGrhx_Nw8FCJ3ZLiX7sq7miw89w_gEbh9quVESSI1RtWGjw-tUxGphDH6RTp6YFLjsLbtSkk_Sy5DHJTGLCMv1SgfjgpkOoyXNWqtwB_LoMHyUsHVJRuHtRoxe5FRRZh_kq5lS6ZcUieSQoigtJwSA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678e713fa2f1a9-93310561','','','2025-01-20 15:52:50','2025-01-20 15:52:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42030',0,'cd-form-entry','',0),(42031,0,'2025-01-20 16:04:35','0000-00-00 00:00:00','{\"firstname\":\"Kelly\",\"lastname\":\"Ballam\",\"email\":\"kelly.ballam20@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAhbi8BhDIARIsAJLOlueRf6Y8Xe3Z7oG6S0pIuWALbTnd9JUrpmhy-yQnpT-T-I_skgbEkfIaAp9gEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5cczaqf-ALO4mzik52G_EFs4q7BWq-SXP3XrbRfPZbVCDObIrnaQRwj5aucIxoyoACHGyA29cvJ5p8GuF7aEpWGw3l14AnlnLa92ZA1nb7-or0xumq2uh1rgfl5X9FWUig8VOpOJEY1Q2AqY0CV0g1mvpNfnpu-G4F7t0sP_ngQEmDKwisWtFThW7poRNcdOEW6tM-Upt0C-Jh7xT9yPpUsge3mjIeuZoGaJ5twPgAXDWUi6yla0n30dp9ED7x466w8flV5KppZaT7B_539iua0LuuPHNsb7H8AY47ePrk4CnYK9UC4t4p0hX3yEqRG9E8XGPWXgD-FPpPlmZv8MwFwicTOOx0ZiLMWEoEMMcOBklwcPGVK_ad298NTcnj30d0090jY5-tlHGqv-6j4ywq-m-U8HCVVFH3t22UxLcSGtcDST5-vPet2FiPOsBziwZqtTCorz15WQZTX421hEEKbYyAKY0Qzod4nsqG6YuYHO3nPCYBv4m1UxOh6QDuvw7DTz7Hcak4r43KwOqu-1uQOzOyGddGZLibdUqBGzRXw2TI9wKVgve-SMQeIAx1j4QcnsUz_5zu4USVLXxHaL9pXuekojWk9Jl_5q7WZ09EocK1RbrQk-i5usvrfPSTUFf2wpvDGMoZOmOI_q3n6yMzy2PzoWVDaBvyuRiJgedBbD0UK5LLIn8FVoNDr1-EhSemuhng-1JlTEE-WBKGaKxunWTO6PwGw-8W_K8OS3ar7fZNDDO9bCWZPF0ZqKYo-tvd_rYfeUzOC0eKTKpnASmTJga83t7mytkCIdhjGAIGsax4xOAkybhnu61uYDvP069rLKKEIl4XnawOZThg0qNycVQqxabQxBLmFo5oG0FICh7fIlbtTdWLwxEWXf3XyE3l_EP391Pp5PPkZB-D1euiZB2z_5wLFbw_0DbyyueaAL1HZZgdgwKSQPHMntZUEKAh_yOX5xaDjLkzT6H405FISbSatUVT7QNit6dc-PAjicpLoDmL_OeET5sGzTRpKt2z8UVLuLy4OOt8A__HXPeKn-qiUSGR6CVVkTe64o4d7ajORjeIdUiqSwCJeo4zVHJeg25IHca44lbvQnRekXt3We0xjxtY2dVqhwdPYktJUczF50rN9W_wMW5OOYfIdLUXsGsPn6QCBgcqLIgD-Ayd0tACGs8K3FfQILn1fjtVfGLeeX-N_V7AMspEV5D-fbPWgB8XdBs6boJ0Y9mcwkDTa8dfJ5YLgf5TgUc4LiLX1x7qT9CjjWYqES9EqK91HWIT62MT1eF-IQHlPYK1hnbv5zFqC96rf0ABrvMUgoPlIsfR91bOtxIsMcrWEAUEU41uHFLdDgJgFqOyG8_JqrgtZ3atEVC2xHwJGvA56LOLDOkwhC0CTGk1oxeyJmUAXjxr9fr0yQ4Ma-0owaqcX1EX8l6aZBhRj0fzaD-_WbeIFTwfS-CPogsOMnpLpdiO_gTJJfDzMpE9-fXZzbmv6FymJ3c05ri7N_7pEnOUeRBabYV2DO1h7Gvm9LQ6EmuQTa9uAqw28OXuGCqluATfWzBA-m8vuxhKlVziUb_zVrwddAX2KpwA1lRI82ND2OwLNyRcLKEtWEy1dxJjFoeChnk-Wj0JtAdgBAeAKGZTWnLPQ4NQneEsBuCmdse5K9bAYtfzE2TtmZ0t4VeW49pqlQYEDiZ_AM1UVq5L9MncFidwHIzSPuFewOZvYj2M8oHOVIrGhVD2LNpeROeDo4jKg_ywvAOlXAwQSkDdyMvgYO0VUmf0rwMTM0J_2f5lGnVcUj6y6Dcc1I6mrTDIL94pgey2AIzxlZSN86e-qA6my57BINlO5SiLm6VBQ35G5ByqnFkqtKa2bpG_1O-AG20Hn90bDU-ZJPND0hsF0bGTXwSog2AtxcTDmUnPhwJxNQX7B3MJTWfUqoi55va19rAV2uDoXxvSoHq0VzyoF6AatfcjUVkDB8FhyOhN0lmLcIl9CQL_zjjJsqT3QCVQ_d7i53nH6RUGpY-1uHeG5-ZVsJqcaQ-cwhMchNfY5GTDgxRJ6FcTK_oBE7y2fHx77Fle8ThwnZGFrkk4q3OP2lLYt9YD8tFRcFo\",\"recaptcha_score\":0.5,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-678e73fe4fe727-45960810','','','2025-01-20 16:04:35','2025-01-20 16:04:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42031',0,'cd-form-entry','',0),(42032,0,'2025-01-20 16:04:57','2025-01-20 16:04:57','{\"firstname\":\"Kelly\",\"lastname\":\"Ballam\",\"email\":\"kelly.ballam20@gmail.com\",\"contactnumber\":\"07903753228\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAhbi8BhDIARIsAJLOlueRf6Y8Xe3Z7oG6S0pIuWALbTnd9JUrpmhy-yQnpT-T-I_skgbEkfIaAp9gEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4bfMjsaxYGPjdLtDCXy0QdnGWD3K-S5TWwmg1sBwiiD95lfT4VkhC43DGXMIpvbyI9oijZHqqDB947FnNQ7ch6S1yUb7VHaZmavnLt-PC9N9vbfTXvndenP_swpkoVpXrQRvS6A4SashzvjCMFZbCXeIyUZLvqC2BhUy-sMAI47T5GEstcRzISAzAt17CLQ9tTgb8Hxeu--iPLCnotL2TpDfSxe9O0YlFDH4R79iBrGDKEE5p81ktJ35d89kPC60H2mpyt_DlFcDTppPdKV-7O5Mug2gt76CjG5MQzuBAaX7iav5m5rtDo08qPCAleHB8QDONuahzfJ--KPJVPA4YUpAZvbW5mCzmGQBN9pJyeLKmYqmLT-9K-Vu9Oj0ZSov9os0urObkLfj5rv5xCLylBQDMy2W4x2ZpiT6kXQA2N_K_6sZBilIFW9PZIUKNctP_Jbk8FAl_6HOZrVjEX0qHWocbiPa5hh4bwgiqct3t25h-rp6gI1u3bi4UZp2sWewSPW8yRG8XWB7t5vZDJtOwgiBqMhcTe44MaNJjn0wJOkS6JBaG6ySF4Dois0bcbEYb7eE_lUxBA4XwXyn_s8MoF2ngPfN7SAW3UO13W4Xh9yGqufk34xUac3XN8shjoW9mM5sh8nOkxcdWGT1FlMdVRvJkZAmTauD43sHTNaldmjUTYejnh1wqT0CFuTZMUVg0-BsTJ5vpuMMC-8YeZghkLrheTK9AxifXShd2KdWbtrpWX0LgmZBCkJQXuQqBphEPvanCLUTmItnR8y53YW9S-BTe1QyWaARPnfJd6ylHhI-KP-1lqiCkpA4PwfBiuNqbHRDSk6Cf4BcnzTaclLa5qV118a2EQfRJ2yFfdOpOVWcS3xY-5k2mqpGwRjvy8Ap-2gRmpHUdVUV6quTDzP9_SGSUjE4ouYuyMTovW5_ddHi4FBFQwKvmF5M5KQj_T-2mVJQr1-BQpY-yd4HhBQ0ahNYRkevE9b6Zj4YOo8Makc45KM0gKeRtDlHTNUA5bO9gC_X4IznI-5qnV_HQxsHY_OG3k7BVGj6Gk21316t4KtQWHQoCEKodqTVNzfeKCQFBVOQM4i4UPTYehl8KNwtf85euty4JcBUvMpXzipqT5eLEb0hMPpG_II_r0g1jBAp_eAbp5JlxQ_87kc32y85JiPloHXgG-c3604LbCsmMgBNpxrq3TRTVSc3D4QH9sJbq8rW4IcDZ3kxnLe_K8qPWbmzhemfr0c1qF3gkvzbDHqv3zWDAE7nn5DSYpM6nUCsrVi4AeJ7e2xIQM90g565G59aOioSVd-kt3U1zYCd9jBNHa5UunbgtyAHRCQfK2pnEHM26tKxfBH07bIfZXAis3dTjijO-Lyqli0AQeEXGwXTEyzaMcfJlAoWt3Lo3n5caNAUYs9griQd6ZdzLclCFQI6jqNdFZ835qhiX5EUYI6iexU0wLMOk272aNl5vBawMwBQSKw8dCNSXSQ1t6aLoKtTgLLal6LLqb0fXC4bokPQacsAV-Hr89sydiBJBN0nRUw6LhbGNJ2DBaEt9K4e7xJiXXj06CedG6kYr7ImZcNjsR5D3jmQPG6n6eR-k3oAihIziQb394lxjlXszzGH_OoCR1JXUoAO8FMwUF4_XHQy7Xj5jhvXZ76UwKUF9aAKKmDIl-F1gN8TOPB_seX0mcicSR6uSlbjszACUUcRYX2OJziUccqMbHbWFHNTi0jxoE1auSyd2SKq8Bch68ZOnrsLBqvdcsOWcBnI-VCY1lCTgJceu5isplxKaVjTrxPJuf96B1x2lNr6cfKCfrMaMvCnrTZ_Qy470ZhYXEsQUrvrBbokUDW_UAj0azkVMS5w_S5SLzJXwmMkWbgHHIguqd-zU4XY5muMzx2i13PgP5A7xU2UWQ_1-z7fck5CyRBRh0YJ9dkpI5VxeArRwYNvAABnm1-BuxDHZxcg-i6zxEMeKvt83XHX33g1eyq6lPWg71caJASDaLV-1Jj6PfWqqt0cNbq0dbZGkhCRmDYJAS-aaPqnhu3e-xFvS8ZfuzXFZcVf4Jrs7M3dSWQpK38NTa-hu6xYjUK1Ff-k-OzydGTZHu5jI\",\"recaptcha_score\":0.3,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678e741d065bb0-47314982','','','2025-01-20 16:04:57','2025-01-20 16:04:57','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42032',0,'cd-form-entry','',0),(42034,17,'2025-01-20 16:09:09','2025-01-20 16:09:09','','Blogs','','inherit','closed','closed','','39497-revision-v1','','','2025-01-20 16:09:09','2025-01-20 16:09:09','',39497,'https://biomechanicseducation.com/?p=42034',0,'revision','',0),(42035,17,'2025-01-20 16:09:16','2025-01-20 16:09:16','','Blogs','','inherit','closed','closed','','39497-autosave-v1','','','2025-01-20 16:09:16','2025-01-20 16:09:16','',39497,'https://biomechanicseducation.com/?p=42035',0,'revision','',0),(42037,17,'2025-01-20 16:12:30','2025-01-20 16:12:30','','Introduction to Biomechanics','','publish','closed','closed','','introduction-to-biomechanics','','','2025-01-20 16:24:06','2025-01-20 16:24:06','',39497,'https://biomechanicseducation.com/blogs-copy/',0,'page','',0),(42039,17,'2025-01-20 16:15:42','2025-01-20 16:15:42','','Introduction to Biomechanics','','inherit','closed','closed','','42037-revision-v1','','','2025-01-20 16:15:42','2025-01-20 16:15:42','',42037,'https://biomechanicseducation.com/?p=42039',0,'revision','',0),(42040,17,'2025-01-20 16:18:48','2025-01-20 16:18:48','','Introduction to Biomechanics','','inherit','closed','closed','','42037-revision-v1','','','2025-01-20 16:18:48','2025-01-20 16:18:48','',42037,'https://biomechanicseducation.com/?p=42040',0,'revision','',0),(42041,17,'2025-01-20 16:19:15','2025-01-20 16:19:15','','The Science of Biomechanics','','publish','closed','closed','','the-science-of-biomechanics','','','2025-01-20 16:23:16','2025-01-20 16:23:16','',39497,'https://biomechanicseducation.com/blogs/introduction-to-biomechanics-copy/',0,'page','',0),(42042,17,'2025-01-20 16:20:21','2025-01-20 16:20:21','','The Science of Biomechanics','','inherit','closed','closed','','42037-autosave-v1','','','2025-01-20 16:20:21','2025-01-20 16:20:21','',42037,'https://biomechanicseducation.com/?p=42042',0,'revision','',0),(42043,17,'2025-01-20 16:23:16','2025-01-20 16:23:16','','The Science of Biomechanics','','inherit','closed','closed','','42041-revision-v1','','','2025-01-20 16:23:16','2025-01-20 16:23:16','',42041,'https://biomechanicseducation.com/?p=42043',0,'revision','',0),(42044,17,'2025-01-20 16:24:11','2025-01-20 16:24:11','','Biomechanics for Sport and Fitness','','publish','closed','closed','','biomechanics-for-sport-and-fitness','','','2025-01-20 16:26:22','2025-01-20 16:26:22','',39497,'https://biomechanicseducation.com/blogs/introduction-to-biomechanics-copy/',0,'page','',0),(42045,17,'2025-01-20 16:26:22','2025-01-20 16:26:22','','Biomechanics for Sport and Fitness','','inherit','closed','closed','','42044-revision-v1','','','2025-01-20 16:26:22','2025-01-20 16:26:22','',42044,'https://biomechanicseducation.com/?p=42045',0,'revision','',0),(42046,17,'2025-01-20 16:26:33','2025-01-20 16:26:33','','Biomechanics for Sport and Fitness Copy','','publish','closed','closed','','biomechanics-for-sport-and-fitness-copy','','','2025-01-20 16:26:33','2025-01-20 16:26:33','',39497,'https://biomechanicseducation.com/blogs/biomechanics-for-sport-and-fitness-copy/',0,'page','',0),(42047,17,'2025-01-20 16:28:56','2025-01-20 16:28:56','','Injury Prevention and Management','','inherit','closed','closed','','42046-autosave-v1','','','2025-01-20 16:28:56','2025-01-20 16:28:56','',42046,'https://biomechanicseducation.com/?p=42047',0,'revision','',0),(42048,0,'2025-01-21 08:32:43','2025-01-21 08:32:43','{\"firstname\":\"Jill\",\"lastname\":\"Turner\",\"email\":\"jillturnerpt@hotmail.com\",\"contactnumber\":\"07891573505\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sm6majnSUy_XpJxuraptFFM&amp;gclid=Cj0KCQiAhbi8BhDIARIsAJLOlueJVE8WVffg-OabBTx3B4nq9AOn3WFp-L0qyVfTKmkFkbJ-E3vDUwEaAiXwEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7J38GXd95b-1kJXihIPplf3p_L1zaYfVY0Ri77oeaciTJyMREvWMvLqrFtCOeofn_fhkwMYYl7qXQ3gGSA1pNe0tgjwYj3Bjhn8j8Q5Tcm410e9PfPjQOOGoHDI3nXImLoYRrTQWiMvOB7qce7bywcpRv8KgKQa90gL7sv4tAwlXt8BIvMKevtQM9zAA4E22_6PY_XSScuVz-YVTU5W-ZeYq8KklqNS4Ugcac6dXmMPE_wdYgiJ0-I_DZkpUZnPJF_fUvM6iQoaoX0FllGmT0Od7xXzoQKMFEvJ81_I4K0QaZdOChj5Vi40145uZpl4pzYKmeAiKFbjchM-Z8APHwvWPXgNSs6p53bfmQ8t_R1iQhS3R6uVsyjRFwvVn3u7x3Hdqf0Jub6uU_uDOaN3K6fjqrOwe9oAagka5PhBatF-a2YEy-ZTCl3IzUjUcM_2nv3htjT1BgCG1cO2zF3FJKhekmxmaIDtHCdnywVmLhSxI_MGzqjWaLfrqUldhW0dpDpx1G-MxXWDDtoFVksgTZthoW6MX2d_LgD9bliMz1qZjYoAvFjhRx2eJlcAFRsIsosKlCr3nZ8HnJnbrPjuf03uZHEk0CdMwQOW9JIjvnY19jMLgldABUfhZiYTdApyT-Q4rOHQ95iRh4BHSZlWtB1yDjUNmZRy4TqFJxyicnp7QjjubrX33PR86yk1nIAjgh0_yitVLfuYS4rkxTzrp-3UfK2i3uEStmqLYiMyTMUkDDltMBVi5wEjCkwEVMJOlzc_1VLWDOIPyl8LewHBLhxnGJQKp0b45ovKWq4UnXkItVC7_AMi28LCibWuExz-iBr19bSZjjSXgfsFqmA0_nhO_nHIRVCh2I_OoMdMZa2QbU_WpYbd_1277IDyGMSP071qFnzjzAQSU9l-tovTtfMVuv8OO0ypzZyy7NfMPlNxCzQ7nJUwwwNj_xY-RNGI3uJ4gBfsm66QX8FegHRChql1WCoXduzfZjWZP-lnefXPR-OVK0Vb7HA-Ve7YAJ7ZJiqXGbjGKCTYB0ixikjJWYnZZvUMDN11Aoj3cDm9-CKHAHtnH0LhviIeG81H_AG-fjYwp60RRvh3VwGxAaHHjHPv7V-zpmQd8Lrh4MlYxPK1nVo-Ln4AxvCd5Kfjxt8-7uyrSHA9ZlwTSIBr4dhYb0Yi1A4qNjMvumTPOuZcWsWgWQQxQ7GaEN5JAaLmdkYzIr8OXgWzxgn0e6pxISh6-BIivDeOd4mNv_vRNPnUaJWNhIpgmUqbgzhCQ5VacLO3moFkRmzWs4mnu24x7oRbxOrbZK76ZrDmu44wFkqgXwYADFeJkhEw1goNaYeA6DkhsRo2ARDgJgo0i_gb12CR74DjdaON2lfcFdXE69ZmqLENqf5QTVxS63XZwda3lttBdlm6d1_CJC5k_7ctY9EnWVUeSb78jCiHZK8ddkoCljLFNRDBSkU8zyfas3YQEVeFZUyY6-JPDHfB8XjbvLrH2iZBmnqAVbTF3-LdjW5Opt524yauQxC7EVVw5vWsEOSQASfPQUts7kP6twwNZvdLKAI1iGTmPBcheCgFmQsvAjymJphiYhk3syK1Af38dH1MOuTqopi0Z4u2l6xNgSUhOAzscDKqYRS-LvSTxmuVwk7qJrW8Txf2bAdOAV3bMRNsTKKK5ITiI0H_sxj1YdWMNWClD4VgP0hNNuHQCbCZOVuZu-afQryF45tx_sieBW2J_S0nQ7laXdSP6RXSpTF8By-G1gOW-G43zc5b4wk-zKrbviZRRtJXF8nwn3S9Fz-YfPSSeNSzeBtv8HaW_aCIoMA-rbr-tTjxu_NSG4o7x8xO8s2G24Y3XLcZEmanEzVEPfB9O_8L5jioKlSbHvWYl_nhyl5V7Nh0y5oGQWM66Qd0FLHIpBJzEzE7mc6iM3dnXYOeJDlxgISSUKIg6Ibwy1zBNYhXIR-0UgoevSBjB2g0kh1y_OEEDxzCRZcSXQ6OZkasi3gCWO7uv1JCvFfeO0KRwDwwFgzo4fcXEOEIILk7oabz1j3qyQGlKwwZ6Dm9fx0jDoSXH_TOSWFZ5Q5dMqUiVR5mPZnIWINgNh53nU2W9W8N844KTZQNV7NVsk1A_adqlu3PPUzIdf6qWGxq5Naqdq0tE2NpA5Kk6xF_8Ds1NQytU1sAGZUZ9ufjz1036K80NG8y9mgoapGKXgO9OpIpIuJdVfWA9bbLTZ8NchsQe0Txz3xVzgbjMTEOrnTu8xING2h0ju6mqBORCaabgraIj6pAEj6CR5Teo3LN537nfGpiEQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678f5b6af295f5-02037729','','','2025-01-21 08:32:43','2025-01-21 08:32:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42048',0,'cd-form-entry','',0),(42049,0,'2025-01-21 08:34:23','2025-01-21 08:34:23','{\"firstname\":\"Jill\",\"lastname\":\"Turner\",\"email\":\"jillturnerpt@hotmail.com\",\"contactnumber\":\"07891573505\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sm6majnSUy_XpJxuraptFFM&amp;gclid=Cj0KCQiAhbi8BhDIARIsAJLOlueJVE8WVffg-OabBTx3B4nq9AOn3WFp-L0qyVfTKmkFkbJ-E3vDUwEaAiXwEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6Gm5N58cYs_ZmAPoDJCdYdyQ2DzQKZeprZLxPCNsG0PVmZC0NlbvN87cXzrNpmPCKl0PCM2hKEzREraTJtJue3YUPELXi1if50TLRuZfTdhg2I3Z6_zQqTuaR7uCvVP-BouvfnHr6zkza6PW_AQ7BydzeknLDvYh9sdwE01NYkv1p9899cZeZP6DCQZ4npdvapHbPnU_lTPwIEJKlIU2d9VawzF85kLObfRLHeYRuLuJQSHuB6nntnvJCcdccTT3zcNbaUHeHAj2cWJ4l-N8gV3vNhVL3ymgVw9n0nQfBCXRjhj_lvkQ_Ed8v6OFOK2unhkvPIPz1GMqBACFf6IsqouEGuUl_ck0W1PaXPlCJMyI9NMsEy8PIBxQMzJUkHlPMPiPBG4F6ENCU3_KiD8O2p2RJXnHIOU5IMXy3IQ6KQDB_WqYuLCHDZUb2E5EBkOVMulSNgdw6KT-bSS0UtkninYnxdIe6Sl-33H7_aC_oAwMNDYyDHaE9G6giGsOfSv7QnwF20vDLS7QUeQ7SBMGdgmDVocLeYXmNpqg3fAkP1ymtyMyyFIXWIUKU_jzfrDRWDviwRnaN1n_qF1p2VDUC-IsrCeEkDI14zhAoMZ98LRkA2lcIdz9mmqqNTPY0b8RYot9FZTC2CwQQpZNz9bXol9JbzX3ccDxf5AHIqzbjlM7f0HliyeLSu2tGySjhbZtgbun1JW1jmpuY6rFOX4OhyX-rkq3KsItJngfbXV0BkO7WZV-uezptK7wiXJgF0V56w_CC6_MvM_5fXOp7Zi_CSoUgHBHUB0LxFth3_PKEriEFw4MMRRqKodHS3C7Y3X5o5pudGrI9pZHj9x-XbSNVe5PQlSffBEIHxq9vvBgcoRELVJZ624QYrhWC7sjhkKmL_ymWDlQEZFwPcp8-jyCJLAvXoCM9a6A22vxbaHiuZHCGjWCL5wWxxTNJEvKbV4DhIS9CI4TG3yH3EQxyvHgsgY0A9Id4hY7fmrZA1PJ529kOKWqxC6pq-kZbZBQWAZXNn7F_fYujlPymr3gx2-eEtHrYs6stbfLRSZaxJiUYspz_jUk0bHY9mmQmzzKprA159XZvZk8ZGK8mnj327PLtKizhX-olq7sV90q2drkwRV8-p1n4gCglCVJ-u9FaS8f_xbQRbNM2eyInHAGAI01G4bG-w7vK88xftGAmZqwixv070OoNK5SJcSEm8nsmwtP1edvfTcU1X7ZTKcYcEU2XbS3MMzXFEPBPXwn2Fb5ixWFmu4i8CeoRvD7Gy2RoR1QbuoT4yOhxSom9KCRLI2KU56QKNqNDd5P00pmLHcWxwU12qcX_OSckUI5O-HpZTmY-P-6AlGjxGOZzLmN02shTCwM0CPBrKla_umJxHm3bZzcNAVsCIr6cPZQcDHXs1-I5UB9zymD7DBz9yix84osbeobsoL1b6uOXjapkBg6t3oYaVRMdj0JxJby59oNtGHd0iNuxh9n8ARa8944V3YsxPj6BOyoLhJyF5drNiYgd_N0EEukCSmP2k01os_iRAdUJ_CGE2g4BbafEZdjhsauEP1vdQZpLtkDnaHvtdAk5v00VnFj-_1qnyx4k0zRObMPR3CZPLOGrNzGvQPImCeelMxw2uBIfkP2csSLyXuqUNZna53OHY8Q80OckW8_gJ_YTtcD5s8LSNDR0wA3sEA896Lo8JZajFgsSqBPV3140EzpHZoNswBX_hJ-qm7eQDYl8-I2GK40mpzCc8PulxKclCdwHK1XnUvZ6w4NKPoeAZBNsfln4anp-ZhL1L5RZjICuKsFbL5DA3hQvnGgyIqP-kAYlHwI-W_Bnem1EGRDf2igfLTpApLebIBbeKxtpTOL8NctaBAKP_VmCXrBSDTf-MpYI-_l6p87rXa97aaGcY0Qua6sOp8uHDN2Xus9_rlAilijRI09ZwL3G4tP0GXZhcfq0IVHN7h0JXjVmIpDKKjtx0mcrEkzOR5Y3dC3QxPtsIRBpeQs_ZNsgC59dTh1R7q3D6LdHyydMTP0fIbYToV2BlQXcBmhhAC44BqXJ2pSZ2JsFypjl1UvDt2cim1pI1vBxdQjs4-s4X_hkmXwzD3vJ_HeBRhnvDEA0UFLXGmPxn3789RabPcmvyEV7thmv0yCdRyn1YznYy7TcYOdN786QJtezOiY_Qjk0B4KhfcuQKaNTPnW-SvHtGpTsIOM-SYRmPsMSC0TvczqndFjVui-O53T1Km-alMAtpHMneMUND8VpANPEqYyujH0vwiCt74rSxlMJBZLzAzEWnHXpVLBSwMrg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678f5be32c9ba3-58256985','','','2025-01-21 08:34:23','2025-01-21 08:34:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42049',0,'cd-form-entry','',0),(42050,0,'2025-01-21 09:44:03','0000-00-00 00:00:00','{\"firstname\":\"Anna\",\"lastname\":\"Dunlop\",\"email\":\"anna.dunlop@icloud.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAqL28BhCrARIsACYJvkeWNdxhhC-eNOcy9FIo-SlyxFtzPmHS6YGmtvP7H1XDL13KxlH4_jcaAkNTEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7CFTQsmM2ql5EuUR-0NY13hbTfKyJBbLFOu14RcrsUVaxv1pbKHksDz4-eMLCUzp7qkR2k2QrhsU8NyCQ3DO9tHiyYbhgvyhMrRRYD2vnz4nTA1MZ51ZyG0JNSCXUOZfhffbrCagPLjnJm88A0N0oxfB3S-Z2C0lilI-VF_FizF79OWEittJm9M2Dh33mynAnF7PXfJbXZDC9DJaOnDm1IzO-mfpK8-on-1pz5JNaZNIQN1sOahdnJoYSB2JUxpU69ZVaPJcw5t8u5A6HF3J0qP3PF-JM4fkRf_bhvcGJdp_cdTDPvvBsTCZfZw_kN4VejSTEYOZa2dUDE12lHcY2O18opXadA54mCOXjqVohPlvSu4RCwlnM6wajnfIFMKm0mFLVNfAT-wjSDKwu5VTpwsUBUPX7FdL6ahvF5axjRJjHodW6yZ-es0k7ru29Ajymy6bf4pawEuk9ekKG8gP-VVslpC4NuYcPFzVNLwlhL3S22jp42gHTPghFgPwSpXuopGvpzmYBj7NZ3WzFVaAKU3DF4rbTSVC9ZAthIEPAPa7bFfXSn-_8DYgV4Q2M1nTFsD4dKpsXGMBH8Dob0g3qejz0thAKuNyLVhfkP6hsiuklNha1Wg1EhTS63zjVx2V9odaCPK_4KsOnv5sH_Ma3USuJIauinmkvMZwW1LDlPYuvgi7lCGsChLyqBL4dHaKNh_ddisIdz8OOoUVtt85Fl0auRnwuAlVWFBaFUhloH8DNgD8pV1wf7iyW6Hqfx_vKs_dC76X_F3KHE8sYAwA9imtiPeF8aM2dHob49XdVjZFVENgsvHvnRXFeMvHfrJ32RXYOco2w5RLbP9LUSHe6J_ACzRV-W_iR1lqrQbA6muWJm2Va-qpvUjNmNl2-KV_I-cRxegftLMZbWVM8BB5NG_LW4qJsdQjuSwBw1aClzhYjr67z90b6wtkZtQjr_34mUBP0xXUJT7A-5Swm9es95rVlVoQjVFF-FjkqKNd14pmvCxLcu6oXWeL5tODPKA4SFwh2AbDtMpFnv6_BJo29fMwH_RoOpdlFxkBVwyVuNxKBeS81MotVuAjPzxEhEp3yG6m9PfIUm-d6x5up3aJfwdO2F3rK1M2UlZCCpsC6KEnYKvxM0GRKUIdwu_QUg9GWeuubb2KQLDz0TwA_bFnvj19Q2t8xLO4n_REH5xodUtyE0tDXUs1yxNw9uTmlEQAPB8ULEAGO9FvQ4SNeDTmEE2AyAtmsKq38AcHXoTC6xD1BQ-jGxpNuPKeZgepL44r9zM3P80_Vk9MSH7z2l-wtEXtZKa9yQbrEGPRcyasZKoASORkJ6wRcOtXD7zHKB9QzurP9eZ-Oks2KhMPn1l_7dMv7oLXHMyunrtkT0IuTHe8pNTTt_yjVXjBg0Gs779oUsgG8N0ZTDxzNDivPDv2J7YtSucVBAedw0UPdsnvyoS0XHylE6-I4suDNhQTBTJsYerZBwVe_I8Ifb6tGvuueqESIF81YHR5Xw2ipcUHdFua-GbzkJFeusFT3vV9hASZtYkPdfrGh9axoKTEw2j5XbkwRizAAOJPKGKbdqe79rgPhMK66a-gQyeMBdif1JfmYGT24v2pKZivt2DErfDlfhxwHpSNT9OlfVKc0uFNZ_B2RBzf0Ci5bQcYVP2u31DoUPov-vEp_DbjMx6f1U8JGBvXTu33fYZPe7ECIF8qT_RPGhZVB22TZBmLcp11VSd0DXAK2hErxk30OXH4abQ5XaKHm8h47t2JmjERrtnHNCysOHf395sWVGaeF5mz1NxtwjHUPleypvIlb7Zu3aKEj6g-b4MbQvJHVrb_1H27Wi9CmSwtb5uXvnmj46VQAU1NH2qnYRt9jW-qZMm5W4O4TyPuGHQTX0j9hsjKma9-L2YYMGTTFKZYA4nadLpvoXcJ7ZaELiEC0PRLSfQ4CZE8bXMkGcUIvq-j8riftfOBI6_jPt8Xc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-678f6c635659c6-63832334','','','2025-01-21 09:44:03','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42050',0,'cd-form-entry','',0),(42051,0,'2025-01-21 13:35:09','2025-01-21 13:35:09','{\"firstname\":\"Tamsin\",\"lastname\":\"Brookes\",\"email\":\"brookestms@aol.com\",\"contactnumber\":\"07480799066\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/\",\"recaptcha_token\":\"03AFcWeA6sXqcf6hvOVpKaUaQVwfsKbcpwL3wphmAq3vbNtPjKjewdEg8-SSjnPKfCVz1sOzR8t6aWKGzlYHX1Bq3gBn7WN_JjeeW8tCYC56A1qhM3-9vFhqAybt1nOlvWlsLfDSML1LyThhuQN-Js6df4i1Yz-Yfd1fQicKNE6LzFSX7wWE9aygvUGSM3ijan_HktbCR_rPztEnDYYFioBH9wimKL86kYg8tdRwmm_GPIEoCbQ9p6yHX9wySmwLui1teTWPz6vYoNnu2PTfFFVwiBZan-uFEEwHUnkOVp_SDKBkVqWAzNkA8xzCJ2AyVQ_zR6YpCZvVkqkG5Jtc1TV4Ji-hkt40akCQOmKK1P3n8Dk_WQRe6bkveElBr8k34YIj8EeLFomUTegrxzfqLDjcRp1vDx3IJxWObZ2dEBpbHnm6sY6CXmVpp6LtoCNihobGRhACXop7G5OomYUUfhSkOOOitPQymfk2MMSNeZ-RhgtQOedW1BuuGTQkOuNbdn8akrlgQxi6-61kwMQs52ZWqPHabPACrFpZfoj0U6a4UoQgfdkLBY-l2ZRmjQCrWOdtiRN9NG5N9YMQVhukoFlIdWt8HHwH1ZyOBdMTeWJ3UH5sttvvvKklC2s_UKVjgmSmye7WvFexXDwlSDmoDg7eT9FKNFO_eYbQHvvKdYIG20F60E8mks349YKL27Hj5TFYY3BvkVot1js1iE6hDAJbmn-Gvwt1QOO1lTAQ0up300R0XXmRmI8s_FDVn-VutrTqh-b1WEyS0D5_XLR4HqHmWYJySXeJQKJaVlukU33TB9U4twSL9IHdBPAU_6lG-nb774qyTbBAHKAXCsRhI69mfZtIIUx6zHRvtxaXbLqcpNLe7p2sLveKfZ-wANcDB2SzJSLJR3pmzoIbaNJB1rGIEAraRfMNDl67qp92_scSrPIFVnI8EhJ0Qtw5K9SFinRBudqisoq6sXvKeAayWM00klSEqDmXv_7FCP3pWZxkpS2JePieuSEzbE5EyctWeu5hp2vSfp-MULfLbxQCQQSVC58lU4auU-sVK3Sv8hhfXYs0lQLqe3j1k_0pFaiYP9K3lMXzyEtpu2KEQ_tZrskgM9mKLVFogOq7dhwP_ZpExNfseE3o5V7LshBhySOD5dLXe21UQWCGI-mHam18NCg6I5hbhUywIzALX0m4J2Ev8gidBp-VfQFnrHQZFaOGAuELMqrhTNCQZpiasrcb_QUc7ZyXCZYB93x33XedORPL4Vo8oIB4YKredCfobZyjy5IenX_vYTspfI_J8bqTqwLwuwOsTaQt4rA6z1XtN8Y1-wtBrTCRTt6j1kaoLWV4dHlWYr7idGJg6hq3-p0luoFPjlE_7gCv049u9Ca_LvEkSWFkl-HtFr3fYoObdNrmj3lD2DdBth3ksNcuezI3pkNmyjmxjJNCTW2DIO84kWkqipfsZTIHipFSllvbzf7tXj4iRpXDTIc9ns8MvF80lNtFM4huxLmTN17yOXaQvnRhlAUrNmHAEclTemjF1RMnW_u7Z8_uNXMIMOHmoyihjYBEjqQavF9wfFBqWUYNMULdin6f-UHuJSQsoMOhV-zMlg2FCNyEZNeqKhCjBNhT3-Kxb09WjMROlAx9f6zoBSn4Kgr1hLfz4IVQPbkg5gVBykdW5gOhEcdJglCMKHfUhNlv_fjpBJ0b4vTFCTzl9RCRb7SImWGzWo5S6loyIViwgx9ya5hMfNQEAFGAtHOXBUZCb3pYceTuWvye_xEIxqsaySleYmX6yacXbkz0wRIpegUohLHLAhhL6IzhHAkCZRrk2B6PUyJhhr9ZbZVAejf0xzOO8PE8TK3yFFG-nal4NstLAWbaet4NpwCkzFVkb-tL-eGkIrUSgc7uCfKwC-0_FLnjAvjxGc7QJEgI3nZ2K1BvloLq5Rjk6njbMUw5fBscaIRNs6bxa-zNJOu0wapnHpDc3pkXbc9tX-VFHsc3B8xQVxKzj8Q-p0oZJE2KWogCs76xOVpakS6UjG9KXSxQh2UNdMIq9iHyeA49nLaZzR7EW2o7pYrlNwJWKXViqvbQyicwElCPB4JXRMgOGGr40AfmXT6iuSN2kRrwVFjeMpgJ0CLQ0xUdpjEy5mXaIBLeJsQaQuyHrh6j85OhBY2IwrEAotuDXkXLf-XSVP9VwGpf6uojjnIb_UYWXedMT8WR_VT0MC91kivaCrsdfuB_ucnGcy2jaD4t2O0K0am0KD83b2dW8aEw2jFtphNO5NuDELqaJYv4GW_GaeNrMU8y1HiO0cBndQ8XI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678fa279b61040-45278313','','','2025-01-21 13:35:09','2025-01-21 13:35:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42051',0,'cd-form-entry','',0),(42052,0,'2025-01-21 13:36:15','2025-01-21 13:36:15','{\"email\":\"brookestms@aol.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"NN8 2PX\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/\",\"recaptcha_token\":\"03AFcWeA7rkY3aYkdUTea2RPS9qQbDoAjBk0b_p509oI4UlcqDbRll7L5WLvf210jCVIFk5ZoT5TEWkswSYas-cgwNjKwB4BfMVnyX7LDrNyJTPb1iPA9_DYQ40uc71kCo_fhsmlw13JGkwqp43B0JY7iQf_1f8q46hmVXMPr7pVc9oniYtk1ISRTRLmGsQHRODk2JbC49BarZSWYBFh4qh7hTsRlxeRt5_G6RqTXNBDUwY438hnC_hUkmL__F9OAZE_C8_dU5ZXGS84WsdSeXhejo0gGb01YN6PNbjxsYIflP-cP3ELLY6AKWTvj2T9XJpKW_synDqBXHHFmqhDt83Q3q0bpVWwFvHaLJdIyqszvRQGwVmWu67p3PEadsMreYjqkqPabiKI1xOpOE0x0A2wBo-pWmcbZDU1jilYLtu7Gg4ShIS5-wHLW-GD4pE-Jsc7oCdPpewIJQNk5FnPoCKZJO4clOc4-Aglg2OWXWtbxsrbmT2xfKXvQq-OAgl0ekOZT7lKDm0Pt0afnlllCxiyR9BOIJpWOmu622jeZbToAWP5XXWhCIDn4kf-sW19CSatjIblT2wEl7exNiE15Kv6SNtn5z2V0dKa5Yt5BuHeJYgf5WHgo5UhHgtMwLnB5DjbGfKqwkWOg3ZMwEHR3GOhDWf9949Xmkisq6K-MR0532dS6PwCaivvKtlMJa4lFsp04avI98_n9qhSPX7wGUJfzq5o6D4hSPNZ_y2VWqeS1sGWuHHWwfSj6ZPYhPV4T91xszcJcaSlb30mVICcOvt5jLDaDHyEg-tPRzWI7TpVbpzJd8dhxdpnni8LlfJpJ-gFGy9frr5VD93EeL0VcSBXgDiRZTlUgAJhmwwFADHWqf9plOoSEivZ-VMvTlvpELNajjFbbNl72UAqTFsH1_RbK1sdW5JdLA3C3LD-u9r_zM35m_1QN_nZBcvuoBWtqPvY2diYpxUh0XjO_y2rXRCHbTQZ8ZnS9Nraf1HdUKafhxW-8SsShPuxAJM6bM4w475Ph1JswGuh-ZlMFDvd-tKl0cs2c2MaAIiwRCiJlwDYnPnFFhXEq32wUYbESO-EN8kb4wavxaegaV4tRVM6Wa8hF15FLn3mJKXm_UuHe2rSehkPktYwiCo-3tg6PTarOAMdfcQkG5b_QGJYS2_dYr1RXZIf5WCF66n-9l3geK-gIOK5ReZIat6LV83gHepDgB124bg9Ri8HaGDBznP2qpoz7sNREimu5t5isMhjItPsJz6GKmxa9o2JdJFe49irtMbinUgttutOr5UOy1U4RfmuwVn2KsiPOsuCPjv_Eth0HH2B7i_0NoUdlk-eReJVSSB9stAC02Vnk7Lq7mLzH_YR0AHry-Kjt_0Txx4eRxfnJ_cB6a5mTrY6bt06vBcimy9uF9XRE3nXacsbFGTFqf_gcCcq9eKQ8z_VefLew7DsnOkm1wPU7ywUpm6OBZkeqVA6oGmVg_tzWfGta7r-algOS6__2T1ulX3p1asmIYMDbYvwwoSvGe7fi0zXfxBorDbMzRIjbPM7s7aqB6IqdDckG61Wu0NgjW9Txj9vcv-Cmn07fg4jUF8-YnFmrwkm4q9U_F7FiPY2g7ZRTXrAKK28JZfkHtWtESL36MckvM0nI-xQh2x4vYtTBYsXf5GQqtjMFsT_NcwX9Hue5nSyguymdR3pMnOhdXmDo1GmphVCDE-VI33YcnIljEQoPd97zltzTG_59Wjmynxrt8yFoVpj2xWPp2_xY7uVjS7r9hpqmhx5FbFJUQIPILh2oZDqxPYJoizXJUEsHE1N5QkbUlr2b1xJAWuGV0riqsvPNYTt4ixUfEyAPg2RDlacND5hGcNsyu2E-rU9jdQwj4ziFrDcIYx1NMj6D0K7e6kRHyIsecE1h_LN1yQNwPBPOOjiAlrFWUfHPZWs7dwKhSyIcPEn4fKQY8ViPILgLXxC9BXPC-kB8ZnW19b2MaQmfzJULNUYIdubtv6NAbQDWgHnn90Fhmgwtra_n0nJA26MwMHy5q2785r-TWluLVN7JfF8plgmcC-C9wAffmrgqhtguSo9z90ZAw6mo-OJFTrizuxf5QbBYN0V--Olcm_itdFFuxWvmMyrWZjujUy8Bx37O3bd9WaM7GzCVGVEHvEiBeYUEDidfNeTs7WFDBHLO_i9ALMJposhBo8vSTnNZKj8SNESbnxZOG4ddLDEMqwvngXqhojgMkkD9e7HZgXSmjIuCdkjk-vPflhYFvTLFcVfmo2TciJoledukihi-UkCj63UtlruE4YSYb74w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678fa2b2a80990-58793929','','','2025-01-21 13:36:15','2025-01-21 13:36:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42052',0,'cd-form-entry','',0),(42053,0,'2025-01-21 15:35:03','2025-01-21 15:35:03','{\"firstname\":\"Caitlin\",\"lastname\":\"Nicholls\",\"email\":\"canicholls21@yahoo.co.uk\",\"contactnumber\":\"07311275999\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAqL28BhCrARIsACYJvkdfBZdEfHarYvzJgtxwZEkW5gGfMkr2r474Vy_D5FvJZHmgVWJLRj8aAopcEALw_wcB\",\"recaptcha_token\":\"03AFcWeA53EOye-m-S5UYKGFWVyrihteRKWGM2z3RvvTxAK5HHxjuU6zk5oKydrPNuyxccFm4OAer4kxP4MtpDqRJ9P45ZSAb7DRrdK4SeNwDQmNiEUxSUrL6Bf1OACHk6M_cAibhFa5QFndoXsOBKhsLXUImHjtifim9zFakDf-Yn0sJJkTED4R6Tia8hJIKoBiYXWxbW5R10hGq-oGn6fk9h0sd416PnHQZD6Lhi5e9MUURtvmjJ_jGa58_YuVoioZ34DnqK1cF7rXBggz1DHfCP2gPCIoy8U7gTbSR8MpT1xU8PrwIn26tFCsRkKOxjA197pwnAGZ6xBchO431JGvfmPYAMcXYLAwlMkF5ZcXPt5ayQ7sBy-rwhrpx4DOWhTyoa9p_JTWmrI0Tn8IoxpXJ_eeijXQYCNjIydWeiDRe8WGwpl1qihNvc1ASnrz_GxCtH7nGkF6SRb4yG-RgTYZXQbY5CtSarwE2mVZ8cGzE2Jn26Yv8-0T4fTfKaJq_lt93StCdVTtMfWzacaqL9dim9ur3oOfDkFjBkjBXMDMQe-RzK8dsHFIiajmnB2cpAFiZgKGVk7v99L2SOp1uaV7WRLFdsdSlBXIq2Vd5fD9ReE-dYVABn6-elpW6WkRjcp9204QZXgluBNKj6LziRRQ0QoQqoYdfbLBYhf8jXx-qwyZziawATZb16mDT019YVFAOXmjW2gXLpWqfEkOePh8Y20nL3skOOH2cy4WfdCu6DzUHEuEJdfZan1ok7L-vUyOaNRHF3z8uT8agtXiCMm3GPfYIDi7Wgu8r28gfDvQZFxDTFlFfq4NY7FK_aBhF3ycdlFu1RenIhgLgmcJ9lpTWT9bG_rL6HDnHa6FZo4enZxsNnrHE_CUke_DT3p4h9aBDEEe9ULJMBzLGR48_aYx9Y2cn_WjYqxYJonhZVYdoQ2Lodu_NSS4cy5PznemSY2ZmY78l_Qu9hWb7lwh9LbpO_sFNCRrcPDPttGNrnB7zoqIQ9tLWKTNpfYZv2cMKFG_cxt8rA6GkQhWexb5_e1KqUN_8Iyqd5T0nlhuJKsqW5AyhTo_20z3BS3vYMnFpv9PJFCJH576oDMb78X81KURtzupGhhnE4pGHyua0axBtZI8VPvi-enBsupkIo1wJE7MUtqGnK_Sl2aS7P5K-FbB6HVM8LYiJ6TlNlMtXsim04zxSDWkrRA3SN45r0qdDpIYg50i0QsmxuhinvxT5V_sJmGGoPFdt3phAXfQ5vUt2wLrTHMxO0e34zZ2JuP1Xsvt1P7m9mjFEMTNy7AIoEph9IZbtkKVy-tx78yJzchkS1xmCpLk7NvQu2hVWbRwnDsnErWXFKcid7b0TBz-YAQWTNT5beZF0IKjwmX96dzU2H_70h3TFKpnUlHdQJaqb2XXlzagY1mJhuuIJ4y0il9XcGR1CldzaAuBoWc867Se9rrhxDcxP86qRoyhos91arIgK411917pmX886oSsiDp0zyJ1hG4e5K89mxaBuQ4kWYVbKp-E0a4ClVbVjMxtvEZaBXKsx4qEFG98y4IIgSiYHWGziEwv0wgcZLf36hRAIkkM4HDQ7sI3w6-qUWmh91jTB2_B8SG_ZCHNvwecw-0dQb5HGG89iNAV70FL8nhx3FwWKoYaG22o9kOOzEZcC8BlxEIyq25-7p-xyXx9QCqxHV4gQBPe65NOD8PydDus2FOVTcCvemKn2_dxOMQuZ7xNu2BlquyXa-mEefW5EryMWYVvwodr_ZK5Byqa3VX2zmDPAptE9vr59H7yaOZsffzkEHZ5PB9h82DpGAaCy6BfF89MRLr1bs6MoJeeG1m_GRs1alu3uRYdW-CaJtV76gJ-fkIMqpmNqI2NW0KtQBZcj3FQrLcH3JFNazkFwyGJRUZXhG66SeywLkdsP7101GpWL-mLdiSCdjZ7HvRGBZBpHJJvAfyKZEsXTpF6eAfDo-kAdlQn7FURs5gOQh8HRSpFnHomdJLt9aOxOCCmZosR064ePPZZk0qX5yROyljTt5z4-NrWwXDkVr665rYmOGCQPTzERNVrRzW2G-4gJifvOIXI1YQwdZbw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678fbe92b878f8-79356802','','','2025-01-21 15:35:03','2025-01-21 15:35:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42053',0,'cd-form-entry','',0),(42054,0,'2025-01-21 17:04:50','2025-01-21 17:04:50','{\"firstname\":\"Charlotte\",\"lastname\":\"Jupp\",\"email\":\"charljupp@gmail.com\",\"contactnumber\":\"07990036481\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAqL28BhCrARIsACYJvke7-yo5NxuRZS5J4jTx-9_RLj5THFx6qMA0yNx4wBoBkXXVbPUJtF4aAi-HEALw_wcB\",\"recaptcha_token\":\"03AFcWeA494apS_xCF2SZcf1F1J7q5-I7OD4o_pYv4ezTmX0mXv6UvXo_gr3ubyHdtHWYlso-nZfLy0Dj4vORQUp5JYly1smbQfsFWPvlvGv1MXks-toiQrdMKEOqHoPB0EBbO2yMaGIQQTHTayZJij1PalJqjiK5x2wb-KQAdyeTwat2kJpW31O3atlKY9P4O-1o8h9mcHvfG3dgtI8Q1AFDVmmPoWc2W_mzgY2NWPmNxba8K1ietLp4CV4wyPhAx2o3ysJx7rZ3cYuMsPLzu7S_pYrPWDeUorN-5pGimwbIPwcJvUJTifdtnVsDRLWJNN63VpY82tcYXlJQUXijct8imvW7r3LHLiu7lBM1a2EcpdU6Nl7jR6JBQMeWMqW4TmJ7X-c-ek-vbQqv4LwhckRk40UWZv1UZlphffYmx-RVPVsP0rYuUscJjmxGn8nURJKLMustn9OEDXPmW0rKVpoH9woU8Tx19PUgbDeXd0hNjFumrq_biPmqCSj0aVc7s9zTA-cv1k6DPYoj1WiTQwgGwy-2AZeMUIBsEHSSuwaDH7Xm48RRmJ19yr5umc_iGur4bRQJtuOwZgVovUaS4-ZfS9NOvXBeZwn30B5Cb7x7RCGi3YayDoC74bLTPjtSHXr-daXta42hQrPROyD4QlpVCtoIHfG541PAy0YOY9Gb52ZBg4lovrQzzObk2W2a5hcjo6q3WROqza2z2pMK58L2jgMgAHsrBB4fO9ozJmG0IvgcQlXA4n-DwZJRJ52hHTG4cq34NkNrgur2eN6tH2Q0mxA2WgNMYalF-QN2-JZFUQ-OtHG2ULM8HkFtIDraJmMU8ZIQnXh4PodUfcES7u7rLPnMk8wJVxwYilTjfYqdA1sSlyKTf4sVTMP04IAeU3qFjOx7s9bULfpd_YUoaEUqFHj4iF5aItmKUjG2Wpp34TjlqrtP8qBO7zkQXIAATedWI67Gx60kvKnyvJjvmdtLYhgkvC-QfdUk9mxe63SspetzbopvcyxnN6robVgoO4DhJxX8LiwIiPyDjK_fP_h51ZSF6YlERvaIokjcd1q2JCB8U3R1oZUMyf8-mCDFzM7ciSFaQe6pLiYysK2CjocaPd28vqNTaKG3ibfKbZrsuUgJCrUuYjM_Rvalokk-n9g_29eN5pG9FwBr83T0lFu_e7ujmERudamK2a3fnc9xEGyQU2oR_yGopDLiZw4exPkyxRmDQc2zFnkeUNO0w-QLFPpFlNljY50FUtlbllfAynN9_bhvpaOiCBepP6HAVdl494X6TQUJthyCPBV1mWKJ3Qyf6FVJx2o7r0XqBTZjgZYVTUehfCrNm-iRCQI58d2WGLx_9_63EphYR8APjDbva047UsCSItuBMKo_oGJ7bUxWJco1NPzbk8ewkfectgRUYNBOpiRmNceR1ctSQ87vSv51KJPhUyeLRbshC7JlNoi2qzf3tGmkIi_04b1ZFSdpRGxFYvYVHasl2CKxp1wvXzZz8dWqNa-J01rkxyJHVSgu2InDu9mnq2EaCSPJMtRBBcGMNI3Sm5QCEiGaRRXKW7qZnh2OzaZprZUt_P-ioThmfxwOr7eT7KzRp_X3JzfCLc_2g_MaMIGV8Hs9vTfFZ_5d8uF77Ogj3I3QErW-GNAyoz7o_qyafNA27HkBnCrcyfTBQf8FdjHdNEi6Pv_ioaDjAbrtFXetJROXMNvJxi59xRinYZzStNfzGkv_Q6UYfz98-7KB_NPmjwSFATELehP-n2SnyVLTfOWTGlC_cHdUhSnVXGbmG7sdiZMDqCPZrP5fh-bGif8Xye4pWfwCgMpbRWeqnwvd9qYhFTVQllv8ZFK7wqP_SSoXhw29eme6CZbGPlDRCXo_ndN_V7koq7UO9vdNroituzmDJBVuUxxEwXd52vZ6_rHvlcI31u5mcDYQ5VZuze80oxjdjlsGbH7GTkWVRyblsFadlZEkz2JhhvT_SKXYuk_ynxehQMrnuHO0e6NkD7-tpUkpXBvaeF4QIafohMg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678fd39f735fa1-25795574','','','2025-01-21 17:04:50','2025-01-21 17:04:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42054',0,'cd-form-entry','',0),(42055,0,'2025-01-21 17:05:57','0000-00-00 00:00:00','{\"email\":\"charljupp@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"IP23 8DB\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAqL28BhCrARIsACYJvke7-yo5NxuRZS5J4jTx-9_RLj5THFx6qMA0yNx4wBoBkXXVbPUJtF4aAi-HEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5rhHbjm5imPlKaL8XrdqRZvfeXnJ_gkxsQjgDgcpmM7MNunXpBan3YXHG6cZOpFNVRIhM0SgQbEUIJphIBgL0obaN6C_89wdrbjAdb2UxjZJwzwCHqQlppDzKw4OTKu7m6CDUKFqVxwsjZaaKOnH0PSO4ToGhAn3G97MjgBI98iO7D3H_cqZlxv1bVuUBeSmdg7Obwo3ZaBpblRAQ6O4e7BQXAIkCwGhuw0wcvJbip_PjqhknzkagGFfCCTfncZIFUGVeolVKm1JBnfFfZTgxmJhiqtttP6DNu0FRyfB2PwWMjkRPrOyLx8wj9iOVP9pIE3x-O0injzfL2fx5ZhQnb2NiKY12NihAk6NEOjCsgSVES1K7tC7sOBGp_n7ROeMQkIdl5vaacbaGZ-e6bootQBRp2Hn2rHs-1cTnDelYLWCgmjJYVFfD7O4JZDHnXuKt5057I-nSjB7Li3ewzljP1odgnR5ffe8Qny3zuAxXwt7ILYLtRTsB43EyT7n23hKOcvEQJgbmkQr6PFzlVncAjGTE0QIz5FDO4jMTQGEsQ8UMGRzC97wXiRwYtVaaT6vo7FgqEahujDCxUgJSzJT6gqKrCeVmtdyYf3E7OdIrBBWhMrOsmsmn5uqJlyNVhB7J_zQJEBJXzUJ5gUgciIEiAEfda36s-ybODhrb4S7PTlb6aXjJbgGWCvQ20R48AHO0KNDX-iFSzWXSC_CPbqgJ1lQJr5USb84Obvo058OSShNDbdPvBnOx3NZ72lvx7DfF8DWt798DxOwtdM4BCzWsJ_chQuwJ-mSjnFlL2wJK4s5NnuNF8l0eY4apAnXXaliNmDmB1vaA2tOETj7dpPOh1e-8NgfhHor52_WiAsg8035fMhJG5KZGiGzkPOlz6Yc3uJVqXcqfEFi38eVabaoGBYJ78Pgh9xZq68Aqv-p9FV-m0DOHBuTPZMsoR2HZ954zJMT7vXKLT8efkwn75khJX3IqI9EQ7RdHTVLKfT4VbkA8MgOa62Lo_NKTsD-ck1hTjRauoLdn4aWvOxG13cJfCiIJxIepK2XYoMSLu2q1gOcpXV4wKRhgPK0owhVtbsBDKidOQFSzCsPnEzuN2wHSEzYRGuB8PRdbyA6T3H_gDssE9UtlqY3NQiQTMmTQAAINCPrWkSxM64IyWq3iRIzt2cVcmJZaRyXtcLXWaEzlwIuTaRwbLAHNt_9c94NSAE_BY3J_Lpj8nUrQ0z5dCrsHdceCMfQsutBi3WTNBSFb7olw7UERSLi5ecRtW5Eo_Ag47zk9N-8sNYf8HvHFnzVpBEQ0IFysl26ed9DEp-WDxbuwNC3OPp-qTw4bH_uq-rL3cplH1zQTP-4d5SMHgjn0op2H6QfN_-ZSxzcdiQecDag27CApT4dwWMfYZz7DJb3xMoGM9obUA467CDhqJ-CtRL1vU9Lk4lDdgrZdD2RYhUJD3zeOluMfTaHW2y52hGtYJsipvUEI7LFOxLscY63GyiOo4uE1IfOjHO2AES-1ck6MIFp0_eTISD5p2CILMlIQmx6VOWPR8gDXDr_aqDhAZVMIF1PNQY5CC1ZpYnejIxf6i4Deh4DxdCSVCYzM-VwuC415-7p-bv87RKsihq21St1O1vV4_vLFeiOzJ4zM_Kz7kqq2M0EGsM50ljnzDCoMgZqRWzJdL6_IUpnVNbeDPIJ0JOp0SiOPYM8C8-Zz5re4BKIkTkuQbFWGIuD2tQ2BjVv3SBGSzatB3pBixGUBI4Pl2xtlEAUp8TkTqb5f_k4VxVXvUkz0gecJg_aXZPIgXzj9xttNaZR-n4kRaSuSSekiWwFB0hUXHKtQ-l0AQ1M7lZ7nuhZMenL5pdJWG_RwpB8fInQp7xF7RD-5Jkn5Eq3DIVpeNKYGHT90gmZ69A9X9Dc6aJ0GUu_hit9ipU9MKg0jdiQfczQS8aTKXmpu_4Fw9iXzEoy6OybWOikY8HOv9OaxcSgxfUAZGC5OP9CXghejRn7LShcYr2tQy49_zZGxVIQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-678fd3f56ee4b9-98960277','','','2025-01-21 17:05:57','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42055',0,'cd-form-entry','',0),(42056,0,'2025-01-21 17:06:40','2025-01-21 17:06:40','{\"firstname\":\"Charlotte\",\"lastname\":\"Jupp\",\"email\":\"charljupp@gmail.com\",\"contactnumber\":\"07990036481\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAqL28BhCrARIsACYJvke7-yo5NxuRZS5J4jTx-9_RLj5THFx6qMA0yNx4wBoBkXXVbPUJtF4aAi-HEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7fyJ4LiAb0cqiTfRA9Iqv_YPPGpX7feNjPavZvwjgpR8QVKrp1K9yeGSSDS4POT9P4-MBmXcEwJH1eRuslMlPhKKNHSX0yJ-rqkCxWY1OkfD_TUpv1mb2mPzFi5joNOV7bxYwfqcHKUutup3UMvniu_KBx_QKccYcFdlG3rusMzDpDRNDahLOzmPOvZPULfR1OKlW647pQxqJtQRaX39_McFAk0nBnLD0gVCOtm3HhD7y8jnJDUzv0RXAuMLFH1ZDArPX73STg1YQIo3YTUEIzax4Ktv6A93K5-09gQXQJTNzZBp_6sw6Mi7C_GprXphrLnqHPeCD2le3BEqdMoksLhmlzkYuah184CGyYU9h7eE137humfsGJqtGg5PFhJOi_TyF2wV2eDVqspJaQfnn6ApXZnGYMBFuOCKSSICfn8B0JZpDEwVau12UPU91sUc8n4tzZ97SLljC3Hx3Uq6Cgo2MFCIcnfaRwfP5eBYWVFhsXX8akTMNl_HclaNf4fAP6_e3JifhGZIp91MVrfiwybMuI5zOEldLOR0Rcgk3AX2BKbge1kNVPA-urUxDHWIqKS7KVsWWr_ua2mXFdVcarMOegU3OGeTeAw4T1Z4FfbxB3bjFtKut6FMfQU3UAmHX_L1fpFW-Xe7qfofJW5ZeHNfrixqzXdAxeVGOTptl7TUFqoy6_likPS6mQRd2wrIn6UTyTxU8rMKDFfr04Y5QVESkdMqTtGqgoWRNOJVCsGbYVvNJV0vQOWRdDoD7jV6AZpo9afgmbXIAiqSmcEAAkN-o3p0RG4gBXEMFijqzi0y5ZBUuo2pT6jv35SHeZJnaWu_lYxj-YLyR87GO2Y7-FkP2vs9n_fQ3BczSH6eg4ALQjmpGGakL758zGmAnqfNVXz5fTZ-Wj8aIDEvAebVlENf5koSgEtas4254D3HEbakr4socUym7Xfa3tH5kA-_G9am3fei5Bbq1l0LdT7tD-JRI0flrxXqctljUeOhItIfY-_-vAhAUsKJIwwAy5WF912mHPTQI8wcLDqHtBcAte_-EN3SXW5h-1MkSOpg92KeN5nytsvwy4w2c7DLKo-N7SIbMPhJg0ztErNtuxOzTC3kDbdk66CMo40Es-u2Bj-7ZricwBbDDVCb100Yl4fQ7vq_J9pYf4dkfHjPZE5NY2jScU2vhFAQaXV4VK4-WblazhH9fcnGu819Ib5ZMoPqnChNHVRUUkGTqrCddwwteJesdbxOuLO8Oi6PjtkSes3RetVrQqrOF8SgBia5j-GKGIDnFupZ6E2sCkymgN8orUKb7P8TBXTLxxFL0uAxyfV24wG0uC7cD_advgfmUytAsdqIzhLbySV3LlWEFNOWdBmjHpne6WtHu8aQAjlCIk2bEVt7UejvRICCMBQdVYNvgqudWa9Dhm1Zb-D4EElpq3F9jSWW4Z1G---QH7DMvpuOwa0m0MQ63_QLxeMmtP2M103ZDxZOzPDSlcKv_wIyud-3p4cIuksFP-xgILnJhRLzi9irc1ttBznDG_4oq9a2F7t-s87s-Cl22jIOvN7bReCOtvSNwtHB6N7xvjCD9beoWD7aM_5Hx4nUjKErZ60U40eV27mWrNxGTFQA592bwJn-RWfmItdbsGztiaQroan2dESSEl0KyryxkK-P2s8T9rTxariRBEtD4ofZ7E3jvZnFA8QfRqTtcXDfXySPtECtf2vcDbrxSI6EL4Vmkuf2LP73zg2fy9IGDA0W-k134VUG7_tPeyfd5NxH3zgsSBd3BmQEXtnoOn_wfW0X3E6sD3-qyCF9u5ME9fQkxE-XfBd5x_fTmIF0sIw7LSXF6K8FYvyLIdrKgaSArL3i1Go_e8NPUwUm7_aEywifbPMXQmXpFHCsT4AqdsyMkj7LSPhFG8YUHx-iCxBMqRtQvyg0aZE0cGaL6bGey8UGTm65rnopkVHoIbnZuN1EHAr-7wbMHud0UJtUNsRNQEHU1iTGP_2TlT\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-678fd40aa74d74-88965479','','','2025-01-21 17:06:40','2025-01-21 17:06:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42056',0,'cd-form-entry','',0),(42057,0,'2025-01-21 21:56:54','2025-01-21 21:56:54','{\"firstname\":\"Oliver\",\"lastname\":\"Grisedale\",\"email\":\"oligrisedale@gmail.com\",\"contactnumber\":\"07473884576\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA6d4OMSCYnQKLi8DH5e5pPNuyT0fos7VE2rEotyjBE6Fto2XXCOprwe6NuDLzUbnzc_MumMogB8ZyKBFP7w6brzqAgnXiCRQnH0K7kHuWTADJhev53SEywrXMV0IQeSOV0xDVNXR6xGQ-4h-s4nCW-ZQ1APHo6BSXwgsThIOBxbRSSMlUSO-ps7q0GMS-rnUrbAoLxdTs6zYNpsA-A_mLtZktWLldaooNq6jheR_Zg_Wn7-byLlFvaZ2NF5ZykcMypdKs3Rqp7Ws9sZb5J9XuysnlvK1AK6p9AeGvKW1mE1Rlwd06F02r8Jp1yAGeXnutMmr4Bn0qMiFxRgf1Z_RQ24TvhTxc_TIq4JXvDXo9HPcv4qpHpq0fJ-8usOk8Mhc78QQiZ88AGJc5HiZp43nr7tUORc5x5CrLAnBOkhvNfbHuJR8PAPSHiaw2hldE5YyVxKy4SW6k6_Tr7wfw1PjiA2WtuemekE2c5usJEy6VWqI8e-ia6yQSalpMdTXFx7iIMrosYiEcp-b8VXGK724c5X-YoX1RXI_wRc5D_FZCTnNra-yJKZCyqI7NHsqtm06CDqJn2UhJw_lZhHg30CWefDtPSKw4bNcUuSFpu2KwKSL6U_j-bYFntro7F018nMFrjLst2bqK5p-gNEkTqqCuiSPmq_BedUuyJhhSO8pn8D1WQ9u1MP9jG96vxaA-HXoYMUc0rVVBjpon8kSoAkZpUUDiqg_4NDgY-1o70RJoVdgaYUvvxC2J19XJIh88CQHlf-FJgBUzHnbwU9TqeyR4lEUET76wm-1Qjh-6NYTU0qFEUg3hNX7zsNVpEo48M4yB9z5MHGqPMfYGz1zhxGEFgdcE7oSIjJULAbCBr3hR-fQ5nT6jukyFwmn9Cs0w-xg-urNXEM4BlCoMn4cUqcExvHfVOTHqigmrCk7jYWxwcy2-0ZTwGGmXwjkxHj3G8nakuaE9maWYBMpNtlVbW-J0PpVMEbcVwR6wCVXHe5gZvAlikM3nxLwgmPJyaY3JwWpoWE3QSNybOPMAwZMPOjmKC2Q37WFToSy2If9g_fWhU_mBliDlxQbe4xvTlmtDih-1zG3Hh5RPQNw0q2yie0J8VeVmKiithIbIbTvCcO2wVRNxF1FR95LezGXoxZUd14T8DGTti1sWPofm6x0uu5_R7MhG2OvV7qDpRF02mpcu3VQf-z4BtHltWYSt3emW72gU6o9PmGYOVXIxsT1ici6CN24bi4orLBZU-8yqdu5XVybohgFhwVhsVJFm1F5q45oeyAv6Z3ls6GlCTLNDolSyzD6D8uz-EladisPQ-_yluSOV7Kw3YcnDwVaQzu-pp2kcpOSRNKFEbvKG2WVcwklXMnkGQnCeV2BcAd8lqrOrVDZJhVaaWCXEosOR_nbSPMPzDeycNmAqKedDenZS3MUm-AjqAFmjR8oxJdrN_jsM5eNj9GTGH23needwitOcwHsx-2fDMYz0NdwDbQf2yMolpEgKkPebset6kd8K_P1L_n-oWgvHeqFX5em_nenR26FV_Xnwgtk3sg_CY0nWe_MoX5UXM0A0CtZTztV7d4BqNy_0S7UwADUtZeccyoixe4sHKrvYqNGddN25cci4GP7Z9NTD7oA8dSIfiKOP4RKMNpkb_Q2Is4sUtxmO2Yy_vXANuHFBapM1Qi2bEk-8IfC_ERAcH54Y1yKwETry_pMmJRzhELQ4aQ0WajYV5kWBsj-3kAZt9mFiUyfYYrO_lE6YG5kWkIvUzLUls67RAVYaIFs8DGW6C6_sXOYIF3KmbT3_4O7wxneiAPdL5vFxC5okfTqpdca94_xuvAqEJLr672DoM8jwIvG9B-HvgckXy52BWKTieeX32wsMenkbNJLztmfWT5nepeD_lzb4FZpqquU_mJ6PnxmHCn2A5MfYuqYFTHk2rkJroU1-SL9fjSmbfdVKrLMlyIFeV6iBVPPQIgmlh6jqfdDCwCcosNkRZs17SqXgcwz_3IFsoyX6eTqAZjSAGikU0yqnvHzsxjlR6cYbi05yTEc-R6h-_FG471xQlKYq9hA2CAUMbfNujYA7gI7PY-Vg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6790181cea7828-54184064','','','2025-01-21 21:56:54','2025-01-21 21:56:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42057',0,'cd-form-entry','',0),(42058,0,'2025-01-21 21:58:14','2025-01-21 21:58:14','{\"firstname\":\"Oliver\",\"lastname\":\"Grisedale\",\"email\":\"oligrisedale@gmail.com\",\"contactnumber\":\"07473884576\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA4ISotgUxErV6fV9TfyjA1sQXrSlkRTio_5mbOWhHSaT6aAdybChRTSzlFB6p8inUXhOSueEXgsv4x-hforBaUE3xV8h-giFhROc4yum830oS5Ja93gg68uz-voCLDHzDHZsatyPaakzRGcAbp-0Vn119ob7AqK4OOjsn92bru52BFPX3xH_CA9ayBkKPAcUT9dsF6e3sdQ8GefM5x5IxhqA_qnqSpO9aDblzsCBEF_3Z0TMM_tbzXVPV71QCMEhdc2QAG_0QtxCW1jolqFkKNAldWOiKMqZqtD6y7ai5KWMyF4UFg36o0iFDV2vsWzxbh5vMibpY-JAr9_ffnzJhh0gk4x4_kjWWqF1fSf4pVFLOw1UL9xWcUyQ4FYvFqSZMF0RQ7CnL91k4jZr8NwS05C0ISeeCO5HrccgnUE0UUFVQHEzEIj9qBbdxFdwUqIdAQs1xEjxwltsIGHDSfIUdlyV4hU7aD19Fok1PNCfQMSRYlNdAvhApdj1NGMvQ6-SY-QYCUiD8UTN4EFujjjNQYQyFslwlooKhlL_bSvhxw8-FxOeD8fI7VLKiB6B3ZL0q49LbOVVGX2tLwWGL-etTUnap7GjNmvDrsIghfYHEiTyWmafUnPHp1c58B2nePpWymKWt6mIAljfk9c2uF5l8Te4rIZLaPf47a6hTsNiruhi8sgd7OTkZQM84QFUeGG12NexvSaF8GzkY5oGe4ONearMA-WEnXVYznhS6pZsJU2GItF3AL7iHfVFgjbcd6Qqnt945TaNoT12UgjaXIBgMhUPZ8y8OhoyNmtCCSUkxEJoGPj46Ti30Qd07zx0B4bNKUpmrkDOLqtNzXp3E9OVCsieylNT1G4IVYkv9EwIAshLBza0zJ21UNSX6ZtnVOvOm_wbQ6jG1Eauga6KIMK_xgp28AtPvSnuxgpqFkKsWwLTovk0kUAOk7WP77df6QAsFcAc1_aeXBKO0bVI69gFTTcTECnMGHjjx0vESwHclhGCfqIIvloECduarPxy396_GupJSZQcMTxjw6i4t-5XY86mREG4WehGXaLZtYpGknpqG3zbCCohl0yeCT7MC-FB-4twK4mAwuFVNMMiyGjswjoNLN2xhmvCE6yqn2F15Z0U40ek8LUX6Xhdn1hkwZU8olpZLT3mP7q6bk60aCyB5F1fp-ua1cM-HWxuEdigeKPiNydkBP5D4jdM051ix4w_ebQtvxMC2bCn_8PTmQm3IR1OHjdiENBRJBwACjnMahM3QKdtkg6DSIQLZVRq7S493U2Lu1jUL7cVl76xVgh2nFbOeFa0T6XDABXH4HuNC0RfzDXfoTqwworGLr3x005JuvDSwlDsPY0c909soPjrZ5X2MB5LJpU0oJNE760BlGbawMsG50fCP0zdV-3IQ6nwQQle4EtNopF0lvxHiJ4nFza14r7Xxp_D8etyjDgXhOwryf7WYoi7dtqoRo8xbUTPHxiiLNzqlUMTacvmNKdRhhdkpf0exZZiM4OYaN39yZL5D7Fg-BnGRt3yAdrsGkZcm3aGNS8VqmbEF0ZqBltjI3PTfDHt6q1NgzDk4bdC3WtNJdGowBYLzlElU0sHI7BeDB_UGlmpWpvlUWWVOofi_P5AhpjPUf_mrjP7bpim-0-cZ5ed05MySGlReld3FYj_UhU8XxIWtali3U3zivmCUCXe4Zc4WEjSUtXRV2ACdatNc5eTFyhc-tuDq1CQw3kgtHJOZkW_XSPE_kcxz6ayMGJDDm4wrGvNB2yM4hXCnZrIBFEeD_wCXUQS_OAu-UluWeojhX9dl58JZxHH-OA7o2HfkVT53R4KMnQjv1JIkWpLzlsmnnNBm5Oz7JJnli9AbFhP9gJtZFqgH0J5-a5KIp-QoDg1uWLMO-a7oTjUo4s6uTFmiIzDZD27DGtXW-RJ7KrbRgxnsnLFyIQoEks-JdGipWnopMofTfk1yeBRZeLd0O71s4PvJCo8eL4ZYi3lcOQwU_RGPTYA8j7isWTd0gQVzseoXDYkKvNW_K2pAlfOQmwrTJ33K3VRrOUBd_rBVkiHeYWGRVKhGwFdASTB5Fr19HrAgKk6Hzw-EbfAp2vuWuHzDY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67901867b227e3-84266006','','','2025-01-21 21:58:14','2025-01-21 21:58:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42058',0,'cd-form-entry','',0),(42059,0,'2025-01-21 21:58:36','0000-00-00 00:00:00','{\"email\":\"oligrisedale@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"regionlive\":\"1\",\"currentpostcode\":\"CA13 0ZF\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA7Sbd5i-oOAR0y-h2pRTFU4ipvobXiFG41FQuMYU8l-qa9qb4120ymj9NLeVqcB4ABQdS52T2Ui3pRk2Sg_-OxqQYQjRZMml7NlLy9rsibdGl8GHDXDf_kJHjH954H1qmwl3wpuVYXsE2F36kvhQ-phndRNFjeXZ8sCP5gbQMeLQ1GNghrqHa9VO2k-45V3H_Yfedv0tUV7KZz_yz60SQaHg5viQphKUsj4zlXZ8YFJbgNa4Tx2ScuIN1RplmlaQ_IIVd_CsjtMJy0oKFk6JWapS1AhnmWcPQqwlB0O5mI5OdtRTaaObJnFnCSRyWwikQhta2cyvZMf62DkaPMBbimQ9uupWy9wisi7jXeyjyMlZwXSPr7SGStx31gXKdJ7rZL7o_inoME1A_Y6ifRFrsD144Lzd781iYsvCzlX3oQ0rSKFD9ijBKpF3-m2eEgcvbuXSU_c8eJsVDosMzNSwGFVJcPwzyqEGA-CGPIk0GcUZCcS7oNLdCRc1KFcJvIy1pNel_B2uDZiWizxie7xRJ7Wf0zY-8ZgBgOs6hBj33RVKjD1oAgtjWp-kYLjT_gmp_vnuHNlZPpe6vXS9szrd5LuSupq7YRF8GQYVE0rL3o4kzdihEQq0uP9_nR5DwrtsAvMIxklCv2QVREqYOrETnLUoRaPmJr0IKBA9FcCkMngGkuAPZ9ZHjagub-eyiiEbQPbux_NflwBZ8YPIoGCXQO_GoUx1rqK-p-ObRWbdYMInMxXiijP3K4FBz9LxLs5JJaJ-XP6Zd1ia4f0t8oCuq3NB4hvZxTI6ix_eVGMdl3tweZpGMzyIjxuYlr0wkpwrQK4xFRdJIqNfd71FWH3QfrQ5HlROQJ7acpbD6OBjh-eE_THn9q9_U9qcDE-jNBBsTWzc7Lh3HAzkXAjoIb265W7HRcXO0w-UhNxHyFbmgpwztPAe2CgrWTqS4K9u-WunBQGCGyQdMbalLIQLlKKciGUUkHqi-gMhjTcLubdVpNUgF64boTNxssBdJCmdALTBd_4O6lpMuM5ILN6wfY3qnhcRR-NeE-vTpNeSQYr57UkJ4yB7Rrw8TpOTnVawPjPQoGrDXrvyMJjZmOIX8W8kNSvUP6wdi3unKe7iKpsPyBlf5LP7wpuaSsmeCJMpm-qX9cxZODuxAi-QVU9glSwP2ojk1e46qK5nBBwVmRq5lA9th2dKK3x8WmqeRSsp0_y4AsHuDDuMfBmlzw0GAuDxEKZ3oMSPWDs1IYltgAtMOqRGMbFcV8tGcrzdoNVDex1cm7a739r1iK3cxATytIfOSiS4UOnWD4POeEI0-neC7metFvd6jYdxrRaOjUIhnTsAbWBzzW_JeBdz4LZbFTIun1BH_4ZfkIqv-yS-DrhKXe-sZlRFTmjlIPszoJVinlLREGChjREeLG_gXrXXHiYs96ENPtsoja9alewEWciE4P2lzROfySjwwoEibi8jdEB5E5wkbJfpB9EB3dOEypM_lOQDTqWc9osAWNqn_7dzTcbzvuiwzA2oxY8Rp6So9W9mGGk5ifldF05x_1xN33cXPEq5Sd9pYpOozrDvVOXgSmWF1Df_P74O3taExPD30WRQEvHYaPnjY4Cqje9b9jteB5txFAX63H9lwLenggmXxweMtVj700zCdvaPJoh2kEdpcmNVhsc0tDXvC_Ussv7x24t8qKZLrWM01OiiERSQ8mbFaOtNCdJtFCrKYXNdPg99utb5tIjFzUVej35obsacFp-cdDKQsoNnMWfWY8Mmt0B0JlC5Vrh5ujgu2jsa0sDLwjz4HKGyidf3G0clJfTtV5eS3G_PgYyCm_EqlB5wb8hyPCWtGa0CpiqJTN7fZBX3I1knW5GoLJq0MnwCTv8PgrpBoLf99IHitZhXaMUbLL22DVoDnro0KvOic2azifixf7m4ruP2nuXB2q1Kp_E4C7J33zJUUIdGTH5U8JF5gJX4aJYPhDpClz2gq3vcqy-YiK8WIDsMmcxBJ3ucd7miiVNyCRaopspjGOe8Vcn7f0KCsv-H2eH1ATNF2fw0chkzp9ZS9AcWZl7zuRG3fkQDoli5Y57qQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6790188c4498e3-60912216','','','2025-01-21 21:58:36','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42059',0,'cd-form-entry','',0),(42060,0,'2025-01-21 21:59:02','2025-01-21 21:59:02','{\"firstname\":\"Oliver\",\"lastname\":\"Grisedale\",\"email\":\"oligrisedale@gmail.com\",\"contactnumber\":\"07473884576\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA43LiyNjbBMKCt_XLa5rD3USV1QNEeC4Rz5sC67-4lX6iBUzxkuVaJgtAuktwOWC3vIEsyLxwNUSpy0I9GOePtsrZqK0drmxnbKoXzPrwCiEOCeBWPR6pq4Yfg8pTZucOfs853JzzfZOjy72mOGmqa4Qi-wu1sCSKDcIjA9jgLdMftbr7FSwDoPGdjqUvlgWka3WbBZokLX-ZL5VzkXEQ2CptrwMtyqdRJdo0-6JcLyQeNk-3_IaqzmQVirz9q4oOGvGIaldnmYXIjIPVrBbdvtjV58yPtf-zClac5ZX0TDDwmVF0pPK55UgrM_feqIbmgqZQYWmJiHLRxe2hXhVgwMy9HPjW2B2V4jBoADfTosyny8M9l2APxXs6mLr0EhkBSb9WIKlFVSfksQ2CVqhLYmzAJ5fz4pAVGCXoD88UnLWAyvZP2PRCVEkmMtZbH1UWgpYDYhICJGPtP2_B690XJEPtolI-q2WGFVe6F3D9HQeZT1rR6wLEz6aeM-SHh5fDQ_lIVa39xlyh795fN56Ay7K7l4kkgqIYRCCxWIo9GGm1X9B1NcOctlMCFFlJUlOoiTgTdYLsfe3O1ZycIVATMDhpdA5pU3HNxrRpiafxVkWkt2xlg3adTWzD2GpIm_fYYAoCV5o6Pk7fRJRmLqiIv9lirF4djGOl1z6iwTtQnO7AC527mjwvTFkto6O9HrQn_YasbE8wqa8mAzme8FuaqgaPybF5E6QZKcSDheu5Zndwl4NWGcZpjOv_YVkNBs3HfVJLzbzkptMiUSxhzw0KdO2b3BJMem4V_UBzjCMglqEAAGZUYabgpVuWNHxmN516tNejOX5L_ECcoUizI8qNLP0NCfNrepLCkF8QvBhQKDlEvastlUcjrhnd6PHiJe9k7qv8xPUWn2yboqn8QQpXS6GwsX3_hILF0N1Bs36DqSpw0qtQjAMW6exTy9YiXZdmSrQIt1wNULfNQYy0ExvEBmTBFxDBGHoWYzswjvzJd6L87VOt3MtpgjaOuaKtvb6ItOy32EXjJDr4Aq5beeJ77xcS19W1ox4kVmM2NU2iwa-ZLZ6vlRayMn5-kdy8SpgOGQ2MndWonhxteuRuiCe8ULeVjHARTSNMPC_uYTuwQ3Kn43poGK8JtTFepovDWqG2EGxQwuuEZTPU8DnEgNQhS_ibiGICR65YkcefqTx72B5lObkBnodQIMQMzNTEeoMNPRchKDp72tBY_Adk3BmmdRi3ZthSyFZ5iMbTd9tL7z6bzm7RhdOHcrsuVvnyhdOeR1dgkjyL14RERelW-_Q7HWBpQl_gKIXf595NKAVtpOxv2BvtKtWrsxCp8plYC3wyebm3aoXlHmrPSx5S_k0xeOyUay8gq8NdcIbgD940CQ5UXUak3IsiJTnp7YqNGVS8mLUNIeQVjDtE_1SW7Btwqg4_zlTNamrzp6hxUpFNL3LgjzifrdrdGTpKSr_6VU6BhDsqugZIt4bZpjIae_IrIPYX243dQpxmH_icny0xw3FxtG6FKUeRJ6hYAaomw5Gd06LVKRqCXGrGuvuWZ-GsN-QLwgz1Ca81gcBQFzzav9ITtP6wXDFVNSdkoHu_mhRiEvMZ4I5do5V3MhQx9uIZgi7K8UeCc76g05t8WOgnusfZ-AiEW1oixgmihU14pdBscl9lDmUnTECKPUyyruyVvuFsc00yYm6IDe7teUMkhKCE4zlfoe_uNRYg5fA7KxOGTNjqzg6Fegf8hoksTUv9jK4Ty4tU-W83oH8DYaO-PC9E8Yb4WiSezuImGOiOLxDqT2fa9HYQIVcvb4NHhDaX6M8HM0h9PHuf25ij1T3SPC5A_55MnT-Ns-TU4mRLbsQRLsCdJRC8_6ic1MN_XnswmzrrGH8OXVHEDzztlnJ1Jq4XAZOX8KwL-i18HksBCV8yD9hkbQ4QOl8-3HhhiqpTPCAXSj4YSO3jr59xUxGaDTvNq9wDELc1wTWGxgEdj8tSCU7gVVArnsJ-OldJN-xZ_7Jv4IwjSLAA1fq2LhOJg1FUzcAN_ZMgFYrQ6v_NwfBg2i_vd7bozMedN3W4rbJ_R6-_-Vig\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6790189d2e0737-00382194','','','2025-01-21 21:59:02','2025-01-21 21:59:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42060',0,'cd-form-entry','',0),(42061,0,'2025-01-21 21:59:59','2025-01-21 21:59:59','{\"email\":\"oligrisedale@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"1\",\"currentpostcode\":\"CA13 0ZF\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA5Cn_Eixr57xvAIYeM6fOMgQ4b8BOUehIDfvh4JZkXog7W6kJdp56S6sxS_s72PVat1qNldj-j1FYdLnuFbW3rvntTA5pCOEE8IrmIf4N5rHiYmXgFjcsdHPUA8KHomd6JdSBBKJMI1g3fRE4vNpkI-Pg7qwRejGsJmRuyyHcsjpJz-jqXXbYD2LaqcqLQmHlIOw9FPRPdp8H4tx5Adg99iOFOuAmF1sv8DjZ64c9EsxCeEyKtX66oLWtQxvY6JR-Vv_iPIg5Fi9YTKXR49toyQBQNJjiEF7a-gCZLngYOcwqMzKeCo2yX0c-vBL46GMVu52AUegPWuAUVQSX8QjJzAP6KNrrMZ_xaNty0a_L2cu4icZZdRi2RAXNQpIYRbb29bV1Tgq5RJOEQE_4veE3-C3KYLCuLMJqDCZ7R_hGOlO41nISioEq7ASyBoTawT1ngzqFvaaqJ7eR_eSJsrAFQPTuPjVyOxRkw9tS7gaYpWi-ZsnvkbufV8yB8yCPFlPMW7kyDAmva441orcO7duHL8GmvePZKh2mmT_qvAOHU-HfnpBLWnyjYT3bYWS98ff7PzkH9usDIbaczpotjZh93o_5rWp16WBTBTXlfzzk1EzCx-XUH3EkWCDXu0wDurZrerL1gKdKARqQT1ujR2az51uFj3o64dKjw2dM9DKg1MSdIc8tjmsc5H7jT8FTwDQQwGf-ZRW1r0d9Q_FIFED-5fYlcAhONvUjIVH_k5CQaHRmi0cSJ1Dxg-whnf9hPZC2x1UezjCCM7ROn-XJxD9haRLsDvNYtu5vJl-w_VDVH4NwQw2cWsOWgWUIYcBRnhxZVd9YXK7gnMfcFRzxsNRzZjwx8WL3-XO3ZGImEZEOiclPGlqkzX_kdrx8Fc-kqu2uqFtbXgCnTsEC19RzlTfK5MODFqNB9uxujC_qyzRYeKNTV3T0mlTPqAB7x9pk7xiKf8uc2yXoOd1mE2damF2eudpDneoTLjoHxY0c18HjzCHKRmg53zIlrJsOdEFOhFpYEuOsjD2XcyBb1Bb9c8QlDdr-n8KbfpwYuDLQkS6p1mpWB7Juq8ivPGOomYw9x0VrjZOwU0WTwYUkCWGzzcYnTpenl0uvpS8TV0WHpaCDKSsRLs0V9dIDf1Om7Sgo1MFDF8wgqlaepvP5fCW-zcHPlm2kkzZJifTmXpVGippUdvZ2qu234VgJnk82nfcHUtwHGimcKHTW53ri-UBxuvEc0JYrSLjg-RAwEz9MHjG8Cq2KUTs1C01ox32HlbDKaLoIyOP05Gin3EaDLB7XXxR_8RhE207aOu95aHlQ6FQG-keXrTBCEEwRQrLURiKDl5VJ5_oUCgGgp3FjHxDeEl-HcQvQ8R769IKVGWMEZRWrKJVCbbhYpGQ-BhJtVHr4Lsof_95jBEZV1q-a_Z6sr7DVXehhOczKdxP_fyg5chVKXQ-sK2sZmIWef8lbVVT0ecCUGC6Gkcp_SK2OoBso7H7EWon72A5bxNHO6aKnxdvjGoNu9crsWr7wT6e5HLSFeqTQBQfYB1MjHGgcrJfbZ7_lIFA_RJdJ0vE1mbYhTSYDf5o6HIwJDxuf7tvH7PEarY9oe2mZPOG-DabH7Yo9eTfqtDVqH1JZUbxhkIJetJNPifQ2PElQyp7MpSgPmNYCAnDZymInJQ5cw2P9BaWZRneflbVdn4-yOAKLnCZx5uElXmGGHAdVi4ilqc2antM-uwQjNpJ-xvEERN3CR_e4tPbi8eAd0N1c5_6vujWEdYwNcsRENYz9R-ntBh54DHYplpFDsGjxZkQfU51kDhOKI7vpTdnAVngerzam5EQVG7tOMx882DTTIWbfHCJlzank1KsiC7rBsBnL2K2rHZgSqVrDgENjoiGDWkIOzTcfRgZ__3uQAgSlgcStVXC5g3SZHaeqA5DF1cjjp1qe712wJkhxdgTPGq2vpbS62hA07Vy1L-T8VSHmLbrMTvLSaUxOPixgPZMgu-l--aJ66uHypZD2SLrblPs4UxYKicuzc7Z9YVPWMko7w_ffgwAIYrxcP0oxYEOofninGGNOChwF89A_XQ4r9LoQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679018c2d3fa80-33764458','','','2025-01-21 21:59:59','2025-01-21 21:59:59','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42061',0,'cd-form-entry','',0),(42062,0,'2025-01-22 07:09:15','2025-01-22 07:09:15','{\"firstname\":\"Deborah\",\"lastname\":\"Lee\",\"email\":\"debsylee007@gmail.com\",\"contactnumber\":\"07755 272477\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6-o0fSa4ZqyBeMQDVo3auacA7czhsFsw074Z9KgtNSXAoMYQe8Sl_xBk9G0Gem3sIyfa2-s98nLlCmr2yrWh5mhe4T6C3rjXvx4g2V4A6VsbnOHM0-TToNnJlFC0q27hkh5ECa1ysTEiG4Iof057uNW1GHGNlmWT_zSe_ldwheuVFHxsOAUSvUId_OjwbXX2Pgk8gxAdKBnK4PrSzaNpc_6tZMvsFH3IdNQIfBAVBHunV1jZJyPJY_JcsF4e6yJjzP0p4DpwRR0XAHHBSq4MKPUNi0Ql7zmMSLawbGLfLgAdfAyHYieXqfngsHekF7JoqQkKo28WoGBomLavISi3fliioyUguaEeOAStlimKSpcebL4uCrPS1dQ_XGeYz7LWXUV8O7TUkknnWbioQGxfxOHdMVkX-hEsEr_1vst1Ue8AzPVKDfzwTLKpX9IKkcH2DM7mE_PbgPMmS8pn9eS46UVIqWhfYCgX57CtqzL5f07xD6IdShYA0IfNDzYeT3krzXgiI0TaZ8g_WKV6glWwNqMdgRgW49n6-VWtFIbtEfc-piTw4xXvpormkjoLeWViiWgTvtj3KFkvM-LzjZGN1HBLO9sL9sApWC4l4pcaxJTK0GQA0MT3LguSxYvZw4EF6DjCZscGQ76kmRF-TZ8jH8aU3KXxy0hgyY2tr2eeJr0cHO2VvECVAXSRVnFOM-jLJoEyYkwieNi5k0CUdovPT6t0qsiJjbVExSIVBtOSh705HxzFCY2_vN5mT3b17JPgpT3LdTGi0jHyqF2NGU3FIDXhoJ__rznVmJ2QgJGkhkJAfidVnlOiGlJOMFGzyFafzXvSlgKz6pi5qWDL0Y26xW880JbfICk2iUtSMOkinLfZEbCiM-9w90RxZjNmP-dPwnnSg00CwiQc61bzOkJiJEnpbNO5LrWxz8lrEnT8TPEQ4fyKJXM-rG97KYujgD1qBoGYokfjgqo_twiU0M-jSp1-EldNB7dKtMwjGolD-IEhaBuSpUX72ZvygvcmJHhpcEEPhs6ftufBbM_UrdbNU0M8lUqVSNPjC2-HyZG-xwYDDTv1GpoDQ0hh7N4emzhpmQMH2Sup5TwkthI4F9_uHlLNoejrGp5PAuh7nFVHZp7_AoFB__iSyyL01yCNZ5pRtF_Y8t7DVpGL1sQXQgmzgmbay1DOB5rJxWGKL9X7ucW0PtIJ85_XPqUcr7ldMWYlDa65cNDE7JsjH93bqAf2xPCmfxULJ_gsbdiNvnU8RZuFj-t4mCG1qna82C5QcU2rZ9pkKt6HDykYtXcDVHN38T9lx6fqJzR0InnB8jZkzm6cNZlgWASdHi2fCYozAbVKZaNbAXHkwGCj9gI-3FUHwcAzlzWu6BhBKttlljZGbwuH5R4fZy1pbJ8_G8StCWEAs8iZ_PTlSGVTo43ghCic4QVbNK9iRUUos-7jKC_p7pWacp4D0j78XvnrosX5BfgZ7waO0sTUNvRXu0A8ZUYK4W-izNrp4DuC-enWBWIiJITSDsdpfNVZY_UnL1sz_hW6AJ1ZtmlXFmbi066yn_yipzBS5Vt4rzkLrtUCLrFj2_FjTpQySLxyYmXqO2PK2ZzSvy42upqoUuGPDALObo9fhXx9Tc8pUCQaVrhn87WZcsC1skc0xHFBzTpyGt7MQiXEEeMWSJNCWlFj_va4oLQKIQG9fJ7zLQ_7I4P4M_efGHQIxChzGVLJ0zmaj1VqwgwNEbOX6UZkVrqCaWed1f2m4i9bu9SFHub5_reuKZCaIZp7I8RdeHL1fAo6BPyB05SB_y0NxacXlDH_NP5_BYLIZ95Xv6a1PYKQkdtXG7mnmjrPh1avnj-8VEBxmkjlSTpqxWiluKC-SmVPTngIdutPnM1f_i_t8dRiqCQhTsEPHb5FiBsntyDOREVz9Fd1fswkgWre3v8_k8MWXcS8EEs57WfSZbfb_ZdwIJzVsMBfPFPMAooPkEqaebAiSRl6PHvo6zWR-xSZdMjjuyyCNzjOF-EyQqEc4Ps8Bp3Die-ldbttVPkUGygXWeYMTytQ5i9OjMGZBrdX93P-htVQS2tC_z41cf1n6oDHzNyejP6Uyu84LUdvQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67909986742264-64412770','','','2025-01-22 07:09:15','2025-01-22 07:09:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42062',0,'cd-form-entry','',0),(42063,0,'2025-01-22 07:56:03','2025-01-22 07:56:03','{\"firstname\":\"Sarah\",\"lastname\":\"Sharpe\",\"email\":\"sarah_j_sharpe@hotmail.co.uk\",\"contactnumber\":\"07845890138\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAqL28BhCrARIsACYJvkd4mpqitnEi5gxyk1ZNSNTNnA2sq_CEA9EfpHokEc6AVeTs0mXgNnQaAtDZEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7g7pnnNF44PGYkJN6Z35qi1NRK9nro63IOSqYipasNh_jH8C0pDdI1iJIMZL1nVfm5_6fnyeAdnuoSAf4vosS9ECnmGkmzZ4ZtFrZStS95ybtHcZATpDfJVMuHaOjVIQc9pdYTu9y5Q_QuF54EUE4IzOvYAGo1TJ3Ol4mIo2VgDHwSOO39MhwrsUSp9AGAMkEquaoijYRFWtaZbDkzUrjJr7o9yvkNircgojKz7kGUGTC59gKN27x5WnvTQMOnIh91ni97UqLOPL4ldzRR-58NPEb3ZbzNEyQ_W-ARkqDDxvSvqARhBWOC8yY7CYq3eiSbiVIVti4vT-0EYmjGXxVywXjPcjuq88xftDK8hCHr4LzpasUnyVg-8oJ4a6iHRFwz96rpSFYYNzRjGZz4XIqSS8wXwpvcM3wpV5ZKlA4Ba7TJH0veMVwIKhZdEg1pWrLvp0xfK28j8R0seIkWJQCh0D0TpKObgElARvshRwuk7g054EXhuxlbddAhgKRWkNDsZi2D7qQ8Ah12YXaKgRwE81-0ge5_HwrmllMZMh9s0ln4xrMaBd5yB4YIV9_JNAovj9av3tM-EsmqzuJGLXmzbMxvPoysOzSfmlf23OtJem7KlH9rUb5hqW1KyZpSVBYiOq7Xc_-bg2xpGV_6BnHsuCcEM67NW6IJhOajBKnxANGBCLKGdFKVMi1k8M98grld86P5KY90TrMCmEF7ohJSB1Nn3X0wviOODYTJcmRhtKrISi9iraS4WQjFY8Q7Xs3Wc-aIS8QixSFDm5todLab6kLN6FT9s4_4aCBvXvU87VhrU-vwNIqsB8l320Q8wtu3HHou9Rc7Y91J1YnZPJvtlsYPLTJKvWg6KYhIn1bAe5wxcZ-5gA1panU-fjpWJhntWl9b45NLlR858xDI36WGAon3gvJjgu-z4VmEOVy4aZZKO585s35higk4d1sU5WHyb3tA9wrBzITxu9_jSW1yvuqdcXqHa-k5xMI_rbPUmixh8wdl2ZC_IVuIaAJBfh3zEt3Vj70uh4rVms7QFuh9xETv7ZMMQiyiX6F1uvv53wL_WihFvNbidMK261bP-B3KnYy4bDDDv6Ou_dwAR-VF0jDSGLV3ixvntUryg8zlKBfgOGrLKwc1wRXqVfsOvFyMHKsnnQOpNUFrIjnIg1z_nAy7QtBa0QGvFF0DXJhPSp-aldFc6tpYVsNLP0p5Se5m7ih-qDWLI9YkQzkDWjD4D8NdwarJI0h93YPnld-vZzklnGeppM0WejM_ZpPwvId6IgZYOVQeRqR4VtqEJWribXMxHZ7VEt25BNgzHFOLnWani03IulI6EKBXjFvduEL1ZH0tu8GhUCY3QJLo_hpWM-XlIHQwyMTIO8e4_68NilMbcd3OoHRAHCI60T_UP4wOJwNPdhk_OcnVMBmyNtiePzrEct5QU-yfoPN9qlYUKo7VGVY9xVODcVATjLCFMU-qDqNxHdzNnu_GHu8PxWs1wBMtTuyTTpmoj-JpBQw7VY4tFW_YSCf5aqbybK1h4aDj_o-e-x6Bf6JJ_NYIxE2rbMK-C-UEhC7xydZZwpoIqBPLazpX9RHeCg7t3R3LELWzUnlOrX6VZBIUMXDlU-v0BgqLR6FfCns_QfZmJanZF-hBJF0Nc9bSl1xLqSs33-eofsxVp2fyz8q1QujYAxQ37JAcUjllMo3GGDTuq7cJJ9wVYkhgA97GnN1NNvzHfIgHBsq-CXbZOifciHLPz5VNgRrhUiWDopSwxLOsLXqjjbsDS4ge35PxFrSaq2fUHYTWy0GRFv2z8yaPERz8Cp1wnM0msNe454dk4obWkq6t_BKHkR3kdfGlx3AdPJLbn1GBoi5yq3L9h1OfwEKd7DxkPQCMnKdqrxEYcCetYOeYQZL1tD5vgyaCIMXiek9S6URVpkyn3Od4q8VQhqtcymWp5GG8zgOcbKr_qN_tDjpoTj3PUFbPwGjf3Ac_JS1ZiOxY4sMurBN9CYhKRdcQB-HN2RkIu2V3-yU97zOl4KKqSmw1-4Wb5NNwqDpw6lPM40990nPf9yEdYmgdB8JlkPsYvUbmbXdJLPl8Ye8vHCue2Z2yldBK7zt9GbNLvFqGb4YfRsqc2zbt7uzBTk5bOvag3Ber1jdSms75QL-OiyWLGJuNLfXValhASksKnMpazmE3JWKC2TmeUvzuBVgPzJ7Bf1J2Z7gBF-13Hy7x7rfLfFxGq2Vdzzxv2sb5YFwYHClm_7bF\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6790a4871c9eb1-80593038','','','2025-01-22 07:56:03','2025-01-22 07:56:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42063',0,'cd-form-entry','',0),(42064,0,'2025-01-22 07:59:23','2025-01-22 07:59:23','{\"firstname\":\"Jeanette\",\"lastname\":\"Mayes\",\"email\":\"geepilates@gmail.com\",\"contactnumber\":\"07549524447\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6OiYyCf7eIBF1NCYjjsxbh_WscdzNR_6dn5CtDUESZN6bgZBrJsrxKuYOkgijf7D2poCYeiG59q2Sdg6o2PXlmblkpir2Dgv7DqFc-HAjV_VYNOJaO9YecQ3m8Qnwt4gim78pbpJEtvLb2kWp-mxMJRaINohafobcvAmjc9e0FDlgrYXEZCNo7RNkmxgKFg4HQRxtKoLSIahGIdqrrymCp_KcjlfXwGlAJ3Daw3uZpE2fCgfkedCsNTE3Hu3u6i9uOQXobss-vmPEUVDHGZUksq7T7lnMnohEoVsCPIL4w3UWGj9_5MU1DmQIlsddEzdidpuBjWj3dK9fQ_r-zMY1Q3GEpEn3Skj_sPDm2esduFJwEJ2sCR4mNi7Vbj1DS6W3GoMWJDTrntPPL5iTJSsFKye-EyqqnUGIvKSn3Yc9PghZBo0_zoLm1u7Dl6JnFa20oXuOek04Lc5DL-6O7U-HqiXdgRgQLzvQI7XEeKQ8HLe3Fxpe2n2JIPMG3jIcRq5SCl73Nlb4VkFz4eyZX3z3ahU_MjALc87WUVQyv5pjJfgg94hy9QoUhYcMCgezrdNq2vC7Sx4Ow-23q7xJRfkY-F3S0J9suQjWhIExf99fX1QS1H124a2kSFH34ikpTy4LeGNy1jW_d-c3zLr9ha6EuKwtOVcIFJ4zMJBAKmOnPKjcbTepqm7ibujQeu_TsahX4tz-dwSeuMs4iDHqVXoPF4vvUYpY6vGeE0zzjrPAkUrBHl0bUeIf_zgKCvjD_k4ppYllnO8Uqj4oAvqKtOcg2ycqkWETOTAU_odDVpX-0q9rGgyMHNkiADbLjBrP7_snzsk6AkN6aoAfcgXQDHQ6vEttB-mNH7Cp0ETqAfaR-W90CmiwWXbgKd-89kCLT5tosT3OKXXo9ixxKglr9yFJ7kEsTKGlTqQ7--LtvcLYKprsWWxoTNCyBoLJY3vOxd-TXKd3ROCEFHBfcXb1gp9HtyBZylP0Bjn6X8FA65zOWHkC7t0KCmIw_bjEt99sD10PZy7icTtuXjRr193jVRfIqcbbmcryuT_eNM3CUQL_kGi73_epRf69Z-nUTetcOC4CBpZ2n5nRagckp9cBqnKkGlA1pAwcD3RaVooKqysYUsB7xtBEtcFdJdkpRM4Uu196hPV7J48-D06GQkKVn_2j1KZIOTGmaFBqblvZk8SLOa-I62t_AhuAdz-oajg30opB4CN-AUj6X8Y6kw9PlDV7lpoEdcBs0ulj1XNkQUa-Af28iKolPg_HrSe2XXoSggjVdCQJFDxmsboSh70A0NTSHXFTEjqCJtA_VN6CMtkkMASiQVCeLIr5aGw6ekJrqnD14xtJ-QitKjKAl9uj88-KR5VgDkRUX5FylfdHMQX1P2G83cMddvY7x7ZvTgQvUnDWuljrZh1_-yzEBEg5OR5z2U33F57mXP0ItOchWQICWxr0IWtj2GsbdEZ4PDo9dsgIaA_3lCs9kQwtZZL6Ng0VCrT_7pGktstYL3elOImqo2BTnuGcwgE-3Ch1Ol7uykwT340-s3_q_7d0qPk46_Yu8O5QeG-CCWcLPUOk71mNKF3egXXzPjtoB23GWEiBX4HWM_ktcPL5tYT7-dD_TxUxju2TYx0_ti_Qv7WUSIioHedjKDIG1uYM_BHOTn2i0Itvc1QmP--RO5jOqde-au3R8beTd8w3Tz3IHUdBcUwaTN_jQPn_0yXt61L7Q2VwtG2TpugILeczmhIiVcR_kUYcE_Mk6jcZ1MGhiLpHy8-FrWEgN56tqu4-9hsuQl8w-VMpZz8edw7PEpokje25JDIyEa_Z-RDsbdrvEf-8QM-o48pWceqpsPET5mPth6RRhrVCtwN-9W2wIl-Ow49EFllfO09wQcea5HcNvHueSrv_Y3Y2sdcL7Wava-vY3v6fuTMDIy2_pQYLsaxLI7IITYXVrnKEvfR2fDkr8KF0h0Qz5Vz4fAp4Tq-IZn_vJLFuJsqBWJSUWj9mCg8CS6DNc890VRwdo-Qo7nJtRhIzH9VGMCdFsL_MUFNZP2_q6CcC-dTvUmzIOYMEUMusfNBQr7qhjrkODQoWjzuU6CN335Mb5TOy2mVkf9F_6PrWvq3ePAcHg6ZGCvn1gpShbKAnTShUbnOFhkOEHJ6iPAhm6H-PEuOc5Pe-mKlR0CielVyqKrq6UkKNHxmUNWbeYlccRYmXhv1iOYMc2moSw6KoigljlMLT8Rg6CLoEDIG2mksmts3t3qhs_7O4RUt7ZnS7HYvkrXKGMYO8PZ0EmIjy_t5-OaDFL5moYWt5cE8tceml4e3vxF4mQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6790a54c7db5e0-28607051','','','2025-01-22 07:59:23','2025-01-22 07:59:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42064',0,'cd-form-entry','',0),(42065,0,'2025-01-22 09:07:10','2025-01-22 09:07:10','{\"firstname\":\"Jules\",\"lastname\":\"Trott\",\"email\":\"info@transformpt.uk\",\"contactnumber\":\"07577339596\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAy8K8BhCZARIsAKJ8sfQZS1ZZ9oCWINqcYFNlqmQwENo-KHN2d8XPG6qr3pro8h8TI_Q7mugaAtzNEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5JvcWjTnP2dDndPGxSigoiK4vbQ9wpU9PGIzr4hhwSvHzD3oewLKqMYOayNkQtnaLvDQy8FtWsFQ5iOc5ssryJLRYdVDnDqaiOqcIBZFUyRhtl-7heEEy5U6r6OuYakbr9S-6biSH84m2XCOHU6BxTr82OClgYwmJXBpIrvesDB6IEWzYRKIa1IS_BpcLaKmVjak3v7ebr0xC3qCyMe_GYgMsNGYcSrLZoOMyPR14-6PkTjvL9e-GT_ussKfg_BEHDBG_nKlmCQkKKmiiGQtavFp-zt98yUhptW42CIuHjB5OTLZfLoU2YqO7Qy9K9VgVfUFNZur3JdcGyFmvVat5jrUIHpF88caI6wQf-Fsml8dqnvyVaTc5qJuWwjOrGsXqlCN0YSC3NNBEpVXCAMSXo991EbeOSDTUENp-xSDIB8lQORB2vzxGy_Mau6kELP5Zc9uz2YgRJECYojq_05Rgo2PHmtn8nbFQspQzd4hJ2TgWwNXzyx7Zt_A1ni2eboqPbYtqh-nl-o926qgIG4b7X5hg_VGI1CcU5U0KASyIWFP8ylamwrNmxDWishpMJ41-zvqvHuSzKsuQb7nLsnOWAw--yA-7RhA5wsYU9gHgwWkiJjnQFx4iR70z-JSPN30OD2h9GoqVENZmx9XbnJLDtUL8IBsfdxhHIbjpneUvuYeoYtIE1qXpOXd412JGoeOgZr22TqN5EapAch0C6x_pzHe_zga4LzUHRPjexMb0s7IGIwyr7d9nNm_8Ku022e0X9J7-VmDLUgBxRI-5Bpu9DQmui8tvZeTWIyrzzbYYLJBlLBhSFz3u8jMvcnPT_A90Yb0CR5SZEAwhtQSuXBgKE_hirvVRUWCrypzgW-gKeY-o23vl8BYYtngfUks0X3kJ2sNvN-s41SqhWj6K0OATdntrzwxcmiIAUHmaSf_e8SBcBuYe711LOQG3VqLLzXD_qWexapCPyYAhtr7XEGJwv11Q838PNtX704TiHQyPaRqz0WxVZqQWbpYSD_D4rrHpGdod2l5BypqWuv2t-g5BQSiwCej4cHidOioSYX1WhTn1IHf__PGu-4ekgCfre2PG9wo0bhqbHn_NK06a88cX7AurhVB5Iqn_pRoDxlu9QvgIdxhvt8gdPPy7FO8OR9FOsFGg7XNjGTkOJGMLF0VB0yxqBZNntZYRSiWKp1DeGq5cfD11XOuYtLPBAhJp7JQzhebsm_5b2ET_Uz8pzKclShTykEPv9wrFWpH8ND1KiIfvd-aZNih1Kwh1S_CUP9YkBi1MXsdF94JtgyE5zgwB_fm2DsopJZ7vTPf0UI6Q88qExALTmUguDxiSyDkRYs38U4JSMglFeBb-sDruoScYmnRk1ItksOnw7xYofy_ofOiXA-Wi9M6XkbX_woByQrDg_34qwx096iZk9ON6BrrOw10sqfD2J0t9I8Cfozb9Cz9PxhB9hqRxQsESEUEILHhaeJtJoBW0yA68AqAvVUxmg3feHT3X3KyBq84Lqv0qAWa1FrH9cBc3BmBpXluCIpwcuj9RSC3nD5kYfXPbyygZrH8ixmNB91KhlVmxapA7RQxTt5R7ghBWkVMubHD5M42nEvm9rfAhX6MlzaQnsfbi13GsoL0_l-skTuqjzF-Qh-VFMuiRAmwYKz6hZlV44ysp7BNPM1DoOa-SYfLrTBhlRk9Bl6wdA0ztq6-bt9_dWcqCYvbvrktFpo7DF7OkNs2csoSyRzzjhZ1b63J7YSIGR9alkL4OZQKpqT_-ARpN5M9CnIuXKRAWaGMhZl7-pLfBltJcu5D1HrgIYvm788VEWcDiHZhQgA4daihg6JvNJDbMEN-YTRyEyEI2EB3oKO6_I_AH-aCmRjes6QBmqa0rJalk8_4My-sjE85FCnTOVuUJVIYUymZ89NpUSwjNLmyp-xRuIhjwDaAe72QxiCfX3k1XzD7XkrmhXZbdskuQRPKQlej2Cc_zjsAMkOoq7h7tsJDbH\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6790b52f90c401-46228392','','','2025-01-22 09:07:10','2025-01-22 09:07:10','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42065',0,'cd-form-entry','',0),(42066,0,'2025-01-22 09:08:50','2025-01-22 09:08:50','{\"email\":\"info@transformpt.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"RG4 6LX\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAy8K8BhCZARIsAKJ8sfQZS1ZZ9oCWINqcYFNlqmQwENo-KHN2d8XPG6qr3pro8h8TI_Q7mugaAtzNEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4n17nD15X93vZ05XEa4zyq5UOyZvakBi5kUPsXuZZf-8QaMkwQKyaMQKyT5emgkMda_UUCeY-AQAuOOn8x8eIHsxvJFGE-k95nLJGdtKfoK6hgZ4zMKZfHI5hyXidk_wMlNzjMMlSOtEXEbaxnxGEApLe7FY7lcu3cGQVH8HfBaYxiLKw7uA7ViAHRY1BExXX0koxYwFlawDoMMhbqPziRUWoa9N5NTwYuufJIGFzsIVD45H_xuXJwPkWZI7WSXpckJ1dBsOlNkXedYwnGVau7l9bLagRNK_4EePKLrtT4nd1_aLOk5IVbiGeH9HrftD-yAxzvkfZ4OVkW_gHwJBqGdz96B2CHBByGW5Hitn9ORXAUJqWjvdrJAs9p1PysTrnwGG4c5jA9Rn0vDvdoDvxa51gTt8gvchFIUcj1mqfSA0h3-C9w3MfWrbG4ugZmvmJ4Zc0mug7dmANgil_WJVu39pNMG1GIFC69vrWmUJWAWix00MJjZmW0RK0a4aMYvdnA-EinwaOwpcsEvvQqZMCGkt3_A2OybNdHUE0iiV57xycmyv8zde9sAKHvpWquYtxnDWRFY0wM4yaSfuTEb7DattlYNqo2PEL8BFv9cPSJu3bEwsRFkvJ8ZqsxFdhdgMJ1hG4H92wZYURpGpiJX6thK74zzj11qEbAN5Hz4V7TTaySFHdHcFgdiZLDnkyR7_eI3V8z3z6d4N5_lvM9wFmu9dxqZFilAEEAJRq1uABwXOYi09_VfpLorKz8xzzgclTHDWaXAME7gjw7U8KRNoQqCefs--5OJRKOQwfzsfAOu2gr-b8buuJCrUArAn78rSfwGFKqLI0r8mg4y6nALkYTTQou4LpOmT-CObeG9ivfHZJMR5ruDsNP6mC2E1mcThys9Kt9yQbCf4WlSsNumzij7A6pWfOdYPxK_u6p3zbuoyFs1H57XGzCGJvQUajVOIq2HriljUQIE79Dkiz29abtZTsYOjnDSRA-G5mmHZeHysm6mr5n-MhWNL3CPkExgsV34fVcIATau1TTj8nAfHOSpA7uQ5kF5fdubt-dJXw9Fk8RlQe90BWwqSrqclTGxhJ6vldK4nvrGybff6L1Ezekr1GCummI3Y1HDWYaVDswUx5CHtQ3GzgYFGFvHyeF8oCRxpXk9D-efqMIK1zFsNRVxoIbXijjKVAgLp2wWwBIEHtp_UkArhufnx-V2sJKR2KU98c4Y6yi7WepTmsXDRqXN_tzVNdwwoM9UYgA094PSaI3AWlkZXT0DJtBm6n8JCTeJjcaHNrU04zety5PKu2dwk1-jaVowJ2Xfl70sPOdvl3mp3ew9xBX9P38Yrqq4LCIuIyCMvkkQ66DsJQpbIF-7kR0YzawV-GUJnh6VB0HyvIeQvIS8uJlzC82HrrK2Knag8nTOSuLuvIDvnhp8o8LWf24o1IDwTV-MaYhrUsJxjQ0HMzVHuBzIfm1zO0dgdSDXFrUhL7QomWkmSd5qS7kCD0p51VSVvBvgIvA9nrYyi65PANaDKBzyzLnH-gCIqT0uD0NyNyGLykIodVS_UNG1WtIde34A1I8r6ecC-Sc5xNRYB5l0GIV_KfyQctCCq0qCTYRctaNUQYZXy8cqJTgSGzQ5Jaz9ZyDbgG_p6-NW-0V72xMP1-HVHw5l9wGARsO8p8HkwwzUu1NZ94mrzEr6J69GqaXJyOzZs3I_LpPL8NT0-XIZeyJmGF14WGjlAgvV1X5HsMxfWe8Mx4TyyB9EiNKS9Hf4uU2ZeGMz6n_xFT-NzLypnA8pWuXIvAC5l_8b7Y54bXPlg-Clu8PHMNUiRLTUKfvSN_-sNQkSf9dCqN3dNFdQUYKM7w5pNyWkTR5nG4ZNJ_H0KtF5pgsLT1mT0i1PXK_H6OU3LBgNUd8MiHR-LVXb6R4VIo-BJ5zYJ63uZJaqmJYTv5BSc_OvCVU1Udt0slswEimyuHHTo80QjmpLqcUfL_U6Us9HuSeww85IZKs\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6790b57808f520-22490300','','','2025-01-22 09:08:50','2025-01-22 09:08:50','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42066',0,'cd-form-entry','',0),(42067,0,'2025-01-22 12:25:19','0000-00-00 00:00:00','{\"firstname\":\"Aloysius\",\"lastname\":\"Chukwu\",\"email\":\"aloybodies@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAy8K8BhCZARIsAKJ8sfQemIvCHO9nqzotuTzBQtEAo-NVO37cMBEFBOIITK1QFwOXPbNT064aAtSxEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4OugsL514k7D0USZYDHeGidYqjb--aK8R3EeN0JqqdYRpOhZQegm9-M8K_V_hAFj-b8LvQOWSer5-s0nlhiOnbBmING-_Dm8aK51WBuZoxbHfpSvHgn2aA9cZI1EyGokeKKqRXmt0pSCfGJ7LM3SA7yBFXk-Xn1OivNLio9LlC1QdYWajw31g8xTDg233SdzyeFxRs4J5PJ6qGgO0Sd73DIlTTo5QN-AIG2ijChmOflDVkF1wqphuFyVgEzhHfyHHXycDMprSItDyn_sS05rBOFrMRCl1mGp_RaBScClkDRjHN0ehjgHYd6fM-av_DQYDH0plELSABBISz3ZcgSermq-PcQIRAPXD_MX8BoTI4bNqXVZMcpSP8UTorHiQVb5RT9GSO0fyaAg9ecdO1VVR-nwZ1EbaqJ2WpXr0AtinBeSZp2RyKLCrNnJQi6E-Z_73HaIyStlQpOHiFQ2eLqTWCvR0vkxoK2bQJiP2n5pDl9wqngwLlJiRNWOu-dx_tFZ_jawMPpgCTA5pKU0BvhWDYJqD35-B7Pyawe8lOGgbifiyKzjEQkRTyprTJVUAh7DSYg5vr9LODz63Bq60Xjt9NjNwMUw_k2a4L9Zr4nrh36ZJc6QmSyUt2Owq1MurgC6VXb6q4yWMrJ6LNZQSyfM-9XbtE_o_O62AGKMYD2HUtH9YDqVtE0JanswowtEBmpSY9orMoUnA_I_WekkFZ0vlcW9yHxbOMq7JGWJky3sFrn2wzF9V_1mThrse_ttisbTGNcazCShDjE6_e_ohxCXWXXwoQ4rLIqpuLdY27QRNeu1rLJn8Ud_HFC59c7E-8IcszK5eIiS41w_RVwsboh8RFaTEnQDQNfZLBCBDZMT80_0Fg2bZeD9ZVkRlCtSb23w5NZlsY-TFG9Lo9wLVufNVkG3F-3CX1qj6Z1gtLFZL9JsHudeuGRsayOsvKy9I7Y7Yrf9-Z4xAHbVQAPZNkELV3-U2xrb-uI_Zt3xJekf2maElIeDiQ84SpKj_xvEECURqp-8z9OD0zYfOdlI6-D13qSIt0D0lrkskSN4zhDOXjgaoh7CI8DTpqAseqj5buVoyNtWG0919oySqfLXvGrgYChTRIfILenmOVL29w3feitW0axMxMAXujUVZq6Q0jD-Dzm4xXWK-9kxMZNQLTpUxFUEtIA53UZvn2YhDK0CkzcjYe4Gm_izIw5GuF5IOcj9buV01c3Q1F5uWaz7T-VOuJM3GJDl9Djy4JhyTzxmGLqyaG4X1o3bwbykqaKiibTHv5PyY9JFS6ravge1GLQwLiiyHnf29EyoEPoSU_gMgEXyelRBRdr7GrRueyAxgP-5ZbaK3ZAuBnKOv9meWaZmvMvDutLtKUTmg395SS6qbHvWjMcIB7Hc7TQOFPvLKn1tRNR80_KWOaWZcLS_GAxXPCw-wTIHd6K2ZNjgW5D0U4bOzdNL04O2N_4etTc9uRbOGeLup49VlEBSs0m8xoYF55kT1CL253yk1T1Q1whMW8Rk3Womug1MH0aNQH5O-xK17QBQNCDrwpB-_tZ64_HWvENmDyTbOPZry3Xd9dZYdFwBMLQLFINhJDtMCgl59msLHIWpIVBvgt5FG2Qs9ULgwGGRaFq_eDgfJQrgqJdHrRa6xz-4QsdVpBIplY-G1VOHdizhXDOCucti8nYRNm7aj30Mtf5yKr5w7tn0EP1nvL3GXG_olInh-dDuNM7rZACIldUd65ThB7dQK1FHjdCLLcOcsIm_YuZc2syIy-YBIFRI8Tq4GNhsSJjWDIWALNMQHG9XWocWD6OeoiD5kiwYtiij6MKesQS3XVgi05Cqn9JSkKYbSFRwEW-AwwQ37bnOQwlMZHAxp7jLqyqMrDwgHwCCepAb27w4hEoPClIdio4-R77vBxXZhvmQMNJTFTMGsbYDHHvSkqcq5tbYyi1xBlep8x00NLSuVAuwg12BVJkyfVV6o\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6790e3af642f65-76378229','','','2025-01-22 12:25:19','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42067',0,'cd-form-entry','',0),(42068,0,'2025-01-22 12:27:10','2025-01-22 12:27:10','{\"firstname\":\"Aloysius\",\"lastname\":\"Chukwu\",\"email\":\"aloybodies@gmail.com\",\"contactnumber\":\"07475116232\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAy8K8BhCZARIsAKJ8sfQemIvCHO9nqzotuTzBQtEAo-NVO37cMBEFBOIITK1QFwOXPbNT064aAtSxEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7SqjFD4UGllBV9MFXgTc5OXzKbPljXBDdkawkQRzZBWZD8eDiNOmcD6LLugtOEU3-ejxus6gxM790fGtICE8D_dP_zbxJXfSX_g3j2RJ-D7MwUbXfFt9SwZk5tyBzXSYgON_uccmLraE-NgaAn_RlVa7Ap9Bd7ONF-nsAEOdq9SHdiVfrywdbCyrwRywA_HKLmvPd7JU90xy7XZZ7iGEekilq5wzGPzGcu4UAJYk8QrtkU_UN1gaxpy1L4RZvT6wno1dKysIrxn0U6LBbN1uiLlFp7LHVWq-lggUFXt1C7J1RQ8nIg2l2MXTS_BN4anPn3jo2YAJGqsfwAPZX1CavVG18HbBE6b5uxSHsPTQukg0iXUUYBuGXWRTsSwMGVz6_hPuVwdg8VTlIGaVccKMdBoKsN1_rlYrc0Liq_fH1YhJo1dEeIYfTEfT2GA3fHxkyxav8ybTuN8Y-goa7MZc6yVrdxaJRhaJHp0WVDo93qT3EQX33YE3LbLn_b-9L_O_L77swxDY2m_WezUuMdRBo94rn_1T2oICNIp7rCHGuS_tdrHIFPgH4VKS9ilvZ8_rq0XK6wJroAKE7S_zR6lf2l4ZMhDwXUrHU5aLGtI6K20TS7yUMrHN2Ycvf-3XIfL8GI1FxFEC3MDII0w8hIgkfp3wS2k2N4Zk059O9XJ7WKOTDnxUg1Th_9Nl7HxyYa8Ftp7MvZEFJ-6aZkqBX8rf8M3h21JmXlqAzwL4edp3nxp-PXxQMHm2UPHsJnZmNvr_xmX-vQ2uv9vqDrVEe_POjbca_0hdd47EQOKxvWmJvW0N66yIz1KpmKsasi1negGpJca5t_hpsEe4xBAUlbSnssCXBTjtX7Y-3wTVn6mTgRbxe4GqyEfQqe4030VPElkX8ETpoQOm0s82TC51q2k7IocO1-v60wxeVcMC7RhYggfy38R0d-ZqWU4S_RahEOXbld3JF1gGdlw4cjodyTbcM_IeD0zBl-MfpqYf9eLyYzHbwrHiMrBT6thI9n3dzgbQBe2Z7AG7JrLNLC-Li6N0nehlJLGSJr41xCDUNUtNbm1X0x_jOV67ivEqT-ge78PLd6r6qEldC3eJ_qRhXm7B33aj8tmioLcl3EWyXOLxwY0cRQNUOP11AR34buQpjT1_HLmKoxLRuOxAIucZtEUpwsQk39ynIVVDQs-upIfJZK5wMNrjKaRVv3gY15bUPpIblB_tgfy7y6SkCOkFmT_8j6lDP1M_QsEpyRAv6V1P_mpPSBg5Ge4-bCq5lYGUx-nLNI7Cuc7ZxZL7P3JG0UTCXiEJYPscTq6GwYYyoL1f1i6LAGqN2SSO-6EBD84122ja50tASJUUdBb_tQ-MRYVkgoFLra8mKG3eggl_zC7Jw4rQagPwx9KnaalJX5JLbnPfVHcQrwjnDjs0lT7aAtDe9_QUlkMA6J30IrecQHK4-qYgwcqr7Ba-EqNhzYZtycwE3P8IlFFXozJ6cTwzEQtDbUdgcuN8J17xoCzhf_6O3vput53kGl19v7c7-YkB0EQlZLL94aZRJBTRz649iRVrkdHWmQ86pexnhFRgyNqXdC9m1l5lY4lV25jvRRu6zW_3NcRlC4cjhWElZHm2cuTTR_bUElBDjCzAM7SKIzQHuZvYt7FiC2rvCyrLqEJGN4_Ns6l6D1CMrMLJYuClAN4RQRywNJLvitXKYIm6yAL8rjbRVRkI6IEVs7lwz6PuvsfZU94pNssw5w7JSes82MMIWUMQm-qOq4H9ZivUpWqxsPtRr1IGTZJtWwlQFLlOPZESvKng4GoW9Qnpil1LqKLELBu7sxCVnP39xpWrlfvq4FRgVttirkHHYiV5dvPjNtyyUKyPl6ZJdXsaguWatmfC2zeRIn-TgLltm29wqUUSCVAGYRdQQClsRtwJ4tbxmMVRJGmPNqGVbvGk-CCs94f3SJUpDl5ZALIXg8zG2cdHOar75vA-YI_YnBTSa5qDPCPjEBjJkP\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6790e413f1a083-74734595','','','2025-01-22 12:27:10','2025-01-22 12:27:10','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42068',0,'cd-form-entry','',0),(42069,0,'2025-01-22 12:43:01','2025-01-22 12:43:01','{\"firstname\":\"Calem\",\"lastname\":\"Thomas\",\"email\":\"calemthomas@icloud.com\",\"contactnumber\":\"07538900788\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAy8K8BhCZARIsAKJ8sfTeVuLqNvfizeFRl0IApHl89zOjND_uTbUIbV9QY2RlycH2qfrAkR4aAvdtEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4mebpL11dsbsXq31TnWfRH53NxuO1Krt2HhB_KIuNhjpNOb2yYWny7F6XjhPMDVyFC_gj_vqcnqyMC3Ww0P5ktEDP5xJbfpxiB3fHrmfIoLpwQ3Ku-tfCnt8bkxfMY_uZ9g9tPIps4YIVLhQe0zpTGps1cFHYf6FyOaDZ_BoBoP_6m9DOP5_sFmeDRbb0vE4gXsWsfanBKh9zcF6JufwCpIOrR2yhMDAzm_ufL4oHsyIdOonMGRhehRCvhgrW0bl2WHMWuiyDk52OxcwYfduaGzRTo4Epkvh1xoLFMmeUoxn0fLH3f1JDM9uB2dQWYikUVhY3MgaX_X1RwCYxBngUzisLweLcxXQH8q9Ce4NbdLX5faqoe9-y7v8LPcUfXKWR007ds3a6Qwo214Bc1a0f6B1jwdKKN4ouaetT3fEavOtmpl1IXHkb0vzx-Eo7KpKnkQ8pQzWgNgVTbLiEh8rzFzIQebRjtKU8SnONtmDnxpqNYeQ8eyNB17C-RhpO7QZ-jO2D7ujaJ32x35opMQKitC6plUwnsPq5fw5kXq6VabbIU3e_pV3EJBAB28M9l7NA1HOOWM-50IK4-RMowY97ry8wLWxg1yttxuca-J9bihq1dqDLrpdEdH1zcR7a8n3Jb-dt4f4Xqs7r7KBSCn158oPP4OnmhZffYo0w5LuRI8NX8KxOEg9MwURtUvZ9UgBHY2yHzNXjaiJhh5MTeMWhRh_AUiUB3c00Zpa_-aECixOeixulqe7MR08zI_0NYMqp8S0Hdnf_Jh22Zg9vtQlLOH9GoAWzMrsgxPn_5PA7nrd8BlYo2fI-bjc5fVrATIUrbA2dQTTwZUwwY1Hd29ws-AO2TqIW09H4qroa5F9_napx2iLc4175mWnawsAUlQ9I3J03nqo68W8SzKdbhQ7wi3L87IU6SP0bOCNgddjrYKfSA5W3Yxd-hEpBW_mnqj1anJzK_rPF7I_TcSp-XU0nstP2T2DZnLV-4UgIgEZnlImL-T_JuDftIFVhWXrQDid2d1pHjRY9IDZJvoaGGDv0fNSJepx7s5nXE_Olx8JbDeTUup5xsX0_l_fIPRx_v1IK1Afu64ZmOorzTBYolYVXs-_JWdD5PLZgOhOLDuHVylYOCy3rVakMA-fqr_zfCliE-BY_kxcJJxOriQfZbkvGJtb8hBj0_wgGTAbdwZStXKwfiziZnivf_3JHzoh8_DsqcPfKzoGO-tkJ94bdE09pOU2cN-S4e9lusHZcKI4IVsV-5zMCFJW5dSYUy-yxiTE-Y_OXD9qk4c_U9UBr62nm5qf5KmgqcpO-BA_qOKz_d6vMIQUNpHcVVDpbdoc-vbUJVA2T_3rmvMnwhbPgEDsczkIo9vlLuBQyZxZ048g1Y8h7ArKVTGz03FJ34AkQQy-nUNkRJkVdQsjHdt5pYhsFmKGfSppbBONxF94DTMTkXVvQYbfZOpRLa12LjH-R2x1Qg-u6zd75H2I4Ggn44O15n7YOSb5Gfh8K7gG-Ce30MDAOFmjCO8vL958ckBjNMYqPHdnDD4H2Fp-eEFfLXbT87SMnsSLtp_WwgXHBmTDpC1kWgj1wP829cv6XBJL2FOO1Tinnk-V9jMAEyye7vxq5dy2g9INon4iBCkP7Ob1PkkiIoc7vquADZxz6KbQkNv_jKAWTaOojhx6xWguva25_Ajp2cxgApA8bTgL25O8mX-7MKq5VpuOKJFY1z-2doSQ0MIQEXFV6wTvauR-2a_U_wL3mDHOf4s79nvdvYaxJW1QE9oZGIwx1xn05s3c9J99Z3u96sLdSnP0IIA117OSEasoANpAOBiZyOVlbs9QQxd0NsJPKXUMsye3rPRgFSGv1vQcbuNeinEav7TWf44xOReWVcrGC2Ok0UVF4_xxseodEs-tOdkBRSPRUpBe28G87vSm4QanUq06ksUFBNVqHMLhUAD-9zCLBOn1hx7Mx5lh39UlI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6790e7c9dad203-14918680','','','2025-01-22 12:43:01','2025-01-22 12:43:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42069',0,'cd-form-entry','',0),(42070,0,'2025-01-23 04:10:17','2025-01-23 04:10:17','{\"firstname\":\"Babar\",\"lastname\":\"Ali\",\"email\":\"babaralinisa@gmail.com\",\"contactnumber\":\"07445224567\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAy8K8BhCZARIsAKJ8sfQ8yEOOUExB1v2x75ZFMX5qbNhf6H6KskYA5hiXky32mRbs1ihGrEAaAge_EALw_wcB\",\"recaptcha_token\":\"03AFcWeA5sIGaHnY3t2EjvnqJoJcKLpWu8g-ZydGFUk3i_JFiVuOOiUiHuxoOdtqLNbfxyCMg_iy4EKjpTBh_bOxxyK67VHRNsu5yvPbKcOPN0WJvTsa-xSOrx1LKZaPn_eCByZT1qSo0cUf2UmYMOqHJdQEjOGycAI4LdTbpBFA4YiliZoBUnHksyu32iKn6l45K3U1ZhgbgW6deOQG_vtzvVo137D0_o29ZXHp_DRY28Wjvl2-SLYx_v6RQcZ-6IOmkpuJiJ01VLzLBXlUKPwkTVKVXxN1Bv371x_C1mYFS1zOssq4xZyPVOrIXeFpEnuT1vF5raYmbtvzNnPGh42scAiZ6ALBIaStKBiEwLG1E6Fg4jqp60JneyZyLITe98iJz6y_0cZGkOuhyFzp_L0Eyps1Bm66N0mVgz-oGrp2V8-1ecdzWcUXbMjx3hfwvR1i_i4w9qCDtO41LC2kqMODYhLTfUZGxF9uleFtyh2jRdPI0KMeV62yyXR0u2HbtSH6Ig3ZIWHgVb8UYmEYfpECh2byrkLlQLbYhXJm9tkDeVFZk6Ym2X3vq4mDd83ctUyLs2ZXjSOQSc3zb-ctXvEuMxrOs1XWFlFIqvz18nVqCWoGADNJrNvqTX56wdm3wF71eBVEAfJekgdAwNkxZJSr7jja5SSoGR2-vCd2tFXuf7j9GCQdDCLh1GSUDFYfN1ZVsGU1NTKUXhHRUcgFTBD5_U0d_QynjRoxt4BZ3sQJSm3E2uu29NpGTuDoKmM83zOAjtR97Htxl59_LYPaSOHQRp6lqLftmTPeL04kKwOURwicuul5loI6pel_oNEAwW8nAyrFefhIWjtB0ca-YNliHNcKZ-bI1srMlJKjmqQwk1FK6FlTZ818WHTrIqEfONy6DWbQITQtIYf1lYgxdVm6X36i1I6ZT6RL33cKNdcmCZWs5mA4zOB0vthS3bERuI4GqfRQyDpuHg7IcQV_QX7JuvXNRKtyrwJQw3dzYoYMy0r4NBTkhS81aDUrDAdPPqRIqVuMLEcFBshg9Dz6mJQ1oiAxbZ0_-bf7n9Bvv26fr4TgO82MFYP-vz0ykkjAYJmuA_1JBPL9wTlk0yVdbi7ee4f2Hfs46s9flsjOBxcYiY0pLesD5XPb0fzeP8IwkCF_UGA3u68q8IeRMjHSfjqcW68_mWVk_3m9b1QbyENhE3paMCfEDr74N5QqbxMdi_jeVYFFYPR_FIWOasWAtng_-wE5ZVo1XbDhrWtPHEa3Z-3-DN8afcFmSrM38X5wR1iz_TzwpvicHVZoUlSvLI9Y0sNZQqkOq5Y8kRWI9rBnCpE8TIomKxZk22qQlGlsqn3eKHIvrVaLph10wDdT_eGxTjAa394qEcqIf5uN8MuYLY1s68n04l_EPy1gBpJbk1gbEIk1nMW9TqUuiw2Hh7XssqAxrPoOe1pdbsyrhvpwZQ0bJdnWquGx7HQvl3K56L0isWQewquzT2Zg8mJ8FkEbP64qU6iyW_adOtUpdyCaqO4NttkzV5Sb17vvO7qcrk9OQDm5xodgFtM6YXSFQuDVvjRsE4dGa0xO-2mjWuw6FLzVOHlFzqhX3s3m9Ue-RC3X_DTZNbsktyLA4IViiHzgPluQMfPzy4WRvoKVGhVnx_0fSJLPHEd2gWRkeTjPg-1FMjUOIMddH8jsMcx3CaMmk_8tSBOUBaANcZFqwb5ZqmhP_KZmwi2RD3GgdOmhA1VtFOq8yEEhLLdCQYC4xL4SvodGGegxDbb4RnAhhCPwyWi2ePCKt4VkO8onGfWbnQuf27Zw-yQw9GGFFKTua_EbKQJfPYKcuWt79nr_ync0UfH3br1JizOgPNB6GCe8y6L_i6O5oJOWbS1vA3WLA6eBYBXO_PoA5WBEEhXLWwLqr2EYayGY3QwyRglPSaKJWzh4X8hdEAEsKhFrs7U1sqVljEegSQlaV_NjMIW7BHCMX5tS8-IBM0Pkx8tauQhOV7elSOgM2vQPB7N0Y6SwX6acvPuAnWlOmcSQdZi1LvQ0jXJF8qPN3nNqhf4-odb3FRS_N_TjINwCOHsUfWRxlfT2MNrqO5g2zBnR3ppoo1jJ311imIbblPReI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6791c0b3ae9428-64608342','','','2025-01-23 04:10:17','2025-01-23 04:10:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42070',0,'cd-form-entry','',0),(42071,0,'2025-01-23 08:48:29','2025-01-23 08:48:29','{\"firstname\":\"Laurel\",\"lastname\":\"Adair\",\"email\":\"Ladair26@gmail.com\",\"contactnumber\":\"4803328988\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4NKgkntX8MMbc24whpi5vKRrefJ5DZn6BVgOw7NBLKoUvx5w4E_8eZOrjaUm0umhhTrlvf0DIO9tjas1gvY9dghzS0tKmsRhFT3NYgmUVINQ7G7ueh2k-Fc007J54_v5Nfhr6_VPDlS5QoFR14Hj_aSpKpNPVfshRyYKGsff-KFaDlk1lqTRcf4C8rjMzuaQIOqLFZQqIt3I0mRsdXQ6KZwbfpZ7X1uoR9QOy8QpK8nKy94utfGoTF16KDx-pqViurEiEQO1gMfMoh8Q6jAXU2F4fdz_JkXA5d2HKPMXPYzFyHWJSumA1pm6Rza8XS71jcareOsTwh7h9FVTNf87mZbbQWGepyoCMhBIRi7kBChZbQXKIwqtdFlYRx093nRDEKsrFZJuTdhzPONMfsQ2BCJ0ig8Q871DEJy2r-tFoSQBeEPzC-Oh8dnLKPLbdEHwpBpOz3nNP69sds677CvNGspHULi1y2N4lVx_dSy_zUG1XVS5C9igUGXk6NenPH3zMlo1KrOAj4fbjIfBql-utH3HBSCugCmQQLUgkej-1hWWl25FWXZz4SlN35synW0cyBEWvm0Vv-Of4tdIdV1vAtE0V0lOJ6PDd3CY_wZMrF9Vk9d1VI2HO4JuIClSnb-W0YuzRrAiS1ypwA7sTbClaAxA_pJa09o9yYgMjLq_0rguRKq0ZnseU6AiCv7pzT82vx5-MFiI6GZK3pm7k2rHr60n1D7W-hMyqU8NdEuttF6ijFTJhiCJx7QqupDWb892gB_CQXidagqzPz1exZiIoycpquk2R5dbHZNMBbYYKVI4aF50_-NWlpwTOZh4-NHK8ix4X9IOkzvLAwcC791-2rIYWfkMq2MgmS2Z1RMkkv-57mhJ8XIXA5Y3GnZqNxtotOthhu1bSYW4pukKTNwAvfVkE-BP3BsF81a-ULHsiq0buQkjiGBznz8T0syB04LNthbRmd7qcFJYFfS7K7_XGWiRoiFZjULRcWcDTnfv_y6ZPlab4AIbloBr7-68GDl0VHyj2KPT8mbzuldTZgRevSxNXFGcyRvxXG-GAl-BqrKG2v9QefYSMV6UsxAxGfwPG6tjppzMXwjwCwWWPvg2mU8f0kTQ8ST4faj7meO9_XxLn3ZYNO2Ec95XRolpGefCoPEjIO0Y3ZsYuNWtAMY7E1O9OoAGL4D02cHUncCIXE6elWQjTFQ49EyU5ZKgxE-x7eFzKHqRiMQsI3_k_0oKg6vf8wroSHpz240si335PL_u4amlOafKvF29CA5YwUOCPjMdnQVko1RYzEoKT4ZiW3-XtXo7wDBuR_LTpyRemyukRumhvLnzIjNmOIWoWq4pvi8aWG227s9fX7AUpVaMg1NwBMbVFtK7HkHi_YLwsKHh-mD_DPQYACaggrZtbqBoKtdYwGmixj3gFnbOeyb1rUTyVZNaknwrbYgAa6G8sYJiltpJfFa799xjzd6jgJvLAcFNzPPzyUMiTKckOIRb0OMV4dj7_jYWu3A28K22xH_kDCrkvuhSqpERWC0Hg8OwO6zPzgHwuHJ7MaGwFooPirGNPwe1xjQoA39R-FC8WgJqTV1wZnojwoHCpi0BHS-FSQbZ9Fi1rLeK0fYNRFOTjM8ZYTMhRB9sg_DXuuPjwPMUyQ0JzAMd8x3AYA0CMOaMBvwle64hanO-Ce119w_S6bEoAuIaLenfDNFLKpuxclJlTScwtUu8WYJtCKTfh7RlPnkVPacS4n-o1WwdqD7YQI3EDM091yaEuoF_cC9x6jxWsfQ7VgEEqfHBtVmxa4e_BZRIUDtuiM0R70R2zmSHdpNlMjptOEaO51aXKaZ2FLCglo-cGox_4mPUCtj1wYiLRr2JfeMppyxyVj5IPGDz53uCMdYxKyrhJ6L9gt0aol3tDPuRNyFnf1VJqCNvTlm-IAUQYH-nTe7_EiFad_698td3FMotBc04DGmJGQ61uv33eccJ7Jj2v_uADpKoUZnU2QhQkkbfHaoIyT8gEm7PIOOnATTQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6792024a44c721-61473332','','','2025-01-23 08:48:29','2025-01-23 08:48:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42071',0,'cd-form-entry','',0),(42072,0,'2025-01-23 10:22:22','2025-01-23 10:22:22','{\"firstname\":\"Anna\",\"lastname\":\"Coope\",\"email\":\"annapower@me.com\",\"contactnumber\":\"07710546523\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMI34eyo82LiwMVgpVQBh2eTTeLEAAYASAAEgJIbvD_BwE\",\"recaptcha_token\":\"03AFcWeA6oJJ38pmFCEk001qXX_-A5-FfAMDzx0H-mdjw1VIp89Yofy8Jv5hMiNBCoTn2U48eCMb_zfYPDJH5XUGqOFo7qZJoyLYDfbYDkLHyZFalebOaa_rILmcUmyH0nMfy6-zGvituyd-qti0zWaTf8ZvDZ0LLPOjR-EwBLr3O2dB2iduZUosyByN1zAD-4-jOiw2Mvwv3h7E8TJlr0udum-4rgsVyVAs83hBb5PnkPAOfjT-rsBIurFCOpRHhxeICaj2CGO3IlzqP6ER6IPspPWyrjweFE_P7uXQabxWyFBqqgE28o3gE7-ao6TE69bZ2-mg9ma6z0iXC6Ls_RqA_8yIgSAj521sUTdOQXG16BKTgB68eaIItt0quhjzssw53C0tx2ydEqBE-V41c2LXls11FvmeazzGksHReTKJl8jEg_GN9HW79ZpCaxHyKT_LwE6RFTrQ6_g1etjRJe3SqWHZhL6vsPv7k3C01ivzAizD3ms_swJTplgsWUwunV0uA8VTvOEHZaU1X3JZhwBuh4svKt96AbGIt-axnuiuWqPvyz9sQjOr7E8yS-61q525blHHR86qDtuRp81sZ5ByQcgRJmdE3ObgLjycdw0wIqdpgij8Nd__B6uuEs9d894cosC_4g5j3-750T9y6iR8TbBYZKCOu4CHaZFCQgfRvcDxkMzhqSkcclBaHFNKhsO6MyU86swMq9e62UXxGD6RdeCqw0Zzk86SqbXiBmSfo4K7Af_U77eBjsltgn0rp4PSFpmcjsyAUF5N5myL-9YasraqgYRXIayWxp9EQEZYKaHB5q8bhd4XD1Zl-cPMkbjy-dB0ZsRjvSXHrK4mX5FNjpd8vq3nXmGBC80yOToxBhVh_WRXHBtNZcfmbbM53DCZAdVwBWrYGJzs3NxDAh0vu0-MZEW0vB139A3R96GYDw3MKYpEkUlPQix05AmkWTHZY7jqWD7oRkfD4VP0KPvPcEUo04vYYB0sEjaUQutI7OwuO0QcRF_2nGJ7E32H_g0NPPPL3WVenXXzOd0yMF6Fl-1Vsp3pcC9IezebVa2nU2hFFjiZGYrY9F6EvTGxUWmGv6NmA6Ss71s_PBKYMCekRtSy8_VAUtF3Eq9d8nOHeA4mZlfEl1XEq4FA69JRRRv1iNnWkWxpOTr3rwB-SDmeZyB9L2wdjkKUqOz2bXUJhMSxtkLomM7paOT8VkeMDRVATQRISJyQnEvPKne_Ce_-Gs-epWuSC9ceCf25-vnkwbAXIFjbLnw4sPepk_U4A6cN5lVjhb7VMCVKqtp2VidmDedT0Q5ekZNWcaXCOjNfCXTURdo4GBGvdUPNCX91S18qbzG1Npsdvn78C4LT6_QdeHRn8U1Ywbw3moZhntCgCqhFrL8fxsctZcA2P3JdPaNw4HJcXBcDUlJnQrF2N2tBH8HQJRft2DVhJeTvBIonwXp2P0ZJ7nOWDYrnYxrCPthCwAWp1pnMmq3dsDg159x7PFlnIY1cGLoYU7BLukiyYZ8ZLwrFzxYKuDzySZjdJmiPDRW290RKPLUM5nOxTReH07YsikC297lu_Sce8udLsSZJ6-g3tTnyEq7tdS5YyjxFmPZwYe2D6IUnUvyMtxqpLA7oNrC7lCkwtPu63xqJ9ghMIZHCgJLTsZWMB9n3GWysoPNYHS0-7ayKO8aRSJlNHrNEOLQCZj8aPYGB4phOEpEJxWKsrz6vS_N09ff6LwTvI07Yo5p2oE_NscIHrXGUhSTAQKVml2Chsf-A2kBZajIHaY_Xs1G6gYVOACMpi8LBI0dzT8C5Ri2cu0hXdeGE375IOFPAWq6OQRqPADpgOeUTvNxaIzlT-rgj6cc0iBTtYwuyMdjVApEHD2xXsi2XkmihxcrWpqplGRHtq_MbVEKzY22tBRr8W5NO62Hz9Hd8aiTM7-OvikTRIXEGDjuAM7Ql0zN9MR0keNPrmoSbpNid3VtkwRGyeMtDsRiPL12yqcMo-9z43mY25vizh_L2wiRvugPMmMrhADZH3kkeQsDb8sqDWNdtV9LOHPL01Nru0-pykozOpb\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679218520c95c8-38867021','','','2025-01-23 10:22:22','2025-01-23 10:22:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42072',0,'cd-form-entry','',0),(42073,0,'2025-01-23 10:56:01','2025-01-23 10:56:01','{\"firstname\":\"Iveta\",\"lastname\":\"Hanzelova\",\"email\":\"wawy@live.co.uk\",\"contactnumber\":\"07701050926\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA7se8BhCAARIsAKnF3ryJIm9MnU5P0hLS9JQFXv5OQ6WXjpUKQyLJ2qaJksl93qpKbfi1S4gaAnI_EALw_wcB\",\"recaptcha_token\":\"03AFcWeA6B_zp2oaHeOW4QZaY6JTRSICu0m29coEtCFDzb7anfn_vESbKI1FKoEYVsA7i5Q2r5VIdD1yR7OSv1DCg_NLB4Wy5m2jGGDMtZWWrG5aWjxSAuwKEMlhejfARbl_Fj2qkMbtdi-rip6-5Yi2O9lHDIxaAI5oCGDZHljXp4YDlzyr8EieHJu--UlJjs-Lqy-EyCU8Td5SMUJARTS-3b8IqOl_YLKAW1d4iYEAxZUn-sSYYICeoHCOIpdsZ3aLG3OU9mothR2ksHQB9H-qmbeDVV58zxBrTHwwXXs28c34RxMeoPmJn1BX9GvdTPnFGvGmgV8-7V8LKuhoyrVcwPbpc7wrmgEZctwx_kEI1g72fuuj2kgcRNul96DkW4Is1Q5iKo99aSx6DKuumHHg77jR51N88NJwOShhohireZ3dfJXJE_qpKHqy4kWVQ5cEV-fsFNaWtKnumawrC2qw_qppfNZaPbzFDCIo_uDIyoPAB3wXnvVN1LeGi4twlhnznObELfBlBdohGdlPYnjGTVmXw5oiFCKluhWfzzfFTIeB7hHXTACqNVhxIuGVGlV5QL_SmG95SXO0ZFdTVJXgrt6CwJFed7wMHPOpx-YCILR4FwrNCcRKtkZWcr6pBQ8yMVxIKjdtH-_WfXwt2Dmi4yml-rog64EalvSyRk0En7B24qlja8loLpTlurvue1q194TXphDuUEri3IeQxrFyiCO2vn68NePjYWpov99Dj99n-9_hEJKYPJ5Xwm1KtVO3RGnnWBAfoiJu4yR6jv4qLWXicbJ3EqNW3GV2_uMWZmgmCzW5Llf7n-EtBtbC0pLGvT3eYWUUuNzF0buCsOh4WbSaGl2ApJGp7u_Wn3qz0eaj25-9kvHUIMvxUFp0HcH9DkGu4IzbTLDpWZ6VVgaWphWfqTZ2jy2TagqTEkQZVbIMhRqG5LahvUgCV9rYTannNlxuKEywnAC2ehniw1F8ckfZae87EomUZGMyGiamRZ-tQyXiKTDOXUJ3MKZO8ifJzl9x1JqPUeq_qa7ryDDwdktNrXSOpdJBRRG8PAGxSEf0--Gnj4y5W7DhJ6OokKa4ucebrznQIeOqh34kjxoAVwOAb0wMOPn3oAwcJBa6069HOeQnJ3nk4prZ2UFOP0zeEiQZ2dTcn6vp04uM98ctDoypUjqJ9YKfhYrCM2xBeXX-VkqnKG37k_MQ7KkZFx7nayG43FonwyrHzaL39dEYcVpWCc3PmF-IAXzkMEYz4iH4rsKOCQlIWg7-X5GtQ_H_uMY3zdBVUj90VHDHhhoNXgC8j3bjXITnXTiCmBuoKWR2DFr4c0xQHc4pCPpH40vTVPZe8Ew5wUBeBYz1LXavbHbirbODF82fs0vGrgdl3-wZ6RcFEPgfnx6_35SyNbjGLnci4hTYusPtbx03-7GWXH65MovRQRZzYpxkYYtdeW-ELzOiqwAHYBeK5wQ3D_O6RI74iqcxYBKcqru8OrDaJIGk4ChyNj8m-HT7f1C97cYIeyykoYrMhfaYUv0oCNXG7GVxXtkFS8tw4a9lKAIdNNiINdqO6q9qgDpF5IYwrR_6k7ZezMnAOBh5C5zG5QuBmiece3beKD31Ed0oVmzcZ7Hi579OWN4b-abjtdcVeKfXMUPKgHb2B447W4qZnCrwhlwWb1tWEn7DJwMbdfS-vRpviDqXFU1r5vfBBrXqcYDplGhdnUJ5hNEzkaoxBBKzk6evE6nBC8-ok5W0KQiHpKcNEXrB773rfrWBHqW_DInC8TnrLkv8EWI9eETGQXImNWseD2LrDjdejbnffS4U2svWItHdv3ppc2X1RXz3XxFk2vmbSqeB2r4pv9BOXB4OXfWxD72Brk6uFhDFRvxmWHWK6UVdgMMSpdSPjAX3EEYOW-602Dtm5KxewMjRLvCFd_GP_CpgRFOLi9o7VoYaBYpcXc7KGRTg5EWsHwtqShC6Ec_jXCHtHewaBFuRS3JbPXMnVKq0uQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67922025aba739-44038858','','','2025-01-23 10:56:01','2025-01-23 10:56:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42073',0,'cd-form-entry','',0),(42074,0,'2025-01-23 15:29:54','2025-01-23 15:29:54','{\"firstname\":\"P\",\"lastname\":\"Pilkington\",\"email\":\"bonewisepilates@gmail.com\",\"contactnumber\":\"+447721034290\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/\",\"recaptcha_token\":\"03AFcWeA7qmfT40b8X_i_qYK90QiEif8k4FPIILE_kEWBcj9NzOOQPmhaz9RoY-fhUYppE55v-v5GQRdm7ErZDjBvvrdeyfC1DCyPmTq0Zu8ghvKydIBSxO6lRreDllkekA_3K5NGHDvjmLmWfGtTQ8KE-Vr77EEyn_ZZ3-sbKWww2Tj-tFmkiwqgsdUV57TiD5ptsSFqjxwqLGXmzO0E_s-M1_M0gwJBSfma1zvYd93VX315-Wf6Py4ZU_nJOUDPsGTYSIHI-JThvI0A5rqjwHKqgJqHGZKqOTn2v0u9ErOkHodS1aockyvPQDLl6V9m8feuU_-qp8n-Ib1dFIRR3gOqdgylsW1c6Pmn7Iiu1YyISmwOYacIboTWpKHCy_FDR9CfKOZ8xNNPcUmpyitnqbkGwb8XOkAw6vVY3OgPw6J-fGYVOZHMdppjaZwmqQkqDjvEKCdnd5bMVK5kcCf8a2RvN00PKzcZbw7hdpBVEzVfXUz0iFzAFageEBzAkfnqBi9Qt6Q_VtEREcv1EX4XD9mehURv-BH8_rcXtHu_-oHqyRwN5zNS3IKICUrn0SwVZa2_wCiU3Fl-GsDqMOHcr2T4_oYnURjE5ffkW_YU2UIJGVTfP3eo1q0DqwDr1tR6sKdcCaFOhznZHEPuBd_r-4OQlQAKv3BvWEHxqRJQgjvgc-zNXYVjrxgEVSUavIQbhGSUqzR6aRFlbINoPSB19OpU3jPxGTuKdE8c2oKhOapfmLcA2T5lmRNhpQ3z1JD4nFTNGZuWWiDF1S7VEwWSPAW7LJJSEHLMIqOmjzK3HEUepmaPzfhIalM-UsrCFwkNTCGq7JqnMBzK-m_uy7IqDzmAMrPYC5hfLNKJ2rlJ63APdIRrUd_-5D1gGkDLJqfQ2tj7GCUpQCB-NrG7p4jw3AdYkaM2MLSK3r8FT2Moi67_DYhrCqBAy-6YzhKSL4WzqETWofbCnZzUZoHCslQUhhcxnIn5V5tPSH41fEvC6DrYE_SmsXp33MSFsKbQNuRgMIhnE_Y80zLJBOBcTyEUNYomJbCBeuyDPrWgCkui3Ku_Jd2u0sz6bbAdMRw7KTYRylrsi06WFQkHL9oUSqna-LTOjhIsL441vUulH-GR2E0N1TLVER6a_Z13NsxZFvBD-tIn_5K4Ts-jDPfNDZvaIMqLICcnSDtva0gcnYM0b0vJXfvwCobfLupsqIavJspBdQ8tZzzFazN8c5UoX8p3lswu5KG7-h_CyjLu_PX17HVaIikIVa1p95EgedyKspK_t8mOXPF4-woo1g2lpy8E_Hiy5qqZfUS0tLrmoraNABHWcftiBgacCgdGYSVol4Dgy46_g_aA72KfsPmcPU1qYYjW35XzMdCq679-zWqHouohrI0XVR_zZT6urUii3EVk8cwMYUDd0O6OFAhbjUM-lw-I-ixcrgMo4chNDCevgG8DkYduMnD6ChCJZMt5HA9KQsCziN7cw8bKL91qZJv75d8NakP-UX6iOvfKf7To6tv7vk93sGZHcsC-Nmi4Lhow10kTQ2Y9PJOVtvLXq-tekAzrWFLwMoMCZWB-vESVvMlalZ6l7nRV5iN_6nwQQgmHiDI6F3UbBDAOvx_hrT1Qx-DfGMDg7LwlLWpVIGgzqgkbSMI7bOE7odO51YQ3x_LTCfEvqNg65CPTYJiYml8cfCKUVAdBOoMxmsk2XjKX4b02OsgotOn6hlUmfhwLkEfzSMkaKNOYJY52y8HqypyWjnE1I01HkTvsgVLsCzsjam6q1Jk-sNY39FWst42r03MpKHZP6sLWRE175xHqCU38mnFrFU85LambCPRL9doAtifZfIJPbQf3-thQek66Oqpl7RtpGULrK_618BPKmTTZDX1dSRPxwuOci3WlhjG19naGxudyfvQZJobu8QLSWnkhFFp5MTnYbwetHMfCgKWrAMSKia-3XIyz-nB3nad_lyKQo5mKeMdxhS_ni5FcQ0nl9iWzd769D9oEWwMfnFekriPnjK6JHCNy1oA4a3hb1tFf6M-8grVcCyzYKWRZExO2iUVOqINwTb64qFEo2jMp6QFPibjZjT7ycNtpvT4TqaXIYsXHr1vwc_ug6eAIIL1g3qyG0HllRP-9C\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679260460eb446-92294584','','','2025-01-23 15:29:54','2025-01-23 15:29:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42074',0,'cd-form-entry','',0),(42075,0,'2025-01-23 15:31:49','2025-01-23 15:31:49','{\"email\":\"bonewisepilates@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"SW13\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/\",\"recaptcha_token\":\"03AFcWeA6OvZLWO4FlFvhG-4GRm8fMMDcjmY7_rXhtwhdlSiViTaTKXhm5cdyqLENTQ8yfXt2tT0W9tBlOlWIGT2i5zrrxcfzdnuUajGahuOhU_yRBsPN79xhGfD26dRdrkcZQBpRnaym85yULXV64WPpG9MCk07W__YnIlYdwBkkpUVjVEMaz9S5qEaSoSOrpZWy1LAdwiryLLLya7MKKHvm9Sz1X_Ns5jMsHO7cajddcnt9222MAJR7EM5TioVZcnOAYOWKpKgv1xhzU95_eafB3QfPMVy9RGxNWLHRlhYXJoP39Dx2ampsP9Qy_JHwlmJU0q4QIe82HijfQR3qJoD90pBmHS7cBZQ0YZ-_xCrJOJVVDhgNTAAWuF086Yj9ufZ9GSO8xyYWEynJr6Hhgi1E1Fgd7IcnkwwuM1vmFOJdbFAyWQ-m2LvqEcLU-WdX9_J0h1BITvz4VIH1ssdIIMjPBJzw3qcEUKYYa-5CEnebiHmeMLd9-Hfo_PWOTP7kF5hQgxepBjyGIRD771hlhO-BdG1gLHo2AMnXW4fc5a6QzdM7_554mvTQe0Dqu2gh7HwPvlf7EoIGWkiGhjdDYjRTao_E__rDkmGq_eb4ZhCqTZPKQz4dDcqPkG4Kui9MK042nMPFyekFfk5cE-Ir746VgaiVO8GzwKm-Jd2y4S1sM1XhGI-YJenSHjmvat5HYJ1LlZsodWNiz0E71k7e4KEtpO7lYE23aRpq1WbetIxLnkfScuHbDkZglh7R_ZDCNmVmhdvhZGzTZxUkfGh4UeAD_4KtXhRoR4zZCVm-nfpPNXU9Ad9LD55ro3UCB-qvdq94Jsm_jkHib-Omd6DBr9KBOEItrbBYSez7jg2IAUJwHYmbcY5ziVBMndtDzDvhGTeZE3mSQr2RxV-_Zfu1eZ9l2ccgWd1EoImVg5Wr2gxr96-3364OBiHd4--9GiDp81UIm75i_QX0lQ8hLOrZe_CS1rKL-8Hk6CKPguTCjjWZGoqk611nL00kOKlpmu9qYoKCUCZRFO0HA538BtAMaWnIYafNO39WBBndiAkIqnP9EpTJrks_AbapjdEukvIHScy_qLarkMTvzUXIQPuOqP_l3FxVyg6qkZMR1SWBo4zTEcikcXxhtgJf3abuT7cRrOh48ggXkGm_MDAiC4Pu4yi1xRvn_ERx3gWClONZHlDnzp1rp3xybnfoWrR5hqD_s56P_nS7E0MjVt9gNPfbd-E5olIXnhhnfGPPZBzvwS46nhwpOXffPif8INojnhKhnU9EomGpaq9zlcQyimR-fsosQTl6dQcX0SGtXxEDhkjw7irczWYUzPfJbvBkTPLUv7CgdhtSf0u6p0t9MptHfA_J4Qi7ebCw6ublvMyEj98YD2KbDoCxzBaBPDfkNtq044ruL_CvAJAhn0IH6egZWxxCaZCx7shIycPFeuAyHUEIHCnD0QO8OMzofJs0iKMdaSjRlTkUrMMvC9qMCDQ0oP5u8akhGqzI8mBqNKlo00Xgpg1c_4oYaFNsYxd3u_uORzad1DiFV4t7WZSbpg4mQCvUGQxAP1bdJZpsP9RE773B8RH2GF3hrOPPuppu3HTeDnOIqQXO1YXp7anq1Y6oSGY3jXQ96D-meuyJ81g4X-yAgunO6IfeHSKor94DLa-15P737GioMJhomBXyCrTiNHzPrXknQzcqc4zPFpMOij8s8_vsFtUHTBJzQVlCG2E9MROv58_BLdAUuvlhY14Gq-Mof4UQKdr7Otuwfg9HLrd_aI41EwiEUkJSmmyjc0_0EC_2W4oZtwq0pFtdc6_ZkFe75xhi3x3HJ9bP_yGB_1jSVTKxC7r8E5cSgP3tnM_PkM-neIVmuEYB72VtpKFbquVhcH6hykLpJDUV92yZri0rzbiVNC_qJCUW8AU5PrSNcZPRtnbx5wRYg-1tY6GgyKeSmV-WCuuJVqZfXEHWw4aGesYzolk4oNwT4bcRJhKvyS61AfkRbWyibp--arx_M9aOxIa1Www_kilDETY6Ii5Z9_2x5md6r9IZ6i6KvGVLyIZHupz4iReMjlyACG4aWpzpo-Yy46uIUza_YAhpJ8BHjlQTnQnkMPxyZ23eTkbgGUCOZZnfXpUTu\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679260aa230ce5-96795316','','','2025-01-23 15:31:49','2025-01-23 15:31:49','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42075',0,'cd-form-entry','',0),(42076,0,'2025-01-23 20:18:04','2025-01-23 20:18:04','{\"firstname\":\"Madeleine\",\"lastname\":\"Smith\",\"email\":\"maddietaiani@outlook.com\",\"contactnumber\":\"07701288439\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA5CIhr20GQ5KqbK8CvNhU74ITGvNnlffCwgvtIfxgFKyjFZsQ8ntI2cP93mJMfLBu_Ek2Il777_ieB2HEkH7m2-vt1kZ_ViDhLy1h_TTinJhKfit8_LB56zh3baxhHHVdbt6WRuGnES6qaB--Tcgw2QwGt091e6iDDo8jUQXdQ_s6_bhmMZ-0Oz6SZAZH7kTgxbotQpGR37Vzd-fV8oPQd2Ds_9sk-P44VSyasJJElzReniaJ4vB0HDFqNImo9ujo2nv5_kz3A7d4ue8IX3E-eMpuqGNWGqxdC2HWWIgsQMlxmG5sPCmSmrFCY20O-OsHLNR0tdnNdZ0epIyjnJypt5oTx4MOShFxSlrtw2uFuwm1Rvb6DXHrUO1X1af6Pb8ymdJ6m2eTbrh_QdELj7lhv7lEa5lOZX3T6t3eoIzRKBEzP0S_IgbWEYoPYSSTJPIq2sF2jCHHjy8o4yeVn0ESy2KoVd2IDk3d_X0WRrUXZIkWgRwKA9U_xTk80jdFAQaM3SEQ8NfEbHxbx4sa027HgF-OdhmN6A82kafV16FAWCL6GQJXcLBaH22uWDrGr2jLQZt62OIN-iGLmYH4SDLquPazsXxX9Zln5bA-J5aluEI4tA2OmKfj17p4v3goJovSi0-PsMH4mABB3GKE_-_E7QS7JSO0dYoRCpi-YX7zN02nlM40vVoXWiNByKOrFkKwTqB3fuliRwcC7ZJycQRdRyxSRMShPz-qTEDvSssCRzRSfVxB-3iNleODpklM8VChDBUgjKfHOtfH2oeAlUn8oy26IHvYrDxX57EHalK_itKi-5G6kDbjWb1ItCCqqaYYaIkXsN2wWRooIEyAeWN_qQxVUxGHWCFGMhFOGnm0F7ik9YhxQJqWmZm-TGTngpd6r7R8URx8t2Vr7XtxEFSZHFoMhSrxs8ErpNn-Ti-5Tpbl1IJF2azyJEL4UQnyJal3GVpQrQ9O9pQl-vZoc8jA077dSeWePK1hJQy0_4Fz8T0MNvcsH_hCpB4hDLhxqOTgflLppoeFPaG1ppDxOdpu9bEO4Xaob_u-1q4gTyBKKU3lCBgzCF0ffC8TCQ6Irb7vol2zyf19H6IjN9psl_b8rUMbaVFm9zR4ntV-ajzHXaapmzxQWyO779uGdugGy24Q9XimB5Dip4uA2rYlsBPxuHa0Iko9pLV8VERtjfCYdsTYxCeTGqOaW-PBgzQ9DxuowTvhwv7Grh2pUxxh4mGgf88STz2dJ4UT6Zmbq8dXpT8SVz9cPsWQ3A3Nu5YXfgR_hBJ9g41siYSq-wSybav57sUpXLSfsWxjcbYRX1cFQs1uWox41Z1huCTkZxbOTVB_ylYi08wp9iciB3UViAWpKEX65xL3yHUAErHzqBitb7hHW7qpTdnckSBfn1JzCcwQLSBx562i6iiXFE5rVGoKCgu9rYdYHrboeqyiLZKPeCRXorFHyWdt0GlKjocqLbLVLGkOS5dFhcI88B54LxmCRHWcamg1rTj5h_dpWNA8YM_718NlnF-GVY6qFEWNJ1VPvtOcvHz3SJ_d2nWlIrcw0UKACC7Mw73D06xTnngg-xsirQAUWgPhaF3rnmRZK2h-jMOCPKZRe4PYB6d3QVX9b0wNclkAuKBZnURSXwgVMXHGXqjiDrFufTxqxUEPBaDssQ_MAoujZxES0TU6RdaZBfWxO3ahBWG_mBWCslzxMxG_SHNeA9OA3NaR4PW3zWZrAZIE_bQBAyMeeWoqznDHmaTfzqstd-TNZZFS70Zvasld6dvKjXkUHLFQMPakrgHhOLgDfFuwh-m3INdhv14w6vHPXRsDRP7ysQl6zteezTpaPNUSBSCxva_q33LGZUMWEyYPqvm3tANQOEIUs8lcYGSfoxYYOnJZIRUS6zrCGXOWRjMA46rrcN95nffFl8_KuM6iRqlLjjcgGta4Vavbi1RoxLI1e88kozHS1N5o1fXO4_LIVEcjkJjy0kmT1VMWoi9sqyxgYdln0K28zaUyOWfB1cPZDaSosZNVyZ3tOAcBLhkUco-Ukpy2cCfPuso_KzXOtyr4bO9GR-ZiS3xbjJZhlBofXmPwkyrfVqJD9zm2r7KZSoOOdxCH07bKfEHr6Vwfb9BGU7JO7vm8L5tU5uzSPv7QN_48MBxWSF6xSy3Yb26ePPm0PkJXuUiAgyuZd9TDZ_\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6792a3eae410b3-54237673','','','2025-01-23 20:18:04','2025-01-23 20:18:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42076',0,'cd-form-entry','',0),(42077,0,'2025-01-23 22:33:23','2025-01-23 22:33:23','{\"firstname\":\"Connor\",\"lastname\":\"Alderson\",\"email\":\"connor.alderson92@hotmail.co.uk\",\"contactnumber\":\"07549012592\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA53-aDPCSFgG83QYjUdIeI5CyzsfqYok-owcOdUMB63uA85svmLxX6DjYx9P9kIY4g-LmdTLVfiKQl7sgQBwNtDCJh9oe3PwmgHvls3V1Ygkx24K0bi7UVJsY6QzIrRy2pvDHlJ0c1bIQa283_EwLJRZfLTF7rNIG4BJmtKSXPNNcNipskhaNMHf8xjhk6JNmY5mAvjGVn7Vzdz5ZqC2tFydZ0CLQ6cwIMGKAvMsteeWY77kX8z5FEDQLn-NrOyNF9TdHWsGNe2Mqo84XhkfQZiGxSuH-laDWAKr8824DvgiIdGNGFgwT-gqVnkRbLHUWt83HknuGK5nvombIi8exhnUwpKqub7r9_EO5gQcrFIjpnkWMR-Jc79wEjaJhKPj139_g6i3X0IK_d0pzMc3_YDmXEdSYkm8hcH0kGj_Mt6HWBpnJOVQfNivMbWTsHGijcWeFkZyI4cv9FzpbJ-K20RYLmK4knFXj9bXQ6L1I7lynUZg22m1YkLkwfz6jQ2ynnazvw5oHU8_85gW0kfTIxeO4Tqy0PVUuTjHYHBeplUMiDjbxr0n10MHhmGtmZt4t6YqP5wg1gd3lCQbtET5WwIdfGj82DAHTOUjEC2Zl5ia3hvelKCDHtmaQakEWAM7TonU3CV9wv7I8vbBxj8nRPIgCpgZHds_lseF2Og0xQHj2wjXs7bTj0lFv-HxpdwMHP2kZmSBFkNncgUCicH0GST7BgxPkoTzXu1Hk-2SkJw7TXNP_xv89C8E2qLfEReDcbqz3YVud5153YKhvJGXW-6usaJxH429_bfcu-bquFTO1LuTuNvmibjkpA4frKhtU3R18EIOwIaFuUBvLQgBzt8jRkH1y76Gz3fZrlP5lxTnJnqU543dCGdqt77DOtQG6gcYely_sMEkWICkquYtBr7odm5-FYh0DKox0VBRxdGu4sdD8rwKgWC6n84p1EYa0XZCxmzx1Lp80b8hmzkESD-s2SofxSG5YtcAYMhvi3fsIDzZPo6D9-1t3Ir-WP2ZKCVn8mawZsPMyYAYTu0LQ8QJ3A9VImXt7NZ6BX5AxnV7rxnlwyz9bas0Xu1aNqpyllCPxOr4QP1Kc0KJ6EF_Eob2Z6dNr7HF0EybBcL84Eg3XVteYZHCbbOMwTSXD9Bt5wlIEhsDxlsdckKH8hSyQl7Qm7yhIHvB-TJyscDHZDMHEH5oj8eeHCYnkKqIn5H09iwLxBJehQMTPsW9YWM0WEM3r2aj8hFCxuZ0rrknoQeIOvIsSB44QiS78PtW_xoZLUcF70kDiuqb1lKvUOIaVnaG0MK14nWikWPuGaxHfzhcV853WefUrGMjNybA3IMEaQt0f-5lRYQl7M_Pou7H9RDANIPF-2BCyL8JeayqIpxvkhqdX75H-wHLebSUwjH4-RGP_BHw5J6dOAuhLpcV0Y3LzMyi6Uys_kNLlFvJPOsWH_NJsn0eEwIoeKjjqkl37nJFCRQQolRQtwQBI6RTO-OyklRmB7J4JRp0wrq83DYOrJsmnhdRe3xk7kUl4dZYBu-hV1d9YVzTRYoh58hF3gsQIdh4PkTVWW7BuCHnURc4BrTyB_JLMrknmRiYC-dH9DlBVGh5_rc4nZA1mba_lZrseDVJWK6anTY0NT7VRrrUKKYxYmBadqeAUS5_K31VVFIgl8un7enGq_ow_fuG36JDgv3VVIkeFsiqTeINiR-rfqk0w-FlDRbrZc1710VXMponXv_1PJ63pAESNX8VJrxpu03iCbW9a24ilYtEFfH_NEpmikmi7JssFzkXR-zB5xljShtYplP4nSwBydFa6rLyJs1UMy--Q7M1QAtSFDEezoyYA-jGe2FxgSDGGXzoO2qLlgJsEAd1pyc1WCYXSFPjMa9NSjOwpFhus49wEjWmRkKiUq5aGoCfGK2HSbPdI5rlCspVrH-mCz6BlDLiIGgxIEKLdohNCKfgaVb-BTTiVeNOFOq_WVRfq_0jVhsHRmWoC6BM96uh0a7rSPNz8XQOscQXY4i3HIv30_cFq0j45DBu1q0Gwrzg15uMgq_Dn5Ku1JEAzECXhwU4IGsltJG52f6Qg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6792c39c2ee6f0-48658669','','','2025-01-23 22:33:23','2025-01-23 22:33:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42077',0,'cd-form-entry','',0),(42078,0,'2025-01-23 22:36:41','2025-01-23 22:36:41','{\"email\":\"connor.alderson92@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"0\",\"currentpostcode\":\"NE5 2XS\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA74hO1bKdD0cn29SfmLckBJLZB1IlPpStRnxypE0nagyLF-shHuewlw90jMq0PLpcMQf1clSYkUOXzWvSZHJwhPN2l85VQFDDSHi2Gz1G-VlepyMnbDzOQ9BZ0O54kNFOFTnDS6zX03iFHCkJky52Ea-wSqrEprPeusdS8Qx2w38ruecXEUXcXLP4G6OGdzi5v5r9wkS5FZa4o9O7g_IWG72Wj5lvFYketjy_2ZT6sf4bSZEjUKn5d2U_y96gJlI4IKVJW_cHZnPh3gTIx8u-3Gbspue462jzvSqmv2w6su-pZXnpZO757YXh_IRamAuZb5kbDU5YRu4N7sJAbID2pyqGwPj7PGXAT9Fb1wqn0RwhqSeSUP9vVCamGpV6mJbd2r9LcMWdd30Gf_vWEhtHkMl0uDmtWE7fQtm3I1ZRiqGI42RaSay0ZeyqzE_gmk7HVDipWWNnXfaF79SAnwAEjbwJNuxvyCQXHNO_R8xz_6BtN3Rk_2XYrbHkJL2lCq3j19kilKXnGVf2epoBWTkIwYJLPHIYc6hjBULMHPrPe98gF3JiVi8fxPUQg5e2ZVgKGnHKWGDcD_yiNZT3k-OcTA9ejKJQ9p5KMYO4Zu66FKV9hgq59N7LkCelqDsk1acZbzSieRk9HDczqvC7198iqMTKz1tfUyZN4W8XgA7M7qab64M_lzT20FONJO_pKJCouP7EAJH1t2FqgjAWtLCouZ3knFBd77ji88ybqgpNwLsvYas5Pg8byIgAEgnI8ouVeI004bmZRUpnu1u0tGSSfyQGszax3zOJdx9tMSkEWD9LnzE5AoNTImH6rSRypw6ws0iWMAn7AwZYTx2imwSZzrNSrj24xSC9zOgrWUrOCtZy9Lmh0qYPadAG7xM8BWCh1he0_jUVTH5jLibGOwxbHGv_q2g11qo1hlDKqN86ih1gS_TE3RkDRsdtcQukvCnUvtNNaT4O8t5vfZxTgGB5YRVlk1_rUmcm9Zu89UGGJpOEoBl6yJ290CTGqA2V0lAcVoNWION5MCKPesh_TH24bwFpfuGtyFLSJ3-7j7u3KTKYvXUePsZk61_5eylwAmS7zqYzJiyUFLF-ZVnY0RM40N1IttYYfMgFcLREjfTIH0WgCVRdq4Yu1qme7KYYH6JV3C8ER0xQLPLISo5NZjDN0IVQsx3iotyBc3UVCCxN9YkEFXjU3UvAiEsnS9T9ITyOrQCXiCHkC6sCZNn7cUt6nSQiDxwxG5sRmKqaAxo1bNQiqhBhuu07lhUclfmxrzo1xW0xD7VQgAvQMtrxaA6Cy0wtXvfBQQB5unpSonV3f7Gnte1ezTshAD7pp6s_00jszRH-1DWuT1_m1U9wFXVOWkhTffd_7dr-jghhmh_lPV8cDF3WGTnUQcwBr6fvAWBRuVJ8wdkQoj90BWqa-oorpgVgU9BExidIO6HpvbbWNVevibjA9kclc6rleAnzE15B512spd46b2wdETd3XZLXhPW54o-fYwDIwEicHpaot7vny7E7EmQWFrVINq6GVHr9oXfT7tgmC6qwV0Sq60LpuQe2Kr3csZaG5t_hPLL8QC5mOu7r_5bATO5_sYPHBOiUt54J9sTfMKYc-funaJ-aCaHd9sdQ5YNnLSnV6AIJrWFzq9sTcF_GcytVZyv_CPdoTdwmIp1EPNGoKH_9JhpQME-1d2gd0J75vvfxeMtA0qe825niFPkbjy2hPahKeIc1S647lovHgQhERJ7t8rrK4qDrvEmftKnA6RW7r9Z-ScblOX5rJbsfcKSLlXND6Sm11zoa1e1_0hI2EFx_UaqK5EeRibt7ddHIy-ak2ttX4_FOYd38CU8tB3YTJxYsrYkCKkIdsDTS3wdDd9b1Eg1krs1vA6lAgEOTvrxYdVb4DegVxxtxt37toYl8qW0PVRXhSn1yagRahoQve2MW-qH8TAWYpysvkkvdAT6FcT_aneVml8_mO7ddeQV3UeTZ0LmNNy9pUOcoCd07FSp5AZM_3f_romXd8lScktDNkRhFdiqFUujg7pAQkG4pYQR_TlhC4c7n5rkaFL3RdcG7Lu3NeD9772JLHXRyLjAOLd7b0nKN-q7SM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6792c45738c1d7-83797050','','','2025-01-23 22:36:41','2025-01-23 22:36:41','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42078',0,'cd-form-entry','',0),(42079,0,'2025-01-24 09:24:01','2025-01-24 09:24:01','{\"firstname\":\"Tracy\",\"lastname\":\"Clark\",\"email\":\"clark.tracy@hotmail.co.uk\",\"contactnumber\":\"07788698960\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6u5zB7Odzp_s6gEKaurTsBTk&amp;gclid=EAIaIQobChMImeDNloSOiwMViJFQBh3DKjkNEAAYASAAEgI4BPD_BwE\",\"recaptcha_token\":\"03AFcWeA6iF9YqtxcIhmuseSgD9RL6YKkXodJbxj4Olkyk-b76_h5NmdL2s3kNdQcvxX16ZvCyGqrLTulfHRXE9Ar04wh28p3b6wV3lBh3hWaIl5CasFLqNRjiAZtkDgJKVCM8dWLyL4ctvf3omK3bEgUqdMFokn3VxMQCiljxz-gwsz9-2YCGZC_IDKixcGRrWhNqT0_wnh30Ev9x0ooolq8RBOPhM3SAblLVZfGjDj4eXn83usugaZMCMgXNHTxI6gQejxkuEnka36MK6Jn-i1GlaHbF5ejayB-qB-6Z41DBrIzuWvV6kt3OUUCex_drv4R7dB9tSkhGXgYp4_wVmuLEV-pg6wBioxJ38dy13IsZ0drvr0T05SrR6v78wGA1xIdnwfuj91P8FE93umVAfCGvoxI8Lvcud51BcKv9SIFe_wFo8Br5Z0gDOYYlgbRot77nK-TY_Ujfs_YR1GzYYEdZzwaLKVVZUj2DiUXOPWfmc4M49Iuy9wf9RZL67RW0UW76bdjK7HEFSxMlMtYhavmWgYzKgPlRQpuS5di0FymNSNiCp_n_rwjkwioFeCE9omGTQbOx-0lfQAkQRqN8KPfZqxLR4qGV9dCEUSW_GlDWFX6qNtHOL1rCgg_mYtNP81JMduGxqoJWRvdA9NqnPEKYSj5jiErYc0HiR-X2vVuERxAz4EPYCevtuwL_HlgP68DBg-oKomcxBjxPjYwy74L0jvDi3TvOxVuflcBlTjnTc-z4IjKZmYonLicNAVz7usdQYtabl-fcuJNgf-ur8hdz_NoYcsvcrt59uLENp3kiWYI2daqBirm2ZjXSe4IRYzQXUiZJcdu25uhL3NGX4ltZOozm9GOxfwsxvObFNCaKl_5k2geFEU9GGljkAoDftLQH1lGHIRZaVhSr_nLWSOGt5Hbmujf-7LV7Vef5d-4k57zO1L_wy1WROl0zp5j6-MI-nTiiTmyvVXDDyKHvQORsI6sCQQ1v0Oa9N5UDzguXFmqaD1kJMNc3mvNr7LtokrPdmzYLK9f1Qzdh4ElOMqLr9qPpwG02SzdzfrlUyz3YrWcDbBPkfFj4N51ecyQZBnGqxyahj6_f7kWBEFrT-uATi7OTOoRGjzTVdyhVsZ9mdgOn9MJXE-yeqUWLX6JykCpTprDgzTLrfmVmUThEKX5_yGk3cYn10I2NcoCQQ3opzT_LmoPWsjhpgx5CyfqZKzlQDCECcCOWwRtDdk2f_pQiS-zEWduE-7MfWot58MBAl9vzaRf27__Oxyq3IN8fUK_noITSAz3hptMkiOX6BL8C8PYWzBDSehi-UXW-6TLnRYB6VydYHcVn4zJbYUsmVMllobZX3HAiKz0EEd7ONzcW3u2KEmEGvDaWhGYdyfbwG90H_t-CX1eoFDQ26o93LwpB55-jyPEmDJZp7-noJvduhBwOy-6N3lCqEtEuGkpu2Ek4MOJGpBhjoTriFEFk2vwtrxzAxkof0nhB6LGYEWOCgvhj0ztXvvUCVWWdmLofAg6NRkBvE2HYihJct7Lts-N_iWNZ961tNuM84PQPmOJ2Aei5qV9IZKTg3zzM1ITYmXaQEDKG6pis3X2z1hymHjB46lYPI6omqJ15M1bLzA6p3-FWH5CHbO83oiVG59qUrBeH2LW7cpW8MGO-S8NOYHyjyLJHvmSmx2ynpcMcBXHCG3PdN-_hZGkJjjTpp23qYOd4x6TNa42r-82E_yKsy3aHLIwESjISMmDCX1W-xjkm4DP5poI0Dmmap_LfFXKLgqUPINmvPaXGtNcSyynBDEyK6Qn3elGCkJZHla6Aydp24QjJ9VqURy1beiGfqtcBk_pTr93fPZKBYBRlbOuiTT7IpHjdmO5C6V93n1vRuQgVex4IYEd_rp9qTRuPzVRCwK5kxvDVo_R6WI2kkLJjYpYwNhtgkJDbGAX-Um7F3EOcG5CMGBLYrMtNZleBvaoP8vgRYfLBxlTLv6kJU0uhu6xyGrBKhsloUd5g4s9vqb9On4m8GDKS5B4Gu1gAeyKRIcyuQvS9q183r9Anr8fsPM7wvQOLBSQMV_1wHIQBaASiQugqptWpNMzxKQS-Qw9bm5MeClz1rw95-ETfDqfeu-Qno-CKI1hOlkMJereFiXChFuS7p79U_iRcNAkiW_aYe1gAq-Zn7TQoUpbAlc2eAv3JgGh3e-qAYEePSjKpf7PXPfbnslqRy_vhf7lx0dmW5AdIHgYesR9nWJHCsOMkCpWv5RYYqOljgvj2x7wLDHHJ_WYsbEV7exJMvqwKnSpg95bjevE4rw8gGHpuNDYcD3N_kMoGl0YJ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67935c1db14a00-24110300','','','2025-01-24 09:24:01','2025-01-24 09:24:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42079',0,'cd-form-entry','',0),(42080,0,'2025-01-24 13:47:42','2025-01-24 13:47:42','{\"firstname\":\"Priscila\",\"lastname\":\"Albino\",\"email\":\"prialine@hotmail.com\",\"contactnumber\":\"07956197659\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gclid=CjwKCAiAkc28BhB0EiwAM001TUPD7f2Dq0L32lY3P_k-yUfAmJw24yUNSfFPVhgRQ4xKx6wvHWA0NBoC9FAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5nDMVk2P3lupArjm0LY4EAu5cGEaqmt9kG72y7HK5Ge_23Zgsqn-RkoHmeQ8YVh0m-HdkPrlYCA4W1IQyXzgO_NIE2qQrrjlJqqynmJt66rbadkmxaf07APeXQVMWF9OeOA053zjB7DBVIg8qgQfNRaYVqgyw5kIFq_8-Z36nV7PoLQLW5-GKCvrxxK1LWtDVexEgZ7x8QS7PlXoE3rm-l9rkhXgwVjTu628g7ZrfD57RhHqriMAGkf7DvlUD8KG8xpywPhya15HMzaapp7WRPQmOBqRL9eBbN2TnNDmdB1nQgN9N37DPWsWij0pN9XW2L2b5prYmX5z_A121HvZBsmY_fNLCuukELAdBBRsiVgJn4gQzLLuTY97Ne7a2KSiVQLxztQFUJENtUSUemcUW_Rqtb5jrXhmLx319r71kgStqzbn9OPXQxiRMssDu77-MjiWcitxJFrf4kIvFGuTjF5Avwcbn2vnBBo1CKHf9WmXRupLZRDA68TbmdXw_x-GM56IXgT3vPDyp-ebuWZDsGFrqAykxEOxEmqBVCMlp5KlTaINY4NIRySGb7QiotGa9zg6_4WNyGjI2fg7wolwpKF9_2T70BAY1Xddlot5Px4TV3k03T15ld3Kp9xsx_GMzkIMZBhUmeV_w3-pqXMIpw_V9HhMno5s3bGwE_gFuwR3IwFkhZOrfOQ36FOfkhQbiVERkUmxm9sa-VAI1__TjWr00TQMJqCrmVELSF2zDv03w7sLCcJBa2EEE3-sswJckkfMp-gx28lYg09zlSc1PirjD_wy6hJwVQVlM06fzm8EbIXAZCKac2FcNtK8PVRh8HBeMkfoklcFeFosllX4JcMzLyAORWC0o2IkgygnXYtUwjlKgtgknPbWY414noQSA6FTMOeXpJ3SKE-3I8qNmgHHoCTCVythPhNhEvrYOv7Uo2qzRAxOlDtTN7SXC_RqQHM0qBIybwwS7T57FEDhpA8oRsPImpO2B8eQ5x-2liMClD9lbuXLLPt7zkHSD3s6hxMf9PCXJ_hykzonk0mW7PAp53Yxtk-D7rwgJu9nkycwY4uye7zwj2D-0ROPGCcRJO-1DPK1kemYAOKbe9ILkjSC_KIY7P6C3e3mh0HnZB3jTAx0y0aVaG_lm1owQ9myfbLHztM1l8YBtq7Dp7Ex6TR9RyKWWS9YDUVIzqNitcmDGpWgQYBnpMQz0tDJtPB4DavjL69rjH1nnBUdnPazY2xGKNELTH1FtyEtqZ1kFqEmO_XBjSRhzydhFwAlkQ8VKmvdxHB8UK92xw-UTiwjpEy99cFCRXwyq9TZ9gXFDLcyax08Dhmy18y0MMuQJ1ydVIaajgMA3po0fUXQPh5shb0nL2tNoWRPDVzxBsF__T8-QUsHA7JycQGSWv8LxXKFvJE4CijvxXAHYzO3vf2vAIh8cRT83SKp_MgdxhFAjfWsem-XR1flUnMFcS4mGd71TyTRcFf1kANxupq49tY0Baq0NSLOzkEiGC1wVlLEY8MIOnQ8ORZi-8qstpYdk4cxBwSF80i3OKQ38w4Rx4-CT9o3IirSxiK_qatZDjmohac0gEPQfsTptlSnTtb5d_xOTRi5GnrMRH0USBibGLH9vrjTsY8LiiREGTp8j557XpxsapG2GFfADx52iBWRXUSgJvTpJqP-cHn9PVHxOH0-Dz75d7fcQ2QK7e45XI7rUxXzyEEZ93CV6XPXKlt2CEPPRvsNuPBzDtmU1xiaU2LDY7rIUaNyucz-M6seewsXnmb-Ntg3svCLwX0AS81feiP3qA2pwNivkazx_VkZ4ULesVa61OQk2USQzu-ptrGLYud5kpcaudwe1zpuPkhM9siG7um_7Fctw3I9FJGNPt4evs66uYOEXZCwFHK7zjWXglRk3Bxqjs3UNPz9LvUh30NXabHXi9j38FipzSEpnqauHcD8d30XFioEb8xWFBz3y1YZD96wo3gojEGthmdd2Jvv8bFOg6HufroVq0lal3giXmOujehhfn0TbHgr4GTwVU0VsOFJQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679399e59704a8-97362154','','','2025-01-24 13:47:42','2025-01-24 13:47:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42080',0,'cd-form-entry','',0),(42081,0,'2025-01-24 13:48:22','0000-00-00 00:00:00','{\"email\":\"prialine@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"Tw9 2DZ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gclid=CjwKCAiAkc28BhB0EiwAM001TUPD7f2Dq0L32lY3P_k-yUfAmJw24yUNSfFPVhgRQ4xKx6wvHWA0NBoC9FAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4zziE4m7A3iqiYJmVJFgnyJIIcf9ngMjJP0dNQlg8LUIxzy9MFsqglIWxU-5BerKQozD2SnaMqKFuyTZVLNMbzDDLlf3tuHy7jxgz_WWvMGgmuZT29UVJyCdzR3P3j9xLR08vQRmdtRCNNWhbRrK92k-uMDqlZNJJHOcma2yM9w75moEhkwzNsMYU2qL5GUaXsRwOSLeSKabmBsefMvRQQt9c1Lo20VtNQYifS2EGoMqHLw13fcRZixQ-7H9aQ87D0NTnvWMyezT0OVcSAp-QnTHdXJ3nb1sGYoZF_CkOcB8WDqkOyZTQd2vzTjJ8n8bgStTSsj5ZuK51dQeDB1JT8QW-UwXwhzf51g6b-Ef7WkAz7tvmudP9Hd9ajJ7328OjNdt7_egshDT3mcuXNJxYmd2K8OgKdwnoTcDMibwLhoGTxeKOwrVguEWAZpAg8M1jgVorI_2ew7odL8pWssSQdVAKPyJU4RwS8D7Lk1hlMBt0Pegr-xQdWnY7cLgvQKuzFFKbrUIVQ2Jxva6-tSuzSamG1KKUtYMl1wGu2qetd78xeRwZQUlc5rwcl5ARFWeSTqlztdeLu3Cl5TpSte6ttR2rFCGEtWsyv4UwLfydGtpEJGuGJdVCQmyztao4oPxItXzLNbgvGbXERFdVOZF_8bAse224U-yZhdTzzQJfWjoz0RNQjFeKRbf6BHiLkRnzOSHEpzK7K6zR8qFFv_wCp55dhNf9K3NZDRM9L1ruWbCznYF_cmzItmyu6hB2THiF82sCgMwzYnm-FZ7Wh0VQ0c92lTCGOV6DXr35SxVvu-Q3jCI1HvBA4F5uu6Jkb-aqvdbfHtM92xQJrs7-gavwo1L1gRqY6eSgBRRkdXrjsQHPGbtMQ6WKEQq5He_jwoyDl5BpLthmDgxkvffDKEFkwaMppbJf_Yn3Onnml-NLn35Pbp7lYnE0Zj9jON13ZWexW-qdpYx1U8vvIlo7TdfP_euejjzjZSahAiwDeiGjqp-Q-CRvJOZ2i9lFrOKfUpXvLK7q63bfXmkxPP4csBtAs28fXi6XalfX9SiAe_fB052X89OfB-io1rqlBSMH6jG9dSGaq70CfEq-fYz3kjtF94Pp_65v8SRSs9cgc1B-YGMwauyPLoT0svssGsr9Kac9dTGG-9h7bOcVmEQ6ya3zAJQ5wEmJYX03evg8wzsJxziOYrxJZeYjBZDo03PhfS-DeeBNnZcdG8Zjy29RcU6DRv9-eB9LzaI5NjzZEggMxY2JRKwcve7m2n-YCoGmVy7prXtJeRz9m4d1ZL3it2onOyWFvoPgSZXopucGg1LkxBDwVKLn-Xp0kSes57HmyPnehkVIjc60MySgbefVUN2fu5VTBwlqGpqfw0fDgHrboGYSyR9IHu7Pb5gC-4eRZXB9cqh4lXHVp4MNdSEj9oFVzjBBs81LFnZxbZJQbLwgZnuscnXF_FLRsaD2eJNxLnSsW48L5pQNNQq_9-nXv78y7xR9L5Vxllbb8UM1rV9QdyVsQgyWvD9KtCX2D7AObvxMaKSImB-uIychOoGf_PW-tqZcRlLP1jW9t0254Srp0Iy_1UfflbG3rkuPdc1kztYe3YX5qz5AZEXxdhTXNvEpLDQSPPuDJiz61trAiBwfBwQZWtZqtgO3OX_glorekoDdcXxuhMbvEdE8zux0mvhd91FG3Zi1l48rRPtgePAd_k9zdjRlTcGIwmZgfihiYHHx7DsHQt4vUuVefpmpKMeuvwVkqSKo829jVANkqGbz78aOwxvIbCBqLZluTsjkGjX18ellmqMRVCkeQM7oBl_nTMPuqTKtLUtI5wIE1PZ1mzhoITEj9DzZjLcxffrcNfDdambHoPU04fwwE0vcftN2gkL8joBdUUDxGgKt_hqGFVs1JdEfipSBWNOGhZW50A8WtNLrev77MMjUdu0-YcJPtkR5oSMBt6nlGqVoEjV1mMAubnLoGVx1NnhC_eSgZ3qCL-QSpbMgjLxLXtjw1nfwHtJHp_m7yLFq9IZPeKE8_1x5PwE8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67939a26cc24a5-88402012','','','2025-01-24 13:48:22','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42081',0,'cd-form-entry','',0),(42082,0,'2025-01-24 16:16:33','2025-01-24 16:16:33','{\"firstname\":\"Lisa\",\"lastname\":\"White\",\"email\":\"lisacmwhite@yahoo.co.uk\",\"contactnumber\":\"07544 101 520\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAkc28BhB0EiwAM001TcIobeL9zaW65QZXpfu8KuLBGekgPaV6TKumtNs3NpXth_ZncxGmqRoCRT8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4Kieify9si8T5WFmdoGf-wXFQQqpGobkk0QhlZgw53n7Z3RcRKeuHoss1AXy00Ln4qnsgii2RAscfbwPfdBvFYokDsYp18qAL4iNhZhBmOChVY60xWGYHiT38CBb8ZmTJJeu6jF1ma2h_Hgs-GXcqbgNIFXioG3GDMMs_jvpQN4ASbgSgo35SyeAtSKQZTyHYFN2SeJRr2pqAX2kQHqqhb8AWJsL7E_4WvFcFH1YlD9N5KK3JH5A8R8mHzWkFLZfUxIpix7njfrX981v5XS3txL624WVgmlV_A4iWFqbqfAiRmULhWerCNlXOUGmGaRAA8HKzPN2XA4VN02KH9ZjVH--gaaQCYjs5FFQV7vlu6JM6g6v8btqEx5iry_6ln002O32qT5uyrjKCmmnJ2J1TvxEUTtU_6_DVgRUwVdUEbiclBbLZGgMC1MAxO25BoF-2j5zAV8EtI5UCPMC0JLXHAWlwn16745BZWVFG-J07umHg8u0BoicbrS_sEgi8x6dle4bEWJ2WZgH3HNjY7Ba4_98Jo4WA1nUhV3aDvyEG4P1AoPODL48DdmnBvBiBgIrf6x1-AtuQdRiObtAr48PlnMu8EoskRFINGtqmm8fgYeyD7fNV7ciE1N7nWizDhK6tMJzupHl0vKdM7X_6o4Wm3IqAcakPakW7k2W2YGvuwyX6yqvThyiPBbT3VmGsOBT9F6ceV3yJt8GrQqgrumVRPW1cMhF8jDjEZ5UCn1JvlV3T_M5oI9XZmN2gOqgZdv3NO-YJDXbpEOesMmyoY4fJQt-NjlsWKdfRRdjXJadRQS9OKU-RphFVwacAqZhABdoGSXnh_naNjxyXW1ENZNbUJBMN8ztRHVYPtqfCTHu-YDD3i82gG22kg6ag0YfqxLTQpMtm92fYMc3GGsvpW95YLH4pRNeVBilCJoAkA970Pgw_bMTbIjIhQ8oN2_CWFzXuP3GA2gJacRHEUrFGYlYfLsq07LuA3T_3b_jg7aqDmROYT_jkMJMkVpry1rsKiD717yWz28Rypka8zwiGUHDFtXvpvxSxZFJRmVNfq4Kii5cz5XUtDuIout4_Vj3HgTOFOVv9tTKCkaY50pha3dQHQCfnB5miNEknW3aseLRdetyD3im13B7lf2K2IV-_jKIg9vLqaLp7NeBPHgFj4KVJexHfHcgL5w_BqunK30LMbWiA_nt13kmah253R-irjU0dOZUPt8hY5HKOaXob2dz-AI_pleu9Gh15otpFi4tCQSBSTw5GfCwVY3hqBRSj1d-1Jv6TvoA8NkpDKwMQwgA1k-Y-of_2c9249Q117PfQFa8UvNBb3cE0SeNINba-IeEmKobXAAC2adhx_YX-e2OXDq0yP2gkadKeK-HSUOWYSPB3kn0Av3kNNLRtZTw52mYzva1wrN-MyCkRyE7CS9S4nvO5hYOGrZgdi86QIR_L1ZxvcrTCgf-NVMPmLm33ICZ_TRljvsYRdoI3nJ9riXy9whNCfV6fUoUkbV1bmc-Tj21BKeDqB74sVRqEpKGdoxp2xVFu3hZ9mA9HY-mpOBidPr0Tg0-edeEppzWJNmQZw7qxvcocHSP9AU0t585a2vsoSvWW4CH3QKH_TpsYA3KTUopm5ACTr8vLsN0uBzWbY7UTqz1C3ngBvzom1PiFakZLompoapFZ9iTASJ1sle7o0pyRgCqGjN7R5DXMT4SxLo9vb0yAdgdh7pe_Un4hSmz4sIAtYoiujayxpjC0oxHDRSrqnev25UnXC6tT6sM_96N7XUnTKtXoQnlEqeEtqoDY0VnNJ7W5c3gt5HP4f4-K8HLudjZxrDWRONK0Uq66_zLvUHHNQUIC9-q8SPqcNwf_HUmtroPuZaQBiGuJTwGIYpTjV6biFY8c8J59y5e2zpq3jvZ3nsLOdngbYhjkeeBwF_G2eYZZuvlhQO6HdXomSTnNkuaph0rEkh9MQxZ-OBnXHn5eLBWBkO0cwd5Xx8WYHXpH3Rx7dqQ1VPiRKeD57Hb91FT_yLteRFv7UMG3ZUDf9D0w8LSQ-ZJtWXrPFjjzXCawHnRbh28yLH2e6CSZQLKOdx5FBn9tRfx6Z9jpHEb3ImU_bJ_jbcQDc5DK9NE60dZx2TMs1P4xngYMr8metiLxsg563AjINZWJS65P451XZNLkjBjZiW7RgMn8kpm68JqeEPDpFzFz1s9AInqx9GcO5hlmDtZ9v7HAt9wF-DTHpqrYy5rPYjUCue8mQPnPrNUv1UKRW3y4APfvzDEGxv_cfXg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6793bcd0328398-84942217','','','2025-01-24 16:16:33','2025-01-24 16:16:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42082',0,'cd-form-entry','',0),(42083,0,'2025-01-24 16:18:07','2025-01-24 16:18:07','{\"email\":\"lisacmwhite@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"De14 1pu\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAkc28BhB0EiwAM001TcIobeL9zaW65QZXpfu8KuLBGekgPaV6TKumtNs3NpXth_ZncxGmqRoCRT8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA44TLLmzfapuHZiQIy8q4oiAGUUciMAfoae-dwKl8wusj4lv3ru6UmXOVr-E70W7kNW6D7nqefcvCOzAciGhVght_xOXszo4G_lrsvPdOefiD8-aPSMSJ7p2dr6Kd1SC7bXCLBjNH61JZUTfbIYzMrIFGdduZHPBOSnDqqvhq6CmvPp0mlh77X5diweFYrPslQ_f9NNGqYCqcgEWLFwR9l2uuqeLDAmFebdT_GqFbGXGtvlDFSf5I5Xfm5uWxcI5mHDDhxc4LbDzi8GlFXQxCqN1GQJeWJAMnXCudJ76dySBZ67WahCZ1xjPc8w2j94863RLwXIyRS31-bnxJztP_59eQ1kCzk2cI144pHs3janOGL8egLroFp3uRT5B-PGMoy1rpXnadjcFum7qIWDE2AR6B5sU2GNnB_3-dAMOvUN-baw_jMqJRK8cTxpWcpD93xWgoGw0vzQDRYgZ1gWYrwWfDDODHkrGNvGDc9VrjYhx1exzY-26hhuMoT02m9hRbU_n0DIMMyGvJ-fUXxJfCt2w3DLVHgl6FrUxLhuNM0bV3uDtI3hPJhKAxwP59LmPtx3ow3h8HB-x9yPJpXXtvj-vowaajJZpI9DeDo3Iiigp367IjJQH2zDY0lIq7LXUxLkWSt10RFAVodtoqSuqhg6BFAQyf7meMO0WhrQ6Dj2qOMJfdYjEHWzOFfzT8ymVj-4jMwiYCeiOgpOftxbVezHZ-EY7Tt_qYlaDH4Zv38Io0CvuosHybjVjbk_PJddoPunv1d2_VPCY_j_YtTnBJbQGPmCj598fYXYZbSNcLusQ-69tfBbkjm3GaI-M8l60WFCSkoeJUdZgBaCr3v4I8HtMNUgOkEF1fuP-aaIKg0T6v9iHd3u3O1_Tn7lvflCL6II1VjBEo-nJNMmRONPXio8UdRiI9hCoqJvuxvL8rlZ9C2tLdEA2CDgARs_wwC1-m-ugChns-D2UUD9QoVeIpKypwvd8Gnby5lv0RF_e_Ap91WWjKoI-gdAsGf5yTXQfZZsG8d9GzUhBm8YgRAs8UAvwFYbJm_nZBidURAHVdX8egLdu-5oq6-wBEJ9eTmKraoPnBFAJtM6U904i0ACw7n_7m1LZGttqR_SyfeME2SlljoT7KBUEPhm2egbLq3CH5q1VtEEVP_Gl3CkUDULW3Lvh_myCFeTq1pdkqAzw_jjnNbYqATsarn38n8aGGR_9hXpgVAGLgjE9rKDgzVs-aCGh_1lsP4a0sj8LfCdRsZJo5yg8xW8d4b42mQWGfLqeWwa7N80ZeiCU5exm_bFuxwdsq3mrwewEQ2JuQXMA90SUmc4kMk5UOyXQfzwyjJwGLJzakFxMxuGwYbhAgsNWWFk2HzXVpKf8CBSt0vsZW1OlYg6-eCCsv3zSgqRURInsIgsZu5IeAjQaxaQGoK6R6CJk_m_8MWMh_PtdpQZg64SojYJ-uiRjph_ue37NWcZsJH4csHwdBxaIEuMTnFa1JbH3xvdK_XnTXKkr7Q80gs_8jTsax0elNQ-fLZOz11o6fediMlXr3iADq7-qyFkLheMFw6eJ67aLMqjIw0fkkiIMzEBMjSjzZDg6FuFFfh_GVbgaPfvgEFjsz2g9mD6hAj9TrsNy2uQYDt051Znahd6VV-051rK8kxLzpeslK_ECgZ97mRqHoCn0Sp1WroaXyvFEUL2K7ZRY-5Ue83z1YgwxEpbRBMmY0IM9D71ZAopMQewxUU7KJD5DEOx4-25r4LODj7_VDSzMimTCZb2UyLHcutBXQ_5Xp2bHshLvNJYJV3vcM-N02Nni45NLGdr2RnSXUaf3E9WGzsw1I3TZzf8hKiQ96fb-iLxRVFEMyf1HiRchmDnxftdY5oZdSa43PFlzHdMOfEdW1QE3AuZ8HedvAm2DeW0KAEQ_JDQUB4zSLL-w4MlfAHqESpaRgDOGdYW7iXycZkLPtAoiJU_6APpyQcT5Il-4jLAJ9SVKAvhbkvZ994dtXObcCz-FhxlHhR6YItbKTYtvdBuOgc_UQdjWdXKSKSKTlsWakmx0guq42Y3GVptpKWtKmqwYUUaqtD-Gu2f9hEfs6za0lDTso0ZiWIKF_xnAJyM1rzOkKHogr-bwqpVOLOhJFvP0UrVJL-jwfCbnLy3o3kpKAh6EyyLJPR0H4u8gk-ZH-X6TGx5Bpv-KrDc0IShhKOkf5ddyug2Vcng-bC_2cS4lHeWPXHNDPD2QSXz0XABWiT9uh_lAO4WdeOzYWxEnPJvZdUs5BcB8HFVzg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"employmentstatus\":\"1\",\"workindustry\":\"5\",\"qualification\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6793bd1572c084-96045629','','','2025-01-24 16:18:07','2025-01-24 16:18:07','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42083',0,'cd-form-entry','',0),(42084,0,'2025-01-24 16:19:58','2025-01-24 16:19:58','{\"firstname\":\"Lisa\",\"lastname\":\"White\",\"email\":\"lisacmwhite@yahoo.co.uk\",\"contactnumber\":\"07544 101 520\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAkc28BhB0EiwAM001TcIobeL9zaW65QZXpfu8KuLBGekgPaV6TKumtNs3NpXth_ZncxGmqRoCRT8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7dMEVvfeouJEzHqp7pJDs3YTtnRzfj-Q00SGevM6prUBIungZ7_uwV9Z-hN1cEPd3h_Nac1q0_KXDD4Nu7NQXAZBfl9rdJL-9rKfvF81XotNC47EHlZEWMzdiHG5etcb794ndgqS8HKvsp_5ii0R3jJ5ZWY5dTX26dzDvGWKNH6qvbQllAmxMx-ldmlhF1h0Er5b8jxjzdWOsrAA3oiQeS5LvUmC2sZW37JemGcVlc5Q98hHuKIp9JNFjhg3r5C-HE0BcAC0Ly7AO6Xquz6FhEu9TbbSW3bmLccUy9mOpngq3uV7Fcor8MeQCxawY8qMFxcFhD5SrgKUVkhLhgVErdeh4MZ2Ymz3z8yBe4JOkrFnDm5GYyG5PWrc-HzO7mYcglmTJsnuPO9Yb35letg71ywdZvgajdUHZ9Q1PAsyG-So1uH3r9SbywtZx-c-u-G2xGhQJUDcWQMguXdImAOubVyGgB9CCnBjaQdk4_SWRWPSkBowMtkoJuGxck0qL_zAKsGHUk7qk9R5xZU8GeNNLWQk00zs0hxTh3CrUWPNlwH_USrkJBDyEHOZ4zQaJEDuvTJcyJLnlTByCw_zXXFS0otv8K0dlFJa4wa8_d2kdBe3eJwGd2nigcEge3zOD7ZMVPGmm1p8RN2qNKj78j00CfWm8B6o9Cc6FA_LXXtftXzTa2iAbOLC1N8bXq11n8Y7WIn1DRXTDFAu0d4ltVEEmS0wz_4_MJ_ZIXwEa4j4P-ZsHeqiEz4CrhWN31rOq32KAnZXPSJxxmQJslmaWCuW5xqnLxAAyDJHDUFXmhADJU6j7YRyfvpM8dWF6UThzVBU_UmRcbB348xyoYJy-0VdTOJsxoNSx336mbG0Xhusw7qBxysxpKvniCdQIghgOu65f4WoHUvRpGgFA3rP-ABTbYp9FphoOh3fi6bKR-DZELMi1SN_ki0IJt0cdywZ4bEKvd18-c7SKnax8Xq695dSewJnvVxEwkLuwaMaETnWASfEvOs29rMAkhtfMnGt59wU334SX9A1PDqWjdGKURPeJCTGBLqxTE--QsoWEWy_H6HM480_yGWKgBlP3jcrKTlVrj5CdMkwdKbSPI8Nq4KJZ5VvhhePPGja7wcWabI4yqxJJzeln4ul_5_3ssFE-Cu4QJvrReSVtMM6hwoRQvYbrdpY3qDo7tNIWCOuZ9R5oJ9n0qWONa37A-zdg9gAg_ZHg6Jqj0LRsG1BhV2o6MXfPwrBsLsUOdeTCkr5qK1qng3cDbZnxoJjmR-1t0oSlSCzOjc4FaEznE_tBprMB-f-QyaPVPfQ_t8VSJovOCmPdQGppoSTITXnj1TlzEwpfRTOzrNjk9vSniFNSfvnlygSFKer_z52SYAxeL-8rqqkU_HZJ8Nvy6sE3QiFR_-Rm9TrvEqzNrzhGcqJ7ci-h1AHjtuNz60ehEt1F2jpP4gi0BnY-wY5MKzjXL-KqnizHJe5h5iorm_7DOvKH25oSMijOvi92146-kvoKLsp1HtL8xkrbUiAAGgaP9NqkI0chA2G8V0bAB7mJcBRNgKp1CwfZB_C-HW6rWODSpkR_YfWFZGm-0SGxwWUKtQJ3v7SOMBOnx7RX_TSNYEkKjlcUOyRUDN5lS4ik9Mqs10QvHVEAg5UZgN9fzNy-kV344XC6RvoyjuPQJMbsFZ1mQEWnEggcgdnZ8HhKC9Oxa6wQh0rNVoAnYWnunYd9maPEuG1j5eWZCGha0C7kAbu6vFUcPLZnQk4mFZs9P2PhaephCHW0Q1PxOOzeb0c64GvN472ydzgw0LV2WtPOJ0mDrpSoFHB-Iix3iw6BcWt41cbNchjpCpKa8xyJstbORn_5Uri5thfQFkhzDYKVTeVoWZwX3OYsnVfiDGuPEL1heS317HLYjCYXAwNvSY2zgJ0BCj2DXkd3WxE4mcRU6QpyQQ1QajlWN_SXANUtHcyMRwHL8yUxxjt1wE6lbAqDJSL_0HynbIPo82ppt7aM4flSV5IoaZGXr-Zqo8fiC2YkIZjRJHSdnttwScSQefgzjBe2A0AMhp-55UvG6_VLykMJvEaMQ264XWTet9XGePwmUCEeH9PfNKlPkLqmRPoxHupyM50encHB5pKy-HmIrBELYpOTN76MDH9e8rsbkpIdjiVK07w8wH2JgyagHKSFNlV8c22nUZfEq3QrXwLwGcm11pMw6eUp9CI6gGXhj4M7VJWOFGu9JniVuxH_pbwVoqwTiV2job5yJzPGhRREKfaoRsCWwbQsZBYkgaQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6793bd89d74737-05218174','','','2025-01-24 16:19:58','2025-01-24 16:19:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42084',0,'cd-form-entry','',0),(42085,0,'2025-01-24 16:21:01','2025-01-24 16:21:01','{\"email\":\"lisacmwhite@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"De14 1pu\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAkc28BhB0EiwAM001TcIobeL9zaW65QZXpfu8KuLBGekgPaV6TKumtNs3NpXth_ZncxGmqRoCRT8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5gx49W9GjnobvNVpexlXn06bJg6vn-JhW9d8CHZREmHlsRjJckhieH-jXZgtVxNHh5RE8RMSlE9JPQeuV7k-RqnspmJ3P0bD4_b0mdzW_3oDBU89Ah3F_s4k2WMzysqJ_-a6bp0_0voXfEmWkc8UQ-5Kylh2ClVhfXbflkLMGqi_gqV4CN11fXvJ73DIdQb-a8qMJ4GoeF8PXHJSETi6bDZmEpfb3cfQbuyzxCZAJmufQxnYbveJ6EyzTev25zIcbe845BXIT3iFRq_NK1dyj3RA8N2-92cXxxTBedadCYfQmJKaG_JH6BYzKByWS_S4IlJx1jPHaJezJ7_i8cwErPPYIeJXVv16ERNtbdazeL1eF1Znoq8TDJPTac3GrhTi_bzVQLi9z4K8JxHx3O-zXU8FrbP_sI8KhMu5N3YpV4Rq3d0TOuT5pZ308qk9kBke09B_dL_R2cfNi3JTNNtuZp5_ZOTrbyvCLUIUa4GDNw47eHSVPu3e8vPATocDHjd-ywyU5iWgvZlK_bUdC9sMAycTL97UNoG5kW5OpPBBVW97fFPRZDvA2QiaWn0vfnIog678dj2sqQKsPG5A3QlDC7SZCbkONH2wh5XgU34HAzPmN1QCNdJZE9flNALCGrhjrsIYO19PZ6xngKA_0Hy2HjUBq2o4-NgPnb_t392Ortp3z6FE0hh_hy_mNeWphfxv3szD7lx5xcwY16oVS8QrVKorK2gjdhYrZw7j4aQPJZKOjYoFnZC5L_Ff6OAWLba-8KXjpu9TIz_uUF4j7YltAJiroA68KwLW5nxdG7znaGid_LmgN1nggt0-P7Q80AErotjw6OY2x6kP-A2AC2XgZeU_op-NgRFvHeiqU6AlripNL3C2Kpu9sjRN868gNM_ZQgO0feYEsGy72wYD09V-v_ZN-e7XuksU5gWBOJfBk2_PS9jZ69dOTxJnSdoe5LLgyqFxoUxaWR6kf7k02LQdK4mkthJ3K-SmdeFaPQmTfTPojBbap4nBpC2jRE1N5Y9qvpnEBQt9y9wzsMfMQyeM6vNUIgEU3OLpz8XQah5_VBH2BAoYx8Ggn5Wvxf4zydr8abP1LgitG83HoRygLnPnMFkQ9P_EVYpWSaVM-oEAn1erls__2NNAZCnd_KB0XTgNvWLAo6EyVjSueam2nUM9GY-4xkf3FT24mXrhR_MfFFW78NCpN6iA_Pc4ilO4Rt2d8E3-QSKQUsOl6uCYyafMsurtcA_EVBLHD2IDA09baEBZhhXEuJTWogI-Hx41a5KPP1eH6ya5kUp-pYWxxjJ2KXEMhaoqK_aAwIYI0rE5182BU-gqFr6Di9mapYo7w6k_b-YszP7kA0ZWLohenZTsuC_twB_7_LeNARnvpI0dZp4Gbtx-XZE0LJRXD3kCLPAk5iLQTt1punb1IOUXX1pwRmP8F1_b7RdByLA5EKiarCg5vwHoSHXxbZULeqCQJRzg_umkuu4SPyUoOFQouN8knTuGrYcHE_lvbW5mivbbylfIy5AOk_2w5eYvFHxf-v3-83UPl2GD7fNLyAero9osSqOQF80q_IQwYykTs5Fwi1Eoqg_FRjLsB189rWYqzZkkQ_CFtWJHhRE7pq3ux0JKNdEESgsWOjT93kqQINlCgy9F1Q0KUoYO8URS61EmMmBxtiluJcNYKpenbEyfKb2V5t1OpaWKqA2ZJsV_6CY8SPNu0zcS3N-jSF_VIMkJeKFIgshfk4oiDwv5YJ6I0_Nc9pPchPdyU_x3xijFdjVGwG-_E7-an82_YALONJlEvjoL8LZ7YE7xscgtJCahwxM1qB4t5nWQQUR5LUdz1HdCUHPNfxBAy-XYc6bKRjzHGCS6l_mJB2vsX3C4ahQQZ6d9bzzQJofS7suZPGt-1xUUpCOAVtqBs_JAAFKaj5qm5p53bXmK2nxoygwRAhYpRNO6wTzjN1GchjYDkjCaMz2QAypYiO8kevhy7acWGL7LkZ5fc78lKh_sZQNzRRSxG9ItiaK1VXP6fPc6SJTWBKrvC8vPtImnWFDZULx95sUDrhbtOBhWd6xnjRyfrVsdKg6LTXarK6TSBaJRrJGZsZwOJovEU0KuK14rFhciNPFTbVCqCNzRhE-zmDD9bfjaurxrZzAQkACTKF1FLWExXjMwUHZnGPWxWMdczXkPuFaJjw_SVvFbZV0m0fvBcud1fKd2axCmdWJj0euQc2pYlMOfCX5NfDBgBqB42SMyY8crq57x5BMAW6\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6793bdce0c6a27-30254339','','','2025-01-24 16:21:01','2025-01-24 16:21:01','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42085',0,'cd-form-entry','',0),(42086,0,'2025-01-24 22:42:19','2025-01-24 22:42:19','{\"firstname\":\"Ibr5\",\"lastname\":\"Mohamed\",\"email\":\"just4hema2@gmail.com\",\"contactnumber\":\"01013079051\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4KqZ1fFqbtVWiW3mDEPm0LKRS-M2pcJk0OnJedYa5K5ITeH0bP46PWaI2_lw9hFHPFRAYWCiRStfqxo0MaWYRaAglP41g8eSHCwjibIwdQRm0U2G08wDmSzRBpJZoz035z_qNczJpT3xuhqtirsk9n6zS1kHLe9LvM44Kq0KSsRgebDplH2BXqafNnUB2mnzNUluwFPgv9XNL7XsP0UwJCu7Q2nJOnwx-EvusW8tZ-wiD5gGEP_odGm_2bPUOtU700omzPra2szvZIqzMW6ee2IJVIA9t17iKlu1SxiF1n_kO7AQD7SzOZfAcBpUKw3mxCsDZ8buYMlucq0AaTl7n5geU7S7xyWw0v3ETBIstGc7tc2hcnSG6xeGfUvm6Gg_MNo-VljuSNnEVhvBpMcst7IX5be1uLYfWH0caaqKjNE26QsTvOd-zPrS9tv2XSCYmXUE34RInuXBXok-7Rp91fCgxZExDGISQDgTA0s4xjnoOp3EyCh9MfCsa3k0_CMa5_GXBD_3c5rwMGE8qt_TbENAEuoLW2eXQX5nzIUpC3ik96E-wurXmzjECLVcC-wKy78oMF2XkCu2ma4J2huo7kVueOl7knEL3Noyjl4Whe7Frt7PmGe7bOq0kb00vuMhxmrPXXzLzyzFwzo5Boq99aeD9_pjuZbSCaQpXH7nautNdA8vBJycbiLjGaDOqWCA6wZlPWyXkJIye4CeNP6TZiYiemlk6KL70oa_EZXjce9WZvlICwssLWg--PYIMDftzKLf2czKqaIoqQ4QrBLbipF2KvgfynEc2LfjEKY8tcKmgUN8XIwhwjMOAyzcMfdb9_lLsh9GYnDsmpQQoQ1T_zz6QdBmAq9fx7hDRMn7rq_F8r4WbcL0TEabPdzMqW008rQiMwiqgR8g1j9nviGTOvlQV8axQ47XV7egazcN8BW_fn1Q9jlE8kzZ4SRFdiQ6Barm98-9ypo2lufu6IWI6gxmq-YYz1K46zUE3eDhoEwdUH2TyccVdqgb9o9-PmQ8fLpx-hemg-Ukz3HBZUZz4_jE7plm-xj5UaSCABq8fmdcAFZ8kw1ULa4i5k42_ekT2ctHRId0eTOjSeJUXPKvsDuOdIhjeWkjq0ZIn2zTd7b0cQYDp2VknWX4SnE1LFlHAluofxk8NtbBgtAiaVkbsqjlqhpL9ZgpXguC7bRHFC0OjHSzUYLiR1fjmT9qvpRVxEM1QoIC2VsdXvoNlafLfgBVq6IvHDDtfwQqVTIIkD80Wm0iP-QBb2MLQFUmFaUDEYHO27dGaE_gB0Q2-QBLthQbX6hkeGNJmAoPVvMAVFb76ptQLLdzU29H_UJBdDxi1SfQnStkKfhZIzQDn5Fcj7KcDEIP8zynj9Vr7yHcuLc8D1X35mCO6z_BESC6HxHDuRmQDM1BIN7pxfH4ahpAgnxQel2VSPLVvM6G5Wt-pJYkaflVhLlLDCv11DGLiLYoqGP3tSYSoY3azI1LiTuXfaj7YcAEDModD3zWhTKoP74sWroTonx4tIf_rC7YgO1X9eRXmfOcZyqxK5FXq-aeJ1ZevEW1sg7WwsbsQDTG2eR6dTIeBQUdDOPbXVbFFtGvpZvfkETDuUWc0lrL6Tri02l_t0XsBOcX0qIUCr2Es1hcWccWKQFZJcFHp7FQxyZhbDhTxXw-xDfgC1eR-l4bcH4EzKAm5D6xv9aVtRiXp7DDdcFyWLT_No2kC0rbN3_Un5c2dpIZClvZTSu0gDQMp4mhlGcPHuc_jO9VuMqXR98pGH6sQWNbtb7WodVPjR65Mr4PKe6GZFduUPWMXgu5KlRIV21FWldZA5jqlfxkt-M4f-eKZqL1ZWiIVh3j0N9fZIh6qlW_CLX9s8KCrERtCH7NiZBtTBuNGooboVLv7eTMoHa9UFiXEIo773XoxSeVBy99qtswr5frIj7eLFc4QmJj4mgonxttlpU99rghtdyIkxvV2fhHm5bDqgPYTYiBI7e1uVFnuyiQK7ryWgkkn2hcjyYmAkTK1RP9hVs4eqfjAiV0gQKS4cpDy2wXDCyxNHohzqu7t_T1iLiHxjneviXwcagKkoU0X_PfiiZHiKf6t6Bxyc3F22ZdzVVGmgEahEbNiLmrdXVTztJITsijyvqwHsw7_2m-SIPytUKT1pswnqKIbr9NMo7lICDmBdhI6nAatk3-SOatIOLaNZ-pAu5TFLM2P9ix9_-tIHE18gd2uW83o0Qoj7kCFwDe8x7pBEGSExgAYKCn0CvaHkfCs75zJlvYAGZaswOMCDSeHwoRQw3_M\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6794172c9275b8-12883870','','','2025-01-24 22:42:19','2025-01-24 22:42:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42086',0,'cd-form-entry','',0),(42087,0,'2025-01-25 06:08:32','0000-00-00 00:00:00','{\"firstname\":\"Manuel\",\"lastname\":\"Gonzalez\",\"email\":\"taokinesis@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5pRI9wswbRptxj_MQ4IPbZ1qmFIKMw9K7u5y18Sg4OOw7CehUZXJhZz3tIMYN1eogNsGWNUHNf2O1BzEmDHqiqC4NNeF1h3LagqDN_rMfZTM5xPSS7co0VjlbWmNF321IyOCmHzhjyS_ixrnAjsyLqPR4f5822FXWjlrNknbxnO6fUbBkNuR2XHz84gwgWorJhRMJzobwuGVtrIFaxO_jHso7WmwAYdW79sOjoApXEJWgLE-JjVXZMZtpLN8MRs9-wUMTFoYDeZbaaB2bWJn4wyLx6Wgsh4pSyuFVt0tuPPyTDfqYVW5halCp-o-cv6B_7Wsw2mMECsFDMymXejPC7yyINwx5wHRkvIqU0dPHdk8hwYTsiRXXBe88kj2vuTJHOLUfWIiDzebVLbHtpOvabCmmfQpAKI3YCpMgY_1DbSTcbYuHs_ZN-awc-28NZ6nvK_HiScFi1vAx9mqsGZ6-uoaSEXyPhpK_e83-K4Bow2-Y4jyKjzaJJMxft5EhGWtAvCivwLJRtY-ghk63BxmuiBvBkeODnYgMQNgMOXV0LRg-_8RknOrqshGXWe3cQ8mfZfmD8rG_4v7uoKkHPxlBu2lleDtqehRvch0ERTltjeMOAU8GIyeP3kZIFAxXLS7dMu1wI67Bado3FUJAa9ovdhMa3rhtR0TJVfd6OFX57v9aJWZddqkDwNKdbL_Ed3eMCIjDGb-GPnXs6gAqV2t1ub-PKInCjdN5vdKph2Nklk_b4o0BnCGQWHYR_oqxxwoB4Oqo2PVKy0XxzdEb9Bff_02JmTwM6isRBeGpagEUMv2jDeJfjchNHyzMZsQp2nwP1GeLCeXzv__XfB7CJWJCiUy7k14ldaOzIu-2PsGcuILrdvc2rONMWRXqD5IBZ0HDENF881-8YJkSYZOwjmTYLlNyeY2FEb7POs0dmM6JY9XYHLYqE5nE8aeUeDa-AEnmzj6pitbQ9dqgedeOJlLNHPZ9__kc7Qh_RF5987xCvCJ17wjVJxBN5KPGIU_-rjHwAxrth64qmMJFk5ZtiNEVRWoSgnfnE7sVucLVDG_nfH7X-wuW8fwTfh23_5F23L-jxLthW8ycfdgkNALXjB1YAWBXf5MDX8gMGiJC46GnELwCCG5DmNoYuG6ziMqZOquEMEqscj_Xc42Q0chL4FG6lU3FCW7bUGTud8H6ZmM5i2fUKvI1QiDTlUpQJhe2kz6oOip6MG9jBeZ4-97wI85Eno5IQFBtOR4G4FBp3cc-ZIQ6P8f84hEBk4qTjF3wASm8E-CVphCFltg_oU7jV1XZ6zI_3PDxE3m6eazqKqI16Z_wMqq05t9qbjrJ0RIcXKshELCNFgQXGw6FDb0eNYEuqk5lg8I7HV9Rd4SuIYx4GsdftUU0576LIDf8G9ABjsn4Aq_ZrH2uIGcO02_kgWBiIQ6KmTjs4jb1TlZ0SMM0sQmK0TFARrvIt-vkEYz0gJh7kTUpVN6qoXcGXqAMGioi0vDopGJ27-8aVWr0QsPlX7HWnCuhl4AP_zXJrG9xFhPjAhdBEJSxcTzCA_wsu9Hp4ap-WSgp6BvSdrtcAoje82eu9IJqyDoUxqveMa4b31V1Du0dFTbFpj8k0WsLta9mGtXBIgIRuG5vx4Sbp9e1h8DTQLDHufadMRn-R0mlm-M5Hu6JrQsc0ApGUeki5cvyH1e7NndHu4N3YLk-ZOHq5itSf22m1OHwQ2CkspA1q9Ab3BW8NWDukOVVtiLs8MKMpV5ECIgmTZzXwp5psQRlvbfYpTia_or2vfsSqWSlen0_IioOn2IUP1fkKGZfPtYQu0xwZmbG65bsKNjuLFpqyGQ_ekkzYgBnOBX3q_IzQkr8mYiJLrsfHWEDc_30YbyKF098OIHlGwgyUB8dG8VgyzIwGpEk7CNylpPc3HD62HjkgTss-PQ5WIZW1HYacksHg0QYFvzIhmxCDl4xqE0X-QoYzlx8yQ_kzqNBs8kfY3r0QXoXNH08JlI3_0k_OZ0Bfp8Gqd2FMfd64Sz3Ndc5C10hvNQ0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67947fe0d4c5d7-08827835','','','2025-01-25 06:08:32','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42087',0,'cd-form-entry','',0),(42088,0,'2025-01-25 07:11:16','0000-00-00 00:00:00','{\"firstname\":\"Kevin\",\"lastname\":\"Davies\",\"email\":\"daviesk341@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAkc28BhB0EiwAM001TQ1UVCQ60pehtlqiKPSmjksRiquy7qAWiWYFD4qEk174Sza2P50D3hoCaVUQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7CMea_Jw_wUeUsciaf3uGJngg-3zdY4mG_jGGY5fjQ1U4ebBTB4x04BBRppdSK_hSTMJQ85DmuB4qRHGr8egjHG1XjMPtjx3m7sIBCuAKpyADEkL_RUpL-Z2XOh7s82HYC3PGrvKgqQAXUFkRYjj6tt1QZV4B2M_hynIuo9X23D7BRfDC0oxp9CU-4SFfWuj0cJ9uouORlKmmGtnZjl9p9xurE7H0hmReiGlEpe4RKakmJipNEnXtimoWBtl0374JzmFfxQk7b1sqxZ6MS1Wa-ghFigN4KCh3xZuxQKW5aNTZsisCrPOqqC2ipSg_x0LjvgceKxFA71CfxA-WiyLs4bWeHO3BCzgB1Ur5T_g_zlmXbklxsnXTLkozZRM7isVdYFShUK9BkWiGhnMyk8aI-Kn6rhjh9pCi-Zu9awET06so2iJs7NjvFUo5f8DKOyQQ4CTO9zMXhiN7eUCE70GJE_Xm-P6_461ouj-s-Z1WefzzOG_cDMe-QYmqTsdpc9HMQaejtSoS26XJ4Fz73QpeeXEFjovjeVRtoxisBO-PFxFHZ6aiqY2dkJ29u6VQ02hREqg5kzw2e9ugdo16CMlzlWizoD-QlnwQuxH3SKq1ZsQLKU1mCutJuKg70eY3j5wlAyUUfsrsr8I9eyFe822aY-Uz3nOStH3fqvf_r55JR0kTY8_GBOC7-qnz85CbInNZQpZRsVCUgkzJRP_sUzWdLLdYwTSPeuMyJCKRhF_dVcjpwF66ZHLJUixTVigOVsiO2dXXBA4BlrpgPvoGaLmXhZaDMCyLK51Oz4CQJfWHbJbYA97lWGIBLYXZY2BkfOJwyHUjB8TBJxWwXfoAlSBY36ttlaPwxJo4HNIxrOG0Q5as9AccU5kg_asqfJjiuM5Ta_i_FjgegBnWaHB2LQMGIxfBpSSdrhdL2EfkeA3gWSkyU-rsaysdRK42_wJQddkxrJUBqpY1XWag8ICbJrq-0SUBfbTiJGRPPsLJUvN5EjZv4cU5oDNdwLbiiWsYYp3pMXsx5H8I7jB9i8mBUKmwbtdzBCrzMd86A1qLTG2cueHwnzAUV0yieLwRPDhBHLpqrEa83mPxB6CKVPHRTMIstceEcLuYr9DptSt3fa0zE80ueZe5oKrMa6EE1qz-FbzppnBwKBl0hv9VgxgSuZ86NiukmJwey3PvXc6Pg-lJhUIT1o4HKj9aA3p7vGcS_TVai3XEDBWsFwu-uG6UmbkDlHkinvXyUQCrtRORZJiKtNknqAhaiIh2lBb4CUqJQ4Ke9S79qaOYe038ZSY2yKipwGhox0DaVcWnxs-Eh8jFFFdCY21xtE8vENP4aS4mIb7dtlzrQtiW910HhDTtUVQ7oniWPTCSYZ2mdQ4-uLP36-u9FQf1TIseGoVlcRzXoD2IVv-syj6shjEIrcLICy0E1sWXM7h6qUMqgNkBJFePAn6y5jrWngnACjK543lkyIKeI1wyqU2L6mbXfZ8WYx4GhiknFy3eVLTYPwxRv-k56FBkiyCeRqj-lrQltsQEBtjLgYwhBhROud3pcukIaVwRN2AjHPf3m04fqJ0ARmvVep-bTJIpgnEem6aeU7sPy5A8hVL87_UVdUT4uGPY_LPRV7S7BObJw5_qWr3lEsMZAFjTZS9ZwnNOKurxqdqLEbcTNkt7mzRKXi5LDlTY8nSItiGFDTPyyZjPbTSl_qm1WM3cma1A2ej58v146gdesivpTrIIy0ev0hrpjwc2Z-NdBrV1VQgKS9_0MWYXnTWrJRr5qJzkVbbftB7uFBv8S7FAlXU8ED6bp-qNTtypxpZVBQhBWXMfMWjaNGdMCojuOcEpgwAOGiwJo6DUINH299Oe9QwQTttucTede9wADce32l1y6rKCAw2_IEt6ZLNDIxp2-RJhj4dc7LumcrK9Fq4ez0jPiH9cMOXYxzfWcBvuCoBV8twqVAxLCbuKA302SW0gdjKs\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67948e94900a49-52644593','','','2025-01-25 07:11:16','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42088',0,'cd-form-entry','',0),(42089,0,'2025-01-25 10:11:48','2025-01-25 10:11:48','{\"firstname\":\"Roel\",\"lastname\":\"Scharnigg\",\"email\":\"roelscharnigg@gmail.com\",\"contactnumber\":\"0031658804245\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4Yhw0inJbf6gqueAd2Hcn4G9b6kRvWkyOy4ONX0cxg8wbIXu7SGha_AEAZX2ecq9qTa319WtoShwevpINYoUA3nopzNnmcMoh3ABCDS9bZD5-4aV4i01SDVLS8ouLRiPQ5tmEQhMFNXpK-nHZf1tH7woZG3xBsf-nuK_gsjF_NvDPO0hlekJ8tu1PkbFn1rWNuIimK2WQ46B-GAU673zGRGNfhcPsOQcJ86t68oaVzkpYJM_sPpXggu7nShp7064nm7pWxKgX7N7v4IBBSkY39Md6jSlrXdej6c2Qrzbf0jWdEfMmrLrlU6BGxLj6kCG1dN9CLZj_ZfMDLTGkRdOryPP0vMclkh284FJ_EvGkMZicTMF4Rh1ifXCCRKd6VelVb-XnmfkInxckMuM3jWHcptD-RqjQob3wRibkaKy66OZu3T_UskWo-xHJF3ajGIf0KuazcSZtfWiP6QiAIUozipxYe-rSjK7LLPQ0QaPlG3t5VcUf1YXTIiIpfavJyQ6WI7wrhbrLOUpS19HB16DXY_suj1ZXXzC1mS92Afxgfm9HzVq5947H5cVQSMtL4jVt_BNqUENbMxps3DF7sry_it0Z1md-huzXrJMgWSiqCQ_nodorVAtSsDnD58WWYvbnzJJerdbP54kY1aSYi5OjgagtI_pWTz7vmWAKsQRa6oOa70tbMGKLxH5Qd4oDKte4kqrbspn2jwMaKepEbkwcNBffJ6CUGOgdlqGbohb1f4qRPRdNfgshGTCltgJ7rtp7L8DdCIfrUm4tzfzHykqOAw4-TPSefI_IMUOiN8HObY42QCWUVpiTcYWnW9O7lYAvUtyQkXaUISO28v-wzpTafXv-5XCIu_jwoS6H49fm2QogMQnl0YmLjs2-2gAqPTejVWm14D2cdiubBTmxmddMwWQ90EmT--6G6yxHGf6HtOjjVdrIB9SN4VqXz0L1P6nVb4tRzJKTvMC467ulZEK1tio_SN4g2FsHE2hyOsuYxyO2g7p_Feq2IfKsksKBs8d-vMRRCGCjkzxWINrViJ0t5Ay1ZJAFkzTMyfUy-VktYZbSjnmiX3BbX7_3_4YoDjCOUni__NxLXzN1WCo-Rr150lhzZDJsHdr6F1dcYHuOy4-hciRLvVVTg1QGSi4wD9otMIuZO_0TtawVqkCsr32-QyFm7WLESXk5_GB3WAEERi8qim5c3m2Cs23UidY_34Y9tJuXKPW9jePgSMwuISqZntbVQmdQriP2y8EjO9CdLlMQ07CEFpZAy25cT06Jzaw_76lap4jV_zjaMNNhEzwnWzc2X1vYhy13MIkAo2jrVtof0TZ_RUqWoopgYkkJK4h_ESFokxar4fW0dubAzFLyA4Fd3bjnX9SJvzh6q_Ut31Yqd999NdcYq8Rf3BkK9Z4-AlHLXP-4PAxu5wNiSNdNqH7e64CKqo07MJB9QLDYVt-wP2bDTt-GTLR0GsbvCNhvTQAwVKOMatwaZ4EyF-jqdO7MwOONmgl6D1N09Xw9594l83gQED2p4zh5TnLDapOcdmdxZiW4ExTK5C-NuasiMqHckZljPo-fL7e4dFUbupCguqQBt9HhlkWugLBXoJirvvLEH_p8D2iqpzV1KlrV0W4hqaXHaAeqfyxz7oa6RmEmMsTfUhPAE-csizPx3Vj0ygtLCkGCeB6g5N4G4zntSmcA0MMO0TjfXnkXmZxBCS1YgWotT60zc1vwohOvtWdZfUAuEx2QlnbunEjEgCjqkQrvD2iHwvxxV2JgXisU9uo6JY7aGmxUgKVG8krHiFjplSSBSSvRkMvVFvsBvabL7AkNIMxPPWHsR7jzHZzRWvrOTbwSgsPlTfAVFgSmso_1TooIWVq-M0dGJvJ_RHjFWwGh_WWP565goE4TkdNTD__yASYmxL3kqE9WCCHTkIHYWiNfIqq05SrSNq8EW-gO5_TPw-G-KoTjmgvoelnK-j6e-4CmPK78Ru-u2WgTHFsMpA_7Ff271WwcE4VM-fJlG7coIkA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6794b8bdca5910-59960521','','','2025-01-25 10:11:48','2025-01-25 10:11:48','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42089',0,'cd-form-entry','',0),(42090,0,'2025-01-25 17:39:47','2025-01-25 17:39:47','{\"firstname\":\"Prady\",\"lastname\":\"P\",\"email\":\"prady563@gmail.com\",\"contactnumber\":\"07752427700\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAtNK8BhBBEiwA8wVt97BKMcwGqypWeSck0g9nANCcIzVPo9-bYUDUzjwr-YcRjwouCysPXhoCGNUQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7fQTY-Lx4RlWhTdZKZeiVrBNFLY23oV6g0WxPQlo8ZAi51HezUhZflEUSJuudIgmUa1u6aYLMULDwEqOy7uAvKR74fo0C_8zjve1an2uOnlhdOaKEVglvFsq9JCniwhyrYks-aP5aIr9YocXMYTO4Jv4PRUYd3ugMdykNqRHUZC86VFVtYDMx4A5sIqHCTtfSHbHqW9fKa3VhiMCn0jgtPspR-lQhP66o0hRT7MScbvzv9tZR0-bv--jFx1ZNpa1J9pmnIlnX9tMpIWmytkuFE_nCzi5SQcvqQr6B9XSbfurg5vT4NuM72Bojr7guTrqaLJ7BLa5vZURO1_P9yUEzFVOvAa_j4VwRoj5ma-WnazjXggbFHVrkkqdtDb9eGU02N54rW8c2ccNLkXq-CFmh6UUvFLsll2a3RGoA9gzlr3svsgYmwVWfaPh2g29A04S1Rf9pcQXJaEcYfsc7hmCCdyRxOB3jj9VWiuNNsrwbGoZ0gnDMHu3u_506d5V5laQ0TVuBGrAePoOSiFZdCa6GgF3w00LSzXPQeWud_doE-R5yldKqqpL_xlhBdfoi-5N5HSEq-yq7Q-RWT8b--0SGJb-GM_Lyr3OTAqKcXiQIpvDh0_y3p2tWRoD_SMA3miWio9cFu0THFH1GEjEX9EP7ON9d96TNlXIzHRObLUn59rFguHR8WUZsIqLkrgKLqqi0WJ8GJEdEUP-7gIdxyt1Ln7guObOjXkdNfbks4aGW3eQreJfLKaFrNZUlfgHlKargRGXG-b9kvbN_PN1kgMuPGZgnpDlnypKDnVGd5XccZWCUfIcrMNwHd_TNg_yFGKgBfS9A5IpiXi0Yh6hYtu3kRh22fqOF7RAIEpT8HV9jgFnbw0Lc-7dLjEZFj7HuST6vFwdgq8YALBWEHkN_crSpUfP-6NMfjLQd5Day8pvDTpf4LClPXLnsYuDrLFR2TaozqmJ1Rm67dLO32xogsClX-LXkw7Skr8pSRX0R_JidlTFj2m7RHtGd_3mS_wePI9jl2P1JKrnGy0cN6tDs_tSY2K0TyHEMOuELAjoi66_SsuGZgh7IzE1ekQgv6S3J0AxxeK_2L2cAB3dGV3AcwcPlQEUWKosDEs2OPDWgudx5gAZ1R4xXnpt5iJOH_vzCXwa6-vjAs9SWcwE9a3hsJsG5-z90OMdJ1q4FPkuRSrY92nrj02R8jBvJeyI26CubXVLakghOon05yJj9k60wAeFlzt3fABwvpPRdODeoVJuMlLd6KwRq_UZX6a0PM4uhuosU10zrJ58aOqqWpVBXjOSL7KYY1W-C7AQaE7VKf5iKNOytAmg9mAFPzQ8uyOonKMPVphiYskWkPpTYEqUsJ5FmtZMM68TN-KOPhmp71d9swYy6L85-ResnaeZlEDdonfeSgxtagFsa5cIp-NvvplFRfBsQ9-ZRKDXRWNKi3j11tkAcPBb1HSz_dtRGl4gvCFOKZPb4svTNUKvMwNWKVU7KKpNJhK3Om3Xx61qyxlwFZlXHDT9qm1EO5aKm90Zfa8lXEQLry5r73TYfugUA3y701jPAHWWyiacBYnSHplAHI68FvYPjCtblk9F-vBCFAzozFWs4u0vVAODEBfcoIkJmZ77MHp-GjPtuMX1KtC-KhdSYbrBSsjUIrVIjoMo5kSWaP-840_i9e4QpQ41q_FWLUybC-B7PiqI64iO6KrWNwBNTpkUwFpNK4bFY2AGi4UNGC5z24LFh0_XdwpBdKhjetGrcT_FgeqY7AdHUGu6HPJNk5D2mO84D88GXlj6ErRgqik67EmEGtxaCBSNt9Fvso7BCNCX8NthAyK6lySTUiKOIl1E1_WuxO8GWP4_aadXBaTDQm1ClLxg2qWE0hchJWFKfjZqxLfIVEyYkakGT5L0jpQksq_Ie_Ei3cMT8SKG2dwaOUFIzGtTItkDRJyVOAdJQn1zuBb69u0vxvnLg8KPMViJZHocwp670SGNGNBnonDe-pxVtZpJXvZaIXjqTfAETQEQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679521d71fe662-73501936','','','2025-01-25 17:39:47','2025-01-25 17:39:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42090',0,'cd-form-entry','',0),(42091,0,'2025-01-25 19:44:49','2025-01-25 19:44:49','{\"firstname\":\"L\",\"lastname\":\"U\",\"email\":\"lianen@hotmail.co.uk\",\"contactnumber\":\"07545087255\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vQ9_wRoASI9IuKyynpbwhTA&amp;gclid=CjwKCAiAtNK8BhBBEiwA8wVt9xaAqlSaK0QU73et7eSkUZkMdRqoG7zvzsY9yfia2jyyYVe4ao3gABoCiVgQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA44iPWM5NyxBKsS-NlcuomQoju5LMi8WyFSJQjOwCWWMIMLKw2vj-6MUKvX6i85ehTeAFwvCjSzzrrwcfdfc04xJpa9qWAGH4UQigC3v9ufjz0kxftYOzZMDb9I3Ne8ZfGOzGhYIws1Ym04gW017w4wa0PIK_Qul0WtgsZSUWIkpoK_Zprx0yLEH-dzpB7ZlKG1L1mYxZU4qshFp1y3Xj4t2cKwTvtnydVd5imQzc1CdzxcgJknVDt20uF7FMx21rJeNQozEyoXWU98Ys5v8_8t0fOjg1AfxpeqqDy81Rd0pINGHGsBaqe15MjTRq_YA_9L_CdDSlaMUiPBlCbWSm-9-0mW6O-yIvPDALQe-FkrNi471O3NGRvQ_F2AIeG0dn53pMEioW1sDzMHacC_shG2oCNkHtq4KgxE7VyOt6JoLVrF_aGeffSABHn2SLSYksgLP6scTmp_S2WItgPFRt8aUZ-gCHPJhPDFztmY5jhZU33gmlkgXOMioGmpe7-DUPfTTbwp0HAIqHfhU3Mn398eoKebjuVOu3JTqmOjW4LzQyvvi8SHd31syiY7samBkn0QJIv8Rw6Q4c5J2dt476wMAcmTOyM6wAg16hkvIZvOVUacgbqVxbrlFvDg0uFwivoDoS6MpKOZHhvsYUIVnj6IjVcpqo9NQZ_STfnyHt6Q1CxItL8JR_QIK8nTing0T25JOS6IGDam4JRxxse4RbuqMlQgrddUND1sOFOPe9moYte_mOJc0e2-WSMGXCOt4g6NHxt19ggz9uSsi3mi6aihmQq6_6O_lFklrMKgFIJfQV6Zklx7Ho3Q7HECN8Uoa_0b-ILerpi2pKcexM45ym_ynqm74oagHLox00ir6B_2b9GevPAy_jNgr0Z8dJat97C5wAHiPXHdl2ic60bnY50Vcjbj9Z9uU7QrT4uZfoLLYV-FXuQz-cv-Sv7NGZaWU9YuAlcv0jy-Lk0RKPRDr4OWnZ_GtVh22C85XMATIg_r6h0INCowyZ8hAEM2DcKxECkrhgo-swPe8OzOji6FRrb-j_ts5zf8lou398giytIcuf0ix_22aFvgJWY57Aj4GeXTw8vmQbu9yK2F4ng6NF7j_BLGX27qp0jFkjeJm-KFlqg1p_Yrl8vlcI1YM8_96DSKOn9t8CUe5TVJlOEGKjzusPKBSbWlP0CIylY-TL2gSdqfkBKxCu6py2sm8uU3tg1FYq8gI2WxHR8LVtZ9-k0UVlGx9m23P5DHlwuJB4ZXAL49waFWUPlnsk5ItQ99lsD1YAYquiM9rwMfz8m_fC6yivDeMAfPg7ZErCQpFnV8YrYkeTAyP-Gy21nRI7V3Uk1khu7Yw1UBEmcKekSi-2vZju70Ms4PEsV_cOXgIXTpMMjMC-1tUoNA9RKiE7aDm2fNI-NrBxo9vOAvS7yZ6Xdup9IwAAVU67b8PMO6DWo8me5w4cLjoY1DdcdZdkw0I4PDe4TIyIWYC8ZG8rBPJiqBUk-KBBmIU4aJYuC6I6IWuFBDx4QZgcuaZ41imaM5W6IoTCtNQzEx_5JhPJ0ePpgrGc4i_6dDOaKSTOTvRr7cZR-TnYBYonTFuhAhAqBn-VSclukzwtqXTpwS9lCSokS5pHWLyBQ3sHZcoQ8V5eDJeSARxOI59x-XNZDyZ30fC4hH52MmgplWsPHqQrbkruGm8Atvh4rpM9CM4ah1uf5lpyCN23-ZTnXq711GYiVTKe0ZYEf2q3ZL2cT-wzPrJNZkgDwwzlHjJ6ISE2ozrNCyZGSpZHJylFA5XOakgq0oxAISCxBGH5BuHyxN6ONcVCNDgmVHE0eEJ0u239Nz5M3YCTn7dw0UjO-sn300MxJd8DsP19shPmh0zrMKZyx7kQ9zlizdphRj9bLVXET0ROYRFe_1-xCqy_reTulmh-VBReEOx4orV9VgD3nuDKSBUm1PEWs9f8Fo3YRyBUCqEOzCp6MekZUKTVhI9EQYukYqog1sSWo4SKsNE5YEI7rlFPv_S2qA7M5eldVOR9tgNtcye-RKm6MpkO3Q6uaJB_ZF5vhSEQg4YAzIA226ZJXYZEvo-fjAep9IzqH8d11a541GYu6cmMQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67953f1e461220-30599062','','','2025-01-25 19:44:49','2025-01-25 19:44:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42091',0,'cd-form-entry','',0),(42092,0,'2025-01-25 19:46:07','2025-01-25 19:46:07','{\"email\":\"lianen@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"SE8 3FG\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vQ9_wRoASI9IuKyynpbwhTA&amp;gclid=CjwKCAiAtNK8BhBBEiwA8wVt9xaAqlSaK0QU73et7eSkUZkMdRqoG7zvzsY9yfia2jyyYVe4ao3gABoCiVgQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6Wwsp1omu-L2MT3idjSzAz7TMvHjrXASVBcdS08LZj05WkjMGLk1okOvRzFk4TBVvoHGjWM2EeiyPINuik4dTd7j8rS_HqIOpop_g7CTdvwG1DfOOVhvU97oDUxTP0DOf3VngNukr_VrznA-hAcN0b969BqUp791Ck809lSRz01MGamXw8plb2EIqLZWFQM0gJv8ZFqcAG--8mDC4OZ0T6sQaylT6ecNbkWcSBnHy7kUR6RP1gzjpIB4LitlEz28Z8X_ar87LQ_wMGwNLEfMNttIEDbiKSnrR_CDY99yr8EwlxxsooIGIdJKpjLoVJNJ54Cf4FkdjhxpE8C0SjwrhQsE2HNi3Y3MBDaNnmPnSIEIt4nbteLer2UMoVh9rd54XrdD59Nqk3Sqf8wSLIQuyIz3Yk5qbMbrL20kEqWB_rimgpGbQJN_Nrbmq55cUPIreTSP5IIrzC7TVF8GIFCOkCr-vSMx3kCZpU-w3l7M4lY6tYYa4IPQKguDbVkblmgP6FIGob69QSBnXeTBP2XjEM4yfYZ6Z0aigoEe5gG5_Q78-SUFJlosLN27Y7tPUQ7QWcAZDv2tMaLjzIIGzuRiTau6h4AT9mXqOg-Idc2zNdOZfRUi9JyvNrvKPoE-RjZl0gqSrGicE6px-mjC57PMRBuUdBtUZ_gs8aPo7cseOOQEtDCEQAMJ1BW8_2By-WOKpcksRBHBACjJAcynNzMcTXgWn3sP-XlBex7Rdo5uMtMeNI8DPW1aRvcUjcnE7eLkIAeMK0IpWOx2J2AzH9z1HsbE1BhUjI2F7MgwMZwn4jvwmerNowAVj7OO8aMtQwOWKISAOrdmZ1rUavc380CT32EoVvNBBjkWsWfkXtNafX1y3TJBa-YgXWH0T4m8_Akk-r0zX8iL2jYbgb6guFH2bJBGN0bX3UhkgJuR-YfKXGnTpNiTlN2FpLqxiw-L0QUoqXqbHo_1r6ZkAd-pvpsMTnhtK8aXsX1BK30u0XCNidk3R0MYM-8fpjtYkQ39UPRk5cLsOjRjUWrDTJgUCcXon0JLUU8NwLaWofZBt0q3-af6N_Ln-sgYqswsm2G7iszikI-nZriSNyosQLyDSpW-hieUEn0Izf7Yd9EYEQMcVPKZIH_yuqqSJlBtLi4sAY1cwYUNCkPOCS-ia1HQoCLFT79OkM5os7KuFxks0k_0_fkPvL9OUA1r9bO2a4odvEX-PCHZU7KckCUWqE89UmpV5HdJnPVdQxeZKbh51sL0XUsyhxSqgsZESwV7P9kOms2f2h01X5g6FWkZwbGrJGyVX0grHNlOkpPzXE_9M1VSPjHg9DhoULqNBhz1ZQtg8C3EAYzBBGxtQiE0Jnwur6GtiBzBBEVP4lUZRzXxuEV6nHYeOCZcA0KUvYbBa9a0S5UElqagqaFPMPxO5A9wsqkpp3c7hAQMw1vGM6Xfb_-X_uutM1g3redc7z8T4-c16E-QKAUQzQctyb9qrOLC0PBBu_Lri-UgcgW_il8CKmeelLSfzqdfmzRnmFrdxKQV_jPfSVXIX_I19w0a6w3T5ovFf3N0xfZCqX4FatEgcIOwJMJThkky7NRiNSQeEF5gfbZNSuq2uZNeYFsc0zN0CtNeagSbIfFHgPgkyzjSIbOHxRMnjM6Keuhy5rqdS4Y9F-_M9UJFY2RR2yyPZDw9vT2Z5rFK2p8lqxlSfW_ksQ7moNJ4-rx_wIwEwvb9pDoAMzmhz1gbhnLuxW0UHuxMh2J5QGr1-e-V6PYfPkLlzB91K6pSQZNieGEMPz_H2j3R1-p2rlqdCXoCHKkJBoro4Hu1-HouE2pUFkpe_o6E4DJ1cJxfCurOeuXWjw9APH8qAaiCpt0SZVmyVsgRSqAJE3uew4v4TM57_2wd8hQw84kDH7O-BooM7J-HdiBZT3TfRWgiS_cpMVjiT6K_truVhaNBX1njIkcLnLefI1Za3fDpEYbu2MycWymZAlPthF0wU5YzIpWla4jPmh6Oj4hqXhprBAOpHTrivzqJwNTbhRTBCEiUJ1QG1Izo1aW3_h4AyiIMjT-riXyKL4aVca3oVTDkXbkdzV8a7jXSjNT5T8kab1jOteeUg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"15\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67953f66948ef8-94971615','','','2025-01-25 19:46:07','2025-01-25 19:46:07','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42092',0,'cd-form-entry','',0),(42093,0,'2025-01-26 09:45:59','2025-01-26 09:45:59','{\"firstname\":\"Natalia\",\"lastname\":\"Loshchakova\",\"email\":\"lonat08@gmail.com\",\"contactnumber\":\"07572224767\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA19e8BhCVARIsALpFMgEpPCG7D1PrhfLy_5Tj_0bnvKJOnygJAMjhOVmNAEfRDaBzRh6GJ7IaAqRXEALw_wcB\",\"recaptcha_token\":\"03AFcWeA62w-6rnnsTQOXx5kq7QX6bM1JH0hptnWoOKMIcKP4wa2P94C0AY0jKoyrWGgLQ-GNeucnQpqJSl45J_hUMiHTEuE6t1m3rK98_JW-sxxtACMox0zldkgO7QBqcj1jkYl6rq-IO_lltmb58x0KAHdwKs7wCR_l-iqdSrvDG8DVYkY6AeSe0HW33_9L4e2DPBmw-deB4YoF1Ax2Fy_jmX1dJMWTv7-gRqbnJvJqTVF88sbuoXk4jb6KAnxwBJOg0IorrXjRoqR-MQoDC1Uq-SW7rrBC4PbDHNxkQLVeFN10fA40Bm5PETUScj6bXRq1N6Sd6WbFGsSSRo91YdBN8_G6ktbNrx2I-fMLm-xklS6Vg7xdIGp41bZ-F91_gHawewkVG-wGEShPWmD2SBHrUC1L5yoSiwC4sdZ2Xvnm0xsby3rpX2vdAi-DQjH3BsUewAi1mbzHmRltdgQMeg69CFOYfiQXPh_JSeRENnRh9DCNKSksTa62GAfbh57DBmnf9dmArZF1rniGeUy493VOwiwWV_n8zbx-TTjLlgT5IWm9QCxkxcQSou_49whsRLQsS80APtv6E_yqBRoXeowr0fwrAfaAQwllwpcXAbKIoLhmz8PlyUd1N7IO0v1CwQNiHkRd8VQr3RQM2pa7yh7FinGKXjY7Fxnva8V0FMjce0dMF29x1OK8id1SIlnDg5gJjr_PvMPSEEapBDFK726YJG_J7fajS7YTYE9yt4UZR2zLbDJt8kOvU5togPizSr8n6mKXUCJhHW3oPVu47wXfT5xuu_rJ9SzvPJmwq4e8xGMZIeIezqoKkoOTUuGK_FhhZX1IG3dCfTw5abVmKHFdtlW878wMhhOuV-yUQ3v4hna7R5xAb6vI6zeWBL5Y5hBmRCtJsdOV_S-euk9oSBfq69zBKIMT6aIhFdFtdnjURwBdRYqM_PeMlHWTUQnUWEY337CKFQmNgdXKSclb0eA6CxBHQaqvGI9JiAJ5bqY6rQ8RCaG0kD4M0BIs9XjoNuuO_4GGUP679BCKCjZj8lE3InJLZR50Xjmiqf1e82VDNpjrCDUDBoN93WK7Clgh9JSTYwJ-ovRvnrvGeI4sUrLd9fz6gvhGqzJ_SUbHHKqUBbGacAxj_z1DtOxXFOfjk07dv1FYUuA3I7eqd-aTFxItZVpHFJMrjeazWqnvfXotcIdjSYrf0X8qQDACIgTI9cKC8Xa1kGCadyTWF-Z-LSwtoj_whhzsXYCHgXJMVpruyAW8gc_FopY-HF2FPspy5NqUyF6DgyQPVTXi144_vgbsOK0BtpG7fF3lBymZZRW9Zs4BvHpQQ5ykK7cxkcvH9c0pIq4cP18j7d-lsWsFVlYaB4sQge7SrVHz3Np9LNboefPHZU9ruNxkwXp4fST62jWs0cM6mAzftuRbwq_k1tNeZmFfzIBwDmTdU3Ik-oectdcWePX0lTakuhH_Bg5RNyEplMuMY1uKmMH8Gl1Db6X92Mkuxt9KgvhsHfvY5PIzIUMVvBynG_E2if9JrW7aCVMm71nUUzgP0LqCtVjuzhgaZIxEmyqkC7CPWJHR44gIJ8PsWhFwjgy5ZWRw9FaigRf93V1UUJ3SO3hDACHjg1mwq03z8fYMSC0nIQtpqyi2ykkGLQy2BxmDVyPR9uH1AWEBkgQLJ5ob1wveMhp9OBtCZYSXpqwL9H0lH64wNy0eYKCoEHH5BajJwyKbDyx9yfuPgJoPrY1_yfz_EwCW4G1KfowxvlF-OHvRHDxfEoMJ_bTz4zl-J-0-pOg9XVSNup22RNQF5_186to_oXqRebpNxvpAK-ChH0comrApeBu9rKf19mtTcJFhyFnMXfzqC8e7TFzWWw7AmbKp54vOcL1vxANGyQaCFvM_0g6y-ZR9bcmxSmfgm1NA4CE6J8Z20d7a92GU4DcHZKakjE6IcDIxwTUja4PHul_3y2YAJffoYdgNhtu-x-Cp4Hclre-V-XECmbJj10aaQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6796040c8e66b3-27679631','','','2025-01-26 09:45:59','2025-01-26 09:45:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42093',0,'cd-form-entry','',0),(42094,0,'2025-01-26 12:38:12','0000-00-00 00:00:00','{\"firstname\":\"Emily\",\"lastname\":\"Forbes\",\"email\":\"emily_4b@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA19e8BhCVARIsALpFMgF0sRjhD7jkQfxWa7CBHYCI9jQuW_vommyfdELUsPMFi-MTy6Pp05waAss5EALw_wcB\",\"recaptcha_token\":\"03AFcWeA7iPARUrijFivVfn1IfYZlOQmdOIKK6QvOIJGrMeQiRAo7lrjgIEsg9V6VZ6n4g2YI6w-XMGYfDu7n9PimuXx3OXUsIWTJ03C0OXzX4R3MXsnq7x6mu9PZMIhxjI9wQBMl-CbYdjir42uuF9QcJ0-14SbamVUoKLPQd4bwG0iIy0UgoJe6IrS6f9MAeThPxEBZOtL9X1NdszZ9e4_obfuoZ0sJno9Cebtw7Xb4kt4pruwCPWn4BCMy9e_xCfVhnzvZ23NM5Cd0F4nICySNb7j6t89eCF6XRI8SdhH0-qhiMKWaKO-Ufe0Qu5UH-OTkuMe-IjvCPBIzWtSBK6y684s8m2guVfndZz8Fx9VIufcEgMVP4U3iI1Mx4IjWGvHK8ZrHUQOU5V2xe7To693osLJraq1WWluxuFxft_5Xt6hJD4YisTUvfuLACMynvMY3qezk70glPL8H_2Fa13zWFx4kFw0B8Dw9vzn0kr92eZtVB9B8KhW9BLnO4b3_UOH2FyVJG6PN4MwATJYGgqiqCOdSaqF7jGBZInvwRS17Ee0Z8cgUd3m3H9sRw2vT3CV_pQHsQqz6Q1EW2nv3s_kllYa9Mz-LQrHrchquvjwNMBlSGYU6h9MdNslHwuKknAvVdbXZqXIcaZk8l_wk4NxQxp10Ltf7YJ09o1U51QZ56LQPcpSLu_hLUamaVFMfRhwrJps6xQRJL0GbD1E1l56oZF8YeaScpQC3vDyquYg-Ns2GKHo5WLnPymnbWpJ9Ao9Z8Cly0NTgWBQg2RBporCS_gG-Gm-15GJotP6LP4sMJhqC3aEQGjvfzCrEV57WDDOpqqYc_O8VWs8eIYbS_nwGdiPOnHj1dG97zJTOm84fnMYR1UE_HA2xBeDne5-IadL6rCbCq-oHxXDMnMwWgX7kYf3rNfGPI-mdefHPjxlhHj4JCNDzTvYkyia9JFtO79KfjDyIN0__Rb8u__sir4odLsYXitCW6CcbxqmMFoifuUJaESzCUrfHTHfTvCHw3KIHDYFbjrxrG_AgI7D1SET8s4btOpiVnbe5jyjAnt_HkWRc7-G8xjJvxTCs4NetfQA561b3pFDZJTMURqaUEgkudZ2VCScfcY4npdOhrb7eW0lURa_I8o6C5UxcEojBg5Z-LKrmAbNNYxh7_voJnh53nyXTrym8_eUpBdRCrJCi4vg-cth4S86Gmsqd15Fso8wbH1YgLevs4E-vHWSCWBSJP8nw7raImqkqrMXA2p0rHiBXdnFyhjVHLxqZxgCN965PTlSf0IQ74TJdf9USebMPriXVWRI_Nirct6DCMBhljgRKp92_g1pecv5mtJz-O15ydU9Ylh5v0_vbhhy3mAei7t5fvi8vUDoIFgHsJ44Y1R_LcKNsDVW1PsJivySCMshbMo1TGFWumGF_qOoymAWOt7QA0kX7UKgVDS0yA2iRqnuL1DaV2OYfCxDSS_hL12kpUzWOzHpHu1-L4QJof3uP1wdOcak8boUjKB9qaPYBPK6KLwXZA-7PoK9mVXttaAKBSsbvbD2Qs3Pt_4eSxDgrEa7XTLXeKctUuGVcPRBlPgkMoMnSHr0eP5pf9IZSr4oS5NoRU8V9-2UBe6DKIK6hHzOb3UZyO8opaes2GXvssyHjvq7M3DgT5NhJwRXNdvx81UOydfdt5SUNW7VJvSd7QX64u840FvPj1WxUa6YKc3c5NPY0GLscnfSJ1a5mxOObKh5efeqO9w3VJM9vdV26D0MnTMMh6sz9SwLisTMFNCBol3W5DQMt59r1HI4QawLDGIC0jLtPjKTxstIja6QXB5dcgdq17gvtmBZ0z77C0slxrcSLdjVBTPDeUZd19xGyFlb03dravcZyUnV3OvYr44dZEWsJ8Xnzt-khH60OHXE08UFzQcLBmQb2UxUhonTCnHZJAu93xtsTNHYxRLnbEoX21Ovu3ClWzG5tOeJokAhy4zRfnZ2rwsWQ0BGAgVUCRjlKnUJS7fqCjGLRzp5qU9lpHOAdf0A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67962cb4dd1003-71164008','','','2025-01-26 12:38:12','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42094',0,'cd-form-entry','',0),(42095,0,'2025-01-26 12:39:55','2025-01-26 12:39:55','{\"firstname\":\"Emily\",\"lastname\":\"Forbes\",\"email\":\"emily_4b@yahoo.co.uk\",\"contactnumber\":\"0773946909\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA19e8BhCVARIsALpFMgF0sRjhD7jkQfxWa7CBHYCI9jQuW_vommyfdELUsPMFi-MTy6Pp05waAss5EALw_wcB\",\"recaptcha_token\":\"03AFcWeA6hxcpubYa3YGH_tWvOv-rCrufJzEglur3Z8-6E1AMzAdlIG889DNAu0arRaGghaD9gg_aJ843r6FDtVtZQFfsP1fjjkh4ixK-5iZYcPpAXrefQuBp7DNH4UCuvCul1uTu-d9NoPwRwPvAF6wAoKjO7oyxDjC-C-aouAoNnnJObPZHpg8JeLQtSSPlCksD-svD4-mPwRRIb3E815333SHVIk6JZYYAwt2MJ9LpfCxZM64469lUo7WgxsTHI8-5MmyBB_ZVMK9hwcTThqqJacA5YpyfHaQ8010vR9SCminvcj3qg0h8bUNaidWSye4g3Aea_f8VHyahqbSrhWtcM3BvO48r7VHKvQI0t48GGxByjDnfLuC8TIc8h9ReR538mVWPd-hJnwRfft2uYNgmJtE8pf-rrXcdV-BwMnNsa1GrGE6LoXGf2j9rJV1wBWmBpoSOvPlu6HLoba7X5Yy6DMQkJj8IsPqweahgeysKW0xiv4jZBt4nuZ-YXAcy5ERbmwxXT758ClDxQqyT6vbVdIUJLQj07x5eKMWuFid075sy_N7XyBt90xkCrdsBVtAozRNyYllPw-JIMMkOjoshNwDn2tpi6a8q6WfurWFfuqeNOo3aV8OLY-iyooCsJEG-OJJBJQr8eaTIcJyKuxSchRGJT1TBXDlod2zNofV-AKA81tHHiKVrOofu2nnMCm9pjbE4MPf49Y3em50w_9GKbCLpMtEhro1PE8O7pMNIyUXlGZYxdZT68qsZmbSVkFY_SBvgUsp5zIk_yo7rhzquSXsDZryUBokKHgwqR2Rd7yIJZ8YeU7G39tBBqrQvah2nWjd5YnhIuudwCZG3E-SLKfDpqLu1LXlq0Lup19TdNyfH59TW9nGUyxXEMlbD4eMbiYDZeUpCNvdHQqjEnzQbXUTpA1sCb-V0Y41sbjHRQaMP3qUv8Wfc4qXpbkPfU9qakuzG0a8ATAuPpYVnnVboDwaMGD0KJ0x9A2f16FOUgzCJpw8IiIF4XocP7O62GTLbHhj70y_Xnjf7ByiKQQDhOb2CU1taiQ6DaBGyT9_i4jlvsJrjO_m-tAJK3cPvccqYvefljmYmAOPCcgx45kMvGIqMgFb1AtKZcI_Og3IdxP9Wxc4hiZpzq5l1PXrLbCF74TiFbtgvie19p94kV7WPWWymDYVltNcj7yrV8mBx9v78S9Pk3_giC-du3VowsvdW_zHqELEM4BPK7Yonx6WAeOXiSEv3trHYBcw8Y0uPx-qONGi9iCSihuzIQ5rJkV2oygKbJhOtn7eC-bZmJMT65nBIHUUTYSxUGdQrC_ajCb31k26HjjmZYPxdZM8oeHI1UdzX1HnysYo5kqlNF9R5e1O3ZgNHmHx7nX0d8f193PXMA3TfGLzjuDDmVOcDA0v2h4_LuJ3Btsj0gVJsUhytqSCmLpnN-175yh1_Q5eb46xsZKV5AmoEkC7TE8nWeQUvo5qEGqo11xTM6DqbjykYfCEtGdJgddBH9JBqxOpTh2MImR5oXigonWUHVnHBkJzALad4li04EH16Rr30DTYJG9oZbvy6Pr716fwmVBVtGXfGha8VtCn8z4W2UaPA8PEr4d68Ccl8mV2HjnRrY5VqNCgbRijcvTG3HLgElF2ogmmj-4q_RPI9ryf7TCBgdko0oMVDgb2MKHqOOdzTc3BSWt8rwRZgBtm8qDtsJwzgdyWPMUM7u3IrugOq0MgXba1Zm4MvDQMBzryowDjUlxvMM98-t3GnxQCPMRXOsYEsNkrosM0LwP3-Xc4T_4g9O3LPvSYFIgWVe6zvM55zt1jgcDi3Ojzf_-_XIMvlLGgSgKKeYbB9gHNRBYens-B1N8ht6KjkbsDz56kauc7Ljz-2uP8qyvwp0LPaALs4IR8eYxDYN23fMm5o7A9IDq5HY3o5MeIIPjXVw-APTLrB0Ba_s4OB8rhncgJ6P1IytSlyagi33IB5rzIOoWjQraH-O5UFRMnR4qm_ExVa3o0JIHq3nwqTj56FJvg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67962cfce96294-31840691','','','2025-01-26 12:39:55','2025-01-26 12:39:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42095',0,'cd-form-entry','',0),(42096,0,'2025-01-26 12:43:24','2025-01-26 12:43:24','{\"firstname\":\"Emily\",\"lastname\":\"Forbes\",\"email\":\"emily_4b@yahoo.co.uk\",\"contactnumber\":\"0773946909\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/#row-40321-2\",\"recaptcha_token\":\"03AFcWeA6p5bAioutbgflmo2IwQVLTDvL0-yZoo0MXX_oNGRk1cy5w9DSRQq3LiqYnGfsNS0hN20v3Cetjg1nNi5VOpt3929Pyg8HajYD_PJlzKAQ-GvrgNEyceEB-k1y9wlqOQGYB8WtqSSrBpewjNV3vDdXMTxXeNdNc-zS1Qwm9pNYHbcciFCZpxerP2bFLK-_V8zPJI7vplWvpzDXIljYtYyF3hzFiod_rAbUMI5QXR2ka5J2wCbD0GCT6q7GV3FP1b3q149Xhe4FeOy64j1UISp4Zg7GvJlrDv2PbsOMK7WXCVzTVdApwtmg7VNmkRDuhT2flvzKolk7jlB90AdRFFB4NjTAmyZX5DOf-VPksYZf85zAXzaqrGCvX-MKiQnagl8bSZbW-w5a2gkYST2EdRTo9F7M6N4Cah5DAA2Rn-AMPZPhfAWbK6mltqNY_oDd0Kp-8QXjTd3dxf5Otr-n7nVZTLJ8ZiqO5-wMVRuEslB4HZNyknbvnW0A1DDbyc-QJ4OCMulbCP0E83sjiWTeKglMO1as8lM_bi4nXz_mO4nuwtGSCAA8ijAduNRnObX4VQvksoysMgZFtsV_VNJi2VopLq-m8K1ymtEEHyi-158GgfrztbCibL2cN3MZNu07Oqbnj6YU9-WLQwq3RfFw5m6sT6Mg5sTL5D4xwqRopErCeIatOlTdxKiE7lxsgpDvKYuJTWmTOYzfpqJPElw3AEcRWpGkahbSSRqhEumfcWxCqwnj4dJ3gqQIH4Y4IrgrGFhqOzyDWlEuJYL8MBJq-i7tnO9P8jw-TOc_2C8o9MwKtiZxZsca_fUCr8kxeso6wQTVb_2Dfv_gXXeD0qnNBzKc1nyFv92nv857RsLap6CpFCfBwIna1tH5DvYFiRZHpIA1n-d_PaUgX7J1rjo5ghUFHcMgYM5I8s43ITggrfF9AM3KyAG0xy4uqyz4SAvOvK7LiMvATT1cxQiQyweDlJKbo_HPJ8sbEjtPqDKh1fAvgnkMEWG8fvxb_mCuZNURXiHfrx9rCofNT1BMwnWh40jmSkicZIpKIeFtOor8CNhr0UXu5s54Oam7a4J8rnlob0OlFDXYbiSsLmYAbw9e8XKrxwaiaueglFEtQ8KQEDs0jM0xuT6khj_uCtaz0ujn3aSPH5nVBsrxbmJoiEJnZ7qHCSicvqDX_pRh2IOy4X9GGwYalfqsgETvz0dsRmmK79ndJC2sXsKGXb9aCMoeK93w7RifaVNsdW4P6UnTpaslZhMnARV3rPktCJHfFj_GeN62RMZlIlVZ0cA9Vicrts9FlerNODuViXltrLUmfMQGdgb30ItHOLFl_fLkbwTl5yNsCO1nu05-wCtRHXk_i2rFjCm2-Awfh6HuJE3Pukv6kxPSJTCMqDQffcFtaY2--2z6q5dKI3AhpCfeE6RYbN_kJ6Ztir-hmR4d0SFnteIRI7qdItTq5PnNFu1QwaqzKD0yF_XKW3Ml9HXJXc7xUCerKTW7cYhWd8S9lzdk00b-JywGz3FZpw1Nm33zRsCZ67D58wKaI5HU6eaNL7dLH1RCNC8Sb4d5u0h_3ysHAfbJQ3GYT97QN-Y9ITRvW-7dOKA_mk7NoOUYK9rr0F6D4w0Nn7Wyykh9iolSBwNgVIlUCWOA15tSpyQe0oBFCLt1lZ5B4sItUliYjuU0fgjjgUZUTWq39BbB48a3QWWS6aWDVPUPl_aaXTfjhgV_Rtq75OJjoJ0MaZGclUCg4cARqEVpB3N80RM89bFbF7zX81XAupMwWXnhJysw1ODVQI8K5WvidYNZ3Rb_bm2M41mITB5-viCZ7XCyZQ3-VD2mCMtsehcgBefePld9V-tGOO2Rd-2mf-YdnoSdYjRt8CEXjJyzbGcK7HHd4iuNPnoqNc_1ufFaWYmI8IZ_5zfhJ2jXtDrCPaKwgnr2ZuJV69wGjjL-Wi6WpH12Ln-ql0Sg3GiYN-y4Wu-uTAPIMupE-uOCyqnmsLWTxPNxuStC1C_EfaNL9MtLqcg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67962ddac5f894-25724479','','','2025-01-26 12:43:24','2025-01-26 12:43:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42096',0,'cd-form-entry','',0),(42097,0,'2025-01-26 13:32:55','2025-01-26 13:32:55','{\"firstname\":\"Gunta Monta\",\"lastname\":\"Kevina\",\"email\":\"m.kevina@icloud.com\",\"contactnumber\":\"07447367323\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA19e8BhCVARIsALpFMgET7T1fo64I25xH1DtJvQarsIdxVzKvr_o1j6Xj-38VVcbwDroOVzkaAqrQEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6afrz2Z9h9PFeP4KKUWsE1BFsqaZHJMq2AdSuJGPaFCJYSb8EgpNdEikjfwiQPII4f0TuPFXTL_QyL7uFymK5LGJcEro1jXDS1KaV8xT6YIT5k8pAg_4SpRPNAzqNlmgruAML6zGPN-B9AiO3gFm-TrS8CJQPZzz4uZqKiV8ZPOZOpUW-Awe25zkLssUaqL7fLpJPkZhxGq_-rCv_iPL0iOer05LxM6y8RPNFMud5THe-kax_R4r-i5n4dnvfleydkXE9nu-8PD2bK44iNPS5930_uzg_TxhNYctTGuq5NhRx1KCmyE2kxamBm5Z2ReaeyuXtXkz8Gzcu1gMXOmBm_pUsrbvWSAwF2btatPy3oOHaDZRQaD4UJEvc_NsOJZ8SUav4TJyvps9loIA2eYrSRyVi0mDJnyK58AvUcqplUFvHsDS63g8we_AwYl7EFI9H8mBgSkUrUzpoMU5HEjtssxU5T0Z6MHaiX63NW0fP8Kd9NWwB1qitv7PFRyArfTRg1DRB5z6g8qoYG_kSz84gZu2ZxsaBdOEIAoVjMlQ1qrZ3shhLjTTLtWpcW7hjqoxWSy5TOKx887ArLnxBhIfYYc3Q9bdKGC_TJSetsF9CMk1ChFJdNXMaARi4p-iHaIOGJOLkHcAKPEH314Nfl6kXAPbPy0aCpk8CDP8wgjbTJUQo50B82Ptfle0f6kMIlh4mUm8P9DOvImbJl-5BZEdKcTWJ4x9FFskOAUPCimoq459ldmJDWBLz-BLHDtCihNjqIX1jCkYvB5Yyoa48Zd3BZ5Ib0GOwgbuMDIinJiR90zNiLx_PEOdK5OKbXtg_O8wD2Vkh1Ku2aWRZtT7AUC21r9K7gjNRCVSQGRve49I3UJKeH9yqyywY4nwAqeyLkEa0_Z-DLI2hYho3eDAToUPVF2LS57cS8Qn7F4WTxJ9CUj2DPQnmIe8kxa3t1NdU8LPp95rB1v9KvOLSJwR84LsfEbUMdEduCDDgVvzLfwxfr4MulIfyY9MDlHGBkMb9uiavEsrIIzbUFuU52BzqETqMzxX98m_x15mTb0WVyILw1I5ZbNeuD1xFB84zzejxqZEjd57eHmCGeQ4Foy1mYnc3tz64BJg1fkOLUQIHCMZMotRH5QP4x2CeJ2YNJQ9np7XBiA4GUoUJMZl7PJPorr4FWCQhkD2B75CpYQpGNisyoB_awOGU4koRqkqcUhULX_yNXucfx6eZVPHueOupcq5lNhKXf5StAiNm8D3Zqc-kzi06cHyNjb-H4Q7EzpOl2Fy4GjNxJ1LbIzlbE1QDZvm5XxYq1DklOtl9EalceHRKsgxhdRvFkw2nsT8UmHbpsGCpWaVHWVbSEzYc32FHwL0sn9_GxEZkKn1Byv9twTLqVQM986AI3XYFxNaB-X60alu3ba5DGXzjg-u87F36WXAT-a1_DCiHPQguako0Vnje_iSCp_1Ye1AN2zvyd2Q5lRI7AtxKleGdfWO7FHe0fxzHl0cUiLdfompWSdZzmgCG4e2xOV_mdr2VayN3NUVfsj7gcYosycFBUe6lOVXzc1bY2u2SfiuU89HaIUMrQhYkPZUkLaVFffmRHCK1osrez2qOvqOQIcojhe7Bd1YGys-y7Gb6n_X4QhguKBZEsWzIIpwT7mmSkgjrVv-ZXdehcecgZzU658B4NPk1qvvcf9ziW_1FHK2XdUQ29IdvYblWyHZWsUcL2-hKQyKSpJEvReBLwqjxE2aSLk5fliWUt_gGUaK0qnMfJCeDLQPSNfx6WSzJk4jLOxqQjclPyWjpnpButySWE1mhweSaxpXVVhpD_WBOJg9JNOZmOitZqXQkflKEqnzunfZMjT8Gg7s1dQj1Av1OGPDV12vTDdOpHYeC_gy8Ut9pKaCtL-awOF9jk2AGB4Bsrqo97xy5-oIpy0mLBjKeFOifEWmsKkWNLHRPOhUXb7t9VFRMtCVNmM723E25pXdwKNrexYxNQw2T6D1W_mUSNsTU2wqdxix4ATaPlKARSiEiCqz0iBHjAg0VfRF-rGZigzt630hsEAG32sg-0k5md_R7gN9EdbyD3EveQAO4rIdH8c2U4kFxn7ZRzL3xpJggvV1Cs0pIhK9J__TVVvnde\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6796396f057523-85747283','','','2025-01-26 13:32:55','2025-01-26 13:32:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42097',0,'cd-form-entry','',0),(42098,0,'2025-01-26 15:23:33','2025-01-26 15:23:33','{\"firstname\":\"Anthony\",\"lastname\":\"Potterton\",\"email\":\"anthonypotterton@virginmedia.com\",\"contactnumber\":\"07738004246\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA19e8BhCVARIsALpFMgHS6h8D-GreUik5GwazvWeAhpSxNNSUFIc7ER-rQTHm8Qhqjh2DH3EaAvpeEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6rE4bwKfuTz9QI9PAI58T1eJtN00Y_l3RHs7_RBbLIRGqHRMbrrCGkp-R8T4kwf4OI8gxLjUWB8aK-noYKhdwWXEdLO2Ylbcm3yOry5QPd8_K2-jNZvuTvqkOCHOHb997-TOLT5TYbH4v_FRVaj_eneO3oVBLsPgYAvEqBNE5ffWIQfhZbOOEBk3u-EeKAt5BsPQmV2gMmO8N6DS44ybBRP8AyQzMNIe0n7mBTmho5g7sztJl8ChqL3u4tU8VDWeKJYxG5YCouSHPBPOcQkDd8LET3AgZw5Z2dGC-p4JkPXcM0L3VFGswHoMHIp5ALiJ4o_i8ioNeSwT5wB_EBcGDoeCHYn5zfQJQnsisuLQ23SvOrmtFNTu1mnwu06R985_g0a4BBvKNHpHWU8VhYon5rKAfVChbIyeZi5RvUojS7QKxBhU6751UZPELWicZBzfG5DDQ6KNOzxd8Iu242N4j_H4j0HcdiQzeOzvcoHYYepaXLPMVS7HGWyuUF-kM-LIlVpFaJaxbT2zDe-8q9in192hIqJBgIFkZa9UYgMvxDjOVCF4BivGJhW4tel2QnLNSRH7eE7jNYdM8JCiM3a0PbGvdbwmIJpOtGkkQx8ZFkr4S82RKEQ_2au8vnU8U1qOklxkL8bzsWkz1vOxMofSSddZQQYnJm_fa8YbwdlXS-syboTaVs1zTuPlRr5e48UuzcYq0BbGc9PbFMVVsX5USEZuITMCnE41iEnqj80OPf6BqGAKpdSvpBeS7BwLvtYafq7bFmvP1iFCpYWAw2gMkKHkpbMcSyh5n6AgWBUxa1-PZevEIPH0CIsvRruuYB5M5ietolcaW5Y61pGgeN-wfI7crtTo3aSNadFcO-X2cpgkMTMqhvDdJdF5ADsJd8X2h6TV1VrvJoBTmT4Udf5FghLz5MRKrkQuHK3fF0fGdD1Kl6iihtNtWJhvRPYPvJXQ_muR1A1aExJmudOEz8Q4kd7BxYMaDJOoyo83JOlahu6FOaA-1_NFbelgkxkNsSK28vAinG3nS6t9I0XX6ltZXtuoUqaAPe2T5s2eO-8Sn1QzUhhWUKr2fPxnjs4Vb9RsDoCOL_eaDyCkX0eHLWXe1ebb4xeNz4Y0b4HbCVEWv9hhK7w5T0G6XWAmuL8KGUppa0EGfa6IxKyYYq6siQMhO0VxiQdkqivOWjcdFLhC-8EKknqn_4NCQDgWPXB5Mp4yfyOsAxRkx8LxWmqHnGVIGIABnFvE06hwtiUzGFAlolCA4x6VBV08H9J7cQUXtdTjUiGG9epKvy8P5Ymh96Z3bFGZs-U1eXbTK2v4atV3IqCVjX7aRJsVHX6C7FfhwxuT86hT1DDJ_E-Gb59LXLjRIS4wAJuhJiA_Q9g9ezFRQbaLs_STN9pi1wRIc0nvS0CIRdka_7qMI8iIpd_mKRzyVm7xIpZ75IQpxmHlhxlD5KmvFa6Oq_omAMZ0VWm189HeDC53uIFktLOkyfVvd-l9hZqb4nJ4U6nWTcPfUgfcW59lctgpSj09OWFLz5BSA3EUkIKiT7n0vNEOnvv5TSv1DYMbMKO4LwuPsgXmeu8ere9YekNU588KLvGQZUX3qbn4-m8ErwDbX5Q7W1ZjmeJ8uljuValL02ye4JFX_r-TsEMGKYjv81F5t3WdmonIfo-8YK_5Q6YQwy1G53kigcFPi8zKktm_IUjEt6eQdX4dFsdLjrW-Zvr2bIhrrKdB5qBgJD7BNl883oQcQ1FaVr56Kj4z4q9TyIY41mVppdE38ts1SYC4xjtgZ_v0SvXnh4mAfSdJJhVDPuq4GIMKWFhDFMr-Amftc9UsURZsS6fCce_cbVqOgmcaBkVswpQgwlH4sUXNoSn4zI8ePIdN0S7bxf7r-N83LRGQMhQud5nWmlqoZe40DYTAXEyoA8wrX-mKNbFNc89Tqjt1ABQHCHFUqXZvJduWPMTsF6_oqUyMPX-I3PIrc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67965349121fb4-70184390','','','2025-01-26 15:23:33','2025-01-26 15:23:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42098',0,'cd-form-entry','',0),(42099,0,'2025-01-26 22:28:43','0000-00-00 00:00:00','{\"firstname\":\"Marc-John\",\"lastname\":\"Brown\",\"email\":\"marcjohnbrown@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/\",\"recaptcha_token\":\"03AFcWeA7yyyFUL4px-ojeJTSp-XedzyagQXlWv0809jMhHzfS6bDY8lFNZh2SgaUaHVxjEjmAPJvvhVpy2nwrYnMLfkLmdZJQB9woiWf0KAFqWnXlsQBIi8vu_w1hfxjSyXPRaFn34Y2SXlM0jtiKWDI1ln-SsMLM9y3KlVU9PlxtiuHCfKZlHPqft9JuVctQ_oiChSG2X6smXnhQ0kMSmIuV553mLkW3qwrk4W_RrD8ytYBpgwTebtAMsw_c1wf5DTvIrmS6A3tPJTp0lpmIVqHeU9C-bbUhC1dSplnWpNFplB3T8Oc2UMU29enpfZ4PvbaJFfNO1r0h3U3jLrDDA-Q65_US-JamwJe_msNO4CWsznJUQDBGiebm8_gD-CzCxC2xMFIAlGl3qO17pM6ahGXSnhdzS7TtE2_aRHRkkxXlBdvvxd7IZ563D8V53Flm7mJz70ZKpPfGG3Vagz5jSH7hIuGLR3RWa6_b4U_ywD83TBvgJW8d3uW1snatXF9K7_xB4ydXrxURkCVmhHtpVrHk38kgOK5msM1S0h6FmvDAVh4Tb0O5oDzJ-bTCMIv9Vre1CX7cT8z3N0hkboNkafaBkhUWOyvS6VxWaMfY56-ikSw9CVkQs6Qooe24slg81A-VjkXgB4tuYpY_NQgVgFDwfLRvo-oSIWK1FgM1rqYokK7PURqbKYLqc0gzglm_b15jDvJgsmLA99yZMxuHkfaa9nHi-Cm41uUFBs-WV1q8Kr6lQwiqUserCU1h9CQD-1YrWf5tjdgu0CPkECEpzpUe4uuvLdrC-ZcCApey-qXOAYBNMCNug4K6meH3oJLGwuExut6cLxOHTraYTfsYbepu_4Osz6Vxya8x-_6CQ15fJbstT4Ik2JX3EngYSJ9wCRPtnVwRWUEwRAWrVV8tXIvDSSE2GViaiqa9RibC8LpwVElaXgFn2iAsr_Sb2__rseRvaG6aoK0h_IS351Nv7JqYoDYDBGzXzGJKb3kjRjCLx57hFhsD1L3oK5z4DhXt3Y0TVgckXvSBrsIJIgY8ygE0osHiXFHYaukpkSO5XqIoZSgXxiot-68XzXFY4xggVlj6WN7x_wkEY2uvkGuMLbFF4CxflgdA8BsyvXE7_RYh4J7QO2-nl7yBkGStTSRXb9wOkbLx8gmU5Am_xTovNRUaf2OzkYXTiXFEkPF6xEH2ta1Ytur3fJ5c54Twiur-kQ-AyewmtSOjyZfieUeqcoQyw5yvJ48JIDRpZ3sgkDn44z-BtdWt3jWjXkwZSwcctHWBD7wGXMe_AKM9UrWulqGfqFKkKPhHj0Zx-ysKEqmr7x-cp4Ks_L6BTgJqtlHiLGe7MFRoD4r8Qs-SDfNriWm3KlPM-e3dUtrIFqUl0-CdMhn0eA5VG7buSQma4nbDHFR9NxtDk7sm4WFihXAwoHXMmiAUC9w0dGf_q9EELLomZ_B3TtqPo8U3A0UX7N9xekbZIKyIAADD30o3qywwDuewINJQaWwIG89z-3vtmXYJI3rWV6KmlzV2kNtioMQ80tfqQLySNHk7MwoOF9nCypbDVqPeqQZgLxBcQ712CBx-sQ4-SDP7cJCYlFcMTkf0LjYRCP2d-GDg6oSFUbVo-HsUBxmWXr1gl9BTRcWZlZrCAKwqa04ytAuyIJugm3cmvZ5X80XMO_yG0q4lqqeE9Ca3RIP2ywyBv6LJj9iZWU3F1f3FC4s3rixLLcaf-y_q7w18LtbQM0-RXZ9ndDnpFN1fI1DCwbLyk-gijnZKkvrxr1LVe42O49q9foc2HuMNQ93KfAfe0tZxQgqt1PRL7AaQX7x5BwkD9hG-hMOJAbzHuETkiLa8UhXYSHdySUDk1vQTcXnpcWetfJSiuTYsvqW_hlnAyNAriFMZJZBMdrORxDuVuCDZHCZi2WQg7g9t9oBFARiGz45PAeNp5qkXmV_MehUiTWi45jTxdESFksGVAQE020wkiLZ0WW6YTtvQnTPkYqnTEJuo\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6796b71bc37706-48919143','','','2025-01-26 22:28:43','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42099',0,'cd-form-entry','',0),(42100,0,'2025-01-27 10:34:08','2025-01-27 10:34:08','{\"firstname\":\"Stefan\",\"lastname\":\"Tilinca\",\"email\":\"tilincastefan@gmail.com\",\"contactnumber\":\"07404141342\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/in-person-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA6AviNgM9xO0vhY-6YGw-dcBuca-pSv2CncCOJnHR2P6de8dXb4LLwfnpQ0H4QtcsQDSuweRf-j7JBFsGCkyaf0VIBonOZdE5bN6rq_eplYz485YTzyKqB-ZjKCJkVIr3EQrB1UqNLyCxo9_Pz_g2m3uCobasYoRCNLFUw4Iuw4uWqhP1bziHYWkCajCugcwfxiq-si3zATFqGsqXHRml3QEYtB8y4w9OYQxBLNow4odZJbw6i2CSlxJAa3RUQRow-rDgtC6-dysHPPOREbNr3--2DHQAnx4k7nTQveXsI3UXj0On_uxsm8CUslg96xnh8_bsBv2BRXyEnDZJwX8IY-zYZRzYHxYrjlPBtLUyFTG2DT_CwJJEuVlXGipy7_fmUbZFWhXCbRXn-_rmhIdXmhTGe-kYGym85CcaDEHkBOkFvaUq5B2LS9-0-uYvsbD-jbXqyLQYJ89UFpsJVvAveKfRn7A7uzoNUOI1sP-VCQOCSFUJVIHsjI8DijmutNd-9Q6iEnjTxaZd8Kbp1_CCP_yW80w5FmG0intP1EL4SevytfGcppeBa_-XcGLar2NW_agRa2KzU5MMaiinrPaGNm5zlFaSw-ZVGZVgVPxiF91I-ZrQWNQMQ8pg8a8Trhqrw34ip-8FG0rknhKIlDpmyKTJh2Cp6Schr0RdX-I6m9IBTXAGoTrg5eZZoGa56qSgLdnWlRXqn4_ZiWyk1KEsC2g8kHhCPI9Wd9nKyIRf2OuutvBsgmwF1ZFa1CInGdAQq7s0jD7OcXPhDIorVpy0z_rN0I789zxbWQnw6AWS4qSfvyDzcaAMg5_URFMgKWZAwkgtkz5OvJkxiW3ym67grMxFb-_ezj5hNc5lxjBXzvY_0dWI6xDavA3ZQxndmVAwnVDS_LdGEtrUwE3xZSx1lxCbZmJDNTjiRta8LPAq5aTG48-OI0BSR7K-9jV7OfA7FdB2DzT7ckEiTY7qrB4IPVNyYoyQvG_bO7jUi5yrMf9naKEBK28qZizvHyj9lpDSrpXts_NSt0JF8JwmlmDyqauXy-qrMVTMKG2sfk_1QIwoxzcUQkskmFdvi0vhbINnqCBOffI9aKs40iIFeoH2OTp8wk9ubJTXKtOYp8wT6gek8ERT4t_PkMgzD-PNA_AgMx2GdvFc39chekx_Ezc2OVmLhNIQcAwHEMn-ishQvfLxPK_-q8QzhJLmG85LumKeIVFXuoXARhPUQxSO1kDxxbzy_C_7nQX8cNrfbQwp93-51L8qJvLhNhseDzfrxZZWX-_Pfol3YnRKKIPHxcfWJAvIM_p4O1smuAaDPPoB-vdL-ZGSACoYSwlg8WE2DVdJUOSMzUQInJCYrfMaokoQPss4r60wgiJp1nrMZNnA5BJ6ZIRnCO0LuSiLYsiMgKCOrE4-yiU5SOdpl3oUXztuo9GLr7Z9rIWNUVokBigWd3THWKbl4ZpNfXlaWkWfoflJLFfZ3zMWMyktMEMPzQbrJJxdNLKss6LrZ_mag-PJYbx_KfbEwaKVZmjh7KLg0q57tqemhjfhXjPqChGdRv6U69LSnyxzHDGGLUs4HVqkhOAbe1D1HVTm8-TiHaROB3hMmzJtu6rvx-rfn4eeH_6sVr-og4C8BkBharxr8P5jFGTz1gCH92c4El_lpkANC7xiIRjii9ZZaj8fio65zfAJ-qlSgmuWe1ZVX3oNU9vxrBiC9WPkZU-wToJdA_ubQ63sK87XG4259JUBwpBN50AzniPTgGxeE6Hg2igeTqBpG7Kef2DeaIs5qTcf4-Jxqyv5vJ-C-XI5xv18dB9iMD2kNmpZsyyPQkEoLHIeuI3D4XmijD8-pVHiaWFeJtFOTKXzstnbHoQgcfX6d0R2_LhSIJ_mpFWN31SAfWciBglb8YpTWB2NpT3lqquIYoyiI4Yvu62fh1sEu44QLF4DeilU9575Dv_r3oCTuyhIKwePiNKHKDAehOM_ABi5X6T-NuD3w8kWOH96ACuO1y5VHnVEuJVRsIs3k9WGcwd8uYvgnvzlo9gG5Q3zTWAx_ns8uxaTwVy6vGokZCpMnirBOADrnyzGQ6Slm0W-UIXfcIgF2hlhGi2lU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67976114ca80a3-18684031','','','2025-01-27 10:34:08','2025-01-27 10:34:08','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42100',0,'cd-form-entry','',0),(42101,0,'2025-01-27 11:37:51','2025-01-27 11:37:51','{\"firstname\":\"Jodi\",\"lastname\":\"Munday\",\"email\":\"jm_3110@outlook.com\",\"contactnumber\":\"07368373620\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIzOWc1f6SiwMVZJlQBh1oAjF3EAAYASAAEgLIBPD_BwE\",\"recaptcha_token\":\"03AFcWeA6WFiHCLbxkv-Ed46t0PUFIuZgQqgg9V_NEM3cdb6oFS0RqzTp9-hnPhrc4Vk1G-lrhWSS91ghSw_3tDM85KhiMlq3SnV-IvyLO1x7HTl02YFhs9iY_aMKvrZUtX3hKLjWgzP9Q0Ga0Pm0cQ5wG85E-HpTQzUdRnQh2XdCJAxoLXWNW7hoRpCgc20CpbqIPa_uKiJJNeSxkbdpc-oy_AEEsGhzkRRYdTE-S19UNPm8oW9RKV7Atl3saFqFl_19pQbMtauHhsWLcTpuAeDMOD_z67XQxtzykARP7Fwq_K-3VN0HPgn_dueZWaQx3spP_NViUSmtqD95EtdR8LQr4KwO_kXMNiT5KO4ZwtajToa-gLVdZZzvfGLyk-wljbPy1sqjWYsDbdk718TjfqKGAbR86_9Tkvtj5q5CtNmopaknyj3n6sWp4uyGgpQguOrIhAgVeH1pQGAS-TkfkLMrdpurW-JrYoP0cRlZ3o7eMHQQJM6y4C2X-rySdmgfWm6Q7fyuwiWXb3Bb29O2J9KZ3PCwtz68F7btf6RpgitiBMrsB8_As17BNeTeWP0rMPJ_owJVpp98DLw1ffLURAnVoLpES_EFhf9961P8-wEugYtYtHw1wiSO-F0MhCF9VPHGswzAlJt7AMz7KFUtOYevLFxTh_VkdlrJCQk6VyuYCePDpt3NIMYozMlrdAhGAF1-CuQaA0VTYYNOsVAQT3mevpBN3EdO_4XM8sWyIWviwG4F5g_yxQsgQgw8YzrM1Y0WLojlb1sBWcthzXv1BhRPlh5E3XZSBKlx-LigpRm1lDQ_R3vmMWEhDKjdLz7D6EVrMvAI7_0whqb2Q17VxAjKA-z2oRY7vT17XV-CbZ7Gqk2cOAL7ZXhZ9g1jSpISaqrG1DZi1M-NlWxsaxw5P_NJTjbdl5YPAyALV3JLLcTDqEQaIGtadlQKqOXiD25PWEfPacAj9eYgNrlf-QGAmupOiZ_mY_m7PIGE1Edt4jZVHjkLYeVeAQf9pVFnFHp51CLiY46heN_yEdKzrgPrmqLCkYpVCiGq45NUejeBVYs4B7uPyDnBKmprUxFyGmSOuJNgDlQyg-QokekU3C5WUud4jOUr1A-NPIDlASlv2v7Wcx7paAxi0mSgW-m7GPu0x5bMoR1xx02SWeNWsmB0NKytTGnw42E77DEZ6meRMb1JrXw9v9NXpYztoQCJHAYP3xgQYUI_n_nmrePx44e5NIxfG38K-SeXIE8E1K6fvTwm5SZVA47ZAOkqiZrM1PU4Gv_jX2V6Y2tcuGH-SJYpETkyr2yYNIxSmHjXeEDHOo0jC4wKI81fz22j7P03P7QjXG2Fknak95_ecwRxrPS7qGb3ex2vgUMYdnoWkzvF-xSgTyjLAc62CTw8G_MhLzAm2gL4LF3OlL1fZWIxYw9sjzROyPUoc8VsEG4w-Ip8ClkoBVXJO3pxulfIBHqp9AGisXj_Tdwf3ece4pHQqvdZYDLy5-VRbVpZAluBxypCg1RywU4NvR_o2yrzvXiJ-uQ9apWDExNVLN4CzCPeqUNdzG-8oFspPL7N3JvMKuyEsheBo6BbVXxKx6RHZxCc7ObQne3oG8qt6dih5vCYoCKfRM5G43dpayCVwdDsqxNThsGGmLuzuDZSDL3jEfizPGLnrvqS7b17T0UAkP_h9O7zsdlG_aH4_0gzPXrvXiR_ElT0RBjkY88bvyRDDHxcCaQvnrSkKq_kDok1Q6Pbw5pnLWphsRbS2EHkd5U11Oz92i2EcGo8jgpd2PiRGkd1Z2UGFtHwlrQ2dfMgbMo_zTPidy1YbRqlNcVXSR82ZVV-rM0bq8LlhhrdHwoJNIfExxKsR0Z4azUrF-2cmQLQWSlCThEdnUEIBMsz_mxgNhPnWyycJd3G-Fot5U9DObwdNDzr5CfDYGvpdWcWUblAo6zDPzdeCocS9d5YSl8UaZpvdNgbqTOPKSwEdzS4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67976ff494c889-99409300','','','2025-01-27 11:37:51','2025-01-27 11:37:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42101',0,'cd-form-entry','',0),(42102,0,'2025-01-27 11:38:59','0000-00-00 00:00:00','{\"email\":\"jm_3110@outlook.com\",\"interestedbecause\":\"3\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"0x45hed\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIzOWc1f6SiwMVZJlQBh1oAjF3EAAYASAAEgLIBPD_BwE\",\"recaptcha_token\":\"03AFcWeA7Ghodf0YKtNeVEN1PH8HgURWdcYdd7i8m5HC1rYBzQldFLWn84LHtNhe1WLur4Sny97m7P9obK1vL_Ez6PjpXTeLKVn6rmxJ-92FpbQT7dW8E4aCMUAwsEBbJ65tTpFZV-UTl7LLNwkNJMMK8kfEBgrw3CBoJBnLRVDZkC9y1B_XehBDM6GMoMVaBD6n-R8QcHqFz-iLY6LBuDNGbpm8SyELtflqpSDf_So8pMX32BeshttcPGCBF7wtPcH-t8JEnTDAqzX_zWB_AqU27-EMFSmPe53Optm8UXeIfckme9vN5uXqeTE_33z2pRYlXn4tNs1n71CsIel5Sm0_Em9gnh2NJhSmi_X2ismdZ4NqermCH6rHIdVXlkW-vIFQwR_N95fjr01Gn1RyhfrVPUF0vifZJc-xegNkFgnyJ-kPi8bvMzSnt_MkEOqMB7o9_6dusJph0HmczHDT6_7X9zR5oLQ1caeFyc4lCe22E45mqC9KUlcn5cY23_6u8p8msfiJgPYWWICJV9-A2V3tzGMaOCWqwmWsIOXzJy0GG9z2MWKcsZYjfRca2F50WMrLYYUW4JlPXvFrGdMlc3_GvL1x-7JOqtrWHoRg5zVmz4yucY9irVmhmZIy9n8Aexw8GtCodJEP5YztnOCcXLffo3KFiwghkGaPfjn87g5r2SCZrgY_iJ4oP7BslHPy3zpdLXpLybmA7xJi_zgSh2aI1eJI7OD9xisZn37-yxYrY9ULuVuMA4nvpr2XLfjEMgNYE9WwJowKno2Suk_9Sb9qKKWt9mCpP8l8fLn_KySEujFcidHrKrd5iYFL1DrjCPOqhcFKOV9rVFVauHrurJaZGZn4XVjQ04t_y1mQuuqCBLKM560DAdC5VSNUAW-wZzvUniwAxsdtXJqL7XxqCH8WuYLav0iEOFsAuDiaRIiFhE0ebrxWJFF-F_WTuyHQYOYh03oXsZ_vFPUkiXkwaCxS9-vL45k-wvFRAE3suXVWCKLaKJUEzw5ADFLSl6ivDPNVuj-VVsyGVK3zlEUKqLPQCOXffdBZh86JXVIShjFCXqueVIXxmBxcX2PEY1cLqefRzH0iElOT9w5hO9s6FdhKP-Z8vw5GvC1NS-iVZK-eKc-84nyC6VcvFYR1EroEKEOSExpGuWkeDVGVVGBbjm_Tb6odEbdMJppNn8otU_B7CrYYTHi92y-ZewolG7Faz6NTSp633xk3bE-ATFworEs56pEXOvp5hH1NihI3qwqr0UEgz35wnRyZWwkXBRd52iZ8sbqRR-aWOasq-obfBA9woWzaxRV0BbKUFFBAmyWJoU1LAoQ61k8pJM4Qos9g_IQ0YC4gyc9GKpEja6p-4FDj6ovJe5lyB5EUtWQtQU1M-wN0Y7m4LxmKrhqzrdRNSFPov2ORUi1OwYr3n-Kti9fzC9mEycxJai_lPUJa1T_Rj8I6aqiagfiTCPwPhdaVtTLps5dBytmG0xHeH8NpBocunyvCxudkK3XAfdFkvnM73Qrs6XCkZtaQOW7EC33cduEUcwu4X1IbvGGW7dDvnFZQQpGAYKASZIefScF4uua0OSL4-z9SSpyF6PEwww9wmFuHqpN2vuE_UIdbvvVLbKKF6wV6Y1NqaKI2MdHDch49hhftP2L8pU_8fW6jdS1aLCBtBAkam_HaNYnbdE6T4RVK3JQEp-vg5rZG2Ef9SxLg1fant_5jVmwE8kL4ihVJB7SCr77Wpc4IOphEMft3RP30zdX1BiX-sqwe6yPTSLyFxcrQj_8BAHK_zwc0JozuA7RqoWMZi5xKNl1qYaaClgrvLtsRY-36C9Nzu1DYa8g_izaEuySahMWDYHtz_x6SX7mKzV25A5y_pDlPnHJYRtr0KJxQ_lns4xDt4aDOlWQNVCrFgCvEm19Nb8hX9OGq0Up50p211oi1tMp58Ta73YsyqmNpCo_4vn9cEOVAli7bpXcnLgyl5CeFhNKKhk5pC1DcWfdcf5jc16\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67977043927398-61912225','','','2025-01-27 11:38:59','2025-01-27 11:38:59','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42102',0,'cd-form-entry','',0),(42103,0,'2025-01-27 19:41:06','2025-01-27 19:41:06','{\"firstname\":\"Richard\",\"lastname\":\"Strachan\",\"email\":\"coachrichardbusiness@gmail.com\",\"contactnumber\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA-ty8BhA_EiwAkyoa35d4Ssm_Xv_45Wnz5uxf6MuuByPjdIK7QOTE64-Lz-jQ5HdNducoERoClOUQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7MNXRHmFMAKVWhq8zNwdInj2Dv9Rk-YGTfJRcYuqoK__Uhr2DYkxgKMAoEw_AX3T9D-G61-xUkqZJTNLDwhSPtToUh7azCfwHpHYryjFRl6Uje9SIoHyMkSbtWTehx-7K-0KVOIVdgSjqFMD6wS2xlq6PtU8CIJfpWgLFP6q9VzPuKYmrUjPjlfGLaN69oZDaPOelDF2_npPUdtJk__q2K_ClZPQ3XXvMvPwJWhLEwxoNOE3_X-WHD0mdHf1lES9H4KxOhkHS5TQU5nKWWXNwXKatUKurCLiz092v9pDbkk0HPXqQ20lUYsGcxrJq8aLrRl1z7_UAlJ1fvo9Bk4oeQmx0eQZknRl0T7CrSIV3t-QadCT-UiU4Ov6nupfsmZiTX9ek73pvg9GGMRU4UHrbGe3w3fq950SVvkZ0Bdry4wyOAdnbLEfLxvQJJPJNSysSORYMruwcdTDbPMt0a98MlmLC01uF2hzFR4tVOmgb8UxYR7ifVxmwg5ul3DyUyp_vvWzxsJBYb-iDukq8dqGk0wVPyJCP25psv8bsWIabTR1tHJfPuSP--9mQWTzgYwRE2ZNk9WJVlMjW88WJmqdw7E5CIoD1k60QLnFrAZKBLXb9Fhuh8U9PE8TAevPzP7tHHaUbcOuDrxK9LpTlfJxBlMAqKf7EXSjiaTMSw70kr5t5xHrixPEmxWRftxlMQT08jUOVo5OFtclr-Hgfsh-H9lItTRE_xjbB3KUl_GF7Dx3e_pUf2BPT-SSAIaYWfp3kiTGpLZ2gg3NnV-Kzpoc8VeZH3chEzTHoyl9sDy2EVH0NK4g9FTNVUKp9RCnl87YIxqxLixKmhIbXEutABYikt1ocaqSJXTsNZNE19_6hqsIXTPx_yqGkr-bS5WRrVHkcFqfaY1NGLvj6fB6gj-AQw5cOq7_dGRRgA3aweIB4oDmKofY6B9777MNbHfj6jFo-Rxv5U5NHqevDNTieH-C7IGz26vvVW748D1JvdNqa6akEGJKpHMFDnRaVoOFiUqtAwh9wbCKW8xo2TIAXkQyTOsAqgtj00ERpPz0NrF5L7JMtEa5lNX_hgO5US5thctzXDS65nGZAHC51G-UJSAtl0_hpNR0OWEmjDIUib-HpUwEDf8iw-M2lSDoToj8rMwUtI5Y5RJBluUvA6IA8uVwNkOvumlmbfRQ-XEleUl23YIh_aYK_mHxEMK3tvQ8JfViAyXAwHh-KBQiXQVPH2g_PkvfPHaE_3U65dbZHZQPNAnQQwifkhOFvMrh6EJNKCdEpu8-B6G_doLfnJGDNUJCDgPd8uTc7TyIqU6XedsUCC3tCXdd4NViUA6yQ9NyAIjERDrPbCCBROOOAejr-XKEyshYh0cdkyJjWEVHogQCUy_xjziyAtDby6FTFzygmMw4pWAOv5bnJzyZq24QmL-GEDPNmiuz4VPb0jmtV8wHBh5Vda2E3TOkmGIZJF561bvFdsmSqk5tTfWQIlBixnlZj9N4aX-2Dz-NIVX3kA9lTszL8NnehKAJV9JNr0xUwQEpoTRXLFEOBa8Vjr11d8v18sAowsMzH0QsgL6b-7ykwja9RsZEAUZFWrVGlWaCWy380CPOivKpdJmxG_6PqVieNoOTsxv7x0G3xcENgBzGoAH2kn0fWcJASsR843_olePqm2Dn1Lb7_uIZpvkUjJ97v1iVwhO0ZTZVCkvg_UNXTH2-H3EIwsCbdibCmX3jF_EpNx3bZK_QL62BPJHlzaK3Ma1FG_avHcD3gVL4lhqo9QuC12f_xAiVaWhkB8W9I0b4rIoFyILye436rxZZnE3rvWP4rsDPEO3eTxvtgUJdEjpsyNw-D4dFOTOYWQ8qg-Y-VU7h50YhL9e5hOC1pQISk3-DZvL4S8GsSvn1FnOJ6IPbKVmN-FOeI4Oiky7Nvn9FJuSx2vurjXezDfzWEZhx4jXodgWuYcV1JxhSzkfQoUB44HyWjJWtJx1BGlQ1_ySH6J1sK7\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6797e146415536-10412221','','','2025-01-27 19:41:06','2025-01-27 19:41:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42103',0,'cd-form-entry','',0),(42104,0,'2025-01-27 20:54:51','2025-01-27 20:54:51','{\"firstname\":\"Amy\",\"lastname\":\"Thompson\",\"email\":\"amyhol85@gmail.com\",\"contactnumber\":\"07999422344\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vZjVwn-wX7rl9yxlLLmo0xd&amp;gclid=CjwKCAiA-ty8BhA_EiwAkyoa3zz_6hr2mkMh1w4oeVQ6m0noqhCDLniJBzHzDZjFK-sFaEQ0EOeTfRoC7a0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA62PKFLSyf-0uQm8d-XCKEHyzlJcQVvYHvJjvq9ITZJFJPaUIZAhjE-9tEGuAfZF4ruFcYSOPO7j3uZobROBOcvwtVmRymsNMqiu6dAhSlVXMl8--lLQXX3DbQYdCUMvKZrdJaqTeszypxMAZswQReqtCwHi8usulAsvndtWLJzahIg5riIvueD0kJhFBwOdluIpvBSEBtj8zSeiEojXTEZsH1Fnx2wEq_XjvNQCRStwxqPAIkbapML7tb_ZlAZ4rNo3ZqXye5aA4a1PvUHHNfRyCfveQyOrdHXlBSSDY_4XfU8xE1s_pjWxoqnIllvTfA5zMtCoeqH8Ub-_0h4_r92f4qQzlECxBCAalnlxE5fwkotILO5S_wiXIURxmpeycmkNhz970THKEzT2FanEwwJzx5h32uDYgm8xXYlx_RmO4KmQVy_B5SPaIBfKJNQbBgsCxDB6QbJLBxprR97C1Ji2s9hKE1F_-vVEmEtcs2dybiTjDpoIRUsSbMNFwXIOQw0F-MRDtw31xkmfEcemM0ZRj077C5qYrZD3Sxn4EW6-05rvy8PFMPwQny93YUl4-gyhzdZrFHzvQvmx6ihK3ClgZHwhecFZ3LUthQSrUHGma44bo-yFaI3-_4MNjsC56ekGQJH4WUXYxCVmnjhm8-7Zm0wQoKBsciSC3FSKTel4qxt_YQPIFxd8CxH4nAYoITzXDQHoi5uSkZe2G3WmS9NbJhBAK-ZtpzD_e-VI9I7wTF_TlWkP7-dVmhVw-JmFyaqFt8SOfXO7E9ZS3D9PthaP49eXxkITporVhelImi7JdmdU_A8fl50KP9v7GAXWT1tygN0FzKZn5BKa1-un0daj0450lAEhJ6PasXav8zESKEVi5SHH4LfOV991Ii7RB_aqTBj9ztJG_PBWfX8l9d0VEDSSIehTuIPnEncckSjTGl_5smKlsTAWnvqxvA8tn_CkrN73IhAhBkP4_udR9BNVe8l0gAJtOQL7ccn58cFbeKqLGcKCwsLbOKYjlsXs--tagElXXFcUDJRIPLsfnl6lpt1vmiM6iJr9p10C93WWNmbFt8HL7zNkuaN5gZaWZBchWaYHboNnf7Q48-wCYvMC_ADA4We0zkZYB4iAJGpSniDPv0chiFJnRQAfoFvlN8EFsd8c-_iAD83JNul6aNoqr2ArmK0U_RDlsBIe0CVqCy7N1AYzbFXMFyLlWtYLyQ8AiqEJyAJeTihBkPEEmP1gMTDKi0VkVYL5T4s6mulKLS6KzoGuX-vBlRnEB9GNXVzAnGyiAdCcbPUdahIWFssauUBQ4J0Q-neOVZsARVY-NzargeGKv1LN7h1ZPPFN0-WhDcyexQBwfbR4VIxLeK8yasQONOXHv8L_utwvuThZsaKsoQOjIW0jODj56rqQXBBJE4L4kQOI2arQrk5XK5l0i6PJOBxFESPrsqCc4CXiORb-Ij70l-QBFPdUi_D64u6QWyGk5PKIoKc_nrTtxLvWo-2VATcarH0q5ov18myjJxHA2vl6dxkAY_6bn_61_MVho57OzJsZUzeCRH5RwWAvlQw3CMFNN8HNS8xg1kbdt4E2102D8RSgiPe6ueGBegT4Q4YAAVJ64AmEDA5xHQOiX4KA166rZQVyS7SbbrsqI4J7N-DNOnL0COkOQ0EX7R-FERcOXaYHFlEAb9Ug7P_uKZkRAPANuTCk_Fd_WlXEtfnN7az3cvjFRefnmfXzt2_QNdIJ3MNtx6aOZmnylKXcQZxjXAAklFTEA_vpBd3zoxDR9pRjlFN8uP1y69oR9-hWf0zJ_Q2YllzXzA1QVz9SrSusf_AB3KllsIdW8EMfLXiN8MFL8QWyByDAq1Xqa5SOCF2D5BLvO0ZQ1JH3HCY4Ej_JcY6_0zMPo78MVm5y_QhWWzegvtOrfEWOnW_7yTKavmQnlt9XI4y1NBbD5ndz6grsqYrWyUbI_LsiQci62zcdT2jn3PRpd0lxGt2CsFbxcqqsxzamg59Wh1u6tN4xQH23YCo73Ln_45YlVkXllEsLQI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6797f288b0f787-21656346','','','2025-01-27 20:54:51','2025-01-27 20:54:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42104',0,'cd-form-entry','',0),(42111,0,'2025-01-28 11:02:05','2025-01-28 11:02:05','{\"firstname\":\"Giulia\",\"lastname\":\"Buro\",\"email\":\"giuliabur97@gmail.com\",\"contactnumber\":\"07377416023\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAneK8BhAVEiwAoy2HYU6LfHQxPgV7RR-E9Z_mokcjGdApVCSFR8hXqDSIq4LcNa3OpBJuMRoCqz8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7o13y4QFYSDSMTNkdYZYHvRk-glveD_pxeES-2ol07mUD3p0A0_ocgxDRlPQmrRomRlIU2y6q9cZsi5jLwdDfRExayqTXgM2USjAT4mhQiYC3ZjorSmh2rnVF0p8cFXB9iWSr1saI-o7Cte3Z-U8a8Wo3fmpYfNplUKEy2DppWQlXW2uXy30M0ADVckH-hJ7dQ9s3-o6upstvptBwKsDfqTvQvERJfXppFJChQIvo9185VeYWyXkOHhXZj5em0wrQA_GhC0R8H1i8ij-5nlbA_1HOuPtFFXcAqWmujGoctwPGHhBf7S_v7TxYGlwBKWAeAMmATRhTBsHKCztyp4Rv6rxqLnxRzimI4CWEe4WiaVv6Rcv7-H9_QEucUoRdCnUF9o-c-XEe3Xcjm5ojobSfH27hPtayv1vTd8VZGKe__o3LzRAvCYPEmJpVGhO0QsfFd5KLOiUkwuOiOQhZOfT3nClXcTec-0O6Z06xRYill5NH_edHJqJFhIx9xi5GANxoHzVyOSeNN_rohfJGeoPnBsCUkSNINC_tuNABy6xEWNlKooLpc21F9coDXoI6uJoDLiee81VkeypOaT3ptPIYjFO4HIM6x1HcWSJgNohaFvge0DTFDhSbvBPrZJlfOcJCTN_Xj3yzFk8D8qDWe0yp2QQZ7svcImlVQriY_7WGAYAtCI2-OHVa2qxen_xgUpRsllR0urWt7bj6zIIxFSLXdzTDrS8TTou0J10MJnF7C9bqDzXxdtDQZcAc73lBeWhRUr9FCGearE6ynGGVGKkEC_qhsogugKfcmkAN246GXc_rLX_R0DzYU_FOlZrgzMj2lKmG8W6kKFJyb0PkbgmS1j47_5AQ3JRuvrGZbNKGicXDjzsktNCrpwwvBfVEJVwoHl6fGeJ2D9Pc8HPgeFPbYDg6V8NCcnnpouN-GG8NO0HKCm5Gpd8iV6FNiVsGozrpBbmqYo3-wZjWoQfvYOx8T0l8JoBkXBXgOcR8lNFMoNgZqOvC00alO12MhOkAZ_CqFfSYOir4FU4eLG9A_O4Z96F4-bsec_lZPzaqg-lniPb8rss0ZjJQRRqcUozKQrE4q4MgfOW8xDQV4Dqnxa1Ft2u6jVpM_UgCIKrWD-1Qq-f6EnXbTtnnv_Tg569oJvfhP5joiFSw7Xbw1wnknwlNPbXglbkzJezjDdfAvQIYnIc-TaTIgGeifWu5zLyggTdGI7tLhwjYjA-5qvz2BBKjW60_m0GJ0o4wqTRbXJ7sMG5GxAsdKR58e6qZA0HQ8b0mTtxYM-zrn45pfGk_4i7ZqCKjNUyvMfe7wpt0aweCRGvfZuWBN_uOuge1lIC_NDA8I21XeW2lXSYvNcPAVYyCK780YtsVSxm-txlGCc5TfyOc7bc9ouooZ8akgeaed6fFV1EzDYnIG59B6RgIwOXmSKIsNr_jFDGTpdfQlHS1OupNVN1V9ILyivkwS2lnMyZUzax_QLAqGhXWrlo1_7_VeJxa5AtYl_YntXuXbWlR3TtBZOqgJKyu8yE6zhhJ5IqR1GwiYSysBmy7zMEQb1vWGaECamw--8O57_s9jQ-syNF6Od0j4munod3XBXL5y8Hcug__Z9sDONLuiD2xEBTF3jVPuU9K3EI_6WfVVFtzhERwDU0ErDqvBqaOELeLsdRSCYOa4fTXy7Va_CGYYJEED6mL1F5kioj0fBuZdoIfKMtq9e6bvva5fUrTu8O1hCcZqrxm-WlMMigF_5_I2-GqZYCM7KqMvxz8co84sNk7tKFExOPIwu3r-5mVUxanx0SalRqR7P5v0PWiq97hD90gefar6UjiQXU7TAYo4_YXH43ho9tPAELVL0Y0enMhFHOsShrA1QwdHFcnNbOKVt4fubFz86XYUQVlgq3Caon7l65G9TXYBIRQCfO2_-_rb3-Svl9pFzUg5Qk12g47zUu5TOT4CCzFQIkeW3vKx77ds1ryLbcQG1hkF1UfEeAt4MDHikiVx_lgEME74w0Jj2X5ztuKmuUMUjZX0Jui6j7JnbZPYPKE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6798b91f4d42c3-13531109','','','2025-01-28 11:02:05','2025-01-28 11:02:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42111',0,'cd-form-entry','',0),(42113,0,'2025-01-28 16:44:40','2025-01-28 16:44:40','{\"firstname\":\"michelle\",\"lastname\":\"pank\",\"email\":\"minimich10@hotmail.com\",\"contactnumber\":\"07738449128\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIgOzyh-6YiwMV34BQBh3uridBEAAYASAAEgLPCfD_BwE\",\"recaptcha_token\":\"03AFcWeA5xvbFrnXSegiAR08NggiryE1_6U-0rd4Dk2q2fZQ94BOg0PoVbep7dOAwiwibP9z8pRRv_0sBVQEoNe5azobIwjhXukYAtap4hzOveVrZQNaaoJiuF8767kxIhf_LjJeh1jCTNIngHf_njU7HGs_Bu2-yMR_iyxJIFhR2o9AslIqkQ5r_5BXN2RTfNITu5Y1_gppq9IYU1x_327MknMk7Nj3VrykFowkyJsX8FsGrWiW_PNm8rV49YqH1gppHU3XiewA3v23cfiqIBBqvvCRU968B-W1zernLIhbMDt27QMbeFK8nyYBxgKKTIgrDlH7rV7htRe8agPD5DTIVn-cl4DAWQM1_7bDMpcjf8uuYm-AljItSIfL6ps4BEtrTjraZkOPDFheIkU9SSzVDru6KmQ_8q2_VmlVojhp0JGIYjB0PVWlSUM1t6HrQ3o4fU6S5gAoucNaTx5DmSMiM-nRPKTXchJP4vexmJy-HsGlfnCodArZr6IwM-1OwuA2LgCHrmXvabUUXvkSxHTV6QvsOeDdXmMQizxkkIDaVo4fE17eAIU_QMZJZ8fGPhwlH9LcVH6vkL3GFzv3AwIIfG4YcRAUXs5bt1ZVGoz7j-Db6dQ3BdzSMFV7FrdHnn-Zuyrf1ZJnanvJCZF4cvP2-rcMx5sl5gttl6stRp5QBCU_T5rUn9cnI9h2JXR4CuddPJqXwqW5c6Cr0RG2wMav54OJYJp3nOSvpIiq_T82TZCSjpwPI796wH-oMnfc-Th-tM-Xhpnbqws8Hn0ol9k_lrQ1JrBbEuwM8uZPXwzDTQfpeOO0c1jm5DufHDJh6lq6aTYZdr9gSce1tSkuq-Y5RwEr5Vf0mITfzHF4MPiVt9PfSoxQMGeQ1PZS8huA7u-fFbCgyt0ossVXbEniomMUx0fgZrSQZUrMf8CajCOnNJA_WXY07GQmyj7gYyKbIdXey81RdU9I28_aat3MLcQInuxUuZ5vBRiKCPiVyx1m8DRfqJ6nVAL6NZt0K-7MuasxXubZIkMs1s0zyhN3PHp6LVKqakExgKBS8TkuahET24MdG-KSrD4nuiSYIUgS_vWpFezTNZGaNuRYluBAk0toofbpw4ZifuKth_29ywLwoEOJuy32KJEIBogX1RixuPOou-B9V5xXUM6WHy8UZIiRpmzwh1rmzJH7ScKq11-ifwwqoZ9i5DoBZOQEVFF8TwcP13PYccUDDNtOwBzaLIkuCQfefo_stBAPaYO7dELL9SSj5Z5EPXDLQKUq3hH7H_skxemZm5Ant0x3XEMT1rEHx82r_BZ5TCA263zAruE-EzcDlz2Ba6Ed3UFwxht8bWZTbYIogI9yJB9EZPWSX6lzHwjt5dGeoSoFmriMaAAoF183cjRXl7lOLXLZjf7YJqMZ9lYEi4yklnqONOOVLnJpB9Y7BI4SwKgAccCsJulXMx0fk7Xpaqe4zroAYN0C3mHdIjyo4qpxeMHCVUtimR3staqIzT8Q6qHscwOvlk9k98x_MVRCgKJdfHwbiLm8H1a94G8oXah3cd1xWbTbkT8CbONggEkcXczUWtHaawgQeItvQFq5JfCfWG5RTgEjK-oq3rA8tTCy5Oncsli74sElpkQhuXxtsvt6pAGYTu2Uiz-mlTNk8gVZyAC5MM_SMrClfkxYzjTVcSO-FAI9rguJRtLETX5hfCTdgdq2JTaC-VQhMEhLrwhboQuVWcoz4Dl-sROnEOmK4OS4hxDei5hVxfDvO7cav4HaXTZb0CmRF47D8nfPrVPSt1cAAg_NdtWf8f7rDdoeeLjYRlpWbs7mPzj6BxohE9ToGanQBw0ouMYaNwVTQbsh9NH8gDSIvTk55MbIZfKHY0O3w35G8WeUrw-AJ1jQfD-zCs6y024aEeFzw8KoCplwxK4tu-7j6g57IYuY47N2c7uqdwE_lY7336Q2a3S0jx7DE-OBv03z5hJY7nUbL-bSJX1QxxxU-v-HuvpOD1SBj787RMPg2hSS3WkwjnVDdq-4_r86J3CEG_HfO25psGJdnWvd4c78_HX8Utx1lPtH10\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67990964363564-91423294','','','2025-01-28 16:44:40','2025-01-28 16:44:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42113',0,'cd-form-entry','',0),(42114,0,'2025-01-28 21:43:47','2025-01-28 21:43:47','{\"firstname\":\"Stacey\",\"lastname\":\"Godfrey\",\"email\":\"kyron254@hotmail.com\",\"contactnumber\":\"07704009682\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAneK8BhAVEiwAoy2HYdz1cqV0B7Ry-nIpHZL79kWp3A-TkFqjCTePu11NwM2TccPBv0DETRoChXQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA77ewxbOVgFGCAHcrv-a1UFeVCM9fITLwY0HT2ayIGbRq8BR3g1sdALWHdwaq0KwEA9WJfeK8J9rImHlAmmu7VcxVx7bIagJIpTAo03uapZExBoZeYVceEQF6SPvk02opcA4vVIQUmZDFfqgabgUxvtOHK_UuXRdhAbAmR9ungC4d7ysCUUtaDmqMo2T3iRkD4WZU3KJ87tDeJz5fNZ71haEMZW789rnsDw6tbAXB3vpbv5htK8Uhba8Y-_V3JNm-yOtwhHJ7QzuUW_7rKRyVWRx9m5GEuBZ3gJdsHnzAA4Ah8QRA_nlMsTwxPUaDda33Hk_FoShT58Tf-fjUaNcR0bWAgPMCn0y6AdiJv-fiRdADqg7RVntRdfdBV9SWE9bIVPm88YxpPDJ2VfPllQ4viBA75fmc_ADaKwT1dOuBzQtmWGrdHD9TOehJj5X1lAIVpP1jmnRnoXiCVUadrwl3eJIULZrGVnUgJtYqzyt3ChXjP_ByOi2NC11btJnA1eqt3DFZCOBU5v7BcH0NfFIgEAqlVTlRQkJ1sdZ0vMTfHgjVcIIcOzzF7leauQp4Y-_ToY7UqOV07zK0NDYhy8nj8yVhzzuHAikxZKOpwvRRltArSPsCrGI23tAQ3QjPI4z3-_hdBSKH3FxfCcA65XxDvOU8qnMpOZTl32UtjtAesQnjh9t8DlRHySAmWXLxK9X5LR7h7X-qhQ7YVfwkk8Wzyjm7sqCqS1Y4Bz_B3S9WP9Lo6O6tYrHs0NcC5ocGXok8KXNtChUph_YVBxAhnKRuqTynGDISbsa_dGj1R5VGb-6RFrH8ujkw7Wi0Kw-PX6tpWGVKPt8weIwqf2--O8nlruU9Bu_Y9MkDLcSzXkAwaU7Qn8ZxMy5tQ14dIbmYjSI6QuOz6tp342gaS8ky5Dw-n5HIjpoeGZtRSVjpXRKKYYxk_eYZ-wqi8XK6fuN3Ape4tAV_V6KGGYwKUwbSQb94PuNF6pRqg9ux11ttd8-osIDHtaaTjnIgHzfyVeExO3U7zhDDRYjbjs3HsSFhPHCqQnjcDbqwrAxB9583GqbtjX5BHMBAXawvHgzvU4dqTGMWlWtMgdSb-sX8jQiBCzQnORf20rYBuGAB8mQkBahhh1nvYYl6sUL7YbNNkvCIU-34fVIjhg2boYumA94ijedrI4KXsdum6Lhj3zIh4MpSFVFnNfnv_ezOIeOfensWre5Veo-4JYeHdREXfhXdxy2nr7LHFKrwo9dTNVUZ2im1aeU9OEpg6B_mU7yHJtAo4nVcJk5iIIOBg8QOhu5IWVu_ExWOPy9QuWSVKYm9scb7umdmeVwyWsg_x1G0IythJpA6H0TE8Dh3bt8ZC9emkr8TazXwDXTWAeK67Bpa45-l8N_Z0WrqFEzJ7x0i1goiytB-JXcwwU58-CF4BHaNLVnDXc0JnKEI97v9y80YWTmX1WZzb8uZsf5KD_7MYwmVZYBzRlg-9axunp66Xpa50CrEVYaFDpBpqqGDEMV1zlmOT6o82hqCWsPg-tVp1YuPX8ILZKRxx1blT-IVxS1mUN8MX4cEvmrZ__sJUH-b_mC-VRYCm3txQELxy8dYNwuELBLP6aY7lGQ6BEFTxHBj-Z2UrubX_wPG1nhHbtSZxSaVQht7zYq5Tefx8ZPBQ8J9aemW2DAl_HHemL1h03EfalwBLhZ9KdJ3pdReGizDgDDjlif1pR1ZtyOE52GUFvnmQMkHcqNXNU7ghIS7uGRfkVqFLSuP9RwA_QFykjT7X9TR7zCS5lyETaFWtv3VqFCTjiAqhe_wgcDYMVoLCq4Q3dT75wshcL_ZAUC_cQYA_3TUjKrlLHXhD-_E_-lQVqF1fwyv3UIZ3S0QFmZYcOiW__RWm8b6Oy5_NeKrs8_qdyLbAVMpOEowoPrwHQsNeowKpBySaYRaGTbHlhO44KFp2Oft7qOE1KFahslsN0vxWQZxTclGolTpnfjHEI-79FJS4F6m8DzmyHmQUYJBOcFBKJ6S9zHLxVRAmMqswNcDWzlOzzURfuy4go9o_1k3fjKeL341Na0xEHSpysZudCS4S1EfWteUnJRA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67994f79e5fce9-61894934','','','2025-01-28 21:43:47','2025-01-28 21:43:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42114',0,'cd-form-entry','',0),(42115,0,'2025-01-28 22:48:22','2025-01-28 22:48:22','{\"firstname\":\"Kevin\",\"lastname\":\"Harper\",\"email\":\"kevharper@live.co.uk\",\"contactnumber\":\"07599129571\",\"pageid\":\"39245\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4_NqN4eW77XaJW7JgH2JphNXv0HmLYxcRL6mcbRlJlHkFkkemzVR6v8N_dbQSnEhPrIeZN8GGxxrJCCNCYxPZHc0CAuD9f_JBHTBIxbI-itsW0I8TFX12Gc7kr-xtqYFQ9LRcYoYLvaGdSrNEYdrezqq3e76OcUZ48j_7ODH5Mtiy3G186HvEs1FcV9yqDsDC5a3RHid2hrCPa-F8Ygk3bu9o5OQN92pLI-7Y6-WkNbTnVcu5dCzJLS6YBOk-bFXjX_e-98InPOpWEntn1n_igER3iB33Gql26T8ExWmAYj3QHn_p4oFoCuY3-t64ek78Pe30o4ewWzTfNV7u5zUmACUUBV6hOed_2Q5-s_mYaF3cojiAB6_bpOVeFbfP1FEeDjr1HAz1Sc87iUDZ8GOYxCSooRYMkNvS_IX3itflxZtlvJVrTCgl85PgHe7UI4uRlWUPFj-Ta1wllBp73XBhCIDs7RdEo5Lm-BcvmoWK4Q_jVGAxPbyfhm2OJYGV6TMdWn3yo6xdGtMIA8LIu8wcHIExgwnIpv3ODF1BVoHL2xldEZY5RbgiDW7mTmh3oRKPPYHGCivZRQdIlQzweOyw_SmN6sDCcRDhih7Jecvjs3WFL9dm-FaKO1HGthzXrJCGeYo-5maOJVDvhYWq2SR93jcfEdnuWBB1MLj4ilMCN7kj01lJCNbgXCaUFaH2mv3hNWa7mshETD6xniXTwoe3oabcIkNv_K98RUXOBrdgUbQAE5v0SaGAmSKhiBdoe1gnZpRUl2dLezcvSqmAaZOP6m7k5n6CLCMSOkB45m-y59Z7ZRaPQBCKpYu6C8WoiagvdUIJVByLgwG_Yha8SaU4BXs4uYy_2NJZC4PSpFaEFfTptR7EM7EQuAtjlQEj2DTUyiPyVT0qjwt5g0auXMB--0auwQSE2aQv3T12HTM5sIq4xhPck3hs3dW7GBCGTC0iyJv56NzrtWIeNk57fwiLoCHPak4bpPpMfYAYqHioruwAK26-lIsEqZlSqksYF0JFAyQYFE-gYEtrXZsrj7yWlPY9qB0f8NoHm8aG6iafmeCP04Mof2gtYOQEN1YhXQ9-YrzeAyYzlK6BYWAaOpwhGe_Pu_3IHQATxLTdqKfg-xzK_-nIMumXoDJ6oHQzpdqTrY3PkulTb07r9bwBSFh67E4oOZZSJs3PWiqHIbl_8cyMHvYbnMIAZhClMFdkS72ie4tOtqXrVWr-oGpKKfygDYp-99Q5m_TqRuPe6s5uDBgh-YgOXaouzC88m01B5AR1PIm2GOqqQFF0KZphxHlx8Vucerk3KUToeYN_q1-1o6taq7sAErb11HLeKWqx0uEZKDF6W4VcRvNwM_bnyzVvvAwMvZnqNOrVhQtN1qktbWBAGl5IuAjlAbT1WCRQRHg_jlIIClexW5W3g3Bft2Vr6CCdtrLmmQm2usfw3jnuPakavYjcQ5RhQqW6wUqXUJWAxXFF7f27ZSPSD-hmoKqDaC26yyTHkMi2_QjULbCt_NCyCf6gnNehxyJzfaEFeBQF1126sZeGXi0E6L4ptoP1tJr7ss8Ob8Kh6B_jjOHkB1CTlgnr7WQ9CvLso6MWySx6D9xbZ1zaOkfwMl--ThAWq2hh1vpfEIzdu8Yr8V8elozu0sC2laeceT0XnJOpDbP4lCkQzeET_7dnlNF1Gaw6VyRHwgL-BgYISF3FS3fwRvQiXtjFY_5sDJxUuu7UdLQvGCxHYiwZ5jGUzBD9z4Px3i0fuB1_GHmolVwdSid9LGBQfhVVUKi6Uq18HcSwmes-uiN0vVuYZ6kI3HUK14F9M2Uo6kAtm6RLJL6C1FMgw-bYpHxGCStMeUGozd_HGVhTBqueRgKW5ORaEgfO3QvSpFz0bHm6kKbHOGRJkTuBtmamzFPHecyaUFLKDSWS3ZC8RGRhLo6WT5MmvXCFWOOFnBxTZoXRzHEOiQs0Lul7dAZml0mU4plGXxRx7BIGkXqfMgnGsGw0EF6ASx4pG1o3C8XPsge1Ri2tvLn-lHPG4dRMnz_xlhbJuKeUyZ0YPGK8zcSWmkefPQxxegNdeveZT6v4j9CYbaYYABTGeAdJuVsDTBbBaEr_oWEd6OSKSPPtChrrCctzq4mMsh61LW_iT5gq3BOtYKWF06oeDqtzM2u2rnwPm-JqHTLRbwD0nZzgR-1cnIuV23vJ3saSXXkZUxJA50uZW-RuThE3Yqa5f2lnUsUCQ-YMkdzUH_GntgDASp_v5\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67995ea08d3f68-52730278','','','2025-01-28 22:48:22','2025-01-28 22:48:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42115',0,'cd-form-entry','',0),(42116,0,'2025-01-28 22:51:16','2025-01-28 22:51:16','{\"firstname\":\"Alyssa\",\"lastname\":\"Shaw\",\"email\":\"alyssa-shaw@hotmail.co.uk\",\"contactnumber\":\"07436676613\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAneK8BhAVEiwAoy2HYTUGQIMe8NbJNu8cgkhr_rQiJXbGtMrOETfP53HS8n_SUpy2GcDIWRoCtqkQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6bhfgAYNxdkmeBKt1Zzq4v3y7UDdV8n5vO0ZweMYs4muwANEcgdyTmWiw2j4qiPjjUeJIJVkGK1GboSbCtXJ0cJh7Vu005pu2S-MyEbkNv-PwzKhzH6dmTC24zRXAyUmltNAxhstK2HoYD2oUze0ijJcWIYz11gnJNtWXBGLAf501--fqLhfY4YO5l0j5zZ3xaMZJjczk_7-HpcxOkyxZveamNZ2uGPcXZ-V4YPMS2aQKKzYyLCyUU6-4oDEk7DhhjhvFe-Il-EqthVq7WP9Xagf5OO1zROKWo5eosg-JGkCgzBjgPoOoAauAV9ma20870xhWhLjtdjizSCWxnbTlcrFdiwhIQLF5TXG5dyX3Q5mQ16zx7bq80BcGNPnzJTZt6rAhZumRtW7-zLurb_vI0zAPpotoKVe3ISF396_JYThXowXDZ_3sewUbe7gmQ_vjHvLfyjLBxCUKAVUq8uROXSOZU16mOJA9rOGuyFLFgiXUr8u0XXmVNgPuOpLUDci7D56jjm7keTPc48rj-3Eu6BsB_fVBvK9TLM7jQfUbJuzezoP2qOMXFcQG04T9b8oRHdEGzPjRDq_tDLnha0mHkbsKX_5Iwv9BqpuTRecghYTzhsVJZ-Lh6af7A6XrUTw5IayShMThexbNAIzqxSItBoE5TQ-ZX0SNeghOHrxByXeadHt0S6h-O9IpBI9nh3RIlRCM_hYBLxdaOYybbtW1qOCi84DjwBd7x2tx5HHnuf0US9cdczeLF2lk56CQlmtV6cQ7xIQlmab5ZmTdL2Vwn7PQH4GmABvqBBkiONy_dP_F06p7TDC6MiR-AYTZczf4SPdGoZYuCOGmwPixvP_WFp8-9OpmU_1ggvh-HnYTiaYNOLvgUyctdYPIcZj4jTaU6b6Lihc3Mmr3GomG67I5RgrWxAI1W5tdAZGX1Bp3PaC0HfqMwS5UV59oOatVD-R5BaHwcse1E6H1WbdGCEM4_VDH4Y2jYCxfiGZsUP0zJjOPd02_NG2D9mU5zDRuZiPYHFh1YSJdoXLlIDbqXjO2o9uSabkuSRw3uXVCFC52shiys2ONZEI_t6amy233FXPBFOD0xT0DlsX__bt2kXsYzi7lfxi_Gqdf_KikAMM_Lg3aWmgzdZ3ryEB22Cfi9LmddSLlL9xlcMpc916Ww6HwGaJVToh3Ip-FMDECs8vOq5oH3TBCL4SrBw0WMpB73OHKLJ919AP8oKTGCs_in55a0BOAbBbGaO7HP8hahSpzeMBxOFdtP5i9lvoPlfYDhRMcdR62t8C4hivokE2-dRQ1nm3MpyJp25nPo5kv6YpMMIVRCgKy80sj4VROG7cX8mE4KltWqZ6WI6eAdvZzc1uHnI6GOHIzVfk8pweqf4IAfVWXymp2IdHq7jlNp9UqaNyrBhvfXNfbt7D_t5OonziqnnX0S2wn9kUu0Yfwg1gxteie45Sg3yX6s8-_XEowl42kgY6x-dHhYCcjQ-vPHw6YbWb7mhIX54MfDmSbvTfWrT68OE3OrdU6VQVpL0Y2nfmSvLlw5oPNCz2NFcFpPECIgFWNscf6iT0khRyBQ8VLDB5XRL-tnS9tZSt2Wi6OEuNXaslUwmny9gGnJwC-x6yriuCi3D10NlMAbXc31YAS79AuV3BbqOT6IegALtysiaLNi9x757k4hJPhBxGr72TILUuiZOv48a0BCI4Q4iMifYRtUfp1VcTy8IHg-3DRmMqGT4Cg--xyiRiXMVze5p7FYPxe29O24VAYuXwnTCQuP5Ar_ulcWdKIH0BUrMhWww8cNZz_s8FHW-W8jUv3mW5hzLcG9M2Xm1rYcxbuy1kpf5kqrggHIwWQ--x55hucSerrxe42oIHeV0QDPJ_CbzsLVOd6BzejVDAo07qXQY8OGSYW7LgC8IY9amnqkP55DZPGruhuz5CtY_IMA_iWBHr3al6ei5m67FlSq1jkRKpto4CSbrSaBU8O5rBNzvVJQD1nCz0c9_k1YrwgDHPr4X9rQ8uq5OWPKLgEd7Oy--nPPkZkUpCA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67995f41621ef0-22099966','','','2025-01-28 22:51:16','2025-01-28 22:51:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42116',0,'cd-form-entry','',0),(42117,0,'2025-01-29 08:16:56','2025-01-29 08:16:56','{\"firstname\":\"Ewelina\",\"lastname\":\"Szosta\",\"email\":\"eve.sza17@gmail.com\",\"contactnumber\":\"07956 853852\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4Mwckiwz9t5BAJSHfAwVLyhqm4XPrS-QPh8SeF5bxSOpC-5x_9whOELLYe4qM7js2H900Kw_63l7LLdON5GTsuRvBD1CaRn2X1ovb3ciS_sodhROtMk1IbsbUV7LskoonNFpjekMMhEuTawmAJnNDJFQpKkkHEvqMyG2KBb5mfdzZ046frmsmRoirWVcF3xHsxyWdZEagmwo2ip-vCTzi36bQ12yAyGo_HyZO9IFDTILx8MQVURj6eIZmFBAVQmFvRFfP8YyU4YVEnxB5oBWeA53_VQrIsqTeQaAe9PhP9d6kIin7KsnteL4-_vg5otE37LFBBE8c98z6w8LUmyyJ-PrwOVbMXfastMDopIH8QGEHobq-jxVVFzZKeD5oTX3uzNp_9Z3RDA6eIZ-dnYAfuY1uZSUcIsePtHOiKeP4VGBCB5Fn4A4MArinDg870bpiXfMFjZZAX4wHH0cRnXDwmrl7pybHWgN_u1U-6WFjl-okQec0-a63c2mOtrGZ_iO4Ft-QMJsVPuj5HwceF5N0AilSQeTNiAF3nClsgRUtSk3f_hPLxGCtau1C6HrptedU8K1pt4zR59GeDllR-SE8rRJitP4wq_DNhev_Qx2Te4QV1DRj3OWhX_41PxEBHOXu8tzDs4QPFSfi6kyL6cF-OEBZ9gCBz9EOZHpvB1gd87V-Vsxew4fpyU3s_7z2uIPnpyxswHnM7eAR9lQn-Z0Ah1cpPvDxwAFdURyDwkdPR4rW3G-dwb4W1LNx7JzohZgdxmJdQtzBpQi6-gM0y6nyi_17tYq_V7BNN0eUXF6O6vDRAX1NbrT8UmtNFXqPs0ZA1QCKUQxnX4GoBuZKPrpBEhixlxvP93fg4txcPfe90hoqrqbPfgpxyg3UGWE2ZgJgEl4ssc0_Dvao_3EZN87fOnojWz2GeGhBdHt2ARgL6UI8e41sXG2kSI6t-p42FRShCBGHXU-U5Ou5DSsZcptsY05fV3qQ1Loa4RrMoeI-vNMEadKrpJPhT6-jnE-xFPpWtbNn-YeuqVd-9uwBF4ZozeGlNDR_S5scfc2AQP3ZS7uhCDhdzoMeUCPHdJndYwjoQ8TCrQdLOtC9Axk9LguOrh9HJV9bwYp1OgIwQaAhVZ36eXNqJtqMp8NZZYJdr0ONsRfOpoVzTdJlGEPnwhKfZG_ySZankvyp2mVnqU9O-7aaDBIlJ2gbafDjt_mMXQ3Xg7dtu6un3SelLvRwAn5Rf9GrY1J5Ehvl-4_0-p2_Akz_ArbDqYWenmaR6f-DKE31dwZEyMMipwYHWYAci74NMzVE2o4qO7BayPbJq6UAafNJi31TGXNsYHcGF-o-0mvQ4rgwX9015Ipbk5zLjQYdvj0go6krqojgpmJrKJ1z5qAno4onjPYuZpQR37NpXapp4IG3OIXktbJiLdBf49rcHJc2zr7LpohnMy5EfLnTWZYZuXndsSH9ixhNtdJVKjme604828zBLvx9SMKQ2uHTArMGa2iU3ZFWUDINrMF8S4rcScMhQGcw0npcpaMVhpXSygrHh4h2vmcta6BHZURIbpSrTk0PHMVOsfWWS5tqonCMU-xF2Eev6GVQdQZiUtkPE4YI0NQAiU2B5jU8ixclXS5rWQDHNdHjhgCbEsWIuZMZkgAmgjuDHBkXgBl_i8OpovHCS6uMJQQ6TrUMSZC81dQtX5Cx9fOGGXPvlMGfu7Zs75R_QbCQwLUVaHWwkswHheCEwYxtPZmPhhxyzp9h66M_7B5lNxNXCjoWil8hc4O1BgsuUoCZVV5xtk7KTpGIxCsGhS0zLXtsGrAtlBuCfr9cqcJpotIzQ5eMcCq31e8j0P7veu_ObEykhrLF2LbRe4z_i8bhLj1Bn9zPVuDclVsoHDu5pnVwPbIBvLRhUodqOj2yJ8ipOJReXVb93nlanflLmqyrwUV4inXyRmaHw17gHKK6rMxeSdrDo7h-tusc_AIq0asYu93oTXeeNr7TtfNvzrdAprazgzRZ7QrcS3wrgns5BliZM8KY-9T2GgZV1qUcDMAYt90x_ULYoxN9p04_NxZRFQ0qdKYR0R8dDiFVtxgnW7QaqyZZNrHlk_M-4_W4-9eFJGsnHzirrqPH2zK6H\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6799e3cd337808-23110890','','','2025-01-29 08:16:56','2025-01-29 08:16:56','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42117',0,'cd-form-entry','',0),(42118,0,'2025-01-29 08:34:19','2025-01-29 08:34:19','{\"firstname\":\"Brigitte\",\"lastname\":\"Mileson\",\"email\":\"brigittemileson@gmail.com\",\"contactnumber\":\"075 35264537\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6bf_ADJSOiND1RtwhJLJvRXpTmSW7r39pgLI94YdVi7w7rsaasHZx4Bdn_Qxf1LycsWOK-bIfxXUtL_EAs2QoRfquSUHZ_e4SvAhB9O7c4x4vWlCbxIY_6sniLlOG1fAZ5UZudFS8-TX_W8lHU5sYaXkI3tnPSCV_CV1MrG1UZlF2n5cE-LU2mBVWcBLOu7se-sirUlbO_kbpKbch1DKkZ_VpRSa1dsLPzxofKjybi_1g4eEBZw-xIxzB0--Kbmq_WRFjK84ivLJdQRDp1oX0EckdbGan0ZT1E55seHiAvP7BRCWVjfOhFiUlEieqtkCbcoYujdY56JXaNX9RBLtIN7LqSBXy-rYh_GArWRbWY8zgnt86Jbn_42qci1kUy8Z7qHFJPZxIg7oGv8IsbECUzuylBT28dtSSVIe9c-jtJE3BL2lQZHjfuF_mfl6ADu0Y651_lScwlRh0UlT-sUYRnhhMCmY0p4BdwmqM90ZZLs1H8cwsov-NawSdjilpCUVsIWf4r-LbOCWC6Vm0eJIwZWe6o12zhuX9wEsLuNOSwazcAqoy5ZK7j81Zq40TVO7UofKw6hQZOx7Df56aMuUuHALdgjRzNanXORDozQ9tXLPtQg2qn3u9F2r3A6iB64Z_iMZOs5iLEDOiu-J8x9_kxZZOHCjEDQlG5QLV3tGBTRIkQyrC89_lBysJmAe6O1q1Pmwjs3ik9kKhM1IaCcksbc0zzgT70y94JV2a-pivKhQWfh70D_jRTzB2a1GdCLAWpZ-0CDNC0pxl7pSiQQOj6qKThiTjx6hxcLep00ZdDRUpQ011NiwtYsEcWcIlM0WVSN8lyjhd1JOjuVYS-2Kurg3sXQ3qhRFfedCx4TSLMIr4xbXTArhckQ6yvvHyVxrAeRGGHwWhOf92pc7GxMCAS2W6s4_BQwcH2UlagdwaCTna911FVesWHCmRGvfW8qeYhCi_UVTGpjI-T6Xrkr9BYTPoKBNWNxep0mkBL-qwbzYHjy73cLz-WpIf_6UaE1VOGvg0Rdg2Re22wGosYWzOnauBev-Sj8dGZH-LQWD6V5L6K8gSmTFzUE_0al1piaER2u4wZsmYMoUTplO1ICaA3DSF_ph2-R9ehaUXge1xKInXBVs5DoIyEMaxwDV_DB2MldBzU3OFIxiKTL2sWWec0v8jeDNJSRyCMqB3H-ahb-AtwZ5qDMT_Y7k8_38avHioTgwI9aP0j4DyOlfts1YN67CHUUoV8AJpdTto4pBkmUiZ5VzvQRTpox7f8RCZwFqXKq9xPVNmXsrYhaQZGiKmkVqhcqw_w0TFFN_IXJn_NOIZ0ojVM0zoQekpKzRumzBfAqNOKrtuUHKaMAM-8sTpQ_0FUtD2ihiMGCuw2kUrGNZ7HUBLMWHJ51qJJztz-RfjoZvA5y6WvyVr9DnMxhgroKuEgYzaYvU3nnrFn21vKGl6rGe_qIcFdDlvW-e_VwdcZhrnyJKUxKtFKuMcUNRogcqPC_6Hg6vuTMmOa7fPbHzky82TF7DJhsspH4W58GbumpYh5Uzu8p7WzGrTIjmDiwhIBS6c4cClFIH2u0MnhdLwkL54_8g7gafQZ3fcd0_WgHVI982JmdcqZidVd4wwZr5a5B3wRIqOQBYhfdKw6MIRDvoM7LvlKeSAqMcfHPRXfEM8BwctwixrsVyDQU_QfEF4Ny-DjDM4GLsxm24JrHYt3ksfzNJN1k7Nt_0MyheVnfUNruChuQxFoQvXyIOXBQbQcjT4dZl5NmE2d1lDJTqCdH2kwRSuGY8xSeFZxDioTxAdnniteWxMHIUxfh0_sCjG39iOFLlouebXIzyrFLUjzorp2ptPQ0hSh61TpFTL9VaWT7IW2vOcIxI30p13pSjDLzeVeAt5K8SFVIix4TbrypzLmdJnHaUse0gRF_ix0dq1_yypYm0wWAf6i2jh5C3XGbgonE7lxGa1krmM9Pqdtw9qawzxbAx3dZBKnrlhqj56rY-XD6r6bbDkEvkAdSb7eiMBKw_OqfFqOcGXIszqWUTuPva3PJSGiB9uD8wvnPs8W4wHnvOk8XGgBIABsR0yzeg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6799e7f25a0c14-17665204','','','2025-01-29 08:34:19','2025-01-29 08:34:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42118',0,'cd-form-entry','',0),(42119,0,'2025-01-29 13:02:51','0000-00-00 00:00:00','{\"firstname\":\"Louisa\",\"lastname\":\"Ouadhi\",\"email\":\"louisa.ouadhi@me.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5Qj0qNBmRgh7uz6RxZfHS74XNn7V544rOVUsLdXz_6vqyPukKqoUL3eUqQaIVtTEYUZvbA50WfaFSP-vQUTn-m1lcv_JUEfv8UayfnfzMbOrdyBj5w3ZJg4pOUhUVSjMR0K7-clWesNjqOAKGGubhH8MDisur66HD1VQnCEeHP7zoAGSBMuUQxklBzDapytm3xSm4xbpTZC_yK_03_Udvdzmw4HDtPWg_KDmM8UuZZN6MQy_oi_NNsNGyNGt9KouRYY-coSa4MY3SfTMfV9TVQD2Eev7D1hlbqgElIUH80O_pcHRwPVmWY52I6KxgFLl9Ku9xfKjJyyofn0jHMFMFAlwrP3t8AMueLX8IdKF_wXr4Y1laDdiyGKO4bKZlMhpDt01zUkwAlNAo8zK_jfuqTCndWRnUtc-1J9wk0O7PWnw1pOnHnhUB6FLBC7FMkOuTYoU_zMhBgS_ovxOMCT7YTMZuk6dg_sF9DGWAgZqwB4EfMq1YWGBPCCdgVzoHKAF97e445McECQ5AlVGWyBG-pg0iR-kZf06nKN_txcWkvFguFRszvb8amjdzMwAr_Y79k3qMrkDhCi3URTy9icjbfMtcyX9HFmDYvuDjiaCNBHODqC7tQMPTGk6oe9rdklpEhJB7uteU4YTwBJC9yFOQsEnT2Fv6-tLSkaNBtkpmuYRrAWs6PHerVOrjGww-4IGU7ofR_TdRq_YPcOKg8UMvfAkC5xuJX6rE_sWskxsdTvfJq7nNt5janC6zKU3h8XHuqnG508wBvgJs2dBtNVlgisyeEHv8fozcah4NLfMJT1dsKKbA5wlyqsqx2-NH-bofi0Kr9GYxSSNsDXJwYsyI5X9lNyu_uYwUD7jDFyvuJN0bynCJmCR4RiA9RMW-QFhrH0oUEz8HXRzsD9nmzkDOtZ6cFWfI3NXYEutRns4vqDnD5Dc2XtgZBwJ26J3Rgu6cWelxYzzFaxbpyTXYWQAuhqzUH06zyFEHNRmWybe5FeWDssq_zUxOgI6TsuK7xlkaCtWzGYu96B3kEcNzavVEGqDD_kLJsgyMd3ij-gryLhurXj9G2QaOJXDmQLO-IQBbeOlx6c2PV_LrNqHzO6Cr1QpH8zi40CE3I0lM6NdISPif7qCNqrNyH2u1moy3gadGpNw_reVmBDXeenVvMSEHcDK6nRg1RCFZTRDG-ApAzBX1UoHl4XhMuJPJ7rGuGGb1RbkQQSflt3zEjQ3qRWU0VxheL_HU86N63_JHrt9cipWtXep0DTvJC5TfJDkXsx0oluXrhUDCoJOj-pLuJydLfODvE5aPr5RNbJmccbxTD2JleIgwl_fKv9I90Av_zxE3TTNei3WVlD-AWYhxwDw43Vd6oMDlED0ddADxOQAvsyhsJnpoemUX1b3n2-j-tU0v_KO6RDHsG2nBy_W6gr79dq6EpGuvfVo_AGfWeNPJRkHmW8zeP6sZ6CwAyU4wHupOThJJoKVQH_-2fnqyAuwYtkcLmGaa4cwlzot8hM8Nu9MxwBMFZyzR3gpkBiytPD6_MgF0OqBPVXbre1qyn3ULG7itOHtAFazpaamw_uFxmhW8jZky-tpteiQuarHpCGlxoOknixN1dYC72k-1CbzXvgMnnuElJjMa-uCwy17uzblFW2uJ4dWPkG732R0T89AXk964RaZ3Hqm6P-w_sly9E8FI6rosYhT5zTIsSKZbcQynBWDBEjGHwuABsr1qOpKlyg7BDl4h37tqKoY4gOT3Tgau1oPFKvvzQyZ6LKH9yWxOq-8N7snTqjbiCbDWk7cZ-C1KNaqL0j3fDDCe1PTlQ1PPhaxzI-08xE_0rCJlg0ikzr8EaQoEmHmrt5IPc-4qIJ0sTCluT-jUCCiB98wAHIuCdCG-Nf3SNDeYW_qwSZyEFLAkLi1_zpSDwVrA6j42Jyz4QyXv4Kr0EGDTm6mJbaA9MDqgHCzAuAd43nCagqzqXyfr4UHd84ZVxaKCvy_dGSXr3wvwjoguzmX2G9L5fuVxQXMkTqiGf6lc-sUq8a40BUr4ZtipISPWroTwH6KrFctuxfck00Ie4M9D6r4KctkOmyMlYP4nuMxS5jXk4--jy_zEQRJqCCY_8s5Z5OkayLbmrGy1WTA3ryMhqbVVn2AI50Ln916g2al3geXfnAQu_S9bLR1e6mZppIYA5BslnY1plA4S6GqSSHZ4NlYRAJf9xnJGA8ke41-t-8E5--sNtQafn6pXlWfaauUy7nuPY0eRqmCPgG-yFrkJXOzFHLBzohdAYJ27Fg0wmRzIxOAtJsUnDVctO9h_9mgikdI2NGRLvmjDrYXNxTZhe-hvffisbZg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-679a26fb5590b1-48602782','','','2025-01-29 13:02:51','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42119',0,'cd-form-entry','',0),(42120,0,'2025-01-29 13:54:44','2025-01-29 13:54:44','{\"firstname\":\"Theo\",\"lastname\":\"Calvert\",\"email\":\"theo.calvert@virginactive.co.uk\",\"contactnumber\":\"020 8164 6510\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA74EmQ_xxoTr7iXRre67GL0wAJjQgO2nUF3l67dGBBWqNBWCDi6pi2NL7-a-y5-l0aWDTksfXMTaIHiq0X7jxZGcPm2-EOfPKTDugHdwtbsd4T7EHWz2sxe1Fjhf5dBF9lpMpawSMbu3j5WpjgydIgbFa4G-ZU1LmXE9IhQt8ezQcP_I0KI5l2OEn2oCCLHtutDW4vHu-yHrH4djYCr3lGht4_6d9ll4yLMG543Ro8jrNP8XYtMmE006rSmQfhlmDhoV4yUQ8j2QZsO7hMAJrUDASUvDYbd_3Pe2KhpKZaSUxDVZMq_UFP7V0Zy-aNR1Cf6VO8Ga150mLae5o0QIKt-6o-QXgFA79JyiI1MXRKnLfogps9TNyWm2Mevr66Ft5IlZ49SXwphVMY9Hzb2D0DHfVr0fRtIWKaO6MAXWLsLU555buwKN3KOhwMpe_lVjSjO9SAwl3jdIekvRde012x1yj5ThHb_DCfuCjJz4kB4EwOi0EwlwjJG3JXdJsoEYgHnhwUQe5ohwvYw1t-yyTI-Nc6T4lvXjxZTMR8Gccn4S3ZEWDMJRWhgtphAqwEpqNFIJUrKcE3umDRzhVg4xvi_t31g_CyKvqYZ5WFFgG1yaVAKkZxh2_vjMvkWilYLCxJZl-HLDgrr23yRsItmJp6OW__T1bQoWWGWsdariRw4PnMi0GdDB7JJ9nxXBdNKTLdgod8n3ijj4ifXtAlMObya_9mXPDLOSjQQ7WjewHAXzlmW2aKEfbPFxrFd0CvgyKwlKKtNKvRtZDSo5Bai7Iv9nGOrlLAdzRKHEB-DTE_KLf1F3AGU3oOpxJFT7HRfaMsVD-5HPTff5YO8ngDjbQY_WhEx-fRJBfBIYTxqhq4wrOIa0xgxQJ30rs2YwuMzWwayPDnsk-l6ByMTE7x0kwaUz8liiZhJ8ZbEzyHMaJIkObfk_nQ4MKtpJ8xG9j8HiAAcACJoftbKNiRH9eidkgMlMEFBpDEayu6pqIrMXPIiu1FRRzpBjfldrlCWBv3zNu-DXagEmKWsuYrX4T205irLi7UPyaUKv7qdVI71sKakK1WUwc38d8Rnu5TlTLtf9NUrv9FBzZLbkIyFXVIgDNSV-OT982aBPTiA1ogaEVrNVMtQ8MRfh9difw8X6jgoXzLFS75klNfLhdjsKN_a8GxH2HTn4E0q8sp9TS7iD5v0r6Qf5Z-YIeG_Paa3vPt3T06I_A17MkNSwn8D1JigA7oK-HkBe2sJ1d4wJdPmem-5COTxpzjTQFut4wnbfKQ6cGaTH3o8caMfA-kaxA53VmVc26dpjOw27tlp_rEMCRPkawyxaucX9HCcS3ntRn5wrsBNWS6onNVucs3GbvdlWLyi6GTzZZNI_RhuNZ-CJTdmPiZpL8nFj4tpiXVJV3z7P4pUponwCzcRxjz7bAFCLMM4i3PSgkOoIF4iCCg-99MNnzqJIrpOfNTF7HmWXhtBWNL8YfrzmJd7GnaZ9liYB-jt0kCuqkoHp4csN8y1gnioNNxzY3R4hYvjNsWSORMhFKM6-NhTCblpMW9-P9O5gw3BRORZlzXVLhAvcHtncLe8x4c24DJ13VhnHFAIoFdK-5DGmAgudsXzzxc6V4tTpzD7HypTwpw9joEa4Vvb-fAKpAKRjnl0cd4PQm9_TaHP8pLLlWjg0yWtruVgfnEtZadUXiXFN-sTlz41KN3yi5uNQ4narDhm8eW3-WJIHjSX081akGCdXSZSKaHP6194ieiWMltpWCahpkOer0yVb-wY6a2oSVxvDgvrIIbimFcyYuwZa-jcvD-8BRAhUD1UOP2u4S6v5Gx259ojL0Ee_PLULycWGZn3MbOnaHAeXTAO4AqTeoTE_34kpWORYwtQa7C8Y7PsosUFUSDFahO2whT9GnT_3EZmLif0H88MU4ksJtl-ejTacTRPoItBPjdRCGMSVjUGt2Me3fxm1fLgzM-5RN-sIjhqdUnFMyE5IYLB5fdMHO9Y9a0rqo_MecSzuLFMT1Wisw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679a32f250e238-91341635','','','2025-01-29 13:54:44','2025-01-29 13:54:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42120',0,'cd-form-entry','',0),(42122,0,'2025-01-29 18:45:38','0000-00-00 00:00:00','{\"firstname\":\"Pippa\",\"lastname\":\"Pilkington\",\"email\":\"bonewisepilates@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7GiD4tB4rDpjEO0BrCG_JJP65o6Uh427asgJQ_YT06uTrHd_ZdGTh3mj0tbuuBzkIlqcku_xPPKAcr246IQ2Me5-B8W5DKe2_zuDCedYqB-jN20N3g4QM0Ut0L8VqISrbHL37kpl6p5QcGN4wEWJkjUvPTnJYtdTRP1MZHsL9Q-qu9Di57leKl3yxCKvOqFTU5bfbPCdV9WLi5GAhxXITW0mxwPrmW8u3NLlIFgZrfKvcH7XGAm2uHudPsofhjNqdKUgGcU3fMwuFiEjjJYkSYujAFr1KaAtvRZLYs0y4qJyRDInSLMSgMlqY-wD1AZhcRmSrU8Y4Jv9IqxH9TwZDJWY0jsFYMBaI_f7WWRn0tbmzOtZA1W366zDpoFgijd40pmp62TUauy-X6kaMCA0aG6bSGg7QnnjVhGwmZRzVFRp-tgf1vP95Klow4l7NisKvJpoZuTxReQ3RUS-aoem3Iuvg3JFcqxxS5_u4dkcr4yBy5yntutB4yKwlNZQIWwfM0NvuL-AANvt8TE2qWNpE711DTGfY1Ne-eKF9BJlZsgPWqvLEvtTDzDoB5czg42O9EbmZ4cW_FRJVMFPx0ZM2AFtQFkA6sVAks2bZCC-7rnp4-CczWYDwk1zlX53TlALoT-OHON53y6LC5cc4YoyClLyP4ToUfxpfx1sVKDFTvon6HWozCQ_vCCZrdN5q2skqG2pVSmfJGK8GQzoDzBEItOs3Qbd-pGgGWwPDRKEO5INpdFGpI9alfudj6BJZYCaErT1KOrfw9n63by3ZXPeTguIrQVXevMQctP5bQnYAWwAKD7p2voqBDTKaOMvVhBnjp4Znt7nAkvQJ2KOyJxy0A0Q5jqg716txOTptDlY2KAtVc10rtH_fPJA6mtsDyrTQUkcv2-JuN0KfqMskKamllS0NQ39gdYPHYqr_f8v6IJglWWvxR4e82IOmG2qs0Eq5ZDPI42MS-xt1p2ZHYQAauV7e3QOlUU4-PGugXEJfW6V5yJmOj2vQKy9M3T8zFpwRtNho-xt7jecplhzYxfwYWLsAq05txGOVbwl32ddTqnD5yMGrK3Hi8fNkEFiLCY_b1Rbg0aNNeNJDQkYjbPBptEdviddA9sAAbLpbVoy6z-RZdx9y2jBx_oUFmjm9DNhVsUwDtpMegf5FWAO8S0F2gIGpm9Z0wTBwSCKIVw8NvDVb2wdEojNlCjUSRVmAgIi_B8Lt9JJO1oPWDFFAO94qx3ajfKbLzUB9tL73Z6wDSif5vbdWkV8q3zVllf7bKgpPjC-9JMZsXHhpO92A_CwJZ-JrZWv4SuUIxFrwBdWpsiZPV-zhcwxUAM6bO1P_vwD7xLFWk-AtnOM0qTcVlHR64Mse8kvSjEBJocmCNhfIPq_xAYOo6t7uXlBYPNKxrLJXsBMQD-G1nMjgVCvWAHGXUQFEtlV8hOMeIBVfTPWmAKNMroAopfU_TGrVbCZ6lnNy1HQycgGIWP2CY1Xmym6uPKwxqyY8rlA9gZyXh69dWd0-GbYcRgoaQ80aeFIBA_wDjGLTZIMGEWvtN2VBL-XUoqL4SDe8SKxjTqk30K91NOQo5l6aWWYrFpmvxzBLw9vC4zIbtDSH1qXKhpxPwCT-hTdj6cgYIdNrq-BubQiNKF1N2_AW6hSD73YdXAjljlqKBeTNpIfjbq2dhDPGY6rUtjLAq2otDuN8JLqZE2U3iTWDZ5ItVVphzuJioateJy0PjhWXQIIO_aXJ5Bk_lQDQwIJbqn6-JEc3wr4KiL1BoLztqZD3sg8OEcS4xop_DEaAeZGB676rNZIL4ufyS2BwG7Z5DklVykjHBSUb8A68JHw4u6SqQK4YKq6dsj8EiLudXRK0hjFWdLK43neWv8rhtEEGWiD0XwlitzELoQDsXTVfmvQKbzN9ljk0uYLtU8PwdqqAiSHJ_LaKlyTqJEW4U9LBlBew2H2_9BWQN9samMWBTHgDXPGHnixbed04PJbIyc0Xbt7ccdRJZpKxUURxXzuEAxCqHap186_GPGWBkL_i5yL3bIP3BOruhF-Zgy-6xY3HAvO27exkdHI64BjniiM9OeYx0JBkUC5czVPft1Y8YgmV6c_a_0vFY_X01zIKDN7GukZ1pqFsrnVKjqmn52t_PM64R0LFMYUQZ8E89UAH5Wugps55SWoyPaCJ6Z7z9pn_e8hm8zZFdpmqtak8ChgoP1y7dYL4jKMfpEHIoB24ylN6Pvf-jw_EJ_-7AUMdnD39TQp6FmrbxvWc81NvrBJnWe-u28KLWmO6HoTFLz5qGubw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-679a77526c8751-25527467','','','2025-01-29 18:45:38','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42122',0,'cd-form-entry','',0),(42123,0,'2025-01-29 18:47:37','2025-01-29 18:47:37','{\"firstname\":\"Ruben\",\"lastname\":\"Schalleij\",\"email\":\"rubenschalleij9@gmail.com\",\"contactnumber\":\"0657160612\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4zcaydxA6HIdrVkJejuBbYIQHCjfNTCS_umoyKxgkRhoOOsY1RlftmpXpkL3kb4LzSBs1agtXEtF3KNXOiXsJY7Ep-M-mU1k5Rfcer8_QGfKKb-mNvpPjnogZEdjPu7ZdcHChm_pJYZbdcKdjoaS6hELl_Hkj1E_f-P22HdnNFu3ZdRtrA2ciHWDyDJ9_iR7JPjfLeC86TX8c70lSCpRuRUOelAQ2QBaG3SPNibHEjLNwlHMb2WSoYavRSWPqVy_D7jU0HL2vSiKVdEGbrmGC1haN1Wq84cGL68RKdQib7Ll0jMEH3nmLd1Wnj-aHlgh4uTlm6fqp6s01UnDiuBGA0CwaCP3B0oXBgeBHfOVsib2ukd5k8JgcelWoMnsy9xTw2B_zMqwMGkrEPQjci3ujo5KveJlvb1lkIGelMXbvHBm4BvLVEM73NL1oTFBLbwcarWOvJjgR1vZN2rBeK6xqAqWSCvxzUQvUvfcNXh1KYETWmHhJdxlAPCbbXNXwYs6h2mSytOgVIhkRAFPH7KvL75k-yMDGiXs0dLmswd_4LRy0kzN8ohzErBZEPXW9NDDvwz0KshNFTcyDPUgyYqJbCPP3yizVDQz949AnhIiaLTIGCa1OW0CHfUvg4MPmO8FwDpY0Ptbewx33wTaE_jD28eBR5W_P5Tc_KhX1bq1RK_iKODHYdyEiuxl7Sz4_ZfohF6m_zjewE3IHtM9djX-Hd9hTXUDXHXlOjJBQ0ZTUxSWzJeAlOW09xrDKW4lAfjHRDCfDv1IWBW2H1qHL2q4oHC2L2_Oa6ouJEYT_Zx_Hg1DaIoPUwbLmy4bnTlVSDtkNnbMWbBSGaOxmilIFtxUVqdhCvH-UTTCucPUi7jGaLUJBmgIf4n4vBNi3pYOVRlKly3gIRkOkEewzVN74L75clLo2va4WPCqEVq_dgTQJa8tqJr5wKb-cpDv-9uE1rRCA5l7YKb_wsY5WRrTfDrFjtx_zZ0EY9-2i3wy80ems0RdZjgzMbN4QAM5WLmDUQEAT5bO3yQ3hQ7rUZF1mgHBn7YRbqPNNLD6MRITjhC-bILsO6ZraYiathlK8nKDCaxUjkEavPMxniGT0ulWjo0wf4zk4kBaTDZuFvtYSrBkNKJF4SmaN0ARPt6YIKJqUIkVJTUlaPvHMJwOIIe9kkZZRuJHSXVN-zVN29ha660V7i3kHB2nWjeNcHm37Un78XtumzNjq4cpvFWbV4Sar0Pdno7YJRtD5gwGlts_urX_sxo3ib-6dGm8qImELz20Fg_GwD4_EowUvcLZW9uyVU-wodLdwANGWpaL54Apeq9EqGRb4TEhAsV0rrx2dwcRfz96ECoevptjYw-db63LJ7fhB4dTigYFEPnkz_e2o7UiGoXFKx9ZJkao2k4TmCk_Su9OC23Wd3oFLIZWqu3lnjN_fPkb-IFr0pc8bqDgxSOTh-WUW8sk6QBE5z6MRF1YHlboNk3APvzZTIlYFI3vmt9KiDsJ2og2fpjntuFt_2NY5E6N0OxYeDi6nNPdpzNJWoe8KwHk5Jd6TwrIsyhgqLiTWeTi-gtuEBk-BP2HuM2PhszMHFeOC1EcgLAL8caztBs7Q5HwNEbCVL751X_PmnZCV5wp3I_FWkwis0GmIIbcu2jG4ov_G6Nm2lUve7mnV6IGxtsIAoKzWWlv9U1f1IAG1FucBwzvibe7ZyE7rHIbRYs63QqhLLF6rcEinaMBuCbNmQEZAutHLuHCd48JhlF6Mvd-wUFcCYURITKEXgkJEEoOZlpi3vS_SUsSCbMZPH7K9ErzYmGeeOfVfjWXdhyLjFeM693rlIIMWTLgvVEA7eaK1YFu3GNk84GG60of4Mhr2pDL5VBLLsRUaFTe_HeyPxcn4QA_3wUvRke7dMuneCa89esWwbrQUp8_a5Xarv-dKKUFBXkSTg1yw1WJV2yqzPDpkwdPip9-sG0Y78NV14pDTUj_-qwJ4cUXclIeONRbfxut2OGNTNZu8W98KNLYRNOiu0tNvOm_iAUgGN1cx3MkaAXv_aOAhdfqj28KqAmhcRR0yzuWqbdq4DKNPpCB_fdS-qfw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"currentwork\":\"6\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679a77b33dfbd5-76757819','','','2025-01-29 18:47:37','2025-01-29 18:47:37','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42123',0,'cd-form-entry','',0),(42124,0,'2025-01-30 06:39:16','0000-00-00 00:00:00','{\"firstname\":\"Camelia\",\"lastname\":\"Infantino\",\"email\":\"camiinfantino@yahoo.ro\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA43XWXIsCnvoNSQZvIg_sWpRE4lMXL0_OV9iLrPBb4gUOPOf45_6U3cLKkS_7IIkvPW0K7F6axFn0PDkameRYUJvAFTYCOs2p5Ukr59xE5dv0epQWonzgoZdLztdycK1ZLDiisLpNzxX-7xIFIAW_O-VsoiweInzacYFrqVmqD871o3uK7aXRO068buWces5OSZKyAbVDQrPdqJo9rPaMRG6H2ZdHanH-qIUvGEHm-JASma_L13hCNBFr2ILg6kyZJDM3aF8wA-FoeJ1m-lLBSdIeO6WEs8qQoDJTSGOYEydeDEWY5D--UOrSktiH4P0dUHYVLnp1Gv83G94Dj8Wd6VwS5KYBMTN-nSj7qzAP-MYBzop14Vwd-qEEUYEwmXcaCyXQ2KYOWwJcxiub0lH4azmcQnH7J5iUr4rlC9KSNSWi_9WAVLlZX5RLd789DXH8q7MceS1M6sSWHp2pleR4BcmRnxYbx5X6Tpy0UWiA0MLy9iVMgPq4U127ebJ8o99rNd-RvgeMttD3inf5o0SA1mJ9VexxhlaABGdGhvWMmVLvDonpHObIXbAZ9uPY_nbgBAZLRAzM9G_rmYdLz4iH5AMEvB2OvrHcKHmgDrHU-TnMH0IIA-0t3YDxMQD4ZrASRztXm9aRW3wCvOtuTOeO52u650-gg0xMOOpjlDzfcqZjSb1Bb5qR4X5atm1NDJMrR2SzwUwMc_BYL5l35qCEVLXRM1wMoLg2tiRZREE__XLO3vXF7NfkOCD2CzPa-F-A6KrPJR0I0leoNl1-_XnbMqppTkCjythEac412yaty2T_swjka4g2cfOmiF5kJ9szryWzpCcSw8Lh-CIRTgfFjsXwmpJu9ybf1rwjgMb_j00hEMg_NssWY2q5TABA_vbribORu2PaHw4uC0bmps1qBIX_Yrw9nar9BFcM1P9TajSJj4uECVLG0Qa6q1An1wRcT8sPx6Zqg2okE5AAjav8qQ4dwBhwqToETXiJvi0hhuwWWdFKVEJo-JPSH8DURTJJDQedUIylXvdE0DQS0xudTlTC8YnZ--4nZTCC0ljHnJpAL48u2wSoRFf4HkXUnQ-Wfl88_mqS1KYHhEwJ5Ydfc3RdRGf2ATtzFAQ8CWbrHhj1f12TkoQy9-9XaDrn_g_r9JgScpKthppU211uEqcYeDRuW4GkPeXqjYhfXxtrwYRh4jumMoLRjv2nOzIkNr4xOQrBZE4hcPwi3g9pOyzViCDniQjJ5D7V8OyQhIfL5mQhU9OAiK-GWS9bV8cW1pIaIZC0nktsO7C2izDYF3exRdX-xQ4AoE7x4Vm5vitQ9ks8TiLUPNeYusX0T6rDyCy6eZ_gXub76FRVMpYSK2kgq7gLuAw1VhWvswsP9XSFBufW8yRrUw2Tf3HJVeid-8wZO9TzV3WT8_X4wpJjD6NeIBKB74v-v01JMLxHQ82E56PzSG5fd5d8BKbawNmbCE8KUxponmweqqfngWlLq2pPRI44BY69om2bRJExlc9-q0H7QqCKjl59BB6Q8yiGwRivoZWjsBGeXeMLWA5QJ1y1CQH6jE975EkRRjtoZGRkk-n2wEQsp9VoLMGdByzlxUoiC1cKkNFxhMixYl0F-ZN6xORTZqKjk5pG-qopA8RIYY8TTzMDTlAN7GmYzaW5-xPepaZd7dehHU89UI8kN8Hc2vyfUnjIYlcArHrOyPAIcNJo5R0tEWwZOGPJ-hHTWUJjMB7dp7HsB251cR6FrEYnMXiy91tMy2YsbPAqhk5vBMsZfjYxG92Xc8-VjOpRPNtMAAh8sdJjnbB2fhectduMoIHO8dRD0Fa-IEuvGkyTGLUW64C_TeCtuxvicQNRGhpq15qLksJ4UZ8O06zkiWoPrjzqauDKVljD8GjFdZ1rpLxcNcyZg0myX-UagV6_YXXZmLLn6mAUFv4GV2jVVrld5EK2xDfHTzE7Vg2veeqZqqxo0IjgXIJry05XIs2WA9zfORXzkM_tPHAtqzTTc8hwwCGhadfO7LrO58VWZocMqAuUBHHr8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-679b1e7b060ef8-13767071','','','2025-01-30 06:39:16','2025-01-30 06:39:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42124',0,'cd-form-entry','',0),(42125,0,'2025-01-30 12:00:30','2025-01-30 12:00:30','{\"firstname\":\"Andrea\",\"lastname\":\"Bradley\",\"email\":\"andreakbradley@gmail.com\",\"contactnumber\":\"07979960378\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6svwoBg_XYCCyZlK6SXaYIea3hpQDhOUK4eU3Nmb5DMEA8AT18X3xgmlx5xB1Ow_z_wB5VTroC9o4saeTDaYxxG5affBvLhCPiREDREM-z51_VpwP6D3j_rp3ShHx7HC0uUQjYS0iPuO4na0OK6E9HwSj1AxT4zZ9uA8OWpDEJxLCAPrk8ca9zdrU2XVt8_L7VelSk-b6S0pUmWkmCLoUsbT-_CyG8oRtnQzH8-3DDSonPLxWvXNPthFt9SCK-WizJYTnrTZIAM0-kXYakQzzP2jpxjmIZ2gR-ZXotOMslf8xm_ldcQIWCVOde5wz0KOZcvFVOCTXj0nRzAR3bsb8g3UFVUY1VLeqQBu7C8vH-96T-WskIhn64s8xF3oDBcabbLwFrvXdtQzBEJ2PNnVk4NK4OvRei6rdZezwGVsgc_e8jJh_mTfI_mf1KLOLr1PGUNeqg1UMFFW7J0JXAHwjAcfdEVN_-1VD_lcIpNbAvCcRTJaQee0gXzQa15ZHh9QcqJGi93VLS_qPptCs9QnIacacA7Bkuc7QIEowDx5YNnmfdAGQDUhmeOx4leKZZ0hJGTdQrCvsJuBgSal1oqTN1KXGL5uzaBcAFhiJLb25sICpK1BIa77UghZdBhdNIbKKSNwn4u-4s9DYt2vG1R9-8bwqqpqIt9F_MhRXqL0QBcGNb1RBIl0t7no9Nh5XPQSdQ39wcEoN3uRXhlOfOBOzIxC_pkSardAClz-1t5o358YfEML3Q8KKFOAzuTmi4o5B6uMySSshFCJ4etPTYQnHmF9yZ8xGsJstQUB6U8PID9mxexVqZ9zt6wGCSRGv8iJHVaYlSOAW5hGzqvCLZ1bFv4Ay8e_9bdZVfk_onzCG35MEW3CLSznoW3QodYhXS7GszSF6kuCFV14KmTC15svK5LhM6vSgeeAjfJ5WqWZfP2m0b1IoTjrl5-bJqY0asxQk0GdabAyKUMBzUMl0qLi3cTCy6ZiGv5ZzKWSi3zwhxNMIyxAw0MS1sOlWSzUTC9FdTSTdYeyiU5TLQk6w7QZYlqFQmlck6GcTUPYgcaDG8vEXo5FbASKuOrGuPYx5MR5UG6erWXhByN4wIyCpXRzO5FVgz7KKbLCBOz2ZZntyMOf_xxZTLOM5cG-7ESBXLrtH-2C6-OW0OtYT8cZxON8CWW3GyLbQjx7l2b1sq4ZPnEaEj-2g0YetdGt-l9QJN6xtQSzmTPIyoygIky5aXAodG9p2E9S4XG6nHjLuuuOR-QmVQVhvuIk1qvDuHqSrApYM4ll6cPUu0dGoxJ7-QxwLS1zh--ZXHwWVOzBv5Nqj3hjEdFpCds2Bbfa4bXQZAcixmdajAplTYGej_1oGc7yLaQtKQxQfDxk_HU1wjvPddmDoxpGVFAklVgLxh9vIu8X9FsS_4ax4mo8Aff_rxIbgh3wl7Y46j2pO5N0DxBCexLZvELJB0WqpudTRxaVTr4SyDOqLKoieZW3LpEcq7MOa1ySIO2SbS3ExSHm2_YaAj2reySS8ZWnjkAiact1Q6gkPRYtCv6PD0YK6mQQf0ZxpwEc4QYjPyKNQp1MKP4sy_IgMWxMjA17lKflcpwVeXtxbwDbXJo3SP0VH3ZbN7SKTxMwcxaWcLrOqt874XvFYfAs3hwUjAoc32_fAfqYG6RaJtoTPONjALcGLAlBM_9VffE4MnRAvsLbQqknvat9NQavF081Yvv7qlxlcdZvyt8cPR_kDrM0xFq_t_2QKZe9EkZDGkAMsvq0LxcjHqtps2_RKmbo50YNZktsPMLhZb94y79E5_DX7Ff1P1_CejoS3zyBzl9lKoyb1TmxOjmCINBbCQEF2TGZOqSVuBi3PcRTVxK5-i7jtFWG8-2MHw8XK50YuM_vNYbhSDFMrRpW9kSncEJ95xfmPNXBpQFuKgi3fljxdwjs2AK50A3ajy_OXixNLE-4VzFn_yDKPSZ_ZMv5qtGlydmZRB9DXo0wBiHGdrjXq6y0gB1u23tnXzTD9kJMMORcf6SL0YBR48-lDijQJ9EmAA9S9HJAPA0IRd1n8YeWBySRxSH-AKRRWW52TxrIcSA_aO0ozCDoKHBbFkXWaeryd0hRXEeNHT_m6W-8idJHalGTKlnMBNh5jxmE8-mq8faQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679b69c49552e9-15991876','','','2025-01-30 12:00:30','2025-01-30 12:00:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42125',0,'cd-form-entry','',0),(42126,0,'2025-01-30 12:09:54','2025-01-30 12:09:54','{\"firstname\":\"SHAWN\",\"lastname\":\"CLARK\",\"email\":\"shawnclark@hotmail.co.uk\",\"contactnumber\":\"07510007150\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA57WHd-pqDeS_Pi-mhkwkU7YT-GtG4iNw9SGh186AyOAvJPN9po0OVF6xNWnDz_q_lQAdi8tft5LiU1r2en9-OsNuZPvklwjoaW1pLq-kS1Q5w1ry7FKl9RhOdmb01-7SacuNuB0Y4gScKAHmMypF5liejX1SqkSrXUvyzgZIr7DICop-1DGOByKbzlv1YOXVhsI3yLcYgtltj5Jg-JhN0xGucdiGNFsOB1q-FqhsBLtiP0iSiTO2KbuWHQFinYXB1L9knlVzifx5CRu-4oWfjKpSmZpX3c4R5Yjnf68-A19JwtmikyDU7HFSV0yQPboDd_15fzzhoJcBo5iD-BqG2Z5IgP6_Fpaps94OrgUMMTdz0f-HEMChFInniMYfalZ7kNXHeJ4jwp4lqkXp41w1xTbcq_TBw4hIypzEP1wrVdEeYUzgBiNOvE3JuOFtAPFXavaSCD5fd0Lcbl0xV-b8niTtLtbUKvgFcAPmIzV6Q4D9mulvz5wJoUMiZfZKe8se0KuSI1r2fehYIDmDWqESy0JIRXeCJEeaDAeESkXMl7FPVOizHR4fUoC6DGjt93EZC0_ey_-w7MZjFWQFyboFjDaup3YzseB9MXRmh-Zj51OjzUtWn_HpYpztskWqHRvc4bK1q9r94LfINLq8bpcBV_QTPgvzZSNw8Ysc9Mc8C-UzZIq_287HYO2av2fOsCYnhketc5j5soyv2Ky68eFrCZeJirEDtMwr5Yfz65_2uNKOgmV9AYvg-FS6O-5x2B7hnCVO_-8RN7rN67cXT9_UtZwTzGaWkBtTpCOuiboRNzTxLKxNakZ5ui7ZOIV47MsZG9_zDCz_UQx9RZVejGNWMpggxohrRVusAkrx5vPLcU69nyzr6jKno60XQoq1_uSTJF0_-F9n0ueKeb7WrVXg9RjJUm-eIhST3ZQkFErhgmHoYWUNNCBYN-w_1ehwvMdvK_7hKBdGmikyMApxXRIkQbENGHQtWa18TnTadsZdCiQSnK8EC98cnl-j6TNmJ0kbkuyJGFRRy-3sHxUI3dLoQk2G7KizCXDu6NcduqpMgD_U_V-hEBs6HfFpQ2bW8JdZB71CGMk2OJzvNSAjYmL7lH-paJYweOxHWYbw0GSuT1UFCiDgNlMVkRXolCj0z-zqLA-s4nYlm-2CtrKh7DRXT4UF3LVBD7A-tPDTpdeFiADNYChyosxSD8ljSaampM7bexlu2wJ7cvjY2imw6fM7hmW4K75Y0Unt4N-dguTwwq2cgyFUDa3KkE_JP6Kjkh_aT7LHcIbc2hG4EGNTBWM8cdPpLsvbYe0Iz_ixLPZDW9nxJTgOeceQmkQhUskb-lRfsMICheYSoTuce_Xc3JQcRVP6RwOEqy62PG2jmyVUKuIjlhXlM2P1CXu1T_M3sSqwOiuJoBfpetpNhtkalTTDzcmKcPX7PJgIzE6eGIfLwCNo67ixACixBACahx1Lzh_oz1BH3c-0ciRvSRwbYasZ8Bu7ebC2KG7wzsLW453kFc5pph1W0b0gbVpQJxApu7Hz3dE26f-JwiH9E2wtYsA1A7n2P7TE9_bYAmjqL4GUqhMms5_t64eit9Pkk5Fv9bXpPhTa4jW83t6yBydKTGhgnKN2z1JWjeEAOWBcAiWgWoKeZlWk_1rzFN-qr56WGXPq_FG8RBL9igzPh2vxEmvlKKT5mbuhxKaTpgyUcHvMLwKY8YZWgsvwPsN8kzSZInCKQ7LrHMseNmMI_H8-K9LkXXBCYWGA0ShS8Yqbx9M1EIxTj-yuFiiy6lwe4bTmw4jiY11v01GUXPROT4j9JSrr5wnYM2WG5vcWD3o7hntnXg4JOP_vDWoQA1MRhv23wCj72Fgf4ZuWkm6kvWfnH8Rz8xWVaOsGq2vumg6NYhUIb02Kthb9R3ZDEPxebnq8cjbj3OAjU4WvwWjEUGAG92obukl2LmPBr6fqghBLJ9ofzvmH3ecL4HmMh-uL57IHblzDK776NoCc4LJTdH581MIOY7zP5MVH1Lx5p43AoSS0ft96pncQQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679b6c08ec7f33-47925935','','','2025-01-30 12:09:54','2025-01-30 12:09:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42126',0,'cd-form-entry','',0),(42127,0,'2025-01-30 16:24:40','2025-01-30 16:24:40','{\"firstname\":\"Luke\",\"lastname\":\"Mussett\",\"email\":\"lukemussett@hotmail.co.uk\",\"contactnumber\":\"07538644589\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/the-evolution-of-functional-training/\",\"recaptcha_token\":\"03AFcWeA4rhyqeUiTYZ46WH_btAU5WRFWzf89EAgyalPhkkkjEFm2L_wYKOhSHkpxSqa-_ILtjEUtDp5MkRhwQoMMuLEAfpeo381MBRNFd5aBTYLCbEQZSIS1NtT0UbF2j4bMuBVnVUWwOyUbTw0pRw_M6kgecbgKU-kOPV0cWAxyvqOh6OSBoMk_-awrFGxWSVPhYStKaKQHrb4oQOh0idVMpSQUHAdcwLAMBrKx_oKzUTR2C_tNyhSe8rJEAUGHOgf_cUHmbI6AaB9yxa-BF3xc12hsnAk_iAoIhtb3g_YbuHwf4Nzr2hjybs5aDnypPJc1HndbZ6djpjtLaNlBl70Ls5t4LGwytN-RwTaFW3cEwJMS1RPClyVMoMhTVxegr6wx7SM6AbYaG_r0MrQxPdJC33HayTkFOLiUcLZdY-cGZFE325B6TNe0JYmNDCFE99xrtmRz3P80fDdufJz0edYegGuzEvvoZughn3t30Vh71D6qk_CqjHxhRaL9MLG1uFDP8gSiOt2YRdZyIw41PG08i5C4mKaUyByNpsYddol0EphPpEDPgGbJ36-3MUU-PqrRzufeOzKXvycFM_OpWVlpLbfSodCTJWh8RPadq1TNtDPQZ_-9cd9cOG5sSZqbl2Yu-YCYN0h0MjQmg9dVnghiAN1TzLZRGAs3TAEaH5-6j1k8Xgf7oGQAIxXs9HjNlnIOSRI09ROoZL-Rm3BsS-voplBkOgPrtRt8d05DzhiRlHP2OGisnQ4RMdp4KpDB3ROadVJSSjseIKMI7cS5JkLFYDWEx_8a6rzpNvbVGTL_HKOCPla-zWkL7Y_t8FEcmdMMlsskZHSAapHPuWE-QYGLJdBbcueYl599a0T5O4k0zBzJ9B5qrcHFg3bC-U-AwhKR7FrU_pCTpxVlmJktyZDBVK_x565CCgHTAxk7P7qFqXebZAVZZjs3XV12ss6xvu4dXq87_VGRUIS5t_mY9zSknDh5SJB6Wne8Mmq0xn5YeYOA5xBdjuYujO6Xl9p49Q8LfppuoeQa8Ac6Ddt-ME-IBG3nnHzlyfd72EghLRs-FNWNFjhZf5JmwSGT9VxCkOMCbQIwLbCOc9XmfQjEEiixDUcD6w2I95YoEd5UJIAdgLTrqiuMccB5sPqFZJ-o-8bYpxKKtVa_E59TZnU9VMWZ1VayKFE6eUlP6uv22QzLFNaiao4uEqKcEGRsysAgGRXHOsjnVqyz3zM6zMdhXq9mkMbBikATf2nGErgKgVFPqW8qHN-KaIuwF9G3PLDrwZGE54WwfkVFIc2HvFg07q8WU85sKKipzLEnexyDlmvpuske2PxcJXHo6ZrXue-N3c2dXYan5u_4RD3BplAWHBxC2--USjeW2b56WF9pHIn-a7JqJViQo56JhSXpYndG20pIEE9jvkNnuP7E88avMztFenn8ig4luy04l1rIgxX9b6Gcifg7WZ-wABVAp3wBona3QOie8mZE0DsExXKIcWYsdBPMTSDOIG7lLaJIRw0cvCVwMktSlelyqx6Y_ftBaBQnG-xmvGaNyYhz03I-MEm5zjXRKLl5kQVwikXYLs21HqU33tXxBVkFE-SV53bQPxY_VaJizHZlfDHuhtO52Q2v4jr9YN_wUwwQkhe38Yh1gqejAOUelrYF225rjXu_f6QBmc5jHxXfELsG6Jb3-Rc9jzq7xI1yjs4pDFf4y45x0GRFlsySPG6gI2NjTgznWaUOzjSiHl04VpfHGF-rejN14-Ma1kE_OvKugW1TqZrsdPskHBmzBOyQl2NQHIZMV2Ow9yJIaOKXlqxpBIPJUvlV3k-LUdTPN796MkNc25MIq-hkEbtrWRiM7xnhmXh0n7pVpT5W2irT6aQmG9jMf2O6aNlR6z23Mve1c_LmTqVarY8Zhrw6NQWCxBmxjVa2bu_VzbkwumpdLLUE8Jr5mPUFU_TehYeRSEu_iB4Ky0LjCKJej_LXhTVgKQmQ1vsYjtTuWWjMBQectj7oktZm3Bp4poqaNKMeLh40De6XnW28k7Tf0ZHUZ0IE81q-xvkLl1zC44bH1jZluNqQCh85TTXZFnuUWOK3MOPLzRI7oUF2wZA4hJGcxCvQmVE6AZx12Q6rbzD9eY_Un\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679ba7b52c35b1-18508557','','','2025-01-30 16:24:40','2025-01-30 16:24:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42127',0,'cd-form-entry','',0),(42128,0,'2025-01-30 16:25:46','2025-01-30 16:25:46','{\"email\":\"lukemussett@hotmail.co.uk\",\"interestedbecause\":\"0\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"0\",\"currentpostcode\":\"NE5 1YH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/the-evolution-of-functional-training/\",\"recaptcha_token\":\"03AFcWeA7U-ZuRoPCkntpMriEx-GpjMR_jm7d5OSwKVSDKb4OT5RMGD0wmetr7EQJcx8qgMtQerSDRjST6DLQzJpGCF8cKsqofSCIDPmj5zUo14LpntWR1TqjAXZK6FOst3S_SwJW4IyyJ6pqBhHtKS0POdgW_t6eiRFwGThgXILT7CkpOEAtU4Zg-pPF1uu5F063lM5nw91sVWd5ZwX4nIQ-aZzQSNvsVzvk_Vo4nsHTVMJL1oGBC51ox5tnaw4syNhIYqFKmBhlot1KNIQmYBty9fMQMfuLKvD6Zgv9solDZsx4eIHf5YC_NVRhW2C7-D1FqRPrMichLfRTowJqfJXbZjJ0zYIG8tB5le88Hugh25Zy4Yc_Dd2NlqGSVl8sH1ORMHT4lhdrBIvp44aUfsLlQGtAIY6mfhA8PvyS8nAx0B30gWs4xgWOHhxkrLOXNY27Iwyh7V_stcoXokpkRog25Et5-H6e-LKWBTbIDWZWl3SI09drI_JXUps4DU5bHA5d4O47enC4k2DBD6SnXoZzqulx-vFWpzJsyc8Fmg_JFpTKHGd0ktJ_CLdt53QTys049r2nJd2Gr17DJ3aMYRM8kXXfz6ga_ZpG6Z1xb9js0UY3WBtbb9R0Q5h9YEv-k26AaC2_mkv8q4zNmn7ZkGzaFpop2q2Ti1J1chqu6F66tcdITlfEgGZIpPJZBGi5s9k2VwVzle0CkO7JI6_Sgos1sVw1d7TxYluLvVa_tE8wRNmeIvFPAEBjj6ZX_gdcSqtIGAjliTcuCiySHJxdCqF-1XGVhDCrZHU-CRCpDzGgiiB-xLcakF5lEd8Y4SA2TRfdlYzNf_is4dFfN93yjZAR8JXW4PkI0R1o3s-s5c32eqSSPJ139rmyaAkMZNCwnrAKUc4xGsRGGgnxuiuVXZFDEfWCWQh-TjlTW6Gl8Y-Qwr2vvFi6IaEPKS9zLD1JPWzCoLlDrTu34patjfFNENepM_dTx6njev-s3mdRmeHgDNQZ2gCeCfyYVe7eyIsSWCxz-zCs80RkqkdbAvWbRtPwlC_bZSUL4DPpzJF4gIW-hWktLvVP4Mwlr1FPOkVZ-Tr9hWZZyVyIev_m14xCpKSHzROqztOltZ6C9Pmfxv2eucbEM3-4rq5WGv4xsJR4AvwiRqxbV-KWuwqpfQZWlv2HprFaZ89N4u_UOpyJ61nLQmOVgDQS1rYm0xs9MXuU2AI2D_yzmFz0ze2AcdlBL1Q2W5oMJg5vHvMGlie5TuXplnEZGoSumhE8KN5643udOrXwm6noXHd1-ATgYiIR6WwiX83QOe-YzpRHjTs1NSWqouSiOlt9pz4rLIInpLqvU8kKOEn93BM50Dq68Sh66JZfr9BXI3nLc96R9jIzDPyvNvTbtT5_KT1ZBMgFMuBxUM2HpKFsNqctGxh7PAS8pFxXGPJOG9qFP738KFlSbc4NosMSv2Bdlg-IYxRLsaXj7vjscMfloI-BTv2nLca5UsETTrm-as5ILV8MvfYamW5JOp3OKpbsPLoIsV_PsJ2dv0fytod6RaXdQ_ukeLodkUVVNnRnd55KbDC_WUpypf-LuydRLL7uldnz4yNaFTXQXSs7SNtrEqVFEGfPOfKLuyumgpbWy1Rd3j-emUKy4ZgBsrymd5EpmAdjBbaxPvL0O6t7kbOo1NT2KknrUS07gBXBPKO7QBufc8xWVPwzuSEY9cJBJ8ykJuTUEPIxs5Xzw8icSSUfmlSFzGNhYcExaC6Zbu4apJUf-cdGT1nejcv6j3O8pYF2qAWkZJu51oN4mRHOLKRqJCtNHdWcKNxnExI43_OUoZsEqyg_xoGP5xrztBCTWpUxpOwSg6qV2hiDv0V79CbSfFgTmBoo_l2cBbRA8vb_YzKU2w8gqjh04k2nzA0xHqVfEZfLp1wOccqCa9_3vjUg-gErT9Tv5EnyHXv1S5qrS0Uc-6aRfh-TVbPj5hyVNKfUvpdlgicPRhN-lovoVtUSLdqZPrJSnXykrmokO5gdRltcs5OwgJwuFzsFykI6EwCcFQbqlUPQ8TQeTSEytcbBorkOmCEDkdr9TtJVgRk6N9XnD-hJzd3gA8EKg9BvLOG05YEaMAvDhFOsupTA3QYbqGbfd\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"15\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679ba7ed3b4fe4-77078718','','','2025-01-30 16:25:46','2025-01-30 16:25:46','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42128',0,'cd-form-entry','',0),(42129,0,'2025-01-30 18:21:11','2025-01-30 18:21:11','{\"firstname\":\"Ben\",\"lastname\":\"Nicholl\",\"email\":\"bnichollcoach@yahoo.com\",\"contactnumber\":\"07572247439\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6udGUgQkDZV2iF_lxdgxsA31&amp;gclid=EAIaIQobChMI7My_pIKeiwMVOIBQBh03xijdEAMYAiAAEgK8BfD_BwE\",\"recaptcha_token\":\"03AFcWeA7Sv_8c72BY01BPcWMj8SqvEhm6Es2nj6C0XHsvpb2_hS_Xar9CzNbUJRKM6tHGSp6oWntojHLKf02qBtwIG8aODVjIFET-MP_yqMCOwxIDocd9K5X6DjZ1XvE-4bRut9C8k0_K92emIKX8mbAXAx_zM6f99o4BEmUMIyERJJlalAFy7ApHmp9BYigov86dNW10RRydRMS5Dc6LLz8HOMgUWFRg-VPX2gpBCnRsZaZ7TLGOKb0x8f9jA-huRqWyI-wQ1LJKNFpGRY6AmslS6Lhv9HcKLblQfwfWrawamhPw8IDzNUx_jluZO4Mhs1bszBW0ESrYcyIA92gdVLUwbF1_ey8ZjnceOBvsqwRPcyahvixYK37iXvVHF-NQ9BAHJME3qXw6x777dv6WePxXmAP8PVLRb7nrXJtWcfWdzaAdd-zwr9tCMhuoERuNkYdHkb3IPJ_xt1BvGDdiovgjC38-Yy9EAXt6TK9t3LcFaf2BOgEgvSzBBlP3wADfDHj_jPc8KsH3M_W2IEhYztuVOZx3N-OYXcsOCJY4154sUObuwEYrR2KglfPRTgs2MHYTsEuteIvzzDjjlCn3kQHWm6QmAYSnpJyNWtzwSIENO-RfcCCEL4S-myhjhx1U4051ObFMU336U9UNLRfdXFbaRYoWXIlMViMczmWFD6_ZOFy9XDL5MwzCVxcQoplQJhXbC5pH7v8xw_F8ozmmmD7HEP0fDz3etKgdjRuuLz1_HDsfLovadiHX7_FONe-kZrCcC6UxS_zCm_1s-XdN198Ks08il3lZSCwNJW-P3RYjNjRQa2IZZlylkj1QMV3t3cZ_PhZaiDygzb1mSmq13ycAU3PeeP-HzLb4lxPyCXUMlTgcjSP2EPZ5rbRX7I5DeDkJfCFVfiz199gadmXqkMXspM7ha3BRqiR-MrS_a7V7FDzFbZcNoNWatUqm7esoNwQBRCa00phdylwbTXYpaGkagO_fC2HsUGmtSIRCS9oA0MSzkhZJUSj2ujwUqMqSnFhILQ8qyH8e4mm_YT_P0GNLuef8TmCaKxZCz9-8DuuAZpc7yUEauWycTN1QteyCIwqmsoWXsApeWsOqVpllSUAtVmdD0N2Bo28mHsBmdBd-jzQ762gGV0xHBOMUD1qu07McHB5YhqP45Gjzx2wrkOM9lWM-gKNaL3bUn466S_djqgc_BUoOeEv_dC_fv6KpVInQP7B-thRPpTOZVWVt2H8XFnGE7-wJBkccBJgusjXEMG8UNoHwmI-ulGMQAvo63ZHPf802BXbPPGZT3JNof2S28RuBi9NDTIsXi3ASRvRjc-y8eF9Mc3h5OlOrrCndDx8pfscIzi3UXp3ImDZnJflbubKnS08a8cKUm5eFA1QrORYUryduu9LfqiaKMPuDucZuhtXbC4EV7ghWS85xwS2MeZovBacIt2sL_f8cicJrB21Zep1qZ-6v4_JUyKltAND85RWaeY1Ze_DoBi2Eb-G6ORLPlcmaQuohyX_wOcrilpgXf3IuAk3CvFSyFkEJ7JVdDdbptn8-aQN4NYY_8Pmg6vxpKxd3v-j3Wtg0C7QKGlXrTmkfxdWbMhz31Q2cNd17csI5bprv28YoKOcF_8FLyRiL6qnJEWn0N6NlgkGma9hzrVq8FwK9g0IlasJkdcumwH9JszfhCrwCDPQgmzzPlXAim7MEf0I_HzAXX-8DRZIvW4uHu-kdxp5gRN5sTSZ1IRN4EpjG7pyUhZbdPr3AXnmvSPNbVaf1ialLKWAgkG5EMq6l_bsDFUNgN5SDMftzwPwUQmt2IwJNWUZwJpAy8rhS2mNP0SD4dj0xispWjMs7mUHzvqHhCTEC4BGqbXXsvfEMlDVpAeNK12qxql3mIJvdco0RilE-rsPkaO9Qugz92M7SfqZSOr8hXKbJDpg6UJYlNC1dlyksqzxBcClzaVZw05W6JjoCZlVv9EI6Z7RWV3i6IfOqpxbCVwoFj4ZMtLJt0FVcAos7wCZ3PIez606ysTe8KT34XqXurK4uELYR-o44g18LM8x6wIFnVXGzRREEM1Q7HUtnDJiXVX4OPWkg1WwFInnZMsVLQcvkwU08zHXXYVNm0-kQk186xomJd4SeeHXm\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679bc2ea168d31-63266860','','','2025-01-30 18:21:11','2025-01-30 18:21:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42129',0,'cd-form-entry','',0),(42130,0,'2025-01-31 00:40:56','2025-01-31 00:40:56','{\"firstname\":\"John\",\"lastname\":\"McCahey\",\"email\":\"mcgac1230@gmail.com\",\"contactnumber\":\"07918299176\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA4-y8BhC3ARIsAHmjC_HcliEXvu___rSEw3KzSWbJlBndDgCLVuWzJAI8PnXMIZglpM4tF4oaAtv-EALw_wcB\",\"recaptcha_token\":\"03AFcWeA7RDmhDucCmUleb3lydZQRKt5yB0QZjIL1tiKrzRkiKYfOkcUWA8RGRWNJnlt1nVxcGkXrJUhVog0Znb2xu88u09eyWNWMN8LrpxB14D1WpWakRA6oke91C9tmvgmkmjPZP24ND6H93H5Fa3ALDtV-ODN9ZnqFGhYkqJcP3pZkZhUuE6pBcuJXGb6RDDFtcZi7PKMs34Totdw_01TRYK5-uI3pMi4OSQTDZpTUeLzPszN2Ld8puJcuhihsH8EHzw7VfqKEvK88cOiFs5PlAs2Ddp_4yuBfruknMul7SUdVKm-mLiJsR-w-9J8HA0bQwv2Uf6H2mowjkU2A93CKgPdvMbklyxymeSQg5mgnQAvr9MNCkk59w1w-TYrBPmJOCMdmMZDPJKK9ESvmoc0uAX9oc94eJwdPH-ieuKlm8eIP-qH8d-JER4qkiwVq5_G96dPRcFysro7t9-vbsptvZuKrEyhb5n6tWXQBH5BccDhHwIAIXcStkQEDhPFCxI1o94vX8mpgxaH9gFFs_OmmBcyy4-0qSqpNmGZQfekn1dZx86ehA-f3u0-IWeYt8mlKn_JS3I6RNKAWIJhsT4lCbup_Qn7Wkf2PFdtli1YEK8vhBraaU9vD3cw-vvIwb0HUaxn5x7i36IjhO1oIoqSYI0YF8pWpSWjB6_2zhdBD4b6rTWLU1gQIPZjYkKzBKN0ipQX_NJdFXjV1DcsCTu2EUmbNYv_ZOHwmaIpUUht6qXWoxmgHzK-z4-uuQR60gUUOPqLMZVXWl4CDCmb3ZEfM-lnAxBi4VONxrfFgaMLsJJ8pPJLug7HojJjL9bSUTlgLcyHolcz4Wgq9uI4ByvDMefE4Z9-xhKlnGO5JrEfNuGcWj25cqfR9kf1CSSxaepTLX9qlaMUzq5S8UiCY6-4SQ0eKiqNNjmISEdNJr_F1D4cblu-eopohhkM6Il3Pz3HKJJaO349iB1MhbSLcWxwKHXqHEyUs8pWBzJo4ZVlt3f9i-Ke0Ld8IqEN7B-W-pQKjbn39DiebkDq7NLws_mW-NR4vaeOf1waid30ZZ-fBlVHdGcVNBPmuH9pDqoafoq7v5jRJ7l-E9NT2lQX65kB2NR8nd5JnQkXn1H_Q2339Z31rvgtl1rH1RQLeXduXQRZ0WdWxwZ-OmsUhQMAQiSXMKPYpB-JFhrGSb87wH7ALYuhExd5LmdPwERsdz5B0SfFIG4LKmqSq8416wNQt0xNHFdaQFetrFnkcvASQmMg7lZwfH_j6R83rBFs28zHEQ1n5cfteAGraQ-Tkq0F29EB7uY3tzfduIosCZh564fxQgZhkjm91nPjyK5B2-NEjh76CqIhFEnYdCvLsP_nziAyPf1NDzk1dGPSJhQ390D2lMZtqFladPGxdl8op3GiH1jZRToNyCTNfwFfklnC8l2FLrxCx4hJ41whkI2DdL2u2UYoVmBtFmzUS3CLiM3_FHdZARI7me7vArYRVqKU0xmkykGKL2lVgW45U8NhFKp1FwAH8B-hFuIfLZojQxhn7GfDrOfUIWU_VRUJhLjEJlsjvIVSteYUdCuRzDPyXE9xTyu2A05Bwq2PApBOKJDCum1XR4sx1sDceUNq2t7ig5jFn3xT7DmGZqlo7M9FH-3xJ1N2b3ARETTMoOXa0TmkhPcRHbPpo0vWZvNBPpnc6iskWegy11fdXs0XoF8wy5nNkLS0GTymV_CmkrSGHNY4kZ8yUPjhONpcIP-s_2i_5l4b1goyr371L2SL4XMfZARyZSriCMaTxrlSqF7wmAuxDI9MyX8ROhtuC0TjgBw8uPVGtfQvnH63978ahhTeROgasvXd4o2phf943xic6Q5wF4s81KhZjKiEeOufma0Y22edmWzKq7D1UCPu7JKwXWB10ofltuvChoWuY65LJjCkIO7q_7mArs7Fein2oRP05Zh2_Qh5ta7ADpRTo_iCuavETm1kH0842EyTFv_2KU1DqHtFmSsKEgqfZcikhIqEAU4Vt1ylG5FAxiFZCoblYBxqV2CYt__ZTv9TyUCmFwLZPPOg45FTrNeHtWhP_4mOuG-jR31r3mGWDwLXW4dGcvMniFdWts4ydwPNq2-bRQ8QzOExXf8u0W6umS-oNP71O8bvcMtwYEpvy_-Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679c1c08ec5fb1-55555915','','','2025-01-31 00:40:56','2025-01-31 00:40:56','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42130',0,'cd-form-entry','',0),(42131,0,'2025-01-31 00:42:38','2025-01-31 00:42:38','{\"email\":\"mcgac1230@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"11\",\"currentpostcode\":\"Bt126ff\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA4-y8BhC3ARIsAHmjC_HcliEXvu___rSEw3KzSWbJlBndDgCLVuWzJAI8PnXMIZglpM4tF4oaAtv-EALw_wcB\",\"recaptcha_token\":\"03AFcWeA63Bsx79IwpIVXWlJPOaYhofoqzp8ZJ3ol0ffdsbU0w1JrH4kURsH9IF8QBQasgX3vOUJeoKzg6Sl-uTIxLuwadpKf0EbsEU3cYC1Hv5JvHfxl7GA4wj7f7xKRSxXHTi-GacTRSaiyyB0pJ_sBQdRSwL6gJ-8QOJWsOwKWzLPGzyeByZg7edyKUVwL07WPs85ZLdRyixAzCWCfDqGkD1SFCaXfA2brYXvxc1t-3TX1msJ5GCWcamxoltoMF0ZOqU8Atezg5JmFvMK4szexWZMgDuhhhFAYk-exADXeUZqneTtDZnG42WhawKsrBDGSI0FW5Om8FuQ76ZyCSYfyIg8bIMS7MHeH40vKSXWK0SwecVY7wqNeH_-ZGbUosLSYKwX2D9viqf2TafLNLVwTRTutXa2sRfeA3hDQO92lnEL6vKXy7zorTTUr0A8uuMDgmwaTSJ_5wdi2vpbEGG07RL392_RwMbfSdLM8UZr5A9evgHZ_MMn8VvH3wZtm_YE9W6CqEBkpBrerTcU9WTO-TSyRyMlg927HPTy7Lr1WrBDMj-k5-zG6QEpPrvoqpU_MYQNzD2yXdhKZW6av53oULxgekotyxlB7kSau3JVHXGXA6jkhDvYIPNO53LcGbxYZHEjosfyEFmJfGWKCSx1MTHqbQj72x3qaZQgHuN92JvCTYeng-NDrRLGYfPcTlutuuVxrti5molb8f-ho5XnUYNpp2Ag6lc4jiKFqtJX4B-c4Ouj4YjOVXfk2OOs_DBsoUqYSwEQzfObwDm8Vr06QlOqRLS7moZLM8V5Cu2qaD248jejhOg8gLQ-QasA34rCFszWdngtRmnnzYWjDJ5TrTDxQlXgogdG0IrFKj5zy_vOzeB08zh9--5fyJx_0rZ6M7Xyit_g542tqGj472wSEU4FK0qA68UeDl7UCtxcTCyE-d_gOMn4uiyKfgWRB7YijbWDkDxdPpQ8KgGgAlOUhagm_WRNRUxceQEYl5uksqNwBC99thUVD8ZNhbuRUd4-qq4RAbWdKY6wYt06Y_sL20vfLRKFmRXQNwzHg6vdLduF4FWwo6-l9ccvbrrlpK0buJ5wf36b7qL33pQItOKeqoStwaiVh5Phl-eyu5vfZeWWVON-K6QgJxgm_Sz4RoPYgeIc765kpXf8Mf9_TeWaiPpPvYhSLMnpmbmCfDIk6HGHYrFK15jTlBlhsSpS019HVWRv59Mro6-VEbCrk5opO-RQEusr_AyGP4IpMYlTleILtfEOEgmmameiTtmaWmF9ZpwU_E4k5rpsDqxpadYAmCYF_Mg3_PpNlMQAJBkWgX2lEkCrYSK9RC4X8kvv2kd1k3q3Ppo7tkJAnhh_lMOyLcuXMimvocBPWm5raBk0g9LZI6v1DJfnV6j9m-95hNV5XQAieiNAMm19Rzb_Vbl_7NgGtXGJiQxOUhvrkKP-2AYZw9whFAIGv1Ac89aY8w_CggcOcKVFKPDPkbmLJ9grbUxIkIsf_GjBYlIbAI4lyDaevZlX-r-ynWoo-cDXaI3gH6khKmwMMEk-2WOAKe6859b9Q8iKv4_p2usYtsaLoyoLS5FEZTUOGHMDQ9uRABSG2VqUNjlIQ0Gpe6_wtXqQa1G6Vp4O2QGsL9NOf0QydlWTE6jfCh03V4Ggl3EvJQcdBJTPFW_4AFg266mEYzIvivlJemer7bvus4-1kTfS0iFANNXGWRHgH6lf1dAbeHXW2kP1Bzf3odPjpKnzUvSlUTWUzRMJudsSHK8E2oBjJQ-mlsD8a8tMA0bU2cNntJ2WxIo-hl_jlFB-RBpY6d7k87zCtWQMHJtSueqUiUl1s-W-XK6IjPHjhSzcrQ0cxhbTnRhXLa7seBY5Mrux1WFFA4Hv_ahvjBsUq07PbQhKUmU32M6V5QOFWu3twkKin8eFFKYtlTHW89MuLeiL_aMt8Hf6q6FFKk1s7VTqY10xR59GGub8K-hA3T1qjmVH3kOlDPj42obpAQJ5LFR61GpG0tt_8QTq4tCpkNzHG8PBevnYyFeWHkxifvwsPO6VBFktr88887EBTsM5MU40QmQX63HRSzX-SqrhWNtvrSKK3FwOXP7bRSFsyI2jpQ_xjFfATNc0L7NHAsds05-19mNBjG2PgghrSpww\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679c1c4d3a19e3-40040216','','','2025-01-31 00:42:38','2025-01-31 00:42:38','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42131',0,'cd-form-entry','',0),(42132,0,'2025-01-31 06:43:08','2025-01-31 06:43:08','{\"firstname\":\"Petromil\",\"lastname\":\"Varbanov\",\"email\":\"petromil88@yahoo.com\",\"contactnumber\":\"07955248712\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1\",\"recaptcha_token\":\"03AFcWeA4UGXR9IwJ8M1p8NIY2s59wRFITGwOuEkScPun2cQgxlg0PvFe-_vTK3kX2KXac531WkAiyRntB928hDeXn3pYpoaDXJvcP8jN32Y6UuBbt1Y3G_geTqrFbJqH7vdusRWeTfO8FTcc65g_fh6Z38txowLgV2xFZ7zYSbdKm0WpEfTwe32x4I3sYV8HuyI-MrwHY7ES7ogNBhJjK72in0KxD5t8GG8Oh0WGH3w5HkpSjwfzqLYsUtgUFTDXb38B8LVEicgxLVVxeuVKZLFohfnVaebrOHabarFNvvlBNWeqxN9jW_xoEqtfIAfcdYSjn68qk3A-qGKQ6cgQ6MopI2qaj0RL8DWprAx0sHJfcF2v2PpghuinWJUEnkuJEC8eBTtZwuC-hxyVZzcOlL3OyZqhxRs9D0izn6Szjkw7iYegmBdOei4IdVQa-t0Xqf67PsNk4vwffEeA7TBjtrLFn5SNQnl1VGZoE09PBIYnuKju-U2TPapk0_rFPnRHwECbGenN4usb-mhSKMuGLMZ8RA665I8E8oogqLAVPAzC9uxbxKxIbJc6th3vaaBgKG52GaOu6emGEnLAjpHxQGVy6vENtSwcHOqpGoUnNch4Ebv1tzkqKZ2G-GdJDqG61Zf4a8Nvj_OvNayF1UNe_d_dZUGeL3ZCS0finjaRlbp_x3md1Bg2cSamtHc_YnSgFz5Z5Fzjp8JdSbuZQv0fpOiqTNL8P0Rm1y5hfuMRavZdRuV7jJa5GthGe6PVsxBczYa6FkRGb9eOAEH9WCLH6TX-5RpfwZpIJ52JUoGfSQ4EiY5XRDI9Urg9uNGqAhRithG-p4Dnack9XjgxyjLSKsoQZx3MCoux6TZ9rGuQi16iCdunW8FDc8eeqKT8Cj9uO1D9T7Ohx7l97ahvU30xlDvI_KuCDgfDC0PlmC1Rjn4D3-eJEVmLP2DS9-hsndR8KoUItWQXQquI1rkjuLNYax9ZZ-Dv0qmp4V8xeztlUulpIgvon0pcJbC0IQTnILPDoGwTSvguXBwc32ICR7Cq1H7w7mBS0weBRd1iRXTI7YfnO0IN3Q94uCW3flLrNTJ5WiFwBP-qiTSvLjpz_DlR4zgTASrzu_y2nnqX5WDGbYW9D3AohYp7A5lla2MOsUKGB-Xv6xu04b6FVMhqSyjyxoCfB8KTpUiGGhAvkqfbaO8wTaPyrQt1ibTByPWONTyNd_fg4tPCjOtpf3gO3USETNXhWIEedYpdA8LzniApfdgDItw28Vwn3lSiC1Mh_Foto5Bv5Y1UFjmPxuc4EM-LrjSLegyxXMRWpYmuHMxrqYQbxdeJh9_IP_cS1J2GFAaBzB-x7KQF0L6Sy2AixHMiSwTcklHT_ia1gGX_fK-gEePI2bjuXaYFmddV4AwoEHnRAISBzZmhIoojSvNrgRDBYWg6KhsQUpeUvlQ53NU30kAdCMXDBamZUjjwt4btEtnRMMUA5Wujg2TVHWvhpRLo_zgGctNz08eQxL26IaV-cBLDYccOczBbdnQm8FnSBN51knySH6sDC6s4__ARqmFiUOo8kw4ZiLha7eNt2rUf0AI_sc2SPXPo1ddO1Q5kU88oCkzThif4XS4vT0Ed31X8V5Kex3uNAv77Arx5KrtercxJCNbSGUpRC4ZbkObcOQM-uBbcmPGpEorERZvjwOdihB0by9MNbSn9obA0y3KmTRmN4OCOiV8Hxe2AKlIf9PzAk962zdLfaeariuTUw8h_pJhbGNT6963cFLMQNbZyNpUi91oZ4n0zuJaGkaufsYjT5k89ouenDAe8twv4WHk_j6UlcSYxNfBV0PscyLtg1NrqyhwIafN_xkpLrqw9NdJX5fmu4kkY6Mvec9k1AemC0rBrV0cG8yf4uBE-K07sGrJK3Qc4PJfOvnoZn_ObaAj3M4DU6sa_ndHpdsNlLGVJ80c9ixZ3tZb2LlIsov3zIKn2M2mz-PWx6qh4b0N0Ug0T6eS8VKFsZcM2EvuPWlJqgf0ctEAJp6cq7wSUQcpPYfJJw2V6xSuOeJJg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679c70cb479412-12288411','','','2025-01-31 06:43:08','2025-01-31 06:43:08','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42132',0,'cd-form-entry','',0),(42133,0,'2025-01-31 06:46:12','2025-01-31 06:46:12','{\"email\":\"petromil88@yahoo.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"3\",\"currentpostcode\":\"DE75 7PL\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1\",\"recaptcha_token\":\"03AFcWeA4yIvHBBfKu13aQe7iy7_KLDdp6gSr03g25754nVbFJ2KGmMi6GVtgIkrBkR54GkdfDQu-Wo2z6-FuWz1ACgvwl0DG2O-hqwlHO1J84v18-rKnfS6bj9urVu_o885CXRJi9KDN1r_0XoMivMvxRlvYYmCdU9YDcwsdFCqcUk2oJvRwp9nbdLqdjAiMVbGVyQYx9FyICJHpkG7coKqMdnbkjPBN0snn-rQ53D-JIQWBkuU7eLPnHAu5HwsTa6xIflAk6vronT9kkck_0AXuFfNpgCPQiWamUOWyxuDRqQPdoxVtEkpweESTPkrp7llGuxoDnYGXC4iQA4UztI7sHnxXY5RiRVjY4_-7mCrKN5gdkMd4AzxG4GAH4Tz3BWP-wsZQRNRSdvXvkfEX4uN_8AC_gyxopeKYQVLV6mS1lQ7e8z83SwShVPPfQbi8Tz-6qjHP8NQxMkTC_2ackkcF6MIgaj7wUhkU3fefPkqu2g32UJU38tcKZDNgrWisfwAorJ1WgKr5b5Tp2it1XNkpWTgnYxbbBOVd--uFNrR9npgHw-bMyPZ0FvVwVVpNiUyscsc7dPWpjXzajB0uMZeeplC0REUe1A5ZNyQD6pYO9_rh-1ILtK5cT69PN-UpynHFVNTmxsUmzSBe5SvsnOM98-wu1KrrYJziN0jvv5AXsfW38EGXHtA_1fi3VbWfAZoUzSJ9Iw_F20SfqDpUK3QCAD_Mc9Uk-fEPlNdggYH_4VvF0Mmdu0xLShOFbaGckA5-SV6txjD2_IUNDbQJ9ccQgVDGW6kehnasdcgY7mnUZyI9CJjb0AEMiZVBH9rzE70Q0GuoywboYPdk3IFb6ebS5R-RcxcvC1x4M8cRcJOi8K-z4ms9hkbh8wEdPPmNKEk4ZndeS7PcoupNQ2lli2cGnUeYAvvX9jiuO0dRTHYi5UZWYPnOBY29ZWdf_oLeJ4Og8fuWv0XaMidiiKu61iKu50eW4bPOqSezWeSnPlHoNLJ20ARRVPEIiZ6G32HfMqftN7qgbQsWlEcpDeB0uVZgGlPrR0QoZLoW_ORMP4RMdHyaE3ceUCOMK7ljwX7NQo1h1dUUahp0M7uImtqatp8gSSvXZhUrSfvim52LMgmoSTVSQ-eJ0pQgUjeAE6mFPupXDfJwT38HuHpOXPXrSDpZjuilZdperhWlpsmrIaDKkwvjZwW-GF3vg5qWLt07faP6qYx98fQ6uKnYQiyRUijfV7BFYr_VjYvxAFCLVRfpHZKGX3KPyaS_2x5uQ3Ty5TbzYGdtAI9C7C9FFj94LjniSq_Ah_cslfe4mQJeYA_bb7O7pmlYmEsx2g8OQz8GrajKhHJj7q4Yij4hqfLuWd42v50hOPunadZkIx927yLmv2or-ohb6WrIlZMIEmFrfAzDM7TWEWKdImyMlZyqxn0yFdi51XODAzjasP_PiF4tQOU0vrJleYyJgknE1EjOvSFPJcKFjMbxkfmkmOaMvTaKAt-wfM3a4u34xYkF29rRb6hycbeK8XSXZWGHsCY6SKq2qfnetZ2xxmXgyX7JDglLEwhoSKJ16SV_oYwMUMLY04CiFS6iU4Oj4GAhD8IPTEBVk9RD9Q5u7P1Tos73jPtpM9I6karsWNTVj1_yLsy3_4wn5YGnV_tgJHoXs1mDfgNs95gX-jMn4eDTlJab6t1N0Mkuq9ipAevrzlEca6w5k1Bbt6eumPs8qlNFTQElOX2qK8bFprQFlCKm7-0yTe6aoZCJRD4QQW-1zACXlX9IIrxZ-cFxyEopfOioJU0x6eSb1FBJD5OmpLOfHHjd5t0vtiD9zO_DKfvo53Xqhdfvh6dOwYZiF-X0d8g4GxuXE-OehROtNprOPvcY10JK8zJw2TQQQzBaWlp-6JsBrwzwJZRNHZIKyJWXMgwWEKRVff2TLI1WXzvGPz4h-Wt7D2QZozX1hQ5bbZyX1Z6iJHECUsmEpCf9eqEbtlwDE8-Bltvks8qIj8vOxLMrhXNl3_nM_lCk9RQtHeJ9ByEKTT0-ixoRxXR8f62s\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"12\",\"childrenordependants\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679c7141bbe461-72694939','','','2025-01-31 06:46:12','2025-01-31 06:46:12','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42133',0,'cd-form-entry','',0),(42134,0,'2025-01-31 14:28:16','2025-01-31 14:28:16','{\"firstname\":\"Claire\",\"lastname\":\"Phippen\",\"email\":\"clairephippen.fitness@gmail.com\",\"contactnumber\":\"07964763741\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6txdp51yI-qohDnboJxIXjhf&amp;gclid=Cj0KCQiAhvK8BhDfARIsABsPy4ik-ed4NgAV2ZDHA1tEwj8ZrOJAZZ272ucsttdJB61VmYDhiWAwFvcaAhtnEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5wBuc2vTefpWHQjsAl6T1hVXSZnM9rShl_511kyYSg68ShJLqEQBQwwjUc0GJopeWeynlIp7P7hCpQjZmwQEf2cdaD7rLaHGFyGmbkEWp0qBtZhkA9zrdyr9cAhey0K6XEZWGUjBXt0Z40jublKFxtQ7RGTadwGyut1A6x5aXsbjUMy7ZWyhMcBerqN-sszr3MQ4VZtoaUOZ0htJAfcOqr0xAqJDe8H_6snqBl_3kG_UCepzLL5hNbtmlP7IJF2MCSUuvunsEROhmA3plGaadWmID6ZyWb2YE2Ojx5R_TUb-sS02QmqlnwKWiUcNXf4KsdKQiCUz0IQz6GcmkGfTu-tPUOIyxiwcKFz2tPrl1f6y31nJeFlEU-mX1yZz1LJIF_360WB-4MVJ4Qi91UIQ9AIT0R4P-6UMwJVH9_ziFNKAYutF_WHPQIqeb7AU1Ct2tZfSK8Y-1fhP8z2T2qTtuIaz3lOeNGujkOVpN57p5j7MvXzaBVKRaGTSV3JuuWq8czWMqoqX_TWvLGe-gp380s_5-2nWJJYr2CTpO0V8FHoSOQazTpIAUJIQeUPtSMFtTidfbVD78OdWxDArQ7W4VBfFAgLjGuRHk4RAsgzNaPSeiUdRfcjvxoPjUvQ5rhkwxetyxvN0LaC0-7ovphGWpT8RMEuQJnXREVW7kHvcLA_4Ui3TkTnxgh7PjqmGA32cb-yV-xsWhsvlU0V5QoD9-A2zaQOSOS5eddEQ6xkgnhJ408GeYttCWDWxhXfEhAycP1P69RskYXkBDu69Op2aGv-XQnYzRedAu1gU6SuOKqO7amrVWGdDcNsp6UYtcD5Qwrpe-uVWsdkEFtRxlCZN7ilMRYgs-6PH1DHCu2akTzqPFxZDfavGly1mTLdF7FN1uVcAGg19adqdh9-5mNiAFvh_y8iaR_zJ5fxtDUTpE9kYiOlbqQnIuODIr0NTiPwefq-iFDChGtBk9aPB4fqrMjpETJikUvxFXSsTjagROgsZqYlxoUuXtx67zCt1LgA9COkwniuGLgUWvxqB4XFuO59kATdNlW31kaogMksthLTxa-mqj56QPs458Iw566YQ-pFuO9je0KsiQE3g5NRAUOHoBiVu9cg8o0N-1-AoJqAiCiM8SLa6ZRJ_hKV0UyKrGzxWJvWMjBvoQic_decbCFKGOoermi6TCG27DQZMUQUvSYXT6b-tEyax38LUKlpjTJavUCjYQl_MfTJmYO6sSmQlSEB3ZFgZ0vyTzQrv5C4-ioOU6XsPQeSlRu98BkISHiP7y9EQ6WzLQddh7NBTgKYLQ7JyTX8PVzQ4tOcKRMBBaQosfYB_w9p8HHC7tlCuzRxl6xT_BEPYnojZugUkO4XHLDzHRnpC_RIv7QD4b5cv2fdyEFyLU4DkXvg6f7I6N8LcT0NFqa7x3dETGAUx2eb1ckdoL4bKbZIpWa5bYt3M4NaNGZnvWEx3FKdRdOrJQd6VkS7JxDCwNAIQwhYS5YWQEo_ImbnFN1JE53rVeCdkAdHGcJPseoOihVaTawyJhMHcve7K-vBPSpJnulqdTtXN3idZF0Lx_KlMdIhDnGAltzR2_uIHR3H6K_llGt0f8osF3KUBTzJqkLUFFoWjIlkT0KMO58CEVwDAyhbkqK5eRsHdgmXDb1V433mRTaDbknlPHc67CmGNGucYlgbgsGHxluOdcp1a7Yx9F3wi9W_rpIgfrXK0lvkYD4nuwm-GNkSyqtTgz0oUcSzaYIEUc07tkv1C-TLg-9CJJ5VTXqBT_3gUVR8GlHeU5-UfvPyKHJ0ExRXrdUKMWdpd6GTEBRJ9Cb3NPaWqWPPZ7JkMKqBnWT5H7FYOkQz08h10Ur5-mAhu1Op9uhB_PGXQfmTagrw_kaFqUUEU1zgsknJRH7HDtpJ_56Qy4ZhSZiH3gFP3atSXlLWa-hojm_zK8cvTtkd3-8bMwe5-Oep-jh8UjoCOtIwi5hnBoGF1h5Ay_nl7ULi9GSorqg4g5LOQReQueA3tCfYWFNjuxDDftK96yTQI9rRQlBHdtLnqpa-5e4rK1j7PflMlHGavoTYt6nZV5GkJM95hmC8V8oz5rdgfdG9s4M-oU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679cddefdee0f8-36825762','','','2025-01-31 14:28:16','2025-01-31 14:28:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42134',0,'cd-form-entry','',0),(42135,0,'2025-01-31 14:31:12','2025-01-31 14:31:12','{\"email\":\"clairephippen.fitness@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"5\",\"currentpostcode\":\"NR78GH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6txdp51yI-qohDnboJxIXjhf&amp;gclid=Cj0KCQiAhvK8BhDfARIsABsPy4ik-ed4NgAV2ZDHA1tEwj8ZrOJAZZ272ucsttdJB61VmYDhiWAwFvcaAhtnEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6B1YJFBppFfA3iwjtNSZL9LFgqZ_eR9M3NhJ-Ef0cK5NAq9ijSo2ktql3CYL3bdkA1Il-Vq-2Dq5QymE-mlzmvMgLgAIteClt_3REXtzsOxFgsWXDq4OGFmNJAQCUfTXmJUvNgt78Nkn_P1swP9e0JUiAqb-So6QPk-caB19FXLmVd8b3ZdE1FmsYm5bytuHN9U8pKGLeUXh8fQcreDRYnKhoHEJXSdL_bxItG-uUEL6RV1lS6rk2EBuEMSosxJ6X7nMdbAVURZAhhUb3A_BzyGC6Ogkzatc5Lc6lujHIIhTX9xSYzWHFKY12Zy0MyflBE2oc5SGn-75afVzn4pd9nVo009NEptMTitAjP9AKXKgb2RFbv1nNhsvy9iAQQj8EluPUCtkDApSP0UDkkmgqlltHEtmE6d28FrA6JrQNHzO28RgvWaQRBTiijit__Ov1bCIu82t4RyhjDPjxTSnfssdVdpNxu-JQq-0vmcBaRXKk-EIQBpyatPu6frnxnxWVRKvsCSKsRxFlJNV4HuP5rV12Kxm38_RN7NIGG-HZ6DWYXOFinsE7mhBi_uZAarMrTFUOBmatuOipvRRXq3ZtpQnQ4rwtjfNijPxkEOK2qnD2lulaIQjcoHgmptfqSXSgvwaDl78zBa-MkNo6jtgnwyZvKitEmxf2E1iqgbd6Inw9F7y1-vJD_IzakCwgSu7NAMig84t9CgiBPAPo4s4SAmZcHz6VNtG0ADWd9gnj_QIRS4jz11-zOZZcAAgjho8nOqk-9rlyxqxySYWvQCJmF3ohIViDxjxM9r_x-UiXJC1F9N1cgoLNKlhoTdq959y7njPNHL0CLhbmkPRetyl0wj1fpyhX0_fvTHaxxsmSIvTeMcCvwVMD6ahTvPSzo5oxnVhyaHl73KymwbGY3bEXON3hFEn8V0cRU4dgEX24SX3McwKRO4NBrMrICGtR5pgFzaV1S_hlt47_VPADzVaUkAEdkxltMLjHDLiN0LM7wwPa4GD5e54v3__qAcBOKSEGDiSUdldS_e8QQ3X2OhTGbwfL3TPi_pJEVDCKOsdwGHs5IQOpJ_L9eAK2swAIXsfh3qmrgGKsOhf3SBfCLPi17lrrWD10eX7OGHUGj8fJKnZIjCHppDxdQY0iJYq89yKtpqWGHQpzRpVql1tDUVlraM4V4H0jDnyuYxnR80LQux--y2VtPEp9n6M_gK_EQuIQhDZZNsPSZtlrZ8BW5IG054EEMmcdwoMVyX59sihAWNObJ0wDdc1k3VcO43zGJNJfyPCMKuJFgJJpueqV7AL6cOMYymGVj4wlpWONxgxQe9hEGGm-xRJT4oJqm3EW4RA3mwbREmrHJMnzkpu2UCFj4Ft4hMLmdb8GDMGbSAt2nUYIvSnDgjANbqDgSZF1r297KNDhD5mgTMFu389lVd-0Ep8BOw20YKgykQl2-kF338orcay4Yi43_ejDGMGlw7vqxJADY9ClHBuqe13XrGLrjwMpEG-u8jnigZ_9VTm_sv6sBME8HnHn4OO3Pf5Js26LVMMmYe9ak0_3A609C2wOzVHjyFXZPCJNnt-hVjKEqfTSKlyHYE13V4u4-udR6t7n5tuzlQCpU3B5Cb0GlyBqqpJe6-Ow0L4ZOOUk7iv0rZOLON2EIXRnzaCVfcUBpKgR8MM43luIyeqZ-2pGQAU0JmIKO2g5iI85dhCroDeQLdAXcQYBK3f-1b3qlYRnNhwDF2hyQqsg77Inpk-mnyhAIsgMoQ2P1sR9Ohwm1OA_OXF3X7lJCaMzaEUafOT3Nt9NGmf16zGrN4GVqNUOTxp7PW2Gy79N2NAG218cql0nwHaVauifKUjTFy2Acd0t3HUwod7IRL4UMlxLZgbTYwlchRACq-ODwwc477SL1A1NozXNlSlCftxx9W3OsbacJzUYDmdescyvaUJEFYS6SVY5bQK21tAudLu8QY43O5CeeN-0mqUVkYxt9fFBk856RyMOzkgYCya0lXVKtRUA08pJBvnMaljkzje4hisju_VJW9JYrKIun6FFQR1rCCZ4k11Ldrr0X-VxDu-vDFCN7UNrNDlQ0-AeQLZztXpmNeqZxr8xu7GQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679cdea006c308-98019825','','','2025-01-31 14:31:12','2025-01-31 14:31:12','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42135',0,'cd-form-entry','',0),(42136,0,'2025-01-31 22:04:49','0000-00-00 00:00:00','{\"firstname\":\"Linda\",\"lastname\":\"Murray\",\"email\":\"murraylc@sky.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA4_pXjXlI2v5u5VPQjDMfPp9PYCulEkAtHpwFvM_88yjhiPn-a18S5r-7D5WVJQYU0-dh7Us2xGMixahdoghjhnha3okvmxVc1l0oizDEAHCpeQb157U4gCsjKdc6ygFAiKcS076YdBtvy8EwpA6kYItE97h8qE6w4LNvSIphhSTn6HHupD96hXTRgBgY-wGqqVaPiRbGFMXQza8F2OeEKAjESxsad_DQKAHYvJg4qzHUMfEddty6p-fNMIbo95NpvFAmg9eI3hGpwiiKXw7t7nyxoPw6AE_8YvMZEouofCc0pj8nhybcEUKwibMm7rHenTJjSh59zybXzFX6j56vElYyQhypCDL00xzZYb4tBbvPLirA8kpF7DIvPthkDImhGLUT-Av6tpD14eRhc_ExvkUEGf3tzB9Xu10MyysHhWnB1WEAPNGJQJ84olL4cErsQEMIfZ6S2JXojc7G5okhA4BfzXSfARgS6YEGF-4NMR-6C7jK9po5d2K0tqmwlHpAgt-6E-6-1mgLfjvv1m9zO6vHKrVBQ8VXdOlQcsmUHJzxEljg4kOiW0-7KPytA-dWcx5MI6SXUr-nszV854VAyuSZ_PszxkLLekOdTc50_MWLLyNlpmb6Y38HuWoKgAZb4WKwJ4am9qLuqGopaMnUsK_U8PJFTypwlXIMs_46b1lw7qOOIxNDWXrHuaFxu0RHkCALoRV7Y9moZBnikmJSp9XtGquVUCsn34irdXChuTcFHu5oIAcL5jtxRnLy14XQZ3ZD6V19QKtx8GnA2-LTDc7etHwrjKVUBfZpNf5M1CmhUBtZ5IDdtr4GOu0a1bom3wPaicoyPzZAQ02pa1IbNOvZe9baYG38PTdOtY23lei5-FTXBtU-PpYGCQvsBdiDTKNuMnr6RqCtm3OwXitdkZkiQSx5DxGKj93Q_O6Z7ke-HE89kIZ3Hvwr0eNWyRjDdIADYsTU75CsF92-Vxg_J_KpkH8f-osUGsZ7HnooHNx5R80l5UQvlh6Rj5FZs-y5-inbHwliHmStWQxL-7NkRHlpxc3ekDR6UDBKXjYYwVEKDfGttHIvcEg-mQ3Dq-1_cPPIFSrDx8DXyC0-Co5WsnU1PyBtoWN7s_Yig_XJwbmuvFNlEWKd1pU0fPf8CgV_moUBnFhNnsQWvRLl8HdcXXcTeMg8-j1aG1at_-VOIYBNOLUIOSCzxGxT1buWK_lWgj-gh1Rb0KHrQLrDZLV0YcJNotIX0IQmAjZNCitP9BpQhPMWyFkMEzdP3VF5YR1o3nGZE10uSkcBzkFD9z-fwEkHetQuGWBOyZOslb6rkSVlZlFQglagD4WZI2f1wxZ4PRCrzl2z05lLccL6MWaifeyoHtzU55glCHNhxajAhL0jAdQkpMZYt4RwYBy9n84BTjz1Aw_mEWxTNGEOMthm_ONJOzafCI7D7z0twhFA-bxmjBvsGadRZ7qz1EKRS5cikCRcTDfZCnf2jf_X94hj__AripHr70m_RRJ_jZmKhmdqXM1bS7SeS2sSL_vWz-Eh6bKZhwOCsHE2tj5SdpRBrupswP0ZgJZXXcS725MF9lnPKPJSYhSvMLDU27sGEdf43e7jjOLI9XlH0Y1fnQWnGXW4BI0aPgBStu8JCIl9rBZ5cE-gic_iDDXSqeWCAPtH3S0w-VmjHy03H0sxTIQkTARP-nX5USABfXrK6iFiYxeKSEl6i9VEyhS98te0CDjg8szIJHOsXHEF7yNxk7wKIFzRgzfo0HfY51RKkFf2Y-06XXHlpPvbhh-Ph_csK-m46pyQKrHb682COitxEGuqn4sT-YxiwLFea2tyLbrq1zzID84QhkBbsL_qsEsuuugG6hcy8u3_zrcnCi0rhc8FcpHcqqB_qZGi_250bGjguFO90-X5bIPnMDu-eMOiHtiCNvRIwr7sufBLDP-D0zfCOlQahhutfDKEWViWf6EdKBVWzmJ3_AgaEMNZaawaISt8Og9vQNALwVakkXMuZDuPzy3cfcOgPUBHyEBFwqueAU2UqJ07YEcvf9AUBUexRwMRI_kSIkasXDCo9mZn3QAOtHbTRwQPnXrqS2kUwg9L5HGM8MMEuzj_9djwseXia0cORaugee\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-679d4901a61df3-89868831','','','2025-01-31 22:04:49','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42136',0,'cd-form-entry','',0),(42137,0,'2025-02-01 03:04:00','2025-02-01 03:04:00','{\"firstname\":\"Silvana\",\"lastname\":\"Marku\",\"email\":\"silvanamarku475@gmail.com\",\"contactnumber\":\"07575086265\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAhvK8BhDfARIsABsPy4i7cfLLm5xAYE2u-BufMxr329KkaMNBcEuhaHcrLTnO2BSsdXcrxXQaAk2wEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5i0sbpgww4UwuL6yjxQnIMphdlwpfyS4xFw022prlkeJgdrdfRSACNe4wbEuIkBxs7HQEO2yPBSWGzBuTU2Bj2_9sI0HhrPcYAp65YshtYCIOQK2oEqmGMDf-oxNW925pZRQ9SkylJZCKPsDMhtoKlwO6BFKaWwua3Am3fLWt7jkDW4YzNM7jWNL9BYVqNmxSYNQIlJUWFmskZ8QeUa45e5Bvwx4v1Rw2aBLofieTpkGsBJGe19-DTVw57DybabiBbHQ1PuWMM86Sk51Pw41qERaFXeFVdPo4ZPBYCzbJeLLuuqwugbVZEM5vzJqfWXBEQsdmfMGjksR-XgHsIsabfQFdGdKuWeqty3795CcGFsx1bQvMReKYaURWxWIQxt7noAoCAqmA10pjkVDI7gMBhosFH8-A-WDi0-5WyEFG2DnDxIJuF4KY5-6vSaRRw0rIMNNTfhB4HsVJuiZjmEh5nilAp9vqi9OzvhWzEUXi6h4vi5fr302LdIAuZnmQUtjfa_lpd_gzywG4k5Is27SS6DvJUKVDHSfM_zyUA1-HE51io7yzBHBavHp3FcphieVWDghSlg4vwC8x1FhvwsZdbf5lnv2gmmO1hrYuruTtFEXsfYANhTLpM8EYTDzAsKLeZPevuLlUzbkRiHR0cp0--10ez-maWJdQW3T3XWhOfcZVsxkjctkKeoSHLZABW7SKa3weHd8-v2quso1xX7cbIBlJSqjxZjCNyInfnD-4XoFE2kgjqvpe_4o5SfKiByQ6NKXiSwLjiu3cCqUVVRDx2Ow9CpV5Msq8WRkus8uiWBcLddF9W3-uxkEAw12MEFT0C8Is_2jcwLkWINAssO57clNOfiyW3cw_zxgwFoF8Eyliqq3M4XCUqifhD5jNBGbgLlN3aRidzOWgufJQR2tJIMw1Vqa_lD6ux5NlZfA9nu6MyHUgfrBQeriWXMMi2ytvPAY4g6n4LXybmapD7nbBmSXqxSTokXH9SVL_HplIPZCre-d0vHx65UzNUQTXURneUBoy-CUgbzTx8FV5S6xnwsgRZKWKeBXGBQA4JYeV7QNNTV8ssZUKxkPDuOxzdusErpYnJVrwA3p07XqrsuedFad5qqhPqHjRRcZmEO3J26eFSH3tlHYOpPS0wJiQXtULogTaa3pLeuRNuegD6uHMEtTX9Oxt1XhzBgyMZTXhLjkvlyN3c0fs6-JHT8x7EZMwJIeHc6LAi6ZREpuGe0eD7Zt3tPTv5cb6U2vhfCzyePL5SjQKpz3Fl8MmpdAQ2WDJsHySlkNrev2Ry8JGWAb9G3NuHItWRSysgjEIpt4tYkh6IzXLYtXrOFEKZO8Q_wZVA1PlUq1wThYnyebymm2gov2fJZor65JLeEGf9YOqHxBtNhZ4on-FpmTLvFJlLLHB0ccZpS0alkiVcCwPDgQuBM0nDEKaot8yjEaoBgba8XosW3zCBGDbjExvYAxY9wpvrg1ytrX6xF3BuWwjgxrl6zOaF4oMjn569Hq72tXS9oRWhuc9hMv2lLc0Dt86OM3ym4ShW9p3Of9v_2PKWSFLHRJqqKaBGtHAi_G9G9a1X_gQpRc4vz8xlhBuUbo1pT-vqOJvjrAWPtInulBvagp91t_NFc2IcOKS4DFVRzC3syEjEalFnMRKTNZVa0sAjTSFVR1Gv7xgxcnVQms40yHzTVx2on3dGdL6JSN4wZ96QWC8s4XhwWI7dYLEm2xRRrVoCEwrpASXq9xblGhD09E6ofxgzoWXf9trbJ4xA_axzGat54Kl_zoJlyea3SK1I8ML9VsWrPyGnLdg7aUj6p7IWpZOLTQDcu8jFw3eTsvtGp0kvTjTFs9yEKWb-IV8pAkoxrGAjjB5o13ZqxFIE3iMQxAEVjcyl5wmuexwxb54_cU_Qb77lw4DyhElRWyc8b6VYhUNZ-rIrPC5YMsfA0-PzKWlUuyyIpAxOrk0vIZPKOJRUp3VjaisKLKE8sb9GMAaHAiK0-VruIKhKLt8DluibbQJ_Ksl3edJjB9Y5fdY3bP5_9XFDLKscmWbReFQdGq9SLbH8f6Snuvtyinw2WrDGsZyLUA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679d8efa99a621-73266548','','','2025-02-01 03:04:00','2025-02-01 03:04:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42137',0,'cd-form-entry','',0),(42138,0,'2025-02-01 03:05:33','2025-02-01 03:05:33','{\"email\":\"silvanamarku475@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"4\",\"currentpostcode\":\"B263lx\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAhvK8BhDfARIsABsPy4i7cfLLm5xAYE2u-BufMxr329KkaMNBcEuhaHcrLTnO2BSsdXcrxXQaAk2wEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6uwRBhJjgMRrq4Tmqv0cLMc9-zdR9Ni0rRWskwjeD8hSy34Bjr0OrD4gsXJPBEfUi_fPXxVHj-VBoBrWGVj3Fd6pBtlHVebYjcmT-BiLiN07YVCBrUOFbfAZFBtmEuQYxQmk_H1wxolD92MIX90cbfZxQ5uwVgRYGrsQJmwq9Mn8fJeQZ4fM-uch6xdfyrSASat_6BmZTMVa1wdXNvIT-2x1fCIv0BYOj88F-MaiAr78dIycCcPTrd_ycXaynylpGCwdR9suH-YTOuDgolbHOwuKaNhruN5vKrVjZ69-Ikl5GMhrxgYv3ElWbhENUx03cnpAq3w6xmg5rmh0M-Cwrz4CnmK6zBfltRSeSIQ0jzFOU_uEmDXA1_yOJGDEjAjab1q7Kn3l4tQQp5EFXnXLEVLwc6YGOyDIbuQPhm2aLKqBwcdrpOzJApjvsbgN74OXVGmZPY22KocJan7SnUlWBCG5xOw2c1X18N-8ejEpSZin_Iv0htdsy98SEwAyIJz5U9ZDjNuOqDoSQ_sXc6Dv5CJNum0QaKIlV1dYiy_Eq-BT64oTfFU5gKbGyxbWT6QopmXXOQnVDNRo861_a1Z7QeNEdN8buWauZFGMGbCyFF21JWzm6iB_HPR7BzLdub-6XcQOzcXNcYwOe6JUuiXueZKAOs4_-rJwoso5rLIezq9PutnH8VRGrV0W6abrqgWWLiz_YV_GhC_Fwc7drWFH-50Gb72TrWPBXUko6NoRZiIhtEBOnJmLNOe8Otfdu-7t5QUKazBoANGmqXWn-a85PxlIwsAgWMsBPUzCHz38qWG7hQp1l365k7potfDRPs7-x3cZCTOLhCzPNZV2xl9XS9HTY8HDMj3Su7CGdZNv9qkQSZDoG89bJH8vMZoKtjTFgtDQ58TruxlPcZaU0wqrhPPFt4z8IPkH9LmzVoxqD7JvIUBH_2Y1X7Lv4nbrmhiJFsg_fy7wNgEeDF8u5TGiCxPRF08jmOOHuUeK3hB8MLy9fwWcsEBZqcCz1Ko5SY3d9BONnKz1cnc3iV9wSb2OlR_OeW-QOLU83SQ_iKTzW8kXKHexF9k6Shl8JLjnTine-SSyKroVWMbM00xa_gLRHv_ZQhQ_M_3D5Nre5c1v5cEadg8YoGTHg5sJOAz_04LZRcsTIW0GD5t4OC8ghDQMb4Bc-CT1nqB3918Lklfdc7jEcGa-aMjg1XLZTveb8IGgP5Vj7Is6giNTR7EjJZDUSJRJWsrA-UTXf-7vEg-wmQk455gBcQ7cHNqFrjARJWkWyJIxYLYSLmDa5EJfEOpo3XFrnLzOm867AVd4WMeporCVc_X-EAgTjE9nwLY8ugA1r0H7m56mEOUGYy85wr9mkuFADrDZUw3hL4K4IKPaZhpQWEgXc4BcX-4Fa8f1H0m1haloDX5hEeU1lqQz7EZKWlWdSHES9ReWlBmeDcqSk2a7Mcla8NPWE8KY0QRJtzFObLwzgdMRx6rviFv92zPHpYCgHgjNrwbIVn3WnD5cQedSllTYjVVe3NcTA_bz4wZb-oFSh81-R0M2AjZyewmV4ht4vHJZHF8qRSrIVfDOpW_AUr9tkJlrZVtZv1VwIqkaX80_knwjPR1iYkmeRfsAktGZHTVqwbplF7xwA0HfqBiCst4UFUyVgpokw1AJEUU-auaiNbGGUVfq5iNJm5tLr_Jtvyd4-rDY31sJFICimSV4h9_cbhtIa8oelFp6P-XSxd0VcLi2d8S0g9RWZI3GNpIaqcf3zWLzASGIg875JYSkWH_4kh_lm6duv7-jaSn1vWpHE-bSh79CutKM7UEels9UFEQPYYuQFEQtwWBOYorHjpqy8t0V6oor-2xboF_lyAeYuEEWInknT_fvwLlVaF1DjXUwUUMbyak0N72Euulx6VIepKV9Le5Xl6fVNIYxBZSoNn-dYzhOkuHU4J-kXPjObYWe4xCoZOg5zmDRUnz22jxKtRggSkVIOpclLVe7PuLBDfqOxeFmHb4SUDAwEhMF00qjACqnvToUPRfG_9ap8Cs02aIs2pB8N7bRRAdSSsihylVFHK3KUpff2IrVPQ9vzfzQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"4\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679d8f532746e9-15448074','','','2025-02-01 03:05:33','2025-02-01 03:05:33','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42138',0,'cd-form-entry','',0),(42139,0,'2025-02-01 07:14:56','2025-02-01 07:14:56','{\"firstname\":\"Mostafa\",\"lastname\":\"Faghihi\",\"email\":\"mfaghihim@gmail.com\",\"contactnumber\":\"09190770500\",\"pageid\":\"39249\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uaKoKWjiLYYEeAAM5ysCWsx&amp;gclid=Cj0KCQiAhvK8BhDfARIsABsPy4iizmjXGyru7n6genAYO53UPxOhFmL5_KUloaFVVQNDN-DgBghDn9gaAsS2EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4QMVPAhMG628kqXnS4F1vGM9HxG9D65LICuOTdMxmtmLwE-VNPq9muCFyHpLYlA1m1LQ-xkUCXyUP8zYx8FBd37XxqEgxG59BacOT_ErPke3XFDKb6R1OsUJxXxN3skmkoA6MfTbAJPxd5ZxTX1J454CeCKPWqlc_kY9xFdbwHO9Hb-VHt0bYKmCd2CJI3U90sA2XBeaFqrDUb2LCeZJ0vo616QSKtnt3_OSZTCx98SPV0v3rA_x-WXkLOrotLeO72aE4J_VSmqBo2O3AFDrk2iP3hYagea5YCQL_339ez-gaiImrXe2ToInkcg4jVQWWH7MQZ6H5o09ljnOZbifc8GSgtXkGdkWlakv45MPnTzlHee-S1k53ICNKDK3QTL5inopDPZhF4YzKYPrpeeZaTIOXaExp3eloeUNLwAjEjzvCUNyf4iJXI4LFB0JL0wwBLJ2HRCiATqhnZiNJX-IwsZ7-N4WNqdaZhhGAIR_dUsRlZOHksnP8wnUVy1jv-aohZzXVakQt04hgxVAMDVjG5qvVq5LIAfxWlnocX3d-by6o_-4jVF7jPi8YsBbbjY8BDZgNohNdKJXT86nslcfS0UaIaXq97_-7NjVijPkT5PMmrZGT7NPQ7e0qPHJiNk1BeqW_KXFkyUHOLGjXn39CwLt7Rlg1uLw1fVBI6FTm3weJoxZ9J5MpnVpNeogIFFCw60kDVgh9zMvovG1KGrQ-Vtbomp_zMLaooj8tzomj_wnO1BEzIkfwGziA3u6dwG3HZISGhJdZITttFlFHLrAMIUEMISTgGlOaiFg_7QdY5WLzwyGfea8ka3kHCuVZgcv9vMhAcz78rvZNryWh-vc4Hkfx6RiTsVnz6-UtJxK7_moTojQNYXul-eMA38tf8xKplFGHM-Ut6iLwRquw-yLKflbv-kV11YXOdwRP4yO-ffRr3I-7bEWPhzywEl93Z-wkaK5F65DhegbMYd1PcQtMLRvX-f7S8xHOST-ZhDdXpFSKbzH8316ojXRURCu8Y-zCgGg4Ymmq5xyOGhDABo7oAN3mwIpuqjL54qvkS9qKj2Eu3uRNVtKojLkZCNd8_XO8H0pPlAhUG49QsKigBbNaeLVofPWXQAtMixn9wMdoSfqzMJkb4gxwjpIhi8iuk0-yN2NjWj4AnDSxJ4hpGvkVH3lcTos0lPRQVK0V0ezo0mAosoV7I_L0s2a8W0bq4ON207YDNZeHLj_LDaWIwm8mg8OAaiI4P7nJ0cJTmv-niFjJFanLWPEFvUKAA4afnCXu10gkI4SLQ91M3NqI4IRO8iLacuEy-6j4i-cc2gDqyn3TQ0bvWUwNJlVG4eyi6zscVccYBMRRMRnQkK8Vp-0qufy4XjectEF68_hCPSvanevp2nMHVf5fqoEqTmif196uk_4F7Lsxc6FJ4gOsUyi0AHaist7jIfnIPeALvzgXfdxuCOdEJ5c0Az9j7isR7sfmEWe8rWhJikkMIbAOhXEMDpAHirMJGoIoYoXImx9lUjd8k8opG95J2bkrsLXpVoZ0CsVd093SvXg4YEcPv8ntfhTYxI2vUSdj8weYkvFxBCkywwrHjWOwVzE9A_HNYJ9IKWFqaI-ikH0bge3PUrxAWJ19pMk1grwIbtutBboY2bvCJBkLGg_nr8UhYM3fKkMUwUWfNXlXYNNkPVITJM9ULJmpvZT29w7L6U4sID_LMcrreUZwWmvb0PiMiE3SL2g4douwaH4ivPrq62mhJaJ6vPCwgf7ZO-4M93iUrBU7xeNGSTbBtj7gtYciUe4Etxn00NMTNlK1t6QkgoyzI0DaYQs7OcFr_V1aiCH8Oag_PYe5uZG3ahBCJxan9HlOPJ7HgUeUp8b9YObWZS5gcsxJleEoob3uFGQVXJ3pugvxtuqiUjxUlqPRqhjmRv8phlRxK-L3OEkM4tJ98Bsa-WX8fdGEFAw8ZbmkGBMEnMkazyoakjkx-BTjZmg6WFz5PQizNmHamtL5rjMuTNO9kYJP7QSQ74Xah9R-oZpaFYJIlRRz8AnusJt7OR-L9xZpsMM9RzoaicDVABdwWyxEOpZdUBsK_629zEeUN5cNSn0PHsrlAuDM4ssvvmnSLVdhuhHdxyzPZBXUQxF1C6YhVCjWgcFzM3Yhr9efiGv7KXV-iwg_TjNG09NxTtOgevlOgr7Ozvyyf9hm6PvMe1jeyrGfcvrAaz46JO4G-nrhAsgq74mdxjuc8bRU1r0-T9j0HlgP25d-zySe5brqUo8metCBQfpu48nlWXWMRF1Svh7DT-D9e1LrgeHGLGJkSi6K8QfbcRw4y4MemS1GLv3BqbcMQSVwQ3DWhZz5eLjvEJTdVpI_3AIqAQgP0fJlv6peegCDnI8F2V1Uxzgmj5kJaa4UIv-3AqH83MAbBIzGQrzotQ8sj8H8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679dc9dd86b214-94673947','','','2025-02-01 07:14:56','2025-02-01 07:14:56','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42139',0,'cd-form-entry','',0),(42140,0,'2025-02-01 07:17:05','2025-02-01 07:17:05','{\"email\":\"mfaghihim@gmail.com\",\"interestedbecause\":\"3\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"64578\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uaKoKWjiLYYEeAAM5ysCWsx&amp;gclid=Cj0KCQiAhvK8BhDfARIsABsPy4iizmjXGyru7n6genAYO53UPxOhFmL5_KUloaFVVQNDN-DgBghDn9gaAsS2EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4M2VbHIg-tVb6fAlO8kaFm9dM-WcOxQNE5EyK9DwA_-TKzZEKWR8rM86eUlw0M_MYQygE22lvRMxJK7rYds1kxRUorkavnJzKno_a0fCHmiLjN-yIwjyvVV6ChMoKK7wp9NNdkJXfwqX0vjrOfimUZS7boOKiar5S-Ge-hDB7kGvvM2UNMEdd1xbvudSfxfaLbHcY23GfRPdGtsWxWPucaFPZVKnzkEbxelvjfpWO4_ZtVqAig5BdksaHtJEivRHCQ4bvkqUiJejBFi9vy-zK1w-8PreauW9Ky9MF-dNz40jAgSded03OB2oeedRv_nLaJcu48FiRtoIkeOf3zRfzMqimZoT4gXefIpHgkZ6eyLEs-XEPl7Dv7sVpgzHIKCCalyMoGAbxz3zGwXez8M6s_FTD1fIqJq35nDKLxn41jm2f-O1kKN_fHbfYxWc29u8EkHUwd3o4Ux682QsDjB5mLa0hb8HJh5w-R11tRf_jvl9GGUG0VItkOsP-r94P4KCx_psfWAXu05xtCW8VP2KYJ9Mpj3wq54kLeFkdFPJrdm_wqI2hW8GBr6TRCDaCnXfXOIpQ93SrHDFAoriEGSgsE5EsaOq61lw6Uf26ozViGTez9snpoI-y8Iejmi42FlVMd94r9xcYWD2cZzznPvwDcLJi8w_8gHb8jW9dnuBdSZp5T1uKsWIy14g2cJcthDD48Ldeq7tF2DNqDAhBEiLw5EWNUOrY8Nfr3QzuC0B2rV8ZAlOqUf2rpUTMQAEiivj5icNDfOMXCfra8z09gSdnWFSbW5_uW2lBhpjm9qhmrS1unj2Sa5kfHIDyL_OAvlrBRY_526zmA2RXdJK2QnpajhZ84Ezic8v8ccsLSQZeFBS162__shhUdrSANAHbzhDZ1HM4tf6kb6xO2fwWSdo1Fs7aNPlzlVP1ONldgyQsTO0JLVrm5hcg6ThFrTntk4lVKVfw_FE33bHCKuyG7rv03X2GN9GXBaFrvSk0wsagNMqabshJD3D_gOYceDIeE8x9LPxtMCMkzh8PwsHnI0bn3mZ_ZGZ-jICpPuiQgB9grwvPlbL-8-AEZSGsq_sfKr4bpMkY9uDt0CuhyogTXd9-2C1jtkeaWHL9EtgKca9v5beuQBXeQtDs60kOcB3lv03T8h45xIHT02CRDdZraN8tWUty2AoQx55GjG0QIkA_kihCiKJrlOrzFR2Ui_Wcct9ESx1actKriS0wGgcwbesazRc4eMO3_qKUT_vxyy2grAjC08QTRLh3FdysFWcY2kc1FW3-nsjqsj85Zu_s-_7u63fXd_RFaaCAKQLoNa0mmxkvxnabubdU3Ko3YlydapZFNblkbfL_ovyOOBkvkAMmKIDvoLtwVT0tlze2fXDprmxeYGDOCYZ45TPn8xwIcKQB2CnRSOjqw1BNUHso4FcODA_rQYW4citl2yTBTcjs7XIQ3-Ibb-sbSEQbfww9m_euzzsMB3ShKC9t7b1Z4GxYCQ-lKBQUmWW8npw3QN2H6RcZJ8d2sbNmA6G_S1wKX2KIZCE4j1SHsZRDWISBfJomJURUi9DGhAmlIEUDdWx9gJ0wcjPZCyMzESAWbHkJXM_SFojhvEF8aADC7PRjyO3mSjdCRolsnKF6rdAK5t8ijwIXbuwLZtl-Tk6OAE7uyzROYQMfcQ3-lrlYyb7FwIfM-xRRKyvngaaAVxqmcO2c74dzM6clkJMAdlq-RAay46-ArOKCY1nsVihVGDrY9MRLE1CFU9q7eZ3V8esjPxDkxJug-ln_1YuIwJBqpdOmx-lHyMW57KDdrL8HB81ftH_npRWQG1QiPVTuuSi4J80MrReU-PbnbrwzSuzTmIIJq3mWMp45jzT8HZWxzOMqZ2PmlItjPllyiZBKjxDMTvjcUvgMvbYb4P7Dc4TSe_15DRZHjzE49X-xMUAZX7c4W0b3vjQ1b4-TYPK728DqA-quzd-5kUhNVfGd7vMq2RsCYjNpIfhdXBLaAJfkBpP58xEOOhHfNMWNJTK7TBRFA4xjqP81xqpnwQ9S6vklhJAPmH10tj31S6Y0g_H-sWVKjsHrbK5e-rs53WsQVbH-S0SopTKgR6hv8Uwo3Z-vkquGOOnbFFTzugDDV_Z2Bls6K1EaJQglofH1Oz-ze3VA7f3q2CWRWJpjJxIF9qLWiFhTFo9Ab6EBDsXIQfkta9flDPyQ5A3OA5M1B4O5OILLkK7S9n-kqN1uzUH-K2lW5jOHh0vZv3EExv3QmJNahEjkRTIc5nVHv6pYYXtwyyzXW924Ke1wR1ybV2edXxFc-m6ebRUjPwOQx_EHQ9J_lsYn98gEZ65rl5hcbe7WqKmeWKWyh9z-NxqOIYhkob8vy-oIvQbTyyzzfyhYnb-QWoBcmwccUT4ZW_a5lzSZy2eiHP9GI2f4mHRg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679dca39479847-65592202','','','2025-02-01 07:17:05','2025-02-01 07:17:05','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42140',0,'cd-form-entry','',0),(42141,0,'2025-02-01 09:27:07','0000-00-00 00:00:00','{\"firstname\":\"Alex\",\"lastname\":\"Rosser\",\"email\":\"alexrosser@ymail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tYxSEUq5ovnD8d3Cwdtfayn&amp;gclid=CjwKCAiAqfe8BhBwEiwAsne6gXZl5PZkkm4QA3Wpuku_0THMIMxoF1poOnW6tBzNWT75fomuiD9pdhoCTjwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4ox4yfUEcwF7e0laTm4zorTWFZ-1rTSyNKV5Pwcbi4GOyfbJlE5E0dLKqsnythlmghSjn_vBB4Zl7sYVNMn8YTlLx7EhNLXsFKBLpblXmKzZ8sLTvaBWF3WEqD2_Pi-IuRjt3dLyEFhfkjpn8H8WjOsC6WIOZGNoyDF2aVZ6dF0HMafl9UGwreJ8ajegwi1pxO1RCuu6xlfTLwBnHq_Qm_Mj83Io1lhjjwyhoqgP2Scfavq6iuaFGYA888xUmgMCkVficNkAmFsXhM271YGY34HMtmyXYVzUDTmq0des4aW8Vmjo4fHQdw7IZwKrebr0AAEaZ-8QSa7phwA3EkQx8_vIiLiAiMVg851VSm-xLzbvDK7_SjGQos6MUniMGAP71hDVUCkmxOa9BY6Vs8NMHGv9eqH1cfRbaiu7gblgHPqAJivdBIQYeueSTPhrzp0M9c8YZYlpsjkZvdTWZtnbvR98DuDCAOJ9P1z0VlrdQDkUPjhFiKbaWqcRgJM7UGrlBNKG-j7u2zpxLVPGyi5CjE7waAH_Uys8tP73s82U7bmd_UEj8Z_hJMNCCEFePA4kpPOM-k1WPfXYSJ0II7W4or-a2KE3y8AtwCmqK01lpAW4rJt5cu4Z3NFnQ7-3QgkefeoNf8PgLk3Si7um49hK4Irt_L1Mb2u-NHrLOtVq8LRtfDikZaPrx8gSlBxZZT91HxdFbgSOIXiUFEFMGiLsOg_LynpvTpS1nlYXYe9g4EorIgY8ZjcEGk5FFWsbbxnx-BlQWjbzt23yJzPU8_vmR9Mpp3dw8mk2ZfzLDvUi1NP2jvapaTw0HkYdg6wWZURRpOcne8oOxf-LsUNpJGIOZbA-mUvXYkM58hqXSmd5nJ9VtUBwsLM3N_bpfIcQJ4ddhDyXzNCJ4zIMsOBbImJycxCsu9Oo9HjWQGbj65hYBk-0ksR90suQefXhF4kszHZqY86vJBrNn7e8TcXCIOPvYDse20BzCqaj5c4xrtK-fr4lAdW0-JL13AvNHkE5tRtxmTU05z-ZtAuf6Crd08zufXMMNJgzOVjPkSgsXw7xCApnk80RQKzX6CPfhN11iohuRJPksgSM4e-oxwKgjorWXTVUDJhGHWkNofPXGzz_KALwOFihBtksFZZLZyVYSK2Jh0YrJekcdXYTlptbsdM3T2mCPP6M3zDGb7MpMougt-XVkC6vz_CzwwNUFjX-Fyo3EH2stjybd1BDs5aOTf_C-AT4XXZanNOBo9q9tRgk0JUK-pnRC8_Nz9XWI5msGhnFlrKIR4QbOEnKMNgyGBRk0f6vQptr64pvO7WMIk3EssaOInL9SMl5g8-eIzIclwcIXXlulQ_LuSZhJB5vwwmBnm7G_-d99CqNDOrZGI7I92Je4C0NcoMg0hEG6DbQ_PhFGlnWKrSSNwgS_5LRICCWChBqognArtZ2AZCTJu5BLbOQbXHf4sTkYEb9nCdumREbL552QNx5WU8wK6kOZo7kMw2Ve41pVi8F4ZFtuHxmdXZz6vS8SihHYmdmy6UoKeUD7w-q4Hvm_FWDtu34OGnXMx7y-7VfNPHo5sCmuaKkYrLrmhmjUpEi9sr2Da8DUsF-pMbw-r9Yy6pnSK1e2xWTVX8zRG3mQPOCRhqSzs1i2Lj2cJ17roxxoCsca84pa82P_c7Daseh3PPCxqGw7iyf6XFuETHw1SRc47Mh-i9dfllCwRJCVtb60qVpvHVaPZlJRW0VOecuy0z1Z5Bpg7BLyvQM8xY4jqFPya1B6UZsycEOFwc5Y0JNznSAun_6JuRNKohGoSYeQ9wlNV1DXQG5dQZFJ_PWFTQHXmxyWMf4V7zy_eFUzihiTJ2VdVh_rCpmXQPlOwJaEutf-S-iP-rxMMKPueuJ6P1sMALYMJpVNwvPxW9D09HyHRIU110_bu_4rlK-TirWKrs6EFvyc_TMLD00_z2MbOuFhFsY1wMENvbUu_IMd9YN4y74qIEm4nbS-tejb5jVqNBA40KaLCyClpXBa7I1jUb6orE79-fWd6FqknmiWW544GH_W22VRBmD60DV6gFPRl5bdx_K7yj35CkbGihKTMvzcuhLUUJOHW1p7VAKc8DaO-xJ5WgROsAUvvPTpF9Rb-4zHycqUtsBujhR04Imd9wCmNt-SJg5XQaNvYMmdG4XDX-g9GR8GTjQt64UZG7am3jIkKnlE06phfGOURH__3UQIYUlC15Bl_LmOUsQr5B1mYSW-be2ywJAX1_Oh-wL3Y4mC115z8j_avJpl8iHhl6nTN_JctC1KZkbuk9wLHUI6MhqlUskEITgIdIvVPOVfN_atksG3FKhDhUl11nPRk3367UrEhGuypC4TI_TJSZcpAAQmRL89cfon8R3niabayBMsRH1MZcuu6vRJ21d3ydldsX26hHPFCW7VIEd0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-679de8d2574ad0-38176686','','','2025-02-01 09:27:07','2025-02-01 09:27:07','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42141',0,'cd-form-entry','',0),(42142,0,'2025-02-01 10:53:43','2025-02-01 10:53:43','<iframe title=\"iMoveFreely Breathe Introduction\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/fKhQ_LdTUAo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen></iframe>','','','publish','closed','closed','','67c38e0f65b4ed34ed0c27f9225d4a92','','','2025-02-01 10:53:43','2025-02-01 10:53:43','',0,'https://biomechanicseducation.com/67c38e0f65b4ed34ed0c27f9225d4a92/',0,'oembed_cache','',0),(42143,0,'2025-02-01 12:49:48','2025-02-01 12:49:48','{\"firstname\":\"Keath\",\"lastname\":\"Lau\",\"email\":\"keathlowwk@gmail.com\",\"contactnumber\":\"+60126967483\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4PpkvcvTXjlm11S5AThAb-tYFoythI5B5RdCDjHoiT5yTF27sIVoNiBfVHoLnq-KKP1dizGevKa5FPn9VJ3PAnDYONK764wzTaCrSscJ22i_uAbHSnfEgUDHPGnpNMqDMNeT00S3VRQU0EAgHRClI9n2OpHWtzTPrsWQYdD4PSRiN-z4B90lk-5NftbNKzn6TZfjCOG2OIpC8wO8olMTS9JhcGqU7jbydMtZAiR5GCgCk3pzflTAU7rs6zTBGKXOPFkB7stvse9j9JlGRekdfCHO-LpMhIa0GrIbbst0HrHWL8clGpKKxlIV223ZpwsZPJJXPI1bVv1tdJn2NMWFIZ5Pkp7hl8al-bNo2p--R8vnDz5MqBqS4hl71l1zLe4H1IDWxz-A9oMiLx8PO-4DJQeoC99cqRmSazHR1q-mE_LhhXvqGrjE2rV4oc34_vW7Zh6-_0NxU2mXQbctepxPSzC17jSYxXvU64p8OKIbe88ovxYxy9wwS9CYrTwPJOEsnVJ66Tam_f6wqYVfEKaW2IJG2dbC4d4CCjoP981IphJHPSskEXrNmPqTJWiv1mN0K1U4SRpzjaO-KAQdMS87X7bxozGneY8nIzpo70B0_J5VroMO7JDhQbmUsZLU_R2Dl27s-Sl1FmEkX_S74qKCklmRCtISmrWK-918Sq5TVglii6xANpeCoRl82z3us7Nea4im6EIOHXRqWkEQCP7OC-Ka4b7mVjMM5RhoeliuAD6E3TQ_ZYPQg9W_850sVh0TP0zj01x6JwVOx66euq_19yG2zRV_IHYcJlgaGC-gVbNc9Inoy7YtOBwqISEuP3e4PHVw2Ci1eryntlbtYlzFbg1wLsFBivWbl8VaV69171a3dz5smzV4MQB2nNS7cldcjjCzxbyxAgOCchziJjqVo8pqedtrd-Jlk4OCmw55JIlWPmAm4iuohCXw7kfJahyZDzPDDWsBTIt_Xa70oshyq3bRKZmTa51gJ9t3p_Mm0UPOI0gnffR_enXxqos_cNDYdRiw94K9eDgnwTxIOIN6kn6_zqlBtFkPBUkTb8cnNpTSCLX4Q4_0awd8HFRwj96bWC4u0wqE3lCIKW9fIBQOID66OxGhygoxxY76u-OY-GkhcgOoKxHGWd0Obdqvf-NZ8yxC6cOZaWbK2iORD1g3kk2nQjgclL7O3idunI_6ifKaZb2LX8PLi2aEJ9Gem3UPsq4CSZ7m_09fdL5VmmbcaswxCK4t7nSjHAsDE5wh-IzWD9_U4T-JLXUaRP75NHE6BupKDHnCpJRDDcANCSC3pt5gRKrRrPyC3obu9eehKoqgKhZvzQl7pkNYQkhq8X1_JIAPmZbm7hHevcXi7OiULf6iT5vjQX_H6HPnm-nM038wz6iRqbkxKHAxArfrlnBJ7lVsrUHoOOXEowNVxfuKB0macrMiw0A2yzqEAbD5Kqkk7oIhvMVgU9YDDJJSDpFvyTZz0q4azAyJSAkMYGc0qYLK3kOioDAgicsv-JdPHXJUmgE2BRbA2m2K2e7U0N61eOLf_iNxbCG0stU3JTNVEakrexnsjBQ5vvvtIFw0EIw2bBka7of5wBbQxFibng59i7cCNyYWW2KJwbx78iOvrbbQzep9_Yq2c1ZOTqHUetZhzBMMRy0MVS7B5EwBOGNdy3-zJ03IDbTwuXLhvv5TP2UdZZ3a_HRcmRa8zgfl9iLM_Ok5q5SwfotZ0ml0RX-dTq2GJRRHEA67K5JT_MKMRCKOrIhE1V5V4DrLJiDK-6Wqve-j1ebs6LKsqo_wZEpok7Gd0uoCfNV4pZe_85zZqugq_FM0YQejlFNvU8x5sBymNlfxNtTP1rdvyH8ntRru1tEMYlDpNndi_vXTclb6EQpnse_XHAI7Oiz_AnSHp9AJslNGI-YklPPlJKDQNhLeiUUWDPFV8CzQ-2RH9kA0gtJHe1ZzAkjkHpV-LjXfnxXGbI0yAtPvaI8_xW0N1Ehv58fyiU7HXl0LC_R727CxnNbyGgqCwyBQapN8AhU_5t1NXc9OipmZCcVrcK8Ka6nTJqiK4lD5Xak01s5kTuo26Kwn1OkXRDV-42aoluyWZf8cn7ILj1hYBcR7xN0ETWRg_0z6h0j1Rw1n1M-wlc2u8CsY2Xxg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679e1848a491f5-80182016','','','2025-02-01 12:49:48','2025-02-01 12:49:48','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42143',0,'cd-form-entry','',0),(42144,0,'2025-02-01 13:22:51','2025-02-01 13:22:51','{\"firstname\":\"Chloe\",\"lastname\":\"Wilkinson\",\"email\":\"chloewilkinson1001@btinternet.com\",\"contactnumber\":\"7412958029\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uaKoKWjiLYYEeAAM5ysCWsx&amp;gclid=CjwKCAiAqfe8BhBwEiwAsne6gbXV_Adw6WLl6sT8CGKbxZ1XHc2dxtHFE0MM_ynF6jMISFjK3qj-lBoC3u4QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6_vEs1h1ApVL7XLLFxvDACruR-wo426FykZxwMnUNRV8i6YDBCoazAuqyWKVLMxxK65s8tP2nofA-uTMbVXSfRFAney9sugplvxtlR8ljDkhDW2yOTTnkx79WU2FTnvX2FqtKjTYl33da6cKtX08J0Y0JT6hhPlbXFUSa4zyU6zC8N4LM6hPAkfq4Dsnb3xjjR4TJyfcb8rr62npIBQPi5mAdoI1HMjIAsD9S9uEm1QWtUU-ugvjVmraSVm8QbpRRIwGkixcJduvRxg27BtIu8uuCV0I8Ce_NHFY1RiGkXIYR3_dTfoQm1m4KbAAnIDF5PXHd9Q5aoE0aTrxwcqrGXPgu2FmCy4Nt8x28vsXrJKW7O9wXYzChGFmhINoST1eAEdm63zYXdsBMy6nm3emvtQZoGiPsMcNX_wgYfQk0lJiRotmUGgqU7DTfGSsFlpgrqHFs55CqmCF0ra2uwYTSvkYhmMOTTXBsjDpztsFfI29aXLvfD26PR9_l6pHwNLntmPgd_1-DitCH4yvp-YMBi0Vkt5CurH8tvwPyBBgBg5D2nMExf7HJ2zmJ4DBii-LKfEoD7jflC3iOKWR_n1c8zgL-mEZcX1OWpqWk3je3K2pYJJWIeFhLJeibb7bbgjZ5g8mdrs2K1nBzfmxQ_Z763NXsp98Xo98HGlyLTEp_u9xbWgDxBgxvMYZ4tm8ItRjg9ztnUCqyzV8nf7UEAKrWgKixjW5OGMhphJQYleQEv2rVaat41CwfWcl16SWZmvdST4n-BVDydgpFEAwKTuenhdavgdjmJo86N1doUSJyyaETWyq50t5SZC9gFocnltDVJ0EYB_Ky2JeK4dDDBKwXFMa-NdMWdq5kbrgEspa1aY7mreoeIlyQEQB3DANCqoM8qJFzVpx8V9oD0tsLceJNjS-Rk2XW7gr3qPXCXW8KLLaGDLh9LsjpcORBo81EmUDE2jWiX32qvJP5CYwTnJaOK_RKjQD3amPaEMbA27bHpWfctgNk1pTLQAYvGA_J0qa56Pmu7CrsnthFHmLzNf5Eo83VP2gnqZLmWCAoVIZd3hnsYas6MNHiUwzLBD5tcCq8RbU7PklcBJfbAba-mf6hEnmxr2D2J4nfN8Qqg7YDitl503q4b8yoEIUD0PW04U-m70MOouEBHY5NvncwXG7Xopux4jhi6vica5D5vw6NpcOe1mvPS2Klemau-Ej5CiIuPi7_bWXm0dQYoB-QgYHURhlE88ngY_7uEQpAy8giBnOcWIrgrYCWgwZLaPnb-ZbX0ja72Yi-GTdSgjzxchusruzxCbx7wpQ5c9eKB4aqElY6F_z24qAxDCPSMhfxlXChvvcmBp3mR5jCfoPEy6j3HKvaymPb1sd2VlneNjFgYf5q1PVeRSY716fhjQcqHKPcnvKgIV-Ozrxu0A81dTxRl_DTBUAOMDjVy7BdiArFxqD86ae_mmyerDqCMPdlepAzOO7WleJfjQYbPfvKqzEGR8lD-VNPkKRvnqX2yP7YW9oXwV6QtwaataMo01hnH90qxtsUNw4z3Fit1pRHpEkyLeUrHxBxN5xrdH5ZxaymUILU3DFN4UjtJ08WmblEnA-6fFZpK_x_YItz3RjytctCnNyzlRZl7flI0bhTZrJZEv7gdVKvqnRYvn4F_Bo9ZgAbH6NkOaNa094ej8YN1nHhU62uhlDviYVk3OPDThwnZV1J-pgFPvcdC3sHUuLf8HbIJYIpMx5RIcfo7fmFu15bYvFgIf_o7kuOxd4rzBVYXmbQrAwzy4W-t3XQFB1bSS_QXfY4K9llW_EdZFRTY7x_Evpjj6Vp3ERUKvBy4fOKltueN_gobBzEX7H-eEqGi5riUeizUvak1lRUuA1snXbhkMwEw__P1BNd2xKbNI7CY2K7Dt-NTdU1y1JfH5RCOXLA0Dd9Ho4PDES02_4g0Gxj3KGG8dC9y0VWyOrxdmFJASQ_phgP6p_-afJa7ljPI3CjUc6jses_aWeSJf307gre_8a3lWMA9pMQn3w6BazTDKN-l48KxsqvujRxk9G-yXshvAHkeBiKWDmh4QcsyTeMqG-v_FOo3G8cSUtZ76ySm25e0GA5X6iAPFohYCvKblvpVfBifU65Nq2PR1pvm0-t_CR3jxz2bJgqns5RWd-gSl6yrfIQIGR61PpQDuNCcTTfSVkl0ZET23ccicmOlYPiDKABd8gX7R1WY4fSZ2JS52iJVidF9GtaVZeX4mJr98KYPhfQO7k1XxpT2aOSu4zklQWub3yckCtIM1Ag14IS6Om9DqVfc504ReM_aCZtErMr2BlSdqzB_0CM8d-UJuIoseY7X5AXVJmRpAZdxsSubC9XejVwEY9WENj7vdByPdJ5_Tn-x\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679e201c9a30e7-72407684','','','2025-02-01 13:22:51','2025-02-01 13:22:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42144',0,'cd-form-entry','',0),(42145,0,'2025-02-01 17:36:06','2025-02-01 17:36:06','{\"firstname\":\"Cath\",\"lastname\":\"Wilde\",\"email\":\"wildeharmony75@gmail.com\",\"contactnumber\":\"07979973645\",\"pageid\":\"40778\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5OsqT48CxgFFcGgdWd2A2QWiZY3UKKm0kqgYKKMMEX8PvUgu53kvpukAum5dlvRG9yYgcFW97LpJIVx-J5An7XJF9WZquhGHBs60YkamAZvM-_erK7ni4GQTnDYrCnqj03ziAufYmO7Oqr7Wkpc_kSK3alWW0fYNH0QocW1XW75RPWzQ1xA3AnoE9Mv1VrjpiL1BvEvwyozBo_rAPqELG5by5CHbVMOqEHzemGTF5S8oRllrreSExUKiFht-X-lfav20AldvIu6wENH-eRt_VVRzl8wqVmtY7lTZ3L5IxN7UvsMJ6CwDxufOGBbQXyqidpAjtFa-cbTr9B_BnE0_MpITIq8XkA-sRXKYWAan0dbVE5QtlPvi0gyQZbW9-kR23qG0xmiFwrMdxVGkwqY_XwA57dAmdCaj5xn9aLZKarQjWm4kgq_n0ViewwMIBIqi0oMK-aTfq-NPO_YcbV0exIgG4Tk0mgQQcsgAx7hIKEdkJsV6SaCeo8xwJ0MLp0BY4AsGXpTk2U9Oy-rDmIZ8sgnW-Yb26VpaqDr5anhkEN1Loh_O7uhrxXVpEMRs790GTPuOIualXhXFzqTgBAE0GsxJa9B_5LxcuCgN-AMlxr-bdxv00ommT-YKilJ9vQM3hwsvcZQbPiMYCu2yyzNrGYPtfaZ5o6cmtkJfAodjoSjk5nJ6afrl7TFB3-1D1z70MEMUFr1VtWJJTB1PYEGK2sDCrIe9fGFhDWbmi5FMwKMMRC3w4mNbWqWT3Ph-rW9BpJJiVrJCP4Y_g40OOQIQieHVd0yyt1pmH2I_gjikWsvhllaAxSZweEtVgfgRnDMK7xE8pMUmy4LPebSZDATa72nhd-LhNGS9QaLf4NIadpKB8ygSaKuO97CpRh5dHvS7Kx12CteVdqwUsnuEp3KsfxsWYtD_c5uUXdDvBMB_t6NrB9mtJNfYPUuKtgo9IPR4am2ummQQ2JsWYtcDn36YSc737Fyc0kU2vm886iRMD9p0K6s0q79EIW78ykVGqDh6mps_7ca0kfLPlKGzE41sSOFzBvTheevhTw8Z2ZXlNHlF637d9Bj5UwiPMZa2rpE0azNXJrzfh7_RG_DFv6hXpZehiqLCbJApFShlfh6y8FeesmkHzWX3Qif1jprATNSw9UpVH1JmVSBjfz4vsYpo-yBqAzktTrVY92p5h0EZfkuGNYeMyXBB-fIMqQQODXNglusxTogkeL16Ws1Cd1ikBfl11ZIQeY0CPpYpnZ_HAE7TIRZ1mRCu7W95CezATE5AaU2hBmbZc5DNV2OBXykx9aJNTzbR4kUxIq8oO2jcoCE1AqAB6tBGOQLZ_JS4J60gJM0Ttf6yTnCqahkJLRYXrv0ctQee1KZfrNMVlHTXueOJqpiXThTH47g1lxzqkz4-_aToV7hlNx3Cr4NTfpKuIJ5hGbCXCxJT4WkidS-C7mZcUSr3v2_XE02Ow2VdLG4fBJ_9WWsrGJHzVqFxjmbZeCMRAXLcg_FdUNLmKurOeBiqescMaleOzIyikoFbVdjzwUbyBsD6O0G4EDWvgMMWwqFwPzEn-IpWxNQfiGuwQfCGH9xnUwae--jwNHIm4ZbkSh2j_5kN8z6vbRzmptMqi791qXlOFdEBntUkzX60LUETvNBCj9co6sVMyNFbk2iu3y8VDgs1RgyzfRmIsSOL3yJrFuMVUBq0tBd-j8s6mfYlK1YvwZb98RDsWaPYVJyiQieHXrk51MGyc3X4U-OF7epI3U-hDAgZn5gA_5qIsjq3NomM1d86hCY_7BB9xivpcsASaJPw9ZghXol0eWObq-5Pp5M1GikDcWC6CuUg3bQY7-fzSFuMr_WjtzVZJJqe9d25sycX8Mx0ggxh66EcFDa44iCLn3183JKUkRlsNQvprFxzYPZSKhAzAjS3mFNletsBnlpo5jEjCyavlil2OttA5PsI10g0jOurep22egGNLWyb7SW-TNdHBJYC57tRURQq5uReeLGOcXmD8Qq0__VoiZeaRg2RdW5SGf24CHa3ACGFd_K58JtS4jZp5E--xUQv8V97f1K4wQ0FkoxNCoioc0bey5RA5EsPWZv8MkTIyIGmdlAVZrVjg_HRs1biVAQhIV-IC_HUsCA6uiXfIM1cYpJA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679e5b6b38df32-60279831','','','2025-02-01 17:36:06','2025-02-01 17:36:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42145',0,'cd-form-entry','',0),(42146,0,'2025-02-01 19:12:12','0000-00-00 00:00:00','{\"firstname\":\"Kirsty\",\"lastname\":\"Birrell\",\"email\":\"fitness.inspire@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/?fbclid=IwZXh0bgNhZW0CMTEAAR2KicVoTdYoLwhleglruzTw3fVL29fYUMNruAru9Y-27S9TZRElXCwkNh0_aem_UBBV-GeqfsInCRqmwp4hIw\",\"recaptcha_token\":\"03AFcWeA46gqjJdj7J9qy8YzIDi-FeHY3Ph1wyEIahWn4BSuasrM2n1Mt9JN04kAxM3PqcMrGm8OAiVbgGwqccKDRvqlsW5ZOuYa6IU2BP-b9WIyvBFQmyl3fw3KxTLqgng5bQLugq4ITY0DrOLq4p5Rl1gVGJ0X_CbxZl_Zl-c0WEZ7kzjde88t9zoLpz0UJBUyPYU1BjnFVUBS2NXzVQKItH5K6UpmC9zEbodueiMZ_tkClgsFlljRG2SR1vrYVTIsE_9b_ivE-LaDnVqWMEhV3fkru-anoBtYcIvE5MSv3kdp4dyXhi3LIyT_EkAXOy3sfoAfJdMhWeFyPk-SHzgaiu9ii71hJfHNQNQjuSycZmPcfJvuexe2lMQcM3Hw6Ao_TBKtVEWYLxgx-B0OTPYpy7xya_DqoaYRolEs2R2g-3_2-Zdm6LQvJK1WOTvRg_x3NYkZPJjchWxAr3BvalAyGfoeIfYfXvqLa1fnBfBEh8txeGPqAZP-AxH_EEaoHmwAnb2FrnX8g-frfENEoY83D372DcAadwhVjBaFU1ZexLkP-xHfn5k5HP4j2CerLXRkt02YWGQVZvPlEqXP1b4dLoeN2_4tRLyzg7eRFuXfgZaqsXCpIp3G3hER_vBsIX_dtZq0P8popw7PTveZZUFQQYfKCXV1CkkZF0g-ZDwB4GkM8QZbuFW5jhdaKgsNnoVE_2VJzMIzxmS38DEVts1Z4EX01Cx3ZQO6q1MUEyaYR-c6JBGiGG0TXtY2Se6ZAZRhtlKz5Gjf0HgLl-cUzHAQEkrUjCxCNiwDHFXjt6YK5Ge7cM1hgAAeRMcLH-LSDKqCHw-bdC0ZFrrkikP2eymJIc3bgAY77knlv7Qlyuy5bApS9JRxb3TTW22W3io3hPNw-5cHfCnhlTwDcXYWB0INE8KDZYwjl8BEx1fxHFli0RPL3STKYPO8OiSEXBzWogU2kO4JbHcl2qn4eiRDyAc3FnXbFlSH1l1h-9UWVFWNZLp2e7J9s2zn_tELB3kIyJkfouFRo1qWRzqiRSR91oQwhgLZdV1zdT1JJLwYpBdZBtF3wnpAEoEWY-fdV_eCVKtNlQV5HBkgk_d2qdOOXwPY03YTlDPe-erAPjldvxRiTUFtXGoKFklrL-cv5NguKwTtQXSPkiRYXrySwWCHxUmV8AAuLpnktQ_DtHuw8xRBmEPuApfZY7_6LrZEkNpYTPaHKJK8Z58jTPHFDyGfmigOnjeqKF-1YvSBFnYGnECZ8ZBraBeuH3dDv4Q4b7E-yVEt4R4TqyxdGKqRYTMfbsgbJS6Euy7VmNYmQrRymbdt3pfv1-aDa4jkKSUyhz8JEEnMoKRNc8Mk0peQXUcK35fqYdqbr7FtcYy_LR7aKCOcgjJe4lAB6ZIxC0VWPTYNdA0ooHDCZG8igzycscLYa1pZNTV5_jp5JZPtbTKolqun_-m4LP3Orv8ei2eUIWcCt9LJjANShVmtf4YMfHPgvs3uM1XTIS4geJ4me1AxQfmy6d6FgwpJfEp2AGb5tTpXRQM-A9eoclpv6PC7X4F2QHOASR3o1f32ygKd6fGFX0rdPY_KZSpnPgpGmFmcDpe4hrEmtcNlQX62kK-zLKm5eKxh2R1vk5wSefNnz5baosjzBePnKhpmFtrFKbdeot8i_dQWCoGEZhv0AGOTIzHws-3VSKc2r8S6pzHQ1BpDAIEaUjejbwtl6nFXW0Tz2so81bP23Uv1h-MCZIlDRXsgncllpk4pl9QCVLi3dWLkT9qepjox08mEAx9JX2wHFnUw9fm3OZYRRZ6P2rYHOZL6K8Wdq8YIXuxoMdN647fcBHhW6DZdYg73rb_DDXX93SjY9y_NsgUT3efcPtUwPbeOAuRuKl9poST1edbdxMgiANZM5B3087gTB1eSSsAZLwVdhL_N6L3amt73jzQtgcKvBdhKeDPtJpKO6MWkiEQE0ZUb_7TuG_qecOjEJM7W1pV569Pqp7M-8RIzcNMquTI9HlQJ-NRHXQI3U_Ku8ZXgPUT8OgFmxkw1_scY5nDRxU9HwuxpCaTZCY1IU7nHDChqFqcbHeMeJtOexLlcvHmzlFQTOBEFsWwxGi4MPZQHqRM4lmOZn55LzZgurR\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-679e720c8e2444-52596415','','','2025-02-01 19:12:12','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42146',0,'cd-form-entry','',0),(42147,0,'2025-02-02 12:17:49','2025-02-02 12:17:49','{\"firstname\":\"Rhea Maria\",\"lastname\":\"Tehini\",\"email\":\"rhea.maria.tehini@gmail.com\",\"contactnumber\":\"07932684646\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAzPy8BhBoEiwAbnM9O30pjSf0lsm1DPeRHkq6MW_j3ja_TLbcLfKSLL7Lhg7SXn3p5gMcxhoC5eAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6RHb63LUgG0y4gvx5GkrsihG7MCo9Rq0og-97mOxkQh8HTmq8d7bYJm9EzxYZzj1OhqIOeHYvNTp9BZByLRte_-SFScvHCAhaVrgxIV1iNHIaVFvqkY2DdWbo8DYMXthWYhhoYX_8oGfVurOCRZJEViKq0ndu1G4FLuAMoumKuWaP9JDzXRnLUKGIAiw_7eyRpWDwRkGikxK6PJfn90SPqqp9JUhX58nqOB2xg0rQTGSLgDLqf03Yb-6bVkiiEvki1Ef4dl5cfi1f1Zn3bmMCHxzP4mgo1Lef9nmaibZAgjRIommygRWToC-WveayqkYYlm1pnT-WZ1AvJIpLTgbtPV0DV15X2_RHwDUenUPh9f1asDpX42qlG_QSYjIG9TejUwtYm07tPXAZ5QwctinLUOTgm3rGI0Gc0Y0nbGjd7bHoDA078RQT09z-JTwxYezP2N3oE3u4AiDsqbSQXlv9PQvaHeVoqjl3VWgObeQAriUQ1iUBb7joG28ZF7FfxE5Qp2IacfppF9_waTtS9cb78umW9J8ZDtJZdNO0f90J54Oi9LfsO0B4pgQVHZYvswbNXUl6ETLR3WDsYw_EsIG3tX84EN6K7R9ZtHMLUdut0DkwbfcPcznG46s6bLAXwVkORyd9fg_xdOMiUBpH0wPcPGAkbUTY6kKO6iZAJp5aA89H2ytkixEv1ts52MQN6mROtuK04VuNFgobjTSfcV6MaP8ZoK9PV9lKSC_I7dyA-qgjncUZyD1YCm1Jmiczv3xZ9lf8n3o2QlAaOHsQM6VQ8tJF76hprXQ8V35tI42zdbX0kvPBMpqWSmYGvd-zO7pzUOmlArIKz0IWeaKY_Y9_06b3ERCBMVfs9xTJFiN_WVDQdKNw7Sk4T4j5v0gnepcJggnnPF18RorjE-QyIINT4ZlOXoFFesRBDhStWYo0i9q_4wFHQ0uJGbnl3EiFIg6dCH75QF1FO82RGcPCLd4HkAhSNxIQ-1wgz_ic7w44UIsK5M9J1GqD-eaXdH9amM6tb2NqJ-_KGh9t210ghOqgRKZfzjdarj-wsEBCFoXQB3NVO-T2FuRn1z1Tpo_ao6Fd8VI0B2g7soK8E9yhNJkl5wFqBAbQB8tOZIbAoEuf-3jO-TewXayyboRFIz8M7f7wLE3PFfHyJtUzN7q67BSNdRRlGrbUx6DpzK29PzYb6Bt5ngNOc7PYELP2SS0uKBzJ0ebdDsqb4VwUvnNUJCiCs_T6SGsINPrBSAC3H2x0hCUeGqfvZeVX1dfjogNP15FjzLm3jtk-DmZpDTb0vKpqOqNi9fwJw9NmsZ60vufeVKeIbMOmc0c8o-4iVUyTJovigngbbpE85ZMtVq_hNKg2Fz6k6x7auL4Kt6TTpaBlXbQNEOn4vfh8aZs2U7uHd97UdDldZxmVqVt9SqzEzZW62moj7udTDR_4QCnEpOiJmNJgV0bHk-lezeRWUvg6vefhv5H378K_dSMfSAxHixmEhj7NDrq3oI8gV8CK0OfYhzBogqdQqO_2FcKuq8dgd64gCCRJcpbhyZAwaVGx8KcJINiFZb-lxWHydjKPljPrHAvy9W33MucK74CUqlsoiXgEskiYFlnMDKqsbgAwtctO5nDhzAPQxSkDn5wall4ODXosBbUhmdXL8vIcCFq3TXAqyx7SvAv33q6kPx-7RbHvvVXtH4SgM1SERauIeHlT6cKonLbHiadHR-PpEjaV778C9gC7J-VW-F1XnCqiNm2J0f_Ci4hR82yuU4j_N46f40LMlmIiW9ybsZ4CB3TeyK0HNlkGMjNk-Xd7oDQZ7gFqwYB5lKRWKXvHWP0aO3NRPFuub4UFe372WNNCDwPaWBLzTFxhFWzBdAlqfciW2-IgNOrcLBypQ-aY0BHk_sK0xPYgZsTBKqsOK1CxIussdSmXRUyp5NlztnYsItZDkwYA_vALSIg8TAPFKVA8srA6z3HY63Txs4p412tRI9jPZX9Sq5iioii3By5ZgLoiPIduH2EN0WsOey0QEpaZ1qcgGduUqholxDH4-O6UuuGaM0u8sjNwWlyhtNZoCrc90aN7fCouTcMLuYO0Eiys1ytdmPfEGOUwsDdB7cD2ZDOEeRfiYRbDwZ-W_px43lcC3pKRahuWDzByj9gaAFg5HycTmYEpKGus\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679f625a776c98-56486470','','','2025-02-02 12:17:49','2025-02-02 12:17:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42147',0,'cd-form-entry','',0),(42148,0,'2025-02-02 12:20:35','0000-00-00 00:00:00','{\"firstname\":\"James\",\"lastname\":\"De Silva\",\"email\":\"jamesdesilva55@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAqfe8BhBwEiwAsne6gQO9Bl6vq-SJEbNpoJEHbUJTQCcu-nv9ahOGHEgdRelfXpAk7IFahxoCjukQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7BxNb-PDRI5YgB64NDTpsXmgI8poWivemLJTy3OtCcOp2_Krjc7KOo2QPwBTi7gN1s9YDSgVmTrGVDLwpIEe3iUlLEs36PW4Ba2C3JpvSO9bj9__ysKF4Tj5Eg8gTM7zAj1w9H-RT2NGwl-VpsOKQaTaHBukrFAUtRqZe4WHjX9jS-3AWJdQIo0DYy_fw0u1P1qWhBMKu4yuh4qNb2_PJdSk7Soc6uzQcRMREXf3RjxxgK_x4Ilfku5Fm9ACLsQbXpPay4NQMu03uxC_WBNYiJkZtCmtzBYMXUWa4illD8DBx1QAmX0dnp219VyUKDRHKHS_PHenG1754OuG-YeQUYQFk6E_zhszQ1uDzjHrENeZaM5siRpmp0uqSGj_-2nVr1JVMU20iLu9fbtmxeXP7s4vyxhGYcfSDR4IFxizhEgCSAM3Z_XoAC2poCBfjDi_NQXD-LgrT5if1NSGIbRcwwA-CGCMl0c4a_QFduKBbG1Z5FhMnWdWre10XEUuW6nJrNWBSNfPEFbT1Y_h8Ix4mOjXTluchgzfUPLp9b7CkLghUhPbT4UmFCKJC0FRCeHhUndpBSU0zmun6R1j-xseKoQ5PPkwCCuiQPFspnbPYwE1ES1lA0knvq29Y2P5bUuYcBme7u6E3rHplTGS9zqBOGjO8VxRObSPoD41ziTONJXIaBoGcdTVez3WncrOwLQzmdjrzSk6bs_1VNl_lWx5BIKrDoQAoRwMQnPxFL8CYH5IG91Z5EgW_9_J6fpQt9bwZleOmEjO7EUO7d3MO44wyIoYnGe_2c-qkF6uL8ZUS4qKiPwN4CNya71G_Io5x8W0Da_6-Wv4KAfqqiLV-iPKcCJTVzUhV1LW5dXnDN2k7V8ubOG7ujE7lbbTdCDFzl0SW5UdY0rC60F-z11d6_rVSmROx4XYaz46KCudjNet5nccMRhP92yQ2p0gADyQxC9-ct0Gp_1IwPwnQCv6ikIZwi8Blc3DWPoHeUCKHzUsJDN5DpcgXA18FDYX4yKI_P0YZj6L9gBvFgo0G2q1knzEJLgequJtwzaDTDcOTmRomt0h1ZpPekoETXqU-KaAh0yT230yAaH182hASeQX1vbZZb8zFZsXoJqhcpj6efadWB5fPT7bPs_ko_BE0k-Ee-vonACVsZRVN3CjWabHsMXXiE_cGnfKpQmkeraty7fk8ObP_m0muv7bWtsXMrjg5vhtSphm-pbqiL78LwD40j_NJkkPhvHUnG6McXk8Wt8w7NvjJEU7vl1TIEuyIZ_FSH38mTfHXncEJkCGfl9p10yk_MPBfE-ar9fOBfri7UolZ8V2hpFmo0xd0Ai_rtwMiMuvrjwLOO_FkXLnT3R1kP8rZOhQAwUhYspRI3bqM-hZ-8VOCX4168YwQtN0qWnarPKEhJBlqEfOz55hVxauSYOjstkkV8EBaCmVIIhRY4yovZXHHxJpddFEC9_jSTR3arsewgFPT3lYc5empawoU1IISx1WNchvANLpBAmp8h0iCqJzZfYd8Tqbv1NgE3KEWJBnERViCf_eg-bM28iPARDeqnLM4sQH3t07ra7akSqXCenNZ2fiz7x0WYu0KF4V5DIlLf_2HvcF7USkPHkisJko2q63gOPIkez3e_kbHppZqTw1cqfA1gRGmuVNAsXVcfPTJ2QbrPGNaTbMxfFm7PXymo1Uv7jfgOFwCmyGGeXhZX3emWkDa_YcAeMN5wYdCTgsQCnGZpPOKPo5O8BV8ph3OtUn4DYQQ3MDYHMJSCb-gw5pAlcZkYfdxCAZoTbtnikgg3r53gxtebnBl-SXjlRFuWcKwnkc69hGBoszzdAMnI9VZlpecBUlEFDk-UoELYfxeRH4vNeQC1sGMwZ2NhT7EpXqX-ED5SYHjhSemgWa-rVnPBV0BEu2McWGkuP1cYFEymsBqQlfhMosVRLmQj7DTBAhSLvdtGhYyfyL6boI7vS3OpZwbQ6Mk5X8Jm4s3J31jk1nTvvMCml6ErboqkYJ_ST7Ys3Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-679f63131aa274-26677512','','','2025-02-02 12:20:35','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42148',0,'cd-form-entry','',0),(42149,0,'2025-02-02 16:38:08','0000-00-00 00:00:00','{\"firstname\":\"Scott\",\"lastname\":\"Lemm\",\"email\":\"scooblemm@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAzPy8BhBoEiwAbnM9OyI3nHgL5Kleg1FaOmB-HwvxBpzKxeM0bnkFcBIGEnTurvv7dkqJghoCD4UQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5Cwql_gw5QM5ECFQBkgNL596dcaHW2k14oP4UdSiFUjbZ2l7R0BbKZUvGtIldKQR8GVesfqasSpUBiKGyJgGoZ-c-aAuTsYSFSvELnaKzjy9NLT6PHHhAqH5EOpoP6v7gZPXsjPaBDCNdKexw9a-hgm3SBWAl_xgdb-4J4LyxcnuhdeFzOyaH7vHexctZOfW6OdWxkl-iTF22xAF9pBtgCh1sTMqImAyYJxL9RTMp5vcCru9Wape0gGMRkQIdQb3AcmLs7NxVHWyj_ujwm0eR0Fs-1gr_r09Tn_C3g5VqchkhW6H7blfUxGNGAuoIwuV8Tx7qT3X-bzK5KtYwomFy81t3QlxIa3Rch-rs6GOFSjBejOKup-q8Ex3tRokynMQZyoZl_8Sx8no6RcrlGloALWwXC4WtoFGHBfNJnozjHTT8-bQLshYh2uK9M1uYZmEdQNVC2BQ9zeshRzs0A8y0oLGeiCKZYD7w9RuPjZaUszWFdq1M81FmLah5h_QFuHOiBmyVrsFHRAWoAUYJuPws0X_TSezdMWgoPUsofRrkN3zTTLBSVeCtkQ0v5pu9iroIrklDICRydCsp49GpGSlHCpVku5CwtqF0W_shXnM74kELt5OzjZ5nN9-va4GNEWRW0NIRpvlT2wPm-5uKpOxPB8D_B8lQyDDjEEWF9GNGRe_Ln8dF9VRKyuMkVaGSozQ9B4YeDKffYunMAoMvKt9Az-eOMHh-EIFSm1D1JRbEx_pF6qJspGTH7b3Aw8yDp-RJYJOVudtSpKOdaNyly4KeURSG6t1lkMlQC3yw6qwS6i9L7Cc4_wrQtmefRIM1YOgxEpxd-Zkwk_S2JEHBpPnJffeM5Zhi4yLse7eMJnwQhASVWwGX8BueqMwD0Y33NlNqCVRH0-93R6EZvXRHCQlRMv0_EHWRDZdR3Nmoki8wjktf_7v2hJMTFvOwiUMoCGBkShuGsYYHs0lSZ4UidmBOZ6jSUJ8eCOt3sk4VaTQqRaxg4dPLBiK0ztXzM1XIahYXeHLxGbWVYGMQqi6KYhT68gydSzZiiUdjxrtpR8BYWRYYgZ232Mu8PnMoj3bIn3cn1vs4T9gWi8LZ0B2ljJyPCTI75aIoLv5iXvtWt-14NAt6eLGMAMkV1RDkGOHE7o0dvibQlvfxlWQPv2TxF4updisYHBWWbYcvIo4U9l-9A2QIFXOisxCR7qgNdill66E8HhSEZ77TMfSkLf4i7U2uvjBvijqm-hvnIiYMcjQ7VzsF9cFKx2PfPoF8ibTaSSVREiAjD1h63NontCsE81q9zmSaAeiRz7XCvVP8K-AsNxxbaAYrgK_TRAHhuSHYQv8zSQg3EiLg0CGQVt7muOxXyz2Enk29FVBLP6dolTu4jqI2UXBEzMQ6gN4P8pjw9-FyxU_sbsXPS1nwFaG0F_XwUAXw1huFiWyKCGA9dJAC8Jd31FHjb1Ynlkd4w3JklLmIiGDJh3xLqkRr4PFDsEMaF3JmfeFPjsktR3bC1W13a0murOXiJaZ-USO4V2bhjrw6bOB2Vm7inYw1tSMDsqKLkkk69T9gDGK7VOApvmhTvXqiDaHGsoLoA20jjrNcTGOCEoSuRfdnuKttNh6vVkvMAzcA7iY_BzQBnpAGg7D_R4N7MkvzNheWUQq0ySiXlz3yh0BNg7HS88cjsuUInsLb9ajWGSlWahU14bV2-a-hLCQMiiouK5S8T2AZdKAJUIJw3tI-_GkoYqLsvRXtB1Z7Io7a8Aj-PVk_y-D_5aUydEkrNYeBNDn68p6a1Q13jiGwCbjRHyRT_Q5t9M-S-mSwU2n_u069gHsCtRhw1y5-VhwoH_VVsaIPaJi-7a0Mln7qUggbS9G6rvCRyL31_E3slfeM6unKK3Ji3Ffk1ZBui6aobhySw6BWdBgKDdHZvznp5tBWRaFTufzqLVixIgFIKmBjUZBCfypI2zHyG9nMfd27akFly4WNwCZ4VxfcsY7_h9rkJBuDcM8lBz_4axkZZHD0In-XSMhiMdpbbmfGORp0qI7fI3E_LkrLEVgPrivGDM5MdpZEeh231CBCgMNRGfBOuO4_9_59Ethqa8NU_APX3WLluHEDfVSZvFJSu9RRYAwwh5kQTxwqKE9wJSFt9PHUaRWEIxZ6lgZQ8hlD8SHFbYLmxLcBw9OZxwu4dK6UF4N0KtbuUaKaRP9Exn6vqJn4BCujn_bm7DgzeVcB4L4vyGgY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-679f9f70aa9788-57646173','','','2025-02-02 16:38:08','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42149',0,'cd-form-entry','',0),(42150,0,'2025-02-02 22:35:37','2025-02-02 22:35:37','{\"firstname\":\"Ernie\",\"lastname\":\"Wyld\",\"email\":\"erniewyld9@gmail.com\",\"contactnumber\":\"0718667246\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6NFc66eRg67T9WakZs4AgIpWT9dvbdztrrFvyXJF6M763XBiO9QS1dhh7e9cQJa9ZJFX9Naia6pPVcl5uuMchZkCyG23KvIt8mIhbFj6misxNIsw1q_ctAM5MxKsW5-kJ1smgsPWDE9-ow4iA8rvmrEdoIDduge_pIqU3IqHxHYtQKbF6hnmXdJTOZ47mlh76Lc0nhcvfkCFXWewFIR62d2GWUXSDl0MmWbjs-YFglqrAYYlg8LEsNxTbyUeZ97SeskDiwbYmMI3zvRh1U7JbDOVgUN_Wk8aruxhizlUW4xzAF2ULwV6W8fxuc__iVy3kgdjn5fpwd-YsnUqEID9SH5QzlhIPqIkwiC-hiZT9Uv6trDmqfwFvvNQ81bLzxOt1haF9ISE91xVV_iZ8nbe7k0Kn9_HCZd5jiMhb2t1U20N6K5cEH3MB7XRhuwGQLBZeanN39k0VYNC775jFuMPipYWxnzKOUx3rE532vzDpS5PRBbkHuJJTYyYwA-YOLYEcdPhzNn8CCdJHQrMyv3qSs_OJ_VhSrvpR0hfl_SWdBA8US8PdoHArLKMyS-o0OCsxUy0mSUefJ-JKflf3TsfVcd1gQVJ7842uoO_fs_RKEQmYzvROQrJD2v5BK1aFa1ZzVRQyNeqRB0F8UFbHQyxLXS8yc29_FMA5RDBYDbB-R7bc6qhKfJEQfJ8WnWn0s89QkKPcbiFKGzieyyCrSklKx3yNJRkjVBDbJOKQL565lY-phjjrNLB0hJXsEDZ0t877OwKN_GquLGpS1WDmQ44D8WexRRu5mgQvVyU-Syd_x51z8b9cdSd4NhVayLUxm1eZYKhpRjawtxP_PZ0mwZeqO0zxLZ7e0y_0Vx-JFasrTw_F1sYFN09Ck52NTNkWJzOMT74FK-DMTcbxe7gHd6S9WRupuQwLg6DwMUS20_6Z1aBwTCt7IBFaVjWLBKnU3OPq6yKRMG2Fg4f3Ztn3toH_TcVhc5qkdYp1hcJ25vvBaxPALYmbbAID9pUNCxjCuwvyMM7kF56ihP9uT4eIiEp31ZOdOGbQPO4XlgD_JoexEdymV4GLdgAzdYTETfna5PGzpNVNQHumFWqozHQhJf0C1F0c9Wu200qmDhr9A6GafidLu-Xs19q6ci0kycbMWQGww6ttpD9pYniDe21K5TdLr9lKTI1h3RtPUFU2kMUPhUlMk8yswBoMoqRsJAWxxWPU_LaYfx7Aqa3tYiR1Ff1achl-36VltiX7tgwXWl-whMXGkaVelgvlZTL-vfuGLZ7r3a2TgQ8JniwF4MSZ10UUdppUR-WYkEG_71Xsr6WVlR2oxTtAFRyAKtfejWYkT8NmEOkWepqxSo_yA3pKN-5TZ9j2vK-pWfXTYjjuNb87A66uSo1Ktrrz7TRvAHq0_i3-Kjk0P-M4QqRjHjHJPurMrQgeg1S6YBj6X8p_ZXe3iT4Lu0q5FhsW0TolUmFFtPkoEYa_upzg7Qu4tLbJBwtQ0W_GddNZWpKbh7ZU9FG-93gevA_s52ZjuBsxeGKI-rlc03VbhfmDakosfZ7hClu-08KbibgHGO_dm40CZCPOkCpXGsWeAbsyChH1jYYyzVC-xFRtrritgoLbyhB9JZ5vy-qB_pJ_rQ_DwRUv_PNUHkpqoVDJ-jIFHaiWuwVo5Kna3Yc2JCrfruetLqVNjd_VkWLu-ke6aWRCrzH1KQJNxikz5MwtfdnwHUlsNlfxovsTI05-bpqpEHp2hZfOcKvLxCXQrVoH9bJpffLrx7iTq1r3JEIfj8gng4RU123J-ExXaE17nkInKlFtqIMpd4wVQtPbspvS3U3JNv6pcyWISQLhTDlCrw-UhiXI_yup9-mbe5jnwBPy_qJyNNjPlnisB-na-m2mvSoRnMUU2HRzm1bNxAwRUUbd3HtRZCXYHIUSdl7ir6EAt22AaFtBDpwomqP5boS10ORU6FgnxWkT3pqtjs8Myq89gukXaXB1p1O442DAXRSHtEotqooVsozOzeEC50lFxKYBD1LS9e88DqzelMz0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679ff321d22453-93068577','','','2025-02-02 22:35:37','2025-02-02 22:35:37','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42150',0,'cd-form-entry','',0),(42151,0,'2025-02-02 22:37:44','2025-02-02 22:37:44','{\"email\":\"erniewyld9@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"7441\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7guGH-NGgedYFk2Z2hGOZ4LgEtwrs8Gwznx9hBPWKFtLvI65qY6K8dcj_7KMDIO3vjiS2HMmntH8EwpBe7uwTtekh10SiidYB_7FVSY1EwBiB79JUzesOIH8lH5Lh2KHgFXQ7hiLXsbuCBsM4bj1EfQCiC5aHICdMMRjamvS5pKqn9--uSZ2bNUDbDo7mA-KbD7bKR5V6ab6FdiTi0xN91SF8QURb7nTyWZj_tAntF-pV4spdbqcJvAI0CyYfpT2kUFZ9nXr9wdE3RDyrXnf4BYPWLi1niWyPApTqSKAtHRPFDIJzcqg9lOWFDvy716qncsvZmSAheyiBYIVLQS6_KOa4UujyZeu9fKAEHEvogcyLbGxEbF-HXlicheaLSmfpgJLxCFrQkphH0MxStOZWtyv62agGeavJaf_w3BXHkfCP9G19Kb3GUTQq0zlshVyLeE1_WisUCCd69ZDcHIQWHCYgLroi60OZgupkw-iO_uw9UKDsQVzFxoqIJgMhxhjM3azeIFwslUHC3wEZuzwE7QGvnply4Poj7l6RlRB8Jntj7Y4i5tm1GxjCY6M3vdQ6P90_LJ7wdbyGncyHbXHn8-n-ret-KLBXKp8YSShYH_K5IXJSVcOhofeJgmTEkNbl1x-FZIwu7xO_wJhvG4X1eOMSUGI14YX19Rgwa3NTBh9qOhXIJ7uSUPqNDnQdr4jp0rZ8Pa8I8krmtfsjroZ1hIX-ewLGpY1R-m7UGPwfl7AEzvvoQdKD6SXCbExhWKtGDYdsEn6AvFnEmyyvG3qagJ96K3xnEnnhddMDspHLH6jX_irTE-ZgrT4ICBxZALu6YwV1p2qjeB97EbXX030P-jO3P15wNSEPuu9uL8IUG09SBMwnWhsI-MYMN62DJCyynxqATiVsjfe1SHmUjzklUJiDQ1481V-g7M2_efFaGJZNBPaC_ABUxgTuursoAPF7WiYIVhDESOrln8yRLeLfiIWcy891BSqg2ZwqsFrIxmdwln8csjNZ7jZGdpl19Yn82-Ms5gw0d0mNDYBrcPaeSueZFbM3M7zwZQXNmv_V5N7Yr2JskvQqodCIkL543aphri328z9rG5I9mkDHxmGi3vXn7rXUyB4HfTA_OoQ3iJNU1taoHfMkjgtTRubFiCADkECci6vKgtJBuFwuDT5ck7zBXMYxaIaRCobRDhRrvd_IVMIF5eQh-WwtslmR1L5GOPuFBMTaZS0wqqs-SH0sY34nnlNJ4vy8xJKaxkFBUUoHlEY0bm-Dh5WfiSSn4Pga9OG3_vqIs79_C2aPqL7c3TX0lq7r66BQ-YmEqZfCLsfT7cuoMu3HotN3EA3jNcbahNDrl6LToBytV_TnrxB9mQVVy89UQRwZv9QzAjeGMpmsftrAJ8EZc31MjuSyQJnoOL7Qw6hY7AFCA-s8qiR4USe7JzIF15Bo66uNuNgspAr2W21P3t8dJeWglnkTpLTLurXc_ZqfUQlX_4wK0vK4EgAdlCQGOECmpjEjcBFZaZKupGm5GDnTiqII_9UrW-CQzimxVhBu207UA9fOQJ4r3lucS5AiW-k41QayxnzZmNa3q4Fyzzk36w42Bnb8gTkDBnXaFEhHUgDsWuyPsrrZdeBYRrsPzsEqAD8pqf-6CBiuAFUmzbklZttH-yq_R-yhD6Pak0XIoCEOACtbsA4DbbMi5RIGdZ1EHwrYOiJgXItNnCNt3HsDBVefdGKjS7L1Lbk6ju3zRNjcPoh38SYvBncRBGeSESP7yxsuklFzFZSiXTun8oSYiXzChK_-qBquhsBuQgjgHfSM8RopujN8sJkpNVa2N_WHqxWGYirLCe5JNzk1EDq2s2BIM9u-4fGD6LV0PArQl7Ss2eo6WDYJuaQGoz35wLWTi44qWL3gmjb7ZfN6pVrcliCaFeBwGjHlwuyBBLCw5RCdQC0Fc3yl8lWmx6p_ABaW1JiJKeK0Trl_GPcmemauWKlWWHCGx3COWGWbMwXhTp9akDTtf_bWnVVnBuuniyjbNQM83K5HobQ6rPFo\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"0\",\"employmentstatus\":\"4\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-679ff36c4c5120-39800849','','','2025-02-02 22:37:44','2025-02-02 22:37:44','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42151',0,'cd-form-entry','',0),(42152,0,'2025-02-03 01:03:09','2025-02-03 01:03:09','{\"firstname\":\"Chris\",\"lastname\":\"Stallard\",\"email\":\"chrisphase3@outlook.com\",\"contactnumber\":\"0411011186\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4R61e891zE3HQ4GqolIAMAeZHUfOFWywVpKspri4xiB31Ta-YM2zsGJc8InYJnKEiLiG7ZKqRuTSWP5vzDhyouzFB3u4Q-bFAKJbtrZ6BYwzu5qKmrWH4InOP91SXh1i5CtCU15OgTX0ZNAoot_XwVnbRfgqno6T9qQM8F9WB3tw4v6PmhY4PJMMvZcywFHVXuy2Hchl-PNI16pDWgYqqi4AmIVuUdNU0gYoPIbgLQq6FSaU0T83vLkK8qkbMCKsQrgC5_NHZwY5PE7plKqyEeyW9qP1PV7rwBiix8D7BaGuoybJiErjVGJfDNq0FaJudEgJD0U2NFKBcmC_MJMxrKifHXylkjlvJnSRgG2Lp_lqg-K61ughdrCoB91Ob_sP9f4Pigyl7yp050qnda4gV5zPL7BTGnp1Vr2Cyz8Qd2RxVXTgEnjhzhDPXDhN-2bEP8pkNCGhR8H1eAba2dYpCsxyy2nw3UcFex922FwEMVB3O-qlRcOoYlk3KF41P6s9kl-NwgukAnC5mmwUucXnMT83iCmNuvU7csV4OvmADXtHPm4j21_rkMvlTwaG1qDymyiDMc2h8PvOXOpO_3yFkHgk_bQVBoS8tcsOqjifDwmYFDrMbf1qD1JKjFCVNkDDFW6ZwUw6fkNiw8v_vW79Vz4x44aQVleh71ZJfL6z3OVlvK1yeh9Ft6MonN8e-ZAOznsqAjf7GS4H7pxWyigKGU-C7_8--_ugk46xG2eayWwygPyAbYrbxrzS34fzSrUwj8TVmlVIFSkvxRyDF5BhJcjJfVw-IB_Kejf0jfNqnqxpRmp7m9FK2Nn8PyDlF3KT9DWFvx4ybR3imKY9JT4wpSZZfGiXFKI2Ts4yFODtg8YWeh5kx5ruHBUJU8wYUXlODn2Di6mZBmltYAHo93wWECPh0O1mqyp6pgxpXtdivNnseOr1FMAsafQx2A6FBlbIsV-ex_AYrdW1lBs_hPQCzk_DyVHlYerfl52SEKqaXClUv7UoqzjF01BARHw21k0GxrokPvAm4Ve5kbrw_j4kTw9qcTJV1KGAepljA4Md7tpOavknEFBqHmQ_zKivxJ86Kqo5RXRT3SlT5C9I5gsN87vwXCKWbgm7owgJfXwPSUKxoX09A0ev6jnSTK6ZS69BLTeZS0tmpWcqRjTep_Whe2Rv1q9IvaqcAEqlJ-vcGShW52cg_kn3o01zyfSCNQfi2ksawszYeEavAjICbMT8xZbVIe5QgNJWD-Ek48bBI6za11Vqv3t2uf6OmRUq6_V5P8qKBUigaNIaCmPj-7mi05UVfVnWvlLD7C7_3AuiqWHp5Ln6E4OZRYNml_JS3OoKhgir-V28qqnprTTyIlnTw8KreS_XIh3ZcaPbQGmeF5RpZdmlgrl4xUdsBIiHKKrjoN4i8J6sPkOTpG2bzEeY0wQxqWfMq5pepCbeftl_yG9kO_Gc2kA6uoHulENaAo9SrE6CrOuvQTyulGiHBm4FDoLCbP2E-3GJedivANG_wQEJgdu2fn_KHu7rPoIm1g-hJDUbfpN96ac_voo46xMz1Fz3NaBNrzZtXluLW2dwBZY6Oz6B-Tk1-2iSXKStKvSHce228ANflbfgzzHjfCb_iGo0sSdf8OAunUAQKIS5x1lDDs-t8tdXxyaqPjRPiYirkGjs3eI7ILtAxiadeuJLWWGngiM5v_Ml2KElPNFDAmaRr9SC7Ev_BsuiZDcMUVomss8FjZkRXeyqEWg9TRc9KTSYr2EufTlEi0XfDi_suKQDOqJujxvz-sDGwghKCutZLf3Onf7J-phUGXlODzLv2jlFiuoYyPJiU5F1bNdmP3lc9LBSPjfxX-aqdjHV7P68ZfBHlNGBqwMJvbrId4ePiOKNbo2hJVzl_HzdRMHb0d0dUWpHoQlVBtMoKcdlNq18irPsH5E3En-4pIuhl41MbntLDLPfGoJF8mu8cd18_ndq4W6CJ_uuFbsMo4Tm6y4cMMZ3W905wz2Zi4qWqExXIvPd5_rbpDBccMwYSWly-RKwwFGqM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a015c1e82130-45789296','','','2025-02-03 01:03:09','2025-02-03 01:03:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42152',0,'cd-form-entry','',0),(42153,0,'2025-02-03 04:37:45','0000-00-00 00:00:00','{\"firstname\":\"abdelrahman\",\"lastname\":\"Elaraby\",\"email\":\"abdoelaraby97@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6tz3hM-gM0flJ92INyrRNqPVn2lSGPtAz8N49lpUsJkhgAXMgQ8_xW6d5z57gEIeupkP44PcHdxtI-jvaIhlTuE3eAEcn13Gmz_pYQArab9AJ3JdKOgaCYTRl2vjx4IueKjuNIacTbq6duZ2PwFZCLKQDg9UPAabl1Aa0wOLWZDxpmkScnNO01KHQ12WwV6rn9ykmagj8DiqAo_OnkZ0U0E3g_ysFbseMJwsfSxDiXUyakweWxoIBzRtnDdGiU9dH5tTjPJ-WZLaKJl39uRCTHOOtFBFlVlD2meBSx89lfv72JLRrzGKnzvBnZTZAfJBXtyyup45O_UYs9qX3tPfydAAm6zaPZLwkla32LXcF2BaEJQXqUe1NvQepTi3ChUWLlSbfrzQQlp1eheG5Wytl6miK8iCG0fdtsF6OZPe_l9o63NIaieCoMBMwZt9xFfJkVSs39M0TtmlLa1124mmexKQBWzH-g_nYw7jJ1dFSY_Vciyp5BLYPKIKwck220HU-eVIg3bpBrh1OIRnGTL-WQIdshqASVO3fYKg_yviW0OQ2NmOJtUF_zM-5hGNMlM28G1ShksZ70WcVtBJyTtpyC0ieTHtq7-MiHdyiiEpGY7UvJozfLLzMqF7oKE52C08G2Md-0sh2DH77QeBSJhk_YuQGmcncGEjt5qpjrZmmH-dfnKmTCo5Ptvi6f6rcpfNGa3v6q4pi4YwWevQN3tNMqIUzQUZRCfS8bO5FqLYSOfqh37c88-zjcQ1kFHyItPc-B-Js78kOwIY7Js0ZrfdmAxYdGJRergxrz9BEcLXEhaJoHR2dlX34zNdF3TiK5BmZIZrUyEhxnSoC7ekha18f6n2MJj4rrfD6arZ2Z_X6r_DV-_F0gRdNzKxPr_uyCRvMsdXf6tMMDd2jEsLNiortN4KdoJTk09SVsrgYBC9oWyHXZEaaIMjxLd-lt34MnE5DltVstNbaVsOuOYVReRJiRZU0Ed6GcD_N4qn-mB4_5bp_OqAUNxCv2nV5RSk1VU4FlOaNXPaXTGNSv5Sx-_b5up3g33WmtqNe4LWxbWk6ESxnU0Zf9dpiLHy7lqHQEHohqJsHW_jKGN-Nzn9y8v32CxG_eVLQ_i7l4KEHqmsKreIVb8_Ih4ULZ7aVm5RbIFB4pBxVqi2Ig-Qmy3LfBUjnwqQeO1V4KhWS7sBwopBqxBrVjQIBxOCl-dUInSI5YzOvCvOOJd_Oulm7_bXMSZVc0uO4kOqqjfzOfK8qc9fYXvQVG-gWNR1F06PWxyOha_IJrxMmhJ83xiX4bB-1H5t61bspRJApz7RJIrzLS-elPy5IwcXyA9PfKxg_uqRw-t614mS4tf9yCS_SepZHYLpoxtfAfJlwoNRX5tGGJRqiKE3zcOif1psD04CZRTEGiw83EqU-l1V5PhLMUMAtpRBSZg27cwKSxrAaYoJYjJmGiUeeS9UNXrwwgLKj2USwbv2TN6QqWfrd-HQSNA94sfY15-nY7EM7X46MKnm0f64Iu83KpalHjmOhrC-f7omWLiIIoI0QoH86jQ44WD0cbylZ3c3enbFvti8UPgePQsQsWueTTgXUl9CgESYKsiydhYeS-rccv5h1uMh_VPB60Q228011lkfJ5LeGPzrqvAn0hDbFd-IBd1kZ8Cq9GcZIGz3wfBZnxekPhZPVXqWi9nrjUFwklQ656SszWtq0j2C8OmzqsVyUixFzaD3O-VWY9XQh9sf9wQcJWpvKZtSBWaOHv31p3kqf9W5ZUYgwCEOJFUaIGwv88h1iQ_7OiDglhunruaucgY8QZ8k7jm6ejev87UcxNvfFfMywXhOTSesInEIPwIhlhaEXtYi4GIgnyCEchhl4ylANICO_vghTdo26UmG5KBg6tH1LRfM2GyBnEcc9R_-Y0KfeIxvCK_sTaPOWCu7EaI7NUO_RmTLHJB79-9WcQGsJk04ClTRn4Px2v5Bp45Cl6XOMBZGMxNnnKhOKTadSwCwwQ5FPTmrXqqZjqDMYQJQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67a0480bf08ea9-91599895','','','2025-02-03 04:37:45','2025-02-03 04:37:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42153',0,'cd-form-entry','',0),(42154,0,'2025-02-03 10:24:12','0000-00-00 00:00:00','{\"firstname\":\"Anna\",\"lastname\":\"Kuzmina\",\"email\":\"akuzmina@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA74G9BhAEEiwA8kNfpYjLowLOZEXwhOnbgArpXJ01vyLGmCqynjQKD6K2Hpp-56vuUJu4_hoCRokQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5AQLBwqZqPMyMgB6DbnyzFGwqy2Bz9wkErXQjV6o8UTOVDjy56EHI1feTnH0OFYqn6MFej8UCqz2uJkyun1oGt11gCxJhgE0-z_1meolzUlciAhHoEb-FJENF8ZlEkI186RoDDVGYgiqd7GXSzAOpmlXTg60zKTZ_KMHgHwBOh_eyn1KCvkDDinedE2NVVw-Fp1DPt6o7pDc0pkgNTXPw_yalGltsrs8QmAU8nerqVZKaqS3ikTBQEX3qPDw1BEVJZm8U8TJxq7uc_SWi-IICeyxKW0LjmAOkoOIQ2LX1mBYvesj3Gwac-HlHkIis5V7Ab8zT1kTKX8styzgwsOyPtpRLdL36Z4-4wqqP9zSJen9auaHNOXL7-bErh-Oq5uS5PTdz7eUVhcAGxzGBNG3b-ltlDWHofgKA4LS9TLkHbQJyKOGOMouW2J-C-GEHuveTY29_JG3QWhbMWaeGPEX1kneyIpS6x1v0lF3F2mcvInhAy6indO9XAnOIakv3j2fC_T2Li4g-vBjBjbcdrTw3326OQS5wChA9doG8RDeu0eoXXo4ko8jVNKE8GH6yV6OvCBAs-FV5shHWooIxO2dgBYAqIEb0GA-pxscA48QPo2LFmTfAfCtes9xdDBUGwFFjiJFzlqG3gAJex0rhJLD9U7qrtJR7DalGigT_DkQFaOFHwzqz6CYk9MpAzEXN6Ym5i4oqwjoZm14vFlTky9m2Yr6VavzB7hVX9RtegR7Z1ZJ2197FAaev-yJhr2x1sM5r1ChSnQKz34Uq3Kh2rhs9MH_m6dY2E1794ypvjdIW3S8fjDWXmOLSXbzvsClJ-CGW-AXMcJviClZ8rtNlShmTE0dz7tvkFiIHb2T9LoyMWw6wl8jd1AGokjl6aJb-3YNeqAgYLmBwR2PaQlHdCezkNarjIUUDsc0O1gA5r2zj_01L48h6PLBZ-Rx3Gfimb7kSHnywI9Pd41tloGKCcM7bNU8YQq7Jgookhv4gXiS-c7BEpeUuRYDF3GgT6iCHP0qAwwd-OUgPyqRdbSBPYR3low3ROEaoe697d0JcfLqPWmoM-B1sC-PNZ1E3pHDN4uP9Uh8xZnC1U_vyGjkuyCbBtZ34sKFxjRSOeGPUU5TI6WHh9THf0xOH_LnycstjQdKaoPjgbZfu0B8o6H6MpfVVcMfWjyPH70UyW7aR6sx2syHAo9UXIZkxWC5zdNNo422XCXE7Za44jMqsAxn7OeGzKyB5ouX03is_Qf9dhJjAGoaX9put0tqEIkX1woGrP9Vin3m3uZwzkmyk4Kkl8GfFBW6opiDkdyL88Wx5OkZJl6KE6pY6kvGtCsGiHS39CgCUGyah2sqyvJPdq_Wp2WPAMfaqk7Ee5oCrVPjon_aKbkoHu4U9FJG86lMcock7RGJrq-uD0Y7YpM_ksCvh50Uh0Wc6uYYLegPtaQHIh58YidZlQFCPlyLPzsnaKFeBv9nfSZdQqox25hyUNUoHoheOI7cHKbxiygqCmZumcfZix9KghrPPYWK-CFb792wK-rhkxov_gnrbVCeCCJtOmnBU5WZNL3MbAut7_apro-FniTuU-GXhyWc7903kQgs_Zvpg48_vOlUNCaJiBcpcuXUr1mQaDYfC4FJnT19w7Mw_anKLwN1k6M1VWQVzSGtIo0iyHOwb4ET4NT12-dWFchahp-US2E9ylT8YqpMdmJZi4a4j1KwrWqJFfRB_zIMLXqkUBooeRe1QFCXJipZuvevhVaRxyu2bMQGvSkxrQ8SfSx_WQJ9_-88GbQeZgBfFG6ghLywIot7CTh_vkSvriseEfm4NrdBzubOC3eWKSFn1O0P1FzSGI-TM6GYYrIcPw5gR0tVnCQSr9qNI05zjqxILn2tVaP6BdCjofhFavOBOwvB5jqKLZlddtV6ay72XRND8KuDFKWvF2A_oSRcfNvOyLL9u4BqDSMviZ9zb3kfB55nN15YHGV4mamJzKdhOPPmyNmcCUAkW6ui905SkzHYld_54Pt3U9IJ1s7hrLImtsmNWIsl4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67a0994cc465e6-09812990','','','2025-02-03 10:24:12','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42154',0,'cd-form-entry','',0),(42156,17,'2025-02-03 11:47:54','2025-02-03 11:47:54','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2025-02-03 11:47:54','2025-02-03 11:47:54','',40778,'https://biomechanicseducation.com/?p=42156',0,'revision','',0),(42158,17,'2025-02-03 11:55:44','2025-02-03 11:55:44','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2025-02-03 11:55:44','2025-02-03 11:55:44','',39196,'https://biomechanicseducation.com/?p=42158',0,'revision','',0),(42159,0,'2025-02-03 13:42:00','2025-02-03 13:42:00','{\"firstname\":\"Rachel\",\"lastname\":\"McArdell\",\"email\":\"rmpeepostnatal@gmail.com\",\"contactnumber\":\"07549163119\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gbraid=0AAAAA9_dL6tCbFd7hAin-x4ICYMk-OEsH&amp;gclid=CjwKCAiA74G9BhAEEiwA8kNfpbMJS8GF4MJbGDv4r2PNlCnycp14-DgeMT94FSnuEH_d0AbmEyF82BoCDaEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5XjasyPiWvn6Ce4UMw4ijGMMS7CbQP1Bi_sUVVIJXCGTBdbcQMTtnBXek2-2h2dMGURKPUAYKwBaJxpdVLSm_IYPJB5Ymk6xo0--hW0_gS9FidCyC0bvNXV7MqNf3H9uRQml9Btuq_iqfIQjpMBMb27pleTChIf67SEaUW5klQvCOm_dPHCCauZ6LnXHtIF7sCcUAT-jnpaywFC-M0vD1Sq8wohRUMymP-6whvwSxMOcyhHsHFW8Ga-SMqWKtUcD-ouLVCfzYdjdZDMBRPis_daZo2qwBpo-IrgEnoITLc4U89zBsLisZBBk0MZbl1lH-p_UF8EAFOqnh8kWGRJcef-5AEnKsrHGIMYvG-ejT7Wm5ILe4g0Btf7vR4FAUgm2mSAaoeZ3XSi4YKL3HUvWSUDn1E1yAqXQMHIOahzmjXF8yC_8k-TSUfYgncO6nl7WN3yExRl2NMeTCQT1l-R3DLsJo9L6X0n9tAomUAzE3y2T0P7kaRauB4y1vu6907uB7CdOcyYqfJzjz44spi5EvveUMmx3e_0hm6v5Rkyh5zWVce0_agTQkxHv47nReU3piO8-r4SYAt4HLJjsge363wTBg39_hrOaMJIKlInEAnjJ_KpIiH3oqZsFeZsEP1Av0rIOGelNq0QqSq1rnELd6U3MvLkR9_-BztoC7Sjcw5GvTwFUWGQZ02pWJn6SCx63Dx4g_DDQxJ64x4e8Cr0sNp8hMBRmX5727T7r0Q85dNrfx5k5I-5ZrVx2h2PlVgPhggQnR4UazdmeRhcIbY41OTeY9Z6vzcqBe1xK3ePqEioXILjiDfwYIgKWsk8ZpGredZ5G2JPOZnj1rg5spEEP0x5UhgHyIX0XtV2qG9OVXlzRq276znxrnWVchOBzSMKE-I_1uA-yBnzT1JzEY0zZMj6xv69hSKcdEcdiFpuUm2nSX6N_EvmqroTpyq0_RaHWvrg45HbnKC_87fITa9m3ynBQcIU6Oo18xANbeaMaKDxAnVQL6wYQ_UTwvruhUAvCggXrv2xli31NVm30ECQXqBMZg6K9n6jPvWmg8CHYqtqCwvYfseAsc7ls9PwAquXGCSSQYRbjjA1m_lL75XIzP5hZS1J8N1pQbwFahXKuGY00TQ7sbL3bISKpiqxDrenyUjcEuWqk-0MODaJ1N5VzAUsEroi_tup-lNtgXogGeseME2Nrshji_wVE_pwS34FzPjq6DB44Y6Vy1zyMXn6lThlIFgo4mLhdMv962y2K4mmYr0U4cbTn970Aqq2yRjh-_MadMO2CEsy5LzkcImIMGRhIKdUk6GHcVpr9IRILYQ607Ecb3xlanIVZtrqwB7jeKZ7cJKXg7gU4oAUsOsru7rVOj_yQWeveHDiQ8rAwjcAhY1RRZXcwieIPJ1F3_VFpDlqeA4ySYfx7M6QToqbFalwenza2CvS7NN1Px4Dm5zgRnN-z3EkFYmWl-QjKEUX5n3pQS1T7YNiKR00NQsHWlH62dOfvqM1tgSMnQa9VCLxYdkHuHjFVnx24NqxlWfV5OI66faGsZM6gGjvs0_L8acnlUbfp8QRENRGB6kSh35tayakjoYdJq1wImRYfZAmZEDsKdNjoWFOvUgTUH_kHCXQ_g0LADRMNrrmOTiZJGEghxYNr1rC-mq9PzLfaURotHcN9E7QvvYKGEpl1ZzgsDc2ZJX1qU1Q7sUtGWM769Tdr2g7XM1fSv_KxbAp21bVAXErd2bGMhPy4nlSNTjYD60EWfGH5zRrEmTLGQbCdoSikdNWtzsb5-MY8IFTH-anp2zkMP2_vmfZ8e2UVl95uq49ciT6y96RNBT1yInmBgJ7EHz7NnB6rtBdABleQf7aRllc2dmo9LopmmXgoUZdOVom33dhuNPhgVYypOWMvCJLXlvXmJhlkrFbMkfHya4jh6Sgdo4_tH4pJkXEE8YjMjDgHZZxnjJR8FvWqSyY0p4F-jyoItwi24VhR7T6YRXPyXfTVgvVDOBMJavgfJH7RicSO5MVvtllmgWTTMFchRY9UuO_agDbCFlOjs_QGLyKCoN1ARxhfAw3AocUGVwXjsNPr2xvU7bj13BPk7HmuG8ufDf-kFA-GU9z1g19rdusgacQ8VLZtxnUMr0VElVKDXb424Y1nFQmaOUKyz1X2mUHtK0bUIcJyDtnhd8AGAMv3-293Uw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a0c7979cfdf8-58538063','','','2025-02-03 13:42:00','2025-02-03 13:42:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42159',0,'cd-form-entry','',0),(42160,0,'2025-02-03 15:22:45','0000-00-00 00:00:00','{\"firstname\":\"Orlaith\",\"lastname\":\"Smith\",\"email\":\"orlaith_smith88@yahoo.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tuZVP6fbDOMuMJW2B5d2my3&amp;gclid=CjwKCAiA74G9BhAEEiwA8kNfpdN3TJ4IL1_N0p1HwI9kZzUB4Lxd7zJtWQMSDJF67W-MvKNJGONW9hoCrxwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6e3B-SkAHcrjo4NfngDH86y31m4xt-rQOsrqFFbUi7heqLsjqtPXZKwEkCpHBCFm161_u3EO1PMtZEbzSdU-Ve-w1B4Ha8XRMre5qu3yweCr4Ap83yXSO2FFuolcvXbJ_VxzmQZD8w-4wXCdSiHxM77kDSBo8FYbxtvgGCwfKdvSxAwGXaIfxWkcEhKkq35ZFGE0BAt1LmuSp9clYiCebVBXjgm5sltUUlARjfcjzgSK_XrFhEzAWtmgqXDW0PmL10XX3eh1CKZqv6V27AfsNQ2xuCFEqGu260j7bWjm6aEIgXmi6GmgWaztNp-k_MAlbG-3HG-Sg9-JQ1thOQjmlTvis0ehRM8g35LQNloCcxTD2CCvb8cEdNBowz0VoCS4jCs9qbDdqXK_MAmPSsIKPO0STho5hiwCq4RttBetAAbDQiEFUM-6BncwG-b69xl22nFxmWwTPeiKCEBVOy87ZhaGQ0vHiOt_pKWCM40e74XFBkre3aIORrK59SYLRnov4iZZEpCUmn8lrxL7KYZrawi0IofMfSGZbp-JJGVGNfHrSg-0Cam005OSRV-2eg-WfCDstZucO0MWa018w8cVJX6w48VV-Et5WKY3PdvppANxmJPj4AE4HMjgjFiZJ9CzJF6p-Zn5Q6lX_qMBktDyTV3cJ5uK2waNc6opU9uqADGYFEjDyXvMsUkWhJEYXbW9N7PY-ELkNH8GI4QjTJ5y2BQRPyu0MxQwG9YhZsQSwKAI6gHYKa3Xn29K9D-2cpt-42GMxQSl5GuDWtG4bywAjQfORXGECuR8PIL567RqTawxvGQ15DGK3vV2q9qA4SuSEOM_gjXnS9C-yUPlETr2ciOWcC7AhPCD-VFv7hBuYrW96Rnu-AklTPyisl0ZxK17RN4phc7mTybXqm_pTh8Tf2S6HjPgtsAAaZcQRiUsFqGuAJ0fg0axvS9eip7-SE8fWaWiF42CUE_anzOzapGYgUrx8npRwRu0cRQDA0P2Kbs8Qc46VJ-VUAyd-jRQaUqjpMPURR7-J0YACRi2DXiNnku7XP9xILFBRkPy6c2swQqWrtfb50zc1aF22GLQKQgY-MacOLEKjW2VKudJQufL-jZ9V3s2BIqF8VC2P1PNv_niyTNNQgP0PUhxRQdfkgth0zhsTMWAMqMO38wi8-ds2STjrGWEps_gXqPQUVn4uIrAVmFoZzMqiNo7nViEIY4XU437iPZAesQxNpc1ciGWYhpNauSiWnPXqwLbnof51xnecheZBs3YEkZUrTniCz43Dfv2kkSvIPkR3CHljSQZpM600uek2DQaAQDFbvYWqKnv_L6T0uZdTj-869_3h7I31HZx-rwguveIClW_HrbQaJMaldBfAaPZapGzcd4i1QdC-ywy1y-Lda5ivPB4boXlQSO0jVChL5hJzNi7R0EzmYSa4Xrd52H4Z2KfnSD-kP46z6j15MEJdyVwY9Wkoz_Z5g51B-nWYvOZmVM24cya1GYrs-evG0mUMYROHQ6QTUOpLs5BSI6gtDRiS-XjgLGvzd5aslHVOCI8BXL0XDn_vjYEIjma0u5rynHXWgNcFA96CeatCYmMlhfsgSt-y0cz9ef0a_Bdtl2qgfo4qWONhNOnGxtSyLnZE89Rol4Mc02oYT6jA3eUoyfKovBcYNb3_P2Ey1uyVOTD1rCVbZDk-uT9GYq2yBuXhXf36HEupjjJUI9G9JkBEXSMp-308syNtRR1K3HM4YDPFdr7kDvS7g7rB53jGsdSI55o1dxqQ6J_fwYtMgIEzBlLA_nraQllCIA16sQ6OE3hGZbfSm9Xnk6RJthTif5_6artaIVa3AB88l3BTxMLc3EAhsQHrfAThsVFKU6l2glJnSl8Ea3HdlQVY2lXV6Naa0dMI5n-vuYaxlWYYtabkWfuZhYbus74wJxQw-5rF2BYDJtAX1GdMEPYUKNhHuwZDB06GZKyA9e9p81__Mn1iVg3Rq9ISFc5BQNkhtudn4qb2sVey9VLNUKNQ0O9fo6TwKrHy58H4k2cfCHewnqO18SAF3Ga10ZZHhEvaJSGGOiX9SQUwaJd7JprSfUVQgvaypL_emqZrjgsXA1Uwxboo53j-G6WljP-u3RBq3\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67a0df2b0d67a7-72621835','','','2025-02-03 15:22:45','2025-02-03 15:22:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42160',0,'cd-form-entry','',0),(42161,0,'2025-02-03 16:40:54','2025-02-03 16:40:54','{\"firstname\":\"Rory\",\"lastname\":\"Fields\",\"email\":\"fieldsfitness.pt@gmail.com\",\"contactnumber\":\"07954792852\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA74G9BhAEEiwA8kNfpYEsLhIMoix21-B7RLViSFnbubD4sz-MLCkRB_6xJ5rJVQy0qMuH1BoCtZ8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7ZAIxqoI1g76peJopUrWZOUxIcZeR1vk0WtS3H2Wg1d1uWceZPTBEvAoOpdoURUa3qNpr2u_lvnE1hHScnPC-xbsRMe5Dh7oBUE4TXhpPUcfkQCUws8sSy2nypVpnPRsCY-o6kCfb7lQdcrc1z00_k0wJx4w9ZBZJCQFgkFf36m0rH6CGKncAwMOXA-M2S7gfKzn7XNTJJKB_WDG994VlihNq7P7BD_DMV7N0uFornfgFrdx9Lz68UAq1nqA5vRwpYh47BUetJ9W_ThP_HywJVkd5pmbF867S_UgTIDmr1CQzac8gtFYZtVRyy5psBHrP6XqP_qqJSC4SqjElea40048VqeCAxQ9XTN2HR9hl_xghPYVEXad0y7TrW0cFAj9v4QnX9CVx427h0gAsZhnXljX1NMrJvU---D4y24H3tamy_b_rgq81QCUG9re3wFUynuIc-JsWZ4eWyOfbpxoGyUvtpv8wAWuKDCeUuOZWqH0BnAsrfOIFRgHoPwd2MZuw1OqldtZKIjD5Y4O6BRUJy9ZN21PFo35XjaMEl2vRPzCmOEeyThujOc06Kk7vFP0FSrSYItBu-7RCrpqT24bdKjzLFepxgygRve-y24Jk_DyEJ-60nx48R9CzzNeKfP0BDUzjKORGykD_JPfE-z4QabvK1GHSaW_QWveLTR4BqodDZ6Yy4OfbhCND6yuWtYOnU2UKF-2yi5NlPCQtKXW5H1dN6NOzB3FrDaAQYlR6I-nJJVvHTVFPfPn92n4sFKZ6S-lGgha5UQI3zfg_QsJwC_qK2tp4pJxXK6RbBQBbMzEKYe24xupvVb6OUxrVQS4NeLpM-IuPPsctSbzoO8SXrLraySVTyzO-l5umzv6dLQ0e-C3Q8KIXQrRzvOuruIX9u1UaNV2XuLSxCOosbeomjZu7lKReEEIC1o9DlpHZrMomlOg3eiMir4IHdmWiPSw2B3e6XaA4ov0t3eQP4AbrRBZ-whbrGg_qzAiwwNV2nUJIcFE1HfVVdsnF02NZtjDArVB8i2C1NuCUaHei1fNj8i5Vn6i3l6ShlVXm5FZH1Q1iwEDkdQLVp03RbiJTW7XB0X0l1_TNjzt5ohIsX6DYS4CROxMpQf37NqhRwnPwC7TwUTFVLat2gnhOVt-10C41zyhDtsUHDE7enhBWDZqBDLaSE_F0O8_MJcsN5wCYmPsDaqI2H1koafn8woBIUY17yU8EvogyKOEKP2QcXA4GdI-0JS09Up8T4_m-wS8fgAY35JF7mev2IvK29Np_AqU7mvb4Ivwzj6lyw5A0OziKXPozYk5PxNZ6wECUYpdas5fxFDzRPUW9mSqwDvuvVpdQqk4D2E3fIv2bYLu4LBT6dRQAGY9xF-eV6rtGAqW7DhjBD9onDZrHY8RwE4IySTUycUjPvM3O33EopW0hH8nH1M1ybR7Kp10aHO3MbffSvTCmyFNT486mKn6LlOEwyia5339kLYk07i3YlIK96BYaW1JbQZPWtT6bWtsHuF6nEWQ_0DhlgufuoVcXIE9YSerVnyF5O1pW8Xtr65dnVogMMmFm_68Z1pWqxtswXRcSNs_JTJiZsy5y0rXOWL3mZ__ieHPY_4e8dKMGTUGiA0h0WQyP3T02RxWWlVnaRzZ0XKXyU2tg351zU797lIbly1lEV4_ihJtpTj67ugmPLef5hZvNyAv8jOGikFY8y4tOaiZuLK7TYBBuGDGAIlcwe99sZegh9p9H5JfBNgg_KTPFpkwfA_vLjAf-cH40qKhd1B2cf5LTyTyurM1ZucH7gf_5edAbxfzoeo-L-BWUA_A_X2Z5R56nVpr1ya9ayVBQ4i8wj5fVCE0N7E8HSG0KGukNwgVuvSFd5vRUgZJHy3jl46lv7YFk4RO77W-YnbrtloYTZNJQfJGWpCUaVCG4S3xEW42fwFgKqnOXSlyKAOw1zl9dZVgdy0yL4e-KfzlFW8i5cTL3EUocyKnVsoJElR1FqEjlXa6OFmo0MWoVoade3PwK8C-px4m4YUMs7DUekv_uIk-k\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a0f18883eaa9-93200264','','','2025-02-03 16:40:54','2025-02-03 16:40:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42161',0,'cd-form-entry','',0),(42162,0,'2025-02-03 16:41:57','2025-02-03 16:41:57','{\"email\":\"fieldsfitness.pt@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"8\",\"currentpostcode\":\"BS5 7UW\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA74G9BhAEEiwA8kNfpYEsLhIMoix21-B7RLViSFnbubD4sz-MLCkRB_6xJ5rJVQy0qMuH1BoCtZ8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5COaQbvrXrYBSWVGM5AWVQF8Ms4M5MNZHfqt6-IJ0Oje-Tp73GWYQ2iG4noA_hJr-eiujezWJhuEwztjhluVe2A0pcWUKThdY26spXZ5EwSPCcvr49PxChnYDrKuXxE96l6aKx2E3-eLEhFT9-ljr1CZaeAdFXm5fJFLuY5YJBq4-uCOUuBm4dXqFACSuO1yaGvbEeoWP9OMYEKpxSkwYEa3vY_mRt7SgdKQk0jiQdWeCOeB965EuHGf5QwWGDUJtSHf44DZ8opHfV6Xw3Rh5SHcNBpPnESgJhWzEM4i7mq6-Og8HK0IQvBR6QAQ6AbFFMYIu6m2xPxj2i-plO0LbBZQTVQxQeJ6tndn3P_pI9hm0VXQPyO7JbUMHsRF7xPWFmw2Db1UjUBw0-6J-eKHXskNA7Tl_uBbEK1nV_mECCxeGVY4UpmJKqaNFYFrwDqzLwMkQZ5K91Hg-g7CcxGfDWfp0bfA-4nDxPjL-4LRBcojFPdSfPhwg_XDMaOYx5v6Si31V5T6O6GGdd3JOJp-E9cs2i-X1qaH0yVplh87VRUC8oo5bHiv_cjoT_YCLKJwAw7sL6MH4Z_kJeUGz_Owht7SHcCviSGkP5SPHe7rLKRJJR6Rz-8uQFEsKl3c9-W3z68lDYfGS5QjWp-_AF2TxhvPExvFIWjBIkIwtlVU8PyY9f-YKvzSjD4eZJfYYhyDUb_jl9xzlcCvIsNt4HDnlS63v4m2kFTzg00NdD0rPtNE8qdYLgzLUIOECbPdRgHoX7ZvG9JzM5oYSlAJU-lB9h_KGrv0UctPN_EAtU_GHiJFyGkGOg7zc_7EIh6HIocPzzY3Ph33eBvyelC98ybOhrvZd9VBU1eo1Fd9pfVCyi_WOCDvBt32E3-Cx_JEYZaSfSgEgBKIPfu_BIJjNecf4bL53bdvAvhB8k4nueYPsOqnuguRH7vnOBAERHyccIMoDebnxASbImaI6Ohp7v1EFnHjuQvJeHqoAwjmnGSEDjLBbjdSoY5hZRGhpjRjRSFJrjOBC-Np4zzO7T9G4pv5QZ1s3cuxAeK6qfXrzarVxIBsF-iwo8_CR3s35yPle9fwhUMMkxV0OEBQp-BrdXRpJ9PtLFCE7ddYwqJXvtocsR3DvW_imOJeUv-mbtj_U34F1sWyLLoWaukrQr355_WLKcN7CgUQN_YE5gPUK4vSzgsnNIgWn5iQJpRUVETgv-XYCZZwEDweFupVrMCcCL0faUL-SdfuaN6ko4rFaVUJg8grUMNC5o-cGc3QKD1q8LZi8kZUGqeJKeaflXd9Nz0KLTHExvYSROFzCjSBFyxYRGcd0BLV33-8TWwtR8w-tJLS6SaN1dPBKw2YJ8MN0SWfFatpOZ7LZc847m9Ly0H8gAMwZadZNgrMsn_VLLZw9X0VqWFGLE0ou1q5oBmAz8AiHNRmhpJwsU0m76N3fCupYzL9SlDNRqvLpo8guJn5CAf4bTx1i_eFMgkRDJy0XNEtpKRd1JkhQ-au-THIKct7q9PXN3NTjdbj2Pe5iXUGObRE5HvGaHDxNiIYs5xASwZc76-YlpMxQj04YbKaAuVvl3eMMVV7rKECCyI2AUgNyogbDQJXdzGKBInmw79mUwK9Fq8UV3a_41UatW8Yxna0X7pXZ2V6BfEO1cnpcWnG-XQHN1a4bwEvee86zxGHvIFtiPALwu-euiHjglwgcSLW5Ymu3D4EBM1xAIkVMnnx6dZIUG0MgzbgnktEsbEEfmD-CQfrpk4LcPxl0uXWiOKhzKf-ABBUnUBov2LjsvaC1_58HxYcP6Weue8dO5RSYxHABjpOE1kQ88-XkO_5JYmEVCMNMYecnJCxRJxup2i2o5VCm8BTlx0MZBQZ4g-GMg_0l6G698780V5OUQnr1kq9w4GX4n-Q0DvG2TZQcJFdAGAuWcfV9Q4o_EMB0tpHu5SQJqBR2qUAF4sx34-hmoj9-HNbm4H0PbM51qoN06Q7HQntc-f8rS1NGrw4wQXYUlu5T72TqyxQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a0f1b80ebff9-47326660','','','2025-02-03 16:41:57','2025-02-03 16:41:57','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42162',0,'cd-form-entry','',0),(42163,0,'2025-02-03 17:00:13','2025-02-03 17:00:13','{\"firstname\":\"Matthew\",\"lastname\":\"Whitehead\",\"email\":\"matthewwhitehead754@hotmail.co.uk\",\"contactnumber\":\"o112312123\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA7cPk1Es4ufT4jKedws2jNo51aW_s3uygBgBhBTjkftPz34qxAr7sTBW0dslU0Q_sZNOdm3bo_YFSSobHdGcwjSbjLp9Pq9OEyPjDkwHdrzmIlTIDhp0tJ_D8P3YIpmgrO_dMTyGKtxAzLXah5_lvFAurcQV4hnQs_EuqCt7_NwNk0C3Jwtp7OCEZ8veYclvoHEZnnuOCQ7KRXYb1OYTtK4v4gEPtkovHfHOhYssswqp0oDcVAmjJOu2gCdf2ZlnKjqY4A3sKfIXPnJkzbihWN97DCfmZ-D15Np0RyV9jzch5FU1ahVPjtHGWJuj4-eHInm7ay7dIXX1M7ZButtbYePFwwP3wD1oCEKuzrc7mQfWTnGtgu7oiYYAfjBV6B7l5ufg1pGFqIGIFu5gev8AJ_u5-X1FZTF5JzIQB0qMmZlARl_tRga44G48u49s7gN7I3kXog4tg00EhQGAEB01UQ4An0Pag1YpIIpwbjb4Tn1iStSYj3Rhu6DILvnVEfKsNADfiQofJKlrNAszh5uGrioP3q2C46Auj3HLni6_RywAHVklLowqhMdbz5Fae-44QQebo4UHnVKI-Q82bb3-VqFBK1FCIGczNZvT3u8k11KRNzEG2egyNra7ViI4Qoo8Yo_m3T6uttv5MoYI13vHmXAJ-pIJlBSM84C4RBnHmMHu6AgDt3fvKMIFAyzjeiznYC_8qscGj1BEtIwF2HRTqC6C4AiUARWL_xt4YLD8RhY4_UsG0NFHTfkepHJLfiWYaYcA7_ag_bgc3uT5tj1E6aE0QMlexaA0nIoFRe_KyfIbgWnkIyaMsdhJ7FE44xk3BkcR5UumtA39E85Yb-Qs-V7ERqS-S7jgWo7fsN9pHUlt8li6sivu8RHXCgtOY2k0KMfdjw7XR_AmpfCqzxhKhhuOVtacPqxULKfocXCHkun7rIzo_0Pu3AJT3VCnjb7HeZ2zpObiOSlwB_a_cXMWGCtMrUSiwpcKy8h9OJZ4DnnAz4jH1ypUYLzsL54hilw36dlKkPNKiCQezJMHb1Q6bSm2GHAll-ZsVx6oIw9AOzBABDhLj1OapUgGKmlhW2boKpqSUCpAR6JNrXXlAUzxBjPRZeU9G1eULsXMVUMXuFB3s0EVCZg88Ayf0G7TMyGv0H51iNnWbLeV-VTizgxDLayf4QE7HDVYvZjB7DnuWT36euTZaVh9uH8KgDRLk8x-WgslrujbIWA5pTftlaP84YMEiXaRmyLImzTAcgIdw3Bh9J-k7-Ru5t_17wqu7eEidU1VqnYaYr1ucgIznmSBW_v-jy3NtAqC7d4cSdU55nRo8IHi3_BA9kmU-AfLEXn9HT6EGd5LXNE35e2krNGkai_tlu9RQausa-apzoI_FvLhqO9nNDAWllfvdH70oulCm6MSusugTVlW7-yBBUUjFZkTJKI24UhjePiW8cK-82Zu_56XbBRhcZcDEJA2SFZ8ZxkMT1Lmg9_oVt0oFn4zvXSHrIy8HvR6YQ-R6ITf6qqrzR3UPfN5ROEBCs28DzpAqX7cBy0eyHrzd_xY1kRUbNiUCUSn9wCq32UAy4QsMX3BEGeKEZqJXGN7D9ke72hx0s11LytqYUx4XOoWv7ZH8RIROJa4RGZG1zCZgp_eKdcYUywGEEyAEPFvtC_VX-VNFh03_Ptv9RLsmAEEwZZ2s6GFaZPXUJCuOJB4sfyRsjPKBb_s3z3FFVuEDhRoFS9UxmGimrGV54DgbhW5hzsMTvn3pVuYeDKFLRwk0gzj-R26GdC_aLB3vzjBKOfRHy3SHfkrTA47bk4Ye_38T_UT5v5G9Sa-fowSLLnyCKEWDb5qskTlh1EIDdVVZzZh-v0hkMPcN85Oqf1CLIpN4ZEt9uwMN-RAUIocAFaGMC6L0htniIMxbpWpP0BTi7WqCvk3M0J55zMyRhycfb8MmcithciBjrVOVJnlZyuf_LpjSzJu5832QTr9Ym7v-dYvnwa6IWEihedcDHw4fSO564QDSPLnNPE9g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a0f60c0625f1-85198738','','','2025-02-03 17:00:13','2025-02-03 17:00:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42163',0,'cd-form-entry','',0),(42164,0,'2025-02-03 17:19:43','2025-02-03 17:19:43','{\"firstname\":\"Rosie\",\"lastname\":\"Tredwell\",\"email\":\"rosie.tredwell@gmail.com\",\"contactnumber\":\"07966101901\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA74G9BhAEEiwA8kNfpZs1KG_AX-eTOyLuN5gC4TEpud3FWomKyDfB7KBWTS3ubiRxxOCc8RoCfCcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5ReUZ0aUbZ0IHfM8He602ZdEpkk2h0MxhVxAe_QPZcYsZLFlCGugycyszheFLrtMjIqVW8O3jX-8TM8tXeoZc_g7n9LiD3QBZsmgJ3JIFdy8b1smcD-zE_OdP8GqLhCIu3vYlsSDkBHO0-t0BxUtS6oxl4Njoy20xWMfVtefnMbNsAUlPkyh52HqxjiwuUpbqyNJxkQYnhH9zwTdwY9pxBgCmAJg3wXaBREugMj1ZtxSv5LBoX9KM0Y7w3Ma1n3hfD9viij49-qQ1lL8_jQl52jXNfrhWY9kUcME5rE23esQtV0pw86PCxZ5DDU-FhLzuN0nLFhHh7GKYZVHFlY4PzNr4GC2t4XLtPAcDLoS3vtrzwEu37AfzJd2nsnGz8NBrtd9dlU3RGH98hrcOdpePe8kImZPkTI3NedHMYPUvXwcG6LNIkSXdnpnsQtu811eQ6iHxD8u_z8hh3jgVTfuxXkcz5PKHVzPGl41NMyasT3Y0h2SvI-rz1baHVhIFQj3c-FTfcfGRGCGZ0gWMKjcDXG4u0b1Tm7CZ7Y77T_hEDTHPmiteQfuz1JLJKwaTX4CzQvJlUqDRJi-H_YHERN2tNInCmUdCKelB56h30v3Di6CQa6C1fLLUVUTROB8neH9bIJ0RENTYzeoxxdHh26SZ5vyeqE49S10IN4AO4bROPT4_0yDjt_XKvsZoOWkvrH4TV_nQ1DqxwLCKloehKF5f6Wzw6ioeALyqVCx4czA7HdFxLTRijI-Xprj0Jze66z1VGGteRPcPZzMlyG7vCW9tgCAT4kCIfbdBeTce6jkfJOZYOPV1gaNh5yUo4FeHHX_KWI-9vIHRS09e4oCi71Zu6dz-RuZ87_S8OesGTc9TSxvW15oufXbMD5rpLWwSS4Roh6NL5Uot_AaykMzroLcww8uo4Zn5XeCAD_h63oK8tB7a5neGgHsf7cZ7ZlPqsWyxWWgMINX0CKfxcYWcQpD9yDdFukpJX97j_wyZOU1UkmzUPLn3ZbD7BxK0CFnxHXkq177iJZKf0pCnoF9XiZM6u5MSsYxCvGUgbfuPw4OlBFTFvyiytvKBaRe6uMTikwcdBiOGfoSUufhK2WixFhegp_hQoAfxuaLtrcPNVo7aoU1P20KGWRdJiJ_oF3W6TQK1jHLKS_4o83sVJd6KSes7jaOSjz2A5cjDvNmXWp5yDhloGxg0GJ_3inkvJVRSUfNTEiv97RY3_ftjLwVmHQOWN49uZZ1YZNbiKj4CL1wV4mqeqMzi4ESGK1aAH5WNNtdnL2DozYi80RJk-6nHgXm_WXF-5aaExVvJAgpHO-X2hTyAq7agn2BGRuFDVFind7rk3N9QBcOvuKMtFt2JxQJI-XbfCm1WBg-hYh4g4ncJdEeSHgor0x2uql0kz11dkxXyKvXj5rKNYiKP1MpiGzIOFwywlF22t0a3GdYZ4Rw3qMMQXtNZKu4KtiYkyXYXrhePRrVdgK3nAtPgxRhyL2pkhy6JmtMBrQmvvMNfGgmFhery6Q_Y15gW1hvtloQo4IPLioK-M3fUNioiVrqlCSD99h_L1NQhDEgCz99Vs9JL1ShPeayskt_qx4j2IhCw-IuPsS85K5Wyl0BNcBQ8C-eP87VgsBPmBcDxzPHBUXm1v3Muh9p53RkJmOZZyq5hgy_rlXCyb6nhX3_5BFZKomMRNPjw2reRXO97EvlvWxvMbmftoSfukc0mjCl5FnGorLpP6jFFgjaWYH-gbp3t6eOZ-vWu5cZOLrSbXAfsRsQquONBo8gkGyNv4EvuCZ2Wj3zjXiuFhhcfB5Ea2l90xyJzWuCHF-fqglG6B46A692ER7kr7hFJ-a8qF4lR_r_eWYmUplhLDwaik1eLJ_BXXC5d1m7PjjYHY7SIzeR5CDFRiGBBLa4b_mzzlNAwDaVUBuwljBmBWx2cSnSvGC5TmsCM2zOO2pdvgEr37RQPo9uSuxSMvkNbb-5DBvnMJ7IDYF2wh6_KKOiFowh6pKq4hyHU0xQshDw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a0faa0eb41d0-15617777','','','2025-02-03 17:19:43','2025-02-03 17:19:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42164',0,'cd-form-entry','',0),(42165,0,'2025-02-03 20:12:36','2025-02-03 20:12:36','{\"firstname\":\"Ciarra\",\"lastname\":\"Kindl\",\"email\":\"sushimiyake@msn.com\",\"contactnumber\":\"+971506261843\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6ncLCdDjGim04NaiiZmnMosjAiU0hAuP8ohTeUotbolXkHwyT8LyUJm3SyXvOQhPL7u2hWZxCjzAqMACjjuuInR2cqL8gH1lMCd5jwkIuY5IudhcIDC7xJNxrtmd0UZ-jrncFpj2PgAzHGusCmkEQNeoKt24awE31Mvep1KP-KjiJlskNRKCkWPSS5oAN_JvbIF9IpcKffB6v67aArZ2LhETeTR8f-_vgQmloIR1hYlGR8yCxxG6zl7nodJ1scyt9wzwV6wt93n3BCtdaDCQ5YKFAjE4YPyuKODtYzJdJnMRf3g8P3t1JYDdrxNXYzBGTf2YxEubb6wIhsv1UBCplU4FyW0WsmXWiUihCB_v3UwqDTJLf2XZFdwOLkz3mcrJbByENm7oaZ25mR-qBVOvK0bN6MKxAni8V68M0Jd7nwXwLeC0O6XxcNXyH6IpQcr5HTAnVZNGbK-jBd-JJCA3lc42FQlfvE7F-Y9IKw9U1b_TiuN5hDY3h-1AZT937QJis9JsDSZmvFt1xtdlQOAqd3cKG_UNNVdx5rP79R-8-cf_kOIJcyNH0yoLC7s9ekTLnfdsBjYIvu-4rH8u26zQqQcpnxCJAL8lJDJpWmI2lqLD_Xd79bH8CXyu0zZlJdAeNvxmN__itc5SwLmdpDYgCER4uUtxJTIK0zfBgkg2FhxfCKScK4dbXDr97DPsnpPKF223Q-dse6JQBFdLdoi1MJrEA4ire73cdcutVoRG1vgFpeUuJVPPWxTdXLotaaa8DdcHhz9FRh2Aupcs-2m5zCw7Gd774uaCwAgvFN2oTB96MGwJwzoGLeOBk3fs4JIzoek3wiW6GJ_EkRGj_b5TpjgJBkilQMUxpX_5IA5mo_TNtJFtPlTRW-KU9rWhmXiQE-6GAe2lfF2g2vtDSIY5dSm7zpCyc_CKAQ3J4g3A8217hbdXGB2KBoW-8ov8v-jmkV2YOhZ7iiA8vQst2Vf4L6sxY1HztoL-aa8inAJi3Y80-MgmyVDPobKpcLt6dl3m_vAlcL1GFDdBolJRLigQF-2jrNfpF1_meADgkSl_Bby-NtApDHIIh62YGDP5zg1-d7JQDYlXB8WDymUQLeZYenSOW1rS4DpSQ0Yb0IgzxVHPun-WXaLuKkN6Gv6xHkrfhtq2D5DjR07Cmr0Tb5SDuvqvP4Dw-NITD5q2tqDRJ_-X9Dj_u7ZcbKtV4NaDPQ8-JyoXjoTe9-D7K3FOZzGaJ0K4Hwt_yVP06-jDq0-dvkGH5uMFMjnWkBn0QKqOfQLJ16MEhA3Bxzrzjms7b12DYa2d0-pMVhFJQWuk-KqB3xbxmb_s0_TX3i_gdj5EP5OAmvn-krNqCs_Ww0sD-hdK4bnJcMcq_MClOB7HmR5hpgmbUSEDuOYp6f-Rsk_KpWcScJ3RihwE45wgni9EAgfkAoRRDaS8TaeqjRWN2WqLTyUNkP5Pjfrkib9IKOTaH5tIZh40yNPw9XwAZ89NtBQ0slZVpSAqCIaoxrUFkfm6JhlpnT22pfPrXFY4xZjH9AWZ1cRqNprd4qMJxLWILURSfmkeDmICRLrkmEgChkMLCzuHzSL6s5LzrukjXcW1OJsODsVcWtOTNi7im_Fd_hDdljNEMsC93Kvfzjp74LIYvotW_uXZ48_haBDOuSndedMYzKbD7AHR_x_QakM7GXZyuFLORWOSlwQM-2jYw2KyuavMUeGNtDYcA1_nmKtTCYmgZDZwk3Zuu--yHzoqwO3JH_R24R0kFja8ZpxQ3HTGYgurEL_5ehuzRqSuM2-P3jSzKkSuXm_owMQzPz9wOla0Gdwhq2XHc-HSIywaszK_A8aoiwiQacgw9EvKW6AKtlPp7eKEG_e4JIGHR7Ngq-UJAFNgazs047HihoHvBoB9_mMHjTZovnNlI-uJ5e609C0_hn6-e7jlJW1Nvfc0sT9gZn53RgJq62zRAnTTV7iGhIzkvPIbCyG8mFi7NWXwLwrRtIGKMZ8x6epXr5Bt-8SU9ERjbY9mI4hvIiupnhyHNkgMHu8h10CJn1--YnMS2hDedBozHG08YxX9b1ZB5gw5k-mmkOzNl6m9LO9jRBvj860ry6IQk4fPmsJIPs03kBPCoZSrIcx_MddTjWI2YsnUsZcOLZCZsjSbPOKcicKnudHXdNAHVCIEc82vSbr30Vo4unYG3lTaCdkDihYcuWHn2CiacPandy43IZOcKJIClu-xun7cmJkIV---oxIiV7RXD5h_pe13sHOacKj39ngQsZ3siWniglccMwAsl9HQcNJj8muCpZCHh24UrXqNAqs6uZlxrAdPcOtXLKK7F9ib9HFy9-0LprnTqzc6H6JIOYzWNRhP0bIJTvB2QEejzwbZgBvxozfEvixnuc3dkmrlh2Ah2Gu1dWhpna9W2hMCUnuPK8dm0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a12319c0f620-91435187','','','2025-02-03 20:12:36','2025-02-03 20:12:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42165',0,'cd-form-entry','',0),(42166,0,'2025-02-03 22:32:03','0000-00-00 00:00:00','{\"firstname\":\"Nat\",\"lastname\":\"Sriprasert\",\"email\":\"c.natchanun@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5D_ciAxbh64JwyjKMdCKJEMvaEd5WTQ5Vflk8THUgFYKK95_yD6uffarVrlW8XKopwQEQ1l5OsFz8ITsA4AkyzDr92lSZUuwh-9jmsNO3VFnt2hhAUuXTGFE5P3aH2-G8_YsxCjPTIFXwSxa3hLaN_b3kFxDXnJfQH4jEWdlaP0VQzIqYXKtDplBVWcTOhlvE2npZjc6MTD5QiiZ_qpKxHCs6Ws9k0S5ghcjD2iar8biwkj0qkjFxjaSJ0581K9Cqd7pwHZEAOyjecHaG5o3QfJcZfeytCCazEBtEVtuAo_V75v6p6huqWP_z8L_yI6Av9L506f1UbWnsq4oj1BfReGxRKB-tQnfwvG0s0tyXAl7gFMo53YgSbAvfB9CfNSE_HvqzCLmhSoh0LfFSXAQMu3Ns20tVEdPrWWKs5KML20Y6ahaO7KlqvK_PulsgRM7-ingDDzAYo1-bEYqtTIz_gJA8Q4nBoRlwLv-XgbP656E4YQbLbHnX6c2vOukYM-McgRtZqiYsbbTFzBlUhqfAIzcWLdsqFjDIJd5bO0VPKnApR7f4Hz06nS0wfxPIaAkNBA1exbWPN7D5pL2RBahe9nD_w_F68Kj_XEjmbY3d2lpH6owHFlbgufPpw4IJXXIg0QteEN6t1OhQ1wTG5PqtlvcHvtqNZ59dzRzO69bXxd_6uWDIPgcDgtsQkkuFLYJr5hDKrRovcbx4Po3NFqabObsuUMRI_suf8WH4Ky7FruOCY8vnDA4BZMHd4-DjlnvroEoz23NLlYfez8sTpFFlFzbuFtCrcSmvhkfvkRmhNTIqRyYDCAuteoS-CHZei-Fg_c6nzB37wiXJw_AhFpJ1XJyXLhX9ZOg9j3QJsVBh-ZScYrviqXyKkvNzPaQuFzGpKhHfjkoZ3sxGZlTyChwRPg7h_AuqTQbcn8B0BixGm8Pw-RTWx8N7RA8Qtakd4wPSLJx8yD0YFWjektxuiU8d7nQ6lSLjs485EoR7ylYLF3WRkrDbbvo2zyMJaHvi2HBpymkoIf6DsCO1jR9_lzH1N18mV6AQW40Ak8o1X-JrCtYePA-xD5FJIA1JKTeq1Ci9_3Dcz3Qw6UiZH9ewPCeudgwGvFibiZX7jhZ_xfzc2u669Ypl_sL7Hk8otcoYJPNkg_s96gzsFeTchRXZGxh6zWV70WoCTyNKgvcaQQ8GdFxtmLwxXC9NYunsA2kDRjV-4uZ2CQVEKFTgv1T4cCNpK2kFe4p9O1jgcG9cHLelmhuAvu0Blh68_0r9Il3Xa6dL1pfPNKH1GQwoYPRsWr-rbEXYmJ6RIqMTLFiatpojFry3LbE9ceXwGLW1otkhcyjObHWS2hAhD8vso_ToPnsijAYf9oHI6O-WexTxXKFhVtq3enDhsZOlbMLaMBS0GoTzj-2gTJtj9leD5U1rZPDKbWOGP3pB-PBGsNxcf01CsW6wsFHU9HJoUAsK56flA2UTp9axfUWSZkzmaQdqq3jQgqz2LOzdR2yME2NCDHoYY2Qp__WMSpnlLEjtHobEPx7M-CeJ7yELnzIFC6geyP4gDO7A3eEGUib090MnEbkFa8SUvT9wykyQL0L6AAzPLOAmkXmhGTKOkNC1gdLKkM5aKU1kCKXz6Gh7-ysX55jF0DfUmO39XscShIeU2z5LDDEGdSvxsQSEGOgskRs2KHhqrzl2nJ7NyACFt1_8W8ovx86I3e5s1hKAAzj0EilllPDGKLF4G03uMHI0gkMsj2-6IhJvczId1CufiR8YQIwy977O1ovMIhuO16mRnYJ_2k7GSn85DzEhW8wGss0U4gH4Tj2Y7T4cCirG8k_Wnb9UYzwWnpBfI1qh0tVULx4OdnYrHffWUwrEbpFHPVQOAX81vI-LkrMklqW-0MdR70vmHsmqVfc7W8Rlir7GSEJv_FETcVFxBDJfW50mHWsw_WJZxWK6uslE13LOYE4smZ9IQ_8HZmpKleV9029Fre6KWgc5X8jzua5RJVQiUMINEnayQW3UvP1oEIa1OLWiFNbMqD-1N9AVF7eE7kBQrnufgGMj2LHyLadz4Pck_f9Wsa6vsh5lmeLXt1GxCGGmiF-Rq30kI1yX4F8H185Ac6IYxL9E22AJtyd5iHqJe6Hn_fcuK9QDuLA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67a143e3c81377-72650582','','','2025-02-03 22:32:03','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42166',0,'cd-form-entry','',0),(42171,18,'2025-03-05 14:35:43','0000-00-00 00:00:00','','Banner Template Draft','','draft','closed','closed','','','','','2025-03-05 14:35:43','2025-03-05 14:35:43','',0,'https://biomechanicseducation.com/?page_id=42171',0,'page','',0),(42172,18,'2025-02-04 12:13:53','2025-02-04 12:13:53','','Banner Template Draft','','inherit','closed','closed','','42171-revision-v1','','','2025-02-04 12:13:53','2025-02-04 12:13:53','',42171,'https://biomechanicseducation.com/?p=42172',0,'revision','',0),(42173,18,'2025-02-04 12:14:34','2025-02-04 12:14:34','','Banner Template Draft','','inherit','closed','closed','','42171-revision-v1','','','2025-02-04 12:14:34','2025-02-04 12:14:34','',42171,'https://biomechanicseducation.com/?p=42173',0,'revision','',0),(42175,0,'2025-02-04 12:39:54','2025-02-04 12:39:54','{\"firstname\":\"Lydia\",\"lastname\":\"Hitchcock\",\"email\":\"hitchcock_71@hotmail.com\",\"contactnumber\":\"07792114153\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA42RlT2auh9Tj0CanRMS0cVaBFi0BlAylPIX-k70ebBS6veaSmaQ_5V4jAPJYmGOzLEKcF66TSMcWyJlY7tdD1vt4dh6Z_FQJuybZOZ1dOjNIytsjD1-DFNnOhI_OoUmgFJ1dVmJpgvWzbcgML_ON6P1otbXJJXsKWdiQ0YhQbY-c6iVDQ4heJxUtNUp9Bx6ujocVdmy2QJY71fWNBSXMidsxH2qqdE1Ov4vHWiOmIEY-ZQ8wzITkTtO0e1Y9iU0MyT9yynXVrr5Ii0BbW-9aYkYt8t2T-2-tYePKhhx05CjEcrOmbC7RmFmtuyBLh8qsHPrJQ0ab4XtmMAg6u0IYJx7LzXP8qEW1MusvFqp4VRlD5oBWbmzcz9BV3vQ4A-CvAgfscYrGU2E1K2COpsNCKxqcnjWRPLpicI5mmpHCgHFv0vT1eAQ66OIbXcltQR52QYEGPtJ0UvHNvYRo1bbyMYv3Ul5cLyEBJ5ikho9_66cZbgDoIkcNCtXYjJ-O-wzG05sLHv6iMnuPKub5pZ0EglnI9wjOq5xm14_bNCoQkvmYdol0WowBlBHQZ1N7TJRt0d2lWetojb8AgRdJtyn9AE7cfpsdWHm7G4ROqHLY9mb8k-3A8KnBTLuWOUTuyj6A78H5oI2g9rFb_xssKraEZ_L1df1eZAiJGHh25LkBaQ0bNK2uwGCsvGFkH_qaLK5GLXQYoTFlZQVedaHqrupLSBKTKNTUcSizjT8Rno4EJyjQsrAU-8a2AKogOhQ2mb9I0f7VNEic8Shh_HuHPVoLA6raKtKcXalSx6ncVh-67YDXJwRhUdoy_bU4mWSTx6D0xNZLwp61sSlrPWMdhMIgllb9HHP6RtehHm-ILZSmkUEDzDPliRUBoDIZ2GNXBgfnpLUAZfj3SIz-zZvUuvf3Lxz-ewe31eNwjGFt5JYejIPsJgmaxe0WlzJE5y31ZR_uKRcjsPROTM2zO9HPi50HEjc1wF16x1l19_j7B8p57lG-phBEo69M0fN5UqkjRydeySaSTJftMND-YKdkvqIZOOuhX2BZc_SL_ingbcXUNGafXv4asFCk_bjvPOaJwfAkPeYLRPGms1hULyPgt-iBDFSf84aQ_MARDys7inJmRc5FG3qMfhrb1QdVxg3g5NI89Tcqxl8JVMmvBT-48hBZOUjgHjYB2EaHcZ0yN_htwgHJE7BshppkDJlIrPVzuIS6vV5n9eXmpJl74d7qAKuqdBFdHtQpv6wKX1vxPN9pxYag1zjKcPv8kYV4rI6uWvUOiFFpvPTlP2HXZHXGC_fycm9VmCSmLWEjDUqggxcd5UnMrYXREH8Sm1qKF6kdc4tcsanLvO-wcIaKdyt3-_s5WTbfpH1M1BWynOkrDyPR8X7fljWuehonea2QvlMWrJ7QtyckcerXGibXRYXZVqX0FSYFRgL8Hn4T5MO8GnCWf-iRRUwZjne1hhYY0cFFh--IJ3Z5pXrEdlRk6YW0f8dEnIQqs3u1u3ftCmoJMKqwNfUtU3ieOWeIB4ec9YgT1lzhhUelAQ8sRC_0-tlikFxW4gyoFFw0YH0xHE8f5-EeobxvcU0EljdDxyhljtC8MXRG1bBph26EzPqEyxP1fCPmLJ8ZxlJLTfTXf88-SLQijjMj0MuhKwMRAURNkcr7f7CgAocSYk3Lf9zyZBRp2LdboSS5P9dm99nrWGbvDiUm7edsDm6MRLmIF4GIw2Dvxff4R8GD4s1ThCsFbHVnQ1mgePKUthBeWJI5I6FfyVt2TC5PjrYIh0x3XXEv02MvwFjEh7wBRty673TA6xLHZ-SM3s2-OMyBcYVIZ-xEfrosS5jAUDazJavFjTq32qjXrqNJjWsigPXSy-j18mx2U3R7MQltkzEn-9K4KhOZMJFT75C97WBfdTIkPiD397xgaBwQn1u_NqlDq1p9E4R3IBYZWC9QYMeSzRYxyZrJaT9sRlyq2aH-9Rk01aucpW0JLwYSwW76HvUlo1gWdx0SoNfyIYt8iRR7wt-3B8j1nUsb0etxPUOTdWU5xajSY5sCScT2C3H_yRTSyLD7MEoB6QB2KUf_-ybANvofiGoRnZysgY3Y7ZwFNqpjSi3R3xvC6xKVURd5BCZ3YSWvmhVYnorGtdHbagGKmm_Mlrbp8gRDDfFyDqYfu3WYScB4cvM2uEpSjnPqfQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a20a81021566-10191995','','','2025-02-04 12:39:54','2025-02-04 12:39:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42175',0,'cd-form-entry','',0),(42176,18,'2025-02-04 12:40:05','2025-02-04 12:40:05','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2025-02-04 12:40:05','2025-02-04 12:40:05','',40779,'https://biomechanicseducation.com/?p=42176',0,'revision','',0),(42177,0,'2025-02-04 12:44:17','0000-00-00 00:00:00','{\"firstname\":\"Lydia\",\"lastname\":\"Hitchcock\",\"email\":\"hitchcock_71@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA4uasJ8EXUXMoqcREhw66X7wTTBkeM-ZqthCjNhkH9NAA2pXsDc8Nt-FnpOnb92yv_ghIsr-pM0a8XxsFZRAaq9pn6wBMuCIg8KC8kk3aeKKaM-zBXo0eKkFJruDkZgrKa5yRssjlNb74hiaFtrC921rY4M9FsCLCmAiNTHAfBw26_4Ugj-778ZLgPi-sAPXuwEM_JlG2d_3ZE1rfnWwC_guoprqqzsU8ZikqamgoRFi1HDYbUuu_8F2c-J2sLNLjyvqz7YKygXVYO1cRIu0fQ0CPtkw5Xh21M_KnCVu0wumqtgtyimE10LMZN2cN2IKTnv5fSk8avNMC8KqvDnxqBrrz_F-w9gzl8jITvv1ifSLso6u4CGaVK1EQAwC8aDn0QJS7bfHtCLWy3rRry-EMZiyt7cshVHZDT-eU194au2qU6pSVrpsaabRfwUmRVcJeIhJDO6ZdjqDq-jDuTtS2qC73dK0GtSD6um_sF1MzggNALuR58VCoBUdOI_A5m2_g2a6SjTME7S-RPpgsgYcQdPrg79XDyPGRZ87GgSHBsq8U7gKD0TWMOlDvHRtWJurfCUEzyvqavu1qntpaEuxIXyvza9U_yLhrHb9FCMRC8wlhgy_HPvDpn7PF2ZeklOBnM6ez6z9oXk5V9_LZerbQcrzIgwAlgHYtTZ4eGQtNROvTCthICN4ryULhJAFc46c51jPS5kUPJhUAL-EK0bgtuAJU0KlBHgskNBnrrBvK03hbY8DlUmVvzODIKLZLL2Z8bbDMz7xPjDg0zhIebEHJV9sUHTd8FK7iFDHDpCCuZb2GLvlskP5k3B9iKBf-g_JGqbYQDQZKFm7-EliBhottvRuTarLiAJ1xipcgzr6nrb77z1UXazp49I9IDXDezV_yDzy3cy5FpRaovnqHiD9z4MsF2n2QFcspT8NvX8tojRoJ64IM_jtj79nkAkeS34wcRkI9cMc0eMSUkM--g9EirzATvh1GvYgm5sNzDwxRigBnjGXbakInMgaZ119pJlVzvccODljLnBQEo0yF3yKdhQ4ER7LL9S8OEyCDNkC5cZ3VPoemMZAe3Cg1Lt-0oOcphiPqvq98B6MhFDpB8igMDnIv38Zncic_oBRCpkVKn4LmzANR_qrLyK6Sim5wtYvHoKHBWWi6XSX_23IR7SVFt4YZxGYCrRmZh3TDcjUNGs47cGPbQ85y_tgbhbFA-xpIFqsFnJcHPT1M7ZaUSSeDJLdwN2ImzjBbJ38CKKMvGkqMyFUkVnEiq7BUf2M6tdAPX74gpipWgoC7wAgdVLdyanMYWlZXsGy6Oa5G3YPj2_3BNfOAR_Rxp53IjiBNbjym7ZiQ5ZgXVA7sskhkWa0bIMidvtLIJYSrbSA6yu6egcDD2yY7S2IJ4_xBWdcliLGy3JCvuD7afmjHTMYAoJhWLj6pNF-a-ty6CDTxbYCcJE_fxVnhB8lQ8B41DW6LfwinYiFMlUgBAN-WYeE5oTWumfW8lVzFEnb0khFTfE0Fs5qPRA-N1GwYrjTH-7NUedELVi_vLMQ9hvvS4e1z09KDcrYCCJJNrfNsxZXA_Nt9QHZL3UA_99heYvGeDMYSmDh9126CCj4YmhY8mGohG0m369F4b-ewI8cYM9xHZwfznwWno44CvbIJ8PyKljZ611Nv3Hcp-TIvlycXpg1qU3bHojaK4KK60ezy11mGS5wJ4SUsJvN0tMvtKTYqEZ5_oJngw2TkCsyxWKcTR2Ofj2408SSVI7Z0k2q6g7EXqqpSRTN-s7HphtNV6gNHRmbYj4p8z_Vafsoi27bcC79ZL8qvKRvTX80-qaN9jjnQ9Cz_bW4ktXWLr-AQZqQ__pUwpwRqadBLRO1mpXDkmEGuj7Pf9pTKgoaXRTfl7fy1PKfDNDmCs8CBsxmMuLoE3c77RB65mUy7pfTdiWZJ5kWumD6vrO0-ufn5YGzzQw1iVgiOKXLoJKFndGJ7TqKGaYtcidmXQA5mjhBXJCY5uXESJ3s7mm4YAVnLbXKH07YdD1v83BjfzJLmt041UtZ6EbkCms34N5OIHBzNk_OOGIKppGxLbDra8tGu3ewzP-Twfor5pyKiI2NqWth5Gr3dqsz24gJBXrcYLkgAf5g2SwYsHYbplC3QaWBXVpOTasT49DDIoMOZ1J_q2JF7iyoJbWzGbkNOzx9Wl7\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67a20ba10a2b31-93374362','','','2025-02-04 12:44:17','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42177',0,'cd-form-entry','',0),(42178,18,'2025-02-04 12:44:21','2025-02-04 12:44:21','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2025-02-04 12:44:21','2025-02-04 12:44:21','',40779,'https://biomechanicseducation.com/?p=42178',0,'revision','',0),(42179,18,'2025-02-04 12:44:47','2025-02-04 12:44:47','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2025-02-04 12:44:47','2025-02-04 12:44:47','',40779,'https://biomechanicseducation.com/?p=42179',0,'revision','',0),(42180,0,'2025-02-04 14:25:24','2025-02-04 14:25:24','{\"firstname\":\"Megan\",\"lastname\":\"Potter\",\"email\":\"megaponypal@hotmail.com\",\"contactnumber\":\"+97455270730\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vyOiNHD3qU_Jc_FS7Km4gCu&amp;gclid=Cj0KCQiAkoe9BhDYARIsAH85cDNb2fvVHciTc1Jo4ihHX8uCI1fQ9yoSKFzyM_2Y7TI6H0dPlZJ6MfIaAgl2EALw_wcB\",\"recaptcha_token\":\"03AFcWeA6Bu695fnmPNEqvFHbHEY4U9ZEhtekF271-x-akMAusrxAs_r898cFXSLFqpy-yPagae0uG6IAPtq-fUWN2ErYlszQsoscY_FCNu2cZWrrkHK7zmY3TWzqVHHg-4J9M0ad8EgXEG1tsy5JP5WgSykXyrzBoPsA1dn8HVl7_twQR91lUANPBCymYYB-p1gmJD6a4SUt6f1k-y-XXnppzbVNp1dyYNBTuB5dmF02BifcktzkVRvb0_2PwYX0j3QTxUXZvTufQ6sHzjTXkpMU_D07vnK7FeTMONP1EGdL2NgXijC7VEtrl9yWPReXOIANcol1ps8mVNkp1xkXeouYZGQGcpHM23U1WJFevBdCCMcklaOPwwEZQ-NWrIs0ady4co4rg3J4zeq7n9maggOzRh38l7LSJVlkVflhzuRrMyz9fmHeoKyYiS-CwaEBAfzq0Pt_oG0f2jNpS7A8-0nQDjj-RR69o9scLFaNNtfsHbg3Z81VWy9MpiiNcLRsMcZoGpApzlxJpFchZaunKRzu7esUnIQdBofoUXTFSeftJyOyunzY0-yrG61BtGgJewpucSbB2iOWQeDuO98IeuOuJHBDYLZXBrEhWNzEqQtusgmiLeYN-p1NOK0X-xa7iO5gLnoi9ABkFOClxowGPLBgiUWQHYDnWAXQAw7NMrqYUi9kHf4Q-kgEiCnHNk1RvWwCYoPVNCxUwVdSL9f9OayuRaIai-jjJNLZ01Gxw_3W17-uJ_p0RyyhvRGRQadirXl_rFtKs2-1xTXGtayCB8aLYST44WUyTIj6nDxZgZU8b2WRiC7iOUPml8LiA3QjfBBkf1QavdwccEb0Fa1B2678z49rvoxdybH-OwmmKK49f8n27k13MR6Rs06wuXE9mCf25CLiobbfs9v1ZRbR29CNVbMJLz9Cv12ShApZdONyHD_Nw5_-_9Du3gMOexlYlgnlLslQxhaewwEg5i_8ERKzHYlzT4RV49FxYvc_7LwmpNK5Rnbqw1oxLgGDbxUFUyt2SuwB7mHdZt-jX2uqOaJWc3UCzSHC5OJ6iyU7L7ihEAxxQnYkI3Z3mIQyXG6Zw8o7KJN7jwj9B-UFTr4jY_C7gxwSN9X6cK1-ziNyQniW4fmd5FWxpnqZnbQDGGTBGo5Jlp0LqGJSelk3Ls9QjRbO1ZnQ8PpGUYMVWqg63fdBJPKgD5SBYMF9yAyvlwnw3zlL2ENPFgJ__OSFvpmublXsbMnRlwonU72u2r2CBOD1hmA1eR89AR4jeJLKm_nLaJp-b-62y7DYz6yaj3OuBbJIt3xetKzmxkiB1hTL9YuTiGnK7Tg-KEkqTDuxX6zloMBKDE8XZKgxhz5Ig3_rUIfSkrSsUyvHzVOlYs_4brWAnwFUDikp2Jcv14lWXHMGUmt6no6TrzBklovQyPSv7Vu4x0Cc0qOaic3TNesIN08w0TfuxdjwXA0Fp1lAr36fgn1DucubMejhi6eUhXCLI9G7KRArkPa98jjJxLy_sDUZ2syLlcyBrK1C_XftAzXcBLfO4L_BD5WL2ft9u5MMzv56KYaOSYyhPfo0VVpY1DyV0N52osGNNOIWvNmI7Q6AhVc1PdvMpN8rNSl3SVBi6Ji-LIesUhQB2QHV6hnQ21H5KFtv3boNKdwnzd0bLLzZEVhZDxVlpxwU-WzNWbAvUhrvDY5viDPONC48N82i9fXMqjRe9bj46WD5o6D_t9AhdOf5C5x5UsSUq3W41gNYsIs7NJ5zvY5NRVU4LgCJrAYFpyOzq5_6KU717M-okUwtJnW856nroDgHT5VKVr-A1Q1c2iMeDVtcUDLtFJRyOhip48dXUMW1kx0EdEC0BH-pQgNL04r6qdNugblnXh_suUm3jiXp4tq2X54InR44S-2Gqf-RhUwvQBF4C7IcAisNJDZhwI3kFgmYL6ZV2w3-kV2cn0eTWMOjvY0KrG0R0wXCgWaFm-nEDt4nL34NppqgQNFFi-ga87lEXYSKOaB26Q2Kzxnba6kALBP1nkYdoFen3G_aY2ExV_hSKD7_6_kY3xxOtr6jyvJ3a6WZpbBCAEG9mMxyviMHaFytiEeAiRhP8JuuWaNz01HY0yFfZ3-qccTPD8Dsw8ZC6\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a2233bdd9e17-32014167','','','2025-02-04 14:25:24','2025-02-04 14:25:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42180',0,'cd-form-entry','',0),(42181,0,'2025-02-04 14:27:16','2025-02-04 14:27:16','{\"email\":\"megaponypal@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"SW113JD\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vyOiNHD3qU_Jc_FS7Km4gCu&amp;gclid=Cj0KCQiAkoe9BhDYARIsAH85cDNb2fvVHciTc1Jo4ihHX8uCI1fQ9yoSKFzyM_2Y7TI6H0dPlZJ6MfIaAgl2EALw_wcB\",\"recaptcha_token\":\"03AFcWeA7dCrtlw30EuwrCrc_WZQMURpLtvEYy4HRzvLpmr1sWwz2wsKYWJmmztigmG9o-KUaDuJ7GMaPj9ijPk6WiTknueAYbua6p5Nt2-WZ8eB0yPt8yn7lqMz-qrnnGP_Us9gpOhnneLoeXXEjkuONtm1uXGfO-F6lk56euuLnYOszT7YJ_gReiGSXcZ_X9VV94RpZEGWPdfBs_5kZPM8b5hPkrs4DiWAdMc-p_V_Evr4H4gVbuGyOVuGws3UexOoj3SX2JogqAkfg0DWPVDxEBRgJJq3kJKJVkB1LIp31DWT0jIdERXEEbKtFG22ZFtbhXXWxhbkqyZF2CxVqs0PUNQAOkPFTY-AIWse3ITVjak4upwD0AjwzPYUKCiu2UM8Khj_i6fHfRCI1n8fRoWnn09U_Pw22J7lE-EDGL_j69jBRcfdcH7Q4-zhRAJnjoVnsM3RN3L59V1ePqqehjjo5SvCbYVFlgSBe6NfNB2w-gbhQ26Q1WxOuBwgwCh-_pGadFG5c1e95ModomcfT6QskgAO-VGULe62YC_DxvN0sxjSGSRdI4eFYDR5xer-VktP_Zn8eX_YGO78StJk5q6OfPvCBfbeNRrrHJdXTHeLK_WfLonjTuo3dfGpGkor0IrHIkIb9EfkUBK89hbex3MFP2lfVK-VZ-sNSybntwaRoB-PYOx71wKEvbMDYCAPe8Y2ntPgQOZOGJka3J7nIw3OJ-a95DTsE7mN-6bT15n-_U14WzYeQBdO_XRgQk2CucFMb_OkALcFhhuqezlTwO3JhTFWX3B7aoHNvC52WLYKMeS9wM0lLmcHukfSzynWFs-2ILRM78Zgt7BtdwWPqtt1qh-RW-wqnPyeiTWsq02M2T95YcLoQICdnz5dYM-ed4OUAt8ZLuY53ST9fM95_pn8gNyddI657VRYO8NeU0kVOZiPE2r8RKhRTGoKByDpCHtaRbIlN_BqdWCsa6tXO2fAan_1KxjdJZq7x_I2HmIyb2hUDJ9NeDTeLhfpiONvbXh7v_Wm-9MBqGojRUBeG1eb24-KKOHxKsvWSsCqr0WcLQ1LTAXsYXpBVH5m7NprT7dJt9KcqHsDS6REAGGkUjMi62G6woYY9UsOqxG4mzdRqSBR7Tvp30J7mESdVFoaVq6_o911JXq3DvfkWFefLBWVdCW6H107lL-IN-qJPD7XjJa2ZdUYiRAoMMcrp7zSpskrZJKUfBvuNKswdw_81vYDEgkqB1O73Vk0YGdLQzoHOMeTxuQ3dwvKH9WkQ__zgJNm2BHTLy9E7LTO9bFg0SgohBpqgTnFm8rkF3FVdJMsrirEOoS4ULLa6k2sl-xwilpRm6yW22DvLzEnlrGTXM0KafPN9uvWNgPGO1lrc5hJam94u4NNz3ILOEOfGmXbgkxtahen-NVv5cA0KF0b0gsaO43gtCww0omRI4LDjVzv36Qfnoq0X_wKOU-Ft3RL-U6_BqsLF6Cb8GXStSzi7QuNvKi4ztkoY1FWLwwaRL0e1iiMvKSxS-H8oS5Q6dyLf86gGfKmn1wxpTsRAesCSqbl_KGJKep3yjuTyUQ1vFvbqpm8nl2aOY4QmjAyMGWDLeql9JbZvpu4HYmxhII2XXxjpBJd5NWlXxnS1o6AH8mK5du_wWwF3yc2w-_ZukMq5SpWaAnv7OCEE0zbu24rZKZr_GQUotzCKk9qE19Kdlf-tfXCqD4peirDmoLw9Kh5aEWlfXsYlmK03587jfn1PLs0GkNkVW6ap7hIPzGmt6hGZuHC2Lpa8-JnQvpdFGPWEUkprmyCMQvbosKBDzoqjJeye7N9MY57b5F3Il_dSjOWGKX9vo3RFxvmPdS__Gfz7uDYX72Of2ks6UjatgPwOrkHDQCgmiJjjekRP88Tkqgh6fseP6HZWkRZumNP8m6el6dcrl_BNbmfCrpp29s0AZBXXQjJ4rPUqAROk2XRn-Qx_L0VvHlj01zP2hplYSML7lVaVJSO7p_FJHaG3Cokt7qBw_3RzJGHcBO6P0Wu3Q3VipYx-rWmYFqYZEIrX54ID8fmcqvkQGvk2VeqLBmpbCcZMUo-UcUkAan6sMdA1or179MFUCmpNcAdOMlYtmqd1mKRMEdkG4lgYI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a223a9ca7e80-12037617','','','2025-02-04 14:27:16','2025-02-04 14:27:16','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42181',0,'cd-form-entry','',0),(42182,0,'2025-02-04 14:52:30','2025-02-04 14:52:30','{\"firstname\":\"Rosie\",\"lastname\":\"Tredwell\",\"email\":\"rosie.tredwell@gmail.com\",\"contactnumber\":\"07966101901\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA74G9BhAEEiwA8kNfpZs1KG_AX-eTOyLuN5gC4TEpud3FWomKyDfB7KBWTS3ubiRxxOCc8RoCfCcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA78RlmoFkKsbGcn6IAb9qRE0k57OCD8PgiZ9LZStZRsJ1AaLGVvKRzeluzSpDZw8yauFLaRDk8NHJ5LXyExXIKHdhM4oxGiaNuGQj3edYv7wq-3wm6RfJNAcodti9VvUlR_1M6ZbDO9svbB_hHsZjYd6JUTGo1l2VXcNaK02BNH3y18Dct_WOo2HMwHXBqSfATE5Qs0rSKMZ95d4tH4SZUETa-kZWg5v4_ehE0NPPwBUoj5vJVz3YiYQ4pd1seLN2EMxb2NBl2AjhXbGbIQYKpHQIAHDcvQftnZo4r7UgdAV1olsJsheZR6AbhY52wCQ4Z97ahMeCpSTQHI-zN2PFsW74gEbR-55XsDEVSvv7-hd-wjtBZX3G7TrXUPk0m5Dxm4073nqgjJtsLsOHygLhFe4IFfBw6_Yv-czttLQYf5KwFsoChBO1BHBDfhWY_Bsl5e66h7CwCgnC3-n6UL7f5ZFrjBLCZ1D-mTvniOjST-t72CnG6KPVF8ePM0oopFcplBfdMuYHKHiXeSlZM05YXoXtJoWZ_XJ4TmCYoBD3y0rcfsw5GD9qml_QiUeb8FqCE2pTAjxXV_wpOeupD0R_QlcMj_dFJe3dzQ3FqYRCM3TtGdRG4yjUzD-XAQeyHqoqUJvLXDDto41GtwA4kcMzZa1D2Ufp38CcZghl-_hww6gJvUbAWH6FTW_R_1pgmVca8GBETwSq5fNSQX7hFuD0LVNap3d9iHK55feN6xE8OZf_eiTid2FDSL3-CLqifQKU1QyH9Xr7U8stiGOwokNJb2np5qe_WMaaWROdT3deBDEiE8-FF17jj4tIp1Ea6MZIvaPr626B620wnYPchWgi3E0XvkNfqJIPyH1tUs9LKoGiBvcbH7TXZg2HNLnye506ZRPUT_MC6sW5tDy0_tTmobL5w4pJTodN_HNFLTQMx63MkhMFMzupNBwM_G0qELoDkqLNz8xtstrlXI4FbOdVEoPIevMtlQKUqf5QogNZ4Do5H3XOic4o_Hfhf7K8MAtTaSxlq7SDCtulE9X9hGbQIP8DC7b1xIPaXKBVG94DNFTieNycCvXmmx_qQ92_A0Wt3Pm1yF7cNM9hE9RHUBSP2Kzl35UpHxQEYaYC8GJV-Dp_fWOkPmNN21NRjRkFze7OIYn2AtJPIks3bSx49Qc_VNesYj0uRxa0XvsuEXP-7qZkNNsQYN9V0uj1MRzCyidloE1ks8tsW1lB97K5Lz-TGC5jsYSmYcmHqawiZCncEadzkzznoxv54ITd-D3pqJ-z8KFSQzHp2YptVqo6coqjJ2IAoBc70A2W-jSMz-n6FzuhMt2wRknGTXQtZRzKpfTgDTwM2h2EIGI4pTtsHrsXvsDB__zbjlEGwwSyPRZhFz9xiU_0_MfW8DDWZzkvTqW5J90N9RB5vBShcFU3nPE3assAUxxn9ms5xYiFLAqyEoKXY1Y6NxIG4KNstIAYp5NWRJ9IpQ-EmWnm47Tt3hrA9OdLyx1IDQut4SeqFJO6c_SIya0mS-gzkoGYDUWn0bwOAhdlHn2EFOpS4VfCQxM7p-85pGc0zb0liqXGnMJdGRkPzK6sB5LM3yYTpBTLePxFOtgh5A3BWAynVto8D_F9ptjTLIZc5VmzFHJWIfzvEdGR7hKaqqtUKyPQOGLUG-x88wBFG1zpV7PvXRq1VNFKvt95hUo7tHhQHF4oS0DpX1fbIijxEAQJSJWPUphajtlmqLFYTjtG8hgI4Ni8xzXxtbs2_RLMvrLoHEkanULuHn2wUW0fyUuy_hI9rQhHruel1glche8l8lovrhFMaEdeNHUHmuje2E9z9Cq0WCauMO5aELmltkcpCe8sqPQop56cBxttg_zNwQPK8AkCST9JAjRhSszbKP0r0dfelHOgJ5kbDUdU_b-QWCdFw02D6U9lP12bQQYwaOK8Ku0iNwSrUNvwyWEHIQLn4ee20rOyuQxdpANQinK0Y95i5fyHdk3a6FlRRj9X6Dw6ZSTJ61ntXGkKOSdxbQkyVhYEqN3MtSGEyjKz2Cm6eQqoAPHLgVnjup1ZV6CUL6PSRTOEQlL-R014vVCi5DKHz3qZDbN502pQuX-RbDE4P_f6Im6MNCjY4hJt4XS8RtDnV3AJqzxgrr6zjcdgoud4rebsNLZRrfh2fqyZJODNQE2CkUBcJ-Fk-DauvHlpLeyY0rxgZz9IBLduWpCetuFLUapm1EKs6g4R9hQ4uTbLMEpiij49G2pesVRJEeYz9KaTaC7oHfu_Cg54-AXRuKQ0XCPo1UMvfviN8LiyJWgrncbNHbcyDbfyMo20XT\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a229834ccb66-67537791','','','2025-02-04 14:52:30','2025-02-04 14:52:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42182',0,'cd-form-entry','',0),(42183,0,'2025-02-04 14:54:13','2025-02-04 14:54:13','{\"firstname\":\"Rosie\",\"lastname\":\"Tredwell\",\"email\":\"rosie.tredwell@gmail.com\",\"contactnumber\":\"07966101901\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA74G9BhAEEiwA8kNfpZs1KG_AX-eTOyLuN5gC4TEpud3FWomKyDfB7KBWTS3ubiRxxOCc8RoCfCcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4y2A4XTXlDInKBMjBT7uQQQWFNHcmW9CgPs0UYVd7zb5tZOY5xLijo-gjk9gr0aYa8TZJoKBp34cTv98tY59yV_ovD--NsC-f2yzYl1EFPfy0yR8kqEA8erBaThB9nYfg2trELtdETZgWSdFMUFwsARR1NKPa0Vri5mR4F_8ylOM_eejv-KX0bNzRHwh4LrScRjSe8-mDgYkDyCWx0PZF6F7DQ7Gy7Aj39XKdffOdEhEDyA7SrWlLttDO9BpbBMqkBXUmtRXcUgEkeA0ICewbhDlcmGuYEmp_K3sk4-HhibLW3rC7QT85-YBTi69dwa_juShQBBrPVDk_lXJkcUgt0Uc_Vt4hZNoWqM7s-Y4vpcziKwdVKw4PkGPF-91IiKpOG3qcH6Zn7NHrC6dxg4BzQeS16yYTTqqJUBfoasMWkipURx3AOBYq81Gb_kn15YnnpzIiaPq0MJV8kEmHBfZJ0TRvc3AAVG8hFVHaih7T-3-p1gG8ABnQwgMWMWtksPh6lhHIGtDuPHLvQwxfo8fLES5rpc0MDXGmg6ahIX8d0n7-ulTQx7M159BuWXhtCApDUJij9xjUtIuVZjY-lIl0MdVrH_LsX7I-RprsM7N8zfV1Zfh6wIaWck2q0zolaereToWlAac1_uXQz3oA8Eyqj2NZMgsIPiH5RVnEL6erRnzz083zW59iQiFWN8Kq7yAfHTIMD_CLwO4hL6-SpLGlQ7CIGOOhnG29Bl1RsN7VYUcuO1ibMZO_ZK7jGL__VMR8eyaq0re3Y3wBixGnmeveCFGrGEXepunykOVJi_77i5s7SXfO-n-ebQ975ABO2-klcUl90OJuqjU8M8Ur0Nf0uvU8eXs-EJ8GytEYACsLIhxiXhBm42cfkiLXIjENz7TyWrfEN14b6pJ689JRjMaBOWvMhOGsaWGwEvoYT7XUNmTArH57mTfgxO5tyjPzzfp-b7gyC2TSdV4f6czUqRVw4G0z4GxMACqKLqK8yI2oCIYFI-T0H9-Rw5BKHTA9OgIZT0i7uF84jTEWpCo5W3HQNGnhsEThejGzkE0yqbIS4YVuifOH95QADmxPv3bcSQBrH4TxkjgLF99xb2KzCSlgBaKdUx0LKzKexQ4nJnh_-yED9y45g7p6aPV5CUxtCLPZHQ0-4awfiROurpxiaG71LQtWElARbQ6B-smJkRlqFk3or1A1HxrXbmC_hltl_nfS8DqrjXnbv-9vGgjgyy8sjlZ6kXFjL7XwicmegQIp4lTbh049H7ZKFhsHNQq-K3L5jKuC2UugudK9s3CnxRFtKFtxvXSu3oJwZ01KuLm3Dl9rY2haMuYBfb80iGN-pzsvdWV6v4rEuZnK6SYbe6dDDDDSFC29StgpWw7MA4vHtk6YHonGAalat-7k-PMTWGoN-_S4EUKgN0yYmSaI5ME__vYvLBiVy_Ra_I66WHYJWJHjtKP9u0JF3w4okuTnDTMc0DiBaWkzdy7JitfTYkAgXvf11PKPZBc4b9eCJYiWRKeuRN0A8odLY-6v6VuGZNaKD3hVEgvF2vNvK68ni7sZ-hrG6gDD3Vk1kB3TVqdq0sxtzgewY9LSyhnqtVTuK0F5VjML9DeNOPuA0iPzQCto5g2uDOSAQ7OqsMR6_fW4VPnWHL47AAoDgflfTjevetuPqu6lI_Bauf-F92T8pk4sHxZrsn1VhmbgXyy3TgFRfPNhBdw7sD1IUFzreOb3kEJCF-NvSE5ZuYFYxdNh9UDrXVf-2SBHqRymGNL8sHVybv4cNZo5HVOo975khOZw1p-vfhbw5rFnXzTMC7mQtucDUcL1KobZpRMbN9FqJSgLlCXm-_SCYrpWIa7tvmcx8u9rFHSHdXliC8M5b3HY_jTaookvvk0tZ4zp6YGXGyXo_YPChqN93M063HUBB7rm_-xEd9ihOqNdAcCC7NFrKTOLdfLa4gpmwD6WvsMjPrOfeHrFT1zcoHeQoQ0G2kaY9jfip-_8S_YJzIWwVOLE0eq9FacqLcmrJPlfrRMo2lyXKMw-YvK5Ypf0DYTgmGekGC3fDGOo8EEPr-0RIp413AVj2I6o0yg_nev-90DPZxhnhvBA2adw1txKXdDCs3mmWGtPc5qKtFUJFsZx8r2wMSmQZXzbt5bRpxzJtPk0ecTcKSQamQ5pRLoUezV0ZOQyWwPcozMxRUgPqmawFjGzas-VVwrFkZByW4GY8jg0SDfYV8vUYBqEvcrjt57cG0_sary9kf6BgMtD7OVGQCksz7EbONHz4d3rzbebvtudqjBeg12qtTJs4a2_4bKwMj0I-sW0P90PJ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a22a0f3109c4-76802382','','','2025-02-04 14:54:13','2025-02-04 14:54:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42183',0,'cd-form-entry','',0),(42184,0,'2025-02-04 16:28:16','2025-02-04 16:28:16','{\"firstname\":\"tanya\",\"lastname\":\"davies\",\"email\":\"tanyamdavies@hotmail.com\",\"contactnumber\":\"07780626319\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA5htZisw_fKkSpQU5xZ6M5jz5a2ZJ-BGIdscIUEaIoIea8eVJmTPMZJfEP28b3lbOAqdLzJHy7TbYKTj6kyHCBSc-ZjnwJP09HvK9FfsRqzNEWYNUtbDhQR13-G8XWhECZvZUQ75wmdKcemkq8lToheFRa2WDhPi6MapDRPR61zPWYngzhO2UAdb1BMdH8UTDJsMtFUzTkhnmYA4lO9AOZop3tWUYKPMIelyeOoGXIot5j3Jg_oBgjUwyCRjhY-dSufku4b-nx_fdF7sx7eMZ0j5_bJrALaGiP81wmDOTPi6H8z64YeDR6o5EgiTmv4iEhOIqJJTSJtOma5rr3rcpXYZKP55esTkS5cojbL50bgRZW7YfSu9Ay7537d_iVBoqj3BVZobeWWSIyl4sC_PAnD9EMBpnDylmj6cXLdTs0PkvEOM9w77Kd9wmWO-Eb-yAoA3Dj8Xb4ivySipi_F2Nbfj2nuvpJtbFHo6cV1HRn2qT57dP-Chb3IJhjOf1dea8-LswKlIB2BzehTCQ2CCkBsr2xfcT5YhjcUhTzVB6u-1Pz3wLB4pqpyvolsrpeI9EwLb1ouIVfFUbDF9VWU-7N583vPgvEDelopyAJBrNp0VRmayxtaZj_vYULiPxkzshwkrjI19uyXCOHdEE2PiHOY5LXVDm2CnUH76fHQhSgB5CW6nSNuB-PjIO5YNf-w7b-5lzWthZa3cj5oY9pHTNNb31plLcmw6eMZve8sIn4vBFLD5llq5ETGaK864BCV8BFRXQ3q_2p9s1I5Vti06v_9mroMhu7zLDnuh2NU_sWh_iEFPDaI3X8UE6NoW3XJJ3FeVNri8JtLS0FCcXoa6wygrKXUo0Gi-xj0yBFOVu05AKnwjGPbDBJS7nOqBeW-kCi3yCnz61Tya5IW8IoqpOuiRnt882Ow-PKyaT3RF3wmMw_EHlzuOURjbKqtlxH5bc7m5K3OX54xx3elwsTTC5ds4NU5HsuwYHILpJO30b02CbzXKe8lTmfsBn2in4Qmiz_b4l_70uLDyYWUGkc6sK5Ls6_Oumy1wdGkCccEedvSxB0oh2DQyw0NeT__PZUBP-0ZOoVHMdStrWVwiFJgSe-BGYs-rz_cDETf4pt--Xn4OSGjt4c4dKMkdm1KP5mlh2Tp3fg2iNIEMpD76k3zTvlZ-M7cMWgLu9nSPHJsiDtee64lwwVQ8F2BQaes72jKQBeupDMyyOUUpx2kvMSrMKPCP8VuDKg5X3JgkG27ByTok46fxa-G_6l0PsmH8qut4aYBM0edrcj4tthcnir2nh87vH0odqk9X9ng0LGhqdteBJo-quY73Hd1RPib3cx2sGxIz6LWPQy-SpFYViXB4bxPgsHrqGbr-z8C4EmmFF3IIUyZSUTyInRG40Kqb9AU3YCFBFyYOZ1hNAICVsJCRhGFDzwU0RScWMlFY-rTr92BhaGZaJdOpKBUBnENQSSa7lJP1jJvbqt6Tr5hra6Jyi0EbM0YCDlVxm0Kqmx15oPc7qYluUSVNng5pold27xDmQQT01fOUsUB1DD1AbEzygqq5cFSqKKu2XtOIju81_BlQzV9jnk8YL6Iia--2i2WniP8s8uFJKrLWTTe1WXyt-EZjrLHc1WwEnHGOBA8No0XVhuQvGVK5Cs9IfyuEXZFa6A3gynRpX8k_uwYQTvuBJ0K6tOglMlgj4O53S5yBDJCT27SuW0DSgML6dUp5RISUvglm1w0j-CgWBNHMKBd4U3qp-iGjRe3zPu_72H5W2QhO9CKC26HGVpNnj9xBfcPH_XUq2R2rq87rc6CVEeZwV-vOw_k8bqkoYCD3fBzc1fuca90bpaB4kyrZY7XLDT2Jfmj5EBve7KVkEBzKOpE2t3Y_PdGCKSvo7Q5KTDUy2WtDSX8_PrKsS_hSvM5LKPYgO3_MYE2E4A9wgU2gSza1aMs3vn3DW_tP_hwFRz-KgpIm-wD9mzyP5QuC049rvVRqITlXT5nvLq0SZc5aNAD1Nnx4FCozi5ZrYJwLvdJxJLwfk60MZ0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a22f27a87c02-25041539','','','2025-02-04 16:28:16','2025-02-04 16:28:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42184',0,'cd-form-entry','',0),(42185,0,'2025-02-04 16:03:16','2025-02-04 16:03:16','{\"firstname\":\"Tanya\",\"lastname\":\"Davies\",\"email\":\"tanyamdavies@hotmail.com\",\"contactnumber\":\"07780626319\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA66ZiJxSdo585rVMJhW8wLc9B_JIV7R_-PZy0fVjbEK2GS2gUkODZXo7GRN8bSD-2E6JHuacDNQ2WN_mZ6CnBjcUxPa9HHqbmOhPj_ip0rsbSiXS8MMcseznU1eVGorUAMrKiCBJir8R9ydBlcZWmy1cq9sd7E2v4MsUxyk1LLvf_uItMwQLiuLDFbAS34IDw2ntSkqTcL71T0bT3m83DO7vchmtymgiKdTTlhs753kGMhX3LzuwCloJXGlje7GEBzudaA544g5yI7uv5SYZ05morfOZiMnqey7yMM3SspnoCPQ5tkVW15VBHfYT_dcPEScXgW3yyLx4EleH0NlB2K1IklZdbFSTg00EYr-DQgkI8tI8yMav-8Yf4GN2W8C4bFF5dv5doiUw3Sp56uegOdVEoFk7feSCRQZaNdPnmRpislBoFvy4I_hRefGgo_PaSRY--aokrBMRlg-4Ies_1YXVE9Lc5P-hDwqKWNawpgVpnWbw2FtyDywygAjh2bSZuA2j46oni2jcgr1Fqq1KN2rTfkRJDNRhJUFLo8OUYG76cNS5SHSblY4JECah7y4R8FdT4z0YW7n28pvedIpILJgfTrsUR5EiWvk5pfaoRw2BR8LuNzWQyO_4rtRNFUugrwzvSgAENzjh2zfmGESjL9VkpmbtaOv10UG_MwJI872quVv0711rF7k5Hmj8JjVrRHDhvhNuDMs47CTRc5Z-J2H8KMDRn9y8jNvrCReS1hAoPT9wFFP2Qam6GCcxpNffm3gAts-pxB58tLDkw6TD4aJQJgEDjWLaZg2_BfJ_YJv_HXGrgCLvKf76QNdmXEsjL5bm3-OGr_VLqg4EnRBLa-NtYD7N7m-lVWYPpyXYxrfij78QNe5jV8_ON8SSZmkxwLXEWm5GC_3J6Lx7y2V_HfhwrRxCfQWWqmOw9XZ8_WB9cPtQRORsKEAHWQ6tuGzxFu-K9cOle0EE-Fvvbatx_k0eIBpErjEgenfrtvTbkUnA91Vz0dzIOXmRWONTjhla8m8ZJNCOFTU_fz_ApCHUx0BYAS2smjv78AD8hOcvmt6qLoBtCMlP_PlhCo9qCD225jqPvY99-mOPF27RIgKFLV66W8YiNEB5LEjVEcfCDZN1QL_XQVshotEf_iYfLALrgfCzBC4ma-_fhvE6jg_EW8jcV6MsfsXhD_M3bV6eTEh_f_3EeLBHqic590CLbHAv7BY44rVE8XfsCCqxp_ri7sAHx90YHNlmLjcUVBMLICE_2lkFWG3QxyRvRbCuDskDa1v9UYhF1ZXrfuZJXLG_tg1nK99eSN4CKouoBGog-VDv4croHwP0rDpdxJei4ZPZi9CfSqsdvXbCHrJszSVXMeJp7XGBVtC3lupnPrqbzK2XtAiWJn58yk3cAJKjTbEPDh_Vr66AzzwkKZbCqjdyNeeXj8ZuxRlFVvIACCJLn7KHeJxhsjRTvBVpccDXvmzx21vffEm9-jpVwPFOJir0PR3wpQotkCJSbS-QxjPJNXD27FlR4UBt8OJpk9VYn-R-O9NknEY9sFD7MoLXmGnYLzbMyEHHZ8uLwnWOa2eskzzoUgPMYK2nnGL_rfz0OQOnkIMTJegECyRqRxXEjHYQem7VO8Lbn83tfmkLEH148P9vTJpKC_5CXZ6-4qa3zN4WFqWLywkM0pknH1S7231kV9b1zKyFQsWmTVu8e8TtZrUt1wEXT3pwJU8QQ4lP8hmaa5v3kHkRMjHYiRojXAdfuf-nVgIYYL376cf7NoOx8zXo_Mzz5T3udcamxNCqL270edRPHvdtSeNFSEGh2DAHUZstEL9UQfGVHAl7aUPK-_598GqJHOaX5MEAwjEX6q1A1TEhgpiaNewjKCTwPQLO3z4d8eGJK2SC7ZrfQM9PtFp69MxpE0s6-hswYxWT5nF-gyJ6keqNS2OwjJuRZRFmdDTBVyG2VV53O23z_cclu0PdX8AA0PBd_e2OLLZF7_ibVWKsQqKYhjtrs7xzlykkYp67ZulVw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a23a2e753305-53734680','','','2025-02-04 16:03:16','2025-02-04 16:03:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42185',0,'cd-form-entry','',0),(42186,0,'2025-02-04 18:34:15','2025-02-04 18:34:15','{\"firstname\":\"Jo\",\"lastname\":\"Perrett\",\"email\":\"perrett.joanna@gmail.com\",\"contactnumber\":\"01159233310\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAkoe9BhDYARIsAH85cDPtrfXoLxKviinxa0DT26ub2cZkuNdoq8tZ6Ns8vjHagnb8WpBGB68aAstjEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4wxKM-zh3hewdU_oQBvxkOcRkCA9v5SJf_30SB8CDJyTiV-e45Dw5Wn1EuO7EHyh8YOdU9Om6f54JbiFxXCSILvPKGAq-FEHbbT_-ElM0d1QbJVtjSzAzj9P7wLNbv7TOye7QyjC-9mmm4neXz6CA9ewQ1UYktq1S7_axNmufcQqZHUSS7o4u5vWzT32EYIX9rdSUqh0tzMEHwM_j_s4oGIh-_rUhyXMzNlKzxzil5uUhK3EUOx5843OjmvXM07qpvoEdQO-rv55FgQbJvSUZDq-8EqRXU_oVtVh4LEFgHUBrL3byawtIPNghSu9eG9xkrpm5AXWfvF4hT2wF6U2ty5mNvq-a0182hIR5nl1096W3t__QgXd4_woH0c9tV1kunMmlpZs3gm2FPACgl_FXMdhEgk5Cd7GD01k0Djtf4wVrfrG5NTEK-hRYcv5zca2PzmwkaGG0ZPmK9KVnlSBy0Yz_sxWQVGRYrYl3Ke-xdx5IuG1tgGpppjQetpoAfaEkJxTGpqbdhvg0rUkUpCEzm3Z2UfBdhS6EjrYQ8ItcmU0pMY2f4EXqQWSN8A0mBiB6uwVIs-FE7_J9byC9Jq0g0hJvIaaKTFKWh3MCZ-UO5wJXwOjdOh8RV_phe9NPrx68cpzsLuK08mKsz5TeWLY7yPOO-mFncVfYeLa8CsfsorhcxwD9WGaMrbEOIuFc_jEKb0gIRMNg9GgwzFBICxu-TKari20TqR5UKzMzNsrIoTB10B1QkReogklQpBYhgHg1djmnXlPwa5am_84fOEcEbwC6H_vugOuIW15Xgq_UPQ4x9KIRTjeyfhDVds6T21PwMqzs6KripW8O3rok4ksGcPDsDNTte8T6SVLfDXv_4LHZC9efb77PPlAXTtqiEt7yYJ67ztWJyFldVYE8XDAnTX5qDsi4Rvfu5AlBppB4DkLjk5t39AFOyBYwdb3f_orW17upyfb6Wo4eTh7Y-1Kl6JlJ4PPey4WxerVH1k6nlL-4DGTbgmv8X0QhtVZ12-PwEXzw7r_qrH-5Q72rqxbz6dwZd7jtuzSI1o3WdaXp2nz771XQjMAm2Xk5Qgn8bvkQro20EVPRc5xNNzaCFJKUefOZhYhuOrI1_KhfcutapeBvyXkEP2nsX2q_anSS0HIIOZNEvIKEGpazKsRgL91hSQ3Tpxidl9a4a7kMf8iuAvwcsE91HJGL2OvLcQsWFFIhci61TTqGsXXp6b1Y1YH1kBWnX5R4Cii3V-X99JJbZ9p5S4Q-ABUnpGDs-sfSE19e_RFMBJ4CeBYkYP2MyKYHJm11NBRovYN85O1Xs0sgs19J0TarzGh7iNZhz677BxmYkO57IDn9JtoTkW6qCXKrLbd7Tqb1oe5lxLdfN640FU59cGlTtwlEPT83M3o1I0Opfi_i1k3FsLwcbKHQS2ymhjJvmmeHuOlKpFGxaLd6c8xDhIPg3-Z_SpdOhkvyl_TYBRXRvEazqTqn7gtIJHHFrv9R-ryWk6W4MqQCokGl_8MwdrnJ_LfPCG4t1sOG7CtjyUTFNfzRuVOS8D1q0M3ng_afo53Jq-o-qYniTy5TZnQytOZ001vNGyVXufdtjCwEkJ1FLa-hzFBmTuuAKib17NH-G26aZ8HZ2QCZnkHQz-zy4IwYMZl0vzBz7ecncuVWBUrQnxxZWdOPRyRaYC2LzPVLteaMVM-F6lRAS_8t3eJRq3py6UuToebrMdQULUdG1yfH42vJNr9G9b02T7vfCx12vRDAZR2kmF-WJSLOccGm0O4BAzSWnQQh3x2UIRlwVVKJiRKAQMcNr9usnZtKSWjMKvdTPtNfzYZraY-jCsZlcC9yOXnBIKhDawQf5r5mX1BNOfliW1fAwt0fDyjZFxGh2mXUVkLtw8RMdz8RAeVwVhdHDQCZ0SWCYU1j21w4I4Oa8oYQhmM9I9ZBT4ktpqycmgaG71ba7aJ7rOuKwVWR2Lgf4gg_ugKXKJwONQGkAK50qG3xqIe-rWdYrgJLSQhr1Uoy2h6uQOhJyj7IH7xyqRfquQ7iGVgBc5U-UxJJF3lytj-fi1kIGUFHsH0d9JJg5_E_qw8Z3zl1KUo5jMVzLFvqyMc5NadV5DYtMC1NON_x2JzcXl11tGpfsquNOoscI7A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a25d93445683-10690881','','','2025-02-04 18:34:15','2025-02-04 18:34:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42186',0,'cd-form-entry','',0),(42187,0,'2025-02-04 18:35:14','2025-02-04 18:35:14','{\"email\":\"perrett.joanna@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"Ng2\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAkoe9BhDYARIsAH85cDPtrfXoLxKviinxa0DT26ub2cZkuNdoq8tZ6Ns8vjHagnb8WpBGB68aAstjEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6asCj6NMBMz_4YebpsIO65wOL4cznkXhOFiEkdwLBbmNsnOEDousyNpukp16rrGAQve41cE5rhGf-nSjbZCs-VJxqQoEiRV-wCKHCFhBKHBYuWtGpjhBkNz4Bvadg7PclSBI9VGrhYduYVjbUlGTqUchOvc-jlgTQENrP7pZ6dmdgZBRf0xFa3Qma2IXg1_ap1KmdvOyuD7pVUdTK0YdvGQGjT8BIlm_7f_IVdTJuBFMDOGVSg5apPz_TqGUqztQYXAN3Ba7TBzW3CFjJ6rwLMx2hbBm71RcRyN9g5rKFqpvFmOF9QEleYjD3Q4WWXKdSixgK5N66CqMHs3oaRq-MdUTWEmB6NEaCRjmoiWUIhZL7tTmuuOtQbmf2dr2rW4BETkHB2rdZeEoWSm-Q05Bwd3XZ5jXD-P9P5tJjvxwQxmUmTuYtZcHamD5J4e59BqjgTQ-qkG6VdhGJkBIdNezNydivu-BMW-vO216sFrT2ZVLdvIIogYvDrlfEPA0VFEAVT5iwd_OVzSn49BDT0-SURj5Tr77he9dBJnBkNTdjeCsHb738Iu0EgSVSdFfVvpPY9AmB-YUQSHsYqab27cWY5aNK4LH388akOOM6XgoQRQXPHDPvhzCbiFwIS2saSdZM2DYCIaebAvv_Uz5CB2pzq4h2YwuqYDOMApF-dV6zJlOMBsFBhLgoKBYtQLpWko_AGa1W9DPorDEAXTgWyeRbWqYoDqr-e2vzB3gxzLcmwsK3zEotYy5Mw8KC8tvDK31OWPMGlZd-uc3d72FpCsXcz9uivK6vhr5qrF5CFL5gLmxlJZPTApW2dqskg2neF1LHaN0kBBS3cHyFNjclgwDz7WUESdMg2cSmIA-wU1jMdKiDywTyNrHI8AQg6cLzGIXRn4tfSmHqOym1N-ejYi4GrlhrLXr6gZ4-sI1NufoPkAqzEU-rBgCOA1gqp8XR-w_U247Cl9WBXyi0tM3y1W8KxF51yPOrmMe36AKYElCJbNvMYUeoPOveXdjdF7PDUYNA4Ul8eKEvDpRQYsDkrcqEgH2ZvyWDNZK7U6JB2IrATkDTWM5gXA1czu6cwRlBQvTWKm175AYiDFYMB70a3VoLmVL7ny2Aj2-T75oxuqvDNE2JQM1qFs4httsq9pRfSXiD8HDXW77VUBi8tsdawrETKcOOUn2JBoxMTvLFXsP8g18izMjnHXkJm90YoQf1pJZSzcUlUHQbNYPAirUOlB1eob2iQsp18dcQKIAZwebE_Vs9nvPo_kHMxyFQ-iyeAYc2LiLBkNLwVF5i2eF4ebiWmhxa6mvBYi8lsqyqk285Y2i1uFjmz0D4VRRdU777lQWoF8FRTm9fJRWKUG_i6_PZX56ylc-cQn4Oot05cX4uqTKMCf1d8i5e3lAZJMYAb2ENsMDFVKmTRvFzl42HMOVd2C5wXsbw1lqYcHspsbwDWajhJtTMKWkO-e7Mlf8amOuU0vXt7YXFROxW3GVlh9GxzGbYbYfWMCTjCOQaCxHBJRKW0HeS7r3BnWJo5cZOBwwhg6SHo6lCxve31sRdTKeSfSJBawpf2OSB2fYLuxBsfFgAsVvpY1JAVrs21JP_lCG-9N0vXEn4l8I0xG_RxjyLuTgqIjm-9yFa2tWVqjOLVm49MfRtCbihJHS0by4_l6c_TNXBKU4gSsMWbBQytEWj5bIn7snsAS4wSjpRmgwyqTFpvH7cFOUhvLYPWQlGSZf8nLf3QgjCJ9FgKdky1CqeKq71PRMiKy2uK3d0jOlG6s2aZ4FEhrQ-gXAPS3JrSpt5JveH0I5mU0JstJu0iyrBCkhUp1bXF4xmTSITkj1foUV9BdRddBvozlCGtP6JgdKRDI8sqOFEP2Ow_77WaV4h645paJekx7rL83izrm_Co8Q-iiClBpDftbYvXRfzhPq9ZL_7bSd0pNcGmfCtiOrfdDt1UlRMnsJbNb9f0AaAsorZK8oKqUiJCxlF21oBIgLVPE3pzcdBpGshbHFBR_DIn26T_sl9D6k_9Us5HnRxjfBs05rpC1f1Sc2boGEPvXcmaB-lBaoj01Fm594uh9qkmvfAhjJAhoNj1sOWKQrfDXEy8TKwrzCWi_uZhIcrZXX23msQZ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a25dc543ec24-38749133','','','2025-02-04 18:35:14','2025-02-04 18:35:14','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42187',0,'cd-form-entry','',0),(42188,0,'2025-02-04 20:21:17','0000-00-00 00:00:00','{\"firstname\":\"Yasin\",\"lastname\":\"Kamankesh\",\"email\":\"yasinkamankesh01@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAkoe9BhDYARIsAH85cDOcZE523IvhEsrw1eUdGeGp9FBUuOlsAg1ck1Qj8gVoeAkYAD2DdQcaAh5lEALw_wcB#row-41115-3\",\"recaptcha_token\":\"03AFcWeA7oI-Pwp4CGPn1SEIaYUyV-h-1GFk5SENY57m2_H5PvS0YB19vp751TqOSKHRK7KbEbyp22waWf9Cc_gf2YYfbfF4nlqu9TBBAPQDsebH8iDecTXSSElp9D_hhi_KygCkUGnMtCeP3kpu9lWVndWH6mX1FJmDYGUvoVooYuIYZW1_GabmXWm4TG0QtGvfZI-IXx0JzXrCNq4jHB7nGSgFJc0ld6tfL6Lp6v8qbZBIXjZNOIcRK07xVy3T6xzZ3PK-r_DMC2GPKf6g52ItiNkX0K3n6v8mfHfMsqYBPrxv4VxlCMBMizqIwille9fEr2hw5aWiepTmqgRLUR28buet26RcO-btgxmpF4HDrjcjMxMZiLLE3qQyB6yhqOXVHb9leuLeuglIqeGq30zgbA1-zK78d5_BnLkzEIxcBtjKN0X2ImOBbbm_Zrg0KFK8MYs1WrNJfx0dxrGNLegq6bjkHUNOddOkxfU1Gf3Hns0BqOOETH-vsC5jgv2dVN0s-lJlGtBqetfO6HISdyC_LKMfwpF972b7Gjz0NHESkGWcFOgwncWetZTRMbjU_545NUZnbnmEveRKnvHpkoGbN0MVgX75kt5_BFnN202OkysaqpRyjXyepdnb9sou-IyxJW2Cs2E1g4zfd8gG5vBG-M14JZoJ03WXRjDSs4qn79dGW0afPUkyaIKD2HIdHPH33__wlrC4FcBWMbVGeZ6_XHp7g4AVqHAofA61QyFXjfG9Mg1ko4veioCC1ajuIRno8d5giTPnqtb1MQ-hDyjfUiG-p6zTAcHsNcELyuqwfpcBzbb2liGXEQgfvLd0A5AWxF_yRYbQpRYiTEz8X9INiVtoXlMgw7Qep_T6ZbUv8GpxPhsrptISJcIGRW4R1cbB0V7A19VSehXPc_ZxTvPeSlHgmIKQdJzaxOuCQqa21RLH_RRlrEHoEeSvMAK8HOTv0jcIPeWDxSjpd9kd0QvF87rVHlaDeniBlJ0QUZlnXyWjvwyjnwYdPyZxLvzc0g1arh1jzs8cFryEzlrqU9PwbW_iWJNbpabOdzlHCsTs-m__Notont7dgsJ-xKLqg3cQ91P-Iq9zLdNedCzhX_lMzOhvFc-jjKtGoH01SAk87AlLYZhSr4qjIGiDuY6YeFeq5G5cCe_xEP2kgmotg37cEwNuKgnM2w-LLvp263Eq-xQe_WnXlfG4sCnQohujBWiiqlsfNCyaDvF-cs2BuWoWI_9oqC2oMvbnv5y8wXkpIOGZ-bv1s1t2xoiswdhEDtvoDVnGoNkIjSQI3eAactr2okSV6fuKFhdftWFNe9-AWlykf4drYBi7-MBbNhctK8iwVgO7SzJHFMdpYHuyocgF2SFtcCr82PWPrcvLbOkk1EnC_ijjCMUsgEtDUtr-n4EsfnZesP9ix5W9Jq39OoJVRJli-RnfhiErxijDXMwJY8KtQuxU3PnbBT8QCizntTqG1vQ5hJjhJrEG62Vo5F1ZOvDEQuwMrn50QXshOo0TD-s5ju8qFZvr521ynTwOQms8tV17g5hfmkR3NHzQ5VWc_q76WlF5KhER3eSfiUwWZb8cSzBnUZVaq1wC8Bi4ubc3tJ0xZTObd8ycl9xUtddzNNe1W2gCVj1DbXsktsLVAV80KYjgydwLeEmmJ0ro2zaNz2UQ6hPBGv9gvVxFfEKyiURBeITtoeaxjbRExBbMAvQbIT08tnmLf6-A4wxFpPrb7Es6HIjDjcSCbQHPB6y6oAuCVgo5mlg3QZE2zoa719z-tuAxSElV-zSgqv7V2ftWAcLdu22kxiyVcjy8LwlNzEqb2F0c_n82HKpt6LaDyi5k7XfYFazWluyatMQjIbCL9stl4viLScGhFhxTGNNlL9SLC2ZachmhynfvZnFTUoRKvQio_iCUGoeIB_ruCgYl_nDwLrSkv-0ACM5uxZ-q-bBINHLEEnyX-69IWevqWI8N2Tz1de7KZfitWDNNJnQuDKkmlxDUinNjFxcOzIh1muTSNvsj_0DbeTUyEi9g6WjFriLEKgMOtltplHco1RWEjj292md6MJASs4x4S4w2AyHeCwK-CRrZgSPSU-1fWpQg1HqYiJTm-S1ixqoXppstwgzaepPsCrRV6BdxrO6ruGx60faAOes4JPZj4pTQ3iXcdThKBMJLlLIViVukQOzq3oPaJL3ZMAfe8d2bsJjObXitnsXKKvNsVEyHc_nndtJ5OM-kRm27E\",\"recaptcha_score\":0.1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67a276bd50c372-25069247','','','2025-02-04 20:21:17','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42188',0,'cd-form-entry','',0),(42189,0,'2025-02-04 20:22:16','0000-00-00 00:00:00','{\"firstname\":\"Yasin\",\"lastname\":\"Kamankesh\",\"email\":\"yasinkamankesh01@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAkoe9BhDYARIsAH85cDOcZE523IvhEsrw1eUdGeGp9FBUuOlsAg1ck1Qj8gVoeAkYAD2DdQcaAh5lEALw_wcB#row-41115-3\",\"recaptcha_token\":\"03AFcWeA53oB6sQLHvLH-vz-4zyLPGvg_tPFbUgasx6Vl6Bw_1TEkkj3uy5qlBzkBK49DTB4_r9a34syLrkRoChgLF2jX2ILNVEz1b9T17b6wY8q-tzBXNWH5HuzoVooENFO4AlYjcxQyE-YEfYK2D3XwooIvyVPzb3DZiCkebPevy0gxNd-u3vzIb8vYGAAYq1ncs-tGkJ6DlwDMZ1MZlW58IYaX_KQr0L0gp1iLROOoEUlt4u6ee92EEW3LgWBU4y_3gBtWPqXCAGUAh_uqMM8HvChcc2I0FNIRNMxXlpmS-C91ceg2BmWD69DUtkGKnmKN3hytVbqR-Oj6FlKkw0LDuG0xTfyw8mQzrzaCT0pIQ6Vq8p-HvmkNFDD7OVoEoqmH7pHPCZfAkHJUbA_P7_ny10zgap-6hT8U_TVmwVqJp8SV0OAiFl6IkyWFja5nHLkfkTBC2_8VA5hvxA6UXH_iZ-s6hevEVqEf_jUI-Fh2Uy_nFGFovsFQBTrEXoF5IiEpvAOxUivYWp8X3RuK91n_sRk5rrnWNm_tAz2zhm2MXINcyf5KgXBUMFZcJtGLHwDmRCQF3mutL1aPA7LaiTrxzq-Ycitime2BlPdTdufjs51O5nMfcCEXPZ-B8S6MVuG2X-ciqFJeJzTIlxfpxtK0y96i7pBj4nAK6TaYoLHXB8o7l5mOa44d9Hgx9sxVNVFn8Am-YOdhZl0nFbxlTYFwUnf36OM4Ik8NP08y_GjSc6vRLfTRLH4KV75rQt_8hM7ZOAW0x7DgQ9Jtk4Loff9KjU3W8Y5A_GzAgFmO9CiT3QFn9YGcHEMVtKywdy9pw7zvp1Hy4LpUYu2fcDqBeRzcry527bZvvAwBHDjinXMYu4q8nELLMugBoZv2zsMg_EdNCqnsBDIIx0zIk4GBKyn3Jfi7bu-EmSRExVBnyMd_6aWXdPxgjFsSS5wGGlpm8ZZaEKjm-GCvvYa8zsfCV7_t6D7rQplIMMZoX_lUD3RMI_9JvyaR16xHz2vJrSvFqjk6ItLn_WHEXLC5kFPLadFsP6OkqwnnB9iuCdCibG8dOz49NyjO_YfYF1AcWA70F1SoYZ0cQtG5UnxcWJklRwpZ7SobE9i6HdbrhIhEhhnZeiMj5SEbNmUHDyiLe2e1jIWioVko9zEvROjdpD_PS5znudEa7B3_WT9RsDOpldx2NeqIAfK3SJUii4RTwpJmxFNQSP0Jra2vxcW39lsASUGwvaa5LV3RWSANWkP90Iu_L8wFpuCrJf4hGUM9bvmqTZ8zm__dYlaTrhYdHENyzXO828yalRCCgG7_xE4NAX0eIIRxfs3aZNsWpsFZvtutu_W9jvgmm_6ldURgxjjCzSJQpiLQnOyOaTenWBrInD-Sdc5yjXYm4cc5IqqZhxCi1NfTDU_9vPWuuJe4eamvmgvgaxGD4frW9b_CORWAXnjZjN1-d9JlnuVf_4FRr5Good_D8ES6z2nqpZoSBiID2JZi69Akd4WzvQGAuqTJACHdZNcLTlF3HtWCfbFoyPF-skzL9INAq_3j9JYipmPs5tfKkJUYH60bQvEWxqpA15f6xmo0oF2U6wtCdO9xW3vGrkAFcHxg9GxAE9zgU_ZcmtyI5g-1q2pRmQE5Zu0WGN4-kMBXyJFYh5DGQz5AsUoVqxTFMSVqd8Ro1X2mWkbbnd6e7G8BR3uZWgw6QeXbWwXOIA_PFjPJjb_jPOvudjhSKA59lypFJLAntLYE5H5I-e-vgIsOcWrrBEgu2PMbN00q5QQHJAKQEGEQxc3Dyx1LcGrrRKyJCvdrmugiwoyee7NuoVYzPb5JFGCGTju1Gby328MP9TKhPEQKSZK3YUeWxRpUGVNiht9w_VDCFzuSvUebJ-7TmxC211DUdEydNbBik0X6NvsVitNXMcxIdR36oBorV7giKCge_kd-UF6nk2QEbxTxLSnTnsMhCtf2ZIscNOubnHTpTRnFlAZDa5-_QoW64LjVBbXnD1k6cjp7FTkx49M6eDbBvyanrw_exAEZfrUyrIc24JvAgmYutxHTnvc2GVOdKqX1w-3NB1XBRi128xfWIPzr2RRdvmMAVaACczxNQoH3e7JITFLqr2VxYZSG6nE-NYGwF5pMe_i1pEH8JAhFQwKdBORVcGyMJScf-ZRpb9JeB8YXXomCm10222QB6VcEVv3L-Vic2duZnEwZReaEwZk3yZsZ8pJU0FAfZhNVgwoXtjDyA_J_ttBI1x8ticXSEsfNh\",\"recaptcha_score\":0.4,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67a276eb5594a1-37496477','','','2025-02-04 20:22:16','2025-02-04 20:22:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42189',0,'cd-form-entry','',0),(42190,0,'2025-02-04 20:23:30','2025-02-04 20:23:30','{\"firstname\":\"Natalie\",\"lastname\":\"France\",\"email\":\"natalie.c.france@gmail.com\",\"contactnumber\":\"07985 243 465\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIsIz79euqiwMVqqNQBh15YwQ0EAAYAyAAEgIw7vD_BwE\",\"recaptcha_token\":\"03AFcWeA5PSS7s8sLNcv36yo29CKZjcaoZSWxvmpwFeLFEGFKaDtw-71cmDLVFthwRiAyw5ZWTay0RG4qUoFTu_SqI9CQEK61uRwSgm2b8D0YqndOVvxHGTc7Dk6dY7QZGoaZpMJHoeRP2sCJKWKTSUB1TI0GX7un_VHP7iMw_2zIISLEV_H2hKdfu0EBogrv83sCK923WYgHFy_hRkm2nf1snuKRH1yNH66knvbuETwGcNbWikpcRMjyBpbLFKB_TwAVGy8imOSoxg5tCAcsf9SdbLDBInzdOrnd5P_g4mGt-ivYA0AN5XEeF7HDhNAn-3NYMnvQj6vJw98xBfImMNlIrANe0HRd5APb8sUUn91q0yfpC1_sejO9YiWrSXXVDmxOoGS1Ln-V2PDXZm2dXI_9vXIrcpp5LW08eaNLjTCiVIiYHpqFe4CQRxWlfYRhRJ70pbqtnBWNDo2fQA1NWl34uTb-YcHyC0xgItdK-EXwO5N2pcecBfCtCdt2CGVsRvgDR7i-yWhhhFsVFGqIUF7L6JmyyPEttVmSdmrrehqVYp70GBf1cHK1oftk22g9CSUbpkvdRm_s5GPcV9Ax27FxtabFnLWkS-l9DQ4oGbRESe7zl0KipyUA-0GvtrAXKT4WpU3oEiHRh2y9ZGGcJmxBE6E3Zw7CKvf3tzOKoRqGvVsj4i3GskhmTwFG_CGVgroJm0AVrQx0PIMve_ZjM0gaNJsbCBew3guUx1G5r68wfCXk0w3a2IwQMUXceM87MWckmR_O-i8fMqVUOgNw_iXMghxyiFDAceB-FW4S7Bd8-BE0MWCWpIR9kbkpdBNoH4SVcVUFNaX6cNGebe-GMRHShUmZxoKVnMYGHv_JgxKfYEVR6Bk6qS_YWwBGU3h6NRtv1Uziig8QwR7Z1bidGinXxc0dyDybfvEGDyRgqI42UABFtlwx7z18a_A_aqMt664eheqkZ9LH7BLjfSTX7dqpX23AyAtPm3ZnSlZVKwRSDHxtFBSfVhrvdnbCfgZVA8TA-EnrWzIVccZR42zHeQafHNlIHwa5w7oeHrzxV6wdKwnnm0uhxoKfUDI1274FNbQ2KRzauMN2NR9bZWh0LzXPTJSavOHNxYKvC3cArSHLr_5t1yH-1elJCjJ4O7DmX4e-g1HIsHNlVobqJxZhHWnr72WjOqbzQ9HEknCgmFMwW3nYH1pGnKJDu3HCxmcjYkEWrlPxwv8AGmsrLURcLnxGcjMJsdghEsYaM0BWCKdGgrbaXdTI95ZL3D3iDIfF7xEtmW_v-IvkTX1V6Xar_46qgQhbzmNBdDfKn225WwLJuAh6dVzjannh5f04XiCAIefLVXeJlQ5dZDWIbhClG1S1jKmMpFlHzkszKLtuhRoFgB6BqAXRzGkhAULiRgz3_zq6OJaii5ZYeNxn9KGfR3XS9qNVQWe1nSNSf5VVoAJa-Lp6dgIQ-nLj5RYcpehoCvro4btaVTONcFPeV0qF41EFNBoysZc3qvk48WnUIswfTUuwX1qFvvW5dt4rExclw_ry_6ZDGPBI3Px6XZtfAvTTOC_yVi8Mu3pt3OStpXUc8Tj59IpUqUaiAR6PeoxSTv5Gn1Jfn5Rc-V0JxwqCEnGGS-rZVJG3DyHFJX7Y6-TKoZWRxukcIRSJanYBUQfWZRCc8HpERIwKrH5fXZSvEs1aeSWGCwxyWo3AX5oXWcCx0nLBRAdyXdSmnfzSShzL4jyJXzwW3o062eb5TuihmJiegPO_ZUIQQIbDs2pagfDY5QcBrqsuQCd-7-uGlnaXCY6Dhe7GlaIZYSCLuEfAK9nub3XcwZJw5U1RlffwNNEqiHfNnBBpLIOVpdPU-k6sJ3zWECulf0_826Thwa8s8T76o9liTJvjH3cF-q21tG9CncoWuiHMjZU-9wuJk0AYsvjDPqyTNA1o0HCD26o2Q5LJHyJwX3d2_llwrTwom9wWstCTtMVcSvhvNGZtR2mWhnqmkccbtYgOOPSQNPqFEkuoluO9z07Pi6m6YuTq6K5iJ9vWMWZ2IBvd28soMeq1Mfqp0LMcYrN2AN53PgV8QBpdlQPwqU66Vf9j1y-mmpGTPt27ZyoNXu7ncGIzh7kYQ6BsYpl_5PzYI3djnqnbVaYukjMGjwBzWq8wUiabWzsNAcre298j0lAmdyldQv0_fRRh-5g83sA2DZTxxilloDZauJqkuGhoqbtjK1pxxg4abDUU9HfEz3QzHuo67PC901SnsSNiGChPod-bmW9LRvRRNMRl2p3hsZw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a2770c8f6e77-57350374','','','2025-02-04 20:23:30','2025-02-04 20:23:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42190',0,'cd-form-entry','',0),(42191,0,'2025-02-04 20:25:13','2025-02-04 20:25:13','{\"email\":\"natalie.c.france@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"E17 6AF\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIsIz79euqiwMVqqNQBh15YwQ0EAAYAyAAEgIw7vD_BwE\",\"recaptcha_token\":\"03AFcWeA5qCALBQXke1srwzsGqf6HA-6aAcWgdS5qKgZuxzA4lBrAc5_-IXPrvBm7DirtWLOLvP4e-WyoTJSntdLlh9zcPmFTfr21p4I_k_fJAspPpuqUg_ta7-GsFqT8o03AN4KniPOtum0uA09SnqYCF7dcaFk2rKtnfMWUP0VtK0qBXaruusWWcIg5GPV9n7I8IHpfQv8T_ng1rrqPhRECiXoek2vexdWNg4zmhwWLbu0xlfky7XNdCkOev02veaW-3hHEOtSpOwMIS37jtEfFrZottJNrSQAXc2Ny4JEamWlNUuaQZbyGZL9XhhC-K5kWhabTfMAp2GWux1E0rvgiKH4FSTQIlk8sePWwGPjUvSSXI08VgXsWTmx4XAF0Bk-pkCRk-b50CI8hJpO87sqSzmYvNPlnp3HLIVj2sdLRKoEqDs0jldxvLALEtGWMmezScYXpfxo1xKOAWWzzCUbp1rc6AtfRIxDZ7EgC1-0pq9VVNHB3VXoB6cr1t0YQ3cxNGN_WXM2crDbz2hyo9sIyJeMwAOUK1TRU2Xd8YQlTCOFrd6Zx3BJYjEOQmpirmoHyuXUO5KViy1Fv3irJrXlqMH0MCGd-94EcWgLsfraXOFv6CEInxKOz_7hx5c481WV_6Xqs3NYbiWiXbw50zUDpCUwq7hX_hYWqJpOU-bgJes2gdHgNVNrJkxSrNhBCHIGho8RyQI1qZ54pgYJ2tgzQcv2JA1CCHcxLYTUFSJDUvGcZeFquT7cJC6y6-SLKElIC32gj6vuGDXx12dGKdfpzhGItprgXOEpp5DsA0OrKygONq8J_7Ud8aoBednBDKS3QI7KdjipMJxiqbgRVEx2KQG7lKlKceow__nEd6frbGlzBsUuhbYdtztqRwO94VH0DpSctLHnDVExpjb3X5FQJZaCdA8z_mOTaxHWZz2odB_5WGRyI6N41RTqfuOnZdkr6h335kvwwEExvBGWMK6GBeofw2DhqeohwmPbE5WTzS13m_Fq66GnJI-FEwXk6c1YDzk_5ptyuPZEvthg4c0a91KUd0aDYJ0pL8d7Pfg9IMBtNHQ3a8lwML19qC8qdQ7UEaTWL6zDDhXLIlswADNXle0MsOPKoqwMkDyCOzUhGqVzAe8qwWqZrwinF0MiMZvBySy8hhy2Bko5yKZ3m83YWZ3psJ3sQgM3H3uDM-RP8U0aiH1FpjMXjXhlguabagovR14dPb-OoPuAcx2fgAzdeY7RvkrsXT1yhVNem1RRw1ckVigz7UxbUULVeUW8dwX47PErJjY5M7iz_icKzkZ7MmSJcQqK-V7IXVfND_dob2vp3sGdEdOM0tTnINat8SFnyGIziNMQQG_CkI0VP-OdQ7BWEEz4ZRbAQ8b44ULca72WkyqN4qwThP1TKHGBMHyzS2u02ANHrHR0t0HhZneLP8M6qeryQ8P_o-MYBI3fId9rOD3VIB1WJcuFAgoilyRGs94qrMJvVQptYGoV9UwCTpoAsbWZY4bNzYJoKAvtkx-JqFNDNLJC9uxS7CPynmlD5JcvyPggU475PAw5DiCdV1voStbRbKGNWsW3ePy-Ro7rJvO7Ms8p_LMpxN-9E8ZfjW1Lt5ioXQc91Af8lJnixg9RFMMzNaSHyexRtyBLqtZrnUGshQAHvthOGLZp_5lcojdMQ6cwBaMGHKJUg40_Tmq7eds-FzoNK-LoSKdsZO3UDKyzS_8IF9ZUgUQ-bHSfr2gHlx922MI2EA9e8Rs6CTQ8UlwfB8AdIv6_J8AeXxmXsjBy6678imEvj_W8nz7X39bqSL0NFYZn9IXk8_4lUHGbaem2DjteBxUleCWDw9lVU-K373d-RLdreLk278Fl131J1r8Dw8_SK4N2N0MhSnudA46aSDrejwT6mfxDHBM4sAFESDpK6WWMeSUCLQdJj7_wiJAPMVhBnNLiYR1VC5kW4ema5BdOpiwVcKjE3ZM_LCJDeVE5EivlOU8fkJdKR4F_s_AgSfwdaxV7rBDcpIDZJhdmUUCXZjvpADsVZJHfRpoM4d74E54XmA8lid15snSQ7re99_1gw0OKU1x4oiJ1G7zQAco0wM1TlhWERK3E70tpJcMHtY6G1LKdrcHr7_po3V7STozuh3PG7K528_wG_Jr_XpEtVki4oDOMd_8Sf1ZkggyCIFuVzUS6QuH3SdTcEa2VCChcarnlTTI2xIndqNHk7Am8apMkVs8aCPa4RXBjpZOVJkp_dmZ23Lf5_6-pIiV2FZpqJFmOxYEJ3mHt-2PGz5TA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a2776a801161-70840827','','','2025-02-04 20:25:13','2025-02-04 20:25:13','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42191',0,'cd-form-entry','',0),(42192,0,'2025-02-04 20:30:23','0000-00-00 00:00:00','{\"firstname\":\"Natalie\",\"lastname\":\"France\",\"email\":\"natalie.c.france@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIyO607-2qiwMV7JNQBh08jQgwEAAYASAAEgISW_D_BwE\",\"recaptcha_token\":\"03AFcWeA4RvuZNLuiPTVQ_3xpOXzVoZOKWwOj8kq09Q5zlVwqZIr6dHBhESndOwvXq5JhG2uJUdZuNeWmHrw2sgTq40W8s6WjyvWIodEwet2yB4jKQ6Bipu4f_I2dNtBxMAEU2PeieqdS8KlcFUehqZ0mTjWFUuRKNYqAMopk9yweQ8qoqE9hn7kxVDQKZerYDEuTcAS9J3NbQku5GWh8zWJChuVRXFJS_9scBzY_12XoewRm38fiKEnNCjmvxOjyujjJfeoTzEFkoZBd3PXfGo7mp0u0st194d9_Wj5wuDUQEhxlJz_J0pd2E1nXJ1h1g9VRuEL8Jd_lc7Rhh2mO6dXPoYFDgSHaOabqHBBwFSf3AsnYfL_r0cjwKdTkfgiO3WjPBlkHsFHRNLTphvRGxWpBxKU5uIOi3CUcUxOB39TWivHhctDvU5tKvahmrkwya325h8AN-rOX6a0LJkKra8GygGMdNezo2Tu-a8JIIr23_U1mE8i-DjFvirdOO0MkruYFd-l1jE1stMjD-mmtI1hdG2kXc_PoIscE-CoHo_gj5roZ0pIp2t6oMzkP2Fdoz1kWf82lW4GFT5IdNBxieYOkh4Y-HO8tGY43phx_avgTh8o106M4VPQ7hlCHQqi5WmyZXR1R5eKVVL97yApB4yDgvJhuPR5wCzG_gTdA4TzlxJhK3Z-rnU6Zu3z8jW3-Egq_KN7HRRLmCJ0db0rOkEI5nIvyzajmvmIerQ4kTw1Gn58S0txkP_tNw9upNNU7w8e621p32s56EA6P9Y7ImWVFJ7MaSv2K1R_8vxrRU9jjM1LdJhc4Luy98zGnVTuoiPSWR4vqmBk19b2RrNPX0rJiR1BaeegR3vIs4Q9kgHr4w3fWTIuaEcbFbvm_M2uo1oNMKCIxtOZh44tJs2Ib40NijlkJZp9naG_MBZLZrs2mABjabrVrTz5w9K1r4nnn8dHwaAYQA3Mb9hfVhqJ6GDdssdOR4QdkLgT5Ht0MxSyLLCbmQnqn-v-k--Nz9NEhIBCHpO8qt_kEZrIo6lKvy7fLYA46W0pWpZsCd51Hm_MdHN8nen_TWXt6JfAYic74xDQNtVYDa8m4bOxTQMeYNb0GeBPFOIwaVtCc3VOTcZyTmyRdOaF-OTZX3Svqt8isOc8yuD_idQsnnEYDAkTeQ6x3dChSqLKdIBjH4I2glFWtPTcsi-c0PJQYPJN9TfqvDrZ8qPHN8fi-62OLlD8zFJclVff8s9hG_0Wshldx7RwHGXsHl4I1q92rgn7m4B73wdIl84BM_lX0XE-c3sWhK9H8eK70Pk-jUSYS5Iw9ZwFbesmu2Qk6tsUbspfHVavSzME7uhuKXnMn3q5mYPI8jWOzDsmoVDVjvVE4icAX6m6Bug0a6V8CzgD7Frl0y9vdhQQMck-mgkyeY2ZocvbmRlLNaO4RX-JMZPUlnivD_m2lcfiLdVBZh0qCcGbVzFMsVb0XSCSm23L8vZMphJdeXFSJBMkOe6y1F73UOOOXL06TMv2tnx37APPryGgXtatrZ_wh89KU71PhyK3T53Bv7ZBv4LAXhT3D7UuvRhBOl8chfZuW6HOyBzJZW7FJS8W7vvOXyJLH8lLQFuxnjb_p5dWC6lJPG3bx-HYaDSbN5E6WM_wqnVUshgVsmZUTAQihFj2Va4ylh7btKMudKMlSMpc4Dv-BF8Em3qnAEQU9MSxFlvapaXwOiUaBCak6UYULv8au5X5vkAy65WLtDs8nwFyDtKkMAr9AJtN8wt-H_A_b2LvfF8JdVzhjM1fItyEnpHXCfcHd-IcBeYAFXRb4ao46VkSIN5DiZJThoJOuPiiO0S16_K25L323UE1pUs3DTzrfyz1GeoUdEbLoLxniv_SUG-hAFkjmN6h-8V8YosKz-mZhMKY_LMNL3lKiF3JNtpfACZpeF04RWcaHGHpMBYAaj21sgkuQHTPe-gv74Yj2UR_MfzJPUkccCwL34XDhUMvJEd-TvfxzxzPl8utwM-Uu8IL6P1Z0kpA7DOlzVpTshKb1ArhuzQ_ahV3FIHvRPLuFRFkyDujQx31Ik6vVuslvNMUB3a8vkqQU0cR9y7QZ7c1lwce-gRKp7KddrneP-gnTyp48bAWVykteMNJYcJYApC_56Qkv4_ySbI2XZXyFLhFwj60bz-AaCcWMiDiyPFyvROVu7-LcdEZy4L6WooZ740V1mRwpJMBxQV1XZVkLMtsQ-BQ-OYNv4zNuKUrAAuQapKA4NAAJmeAPV2BIj9kZCqzxvJoWODg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67a278df3e98e6-26251623','','','2025-02-04 20:30:23','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42192',0,'cd-form-entry','',0),(42193,0,'2025-02-04 22:36:28','2025-02-04 22:36:28','{\"firstname\":\"Tom\",\"lastname\":\"Watson\",\"email\":\"happyfeetuk@outlook.com\",\"contactnumber\":\"07703321653\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vyOiNHD3qU_Jc_FS7Km4gCu&amp;gclid=Cj0KCQiAkoe9BhDYARIsAH85cDNP-TSQvLrKexZfhUWJy4hXPbbwy5wVQQGhQ4ZUGNRr1R2k4GjfPEIaAukKEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6PgdZICO_KdbThOddXAcLSAy5HY7WYdyg5OOYFY3-IJHHcwq_f3erjJWoxF2FLOHCzlhNZnfQNl9FmrhSbJKO4BwZypLrHdvVszJ6OsOgY3dCRW88AIVRwrPqkdL7j5Rp41rKImix24TEDExM_x7GFrpTSHbBc0bMY8m9E_FPkfuRuZBaK0yO7wCiAcRvJPbZ88i2SsxOeNaLC-_E_DOELgxcllyh1_XjI9edVVYWnoI_xilgR5q2c2zGEQoniObPgwRwtdND6Gn1eSZqK5r_FcD92wqNIDYo-CnyzxPTTjiV5Bcy9ho3JLX95vf1k4Wz5X18Ju9qfdqRTnnI-Iu-fqn3kdVPax9fzSdjrPq6lSDPgreiF3Xriis6kR3XvGTRfTDflzHjitxKiUFOA9r65AWWeYYc9fW0j31_LjsioQcDJvG4d_b9I5ikgFkfGP8sVnfwrJckbZdiI2cEwHrjBU6LcS01B0KDF_5rOrLzUb9i2EuaNiH8rOyRrgsHjGinwuEt0sj-HNUxDXkU4KKnjAAHTj5PHWdH2pH54nWZ9nJ0x8ERNw6C6vVMibA3u3hFYmxtJ5e5NYYZ8yOpJqfri5sarBR4o-CtUlY4KsBu4l0CWYiFyACL81l_aZQuWJnBmLB6i2ER2eEk1A2Ou8uDEcl40fIIFV4QO8XzsRSp5pinF724upKiaWRbR0inmiEsZ-OZdzrmGRDC9DQe-BpH6ZJOilJGcinLot6r8lNSbXghOsAk7NAkmNgKF4mb7pyC2TfhNo5iwJK618CUSZgtCPafOEe8ki-jias3m_Z0DfccGqOTvXylbj5kn2b7FddZcghWkvNj7WaNyfLORdRkHStT8CU3hBM6f83il_eQxl91KfsHQPqrkBL1ac26L3ie4p0n4WbIlc_tlMtaI14V_sReSh0t-gQq1liZSaiZHgNtL7kf_COqUWncp164d1106EpBYCBETOXowd_p6jQo1w75AVAp_Cwf9fSv539lSojzuXoMPAqvlWgP2DQLUgIb0HCR5kHvpJcxrkxd-TqNl-7rqY7LWtuAgv9cvtf5JXUkO_88BztdVaxUthn8B1MDDFrgnKn6_YXLyeJbSGCgZZOGxIlErJ9MesKQ-ti0qILOLgSjMy1xUCIuWCtYH9g6aKovn0NgMnOcxUMS4Uw20zid4RiLfWDWaAuOYhpafKokTILAyPjNFSXl49pHAc0EFoJcUXgS3Uzy4JDbCovcv2B8Ek4gEiAikMZz8tWBzQdZJut3oiZHbyVYL_hlBaZFESGkspnGsqbn5bDAN70k07rxU-tDJAap6sb7Q_0rnwdO8v-qAJqVKQ67gQI5-CsqeB0T4jJyK-ENBc0rjD0erFAjqRuGPvuPtAvD_nIm15uafCwCVch0AZ3o_FCB-IPS-isyCgV1_1meet0t__T3apzbny9ApZwYiIUt8FocTTsmCAPKHmGrAmNG-oVJhYVcq26V59ilpcPl9sVGy63kM6qID0oo45BjBUo9WjaZl455K2WilvOu1hkFSVIp-DvOIQaUbKR-2afKpYI5X8zQt8nlLDuFHTuZS01eMlQZFIX52RG-xwG5_OboCL5jwgUBRY5fl-necfV_j3-o7QvtgSme6p1uB0nMcLKD7bzVaJSpWTTMcGox-iyM2IgUGZ6_SsUmQ4NFwK6P92UUdOGxGdI53AHzgnbttE6ip3pPUFUjkGa4fM3Fe3QsJFo3N_xWRHwtgHblZi0L9t-_LYKIDoIJ4ncMe7ooo9Znydd7wzattX-V4ZB3uHnjfz75mKXM10RiClFoH2KnqN9NXJSu9cnX6iWoet_OBZ4fS25BWRx32ic4LmLKBsPvcGHRZkZl7biWEE8PQvHVgVGFCcMhS7hvs96ZxyE7Fyq_TLL08PMxYPE1YUyLrhyMw3hrDmKlck2WGCBDA6lFu-2zsZEyEFZ4tdROdnW09Zcc7XyUC-yZtnAf_oiszyeC5eBGohixbV3_ELX-hMjzdgKtOPh8rp6YsEljLea7VHVo9pWojv1_c_vC_JiXf-WW7Box4IyBkAQd5R4cuLYcl1PcSEAov0vqwIQJitF1dB0iIXESoPX6ko8M\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a29653da53f2-19553718','','','2025-02-04 22:36:28','2025-02-04 22:36:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42193',0,'cd-form-entry','',0),(42194,0,'2025-02-04 23:43:10','2025-02-04 23:43:10','{\"firstname\":\"Aline\",\"lastname\":\"Duriaud\",\"email\":\"alineduriaud3@gmail.com\",\"contactnumber\":\"07740065288\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vyOiNHD3qU_Jc_FS7Km4gCu&amp;gclid=Cj0KCQiAkoe9BhDYARIsAH85cDP81cdfGKCnd76KfWbxHQnhrq6nPiaaJALJe1Vy-a1wtQGdKBymcT4aApSbEALw_wcB\",\"recaptcha_token\":\"HFN3oyJAMWeQ9XFG4HGVAWGBtaQhZaAClUYXRtajBOPWVAXSd6dApPKHpTLT47I2MaEhpxRB5BNR5EX1UPGX4jQyxFeiQMW3FZH0s3N25iBzZuZ2t3HngsE0wDL1QdWFgcHgVHOFA2NgYnYHU7YlFidV0PPn8iakt8dm4jblc3NFQLFSYXH0sfGVMJXVUHMTUTNz4pNGwaYnoMHXE2KCwYaW05A2lNF2QBDWAwGU4BFV5TXnkcAmE3CnohbSA_Ci5AEEc8M35sSmREfnhnXi5vBVkaGVgSG0sSGkcbWxMCF24HVTdseUZ_d28LOXAxa1dvIHAEM2YAE0gREWQeE0gxE1ANFlocMD1RZDkuNl0aanJLKyJ6dH8fbiVUMSkMPDRGJEwmF0kQHh5EW1oaCVEjCWp2PHNvTQcuWBBuPWlzDj5kKztAS10YMWw2f2QXOg0FCm8cMGgCZloCXlg9EHVYLXsHaXAAcQctMyQjbV8weQ4hMWFDPXgiH38DH1ZRAXAnCw0IEnE6Rm9NDFQPfngJfi5MDg8QNSZDK1kUFEM7J1UeH0xNA145B35OHloAG3JJBA85a3x1PhBkRUp9Fn8NREw2NmgRM3o_BH8CHWJjZxglbmVzewI6KwVHbjJxNgctRmZyM39kPnpSRm0kN14dOFhbKgYGIFAwKGE4PydJPHJKLCB6cw0\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a2a5f0561f93-86963086','','','2025-02-04 23:43:10','2025-02-04 23:43:10','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42194',0,'cd-form-entry','',0),(42195,0,'2025-02-05 01:12:01','2025-02-05 01:12:01','{\"firstname\":\"Navjot\",\"lastname\":\"Kaur\",\"email\":\"knavjot236@yahoo.com\",\"contactnumber\":\"2366324755\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA799jG_VcetDy5vAnQhchccbc3nNpL1MaJ-7wXxkQst3NOvAXop4xjM8_UfIX7Ehlh6CLbk0KRVexP0wjZTr-ExCD8xmdO56gvrEp2nP8H6rNGDCjZk1Bg1ag5r1vHt1UaAdWK02Gw76AZPNIumwOAtGnK_eLlqMsyjSmiGGSjDcFDUB5E9fiFsB44VamznZy48Vc_9WBtnUAawMOTU51Uj2YGjWt2TurSh_H4oR59GYRHtfo2mtMj1ulTZOUhwt3nEL-5ne6kg0Vs7SjWPhogatCtNIKZ_Oy8g8ooIWr8W-yGEOR8XcN3JVHDY6Kz68pw0HqO4PzjsGDDw4yqjUftGJ5fEGJC3GscUXSAJm_XhmOm2KsZ2t2ydiG-OxXFDjmUln6ng5FpuhdbGUChXh2l-InLjAcWfvGhXNuHHENJtBVKw3IwTmobGt-ccoOIqwOnB3gXisjQs6RGu5T6gDXtcAkQD-W7Aq9pPqCqZigx0WWotzF_pHzUoWqKA5WHsyO7S65dskpokid3g3TvN8hOoaJ1Cinl0ptebvaOFx4I5tqboyN8tcdPXCwLl3UWe731lHvtU0FOo2BsAkxsKaqOtf_UfBzPxsOF8Bf4SyrepZIE3ieQUY7amtjwrQFE7Mvq_HryACYzKjRlwt-l9LxiAH5fBsX0Bas4N4keLHX1Tevd67TRZTOfOcLxUpwKmeiizsmd60zYmJ6WY9HU-PloluVnDZuOteEX5nLbWKbE3_PJlaVr5wiHgUsjrAjGQXfmoeu6Wcgnen7m99PY2J5SALsSAUGRWxyhDPM89xEB9yyE_CipDzeb3eEyYiAcfY0WF3oCRur3ificYwXzQ8-eVT_S74a38Ygv2lm1qynY4Lj2PtY53_KAwpqZRT3NiE_E61ZK5qZXE0Fmp3DBTwXOq-ZMoUuPWQgeDDlGmSHLXwaBZqgZXsfL-ZW0-9y8KN-zYoy3Iqvypb1_yqiOeiRLVm5ob02ChozRPfhNQD2-EKiEGFMmpJ1MxWnj010X4HTfXuG1Ci-pRUJCDECPWUY5P3PLM9--riu8XOT1ABruV2fduSzQ7ffY-wayiTwj_GGjJoftBwPizQ2eORl6TAYASM0JZg2dGkSYkM_zK6odKK1bY0RWj3RlMgsg0cO8ilvS6sDw0EGFdjCsqvJMzRNdH-J2LGgyggB10iW9OuS-ygugPRRBnjzHD6hH6bqDf_8FPBQBxlTM8Mx6uwyD42hUkmpKPyi4tMtUCzmFgERLOsDLBZhHIitmAfeS_A39Z2ektlxpjJJ_1o5F-beeG1wXJH-eTWOQq5ph6ldnlpwTjn0qraz12zxrGeQlVOT5-kZ5Oe7oLqaN7Lj644skIVL6z-KIK1ShBkOwBi7duBsc17NgUknOwFFtDjRXZKhfE97uEWTRfWojC-A8P75B1jL-eCNOUr2AKb_zwy6Qo9CBLqjznHrdAJxIbmnn42qwKqfQUtblOmPODnapKFae7uNhmif16nRPIAPVnyRHtJ6_bQQGwaSBVm7u3LcE71yN-z0gYO5UtlRk39FyoPgZwV9eCYpzDo256VT5m7g0FOC7A8lEo515pDOsyXOf2kdY_16stbZEH8-0OnzLoLcpI2xNSL5zw67CClCTq-xwPCQFGO0mP5eRJwAyNsl5rabfsMZZ2-o6IO1NrUXDoUC-2aa3B8R4CPsZ_atg2eEjeLjA-Qr3C-O8b6kYfjTrgLDbAcaUR0iYdD9GX2LemxJY6VIb9ImDs5EEUH2tqTWpidnUE5s81pzGcayyn3Rbm6o1PMMiOoo9ywPLkjI_-bZ4fNOuogCjBjuCdqhqKytGU1JB42RgL_s3fVra8h7ojwVE4JygY_tVUCa17GAqe0OG7Swzo9bx1y80KoU1sV2i7cb06yr1vVm2hBnAe790CaUK6In6mBYXlGR46x4mSL75LrTSf-ChescCGSmnKL3UP2-M6ja7EhfBWhrhDtUc3KJZJ47Asaz83iobj8QUsKMFSm38OKRrhxKNd-E1GTgP0mRfRD3iMNGfVkKF4cctw49rNDlav8CX1n5ZaDpfBjbSZI6Or9u182uEm2nO00Agij13IPY4zvVNNvE6hJ6vQCvFo1Ztvfvx8I2V0MRrCvQNIPZfApmkskw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a2bacbd88c90-07951423','','','2025-02-05 01:12:01','2025-02-05 01:12:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42195',0,'cd-form-entry','',0),(42196,0,'2025-02-05 08:01:46','2025-02-05 08:01:46','{\"firstname\":\"Joseph\",\"lastname\":\"Morgan\",\"email\":\"josephmktmorgan@gmail.com\",\"contactnumber\":\"9163524847\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6PTypN2BBMiMWG-iHl3r7BQhoEJ6cLo6EdHMJg0eUtIwbEuX_FEqJYRojFLQiOlFKyu4NHoBoaDXnWiDzzIhR-dETC0nrrkCW0-T_dxH90GJBTP_Wkloc79Cw22GXzK2scUhJNW2Rz2APdJAliw6ryIjiBxWCYyEIazPk16LHuPkWPYkrJuAnY6gJXHAgmRrMce0MJb_yBTzYjnkJWKo4TC3xXdBuL9jKs_U6crFVCrJKFIvQaCa_CkhuNfdQ68Y3mEsYRFw-NdXqRY6wNXybcNdUvnNs6aBdEQwkO7hse_yIAnpEfTmTf52A78y78Czw1QaZVEo56MkNPdgSrAe8nRYCYyCmyOAgQMe9vBgyM4LIZnsWQi4Jnl60AdgAIBfRB4SgNHv-HqOTboFUbEfTbmvZB8CtLpYfj6DLES1hyAIZ0jUenfVybhRiX1iPXqFllxpocFk6_GWKAj6YPSclKm1-o3OUD7_kF2wzbYF5RFFex3xAZh1GKGRp6y95Dq745D9b43Lm0RqfAlC-TJZTepgDhW6y1EMJzvRHweNye1Wk-xKYLrwiVYkmRnPkh78cxivtT5yubP4j4Nehg5lm4WI999_7RlheqqPLPrRKLGx-3joprB8pGdB67pIxGK7ufBnHONZc7nAq6O-WmyWQvZOxY4by3iyFKJmXcNTTxodx1lhA8lOMGRbeo-qmqVdhBAF2YmvGrqzlMweQJjHtSP95lbx0AlAvXo2RD29cWbIXk-L77fNEwZbAzyzEOBx9cZzhRFo_SK3GP34rA0DIr2GhC8M0djRXF4yloT_HgIYXOyqnQXpI6KtYrw0-ueg6hL6XJZItwkLYrSBMWyAAzPqAgOC-OG1JbFtDYARgYnhUS-3tZ5TKv_7CrX9vPcJFLLg-0_3tgGrawDrScFebW1SgK8DvaiLhBRxxiznUGA_KfI9ozKVnJdJIFU6UD46ptF0PdpO1j_DvRSoIN3gxqFJvhbIshe2Tvu3jzNVB-Hz-8XIKJIMV6Zm0PNeOMW4eorMMuU8MEqSaunnio55DfLmsSDfpJDLA43GK1rCZPH2O0DE6XoRqjjJSk-Qa5Fuq5YVgWLIaNytn0Xe0sJKjaI5RntzVkX8MNlFXY7ALu6NczvzTgrZYQBCmz3QjNu66aqYpx1FekGSoO_cNcVHngvIxjXPya98TWG8OAcBjanQotHF_WjM8doGFztSHAghf00K8N4k0bXByV79keTLPUkuSZUpcoa7WbluA9SOyBMOf33CifUBohXEmd5kSPOjkuEcu7UwsBHtVPw67LSgKmDmhpWPxjX5Bd43LUF9o-fPsD7Tk-7sqcxyxCvGXOqqIz1VVtlJP6idV_9ILHnUw1gDtgZeCkU0riPKjRdJJ4e6mB6vJNc7ZmP9p9WvLbwpQvS8V0JjHtIAWcqopgUNoK1HYt_JOQ3Nz2S5qjmgbF485iYj_dm_fmakG1ezN0zR3NP92ubpRoYn41yHqTxNauZhjDi9rPzZOVqJKohrZ2nhgxJxqyjzsTblHGhtDqS5r5LIMXmbQX6-8DrBsQn-N48F4svyH5WlCRdYO0koLaH0a_HgtzPn7vQy-ORjA7qS-rr0ePa7xzAlzAple03_hFtxc35TGVOHzVk0CEjVnHUEB766Nn34RwTGWGTruc1AF1NVSIHcU5b4LpyC440RYKn8ZjF6iFq7asPCPPUxDwymCJaYhndp8ZonZVlbH9vFp9op6H1ZKMcnLAuNLHeCSKY4RmwTFE7Y37ScJSn7m-Qr2olwxZ0HS-FTfolgU8GuWA9YvtJLALF-5Ua2YaY4Oi3-KPc-Kh1ICuY1cbBt1MH8QmHVxr613lznHQsdMuVVQJXzCLG9ZflCbohOeiUqtNtW0Q5bj7Qp0r2fCT6E4UgWLg2re3p-wQk3diHWUNE60jC2Vf4YwsD7xgUXHN93OXElNTNv_Q0jsqx63zcQ3up5coksZzohqIwyBkR7quoTTQpEkEgQuc7Lq9ZxTgxsvwd81oXQ3zQIKYDM94ChgCt9xp-90\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a31ae13b68b6-67934488','','','2025-02-05 08:01:46','2025-02-05 08:01:46','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42196',0,'cd-form-entry','',0),(42197,0,'2025-02-05 11:29:18','2025-02-05 11:29:18','{\"firstname\":\"Robyn\",\"lastname\":\"McEvoy\",\"email\":\"robyn.mcevoy@hotmail.co.uk\",\"contactnumber\":\"07894965776\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t_Ezmsg3PvX5zAdqh9MzYXR&amp;gclid=EAIaIQobChMI-tjN27WsiwMVjptQBh0HWhWkEAAYASAAEgKnDfD_BwE\",\"recaptcha_token\":\"03AFcWeA7Af12-wTX4PadL9KspyMD5TgMocXbmGUMsr5fzMzhz_lQs0TLwzX7bAp7UcgSkykD5MyeYWLYBeLxdEdur_v5Ao-IV61a2nPVReKvD5z1XK1_rDpIlWFM2CU2j4Se-LGLb5Gx33rRW13Wf39UOQ22QxxuWT0QPAe6QrQfxLLNfPRDWZwXxkSXKrrW5JokHqO93FkQn7f-q53qLxNt3-xZFpnXsbTQCK1E55zKw4eA70xMVNZqnKTPmd_rq8D1S0LUhDDpRLqMVIoTp1pxzRe3grJgpfE9aIDzApO7VQJ0SqU1WlefhMh_otoT_rApYZl1f7891bxZoh31Ue18BlPBi4AcOZP4XYuX4_CkuuUEX5Rofsjmj0QTXP2k9s7mSeJX1LTegn1KkWlI16gHyxI1JWZylvaNevb55GaQKXfWYiJwAhMUD_fWio3vCUrc9l3hUq9XIL9yofixf_E-gGORfiqQhIpn2SGiRs3XTYc50C_yqgYpBZiSb7_fyz_9BqEQdbmrHdjIf8vUuYuOmj3m50hJU1zV98Bwr897zWZrvAjBw5ymGxkwL9tLMKmupZw1_yO7fvfOeBg6tw71LS2sm-aCBvY0FyVszamvH99_Y43ja2_ux9fRf31GOpKkTuW25UUAaTD2w-rs9dsK0HRiBOz4yEl0K0P_acQ8nDAxksHB1aKDxRvRgdShfHfCiyI4AGo84byyB_u6lmw0DzmtbQISu4InssKYzzHHEHqFJuHZJEpj-gHwMAN0wcEi0S_aLJVBT9lycU6x6Fk9WVGLCgy_b14P9y0-Is_JnUiCPaBxAfj4n0nYmQZxxEPqiGjHPn10fdR75kg1dvwUMtg9urMImlKA10egkAoRZnJbS6jgigGvTX79DQlb1THPVt1-VCIDi8-GzS-KZjttKkHu7ywsZDL3E30srDZAyC8i1CM7xn_8NygfBx6CR-V3HJ_4w-ugRV1QzEVJHN4KFx0Y_a4T4Oqp7iA15rPTb6GTBwDR2uD15Xf_FgEsLFNq4JJddfsxGlWbnORT-JvPngN3pHEfkVzh0RJi4a0Ij49qcIrtRXuBltwi90lQ_TFX3U2fa9xWti3v6IrZf9ZOM-kzl0VvtLrj7REDrjWrQzMKb0N14lN4JIjob2HHT-TDHXvreb9WhpBXpoE0peGpGkql1hGKIPm9Z_WANoA51RPpdcndAHGIXwdQkKTT4OS9oVvs4ajNLUUpExujFblJ-O-n0xfH6iEGtaiEkij-hHIm3B-LiCFmTdxEgDRumPbl0ez4HQIzuxY0svfKUI62zn7RLu122IU5EwQ2L_c_P4YM95idx41CedO-k2vM3AFBupehg0Mkrw4TkjVdd0nJKMoO6OSeKbNjlG4sp6AxApXbWvCMwzvTU-TfRx26R2RjnQdLtpsBqcKnC1e8-q2wdbkoyhWk5Vz6tgI22333tZJOJ38aXnycU5vhEXJuam4Cgop9ju6zeU_Z2BtS1cIILnPa0t7zfu1zTDBGUl8rywva9DIsycqr42bGAVqtzdDPsZERSwH_HaHrEagL3PiBsR8Qw7yYZM0JpVilaNdSMIzys4WqkbLCbssBGivYg0LgECdjQCfHJZa6gfbD9HS4BtJ8F21pb8b2SM8G83jI_GkbuUQ4nuWc6LiaJKCm4yotnUHJU7EK5Oggn63DIej4ETJ3xjD0V3deitQc56N5m4snSHt8tkVFrPW9UlRfmUKGcvh3K3fPqjRsvPnoSPpA1VQGDGFaEJrHmUmpvxK_WiC2JzcICBbh1fFOwlDUXYzXd4EEFUrTu3wa79W44xfJgHViNgfknrYOcxdJGBHLGq_G32oADwQUvzap0ybQoBNt9h9ihvnC5XlziLavXy9VX4LHoGmzhNndTic3fVnriU5492uTk39fdtdHWxlrZ_rIx-jvxr8UxEAEnw8d3eZax3sFBImiH_s1FutbuvcjaSQ130JaLYJmwhOT5BMZXz3horcruNF0lJMwi5KaeaxW_BYplMhGgVVc8qwsvPt3El1NIlpQHfOcxa30HLMTKB8kAw2HpTPnqkAUpKTc0f2Wv3QjJIZuzrQgd_yCnGAEKVfzHGMYPLtj_9l_Q6XOS1RxARXAXbcynOrrdytOe1Y71qSUTQ6Ldrhk-hWjeaLuVL15BjrmbxYeOcGsANGoe7bbxv2wTjFuelotIOlKXvJkk1bJSl3VTkHK1sZQunMN0Odz4lHI2NPcf2ujfjlokPeFtUAauyrgRjTm0iM2r6-ere1WLVZxZnjgt7SX7v46j6Pt64APe33c398Ef560Sr3gM7tO6-KvvjWhjQc-IP2L-SdvjLI9NuXwNqFQK397T6DaUnfcR0PvfKD7RWvFbe5O0AL6c2Myt\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a34b7e4e2de4-24930138','','','2025-02-05 11:29:18','2025-02-05 11:29:18','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42197',0,'cd-form-entry','',0),(42198,0,'2025-02-05 12:51:01','2025-02-05 12:51:01','{\"firstname\":\"Alan\",\"lastname\":\"Swain\",\"email\":\"alanswain999@googlemail.com\",\"contactnumber\":\"07701299514\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t_Ezmsg3PvX5zAdqh9MzYXR&amp;gclid=EAIaIQobChMIg4XO28SsiwMVtKJQBh2anhTuEAAYAiAAEgKDQvD_BwE\",\"recaptcha_token\":\"03AFcWeA79iqLvr0mxm1fl16xf3s2kCK4LvXQbvGg1Nb5ciAlHm90wGHW1XujtHxUROB6RDse_bt0GBwHIaNkRv60YdDRXMGQRnxEAZ9obydsCn03sM67dWTLx5FLw5M8oSofQaI00B8tzFhy8z_UpPvZLy40AfI7ePmQrpZuLP4F9rBmYV1kU73afcWQmkUQOmVaDeAjXn1v3K-2_eEY_pHFQsRzJWakglL5XLMZ1mcCVXOIE9bujw-pmmBSqhypsAaRq3bQ-VsiUz4COnb8IXShyQIYN_zD6qf32sl8Ks2RGgz6_5GeyydYqihlf89ioaKtVMB683Mf1AxaA5kmmaNi5g-9n29X4KMDLhqE5wvXhS6W7c6cQS0jv0A6-eAezxxw93R5Mjvxt79vJxGUtsZo7-BeG758Iq_R_q_22LO-H-IxBxTA-waJxE-QPcIT8xvsVPv0XVC_zZ_-igMdVcHzyAANG2mn8Et2ak-0t00bb5lfLxhISg2H9nA_fVXO06LLyEuRDDIqgd5nBIc_OQ-7PqGoprgChJeOE75RWe0_YBHhOG8TLTwQ1cPSnKviVwFeKnhS691XODN6wEXo6JWVeCWUtIqP4YZCyw3RiKkvw_R27JUutGJGiuht0JPJRugaumKcL8Y8ScSJ_Qsg-m_YtjoqsHa_nLfy6zIQ0793THKnIMN47eqO0IfCDdoXRVl24SzAHucbx4Y3v9CkcryvDnQbk4bDDmEkLs2BazVCDft9iqHTZ7m97NhEgc-yCkAG0CYnXR8TQrs9u0u-R2l9U8rxLiL4RNeS3k0kH6vjUkfWynSdQKNZVtNoNR5tLQB8VgSkHhdqvcaS0yfQLqu8B6r0kbty9joSiMU_V46ryQlSAwI9RtdY9_lnUM4mNzAqzG-hJEl2yEgqY6RuYRtVVAAoyqOL_RCdagdiwhgmcEQmCHlK9gIj6biqXflfAqi7K0JyKUx04tMO2aCWoBNewZSEj4YQ7w_bV2TwINAe2FJyuY-jXIqosbzX3O9dwXFXWkZvsGULGiTjn-8097LOguyWDMS3fjfF1pzIubWc-ZHgIDBtkVGGjHWAmg7gyWW9XdFpSu9Hq79ogI5UKJ_69ZCkPW0aHlR7n9ERZ8npCKTAq-XQPRGZTKBygZ3MrDshIPs5slOhEN8glcrIP6gYqUtPdzSSueiZw8pmQ29yVpuMejBF-l9883l0XtXBbC7b5NALVWy4GBzpMKs7pYS350pHfmWYTvicaPGOD-W_O6ivlj8HEyggI3kk15XyRA84FMy3BVifY15gT4frLMzHYsQhThkCNIqT23vr3z7F6fVj5DmfjywqOg3cohF-fgGDVTq55qNHmIXNUOiN2px9pePotxaT6BZFuGF9LCxyYNbyEJEHN75YuMcg1XcKdectvugeMv2PkU80BRzqT4f9wCadcdo1Y6p4M_PoeqRViDB_cvjy7cxaE8nv6SHchXOyht4vweDqJnJsRWqaAbaIXNet8dGHzEJQBP6iepkAUMRJlPxjIeybVJ1tgiJp2ARy41XdTF8R3BcSj3MrkdzjcgpgLYRvxvN_0Ytw7jEUBmQMZeGI4FbI5QbTuxXhQJvP63AZYqvNL0858XSCjIxx0KCXOZpqXD5HAIWqCebYZ1GXwagT3UbzUiTjkV9_2SJSoZjlTNIIOtVr4EBBHjSzF00ZjWOCIiqsZR7kgABmtHGRAeB3cT2UYs56c8emG5qKoNVGiGj02Jz_99ebQp6wmyJQkoSMUHtvrvTVavNSL4v2uakULxJGw1sgtZoLciR48sThxsgK1wJ4hTGrvdIF51zRwyLnKmYV0_MMuTegKYjruknZq0L6c72Wzld8pS-EKZCqV54TvGvFdtyw_2ZNOnAx4QrqTX-AGKtkZfLwHH8TIqemQz-Afi7zRhX58q6YQ2YoaoX3afWPvXHaCTdFJ2lntV1Yv8lcJ8VbzBHIqtexeVf5mittTtpfqWMCY8QyQdLHAEDxYSM973yoXBFegQDS51BU044v59ACsdEfIWiAzvUN_NuuFUhPA8UYtsskuXjuwYyZB3mdU7sbWOa3rQPStWgf5U3yJ3mJUO5tQ-xQ2nL8n5SiBZjbgPnnRFNECXFxB30C2wWyypyzXNhlmLgLAfqXRUwrvImokO7LYYTtlBOpUTQDscIPCPUQnVjDl7X-hSJzT8R5L9qhb2Y15sJ-6dn_V17P5SqwmvcZ7RU9s7mwT1y4prvOmyAL85hNlzfLLKhxYSSZ5x1jeLYa9cxf60egk_Q\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a35e982c70d3-95166959','','','2025-02-05 12:51:01','2025-02-05 12:51:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42198',0,'cd-form-entry','',0),(42199,0,'2025-02-05 18:31:17','2025-02-05 18:31:17','{\"firstname\":\"Emily\",\"lastname\":\"Haynes\",\"email\":\"theparlourscreveton@gmail.com\",\"contactnumber\":\"07515130098\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t_Ezmsg3PvX5zAdqh9MzYXR&amp;gclid=CjwKCAiAtYy9BhBcEiwANWQQL784DwOKC-As2LwKmRCh-A4PrbDtVnbx-pW6CLCkO-j1C8XDo0dDnBoCYTwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA54kRHy5KlCCoWkC8641t5O4pP-E_nWZg5pNURf5M5wZ9ZETTUBtzm5aQSlSGImjXmUtlZIJsTYfdhHKnQoK5vR43sX7K90J80rF6wliEYvuhAqGTc8Pg2DPssV_Yq-LQqNm-9FYj09cxZDxFxMQ-w2fxZbTOiaqmLbuawk5U9TK-mvUlbCKNHDKVwriS2MEA8oaFTrwQVHjLs_RvSJ92zctD0Zv4kkiC7UiQ9LJH-v2PyMPZly3sBCekbCrWQS0fnHhkKsktNYtXGmUtUo-_YAa-ZfWoreKvyVnlLY_go4Kienz-fWEoMD_fztxg7IoTtRDWfzGAjtPskw4AJ4jG0nuKa_0NJ8hESaH6cBvpryPxPQDP8ujp6FSFHX9QV5g6pnHVpOuh-N6ZYasCinzRxOmdngBudqMa5GNUY7vdroKZJmLEUWsU56bcOcNzR7R0bCiSEYRJYwCR88eq46jhMMvstBrmfxETuJn-uwVTH6aWJLfhKvrZUGTGOAdrUMsf3P68PxNy1NXWR09FQfZg8PwS3i8FEnciiWFEzArijPl3nQRmtiYQsgsN-wAsjfoYySGmwtG99sBs32hrgSdArz7WHpSNjFA-y2mhpd3me7PU0uOLFLA1LNwPwpB7YNkgimFlRR5VhRG-fwVFd60eTjoHHxpw2orPwG4JRChYpPyH-Vynp_CXoGr-O6MAzPUC2_hv8k0kO64md4YvosrAYwTU3NbE2B3x_0Jw1K6RU1vtHLZNoI65kq0XdvfiBeSuuBEzU8xUtWXJyW-5shi1kmTIL-7g95VOlUIIFR3funYDmrTqHXAHfPMT8KA7520pmq2aXxY0HXKtaUdRtLIFMU3_zDHnnh-iZphghR2FWt7d9LaaMD_MWuL7sy7j8dYb916sD6LCKswXbrwtwpLPDbivBh3vL3kQ9Pf-3_wCbDgkRvC7Uoz6pczl3E0yDVt6wQ8_ytAYfy3jWET8-bRa4-SVmiZkLZRYQjppimFMQQJAAU3L9RznauEU5T4qHyaGKnB83Fvz_AZJUXspH4NdSDVZhE8eF-ICSUZtDbBeLv15hCKJDUVYnBP04H-15-1aPzBoahiK3snRPs8shGi8cWQN3Jpm49Pxo5jejWJXdilSHWXhXBZ1CySqrqRLTY7LmtxL3Mzh0e73jH14TYFtHk-yaX_EWxMP48z28LxsWOisuBvcOL-y6BQAAy0Qjf4-4W4jrXV97s6wvHZXdqCIkmcYf78oeLGL1MnxYDOMQwwetOoS_8v6qXbCgtiyU19SWlJQSitLmcR5MyAlTPeVjaNsN_-BMcMjWqaN21-KD1XsT8e14EgBKmUsZSF3nVoVgZwZwf6P5B7OXD2Lo8_Jo7MwNH3eKPPY-_AmopXRfvV3SNEEwyBCr1goVlKM0QFy5z7C3bcborp-JKxRWqpOR8oFshRj4czVXJKA2fiBtsijds-VkyIFLDWGEULKhdv88K5dX2Yv5tjDRRo-zDsno1BiY5JLas_HuBf6SLho7RwHaixQl3F7XUT7CVRHEDH6unobTgu67jNwsTrQIXQuuf9077anVO8UlCgAZ9wLMaF29s0c4uvXxA-fs4tjYmqhhxPAdd_EeShvuSgmkob5hl-I4LXUW0xLK73nx2qxkP5lQD5Ibw_nMbCr4-lI-jRR75lA7hcEteDlQo2nLNt73eO_IED55HToInrsWExS7v0f1UwshMXtiiSItJBKSQzx9t37-gSnGEkC2x8lkWPSassi-R1bh4X4xyGWe08P8vVYfQKjW1RQ9APuPZooKiAjxmIUrYN-bVt_rg9fOVulpbeOrc9EZ7Ap8gjmdSCjvkWQ9x7Poqt5yFCzdbR_9Pz5t0hl6P-04zH6AaYhXw-zNXG5ydPh4v3NmKOTIyXQjwRytZYY9iT9rkCgDlZ4zVoTxVuailfQoDaCYYBL6xaZDKYN9WIl-Cl_Ubdx55zY8X-szOdpqv606xWeh4rxEfaKTHtVvFEHuIJ74wOkS1dWL3fD61dBbQKMMZut9ygVVdwBtxuNdaVHP9Sf8ZAjg_SsgdUjiL9VZ4RqiO3sg0qaWhIlUY-efd5rcVtMHE5SXh1Eg5eMviUnRU6IvzNmNh0W3Bq7BipF5TFNO5KZJce85dzXfaIxz94pIu1f3Mk9Gh9OawVRwgakEPCyLJVXz0pVJZ44NH-DdaoaJx05wTyZgM454dk-Ktl4VUxrGDexlUHMXiIeXxSq0qN8PQp_zERRGpHkx34LNQbC-lL1JentQjlruDydeR6NzPVYdcyyxUAKGd6LxAAJvnsq8yQE5EXFgwyJMp8iYW1sYcC-q85-AQx9FWoLLT3DUOzri1CF18E0ZAldxkGTTLKaqB4ZRquOrtV87HOlAoGedCLMepANKZlwtppQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a3ae5ba141f1-56212390','','','2025-02-05 18:31:17','2025-02-05 18:31:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42199',0,'cd-form-entry','',0),(42200,0,'2025-02-05 18:33:06','2025-02-05 18:33:06','{\"email\":\"theparlourscreveton@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"NG138FS\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t_Ezmsg3PvX5zAdqh9MzYXR&amp;gclid=CjwKCAiAtYy9BhBcEiwANWQQL784DwOKC-As2LwKmRCh-A4PrbDtVnbx-pW6CLCkO-j1C8XDo0dDnBoCYTwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6gNwiGs8RDkW6kfYxlkaFYYSZRz9B3Yx6Mxugq5vCPaELO0lo68rvirL8edhCom2L0aHRYzkrKAMbHImixyOsA3BoRU5yUX-EFw_Yk6YueOSArsb79a137wDIzh7vMg-trMuw8dyxVSIiaWag5kJk2GR7ucNQnQOfTkm1n1g7yPQAaJ84Bb0yjw9f5jvpusotzEHziByAxjVDO-Zc02_I3dNG7FXd80sM12RJYHIfb1OIBlbnST2ZrdMQ5pdjWDth1yVUFpbCk9r7-9enZk3DFE3Ni9IRTfWbV7WAKvzlQEOyygSr-b3jdp5BXp1-CAM9P1n0wI59f4dpCMTdApZKrdjgu5i9xcEVV8bR6Yt2FXFyWLn-GMWL7Y5g3Iaev5VNq0TpenADPJ7M80NQdXVIZRI-VpKjH9PskPPAWAHI8ZTXdxRk3S3_o3mHbsr6f1_kLSSlmgBLj0hspn8ZkdBcROAbwhOE_DKlcCMmAT6qYul_HdaBozroIJthDVyw5Eb85wSs9W6ZZtut4vj8JlqBc2n7uv6mcV09eNMXis3cwA__K5D-cxi7pUqru52VGQjF6trXSbgWCy-ihB5nOWVaMMGcFxIf8oAkolW8_rnz5DsWEkU3O4r9lRPeV-2ncxlQM4CpZpHEyU39K-OGPclfTn7-CSYgd8i-0ciRcUFRCTn6vngun7kGp4jvchlBhkiV7o-aBc_FFxG4gBhyTFGt49VhX2VSUgivTZBSJbhtB06xnU5UfeNLebMd4pY15Diif8S6frwuG2YK_e8mue_FkqmayJsUkIQGO7g2vk04zgUvndX2AI8bkCV2JJ1h78mS7F-ROsGtGguxrwvhgq2RsAYpzwVS7tK4MLOqt_2Gt4dNEABGrm3TF_sU9NmbOXd7UNs5zbCKHZ-xnEUEjJhxtzmGz7Inlnj3ngkS0qktmDuUgrG42bqBrLEkdUR6pXrzXBoIktrKH1dtnh-t_dWZoUmOiP2w24PnHzEQYVaaoemgDgzszguQgMj-YAaaECa8JpvSnhCJ1HaHxyEfqSzxGap46jaSilNB6vtpz_GHAgzqqEeEydndkkibxOrrSUPjK9PPtZGQ0tDWkr6AJicrSV3gWsN4-lIw2joliizPbcKz470J4IiioToCiOKp3v2NMH8BIl1sPVCeWbJi4Fj3slLootiXDSQM6HYkX5AUc5wlH3l9QSvComCPIz1DHsTDjPbdCCCrQxVYJqsFJZmk4y8jw7nBlOavBB5hv3j0w8BsZSKxco6qT5G5A5KigLrLRkSDsd88Y5CzT2Jn6sGdO-jF4LVz-XzNtU3k4A-RsF_7AGdzkGdgNQnDBWXjImwWDcfFIRNHKJ8DxIxLktvKTVApERLEVPcuA9uAfOrY3k_Zca5lSsJuhuyUPDJNPsxVd8VIVrIyiM7ieq0S9SxnJSycENEjliThnqcO6uvLDiVoe-3RybVYhQD2VHse1Tgt5PIgEAbbnUXJiqww7uxrmA1EeBqRvGbmazQc0rvOYZ9mzfkRQm9K0-zZzavkEHb6MeZjd3EV798RMxie0VcfqTgI0Oq5XKiel4DR0cKlBwyo9Tz6IVYVjed7SNbA9b2V3QIK9TZ_xcjdOGHaio37lhP-TcKrHC7Dk-jT6JRYExrfxEEU0w49C9J6JBOwUpXvts7-ey1bfoLnkZ8cSI39Uda7Bbt5OJ_7uvYNPxMuLAsB2LkDHk1P5KP7WqynooT7Wpegn3E7ZvUkKOO1DVs4-9kJq6tAbW2Q1w6LWpUaQl-H_n-R1Vsf3mmuVSelpDRXtfgqI7PdcMjottsYCrbZVcto6vDabq3S-YUhWBD91PndS5Hm6GHulzkDnN3y6GFfrNiVTl5OHPtnnhNGsM3LzILJkyj2MBcbNAuFctiakShb5wO7Na2ooVOaHW-_8CSDd0idq2gbU4oMZNeeJdR9uMCO7quN5u4dD3h_fm194UjzJg9eda24pU5lVXP2s5ijvnUBI0ZmdpkrIehd8_EZ-_46EmVo_fQSj3JMbYO8effvLk3ta2ibaL7NeK1AwFJdl3KO7tUER5LXOdUX9YqIXl2Nr-IOq785t1Z9rnGr9IvEHFKtuOZ3PKSXRnurZm2SWemMi7VuK1iAFunYB9Wg99UFgyJ48nGsI1rJ6R5E7adrvy7uOHGWrEqrdFy1MKfVRAaV81_hZ7viJLuz9W3FXv-w8HPBsqXKRkwjMVhAYEv1NJT1qJEeZYe-VYSecJXS_mAwegJuuNdVr3MnvkXEj5fjHLXECyv5090t9b1NfoSw8NcSDNdmD4gy498CY8g-ilUXC7XJzogSOBgNgKOEFr5_pVdlzIvU-lRp5PFjJqGndnVR3DTmhd6vI1KPey-X3XvJS-QlEmEYqH0HgGOvGOw0lvDpyJg3CYXh8qvNfHuasTU4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a3aeae455691-08492634','','','2025-02-05 18:33:06','2025-02-05 18:33:06','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42200',0,'cd-form-entry','',0),(42201,0,'2025-02-05 22:03:29','2025-02-05 22:03:29','{\"firstname\":\"Anne\",\"lastname\":\"Haswell\",\"email\":\"Anne1304@hotmail.co.uk\",\"contactnumber\":\"07445288342\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAtYy9BhBcEiwANWQQL7YgrGqo6XYnlfPAZ7BIoyAsU6qa30gmJrVMYGwK2Nline721Ycy_BoC4ZQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6KY1_vpiz3Q6JZ3bQLa7BPPLJPhukO2sXmjz2ClEiRIYCtn5nAqSeG3SZmo2tN9I3S-kCFqcb_yJqRyI6R7BAznLmZ3On7FWrGAwz8GMIvxHMqdk5ujiQCy2AZ3Ewi9yAsk61Ls40T40qFFwVwh_34NHCT9B7IJKE7V05Pf0aNYfRm9gbZ7sEEggF_XWU0XKe1pUT2QymqKcWuRzFRgRVzYX_ZhI3zRm_xh1Depl8dFoEzSJIp7qczbSJ846shSB25fdquE_4jJpFZnOSriTyF0n2jrNQ0Ee8i7RxQfxgyn_EwREU4E9HMQT60oUlk1Pgzrax0YLVSh9OQwrEAVWNLUfI5T1-lhhHD6_pGzZvkRmrqUsNNi3JfZFUqc6tcBvKdGMnSnBgGbb8onup0lLDWMz30AEWwr9ABE6g8Hs__hgEd8Ai12Wtf2y_OFJMR5FtUlI4O7sJDLC7MYWnYQnaUMlBd-12-dTcgFCwEjwiqJNnSMFz3RFF9khJ2U2dMJ4RieOCRqB6Bf2jTuYrxU_wtaBabj339tStN3nLDTBNtgZnFP8IgR0kMdYf8G4418ngJWCO5p4yyFfFNSN6aI26LSxBHUy5q0XGlBgPW0vZzfWU_rez8iVbqQtphNkzvhB81hl27_2-Rx0La92fJKCIzLrEJMHyl0zqzOV5YqVpgXA5QXk0TeVes6Zf1DXE4YJMqo6E-RLbvcBLR0PiXX0mUUhhHa6uiHMHh5DJtM6IEGmHaitBY7SdY1gjuo0C1m-AhuYWukHwyjOqvV_trB1PjNh8VKyXmv7Ag2zxKdwq1U1yeg9zBvUzRY2vIiFdEs7jE7HWgWQHLIEmvXGmLLfsVsBuE-8uX0hKfi5gJ33eFZ2QbAE0FDuTeRLEi5rTbkiAzxjtozXVPZDPirPCHxqoNPlEDK7eqEca4ZFEs_fkD17du7FBJo-vM8-Oa1zByq4ouUa5sS3E3LXetGwX_NGUtFV-vsF7GbMH3HCR6NfVmtqWcTTL-mWVFcTO-volMlcg9UJD7qCfmU8ZvqkM8F4N3vZXefLkd-VQ2Sa00jBCvt6_BZVUsxeaPUoMajrYoZaB8s2EUab89fEEh8SG7Vn3E2u2mTY-PmIN_aIKbgvPOIcqGT9uFawZjrL5G3IArN-71RMCqr5hWZVG0KrtYY8Y8SLlIS7IJps48GzxdXoONNcyxvwZicwhFIwyF5VxQT7T_yQFg5KomCM3coAiAWZvTo5b-QOFiJRj-1LFZtxhfw9_Wtoy2G1FSceXyuqN5tAhEoJl2n1GOL8hCHz4OzKFZN6J1nhTbD3Fx59xuYiycTAUpE2rIJigFM7PZUUacvHnXHqtZF4uxVIv2jIP9lwCr5Sc9AnmIt0g1eoqEABwPYOhSgpZLME_i3RcTpjCQ5n4wKfZs2QiScT4b7Aop2-Bn_0y_brjVMankonmqt9orgbojp3SqTnzx60I48CA_yxrnpESsZa-PcmFSyMTKqEQCV6ObfU1ITssT81sboBe4BFiSU-m4ioBEkueN3c_MJf8tygqr3HJQIOmXXnnxVqBOLm-3RXA9ysR1w1Ho6WmQKaLTPoFjvpkhzaqFBhvQ3F6lZRRUoTXnVBmOeSKpIDUBjH7O8owOgMgjDwHN4cO6YVm2qqkqyFLUrAfCIrxMmTxjyh6BOmtOaO9q47Ivsq-9tlWv49OZhCx6nAJ2hcM4yvESmbq1cKwi6iCx7sj33kRK5l528dFmlwb4NRrhbRWkPmQnKlb0UUdbVssjslmZq32DHT-1JffDhbuETqBAHR774__AJmSf8SeCPf4hzfhnsckdTw9fmPoVzatgS1i_MNi1LrG6rzYnWWfQKfGPAbmzgFTK3wVF2ArsSQRwsmiFvumhJa3-R94tftX-1NUTwK-_9OH68urVPxar4tF7s78Sk2OYCfu-e8TmnirkEwI8Yg7OH5rLAyD4QfYa_O_PTJIUuIIv2O8mKjxDrM6HH93xI_2FQEH6UX-AaUVcvhpsit4EgJ1mhe2d1hJpR1vH_PM0Sarfz0O7L1wfvmRQVluafM1rT3GiZ3k5jAg77KU0JWmXvTzGHY9BmN0Q1oM1L_IyjTX5YI5jlTercA0kAL_AyM12xdP5zkA7ic-GocHPcODeXA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a3e01f1dbe57-44990325','','','2025-02-05 22:03:29','2025-02-05 22:03:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42201',0,'cd-form-entry','',0),(42202,0,'2025-02-05 22:04:42','2025-02-05 22:04:42','{\"email\":\"Anne1304@hotmail.co.uk\",\"interestedbecause\":\"4\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"0\",\"currentpostcode\":\"NE21 4FD\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAtYy9BhBcEiwANWQQL7YgrGqo6XYnlfPAZ7BIoyAsU6qa30gmJrVMYGwK2Nline721Ycy_BoC4ZQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5Wco01f8gfqacCV6LkoDNGzh38sxjT7z7BpXI4OwVJMRHln2NKLWfNUd8wlhRBEKzJjRapiZwym1y9borqGbbrOXcW2YDQY_17k4tdkeS213tDo8Z6XCdfD9iKDRT0j5idADvB9DG8Pb16sdKrD0-WR9KOlkMkLeNqP48_SJiNi2HwnJNj4sL2QEYhPDGOBXL_UoDAHkmUA3d_YB3rKTd7vn1jySVPYc6LB1OAOTHsEB8fNu0aGoQrOYjhlQ2PMmJj7aj-ipEEGPzN-mpcbUcTKOJ8b7ZFQ4-ywZbsr5R8KObDgSFPXp4pw6FoOUladLiulM3qK8B-lH6yn66MsGeaBEelyrXf4IK7X99STZe0DU2mK-VfHp1Y4F_2i-hEUWoN7DklZHRc8qzjEArMIw4gwhW2p3YFt73gc7OQGIzqEGMA2m953JItrZoGHBbSVO2H-xjtzt5R_QiG7PX5p9YlCUSe2Mn_Re-uCTi80SaD6LfrmtRG26gvpRcP9aRVNj8DeelnSFH3241A2F0slTyn88kScBrvGS1jcK329MrWbR1S6Z8uq4VSAOdZtpLvEO2SuhIKKU66ryeLvCW-uNe_PWkVg-bdH5ec1R4GGvjKLPwJGwUYVomPh16f5Js2y9lAlMOcl--ailZr3a23y6qmb7oqO5ejaZNUH84WhTk3OpmZY_sDPH0p9yeLKH-iC3VbwXSIUi0Qc-JxiR_Kp5qV8AUIyfdCznUcLS88EVC843GV-V1dI7szf-sDcXgO8t1DfRad09U-DpDIAcVUFo3OVIb-_uU9YZZnG8tOvt0fJbtz5rLqmH_Aq_laWrKhsfmPe-QvXlduw2Mpc4OmxcYuup512kesTK1a3fh4Y-QrFyFcXhQIoU9MqrlDBwlENsSojKL3ktq-TMbBhU8-yAlGI-oPjrlifToJYEv238Jcixi9qxdDez4F57mJgPBsrtVmv0dOW1oyBoMbi9EEChSru_pEZNitYWXsQOLaraLBvVkLHTqjSLxafsbvP-Z_2KbvQaagcqMm7uuUkitVVrE2A0bpXQMiZNKcQwWNWjiO-orm2SAuXKrrxBPA-DTKs1X722PI2l0pJi1-HHBVcFXb7L5Y8SXsVfbENPNLcnn8x7ECdiU4iBib6h4ciiLov3U_Ilos6eFTEcM6g5WQUGwUWQ8NhMA5Q2BFNKjLTP4iEt5YIoS6pA-bSvCSYmmL9PHmnn76LsOzOGnyOpecrPz2Gw9d5pXJsl6kYTu7XRj1-pRguZTkseQc0Yowa28zV7KpPRUrmClAxXxKxiAwHkgmaD3JwVe-Y8L5VYYBv5c4pYauWwmcQlnnF2WSsliWJqktkaFiRCeyGpT7A53SiD3nuB25SWYDNk1mwV7Oi_Y9udDZaWe-kMvUcciQOD2XIza0Ajkyyn5OFrVkRVTceFPeSdc5B6W4Zoe1-h3E60cfxITJ5kYNGcsSWTyMbPIszSICiLqCyDyY2M3i6p2UnJJgAjtMiYQoXbTZx9Be0JqI0I0cb7rZmaTmRgaHMrrvWTSyO0WJtqcRzgbTY2pDJ7v_CA530CzsCbzlNJ4VAzTvkZWX_WeB0D5NDHy7wwuZk31k3PkJEC3JFw8R4jvWEofrAdLV-ZZrTJSdF48MSyNzg2h5ooI4jNgfMv7kKmGiWXk7OPhf7unXrF1VMvGDTQJXs-rX0BlFLFYzwYkZWAQ0DqerbzMSMPR8NQsvTnrQLIptm1aLm4g7mdDcvw8h5sZA2H1RW8QtWGrlhohD53RrX7lXU-lDUN03dBDq5pD20tRQ4zOtA8Sm9E68dSXazohT_OMpKQmF6LoZ2VwpwvmWc2U8VwTsQxhMNZH3OZk1X68eIceNXdOM8mPcpCvYkrFJsY6gmP0DMj5Ln-75avcmv1PzXefHcW-WZfC4rgo0KMlosLjtHyWYIXWMyi4lZhCwkpzUCvxLtZ29iQItDO2aXBnl5tzF0dTYAeie7NhwIs3pEjCxV0qYCGLmgWNHcTiHRMPOi1T7UTH842jZR5LFXsyhVp8QzRyx7u6oicRJYiEdXJOGTjNQg-PEUne-qK_uyXSOPaklUQz47EVUyz16coYKinGUbSU9aVzTm8wIPQddSLoAu4ZlYxMpOavlOn8LMwLP8A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a3e05b3883c4-84857554','','','2025-02-05 22:04:42','2025-02-05 22:04:42','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42202',0,'cd-form-entry','',0),(42203,0,'2025-02-05 22:09:13','2025-02-05 22:09:13','{\"firstname\":\"Anne\",\"lastname\":\"Haswell\",\"email\":\"Anne1304@hotmail.co.uk\",\"contactnumber\":\"07445288342\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAtYy9BhBcEiwANWQQL7YgrGqo6XYnlfPAZ7BIoyAsU6qa30gmJrVMYGwK2Nline721Ycy_BoC4ZQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4mAGiLq5yV-ABaF-5ntWSxZVuKPE8zCEnOl1JbM7ytRNajwNF59YBpJ2sYm110UwsOYZFHw5F5AsSJibWGGnwqgt3vaO3roK4PIlPk9Vguh4Yxu7TZEw9oE4aEJpnIwW2EZesUB67z08XWVh0wC9kQLFjLS43xDv0cwxAxQ-8TpFGsBFT4q16wsad8xbJxv-2eiFwef1aPU6oNXw0Jcii3eyEYxfOru2OjPzfBZUp7lJdm0T92mvSWO6ROC0xESmW85SQiJyOhTlHX86AfVaB_gejYx6jphUMuNyCxgksDRUnQ-XU2U4z_2O2bhN1xwU4-Ocz-tLLRD1CrolUg5yI8VLKzPJeND7N-j2UeI3hfWAwM_DcZ8V51GyzFXY_IZF4I_7OWzDEigyNqmJDtUzJk81uN0SVwrYYMf-yFeKMNI3AVl5vDDUoh28n5lozJxTVL03MimzQpXIQCL3cno-KDEhnOFnsrPeLgtF8HyLDPcDPNxeWzcRUZwPKx6Tpk2Fb9-vLMnXdHqFIDsHKUOn8x9iEFgbz1vSEHTddSW9WLZkq5z2AOysqilG9fGF9HJvEiFv3dUncBiNN5MlJPFkBtZD_wXbtLT4QHvebTLTlpI0LhTd6rPHwEfOo5nU2aGuODGgmZQgzgA7-s9AzNpfssv7cRNK8s3Yq5cHeEbqFwcRUiRh703Aw2jlZy4p8sV9yKYiDv4nS3l-1WEDQYKD7JFjDxlzaIbzH5b8HFeaeTn_Hp5Vi3NXkOdf12EIscBQZvBmsfPcz5jV8r_Ss47Yde16P_gyAMaJwaxm_4MoZ4KbYHsATYoH4UHgKzz2yk0QBLOym4kcjumg4kxZyWX4_GqF6TcwPxhPD_xISPXT220d87i3THvU57q5pAcRV93jp1API_3Eujpuut6l1ch48732xA10WfH92YMC51eJwGsXlIx5CpAI_n0CdDQyAKvyZqTVeXlV17_Qs4L5v_Uh_L3gEjAs7ZBqkK81wwxQ-Es---B6clsDLRZiM4aeFPA2LrhTxEwfFlgAby9FR0RFTigsxkFNF9B6S2gNBhd0kOlNn5MNO3Ko16GmkAV8dmjShD6Almi393pqjsiYTkJULDp0ywz7QF5JhQI7ekk0LwGmH-L7sSEmJGDe3Sxxkp0qN4gSzmxQ93tvT3kRLInqYSEucJIv95RrC3VM32L2a6oxOJbYGiLtNuJhOd9pGCknaMpsFYuHSPUnPuP5VSFk-b7x_Stvbhfrgpwe_qz7szInO2P3hyAhMvrltP_Bidz8R-L-SKVBL8HEcGT7d7bj5ByR7CTEtBogxs7Em6qT3KmRW651woasmrmVoDhFhfvJb2IYwZDFG-ZXgigM1240406XEv92rg6bPWHTXXcr_tsDz5bP5BdRd6iVtV9Fp2SuNSGqrBUEO914aT9cew9BIAtZguvoieKvoeMKD5ZzjaigzPQDi4mjOi1iEJkXfcVK7LSqzrNQMQcZH8o7JdrVmL2qHdB0iY00ZvS5d4QDhdWXToYyU-_q9LQ6DquiBo9KfXPCsrW44i1_jG167C4BiOA8jK_muAB-Xo17J6OW2K0UIe-yzndr64BcF2kai4F3TivQiaBSLiA4bx8JrUe_FyrgoakFxysQbACqWvDNZlKLsiOHmPInLvaPOiUA_oVMrMZrY4WBlKfpBcoAjqiKTw-4d-LLL1SW8IQakc6EB4lqXsiNTUYhB2ElmJLWz00l9XiIAc3Qj2Cz4J2pKTvbcDs6-y_TfqpBOVnuZyuroUiKw7mBOMyTjyG-fExgJKYE-VKD9au0iL17lsOGvzFrWjh5uodkZI-wzwGFOCzEa0jTl-dgatSlj6VohGXFNiQJvUEdvT_PT6AyHfiZKoIfv2Tdag-pI79_cCu6ypGJjvoGUI-dn30POXR-kRXAGF0-Bw7fCy6r1G0Sl9CgBUo_JSqeAK3to_-jeQPCCiRqgiiR_QiJag9RFbJTkvdIBrxzinFMd9m4-ZbzdTkye214boDLo4Kq4YX8vaurI_bpFjstAc_6rNpKBntvdTQiP2wnkhRIq_H_jq5ol0ja-3o7N70bd5zylRZejacYjcMpQ9w_EMQ_m6SdxbKRLwhNAhrBnCkQuVbCo-nz8IDR-TlIGE7_wyww\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a3e171d28815-29624911','','','2025-02-05 22:09:13','2025-02-05 22:09:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42203',0,'cd-form-entry','',0),(42204,0,'2025-02-05 22:17:59','2025-02-05 22:17:59','{\"firstname\":\"Anne\",\"lastname\":\"Haswell\",\"email\":\"anne.haswell1@gmail.com\",\"contactnumber\":\"07445288342\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/#row-40321-2\",\"recaptcha_token\":\"03AFcWeA7k0M0guHN_umS_CyXExK-0IEFDKAaLy8ADcz-9UiGdo7xhUqSRnc1waeYLXSLon1SjQJcMWnv0LJvO1FyFwYbBkj_tfq-NB3I_hTxGiWlC3EDa1qev3PKU7-ALsAVvjGU-Kz7nasD5R7jN45AfyjcZk3n8rkRtSx2uZ8Bfb8oTlF8Pjh8kJmO4Lw19Vax-Us5zOZ-8gCoYKlybIS4if4444fQpyW6zR-vYb9OU0yXH9WlRH94VUBNf7aB25dbZdL--_jK0IGNFHKzvpFcxzo0DMgK788GkV-TgFSGE0Y9yxCrNKWxdJXII0Y0G4KdaABsyWZa19I_TCcRiUwaLIWp-2RJNiehO7m27ITd0JDOazD3qJHa_OYQ6H8wLb_KIz5ZMe_bOFax6NxmxZGVEiIaqNb2b_gtgHU3DZ6_Iptka0qvj2mKR63d6dQCtEcK1kd7HOiuBmQrF2krqe7dJ9MSRxHn6gJIRzPfL9TekK1cH9qFp3YpOdOemwi-jTYFJV-Y6bMiUvWVLjKpLHUs24Z4zXl-6a71f8N67N1FsNnaGCIwW2jyyVKCZy7C9_5_4EQtJQpfVpQeGU7rwqsf9a_Ndj8bBT7rAmER-7HmVIglThdboq5IAIBrmwk-dElFzA8fD6ziUN1Eh5PKhJIdj1BXjDZTkOs5W-sYANyWkTnyiNiT2-FZgla-oyLZlDMVGl2S1Uol1xzZeTzKEiADNI0M3zhPZH3BM3pNDjZm2V6849MdCFiotYNfPW1lLLxirHIRoNR6hShG7E9vdq6VMjHWj4w5C4XhLz5esR9lI8kaqnDopLh3h3UHlsGX48fnotAnn3ULXcBcmGQECtHgCzVpCWBLTbQLrphFofls3UDz26kIwHAkem9PhAMp3xHBJEN43QqqCOtfNDvBl02LaKXsI4pgZ2DyxTHbnucCL7bILzVoyPZGzm3Mlo5KMql7idNgMnosaXY7o8W7xZZomGG6sxSPTN0HlPE4gEhMRXjaJchjbEVaxpNY286-SO76PlZMTfLLwT1GeiT3IOy0hr7b1u4T7tdJ8PSAPViuFZuGyzYxhFadYekvQF7nh2LHAxiu_EX3PA1T1p_OouAjSoTnob6qHnmRLob7QzYPH0oDJ-Dx-g2LW0ZWI6b9JutXAZDVyRioFMAdZy76IcsqGG9zcNbSrQ7KnQFXRZ4YLpDgKnBSf5ytRr28KkaC-d3KNq8NKl64B7LgZzcZfbkjX5Vq_N82m2jkgMr4pwinkArbMIwwiiAZ0de3TPclQOJ-P_UCqTeJleQTnaYT6Nk-vx9BSVK8hFhsfBOKLbe2wLQR32NlH46W9IWeakeucl1V_lU7rLoMbzOBovdI7eMorOBgmyeoILhUsCWjpK2qQ5RlmMhezqcBZvOTf_QoQGxUDnPUoRJqfFflVNfBNW8yWKHOK1YTtkazKfiUAlAudsZbAZNmEJSawTmpsEa2O9prdAE37uqOkdma6gLxuaqpxhGJTyDIlYiz5HlCoroYNut7TDlMhrXdR4z0LSluMFCBrG1LlxOKAkva0PA8xl2bX7IYSNM05BR5ygDE1clXEOPEG93Z3B1kgIVNy2xLv4T8T-Vr2RCWTrVtOw0r3xbZ_l7elLfkFeE-bMbGKdy-7CHvwo5a42RLZXHp-_Mrs1iRt2oaoFcI-M3M6pTkvBgQIMaohJGkJFB3TqnQ1Hrc6Gc-5UwHziAvgDrfoL3NE1saf_JCqJZgnz-kus_dhicnS_vwaxSsMYhaAYbjgT5lm2UklZP61XFaln__3z9ZmhLu88aQj9nj3Z8ARBMaBLeSyAaPVxLExUTm2QXXaMepyQu4mxdU0TP6jtP2-Qb44lTp8zl40qK7oEi3Wn0J7O9I9cOulsMc53kOXFx-wuBiZjQyDLcoluWaw4y2iWqJrcqFUfwB6_zo2g76mTIpKSeshPIfUpeML5CnC4eJfqmDAHcHB6mtOFlNZCwtVjxh_D3VyJDheZA7Us_kn5tr7to176eQgFrbSxOCXZiUvjLYvRH_vE6QQuguDfuFaNkVAnQXK_H0vdvm5Lns38bQ0CBjuzJkjEPIpxx-AI4ZW6f2C1uRRd5nrHVdmFxyCWVKcUQfUNEJwgLEd\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a3e38abba810-98629341','','','2025-02-05 22:17:59','2025-02-05 22:17:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42204',0,'cd-form-entry','',0),(42205,0,'2025-02-05 23:36:00','2025-02-05 23:36:00','{\"firstname\":\"Loren\",\"lastname\":\"Whyte\",\"email\":\"lorensonia@outlook.com\",\"contactnumber\":\"07903625236\",\"pageid\":\"41115\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t_Ezmsg3PvX5zAdqh9MzYXR\",\"recaptcha_token\":\"03AFcWeA41VmR_cdnfeLEVb7xIDuCa1lC4Gy-E-P3DVmsyeCcraPLsjZhIMHpBAb1FGSxNcyFEpEt6SN27bkjQWNeCrB3DiFwnbs9qCSB2w2YrOIqkqiY6N3JyVGwM_228dZCIK53KmVAKzYoUrZy_Iq1-NB9WdxRQmFSPH16RxQDGs_yfQf9ilV_XFkAuTC2sZIkif4hzrs8tKbcP8pGcFJn_vuT5RkYrHlYz_YSGM5DbXrfctBfwpy5oA_H6v3fyDSy1NDVLwLVMqE-kbeb12U2FBMVetpfUqp1-oNQLTH2C5BRMgnGSa22xZryzsGKR_O25U1EkoYc8L451idbCZqQA2wtgZg_bfJhn8Yr5BDHHybAOuz4i2pN2t0cDJEhdQEXki5enddFWWohKrwdz9r-p15ZyvZ0PJ7cx95Vw84-aW0d4HM4D0JMsoiNjkr34V-tkZN5qe8m4UndDUA_fTgId6z_eMzTHb55mdoGBSILLwiiTMrQkFTq1U5Ot0DdLERZSEbbNN40lLm3Y3I5xkR9v2eKX2cEYe_no5pEBD2znq6oE2JVME-SeqNufs6NAfxCaAhlVYSC1uObvj81_8O6Nlkv5_h3kyj_sAjYpIXbBIEBH-dmZQtPJatIwvG5aExpsxfoyGEICbOmFUNML3HLK_B8DT9ghZdRtH7We6upT-95ELZIIXCCdR1t5mYoUJcZRB2flqN9BRdUm0ABou9gmE8DgGmaISpJRLCyd81hHAI5RhHQIgce7NdysBs7YWUsWZ5vHD7m7Auv2NVF34FrRsxmI_bxn9tKptRfyBEHVwPj8QMZZt2NCP8BD7FgqHiSqkbEUcmo8iTJ2xosQnoChI5naIE09OwyxEPTus-L79twcQx0y-DjwRCgScH-MvDmWRyDIxlK9fuhUeIpe_MhfWnkcUqT_Myza-BZtPErhd2EmmMztMJ07v2q9kwscH2TdP0TtIlCSPKgn5wI76hJkbAiFv12QyBYtdcqBgfBz85IBjwy3cMMDC82lvVhhQQVsnpgNloRmJCsYXogL_8ImCM9VNV_7vDnasZCHycc3Ok3INLhmM_jLrWndFopGIFEGjfHTLZFLGExiUNB7kizpQMHYaz9T2KwbiMATQj5IMtS1rD0xdia8f8GetbfNWS-1XSlXZBNMFkmQSIwjGOm6WMDlrZGACVAg4hW4d8uKYRfxSckTeQAVPm_y3HXPlDcfuEaXGFQXfF6jWZbCntEvkYw5B4CDxhBfJ0RaFIcXT3-KIXbpFIRUjepeCkUcroBg_wZHGgg_HX9YZVV2ogCTlaKZjAuQaSwc0K14fUPvDfY4Lr4eQboYSOmkHrZ9SIycXnad20ylMQ1L58f3q5gUF-hkJYLSSB5qgrafZRuydINObyNFSgIaXd3zBzyWWxFNHuHDou9fxHQYQ8QxTh-rz55x-IkME6L4bAtCuiQc-Yo7HmNlCKxFvhSk8lV9-6ND489d7f0FMCsk7RDo98tIBhrbcmUK2gnvyOI2WgICOpWdfxAhJkRYAF3vtsb0fhGWwY1vD2xPmsrzdcVhOU2msUCN97HzduBm4eN8zCuJx48JzLHiqv0T3cxgfUlsvNgBoGWSWk9MCrWKilMdY3cDxPEO-v6WTO_laMhO3UtcVKv0bIQQhF7EdRYWy8XB62egzPD19MuTCcMJKl_yyF0ZlWbU3lPjywb8x5ArWHfL7F1kj6tnNMmA1rtmjoM8FZzOWlwRJHyWQkB7Oq6aWa21WOG-A9U-55TbqtN5dm0HVTG6RYbm6nvSfv29vRs8cAFuIXTEaMayxjmGPLWXbUQCeQUk2Za2oXIVMrxcagAMCiX0bRYNqR-NjAiAd6Hl6XTFVikG2yaEVlDKqcCczc0lLzmSo0YE3tNdnP1xD0ObIDQSW-_G6x9btdk7r61MsLOQHr2jP5NdyyL5kTONDgbfTJy00EpRZ4vYJfDB5TcDkkfotmtD6akdz79au3LhUstA_x6dIdVfScdTzdAjgoRVemDD2EQ_W0iBgEryEnGjVGY380MGO51UelSaOisbSBue-NaJaji5Ohwil_HX5TGdUU5tdH-TZOlZ9TVfC3_DbfXkwRidtQbQeuSmwzCxlw0H64-Pinw-Wl7EweSr6O1BtRUFUjq_HD8QQI7VJHvsmM6Rn-mv51jVQ5Xax68p5DEETBtV0wnE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a3f5d24a66f0-20048831','','','2025-02-05 23:36:00','2025-02-05 23:36:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42205',0,'cd-form-entry','',0),(42206,0,'2025-02-05 23:37:10','2025-02-05 23:37:10','{\"email\":\"lorensonia@outlook.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"N21 3ht\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t_Ezmsg3PvX5zAdqh9MzYXR\",\"recaptcha_token\":\"03AFcWeA4J7xNYcfy8r5tUybrydS0C6yBPhiDXt3EYKs_pvy5l4Q8vECkb7c8WUreziVutuPIOTdcC1AZhLuuUrK2vQ4zFh92h9tXqsbFkKK-0c4qmq7NBy190ll36W4TMtBlKe1i_p11hDLJNSd7_ieB4OuCkW3IO702SF8f39mPnquPnYgsyX0NL9gud-eplF5W8WVyEJw7uC9YHxZfI8D43GVHT15TRdaguYW9P1MGGyqFOamZBxzzG7WDGTVHZYALo3xjIg8TwvDGRaa3vxVadSexEngLO1e6IIrrPRIXe4IdZ8nSoxR2n6ELv76N-AbVsEPF4q1XcXC5A7EZOh00RhNyM_0IYhjzYhJAgo_snnL7Cde45bCax16VZCFPJlLjD7fg5OF6TOUIwv2_Hs5istvDeJMNU-XBygkEEiJdMOJI7Bfn1-Z1ypBkHwSvpx2lR1FEtWTCNl74flGFEKhyNDtNUh-Y-o8gkX4jDtMN3kcYh0LOmmfOs8cKmnyM01eoxXRuEZxi9zg9zYFc6dZFyXBnGUbMo0c2DieNC1AGKpAC6nYM_9ZDpJhSnexKIlSY1azmNv0ipAUeKb3h-Sh2C28gUBBiomeuiUH19y-4wh5ytPMOgMgK_ArPSQc3ywE7lvMG3-DvKKqoaYFJy6AwFAZWMkbzgwbA-WuCk_wnS_HL16qSRl9xNMd6kx-YZwKDH4hUmjLxiaL2pY0J3COoSRWQXmp5T2qWBwVclINa8udqaDRIdqByV3WiCQ-nvbZ9xa_m4OAMxTRpFUv136d2t9f_E541WMmn9AVL8NmXddL5UOYYxF_2wLdT0Bkkkh0E4wv6fRspa-dmhbrmK2Thch42y3XOBHWRFMi9H6-CYvWLV24TAudsZfhsnUSKw3eRogsnNEpM7sJPDi_1mTm4VK7wkEQI0wBof7ORCCnTEHurKYE_LZCIhey_rEVvorL5-2_kKvbOuZx_4qAYMhDIo5NBFHNQ7V0yho3pQV9V72S6DJr8Lem81-Xswz8vqbn7ZPfSeXJSc3Y1KhiKk5YolDDhtd3EEzCTWTbphZwv7NgjgzbNbJeDs5i4pxtPnJDBHzfBF6Mopjl2-dg8afrTO8p0A7UAomhhD5VfqJQAV_r_GxTArB9hSYFWUipDEE9Vk55ZkfFehLmyq0KmbcINMMUk4vp0LMxfh0aqcihNft6ngoqAem9PbONUCJzmr1NHdv0-3tdAXXkKjTWtVwX4JI_-sZHlkBrWH2yI9bxqzqgCEU74PePqG_IMidQWWTdRdQg14DZwrKQtLfKkXH7ngjsovN78iSLM-uAIvIGesp28w2kvWHU9mOVi4BB-tIbW0tg6Yhko0dYWMqM7jxSnJXc5hLXd7ocrxryYQLicfSJQwa8_FKcwKJ_0GdKP9XwFMnqrg6z__2OyA7ieu96a3Am1uHSa6p3ra0v_kOf9_9Xu3dw6o9ciE7o3Hc6-0WcUWCItmD2_jV4omvjidfDagFhBYctOSq3e_ZssZAgOHxwOcQd-fUpsUddPgrqwjlDiowuYwtzjKIMPEQ92nKITdJXIFPMmFXrn_37aUbR9pbQmjv6fAJ5dl7uJyGMYzvve-wCCwt82JmVtEz_UfVPLFyubUTKAKkEH8Biydp-q6qCKSSk_8xLJuDyfEQA0uYHb9EMsKyvOhV_Dm7iIfsNoS4Vk1PfoPx3fS_dDA0LqUsjRt-Syqq3c7O_2C46V9m0Hy-kxAPizECkiR8nyGO6PC5KLnDuVaNmj7DdLGvM2Syh2Au4t3GuTf4dATtYxL_5xhiG-U6nxhs6CpFOBbkXCXxSxn2KrTBXZfyIO7IGmy5GgK1w_aZkP46idMULOuwk-uDi-_lajple-Xa_-kNhqrojgWpCBThB9JsuGiJlstkmcU0D8o4Hl9RPIigZusV_TGv31TW5cZNZJ562sdXKeW-LhqRB8gkk2fNcw6CJK37_FTMBoYcBwx05uBChsn7F8Doa9wGd2f_gaJAOpUGzUYm4v4cPyLfwhLOD5zZapovyVzvWrki683DDxVjTSY195AP6ZGHteuzjzBd69nOHGhRf-h2TaOgVErQocBt-oQN8e4LpxGIEePltvF-hdvtJA0OHfwgwNleMKcrYms89hlegQWR1LLLDkyb1mPJBJZJLYHIWNv1K7x3fM9eyK1xsMc5hXRPHLA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"4\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a3f60e93a866-79048901','','','2025-02-05 23:37:10','2025-02-05 23:37:10','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42206',0,'cd-form-entry','',0),(42207,0,'2025-02-06 06:23:43','2025-02-06 06:23:43','{\"firstname\":\"Conna\",\"lastname\":\"Smith\",\"email\":\"Connasmith2007@gmail.com\",\"contactnumber\":\"07716537192\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4LUx2bx_gxSIQvutxtSH3vMNCHYppQPWeBVlNvcOADH8GaczY6O61wgDyW8X3uq-q8S_rjZ60R5r6PI4awmVS-YiWzkc-xAwtrMem_ldq792JnQt8-JQUNCfW54Jcm7b4ngO1VBOvq4QUmc6cLX9S-o4CTnV9WzTb4qAFC0Y79DOIsicL0H6IWoWelX3xnk1GaSWnoWFnggj3tIhNfK7MbKym_Y6v-2GL61206nci-YhvmIwcmwa8cRmVl57uqhfbWZFxNDeDMb3ot_q-FmCGp3bxNAoAUsJ-UtqT2jnXakjZRfN-PqJTrxQ2ne95OSDKDZqZ3xnhGo_HQ-Qizn6D5XCPe1WTVgwSdkJywiFamGjZpoLGBHvE5iEeW9CTQTr2JC9jcxGj_BOqE51xcySaN8obghypOFWVdM_fw2mnHTba9gM6VxGNY0TeHolFxZbD4ySpSrZv-4vYVd1uRUZIuO1WgdlPr1HHpUrqAM32873gg5kYM5a4fUrHzgtGl2xg1SKU9aD4SDGJ8vkQbnRO8eoEYFdNRj24ud0tlBWNc-oix7RlDV2shBfSFFXOTqiV1YPfevNJUaeSwxsHUbx-Ce8GPY11kK-cfRUqY3QaRvrCyzsR7eG-Dsd1c_GCAB_RpOh3ZWZIdA39OHlLAqb3m2xw4GXJU38hq3kvluK987Iul4hESTuC8PPIxUcSJ94zAT0hHTSWmCeJuIgKp2CfHbiHDfcvvIoquLvyv9Cu_P9xPkB52A3o3Jeu5yMEnLsMK7SuZcSU6IbUuZjCjWqv2Dxkbqs5hgQzN74i-2IpsmMwdd9ca1WlrQBYgI-0RurWCjI9vEKsa9eUDsvoMnUjFbJfIBpm2JN_5oZVoO0oh_ChG3a6_u_H7T0Uco2t-_9dplPU-IUepSITQbeczDXIIZO5f0XWrwRTLTTEj1km5zbhmhE7p73CSuHFo3LOrHrbsvyzTXfM5sVTKZ9WwWv679kcsfH99FmhT37-dersAhHXXZ5_Xig73JLw1cUYJsdlTy-KSe-o12MYjpmbESuVciQCswqdIz2n9O1B94w-5jtQOLajLmoIbpSH73jnLwQwDGGN9Er13bmgT6HKQJefLkGwh8u12ojL_Ddkj4t7SLGPVtuh99NrB3mm21TsZN_tLlzKgXMFoTZWR9qhr0BDntQPkBrN8sgrdefn6EmOQFEUmTm0InsUVldPFlLlfgprWKIxm9PLQM6Mj8M8o_XuQ8HJtkYX06MwiaYr5kisQZfO5S-SHDRwxNSUqrBc8wmJ3l_eliWcR0nU1JjE8banr-LiRu8Lj-dlmwnmrTijcV4UCWRchmSV-SHUByct7MOEP_WGyv9okuASLBWZ0ibeyGIASLLjD13TsrUSYUxfgi598-gxG5DgKqdJEAyytFvWugvWrFXSvzNrCvOnC4Lnx51CcyvH7HEZbs3XDVnm1Rtgyrh3o42MHlIeYQxpzD-XJAVj5sF5fuHKT6QdojoJbi5spbtUNBkgmRk06kiJtW5KOfU5hRFSS4Xp2dYN0G_B2dNX-Kx2bJFQhmot8bGlQSAwgWfkc-DGM3JT6v-uHcp_YPJMlQI4Q6aX_ZHvLFccJqe4uj8KZ_cj1xQNyEpdftL56DqVaBnMhIJuePWOw5iEuqRBaHsaieccs-QxzQis2cR61CuRpNjWj8_H0UxDpQpVZeTmacKiGQMI10BSOXaz0coiRenRiVIQEm-PhsOuSOYyuWVbg3-ml4Dx3NQxb1Bgmi2y7qfwuAVAGdJhXOHBrS7E2IBZ4SUSXGXR6VTHqUF9gXEDmiG1YtMTILEiFIC_eEYeWNgNPUyXXjMr7Mrq9wmWbATrFXstSciCZyP6b_NrXLeldxeNdKGthweeT5stoLg9kQ7s00h_pXW3hf1Q2umlfZ8uu4n3U3LkSSR5q7FbZusMAR5h8Q6EICrz-PQDUvAZ_UGqZEhQkSfbBIT8o2koHZy5wcGIsLMfvm4GzP570OhT6XVg0UQtATtqQgv2Jrt1aVULJ36nq0hIN000EAQxvjNn5ZSxD7-vPZI4gR3_hswbSgkMTNUO3cLckTJcGQRaWB6urYYmtuYLEGQW079myabZzOvFrUE2a0-4lc5ly6zCxNU93-mYGQeSCe1-3G1qNJ63GMtiBDCmYoJU1d-h3jlWrUbS2VJEIFensZC0lLdoH4pTzmEOkP9BUBTnqJOEMtQTDp0eoj1Epr-gkXhI3ntSZ0LFCAEHJgvuXh0oiJHPqr4R23Lj-WYx8NuWkmJmRhWKsnQ3-dWSssKbcB_A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a4552f5c21f5-97382667','','','2025-02-06 06:23:43','2025-02-06 06:23:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42207',0,'cd-form-entry','',0),(42208,0,'2025-02-06 10:57:41','2025-02-06 10:57:41','{\"firstname\":\"tommy\",\"lastname\":\"fairweather\",\"email\":\"tommy.fairweather@hotmail.com\",\"contactnumber\":\"07549229727\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIufWMx_GuiwMV_KNQBh2nIyF3EAAYAiAAEgL8JfD_BwE\",\"recaptcha_token\":\"03AFcWeA4s96QiSeldrbhy2l5ojJbhPN4THe8JIBt0qEvr49fTfPYHbtiHYjYpEtasH3BHQHvKd1EWb5KQdtwo-_72odoHyLQIEWNQaEYo70f1yaMdaPAXCvasVM07cG49T0DJbyeLQEUmIfe50z475lpfp1zQtWMTg3UU_hStsPjl4plTiECmXKQjVqHbFuFFRE2wC_EeMmDBQOn0TRDwp6TQH9J42LCTPcSq_R4VUELRc1v5p8gJmJIOjTr4lif7FaQjt8N2AwpEV_-7m0At3uf_A8SK7F1kG2ZmyQV5CzG4pZ6rO604_kpucH3u0ctO8I4fWwsEAge0wNj_7Iwmqcelo_gtQvPVuYsiBb2pQBdLKqkmAboo8-9xdC3iUwGOe7pG_KBB34WF0l9w-wqFAEZZWwQVq9y7sWxMbNvbinBaOCBT9QoWLhb_5s_hc3aZFNXIrxCjsxXzIKhLSFTkpCO7TVL3BtlvVrrHcZa-ukfGfCQB59CQESby1E7o_WSHEYiBePWrRwNqlDaExXr93Pb7pI6Pxhmu3mIVz30IffVuv_855EBVR_YvpOrHIySGl7s86yQs00TromO3zyDYnkTA2TCnyg4lyIZVVSucFizagi7xJOvZ3wrCTZBUgXH4i2Rj7L-uQXAjFBvD1-hGznOgY5H7fnESJipYFQEv0pyW28OemBr2DpRrOQWD7XFRIqmnJAo3GfM3XtJMcgGipYKQj9Av_2R36Zt_8cIxynRVFRy5rDMuOomIg8RU7fQPoo5KjFK2jxxZ1A-t6xIqDidh6mS0A7sGPKQwPA5Qg_7x4aipMF0A7l5Q5NbSnMUX8USz9zq1IBT3xIBS0UPKepOP1TjyvQ2HEsciXhuASswLnSmJvjOSFGNhJ9O3du0g4M7IYIwbmgBXrH3wzED0zTTlEv6yE1brJ_RpvKlw2OtSwjfOHnvmawRisaUvZE3cLT8Km4YwC3Y-X1K7f3t75ARp_VngwQRLYlD-HQIsS33z_XLddb-prvbYD91ywykTxSHmr18qvTnt2s9Y1xP4fp6x_1Mqrr1pu8ZsOI9Pi8C40yveA_V1cxvqQMNT8dE6yAdZZI24bNiEYEI8JheD1UACFY6V_oLFPqcn8rN3iRCIXoXxp4BeFm4MTwNExmcAG_QqoGJ9H7NfcKPu8PoiL-K16FPP3TQb43NcUnpunMJsgcHWoLz8phlZotV12MkN-hZQOnXBwV_d810PFbiZ6YExJTx18aTaQgzce47sv1kEA96YcThO_VzD0nW61Lu8vr6JFmXYGY5RNTUQQo9NYgH7MLXECJq4JTgdnm5ZBNXinNA9LOslVGfJ1NF3DoMek0XqvdgC5f586k5hYUj3tP7RwEEr0f07J1DZnHNhDUYsCWPaVPj2AwrSDZZk8mFUGUVXcdas2WMqx2c0KOiv5z8UecWJ-VUsW2Mk-1mbzoGUWPp5nF47gg3UAqSAoPiLju-WKQ9uRt00SOISiaayU-v6UPuMN-2gKo8u5qh0IjL0uTAxg-s0fI_4JQtYPJTr5-LyWyJz6wiKSluXOtm3m81NR636acas_Iixqct0NOyfAFTyckgWnnV7Ks9_-IWWNzyqR5557wMZrVJeLm8J0EEh4cBqwlW9yYI3NldzNN9NKlNkMARoyVPPqpmwEbsVKVqEODncRarnbHH1NBBz_JcFO3RNWNAjJN13l1CibzIOc1CNqIvZcl5ZWl8Z2kN5Dc5WNnRyYQqdKq5VO7o82jUMo2auFZwj9jiu-0eckPcmF61X6HhCc65fnIevfsXsktDn-VoKDXOyuc0IySKnzBH_l49YWfUKHZ1BPA3QQfjnBLXzrXH0ml2SGf3Nsu5aqHERHbd-36DC_W6Eul6hXm86jesh9YnWWX4XIaffsuk9iNb3eP59uh7YjwD53eVpjRWNPrgUtnb1RUEKIKozSq8td6oCO-w824rlxH70BBOsKqcUoyf7OgNrJ85iiFiBTEyQDYeHdWTCwrgWFAou0R8fqv_oDNn-HA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a4958e17db97-52737154','','','2025-02-06 10:57:41','2025-02-06 10:57:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42208',0,'cd-form-entry','',0),(42209,0,'2025-02-06 14:25:25','2025-02-06 14:25:25','{\"firstname\":\"David\",\"lastname\":\"Flynn\",\"email\":\"daveflynn87@gmail.com\",\"contactnumber\":\"0852764819\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA5xBS59vt_srt3c4UiU5VtpSKdz6WRtFv8vXwkYc_2vISImRSoitnkRZxv_AwFoS6AODeLzoJ5p7Mzgahl2iy3lwZauSoFU4TXvS7qSrYMI2sq0XPPShpdyH38TWO22R6yeggQpvVDZwytaBM3NfKObOMUhJ_J2Jt8azFPYxyZVkbBf7DIEDnoZ9peowWA4L9H6lvyel4LDdohxxX7AHfWQ8BDY2W_C4z4ZLRfE_cWzKQ3cUTFblBfTGvd2x5w0UXshY4pydSoal4JZ_EQ5Yq6nsdT27DszEg95qMParA8FYdMnKCjxwfpD8YRMAfYL0P442Ao8kAQthRNqecvfspzniZ5duR7fU6vswJh3obrBqNJWhJJj_z81bvUypUS3AQ2ZsL2KFQCtLcWrNEIzzqi6XHxp9-fFzWxQLO_oww_5fYU5hxcFfLc5N3OBmshArdE8KnW7KAqrLFoBo3MtD7LSAqf2KwIuXOJABn2cb-DCSz0yzb0VzaX2NEobDOX1T1SlC_CbLEA788r5obM_AOt3Tu8u7aYSKiOsWWVCXPatiLD_X4ygZ57TNIt3fSa9Dtsg32P4TBQX8fVpq8QrclZ6hbPaX5ckZD93EnC8QbcSujp7jR4MrJscTACx94LegzURsf9JWhLls7z2Ho988XFAqWUt5IXeGuFDFS6J1tJ94XycFilVuK92XT3sCOCqHu9FSwTP4-9japoiVKk-_e-Wd3eWrrLIaExlzjHi6xzPlxErZguc-nGLUWLNKbre-723lIYiQDtNR37aKbFFuv03PxlsWO_kIcdmb8yIw1a9QjANDXo2et3ClYKMTkauzXcsCxZowbhLTE9wCR8hp-Gr4EANtvnwKNmcCLu1aWSuIutl7uoz11ctXaUQZONpfuQQ9vfEqn8YXjp7B1xaqpefQ8mIToAWwlXnC8LVZxwUDHylZyK3yuCCX2lVFlQxdsGDgjvOC0CWgSAsALLoXnbqNm5C8uAnhDXaCQ0W8xZOVdPAsBvpSttDvxIObB1SDXb7kLkWJy7OwkjUZ4xlk0VJ49JeSq_7XRMr7cdvbuaDvLJzpEv1XqrkAiDzNjXR28r9vu978H-P9PHuwU0zvRtmswoacaTgdFPWNwzLKmUrfcJ0VfeNkaTqSwsb6CULIPNi8shDVy9mXb-_U9rV4dwxR4HaJhNTE2JV5MTvSswDsH30TKveV4kC84omuJc6JOmS3fHUIszNbkSHLDxNMcOqBDxXGjxzr-OC7muu_ZFQKL6Q-xK_aaM3RHfoajL92U0pyhpyx1xmoeQ93PmHReAcqAt72gXnYDlUluLTCMH-RaqiYoEwjbcHmVchEM7j76PXgMLjx2OvjESpptEEoxd0FsJoZuBfcFv4UjEJ84CbLRb7or3rNYcmouZ6t1IO2g_eai2N3Gd9fcL23h7Tdkjq03bjeOM5PmnbidudbZAMBxPFBNpWnf0okygBs0apbe02RaSwC-5_P8KOaVxC1qDV2wcjAZ2kTy8UY8OkFC5IAUVGTyTjnPdwXop1TXHMukqwjzOHU7tO0uZc6Z4-8obar5Tf5yosiH86k08JjDKrBY2raAlREGyJC5gojug0K6tVAZLTry0IcChiY3pX1qgxH8ME74Q58ChOIHRn5B3KcgP2TA8p01m8xq8-z5w5UHjZFdrVKkk64hg0uGNdRlnNtZh6jIcd3GAn1DYs2vxH2f2bhbbTrYfOVz7MSHYUlyY7LkIivLUO6A40I7fke2gkBLzi5q8D5HkPkriUweAz8sVMrbh2ff0MUD_Wp-xgyXL3c-t847FPJN3Nv7FTF4BEFGFmhrB-bfDqrPbF4SgS-aNCEE28M7BgR1HRR7ZJlSAY4w5seuCN05OpkRzzx-mf6aPwnBxvIBMtIczaLp57DyZVYgPNy0U85nSEpwihrQwOHxRtRXS9tufBb8FbFnmY6oBnAd45xRfS0Z0Y9KmBf88_6-63LnidV4Zjpm42Oh9kssb7todbsSB-qI680ptpOBEJnJW2-EWYm-X9aTh1xJURDYQfqqx0f6zGjuo7c_A2kHtMiNXCYiNG3AZ2REEY7b1oMLu2Le3OFuZRWlowNNiU19I\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"6\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a4c6362d87b8-22728428','','','2025-02-06 14:25:25','2025-02-06 14:25:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42209',0,'cd-form-entry','',0),(42210,0,'2025-02-06 14:25:57','0000-00-00 00:00:00','{\"email\":\"daveflynn87@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"D9\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA7kq0_cK2f8P8wdL-wZ4oU3ypVa0ji9J-c6IOHL4MksehqTlN02tTUjfw35jFCdPORbw4tk8cLUZqvMviD2a8dh1viCdo3M4BL5DNBj-Uevio-1MNlCQ3QqCIBUhXXwKRcNPDeAXjZMYKmJXqEF9uy6oVkJVL8P04R-tfJ5qAjUNxKV4d_sIXn5EIMi2qMDsclB4zbNQkulDlW0bLpxGZNYxoDEdip5xqhz16VVj0ImJRSzzPT7M9mzx-zWoQO0wX1ruYZMfBjftXbpvDrIzzMBcsb16hf440buMb-vTDQHNuprMaa4_W-VRTG4eL6BmDqcumuBZccBH4K3bIdirckzFie1LpNcX76q5zLadx9w4qSpg98NLXWQvPnYLbEcOrDRUe8AVnbroSRo9rndsVPqVS8iefHWX-sqK1Xho7OE42MuSFKKp3Egu8VVWgC8RX8Wl1dVw6Lkm04MSTEtNH4bOGS3dYLvi-djt_Ew5OHnAJwC_tsoHeewe85e8LxPM3MW7RFPCgPzRShMcwYpjWzA4Xf3MXSQh8kwUjJ9m712hZO8FZU0erpZ5roI2WCzNdFy3Pje6pM3NwMeb3HXdw7wYXabYU5b11VrWjVSFF4rFCMEAVCKjfxTAd51zDZsNkVZpzpUrH2MC33JsRaFcBP4BozGMrGNn0EbrwJDCuL5N9P2HsARruw1yKON921hsGUz8IKZ44Yj1ITIiIurb7z0XM0SQ5fuM78K9BkXxss2wbqNK0ix4AkRHci2LDEPToKAEtxkvwa0wp_JrbDlsvbU_rccI-J2kuzfh_D2EWMCfWJtI4Wte9hs03vrQERlC9v-Y130sn4_fc65GBOEDviDffkiRddFZ8nfqJdEiKmfm9xsAbx5XWMXcdPl_iZzWVG7pUn1sU3hlaq67oTNYmtPIel5igvZiMUoeLSPH89h5aCg0n2qN7EG0RajwckXfSz9MdjWUfq078eT0JYy7OZrezpJpMYchEVRsCNUiYE1F3-GKPjbS01oHmrz94Kue3D9BlKUiGVjzx_xEXYDuAZlOPqqaScukPWK3KwElvieDU2SxBaH1h6Pg67ZEybRlDjHlOCtFwBYPZ5LcTaseFqrjVTWLcvlrL8QYlBvsjwcvINGsIhF9CeUucAk6UeqkcNlviX19l01c5nCivBOGF8o5RLPV2WnmA0BSoFRsFbgnjeZ2PxdXaypOtHznBBcF87JO751A4p-3F_wr_HjiW0OR5c3OLL3UbLmn1oQOYQOgy9F43eXfad18IynUC-oiDVrBUCgsufBYZyILwdFRA14BVgem4Y7NG6CgfLoyqDE-1IkD2kNzmu1Q1PUdryjqCVNlnid_dT9WgbHbkJspNDpOHdAamp0J6yadVfdP0685u7BqEc7j_FFSFxM9X0y_JbQ0__LMdQY-ZBMRArF-FHXq9vGeiCrZmxXEGO_7BkbXG23C3yvwaMJu92YC4f-KE7d_NdlGhrj-8ivphJQc7Erf9Yc2hZkHS9LpZHOAnWTW9VHS0dcN9prZxDEiXresbsmq5fuDu7Lz81pGxGRRWSpprrKIj0I6YmVd1nX4G30oZHadA19-N204RuBRNXbpcx7xIp9HBDIsdE-aP-jyMaPcHWkfthtwHXzjQd1iyrCySk0f60ogEBmxFXlPTOUEN-Bhc7NqBnCng19uUPU150lZJpSHise3IhR8PI2FBr3RZl9jSKWPwwwQEOENOW5RBD03A1o0dSpid_cB7AuNe-MzNeW4SIDu_UZsrrX0bogFXMKznj8eTy9pz4hSR7OuK7kDgKwWAbGY8xIh4Ezte51yu2L3ukPu9A2ALbUkw2om8IkUJJp7gQBC0NkTG2I9xhZdTHSKnKnxmTbFWD01nFNTSKIQ_-ByzP9Nse67fEO-qvn6jbc_mwtlPexTzbK0xQMuBpt2wD_khdFSMSj6CxeRw36vmtdD-a0MIyYAER2vuCDBEtN5KZGfg8SIr-pAESiAbatRxU4v6_DYHVbQ-DGEAIi86L3p7ffNNhjacEvbQHiKPSLQvJJd4yqf7FFZI9FXyP7G0L5k1yVmqFz9JxE8gPpQUTSRV7m5kS_xmXcCrsMUEVgX9gk3TnlhdYy01356gQ9\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67a4c675874f13-03941335','','','2025-02-06 14:25:57','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42210',0,'cd-form-entry','',0),(42211,0,'2025-02-06 14:44:01','2025-02-06 14:44:01','{\"firstname\":\"liam\",\"lastname\":\"gordon\",\"email\":\"liam_gordon1992@hotmail.com\",\"contactnumber\":\"07810445792\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vBfylcoYqaSPw1BQNmAwagk&amp;gclid=CjwKCAiA2JG9BhAuEiwAH_zf3ndQYWJRjLbnavqCkn9NcRNzCYT3qJwSyaPDBXcflz0qik759PZ3HhoC4GkQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6Co14QPS3TYlE7m41MgDmIpQAuoFtrVPpouLvCjOF95-abTPNGZuSQPc3Hm80h0Ipk35TWMqKqTMuHNtr3Sdo92r1qbIoIop_rrx50Lyya46MrNpwOYTQmAQOCeQDjpypFMqH54wng7WYXRcVQF_r2D7k40xtpa4bmZMSIUeKx81kSdt5WVSBbU-nX76gHFxuJ9dh9d3A4hmAR1AHavEjp7DoV-DKGkq_gPFhCh2abyGSfkV2HQm9_JOOLqX_qfVer5KVzP7t5IRy7CYoPjtO-Cfa0AZ_Gayr5WKTKGHV_zAxzEo8vs1uEpuLWDCx9PaI8BnzI4JrKM1vGRBpAFsaq5zEwnmGouiz6o12PF3O6gfYmaVjwxCNnIa0zIP7ojrDRb1tgEXlVpinWVD47Y46M9-cMPJ0KcYuL7dvrOj3nxmBpdh2dcSOs6DvjYvpcSJjgitBR8jPn4pLPqgeWz-LsAuzX-jwM0RhnoprWVQYQBCxqPXe0gFYB8FqnbUIy-xL3nGF-GZbqoLYEvSE9fWXuULkZcJZP73nkiMv_OXYmRHUyZJnce1ztcTu7CCsWsrmVnRdeVLAGwWckXzGFfWUhoMvIfMvRqJquQdpZmadJ6oTpi4ILP43V_MNqvPfTDWyaj2kUSIpDyaNxfwb3C78kke7nnIidvs5ZZxeRpB0XR9FriNIuwxnbbge05lX_LosDTZxf5iiYqjY4or--2a0Z5BJ9zBEZhRW3Nl76lfmanhdQh0Ma7c-E4eRL_sXFjVzVfoEF0pHjpvLl0Qrxai7SGK3upcRuBHpCwfiYl3VkqdLuwpRHJ4q4Fpsx38y5c66-TFzogWPlnHHpIXvRRQfrbu-BoH6AyL1508dmaNKqfY8lipGMj4QtfxxGU18mfwGa_isVODHuAPoQvfLxNg47JsPclDjrSc5-eb1-EkU2xEpbZSpDxNtoqKw6NOVii3ELNQjtEiJ2-QEgjZVcrrvPsKYXZHyWyp75GQR8HYbqaR9ib8x6mhAySQl6mQ97dzzbHwuw6S-xcQz3FWkD6XZ0fvcOhIcPPynadQOXh5z4gIbK4FOmzb8xRtceGhpI5vyLs7amTY6jQJ9DINvSLqGNbnuXS49c0m9SjEO6_gj7ZUyDjjSM0F8io2g3SeJFW4lIJ01YHFtHXbrmve0lfOfP2dWpmUl6PLKMvlVmHOZA9Frc7bg8dfN6wdo-GCW_x_M7ZyCHKZptdxoEzt14s3It-96Wj7SeqRXigqwuLIOscktYzx4BtKy9vPhUJjJ0zm9vPM8xytjBIMRFBjS-iuhMhp3do92csVn8-Jfi-wwBTCeED1OEaaS3PErIPSMfRDsR_ObdzapeNly7PxevKcNZtTxtjIIgs4S6H8LUesBiy8Tt_bKiOILZP22IFV9Td82QAbAEFR0Cn6rl-lS5FRE_zt4Bxo-iwihCg6VNJNiUehQJGnlNKFHN5d1X_J2ITYC0cTqWVvJNyl2xAJ6gUFv2_1ubr5wDfuS0xwK6RLKZMYpa7tlNXZeAbz9BZq-QAo_ka9gectHXVURaekOF9XL6I1l4foHd-0CCOMsWSAPs3riKu2Q4nBGYDSozxPBRz5Gp0cjozGdTMhM12p1tjWVJ6b8D_YSUptWI-Y__fsP57zsQgOaAf-D9nU0R3yHnl94nokqqR_vjY9Myg4r_IveWkoyiUebQl4Ap7AG2C9FXBR0UTKl5TdjtSlf8wjKEIJx5f3XfqOJXSqOLgzRqm4nDmNDxz_1qwzTE91dJMSdwWc_d13db5hvYdzk0R-KqfcWVEem2aAP-T8Gb7lGW_0OI5He4nrbJ0i6SNyjZDgHI4Aae5lW51K0BpU4T-gVduwzmZyiFs00-GePcDzmr2L8jM-Dhkngqgmj-8k4otNsmYDAGC8Opg8-fJromAEV9osDThIZtOI_eE1YI58qCrnba8bXXJEF00w26OxV8_jz-j7djpzj3trv18IknghqUoKV8ub7u6K4t8v5pXXDqop6Tfxk6JWKuSjOGRhP89Bt4U5RFvx39H-2PU_fG-GbMJQxJ0y2lTuW6zqdqhzvntsr9HbCG7mz1t2s1zxTcnCbQCa5CpXfeQsYOLfAkuvdHL5-MYtHd\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a4caa0ce2a73-45546695','','','2025-02-06 14:44:01','2025-02-06 14:44:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42211',0,'cd-form-entry','',0),(42212,0,'2025-02-06 15:44:41','2025-02-06 15:44:41','{\"firstname\":\"Aline\",\"lastname\":\"Duriaud\",\"email\":\"alineduriaud3@gmail.com\",\"contactnumber\":\"07740065288\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vBfylcoYqaSPw1BQNmAwagk&amp;gclid=CjwKCAiA2JG9BhAuEiwAH_zf3mFaT_S0zQMUOJvg3vwiPkmNRZz9dVT9pEzMCl_3Y3FZ9AN2YnGJpRoCebsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7Qyo11E3uhvJX8NUxNlwkoUXCWrrSzyS03IwG0HbHHjdDJkcIQ-nkgO6XWcRAIVLpbUFtbipu-sMZX48JOQXkGNaO2-35ENdNGCl5Y-hFQTcRNAP9uNrcLTEV4mMi1Zne-ejq9uwJrxK_5s8HMNqSH1aaIQU_R12okINHHiu9mxNrr63n1e_ud3xW_tTrk-9abcXlaW2hnszEDbKtwnLjffCqMdfxhWPaGEgh1x-1fFaBMFFtaXz8juwhpTyRWqpZEljPnpiGdIlfebPI5u62X3CjPuY7hNcHNFuwzvnIjemkgggP0jP_yUTR7k3yuAWEzhXU5cGQwuynBP7I0EgcGyIA1jHfYu0VK4X9poPJeQAWpMjfdWL8jx-uLEow_asGunVFDczK_p0cCyWDvpy0wewby3C0uT1zYB2oYjQJC130uAcOG5cyhMrwHMO6XdH7IoCLU4Hk7Y-0sCuiwctuf2csqJpVpjKWR6hVjb4Ch2n76CHY7fY4B7q6khaRAFLOxzLPpAxSyvMg3LKtVX1A1an8wlrHiAIPTKU7e6ERiTAi5jTbr0WC5dv01b9BTxhra6r7EMsdlnKCSN037n7D-uwOkxKGRmv4Vs4EA9bWn2Wk2v4J5d0OkDskKlFOSNE-84djrPNTJwu2_0JQH1v8njnvELfL4JKAu_bdlL_NhPFCReWb5bN8CTzpQbjoE41jT6xDuf_mcwx58KUZgbkXvb-JeLUgSjKHtcktCv-ZlOvGlM8AnSx_6X0ZrNQLnVx4tu3NYOvP9MgpFVA2DC40eUWMwx7BknJcrGVRWCfGm0NLsCbXuicluT2KE9CdGFsnFazSNQoVb9JtpIq9NP-43HdIHM0X1zm4-DOOcCj5DxYa9D8lw2cWSyd3w82z85ewuGGr4O8I3rwcGUXK98rlFgoyCKZlXXMT6tTJUhdBEnuAGH0G4gESUJJDu_PP4IBmjsgET7Bzio4lAu_SQ2gBZOV3hsIVJfyy113l925SXTpsS7XVOPLMQZ4fpZdd_kMXjxwfPIfsIoavC9PseVnqD4z-_5EOMKrkkOSHShB7jHqSXU5URxSYPVzZBH6-Yph3IDSetw4jq4YmC-xtdEFuI3_NTW04ES8jO0MKEQRZi86AiCylMnkOuYbvARtfyeU0LGF0ZXmPVoQT-O4b1WEUQ0-7um4r0RWz_DF71udFxxuhgX02Uh_tvEFhrx3RLwm36CnEwz-DO1cUbDnRdbXHcKavlrHpABNDaPzbUfsfKdRrRM2i9evnupTxhERrLF3_ZS4nsu3j-v56cRSwjkVUTsastUcMqHd83KrW1_qjUrH_71BiC-bjrzYh73H_CF-JZO7AZ8H2nxAAqXYy9kf3Uv_4f83jhxTkiWa5pfbpXkmriZpaB_mefsaD0A6cy2mCz74BtzBB4Wu84oxjqZe6rG3iAVQDu0dsajXc8OSGwWowuLSnjiP5J4pD-yIvCCKHwTFSRKelFHsdijHjpHQ3TkSagJ48piB1OlfHzlR0nwMDrXje6-v_AexKjuOWVtAw9QktsQpkai1jzrtT4Mw3eYz_eBkTgEYJt_V_z2mUqhUIr-bSKY4hGSUwvptjpjlUERt_x_p9OT-oBik0NEDpmUdKiBO2tWa0yOpfJlhNiW_DNzRInGuOn1MOO_nu4srmzv3YbE3OtwTmVyzBjLjXqoUGlAW2vODlVt3rDO6CR_WVbUWANCpTr-ULz9R--gMs37qIDpy1DAnLikA8AKyerTNcG844u8vUFMtqwxqlPrXUxgS0ktqc4qmqJOLLMtOrXv-fcRATRSjEMi5ImAaB05JdVPOn2XLjeuhP94liLn8bCYcIi_S1jxyNZgQ4mm89YzpY7nrl5Jf6xUMI_54HccdM4dy1gTFJ_u6DAOMH6V1qX8ITY97bdBNIG3i1Pnvt3xc8nrOozITHVdPNPLyjFfolW9mhzlI-G9lxj_79XG24Hn9m0AH9O_OliwzRfIfpFuhhiqUxPwfTraT_e3pmx53x6ros1dku-zMaGaxBBell-07P2CYBHxtGysluqsH6cGneovChC2os1ylcqi6YoZzZCXR5vccz5Q_x4_4HFWcdEvA3TJfLJUulMYZPkAXyqsTx0q8WuAUWOZ9waSkSeocegKw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a4d8dae3d0b3-83984081','','','2025-02-06 15:44:41','2025-02-06 15:44:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42212',0,'cd-form-entry','',0),(42213,0,'2025-02-06 15:46:16','0000-00-00 00:00:00','{\"email\":\"alineduriaud3@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"SE13 6DJ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vBfylcoYqaSPw1BQNmAwagk&amp;gclid=CjwKCAiA2JG9BhAuEiwAH_zf3mFaT_S0zQMUOJvg3vwiPkmNRZz9dVT9pEzMCl_3Y3FZ9AN2YnGJpRoCebsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6UDSl5DlcQKnK21Q-EHgz9dT-CodXLT5to1yqDZlqk-VEfdIaqbMupvXfjfTlYdkkapH_pUVoJ_qKohxeE2xGpt-UD-XaGHX6QyExyZnB6xYeO-FZ7DEyj0Yqq8MoLsnd6OBbtPExr5vXb9QgBly_mXLTuO6LN-nTjeSWUfSmzLCUSg5MqrayWGFbEPm85e8r1C-hjpuGcaqp8-e-YBBktTUR82uM9bjRfZwCLf4HHYEOLJatj8KArlIAj6FXtQRNltxghn-eedcTh67gAeSAblIkEp1PQq73WcLAXlR2S60Qvbnv5IV4PKle5OVkXA5SOjxQ93_CA0enYBiP-5ggEHR3Exts_gnFR8Evw2f9ow2YxvcKicllszky56WL2LovJAj7kv_IWPsSqBey2G2Q0mlQHwjy40bltG6D0DuNI9m2RTUPdjA32c7j-c9cUlqMx8n8nHD1ZFR4X3NxwWvAQBRdNpd80apcE4DWA3vCIT_7YiB2D2I3MWDcONeyyUAvdtSBNdVhECW4E_XtYCA1MNPjSkCpRj27b9SNsCZzfxEvs-YWFW9sxE8ZYKAbBmVLKgv7wD4SlJIXOHha1sampmnMYwKLcC-kSI2bSapZB5_OEMI9WnJsi0XRVpLj9n9FSKeS3lynISJMQiTBz8YHggdWozW-onMJerpjMQNY4Lqnc1LcCH6armeL27IxZZClKu3uLblh1L-_owlP9fwJq0svUB53PR2q1B93S2pEpiXWjZsB5Kkr4NdHYFZiaAx6ubWNX119IcYAEJZ1mTmNbGci7FwroDyMogkTctN6s8mHBRXr0IObClPXijoEZgLVpYC6o-33PB6HwfLOXpSWsA_QqcX6CgGmBdEUOLYgFIUKWY5jF1YQHvaigfrC6L94SzIl1qVI4_Tp0Tz6yIiU3Ll2nWE7jup_dGpaDUwlNjnSHNCiQuwSM6Y3Ta8SqLtAZZObsc_YgePhj259ZUG48JvlFEr8pI50ONn0MBwjtii9DMpgihU2N4wgFliwrlSqxnqHtVvfYU_UUzF-t7fTn2cn93AiuZqmelaBKtTEY0WwiJ6YNp_j3DcFQklcfnCT7fi1w_of92R2LcmD9j9sAV5iKuJ8Vih68a1mhC1Tw4mCdkcSTp_K70F3Drtihs4m1FET_1BY9e4jlG_bz15KVo2wKV_FtDs-DeIFfzPwjNKcfkA1Dsdn15rMhXy0u2unSHJJDPr2VpG4MKz3YirKLMoMel1-DK2WxVDGBjAoLf7cil_9BrN4qFbVWM4G2tFCwxTt7kvujiAejr9QWSAAvxCLfnC8yp_HdFRmK5Q0FNFjJQQokY9kX4eqwwplXITymqgaS8PDsLvrLgWnT9XPqqDfrX99coNMvkqUCqoynmvLwmsi_AFWq3MFTq2yfQmjliSZxGGJESc-7b916i_0hh-WMI-Dorp-sNwm5h2QCJFeIpiweFLY5pCLCZZcavLuMwDTRls80giOumWcxRYhkeZiNqApecZe3VOwulohse3MRkBBBItwoA_JKduJhiXfdTXbMRkS1BSUCsXV0iygwW5RJ2dqyQIosNUpzkqMR_AQCQKvoDkpZRIKGFpE0k1GkAbYTjb194-I-fGTlSvjxsXXc_G3pOvFEPLWjlr0I_JBOTDA2y5EGaxIQnwg-dAz3v1qno31TAZrL6aqunqZBe-KiDIfa6rkYBAP9Ma7n2A9hIz7CPR9OEVykKl9NDHB4ldOyKo_OjkvslhAw4FbelFXlu0G_Y1lWd-Rjn13ZYVsWeJrTCyRfpM7m4aOLkPm59AiPZ21vJ9A9tePELzB21othBLSNNEX7IecYJX34frMkdEz1km5s78-9_nP6551hDSE_dZJVHJE_dzEjl1TUfV0LZ5RilgA4zT01E-2I9-fgpHtBQImQkGe70_uyXcFLLGkfQNxZGqv6lGmHZe4spRHoFkNDzoQ4X7i4aK3u2jCOwPXUWzstZXiCxA9yldvPyg_hmD9Pwjep8PsAS7PUlu0_aIqCRmdNMLQXC1SnS5KMxnRlQ4p7AutL9VzcqjsyrWOFAArsifwE86CRyuPZ2PRviAqdzevMpGRqFw2d0h13hiBrWlInU-moD4T00KwwDBUcNrbvOXQBIYRS8QbU46Ohwg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67a4d9320e58e8-61995459','','','2025-02-06 15:46:16','2025-02-06 15:46:16','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42213',0,'cd-form-entry','',0),(42214,0,'2025-02-06 15:47:05','2025-02-06 15:47:05','{\"firstname\":\"Aline\",\"lastname\":\"Duriaud\",\"email\":\"alineduriaud3@gmail.com\",\"contactnumber\":\"07740065288\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vBfylcoYqaSPw1BQNmAwagk&amp;gclid=CjwKCAiA2JG9BhAuEiwAH_zf3mFaT_S0zQMUOJvg3vwiPkmNRZz9dVT9pEzMCl_3Y3FZ9AN2YnGJpRoCebsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5KAGnXefQHBuE6VgrZWCCS-PgpbI6U5J5O6bmwn4Sn-OnpXj-jKVXCXxoJc5eiH-DyyvqkKACXJH_I1006NcCL-2Dovm8WQNrh8eY0v62CaDpJpXkAyADfrU6fFPTfdO0hS7TyJAVmW6GiBj9FYYKgoA9byb7QaZLExaoqVqbCAVJVp5pI2wKkoTmp3kRlcl8yWxMAE0AGib96mi5-CyfQed6vpcmc_NbmX1YlPQvtMBOeyArEmYsWHGf9foaGAsE6sQlkE_Gl40uBSDERMXcks99joaScIIGO5EaTDhVL3ydqjlaYRuHJJdbtHOjCi3GrjfqS4y9gQLVPmv7EbQlO3Jj6Vexq7tLN3hJfCqxe_wlwgTgayTatTDcLwb1ByDc_op4mlRvthKTI-v3tSsN91VKfi0JxLEt_3tMcdBGa96wtBIwWuArfFq_g3-LAY3zVkQTkMhUDfeP01oZCoJs9QZWXp3-EeEn9_kw4bWuDaFwvxpaJkMuwCngRTjJSWsLTYZ5OQt4xdvECB7xPQIAtSgE86St6tF7YrwCk6oPaa9GRXHP9Zg-YFDzRbF_c2FTTvMFHZHl19RNI_LQqtHrMBEjZsKgZ15GoNR6KJms3pWYgWv5IZXM-NPgRBmlUkuO0KZat4nNYmt0dsSrVq9jUuijZ1_WRcZ-7Hlvgdbuu1hXtZZ4UgI3AeeXPaDPlNnskt_5CldOVgEzhDwC-H4To0_zULCdnzfpb8XvnhyNpptOfZX8FXgeA4-uGItafzmN9GFYXPRw7TK9b3dCUpSBtKDhP96dN7iLswvN8aEeh3FzUrTW6PFpN-qaAmbNDOlygSfUuLR_ntFVM6zqImyqQytObr7H3nGfGzjyO2qn6_VMKr-qZOJPZkVBrqX_JFpyjnO6SwqDhBkH8tnra3V7ioCk20uDagu_1c3R8pwcrrEIoPA5E9wdckamKHCmp9iJzSSQO8qoBV0oI3AVlRRHWEoCRs8zm0CNXq4RjMvewNHySQbf1_2TJncap_xbDIS9CiJ_OGmCF383JeG_7Z4tA95WPJ1rLqAlgBG7ZneRFujksHFourrOg6AtxBm4ZlunU4NFqLsx8zAK7CRg0p8jSsG5Z0h_zvaKCzErmoVj7pmLUAHgsTHMViX2lACm1icOq4C3NZr3pCj_VR14qnmrOKSVUWT7Al4rJAQkLDJq-coN4-DWOZ4Y_2Q2IE5_Qfx6USW3CxOo6DQy6AyQpjErNZ734aX3wC8c4I1vERtlw8IFgp1GkvrZb6h9EKxvQQP_O3hmQIZH9FmO8r-pM7077GCRrXaZN0H37fJMoQHwsp-pTjrHHTIaK8nWCjfaxZxmsReodPY1CMCovAF22EORKvdpHnpVavgXT1Gvz985vlywhxTwruwPRt4S5K0w5sueYG0s4HjzttQHqBfzD4CHLBUkjZbLbPCA6f_m9DmefjVEtU2dcIxUvShC0S40QWNpx-KAS9sKbalrvG9Hdq3hpoW-n_S-LwaXxZWY08lb5yOnA4gUh4tAkX54z4zIYkAvhzc9XPy7A29wn3lmm23HzySp0072weavbZ4PItkcUnMXf5R0zSOPfI5EwGgCZh3X-Qlkc1RPpafkNMWs2sK7VabH0-nl0yhwXPRYYiZECIfjjpAaIP9pZVTtAeuO61BJITn_xAmBFW7dcESQlC6lYh7Vz6LfvZPWGC1rlbS398H33aYjtLU6wqY2LwxuaL-2oXoopb1AmSK441BDYgWUdkyw4xlTVv9zKr3siM8Tp4HZf8D9e_61DOwgJ0ruSLDmDvMe37y15TW0byL4ge8rW5dsaXgNgNdQCbQsNe3R0M85vKE63H2WV7oA4jhLRT2TuAmqWx8yQujPm3K0Lh1aTDZAYmaID7vT7vgLET4n_Yb2HHPyddI64rbKcqspWnsxCET3HhwbmGJcacMQpU1Dwdg0Bb-RIZ2mI4Qg6z_AubWkslc_8IucJY8oos1N4SEg3AYK77skfqY-uwrxdS7rAAU1JA2mib1D19FXxZKdGpGfMowyxtWNwM8cR5Bj-UqMCSRIDRA075NZknfQJKJisIZ-TvpAEQJaGj5BeryCHSeAJsq7XTgqt8tO9AxcxyKZyUcNThLVwwrWxLZJv1u-9knB4WA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a4d96416fa40-52703468','','','2025-02-06 15:47:05','2025-02-06 15:47:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42214',0,'cd-form-entry','',0),(42215,0,'2025-02-06 15:49:20','2025-02-06 15:49:20','{\"firstname\":\"Alline\",\"lastname\":\"Duriaud\",\"email\":\"alineduriaud3@gmail.com\",\"contactnumber\":\"07740065288\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vBfylcoYqaSPw1BQNmAwagk&amp;gclid=CjwKCAiA2JG9BhAuEiwAH_zf3mFaT_S0zQMUOJvg3vwiPkmNRZz9dVT9pEzMCl_3Y3FZ9AN2YnGJpRoCebsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA43gaFIXbMp9qKnU8rgMEGQneDPoXZE6eIZlMY90wAoiVG2O93nSNPGpFsjMnlpWSLuA5HNWTay-kHM46rbBLK-am8R5wSksH2dVBHMBPUBrxVx6WcPIQOgEdP4ItaOOKucBIF9A8ZNCEHN-JfxO_daHkkI8pcAgmHfqV89vFiwBiWRx0ZArlBG--uYTWsRPUfIFMcaTznEz9fQVJZWJd_Aye4M8KOEx83C2K7utcKHsRPRSoOuF68PH5Iwv9xaJ9hLx1xSxRR_zkGW1MoSv2OOxb0MCWAwSFN2ESx6Xwz7OPc_pxuRu1tT4iedhp8NaxKAKVL2UKz4yETgwbl48kcUKFJSyJdw8NBSV7QJ0gbtEoQoIO9X_CttFgZ05ycaA84NjjvPUblj6FVwNALeOuUK8U_NAZge-h8TVNRyh9nauBBlIlQjxmEN58_4RxzCgCpjUSArORwdrMfynu2VIqLejz033sA7e-dvU_8ETKdoNs1qNx7mE_uxebPW-3YUzm1cLsNSlfJHKhEcyjhBPkvF-9EluyHfIYoY3-t4coZDPvn3Hsgou3uxRG3h6jbwAushWLbUQ824WxdaSZhbNENDy6_fmMheb7tdHmBVAXsh3Vurjg-qtKAPVdriObOcBGQ_iWMVYoNxezFcQloVDQebKHzMyGBwQc4-sHXbMJhCb5Og-Ju7RYvwqP42WbbI_26bi79RMyBfAeQAd6KbPtZ4PSuCfj--60SWUSEkKnX1tMHSWmhi6LpO6OvaXW2dKE9znUahsWIG_L2kwAT97-j1VNc03RHMlnO4pUwdJXiC11KRIpCLwQ1pqOX5O6u1AikDMQXvqF-mYGLsbpF1C-jPiatVU-wMTTLZ06K8oVWzVh7favv0EjHy_uWLo-gaywWNzTRUU5ZfKy9zP7kvIUsYq8rtPQhpTAACrHDFa_9EkWuHA5wUm4JitvEdgyvogwAtmV8RcPZO7IRD1VMPkAwAxlhUuwgaxyKahAQXPjwaekPQnGLBpVjfMt2dhvnVFDOD3CqRQmkbycLK7sVKXXcuMZ3HElyi904zNp4n4LjxjYb6zP7uXMIKzC8etX_5NHb8_51CZwLxJW1MLC8OLbOYr3bqjAZ_6_zwZ72E7X4OPWq0PXV0gm2KWT_ERdlnjIDUvO9Em7RvPW8dmpyimwL20AgWeK9Tpd5c-b6iLDFF9qPEXqQwN3wJnvlMJwNsvwSKnxxunPqGHwvN8kVfVom9ncuziRK7MLJ6TvoM33tZ0-pF4Ly7Ah6XpX1jZzN3IU0QLayjAKAkseEZE38D1IGMsntJ2cBDSUx5JMkxQNmfG8Xc8SYu9NnNl2gu1XwTV32RZG4PoPOWNRnIBYJtiGqVoPfIo4yywQJVEqLiuVjVW2NftRZMHAv76s27rqxTsJJoSlJ1vdncOZtrhUUnFF2qnNxAoiEnXDGArE4qNiu_evkxZ9BCFWn52KdpIN_4AEY1U-9juMbkA9QKzuDCOXSr4fx0c1ftnL3TcTCG-urFv4qer0Jy4iLeppdvTaYKipH_QnDIImakKc8wP26bQ5lIQndCC8MrTRYsiaBai7zY4h6lvpoubJoXmwS3kergz9m7ZUFbynuhOKkrZwVQXawuwRONeZlfKAPbKtGz9zmc6C8exYHciAEMrxs-d_N_1hTqKyfgOCmTv64RAK4_scQeAWGSJucychdQbLgRSvHAHLwblppJVRtRz-YyCKgk-s0AjUmiE-3Fdz2WLvHHa7X-Oojsjo4KQipM7soytxSBGaVZ0Wxcuyb_csfNC8eRsKlSt0nMvPIXNCYJDyMOH4hPGaSklo9qZ4s3T_JD-QFy-bw_ofgy7etxSPcTSsrBpTilKmq0uHSBZFbdaTq_eIMSHznOw0dtA3WUUpxxPPvTNfse9vFKRwVEmRVrs2ndefGtlGCsDmpvMxc0PPvzzAKC0XFTXSRMld5kaqxLCAjOmIfw1p9hjypSDzqrntwSOpNVcLBy5h9aAmn3tM_1LnaiVHu5HzKQn1ExmR_wVLnsNvxKZUYgddenjiOoS9AG_OpLwo7xxABEg8JuJvqa0yWXvWPKyObZs9mmexKDbYezpaliyIwDRAwrb8ZBLhYFP3Aocmbw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a4d9f1002e20-23581776','','','2025-02-06 15:49:20','2025-02-06 15:49:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42215',0,'cd-form-entry','',0),(42216,0,'2025-02-06 16:15:58','2025-02-06 16:15:58','{\"firstname\":\"Hannah\",\"lastname\":\"Melvin\",\"email\":\"hanneymelvin@gmail.com\",\"contactnumber\":\"07950287091\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vBfylcoYqaSPw1BQNmAwagk&amp;gclid=EAIaIQobChMI-oW5r7iviwMVsopQBh3wsSg1EAAYASAAEgJja_D_BwE\",\"recaptcha_token\":\"03AFcWeA4eF4aWUod8GKGs6e5Uvox22T1IAjHew91caxo1X58RiIF3R_grhqPuSjROqtk9j-OpjRc29CQE0_mxSGegLuI9sauxP4AyOYib4aiZsGAghh1XG8O0eyLZr49_oJ46h1u58rgncD9JgIsw1VWflW1nIzHZt0TE7MwGP3qIjvMLyQu0ghKbp8xVYUQQcRWYrb-6glpFfqv0H8GBfsmcj91GZcwtC8HXY_OJceUnSSfaIjqZtGXP6aVsBd3z7A1loxnAVPoqRCyvN2RHoDuxS0YXmXtvltADgH3MJdEpuH8vd38BMBURFZJ5VBynsdM9PXcn2EC1DOnzklDQokzYHcBHlIjGjh1e4_-loSeVC3u61B9iAXuVJwa_kOYCvfw5VUTZAPH5B2IEtry7OuOOSMWxtkQBxBvsi14hudyhrPJ3NYIcoru0ZZor0GgUSN8rjA9vvIpl1KwbO_DqYrcmD92uSYAcgFjwQceQdic8jVVWc8TBsDf47uMMXBTgisKhrpd0YtmET6d0ejKH1yQNcx_y8VIMr9FNygdZM4xfpkWrH03hnDy2-viUIPiVHOpnY8aKxtG4F4G182Lao98oXySUsFeNoPAzceRVuCfdIycUdGrPXWyZmJoE3yKKw4th7RDqVFD7I218hvMU-82kw2J3-LqRMvWcxbbPXwiNXKK8rwi9B_nOvJOjDfoy9gGYmVDv6u0g3dZqKD2_JDXGSkuTB5lxaAyccUr3v8f4LkvN_DxTWdv7AzB103oEtPtsVZiWlNBls87p-1DPaETUR7UnoilZ-7UXXikM2BRASRKDBWo0DNGhSROKYKij_bLBUe-7ozthCgth3NSWzg9NWN_GWXLMX24yB1CDxRConYq9_W95QrC21mJ3fHsVxPNRHYJQU2XSCqoddj8_OEuqzMQHOaAxP8w5Zn-Qgoo9Itv5XEiCbt3hkVwQRFS-1sUQxvpxe41-7HcR3LW7ktuYR2V2130Y0fCeNNKc1JdkqXe24cy8eAsmRRdmSCTFYqs9ZO_Hle8ijDupLHIhhM3mkSfzzE4U13K9KZMIS7adfXxUi9XuT300ij-zOnp-v2XhIEbHs8wTMgr9zztQOEVgzJ-9WEbbDZTaSexyaFyq2pClB-Q1c4eGvOr8fGhzf4DIbRbRKpaDcf6BZAUUvwD8-Ua5ClfpnDIJFH2k6Eedf1ibJqxM-91UQ1fOXLa_kVxL8ob-NDkBxU5K8Od1k2s3QnYnkPymktVsoQ59kIY5rJHzcIQP7H4tHWDr2lQNzBe6TkCB5yiPR64gtXXV1pNtBO5ptYE_U45VWI1KPnW-EpF1tdAyD2kPzAC1CYbX77tISj7FeJ61PoK7t0gBAmlOx-m0McwejJzflVrFKmJ_ylzHSSyqoJINbQXYJXkDqwDIhlJiiU1qQHt1jL8lh4dhu8aCWDJDyb8-4zA6yu0Vgka3Xlw1fgsBtmHXH38bkiYnQCBFgMrQpo5IsO7VJGsb3iG6h8hw-BVSzwkZ-IGEOrU5o6bqlT1_qlom9NUtT0gfXzVWvIakutiTLi6JK-AFL3OzMSwiMKS5BaTeLoYQfHu1KWgEq-aV8cbEV3ShEs2dFHsk2fHKjdcZjE5wzrw23gcRb081Od46v7tVLZbUGKtN7MdcKCZCOEoGSvjptwIMY76-DlWZ_I-YeXkdWnAJvLHVa4Y671DvSU8IsUj_RfYuI_w2JYfdxj9mTJtmvTpsdGoLBED7IacBU-xeiuQSN1qZ1y9zyYg218RhPmIkEjr-N1qTcvjg0WUIR1Q5TqZigKlUE4Vd2R35v4KoGsAKz-JPhtfJkMRrVtkng3IZXeiygrn5zhcJyc_ox9YC9LoORRgKjukSkFNvTD8p15H0EpveSz1yKhJ6NqT6TgNy8p1KeDEezQ9dNCbfDtwrn7tjspmKSiADqNasrlaKv8t7jGiTIobDPtT7iJL9ISjdtAV6wt7I5D2eg79LVub_eCQ8k8g4F2xvu8_69nsGoZLVd66QNtGRCDqPj_OVkwNu3dhIdjfiDibnt7jOyXBtZ_3jR44p33kJP5Y2ElxxfGSe5wHZxton6Pb3wlh_pT9kB62kY4UPu966cTAmW5COEuf6rQxaLN_kS4mYoke8Roa16LezCciRp5PRRwFp6Wu7ElXlzFI6J7tHDReaewqeiSPF3_tniy-Unmrv16b5oDjSKZBffqCoZKG2stycuhBB2656n_mzBXEAZPzsxS6B5hrVOD2Wm_hUL7RZrNmgqEn6x8Rpqnsa2ET2Rj1jOTgh2Ae8oAfb2WEjU8H_wawAwf4g_JShouEbrTQ1GFN8tNX-jwS9zpL0mBugmouPw5t60THzoEaIphQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a4dfc68f6b22-56155591','','','2025-02-06 16:15:58','2025-02-06 16:15:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42216',0,'cd-form-entry','',0),(42217,0,'2025-02-06 16:36:16','2025-02-06 16:36:16','{\"firstname\":\"Connor\",\"lastname\":\"Sinclair\",\"email\":\"csinclair09@live.co.uk\",\"contactnumber\":\"07720820435\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA2JG9BhAuEiwAH_zf3mUs2USUQauUbQoFbtmIY4ZzY6vGgeY2Smr6j0crHPQcaOjq9L_NlxoCulYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6Cp26terCs4-NrpfmHDtpQvg5SIPPhQuNlpllVwJync52LKCBU_GbBSLwh9OSAmYONBQLZVGDJCBmFq0WCmROLlyAx_zCtXW6tQko0jYrWI55mbC_LVVhc-Y-pA57nC5yuJuDH6hg0sjNXeg3q0CmQWVFjJwCzpAOYD38vylAGW43Ki_F4OtWcVWXoonR_O-q0kJrh1spOK9LrSAtvOZhMqPHQ5vwm4lkM99uICTqd5Dtb_FfdyaumEdHWCvwSYyN77N5R3zpg3IhZgR35Ztg6rvX_yHmnwSkKF9N3FHEMKdUKbnAa8ULWqsBXJrGd-hxvbc2uvfixNth3pPiS2il9wrs4mIvi2OxX6YZQt0JKpF2dx1HB5Qc-AF135KlNvd2FmMrghX5ql6Ge3Fu0nkfpfRWvQlVhQ1Fzjl3rW8k7QYAcMPEw7VHcIC9rkCSLyj5_e-_rfOKgHxPkQK0OcWieUxvTUYb1hRdf1fU--ZBw9eQhc1pMbT2E6_A_p7532gEJAOI08D_LlvpiY7uUmtpVzk-zjneGmKFv61fPuuq0SddylTWQ8L3vcuVvFqV7JV3hRWXmCi-Yf91Ho7OeSJL1OeI2FAtnXFc71jBCzxh0bCgUtmInCYaqe5PliiPc1SLmLKn6w7Cv5jXgyH4B95MyjmQSRpnNhz0tIZPFFXofdjO2nqndxEPyFPSc1WTFZKsb0k6XLpmWHcz020j-4QiKPiYsvYVNd7H46kdu-g2d-kxOyDNAzp-V3UaDLy_ofKm6IVXL7aMWmLHPGhwN-Geg8WOdujZXHJim5bsOy6zq4Ah34op3a5DYBe7PmV9a63AckeUB4tEN-xQ28cl9-t6yXJXgY7ho6K6dyT8XRLfNSlVV1fe3pOrrO3xqneTHwdHOLxiSwQM1Y_2LacAxUu4buB5TONh0nCfSprzlKnrIENvu_IwTyrTiHKa6lVKjLoQxS4j4mFaVfw4iklyeKAzf7eHwWQM-D7CR_B2gXYRPsvaI-7bnr6WT7Mcn3YD1Jj7RHArZplh825miNZI0EFbl0P3oRX-Pk2-PCO_tBf5ErCinK0-PWY-DWtZ6rTLiJ_u2zRfxFVeMaO1tfirvIiMqba7KXhd3Oy922X-Gfc79qgRITLayzzINXqSbFFPe7yqHOOfQkwNPKcryIVvTkC0UX6uX8YUNx1JKdYUaJzEzlp8V1SPRAUmMK82ycqprIbLDGasH_OL1kXqVRd1x_5EXGH38Ipyvur386MmAQTtTUxbbRMv8F0zKuIE7pC757MV189Vl9YOnqeiPqlcKn68f1nsHNp1PL9lfvV5feczbd48-23x0XCnHWebV9uYcWeOapeamumxP_gSH33G8W98Bxi_3zjNlBymO7WuAmR6Gscr2bTaCKZUnUFzg4KctbR1jGkCqfTB5OXTC1Gns8wIUK0bVTqPAoINdS9A1WSToUFnHEb5AYhv3Y5ldAMRz4lXa9dyzSi6uQRlu0s0zlhlPplpx48HqAS4iZ2jJ6rdo3JOaxrcg30Gjp8W-ZuZsczjLxm0NfuORIiYs-2gZCypsZII4PIeJb0OY-Sr3CZBBbjDVCrVJdj7xo6uVqemcSH1fbY2zOsHSaEoe-i0bFRSnYLwJtZ1qb46SMJn2wG9y5aaMghg7YPOU-GIMDO2NXQGGMnz4fOHgIKX9uSUeAr9N3sKg6_tmr4Qax7xG-OTGuLcInRk5zNQWl_WKdre5ClUyQt96JR_iDM-qxKV-jrgMScZfp2KLWwuB91sQ87IWPym04IcZQ3M9uNLEr_A4i6imeAIpGtvIJ5lgmYGkaDMmlbGxd9X0o60gVE0O-e7aDuWPykWm2wu5caFrTwSkXiTt3oksHx4aaR-AmLynU88f8YEndTRtEX6JqBkfORxp5vnmqLulIkdtbLsgFJ7JXk-LYhUFO3UR9PTQDbW5xU4YbnDjw7zNfMO1vtTfTEm1Kmrk2SF_HOUxWZo8LDuntIjF7kfKy9oIEN3DsgsHPGtg42DZi7zIs1i3arkEwmi-jvFM1-X7oC-aQJJiLMDHJUMkqhcbqw5fOiVhjGWQUE6AsRTDQKetV1vd7EFAJAQgZSLHVmrBctB_dU5SPp3SZ9xa7Wlb-3pOHcKZiludfWIRhmPjHW5Ty3_MJHBzIx4neIzdTj8-S5GifWFhXH2UDmqXUT1agUwKLmtCdi0SmLUerKDMV9pZEjIVjxUpp-uQnZog7VbojLjHeIaYdEN2H65VsUY6Ad1U_oG1zdyq0IEbaLbWfvTKrR2qS5J9umm6aq1RrakCM8vmfFXkEx2E2YxZP5SQMsMNhF5vBsmf264BmMpnyqflH9c4c8bLCLy-7HMy9PI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a4e4e50a5a63-03334847','','','2025-02-06 16:36:16','2025-02-06 16:36:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42217',0,'cd-form-entry','',0),(42218,0,'2025-02-06 16:37:11','2025-02-06 16:37:11','{\"email\":\"csinclair09@live.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"CT15 5LT\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA2JG9BhAuEiwAH_zf3mUs2USUQauUbQoFbtmIY4ZzY6vGgeY2Smr6j0crHPQcaOjq9L_NlxoCulYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6RyuFKeMIp0IQJODTNRaAP0arjBFvYawMuDruKkA5uwV3Prxi7NaIUjbmFVaHyanHkSGJF190OJJRoakY-3XNE4DHwa2DPiDXfnI4BmJt3MCG05sn3IT_GyhRWlhIRZSnterZUAfKnO8o5RuzvlKNYOQNFJOboIjzekerM6Ms3xUaj25cVdgttZf-pPezkkSxFEXQOBOCAuLntXJW1CPdilvADYDWOK-yG3_2fB3wN-gqy9W4YKbbiMRWxd5kPD79fhkyWU-OnWZWnKYQYP4e5w3f89FrnE9IRukfbGUTrSgN1vw_rgvcR_QM8NMH2W7qe3I01lUiA3WRW3BWeRWZ6JoFx6i8uDgXa_MD8jUPR6id5lyqVCOcFa3hfVqUjWHgM5RreAcPfxWMcD0MgvcFuWUjw4-BLTl2ppMaXqAzoDAd7hTc2Qv_yVnlwiSPnZOcXGKhylqi3FkP6fMUVHUqmxY0oe2yGUoyZOQbtErcSpfOGqpcueNLW8XME5kdJDBV-_UVL3flBx0-R5rxq0jpmtr74ZwlNjypC8XPGr5d7ovn8VgGuBWN5N39ReX1NuwMRx99SUbMUcq1cGpd91NwGgGzG4287vQWC3Pn_hqhIX1-2mvo7PK1BVIJibGeCXIwzL9DLSSosb0mihp5609VM4s6tH3WpLZ1ofmMGJujgeAIogKfsrxcIFBmKwnWX1bsiIlDjr7eH_6F-ngV9VSXUnnDb53Kg3gsBUJPXZ69CcPx3u_7yepaRZ-atGFlyx4dac00MkK5d0WsiTlP8N8QuwOLFb2EUBZ5bNV7xNDgWFfWoc3Tj8US_vmQcRNvDZH14I9-EeLlFG_ZfU0bC0MyLYa_Obv47EQg0dziHydaKvLb5f-T2T1KB67DxEHDY7dqyQ8AdbTf4_a3xcXFr8Pl7Jji_RVrEff4fzQ9zLJmN0KX6GGfXARsvn97N5uaC8bDjOY5VNHU5KFg-BqVoGoWuVIFKy39YsFax8-tlNMhYFz6v0EBA9GEVPxUTMzAdkAjf9795NFDAcKqeDeYMS4gJmFgF1TU5wqnD47IUhK2krNvK5wsaf47d50ElI8h8LIVWSvGemWpvQBS0ODoApv4HaQDddg17LPq0rtVSqH8nNJrtlrJDi1cqD9-zYq-JOit5SDLrQBUV1kq4u_Qr-quvXjwy0qtN1Yf4b09EGgqu9oj3IfugMngeGB29vyqq7OQJBnXtBMNzSqr98ImVZq4oju4LsSe0BX50DMO6qfWf3Mv7lTXOWFJiTSzlnl4jbFN-azmyrFHi878x0I7NbKK5WGOXqsazFWxKez6a3jcp0xuHrlLkni5hjzCNFg5Eg9eNHpaK3E0UfrU3Nt9Q_2Mh4hi9vMvCVV4lHwVck6BlCmEoZmoUhi1AKAFZHNYIlgXxTlo3CP4d_rFXJl2lW5sztSgpktX7rMdN3iRBz71rbHeKPPcw70ijROKN_KN595hLdpn_wOIuPPYZ0MfFMO7ahCi6F0T5_JMzciL50M46PvCk5q21Zua6r_6tS9NZijKs-zX5uyN0mcAnWHZoDOBpFHwJDVCUaxhNTcrL0_VNFajwDTRwt9YDMOuBWJK995nHVNAF0oHTGIR6dc6NzRiUhEXqJfIjf8VJF5rNv9fHey9A0R-dltnmj9TpNpCAqmTZDpePkf4HV7HbruI6YGk2-6WD-5Resatn44mNAwb-IOI009mQyvbhXTbLl8gtMOddlXsUrZNK_W8jWNyC9IG5XngKVCNbAKjByXJ-TdEBK6rzYTIqjbbZKeTtoLH5CIH0elRVvQF9n0fSE08seeNuvRoyMk3LjObMmhrTl1Tm7iDDSmLqi7sxrVd9OmSRFrRu6Xm0s9mVYTa3IhDtaMX_MU5XD0BVfF4K_kkfPaY-5ejp01j9WKnrjAz2GMAZOZAIhW7O6L4VteWlpWLPOaKle5bpDe7VsSS-dY5l2DhtbmUx2aFVMDIJfyxOdbSoCxATI6izntLXGeg1RY4fISUITvIzfB9L10RRl61u6YOjFr3nPddP_JIFyiVhAuQokHjjEmpVieAMDX8LlHLnZVWy_ELceTAJykZLSib90eP1m3OpItnuC6OolpPtgaEfCRrrJqlDJQSLwFraIWKeGAwNVt03W7EG_qTNJN2tSQ9DjR1eebaZkOSep5TgsqCxoJCLOMQFulXNEFe2kttwPmSeHaH3eDqltTUP0m_NIy5BXQuHBFg5Y61JQboxAnloqUV4zF1DwIH_hG0e5aHtPXVy9jCPsOQV_e5Kfetl7yBt2Mbly7M0jhts1zo-oLUoeu2_e6kBIojvBTYLNfiH4Xr_3eAdJMtnYfrEmPBLBzQvVYsyyeiBBZB_4Oeez1nN80GJdLoV\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a4e51e0a6866-77031447','','','2025-02-06 16:37:11','2025-02-06 16:37:11','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42218',0,'cd-form-entry','',0),(42219,0,'2025-02-06 17:21:54','2025-02-06 17:21:54','{\"firstname\":\"Aline\",\"lastname\":\"Duriaud\",\"email\":\"alineduriaud3@gmail.com\",\"contactnumber\":\"07740065288\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6-slN_Ochc0XKVthnoNS3AwQuUm912VlDN6B0BJz3AOHYgbFwA8CMdp3MBsw4CPjFlieluVanUSNp23ofIokBS2PNGqY9UqpCuKEMhUDvncK1uQP38tyXQXrGx4DyWTzUECeGiEN_c-xTivRTFrPhiPmCYQUF8tOf_mu7AWqkAriXUZzPKycoSC96Ryw-xOT1tQ2C_W_5ZTxkEVnRlWOsvH2DGV3jHwQQlzWF2tR8rCdmxi9E62rHMmZrA65My1bcWjyvMpLzh8EZPNY10bMZIa1QIFc2I8YxRfpbOm4uylQ2ZkJO98UQF8KkZmFG0w1uTXu9dqKXC2NZVTNUow3nGv1ssxvuqZK0Y8AiCOdFYTIVWs-vg05Vvf342IkFqMQXC-gbjxtRywaOAbzKL3aVohMc-l8D2tbhaxpwgy9yKZz33AFMxaWUs8AVncOMI5hyunNv03y77YG7TjLpM447rS1XRJhOvIuPPjLo899ZnCfZV32iSwVC2HpIpBQmHuuRdd8Q6SXMElBlqGjLNHBYwFGvM0GLBW1uJbzjPR3Kz9DB2OcScZoAZzxrtB6GzhzX8NPwBEOitI7BFnaeLecE1CCuLZA6JGuHsfeZnjVb_pEdZSmhbHFkawJFy8jN4vsRHHrL5AfRZAIn-xYRHMG9NoAMJFlvIuKTqtGUYHhLcAM-O33VIXrNuSujHJZXR9TmRLZ-P8HmtVTsqY3JvlsUs_zCBT1siyUoVxfILYd_FaypRU-bZj0ZDhHB7Mp6fcvZFkGbocF00PljP66movfW_KAjlZAiQFQHy5XV21bQkgO65Q-iEBvYh5CCyyHPsr62aGjWNq61VFQYk_Kk09XRO-17zgx6fKUE3zdHwpkdAw72FVSxq0hnpXguT83-xpu6ZUxgSD5WXIzf_xReWWu0vQLaZUHeR2pQyXHDes5zoxGP12yi87LUqyzfvUAye1omI2X_FXgO4r6piRAZv7Be2K32XiezqSSOKiyOu2yOCXJitpZbBMYc2VIyIHxs_TJDxVMVnL8_xyZm-8HwK15lIyAunPyNps4-YZeb7uBfUO8K3auDpzOeOurvjipqVg3tmm77mgLUy5yZhOXrm1HpA4rd2Ie0ZuoT2Von8NKn3z-o0VfCyewNuIUErMF8xbwTUQjgzZSO92pa5UQUGVfvYuu2x69MPd5zt5ORMxUWh216eFkxFdDYiLMey3NrJTmMrqLNbI_tC0EoMb6gYYD2_TOy3yMpbNTrRLyGJE6Rvk0AqmFqiel9iUQIPor0EPfGICgv3kCLuYdC2EFOv4DPvDDyRNNvz8P6en2Jb-6egTBtsI7agDN2WoHMJzME89iGsupdVrPHUG5QBMzWkoJ2mAHWGatz8A9KZmGc4VtbAdJd4iEEO8O-lx8-5lUx51nuJ6_TP52PmevQFKhHZsEuKqdFc0gTTesC8h25dvuye8w7rDPICXlp5gYWnbo13KnoVkXxYkXx1zf0qJfOBbFwsuGPCJ-s4pU-S5Y4gGe5GqVdcT4A7L1b8qN_rqkZmDc0D2c_-DUlvNfpJF9nWEthKg3LRN6X3dWSU8pmKzk22sODI0LrMH43IiFKffVTbWLhS9z2Mcw1erazlgQprSX4DL2VVDYBZ-d7uuqkxv7WZbP7ZudZdehVVDi7LQF3bP8heTCVn6pxXY8DlWfRwVRMZKez3C7EWR9VEzoIn-sMY51xN61l0SAMDk__AlMnn5FBvCT1-3hbkb8tshs2TG8DO2IDlkzBCjIjoccU4cNlRQss4mZ7xc6n7-1i0psp1rj2OGCWhMG8Cl-24WL5Q_kwhCLImhKHGQH41kiZsfBU6X8LNRimngBnOp7yQsAMdW2vZqjezUz86G1uQzw_zbz4BGUITZR1w9XEP3wHUpkAADu_2QqiKA2Irf6oC4lKrVXXiJry9MipBk-P2Qva2AKCqM9EFMkMEkVbl_16iLShFE0S5eoxk3xnvwfTONV3pG57JBEfArbk6QeFoVWfKS10yQ7IcpscYai0LGcJPWvkUsHI-jY2Q8uIhM6cpQd66eAiFtTIkiinPrDwePe056u4zOJGwpLnd4cTo5SZByA5jiKYMQOZsaKtw-Z6AgNE74JyKwcUlzDMKq9LCtGmQ0FWN6maTjYHn1nhahWQJdXWnZTfjr5Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a4ef9d1bead7-71135213','','','2025-02-06 17:21:54','2025-02-06 17:21:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42219',0,'cd-form-entry','',0),(42220,0,'2025-02-06 17:23:51','2025-02-06 17:23:51','{\"email\":\"alineduriaud3@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"SE13 6DJ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4CRSA262PYWQYOPRwDAiyW04eAVv92rTHGqrdzse8lRsUKY8ELpAJ73LVI6KXum7B790g3U50Iyzjo1ZfV_CoPrbSrHRXnSRTLtplZ5c0LQpEXAuRAtBsHMoaGrzWPhthNMP2WTbOUzGhKm42Zm5VIshYZvxl-cZBCAjuKcm2nYffalT4EBzdr0pFp4kyFb93Qrn5BxXu1bgMYpN6kjV_yk7VgfxmZcSya-d7Q-K0GX86hOjeamPiVXIr9M33TQ6VYQ_NfMgBXxjFyxDUF-O65AV9HssJwPPOny1ID1h3rtAnzayAXsrGF_IRdfY_qMVjBWx8wXvF-P18J4N3SGwz7ev00ZQ7ywevHmefSk8KwM5W6pvSutlaKI4-j1Z9LIw5cb8bhnwbUvnWdhAzdZ87SsQX9HGuTmGGQqbkx1FWmGFfG4y-Cp6sbugMkWU4VzizIeukGo-4FA8mV54HwCxTwRE-E_8NAhq_l1xO1K4x9O51ZNmsdgaSDTuKUDAfLn5lqOk1pyXXxUdMdDoyN3pLMJ5ssowj6Fk3p5Ift-Kfvt51plsnfoVSldIhDxvJRsLPmns0ddcvLKr1zRDJ2bPdZpp9gcOqGhu4EKvW944-1agzCfOqXehbSP_Jn5b6wU9-fD4DJD1WF1oMFlWPdWh9fSSnbJK0z-b2Jyeh995KnA05myIahitymsLzJUgYxgQawAAydh267k6MDDgQBBgZe519F1FaN5HczmodlD6XdraZL27rHs8tPdcr0vHKSY8QBv1QQq9-Hs3LvrYRPFSqb-SivbiGDIgTg5SxHhAgMWK7QJycZcydhOaGwpUc1lLAzFlzU7OX_jOQW8mm033oAKpnkqNR9QazuidlC9a9eNTy9yV7NjshNlMWVXx2-2PbVbd2ArHkQY-XnX8IS04m4_KboKZ4NEtJKFVLbI4GU1-oz9GXa-8YZdSwIK9Q9R7G4w3JTjC_A4tLxBZyi5CJxfruitd7VVZIRx0JROdlHSCYrw-RcrnQKqO9rSFRvHiIqcfyqXlJHRxIbftwoshTqC0teA96p7RZlJ7Fkn7JJ9DkXdAemAAXLjqLHTp8F0YDvM1xh_--2sqkXN4nhNdLUcnh2tIKOkkl3fkvB_0rYXYGdOGb-iWhZvZe4yE4Ssr6bW_qcLpJqyy825eUx4XVIkIMRDabwHwH3t7LspxNSfNb-dWdrPDbkisDf7jTNbzwvODYFDrGPJnsBxx7Isy0KG1KhciOehufaeFc5VMywIUNFWg5RwyhgSXZhuyRArTjg-EV5_iOTiUObHq0nIwxbzIuHBHNuoMpoo5U4zbWsAgO6iRtAnC7UXlOMQGyNYrbAHulplXacQ_jOvWBneRfKy7zTTehwi9u8-gSCxKjA_zuwJtfGb9b85-4KIPQ8m1SjudRzfwpDgRK1M_vEwM7T4Yjq6FiPYNMbg4efhPiBY3Cq2hPA6Xzjb3Jma_jpCcyucSZVK79ZwToJgBsksYyp67C-QwMokwGqrr3B4ZHsCLs1D_VjmY6hStz0_uIIFTp034tW7qTay1wzuGLPjaVVvh-Xx2-xBYAt8jF0YOFAynIADshrM7Mk_osv9b5UKmpaaSi3hQus6J-MXN83B1GOlJUb_4ZkALvkH3yTBj8F5EogE3GxcELRQzsg_RGGAlqarnhBz3KCBWuwFryMgzwdPQLnM-8QFlYatMOeEAASRJRIw0QCTdGKSzKwbkI72xRBTNgh6k9T_YVZGMW9eWT4dr3ErqnMlDLltRqglh6Z6w9lLRrD4mq28MYgMZgLyaH-9s_0MI1b38MF-6sZJlHJD_2NopV8M3Meqa6n-9KAmmXTfK2g2aio0iU8OokBSOTs3NeuYnkjFUh3IoKL7wJ8x-oXH4saifWV546jKoz1SAEg2f_epJBxHqi6RuKVLapJ0W2_mrH8x5vaKo_txqCnNS02mMoQBctxc6vNcMKK9AbRuI_B39tdMuXxLH0yNq-eZjOPZaMYAzdYzZBvAqh-Kwhuhd2S93pdf59HFzMp_RKHRm2l7X9wjM1zTEJLTnMBfeaXKiesjuTppfzH8_2IEKtue2PQ_cnEyyoQO2XAH81q4jBP8TLxZvtpppMLh2_lEAg6ys51w9yob6FC1jhSGXjZGz6AdhPBvM3zX5lvDTESRBU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a4f00c696e46-61563665','','','2025-02-06 17:23:51','2025-02-06 17:23:51','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42220',0,'cd-form-entry','',0),(42221,0,'2025-02-06 20:37:39','2025-02-06 20:37:39','{\"firstname\":\"Nathan\",\"lastname\":\"Bisnouth\",\"email\":\"nbisnouth@gmail.com\",\"contactnumber\":\"07814889818\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA2JG9BhAuEiwAH_zf3ubK5VNFVAi0efen6Hpyiu48kRbezPUwd0wjYr15dTnP8SHH7q8znRoCavoQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7bZl7Ix_W5bKlJk-zRcOg5yLXRdHJwiigz5CowSPhA5qUH0Alv1P8T5WdQPDWU8NV5YKq1dP75TmlRexnboRDs9PWdNAPMDMogRWokrVXUupf2OPoxoHHcDWgdNN7qKk38zWE8JW4bmZr9ncuZNjmdpk95CwJ08tdFiQhf6pPvYQwpxk1LWustPz8gP-5J6W7Dc5eDaTH0FU5ZoHN9gnjd6j3YeMpg18x4peW3qcnxw1ZaZYzVpyDS_tfM_rLUGlZ_mRG8yBF97_fZtKBNwx1Brp20a8JljDTaC2thwpl5aj5lPcXgLGLivoI_LmllIVItTlvonKhe7eu0XWQCPwrPuO2MoS_mSqDuVtC_Q3VG5olaM0X8IkW49UJfUkkGYJyL3n06RHrt8KEFndXGl-Zsvb7zCycK-t1V7GiWv35Tsns2yWENbs5Wz1Ppn3-oroP332rW3690xnUmk2vaKHnAVd7nVWMXDzRzydnWrAVrCqOKSTYnMFOO0z747o3rHHO1ZyUwuUddGEioSosl098tBGRSlfEnh-4j-FfkCwBJvtQw54Rli_XL-6q0VKWQoX_YZa0L7JqaJ_wOc1g3LrADNNpa3B9VINO8CyoA02HNoGBzRxXInNQffC5RLaPMObUnxUR49mI_yjfS0YQ2s_J7DECs9KAS-XDhKV5etJV8F6-K95EGgkYWDZfgfl9DcFVvXPjRohl0gihLZp7sNzUgEv2GEtfYQ_o7TTQSZFED2WhNVeY_4xND_U_-SlHPY0f1FdYZGlixGNKOT9EZzerWK4rBlAFrtb79jK6HZbG_qpgGe6sMb-9ffcDAcSlCKT0uzjEw5Or1ksC6vKDBL_k5mkKNiGgf8diHVlYhjU4PMkivnemWeTm5BMbkxwCY5u5pQmmtRD0eP00euV19Rd83HSzyyK56YkLbg-yUF6Xl-QQoe3JT4oMBJRBCzZA0ZtbrYvaZno4rFvbpucX2zsmXonr1iaaDLvziAJZl_aeI0GV5dh0XmWF_yjaqXav4OZLyKLy6bRF4-TYaVbq3x1TyjXXLpbYO1gmDITr3tXid_1u0hcIP63hdi2--sFBsgcxijqfdmzr1d5D9LUaXV8Grki7IEJMPXxYHp0Tig05D68y8kuRgkCpIK_SJ_qgH8ll4GH_9iDzUTRT63J5AovEdBMpZS5nPaT0vjhIHzS8lJKRPRYiv4vrBHSThw8Sc7yvhytrCxoZN1UYJXBOpQ9dUm-LIp_J7q73IKc0eFbp5HfJdUAaPBSZ3hCuP_ptjrzX2j8wJgjcH-ugWwkQi2xhBOGzVDVY2g_9sfXlePqO4Dog8R4RcMysRmp3VTAqs2YNkjNWiKbHoYWr3EOWgFk2E9C9ri61igFQ0yAIKSKxpFKHIuCKzFq-9t5EA4hz7bluU7796ug3sTZL6TcE-XC9VQJ3QYJIn6jjKX6Dki3WWQx4JgZgQTw54DWkMC9rlPmHSf_rrIRnFRGcrYlH6eSSsG437X_rso2wkSPWMW8t8tcfA-ROiVvclLMnul0tqPZkJuhXkn33q0CHN8w5lZwNO18iveW3E_YBqR-7vL3l6dSxdq3ePU58cL_CU0ok5H8a4CqbL-4mQgjyTGxQY6I_SCckWhLGeQcQuXPh8K-MnAT0GkS56YCL0Q10UGk6BXSg0qHVJk0RLJdjOpTZVb1qQrYp3L_i60ONd68ozvJnYZgTShrz9kA0nUC15he6rnfIbV-5gXDdz4DRGctCXT4y86v0upzLmsY4Vy8yjEvqHAt4pYkCqVM1X14Y2qCjwSK9Ju8NW_-MCtBbQFTrpFTknRb3FV6ew9fE9LRD_grCweKjgxj3iS6OByxx39OmOoXWWmxtRcEdz80_3h4Bt11WvviSx5BIBSbf-hK7y5dgmCOCyvKLQN-biT5QeEHaOaHI6oqlM9dsc3nkvRWwI-DsSY91fv7_koiwNbZOXL4bGey7bbLYip4JbyYpMShVRBAn1XYn8Wu8T9rHl1MOq80s4jfjP8YIqOSgRo_GwWW_eNw3m0TJpQZ3YsB82CJ50_s71LeSMdoCZiAU_FTaYjPykCzDYU5Z_RpG8u72X00U2BVuMwJTfzDBD-UN7Koa7fF1Ql5iBEoHVexDFv1r9EAJQ3exfu3L8CuD9CPcHvNxjLxl7miI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a51d80e15c48-71505589','','','2025-02-06 20:37:39','2025-02-06 20:37:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42221',0,'cd-form-entry','',0),(42222,0,'2025-02-06 20:38:47','2025-02-06 20:38:47','{\"firstname\":\"Nathan\",\"lastname\":\"Bisnouth\",\"email\":\"nbisnouth@gmail.com\",\"contactnumber\":\"07814889818\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA2JG9BhAuEiwAH_zf3ubK5VNFVAi0efen6Hpyiu48kRbezPUwd0wjYr15dTnP8SHH7q8znRoCavoQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6pJiCTEk99wH5qNadotbg7IaQUKz86KSJnBSW3hBs-DlyOq0o4-TQcyQv_D0JI7i6YCZDKwnNTHBXWNTQPDXSarlWHbK9S4ooSNmsnVPIfB_qV2Tylh7EnmI1OM1ksWUdCAIhnQA8xVTEohAKa8FRDGXk1fv6ewmagafVIW1uYh0HtI31V0fx-ArCdY7SO-J9_XmcAOCsL3I4ErhtDAuvVb6t3vMIl2VPjdMtWbUH9Bo732X1ceNdcb-53o3am-14oZXtPXIKaDddDuFUKT-lRJP5uZX5VRM2V4rku_KJQacTZmnFxIfWgm1BgCVhEeq7vf_MkxJPplqCp9s0O5dmAjUwhK4NnXKC6j_xm8Y3srYov6n3cDDA07_xx_UNwGGDCySRrohs6LoWq0pGpfWL5XhTnBF42zX2EnaX9gwxawjTJn_eZ8L86Po_6hvz6Uc9y5qY2My6ESQDGTWIWI1GbtW3wnKOkO3olJdunpliYxJNewtdhfwmQ2wcUXIVxWyPSNeSldQUfTmHCaxu1nwwE591FF4-GJyh63jdZgnBIIr_Pz4jTlH2jI3Krep4rQdWLs8mCtohM1m8LSrPGL4C9eXfZORnTdj9Sdsbrn0SfBiMSIMIIFqajLiYZP5hjrCNG3TD1o1KWD7LyLtYzgA99nzwT3IIe27eiidWwErBByaXDHwp37ulpbQufSJbOgG1uWrJxqaQHH_xVPHpqG6jzL3uXtzcdlfk9zSWnswicxSBpH2x546-7vv6NqT5uKjuNoWRB1zVYLuttDSjtBVwgu2Z4wcTpnIjTPdhQ2QBhWRAvMS3u9KP8okVkkFE0UP2ysVvY3M59FL1SGEJUr0MrjYMGj7o8QDq2QxzNV18nDZFXHmGW_EWztADU2SlrueC4X6_f9FD28aSxYy3dIJffKBNSX05QmCaMtOnjr4a_I8G5oxsdtrncXEQX27uSFQO4onvvUgFtDjJPDuBDE99_Z5DB_w5uo1CjYa_xarXgOhTWWGeEra9bB868XAm5TB_OwYsy6F15zuAxhddbm6YEFqNFtzAubCJDaZAwWI3zSuoPJXBqTi-z2MorShalfzb6ex-d1QtrSpjO1ZbdS1TEwk9CSyhCKcFLkyHpBT71AQX4pUch2lhLOFjFMz711VJreyQaEUgAmKAxoA9qwIRA27ft7a8zXFPW06jDpTJpdVez5ZAMVXMPuvxnMyoXkeHiOM_3GRrpYXH4lWsP-1tSs_ctyBdASAkbwAMMEL_ueTMJyxy9KPDTR3V_SfwNYu7As7sY-cv8DSFmvX-U0vHRUhWapaPrI6pWW-L62rHscuqj1HI-3yyJm6kf1okGEqFxbUKgaCVis6IAYjsFYRA3KyamXsh5rC5-P8EawHEa5FWvnQUpFpeVDuCbhxy2esGN8RjcNj8-sAQ12MziQpbVG5vqRtflQuyoZOA3Oykcuee96l877EAz05zh3nftVKuoNqxJXJQmSwbXd04dzaxE7FT3W-y8iX7vMJvk35UphtpdXQPpD9XYu5i7aQPwd0BW6lcTifTYu_bZwNQpbJoiJxkDPBkpEseWKt_YjdxUX7jp86gY-4P9VN1IN8sFrkj3JTWVwO23a-Uo2-Rz2Qy_ewwHjya4ayIKBn1oiiWh0CTd9QMi0Ik7KKMRNBTRxHXGpuiivucavlXloV-ZOZl22YNgVjYP4ZPp7A16O_K8TtgUG86euvYpNSN_72BMXr-O2tNkZ2Myb0jGdXTm-EBpJ1UZfO35fkVIPVv6O4m8NiOVTlCRwUdaj_xyHfkjVYVQIVcUFviJZDSlQFHMhVKA1F9uTJDxLgggW8jaG5wqqaFpWQL897RSL7PsKV9m7_hKCte97dHUJTt1k_FEmni4-ycNY6QjMEdL-8TPoLFNDDnq5KMwDi5nBOPpGHh8vocZB5bwTupvDg46LJr68hbKxRy5EXfiSRllPLvezwtU4z8LSwjycXJeiOC19is8U8hKjdvT0A-345hf_oYzzjL8RxUgOuWsjtQ79cAElI__c2z_CFkjcdB-X2T1qv4Qs-ZzIHuktpCsjOJ7A5Hnc6WkhIqPOZ-8HuKvctHeVhMUruqGYsTKqPPUhxwDQa4u0XgXCheG6UuaVsXZhI4lo5sAebU1BBJqmKevFvpX9W1kaDTqpd0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a51dcb083689-92883681','','','2025-02-06 20:38:47','2025-02-06 20:38:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42222',0,'cd-form-entry','',0),(42223,0,'2025-02-06 23:15:33','2025-02-06 23:15:33','{\"firstname\":\"Aline\",\"lastname\":\"Duriaud\",\"email\":\"alineduriaud3@gmail.com\",\"contactnumber\":\"077490065288\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA61_bt40fzSKu2ZIQGhzAv0ADYG8E7PqySTfja8WPJVqNCxMujgo5Zehe-NU21IhOMMUolJMCLEwtcOZtCaPiHtE4V5q0e9q294oPwE_-YLyddr0lA0YGFIOZIwxRkr-wlzjJE3inIhKJyMzDKvalyGeOFq9eTpvaN7gUxdDhurZ3toEzgSSZbxbH6GOlFu1dI1spcBh6i8gIWdxXd_27wqrMG_HsCkxPpBCZirlOjcgcPO4ivYTuaVt7xajQ9ZfrtF0GD_tX1Gbv7KzmVGG-k3nY4Mu64on8U8tjRhz3jh_mWfDmKJm4eL_1wSo5Xjl6ouH9C1aFm1JZaWuyzuYFyPl6ZNJVHILiaRO0w-iModcS8izQF2THEoJGctElGCpLVc-m6S5u5ju4KOMR-3ZICQAXkB0I_6Ha-z65OKAp8kgHsNnYlKghLnLFDqQC9SihK4yuL5h1d797i5uuGLT0OpdH2tO5hsx4_GK-8Ca-euUDXJCpqJxp6kKvUjmVfFy4UmmEFSUU42PLWLDPbZbLzH1Lt4c8-RFs5hlaHyIWlV4feF5neeJ2kjQWRv2XNpVREtO27sb28_BM0tdHSyKuBbDOKjlko7Ze8vNUVdo36rxvzNsRKZs5vdZjoV33h_EFNlVtj34N8_2gPR3cL2VSd0f2HPqk_OuCJAaPdMmrADYxjZpAP7j7riym5MkDsZ2cX22YpOER75r7JZfGmv-Vbm_vMqmD0zmQC8Ni54sma5dUqZq6dNq4PlJxMLSTBy1WQk7mhjmLm_H0dG21Ne9rRqgmdFrXA1ohHrD37t46S04yoqRzrh_rawKnfz8IEziSmXEhWXozniYWuM06oNxwW9ZQw9PDYL822VWcnrV-yGbs8yPLFztfTY0_jSVN5g2iInLax7rGog3i1dOnjTRnIaTgYoSNVecEioX7HW0Ly-W2TlkXGUTv6jeW7UXNHVgGPrzqzpxEm4toqeiRcdzQ5PEYvw-28yCJEM_y-7ROAjaEDdp2sb4-MQaHJ_oeK_9mNbZfrA1ZbtxuOfzt-SZxs8lQVYvBRsNz53WhsXapWmyhoChxH6Ut0Z_crPYGswNdnI-9zD1Ha6MwCg91zrzxiTdQtNlgmYoWDga3EUP-DwoA08iwpKo-qDVHP4bOirxzNkjNlnGCV_gltjLFfh4LZR1DgfYQztaatRUrP1D9Uv_Ty91aovKv2h7cQf-6qqIekU6LySwk5QI8LB2ssmakfrOev8jgpDZlIKVgUwEvdC_L7BOphVWnBVnRzpyI1MdolL1GhMBgJUIVFl75MV_eYfQNDoZyYgU_DIywMtHtag0fBy9hicGLZJ9t8kHSQfbXtcxhYM76_AG9KwNstM6Kpp4WYaoEa-TqDoSAxpPCSGKwKkZXXch4Top9CmWyQMRSovu4S7Lc8XB3torpehB4RqHvnOLM75acZeYocNPQdyxghC4i0TprVQnnkZ1flk9sTe4WtZrw0gNuouxQfiKjGWhOpJ9Hu7GObSQ5UelNPjHUeetP6hlrYwCU8ZWJRVZzBBPHRjO72KFGzlrs9OV4srgjBC-RIp_4ExSFpoAFNW3Yx-BLywPuG06e2qWAQb5DrlKIqlEmwDdJDK0_UXC_gANdu2PRQFCm2SvCyNvoDOFpZ1Kp62D0o4aRvK3G6l9We7gUPMjUs8C0YIUQRkz8F-0L6w9QnF2ZVNfsE6K1F7vMqiW_8mhMzxcCQjw9wi3yG6XM_VGz1KbPUuMwChaRBiIOZO8mhbwkJDX-j7HzZk1TojuNMQg7n4OygbHYhkslw6b8vH4_is8Jjry5u-Wyxa22ubRgSSJa6hyuPC4soaxSNAD7o3swumwWt2bkMpvHQcTcQpsYAd2WaWQAW53e4K4i8nyKt2DlreZCnt63jnkf3EJsyTnB5uKvh8R93-olvRKgJL9NOPFDW1wKQJ2zJVhJxttVazPlnTbIMTSdPk-H066Pa9lc8TMcXIK6PGNZ9SCd85HkWcWDSABruzQWB3W6OEcdCOgF-PhM8CehEZxLOmz6BeCuqOJPg3LChe7NGfSFflR_DzhL4jh8hYZ4eAbWFkzR9GysJn6sCzw85yOQ_52kNxewlZoH_R5pq3Dj6uxKoa6gQKE_5rOp84YHhD7cQgC_h7tf5ZiiN9VUgCJZAXOkZ-wgqrkXjub36iM6_OzI9DVi0qNEB-33NkTFxSC1hmdefwM2D4zMEuWmxx4bfssIwSxXPAD6YcPbIrGtwoYLgkn4vvOCC0HhNpPpoi0JX8X2CeAZssZRLS7tyMbn-DOFCLluazZAgs5_dwJQGBou86Ck4eb0X8w4HSbt5NDTTYazBlGfSpL8Q85fwRg3ETEstd9PozEaifBX2ZDH9iKyoi1AcBL14wJ0ccQOqfX9bruQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a5427fc88af1-54333497','','','2025-02-06 23:15:33','2025-02-06 23:15:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42223',0,'cd-form-entry','',0),(42224,0,'2025-02-08 09:14:33','2025-02-08 09:14:33','{\"firstname\":\"Becky\",\"lastname\":\"Arnold\",\"email\":\"beckyarnold71@gmail.com\",\"contactnumber\":\"07840331932\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5TrROoXNrSEQwq381M658TVXWlEwRySPaScD8AC3UrhendwpeyVB1a_qltibCvGDYq7fNgQjFX90fs4_59UX4JFdWAjX68JVHu5XlJtqfQ3CRce0hJqOsqUs9jZKvWxwGoFQolVOwhNODuw9hVlNQXLf_ISnGcE3C80RLA0OK9XsQjGx5uSvJ9zHs8VqkLsRhuKA86gcSpe24gHUtkWKM5FeZAUbx0XSwiH4C97LkgZsh2DG_tYyPwABsRKf9A7ABWxJJmW661Pus1wYZwLtSyhFRjnnyCcros1BiDdxjcULVBxiiojh1xfHDCxOloZbPmQXtD32QBLvvRcqwo-9jHM4MNhv-EnQ6HVLTMQZmUPyI4lyuOrnhSrnFMlKfC4N--WT3Ic-N7DiBl0Imw44aA4B6WU4E9pmXPYwC807ws-tZcGHU5NMPGSemasXK98oQSxmz1BXOzvuMS9WqtVELZgGWNor-l1bVSvygUWFxD1EbYWN6LOJbKa87yifTGO1SKaAkU98rGX7EYw3F-gL-pnZ2WXl503H75MN9G9ZCjF2wuyuq4rx5Q0B4x2pC1lY-m8nGrzwcczcG7R40mvL2HoNB-kN3tu1laDftEQpx4l3a-Ts4ZO2QzOhDyvlSd80kazT2lG_xld5sSfBzKPc1Gw3vdENALaGAIvqzqCScQgXqg8925rKPdTISLG-I4vP1zvfn6StybuMlFr2HJZ4AAK83bIdTNYe_sVEsnjW-mGwexcL3LkFr7WqnIGTzaTX1dXMUiapWKcpHyu1PAWfGEtdHgo1tHuYioaSvDz1u3LxHlqG_iZ-BCKxHTmaRPh_f-husf9ECmt_T3rNh2vSMS8mIdIN5HRMiB-MN8xngASEw7nu3iJMA_LCMXD55cXyeKjPpgecuA1OiN_iise_ueq8hvdxb6YXF34nWMw32EeOGbB12jjPaZKWvlPOElECcOeyVk_uWLgIUYstbUXKkm7G6clQPczwqhg5xsqH9Er-uk8XRFVv40LyCyNBq8HmXFziPND0owwANlIQ1mooKyh38vySKL3Xuxi-u_C68y0jDQJzBgtpir7iqxNDAawRvkbtqScyLdD1TSHHEzctwt_0Dhi61vfVuMg6xYe0KA8KHKbXVT91SGjcctr4KG1pu3hHhgfYvLEyQIDd_TgEnbax9Kp8NKUHPMjndave-XSbEIt2ECe4lKLJf6xgBw4yUiWXL3WT8JfBE6is-Q0xC6FB5RuPhtKEyG2AoLEOh_ZV8-6Mq_Foc1NLRwUXhCpTK1uzNwvG0v83bm68uKp7T9QPO4tct2BqurdwRH0-0sZXhAfcUk_zD8PwKLxD9AuJUabJ2oMzLeEkA3SoO0GiBkgucO0YdqJtz5vb6bSeAo0wUGl4-FBUJnbNYrESnUEJMv5_VcvaY_u8EL817Hj20cCMXnmt0uEawfnAJHQn55OVN5NMv6uTo4izz2W_mXtjyklr5XZkhy8EdjJiZyuFZ6deQGSH2-sEzfwlgf0tERBskIkj1yrN1EQ2rwUZ-iD2pQjXd0jwN5z15UDiLwamSomLgtx5N91s5gndQSB422civIaLVkNrVgWOo-3DYTB_88fcZxkOPPfX2Kg5dEtFDUuWmf5XkvK3KeNNk-qguX6kTqb98S3EzbC4Lf4gwH0WnmSlqMmykbS6qt6bWcYhLR_YsqIE2ZaFcjfE4qZtG4YZXSPxpLM_DlNjVSkf1gBrHs8vswruIVV2G62QhaeJSzQzQtSJ7bFcgppyneaSzv_v4uoeh1T2U4PoebFCziRq0-6dtVmIT6zEZ0DBgG8nFqIrJl0PNzKsVF2Uj28Lejk7zbvBENze0K3jv4NZz4PT5Jn5r_qWgtaTRfcxtzNicBrJuS0arsy8-xHXFusZMEisn96GAzMwdLFrYg47H3wYgGxDGkxKzl4WMzg2lgVKGDCDhOYUj-_hW5RKAC04kHfuk6klJl_u29QZxMyN4UXAEM-0GEzBmodVwnmkHAuXJ5XfPhBaMLccIXSDP1FwIvo8fXSBO4jrz7RtECepiT3QpK5Gc1vvsdBWga97b6hpiP3p6YPsa6IXWnkUFcB4Sl3oESxcaXHVUhgI1bytpqRM2a2zDeq_JVmFy08zEq_sxCpAlH_GdzsITv9FcyPYbr57y9IMY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a7206a2d4f37-49489372','','','2025-02-08 09:14:33','2025-02-08 09:14:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42224',0,'cd-form-entry','',0),(42225,0,'2025-02-08 13:28:39','0000-00-00 00:00:00','{\"firstname\":\"Donna-Marie\",\"lastname\":\"Wishart\",\"email\":\"donnamariewishart@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAnpy9BhAkEiwA-P8N4i2EGGFj_YCg8s9aOkGu6IOWX8vpe4lAvMzxEFQj4uMJzWy-ZrXPqRoCoQ0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5pOYw-trzxj2aDjcA3_wIzoOhm7E31q5AJDpOD9qo2cGSDK009iUUQh9Nf9EBSe1joaNfzfA3JeJ13ckldR5DzkZecixJsH-DiSOXUxBTJvuXeRqPvStII7hrXbs_5UeJlMxXVkVHPLh6xTtvWEduoa1yRtaC5NDN5Fev5Mw1Z_xs8JVz5BZ_LakAUl-w5-10iucqhgOrffGluDRHZlrpn80-HlCORcuppWxlOFpt1a-jfcytnml7e4AJNxhcofFVmiMgZm6s8ndauzVAgRgR2IvF6U0dUhrQ3I1u0n45rKRg3tYPdmECrg-yKpWg73t78VUZ1nddCEMX3z4Vl3BDuqfebY2eQi4VP4dCW3ZgyHPpsPHuupygEd-9rBy0l9sx5kFHZeq2zRD3Ztf1e9nO2xziU4FGSGj03g2GjPNH1kpQo51ucLMtJcx8eV7suR3s7fmIUCSdIkRWUQPgydC-G7Wze-HfTcgOYT8H_s9P6JNIG7PSAzivvH3bRyzkJgkRLCOHO-7SPMw8IiXJ79ZFF_ZLhJAIveCaGR4C3ueampDmDAclyufRQ_-X0FEDuSk8P_dchLw9eRKLy5npa4HCIcNGkxnOi_CDfANoBwr3FwpZkNmDLHPUhWi3s1N6D3YoArh7XxW9HS8yG2NtHIgJ7Ti1s4bUzmgF7Jy4Mh7Wc_3xFKPEqne6rMmKqEo9VwsPVjBBpk74LVD244EVuuXA0Gco4iHu--NwXAbiorRS22gOTQbEYZxjMDSKcIxxyNsDov6xGMly6Lt3-flZB959rxB_68z1VO-eEHwz45cXjqDSdJLoulzCDp2tM0yKKftU7IXEp8O-85f4CTXF0WJorwVg0CftsluPuFE_Ep2_qYHC4VUnPiWKvHz8_Ws2wE4As5Ox0WnKB0pnzUJdcVOeYQ7HIyfSira_zMQ_eKjUdlbgCZJZWDkLlosUtzD0f3__js0HaLHCLTXgqnYC54wZmlSX8Ln4jIaD8bh-J5UXxfhd9DNQk1kslqTFF_1wa5c0Flp8eLuWTo2_Tlw1Z_oi5UDqiqfkvu1HxNaxvg2Q3SnnSteyVX2WACJ02013xjZ4LjUJWW5TYEpJkSOrk5Nf9lm0gf_BGHmcrzwCH6Jy53K5DoglPtOxAvOHgNAO3HjwSxxc4lPqVrC5i_l4Nyp7lHNVoBj4e6rQyM7fAHxjv5MnK6FiYRlWLNbq2QJnE2UWz4WRAlINq8eSRoHavJR2Aj7Mh7yVffkjvnn1eFJHzdaM1WpQYvS2ecKWE1DNqDHzELzsDHeTp8Vrb1FCZovFt4EUB3l6UAaFDI51Rk0cXLa5A_O3f7waYhNLBxBMK0gKIYwTpzkOiVLr3DMyGlUyOFCpJPMW-xlkw3q3yWJAprMje5-mBhHbBioxgYQOLq6yzNfMKpk3GC6flcK2x6ikQ2I2lIlfsGxnRccsafYIDXJ0uuPgI6Oa1j7FHgXq0NZ3Z9p-VolPd4Nhm-cgwIgk2LNoBndhGwBoem_SLBH0bsa40MBFJSdBU9GITi5qjF249_RAnGAOQSKsT03eF-0hsanBZBeBA0pNDPoUv2HXBONeDTLT8_yidbaS5By23N5fmKCBO3f4VqsGtia6Do_DQ0yti7lkiCQ9bKFRcEwPydjINd6_wn3azwo4LghgWKgwwR-oFq5VV17tI8AAUjIOwcPmqM5pd6lF7fuF-ZXmV-_xOliDS18HCBtga4I4XNmlSSJQktrpLwtTLJFFJmWRz6vLUb4GY4X6U-pQmm-NRUjnuBtII0c9Q1DMNJVoWvgJV0wHEov-sFE2-kXM_Y2-CvLTtgMPTccw2ydw-U2FMK2tm67G98bVCTS8ycCIi6TlM-jHVmFN0-8EYEaL8Q9Cqj2UhuSJazZLtCjPmGapURF8Lx39JU4nMTGyRVIxbQ60gLKt1eKKPVORc8TACZSWRYY941InNczFR0koD9DWwujQJ_KDCz3auS1HhH16p33LnzpHkzbpyDUeBQ6Mnd2Ysp7bKplmbafFqz8UYXn-VxhDuTw5dh_32n7KdDlMmr3VEW7ShGKulqTGN9r0lUdW0rVxfXezkgtNiSO0aSm0nenQUJCe6bwey2S8fDp7xeXqi_hJnwlWt11RM9CnlGLs7yy7eQKc6_RbbNYIV2RzuEW9A_XNkYZ98iYobiUj3Z3U36pj_qcD5JS3WovQBoiicq34jKNRH-Fq3W00P0GuLazBL7i2NrvFPtBt_14LCfdTyynmRVEQcmeXxIjkzcOsckJWL7A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67a75c07f057f5-20430345','','','2025-02-08 13:28:39','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42225',0,'cd-form-entry','',0),(42226,0,'2025-02-08 20:17:22','0000-00-00 00:00:00','{\"firstname\":\"Teresa\",\"lastname\":\"Banasiewicz\",\"email\":\"Tesstyzack@yahoo.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAnpy9BhAkEiwA-P8N4ppJDxnm27pjIIbDHs-g22ufE-FyZINGO8yf4oYWrUnoRkw2kBHK1hoC9EwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6KIOaMywawQWObwUqM--ggyKOK8BKr6rjkbkCrmOXWtC2XGfV8on8XtMHsmqSKzDZwPZC9wGtxnsoYMc4-hgFWRRbDVVeQtCPgtsbU6Bxlezx-d1ibFw0Vn2qx1AKhFac2dtuwoAOfZCPbRvcSUbvKmw7z3OYEuIh5-ixla-lLzErV26tdYPuu2jtNBmL981gIwp-KgTcrZ63dgQ09T7Z4X0za95la6Wfct4-ZixWLiGaC4Z6o5h7Mbn3FgZLAAYchQuqUz_8IpcVWaZTyuFMDz-W3Sod4CUPuOBiIBulcnQqCLAbkxjfUg2n3_JG2pjdZiONXdpzdgWE8t5RsCWxp6AI254_UGJepp9ASs1RA6apN5Uh9cA6GjS8b_Oe6aKEYRlRdDKcBb8WrSDxlnpCJEeu5HmkiDayzwIVVUwtWnJioPCap4YcNRljzr-bPuvQET9V60kNAoaUQCQBs9HIHk06dStscDslH83CLgMJRpb2AS_ioHKCZQaJ_yyQZxTrEIg9UIxstd-JhoOGC8maHP38ARN371uy857jeGxLQqy5NHTutuUJ1uOLn2EqHGodhkdYraBxGsFEJw41p7XBdhzEoq1_CunL5xFY85CWXkU-_YpCUL59pn1cukDKxA8IUworehBUxKfGnZ70gopH7fBTpejJKHuTfBE9tdJzDa4aZTW7MBXiJ_YZbWGIrd7ZTr44uLapq_9WjovgDgKJ_-4oLa7Pf61PgN9gRDh-EXZgzUwk32zzDCw0K8gWzdJUAMgoosverBOLA4nPUO7gb15PCZ4iwn-UrsHL1JavaRE9QAJN-gO3Rznfs61JSlkOlkf5_nNF_RTisG3gBpGxXIVdKllJHUyNzNCM-1zwKzDMABwEQns-Y2K2jhjmJTyrGs28EADrXd-g4TYZB_-C8RRGeGW3Yp8irE5fd3llLcDb2mXpN3pUuq4t0Q8W3i0bI0tVDagTKVrkF_SOHVWPW3DMTCXu3IYYmOUCpmkDHAGpK-ZL8JONTLD93dF784L09WKFDLkyy3FBmUhYcfaLwMyllAtzjr1AbwotzhVCtH2J7JPF7Mj2gsQGcas6NX7SUZLLJEPSTTgAVieU8sMtLeaq4YSd4TIGtJ-IlBiu7GYD9UiycTxJAu5Ofk0OEzPC40Pa-rGzY2SErH3qStdsAh6EOR_dGkJFk6BGjoNk4eRFIkn7aUzGtpmCJPSMdh11ExD9rOi-XFiszpIK-m_KX4RjyCJILg1NGIYCwqmlnX7B5zPR_aSGyvvqR7WPAs2AKHvPAssvBdzTOD49KBgT5Oac97BIElOzzNXNHQYbfygjOyoF1BhTV2ZrzO3jjdAybMLru6kIcSQz06L4IpAPndhW_w83QnF7MMkUfDApS5xmHpMSsFyRmBRTmZwR8XPEqzexykSDgrWwhZjMl11UMhPN0cf3DyCuD6KrbMT0hB4ajA5m9kJJmNQs6XuGASs7KGiGa8RwT-lVO0cC7iQRiGypolue8x-dov6FFrXrJU2SYGwjk3sLN1PaNA43WQ-plxxEnNpMS_kmhcv3MO3GLqYLGPltqloU57zqTegvdkWSW8cgPJWhtjX7rr8a-HprQiv-govld7G1IV8FVNvWb-yMyIohIZNPdoa5eSupY1vDmsCPacOAK6l135V2bmVG6Ys6hgSTHTC-2oJ5iiPvh4ow4QvAnB5K8sx6ooAj2X0pXX13aTABmhvyzJSaCIOP_L0JYlDS9aVSkBCfqtwq84_Ncb5o8lbyReej0ZGFGypxfGaA0S5FalbBgLfrL9QVIt1H9x1m3RSNsvqW8TWFYgtEn0jPqEFqKlpo2YcYrpQMK_mb7HQpY_S4YiDyWh5NGw93auZ0yq0xB0EsOfeIWwJ_mPFcSNO7celLH8_JHkkaOd5E3XapLBCL2e0OwOAlpMovl2llXsTxPnzmeq_pkuAWrHbIHAOVMCb6kW-5Pb1USxCRHO-Jnl-XnNlMI3tdHSeR9IV8t6LoxJTXEAFgvMOr4oA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67a7bbd2a51908-37154912','','','2025-02-08 20:17:22','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42226',0,'cd-form-entry','',0),(42227,0,'2025-02-09 00:33:44','2025-02-09 00:33:44','{\"firstname\":\"Stuart\",\"lastname\":\"McArthur\",\"email\":\"stuartmc692@gmail.com\",\"contactnumber\":\"07488369645\",\"pageid\":\"41115\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uLlhLrXTM7gMU7RMMCIvJMO\",\"recaptcha_token\":\"03AFcWeA6lvYDmpElDy4j5Kv-2GiQt3OWZtayyJDodjkfqC5_oKQfpSVjUit2Dt4JFW_O8OIXxtdyINbb8Xe8qQnQqOjKOJB_fQlNvSQufP1t4V1AbYwvciSyVsIRUdpKEpb8612cmd4c7CrkQeYM8gOy0YYAcBMrAhSAvi_tYT2bO7mWQF6T7VG-28E0p4u9OE1dohvwWZlJMW6AmNQClSahI1xoUvJl2iry2Yqd-GfHYJU7_YKaV4EcLrkK4R9Y30hCZvm2lxLIswZBMLkFc2mtjtmtwK97-n2Dud2MFaeKtaYbkvbVpgm7G6vtpdy6DyO3lHrKmCuJhLqMW3JqraMttmeD9cRu8NrHJO--OcuP8tnN7JJds3sxz2-7a5oNow3y0RVrTN-JOnHiusXvJJNQuN46eJebNDCaMF_Hx237ZfM47tSbSiafBQEBS7jlByUO0veCvm3VxZdmuJXzhYHFAq2RRiVBnWcK9CSaD8wKNwic_-aOG6D-AFptQCLLFgNzImpjQtcQLy_ChiYm3aM-inj8vMI4Mmkwf-MY-F0M6sYnxgN2bWjT_U6SNsYuVGKcWurwEpLLo3ZAji8B7NFTpN8RnfQzHTv7JenvSnxdlVzk2Hppm0sai1IshW1SvdEWG_WM95jA3VO3JcRyQADu918VBLKd2kOWkxrI10qzCYfkRDgd3-rx16TCretRBSCv52NcjB7hn29xs4p82oBz5kx5UWkWLlkgum3YgD2MxfVu7gILoPiEMNb0JV_3wm-nEkACoiAf5uJ0n2r6gVNad32ornyIi6He8Mo72tqlXFC4bv_4EB47I8cjRnGT9dqW5XM04hwaSHH27C-zl5SxU8ruslx22ZJRD_mB3Ny_0De7FJ85MA608TsIuLvZtTdOhjUNjqD38WR16b-d7QCOnQ4s_7GSHRQlxYrl1aGEGBF8CbIUOhTnQNQyzkj_6DmHuLKYpWD7q3REEqnAvkYvwGZtrKXXrRgV4cgA1sF-0QljO0Ih6fwLStI9C1S0x9eo7ZDgmFv-ttsqNSEEa05BfLM-SR4V4nYhgZW_67b0KqfmHG-SPoz5u8utL5AFR7dHpXcUctIMP6FvPc3rrdITC-AdL_CAakD3R0__NuNq_s-mblPkg0io-Z6djcOKtLsmW5xudgjNsl6356WUaBxy5l-fv2jF8TJCbYbp8j78n2qyvGHewri8MIPHh0Cf_awa77Y9AcJpXCHa1TKIVEDkOwbgfEpdCdjPhLp4evEZpiWeFsE1Nxi7cj6_-AJnsMYutt3KLp0a7wUm32ERYJ1Z4aX4boD-s8HVUiQawgXbx-ssBcwLlJp2OMVRLm2V2gS8dRPU_6usQqUTpNbre_2cUonI3XRscuXY3314CC0lNUakPQcSb9ApgUYRDUsP9TZaQppSS9KBUYBEUib-zTTuJoXxVAMUoEi1UDIOn7yiI19kuDEOGi5zTVzg5THtiQul_LXw5EFpK3DkYewQE-2iqhSzBocTYO-OqP_l7TPpKRUQSFVKMcsEGj9POQQbxM-lSpM5ujpjZTeDYlk6ka4V8qNpOSWrt_fTzuCx558Mt9D3ti_AymW1r0das1MQNUcWaB7CkpEHcRglQYqMb-Iubh5W2gugtJq4S-7i3qxVM3efwbEk6X2AnP63-d0oYTrH_mP6mbLyp5-cYIhWEgj_1ZntJd2k6H1zEo6YycWCplyowuLfrPYPk-swdok1FRJjwC3Q0WdfjtToVMIGKnbcBc1wrfjGEk9zJrqkx5116tN_hCQWgwgXciP3w_9lyx7W2XeOPpwXIf3Yox9LnG0Vg3zJDZP5Pkz6DA0ycGhR0_BvLaVabBXMh09uMyDaQ3Ff2xWngzAaIFz0QP55IAjMzlgDDH--guVJ6PhBLb19NM2I6D97SXKsUx6GF-sQsoFHTLSHSvR-Q127i9U1vOENo8M0yuuBBTJyiJbYfW8wrGcwCtJXLeEG5TfeFwmTnHz0odnMv_f1xewmPqiNf8-lg_onFuIlgz2b5bLE5unLjWK3V7NnmMcsso3uptVJ-bltF6PQgZxCofSNk-LPGucPHVgnqsbtzyg1LKyJPJ6RysYsWFvT4XXCDRwtEsd6wSDogLUsSENRoMDD9TCDGmw340eZlghAF2A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a7f7d37fc1c2-81445368','','','2025-02-09 00:33:44','2025-02-09 00:33:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42227',0,'cd-form-entry','',0),(42228,0,'2025-02-09 00:35:30','2025-02-09 00:35:30','{\"email\":\"stuartmc692@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"9\",\"currentpostcode\":\"DD3 8AH\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uLlhLrXTM7gMU7RMMCIvJMO\",\"recaptcha_token\":\"03AFcWeA5yhfdpsPgo_QORttHa81p0ufykvJ5jp9ZOiW-IdqI2zKtL-FG3uzQSFVL6Q5Sgy5EIAhmXnNQLR1MrGPstMmX0M10IW50-GdeaFRDVf9saaVc4-cE_slJ7g-lTtHJJxsF2IzXI6kuwfpz3nUvTb9Y6A-XE05970vFUvULQDl9FgzK1SifV02jUSe-sLjsMnTU9H-cDnPgyPmhbF4IbazPNT0t8Ta9fXr-G6rKM5Ee7CSh5lny0FyO971HwFXZRZeTFSPwd5Dgp1rfz2DRUlZ2uBaVVk9JYzk5ODWw3NEUTpknCbw0sJ9kFYLtAUAFgZaU4Cw8_CZ8gadsS7qUfjX1pTlaUYPD4Osza42R7VedWPucSBVNPfF69p9cW97XEK-iF-ZgJSZS0Uv_6tkcP5_PlPGCHBo5Ep4b9hgZ5a-FBwUQASbJQvY88Q1FQMZnVffSGauQQYbc5A0KS5f5cii2ie2M59KXKwsmjsgSnqi_zPywFsGfT3NMwSPI1T6eP-cA3DF6bJh_-fOEvBKDchp43jhoUYPxCsPG5ro6b1UrvgwpqymE8hfT4v36VsGd3KId_tnpY46UkCYmiypojclyhpkiC57fHNwBQyJoTXzrKxBsF2KNDvdiclqMhJBlIm2kSSnHgjssXfkNBESHQvopfUbbtz-jPm7gmm8Q2ink6L2Tps3vY20wHkt0JoUVS1Usu1i2c8CdFlnBP5CVjAIo-viQwLGpqZz0dIBhvia2pJC-TuVi481r5misbRcuVMPydlox-q74mpLmDLsVFR1zK69Ud7mq7As9tj7V9AcXEqUuFuNDoaOTC8FE_YOGf6m_TLqUXSSY-A7ZO1eF3LJNkxRDAOzhz2vwE6Eu-GwuL646j6gctE27NSsaxcrWL-vmqQD336pd0C2D82UTQzkaRBMU4JSTFx_fiC3sEqapRqzy_DcDTdvG0pfTD9qb45i3-MDOOGjzSX8r9b39HSFdkbymQdZ0RcxiqRZGkBjeyJ5DmkIBbFCxBdofLWb-YfjbpKQfEnE30a7te7CMK6MSSV7WTIKL6G-zWBS4E6VWGGOEy6nn8FQ0gK5_4ZTfW425eIVkIgvwZk9Yqzs9crKjKq3Y738weibSxtC7RowAhPfsF-dvgD3-6eIlrpnTa5eSCCAD_w8wTRjlhHS1rIg49NKyyBbsL8uW2lZ525_gzPjzfcya7XY72nQMh8K9w_DwEFbeYjhD8tFw9u2rFMkDVKuWPe3JEoBYO5awB3o-e-vSCum39_jVJt4J8TOryp7SvvqWTn8SSz4JBQAWHdF-G6nUlBgw3-JEqhxcvvi9FO-Ql0FijLrGMFGI98-y6Qc9OWDzH0OKNM4jPusyQpAIuXeiolfjnuQErpGiiooI9vXfBpxKtEbW3UhKpTXk_tzl5ADF76fMfEZ2ac_jXEI9YT1q9f2c-SAA0I28GwSwBgJKWjSLeLj7AYlcK2y3Ozw0bt3XpcBuFWO5d2VE5u8TWYD0o4oHacUH-xgNcI1Utbnts7sIgUkQpb0xevKIvmcnSjhn6zVHjNVRYa_nAiYo-UEZQmPgiX_KRKrMXdLRI_zo322vBJH1xAZ6qLqUXkupX2m9BzYbBdBWial5hxxfOvW11cvPxYq9VOm9MGt0jqz-eEELu1V4Eh6gLgh8Rdiiwo1C1777gTEFHANvUJRxOec8Pq6-TptwLr4BfdRQGpy3spouB8bQszCnqPqOJiyrPm0hB7J3LPUSyBQ6as6dKidYVzVq3-PSKQ7nrlkfxAlA1n01Ku4tscknYbsm67w1POy5rQAJgmDfRcaeg3ZfUUi-8nitlo3w-ngp3tg0M4LAQgq7Ooa1kU1Binm5MVSVT6QpETKCOL-RMYRH1P-fsnGptEeZamKHFTEiwV6_B1e8tmnla84PN8Vtq6rL47PtLMirBhiNuRzXwq3YPjpjxBhXmDLWvexqb2ZxipMhU9I_vYtVnWigVp4PGlWfe7PuDMuSVyjDgJQ6B2FiHmpzy-hZ_U0jF10e4nSQvz8j7-yyS_nEmbBiDi4uL7GSCoB3tDjqUcW5noov5ng5jb4dUQxSvwYC7T91oJXUiYg-IapbhHQhnGJmjizY8-WZikM2yOERkIXD5MJcR21A3-Qkpfkb8DQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"8\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a7f825569a78-28568854','','','2025-02-09 00:35:30','2025-02-09 00:35:30','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42228',0,'cd-form-entry','',0),(42229,0,'2025-02-09 00:44:14','2025-02-09 00:44:14','{\"firstname\":\"Aline\",\"lastname\":\"Duriaud\",\"email\":\"alineduriaud3@gmail.com\",\"contactnumber\":\"07740065288\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uLlhLrXTM7gMU7RMMCIvJMO&amp;gclid=CjwKCAiAnpy9BhAkEiwA-P8N4kf8o5jIsGpEzFb0Lcxis8UmtnEwwzudCCTRSLn9ZxZYBs-i23WeChoCdrIQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA71aYoZ5yD9cG3ajewoYUftZQeLvsBedmqx-nti5kJWG7vIo0oXpwcW_ILshD0QDMID71J6Q4VWlkgqZwMeH1_R_lAt0wh9ltx2t5X4xxkIYK3eNk4pcfqEs34rmIzng-lJJ5M_5IuEzx0oqCrql0BznPp1VKdLnqaaQg2AG1buOVAvt1BQqPASau0_Qp15Zl3Ec37PW55s0WgJ9RNjJoouO4lFyHLVQLW5TjqmFA_ZjUzDqIgT5el_v-4u5jkc8-wOHsEeWkl3ptj35VgYvTdi9h6FWfBAZ-lPC0uu8qOrJtxIy2S7jnwYIX_pfAL8iGcLfrdd2EpS09pTFM3mQxhMP5PISVHfJ47CYlVopmTBt2W5zbXJhjD-AI1-Jx7OE8BxKbYZM2HouAkBc16AlKFQzl7L1G_UIb9rssr_QOvwSZOAET_jRjcTWf49P_KUWAJzPIiLckHQjaNKoW5aupW1YoyYBz2qmPsBZq2tPIEc0X1MYiGw6cCXp28-7jFJoRrctlYpKNVT1abEMxNfiPnXQlQxRzHiSAZbDwhW21PzhmF_WGjM6MRG7FDnePgefkpMoqZSLMrNhM2ZEQw-eZfu_6etqufo-HX1e4OjaEh3WV4T1Ou8OHuZq3iLBSMJGE2PaOkzZnOlUQGHKjgQsRbBvt_iQsIyWblUY4s0WjF5H9Jhxl39pHLVUPjUi77rS2Y0LAkirYgQGUjad53FWm49UJN6L3425iZTtf6E-bhCA8EU3SlfikxvqK3loVP8DYf4Viu1cAaRRq3GtfJ01EZrWAP5Ql7jnFxqoKn9nh79doglMfaegAGtf4r11rwlGmzAsJGr8YoGG2j60gNNAazom6LAb9MyKsCHjrO3T7_7iXghG7hq6dCWxJbF51aPuWyuHWHQZPmZJAbwVDPa8xGxtqhDN5ViFPI5Fqtl2hIx3JA9eIYpRV_IEF6vKdg0E6l67ysmvec0rdmoUVMlW2aLA1S4cxz2ti1bJJUI-6V7BBLYfwN7c0M1bVcYfoXghIN5YAJK2uEEvI3j4_k1qwgGDgH-45_KUNAYAdQuTOVKP4EeRmw-uAjlr5aBFmsr6khQIUFNE_FDFasaMq91wzkC-qyPJpj4BWbULPKSNB48AW26oa9PfxrfkJDKPBljQo0mEmeJXYfc2GPphYyyfJdC1GkdkJWbI_hNY3yltmyH2nrmauWZ6nxQK7Hlz1_E_aVDIvcQxcQ5dTt0QacmDqHmMFurSo1ti5BqKsWjC5RGeCydB_0wS_F2kU9vRVbBXS9b23DW3lwPKDqDQU4CFdsWC3K1FTy0ibQSMmvpZcWFk4lmAuI7ble5Arr4zRI454tKdzkDEqSnAA_ZdKSLu2jjPtQsQO4M7wT4Q_av7PDYWxf5jGaP1lk4JY8eRwhV2EtoWt9FDuk4U5Mxev5JdmcuIZRoNE8VUJKnpLh10GIU4S3hQU6ZaZd7GfmrRNaFfgAipKyblDMxm-o4hlSjo5ioz0axGL-2TMGtj5kW2f9C_3gIxfYhmjKa447xSZNKb4B7llKO62YOFtmx175BD811faoBAclU7bBgcPHDqbhOlDp0CrtQ1ZLXt5lZ0_RT1TB4fWWsvzwdK9BKJy6bvMu8xHG00zCcTQaK3LriuH_P0zU4eX0QJObzWlpSNq6Ss4hHrHKErlcKN_unnrTT8PGzyK3IQeJN2PMDrf4Y_QoLoNekTq1wN5pFtOMUZkLcxRvwWH0It1jqJHDwmftUOEDeQvMka-APos8AgZjYF0BJPVlft5vJtu3UB1eIBo6SB3G3IDgmJI_vdD8c1wu_LtPpcFzNx9Bapwmoelrn7y9IiOvWiCmM29OnOqb-3uBv_CoLdURORBdH2_Fbp_61eAr7B4vE_FH6C8SWwggvEr1Sm7mTBG6amrE7nXlg-407EIrRKU1eAR0b3HkSEdTPPVI_dnoTnBlhHP3Lz4-zFCLpbPMloUg0_gxcyeyjf67zIzRpDCW3P8iJiSvCbzYf7X55anQ7pptGkouy7KfaQgBcr_hQJE1hUzPm80rTT7Kz9zC4CBgF9XhRGRbFt3BSJSdFD6N2ufEbmDZlEw9IIv-LWrMVvx2MhMXtLuAKvvo-sAIYZpsPYhxdclc6iZU6DwGTPjgPIg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a7fa4e7f7ab1-65117278','','','2025-02-09 00:44:14','2025-02-09 00:44:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42229',0,'cd-form-entry','',0),(42230,0,'2025-02-09 03:22:33','2025-02-09 03:22:33','{\"firstname\":\"Hussain\",\"lastname\":\"Zinan\",\"email\":\"husenzinan@gmail.com\",\"contactnumber\":\"7909669\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA69BukQMyAHBlt_b62fSHTPsbDneuHa7Aj10QOOPXTZcb8VD2rtu0DZhlZy5w90dVq-WTC91qdRnDbcwTWOfwd3BWmCU7w1jJaVC5BHl6GUfsCKBmgtXh-wUCnRNoH4URNqnTriotw8OkPcHDJ2cQTO2xskGNpXrj6ozffvhbQb1kuW50JpovO0CdCJd2rGTTBh38baDyhgHsOG1QEQNVJB9Btmw7VO_XeoD7ULwuXYYN5iH6ae3-d7AC6Sj93T3pHjYYmXwIZS0xcdZK-4NhdDuKOYWv2txyRJs6LuwhkQ0w-s9OtSFpipqjhwTqDIIX_38ft3JHIEtv-KFjDuDPGdFzZeZRVqnZpw_t4HIs9RPQ2Cx4g55mtNWQuRCU80xe86q4j-NED1cBJ6DF_FCnNYy_igv7oYPisH3BQAqfqER4dNBlud7bs_IQiuIpzTJYCwUVGcCuItclaMlg4RtVcPu77uxVjGZkBLZSugrMxznyXEs28bmAq12RxZbsSPPNt2auY2gt3fXIuNMsE5BmciMZ0GaX7k4raKvaKgh6MXEDRsvjOheoIpEVrA7XSK3iFPiM0b0b455ckQ2wnd4LXHbcH7la0ZNV1k6x8SVjcQASQVAYD3aOpNd0x781OeScZ729eNdRwJPxbkV5qP3rO0ahu78SXSekhRdG8A-ozkZR3caldMoCU6QAcXzNbaYR5H39JxU5vw4xHL9wtk7DCd2av2fha6IA1TeMnT0HoV89KXSsPy-EtYC_fjcKamSnmgE5RyZIrZaC8H9z1hASnjYxs5e7fP6sJufmTaPHiWgvMqDA0Lib3nik_-9q7AZfLvAwvyJOgFNrB-9GNZmWgUJ7r6YU-Tm75mnVhFHQbFbFuz0bs_760UXizscRW6tisusP8V7w_4LWEQy12BkuZqrAS3zu6l2c2vOaiwGThtjt5uPbMi5fZrydFyhfghSMewTj4zzMqAxYw7x0Iiq_BWi0XY4z_u3TyoZ4ON8oWaoeTW5mMq-D2_Iz8bJuZCG8XGsytDDoo0ENHEVN8TTA7mWPxVELRKwPlQ2krvlJe0W2kDFideZ1uOwMncL96Bf9Q0q8m_vUsEMXkY_FXcHcwEpv0sgU5x0uWgfLNojhsLesIa5Ye0kX7kiHH8yV8tIhvMotUtRnO37z8yvxhlr1L3-oQwPt6g2qZOa5Zd-XAZGxlkk_oJ-yBBZvCFIGMNydCe7AiDVS0UtRSf8evDeMfsIgp0tNlCRuu_D5u3S3Vsk19mHwOrkXEd_15SvH-uWMxXX49Ftyf0pn763atOQ9CUUX2S2cfbYDSIXc1lAuE0JoAw1RafIrR9lwLwkm6znyrishUTWGYxfI1cSlhvhGdzIF47QKfz2Rif-WwcJjFlHe_8M5TunxFlE3X6Ep6kw7c5cADE7TiQ4mV74INcSNs7gs2i_5btkZ6ZPITvYBe9x_-vlu3xVGO6dn-axSj0FSzi-69D6aCFDdgW_isO1yq53mhL5U1IHncDIVLU5gelWvBmSQUzuRwH9xaX7nOjk3JQnqj6fDDKFEVo3zdgBhHw6tzxwCxc6wifp3Ax8qEcMphPMDdKbwntWOqxGkssuPfqsgPBOQXWEjnXWTvwUvTMp7BwpLba1h9PeKlnOCjq6kTcbYo5dTTHmPjSIkOcpL53pa8eHGuh1_5GQrRUqO90RJr1VO0wQdrFgbb6wtmy4IKGiwB3DgLGLWbKEOFAtboChlvfhMnH1pS18aaLDyxRJFqPc4wouBg7VUSX1s1hSpvlfQA_Nogkpb6D1VFIGFTcY9vur0K-FaU_sUakQAXVGargBiSqIDRHbDUwKTHSHyqGp0zNXVa8LyZY3lxzuzy2tmtXEcpti6GJamsMvX-j-solV_ZiXNhgoLWlF5ZxO1KUONNYacxODjhSKjdMEjMuC8q30pqJM4YZZsdIKrCqza_LG6MckqjPEezEXmNN7YkgRdTVTwuvqCLj1v2xrp_YTL8bLlNyec9H0snGGSLrBRPujUmAFeWLPYheK7U5Z6dhxfqvTDziDy7HCPoYEOG9eVBgGorKrLDllGI_aYiiAkv9oNkBx6eEcVgi0ZLEdnV-LjCkT513Ovghnw7-bVXshZ5L\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a81f68d137a4-65059535','','','2025-02-09 03:22:33','2025-02-09 03:22:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42230',0,'cd-form-entry','',0),(42231,0,'2025-02-09 07:06:04','2025-02-09 07:06:04','{\"firstname\":\"Joan\",\"lastname\":\"Gading\",\"email\":\"joan.mareti@gmail.com\",\"contactnumber\":\"+628111688872\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7VkLz_6i79aNInLJNDchTtw4ynFGNbLxuC-EezJMO2TPSfrN-cSoqDC-vdRJm98YoDwdz3G8ZADSBiP9VnDyQ-wI1YQWY2QGzQxkQTDMStisEFclcc-fvXorxu1IAg3aWCYYY4NoxUBFkv6yoifMZxP8WcUFwBhraI9mBgGS9BU86jaA37qr2355sHraze8ka_9czVT1YaaG9VhgIF9NxS7THwz6yguayOIdggJEOXsibDRn_8QK7jYgevOkvkd76K1uob0N_aKYF-en4VTJSvkAhn41096T4LDkUMceKz-YoC9z8FKz01XaZW0zcywLzDdVYK2U1-1v13Ji_pPivFtdXmj5dqjb_yoAUxanze0moZCdswMYv3CIhmvWaJeZcRTHcG0ubRYSQ5fglLxN3JY_iL7cQnuCO9rmkiu_VSgo82vxI_vEqJVAqgHhitoen7O6kkmvZNG_u4g-mhAf6fKTH8lfh-_ItcDM5bCe-g0HRdo_RXxE0ozJfLhRtDjZblphCAA8_NNOViY2feGQ1ZHjp8oXQ5ejnCAPBstWRI2vrj6AS1sTlptMv7O_oEMf-qzIIqNWuEAxP-zAo3ItSzgFq-3GFkiqj78liMv-QXsHnha4A5Ikhmg7Rh8vyWetb8dRHdUGnMMX1HPaVV9v_W89qgX9lF2GamiT0QzJVoOhcxwdKwLJ-2jTLDOMyw3p4o3bwpI8PVqdxTq6ZAv_QrDAc8AzNhgnNzgKMPe-6h0yrrrzs-k8Y4saRFNCdJOBcb5hM_JiwRRrQgCzY7--OjXFcE3rOJlDZhjwGqcvj4gWu4ZcxcmwkkiocksPIQkFGY33cF6SHG1p6Calhs_8tHHOdUy9lupNyyUuQWLC4uaqko82ajiyUtSYS1VYiD7fOFIe-kLMZ1jTIOK7BPAks0Y-0vz5aK-T7XWfKAx9rFjDlcqGIn8eTEzWNNc0bj_Ndt6kWsogkriVUlvqfY0Xri2yJLVNa1QiQIjftO6n7j9csLaMQNvoXiSIqCGuJCN1yE7I8lYin7Hkz5nj5m6OZE2ADtq-r2emPaKzd1Q3X1kXJOyFoTij-LgWYazoBK33HmdkUyKXtqqMRa7uCVYZSe_VQOnCuTqyVSCXA9SHZiWwgI8qSzVlG8PX2tRf20f67vX-N7EnPt7Dl_i2peqOQnIwZrekO0xGjtKOUbySC5F4A9RxbVnDYvGbjLchuoM8f8QYKc30h7mLH5holNmHlozV0UxiyipLKE9b9CCDs1mSSWavPJqoEDtaK6gHF3aDVCaFxnf2z6pRrKQauG7SGUt40V06mEd8_kcpq3esMol_Jra6SKOW7OTOM1Ru4QugynAF0MJVUrW3gHOtmY0a4cUwASFs0JejGyeCErBm_jg2YzMKuPjPrGXHRumZRLowPETcQc7j9W9Rem_YO9a1xn4GppoHL6mH7QGZ2QuEld7twPcgU-aXfqodEaoK4IzLFvoQX3IJ5D9u9vq4Yhtg2VFWsi7VeEqIPDBQI1KPA72_lU8pGoVv7k2i2fK-1PzTylLnJG1L1K4WZDrdUhsnqZAHUlLXujkF0IRCybIFlIHaG0RxvEF-GzB--IHMD6KtUBuLdzR6ezJannPWST82FRHHQ0SRMOlgJFDHj_vU_8A7qPJygfjzMHq9Mbeyf99apvq1hVIWFTAaAChcXCLXi9eD2Gk5wjbJMRsxmEFT2wb1Mj_cG0ZFvQ0CEHFJThw2ucXqCsHcXmYZzhWCA5dCYcV8ELxGfPISuqZbX2M4T-UtIQE4mYMRpvDv7nen_cEDjETBbfcyp6vXnELYQVpQhn8F-h5ENbY9sKGlGgLYojFy8u67LBcxl4cA8-nQ2sbmLkiPXoSoa_87GVHrGdU2Oi39m6rtaAb8U99BVbPHHqFLsPKqHPh1IGWYAUb0WX6cGLM5vMIKmegAM1Hbdy-HP2f-PfAjoupN-K0EgzbDXT7hDoLSUV9zymfKlSIPd43YBsxiaNatU0zi1N_zLoE9AgK9FcDQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a853b81eb463-59555437','','','2025-02-09 07:06:04','2025-02-09 07:06:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42231',0,'cd-form-entry','',0),(42232,0,'2025-02-09 11:36:39','2025-02-09 11:36:39','{\"firstname\":\"Beth\",\"lastname\":\"Sanders\",\"email\":\"beth.sanders@hotmail.co.uk\",\"contactnumber\":\"07780437298\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-sports-massage-therapists/\",\"recaptcha_token\":\"03AFcWeA6ZYPiX3qI8wzeP5IpgxFADsEBgXlZYkZRRnH2UPUZ8-WFIUP5q7LL9E6v5e7ZuklrpWxrecb7ykoUutiMG6-2kwdRPF7NIm94C5BiNYHYCBMxqkY1PUWMbDCSEOEK6U1c7cBGX1tqLNvcBnTarvJvScbxgZsSLa5D7mBmXyVu7LjBnUFV0wtgZSEg29fHHNkd_mwte6eMhLUV_pKCtAh_ZJHBFeCwK_OrRTG_WbHT99lGfryTPgL1oCJiRuvFUm3sqrgxfSRLBBLm7hWF0nnzji2j3f3AQ-s1qpiC9GIqVohoFRWLk2gOkjMYej54OkbS3DqBcGzv5omGUjhpnb8aH-qrg3xe98bDhWM3fPua6ro3cySxpr1wu2u80MhIzisrrcnKvimnyft_AAOw0uZ5FlJ-JSA61dWEqps6sDxLaGmoIiIsnPbg_L9F_dZ7qyPmm2Pcyt8TH87bGOf3tU2haV7Fh_VkA7QD8taqrxXgQbanwAH5LyogqHHx1d8cMytKcdT4I8_rbXvMYX0BDS5869taFGgGNSQkZ-i2hz1RqBFrm5llhSMGKYWFsCcB4MEZvPz7rkXlPEhDxgiqFFFhPN7Xy-jd9RblIWQJm-KMryN571rxyU4HGDSLT4GTq_HQTl5wlf6WNQw-1xg91JToWMPcVLGd4c7oXJiELeqQYOP5XkK2duYr_grSPxVV0t7sTWDs0qc_yLABQpror3Xi15ic6ZYFlNdnpPbeFx8BNJpcfPqHH6kmQ30Wrkvi5lGJ2weBTkcFDtrv4FD7cJZ2BvqHBPR5sJNtqymUAcBhQSScTCBp4cVBJmvRtgCKWmx-eYKBz9fT22AGW4OmA2My1XBdQ4BcGflpBhPcVB5T9558JiBZjon4NlUE-C1Kfm4XpSu_WaIZbhfRG8Q-uePM7K5Vx2LBjbImpD41P4TgnzuqfedIs-KLtMiVxBZvIc5kSKnyvRUZNR4qxleaPvu4j5k72zIhuFZVWQWqhpp3-m_ld6YuFNnks7-pImk70puQwjoHDWEEl5Q5qrm3B2XV9gcl8rcNjTpC_kJyv9ZoqtX44QHxI0SLxP_8s-0RWl52xliUhpjN81WvQkTspVZGCYPMgRxHg-QkRqYtpSG4lOG2kh9IdOKe8_-fWWA9ynR7Ml3SKqybnNKIVKB7fgf14TrxFa05BFePqAdLrSWgSjYikRezoIpC3CQNbG8Repdrlih2BS9GuhJuwNgHb1bh9WFlR00tm5JvuMhvy3rtYaODw2TcDP5fG2CzUJBfM-XMt0jznp_7JpkY5AQBHiYfuDl3rVFbEtF0ckY5oHhT8uyTHM7OQ3uQJ6tZwQF5Of7musMLLW6XehHovmZl35V7HEnvbc8Zq1GwXMeN2koDPvq24uf7S_sce5_tT7AqMzLNGwWGb6GFX1oQcnpppdQm8Btvmf83WbreQAS0-u9WofxAKZoQJvBoGwVlYNuSKQZRJSGUb9TxqPKWvYpdWSff-YXDya2mJ04BUBQpYHZmtZ1blDtf7qyj4ZTpTw2Y1OW4wUS3d_aSzVCeUZMcJ8aokhbLWuWn79rKMEURKztvwhXgqBjisZTZ-x_VOOKwueAIGGjYvJ5iC7TJYC7TxPKAGgQVYZM5uyWRbDUTSZ76rpqb3H163agBFmiJSNPOVLbdz-EBQbL3nnNAkclVM5TKfpIIbAOWf6cHn-5J53eW2KrQiG5WC1PxE0DFlLp-x4xx2ShdMYvy4mGKDeES7CiCJIPgj5h8MRaou5Nrt8BAyy694A_QKb9ubCI6cSUpijKcbi9KAFu_bQAK8Iplmdks-R4IkdgtHa06MzFGcluv816B23zFMtRVRJKIbG6F6nj0cuIs3kg-W9_T630ujPX6H5Kls5hGp7C8Kd-FxPVoSh6T0jhP3rv0QDjnf8aQzOEueh03i7RrdfgJSorcCgOlbOFTGwD4cVIKO2Zh1SIqvk7Yy8I0_7nDR7uQ69_N8gBnXH-sUReHhPSXeZwleOYBZ8_kt3dSbpBLzeduQhZnbQtmlKz52k-egQyr0hDbsSzuHrnq3K6WvE2ob1TxOM92-bTBHsjdCqYqkWj-oLtKwUMEdywCsR6iSjRqCN3ONm4K7foflUF0Dk41kGyYTVvlYZzlKcg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a893381602e9-40161216','','','2025-02-09 11:36:39','2025-02-09 11:36:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42232',0,'cd-form-entry','',0),(42233,0,'2025-02-09 11:41:04','2025-02-09 11:41:04','{\"firstname\":\"Beth\",\"lastname\":\"Sanders\",\"email\":\"beth.sanders@hotmail.co.uk\",\"contactnumber\":\"07780437298\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-sports-massage-therapists/\",\"recaptcha_token\":\"03AFcWeA5uImWnW2X8K5_QX0zdKzlbZmnYd4_KGjvvfAMlhlOSVnnROeEIBsUEsAHtjUOVmCPRB4ZGrdI7hqH7KYXPipAqlcjZIH0UdpS5WDF4nc-HhsxpKjPrrpKaXfOClUjP8wwRClkb0omDRaEG722IcqdNJQJq_b6rC1kD8NCKQyoV3l8zvLp41ve1g1gMuStpJFvjStqwxZPGPObItdsLws6lGKuI6FqO-Tt2smzOlyQSNh5kshSGTSVDEB8fGRBJ9KXbV2mBH3ylSM3wlJyEKveI4GBH1oHK18kpJmfB41ZU5XtBqjdy5FuU-8geHCgNHFVml12pk5oPckF9quAew5pR6YfU7RJF5X2ielL_hTudgpxgPHpl4N3W0So77pikZNgFq-ekPL3N9qyLu6uodsg8mUeTVvAzfprgoEq4guShLCTB8loK48BZOVNUkIeUPS_liMjwfPTH3thuNF0ngaYvYG9v10nrWMsEy5KeOGIE0LWJSd04zvwJ7Pgi4Ns5QV1ZeaxQHYEWBvEEh3gG3ZmeNnN7SdpCKGzTQATJTFyVhmkquil6rvTTJeFicsxisg-boOqIA1ropVyuxB__AGYe0VajtU4XzcxuskQTwI8Q7NdOE03qZ0lrF-BmP4iOHLaHfyYLRw1xKvO3ylkw_IcXuvMDybNunN11oyRJfM9cMcRT1fTcyezvcSxiO-62RAsIV8QlfjG_XySlohqh-jq0lRNGthRDo1duaNixODIGngalvQhGa8juVPi8TdxwVWjGy33kNZdUBM1X8npINqER68WPB76CYxlWx7o_c9wx-QP3hyOdxKlgM3UE0KQ9kieMJB__v3IQesxWVePm1_VpXEFXeNdUgl0mFjGC_yaXF-ivFfVvaHcK2KSPtKQCHXEM6TLZi1ikCRtuRLUS_HfOQTKBtF8xYPPB33znNVzM-cAYsE0VW1IKwxvYOpbd3zWLuzckwow7MRSgtty8Fgo5IDXRHVO0Eme8rLTEjNWBfFi3Pyx7aS2iRkwsXlj5NQkD5I4ZEqejWxI-ooIx2-KmMHfx2hTH3MApBzclLOj_OPDO701h96uZyEMQijSbdR81lutxfUIe4I9Zp8_feAIJbKts-2XXexrUi4BTpUDKpZNkk0U9MD8JHUXdRDqI8xXTE2URBfhS1CMNvxCy3Sf5kN6DZmttbqaeGR8cnNIrleDC9dafluzGmOAtDv-n1lL6rlm-MFWyL_h9bANEFp0nADY81-BDH5G9Nso7vW4dew9IuzzO8UpW0lq0Grhh4e0sYPhsModZ9U8qdYwovCmgmVOAY5JR0EwRKkQD_RkVVc_mU_WUx5b_qKsU6Y9Pjk7yHKCGsYbAR9IW26wa02L0n2DG5-ycjE20njpS2DOeD5Jpy6UaCj1kXjxgit5eI0DiBoBv0QTt8Pxm8mVR5uOmtiT7LXZhdxcY0J0g8VDAB6vlOW95vdGVo_1JCmuePPKrnrpLnMhUGmc4ibs2XK7w45DyhEgcpnhRn1dcKC5thZOH4sK9uyBkSD7yV-bco6htkWzDpTVf_DeRSc1p7B-882zJVp4KtUCtPC6CgdV7KwZ1tEl65jCltRsQd_6vBzne12Sj6SyXpSqEFspPmuT-ZWhnM9mgaPtUf5x0Mnn9RtRP3mUH7p2t9ftgY6VfLd9w09wxW_bGR1SQSf_SB6_jotgmYwoISkmgmqvhjvrHfJtn9dcu2zwZtds-hjq2f7UnfD3jfHRf-90IP-XixCayQiwoFVV0OEe8lB_RDy-9wOvtenVvim2BXIxCZybaeReP5g_3Rcv-JCcOkYwPG5cWIHWrg7R_IwNtc6rxoKrPkh3gikzt21xOyakoXYYP_1rvgpfOqh272C48NPPlVA2mGliZyv8ryjQlNkeMuAmUrFSmAcYCwQItA6pfO4r1Wky8fShPS1T2pzKul_RhBkHad63r04HagTjaDJF-A-RCkgzxkLPw9MUfgqqhBxoTDeMe1d3j0S1kxq63yDDz6Mz3yjlzw9MjohPp45O29apTC6Dkc5gRC34QKC9t54OIdydciEfZfIHrJDMETpIkXERD1r6UFJY2pcTPgSvNTOgNT1G3qu68BPX_KkkAXTc_8oK2hC5yoLEGaun5QeQOTe4SNmSEkybKIp5u11wodcRwk563D9SrjcJHli0rPyHKOINLxvtqOxFAJy45UEfTsgGGhQOJLwP-vMlxeVa3LGD15v8hIjW7SOIqu7s0I-go9Vr7aIm5cQt0xcQkk1rBkCcoH6IEHqlV49MQcXQbwcHOOoZ42yqJMYownW__mQIaLgcraVbalWKJrZERLGaRk3NSSzY_i_pw7LcSCk9ioviJVFq5OZKoFWmbIrbvYN2aFbVf1pmk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a89442713af2-53546100','','','2025-02-09 11:41:04','2025-02-09 11:41:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42233',0,'cd-form-entry','',0),(42234,0,'2025-02-09 11:42:17','2025-02-09 11:42:17','{\"email\":\"beth.sanders@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"GU12 6TB\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-sports-massage-therapists/\",\"recaptcha_token\":\"03AFcWeA6NA3E95_DMcb3i8zIMerAe0ceb-YMDNihMYF9x00_r3NteF953AHM2qkgzQDO47SHCFkEubkb7d2FwtwtVdkU6jotYmBtrqXL2LiPnT8syr78Qr9ftm9dHTmYyGvIuFvBfZV6iYcUdfvU-SXs1Lcorg4kFVDK5XIAs9y7ChsFnof_ULmXjok3E-UAWYu8geDMAPGslqJ2A4fCJD8u4f0RB6TWdKI1G99D4sLeELxEHk2H0Ds-pzzvaVyQ2W2hkz6XUEXZMXO9DaediGHCl5DU3O0afoIOMhI7rofUq4h8e4wZVdvigzoBPNNi_SLi-6aPC-QX9rNl4VS1SkmP2_ZzJSrlEXD0V4HmZwWhzQLV3lJHIKqcDOv5kcjiuqx9_mbXoP2kd4AiHEs1jOkWipI1NuP2SRZjZQZWyS_DPYkSZd6i-DNwfUFuImZ5eYEWwp70U8_GifqRT8Bd046D3fWSuY0liSnPxJOktkKoiNWL6ksmb0u-2dlgZxuy6L5ICrlnbSkh6fP6Rs4AV1_OReYoGm_rWUZxxpM_xwIibS8jyQit5O9lGu8TqviOqqwUU2YgxdXtQyP1pWEiGyBYqEjShlOBhq7opkVnlKYeDAUR6-eTZAbD4RfTvc7e8AFaKpKAO8LuePxohx3kn7sS0Dn8_Lt3bJE8B_QMj_OCg5ZG_75FBqpJIWKt1LYd_cD03GEw0LVfEV40mTmEvJiZ1y0QO7bvcfTIxMKhupmdoqE_QcvlCPRzDmlnVJUmOckZoF6qs0FYiI2b-hUWxNZsGgbBeSmca-QHr_cC8HIObx_sA3ai9u1Z37bqJ_aPdzpTx6E3k7ibm7EA-uJayNzXda-_tBA35uEM7n5F6i6HGkX-n0Io05OTJDJLiiHCs0ycehDgh-OOuz6Pfb9x430o6NeAIak1_ZANLHkvDex2rvjKykJCSqJoXH94KVp4I5ZnNQjr1h2rdEYf7jRRHFvWG1BIJxZjZU7jX7w8C5LSabGZxfU_OezwwNj1lEJZHcqXz08yfaYl8WnQ7haT-fzMff2pSYOnp9yFd3rchV6OSXJodblSyw5c0kQ31pQ-YYtoRZz5jAJ7fvTX5Ou7EXtAgtNhB98I6U9HgElPkydMoquSDpXbTLCm8e2tO0ozp5_tx6ltkKrxptdrD0DGZab1eCjIAETkOFW1n0uOILYKcF9aelFgg9M7RA-i8b9MJXwT72LVutMlKKW8kphOHYqnM1ruA7mlOAdCNX-XWDm0v7KDAQsjqCqqQmM8OPEFoWfegZw4cwp5WHWjpGZ_-0TMhp4pxP74lYgKJaR3nWrjuhe48FFDaVBwxqq8rS0oBXsjaCdrxOyt8ijICaK5tF-Sjj8H_xJNqjoHiQAGpnVkybcoMcQvEMcmeSe90SdWeEjCeUGtX3sVJZdxO7lhjncMhM5r_sYQBpIDn4iQUbvUkZdeGvSJA-j_60d_MdH4inkWtSKdMUkyx0GQXzWe1gtCy8dr5e0wdv_dlRsQdC1cyLC1vPfej8lWxxP_IzUDvzk7t1CiTz8YWOYtCzW1IrV7yGXzV2jG0EHw0oEsatBOiBorAKzV8HtGcA5HZAm0dO7X1-uG8UmTMF8UIWi6nEKYZHOF2QN82p1aEkf0aOD3D69lJrxsC5j-OM1T0E8cJm_LuOiL4NrVnKvwJuJbIcNkrkgNPcJG96oAdCtYuWZ-lTT7ejW0B_5RRR5QG5N3QEcWAbTsBlN--bxfotRnql-pBHWIU4lkCHtwlhtjwCQzsLjVCkk6ARhGggWMK0tNSp1qKOxVuE1_LbqiFSya8soNWpxGITO02EBorkCrmuFTM7QbB48SDUwB4wGqeJ5edudTrL1hBOeAhQkmwO9kO4Qp_8_7PE3jYrbxhN5ThwG8RXsLWutBZj9ieaHIlUf9dwnFlWFs5O4UAenNjlszO5Wl1xWW5fDByI52rTdycL13H0ycLlq8SFWVzsee4GLsWffNIoM_i_A-t_CuBjIG0A61GRfmwMV_W60Uxh8qUTAx-C5mJ91PCjZ-LPX7jqHzwtbq_HOK8D2chqdM1T40UULWThUUH6hBUfF9zxGyN6xAX_sAlfEzN_dZ3XpBXOJxQyxitbjh-BCFmZDzR1Wjcx572q2QXJmRLxA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a894785afca5-78209796','','','2025-02-09 11:42:17','2025-02-09 11:42:17','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42234',0,'cd-form-entry','',0),(42235,0,'2025-02-09 12:07:52','2025-02-09 12:07:52','{\"firstname\":\"Magdalena\",\"lastname\":\"Torres\",\"email\":\"girolatino@hotmail.com\",\"contactnumber\":\"07954816397\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vtL7IPodlGDTnJna8C3V9qn&amp;gclid=CjwKCAiAwaG9BhAREiwAdhv6Y-Y3wlAO_EUGQaKqX7gYWVagXj44JPSiHAo92KWmN2owYiDdcR4rTRoCXWsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5E_C2ZymaLkkgsSTHSGi45wYyyj8esrg9Ky0LSk4drSarBroX-TCnU13Lf87nX-r0gwr52MJGGvn6OF05FO4rr6MEBZNB6CTKA6Z4hTVNdvXcMUnDp-ydfT_FmR2ATII0-awMfDwhu14PGrbtJgZTaBMJajk3LYtqnU7-O683T87qyGPC0d2jxNgldGU8MI_OOZFKHpw8JgODL3oPGU1CqMtfYvphxsl9nB21esz2emgBxMMEkPXrj4c-rKA52WydfLc_LXhi9vARGmVd7Hzn5I8iYNxOJYTFdhAl8Yaz1nuEaUcpB_WNxS-SPACXbmPEcjcmzrk2iUYjVHvI5anXAmvPfyXeVnPknzQCRC_FFggDSzUv_hz1lBlTN4IilgjeGjmsDaqSVKAwn9raobNIuh-4Kl0TOlBaKATyDN66yrum04m9U_zcYE5MSLuPDzHd5x4mLlFRHnuOfF758eCe9PVUrMlisiglZ2vLRrDBemgYoWGA618VQf5iUdk3PM2cfbnhmuj_Y38HuL9wF2zt4UxR3kecujNrh7d_ZbgV8MA7nXIG8V_yyuqL0fO60Fl24VlXwFMDRIdnv76uvS_BN-4Q4_eIzSF2dxgSDl4lKefTSFhWwRd6r5smkiyI78DRw8HhamSVJC_sAZakplvQ1p1PbphOzhusBAr9A5GLkye4yba_2HpDNAXmvHu7qlDTPY-nbLDICMX8b7P4hB3Uyjjhe5jt2IFBpNu-dX3QCKDlZLpRz8bRcZ0mm6SsXq2FXeoo5tuxW3Pwd7EVKn2R0Keac0vQAWR58qbWaBQq8MAWXrgugiUsS-hBdlUlZRMb07I0zeqOhfjNz7npwRI1_cQiR8cROoW6goHEmE7lI_BVp53ooIZ_DX0FZtgpgChouJ58M4nRJme-lM2bRmfTwDDyTKbxMwuknhZykKc-2S_2IKbywQwqIW7daxfgY6Tj-YnQ4KT4DTXzMX-tOx8h5hCAWqTL65soyf89MxnRJxPWJxLJioxrqIY-_du0RPVsqTBqrPJRVDco6X_15wmIse0d4JjwIeJfjJplILbbVleVHBWOGBcYBRQzHlN3-osZRgh8OQkRTZAAWqwsS2fzagJfWQ5uat3hJ581Gh17gmASmVBvz7lXCe562OGZIGANAu9Q0W8bEz95LawV_iSISZuUn-7kvgCX806aWnAxeeBJrf53w8O1xNGx7xJIlZ0ZMU_RGAuC13hKTh7hS9Wjb_OskTckdqwi1eUWnYl1J6Hpw18UKzBRvWdtzMYi4qGJa7tHXCTO3GyLy3gzWtrq4iiklCSL96-4QjdRxhX30OOZGZRqsqVGkS6kbsjYIDNBUrqkFa3HgjVG6ZLU9EBAoNuTsuSMVgW3ymCzIi-UvEoSgcj2kmFA89Qwx9gWo4jLMgNxA4r812-WOdEaqPzUsi4s2oOfF-TVie-j-cSlRjXynlcDE75OE7ychRD-ky1WDayKWmxN4A1FvearRe09BrF_NO_LV0VGCugLDBFwA1urs3__cyCfIC7iYxEhOaBkm__eHlD3gMVazm2hry_vTG_jxQqSk3gRFd85-Y9cBkaqiwNLhO3GuOf9m8SOuUSy21N7GzMmUcudvlQ7qfkZoAJeHTk7Xk7AixMSXyfS5a4hNmUlvNAcZSclwmu3LrCusOqTbgYUEVWkBvbUBR9CLOYm7fD35VKSe18DNfYVS1IXo8wD7bhjGEGqOd-CWlkei8yj4DDh4ToPVKj4YTttISo0jkNE61u1LGCREnrN0_2v34FxmOtAPTKpw99Nlc59UwHsxiYCFvRm5dMOhpUgqLWp5ElUA5hiDZk5n2gR-ay3VmJWNOwcP6o2rRyTDGdAmEmW1pK5GzfTxpjNUUMfwUVhg37XoxNOcLXD6spZfvS7SzNhrzXuGHcsZjr5AdQEy6DXcb2EZCB67ctIaGkXZW83_cw3p1RDkEsjCleGDammpnu0hhUA5onHD8cGAwyx8N3fOLtI3WDKhXYoCiVQDhgJF1udUOnmtyM9mMw-U7H3efSn7xDjZywV1ZFLdcdPhO3R72NC9lIvUYV3ZnHX-A2tVyOt1-rQkJ42AKtdepHHQx_L4Q7l2VKdtDzLW8nFhOww3gxEdxCnv0jXvAdOnX8A_U2Ht2-qqED0hEbCNZaXNbd8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67a89a71cf22e8-49743848','','','2025-02-09 12:07:52','2025-02-09 12:07:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42235',0,'cd-form-entry','',0),(42236,17,'2025-02-10 11:29:38','2025-02-10 11:29:38','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2025-02-10 11:29:38','2025-02-10 11:29:38','',40780,'https://biomechanicseducation.com/?p=42236',0,'revision','',0),(42237,17,'2025-02-10 11:31:22','2025-02-10 11:31:22','','Introduction to iMoveFreely','','inherit','closed','closed','','40277-revision-v1','','','2025-02-10 11:31:22','2025-02-10 11:31:22','',40277,'https://biomechanicseducation.com/?p=42237',0,'revision','',0),(42238,0,'2025-02-10 11:34:22','0000-00-00 00:00:00','{\"firstname\":\"Rhian\",\"lastname\":\"Birch\",\"email\":\"r.birch@npt.gov.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA6wZYYBE2xgtVKD-0fqJlrj1OMhE7A1x9aKILtJwZbFv-POR5eNqIhr1uy56qyVT6Sniu0XyA27GHyAZTWmhchv3hHLgqBhWb8miuAWfuhLmeuiA_sYsZX20uFYi2ymU-7J_pB38BE44ye0CpXqHuKqFRech0rjPrM85IT2U8_iWVHXwN89LHQtIr9BkcIk7QojnhagUyjXK41hucu3SoMWuJNjNk4hyU7nNE8EuGwe2OitJvk0wrtjWH2zUauj5oF36B81lck-yqgP1th857ajvhQyywcXRxV9bj4aVSTWG7ZVB2a5GYT4MMU3O8EzCXm544MEx0DRPEs25VzxKTB59hnrh4FoyOWQsSRy8JI2Q6bKCig2IPVas3Rler4c_vqX1g_P3-_tjdtroYUtDrvlQkqr6-zTywQBKRKTZZNFa5-Dua-aU-PlQGws8CNuBRifGBsfG81H_4EhX8qW36vMnDfaevu-7hM5wBLwwwWaJA_1NdWQ18Gny9z2uRFj2HSngSToTvrNZWXX9VCyOUINkAA6nwcW6wVmKc4PWpSFbN_T-ccZ4B4lLRDTt7HrQLQqP5AEl7vWlJp8lctwhKXM8mEky3Z2CYOiPa5NE1txorVp72sxTLQUXnHpf0aa961i67KudZXLxiKc0-j1ODWzyKeqgwtfi6xeoZLSBCmRVwdyA9tUx5VbSHiMdBqsiChp57ITJ4p2jdcEFHpNoQT30MV6NvLrMtENRLRjOMh6D72aGbNdIAaGwbevsUjs4mQ2eYkf-3xjTk1s6L_WGN9x503swVDQS4_qlUvQXHSMRI7TEmYo_4vtGrpiHdBgAvvzi9qlRqvGW3_yTm2ZT1a7CrVFapohvPdM8SreyKCk0hONuRPtFmi5T7xue9NZMpwJ6tGAsQAegmHaFNsa9yp_OPUrWxGMW6Outd2revZW0fXxoq0FkOjGlzcmS3HQDwN4wKzD1qFYvG1RxUvVGt3cGJGN_hwREcuD1tef9oT3go5RtgUO8LnuVCW0UKqqBdGK0jJdg_zVB50LIjracUCc9Xj8zBenzxHFISN49C7x93ftIxl7w9ZJ2ilTU2BOGvVqJX6TVFYUcVqVGI_rRE9W16p-lDJqUSUsqYfB4xfTUrFzylX1hogof51oJ84Tl-3vJIEVsAadbimISwJoe24CdvIeCOIM3BTstUcx9faDW76zosy3PiF2SilDSUT5ftIMdtYTpy8bEr7lCjmibzGAW51XudbyPFxiSVhcR4kFiFSRZRWJ9ullXqPh-te_vKaOASs9619-sacEfDoTU91v6C5-gByOcZMuOYn6y5bulcqt5CF9NOeX1jmqcWzalNA6lWLtSTEujHMDKoykmq6ZjEnqCS94nDNpPMVTnkMGlLDv7gxvapqBoAsPm_dBWYAs87ZtdBql5ZH_htHD4D9ViCf2oRGjmudkqJYzB4SgAWFvOIhRnlZx4j0LhpXzGh28zMwohvDxIIrUpUs69MJubCFuCifVmDuuPbnHEYzqtXc3nEyX_LuJBKAeutKwNqsrkLP3qk3cEvpByM1Fq-54b4Jq7jTvmNsF5bLPUxQxZMqVwPJ8Jb10BAwWZenuqyQBtc4TpEJSUeTx7fusVYcGrp6zN8lFdK-gpzSuEdpoqe4CgtD11XNzqB2w1eeXQJaIbi-fegAp5JifuYJVI-q7kIcJAtXYXYdrXIy7VYSbTx9eEmg2Tj82EOKx7wF_K0EAiGafNwtN8FKsaoEJij3eM_F7e9La8Cat0eJtXF2h87r-d584eT_2CfNRDuhAz-77Rwxe4WhNC6a_GL-pe1FCwrXruhkiu68JPc8QsIHFR4d3GXvHfuqFoA9wQhLjpV_FtlkSXPhpotfzS5QzTa8-__wRrDCe9FBYs6aZBzNXEmnlsKnx6f55icO1N63XZiX2pvqQ5A2fGBA2rLW9TiuyucvORXzpdstILDeIcb6kpJj7-dakjcPk3PGPI-TPzTGfp49vOACORhXydBczItwP5ScSo-sknasblEzuRsPRH8TnrBn7hrDUm3SDK5yV-T1Bq7LTsxzV_rkFNfX7VbaVlUrkph-eYGVBj1pRbSc1Vro3LI8fbz-QpCIQQrYMx6PftDgVBACLifPELzBjq1_7KNdwA94cjWLe-T_2Ey4x3ickK4e0JgDq9O7jp4YFBs7ZNEzKt6YjDrFqPECuQK2pBwNuTUHPpW8yjGb5-IM0lZ4sg5MuE3dt9Cyeh6MhP9BnSfhEmXtb4qkPY2q1eP4pQvsSn1XWbGMv2p3hfPNfVycANfQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67a9e43e49a2b9-75511729','','','2025-02-10 11:34:22','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42238',0,'cd-form-entry','',0),(42239,17,'2025-02-10 11:43:44','2025-02-10 11:43:44','','Anonymous','','inherit','closed','closed','','40843-autosave-v1','','','2025-02-10 11:43:44','2025-02-10 11:43:44','',40843,'https://biomechanicseducation.com/?p=42239',0,'revision','',0),(42241,17,'2025-02-10 11:47:05','2025-02-10 11:47:05','','Home','','inherit','closed','closed','','7-revision-v1','','','2025-02-10 11:47:05','2025-02-10 11:47:05','',7,'https://biomechanicseducation.com/?p=42241',0,'revision','',0),(42242,17,'2025-02-10 11:48:18','2025-02-10 11:48:18','','Home','','inherit','closed','closed','','7-revision-v1','','','2025-02-10 11:48:18','2025-02-10 11:48:18','',7,'https://biomechanicseducation.com/?p=42242',0,'revision','',0),(42243,0,'2025-02-10 14:26:24','2025-02-10 14:26:24','{\"firstname\":\"Helen\",\"lastname\":\"Fargie\",\"email\":\"H.fargie2@npt.gov.uk\",\"contactnumber\":\"07483117730\",\"pageid\":\"41425\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/#row-41425-4\",\"recaptcha_token\":\"03AFcWeA7UptzG762Xhl4yxGb7QpOwWr3swLQxJZUxA8kh3xUWOJW1RtsjZrU9IdTBXOGCCcohlhs7WbdgNX7QolltB3AY_pq13YX79cFeBW4s9qLTMODrtY5zw8lB0yvnXWf9gy3Ju4OH38d1xTh4oIb-SAeN1hAqm3lJX6KqHfadBBHzt2MTRorJ_BB-CZs7podpSVJGbfDwYmLiapoA8PT6-YlpEApYj71YdR080QQ5wCdYws6WdOAth6g5G3-hX2x1HNpm5BgAs2qX-vJCzjCn0Yfd39jkxyCqzz9YEj6id42zAXC_9CzcdlwdViDUZ6ZbTFaJGggzpaiDzJYy-t2m8gfDEGf6CU6dWEGVDw7w2eT-YMFI0OlS0_vrEfN2w1IWP2VpBUrCgWe-jBkCr3CHRD634vIA_TjrRKZePX50AkA8xQORE1eD8GqpWQd4WGW5fWVujFQqDx35xC04TDDtjV7q62ZgDz8oRwIGq0Js1OGFQ091kuKWJKvZ6sdfvH6brmFxqE-axGhQj4XpiJ0R0eG9zKfAAoujhRm6ZwFa-WQaNR9Dud4-SfI4B_n4nbaFIDQ18V1_Ueg596zAenJ1q3nU3FDEjVCUIqeu6xIAjCHImWhU0uaAfHG10BNrsiN5SgjLv03qbr6a7txMAVwi8tCIHMZTHYkP9-MWhMgH9kyLCjE85Gq-G-4HLjoAjRlJYGWzICqQp1124KpyFPRzn-GdBYhBLONwJWjPrNNVxQk_lxr8eVc2396esjdR4PyNAKn6-FIQ_iGXcN3jd0WZzKGcDLgD--zZ7dXBCYDzII6-Wo5DUBwMtAVTpURHGUYGsQGgIv7IxriCOIEXcwUBPCa_9mY3oiwYBuVGR0e8Gim8Yu-Y0qgtA9CMzG-3FhCVIyRe9UE-yvDr6hg4oHFLEGI4rgi59mFSbOOoWTD6vpXdzeWD6iOTWAJgYp7gLu4jUHeO564WBR1A2ghjFd67UXs98DSccCYlvJ8vFJsKDs_HmARl18EyUr_56qsBbeY9-xSk55oVvWCbDD3N8plzDUUpZckD7DhmUT55pwF26L2JqSJdNE4P7-UvTbv51bE4YSE-wr6V7AsyGiezEX9zffTEvVbZOiPeH8gbzmr0okaG4mKopZP-kZAuUfAzCpTL1MCqZ2y5SyF-LV9rUmTvkBySGn08_9xfsM9r_xzAnmHVIJIw5iCJn2dpzq24riNu8FJfzPDLxiATUmpGL8nqZt3QsDsGlzr4CWMDRFJneb2-8Ah3VshEhHpAh71SJo0YTAsDBMPNboYXvX-VRkDhAofih8UGUEU48FlsdyHQ8adRAyebxMMs0CTqpNqhMKDfxahfxAU5cq5x5moLRPDkmf0_EYCduLdUKYLtqyI4QQi_U91p7FPXMbagDeEu6zTcuhWIN6Mz8olb4JRAV6KPpPHKtHN4ffClOhopc8DlA_652fNEYHMQ6RkiOhi6F3-QKXfwXfkyIHJxViURo9AHJPvWOhCnpeBr9nVpwKVw3RUXqJ5aeHCZeIexk2MdEzKkO-YSotC8GFWgk7nKCcEU0VeEzeIBRV1cEa5CnMhGEwbmnb4rPaN5IP-Mui_054d4gnfyCcmK3Ik03Qb4o8Hlg6FXDcWVYGdv37ecsyzFEoHLKZS4BO85nDqb1TRoekNRH0GBNTksTFrkeUuxM7Wz15hFSYW5E5h79_LyqC7w1ImU6ui8yUckZUK5AWgoJTGlGFX2B3jxstsZjaZrub34wNXEJrarqMmsPhl_HH2afJuwt8TkZxCUD19KnaztyO0zjiW8bbh2stDP1D2loLTlOEUioSZ2v9YDYW4KCmyG5wEmNijaLdaLN95sveoKUC4OzSjOQifVVoy0BJc_pb2gbcopLt50fclfXGQnNDnjiPtPsa1U5p6N8FYYcZdWe383BWlWiID9RPdo7Z4UAQMzeydh7-mmzK1wp-WieYqqWRe0hajy54CiuKLshdnkBUFKeg5aJ5elggMmUNQkPRQfHT1DZHjPat4OPF6R5y_cBFP-X7rCrbbWgkY7mV_8DuxEFn1Cy7VlJvzLEb8C_uZe5WQhWC82rpsZ2iKhXsarxkBwdDMx96yzzMqAHvPflcw6wOnqYIn5UMke5dCiXcyPCiVPcC3H7DFBzD3bYDY9ySlTKpzzvml-SjUuAdbtPSS0dHTY8bYuuosth7M4vPls-xJltaNE14l3gPB9gLrEjhnj1TQnYlusK0X2iEfKztXIXxpC4ZHVEeGEBuiM3u1DnQ7l0sV7reOXLIDUffh8Viyz0dNfdH0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67aa0c732bb6c5-12088922','','','2025-02-10 14:26:24','2025-02-10 14:26:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42243',0,'cd-form-entry','',0),(42244,0,'2025-02-10 15:29:38','2025-02-10 15:29:38','{\"firstname\":\"Natalie\",\"lastname\":\"Gracie\",\"email\":\"nataliegracie081@icloud.com\",\"contactnumber\":\"07771486445\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vwmhRMtdJgRDVlq3dE_6Qhg&amp;gclid=CjwKCAiA5Ka9BhB5EiwA1ZVtvMQC5B2_RD_blF1oC5sKspzANPE1fNKKBkwHdTYEKIz_kCiEywY0vxoC3_8QAvD_BwE#row-41115-3\",\"recaptcha_token\":\"03AFcWeA6TnKm8zcrPeFLOqYcDEO2fiqOe-0JpxiNze6SNyEuFGB_fTwJNCUOfh24fnB4ZJzYait0kdVuGs7YH7lTOnPnyebve6zaHwA-dxa0vCsZ3o12vU5hIWyty9RyAW6QHgEgkxH3rX0CZf4qJKGTiVBH3puaJw8ySSGQq1wq2iIyJulsj44l179ha-p3uoNwdhCesuFHjwc0r6k0PcjtXCg85OX0_BhYIrlYvLfPsUWnht6_MmtcxPj7uMxyA3dP_7q2r9ISVheik86z0RcxWdOodbEKLbs8l7ePFPuNgnTPq8PbGdzhbaDixRLfpFika9hHEmc2ctuOKKH1yHxC1gJM7MYYsKLPH3oKg6elIuSSTH53-r3priVIIcSFLfuOIJxXK16HPk2IjAVaS6K8cXXdAHT3nbLnAelaXC4qGXYt0DiM-L7GDuyPzomGntmZV0iyE_zmgoLMAYG9lgQ8k7nKBW5fMhJ9ts9vIilPFyAS2-6eoa4hKhhfsVbux72oUj_YSVIMa-2v_LmwD0y9yh-yaaNS982MZJwjrVTLlEWlbePcVPlfTVA7s9daHrkSgXYnadnp1pmb9l9HCqX6P_fSWURG7aTWMlh6gh5yAyLEIw8yjiU22GQugo9W6LE06q6oaAwgLdn6rb218qhOJzvKMSnbmQVsUtuRVSgLZ4CPUcxbgwluhaYR_e3xlplscqyinxUsapAdO9MNKNlR1IT1VfXMCq-DvaRVRktN3qbJJLpDJEe0L64LjHmQY8dq6VgQO01CzCjqoV09M7s8fGcqK9lbYlVMVSq89pj-Tt8u7HBfsjRhKruf_8nL5evxrUX2h0Da1SF-HSqjgKzpnY4DnqqsaVPrQHfVUaTPOf5ZwFcDhfJ3AARoJnL8Ey9k2CtbHq-nJ5fE1IeidITQn1lKPji1TQURzvEJzJJ7BEkdK7a-YIMwyodLzD7KGdEVAsSa9K7Vl7h9SyatxYcfDqBYdaezfaG249pEazjFucehTpbxBxvuo-7QNsrrsLl2N4nTmFjOEvklK6GqKauIkBRfS5MF8smk7ULOoDnzSqiLqb3kkjLIsBMjnDWsl-V7TJN8-a-m8QKe30BRG_hPQEhJmOJrayR69mf3e4FRF48EDMbXbw2dcUodc7qLUNJxsd21N6q3ykLIsC-OuR6Y5t_H-EF8u7ObUUgKgdzq6rW1kUv3Towjt6KKP3GI56GgJtI0UNDAfCqMDOCYydOKItRvD1u13WO1pXsKBFeFhVgPNqxgdSijKmOTIZRMJkCHTXI3q1U8ro-qK-nL96fctpvkcqLXftHdWnUQ0LttAGs6WHfkSfC7KVXqfjxYXPZwkupBtbYzxa1GeOaguNOoxdUGWIzhFFqNjTk9W0M6y5LICMXol1us3SUvtYkmtOJ1bWJAbLP7cxs6oAAaMSliufeHcxIQW_ve_YyVDJmr5hAMutcoE0_2BGOQ2s-TIVVLF6Q5RXOw8hPSluTcEJOA5TXVPpcdhxXpKsQGHw_s-0Qfcn8mCLvHBV6s9kfKBMSJEl8CZcZhmJwdG8O_qX_0oPmmcg86BRwbPC_IoKJUcfeYwWnChSsOIUajDgmZvi4WzNlP38dFm-kYa4DO6LhZIGT1VTWEsXOqBnnNxpu8rEqIID9M1dwrGcKph_jlIzzs3I91RJnVbmttMXnVrqq251mKuGdQRMPe8rOyhD7dlQtvElx1fZUb-YmLNUMIoO-O9xORrxfcqNuObsA9iVIoTLbVaiHh6N8pue4amSg2lC6gi4Wxxo987rFHaYUVFfyMUMr4n7zPk_v6FJcYVkLnPm1iAS3-ZpdxZ-Fn6WxyHU0ZCxvsyMFnJj8VGcTiXiINPXk72QHbyEeuQw81suz0UYS36egHHvXvmu8hPzHbqL9vmLAR8-ENzSiC6vcRq_T0IWwwHrjgGrsANQaHlXLmO3tjHWu6UxjuMtL9HrcjQf06gxrQAKvLvSYr1IVkiHNBCZQ27YpqoU_8n6ZW9NB7aqQKpabVvzI5uueksovFHjf_5Z-XtLJsxSDpf8C4LE88X7H7mADZU1Sefuw8BtkJS_g-NNUfUWS6JcEVehxtwXoWQIsIVRbI4AVuPBAtxfcuPw4CF0Pv5I1yEOFT3T_-JGxJC4cRG8ZeembuX0SeFe2N6aWqMVMkArglb6hQF6T3GqL93vHJciLTgNdho_FzJ9CWxIwylc4yyAhk6lEaBrwTekvKJYIW17DwREASsJWCDIUP6xgg1r_MPKqukXbpJwxBBw9PQV4XkXiaUPW6uhocpiaDTTNu6cCVInS91SpVbd53XfOkjft57ZfvX-g_Nbmv8B1RlJqMfvQtet7bGUA3a2CVA80ODG-74LZpAtm-WCprK12wR\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67aa1b521365b0-64283015','','','2025-02-10 15:29:38','2025-02-10 15:29:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42244',0,'cd-form-entry','',0),(42245,17,'2025-02-10 15:49:30','2025-02-10 15:49:30','<strong>Biomechanics Coach\r\n</strong>Massage &amp; Movement Therapist\r\n<a href=\"mailto:bodyworks.sarb@gmail.com\">bodyworks.sarb@gmail.com</a>','Sarb Donin','','publish','closed','closed','','lorna-wilson-iba-registered-specialist-biomechanics-coach-personal-trainer-copy-copy-copy-copy','','','2025-02-11 16:30:37','2025-02-11 16:30:37','',0,'https://biomechanicseducation.com/venue/lorna-wilson-iba-registered-specialist-biomechanics-coach-personal-trainer-copy-copy-copy-copy/',0,'venue','',0),(42246,0,'2025-02-10 16:39:44','2025-02-10 16:39:44','{\"firstname\":\"craig\",\"lastname\":\"johnson\",\"email\":\"craig.johnson@myactive.uk\",\"contactnumber\":\"01457842272\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA5Ka9BhB5EiwA1ZVtvBVHBC2ChQBXiYEb6G3H3L86TSLAjjst2wREUInmMbt1TDdQ62L4URoCf0IQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5chCrkC5bHOm0iJhJ_gm-zRKUSM07J9Q6aSmLOR8oXplN8zXprGH2nYG-nYeznHN-2pca1E3hVlbFUDgC4VV3R8M32h-yzXrpiLi2ZbY8KbIBBWz4WOB9M27dmkWrlWqFQo_py239jiNZZ7SohKQEeCwXdMUY3W1Fjkj4zu4iNN-QoXvNZFR899bLi1PpUW7ItY-LdwUAXrmf1Yo63MfohCcHkW3ayQvNZ2m_27UPQolcXiSLSLX1zjzIbf-qNsX2nNoosFXaOhJqB8XSZ-tQ2IF9zChbJLocAXhGwNnfWbrWwvxqWVQ7vQTJ3ozolbX3j6Q5l8YI2Dw_ih_HELXpnhA26bp5ZQxf_EQMHaGy4GdwbZzpeeihcbweCq7_oofiW422XBUfC1xXQvCTEu9cvfJXtEJWG8lVYJeMe76fqeWZpDABTIB4wYT0vPjJjHqomE5FLZgQQX3jZhLRu76glJWJ0ehUfASmKUlagKSKfF38eb_CLnTRasItWusR5fqJeobH16DJNtVjNoZZ_LTJWU0PIyjYgsl72zWSauT0BBnYMJpIAGHcjBbqfuG5f_G4XQkg1sJ6NA1BUT1oCNA3oIzxDE2_-fBQ_NYvHp75WXTJxl_mcu3P_F7rudo1Zj_07BVN7fvncPYABYMapb2Bjo9MZwu6Wl0RkoPb-tIcsUIv8snFJC0gcpsAI7F-wvswqmHnG6Bj-VFCmnV9BZCc3L7x6kRwXYJcsM_eNNXKX_T_N9yaA6FL3hcJbLXXzW1p2DXJ_CpGkLP7gAm7jrTAbR-0ZUp4RCtSgDiPQEJsbXddRixKSGo25t8dIThEx5LbWsS1pqeMvtKH6l9YunAJJCY08MEJKe2o7MrnGH7pjYc8Ifbakc68VjVWyKk8-uY5sh7PGkaldaiL7mm8elRRL1QxAhJrko5kMG2IB7vK1qCzqvRA_7dWrTwGNP3SG9AmTPzUF0sbpiztmbSx4UPXerodXcewj_r0F74hp5Uo5HrymX3Qc2ef72QoIrDED3_i2tOic5ftIPqhSF-yh-LDlESw8EEt3MhUZ81YfAep3c4YW2EbKlzj7xShzyzqA5zCfo4Yz0ByhUF339jWbtq5dqObs84LiCfe7kFQeSFQOyk17-Ec3Zv-q8SxANdM6jXGXfpc96d35QnXFTtErhZfDX-FjdvAddA1ncIDbcRv4L5OGK5SMxGpnRWe0mgO1Xr6C7PVcV26pyDzpng6nGAe_Zs4xd1OPdCpB9JHFUCbOg__hE4UbLWLYaxRbCDo_rtPRamrXgcZWiosQLwJb7su1hOn3zoBmgTvYQxhb4mc8kHCWyw6fI1oZOMPEDMang3hyOioNgFOKLB8vMNq2aEHSD30UFkio_3sn8NTS-Le2jkNBxyjuUmVmqB0n-SxdImqdxkn3o_5CwTRkTQ7V2bS4bYnMpeVZOA1au6Xz8vDTtM0PuXZoqKCBgaZdsdLe8xdMl8R6ErAbWEk01nOi3tg4xgtstXnY993s9qqj20KFf8Wef0mgGhZYGKJjlBf3_ITfPXKG7t4uq5x_qta12x72LYbviahKelkdlNJI3K3rlnnIN1j4A-t4n82i65skWuj-iBOWctITG23afvZIphWDN48Lus2emebCV_6ASNmrXPUjbaCpbBJCsItCkfHYKL20nF39qp4fDP21cEEJS9LSGMVIfw6TzrSt_hxTvemK6oJNpDjyXzYCq3ChUwobN1hqCvDSh83YBVTDifKSmVLTF_taQZy4pKMVbssTO6ZEBSHS8aE0EUCvwT3lzFIEZE85y35TFEcX7fgo7kYIyHqymcUovROSztDCaXLMTLjAfn6dWYWQsfihvkCd76r14RtqJ_AXe0TAhu-BL3vRmSPA07IgAVZvS4SyoE5etgrXE3JOsGbISaEkSK9L7hyxaMKdY3DNM1UJQKYzCqN-BzRoDtli1zuVjfo-hC4OY_S-qTvGDKsMG3roJL0GFwx1FxBnBoXA4xBZgK4I-JpxM_cMFcn1ag\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67aa2bbbeeda42-39990002','','','2025-02-10 16:39:44','2025-02-10 16:39:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42246',0,'cd-form-entry','',0),(42247,0,'2025-02-10 16:41:03','2025-02-10 16:41:03','{\"email\":\"craig.johnson@myactive.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"1\",\"currentpostcode\":\"sk13 8pn\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA5Ka9BhB5EiwA1ZVtvBVHBC2ChQBXiYEb6G3H3L86TSLAjjst2wREUInmMbt1TDdQ62L4URoCf0IQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA554B6cv_gMXe3F_BC3Wf_IegkQo9aTN6wqrEknFYYfk6bDH2rE2-xTsGRm8arbWOFTkZfXrMz4cDb4Ka7gJRKE2iYRAJXH0MhO7fiG08_ONCFIWNqPTt60l712WgyWH8BYkb7JYlv5bYY0dvYWUxWSFFIh3noGVVB_A2FUrGn7d_2qafdM-9SBkusOX4fdB-GPJuk-vab4Foq53cBIKu6dGCcv7gDbxkPqYYq8bJ4lCeBZZZW-Y2QS08o62eBmLd3FjGf2rvqXrB_Do1NrnzCu9W4rlfW_vdEGVpBrAFsx1LL1SVci1llXQivsJAg1o7jNqE-wSPp40Dh90Olv4j-pKAZ7CzAdNIdUcn65cBFU9Q_CBQoeG2UYzlfC4w7SidFV_8vMb8ACcadtFGuxDOPlzmkgEFqmv2upfwY5KF1dtixvg381ZWHDnioxcGMVY05Pgzoa6ssayaTf0yWS-9kyd15xb0cbUcANkEsGtt77-rVIFeg5_kTOUfnsD_B7ItrAAGdX0v0AqNk4wTLpd1fe8GC2EQX9jD2FaidgcE7Ld-rgAqyBm9DLj6nYOvO9wEu8k2FXRcf_MEwSh9zin1FJeSGV4HAYfnMfBgsKBfWCz0ZoSlOYDZXMh_mepLOxZ0HagVDfNQMhOjIdx3HcgK8HSfPG0hizYM3x3ETfKJ39C1uBP7wZSH5zL4zoz9mFgYTSmUWv9NXmJk1IxVPCnImyztanZTvRQoMfQieBPMBA6FsFnJXuu_vijUkVIeS9VvY3T87h9F9EaMa7msBR_EWqKLhDlNibev1OswHixx0IAJc3SadGiEKAeHm_zOWiMX4jiDCntheGxcTdlyEx7UNUPrRGWyMRQRbixIcAdHZZAwIrgKQvJxN81vA_ws23JzrrUtBmxZ8v0TWb3Z4-s6sgIZ1NzyyMRjiBGekFvN-P2NasqpcAGoekYvkPYzOFdp-n9W0_aco1p9pf0JriaXE5NzWKvK5V-3mQtja6EZguIlQJ0T5ShxiLE2ZWnbN6m0cm79HUoTlysun7tlA2-FFPecgFhMQ_HRhRjfTOSG4XFECHAkxC-qDbDJrobwcn0-paixx-zFPxdAkleemoudhKdCl9SnnVFBFDL1mD78DhnNk2oLkHebFZE28QRafj_7_xoZxpUjwDX1grslxUSwzvjKwNb_2waUWUkTpp_WoPsift8o4c3Qica9IGEc6XCvit1MKPsh0BMf4oVIN4lsbotrU6FD9ETsCr7_Bfnq95A8FOoWSrZ2kTHTc7-B0E014PpT3QnewGCeMBGaoB1879tL-OG6658dk2EFgByO19R_v6qphokGKYkJEuBAOgcN7kgrUCGP6DY-HCIZRDlYb03IcrY-1uK7qrSFX576aGGDdvsLWW5e39wMGKtx_lcypI7j0uk7zpuIjdhYIxTNIL0cyY-YJ_Em2Fq08b9dfKDOyggJFK6o5fMQLrRPjlDpvD8y6JU3wnxQtCCAJGqMwqWzaHZyd_uIYRntMawvJ5lCqe8ChLcDk26lyfK1b7l0Ph9H_Y4JFintQtvT_VVSWY0NnvFdvJEWbR_5_0INpKx3MMsEunhiwNI0J6_-Q7MT56t0WO2-p1YAPnCDvmHHlBuS8otX9s17PmrDVknYaKW5nU8p6awMuobhO1yr-PnYYQIMGduJBU6yKUk-5BdGwrZq0YVUTX5JLEEJ4tYVY6Dvg8oiBU0FikwKdGJJTE8mfXQoJFOPmM_JfX7TAh9sSPh_9c9HK6c2WGkeQlM2gg97lDiejzEvgd0VkRLuVQ_faUxz6yWZwGziAbZh1XXLO_2PEbcDFE4XHp9NF6pZ7yatLyFoNDCftTf2FMlNy1zQUoD88Pj35z6FyD3rgx0fZ_BjyWj2YqYJpM4bMCLtZlpBc-QIRx2qtZz6UEl1pIt4aEo9RvX9Bo0PZGafuKVThwhK9-RBsDXMWLRDzaXgewqsHANy0CTHtTpVAt3MDhRMxXoj3cjzFbaHvt6Vn04PAmuwqRiQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67aa2bfb6bda88-33758204','','','2025-02-10 16:41:03','2025-02-10 16:41:03','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42247',0,'cd-form-entry','',0),(42248,0,'2025-02-10 16:45:00','2025-02-10 16:45:00','{\"firstname\":\"craig\",\"lastname\":\"johnson\",\"email\":\"craig.johnson@myactive.uk\",\"contactnumber\":\"01457842272\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA5Ka9BhB5EiwA1ZVtvBVHBC2ChQBXiYEb6G3H3L86TSLAjjst2wREUInmMbt1TDdQ62L4URoCf0IQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5hD9HpSCynKVxOWXcfAI-B0GcypERczuDvHdwghZj6YAQA2HXU2akIRTvgYPy9AqOXvc5eHcIbY3Uy8dP2NM0nFRedmus64eCTaZ3wyZSGR_zifaD3ClqkNTkXpmwVMOPZKRmKuBkFM2FPvwrH-mFly-jItrZ9NzFkXLfRYc-Bp4V7se7jKvJsn4nNF9XEXJcZ53rvvQGoYevFrFE3typIdq_OZJHgTqp0X7sAbi4N1y2NKjJhkt7HU3JRi2jLd1_lP_yHqMhBzM8fltsKsYT5HcF1ASVesIgVX9rFOmdaeCVqzOvpfswBQbgLOfPfg5tY6K7edoZJGNx-LnRtRsVQV-d2XUEDJA4wFYngdXIrvucNgNYnQZkGX0O7FVLSOs7hJDvWvcLAT7_SKtW6D2sTlzMdKlebHgCdv_Astn1hkeHXZ4Db2AF41GRvtmFvehsyB5ts-RVjl_biIZ7vooCO-gN6ve9l5lqd9xdvgdD_r8XuzpT66p1qy6bKhm7ZFFiw7pMhG4wu3O_uO4mG5qclJXZXYRTAjIsJgAfRSNNUiDRLfvliVC8FdDV7kiXmFsgOEka37YPlawAc6H1YVYjuxLVTe4dIfMC6m3EnNi1FRYMlrPaImD14A3mmv7tG4Tp876KCLoXESclHVud6au-GVx-T2jyfe-ZhX4ktsnz056TnylLv2D1AJDNv1TirebxENwQW-r4ifg6m0Q0z0Xq5qX31PWcxBWD2b4aQz2VgD1znWu7s8Qr6IshPOLHLjTQXk1O-yV62RYfQ-op1dzJ0Mfxd2ipdlfqlcMcphkU1g2UdN3sRx5zbcGrWh8d-o1mNUjdKtF7_dLezXa3ABYYKtNLaGRE7juZ4AGlcPa21W8pxsE_3fJbANfkMIyhEtm92XbtkBTc7NJr6PM6LvAaJWHQTkWBQWvWWX_lEdPjCziu-HkUnA3B2Ljc0ngVFHH5qoIa0QMcPcdiuY5vWL4VMPIokEPO-n1DvMYnMwNGDU1R5S9ySKZomK1fTPu1vJ_MKy5GhGOsAnGnELkNVXKf4CKAErJZO6XuXX4U3s20Rx05k_7hf_ufPpdeac57vhmqesCESZdnv_1_u91SVBtHtQUfSZmwNApRyo4YulDtt-1BZ_TJxtcau-7nAJ81qu0ZfLZDhqwenlI2wcyYmIJuLsgdBgqyCCwepGoF4VaBGkTpeN0i6IekZOjLpsV9Cx9ic0xacnkLXqzIfYkekaRJgrqli6rZHgoiHE59-iFSTD09N4w7tzMSBiWp9h6Br5IAq6TvtuxVRdYND2dvNPvr5uM4MoYT6WPunpWOZlp-tvUrIlRwakovoloXGtAINTM8UFdgra4PuPpS_Xkp4rhdJO09IoDFAHpHYV8eT1P_I2BbFNxkyBzc553FIfedGL4WN9M3koW6USKFVMb8YbKA8fHxXP4-Nb03pdR3OlPlwBmsZ3WqasCGrEhpwn0Arj_7H9Y7ZcYgw5DGVJ40PZPJpImy2e644qRsHVtSC6UXP3r8FTVp4GRgQR0swJQywWtSh-KGKAjNSz_ni3RF7aKA6yoYULenZyrfyL1PdwjN_oyuVBQxqk_uFducrs-4Ag7boQhnc5974zhNWsTlEmH5Fr_NUr-8BcnisVDjd41blE4WfJDLoZCZ03i3b6RtYjXsHEzVtxm2P4GZ4MymW-s_0AOGFl1HtzZV4XcUpgsDKZoSHDpRRKPkjOWurBe85b-Ml0l25m2zJ6eDhDNQkqShr-FoQ_-VBFwGqSdxbqLynOFTKlbbIlVvTtX0lEnb4wpoGMC5WbQr4e2iF6iy07KigdMidkM1kxm2JMZoL3aG1NcmJMjWEJ6hd-scpEIIAz87xraEU_jOT4YcldfD5_TTCttBwaAkkIJun0IoDhldwE8E6mlQi3u80iJJdQe4GNzbcni0GnwkE4SMQ25ORFIQzAa4qC_UKBHqeg7asGXQhtDbs8PBNQQkSU9CLSLaWi_FCMnEed9aQRcCi0zG7M_-3MvAyEg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67aa2cf725baf8-27237512','','','2025-02-10 16:45:00','2025-02-10 16:45:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42248',0,'cd-form-entry','',0),(42249,0,'2025-02-10 16:55:32','2025-02-10 16:55:32','{\"firstname\":\"Ronnit\",\"lastname\":\"Saxena\",\"email\":\"ronnie.saxena@gmail.com\",\"contactnumber\":\"07930294407\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA5wCmHFJkUOspN9IIKBQk108X1uO3Mq9WwwF79n_6eihGcC0mIzRI2oFkZhZ9_TinVaoeo28Dz8vOAfImKUG2UtFHPRQ4kcNY8vMe5p8w0k0-Ek8I-hEvSzZDUhcmKMWckpdfISzelec-9aCsif9zNStSXDabhBW7GQMinCTRwKmPwbxg_O-Xg7wrl5y-cRBfDAwFpatWS7XyAW7Erlg4P5PG1WIx9qNmfD8VGvFP0tY4LSmEjIVKLPNhfkISMem4JkTL_VDBRdryu5EBCWxDUH-JBYski1KTwMUHFn9Xxwl6fwwyTuVpSdymObO0jBtbXeuZV7hoJVGneZJb2OJhXsZ-TVGqWZx-JMpIhaiwTRPMIcGFGetp0Sy538NlK1BFMPnvUGWBoKtjHnD-UYspQzUXv-8BK98rBu_IJxwuANdfosIAON-J0Px8rFFF9SykQUMqoxNCV9uEXCahW3judHEtgaIS5SSkx6cGkrw36ZNV2o-HZioT3FJ7npei1XDU88em3Iprr7GvJJ_2wXaA00Z3E6mBkLvV3fs8efnDuHWS0ra7Q_DTkFknFN-IoQDl6wbxrdZjr5Q8NKtTfuJMeAvND_6YxGQokarEbVDNa-eVbKkCzg2BSeW1d2EiZSCvj7qsc0sDGrD2SHHZ0jMDq-9S4xir9SYxlSl-BVDNPbjaQ_MMd-jaFZgHAotAkBlsaYG263cjaOwjgRdcTtVxvzc5Jx0i-wfzDeLb3u8FMSNPh508lJBEGEZtgQEgyZ2ckvwAs9p_DHp93h0isqKo_AEeCtojrpc7_t-aRCT4B6PCIfVC96DhGDdYjkUSdOT1WwkhfNL_m3BjAS-_IibPMwKgUJdbQHV7h1X1SzZCfSxxWc_hKDq7UcZiZnFUvi8nNfd1rz5GcDceJzJDx7kr8uozGJsDhsMBenBBVK9MkV6TtUeVDwk5M37y3dMZ3jfQcP_5u1GdxzJChR7iFNw0jGIf-qNFOp0GKpJ40mhrq_JljSiC4Imnq6zbEnoFnvYXpI3zMGGh-XgdbCNJO3FajQUsqLjt9JmJiormkYmjaSdXG0KhFFBDk9gg-Eyjc4oiBh5okYuOJNqFeM1HRONbOyHUKpzhYo7tXBBYpg-iv0hi6N6fc-1XOteN-xu06KQbNmTnVBWWOSfQ80qjz1KO9oH9v6GLioSWKrcSj30ebkUpZu4pW5gVOx87n-r6E6Zav-kXd27WW95YOhOqa0cQvRTMkecY-aiSx5iv_6DXx2YGnlCwGWkY0Pu-o83fv637QMS8wOzdq5YBMGVcDz2_kU0OoQlOrxYjTPhZQhl_DJGnKF-LuZ8bkhB9M1rmPihbIgnRPCUSNnzFRBD0FVunGTZC2IFfzaEJT0TFpw_0xM-9aYpxHLnz_6L_S2xWsJbXmHvbaEmRZPOxmBpWgd2K4lt4cOam0oLs-irFmyDS0b4WmA-wNEpOSPfLj68OnuM4tg62ruLD-I0CH2a8cvEUK69WiB0XZAqjcxBP-dfY5xzYdmbQcKDY_go2uJdhUpQFP6rOLPGME_oIA3kt1D9zZZMAr5Os1Sf0yEErqn68hDZBu38QJ-XqKsqbcS43Ke4bPX1uJ3oXKhVkY7Lggz1LPQGtpiQhXcpIR4nTB2RkXmA0La8si-s-bY33WTDLUF6rLCT0T27k0elcX7yVsBqgAGON5IZw9AjBai6BjZDjKe9KSe_U276ZPacLndr1Tw3lHJTszw-Uc_qFl_2NZvA94U25MFl-txC5Z4a8KUNL7s4tgwZchftawFyYPbJXEd8fN2yR1IUqc6eUi8yJV4yF2QNDuxT7yk4LEnV-O-lGNks4P4txTaSdx_5PuWvb-s8jmBi9cJtLNidzFTRdpV94DKLDyD5yV6GicAcUFgrZ3zbPgDvcunvJncMT2yE3V1l0hT1t_jL8WIa61FgD0lQ2qWHPeLjKNfkz_ND1Fqf-cL8J3oq5qMuEWy4GjtNScKCGuzm8qqD0o0IXsVCWeRCL0yZakZ4kFMzFjaROr4alYw1PT8LwHpwarCK9GabqVhFbXYp0yuqIBd8GceN5LfkUFD1fUrz_vLQvfsPxllU5pK-u5__b2800A-kXDcecreMNPtOqb0BnfFzxZ_euJ6OyP0jCuJI0ECr3vnZeL3_Hsa_wlskCfhrwHTlbsxC68MqNIEwGORRCL2IrnzGrMvLDkLjOhngpIIvzYg6Tn00KFv3sf2ZuerJHNB8SeILzbR9qyXZxWsTDgbMyYzVeNwdVQo9fogZWQjKUV2CsIAxXhvyfVP0uJNHMYc34K0R2oUYMj7KO4ZfP5e-cKReXeBl_o8xttdRes5x0zCEG3iXJKXYW6ABiYeZ_4pgxRihHoKvWMzAhtS\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67aa2f4537d808-89931554','','','2025-02-10 16:55:32','2025-02-10 16:55:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42249',0,'cd-form-entry','',0),(42250,0,'2025-02-10 16:57:51','2025-02-10 16:57:51','{\"email\":\"ronnie.saxena@gmail.com\",\"interestedbecause\":\"3\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"NW9 9QX\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA55J6FHdMAHraLq6_zYq_SK_F1YXGjasJnbCYS56Z91_5zL3tIaoYq2VIuwlLgr-GX-Cto4NriDPIAk2TMTbKGlfhWbCkuNNC1c4MNlN6_xVtksiQoADYTcUZ2tbwDmLYnuCVhigbXPajOs-9wfjweZuJQwQbJ9Egc1aDVRg6xmn64k0KcT2xeJet7CmtfT51DjD9oyk4-dT5dLm-e7pMyqcJ8mFcfd2S54pDj7Gw242BddkY_dghFQ30rSL6o2b7M1RXTcu43SytotWP5FH4vuWiVgvAu3-l7h2q3b5pIi1VNqR1qSZe7chJWDuZcbq8x-yTNhJvISwLBwhaeCfyO4L8uuxVPC4-r8BEmcWDbrp_qWXZJto1cjlDaulpplUGB8p3FhuczUXFxf4xQ42GRX4vat_cjx-mJrmf_nMAg3p3Dp1ESE2T2flXZmldXYMi2br_wUUTLQrD7-HzkTLSByJMIdH8z_uYWPHrQFtH3k7LFn8AA6_4X-oLv1MrbWkdftKWOEKz60nPReUh634a3ojEDvMl_YEbSLqiWIJSIug00Yd2-MuMaE3quVkVrS5dCgJMZ98jM_qg2Uff41P-QnqlCYiu1TqZEqRtmlo4wypRs7RyMV-zdWNy6_uEHl0OSOskgc_-sBi999VX1npt-Ym0pQR6indcD43Mb0g4IW-L0Hgbnw3G9hRXuhHKpdoUfURPJanlAczoWOi4nnHk2-P9MDQFa8tY21_MM-7WPF75-z9vL9UsLObjncvTGRH8F7jHmmAVPxTPgMWE7ya1ERufoHyL0phKIQcywhDpwvyYcgk36dssXEh-i83FlmBoMVTOIfNjQbTPUfsXZlc_tuGK2EWvq6EyXt4kjZwq2iwEGH8oT6GVxr35LZdK8gCbmigSiLLftdTMC3HA6haCEC0W4nqPIRmO2ZMrBk9zF-CC_mX55bW3ytDoxlAkInzBhFUjQHIBpA5OzHnz7f5HDvVa0sI7odb6R1uCfs7M_6aaod6xumXZXlX6yKB8h9XOdk_4NewbB7ONyaI_xj4sR0zgFMR0ijCjs64m8l4cWTUH4cOyYE4uA6bRgNQXOUuNCjh_aDjYBxGGfXv9wpi9N-5lNQ_ltB5bwlIwLSyZvXC1L8okRR5PlAZ0NPmE0FBFWQ-lBZ2-et4SoY3RoGwVM0NwBB7ZlpEQ21vRYbwdBbEeJEnA7_xDSFxtx2TIz45v60pJc5Sj2O_7NoiSNXD9vgAhzc0PO9iIHwkiU0M9YaoGbIbfqF_HPZBt0gBsN-wkr1_gJgnzzuW5XhIexreYj9LnXjG9uXc7Swy1MBloN2wugLbyFhThFYfrnQ3LKYwLSl6r9euw6Xl9go_4H0cE44lY6onsomp3gTCwZvQXU-vB6gs_RKedzTwoc5_L8cNyx1WEIrACMUw3ym1uFW2HTaTT1MolZJZfRDHN6Ja4ZlhqbiWXVLDv0P6ttgE6sm8r_XO-zHdMBXMQV0z9CXEw_VqEhhzpyjbxzGrcNQOzm7-s4-1U1S0HgJbwA1HTMD8NrQFm39oCv9n9UVY5eRzWmLyCjEGuNatt9jfhXIKeZfO1rrD1i2YHpm6UqeizavF04_RYPOw12YSbxirCWYmMOdrHgFoK-CZg_ESMFC1SGNQYREOD3ms9cjQnWZhGKNcG3wWlguW1K9mmjvKSgrSjqvSaCq9PbJ6IxM7oTWJqsiuyabylPkJUAWLMohMNd557_GKOY4zl88YFS1GfZ38Mvn8w9DRiFo1iMq9ndu3CoVbbkc6IjH5RbGDDWlnfcpPFcgIjX0tkiiK0yAdY0IW6n5cKP5-JY14ve71Xa2rieDd73rXR7bcVdH2aN0YtWyNq3-mK_seHrehiVbZ3XG4b-zCDHzgDyhMuj7neUZuiwqJImYjbs2qKwsH9Oo4H32RATun1s8t9WCObjFfRZIOWA0aEg-W2dcXAT1qaIZUHzzIT9a4TRHgGI2Ch376c7nkepSNKr9ub6Uax-D5LOWQptxO0D6cWUSyz4ZXqwwFAuXJJs3PxgxzR_THGMl1cSdVLDJ3RJwbojwT0AeZTDVSfFhMb9dmQZjLtGMVPZyGzElIgbDs8eqrCdMzAOcIDieyQWIoBhQRX5FIp-bAwqwFsxRX93egkQ1Rrx1vUVbeA5MVpdw82j6VZAFuYZeFjePd0usAYiT-QCZXAX1it54PzrUxZ7dim1wPvMWldYZwZl2YFFAVg0q-bfbhbcKYVow_dJGDQmt1dckBgjD9d2REXDrnHLSp1nEJaeaFpD1RXGOsV9aeSk8f8DoSWu28PBG7zTnitjHwg8B4FMWVSSQm056CcQHPZmLihh6ptZYIgwQZKGY9ys\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"15\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67aa2fd5570d27-73146314','','','2025-02-10 16:57:51','2025-02-10 16:57:51','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42250',0,'cd-form-entry','',0),(42251,0,'2025-02-10 19:17:20','2025-02-10 19:17:20','{\"firstname\":\"David\",\"lastname\":\"Warner\",\"email\":\"dave1warner@sky.com\",\"contactnumber\":\"07545350715\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5FiQ-Yd4UOCbMFbnJRL8tvO2uvy7e9wIBaC3vh6auGBY5xeYIo0TX6H7JxyFKcBJrjBTKHzn3Nnx32P2T30J33a7BaTjyAsw0rKgK4q3W6fI1C9YIMMf_SgeokmdBp-w2f5Wry0S5Dd3DeDUKJOp19zQqB1ddgL0muR0GLY0nuaIDUNrBNTj9uNvQeldLYrygcZAzo7ItI7WBCOcZmtr41aMFEQmJyNv8-8s07Bk8_dzfJZjWieWeGceeZ0cJ9Julor6gXA9rvrmF0gZLZamJdZaReN1YBB0M3oe9abCki9cLdIWXRiB2316v8dVXRReRLtdBg5-Ahnm-7K__H911Z5TadytdwsHgvEdNc-prRsb783UR9N8q-hu4ONytluL5lLE9CgEWHv4A80f6rxrUKWP-TxPHvO_GrepJD4Sibyt4GnGCLCZ9ZmK0-o5VbMcunCOsGqAnxLztj9DkX9QtUMS-9990dK0b3ej_OKHoESHMPJfE0vV8G6IwkOtzxucS2qwBhxlU-qsPueX1K5auPUqhcHlKenoZsb4DQq9YuayDLuNbJV7_taeSWhgpJ4cnCtRGBNFpB9GeogudfjbORtAdATXLoyudGXyP8mUbzd_Dvjh3T-65schYPMob8JFjCXYtYkDSwrHp47V4Tw7mfeP05ZELsyRB37Nxbfg2RjAb2cZIvUwwx9ZuKdTgyDCSkEGEmh_inXT_49UaGCuDCM07lxIInF2x7Nz-pSIT-rpvhbLL-Gvs9wG9Rf90Gb_o7MpD98d0aXG4lH6uCXw4EllKdwSuVw6DP3rRGQF9mLT9oi7x-UQoKSC4zLQXCQAIvTj-9SsTfE7bYMarqJzWuoThpRp44__DZb88f5Lly3q-Yewto9fmg89jrjO0wYCc7eU4ylqmNjTucdrU_IjDW13-Dld4pkhHo00-3fYI_cM3EGzPK8lA7Z6Ph1Z_BTbWl4p5a31H27KKvr_C1-s9bbhHIRO01I__oQKTEGGwee60iaU0YNF4dAplx5sq2zsQQUZb0BSH0CTZbI64gdiyt077BLGZO7VxC8MBHrs6gMkvb44MVOE9ducR8vQeyVyNv4-SEM157ON-PPueA_UlNTStowg3dMhHPAidrmPK1sGojO7UKU8Pp4Y37lQeXHWF4b7RlKWaZtOE6GsmHIO5bhtsShJgvarp7gSCAa_4agtH4L_DNIkDvOT_qbcJfA02H77gahnmt_qzLy64zU1tbCr1pWPD07DN2Os8UM5oZwSzMk8F_n8gGxyvMKZHqSJsWHvqYPd9fHRd0q_qQeVOY9zEJw0gRSI_qLVBS1by3bECoN_EFgD5ohJ8qxERqw9OCwKEaIDgsYs4IJi2gZX_nvM2fj6h2YW6ytLOlJr3yf9u8U-i0gd5U628tD2kS9SL4fSRT1tZg_n14WvR5oNQNQ8o8g6ydkIwQXjr5PMZAZ4YP3rtCJP2OsB_lI0sXaiSMcB2OkR9r7-eafPGtOB1yVt5v4hY6f-tduj9erB5LUsKi2yfjwopx8iHNkPp_-6sTjqBXR0N6dqcrWLfKM1HlxewIdvLketjflGf-NUx_6CNfakIL4qjV70WP9KqBR7zRv38TIouKY6mbCYNBGP7jWy93r-9yBpzvEFN6iZ1uE6ELyfT-YUXErqF9z79_KfgI4Ru_zy3q5CwQkT0dmzyRbL3xpUtvO-o3-8saGHPr8cZrJei9hvXnmSqMQF2rkKhRLJwdkr1QZab54fJsBhESzjZek1YavOodCBj5pzrWGHTOHdp80oVFXHXY1IJAh77c4VyVH57KbsFfynSFUcoZNGpVHOUUpcgHJ5PF7QKEIm2HNTn9MA2pMl23rVo00hL6j71wQAryZsDGmuJpG_yZt7VePPBBUG0nocyMWFbge71mNv5EZE69dDihjngwfAlyumHbOU8yZNlqZlqYcp281YtfLJvxx12DMvywEtqA0jEdcVItYEPPEUNayemt-et9WqCF1QbWTgle0w5r4l_TiCOWIpOyWKg_WmhLbxa3oOySX34\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67aa5092c668e0-79247891','','','2025-02-10 19:17:20','2025-02-10 19:17:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42251',0,'cd-form-entry','',0),(42252,0,'2025-02-10 21:26:11','2025-02-10 21:26:11','{\"firstname\":\"Daniel\",\"lastname\":\"Quinlan\",\"email\":\"Danq22@hotmail.com\",\"contactnumber\":\"07792496922\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/\",\"recaptcha_token\":\"03AFcWeA5RyyuQIWNvH5A_ft2JLd_n7nfkmUsM921qDeFmXcNvwoY27DNWxLn19hBknaFZZETO2ykh1gXPPnYvWTxNFHc7ga5OyMVQCeQDb5QuXUyNEUUXlgq3wTT27w9_k57ClIBlNzvQIQ3VodCf4YN-jeG0f-6uW93YQVlYlclNW3JQECR6Uvh8Skj96bNu-cbXQGf3iRNyBO1YPQQAjZ7_MV_zwNgWx5wQbEslNApwrKIPN4ySqXUg2lkEvQjTIKFk7lE3I5WDfW0Hvvg1GwZae7t8j4KK88N-SQc_sfOgQ6ieWSFIQrR7ooEWkBNwYaxb29joKSI90jDysf44n4STvUBRcIpXvuhcNWzLoMuswioruAX49A2PLUBoYBKuLlcq13KVFHl9b1yyck4kX6aXj-a6Nsfdw0GkcQG4wmz4VLGJpeF66PSSGWf-yQxrQyvGUYtIdxXH5BhBPEiwRI3rMkRP9mXCKwAIZTLzuW6ekSwT4c68a4PW4Ff_exiJINJ4Kg80ot-seU0HikIeORTr8smEs16Y15bs43EPmeVdBk8TDv3rMmpmOBZFFtmsoIMYuYUEjptoREIpuuO4ps_i5pBpk2PCTgB4_jbbZoV12n16vHMGE4SuCW8iNDaPhiEqFQ51e4wlQyo7wZMVf-AvxAOsouZnqG0rlmkFRRfGqw9boZzbQXMp7RCpPHrz2By55pbNoP-rNbyVmLbNppKkwSYPO9W7ZDBQdcj5_VoQGzxgAT9BK9mRgn9VhGCCoNeMPt2Epo23_ocfuCiVvljgM2A-oV4T6oB-7clf51Xl5mWz4aqVTGWfcAqxiUp0w0F6SEvvB2u28LeNSoE1LVvlo2ZeZGw9TFmpujBqoK-uTxhfRL1-rDGoQOoYKquB1R2OU_LXM4PWSvLv91a5v0ATWmP_9niebsBnEABYFtM_VZSsTvSYr7txmLj7wMayIR_XBVLMDF8SwAIUbSHZCY9LQ0LkWyWkANv84O4gpWU4mPiRfBbD-o4zPcibzcTTKmLGtDHKb9DGqvcbEWGJj2JcF0aTXD4zh8OwYnTTveRttgrpe_wzeqMGMVMaqduizdPqkWSnzW9oHj-2J8yFU5GR8eWJJpKAsqChml2u_bku-J3U34WqeltoqzJL4KolUO4KXUMygtXRRd4hH2qE2tLz02nDCzPDgEMRN0XLCMvghr5Uuj7gxPYZE9yuwPZyBQVE2Z0-6JtKaEQo1D4zFkL0N6WaDWQ5hlL11V6ntwT85ks_XuzSK9smIATfESSrlc-pFddgp3WQ7LrimqnKK8jYMDAQ4qEavl2s1Mfz7-YCiMeoe4wgePO_-ohnQFPNCV02REIlmbvxdi3Uvk1mreyxyaCevJ85zGtVttsVumtstFBPODuAscIHf1iGN2HHlAanv4y9GOsjaQpiWHLzS2YTQxZ_w4vJv0_GTC_KqNbE8vnZIip6mMmdTwtO_XnSxcKZX4CoWCEMtdTmlD_icMLioAYG3zZZinHyP6VMmCuiwngOYOrm-Fl3HM5duVSrfQH63UjT7dl5lie2z-lJ-t6xw6dFRUm1OsR5FOVlYoDkadbTDmVkXzV4Z2jpej-CSCy4PlWi61taOLpq4so_VkznpbgrAstFm6ZPA3kRhG2J5-WNyQIR2q0aG8-9il-Rxb6qJjpt3qzkEpzdm0Mrx1YbKEY5aNCLu6XAKppZxGDRcEMG6izrImM68x7ZFfYIvv9VoxEDts8ys2BHcx6pn1nr0o61HiVcGyhLORItiF_-fRNy_YVW3KRqCxjCR2RE7VmnX9pLynwT129cwwI2CZHqnB0pbj88vKEyeZKzmkudAkBkBWTGnJoTjEsK_XldCvafVrK1F408QUvh2MoV-Je-oI-Ns9Gd1lVaxOu9odYlpyU5c2rs66XEnuz13w0anOH_ECQ6IJC7vr3OHfN3IXpiZz1gliNh-q4XlXyo5GZlso0Q2-OhO8cerWh2Os7wWzTVyMRNS5ujTqzZjuuOGpAx2_C8vd0j3ZM8a9koRigwyPgE6WP70ZWbFSLrHczEkbouXK8z_EPvwDGqJo_JUdmqcjVWq77TAtFkcReGLs7aIZmtgxouzTmHVMfAdbasV4DnjPuyaqynX6ctujped3asHA-t4pcsXo48hsvetRq8klQAmNTlzqWX0gcaLn2DsLd6Ow-QNtUhxkyxzzTb7nnXmECuybqchdkX8Jku5VA9GukxSHnZMRgGr27a14ORaPyUhIDCHCS2qw6CiI3d6ovOd285K8gd6SRMnCgjlOdw6WvcQCgDBMumUlUL6eHUNyCFzNfV8NGmXiI29_4wzunEmDg6TAQRlhhASgfAmc8mHmZaI-8JK5zhOL6QNJuctJOHz5aqfY9b\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67aa6ee01d4346-96390819','','','2025-02-10 21:26:11','2025-02-10 21:26:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42252',0,'cd-form-entry','',0),(42253,0,'2025-02-10 21:45:20','2025-02-10 21:45:20','{\"firstname\":\"Hayley\",\"lastname\":\"Hanson\",\"email\":\"hayleyshatliff-smith@hotmail.co.uk\",\"contactnumber\":\"07984342056\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/imovefreely-3/?utm_source=facebook&amp;utm_medium=organic&amp;utm_campaign=iMoveFreely\",\"recaptcha_token\":\"03AFcWeA79Pjj8vVJEcG5l_zwY1G5vwDPb7bSHi3TdpCImnt-tZfapBr9-4DtvRblNq31h1JM3dR3ea8yJhp6SOoBhVknG4A0F6_yXOedvqs_TDsXO1BaHjZgCFyTMwx3b7PKIfAkki8wKhdhMiB_e6BkJ_VR4Uxk821OtlBkdRAvo5GOsBBN0JTAXXvKavakQjLKcIMxDu0qDCfXH85N_U3hP_gjFpSbiykRlhTe0V3NzZLgUok_VFbxsAmNVf4G2RE8hSFMwfBMh9vRutEbkfYTzYzk23Qi_Kbl1AwPzjHrsMEChD1fZUxG4GH7hfjyXKsFJEdI_fYWlvuQ-J_t3_tjYjc0dx0BEGTzE19zzlTG2Aq3jzX5XUXixbk7PG3YbHMuQr7HwT-NMPRa4YyqG1rLH4e_5e_XBdYZGCyb5svHgEA3-IoYElnbCg5kyNvd3aGjlualYmIpwdOQIaV_J5wJPPnysUFL83J554e7khU4SyKRCfNZF_fv2Ehen4NoX7603Y07dkpqaJWU0drxf-jTUkMHxr9aT9NS-fxMNkS0G08AaEwCjb_d3LlVnmgaqJrmL4hB4YaHL9xw8JNDdp2ePcqU3kAMhTxKHbh1-6gM6Fbu5_HS2hOCzZgOBLuFbXxOxua_cpz6y9XHVlaUKksPBxDJtBninDt5WdZ9PAkBlvtA7h2IdDGldp7QtuNzugn1VXaiKQCw6JiP57N_vfCqu-PlA-mw0x7rjzPUUjFczgkotSQtPxWZcXqEKD4WdJH3mU77_X61JkGCz7ZmdwIQpkeGxOU1JsPnyjiDd-J_a6ovJFP2FFxk6U8eSeY33JXVzqyX8YZykSQUWdpaagqDmftZL7D4dL9K3nHYD0ml6R8WQ3C7Hu4morR826fWGQBvcirhZm7DiH6uRYlC7nvgBlNBKOJx1LAqRWZ4sy5PmTh63usBHJZwQAseT8aoUSIUVkdTZ0RUdFkP2IrfgAiBmqONZlbOPSzzy-14gIZwW-sJFZSyEpxNn8X0kbOXQQ7voQ9nrPUPq-FLeNlf4L7KYMZYv2hfXpmQya5TAV3efHxgLKYmxN8XBXV4rvnq23pJY4me8JLtjB9QelhWM7Suw967iBeop-l0H9u4eXFYdaSaZgopaifQ52mhZy1s60gXsshN2tzcH3qcXb37zelgPt2dPINwnqkVe1XLDcZLmOEbtcpBOsVP7F8lrQV0etbBX_pv9c2knsh8GC2T-Vq-2HTQwHzEPQGTOlMDSNdgtlORaNT8U0Gso2PYU3JczZiicn9rcC8Xvq5DFVa6U6rl7TdAXAZaVrxfFW2vOUTQ4Hurxw2dWO98XF_xlwkRua_8VpTiSvdxxqC_mlYyG7Nxm4CZm55XRN_IZGNN4zR8Jcjb4CCvWc1-6d23Q7Uxlec5o31qdSCqRvhsXvDdaQsumBBe2aHRvKB79hCRQwP_AHj88DbvV4bWtue2-Kci9L7m0GkX94HEVkBjiklTHrGReCA0jMWMcSLUCpEQojzOi0vCAiaqi4RR-Tf3AhYJM1qaxhaC8I2grMS-LPbVDi8FZRXp9SPTaKn9YHrkQb1FiGMe7vii4PjjuNWicmINRA3r6ccbrajtq7Hca-UJv540JaO8cI2L8Wijl1-Nth-Rsqo8aEsNyxtUeAc22AbWvXFxjVvPCsPYvpeNpdxN5JGUt5LRZhKsTQgyMMjLie-K6QtIaytalz_VMuMuLcic_aja9izDHfP5a6o7U_gd0iasjGGEJIxJ207AnAKX3lhnhIGY9YDpNT3ZSXgcm-W1uEuFRovcR8Tx_Neu2fD8WLOBOwGDuuvGcKSNADl8DIUQoMxk5gz2UWMNvHfFlZbl3xlHlxQgytd9kXh_36DjJ_g6OSTtydVqO-1jnQL2u-q-Rl-xciS04sAuRpEqzEMALq35YdUKRd4kpTi80ec6filpi6eiQrGNy-u1BdS_DMU1BzL0siamrzYvMS6F1ocEcblr7MkzjJRkrfZ5zk3dv2EYDBw_yQaM6DRtWD_CHDdCoScwUycQA_5ECWy5NFSkaSSmRagWmXs1973EQu4tli_omA-rLkxXy4ABe9j7Q4hYx58LD-vPQEooGksyUVN-pk0uk8g8Lrvshtb2ZkqMRzj87mez_H06dZQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67aa735a4dccd6-09220807','','','2025-02-10 21:45:20','2025-02-10 21:45:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42253',0,'cd-form-entry','',0),(42254,0,'2025-02-10 21:46:50','2025-02-10 21:46:50','{\"email\":\"hayleyshatliff-smith@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"GL52 5ll\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/imovefreely-3/?utm_source=facebook&amp;utm_medium=organic&amp;utm_campaign=iMoveFreely\",\"recaptcha_token\":\"03AFcWeA4ohtComqxkRW52YAQIP5pMbStxsaN6Iq_zmGUPGchdixU-7L2SWvuk7q8D8XCAo8_jWFNMu0DmKSuS5za3y_bfD4BY5Ozi_6fEk1q1xgRKh2Nt8TD6LfVutIbT4GDqIepgF16oculodstG9w1drBSshf_ZInYsn5a9koBfwN68FH0EGRyYTA4k0En3zwQ20HO3ppqAPdU_EVu9nC0GHHExaWFob3vwPWYzJNoJPeZf44aINbVHaMGF9-RdG69avISlmgq3vaOuk4zT4PDouEPN2IrCykLdBj0c_6b6zfzQyFSimnon_7KUyETouzZG6_qp2lrrqxYu_r6KshLmg9BG5du1XMTQyWmo594NcVV3dREDEZUazH1TPzW9G0pFIX4zcPjfVcfXPCKWm9KTzGHOjtpwqViGR816vCkXd9Dhn9c_3AQ_-PlOKVZyqAY2Z7Ah3SFZU8IPbLn0YnY_T4R38ByO6dDtfWlWsAukFtrnNDJ0l6dYHQGeukX-T-0CvbraxQobvjfGIo6kMczv1ncwuv3UUFnldkYcDfplWkRMFlP6L528zmjRAO3xTjntwC_UD8-ThsFPy_0Gly-hc-sMpBv6JN2FMaQTNtLhXG-TmqXwhuqnSldW23NWuxFGTBX4WABhTiqgWDShqQ8E-xFlRwdXSCMwxyed4xBBTtOnOg7PdU3H2ghzz5btbS7rJxkFMxSNmpZ4Gn9HmnvabdZ6GAbKC_r6-UVV2-s1JRcndSdVpnjTsjEddhLr-Lbau3e2-_Q8ooScBrVf1AydwmFdHqAyqKW4onf0ZBxlcVnJpsTxigpPAwgy4CVrZ4QIpSreWti8sGxAYNXGEeC6ORETWro2OfdACOn9UnQqM3Qk1N_RcVOS-hujvc-Ak1nVe_gSFkbS5fIScrM_XKHKoAukLqT2ydJeJv3LT7-U8WaMSSeFAOMuEHa9OwRPZeR9rOfEangA2ZVJAMNHFIqNqsEcwrBIvFHUWSkSzNZB8yKxxHEZGzpaFwxdoP8StqkYL1yzDwIb1dElST_GDomlrOI6GLMnT28MqmDpoPzqzSb2QZbKFNt9crql75jNLXdMYpaXnCk9QsxuFQbM97h0kuHPePr2kNClL1bF3YOWEUvWhUQUs0swsUzUJbJ6mHJcMCWpNGVZQPX0KXmF3KqyE0p2cgLDZ-h6BYY2pwcA8Gj6sUThcKzEQxjC_5-tsAOvpLNPLG4YIM5oTKpDum-ELqD9kRkBbN_yPeH8R4QJGqAZ6DdAh9UOL5bCg08v-Zz2BxN_lp9lV-kiyH0kt_fYiwuKrfx1I2M7TDDHMw7Js-TAA38WqhIq_U5hzxBfrniLyJydbdFiYd2c3ZQwmD0LNkk8TtqauNOkpmh2zRLeHCYgcgx-UcPW5JWm3EmjkTYkijXMY4QJwJqfbaEyNfGpqHmAEn7LIAqDj6rB_nUL_4LXcRDii85HLlqvvo7v7k0bjc0aT0VEG6ugI90U04eVuO3UlByM5PhtulQjHQ9DJf-MwnE9DoROlamc2FfpgLUBVAe27ZqXY0MZshuJXIiqc2dJRtQGiyTPkI97U4CBuyeRDHeYnMp1ZBil7VZXFbsKeMzfqh7qtqo9bl4NqBmAMskSyMFqTfaq7N998aD3vzIZiKTjMvbxFD10zFAnR2gBSZQEi96bpmp0TUEWDRbeq-siZ-oK72-m2D68Gt9d2thduiW10Da0kBqoAi25G3Nj1fH9RWWLs7tfupdupcy7682XskPng01q3m5Nppm38RmAgeggpj7Ni483w0rYqD2F4fD0n0_McZItyizdtDcOPmwx5vwuV0tfBHQURHeRH3izBq9S-KcDPinbWMClGKIrdLI0M3MpKczUeS6hmidanY7xGFgXKv12FvIOGwbXZkrcyDGtLgMmyqvQ8-Vbr9gB6eJ8KKh2o4kcpeiuaOKoF0A7c5gn_WyjIXsw3JsjoV5MFBM2E-eWGHJla2CTLqotK1EWqcK04zDxRlCzBc1TCaeStghEVXuv9EQIZyuF9dDjJXl1I2PUfp3iQdNBpB-MONtr4abX7icFFsf9ScOTKiWDTcNu3DX9rPAWDXmeiDieZ7yxEZpe1blO9KeGIcboRzIo6m8bgrBEEx34HMQqDIgXH-X-Gw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67aa73b1f14a06-04078565','','','2025-02-10 21:46:50','2025-02-10 21:46:50','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42254',0,'cd-form-entry','',0),(42255,0,'2025-02-10 23:23:22','0000-00-00 00:00:00','{\"firstname\":\"Simon\",\"lastname\":\"D. Ducharme\",\"email\":\"sdoironducharme@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA7soxnoELwa9bnfDV5hf-8bVqH3rfwhfS84HgpyywydDniwfYSOOxu5pyXo09lML-XC5mD8ta0tjPnFPs5TCD90vlffRjBN3JByogEr8t55VnzbrSUTJmDgm17kyaJot6NGv9uVtoCwct2fztMCiwfX3inf8Z_ZYjyiXZ6Iv8kb-4c5UOBseZmIhwvf6OkT5DrWVRYlD-BNbw-74lXCnW1rrlZGoVcahB8wKV2fJU97eXq_a_iIKFeh5fBAjWYggvRIeIb2qs9DlXZj71J5AArZmFTZZ0dHXBxa__N9nxOekNrrINuDLoozhpTTDA-oI-827Ytvk9z7t84_pbVEVZ7ZpLY8yenPGHCnnPx7lNDgcpZsdjgsqLRS6YFBmw8zVR1C1cDnvku0GU2PBgRKoOeLAKSoIizMEs02CBJWPhUMh8dqnEzeF6DkRlJgIvoQYF6ePfssxWQ38_DAM89HCQCw5Pt6ZGQsgW7asCd1_G--0Tqbwo0KyhWRO8-5ClXQx4Pyd0QK3XTlwP4K8fg8A0jcCgLC2VCmTMS1jccl8xgvrd1HjWYzkHhDyWGsH3dW4EIrrJnPk1xGZLqxSWk0lE_cshifajFVTNSM5O4GeCF39T5Z-lFfvOusRdSOeSqRZURt89YsqaMxKJ2hJ_IxFZkKwHIK6zo-GZsmY0sZiEW9na9BO1tZ8E2HZYtKKu1OHwEjt3TeuqZxycC4RlzHQom9stYeeDjCPvG-9hG_mctkMuXLeaewHwxS_ZU0iD8y02arUk0vM_OU_iHCGSeT2qlgACBxHGgWsU0zEuyqjESuHBsrQLYpNm_2FArHCxORSPcb9OlP8QjUA-RtauQ2XL-HNIQM18gQRh75I-HpIve1SFTu7C0d3zjLwSe3nLR1sH_2CkO0ittw919767uNAweswTO0X3Y6kYulIygilB5xmCXww40TWOFx12TNOr54uAu9ny7v4RAxNRsXAhnxpkajBsCDc4o5Tjf7B__WZskcyDWeVDaAiYHMcqsOii1zHrJIglzuNVXVCymidSEgCKfW1BXBG8QEC3a5mQbmnDbRsrf1FDsnjWg7yHcplByhroccS6tfzGHR_Rn8-N5i1aXJv6UhF3UW_U6wEIAll2-pijg-S8bZGMe2s9DRorN11dPIcuOSpvsNBKj4lKMoToRKrEtmSTg-Of7Asiev_a4nZoJloRx14gdXOGTBwVOj3rTlzdAkEyPKw42CNcOsTdC5PE1wTXyTidUiSJltfMACctulVv_S2jBd3KN6vt8nFKeXwxwMXIAxFpXlhMzXEytNSFJClib6BfW2ukC1BfAtZwq1eGMUjytUQmjgGH_ftxIFHZCCNcLczDeYp9otIDi7kUZxLv1MOZXoNUm1ubYvcq7EXHAI7HOZtN1PhPdxX_5L8rFeK2BxcJ_fbjWCYWAEYr21YiUrkgw3cecckm8pUwse4frNESozu_JEk5LTBnYTNXP9beZnOzwa2SkrDHGKZdWm1S6xuKPKTpQT9GEiP5YK2Y7roU_5bltOUKOSEBrBt9n2_W6TjwbJTRUM--uiEtOEACZfdIEICncpjGvbTenshninvT0QCZDlSFFufr5sIBUZsV0T1CU9IdSM7FGYfyjd2CpQcqRXgyk1mF__yDoF3eNsG1MR3aAw7m8JbmZ-UFy-pDPrq868jCOPJiQLU3KpHzJCh2-Fnzkx56pREjgK8Ee90VPlxQxMYRmrRdPTdxQoidLKiStVnwMjGGJ8hYbRqYTVSWE5wKbqIS7ITX6BiviU3AqfIJ-haakKoxIuS1TkFhuXyvUdn6SmnwIpNTsBtbWucCQcBc2DfpN1eD8LTQJvGbTNN7dywkRnGqQkeqGWINuGmLWGP6Bw_xa6nzIVTlnM9NsNghdr6LbpnfwrAIMCMnBkLGEE05bAgCkjEaxpl8AIX3LZGJyNdnfihDR3Nngy9LpJbdKay6hDvhu41_3JFFuH6wGuKboyiumuj7e-cQ4vylpfc8PGBdTYU0nHgmIjqvWt-KU2_NjWQeiXIfM6vSDV0zNWVnWyNExzudgfwmI_jPyYQ3ZqUx_X04a-svZn6QeFu1qxE0MgpnobeqBIJoSDBE8pSJWNc66Ab0JX\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67aa8a6ac784f3-37784897','','','2025-02-10 23:23:22','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42255',0,'cd-form-entry','',0),(42256,0,'2025-02-10 23:25:05','2025-02-10 23:25:05','{\"firstname\":\"Simon\",\"lastname\":\"D. Ducharme\",\"email\":\"sdoironducharme@gmail.com\",\"contactnumber\":\"5147426346\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA7qXGqoSVD7NmzoAsiajOygqzqSQiZFge1OZdPV8t0kWcmiCglBQHBN7NFi_I4PbYzKaLsKjLfwqog68ggpEx7JIh4pQngrlJ9wfDerLgfvBxw2ub2VO9RLLvPMmC695_3H6WKs-jDKLOtftZJFZqow5hLCWpWuuJ70nvBfFVonVqc9a-Y-xlwVvvGKdK1sgwLGGgdAkDPDF_0iGZFMhyfKor8E4HVDy5JUYvracnorRwXQWlPNxKeDR-JF3152nE0AMcU891Rz4wrybDJjcxwzsCZ9gEIeKJPdeb8pcmfJy72uyt5voIg0eX_xq8OvzN71dbYLlDDlTdyqeZMqpUr6QggEu4tNWYcIbr9kGWJa2-lFxcO4VMTJtZLTlSy8oqTT1UX8LVuSdV4qn_4nGqwTmJwFseaOwmZ-Tzy1Y7_M5ckX1UHVmSfSlVr3ThUQh1mZ39LtZlaxGQ0rgt2HUqo0LDl1F5GBwwlnW16PZGXr3K7gYZH1z2KzV8eCFAKXJkqcD66EAHN2G2NKJPuMUMNfQymPaD-dFFDU-4a9JXVSvn8s0qZErVIKxpOe1h40v1v9SIBfx_j4wP51u1NDJt9emLDqepnUUiRw8l04r_YF1KpIT3J0WsgQd-vIWaN-2Ycqf3awbQpVdOz70EVGooXq4JJy1XLaqq1bDcUELG9H568MI8Jiw6dM_eI6bvU-f_9LN1f5kK61WxpAYOIXopQhjI7XOcC91IWfv5YSyR-OWS2k068yhzfgQUu8ymz04uhIFrHcGeHbI21D2QHFQC6R8MO65O6lvQCFom-ATU3L8risOU0O-zHTtIrMjCgeGYXzMFu8nClM163Tp8KfOv2V4WI-8vrY6pwgIMgEkfBdUmLCfZyBIMa_p9iTIFqQbHw70Qy6dI5LsEAejPzsuxryHnpLdcjkfaY4wjiNH0yZom_GVA0So6iv5YXtiswshdvocJQWoY_e9HHU5PLlw8UyYvQszJhhEzLtf0R7QP2nQ89eL4MEtrOS8er7ZnS-o9OGWd_SD0KyakiF5Q2ZPXqG4ytRKDtz7hUJRyur_i7pdSzyhJ5SV5qrILlfYxOtBNNoLQfNRXJvwx6cpK2cBzQjhOZR6AhgXwOMAB7gEbQEk8YcZEJaKodkdnOXcZYv4BxkzqwS_b_2Zxt8k4awnfof9a9g9qqpHjSi7Ep6dam-keJEGO3sj4NSWSU0CE4xlk92hNUrJ3GeEYDo-q3vv7ZncSBYumq5pY-gRPdyWEL5t8gau25LeAJHHBSKN_sDQguE08u4QDTG94pMy_xPGbuMCe7bpZLfYxxX2j7ZghwiYkj-5ud4iPw0dA__pjwmopRryoq-zTEMY5IpsH1SUyHyA7dfPAKyYIhxMsqJ4cpPGCxKLHZA38J53xB2RsZ-nnlzJpAASto73SSyhmwCUziZ4JX0AwY3WivJ4khlP-oa3wGwjPCZhaPdvGPi5Nf2UxvQzIpk2oc2I_Ng_qPf8iOndqaloorkPOjGzvk_7W8bqLflKZXCalBd4e8rrIgz7SAZtsNbUAXQS_rsB-4aksM1E8D2GYxkmtt8NP8rgTqUcL1o1MmPoknA7MZg6O5UO94lkss1OPp1PpTzqPROjmjY3OuobK59KJaxiTlMZnsXopHSsLMSOkGjrzosm01W3pblMejhVlFtSwE6nt2vHnF6adWl28SmYMZ_pR_Mr6JUUTQra6nbeXucqXu0OKFScja-DknDCv9uDuB2yOtvsBvpySPu9JlMrjJmjfqPAPKUPRXQ_GCZ41UPKpdd_cYW-5vW5ENFAlAtkp7NmyNCKCpu4g7zA55Ztw9yF_nit_o7DsqSLTaz32S933TUCZErfU0MFjWYDBJHMUGOjoqA_EVDPkVU2HuOdyKifgRNqXmGhtBIgIcZoZOScL9pPS-1r6VPQemseoMdvZoCQvJBMN1pI3-aAWDNgPZnNktQLQ-KE3QpHiiT-wAFg9p6mpw8VsqYPrRVti-XxHyHr4ztTdvqvCw1ZXdMQK1vvrFHR_oF6g7CIyhRZVLVUzGxG1Rv-0HbRPi8nzUU041e03ujpYEv1QFYGowP-6BtC0UYLathjSZ04W74ULuJo4U2lJF79ZwImcfE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67aa8ac517b384-06782716','','','2025-02-10 23:25:05','2025-02-10 23:25:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42256',0,'cd-form-entry','',0),(42258,0,'2025-02-11 14:15:48','2025-02-11 14:15:48','{\"firstname\":\"Alex\",\"lastname\":\"Martina\",\"email\":\"alessandramartina98@gmail.com\",\"contactnumber\":\"07424298930\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tmd1_XaVuFj_GBLSaiGg0dC&amp;gclid=CjwKCAiAh6y9BhBREiwApBLHC6Uwz7MFfmsxSa1pAbzWppGzXpiK2veEyA11OON1gojEDs7FH1mznRoC_2oQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA74lpQtinYEYHAp28PWJ0PlezsZ0T4jJ598_qYKgfJ6Bf2i4k7D27kVF06lVo67NqHWiKDt0Jgi6LLKQwbKKV91FgV52c6C5rGZJVyqW5s8lgCwPGUaA-oVV8QG4ZDznNklzV8659tnc3IrasQMl0MVpid7M_INV0l-bA8TdJrIjbcjfpDDp7DJYjMysfY9-Js65wzL5Wb0fx82KzucounCJLzMGLxAPwsgstLqwkEmiRY8dibhghIfZ2kiklgc8arkR_G8DlUPClxZUEAgiaBH73Znq0dNg-qlVeI2w2JxUkipdfFrhdTSuGMGGVi_CAOZSsobqG8-igCaFcESmNUsxd8-T9IfOk6oh6vWEYm6Z-76M8ZWpMLE3IIcKWRHZLA5wz43pfYlFZ0irfjIIJ2oAzn5TGgx-Wusr97bMbuUtI-VgjA-cvDDSHG3hwnE4vsSDWjjC9WYH-QHzzG8yk_N3_4TdqEtRNOkRJ0d7e6d1VjhCRN5xaAOkvGos_FoeqsIZ7dI-ZngR7nYLia343Ggk5FP72chOZSdxnzvv9U4361vtlWOLQTihWTpK1bYtV5unmilMPWOphQmZO-LyYknSazTiGU3vnOQszwuW3ijeyxLjJ4WgPMvo-T0zh4ePTSipILz7lRaboDw5vnAFlTGQVOB9oDBh79wkl5ulSSOfHWq2eU4MM1otqRUrQXit1OnaNc0b5Uhy5b789f2Q3VN_HjLWFzP83Y2kYRc2QiBJxpwgUDFCD-gNw2FvruiNT5FSeuQ6mxFyLVw047lA-OicJ2MIe-D3Qj3OzpPnC-vNbnJb6qZ_BvkrXpwc2-IlsLRoLYjjomHLBL5p_OcK0IcalvnxrS4ihHQoqwDP47a4UDHL4S1KoKtzvR0EEPTer0Um4xuYGCLDBfXObdLs1g45_HbZpcchdnE8ibTvL8WHdUmHqn9ayaaIVeKOdOfM5dCi3VOEaCvo1pzc7L0aMCn64qfq6lPVApZvf_75jtCe_zh0Db4BnKz6SuePT6lhawJBN2c04srnEcZCXermoB5zjm2GloVRQSiwGjTBB2WoQU95kKqRelHaaSG5YPeMOqsEVhqaDuCg8CmgdqyeJNXv4GttWxTfdHIIK-Ep6dGByVItbNbBTdRWQWZP4WplicHCeG5jHawHNnk227dmdYxO0DjROYsv5rSEatyycGJgqIrnMw7D06yut7eqeLNsJgt_WjeSJkb86if7QD1rGpT06IVe-XW5L2LVtk-YAFNqsbs8-9j52JW2kSzPJNpIsd1fyt1nRjnbjAsPbdJgHHzDJEDLTDjQD3fGSgHPkPetx5awas0wwnDYT8XDRpiXXL8YR8NqbPNUfXkuisQSQUJQkx9MGrONZfR2y-WZ3jP9umI_JqJs_XZMuqgsk0I0aMij3jlIXhUKefKocSmmixEgRU2gtN9P_UjOAOo2RwcZ3NHHbNLVjHzfuz0oOZcOsH0qN7uDwRvGJwjEpqWG1AYat6j4uIaQxNcpFVNlYy6mqdkTs3-AtU3YvF2oUrV2dD6wTmGJ7a1DWeGznkb8TNP-rmbZJL61P7kTf1tLbciHFMMnwJPtXApGCH3MicKFLVItDCGqUHfG1YlXEtlxSTCELncmMGPJpsD-okIlRzS8VGI0yyt-Yv-_MWzR6HY4Ox1eCsddqSlQ1S4feUistDa9CwVdLhOx-B1hdUxRzxRCAYaxRKIvy2VhcG6XS7Yiqw9Lj10xjvS6qo0pttYbewWeqKSDvJ5A2P29Jq58l6OMbhJ3l_lx7F_m_YDXGXhE4r0AXodu4Ee9jOoY_y3WEyncYBq7eP-UmO5umLkzwDXQcNGbRfccblNsGmUXpCJzxqHMSUtLCwNK-oOzzPMB7-uoyrY2zvU4qZMrV5sYtzdczHy4ne8xHnb6SrQ3wdyUv9SaieKpRwIoPPmiaFAkmqnN9OIdOE-qkDtgNeWoTPqMMF_eDIHb1q50TARtQ_C_toDPMIejr9VdPS5AtLkF3rMszdyFSixq44yZBGSQn1Mp3zvj8fzl6U0HINQ6PHyMo4oABsKlu3sCKeJvUtizbpEeGOYVK_rHGUaHoG8We_ivTHYp0eX6HWhSzhF75Ul60gdyG8x7Ta9ozHfU76cvFDWO8AnoA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ab5b84e1e292-49384654','','','2025-02-11 14:15:48','2025-02-11 14:15:48','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42258',0,'cd-form-entry','',0),(42259,0,'2025-02-11 14:44:39','2025-02-11 14:44:39','{\"firstname\":\"Rachel\",\"lastname\":\"Howard\",\"email\":\"sayhello2rachel@hotmail.com\",\"contactnumber\":\"07500802099\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAh6y9BhBREiwApBLHC7HB7vlBAxuQkhCRypy-d2BIKAwLO_fgiC_jsTib86yQlH7gXstY0BoCfdcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA56GtYyeEJlZV0v06sq02DzySqIiAWGPKUHf-JVM0M2DN8RfExoF07NEmIggyEU6s7B6Hb4b3gRuKtQxPkIZkQTL4VjfYD3fH2bBnD3f39VNxnGnJWW97PVDkWEj208dS0OvvOWut4zJMdNeFrr6xVjB5gYwG5zSS2g5yFxWPzLODO9_LqpGi3NEmSMpXqcVo_38FUKn0qy6I56w-Nc5UYt9fh33jS_OQ5_xBikmg4dQIt27-maRC5ng4Beqng3AB5Y4CXiPni3IXMMQb3Gj7YgGeq0EV_y2D19ejmO5g_5HcVTBmyYb0V3rrowcex_K2nmud8hEtlCOj3pNXlF6WuuvFIRKtlKDDHB00BPZqB4rRovXhJIqVFLYaUX6xpe1MFmYrNOYCCz6KeM0EDYCe_95wLA-6ORylTlUfMW2atUcT3rrHtb-ELaThee54HzweTVbvWeqC329JvktDGZa-hJwwnBrNwXmhjq0LyElR9MWjlv__Ezd7zTxM5g93A_JxJ_Xunbe8i2hx0cRyyL5zKNCqp1cLvk6P44l5-hZegMY6vUgruPUpRYqB_aIhWm4OBzaG2m7J8kcYb3z81ZA9w7N3CGQgyfqMlmcwfhlF67_q4XCe_JEP0tG_S0w5gRvs7cyvkjxhKuMU3Y5PhNhHT6OXTilzuQAgod7eLQUUJM_Z0Mo_C9M0aASL9qDkvm2Re2sYPDS6QJBI2oqVELjyn7Lxicvj4J_WNuv7Evk_2dfSOBjcS8EC0DXXs2Yb7ZMrZdgSa0KSk9bCRXG_y7vvlxhnyIJywOosFJQxMFF3CNSt_VVUYD8bzTcYdoMtzJsa5UnNafIHtKJK3HpiecnepFm3J3DJE61WXwHHLZtVs3t0Z6M6zp53BfKsNTjtTUIMfi_Knk_FApuFYHs92w9TxdYxk3lY-wbl9Nztpm10cX6PAlPoADV9GZZWEP1PomfRCn0_gMZTVc9Mb0PXOnebbOW70Rb2hQFv-6lJJQyIrtakS7ceMVh0P88wMTHBxYegHhR-diP-fSs85-RGhpPR6MQR9SFSDAUASoUJJN90eP0Ob_DU4kAbyrOhJGl06UyhW-3W0WrYlNk38DYnbDWsZgqhxzCAkM1ZGyyo0NZreHGrLEzewV0saXdO2_BAFCOEMA2hOIXVruvQhbcT-ZxcDMhj24_mFIz1crND_pr9a7_Agga5pgQvWlrdJB9koOBO-3D0SqsylW37qFjbZV09GIvmv8kOugvXxSRQZgeh_aEKbtcSUonl6zl4fJmq2XGypwnYLF2F9r-NGp9_6LPJdTYik1RO9rQWXdW8WrrOCg21HbR0NxXrnYJTagvtjGwJYkbrZ2rezdRNO3a_WdMq66pvZMIPl-mT52xonCqnG_9eMyMEJUJov6CuCHcspP7HbSOVWgpJZKcYu6ODvBX5JfBW3a9vFmh7R-neqaUMquNLuQjnN3rDnhqfG08s8Hv1-zVarqVw_olXXBzR9nIovTYgurD62nf_zQKb8lsXnxkE24nNqMR8gqjcNPZ9yZVxC_S6G_lBj6z_O35jnluk4XVuVcbcHkeXOhdQn-gwFSi-G7399rrbXFDIEYtw5YGZ64dIlTT-ebX7t1iXn5cLJwkP972yEFBoFzMwFhCP9DHHAdj_duTtbNy72HxsYj5gZVGetfzX5Wuka0EWkonFKD_zjXigi_H_4KPaxxFVqMjeM_l3NhS64Bh_toVlLrZqcWi0LmjFbM_mpf2pN3MfuHFEC6e_Hlxpqz3HV16CSPWsdtfbDoL-Mw2ClAqvneJec0NCBTICKvvKKaFI1oyJeDq0SwSPdXE69KVUDbhYYREgVQgmEMaUYHBTj8hRo034r30RffF02F-0_VczXtWPBGSdGT-YrOMpNO5LrssyP3V9KeHnLQ7tiQBV_upQB2anRZ9KQNoRjT7wNOkHKEv1_k415reKdIOQi0fXQ0hmCHL4AZmlQGqYzFXv2dMVn_BGZUaarb\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ab624060f734-78926273','','','2025-02-11 14:44:39','2025-02-11 14:44:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42259',0,'cd-form-entry','',0),(42260,0,'2025-02-11 14:44:51','0000-00-00 00:00:00','{\"firstname\":\"Ale\",\"lastname\":\"Martina\",\"email\":\"alessandramartina98@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tmd1_XaVuFj_GBLSaiGg0dC&amp;gclid=CjwKCAiAh6y9BhBREiwApBLHC6Uwz7MFfmsxSa1pAbzWppGzXpiK2veEyA11OON1gojEDs7FH1mznRoC_2oQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6X0VJwhYrCehX6ui-j76bH4ddp95ZjT-ttuOFRejnkUYeTT5Jo6fzamEU6O7thl2sQ_kxUGM4kpSHgk6h5Ls-blILwHB6uK-mVfjcbkrr9GpsDdZfhMoHLLwaSzgsMyo6nSsZhCiDIek3qj6FowBDyK9p-lIjvF0NlMNG5FjxNvM3e5pZx8pKHQSCvRbMswVw0F1ywU5Uc1n6JeGLnsJqSPv2dlZyFzMh_JioeK6_kicVfGrCK2v6J9dMtwNTxzHuRJfXF4110bY8GJAWQYnJ2TtzPI-iN3-qaQYDQS-pfCHg4kuUC5uN72yaXrDgKD4b4u6EoY448iDFm6-TPJZWXOoJG5hJFsB0ofmHGpUY6UbsX3HvribHVn9LKitQGdHcjyurAOP8q3OOfxW4ru7L2lyW5ANF9tVxZz9OGKSE4ggWe1CokVoBkrjpJ-TZhwBiOo4DHblIFXewCa5TrY9qyR6uG1rza6WhKIY1p5YsefCE9UB6nvBzvsS-b_yTSYUCzjqQ8coLzsAejGCfdD4EpfVb5nXbffY_2B0c6sgF-mI--taOBG3H8Tp38A4mWiBv9ZjLQM3GTS4g4lokFTmcn0wYirDpftvbKBpFYhOjYUxWJJs3YQJGVzCFG2eSaveONGq1FIB-8jaDKoRK-XHmofH0TMr1HDtZ2xJYF4HvNMPZ6FZMZacD0GeipNP5XRFHTm4K_0ZAXvuZ9ttqEzrxTZY6l3uUyYejmiUh4wb31ra3-o_zst9FkIZ86UOGM320ewHOpKsiQiRX5kCAFg03VWqQJelbVxUBT1ljlts5ATrijVcJfQZCz3dT4NTX1oaHoT6asLj9GvG-PFlRbhNtMdAR_HQBpKImwweBAoNudETGwYsfxr01b60QqT8Wbk_UoBXdEmMEQVpPLw1t1GJXRu3DNRZXJi3h_7KyNJ2zFSSEnMty5qwUwpMf0kpBF8ELg2mB1HqRkJx3nV1tkfphHFUYLSvUxg-AszIJPCxv8uTdTzG2kUVy-fwDpSY_3T7n3gk4Mms8ra1-zrK05l1zn_QarNRJrzgte_nXrCQ3H7W-fmohLDat4wp8TNF7SPvDd8RHU9K7XbJJXte1g7U3zw9mM0FeTTDofT3sb26E0CdKHIzF7P7p30yjFBJs3a1L921Z4ruMK61xoxkhEI9lC4OkjHED-qxgKASp9jm3xraPsCVr81QFXky6rXlzpjQVeYqXkJam4rsPV7_nuKD3IFttaSBMk88ef4Pm_PjSfI8TJqpoFEhrKo_oFV_Ao3I2_hzSF1pxI0NZmf4lbLh62R1lsjFG3GX1E-uo-0D6epOqxYi3z8StN1WpEN6-VOaQAJ-KuANs-KabxaPR8czMYYq1tmGYPBoGVOsE8nhIDME0ExwXqBLwd0-C-WnpQ42_z46xp19XvfSP9B_vcikQ-w89XD6wEYXEJuw0l_Jz-CXoaCOjzm2O1iJ4eRmxrJFbgdY-pcb6oIaBLEQP1zfnUcTQZNUG4jUXfCAfKZKLOkkTYsvydbxRVhAbYXbKtEHigK_NxIuRsoo0jbHIV_dz4l49dmx2cUOOU7v7Quv_nKVj3Azv8Tm6yfY6l2WdzoICmLRotQJMdWMscyl1lO77umrLiTqaYq3X6UKoEbPq_1flAFsBUNJ8X-elst1XFVeEQ9n0E9GStLFjxABchXUSNZpm1Mt3Q0JfgUw51WRwRk7Ne2opAir93_UJC3q6Oh1YLwtGjGxwZE_34wgeNIb3QR6V_afWPvED3ZIs2fjlVgDdfNHMh66kFpJjV2C9TscbdEzf8Jm7eOSTNyptGx1XxmeBE1zUPocS6B69HCsz8xy2n1v2PHtFYV7BAYNzuNvzNtuVHS7t9pxE4Nyb3cd4eNCpxdgnq4doP4EE0lnKxCX0wyCI6Cy6sg0a4KxI9lxZ7A6RWkUg_1ohzI6zqQ8SjH25oSGL2R7rUC5ViYvlNHWVL8pEZW1sLSbySBxYutYTPWpoYiQyyxUDVhvMWhHgblLcWIUw1KpeFzrZhSwXWz4bCzCRait8Y7vVKP86yGwfv1Bi839H3tLhhvjMSNOT1gOWCiA63k5MLa-SRLa3rafMXQvu43DX3M6vULrLOHFtVxJVWSYUPw_vrJsYS9yqTTOFXIQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67ab6263e543c7-97893633','','','2025-02-11 14:44:51','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42260',0,'cd-form-entry','',0),(42261,0,'2025-02-11 14:49:26','2025-02-11 14:49:26','{\"firstname\":\"Irina\",\"lastname\":\"Lugovaya\",\"email\":\"lugovaya.ira@mail.ru\",\"contactnumber\":\"+77058566506\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA732MDh_3fHWPF30QUQJCYtQfG5zgZAw0TDHakgVPYS3_y4HCZfNbXKOz_VKO6k6CwrkxTkKGLfPzX9FY_5ZOJY-3Z1o319O4Wi_gvfWYVrsgjJkncwEnzRdNPCVSdwrfLG8ecSa-u3WTbv_H31myI0uzn0oM9tJbjoWl2yCuYRK1mAEbF-h8rhG1s2lDeNsUpOyfLtGPw8YBaBV_A0JM_VbtZHsTvD7_ZXOhTX8qYYsvtSCSHRn-Ws7uWPwp1qsiPXeuZ5CuGG5uv4rxjXdkbRIj_R9BMPO7cmkf_NkCOvsecGcnNIy03UcAb1CVWaotDFAMMCTztGm8-YYxb-2eGsKMmJpvEh10oLCvDxDsWq0BAyCi6MW1I4Fh4HBGtyrA0SlVz5OuYSrxuVj8Er7W-y8qqd5-X5icJVIn7RuxwHq3k1U2R2WquFQLwezSFsVDyrB2PYRawOx2ij9sQ26yLOep3Qg9GvrSTz-3HV8z3C9wAR_mRWwTVyoQVxouSK0gGTU9KekkmIG6BEJrV99kGcU4ge5P1oqk2wxV00hWAk2svZGr9Fr4i8hIMHBIkrlHm8qi6e0KZnbR-GGUhwGz_pmWyizBrago_kiJiTNGg-cWrG9M_yauW4hs9LhlpqMwePN1ELlWlhOxCIDXVT3UTZJdz4LQJGUbTFJFLK9HbmhZ_DfZU51dVUbYq-s9DyqPafCMxH4qnykKracck2TToPry4VGDH41yeOsYkUNBXuy-rWO4IRAnn0x73x3Mh3t-zbRJprXA5TQ1zxws5za0BHfYuJKhOeD2I3yltbF__0hMolULV4YL8GDAKzmzjNotmrDuVybtAQWy6_k8Q1waxHyWHfX4NNPtmcs1L2yzb1_NwoA2bJ_9C_WIZlHP1WOr0t8ZC0iucmzhuNvVUUBg6RVSbw40Y_2UAC-5RR3WA37AVAUOdVubJiNmSmJ8Zfh1oXXmITWT1E5ToDetjCHByHsnO4S5H4jxskJdbn0vZo4vmCphxoVGQHo8MrWbz3ejuGQu-BhcACrL1bxqrK-8bwBh6IdIguy_3pmqjTI6Aa6qv3RaOLtxGw8mU0gTlc1MHEmNRXpl6_kXApDeutSsNCeLcFbMo6rAtU-uypIO3NTSJlCGI9YfC7TuXJNpP_03f63gOqUhxxXWRhEo3YAPMtnrGbkBqeUE7Z9NP7iFBol7tBSJta_ImpxKjWT6XRSBPNzJxQIMMcdXKrGvqBZV0TWhb7VizM3l3-dqgr5wXsyqhjQNuJU1YQQnQWC4fQseaH-xENkIawfEI_XU_Fr1vl2r4_-AhMf8-WMG51X7lqew9rGJsNMLKdxzWjC1cQ5Ku8_k5fCr3nkoi8UzAbXIxL2qHUfzx-aRfvnUQPxWD_zMc9eHYUaIDoC1ss5LBmxJdAeRLYzS7-E8P99-YjKfJkWUjrzsm3oLQNGy8MADKX7EremyB_224bInvxmfSLX52vmZ-YnF9m04dsryLgz5xf7InK2ETEeb8Mt0Dlel1bMGn8JzwMLq_hDpN859Lif9eyFIkpaezsizXU1Ega-pa_q31jh6tK4Y9fx9l64DiG05Jgb11Jf_7WDGTsHN0ahPXf2fXQwulcsYOcJ4rDXkA7i6YifyINS4j6jSegzl3y9L6e5MKjAR6WQHks2iNJyBRUW45kq0p94ful2CN2qefS49beBHGIrl-88W9CxzvJ-BaNkhY7_qgSRQv9AWGwUN1TACYXE_xqlYBLb3fswu4FndNQTltQ9wNDH2cO4l_mf8sFCxV7IyLefolVbxQvSFBjEPYuVm36DyGuvKOLwm_FMtijNZjHyYDHFww1lVD-y0Wvyedmc_0A2N5lhJRLpfh1SknopFygDQW01GEzrcuuXatnxWb4wXGmUApNjTO49n9CvaZHk3H0bfDL8W6OEiey7Z0jt-uFrytOwLpNFkCwajfwOeYUSA6bW1BliYtl5Hmxe1Yg_5neYTKrH-4yjAvZ3sb90q40EWFYAGjovPirxGMM_CwDevV34UCxaCPWjCMOQiiAzr4KhGnb77V7mVbFAGneRtSpa2eIVB-897PWd4bNiewK9B1hujiklwCrXvEzo6PK8B_Q8knmvhqwyu_hG4EhNa00In4iwbTXTDnfYolFuNA_F0JNqRRZ6FesIc_NFx2-bP3_85oxoVzewveBHrQD4snTiW-9t0lO2y51sj20ml8N-7o6AFmQcABiuanFCXekzFwHOsETLabBvv0ey4MsNWqF6snfmn2ePeXdgqsXxA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ab6339afc157-58235011','','','2025-02-11 14:49:26','2025-02-11 14:49:26','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42261',0,'cd-form-entry','',0),(42262,0,'2025-02-11 16:11:43','2025-02-11 16:11:43','{\"firstname\":\"Catherine\",\"lastname\":\"Leavett\",\"email\":\"catherine_leavett@yahoo.co.uk\",\"contactnumber\":\"07920294241\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\",\"recaptcha_token\":\"03AFcWeA6cd_8vMrkd1plPGfGm_3JVCe9-FRICVJUuoOpkPkbaeflayg0jHMpSKymGsEtLCmGnIakyz9I6Gq0VohA652fAwypkqw1nRwcDRVFefAy1p8xMGO3m6h9p3XcjD1-Uu2Kb5ktlvQ8qDxLJd6qS7r5lfLSGpXcraqxqqq_3KJ-DnAZXyNRHId4MtaHVyfQ4BCJx8qnzpV9OgXzDfm73xxfsGuiHYsDbu_K13Yx9uBMqLkpWq41-sr83Y1oWRAiUekkRaYoijMPaSROf8DiNfIRLr2RqZBeZmviALDhGVZCXFToTWpGGllsvsPJ83Z1W3E-npLQcctZPUf-r31ZyUmZNZTcWxTeQR8nFfgndE7wT9cMpEvFg8FUfDfP2NfiggeoEiW0LmuKuNR0IJQUkQjfMeV--zmKR6HYmkdlEluMqiTJcCVJDQQ4jK0TB_tIk0jzXqlwbwF0uEfESkcyFsfaltzCzE5zqh5CdRFJ4JPtnBPYHeWVdSOFEoIOmcwgpGnNE3gs1UbjYUGEUuC5U7OR1hxM5DNk9vtfbY-nRvC9CwUFpnYg9nh8zaiej0ngdC7LX-qxY_YShD3UUEvu_bR-GbURKK2pczJaRZhpwUt1_CmONVuIm0Cpqwp0KnVGwWcv-MMEzDnKu_4GkTyu7z8Px4brjGmQV6VNtePhmtT9Ye_jJf8Gd9Q35SjJeqwMpOkuLHZtpH5bSUccnhUWv5cUhrhMnhwCWniiYh_zc9AoztmifHlpb0qW2OTSocyb3omxNXB-3A6U4XCr4UMs2-PmQ5_nImC6XwcDmE4p5a1W9_3jWeRP5sYNWNLDpWNDowMaGfFEn4a-U8v--NQ_zpDFe8d-jqSQkT3RuMZ--xp1dcOA3c7-yDMrIvXV6mmvHj8SeGptmFwgJEGnv4X3pNmOj44vuNwHN_UHmSfgjoAyC6CeGmGo75beyghBVDRrGLJ3cR51p_Lt7lUFc8VhyOjcRpZd-mtY1vmljPlseI5g97MEQkiR_QcDgsTP1ibFDWHlIqO2S8dIG4ooXmlRfzKoQsC3oa6OjchqkKuUcasS2hKDhQ1zxTGjSaiLj1FVmigNmNDew1ppsGpChCErc_TzZzP91kZCIriGT0XibGhNz5i88l18LWR8o3MbMiOZ4ozJQyW1FAw-fnw0TmRCQ6AGmXmfT6vNxLXPhTsyOBlwpXK_HX1XB-gbxlK9XGujs7I5yaHeVWgE3O_LP-vj4GjnKpZn4F8xpPVxlsRzvlrXalZ9h0Xw5_4jav6V-fYJx8vLHE9w7Opvs70PinXCRGGk_OlgaTvSuKQgxGP687kLcu34QKumzNyZXq3qePIonfWzDzvem2JE82UKdyNi65pbBGmk-DKRIlX_2o2XvInTlFSBy1F-WSNXHH2BMIzop_DP7NipeDa2MV2UaHFi46KoRRh68E2Y3mX28_rTAalXs3XQXt6kzIA3oLGxrVuQMpO2zacQN3qLTPMNMC360c8_dyFXzdliTscU_mOxvu-7W7ZHomOuDWHAOpX_0LUaVTQUr81ujXZUQLNRm_WXk95s_AziwJTjtgea03qU2L6LbYkUoxP_x-aOQ6EvA3VX474po-6AJWI8rEQa1sP-O2hHXe0hi1Mc_xhuA9nRp5hs0565rqlRk3aLPd_R3IuKS048jr81m7T-4yoThOGvLVILsyjpLdsOPo6NhG6ImTK-tXymUOoOQsMCGom0XSss-hs0Jo4BoJ3413UqIzemHvEt3BXPk6t1k36QJIKw8WPIbeX-Fg3KUl7cjkNbAxiK_JTW3HhDsGSPaTFDgeYvK7EblznQx1zm4rn5EDg9A_pYHgafBlJrF-Bc4xcxa5re02m32hhS7O-xdsGnQ9MiP-lzyBfkQuCyWOmav_-yTf4R5I5QOmZczS3XoK4B6-b1Kcq0bxaPWwzh3vy8VzFmvsz9_kvARb-oC8SKuNypyA0wSdt4uw2gLtu9H57XCf3iNLVrSiS7K7YoqiRzc_QHsPp5XyADiSKojPOUuU6P30FhjYqcNj2YWYNt-XbFr7SfnzA-dN3BEfXTcLt6MP0hzm2Broec58yaMXXQpkkifdhJLIuR-n-hA6sJsclqCOCzsXVdeARb6iRvxPKbJUpzgJ28rV94EMISg_DB_C9P8dLQrwYYj92d_WaScu-bAmAT-u8xwVKzJ-C9Y3OEgoTgoUZS74pg1redcfQlAk1p_Sq_a7KfJbuzhcEhEI0BEg1LSm1EjwSG0aFgK3Bx5RBNzscVaZnAA456NA_Js6FvZxI7xm4Y7X_-zkiJgCWrcnBVfI-lbCATz8mz6fnbTFrG1AGFLwKKuvnS-1U5lypBwtyGSP2YkNQ5roK0QC4BPeT96nKEOYmcH\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ab7693dc2f86-12893859','','','2025-02-11 16:11:43','2025-02-11 16:11:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42262',0,'cd-form-entry','',0),(42263,17,'2025-02-11 16:22:47','2025-02-11 16:22:47','<div data-ogsc=\"rgb(0, 0, 0)\" data-olk-copy-source=\"MessageBody\"></div>\n<div class=\"x_elementToProof\" data-ogsc=\"rgb(0, 0, 0)\" data-olk-copy-source=\"MessageBody\">bodyworks.sarb@gmail.com</div>\n<div data-ogsc=\"rgb(0, 0, 0)\">07970 925 235</div>','Sarb Donin','','inherit','closed','closed','','42245-autosave-v1','','','2025-02-11 16:22:47','2025-02-11 16:22:47','',42245,'https://biomechanicseducation.com/?p=42263',0,'revision','',0);
INSERT INTO `6m7_posts` VALUES (42264,17,'2025-02-11 16:25:36','2025-02-11 16:25:36','<strong>Qualifications:</strong> Personal Trainer, holistic instructor, group ex instructor and now Biomechanics coach - I’m proud of saying that!\n\n<strong>Email:</strong> <a href=\"mailto:maja.kabluka@gmail.com\" target=\"_blank\" rel=\"noopener\">maja.kabluka@gmail.com</a>','Mayya Kabluka','','inherit','closed','closed','','41334-autosave-v1','','','2025-02-11 16:25:36','2025-02-11 16:25:36','',41334,'https://biomechanicseducation.com/?p=42264',0,'revision','',0),(42265,17,'2025-02-11 16:27:52','2025-02-11 16:27:52','Intrinsic Biomechanics Coach\nMassage and Movement Therapist','Stephen Barr','','inherit','closed','closed','','41327-autosave-v1','','','2025-02-11 16:27:52','2025-02-11 16:27:52','',41327,'https://biomechanicseducation.com/?p=42265',0,'revision','',0),(42266,17,'2025-02-11 16:28:12','2025-02-11 16:28:12','Intrinsic Biomechanics Coach. Comprehensive Pilates Instructor - MK Pilates. Equipilates Coach. Yin Yoga instructor','Mirren Kemp Walker','','inherit','closed','closed','','41201-autosave-v1','','','2025-02-11 16:28:12','2025-02-11 16:28:12','',41201,'https://biomechanicseducation.com/?p=42266',0,'revision','',0),(42267,17,'2025-02-11 16:29:03','2025-02-11 16:29:03','IBA Registered Specialist Biomechanics Coach) Personal Trainer','Lorna Wilson','','inherit','closed','closed','','40776-autosave-v1','','','2025-02-11 16:29:03','2025-02-11 16:29:03','',40776,'https://biomechanicseducation.com/?p=42267',0,'revision','',0),(42268,17,'2025-02-11 16:29:19','2025-02-11 16:29:19','IBA Registered Biomechanics Coach, Pilates, Fitness and Gymnastics','Maria Buick','','inherit','closed','closed','','40775-autosave-v1','','','2025-02-11 16:29:19','2025-02-11 16:29:19','',40775,'https://biomechanicseducation.com/?p=42268',0,'revision','',0),(42270,17,'2025-02-11 16:32:38','2025-02-11 16:32:38','<strong>Master Trainer IBA Registered Biomechanics Coach</strong>','Kim Tomlin','','inherit','closed','closed','','40770-autosave-v1','','','2025-02-11 16:32:38','2025-02-11 16:32:38','',40770,'https://biomechanicseducation.com/?p=42270',0,'revision','',0),(42271,17,'2025-02-11 16:33:02','2025-02-11 16:33:02','<strong>Biomechanics Coach </strong>\nPersonal Trainer, Pilates Instructor','Leah Clyne','','inherit','closed','closed','','40768-autosave-v1','','','2025-02-11 16:33:02','2025-02-11 16:33:02','',40768,'https://biomechanicseducation.com/?p=42271',0,'revision','',0),(42272,17,'2025-02-11 16:33:15','2025-02-11 16:33:15','IBA Registered Biomechanics Coach Strength &amp; Conditioning Coach, Personal Trainer, Football &amp; Rugby Coach','Chris Honor','','inherit','closed','closed','','40767-autosave-v1','','','2025-02-11 16:33:15','2025-02-11 16:33:15','',40767,'https://biomechanicseducation.com/?p=42272',0,'revision','',0),(42273,17,'2025-02-11 16:33:30','2025-02-11 16:33:30','INNER CIRCLE Master Trainer (*IBA Registered Specialist Biomechanics Coach)','Wendy Arthan','','inherit','closed','closed','','40766-autosave-v1','','','2025-02-11 16:33:30','2025-02-11 16:33:30','',40766,'https://biomechanicseducation.com/?p=42273',0,'revision','',0),(42274,17,'2025-02-11 16:36:19','2025-02-11 16:36:19','<strong>IBA Registered Specialist Biomechanics Coach</strong>\nINNER CIRCLE Master Trainer\nEquipilates MD','Lindsay Wilcox-Reid','','inherit','closed','closed','','40765-autosave-v1','','','2025-02-11 16:36:19','2025-02-11 16:36:19','',40765,'https://biomechanicseducation.com/?p=42274',0,'revision','',0),(42275,17,'2025-02-11 16:36:33','2025-02-11 16:36:33','Managing Director, Master Trainer (*IBA Registered Specialist Biomechanics Coach), Strength Coach, Soft Tissue Therapist','Rachel Frances Thomson','','inherit','closed','closed','','40764-autosave-v1','','','2025-02-11 16:36:33','2025-02-11 16:36:33','',40764,'https://biomechanicseducation.com/?p=42275',0,'revision','',0),(42276,0,'2025-02-11 16:36:48','0000-00-00 00:00:00','{\"firstname\":\"Brendan\",\"lastname\":\"Thompson\",\"email\":\"BrendanT2002@outlook.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tmd1_XaVuFj_GBLSaiGg0dC&amp;gclid=CjwKCAiAh6y9BhBREiwApBLHC9JjMEAUwV4IRCe-_NfhzLtW6NlU9RMN8sXG9JZCXex9pMkJ0_EDfxoCkr8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6IEgt_9dlaSXsc25MdBrqct4jMICR10fxYwHxPiTgBI257vRh8fMjnK1H1GEJzBeO6fZ2KQvB0p2tPoWXeRaYX_IDoUtd0sPNTIzvOCOuJot6atkbW0BqbMlM_Wqf3C8FIeMwWUcsNhRsQniw0MqbOONXWDQSJn2Bk0LYVhY7F5zBg2XgjC4Zu_BH_Ez5hW7hbTmi7R09LU__li5UuNQKds_IffzAC5EEgIDiePGTHVm2-anaMPgSr53e-XEKue1y58tKHqQ88jMRq7xkM2d-gbzw562xOF_SZPZ4tGpuNYXPeLvXYuqgwAQnpoe0tgcFcuff5b9g9BoltepEPUXAiprTeYmNH2f2MyMwhGQmpFrbpRB7LI7Tu58v0E5-8XDVDPrjlq1QNCGKb5MNiqabUKa_OHawWmm811vVx6RDzo7PGmhfMpmNRHEcWIEqxd8XM1zwM5mjfUdW9G-NmWIz0cKf6YJWnOK1fMsRvoa4lslpHyao_-fjYfUFCrRV7hrFB9GAatPY5tU1oq6xfRAwoPgeWC8XziclFO70nc7DrXEBvjRSakKA1jK-eqRQZ9cnqCYX1uhqUDnGkM4K7rg5opTm3ZDqNPW4DUkl0IQjJNhYAOa6BQMw9VegAn09DFXT0QoEH9ugTPopntriXKveWiBbEy29bMKOJCCenEQ2L0ZM9MMOx9XQIwbZ2ewPS9baFR8KcRuk_3bQ2XyEmFcPK1CAWsSLNphPQ97wpeNChJC7780DvHOJO5IX9j7pewGw3Epsx37eAu454urTenC-dAiQP8eR8lCFXqWZQId2JaOqkk9WOKzchYpROJ9P4y6D8otQk5AUzHTS6RUxj-R2v9zSIjwJns3vjygFWfFtjqqM8ZsIcfaaPlHs2p1iHvuswA19DAjXr4vioRBvBW-CW82Tet6LQ9Dx73in21DK5o-eR1zjqN36WB3BLf5gIlEBI40I1ZD_OKsqA-Js_hGrhMmbaLnEOFzGyfRT3EBdB_b95ox9M8hLg6jhF406ado4gy2cqS1Ol1Q-NX7rNYPEyRCNOIr97AWq8gsXd0UhSOLF7xeZLdLcEctig_ps_O67b3iL0AUBdLQbsA3J4oSLuoWw6du3q3iWonIQn5DJhpJ6nVDWPJD68vVfrNUL1ccpBV_RugYj9Wn83T7LXqqDx7auuVvJo-dXyvVoLUykumcAoKIvl4nBU11GOvyaucUKnu4ft_FoSiF_YRloh6619Q57MsZNJLMdVo0QnI6OA1kFhREI4Ow_Ilv8LllZj5ICMIZ17eOKK7gP5si33NdvGVZ7B5FqnfbAsru-YbmUxTZer592jUTQMfF71vu4FC7GvAD5LIH2TdSB6JKW_sHvHa9cPRcwXzjbd7HFan8YY8NEiHf6P-EERCcxwlDON8eQpg1HGzKKIc2kBSOAnJs6ECKHqOcIHGm-GYA1nhokzHr2s35j8iXLyYzb_wmwj0Rli1udrzFutzBFVEM961nYRUn8BOMDJ1sXJW6_FKxMhhyhNGVi1QptamDeAh0J1Rs1xUgdTf2luq1WSaxVOXhVcXhP8c3bRzjQD3HIq-V2bwhnlQTR8yGNm6qMLPhwX6_S3n76BIJbO_sHdk4Kd7VKb79TttVhl45pE0_kx7ub9jDnF62IjR2oYPOKODvc1fcqBDns6NDGdodivkjNvHR_AXLWB0o073bezC_kO8F52AX6P_DCcXxL0tasIUzaHRk86feZ0t1hqLrof1ZW3i77oG4qah4egS756mGAFfw6OvEQhWWabV9iJENf7matc2TtZGu0MHPjFR5ymS3_5WpYWYYKwgLLeMY0vIcus8Ehawh6oIqpV8EFKESoICyemJqz2m6815WDTRCd6luWc_v2p9fb9Tot8QLTp6JL9NWbl4_8WfsX3d6_TjjY3wJ3rZzvKcLUJF84OyPcTtIGbOOKjC2VPIzi3iP0wusVFZuoQ6CsT2lmQbDXXFYnrVLEGQFPHHPC5V6D6lmdsoa090zIXKchXWtVb2di-TR3AX-oDs0SYItftxVxYpIOzxkcxl3BISaWjerXIzH271Gokw8bjW4Anx-xSsJQQA8ExqjaxijfFTzM9FVqKADEZNy-wETptOPStI2eYm9Q62AIkJs4whQtpdmlTGNwSV7TBdKxJQTwfNIuR8xAJz0KoXHs4-OVqiP-Ml8HZkqsS2rmZQMoeLozfHoVsNi_dKKoignegdhZBNa1u9JvRYhHQTAZLVQPLpFz4CfH3dPLG0fjKVwxjX4_UAykF4S4oLnuKubCo7ztSeCDtr4PgDkgGU4jnkLTWKomVcLV3yxOSgsvFeZAHQpfXbwPdb_5DFBZ_PcI5NU7CpoK811PmH1M8lVEUw8LWaGl2\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67ab7ca095b326-60459543','','','2025-02-11 16:36:48','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42276',0,'cd-form-entry','',0),(42277,17,'2025-02-11 16:37:06','2025-02-11 16:37:06','IBA registered Biomechanics Coach\nPilates Instructor','Jenny Dudfield','','inherit','closed','closed','','40763-autosave-v1','','','2025-02-11 16:37:06','2025-02-11 16:37:06','',40763,'https://biomechanicseducation.com/?p=42277',0,'revision','',0),(42278,17,'2025-02-11 16:37:18','2025-02-11 16:37:18','INNER CIRCLE Master Trainer (*IBA Registered Specialist Biomechanics Coach) Osteopath','Mike Grice','','inherit','closed','closed','','40762-autosave-v1','','','2025-02-11 16:37:18','2025-02-11 16:37:18','',40762,'https://biomechanicseducation.com/?p=42278',0,'revision','',0),(42279,17,'2025-02-11 16:37:43','2025-02-11 16:37:43','IBA Registered Biomechanics Coach,\nPT, Pilates &amp; Water Specialist.','Izzie Pilkington','','inherit','closed','closed','','40761-autosave-v1','','','2025-02-11 16:37:43','2025-02-11 16:37:43','',40761,'https://biomechanicseducation.com/?p=42279',0,'revision','',0),(42280,17,'2025-02-11 16:39:23','2025-02-11 16:39:23','<strong>Biomechanics Coach</strong>\nPersonal Trainer','Lisle Pugh','','inherit','closed','closed','','40758-autosave-v1','','','2025-02-11 16:39:23','2025-02-11 16:39:23','',40758,'https://biomechanicseducation.com/?p=42280',0,'revision','',0),(42281,17,'2025-02-11 16:41:00','2025-02-11 16:41:00','IBA Registered Biomechanics Coach\nSF Personal Trainer London LTD','Matt McEligott','','inherit','closed','closed','','40757-autosave-v1','','','2025-02-11 16:41:00','2025-02-11 16:41:00','',40757,'https://biomechanicseducation.com/?p=42281',0,'revision','',0),(42282,17,'2025-02-11 16:42:32','2025-02-11 16:42:32','<strong>IBA registered Biomechanics Coach</strong>\nPersonal Trainer, Pilates Instructor','Debbie Wyer','','inherit','closed','closed','','40756-autosave-v1','','','2025-02-11 16:42:32','2025-02-11 16:42:32','',40756,'https://biomechanicseducation.com/?p=42282',0,'revision','',0),(42283,17,'2025-02-11 16:48:32','2025-02-11 16:48:32','','Jason Howard (*','','inherit','closed','closed','','40755-autosave-v1','','','2025-02-11 16:48:32','2025-02-11 16:48:32','',40755,'https://biomechanicseducation.com/?p=42283',0,'revision','',0),(42284,17,'2025-02-11 16:49:33','2025-02-11 16:49:33','IBA Registered Biomechanics Coach','Vanessa Busek','','inherit','closed','closed','','40754-autosave-v1','','','2025-02-11 16:49:33','2025-02-11 16:49:33','',40754,'https://biomechanicseducation.com/?p=42284',0,'revision','',0),(42285,17,'2025-02-11 16:49:46','2025-02-11 16:49:46','IBA registered Biomechanics Coach)','Thomas Waldron','','inherit','closed','closed','','40753-autosave-v1','','','2025-02-11 16:49:46','2025-02-11 16:49:46','',40753,'https://biomechanicseducation.com/?p=42285',0,'revision','',0),(42286,17,'2025-02-11 16:50:03','2025-02-11 16:50:03','IBA registered Biomechanics Coach) Apprentice Master Trainer, L3 Personal Trainer','Dean Connolly','','inherit','closed','closed','','40752-autosave-v1','','','2025-02-11 16:50:03','2025-02-11 16:50:03','',40752,'https://biomechanicseducation.com/?p=42286',0,'revision','',0),(42287,17,'2025-02-11 16:50:18','2025-02-11 16:50:18','<strong>IBA registered Biomechanics Coach</strong>\nPilates','Gemma Carpenter','','inherit','closed','closed','','40751-autosave-v1','','','2025-02-11 16:50:18','2025-02-11 16:50:18','',40751,'https://biomechanicseducation.com/?p=42287',0,'revision','',0),(42288,17,'2025-02-11 16:50:47','2025-02-11 16:50:47','Biomechanics Coach, L4 Personal trainer, Bootcamp Instructor, Tai Chi Instructor','Paul Collins','','inherit','closed','closed','','40746-autosave-v1','','','2025-02-11 16:50:47','2025-02-11 16:50:47','',40746,'https://biomechanicseducation.com/?p=42288',0,'revision','',0),(42289,17,'2025-02-11 16:51:05','2025-02-11 16:51:05','IBA Registered Biomechanics Coach\nL4 Personal Trainer, Pilates &amp; group fitness instructor','Sara Spary','','inherit','closed','closed','','40743-autosave-v1','','','2025-02-11 16:51:05','2025-02-11 16:51:05','',40743,'https://biomechanicseducation.com/?p=42289',0,'revision','',0),(42290,0,'2025-02-11 20:52:28','0000-00-00 00:00:00','{\"firstname\":\"Louise\",\"lastname\":\"Smith\",\"email\":\"loubrown1612@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gclid=CjwKCAiAh6y9BhBREiwApBLHC1FWo7CnudjnxfiHPUufnO3YQEUwoWDpoVTMHCG6wRPkl_UgdVfmexoCjBAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5AqzkYLx_uuC1nX9q29QhMEd83b2n3S5TplrkRPjD4mh8jdth0xV6fZj28tz63IcuBUhM2X-lCydOEDe8p74BA6ELRLfrJAO-MOBWM5nUelOU_vtpTNIAHZDbTWr_0t06pVqnalYnP-CPc7p9NILKAUpyVi3B3LGBTceAVsEhAi_laloa1eVhSGNvfOICIMOOTJE779ViUTlsqc0kEPhipxSMynZHs1l9bnoywqyGzeKTXpyumtKIF1NVDnH9bAjdzZrWRftwGm-oKmfHWkEr-3VIXTpogox5zLMn9SV6bFSNZOUuAjOp_zQo8VKBqWPN1qlMXH_Uh4psI0riq5PYm0UpGbErZ-ImmKW-JXNSKGmlFUmZUvcsyKYDmAlo4h5QTFM2UIYYj4aXCax1w1DSRc9ylaaai06btzlPw6mnuIw5BHtHMaii1IHkGpOAZiETS_KGairLUv-Xfic348Ep4Ne3crOUiLJu6LqCOF2VsZu7c2oNIEk7oVTIe0UOD5HjGU1HJhfcOvGdvUYbDzcvX73cttj1xVJXNCIqyueAZAoiv8VBfqwxGX74bsAm1CgYXrDKFDF-mC2F--uhx3jIVj4f4VcgKX7EJn_l_ZBBkz00FuVgnS-OeSKCduc3SlMYR4h8wKkqvKdErRvXJXsWsgYK3qv_V6JnlPFWdbyyxiL2cv1seDgOo6ECJAZvjKrmCUjIDcv8LedUao5iOolm9keG10Qq_CZ-K47MTWylqM2GhwGuoLBnX0xYS9k0XgaXP9kHElkZCxpY5Ti_-sMiHScTkOCzVdDnP-vEKpVs_JeeQe25wHBdOvG9f5htAmVKXlg4YRN4l9tGeujXpkhdUQl7Aex73vn0pEC0ZnMZTo4p-o08qzk6aagwNYQ1LjePOnnfYMrfKraH_4zn-kZm803Sv-srbCjwliL4HJnpYx3Eyto8dgEh0wl9zJ4IlXIVMtR5s3VHZhDxe2nd3d8At_TevWvNad5fXFYt_MNoc1up89w_COrdmRVS6GDQfDiDOJ48fomyPX1RtVOaVfmDHz8NM3xolP0drWEKgQr37-Hri4zyHbOo99NI2Am6JblUfVkQlQU_DXuLiy6md4vDxudPEfN9Juv9AOFt5ygEEN-IaLv1RUWpwYYcIQH9ZJnL8Bdep2gycbKwy5KgpeoBzZhOu3ttLv3LAcUu3ggWHpw08lG2IrFQW4kaHQnKdgtm1ekCxmgWP0HEVGmtkwdAGl-pk42xmM_RcbjnWIEuQ_lqhLzJZ-m_rkL-ueo7344Yx4VX7rpLX2m3nex_j0TJ0nq1ffMZw87zAGQaW6qlk0bMEPqguDOnUh0T3I_pwZkwDU4aHgBYsi6KpAqb-S6igervwIfgCKJ_VtF1D_veM1MKAAWWLtg71OIgqFOaVyQZCsBB7gL8uzUAIV7fVF1s8mv2S28QLHBxuJnhiFdSzTNbbTSMutFG5xqg9W40ZDXKLhIvWnqRquycm2j11sDlGiL1RDO_QEAvGpgb3rHrGWl9H9BOeB8sCqhzhUR4Crj5N4_ucG_VrIeiywzKvateqBaWrqqUv3Rd6Z_kW75h8ldGQoLf-t7yBPB2PvS86tTU8Ju2t4Z00MQILl4TsQ_zjSSSv4p1lNFbJaRmHhh5HFffJo7AbMSMK3p-21imkqEFn-i3cff_cmkZOFMj65QaCvrkos7coc_Vl97WJWaet-negxpkpfqgZwGd3QVjiJiDYtZMuRYqpEN5s2HUoCJw_z9-1T7cGD6JbI8QmoJJUXqYWZsx4wx1EIcjf6DTLOLWi8XCzFY4EQUmiD4h8y8lCFDiycvqiowttp6KeeWMbz8NkQwzHRl5RiLEn8LNHfYP1OIj4uCg2Ishi8w055P5-r6MmvBVuymN3nXQvBfzbb8cgsppy7oPYSOSySt9zW8bRFTxGWKCdPZlGRzeZuDBmePTfLt29Hxb-oi3Oz_i79PBmGnhgiLSr1AuA8PEkb1iitBrzFVkYJdRAOrDhkBEyPuy5oA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67abb87d2124c7-89704839','','','2025-02-11 20:52:28','2025-02-11 20:52:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42290',0,'cd-form-entry','',0),(42291,0,'2025-02-11 22:40:27','0000-00-00 00:00:00','{\"firstname\":\"Harneen\",\"lastname\":\"Mahal\",\"email\":\"harneen@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6uBoXq4unHRsLdlkben9YcZdHmZ-vnLn4bp7hcL5Sn6QTQKpe1CC6EYs76l_mEbMF-Aq1VpfY0zvMiUjLhuULFNYCPBhdXpZyIpnoKfzHETOt4JEdilyLsCEDzD2w3e10O-hM-5Vlt4mEpxfl7OskdGqSwKFToIWJ1BzQImdAH8DbF1cUCbsc2I-6wWrcl83QVj2piupydcHSgLyE_DJWlmoKQPB5ClarsUxE_lySiwxIahmznuZHTjy6vLeA7wGDUirVFBuThG6Lt4cNB4U9qrs_ML2zeVUiWzHkAS2-0cr2KLkKlHWvdyuSrKiMeDllAKm-Mir1nVxqr4h84ZJvSWlwtud8Y2TbaIyBDPYuw-a1BoyCnhUdvmFgFx1WT8-L_gsld2AwtOFOBrke7MBYIuOqplDb6bmwli1L13M5bjHSEmsF1Cn_pym_LQzGV_ksPaiJWsf_d5q1j_C1FLIlm_g_0Rxqve__et5dyLljvChwyQwtM5lbk5uNHjZ65JxgPCzRzmfjnBh2uPnbla3o9Kg-Jx3X2ELBzQvOi0nqiG3MD229njgX8oZGvy5Ey9VP3nJDEfdVfOQV-x023h6tYIeAUHLXn3vFzLyCkqKJ0aToBb8OGhtHXpj9k1upTfKCZX03y8u3TpuDgUpr4_5Tezkp--nPQcd4X9dVf-hW4-iWd1ph7u5UgqGySri2tniB8o77cX8B_qbfbf4vYtrjoWL8Gfy0k6WvQV5BbKj91CFzA0tIw2IvQgU-kX8oAw8WNl-U0Q8dtnQBjYSk4M3vwBHz0ZVau24VN3iXIUxNjTAdHiZ34ASyFVlctfUdjTgUVxIEg-I1Z-QUJFhSXNlYhyXjvAnIfcSiCq1WamUpqtTPnqUSMAwSso-h31YFvdKBpCMMcUGFGny8Qtfy_aCVaKo0V19nq1KxUUmo8y-aDH0J7FL3JH-mYp8bhAfDD9HteKOmb7auv6PbJsR6hbGeI_ANLIzA5gB4VwMv_EjAN0JvjEqLBctVrbe9d2yXuSPMd5nCLcQe7NHETwSps576H_UB1hSxhhUJFtNyQSuxtU2zH_mR5VSVTTLIp2LoYyb_y1vmQyzvYZ9tBE2--tdxU7NHqsUUaHk9jcMebCjJNWLDzcFoUhVq6S4EbJNYYYR26KLU3EAIzmAXqD2BnuHsNIW3eUch-ENk6l8vqmQvI9prGAqcQigI58EnMBZApaByOv6vfBCSmQAhHoGPn_TPKaeItjGIDFVWeM97lmtxfE39uO98mzVg9UlvNOVQpSLptyuNz8tEQjJ_4tWGXd4bVfLpjp_rJAYOeR3YVmKPqd9TzY0AcUOLWYYpyUPO1pdBUcoXGe2Z56dBKv8tkmeWZbchPB5SYQW3AnLN_WhyaSf7822jgxYOyJ4yENN9N-47ww7xdtJJSwlmeDs5uLlP6aGKJ2x9rOImJyv3JsUyjDhBpSCwQnRsMEp4642H_16CyYv6ODTwmCgsngWcMwm1_PSML5IJzrwlnQ-E9aPlZcTfq1OQ8o9CYJSLtGecxg4CihmQ6YyqFw6vUrXk39PwEqbUmTZ2Ivag2AQp3TcocslwSSMFYXYwdSbwAo0vscvyZrklSfEAQmta_UFwNg3C1S6HJp-aoXY6D9_APt7ktQq2o1eO-Dhf5t7SRv6FMwabpn6dKPtxwnOp29PQiHghM-HEFxZMghfQY4tkteHJKIgh477lu7F0H3i9_E71BfxdTd7z1wS0ri6bIEqu70swkvL3j9IgmEHrSAf2NlmgZv6L0K1V4Z1DBU3vMJlWs0K1hqWWXkQ8J2Q-5z8xlG-eOJfpgwLbqq9hU6gsDkR4H3aDF9vSj7Pm4Ge0kacAlzHmbuHHC8UEXTFMX1aTfcChIiHyDFFv7ekwXFS-pBS0mjOBolCVNTUQRLzao-qWOgo9EuFnmtMy8QWjOIjvCh9XBKDYunZgkYZLWJTqgdXIaF-V5AIMbOnnCBFxEA1cixR5kuo9Cvqbq1Jt2qg6ywIoM0jCTMHMcKINq56hYy0xh3dn4griu9F1uMnoFnqIWNMGE18ys30ysLOhh3RD9q71slgXQBO-RjaeQBtShiGdvZaJB8EKeu7bFphiTEaxy2m46qXuk1puD4xcat1mmA7cvAROLdkEkYqcEjCn0g_pyeBmUuludI4QDpqGLhpzdhrIh4-IHOPqnm0xYwaT2Ui5tYK4PGMFv2hxWY54Thg95ec2Uq8Bup7hK-TWYKg4RAZkYD0xYuE9kKZYAvaXDwT9iHRS2bYKdO5iKFATE5YA8BOWgAsfhgiMq0s7SqCTaQdQ6VHw1HQsWnFSyFhKHnDaVzJeNrQQ6gQAgsZzcma-Hn9h0AJxmswFXCU4VZBlq5kTbVt9VmK8Slbdf5zZRk2c60MVK9pv2jcl5Sc9nbJyrF7L0I3EpsBSohj09GPe-xtHL1kmf1yq-D9093Z9PaIdw1YDCrrpQ90AaUxcJp4S89uDRMus\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67abd1db2d3516-44955790','','','2025-02-11 22:40:27','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42291',0,'cd-form-entry','',0),(42292,0,'2025-02-11 22:41:00','0000-00-00 00:00:00','{\"firstname\":\"Harneen\",\"lastname\":\"Mahal\",\"email\":\"harneen@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5xMHSxv0xHoxJsn-BiEqqgIbbZcEl8fmjs6FffioHZS3_U1XHpoD9hctYF112vpq2IswbvYw2CWQNWTWFxGUEweRo4MqAb7Fu-_m4xWrPZwIZIloIf5nlJ3rvD7Rg2IkqrXrpPq--4Y-HuQUnbffOsyYkaAzVsyTler9Z4KsDjTxR5RcWC6v6rkvHCQ-GVdEwFVBwSFnRWzzJoVw7rH1pZ6ygF3a1J8sHfr10covowaRbIT1gDTJFUcpC-vp3Ph_dBUoCbqcmBhIPEc59zf_sQN55RC8KY0nhecg6aAmJa8qWYpsUW5bsrYxmCISg6PC_XxRx-6Gqzz91FRmR0UBerRNxxUM_71xNum8GdfKA6T_nDvtGxAShqSAlC5V6TzrwsQQ1XLz1Xb9TwUB3SfCM6qPP8Tet6I4C88Tos80UqcRuBWdr-Efdu_WlcyQzDcp4vc-AM5KzRX_nH2e1kZAD998p7HaaKIewJD05PtZvnHuBIm9aaS-U83Us2yCqFN41BEq3BUa3q39jivk40C5PzoZ5zobqoCmkth9gKZWHaIUxJm4EWUVbl5iBcQyJWrhL7kDxrdTqQZ2qq6A-7ixNoa9K98Zy7co6miYDy-IygMoVk5_FxtlosbOJ6cx1lpRryWcCbTAD24MLsO4H2gU_Vd9b9Gu0SKwWDo2SKTC8LtoOo4GKN3xyQ0RUsJks9mqoU4ukGcfkEdEqT4GmV716l2mvdwfXJmruwNpaL8g6ruLotCV7NZjg6bGvcFJvIWfx2dZPfvKrvpdktU_cO24oJ2YMUlfN-CHDaz2z6uins7tvJE4l9d2X4JltKl_GpY6zlEW_7_E62uiXdUQVsw_0IR5v7q9-gDL7weuUskyJkZcFF9ZE3FUAsUh51DqHL4dPFTWcV6-pbsOG1H2h5l-e87kiBAzzGlR7P75GJIYBgp6c7Kj_ym6MW5YPLXYwbSma4iBOQGOevbEjrPjfEPxigU1kv3f57GvHgC-0ximqpYpOeaQf-Pf5oO7K1x69ZbKcerFIjyssofTQuQTHNx2RLQ6uqD3iDnQDhbcgRyH4RapbWEBZ8eXGcXmgakND3tAo5BQbCGewSU1fxR9LTka3-gg6XUjKbdDKFKy5J6bt4n2QE6M1T6ezy3XmgRZJ7UNEPeogwi-QgkNWRU2mv-lrmU1NwVq5z5jwahAOEBWJUWzTc1MVFtfAcZBSUEZcJ42Qi6SIP9rQD236ZXoWj_FZBgRYxHQhb6-vr3FgTFnGwAWBXs0_7LxxB3C3aUCySkt3ST8N99IdmeugtTvHTU9rIC0SaO-8EFQF2e7uPXdMwWFXEnuQLjdouZEqUlfjCOSb-L7a547_jpwMJqoUFNZZruziHdsYrn9DEKBfhqtOC6_GpTvOnhKJi1n1G9Eoj7tDgSf2XiTzAdnvuWg3wIIVxAlFZzW2dDZbDz-_ZCQPlybFaaDMQwECgt8MDfT7xI0UUWd1js7tTO_6Py0NTQgSBt9hGQO1NDR513oqLEY4h7rCgv5DLxyV-6gPomWfhEKFjAwbs5p46MXFKf9rGU3rPAowMy6Stjyf7w50pu7i6jU30OTyONOe8FnjPvIOLDoNf9cr3lrJX2z6SKK1DIbAHJrr1cYasu_lmox9Z8OyDJHR9RGnzp8gYDXwhi5fNVzFm_lMgsplI5-wBxizrrCsdPysTeDKMJ72CeKzJepqkKq_kYBNX5UsTxNJ7sc3L18TgsxdNeKxTqwFuWvXXUKBi7hriWqUVxupfSNu4CT30vQGQxUsGWreXtpiY39nET1lpwLlI8I0zeSsnaVVjco9hLG9F5O_ZntFi_QkbUXagpy9Z7e7ehR_NTE7Fc3H_3vZbw8xDsqb5zNL_Udfjg08rvvqhUDYMor5Fhza7GKss0arGEBetym881Ju3f3x7KK_1OcFqK8LaIdNr-HW9ZIti_SNH3qS028Z4cM-aS2D-Jw0XSk1hVyjkYlIq9YlMID_dbuTpFtoWA2uYSu-6x6xiWcyRzMM53oh6n5ZhEewOFXLRbaIMF8BAyUHZyyKe-9ct2bHcH68QYBT9aYWqJJl9f3DdP-Q59wuIWlZ_mS0paIm2qcUHKhCLnTf65tBo3-Tk9YV-xWZ_Z4r8tiMRy7Jx8zXeWiOXYiRogelFHDA8OxZslrzQ0VKqukC6Ab-sMUi8z74lW4x7Fa2jN_qLmRGUS1wxT7lqlJB5S6ulGviyr-fqeLf4LVDErwwhnwjsvzAE0GqbwOrBo0mDkB0GJW8GaGANcmiprIuDSG6dWyGIl23F1czf0rVY_ElA2T4IPOShwtxngrFHMh3iYIh3Ya66x60BJdljJ3dyjm5j3u-jpvvROjfd2lY5jPyf0sX_5dLE75uHcFlgm7KNxw37JxWBhV8pf6K0aFYB-V8Y4cqXX5lUD15fkwaZc3ULK_LiZRahvlKYSGKRwwWUk6h2Nim37bgrfa60avVum7_lAWDcKedXHns\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67abd1fccbc7c6-57944087','','','2025-02-11 22:41:00','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42292',0,'cd-form-entry','',0),(42293,0,'2025-02-12 11:51:48','0000-00-00 00:00:00','{\"firstname\":\"lauren\",\"lastname\":\"harris\",\"email\":\"laurenhx@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIy7yP54i-iwMV75pQBh3MvS5yEAAYASAAEgK87_D_BwE\",\"recaptcha_token\":\"03AFcWeA4Jd-wldh_1V_IseBH6OqbtUUQqiDRSnO3N2addNnq4JoijHCYI-XJpi1kF3PAN1UvH1vFvOL8BXrIpvC04dYQyOblXNN9yHC2npuYYwqKHuscGL_Hl56xknl15Le9MMOQaHeBwflDwyvKNVdhYhTxsxOk8D1pFznDqT8_Dd1pc1NEHwGJiI_3sleHFas4MWzw0dhMyqr2CxvVHMHJwD_dngfp09EWic1DiJ_QTKR__Z7XKiPMed_37HGzUDSUnKm_-GR_HcK891snBK35ECDO1EvS-cUdC4PBsdcD3WE2zRka_P-DL2yrY-NJoL_OKOJeeyjAX5sqbqtL7VX1R8YJzbwA4opFAamgi5QTNJpNRvwa2nBn1tA2fI-WOTfeu-giXVSbsE4X6WH3zPvRJwav0l2OaIvupR_9LZnzr-2CyqmV9FXZ0Qm4xEeWiuW9PsyMLv4iC05RCgGdsI42tCgGKMmxHHtGNrW4x2XSzdO0V1JCp8Yu73xSUzGD8ObOND8-gJO4EwSeJRC-0YbP2higG-GLVrM9OPhwBIck5SeP3aImZvkr0i7tGf--tUg34ZfQrmoCTriMBQJrz0XyE6KzoiiquI9xJkpV88ZCPwsK-x8COrW-0FVW5L95cFzWeykjDE1zCuTRLHQNbgdEyjiTwQbCvwNSXwRxX2cyw45tmaBEXyIFWS0zsqzavkdorbmAFb9EuL6thOithCW8lRdqc0gppicuXhJNvj06yCgKZk7Ula1t-rpISE4v2zV63NuxmQ7HdiGxYrMXSAOFYAVKP1z7VSeP-8mRaWgTi0eN3ugaItUVe4t-6MhhzjG3LF4ojjkHRUGieUsGTOAa9UxY8U9_uG_XXHFSsa7jHpoSUpkyxzWEQZq3FJA2VyG6S8xCCsbdDN7DfBOU7Bcjzyk19hBxxTt1G6jjzzsZS667dWE__aoFVTS0rop30JF8blQY1-mZb8uHwduoiSXygltLK7_8s9-az-TN6FqbytqkG2TXNK8pX1Tds6SCM3HP5KxPPIWnoait2dfB7ymXuYZSFYPzFAYnnGWb36kOGGtYQj6drKtUfRUlhHGnxjSrBQbFl7Gcen2HZAXU1ZoisXo8oHR9vcIBP-LNkM0euylHNRDa1M-5Zqa1ucTm7GvawQxcLuqg8qs1-LjDjoYUIq8QWZJB0214NF18ztnWHwB1w93xUBaYAMJ7JV-YPM33V62KK_ySEspcgqCaM-OZHQKZza5z3ysp4najzbOMp_8MoZO5F5kYQz-6w-VdrZVyay_IyT8VUy5XFDU_es7eISH_KNdW-0h3smMQL2-7MnAnFPkDnteB3JGj8VKUfATJad0XkFLkumlCMFT0m3hZmkJN3E6XBWJfj6JmG4uw-aAGAlEV8r4r9cXw_cbsj5w1VvByq7wNscJKqf1kmIzEHXdcPCwyO4xxLjDalBR9A3uwrRU8Oj_ZybZlvHmAec7xshSyOEcV21usCO-cooOQ3J7urfHdWVYXz3etSjH0EFXRxa5xBvmRif2aXWX2qaM4sYn5lbSN8xD491zu6Of6boP45yDUvSDxC_xPEOvqDhOI3-w_Sb1fV1YfotARHy1ooqJHNMDJq8Rs2Y5vCB56YIxTImq-VY_x940h10QuQXEL0R1gVlhSImCorlIECpXO2M323MxDBN03Fsc5yo72xq9vua1gCGtofGqTINad_Ikgd0pjsLqlWyZnkKjpL1FEDcQMqMxT0kKs0V4-I0eeXj889R9qfu6XtmBEPbL06PnOJF6ys4KFEM9HJRgVK9c4H-f1Oiyoh8luBCjww4-l1NOLNvJAXHuY_HbQtnyf9yGqZE4vyOd1f7sELev8JwZas06r2WicdVTadr04kH4KU9tDnrFQJDoOisXyULEJYke6Ks7mbwZpDSlcFaZJurSSTXkYVq8jO4DVs_4_u5vkClQR6LD07ReBUZPMOriIc_sOSr7yQZes\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67ac8b3ddcf419-66965213','','','2025-02-12 11:51:48','2025-02-12 11:51:48','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42293',0,'cd-form-entry','',0),(42294,0,'2025-02-12 11:55:19','2025-02-12 11:55:19','{\"firstname\":\"lauren\",\"lastname\":\"harris\",\"email\":\"lauren.harris@odysseyhealthclubs.com\",\"contactnumber\":\"07814735991\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIy7yP54i-iwMV75pQBh3MvS5yEAAYASAAEgK87_D_BwE\",\"recaptcha_token\":\"03AFcWeA4LLwXl_1m4svJjUL9m7hBPp_z1eV38yro0iGSPHcrxJ7xpe_GZn2kOP-cOKEonwKDXRp2eE2amJX9t_uOdIVl9rJz7Y0blHA8O9QPMilGEFxkIhFMT4r1mAzF-sU04Neb2rufdfwE1xTJSDqCjLw9ZdGaPRB6ruUTCb70Xd9pOs_mq9FPPYU-FusnwRzpwC643VMFRd6VYG_uv6JnitVf7D83_kbU7wKMoNqfVPreDpvBHTUbgEPvOvaUcAiUPamLWFzkZ5E_vZFsJ1anAPXbCgBIepxlCQe7G9z-tvHSytG9bQNmik8-tzE_SXlMQkQ3a4Cgv_9oNkcE_47_NGN93Ms9uBbHYHKJn98zGa4xoD9qXbhGhu5w8TcByrR9yPjceMUlxvACwy8yANp3k3iVDWP6K8maEZonOc-R_EquAMVHBJ_CEWPFInyt8BFSvwLdUkvMPK3rUT6KNdX9TA7b-IW8IUlDnKTtHfezWBSD55rpjdFNWNmxBHHlAJX1c4_3lUCs22rqyt5y7Qt9-5Ex-QS74Dyl26Ua9RoH-iotm4JWyXZ8LHISRsj3Z1rVs_RF839NRM2Clqq1QSqD_Sv8lndYqWBLdJ_ZujD-2guRvnS0gc5dYWIiBrnGZpd5b_r_jQweCReos-TwMtl7qsfoEtZbUlIHZFf4czobKZpWWbOnAPucovH2BcSR8r0laNvSzClhfRFogPKhzq7CUIrz6yEvqrW0Rb4XN--Y3Lb8KuWDkWv-GOhOQp0fqSIXV-XqlkOhQ5Ge4BMdv8Zr85gBQH9YDMou048di_uclVjaG7QkYWtA9KnwmNsmVtvUfEDzKyCI1GdfavQYDd_SOzLsTOORutYutUiA57rUmHhFm1ggkCJOKQllCF2LAqPqfqI_fc6fvzm8Vo8LU5imKXmH9x8dATQT4D7ao7MhvLCoamtZB4XNHfmx0qiGWseSmXjgQgifhPRAHVYHPWa5qLgmiZVQRcuTtNceNn6jsrzWgoSyPGhViM8bg7kV63b5JrlRbBhIvkS4X4PmBxC5QEdaOcwZgF2zUuSwrHZ5aGdTtlblH6awClDICnMHbLyOOrtwvmoYqLCDb32snEhkBytq_VcN1NJrqnlNjsk4wjG0ajpytY-GxgyxMyl8rCLEnsGZNvNSpEP7Esycpo2oMz_u-xdjkde1q-NphItsihqzzsf60OpfBnFcwrriGrtxzrHwg-_KuRtvKzbPkzdIPeF4UW_GGeer1yB9FSVlsapRLek0D3eB9ERMn78tA5ecSPeqFeCabn1o9P5sSLrOB48I4UX6y8K9-oorgrsrnmctyNRbUI03MdXuhu0hiERo0SXT4c5f1YlKEBbSf8TIy7kCx9MDMkKxevKyNPMv8A2N31-KUtPop8TqRMUVlHv5iOQYDupzizKttbIyjIpFX7TeNrH46MybxxOuzztLYEnhQrO5qXaH1HurZxF2-ziW6ZUmbVS7aurbU9ctYdAXIMDyYOFUAvS6hgo_Kz6Cpgs4l-F1VEFp2-nt5lZxa1dqjnw_MM9zeAs_Jt5ALbrIBcIDC2buGmIOzyHa9zGFQz-lYDJ8J2scdkPNMms5MMZC4sJOltqbJRGm79M9VgBmXCF1xKADsy6fuAjtEMXvBlC0SProGgtc6WpuHAP1hG5uTsgdBTpkpuJeG_efIul1PcB9Ynod2XwCmGe9DdkMqdtLGyQmpZO1BYxEgtJa1OtGW2uyvUzjf5IZEzIZZ8y_Cra_jH_fkSAA-1Qfv6px0S-NqeVzTo14PwA62i1rbISp-WYTYBPt0KHqvf8JXfSHvPFd-ONOWDjQoEMSKa-gyfNJSGFctWbwvWEfkWsC6bjFLyzzZq5xctSCcBBt222EmZPMNYpb6BzVBZbd1tMmvUevK8qWVKPgHrEPDSEVQ91RiNtgjSaIKb4Ccclcdg7Hi_AjbsaQ7pIeDsZ-r5DKd0Di63b1RgV0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ac8c0c8f23d1-73291042','','','2025-02-12 11:55:19','2025-02-12 11:55:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42294',0,'cd-form-entry','',0),(42295,0,'2025-02-12 19:22:29','2025-02-12 19:22:29','{\"firstname\":\"Alda\",\"lastname\":\"Diniz\",\"email\":\"dinizalda.1@gmail.com\",\"contactnumber\":\"07984440582\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/foot-biomechanics-made-simple/\",\"recaptcha_token\":\"03AFcWeA6pfQ-zE0JkYW1m4JPC3qb8Nc2isKsIXlFyxhdedMsDzVRcuL4KxORlQsbny4fUy2uJZEEKrOw1op7fwongFZtrAZh4aBFxdLzlBX7_UAZrgPMjhNSGni1YiCeNPfmh133HK4_lzLRI4jMrrcVGa2gDAg5gUgIfl5KDcQMVMnAO0CgXya4fDkiGudAfTYsXkY-NK2tEonUXyFc6M0cmGd-fjAYRydrl6Luv-wsE7etvV6qHsH7pFVvXg6SyF4pOPV55TTs39Fhc_bGgf6r_HmwrEKw7K7ZwG-GKqXTa6HgCX-mXoipokhGcDX9fpAa2rFcvwWik5KENLKcJRuMHXuXLyNAJDFBc3AA3Psr4AdQxok0aj4h1KYU0WNKMAAfCW4kvKW36Qy70_-jlnUzHXPi4FCILPh9HNFl4vUk7sqnChJ_My1LpqB_yPY1PWoxU8EemVdY8K9BJCIbv3kB1z14w7lrsSQIE4JGKyUl84y_1ghSb0-EmI20SXt3dEx9oALuxjFQsbOExsEQqFGhpxF287FU7yMhj-01-2_leg8xH_yNADgSm_MzCdkhLyPpf35rDyIUutqBww9UJefAOcoWGch1xq1c6wTWqY8kbV83yFqRu3e_UCfPzqlFfwaZYZQO0-dztv66lCa07tH-ds6rLA3wnwq6VVcY-YocKy5KkkrjEfBhB7u1gKFaPnanItinFu44GviL5RTjiTHCu4TNv-kI3cUvKCUKwTNL4_2vXoNg3qIkyLSYvaFZykLAPYbyhMMcYICvTM7yQK0ZNy6v4i88NWFXmAa7Prs1Z11uifYFECm2a74XvfCQMkFztASDv-TsIhHYjOoinueTYLOX7kN1hWjzLdsIu0wPg2gtCdeb0AAB7QNDqNX91a3JZW2H8_OcU2O-3AWg7Nojq6At9lM-KWJ43xomxKuyFCjuZJg2G_JdocMXLnbd6YNHbEEA6QL2ZKOD-jJU4Vnp_0r_-6UUJFbmBl3sfoSg4-UoVZlndPIUo1jYxUlICBIYOCpQWpZL7_STFQ6wYcQHe_K7ZtX81PHvnmTFVddEM-ayf4YWltLLCaFzVpsr42WlaGx0nbMaUxuzlUE90tCllgTh-1PTTLQFiKemLaEREvE8Umw3fpZWaZmgE-gvhaKlmeSyD5XnOviEytP9mAa__Fg5SA56D1uwsuwEGCme_iQhz2QYVSxDAxT7nu7aC1525fi7xoIa128j8H2Zgb-bE1MnUcfvYQk47O14UQCgQ3QExWDtfNtP5O1uMvPGu2ZFvWTFilNJbwKiim9DVGQjz_y2uK8RlWyYW22YgRCoausciLygxGuTleiwZ9125CJwCqmeNK3CJjLU7qnoNsMZFnePj3f6agyl_G04DYqiAfrbM-Q5RcxDHJtpmXtg0C8Gxvs6nC82WjTGw2GzqU1AKiUXEzg_3R7Vh46FEQduxEigjbFN_a11vO3FHUrMijbD109OIl2dekUUqQaef3ksOu6DnPiEKQp5iXyyYyCajZmesM5vXu1djrst45ZuTpz03uFKy9WnN3xaarmeSfWA0m7zdSnKJriCxIsbVJQpJHsdaEU495QoH1HinQexjk_znjX8TTLMOolmW94tRuIHDvzLWZrp6Sz7oDkDALw5TR8DIoycwslNhKgKqPG9IeR6egwptIwM0o7EBSV89zjOgujhOyM0cl6LfHCCOtn3DMfvIKtLW6CRK_3ezN4Q4b2naujy9RMBQ39bD_BKD0VQyBSGGL9__p0Qjj8AAsr3I5GogH6mA-e2TWgsIB39Ab9roCSCtkDYl-XiFsVW4kstA1ynptyWijkYWMJBUmS9yQjUlrDA50LdARhkBU8YtraglGy4uSNba_lTr1AIOVJ6d3b8kRlOW4BW7jC-AP3IdclFtFdcsMVDhZ7qAT4ISB--pBBc4tqhzblNkzFqB4Fg4mdTzjgVQpxfBRPAv8Zco6MIZoPckH8WsdkH9cocf2t9d7zXaxHtbgLpmISSZ0CpLQXN2qgFOrGWVsSenHpnzah7MXIgJ3KudEmVIUSGjEJttAeHJElFZJjf_CPefT3s_GD6O7ghZmFXtanQhuzeAWBAbOKPm9kqTF0LXuxWzT9tJMY_ug1Bp7q7DAqFP-Dnh3O-FLpmGSJbWFkb3C4-yrK_2_PXmfGlfh_fNXwhR9swZ_E65u87zusVFhob4cUg60ba-SVE_97Jy50UYEehmamgsbnNqJ-hFReXw-z4azc4YvYRMKTB5lbyIondFDhG8pEujoGMlOg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67acf4c3c5cb03-49213627','','','2025-02-12 19:22:29','2025-02-12 19:22:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42295',0,'cd-form-entry','',0),(42296,0,'2025-02-12 20:38:05','2025-02-12 20:38:05','{\"firstname\":\"Sophie\",\"lastname\":\"Gill\",\"email\":\"sophierigge@hotmail.com\",\"contactnumber\":\"07505493050\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gclid=CjwKCAiAqrG9BhAVEiwAaPu5ziD-vCYtBbQlcwh8JobDkvpKqaezXqC9NkJmh_mUF-BTTuv1OZ5CdBoCiloQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4kFelCSHSoAboHaekc3omjCMbTn9-yX1gSWA3yCGlwpwL5IpX-NDlookOcDt92FMzguMf8khgQZzc7XL2g3bmdszTqB7_6925VeVJdTKVpmYgCKOlYx0C9Azs3t0iJF241z5ntVdjYNL2MVNN7HLxfIC5v7Ovb2wwRuZkW4JX5YNCB6_XThffP0wS6dAymWF4xFeqpYN8stSE5azy2RE0pFPksBUZowSCFyG-__ldmkESrdhBHuh5qAHB0P41nUQ_14C6qTuYfIs8uStyr0XB0YcpycdiXAjRY8EkCCN5LH4gODIl02EoDctSm81OkUorV8vbE48HF_mWrdApdkjqr9w7q-MFGZ21hao7yPxZE0BbyGTcCU0w9_wgPerNXtd-mXZ8JtM5RgZG7o9WqS_PdQaToRFKGvt0U2d7UHdVc-EPe1_nhuNiH4NmoMHohSUwEn728iS4uTR6i-y7mpdEdjruq2_VdzTOuD6Gx9U_x3Gi4Gh6OQo4W6NR2qQSf3qdOsJ9N98JT_b81UNFcWcIzro5cpo_cq3kN-zPg2lae0jkTdgKbCSKvAyxVSc1xnyIT072_uQ4DAAg3lk5a7c8ZFNKV6Gq4VXd6P4tVwxX2EnlHyoWK-wY9ssJ56tK1y2zCp1pJS4W6vnbwaJEMw6IEqRiYveKzJSf-wzEvyuLLyedN375R3PCg8eAl-z4dxLc6AtNL1r-ok3Z7CBMJhKvn1seIBZDCbPH_tl6dM4zOh5s2LDfggDHaYmKNIKN-Z8ATwmrYQ866-i1O-_f6zx0z0TMzST9QNAL9H0-xKHCQd3MimWzD_ArdmgGU08WSUF-R7glhSdJHlG-D2XmYHaaQ4v-LlxEREdI3L_3VDy6AganUi1zf5MqYxGDvO-7kKHHSH2V5y0YAQu_xTfHKzEu9JFpe4voCFnubE36Y0TgL1kwlx-6nBVfVsUvPSpsl7oPVdBjCNPVKfu5hevhdhMpVymZ2ThyVm1XQqnTrGMY_XQPuns07AKB6A-fcUMU2O8Vl-DWZ9dLF4dO5Jj6fKiSbp0noyCKjg4KzZQkF-i0Rit4HjzKHBS_zN0JY-vd1QYVYXxYPt30MPJqM-QdDTB0vokwXREsMVHOp3_bJi8-On_DSVzqQzb_8LEGZYZNpj4wNqi2kFANynNvSLwS1Pyto8cWNpKUBOQXvXopfWOBJoP4IateplEkBAzuD_H56Uwc7w57AQl_7A3o7ysR0uWh6g2rVxo9GBXOLqRzevoPBuWYzFEso1kDAwkN2JZC1Z_qVPDMiwRJSQVIkc6VpG5NFVWIMtLR6Ehe1m3kP4guW1aSkQZWa2-P7zt2d6ODhwMKpVh1Y2I6uHI78NdSkHhxuYke68tIZZYBiTRPphGOj-kfWd5J_-QssIww1N7iE0rnE7QOdyNtJDXQAUCadqenM-XDpfNcwc68TrVD6yLvfIQr_uh-mbUsJRSXGa6E127KTs9Fae9c6uIvY7Czb2GztovePbrks3oXpYH-4nGxMotw8HqcWBD0-PEZMDxekvGL0WmC3oZd1KvfGJQCPViggEinbK-RQXwQ3lmAc7fW-64uNs5Zf2jFEr92K_by45vWKJbszfbKu9x7zTYePlB_o9hyFXFvddKKU7jnu2Q-Wg7BpVwo-rDw0CdDZv6aCDsWstjAP3TSIXf1MRHxPnsHdMk8wh0wXNMMl3vueo5vNXSRtEJKFQdYpaL7afaziZ-vCVx_BQ448rzXWLPO2ibkDsc_N34ZyL4_H68uzJEljN887BZ2H6WYYsfRVvWxQhPU00g4czcEkbvpnGNHNoNopjjaKjiiuPWHpgUIv6Z0Z-_CDyKtCjagkd9nxXTYvZE-27XVnKd10CCbwFCI1iE9g-xAc-nbaTigS4n1UQYdDGpiQyBM2NQNVlN9bwA_9rl9Ojs9eOZl6VnGKRC-9j_ohNgcQWVe07xop9WENDZOr7zMCYVODoutnMT7Zt5eh8cCptJNKDlNsbrs5QdJWkSbrjiV-OukfTecq16RkDYD4zZnS42o\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ad069a98fbc5-81062246','','','2025-02-12 20:38:05','2025-02-12 20:38:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42296',0,'cd-form-entry','',0),(42297,0,'2025-02-12 20:39:26','0000-00-00 00:00:00','{\"email\":\"sophierigge@hotmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"5\",\"currentpostcode\":\"CB1 3AE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gclid=CjwKCAiAqrG9BhAVEiwAaPu5ziD-vCYtBbQlcwh8JobDkvpKqaezXqC9NkJmh_mUF-BTTuv1OZ5CdBoCiloQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4tCXZJCl6YgA7QZ1GSe8pCvdTu_--YxEZlnNXum-52A-Y1VTMdfnVmF5lkuUgEcEA3rw6TTSUxcxa1zc8UeN-KTbeyjVIeQ2c9PXO8f8Nv3Zxu5dFefLT5axT3MYZ3t78Q9brtls9rvpRVZRUyT6GqvdlLoK1Xq5Ntqcy8rTMGUoRB28QlvHzaU0QUObM46uuHu3HoUt7eCRe-5GzZeRPKLb8xDR2zQjlejxs9WrwKpPC18XbavPY4eL7b8_jPDEiE13EByyQX99sbP2yDTTBDQhzTL1CqMTur6h9l_sRmmsBtbLC-b5RUn2psR_7OQJHXy19v4MPqhPHkvLsY-RtqgG-CqB8PPXQGOkHmrZbBbhNavYaEkEXJSXsPvM7aiwM_lRZUTTDQTrG6ff77Fmt24raxermDMB5NGwHJeAyvU8-Cq0dJrma4Xay3gGnz1-4FTcvk0cFTrtdnoOAA1eEDTYPC8TUAbrpUisXmVOFRjzu79uFr9bIUZZSQWtFD0wdBXgFth16ut8rSlWdUzxr3D61-aLLdcmAuIL66CrU2sl1Vf41zV6XdPXKN7HSNxdeq2XospF_pl_DUOKLLEjPs13tkTIiIHwRTpp_mWvVMOoSVNIlzxyMQw6QGdQin4qVXWkaHRXt0lAEfqcw7ywd5rnNskt09sRpN31-3fwxZ8g-XbRgOnQpf9r_ZOoQ_8PBex-sJnA5wgii3WPVFU-jsMUF4DClydJjRZQs_idN3bCQw1gzvCmezlUu6J4J10kFNLFPS6xH29BBZDj-LkiFiDs_YVORGqZjg0sCPoZHflLslv20vy_wWN2wHYdqC9XVeJzUZy8BgtG2q7hD1Hb56Mvnm1oIrqk914d_ET7ZS06188WDgm2FWXo9txgILqB2lmPSJRbzBh3wPBHayBd1Ouhl_C_Mp0x92q9h4_d2IsexjamoEHQp034ZA2B58cQRolkAOgtboJLDgEtiuFyFVsx2t-fKrqlTdiUhSebSl8LvpYvTnnyn68tcEkxwhz0OpvdfJTNS2yfvmH4cR3Q9vqH4oPRep1HNpr6k6tjijmdPqNqseWdguhwerpA7CHgfAdatPPNMZVM5cZ0arPy8KExLvQOiVbgmkG9BndHtDw0JYqbWihztIf_GBAi0nZyOnrcq6CLTMjb6K4cdDlhyH2BvvSUZCKbkShrCCRf3t7RhtQEXDDJMGBFvPA2fdc2otLFJUk3wsDkwPOJhPidavwrEA4Dli6Z7Jgk21UXxBIwHF5UASZHLgBGhGh7M5lcMqIdcYo4JtJY2DeU00deFJPl7SlOeAon9ylKxFT-XvH20iv7N5eESb7BTbI5BY-8c7pLsDJmCzcGIrbJ0AkJsUN8vofdaFaPFWKbV5MAG5qfilqyrStfexS-NKw9RrTc5_-r2DQjvGFUKjnoN-YSNy8UZWHLYXx1PEMGogfToBM7z6UqUJnt6pOtcSTqKQCvr6wWcaKkCX1XjLOmgxll-6uWk3TfJvOROXy-5X00CrUNf63pFT4-fSQNdcBY1m4A9nOw9yTRIIJSJEVsvrsW8sa4Nzg3Xac1WRIl3HRLl0YAn0dHTjWbbcK0OVeA0s2IfObUC_WJJd0nm40X-Xj77PW_soeAvtlAQlkqe2AIGQkHupeLBNTiPAibxcFGNtRLW16SUn1tiToV5MB6VLY80-ynFHcqEB_3wxFH1mod3Nv36Lhr_MflZSJ33WN4Jgqg_LMZ0CUV90p2-ybfKlZ8HAOZS-3NQCd6z4ZLbol8tu525Lh-VIgTf6rk2k33lc581zfp5mf1JlNDRq0VP2_4K-zmhEmRJH2iJDKj9BEEH5lj3MxPdnqGykTbQdzUzE1iWpG2S8cULtpELDVN39vQwYlMbMARgsnOcF4LMmHxQlR68AukQuWOnhKx1wHK3KOJuuRXiXNNwxNevbmBV_W12aXl3iQ9mHIDgntaxlhhAMDXOmmiO6ugi3nlFqfKwcVtLJ0fqYaBe8Pc4HA-_HRKJTs1JoSIqKB0lQvcLDX7zaglX9Shk\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67ad06fe8a7999-26746033','','','2025-02-12 20:39:26','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42297',0,'cd-form-entry','',0),(42298,0,'2025-02-13 07:37:55','2025-02-13 07:37:55','{\"firstname\":\"Daniel\",\"lastname\":\"Fellows\",\"email\":\"danfellowspt@gmail.com\",\"contactnumber\":\"01234567891\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7l521rRXl7XH6tWvY_PEC1mbtOAn5c7NYxVd5Uty-eC640ZHvfh8vklehrihX9B4q3L1UvI5pl3mYr01XsgqogYUZrzPm9kJepyICpqOxfaGQNX-ptwzVxjp88kqe767Qu5sOvphbok3W6gBkkl7T2fPoys21omtgO9M6Rfi0Qsk0pR6Gt5CFxWclnkMahtIkXZqPczWCvp8rbVB5kq4VIFaC9T9xUJGHIFMcPUQBKtocF_WUoLLSuvWg-7nhC6FhxTDctkraJjGz7L7uuaFxSL0OVpd3FD_48glxLoz8mlIbeVa1lMRzC5rmimtHBJkyLh1_qq4HjNwI8qNdwAr-QKq_CJW7FOAoXOXD9IsDPj2ktTTEddzIb2nb7wMc5U9zm5bEpSDTmQyPF6SxeO8zsZpuJV8iYIwpH7CPRZ83iiA-urr0P0Olmcc_RzkihTX7ZlnMCwe5zXJTc5a1jcj2vwm1ayRO7AHWmFXjuAAmkeTGuhX8MFuXQeaiikpDq0aAVjcCksLmYI0MIPEPTBde8fxvYpTwlYI3uD3x1ICTdNoSp02jHW4AtcMU5363z6p_cD38j7vbgmZIZyWaVgaEH3BGhy73o4KqKUyw_CT89HoFw-p2-1R0c4XKOW_3alGMF2PrsH5mm9JodpCrRsUuHsy6WFXATzOlmqEkxe2rE0zJbtByMOTNHHeit0FdbIbw1ZDfpj5IkrjUNS15JgGAuU9deKI7lwL1f28lCOzfThhezjG6h-fEQ8583SmacKG7SUrK1SxtV2zLGpXnqrHSaJ4Akla_RN-tracg77QMCC2pbzxBX84SvLoL3YZF1ebXavI5et9GLJGavSYaEaENQlid4aG39eSubQtcJJ2v1P8L3XCVDQ1G1z0PBQzS0wvjW_BKB2K8NEqcT-DK3Px56EvfzsVgqaCm_ILLmEJmEOjlSab2zt28M3-g77qlaXpJusQ_r_rD0BjDviM7maeGEqW9dfJzXuCMqS1h_Fpfn59QqXSy-6nXYV0vXGCdpYhodUuZnZXGGUZ2jQK1qsFBeArnSe5Fg3yjf4pgUlMcwvqfOsCiU--6dNSe112eCf7vbPtxcMtgfIWd1vK7QbupaM9t1Gr_JFPguuXmkLzNmU71pPDlzrBaLZ5YcbCP769BSznbEuYwlSWJt4tx5gZyAkTbpIyYMLo1d68qx_byIB25dhkPC2bBUPIgbjAWl3ykTCHeN7maqa0W03rstu9_tci9HleynbEo_t1ID90Zs3p0TuUdr0VfnrU4TqdUkaZ0jMMhCb-IU2FkKzebV0sXtIL1RnyzTu_r0g475J8921J2g-R_5PVtPaTo-0RodcwBrOy41Ql96qQV9yTRiJ0wXlkcJdshr_tU3AUbRePdveUhqddILmp_S6GZJHVH1p_3Qb-f1mRJrqQEJON_YoP7RXya5onrWLDd7XSY8bNHwioQDCzZ-DKX5kx_ifjE7fxRp-1pWwWmayVvoNkN99QLJwmkMY_xKjSY2qvkspaDIDJ1CNt9YaBMzt-ToitHh9zVhOPOGw0yNXIFYwtgoaamYk7cypA921rbGp_IKRE4UutbH32OPWQmKWjAi-9AmgS-J0H41KIL_-n7vqifewztSD8YpfaRhxFyQO5rywYNqdBxr3E2gpTMrLFtHRx4yhecRkZDlXOb_AJN9l_IV7BxoMzLVTGGCKERrLobm_zejppIEZEExx8Jgy8zZLcEjFi0UApBRIHq5G_xDOPbVv4yczPo65NphaKiQM1WJ-TseZG8dIflvfsG55B7NaiCps1Xmeu9J9g2yVRZKEbElDz1I_JgNtskwI3u4QOK3LQ_rSliv7twrsud-llpzFVpc6UDts_bG4kUMfHyT9j-WnF5xkB4g3sZzaMjw0_vBarsaiQOthA-bx4vc70MpKUmK61QMTAbNP7-3qFPJ6SSVyrHx_OjflucsJr_LlmlRlo-y-toal4Bse5wt3nCfQ0dSDqtdRbYQEL2KsX8wmt6hmRCsjxBHWrTh18GN2nNA7a_buckTyGp4Kw7wCUt58jOQFid3i5dEY2HPqYbiYolYVNSzqLnxEPzsIMOdGlDpxC0y9Hpjavc7wlIxnyq7ZD-Y3tQb2ZLTDYyWZR4gC-EV2Ue0OMfsCUh8LyDEAnJh1a7Jaqzz2pFOPWA2B8G_CNXECK30Xyfgylh5kkXiFr7hHUt2oeF7Ux3jtY0rDuAm3FZ-x6mEyLNETKd-UfmSlL40SUCtMNwIUqY66o2NSBw6xpdqDPcGS31p1OvdRAZJFjzwtAGwtv63YnFy6C2XftYs8dGFBbt5nuItPl1-4-PpAhmuwsK5LTJUbEVki1CkiqR5E23QOno\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ada12cb06f94-53231667','','','2025-02-13 07:37:55','2025-02-13 07:37:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42298',0,'cd-form-entry','',0),(42299,0,'2025-02-13 07:38:29','0000-00-00 00:00:00','{\"firstname\":\"Daniel\",\"lastname\":\"Fellows\",\"email\":\"danfellowspt@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4xUMtGLMvde0X8Xt8ySetFHJpJrJiscz0rkjpn_YL29mU18_WW0TZmgMiktRonB8OA3J95LiTOj1Whz-6H9Uy4EA7eoEJj_1-1vOw2KI43TOoQ8XkcgngYdrK6LRV3IeOecMu_X5y4M1FIgHsV4K1wOnYDIqV43tLhYOAFwPYa-OPuaONrfR8ec5MttRcJSd23pcJl4sOSOVBo7aY9_O4YsIT_FB01Wf-pI7eStiH2ty3wSSs-ZtIGT3SxEclNVDlMLpcRRSXVS6gV8nrwfQCQ5xOjhqoIOAtSIw10hfuZ4nQvUDHyYCi2Zm0Xs1yvYe8MoU8qr3yn33h4w2jwxXLArsRtVxqbDjZ_3TlIxJdiF5Wl35gYPhLF55pJOSu9BahNe4RomxTLTCtNKBtWOwhau5WYWZkVr2v74hJH8EkrHDWCYMRknfiPs9L8D3TQtrKKOfkof3k0USJMqDyIaWvkiL2jOq_nAP39_lZTkbMH_vDwHmbulmSSIODtgPYQZB59I7yZj_INBXKt_8C7CwSjcZ-Fej4N_RlsZVOZs9Qc8N0OurjrpXe72Hacw-k2-rGOjvB5jjvpU3UMzIxNPAVae2HjALSPhNfc1bW-NwpS7bgbmyWjE0cbq17MgRXrku2xaQsuvs3kMWjgOGYgj1y7Jzng7hpAYtAG8Oo1amcic0OPRFJ6T54vSMtZt_LTlsdBHlWoLRXi_YND3phzhTuStJJUIJGxfDsbIBTbAf2bQnBWFtqnz_z9eUojBljlmBv1XoxhdEt4HHwHi6d1mPtLxOsNr4O8gmnE-gCdfUw1b3Uj4F3kj2ozssGz4NUxzKx1YJ6ahyZsm4wy7oPKETElOtnpODiyOpiMZST5elGUwYlZX9APIuV8l46ahvC3i-T5oLrL-1o4SINgTaAQZVfO3-onH5fWxVDSaqoPVkxy0Z24JO66Gyev2nH_lGT1pxQgzsJhlVY0T2Nd-Id8yx7xXsQyNZiafVUP6TcPXmBMtEdLpaofhlyyJ6osUbWwIsBfWXd3Z_vUhuLGJPlG1cp1CujcO-maLuiYPvCYv6r0VnT5CH1ps-G3qfbdAwNYXCfrsW0qRXJ-Yu8FMEQi3SOmQbJYewVnkJUubj7cbKoYijcIAYLWVDoApLm5pbSxg7fgIDLKMeSyP1Gc-XLOJBtdbQ-LuQUpBX8GuKqLlQ6uacykgardhuBComb_HH2fTftwAKFVeRsJT39h_nuK9NLAvzc-tYUBSDmyedLyE0GhMfZNSiJl3w9eehj1yjHasBCQlgg6ROesKdueQqWvHYhEiHOg-xW9N_AxF11hXrOFsVvsCr2BFqNQ6MLw08cdbEVFzbxD8h6pTlGobeiPbYWfJ42THL9aPt34hKsdZHtA_-3qBiyDylSPSCt-L7YOYzXRwjPX7ucD7c5NWXgtKMUf1h_ugqxDiS4oynD0r2VgZ42QSUdsCwPvASSll3n4MfhyQ8ScsScD3OL_yqWWHOPoO_rEI1gpKJZoizuu6B-V4-KDET9f0Cesmz6wWq9XjGmsFBzTMoAZ8Q3mX6aNbIelJ--w0Z1SpCZg1FOVimYdIkRbq0HuINjmBNA_l5Fx3j5nKR2ZjQ2Gh8Nqh0dbB1tp3RBoP1EcN8ZsdPwbWbuskiKQOE2K45RXPF-Ig9r2oGWMVsrw9lKv52jBvzi5osOWKbBPB1Dq7n8BIlEoomKnynN9WHB2CH8A0pXKSsrEjQ3OKMSURES0H0Uo7p34Kxxj82FD3yzUSog4Q7w5ACDm7ZxD44oZ1u3wTNW23gK5rOTCh3hdjxpjsR8esBHEihIEAPKPnyvfkHX5W8j6S-5_fYW3QqyA-xn06WnE_dHj3iX5nxIYh3t8ayiKdcybJQYE_ntL9VeWJjpbIP3okr9nI1KbUA7ytna56PQuDzAHrSsDxT8_m3ghzSYlePSyeD8z5HCWT8GSn2qLW342QirEhzVhd1U909nPfLrjZ3ZeqDLp3W4nItxI_13mdiRu_w0qOhFFEWFnTKaQ_X8pdKlQJTvodHDJlziUEyYAjaTNoqbeYiSOKp4U_URQL3lDKyEyTw8I9VpMmAjOXrYF1XX0A1KgkpB1bjjKL9VFomKbTw6QHjgMS0udul0DxwUPbGvYt5TxpNLjQRgkR8AB2BDrI4cd916wkcIvzJPGU67XEKXaLziRxGJn42WbauPPQUMUvQX0AeCOJnUpnd9hEUnwwM126EpEYI1-oaT1a0Kkx3qJD92Hl2C4NCJ38saDiUXWstQ-uyrwY4DAxkkPzYQXJlPc2VvXP_XHkL3HZZz6L577RUM0BVe6iEaiduYthFZEs81n2HiLxlJJBxptHVg-M2RKO2Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67ada175244323-05147493','','','2025-02-13 07:38:29','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42299',0,'cd-form-entry','',0),(42300,0,'2025-02-13 10:15:11','2025-02-13 10:15:11','{\"firstname\":\"Daniele\",\"lastname\":\"Panzanaro\",\"email\":\"ddoesit5@yahoo.com\",\"contactnumber\":\"07380110313\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sn00sAvD8yXX2FfLb7ecmKm&amp;gclid=CjwKCAiAzba9BhBhEiwA7glbaso7sk1GDb7pAuxwFpnh34c61AGD1n6OS3GMwz_iYEyxnme_44rxqhoCvbsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA65Lj79o0DTxbIncLE0_e_kjyRRB_or7lWK8zAKmSxg70PvA70HnjJpXQoJy00LKgaOgdh_9iHWaElsh-C3HcnLrkRrap_Rj6-9Ix_p2AQ6QdGIGWtp-8WVmup642SBRCvr0mgedMqJ68YD4I1Y63n2p2o1kuVi3fB5SIZFZvUdNTappGpAjOO5MPCRrYQ5dLYzUQg6-y81OE6EqlkdaVmp2mzc8uO4V89RAtZHdtpwMqgufdJGrsh_flmKWBo5dQ0TvHghE1mml-tmqRNPhAK327PDXb6Q_a8KW4CBrfPQ1BtcCamwtbdXNjyLmIkLmYgMY14qhVJBa8_bFd3rqd0mXAaAVSMkIp1H9JlUSNpXZIpzkfw22Zh7U67WRLqkQNHubznA7ujPgmbhZ3hcahzUpGzH696RPgBC2BmZnjEqUVenV9ozlJ1UxglJkdG600dBpSvSWEhrJWcyzX8kF4zCGYYZ5hZ2_WW0dUAJii1RppozuRf00H4WMeBkNM3chLo5LYyppQM_HD_N0gl9duTeRItQxMnfgV8prqPPBvyUQGEGJOBvJ0docBRsll44OeoS7bA0YxXSyDSj7bLGbib0hUAdPks7XuVzQvzyY7WP7-jIfeNPjJ2D1n32ML7ZVHiawYEI3RspXoTHJdRXWwAru2NnrFEbOn9q3I9zzPacr7LdDV8PsA-tF5FOxtOLjy3Sd-qUy083I6TH19fwibaK8HEMkAHH1vgImGpMAJDX2fqq5ofOzWXlwFIC0QGy_EgbE0pUcusGZHFIPdZTeP_4fGcKpVbUUvdXRj_TJ9HsPT2Z_5IfEfKV4a80PkOuGQllY4lct1RyPj8TTfDDtt0-DF9UDaG9OYklwg5pBxkKI2Y6afVvK70TCAVH_eZBreuazbQWKB0nr5FiY5X0KVlN_Q3sarRjPH6o8jPfIw5J2PPsBmi6aw-DKZF8phNSiMzjEmu42TjLyImjgxmJqhR92hjjnoij3Mftx6LqZhSJNogIXK1qEKmrutmbxzcEdPCYqQx2kmK5DtgQBzwXkl_u4xrenLfDwAACAPZvWmYEKfEV5mUS_O-Yh8lPVNPCgYVD4Dx99rCUnF1NkUNFwapuAjtRvXbVnsyDHK0KStsu4utHiTiaLqFbHNsEBz1d-IDBz9BsecjdF5tTky-JHfNFmsc7XWNVCsOKzVQeO6DQuE1VZnZnnwdIOZywrfRXdvr86bAiJyrOs2kLRSSY5hi1tJgZ4Wp6wS2qMKgFuwwRHBsmPS6wrsPUSgoHqCuBj8D3pDPsyTDLmn4oKGOU53TMek3RLHLXk5e3QCY3xbpAQZHKWx1ABNPLW6puysMjTHvmclgk9Y_VfCLiI4qGRx5x2Rk2_gX_wZs8ir7wfqCzIjR69U2JoeVRUqqYQsdxRRnhsdJ1S5uSjJMCscIomB0-E5HXeAE3eIUEdTcULF5O7plf0D8TyuHvw07_JI6jbJhQI5rlblOOll7nlML-jFXmZ5zZbYr3Lz3HnZ8xhmpCSbVHr4tu0cf9lJ5ZA3cat0r2JjwaheEvotdbQSwGesO4ThasIhXTWd_4PcUNOJgPHE8OdD1wNmCZ6OW1Ll6SNWaL7hBgRUIHzwEY6uUup3sycXImJH9qDONhP9-P-oSPotOQnkLHCehBBXs3wmeNwqcJz839diGliz6VyDq_L-zJxpOp_0LudPQGgeKRNtUhttw0FXA25JWpWvmgrYZPPhEQSltXjxIvI8vz0Hi35FGhoowblEliXhIS2splIGb-63kvT9MPJfhIBiXNl-1W0QHjR_h9sMLMpQozdm61KMNzuY6Q-jduETR6Qyis3uHf3eFMwAKAUo4oZ5aiybnWgBEbjOGUoS2aZ_af086qR_CY0_eZ3OhKvGY_H5iiRHe9rUMCLjnm7yaEtVZdyeNlkxoCaoIjfnYXanjVs4AQ8o8RD4AYPoGhfvkFDTRUfAlO_1vvginiGNyZSZFbhg-L_RdLht3W-1yHRqSE9_vt8BSH1lw4287ZJb4chSKhyNOjKjgoNQWdJ_QhuJvgllpeawq4JTlx\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67adc6113cbbb5-56303236','','','2025-02-13 10:15:11','2025-02-13 10:15:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42300',0,'cd-form-entry','',0),(42301,0,'2025-02-13 10:19:41','2025-02-13 10:19:41','{\"firstname\":\"scott\",\"lastname\":\"smith\",\"email\":\"scottshoesmith@hotmail.co.uk\",\"contactnumber\":\"07908594444\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIydGX9rXAiwMVoJNQBh0HkT27EAAYASAAEgKGf_D_BwE\",\"recaptcha_token\":\"03AFcWeA4VG6Bkb6fZ5W0pFvCkXOEzYOqB9gdsItQiAXevc1CV49XmxZ4__4iV8EdEyQu8hV7VmKWjiOt3C9JMpV-TcjzW2y_CpLrSOK-uvcu4iRVTIMZVUhx0zQdaaCGKqTHCdzFKLeNRAA1swyzuVt5E4GKlV0QtjyvO-fHsDIjj43teW0bzWC9kUMluaPamUhXlBnZP5RLKfuYHL6sBx8Ud7ZQD5NPVZMQTDMk-eRkxPO8enJtX0LPwL2MrnaaGfjCH4cInaKA9FHx-GNiqk7jKib7IRq7dOywXZ3wiXyDZmY1HrlaHbo-8QIFlPIggfEZeghhInv8W8fRQqeBh2h896sEkJqDo67RbiWYvKDEiWE7q8AWrKSdbkW61_gQiUYZ3uph_3gLln9EOGD-ndQbld8SNw9kqmRxdNRhd-KePtkoWIWziaFMprn7RiI7XeMMtR6RdUUktMkhZm6dWbo2ka4yGW9xGlN0_WTo6qre2GdeLWCOcCp4oXiNgaSBpM8N6_MOxTgvTOV2S3aUV-S3jwJougLgrpwgQwe_NT7JgwRphOnQKPTjI4zK_Kg80okFN7hvyMAzXx2IfQGl1Oo1KaliE9KeBT6ShJ6op-hMlUSaxkVkuMkkP8HXQ0beI5LVG6WdeiblhODuLKEZzCDkYYws8U73YdXkPMsCXo9p9ytPjJ5fXR3I4lHPI8GQhNGPQ2ji8rY70r0O4QFAJKBmnAMdrHQSRuJlWglTnBWspSo9hSTZ5486Mz3pILTXSlVHSlnjlb8iii2b6phy9yLk7Zeqmwrhef28OWPObvSBcPytsl4abBnf-0bOG6_lXaIQilSLqWZBpLt_w1isMmU2_z72dXmtL3hofdAjRnlx_zB9CXfUqlhi14T31fc44sr2UKl_vZlrBC5rVyizJVG3QlTYzmZgQsDiE97QWCg6whTXnZPUoen6epMY5ag0QVwaeqZLLqvkb8gQk4JkIJe9ZGepnajryw0xGIPu_sqlgPlhxwJa_cdI8AcPJCrpO66AakkooJhzK2DgNfCDgJ_Jhg6A6O9B76JE8HnA5tZThSkYbYRsN1AcYBb2z09Qpdznw612vrzC5Bouj5-Gs7nYSPR9pxmSulGTdUrNDhOGtmhODW6Em6mY05_XDBSzYaEXnOgoOw2y5kfQIep7YqtCi2nvdgVEZfwTTdtL5QJ7aRxx0SsgN5ckxQRYLcmY5YpKRs7QnLyuH9S-sBalhS725oNbmc8KKdfwzrVRGtNRnQua9HWfB9P9cvx3nL6hpVTO0CmiBIYHCpTTLJtYbdYeNkZRra_vt3gtk5uRIsRf2EyCqtARYILNyceIEsBN-HXo_rkoNXKn-np-YVYu11rOzSMEJIU898oi0ctR_pFTaEwWVNeym-K_5FU0qMbHLus0HUtM2w5HvjvANCDiJAoVkJ130MqfCiKQDks7TYfW2ONh7gB2RfJUKcQWHQTCk-WrMzeVjUomDkPJn_SpIfxWPmDOkKq6wD2HTWebKQOCQzdeAHIhLsFTgYSnW0n5JZWUMoPTn6j7UKcIGeOFDDcikxhkpKVhu4b_HjSIrCzmwl5Jw3nCXs4UJtc3x482LkfY8AMFzBYCKvMNWbwJ97i_BiXOpUgfSewbpto8tdzBo4Yb4BQ8ZMCIEc0r_8aNk-8YnUW0hEMHvKY6PdkP451Wq11rpm0S4NNnUN5hlMib8ml3fnAZgFcRFA27TIs0I8S0_IH4-oTuZwX5bhBMIsLSAAd_Y9qbYyJGsznyzbYtRaCt1BRv2_KPg1Z_6bDMRsDMGsVwz_CIswWq_3Ao_c2QmCbHJ-MUWtAhucVcehoBDOxQ3kmdGhL_FriQULjxBNo-he9y3uUd1IrWEGugghMLr6RITt3h-WrZPZlsmFH-SrmaV-5Klnia_8pHBzUH3oFE725j5XlVeJhq-M_T8VQS7OwiA-iGQ9lP-6_n3rM-e-9DRMPZQCc8uXaNpjQ902JzsV9ryU0ZSWrfz36QYV31oiAZNnaSrsA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67adc71522d983-42816097','','','2025-02-13 10:19:41','2025-02-13 10:19:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42301',0,'cd-form-entry','',0),(42302,0,'2025-02-13 10:21:18','2025-02-13 10:21:18','{\"email\":\"scottshoesmith@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"5\",\"currentpostcode\":\"CM3 5SS\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIydGX9rXAiwMVoJNQBh0HkT27EAAYASAAEgKGf_D_BwE\",\"recaptcha_token\":\"03AFcWeA5vm00hmcMe0xRQhsIMkZniXuGDsbaKzN-6soZb4mFXuxYNWBFu5a-VWBm81ihZGObcH1QCxt_VizH4fa4HOLFl2agp2bZzrJc3Ckwf5h3rzvOs2DDxXGgcdf27P31x1GrW5_T7wuAEOI95w_uEZB4qqo7qfnxa15_ZNw4IkVlE5Ui1Lhivm_9fcTmnI2krlbXjlFLxjAqa-zp4Yo0TWZXDK24Q45kxbLHCVETnLux76Q_v7YXOY1GfCxCLptB_EkQya21Nwmx6pdDZAHdzQUurm2HiosMlbUuWdOtEmqVQQOI-EKQDivUo3tGNXEArqPpL0PASPhKpsStdN1CG-ihPxQn4AEueeb0r2LEyxnNx-lfY2YHzk8q4FHy-Lze6NbIxV0wD_vva4N_W514tnqivoPpx-Pg9Vls7fU8sgephZBf5W4x8tjKTWCdWzFat9MQ5D_fNj7rzqI16H_dDEbrimituONnpuI9jGrUkfOJg4ceOARt4S-6jgHo3HL_nlfjII-sUJFyX04JcfNcSOPxiqEcaet-zNfu0pJtRdBMggjp2u0qvaPrGtJxvEr-p8Xv1MwPsawzxSMs2HG_n2IpUSnYfY_T9vj_MQyEYzJI9XJXjx67PWbkSptzoo5sjBlN9BKSQ8UBaezd-gREf_nxsywEipngYc1j8iBAQwz9wPybriuGnSnvXKVziohZelZK7eN4o0mqfrsauV1vXS7MRWkdXA8xUaeXdafaq7N8TboL8f8dA1muNVvVM37NVACYYXnEd9RDh5sUWb3CfjHI_a03VP6CmjTLBVJliRckigTcdoF3PyJZ-JWIYtUn_sJgfjd16CWJLbPM3rnQ4q4ynSx81-tVA0iaUtl1ZNEp1VW-x3X87gEY7aDDuKZQeBRIsSSaT0UeT0ooGbWKewsnHba2atOZ9PVZ3usov1T1jeY5PZrrUwuOq245S4k0gXiiJSl3zwtYUzKXANCkM42ehWNG_giuh69BPSQLxKAo4f_kx4J3XdWWuMW7EmenCJmCB4hsMb_bAziNCuk1MpE-O6jiI3VPu7Huo7whiGfitGz0mLizReH0phUZLQSN1jlD0NsJtAYWbexZb5wQkXhXA9IJlGh7CyLqsK8e67PXGTgEJnnaCWTr3348FI-r6MBVfmqUygTt-5hRI7yecxKEqX6Ut0aywIqR6R9ndXwDLqFnRZExMQcVydQpxyvLUnSIOjs_o2Oww8aLf6WUNfngzHHr70bG1uWhprBLWDgxsKuhVbSpSqDG2LxGM4UqfZmqj-UmK6DgAq13yU8sqYopbMQKkpv6kUXJ4HLQK1ofaunBfCtYMoUD3hcsDENrYra9tNFrs1eb-WKslvShe5IgpfzQ8iNcy7gtbMIraZ-OesWQnWFtLEtUKFs44VA8XVH2wL129z4eMLnIU2djYpUxKvFs1xJX6PQo0B3C7DCbf5dsHPUTdlGN1xfZz27ILXqz7xiBu0ynsJD0WRsLv_z_lPFXeA1x7yD8YgigKtyVK2zfQ7OYV0yjFKeh19olxC7sf1biTca9Z6wJDmnhXHEb3_gwYsW6XwHZ4JDSqN7YN9SBbCFE6cOvuuGwIG6tSznYEz1ZMkSebXa7IyrNpHBCImdLr0V4YVEhlef9kRh_1HKHzs8ZPcJ0Ld5tSf3IQLmPMO8FTapxwxc--fUDj7yNs2R7-Tox-HGhkMsnz_VikIeWTjhLl-ZGwuhYEtprPK_A1cP6oj1ZfQbPBVd5g2UxZSGH4g8gqphqZz1jKjb_Os4RqtarVhx3lwvkx8o7X5VC7-gK2GFeqWfC5PS1CsNNz5HzeRiUn_1FU0PtqVeB5Xx-3wifq7lmoeDvOmu_c9_z41ZH7rLtmJimXzfVw7Esic0MID9WiPfZag134BZK5zTwRFOyjxPvv_QJcg9kLGXM0pz7hePjdvlqz3gwbIJPV-3o7ybVD58MVst8RSljVte7bbLn1he87tOlrRk1J3SULrXkWNzQd-ft10cVnlGwsbWBF9w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67adc7752a4456-32857085','','','2025-02-13 10:21:18','2025-02-13 10:21:18','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42302',0,'cd-form-entry','',0),(42303,0,'2025-02-13 11:32:21','0000-00-00 00:00:00','{\"firstname\":\"Marina\",\"lastname\":\"Novokshchenova\",\"email\":\"marinamuraskins@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/\",\"recaptcha_token\":\"03AFcWeA6eYDRQlVe8RvnuZld3iuOPfBavQZI_-VO9FjP7Ebt21mENtoiq5PjVSiy6sj0i6Y_FxIYwteGX4g6RyTSHhIr8bIwSMTHrr4KeWTTATzUau-05gkK6mOws6S6DKA5VlUJXWYe1OrfEdClWTlguAxz6e7j9O30biZaxn7RwGJIGQDFI0OBWi5OV_rCD93uaQCcC7T7OaVgGy0j1of1o-EIkIMRrcoZSA0bVMbux_Z__A8ZTgnWK5pZYj4B4-rDKARrefddtfn5XVqM3AFrsNy_LIpZq1KYIgridawmVa9TG_DNLxcN2Lw-jg5mScpfr12nlgDymC0yglqr2llaKCNYHSBdJuVSDhmiq2iMPPJyRwMwTRtMbNfwiD8eGqUBJhPeHhxhqueu4hUNFMJS38RBqQD1FH7PJV_oMvfTXGzwYSuzjQlO-uDwtiR1LKF12OTJPKvxY5OegXTif7mDK6M0swU7ns8DPC1XRUshXvCK4nZI23OqmJn3yLVeLUn89XSx6FFluvdZhJY4qczkYPqDS-iBK4j8qcjRFWXyNQ0SwWA5eljoJJ7O1CuMQ99vJhyGd26k1cqDjLKX2MYqCAEu_bFf9JrIW7rH_xkhaQw5nvDNnGJR-dntRBAiN5G9cevQkXVILf_qAOlsEdcAe_L9KS7cgQfG2RMFkv9Fb9b6Orc8-twVqpnHY-5NocAY_qmJS8AvtGm9k-BF7yRkPIXPVfxRqBAgbHvIjfqbl8wna_TeOQOnq1XNPgHO3AnJmn9CfAJgRS7unUF6VYZjADU9uyVJkMCKzbMHmbm8U8gAU_UBa-XAEXwIcT67xRZG7obURKOOwpB4k-1uSHOfUzp74JgbWbKLEx1ZAWyYp8egbAiEj24vFqE0tjf9pW1Kq-Y6uR3g9dfROB5kKC7lDqNjnKTXRz4rAtw89oRBJzhwbwFmHJY11e97zWx5hCieuBX5wbJnUeN6m-0fOqAK413W_AdY_BJ5vqxxP-SL4_Dj10380H0W5C6KK3Q-ICROwF3TkGPv6zZxQlO0nEHHQBBLjZdZiTnlRhkglhQ8FZvleBbX_nFp6P-S8OidbopU6pBHDjkndrZJJF0ZrEUTUa_GqeUUeknHkorEpobDFb62ozikUL4-GYG_2qYVtTVanG_1K3Vt7kaQDclphdZk3Glta3KNjOcJC3KIJtCGOfkCbyyp-0C4FHmVPvwXZwv4bKMcvB_8gVkolYKI1Tb_u3WvS6ERxU9C9n0fVTGTIB74A6C_KPqFtzBxz4TEc3-G3e2R8qeqdUFc-Ox9FsXiu0rewjTnaulWzYq5GR7BXnzVi-fLy-bfYxO9ICF9UwqCx0ePIyyBCrZCcMWjCVAiU_4YdkOFwN5QoL2VkymFxUzO25n5EItElWH9ADgjzFYMDeWER9bGq2uXRwdZwSYoU3_rhM0kUYtR79GWTfAvWDZ6XqCY3FJgxe9jIjO9RzA9qlONZ9a-HXaB5fvWv61LReOB7Z4CGr5oBHP1USij9wTqe7SXSLYcfWDYrF4UKnPC_GqvLJBYN8BBLzA-YC09rOgBtbjFIe5ddpW5MI9HPu2wECo9BI1U28hq0-2dnkNQlsqQjEBX0nOXn_D4qul8mtrWx9GoRLlgeezZvzzNACkdsNItojXqTNzHE7CcZhLuAcVa_niiprOqbegNKol8QrCeKeANPTJdELdyo5wsQP0vRaLeKc3Vmz5h7822-QJ2E1WoRVOeNU8Cbv9iylezCR42ayYgAB1fTjv02TLNenBnNEOqIjkcG7h75NYNWWgscwNf6qvetXxJKvJsoFRGRn-vA6H-wJtsQydPC4jsJ0tG6xCDRJmSe5oHDx1zBTrt0FgeF0OxLw6zgP5-YZWw60tyGTpjmsRzRGGSpx44XQBVVqvvXzCfZWj6Sn7N-dw2czICkRMcth08B1tEqd6QzYv9u3m1OZQklg7I70WLwIJSy6PHbhniadrr5gI-4PTjPMQ75oyyFyaKPz7jkwdU7F4nl5WoF09FZV1raAvXNWiUCa_-FSAEOkNdiPO6mTqxjsE1Ysu_bytzLhHQrqZmplCC-FiFjvfhwUEjT_YZ7lQbi9_9mPcu0gbNLd6lw1sNHbVmMOI-Rj7N-d-f8rPcrGdbAhG1TsMpomxHd-Qf436AXZOj5IvLpFdLRqCrq8HpxDgeywrKzZ2uPXyN7I-SbbAfOOF0rrup2uFHROuyFzc2UyP-arOT9UvXgItShJqGJr655_RFQK_MSOO-9oAsa9RLuXn17pQw5yT9Qyw6aQlGtS-U7Hzq14WePvuViAKurikzsQlay6W3dJsl4FAZQV5ZwdT3JFJRMSPpj2VP0kplK28KF4IJrP6qhGIdMMWcUohOjmoH7Uom3xEUQLeuKSODBgHJ2GuhBoYNWAWfsBE5Exk3cNIY\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67add845b2e056-26772564','','','2025-02-13 11:32:21','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42303',0,'cd-form-entry','',0),(42304,0,'2025-02-13 11:41:55','2025-02-13 11:41:55','{\"firstname\":\"mars\",\"lastname\":\"chawla\",\"email\":\"fozzybearhair@googlemail.com\",\"contactnumber\":\"07545132532\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/iba-membership/\",\"recaptcha_token\":\"03AFcWeA5GlKrthRYfPEGblB8xIE7KxENq5HcogAfbnpk7R7XcmrLR_iiuWzv0KHI3Ghsfa80bscf0QB55XlsWECbMx__RM40-YUsi_mYVgnHNQsdz_kuc6Dw_R5-Jf2z9XObLYLD2sjnk32xiSlq8pY8b1BJPCOoCgFIfhK598eGrYHMOiK6on8HHhv-cbcxEZGsLyLxwmDYAB0SyrTrSGleFEhAwSuMkGhdVY9CExoPH-ZHV2XQBglGTW3gBjbo2vuj1L2ZG3Cr4ismFb7H33S0m6zXF4f1WHnIVWUlXFqWbZBqwFThOKoCxMlv9GST9Llt_vWnIy9FfLmNhxe5AU13Dh-1v14DYigFUoJ7hacK-zMdqCJTfW55uuvRJvHTULRtIpXu5V3PnOiX7yy0sQQMjV235ZOb4Sj_jkFIy-r_AbEMQe3N61NeUeIuzOGv05cvqrAY4v8V1VwqU0hHEY0jPRKzudPfwbJg-_u0Xtd_3ks0KFbWpfCbT-zsyJGRGsltMcz7b6MPvWp5zG7lG-KZiGquDch1nlQ8rHj14reNXNQbqcswxIkKMLDeu2wEGiNlqtHIN1RP_T34F0STEBYJGElEg2WlEaVLIbkRNjE1JPsPFu6Y6Nmh9rqYYP1dkqnvl6BAByP0EkD6U-NZi94bfe3j5_yhKJRRy25P_n-TISWaCxLA7rLDqAeNkMehi3qFaQUoEFhBazSY36x-bOEbnN0OVaOa1FqYTH7sU7bbRYIVVo9wJQpBEPfkGIiqnFRVesSi5Ae8T3jswm7WNGldIxr5LFLANtRqdW7bB-7u3c5Wdb3kdXVuj_-CTyhSeKcXPs8dR0Uez09LCPVbr5VKPBTbGtEaWAPx0z6S6u14LwcWQHjv4xaN2mC8MAFl0Kg-Ncrsq_dXd6oBFrRAnwwK4Z90fynpTeU4xn7LWlvOY1kgtLUtdDxNRmYbZ6DoRDuxtaNKVVt0fAigos8JGxcmbrUfud2XNIjEbPN2pN085DELFxijQJAqyzajL5vpztoej751ej-cTo2-qrHuSKVvL0st3EDsF-ayK8duTPuv7R6LNUlYKPDR_xCtzXExFHbi2Oeh773jMTEEfjN9D1sZpbRhGkBJT456dVbNzfaVkTGF55rGTmmty18hU4zDq45H_TIO6mZfEnbHzj6TZjWI-5enCYicfSuOQMhN_cBgIbShNpiU1YOLfyb9JdavfQV-m5yUEk9exq81gpLXPqgbzpuWw_ur7sBECqa_gMoKufVJx8ZAQuQWxXQf8Aok4W-SzMIYaHGBiFTR6zrjcnSCFjvv7zMKL_lail9Tdj9OO8EqVH-0n7_0HOjCYErZ2NO5N99hK4TGZ5XtiV_gvoJ8KwEycYYxcrcVV67da6XQ1PN055Il_gd8vbhWlWsggod90VELnyvJZ4jyAGuHQcIF8p8-gfz1tX_5u9B7g1AfBtPqDVriTXZm4_chcD7bvlshoWU49T59xyIU5Uw7Yfm2DTxVJmD4-woc3Oajk8AKQKChU8kT2ytAdV4m25YkZkSltLxfek-eGKfggSZeL-DhjAqUEOPaVlPSizDNUvP0-j_Kae1E4wMSLCmW9Ag6KJi7BiNa9FPAtb2g-4eOTBuy2EdLbWPKaWJVBakpve9grKHMRagYN19kWg89Bz14mZTpsj90_pO6N0lPVpqM_AkAafnpwolOUOzdN6Rp91uXoSlZs1XuJm3JhtWgtAdkheXj0cWanFnwhy--zxmZnI3QXShJARpzQxJ2iyfPKgoCHFK6IpINZmCEamljPRU1sTIvVVzWfHNplQCD-uTJhS69o8bV9-ZeZMS_ecBkFDUA8v0mb7vsyU0IG-URk_jCit9PwHwAOwdqaKabIb4hz5RJolnfwXZ76sVxCXri3hGJVZ3ymKOCSvaiwsKNaR4d4qLfYuIGOlOpT2CpcNGShkMXLRZCcjvUFJFdyvm8X8l83kITysTz4L1Y\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67adda5e7d7d97-89382009','','','2025-02-13 11:41:55','2025-02-13 11:41:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42304',0,'cd-form-entry','',0),(42305,0,'2025-02-13 13:50:25','2025-02-13 13:50:25','{\"firstname\":\"Murat\",\"lastname\":\"Bulut\",\"email\":\"murat.bulut.pt@gmail.com\",\"contactnumber\":\"07887940844\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sn00sAvD8yXX2FfLb7ecmKm&amp;gclid=CjwKCAiAzba9BhBhEiwA7glbakXy9_edhffEKEgPoarGH9K2sBfOOsVppuIhT7s8MHsBICDBBxEKPBoCmRQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5gQ-7S1_JCZUjy7B010Zfadf-H5PKbEtGv9p1mvr3Fdmr3LtOMXk2j5mnSkUXATGLhMC6wOn-Pwx4O2K0S8IbiA0tGsM-vyruC4PGMoOWdTl8dxmLYP07sTcyh3mtBiuXtqQsr7STAizvaNnb7EVUNpKK-JoOWepHuP6AXQZ2G6CkgpgIUYc8NpR-uU3rjn-NaaE7vCpzMjZLUCibyKwgiiLg7Mbi_pkujyUO74dD8dMDDKaDOJ_UnB1K3hZ6oXa87pxSnGe5Ip_jIQNSmGzTOg2XpPp8z7Ycp-oCrkvqoytbaqF2aFXXeiqRqq46zpnL0ucB-zwMNpVQ8_I355CAcaFLAMB1fa2OMbDYl86S5x0pnzqNZOWsBpkO2iKfUecUpVBqDrOOXUYtvYhMJVny2sdvFHf6gWuge2po9jngSHzuXnXuzUev91_dWqvuydkHz1NXXdBFH0DdEQYJIzhfxKSRDqWvhrDWnAXWQ93GPLvlJeAA6feEDoa8cN6KHCkG8KCP1SvKmPHFfzDW5j-VKm48JVuZNUJtTh540GVk0NKWFCY6ckpILG8t6gu3hOLtGOGn4ZmTWt_JJsrakfI0TbnJ6n5e8E6j64pE9N0gU2-fR-XpbuE9gjGO6BHjE3CWSssBnBxrIBhbvR_y9Ig8TfQrMMMXd9T4CZNiX_xlWrH1S77tm7Wa8fMjzjEH_PYVth_I0MDRFVPeO1KXKhI2bcuQXGKwPKXahfuYz-qS4m8LvyUJVj9R-1U0rRDaJwwEiIb7Ey0Vb8QI3JOHLYscFjqCJlI6SzPN2AIGKX0vdcTRcmmaDFjCQ3yCyA8OTIim5CbSjvsk3Me-JKbnmeJyG4EtG0tHMZ961pyHbsJ69nF8B--LALLHhOc295aArOj8x6mFa6gqeRuFEemPbnxEKfB08TR7quZijuPwQ7mgGIBxMQRWAGokN1IpO4HHb3x3ZP9T-CnhS7u-ZzFAUqWYo5lWGpWtqifJWs-5_NPaBSVg3mAY4a5crA0u3bnNksZhZV8qYeAwNNROCsTU8UeI8OBCR_i-Oh43NmcXrLfDfadnw2S5-hvnQdxxvy1SnAfbYxGpw1cas-_KuoEQKuKqAlTk4KvZMT0b-Kt6E_AQ1yr9MWtw_wUYGt57U3A2QizmX1V-gO0f9fv_gsbp8GWI043HA1OoR9hrkkgpmPKBxwZ85Tpu3RKakzamGBAna9cLzILT1a9roqfa9KGwUAdOXNSIeBi2QHqwrlA7bNNoB3vIk5LeA91KUjL9yeFIF3SdiJ6JeamN2hbNNPv7xi-AhcdpPL4PVZNvnhgoU8mIyiRWjNxt5MpgXlCzyV468vZ1l7YRMchIwvnfsNG-lRk1hvEwP1pBh7KLkK8doqp0hefuiPGRefDVM6B7cJfQ4ex-McOkI78nnVo6MvH0Gd6Smj8DK-Eod28EhAH6fl_84gz9JDqTApGVFZwiX5r6C5uLxs2yZAxJamq6uclMIrbAsfiepXC1TTfJu4llgAQClG0MWT_bYXKn3L6VLfODdxXa2gLsJgRO6HjBRhGvC1LyHrJeYP5qWb5y8tDi5Gv7ioA8sCuj6708ZLP9I4K8CphS3nGRimZrQAXF4hRcQaEutcTCwXvQuoUtESX7UgRDENl1HBF5jBu4PKKU44b_NOA1NwWohftNtsbaNkBUa0Zx3hdErGP61i_2UZKogKPdDHXNi641uJH_vg4ZXq9oMwATSA2LFA2R2s6h9vVIBaDHuScuPENZICcrGfx_ZRxfXwAVdV5gSilpQyrEAB4z6dks35KNilzl1yPfz-nxWToh7QfQuhPLSVEX1XQEoFvztfALO9C36idztZrlgiIIJH06AQ8scBsCSJ165zhhT0Ih5OV0E18R9vTA2QPDgVADAQy1uVg3avI97FiLV6NgULc-d8yXFUs6Fp_sYVphWPcctnlpiwNHjoyo3G2A8U-sz2UpUozgQNeGRzV6zLiXmybGSNx7MCf-yYWWk-dnNcJd4QVYR1wyro3O7vGxXgViuntR5l0yktP1umWtDkkIPFKB4XVZ4Ixmbxaw3zfbI_ntrEJr7-OLBzUgLet5D03Cth5Z5Xv81uUEP1FDc6MHx00Oue7hrudtlt4TEL2bkbuCTa6qwpMrgHj5mhCb3N5_Ed27sGuHpmJoI3Q4jhCjetn2lBKyka4m0x59pY_1PUqX4wfZWi1yPwA0JYBZ3T5nRr_HnJK2zk48TMqLSsmz1PahhBGS_kgvPRY64-zI2H8PCRDqlMBjhAZa9QJPcdzKRp6rbJNdMGCDIyC6OW9G2rY7m-pszJHtueU26CHYvbAJJyw5Cy1FKg85CmMZZvh52MXiJGyZ4RcD3x4qUlNgCwuRZlys9Fm61HLaKaJxLJiQ1vA-hzQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67adf8941753c8-10712078','','','2025-02-13 13:50:25','2025-02-13 13:50:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42305',0,'cd-form-entry','',0),(42306,0,'2025-02-13 13:51:30','2025-02-13 13:51:30','{\"email\":\"murat.bulut.pt@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"NW2 7FG\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sn00sAvD8yXX2FfLb7ecmKm&amp;gclid=CjwKCAiAzba9BhBhEiwA7glbakXy9_edhffEKEgPoarGH9K2sBfOOsVppuIhT7s8MHsBICDBBxEKPBoCmRQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA50_5xxXXJv2T9vriuS4-tHJLlSUYZg8c_hP2T26aaBSIWtdZZp-EW4ImwaaXJGuXjUX_Y20l79PFyQ1jfDT2DlzlKVAlPUeoFZ5K9qDQjrsidTISsc-WdXgz8tHcDuGyr_-dDXt2dJzKZ-125FFBSPl1xN2BDUxfmn4DpAkPnbzIK6h9ck_kNI380VAjwZ8iCDGcCoLRDoXt_sJSRmkq6ClVKJrjksGXFkcsTBSVPg5k2k6dYy_EjaMLoEJ12-I3k-rrvuVeZVZLtbM_GH5OU57KyugwNEzkOYGJaAOMCmn-d29FLMQIhHghUx4d91or_CktBUDJ_CT-PRmgq6MQl_WSarx37or2acERGdwbZmbYrJhR2JACTllqRANQt-1mnYAYpV_9E8gbO3R4iA39dyHqvF4eUiNokfaEW6uXqtoh5PUsScPc4GlgB-spSPQKY2gUiVR8pdLETJ5_b0ft_bHGw29QlYvkpve3pEroAs1LvNChFTwxwqAj7YNUxDwlZ5de_hVsHbGkiwbNyTiKsx9RvbbnXmMgmyh7rYlufoG700BVw5wDwf8GtG3LG1WIZ1Q2B0WFEPk0V1WFYEYm2rccmZn8enmwubRq5CmHEbj5YRT6wvgQY1oOiLrVQ-bu8I3d5Orf_GXP9rbtbzLE1bAbpKJuWDQfQWA41fXXvPpBNISGWKqgh1fF1nlzzaawqQB3fR5bLG73whIkPGhCepERWCOCIR7WSdTZMx12cIyLpntbrTeppcfutV6r4-TZocPmWxaXgwvb1iWfm6IGSS7Wh-qgqP8si11HR89z4DCJREopNfRQIdpMtbQJVV6fFBh8hwFs7hrfIEXGb88nxfuU7fBupwVbTxfE7XjKZSjmN6PGq1PFHHgePbN2H7_dQ-UwPQqm5Sz8Xt3071TdjcXuwJz1pAwyZouwg0PfoeA34SMDKaxokHSGs28J0a9-DL7Y3xH8dOK7YWR1umEeZnPYTlSaNgqI7XGcGRNpHGhOuadqkc-yLwsis-AXDw6RiZL1UIN6m1qOskFMybGhra2lWKQD-usM0hKKxf6l2HcGtd8lEuJI_JQnq-EequCagcFjOxEEXTRHHsV4NsK76GAqkCllVj1OaBNA-Fz3xlub5Ry84LuhcipVElAhxk4xC7CKJ8tGIe65GsdzDGv3ZIekJ-ns3B63-JElnagISni4uZi4l153OhKY0G7QS0SmYQ_sIcmjPv8tEbLy6MTYgnYAx_CIgWzMRcTQj0iIWmn85g2xJnGD-y2pOfzx1xNf9u0PNhrmMNsZdjUhqpkOE_zGqsfjhW7lmbmO58a00Y1xQn-37Ofq3mVuIMAxXRX785qqANHytLcdR4jc54VJy6a3fLFF6rJYzd_sEcuylpYxqexyx7WMJrZjNQ1OKMlEr-Xzo2weVLA6QgoiM5K26fxnIz9iEq8cNDWHz-4BtyjXFiUXLkIt2ZxlIPn_nWoJ0mkfORvbXUv8GU_j8mKxZebQlDos9Y6pNRT-gedmDgrfyFxdwe1UGN2tqXgb-vTQhHHHgtEV5OboqE_fDRqDicV_pdevEYEvTOyrCwzBYj9-9BxGyarUgTvy4e0V9BZZsomvmM0T2Kj5YEL5EIBBTthoKmK4DF1iIAweavJmkrU1r6vkrdAbz5wbpxIJBlOR51rU3jC5ikGbRT3VKwbFR-dvjxAXWqcJdHgLYmDs66ZI_GTSa3gW10RSOECvYjxebhEwdmgHDqYpednLHsBqcwzuwlv217KcrVassgnXM59WeJEkncvWPL6QUqkoDnLIl3LxIpVidXOZ0nI7iNIy-AjKndpppJnWNER7sl9nVndRoSQbnhWaNN8KALLeuv7GYKrHNWx8q41C6r51iYN2oAMYYDF3KyjeDdBqstV68pEvhgvYwCtOBW2Aabz0GKAmxbG6UsTG1YwILC_pVxMNsP5ysA3I3uUf4M43WCM7neNEIWmztx_1lDZJ5Ax8h7y6puxBk4ctupE_hQKZgx7eKrzoBWRYX24F0tr3g1jjnOdn5fV8TcHScMgOuTsxsH1O1FiFpxf3Rbg8DqDa8wr8eyun-03cnDDOBFCAamjAX6u_TqDIjA6dwZy1s28e_TFPf-ncce6tgbGZEMho1b6r6FpJD3FnKUZZ9fYrG8pYekAqXjlvZLVS-NhQANp4iNCLbfSdlEnvq72aXgh434bhOcWpbYqwBMRnKEF_PHHHmOYyQqOSFdpXfz3blbDb6G-d3c4b2i9Kk4IIgVawt81pw5HBk0tk7WbY6dpYfjGl3iI1oJMhLG8ReS4w-Q3LnqbWPfNosC9acqs3hGmWLtbQnkZBgk7-9pG4RrLufh_3rdWvas_tu2dKyZKTThl6CZQhoanr1m\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67adf8c23c11a5-11564437','','','2025-02-13 13:51:30','2025-02-13 13:51:30','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42306',0,'cd-form-entry','',0),(42307,0,'2025-02-13 20:44:31','2025-02-13 20:44:31','{\"firstname\":\"Fiona\",\"lastname\":\"Phillips\",\"email\":\"fmmbrown@gmail.com\",\"contactnumber\":\"07824366231\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAzba9BhBhEiwA7glbauVxpA9Xnyvh-EVPv1JS-CGh2-M-8NLjnQxUUMRMYAiUZoY-4LrWXhoCVQQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5UBxgV6mYsIUJK45E8zIV8qMBv1lX-O_hNfEi8uSI9vXhhG_xhh3PuQAeIpt0hDBZ1KnhrN8hXJvTW5eZ5vOBzYjCA35VKtXKfcxqzx1GNwg-vA9jN76TGoUdotZOr8CfDcZEYvIQNHXUI7Ddt8C4Bnjz6nMoH83iW8uIC6nLsVj9tfzu18MQYalR0LpPsn3LtkQ6NOFMX7tJXvfAXVYgAOBLzwuoZRFH7AjGJKsDsfoG9uRjJLGpi9IIdClC5FB2zr1FmsPO0FfbsIrOO6h2RWczwHb7zyGwyH_D3NuTohHywFNme6G7U1xVZSDqA9OPRlvyw1R7cK1EVcdMgQv8gvgq_jlSii9L9P_EVK99TWZ9OdV7vV8Tsv3MWarXGhN59a0SsEJHBnq6BY0lqk2bttdFhT-InUUTe0p8RfLDM9yTTQzufDeFI28ie3iKai0lMGjgw2SCJiV4ZOyXqBCfuAolhFlK-TsFvEIG7L4zcdXeZonheZXxcncFnpv5cRVUSly14bdJbcESsoBF4OUq-Il_6NqF6CSyRbAC5ojNFsV1372OfiseXSVU45ojD6zgTHBSzh6cjGxvTLT7cRdlbBk_lekj3Oejr6sveeWPuXA52w4yXN8jGwl-WipB2oegNKH4EJY_53-uXtq3lg4GiV0-Cy8OAbR-4lCn-1s65y6lPB_unXY9ZC0w-KCJJIOBxuXyMp1iQLnhT0ixdvvFHJU6_9Wc-gboR0c5UrY_A2zpTOxRwPapav5JO2MHy7q6R99xtk_EeL8mSg1AlLeBFSia1uY383ppZuMeb7o_4301lAYqE9COnlJXAEBsbikKoRiCLQ4AckLTJ_0prEGb3XKvtc8HFmX28cZnHOM1KJTqCnnPc5-9RSpPt5q3XXMZCQj3uF2035ffEXYjSZyqjHOSk9WU3r7me6DzpEjMFWFIdYY8bQfUFyNWLf2w2FIYxRxsVkgUmdAd8ZRRcrnk5zLkGCyPuaISjYmwxA19tqoBEGW5tPe_wYE3Yw3IPqBrl9R-ugZNjIjySCL5x0bRQjopp6u11g3vtRiwBI82ZW0Z5JsWSRQtMMHrzNkAqUARqpdPvBaQz8ikTTGFZaMT86jTBS3zx3_LRvqdLL8qB2gIex6_FQwgecm4soK3jlyxtIY5ixGTOgTeHBc-yTtt0naO8JjF1I0Tkz-Rohwu8nuiD0LbfBARXQNYRVRmAjkSwB9ttFjaQX8PRkTaEOYmLq76hIRsNNKI6R0t0kH_nRCRjZnZ7IyObnWJaWYG0dC7IbL45VYATLzs0zhjAQ_dNKHeQA7L4lf9XZN3kPHI9rEgvRbxJtnhMwn9HUOyeNTaqHxX3POnKWrziL9lcTnrJ1O9DvZAZ0zTAXO3ZqmGDd1peFG3rRhtZ_i447FqVk2v8IelRNvzyDCyboyhgUoJhgDuOhsb-nxVE5ulL5RTgw1M7ryaA6-zjqZXSao4ydCi1iBHuaRPecNcG3fq4DjLrFoE7NIOwYEX_N8u4w4Qq91-INAfIC5clDe-PYG8kiHmzIEYsH4FShp8K3mGxlvexbGKiFzkJAFWz11QJpvNCPdS5vku6v66GQm_B2hlYzu89fi1nGQr07rdSa2pXN3MOwsphwyZn3l5XTJ2eEq-ccvXj6obVasXpfrrYJUkL8oSBNgY7We1TOrk_M2JGa4IiPezBn3_i6xvy0YNxRnn6GedO8QP175ewgikQwXUX401SZRdQ8t7lKspLdQcqpUok6kjFSFCb7xxmmDfEp-pUlLWO8VRQehVLOSr-leiwtRV2dwXExc-4-qx3vabftXt2ztb4ij5JTZkvBIrgcCyl1Z2SPxKkwLAflFJtzUAfYJJyw0Jzue1wEIGCi3GV7p-LhizUNyk1Uh-SyIPCH1Nu0D37BoWXHGpCKF9ia-TrdZ7mUufapa85GFSHgqxgfTlkmyWwFnKPgE9MXe7SiQycdOA1LmQew9KqdVNbXNE4Q6gfRFf2WhIjfxLg-5RHrA6fS4GXBQcaD0qUzG-qjHsV6r0m4K-TvIp6ws-W4waBVnTmsKDG\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ae59a3c1cf14-57909434','','','2025-02-13 20:44:31','2025-02-13 20:44:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42307',0,'cd-form-entry','',0),(42308,0,'2025-02-13 23:14:18','2025-02-13 23:14:18','{\"firstname\":\"M\",\"lastname\":\"A\",\"email\":\"mercefitnesss@gmail.com\",\"contactnumber\":\"7206876556\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6jHiW2psngLX0B53mGuppCmPglo-NVomCm_qewAUhwXcWeoxGsZ7UqyJC3ZA2lSJ0f3oyRpleO8_sPkxMhqLkZdME8IIrl4btPY-LSQvn6i9CYGgS3YcBjCYNz9K1w92oJjYxctm9CkA3JLd6vgzNfFyErI1GWUgtIX4Lw03gxcj2AFWeFRNG8zfYa2mdjkEiFp_iXCZFRInhjbEpP-v53_dL4i43J8FsjlGASYqSnSw9aNHq_BbZ9W7HrAahhNmk-ml8bY4L9RpXLXwb9WjktPNQUMoGwfHpdjQYRl6e98bfwLHsp_GPBqF7L5F3SgZnDhsvNTkffHg4aISJaN2WcG4j_QlCyh7b7FZckbcw8ZyO1hWQYj8CgN3Aaci5gH4g57dNuQtFbAlevlnwFjGmCKQDNV5t_4In2_N1ltjL7fZi8tJAk_GNRlQ6E3xa4XLTjuf7_0CA2h6mCjGnubU5kUyLZhAYUdi3Y09JUtz1_JIIsD06NPx2IkPrJnmuIU1GypFsmYKfsfxGFu2znHopH2lsVuXwpROGXABG_s4R3ycEpwBklfRXwB_cuKwZMpzX7J3wa1FilKHKBK7BiNUI_fN4IsCHphZfaZjsSvq820cfALeAlt1Tj7qJXUgbTCNlYSpjgpFBrqOSAqyhDkhbwx9SM2Vg0-uzJinFERNs5Kuelbcg2QhN54xlofC2nIobapdIbEw3XkQ96hKVj93zCiJzB583-ECeiu1sVlb_C46Wq3YDgB8muSmH2XJrsa4N98Ns-QXG9ZJIcQLSarCkE1Y9Xf4hsU66CmZpPa4DE-dA3_xwGuSSl7VzTMj3GSA5bFiR1wOxH5L-xSax34Zw3aA2n7dHEXAvga-SLXj6uWlT_92PwCTtaX7gY5PXU0Vbir-QqUIw6yDinDaGtslSoGw4mcGlU-pmqj1ZF3HDPRP1OlI_mmqCKTozUxD77sun_cyQtMOk4sTtQoe8N0dnbRWF6pK-GWoPMhHX0TDDtn6L8BD7i7PH5RGEquyGHc_6u2g0vBqO3i8KRrYMMZ2teoP1-q-atP4PtXsWyzBwTeWWgaUEEmZlO02Jr80rcybgq-l67bonScJJ6jN3XuWq2PEJ4MsyaTPVcigf5lxRNR7YqKTz2Y8ZhD3sdIXmKeMmNw-KPErG7We-dOlpqJtZOHHyXxAZhfuCA0zUO6r0NdSCl74sAaymt9cRtdiDVLRk2rALIukN2oZNPtAoA3ziqYJjTE-l1LN698CtS-z8FMNr9c5z5gs6R-dK2P42EKa6-mETt0akClJXwnNdg3kRF78WhoWPpuTfr5mp4GK5JvcDr1Q0OCrSTSIle497MOFUszqB-8SnBww54WlFkaWzPVhYmySncJv5-cQ3QN5Bs9p8kPd8kUjo51KVvo6Vc0KumQdLOkG7qXiBiDRhRGRCjlvqCBK4aw9uMYacViLC2Dd6MZ8vL5CXFZi1KCMOCX2Aw2K0Fjhol66cONw9nGNOIhhb55sP4KPAUf01Y8_cXTn0EU8g6DeH7bp0z8gMJiMXvecb_Gr0eB9RCrDaSOdZnu64yVwW5t39NKGa8HsHSAn6ITxVKPrT4mmH264U6wLobRGupTgGdrQ46vIXmpPGs9mNz3A0xWnY6KXcG-R_OGUZiDIcp648KQMw0n32NBAEoHGUA-y642t9nr4zYdhM_mDyEWb_2PBtB3DP_OFpIYODgFGU8LIx-BdHM5P9Rbbm9wQ_5v_UGzH6sEtPhWo0Xr2qS05ItuuYI2WRL2GMwzjDQUfkQ6KxrNUMUP_gxqRjCzQHgCbtLkv0yilsycDH1M3zG3D2dxg83hQXafW_rn9ebUvwfiJZ-kVcQrvN9KmN1Eoa1MnDbRrPsBAHmqm95d4SziSyY-dv9Lg9BFNPC7nHAnIsjaxPtjUhv-9nXmgoNDUrYFkhfAxgVcc1Uny-dTPuurpXcmSDqX0QDmfbpI7xHcsnx6NszY6eTO2S6Ops_NuVACjHq7Ac7H7u1nPpaFqlGx327uCamJuU6lCpm1TRza_1c0Ykuhqanyv3M-qKb3q0p1y_B-e78tsproVYDMWWjTnfVktUDZlPM0XikiAJFyCW0uEq3uvv7z_Zy7Vw5DGCUMDsGi1r4V7jArYtNhBD83Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ae7cb9c28314-86619748','','','2025-02-13 23:14:18','2025-02-13 23:14:18','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42308',0,'cd-form-entry','',0),(42309,0,'2025-02-13 23:14:55','0000-00-00 00:00:00','{\"email\":\"mercefitnesss@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"80514\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4xfN2lC4NYb21iCE1taE6lHu1JSsCuZRIjJ_A_zPtBzmSsDAlI6d6h2clPNuDsgaTFO7JZqDqGeoU7QiK6v8AyIFla0tmtqdpN64HPkR1jfjTU1R-i5knpqBHaIxeY_2arTS8QSdFK3NBlfmSLq2hLlL2vVMdt45IPfr7csMOPDto3RMm7tidMl7KOqsp7rBrOjsLxQxhsltx3vtlPnzEImoRdFMR-01HllFn7BEWD7-qTgYbZFN6qnsjMDcMzQe-opK7CJ9Wm635sGaIbvtZsg4Yg7FmDVOExlRXFlAx8xyNgV-wg931i3rVkiPz2UgUZ49PWhnYWCFd0HxuUAMx9WhOf9nIsSH4wuKauVugsPq9G4AmmcK9sHRvJOubQ0rxfz47XyRfkafR1eNaM0tgKZ6Yb34pWPaKpsAwDKUh26cCuWd9GaLTQVpiPFLgvstsnvJwKw2NKgmpE8ZnBmFCRF2tl6Y2do3kyfV5CWOFnXKdqIqMhpmJCuDhJqfC7jXfDe7md8RzGoI_vmMZhlYiBrFZ7hMs6ud3M3DjIWYdv8DQqyCFkg3w_iz7qF5rHP47EUrI0aA94Ss5BYaSK1mUxMzoIahh159xRBvadf86y2U0wInR-zpki5onXl0SrzijNuOhPCNMM236JZ5dDFMzU-aJAJJBhvCUeHxTAt-Qq3G74QtleJM7InAbt_YNK7F3u8bSTSSiwajqlYSBPJ3Ve4OaFtYvHP-avJGAOqDKS0yAe_DOfhSh3i8vm6on_K281Ixs-bAfcFNHMTmZF15JmBbviHnl5jJ92tX2ae-KMhdd-fUXmYmDzARqo6FOPC-3AOqHAOVf2BUeh9VVcsMGFmM-eaThapQqLM6M7MrWznEIzJfWo_KoZvjU2S9OSAyJMeDesqvdP5lO7EKDR-42iRZh-upJXZWSD9yPi7IxXOYWqpwhUVw9VNq0F8BzqUiDsBgDR7Apg2ViH1ubj2ntFKJRdXM53KGo5h-SqcSGhdAQhHIfYiMMRrDRDMtMtMiPcnYr07KDO-MHPHxgHdppIBP5nf53ntWxiTyWqj08HlsRsvyEwTgUdXW07uzkrb4KPRTKYPDyu5k5-Z1_ZcAMNzO7RT164cfpzaPJu-ALCChvpx4bjQSpc8_sONo-b_7PRLbBih4jQRC5_DhmQcPEA4nLh8jbfcYZEoHQnkJNaXQrD3ThQeK7fTC9sADIGJ10-ChZbMd6zZtgZ4lzLbh6IOtAKxWR31eDXs-hOSdCZt60vvlZJg2F4XAdheez91OnHsROCUrTkHqOfaeAmSP_icVafykPtEkAzKpfOTCuYNeGvfAvXpMBK00zMblFswyZg6sEvUGvQR2uwTketQFv4Ik3UlizHDZmxyXIlgZ5BGwebAZjqRY2Bhwtj3BGighGRAmhvC94YN1MvcGgPopSA2xNCGi2eGwEW2JiKMSdERVRpyZn3m6jmqYM2qeXlB7h-tdmWydyL_4lq_vZ-Eln38AB_Yt-1YuBon4iYXKitle02Z3DWZW9quj0dYDYdxeQDke1dyjx9SR5Aq9Tf_UUiukusgcOUSXS-d8MLojIHPCWp_uOZCQ5Su7fatWskfqzDVatCaUTegSmf3JEMvIbM5u8GixRh-EllCbDHPkit6oMtqIrr109-euUUffx736dFXFzpphn9K9AyPqlDerBkCjNGOAeUQWOK7371z9rU7LmIsEKBC1BZ8yjH3wQuInnb14P9V9-3Ha6oFmj4NzB6mIQlvHzFdZJCsKHeTbi6sknsViXMsMB1lQOSO4bXI2quj7DNYhmhTrDCy9lqTARxmGAX9MRtdFQdQ8aHHFfcobK1b-_De8WAndgqRk9KBgsCEsWIYYOywK7ZkfC1AUTsAZgehXSmeS0-W78CrNLxLs7nRBqPOa3uMeFylnfu4Nr19BBmvdmOqCXnzwLsonY9FLbJOLeI2LSqo045hGp4_jFuhz-VSmBg-pIMgBVxyZxq92AQYrNt8FIqA_KDurgVKqdCD2G9Hgt3FXLijyFJqTmD9JMMM68sPe2l_nJyCFsFe4jOi6v8-RMWFQPLrmhWoUHHaY5nRKCKAPkc8z_NHT5pQLcLgkFVnki5OG4YJ35Qbfxr\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67ae7cef4d5094-12796810','','','2025-02-13 23:14:55','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42309',0,'cd-form-entry','',0),(42310,0,'2025-02-14 11:36:25','2025-02-14 11:36:25','{\"firstname\":\"sarah\",\"lastname\":\"hebben\",\"email\":\"sarah.hebben@yahoo.com\",\"contactnumber\":\"07494508434\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uR4DlfRpb5b26QRlxb4Q09h&amp;gclid=CjwKCAiA8Lu9BhA8EiwAag16bws76IWKXiqLsjFGWQWMfUL5rSJmVO5t2HirCQtcf0KMEgHv1H9KPxoCOuQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7L4m_S2PzC4TUdJSlwjHV3vfPFsQ08ZvggEWSe761fOLHcJWOtiw0AlUNmXNUYDbf3uzD6TT0H_KUiFGE4lvpnJIrrorjCoMrVdMRE_NhX3JIEFlDrRVgnzvzoUlJMnDq0QlVKpHudVxCODz5dXFybO37AE6NfbvMgveIXIFcGAblNyJG37qOlVHezG35Alr-ylxCTr6XWUHmdXnsqUPuxCrLYlDxdx8KbCcE1mNci5RmjHFf8rjF3NMser_ARcsW9AP5XdEt1Yn6wMzg3E4DWbSCxJBr1Ywhbx9TqhNDUb8l_KwJf15yJA7SJQSi7wy5NRGuXzDZM6BVRy_8OgFqNuPnzuwzsN4NRteJdafm3m6R80VGWC0UtVQWHFdnkPV0EGv1G1chyYNuFqcHrDS_yHHON2aBraY_B7c0TGGouFR18_zvARvoKvhnxhEQ1D2eCvtcPg55aaG6VXls3Xbnu6eYaT59MpBkN-ph1MI9uim4tJce22EPnPEdt7QixSTT550fWJg8sFsqbzP0AS00Wldnbni3fhMRVNlbRgKNwvzjMth9QlIobrNFYqQBSsdbKovBeKK_csUzkpIK7U1di9E-cyiSJN7kkR6v07FpeP9YvdKKxJg0AFJnU7TwM8qhO-GjlCwJpwXcSx5kdkKi4go9e3wVDYqG8NHS4ty46BnpmOVx_NdhfHzahGie8mjNemk23vb6bXuM8yu5-24MnEprcwNR-NVksWbmZ3tGcoQOsC2zwNMNseL_94Cb_cCtSimqRDcbJnXoJ9zA3H722dzNOHjstnL6vKFfmqVzuGpLFPAuWsHJ2owlFBqFZmqMl7YODdRAHEg9hBLEVJRsMBsj6Xdu-aZ_UJw9bU830iugZB4ScV18-VwY_g0AFvvHJzXWePI0jKdPgvmpZ1aCf_-lqx2qlK_VvDdWJVyq2oWZoQ1YoGNNxSYKMZZvFVwE5ufAVJKLrzaKiCHIudPopQmFBu00BpEyHcrVzBFSabSToSH4AVLiTTGDhi9ev_H0gN8DaxGT_IM1pCRQ6b4tuH7h4tIju9YpcKh7g37zHMwOe3ir_IPvMiVdP-ocpQIwZlVRsp9pvxMPgdcIcz5cbv2FWphbBjKl5glbq09BBbcHLDkO58i2lmLRAKg62_V15NN2Bzm63M5GvD3D-7-lvVcyk5UOLkXhGry1N0KjreRkpPcExa0Upsq3oNEsXbVp-4-YRSZ9IFp_liAleyrb9rw979m3aIQmFNzY3WUrKmGwDvL8aVyQSUWjlZbY6eo_Q6PVLjuT-PLmDY_PtQZsktmv97BcKvbELUz13Y0t9tGuymvt5PzEZU-mCVnX3nG64VoXQ2PViIBwdx-wx9JquvTxRuKPYiGqvf5uKNaHkkSZMPi_UzjO_r219UC8IbwHZJ7W0jIgQpN4qF63qvr2BBgvrxl3dr2kOh6C4boxZveNZwVBI3YMSFFo64MLTbU8lVoUSVhUyKOqXKg2SmG4Bp2yk8b9cPfWEFY7foXCyXeb9Wow8HxAeEwCl8nkZmuUTaMi7CPB3x423DEuQM-UsZkBdsQQxNIlsWh2Bj6CGZOJzM0bQJxNs_0OZXBpHOmvei3rHjg7D4jiA3MPNtli2ukcG_wM3-U1j9Ohd7lta5Q6Y0oAnJuua_5O_ynTzjoZSQigj-oe_qTELvtH6FyU1UwqO4gc3UkpS_YQ1Lcj9L1uUbg2O2ZTe6Pb2Amm7AoZGuObTfhEDXozfCAOxMy-oOY2sFeingbJ6PW1LTJSeTXOqU6B83JhOJlimWoWZccUaJB9WcVc5NvojDFKcNhVOJ0yEDgktPxneZdCsj105Nu7zQRd-CU1_nQP5EQwlqHv-tk9fTDFpDEDYRPYp9h-VGJi6olcZmDPYGVMcsXgS3xv2wCFI0US8SpOkOUU-7riXU6U_LfRDbPOeOGLxiqajtqXeWd0ZyI1OIAh6TcdP6Y_ReckoMOrZqVYddFG-U3VPyHbrS0YRMKmA2SqfvZcKLpf-Dm50nMQ1lsBHZdgGN4lXFGRdqukkXt9fkcq6a8a5itnzyWpdKqPJL6CY64aKfHkXtYDcq8fErpEJ_qan7e1j4b1X7amCPGVd8EV3YTaHjDzsAhhtwS8r8xBDNDKckStwRw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67af27c6974f01-53285804','','','2025-02-14 11:36:25','2025-02-14 11:36:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42310',0,'cd-form-entry','',0),(42311,0,'2025-02-14 15:26:20','2025-02-14 15:26:20','{\"firstname\":\"Thomas\",\"lastname\":\"Pendlebury jackson\",\"email\":\"jasonjackson_2000@hotmail.co.uk\",\"contactnumber\":\"07710541769\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uR4DlfRpb5b26QRlxb4Q09h&amp;gclid=EAIaIQobChMIuKqo1_rCiwMVEo5QBh3SejhnEAAYAiAAEgI5_vD_BwE\",\"recaptcha_token\":\"03AFcWeA4XHVMuJGzmhIxIe5MFDZS3nZvLc1rmmecajl5qI7lvu1kOPD8x1SmznrzYXdC4TqttZfdVE4aMWIBQh-ruRYrSEHll_QeFIoKfA4ZjGncG5UAE2qC8KEMOmdVRR2ppIxX_m3t-CMQ_8drhD3sb0pCcHLu6Dje706fn72-kCmFWS6ugB3lSFRxyzmjwzhDeqIDVNipX5Z8ls2NF89-73z5jBmq_dgaCBxk8WXbPKfXf_O-lPEeJFiPkTQAEGCgKA472MT1eArdsyERZtyg7yC4cz46Ty1BWB36ENYmW1Vx57qA7SJ6-QfP0GJ54ZMP_Ea1LdB8B6v7NUkrIKskGy2u2mmxoKJQw-BMX3n38Gwc_3v7YhUBZORRO4nejCTp7pwVjoMaOT7YKY0gOIUuiD84gmLmmBejIWe8fA5sXlNLWJdMQWdfSaTGo2DhAh1QsWHXgniOqh1bGzfwhhTn2bC-is3R5t_Cab0V9iZP9Os8ja-R-lVBHqrWFDKlmnsDm2TMJRoUA1UaFWVS9qRMEtPsDraJORzP0xXmjo9PUcGPpJCeSF6aftGV8l7JrLV0SWZCqUOvTzmS9XjvxKK5fwa29HdrWQraNLenOEc5grXw6cR8X1GcucP0pQLA8l2z0yWfencz_zAtIq7zz5fRAJ1kY1GCfPiza0qqw9SwRT4IUTZ-RFc-QbCZLjqVv6NfWi7VN9DIjRfmNUT-l4TJ6nZeY49d0shraOijQUNvJUgPUsES2svtMHCd2ckxnscT4lBzt77HENs16P5s6OBpcPVBVfn57zK1VcEFp3sEnbXDqf5jcR8YpaZXkkGSJZAE8gKN88P5sYbKu8t_q_kZVU_cOE1LcoUAWsrvTnNgsc6u2mQ72Vl8eizUmpEIOax4Jyq2NPeK41El8xZAipXhvlYtxNOmKzz8YiX_eGt8vB5d9gLnAZ-nLfCQ_qv7LnJKcsR2M8Gvnfod-LglKdZ30GrSOwAcKacVUcLyRay5MaW1wWJMEz8KHIG573421hsuN9utY2ova4Ib1dpUO1y_OqxmVyyXfYJVsKrLhR84RdfxkxN1HfZZbVrW7UbetKbQc6dbDeTIPcNbSa3_l4Dw2RUQei6mkjpVsf6_bBUGqzL81tcwNP4QcQXx4LVtqQYHrw2vm7KQhwaFbfHe34Too3iEziq-b4wbM3dzlN3FmZt0JRDBBSRRHV8IGOJ6COturhvcqsjeD6twPtmrhkP9qAchqRJne9i-meOBAGtHTBMyA4HaYgL_Vvr_yV1jj8hS8o9cdoNU3kXr9r3ls6ON5KsY9HtkKUdEon8VbfNXr5ARZlgAW435lJpjA8RsXyYgdg5WBvE3WMpii_ng4YaqZmp212w5k4i7xMw-u1hnj8OanH2idlngFrIN3-RDA22PDvlVmUtqdIKNG-Za8AOSs1Yep0SSKLm9blS7GCz-t5U4PWMsEdUuEu18qtp8zD3iiWQuMm_mSoYdlkp0jIe64nqaozWScQCVVrhigHDGVf6p1vtM9E_I7z1yxVYQr_0GPWJs2DGh7CehhW1rTh2drpUqZLtDVP9uwBL1CgYhtESkD_WwCPJd9o9T0qGFdG2zQ3caAE1Ld0YMr1NziE-rwa_lEqmSbo4fQnW2IYl3raL0ZbUM075VG2ARcmT_ddCCwt8QxogxSUJIXjTXzqfRIPMI92aqXkZJsF2tx_zxTjrKK_dZ635TPxKgec24JSKzKn9TcdVuYuJX7Xet9KRjKGLkMdTl_RDSZUTUyc-P7uazqGc_uq9Tu_ZxguZoflW4u9KsyGaSeoyVFQOAUcVNRp1JqSpQc-D_5LoAJIftypmW2DC4X_MLcP-S-osJDbvGDdwn0YtKStO1xUc8adNS-cqxfJ6aQc9YuGIIc3uTlAy5kCXWUuO6taZ3slklWT-hjB5omrF5rxgwhwayAxOGiPxMu7sXGFImXRhmCeBSk2KIGsgLKx5vb_tvoQV6QtieW9LXANnoXq7W4QsAZiJb7MECDCgIobNnhcnhlafqQgz6TRpyhEQIW9qXsYmhF8EByUZUo8uKh0HnThJUL0rcnHx5k2k_sUi308y2x_IWiDjgYG2MFh387ZN8iVIhsh-ATbqMtFzgLZN94Nq79GaFtpByiZYs3W8h9XkRJaRzf_hJrMxLaSMA_Hmhp-WZtfCIhsrUv4Jas2P_17zHcp9DnmCzou3t3dP7Lgi_qviI39I0tZpCIi6Rtzlo19exXimDRxjQk1wYzNptX6Ujc_pd4ival-fUAv6z1ZaXbJCmob2gZvaj8JVA08_mTqDvHjK6ZJxlkc-gfGqTVBaGDuosuwgkB7h7aGg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67af608e625758-07975161','','','2025-02-14 15:26:20','2025-02-14 15:26:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42311',0,'cd-form-entry','',0),(42312,0,'2025-02-14 15:27:55','2025-02-14 15:27:55','{\"email\":\"jasonjackson_2000@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"8\",\"currentpostcode\":\"Tq7 1pr\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uR4DlfRpb5b26QRlxb4Q09h&amp;gclid=EAIaIQobChMIuKqo1_rCiwMVEo5QBh3SejhnEAAYAiAAEgI5_vD_BwE\",\"recaptcha_token\":\"03AFcWeA5veow5fn3PKJc7rVNcj2xlN6Yj5_aL5FlBld3EioCCUi8KM8muq1FX39fH2bObaYXJgD6m-A-Ru-goX05elABoibs3gRd1gxpKSt0t0xLYSwtGHaF4gsMiY2y8cAJSxihpxbM8kRmHXKf2QtccGRZv0HK-9ALQxsPUvg3TvVLYyyhGjjcTYvZuotkaXdCyQISHMuzrcOoZjav9TRYrBNKYJsL9l4TvyOqsP-1M51NbgMdubVcPpKbyf7Swv5M3f2BAGDoo32MUxXBfvvW3LtVurW6JgDFbWRydEa3X1BDLelTZajfv3UbdWVT2JVqZZSZKxEIGuWixvs28IcxoEH1WR3NOy13afvoCvXEkX2JkDye5sANN7C1czuTDMIJ4Ulk4V8PW0werO2RJWuWggVZGGEOf0JkR_olFRSCdUVbrzXFbUrPmdiIKTkvv5m9bnb1C4DWEIBA-9hVKSxxr5F5zMCe4KUx0C62MYjsWPGPkaz7iA2vkfD2ZZNR65tzqJQHU9HhalnpxN0pPF6vh8PZ9NhO1DiY0-M9ZqUN9xVQ0hzDp6Aaxeb6LLo8x7zvq9Wp8zTVh41367lMYFv1XP137kzu3IVkiPezRSro5IU8saZt_U8RwZW75irHYM_PyKOTfubV8gvn1HxqFujC1e2h0VG5-HwtWBOORTq-Mx4jQOOeVlR-Kw6TnlNe6ptaUd5e94a26a3u7aJb_X52Li9xr1WJjADaJEeakudUu0bvieDmcbOql0sJGJf0JjXgSvqwqkn6tUOyzevDt3vy4RZlKA9gMqn99sY_cYr5X6pIxNG3kSNguzkh-pZbfIH_ZOlVVPRSQzmBpSYLRIusKZkxDbNMli7a0B0x1bbw86-rvd1Uk5_OVBLsssYuwRQYqXphAefZ9d2f9UFmawfKBZqIpuGWwGw09Y34hwuJthY-RCHjNO8VhWGSLm6GOoUlMUbgnLIbu-R7EInhXzWpCb00k_X-cD5lGtTlXScyWTvo_bq1IY8K4rcm4gBTSGewOLAQnSSIQXZz8B9iNdH40bX8uXsTyFeSHhPKbeK_dyqaG6y4sJdxUHOvQ79sBlNtjRUUOM2yrmga6rShvkeXI14qofQJQeHh4ckvDT9y-UXdHCNO8SNVlpn-byRhV1uYvj5ZI1MGpaMqzoyg0f1ZJqh020HeehB0Y1MkM4VG7bQEG1RpHU_q17iInhcdFnNvg7IVhHOHiNvF7DxYWoOevpHsopGj48ZcS-SfMvT_PCi2KIzFCXTZzMAvvXgp_n0wARvkxmCco_8VzpOGg_b24dNgRQ7CdyUsfajDsIghypfA6FhsbJkTxDXVRgjt5us7mrMt2ByItlhxwzQRNfVBZwPmDUfh3xQoFRlKdYqzQrSaeaIfg0NGrRDXsv1zFWBPQG388kpWSthugLe8C3zugryWUWPtgfPfiJVmtqqykNj8tg06gySTW4N6Mi6O3qC695BcFHnzFJ6LoynQXreP0xjKdwDwGhUuUg03UIMRsg7Yqt4mOVbsp3bmCXVn_4-UPAM4I9_MLQcWfiExcldbx3hwJCrNQDf6mTfARmb2fYr61ucs3Jthm0ZKgnRIu83U7zISClhvy_RLp930xG55GcASbMdydEPhq91Vsinvd8ceq-N1Y1qR-HVheNhegWwhBrJCRRPJLj6gRLyVgcHWa2n2NLh2bJGpiPnNQ4Np3nCbGWw13vCyaukocj9TUFSe6calwRJdrEU2UpTfgeFe7d_S-evIB99DxJ25-p_IqBv3P0FWXs23hq9ubPFwrEAE1B3eEVAxGMKWgQiEaegfz7RhnDadGzjHHZUwnpEyOBcrjFB5BlybFcGm_FQ3VOPldeL-8KLTPgYANoBButLW7TCEew-2BoX2755GGsRvHm7n1_CWtVWnQHFuTB2yHIrS-Z5v2JN4Rm1jNaTfAohrJ1V17sl0Nv77SfY6-8mG44QFeFNBjMB3KHCoGQHIH6OFwD9MWhLE1XrvG8vZYLn_q1hBZ-wbfCCAES8eSnBvxUlolp6a5q4eNnU2QWAelEKn8bdVV6mteMP5Fcl6XrCEqjJqSdOfuZmett8MTIL_YPRvL-2h8EulHzFxbTSa52Sg_1jUlrOTRn6a-mzaDrmyAZyzw7oaIKT7g_Fzad3Clshmd1UxCm8MWE9EveLeX0ADYPHIA_TzBYJRQJQxQkW4rapt0HdnK5vK4oesgkH4O5-heOzBze7gIqbR8PRChl8ylaLXDgRkqHu87hbvI_Y9NzIFMbEclFLtI3qrx_bVr9CsoLiT3EQFvgZgkpLPaGGbj6q9_XAeDh06tySYE2wGxE4FerYJS7A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67af60cd45b8d3-45739815','','','2025-02-14 15:27:55','2025-02-14 15:27:55','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42312',0,'cd-form-entry','',0),(42313,0,'2025-02-14 15:57:30','2025-02-14 15:57:30','{\"firstname\":\"Lisa\",\"lastname\":\"Stacey\",\"email\":\"lisa.stacey@outlook.com\",\"contactnumber\":\"07852301412\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6lo77QOfr20fMArBk9E86CG0DVoioKvIymTRYxtEbAfCCRa_SRRkpB0_ZjMuMoQij9IUagfoi77M0zvsHT4TJzuFo4ombQx_RRuwdGHb-OvmOjYLZVvyc7S4Y_KYOG9p-xrObuPRNsgHWPlT3cSZ6Onw-a_GzKuLoZ0pUkT6zDcYOYSlXe0quDEFDnxI8xQQwhhwc6mWMJWMQdIhyy8nEpTlGc5C4tG6-7yTxZOl6BAYsiVO9iNdb6R-WOFKkItFIP8OqAVjbIYRGP_1DTSYzblIleO1gw4-Z-h8XSWzuMONzjqyN-wDhZnfo-upxhdmtiuUZrCt6Pu4n92Gs5QG5hgmUkcBzLeV-1XenjRo6ze-xm6G4w3YaG02VeLeeqExgeEs_-mDR142o9ojFZ0wZebZM-GtUR2BXb_U1UvxSmwinwkw_J14kjmuJ8Ue6rIwxwVPKYhk626ckeCgzhAyiSTb5Og5ekm9r62Pz_LLOCeLaP1e4NMdNB-3LwMhyOGHwAXO3d6uvlYDmo5IebSg5NYUuX5U0NZaTXMsQ4wJscGhLMtAiaa4IZw4OePr0qANFVDELjk3E_lwzufplepovE-wWNp-nn5gLFvCseGOPs3m3WMl9PBGjOlwv4A7qDirOfXLhFmgUPnqPb6p3ryud-z9p_pwu3JPcmdd-kHUcSOBu2pB9dPBR4_u-I7S22HxVSX7ofYTwzv8x_LP819YuA701BEifD5BRyorDyE_sTW3jYoU-OvPD62tsk6ajFIjqclfDLli_V-vGg9Teb-6W3nVcR7mV0LpO8wP0iIozVc5aj9F-J2AKcazZYgrMGGOLWIXjj-loJOm_PU6QAx2RCL-u2V9-i5KCv693udWrSUYVrHPdCqEJ1gViy4qgFdER6622ZUm5oQbJTETI9TaKAm0M0r1gVw5AkL-KFcSxUOTQ4PHdHVyUrIL_lda8-0KRE4WVncWTd1gOG-9MA3lsbIi6Ze8XbP48oq2PzEPZC1qp_tW75kNRfkAJkGLe9NbsQVAmyVVB7b2cRG4A7mghVRmj73nlJqjzP2fcc1zSi7Zr-ZNtrRmjIF9JuP2i3DX14jaWTmkFKsyMUCcy73he2GojXlp5SAk4XXegBs9L0NRB-oAzL8ooeuNZPTzNDFwFijolBtD8d45h8kTKgpdpht7okKf1iOXMk7epzRwAEZ-YiAYTssIHzR3XwkcEaBqZ5bQgwCQK74XVvhGKsPnIt-WRvVweK0wXh1QEOp5UZCeM92bEX41kcceHVd0Lb7SBV4nH43sfqqRtvFwvsNOUdOLuNMggCrh0n3FNPY7_e3DzbL8h6q4oGvLI-bzD0NmlzFxdKY_htINTAH38IXmYCZN3sz1T5JqAe9FxRd0g31UfyAJy5ODWWrjH7etTfwQ83lO2pdrxUercYLjEVUP9IjP0SLezF41U32nbCTE7iI5BwS-mJk69cL5idFUSrrr_pEjfKQOP0FmnKO4X4-EXpSS1TnZ_ipf7_kSz4zy9wcpQRdKcxoqhciRqv-sFJcwRVUDs02doa13qO57kXExDjFlquKiDrGIHcJKTigH47BGFzXlNs1TvoYQkqB-wmKOpgzB-TXNOAnkkpk1u7uc3s-2G__UMYSA0eTDDxUt4wHUaM5wcZsJlDfvzSuLaE1thFDa1VrnrdUz66aUcyeZmykY7PMqNXX7hYicV_qxffJFPtqtM6DcriWPkj4eTkXM-ZbWKi_uOHqNmzCcvzLBXq7i9clqq1E5Ky7S2uzHHFCk4OyOGQ93_s_PltCqwsyGbiP-irb4E45PSjcmsV6trx74VY6RR-Wq9QO38-lflm1_xMVwtZYcirwZWzQVWXyRj_r7cE26lyRKFx6o7Du9OGbOxaueugSq_RH69aGADyx1wNB8umAEVyLZ90Pt61HnZh4xW-raRRHGNq0HzFp3XiUTkZRZ_B20dBUpPRf5gmD13CltFu_gmj4BFCu1VaRd8yscJsbEFmnyIl9LtJ4C6i2FtTJS26lWUebZNTfqNw7GMiLYIVmuW5pO8PLKKuOyi17rViP6NOd44Mrl-DYEjrSY7wUOPgBxVq-Nm37sMP_a55OBXDeZ7kLVzbgqHCDvsL34AY6RnQWULR0YIPNmUL1wL1ReefknR2CYgsWW_f2lpfTrH2Ddg6fRAR4jQwNE81RGSjBXtxhucP1dCUN-38Rg5f113E7pnR7wUOdJeWZrB4FQNCitYLyRgam6PNvNn2sto7qMuPmgCnfH78GISTjjozIkYwhapHLyl7sEfRIyHWOQv-rhyPnXbcx1Yetnlg2b57\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67af67cbd46974-58622876','','','2025-02-14 15:57:30','2025-02-14 15:57:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42313',0,'cd-form-entry','',0),(42314,0,'2025-02-15 09:09:42','2025-02-15 09:09:42','{\"firstname\":\"Arran\",\"lastname\":\"tomlinson\",\"email\":\"arran@musclemender.co.uk\",\"contactnumber\":\"7305243898\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uPpWMTbxeAWRK_uYGFIGezL&amp;gclid=CjwKCAiAk8G9BhA0EiwAOQxmfkbh8gDn3xqN0oTzCf-jgHtp6YLe4Vp6sCc7-wiKhSGEYk2YYNmacBoCtr8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5G-9ZrhV7XK5xTJpSmj96RPv2WIliyAVIykvsQ-6e46YMURGxv1cQm_gKM9DRBMu346_4bG2D4mvKLKOhUEU6Ddkg-xmB01jVnjyGMMXa7LCjl_F3M2UkKDvsm3NcT_LujVd6_-1K9bs7yC7078qnATlZtaMtWTUzjff87vx0MwHuQfhBdlQC5TrP2sBHxo-SrXje5Q_nl8CBiCexnpbsdWPqs8p4ms0IG09yp9ESSbHjV5NP_SdSnfaD_UDTYTjfQons2j_kjH8z_-M_hsGLNMHvCvtAxWisfEwydKhkginAeNPe14rXLBq-rQVUbsK-cEzMX3xzdLao2lhYzQRaAqTt0InmFMTnfdMSkp2qAOyzjOC4njBQRlFwhwPdJ3Sw8wLrTvzpOzySPqk3FL1CKHwOEX_iAM5bGrMyKgUYhLe4cxC45fSwWkadlLH4D98W1QoNulANI4jgFtOXD435Mmb0VDtDpNy60nWEz2djyP0jGhb6KkIHkVXNdpFhL49M7zuMl3H6SM9D58lyjBzCfTCOU-N9xfej5fh8IbaKYqUsaV0TgjoBcbXwP3yB5D2Ek-CXLUjJ6LdMhO06kI9Vpsl8dF4Pxtf7tM7IEFrOnEmnTHQkmT_LmglcmG92hg-J2z7GGF9Ef5BfgWH1v-6JhxGh-Tqcq2pnrjm6WBRK3AXcSXuRzhUbL9OirrGNmFaOO7G93XGU07EDSjFCqHfhSkUKtSJzMw7SBjf1UlaQm8v4hyNSSRCYi_o9Z72G22__O4QiWBYUWcCqOipVFwgkgresXY6gISpLUZL-wj5v6gSAaMde-If2ONuYm0hNKc-hJsp9HCT5Xc3d6qUmlBAkTWf_Hs3elLnCuashWbUrLnfgPPTeJbKVgzZApxvR2Rw4EnSV7jYR_pzehSF9D--mnq84NsPZ2Dg1Rh-E3Zj-c1GI6gc_aYSW7loVfzpBVxN01jy-gRzch55qi_g1yzxZPflw1vH11H3vCUQ1VZIyd1wrHOEOlgM8r7QhccnLR5CailQuRZyCnKn6AsgZJftLnb4Fv3iL5thYVeKyM-VZ6LF__aRQAER9x8tgLuWWTKA31iDwQ1yTshS5eUcxMHxAixV8khllP3UFao9_2AvQwAzPS_8EI7L74FQYX0mK-40tY9pt_nqceUqESCz9A3PmOb_CjtqVyYd0iL4wbB-DK5YXgtwUXa6BWd7IVxXJhWS3vowfIP9zhq_VKgAXamzYaSp_qz0VVqML5iFlx-Vf-r6BkYup5DXmtKMUvNxzlbnEFkSirEl2_rNQigGCT62h2z3EeWxb6lRmaMyDlFjB_Jf8cMkLcu6jJIJ3MM-t94fD3m-Hrq9n2tHQACySZgEThtYHbNZA0arARJFZhBDQKXZpgdX3mo1x_5LSbCEWAb8M9vzlSFh4xndNF-v2GmuOQN84sSj2qGQRerQVj64Av0F9F4CIV-QrjshcFc9HCZPXtjZn_G-Z_1ZOHA9yM49bF_QvDUQC4X-Xnv4IkqiLWOhpW6QWGjaJk8c9uJXNeyhJmPjPK-YFCtSkFG4D3uHsQezULkrUwTSJy6jyZ8Tr2DC1lmgIAj_0RSiiY23Ba7RqnX-aDUNcAD05JYxonH7QjI75yLT1Y61PMRIIwZctF8gpeJfQCKDfpd4lf39DV5Ofb3iQq4HEuz4_TX-wUmVcZIk_rLxrGjojE90utJqJg-NoKEZreyJhrad85VTECKZqQ1qurp6vCqEXHt2yyoC4wRn549-nOPJAhgK__F25sAlxUEgv96RWHLaJcTbABaq3UYjMFqPpxxrgh3H9k3S-0kE0hpSnpPoYZtKFISccdGz3faPjnfIqeogZFoxX1dIgOOs0EiFFVmWU-XRx0RQk5sr3a9A-GQuiac6NepcuXr6y-yUvnsUR5gSg8H1J6NYKvutjRybTv0Lw-vKLn3ztt8L-EV6CnYkjFfXZjh0dtx_QH1GGCkB8qlaz4CshzMgIaAOyVk5EZ4kkz9B3W3D_vDin9qoGbGGk-ddqjvhPC3UnueWBkwXQBqQB-byb911eLaUSjv4_gq87QfG6grK8Lz5BgiCWXg4G9qCG0SF0hk1SH1oi_AKYzPlyN5nlfvzppESO5\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b059bd78f766-06793945','','','2025-02-15 09:09:42','2025-02-15 09:09:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42314',0,'cd-form-entry','',0),(42315,0,'2025-02-15 09:10:43','2025-02-15 09:10:43','{\"firstname\":\"Arran\",\"lastname\":\"t\",\"email\":\"arran@musclemender.co.uk\",\"contactnumber\":\"07305243898\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uPpWMTbxeAWRK_uYGFIGezL&amp;gclid=CjwKCAiAk8G9BhA0EiwAOQxmfkbh8gDn3xqN0oTzCf-jgHtp6YLe4Vp6sCc7-wiKhSGEYk2YYNmacBoCtr8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7ZOKu3ofg0bFyDtsaeSrOIdSuZ-daeisKZ_yU2INZDE3LEZ6uzKaWUbDLcbmNnF4k4aQCvoTksypxlt87RCpZhicjugrScmcNEMsxoKJ8ZBbxcBd4uZSVPkunLmdniY5Pn5_JK8CaY8PeYQWNFomjOp7j4WJeQOukC97JV_YowczIBCqv74wYhX0pUsTSSZTxZM2FX4Wk8FY-gW1wln2BnA1rR21qenmC91_wgtm6Rwh46VE9-wIZuUqJEaUx7hikOoloo4XcWjyhMtXuN-HpsWDmEISNYPZ6QayBo7f_fpjdW_UT5qhsFagVhdqyYX3ploHug-rnHaO9wS5tFTcp5FjAaQduWHBsfkekldJiPeYjjNOPC3bg85i_jHQNyqozmN6gRIw9X-Qq0GbanzL8rOSrhBlVhBJhBpowZS_reCowYiqvw5juxdsizyRReBEluMuuFJJPwjQMqf68VHbtQCjcC0_fsJrVOvwujLB2EC2ZSbnB53HBqq8AJNm8GX0jN0t_QvpScFE7rpEIChG0hbPj-t1Zob7wq3_s4obqVR5si5k1u67CSdh8fHRy0DAVfkivryoLYGdoMA3I0di-my5IgK6gKMi8yxKz5dkEOxGFLmPrwYyApS23ih6KWaSjDBT91BhhojYRpwwMjFvd2ZaL23B828xqncwyErIaExDgtYxFParCL5weM1GcmI8vv8fJfb3h-56s8sHlG7qwP8EbzymIoecmGwHu0z-7myV7Z51AoZmaqmMDosBOql41bOksyQm_rIAY1_15H-cqF6nac-mFo-g8xCMRb2WbSwKWfQLl3Zfcg6HBluab-3Mgd1W8_C0z33q2hjORKQDamvPRc4U0FXK8jSx8T6y27jeUrJQqBfPBkvO0sZlqDmWujFqpLP3VssB_8_EviugfbBRSTtjxWm_dunzi_kyB2XYz1hwckW71Dv_Oi0L4-pkhbadRcU_mZgkn8hpYaxMMbPAWqqd1YFzkV-MARua65r4J5mg8fMDAX1g7CYFCDj5rs3HvJ3cRMc6GsOp5-hDZh-q82hs7YUgpFR7cBLvZ_9Yyo_CwJDngE6a-uz6bZ9W_V0KJzu_TCYIjr7iMjaGgw7a58uetarNGtsb4e3AOgJUg-QMo3Wx5C6PZEAPnGBuA0Ry1SNzAzhb400fh28sTjacFcvfPt7v5Ig2D_Eq-txWH9eRFH_zLue569u9MntUunwVYsVTsFnPI69G3O6fvRG3G1oKOK8lHCWr3-3Zzo_XgQsEHigrfs69RvXORyV9wjDRC3ZflGP9APFWtzwbuaULBMGG40F5eObvjxBfI3khKSDo7tr36XuGuGCVnc5ogkhemYceQ2dn6iRipHvlFWI4UFEivnMR_l7OwmrLb34CJqPlYTvR5URC6ziCFjm96LEUeipKRbvXU42ORbcc5zD-b-LodxL95FfVPq_3R-JZwKW4wSdd94AThw5wHd_vx-ZAZ_OEdOOsbICT1eIPlorUOczuG14iwHbaqJmCaYqX_9LMqhHoq2eTa7FZ1yZPwY2hcl8tkRk8fDBirNpEfa-SkptMaBlEKBk0IGGL7B37XbZZZguskorbVuXGlCeuadssy4OO59UpyXYAfAITE-mpYT03aI5OmWmqFK2JYehFzoJ8iApDECs8t_nuTR79yeSqO8qYWmZFS-hXCKnlnoql0rlwHaKoBevkyYoPYG8zTzC0x1t-NqIBOJyNIvUMKYh0YyXLnwJT4b7Nnag7bdUGtBBVVNnY04yYOoqQQiI_xABaREFCfoh9UfaFL_ab7p5PAOFyzNYlg4HNtZ0SfxSJwdlGK1lXeMiJRdLTuaQUN2yw448jdkqUhDKgCY3tgB9ygdUeAyf1AOxC4a87HN_G6x-rqmw3iD13KXqnPIQ9YgTWMq-kq44G6WQWM2FaGztZIlTrIDv-_0S3UPfxN8s4asFyMGjaYryBaVGg8oaic5FQoP5iiLmSr8AH0zddgPIpM6Br_9hUWEm2hijTL5gngGuhYyLabSvgY5D9-rtaSI_AmgHDfEpNjHtffJf7VrmxXOVt8uosd69l_6p-u5GTdC7oyk1uvf6eIqwdR0ByFp0XRficeVJTVgablvsebDTf0c\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b05a0032a398-92895120','','','2025-02-15 09:10:43','2025-02-15 09:10:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42315',0,'cd-form-entry','',0),(42316,0,'2025-02-15 10:16:16','0000-00-00 00:00:00','{\"firstname\":\"samantha\",\"lastname\":\"golding\",\"email\":\"SamanthaWolfWellness@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uPpWMTbxeAWRK_uYGFIGezL&amp;gclid=CjwKCAiAk8G9BhA0EiwAOQxmfhwBUsymVBt3PqUNZe28taZbhfr-4W1c81KqwL-WF1cQuIEkc0yrlhoC34cQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4_hufWqZUjXAB8sOnXFIlyr46OXUu1jdH1mGCOps9WA3zjOBmGXSqIU7iEzcBE9Od90I-wPyhH45Vq5oqFt0B__wP2e6YiSt9VUvQ9YxFkX4oV_GexkWKn6T1byts_HLWNrtimmHOwL95T4JvyIaF6lmV3LGUpbC8AduJRFLnT8WKlHkZzL9d0dJeJ9fNPzbPk0G6KiL0_LpY1LMcw_Veg96NsP4h5xI6MthevctHMBnxvm63JqA2oDvpQryOq2RK74dE8iA7KsXG1w079Wwq5T19yY93KtpLWQSW4cZEg_87yIXUu5GNvu4meP8YDh-i95yAj9b1LuiJB-uJOb_EVMtUX8XdWLl608ooPUiRqRmutvJNwF4I1QA2xNqwod-3Foqcms2Q6AvoL3dUFJI4Z99auhOiYDfOlCnfqHS7tYmrS-M2dcE2TIg25B5C14qKPkmBbN67kBx0zEqDeim_D-NA48kVfF81KAirwTrLKqqZMl2WfCdA1CuM1yaWvuvGBUi-PeWwJP6TaCw4VZIzY-Gw19fI5wHp33U81xNkWGcHX-vgY2eDL2QYwJ_5Byc6BtDfhJlUfFzg8WIlH40akXolCCXgxlZn8xtMhzjvzzsoHq9t_1fPNR3-y_StWL7Nj5Fl8ldvpV13YuPgjlpwI5ToXuyHld2Xds_TH2LQaJ0yplkVmMJby9CaKeyKJLY6MhZRNAcztRyv6Nw0uQjj2QwFy9PnDn4RHyxyJ6GFPePpaXeVqNY68APH6zBPjO6dB8WovfyGOB6R69OQl7wYttXyEfSjukYpgsUnBuwxbQv2onbVNjL2LcN0NDRqw2hoOvmPQhUTuJGNoTLoidFFVWQOCuPcr9FRIF-kmxziqs_03qW2ju-EfO387d8mtZ34N6fNS1wZ233g8tSG6cEXgYxMgwQP9nJjfAvDjKMU5hNnFeSvZmlI320iJWaEwYg7uu_HYEYyOIXOnXx64O7B4F7tk4Hb7RMC4rlx6CxWJHcxRw6uCaSz8fUK_v4YsWdd_uQpIVXTa6pygq0sE18u8ocZN3NwrCg36bnbjAq1NizTDldYYWexlW7KfiVJOfu0Pcc5kNchh0ikkDLkMQUeHyJp1fNFlAvLgfKAe2omonAa8XeU6U5kZqq8MoDfWA_zJCEIBjJyK1Ze0xYKNQiGKYma3mtMi9hab6pdZLXPe80V_2BTvwBu37EmsnkXD8PW-NzCUXa3RW-iBUvTfjMIhXvEwuHDFK_ukGgOuJSv7SJeRmPOvEu9BY1qqIi3NOJN7tIsvg6VoRK57r497OSynTmQWcVQJMzHKUWKO2QIpLimlzEkLB5d1IaZeudaOqVJfHxUUgUAJbSoYW2f5KtFLTyLAGUDpm5taJx2RSwFbkO88r1PD4dHShubRmREHIv30JLZ_14r5y7ot0MT_EUR1SXbn1tP9hPtRyjQugZ3DnCXScK7sn2rPZhjQ5_yeRLBbw2fPRVEOwjdLE_iKBzrVflpKT2fMCj1fRq6MKZuN1p4OnuH1xIouJ9ejl3xvfJI07r80acnszvzPvMlYTMS8LAKxbqyPfLEvbkz3Llz9Dl9pLN3cbhZoEqn1I_HsoXGBh9NUBLDJ0beW6nPxrJNz_F76x81ez7zkY1xh0R1NZZ07GcSQEwVtRxpgakku-9FnnBQV7SBgmVlpT8OUaS4sYWcCU_mzN2XuzHYg1V1998Nw8tMf6miytBpfh_ZvYg2al2VUHiLOiRZ0mk8QZlVpApehSZiNV8BR4B_ut51JnPb_Z7fCafqCiuBTY619lvBAmr2zXeUo10lO8ksfsuRJ9SgEEet-xN97-jHXq_iylBpuVtXz0Wan3Zl0t0JSWZyNxu8ogdMqovnG_ZXHwcNT5iJwG9SNafjGTeINrtByql5kwq-8N_nA8elJq7SzZvVUSmPF56yzZHF6gudbzzQ7EMbBl-S4KZlVLwT_s3e-qfdf911Q72dPa7J-4C4oC7qdlZkLqu7M74FX1N9FbuiUtdAOZ_84mE8Ibw9cUtztvQr5l9Dvec-p_If1cCg3WbhFFi2TWSf8v41w1hdU9GMvhUx_imWTLcuwrC4-nHGx3eI5T7HTkk1rnp5Fk5pW-7c0AOqG\",\"recaptcha_score\":0.3,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67b06967a12369-39421155','','','2025-02-15 10:16:16','2025-02-15 10:16:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42316',0,'cd-form-entry','',0),(42317,0,'2025-02-15 10:19:04','2025-02-15 10:19:04','{\"firstname\":\"sam\",\"lastname\":\"may\",\"email\":\"sammerz513@gmail.com\",\"contactnumber\":\"07307202393\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uPpWMTbxeAWRK_uYGFIGezL&amp;gclid=CjwKCAiAk8G9BhA0EiwAOQxmfhwBUsymVBt3PqUNZe28taZbhfr-4W1c81KqwL-WF1cQuIEkc0yrlhoC34cQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6qAedNe_fCg5ViKakEBa4dNfZPvdwcTSDQ1ysLfsRzByf4LKciApAA3kYEaFD-GGxNSjNgb06Qz0AEQhIlMf3OwGulPxlKvC65psUaHlEgNoYTDJV8sOYvgQPFsnZs1g2DRx8L_Acm9zRfaCZz1OdRomK_MvTNmuRzgXYrB_KWCe21R7sEnqg07Yzkh_Lhx1648-i6s5gKSsZ5doCqaIs1yAJwRpxVZHAkCyXZ2l3GoBnk71i9Pc1oQawGR8tQbgoI6Nq8hkzcB-Lz_54Hg80BuCj4KP_9Gtlw6WtNr6KvEdLwd4F7hzbNvqmfgT3aJdq1mkzbfzo1XeggJ8Q56RWQSycGawXufayJUddPKEmAC_0Y7AwxwPyeBzc8RVrApK90gFTF6wwR0pdz8q_guzGGborl6Rm7cxp5pUN6HbrO8Vqm1a3FVgXznqSbBHuedIZe9My61fFCy1p13SdNoGOLcOT1UxEbcDR4rOavA_TnriKMUjbcYzNxkQUjHqK0Krc9_fJ6_QmbwC4fodlWu2VXyQBLTfwpFOuxsUPnJQAE3U6nUdFpSxJl2UBBKZBnI8aoDHe0qcMX6UMgNtaz0DLt5K4-egHIHmQPUA0zvJPf8IcSJZiFqNRnpmMnueBiJjFXOPBlNCHENMV_X_l08K8DT6JZcKqms3-_0DWbmTszXSIV0MI2LZ7bDPFNa7M6ljOIqy4FEZOJrek0gvYTxgPsA34Hhs8YbgiThiBPJLIfAiFDyNpOMWOlNlRWtkHb0maY8TwPmTWFaOfS7Ctw_xMZUdyoQwLab8qeRK6UC5-F0X5VHt8UIXd3_SgSr0rhuXYcqtH_J6QEQz5AQ-8jP785SKW1YS6JPmSsbvfFsWBBH_Ff9aoJpQFOwNQq8YUkCJJH7PVlrM62GZx8fAyny6--QSRlP5jjmRPS0wMKHBJbw3lMVsfZt8Cpe92Z9VO96IeekNZM7e1z9iUaL6ee1LANtCLkiqqnfPj5IOTO-tIvGf9_ZAIiHaGNrkcvjqHEHopyGE3GEU9gA9iYGJQgKeD9E51RAhQY-VSuZyxHe561M5XJynwQ10f53rBTIFWJdBX3-A5919CnzCsZkHsJew47zFP1Zh-yuqjJLTPwgMVOJ73QAoNz4TFSpy98Y6ryojTQr3MgeA-2Ucev7EJxNf7HzPz04igOnGUpH1eT9ihItz7yA-01cJf_NlcLaYLK5U4gaaK8a8hEcqPreJyEdoSRthHsfs2DYcEHjDWsGP8xEqb100xI7xg8pwaz9sFD6JbBb6vIyVhYLCctVIsIvboLNj_4mPR8YGtWQK3WdQVqNUuvj5QSGV-DZQo7N-o-aroX43TS3VV65zJ0zCjs8GM5JARTmuaSQGf5Rgrmx1DaEotX9zOKGPbYHptCgPeTjQPbm-f_-UnT0FV3WSl8NDrLTdumqgkYNHaQGQnrtOfM5IqhEgdq5ezIRwR0QYsLNR0YdffaNOfbn_GQjOcF4V0sP0pnnH8zO2TRQvKFZvdmxwv1ow_-mKOJ5eRuYQPk6TPH1FORgRAP0QDgDlR6AxWbk-i16-GKMVvi44iQl1IZ8g6lZHpnrBZL3zIDARtfTny32Yy-v7kiFjw6W-T5njMpvgIjHTzWo7ysU9jlOfMeEMQrV7mScDGe8mgZFQUt4CVIUxK0WOf6qJ7s1PBMVgMcglwq1lrMKvdANXrMk6sspN6nM_z0ChcoyPoUVvZPWxSpk_-wKI5QDImznYfotBd0oBkBDqnHtNHFPD0GtwbL-_upuQNzLijLB_-UQuB2fT_xBnM3eE95tlNpv9nHvGii-pCGCi84FZQm5-hLfBftnrDjZ-Mm6ch_khB0Y0owRxkBZYMeTsXa_e3MErU1MDZ8oNUe_L493b3FhnvgRAD5PBYZsbYRoTHZeO1XHhGv7aby_W_jjMQ0BTTHCLvZdld72FLZYRDY-2uaHmK-mGZyN8Hnl25cI7NVCM6Y8NiXTgUvPcvQ3hZpxANRuT8ffaHrHPwopvrw3JCaLqx6jZO3No8no7Riwjz5jzkjSmJb1nOu77oPiDPa0VwiQ7c8Vvyi43y_gfrS-jr3gEsLKJS5curtzeAe_5hDaTGlXofuKfDcS8dG\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b069f6b65c63-57560946','','','2025-02-15 10:19:04','2025-02-15 10:19:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42317',0,'cd-form-entry','',0),(42318,0,'2025-02-16 10:43:09','0000-00-00 00:00:00','{\"firstname\":\"Mhairi\",\"lastname\":\"De Luca\",\"email\":\"mhairideluca@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAtsa9BhAKEiwAUZAszVBtcUHlqUt0eM_QQxyBTOje1VgoaGX3zvUw0Q9oRMrnpR87LE6WDhoCgSgQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA50J2Xdp5gbFdzdNxfauw5FvrzVroifSETYkj5BHwWkxbLbx8L_bXVxLGXKpzutMeRvjQFVpMQHkdE3juFLlDDqPlA9W4xW3XFrNpAh9cGjEyYYJ3ryto1rNH182nro9FOeRt-ciJobTxflE2XMKzxvkwZnHFNquyIEFNQsb8cZTDoF6oaNMMpurU81tbn9v1eDSMGBkfTTvY2pyn8Jp0BLZUVO8B0bhEHc70q43R5JDV0q79uzlOUSUWNu5hL0P-UAHs_rhxO62VZx_h1U9CG3LXs7uKRucRi5UNI7MiPQEh-7tYtPVIl3-38OAkCW3krBdAf2mbduy3P_-dgLcGN8-a9JbSDyzWSqRMhk2grRkdqGX7dCmOmDem4SrnsBiSqHPkFXSqBecrlAIyRwWKxwCwMHLyHXA5iNeDGDpUUjKqGfDeG_EZ3ZqkG0J2b4Pkiou5ZzaBY6j4gSqS1D7F9dIxShUsFeiMgWNyShYNFyNCWQ38tBJYvB-lTmbJiWwpB6aJXMMMIIzsu4nnmoPCJv3dwldD3I9PvQx89DkCSBCMizQUeR77rIIUK350U6Sl9bwsCPWawuzmXzwX_9c9oT1SM85bwcbGndUTZQ752mYwdXDI77lf7vgghbSZXNqdoKfhfzGkeKIFDL4zF8TyIjw7nzU28-BUh8f7pIJLzxN0UEg1J-vuUlVwHD_DcER4YPXVC9Xb-amrvyQw-e-MLlipf0XaQVQex2cPrqevsnNYiBgq2iG9LzsJ0D2jMReyXn27a_VerqIX1Z3xvK4K_DFhG2ViEWEn7kby8ElXjpyCkfeY1lIbfhLS4jM9ejHGnNM4qP3nNgkef8oWc0sR5Bidv08KPa_lHSZMkF97WXjznv-EZJUR3G7e7M-B9osILvjuQq8f3MdgihG8z9akry79UBGjwHcoBdcVLjBNYbU88RqXKFLpQ6ZVBHkqxkFi1jSvx6DuAY15m7rZiaGQoCNcPCOsE83IAkE3cbQjWfDvPv_34SqBG5SqyO5_wkKr07Se-uf2zeGwDE-ripnj1DY1TO-qxi-Hd9gL5jaFE8beNLzlujhfVFCSE1b5Z_9TdH9ApBN_TMbHuz5c08XXdWq-x7mVBY05CGyW1LRgz3VaTpdxxF25fOl_iT_5TBe63a3SG3DPolQReph8YG5VSjgrlMZL2BHLsPjZ3CDb7m6mFRKOmt9qC7DaNLBlHTbgLaEodgrfyNLj5rOJmPBXL0V-Kv7tKSOngLUCrQCQa9DKig7cVFTdmN7EhIZFLWsvkhWj_mRYaEUkmZ4agMao9PefcbFjw3s4ZPtYJodWu6ahXLydnCuzBwEkQSMK3vD57TT-nOM99nAPzz_936kcIH6xdsQ_5pBnh6VtRJtPljUo6URXK4FMpRMYS_Tz2iyU_TH7vRpA1grdm3O9DkgGH3dNKoDULccqv5bvD6g4uWo5OhH0Dwh1rTZQJaLJyJRntTzK_7Ak08Z7cuonifMKiVp_QL1iJ9t35biUWpfGwCX08BvbsS7dDx_P3n2hIeWT9ClGDCBICiDxsAmMLTFgtBVGmm67Kts6PNe8sBqomPlL-U6WcaRke8EUjJ3oZnYOOz6Gc-9x8zThRSrrTdNRG2YQYEb9xkdda_a_B7Vvo0bQedULBRXsKrRQJUiza9ygdtqI7byzFqz4tnqiUrKbCOKJjblElLhrbDV2bD50Ey_W2d6K4R8ZmQ6Kc-0UZ_yvoko_o6jmpTL_9uiFVQRxcvDd573GtpstPv10SWY23M7dArMeQlUBi0HBD63aHDLBtDEwe5EG18LewjM0Si3N-lmzicUhZilTE2Jf9idNMYG6qYljcsGc4v5hrCLWYIXhr8JlHoHAiStUM2EPYYQO58R9TEDBOjgCBi4VukRiQeNK9REe_u2IIIwicGT5ms_rle-19Gvv083qGR9e6anNDmdbaezgVj-DbZEtMZQ7h8FbRCAd6DzzACYdyPNihIlJ-DGWEFkCoMXjNaFgRg9a8hMaXT88jlUSeUFQFLs5VafWUU0vhDq6LiLUlVK82nhbABa6Yan7LvnDPSTZzv4e4VAlGfzw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67b1c137eb2233-43101600','','','2025-02-16 10:43:09','2025-02-16 10:43:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42318',0,'cd-form-entry','',0),(42319,0,'2025-02-16 12:47:21','2025-02-16 12:47:21','{\"firstname\":\"Henry\",\"lastname\":\"Griffin\",\"email\":\"henrygriffin.griffin@gmail.com\",\"contactnumber\":\"07988436929\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAtsa9BhAKEiwAUZAsza337YKrY4Zp7WKHItI6y-0jVAfiX5f4Mb7o3KT4k_Z_6bhNvsaGaxoC_2QQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6SG6tF8keP_70sYEikmpeC1sdkL-XXQ3sbOqIAmovclyP7Cr-WqhaRtZmYxVjAF32Ib53HE9oYTpI26ZSh4er-CYhJJwsYHOcgudQ_LWqYLL1QR0zJ5U7VVJV4X1-woyVY9LC6G3VpXkcXZOCEKILp6ABzkMt7-p_WqZ_nVk9H1DXgarzIAl6VfD5fqGW8GOfbNhAZ0rOoFsF4H9478F-LsXIU6CR9-KkxhxJGSIw7niP3ufdxYNCKWrTWt_a_PE78q9cxtPGc9dxNoT9Ev-jU7mK4lPiR0InBlRvv3HDQkbi7QUaMYPlWr_NbCv7xhMyUcmeYB2xwKyqDPItCp2tfNBgb-pLCmR6a5QtDwqIaS0iyjGJX5MBh4SaYAZUI0VcV3avbLXejDJZ97sQxzV4K9oXINQk5PtMguzRjaYhNCDoyJOhVb9p8ALGPpRY3kam1iN9UwD2ojnjtKmKWOh7OGhq6AzGT1KdaHQz7aGKDEqKR9W8oDn6orzd6ltndi0kz4_VkLFCvX_iawROev_rqeZ9tEUvi41pOG5udJ4wakSWDPM9JbkAuVgMKZNTCq0YXLSA1NNTEzKt6MFNM704zv7gT4-CiqVjfXn4MeZYK95xhx_pxP0tfPIb0tmZcgdEDw2BiePiu8YADALFZdog6zJu3AYR-pCugfaZCbw7gUrJy8Z3000Sjnf9dtNkIgrystTBuX1TRWEsb325r4ILcMXietvZ-yUo1IF7HdKqPIt7ROHhfsf0goC_jyiA14X38jsjrX8zRrG8KvdLd0vGnTqdNpTYsOGQep7HXw3Z9KtUtHNwL9fZ3F98wmVM_JznPSfw1bZ9aOERzbNDNtcTynubQ2Vdb8BsaB97lkorWI56icMsRvkQyKZoFyeeZYZij24D6gglsimS7HBl_vDy3L5fi0IPE8or4Sm24Db_2Ik3aiKxA3iKDQUfRpUxJNQCODJo2rFML9kRLhOUvQTNjhMB8jPF_mcSGBd64mSYkmrwymsrBKRRsGtoAZ5yHsYLUN3svIeH5ny4ZR8Lmb7lOPNLmHeEK5KywrdNusGyFneqBEKm2ryeBlHasLSVla8yfO9pfkIukuIv0Z94_IewrlMD60WlFFVgDi--HVXUoodp_EzJHNMAFepjTx73xteoWMQuJGLInYYn__CSkDThPvT8B1XEF0q7IlreXEhSI7qX8Z63K0EElhHZuM7Ifn0_-1LRI53F1bGixd4c9kez0o7S8x-1DJph51dDz8N2aK6SzTxMsJL7c8oaYxf5SgfKcgdY3GMdkkzxm2J5JDVa4pXTwbqwul53MmDQT4SULc5-bUX35lpivSjpQwOF2vsPv4cWM9FOkiEZENyCS1FdduRBx2yiR27j8X4hf-rG464PgcukVaJt7EvJs0u3u_LX6-bWVoAZ9XrynsYmIW-6UitedPA4iCn028aT7QBPKw4zdlRdJxprxdyQVYfMNfeo9dHHeVfitgt8SOjz2cXLiQ1-XupU0wTKAnvc3J0kxFXOX9maaS_NcVtTCuclldbhLx-u0_MvvCufXTxtY2MxHul4gEralcnKOEbcDcomdHyFxwfi5H8dSL1XxVq4xBurncIkTqdUUgaXO8AYmE0ZXabmvI53jfDQ1I709ydmwJ_cM3-DguL7T8GPynsIwQdsgRC7-R99U47jtflqICw95fod0wpOB3LU7jB6MEp01I3TRxldfrLbiAyLhN76Xhtdnw25Il2yE01oBXH34y9jpljXq1JoetkGhyPrjuwS6xa1bDvw2q6YpWO1R8ZA_pvanzcwSIXPgRik2ygqaPLoK6v7mqGbsv2hQ_EsGOM1VJSyFErK_42f1K51_JB_qk1NZn7tbopUEkRk4jEGUckUyvYn9whcqjv-xV2Q7ZwgNAJgqsET4POx56FQG01L-mUoi_lDeXgkbcU5Nq9F_N0T7H-PnL3p459ZPE5B_izIayLTftWCJUN6zmOsKSZYzCbeEn-GepQAwqB8imGC3RyWzEdVm1_bSO8DgG99zE7biauyO4bs\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b1de43e290d9-61369941','','','2025-02-16 12:47:21','2025-02-16 12:47:21','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42319',0,'cd-form-entry','',0),(42320,0,'2025-02-16 13:40:16','2025-02-16 13:40:16','{\"firstname\":\"Ryan\",\"lastname\":\"Middleton\",\"email\":\"ryan@ryanmiddletonfitness.co.uk\",\"contactnumber\":\"873387378273\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4uDnG5mob9aWohMYjQfpdpOgyVfhl0J1QWfqu46Oy4ixyb1o68I0DGj5GZ6QDY62yERaKGjibkq14ocCvtR1dFawx1o8huqgAmv1FSY7zRmisB3R6OWNsOwL-Elb8IQPMNh9pVvrzEXaaCWC_UkvSMVyRGhAp87IwBtnA1fiXFs_WbHYCCs1I0jbxko5p1Cz-WJuZnNHt7rO8g3giePzg8R6HTb5cnn2aiNBUT6mJs3aK1uQ-4Ef8EbOEk0dZ_fvjqwu8Eri1wrhjrI6ynHTMHkFTBbOtxD_V-5O2O52SdsuRx16nCpfyA6OSrCsq6s-fyPOHyH6FRJiuVWVWPyZNvyzzY_VcebKox3xoGUywgeXc0HNO47woZkBw5mZpjfWbOCat-8idP2e6HzYGldvfpaBj0VK9dUG7aW8U10_so2bj9xYJLBnueYmx3C9gDInjtKLlDJnK_h6xzKUxk2NnmEyy16U-QKDlE1b6s-9kZ2TxW9uAMEAFsweYKrHDwGgcznXmIBdt_6YLWnRcAhzToFrS496voVQtEcExW6evNKD6fsM6RlYZdlIgXw-r_O1M2JzO0R7aQt3mPDjhSeb126J7YF7IGoQqYpuO0QGO1N2G4z-LG51ArxCdgtdsLSSppXzn9xIrxF5nKF0ROtypsZRnv_szKgl1ThKuzb-WXdmOWNCx0LeA61d2JxfGsrIFmM0B6QOq2pgED_mu1q1oP8YlZC1CpGauNDFoywgKLo8OXkNTZXumOU-XpG0EZ2bXX5xM8_2pZFF5UaNEx6ZpWr1m9yhujteGTxSDEgBsMAQT4jA6PGQ12fTSsvoaBZkUm93Yn9hdVaRgCXdfJyij6chLIX35i2F9hCN5nxyY46dnsS0PrezNwLKGXahlhLl6CGzkWeo4-IretF1IUuYHzMbUv_b7I3gHdXHFonTB9mlx2ztzGNcgvcj8XyjloYI1IOBNzDdRnK9W4nzIIZVX3nAYmaQZJ9bKQ2omOVsWa8PgYeMHJR9BN1K0to2ISMPzQMd5OG5dPvA4M_sC_f6PmpL37Sfwb--BiJ5Snl2AvB76gdcHK7Arp0ZMUaD0XTvNTml33ZSEaQqLzI4BoYH-lRu_VTACQiu9o5Kh-SF71yG4xKhERvKsruxLnNNSg6PE5bDQ4XSII-LvF1qr7w84g_YqxZhMy3h6b2zxqxT-vJwYMjdaytAEXWce6gHOpIVerpPaXdoVLHxWA-2lOz5FuhSeoPsoPfVLOmIFL8W1cArWzkfz9hMLJRUwO0X7h5RxPQevIrs0yf2Buzx9_oKHoYxCLO3Lc0GADrXw7leLns1AnWA4PVoUmqLwzFH6i1rHNej7qA36lX88hGyNtv88ohK7OoO11Q1onDBkod-1vn1yekPqTpf4e44WipLYpWIV52oFwj43cbYE8cSJfYWy0YHorFiOP2PS489xl8oT3HkKUT3hKKgEMYh0Qez_L3XrkRKLU0YKZ_kXbAdwvpFRl4qZM8ZSODq3nTpQBF4vZY_BIAH6BtD5pvJiyFX9bA87bCF8juXdjUDValmAGbrEawSgTdewz7ckGV-znGymxAdeCjAv-hYxXYH8odolbYf1yjPHhWkB5wHWBWI3gS-JGH-MMdGJSl5CN-UCqvKHMGmC0EiIAFgCoLjK2RkgFdE2bh570IRPIbM8FdURCIM47MQlzO7Uqzkn3b0711ndlvq2eERohZAhuLDXy1IPh8FbIysY0wqt67MstHojmIyGOeRDE-49l_B_L4sr507tw8KTSIeilD85pwPY3u0EscNxgqDCqqxQkmri8X8AJ1YmrI_-sOyZXgZevo2qN073FEKFFzOOy-YCnxow3Xp_v65Z1uFBICbW6pG48eFzG5dk2EJb8unZKxZKAUt0jk2Tl2Ch9fiktlG4BumnNIrZlNS4nnCuG55fHiPXASZGhhdHvP13N8Du9A2MOKNbXq_RaGwH9TPAvo4MrlSjMwvmJlV3XfSy_dbkZhZtJUDm13hNJ_RLHLsEvuU-taLrrCa05_r6V3MiH9VmWCydEGeJP_EFeybRL2VWCtPKYRLkScOvNtphpiFvz9x8w7Cnb8S6rd83H1qfLvcE7QKEWpm3hTseyvpty\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b1eab1db4e19-18532795','','','2025-02-16 13:40:16','2025-02-16 13:40:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42320',0,'cd-form-entry','',0),(42321,0,'2025-02-16 22:05:39','0000-00-00 00:00:00','{\"firstname\":\"Rosie\",\"lastname\":\"Fuller\",\"email\":\"rosiejuliafuller@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAtsa9BhAKEiwAUZAszcUNLgt69xg1S7_lWpjVMd4eqplBvj3EVFXnr6WaChE3LJD7wvzgURoCH-kQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6MUxsEUzqAXhW1hDanLN0Gpl95Fqsemlu9BKMW6YEkuLQRr06CilNndIGbNXK6YKQdzvPwWYhBlIImyJBAqE0nkbfaY2jkseCL5_6J4a6tswb5qCzmUbzgbKBMlrM4iuos1gQR34ihcN2FuiHHB2yDdC2h83C6CBwoljVCD5YWlNq8M77zvD9Kd0ff-vy_7dcFJZTn5vFGHPibTLBRJfY5HDI0ICt8oV0X0LjYjgDj-4ATFp4S0MamiSLvfB2G4Ay4IZ7EXajXoHa3dB-SXSOt3hxfbQltle40sH3ex37bgASTnCulXDF17Uf44W5fZ9RZgS2HOr9CdPfrx8LLoBF9j0W0hKejELGD7DJK15l9xGbeoPWfQ0n_L26CdfKXmBulDltfPo_CQZ43pBT2F5YcQscb4LZMu6p9DK2m7ZWG7LtZdi6-pTynqJs2JafmN4YXiz7_-3EelTNYe4J1FxrHCidxlKYsE7ZjMg24bksW8QGVA9rpBNlH5Os0b0CkHW_IPGIVwvrIYCphUemqSVYMtrAa9Lw9BQldv0zx097kG-EceKteDiNjEnlXWTXRxphz2A8FocZvyo1yhVQC_fbOvvoV8-E-hVH8kSsePVCnZWFAZRcr8kl0sOqEOBSgKQxT1pjjRQmKsWi_KOyDhe3672hxGv3Zz5QwoPQVa_olXUMfogB1RfU0bkOAK7BKp5E9dASK71sBCHnmQR3ByAivdGWQRe3BDJaieu4AVtgNH08H3g1uvmYpw2rbZAxUlzIsDWqFrAXSpIN7FtlLRTkyuFTxnf644PLd1lH-K-xszaf935FioAZwAWdgUf-obVRLz22_Sil71JMoEFfJb5xWNfITZUt1ztcK-ywkzH9InTwFHa2rSG54yojHW7qLTGBtu1raI8lh7ctl-jKgSGsxN84NyQY1tN2_13Y78hlnAna8TJaIfsWRCef__xcy2iOwWyLQKoN2cjYULbLmkNbjXE-FL9qvdFtyArlJZdkrp6r0709CZ0aF5VIPywsK0jx8pE-6veWXT5zvOoErTMp_m0rUL0E_Fpn7xoQI5rioKyrNs4MGkCryKP-3lW-Za2P6P0qEvTLRNbPi8IdtPxLRQM9DObQ5cAZdfYOAXSI5ZU4F6kqTJm2d1h78vk7zejClZ0u8erL9Z3JfiVeoAmVzQRwuimmWFw_MBPo0BCWGH_C-U7U659CcyDAN49X-GHKRNjievTo3QB_O8s4n3hM1QSSObEI0hmJmfR5a0tL273XsQ3tfEEfIsAXwzjQrIpL6T0kNWwhuELPdkUQqFiCRj8QVa4a0HClp22SRgDZ1-F3pG1SGQMrvsnaWKZc6dhhbzVLPwZfN69rGy7S2-jrsPAaIPgYgBGNkt-GtlpbrIvMbZ5_vrLKSh-QiUlhIBat5-vI4TxjiXtA8UnYtfRjZMQ1hZATJtMGPPsDQIIqVQJKhdM8xejKGDQ0YV8xAwucqmK36x7_9GfI8WDOSrsQZE6GG2ZtsT1Me2A2Gx7-aNOLt2r3sShskROfJwX4ld18j7aBAtyvFIxR-6QA-dfHMu3kzzttpmrnGqUifbjgnfbAOSnjskOdjqJb5IlcsQPiIQPVAPGYHyaXVZw8n-Ey9vJPrncKH-HzR9KVHLq9mdiIhUdiR3fnd1WzokVUzuK-2Udga5Q_OcH1lAODK82XRIgZd0imawGiyPZeN6c_BOq3bG_VbAB_-EDsvRqb8PDkJ3_EQEII432tL_kMr0tAidzB5NIgwqg5pTHEEwR0fC2vaHtxNg2XqiS9ZIReRKbtholZz_3gBKC4XGQ0tHRWyJlm_RkJrZGyq-C4eSOvBplyIWOytLG5n3bYYj5TUX0Uk1c5T2hSZ1feWCtFekczO4t_kOg0mHTFnohRBm6xmJBsezzcQV66vGDbtt1-UmUWU-wXR-plJuoYYMpGAi13HOcJpITTbkLCM6hc_AMmMOF1GY4Zf-eDKT4CvvA7f3WKTRYYK\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67b26133df4ac4-61757718','','','2025-02-16 22:05:39','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42321',0,'cd-form-entry','',0),(42322,0,'2025-02-17 09:59:25','2025-02-17 09:59:25','{\"firstname\":\"Stefan\",\"lastname\":\"Silkens\",\"email\":\"ssilkens1@hotmail.com\",\"contactnumber\":\"07932070555\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/?utm_source=chatgpt.com\",\"recaptcha_token\":\"03AFcWeA76OMgdomj7EIUDxEX9NOh9BHu6lvTZXJhR0Y131RcfJroqiqjgrpKw8RijWVqe2TekJzkKol68cyOAkazNaxOR2j9TvcqKQtLHACE9t8JdC9rxfGccD_A9e31X0_EmPmY8vItA5nvprP5vhNVK90AK8KNHX_BbIYlZZDnIrSWmphkvOgWIdlkSLMCXY2mK65xHA6PTkSiBxHGvLLUUwGOEeDZHfhxNUZpkWEjGu_I50QtSFONOfAQqlJ1Dx11tLqcs_I-hxR5lPQkGSRT7yn2M2OkErp-aT-w-916HOxe-t68UMi7sFRkDR28TsxxCIsiDQecKtR6w-HjzhWSz7OVur-3o6F9X8VS6Y10Qo9voxL5F92ZmEoI9B7vOHUnpLqKGqhDt46Oa2OYzD-YiKJJ4OQN0__WPCWmX4ZCpTxo_oPOeT6-qyykLDyz8AiDe69MSLqGSX0sApri7qGwTmC8xYRxb7c9xOoSTpfuUeFRNkh71aqmFAoOfoHaTDNqOWvOsNvJXD-b0DLAljnTm0yrX9pnvasqUyliMENCzP1aluCOGwXencKvI_rKmaoQ-fvq7NXD_jy6xS3YPblU07AuXa8QC6gipf6z2WRnyAar81s6s0M912OlaY4QTSbZK7SlKB2sH9lKYRbmKe31yooiFBnlI0F5SCTzlCJvbbF5boapqrtbhivCU1Vls_dzxJHcavLWe7ak-sGnzqS7wa5euX4cbcBXvTTkAFBcA7WXh3Tj5b3Rqh3UQMg-ntzp0p0HTdVLakGONei52vkYFblRFPsDvcUum8yxD0Y1zunFAJC_P_hPM4YqwcCyDqYtay52L_YilCQRVP8HrwRz1W3v9wv32vcYdGkjFkEavhiA0vI7sxrfN6OoivDsipaeGKe-sDctSuG2sUbmA6C9mKCmaCI6D0E3vMVL-gfsli6flwWg_GglfdzNDa2fW0ipo4Yu6DQ-VQYnD5IYsdpY4U_CyPn1wIyDBtjo3bT97hzUrS28O3ddm7CvhINnLq4ib6CF-xt7ayNiu6ZSm2XfMYf_Nl8awGuvphvN4lOfcLpc9uFvFObb5jWsKQUagw4xns5ANNrZzrKnHx_jR54Hd2KVMjZzc_HblkWOPh1NTBm8Uhh5Tm51Xelptl9kcFvSg5UhhlgrYv_BoW6Jcc3lS0CBxB-cMUdEMdqlnue6U-LCC3RJ2FOXJpZlps4ni7drMip_26DRw4nOevzCj3gjLwbei7_PD5UkZlHtC2sP80uW1NV_fQXRfTAdltS5zPhsnQIJs-cCeN51SrAFN3md9T-Se9trM-FeslHXonSkKjwMX5KiRtdkdIfVWpJjDFzvvRouFPuj-jXVIS_mPl4TzzbHfDyemtGBxRh-S9pKwg4MkZNbRdgP2kcSuDmAODRJUnar1ll7MEDPvM3K5SMil6NlOGLepzdjzGJRF-3IHCRgkB8-W05aPT0RMBeMz63xQdlBn15atbhOULFdDC9ayqLbMR6HFaJVn3YyMDwZDQmR2S-JhycmET4nl3JPHNsErJEqh-NDEN-lNUcw63NyhnvyTmHNNIOCMNb-qrEJmFn0g0v8DMbx7b49yGJYwAjmaxKkKzeMJgDkJQY3SWNHWJ4TYSHq7i15lieMQx5JPdWOOkD31pTPwjEM-yU_2zz9qiuxHp92I8YWHKkUbBh-cpQH-Kv2jVRIjeMOVUTAuTGrE0wvUssYBeUIt2nlV5mDpDy1KcEFeQcv3C_k1R5lJ9k2eO1l0UrpmHjT4nwK7aytqCkl-v_DOkk7zfZRr6RHfcmsdU0nrVsp4swHrq1dZQTbx5_Fl0LMUyLxIe8GD_YXIE1AYjiwcfFKTAe5yM558YAXiEEGGvDfG9uglRoIW7jdZJjX5kY2xxe6A2a6d93aUjlkI1z7UZef_URVtjYxVxXN5V3jYMuIEXlSwvMTf6ku7IIcJA3Su_ckDJ-Kizp7nkMqJoXJRNNHgsHBmxsHUmEKaFJpg7sIhO7VULsfjOm_kBN4vm-cmGrtGbing_ZAuq8HMyrLaA75x8qhYIUtyC_zlN3bSmZ4xDLoPC2evJ91LPX1SDfvdIdwiIXwFs29OwDGKu2c\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b3086386b620-04095867','','','2025-02-17 09:59:25','2025-02-17 09:59:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42322',0,'cd-form-entry','',0),(42323,0,'2025-02-17 10:08:42','2025-02-17 10:08:42','{\"firstname\":\"Jay\",\"lastname\":\"Izzet\",\"email\":\"jay.izzet2016@gmail.com\",\"contactnumber\":\"07717434357\",\"pageid\":\"41533\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vz_ezGxfkRjmRTIU_72VQ6s&amp;gclid=CjwKCAiA2cu9BhBhEiwAft6IxIxEcuHORzMSXlNFX6yxpK7MtCHoSzlImVIKQ7r2od1zZzO_RrI2aRoCRjUQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6l_DS9l-YHPzokNbg9OGogkwrp_zvdNiytTJimLxh7iZO4Q_fqkVRXODaM0LtT--F8evmEystHFZDGMCYo-QM1WVX-IzJgryqKSjh-Ab-Faoip_WEOP7qtqVq2IncKhkncjkGLBsv2HjR6nGXhuof8l0y45dxh5L7gyRXFwVI3FcMXKOoBT3PbTIp0ZBzxTMVZZ-y6GqMPGZnNhXxuYJzydAbbb_3qCftpJMRYSXTzNuxjMXUl3p2UqJCwPGun3mMUUyLQLxjpuUpaYjNfB-NQn0m6rlPg_i4rX9CuVdvZ5_ySwwNHS4xvLqPXqxcb2b0pbRfvy5T4NQpxKAQFvcWxg0yvqfPgULa2z-gzSl0cBjwGwfg2U74051xfADXPEFgQyPHEnvowh4eQa5lyGcRwGT84KotToh5EUVN7F81h2tUi-emQ_y2Cn-V_PKb7pQ2d3rPZO3XQYDs4lO22PDxHr8f4U9C9veemDrLnY8rQ7hrnnaJLH2-RAmkN4P4rYRsu8hslVaaurL7bflcwBDxO7Vn4nkV5aFzXw3HXBO0PTRBg18AOnGSvLs2d7ug0WO063fLvGeNyJFNcSkKagumwbFieLAIrUZP7KNc6Gus5gJb3CuVOqiFl68jWAdiBJZW66BDc1gZTgGP2kAv223kc-E9P9JA8AfRh34g8edaJzRmnSOXGTI14CcmqIFCk7FyRZYxlZxyW2cRrazEs46gnVI84AvVT4Nk9p3bebXOO9BrcqvekrhOpKs9ZT1Cw3k2umyDoSk3zgVwjzRduSIrvhDsI85SCZ6X8iwwhJp1GKJnkg1c2mhgAdd0I8SUXg8x9A6zhYsWQzmk9KsqCY2heAQIQ13_N-xjJ4RkfwBHiE4BSO3h5dJhbCkINLjJlkvZ3-TPUSvg2HuI5T0Z5AucuJDMuuts-8Vpi-NoDu3q7ack3Jg5egI3v185SYJgkbJtg2YPzolXY0A4HcnRcXeBA8soWKycmLg9Ahf0rzETuIqaRyKBwUs-Nc6T2HtAFHvbjgDR-H8IS0uZm5S7cfCaDaMz6lAsLczE4FVgHRjypiQYJA2XT_epdPsr_xZf5xVnfUfjhDW-aFQw4W7qxslZezVhJ2H3YTsPP-PnjU-jYlhyQT3JS3wh4WZXfcaHMDiMXOsnugimW9IOVV_HSoiv7zR_IlTN_rLeRUTZpj49291FUdhJzn1jINLZPbZKtkO9AZfirSEIHkJzzlJ415PjlJU7-oTHckAm4hBgXScllhZYrJjdVZ_f-jtFntCFU4V-oqmugRjpER0PWKgrdWGBjODRQ-gIVO1H_1gQixLHqPynz0QsMrVoOXvDToMxLr3RM8mFqJvtcAX0b7wfg9-Q8y7DuuSWEvAsbFOTAEV9K4ECcdjcvntQo0zl8CA3LZCQaAOxILD4VeelJ70AiTSSsIJ7LaJ1C3bhqv4pAfv4LZ6_X7AQzsIIZaabE9OFIp31CTk7UCv4a-RQ7iv8kPUOBDe1RvIWO2EM6BFn6Z5QfLv8TKmLihPSILt2lZEoSLLOm9hnVpd3ugSETknWLRZNsJjUK9IhTIYSJ_aAiL3uvXgqGz0qb7koauhQPGBRMOGiAH2PN1X2wHZxBR27eA9bqLC-UEkWCkuJ0K9Jtw1tRK0mEDuh1Q4qYHYmGW9vHf5WqgfKOExpv7wJHWY8Tpd4iQ51mwXp3GlyTWCU4W-xl3QuUIMMJYwJGXsHJX3o2hwZyl5zgKLBweyslja9esCGBKUXn-nDpEDht1bN8YBSjdTtjDuqptaFYsBW-kvzCh7-8Km2TwIUyTEMK3f_bpfFWQ6Tgv_qhxpolBwN3nFcWTgXZp-x1Wz_eI-IudUeMXkD7NdQQEWAH0mt8k3dpzFpFyvox331nIAwcQRtAwd9FLH9d577q3jPX871QJJLnhG-w_0265uRdUuedE2oy3IKSQS4KXJb3d6-QyKhKNKVv1BjspD8xLO9vfzeEEFKcV8iKr_gTkznBJTVjmBlBpoj2xiinm3p1Cp2CNMkCDfFJFzlZTKYNJINC3e0xTc6NXdeYrAxld20RVipfTx2kxX7_Lxe5XWkf7151UyNBOyBl6NxVOg1PqpyPwEybr6pw65-zi--Y\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b30a9b8b6fb2-46083717','','','2025-02-17 10:08:42','2025-02-17 10:08:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42323',0,'cd-form-entry','',0),(42324,0,'2025-02-17 14:00:20','0000-00-00 00:00:00','{\"firstname\":\"Joanne\",\"lastname\":\"Michie\",\"email\":\"stevensonjo1@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39196\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4kbhB-ZfCAYq8KGsoqPsdoYKJJkSdPeEQw8gfpy-IrO5BCiLP_9uK2uVEXo01Vvw1a_O3RscC4EiV90jVMI_oXBzRXSfYxAZXSXzG82arCxX8YTBUIO2bX4JyQZQ-9ENzq16Nx4vm19pV44rgX8TDGkzWHSp5kGcvHHWZuJ-ate9XN-jbd-aUc0JgCeP6iJuRV9hzTM54jV0LaGnYA_7pnY50NaqLn_PmD8Z8xeYIzOHIPiueHlx40CMRtCKmGQdaqsb-r9RnFkMnay_bTBHIAE_elzaZL--mYIIex1rViufCDG6skOC37D6RSE7REdggtmmHBzQWDbe8JsLvnjry-EI22EX99qDORmVI-lilFs0sxcK7fdDT_5PLjaO5ue0AFtTByesALYs_amna85poN6-nT5ahaH8n-ZA6kCeXBvNCTBM4svpc6enBJB3TbitdjsU4Tt_iJJjH-PfyhF64VcaIqAtS4ZbbacUylXl6vxx0j0CX9ve_RixR28Cr9_3oMWW_wzlCbSNg3mI0BEDz5xSMLRryMKZ_D9O-oUv2fxzL4WcHFwrera3UBDH9PIMNy9YnwDniHiKMkcfGI-Su92YVCgGod_zYLWgNx5IiVDjkVexKz5qcYKzc_Mg5_n8ae04Qt1GeiWrXVnJ-ZPiyIbQyT79xub6RKRVLvqLi24AXEC0TGTydJs-itB7U90NFzQbJ1Cg0MQ-NV7Jbs6iKInq8LbIPLzwB24G1GeDh0S0CCshI_W_W-ziy_leBkHYrIinDgl2NNDOE-Y2pB6e_8aAJu6Dxib4M65YKZYZsrFUM_IAnRDOBvmxJZVyiZtgzIBFD6wh3wmIsyx_XvnHYQAsS_8H4PVuaHE3qj7OaUFuG-_5WaTIyOkQxndEFyu_1d9Q4BsJOAcBZ6amp9hZZ-km9IAbITKRqB1_vQ4k-zTsgwO2WayXuWMUeP_X82YaFbFQkQhDxuPLkx93vJFiSkaJcNrRFH09hS3vWo2WtYNsJhT8PW_ysngksJEgB_LIUG5G3rbd4RDFPwy_HQwfwobJ1mEgXBn10ooNwXSp-wSt3chJ_DOFfqG2e04WJ6Z7dGiuVQjgF6n1T1s6Yty8A5fJPbeFg3IY2aAYPwWOYibCgGC2lb3y2MO-elERKnL5h7IWe4mgUiEoIue3Zf2bGpuKgRVsxvlV0HUZg6cIUIE9folnTbOBrGAzM9ReaN0NogRWU9UgbmAi86b9K_DgCbmaFUG0gtjurHgrmFpKwuIred6NngI9z15Yw78ojT0cmGcSeBRCVPkQ607u6WoIb1tR5wX6vEK91e10DM3k0RXpcUWTR2u1MfiRHoeHNZ8Ej_luLCsus543Ah1mwS4l4Vow4tnohG42lQjpdtVZ1N2azvhSLZHUUXcWfa0Lxxb_8MjGtj7xXKCPbJrSFtm9uLrVnr3qbHNmRJVKqNQjsF5S_EPXKcHvJjppQfeBSOIQ9Rf6Bi57PXwjHSyZeffTFyH0Pgdulp6LDL8FNRWkOfNP9kNo2hvjOga5eDChzcFyqmXKNjCG3RcRZis8bXZvE0FDAo36SMgGWs9t6tFHCvipHzNPwZhl2uFNZoNLE5rhFviCTGUZRedfKjP8ZNSuHaCuDEbEaS34ShFCiYVQmmEdQ9F_y_piNZr7Dm0cqImfwG35o9btZRHoOutXYGuVr0TMHdJFQtZmPNunOjPqHi2LPx8ktBztQafzgiZ6u_M5kgSRqeUenP7Gj7ixAJ5HG0E0dOfDxjdtt1L8ltaOSOVSwgx24Pm573W3QDXumG78n5GJWl6uDJERIFhpPwLJfqcYciPI8PZwyzxow6mwyRrygQYss0UAhkugWhDOtYq3H0D2adeCfsm4Pzp8oiTLlSmOfVekPxf7HqnD-_iVOc7taWoWHABg88L6ZHimYcDqpkmep-ajgA9KQY17fhwfDdlxQnyuvi3UhzlS3j67qzTlyf7DA\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67b340f4040616-37107048','','','2025-02-17 14:00:20','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42324',0,'cd-form-entry','',0),(42325,0,'2025-02-17 14:22:33','0000-00-00 00:00:00','{\"firstname\":\"Carolyn\",\"lastname\":\"Wright\",\"email\":\"callie9766@icloud.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7vKRo4LJx4j6I84XLuaaCvGuosGp2-_UrcD1M3zFd2KwllCJ42AlmeqbqyOyEoJ8Rv3x5JPNqGItupLjx7xOvX43mVIL5gzsJtr7jROemqRChSfuqElZRPT_sIwvvJ82hfq1oKcOyM1b0t1pkm0RFgITBc2rNzG0J2eZROss-Jfbf2MUvdwnEoZ_tD-kEL5cpUmtXUS9CfHpUwBFP67quWVmsjPD0KYNQH8Mu_1XaGxaVeMaG8imh9hSMrRGvs747rV9BP0eVl2kZn11QIfi5jQa90_45k_yr8K4it2DZUGNqNOejd8lUgHcs0zfiFd-WzZQGyujo1Q_PJYd2YUcj3O8_nbUcbJgJJVX7bYx3FfHBj5Jdc3urKP97R1Ojs49FBYLqqFNbvFV3F2fpJX93Kc7m8kLoZ6s-umczTOwe4vj3pRu03Y3ApvR54dqW-qk0pdmqxyabBs7haaXbWZZKRETcNF2OQIonQV1sxczCdoMKZ2-lj41P4qlscGkJTsWUt0HReFEtU9Exl9c_n8sAsagWfofTGSOReL36Prv0LFU00dmbO0uhyhc6DR8esaci06nCgvn1PL87S_EvuKjmJ_j1suYxEkHrxappKX-aKhcNYcdQMnU01t7cIs_slowKSTbxl2JR6DUhMhxV_XE5W1eff9BdzvGaILvKVxXBvr8kdjhrSyIm2-FmWQtNyLvaE32G0Q58vvOyu5B-VwO13BO_KIo8N8Njhfr7h3zDjosywq64wnB1vBnXhdv44m90_dlBdGv2BtRrmWy5GsHZJHsXOmb2kRs-PpCQuX2iYNFwZqQ0rjiu_ao_ychIOBW7-8YgBKaXW0dfVvx4rgs1NX0LXm1wCI1Hy4rfU6GyXe2rB2gKK3finM5rqqGsFIwaAoKX9_2cIXtUeVqdD8IMkWIKljYuGUghvh6YswwpCDn8_mOYPkomcQY2i5FoBxABVmDwb3hBod5wySgleOCTvmA9011ZDE3IyRye-zWo0pvriB7Izqs22VTxU4XumPM2isFIi4LL6NVXXbVxLO55-8pzHUBZVVfEwvBKyxgnd5WdqWYWfckVO8C0uc9QOwiCFKWks4pH8rBFGHcU2c0GYjpkre9Z_IUi8X2S0KR089Pdt5HSx0wYg6aV5Wk3PrJ7EfVqJDlmhd9VhTZyhT-DTk1sl6kUFJvARd31arcfJSkz9hmv0M-EXMbAbQx5xRdLNQTLDCRjIRBqaPP5UlAq_m7SheEOo5Zc0WrWieraVkSllHue2Oa7JOnWCf_45bYwwEkmRVVK7r5XTBcQF8wLuYNndgPWowfuHtZEf1W7YvdXxvhijRCGwZsQ4Yqh0ja4TMyktbqZ-pxSpP-84gNRK5P_xf-EZvQ1MRCEs_CyLlok6pVBivNiGxvg9Cn2YErGoMKcJoM88BjiMGRM8yiby8iQelGcc1YOsegDz4VbIVu1A5sYTEBDFdKg1SkrlQfdpmCG58UNTFUHmBDK22H3hQ709XbGijTlI1BKG0lQ59t4TluETE2KjQNNHEIwX91enuT8iCVaZiogNaurWs79hvvdQOWuenbJgQZM8os_JcuFJExKHglliI6sl6gd1ju5xz6PbXW_9CVHnW27vqmGCTb4YnVE-WiRPZuKFD7xBtOvTZr7AkryCFG4eERCQsc_dfLk1gb35-CnNk3f2-2vn5yraAllHXZxbGcW4mThuqmmAeKd0CBBDfJLDcxIbOxl7e9emFyEpOBpeaczBg9QAQrqbqn8_K8R_2pOH6eXe_ET1oxvd97fthXJbKPCftObZOpWo2tE6w6A_X0rpIqg3UbqPEbcqbmO3u3s4g0QwYvwf_EMNgDfUTVql7F-WF8q3-jZyVljy1iQXhMUl8sREtkecLo6owKkc8BCd6NUOak4EZsw3TLXr1OwqsfhC2U1Ip3o0d_zHQq4xBNdPDJN2hxexTmLL1wC8twiRhi_oAbV8mCBepCUZ8rWGmvqN2tKkNzTnq5l8XGI_FVUcfRDVF9pAVw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67b34616c54053-82460629','','','2025-02-17 14:22:33','2025-02-17 14:22:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42325',0,'cd-form-entry','',0),(42326,0,'2025-02-17 14:39:25','2025-02-17 14:39:25','{\"firstname\":\"Dylan\",\"lastname\":\"Paterson\",\"email\":\"daprofessional105@gmail.com\",\"contactnumber\":\"07400155773\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5OQI9xF55Asf2o5L64RHcsp6M7TPAJsQqIPhxty2tqcQvvQ84yYk4ExVJB0Z3LMt2NGqeyoOsqKlKSc58HxcTct5DKLmZGq2zmj7nloIDi6SQ_VIfT89LRMg30QdmRlbTRRFoRkyW_vLmIWJV3dB3kD_imOPGpy5oQCAtZoRHJfiyVEQzhdGmEZLNTwpqEJxBTYQ_pKt1v6Q6tYYC70W-zvEySrZMBjlVfLe80AoJdg0qo9uwBq_HKsoGPAbvGE-_MoREzHFPOI3viYfLKELhEXa1dPFlteiYrsmT3sEOjaJM_NY6WUKToOvYIIei2GYP8IFtEXPinofvLmwMiKH668j1lcu_anffoqI7G-9sAxxAom6ykfpfDu_Hwhe9sAEMd6ivULwnuZn08Mq-KDN8_Z8LBKJRPFO6xGIzFxjWu4F-R-_9qEX_sC9aB3GBYJ3VAWpz_EejnUtY_fcARGj9F4Ojq_K8k3NFPVPHxe9_6M8xc9KvVrxpOyyPnmav2T4FU2Do89KkQaOik7qP444jyKUsvY8FiPsAbiXwEo0uEulsdFQDqnkh58_3UgoH9nJhEa7mvyGyinGan7wjmh8dj5rjbOO5n7QGdmuWB8TwESHRLVeCaOnLmY7FEkqE88CqPMiR5-yPLDsBT7ojBstmkr7_2kwwBGgt0JSDvaSF9DDnvpRGDUO4HQWKIQJk2zqxuzYpvNnJk8F4b3wiXrQPk0ZYLFfnC-e2_q10FrYyC52ljr7Y8opAaDBG9bMcld9qDytgueprTN-4Eal1tvzKC7Co0hCmykUcpGtUczUH2uEtsXabKE4kkYSM9geGPpRIur3Yb7YlI-Bok3Ez-rIolLu4tzoxXpY61yNM0mO4dalfdYQxzkc8RuFlOg21YbuqiyQcJlNglXlK5fu92QRnwU-r0PqAF65_yheaaG0dUjhdx2FKrP-m7F9wubn2nqjy8dVj8SGo-77kxqRbSygKJoqhpszEVciWLRTcqm33asC57Cjlthf8YjXtDDfRPTWwhY0EUz22Kx7vRuzTTesXgleJUN10i2E1P1dRrFdenYf3IXNLhpb_kV87W5Xw0_f_qqMlH7g3df_kJSdZs4KUbO0My0yTwa0XBVUUXXrITGAk_z731WywD79NGMwmWmLlttqd-yIl35YP-KDEYf1xJLrh6wc8TQHSS7PW3j5tbYwYClkfARiYDJkLT8oCe52BlbvZolP8OK6QVk_qyzwuuQW9nMfrylOZB_iewh-uAJFjS6IbLEQeVehMuX0GK9qQn8TkfGvXb0mc7WEmar75DW-bymwLEh6E4KpbfrCbMa79RFTMjJ22nnWY6enXBlvGwgNDRqcQuopB5NgTTkGUt6e6N0J3Kncr6Awsjv6E0T2PnTsLcjzvEB8dZZ-U0oCy_AT25xnuDvz4i-CCC3r7d6YLXN3v3rwntXEqpj4jeXIjAhRaNke5o6_d40ty8fPkD4NDayClSSSD5hvMIwBLlveb-BpY-eFLLZlmM_zxiqcuLt8LZvm3RJbgIR1YXkurHuZTtQ_Tn7m6LHDzDouni0fMWEQGvfgi-V4c3KFCwCf1hbgEyrLrwH3kUeN9It46V1BNuxCQnocBA_G_qX4BJmuRnHl0L3N6OA095UKlLCcne5IyW0rYyuZflJUHuelrqHmekBFRenuksLllDPIa41tBS7iFUcKZ2NWs3KGIVKuVNkH9r9vAkQp-Zf3L2R2NgHmI6ec9JOm2U2SuIvBRFrI8iv5nVxFPlwKEUa5bc8WAH1eHxarMzACS5Y92N2ByMk0ZL93EhVOPquBnRr_e2uc73vXzlTHPdzDO2jbO0KgpAQwRGcgV_alWId7w7h1YIPh3oBXmFVlgE0-Z4Ozno6q0hL-yayXwxJNagAeH1QHn6Kqb8bUPxB8TvxKFSvKUdkT_9CqmXOF8IGZ3_vsKglnPm_St6IGZ0XhAT6VXDf3lMXpkWTdXrA3WIPH6M0e1DmnBitPtUalRzuBIzk2IdaANvlcBblLhTInQLqKgD_2gHN1-Gg2KBvfm9NjECm4Xe62SWOobxpotpXLauPG9lVlmtQ_MjCWTVRDRJQnnjVQtZlDt18asU3iU6TSenelFgXNAMk-o52LjyBlnLX-x4F5v6yi01dU05pkEj3aHCEsG4skQP6BS87iOWzf51HxHIyybs-nBPRZ1yGia9cthWrt0x4Z5DofaYX9l258Bha1UMSKh6alemwtVsR_x_qFCMutUE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b34a14d55934-01762990','','','2025-02-17 14:39:25','2025-02-17 14:39:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42326',0,'cd-form-entry','',0),(42327,0,'2025-02-17 14:40:11','2025-02-17 14:40:11','{\"email\":\"daprofessional105@gmail.com\",\"interestedbecause\":\"3\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"3\",\"currentpostcode\":\"le31sf\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA578n-O4soEjzUiaTWFze2EMUkYW68PDWMG2jpR-cyAwu3U99jaeYkI_Zlj6PWwDm0c_vPPO-lzEobgvh4E6aa2FfIqkEsVg_d4TNV-UorO84GlniNlxQPB4RmylfUYQfdJBRhxcnZgqqEMAqOH4cbN6742KP3nPwbvhfG7cdVCrc83nkvhv9HzjFrNyA5vkINKpzDK9M-XiwWVHJNenGdCSTAOvD0OEGuLTKD93hmq1kMaOixTG_EILV0yq3kj2hr0GSLU4kym0XgLX2nsjhaWp899CDVpRwddNEnmBJjupdyflD46VuBlcE1Dkv46_bcAXBLYMBs9vCQAPCyJDB5QQ5XZCOpUCz0RY1NcACFEXYMn6OzAmzj2FLw8WK5MKFaJe04fBo64ecDMS6WU77CnvBNa7Whjuaegd_pXebg0kX7gk7XzkuI2xPmizVvF2-lFDTOOZ_CcRcM1rUPMBndpeC16QtLc-xsqKJAxeNz5EiF1LyqpBkcQtKIVhX7kNEsu51JIgqhu2PGDN_7g3h6yP6o2LFYoeeK4zDhqHRzvblOrlozeDa3Go9k8lKDh0RaPCo3httdAtqov8U4DmCGGDEnUoGM6XrYJ21aruYwfT0xDLQhIjaMRJgcTBUSLMA4PxqBFT6p1KQgaL4gP4olfUnKyRVvy4u5xI2pupOzcLujr-CHabm0hYl4DCPV1wKimNnHHjspgCFrHo7zdIBsztQMSuwbmdzXeY1R6Xi5V43LB8UZFkYhk8UdeN730EHnS_CmLa8NiB40z9UDCOZGsgY4eE95wuhyYl6af8P3lEVH7-lzVrgthOoAfSb2wL7azfQWFA_pIxuKsi8n93ateDWvkPb_h7txHEhu3rlHju3wJ1vAnK6VtzFbKFY1NxnAejJLcjPwvB-GznOYy8oFi80id76-jg08qTZQkAGjfVyr8UsA4t6BEh5UYXq3S7XgIWK4Wf7livEFo9rRnfyklfwY0Tsi9j1v3GWgk1Hqsd1LPklbZRWMNWh5yFk_n3t0y_jpoOfP1jOE-VGvYhygqxTernaZaeWUmDJo9hBb1su-HXgwoe8fIeoigTy2ID2THcKEDRUdMWCsHGj1GQt_PJdCQcNC3z-BPQiVdxnx9aEnqQQQgNLqMsBuVS2McRPDFkid_ChdW2WaF_vDFTQB-zLM7HEBGjcxdEHBQWaiJZRX4BuKqEwz70_wnJKdYzZkTDTFjhD5fKsZU0AOZJASIKC5Jf2fER4F6m-G9gmbpkbfeXAN4O8m-7EwspWAVBRDKkD7s3m0IDcYUTd9KaqYxnHLSeKmSLJ2abGnFTqzmvHF20IaSLjprOvNMLU-K_kvKAxt5a1XIaohqYugjVw6T9zmXUuUakmYNvbgKBM5YQoEDLqrkFLn9zEdAG5SRIC6ZA9-LHfAt6ob3LUaPuKif99epKd9SuDDwHQc1-Sy5tyy6QU8mX3xW9GYNRxvT5oNXiTEq0iPQio7a7kBGflKvLyjmguq8D_a2GxuuJOveCFDYFIxGrNvjvv9wZFREjA8Yk1IAX5YVy5nVq48l-pYX1Hwa7itxFLzcT_SrGfoSiTwm3f5Dg0L3klK8_AYw38nQQyCObRNil0g0EeMVredVenm0085_p90zbE2GCwWj0ptJo-qxeEs9GPRTfGi---E_1r82KNtcizni1pMaeEHpnjnT8ePcbeW2MitDs6KIya10IIDaeDctWubSfsvs0nM7DQr-hsyIzz5MlC7MZxT4mZ8O9HDmHfu05hREdEN6J52jE2EXfWCVKii56hngpGtfi9H7jNSkWp53X9aH7XZhHknPt_Gu8RBnDTMjNj8H8ZfA5jxsk6W-o1grnrwlG26APOjzDUJWuAgxyOtNF7H3PT6w4nchmMVm4CGKmUL-wJHGV5idbdzcClz5M0TrzFKxN8RtwZbPL2pmRbWJdxrCnG4k7jkkc2YiYCB3xAWHkjCHd6qQHKFcoiks6Y8KmWtsyjlTwvb7riyYUEUjfgG8FWqAw5VfozniDb4iXFX4TDU3lOliklHgqosI94WidyfZzurW2qDM5TjeFtzIlrIrrk2l2nnsWL_Wqdgf19I5QTbVidAKyyo15cEERqfGP8BF4KmqSrB4Bph55g28Qwv_ysz3NnM2gDDN41Wp7U-GW_6A6R4U_TlmkFB2e_XY2Flf40cJQAku-Yw3bdgpVQGBfV7vcnVVxEbmhGa4g-QLEUIi8QSItNtxJsvK1WqpPS-zTFWq\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b34a3c2115a8-93393218','','','2025-02-17 14:40:11','2025-02-17 14:40:11','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42327',0,'cd-form-entry','',0),(42328,0,'2025-02-17 17:12:57','2025-02-17 17:12:57','{\"firstname\":\"Ben\",\"lastname\":\"Vandermeer\",\"email\":\"ben.vandermeer@hotmail.co.uk\",\"contactnumber\":\"07729139768\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6viwX4ycCTorNxm7YAnWYQ8_&amp;gclid=EAIaIQobChMIvOma_pnLiwMVIZJQBh31vi2qEAAYASAAEgJB-vD_BwE\",\"recaptcha_token\":\"03AFcWeA4-RvuFejI9KK-oIcTYOiZ4dohSZbXLKHbi1VXHzQqZs6e_XLlCDBilhjmt1phZeEBPr_hHmuRIXSNJhPerozBGaR_lCaTIv-TMNphxMHfmU0f4eSMeo9ZZ6ejioTXgSeWxEnrHFtjBBpc98pi-owwLzoJGFqu54Hwo_wzQBZepX8te3J8SCqS3MqzL44Kdxb_CjxmI1EczJ1evKry6Dy6mtI0uy8kAsp4Xz2SYq1yuaW_pqHGsXOBxy-T4x7vAOzrHztmYQa1kv52u9YEF69GcFtvQilLEgpX7s9CieDTupVqlFbC-WiGKoTB9A1U062TwWNyvAGSUnabZZlo0X0JKJ8j2Wpiw4MrjqC8oQQleZKdQoN2cMSnApuss0rc8xxUWHru_A7eq0JEonpkLpc3z-oWFp2yR0I4Uf11a8YbOVNw3YMcGgipSVvIyYRyFv259woUN57QAUe-iPJoMQNg9vrFy0p-exW9-4lXAlYvyZnU28yUy3wvCptxpUzibJwmbTbKD4P4Coaa_iLbdlcB3oj1tpJeOaG-JzE0ptVkY057uJIf1_eVeDE2M-RR5OxLgSTstHtSwj6TFZHh5gYYJHloCmCmZNFMCu1t4UX-NxyrLDqbrXEeKQLu0vg4CQesf5ClgmIOgMdXErgXyxzmn8w9YaeeuVrh_Mt89HBVrKbzh2Bkvzje0Ld2aQnBLCw4aLN9vRdE-tvq-m5y6shZ52uRWM_DzkwiYnthF01BWqNPThODCJfoJM2zTbdY2xIUTXxSXno2749kaP2wjy7myIy1ZcB271PYGjj5JdjP2wKzc7OFSma9yd9-TuXLXUdSKv4btJIhYfMkHB_3u3101TpcXYXKW5twAiDE52VhV722sFc-vCH5rG31HIi-B5Qs8fGA2C4kdGdmVVdVy-5m0bLrqP6_18mdFHhFrinAzs9Afbh8qz_KJb_GDuHo88Kc1Ea_9Gh5WgnpgsSDF28X6mq3v4sDIoP5DpVsGi884MliGec5lXzNhpms4_ubkdavpVObEK-C16_lK4cagpOlPfqwpO9X7i53e-OCrnjTB8mbPPd0n9KkD50TFo20GDvVws1IDTGN4I-MbHocA4Y5HxAxszbC59bV-b2-l7_SmghRYLZ69vehXNep2H08qec9auTX80JZuHvGaJd0QmI2kNyiPJwOosq8KkTrbX3ZFAQIQSTJzfmR3hJJpsDUXkqTygAVeJN29w00SQ8Eue5jmX_JuQnW6hRpRXueAGyty7_XDYOi-XoYgrV1M0vOaBkO-QWZ2wtR8Gxbhh_V3OhMtxGHMBD1qkX2EED7KKXqY0xBIb32Q7-tPL-qcDBWBEhcOAQK9b7euoH5EHH4vubujgDzBNQCMS_9yPX1ODYrzTtXGf04mrP2BE_nuHuRxhFUlh5i5gWLdO1WIzFuB946GXiKKK7mMoXELAjnQLEkEWLFVMV2_OKoKksQkH68h3kjBmPHFQIjJFztP5lGetSsq0_2Ryugboyf3RpljK8HEbL7vJeKqq66MbZad3vW7Mhzi2Bdscs1Oltjp5iRKHUOria1Df8iGIBvX__vyzfFR8F4peQvWLkoipZ7Yy8jr-2e7PnAd1XWClgFdYMVHBk3PuFsMDroppFkX-Unq2efZIaYss60o66fLLHejRG9KmbMqBkkvxr3HXelyq-NPOscMLlfA7Q6KwkfkhmEnVuyY8aFjI1pOUJDinA6I5hC7P0piW3mL3UDd4vZTYo2c10lL1-dDlB4Q66WZzSFHPH4FJpIRpPcwzT1cwtHJg6BBEzZMUJie3sTEuzTuIMRKZcL1-bqx3a_vSQPNJaUEObQssKoLM8K-Ki6OMv9al9apn5p9Vs_BAZIw7dPnfT0gQW6yOzIAVDfAk1FrkIlwgLtY4xHqEdljTo5FBbVzho3tydBrDOOZji3HwMUqa9kDm-iMFEGMs5QIGWiP0uwbA-gNozYAPpRS2DSn98_uuFs0TL-Kfk-P149ndlvDphnF4dNpaRm0nt3rVK2X18boQxXddzzHihnv-D0TCm-4ESXNHHaTPKWpgCsD7hd-yr1qjO_mQXSMPO41cW0p6tdQGzvfyHLE0byjp1mi6-YR9r2hwUsCLsSRDTaFzbN9pkXE9dSOYiyND3SPc9-dxbr63eqXj3yUIPg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b36e0e1ad244-11194403','','','2025-02-17 17:12:57','2025-02-17 17:12:57','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42328',0,'cd-form-entry','',0),(42329,0,'2025-02-17 17:14:13','2025-02-17 17:14:13','{\"email\":\"ben.vandermeer@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"Sw12?\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6viwX4ycCTorNxm7YAnWYQ8_&amp;gclid=EAIaIQobChMIvOma_pnLiwMVIZJQBh31vi2qEAAYASAAEgJB-vD_BwE\",\"recaptcha_token\":\"03AFcWeA6J1Ke_ACmnMX33lGjDk_b2bJpz6aH8QINXIOYuNvYYDdhB6WUzCWgUCFu8fa4oKAJNrLbP4tKix95jw_xQJ4VWhCGJyiEZHnhD-_776MS79zQodWi_ePORmF9vdbEbfuNIIS5vXAU4nKwJAnQSionJ1rmXAKz3OCDZl3qcJyIt_CUXOJ2yqnfz4bJfclX2sVCd-elCVi1dgxs3XyXcVZnhH9o742c0mj4hx2AynCH4yedhxpM9RwtKU0wiYkP6DVlCszgJfQirGcSt7EHuR963E2tpRDm5PnDr7_oV3naKaoNipxhJ55lW8MrhkXgN8aqWvbesdq2PdpLYHdQtAcjzDVprrgFkaTawErf-beJy3TPwyKK7St8CYy-kx1gjdwDZO07COUdGd0RZGQzl9SDIhy46VpSd7at2Uxuvu9oE5Omyihpml2c5YLjNzquUVz0PndUxQLpIEY0EJCRq9tsQecFsiGkLOZFftAC7cFvHelr93HEsLiprr0OqLN8rQvFVnWQ-9DX4xVsmpn-pOFl_gDVWZq179hiCZXate37he1Il72pG1Ph4M0BnKxIH0SPJIkWzEF4Jb6_a4-PBVtBmztQBjjG7vsQvh_TEjXI1wtuJzqWSpnNJh604MnjBs0_xBTwqW2SsjGtkYqCSOlD3pGGA223G3SMyNLNptzKTNf3PSUgsNXpA_uYj0w30IQtRq0q88MaPMTOjEgZnVRQIjYyt-pXSJNSuZUjvpI9NoW0g8-z8W2hfLC8F1Aov6Yynve_bVKQv6CYMSrXSHVO2KncoMq0x52k96eiQ14gp59e3aXcNqbSYQUq6mY_0jf7vNYCu5Dspmj9pdeSHjxo0ICdzymHzszWf2OL2yPtVaquOHHmDaVwmZPz5AZ9PguE_Y08w-mMeCUy5IOs4DGAEeogcbKvjn-pJ8TCQonMizoAczZFrW6jaEBBwNiT0LosYGHxQixC8EBJTRoAF0Oj1f1v_sajt9rH0rWigZjYVXlqlT4-jX0XrzMqNbsNxz6Nxu01f14i4DgEM5aXFA6SZ3CSqRhLP-9m9ZoouQa3aJWRG91w3yM0DnXwWI3y9QsE_DxRp3GswaagizpLMivu1whMxNjmrf_hQj8yIroebJ2yI8un2FCi-HGDvBqyQRF2sPaMd8PVFvB971wkkbxhem8Vu31AvzC7fophkje-gh7Bplx3iM-0G67P76j3AARbYyvuz0lJLCGQy3PYo2m_GkK0YjL2cEA0pFTMFOO-YFFa6KSYdtDWL7bK8KlWPpnCPcBu5fVJHp7UdaMfe2zYELTgZJeoyHv6L_amX94F7vFseN_amCGuUKzUSX56xjfdaCu0izoEi2oOt9awEE2nA83UP5OHVKkmEpYag058KPOrMFqPSSAooJzGAcluMqHwRLb2JfZNbN8ATdLmGF191yq899CM-Xjs1GPveNYlzy3FlU-OCJjvkGgBdpAdRyrU8EAx4Vtk3uQNWv4BLCL4ff40xXyI-DMc_J9sE_UDJvjYYmy_wzAqdiKgHvOLHooy4Pxo5dfAvkqpmbGCgxKAlEk99ExHLY45ubpSBEgD65AH6ohY2mHUIRcA6M81AaHTqQ4fZfeObm7hPFcb3N7rjNuXeIs3ibQabq2IhqZwLebDh7HRu6fS5FgDuhh5obUAVy4pGc3l1BnmR5b6AyErcXEWK79pdtHkH03D6aIf2eMNSqsbJ7LTMVfbVkMqEhni4FRS0jucMQhuNa_ahSBHlNse-xSLDd0TFxnagzid8jGayTdEILDHpqqHS-cgI9fQtpvkwcq5jwtFRbetyzem7W08VEnEHn_PzlC3wqponOL2elps4DW_NNoo71jeZJOpa6EKO33_uSANvrNeZ6lYbst2TRIplLpKgWVfGRp0KJqx8oCZbq6rHDQ5uQJADIZEeoCuo3d-ghg9Eo_tREq13HNtbcI5PZ8xl0nz9k6MWQevaRjsS8CdRc6HplYYGCJtBMCkJgeqta32bzSoBgUBAklphTdhym-s6Z3x2PSiNnZLdAUxewmE8qboZEdo5pnDH8RbW45g8xndPe4WTAcF84sMaTM90jPhfN4tJ8ZZlBwHv3YQqMMHLqRVgxdpdj1mNXodJVQrQkYVNLkRv1w_yRQQSlZY7Mh3vx0cWRi9uZKgnFa4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b36e408d4c16-53546441','','','2025-02-17 17:14:13','2025-02-17 17:14:13','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42329',0,'cd-form-entry','',0),(42330,0,'2025-02-17 17:22:55','2025-02-17 17:22:55','{\"firstname\":\"Andy\",\"lastname\":\"McMahon\",\"email\":\"andymcmahon2015@icloud.com\",\"contactnumber\":\"07506836856\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA2cu9BhBhEiwAft6IxGme7wtd2-dSQa9C3EnOAFJbxS_ONzsnSAnGukswvzMttWkD-PmwuBoCPYIQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4YiwTucA2meC-nTLawC0Be5v1SHkALHlQsiw-7mMpSDN8tuIawoopnqjlTPnAHqXPEXA4-gA62gTVPfqrzT5dYj7sZN5JsYhQdlcEWQ57iMKKvju2pUAVu_ky05RRLa1A-ntwDIiUCZQRAGy3gzZWE7C2DwLVybtmhtZRjsF_sc-3JcsZG46Qf1DmWUjq9QUVWUgf81yD6Ss1o3thGMlaRfKZggCbi50tM1lbNZ1pXX7ph3-flWWsxUhjO1coW0WETnTBgXvdWlf1ii6VTT00qRX0X_gD01Tt25xT6ifV8hw_BIC-d1ty82enqlDaxok_Jlxd_RjMhqHAcb1GG1HgELVfHy-owqy2AeRdUV0WkOdKogwWV2Ha4J83WzVfuEaR21H5TuvQuJa0ZWHiBBBk-WG0JNEn3L1TXrNFu_6S2FUlDW06fXySQjrd9coLm6KhXEkA3j8OFy0vvzV_VGHcISU_Nd6GwKiXzXLuvo5kFBQGMUh8W5g3lHayU9EuxUk0ENm5FgMcmnMegBsjpGNZ0oEMWiRs-MD5TaxYJkbJOvqv5LNXzrU4HNiNFZJPTtD0vd4pCkgj2DfOnlMb3vwKCPuMZOlbdpKwhJS227xoaxX4vIlxa5yxZBAdWA3nN6kIlAUbzvz0oKEItvEuI9AmHcepIZ6SD-d53Gx-gKPoHIBbxuLVF4F92wyOc25HD8D2mB5Q0-jBSZ1dtM1gx_pkyLWadx-E2njXnnkxT7octtCwB-3nAqUzx_s-CpbyrjyX4TxDVGx4E2e_bKqXz6Ao_r3JpSRMhjyzvpfH-vXktSjv1TKdf1llaKJNYpV-HXiNYTyPV5tgib7r6etbbldRuvNTi17lMuDQcTT_Bi9NjqSBQydiCU1ayC_FmGG1bU9alnpYhSsEnp1f7EdKZtmY30134ltG9bzV__n3mJOqu6-mY_IqiidUJosCt8oQBJivwF0yAefBcheVlZZ6yczdGIuUB_RlWXeuu_ADNpU59eAhrst_JNW8iGLjonb5fZyJqw-iP0IKWpXVBU5WCS03-04vM0rqKFq0mGM1UGJIYMwZC_GyfmHIwPugwimPLEjnPMm4zh-e6SrX5hvKxZLzBsYzC2cTWSmzmfym8-owc_RVJjx8EcEZu7TsBO017K9pnq9Za4V5oeyFU_O_re3wWUrThMDDKgjhLmmPtzev1OS2eWRmzgaX7Lk9G3IhvV8i1DzBBAh6AMWDiEFigAcuik-bv_jEHjsns-4RjxZs7AwgDYrMytkCZ-VpGu3rjRCvwDy78JN2hBr3zHeBb8N3wyWigr26ZmzSvXiM4KJ-8Jo719n-Xym0qwUFMXmKzIXv_WZ4H9yuQ3b2upSeE2wFOn-7J0DPfXJmW4ofB4DTPkUgwKKXP0sljjecQkQmppy51mpksIHT0yRYazOiT9zJ4IPyvGqzSniKVGx_uYYEwVaJqmBBGWhOh1vhw6tEKuczZEFFHxp4qf0Dv42UBZW_Ob6pzw0ULYxcvCnUoh_XpwmojpsnrSWJsO2lZl_4Ywg6nOIRnBPBarZnTSfJHIvEx7ATZekieezGV1zzUpou1EE5pRnGwDgFG2hGYozSmnyH7jsT34dFJVJWg2jh-vv76EcMm0yWvEt9vhYra6v0SOUjhGaeSgH0Mz699KIczor7K_m7hR2auzatmmhYYJ1Fo7Mi1YRn-oNQvxMYAz7Mg_Eir-bVsxm3paU5SmUkhhC7_eRgC6MntmtGbS6jc_u3kUaH4SzcQWuGawLXciEvmSBmHpcm7YvgAlMNiOvyvMI01NNCRhJD_ol70XQtlXYzPFUKOXeR5htO5XFd5ZrTwzF4FqY-AnPKIWbHk3s0-kmlQ8MpGwiuV4mjuMOmqGhJhV5QxA4G6rlDbr2Wn80UdazxetuSBbRajmBDNHnemm-xxONZRVcfFGM9zENAlM0PyE_Rw9ugG-t8womT7EMwSOjzBtjQHhnXCXfRwDfXKxToIzDI4agq_91DXfJyQV9CER-fQGBKTqOSq4AT4Qp4tBW2a77NdU0kfiKD-KXh9vcaFlp7J\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b3705fc01420-75779213','','','2025-02-17 17:22:55','2025-02-17 17:22:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42330',0,'cd-form-entry','',0),(42331,0,'2025-02-17 17:30:36','2025-02-17 17:30:36','{\"firstname\":\"jo\",\"lastname\":\"sekieta\",\"email\":\"hello@joannamassages.com\",\"contactnumber\":\"07771872672\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vz_ezGxfkRjmRTIU_72VQ6s&amp;gclid=CjwKCAiA2cu9BhBhEiwAft6IxHW8Id0InLUQYajCrDGYDfmmihKtDMv0Qv1z3sfdn3uOd6MWHAHIKxoCgTEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA62vFx5PGKta7CBdt2cSFbkGNCtPHSUQLAE5TC8gwX8s7JY_OZYI9S10DSJX5xubuWAWysRPNn64TMnpFdeFSouLKLvfIzWf_DF6u0gdW2jx3ctMFkZw5UxKWa1M5_1KL5yvwJRCtHycXQz0NNN1XmPAlCfkLtPZgHFRRzNjJqA2QV6rihWdHDPW9cW_YmQWe7bdsBRWfAvyEahWo_CyjtQlBejYwMXcH31dOFcQenE6aXa9wQLpg2PMNEI-QQa-dEyzhrHuORduAwASm5fN-AOiyExdY55Bq1kKzuFsYc4AxUHS5Z-bH4BbBrdgTAJjpE8Eo5A9qe5or_E0LK_bRvsjWgPJQ6XX326C61Qb8E_k3_uWUCNKVud-82hrEnhT3EJUel5U-pXQ3K562mOsRfLJm8nP7gxtKOJLdOYLKS1aAOLVvpj94u3Od99HvycswAThLqAGHBu3zNzrJiz5EQ9wAukimy1zGg5HFM2Gmk6JwiEdr8X_6qrSCVmSUzuPjktWDtiOyJDflnGeiC1hSmqsAVBcizp4JUkf0F_gUiiwGAsxwCzjovnH9LafCxeJ4IfLLXEMWE8pyu1rYA6iRAbjHbIILgRsmCgTGHyIRYm9qwSywadgmqL5dePp2CMlvIkkrldFRniN4QVOIi0fj_v6KSGbkVEAYj24nu9ems4Rb3emuO0EibgJBg3Qq8eJbuO0BL2ygCLc40FL4CaZVUS1cUpNsQYM7FP3wfHumkrRrVYVqCdU9Qx-FD8zG5brSzVhY-QgF7OaJJIqDjn-M29twE4nA-OdGEmU06YAZwDL-J5jkIX27uRUC_rnvS9mr6Xv7OjMmnhz7hVubApi9AIiAQvXbIqd9Fq7s9p5oO0ntfsOzc2212QYiQ90IxTnO8KUipJpqvdBXMJu1h0ubw5jO5mkKS2XkDXU1g-1_kN2GmDvXbKnhcPxTBGuPXmZBnbbHNLjLv9mV0kHh4vocbxMbBi4pK_hE4yRxw9t6HIBQkLDuqPAmc1eKr3emx26unV5X_sExp4sNkhPsn_48xZDuKfvBUWQ082pnXlRq9E8VvJD2A-o_0uKxHEddY58Q2R0PprCVJFc7aw1PII968Scm7KkNzTuweO6rFklJLSjXFbbq7G9EpAsElDtiJHMUEc2UD-RUmwvk_FCYVQP8JKIAraOtfz-Ogek-xJrpEytTJlKamix2dtagiCLODij4vtFFID8h2bK0CUKiMIzoloG3hoBNtb8lawqvZSYj4KnSf8KljPq1tKWKRmFx0bHl6icMj0pN_m1X6_aZC4jx2_5u1hLCNof9Hwpx0SnTIfb8bE4AcJdekKtrDqSNorPcwQ5GYB2vArgNzbACVUvR-pDhzRignM-DgD1wMrsjAlTMts8WboEwb4h_P1SZLtabNbOIr_pySExH-52CeQ2skn7tm1dtYycE0IAwnz5lOGxneNbbKl9ClNYlLJNtOC1myx1s8O9o58OWZ1GFVEEt46ov_hU1CTYWb9ic4cJrok74VgHdXOSXFXy7ga2WGx3Vx-EVEmOA8bDcjkZDwU3KBzGFKeRNRj4r2hV-ETgfAku3F142n2xZF0F57jaTq8x8fN5RDo5NucExCc1nL6IJNT3rmcKycpfFmaSAUkRXR9HXl2rh1NccJhYDsiyLW4L-0INkPxd4ezOv6yi_Yi4srAwgPicv4jPusQ0ApCZu_abk3_W4fNf9G41KNBSZ3bk3BWMEHJFJ1LbW8YZILWMQqaG9CTY7RjExrmKD2kj4t43BSSdLgqWGmS9jbXuyxaYwTbkVynM6jtmh0aPJOkHjDaC8YXg8_igmwKW1aKFqJkXSt-6EFergplYgWkYVkKBVqrLkmbSMbA_XfERWP7Z6Nr8bF-1FwqzzgcHIJJvyo7ongE9a3N-LAXaf72lmLjBZYLbO2Zpy2f1izV5P3pcml4-_HWZdDSKkxzxEXKMtT19PNckTXrsPHYhVtuoM8Oen4SlFgkVXXGQpXsuIjvP95qIAbqopxfzWqXut8Mu5zvwDvSIwTMt-xG1OpYgrCUvrztzar-YfzUtdMp75DV_Dbh8TKohSNHF1Buxhz74N8744uQe32nZb9OGsOuIaI5FOcYFNoaY9Rmksz2d6e_H6GB8od1m5b1uEWizJ7K5qt1XQBiYxLLMPydRUaFhqSZO3gWw202gyiEgYi2M-v8z59TaiBR2GdZxjDzMod02l5rAhSyITcwKrPGd1djoJFp_xOwC88KNSJQl5Y4j-P0XCZlYKcYjs8hFBYp3p89gkHCvAnHwDA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b37219610d22-84819875','','','2025-02-17 17:30:36','2025-02-17 17:30:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42331',0,'cd-form-entry','',0),(42332,0,'2025-02-17 17:36:10','2025-02-17 17:36:10','{\"email\":\"hello@joannamassages.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"2\",\"regionlive\":\"6\",\"currentpostcode\":\"e12 9dn\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vz_ezGxfkRjmRTIU_72VQ6s&amp;gclid=CjwKCAiA2cu9BhBhEiwAft6IxHW8Id0InLUQYajCrDGYDfmmihKtDMv0Qv1z3sfdn3uOd6MWHAHIKxoCgTEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4VrjTEtmoMJsV2u_7KZ7RQjs0dOgUnvrhLu6BHM_Z8UxBu5YMar1gmCo6USH5rgy3m9LU96kApd297BPv4a0roYVgj84y_eRF1949cnIc3gE0YcaiCLgSjD95-smRwStPeaMTf38kmsmxQb1d1KC0ab8nPeyfDcFgh6IzU1QZeICtmmWxAee4g5uwxllW2lPoR9L7Il2JbD6PlzRWtdPx7YUqJkwc6D0_g3DSXcdaisUEncLDRzKTMmwoOii8YoxbKPpIDuS_Bjdxnp1wGR4ZviZmTZLRHvWhOrKFRssQ5y0k4DJWrh9oVGd2-0NnKbCcNCcZQTPHqgC0-Bnn7p51CQa13vyc6xFjpEYWtVovrcN7ty_PFGxxvGJRV2pvXrtN-LW06Tw0TfZ1f_Skj0l3_hqESWDYUlUEtQYMUQa0IeOdh576dnwGX61EsM_gztuDtCa3W3iphpu7cevvHSf0vbCIYtSifMwbRURWHzbE7PHJ01R5IzB5d9E_HS4-LCZI2pr9mDZ3PidmmYpp3MzN-azktjYwyApp53-KZwkpIaOEUsNVJN1h622K2O1CC6tze6S7FRMhfhh20M9LuAV6JhC1cnqboJy9Jy8pByrPGdgdBYAKscM_78Lh4TKVLEHEFG90qhfj3ollxFC1W5K59Pnx2RQ0bA6KvG1-30N_TlSUkpWyJvUEl5G0Bpt3L_DKWV4wG8C6ZilZe_CDi8yCUmIIwZ9md39KxDxdsm3wCE0Ojye6bmNf_mP-dAlc30UX4Rn8eVxv5yuc7JQ9Yo-I7yinxkBUrgbmS2IROP1QEbVR4p0m5WWCKtuLy0Vs7rr2Qlgnw4pPZpP3mIS416XgR49BfpjER9FL27hOfA6WCIvvk6krmERiJQNb4om2PZWWVa6BVosHj1eewZZhroRnmbc4v4rgRW0LGY8Bf03_s2oCjDL1qBqy5rHmpPSJvZsaQP3faiXlAGfjOJxulSgJ46AGOY-N80m0mtj7YmcL3fVjoAOEWjOnnykJT2qO4g5n1j4LMpll_TIcn3JmVXXk8XW8hOHOYfGaFYTW-6fmhwDviY11ZuenQq4eEtdr1da8VxsYiXFwRJUzcDJp_gRyUOHJT0KJBbSyUeOra3PtmKN5yTg4n7_GKZxObkdmTNifVrJrmkm1ERP-t0I_2hiPNVANjGT2G6nB9F6RLUDTzijEOY6sMh4oC2x7Tk8-hY3prlftnk_UnFIjpDShGpMxXVNa4wBzDl3f2hCAW9lCtbkVetanrwguFAM4GJyDIh-_4LTKnZWqqIHYSG8l9i97yH1mipTshNUTsyqqO1PXeQQF2HvH5DBeXM76mHOzU_8IHAhgTbQrBXCgT8MtUEu8XqE9KOZm0zJpctZSR9XbWrtjj6Jrq9kqFqcOfZyA8EBbsfMvcU0_qMUX0KMrn6_cQ7yru3xB10dCbxGKSdF8anEdFEL8BjttiG0SLmmjEyz5lEqLRlPmZ92RJ8Xk-X7yei1vL1rcPWDWCNFAUQwPjsmjZl8SA6vS8eUujhhjK9Kg4vdSSKDpgfUyz9edw_PbrMVIBT9xwF9-jOqgouBph6iCV23qTtQXaW5FCIW7q8eKCTJSrItGp0on2zAkd4ZOZ47K0QUiryQ_10PEKO0eXtGMbwuwUOIHM6ANez8vFU_ywlF7F0R87bK2Ly4POUJlMgydXX_igE_vvti8rbo19udmf4UmabG-CQqNDgZeVfjeowinU86ki7JKq8m7gtvkeJ6sZDTMKNmAemPoJ5VRgqhB1WpAH232WCahPsYgPLfqxCWrR6WU19N41tx6l-Bbd5cv4exHkn4RrfBGnlyWi7mBwLYi3tI4ARkVZW-X9wCY_Re59IBOKffw8N7HCxAgozZPWOky0BvfiGzI7NES2Ee8QOe-CcX-PCdcN5QMsar1Lcrdfte-VOCvOSkJXZlAOwAQfquGnbTyc_MtCuA92bsggkWVJVj9IvkXL1npoSn-fdNXABufU-9Hak5_8X2hspIh1QOVczprbcYFS7Q4zCPTRrJvmi987AgvWDGuOS7rJ6bDs1U3tbRX8tGHsyzTj7TbOPuj9gsw5kKvgAGfi-njP5RoLsG_NwzSYBbJNFEWNk0pq9dJeHcIRH-vMh3f0TV9EGugpWhfI3OfHUHHQCVeovvuekyJQQTZptPkwT_tx1rpXiI8eSWxsGSnpmWE1a62rMucc5gYl4wWECh3aW9CT8M-aOKjGrJkiWHvNf2NuoKfU0yoXk_Xr-sp0JrtQpggi14uOefvc_6E1F3BWSt0y_8vrvTgWZNcU4Xr6SdIP29Wb\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b3736b040d45-75081956','','','2025-02-17 17:36:10','2025-02-17 17:36:10','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42332',0,'cd-form-entry','',0),(42333,0,'2025-02-17 18:18:48','2025-02-17 18:18:48','{\"firstname\":\"Joanna\",\"lastname\":\"Foulser\",\"email\":\"jofoulser@aol.com\",\"contactnumber\":\"07791666467\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA2cu9BhBhEiwAft6IxJKzv_m4OC3S_NPcA9sxzaEOLiQ26XBdWtQf-PL8WV7V7DYB0o9WIRoCW-0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4w6O40gJMWPCjav3ZXvSZKnZO9-bJS0yr8CFsHayN-A4i6jLJS8JljlHGkDfsqoPTJbC_M2macT1hJUCJFdhW__rbZTth0OQ8mGCgvTCuMB-qO_CIbIYwvWpCl1_Y5lWvlrBw2GKIDshlB0Q3er3atUD4CVzTFhoyPhcJM7B5tHEJY1RoEFE4p0_s-PMsyXUjOryUJ81uLgR0_fohCXhCJ-_lnLhcXgo1KpXIfxuzoenw-onmrqp37BUYTknPWSssGVV-ztJLuaS9E6YFLaxjGB4r56_dlXYSqyC2CQ58dkZkItw1-KDTBAiPP5tln2WbdEy04kS4QJmsQJC-Kphpjnd1V_nI8Ut5y6QdlWkmgNzesp5aHXh4Ab1odCagBXMO_WrcEZ6qKgCL70CHPYKBI_pmDB3OzuOb9Bq81ZlQ7CdENqTeoJJsJ5QgUKC94BCf7VRlTZwYOn_G-ZOwDFZ0KZrJf4RTaWDxmIuXlhklFoeM17uWwkkdBIb8VIRkHqc4e87PaKnobDDYdPtSNcP1T1HNPB5VJQwY5tpEBoyetldSDChWaljCQKMiCa_fmId-87QSkNzIZ0A14F8I_AvSedKitHzcdIw_1SEyspFPIziViRIbXEWrthdIuxPY4CLlOtYApoac_HczfteyMMzWF6ih9jcpgJUJFgpLJBZhqHHqEOg-EOL1RIBxC4ppL1Qrq-tMt-JczXEysiXgiBrS2KrS4Z8k59VPrqUQ22JSV9gxc4TzeRkUsj23kTj-ebxyzJeu0Yg0UDHbVF5Gsc9csjOaFiQxvIJdZJaxyLYlwia-UdY0sXygTd3uRHlEzpK1HvqcbdX3DaEHhplOPi7xz4fvPrrJnERKm7OAz9luIUrhXjbcZIeqvSdZWiNBmQIw_q5-eaaSYcxG2iS9NBNN7OjeFugAeFi2UfL6Q8ybOM-2amEOPfwzSIfn9e80SYp7CmG92OfBDm_J6zk0eV2bRt5fLw2pXruOpx499r9l0-MvPzxbpmSfQAYgYsg24X8Un_qs-1QaxBtZ8l-G4tEunNr9Ey8tuHMw6qOLYa1fLrr3sPwIx2GGmm_BdJ781LaSZCKyeV7S6Ln0WmuJbgW5IiZytnaLNwMyvuLCNxAKh10HpBEKbg4St925dpuzZcQlWQ0tDkUdSCy9xNUeiyfHJcYhRGmSh4jb2pCUOiwynqtVx080ZjyTc3atNltKcckEnm_faFrpKtvMmKiWSVmSgQKbwSbmAHlk9tinpuf0edOxJ-RP1GoTEUrpVg8zLpumclPnTeWWdkRi2mbr70kV0G_JWQfDmbsRJfQ68b-S4GZBJjQ-HqYl6xQdHUbidC316fKJwaaUb50X8Zx7VWHkVMSfd58sAuoRGNIAOv7SKcOffEO2pPx-zU-EGg7w9tMOtHMzOHrIEuvWpKbzTOWNISo7zaSxkXeT4C7XD36Z8BgEHFH84-lek6K5AKzE6e2_Csg03YnrCiaLCbuPNRe0-xKMwZFSNM9x5EZOIrro_g1jOVRZ2ObUM6Q4o_r_9q9Ki-Nt2ZU3g0kqUvBAA8cLcFzqVofKDnVbL8mj5AU1KD6iv3QAliTSbUBVW52paO63ZWs-0f2HPeaCrRbI9VWXwjnQ1OnqvS4EuaOgQRRUnKR--NXkOYG_7sK-UgO4LAp7jC9ACahQMhIyeYl8FCMjfIQJSj1QGtuBq1Mr8TLaWcGXjivENNjHf7pTeKhVuLOiJh21X_iGUzlifX_0a1zYJTStcBATmLQlulymzZqsDCrQgh9CWMpnSW4errHyJxf62GmXcuJ_wmTFAX8ntCCePOXRIm5HBszfXqzrgfz77gXtSTKyhhmZn50gn-s_v5aCCPhOP3yIeKkWuwEuv0AUV8kGGxY3Es3lsBK85LJxF_GE4MBYMRTeG5XyYJqaRoGGi88toqC9kmSbQoJbJM7vA0IkxNDCzWCvoJ9KCmpJ8POAP7-ry-0UwQQKYxdaIAusCJYrDXr65sFIUwhrzIx4tTs4qNH1-9N-WWKJx_TKvtH7qcMibVYFiZvY-iSfGuyLO2etj3XWgZ2BVNPcUHbZTND-7C7kxE85k_Tsrs92oC0NPNCR6CFy4vs5T-ckXcTf5CYuoVfwto9cLcxSMlQzjib-FvDJkbmEA56eny54Kh6bYZD6v0uABqWvoOPbWXv6VE_geAX0bCTrBy9FFW1Bnylgd05DZIb-338OHjJM7z8O0XhnhhQ3ci54mHOQBytLIumUxlmIKTjJY7mpQ-VT07upAD4YgbX7tBitOWlVDheLskNP0joy22FUQPwAGZAje60YEF2TJ_58MrlwRpErPijx9HEs0h1qujljqcyHUqLvYf24\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b37d72167c33-66075280','','','2025-02-17 18:18:48','2025-02-17 18:18:48','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42333',0,'cd-form-entry','',0),(42334,0,'2025-02-17 18:20:18','2025-02-17 18:20:18','{\"email\":\"jofoulser@aol.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"CB11 3JR\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA2cu9BhBhEiwAft6IxJKzv_m4OC3S_NPcA9sxzaEOLiQ26XBdWtQf-PL8WV7V7DYB0o9WIRoCW-0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6nY-ZmofZWO55ddFt4Fo4R77D2Ca9eW4AdxLtE0YYPgJZE9q_NP83Z1C9fRLlGAvdB-7_PahYzz7XcdRiaHwfWSeJ81ZNxvpDUoFwcTnMLwkpHDnE__zrtcUspivPIxyGtW5pg4JfmjyMt9Pxe1Hz2gG4ZRe6NDemd_8JLpoZA0g_q0DTIqp5cAnV1Yuo3_kDtZTaOwfz1nW8E8B7gp4bxOZPIbWU6W1ux0nkxzkXUBUg8DVQGAzcf_rV_QeAYrha0-TuATTjPlrByiW22EqJErGkWKsF1bUxTi8Dp3qetBpNay9MDnqlbVKlQV-epFkhpAlAqt-zpD_u1qBaXozdtldIl8-0H9ChIBAO1OZzrPPTYumEyhE_LcuHoCYc68oZfqrg2nlui6O3OtDjzBflIdzFIOH1fES5czQLjvwxxGj29pK4amMJbdq0kbUzSRYPFTyffBtPXUQYa9jixOQHIog1RWEL6sSLUt6Pqn8ozj-CquNpQGE4Ejyc_w2X8ZMSKIz7BrMNIM8sQFQSKKxad75XDu8f12FjA6UWd580HrkwbnCJcNn9C-mYW2fJfcw3T9fvsNt3KyqxNSyOCC-Xo9bM85rAwH4wgs4yJiB1dWa5uu28TOfqBec0hzi-6GTiCe_WTSBf1IcZIlUKwoYyYx9kOUOQdqp4ll4KLgP6L0CC7iqp0zkAYLrUrjENn64JbPKFZDeytP9QSurqaLFe50KUO4jMUMnk4R5ngCccp1JyxJYAUhtU715xQI2Nr1jQccep8ogIZYSGwBeOrNp1A8H20T56uJw-sH1xRinJ6LRkZNEYt_pOcxlUE18sBhDGkWQrIKg3ZBMMp8dXMMiupnfXx-_KByEVC8j6iZxsSAr6zMFnGPdTUsDz-Vami6ahAljR7RA6Bpicjk_h6A6Z3m46L7ZYuk4519rbD1keDHfUCTQPPp2ckb19PTASKxGaoHf7OZusbmAeC2migWm6Rl2v_JJvwe2tL_KiaP5UZjh6MarcmJeGWgB53l20FRFdaE2v7FhYpsFEgxOY1cQJ7qmbrScTbYtyjkM0lLUHCBrwWF2Y5xRely8zsMV4P2aA5x1T1CFd0GdSHe_lJVMhVBJbTPmL5KetC7wuRXc85K5Hc6q66JJymjXVXYewb4p42iMkk1QCblAo8oSy-58PNr0u1zU_Vq-_Dn3kddi2mIOoGR8u8RO397tphVZD8u13IHlJpZzls22Fgepp2LzBstjFVAj6bhZlSGesLXpVHvIxQIsZ3KfWrlDNDKdoTFNzV4ErDyunadFrJfDGPedqtc24nZ4A6EOWBdRUTHdAYx2pAsKKAy1AV862ddWqYepXDpX-38bgBMbfFZSEOoYaYKfxgUUHYi_vfDDpf1wWrSHC8SLveP70NHqGBnBbqmRyBSfoQlbcI8GT15T3sSX2Vge_u3ZCCrpJ554Q-csDc5VjKsscnEQt8-Y6UWW__TjNodW6hS9kDLMPAtLlmpFCkICS1rqotuc7kDIzGjUS5kMiA_cLV7jgY5S7vh6qOmOG0STXPo4afZtvIHgEWfuDgaHd3iSd__tUILaj7CVzjPvLZGnsVGyldPx47v4QHzl8UOBfh8tmdKuKBaQfaLiLBzRuwEDR55EwunntWOLYr6aNyvR6ZtAXnJBuU-ykZfKMA8c4BQRLTv3nEg9FAC71g9MulvqhFvo-n6D9L-8jq4qgCJ22RRyhh7IChwwy7nnM1xJPkOKKdBQBtvClMtXYztihqFNeklSQCp5Y5gFi3KjoE4BH5iBwIXZkiXpQk_QBjso63rdy1KrWsRJyIEwBZQYMKJC9bO1MkYTCCJunddbTnhWdZ69ajqqWRI5DLrbwODNo84CTF_dm1HhA_b1t8SQpGWYrhag95fV52J2a9z9jEMLKxXdRhVlmNsVE-VQ-jFS-VTQARGKohCdMJ7vGrzCFAdetDFYwfDYPS8nXaTpy_jTF2u0-3uR8hPKHo11uTJElKvtpKQ_ChWlltu1rI_KyqHrD_p6kpHWBJTQqPo6-ELN5iAuiyeJ5t7V45wO1cJg8mUvXgjXIgci1V_AjnSA8vQKfxRBm5x561aj2_ut2Dc3wQlnCo32PpvgvSdyHGoxvB7Wlw7fUBvkkORlYqv6wQnUWQnkFbNnOfILhDuT39Tjf8BA4kRzdmSTWU7eIaC0F-yI2i6ls3E4VGSlNegl7fUNryEYRJ5lxus9fXQr0jIBC9ohazhBsQh7rCWAXixYVavpKKaR_tuciQcsbsqYfK1VX1m7_XuwIFTByRISxSKgvVGTdpowHn1WuuivxlSYVwdpPahweru3opaW6_XnwyLDLoaCNlicrLsGkvCQP2ALM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b37db2521870-29794220','','','2025-02-17 18:20:18','2025-02-17 18:20:18','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42334',0,'cd-form-entry','',0),(42335,0,'2025-02-18 02:27:04','2025-02-18 02:27:04','{\"firstname\":\"L\",\"lastname\":\"M\",\"email\":\"lee.mayes@outlook.com\",\"contactnumber\":\"5720613549\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/\",\"recaptcha_token\":\"03AFcWeA6hImFz_wT9kB9nPjqdxB0NUe6653bkiax0C6vm46OrRKvr6mMr1b5fUkI559mp4KQKItL1WygVCGmPm3hOSn0XmzfsKir9Ez6g0LHWx7xbwSaitFigyiNRqEhzdXEex1dEkuQvF9_2B2zwxKF-vMjJUYLCRAQwGBLfx55Z4-hwr_1ihWrkGmiXkPqyw-0OD-jo-lt8TIkOGzjWDElVo-7DFitGL9GdxfcNCTX0iBRuobHwvrmV6abGRdk1ychUwCrZC26FMIJnASJw2Gc04fyEnfRHnvpoNmiEHZWxfNAOLiPqnEVaxWbgrXB6l4P_ZFG2Q70jP-1fBYwtIdAwa_EgxzoVQV2a2OXd5bNj6HFniZNDOS0TxdsD7UFLhiYA2Dx4cbn8GrITzczl08Oi95swj1h9jUrIPVDgntrBepsKITON3E9J1L4KTsacxfSvJmrBIacYFQy8C1VcPgBPO_6grUwRpQd20wijt6nFQW3B370jOSg5hPjVh1Qv821Hy-4HyOnxiN7CBDBIcEmyc6nL1ZPbx0wAO7RQtYON7yBpSXXRg2TFpAD6WSSJHJOJbeb-zWOnCZsciMpYQ1_B0UreLQIXpLc73SC8C6zZAczxc-ULgQLH7C5wGQDxmDI1GqNO419uiBmtR-IwBRtCtB7M8zTTmDLuXUGNANQ2dnEuVxGP_sbOIsSebubXVuUQ9C_ZaS9YaoYQSGWxMnaLCJHcWO0dEqnicu0RTqAiM6Q_u-aN0L8LhZqN9EEnBhShMlTZOlqkpBkRvpbwhod27hGup_Fd9cUA0Po_x4nCYzq2cAQ5BYLZIJAxpMw7WcA5mQ9xkrtqyrM-Zc2KgGNbtb3G3U8mLLvRQzoLrSUdD9MksNNCVR5ZodXq-f7doNUjF0D3yBrRH81oLcIjfgHyzN4Wz6RnlxPasIdXrbFX3mbedH6EtHL5Im5dfpfV8NepE1bhnHkB-U6xc41zl3R9XlwA5p8IJBJR3APVOvVgXK1XXE4twMhQCEbmhWTBI1jy52mH8YgdX3a7137MRvm0tbghoOBDIRLDyMKqs7SpGJ9UTNIf_-DN7IZbBbBTg2ZNXoxTldN4bVePucj0z_ZY0Cxg0nw1QALYfvEZIjDHJAYSOkFu4PtSg0OixZao7DGra-aG3rae9qm84FRtGsxFt1F2OPqsGm5wNsyEWuS10bp4OiLGHAE-8g_XKojed6cBb_NpY1PvAmo3aB6jDmgOUHRLWB__8_Ay3Eluw4K66r88HJwc8VWMSCA5qJHgLlOJAMez2pNXmYyajl6VK58muKSm6raUm18mTrluF6PoXmCxoTCVQjG3NwItuRGGD5mROZ9-QuGj7ZwUnxdOy7_tUr6fkCNu-b8AnPxjgHK7InD9Pt60awJapfw0hgu81C6w_rBH4ebrOZMQ34_21TwB-ZtvG5Tj0fWMP8Aqpduk0mUPdQMuxJKmm1JWAhbRDSib3hgitGHdri4N4hL00WD75H9LILYmbtYNXDINi7tfoW6tLbLin8vAwdfNV_Bp78YwOh1VPDamqma1SxfqGBeWZzUwDVOskxJ0Mr8GmywZ4zpmTHFcmxA1ajf6Znxj_RFK0NtWIZgGULeP0Z0qgnOD4OlMmWjls6-0th2lR9SieoC_EpCPJY5eG8BF7gRKs-Qc-B2EKwKCK1qkc4whFY_kg4AWlXNKjPVOmQEeWydI3T0Pm6z3J2TGZ_l4tIwej297P50KAmqR1Eg7Or9g7AlH5F0oIwzYyosFVz6A3EOILy2uGXSFPeJ3itp4kA5drQpQbE5Vdaz-oloafvR03B66QuN-FeRnzA-CkcYNaw8IZx10aRaWuZ0NHgPaWEVzQecFDPci5uhyFRSB4M0tfF9c1CitjCCHWF43IUQhy6_OELX64y5Nt85MzFuMSANqCaxPmtq8SeTNaTA1YHGjZN4TERPSQXMBpwOLmJh2mseZBRFP45qKYnawr26Uw5d8KYMdiSqCDld_jJrJI6IbGLtzfwtId_v0Ab36UuV4YfFNfWmhGWywxHn60mOX3HtktpxFuS0I0RMPmCZsXOVV61opYwXnDQm1LkP2sEUgvhtfAG26jU6TDQUt85lhjpkOzx0OX_4BS_geceNKo3UahSOO-QWtnubD8dyEHFbO1hedlf_9dEVvm5MJvV0eiGbBuAEAUvmSMXFEKfagVrIwIrQwDCN48N6zC4ZkHmz4UzBr4iB8HQlYm-GMAxULuTfwjnV_c79WOcYuhYJE8OcOHtCKXc0o_rMiuV786AILIICAqa0OnxXbwzzFxmKg4u75dZ19G7lQvTP-\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b3efe110b2e1-03272656','','','2025-02-18 02:27:04','2025-02-18 02:27:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42335',0,'cd-form-entry','',0),(42336,0,'2025-02-18 14:37:36','2025-02-18 14:37:36','{\"firstname\":\"Eleanor\",\"lastname\":\"Beaman-Brinklow\",\"email\":\"ellybb88@gmail.com\",\"contactnumber\":\"07985619836\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA_NC9BhCkARIsABSnSTZw3rhEMW0xYT80ImeUHFI4SWmKBUihiToSL4FbhqHFYqYDCwKF0RoaAoSsEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6ky6-Dx74PSYCKD3a4jjGEtt5LjLNURkU-qtcufrdmva5avJjoOl1j1Vd02vqRqn53rReOaXxoEArgXgz-N9sWvUR5xk1N3IAh_-9q-RkOcJQs4Sn9yY3zD9pHxAVdyAmsvXx_6nBzbwOmwPrKeo7mQGC3h3BCJCcOf1toYy9BglNDa68k9wIP74ZiqT9ARL9fOP0wf0D_uQnd3fFpMfhAXySa_iSAb9P3paMmfdF_mFTHVKhlJHMWO4ML7b65TAkETIFhgcqvQ95hnvkSPOyCzpTQpF5Yo4v7AVB7C3y1N6cyXuBcIYUkyHsIqfmGmYcWYnC6XrPrJQG5yVp-1haOZaQpHC62PkBEa2a8HlgYf7aHLs_dvAnGBC436Hf9q43-huJxWamSp4je03CkHlxBNgonovwPkEfcMc5wqcWdhaBmcdxozW_7xsG9F6rdX6W94Z9u2k_xrMQ5jEgQ2sW5ZLaxJXVwTztVYyJOO-jTgHhCMpkl1ZOqVpOfqS2TYXWVQzFkEkCzZpVWBzgFA3z9B0ziZibilCBBkEzFcyRJUG2KCtyycqvm-aPU_z5PBmoPYNDubimk76vR3jOhONQmHBVZv--Z8uzjLGrCKLQgOyfJOP_McGWNnkIv9y-fbWXPL6HNnlcfbHW5frke_R38XH4ejq3WGa4GYeWdQCYW562NSPICpR2IjaxBvxSZ2LZCmR52m9R7E6bv6eNH2u-BEbq298uAF6uOKfgzPzNVDjmIa-c7SKGQmfIVa6A-fTAQNg3B4oVU-Gm3sBCQ9GxeEnfynQ4stwqixA94PCoM62gzRCq_q73AdJ3OLH-Eb-cMByfH_T3vxbb_4UwULGDfyL-Gme6YsJ5f517M1d6EBHlafzpFityQbHhZzUIcJSCOrcDKReRAEi1YB13e-p1PwQkyzyrWlptqw-nIQBG-uGtGdfuwFd9EqhVf8X23g8uHaX6I1AtczyXATHAnTe0RVxFkaX7MXrEC8wMsf9c7wdMTvTlJjwX4_wehlZrMCJ37JVICEkTRaHTC6FGWS-GculFMu_J0WbEJuemts1pv9uwWQQVHRlNGnuFN973RCMEhTcFTdKPtE59pDQuzBa3cbt6UvmoKBtpQPHEHRG0XMFNQiwOe7NEbG3uxj7vrk0uDRIIAldWQZMpxMA3Fzze-ediaX8aW800NBZiOYlyZIk49K5-HSFb8JtIvASi3Qkg0VQQnOZ7_nBd8s0ZBzInd7_KFRYZIMXXmsgZ0MDFDEswoJ91-kbVnkpXC2SZxdrqFU1C7r98UBKpwb9wZk7hPXQ3SgQzAGFvDI1V-nU1s_i9JoPF3Ti5iPWjIKRXsq1Ko090akzIUqFxvY8SoZNq2rV-yR-9EIgYe9xnmi4kqDA7MgEcUXaVYd6q-0hOgYjH5J9HsgqawIfz5ZN9k8Jh7rRIhI9YbOLzzEuH8NRqmhj0KQQMeKzQYKITIsm7ep_ZPqrpYP_tk7qf8d1PhlK7Sd_fv6JHqYuLHzL3KKm0QUkiQzaYfrlO7nP4F88LmK1w1Qg3fldoMmYTFfs9zWeb7LTzzqXHs93GRDkhrxnKVZbuNqnNtWXPAAWF7Ge13vCFurN8hzHk2zNw_BThGaABFy3T7HoAOQqoxo-m52A2Jrc5aaQB5iT0V5UXeLCCbc-QeVLfLDo-x2wHErqsEGIsV8cl-jQx_4uEUfKz9VDzxBZQ8X4vb3onVIzB7uvRzZxogaEzJN1Tf_Y7IQUZrCe7trJ_wYzQSJZG5aVtubuYLew4dbeUQGTHt7JppdlIIu2YV2AikcNQqWexQJEGKiJANWFexGbuc850AHqXkqf94R6VaXO54Xv03W63MxVNaJDFnMuaN4y4JbJ0CFN4GGFtiHHjmHYlwW6da5zIkZEWZnEswqJOKBnozSgIKWRktiHYqLHIMjgzQQYUL6GEtniF88Y8iunTpVHX8nc5i_pCxj-fu9SNya5Yd2uYLotWe0Gp05w1ZLdWtXSwwuQavBe1C5YPaU0R4PYLU1IISAJf4gh8_5yA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b49b20ca1e44-48848396','','','2025-02-18 14:37:36','2025-02-18 14:37:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42336',0,'cd-form-entry','',0),(42337,0,'2025-02-18 14:39:12','2025-02-18 14:39:12','{\"email\":\"ellybb88@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"BN18QU\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA_NC9BhCkARIsABSnSTZw3rhEMW0xYT80ImeUHFI4SWmKBUihiToSL4FbhqHFYqYDCwKF0RoaAoSsEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6TCkML50GsP0DCoESdsU29aMMY7OyQl-AgKD9e1c8OzofmYd2a8hP9ioGAE3mGc1URQw0_cOrS9ujVsRze2_xMNlD9WJKQw12PhGMjLyeKiEZ-gKH6WttqOO7fwsk_lvNuPXpxP1BmQsfXPNBNVbbU41_hoDaubL9kRuPCe3E6EYwiHkCydhJqUAlPw-4Q3HcxYHXvxkOsh9P6qVdHjtCLOkSnE5dQ_mEPDzT67pNzZvJbDLLuxzH67-THlPlzlqenEfBJ5-D_Knp_Z53JFnqZa5CKLM4HqE3l6wb_Q0wtG_gX7hZKcbg8hFnVH34-QPT78Z0oy_89a_svzVpjpOYVeMSRIa-GqGqBn0QMe-CFnX7VOEB8MA3BgIwszUQbleCrEXCStMnwNsYdeIYz1TfCVhHOM9iXEOvaqxRsUlHQFoWr1qcC44IuINfJpAzfKxsGRo6Q2wwTgE7Mmu6jml79g3AFq1UrRILv_lJsQ2UC4Z9a6U4CMbVAbQwqcN8nB6PNdoOxrn4WKyNvMAKvmqkz1PAjV14_O3RvlvECqsY_3Oia6NNgSAJXZLbl8i4rmph4SrGoP3Pvngtc2HJvkldi86ToSCPzY8J7JgYIofTGpYzC8wLAS-2dBPVdL2mPMhkTJFrkGoHKb6PkkJK--yJiWJPtCcbJJIaRHUW8ZdllMlxsBiRiMimhNkq3NnL4QyPfR29xToyExGrPKgl5FwoeF1FlRepf5mokgeSvketE0Z_bd4XfNW3muatUl_FKi1PWatEgBCTlX5fPeNGX8j_MuB3ow-mhnH9wz6vYSNuOiQtMNvpLUkq3JxRIzfZNihdkh8LoC5YJkmtDRGyI_uJHIShfvqFOGqDPrEYPAkttC9U6mPh823r-qQ_izS2YMhfNwIwRy3pUyhZEF6eNxEVRi2pr1LDsn29fKY_Gb9it3mSfFcFEiS3eOAsPwWmz0Qh2ZTYqJ2ME5j4yJqRZFaCnQ4PWKT3cypbBqXZmbTL0GQj10xXP_g85WFOB1skVVG6ItIiSGh9eITf9jUglycaD3i8-bz66Fjmh7xXOiYIniZ0upcm7o7FaNiKuwxFuBT7bw2nMX3yJAgWhBeuYh8_X7ruO8hYQeA9Shxs5CqSCexhwbZlgCdnNuPUFoSAlAjRhrW9cB5bdGPmbDRV_GvsFrlag6N7JzFerfbUaYMuV6KPJbITFdqG_NORWipeP6SrOtHaR_Fs5EBGPYsXSWnEWf3QOLA84Igi0hX53mSI-cHlPhYh-vAaJJzvd7liFqWGPWfc-NkZQglgEj7gF6dEtyjMohei_YfRn1Lqx0CqO9K92KOBnXxS9sUl9wnPFKV-Xrahni7lUhGB7QkGSeYJiIMFXEi77x3UF2fAOCNpiJ-Ar90ckZcIIHAeyTdCKK9PrOcbmRYyOFfuokm9EeFdwIzVC9t0OQ6yAbiA8Uqmh4QxbOwQg60HsfnXhHktwAxqowP9WVaoTW4WX1cOWfpfN2NWytFgc0s95SYRWXIuTL8badZJaHZ3hPaELeVn9K3IPNgdkgdYvyqdSpOiJyDWtgn14IZECANeuVdHRAoVtJvNQWtknh_HUMuw0OhLggzDs0QXRGnO2cfYJt2Z46uhgBvl-0P1tk8wu6B9xYWz5ngrZEVcx6DkXSTOJZ1zNWh5jWHItZ3DhLbVDV4CMGm46-3vVZpTHGq4PCvnUtjDKE_k01EJtDwhI4Q1U2njlYBjORLR2odi4apBPnmUYZ6pi3pSxlqk18Tfi73Sq5HZ9LaC-HwQ4AvImICiU0hy7AMk_T2YNYccHY1uaD7m5EzFwHWjCRith4yDtZ1VyRIfLnVlIh8JCS7mkCLplcNRe8K9CkRJE0fG01XzpvFkljiUX6rYjVwhf0CR-EFztRV2jvWqvhFRLhfTGj0D-H9Tt6mC-pkkk0KuEGKCkHlwka-RG9vRuI9tIKbS28pBHtYXFXvzWMbFzATZyOkmkA3Lb_xYWWdWna8FvBxXIwClISSv9NJZHks17pnEPqMdA1T4zwhljavweLHyCoe9LGamXAkcK_kGn\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b49b711099d3-30335415','','','2025-02-18 14:39:12','2025-02-18 14:39:12','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42337',0,'cd-form-entry','',0),(42338,0,'2025-02-18 17:37:58','2025-02-18 17:37:58','{\"firstname\":\"Gemma\",\"lastname\":\"Godfrey\",\"email\":\"gemmargdf@gmail.com\",\"contactnumber\":\"+447899634186\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA_NC9BhCkARIsABSnSTYODHvIxYJE03Z66S_CI_5JludMiE6XUwdATlLR6om8seFxVQJcxAEaAlBeEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6xSzzjSlBmO-sk5VZg6LHAvK5xTaqXal-0v5vXC8Axi0tL-t7Wx2eoLtBVBpjhhK2huLutKHjfqm03ksYnATk81lXXgJYqGc3d8AyFgGxPxxNCt9hTWV4weOY5JGyDr-cZS7vnZ65CCFIhG7V-2Crdlu-KcYZjWQ-hLgI1TqBgkJB8XEYevzLQCRMjjyzDMP2Bh1cVEdgqGHswEGoTsFMjoxeA5xdsvDAos2vhN80GBDQZYueeSibdIChaPl9UFnb9T_Ud5weDrR2FBNSf8NcIZGebjGrsSebc5NwVchnS-QOzFlNwVUO4kw4dzmv8-PtYX3t6vfPxAtHieQUeFfcZkd8RwzHD5lvmr7DlLcIM133P5dH02WnhT-485pLu9ZMbz49eSY0QSIG4BumYSuKe3G_SWItllzHYyOFl7LcsjY8ArlWpx9oTX_CMLerrS__UCet2GIB4YZmO8kYvC0ieoaQm7lnRVnWo_DvNc_E06QcFejRs4eHgV7qHVR1bqyZHAQficnx9RQ7GZPst58PZe_EHC223cvdD8lEPT2P8Tui-hKlDZ7kVgoRGWh7qTwhoIAD21PtHIHRCuo17BZkm6qYnCttSWNo7YgwThCYcc_TDMwLOv5w6pUIZ0b8mdWz_u_Xnqad_7_coGA7nJhhAYFtajP9c5FLF-kC4YCxniX7pOEZKoTNeKgZYEkG9RlxzZxvStMfWytnz_6VPFw0WpdvKfzVpU07Bu8er_RIIbEVv8osSKlbRX9NOkivuxr5_YDZDscbRShR73s8kklPwNQWVeBE-AFUCT6pngarVmscyHJsz8hwI9Ovtc-1uAYj6MUraFKRKbFEieHwz38n6NhO2Sc703ZLqA4PIMziQQQuavjyoDS6NkGS4jwNQX5PDNWsvOSY0gkgNSGg2Jt4pBf_zuh7O6dlzkSaAs3I2YWYCNxHPx-e6zOaB27VGeRSyHv1wUjlDLj8tQID7xb-y57hlAjnMV1TOINhqvbbVldi-kgglMDlluk26l32pQ6Bc2zV5LqUfkB1ZWVMh2lmBjlf2RJVLSE-pPVT91JgOouKkfetnEGELbz-Fin-W-ByAncZbf1mjFTfVSSQrIRIiFTYrJqi9TdgrRCSp3EL29XGEFByz15XFRtubXrQYScKLRltmG1NzcYI_KjTqtu0qKLAmh4Rl4JluxgRchT9tZnXevBHVerCncRuiuNJPeI_-T7jdFe3R_WsLF-QoV851GUnI5VYd58gukuZGj_SZG0WfAkpbtdp_AI_MZErLs465oRngHVQ0J9T3rpg3NPwzyFPArgg5ftAOU_AogesNdPxNo9aPoyZ9S-brc0kcBfTRqbersg-DuhCfdfeA1qv7Fodczs9ykdCCQjGlOIJRruZM_fAbs14NYn7bVan-eUy66fIaIEJQnaxw-COImWlFwRPuTSDkdMJDwsp0pt4LzCjz4ZonVApvfab_DuSnqgZxT-0kYs0GfDvph4rt7-9HIypKznA874wzG8nQzISn_Pb4J6WMaDsQvP5jPeZcsOa2V3Na0pFcsq0962oGKyu9ruYnd4T2KjFVbaGvC-iqQkOVCbhuvryZ295Igic9jdwJ__tMBWn5dHxtCeiysLFyTWWhvOLKGmk_qE59pDDLwA8j2rAGUP_c48I0puDjrSyDyK4r5hWAajisMvEz1P40x8Og-NAZChvd7nZ3lxNQPo4vt9nLm1w7vkrzPQ5yq_zXyM3VOeaH9gMF2enPqpvKAsCL2PAR4av4xKjBsUIqy4BRa-Lbi1bOj_ZiPDrwSkJGXNfS_O27DcoPTpp4P-BXjKUEeNnGiMSCvfcQZiG5_XWe_biW-yy30jns_K7UKp8HBA2Zmc4KIolBSLO1OW2ACfXSM83BsiX055jXGL6hIsYSjL2yhJoQmzGzYq8tIeEV_W9TVicUzyy16OIVTEL9qs9Hhqwb7l1J9QfR0hKPNyww9sjTVTogA_f734lEHPUvVIXBq-EQQVRMTFzaMTzibpp11mN1UWqavASMD-6mtXPOS0TJKGcK1QOyIuSZLfS99emYbJF2G98VY5RRhkgBltXnZZLD-8_9d2SdZOk8SltXSWrEZa8uIXjgJo9xoivgE5miBNUqs9cs7bep46SRBD4xzQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b4c550e4f688-33727359','','','2025-02-18 17:37:58','2025-02-18 17:37:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42338',0,'cd-form-entry','',0),(42339,0,'2025-02-18 19:56:22','2025-02-18 19:56:22','{\"firstname\":\"A\",\"lastname\":\"Jeffs\",\"email\":\"aimeejeffs78@gmail.com\",\"contactnumber\":\"07572460754\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gclid=Cj0KCQiA_NC9BhCkARIsABSnSTbHNYEQJjL0H5CTi29DtCK1PMX_qPCTsnyV12yyHe6v36j75Ppk1vYaAjzcEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5paprEK1R2yJ5OJzbPTl8vtnhyMd4GBH2N3o4qw6VIDhoU68X2e3FRhp8C30bsi6X0kKWhsWZ0qrfkRL8kHZdtsLGESleRZG7IYALb5hZS_yD3ZIQxO1wEv9Xk9f0DTqffC29xEFh7RKl43fb9OfvlBNycZFPLDupYklybv81MXmjHUzxfljFLdKypmNfwyKCv1Uny9adwn1UtO4ZMqn6xd_Lpw06jVAQ8yXG0Hy_geVmjsKDysfUB_cQNQdl8nhkFmyuL9ESEvY8O3p57gaDFEJ9hv3nLUwV0juteiIpDaPed2pTDLdMXZTfvxIk1GZNWLsyftVH5qCJabxuxyqKngFEdGz7AiFLI1yreX_3yhK0tTGpP2-Fy1YyshBWiafQyoVYZt2xKm2lt04TBHXwR0g_hzfV46GMgPMuz0F8v5MB_DVYcieXIrN7znnwWmz2imAhBIEfvBh-32YA5vMqPGT9H2AsfAW2b_ct0QsABYALA-NATD1CZ1fmBuE0B09TKe6fD0HCmqG9Dd_dJUTITa75o7Xp8fhGcwOoKFOeore9XKZY6giEa58qPXbhooAPphClnw0acJnIRiBBpF5S7OtuLLcNaAp8YTV8TgxVNpky0wbR6qFhJ-EHC8KYJeUGMcwCZZGlMdzzASl9n8XYs5Xi-8wLPUiHmkG9Mhx2vXwXkEAJruyTBNerTry-uE5MI9ggJHQBtQS8LEZFRMCzdY9pVlq2idKq56SHXbo7OgGASs76l4g0qW2Ir0j2_auMHYIHbQ5kfwe64rhpBU2t6XlgANdBNY1fidAAUPH3oDxiOuqDiYI9tTzmntXNxbwOvgp5AVGfSWXKuWH5Ve-m6Q6QESlbQbcdKNC_li_AXy0vuvoQLw9R7F1_GfoqRYxL8O5Foi8yP5Cm9FhCUFiyFxnwLGusaVrYUFL1-SXCIRWv6ZRrvRe87rMDvp5UXcjWDetla0K3DASsIFQY2705ERk3nggdWfMrKiJzIodS02tvVymcKqvRaiVQ4LqHQuuKrj8wc_OIS_Y-A3THQz7CxljB0YSvh3OstK9ckfg74pR2S_9mwhfwmFQmfE7dMIz8XfHdkz9Iy7izATdMzE8L79HrwB3oi_r0fbYx1jR9xSsnN7wi1L95aHDkXmwDb_wYbM9O0ql6M81ynD8EHQjN6H37jAGUqJER8GJ6SXP4OyduMicI4XnQn_v46l5Plj_lt8wsZ2E_zUPXLDZVBLoUOSbrI3xOzlSo_sByBecuRVVX-RKJURFkljIsJL2EinVI8RuMvnqBZQVovkejESt_JfYQ8jT2fuVQLb5vyXKqt8z5USuD9DQCB-djT8w0pSp2rxeu1ihRzGzrP37Xa4BuxACejqYxIv4-MMZAmt7M7CoSfwTW-sULRmDDYDbsHew-mIDTX9W1-LGpPoD7fU2P_AKSDu1wf1JK3IcuScOfKHvslzB0wURToZoj9HJaHbLFYeyml3flB9G36pnWQIkabu6VwaOB-zGTdRiwwq5SMIzyt-bi48EMPWyYDdk24TiDSDcKHJz3SPqaJkcGdGAQ5BwNCMepcd2PdjZ4bwzw5LnuQ9hAhq1igCJYDs3TkVm8_BfmRgU9JdWDae7zkc9BR8LPXiaDin3TW6F-WZA46vj6ZAmzkSEcH9xKm5N7JTkbILVxSR9PprDA8K3b86A4o4lZD_VkH42by5sPFLRIz3smNuBkbs9GL3IoAzRjk247lQlGdOfObCJWakwvU6nFvnrJvkWGRwARTYruEko2Xc51LFygmpM8GT-JDlmoJgCTGtfpawPB7VyAJ0ilf7ddbi8QSxtu44ztX_k8T6ah8TzJCsib1imOJ6Wrmse5wTiTj7SVCxBRhId7rz1jW9xhMi0FhtFFavcDwQrRdnYseCzhwzyzDlLYQ5bd1TX1h8cDZIRnQapGjIMu6BcR2obxRlEoYfUHexWw6_iWylNH-fdvxpBY1qtTHgdPuhBKjUcBNqrdL4aoQDmzcydoN25F7Pzjf-WKpfXrfCwvZR4rpwL12zS3HqoHUBsdy67QekTnCbq41saIObZgCrfeJoGphdtu6UFABk-jv2HitVOsT16km_0XknlBc67iVi--bJoLVdWlbl1r7TL1lXXDBQWCyl3s0XU9sjEyFJ57oTV05Z0-ij0OgtYNTHuRcbkRrpkn2F3RVrlYdoduAUYN4Q0iHFFKxjzNVO391OZQCTUZdv2qQgHlQPWY5dHrWeph9USfphRaz9b5wPfFaVVczWqu5bTmrEAVKTR47HY02CDxx27p00nQUMIRSrksHrgDB1QuklqtoiSQ9FL0E-oXIKHbhb1gu9Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b4e5d28422c6-60950689','','','2025-02-18 19:56:22','2025-02-18 19:56:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42339',0,'cd-form-entry','',0),(42340,0,'2025-02-18 19:58:13','2025-02-18 19:58:13','{\"email\":\"aimeejeffs78@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"SW6 2HY\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gclid=Cj0KCQiA_NC9BhCkARIsABSnSTbHNYEQJjL0H5CTi29DtCK1PMX_qPCTsnyV12yyHe6v36j75Ppk1vYaAjzcEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4HcD8vvjcbO0vEupkJgxB0r1hu0OPv-ECq46THLhySLTRmpFafPH2V_GMI55N-yE9C45AQrsMxs3WlNbXsRfEjEjrkB5YlaRIz9fvSKwC1Z4A0c899Q87j7D41vkZRz__oqvN7BEiulqfwxWCxPXflYDv4SkDlxYXYZTUAikQNaUYU6RL_Td9y1ghuUNn9bqAiyufkTthb6CkxYr-mXLYujIBP4G5nA8_-HU2GwF1uXekvKi_1M01mEETVNur9qrphn98ujCCgQfssv6MM7zmNmpR5hG2qVwrkJBA7alVsIRuhUwVAovTFN5OXndpMOqgBY5C1gaQSk4BWitDn_MHoeeS474_8RUqlI3dKKDxeYcIoSu9ksUDSb9KSs2d0u0iwe62WmUrv-nNyO5frd6b7AK7hHrORbp8-atuhPQXRsSyIhvImokT_VlEB-c-f7O0-O3hbTkg9mIZytd08lBN4mWLYGWWO2zXD6wRokAaNDI7ZncHb_T7WRdaTx8YQEuvtL9u4yOhbocfM_HjWrDGnEpGwU0xwtNKKdDiKL8M0r58VMenQ4njaKnfiVZh1sQrbhnhrmH06MxJevFydxfdHewz1oJn2w0bDrg4c7jlZTb9bY00q_mzVhOm14d2fuThIJOiXOAmnJx0N3A_w7Zvp-hQZsjbjVsBVGWsMrSpskDtf5mYMG4DksEE7RMtjc0I9CSpJnuQX1Hf6nNjI9vT50BWkyDArotnlokFLUFTym39upBWEe5p_-t-JPpDA6CaQ8i7HBxHp6serHRpi-Xhal78w-zwLa04n7R39ZLA45iXTYF1rOYwwEDJj1ogB14VzVrhTPiZa2zJ1BUVYey_O_YthuELjLV3SeehVvmYzFsZ1WbfB3DAkBpcHoNppicM6EfebKyybz8P3oP3bqAr5odChY88CsIbzeLTtIytF7tY4BfuBrrfVTBiYoYdHzaf455MGeTw0NWaR8t9C2NbvTzNLy2euPoYo6HuHfQQzAtcs0eJVwokxHHy67DeY4cNwR9yZ49UhKXT1PoCCD9k2mgDWQEkJ3MuWmjroVyiqyAi3Q1u1Ql8IhljPmPXq6ASdMkxFGEDSeBUgjVpowhJWnX0TD5yj6FpNyJGmPc1bDgzOGu3yE2p7FxTeaC8omKjlhUOAiddmbSa2aFa-_wBim6hNS3zdI_3fdbtw2oFMMdOJvHG6HnF0uETarmEr9JvTJV7aAAvmaR1_kAHIFov9e9xFVXnSZYbTlhIko7m8g1JLyNvFss3asqdnkJD-wpyNiXz9HwldC2NRSyun2_iFV-Akcjty4nReI-fqcjlATsec9v0or1gh_MJN1Oi_afevC24iXCmhA89VDqrpJ0tpU1og7EJ5Qlk5OSB9BwT91quvgR--KAZex4Z_DVcHm4U69xZKM-Eyp1cxZdHRgtceWA5_86g88AIQHqD2ZDMWai171NzWo-YI4T4v3IdkteP_VZhZO5C42Wq6SKBj_YPFN7CJeb98vM3s_4oLZvH_6RB5AxVAbfLIkjSTkXBmAlj52nXTHRUVXjQANFt2QQr1cY0W7LANNTGU78ER2E9Mw59gl_9V9u72zOYStIGFsi7HkvGx6ghoikMF4Q7qsTZHVtha69a8S9LXkrZuedFzQ7LoCzD5LQPxRXllq76YLSSy8uoYE9Bo7c7YMWVL2z_fd3ORnR_9Dz-s-RbNtFuhN_lvNahjTCFlKVBGns8MwbH4-WnO9zLBmbPPlqF6TJCdjbGPr91Tg_t-1XwCbLQa45MpiRIlkVyb7MpFiN8-9kwUXmEOxdMQBHsUbIom1PXv9o5rSGThWW69I0i4xXDvv7jnxFNULHT0g1PllNKsvBPoeyH-iLLFjn-AdqkhyhwsJwOPton6dWbv7lw4vcgFqVodgc-k9Jq-jAPT83sxEO7p4gNzequiFlLjUK630_-GFaOQ-WpmvG4m9xzVRkGlnMOzFjFNtGw7fnMPy34OHTUIvkcuc1Du3DyB_KiazGd-uS7AaHqejXh3vBKlVLqrnoaYHKTIDDlJRAndIhZflcBDEEkUEKTSmLBN9bJ9PHzdUCbYYaRwHXoJyWEiNwflkSQM8GDFeEh2JE3O3iGU3e-nc1ooXtc-3048421Hy68ZVWXTNfKn5fWVrTdzSkJdHcoGZjAwdO11I_vySZljj5eTBff27HyGCHHEq1C4G-EGrfT2vhJ0Gh0r4VQb7qrxxwEVMJLSy6QUVLC4qyLqQoYYHJqYUkRy5Rdb_ZiliEgK1rDb2gmlP2RDyNZSNGfMwxEwJbceWyiOHRAXtVyDQ6NlNROVGrHGe94WCEUa10sQWEpgZQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"8\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b4e61409d615-05893169','','','2025-02-18 19:58:13','2025-02-18 19:58:13','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42340',0,'cd-form-entry','',0),(42341,0,'2025-02-18 21:28:09','2025-02-18 21:28:09','{\"firstname\":\"Cian\",\"lastname\":\"Conway\",\"email\":\"ciancon@icloud.com\",\"contactnumber\":\"07570322564\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tGP_-p_GkjnNqjUgxZEQkss&amp;gclid=Cj0KCQiA_NC9BhCkARIsABSnSTZ3obbWkmfYZSUNPe2Du6h4Dry9-bZ-JF44-qCWvO-Prnj93T9XcAkaApYwEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7XvEXw9eGjCvV_HBHg7bOFNIeqk4nzF_4nEUHcia0QyeYfJyofAszwxA28f0RsYc3bERlEZ96PD_LWQJD8JoqHPYQR01s7F7mMyaKnSLUKc8GdtcfwL0hyRN1BHHjGQDgDiVMrFE-CQzRMeMwx4Cf4ebII04RBPy-Z5Smio8JEvS8tfEuFM8kUZRCHZ8BaaD5IMiGaxfPHpnDXb94gT_05KsIgV_Ysw-60MeEUMCN_gtjKtQt4IwqVT3-NGaYf2JfJpjradEdHF1Me4H-d6lXdw-8-7oD0Z-PvWSTBQdBCJaDjh47HBXOS0375K1cpewRXOtYLLQHNr8qvpSj0YFNTBwKCeHOfZkrQxfjj4-PhmTs8geUiAP61U7y7ckL0bEHKAOWio2pQp2vw0HDUWVWkV8oQM-uhAf1wH-rNZyWbXK5Q-wlDdBLglSBtgOkPs8r92hTZnkwoFUsVd3GfcBppUwjs9m6GfmSVikMaWgLIag_npzzA89EuTH8rjaN7bmXOGGdTEkKklxXiHcyT9O2kvrk0zmS9iyxaXURpu1kIbOUhxTXRoGSWEk5dbw1uBeWEaHTTYs2QztQQPM6FpXtgTtK41gEhNrMBEGDD2vuSCU46gbzrKZyVtzJ8ha7D_aud-r-LDneAaVBKQwbgiWHno1y6S_KvcpASy4mCT4D8T5dqHPyyJtuMpXLXWHMmq8vKNkpi-yEqnauEFReXuUkA7UhuqKLVRomAu34DTUsByp0wbcKqK8nMmOvN7Z6pYKwKU3dKyk5pwF66Y1aH4i9ob8Duc5aOLOZfXuc_TgxYrU3Wr_SClkKLQGEuRYVSVLjd_ADUCd413G4VTH33jd4I44sTvgauQ-SCEmeCu58Qb9jTCYdzjjS28_bqRuYXYTon_k6rlpXnWIgtYMvL8XJ345beSocpqg7lunG5mLeSETJuTRPCGu_37b0djge7NWmwWyPfIzIOJz30PJtYJWZG8ofXZjlS9cCE42dTcKo63Ll-V7F-WiVPq9YUosZnKwPgUZVlpL0JN1q-gDY8utGZWaqL6wNdbYv6bJU7Y9R9GQoNdNj-pTmo7Jo-zuPr5sbqctnomvrcOAezmvEuO2CTmeMrrn7GY-pnUpQx5hy6mmRH6ZWHnYE-oh4ZUVDC5PwwSyCKvwGiAxeTanq4nIlPQ_SOLvys69bFTBLO5tg14pNcU4qsqgnjK6X_SZo2Shr-1XQZYUKyV_f52GZ-InUGMM3TNukstaqVW7USK-b00I2Sd4aNnYpOqFM01ah2Vofyup0lXrSUX88OpQQYvZUy9nuR7_BXpWkOX65n-hL1TXpsM_12MgpnYrBRwxDT4qs8pIS3cmDZBHmoNhYNWaqePZ-fgxoe6v5FJVAPUgoL8fK9xSTKS8ctj2e1BBFAyTbQDjUFxAZZPeEvg9gDvFRne4-ZK7BLeTocjhzZRHH_mZIs5TYjxPAKmOLvY4L2KFH465UN27HSHcY6ANSbxY2__gvWZX93hu2WnQSZbnLRfURQtsLrjXg0VeFfGW5nhtDIlWJVXHIVhXCRYjgLHq8zlDyveveAaBfMRIfv1bREhkRX3HR4BpKpaZoIvkpxLmeFRXVqlWEq-71qmuFOuJMofGldByO2ld8LVlwWifMyN4NQpuVtlALMSLhGuLEyqNXp874F4PKEOOkVBothlzxtzNTOAlb7_yj234Yii1519ZYqEFY4HjlVMXOi8VKG7XxMKu8JSaLfCqRieApCInoLBucpjRzVadvUiiMdJjvVGDNVgeOQbP5yw6hzbkDZmlEj1Jz6VKHJZRgYp53cqOBB9qjZzCr34Ntln6T6Jj29IzxKxcuHCABcVtKHMwd3-Hc9GlbzMaRnrOwJF0tvQggpRfLop1d9SCaEdleOGzwRTKXE0jTnGiKoSlw-vjgv4WNrjliQN-IEGZsO55bJAakygUOLd-FKHl2u8bOQPMOk5em3dlzg2nZ4F3BNgKHdnZHfPhiSniJyykVurcebnzQjpd3Wjcyc6HGLTBWhypRjrfave7hqwhaLnsv4WrlaQ7cKIcKIZc3osoypdMxzkK9lKZlZ58Rc2K8JMvlMlAaDeLmqtyZzTgeIiQpk4CgolwSycLvgICQQKBfeHgs6N-PnbStO04p3L7nt3R4lsetCn5d70dXQzGZCdRIqhIcdZWmRRMyrsD0QtGP0BTU3AOrBVmWaQmBXgsWZ89N2np-elK3iYrALQdbuF_I4cPoyhWjkd-Dh-fkRotMcvUgHgHuXtz02N8yJtTTToCfwZHBv95ge2KzHzJYrcRBGVixqpyQx-GSnROhchAO2upZmyEy06JkRv9zLwgPUeuCujKuF04S_mojWOv_tT1CGxBHGpe5j6jCdHxN-T3G5PbBrea6p1DFCXA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b4fb4677fde1-24199137','','','2025-02-18 21:28:09','2025-02-18 21:28:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42341',0,'cd-form-entry','',0),(42342,0,'2025-02-18 21:29:44','2025-02-18 21:29:44','{\"email\":\"ciancon@icloud.com\",\"interestedbecause\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"2\",\"currentpostcode\":\"Wf179rb\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tGP_-p_GkjnNqjUgxZEQkss&amp;gclid=Cj0KCQiA_NC9BhCkARIsABSnSTZ3obbWkmfYZSUNPe2Du6h4Dry9-bZ-JF44-qCWvO-Prnj93T9XcAkaApYwEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7mCcRWuGhKKjs6pLuviG7bVSVwDqDTycIaTWTetPxrO9xfhpj3OpcMcgXlhJIP_JsRySN_MKko4EwO1ErcR0_7Gft5A4cJyji9_BDRUITkb5aD3JE0p86BaGbG8Q9Jqna3WhxUWrwY-2vdKYMYp5lDv6ISBjIjHlbaj1BZSYR68PeFZocCIFmUekkf-_k1P9bXDN4tXKLmdKrIgwpWtvTyK8_1XkeHSIyrVeC_0aiNLBFpLIDg-IOj0D65z5seaO4ylbBqV_4AoxnciHdexMgxTxBa7VwhB5aNkgCncI12VDcx85jb07P15EaGCLs1Fid_EyYdll6dOEW8UEJaqa8rPdyyjEMpHitpgAHz513d31TfwmU2ptu9ovHj148kv9L5VD-yIjpKN5r-cBh3Q7f2jZjkijgWWw75h8P0-dqvNZ8HWnmpBxHLk_ZN6TktM0IdK3MNhRziQwB5IfbB_wMIKAccqRCS6EP_Cc5TgJ04TKRemUEtRknYrFk7W3Nt6AUiHaayZoIXmcxZyFIMfdG61CVobg3j8X01q5K1hheiyBQLaKp6ho9kmERcnEvIqixpUI1_EoepaThS_A5FRHi0tgBEgI5UvxCcxgol6imaKaV7ErLzrCM9E_9xn_Q0M2YhE2yznI1kFzaHEuJV0EHCHzKp-Ugfhaode8inbSXmujzJvEw8y8Kh7XvnuQnLifeQipAq2i3VOWOcqOev5EZn_7F21TetfLpcQB7PfgtkD8SgpFzIeX0dqaRYtJ_SA92nSHMn3pUr7jkTopBB9IgAw5NP_8CAzEDzxVlyOT_dD4ir7LBF4JUdu_AYPxNforBnPIaz1kpcZcl-v5QClM_niNTFV1x6GyzsVTYWraHwC18SKhKHDKKD4yeJNqodMIGcFFDaSoQJTfXYvBH-kAa5EJQLGJCrzck5_gs1en4yp5DCS1f936313GcpD_IgrzH-vL9SPobGl_hgJOLKpxLyhCmKA2LU_HMohBwwwMzcAM-1KpUBFOdayID_VrWymr2gAHBh8UBgNaq4Yf4vD95E5HEt8i50n0SWO1rW72sNbY74h5YmPtMgRaaGLM-kLx6x5OXEOBYUh9AmxEam__x8dVTyRJ4ojPYU6BXrzP0z8xjWs9V6WwreswSz4Eow3OIn3TFNZt9i3MpLnBxlzNo8XyS5v0atT88DDKWLb8VXwUY6IAKl2Zvrp1nT7KWXPixB_JvecHGlWccNW4vTCiyqI4JnRng0F6UL-__sT0lKchXpQhizAnGE1mZd9oN77wM0qhkFU1MbqGMeUqM4dyhf9OB0J_yU961BU0dhvN26PcxQ_eOte8SJ_3-9XI_vVl6YxXm0qIUtf2L-XwGnt5maJveC0QQTbjPD9KFCEir0qATP8DAPsqwghKIabAfahcZCP2mZoKduwOEq6A0kKZljLbQ15mKaaWI9Wd2bzyZApetC5ADbIK3Hee-BtGnxcnBiLojREhkUonNxqAyCbLCjrlZ5zOsQihTjukB4nNaZdIokVKqJIwLmM6o1hJH6nguHKFx7iSS51i5i8CAa0CvhRO8tP5sfT4x7mVQ8OZeDm3Q_HJRdcwgdJpI87o0FcNVBcu16oCNZopveWJD0ZPfN3zLRKdrIX6gzGek9_RpiSnxqJJtDbl0SvG6ZtCmrA-mPOdHGCGH_TOpkDC5_gxihAbBU9Xxgit98bbo2FgQAdS6AIZPw6gDy7yjrH_V2V8BT1Ca43qnbUI3q2frmKbnM8CNF9V6k4UF37cySZL7t2BCNULpHIiKCDzsOBXySoBqtHuGaXvf7BpSR0eOjX_osyB6wc1IFi7eu3EkfehdHBL5Sh_uWvuLx9wrn_gq5bkehtwPh3AhD9R2Q_h-0_5rBZehdbpYOqIRkfueeXikj3yNrH8aWG4OaGtJgeYCLmivGRrBzZLrXJUzlFg7hDKur6R5PAA72jBbN4Q9WrdnJPxLlA0D24mRbl6Xcf8XN9D43y-KOHiI1cVbNELSFsjihrlgj_luJ6RVcMm4GVEh2qt-qdV3NGqpXLjzplxhP4bLBzPIePBmCpnu86Fqvvwrn9o-tCYzJCHKldCeVWpkA-PrN2P-oxLk-YRHes-gUID2i0rmxP-a1n6LfclKkSci0wENhVNMiQ_5BlDFwwfZ7tKxKbF3Ivx-MKAg8F2nNeUI72Dv25XagN6R6HVN7uzq5GF9ecyZhNeRmYpaTceJuLm-BaL3L7wRuLX8UOTVWA7bFzokTguefHjEEUSs5VcMfAh3hTqhuvzRxa0IAU3sROKVs7biBwMqG3IYoGTwOLnDz0-z-R1NvXOcbjdTkXCIg3NrMGf7xYJMyM6hBMhZlVGcxXU4fMWfb_AWO674acVkdPDdzRZpRwct2sir1tjbzWnWEqw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"agegroup\":\"1\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b4fb9b4f1ac3-30740296','','','2025-02-18 21:29:44','2025-02-18 21:29:44','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42342',0,'cd-form-entry','',0),(42343,0,'2025-02-19 05:16:05','2025-02-19 05:16:05','{\"firstname\":\"Alexandra\",\"lastname\":\"Robertson\",\"email\":\"robertson_wife@hotmail.com\",\"contactnumber\":\"7148754796\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4n3uE_M5u7tEemiK9I6DZva9OrXTzi-fmBU9VHmsq04Qem8kYECUto5RLkRtnvKAe4e3kMWgAsEkfcqdHdmtt2Y2IImjyvBdQ2v6Fk5I6qt65T-uelQXlx2LPOa7EBhZcZxqsXE23vA3l5iudHHBPdOzZKKDovk8vlys-eFf-PQjjgS22N3A04Ddb9U45zsxnLlXufsLNdajklqL8GnX0kz13EdbTyfKfJWCxpN_4ArAk8bWkiFMmGfQ5bVYGR_8U1cy4WDyszNAUgjrxro3pL4vHx3yl2Bia4aM6fvLxiolWIa15aN5JDJy_pByLHRkQm4sTb9IDok44EsvEqyGmd2jETyyABsQpCrvOcF7qKvJywA5ltYx3_8rVTKr4t59jeYPGboQEEzesvD66F0Qgsf464Ww6ajq8SZ_hX9TXPxQM42irh9EJ7EOEGQfjrri0N1s8IvZ3PTA16evthmKl8ETeB7YnAi2b3tD9q1h6IiZJ-L9HeR_A39owdcs2Q-oWyq8_4sfjoR2TSBfOKhFvR6k3hl3kFPYBYMxMCO56M3hgDbOybsNzhPH-KzsoCGK9wqQkFEiJEICQmAoWVxD60I0D1c0c6y-SKaqrPJoklFDQxazXb_tPsw4uOZcist7cXvczegTC7G5-8FGkJlqlVzx_RCuz7lQJeYQq8NR_SHZs6zDP8moK3o9iMVycXengScF-Q-8b72fVcP5ylaH-gG20wBT6UWmBTEgtdhrdNXjwd4ajOo81M1pnEJIAwa11N882-RUWrlVspfWupMPN7sgwrlLWdqf0yYkp50FpVqAppN6r3OkxqYvorcD6H2SOwSInF1e0UEW8pdzLH6eA5e446t9Af4LWIb4z2i9EhSr5ZQ7pUgyl1oisoUi6gdn9uaglRt6iBfTKtUu90FHbjf9e4paJy8yG4Tf7Ou398X4ti5_nII495IKzPUoTDdAOEk-0gGz6w_HEUnPJqGe8iM49k8pKYOC78IZBydJ4iseuqZ6g6oZT5hgnVIDSSotZCt8BYAdtZLfNJ9LI-M5hTmSJOW3d75XHTgus32zeUvKPCA3ST3mke9zs8YluQqcBVGY51iQDqW2wvN1N3Ud6OFWxmrZKl7zUscUiU1ED69r52RiAtUJIwcqr1hUtg2z63D4Bqic5ehc_gEQZMXEF0LCPyvAj1hAi9_WE8rMxw9yRmS52iaVdS8BLvvyOXi7Yiz25RPfOKap9XvnDze2JJnGPl1JN10R1YHZFQbe9wwW-Xv89idMW9OlYSMlyevGbccO82Y0Zd63o4Ez3PV4nu-4kD5peyYi-auSG8xHqDnybiJ2UvYvgdAfTiV4xKOZW6RuylkoIjTfIF2d6HgkfytF5gi_E7ozvMCK51ABu5-RQsC8cHxR39-IJeo5QrfWqqSSZkeNGFEPvQwbe8g1BtlzTzmSw9ysGmkESTAbNibywXUylwYBsGap-JFfw2dp7iyhrhEkJ4uuVtjMTDdK7jwhPy5SwzxCT6wl6ytZ2ntKDmAP3yesWWXBwBVTPBKrTxUaVmnswlXWylYpJYhO0dECos6WreBVuyVX4vPmwC32GKI379uNc6TrWXFOEtKPfHjG1Mz60FeevJVmtMolPJJiwNBaI7Ss56aMKnMCzClCN7uPC7Y0qxgcsHh0hboUf1Eh4RXCVRvOJzBaCbfKuJGzrM5KCnWN-CnzOcnN3sk15DjDvRSIP8L9NAQvsrGe8c5CHgveGeZYLNVMVlvwJM6n7vEYGrK3gQs540h7sUO-kUl8f7dm3bwkpp0Y235BWjXeuVWMrSO-SixUkW2X3f-bm5uzmbz-XA44dKr1z31zDO_nMSPJWx_xzMgTXZtpES6Qi_UQZRJL_lzgK4b-N4VtAY49bhDdUxYjEpjxFetmvrjQdC7w0j3EK9terKBUKHbnpr7ZKLJ6A_qQkq5jn4bLG7V8ieI5R2rTUIPZFXbXnQOYTas7hMaaYOubAoxUrMPJ3yK0SRlKqzCLQQXw-GONOGvA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b56882c492a6-79238433','','','2025-02-19 05:16:05','2025-02-19 05:16:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42343',0,'cd-form-entry','',0),(42344,0,'2025-02-19 05:18:23','0000-00-00 00:00:00','{\"email\":\"robertson_wife@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"84042\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6wv7TjXDSLMTWc0pC6sCZB_eQwT_T9rEccejCF2SWf_7xwsZMbe2-otOh2sxtivU5efzLOgfI5Vc26j6laoaPX1gjFJdVnsxSiSZ4E7YOo4ZKJA6pb7k4KFFj4FK3zlWAWhjesXL-n4gpc0jNZB3NdzY1zdRhVo2D_N-jMjKg8M6KaOTWYwTddHdbVR8-qngpO_m-aJrD6VkwVsxgT-T6yeiOVWFZkwcJ8PSDD8amhfui748i_sHH0tcbC_Z5vYh-Yaik0b41gNQq5nkpPBp2yC8u9rlkBs9WmfjBMbYveCjgGnhDTJZWYqbXsqjcA2enMkHrhNYNfMX3Z82EQ9oizA9heveU6iQ2QSGDGg8ViMpq3rnD2WjkX6t4KtZnx7g2iAB7IFz9-7EVAufgQZvKKIl9ATK2d6irqxmu6tKO3zRoRUf4cra4R5vEmthiDlm9C6SCVXa7SYr1Zdg8ZfvwdghAbNDiFmE0tUspi4uP2wVSHmpZvY2m8IpQnSKgsVfkO-Xa55BGupJvXxR01j5BVuizE4ILPTcQtXDjsuwyX-hHK1BI-vJYJ0iHBMR4WPGHSDXT6hW6fjPEd_u3gSmuazGugC9LF7HfaeqLvRg2uusr5PCUmd4N8eFIcnJFyFYRJOTEzxa2AftzT_QxDLAjek1taDKh0lNRM0WSPwdahsO24bAkZ896haUNEVd12SeUD1EKySqAFuO58jCqOYx5sE37Eje54EeUqS_WC88_L0MQfskzAnluqbYlkrkbnPENGmzb4G6uFsT7p7tnQ9d94iyOJpbh0ufXQ5eeu-miGYTMjJIl3LyhACCYZq7vgJGomNbeTWLv5hyvNkNfhyZcZjetyji36sG8U9GMOQIi4AekKnqm4URCyspKvhgeFjmifYTgMwwBnzcEUc1QLeEQkOJy9D_Ocs21S2ynmJkCumFDc8VAI9NXY5UraZdz52Y4q1af6mnqyZcAm7lufMERqYdJyrxpywVrQdlfwCDEgID6EQqlByT8623ZXolji_w0vUKOtlxZgWq_6BmTdk0dbrQSBd8Svstu1fC2LxoUo1dyYhKzPggI1d2IcJdFDfkncQLunJCXOL6mhA-obbsTvwIshLjVKVWaG2W6Fkf5QqiBcRWJ4bOQi53yVccfPBBmp-p_Envy6CiSo8GyIcx1z9pdRUqThtbWfg3gCmJWQMJzTBeZ9NXKIJmlMhCLYKgHsg_OL12tHDeXv6MmMBNIFLAyUvOM4arG09s_XHvuZxlHclczR5N_VHoCKMNoM6D7j29HZxmngvUuKPQsSSELqUM7q6btmiEOD_Dt0dr3scYFvFQ3Q0fzNmNzNbZwgfBmTuGJRkYRCqE-xd_6VHopjFpbkne-o5jWJN7VKe9tVZwVaZheLlSzTRXWsNOMH4LDuqJGevF9q9OZ7-7rvfR4_6Hr96DCQ0YpEi7N4alTx0t_NvyZGJmrX-3Uu46FpmuJXJXs6Gkh3O50woEghjWszLaYHs_atLrWc9RayaabtnV4CKfz-zyKyZnAwUEbeAeRC9ZhUqYTrd5Zom7ZnEhz8pjG9zAbeTzHr0mejXX5zlD-c98Lk4DaqOe6isyPyGlBgeHfc0Y5zsssGuYsnSi3-WGO2J7DjC9y7z0rNTRPE6f-iIm14YGnhipvDIgb5YcBNahcO5W8u_7t3zRP8vJLagCOYAPVcko2eQF4a-OyoWSG_HGj8L0rUShN35H45ft-k_XC6hQgaJQ2AX5ErGiMX9kQJd_uYGL1Kx2mpfCo4UmqFYiZZrFyz4aW-J8RlJTewPJd1ABh8Ictq5ZGjcTluJiT3KDp9jS9GY4cmlwsZEW7oEU2VTQJsed1q7VxDGeFsoK0uNDupAD-qU0N_iWUgxNSYkEoWkZ3Zyv_tYMrP_b4EB-CD4AFK4p1MSUQnZfrauRgnY-sNo9Xq_jcSCvjuxHTEgWHFdBaDmMfekhmo0-H5BFvrj6V92B6nC1FCzVDnzxAkZncKP_7cJ_XmQ-0x1JG2WehBqUjCyWHAhqv3QCkjevU\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"4\",\"workindustry\":\"11\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67b5697eaab7a7-19857093','','','2025-02-19 05:18:23','2025-02-19 05:18:23','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42344',0,'cd-form-entry','',0),(42346,18,'2025-02-19 10:15:37','2025-02-19 10:15:37','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-autosave-v1','','','2025-02-19 10:15:37','2025-02-19 10:15:37','',40779,'https://biomechanicseducation.com/?p=42346',0,'revision','',0),(42347,18,'2025-02-19 10:16:01','2025-02-19 10:16:01','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2025-02-19 10:16:01','2025-02-19 10:16:01','',40779,'https://biomechanicseducation.com/?p=42347',0,'revision','',0),(42348,18,'2025-02-19 10:17:10','2025-02-19 10:17:10','','IMoveFreely Instructor programme workshop','','inherit','closed','closed','','40779-revision-v1','','','2025-02-19 10:17:10','2025-02-19 10:17:10','',40779,'https://biomechanicseducation.com/?p=42348',0,'revision','',0),(42349,0,'2025-02-19 11:51:14','2025-02-19 11:51:14','{\"firstname\":\"Julie\",\"lastname\":\"Breckon\",\"email\":\"jbreckon79@gmail.com\",\"contactnumber\":\"01234567890\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAn9a9BhBtEiwAbKg6fhcvvOsrfC7P-nVoDi_-4jXtd_H3-7SJUzrrVA2zuM4RLAzzZRa8vBoCIyUQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5AkyCBLHzdeR8sDphDqg10xZs-EL7BVzcmk9WTYZ_gFU9ehtjlFahO6V6tDw94ui65oja-DoLV7tBOScdnmiKB_tFWDuCylhxJ4C3GqETZsJqyzz3zoS1dlcmHQmQsEmsEOr7iVJ7FPeSktBbpqsoAIypy7rDtXzpYg9D_HWNTKhUfC4G4wQERKP7bkF3OygjBz1F9v_w4JGZduF0OERtaJRag3apDHXXbI_6ts7QSSsjCc0pcM95DoDNOeMY1z7MBLwMgrtkgkcj6IUZ0mXjs4vEc4jfxlFgl_ZvA5i4et3ySNH6Hja7I4T6grilsZdugOGFh2b0nN2RrcBGpdueBgdZXJJKa4GM5c7wWljrU6EyhWiTIS0kVnWJIjg05NxcIFNgnrwl_qCV2GX0fSDU3dMfL8xv1ACGBGcoyaO1GBzXThvbR12OpcRc-s4ZB9di9o86g3xQ-XGJQp0wACY149v1GAmAlUEYyPc03SK2ObTwiSctzwp3hU2ZGToCo9E8y074je1ZsoWRw61wbYjZ8ejXx7nas2EjvUJZdoe2Z1Gf-_P-GLDgTD6RVT_cbXpIdyWR4ZOmnl7rrbut4NOxHfsvwGScmDWQyCaQjo--teKhN6URSHb32zYoQ-iULHrfdknHPmzuVgivBLiXv2-22rRvV0fDOlyVROOGMJ-nQ3kGpZc2jXmLPlz1EJpsEKnQ43TsHh_Uuk9zBRGzH8ZbpYxkYrvWTcYngYWziocmNKpoB628KdJieCqH8RqjxBNURXSt4uP0iPIufS-pkD7NHkbzTJhx_ibaabgJ9OBJVU4ZRjPGSJSoyfHZDWDSMAEFY8-asa0jrkCYAkNLrS63QgEXFV3B7xBhgQs3r2yLVraAjRSV5WS6ApUv2NnIf-pRbC9PCzdYfNwOpb6cpKVStM09VGJafATJprAVGjgGVqoEjqOAbfFQJqnJ1biVvk9R4RVooQ86tkpYBDiNiDnO-ECZuJKplI0L-WK0YPqOPwKzJIDG96eYayArCbIwRpDsAcGmK7ZxdizDJX-iHu47gVUviha2bR3N-AkKMTCA7p7FPATm5seTIOL8Xy4o7JcWU-5byllBEMpcc3n3EcCDzMP5B_u1xnBCS-naGD_n9zQTPUi_k78RLSLTkA_63BIVyxbGK0Daqf-V47CzzCnN47MZeVz5SqyiyZ7HxQKiVrERIJ_nZNwkjeOYaUvGLVExAbyvjOL5RflEd1IOiCVMLpZRLoc3gUMFudNenJz5gRTO5ZtXK8MlPtXBXDvEqBzFML0PWcD2VRF9u0bOy2lNK6Ncw2dtlE9axwtuWw2jIIWOuV07eG9AKaoq6Hm1jQkFLawRB3j-8plvEIFxeatBFgjEaNdYL7AWTbgDAuYhbSi_zX1rHua6NIoDrW8lEL5KsheJGDLcvq31tljePuk9MuO74fhyGcOek-jJMPMU--tTIJHm25W6jold_EbHJR9AqjaN4AHLDYBCAQBZD8LpJBcxLiXXDFObZCldG_jePJzsGrB5XBnFkbIIhiOsTNrdoZDd6n1LYFv91uoXQddm-Cl-N25J6I2GxfTNiz86ZYJCJ5_7oIrSZdquPEO3FLEfL7L5nyOFJk9V920PTwOsyBjh3ZTKYAvh2KmPBhtB1r1lYaEiMz-WRrce5Y_KHXVDLBRxrFtejLIbKVlG5lhS2z7nyHCAYKPYdjc_AqKpl7Gnw5JTDsj8BvS-VuGXvPOvDCJrLxV_rpw31UL37IWcLA2kMDy_iOYa8GjvSnD4vpOFhapcfmCT1dVkUVqKNCtWgXLNYHM1kVQ0ZnXlvfRaBm-7d8y2MQUQSrSw8vvcfnLxBbww3BZPOk5Hjq95e3JaaH-zT4AxVBdX6OH3mK0RiX50rOG--BYOVOOoNBTEeiiwm8Rmrshpl8RdqSFCXDLi1dScG3HzFNSLvdCMaXjYLckQc1DhRnldx5daX-hJ-iqh51d0gp2muSUrKSaOdFiltEwaSZw8JVwMf185b4mmkHhCX4qfQWd0Kf1SwlpOwM8fekptUh_dfE7iQ3cDtuPofYL6ixNSJcSTna7Tp-akU5xy1kNaqkAf1GhupockzAQ0Mj3COELc3TAchQWfL8vwXzRTspxoVi5eFFdXpBkvk_KsreQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b5c59ea34be9-80313438','','','2025-02-19 11:51:14','2025-02-19 11:51:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42349',0,'cd-form-entry','',0),(42350,0,'2025-02-19 11:52:12','2025-02-19 11:52:12','{\"email\":\"jbreckon79@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"0\",\"currentpostcode\":\"TS17 9BN\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAn9a9BhBtEiwAbKg6fhcvvOsrfC7P-nVoDi_-4jXtd_H3-7SJUzrrVA2zuM4RLAzzZRa8vBoCIyUQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4bdRYV7UmixpzKiDhxVchGvy3PraE57P3NEbl9NDuBHwCfac0-H3nkYQe0Qf9_MNjNbgs1USQ9UnXFMa-sXku-DkbQorM3uWgVUPb_38iffGIpCvY0pcTcndscXE4iyIj44EmsfJKjJIbsNL9it_30me-Um96R1Orw4YwVlShdwZzHEcMiM3-hV466lCzfAS6QoCGeOy1X7LmFyq9dATAeM08RyBP1jrya38WB-MVYu6sOL6F0MVc7q_KS-QqtLQq-TLblMxuSKNs_8lqpxso1bxa8yHHWgVxh44lAZ_p4ImzuPEccHiNKZlx_iKElIHAIiiuzfM0_A1mmf3REQTakgaHM23jCXtqt0qbnNaA9mU7I9aLTXed_QFp-EtaeeE5Ek9yPTecUniBHBXxiQbGDvZZt9B2J8d4c05U-WB4AOGoPrJxyrBkkZNFiWdZ6M-9BJXHAX1zzvionNB-Xn1KK20y2uXEOOM6iL0Ye3Rd5m88C9C0o2-sYNi_RXWhcym5VErt8wISEO3cKiCcwPakqUOaT4DxabF5ojCkY5B1vRSaZER8hg3vLfu4sWAnzzfFMmpgZ8fGZmAQ80U7wgCa_YJAYIQJOn93OGQEpCqp3bx4FVrSOdI27IzRI_6Cl4uZ3SFdaQodwLNeY-62GkMFKQ1D3mIAlIkkrAB6MeuRdkxYfgm63BlUC-M5P7kCMbNx0B7Pzeu_XfsL1whnwFRrDqFP9fz8qSXiDaler0uDx9XWljf45bgZVC1gYT4XrMiWIR4wqDFGL9k-c1oQMhbWJDk7BGCHlhN0pOxYKsYxXZEzEQ7sUxwhsaU0ZcZaJpWGxkQhumADJh_9YvS8ofN0eNQzba_T4V2oM3UZwLnUAESvF9Pzw7Fg3rxe8C72Ad_L3qyoVe35cwQhjhHhw1zDUeHRJn8mBaP27EJGf6JXwaGLXSSeREHpsbdHTaM7d5Ni7Jtm-kGdvWEqD4cOs_JCcnI49k_oCfqPehNwPf3QyhrOQtx30dvzQtnhapnc3wmrObBocs5ml_FzlqMuuneVNiBGW6C7ANJYP_9UDy8BllGfbQjhn7KYt0Uh7cV-72f_Pj8emg4WbwOdJdFsqrNXEBJ-D-sTUejeKpIsnQOm5Krd0-SwR0sLTvYe10B0I9Y6eHMCfXTHZStWw5A0hQOOrtzbzizykbDHK8q61xEhzXssjiD9pkcD5I3gt5LaBnShRxiDRbujODKsImMemf6NtP0eialqDGOdsQz--9gPgomdNPzd6o4cf-eMjpLtNvOjNDPjgIQWRai9W1pPqchu6M2_Jf1YVHSaLn8WNkirHjGCqb7XHCXlRaKsPWbTcsTc_ui2E7GWS2Bv-csC5exYZz3uslTsRoTFAX2BNgKOs45P-_bQtWz8YBmG0QQvrjKYE7XkwisQib7w-156aZ9OzSOg6QEsnUVHM50TvqfRCJ1hsB8USyPoSyv6Qf5lslAVUmn-sS7jilwwlPS4WRicS0ITA00PflO5ggOd4tAZkgWz4fGBEMXeS81kqAeVTSvq1pgmWXRRrzSyx5uiQhSd2IWTNNrY755caL9ps9g14IBXRsOQrTFGHodiB_M1d4OX79hvsffxVPxUdmbYkxnKVG2P8obEyzN2pJc6-1EAp5ks99sb_qttPjTJm-TPtFtQsvb47q4EAql8V0jWeitP0EOKg4OQpIQALOaGyIsnpMIxaM1Wwbq9oZ2QO0fy53C0ncqXD0USmQXMmSetdH17oxqbClYDu3jmQnMEK9YMGVka6oWFsSFkKirpK2-Ukne_9xnHEfMpPcQnWzr9ZUEoIZdOTHQH66BlHgWn-PjcfVLzq-DmG35qV9WPJPAzxGoyqUMtafTk6VS-dTYASrEhmSZ-UAOkGl2BxcvEPQwCR7uxp5N3y3wFsU_FWv7P-y9ln7VNUbap8n7mnJbWD1FSAuALJUgICCFAe7YwRuKb7oVzw6tT_iKdKD9JSyLavjlkN1Y7tyqpHez8G9VTJU7nOIWjMnltzmcH9y-xO9lJHUPLmK-BjuAiJFUWoKbkGYfSjdBSRA2MfA3o7b6DYc_eTw_kN2ck4OezxjtSkrr7o8qJYhEBm3hsYAQKDyAiePVBRuxk5ulmUVl3Txw8muvGFRBeR-g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"2\",\"workindustry\":\"8\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b5c5d29f1392-59572919','','','2025-02-19 11:52:12','2025-02-19 11:52:12','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42350',0,'cd-form-entry','',0),(42351,0,'2025-02-19 15:01:20','0000-00-00 00:00:00','{\"firstname\":\"Harneen\",\"lastname\":\"Mahal\",\"email\":\"harneen@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/\",\"recaptcha_token\":\"03AFcWeA5vHGQDvWcpjMVGS04-2L1KjiAjuV93Rezzegxr-ScN4AfkqqHkJVBeAmXbETAa7RqpW2p99jC5ZP-47ijOv6RiacmG0Dyt3ujNNLNM4T4DX79k8LqM0nLv-tWG4f4zaufYk5vC0uWIvYzkTsajaKukJwblVoTVxzV_2yGcAbeNng2NdiPLnrr-M4eFyAkt1FiyDQBVYb2GbbaYPUJTAktzDXyUZHGShPsUrXETFFrgl813-P9CDaz-wAS15ZuaaLQiNPUTKtyjSpIkcpHgqKMaIvJ-vdvTtWjewdzQbXic2pVTHbj2adi_aW48Ynxbu2PNUn1pgTA7BdU_7uxl2YkUdaHqLfMTguB_AELN25rQK5aPJ4yuLPoEzP3jPZEkApEtHSc4uGymacdR1K8XZ1iRTB-DcPINRjUOScABLkkBaNogONhlKRU7vnSkswYCExRO4RGzfCFmH-V-y_B9FQJsT5PC_WmCzt7DxGKXIbRXBakuRUM0N4ps3ZmSjqp8k1NAng2qvRivi1qM4mYSmauvNFfxn6bf7JU3vXtZZJFJg9Le1-rEYsDUfk-baKDnaNcOlDoVLUB9FDZgAxAwyImzy0KEu_z-4jrsoKh2z7bzy3Z_2EpBIhm1NfIpdV9NCy12gJfVOKWNUFr8-ScZ5jPFTYdhlBisd2LA3b5M9UCEbgLDi9ggUGJRKDl9kjJnM_UKpB1ScW6-heuOnfP99PAPjK0nW3O7xRbqNJgOGB4YsxVjwvnosDobzW2Ogj-yMGStCY65Tu2Y5i-gDRvaEfMlushBPi01zKuQYEBKH4UUHx3Bak49kv0wyfhPaaWxlq5KuN8bGvCfh_F9m9eLCj7J8RvY8qXGPjCE8qaqjJ3yt_SH55vtp9rSUhjaCLpGrh92JNhCS9qnFMsnYo-2Zvhd5h-XohOprYX0sAz-1w2UjONDMGxo8cDNs6QZ2lWfyfM3dSTzPY2qoZt4CULU5Ufp8x71DDsimn29WStKiqQGXpwmhy_MlPfdSXieuMZo22KZpPJBwR2IioM827oHhlp8wHOcwMfSzlvU98sUAFSapwzCTklXwBX6QNiAWDTxI8tUyxyx0U3t1P8ABdiZfCkKL6nFfeCQhRLGrRIigW7q1-Hfsqki_Fg9WYKyH3BUadwt7mg3Vd6REXMW5hcgNyQvPyWVzd5SftNhbG7squZfWJ2Y7Oio2vhA78dR9Ry8FN5okfvu1j33_lltfGcGzLb2F9ODbQ_0MW18JN8U_Age0eyY10d9HqyIHxvnq1ssWRY0ifrSCQkcm44gsPY3oIl65PaF_z_8xS81110aQs_QNJkFIMsZZESPGEd3wTBHi4QsAOR2aAFgGJXJrfiGBNOjq92y4ErJML_QZagQE53Vy9x1otg2ecjnuF_kwsezeOxg1obBV53xVwYoCLX3Um_Q6AgRNSJmPeeabnrUIPynAID6mrjhvhUBq_GMMLJE06YeVBlcHDN2_6hRzwFHEOI63VOnJWrwFdLon0erBaLc6vLN7RlEl2IGCoWzQqmrn23Yfaq6YYDe-1e9v2Q1b4mMeh9LuLiVzFcK-SpC4JIJYKg-0dykmXXc7I0Z0lLoVWxvHE0EfEqcxqPz5aclW5h_CSoOFxzkB1Qtb-o8xFVOUZ_NgXRbqGutpNnC23KkrHFWOJapfbURzecX9FQIzRh9Hpr8L9zIWkEwg-bX4nakwDqnSnw4dTbQxmxs3uL_KnFzv5wIEIiJfXhkufRugteq9iZP_iV-I5dqh3ZW9DsH8CJqeSUx_gV2Acfv8UpKM2pHOEhluhfGVpAdQB2EWMZukxscdmo8ALOvJgnIAAiUmhgQJllbAY0eFd0cJKHxO4n0_uwW8gzFuNNlKFlm7CSCIUHJP3rhUoAfX4uGeFM41szrNQEysROed_ceb5gR3BIZfaPeZbkNrv_zZ755wTCmt1EU70pdmPSZ-VVSyvqYlxkr87njg6omTre1ymCQriy4Oh3K8VJWlswY8J5mlpfMQdDJGgILdd_IZ2FHGnzhlLZDYyCooNwJFjFgVhCmEgsfjQhekuIla1tXAq3spPVxwKH2djRKMYWPhx5YoRjigGoK_iPk74wvmiVyOQ-PdoUP8ux_eDVD1hT6o4ZogiMfZ7YeDNnnOhaEMbs9pjd_S1MCSj4WvgoWt1C-aAW4MdOWG4SKZxty1Bhhi-FiQZa8M0j2_iMba3hASMw_S-wm8hTwylytRf9lvBDfhv-CR27h5yNuDh5lszHRllMKAQIFO7GKIV_30wVdoeKtc74PpNO0wiJzZtsFTa8g3ApHyD7xpcfQO_jIuEFDqXErgvb-oPSlxeL0ntYAbSoiAyyrbaiLUOOTC3WWqaGDsnCcJEkXX0cn4zrGijZNe515F1nbxR-Uq5CoYbL5xIVh_WexbeoSL4wvrZ31FHEV2SgcZXELgvf0EPuAzpCNq_jpeEs-EPAQ_UFD7U6vSWoDy3fR2lprPWY0T1stgXrWebKg70e7zPTrUBpGHoBFTHNxy0eH--GE72CTZIP7WEChK-C2KfhNLUc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67b5f24097f780-45614051','','','2025-02-19 15:01:20','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42351',0,'cd-form-entry','',0),(42352,0,'2025-02-20 00:04:03','2025-02-20 00:04:03','{\"firstname\":\"Bryn\",\"lastname\":\"Jones\",\"email\":\"brynjones30041974@gmail.com\",\"contactnumber\":\"07424185434\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMI4oj_6ffQiwMVg4tQBh3sSgpiEAAYASAAEgL8MfD_BwE\",\"recaptcha_token\":\"03AFcWeA4Kmn3P8GBiVHOi_WHbcUVll2BUYzcFYxOLkpC6bDKD6Mb6Yez7DRH6Bc3-tM64oC_uNsdcN0U2Cqi-6QMY7BrvzLT4PXZFVtUkP41dZ9WS2Ubi0BHbzxTFQZvDKQkAG1_cNFEuYQsiYTPOAeTx7wqBh8Wgt96UQcwU7zEqUq2YWqd6rKok0XtRLQwfY0iF4OIGLRV_hpzKoeavPGgYcg-MxdmGXNq_FRu26HW-GfWz4x75bXja9bpD8N1L0yUnkk5-iEL70vyIMV3vxg9XloRNkHeqKMOEhDItr4u62RCT4-Zq-v3m4MKJq4oOBLUqqrtJJj7gbzcr1rhPbN8msSWLq0GgpCVhXA5dwRScWlmKSQfrFnNiQT9kDS2vtzgQSfDWA8IIKtq3QTZXolswBR39MXx4QMC9RWTExuIp1RTSZ8YnmeYKh65MbqZ0dft59do8hCFemxk0Ww0luLsZ43PXwPURUYNkA62UyCO0_AHFdCWzf4Jvd2lkMX7yGX6HJrfrBZzIkfI8CDt7iSjDE667-iqJJf8l-CyJOHxrjasWoxfyhrh1pgFjbx-AlMvjXqy4xdzUY9JoDXaeaiCaIAIg4h7BdRVlp0tbpEW8Tz1Fzl1M4SfH_xw_d22Mzi-RAvvxHXxEHJR2crWyUFr6_KujtFeInWGR-k1ODHkzKQg2Mh5bE-w8WJwMmZGOcRtDU5srLw0u0qWchty52qs83p0Xc0GkFoMSHuSd4iLpEqYNDGU5ZbO5SnBdk8fmRktSby2QnyLMJMb3r5eOMXlsETj3JgTBd0X1UbGtRloyMojvaivB-El8PaXWxOM4otgMuUjiUs74oRp6FX3k3sgP7NuQv017t00WrpOZg3Qn4801JLugMuyDpFkysmiWGSFkGzEYAFad5l0KO1Yi8HG8_H2j3vBQ6iViMYiTJthoxBiWX4wPngc5iwy3UEzSWlXuTRVpML67rzQzRko7Hk5JZgzfts45_69G4EKeSwhYItdmdPrNSiw2W7aLGGc3v8L0kZ__ftU_anDHoDX46RZA5MCeX6sz_kPIQPNB7Mx7jt4BjSA7s3r6j91OgrNsGNWtHd07h3Jcs_l79Yj4Lz-Aky7ozpRTRKsnUI4V1shSjzsmZBuAgHZQWLcK65eqRaL4Yghco0rxk5lvkpEQKvGCoWuPAdf9Nw2DGzbPGVBncKV0Ob3Gpb_SqOFo7jYCCcYZBqwAz5GH01UDe08r9d5mtod1rRW0WXh_ve3uOTpallnrSOwP8Im_Nw9uBVbsnaraumxBsfzOOeGxHk1sDkGGBiLjAXIfHHkt_Ob4NOqBKNXspI5QVrIs1pzWXPSKuJ92m-bmtRsGvNdXt66_32FicM7tAm5OVA0vVzJpHoSiwhF3e3Kg3enYfIrvwGUqAsGNKooddBBQGbqg-DZFMpsrgs2wCZ9Z_FnWfSzTobES3Kg3r9tSwbnmswPDT5yEVRznDLe-WHDVkSIZ5jkpFcIoHZtELrKQVHmM-eJjTVO0Rj5qzkfwxxllBhTYR5_eGV-bjhOc6GV4hrFul6G_XCslZOtiCfmU6hUgRzc_yIi_Gu9FtMxzdEx7Li3x1wB5sTcqPoNZW9ziVR4pjAJ3ILi_DwqghtDzwLBGRKsPESlI9bT70og1Upo4SzFg6epmeMEgBKT7mW44Pl_TssxRF36NSgVHhoYi1pjaP-FMzq1vxb8ty7tImrSd2XsTfUnXxXmwHX1DkDuU2rY4Vv58nBdLZnSaRfrKUsQNQHj5uM-KmS_hao1pVTvRVmn6A6cyh1k9Utr_vWiTJ4BAxDcRaqbH91s3IA3FE0B06Jb00x8SXHCUjE2NG-DLWuOVLS8eMBuqwCE3k-_ezumU__IZYQ0dMrYblk5YPvWJeaMW84nCl02zH-HljGoMeET7p9Ys5qbpyTgk_PwYs8JuKlLf05uDn8gUjwOw9FuuPTrLF9ByVMqLeo0b3wYmxD_A9KygQyi1Wnd83ZCxkyM5JWcyz2KOP0a9-ibaDGHzto1OfXmjgyjyVb9L7CCLy1XnuYT17iMX2FhDAX7vTJQr6M6gTnYv9ZsCxinGp_Kh4P-I1QfNY8aRQ_V8ZtIPCIXBF5Ra3tDOtXIJPmkm_XcYhA3d7fGBaUC3vo8i3sC59qL9Szuwdo8JwvOZZpNESmV8NsivtVd3rKXSFMOxO9YyjXVnlOYA7J49TyfEEVM2qfNB459f9FgsTCYYtaggxaEZHAJSvKz547uiJkyhrr0hEzoKs8NUZ_onKPYotEiyp5u2LF9jIXycbSzi7GNm9hXJ6KHzyV7JByx7cBYw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b670eca2d011-22329264','','','2025-02-20 00:04:03','2025-02-20 00:04:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42352',0,'cd-form-entry','',0),(42353,0,'2025-02-20 00:08:35','2025-02-20 00:08:35','{\"email\":\"brynjones30041974@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"4\",\"currentpostcode\":\"Dy47nf\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMI4oj_6ffQiwMVg4tQBh3sSgpiEAAYASAAEgL8MfD_BwE\",\"recaptcha_token\":\"03AFcWeA73OGy5hdcAFjo7jpva02MmJ7Xy-iMgR14VoG1jhNfZL3icJiZhRu5cusWoCaZjAqiYR9l8IOAgVqGjKMH1XyMFr2st3E_LcUGqSXvzGJWlScb-1hX8-8mNMX9qJjd4I9iWMieeNfr5m8X7EVbzJQXlpOu5sGyKhOF2iU0h0chwy0MG33NBcRynCKTy6Mf8Dydx2A3Wx5CvwR08S2acBmVKR3vRy09mJ47mqhLvvuWNDQkFJ9pwns17EXGFNdEypU7vG-dbEkiOyiUvACuCqF7EQhnOgQThjbiRKV5Ly6ogpZRqMkcNKa3eBhfBQBrD79aJ5Zy7FtvszHkygibLPOGCiXCUx9IhSxVZBgV5vzxrc8sTq5kW-XbQ2w47o2T_Xe7_VW7drDAWfFvItNh_JtiHVjRDtgAwugawx3FuNP5i-Qm0cAVwVfikRWFUcWnlz-tzsJFkFynJmMk0fdPiOvPfp9tdQrt-loXZV7kYe3wUZqdyl2ozkS_j9UaXoql1HyGBiQry7TnztE-VftQXk5wkzFzz3m0MJxMvd9vkds2qveRFmBQyUpurPM0dOUb759Ci32GhxqzjQ9qAehrxlgGGbvawf4s2VfWoHCsVbg729Edx_LkObt7FegGpjNwz3wg0ikMZ912MbEBXbOWGHYMWQWuZZwtEDkFcFSHrsvxWeBVuY3Kz6lS0CaFmcBg0kWyrAPudg0hsQJgu51IDFbj6bQZX9tcbUg7wRyXESEIt5UCg4r--NC5kvwG4zqoym_vtSiW1o4MfTrFsk0I8xsvp-C_WAacBq20XeMNkTNKwqIxe4PFo5z0a0R3alMlYWUt9RkRe-ydgxDajF916xznQqlXZnj07K-s_L4M7wG2ZF8qJ3nyh7MGZLJwjXRML-318VfcxJxvcV_pvx4GRnjjhIFytz7cc_ayz1q4hR60NX4IiHJKD_wKfpflwwXU3Jckv-UvgxlgVs6MeD7U7hqxKhclLyXxCtndjJa4Z_hmZv6PvJ3zozXUEHNwxJIJOhX7lHLh0hnrPPr6qDQba82hLjNkTcyALbEG-o1g_4nDeHAOeHJNTvn6SrSnzeleFD4TsjbiQwL9tOarGKSkxHbS9KUGF3PBC3pBp7JRD4Yu25LU6zSKddhRWmwyO1bhDNAZ-xhmWYQAdY7TGIVXDABR1JoqTFEVYxiUvdu4ACif7WMOGytONq9AAxedkIXglBZLWwFnC2a9yJ6h7K_YRc4zjZCi6ULMgT3XRSXZUNXfVgVsVFvXYcG_Xtf-mH-9qYgBdrJMKrAciCovR_GdwSSRpKc1RbHNHsu4_KqjOPOVMCuY6ZnCW_ZQCfWhU9emy5kBPD9Ymv-Ilm0SSfivOVDzxyVBKIVjY8jro81K7Dig3swlDrcoqhK7uvdJMQ8lNwbNbZqduhc527PoPImk5Ah4hxIG74H2069mL0GKWdLouaCcgLQXHnPtbWT09WJARuTmt72ipa2kBta8mZZoS7vL_uAg_cAThW4pzp_rr09pTRfNq2KZ8f9smy_cRn5sQLmXJIkxALxLWTUR7RLZUiUELpVuxlVeUQ-SaTtuz-FV6m6G7F3kycwqZGKcRv7Nqm7hfakefN7n80RbkP6h5OayqDmV3H00r8S9vMaFo-BQbNLxgUL-VIjIrLaL0CeFfeLXAGjDZqAowfOAi1ZRKQARoxfU7y47tW-_iFNWPqawXermt5wTN4-2YfvGF-HmvWg1L9vJ48Im8-87EjeYvbqWOxwIudQ0-WPv_e5gAUO0TY98UnJ1jB9y__vGI1EbJCKBS80_D_eVaC2PRtdvJefgAlaU_mlt-9ZtXwCGLsmZSeWEfBpJMIajknnTIh_LJEFqjkeOXS6Ka2fu1bOpySf69QFWFDGxa-_xdqRwR8X2jHgvDAUKrEW5rV8sqLRxQ06e8g4cjhf0TLuEo_rfQcZLAcT1KTSpsG7RbgVvXrDWWX-O4_0ym0vEy3aLCNlJK2LIXR2B6nKcAOxVxEF6WT68srB28M4-cCSMaZxYrKTUyanCIXzURs3OIGtBfKar6uLl1V_ym-DSJKj_7wmK6VuY4GJjChcTmxn-hXFjjptlrQCe9jge6Kv0W3KrRtK09G_vcU-4yF_nbMTdz2akR2yQBRXy5n7jD4PWi1R6p5Y9VkmYV2SgLGtIfXzXjz-dJhR_37SyhcB8WbfWIgso9fje4F5WoaQ6SyPep7R2N5VK4bEVitiDToFFnWkk4wAqbGmEMp0gVO4togFH5Gvc8mrxD8ZYcrrX43pEJfdOg_9nq7IyMgiJ2r9HEOzmSOpk4cPXWr2MD\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"3\",\"qualification\":\"0\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b672276e5814-60860863','','','2025-02-20 00:08:35','2025-02-20 00:08:35','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42353',0,'cd-form-entry','',0),(42354,0,'2025-02-20 09:58:29','0000-00-00 00:00:00','{\"firstname\":\"Lucia\",\"lastname\":\"Krauspeova\",\"email\":\"lucia.krauspeova@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAwtu9BhC8ARIsAI9JHalPWb9q3vCtOLAnv-3bSPBO-xzlpuT6aq1zpvImynJOHgC5ZlJqGKcaAkC3EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4qjSBMBXXxui31dB9qgakGxPbgpIW-bPm3gP6W4k_m-OKShDV-_TXKYvMjJxCbgNzrfpnE1vBkd-Zy9UhTJ5IxPf1mVQtrGD0ajPbl_-LXroDi9lQXF-p0KHu7o2zzUPaB-02pUUBDSQMF-sDKzyNRpm0Xkta-ie4sRmp7mZqy00j-F9t5KkN8tkdx7urAWW1u0GmCUbTJ2snHQNKIVEQCPfx3Is3eAjFQScM6St0yB9vDet6XNuD5J5woAcNEJd1i8hKaazGWuqRDNwW7LOAoLt7SJb0sHrC6lUGF5zvN5OKs6yCOTayBO49C_1pjgdHuPSRn9GJmEyHZDtDvREmiVchtDpdytOyac9Sb1_2JiFIwMswcA52jBXcq7obhyJihaL4LpiFMO9W8WidbP9OSOEbzpMYzVsNeORR3CI6nN79LyYPR_nFh-xW1g_N6Bg6mzoBlL5rP5jQcB-pXQz7w2AkAn2dyDmJtH2hbSY7hWIs_2Fab3xdlwVKWXBHY7V-GKBr7xsOm_obavoHVoVyaNn_TWsZrL8BFNkHeIylae_Zs74GTL5A5k91YmQwg-7UrWB0NoQJo5CH4c45mehm-mvQGIffoCIOCRcddGHEsuT3daHXgb6kLeogmUMX_MWWa3f5ecixo8en4afVkbD6biTkSziQmpiN442K4WItCChRq4S-4ue4vMRtYGK2D6z5aGqcm5dAHOwQf-UmOSGfR3mtzAX5WxsO495EWpjKllQryo5HOASoFAHUM74ZGbMYKxsquMPWqTBrg1tiTli-uL0PLDOyU4c0-9CYD0zkklX1r7lPPUfqGStqYVLIscK2whzS6SWCbyDh5xf3MH030FQbVacPCo7DcnpSy-9qXXI7Xpa_kkF5B4SaJcrsioqOpm3AYucHEY1CiTJRgW7Ru3LkC-pK7WxBiWoPwzF9lyKc30fc3h7IaX7LnzZ22oIRNkJh5UL3rEQqWX4ELCoNpCUIV_5dWQ5nrg5MG69Hi5Xgg7YoEZN7Cs_Frz_yl3aFzFN71PmmfUgL09nEWTdFBvDMjFK61Bejl7OvenZ6foLZu9Z2dNWP063iqMijm0mxl7X2AO4dzJCrv6GxkVpujpIRqrEJd5BTLuG0POU3ayKWABdeV2rAy2B9SnHmQDz548ylWDC8WFeI_trZCFx5XiOVm2_RGUpw1ytqU0ghxvxHgjDVabNVBswlHfUPmGSmCwGLN6MEgqof2k7V5ldYQBz2lgoH-quDu5QL_uv4Hklma4MjUbhu8dTYnRoWUVv9Lk9YY-MMIbfAhc9jYDsNqsrXtBAEbi1ThC7EWmMfi0B7tl4pS5bg73DuRMe9bYKFyfyn9u3yMuWCk7WI-LMUa4kUOrCjMBFq1SSYRy7PBnzX0gjZKPJBfpq_XYxriSm571-pGtPzmNh3UgZgLIKld_l45egnaiCL5fU4mIoUoo_ZCW377rOTvZhS-9PJ1e5KLBNz4VUIoy-NkCi6pS0ZMFxUyxhx7Vsp2DdaIW6334SjtnLObCO8CRvXimwIPCS4zrD_4cSd4JDj3BwCRyVKT0IFBd5qy14jJs_GaIJzTTKE6E_anlPz_sHH9ZidabDPoJMHsnm2EhPuqD8eHgsj5Kfa9OhyknbhkzzXOD1JPN061A4twGaE3Xhyb26cuzjJ6FjNLb-Oqtux1fFzYvOQlMsh9EA0DuhBjqcGX0_QdAPZFaQVewI2NPXPP1OerJgqqx7HNzE6vKRyHSwXyqQusvYdgCbnBPAZc6uKyxFNtNEgd4UjoQisZCgeKcUigiK72CSDSwKSVtDxFBRj2f7SlPxCWL5HrsG8BTlkOVkDj0MnI2Uo334IOKN_Z3zmHXeQpHsfC_Cb54DI5G6yqpL2RfQELqN_n7BgR8w9JdEEeAiyWJRrYubADpvFESLES8rdrcGBMA6taR9xAX5dOcmofoxIlmWuwyW5kmvXex1Uwka2g2g0OjRE0sDp8GNO1p0ANKa1Fs_zLYr7R9M0DE-KnVGecDMxNXmrHTt9iE4TVFVadjgA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67b6fcc5b7f2a2-86970965','','','2025-02-20 09:58:29','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42354',0,'cd-form-entry','',0),(42355,0,'2025-02-20 10:49:49','2025-02-20 10:49:49','{\"firstname\":\"Ben\",\"lastname\":\"Gill\",\"email\":\"bengill1977@hotmail.com\",\"contactnumber\":\"07779157417\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAwtu9BhC8ARIsAI9JHan8AhpTbklKrDrg3bzSknwlJG-iSPe63GRt4iKPWmj0tT9Vvzol0TQaAtGMEALw_wcB\",\"recaptcha_token\":\"03AFcWeA65b5HiEy3mj4VcMAtmIPZp04v5z1DLJlDizaf9IKqKONAYtjS7asUFIbJDiQ0KOWMsN9-6d5eKsp-JfK3bl-Oj9rxofrgDN9dTvutQznSeop3y53wPUvKHrSDaGRHhv-Jq5NS-1HfqSv_tHiU0FsprWI-hYqucM-4H0Ie0hHIYQp2JpXzt3VTPV-HwzCpCsExIoqgD8kKFIFm-kM1ePaNPCiDJdghpZw5aH7_s5XXdCSbdiHCkZYnxheTmXNm9pujDnIq0-_b3o4ZjURu1neuxc1odYq_6Aw7lpFDVce_GA9EAlBwrKzhYnuPPbgILxD5R6iY1OF56COSEd0D7JohxbweUYf5rDqJXERClIi0iWGsAHY8J0THo4B-gWpbDL7dhwA6-5SvuDh5r20g1-rGoe3IHysxumwt3IgEOWQhrZZvwEaQmRYKBiyEdvW2lFas1U2aztaKeYHTgc2qAtuFqOtJW6zVo4VgaZO70Kp0NKftR4DctPI1r6V5chTyMknS1QWMXEPNeYPy6GUNdkvPyr-upnDk2B57_G47K39L8aulYm0K4EJkj8v8dpr7ZFYQMlYhAApgkmM2IqtljAZUs_2YMZneDDlkuMj50rVbC6kBCjrGOr3HP7C5Y7gOyB6Y04bv-tlc5OQOVoGVZ4Vu6A5HTKyL-InFQzosnIBpryzVLnimpsRfgqyT-Wo0AGgwPgT8E_fom1BMSSD8O49dTWInQRqctJh9Y10U0jpCkPEEPwHeb1Cm3vlDf0YLyrZW-NdG9pq6jOvs_kwwsSd_D_oPB_qzyf266r7_NuK7j6ob3vhiCSizjK_9ZgQm0SnJr35-EpxN5e5iP00l5ju1MDP6zUVnZ6Y1Bivf9PN5b1mj1qyqIzq-HLewxq486GmJMy-KefMA86z5a1dPVfsgoGSDVHtVT6uTBEBYxCrbNaYSXwynKgvVdlQ2yinjjNRx10Ld_xlWnf9gERJMp5LfBdYmjrQhIzdT6BPGX3bK8_mNBAn48eXT6IngIOaJdtD73nWzD8hYmZf5tDiZmK3QfV_dUBtvn--u8MXLz9-Q05AklPu6awI6CUHiyoDPHqtxWsJd1wBRtGORW9YPAQAPMI1b3bMDWj4tnLSWqE5v4CqLKweYWJaD1e2kz4HLhtEcwwpXPQX0S1V6JnYwVHm4Jxx_Do9ycFFz4dxngN6GPZ-9vEPDl_gs36gxUbaXyw01VvKzwkasa9g_YYgvr3o8VMrGBaw_qUkoDWnoexdPgcxCvhgPaty_A67jKuPaGSUTYHHvokDHGFhzCUqxxXZr_y6x1Q5IMOhXYOmddm80akWj_-hzMEY1_-DQrkSc0NAToXZBSpgjNfSMvylN3_hTCB1J56vZu10TTfoSVv20jJBmA2UyGsykwDeMy9rLor5Dw7lx5otlPzJPKb1Vt6DxgRftfS0BkpCGbmwlk8y8ezxQo6zX_uJm_JQE4kDx0SDGKTc44AVfiRpRMiunt1oo1Rr4zfIo1-zKKH1nvBNgyTMKo8a5djwJfguDwpEvl27LryV9-Bk3mMkuzDSb8yBh0X_dLMx5I_pVv-cgUS9l_3SNMehsuu7_hV6NulTqGixIT7AsBgIIwjgSLQzAsU3BXH7zvaJTXa6O0Dnwr35Qvk2erijcNSa23AFYhO-24LG08T5c0hdhjsJ47U15fmiHJcWS5Bs1AoEihrkO8AGFOAlUdRLgG6GNhzCF9WXbvv6f9VdIsgEugYbNc9urhOySc7wYrG1v0pf9ibyY9F6BLkc2Fh89Ef48PrncT4TGhGOz6nvk4BifG3ABxws0s5ZO4P5-1ue-MhbqbdsNnOh8hkXgL_-7RxyUUVsVCTR2WqtG-Qrb-x4uf8mushn4lbbCElXcWiwwg4AV9e7gTpEx7MC2QX4N2F_8MZuW-qA0lqmEePHOiHpJToYD3IvCcxuI3V5bzhSvRMhDvpjClT12sXGUDsYEyPKcJUtZrKhRv_xhzOPKpcv9Oj5ZL_7ohja3-IC2cnikPLzSVEtFj_Kd9EOkvqjrtyzngTV_Z5Z8qoCROmQ_v91nOrKOilbpNuWsCrOC0-h90Wu6zMvu2S6mQ_cQK6ikkix0chzgVmGH1HYLvHvQL1blOW-TIa0VxlaLohszAB5iNhjP-boQZ_MT4W3OeUvJPx0abu0T8U4owHRVX7b9xUbAuH01z2yMUJZz5YCKrTDNfLb1hWZXZx26qK4ohMo2ePExoJPvb8TaBLY0f1vjTBLuig0QHee9b3QdAGKEEINtRt-5bWkb3jnE14uZKKWg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b708bb7841a3-90824503','','','2025-02-20 10:49:49','2025-02-20 10:49:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42355',0,'cd-form-entry','',0),(42356,0,'2025-02-20 10:51:08','2025-02-20 10:51:08','{\"email\":\"bengill1977@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"regionlive\":\"10\",\"currentpostcode\":\"SY23 4BH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAwtu9BhC8ARIsAI9JHan8AhpTbklKrDrg3bzSknwlJG-iSPe63GRt4iKPWmj0tT9Vvzol0TQaAtGMEALw_wcB\",\"recaptcha_token\":\"03AFcWeA768F2HB55Y1BspkNuh-tnEiS1mG3d8K9uLThOXbcwUk5Q4cJBejxT8YLIgAL0m0u0YmjNvgKXtQs4lYmUjJxLZXJNJSRT6fTvOVnOQqIRISFU88iyW1YtzTCaqCJs1B36JMHR2QAaf56vhdOBTn40OapmkxiDDQ0kF7ODu3MaDRhRTTF_Y55XIiQMACGZ6LNiskYiPSddG_0UNin3UGhJL7AYN_dqv4WqPfxDi3Y7CJbXUM-AXNtS90ojq9trhTyG-C1iatuu4u3uy5U9aaemGUR72-8MJ8lN9m4AxBb5PYRQnywa7G0zDSdTkZsNPaY_Mqto1QLp5Bm4Ep6SgrHK20EGoKub2NKT5-SS4_ustnU4urAbnyY4vD_C30idH5BsmbOVTwktMkuPml-fPy4kydQTmuXTF2xHYx4Es9mV9Tc2v1OtKCt53ZfJcz-jd8uiv5j4es8H1OOrz3JPEjjEKKAotAnWkyxR19LTf5z2bh8lJkeEVXJX-wau9zjIuq1Z1gxsAUfFCX5Mh52YtcQhN2Jc557HIyBPmiCKgzcObdPB7gEeUFAsNTM4PzlYKOdDvgZPPTGY7lb0g-j_2etSUhuTIVvwJbHZlgy72rI9DE9KeZG8McFgwJ9cN-Lqe2L-k-TysV-UVQRh2z_Q1Ui8XlDIqsCj8N2_vTgb_A_hj0n8gEYh4ehXHtDLzr07o17rRebmi4UMZYBcM0YgbySrdrzUmlGptnCuYntPQyqrfDlDrFyfMcfTgIutovRYAuIFy9cY3Dz2RzSHvTr16MVDQUbleM_v9-RjQuH9sXAetoTVh9cir7NDvj0mM-al1akxbQTBuJM6xC-pFshWAQyqnZt5h1syEH0GDICVlsMPaUwpVfXzZ2Y7vcGjcSTz7UUxjQ6R4Pk11Cchz6z95Pp7NpzV6RPrSCKepaF9RsrsXCPUjQrgRp29MbZOzalWEtWvwwVibyj80QTOe8FBDotdwXvNNU95YKg61kGDnKyEloVXnoBr9q37uDzG2qlpK9X4XHfJqTT7GGooLjY5Q7DsXzndwPzsl435Y-HGEa9sN3oCygzRLIhRSVa_Sa2AJyajNxvt9EvAcPW6z7HdsQR-Eixwd8SIaqKBlXTpBVJ5wJH5HIgWkFMIWRxM6F5j4X5yipAURNFdQIE9UfbykWbE1VjCxy92CSrQANsfgaGlW5NyO99NUpR4IalOPYiXLu1To2FYZapfa4kPc0NpHoT856TaBbvnP26II56jXS33lauVktqMZpGI_4_0q2UIfgvlQP5IaaVf-fwTASo0U7k4gtZDhVIfbJ9plNnWyrPLOCn6PZPoji2hjLzg5DBB38v4lD5Dw2LpKjJHMaZqc2WwESCcU3_Ikxyqlq-i8rXSPd0m3cDvy1iGyu1OJjW7CXdR_a4_1H_1C2_bTJ2Wc2h4g2ffZnMgSp60Zy9YqBThoZv3jmVm1UpFVG8D-M5o8XvKBew9wfwuwknqkRx-daAqKljFvUV1Y8zon-v-fvZ5_wdEeNCUBuO_d6xorCSi3GB0Jay5QFFepl-1GYuvaRJNO-2dNOQn3bGNC5RJx3VrQDlqVE3JA7J_38YvlHf6ipVF0HFJba1grVuQ2652rPdLIaZtZc72tRqW6j6l9Tipov00HNXWZjA-an-c3eCwa3t8R8Pzyq52tEr67q7yj3fubSBFqpG-ph-gabiEIgMupzTLxlCr7CYuIVjzmfQmanF2Xi9ChrRlAUu-w5VJ9cKfv5q-lq8U77MGxJF-fFvYsfwQ3zvS0DcG5eCbg8e-LrEOwgW2ygwr-Ye6af7kB1lWo3qNs3n5tjBcsNbWIANozxHg5Gqvp22AowxDyIMwWQxoFNt70VWAgE9wufAM3a2LIna9icMyv4L9prF7UCqMebawYJiSCUpdukw7Bk8cl1-YUmKCwx5sKcXeGWqSPksLi935VJbR4BhBMAfUeBeBtEfjy-NL_xSdy-lQJS2PGTYofeW0aUhqAvucOvub2dhFv_Cymj7q0HEwOPc8T4Bx4WLE4N02JzCDtyHbw6bQlsGZdzhdpyAbBqa24DEUMOv6lNoY2pfv0BIrGLiZJLzxc-dLTJqWaVbahmeLqMBc8wy7aMQgr9XKLu2DMZQanaeLMw1hBhEnzRUzobc-n-Y4znMVitc0etkhZSJQ9jCpGLJEgNB_cvMcmKkOU-Eb_RLyyGy_Ck0pGKtFVqEP2CeWrHd4zjKwig9csbdqIHaqxKALWoUfHSpBQSDlKlLNPgGbHGGuStfctSkDiTNTVpznpVJ3UuwA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"genderidentify\":\"0\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b708e7458b65-92962705','','','2025-02-20 10:51:08','2025-02-20 10:51:08','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42356',0,'cd-form-entry','',0),(42357,0,'2025-02-20 12:28:33','2025-02-20 12:28:33','{\"firstname\":\"Charitini\",\"lastname\":\"Pavlou\",\"email\":\"pavloucharitini@gmail.com\",\"contactnumber\":\"00447552527673\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vXuUa-DaohTjqzls_8pVEIP&amp;gclid=Cj0KCQiAwtu9BhC8ARIsAI9JHaltYaf9xrAu2ydjr-hXVtzYMS1NeA0Tttif-CSr_oNi351-an41iHsaAoGdEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5DMbbEwIHnsz3ajIaZMMYw6IRh9antk2byHECRaQ3lyFfRi4o0xSZKnLxPb0JSirJYnWlruMMFc7-nuiIvbSB2Nf3lu3LKrAv2FO_vJ5YleYvom0BE6Uwksw36GkVScRzWVPENerGeEhAghrFQUUh2VEM2MMHb6eXu3mTDaHueRzFSBJPlIoOuOafNFRWff4aPvpBOVtBxbJqTLQxq1k497bDHxTnrHaGIQdy_jLytJNSJIv07tL2U83b8iYhIxZ5-l6POYgcAC8D3ekUI1U_uTMjOhNKuUn4ccwFyNJCkab6IzYyNvIpTdgH2O9HX0FmfNnkvVnDK9xLKgFwbG7tBm1NZWsVsBOUPEkSVn3M0mobUBk1yWJTba2qgGXbUouNTffR7CJpHBv9AiwLoChW9vnCuj1uUL_79eRGRTYBLQlCplPGCvhKKAxjPn-HLZaEYBWWCvXc5k4CNnp8281bdgeP2wZ_4qEHkZEXO18vI791jHpw1usEM5FPzubeZiNO9DjYvjlOlxAOJHDdw7hET3rQOb9CDRPxt7ClLxAQwl2oRVrzt1FD-e5UmkypjHR8EBl8FlZxdy5MI_4q6QVI75EC3TJ3o0760hpf-B3TaUgMLKCjepv0USEjDepDgeM31plPRtzGfZZIdIvyBQb9jsx6fApJBMsBES3DPwe90ZpC1ri4oOUyckicxCnWItRIjy8wIJBVe4db3eImsM_rQniBI1QRLw6gsnjwkDDE15T5yYt6hopnzTMIY0wm442po7zL7ufnOcur4AFi1i9U_UEThd2yvDrvWiJjZ-d2cw7UmG0WgNHuqrQfTa0s6NUNkkPuJ2_nw_KaL9LPZHo0GWdz3PP8SpC0SvzP8GVlLFeYO5EtG8DVecB6VXz2c4cBpi9IEPEZvriNcyxARlZrin0Vb_4_cQY2YRBSG_SI33C-X8t-8D0Vjlezx1bThS-kJrI4ceK88OxwaiZgkP9kQU-80qf973hN4nST6-J2g-9VLBzIyw0c0k8eYooGeZmM97Htw_DYIQj_Fb1OM_0Kok6ewpWJWkvfzxQqiS5cbOWGhz2H29Xy-Q0vvazeFAk99nem8K8nm1cfWeaNHzfPdwCH1Qo-HpQxjMHJO-zOl5yrvxWqBNTcjXncg5FTx2nDUAecxEIVL3-KmN7xtmxgDEKbj4iito31qkcuqh-5OouyhQNd6NVhe84MNeY49eOfDyzXu-fLJLfV9fz-oXfKTDr-w9Q8sjMiZwZnA-SUzazd9Vm7CU_LjylbnXgArv1W2ETXpIqHjOGrDWnirZ-615OCDSzEQNBGF1hlR6HdjE-CBOdK4vJhPD-PyrveuvvfWW_x3XL8QqzEA8Q2NeMfKu0N5U6Xgp58LAJXRC2TpZZ5NH1heqngbRcJWuaxFb4vf3JAMUQ7z10te8LlmBnsxU3hpGovKepm-UCx4z0MlJn7u-YNzz2RPIEnGPp5uf4oaxK9x8L1cFTUL_ZZik7OSA_I4EpkKHwuWDLf5KkkF3hatRzXcr0HgEbgCw_vP8UtaT6UFGpy-jLp8mkhPm-zxPFI90H74jOIg51l56tBTsLO7ByYu0L-bFrA79TFhJLWoGDtyi5uNV_PTpimnbTMe9U-1o1q_6vZOAMHlv1dmmBfoVzUhWkOoiX_7zf6TVTIjTatlwdjsv5uQeYWaoXrkm4wZcB-JYS7ioMWgkAU1ZID--r2yGf-ORjjRAn9x4Tc2tCvr2x8TluJu-RdcXQ5MN1aLEnuX8yLAtHSWJEKHBTc92m8_0vDfmOUpkV4rE9azuVt7TCJCPngtAkW6XmWKNiuiVMTwQ5j7jck3ZoWwoPq4co0UZovNQwlUhw4TioqjBqP3Wg_xqskCe-lhiMDf7PC8aOYNw1pPqnWGxneXi5fAqY7L5Rjvlkk5H-1z4F45mzCFG48rCNX_t_w_9hIl88vh4-s9E2xWnXu1lZ75UcbQHxOrmPZxkiMB9gvDgwghcJXQY-0walamQaffmBZZL887m-TGwh6o0mnvhm334FCwlfuH7o22RqbFMQUKlRwvIx3iuj4xXv2cxqZ0q7tB9RiQVdLecvppeI_NYWlbueUlhnE2z4GozR-JPiuxHZfsFq-wBWhYcX8GS-T2TdQg_s8mBH54f0nHdlkmoZbVRCX5-vPyaRAGOAHwrlY4ETMSHK6ZV6VRBYdUjkqb_316IL0QlOdMnBoqsgif107qP7yqulPsf7lsEdX2CwEkwcij_mI62PNhbF3f4W45_U5lZK9Zfh1-bNjiwtkzQoXQ-fVSyzGQvFj1NJorxVDE3weu7WPujuLN1focHotdfv1AxSr6Eg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b71fe3305f12-37336273','','','2025-02-20 12:28:33','2025-02-20 12:28:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42357',0,'cd-form-entry','',0),(42358,0,'2025-02-20 12:42:00','2025-02-20 12:42:00','{\"firstname\":\"Tyler\",\"lastname\":\"Sammons\",\"email\":\"tyler.sammons@smnscoaching.co.uk\",\"contactnumber\":\"07949392062\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMI5vCegaPSiwMV9IdaBR2itjPaEAAYASAAEgLJnfD_BwE\",\"recaptcha_token\":\"03AFcWeA6l6-4FChLVMCJKCYrsD7QbyHMWb2jYWMFtjCouFCWr-1rEu08aVAUc8_xlviMjyNJ-HB9-CmTebreghmDX_qH3U5Nmd2vkZpZluuCtwBh7t9ifZYhwfeoOcU9CI65qgf58_tUWhX111uvGHrA5b5qAnT_ZskmiQKO6gQyVNL0hqF-roY8jxrMZ79TynUKcIM7bPxO7YrSUvkb-5bi03yq6VFEOwNYeo0gEcTmSNmS3KNNzWy-nRL2ikl4Jg15FtJWDCKgXaxQoi5VKHBSYaeG-_XsHzdAIgpXfsNuaq9jwaIoYvLSk1KKItXt_0UMBTcKXrKF5y2O-mFDZ6P6Kus8tx1AUm2FEBfTRNJcWa6xXdTmkA29Q73h6pZBgKm8zamMKHsI1P5o8Y9L1kO8LKzFx8oe-Sgp62tENjb8VT-8moHpeIQw5k6pUbF_ywmOkwK2u9dU0ZqsGy_c5aQnE2cO9MMhCfafZ-W0xzWcLTnBL7aYwB3Em3o_osOiz0HBmQWfc-GvD010VQtb3FqgqswYoz7nuPgIxHp5gDzJwic4nKWQOlXWrzYRHPnfLahyB09O6d_tCciq_zr_bmWq3hbXYMD8CF4L40wAGy-dkd2bkrqTd3xNeiJW8qGf9sjk9jTknEOSWk_RuR9LCrBSZ-QgqqnA1jC2HzvQc7Uob5CImuWhy_iqQACKsKG0qmvqYRlqaHPKw0mFPlG8XqsB1TlvMjtcVKr-6-Xrzq4Tj9vuqvhfjkJRf2-5cWX3hBvCG07ngHNtlR4mnoXlLfQ7bGngOJqBG__iulz1QnRy7q387yw2gYGoUYkdn4jaqWn8GqZ8tY1IZNGbkst1bakunInyue9fzbUEqo29-OWB189cmn2p6uzziNDWQST2ugYy-CTS-6tjDNu2tsuUwaZ_5Bs0ZuaIUhRbSg1r9RRIvlid9nRFnYDgugkYY8PEX3vIFSrYg3FGxlwDx5BtIEvTiZAgVg5T8OsELfRQmGNhXthzuqeIRBLv5X6YmFBYegf7wurVyEmA2l4MIRy3FydNwbohaX37PXzFV-ZKxNMipVDm7_Lv68dZUH7TwCcrl2MlmWd-tYWm0KzKUsEFZB6Jnk1FNlhZvFkWutxyjySw76m6J08BxMEcOYvTRjqtwHAEHOHlPudG22H-JW56puVEaegrAHL5yCAqWeuREtuL9sbermStVV-4CucG8JUfrqybrwtRgILQRaBKI2hdCsUWsQCG0oecyB6I5721LDdVbzpKctgILhvOr3Cv3jGw5JNyNuH3zPIreu6x9jXDj8gr1uIn2y8HqGrCzKYUY8Xklk73pz2EcMsW0AFsADL1Cje395W9sDg3T-dSwMaebJAG6Oj8F5f1ya6Fz7N6yVVZKq7M3BJCrjfapP2BuKH5y7DAqQCJNO_56EcWyjXFUd9To1eaH_mLjFT2sc4FiusKchAQe5fJQB20CW_lQMFcud8WxbrJ9179XenpC5mmU1QAHu4c8WwD0gzb-A4kZKJo5mdT5J1OnHnOLua43giXbkhQbSudz1b0PwY5pYA8m8RIJ0CeOle9u9UKHWRLNkSfbGXPXsxq1-BAR_oKEO_-EoJgUFg-AH3IF3G4QlfyEdDWBucrxFCVuIBVXdFTgVDhrqfhbWD2eDK9-ggGizYIabnGkZnKY8y1MPe_IRVX-f2-r7MdJjyd6ewXmEaxnHTtYmDKMsWBJXlu0QQ9eZ5dqtR66ztDLNv56AiAUT8OtDRDEhT_pmKbpjQs5SFnxBghzvJJMwFk4HaWIWyJVFOQnG6jaknQLwwUP_4XT6kf_GE_vmKqpGqbqqymF44xu7Mvk44lx0n97jP1MZom-aTscqOJeGXu2G2hxTnK8THUADgSgWUFVXyhqrk_k4teaUOTqHrQ8wBgCdShq1gKHkhDmC7G7cqPDkUnTwCZCYhjiiuHPhlfL08HkiD0MRJrJxa_H3zwQMOQT_LAu2sKQrRkM2K_TO30PiSm7TIJtSWXIkqx8fOLS38ZtW0FN7WIKnvrCQw1ylxT3yZnr6OWbz5PWqk9rXZjlVW5bSSWO3Y1NUKihqt3z5P-jvQ9xXReHg70Bq3um43OtC2s\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b723030f8fd4-13030768','','','2025-02-20 12:42:00','2025-02-20 12:42:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42358',0,'cd-form-entry','',0),(42359,0,'2025-02-20 15:14:18','0000-00-00 00:00:00','{\"firstname\":\"Lucy\",\"lastname\":\"Garrad\",\"email\":\"lucy.garrad@btinternet.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/tom-waldron/\",\"recaptcha_token\":\"03AFcWeA4DmVGZWso9tohMFL-1VmtUvj_ARtPH7fHUetwszJtaO898QERxVhIa7KhsIakTo92Gj0nRUFNC3_7VSCv_4D97pqXrI26ptE9L_BGED_WZ7F-T9SkE2qGIEbBb_dBgZe3RVHto-E3DGk_PvgJFn2fv76d90MYiD-4gKjf89Wlo4xU_xVfroG2sLQZP3dI6XfvAwQgf0g4GE25L87SS-kiwaBOt0GDQ8N4yWt6ZTSuHvLoF5rQfAVBeDbFfpuePOISSKoieXPgXg33rUrrUWJ7DDwWlxrZyYeZCn2-raBaplHjpl-u9JXX6_L71skhfevpQ9EymNNd9nfrhr-RJOydf8Ug4ctYX9UO8x8jzfmwPeKH0C7JKaF0vRCPJ6XVKWyeuRujXWOCQy-kCsVcLXmTemmTPR7N3Ku3L0WGFbghX8WgVhbWs23NVpEqjIcEHJPNUoIeZWXYaldTC5DVAxd4ZUhO4B0X0ZifOm5hSn9J-C9Qu2uqLOQjhuUHDy8fX7_YAUwbEDETy2Vq4_LHNs9mRiVtgnY9zxMYCe2DSU-RI7isdL3kc3GbHZHqCaVbAHyTbPDe4_4scmr9G0O5iyOGRWlCVjmZ-YdWP6I0XycBlAzhlH23mL4O_tiAotlFdDztIF9QyBLZl0FdhmjpesrfPx9tRFDzsEVygKCH8LFMffJbGZZpzv2D269mzMh_xHdDLf6Pb_zBfxQEhqzBirc7rDBe-1TofX5FIQVCMBKHQPSlPRzW53Oi5LnFt4PRud51befWjNekiH_7yokVuhn3-1TsNZk1xcJxZxhnSEd4Olj5e5fURBeaUCYcVnC_ywP8jbTdeyej4Q9nEieA2yAsgcTaeG6-NVyBUT0cayDvjEtDzFCIvB57xXtMJAgbwfFEBkJqS4R5MEJc3jSTuoVxgPUho3n0PXXgNEt4Uot1E2vz_7VgOKIKCkjAk8Llo016SV06DDBgZda4Hg6EEfhUX4T82U6wFtAUfsO9rgVn7GtDSKre3QzFUjJR4w7gR5x69Dwd8R_2bA-ebmgpULYXV90LFCW2sfRs_mvlJOJ-3IlMvpSIdZ5ekAdgyARjGAFUzy9q0buRSxdQuYCM9Y5z7_d9PSefvh9f6Fvrfhq4-KShHLwhG0Nj23m2RsZUsQGdW3pXYr2ef9SICEsx3kZKnt01e8H7ipHjQvZB-NlCjGD_pPbkUe1MQt4BMyGZMcmxqGLfWtAlmQJ0nCewhDAQkYt5qzI2kNQvufnVufuDXtFX5JNd8KV2k3YB0qj7jPGiLPUNydWxWUUCZ59w_cSJt8xAyDHjnODMl3Jq6V8EPWRuakI7ZUVgMksl0z2wXqeFMGbzb-as8yRWa1Sd-KuNUhYiyBmSr6WhTvS2Ioq2finzafAJDm5q-iPGFLy1P1qzrfugxFIvQT4mDBLvKKB8GnVSWjLEdl6Im9cwZFH_Wvmbn284lEjm5M72KwaZtpmKpiyM_m7GnEhvkMSCXMNJM4GASM2TlRYSl8TiE3BbJygbC9fSCpdxnjlVleq5EWkXFywsWpdAjoZXqFMJ6f-FHrHPpHIv7JOq9Rzz2VOXDUaVnSMxbfz2zmWDYi05XbyIoJFhtVYjcY_96KJkxkltJSaGhRTPRfm_5U63fQKvrdHVE54Pi9_Hpq9rUUIFzLuDgBgY_63SB5Z4iAE7Sh0ou4RjUJs390Z2XcJZvjlhFl0mt18Tw04yc2VyNyZLCZEWoc3_Qm7UE---pPAiJuruFy3ddYMS_6nclNf2Dkohx2YsqWst7xFWGFqfDrh2kBucPZNUINJM_NSM1uqg1sQk9xkDbkF2Htz9ZqvKAuj3EKLXCsenZwHbXF6YRQMrt_sd96kSRnbU557LF9TSFV-QV57jbNiivAe-HG9ZYHHFhp2TvrxyWvb0qoIYwmN3BoF1x6JG87bUDsw9G8ByNmLdXCpwkchF-X1OJY0MS4OezXGyLe1_TCDgGI4do2PHiRU_nnLlPyWCHFfML7Jg2yFTyJh0SHE61aARkPsJoridtxrdqMMQAhSbKOg266qh2_JNTsoXA6spyN5i2GOQ_Bi8niDjWGATTg0G7QNPMBIe3r0OoLMmHImwHT_gfqoopu_HCQJuX\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67b746ca44bf91-96985222','','','2025-02-20 15:14:18','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42359',0,'cd-form-entry','',0),(42360,0,'2025-02-21 10:32:03','2025-02-21 10:32:03','{\"firstname\":\"Anastasia\",\"lastname\":\"Millar\",\"email\":\"anastasia.millar@yahoo.com\",\"contactnumber\":\"07759811777\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tl8gkdiknxa7QodUDeBpxdD&amp;gclid=CjwKCAiA5eC9BhAuEiwA3CKwQqdhZIKnrSoJDMFN8MztjQbiXTwhyEB2_36fj3C8wOqkQhdfBcATkRoCRrcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5-fnq0eEQChCGHU1j9tSqUWGbb3Dfp5uhTCSBjfO5uteP7hNpcRHD4gt73aP3jOWBdJzoTTPVnK_qPeJeNG1kxNBf4Ik0w1JM31-OYoHga66LZgBsxEEY4dVggc5KrxLHXISXyctfg6ZT0vPZ0OlQqp-7MaoTD7tl9-s4jiUbZli7LVX33kKvwkXO0tVHKBxQjgwAIjD5QukHsAcJAKb6JXmn8qZL8TwRPlG5H3UJwzoIo39VfaEkLTUi8GQC8JPTQ72ypTWrR8IhLuGMNF03sJz3kmU-UC4rnl0NIjonGNb_d_9jJtR0lXwYuUXl0z5xuF4nJBcmc6Xb-2qhCaaRixvKn202zzlDIz44yZa_k--KoQJ0hOS_c5bqIllk3xzpoqEByYEa7o8EvYIbk_sQxd0esSCQPrt45Y295Z0KLEd7Pr8G3fnFaL8VRQRhgHplTi1zRZ-LkgMK3ltvK4VS9Ppo4mCXXjsXyUjf1IltwsqSKbCdgv7CIA1RS8AIIvee03EAsJae6NSLtYRG9s69Jaht_pLbiAkSmhTtW5mWhLAdYCI7PNrj7vMnt9JYn0iz4wphywXKhf8zy2nj1lzLGPxK6DRbn3UV9EBHQHdYXnX6FVIpwngoAnK8NJ1Dfr_OmdhP4mAVDv-KFS2xpRKvBWI_QIWcJmhaeIDAObDCbzDfRLF3gvBfZW0uTGtDaGQ9XvX8M6hGyWPMadMU9EBSMIdQgnqpgWvudzjsePLoWame2qPqj2oqrKEOhwdBwgyrQjVUiCn5-MccsgUrZlFU8O7z11VPuwvI75ZwJDponL30HbRGYV4XPs5uCrOWa_QksWJDKjril2GoPDg4cZrIfngQewrBlLj2daAbI7WUnnXxQnXPEahc3MDQFUdVl1OMeuIeuWDvPzgGRFaT-dGMjwPPu4cNjdbbNxHNerkw0E0qUn-tYauzcBB0HooFbdFUPLF6DGXTd83-owDFch_aLuV86gGx0tv8IdPky0lsd_-SSDlKoAPYlOmb4dGJ9UwO5ZdyMNG7z6cRTd5RTu7Z4vu1y2O5332yIXRopoJVvct8ploDuI9m3p7N19kOMLjcmMBWhhW_0udVKks2LzkxA92fp5fN1ZdtsKHO_Qw889mknkD0C7fDwyIRp9DzkVtGcRk0e7cVJeYBQj5CdFGL42qJrj4bxCE66-0pzqYPWy5izcV4n0bkXSBgQHeCGYZiK0_g_-SIlrBUTc-CL8sWIBrwBbDYZL1UxTWGSVRTljKkVkP6-ykZ5tOp3jF8rsmuZFH3vDZz7q6AL7awHf_o4iu3Bpz4w9U8ecqtQEvyvMJN9VRMbOwbft8QulYNxwoyKRLBlbntdN5kI9bTCwUnixbTfGkGiaLwksTMvoGNrfieMkLhYOExlH9Ym7VsIEsS7h1UP5GwcgPKfW9j2Qs0G-3127xI6HqPeCc4tUFhFNEqmVhqostdm26gYGSYGp9cwJFYhpDWoTDesLsREGMtT_ypeA5R8-cOqqpqDANcF81iqjzHfH5g_0E6p0qpcqTq7-R4OAKrg6las63IRRQPwscBJ6x1oGbnPULncIRrrMvBTLthF1KZjmFnROLGC3LvrdOEYtBU6NL85z9OpmIPtE1i160lMFaYXtwNr7x6ib1R9wJdHmp3Tc6PH4lznpEGH2wzGZfQHHeaR-Jaf_dc4fOcT39d0k70iNa2Srj-Lho7ilKnuZbavyHe00fRn4jCq1TD1gmZMzW2n7anY9mjJb50nc4npfvnANU5iMVgX4imoGeZWQO6iCTECFqDWZyb632Z6x-sN-qEZrxfpi8QYQQAgSboZnw-Xh0Ib6zTt9bPl5GcwVL4xkqzQVjqhrUQgvZvPPVL4mcZZiS15FUuOsbS-20YyKxkHOTZHVQYY6LwUW0Hm_2f3eYTB6rU1uZAXGuzZb-aW2Hl4iqFIhLyuemlmtGVgYKMDYgyo_gRe5S7WLqD8os6anVn-1oVJUTEWIRYxEvwE6sWcB0oJpVdoYHJlS2KprO3J6oQ9SutAI817puHYcD8SSXiYMRhUJ5amaH5Ru61WrGR9S5vrx6QWLzTh3Nf2fjBLnt9DfW4DOwkXzgk\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b85615c32934-20965076','','','2025-02-21 10:32:03','2025-02-21 10:32:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42360',0,'cd-form-entry','',0),(42361,0,'2025-02-21 11:52:20','2025-02-21 11:52:20','{\"firstname\":\"Antony\",\"lastname\":\"Whitfield\",\"email\":\"whitfieldtony@hotmail.com\",\"contactnumber\":\"07553185095\",\"pageid\":\"39245\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA5eC9BhAuEiwA3CKwQiPxeDNRheYYnaPHTuLvUhAf-dLUJcyBqpDxUnHGk22D6nlaKv0lihoCPs8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5MDzrNn8mm24eg4PXYaZnwEMF6UAUEZhChu8eqLrJW4964rTdfqcjLLHsW3NSPazFhKoKz0gTtUyTfbr-hsfE_L3DiisDL3177OXlV0dvpdjtfe5w7zebT8K-utDueMWgHTfIthOZDLBZvCJ1PZPZhDymuXJ5Dsci-mPZJ7aKuPQpSGhuxPSn0mL1Q_NRwHM5qV0oTMEFPw4SE48fjc5GV_FhO5IP2JEelAfXCbNeM3fGUSnZNivWSLh9ZarSJLpg2di4oI-HvRizeA171NL-q60BrlcK5P3J1HO6StURzTVgQZM979A_E2Ug0R3WQji_02Fiu15ZkTxVk1oxMK5aDTGtgIYUg9rw-GRHXAKBPnYM0ejeHxg-PSSRYE91Zv-Mnz-ZK5ajr6iWm5lCDU3dUdm3hpHiUz9WZ2CmRUrhhw_ZcSuFq-l5zcAjQwH9AzmbISVx88OCoJ7COkxO8NQFJWTqklCkz4SuMq6hOYqXq5Z1l2aD3prQqz7MtpSSUUYikcD8BPCIdTysM3aGwD83YZs6BGGIQD08lTzHw1BzTb2IxG-8PuQmGcRfa9mnAwQJyyOnM7u_8P7i7s-yIzl2lTc5ZdAucyovIXdhLo97qf0d-H4F7BY10Q5jYEYNbNFL-aWNnakm13EegvAZjbSBLdeNEUg7RXk102AONt8biESHwHDNzfJevTGTvKCVbVyOQnv_m5Pqo8k3krZQv1s53c3rzXgyEQd7cBpaiUFRnKCSPr1MlMBcccF68Q61Z8BXsdRx4_pH_-BlUyXqVGNxdMUsTMOuhVH3-zaL9AHYMyrRmRwRJ7_HccXLRztom6-b1KdR75Ct_A78fb9bpFAYfP_RrJG9cDhFZE02HL2zeb1ktIHQ5rgG4cQUrYcADKggqfxSaOKArnlTZxAXSvoWvUGACx8SnjrwwbodhT1Tht5KYl16lrS7sDUNSKT8XTqQ_ngQX3hogVpHLhCjap0E-1zFPXUZiUaHQaeMxeNE7TA7hqho_IT_lEeNHgf1STSkngV4sDiA9zuGsLMgO--xR8NXXL-L1geWhpmrfnAJbYN_ULWE9YlFD8FSMMdRYF0t5pRKkMj2FPrDM0L9wOjTDewY5GU5VkXdSxmPAaM_bXHvz-wjJXkPyQoDgQrvAQP2pSeIKs9jM8x9fFFXaUuhl60VFYiMdvHYQvdH7nKpgo4hwi4ZccP2l6s9YrttpoijuU42PCVLnCDs7Y-QWBHprjDDzYtwdwcue7pxP5_stpKbNKLMjdxU3lGDrESOHh2nKj2SZfbXFqdwFIfHM4AHT_zmq7P7QMeQ8IvuXhmlYxe8S5oTYVFK1cW0dmI_UmG-QtdGIpuQbC-0bKmcRwsXGtDXost_8-MXxFmxGw7IiTto8FPksq6PdyL146U_-tKor1s77sHsojn0GyFgG1vnfDMnqZwKx-SlvASe3osBcsQ3GzzAynfwOUJ1GEdA_xLgo-6HbSyAZWpDYzsF_8y-vVUsZ720_3ll6sZeDijEPz85azqTahcBzoTinEePDzBAEJ5nrvtSa8fXIOzVEE5yQnB85rpWsgkvj9CQYw-Q6Cvrhp9k-m3K9s0Vi2NPXMWTW7Ap_7lak2UW1_BdYGpaOBgeGwLMtXkDAldPf92DWThQ7EbZrk4m2jbCqsNAS7PfT2zpVGwrMVqQYkXdGdwuv3Om4CgC0XxFevMCQgsEeglnaqbYQc1AnhRP9r2izdIsqSN0Bj3vtkVKopkv9JYc1f61-cuWe3z01SGyxXwGwxUfkcZzwTw4kmyTF2bmKkiVEgMuvN93hap_yrhBRBws0AvxzqT3wZ_z23RUEEdlKNWJN-ykx9gXn1_Q4TWBdNoaAzvrxZkzpG97CJF-dS_MKzxu8wpCr_VCwK9g8m6Q-OpSFqLX-XzLCzHrFSBcn_eF96ELLQdMBfsrnHNK5X6xPNXpYQI8KZFdnadOK9mIdBTdTQEpj1vHXauUtMz_HxWdqMF5T6XyfOVJM22ytSWgbUIH2VA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b868d33dadc0-48791012','','','2025-02-21 11:52:20','2025-02-21 11:52:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42361',0,'cd-form-entry','',0),(42362,0,'2025-02-21 11:53:58','2025-02-21 11:53:58','{\"email\":\"whitfieldtony@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"0\",\"regionlive\":\"4\",\"currentpostcode\":\"gl205pr\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA5eC9BhAuEiwA3CKwQiPxeDNRheYYnaPHTuLvUhAf-dLUJcyBqpDxUnHGk22D6nlaKv0lihoCPs8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA58jm1uJLJRIq8vUUkEOPnzIydNgh0MkqskaKtUXOX6dNtMOC6scM5VtUodtvUJ1vemS6KQUlbYHxgmCGAcxHoIptpVs-EQVO811WApTRUjRuGRwsW76rxBzyGGYsjpOtf7dxLl3aiAtRdwkWLqebmmnY8REXjIcgUBv4L1miI49A8RrcIX7hmo5dgE8xuwSRVExAP74_VA6K9VfOVEv6QbAN37NKex3qUzAyk84fdPRBM61Vy21-kHi1FuclOldAIBpiP7C4EHgo74oga-Ism2oqM-o3I8UuiYsl7FKkuoQIrC6kwXDx5-PfMLItiLbrT7_RXpcmPX4p0Lix_9tCKS2aG69M2JnpTWad3K9ZHbXZ03Sa0ElxWzQRRvQV_KfQdOsmjcsfG1NOOACKZQxerL-YJ9ucGulLm2FQhLxFPObDaDUdlO6FLsT2-GKFWuYMc6bqqPtFZQjrEhCBFMhczpupUyDxXHae-5jDuvhzH-3Af9Ra89Cw1K-rdI1wNFv3hIOrdnF1mVKdM_FXKxtjfWCw1FDNugZh-07Jj4ToCrDH9enDRqGn6f3M5wbQn1_xZjDQHbw4xxQCXKUOPPT82OM9cX_Fl6oxQr0TRgadP1DneAZP5LXxeb82pdWBZrY1SAO6G5gI7a6r9JonQZ18WfNrjQ8YEAp88drzwckKcDc02q4Tm5qZ7mZpCQkObh0fZOizAk3LMVfWOn95cYE7siGLHAJBm26yEjyfTLoE8KdUPS1TnXKGtdbSzfPMHpmOBYOAiPjDH6Vurx7-wJjwfvwIuAAOTjYK8SbNNaiyICd5yZkgFsCIpNuK1alNt9iH_7VJ-kWzv8zAlKlt-pybcDyhrAiRSFqA6sw0yY-IjSVT9lSvCJvwGOgVwMPohw1KRaCfSPXl4tOJuACgMJUQ-DK9nVYb4Lgfu4ue-jZ0GDWp4QaREaQ6rcZvGJOCCxJoll1wJzjZctUAS_LsycjymlKLlluAwLhL3RirLe1eK2g5pSVJSMp05gmte_-jfZ0PsGSkwU7E9DqOdfnsZN4fIZmiLpljzZ-oRldaI56cY1e_qFtzyov4f1J9RW7CyyJJuBRGUdR_FGGyK1eq9vGgY-4jsriQGgBrbiH_fEH4-VCRTYAhXzQ-ngpw3w8GJ8C6Gs6sRgJDrO8xFziQ2Bp0DRaKX-JfqxxnGmIn079Cp-O2n97G418SQq-ICZAvoc2UjUYlt6QjdtmJZGyn6DvXLzPi42_6vlMQwonklvRH0-xwz7Z5M1hk27An1f7kKHhAiaIAmICQ5j2DArvch97zoLEZqHFJ_qmRXVSGGmonnemGUqgppcPsaQEN4gadphLhusgPsclQenOFKNXxeCX9ZP_bb_T6U0VSQLPrCoHvUcA4liQiBJ9RwsY2UMhvX6l6BMJKnjk-OyEK-BJEdoWhZueLolVsTkYWANfWAN5V0Wbd91npdyxwX_Z7RGIAIKR537fCHJqkdynXd3kpPQsXtKw2seRQfgsR_epwRbcKuSV6d5FpcL9dN0lJtORVb1uGHRu2BJfN8hO_O5hKtQu7fp-2iK3verhCt2SC1Tj6fyQkpInDP5JDJmq5wxpZYnjDSZ8i02zXRwgpxYoPrN3oa2S_x4A7opq9isu_vmxEiACPzdsbkIbzGIvJ-tbUKPdGtj6Giy2cyNCt3Kq3UdTXxB0EvCPHBOL8KpJsdtgRfi2MEMU6nDtgme9_qUe2F-PZVHPPLYuKX4tlk81xLyfXuwkyDScSFNyzXokCxdGgFncRJ2FgcRVOCF6cg5fBDZcVFyeycntANbP--R7kBl87U-vD3tuGbXwSs02P2nqWNloE4KDNJC6foe5mgBefYhu2YTRYatHVdXTUv8zacHhG-KfpUBerLg5mthoNi9Tl6xqUlQRLAn0yRjYbuoLihBKMVqDQ5gY4Tm2QSeXZren_OgQh2T5mXLsIeCHPX94MnF3-PZMQvki7NEdEy0UHTAzxo4Zb_12h_oXHuO64ozGBt3m6aFAg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"2\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"8\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b8692a807bb0-51143640','','','2025-02-21 11:53:58','2025-02-21 11:53:58','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42362',0,'cd-form-entry','',0),(42363,0,'2025-02-21 14:55:27','2025-02-21 14:55:27','{\"firstname\":\"Kelda\",\"lastname\":\"Dearden\",\"email\":\"kldearden@hotmail.com\",\"contactnumber\":\"07986766848\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA6aibgs-jViidFuM02MlmC7tlQHGBwq65wdYF5FHQElBlTPULB3CnZ-14-Tymb3tfG32aVndP5HgZZAwfxZ1L5xhPZE2Q9oww6J5Ec6lLnVLyM0c0kDkwiNfRUXFvBNpemMq_s49SPlS4fuH3eeXckR3jJRwW4wPcevVHM3Oln6ORC79djbC3sh2oqzG9SIirtyz96yzMXXmIw1lur4PcAxllx1TW7gDpdy1zUCXSbPt6kuG10IDSOykcA9MCBo2k_qLpzuLZz6nNUzHRMRPIp5c_M6X5hYkWWcZkBtg_6igvgXeriAS3nPGcopYYWvpUXPdmJvdXI4Cr0ppvcWq0LK0BKQ7FWO4vAcfU3NRTOryuRtBTUz7ADjxlgP1z1ZPJd4_7CbqPHBR0jz6yeNqOMUj14VBUSNtPew5WlCNTuBcuh8Msz6jsnsLH-afLLgcN26ZFwKRhcuWBbvhAz_uGjC9qyyUH8RVbHYArfE7JRIenL1-ULCNBDLFgwcjl2n6xzaKMAt7zo3QHWhKogtWkFMSCVux-870z6Jjaw1aROYswFadM8gO6GCrR-B4mCxwzNk4YqzgQ0ciczmdgFtFJNqeIf1nz89Ibw7c7rNkZ12Q4ifbt8X7dHMT4puwkoo9N_lRdK4mDIPzKuAC1YTudK2kPP0W8Hjm1zAV9KIfc5BxSEdHmPIi1ShF1OHb5FgWp-SO4r04_IrhoGTHOfzUibixCzpH24FSYEmuDNSCt82DMJE92gN3oplQ_CMelj9MhHCMHJ6pHmH2zO7qwB5Gq20YPXaa2t2dnMRBUUlJVx9HOZohowLNT0PgFF_3WwyoeaJZBAxoX0j-l3yDrI4P7D07HBYX6lV6Zq5ejYpr0WHWlnUv3zHT3a9QD6ox5Vb7eCk5FLE02TMc28zBY6LinQ8MCiWP0vYj_40yCxk_Gw2gmSgMm9Ys9EAFq_fD9MK-7xOnfFbnG-HFj9L170ynvrA3HtQUPP7VwYm0MJCc3rVa-fRa6KHZbUwcqS04fDiBfucGSNnx-HetD1B1zQkQhcAx-U8IWCw-kwcbvsz3-3ikhmJ1ZbIEPoAg6cIQYHOMyEk4yRpSatXeRCtnjuryH1h_TYeWjpoAzWA2icKHGJ5sL-iPDeV8zj9jshYPHJw61NPb_W6DezPNNjcMEebxBc_LgcQfYTWciJMXTfkSvt_P3m2R0YwC90HinuUSxPTZjyZ-kM0sxfcL2b4wCIFg5t3b9cwTNTIxwXV-T1PpeCyd0DeTfaz66R-lBxEBnzxkuhxMpbxAJTjfeR8vqcLt3wKW8VYPndVqDErvWgX7OA14sUMz4_BtQ33ARm7RUDt_Nk72IFRSn_3B7UwrzElgTwm_2vtWfstYiLbssROcOLeEFwaJzv1RCtrC5C_5Dh1GZ3Pjm_nkJLY3utTagDoW9orEWYX2mYZg_KAPy_n1F4b6bhHx2gR8Q9_89bnfJMVfuDUb76pE_qwia28Mmcx04F0V8HnIIM4W1TssCZEO4MnAs3ZK3t37vgt7hHdtjUE-R8X4-GCuSs5oQJ7PWi4vXKfuku-auxNdVHmydkaDYzUBqfCWVIGG2FIv66Ymw305IcvmcPMv1URZhqHoLY-VDr2-3otFEgsSBEN-feRT9fG5APSrCHOHdguJLaHwt6gsHOZScRpVKZyAeBMWvAr5-UjT-PF7N2la2gymSI6tCYajk6XJnYyfy2npSb7ika1RRaKB1vANMCGU56LFEkkDMLyjCRq871g62cis6tpEtdRMQC2QEOMvV-GO-2CPTwYnracZwCaTzNeEDgeg503Ou8QGKXRYLc8wT2ixmtaLEW2dcuOzNxfNEjsn6ivFOhXUHpAVdRKR5xC-XW-t_C2hyVPH46trrPjVCT0kIn-qrAGuYKC95-MHtkbcTzgr4oCcZK_MrqsgIJEZeWW4tXZWLUGiAvbQZkaqcdom5stfKedV74Mz9vCYS3gZnpw6R9UhilJxGTMQJ0TZc6exC7CIIAfm7UdOwBMjrGZxDpiSvKWSZ5GPeFi6mtk_DjDGwbHJqVCa5fR8CixRuY4lwl_O14vDT_ZFldy88ao7fGUWd7Hjv62EJVQhR9Lu8Hp7b8yZ3SM_3BQKhW3x92waub103FRj3Y7Iw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b893bfc1e046-60233657','','','2025-02-21 14:55:27','2025-02-21 14:55:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42363',0,'cd-form-entry','',0),(42364,0,'2025-02-21 14:56:15','0000-00-00 00:00:00','{\"email\":\"kldearden@hotmail.com\",\"interestedbecause\":\"1\",\"genderidentify\":\"1\",\"regionlive\":\"1\",\"currentpostcode\":\"FY5 3ST\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA61LMwpYR7WNU1Xm3Oru8J9fVZ-0fS0d_rUvxld6ZCNXp4j64eiitze2gNh6JWM_cMNAYqpCQ0ztH--LoBnriwJZwWfWeB7L3AjQrH0bbSQBNaH-d5ChC5W8XNON3C2uwB2ENF4NXUwbYhE9KTq-COCuLG88aOTs4JzfZEYWwinNK0Qqa3tInfMlYiK9n5C4vQHKGb1lEukqIDNOtZBMfuNtxVZSqkTAN-5di3BeYRsYkFnCOikla9qntwU01MEuHLjC2V_vTIhcU13duHSJVXXeJoTlW1ViVc21tsWyh-A7LkAXY7SSZ5fvaa_Mty91U2bO36ZUuninnl7CiQ41QicWGHCYW5S62GxVFMXz0vD8vPBeUzCIfw76Hr1IqTRBErmDtHKW11iUh6E-g0X-6R3xW4jiH7yQA4bV58q2vd9cl2HYFJ2weWIXXXjOrgwZJeXbFUpP8QT8zjcYz5lUErdDVbyFqdBK3B-D0kf87qyK9PKzDyFBp3RMibSA7CtkI3--wGtLvT78Khgd9EEIDJTa5xxbURc0YS_qxcRwJZQ18R_egzMejf_TvUR7KSayu296G_hbQcRw2zLOot_GAiltY2QLHWqI3Z8DMwmUJ3TUl7rFhi5vLtO91-fAri-GQRN8JJGj2WUKwodupT1w_-OyJCQESH-bma9hTmIzo2116fq-v3pzAoJNS3cQ1FyL4xf7Mtcx12Admfir9lomQd9u3auk2KzJbKBhSRO3Ksk2x_Xdv4VZSk621FAJmxUxaqwrzREf_mQqOvqLVRxmA8r-G9OFuQU35U5J40Tv_0mRAj9GXZQgHaWTtGNX3Yo-ZM0WIGtckJk_a9XXpUYDvLbjgVZ9huamIftY8RTwtoKAoK8VfE5vgyVHI1hZMWbROiekKlb0_gd01OsYTab7blqwF2LdJq-aP1YeYrIO5qxF_TENk4mWcq1_bR85ZB628WDcrCudyR4KSE2g494xDwcW5AQsGUGkDwjLOp_FQqo8SFkQLNsMz7KNW4t2sg_BBRxufOhGvEEVvCndDKShMZAq6RZ9OehslqPC2h43Nux-hm3KY1oC7jTmJ0wQMhBGwenXzTgkcQlyBx9M5Th-_jTyk-iFnsjBQJm2nlQKSYGXqto3_QmyPZrHVTXnYw2tVNmQouWIEpHsFIw_YmuFKZa8jnldzOypiqX9gUhgbOkK2hePsiq4ugYDmYQ1b1tcsdhcwGocjwbFcy06fqnF70WiqvLaOjdLz_abiwxdZHyO-wHZWWMg4E_ZKYTWD9j_g7xuPKR_YW1aKyDnF-_dVxskbGxFtofw38wvPVTnuYbVm_07j1EILSDH5azstydfxeXuOG5g9xg7Q1DfOZpKeZ_h-G7ckrExG7ZqO1j8cFbxwmf7kvztiYU5pjp_7NeCJU7QSPhtwDknpVCm8Rx6C1vrKIfGqP8ybcl8TtVGKB6xKv_NDrv8z1ti9FdKrip2cUlOmqA-ieg0OXK_y1-VWY_wocoZXvbIK3FSXYCjGI8I7nEnXalF31Y-BX1s3mze0IQv67TZssou_nsfQNJnxHxe9nD5MWUBXfZYjMciS3TmFlcfX3wcza3OVbiDsLPepza_oSWVqj-brHHeDP65NxijrDmiAAbQauhKWHdtLi7Y4OS3p_yUWvUc7_PLMaZacFpv4sp8ZxvT3ifbmC-ZXuIZmc7hIHSq1L6AvtY8G6pk_PENyBkUkex3odraEY4SdsL5Cg_q7R_8UGfw_5yQwWDE2pM6zELrxHf6da3GnCwhFxt4v1KVfDZ_fCbbzbT3HzWM6UduRrCKnmpMs-qHTiMYkCh-coKoVqotdp3IOdaHTLnSyt7dmH33K4KMX3yWFIE9UJv3B7gJ7ugTvk4gFJuiLhBxf5rEyeYClgWMaG1iaVxpQTMgbka8TeAYnZQw9sVMpStWS4jCYdbtExdP2FbcWhbIs0lDA_5teLfGAq988myp7XyuTCFxazmXljmEyGOsa11GWjTTS6SjEmS4PEQ0k5cZh-y5rf0INNnrHX0oWP3sATMpsjOPNKx1HWVtqjv8vZRS7X6scOeqtHmlMFq4yDRdG_29SMbnrKxR0BpKLCBEo_bnpHavZmTf1pQ739tjdVVm1F7MDixt-ybrPcb-fp8Hg\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"agegroup\":\"4\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67b89405098f39-94788133','','','2025-02-21 14:56:15','2025-02-21 14:56:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42364',0,'cd-form-entry','',0),(42365,0,'2025-02-21 16:04:16','2025-02-21 16:04:16','{\"firstname\":\"Kelda\",\"lastname\":\"Dearden\",\"email\":\"kldearden@hotmail.com\",\"contactnumber\":\"07986766848\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA7P-OohKtUA4vbL7zLyxB147E-nid72CdqZH7dva_keJYpdmj3UHisdL1aDhS891BMkdJl2KqpfjGEIFikkjETrUnXFWDZtORbKgFPZzsy3hfXdvt-fYK4MUrHQjA2TIghsQDN7-VUJgcTgnI06_ErQbPDZaRIRV1k6c5s3QBpJAPWWM8wXinjOfXQziZy3R8ELFC3oVSmmO2sVDbU81E7-EVoEjLpbuA8DjDKoS0WtFxxP1TZ47Hc6C_YdCgCduBPHvvt1AgMcxzvbLExiQ6GQkyM9TrYFuxH3lI_M9C9S07H6ynl7-3OOrqz0gir4flr1LVBYm_2KYMyPs4JYXjy-1kgX_TRNauPoM0zNdgKbHHsxmTfeleB-LpZoVUOJNxMUMR1I67J0fz-E6EuQqvJ65vJFszrpIPn8aGTihxvEcxHbZxadn8N7ITukATZjP8JdJc1ONfi6MaiacjlSCj0SqL5zn1TInZ7lKByKtQZC0tgpBsjkX3tb-csUuQvIwweavqPNnZiD6dY4d2tvf9d6juuAhtjU1r-H7cPIMIjSjjlaY7CdIB25iggABDwDlrxMdl9THN1QEItMVLnO0f_nChccT62JrCDgVscwKpe_xSaieh5JBiOs_p7krUJI4_JdNTrX3gXJhijRfqF871Wl7-HwkvOimgM_pFPkO91PymuRk_FKGiWcrtaobNMre2gXBrXtKEcThj5tA_FOo5V7UQ-af6qUPiqZ095npvVNZ3UUrTXqSb0pI9GGwYwkRC7Hl_JfEojLQ_vBgPHd-gBUsZX4msogNz4ZkC-Tl7AC8HZEUQHET6WzL7zNvC7OVPNIKgq-RZpTQtoLWflTO5rR-WXmS16PPdThK7UcHu8wBrPZXaxmWgUjSVl0uvDauf-oUTw772cfviZyotoTVn8QsBrGRVgcfLEaXDuxGjvjswlFLhLb2Ye2NyPOL73aWFV95VpAQQ5Ygr3DQ-o1uTjV3sil23yUCBwnVwAHbIaAoAYJUKLVOycpMB1FjKqpFABGWubaY3IJqVf6QN99lEuHhggndf4f4Bti-Add7N0jwI5D0l7O4orkPoPJ4PUT-kboQ4kAAKBWTpTTWbMfxwhvcLzaKaq9vXqeWSUzSisd85uPFFOnTk5ECW7lVGHgNX0TMrOUhGMZ4jzrHsTUu403jEM_w78TPFc0EVdxkZJcfCmulMrHX8ND84B5k0RNdr2oCko0oPzIjEN1ocSYkQIek1JoZJRXafobfhsywNVQvTC7esXzftGX28NMfK4iRuKuoj6_PgxHg2PXGK0Yl_ZXFp6Ofg0bKRzu3WlGFmWq2gfP2wccbZspsNFwTzeUpp4_nps__rVtZfzukxTl-LAiOk0bfipT4rmnkPmmqdLQBxN-xm6v_SQn_ux0A82bCFC7ez1Tia1fn3cVu9CM35nwsGq5ul9he_EZAL3dmSU-y5FX7LSH03ex2l9qtsCNlNpZE5sfZzjWOYpbgWIVxxFLD-Y7dtcqVDj1ftnxPX5l_jdnZnIZOGC9VZok_QL4rhFeVvt_mqka4Xf7-z8zrp974o0Hc4U4m5ReTyBckpgXSin-xugvJ5ljGnnIvteadMHiMEsWy8jH861wiW1zSMu5skDiHwyyem3Iw_uJN9ggDzHQL2qoyqWtd2BUYYGSp3X0BZDvOuhoUxQ1W09TcA4E8EKEqK0EQmy66_FX_qOAF3SbqBpKEep7hUUg_4b-L05tnz-7dOgY_zPtJZ67zdX0OAZmvb4acOHaJDUYzdnH_kuPozmTo3O5bFEQfOK6qa7LoSW0xyE-tBURXkEuAEEckmO0YIRinL3_GUBwa9DN9OTZ8nmx-WYtxoU-Boein6wAwazY77rHf3HYY60EKzeixC7oHf2EAVtfc-y9Q9pO6b0vLHd_-oWWKG7ccOK3qjCmhBiuJ9zj8HZ5GRU9ToJTlcEUcf5Me2KyvnDk20ZUmpF2-_GvsYLHzh4AmprzHmY_FXYeVbYrgBaixqGlXTP41k5JukLX5xfc4u4u29P1mfPpVUvCkwZqn0ukurd9XXz0gnlYDk_OwIIhVGY_NBBlr7bn18A-IwBzGHNU5mcNNazPGMNB6rExqiJ6qmgSy1Ln_RatTR5ytyw5UdjZi7ZSM2mhrYEP_E4ZrMDg-Chi181whdsLSpf4K2fvjvOYpX00T3M-fPsE22CC53oIW--W8uyyzsHuDmA9WMN9w55qciBbA71NI09Q5qqQNXPjO_xTXLeEwJUJ9kpTupWlZA6M02bJAgJ4UzDFbwoBU3MEYhGnCghR7keFGmKhDt-yq0SiJSqdnGjrJ0DJEQfSWGPH9eE6IzHKJgFN2903hosghsMGKKJ53XXxIXYmkoCrg5ijMNJo\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b8a3f78ab6f9-49417360','','','2025-02-21 16:04:16','2025-02-21 16:04:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42365',0,'cd-form-entry','',0),(42366,0,'2025-02-21 16:07:56','2025-02-21 16:07:56','{\"email\":\"kldearden@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"1\",\"currentpostcode\":\"FY5 3ST\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA43q-aq5t5rgdOEZojC3gBQb8615c5gYqaJNiDFgSi00HQ12WTYSnqqYzBqyfd6vcJt0YwUAUtcW7dQSsa25wYF7XqzITV7n-4Xzp0CcNGU8_ifb7eqW9JH6yN088GbLmY91GwFN6NtU8voae2nBPtH8dAF0Auf8sfuV91mjj366vJFi7I_B6PDTNW-sefEVZGGCrBkOcDRQ-QSlo1grts0Fgw-n1hIIVd9VHASG_GJCbbvPpNCCSkt0oXXLsLj0M-nrXSzoqqW-PolUBMU5gZ6Lgt3RB8hFVAQ8HoVGzXiZaxeF2rBK74iRl-zoJRGeSL0O1SWtU695H_3N9pnawgCjPgUFzCECECxVexibmog4ksxA0E5p7E1H1IV9LOXKXFrBH4zGn8jbRFnu0M2W5GjS1cR5MZ2_ay8hfnkynBpBwdDNGCtlo_CUqbDXt3A5FSJzoBCAIYd-eTm-0-xbM-8ZFBJqtptyxL-PjK-ZaqwYvDm3RRSYqvP5qg2C5BuqLRksgy5cA2G1TjZn9yd82dksNh268vynht5ag8ov34HELGAa5sBBW8eQQD2WwAI570tiW7amqyXxjYTwXM2EqSyntJ-QHSmCpDcVjd0ee81jdFvGQWWSSPHjZ2xjJxVnoHt2LHtjF73o4NazB2tYCEFkY09c4wAatyqXBvZIYmDoa3nLee1ZJp0xn_7LFme4ytNUs7NeS4pEMg-72VvCxYhK0z_yFB5URKh9oQnP6kbafAblN7cUV0swk6S5iTZjwKki49gc-tpRe3fnfCwLhoj6XK_zu2P8IurlXUdICs5BXRFCFsLgCw2aXKD22eKXSNSrBn0w5u1wPYGGEDpGoDT-Q0JTKdwbZPQ6NQmLQrl--d1VgRdzV_MZsyVvPjqIfSA1XJJP7q8fPiOdUuBTE9aZQ9z6R--VBG-hpoKq4xAcn244bkyHRFHUWAE4uLFUpUzWA-gAL7oIXn2oNoQdGJvbvzIoGbwIeFziHkTDYEAfCjClcPimitjkjcMhAGeqFZ2dY-acN_SLo0EUmVOAyVah-JLHOhNrUp7k4nJugjH1fX4dSEvPdqotOFE6ETWi_deA5b-rUlEbKtv313UcDWD8HP4QuD9kR4XApvRXH8GKVx9COKxH7rgJnroKYE_1IZQXaUW9ezWGARgKEZVEX7fh0aXYYdvw7OMrjW3_jcYRr_LO5HNk4yXhgOiVmroFHbIPzdQUvaA4QXiXBOxZcXqmIb5qmVut6wcK6JeaafFqb-ZPP9oYXk3obcXi4NCdSYtZGyPuraB9HQ2N7D2JxWd4IsO14M6rXI9MH1iO2J0KJSi191nfnj_sGFKi4WNhqzM0jZxhkVW9OI0tCOQGa0_lDZUrqZhCPiZmlymsmrIhlcCVosxmQHu5gwiKPn9W4FTOCgijm_YP6fhi_9tHfPPtrMcpQVZm-VKWiuyD_9kKc3VGf8okH-Om6CtLbDnUmegUIxvfposPupu7ww4YW_sKihO90-Sbfpg395jHRBwSR1U4tl49fpa-yTCAwXhIZgOyMAwootjp75UfUV5KrXgEYqVnsNoQdZXzs_IhpRsYlnDGAsRN2nLSXEK8VH_t060Ofeu8nzagZWpXDiJ927z9x7_wFuzUYMbF7IUvBvVdzhkEqG4KdckJ8IcSz1FTQxY-1EkrVfsPgFRl-DJ1Wu-WfqmHFQlAx-lZ3Ndl870qUh3sYYHKFZxeAGMgDA4P3_qEu-0BmXVtXfzjxKIi7Ey2jrn_x4QnKueOMSATaVDNu5p1wVyrecoWk3qsAR3vq3VX-v0lbFOAfJfJ2txIG1GXtksi30T3390rjeZndjsSsMMhq7-Y9aZBs898RujMEpprKcW5630I8fxoPXCetSNqKKCyPlVM3-j5qI3SAYLYpg-fNWH72FDdfro6tY9FVbLseKhOORIWCta4FRwtVHJz1pYA-aTKlx_hTcZUkREIH6mfo27NfBcXnevjiSZH69Tes7sDdj0xfZcUuXanJHrtHmyPRZY-J0YjYyVRx8a6JVa2Z-aqOvYqsVBjBBRbUX-fhurKmi1kuoDsY_HHWMrpqb6U1y2RSFz7jCrWySMy0OrX1M_RKVhnBkK9D71Phl5UzMbqUJDQuR0KC_5fvJGL7eGYg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b8a4b4c90191-75416487','','','2025-02-21 16:07:56','2025-02-21 16:07:56','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42366',0,'cd-form-entry','',0),(42367,0,'2025-02-21 16:26:09','0000-00-00 00:00:00','{\"firstname\":\"Marcus\",\"lastname\":\"Atkins\",\"email\":\"marcusatkins@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA7297Vc8Bpvk1Or106JjbrSAoBsv4TxwmiQfhaXQXvDbURxhuajTnsrdzhdSM1VBG9x4rVNAcvZYEmAE717wOPs1vHwzFppF2eV_yT4_IHU1oGPdLtrjQV6NMiv9V9GErSyhURLKwkDJjwQZaepDPwDHC2E5_ScomSMQRNbluAYWEyM53y3HJtMr7Nf2BEsF-o2_ToRNbiShBeCZOmc7kisuNuHxzqdUBUpqM4r_ApVpVr3nzmm_WjjSWuEkfGPeaGeDZydTQxT2CyTgns2GBqGFBpot0RyroXQwRLbDhugxIX1NdiYib9p9knrTiDJ1ISlwRqMstL_V-pYfK53bJ1ndWhAmoUl1BRblkajSUCVbLs6vbkkMo8Ygkzkn2YXOp8u5gOVNhS40VLNLkXo-RG044TiKLbQ1nMaoUu_krODITHe3xkmpn6ZCLQI7G0XRDX_GMyAuQ3ZRMHzC-2-D9an6MK9sD6j36eTfd_Tp2pNBMDichSuF83VkUQ-exqCy3Wf-kMdXmD5zst47IYKp0ZK5DOKyf4WeDYY4UlcfGkr2yywgk88TihFJ4vN3WN9-inIMuQuPQrF-Q5XBlVXQmOuj6RSPoVn5zZYe6hYh4yZSEdZO0uJVWDRXVEwbQxH4U_Wag_BiTeUOx_J7Q6vFB8jbaQQ-GSezgNdRXkD1eB-CHlb1ycYGot1doOcRLzo4qaxyI2xxdmds0dnS4lSfaRQbSrpJ7tqVrILQkZXDcXcqVOH0zCb6LhIsF1LqK9ZyUOqDE90-7hlmUJPsSVuz1jTgGu3zurgfGQ0-6pNw4pOrVNQ2PJ5xU7YK6_Dr75l1EN8IRlVF5-LMuLI8TrAJV4dlKO4OFOFBoSwB2j8qpHe-mXmv0z5u8D18nSs5ITg6NeVD9mkmhpk9wOaTUEnz-KQpZ2r_pCVKslzbGp5YMp2_D4m3AgJof0MF1Fs-ahKfz4wmAhnvB9TU0PuzziS34n-zjkVBf6PaEJj_h1FMVqKUU0lXlbCYGuVc6lP-rBROJ5EsI-SltuzLvAtOAk86QMPznRJJw4zB16PxuEmGZTbmiEo3Xc-N7psQ_Lw_wEEFipRdhE7XQynzeXPd8zeevFu3b7teSBqea_nakUvlAjqt_cDrr8wI3nFggdETjRLrOzgzpca-owcQe8qV9H5Ny6vSrmMaYvIxmczmE5F-XfcWgvwq1U9oGizoe9Jz-08L3t10z-cYlrI97VlQik7mqAmVowDZvKbxSiGiOtnXEU__gHY5H2HOVAJT5XCOgHmnhRtZWHGBVAnK1A3DxioCCcsf02zigY9JQ17pHhr5pwiMd32xZI92GYyJbXzTa7NO3W1NJt3DfjkAtZZYffCQakyO7iB6a3nNcUr-sb8zhEXWHZ6WnfFKQeZ-61vGkhc1KMVmjzVXsTMkrTSqO3iOvGh9aBWX5IAN2ooFZlD6W3JevJGrxwwbmGUQVGogarKzK1BjLOYfXFowK3L_isbWJyMlvtBpD9UbmQ5FXxt_MRBAw8pZJBta6uazrZDSedwTbJCTAanHuZBz9zk1BOtDC9cMnnuNd_3xe1Y_rbWIXKCEnJD5_piv0Ll1j2ws7zL0DU_hul_A6dYjZhk8y2j4buesHGjZ5WdLrFIWWnhBmnYVlMKaL2WoOFAPCN6kqQUIOBygsclJOa8F-AS1-56pPDuQjoTx-MA4Sod91HnBnmTRXych_YgYN4HmeWAWmEDLJvviCNfToo6XF1-rSofSJfV7pjKFRdN7YG5Kiq20QmlhulPmzcYp70Ji7cU20rQZnJ8s7JMeNdUFA8f9wVajacOY_fh-Kr1FTD0c77PWafzpaPbtDMcL99cB6cxNFOOFdHbrPq81qo2BHnUY45LrCmU9T_9-2TYLK9dA4zCRakqzyzMByeVKZvL_P_c9Gu-6I1bCBU1LTtBVKeBIBEM-WBXyb5i1A3FM9P8TZJGUt_ebLTTnWdn3ICFGkhWq-DbFaglTbfYPbrXjIDenmoAlE8BFYftY4_vFlvCEjMr1AgKonxulo_FB74P0ecJaUEWVCmmabADUfZuC6XFjc7z6yjMT3Fp-mC_mBZK4SdrsSaWoIWVwtA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67b8a9216c3873-79012283','','','2025-02-21 16:26:09','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42367',0,'cd-form-entry','',0),(42368,0,'2025-02-22 06:54:52','2025-02-22 06:54:52','{\"firstname\":\"Rachael\",\"lastname\":\"Borkowski\",\"email\":\"rachael.borkowski@gmail.com\",\"contactnumber\":\"07583568799\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7l88w-RDJyZCVCh8ey8ap2EN_Omn1LhAXRAPipViFDIQjq1fin8cBJsHcaIl0eatpcgEsshSk-xN70tOCIzWctMcvo1EXxLZVQFvitwEFES_8evP8738a-A6ldKHFZh_5_EMZ3_1fQYJ4rIXdmUeDnq_-ZNHEKiERpIE8fVR1NIOKA4-zFT9lc4JBoXyUqColTGpT-YNEA8lsmSPjRovrovvqRqNCKreflLtqAZw2bYbBAdKtngfaRwtAOsfPtswiD4ArsZPfC3Fk9Fv5kLy32obT2p4SMghQPNPj2UrJkpHkwlfJw9V4AQuEIwZLW357aqnigmmuUaM7ebC2ToEOj7rZaASyBRmHOwfu9QAl_lAf303FZxRK-jFud0BAJMzmwBFi8tOFZz0GYf28ykhxb3KohwcZFAgfbt6WVhZmGgfkB_WqZG58IuWCv6NEUvsNhuk_0e8EP-ayu3doDYv7OtovB5sDlTDyiWk4pUTE1E4kKJwSiAIYgpwUMda0RiAEkrVUljSIgOZYQMSvGopCwgbC0cs4eVimb3thWMMexVg94-6denmtNVCb178Zg9W6IwVCD-GRXDD4tuJ65unXxlKzkbS3YINyHbLKY9T80AkD_dhulVGqS5kM6sLiNXdNDcQ0LmUNdgEkNmfvl-um_0ttcG-PckPPB-a5WrYUe7a0RZsATkHV6OyUcuJYHVaKRk5xOb73Jyq3MsQIfjh1WwdqzpIFaWOXBvJ6etRLrECb-i8r1K_xbAXgSVH_-xSriMFIEU2pHxHoxJf2EJp5esLfV2WoXQVWvEmNFC5OlDiKfm6cqdhd9XPHFH_UzmrQFfPOGBPG5aM3cvm5HuB4bXqHyrbd_ihBdLr4QFP6IylRug4MI-WzcHlFu-wos1bfj7bWf_zq5xjnaQINBuCapTPywO9aZ4TfFHUmFCL1K2ipL3N7VWYTFqAX3ktWyL5tc1_7S8IO-NIVg7e10yTaRkvm6nlBMs6lmLA1GyRGQcGJRlySHXB0Z64Rk9J9OVKeuqC08yl9ArFR09DRfelNBiCNpTn4PDB8-Ovr39lKEdmmnXvTUTsZOqE8fa5FNZrDpL_yapt6Lv5HxgYyewt6CN-mRrOaj56ec0nrvdneWLLqycNKx-EERTnnL4yUzp5Qi4TDzcgZZuFvlAx63HA4aqTFWF-QqU5mxFgcJ64zyJfh3Pyymf_JV71QG28GqKEA5iwCke-4Z_wIHo-xlzz8VpOR6R02vjZlQ7R6ube3ghhoyT1_0H-bvwudRdlsPJDI-UJi2K6m273lEbvzIfFduK1efgh5mMO7Z6J-uyQ5bSRMOtDO1z2562A21y6CBOe2rcP0QmITi-NKZcy6bC8iVrP9hT80GJZU3t8072rRejbMYF1WhX5LDNloMl-0Xx71TOWoQZXvoU0DwVurPGuCr8DtyLFQMNcRV6CjD4zUVzRj1ALSvxmyEw3EN4hfG93klu4cvTTcHv2-mvHhwVvToIvYTPdGMc1IE9EHn3G_PBcgA1eQUVaw7kLYTeBj-vhWWs3H_xh7oWLIaY4PVFUlQ9K0IyF20oF1sdWdBmVm9OaWpAbIQ3EcbPRMCrJXj8iP298m9GYmSaF44OV8AKgqWL3oM8V-qf_Wt5DAqBk0K3t2xb0SQAzltZ6FBFtrb70a1aghVtCZopOmY5fwlt7DZxImWoXsEmxY8Xz08gqSM3OyYWc6xSz9D9C07s-PZJr0CCW2abr9pP_cRUDvYnGSN-0sSbG5Y9CFNL3uqrnwdf8xlOFT0gx0zRVYieDpt6Dhtc8SSgxwFigualuZADtp3Xx8wbN8r9FGyJFvfK9rTrnFnDmsds2elNgxiY5XrYnDf4MVw8tFesIhsThmSCKFPBvTCLDNPx0DRintgP-MEh-qv4pYOszPxhxSvMaz16sVmGJkQfz6WMK6zlXH6A9XDGfavr84OzsPrTiHNyC-eoiUgFa3Mp3CJfbUgCwaDEw19mee3KrsIVNobSHxWgOf7AEkK3rkuozSAjfdscJeiFONnPA5QWYXju0txyzc0__1ziOb3jNugms2NqN6Z1fpKE8LqVbVqDMAOASgDb1Iy54ai44QyJcrQlJRvy-6womciVfvSdzhkut_7cL17UpwWoc2uN8hmGO-FghEU8PH31SyDhpgl5jVF6qnGojy27h9eefkARK1o9bdjVmDTYHaNFQ0VSRMDwgeQUzFk6hzddfwSS6iFGNqnGuePsYoCSzX3ZKmheNxCb4a2TxoTDXHhfHQ8gK5OIMvjHTl3fzm7LDFsbEzAlOjWT8j_5VBpWle7t_vMqwqad-5KB-r1k8LUEmxTVw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b974a510c716-61084758','','','2025-02-22 06:54:52','2025-02-22 06:54:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42368',0,'cd-form-entry','',0),(42369,0,'2025-02-22 08:06:08','2025-02-22 08:06:08','{\"firstname\":\"Leigh\",\"lastname\":\"Blackburn\",\"email\":\"lblackburntraining@gmail.com\",\"contactnumber\":\"07752116422\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA7soPLvIY7L73fQQSJqcY6wz44VKYXZlU0NBn5PclH6DHsyMSvaHPKaFPgz35PGLLsjcYvahwDRbqDN5X3jBtTHmD_pO7nLAT1ikPW4jupqxqdZdxIKaCE8QkHBhTYwUq_zjZEXZYb1jfc9NiKiQ5sHYzwIBop3HTxlBMZMOdgqmbDcWe_8quuGf5H0Trbwdq3mbF9ac--wgFArJij85UnIe7ZkPlfGOkyZWfpWEMwIiZV0pptF-MwVxs9surflq_6shKKcBVvqyp3FFZEHaSPtlatlAXomb8vPhO9tl-9wNlaZmt_huadIusNwPrRhYlHi4vtEQAHsjrJHRq25X-Dds0CPzkXsEatcredxsq1cZwBjlIYDjr7EURGCahTk1OMVNShrU7YE2aGgUV742dz_z15_IEwBBHVBLYjc7g45ElSk8EOXJVVziPkVn17-0uxbVdZICdRR0C3oQNs7k-eKVwLdp-RZ6YGmxcwTkCX2rKFwb5MEqK3dwNX98S4orSpikXM4JNxC-a3-EWBE5uB-MjpkOZXKejidgFE0TsKuXSLx1jIsLKZWPQsQgjtTJbFFUEgR2MojnymYX4-wL_hbCqO8_NvqCVomjDofP-09lpNPc-ur8I_hIlKYCGV30ENUbaItyi6XL482JiRtD8XjZYLL7MfQTx2fbk5XWxjYeDkF43UHGQ4J6FRpzq_oqI8Q75gohRyRANbCf38VVRg_NUTJEqATqozM8CoxDHecRcjAOPDCMoxeSpSQIm6w9qOcS17g5q49OuAOQloI-rkadfnmUASE3aQUALbnTQAtaGNsDpW1dXLirMB3QhKEsJc9_eLlqoqAFey_6LO0GQbtvWwSfKGOaoiNS5pb6osV0XM7dmoL1DaIUFkXvRPVmgIoDx3fLh3AeyB29mGV53JHQHbuLUG-nl0ElJDcyKxTHjcrGLN4so9qf8zNXbdY-Mnn7iPhP5Oj_1r85xgkJgTgTJa_I0uWggWBUhzMLeO0wGgDIi1ojYsASl04i_hY4yFTBke2VusiOBoABnFuTZ1CIrMAE66R4t_fSMb3A873W4qwL5hNAwDn2eujxpmJ-Zkx1MRbuvhUnzPy9ncO0FTHD5BZ3Doe9kXd7MHj4ykknwrNPuI3QsfLMFEu1eb3aGf9mhq83TFWDNJZ9j6_cvBmMbTqiVQBYPlBIfaeuVxgzYTxnAc3R41MxMKFJEZI1YH2OjV-poqYlFhzhyf3dOOLWmTI07r4S37pe8SC58g0-qDBiWzzkIDFtrLqmp-fLkRnyhfV6VDDeK7qY1n0jdkiO7NFhutMBMGCHfC_Z1769PQGAhaeBBIDRdGCpWbaRSpfUNtAPrI9EEFg59by0a1psXkgO7A0DQ_Lpcuj2ENFQZIH-SeZEfC3Vy68E9EZOPMx7LpdMiXmAeGhzOdi-KU84xTiHPyVWnsFKmrfRe8icp0NsjBC4dNk51d_uJQuohjgh_hUMsmhpYZkzOs_71MZnRv45XYswge_ZEBGon7idP6-NGGC3R62SbQiQydQWWyZkFf8z1grPPEgckGePyCX-fN2evDydrgdTuO1iqDYzDwJkg1Qdr8H5xdKNtWM5DllFSnrHcPp8nO87K1dObWmoHJczm2uWsbBOWjUT4j0BxGfa-0POTOgZEGTgxSAJuMJVVwS_ydj0Iu-93RlsZcosB7GaMfQmoK1zxEhNh5EaE4-Qh63vAJNG8KWQ9saUuJv3-P9CY3sdoH_ejeGGYxuI2GQ8eJR8kpYd4d8Whr2MeRL95KJjjHg8DDq1fKiHaqygr8-BDZlPfMoSuguItQ3vBHM4rUxoy_Lr4d9Z6KpWo3TCsHUKzy1P8wO9o-HMFAnH-UaXfMM8eHkB_7Y7i2Hzw8M3xNRJcE5HYWMFNgrQe-NLiRq8S_1fSDTzJ_X4kCfJUc6sgiH4X7uyev9KA44N1NccEyj8XSEQcw5EofJjJDp3Zn1SBVDxKYBjbAvCcqnRjhpqQaNgfnukfHmZDKW5zscFoGGvIrYBEbWlYBIROk2Tds\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67b98548b54b74-68990471','','','2025-02-22 08:06:08','2025-02-22 08:06:08','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42369',0,'cd-form-entry','',0),(42370,0,'2025-02-22 13:10:53','0000-00-00 00:00:00','{\"firstname\":\"Sabita\",\"lastname\":\"Persad\",\"email\":\"sabitapersad@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAiOa9BhBqEiwABCdG8yf-5mWMlYgXBpLXE5sCQrczUIyBMCDZR9jBrZPzTOmE7SGr5Mea9hoC3W8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6RQ8-DFrySIG1d7ocMgWwDAl_1rhGWu3mafcTAQ3LnPW5dgFaks1KEreGOrO9644s1ZqYOZIrRUCF3F2VxONvMF5FDcBDBavefVqaqLjNjv6X_BS1dSd4L6-FDafovckhnXW1LAFRze2XX_rBbYfFbNTWYkFi6qmK32Z50_DKy1qE8H6r8yqsv6JF5vrf8BWY27SgXYOZBW6b2vYPKBWxr3lDS_nW0Copk89DlOVAzD-R2RNTKRxuCxntUVIM_fE96qzTd3AmnyDWHY_f8rqHWomeUi39xvP7-tOGkxKUKvZGeDmWmVLmBPgnOqTvUDWr1INz6agmb-5srdBnNtnoCUkVorJIja0NeqwDbzvk1ah2csednx63yGJn8QKwg_xVEIWdQ2G0LZh-Q3zQVULDSVtgdCoqtsGFqB9f8gXPprKJcr2zhys1dhvQ1eSKkgSP-XUU1ysNXVtcGUUsBFmRk2D2Q-uWxdLEO724pvNFO3yFjlDguvSQYJcQ3TpxGpAUvel6o5Wih788WmBfFhVqxLNGEFmuyvneowPwiPONZu9iX02Km-XrEoOZ5Ms5DGCXOIRW1_rXIDQ2VdEX305PljguhkVUvXHL2XqKaiva1V5lGtOAsgcU4PO3HA61iGAmcN_SSV-R9KP6K9MV2YWSvVjEWYiCHbudcjw8-60SFtK0yfqoMW5iUy4VObUNd5vonm98rCPGmWKbuaUN9x2aNyOEzPcRdXnlYjLhwDiI9Ud8fFmWcL5o4_eLVXeSY-mD_iV1OxXLJu0AmliJZIogsErVtVsIxu4SbbJUPtTItPSmOWeNzvJi268XI7Z6KU2_Zl-Dh6zhA3A816rsUKDB6D0npg4wdwpaIOA1pRGZNQfmY7aLjh2kgDuVbp7jEUUBpTlX3LfY8VkBpJZIQBdkxv4A9cfBpuj5OZyQ-PpRXBfaiggp4zWZDoMArpgLt04kUn7WxVcf1Z1L8x0Fej1Kk8ryGUre0s8X29RMzHdfoB7bFChICvdMNgeIAS-icec3lYdEaAtBvS47dFcRYkCEPidSCYxqBlQVWfQ_tp-MGwqrNET5eMrq9rsSQQrGLhp2SQXcisdNAOijcSu3ofl4oEk5keKKuT7Mxo92p_Gj7xPxOlJBpojnAK9EczPaJM9QaiyjgQN9XtqeQPX9yalboq693jGGO1WZu7pt0P6ZmwCWPXmUoK7JcWUVL_MYoKdzzvcEnL7bLXhZuxevHJZJ835q638qArY4DMJw452oH6Oi124KUNdtwQx5hSByL-GlTFPbnEi0A5qR8WMba3NEOpbzBlfGVCOz10NV23cDczxMvfExhMPslHeoXWPwV9cYK9Xc_pfI2W51n-8ZpT8FheArSJKea5z9OjFecnFDfI7YS_mO8ysn4Tud0KhJ1HFhmr0gksYv9e1HY1wrI4l9okLvUSHRjl5mvaswL4c3k8Psf5G1z-gx46TUY_Xo3TtYB90kcsoT4Z-VsbwDJ2AC5bzetwJUdlLhB_x6htaQEe61mkHAH2fuQtN3XVlEJWhmbn7E0UZ3Xne9JNlRpStv8cXpaNoScMjC2IbLDWfjkdd8pM8QH1pWt7h-yzNKTfyeTfQqEuDkjlblwZx2b3AIoDuMLVcG63ysQATsp-7MJUVXFXDHb95dhl4CHZ-AIVRmz47yj6MrO7qs5CQgl2iAH3oYe1SkYkhZWCtmTPVhgi45pqn9Usz8dueklbz-86AeESuonsZaeIjbtrYykK1jFlexHM9YVvBw4iu480KZv051GGceL5WTy5RKU28MCcVh_hozdG_EZT7EsoV6IkGKY6zKK3I_AMxerIJCiD-6d7IfrVoCWnGCgu0H0EBar7fG9lL19yUe94jezC29P3lH38vujvEwmV8HEivN91ZRdV3jpKi-_2HLR1OCJSWianeicA75cma5DC8hwSxgzTXT2WvRuM0ibM6lWKCGMfQGJ3nbmHN5THKiwcpEFoIdYi7S2L8x4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67b9ccdd00d6c0-97479429','','','2025-02-22 13:10:53','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42370',0,'cd-form-entry','',0),(42371,0,'2025-02-22 20:50:17','2025-02-22 20:50:17','{\"firstname\":\"JAMES\",\"lastname\":\"LEES\",\"email\":\"James.lees55@yahoo.co.uk\",\"contactnumber\":\"07387368253\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAiOa9BhBqEiwABCdG86L7pV65jg7Zmq67CC7GsfNW0TlWMS9KmpXAFrwQCFm5HtOl4R3LVxoCPbIQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA77VJYH5_ucs5EpM_tk6vbI5Y917_jnAYIvQ9f0Lj3flW7xhwyINd3ccTM6MpSGzrU2fH4Ezx3D_z6MbASJOvWuVI6iaCCdTzkxrQW_9kYmeqLJ6R7ojXMtEzOdA6Z-UoMo3QBgNJH8vfiW4GLPATVsNV2aHGKVC6w-SO_U8ZLeIughKHh_UgumWNmt1NmbSESBAXzRat9a8Iz3rcRivCBF5csU1xx9I5L8-nZLVCeYHispBwQO_eq6cfUTkqwXP-cNaBzcXkp5FYHfcd5da9inCwyWJn0au0jzh4pSjZuna7i26A-wC3Nyf4YDEDzl8fjY_v6Z7uqhqyd0m9QRCqsnOEJxCtHoPALk-fspx6_aM6mNkbMGCy9fK-E8Qq9dawynh6yBzYa0ASvBRZNEYpT0h6r7x2_Jps2T04cVxxiazqo8gjkOHWAdw3-wkzzSHrYOyyNC3Kx6nkaQ-e0zS6UDqZeplxOqpAm71c-FbCdZSHABiKND0vUaU1wXw-VurFMenQSsHFxVszx4w5O4TgluT27Ko77I3L2AMY9h1RG18FQO4rO9Y7pr6K5OHjTAzmenBuTsViD_nyRRS6Y584teqYvlJaH3vFkPKyiJNye-KVNwXqMDuOlym_17BDyt8PmY2kaid7aLYtTWfIEz1jKvU3yMhQ-Tdq6iF5xZxT6afw-BZPoq7qK7YLtqrC-Z5ZaGc2K7X9Zbo2OCEML1QGyiwUuAlB2XkRNwL5Da5GzF0Lv4nhc5zip5JcHXhhbESWjqrOZtr7um0IYZ1P4dnjetuNo6wM0jjQefSiL_bmK-RxNtKPLG8f1i40ke4Nsu8lzf3U9thA6FYtJO1_yk6MVqJZrxM5BrhR1ZLWmRzktm6nXlXAncZm8bE4P4qS4b1RoXBj8xdqs5GWUcyeZdUE7kJPLeu5qFG4Sf2SZ-upH6-o9OQmpVOfveQge22BgjxLumPr8JNuVApGgNrfVXVmJNa3BxWPbkK5FD7G_isLTiOoSJCPeklzWTouopMJqNYePwEyfnqNVFoP5PmymeHd2G_RiJQVp8bfpxmO62eeYwGeEVddNqheynyI4couYfeRMPzX3gCcA31CGr1mJXn12AthdmUjkMtsN7eFrStO36rR-96gvo_mSjE96TI_HGwwgR0fQsU9VVoA4OU8f7QV5OgdJ48fOuBV_yxdd7y0dppvkDv3Luw7mqnqWqEdMA0KgpMzlao6ecMpHWbVjnIfabwVpP2fN0VT1CF0BgMK7DelYTXAskA0JSijmj689VUq1yW1dtetXBrZyu17JGQf_TUaoOx_2pM-OSlPep-WtvCugixuh8_2ZBdd8GoLjeIRUQORKVzFkQyhy9VV0TxjW0TfMPEWTTDHEODsrGfZTedWxbb0ktJt63WVRVDquAgSaXDljqkuFENjz03R5iphJAjamRAL_acTQqRwfsEWT1SqrtJDFFwP2tyw4XLLAH2EOXsYxAXTukVjFOSALsgsr_PEj7QGfYNur_tOKvX7BMbUBitubO98Qwdj9UWFkCBuhiBCuPsII_YGA5sas04QDc1xPfW8IbTIYQ-F88BsToTeC_KSKT4do8K7bfU9qZQaZ2lFy7qlRe4Nk1qSkp9vZIRPCy6sBOzg8SWKQkSCl7NbsIA7NX0YNrrKwIVBya9uYH2XnnLAQBEqQv4AYWACkFSeb4yXLpXoP-NfZAeViEgI3SIfkMWyd5XZ48S5CqhhroRJrKZ2wE6V5dWdNi8VjpeP2A4E32hSaUTcdP2ogZfVL-ij-gJZcUgtLrp0cLleNF--B3NwlW8UmhXmeZNYovORGU6uM2-oJzw03XELJFE8-v65_c-XHqx6vXDNQTHGYQxyxn1ABGcbYB04JA-5lOAsDZ1uq7-8K3UusOlD41yAPPsXl0ylTxo8g5UBB6KjOP3wjKosxf95carySnBPKnRbo21R3MhnEO2ewp6kYqsJlqH_Hm6iHcyFms7AeehJB4Qjrk-j6rdIduThqq7oj5Nu__oSGEmzxiZGMahUupCfEnNow2E5ELw5wDCoHiLaqH6uLb\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ba3874238291-31901513','','','2025-02-22 20:50:17','2025-02-22 20:50:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42371',0,'cd-form-entry','',0),(42372,0,'2025-02-22 20:51:16','2025-02-22 20:51:16','{\"email\":\"James.lees55@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"9\",\"currentpostcode\":\"DD4 7DR\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAiOa9BhBqEiwABCdG86L7pV65jg7Zmq67CC7GsfNW0TlWMS9KmpXAFrwQCFm5HtOl4R3LVxoCPbIQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5NT7nzn9qvk710bmT3ocp6MbAtvjRo5Fsp5uiJJbPZrA02_UnqcG9xXEojGWlSi6Q84-leWEaEj5zHeyuDD6Sy0zkpeyTQNIMvYL076kntFjkfmDl4HIucnkgqQ827ipc_WV4wLsxMx_aqLv4cFL28bJeKUzCm3pwArcoylUvAlu_7YWCv72j9v6iGI6-z1FL-5E5yrZtZRfVHUUMAc0cgJ3l4eapMGJazx2yPah6sU2_Gh1RgUBecXtbhodctDR2SeTOMxMTeOiOEZCJz6Z0A7HwmvojhSgz1va9K9RsueWX7Ng7Y2JYPREy6frTD3Wcti0W5erb2mshqLTzLp0JSdJglYVv1HgQMY1_hXkm2P3Nx2zsp24rwH4QXj_KMi0TkJLmVZQir_lxv2B6laCf-CkeF8HCexUrAEbnex_95CRuiOty8TUO2FqxP_G3cq-mG8B0Xr2Ydrqph7Qb8UWa6LnOSJcnL2owPZ7avgQ760VGJSPGN_le0cNgIpmF-OTeXlk3dYd9MTQZAyKu8gIY4Ke-iuZFFDltPgNPxtPf2vF7BSN7zvYajXPyuYOQV7A65LS0LJSc-0BY3BMOcdI_E9puKJ9YDyqm-purLFCYquPjQS1J427sEOpP7W40bhLZoUu1lZ_rxpB1L6nYn-M-ZNCC7bytVSK5JksNeJ906IFURM7kKVpcTx1XZ9jTxpvd98eBQNptOJ6ij3FKLXZgHnyYNoGkw38H9OJsgCsRvPv3suJEnd2u1utAPxpikrOxhIDPlIEMclH17qF11dEwumrn9_5PKtIOpZcuLfzUGOhSuhJ7sLZi8Ac7j1I0V_3fP4pSw-m92zDPpyUjfhSFlO5TYowVUHiHiaarVqX3bHFdm-xVkbEEdSHHNeKEljrqnvPCgGdsHXY0-3feQydX8zx3xqa_bNpLO6Rcr_AS3dg4RjIJf662rY3mSY97WjzRD0au-oBSPFlGMMcMGZN3429kSECI1H53EIbhbiudiuOrbdjZdv_sXYGhHT8RXnbTcZ-g22ZHKruqkwH0yWRQakYRHLIWVVowsjXpnpjtEYKbuJeR7mHfCUUAEwrM3S5czci7A3xnNdQaCeQodEfK92KhHYf_jDglr8DV1ZDgrrby4Lz_UboSmqIY2De60P8LW1M8A78Ib-eHypLcMaDVOxgoJvbzoWhPCLXSoABgql-Ny-absHUYp7J2w928VhLI7FgCCgZPWtKt6HeIs7h8RRERk4Q_6m1SIYe4vWJSv7NJWr4Dpa-Ojr8-U04adid9YwrerhYTt57EB9RSku-aBh5evrR0VmoiIGGuCyTEqUFHAy5HNiB2mHlVGp3JQ2gYGWSafIZeHB2QAsR9GAi09rgXIIXmBuyCE2CTzrMrrgUwWyjELReqNb-VfLCxk8O0agFsYO5XR0m0n35l9yqdQ8ZpbR3bQgy_0VGJMTWotKtuMWEN5hzjO7TFl6oI0r0qjx2LR0jbXYDKgn8yIgi7_ADNQ2u3dO1cGKrXZ4a3u7ZONnGGho_7rIzu1hS1kJizSPx8c_1yiUBVD0VHbneubeFt4bVeJ18owKQIENJZXCTPPu09stp0N9MCCRFYy_vfuQKpDyESgr2Pgn0RGAOGqrlOFy_UNYplx4WyDLUOHWg1Jzb680e2xl2dMHuAD-maBVQG7dkO_wK99NuvLZgKEL-gKWiMR7jzGt_6WbL84KXDx4CAckC-9LjX2G6-fMUrGrzz9atViFpzFYFE0w9xBkl4l5ppj1CY784B3k4n6nrshDPc4Iar1rJ6AfRxRwIts_ExjBM-Oj0SMm5YN9MIxIb5JV4XRUNg-htrHm_BreQ7ubUTlWiRbJjme36wu8obDuOl2g6QA5UFqOrqKixHwmVUVM8DhgTfTwRbb85r0HHHFqx-MdFpgb6CPS8G7_O-smA-_FhAg5vk_zhZLE5RBKgGsh8FW2HIJ6G5XSug_naToC2Xb8DD6SdBjnhX2n8D1kjVqXoG9GSMQp78mg4AC861yDaColI6LJRvcuQR1ENZXkPDv0lqhAs7QwHCNK54rdpoFl5em_wi2ql_I7PWu3Wv93Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"14\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ba38aa4eaea2-37345503','','','2025-02-22 20:51:16','2025-02-22 20:51:16','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42372',0,'cd-form-entry','',0),(42373,0,'2025-02-22 20:55:00','0000-00-00 00:00:00','{\"firstname\":\"JAMES\",\"lastname\":\"LEES\",\"email\":\"James.lees55@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAiOa9BhBqEiwABCdG86L7pV65jg7Zmq67CC7GsfNW0TlWMS9KmpXAFrwQCFm5HtOl4R3LVxoCPbIQAvD_BwE#row-41115-3\",\"recaptcha_token\":\"03AFcWeA4lSlzeNrxRgO2g5RSG5p_kEqB6HV6OCWB2KK9PAydwtOBoPNveOfd-YxgIIOLFkBQR5xHa3cWdI8bBn8EDvBwKs2GIa-9MzEu0uoX-FVHM6bYwP4qOpTgO-rzIvpc_4bOBQK6cSjKaosMUE9lWZbFpkTkqPFD7OwfODovMZbzgXCyfKmAfNW86SV4hzPx8XUesFIpZ74kYa8RABFWVy1nQQzaTyedeAcuM_bhO4Q529USsFy30pBaKl9CBoKg3njV7qaO4b9eXaHwH-KQbJGs8-9QWAUREvO9Cbxq5FK3Hd-pJVsSC9OSfCFfMm7DC5ryPyTkybZSR1IHhaLrHFG78znetB07ynNYhYDOOOrBvQEW8amixZXepQphzVkmozFPOSI72JDKIw7ikrZSjK64C5qahKIw-lEdLPok4YAtSAsq1Uc7E-bBOaQ_iNAIPatNk83j8mruknRCpFvRNzsbJTAEDXdqoPgp8BGR6yn8laIh9R3xi8P6LMb9_9Dwl0a4bWd_u0MT8X_4OybJ_UbOlqkvTMNVcAXRQuyudO8EpnuZZThlyFTJzGFSrVUSAO2ro4zFwlkpoDyxIJ6-Nz8pCotslQjlWfJK8NhzuKJ6o-bFj4rFuGWum02F3I5krpEZoYkUHuOovCa44miILStja-tOu4eK4aNcUhIY50fd9jssh-nTc40KG4eKDPYbUhN3vvLmmw6gASqeuSS910OYWpIhNymqKOJhCDkw8M2Tk7mEJvx7S3_QaeX-29Js-8DC211FO5iamYn83oT4Yos3n8DtillpmxmNMDuAOsVouhwtvDb9wGX4L6NN3Rvxd_hOfFpsG205kqDO7JU8oXRUmuSWl_a71QxtYf_PPWIqhcsxnAfrs0pfh7m18b3sgA1GjubkBKCfiUDvurTfYOfr5TU7q5VBmxDI49q3wIesl06rbU-67tP_ApzZE4XRyU4ZEjTb6qJXD4-ADCgRklRjmUhqPwuEitv75dHfY3oDEU0PvMC05OQt6Rx7GeGsUwt6m95EsoyL3hZRYy9InHfXf--35cRVn31wHKRhkO1bn9XxKewJxBIuNaNtCmg3go2OcVKgsJtAABQnSmtCr9DrJwLAQEc0dveYg35WStMOsfe5G2ufKfKE-BU8NRlC7d7v9BQgs1vq2dfVPCRslq7UXXzbAF30YsnAUgnASCcTDMC48TC5xjykPO6tBoNWJhRvkwXW-I8Ct0vytvNNwW2mYGCyWEEZ5nr-spFB2IR8Spd2KuA47ijuKv-YI85EVKaMOwzmIdQLtZsBBYWWk0SHPhGzn5fWeDssPSmKl9d7r-JBAPxD6iX7yjx9nFTsTInDlwFPuFPZNg8-i2WVV6QWYkrNNBVvmyGXLXBoNmVeoxwKkNslSIJtX_bULYgU-G-YAYY75wpIAQ49tru4CeziFTfviiVMty2BcH6T5ux0UOYMzMxhfw1-xEuME3xAKjOyrgBzh768hEXy8ugJbtxotCy5w529HTusgacyM8LoAO46po-7khljbOzHlFjdKz3waGLB5giEEdh4cG3RKGEZzP6dkKTdzu2LDabFJTwwLyOgQ3YNnJOWqZmdarAJt6T1EIVetiYBplEM9tvMIt4Rtu_0wyRq9ciAFr5unHQRPMhA6w0kJM6wl3g1_hlf_mfU2YLRFuP19hM44L8qyYuGuWnj8gdc7aOwovYLsRWK4OEK0qlhZcqbqQ_8jIz8EDWFakuLHRAgV-aiENsxkunJHXKeL-gn2CbRMBYxJS2t_-EHdXmlHv7L2BDk-ZOpgNh_qzZLaVZzdoqwVqNTABlqiinyu9rkAY8eVZiCca2wQDcFobt9CKpIzOfT3mHuStLqNn3P6MuNeWPZeKe_Wqp1GiMv83BRlrSniCMBO2rEtaEe1iRR3IpuRwOHwMWYbb0AL3feMqbtVpdTO5BKU9CYBAt-hcie_a-4UyoLvkwGcZFDjbnKIgKE62kzYmkO3ooiY4OTI7qhVAgnbmm97L8btR4TZwSBYtDg8qYefVwV-9oXnVYH3zAnd0crBkLtvlNGblW3x\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67ba39a0082f14-76692439','','','2025-02-22 20:55:00','2025-02-22 20:55:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42373',0,'cd-form-entry','',0),(42374,0,'2025-02-23 13:07:47','2025-02-23 13:07:47','{\"firstname\":\"Reece\",\"lastname\":\"Bulling\",\"email\":\"reecebulling98@gmail.com\",\"contactnumber\":\"07368285976\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6u5jjSDSUeyNDDhgXMDC8aEV&amp;gclid=Cj0KCQiAq-u9BhCjARIsANLj-s1ueE7zUvW6QjtVdEu4cTE_ObN0Y2uAZzGkvksjoBfYtEuBDeeci0UaAqBqEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7VpwTU3TSwJ9KjfP1k9QdjQk_KxZjufbWkG1jvm7_eU_zqIwrR0H2T4Y4aenleWBijKsVmQLHJTiVHgHRNx4M_cKHJHipx8aJMPrOB8igL5U_7EsqWsJyP1MJ09LvnM04kZJc8em9orviQiv6IB0aoIHs3RlakhXa_x1Od8GTgkXSB7JD9BOb9RpwMO68d5VLLQMyv0UfbqyGhqj9ZfFhpLmvS07QqaV5f2phFyBIS-CeasWLTcSkzXz8dGeWcK3JKXinfNI3vkZztM8uVIL2C-wyiLvO8xDIDPAky6NuPluNYsGaQi3QPCyRzuLMHO4lkOZ1nlL5ZoKQmukqsUjutoy9vo9UDc2pEyyOkSr9JYDpPNraWpOqy-OLHh1dwthJpQ-dcJQ39mA465oVhe_vIcgM_-2kT6vYC1W-BtzjnoRCoOzWjQdUnGpiPVON_sJQImJAHaEJ10-JjcOueumWfeHwK_xPW52Lq5Ub07rJqRM8dhTOyPHwpYSaoslu3LsLjr9MZpTzLQd4dmuw-RLq1LcV_OrCzdv5QMbazf4vcP5uVKwH1LA23CPB1FgQZh5oDse3fBrmMnGLyabR0j3KMKnf4K2puZQPQckoVdRSc2kmvEl9Dh-xmC4_xzgQYMLRbgNQHgaXB2K2P-Uup6FbLZkbVz2_uMfmDdAU81oNuYLnYELnjhfrl035fPgWJbyLXbczbevV2UBg_Gfb4-KkHkAo5QnrEMJByGd-wY8xtm51aqMa7YllU4gaHTg3QTAb_m6N4oskBs3qEsF-QLcXRly7ieezpFijlziso9KDmL87JIDPxrF0T5GCbNd2a_Wz0-avg5yP1FYhJNZfmnE-BwMbhp_KgR5bM6zMw1SnV7hlQx8uzAfFPsOMuqNoqkuu-tm3RqiYxa9zQeK_cbswUawARrY48hS8OOTJiAz3m-bZ0mUFfZ1Y_BtR9Dir_3A9maahmS2uJbY756oLOCeqdCOZrYMoGXgMCNmEAu7xWe35deYpvygt249PtnrIOoV59sXwPyb7LXi1jj6dTsCU0WwxzjuACmYAgGmqYFDl7Fegf0VCWKh-VDrqlyAmzXUNeBYDgv0edY542_24EBXYUuxA9r0pLfY4i2EOHQ-LSDUwARBKfhAchwdDJgPQL9cAq6eFCjZt5D5dCvvL5qXqr6RiMz_AZEoxKsnL8RrBTxAoIv1d2du41kgD86fG2Iq6RogJxV3sYhDxNh7JRDe1ScpBYrobUbGnNCrE4qi-KbI2v53b3HiTwkI7purexnT-l_v1D3tsYgSsWVb68qwt5CKRJBmqlNJHeV9qMT_lNueN0qhVVae042bUQHm1NdmbCSVQ-bVEnQ3w6ZliVifer8f_J6_hoeD1hiqw7K742bnz7mXbTuQR-e6nb1NITYkaAQuMSs-8vz1-dwIi5nUNHKs2VVjs7yI2ofnK13esCa9BZzG-9CfL8Tb2VYCAp6YGO-0ECjIYAQWh27AmIMuO_cn1JnyYz2KwfAmEWVHH5VW9QpgZgS0hUzLW02GM8VnNNbZXVFneFo6sDmm26fs16spDEd-LAgJh7QZiQZwkJwZvWJCLd9jLPned_gircYcwT3zPnFoteadBCkNLYH8E2Q3wl8XxjePOxFi68I5Lhc5-4UiMluEfCtAHAAHl4jRSrNXkilK56YndYZ4cs5HxCp_v6dv8_apaDGam58F1nE44mFaXop_jp6PKXfxWopUuh1V5eyDKlRAek7JGnGMZLFrzG98CHtOUd3x1xzkNtPXxNWYzzg4QSLRDXTwVh3GLuzVPrvDFfe1v5GUZ8X8bx7A5gNhg0_MA4fWYBbyezSYPVp_9XX_EfMx85H2pqL-7l7ZVGHIq_y8SpdsDR_4ycdmI0vzunY5U_5TKSFWPfCUTEeIRu1l7mxHeOUY8Bh0rTZJnIyH4w7JEeFyOt2ofpOy-3OTPQPA67pc8BC8G_m-BSBmeDI6uGyC78-VzJCsGQtpO4npTMNDKF5AN6t0GaD9fLItT4toxUnnPAzJsfWUc9CVrImEA_9gVzYm8_Vu26qTxCdTKZSnkWtjSkfGIA0x1OviTztTSBH8271ad-vl0i8ke0hlmfxrtsfSMCP1Gb6vu5l3zDBw2bt1fmMrp_H8OVmFyuE1vkkP_8x_jKxOIbYi70iRMjuViRBR-S4mqJeRk7xl8QG_6XLr2jKegnlJytuA27TypsjbrLaoHm6vXAZOmG0ZE6tcCpS8JKYuZPMb3UiBFH49jQseeW31s0TTYNHQQeW55q0yOQLDIlTS6mLGQcnQFlivDv6Zm9BgtLNv-rAd3k8Mjz02B9uY0--R-FfLAnCd1tZozITZhFskoNfe9um7k-mPC5BxrvcUAgocc7\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bb1d9887ebf3-94521914','','','2025-02-23 13:07:47','2025-02-23 13:07:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42374',0,'cd-form-entry','',0),(42375,0,'2025-02-23 17:50:45','2025-02-23 17:50:45','{\"firstname\":\"Philippa\",\"lastname\":\"Nowell\",\"email\":\"Pipnowell@hotmail.co.uk\",\"contactnumber\":\"07795 513248\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA52yHRuVExoWgKX4kp4ff-Gc8DPcOlHEAikDCNhOtkwcoeS2aO8XrbEfcfxv0xZchc-L-4nBCR5luLNffE4JxG5kE_1MwRa_l7RTx-2398CJhRvWP1n3igmf-PRTLYx6nfy6XB2HXLKH3WkAMdGDw6aZCyrdxwlbX4fflh0UoGvzE1gd15Tf9mYLIZ6xXiiPPTUab4ryfpFXJ8PqdM1HMELUlueNcf5Ofl9pSbj7kDtuaghyfVkGQ2DqKHFVe_GkCDOa7bkln2E1CZTJSa2n56MjKc3Fr8KuWLaUD2OP44z2oHm9394PRSBVzFgRsCs-Rpdf0VxY-D3u1YKeuqXlZtj_TvwUpWTCPMfnj6CXwIMP6IEmS68TtIT7JH77ubj3ANM-5Yb2SFG0C1DHoXpcJklXvzVos_gcfCDAf7yGTPqK39-eZSOu1IdD7eCXnBAHrHur3zKM7OWzpvD8d5WQCdSk3MMSTFwONY_viUltk6adcbtQ4tyB_o2BwsT_xhHfhNtxoRV0dcb4paOCzLZp_S0CBaKBPsF1xH0qBb1aorP692EjS-oMpzqw91jSTd2rCfd9oCB0eUZf_b2TQy24WmrvQ2UCkWayJIxQDGVrmbXFYcLwCO_kB094duSaab8gM1ZUPClUgu4or11X4OSD2qa9n1CuomTDzh7KnTcIZ_eOy_vZOHLVXmAOxfejEZRGwtHa1W6pXeEUzpSpCNrPBnJTxMreutB7KAlkClOREl0kWAD7sER2_HIT_gYY6toy66H_y-hjxCZLZFX3HWgGDk_DLu19h9YuYk24fx1DJwCL3TtGqm1ll5iMtbw9fCYwRPWIrn9g6oAkYlw9Dfz4uyIXpHrPtI8rmfX-bYPM62u4KZWw6OM5Uir9WZQENirjxR3fAVYKPEpLtc6-5a73nZaojQn_d2epUMOjnVsh6xEZbkHRRBjuQJLUjCcjFbR1aVEiDhFZAJ7WjFzilti0tgkNYtJzJMmpj8HToYSMAf5DpoN563_hmuW1lYMbUFhPkl_YasDhACuhaJuyVZ4HHTt1_JNqlcnY3jkJzhK1sPGkZvqGKEqlBzdiOBUws_OUM-y1WybiQWtUA6bKVLHGLej2Q6a51MGfrvd2Y60T0nEhPe2ZAJoW-Bd-IMGIgxPR-MlmT0fZdb0yCJsjXwDAiwkbj864m-6uU0TCGjUHctNDtfs8Pal0TV9T9Jt7Bst_U48kjBbkvIJ4JlWDJ3Ak6k35QN488EJsnlwyoE1ANg-o1USFpIaVbKz3HQh4asR-98aqyamX3APiQCGWRPfrNeEilMEVjQRL3WktcS0B0xHWx8WgZzRnqwef6mfjIfALLw--ygcboccL6oKTjO3UEsi8Qd_8VPW-ny-27_OEXq72d-DdsMZ0KAJxm-cA7KYbe1h20PLtzDdYS4PvrwftWmWxcocx3B2nd6k4BschCKX2Gr9EmttH6v6IB9nwG9U3kM4KQV1cTfUWgrDbRK_pAOL3ClMvS3KyuKfd7w0G5a3IZiIJXrMNtzNFSbz7417WRxXMMvUYfnPdi-aImMh6JQ0eNZNpuCi2wxBX9jMS2P0l-MFHSd8_VP4lzZfZs2tavyGnnIXBacmMteSseAGK6zLTKHPLuGaq1mtCLNn2I3zij7Rm2B1ABRM4n1g8lgfUL5Rt7OHqYJhatdkvz3W8PVxPuP8CPiTzKBKASK4bY9UlSzIduO7ysy9RRbLCLi-IGrIppM-JJSgxufpC0ZGRnIYJmT_kjEOBAsKMnuDVSsn1JRB1aBAW5FB0bqfENR5HDWMpvbZYOlZ38sa3NSsL1qqQHSuY8fPJFPQ3XYNfRrW0YTYdbwoI1ABDiQ_3zSJkPzjZDXCr2kCwyWYlDU0HGwoXRJp_hphVaAbesI0Wbq_42m6p6Bl5dJ6glYEmIZ6Af_H3B7OPqDJauOjMO2LWRiDcu9aVek89T5HR8CnzMRhljNzXaICRUW8O48Xiivplhu6QXHmWahmvBq8fr_sQwWoDRv-Bc4kckpNAopWQQgHS3MHTc8ryr38FdcJtuwjapptbICSqdv76lS4i7rd2KJgIOXOQr_YsF3I3soV9HLpq8LtQzR6n6QcXD0Yl46Tzr429TQhQkDjMFKLwQkACeAf4N8XjP1xLQlFqZyGMHCukyDTlC8cp5Y-potPZPomQKL9KRwzSdj17iZbfh1p0pZIH7TrZJDGQFKakESU6CsRyfeC8h-EF8EyZUaFb3zUEakXfDgFHZGAHUxjRX-lIvDjYpMGC2uJnqQdgDtkETvgZVq1MtjBxr3Ul844P6xjUp0t01oM3Y9uqO29ap0IonruS2VE2o3CewnFcscpYuDdX4Xdb50\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bb5fe229f2f5-95847795','','','2025-02-23 17:50:45','2025-02-23 17:50:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42375',0,'cd-form-entry','',0),(42376,0,'2025-02-23 20:30:49','0000-00-00 00:00:00','{\"firstname\":\"Alex\",\"lastname\":\"Robinson\",\"email\":\"alex.robinson.pt@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sGa808pkRhsxp5EYFDSFGrT&amp;gclid=Cj0KCQiAq-u9BhCjARIsANLj-s1zPNVfjvl9Ebi9Nvp_8L0fx0m49C3XTkZ6TvyKKVqyJxxMs1k4tl0aAtH3EALw_wcB\",\"recaptcha_token\":\"03AFcWeA5Et_xV1wVPGtgHH7-zLwUMDKZf9KGwWF3UvAn8GCHUMBC59viJK7rCNTetkMGAXAZk1b3cKzZaZupAOFmLVC-7c8Y1s6chIz-54AgewDoEFDEzHFqhk9w5SlBBPptk2gLQnrgvB1EP4UARvI8OJiK5to3i6UE7CL7UpmXrD2EIyS6tqhrOBpKF637iT5Zs6CSj5YbmN8IYtuuTp7noV6QhFGVBMjWv_3Cq5K3vzGIUKyCH8s9GTWOMrt3kKKZZrVqr-Gtg54vd25erJtF-JzOYs2OmZ4vjtD5HoMkC5cqHDHb6A3jUDUgzOisuSJEcRiACTuUb_wVB0KeCKd4g9Af0zUads_iaSupSyXnwF_qE9hXJQVf-GI4a1bPk8424ADl83MfXqTz51qDxD6APIY_yVJDZy5nkOODOwfcDhFf0F_oOTI-4Ew3pG-YnDisHtX9Lk8IM7GwLrm2Iyk8U4t4nS7M_RCw0fQPmrl49XNY5lsW9P05HMKKfy_ZH5AnOaTlPnQUjCINoYJeEvXboIJgiTOoi23EGhY51dPJEigGd6PkQH_5s9D4GhBNj8ZMVQ38cm6ZkIgk-H_7r5Ofod-skj_CnXmpMZArxe9ifQjpsKSXZQk5vWWZtREqOuvQ8_Bn5D53Kv63lQTLpBB9lAD-2dtjZ_KPjAowQW-LRcYGQ-xyiW_P3MTKsvroXglJJcRREv6tIyZoXo18hvOSo2nt0rLh02nn8EDXeU9j3QuvTN-8O6Ltg12CzFuQZDK48QUPiCwfIOT7W4VVZkCFduqkV5Cn_p4X4RyaQR9eNe3qU3aWSK3s0N7yyCjTrKQ-zAO1VthiFS_6Vk6l4-HlMw674MFvsTe2-goDBoOdLjqW6-xxJ7pD0ujdiiU1hHMO2ENTzo6fa7HmnvMxcD8bb8-19yRKLQcIkM3te0Z_Qo5B0bAcfz0RdzFJ0KyJTxd-TBaAmtfceelZX2WE2Sqh4PPdVXvRMiouLcnNsULdwAGt7zIm_BSqN3abKFgqPAJkhipN3bQf6c_9PzinR6obLWwut5zYYskq6yMG4aXyUwe23Rt_CwX4V9FCGHl4C-JGdumw4QbhtyeMLMD9YBYOJTy6i0QgARX3raoxoMCO1mi7Xpu5gMwF9OeBWMFkAukgkaezd6j2UNde3_6ueUlvlzKJ1LMk2h7pmxcEaWYIbThL5I8npoaDdYuaSghHi_WV948HdHSywGaF9h-k9pt6pt73cOrxCYA9_80UWezkbKN2e4IgVCmSCQx92xn0y9T7UCytcOTvX4zGilYy1isV_VajAh8_3kSwHI70ADJGrMcy_DPl4XfzYaS96nfr2DKBhFbzKY6MTlJsONwS_crCClITjoYctuMaS6fVBV_atWldULZq7Gq0FTH07tm3R_rw7048MAdEIDh5KsKOPYU68mcz44u7u4fmKpxARYRWCiM3RXcfeKY-bVk82i--0nGNB_jEBtyjiYkH3tz4SsqbP4hB9ygrzB80RoALrY99cM2qQUA2-8GWM0trElwz2iW-2t3f1pKkEcFB5EYPQWflayLbYDXyW0EUVr0X-9RkUXoA8HPBXHP7-ddElb04DCd5jAlqi7kegJxIhZ_J20_C_FlfuWWekR4buEQFIjyz0zhgvFT_CiDh4-VGod2bUOyEbxy0B2CYr_mfMlLfpvGwatJHhuSYgXd1iqpPhKMucOq74ZWiwzHPfDBZnPhdb6r0cQ9GgWzZ41-mSKt7pof2fYGMdWVVP_o6_Q5mNXIWCL4HplT_zs0uHOJoJCDN-Bqr-rdg4P_rZHA1PFWNPeBU_taFZkyIgnXFEWUAe3vcdzh1fJy8knKo04qILwBVMxqEVAxQjEIEOHhYVRfq0FnnpUWnv-qpzY03kYxfy-A21QHLfz38WWjxodFhCGWB2aLM6Vj94oIT2NjLkuolwPvtoHd-rWJcZucRoX7j2EBKQp_HeYDS_IFnmc7LBc2NnOAdyPC8Y41KwrR4avPPSXKlu8_mH0yOryj5j3Uy6V3ZiCzsQzsudHdKyoMMovpYUmk4Tlg5zLb7Wb7ZRqRa1MFmQKis9VUa0P1GO5B_4vgr-ltl1rQwk1ni9Xi67zJti5swQdnAI_zD5\",\"recaptcha_score\":0.5,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67bb854d9f2c08-95154868','','','2025-02-23 20:30:49','2025-02-23 20:30:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42376',0,'cd-form-entry','',0),(42377,0,'2025-02-24 11:31:23','2025-02-24 11:31:23','{\"firstname\":\"Hannah\",\"lastname\":\"New\",\"email\":\"hannahnewfitness@gmail.com\",\"contactnumber\":\"07503610897\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAzvC9BhADEiwAEhtlN6SzbjKsoZJvTP2sXthFf07AkkqrFdnXvVib9A4HuAKbRTxbUW_ouxoC1LAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4zt98WhBBPkz7DBuDvhCUPjctt5d1ntWIz-IoOt7SL17rwGIq4EBwvCeI5OWd1ssR-6ahg7UPIT2-HvSaV7INpy-kG6OetjmklVIlBeMysr55_YPouIhXCJIF2I6hCixIZCdlUCFbuywVdjWDP-g_0t-AuzNh-xjkRcRUoTBIKTu82PAzgSvTPaLmK6SnGRro85VCTTmb00avQUqyEaqvt2W29Sw9sIsZmeIoz5qsSTTMfa7g7kb0SzaSjLYT82R2l3waMGrjK13zK2kEo8VDlWbDKUjCPQgXIApRI3yL4jWICVJH4YwCrW5d31AzI-UwGNpnu0nsUMcMh3T_FTfSQ517T6vWDR9fZpn4OrhXtiC1WoUpsskaWm6Bli7Mert2etyuvcvftmdFY-idWbSk6bC2Bvq9-LnwtOH36ebhY-J8gTl41QSjHoiyA2Ea1yDUH83Aij5JH8mvc7h6B744lvnDKzbEXDQr5W2Lo9UV-PaiqJP1pSPOhqO2qxn4cNcEkG7c587a43HJ26Pez1b7P_8B4kLZKxmSaWlNTyLbl2S0z1-Ubh660vsUeg3OpdtZANFvRddn3Y0Ge0rsLnMesLBjJG3V3SpPC0nb8XjbhwhzG5i7MuzPhFT4TodzGsfV6jgLQAao76VrKXTai61DYDtcmJ8IdjiAPw1DajQRi5NAIHUQM-q3bXHkUdrbWiMFqzZhA_zw__vBwUESyxjOVmWD-tBMzE5kn7so16b7yU0ZHpwMm5hO91P0b2gdgcA7PaEAYbQ9rVTDFmIf4FYvJjrywef343pGa3qFw3dqlkvic41cWK8GQdqD_ag-tIIm7TGNjA_bVwXPzaqpRXvR-_DlQAJZhe4weGdH9X7Z3NCqy4JrJKjfPxmI0NMSseD59ZUah1mrqFRUi0BmdhTyPOhvnJrqvhraYUjlK4MVvVxP2ixq_RBrtws-o0l8SHOUelixvvBnAkmSVacJAfA1SL-RpGGU4nanMxRsMC0Jgd6W9YIp-BEDg80Ywmbf6lUavwz-7VFvMSQWVDfIA56xOl_fIWzkeyn2aNvao5_TBZMHMNbNd3exQvdFq0ZpZ5YVDLXvmWfSf6RfPDAl7f2MTvVVB-S7ffBvVf55Erfpn7vWCs4a0laZ9ujGwc3XK5ED4aO_fwEvOCtAjdqFyADnvhqpCclXxrq-9Whn9ualXGN88hCkHTrxSVZvNvRoOFLtzoVZNCRRfuC5dDH6MPY_lXDj34nItlVIwDIh_hb4BakCsb7Bn0atLt-_vuhKrF-eZ2DKbeDBPoxSmrCbb5ezwttjhapBrL7uh4JFAz2Ge7p84-xT_VOvWwzwF9oU8R99OywtQKKErHU18RxMm42_KgzA--AcGR4s8_JOtZPtiGljemSaCJ8lePkW9w02M6fZjH5N-XDJAxF_pWJDhVFcbdTSgT1IY8zZaOGEaG6RFCc2nWL7y2-XM9QO8PwKQFxeOpi57OQg2snfO0FDBgRVL9qWYA1uVWGklDQnoTmP7S_U0NH81UwfsRdG25Sby-hmUYM4l8_ic6L218VdxkxwfdXIIv86RgfWM0uK1DDE_IICiBTpU8XRYLMNa1VPa-VdLGNMLNSVRbfy1ERWr3Ffd0NFLFGFqFoEEXWRbUDIM5aWta9hs8FXPj48tAI2UWKekt8vnMydkFRoRajt0acFUxQuD4cePlvLvX25b3Iwyp0gMBzOMdrOJVdTnw6Ge6DOA3u9ZjdCYdxAZZooic15Q_4HK6Q_GkmQYXBhH7txVgikC2XC2BR2WNV0iK79MlntAdRnZPhmTmwFa2VzyN_DT1upNp0cuXsY5yMloKYR1N9FlY3xlEbdwKh5HgxubQ6bYdpb7aatPQpugbS4FbTvM6fao3NjJEDXJlEy4nfQ4FrSrpCXtWkwEicLS7SX0AgtIhNDpnQqZQqAhFvSI-LRErjeSnUaXkfYu9n8SaswM3ezQ40yJIZTCMd_RrJbClRWLNUOD9SiPxgN64IielhdPscDHUvwvD_OjU-JFcE7ETsf9XrrnTM4RaPM_oqQZvEsS-dVGNtBMtl0agoYsBwgFv9I6LblNGyQ47Pl3WuSDrEQpWacXFg4roy3kT4aM9eB6qX4eJ4by04__Cknbwr8uP7I67ed7VEzvT5ZGECDbFY4KTqYqL-rPFSQjj7Ih-0kC9qlJRA7xu-Fxx-PVOwJ7KZKdgN-j_YCzfkceeeLO6FdfB3Tr_QIlduPJnhVWCb4JoBhiFKkRmOctnaPn8mTTZa_2fgJU4PkPY8SKovFGteHCsy4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bc58785edb05-86333119','','','2025-02-24 11:31:23','2025-02-24 11:31:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42377',0,'cd-form-entry','',0),(42378,0,'2025-02-24 12:36:12','2025-02-24 12:36:12','{\"firstname\":\"Anastasia\",\"lastname\":\"Millar\",\"email\":\"anastasia.millar@yahoo.com\",\"contactnumber\":\"07759811777\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\",\"recaptcha_token\":\"03AFcWeA5KK0mk4bE3zGrxH3tBD8NOXNyy7o9AmjLYms4VxjKOe06hv6flK291Oa2Anm8-9Da1K-f4B5M34UF9DBBGQVT7CuI1izIkU-f47rML4gh80cQnfSwWvinwlZDwXjyR7jfB-lCEoht3pEdrg8dgLzUi2T8gqaNoLD_dqZapsoQss_pY4NLkrNMi58lYxV8uoJ_ZlrAuZINHkFNnRUEgqd1vjnFzF7gvIhcg97ECADpCFFuweZj7ODRvwm7CuwfULwzDMyJJomm0xv5zGS2bwA_aIUfCoEByjo5rp-IOVrObO6IvKhiWnZoE75qHJsZmHxZ1ZK_VU23PyrdbczVJz8Kw2lP6897pJJRXefeSZPKYAW5vz6RAoekM7B1W49yX0wowWIHTfc2C0-7kP5iD9EVDqqLRhqAhFMiw6NO195t408glq3rswhzRj7kQHdonBsoYLYxDbJ203YQ4HlfJyxD0XmZvM71QxHXOSw6Zf8qNM1qPQuAaGZjU-YpXX2G5e8O3nhcCp8-ZKmnx8v-O-066XXdQB5VaoVaUp-3ZUXSr5hmqg4rn28VRuPYUxDRV9lSoiHckFzFVfPDOGSkW3AtxI8ifesbMsOcW6D6PWGeMBw1qOPi69-hK-5MNA3dswAuuNEXPPVCdkYALzlvB8RKBZXWuSNuUfJcBxa04a6xutEbzN94mi_9-gIRvbhRvWlYXDXLYOdxQy0HY1xGJcylHPqMvYVX9d1VDFYUxxbBrPhRGHqTr-8K-9mxU54VBsraTAATha1ECSyMPaVOgjRVXiXRGJax6Zd1mEpoTFCVFc8cfhpEN_liI8c1APjyB3z5UToECSuPgtk_Ey6-SDu-UVOxPUXYzH7CADSjmm7KV4hlH9Yn-iTq0tZ9ATfuxFvoYFpTAY8o4hPwJoHlLCCASoYVCk6uUq2z2FTw2m0VIIi0QI41zepcCfAqRX3N2k2WU1TDWXaVJvYHsdmOsXzF2kJpJAyuKDX7WiSJEVj7MVgAu1fMUJph5KG9J87YcQze32yfR-4GjzL5KaEXO4mxwkw0YVFeKv0lmp1i1_RB1XHaRaRI2Avkdkk-LabZ26ATuhDExRr4AInIf5p6xbPLEJEprurCdYidLJJKZwhb8CkfW-2N73ZedXGIpwVZ1nA0qTcCiqIEufGgIeRsH3MPdXMh1fANCoo7VAeJk8Obp1xxSCAbIsUUiw2DPxPXey0fq3jzF7oj-hXBQ7dVLi-_FLwR7ldYS6F20ABz-VGaD6J-60DBsl16RopsuKe4NvC1P4bFXTue54jSiPH07qc3XDbtyIif7qBfpH0tMpC4cSkRyEDQwtR6eDp7kq5WMZxDVNS3bxAH5W6Aj29vG6YvAbkXJpGwOWSoLf6j-alvzGfS0y3-vWfZCd1VO2WRaHisDUO9iHkjPVzKAJm0soJbgjkL7qG8D3KPN5UPkzzDSRfEKrDqs5-zJM995tImW6Ouhtf7isHSxLE5Mf07FQPwiPwxYYwo5utDWqw7NQP5nLwpY0yn9VmM73sayUhd0F2D87Kdr4omUJOeY-41koV10f_uEm3NIptjJvzIiTmzS543_we3T62PmjL1wm1euNGLS4-G7b8_XepEsB6FyFeOYn8pjdNbtreaB1Ns6YaIrKn-K1nLvJUldLP7V2SEiYHumZiM9s5UmuSqtwmSE-WAsKork3b2AIw8QaUhsmK6EWpIZkL_b0aCX2GTZ4S1tjnpc9Iegou7tEt1JB9EjHCfibvZg4lPbl6MUM_cb1bCuOxrb4GSDMn0ijwBQmzizZBozOhdfsWZkJUvJ9DS01l72nMG6MORyxzDx34md9aqqgCaYmTxCePob7tuFWW2YjECyISWbSWntB81Y-mudf3WezLtjQVip-fZwCP7_oQ0iUVGb5ciAx84AkgdwkATK06u2OLJGac9MRud-T6I4Z7Mk_r3UaBj0iw3kUqqykQn4AZQsde65t_Sx3Q8Z4uyOC5ak6uO1h8QMeN--OdyySCGWyZd9LD9_qo8Oh4_FDWT3yHvCCcZQQJwQo0L0pI-_NH7Lt8QQgDHKcIEctOWJRtsaJcYoZee3opvk9tWSugDU5kQ9AoS0oFcPV81O-P7NFl78pmzY\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bc67af9bb283-86341106','','','2025-02-24 12:36:12','2025-02-24 12:36:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42378',0,'cd-form-entry','',0),(42379,0,'2025-02-24 12:38:36','2025-02-24 12:38:36','{\"firstname\":\"Alejandro\",\"lastname\":\"Lojan\",\"email\":\"ablojan1@utpl.edu.ec\",\"contactnumber\":\"+593 984455231\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5FQqxRadumrh6D4TpbL9fMWtUaC44BT2Y41w76BPsYEDRCKX2Mvqag4x3W41m6PYq6rHIUODDZ5kpMYMUeK8s-Piby6voXsHqe99kCW0vx4E7xTCfDdjvw3wPo7I1ycoKjGAR4FR-gvIt5Rv3PQjijZw7TceoEzhfVZb4y41NSVp1MeKDD4QcnixIdPcvtL3TM4JCpJ4IO3SoyV3Cro9SHiBSbeHzi-cgWQJvtjemb_pEUMAh9emhpGQyCT7jszwM12oOuW-l6EkMxHQueAqp4xAR-2Kkv9SJM7PnWAJx6lwCjst0XcziqySGl92PKzln1cfS5VwhDu0sv5gJhqQWZZhu_oXWR5oIeNXSk8UcJ-DqgSNDs0UQzFUKkdR6FYWeaUA709CkdLd9YW3IosolwPvku0oinOEbWx1GrFHqvb8DolqsX-pcJ1Onj2hb8WjbzWMf2L34lZTBJ9LPHDmWq0fKxD84ehjM2cz3E6O8V29w6oVLO5zaj2Gv-rIHOj-twAA7eu01lO5NAEs5bIfZffp_3Uzp1QrPu_2AeyPavJzROkBlLV88GDN1RSbFtHhiMnuJ69TxL0jeG1F9VYY2hflgJ-6aJQnVO4kiVqjaZwDvdCt7iC9W-zS-7SBFj13dYB1yJ8L8D0GkKYOK3jCdtT3KwOosz824gV30kwDJSr5M_ke5Pj_9MHScHwMOD1kgPN_bu_hIu0H-YlwPFw3-5ROu7tb98DcuVAXzxBZ2XnN7A29ZLLctaMAdSqp9wutbpkI_qZP-G4zqerZ_b_5EnUM5JMnel1n2Fm_sv9xedugblRd6DKMYqnjBbEnAta2VMK03Ky6yK3gJ7K147WVF2TGWljZcJPZ3iUkH5JhyL4n3l6WhowkxJPgnJHmufPaklW4WAwdDaHYdJr1HKmKP3CdzUA6WbBwSegk1So7n43PNNUUEIqBVDppNun4moUSEB6UVthVdcFPFGUVsVEGOeZ_WzG7q3oRjfE82RPZtIuvrIHFeUEWEPR4qm7tqLyj7b_Q9vMQ7qM2i85oN5GdqTM9J18vN2RwB68s4m_tPJjJ-C8ZvmVYcB5CmBPyjtPG15TxiEdHZ08OVzpzFTkxbZ9ezgyPf_nCPkcuIVthlLcBf0WuEdbR_OfpshyTO2aSPm9kC6TJaPt1-rgF6T4Z1VufltxXoiRA81rWXrXeHd5D98rThsYq9lxpK_exGMle-bLQOorAoT0WmM-oGSXsVeoE-6MAM7e1rYKQ7Xvk7rZBqU93u8akgukXHcAJs9fP50pXI66AOtr2JhwSWgmKTgcR0jCvPRIrkSATOnRod6s4Qc47xeVFmqn_ODfOORHSdTVCQO4N6nVHNHHbQ-rEBs-olgLGzgHvj8nrxiCYW_5i9e52oPRYxVcjW6aGSmP5SyO8KWfHD9DlBG38pm3HYDMJWUzAYfHxmpFVfy2yaa1W7lW0hIw8K6wAxGvYVHNEqcGdU5n5W0QPKs2l9h_178JRkrrwAy5uKpSroZ-ZyZesP9w0NhmcGGK9aHI5XjL8jN9HccSHk3Nsqsvyuaper98F9Y2wCgHSyZaDqBlzzO4xARLV3iihm6i44olAI928M-SBiGPGNuZD5GrA8RYkzR99-WPpb5G5mYYIOmf-W-_5RgMYHwJUDUe10nxNWEVMndMdQVWpeByMtxDjUXlRMSh8yJFgQYE6kVp9wSQYeGhnqHRPFURaPUeTwhaAfA3ixvY34ek713fWp7ZnHTkvc8hPTKxy6GOC_JzN3ENctL1GslqWYR7JJM6wEmPwwTn-AHR20SaVezsSLvd56dYRv3LQiZRtVeLb1Yl45W0SfEIR97gOnFShE9-Ef8W7wMh7iWf-jOkFKBkLN3idnuntKa4EJWYIDGFbDgyjoX_Bi3qZ14VtiIxlHPIMliAArMQXAyzi-cdt_Mt7naH1sXvvFuq0jhD9Pu6u7qRD-FYhzqLrNECLHA8bHWQedBabuXaaHKEkVOKV3u5HY4ddFM5LjXGv4IpJnpkUolHKDO498ujceBLNM\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bc6810590a28-06380353','','','2025-02-24 12:38:36','2025-02-24 12:38:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42379',0,'cd-form-entry','',0),(42380,0,'2025-02-24 12:39:50','2025-02-24 12:39:50','{\"email\":\"ablojan1@utpl.edu.ec\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"NA\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4JQBj_xJG5rsm6BUnqEPakg7XsKAqfSKxtytq-PlgWfPgwKmanz5NpEr4aB5Uu_FXIr_ckYr-Bml-EZMN-apap4rWN8FepWR4zL1rliC1rqmtxvUAvEINJtUCU93ViR8OEemzGkIFW-PwwpbVf7mIWL2lzzP0YYaASbqLC5jtxfl_T-Y_py4TbWWffGE5aMXtZ083ML2YeiY3ObK6N9bNZPs31ZXry3Kjr9LXh99GD2bKEaB_LUHvH6VK2OC9CPGAhTf1mwNjzh5NVXIKmOfLy3ATMN6NIB0hUHwVKgFyVQUE-BdeRLKbcIvSlyT26jU21wHfCpBJ6zOP9chqWQRNiCeX3hHunZYVtG_SUCHOdcuAqIHTxCqk5uMhCCgJZTtWiPyHvOXghs3Zn0p1VC627IzCVQClWvckeFlQacAflrmThFpn88kfA-g-l_jiFMlgeo4o4OWdV094NdemL1sH_-kvDCbzGWdV4i-Hy1rwWoh-KK1Rl-YguAkkdjRGuGWdIi30ipLezfEtsk1BZXOix7c3HdTklWjzdF0nOpyfRGuFZCQSUsGwOoy1B8IwI1tFuaoxH-p7ZGOBzmenUpf6GUaYd5fV7eHysxphYo-ZQkL7veiD7A5IRUzrO2H0CZhzMIAYJl8T366zfw5T2_dDJ2KQuUgzdsyTBvLEtlv8vS-S8zrBlUs60jz1dPP-9QTxwyZKF1kW23GPfrKuQOKXH0xXZpEu7TrSX4BN8q0km2xqWih1hgWVuQBprMC3wWGb-iv-K17QUxkFs7BXnweybwP1ogdRzML6G7_5T_6y-rznBXPtkGb7kk6Ub2C6CYrT5R8H_KvPYGc2mjL2NSuM2nkHdft5P_uPiibUxpSBQnLg_FUMqAHvr_qh0rMGQ6nKrDNoMrJE8g2e9rjuk65vxjP3MfVj5KgXck6WcFRwigDrnC7tsuK1kr7NkMqYkdagWR8OoDnfqMQZf2pOfe9xxEnj4Z_tV2dVAV03TGj5pfxDZSpohfgyfoYvxUM9QXyNbIR57OUgO1_5XTc-HYi2B_AZmsz65NBTgKsr1MyC5qaeYD8ngZkhQN-glnemfI2MuViq7eH6Ps7jYZxzwoAcmdPdE3F7RnOLN5kLkvoq7--ZJpdweFQTzOV-e1eBloiqzeGSpLMP0OiVQHO_eIJXNhS-ZCZ8XzTbGZn38QJO-4LE6Fn-cbOuBd9y9P9gJIrijEJd1Vsb_PIGKBWY8wjfk29Fs7GUXj17n_ruyMk2XF8DnvBnV7-iJnqPDtcL7aMu0R2lK7sc7mDirFfbHSg9Bnlomhh8v6Csfwu1qDuL5crQEreYO_PIFjWeTBiVDiVydwIiHkEvdEYV8j8rEm40PyAmHEPDtfngXDf2yOwmwc1YCNt7djnH74S4uWVD8fb0xEuKyCQvQsp3Wl-K438lE7WdeZYpwxg0lBSKi6DIoTqd_toCznAUqS9vCRCzvFC0ZE029WzI4thE4AvtVw9H8DdYzMvkUSwx_QOSc5sdeUR2gV2Pv7qZEF1Kz1F3ddfcPCvtsBdSf9MWpw7W_NXX4morahLUAt0htfPDxQYt6iaPKb6xcY9oFV0ICDoKom0JY8MuSAZpD9k8a0Qk1OrLjpHxzvk0hZHoDDdPLBkw0ZKyEbh96ergoi3ZXMZdnunyetpeQieK4lnT2Y4R38Vxs0-7gXoIVmoI8jYufGi1L81SYwxjryjIlbzV5c5fpPhuycj262qgrCeExWLz3A1BacGKNigduwkySlIcQ5KQFo81bIXfcgCkmthksGL17vsxz7E357O6Jnjv_IIeeH4PpCoJ-SaPF0nmyzy_G091kJHr9IOvQHtZHkQtNHYIeU2SPiQDTbo3YCuRKfiLNJnoc8183aoezNlSUrQS4jZrK5kWPEcWomrXvAA-ovgYxj0PjGLuJfPNKEB1QXY_q5n7jGLRCELlLLmgFC32A09Uka1sFGIm_UXGhWTSJa0RKYs37Gr7HaWJ_G2h9F9NzEIJxyQIDPzUZrQ6eTZWIz7fSTyyrzbc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"4\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bc686ea6ded4-16239272','','','2025-02-24 12:39:50','2025-02-24 12:39:50','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42380',0,'cd-form-entry','',0),(42381,0,'2025-02-24 13:53:34','2025-02-24 13:53:34','{\"firstname\":\"George\",\"lastname\":\"Loscombe\",\"email\":\"georgeloscombe@yahoo.co.uk\",\"contactnumber\":\"07740166465\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gclid=CjwKCAiAzvC9BhADEiwAEhtlN2BxDPe2sCyvb9SLrmJKp26RJtrhLVV9cTFWxJFztzM5Aw02EwUsjBoC_iwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7OHRRHrWvl9Z8E5OREu14DIWrznynOnW9YvBIydx-EYZm6gTfPVEVfFyh5p9taau84hsdb6o0vgwAzxDWS-3fcIftbihwI7Yvkp4ewI6BVLMNC86FUX2OyOTAFQldMcLd6WcD1Ur5zplbsczmrFYCbJadpJoDIlr3AOZ1r0THLPnu4ShjjGA6zDeviuXhpR10RgQHe9Xvm3dm_mCBuVIm__bfQg6Py7re0aPp_foK_qro_0y_FfyrLDNXiAFHUhxxbrGe3kUiLBpkX83KL_mCGeAYCUDYV_gG-iaN7OzH4uJTwdA96u7xmj8pKs2QQmtI9-709JkJ-K9fi9XTdsyypKq1EfbA8T20WGj_-3pga8Dqi8-BPKds-G7uVMFwaMKqUUERy84U4uEYgwLo81k7oSdq8sc80KzFmyxtdNU0MlnXUP57627GgzhKHQLgZRHNnE_Xus_2YPoDMjYbqJcZoOZ_Xcj-8eS-qAk4F8IYvKjogfonY-eRcgbRxynhyCyCfU5-bn3cdrH_6xUN15bknGP39i7kr-NS3dckUXuJ9kEtfwK6dDwHK-jeFFcbIKnGCdyAux0I7q-B4SLdYvzBh6YyA3hbRYCrGJPKn6-x7ll7AsBEOMIsxM3KAOJ5lpdryetojyAkwbkK_g6Wtpmh8f8gBuGxPzsr0r3_iHA03loVFTQcNv4149pkYqmUodewLQKLVdJjnU0wj_l6YiNofXkZLYIiUGUq8CGJPqkyOxLG9mQpOfz4YTAeYgvJhqRxlw4aj7dfmrKkCq6T6Zj9gQyUfzjJCMqCRnEaWaGFYGXNXmiWKNRiorzaHtdjbM4qJ8EOfh6hX594pVq_lVmMTgI2OTpLG56Lx_2QMJrmMoqi8oLTkO4Lxok1qkuAgx_ED2QrC7RsEUCveAIVRrdALJ7jFq-AuOLqVuvhMsl-Txyo7joNyCBskFC9Ru5FJoG_ZAzA9PCJgyOxDD7zPNCmaJgXK7qDcrfNbBt3npQvoksdAPbjpQ5Vals0o0JP9aiE_Cg1oHb6b9Excs4hqRsC5AL2GI6MIYk4PhYkcdsL0fsbhgZHv-FvQYmthmPD0jA4ZgepATMIP7gwNOVWaG9W_28aGc9IJ796jq-gehkxX2hiyv8ihb448AIpk7vo064ZiyGjoW2PlL7P8SFqEnF-UlNQ40HR2V92LFljAQD_SPcDc01AHP13sMoi983D4Nf3H23bBFjhePmoAIcwfSUxPrcqP66FqHBSbcsv_RLtvgxOBh8rWKP6wvLR8LXVVd8gHo2LX6vushu9hi5jKc5uRdObWbcR5JcjkG3aT91YHOQLJAJbQ-hA8IHfCmAMfdnQ1xe32qEKgiky16QoP9iJZsiVLSSANNizS4B8Lr3U6xLqeSco8gRJCriBLg9YP3E55gO_KxzHV3vK6Jdg_je-iPMOCkgu28tihWM3N7j2CIL3_xXonwqnPX-EYCLt3KlzTaDl0gtfT5yeskgo0vaMoKa_kqpp0P-o-_cQcCrVtYebr9SabKPomJkOXhIz0Yu_93I1myG_oJd_8GkFaxzDG__gji3r1nw86zVXZ4Y6PB6XL4H5y-VBPWYocKC_ysYM_g8_QV0MSXv5v6Zr6Kwb9HdFn9UXNBfFPOG6muNljCVsFmzAgpPyosiKgcDRa_WY64bvMv2O1f6TvHRvj8iUObuy8aZ46DsRiOucpmKoW4PVNOnYh5G1qNZtypTyobpqaNylAYXA5wUQN-ex4_wO-C4KCXpWaQXLSgru_LXjWCCy972KmFgPSXP2oFywsY3aGIoXbQaexlxs4VwgI6PaWFwMSpWavaRHE7tZ2eu-TDSDNDi1ploPga2LIk-VgIWEcvl1ihiY8BkM2TFxHkuIClmUY2Cs3Rkv4xzpRSeQPSif0BETgwmDLTlyPyJx4MWk2AQZAnrclKWT6kVDUDy4v17GZkmmeQiMlDP2QyIKQvcpwAbtRiTt32Xv4kMBZS1DuxC1nLQqpZufbHcrzesFiQ9Li1g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bc79c77f8474-29705867','','','2025-02-24 13:53:34','2025-02-24 13:53:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42381',0,'cd-form-entry','',0),(42382,0,'2025-02-24 16:57:55','2025-02-24 16:57:55','{\"firstname\":\"g\",\"lastname\":\"Loscombe\",\"email\":\"georgeloscombe@yahoo.co.uk\",\"contactnumber\":\"07740166465\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gclid=CjwKCAiAzvC9BhADEiwAEhtlN2BxDPe2sCyvb9SLrmJKp26RJtrhLVV9cTFWxJFztzM5Aw02EwUsjBoC_iwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5lRGJ332Ddc_khZ_Gkq357MZ1JqFMqQyosSf1IwSXWvKk2tYApL-Yll-hX2PvHBrvmCfRD6f1VcGffS3MqplnNH0cL8GHSzn9nk_ZzLeSJ0_ecBHqjbhMhYUadsN1ePm6a0RZAaz0tLJCpXQGJKtd2hs6NVD6Cfvw7NL_koLwmW4pWdv-H7XsV4o_nYru9pZWQso5kWPUGsTfNJvT6iyWh5Ns3r_vZUQDqaYs03Wx8YyVpA016Qv94uhYtM-gC_yJOIsc5kfYP52IR6Z5AA7utXTxqBGHztULxurglkZvnlW0CbuCwDLtoP4YdFLHVmY_Gc6tRf3oWiBa25Tu7NwWvIrh477p1MUtx2XW2SYuZe81Yag1M3OYNonMT2S54JQ1VK2QOZNd3yE5QO-lbYaj-QZ6VmnbplNogaAgiJK0OGCjCt2Wc9BcF3Fc7sXfaFHD6stAU--i6OaeikCmOFpoohpI-exHSEAjEIYmNXDS09kJcRimN8TzS9N_y9spG-N3UL2U2QlXDirdyerGxuy3hMHOE3WaOhBUxKLNipuIec4d49JQO2PckV6tXE4YIqQ13ILs40C-HDxZCVHkOXUqtIJhJUKCRQQfys5VIWvJY_d1Q1Tv5E2VmqejntXNGaVhSY6nLC-tw6v64dnlgNnqEo0UrPEVjtF5lkovjOZDjHxt_rSvWtnz1xHMUXjv6ExOcoLto2do5WSei8eQEvFU2Ila2LThQNPH2nMH76K1Bp4jk4OT0WDbRv4NyM4rfMUGw6TuxOw3JXvdQmgihcizRnlDK9DoVG0qhjXsTLAcQqrqWR_c3LRRZR6Fmv1ZjOoD3rDmBEWsLLVFziqzgtj7EKbsTt1hODEBSzJNHfyxEZwV9wnBTf-wTPaMbN24ZY-dhCuiK-11WAFvCGf33TrFvC1VQ9mkmuVnd9Qbt4exDsJAQYwhid3dmRU1-I1CpEJczD7KsIwvTEpI69sAGw1aQ7FqlRZdUh22FhuROpdYTL1_mAfD6hpkZnPsCnebPL-WAGXuXn16EU9Z8M67jwPSNT_F_VwciarIXAfl1y-HI2zLmZzc2EhTe6CSTsvwFyWF4e1fV4YnOfPJ_KP-gq3Tep0DhrKPnRDnv6Y8Vb0xiSgjaOUv1DmpktB00t--RsN5gCIDAqv2gLRzzLPq_O-W3lRA5AsMA4YS-K6220xgzffibIOG9wyuG5o4N_SF3F07lbny17o62qj0MpQejT6T51RegVcn7IOiwi3QP079R2h3AZ0Z1lgm410Dnw3KEL7fwI6rMt2c5XkwIdyBTmWuCFqhfIwX1IftFlFZqqZarEqPy6rgff65fzz2oUJWEIEI0a-_lGYSTMY63uQNd8Ybg-ltQAssimdBsJhqe_a7sofdWjuOdDbLvTO0POO0cVUAOTbgS-qFldu6cwvov-s8VAYveGAKDyjueLlbkbco-rJHqSZYx86-VJjFjUZTZfNlVRbbOsPK7m-HY1AygERcVqHQVh1_VEnXSb-otx0H4VdvMSd6Vaw3_8sjfajubYEYeOXWMnwATcXErh8vcJR5zmkm_BvsMAM25CsB91XfYghk-A5snlJ1qk7CF0rWjXU7G-NhzTW4P94jT-xB9kQWd1371SRmxCqM9q7j9a6_bgruwDvlnecVet9bXCpAwIkDAb2R8hmj8-Ft0tEPM4nGqRyp6myQsytJKQhFGAN3GFfrFYhREmzDx6klcjOPnQBJEmgbddoy2s5RZO7Z2gB9hQyKybm8aPs8py0RVuzRa8dsx_zfWmue_6KdOLaAAnNuu8L2AbpiChQBu0RkOxz35Ohf2SsJAyXZ0Dx5kCF3J0-HFCsnnmJplplDAXmEcyEd77Os_1XC0qxnw5fGkoQgOnir00_J8o3gN0QE5l7DTh30qHv-y8SklwcQBLL1TwK_S-KKMvZ-cWyYN_CVPHNQK99B8RhW9Zyz4PvtkY7pkAA9Paa-nP90wp0fjF7ik9MuISRrOmPbprTKWGGIY7zWbQICb9w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bca4f26c5174-21838245','','','2025-02-24 16:57:55','2025-02-24 16:57:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42382',0,'cd-form-entry','',0),(42383,0,'2025-02-24 17:13:42','0000-00-00 00:00:00','{\"firstname\":\"Ethan\",\"lastname\":\"haworth\",\"email\":\"ethan@gymtransformation.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6ujiSZt-CeC4UFjASba8hRrU&amp;gclid=CjwKCAiAzvC9BhADEiwAEhtlN-BgPUfAVqtI9y5eAMRz1ViwLlba644yOzPkNo4Udh_7zKBdytQ7ZBoCGBoQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5r4VAvWlGqUvjvPcjp15I66fKg1qEGSYYtXJWTVbCkYe2wO1Q8vq5cT46EcbSR6Tt2h1Ha-DsDPp5ERkA_0M9BtgiL7YI-oYIdmh-eTOl2-ZUqnJr1UMmDPTVpCepyBTbUqn-02aTYc7eyJH-y6YJAgCaF3u2IX6dMRe5G2UABlRebZ0fL__J8LgZY5GuI0YEjhBn_GlORWfIwSOfxaJS38Rf3SMBvWGAq-jHWzo7EL3x5GhWZuLqk9dutPdlNufHsDARV-dWYvgcO8n8ZpImIBNd1lsiH_cMseSqmzT3b6SHSTdTq7O_u16nwxr7Ewgt_cT7PvoZlQzGyi5GPljlgvmUYFYYi-LoYLVj2x2qVEVDtn-ocY9gUTX_izd-8AeOFOHNRVU60BdGWA53ABru0WZrvTwSU6sJUAoywVPfVAtlI4zlnVO3vCT3psX-DvWctA6HePXGZswxul8QMT2e6FbOXW8fNnUHsm9bi8tHCt4aE_eoi0NTXgx-J0QuP0gCdaB8O2q3KJxCCfMa5LGFwamjFPppUVmjf-drR9-jncIZS10R9T_irqTe_ISpSTBojP3zwtPBikRcC0RrXmhBF-S0GIO2Xe7DAcW_F8CuskKbj0_aQrsu1fyoyOlr9_QEyaHCLqGO66wh0COyPvEaHtv1RJv0vTiiTkhrKMWfeqc0NKpogWf1zCV-VRchuPgGMXgBkUhPay2yqWkvXdq0ovER-IRjzn7F_Rlf3TWZG--U1-xAxYaAj7j5LEyFDKV60asMmWl-feSVHZbkjp-Jw0oQxVvArnEB2EVaFZzkij9sLjFFDE5yKx_FE9Aa7490OpTGvkUI7L2NP1vN0qn9gPOqK6uITglGTij92YAXsHu1zqeBXZue13sAhYwasinO8d34ThTFo973TQGN5XaNH1e4CPDL3xAn5m47UbXilXxh8IYq6ContqHKGbiR8yuD5VvwT8od3mHzZti9ySzpqEw448bDuXPP9ms1mvKyTSppi9kUOhWlgtTMhLYoY-nV2nhmwEm6tFnH_aqCzGcqzyWa_Xi3JnKNH8DXBp4G3kOGdsi6n80ZkoGZEJ7DOntcUNkqVjd9ECCklgBeR_-RERSI7NSmNOnCL-94GF2KDny5GmTSyYIHxfGT_PDFfZbxGI8dhMkIpv173q8OxEcqFRBnMzWKFje39boXpT-fxdwi_wNh_7iqbVA_6L0sXth4VyNRc9iZ8Y-g_5C7BB7KJZ67NScUe8L8yjVSk67-iiNQMbXHtxFfABvzcm4hTSLbu5tMaORvVqchgFEoLMiPJIaWIYK5NOpvaDMGK0BMs2BRtSsr8J9aB_1R8GiTQVPSito2YntBxbjapDna3f1HuTjr9ogNJDs8D-sPqflaFpY6QLNDmvot_lRmY9iRVUDZ0Xj0r2dqsTJ0PWAQTQ6M2ZouWZF80LbN0HtjiYmnfV-Upkh8ZtLxH7W-YSDoEq7rklbQvsP1dRdi0Wo6wXYvVmCF0J78bCSHUEb-au1Wg8mTfUpkGCU8kI-c_tfdVnT3F3R3_b4DpMu5iIYh9CNKoz-JVScJ7LOcOlguvQ0opoX632kDaGrBH1ORWhMNTvBAbjawaY8XlsfBXxPztDzpzlEskml0DCgUOXj73ZQh3p6ILngKMpzQet6dKcG8_pycwlBrb4lLfnRD8VU1tvB_j2GkVqB4MlQVlH0v9vIVsaTCmcPmQ6yWrphpXKzt4QsPmx1KcqvNTlaaTqUO4pHOlyKIVafp1dzAA4UaBDcKu_3aP9CmqzW9xhITcGAvENSIisNJsy19hDFwz_oNTt5P04B74LPciBgIFh5ZeT9mkkqdgTbCwKR_dJufWmul1v2mQXTx1V5C4RLmo_Ktd-uEHHJIWNjON2s9khnNEP_F8deWb9VjfqGMbxVV_YQaVEgJvdtkO-xDfah70_l6VkjHhNF10F8jPnojyxAlgdd7-kFLlmhVkSHLfzKWyRLRDVpXcR_bF4svjgLh3biSSpVVWYBrHAVxIVAxBQg5MXVb1dpkZCJgL8lvYgrDH8wSFq7evvhoe0u0x9nTjsaUtZ5NcMD0GXZzrIm3AA_til9y8pDpzZ9ePaw4VRDETfioSdRgJGeuGsD2ka9dJuply0ugrr8IyT17QlFWxFOmYnGv2HqtFkPcINuhNP5CCj-ZJJlWBCwLOCRor8P-8WivXSuXfuqNuLbi_KowHH5gvvKqBiYIdSNqsUdSfqqCOgEDcOOGEHoOHNaoGXPtbMwt35ngKYlCfIM3xM9MmvYQWki4hSqErZ4PWmckI-4bgeBjlvoIevuZtn8AbPruTg8dsIhiNq8iTWgU-qTqUtwn0eYT_E66ONbopnlI-5f6_E3XJ82m8Ii1G\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67bca8a2c97206-46824384','','','2025-02-24 17:13:42','2025-02-24 17:13:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42383',0,'cd-form-entry','',0),(42384,0,'2025-02-24 17:36:04','2025-02-24 17:36:04','{\"firstname\":\"Holly\",\"lastname\":\"Parsons\",\"email\":\"holly.bloomhh@gmail.com\",\"contactnumber\":\"07718235172\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6ujiSZt-CeC4UFjASba8hRrU&amp;gclid=CjwKCAiAzvC9BhADEiwAEhtlN7la6_KuNQWT4h9mV3uVOGKV4RYnA2whSggSqCmC2CGEsvlgv4668RoCyJEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4C4ObhlI4U9nWDWZl8G5b7JijehQ9k1GEpsTcD8WAXmCspHo0V-DsCfcF0qFo_1vU2BWUsekIp6i4bU-MjeGTUAMo2IA7pnI-T_nr3RSyPYZv0HHI7pxOtFOBZ3LFSrcxXC0ZJQhwEjowrd7gcYbYhR8jhk_5KNZVLjgRX42vmSspW-ZgNDfoAgSdJ2cPcbjWjTWj9tXs_6IXpFvHF7zQ1h91eN3jNSWwpjBWOwysXjuwX_FAsM1jnGZ-fJfkUZjxgPMMJtx3YfdekfnmNp2BV1-iOZpL2IZfcn7HKm3SSxPo7cYbQjDjE6k-As14yf-VIgwM16aIRPBASB3biwfrG5Y2kFqokL6v7Y8oJumgty40n04n2bGnIxH6KfDXAp2H5Qi6BV7HxswGvLBitTUxhFDk13FFLJwE4rudvhXd3A1AW89m0vq6mLDuNVkFmpNTkDZ45tpuYKtb2RdVu2BKRa6dnJ5LMfhbhzTVxhLlSn3jc6WAAvZJtIHLAuocKtu3ys6CFBGEENr3La87NLgXWnkehGzjvoTGnHds_aaaX8nZ8lYeUk8Nsyuf75C86fDPcqdRjRmcTgAfhQszB0Oe7_myr0bJvm9i4XqS1oGvCoT7ITqP3-x4zM0cs0KSvfHv_VxFg_tQRdoIA6ME4e8Rcb9FIoZq1b-tlztcL05_zFXdUOb5OovsGPqAuRs53paxVfKaSWuyU6UhraEL25an95hJMXi8_GCoeVr8cp9_Z8MwWbLg97chsLwTuewKllqsl4Wsr4SOSYnk7GSCV3xV-0fOn2EE_W4qlzeecKAJBCA1RKStKT7Pj0u5-FosolmNbWnCimjKjpNV44_tJRexUngW1Vf6e68KDBRU66mMAH0SebF9IPwxJ-KCS4ge7z_J5ay25NAip2yM5YT3pxLMlgO8UnEJZdtjLbjcwqMa41YdqYBG5at9H6m_OTND7jqu--8PSAYFX_CjcGur7oKuArOROe9MiY_ObdaeX1fM7QK9ez4vlEZS9dNSiN5iqR0aAOaKMHEpcz46vvbgZbUSS9I_vxQkMeSgdnDVG78m0nZG9bAp0XQIwU0njE6F1nRuQC0ZxC5QhcxgZXvF7d3Kc2-kEQNGa3FWnFQVpYs3NnNALsHUbEmgRrcDsh9vTp9fjUjnKKQpybc90PrjTkujklsr35kghpduW20XdPWXqNA9b6j0_mxx0-qeiSu1MMzS3cDqOlwrgAot2whz3ju79DlKJzlqEnO-g0zBWo_lGx7iRjwhHvKsbkgcBTH7u3OaP4IAxGHY5Lg3jIN2jHIYLnzgGTnjemVS-NJZ-Tk6yP-HpaYv6HYpPGR9Mu9Hw8lDRVptaLweEB3S_1EAc2FoSHZq2QMMmtjtOT-_fDqLrK8K4ZoxEpyLpGx2cE0exded9zCqUkG8HT0NPmwjnNCB2ZWQ6EuQ7nsCCo8g0lPCsInnGkgBkuQeYtxTX8eRgI220ksfrvmk0a3YjVgNZRG-7B3FEaihsxBvxpYeILqvm_u2UOGn3FwQ6uZtg6iYWFkq7XoywEdIkvT1X0v3kj52vDpyFkUKY_PHvle4iOqdQkOzjujjU4K6WuEmX4ZXwJGYmoM87laXeQA6FdrYSOjRkqGeBKL5kaF1xsuvNmAkFPqPJsWmJLOgXIX8Wl5Jqe1QI7cMkZwhxXDIh9xnL8ZW_DjGhwPDe-bVPno0_UgwgLCE5cuU0A7m5tOp6L5WBsPPyMoK4mBbnkkHyOOlCJIAF5-0tuLbvD1Jhql4X1LRT17g8SKqrte9PiWHv_nkJ4PSqQXrwCw4vXCBi2Lp3Fb2PXW3CYLxhlHj4YL4Y28ihw86Zc9OOQcDPm969trQf-fiYejdiBRV3g_BZEl9Qrx9ifUSpUOAGCkeSsffZNjh2MNp9OEI4rb_PWBYiRZRsf5cpwp9sRwPpdS0F2Sf5qOVbbH2Tu8aor4TxlT4B1L35gKtuNSYqIjHj1EewWxzqFz7v3OF23jJFjUsk7MWoFQsl-IN05KIf2k6B56BbE3eaZpoQxw-BoAe9A1Sy30mcpPx7AQi462EtOLqLwe8_bxlpF2MxeZpNBZ_lCB6zVL1iqS0doBtKcRyZq3_GsCWUjN427fkPwHWXsjoN7eKNP1-ttaf9pqOmSfsZ3OopfZpa-aej9Ju8lqadUrvlKNxOQPzYN8kafEZG03Ezyp7I722O5YrI1Roe1KCB5QKWmEn_jAldCe-m4cOv583E3sDNmkqUInaNWvIxjwEsmvSxitQij7sgpno0plfgcQ6uYZNg76EINqbEUJCVIJtYgpg_3qzhl4jot3WU0Ap14QUVY59K6jQUPsZvpMmGkw-HoLZxHf-tI038_awy5C87qjBl98dutrhv\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bcadf0eec7a1-77546925','','','2025-02-24 17:36:04','2025-02-24 17:36:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42384',0,'cd-form-entry','',0),(42385,0,'2025-02-24 17:37:53','0000-00-00 00:00:00','{\"email\":\"holly.bloomhh@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"1\",\"currentpostcode\":\"CH61 7YH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6ujiSZt-CeC4UFjASba8hRrU&amp;gclid=CjwKCAiAzvC9BhADEiwAEhtlN7la6_KuNQWT4h9mV3uVOGKV4RYnA2whSggSqCmC2CGEsvlgv4668RoCyJEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4tSeHmsW-fCErGfqpmEbS8Z-s7VDJvNysJqXyGZoudi47slvwo25D05qCBt-NMLswyUzo10xLI6ZZJtouSqEFKNrC2dO-34-BjLLCmBOxwToZGylfeLfTobg89EOSdcD0uZ4Lnta3tB9i3YwfDkf4qA3ABosyK7OvyhXTmUKqVi8FWoyD_aVWn8GZJy2TPj1oCm4pqbW05k-l2QAF67eLm25KSccZSm-ifziVsePbkQHYuzJ04kNiXZBUT7GvEmd7kHJL3dANpj1f3dJhnthN0PEvQToJtu8AYpPv1f_zvYFyf97-Il2y_BaSCHGvSndcN5MiZuQ5-0YwxzxDaFsXXgwxFCsEIJQzA2u0gzg3HPEKuQHXdC3VrXTly7dHwzj3IEuz0jzjtxH9HTA3YObGhaigDHvLdOZA8IoWS3XY0QT5DGjZlAVyrJKPvKPPZiQRtB2iY1qb5_pb4ntZP6kHqA4vDBlFaycY63JhtKRnWHl6_QwyOL6_25REe0aGMh2_MYdHx4deNKbxN8QeCf18bznaS0pK3JZLpIc4uj8ywLtBj0Vith9OOMphcaktxg9jn_cE2f0sVmIFTINc5VpypBb26HZ7HTjjs4rKY1fH9CvJWynS47tg2r66pah-aasFmO_kXMxPX8x4V7W2STgsw4isZYEdG0AmklwqDhTcW-ZfZYKieQagTF2KV8D9gBOxZDXJqgAZc_NCcBhCF-6flN4mj4lDjPNMIfWZzxBBcQOsD6zHRNJhVU87XWwRfGJW9No_s5qWWS4Hp7_j3YItLIzOff86cxCeg5jqNeZl9sI9obCncMhAmEwufzmNaWCgYU8aNpYGJdGAcwFj9FBVR7YDJTnbkPiUqRKp8-bC4fwt3VW5jqqkX4BqEQgaI-fWBMVzG86BwWSUgzXfaXFpOn56Vrq48h-WW0VS6xE453hq6uKDf2BbyOaqYXO6KgtIGn_IhQPkv41vBk-e5bVQCRPAYxWTqhGBZ3dCpW-NnOo8QHNVo_XZBR7I5-Awon2LIF-7hueNwCPxreD3cDwlhCp6gE-WKvyN-Ru8IOiWA1hLYILKTsyEaxY0t3DjHCzW9sWYf5aEfeJ1T7mBSJWfsItHR9utOsmgw_GQEfL-KOjFBX4CTKrDodKN12XVocHjlv6NMN3mkuFt-AvFj5nFplqegpETQw8IuxqezT_-Ax7fx6Anpu2cSR0U2_ETWDn1lNlZDKxJFPrc938-OQrfHGduB18xQHzInov7USo4VavNNlwJwpxyVcVY6jFEiv-MCWYAcAy0RlZi3oxChvADrsmLEWeoRtYEzCEMUHMVAgiV9QRbDNu5emfFZ8uNAKHvZAYUisiMg_a4QhM_IeRjaLB3jRdUJmEGJJ2bm6Uu71w96MvkHsoav_53DT3d6emHVpV8qXraDXoY2fIp-QLMB5sKg4cUTctbAy7leWGOT7uIrizGfH_bL6SmsKfxX3pOeHqNCLheQHnlwlim8U7KkYhDYka9SnWaZ0hunx1v0p8HrUYGgYhmM1EbtkWoJqFqRQxAlkNnSTGA5EMEkRWqGpnfSNfJHVpf8ah0mdtuVodEj7I3C1GsEL1hpwRSFDRsz1hDF6t0vbKZpQbFySDio1VqPQYzV4X9tPqZjsfy8ijKjgPFLqzI8nfpC_Eduonge_nPDWpGjDAFruDEDQtGJJwBui2TX6nxScb5ZHuQoJMzDkA2ileWIt6EyK4D5LxBvlSwBFSZZddZ_HGrh_6wCqSvYQ4b5nBMgMtRZEr1K7YPcuZUZUAV2WHOpCfrYfyf65kivtmCKekO0E49vTFCFBAYo0rctYHrbweYlibmKQvTOtN3O0JRUdduSH5p97d2JavPQ087IGGkXkWS6ZCJBuuWINy3m-_B0khw7F9un9mis4rhz6ulJkyU_TkPMMuY6t4jMUmLDAyo_sTgUMUsd-mrUbESGIqHt3g54ud-4P757ZYqWh8KbTmHF4j2mBtUDWe2nh8TIFHokfn7jIz2vpweT_fpPnn4ul2yQCMMbbsploNhCjHITIY5hA4JySK6OHZYKvSRRlW6WVBceJ3frBUC9-gfY6Ze0umv8-8o9ev4O2cimqG1hMvu_joYboET6lFDuLBTQAAfQiKrRdSAVAfiateEgNDJMPBVM-b-F1DqxiwI215oKpPRBZLNbXJlkwX9piB4zseLmyVCqGWUmiBproVRL2Tjc4F3Aplgvos2Z21eN4CXSjtbMAdEdBikBb3xLypl6qeme_FNSDx7adfn74hYkAXFbU5kJOMmNSgpMqSR5HRzP5HAR8OAhsnoeEYHt6dDOzx4V89QnAud1MV73og\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67bcae71bebd89-75364055','','','2025-02-24 17:37:53','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42385',0,'cd-form-entry','',0),(42386,0,'2025-02-24 21:33:32','2025-02-24 21:33:32','{\"firstname\":\"Andy\",\"lastname\":\"McMahon\",\"email\":\"andymcmahon2015@icloud.com\",\"contactnumber\":\"07506836858\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAzvC9BhADEiwAEhtlN72E0Ufh6Gh4A95whsoGK0ISpgmXQ3H7gQqNRdKZ2Z_aYn1YiSULWxoCBXEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5EiPVXDWqky8hPUm6nvwv0581zW77HAUKUPHJgorabaomPnXwzAOMblybM7rOfS2E4ryM7g_7ohDd7yuuBmXMlHvuwMft8xl7dsyux8aSZiMA6BoHeNVAqY7mNo_lsTyHqB2WoGT4_H3AJdFDlz3gCAyb086poR3l4NL9UMmKkcYwQ6gLHeAYmFLO43AaxHGS-kP-8WDkE-lTQifSL-ySZrHaLhzZTLhyXN0UTWElShgNKYs2fUmv4NqT1dDINIB2zKQMTA62Duve__mYq7dzA7V7a2-5N-gtXyUGuRg0egDesut0qciHz5BTO1SzQ4lTI1eQZqABM7N8M5u6FPeteatgj9rc1qw6VnL_iaTV5Y7oYidvQ9aKZeqGNkxjAT7GygfnBY3Z_jr3-yCzFg-EFnQ_nMelSgS8nLdbszyASp7dCnvcYJJLJAxwDW1wpWh6Zv96nlIxyEs1raqqfJHigWOtsMpDfp-xYz6vfC-ftHlX8dHvBHgx5GtfXGqLLJ3EBmkPWdHTzMdJEF9-ua5_HYQy565oP3k2C7kdqwCQ3YPR4Cbo_lnLSLz7YBSDpK0LsRs-lOqgi18ras1qmK8Lm_QsKf4_EK04Hc9GyjRyac1QzXllx7ewyjNQndSXIC4LLokQMtACy0kCmI-uNMnNhSL83tTQHZPXCa5vvHfjkgf9lVI_PSEJcdKzVWHeKwDHKZ66wHT80Qc56yqQxpEQw-7vgqPPEzejKSG5syOy65N5CR0IVR9fys7p0S8sl6fYwrCWJOFn6VG-ZYofanANmjFwm1oj2Dd1LLLD7gLfQ4AyfIaspYO8pCA6gj5TwvRqBN6ElrS90UbXKsyp_FTSouji3iwoEOHxmCYj7A7zCYGTbKH6vOttHlHPUvjBvufZU5eS5XXksxLIP7WIMN1n1kKOMBQGvGeiShFT9kjCvEZryw8WW3fIon44Ejz_OcrHWrpzfrkvFL_YNU4Z2qZ01nwAfING4RSdbMtOPVJ8ufviJm9C7y2mP57XfbuQuFF2G9B0WPhGOsQU2oyw1eQVZdtu_lb5sLKm3eLBR8oM08mD6i8SxYAk6r3WvM-9v-xJ2WMolc0uPU7ySJFnBd5-uhaSl8m8I1pTqoA_vZi1xAR5K6jdzfKM8Vr4skJNWCzfUrpFtFkrIwLDhp5ZIuLZTQyL9sk1fPBgZ5CcfISZATsFkbm1kYO7LcXo7p3z1Nml3EEA2E2e9HuN4ANuhcXwfT8ODWS0QweXw-Jr37zzmpKI5zbu7pi1WmUM_x2mS_fS-lGefRQPP22w7lwNJmk6Y_VXehKHkMGP3SmkwPeAd15xbBNm82xyhn7Q6EA4ZhDk6KVhbbBcBTGrlIpbcS6HEiMdoLk2LJt89c5N6x7nT1SFfrRnx-tBK2yUTM2JIXNuPxtdSQJn4Zh-qxRnvCRLBMWUdE9vEYOZz6edEb1vn6SOcHAUT2SYgLp32eHWkrm7pJ9L6KgFs3Ayh-Sxlx6e7FgSGg4WwoXGN8yoOqQL9NwfYhOMKSlH1khTO4_Cx8-7u4sHmHJBK_yVNt6t0LonHvm2eWyW4F5saAMNiJFEw0iN9bO77-Hn0q8MMP488SAHv7AV8pI7iR4KdRDrb5Y8InDdhaeOxQd7Hx_haqtHKfUy1rZxP7TUgM5Jy9CnrzmhUsT1RENQi_3jJ2YnFuEmcW0Kmxo7Ifn1gdFx85Fpx17c7M_ju8inpdtPyFNIMvAEukZlr2InfgmIcpeqEgh6HHlONx1fmHanbN51pkCKAhKTvNKOQNyKScArz2pFfaSsxtw4ePe4kwO6yqreHmqoweiz0IzefXqr0R7j1FB05Vz7tLfde4Gdw0xO4GnDcM-7j2PlRN7Z0x3A9qicxfxgPTJPH31qfLXbmxp-9SdJeER2PcqHbiZGMwNQZe2MwAO_2ajkdCaf975EtupZ140sPuXBg6fzl5xsHX1aPfe_NZ97W5b8GxCbaEzRVVPcKrqgEMiVD8iLTEucmwnMar40IGY5SvfbSs-b5pL0gBP2XxJ5Af9Eqhqpveb9sCDCwlT6DaeOw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bce590458148-07839134','','','2025-02-24 21:33:32','2025-02-24 21:33:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42386',0,'cd-form-entry','',0),(42387,0,'2025-02-24 21:34:53','2025-02-24 21:34:53','{\"email\":\"andymcmahon2015@icloud.com\",\"interestedbecause\":\"0\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"1\",\"currentpostcode\":\"WA4 5DQ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAzvC9BhADEiwAEhtlN72E0Ufh6Gh4A95whsoGK0ISpgmXQ3H7gQqNRdKZ2Z_aYn1YiSULWxoCBXEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4coL8oPH7hq7LQzFNoVYId-E8OKAsZn9JBrJovGR8TF8-255r4aCdz8eIhDJusCljs1JEiDYpB_e3cFqtYOvpWZgbPI1UwnsdotaemZqgEk93ebi2EvG1LLvfNoxSesEFVxMI9N0GmMB_igx827_L9c7xdNG-fpDLIZj26pEtoBohWSkU9-1diPE72lHgdas2a3E346PcT4l1JXQICblyS3y-zhgakaFjPUqxnzWKhsexIpyeVFMoFtRL0oRHHM7XqMfjA48_IchmJ-ws-CsoZhcPSqNlj0mNIa-VbNC7KsjbY_0Of7iFzYVhLfTL7IB79V0GoEd0BqMa1Usf3I1GbBdGd-_fiK6yVxqBKMad_taFmygsofBTX-L7srj87R0sDSgjiAmQXCgRoKhEIJJY5eQP1c5s1P-E8G6kRneFa8g-j7zkXBK_lAzv_xXjGPucEFzuA318eIF4gbKAK5Xfn2C02fYXJ-L7nkwDLf2w6M42GSlaJxelF3KjWvNNSMuS9SoFnD0e0w886m751woZCYrBHsdNidfjA4LSrC0XAFW2iQ8jREtBTn-mKwp2lHI328fMtMFj9g5av5LZisiSRizhTDbTdrdPaajQfSEG0GxVOp2cUOrGHA2MKNhUS_FVmGcGyhS2ZG1I-fPAPCFfcqVJa411jo20M8tYuA_cSThrDf0wA5HfmfJxsu0vX2LbImpa9ihfgfVoTVBd0wRcRZ7CTqy-uTCzetMgekxcS_3-zusvnKNkHAfTcfFiRl15TwTRPV3cFZwZ8iyoZATQJIN5Ljo3BjVICM2qyxrm744dPNsyWnIbkWfL6HobadRVQ-AYa3XHau0rJIsy_jEJb5rPIPgKHeCEn38fQXGmYH6QW_Iswl1aKTvALgcfRCyvTY_X94Oy_tQj5Rrh2ZlwC7g2RfBJrml3mTlwgJo3xuMhIX398ASZ-xdA1nYXrmLqHqv5lcFsohQ4a-FR93f7K7cKm4UsJwxZe7snsUQUA9io0b9Xg6lZWnDLnUW58CgQB9IHcbLtjpGeXgFgsX_3OVz98HhyOrK3FkbRCa2-9WF4Cd4ZLg5afG3fcMv4zhYKEtwer4sj6PQZ1L0PdJMVjiNoRkKwM3USyP9pJkszjFndeTwurri7SBmwQRnlnmbVMWKL-1tCXzPiKaXZeMHfVp8s5mkxZKk08pNR3Ez62pn_7mX_tAlDTD6lZ82ANtBCvGhMdkMIrYzl_wBB9VCGbrD_wThyVrIKTqqp87mkvS8HlanwFcFWvqPLM3a07GBekNKs4U9_LQUlVFYdgkli7qUmXUvgRXmE22cA9WWyxbCRy5NItX_rdYiZ7QP_wiedcoXPdoU3dP70GB1QIaOn-C8PMqkbND5VcuKxiWVvrohXfmkIBgsZgVAfMltiasAuRhltCl3-BdhXh7dhwnl2vcj5TxGkK6zqY7jDGuN-z5jFh9zGlI8AGe-Xlgskr3M9LE4vG-iKIBzYtwhwOrqUOxEFnU0b3xKOlgHvVZcGjqTjItFjygJNvmXHSykIkASxgY-F49mrtmcJ_cTnS7IY7Ks_Mi6-8dneO_MTD01iS3xUWHG3aKn1gJ7UG9WL_JrCGw4ax5FwEcs_agrMrOyeqzvsGNeO8dAIk0eu3ssiSX6hyS1mJNYCxxcU3o5QFPCEyAxFTUxXgNvYuqfDLxkDEhdpyg0rENF2oXCU-CDQQxrAWX2pBK-0_UC3a6bD70o2tYamyaLntOeCyr-6Mgx56FFx5CBp3cwyg7eE2RcrXWayZwxlDtKiv_rA17dgglkaxmscGfNWKIskzTiISKFm6RRB82iYLP8qMj6a-qCHVqrM4OC6eZdgJpNgVVff6jujVxa4aZNOwjDHhchG7i2hSmJzg8KRdwLEDcogy7nEli4szAZuCtHeub1o2ObPO22TT8I4b3jl3JQxGAh4djwWJyQksRKRcRzbbyvlLi1GCWOBRLI4lThRVDG3yjGmzNZjYhc8KrAxPNStzQEwuLVkr1X5CYtr8zn1HSk2kxbBzeYQ66S0mgmOG67HUfS8jz7_OnM-H\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bce5d162d3d0-18494875','','','2025-02-24 21:34:53','2025-02-24 21:34:53','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42387',0,'cd-form-entry','',0),(42388,0,'2025-02-25 09:09:30','2025-02-25 09:09:30','{\"firstname\":\"jonny\",\"lastname\":\"beardsworth\",\"email\":\"motion.peronal.training@gmail.com\",\"contactnumber\":\"07767370460\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA8fW9BhC8ARIsACwHqYq4C110WQ--0MYUjPbDyM66wPFfI-FR7M3hClWk9EvIU1AfmWJFRPkaApVhEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4Tzp9iV0jfTlcLC2nhGQrWPxR_abRJ4fxb8DY83E3tvO22g3j01MToArooiFsyyXU54HyV5BHwz1wGjk4jMvmoYyhnKzcEVyVnL_Z5cK_XnSMxre4U0yL_oAb9pONw4mn9I7Mf1NERta2S3GU8BR3E5FCaLnCEzwOEfjhMWUhNaqeJN9ZfEwEjguzcPPw3APmvgVRp_Air0BCx_U1mrpgFwSp12n73MjGFmoAmQcycRT8nTJBnFIWaO3v2QZ31n-Tiv9SslyRASLWKd1N58QqtCRmPeeDZVYBmCg4wgCv3RV6C3TTpTr9n6MPeuTGGQdECnWFU02McX9QU-qlu27E8sHIVNdYM5OIuqfgcdJ6VrJKe8752fbigsaM5C8YbWURqsLmjXH0W2Us5mqTDIWhLty8ZCGnPLYQsepY0mm1UL6laJQiH70PVaUVxMx8pRMwFzEtF13OjZNEfk-aNekTT5x8KTYdyHhRarai3GDMu9o9wSr1F78x5_gl1YxR4m_5OOgjL_G6gh3CGDJoqEQNT1ISCK3qqd5Yx21hZYyyenLPrr3WwTD1IRW1DZG7oC1GGQU67J9H42ep2GZ4md6wBcmMgk2x3mFsEtSMBpMl0eCFxC80rqYNoLrGhEZbOEJB3kmkDiTeFPUEwZ8BjL-cgdz4a5VqegRPNkjJwYZkbxu5YJQkO1Aso_ynYwXxz1umTd4kTTZ_dLfdlAHbOb-WJdUp1Pax47_c1YRuurq3O_99Dm925nOjCIfYpeB112hobYgAg4_MINmLCXth8hhm81Vrr2p-QMRJSQQuxboBb_z2WIIFIJj6hliKcdD7pIUAUXBYvmmMeKq8iRQd3t9ueQvMtPSE13oWMRdCvgLqcjd1-00MJMHrFwH4h9InhHhaapIfHPFETmvthLUVbWLGh0OFQBs-qoS_uzX2ynTJoogVbF_juktr-nPgs6SEbJ6DPFSMSNgO1I7xUR5WSZhUVhlwQ7pkY_9LXBs36aBjE2nTW1isWjyAAZEZUj2lu_0srw-LeETAZ86ZWB_Bh6ypvCaQQTWw6vlb9Sd8t8FgeESQkrWLOOp7z7-YTLLTSdtrn4RdAfWazNfWziPQolih0-9ZJ899aTrSVKhfiJpvKJ_24jf_THJRdMMNSxg1P7Do911dgTOciMPnjsvSwRAKdGbEcIZfbSXl5O91sX_ej5gfW4a293LSoGhr7z37xgVwQLO1oARngWfvpXXnkHbRVxi3HhYoaXWiLcch1oIbwPGcsjDEU-P2_JPyv4Y1QG01VgVjXpYXnDqwccOUd2El14I68v8YyaB0aiR7LVr1nlEgHc3zP02iD00p81wPPIYzMZzuTyNp0kqp5YelnYRVvTByiyhXO_Eup0NdZRiBlLmeEbBd4FN_Lzl46_3CLBQW7NNlTdl5_aBPfHTu9KpqjNnkujl28XEYOWCZJ2xkJu2a30PUtUXnKQZ-wlXHvLIsqX-t9Nzi0X3SXjdBR7OK_3Oe6d56xVSYAL8YZvuiGVqkdO7d0dphSA0sXti3sbemRD-UMCvfhx0rk07pmhaAuD4eRqYnTaHmTdWOwdwEtBUqkw3gH5wqhbdQ9mUAVhgByrsrWC1UOOvTYxLHtGrZS2RsSbHPwbHzB0NhVtvFyS85UTBtvq6m97RT68oKiCbI18_pMGfByNMJdeXlYi9FvKpbgGB4GCg1BZp6ZbbR7kQ6NYdRdi6pvcoUIQcvmAWv7yn-3ur6-cS-YhcU4C4VYrzWq5vmso-anwHXBHTZNWnXSmTTqYpsMYYh5v1x7Ix4PdLuZ8d-GJwtlS17jGLX75bbj7BVmEXnfp2PDB5FPkN9nfNXkORV762FFW-GqUHkm0les9eM-ImI3WqPxzA75PIrfVRiLUD6l7rVp_jsMVJhqYZjwdxiFTdfxU8oqo_JqDDyGIUWXubpqPmm4Jn7g4HTKvDa4CZ_2-TQdAcURNXUz9NMM_lZu-h5U_gE6hCHM3zHnB26lohjq1T48gk_J085UlfcmT_2wTlmAA4oAwu-B6XcqNkZBjpUuDetBHLs0Oepy4eVcMf9uE14Yjo9p7IDpZnfVMyod6ansqDQsIMTmW_3JzeA-OCSPe5v9unAl0t0m\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bd881a4e4ff9-63232162','','','2025-02-25 09:09:30','2025-02-25 09:09:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42388',0,'cd-form-entry','',0),(42389,0,'2025-02-25 10:16:42','2025-02-25 10:16:42','{\"firstname\":\"Teresa\",\"lastname\":\"Towle\",\"email\":\"teresaktowle@hotmail.com\",\"contactnumber\":\"07880591989\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/biomechanical-assessment-everything-you-need-to-know/\",\"recaptcha_token\":\"03AFcWeA4a9LezpnI3HZKyj7zc0OV4Rzn1UckCDUwyYYvrkJ_jtSgeGpfvPNF75F7KjTe6vRKXcewnpXsxyjwp0ukmF-B1KVjLyI_aMzDIbum9Y0Zn9y5Sii9oVh276CbkYOTBewIsW3y0monqdMy4rFVQQaNSXyJ0wbM6wkZuT9Nj3pfnntNuN98_JLvN-IP_3uBAaWurOGpzKdD3qpWOKkFeBz5sW-qiexipIqZLwSsTxRZYHJ5Z4jyjBGzcl4CrVqolxfCYbjvRgCVe8harsHjQBRougHVWgUPbBFHPrDQybrqUXixRAHTsVV81yQQRVEHo0kQB1Q-bBNjdDmKoiXCsMqSo4O0yFj6sUmoBxf8BsUSm-tkPE2zpn9C9J_Kxg-GBT3hLB0yTQrktGC8NF9H5F_zjW8o4ubH61vs9lVbhRxI75I-Gc6nwLWSZAEaqfTxyteoRWK1zgb3guz2PE8irPVwel_7X79nn6KQB-gEaWXMLaPNVXiRcuz2IwM4q49rQlfA9FlaEtnsVH3CHSML3uqRe18cSEIxfUHh0wLAzcxHTFx8I2GbigtcPUu5RFV8UNPgLzNgtL-zHI2FDvW92CCzoqdlJheq38SeG4bbvQ-YfWgIOvB6iqURtg9B9rHXFJdywQJTWWEgrsbAu_qEzgBtJoG8zC5l8cFfPk2EFC2AElKBHJOjlM57-uQAkzZld40GvO-eu_boqEsIl8jQzMYcHSScD9_WOrTCki8YOhdPUX4q1COWaHQRG9k-YGj3iSvf9uuPcweio_cik0Vnp01C6ewA4m8RegFQ1h_ZMLIhwQ8MyPnWqid77v2IrfafaI5CyS-3bs4sX0jf5BApYSbLJ3buQ338VJO6rlxC-drEiUe8Yb9SlMholZ3Awg4iFokbZKvZ5mfESi9XeWIq_6qFyKgDcM9y0Yh2i9TxBLlwTB2fsFvsmiXAKwkFm1UpGRKdJma8Mhn10Q2xS3nDU8vHDy8C1kTNgrKXfXPnE6r4rAK_occc7gQkGGuga812_x2NTmvjT4VqpBQxvrPKQVdrO4Qa7EIkhU4KO1qO0qQw3zsQshbkjXhfGtJMNMsV9I8VxdAr4rllF6MnNxKeoiFmGGLDNiAy8_ArMfKY_bIcI4NGRH-GrbgV2X10ms-34_4QTJyXcze-2rFoX3gWa4RQ7hpZ0J-oBl_X0LaqKB3fff1lTwGinlQY-bRlJAU7Zif2bRXDmVUXa5QVXj5UzoLjq1aV0c6SiD8E5A0s-4wCQjO6G4o8tDLZQzol4_oxMgkNdCWE6xvb_rFY5oIofFmffRYyi326W0hoDQhgk9gscffa7HgpGYSz7jpY6cL0Jf7Xsr2fBy0801a5ui6nkXGz3pV1VeVqVmt4-FOfs-CWbZUcgyjbm2OVTKfEOUuwom0LbUKc_Jij2tzOsS3eyTDwxGEMOkuYfr5ZW7Xnu-Arom4xr2dZGsJ1Pa0EYwvftPrn79FoCkUbUtCZE47wvoLUk8J-cifX9i8zpktbxyJ3KkGJmTEA-HFCBXdWJRbKcD95awauIQd8nrIUCKjTSjF9hk4oE13tawaF9oHarYRZ5bN3tZCrGJBi6rGXCB0wf9RgfXl2EC43OEPRyl94SSalb2VzToHv49qYUIx-3-Jr7sxDCHNAu7p94CgZdNJ6U0xU3OMznJjvQ0gZGhW3KyknpbLoBb9mywN4dda6QCcBvHr8DVEksVIU19a_z2bXyADxLZFBMrs-KoNc_JBEKQipsJEYlTnnMcs5GPaXKEEZaxOp8EfLQBsrcwgMPY62PqvSx0v_hJtsYjghNnr5lWBSGmyzA1KOW_bm02yNLau9fVtLRTJ0udXxqA6mr_BhIRrat9zgsdqFlTfcwn2HgswpHXDwUFV9bwq7rbIvOdnqKdx6QGZcMXtDRiwRjVlx-xfVlPIDs4sahO2CA9ypih4x3WNVNS7wAfshFmm6Ws2xMiU-RZW3f3d7OrKIs3o25_-Fyz3DEtUDrHUxFuOxXHAmQmV60l6kRWyS_TvrHs5hKkdxhDh8rtL_qeSq08y0c7BtWgg57mFFePtjGCv8jW5k6YaAa16hqfZdJa2AQdiMbbrFMV5VWF3fUb1dQRZKMUrsA3PsXhgBfqqXB-EtGeqMxURulfg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bd984a3d1893-39356264','','','2025-02-25 10:16:42','2025-02-25 10:16:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42389',0,'cd-form-entry','',0),(42390,0,'2025-02-25 12:59:33','2025-02-25 12:59:33','{\"firstname\":\"Ryan\",\"lastname\":\"Dale\",\"email\":\"ryandale2000@hotmail.co.uk\",\"contactnumber\":\"07803369462\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA8fW9BhC8ARIsACwHqYo5SdZHTqMchZCfhf6FXmrx8wQLivWX_cZdtax3VjmJaVf90NrQZkUaAhyjEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4XZqwhf7N0nLte081cBXCLno_zXne7MXeG24HJ9Ai7b7h4I-UyWJMS7HacL5TOA9sjz2yI_anZwT22BG5jzdhkirFnTKJ6hVIsAWPS_rBKkcTSv7Qm56oR0Eusse_z-KUSs9tDwBxT2o70TTBl4ti4T6X-FSks62bOr3zoMfcze-_xphLIJnEOPYjzMBzr4T9DFJTYc4Kp8MfBw4s7PADJ-2j3OvsgpyNrx5gKI7hwFscfWxKgS5HqmUUKZPLHZ2YQnk2vS07_UA47hnpXvug1WummRnpq0i7Ib6BbkB7iGb15qUlv8Dj14KRxUHDfKnbsDco3WYUJBKBliAbmUmyiITRwXQ5ngoeSmemyfvO2Yt7VYrKFGn_PF7B7HdtEp-yplZnlABk2upWem3tBwJ0u5pVbknnoKXSpQs1659kwe-MQWv0GNaDim22OnSDUTtdhwYtsnuqu2RbWW4Ljs8Sjtv3G0CfBNiEvmkepeK_YKVJRMXYNaqrte47nET2H_Zyqcq_9eHHigypvP8mBiI_r0ceGJhOrWp0HhOJE8cwpydZ7me54saqXEOtT9tX4vPLlAI00mzuczlHDotrojJ8vvhMpZGlCk3KiWSvsRkQqZ4z2N2R43Qc0RdRNgGfJtOrJH91tpLokkIK6D1uTn4oEjGpXjz_8cTuJjS3lwKKrzkA3EnIGlPG_JgGUuqRthUwMnKH-3DZxpJXDzX-PEQ1XuHJhqeXhnWxWBUKosHPyTiOdsYtb4xCP7YnvOH4JbsCkp3V-oOl8nfGHqp-tykFxCsA2VM3Y2e2UczE5YIYZYaIBrMTSbMoAiHPmVNsIpEVtIhCgWhcVW1RX25kwMtelwXeNjPP4Av-n4gBiwAJ2ZjrVY22w3zwiBFhAZCM4R9vMRSwvRQKfxy0v8FZsg07coQ2CadqwrUtY1HQoLkxYvWeRMdMzMpNn0uKa10rGTlTdxENmV-vYtAL6i8pWHV3U-S-ZPQgxo4P_kY3Ww27WCjSz3N0qhXluc3jVyh4C2DxY5BW-B0NX5wFsGgn6xpWbvgLea5p8mzmcy8QfT6qVP_v9RsLLe2jeKtEnrCf4TP-0Vgxj8N7PDRyoMjqehOW5l8nneGwO_x5MnCVhxTTyEh6R0FqDE6izLlRbOpWidfyu1vkFQB6a2wKWscjwboxEm5QXQCoNcQfvCqCiNPdgZt8M8L6ovA1sqIDBem17_o7XkJlaiFz-yQVHKccWt7WC5ba8f7cZfjyJ8w-J3aTAfHd8kc1sAv-RJCQwaqX5bJ02xJHLTwTKHu7Ilj3-CSa7nKJFtE80ZeeIroTauVVkEK-w6RXdmHYmB6FuygZcBXFvc7rBBtKxhqIQBLYYGu73U-Y0i6QxT4pRwyjUzUvOrHkFt5YbjiCFQoYBCSy1By3hIu33HTHMSiF0vywKrio6Zy-5s1VPRu2bEKDDsoejORJjOodpObN872YLq4Lym60U3c0VZwL7PIgQHvq3YmsPQgQDZU83eBzhzST_b70T90ueJFyN_-Rm_OlvW-_UL0P_7xtf69pABBHaOj_4gWfozsa6tpU86XVnaV5UmRHZK9TNVbk8sDmx85DbaaSnYe5ISCT_eDn2xc3e_XGwUwPx14WOuqfgtH1SeZp41fYk9SCp028u6MF-lccpKby5D5YdXr0TylFmgoWr20ZYvqeFrU4uDjNd1H73j1wZ6xJRtofE1tl7RlCRGO7eYH7SHU97t0pAmOUWUn99H53DIK2qP0Ad5tN9E_X5KJxooSz2-HNyh-ayG_Q38f49Qk0LVnqgxYPR2bNa8iO4ks78UWiRq5HSrhZsdOy6dxiam5pFD0XA2rZahZsdmy3EpDclJ0bEnMzWTRJo-y8G1louOL1Y_kH41-lIxJWRHCaIGEYLPL6ghYHPlwUA_iUYiua8dFRDqSN8w-oFrWvStv7RSligK9YQuqYlK6xBxlqDnGcy3oduOHoTCH2vOXSkKPXn5D_4GPNLz55g-vnKNCoIqgyx2NXjwuDQimMTSvQ3UeKPm5gkMbT71lBsD-ur_gJsli3zU7wjJF_pUbYDUHoJD14eb3Gv6NGMk-SoqxhqT5MQpyIALA3sno8S3KxmjyNSrydCQkdi\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bdbea7abecd4-93843010','','','2025-02-25 12:59:33','2025-02-25 12:59:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42390',0,'cd-form-entry','',0),(42391,0,'2025-02-25 13:01:07','2025-02-25 13:01:07','{\"email\":\"ryandale2000@hotmail.co.uk\",\"interestedbecause\":\"0\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"Cm3 5pu\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA8fW9BhC8ARIsACwHqYo5SdZHTqMchZCfhf6FXmrx8wQLivWX_cZdtax3VjmJaVf90NrQZkUaAhyjEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4xPIEBPt9Y3LgfR7CY8FbYwsR8CYlau_dxPp34xgrUeMxS3aR3Re002F2RKNRdDrUAAYxxE3sYzklvbELHCjlinOCj-K00j9Rx0SXKzphWRRd13uHCawEZ0vFLEfAK8WA47mTY6gX4BlVQ4M1suFhnTttOrGOB1J-pTWkPaStkTg1H7oirNVvTdbAPYsI-cRaxFYvmegRBA257QvZKnhhGJQwjQc-a6XB0FwAnq0YOJu1JZeZWN9FhFasxGWdubcHpmmtCOPj1Nq4frTvEdsy__5COa85NZBhv4Ck5hv1-nwGFwiiBZylibwDaQ6gTjEZQZK7ZpIEKHUb--kswLBRQpI7QI1-Vf1tMvLM-Ch31v1tM-GD-GJd6P15pxpRF5kUfjQ_6yqZ9AZ37rRVvF5r65EAM7uZMi5iBPp6bSnq10dcP4ukW3s545y1GJ1AcCkQ7h2o0PaXkEDzYQdmMc73JHXrksqYzFz4umWMgQsspDbVAMCs2tADGB37jRsOyxrOdGYdkNQ1YaUAW51wmadEj8JKqA-31QRiDp99x8A67Hv5n2gPnr_kN5pIgKKcZMcLzKVImOsYn5_6JELOzDk0BZmvPYBdgShBHhsCEwPvICPRpreNVe0UB5E67UcRBOetIX10UqkFiMza2KiuBdnDPbroMx73mfFvkqBodOrXHmTnGWtXZptDGmBafpc7g6EnrHdnbUEQ9Go1je2_2J-WR8xqO2jJa5-a-bNq4UclQi22PqWhlqyeAd2PT4Raa2NOELDVOx4QxQEcUlhOGUZi1ltrvSJlbgo1X1gVkx6y2_w-ydInbp8x4KjIw6ZRXAuIlxllTTAwZ610jKyoD6Wu-dZCNpOIYNZx3Dm2k0SBQI1gjVkSXysRvzcw9cWf4qC1XPb6Xa_O42nchRsc7FocHr8nWGfuxwXUEYzRPUTwBkQminKpk6Vcdz-eBaIQ-s40f_EUa1-EkjO5u-WfBBPHzyEc6U_x55OTtraM84LgZQU9BJn2xAqqwih-bZNqCpNuDfPVGsHE_vWi4zy6qfHhd_1D9PTl9epRujUBw35ld8BzveJR0lJ9ang7letRoSTNmXi_yuEPmZtC6YZvWWYrnMWxZVZ4GOVzg-AQEkLbMdNdS22nZKh0IZhMAtao4Uu-Yoe7bcocFxdBvKzKj19Lguin8bQ5g2DgX4fcmAxZzyvQrWWPKaHlYQUbTpx-FvUf7jhgFLqsz6tWzRM9Gk3P1fpvonKtOV8u0Xl7WtV2hC9FI1KUQv1suhLbyUhq6pT4QfD-KNVkRxCrKqhTO_XLdSQLLx6uBu2WluzANl02zvRVn160M8j-WCDiHVXWPtRcO7mzu95nLhFWp91gcf11t8WXmaBEcSOtFYwUPiBoe3pRzwUBkMFwBGYa9yWAI01KZ327-rmk7rVJlvk_4Qp8mN3GsGWMbnq2HsNuLdHr4jaxvIONt3ZZ2Z6uNZ9e5Tt1BmtaRV3KfU6ZUFnnsXR_9NEwOG36F6fbYKMqh3arIqFdhr7D7jhTkw9Po_escu4t7IKvzj4_xGJJN2-QLz0f38hT0mH1taTHArmkSnymk3sb9wUZAKof3ujXInrN0JSRRkMcFU2vHRwyPdaj7Q0YNxqNP32jLDIwqdGfRuCDAqrgxEZ6s8rFikNwRN12zho5KKeYG08qIfexhDS3lZ18y2PYoTfAc9DuoYLQX9vKytw4SfK3wCth57G7spEGqmkV_IR7LQcM8cCEc3WV-qG2sbK-nnO6zWYV40lWA-KG5UGVyiFn6Gli4lgMsIAv8thzwWb1KfFjEia47o8-2jgLKUAEZ0hP7Ql7M_QNfM3Kn7K7GlnXtowaM9uG0FcwfCmI-VnnaoeSc3psWob_IpUgLcrZRHLl1H9SGneRQqKbjQk5eJmcxGxAmKMmve7TXKLk_AO7tLfYcYuBZdH6dQ481UeM3HXJg-JkdYtYWxzNMzmYzFUtHif1Pjc88uUdGY0-2fW8TetGr2VjQA4U_k0v7G7WExWODf-_FyJIWR93yq81dyi2bah7MxwUa3o4wtf-Evs_ERu6CZcCD03V30_MqOfTMOdtMbSQEJVjH-mwUPZrVOsEUZn_krIM_MD4Dq1Hz5id3ReQ2O4Id0gUDu4jCjYnO6A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bdbef05b0287-95434947','','','2025-02-25 13:01:07','2025-02-25 13:01:07','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42391',0,'cd-form-entry','',0),(42392,0,'2025-02-25 17:02:06','2025-02-25 17:02:06','{\"firstname\":\"Katy\",\"lastname\":\"Turner\",\"email\":\"katyzofia2020@gmail.com\",\"contactnumber\":\"07399494641\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA8fW9BhC8ARIsACwHqYpYExoqznakUcfHnxlnPLYzcycBFjPgVcqMA1y-biehV3Aj88MkEYoaAjOgEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5fWZuGrkzNH4mb12EfsfWE44I-MqzcDM-XIMsrohXx_XUtfBImQqwo9FKKULwWoUYsNufSqmJe6HQZvhGeHwsONcjfXwsyEm-zs3evTGhYLnxsjmpCLxNay-3791Nd6LYiJpGKki3Sby5t2i6uP8vf-ggVFHRrUQJnuBUktExy0dhNtFy9baS8Ighimdi76rN914ZQO2mMmwslZVfF5cgy-zLNIjCKTfHXxoobIvkB5Olau7Oiy8zWQYT3dPITVueadLYkFzJnQYSjW1fAah_Xh2Qk7IEq67GMwdjS3Y8ae3ThaZjAlYacJfA1g_ZoZ1esRg74NWxSk8sDTDDmxhUVc8zlBzUfM3GWxP7X2KKWY1vj3qyIs7vFZrKriE97K1IcLjkukV2JC0_Kyp7S-6IW1CW6ncFVdqYmyXg-wwCMC_c9aJQg3EeRGU3fbT4Q6Qub5jKvP-lCozvGBLlmyUcX9mUQpAdlt8xZQ153s6_dyjvdHOkIAgzwNq4hxY5Lrc2SLvoC_ex4FiDwCZRbmr4LLTGH1R-MN8hVBKVXpf8syx9YYTeJSkiFMDDj3_Nhs5Xsrn147l_09jQiJ8f6nW_sKZkp4Q6MjekFf-4pk93EmPcJMllf41pP53W5d99mk6MpsvvsFxIT9M3YS7lkZpRUEwEG15ZFxbZ_cOudPuVo9LNs4VOylhKSkW5ENMmmB1AKngo6b_MpSULaIpbYv3DiMIZjE2bd1bH3i2DynZ0oaNqCO_t6NkPFE0vsIC8r4t3O2IEWzFrXZnuFusTD-Kgbg0twPzrrbkKexD3ZGy9U5Hmtv617C1644JARKk7S7juGe5se8BJ5S74U7E7C06sg8qkvDJsGgSKKMdLW5nFGL6VSxAAilsAy9aAvY2A_7gVGtbK-hwe1Wrxv4x_KG_u0E8nNFcJwkA7NbI5VHLRWaWKElJzwNgU1lf05SAFxvfpa1SR2OYlixoHSL40VFLBAhHHbQe0vTD3Ed6o7kq8mMXNUCSlghLmEp0VvKtMQsRTh1QSnKYAs7Vv-EmSuO_pvAf3VGysEIiCEMPf_SXlz2_Nu0mwZP1Cn8JnbbBtzJQU8zFhhA1_MRzudicGGsU_6b2HKjDDE6eYiZo72jV_eIXIWMQnH6uiaCaADZjRaUvZYiLx4ZYS9kwOhqACUQLEGI9LhHp4QAj2-lmKwqjyxgPhJy5OWzrClhSmNiLzsppfsT4pH4aP7NNDQmxxfU0LOV7k0RM3UQ-hgxNkEJ0sXwNJtuHrmQJQKmn-rwYN1rVrT46iUK9aG4kKrBdjDeeiA3GS5dCx2Hx2h_wXa-_sPhrYYdmGtns0JM4WS3xSK0uBR5ebQUVw_35wK1ynIh3bt8F-vDlv1EUFSdgKTcZUjJT-FxRVdYr7_SYEz-I66HrVwPRgwV6LltVEzDqRqL29ooQD8V8kcFcNbtrLs-f_EYkcLQdkKtTVCahbSmYLu3otFx8eeFQy0Et40FnvLT-c6dMLPezFY_rtd_0CueEQMQ2EsTrIVsLbPRf2vLztb0avWXMHmdiLcx6PQIpGBsnRVcBzIKduE8k66jB4NYYknmUYkpogw1mtqlBtPWCnZQTJgNFZC6GS74J5-JoYn48FNUUgY3xK2rliex4Gkt8CYp9yXC-HcowINtRUWnIzEAH-J1EaEmoDFheFOFM01EIQMtxlU4p6FIOvLuHSMx-jZy69iMlNo7dGNlcHqi-eK2CVhGVDW_G1xcER7I9IeTw6DtBrtwttvsrAskjUzbD2BXcL3V_Hh-qD5kxOv8Pr80d4HcqDsZA7KsFdA4YQykgugnqeNJBhqDxwKZbG3CN6DpAjSMWjSa12n6pl0jQHQD4IqKiC1kcz2750xlfXkOaVZDCZkZOjdx01Lwo92q5r_4HFXDK4A2eOCgkVPaAYBeW_e-KHAndzKLfFlDizUUOjH4qBduj93GoHEBkbbq66yiHAcQCEpMxUJoCvDP9Ai2shlkTZ6KKr40fFrpd_QtMPSf-ny-g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bdf776971b65-43948452','','','2025-02-25 17:02:06','2025-02-25 17:02:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42392',0,'cd-form-entry','',0),(42393,0,'2025-02-25 17:38:43','2025-02-25 17:38:43','{\"firstname\":\"Lucy\",\"lastname\":\"Ellis\",\"email\":\"sille86lucy@yahoo.com\",\"contactnumber\":\"07908418146\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA8fW9BhC8ARIsACwHqYort_j8eVSn2YPKSQ2c2PyUlFVfW4l9kOYYpqoiOgQtX1pAk-X5ZlEaAtfzEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7AhuuchuCJHNburI8BgIQJegY8ALGcY59pHMHrFK_32HvjR7ToKXC6vukQLY2iZIpD9SuQ-cjVOR2CwmpdFNQFoRb-r-l-nTXFFMuiBElXEFOPZx9xwH3FlmELBn3IrTOZMAjXdOXeFruQPlwE_EBvKAV1pcNhZHSfaAqIS9xqcdfoUXEFhctajfs60Rm7PLaYgkJWH8kDejw4B4Mvta9Ja3vJ4yczIHh22V_KBWrnpIA9fH-9KYBxflx3TWkhD0h9sU-Aeu1gnbl02RvvQ_YUh_7IUcFXe71lJghF0cgw880ULsoMyGHm4MtNuTADDygYQOiAx83VpCsD5K1uG1Srcm_lwOXO8tnK0PzgwxUprsbqfo8AeDJHqrc5HiQY-k3U97EIjtHO7DOcK01Hba-KAu7nB1miY6ZJ0CKWAXNDsNtz_bbGuqi13EyeZHME-HYP9YQoeg7oFP7k9mWVHsUYW4I5zrXXsdR1DMgh685Mnx06NMsM5VFz5bP9x5Ebk6zMPzMyLFr-nX45PiB3ZlFchd6wGSgmys3wgk8M-sOs-qBGQJa-tHYtFvHo1kG5vNjR0-E_SH7no9E6CTRm5SjD2n_h72hFJfEP3RqN9gTX-amq6VugXiBiEOBrW3fIA2Z-4F6konU3_giKnd5Wt5Jdf6kgvlnaVn74tyM5K3UwZbj7jOC7_vKG-HRU_TRC53-Y_xSBC19t8E1l-LoERg4A9V-CsETrH6byFWkaPYYioibMANyACRquIUQu_0EECr8l1857y8yCpROxc-WLVAZmaUUXVS4kBazlAVSr0hJyGumhEKLCr0FxEAMAI7K4MNcQPyltisWVMVOXDCAa9pbpdHnjUM-MK5Kfpg197KEVRfWkavTvkpV3zbpJYPw_QycpE4RORKlE9A4GfostcPFK94m4bwr3EW-8UrBpTjsFBISkV3-TtKOclRyZXcwZC6qdeDixbepUV3Op_q1wbgI6MchZFkg-d6A1XKoYPTvJBFz43lYKDwhT4nBFmRJAbUGCyfYgGmnDXxD9-1_bhB7D-V6jW89TnAwh7ZPM1ljRcRzeU8qjeR8Hep6mT3m3OkCqaFPz5yW6pDLDlueigtt8S5NSGTfejGJqcytqbS5plekCMPWJBhiHrNFHLt2Y38qLXWotDJxyoHKpecIBMu2cOhlf5c5caG-zWFO8zi79X2wziCZdWkjziQTwkDEWLoYaTVSskpPLANddYRJkWpiNzzMixL1VTRGtxO8gfcif8-_liI76D_o72ODxcPNk0MEo25MiwP_AzI5cTxSHBVhmOIFHR42d5lHlQ2_gN3uLQxDUoUu6f256yx2Nrx59bISGqTJKZSpbMrPcUIxLFnBBXtQ_YWqTB1c1I8thObU96SZ2b3tMakRbErF3y0XAkrcEISJ-YJTZg3_DNQ_O_Oza20bziKm1m-W18qjnteN26Z2rltzI-b36LGDVlNicM1AOZhdxt2gSlcA7fAJcsG5pcB7PFNC752IOQ59PFDKKncCPqjVlbbCvGTBhfuyP5F1AoMGXcPwht6xoO3cIbe1cDty78gijePiJyZFZnfrFEa-mcoGP5IorQkxFy9ebVdwP_u_gMh_-l0V1RwSoqwmt_xQmBVVOeIv7FVYFEFNMJ7YqW3wDBa5A6Mj50XMc_8nUpYFiQ6cCbUhGx0KUUe04lZwBEBk1SoBmEF-78ywLcLkbIGqZ0OXRq41VCJVqw1sp_wPrOcNMwrr30yMzYQsIvPmFMRgUHtpsU_F7LtN2of9teN64qB9pdqMJGsP6vPK8FXFqzPBIyWHeZIOrgZS03FVD9x7dzYHmpQ4RgIw_vv2o5mezPW8TShmF4GStQjtHClqJ_LmsV37Wub7b5yQ4_0s2SIwxpTFRGZtWbPc8MQv4iLK-9mn9YCm_E5BbU4S8T_F1w-RLn40rmz9dujxLzY2l1OQ9f_4KEwgm-9XEGtUtLZa0HW0u7fkDuqSrrIeMGFE6\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67be000d00e7b2-53334105','','','2025-02-25 17:38:43','2025-02-25 17:38:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42393',0,'cd-form-entry','',0),(42394,0,'2025-02-25 18:47:19','0000-00-00 00:00:00','{\"firstname\":\"Vicky\",\"lastname\":\"R\",\"email\":\"vicky_psv@mail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4jMCyIznT9EuhoGEjxza3TfYNP6tE5_MF4yirQQBQitmdUvu9jTDQLT7MridLTVmB9NW6_AEvgbF2hAjnlY9N1uuKbieB9J7_hSnYJ-qHB1b3XFTsOdyggVWPaT8bJZKGJwPgnZsHzHoYKxJ5Zlty0WvhtxVQQ6LFSjz9TxrTeyLiOinGxLqkcicBKruXMM10RERMUxnyoYKey2njUl6zoQsZNCG8hIiV03mtIVRqE6oiLM7eNWtiw7odgJb4oQxooFBJlSSvlCdW9L8n74kuJQy40yGG4MN5h3tNtc8rYpaJfwbo-iHE3Ri4NUaWTaA1JOCtSIppwaNwXB7-xkJJIQzQfD6jEJ020FoIPZJtIcucidNbEujQ8BtM7a-xjU8iMWHV17aO1iD6g4E0WY7Vefle4_F_5sqt2RXfB6Vq6YAZj_FkZOi9ME2WConYfzaUNhV4DQMuEZYGd3EC6-i05ygToTRAWH76S9iP77FenJzLWNnPBLVd__GBO-ioqRZoaXEWOQO-Mnxj_x8RXwuQO49cwd8otqipMKGq7wZQA5f9MGL_tLQ7MgTAd2Coibtz6KOUkPutHs0PJhRVgpJWxD6m9v2qA6eicLNP5fzPET1YqpnJK6S-3QuibMC5q2fyq5IbSsAxvcggiH9eDLhOfszDBYtDNRvgyBJX-BRNRvy7momFfTe-_ra89h1g7f7UFcr7XVNZtIUX2vydJ7IR49MmvRPoxzSdt9a4sD8ryF2EeBLOXGffJEdL2p3lTG3Uo9K6Co-Irq1l7EgSJBcogPue4-SXmOs2CLkcvvxxy03kOqGw4D7e3xcrhaSuRhmtEadkA_Jg5FbRXkPYLvG5HhAzccrSt-gY9XCdSLpWjitVwRzo_kbD9THnYHhFtemi6DCanpzIuUAch5J5HfQ-5B_vUuKbyoen4q2PT1qYP4OPHIj2t12x9DpvanlrQ39seYI_9xCLnax1urZopo7QJeGHSmkxgu2d4dAy7v1elCC8oUcC_yCUkVRDW2csiwzLibAFWwMmrhOSmKG80PsfrJa6fkOT5k5rtKszmT-IhbpX0iJgqODC1XwIUiFPLYgEEu10boydE-fZzKCx2fsHIsoarC2w3y5CWXKPhCwOePTeQL5WianBfITz1UiqWAoA4jL1nCwH5MMJOb4YjFq-DVhTrOsJVeqtHSd7gtwtVuvJu_3x8LeNklrTpxm9jW3-sak5ZCS6NfQr4_NEhVsNT11VpBvgKlneSKMP16voiCvUwYJX63Zjt9gmYgF2WU2gXdhTmvweLQJQM7mjxp7uzguvEPApR4vhQ1xEnHMZ6G5CnkrrIYGjRGErmh4msZ7Xq-Y6RcpRN_wqdOTpLMo6j4qAaOVVVP-UKUcDYe_hvUGqDzeJb2zcpEzx3VB2nqUzXjaxDwBJ3prYc2XQa5SxTkLxtuiVm05R4AUoYbKqGY63EKT0eScAR1Mw9-o-A7bqxQhyn6dPMrmqaqP36KFVtj4tkz6KvPUjJVlPJNR1axEdZw_IAfpPiJfvU6R_OtryihNHX5FYS7AaOS8HBsEwg6oD4x-jucHxgtfcDNgAYbLKOMWUE0NDEH-1baSl2jQJ1qn3ug-tKHQlDB9znC10Fwf7NRo75qrMmhtOZIw7YI1cDPEUJJeNlxm_6rGQbw5nwccYRuNdVegs_dIzJqGel7C_dFv1njqYhOIS-TMJkiCl55R6_5B8Zo-8ARfqv-CI6ZvOmFqX5h7JaJ-DWtqff7gW-rKUaA0KaQiro5vTbEniqohi6wXgL_x5p71yGyeTeMUavpsRHlsTLuDUDSgqJmID4-GM0VPnBCn1P9YfhFW_QJe9d3oHGtBgJKBdc-9XmSvzunGHgr9FaR9yt7Jco237Shl8knJ6tnUkMjjOxNgEKsyxDDXyStAmhzvY7nT4bJ8H_OmDw2xptX3w13Pyms7z_xsGA8lDipFmlYEAmjtRGQrkdshrlbLmeHWOmYo1MIbd2PxXYCnMZgWrQBHBDDd_kpA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67be1037518bf2-02787933','','','2025-02-25 18:47:19','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42394',0,'cd-form-entry','',0),(42395,0,'2025-02-26 10:38:24','2025-02-26 10:38:24','{\"firstname\":\"Ethan\",\"lastname\":\"haworth\",\"email\":\"ethan.haworth@virginmedia.com\",\"contactnumber\":\"07918155200\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6ujiSZt-CeC4UFjASba8hRrU&amp;gclid=CjwKCAiAzvC9BhADEiwAEhtlN-BgPUfAVqtI9y5eAMRz1ViwLlba644yOzPkNo4Udh_7zKBdytQ7ZBoCGBoQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6Sv7LWIHN9TaSQ3WeZh8JeAZaS7ahzC8hhyqweuRm_4MeDCZLGtKfYqdQeXprx0bpxtkTDNBh-pVaLb2WxfG7AND28Y2zX6pVhYEZbR9h8Lnfcy8jPzBPL_xI6yoyutKAOEdcN_Hh-WlmhSSeH2pxVXK9oizP4Uz4bZJuswTiyqYWl82xzJwlDYqzuo5-4vANvvtPpkuJz7WIaBM3xwY1Ez7tTNVDT4PenXSleocB7yKKtf4iQotgq1kOsGCPL8XFpTwJVl6GoKSvS-Jq-NZg6wEC7A2Nrikp_iYaKInZD8tFK61LE1tXRdi2n2asc0f1Roshx2T8HicIoyu5T29rASZUiDyjQybjpKo2T0YUO2PbCPKMEeMtEF5gtPbK8NkgDKTqVdMEY4m_2uSQw8ifCjACPcc7apmk7RsJUKg5kETFnZ5acaaFYeWJcfU2kAcfS-4bmQnC4qcGPtykki0SH2bfTEvbEReZXswUzR8cgM9uk21kMHTtjhWIOB8VbX_u9LEzuYKHDLvF56-OKmUUy2DS_vNzhb8DK3BNLq59W0EDX-Fk2pOlnR4XBIMtvUqldcV-ouclRjC7vBCgHfPGDRoGcypNa3UKQqDxWX2SEofTRMJnMeYgkN1wysxyPXH8f_nG5U0R9eyrgXTeOGLdK3_kz3lX926Gvv14EqZBRhf87N0qePHZp1j_SnOTTmratmD0pS0443hK9k8i9EMKT_latq1nxdLqD62cYJPBNMOi70HUTZDinloM_Fygm4_5eexZCDkAE99gkcaDeoE7Ac2jFAhO0R33U4oNvz-QmN-jCYaj2Hsl5-zqcpnzAya6lDY6t-YIfnLDvuci3Wj7cjS0sAVKiq9A68g7wnAwsH-1z9Fv-Vyk93zDWQicLOodzNkzx_yyBq0L9E8oJPyN_uFzDngnkcu2CUJLUeylpr3YcBSrzjTlOx4rxNrGrAjwx8FMBeOc58F3Bsp7Y_e3hBa2gA-PdN-VAHVaLlPI11SQPD44ldAcgbnrVRCd2YTOyo1COuDkt1-Eg8Hx5rfIVP-ESvJTs0Dtio7HHYendNNSLP7tfm4GjVUKzAXwwBXVnMCwje9WdMTbHwYZ3TMubEPkPUyIalpK_EOQkJcVLk8JgZNX8rHcMtqJaMoepQ2RlCN9gee0hWXr43xft2rhc7c8OMHQLQxaCXKa9S63TpWdhATc3zXbHR5y2Mxo0c4BK-ntlGox1i2dh089NJRAhGBd8UoV6TVCGFZznXS2XlowFVSdb5M-jKX7LnZA95nQO0dmtnNBK3P3ebWNcZaE1KsdZTsS6G15-88rYbcsyGshl5JXzB4H8jnVOvbfY4vfEBC6c_Gil20KNuGcnbqL_KB-IagyIP_ieeTPRbAUVpqGWn5K7w9nx8mEEnU_5Yv3-ZMUHElh7KZ7hXtGy6-eAT_Zmswt8cZJydZXFMGp0mrD0V1xa46Bnwr01W87fM8mCHIy0lsuQwCLiCDrfGchk0UtQFlAr5UnTI42orV5YY7weqRA_HJigLU-Iw59wT1i3mEAaNeAQaHrMThRdqh8Fu-_l9v-QE3Cp7lmo-L4IvbVnVRL4EAsGkBjqOpiOImD55zHt7gximWoQwKWjUSDOdYUCprmn0WWT_iHtrLRPXr4uUZXh3gzPMzaIXUliXH2H-cVBxEG0ADAOWKRySIDpxEfGWTL91Y5vG6fr5aQsPoYHv3hmo2fa-V4ETEia4RoZZ8VXB9IeF2jihJAP1nLfNsNaceY4IplkdSOLSaI4UQ7s6IdHY4Md87LKHuaupUY9c_O7EpIhTFdTqQ0ZpriWAT1pFaiwlv2rm6UxEZ24s7IXEhhwv8WOyeuWiiJcGPv105cC4t-929Lnmei1qKmcYUMSJ7MZuK3bMI6MuXQuqwfrINA_gJv8j9-T3d2tOlFw5TUtLKfkaM8UWNQEolyeIyC0uojHh9j_Mlcf-cXVVXCQH9kYsf9qikX0Xbbpsx5ZQL4Ue0_niZ2cP_HF-8iCTGcpYXxkLIgcL3tWSxkLfoRkyMAklGL_sUnVkBnZ_ZjLzEz93d2dbJsBne6EL-otIJOYv4L1FRztY6D7t-JF729DaCwM4irRYHXoR053lx6pf0jzwGvTQ9cRk3JvWpT4LjgBnUTO5D_JB5p_f8_vmMTduSksXOg6reKpfEpglQDYoYqq_i7Gxb4V9xY2KZ-AN8ghmYB2v59dHD71uusFaXftfPsgUIjmrEtkDdaTmkEwR7844VVRJq-3Td4ZpUObDag28ttGB-e7yK_gQXwtj31XGBpS8GyFOw-FzXfjp3eNzo4r\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67beef1a24f631-38910777','','','2025-02-26 10:38:24','2025-02-26 10:38:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42395',0,'cd-form-entry','',0),(42396,0,'2025-02-26 12:52:57','2025-02-26 12:52:57','{\"firstname\":\"Sara\",\"lastname\":\"Kendall\",\"email\":\"sara.kendall85@gmail.com\",\"contactnumber\":\"07834999957\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAlPu9BhAjEiwA5NDSA06CfnkxSzNXuZ_7VQO24G91w2_D5M_PY25KIe6I_YaiAF6tEw8pvxoC0i4QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6HWn6yl7TGdNd836Pjry4trchjSoUAPe-833gxGw80cir86BR4zZP7NK8whNhTb3cPeODDjmUQu8s5JpwWUZkP7yZYKbLh2Va0yi4DpygcO18Dw0Csym7l91mzfn8uYrT3PqQgq9y5eQAtrzHsYXfj3Ao_Xy-sDKQzl8j4Xg-3RLQU510QnfeJwjDtSgvt8lxIXv3HbaG_fz0LIjxKSZA7ASKalQK6sA3JPmXYOauXzSeucFLXXSGY6Wu0YRDNTv1ie3UQY2CUJF458JfgshWZI6CLihOExmscgnnnEMrvaCveZPBG7XOQfzoaz6nMicI5ExaOlA5erWCLh1icqI9CsubTOYAOq79Ms_3bJJxLAz7x_d2dcnYz9PImUyQUvCMEBuZ1MJNK-6P3j6p4bi4pBE8uRMyaK4xazOoR95N0lpWc136Q2Ba9fKW12pzoIGofkTdKdkEXU4E0RgZp3UPN8fg6VmrLe9Lz-bjS51emE9cnbE9bm2j5wZDcE3neL8MlqhF_2FUTWxctkb5A8PXRXUqEeOxjVxfT7KHMyeZfx03XmfxlLve6BvlIAlubRVma7dvLaand1J8WQMJmE8QmWqCq2bHGEWzNGeS76_MI6YxztmKX9TwLgqQrNIk7UeuSGYySNkX_8QegZaQLJQbJbu29KqKWpAxNZ78q88IIo9y7eQiGvdW7mBKTXVya2LGsWYMPts4UODBhvrlTmLgFssb1egn-oHzn5vrPuukaVhVkmWlVBcF2OwQYG545NZkdngXL_TVa6OdFjvpBslIp5WtmunR3mrn1fYHmNK_aqwQaCArWcfNuwasnIPAXD1VfkP9LPNf3t9Sqp9P8TFkKuZjB-emIJ8XeT-MPcmes1WsEnWjKluOKUCKk-kwc6nMWQK76NoNx4D1qhmoBNK86sfudO-46cufPOm9_DGFzMBrR-oecwWj8JfCNX6QOcde8L1WshslNycDYJ-b4KOyxVr9mljzB_InhvG4JLuQguJNoIFrlMRFpW88SSXLO9ontQDXpRD2-jJa8j6MmV1h8vISAyjcBRZksze5ON8XlBlGJHhrL2xjoRJvXtKE38B7q-lvKxrnmbJ1xPklbiIC-dCV0-cRAaMNjbi74FvUYrjjt4Z8RFYdgxsHQSd4tOTZ1Neh230UonUshfmJh9wuyLJnebQEjzQUBXHNqIaVF76cbdkVUfeSOe-w03EUJLG59RLAh7BUoxyZJVx3zJ7SYdRshtlEz4EW6AWCNFRNPuncLjbNa43b_2tCqG8TWfI9uQKDVRtgXHl3eCjjh7ynu_KwtMXTH6R-HkA13EicW5zfdKsYdPMs3_gMeszjkSU6zDxnEM0oyORxpHnyD25JebuNK2s0rO3PfnlirIqoFJCOP_I9VO1LDXE0eCBiLERXKJJuCb_QQL0fdxEL1OOjw1DG_zuPysYdkzYL8rGTJ3ZeM3rg7kPfa635ZjzuXyFr_RkQxzQrrx2Kd6hlxoiReRyACsKdx5EQNACU0KcHOgpQtnJ-5Z9Gt26O4yQIwG7X5KW6-1Z7ijrDPUZwLZuSBuaenMxWK49foNNHPDMLOoMW5am1ghpwecmQAG2SF4sNS0dOoTrSfRpoYdfiwP3Y5pBiCEZ-fk2Xc7HObBl_3cN7TdTknIJInuCqfzraVLlhAm_ibusmQwPE90x36FDVS6iKKIBmIBmsPy6BYvb6C5WGBhUVstb3LmpbNxQq9nz-cb_TK_ZyT9Gd30zTrFTw7yFAUHvE05xvuyQwWbBgNw6vNNM3k8OxHk_hXzpBPrRT8VQKKWVPDRBmp3X5NJviO8pq-Y7cztP7CcpKtZz6r80Bp_8S5kEOFpiw_g-yBXCqBpZyagSetDBGhbcG5eIpN4M3pW0XCpdXaqKytxt10ZUSvAU9p2EzrUBFuNNZGflGxeyFPK3PCjoalTWlWwa9x7dMrXi2gtZgWOqMze0LqPUfVPNq84H6LfHcJ8TTxLCiypSgvtyvhjQC-45H4PTPy6pU2Qg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67bf0e945c4544-37933573','','','2025-02-26 12:52:57','2025-02-26 12:52:57','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42396',0,'cd-form-entry','',0),(42397,0,'2025-02-27 12:03:42','2025-02-27 12:03:42','{\"firstname\":\"Stefan\",\"lastname\":\"Tilinca\",\"email\":\"tilincastefan@gmail.com\",\"contactnumber\":\"07404141342\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAt4C-BhBcEiwA8Kp0CXBL6S_2CdfU0d520ABYxAQc2aR403jFmpOHiM29g4EEgOu-EhRq_xoCctEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA69padez3SNo325bQtvPYYlPej3slHsLAo7S2NYuo3yCdn8JIhxXxZy3aQyBeMZnjVwGpiPvYBq7OKLjOtOo9VJipl2xTRyH2h2nJyO_lW6ya0EIHLfBcl_WxzN06Q6iqffdpkMxmro7ZrMnqA8jTHgP_BgIK3W7Q1g__HoJXSmCvSCHNEaWwzMhx5WoMMYHpugTSi_jdM-BS0nLfwWdw65lb5pf2Yz8AZjdb6ciRSUA34niex-yUDt9MSUeqkmQLHANwB_KX0S-Oqh0jDsPnnQFFW8zqyda6IXmdFgkF4MYgPUp9ua1bNUhJLVI0iluXyEyxCVMwcxT6sPwNq16vpwRTkak5dQAsnYocmVZoeMtBtDjYDSOFfkbu7qUQiLEIHzWc9g22ROkydgzYwKbrQV0ZTUmgDdanDYLKcHOcujm43P-OSKY5RkBHCYGUlIr6zlIuvXdZE6GipY9_R6zWBHeo2uo1aOTLfJ7kWVIMDZloljDZjmX7HG6RrZYmzF2nwe-Tqvuml7A-dgeTpyj-rn9RhhD9uWOj3j3wKs7UIFUS5rGvLmSKrWETVXZBYQbytjIUPg6msGDsk2Brhk-K5mGFDr5DqJWacflZynrYnGOaDVYRqU1NQdIeN-kmB6aUPPO0bD-DXWtp58-1D0GCf3T_G0gBb1xHAD6xyUb5-WIh0DiBkKa4N2Ff9VFPnf7g_EWqT-Fc9ONdTqOM4aUMHXMFSpT3vYlP8dUO36ya4aJYywxgMefnnvaGzFx1D-F8c7vdpsMoNWJb8RB44DPCUPgXJp_Dh7Q8weTwZgGORhKzjn50fPVQrpjdwI0cNwaljwhoKYN9WJpSoRb0RwHI6m1ALCsqL048EI5j7eUeIb2Zo1y3neudcLI3w3slBJBs42KcGJRaz1qVvy5qJBoL6qSDOW6ztRfQjYbLHzYCPBxKFPohUYnU7L7P5FUG7Ql8pLbeV0sFNna0414OPJWNKHLDITKpkalDWsrIUshYZ2qPE3XSTA76dClX5fs1z1Xcl3y_Xfeb4YM0IN3Ya7l-7yGG646q-Kkx-z0tgGut9m-OyP_h9vyBvi6iPJpOvQFmKqWkzdE8BiRPNsqlDlYWLWUOecjnSjmYq3Wjck4q1Hjk97_ze8RJobOIoU7Yte2bsGnV2xRI0BGJ3_7SscXiKoWyTuC8G8crxu1zUOaffbZBBukVu6xSbZK3h5zilY41Qx0cA15q_0-PUaGX48wblEQfN9Yoweqn8MOJhDFuTc-h8VcVYbZWkj1S8RLLwuClMTV6MeyoJC7VBuGkM74Pkm3T43Q5uPyPYCiq_NAQVtvy3beG3dIlF2kKPVI86AZMQ3pVCkHqTC0egWD8j04TlcrUs6nUWeaSr1oSdRLIKZMJ_HhybwVIumkmtxQQEk-_FyPXwaLnDq_xyZYyhoBOdzWsGww54nhoIu6T05sbYPYQLegNZb1YxWl8vdyCy07qg-CWc_WrAc_qiOPNWCAEEZwqVoQSs7JFzp4IZkHXkKEcxHPqPXHJ3aZI4wmCog3uEpTBkkvcuvs7_QPtcrVlPI2Dc5gj8Z4iJ12kc7pNISiWmNfJXEiIkrjrz87jj5djQ5EmzzvzQmhqQSmfOSInbNIMud9eGL2iizF4xeeHhF5UTVZB8O48yCpZuZgQFacykuXTmg51H-s14vSTLQtpzU5l-S0HlhNp3fqHYqjRqMpROjV8Z5jBBS7KH8P-JnTSfy5UIvTPv4GwcFOocb_bR1_3iG12Pv_Xjt1WnWicNjSCY5pCvQ3wuL6zu1cg844xJ2MnCCxw7UiVBLqiFo3X6oASINqKx1uH1UyjgjzIEushbyJBmQ5HFzBoh8VHS0tSS7gz5IhX5jo3bbfInAjBireEHIb8hGJaz6T0OFUe3rjNM6z9Da-g6sGzmgPeR8yX5Bs6pOX-r6l4iwPNj2Uz0-y_fXNWD5TPoTMrfqAcsDzXqgQ5db814lGu0sp6UcuylS9L3rJYarvLdNs85_sLhxfNCd8LKeL2_HVXRVRJVRto7rxURugBNGdbcwQMPQCbjc2dynOP1RPtV36tLL3pekmohaF-7PG88FikExCl2Z1qOVuGFZFcGfEhPhwYWiIhP0qCpO\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c05491064e15-33031939','','','2025-02-27 12:03:42','2025-02-27 12:03:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42397',0,'cd-form-entry','',0),(42398,0,'2025-02-27 12:04:24','0000-00-00 00:00:00','{\"email\":\"tilincastefan@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"3\",\"currentpostcode\":\"Hr1 1Hr\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAt4C-BhBcEiwA8Kp0CXBL6S_2CdfU0d520ABYxAQc2aR403jFmpOHiM29g4EEgOu-EhRq_xoCctEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA72F0U87-Sulv9R5JZomUq-pluFRewctcIyyTJ3oxoTeFEckDIcNVK7H4MyC2jSaUwAWs2Qi83u9naRp7Bf5YwWzuTUsdLeWO_6OsCmWuVZEM-1kH8k81AKFWy0ZR6uiZn8uxCNj44gYr9wYi__MxnmC8-xcre_OEjFxes6nyPOXlmWWiU8ffiS9gUQx8GrkCMz7lgSjrm43BRF3un1Hi-XW0nv7B5wOAZbA3GK1opXTU2zaT6bZSAEUn1A1hL4cXMUVkTim7eZifqJj7o7lY_RPTvuXRPJNvawso8wizHHwuhMtN0HUc39JaCFWJYwyPNB6ef279HiFs63yxlYycdtELUzn4GEHKxxQKU66ODbAQTV1D7OOU4Uvrh1o-_8qculUGDFhJcBZ3R6xYwhK_McZCZRVLapaGIollQhLns7HrWGgrhR-gxFxkiCEd5v1v3aTTf5WTWtb1AQwXE1IRLTbu3Lg4iFV69oEp6LcYD_fJtVcG1FbvqJwbpW2CfqdavQthIn9uRf8QcsuIT3pIdmh7q90cXo3Igzmhdw6Wry6Ap_lbe6riOhoiqCxGWY4AZPtl_H0ycP2_rreqPnZwlN0_lYDYzLYH_QHL5wzPSiAoWD3ITI7ZwwoFWg4Luhb5N8PuX30TMhrJnONuvioy0ORJx9Qsdlw5RjLfPPAhdr84IkvqidRueR5OWj-wBPr7r-JEldGtlzmybS2JXyGLkg0Hmi0nS59nvVKxlb8VNJkHvKIbA5MxRNhOWIeCpvH953975F87yPBxzaaksym3tZclNl-vZkFKkKe9z6TQx1zzAK83-vuOcLkgLCBGIbyb3wAh3HKfyf3GoTJirzjUBsd2DIbQZ1a0FjMkfYwNFnWWQBH3GAJN5-JO42wSQZW0dsV7RYUIbADRjFgUszvW1pRFxR6y5PMtxL444kqTFdQAcudWRzLW5bIuUpxUS3ou1Vd1fbwByKla73i_Mz5R9FUV48SK46dp83wbKtADYEkHjmn7k-66Uc26WdJtrgKhRlvsndJKqnoEle6vGWSu6ZLp0StSAw7VbPnk0_C-Sk2e0awq80O-sNttfBKxBZjHFd2dC6PhyabZWDbGc0ahpfxOTGO5WkkCYoKWNuHv4kQYiYrIzgrBJ6Fhtr3Xywi10Ku6vdr9jWYzXPlvUIpecZnQCBi2djTveu43tbrNSRCxM6GjnR-92jI75Q9H_ddfA2vmbogMTvLvMhX4glzQ7BgbR1g_bH9ZAPGtJqMM_86KBL3uVJv_25f7K7XsSymnxN9Q8jl7yoo39L12iMROOZaL2fqKTXXo7Nq90kL8c_q-frFR1pQd_yprjsVJZnW7nH4RUNBdL0fgBDqN-BU2TfxVntl75_qM04j0h9D6mK9TacWYEmKI4MhaFR3B2tOqMgjEVsFemIhfE-Tn19dvZBMlxMH4nuCr2OAF8jmOUZWqnrMqp_JdsvzigZ_xXA7JaGWBh-99C1LVZfwsNILw-OOjAi6yjqWCGqKtYjr2vDixZazfXIs69e2y7b7HerBXYLnMXN4zph0NMm4cFqD9ZYf4Paon60dHpkbwMYoSwsyIE_2roeBL32ryP0aH5yK-WfAD5SOmGQWSFirYjIGLm1pwI8jFBfneKUlIsZD_1h1knT09vsNlH75FqNLXy-HowhH8VLv5VnI6LCoKT8vPagilbe2BTtIgJu-P8x3mYqI6BM7d66QglTXJenvCCucQpqTrbpufHuMirBe95GfWo6amWSjp3vWD5Oa9z-_wffAmqYu6nYBTZk6zu1YLv8EfJDgF2lrJB2SMCVIx8CBa0FglfV8sMrSZqg_5upZd9aqcwUhsUu6kut1Yp6Y543S9PE87voKIf3Uk9dio1t0dvtUtmLqPzKmj-l_tlR6-DeDDckkQNZM0BRziJPaGB9oPKwz37lWUT8-Ko7ZZm5FWKs6tg3WlFX1txq_1wrNE2vvQLHMDXCqyjvmWSB4st40_UXs3zJHuCiNQ1Vrmss50zu2gOK_hR2gZjjZnwqahwcPTv0b0mf7emf7a_JhOq5Qz9e-M2VJuMpa-7mbK1hLge3AkF6R7NX7jqJGYxHZmKnevbRxHt9xLnGKYD5kX8rP_u5LnsV0nOitRdIAf2b_NUn1DPBQw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67c054c895dc52-60798325','','','2025-02-27 12:04:24','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42398',0,'cd-form-entry','',0),(42399,0,'2025-02-27 14:29:55','2025-02-27 14:29:55','{\"firstname\":\"Claire\",\"lastname\":\"Gaskin\",\"email\":\"claire.muscutt@yahoo.co.uk\",\"contactnumber\":\"07595178031\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAt4C-BhBcEiwA8Kp0Cci1MlC5V3udElwDnrNFxyk8qjy9HjLnX1bxkm8wBvDhKepSz50hAxoCOdkQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5TF0pmz1R9q3rcnRGvEQ0uq7gZFvRvgouqGaxhNV_lh1dzACmGwClMu4iouoyhcFy9jeYfoOkosfciyUpqfGw7NhVDoDN_TfzIGMMfzrcu9gEv4ifB6QC0Jt9ty8vHCD7CrrOLtlMB-rEAM8i4hyyxWuZqrEFAxc_5KMllqc_Aau8QWTXaLZZCWQKoBJKJjMGScsqwMsbxUWukWBmmp9-F_Nao4EFhbCIToSj-BOKJVBg-0ckwr6JeKvA7lat0faLwVzlUNBBvDekdfLFfQhqX09luK-Jwg8Ch1MyAjB9bDYKKU2tumwQxToGshY0xC9PB_hZp21XfEP1Qm0uWsL1YRwuU_fknunlBHACA34hM4CY78AvibsNJBqXYf-XbP0NElRC6BA9vlXFjcq8__g0c2pBIJ_jJ0XKXj0G30YMn6-2nRu8bHNfZmZSn3Y7kaVigiir5MvrTfjexpqGUmH6pBccyGjQgyHnt9iYNkcPje-B9r3eLIE7xRg7geTFVG1bctd5BRcm7m2tkNdVwdPMMweZyA5DFlKHiZQEa3iYJiWMn-_7c_e5s_PXvcN9LQiFyZgiqwHwwGeiN51h0cUTT-5QAtODQQQcpeERviJSm-ovdwwOceqvZX1QdhRQTbH3Wl-PiCytT-j8JwBYmG0XELvgQf_P8lWgYq92avBNstl7nxZ3GgjlDu9QmnzsQFajuD2kgEUXvWtQlp_KK175OxbYs4T6j2td8TQbiUwMSe14TTcm468voobTc3zfVC91uZdOEV7Qw2Lqr1BIhkl5cENbEt0w3oUSmJPpm7rrVb-jwAdCSGIMzwYdjvmptMouiys7gBBb9ga88pBxNOFgt7IBX_EgApcwYELZauKgG3z_iLF9VvHqOuV53xVT2vw8D-OYozctmv6WcT-IxAfb9ppRFTvzWsCRBbSxznMjarVCTE8KsxFbvFoIBJf2NL_NjQ2nuF98kqgz9OYfIBEzZbekXE9uYDrQb8ijbkact4_boF_bssQ4-_pnoSnIlmHOGTTihXmxa8CzGhRK-HmNaKKgrMFrQsQpPNo9IsGzgWdOfnGXnjXOhdlEqpsKwaDKC8II1zQ83l0jCejTfxUJZBLaBvH0O9n0qRVL6xlsLw1jpGpz2Mo1A7LljLM6MMV7o7U0J41DcFQyU0MKB0Qaou1v7jjXoiP0ycuP8PyJ6ION--6ZdSn_CLPfetyQ7PFbeS0oMPkyKZNS5Y-XSraniLthBl6tLVoXtSiNzUMj0U2AuuoYUJiL4FoSYRtYlZDCWqVOMQSmAl1Iyzv1SMpgIrTH8ZmHQk7464nqNVNJcih-wv_rVNfMsWVSPaow1LyRikily9eq6oknNH1pOKYkcISQ-MoGJaSAsZs8QtZujEo4-PvNcd7URSgVVmBaTos3M97MZx0D_n_sWNuGpLShYA7rRNijqN2RH5bfOcZvHYKNdPrfTWddrLt_a6UjaUR3f3Gz90B8zwehCwJHPQj8D12sv31CeJgyJGjSFanGkgnOjhAaPAqT2cDWQZ8eSnhsOwRDXjg-3BWxnizyFDnmM4rBx2YEY1Y9SpGRlJh3Ul5z2rR3hVQDKiSXi6Zx_lwwLXSmKA2Dl-16sHhlA-G1VA4y4LC1Aql00SnhZoI2xsaJvX2fhptCmbPZDjMcW6zNLE4zvjGQOSGfjaK8AL1B0JWsww536Newz5nElwuEjSRecFFsAL9SbIvLo-pgUJ3bmixOdN1kKLupSGB7pQ4DEe87IzlERKO7LqAXh1km29toefmW3bZH5fTDAT_G0nY5uW15wGCtE2FB9bl1fEvWmT-V1-9m8pq8WQWvS3u3Y_uFfG7Urqv3fA0vnHNOXriLGyQ9TokxeGraGJtliSRCDV7occSp2FlcAKKNU7V_6-RUUyNxf72rahM9bmO8OXxJcXbrjIQl9oUo53JGdNMKoMyzRYx6RKE_dgd1S4xEM91eos4wazD4kZkS0nXIfhbsiErErIMuNvWscP_pbXiVTV7Kefw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c0765e29ed17-45827307','','','2025-02-27 14:29:55','2025-02-27 14:29:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42399',0,'cd-form-entry','',0),(42400,0,'2025-02-27 15:57:20','2025-02-27 15:57:20','{\"firstname\":\"Natalia\",\"lastname\":\"Donoghue\",\"email\":\"londrina-nat@hotmail.co.uk\",\"contactnumber\":\"07484678048\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sYpis1CA_OF65jI25FgHOFm&amp;gclid=EAIaIQobChMIl_PI1JvkiwMVoaRQBh1fTh-BEAAYASAAEgLw5vD_BwE\",\"recaptcha_token\":\"03AFcWeA4XHiTlL8Z0fjQ-oIGCu5hXpHkC8s812D2w5Nbe7x52cPmtBGzeGGtlFG6qc99dEoAhZELOHKI71kGw7CPUBzf34wchaUcgN5acagx8NsPAzRQXtL3p2GmgVnrgMsgiWPxhU_K_YKmfeaPwHObesfNTa3d5lROz6-R3kdG7cxlzX3uZJD_HE3RhKBTPn11ZhdpHYacMlPXZrs9vIfyrJnnCskaafWKwe0g16BYkzE4z8rY76Kuamb4SDFBguqXaMLSgrAtxEa2fW8-gdJCuTRXbDuvQITjcbpvxY6p1qzqnb7x-4p8wcrWBHPc_sofiiWs_bCRjYzTAC72NxTrQHrlXDZwg1Kfgmu0OunS-kH_zFqZ_kGx9dJcwCIo4bCY-HlxbcAj-zcALnapYD0AYP3qjazPmgB8gE4KcljW5SXtCnLxTWJBYjzImr7qiIFYLkJxidtp0vs5TAXzvVL8gISCp_Sniyk_REAeeEb0dJD_FME7WLfQQKzp1fKCqvW6stqwMrNt4eOyeXfe84pdbRETJK3aUM1MMxCcMyOsVrfQ4r3P4YB0Zcuow1i1d562U9zHBfKTC6XUK8E9F5x03mbefYHXpdibjblokr4f7wnoLGkILH1A0NsJIzw3LaXNtYPAP0p8c6NR9PxMU0lDeuqWwlUwCWN75Txolf2boBL0RbRFNJPt504hNYJRdsMdRP_C34TY7t5q-_xtNm0w4d8ZFaeCwcQBzMgdBAZFyZAjleFamRe5tMeCFIIVP3Vw07cH1iDlUSt37LZaCk-14UOluUGQI-Kv2UfXPLtsEIwgY98xooOwwWjmn5xfhv4HlKhWcC2vGkuNac0hq--mp9VS4rVHe2wiQdHrseab7npSdIdfIYQ_XWyrNMAp6rrPG7xyjVtDysonsUS4ve_j12g6T7OQ4Wjfw2DgCVEGWkX2_JrT-2eucA_f9aIt5kqY16O0cKJu17oDvQuRzTJuJzKBEzwNQLWIOorRiYI_YxRvrxDIjPd4RC7l6HRDHubiOXtFP9-RcW3KIg4jsa1jpW4gER3jZxtWSD6MQhg8za-R901ogPUgRoo_qDy4TuiP5SmTS4vfgBs6pLWfUiqWpX1YoYR4Y6cTjQp8qAaURdUCH1v_bI1YUVU4Q9TTdYPW7Ep0GNtduZag0sBKMbqgDJdg3PHeu-Z0ONd5ZCLmOoAcitBqWGAqCn6p0xEYAk5h0fVBDbOM3sXbhsLI19SCVh6Mz27NtpB4IDWvCAnS_lzpFf6CnZqxv_u79g_mvDxgrvKItFObDsgrdDO6O2yQ6pY9hlMZkuOKiTScK16NqnXRECI4Ln-5z4IZuAYAf71vVXQcrnmAfiUr0kEdx2EKmFCcCS7R-60KJ1lCvPkf08VE1rqqAZ7vbVZO3VpEdzE9QXXiwKq6xtj37bd9gSmtEkzkV6LXQgHLkV-SQJPPrNMyQgUiI46VjBeqo_7aontVr5l4xuX3e88-NIVRykuigQayJ935maaJCEWb5bF8xLvfreGbVrlRTwrHg87KTN6EHyivpWrSz0nJQtBnT6L_0J7tcg_jU4O-QWIdJYKUdXRtw-BiDZEOuk-LUJMgXkMdpxcCcMuAwdoYJbC9TDwa6x2rAbqq6QfIax9N2zTbzqnekgMAhLxHi4QX3UHnC7VVSZ57yf60L9_Zcsf4CcmJ51s1HpRvTIsyAHQ3m3hqe1slqIFPI1WsCNN9K0F0oODIdaJP1Hw8BxMOCvvLhdJvp8gToEWA9ewl1h8MY9fhTgAKBZIpdprfsuiHWr28KHrOAvHjutgKnAHn_FqW17vucQq3tYnL41AbYF63uQGmIEWgvWD4x53mpZu1vsWBLKDhoq284GnpA5UYfSotTo-L4sqyoVgFrD3YDP8GyBQUfkC935VoEYRPfVO_wE7PPdFel5X4tvuX7Sr8a2Oq6SuXc9rlWuvxFY4LeYX-zZhxwrYktHLZeFBoe3RMQfZ2vU6zLqJRRy9kZe12LB8jljrjV-sfvQhALClyw1MfCnjO5QrDPnkh2zXUXD0_CmUJdv6g8LNjjlMaiqmyXzIfNPYOTpDi-Ujna2jkX8jopunljHhZwiV8cEFMcmYK47jmI_-5iNdRkfOgPuH5h_a0S7dCZSqBwGb4eNA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c08b49008ec2-31685537','','','2025-02-27 15:57:20','2025-02-27 15:57:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42400',0,'cd-form-entry','',0),(42401,0,'2025-02-27 19:45:13','2025-02-27 19:45:13','{\"firstname\":\"Ray\",\"lastname\":\"Dubock\",\"email\":\"info@rdmassagetherapy.co.uk\",\"contactnumber\":\"07715387015\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vePTRV_wOW0k2wHuCGVzUSH&amp;gclid=CjwKCAiAt4C-BhBcEiwA8Kp0CTKsSXgDBQ-OofLP4U6Cw12Ky6y2D-jdAO7VQrToXnPO5IQONRsxFRoC_QYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5eezClJH6zx2DocXVnXergj234mP0iDHyxVAusUkzsRgLoe0Wv7o_v2xT8SlfLVO9w6YaH9UzLkfKAoNPoGuecK70YBUAJBg0_EpfPPfaKUMMV9chIZjbrADxhz2EwCoBncdlCh6lS9jlBrwGAT-I4UA__R2BxvAKf-aE1PcqH-d0hJA-JqC6Y_cBO2RObuw2VOsN0AtGS4Ekdpm1JYoEVavJ7HlPjXFa3ivqIx565_zQJLyZ3P7MAadTcnl4KLHyJfkHQqnsVw6IBZ8wZ3EL4vrfNOpLFEscJhpS_9W9cdW5mFOl2mKagz7ENOdSuMz0u2VcEXuRdPH9bdGRHYPbyae5XpcgPUbECy7noDG9TkUjFr6Ch-nRjBBYMxBTfLWQ_ANnqKOsN-xww8KT42n6lNsWXm7K9C5389IMUKBhlNpVOH3Fep0m2fD0JU1QDFySl3VGnaeA2nFlzcx0KIgBwK9BsUKQjhaHNsTpt9YHBwr-8ZwQcw7DeyB8xCJYbdKIX1NQIfvtwRl_61qUjBGey--M0pbuDbvQ--8QPuRgT_hqdta_Zb6aDGSYaiUEQUsVrZEajMEmC8ki51G6w5ZEiphv3VGSbGAoNeREmTiPvHUJOsKtkSfd9GVB98ejM0DO0KqHpfNzCQ3lhCtKwUsQXNKwDpEGnn7ft7AMOk7QDnEI7bVFrtquloTQ1VYRgy8OBEolbe3YPfG6j2019IsLyX3D9_tsfQ4cUWzccuF0YlEM9gN3-qZ0DQ2hS8P9wd-DGbRI4W3dJ-2w9IyNPET0TkQ7ahclk7oet0hf0_QRgM8qhlEdnrsIa8Sp9QMLHnDzScpZXz20IDdwkgNkKXmvbCdzcG8X0AfO69N5aMd5acZFlf-eox7gjJhErLArH2PO6J25uynDCpQ5blZP2jMb9Bay4rkku64IhjobiazLMqAoX-QPNgbt-Mp2vyBGuFX4ZPUyN1Mkl5Mo85iN9DNIHg7VG4egdgASUwjFl4kkSMe1AVIZlnRyYfJ_IHabjXR2Kjk_AdCAURfS1erOa2zQykT1jJhz0mUW-86vt7bkOdE4W2lXqz4zvr3VTAmIIWcqfvKt0-k11rB5CbemRx1cb7ebKaUSWoRc3jN70_N1XSZ9mlVjTXVLJIqrmEH38EImvbr_Vsbdf06-1V67i6_Uv0RASXHK32HUbjzdi2sC16svVNEK5MY9BtKXFMCKoXCelg6cEvtV7p_Pct4AtvxJzztcPZ9_hReOJa8k5zQuuGx69nguKVSu6AdbOb-0kVtaee-DcF2sE6Ob-1yc0vipC8ACT_uNQGaWQ78pf6y_OpIdSoF2ccwiv6DgTuuM72lePmdtqdTFprR6JEkV4TgzYFYyhuaIGjoOYewQGXTUw6VH0_r95CgMnFINd77KMq4LwwnpAG79ajZ8kUfZ1y7xAf-twF_wtoduReLBQi96uefMdyICzYEQKSRCSt1kAQ1A0RDCK5sxAvDosf7edT39UyncLSvEJUkNm5-fNsY4HFPeNiF-r6FwKLdG096vC21NG788m0bbheAnWN6Dr0L1QxEgIbxpOMI9DKRO6STro6RfFNhoZUY3bqILp8UblnTktuqAkVgJn-b6QURz-jsJL17209u835LGYF0-UkHOiT3zAWeREEazxEpzBD1EiTXGs6gR1P_wnR9k3RAdpiPD7QR6esX4lm8yeVJvLIKRLgqJrSvjHVylxZtKa72YU4leTskHt8KPEt1LDlZMRxOR_b3DSUNrBAcHUhYDjwpw3A3iLS7dtOsLHVdfVGJYkvVXaQlyyf5ZY682cx_t56_RQk9KoSHFMrjNSkVVniOLaEGzsCzesUg_U_Mq-bWvvO-z2spFY0NvU8Lx7EcjhE1JOflevFbIvsAOAT48cz6K9arGZRrSjRQ8k08D65pOMUc5ucNXjEebHg1IJHwoaPG6jwv1qg2iTRGgTcpnqo849ejpGIxfx6bMwF8cTdG1rCTaPH-NSSOzg817YZRtSvzHQ7JRhAfibYqIkwZ6eYNRquiK2iLmPEBmDKV-mwLAmeqb1ivXRifprBWGGqhgPGrUsNdrtf17t-N6Eauj9RYttU1WgztlC2_E212Cy09hJIDn7Tg3iV_0GSQtWgwI3-Fii6dyZYw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c0c0aef27439-45630830','','','2025-02-27 19:45:13','2025-02-27 19:45:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42401',0,'cd-form-entry','',0),(42402,0,'2025-02-27 22:36:22','2025-02-27 22:36:22','{\"firstname\":\"Maria\",\"lastname\":\"Kenesei\",\"email\":\"marcsi.kenesei@gmail.com\",\"contactnumber\":\"0032485837030\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/find-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA591xiwFWpEzUN3Plz6Ia8-v0QIC9d5h1khoWsIsClgpM6ukvlFVpkLuXo4ore4kJrzWdtdanUvmlHqdDxlA5bjMJXoAIJR7E1nDDSZwHGkRuJmKoLRMeRmwGNuCis7DzYoi6o5eCazChcc9uP5k5kMsAhhzSuI3RkOEelQv1r6zuULo2CmR8UxhVnd6GmrICQrQGeOa3OfeINErLwgj3HHWxaVu0V28lRT4UiaM99DEYG4WqY6ccFWiilR9TcqUtO0rUSv-0EJFMHTyaABK_vNjjL7lxYvnO9sQUYOus-xpwTmWFlvTXkX7pZ3UOdwoUwUc-dP2BKzVHKfYEGzlW9zfTlRci2XWMo6yiWKzQ3ktLujRQvrGOzGo29UpGY2q5Fb8GhGAA3PpnKDyyQm5C6s-oXj5ZksP6JVaWEisoSDQhFmcYoM-BASOT09yvOOAT1nySd_Rlw5iKf1KccNxlaCM6SSWtthofh9kmFppZckBno43nLFitA28g9AQA6XFPAcFeZnKKHn0Izlm_o72NyHJYCZq7OpsFP-VkPWNOPK9EJaQRIzyM2Jm_gMK8RCXr9oKYXFUz_fPYr0Qr-NEn-ehEY4dCiARmlHf6ImkVfzyBh20KGtYrinuqgqMG-TuNVg2PpHFTDxTTHqInkVf7TPv3AbGPifwIG_34mjENktl50Av7NMrmG4Vpvh-e-plIsTjqBFr_GLTvzW08aP6tQuvq94uIy8hO7oUvPjlaauk5RZXrl9PWM5v1_ElYWTK8iwGHSVaOQflZbitHIRb-mpnBm_XTfIJkb8vr65LGOcJri2F9KiBvTtsI1D-ADpiVMNLaoe-c9dT9qiILeDm5_ASGMH6Ju8jN-6fgaIE_Fb-H86_367D4oEIW-saBQkgXUZkMKfZY1jHRiL-B8eYTiOJ7BZXVNp1c8i2WZ8TRJzOsoZK8L9K5Y_bBLH6abLnUEG5CY4hKb5nX1Yb3o1_v9Yy2FZaJiZe6415xN4sCqL1u3NRAwpZTYEMzR2VCn3cgsaOpxyeH3qGPfAxMK_khtu6zPRbNabog8QejZ2tHSWRrknA95TkztDjYM8tcTOgk0cqyVCdSdYEud6MmixG7J5FHdX1numXPTM9K4TU1RbWHlQPkff3Gi2ovA4wktEVWZgKGkCAVhCCZx7an7nFfD65k93JnRdvhwdp2qytq0G0oXwMTXJsWSSBwwm6B4Qv0CTGDcSM5V_0h0FNVaXxQ2MyrJD1zbkG0Y7tTvNwO9BAAKFlY9OYTuPXV70aJR8Ohrxe2MO0bjGgYCd8q0qHNX4ub0MrNSYN22kwpsguR9ZtBAD2JmWhr9ll4STKbd7bIesefBXs75EAx_OkkisivKfz-3FhMTN_DMtwLEd64iyo2wc058uZD9iR6gTJxiEtrmtP02NphlNDu2zvMwdxvc_hRedANt68h4CH0KFXYwBMkCvT5ZFM6_zF2QttEvcmiCMvuDphllfyoVeyBQatDvBd9UemDJ3JLKvfo-PUjt62TGE8vmUVQKKY9x8G92k-aiOe5eurf-nxLLMjWyComY6CmnpF8eild-DzRUSzvNDiq7lQBYz5nXVOm-n7B9aCkzrcofYM6bUTpgSYoYWJ_wyvKugfeMbynG5jpczlqtiS6-S-ErBxMZiFPzNy2ZhcyTrpSE-gzeibOLz2GNtyQwIrR8IRnf8omRjFT2Ceid5KnsQ8KI6JOE-v20h1mBV4K3l8iodVd_hLZDK1r8qkb9puNzkp8IqVd-1kQiE_kYupEcfJQngdSmU81NtxCGp9ddvyYR0O4rcQ5FVKxCITKv6vLu-4J4jdb9XMjLHC3i76Gy61ZBpvXjSCFhfFUUjxej-rkXNTyydcZcBKqHJqaqkGTw0okEa7qW3tKwkW1_Y6MebogEoHSTJmJWlE_1dloey6IzQnnPugqCZ-lFAridNpYWqefvgz8EawUE452UeP0jprUfyoUCP3-qmxLTUgaSfD4PHG13dzkjwBO_tg1dI7zM0j1xwDra4-HoBSwSfs7tad7dp9xlxCmHkGfO45kuSUkRxYN35JDIsAhN7xTom3mNx9s0W0W89puYiAGNsfg6M0iTdLlrAQ8svCbE_sR-GJkcV\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c0e8caa2f5a9-65254331','','','2025-02-27 22:36:22','2025-02-27 22:36:22','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42402',0,'cd-form-entry','',0),(42403,0,'2025-02-27 22:37:40','2025-02-27 22:37:40','{\"email\":\"marcsi.kenesei@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"1140\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/find-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA5kUyhDXqbKh9AolFPoj4JSFHtK_63HKQwu_ZrnUwa3xZ3IAD3mNk63MsioSiOOZEOJAsFCjmV69oUF24sbOMiBU4UASwTPpfTCnGqcTZhQGCkvByQ-ttntj-WqaffZGksNL7NSMWeicbh0n830fuIx9CxDkcolOJNs7N7eDjbMp2fEUrXd4tq7ZMU6aEtfmgta2AFxNrivv9PBgxSP0KfyABmU34e0iZtgbxlrTH7LHdwM8dzByXPB03cyfI8KVZnfVeCFcV9ueW_qmgFwpkkFJxDDgGNeXgiTcw3t4WZM_IVP5XaqH-Ok8ldMZzu6nOrRc2XQ6QbZPvpbA9eALOa0qFe76xGCrTtJz1E_I7gOHR8m26lH0FdflMtJ-q5dCtNc2iPrQ7eGLnfsq5eIPhnNrTn4yEk94Y2YBLWvhF7IL9Yznx079vFL3klWFHVf7Y1-t8w_ito8glx_SEW2_5EWd9bGXJ8-rWj4_blwSCjjB8VpByytKI3jcqF3V92HEsrc-ymkAygUXslvuyPm179jdaCFFyPot66bFOsDJnY4Z3ezpaSqee2Tm74RKp26aEzH6tRTgO9lm_cBqOfAToj7w-x_JDCPufTOm9rOCeq5Xd6qf-X-_XflBpHlFoF8HHz103XWmTXhbP6Gyxk5Hnw5LbmgNlejR0xPh_Xw1flvDlawx2O-0pGJS-aO3CPhplpCtZLd7zOKFvkmwF1FiCVCkszOKWg_h4M0zQMtW0pNDCfI_Z_I3YUF8V-BH4vWu_H8aTP2Fn6Ju_qBOIY8kcYOHFob1GB7wxe4pVAlyNsPh9Ha-TVeGhjR4RMZPzcgmU6_G_q3IAqMGR89mP_FJiJMI8Kiv8X9uOvWBl0WfzkdY88rJ7BVtbkyNDdk5Xw_IiFIlBamF70q_964eFIAfEOJ0ubJxOhovGbgItSCVe66UmzCwOlVShI10V5fC6_E1c3zeXbgIgCqgKgUsD4agG82gjBOFVvwMLn6RGQVXk6oHA53WAfrdA7veelhWWzAqW8CJDBn9m3e62yZBfqJK_aM55E6U4On27ve0Pv8QY3agQSiGWDlnZ8QUPvBXJnhk11bI0fSOmBNJqEiGqu8JnfOZuoKLAyvC0Ky1fxhgCgoA2tymVBWnbhLQ2O53yEa_9cBnc10_NfJKMpwmaPPXTpjA8_QSvvOzo3I6kbL8_CIcmQO0Z08Y-Mc0Cclav5a44k-4b80xk4TpVxpyhaRvnDlzfedYPeC2_1Flg4rjCPu3aTeedOtg92Zh_3UU0EXy0WtDxnuGs-WOEwTBPyWlqEkfTWBN6TLEpGBlmXuA1Vpxmar7cCJooov9D7kY1X8-NsV7BXuQ6ra-hATBy6t84-BQeDsfWpSnz6XOm6kAdMeDyXuSnkb3hCIke1wAkAx_ZdOItqXgv9uivAGpQiBpFk0FjFPAsidfFOnDAQ8Wrnot2GXKteyTZSgBWzamRpC_LtZIrmbN5Mf9G3xKCjhRdsM3AJkBvTiy-c9jPbCdWlOJURKXrEu-__qQiMhrmo2H_h3E3sDNs9KVuYFoGChfgBGOrIJoJcDgj0jwPOhq2YHdaKlq2YUmb8EjwZrmc8Nuc1XJ0L4bGHZwDtyDbxsSHLeH514vmiqAtsW9joc5rbGsDSjRVUHq0CovRZAV8L-fAS-CeWjKbl8X4ygG60Nw2mZTzqiAQXvSsENhVoFqfmgpdS3daCgPmZeTtsAKIqCepQ8U1E1F5MsZoNVnLSkVq6663ZgVYEpqQoziJxjGlstvVrvYlKBn5mfMxsiNEw8iO55laEDfr31MHJTfohJ_xaps3SoYe9fiNYlgykF7zNcHrDAy_jsCSE5KDbrLXHQLoxvJnSugkClWTe4vFrLh0aBuV8UCXQGlZ8sF4PRoYGWawI2g9h13pbX__K1sifhN9iotSAZgao3fBsM0OL6DvfYRu0MOE3_3t2I5KY_jrG0DUxQ5n-Mtrdlo4uqtgq074hXup7TpfXVUGoft3P0E-pWzDVAc7YKGustbztMt3hw0-1nGgq69YO3DGquoyZ4a4Uag7qFnoCuFYYMX6edaN0Q4GiJQIV_ZuTqBb_SaK65SZUotAdCvrbmzs5M8SJ-lnFaq75t\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c0e90b01ccc9-63936916','','','2025-02-27 22:37:40','2025-02-27 22:37:40','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42403',0,'cd-form-entry','',0),(42405,0,'2025-02-28 15:11:08','2025-02-28 15:11:08','{\"firstname\":\"Christine\",\"lastname\":\"Edwards\",\"email\":\"kineticsmassagetherapy@gmail.com\",\"contactnumber\":\"07527532771\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAt4C-BhBcEiwA8Kp0Cc6YFk0he-bniFYZcmr1V1Io_2lN9Uo_4Fg4nHzIdWIRHYAR8sgk7hoCgG4QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4a9V-ULWq2uCEUCjUKm0oMScOe3ERaHZssMNa9RayawtEJmQ7tRsWzbPO3Krsh-L25O1FPE6Bqx7tfW9kE6X2vWQpwXGIl3gwydf0BIfu1FAswiweqTzK0HX6XD0arnR-gj5ivzjQCUVWi5gdtEBlfQxFFQTFGYMGnt5nT6jOOMSvtBk0SvmUGsqfR5huApeBBT0ZyNvD8CKC0VdP_i1AsgjdDDAiLbWGe2zd9hJmij3gwvVduAdbBudMOarmVvi-lUg6_CPwAFxkLChy2j_va7w_XnSZnBxjcub_fi8gpwVWqgpUdDOdMIVYu92UPM45l8AtOJB6f2K37EEb_rt98uSb0dNEmLAXWn-0wQHmSKye13geWahXOqMy_EoLgmVq3yBnqzIh9PVRA48bdRKoNUZVHtTyuYhoMYWoKuFh4ex5YieQtyj13ZUEENrQyBYESoLZUkjTQwWETvbiUZPQnvQEE2XYZXcsGvC97PuRzLrIeTdndu9ngl454bBZQ4Grda7Y-m2CiWrEeTOZFw4dNMiFb4i1GMv4M8ulSYuhn3OXvGKk3PWLqV568FvdrJh9d79buEjUAI5I_zKaFUwvm7kTBn9j2iWugvS1iN4ZmenkTTohdWFP7A3fIXxGPRkK3U7YAZ10Rq8CN8h7y7NUwLBLvC2bfKyiW68iI-Ft6nS-iwH2Cg9kQ67OZStpbNI6-YkgJ0kVx0rsiq48sCMVQg-Yh2ib5PljUwakO4HrGyJ7ulOR22FSbPZkPU8CDNWiQwiQydU60Fa8KYvraQ_cpNj890Lx3ekYUSgJ7BC2OStX2lt1DDIAbSqeLInJM0e5cfqAuMpBeNO2j2AE71QeKTi4vG1CrNhqcX9qsAdWeBPqtObwS2qTs5yiYw24bHBIItQ_CFs4fxjWmAmiKnY7dzaAw2QI3vi8o3SMbZz4Fhi6Mm2KA8IbdaIzski1ccEZuMbrVyAPa_Dg2HtBzN5Sv6NWCg6WamqJG5-eMSgur0m1E2sVZxUZTW05OswXhb5jgRKrGS8EORO4Bxq6tRoZ7F52y8FNTgmGTXugLhnRYOlzEndXJAopWUh1_Sz9A46IpRT4OJi4zw_QkBluxHg1UuZSt-tPOhRPCa_-Uylxq5UjjFBMpHw5Vf_YU49aMehgXkqpiJtPCehu5wKdRFu-54_dLeoepNGpsCXTfttZ4dDHy2GyDhXdoxIecICJV2DH8w5a4GSIz2fWmAryyrtvqKytTPgiQshHMYorR9CjH-l7hDGhhaYg3qVIEj46jTdLGFUehAhTWTV4cqF_kJvv3shpTU_DTA7vOQnU1a49QTKSsZ5z-5S478NCgaxmMKrNjl5w3LxP9fgIiqkuu_ukt-flG3MiKsLDxOeZzqgzK13kVaQqDKiofTKJ_O8hTXvlPZuQjapPSwR6uCFNGQPpS4yCVlDDylG8McGcjYx_vlDjpkBe8xOItCRrr5rGfA4BEcYHAU9DAuoDtjg8W0VCUIVya4YZbE3Wl1YMeDHdW5v0tSvSwQli2D4hwTX0yRqMTa0i8pNAMLZOii5mhI3DRHrZZfAJXmQ1JBIsCNpFJNmf0rCVtI1z7nVV8GGfWn8rJZTuWbs3oEb5mAxxMF87MJ9qZHdQ9D_1MmMNBYJKl_vRRDTEpm_bePAJuOSkW3ny1BVrpC4hcJQ9wELEOTxTexTzSr612Ax6VZ6oKCRDFdxTXHJJRFWoANswlammh2LWQpj27iYrVkXxFDHOuf0LvEwoF0rHxJbD860DOYpBKAlhestqpHTDLLhyYrHkUxzx5xzDw_5pXZR8_j9zZYubgS5CUd3K4uC1pccHzNBe5QC7ynFcDJTFDsUXMad7aX-zw7IWN6o1aMV27BrDcGo0H034Strgu-amJZdLpID0E_wBtgiM7AMxDix8nB8CKAk4DK2SODzf5MD670wZvYAdF1ePo9EPeR7F1ZHJFen0HP8h9Ehpet8f_a0R9hJmj3A1_GJZBHQnBQz15ffFEF_hOfrA5K1muqZx67KBBGOm11jw843lf4A-zKcU4m3b2WpbWp1JwmBrSr5By_cN7po-vw9jhpFrluoqbb24BsCK05Wg99uWRgvZlFxDJihy38F_wuiO3\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c1d1fc2dba13-18196772','','','2025-02-28 15:11:08','2025-02-28 15:11:08','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42405',0,'cd-form-entry','',0),(42406,0,'2025-02-28 15:13:03','2025-02-28 15:13:03','{\"email\":\"kineticsmassagetherapy@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"EX22 7UE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAt4C-BhBcEiwA8Kp0Cc6YFk0he-bniFYZcmr1V1Io_2lN9Uo_4Fg4nHzIdWIRHYAR8sgk7hoCgG4QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7WDmzCZB78O91y99hXNyHpcYWFMhLvBgM8XVuO-YKkf8nQ1qN8XwlMvhQ81WcFBWOqQp3E7qVdzeDsoKlvvjDOohIBBn8wIk26lGUpqypvc0WNztyShf4x3_5pfcqExR7uM5iQFkHRNQQS0mASQNlsGSZklRU6xsHcnwDcbohKtaQBEe-yaguxAF9jr9ZsfqY5W5_dWbf3DPhJobHCBrIyhgjaERt4wi29YhxTK_eyprV-XimT9kxvrfk13qGBFqPcDjg7W78HQ4mzIqVEECxS8ToifNYB-vokiVzGJs9bvUVexDlSXuh3YNR0TG8TO4Y6uQIO7_ywvTFVwgMjkRRtZetbuRa7epOXgZPu0GbTUHoME5m6tHajw9uobO212d1WQDO1c8tHFsXNnSgE7ljAnotJEi4kDFE642czCdPmrAtFH6UmLQdU4ibBiw7bZTuPjj9vXOgMSjkDnopQJUTR-mfnfR2GOgq3egntkR2sC_3GWoY_AvowfdyykO4nOOByWrTQar_6koJtEy7ng_1dovoQbo9yI5KbVYaYMC-SFQrScutIjtCFpwK-l6gDQHFwj1AYdq5i6gQmpSW5rEnqVtC8yHZDKv0X3nxxOzjUUXJPeM8OOj9ZruMu2mJJff1BUTPG2LR-fewh1fRtx-9ghFR_aN48DIwUbrBWiJMspjlakZxZSNZblO_MXhIwdjxvuFwpdRsx_8pbnOjBtkrIhqLRxNUBWdjt2At72fsdPa0SgZdSTt1cr2TgEJHS7sol35jpHO7qG8t1wOk5lsNvrcMvtmQwgjKGkZyjFsAyIdwQlks9EWYvO2qGXhkRx9KZFmuqXrRxHK5OnR1nC-kGZzt5qIkBqgwWcq-VmtEDEP0xGs4q30TuWvuNKXqGluHz0_xkp4ve76aZ5B8AFXqo-teSLYUJtlAGlek9MjS0qQZg_psk8DKogAF3G9d7PnVeIAmQeLudPWq9H5NIc7TBzzqlvVpv3NXTm4QOcrqzu14tMTb5dWDIzJvyGTKhyAzbcGqslmv92KoosDBVwbf2dPvth0xFlxAI5XnZzIkV0pB6wYkJcBk58W_jnsVE-A6gzZZyjFSHDN05ijhhFxjulldkdPOWqAxWYEG1YzxK-U7kOAVurqMfY5C4MaYejbxSFAe2-UL6DLTfG1JJwFStkxtDV-ddL586-6EM7103XnSm_T6c8B5yPXInzQS5bXX8D47Yzodh5ORSv6ExdbZikXySE8SKC4_QOOmpJ30zV5wTrh385iEdOKXujBQnvCjLFONivBIpfIrdz4xCHl08fLwcvPXFlKU1xkySzBxZfpSTfqu5MF6WJeaXh6rAaAs5zIfwSX28dmok_BzZ8xrObepQ2Pl83_iQ101lqcoM7P1gzfymVInSzCFJ8BXK0_JsG9u9-oWyoMD-WDUlXbcne15oYb7iRhi5pP-QNQM6KQcq0N2qOsi_loOkxQ6C87cxoIO8W8tqqczoUQTO1C4KEsXC35fmlnnJlNbYDZ6fnR01nBCnp19wnAEh3mffpr-YOnOlu_ik6RUp7a7Z7UXQKY7wcP5Un7w2iige9xAlsOcT5I_nX4GN6rnc9Yt0183oKg1yPKHKuoFgyalUsI-YdhX7kSgA18AvBVFC1KPZ0U8fSqdblXnx4fzF4bgrKJzM55HoohgeI9A2XZiZBYqL8Vw9b6ywtyMubGz43Pel24emRF5JxDy4V1xGsgkMFK_mOYsJQeWBJ28tPRmo9d2lYQsg3RsFHIJkskfJcyuo1JoggOrHNG5jADGL10MV6wm-ivVcqdLPxoeGMtERAw71bJVCOyoqi0dftXQ1V4OqEyoTDGP6QEDhG_KgxyiRfTyLi9N7dAAnqB7_tR4XHOf7p309F0KtE4A7xdaYRGYEZvoUo6XsPRoXvoFzUmuM7E2YKSriggOSPIS0ASGX6Ljq2W9u_Jym5s2moLZpzEQIT8y_XshmRlmpBZhWEOo3Mc80C9SqZRKXMVEZvsPBAAiLPyveLZp9EgowlLz_iSQV3sAKZnf6mAfTRrVZevf3E7g6JJ4oxDSIModsVe44izCxqCq3auq9SUDO3Dy5TOUTFi1quFlweURcz14pMwGXw4Zbk2Jm\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c1d235a81fe8-19595722','','','2025-02-28 15:13:03','2025-02-28 15:13:03','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42406',0,'cd-form-entry','',0),(42407,0,'2025-02-28 15:23:11','2025-02-28 15:23:11','{\"firstname\":\"Christine\",\"lastname\":\"Edwards\",\"email\":\"kineticsmassagetherapy@gmail.com\",\"contactnumber\":\"07527532771\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA2oW-BhC2ARIsADSIAWp_tI7XWB0nW4y_NSKum62aDj_5tJdnFCoqX65Gt_DT4733WlDhrBUaAvDZEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6YJBC9B0Uv0eTozXHLE4TvJkGYMktnzyf3KSwZjfBBJvO20dHLfkcKJvm5N6P9YfCc7WihQFsh2Ac_-hxU_xYpOs7na0u9TF99kgReSQepUppnU1eNqrhr2kaRKdd1J5YzHBmBqn3Y-WOK5fhJbMNt9yZTonf3LH7ygQEV2QgXeW_ZjmdiP_vdoLXwhp-4ZsCeyCgUbFq2rgu0pMFTZXQy-SljsukL51BuBIPfGwraWxW4rrdcf6IvPqqyDopwSc-cMxePPyOjZie4Uljt-xsGpGVIzk3iQlLoYonm_0KvagSTyzF3L3Ao5SRAII7O74MfLV3-3oC1qz85jYBDjNxvfoaCPv_Z6fjNTmj5K6Hj7v-2_BYaTEb3hvIywYAnjdCOC46VwHiOvGIYZ7sughhAHDu5-oTJa3qp7cc4BeL5v0OP_n0ljl1rZN1ATBQklhqET1-gYnCpsvWgjDiYBz9k8p0RTXXaW_DlCOKWTR7QxkGbGCEycSd9pG7NMGf-gkDN4zLNhPOvHhGxeYcWjN43VhbiQ0cMAAclKvXEPmNgxvDBWO4dwbRM7-wo2iyl58tLkQanUwclwjPa7PRtUjUp94VN0lfsKOUxbcINkL7t50a0bftnDqVtd98OTznHejhwGJ67qqid1n8GsVrIJHqoch93gnb5iP-SYxKO1ILtpsJEmAm1AFV3KlaBc4GPwnOobQwWVJYQIfHYRPG7Hb96wI3xYYyOPs3iNa3dAzUyD4NcLww1AZxx51ySMi_mHzP3t_dqynS-ZsOHcL17oteSlHxOBv_dtz0lKQD9U3J382MoR-v_-q6B_1U7lRiqWTPCFDs1ZOZz4A3IIUOXANX-RF4oSUK0nIt89TG2f4-CikpIzmfjmdi8X2jEC73JcZsRdmeGZxfD-QuK5eVwaYy7a239lJDzTbuGUTTcwfUG63wBA2Sj-KyatnXUoUa27FtfBviW4dBCmENBNneJBIYG7Lus3laV-yZF8ejwqTs-0KE2nLluYh8bF1pFYSPyknbNlGCJxSZAUds7zKo10XWy1i_Ay5_yF0CJ8QOpa653JoxravnRKJIRuYpPOtQB3y04eocNVCp0matCpKtEPL71AXTOj-muI6fOvCsPoUxRKHvUby1PoETZ6CZ9u9wp_HWt3wxkvzQRDnTqtpWwoP1oBemgjtwcOmYh__2liuJ_hhHrVxL1HPTNG4q6JU4wA_sVsAhHldA6o2BW0HQ0fDw7tmCJNU7sZtyRlG1wO4oXHh4lwyw24Gp-mD1drtqWCAixeTXXlg8z6sgY3P9z-GrnPc4SyMOKoxahPWcF4OApir0dJII-hP8SfHCsq8hvuWC0QD9DDFPUJLNDd4zPlZ4-Vyx_PEDGyaQSi2Gq7UGhk_x5tdK57urIO6X7-gpY3wv2Hrk4GroUIpO74WEWUAz-prjsspLFZqT6x4e_99fFcCmgU7jFDEleGK0u6wEQBMgCL296GIcfJSFHS1r_RG4v_GumhVFn2wxZa4Q8scUWo0GPEa56JtffcmStkPw3Vo6GJPMWfopxqqLjjHHZzf3S3iVwjG_LTzkUflE6dOhbSJwA9Gtd9UwD_FeWoj-vLsEuh8tJzaBUiispvTsgQXmb1OAUoCZ9by8F_C0lYWfHbRm0XyGBVHzo74HYX_yAmNVN3NjLT065VqjJr2npsSqxoJq-TZUYKbhcJf-8ViwuuQcmq8N-8H0l_JkQRX0lHPvG-kiZRYWvjW6jQzwAN6exnDN41k74on5rW4xkPdG2tRCFnwd_-nq1cZPlg7IvsZX-D6sLzF1siNSSgPkzKKyyANvJoHtAxeE3UrqS1dtGgUwLiJMtczIr2gJK0evhxeTeYPfp8ldm0V-q2VRtZ_Mac37FiOGKO6BJU8J0wg31zCj8ZuqV8ZJeDk9W_AZvj9DLZa0Gc0tTYaL2NhuQ9IqLx0e-kq5KDADUJzBIQM2BS6rJYVVLOp3HKE4jqJgtWfKtkWALBnUUz-_FBZ6jHYFr-yyxl3hp-cThNJkMW9otn8LobekuO1LhQjg1CO632LJAdDeh5VR63na54O0mIam6eOMMyn3stj2me-a2KAkijMynSGtwLEqIJFVMsxwF2n0an1Et\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c1d4d39db4a5-39180904','','','2025-02-28 15:23:11','2025-02-28 15:23:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42407',0,'cd-form-entry','',0),(42408,0,'2025-02-28 15:25:16','2025-02-28 15:25:16','{\"email\":\"kineticsmassagetherapy@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"EX22 7UE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA2oW-BhC2ARIsADSIAWp_tI7XWB0nW4y_NSKum62aDj_5tJdnFCoqX65Gt_DT4733WlDhrBUaAvDZEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7Fpum0-GB2rEKKiHStA34HCzPm1tCqqSfXUHMwNSJK_b8mEB-Gb8E9rhhc20FtuaWTsd3DMAtKtgYPSVXMB6DudiTOvhkKeTaiXRQKj2HcXELmDoKQYerBRmJnzX_cylLUX9D1HuPJc7wl_VClPGwxLo-gO0ILnC1tn5QLl0UEgJbe_z2u6WqZA72wyyrGj73_KW4i6PQVFWMkOpwN7ZfWsvORTQjKtOS-pdxzx8WtuRyLqcw3BMk79OiCcJzBqt4sWuILC7kyjvrLprt6blyjqXygzEdRd07K-Xhju5mwamMl58jQAkbvmSqdk8g4FPvwtfkNikJNaK12keXcLREEfEwaWJEAum9OXWssxvF1iKXukgr27Rsh05lKXnMBNZYssntyNMCGG8xp8YjD6gEi0zKC1e67yChkz6ehDNPBmFPmEw7SV_sfqd0vivMq1NDBw_T4n3GcNZHVsfMylIoPb0Gg4IUHgG-cFSRKlBtq1JplXHit854ofgt8tiwdmNOgzakYnUuOzhvXIoQ0qUyz2PriTY88uPGURLl1J3NT5jlP0dlAyGlnwB94z-zz1NSORD3Ajg1tg2sDzX9bLJ1yU9xOAoubsSyWKAO-Ov_ayrPg09OmmJ8ycXy4JZIH0MtTzC5khkOWciHzAKjWRji_bn7eg9DjouZpHeTL7uHAZObCQH7j-BRtT-ngYmLcDASwu0PMylYLPQStx9Le-CyQr-Se2HCNOn4Fu26w6gIzOYy5yLw7XjUAXx-Dmg0vms4AAXOpmezhOX_tp3ZR_Qf9Kj5bHmfwABHtxk9a6GInlXsjhYzAbBmyykSMF2zW2sWXCmqtflbniHXj72IBJDFHGS-dkJXWZ1tzXXAgCwJhr2mzW8uscDO6EQRs9AiMkj08YxgHZQesvCqqqjTF1a2vQzl-cjw47zJGkwLNLubTYU-YHYxqhIsR1nWZOmcnVHS7ESIl1gnJqjthWLl7tefrw3NwXymPxPoKqwxULu0EDqem0my_dMYDtOUR_SKLym99xUaMnFdrhgZQL4tcVmbw1gV-Ywr2Im4vuM2fzX2hzOvY-LaowP5yFUfSSelVGPuamm7XQmCOE7suX7qp7yy-1zkYbfkwYi0fIJjWe0PNU_M-FE6L9wo7Bl_FyX4jTEeRawdaYz71mdBLP_wZ44ZiIX6bmuRuQzvchXTuEQRGsAR8NAsxNwenNDyh2dtnUjyHgRZkTrElbWFR7jUqQ9nF14LiraMJJFesCJ4R7hckfSeepE-kjI7AJlk6ahAL9MPwaVZlA_OFjMuFYmT7hcfRZKVBkwkBcwXWlqoATPW-cbHEv3apo2aJgZTMroB-WKWJ6i4P5AdPa-T2zTUWhyuwhLvusVjFSG9Vz8R9w1iZz7QejRslagFu3YS2_PeTEGoITRbsRK4bI9156QXKoYG9sW_a00KNu05KWTIXmIrWS91JNDmPznBGr4P6NKzOO317CGh096OAB6klEvHhV2J3o_-JBU2kmGgf5DSFkTCakP1P7dYzteYr_mAVd0G1TFjiTtYareeBcsT6QFix8s0rj-F6rkkDdSntajmDKqHUcdFdoTXUy8IlSwtkUMfbzIa1KmR7wT7Qw-w_crRzrT67rhwNXLoc31F8p7LJpkLbq6TyhoRWUAmNLNB7Gp341jhHLyRdAWhq4C4RMFPOZe1vtdxtvD5Z9mameTBkuVj0kz_BlKUhJvbF3_eVBqPvG0rTZtuRRmSy0g4aybGQq01JsPNBIcGuOzj-LWKMColJBZt1wvyVzl0yeuY3MGlObgWJfnJz20DDrsIcoErtLHwOplwdNcTfOefAKhBArH5DAKbsgEY09B-gXHzGnrJU4uJ7PkRp0Vi2K6DBpjS1qKz_6auq6dUeCCXbkAcF7WUCL7wS9IxbIusKq-_K35sydanJY80c5z13RCKfQcEx1DyJGsqKwPYxe57uQAfOql1ZKL3DkZiT3TDaIGNiGLgle048-IRX_LmGE9j1Rq_-iQ8bDaGDIjKQ6AZnbzFOymGurulFK6ZGa-SUu9WYcOuVi9G0vJiiWQgBvxvbgIS0Jl6wsJh1DsyOsXJnmIZHZDAHdzz0DS4ZNPljDxbMi04_gfUgVOeAMYXyFp6bE20PVX7txQ83fg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c1d535b003c4-41673196','','','2025-02-28 15:25:16','2025-02-28 15:25:16','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42408',0,'cd-form-entry','',0),(42409,0,'2025-03-01 06:54:59','2025-03-01 06:54:59','{\"firstname\":\"Mags\",\"lastname\":\"Miller-Cobham\",\"email\":\"magsbmw40@hotmail.co.uk\",\"contactnumber\":\"07931658166\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA2oW-BhC2ARIsADSIAWoQ0EAuuRMhNf7100u79XwPZPt0c0ZyG07Fgl5M_fAa17RfXTbO-koaAqoDEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4VmdAp_faHygnYC0RNYJ_nnSNNQLuZC8a-FMIpAs986Sb55_x27EsFkX-OK2nPTDDZd8nQ1xqVWK1s7MXWZnkAW5V_YZ8BXEtbA-PlpID4ZZ0PtDqIkwOqCgD6RH2upkjbIIiSExqHP95zSNqBqqlkEMQ6BDBlMlIL_W6bmqcyBuJMr2lYM-NZaBe9hQ_3kD5VCpg1Bxoue7ynx4XBzQEpFdzmk4uzHO9fZ_Dlk97FKIfO7hqRud_5yb_VQ1ZT6SHijRSQFtPPjX3KrwCoeb3nJ7afSG-k7hV2PlukiM77DN6he7V7qYqeW5p3FjuccE49TJskeoqHRwJ_yUXqIjjZgA4So5doO9Z6igrKC-R6LdpYc-RkzqzU9MbfVV8P3oO9Xy3FZR52ArekLZB7MrHiQ63Tv4JLvyAqNRaU5ZF7Ym-HR-t1Z8SPg-1_BP_DKi3NgkMLNDMjKC5fYpcuqPWMDTm-IrS0IaQ06TKh5L0Th7HZVBUhgs7_wBFy60mXBCMxxgwV3hnqJteJY_ERLOkiMIBwxi_mZvGcfNaZgk0dBzjz7MvRr9zljGQslXBcWSq2s1wi-W-YVzIvNobL7zY4CXURlgRh276zZ5UQ3qch0XCF3csokIehpglXWbwt6iWh3drPPt48YCDQsmh-e80HNtLSsDb5lt-8KQCiSFZFT2WNyPTyVIn4TBIyIjjaapqH5ZoqihiMqHv_WBJozK8KftFFbxHABUR2T-l4DmYcynbdDA_jn7eFxt0a_QMBZJbw4SwwnHGi8hdEAMngxO_tpSWexLMXHo-KmsG7JqUqegl5E8wLuimHSXWwSNx4GJj8g1Pk9U-xfuqGD07IIdmpA2uSUBbOkp0C318BfdPfN49z-AvRj7d3_5m0_pcv4qsacIfg2ClnhRGxbvG8X198BV9hxp0_UQ1tE_eRWA65Vls5PhUNWpY1-qqF71l8kEP4XceTlYw5q8PuhxcwTXbMX3ok2jE-Dkxt7wLAja09EcRvmEUqEKs-LiozM4GocTvB0gFuX39bOWIvLL-e8HBmy4VZwrfqVHjW22M34oDeYFVA701u2XIcAl0wzq_ivThuWzsTV4O72Fen_F5sRYOM7ZkQKDDatW8B24u5YwoIqYpflecQLvVm7VEg6VnDYu2ckb3p648ZNYy9_Vr2w3eXrc5XS_BzdWKG93sF3oRFzqcmgnfe_qNXrf7GMMENh84RpKgA6qxz5uzwpVVXAmmJI2RlQbuY16Gvlb4OZC01rvhNsjVJGWpBW0ityq08vOu6CIvYGTi1QgrkQRQZfnS27mTy5bQLz3-oFj-sQRJIZvXp7PElgm6acbgJChE3tCnFVC1jThhON7bZ1HvbWslZ4axHHlHRtUkEsJJcqxuzd6hoSg98eb_FJkLmAJXpeFsKKAMJwKALvtvRPVDUhzPLHYrQS-1KQkSBnX7KVGYvmZE9PEMVs-Wjq3uEI_EGXaGeeeT54IAKSrk4Ut279DKPDtPOhzFI8e_bT-4Vnv_AjBuK1nHKwugIE43irtLY8JFod2h8UyvRfSsinwnBlzcRns1MiICdOvcxqzX8Vjtz810Gwcn5PHUDPZ1YmVnOGchsWshuaIdUIMupy5ngg48y1lsKNKpx-jfIGUoWP-i4ICqw15amC7qWYyAoaOFfxqqj11nUpZir7NVLDJLAAQWdG9U1wnC_5YLrdLqdkL80awkjhF1W2rVwSyOm9PLyjZh6Xe101zRkNULcDcVhaMsZ4bBEgv5-kQj4X8h3cfVhGqw-SOxMqn8VsE6xWhl8xhtUKIJV1Pb-uPZG2cQFz2Ur0TzwQCaoJOfPnqJNaYn93L3Y1Zfew9iUsQX1fj0E-qVTps7JSQbw3W2PzIdPCF0FDl-FTLOEeMRAL7acAPliaa_BtVsYi8buFeAPnSPpcoYqwX0g3khOIDSB5OUuGPga0qdEqSsolR0uKFlelq89EP3fzX3jRtWPeNM-HgGlVtTudujLJNch8Rxzvs3An3BWFfQjWg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c2af208f6f74-58791261','','','2025-03-01 06:54:59','2025-03-01 06:54:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42409',0,'cd-form-entry','',0),(42410,0,'2025-03-01 06:58:55','0000-00-00 00:00:00','{\"firstname\":\"Mags\",\"lastname\":\"Miller-Cobham\",\"email\":\"magsbmw40@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA2oW-BhC2ARIsADSIAWoQ0EAuuRMhNf7100u79XwPZPt0c0ZyG07Fgl5M_fAa17RfXTbO-koaAqoDEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5q_is1fs0oJedvThC8j6uZ7K5UrTGbh8v45LP9VPipIlV6Ms0FOI3sgE__Oo9svxvvdU-mgpHRVXFcxCE7_fihpAjXoH6NEhORmszPZ1tBFgxju4OgkMl65Yecm4tJzX6tRNbCSYigMGqt5EohfLgcfWmW8yAyFlIubLTd_GfX-6ei-8fAFMyFHi1h9lX2sOT28ZKFIJETQ0slNBkRvuLlmFaavrJfFu2DejYnsDie0SpFmZRTFo1hpBUobFSdvUk0OApHYBUHGzCXdVTsPg7q5zUh_Mxf1NChj6GIxJyjQBnB-Y0_I3aaWzeOs1S_Myt9kIIvfjhc4PROi6ahrbGCK3g_QHuwrW4uKYs8Z1hRRBBNFeAzXjv5Kx21GgXnpgnq2GIZbTuDmBXeV-X5-O6mX2V_JwR6faBGBQOQONY5srnKk7kji_xIlKU2bKg7mv8Z6OMOYIfyoWFqSVHQ06W5BWS5U4_PqHBgkFVE_LDyJ8d8HwHSjQZKUX8F9qa9NiO_4tu-mFYBewIxb4rjqw1vziCk19RtHgsGUfdhIOcPihZIf69n_rhJE6xodTo6bbKhFSqcWGVkcSHsBDPk8ASif8T3NpxOFvZBQiLYHqkpLgcZbi8DC0Dw5lvd3JDNuO31MbPbnIVyj57FegO0MCtjtt1-6Nb06ETKawhN0eWNmN3EgQ59TlRx7BhVpukGMnM7UdRg0KUiWIRk27eQiays8RCAtOtdyhG_KVfovFPE73Al5IbdIed_CmfvDs_lvI1FdjpigU52PX9h3VdcNvglaZUFrFTXW9hHnngMXqfbT27LC1deKRuCF9rUYCX0foAdr9uwlhHetSWmUNYdAescH88sQxc4T4vJMLKiB7hZsXOu_siiZZTveffnz5LQzZV49WruBxbLdDz96RGJXpmBT2jzxD8gyQw4JhYue8FW3joZP8cHBmI1FGioW-2K29p1x_VA1C9OxjY9irtPAcxinCvpqT4DQw3aLGNPJgWpTP3WEvgV3nyOvbIEgWgWBnxH8OFcOYCe0brTscySn9BIcy1ienlOZLXyzZyyUX2l0Y3yVQkAYi7x6gR1xGY8Hx3JqJiooNhsPy8sg3RRGu_kEOOSC4Q3jUrTN1Svw4F0H1EgfkiuXm-K6SEla1Ca_TiNa6Ete6Hq_QHGkUJ5OO6yF4WfsJSU3csNrp6DCajJSz1EHNUOAJZp82fqM4P60RiZ1bHEgsDida-wV2sBrulHdxAG5Lpa3Dg3edwN2GfiFQXjOtUhSmztmqHaORxyKfRrRi1k2CnfDDzJI7HeRa1NefJTOtHzeC-TqvzHrJrYGGYIuZG8Q9rhUlVfYGx8MGKmJ77VQhQmCYpNmWKS4kcp4lIh1b0NiEUlSAx9nty5vkzxfW9j5gOmtwKns-SFTrcKZgBlCiACY8d2FbeB0TjzyL-UtokX1Z1t_Nwwz8OfecZCQZXzqjBhgAuHl8gWsfq6DbYuyGndlAZ69NwTCIrYGyFpBmuksXMlJVuMbMHT9PTZtpc1YMsjLTL6kl667JVak45gSrq5lw8dbXFunXdl9HEnqOePEitTkybp-Oyszp7gnqF-DeKGnQbTmgJsGD8LGaXWGXK9jO9dWwFZ2JzhB8XQD1uwoNOTSTKgeNhJm0zflYMD1ZyXqvrprEH6niMy6oS4S6JpJE7G3AUpQ5l42jH-dvyumq5vEl8CkF7W2YoeBkWZBQAsNbp1179P4TW-PYMaJtp_MzTK_jeuk9zmbrWfQWMbtDx6-ymHrPYEh4PmB0kr1qvV0iNrFrHIpLIa5rvtcZd5dzy_4sEHscYjbQm_fJtoW-ddVVQeBeph0hFEMRVup56TZkBYGK69IlI_ZPKqBrXEzKJsyc1jLGCB6QAGoikQM5erMAceHgGiI-ZIrCPYBFYAxnLw69HZs-SBd4z_w5FKAAlCgLRURomQVkNMHumS5hMCBVB62RzPxXkvFpiQTxQSsUJ3Yz5GbcYLK1fDPeJlnOHts2HJ6R2pl004tw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67c2b02fb6d611-34276581','','','2025-03-01 06:58:55','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42410',0,'cd-form-entry','',0),(42411,0,'2025-03-01 22:51:19','2025-03-01 22:51:19','{\"firstname\":\"Kieron\",\"lastname\":\"Dixon\",\"email\":\"kierondxn@gmail.com\",\"contactnumber\":\"07399001705\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA_Yq-BhC9ARIsAA6fbAhW03W8zQgITqczzq8q4WjxE_s9DrOjgBcKD0ckG-KKNxNhC1TUUs0aAkH7EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4IbkqaseILARvp6Bl7t-btzIrA4tkWpy0eHayAHVJpOm5JhIoGwPNPKyk3OoK_k02L5gyvJ81g2AlUf-ZPjVtymLt13flweazcKEw-zv5IGF7Aw6mHfszhaEdiWxJ9BWsPgbi2cjwJJOONacMF5k8Bnye1gRjsdOJI_SfCoGCsUtqU0SJ-ffkAC0NeBQkhJVSo529A50djaWNj0a1HMdoeQpyM_JmxNnE4IF7L7Ix7iEj2tAEf04OqEfZBsw--NmYcgYPNOJ4Sc8-yw_fh4_959MnMn7H3r9lcXXXejHSY1lTQYWG1A4uPA7__VfwJHKAT0mtcVYJSE3R6z3mgWviLhZyytFPw_dfMPrYLtICkT4ReBzrVAIt-pgTV3Aaw8prhad_kDnxRUZATWXg4Nojr6ITJJD4_6M3mU4xBIArbMqppw_C-0sG1uQVMc0Cuj66TdXSTQavOcgPUZtYnxfl1pI9n30SA7ByateJkSPV0YmscyH4SR_f2T5AgIpvu9WUO7YrBNSRFTzzAnt4Z1YM5tiO5JYKyaQE0l-32BCbyRSQLmmZ5Rt9TvOaRlf5Y6lYz3O-Ybjja3e4oD_w-P6w6kIV7ImPZxHPbeYTKU-ouO7DqTnqFwUCgJEqGd2sl483WaAZAuvGsBt3xhT3quCHwmQVszWbwdwpHkj35FDwBEV96SwcVo99F9lLu7jVtW96QJ7knNjSBkN7om0QvW1Qa9UHZ_SC_XRc1bPJdfAK0bxOKV4hADyHBNiUcZrC8d5_2mSjAjblTb7q88yu4Yx2rZ8D9gkQyQ-vyPlSsAys0esSaphwv5dp0h5XajkLvDneJImD57SF6q_OUz2hfpQJ80hWsJ1ttQ1LsN6R4eSA37qZ4Sw9KMw1n-BLHZA-tmAdSHecFNGRtCkQF3flc_KIbjjlo4qf-dtPZ12c52EImAjTQAi23ye0Gy5G7-pg76OT_9cB36WrNJQJPTeaCywYoX40e2pxTR0fy1RS1oK29TBjOA4HYKrXdZxp0MI0mMxaPQwh1mdvG4OM67eCJG7OwnGcvdE-WeREM29FR6VrCKXhUdi_eGPRE1OnucDVfIKLm1vrnU6ZdSIQsr9F7SJabrzIcDR8QF6oFNMhbKjjD5lhowgSle2Qcuv9tmgUOU82WfU28RsBG46BbYk72SiBas8CLRm0Lv_jruMRU71KFgn2JjxXuaxw_kZ5xW7GPZiTDtO9SfZK2wXg5Nrg0_fECFykTfZyii48SQ_JOCLzXm-pe2iuHBCxLF_Qh3w7xO8EEXKI9Ol0pZi71DUVuB-9y7CL5wiNGu6Ij1wgjEDTMrEQHHr0jAjkpWr9hgazvAuzH7H60ARMgF_Q-JbP2SHH-HF9av1b0JmHIQt9NT8DLIkqA0gF7nHUNtVIQEQnQZPhPFTowzTy0svXEjHwwvJHqJvobEISSbHr7UcgMPKwaE7CsIVApTeCHyFiDnv6xNwZabrfeMT3LycIZc5ivuOJQclIBbzmpY7_-2Fi917hIv9ZdMFPssPxYx7TkHXOsLo-LFtdradObs_kMSeTIre2040uDfeXwotaI0dbtuLE2iGcFyY4oQn48aC4si4_KEU3IYhPSdd4Q0yIOyg7Ct-czL3fiLTigH1vw2f7W2Z_-QNTueIeCJHNqbrxLhBnLt0ihwEYMKOWqAjdWEndC6m2PdbWO-aV1_3fNAI-jMgVkwYp2KK4wnQAlpYhyOfYtUd3zm_b1ipAQDU3cYu8A9ca9gTWg3eX2H-zUYoYKvKHRxRRumQDJQOg78xfLHvaBn182MMspxxkzgZBtzarApLMxVMnxBK0MddTKuE80DtK6lKEiyU_2IZb58CNlwbV_pVeyCJ2s6OMqku0gfOJ5zrNUcAh5RryeNXRSWg4w4HfcvTqsItn7ljPxn9pUY0qj1OGL_CzNK5Rhr9tgEoTeNd7omXDrR80jH2mIvDnAjtGKCd7RW37n-N2ecvri1HTEmT-Yt7SHAmmj-qJzo6N8lqG2lvWAi9EbgtjdD4VQm1Up7TW-GYE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c38f53cf4e88-00572914','','','2025-03-01 22:51:19','2025-03-01 22:51:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42411',0,'cd-form-entry','',0),(42412,0,'2025-03-02 07:09:13','2025-03-02 07:09:13','{\"firstname\":\"Lou\",\"lastname\":\"Robins\",\"email\":\"lou@fullcircleflow.uk\",\"contactnumber\":\"07899851742\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6v0EGLyM9EmHSaAhWmSnYfyz&amp;gclid=Cj0KCQiA_Yq-BhC9ARIsAA6fbAhBtNGiavOXXJW_FeSq7ucuCjxc-mLgqQ2s9YT5NN_PT3CkXOdbju0aAgsIEALw_wcB\",\"recaptcha_token\":\"03AFcWeA68OCwnUVEP72YUbU70EzR7MiNg9F9uShkqRqdkwWrMC4RmRe94a5xQQ8rhnaUu65aI-JOkQdNejgbY8tusDNCZ2qc_dEjkW0Dx8twTyR4okl0dJMVxyDp5NEEXF-suB-qdN6o-82xV8SXoXCu22U1HJuWPbcD9XxZbEbMtR9mRXaYzgN-0Kp1KPXsHljeYPFa_5IqvIND9y7Wlu38iD6DIB4iLlB8sAa1nottDjnwcM9qprC_bXYa-Ai4Mtjh43OW3oandKR93f7IP27hFte6sQdpb51_R2jzEGkrnRH5fdb_trSiFZ5Dna9_cofE1YxFJ7hHeDaTPqdlU3-J1pVzKiT7lOV0TQZn8yJ4Me2kSOPDTwrksNwGkei6drf-Cl65aUw48ofIDEV3JSAlAeZSJaJz1V4KejD0kQl0HQFYd48TqQnVVDY3_7OC1_hijUhExs1qbFK7m1B_vR9Q3MBuu5b4yK4AchOeI9wITjottu4imQH_aAqjvJN0y05m_nyjZufBPqDQlHxb37zYXG8GCval3pgj7dUm8T6hKbWLx1LogeA_0YPKHRzp6pIJa8qwT0_A7Au-Fz2b2oS_gIqx5tnxPmtCqHCqM6CYY9Ea8ecgbcDlcOTOWyAgvr2JKifa8uBoxXbgUQ3L2oINLqPvSE2NcP4AlG4c_H4Z5vUKVlTJkyizfCzfC7LOY-T5juZFC0gwf3V9AI5lwqDES5leFepdrd7QxO9blFD5npQ_2MtyBqG9RPFrVuqrIB3pq_Qw4MbJUXN1e75lyor3Q39uzf9H1BWGMt6FTpGMswXj5rymGjrrl49utSgCb8CzHryuEMGiDPxBKegnFSRU81oFI4u0GUpPrJlBBX1dRYPZsXHj3Rv-hNuOCZsTo2NsJCoZqlAtTGm4LatB3aofeIosH_ROYx1ry_hcTNzLNmuU3PDX2SnrxB8Dq1xJfd0gcZqWgAYUYJp7wgB8INWYbQC6m_dGta16npBS00PVvL2HAcnyjPf9xkGdky7aqLyu4wnpwQvCx458vGuOlvafxWhAyPQmIj_Ax2P-faHHdaNl9OrYxyTg5RQ7lZoWbVj6eq3AgXz---4fFwVEHXvqG5g_fPdOBECvvJzmycT5Fji_CANKWqhsCR8IyDRVKEyTiDjcq_G1ZPROCYvA58B0j8ffB4-UZyVrRjRkzGAANHkkHsP7ObMjGv0NRAZt4W-Cvh-OKEoYJT-AxptGxVP8I4xyE9PlIChXIYualGNlvjM_YmqG2kvzjMkQENuf47Hn8ceR_tfsnWHgt0do5_zBgP_f4k6RAWljLUtYg5lYiazzpuF_vpoVmEPjAZnO4QmFJVYZ9B0pP8bRv5LDZdtzgthQHTSGY6qnuXZoflDdUqClgz-f0t8qyH8BfEBggE-RnlXXWJN4KkMgX_0NskwpPIK99O0AI37j2cHxQgnIzqj38YLQaJA4Q9WqoQqMfQu-zT_UQWUasSHu7vNXxBgumKmBu7vAIYBohJOFdu0iKHCRfAKOVjQw7JSRck9HF-RFlqDmlvqSsWVb-4U9fFV_XA53rOCfHmaoCxErEFI2YFRvXSDdmd254afX5vy7kEHg7rCI9GeRpNcg6j40zvFcMuYsljvNg3p5sukqNtxeaNqQ0Yv6dXXusfRozsKUu-JaIGQOhBL5eaMOPco9MQbuzxpIHk1b8WvSkz3j4rr_xY4XNLka0JTamKjb_hLwazMhucxkWVr6-c6Ao7cMIHI2facXtyNJAnQ5TQy2NhtIoatVlXma_pUNlBwtEY1SU5BJRBD_2v3N_iLYwRjzmdg0P9D26Pbu6l7Xs6CDG6keL9Spz77Ry3YvfaJAXaL7m2UyYHkjLhxdZEzNdQ_eTMH7FYdiRLfhzVLB7WowaOPfp6FcrjBt1TK8qwFWYGfUZpAxc-41KIsLO_-KT42EyVMSNEG9eIwLUabEE6v5w2bip4WhQBE6lRKpXKdWNguSeKwoTGHaftfJ0fJKX5Xp-KNkcUxG3ClZtdc1NFtzCJ53tqYCzwhgTjwsyxQ-yw-PxASupGQaxvbYgjKMipYCFUNyNc0TBryv_dm3YkZ0m5g-DoS4KqvduJnUb0GVWZOFSzqQFKfIxJ7mwoy8PzxSVsGAoWLWEfOeY-A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c40390da6543-31546374','','','2025-03-02 07:09:13','2025-03-02 07:09:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42412',0,'cd-form-entry','',0),(42413,0,'2025-03-02 07:10:28','2025-03-02 07:10:28','{\"email\":\"lou@fullcircleflow.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"RG8 8JE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6v0EGLyM9EmHSaAhWmSnYfyz&amp;gclid=Cj0KCQiA_Yq-BhC9ARIsAA6fbAhBtNGiavOXXJW_FeSq7ucuCjxc-mLgqQ2s9YT5NN_PT3CkXOdbju0aAgsIEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7NhUOZ8iCIvA8kVH-z5GOSOYztFiz9rEuM6tiUIA5OjKhmAxV4FDSexNM7o7ypdU9tR2WOL4vLKZ5f6kgPsDaxVdYBS3o-NPCIzsLs0O_HUhFXxNd0q-NklbiMZTPuTrZM8MCJtYh0Y0_lqcXzcVAZK4TrnhEnB3PlBATd7Xz5YtZ14zFar9rJnhD66W466f6lXO8Twi6m9aY35KGnUlVd0GNl0NPoAbT81MVZ3uatS_OwnCD0i7-DGIX3vfEPkjrAJslBIj5X5EythZknl08-SXtzxw5Z9SrS-Sgq3RgI9IU8nOLMe4ROMX7xf0MSq_wrjc5VTJVp-wG-3F3NDlymHKXTYP5--RCtz5ondZlh_JTwiQd8-CltV81ueVP6YAoZgFU4g6gEiuxfUNoRgyzn5FiBDZoYrgjDYnPOT5ViNWTMFczEKoulfHPdvCRHbK9J7eDfXSdR7H4GD9dZZYp7OdzpTK9hbqmjB-emniMx1jSJXY9teeVxuBDzjniN3opyIKLOWGFXT9JLeXHZZ7CRLBirYDLkT2KaASlVShqhHIHiTl08BTlVzmHRbYLkTCdWb7SsIxQdCzbv5vS57sNiJFJCb_0uiduUm0abgBXpSD6utN26SMTFpvz9yAtCiSle-pVVn26RgVC81_SEhlvKA7ngA7fhyO5uzzYID96_w-Th7rukcei6a_74ynktNLFveAaWGJa-KQfud99MEdcU9-_fal_NA3JAK_fTsCHPHpP7I3EyGOoBAMe9c3wS63TL1oLv-kk39Z1Q72sj5zYLknIQ75WN3snGuZ7IUS1etpszauHkSyQJtrMO7l_T9_mRqFlBdwfF1rhrvQy9qGDxZ23C91xLkaUEaQHsaKTgt4RhC1eEnBP4LF2DzTjaejlSa7i_vaU0rbSWlNLw6ejtgII7PzC5gK5nugdReufcWndm-iu7Y1EFRqqyIM7m3edMtXiSooBSlyO9JCsKBnBw0tV-38h4GgH8lVWIOkSwqIvGc4ZhTr-BFmkKVFk_rltpYFBTwv3pDtd6BYf-ENMjdonnbRjUtt45DuxSBuIo9R5FrJ2GPYdJwRyAKNrFXMbxu0Wv6WzqWUvx6WFTOu8804dyQ9-I2tVwwMxCYcQwStyZ2HEKviTfoI-N8lFOrzf8nuHviecd0mFeYze_QtP7JZQYDBxKPtW0Zy7hELDRFuEvXrSxiKlaJMhNi-JQfxqI3IpmgIbmqJBbhonBgJun2TpFnlYcOxxc3IIEg0i_L02TOrWspgTy0DoynYMHR44n2A0nQjmQl4oc4RpsVcWcK4IdMnpByxuoani0bBdYo06wF7CkYPzvOvo6jNa8jbXsgWZE14RYZdlEg_IEW74jyHihteXvWOKI-YvqD3IUkN8mPTAbq662UMWkcP89nYqp6X0MGliYL7D32-nMaSDIzo-UnkG8L3HgK72N83hlq8o5oZw5OV1kKeoUsCutS0W3MuQe7XOk7f0pczNVTV3ywX9frY56RY3c_EyNlXlB47Wjr6JsitXS4Gn7Ue_EYBq_Azzukr9Cf52DMxH542hUb9AgmKKGvXAnitQEdqzgi5nUSxvo_EOzFILFtdgmHyVVHRVmGETczsQIQV_fcxmHm10FTvpy7LdV3q4IImQrY_HdXle8dE6fKAg9WttvwmKfE-2Q6OJIUpBXvao0_CibjKS4eOP2uUBfYM414e-tnCFN6SVaIoJaNNBEXPnpVN9j4a2CKYfo-I9rMW3R-axN4ABDqTdMSLYpBFJOHQ8rpSdk5ZMDn5TtM1ZWn9RQw9EHrdfFTpK5MuphQEs2qrV_bWKotNH36k50txFzWaFZAxqZjxMOuUSkMUuVYuSztFQMptx4CbEtugxQFow61ftKxxpOERb-lzYTXDHw4eUSfgKCvTINo27teXDqoTFN6Gcn3LEPyn5xBG4Odo7zRDCl3jlah1nXzbsrdyt2nCQt2kkPrZYcOMMpC5_k1j_uZ3hLbLMulPCxcB5Qm5ZkB7kT74XFJ7W0PH-NewpOIabcelekVIx8l7gpAFLdF0-vy7cTLo4N9r6N1CyZrVH6b_JzfGT2VHRk_zgJqoXzaLCdUyJEk7SmnBkwfE15x4unVYxszZiLkutoIdA48oYKhAWDx-tC2w\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c404437bb1d7-31212505','','','2025-03-02 07:10:28','2025-03-02 07:10:28','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42413',0,'cd-form-entry','',0),(42414,0,'2025-03-02 10:19:39','2025-03-02 10:19:39','{\"firstname\":\"Eduardo\",\"lastname\":\"Aguilar Bejarano\",\"email\":\"earguila00@hotmail.com\",\"contactnumber\":\"7835267035\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vnXz5CPr2cXT-WhADk6ydnu&amp;gclid=Cj0KCQiA_Yq-BhC9ARIsAA6fbAgL7p6cL5vDmgyNsSxc3iNNgn_jm318sYSl5dm5aE5G35APXMtuOscaAk_YEALw_wcB\",\"recaptcha_token\":\"03AFcWeA75iAU8F-P7ZV0hmrSP_YbxpriZtlwxgd0ehuRsz-NYgm8_YK2cJrD7V6U4g4j000lAqcCjNWMRscmd7wWYs18Yu2ylSkdtY_IZycCdhajT40i_vtv66B_y0iiULB0D5BvSRB4VWUnDkaJuuM04Lpa0y6f6nL2tWU7yW9Ila5LrOF7oJu72iKEgKLxKuIeKozgReW8Z0fXz7ZvFrxmz6QrQ9XB9MgAMmkuAAXTa3kzqj8zVpSpt4ynzc2cy45IE_LqpY7AMvd9Ws4qM7wd8pbxIeh7K9ro0VXLd-IUQMs1f9avHkaYjX7ftoLKDYYWOKu5qD2xyIhc2fzcAMNoUGh9BBvTzNSQQjigSyE_qVkrCc-MEj8zim_sQSMAV6DUrmPl_176cipWu0JfjqmOdWMER5tqhkA14Jnuz25dgUHcoGeAZ_Q5-I66teaq2jPmGRtV_pasV4p_G8xuh_IxwLol0Enfeb3KWuc9jlgJi6M62l4SQ2Zv_F7sw9qzrDne5hqUZEBRsjfb2JRkpl0239Sr7VFCKGkdf5-fX6FsXljjwrioxn6oQes-DVMhA8q-aMbyZlIUBGKXNvxIEp7gt8eP80mj6RNuODWt3b-z7XOMDPMR6JMo2cgTyfWfY0f9bk_dUIGU6c0uTcpTQXpFdTQs4hMQE1JmKPbdW8Cgavvl9n_bAiEdTlnQlSWPyPo8-M5RU87UzsAoQ-9j_3-m8VK4tvZYYIWcP17MwtL71pAB01WluR87cgKd8pXEiWNhXjx3DDO-PExadJpuSaSEtZk2Z2g5Dn3sYE2y9zouKtnF-OgOrp_qW6bffDwjNjhtEnF-1nHvcjlRZF8NDjHoME7gfHKoxjAMpPBoA8cZ6SSw-i0idhVATmuQ-1xi7dTx4dxxdvdU0E5RWpXQynPb4LbwGd5ejDGKWFjDYTheO3FqhDlaiEH2v2vhrO1bmKPQYmvVAMbi43OGm2VNhJxEyTfJOxeMb0Slzsd7Ku5BZZfsqfMpeC97UDYtyXIieBOq9Ya-h7VRrhEflU1lJ9KWC-NMFVBhhAdXZYtw9LihfDEYE5U3TE4gccsJczOKsF28t74oBaM4mEEZTBdRquJ0Ri0AL7BbmP2icoVDtPK5rtCv_ZKj249br8fl4TqhcKnI-ms-_1FJyUJtfAEGy4V7klJFijmNZsNJP8XdN6g5u1cexdHeLVhCaeeU4KOe2QhOvasdJ1s7XYzuMXtRPiST3xKZZMJ9vvB2T5YYj_d-DNRgkgk7gLHeOEJ38yxT2uW5FPAVw-lagTzsEx7bgxrnhAQ26aYtbCwezeQA1d6zvTebFiEpUy3RHuVxeZS3SZK3fQVw17a8P8WW0qxelg_obBQgd5Z25Kg_X-W18JJArc17wiljAWJ__tXuOtqY1JWtStq42r4zWaBZPd9mEin_hPBEmO0NoIIBMuuuWNGHB160EWRpBn8Jbx6G9bFevdTr9-ATyWwjodosiMAh-N7djgCoX2lcl4QbBAQmh0qioSMtmRYSs7oUORyf5xbT3sz_OoZP3dpB_2z_9njR69ofe5oIWBXmwnzIHjK0d4MEzkV6goNVpjnZI9-Qs18AzRumVQ7QTpKzXUiAyferFhaiYrQ2dvIAyJBzlbiMUssKlN5TF5PgkCARqu05S1Z-JyHqWNod2bD19MdK0o5lx-LpO7HAjMV8kUGck00ueMtO0Fb3pey9m8LhDjQPOcLfgr95M1DGsFXSz65ERljRlJsaUiFBHtle8ET9QIET4mO2hbrdwq0GFCp6ptorec-dQ8SV9f_0h9qA6P54FrvEf4-HByFZrpAzFdNNkaxICv90T-TlslvnTejLAOatgHsPix4MJR35Lzkuh0rCMcCeR1UN-VuHzaVuwBj04zLVTvrcu9UuD7cQDeSTiMXTWP_TvRCb-rVckLmnkNUBSOF2Ohqp1hOaGa1ibc-WmxkqiW2jro9IHE8LYoi6TvMwRm0Beh49kTTLKd8m3ZhiKn-Yh88EGI758l0JSkgO1HcB17EjDoDpOOFWuoYFq86w5FnEJj2OUxqgsCWLd-I6cRe7-XDELuegq2NT2Q9c7vv4QDIKwNkf8cJ_gwCCRdVShXYf6kiUt7JPiSjVMgOv1HHtW9Lr5w1i60xjWWw\",\"recaptcha_score\":0.6,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c430b0438b93-55025957','','','2025-03-02 10:19:39','2025-03-02 10:19:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42414',0,'cd-form-entry','',0),(42415,0,'2025-03-02 10:20:55','2025-03-02 10:20:55','{\"firstname\":\"Eduardo\",\"lastname\":\"Aguilar Bejarano\",\"email\":\"earguila00@hotmail.com\",\"contactnumber\":\"7835267035\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vnXz5CPr2cXT-WhADk6ydnu&amp;gclid=Cj0KCQiA_Yq-BhC9ARIsAA6fbAgL7p6cL5vDmgyNsSxc3iNNgn_jm318sYSl5dm5aE5G35APXMtuOscaAk_YEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4Lt9x4zmPM7Mdi9bsnDBjUAWaptgE4a_R7MhRXsF14EVFXeksIKXRol5BFC-62PRWOuRt433-Yo65eo86WDmP3wP5V7498du6zOWh1yQpJI0bCViQjfSxyqxZQmghE7BtipFOF5dJBpnZoI0vs3Xt59QJPrFJ87W_3D3ReMbZq9hOtFx7gUshKxyMAw8bKUBXVrtQSoCeTw5czsoMuKFgfkFgrnFaQGhFj6_yC7uh4fmBMhxaZ7jMKC792_UO0mUR1flDGrbSJViopYrIPSrg5W_M1ZsnIoTjWxTHbKHIoIXTL6ZQZ_VPoAZOUve-ScuHuShyetXdvo7mCHncUzCTD9fM8AYt3Lp66Walm4DD4kbmgXCEePesd3LNzSm4Te5WcILFfiKwRHXDNbLyDdy3f0e8IiDtsn25pIfmCvYQRXGKGQPFD5ZxmF3BLnl2TbEqPff8qmZxWtshy_lPrBNpFKVw5BAB1z-BUOrpm5k3nvudZszPih9p77rl0JSgUZuF-X5UdH00vsvapw60UvE7ijzal4M90hHJaPIrPUzYel9HvX57qDP9n0iiiaVfJ7d8p9qJU-i-_2HilNWifmt0ozsEtt-XRNLLCbySGrVWhSdTbwLmAqely2GtQo70F8mnAgDASG3ry_SxGxxQGs-91FiChfaZMa4QS-49xAuknVKTRGYj-nSo8lDA6ATlNfXtcS1x5-NUTNsuZ5J04MSH0Mf8_rteh2DU3kn3x9hLB8K7-34yfzNNL-3mVn_cpCY0HP43A5aK3ytwpNPzI2lD2J3ZCJawnrycyoigLPPqvNCoSBrGUKMBII_jZEm-pKU6sHKm6Zi8AYmKoocHxrl71a0Hi103_hPI2f5lh0aNQHIp-L3T1f26qCSQVSKuq-oKvoJUm87KgO1b2Akp8ykyfP0W2yoHHQFJFeZhsItP7N03bgOA0LZGiqTo4LDKRHbEHqYHR8QO5wqxIVaTa5REqqCtK8umr-YmfvkeDS8khZLAIXT9a-WiHWdVQ86UK3q497IycFAWKn-VDadJ5djOtb44nNm1cYQ_o3KHXs4YWJAIfGUVL_AooI3R7CKir9kGno6GeM5XYXG7yHcJr4lqcqPsuCwrpILftYKrsPPd6-QZkRl_0so-0yRbtprjMMrYWFdFTYu_7IJbzwDwLmvUYY0gb0vYHj_gAivASeksgOmAYMLT61XU9_b3jnGkqSKSfzuluweevp_2v8z8uYiKmQKIvWn4JpUCr861bTynAww_L8iXbpPla7lCsoUhCprtdDRR8cZaT2iK3BUjWqV3ZskHewGKmPlP0JMuU2xdzgw1VfrN2TCowSVSe23A7itOOACP3wR3Q2l0HYt9QM60ZnpKkc1-d3x5OuS55ap0qcjromz8hJOr6reIoMGP3ibnBDdyXNI57WU_girFwszXO7pkTaxtLVL6t9Cyu2p-Dl0mA1vzpsp15DyNkxK5YxU9rVz6uVdZPr_8-xxADFiNZCioGgWaOWnuEQHTcbSU74G7gNTQZhz5JAz_GySrcx8SBHQSZe3R53tIOzkdKBMpjbEPLNs1ETcKjmyx-0KwqitwIzv7xF3tDHiCYy0rF5E_UnR2KsWhimASuxOfTbNNx7Gq1MxgCgqsRgAo-EBKHWnRS4Bzo6NKFbzHfkChu0BDuUTG7xxefWaI7SBqLQzHTNXQNSbUcGSVxZLOPc6yA01hGdGhRBOhrkuEIA4N6htAYnKBo0m_e4gQdAkXGhby-alLvcxedMP6JGGlMLgy7HDmNr3LgiO-wOgVpNCGtkI5E0oHd7MRFF8ZMu6xIP_DjBYfkBksLSNtd-Y4e9vrr93XdDldtsDe9GAKOhWpaFCXh6r6uroImGjuHfztFITYti8m-XssjwD5kglUFCPOkBuxwCeYsimNMfbC2CpOpV5CtB0TGgyU0FahpbX0eHIFr0hUZB0q6oMDfncYkUzuku32Por4G8slPj-ZJYQfY1WiP1nE9zBJFXqnh_eFvhJCdpIf0InyX6xugxcY5S03Kxl7V8Ne0Tx-qqoEXPSX9DUUk_kHGKBCpQjH4R5fDDe3E2nl-60eExBGSuIbmmo0nryyJgQdsS0axzGbq9uA3L7mrhIEBrOwiEeNarPpjtwwGBwVe3g6fvsDH1CAhlZIARTooNskIyPe_g6oC3ixmUrBWL6baO68uPU9zrEqb7rbobAhSPlaV_ny6TqdfW-BcjO8r7RFx2fU5X09N4n1LKwRLlWKr8_2inyZDSQbCwPBEsRIfCiCLmiWBO3dfu2nWzWoEJ_Gq3yZyp6Cc9mSElLNc0uhyrbVwpm8JAcgAGCv402mN06AaXk3poN-oaOIYxz7doGI5-LFOHzApvWByHrFCyUou\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c431012b2f51-51262559','','','2025-03-02 10:20:55','2025-03-02 10:20:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42415',0,'cd-form-entry','',0),(42416,0,'2025-03-02 12:55:15','2025-03-02 12:55:15','{\"firstname\":\"Bella\",\"lastname\":\"Hamilton\",\"email\":\"bellahamiltonpt@outlook.com\",\"contactnumber\":\"07545153343\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA7_siGg3cPv2caVQQXQBEKzFY5feOSJP-Jz1IsNFe28aqr43m3sb7OkuHwGo7K8b8HnpygrV_kukzJMMQASZjp6tQCCh6GbTZZ7GPirKus_Y3670NMCxVD77oX6n30HBwCltdaGMT1MTKEZHdkm-qREaWW__yr8RKkqtgg9ec9sb5zHJgIwPd6lPBt3NOIPwCsrL4c7Ev4k_Yiu_-XamB_tr0mIHMxWdfpjdCZNJORiiVfOAY-Hey_zUMMjHi0WKgRxnEBO3jvauC9aQqYrBpVN7Qef9TLH6sio8zx1Np-qpTc-ySAGIZpr6DXkCvxJiHDt27Lv6Hfmvz9N5Pch4tzmM0UOD0jipWk3HiFUnmP5klbBjHU1I41dxk5Po-klGulvjWhpLYILTDu2B2Oii40fGnBB8r69JUo4bDntY0UL4kdX-Lj6yXfbU2tZOIzKhh64Je_jco3W4BHlK10UNbEASROGKNBQmBzaf6A9JRh1wjYw_b2WZaJjGorRBvgRN1tLjrLtgksC5ezPVX40bYMLjGSkMouxpBId8mewh7bHv9FCTrr8u_UihvJNw1pr-yVif4ytgxNQitnAtSL-rjS19W64F_NTYFLHf9pVcn_QfmKk1ixJWyiz7GthdKkfJWgvuzrR46dtlShX5yimJtZF4pfUCMtXeZp2sY06Nr180kfOlD-cqHbcFBshkukc9O3-y928ohO0JnPsjr1LzRm-rB97-vEUSkIPYr__UR1jGq_EWl5_ZBXwC13WLSViTZMfYHD-bjviGh01nCE5gYYK04IN7PLYvWM9cG1w6qCBuSrLo8QwCrb3VzPXfzKtGZtCk_4O8B50yI9IMJudueQJMvpRvmZGHxXutJ2h5pbFGePMggNYDNISDX-TLl2udQ5lreSBwiSrF4Yep0TAhf9PDtsZdJkOMq8V4eVOG34x2LFmD0E0kDlRP_0LZLWX7Wm7qGwVnMvVVxvSHorVPu9qXSOkx29ANKNV2cOS1RLevgsosHIu4EgXmTa88YSCnTjcoZMk-iSR8LrbyAjLT2zFSaQS0WysxWqbe3aW7TLRfXz10nHs4oqrmDN3CWhXb2ZpC1D4NXsSW4Rw_j1a28z2JQQPlrZ5s7d-LcfiZnwjjyDTghswJ-FoRC4Hha6-8_7mvpLLA5bLfJ3HpkUiAuQdskMTA3kLTASTcXqaK0mt8EcZUvsIaXH4Q0w95bXUgAcBrEjo3jhle5We2_-13Ul8WId-posChBa1MxbEm_T84ksyzXp70Ap2pcRkeE4h5iYHo0VlkDRuzGFqxDPA20dzPR_Z7ReXgPW4_o1LmvCs66-X6FiJyUYa3XI_eKBTQfMrc4Mk4ZbWCHHXTWFhXbPct_FGw1WWmVXYMjlGBWxPRMMg6JwjjMLb4rN04ivsUmOtjbs3HGVCwxjdsdltd12n24FmUdf-1Pn2khyAe2cNagtbhcgBgPEJrpqSCQKqUECFUMytacXTMGRvSToarKZ1kbdlnLUsxf6eT_ZEO0H6BNhTFcZcydWyNltx-YiuUD3Jj37HmNeDuLo6v7j6s4mzaLIJp6nqtb1hslOEHvLZ0wy5pzlvFINFH_Llo1hXbSIvKAewMz-os_nQQNksxNvJRZvB8HctAat3DnOrhydWUWPPWpenJ6dts1q6HW21O0qMheN6uI2YGEPqqLtSKKDxc70d6W1cmLGKXgrHpEoLlT-IPikEa9c0K2Z_0fyhrZ5tGtmM3yYa_FYu2vKj8lin79fEmxr_0FYFpcpqINkHl5YipI1-OYcoXqqx0QqBsHjVzwuJcsFw-oTrigaTgYraekb7X-Xh8qftd4DEAfz7ysOBskevlai7CCIrIEUe6o9E7F1lUzhSXudPgXwKX62i93JwcdxdEiw6U8Wti4BdoeXI9USH5KchNz2hCa5U4OZBQ2SzkLqj9-qFATcoquLQ8Z8YvK2BQTwSipr25VIALpGbzdR99S1CvGrPfXaPdiBwZrGfdbZZJNh6x7g_abTvPJYAwovLccdi5zorScjjL7N9qP5DHv-2bNyl0AbcvewZ3axJ1ziPxA7IiBvFEHK-x46wWt48DnSZWfMAPKbRGO74bK3lzV3FyP600RKbXsaJOqgyYcmDpTM0m7U-B-ZKIopVlqccyrOXfYezZUpqz7J2rBANkpSfe2WiMeYUd7IhFs88mMHq3HFtsd9rkgWV0CiE7PlzEVpbjBrMiniaXB0R8MpFdQhXl6lf9qso0umlBU8cxjQZVA91YoDQ4bsiuVeQeDym1vJCkLc0Qa1rAhQ16W52zHP6wbW92dZDhrZTGpSYeDXbh5b6LE31hTYIfkWkEw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c455266f6c06-58790125','','','2025-03-02 12:55:15','2025-03-02 12:55:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42416',0,'cd-form-entry','',0),(42417,0,'2025-03-03 03:15:54','2025-03-03 03:15:54','{\"firstname\":\"Abbeyleigh\",\"lastname\":\"Stringer\",\"email\":\"abbeyleighstringer@gmail.com\",\"contactnumber\":\"07947512376\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tXoqByIxtGWIa_v72y0WKAw&amp;gclid=Cj0KCQiAoJC-BhCSARIsAPhdfSgDgtbrScrWwP4qdRJ1yrmVs_8wbj9AFnwofORHEgqK2AwBmtBqHxcaAth0EALw_wcB\",\"recaptcha_token\":\"03AFcWeA6BsqSxm5llESy3aWGNJckLlw4DpP-k1fDbVjn2ubTpCRiMs8WABBmDOeR6zNSLHYu9qTFBduqFkoBqajgQz9-drsR6ztzPj2loDVuj8KqE3rjy3rx1dD6_HU-kAbYlpAL62I9916MCU_dWAMdYltLSPWjFziZ0BQBI7L2xecCFX85WPwu4lkUlQKQWPMzWt-FCZ2Wrd8nJpwF-94Yhv4BkqZP-UtSqAdmDFiEUV4SDD4KqD0gEMbZ7Qsi62uPeUi4lx_g1VzIzmNmduLsvhqpWm72K06yztN4XLMfQ5T1-3DT7mFYpjKNLsv9xS_3k3Ei7J3SQdeSPwhHJRB4VP4xFl-SLEqAmoYvyL34vLYA34_2Hz-N5dMybz4fy9pJVfk7lZKm5uGmgW3jj9FchnCBrXJz3o-vKpArj0o8twsILeTxhwPhBt2k2GmFo8DjKqlM6tf-XW4IMG17F5GAsBvDw5p-35emfp_ZdxYwCvBLmTfUcFoq5EOj-d0iJm25RE6Qte4887vvwbig2e1pM0hVApKUESaqXsl3gte56uIalVz9Q4M0oHnvk3k8qhcmO_cHCmZHa3s2gRa97U0SnyleI4Xl92crmhfwGhbbX-tDTu0PWxdeJxMq25HyV9EDRUsCUJs-8ph35y0J1lc1hLK-V3siO4RE118Vrm5ARjJjZU6uDFyySjIUr5g_hhRL2lR2EgdWNV7QBUL-dBqKLyzRT0P2syXMD0j4p1c-7WGoWLcWU6hOGpOG18Zpp2khd1PleEVtAkO6hrxM8xshPA8uY_NlDPtF1I0xkVWj38G6pPTOvDFxrlxasmCop6SKo94QOhULWsqg5ZgKatna7o4_GldoRUetPkSeFJVezq7IgfbSgFhd6NZILhzzZ4UjatndGGOoO4lV2HkTHVedpQjK_rkZLcpqQGrwaxfGo0y1HDGkOcIbAutTY8cK0bgaKYET0A2T_oRgldhnZTwx6wVmQuMyFZfl4tWuf7PymIAZaNWLOASk8I1d4JnmXLTABW9GQWMaqsQIzmTnA12nmfqoLZxDHLry1ODK2gLKDnTFLmHdVL3G_EJPd07jeujy2Zuc4rEYVRMk5wK9nUpJZDtuOraKRPUSWzyI9kQqAa_xWBls-dtjaWRJiSA4c4HyBNu3PmM-GDJl6iVD8eTiEW1R0Yrsmmq50t36koSlvl1dM3FTnaYxdoJNoN_h1exB89bHUInr2Cma6Vd-ZntG-jRa_3tEPjUgr2J11hmQ1zpU2zoeI6hDQ3L-Z415foJIs_Ym12OLyyHjYchCHfUBhMdYSMzRJG96NZe3eLCeADjatw7EoubXdU6nd1S5VX0Gg7ntS31lMklR6olKyWm-NKg09lXVSnJe4e-9VupYAmJCquQ7P8A6FzMsgLf2XdKm-gP4EQYErDUoSILlM4HA6CVWt0lUty6FuPaxviOBptjUUvGoeSkbZmfB65cqmREB-I0zZberSHvtolBAisiaQvBOUDaS0Cz-15OWgOZ5OLt0wBv2txwynIS1IFPtFwGliYG8fqC7w7ER7BYTHaxBlrx8YX0LRRc1Dj46hZucnmEybTijO4_lMR4bWgz8ZWGcDRnU841oTh91LED-DET5e0iXjSBu509RZIA6yKSaYsrqPx8UfwLZGhFydQTlk70wS9hjBfrtsX-ZBpBXPPoBKs0LahClz3Sl4TINpXYtmNKyjBa03dyw6fA2WZPszJNP1Zz5ajzVypC_IxvPE314TgAhMThBwEHPg_R_uX_hcdt4CgLQeJ_u8WervCu5k7kyFm5vYuDC1wDygaHY3AV0Gq5wzux1yceUdukpfCuVeUZwPr2yO8WHsOhcoseWI7FSmnbJqOxy3wFPCX8BmdGXl_nRVWsGYHk2S91z601IUIZVbnI0H6RryGUFA44uM1GQxnSW4KTK7PzEYXD1pavDwXeqa98SM_wDBEorPuN8N18E_hR_7iT_idOECMWJYno4FL7daeMe3FsP0bTuBicJnvegrP1lWzsdFVb_h56g5KAQqZz7NUqlRcNGlGl2FrYHvoNXzSNkKMq3r6F8G1yK4qs8bAxuI85T0-4E7N-5vrttpbXMM4D8gakyh0smCb9gqBmtcNriT\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c51ecea80778-29718876','','','2025-03-03 03:15:54','2025-03-03 03:15:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42417',0,'cd-form-entry','',0),(42418,0,'2025-03-03 11:41:19','2025-03-03 11:41:19','{\"firstname\":\"Niamh\",\"lastname\":\"Mc\",\"email\":\"nhmcdonagh@hotmail.com\",\"contactnumber\":\"-\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIuuTql-btiwMVU4lQBh0ivxIUEAAYASAAEgLKOvD_BwE\",\"recaptcha_token\":\"03AFcWeA7JAhKyircCS3xwR0uNdsW8xnndJvTUde3_n6coL38atQMI_MoqFW9Z3YfzhC_m9d05UoiUMzZGYPr38e9AKdOw-RLTAibfbB-dPKmVKkxPAAaxzkG9qgfwLiTa3ed0Sbo7axT_3avO8_BqZletgcGGBZ6XmuwitDBmScdwD_FRDAM6jwQJbNfcPlIJpDnaixrFNCQMcj1HOJ77LiHEVm3lrY0V3ooaZCn9MPzpqtcZ0rOvmV6gLSR5wHaD64OZTHqhXH8UEdMUROTNLxkts9UTutIXjsp094Zn7k9KvOI0DShyClprWii2HNRunGC9_dVyYgdTLEt9szShZke28AWKhXaOiJE_v5ZIHWnjzv_h02OMETXz8slqHA6j-Tt45JhAZ7F16DFW3e2Psih-nGZyeRUO65RJ_BNpQUvI8RQblHGXMYISmlOsF-GKD1fxjrwFl_t797pYCWe5gM0q092cDnkKq-NHOBhdb60FxrkkuiQHtCfsYfavSSBgwhpqdu0KekYSQHxzaJX_pAmhcu9VDbO1s3OeG44TBILu3Q046GM_89XmFIMy_DzolhVvrKY2nL279vp3YXkLgwscJJ9ziaXRtgico2MZuqk0Shp_CLLV8k9BdxPv4qtNCV-tRieu7h3fmhan8YLaVlOVlorNom0e954_9YIR8t4X00OEOQyp4Rc_c4v3PwDLmScWCFpRCasMr9xn4fnT6yhqPd0kRZ21cZdSqYoCc9Cc-XMTFGoXmzfwOAE5jFqwj0uH5zTdIt7JEt_qGHN5TsrmvAeskoXuHnk87924YsgXNZQtXDmdM_m-_9zNWt0UMsVO_GttU7gPf6y47hmDLST15R4X6PbXlxkMPKG4N-hkgg-331XJpzuxfsAexHDTSjSJDC3d0Csk_8-9L-fqr1FDxgHkMD4rICSBp1ZEp1adSH58D6ttmJrrem_5icEPg80JS0KV6dQwGmmS-mNISQO-NmBKZ_7P4fewldueR_IKmn8h6L27Q6-iyAHSBIAYjD_d9HO86ENHwqhug0XF_7kqb_jXuWyIUyuqduMUdCrrcbG1AnPNjXJ1Q2iA-ZcX21cHehNfLqL-SrPPUtPUb1pmPAWB1Ze4lm-D7KJjecOoDVtC15c60XQZwHawXCYHz7vDS-apvULJt7VyZciJxLpaOXRrmXuUhqk4TQaYdCFaLuoCAPD7JrDJQ1bAaYtm2VLt8sFAWi_pQspgayV-Jbro3hU_zWgPxg4DCRFOZUDUj2nMF-iiEIpw4IHkAkzCdLTid3DM41nXd5_K9mKQWQLWYA_HA9mD51GYhoSzi7myDxv6a2u6VCvkvh3WIVEW-nbD0Jvl_SMsFA30aX-tPgaEtHXjgxbthX2FB_VHGraQU03FOcmRd2_ajNxJx0ULLDoZ4R8vdelxRhhWJEkmQhrdsflsl9Zp6xoZlaN29f8UZeA7_wRaNQvSB5nR13Lo6VKvhF4dAAptnZBYBL0YFa6s84SjJ3E1XWVD3XYlU_8Kh0N6UMNS-7dU2zE94n-bJHKHf2tCGRAVDUmFmTekg25gVHjJx6rt0RcH_BN-VsZj7QzUXRac0_P0WBeBv3uHsdxbp8gAiGIyFo6HLR7NpQyN_4rmO5Z4dOxRubAtnqMdTTgpqXg9q-tN89QWIEMfC8b5iwAQe0kCt4xsm5KYe2eDPl0CTZslKOxXbRlItI5AM5v72jfUqh0jljvbD5CKQ3HbrlebFFbNofxUB7DkXt8vMvp1qC24dP9NhS21AHRQ3Soqli6O-3ekVA2srglEGxtsEIeNYQvnePtRTVK1RXZYEcmLYmqI9-iqlH0QO94fGpBI3UsEpB4Vr4gDM_f7WeTsdHTu24w-RM1rYqkqUMxIQody0clC0fnh7H-5brWnO_vsBVTL3NYkCq9ueaIt_h1PAD5FbY5kvBL_ux8N_gm9gI4A7fUF-bNGdpkaWpfrP3--n1GVxSvPrCkZhftiyxh7A2wps1e2Rcq0KuycoX_jmaL8JYDrOss-TVIWlFkQ7EiICMrn6SXHXDu0qYC-4LSvobiZFwjZjmB1jSCqmm7wdP-yCyLgdEOFsW1eIh_DH0gUdkovkxXhPNwiVhn65Js5HiEOAwFC\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c5932a5a9507-41582083','','','2025-03-03 11:41:19','2025-03-03 11:41:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42418',0,'cd-form-entry','',0),(42419,0,'2025-03-03 12:33:12','2025-03-03 12:33:12','{\"firstname\":\"Dominique\",\"lastname\":\"Calton\",\"email\":\"dom.calton@hotmail.co.uk\",\"contactnumber\":\"07411723648\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vlzpJcDFhT1QynOXmp-0Jkt&amp;gclid=CjwKCAiAw5W-BhAhEiwApv4goBEhgbP73SgmgSZ_5m03HtWRIHYwJdT2d5TMUX4lLsncbkUmfM8KZRoCaHcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7Jle_oOBXL195pufvamCIA7dhP6Vahe0z6GirdV4tFd1H6-xV4qCR3r2P7Dy6C_YsyqID2bFEYEM00G0CCk197VEAj2_9w5rt7boYJNn5C3TBhCgQHwKuPLCLGtM2LBbxi9aOQxCSx8j_FaR2rSsiJkzHEecNe6yjylBEJwBvkHsAfhjo41mALp4NPQyhyc_wLPSsXSbPetIZSfGi9EXcDBRiKaAQQFYcQdZaV6s7fLY69z1YcqlOjPFcZK6yNl0VjBF_1dnwrN4814c_uVc6kgvpER7xdvAZ_SUJKHusBwcgtsUMd4x9y7oQvT8polPTqfMDePQU6BMyT5QolNRoYbfSdGiX7t82bwPH_1bfd9ssspjnVMGRnG1sEXgam3n2gDYo--W9ort1Asu7rn0VZu2KhecN4kmF2UO1MG1x3VHPmpQta2ByBszz7LoB0QU7xwQwrnCQAsnqbMwQ2SpfRbMsVatg-2LD1UOu2TAjIk7ei8MiwVD0UlY8DpbmEvaBFXZqxNAyLYAE6iZkSLtEGpwnHqRAtPEx1GeBHdiT4M__jRmNgkoQqrlHrvzZHPAncKw5oOKE4XICuQTRzdC5NTi2ySvjmR2BZugyvBgJ8OfGn5WzpaLEHbQYCY-O4tzttNcXjZdy_o4NiabTcaPBNDzcpqbVzotyV0-Ree3Z6at_ef8lUBjOlBc4v4quDmnJq7YoM9iLzl5q8rbLoS3RrPJF9jv2S8WnS7flK5d467oDjZHNr0QqYsStIAPsUg-15piV0IMHNkPEmb_p_Jm87kXV2iVbv3vdWNrOHqLy9zGA5Qokkq23R2EwihgvORHXU95uno9pjINhMP7x5UF4LbFoK18TZm0NTZF9EeJdVESZl-_fBahLs5Rf3kR00t5_EIRveVvbb2-aEfPzq9BzTv8YDoE3qFEXb6g1rbW58liFmM196h1qwOJiMbbFHax95b6pvcTDEaPMWBKFtmMiTJGzd6QTGI3fH_7SBk7Mzk5gezf8mIaoR5-dcjk7g5E-0Le5rlSBJHRENLCqGMn2EVwOjzT-4dUxvQPF833LchUY9IxMJiEzeVrbeLjyn-HTflreCY_XCmlyPohcgjcy7HlxA1fQMbPg74cqVXkBZlUUMn98tI2VGi8bnsQZa30d29_G1pV_PDPCDaFqLFIA7aD42CkvxVne5lsExAGQj-Rbx1r2hxZ_thplvp3An-ZA-H_zyKVnRvNpd44tm-t_U7cHGkGGXIo9oa2azcln6QmpDZNv4sy8pVBo9uLl6vGQh57Rl3W1_CzqrkWCEyXxL9UIcSSiTNv8376oP95K8U18iDVQ05s4Sq6zih2C52K6pUD6clA-7t3K1zDk46iG6TdRU4gjEEQXye6qGUHsX7Nnohfb9F2Ya4wBQnYzCVc7t6yfSKy-fWk9o4K-YOWDt70KwfvsA-8pchKOhyI-kAbc3ySBx3izEkAnnyUZo0pB-ysNQ8RCSRhFS5eu3b7mvvZx0rbrxzksvQC4AXPYQT56cbAvmMGwB3WNvucs19e95HoDYTgGeR9xSSVx9J_mf7soLnvLluhdbm82vylMv8raRKxKK22M5DozZfr9_KYb5_14WN1AQCBv-ptGLv3qlBOdQ99QlUAybV7MWtPpvi5Tp79ptWcrxRD2ey7oIk_e7lTbvqfB9keYOc2R9NL_1gIDEo3ePPMW8QgLYtWn6Cq75lVXfIshmVIEEmxDuYguHuAPq91AjMkdoChykfWwWdVBbx-IxGW8FLOUHW-8IT3j3Sd2MbOJ3oh8wtG5f2DKEDM2xNZMye1Ll-OXEAjLKnHYbj9KYPKoOkanmBKTUTVe_cP5emrO9mLazeoufYs9hN-fXOgFun02FGYM2kYHULzf2O7OQWfomoGeb-aZs-lPbJm9Te_pebRbpc-2zWOTWSWZEV_TIWLtAamPTZfRgmWkmBwnXAkdpgDUMpdP5y1twNN9eM1APju_vIfxzjJ8GuDGirTVc_M5QVbgeSN5pZd3y1b1NUqbLubv1bC8TIYky3RBXS9eQLs6149LqIWyvd0vlP48YAq5VqnEBYK-vdFqT3NXj3BS5OFQEBFSy_ey62rYa_DUNkD0LklAhdJkCW3Kq33ZGzjoQCbYcikLqVgHcpA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c5a178a5c941-49490275','','','2025-03-03 12:33:12','2025-03-03 12:33:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42419',0,'cd-form-entry','',0),(42420,0,'2025-03-03 12:34:18','2025-03-03 12:34:18','{\"email\":\"dom.calton@hotmail.co.uk\",\"interestedbecause\":\"0\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"SN7 8NH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vlzpJcDFhT1QynOXmp-0Jkt&amp;gclid=CjwKCAiAw5W-BhAhEiwApv4goBEhgbP73SgmgSZ_5m03HtWRIHYwJdT2d5TMUX4lLsncbkUmfM8KZRoCaHcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA50FtgbF0UKZmHBp-NiBv0AHiE-0qVd8SBmYqhrq41NKW-7QYjCE1ogaYX4Zxv2e_tSDBOkB9c5rlsANI429uQEJeiM8Pu0YqbyA6LcLyrD0Ou2OgzhoT4l3peoeeQCte1kApzIR85mS6I2gX1onvqNZHVREyqEVBXKBObwt8cCd74nlkNPYHFi9t55MeBBtsmmyOtJUbAGN1PY-tgaqZ4_rEmdIZVbK86GE9AzwHlfcK8XV3GoZH44PQu-k6Wnz6sWmUzVHaoCYpEWjpTuWO__j5dmkbTmr8o5VUxfBgiggUUK8HTquYVhp_SCwML1N8JC8YaJT6VUiUVJimzVts5pbrrwKqjy1u6PFV7tByrLmgkv_0Oy1azFN-2ZIpJycaqgYFlVkXaJF4PWFPJ8aWfihGY-hAEBenwnxmLQUfCNhon9XcKtYgSv4AM63J_pxEJ74UjeKR2XutdFwTh9gqaBX5Hu8o4CrDYnEDfpb2UqoG-xbdPw1R1e82JSZzAH8l-i4h8ORXqvlSHJHrgjehohmjJmiKeoeWBN26nXaDhoI5fgGTIPXop8vdq2pQVSHIE7j5rVQfDEMaIukdocbSyrLme3pM88X2Zgz-g2BHZqxDhQJZ9q9W6mNnupr5bsND6FJhzR0c-ieAbX5IUzGUPITvQ3aZHsC5l6SFs8ek9nlWX_RRpdiVbMMuR7gUfarclZ4F9YuRc8phxnFaY0Rgsx-57suTKun28dJiqcOoZ6226Lj4kObFm7rhkpkLNt8erfVPlXpryNJnM_q_cEU6gDyEJQu9EE2NgFRqbxDV0kE1vGimxLzeTLIuvcRHsa3Rj3o-FP2n8EWFWEvUkb_rfSsQIF_bsiyrOmKOpEszExF-WrmslZ95_pA71WgBWlbBeHc3Y6T_fUFajAw8mbB85iaktXhywVN7v6H9sRUoCp1-nVHwCag4PqmtFQvth8qAsm4jI_WGLQu9TYbw0gkS1TfGBqmQ6IV5cQww3Fj0k6qsuAdB5cVW0AVhQgYta9k_1fIePBDzmSEX5AHNam9OSBOxCmIxt4SylBlI40N-xBsJ8IGDkCYNQyFdVQ9syWR8zVia0mMu4GkD8iyYWoo1k-h_wL5XRq1khzdo9iVcwcv2NhBwFfgs6VgsIxSdVMbefKBVhg9323eEdcUvWBupnaeJy3EJt1cknLgE3nIO1f0K62XpISfvnUS1g-sW9bkMRsJvON0oudnBLRR5T9w-FcBqFj5Vt0iypVwXpLeH0Iah60qpVMGFWLhFbwlvGT6whS-oLRqYonAn_GBnT8-fCZ2RDY_pmCUSi89pCtIJ9OqPssn9eDRfzmubTF-4gq874dAPFjx4erdD6TntmIuEk-H4pQ8hBYFp0Q8P4ZKDygcwNin97yI6YvhLJtVbaMeUYon0xCNdoZYQ87HmMakbUeuowjsADrHCJn7CF6BQRR00d9NiyChPgrJChVLw8SxxqW_dMZOckkfEhQ4PDfI8YsZ3rXJBYUEUpJdZBVH0ZF9QQwARniYu9BecQ2Jy8tR5ZQgIf02NZzPa5zFy1iwu1BHUWeV5zmh9yiDYw6DHxJDrOU4Eg3zBunMMeT-Yp3QF9Emh3YF62iqjuQ9TEiXZiabLzdvAkmFU7V8q81oo5spNRoi4r-y7vEhBrfwyL61NctygGEl68vLYGHU1i-htt-xRUliAN73EvRDJZilDR3UFsOdXgTP5HX7qyGiM80rdh-jULZnRgRuqsP1qYaDwiiWPG8_GxMtd9ZN_WNYwKv2xcExjL5yj6MOW6rUUXS1Ai9eA_k4G4eJuGCA9-T_EhznEA2_9ZFTWR9SAX5lN3511rAyZdgQHStVI9AUnCIoZLk4eGBonHTdnqGaIm62R3J70ljnrajJWZxpXhakyq_N8hhmdVPvZKN_Dmgk0K3oxVaESdxazCeFG7_bqtJmi2dhzqmWZ1u0flE5sZxb5653lpxD0OfskOJz2eS4UFLu3bjipI6THyEVI4UQqFWHYklUU3KujyZ-snU0J2_tSzneJxvaLy6aBjrLsVYG_NvdpnzDWz9UXGrp-eDhggvYYlQcs4sayHGrrUV41wmboYXXxKeb6a-XEWEJ7rgjOwjJrI8RHX2uqrx2XPxMNbbBBdNx7nQcg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c5a1a13f5db5-71199353','','','2025-03-03 12:34:18','2025-03-03 12:34:18','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42420',0,'cd-form-entry','',0),(42421,0,'2025-03-03 12:39:00','0000-00-00 00:00:00','{\"firstname\":\"Nicole\",\"lastname\":\"Mackay\",\"email\":\"Info@nicolemackay.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vf8KOii2sIrMDQ9-pSbr7gG&amp;gclid=Cj0KCQiA8fW9BhC8ARIsACwHqYqgq6jMaukTzs98VgpOMGwNe9ammBDWR6AsMDnwOy39X0qKoaaaYQ0aAs4zEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5vG1dZopYFOu6Mu_TAiCJlFsnnJOB696T19d7aB9bnpU1cIGTelJUo8Nx1xfDvzn4SeyKs1ZtLxk1-y4dZn8aLwig6XcP0pO1MbaBfue4IEwRueWjOg1R8f5PIYpgWlvzHQEnrjOnLHEgiBjJbk41ls8s7sMcp3M338EWg_h8cQ4TBXI_57QOA2myPLkOPIvmnZV4yTpXT-vYEfN786llxBISpYvUl4MTRCSNngdVHxN2lSl5ssqEDsCRUS9fk5C904yugS1y6MEsdXjXU_wch3MRTd8wAaCgeVu9TiI70jDEND9f06Gzul04vi19m8G5MPqxcIC0CB4r-j8UHPzwTOUCmGKjhPPVMh6VyWeDp1-W7ORUOOYQBEdRI5DGESq_6RAJNAmJ-SL9qMK4W2WPPXG4tMUCPo1v2sX0i8Xv7oG9Nwx1SOfYfeguVWyUey9JvAOp_RR9e84AZuoY9moWcSgwHAYgiM6hes8xFzseMPLeIMq2mS8Y7ipjD63VDS0_dLP7U58NoFQymX1c4diQRf116DkfmPEoqu5hgbdkF3VfaItpNLP0YHQGUcmjJx6HwfmyaJ_Srza5pbtxapzcFFh6dMrx29s8LotRQNmTJDsxgyQ7S5OtKRLn_I10HWcBvd5No2wWnUqGz_MCeDUIupJs_JuBmddyW7-nSKYQ04ICFDojtRa_wtZa6Gkpw9G0bSbeeQ4dJpepYYgWqWcduf-6kzqseKYDrmXhE-jXvqVm9wuzBuJ1KhsetG6xgWhcyvxi3SV7wN5KCam7D3_adWrG8x9EEEnHsZV7hpQI-KeiA8zXHGhJxilcBSRm8LPzRL1B2SmTujXIog63wGjyKUKGhFk_W4fBmo6V3zvidkzBNEyUMqhMR0Q8tCexOR7rLBEguBZ_lk6vjC4wEw5KA5-XHyR_G-wCdCWtcZ9Ws88q_JoY6s0u94wpUc0Z4CiQD5vTkQayR3Oiseiqq8YEeHlc7ZfLAIssEptb1-CGVOWMln3gBcmGtBQ_JQYsGujrQWV_56BGjfuPQSikiJaN12we-CYEZooe_yqYj4hgeJActzlc3fdHLwUnqPe9IwddtY_zUbsn00xx8u5qVuO0-RIu6QK1twRvb7lJMi82MD3yzgcBXIPTjPhpeXWljMbTF3cmVfa5QQ16Fy_yKxNMtzW_mtiFOnVESgvXgch_jjaYs7Ju76tOAUAawVjEwPWLoZUHO0K8xYfQlX7Z6YlVV1q0ESDwcU66OrLLEguAOmNAOI8OCokU3bxmJ-TP_g_4mt1fh80Jz6XvEGkClInm86LpmWDOdFTJ9SpSPL9XXvu_VWFW28zZctT4yD4B51nqNVmkRRg-Y2UaZU7Lv-gdSGdgv5-sjErgU6lxEVX0tcf3s5yEYTeo9dwS9OMD0ay_GdzTRRcFC0hXzmkc19Xri9BdGzutPv-OHdQ_MruvroqkeXz3ktHrUgJ0DcR7c1RTmVNwph3Ip2jH4TwpqxV40UHxy35ZKM7Ppq18sot_5yy75h6X6gZfAOGqsHbpB54TRxESeLoRQ1u3Ss6_c5Pv7LOi1lEHcXcotlcn0xHo2TcXHNm_1KhlbefWaMOz9qc4fuDc8prM3-Ar_94CMCuYXkR25VSPnFjFX4dA4K0mMzuCbGd1Bb_QLWuhU-7bGSW12HWQptONvf_oz6xWZFlhIfWquTZ-oRNTaiKTEILqKmkG5nn-r1YUTBw3_XcIznCMkKVSqFeaTQeX95rBlwu6pTZwFkYDXcYBtx48ixtMRtIEVmScO8tzW_ueLp1CRTjwitCIFu-DOD_TtETJ9uB1JmLxGI6M52QBQ8HfNvRtnog0DnV8S4j0Jc-WqUgVFCrSzXXEbsY7GgLknx5gEBkve7CHQ0rjHk-jA9V8DnSiEGZNCTYD7oncZrwxcKEez71xJ_pYSA1SSA-XmHp6OlYoHCA3NR5yrss4wO5v8otWlpYAqcDFE-_NOH9EXZeV-n3Hm_MrkMt2WAgTJFcPcA6KY1CCxTUHmSOMh4jIbNdnGe2H4h-RrXc56p1pkaL6i5oK0xOwDFN9sZXwqmXMvJIwnZJ1luRoAfHJXVOY7PRuYW_Wes0EEglwKMpviUtRzg96X-gHcXHEjl-omcjV42dMmbu2iRA-JxSVdAxgM7btGBTvfkAsXQe2Hx9rfzJdHLMGMdoE3ZQ7Q6b59eq3JzL63L7KMq0VrmdNpBPJyOQGxDIFQZZXrJrFG5paWh45Q2LvdjMPgRAabCWygDNrfVnbm0fJh5rJLHIMTyVnpTVyQRIfUeoY\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67c5a2d9d22731-92176844','','','2025-03-03 12:39:00','2025-03-03 12:39:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42421',0,'cd-form-entry','',0),(42422,0,'2025-03-03 12:47:32','0000-00-00 00:00:00','{\"firstname\":\"Dominique\",\"lastname\":\"Calton\",\"email\":\"dom.calton@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"41533\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vlzpJcDFhT1QynOXmp-0Jkt&amp;gclid=CjwKCAiAw5W-BhAhEiwApv4goBEhgbP73SgmgSZ_5m03HtWRIHYwJdT2d5TMUX4lLsncbkUmfM8KZRoCaHcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4DqzfcKFkeiUOD7bRUgXH9PtXfNnmQ5rDRD1RTVFG6DnpBh3fridxOOf7R9MCWzamPsJYofh69myzHP3qDKqlJg0Z12xy1j2kSjL_YgJGZs7coGybEwPTA3MesS5m8s97IQfnDX-NAJm5v8DaPsqRBMc6nbe88YwoEJXQl6fvBKgZmqGl8XJw-Zp0liZ5mrllw9pqLo6kOb3JS1VSL1NhNMqlV3YkzJTK3W0wEoAPqBifHN5ottJNjJxjLCmXFEX2GlpC5NdVcgcfFkrbj7sBF7tHEP8P0ahIJYwh9jPxD2ifkUfauLwUbwlAsjfGtW0Aq8x2PtDqh9jIcRFU2TeWdDf0_UacyqXRMQ7RecDlE5JntAF-AYG0mB5MYNSqCuoMDFx8ZV4m0ZYj8EWxN6Tlfd0k_bSIhHFh6OSSI2geKwgaS-WAzxB20bWctxgi6tqP5LLC4HMvFORWXiZt7ptGhLPHZVO6iGvKdBZ-lutK5V_knDcTr3DMwowUJrIX7x0rXGIyI8MJMofga1XZs44k9594FqfnFYS-arqIBfIzJm3AJOwoyy1po27vx0UqsvIQ50WG7V7SAbANy6ZoQpdqx6U6Cyinu2IHUan0HHnkjhVqUe1R3B4ZQSvEdrueZ5qrbID5z_ch8OfvPzlsZbpNHpZVAlpFlUhOMjONVowMqdbfDEPlrqKa7fMyFG66qx4fRrQN2PBSvRGqd6GaNpD_AYCPjMWzxtQTiuN47Bnomp8ewLIVYUtE13nNH4PNZSvG5rycQHhOba5YpO56w1gUIaGBYmNKdxOxPMEfsxL7Y19aL06AGP2JKwnZDItPcFK3NWHFRaDKezyQTXQJ-zAYmUw12KoqxW612bGrBa-6R_Xb6EX8CXE62kIUF1OqH40fQwKt_OVy1yzGgwm322Tn3FNalhynhQnWxlITX7keCAr5LLULjBqyA2YRruXc7RsaniBhi97ZVarP-4RjcHUVIuVAHO0P4yIoLo8gHyDJmTdvaCbSWdIQ3lItgzZ4ymV_ovwRdhz8d860CXNal_XHLajkmCcyAnBeS3ujGCyfvvR94h8kcjryhoC1a9lCh8xH4XKsFRGl5WmqAPNgaY-R1J_ntkV-pi1v1Cv1B6x8elbglpeywOJtb5wSgRbSFOdQBQA2Pw1ZxM3C_qcRbMqtZ0jENs7-3aNGD-MXcimwBDlIeufgLEnHyk5lvjsVJ1YsZ_PtVRZHAtPDmcFREJ72q3R_bkB3d6eT9gkQGVdzJ8DjADPcRLslunVtoXskwFePJFRhY0-v8ZHFHDYTxPqNzDf6vACDHGPdeSiNvSFQR444tSIyRHAZvaTJoCgxGZanOmFJM0hl62zYtMjJNvc_EVE6XY7PjyB0BA96hvojHKraAdDs8G4OxcYi4_3GKEojexhi5X__ONeaEJeij39wmNwXjsfCNeIK7YrXT3EkCRlJ8ADY7slu8hGvPNlNj2cRGa8FVxWWLk0PWpP9eHLJO1A-NpRx02vjjF2WWZNrL-M7mACc9-NxF7i58RZLs1VUm8-ftPd2ET7CYN6SveiBaJfm6s1m3GtLAFp5qfgAgVpIS-oeBm8gu4CcvL65MmdXzK3u51xXOxr1bWMdR-8uAsOvQAVJcChvgpQuDjUms1_jxHQm8ZJti0pgS7yi9I8pQWzZ2jydqAnHlLidXXcvIUcMaZFOlmwWVoHANgdkPP7ykcCn2rgTGVH4EQaVhCOEZtCYZ3U2-qeb_Zd8e62BEKBZblgOxxUbfa1jn86EeZm3pPxnxkm1fYqSDcr_vyvURnrbjRbCBzQevxOGtreZyIotoZ7tJIvjjzAIMKZ3UQEYGZy-wK4zIrigbzIvUVz6v4peayfkB0wzSbldQp3CTncqbFTDTRb5wU-Avvqg0dTPuU57iRCgOJAbToq7UXJAp2geZ5-BumHa6JMfWlLfq7ejkBETGdBx0OChz-rVfRaZzl5WD4DbULT1oufSWx1qmGdy2uEHrlEErRTFUV1XyFYv-Kk0w7C0BRD2IFUIDyPQoDSLpO6MjZe1I98Rt_NplfWIZ7d0DMuwdiB2F2RPiAl_5fAiv7nWNbLF8fzKo34Yd_abuEfXVBeAQTiUxMnTdb_OrlhzV4Rz_43RHg--6Pjqzt8em045RGCa-hv7d-za7KUE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67c5a4e4a7e864-84763117','','','2025-03-03 12:47:32','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42422',0,'cd-form-entry','',0),(42423,0,'2025-03-03 14:46:50','2025-03-03 14:46:50','{\"firstname\":\"Dominique\",\"lastname\":\"Calton\",\"email\":\"dom.calton@hotmail.co.uk\",\"contactnumber\":\"07411723648\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vlzpJcDFhT1QynOXmp-0Jkt&amp;gclid=CjwKCAiAw5W-BhAhEiwApv4goMxqmi5bYriKXAAcWcBbEOdqvMTnrTMWVaj6CN8zHVO46CKHp7FxshoCe-4QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA59MBUOodv2vNCUEDXDLD25T3Y9CF8vCq3PmIc4Xn8JzILrzEo3JHZncqflfC2c6qBTzN68xeBhYSCFrclRvnc0GF2mocUyJbFpnvz7owmnCNwJ7AUgm124mpfjKuySdDJmDpzl4BCwOIMvQkrPJTzfGyPUmDFfDx4FFlcWHYIqAjnJwDAjpAQ502mawOzR2aIha7nMgKK2OWjy2yfyHEpK6ympS1rrtdbwRgYxEI2_gWtraqgcMkIAcWspMF_iMZHkBoEMfyqXTCN7H76PSBP-xcQ-FHZ6tJycOExbVO_m5b50CxzM6cyoFFv9ehP42d7VrtiPuHysmE6b6o6MuxgDgMwJ1v7ImvZ9IdugDoTuXjkNkArHhZytLIB__4w3sxic5vHpdzvsb40egTwgLhAXWgZoN_OWBohUF5b3nRW6sDntzf5YYOK7WLSEmnpN1yKYldg2OxKfU7Dof0Zatjc9pgFVZskwHs6qCGrc6z_EDab7CNcvXolOF75EAnR2ggz9IlCjGQV36m9OVaiohipI1tXN48-pQsNr77HwvTmiZHiPEDcv_Is0Rpm2V1pyKHz4a2xh0oE4Dayqk_6P6DASdnBa9lZP4AFwO281uIpXP8waVHRSLq2F4Y4Gt--z8mroRxDVfIEuKcAmwOYCBBw2GZycf6KUgmLevEScQoBzus2rbX65GF6gS6DX2WJtzj-hgMsW5Y-LZNJ6BtqnZGhLp18Mjaxe9Zni2agzAhBsvdETHalif1EWCEwa44VK26CfJNmDATyCBdKvo_JIu53EqVEcY0Fs5cTnyWy4ARmVlngIVTGLJUw3L9F05ak0LLbZ7HzRwjWYH4p5zG9JCFYzz79L8xiaI8TnqKe6s-B__vwyFbdYiRIsnHsi-eU43eStgO8Ns8Jjc42l9s3UnJi2bWAKHXZiSzUqDsaYzN4O4kXcfCyyJktMXQvVwVsP5l91jmU1UdvCjJIU8e9aB8zLf1IenIBvhQ0U55fBbXxKIOU_fGe7gNY3r-PdZ9wpm9qGSD4AjhtSQhH5J160YFrdmE5EqIRNL9yy2_0JEnlZYXC7AYvA6jYkxbF7gcgRaPYcCOtQ73n9lty_7uYQDykugjqMWoGnqj9yj21PwZ38DLurgxaIfDT-9tze6oM05sTAndfIkLqxzaf9C1mZk7RcIWHVQRTwN5lCPs6eXPwt4VQzkRsnBhO54d7BllbHJakd-_-itQ1KGiqGKQr662VMKS5pJBAJy8zBjTzH5783xks2Jnwz-FzurNCAIBU5uqPs8E7XhYSS9po5TM78ELPdErxB4mBg0cmk8iuHg1XR1Ilw2jlsdboEYbqbUaw6L3kk4AC5ura6K3P-AiHJz1X6Z6u68G6McFZiRBkd4qRgPU-L9zcRqdZ1WDdVDnpTOrdgMNH9VO0-Raan0WJuEJDZlxtSlCMLstveXZNtdSZrYXntyK-NnfDwkjmHteLumS11ZV7ZmBwAXDZzVSrINrvzNgiz3lOKKH8tygvvjzZkVbToBhLXGUq3fqBg9no2ZMpTN4XifXUVmLRCNJOiGHVXQyRKET0D-RX7adRoIB4Em1cbTCj1LSBK-yz-dEeavY6SLgXP88KWLz8yrMmqIT5NbcfX3cw6SV14OP8k5JxzG7-Dg7KUF-9Lgm90b1CGcFj5XGqeBCclL0U3eos_I3jNIjEnYrroppNnhdP1iZUC050lN1RHZNBV1wEhc4dvOJCev80-_bF4nKEwZ-3MNwtTbO35tcRg1dtdN9AqrSOcQXkVPzhpqxHq02oi7a8v8nIlUShBEGls7dBMjabEwSp8lC8enupYpYFqt6sfgCB1pPZ0fRwOLmI2WzSFKiliKv_6s8GDIsW09yUWdejqp1bDHQmUkG3Yldoz62N3OUnAi_EI6NfolIpcdQCEVmH2IP-0uqf0RX7UMyW-bUfELTS8eIjEPKzjxJbnPWWuRHQkwKF2Ut_GdDYU6-oRXoqhv6wP46YkvthjaeCbVGlIrbwSmGZBxZA3Kff2hvSPeO3r2T0gPf3wE0LPVfLiIYkVEErnjqtKqAd2UjzB6M1akLBqronrwEn-pTtPbxFHQcDZe2LPikCvGYU1bNlMvqMm7FaKZ2xAdpoyBXzBumgF0OVn3CFmgQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c5c0c884a450-15617679','','','2025-03-03 14:46:50','2025-03-03 14:46:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42423',0,'cd-form-entry','',0),(42424,0,'2025-03-03 20:38:35','2025-03-03 20:38:35','{\"firstname\":\"Reina\",\"lastname\":\"Ilarde-Kelleher\",\"email\":\"queengracey@hotmail.com\",\"contactnumber\":\"07494447962\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAw5W-BhAhEiwApv4goP_3yxSxXzkH7jPE_RA75UAkDADU-yHpI1EkYciLQqNe71oJRbpnthoCXKcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6Za42otYhI9SIGjj8rEVyFfceSdc8w5xsuZ6yugWrbfeNGQszA31Fk5oYclhDZSiQd7rWkV334RF8Tj_Bu875W5ERZNkVTqzms9h87qo4iLihTXH84WJzw3004rrO_bRkhWg8ZA8wQgO0FA3YMqzxJLzi6sCu-n_bfSZFfwVBvvXEqtEP-V_D0akEhV04LdGidjcWjzT9Vr8Uh_dw9xddMIWVGpq_YIREuiyA6uMeMU_kKJgpI0dPu4kXhixe0ZCCS_SUh29rgwbOx9z9u00US3XxhTZSBX7OtLANz6rMld0dRYvdCvdE5PV401RQfTOx6hdn5__IKteHFs45lmJzHT0ElH1DBWUatM4Nc8b4hQrRdQl9jVMukYz07nVWXW4nBgJCZ-SC7ay5s2ZjQtH8CtJeQMctuSNLHhv6ERy27QZXS2HbxyDf7bjqguvonHr5gvbiEeltApXF2aGAHZRUXpanDHhN_IQxDfEY-9vRrXC1nqVO4v54UCXAIIeLHWDywfX-3gca97EctmRfm2jLw25MvXX8qjD1Kddb_3yjM_UNChQzetufq3YapdyiA_aFlROi8Zw3AeCqjanv_wwjL8JaT_-kFC2fbwUgbtySadQu-uGRIFkX6_OLNJkxKFnc6VxjCf_ygCmFVm_skAHKf0lcAqmuaOn9SYrIHlKsOVOrukC6zy_ejOdyeywiLZVmlGmeSSFJa7KrPpa7uFVwNfcx0yZ9u91bTrwJLtBk4CM16xsjO67sTlwpy3NTD9Ojg0CDx8zsiu7QmM-jpg38jwdVuxB6k3WH0dtueprLKqxsGc-E_XafjpAdmkHqVDpRqJ2xDS6vw5Uo24t8K4iQEpdJPZVg61O1PglhiUi27qc4qm9DOvN8veRnCoUUbLcmC6En2k8X0m0EDXiY2zjVHIuRkc-bYajQOhPYXPrTs5CIGRouDlynYv3bNbnKq3qtpXZ2J2F69khrsJ3-R1KqDQmMB7oZJi_qYJRwCbnNGCc0WrIECe10oWPJnzHRwdSre3RRvj_5j3T9O6vn1CvOiR44Wow_rdMZlqu6MI1UIskkPdAeRWG0FzQbHjduE6kZC1rff_Zpgko-HlFTajAr0RqXZED9uXKGlQh0J0nYP_lXCvuPlBUbG6pfTzayyYN_WqD9n8UmR4LI44yHeOIXFcfM5MN2tVOptunHvPtip3hQAeHgY5nlEllbNgjeyyLgH5pBB2BPDrOxkp5IqgGSp2VfPA7YK7PQtD9tygc73f46vWgz2hqoOKXSlO0d2fMHXGn9rUGapUQAYtghmZ_tJX4uzCL7BnagtH125HcsE3xkIw6hmlGCokqijLICDlfTOK7B3bWJ5H36r3ZPLUOCBt36l_DnX1exyR8YVcxVc0G2T7DZGRPcZk4Is1oXLpWN7F31kz6x3438DnG-6ppwD7EBIIvT2s61deFSeoJtJDznl-nVusV2XTsuYY3-hp6ignrscyI0B8k1AMf3xoPThOSLMzGqq3yD2kkH3MF9r7-AdIW65nQOIaYss0Sv9r5Iavcr5hEpTV2kw3cApksaKVED903xXfX5gJvVNTsGbJgbp3X4BsAMUeF6qZUIup3LYQghFTtdy2gpRsDdOeRsyPyGBWVUQrMIKS5ofKyLetk3EACxH8LaoZhoFgqsrEtxvnnOjY5cEfROG2kRbeJ2Yq06aHZo2omIyY44x-mInKNqXoEGjaA3yWCgW0-IKPCpdHChyJ62G5HZL9nHVeH3GYGJK1L_0p0zIlrMe9eQK4PnsqeQrp7nTTU95fNKRc4hSI2hBLtgqImMmIJFNfBcRFWioSxHA8JdlQlDq4bxX6KmQ1nvHYePBGQ2IUA2CHZk1ACLfxal9akAFyeGbsa_o5tR-xMXqJi8E67n51VxEWts_64OSXlfzqESgDrVkmdaccY5NxiqfL3tdH2Cj9MrR82ZBZTz4ZU8GjuFkrrJL1Ju2cpxus9hTEwMwYHGCHoeW__mq4grQxO0ld7NcAnX1cj0Gpwr-wFIxYxLLg8oEX5jw65s44KgasKWRwSz5_UF93fMA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c6130d856f87-25953656','','','2025-03-03 20:38:35','2025-03-03 20:38:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42424',0,'cd-form-entry','',0),(42425,0,'2025-03-03 21:21:58','2025-03-03 21:21:58','{\"firstname\":\"Cavidan\",\"lastname\":\"Babayev\",\"email\":\"babayevcavidan76@gmail.com\",\"contactnumber\":\"+971558996094\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA5BVcELzA30GW2K8FRDiot-UxKCkyyfpeHVUyv6NuCPM41cecCYVosAOoRbQIsveqAEaNpRcu191GnQi41g4xQClbeG2_aU3mvtYjkzj7zFJAtNfgS70nzrhRbkaJv8rN7CXiJ7IYroyQ9d3gBEhdL2jSMFJ08zQ2yaM2YIfJf7EHiQ2VcRlj6L4youvui4CYJ1d2pdVTrS0ICyFOUJD0v0_5IhpE90BdZmxNAfygkRRoSplbLMHR6ww1_Lup17iJ01Swv9pv_uNOfF7T5rnDYL-9ygtiEy8k0q8JFCQ85PlYwRH0MxVV2IEtzG45o9BR24t3s_609WpgMn5Q2Z3HF6i-tkvIOlXGUC6x1-VACzwg-x9bP7kFd-AZPCa1gvdXpErDtgjrk0PuhdrNumt0371HHDyVR9wnfAzPoiOsdUW8ahmSKPqsx-uzkpAnChrDdLtEnskp-d_MFLRod6mThTB11bWxEKhScqZrKxphWxKOwY24rxlHMb9keFQNjz-tG8gdg4jWoSPf3WqR8pDUwUqP1DJEWEvUYdpm8F85leWcTz3-EXqbJ5eRJ-8CVRr1i-WbGwR5vCJO7wg3Oyr0hgEw5QCa0Pe_6udQ8sEUXKxN2Ifnh65XqBb5rV1kMw6fRgYPeK2ocdKmMbpsn4eOwgu0WchuZIqilaCRymGOB9w1EBTaE-vGKm86Clghdf-poqCFiiJEYeoIg6gbzUktk3LIIPneF09GsCvTXAKzoz4P0SXF12ZuTpOuDotoiBmwoZmsWg6vNWU13JZONj_3fAyA7ehNA7okf5uq9PT7ez3nsngd9NP_Xuq4RY4ynqlRJLOBDFSc1HLOGJ7dB821gwmvQ3-GEtE0ZWpGezWW7z6GbwvCH7LwQv2aKijBzPFhpHovIrAievUU_Wn-0nOBCJqkxWWC8qMhO9BLN8QNhDa_ApFjy9J5LjGtW50ZR84V_x1uILFo08pUCfbZ90ApMQxbsYArGrOYkfbpyQLbyMRLyr_VGofC1X1AOcC06S4-29ZMVGkfa9rDmiAz54I2_x56MeygnJs5EmitKzb7XvYutoTgYdbMMb3-yp9Jacxx9Uz0WwiTRY6p6HoGciWyfuzECXbztH0TCJK5mr6K8QPinLSPH-FxSQbETDh_83vuKK5fc3pLNAE1NfHcWur-Yhy3qAsSrtq5LlsQK8OBVh_zaCDIC7HAw-FDboNBGEo12dpJiPxPkRaI_nzD1sIkl-hQjTjEPMKEhrTuIy8HYOTY1HQUgkGKbAQaxtja5Jky9SXfftKXDlliYV6jm0SIN_Vi9rfKzLbGYiclFZvy4R1IQ4Jm-4U9_W5BgJMo6ZrxH2t2vM_W7GiWTI22-VlCTmxUt-WMmRk9ToZLwk_yuuMmhOQ0avpdgr-H_LO0UZqChAjOboE-682A5lK6tdsP8gCxFeOK3TOJQH_wHfr5Ilsm5fMXLefhc8gKJhM4j0GOlxqy6CF_DioWy_l2qIwuySTrcEiH5yp3lMM4kfFDrxSXNY1OL8hYefFr0DPuAgjcdY7DOB3VeCOa3IHXaDGIU6y0myU7Czjq3oq3hfKFlTr2wyLTgNFbpwPqQCxB0OnPnU3QgaBuFWSaAC-w0kP3nXDhDJ-DDelKyOZ1z6tYc5TKmfN6nmwsR957ReHpPLf2ojkfRQvkZ6MMtSZRHHjBg_AFWIEIskscrtvY9NL3agnKiLlYPfO_IAMYbEYhFR4BU4_jem9DoRmSxDXYM3g1IoNUErK4f-hKdDu8JMl77kg-RbmFck8mzadmT5btrOyWpiImhuTZkqLnvEHv7rPl83QrBUF_kRzMb5R-vME8qEGAzdORXHoHwxNRXmsaeBRYxOhXfYvcj6d-n7UyMP9_CnIDQ78AWfWyfjsR113dygOrH_Rs1YTQP98kf2MaXdf6hoUtE0pKlhUTLNHKcj9I5imVuv8EUAQ9cr1XBa56Mc2Aga0Q3cBG_u0eMb02ihuM5tttp2genubZ27oxORdAzf-bcdHoJD9howJj4MTxfE-zY8XbPdUepSL28aSOpgE1qa_fZpvRX3hNOzhxPFB8ldGwbFsCYUo2VyB88DUvMVrt24V5pVuoOiczNzWVxktfWlXO5SrR8hm721YsnvVBH_3L-wNit9p5G5pGudOfk3uOiTdRFEx35jdXARRXhf9LaAS0Me4tkDLDpdWFUbGOt0xeSjs3ZC3o43eN39b2XD6Y1GP154MQSI9SA_3Rsg_UcG40szbpg134qz_339yySRpugym4rrWXYJj1YsPWZunTmd93Ib83lIi8g-ILsRCu7Ec0CG8ztDHhnqPqZbsNjbmT32u8j3Mo6v3J4FlCnbkDeUlPI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c61d4b395974-15800109','','','2025-03-03 21:21:58','2025-03-03 21:21:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42425',0,'cd-form-entry','',0),(42426,0,'2025-03-03 21:25:31','2025-03-03 21:25:31','{\"email\":\"babayevcavidan76@gmail.com\",\"interestedbecause\":\"3\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"20000\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA5PHZ2uBxPy-J8xjZG3UtvSanyYdBWnt-monHx8L26WW8jMAhZQSkeaAYWKvzQep2YDExU2IX6dA1uOVSs-qZspa9ay22bpNojj2jujM6UQvwPrhJN5K9Peptrxk3OvWLq1rNlvqC-rpw5pyWFYZvJBX1YMPSSsnjL7mFsKHy2Ru6k8SMg2R9tCt29Y601eDNla_kSZl1mzys2mtz3QrNQaX647Invs6rFVoDLyDrj3EFeSHJQsRUGcmzcd8hY40wNDexkEfPb3sf5TOBJv1Yc1VEWFh0dE_1qXvFVdfG7yKGhaeTxYLUkrRAABzSdAPRiilI1r3MpCrqDunmNO4fZ6xJNAH69Dgk4xcLDpfQs_yYtir17YazUACP1CyAaHUWs7-gH5J_PCok7L3u9u8KRns5EtQahXw69BxcAZVNrQa4MVEgO288cBuJoJKMHtlsXEtZW4oSk9itA5UvaaShweeMjzWZtVVMfCcnl9KC98GlRAjVHE10sgHroGi-WDlU9vyCLYXpvsC3By6HP_ssIM0mMR-EVD-9bp-iCusMzxeKhut2DgB2kf6itGRJpiHLlSuL3xeiCmfldGjzUF-cAikF7-vtmewJFLdkYscUPEZGh7JRzouhcxzRJmm2VPRsbMFkBNQ5QWmY631PIgmeL6IZ5V6KUlM_J0UMQduQ0zb2zC7RJNN7N4kmhdRA7KakIxbI_65JmQfhGT6zJZZ_2H0kYp5ZnCVpoXeRKSiKOkufnxNmq4H9eJ7Fkpcuzk5tR0org2EyfjTDkbIXG_aVOXW_xGE0m1ef8d5OPq4GZYpXPRhOUt_ut1VCA0cbIOKEi_Ub6VFD6FLj3R900vcLiOR-P4Fyyvpi6TqbhTE0izvqvDOnMh4XwfS9tgc6CVo8D7lej8AGZO4cTUPe0JOCYjAg53eSQhD-ajporT7If-KqZY3TCddqGK6FmP28lHJyM_PlX6uKRbbG_vXIBaFputEmDpTc8ixYe2jQ10g21AJY-wms0ytnK4UHCmcJOeXsoteAfI_VZ39kAiqmMrKUOldgNhupoBMJY52d_ffqdQ5hsC_ma-1XSa4BiGUskxL2GCQTKCAiaakhl9mrnG9H2O_-p4zOF8A3bc_NPetwKl6F82CtGORWUBOcGB9H_BN3xVWi-u0w-KKqhpOyag9QOMzqd7CAV1ULXw-GXLm4AwwvY1-6hDHitgqxtd0HGfyd5GDNnFVrm48FLaVB-n90j8P80Eg0ikBNOVK5aIJNweoVP6nHbytRnsyXHQ8H8t38CbgLhKbmCvhTFc633J4LVfbHmBOkiFvGmsrPDXhJkrkPsHVKVpbx67DP9tb_HfJJk_LJhnck7PjNH4RtH5QpheLEJ_r2a8xmUWLpPdUde958XqR4eMLUMY81GI3TUHz76FikuFqV-NZRce490MC2LFsqjZtQLrS0DKtnifRtjW4SQbKODlWS9RbUwzjy4xBUbjn7GORHEnsOZKFCG61AzqM91h5eFRa78fKNHIh4_nAYFPtie_Upel47HHgSv1y3WUVjjR7c9KybyfjxXFTduAJwaahp68ANsB2SPyHqU5OVaA2ZmbOsH1l0IahAoZksbclkfcP-WykUrvp3_LJrNCtPbwfhZwwU7AgE05kOYOp28B7xr5vmFiOdPjZC5Mx0iq1IOzpGggN9La3md0AMBY_aowX_ETlen_o6qKocYsGtI3ZzzaaQx5VLV0O-OQUwicPL1NWXyLf-tIR1Wvaf1o7X6t2MkHHmg-WFdCubL7gwsCL3lo9B484_-JiEw8VM0AL3umNWAAVqpGuBy4KVyhIquQStEWSWjaX7WO8ysSyMA3COEGnZv670fR91eSHIEJIR_0TeK0YIYrBHoKd0otmY9t4tCKfdUENog56zhj1-1gPNfhKDv0NzxRbfa0PnS8e9H2E9fe8zfEiquzssj9IWLgHJD6Inev1lPcLTntaNokZUlm4dag-WB1kFl1tdKAJpbfmacDayCE3HUA2rS-tr2KSwzF840-r_3dwG6LPV7SRaB4HDXKqfgh7ISJR8I2dX2Ha1FXROhPLPzQKOOwfehIVFCOADHaQZYIu_0G-2DOh_OAna1QG4eolxO1vWa-G_32a0_CTAQ4HzdOglg63x3stf60UuYnYIEd2rk1-FvYaaQmLgop7BYoQsUIzcsCO31Dpgn4yIjh1ExeGCpRn0yF_VSt1wq13coJFX6-bnMti5fuVdN6a0C1R-jG8VL_4qu3qg9NitEvQVSjScFKJH80E3FQgMhKahQvzEIIoh0I7N-P-3yhmqDUZaPwieH_OqJFrNcVWpOOVfwgGt-a4wRoCKJHo_olchenSbJpCnmndEQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c61e16805097-42538981','','','2025-03-03 21:25:31','2025-03-03 21:25:31','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42426',0,'cd-form-entry','',0),(42427,0,'2025-03-04 11:43:01','2025-03-04 11:43:01','{\"firstname\":\"Ashleigh\",\"lastname\":\"Lloyd\",\"email\":\"ashleighmlloyd99@gmail.com\",\"contactnumber\":\"07827658751\",\"pageid\":\"41115\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vtQpYhZdc9ikQQqI_KJhhDH\",\"recaptcha_token\":\"03AFcWeA6iLXEh_fC7WykB69TVs3idJsZmh-mEyBCa0hOwQuBHWtVjF-Xp9-r9YZ3PubbcbSEcYRvh5bs0WQ7OYP2Wf-GDI09UP2un9Rx_FE-544QYmTG5MfUOlrMfPdfCsbvZk9hICzweG_7PQ2jpd4SyOU5MX5rSwaBkA7wqaCxCnxMs0A7KEhDJZ7S5PK8s0kuFBsbRLlwRdAeMN9VWDSe0otp7Hyr6b_fMFaU1aIpeQie-23KK6nFuzEI72Vf3Oc8A83WZnBeF_64cQvaREKQZOMvC0WD27NYmR9zMumEUjngPfdMin-v9pJ777li_rXFljieQuP74J7jUTzSUtAryKVM1nHivAc1KmB2P4nZ1ahq3NUXPClg145CjI9a3Cgc4ZtSZrIdK9ajfYKppEIkUQaa3xr75LgpVlXM4yj-Ts6obpXwTFjbUspbUaZnbdYJKnFkEjIYjt7aEwBRwEV2TAn7eLluw6NHhgaMVrJLODLk2TS41zCpB3kIdFzMiojpK8M1zoX8QHCQFmMcqcdeA75i9_1V21iUnmxnNS0Wkflo9jtNEmtaOpXNwGUEZZHksCD6M2h6jPUMqPLfZKaEKvltOCIW9N-NrDcoHK9G570TmtoE1Zw0TE9aqqDPRusutrw7dgb2-hajFIgMd2w_yLBrGuS_bbRA-Tt-WspC5ZresFCvbE1nZtEX2Pdyfa7AQigwdzAB1o-ED3FLUooZvNNi-mD5LI8jXEPSuUg_e__egm-Tk8UgEFE80VLqijaB5OZImwEFR8P2KIr4MnzztwHoPA0Y2QoiclASY8lDzcw2GAnXAcs89aaa75C7Emsk5U-gDeNQrapSC4W7DYS2ZBS0cFJEftNkbtt-ezBv8YJ9Zzu_gCHtkuP5a_gsAF-cGzhvyqXkYmHj9j79khzBdomkTKc0D3MIkov-ZoLlNUkIM-_cNuL7lq-RSzm1Gb3Xs3Ss2GcwzZEpm096eukgm515dsjarVUqAsf242Z1L5zwAkz-AYHS8bG7Y-EjmmUNrAMsjYD4qv1F3E30sIUDDJ4WlFPQhs548kS3LV4u4t7AQDe3AnpGOyb26Tlugl1Bnp6VRv5Xexsb3vjGMXsIBkZwKd3-J0NeRJoAU05vjMgHCzmFCd7R0Ey85m1NBvR2rQ6G8MXiIjgqJgm4fuiC1ltFgKRohI_TDfTUhY15-cCoHe0u1Tou8_ETlYUR7iwyVKiL6fws4RXGIyjw38hJzB3y5Z5YWfTnFcPT3-Fgw9cXFUM04or96sXXa1edegIW4A3wfq7lH0euPgup_cIbQSmWiJPhZLsrzIGbYmpjW2E-1-bdQhj6LJtV4aUh4Ad24LmiokM9VRiOke5ieDl_g-KvgT7S5BcdNpLYQdByM3Jw43S9oTSlQB1vLhnmY75hgzUk4nFfsCxRpweiuEOmPJJRXinfZlF0Z0rYqQGuositoDCDihZlmSrYzkG1_LG4eJTEcXExYXv9boRcMjzNHLG9yWIt0yAJlbBlxz0__demKLTtcXBS_Apf9Fwsqf1Z-aZpezZj9wjzT4ojn_7qotNUzNMc9BisC4O1MDCatNVmwuMFe8xXm_hYumKd6S6uw6USLQvqn5L00FHPQ8_XxZXTFMJgfZ_sG7w5QSG-byVfJX4FfRd5XVeI4YIYWrXcMAguZBl3PtHLvBO8OfRgR-hMEqo9MZ-jMrB8v87LLagi2BatRe3m1I8K8osQ_GEwT_ZYzpc-3arxVAfzszjng3mkwpz939NktV2AmbD9wKAcVtC_6rimM4Ika5nI2imR6N40d7e_1-6SE70nGzVTwUzsSTHjXQJ-HBA5-uIocD8K4ltCgp56Et8wNdW_YkdUKudtFo2H7lh9FR8rBgOMGwHkm1ta5g3V4YtJeZhMbF1dejSXD6PBdhCSvNKoOHzRRKmVlZKD8-RkXafZ0XoMQOoBqZk5nQQN8VIHEJ06_5OKmPy5Nm6n1XJmnbSkE7Lc-X594bOIQeUxKIWP2V4lcxJ9Dz_Qx0W58QGSgd9a6lNxkAY54mQHtME7VTbhPtGlNV_zsLdVv8SujRkqb9tqJYGgUZGsj19jQJUQgBoFQBmgxL7KwI_CQUvLUhMdbybRWZfD4_bBAuN8kR0sQJNdCzIcVGjbGqTQ1uLFn-q-mm8fW3qLGHElfL_Qs9_Nk08gJscn3VgRZFx4vWaqkD3vsvTfxy7hb7DBF6G8FCfd0Q-g9WIZAF69iGfAGybud0ng8wyE6Sfcfprr3j-Oha_bSZ-G2D6QFe0KImPc3bKNPBAA2gtizsJHaKJuIi706t8Z77mnjEKBEMAFRFFiUqtMMq-sNp5V2kw\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c6e73a26c2e4-43796791','','','2025-03-04 11:43:01','2025-03-04 11:43:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42427',0,'cd-form-entry','',0),(42428,0,'2025-03-04 11:51:34','2025-03-04 11:51:34','{\"firstname\":\"Ashleigh\",\"lastname\":\"Lloyd\",\"email\":\"ashleighmlloyd99@gmail.com\",\"contactnumber\":\"07827658751\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vtQpYhZdc9ikQQqI_KJhhDH\",\"recaptcha_token\":\"03AFcWeA62qnZguVr7OnGyikeP9hVyDoyT0OOaJkM_lK_b6MvdU1zY_n2CxUkdQFR7D7u7XPut0ww3RAmT5zOS4SXD9NkH03k5ICz5qlaJqqYeVXKMyyaIJ1ak0TwwvdAiW6I9ihI3RlMGG5Wc3C5DJG4GOa7JYYKsv--ILNdogxrk01KLVDKSsrMCS7YqXTRj6aL4gZX3pQcwhblL6XiMr3_ZDKN59qnJ74yCT0OyTAzr8RKcTB7ADh_x_UH32c3q1cxOB__GjOhjuLonKQS2KspwqxJm3X5pVjBgFWbSpHwqvda1kfJho01OgCsGfC32Ptss1nHX3wE60Eo2aWFdGRbOhbagvsA9nJ0NzACMY78vO9U5_tz21NN-E7h_yG-SSiUaAVr8Ytra8kmxVsv1QshNqNRLiNCgrJvLAAPQa1oh_WpEKcviwGS9O50IYi4_opD78tjCh_RcK7p-bmTkmgfxhRZ2vCIs_ahqNT7LxRznJEJ6ztFXW4I4C0xARltepWBYTzO3t7OaSC5VWAjoH7TPkJbSf-bxjJdMtlUwckj5zObndEdAIcUe9kaGsNChrm0cLiPaZHWGAaAVN469xlN_z68sbMtIseV38POPl4kHKI-iVVV7UAsGkmI4LW7DiqJIeUaY8CI1YdIeAECZKeZIFF0FWxO6qvo16eq8GnxIrcYX6C70cOAv7BfTOWi9WMgP1UwczvMUoQdht5_hWBxdFHgH_q557RXxsvhL19fKyRmDkW2CxbE5z0iDd00pkMeFnriQew0WH8Ukgx2a33zXGpHiEiB--Q0mc4uPNHvF6UcxXG_oZM2lz-_mDlIHwo_sb521A4aUtZ5dJdz_f-M1ql6TynA6aBf1RbBkv3vm-6TclkixFr03KuxxKDZdNUOktUunGLT2VCL8a4NcReNfssb_pEDtMorP9GvbF4gQgKb5A4m6_04F6slFw1yck2SFIdfvM9WhpR-Vf7TOaMVj2XyAeIhIz6yEAi3usZUGjtTKKh981rf3y4nq7wMKF8ps_MfnTqBnBjrsIp8ou-abxNfRP_oORUbiur2lMseRlXUFN9FYneJLGc44z5futXXcaNvfQH-gyw1EvD6zxEJLpAzCIIw7BzHPMgS1Q-BJmqSyKBcnzO_9n79HBRxZuHpFLYxlJyvTsXk4Y4IXd_uEdMzmp8WfMigzPv2811VsrwvXKnaTG11YDNvIT3NQoGyXvdCoY9woHbBZpdmfr4SMQkMohl4Yqn4cEP640VUr1Fc8s5laYmJ2Vb3Tz2HFC1NKRt-1e1jvmW-KykxzkCnI2QeknB8S37PhJV8myo46a2EGVXDOsRWFiBr0TyFg2sGSkpal8ozRlbWwz6cyD06enpiSgWjIaoMiafDFlzYZHrxZ32HZBvrFnDCjLyIpwxfRZQ-t0IAO4DmzI83mFOc4Xp96devpP5t5O5lW7dn28Mekbcp0K6wgvPKX4xCQP9iIZZDjw1c0WrDllQ4EbCWKtnteR6CRrO42O1bn0AsvtjcYuaQHueKvP3ZwTWK8-tFGfNtuMGQCeUSs_Ih4Jl_Kz6OpRePxJWMApDt2nxp0UB-q76Wvln4oWb4Qyo0Pb5scSUierpB53bf4qb5QJPMurxfx3e2j7MFFX-awGG6uk1GiJHqL5ML-96lg0mFjo4F1YqtAOr5Sn_dq-4hUqV_UZlGHrWrbcutAXhnOjgsoFA542Hl1f1bmd5nMHPTT0kp6nquW2BNvH0myhmDcGKIDYcG9OLwttx1oC_Vcuql-PZHXgqFBJbENXk13KTuIirToj5pm_l2CQdGnDwnDjUDULjdDCiN69dyrFV5gmx6R9J22Dq07Iv5dmyWNUnIeuiRyhrb9BHiQpfuN61eTsFTGeC-v4q4ZLRpZ_CABq_uQO276bnhtO0XXuyCi7QYdknS3KB2jozrLN_4WB6HiIPyvtBbBZE4Pqiv4uon92NiSUMV-GBsNgDizSHrQ-4Y2uRNBXz-hW4KGs-k_uWmjpGo621dIrkeV1qR-uzqRoMGxT0y2U_2Z9RCvjgicBKU0hKNnwILnSg1IAD3ycS44nD9AecdYrSleiEhKROIh3skKkLOT5ej4C2PjyyKzf2QwWwlwlHlmBkMplV3bnYT1NcuKVFqJN-PtjSE6fxbofErAXe4S-573T5p3IJC0Pd1Rx5KRBzoLbsr7922RjuXI7tZPF4y5Gik-TuSvn7jNESim5V03poAw6vVLUIRwkT78zoedTKzfoyw_cv9Y2g0JBHgxsnjPgHQaAEAuQVhHIIba-Yuk1Ty1asxNtP4C3xczE1L2XqL_zSXaEr-SWUPf7fFugajTk69oug\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c6e93f5b1085-62175787','','','2025-03-04 11:51:34','2025-03-04 11:51:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42428',0,'cd-form-entry','',0),(42429,0,'2025-03-04 11:52:45','2025-03-04 11:52:45','{\"email\":\"ashleighmlloyd99@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"4\",\"currentpostcode\":\"B65 8HQ\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vtQpYhZdc9ikQQqI_KJhhDH\",\"recaptcha_token\":\"03AFcWeA775aJRik4Rp8XgaPsQZJCeeyOWg2mdko0QzOvINY6fDQWW3wbpGycn956zzSw1OlOqy5bVsM6ZtvCQ4-2l-4p9qApihRVIBXNPvalG__yB4i3Wy8jL9_IbCaVvWnHutZstvviv2qKLOwhjsSytFxMIoJ8Zv43KTWcADA7kIsUlZDjBXNfViHuVtQ2d5Hr5YclAHu_q3HotApCgrI-YxoTcU-VhRcD6MuCIvp1pUw7UXB5L-sKOV64N9Qr3dlpbwiGByNDR1dZKrmiBhPbdt920ImBSQzSTg-AKURZWLJxAAcVFOGYc9v3hlDrwCI6ZZnbJzVgi9VKYZdxHXg6ut2Dsxrw_bfhQwSdx-7EZXdQpEePAD_StZMk5v5niwV7oXwEmR0ZGcm3QCFTkgyLVjkwri5TSrjO92k64S9Fg8R177CMkoaq4jqrkHp8tFOHWS6vc6v6PTT752YpyRWHwHjcmAqFmW2qhpnz0ZD6aBkbcdddLolXsPIg9-blZWo5RS4uoYyw5DzQsrHAagCFLPUMrQejsRoS7ReUs1eOBXFUAK3Ij-j6XOB4rU_3DwxTd55MogTC__LLOKvOF5tRaehDq1ElhcHXdkab9jbtg7IH5_sjGfzd28LPKQ7bmTPf58xx-fB8aV1rknDGYeM3C1PJCmO5UrJdXFST1o8-lSsMbvDmpNLvH50J3Q77h0lBu8bOmVXtu7vsswCwTHJ81gUKWM-TjVpPQukCg4GR-_imoQY-j4tcv6VDxa0Zc0VE1rnKRgLt-0qhMRzz-8e1F-y3lVD3jDpsxgUoRFKzSgADI4kzLcHW4wCD4QZl3M2KWItVl-AedjOhNHkqwyId4H2xvEfxl7mbYuVxTkjvafWCqFQJ1xn-CBaIpuCZ4latKToVrwQPudErh7GqWU4GHuMi74iGca-FwupK4mJ7qhtHcGG_JNxPMEXvZuwijFhi_wTzW7IW4ZY23Soy20eaTz0HUjNjSC23qmkY35vkaLCpiyTo4AeeSDldnxVDF7rrH7DevUistJHNQE2nyU_rdxsminSalotKq-bo4-bkH4Wz2FIdNFk-iWkYmxEnWKvgzAWXxOm8iWU6k2vmbZGKwajezSuSzCwP2j1ALu5jurHhWTjXde5FD3ntMBtkgJ9MHv-il6R79o2y1Og6sHmmcIAYdsE_M1TB0eejdEUrOv30mVVdCTONpnZdV5ocpOHZZM4Bdm7WOGjVWJIThUaqRLslezyTUDjIvT7qZTsDvx33Klj5FEfn1IoSzPt9Qc64MxLlqB93ggey_Osfemp6gb-_Q7Qizdl52EDabPedQuteTiZQeEY636hkR8sQi9N3Tdl9i_q5Q9dchTjHBneN5QR4uvgCa49GUHfLT1UgXtMVUeZKzETxD1kRPAdccbfeJo5qzb5ACcFNKRx5KZdfsXinVPx19QpSKMNg19iVDsCRKjdJhNvf-jMlPENhc2YryqHQQ3bJ18gHtN3Ckhqz7ncb8Ih2saKsaUUtHFSk1TZhqQa2bEchm26-kJRmi4ZP4qhjMKRVsU6tUL8QwsEDoQovr0lNaZmGcXf8SGGtDiM2KD6WTj_Nb-w0U5f13lsgY11Z3VRAQ286W0ratke6MIzh0RCghfDv_4tjsJlW4hvIqhA7vi-aO3HICLYi1-P91cMgiMQiamPefbC7lPKtCOw9Utcl80aXkYl1segVpGu4K42KJRhpHJ1gdUiJhH-P85FOB4-EMk2CYWzfEo1SFgBT0hFex4CHNow3yWe9mVHCE_4r6eDaJ0kms3YQ3CUx6B33Glzu2d5NyWCpTLurF0ktqtMClsK5LwdT-u610NyHXvqWawS1RwSr06M_nMDHiIylu7ABA0CCTDcBmAFXPSEBz8EhHvXVmkhLNwrNMfcFEROvm0JtC0wREzQZZiWcu0IjToqUfchaJVv_GamxTHCIiZUIl7u2M-4Wgy9xDowAd80wZw-s5fFmjfw_3vrwip4AfYKQIz7qYYke8vY0BUjypaKXtt7uovpNmMN_BRjJEXp4TQUtXk1LdV0W50mCP_COuH9MsWRWzFLhOTXATxd7Nkut9IJwaX17KrxDBSrj3j7mIp8aCiljcQUkJ8hSGcP3C8v3E62oIxu9Xkj19yWFsoKil8zIIZxyF-5wzsX4-9CIawTyN5uB3WgY4DuLseGinH6jBG1zoG48WZKL_FsowhW4u_MTMW3B26jdlOEWeVO2G7SeieEXYX9wzYiUQc5U6X31CTqltwBYONDemx2r-EmpG68R6JT2X2rajAUaCvE9VwYOJInHUCFotqQUCeuS9_RC12quhj96H55Q-TM6EKBPO4Q\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c6e9679600e0-82291028','','','2025-03-04 11:52:45','2025-03-04 11:52:45','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42429',0,'cd-form-entry','',0),(42430,0,'2025-03-04 15:12:30','0000-00-00 00:00:00','{\"firstname\":\"Nicole\",\"lastname\":\"Pretor\",\"email\":\"pretorpersonal@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vtQpYhZdc9ikQQqI_KJhhDH&amp;gclid=CjwKCAiA5pq-BhBuEiwAvkzVZXRPRLRV1lOkZKti-Yvc02RbV70NKdJSrRo3biZVo8dX1NB919ZaGhoCcacQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA58HZDuVOlWZak5S_3INEr3EoMtChwsInjFye7ZoyJUlbZdds7X_8VqYDSRMdFsnjYnfeAmwLaau7i0nPCBMzf50y_elDpxCxRNORkwtsskYePxMJts8xYGU0yigeVxXv3QllqY8QI3NKVoie4SpzRX1BZTL9TPZgBDHY-pDy_igcQmzIdrr4SvwThX3Q54QVJFVKuwNwC-tI46l12MGNb22fpbapHzroXjjrsystWsZH7jha9ZIoZ7xoKS5mKvkaZw0RiLOEMvnlkJRKoncMOgAIwDI2aWdp8uWt7LNNZgHu164cjtOaOwtOBcVgalixOFZ4843J8u4YWsp4lhQ7tUbsPKo8o01Ooqcpki_1jebj8jkHXexZqHfzXGu5xIOS1mwf57AdcOfyC4th3cnGdTTwwNBH_Y-yy_R38P2UUdlVxbm8wj2Ye8Ax0mhAOY5WALyS3LfEsf997m9V9aCfS_iKETsBcIIRZpP0IHew7gDzIwr1wf0CPDESBeUqQQ4d8ta-ojIgQd9XzB1_c7IwyCevw22nyTLx3sWD2zC__Q6VQHqXz0HFnCC14AxSxld-MWZjf6u5tq0yG4CNZk26gjW0tvy8en8-mkVKZuvIBrTs3Oc-a7EPaQU7toj1fDOA0AmUJWL-_w5x9VcPuHzypf4fgKrTtISjxUM-0rVsP42AayyRgc7daCBbuj2lWkFsGU-oLu851JCmKNHOLYo-vozLTYtoPW0m4qNc2JjzacTdGIJm7PAoAK7rJ53ZX7_DIgsnjrpr5u81N_mhMdwv5jcBrck_L6tAFTom_IznRYZkJlVX33mAsiJ7NkbqihkkZYQ_r4KNZHYkHj9DKp07KW0HoXH866OJwc4EzJfmLaP7wTGTWlB8lukiGVTG2vVfXpdB96C5KqXGhOsE_nbkRsgbvkxJM5APeTzwfYlVjZuwRwYk_1kcEE-Aali28emAmYPuTX-p6gmx9B6h6z7lqBRnBMvH_b86Y_VjRsl2ljtGvOgsfZxchfjbJeHeJ_z7igJTp2dfRsNmRGIkZgBGFGlZAi_SSA6S9k-cK3ouYNEHftQ4RbmwyeRlKCOvtYJ7vhS5pxL3ra-G3XCm8d0AiCK0AQxeB3zUO1vIDfkHNgG-7GvfJC8Doc7Y5YUpt2hr7sZ75jb_nlhrECo7AB7qVcdGC1qJ-k6pAHvMU5LJbhXo0zQR6w3rZocoo-75u8EZnYExHqG2Drc5VDfk_E6TWYBi9cFF-vJ8XLktSUxSav9owBuaj3kyR1-k80stzqMqkqqnd7BkjgOyXl6fIw3mQxkI8PBofCSwqIgd0YFSjpDAABHVpT4clXOs2NscM-b8TithVshk98hjUIw-FIB1QCCBl1ojBlZFQkqGAbdt6bt78-_avxGL-rhbsH2aelAob7ZsCZZzw3w92gM402Tq234Sa8KOry-yJrr7qNaGEqpL-_HKS7vz4dUoz5mTkgS2LvIIup96FdSxek30xHP6PxGBdn1ZVADVpX6905gyWQkAvjYuZcSnmhfWcYIwgVyQwo7FyXFwzZTTAsDvgCIxTRzDT2Fgt0u9ab6RxlUNdK1RftbHgnBWisTZA7zzhPShWn75X4x9XShyNNhMZN0oQlREr661WDC4uowfZR5dcQJD6C9l1rD9l1PqcWhfsoPc75jRaTKaYRh3_XMLTC6JDnIG2NCIJrMuvRX4y6n1taRgwy8EfAVUwjoInUc_hVO-y1cIzQtm7_62NEjoakump4lp1NiwZTG364Vo2s2xE057LVUPMkEKogCa6ooq_W_8GIOaHuDSWqfp5YgBHf6j-NyuiHxfYFb93UOx96oCfEoACdaXKI6LR3f5wr7yOhjqhfnMNUfUIEfmg54_1epSF4DM-rGX466_5ayDiasiPu1enZ9nLFGP8z6Oa253dCs5o-KSR_0pyt6pzr2HY2YwWJdPCgCMHGQfZgIzmYkxNZkCD8BySmesHohLPsIJNpwQDHZdnpMTNWxr7DQQ8tu6cgLHMTyMDpf6GiGqtxKuwvLP08hqfQwZJIfD7SXwm4X4yoXywBAvp1zgcpmntvNVZ3PPruJoZgJSUECYunnL56fWr8ywHhbzDLW3H_w7rwDhHyVLlDFQUmdv6WAW1v97aMY2loWQjNg5Ml1XmCtFfmqli8caUEEumpfOCvgzv5BrxDo_ABJcwp2cXDpo_7uxo_8Q905ZNUeV8Vo8KuY5x5QvdT1kkKvn4QFK0YYq-blel9cye2hKUQ4HtVfCdO6UOmUAxrTKEzWxrhQcSdHuhg26pN5r48sPA9w3cilVwd_GE-pAACqROPPnoz7sZcupAmPHKOWpf83U3pymYuu2afovcChtE\",\"recaptcha_score\":0.5,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67c718579c8040-79902212','','','2025-03-04 15:12:30','2025-03-04 15:12:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42430',0,'cd-form-entry','',0),(42431,3,'2025-03-05 15:29:49','2025-03-05 15:29:49','','Musculoskeletal (MSK) Education Courses Explained','','publish','closed','closed','','musculoskeletal-msk-education-courses-explained','','','2025-04-24 13:35:48','2025-04-24 13:35:48','',0,'https://biomechanicseducation.com/?p=42431',0,'post','',0),(42432,17,'2025-03-04 16:28:17','2025-03-04 16:28:17','','An Introduction to Musculoskeletal Health and Intrinsic Biomechanics','','inherit','closed','closed','','42431-revision-v1','','','2025-03-04 16:28:17','2025-03-04 16:28:17','',42431,'https://biomechanicseducation.com/?p=42432',0,'revision','',0),(42433,17,'2025-03-04 16:28:57','2025-03-04 16:28:57','','An Introduction to Musculoskeletal Health and Intrinsic Biomechanics','','inherit','closed','closed','','42431-revision-v1','','','2025-03-04 16:28:57','2025-03-04 16:28:57','',42431,'https://biomechanicseducation.com/?p=42433',0,'revision','',0),(42434,17,'2025-03-04 16:29:09','2025-03-04 16:29:09','','An Introduction to Musculoskeletal Health and Intrinsic Biomechanics','','inherit','closed','closed','','42431-revision-v1','','','2025-03-04 16:29:09','2025-03-04 16:29:09','',42431,'https://biomechanicseducation.com/?p=42434',0,'revision','',0),(42435,17,'2025-03-04 16:30:14','2025-03-04 16:30:14','','An Introduction to Musculoskeletal Health and Intrinsic Biomechanics','','inherit','closed','closed','','42431-revision-v1','','','2025-03-04 16:30:14','2025-03-04 16:30:14','',42431,'https://biomechanicseducation.com/?p=42435',0,'revision','',0),(42436,17,'2025-03-04 16:30:50','2025-03-04 16:30:50','','An Introduction to Musculoskeletal Health and Intrinsic Biomechanics','','inherit','closed','closed','','42431-revision-v1','','','2025-03-04 16:30:50','2025-03-04 16:30:50','',42431,'https://biomechanicseducation.com/?p=42436',0,'revision','',0),(42437,17,'2025-03-04 16:31:23','2025-03-04 16:31:23','','An Introduction to Musculoskeletal Health and Intrinsic Biomechanics','','inherit','closed','closed','','42431-revision-v1','','','2025-03-04 16:31:23','2025-03-04 16:31:23','',42431,'https://biomechanicseducation.com/?p=42437',0,'revision','',0),(42438,18,'2025-03-05 12:23:33','2025-03-05 12:23:33','','MSK Education Courses Explained','','inherit','closed','closed','','42431-autosave-v1','','','2025-03-05 12:23:33','2025-03-05 12:23:33','',42431,'https://biomechanicseducation.com/?p=42438',0,'revision','',0),(42439,0,'2025-03-04 19:57:33','0000-00-00 00:00:00','{\"firstname\":\"Johanne\",\"lastname\":\"Connelly\",\"email\":\"joanneconnelly13@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gbraid=0AAAAA9_dL6vtQpYhZdc9ikQQqI_KJhhDH&amp;gclid=CjwKCAiA5pq-BhBuEiwAvkzVZdKqHAu6f7-8OQRr3Xh0DHHl9nNLD8T56koAS_y0zWp0JA-BdPZArxoCjlQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA63zY8jz0M5YgClFB8ePTAVJywXNHtGczYFBSQ705pQkVC1Arv-dnCBPLAvVC7dR9vAVkV_2tGKo5bcuZud-GUzdZkJQ0C63z6MBll6M5-qtI6Z-cytfI1mcugbtkwH7Yf5pUqtVfh2IPZaqZvTNiTWDdSxUxcMGoCupz80SfCoR8jtdxCSO-d_WKPAU3dloy5M36tJR9BpDGw4szuuXdpWdLd11ZhcJONfq9_8QDJaR6i34GFB89ltvCP0rt2ygiI_zrhk5AGDQ_8GX-VSGxSdTYH-_H3Thdvi_zssY78Szla1lzB0WtAODdBtxQxHH4jqf_81cFy1hdLZWnJ3iAzxZDoKGYQO1_-CfMVtdubx3uwW0ODSVnwpd03u7a0cyyVZE60HtKaFDNsjbTB4GLaF2j7dlNJ3kUxnmF1A7cKweur4RWtTznyJxwZE1MXoZl6TncjbXKZJzrlAXyhjQsG_MhaZdLb8QiVcRn68L3S6zCSEiTvY5rY0Url_uYcoxKgVYP0Dk29omJkWFlL18mx7ANJodt_PvyvywfleRxRESHxpzxT-UgYA3YNZ-dTSYlJ1PmShEnhn47wuFtDdzkn97OA_Y_nTbAv7Vq4EYdvFjHvL3dHNJxPZaXvZNTazSsAwPUdgWss97CMkai1_iYaQhHYA_dMn_NPyY4JjnOpSBf3qUaeKwqpl5Z6uwM5_qr-W9ZvEtiL8R4BwRs6S_n3bl51WDWwNyIVjvK9qK_z67QpLT3dYkbMJbzF5t0eETqgS3MqDfdbqFsAj90y-R7I9UKSUxznSqB7Jb4HI5KBkWaunwM0mY1DOOg5yDEuUEVP1GizkithWRrnfQqTwMSBYqng4Z8OVp8RjpCD0vxa1gdrXLo8uGZG7SPsWA7xSr8TkmVbpsSryhZ9aObr0Z8LWsUb4Kx5RBpVGptA2Ofpez60AcsQOzV8QZkq7SNRFU3kGEtQes8MxDSi0FQLHomH-4EhabtUi9sgFxuy1AHX-Da-XSpMJNBBgfBvyPUzJzI10u1EycXs9KX9QDGezRNTEFRpXivLnoCZTAbTRpSs91Ef53cZ0M_n7of5BHZ6DNJh8ecFH8A7WyMG0ne62kQ6saSttCZcuiAUMR4H2-P3KXUdOA2DKFQdAiYeluXQhHO9y1rqiU00VxPeAkn58TTcOqE_n_PsiKXZl9LAbNvOsq3Ih3v9A7xVCoamRjPni1UMIVWR0vWeN6XcJXrl3pCQ5bZeVSIUWOl1OJyxposCD9KGaMq8laK94jM0FYl_IJ54GlSFTRFuij0HgAzF8VpG5vZIY5BRok2w_aH6SIeCKD50B-z85en4_HxgdqipvT6EiJYHvzy-exDUBVwsQHhlN9FVGdj0vHkOC7eVbD2KDaCQimVFaB_H8J12KEGAfros0jIZ9bVk_KR3A7GNtYmPoEj01tsdxR3iMc9NkKRQBysbFeVjvdc8qoZEK7U_c7ywodrcehV3OtbkoF1mbmuOCX9Cx70zUYcn3qMA3nubahB4hZ7dZGKBNwsZnWq4OD-tYCEr6yuos-rxiB3752qvViBq2b-tibsGSVI69gjmC148hm8ajcCvihH4iS6Y3E95i7SpLaD_2tkinp9Dmaflh08ZDZ3FPha9qW7tPWu2697gQUHy_bQ3E4CLp_EC44MLaO_ximSpKXKjT8CHJHMumXjr_5W7fVOECgIy07X-ShKm_210iRT9NFkNKdRUKntWRvBBBQ4M-ZqLc6qUMl-Dq7nc7YNi5FnJArGLC2SB2Yw5r6ilX3CiRNmi2SuKHeIEtqzxXagC8-A71WTDxWZk7G-S4wdb9kokblvDK6kTda55vhMbf4-g4sx_SMQEWDYRxEq1LNmZevlAImU--kMOk9zXvhVmAEwe1Cezho_WateUlhxom_rUOEhTLVvA0N6ZmO0F2k1pXUC3snR87uzp8kNuiuQH6f8LAWQExJHsy1JheKwxZgXpurjZU0WsiRDK36ZbLSb__TrbIeaAq4kI-wEkOYaqW2zoat-xjBG6oR9ZA8D9Ff2YqIwqBeoK5HtIOwpJhYgQnmnK7deAZ8IPCmEZ4aq3Lkwet54ZWnIS0qObV_S2zJyq27GH1YOxdloHCpdpdMaM_p5RaTmePKHFLugENWil-8jH-Wx0P8KCYg9Xituo\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67c75b1e574c19-22380528','','','2025-03-04 19:57:33','2025-03-04 19:57:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42439',0,'cd-form-entry','',0),(42440,0,'2025-03-05 07:18:47','2025-03-05 07:18:47','{\"firstname\":\"Karen\",\"lastname\":\"Clarke\",\"email\":\"karenlclarke80@yahoo.co.uk\",\"contactnumber\":\"07728428452\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiA5pq-BhBuEiwAvkzVZcvRFIUF3pcBjk-DIfmlWHzGKsBq-ZJJje9hcgjbkfqWqmONIm0f-RoCAR4QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4te3wvNx2XT4ZKj5Y-2aUkV-VqLEGtkMFoGqr7YSjhkgBM-rZSKv23lE6BBtmzrgQQEkKv-CL80hht8pbN7pM-SbX6w-x6q5MKfSAhLmSUQpq573Q2UYyJwQej8n_lAXp_9eOV6mz7-2zV2gZN4cpkOYOWDstCG_68Q5Ot7PJAGgpbJZGTGrdMNDUlxSOtPpByveQo8bp1He0Pw9X3M9--WP2U20TQZ-MPWEzG6vp9RnvRuvzphNO1S8LvnCqbSI_FEPtf73bUae0ct1XS7p7J7hVXnIZQPRrDHpyx0KF0AnlnAQ_5Ebf_Yy7xi_O8Gd3BsRkUuA8xzjWiOAdoAjWw2dShzLeRjZj-dehTwQ9t8e7w7BCHhoaih5xGOJp7XY4schdTZSrJrNLeXMgmVm9hjS21_Vnf4Si_gUwTNXaR9u4_tene02uDEwEHiIeBcTdzX-jpjuUuoA8yDaWz8edo_ajmj1sfIDEwyDK-W842PWUsCXpsikamTIP6NJ_H5tJYhzwHdMryiuS7Q74roMbsizYHvhetA4hcTgcsfDsKOF3hgizb7gUd2MUTfoZrriSaNLLV4sulbpNjMwq6Nh0dkOpiT57dk9vzZPQwAlguQA9Bx_at75TBVv1E0n9GlR_mmP2IzwQfNAOU2cHSBebJ85-bE_ILWO5mfzzSM17ycqHmNhPJGZvyguG7ioQTPf2lkq5_SITEjGhvWB6qGtwBOyDS5OtZnZ_dzmVzZyiPmGInnBJaenSSz3QaP4D40IMCZ_yGpeuuJhasm_P6VjVp4kGgYvUaFwY6h27qvkn5xE89hZChsWLW-ZtLv0G-0TNGobfHFUsc6iA64xaP8-yYKn3c-nPvt3eOlFdFRMk86fy3oSI6zM7IY_EOE8brfXu1D3xtlow2kou398naxVJV74ddPwCf2D-LG7Cvdr-qtfXxN6ibkmxM5OZBtWW7zCW-IViJ7xI7gxNihw-JagM2wpPlmb4qHe9wzUe0nkizcMhJhFro2HM4QZbnQiUHpTZseVTjDYGuoqAnyyBOjy_rro4iJqUiAuxMMay9u_89GnmoLBhY4Z8oXrexIdJLjMXlJuIQ_oaBwPQ0ORq9F96pw__RflLSzJvPpryo3-gNVHtIwyVBcQr2yj5RJblR2-CZT7Cc-nIbDTL-t2FtexXjmwaZq9JGQOEGpH72RP9-jQXfOlU8_MORMvcIT25n8T6QECOJG4tl3TP1h9JthISrJNmZenfMHUwaUbCyp2NxOHl81A9s2c-GvQalJQhLsgrY4UEphXmgh2ahZuhR_2RSLOx158wtsKKm2Adqy2WADPjcZNBAHR0yMlYfh1E-XJFEl3C8ADX1CVoAc4jJ283TKdILQffIh707OVBm7KLzu5r54l9ynhPxVswNrBrKiaIoncUhtzj_tBuZYanTAMCyA513rU5Nd3sBOX9o6M4-Rz2R4ppHEo7cNjr7kVYmjw2f4i4HeKKFHduSQuOvxUD3C4jHw7zX5FiWdRHnE_EWsaQgQ-A-MKQF-cHkIRIJrYakbmo6bfyf9kFh2F-Q_cF2u1r8d1CeMQu0MniY9VsFPBuhdA_SdZquDRSSOoMT1gEzkn5X1OUrtqJNOxP3gGeIbj9wr4itqc07V4-DF61TLakKKTAax31CTbl-gRvzlM-ynUKCcYC4v-PPooAZZmNU9d6TLARw84Ep2EDiMCvWh-fyjnIU-ytOGLBO8KwiWp-Qfg-T94kVUdf9JLmob6kiLMuT9bTEoV87LGyzXb2OmHLW2YGenhm6KpF46fte_Ra-k-C_IyBrsCliTnPF0qAICfRfTktzonNEM3T_61vakiQjkA0HfhpHnQcPLvJkzWDoVMoltPRCrH65zZ4kkMX9ZZqzTx0QAg5Q8lUvsmdZ2ZzVbXryElrwwrORc0S_920vgWVMZEvxcGBZdsbNIbdgK4CIsrYUhI8MDGCG-YhO8m2A-IT53s0vIRQ-wLdyH2hdXdYAyz693mOe6DXPI2HFuXk5jKKb1GYH4eZcwVtH8IjmSU2At81Vyzs-bA-9MgDjfRn_9voqsOve_CP35AOgmzxo5xJkVvHras1v-VgjKzaH0YQ5JJc95PbvtXxbjminJaHF8b2Ho9eHAMXTGOvzto1rTA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c7fabbaf4022-32542348','','','2025-03-05 07:18:47','2025-03-05 07:18:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42440',0,'cd-form-entry','',0),(42441,0,'2025-03-05 08:28:33','2025-03-05 08:28:33','{\"firstname\":\"Katharine\",\"lastname\":\"Thom\",\"email\":\"krthom68@gmail.com\",\"contactnumber\":\"07793207987\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAiaC-BhBEEiwAjY99qIF6O8tElRjuViW391v6hLPQFhHjVQl66j1POIb60OnfP6P6eSBkqBoCE3oQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7POZ9JXj0KOsaNu287DVUXWqZvWSNgJWGEvwPJ-uxvMeJQ__AUx9dvjb-cWrn6qjWAUlnY8C8pQnWwjfpvHdv2WbG6IJbJk6vD2D_iM_xUklL_SZWE-PXewoWhi5zJze5KcbnNej4fhngomxMgkQRJfZiBglxvINaq03IgoZsQljYWpPUCYj24EX6gzdF7hWhMcGwpqSVB3b7Ju3Xtt3m5ssFFHtPkKpUNyL3-4HM_lG645YVrKYfY3smthX7j8vmwe5FYZ88H2iZ1AX82251RmSpTUTSsprxfgBCNQFTzLUm_bjvbBocuNH2jldQqj4VtZzzhVAckN3-s7M4W0e0z3NJk6FItLw46fuxPFvfsbVO1YTtGMekCjWi1PpVcPHajzK_OcxCZCXn70ebUHITI0R2TkI5KrxhzZqFrqAVAssnmQSfyOpIcvl8k_fmNruBVTvRU4SQX6NhK_pAP8ZPXxTcIJquM5Z62_3tyzLmGkc0pmbu09S6gNpQW4f4Or1udNr-I5hp3_BrNnbBvVBPqq3P-dqEX42QpNkLpPMt135ocWewN-h4Z0eyjkCzgjqUKIt8AYHrToyoQul3uv9VJvzpp91kA5FQi5wjtaduqTwxfG15hLRKskLP-aY2jtwn6pYU-j7GEYp5NUHlyIZe80Omg1GZF61Hw1hwjJkkArRiYa3c2wDowUOKulM_upQKC0j9M27Ys6xZmzmlly3UgsazmAoze_ZJMSY6eG1lttz95QQeRAb0VI7yigqUIGcq8CkGKRQdyteVkdJ0utbU4vD6MeVYoBjo3adB8uSd_Cy5s8wfo-ixNwhyqSRle1UnHcZSlt3_GGFXpX7cu8GJGd4lwj_uWLHgvQYZm4EZ69kWCeMDFVNluBhBZMST3jpXZQLzrfgAcUplloqe9lXFnQREd8eeOSDXl2x_ETaSHKfHH2GIGKnk1Y2U0fxikaB62T8Jw8spe6TpLPefX_IGeTaPpIWp3WYBfTbbCBg2Ah3AwiJUbmtSR5juZCtxCng20awd4g2MfRv_aZnse8ftNZBcHlpk3AcDkN6UTmE_ipob9okF4UuhaHgB6QNXPcCA5qDRo-lhZSA1Pzm9GFdwNkqBzUEfOXetkDXCf6FLbq41tjhRCaL8CemMG0UtIYFZ92VB9e--JAmur1bP70T_K1bz7OR9VtNok-9uCqL0w5RMfd3DVfMaeZznVgrjQePg8Lj3Ke2mKcsFaN0UVq1aK08viP5h-imPGNN3LuQnlVycYM-ElXlc_AsdFVjOTj2os9T9w87yuxCSjhtFEzKD8Cw6lVAGeiFnTpseTAVSfgKQQswMx48DdKarXLlp7O5YQiQrLUyGKwL7tdS_osw1Canxs_DFlkcscmYmkc1359S21NGZQBgyP7YMgO7V8cU_nwJu9vFW-yR_JxAI7rryy2UQ-aROLflSZKWDr_-MEziibjlh1KNBfkDcoz1bdlpnklxe29QCtds4-0rGjLeHlk6mhqSMTDWXh0KcJF0hAbAkBhYgIBob_FhYT_7fpv2tT-nHKGXlXMa__ooz8oPSpA3-ie1175EV8KemaMCjPCu3TBAJN-LeGkHOEudr__sA-gZr4K3wMZvVtRwhOqhAD-Q3MqWAbRGs72t2ZA6HXaVCGx_yVlmW5gym_L4JdtWLLPvuuv4xrOf53exf5MHXMAOjP2RbtT3m0PceJDvMNUy2Y9VQUOjJQCC1MUbG_XiGqW4K7CmKEnS-ydnvZWLS7NqftPVt9hiHAGVNRIyr9rnkyMVotCC9-0Qn-x9iO-GMZx4cw1S82U0-_E53FQljJeJwnpFSN83Ovc8zdscm48kP5yDEUnXeuSbmOmAlCzd0HEtxifLPnuw727UfMBV3cPvDouey5hPaw7aDELq4eiIJDY5XqfqFv0hfxW5IG38Mf6CLDwvhIGOnKPicCqpbabjD477htQA07fl9pbgK1Lhkr3dmEwDzDtaxUoDNevxNRo4oUgy4GVMY-5xCGnyrFK6UJfCkhaLpeGc73NtT_Uyif7PIrXqecMFJZoSjf6rnIHrlTi147SWY1DHxIXW8vhThWmy6aIlhGW9zMJOJ1zz3X0Ix53fFWDIWYAE7EKNv3WewLfQ3aZhdjVCaJZEkB1AKPOw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c80b1ce78712-57651793','','','2025-03-05 08:28:33','2025-03-05 08:28:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42441',0,'cd-form-entry','',0),(42442,18,'2025-03-05 11:17:15','2025-03-05 11:17:15','','An Introduction to Musculoskeletal Health and Intrinsic Biomechanics','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 11:17:15','2025-03-05 11:17:15','',42431,'https://biomechanicseducation.com/?p=42442',0,'revision','',0),(42443,18,'2025-03-05 11:39:54','2025-03-05 11:39:54','','An Introduction to Musculoskeletal Health and Intrinsic Biomechanics','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 11:39:54','2025-03-05 11:39:54','',42431,'https://biomechanicseducation.com/?p=42443',0,'revision','',0),(42444,17,'2025-03-05 11:56:11','2025-03-05 11:56:11','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 11:56:11','2025-03-05 11:56:11','',42431,'https://biomechanicseducation.com/?p=42444',0,'revision','',0),(42445,17,'2025-03-05 11:59:49','2025-03-05 11:59:49','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 11:59:49','2025-03-05 11:59:49','',42431,'https://biomechanicseducation.com/?p=42445',0,'revision','',0),(42446,17,'2025-03-05 12:00:20','2025-03-05 12:00:20','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:00:20','2025-03-05 12:00:20','',42431,'https://biomechanicseducation.com/?p=42446',0,'revision','',0),(42447,17,'2025-03-05 12:00:42','2025-03-05 12:00:42','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:00:42','2025-03-05 12:00:42','',42431,'https://biomechanicseducation.com/?p=42447',0,'revision','',0),(42449,15,'2025-03-05 12:00:58','2025-03-05 12:00:58','','Biomechanics Education - Enquiry Form - International Lead Gen - March 2025 - EP','','publish','closed','closed','','biomechanics-education-enquiry-form-lead-gen-september-2024-ep-copy','','','2025-03-14 09:55:27','2025-03-14 09:55:27','',0,'https://biomechanicseducation.com/?post_type=cd-form&#038;p=42449',0,'cd-form','',0),(42450,17,'2025-03-05 12:01:01','2025-03-05 12:01:01','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:01:01','2025-03-05 12:01:01','',42431,'https://biomechanicseducation.com/?p=42450',0,'revision','',0),(42451,17,'2025-03-05 12:01:43','2025-03-05 12:01:43','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:01:43','2025-03-05 12:01:43','',42431,'https://biomechanicseducation.com/?p=42451',0,'revision','',0),(42452,17,'2025-03-05 12:02:48','2025-03-05 12:02:48','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:02:48','2025-03-05 12:02:48','',42431,'https://biomechanicseducation.com/?p=42452',0,'revision','',0),(42453,17,'2025-03-05 12:04:43','2025-03-05 12:04:43','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:04:43','2025-03-05 12:04:43','',42431,'https://biomechanicseducation.com/?p=42453',0,'revision','',0),(42454,17,'2025-03-05 12:05:36','2025-03-05 12:05:36','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:05:36','2025-03-05 12:05:36','',42431,'https://biomechanicseducation.com/?p=42454',0,'revision','',0),(42455,17,'2025-03-05 12:05:49','2025-03-05 12:05:49','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:05:49','2025-03-05 12:05:49','',42431,'https://biomechanicseducation.com/?p=42455',0,'revision','',0),(42456,17,'2025-03-05 12:09:54','2025-03-05 12:09:54','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:09:54','2025-03-05 12:09:54','',42431,'https://biomechanicseducation.com/?p=42456',0,'revision','',0),(42457,17,'2025-03-05 12:10:38','2025-03-05 12:10:38','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:10:38','2025-03-05 12:10:38','',42431,'https://biomechanicseducation.com/?p=42457',0,'revision','',0),(42458,17,'2025-03-05 12:11:22','2025-03-05 12:11:22','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:11:22','2025-03-05 12:11:22','',42431,'https://biomechanicseducation.com/?p=42458',0,'revision','',0),(42459,17,'2025-03-05 12:11:38','2025-03-05 12:11:38','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:11:38','2025-03-05 12:11:38','',42431,'https://biomechanicseducation.com/?p=42459',0,'revision','',0),(42460,17,'2025-03-05 12:11:52','2025-03-05 12:11:52','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:11:52','2025-03-05 12:11:52','',42431,'https://biomechanicseducation.com/?p=42460',0,'revision','',0),(42461,17,'2025-03-05 12:14:36','2025-03-05 12:14:36','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:14:36','2025-03-05 12:14:36','',42431,'https://biomechanicseducation.com/?p=42461',0,'revision','',0),(42462,18,'2025-03-05 12:23:59','2025-03-05 12:23:59','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:23:59','2025-03-05 12:23:59','',42431,'https://biomechanicseducation.com/?p=42462',0,'revision','',0),(42463,17,'2025-03-05 12:31:11','2025-03-05 12:31:11','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:31:11','2025-03-05 12:31:11','',42431,'https://biomechanicseducation.com/?p=42463',0,'revision','',0),(42464,17,'2025-03-05 12:33:04','2025-03-05 12:33:04','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:33:04','2025-03-05 12:33:04','',42431,'https://biomechanicseducation.com/?p=42464',0,'revision','',0),(42465,17,'2025-03-05 12:35:28','2025-03-05 12:35:28','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:35:28','2025-03-05 12:35:28','',42431,'https://biomechanicseducation.com/?p=42465',0,'revision','',0),(42466,17,'2025-03-05 12:40:25','2025-03-05 12:40:25','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:40:25','2025-03-05 12:40:25','',42431,'https://biomechanicseducation.com/?p=42466',0,'revision','',0),(42467,17,'2025-03-05 12:41:11','2025-03-05 12:41:11','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:41:11','2025-03-05 12:41:11','',42431,'https://biomechanicseducation.com/?p=42467',0,'revision','',0),(42468,17,'2025-03-05 12:41:59','2025-03-05 12:41:59','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:41:59','2025-03-05 12:41:59','',42431,'https://biomechanicseducation.com/?p=42468',0,'revision','',0),(42469,17,'2025-03-05 12:43:53','2025-03-05 12:43:53','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:43:53','2025-03-05 12:43:53','',42431,'https://biomechanicseducation.com/?p=42469',0,'revision','',0),(42470,17,'2025-03-05 12:44:17','2025-03-05 12:44:17','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:44:17','2025-03-05 12:44:17','',42431,'https://biomechanicseducation.com/?p=42470',0,'revision','',0),(42471,17,'2025-03-05 12:49:42','2025-03-05 12:49:42','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:49:42','2025-03-05 12:49:42','',42431,'https://biomechanicseducation.com/?p=42471',0,'revision','',0),(42472,17,'2025-03-05 12:50:39','2025-03-05 12:50:39','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:50:39','2025-03-05 12:50:39','',42431,'https://biomechanicseducation.com/?p=42472',0,'revision','',0),(42473,17,'2025-03-05 12:51:15','2025-03-05 12:51:15','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:51:15','2025-03-05 12:51:15','',42431,'https://biomechanicseducation.com/?p=42473',0,'revision','',0),(42474,17,'2025-03-05 12:52:00','2025-03-05 12:52:00','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:52:00','2025-03-05 12:52:00','',42431,'https://biomechanicseducation.com/?p=42474',0,'revision','',0),(42475,17,'2025-03-05 12:54:02','2025-03-05 12:54:02','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:54:02','2025-03-05 12:54:02','',42431,'https://biomechanicseducation.com/?p=42475',0,'revision','',0),(42476,17,'2025-03-05 12:54:38','2025-03-05 12:54:38','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:54:38','2025-03-05 12:54:38','',42431,'https://biomechanicseducation.com/?p=42476',0,'revision','',0),(42477,17,'2025-03-05 12:57:23','2025-03-05 12:57:23','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:57:23','2025-03-05 12:57:23','',42431,'https://biomechanicseducation.com/?p=42477',0,'revision','',0),(42478,17,'2025-03-05 12:58:04','2025-03-05 12:58:04','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:58:04','2025-03-05 12:58:04','',42431,'https://biomechanicseducation.com/?p=42478',0,'revision','',0),(42479,17,'2025-03-05 12:58:27','2025-03-05 12:58:27','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 12:58:27','2025-03-05 12:58:27','',42431,'https://biomechanicseducation.com/?p=42479',0,'revision','',0),(42480,15,'2025-03-05 14:19:56','2025-03-05 14:19:56','','Banner Template Draft','','inherit','closed','closed','','42171-autosave-v1','','','2025-03-05 14:19:56','2025-03-05 14:19:56','',42171,'https://biomechanicseducation.com/?p=42480',0,'revision','',0),(42481,0,'2025-03-05 14:24:18','2025-03-05 14:24:18','{\"firstname\":\"Ellie\",\"lastname\":\"Test\",\"email\":\"internationaltest@outlook.com\",\"contactnumber\":\"test\",\"jobtitle\":\"Test\",\"organisation\":\"Test\",\"country\":\"Test\",\"pageid\":\"42171\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7qiUZbS5IFYjYq3SIYICKaYoqKUiaXh3ESx_yvK6U8571ez8WD-FPMC7YYVRXXBMfBFMliiasEy4oI0TOcrwmd603UyXw4Ad0mRyX2Sr2SP5n1703SeUlhw1JdTNf8vs1eaKpDBjZl12zCqxwLKTiAlfKF8FVPPKbR0_dlzp3Cxw0LOf0QJ1-JIC3LcaUKJQz8QWEGJ9hPdKqh167YYUrGSDsFaxHR4oOGU5lm-Q09yFgLmTFoX77yLStXpvbIhuEj-9LWaaRZYCeBHmvb5WpNai8eWd-3yp9vo5VtN9dg6TN0lqCcpvxYa-UBkJyOo1HnpJze9nmkK9Jx4ogc5YsdZNfbs_2eyONjUfsjpZPsu_lrW_nMUvrBarAbFFX4fwQomwfOncoYzh2iB9Za09Fyad9dxKR4NgK1KeyS9sB2QK29GO7hJzfGK7cpAr6x8i51JyQGtfEGNTz0X3E2EBtj8-mRIlqP3NZR9xKC5OkhGzzRQYuv1tliAmu6_SY5-lmGU-Js0KNbIYokAAPHGbBqeFsiuy8nDpqee58uyxxXTJO2opPaEU5aVlZd5j670tCtMclGbinF5DWRL5nyFZvUe1DmgTUNkH35KaGJRCjjE-E4N5u39lXJDXhS3U17fTB0Na7Uwl4N9W-0ZJwJG7MMhlyh7XXu1CXZmsxnVFanBDb2kCpioR-E35y5n9RzB9txPpp2hissppSkyBpneL3Xhwa4ijwG-8k4us2XUK22bXDuZ3tMO4_BRJRcMLeDanG46KBriEjaUvJkj-rS0zLRS0_0hXmyToKYjZpW7n8mAWjTQGFEc8Z0Lgpr2ubuZTb1V_-uQSZDO9h0ljCGobnyBzRb1SE27ZKtNOzGxMQuLE0skrZ07HD_arIIbjuzBgxmSi9im3jFlRaIsV0s0scLMAJiM8_UoV74sgToQDdPAm_myc61X-wrL33uRUzmDplQNjRzFa7S5f56lhgpTX29fyCLI8fFzxwDjvBDDt3xE_oRioq3Mr6FOt8zUg6waV9O-PeKxbjhtWAJ7oq7HqbaEtvC4CXopmrdEcI4zOT-zsxjpoNU-YsbAfPB9v1EqvacJTwcxegIwjhNagxmxjxxwCu3uJ1U6p5au94gAJ-N-JJSxKX21FnD4nU2_6jKRoz-sRnQg5t2twEdmmJ4uVlIirqk8PSG2kDG29GnvLF3NdKhK1A-VQX-pYAxHUe_8FbJeOJw98gLMTudn0q0RaSTPnALeveTXz-lE5kBpOpt70wcCbN4muYjDCnAgKKYryh6SBCSt34Pe55gO6v5AptOvKCfaEn2bIfu3k7HdfrEcJVI3b4EeRP2x7c3vKEG7jLeSmjShxngLy9dkVg3PGUz5G_OVzUORMRGgme0mMZ8TfSyjGrPiNjM76Dt-405QNZ9ARHkgWj8fDbTpOf4l3lC-fnO6_Io2ZguRjimucM0uvPcM7G1QHsfEjFOKEmVkdV1fZkm1ASdZdhz_wvTbsEnW_9JspJzW9xRP7hVM4MDr_9zYP7s-0aobulrqPZZnYbJ32MY5A7pXj7SdJQFJgjNOiGClfwz4ZQ-6kj_2oByLXKkzeZezPPqQ8e6i_ILsVV0-V9RUXZESUA5jB5SADMgcYhHQTc0bEzKjbcFmKabrSIuY5m1wxOfQP0Iuj_gP0rNHxSUWwIWc68a4nrVlAi2PONbopafzIRfIgoCZDhnvVgzEYhW1inbMHYxZ4Ak13ydokj51TYkhlglnU1rRlD2K0UUdyoxZnaMezs2_K6fxda4vUdUS1KjC-uYcuQMkYD8SJI6Duhd0MWb0Y-kReSYaFTPv1egESVyWnCsFZbc4A_ufNRUtjDOxRqJ5l6AqiBLd1V9822EFTgGFqTvOMJtXoVND2uIBFZgEtPAzdS5cFipAsrLJNFZNaAvMMkzhqZNGMlDy4Pqo-BqTufx-IFMn4CGUTPi1TUgQEeQv5Lce2GL4Vz1vzG9s2qMoyitS38eVQcuizM_VpPCmqkvKIRW4YSPI_eT6EeWDpPrbzZ30STB1II\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_42449\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - International Lead Gen - March 2025 - EP','','publish','closed','closed','','cd-form-entry-67c85e7d211a84-31924282','','','2025-03-05 14:24:18','2025-03-05 14:24:18','',42449,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42481',0,'cd-form-entry','',0),(42482,15,'2025-03-05 14:35:43','2025-03-05 14:35:43','','Banner Template Draft','','inherit','closed','closed','','42171-revision-v1','','','2025-03-05 14:35:43','2025-03-05 14:35:43','',42171,'https://biomechanicseducation.com/?p=42482',0,'revision','',0),(42483,17,'2025-03-05 15:29:49','2025-03-05 15:29:49','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-05 15:29:49','2025-03-05 15:29:49','',42431,'https://biomechanicseducation.com/?p=42483',0,'revision','',0),(42484,17,'2025-04-08 11:53:55','2025-03-05 15:44:39','','Articles','','publish','closed','closed','','articles','','','2025-04-08 11:53:55','2025-04-08 11:53:55','',0,'https://biomechanicseducation.com/?p=42484',26,'nav_menu_item','',0),(42485,0,'2025-03-05 15:56:10','2025-03-05 15:56:10','{\"firstname\":\"Alex\",\"lastname\":\"Staicu\",\"email\":\"alexandra.staicu@icloud.com\",\"contactnumber\":\"07366176107\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA69Hs87Bfv_wHjvdLBMQZ1ya1s39gF4wlDvec1z0OWsNPtB5Ad6Uey_QfUMWERu5tVJ293QR0C_j67OkdMBJyQ7EDUvBo2OANvqh_UHjoSGsR64TAMILKi6YBZjtDzMTl_PdoELDsgvoboj4ObOFs5ZvoJgetsZAUfneSAf8UhY6l4Vp09KBTamU_YeuTbP4ZCIMM-lJG-YP4L-0ZzmSC5f9AYCfAeEv4wz1IELkwieSQd0Vg_cKADiieI7dqf09YrOfsZZOTY-Y7TIpEZPpsz2TeeD_qGjAWhYFJLLqXOH8baV_6fIN_Ct0n1c7lDcLGFPFbYTkMd20_sxwxUMNAyBXSrfjQrwL1JKzDpCAnK9JcJpbno3m1UWFHr-DKUXXD4-sMnaxkISBRdHNq3huAFslyiZbWFk9vYbdVOilzZo0-rGB4beAM8V_EroZm26fgj8WljnjwyHyGVVkqGRFp2ViHi4MB5-4EFWegWpwJQ2QmdN-SqXPR-R5T7Ltz2mMx5UYw5Z7JltlyH8luMuxIWsBbIe7W3WsuyD_FGK9mhzUECr1Jbr2vciHBu8yiPmppSvxUUWgBbUJHs_ExvokHFRteD9F_2JuYBdgG8AeXOOoaSJ2pnE9jX6DyaWC8vXnCWXwBSaH4qgrd_aBxGIjf8HXUHjNvAogOU4TUTTl_02zKuAtjstSOlWB7EN9jk2bcNjPs3OA80yfJRINI5lDealtD2H1NZ-AeoYWYrBjMX0buE54bgUOa90wVLj4UXfF6djYQfgYGzIfv3cxcDfpHiK-2S5hUN_jEaxaEH-32zMSAB2so4WthLF13VIhs7Du6a14fwkcrcJf32XO-e5z4ijDlhHOzQWF3u4dT8-peaHfivoqQOdjCLoMzS1K2Xf_O2WxhQZUX2sWBHKbTuruiUe0h-BJVBSCt3DHvtLVJReZOlkQuPDwPz16ZPh3ogpISGd8IWSN3Rk88-tN_eTIk78fFS5XU4WCL5T9lsQEMqDjyiZNz_y-xefSlYn64J_e9_I9S8wWwxX3LGcwH5KYk4oFnOTYH8dJYZPyyv0HHNPMJOvoNpJVUjbsr_2mydj0Um-p_pe0fmwtFUtFXm4uDO8xX5Ijh-jXRPJOb3STV3obZ99035Ey2-ZSIIZC7jJ1Y3qxNbj4QhD47qmO3X7V3DeLvtd_2FC18M_XAaE4ybO6zCK0caWUdHoiCOWJSFvhVPSHDCVTX6GUM5FZ_rm3HLS0G2gXRqPu4mn-gWfY0FhrVbabejQ98XPAqtTASPLKl2cu5_PqIQtaxFRnTqylAPa_RJDCUd4H_KmYme2O5kOS4SMmhAXNm5Injii4Fte6JnChl9eCR7XLB9JmDBsctCYi9jiBJwP70r0mHHMxx_oIIaSM87_wDebB8tzML4qkaFbtwEWmakBUmZf7HB1XBktTgi0qZP9kFw6wUAfbxwq3vrqZtVJtWS-jMyzHl1XX30CsKViOSAlf0GKYGRowyTr8SFAxJ7slD6QqZ0koWduydPekGli4NNI1EGcY6AVq94ZZ2Z4kFpZ_fhlOoEaILYnCEz3bHJFPafafOiUunVN2SCi8oHm79yR0NGC8TAS0zv78U9KOdTBw3G7E7CzBec0WVMrw9blyI2yEGi7-UZYBYxkIE92VJkoA0IebCSKVfjMe6VU5cm9RCFNUK32irQFzZ7GUnGW05R7eI3w9ZY2XGzXRRY7FNtwH7bfNy-zy7lWFFhY-lmqghKT-P_5RpAU8aKeu0w-b4-gnmW4ZIccT1qg7orzMjb2KI0YzoIYTkPc3XiNGrw9ynUJMA1vbv4oMFejesD5oSJkyTteukuGTQhlWUpHcG8-f8hlJ-WSiDNPp96Z14P00Whey48f1BbVtmltMvflVkQVlmzGGhrSO3n434t1BC-Cv37xbg9EZULnsmTS4zdfAM0jURqtaqbz5QUulIk1u-EB6eNK9xR1-7kZfuBKe_tjiZGBU5DDEnPBrkZImJfKUtLiYM_DidsHiDfrTyjw_G1YEQAVD2wLl32VfAEUCbKFdAXFca0H9sz8BiuwcyNuc5VwPyNMP2M6qOO_CZTB_31GPJTHPQbEGD5FPTqAhAVbA8TXSYVYAqykgzws2NlVrCLxTuuSXy6nDlKhkU5vlGKRphrcW59Bet_Lphko51afcKxzXl3B4_t-ouQOSyrmgGI6mqpEMl2MQbzBGdDoCXhgg0payFeDjb2looSkfvIb8qI-No-WPyd9SJ0pJv9odKRdfJosBiAFSC3IOQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c87409a3eea4-88433531','','','2025-03-05 15:56:10','2025-03-05 15:56:10','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42485',0,'cd-form-entry','',0),(42486,0,'2025-03-05 15:57:31','2025-03-05 15:57:31','{\"email\":\"alexandra.staicu@icloud.com\",\"interestedbecause\":\"4\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"5\",\"currentpostcode\":\"IP14 1UY\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA6tKUe6zI9lkrI1HAxrNCdOLICEycFGNl2J7GciHt8h1cNbMnugo3VuS3BkCf9F3hPV3j-q6uM8ijICGFVogy-KccVI1X1CY-jtr2DUjRm80TRhJ2Agz-GYsGWHTjbY7PQ1i0W_Ey66CZxl2rrjGKZkukXX2PDp__7JDJj5GoA0Mw3MTz_QNkhlXhVDjjtHjUjNiMRNCCB2Yd2bCF2YtSZ_Sf3oh8Z9rwvYwW52y2ffpf5exHs4h2VOq68dL6Mq_gYoTjAa-0LB4oAAmwOrupiXMJFi2SRjPk-ft0NiIYhmpj2asxp3uL-0BORJlcRWduMp5edx6I3CGEBOMB4ZC5MQ6tD2O_HcCe58gSp1fUglVcj13m1AQb4rRQO7Of0FrzVKQeTh5Z9xUwrJVBwUWHYu-UvWoeqlhnxulAl00ic9YxKpkmuzAylHBJwat-4kvWwSbVwUEDRN7K4fTJVLvWZWCeKK6RNjaW5HkwsGxeUjNcm-98lYUK4f0AvzZA41H_tFbky3C-4EtH9uHfp2cUX-nJ6P3O_LJifDiOgARWX2OigMjx2mNiDFyMw-B2AWgwFtKLXdfWfdIl6PQHb8XDElIcqul35J_UkzY4mOCb-viHQP8AyLdeBP8rs4TawZLfj4pAW_frDQlwVk67vi-4bmILbI3DgSYCmZ7OSqwZtr0ZZeYjV1jy2Arw4BTFwnqMKtF_GOXpUR94eOieLDn5wQvBgVvH6g-2bvyIANEdXiO26By0RvsbNybs8Ys4LKQKw-1WLkMP1pKu3ROi1wcv7ovziM7rOYWt6_kdpf0PzSnpTdHOblvRDBVpOPWwS__P2z8rGoWdaAc0zbiMamoXBCQiMKG3TpS1Mc46x46N0P5K8BJ9-44DhA9VxVjeuA4m-hHdJZ0_9H_5tbBTyOZy9VefVVlM1Zp6ds-AkH9SfhaeaK0th2QkvWUMAMa1d0VHjFwN6GF_uWuamJRUfW2rZrfScsAFzeWPQT2YH7mKfMNLfsUO-tKbSGidA_p19ZA9DGUDOk2atLQsZuQb0gHiNIUMRLk5jByYNs2hDVr0sTSwcp3j7KzZiboLNekXPx-FZbVv-NMTfC09WHFoCDjqiKGJNEuzUHbt6htDWVfNPqJSLGNDXTi2xZAjOXOudKx_RuoKqOb7-1a1JFNvCjWEyc1F7rkn3DvQlZvZ1lQOrLTmfXyvhMtIfb-LtmOdmd6er77lFo4shEudznXrfoIwXRobDhlIQoTiugRh16ZigoLi2t1Je7phtrhVOoBukADRJVKma-wAZZZ8YQDKhxCJEQH6RF-xKOrIL1fuZ7Ie-cJfFm-Cvnu6ylat6en2XNix9o_g4f_RUKf_DcXEHv0ckH7mI-qzAsVxPxVgFC-hx52wP11vl76v-26wH5hgxqYNazmfmd1ew7nVK-HpXVmiBUYm_q3hlvy-3nod4kNX84oxVFvNUUEQeaeaI4El7UPEb9OUHb9h2BMlQU5RvUhOyzgYpT3NUJWWrsLiyyb6VVlb9e_Fk8WnFkd0E1lEa-v0e6YZCmlKBKuyCqbjfZao_Zualv39dCp98wP_kwQGs8vr5jy0_IMrjdMwrhnMlfqhPMIXWyufNKkQHbJ_jNFFhdSGMnSLF6JelxeZIddYNZ0dDc4SGsmXdQ3rx_yJMx4P4pq3Oukvs4vkjOcABIyWaFROkYyo2svLKs7FN5XAeQOKBd9TBH4MU5zIcsFfdr-juWba5s5-8WWJZgRTYDlel4zLIy7TWPl-Dk2n2XbjXbgviv8BgxOIdoOTQpFISEsgdSTsA_tbVWvzVY_7OE8Le3ABwnxgjdsfCDXLuChUhvPMMYDULaJ8_fVMsGDuzLRGWgpAzMZ_4StZe8Vhd8N4bIGGqbIDkaCcpvpZEmZ0KxP7Md-E-YAsQvVJC9whjvTp4UeeLX5vBgLuQTnqs6sB9sFBHt7AVusOGOqLxS5axxmkMfLHrCTm10aStFW-1LIb7MJE9GZM-PrT_-85lIWRDO8jUkANrq5FVjNEEkLjr6fz5h67-OwTd5L_UO4izF-W3lI1-Cit2-sIY-HSeAURLmuHxjd4pGHgASfsDX5wtJ-AP3wk7Wt4W4jGVs2kDpYsTIHQe-awfobXqs8r8sBjF7BwkFq8WvrI62ovjKb1SABolmzioVEqFNA1JqCd-5nRV051U5A1LPLXFQwjxMuqkPIWZvEmGitt7GxauWjOYS8_BmvmAmwIhWkpj44VU-baCc4rdF5qiHdaNxBvzMWNhfswAONTn5KGvMrlXZqMnPPbPjrL0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"15\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c87447b0a8b2-07766902','','','2025-03-05 15:57:31','2025-03-05 15:57:31','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42486',0,'cd-form-entry','',0),(42487,0,'2025-03-06 00:36:55','2025-03-06 00:36:55','{\"firstname\":\"Shahed\",\"lastname\":\"Al Hindi\",\"email\":\"shahfitfam@gmail.com\",\"contactnumber\":\"07305342083\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAiaC-BhBEEiwAjY99qHOw-59KsVxYNA61pqMFxIo2uEktkV11Pk_niZi7kWKdocSjnz7nLRoC5MQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4gzsDokQxjmOyESUJBzvp8KcnMpPrpF4xvcGBlrAm6nlV2mfwJLSicY1ySROAnTv7VeAhdUcolKNTt7XLAFuJ5jsFVWCOF7TEujv-dZazdiTN62kZONTy_MvBACtQRGFp69RXMqp6wd8wzdyoQEIPQEnDLKjUh1K3mH8Sij7NjgtMO20Bz077r4hlqF49RM5QqnQ7RCoHgu3EOVvKFhnMEaS6INAI_4coVDXjXXGBy2xuGDwhBdV9k4RxCCi0fZQbXAp5m6Y32p1rucF0hEcvheQmtay1YdiolAtT2lr2kmhCV9pD7bdN-ozqoN9sbnd6fQ5RC4k2TGlqXJbrOHe0O0GOcXu1XEyQ4MjzV0FMo29GeO1D8eBccNdGYk2IJzHhUfMiofzQDL3ZMq4_pt2xMN2Md2nfhSDHnDYzin5cV4UuaWNRkAslRveWbasHfxcKj_X83MpybrLB0dRYLaLIW55Z_dCaBpTeHSaDi0FVnvDj4ATZ6ReuOFubKBZVd9Z_G4umgg0HbJTfVTwoRR7_rpoB6qVGvrkZae_b5xIFyyZlXic_fkAVeO5QI4q3ch_k0EW-Vo6kHBBrGxe7k-gmUyhS22quAM7pwdD388MfOqpGAPMqRacsM0VFGgsRf0WEIeja3gALD1onXyotc721E9Wlia_QKNIU3OGpfiHsqtnUa-G65nCyY5Q_Oz-JxRfCXcjYGlfjE3XHLBl9FdPoSrwy8MIhonwwCWE9lW84K1iF0Pkc8aUbNdhVjN33YDDuImE_cLqYOOpvBdt3zW0lqd1v1dCzAYA65cr7HEfhZvs0vQJC2ZduH6CQdc0A1fAG4_iKeqELH6BUm1nu5xygGidjHRZTDe4GFDqVAEFRU620Ipc1lRokrtXJlETs6YOEvH3ggfVZllOiDSUv-N4lGyIagH_SxBS8Aq3o0mpyTOHSKSyzpEcYvqdKF-7ZlVkO5gRaZRnXpMXzesw8wh5kLK3-pt0Em5bpH8rsIsY7NsDsMgcUVaQHhYtQCWDK4Vtbsn-e720Qq85XRhi_xWwHyZZNOccWghu3OTz1IS7gmKoM_si4tAADB4_IuKGLgCQP8xcr5TdSPsjUABdEorbrX-4OZnr1iJ_bJ44iek2PTU5PgA0bm03t5W1DIKhso4aaXe5dFHNIi5ACdZFv08pXmawgqJWCnmlry4zHQ3ufyi_iPr690FQ8di413Y6VdSK5epZZCVTb8nqsVHpOmyc8i-HbQ6Pt-Jq9HVxJjqHQXxOAKYo7mYEwMH0Tom6m1BMI3SgUPtoJq02pqxB6zOs0q38dW3YlZK_agrnHWL0w8hYokWHUxSekks3YJ39TfXsxaLbKEYrDHDXOaD0GT9hmFqu4AOmPjFEDkpocROih_3rOQj7dlJFAIUJmnhrijg_dLerwkH3TJW3Wzx2NzqREZhpmZYF6oNtkzug8TFUmBuhsyh8wrRfKl_cMj6AZu7K4QPuf3mVE5C5XU3jn5zwIpbEz-HNbeUWGOyIm5nYilwukvld0ZiDJ7qv7T3z1maLokluIDzSm5jGCF-1nPaqm8mLXTKpo8n0rEkaIdXx95Vmy_iDTbr2cXjSkBboth86TVjrYLy0oKldKKkuwo1xz4Wk4U7N5DghzESR2P-xcxI18angWmoK7szGm0UmbGLCX54Qs6JFl5VJXec0MAHgWbXi2KZsfR5T9FqPC39pjkSxzxstiF2ZRfylhxT4vYiA56HQ_Ph8haDZ3b920z7CRRm8OYZv9uMxdMAxVmoVxL-OrfnRKmfSjM43P1qtWmI3JAHLoeWDPXoKOXcrQyRFGl8X2VL5VaAg4In0aVLNW11yj-R6ZvY_JkKibYmP-5X6P7kdpuOWxNNI4QLaLbxuV0RDHZf2kihKp6oR6NHm6zcdzg6yCDdEJaFirAB2pPkXJnlXi_W4SQqdGG7oS-iM2uYWqvD9N0AkaYVclcfrE2I88CGJAvZ2qnq0KpF_UHnL8KXi1Znpa_OrTIRqsMRQy0qY2vfIcIYV1SgTDsVN56I6mQTWLqRzRopk1-GHYGlXz8y3ui\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c8ee1c7ff640-86441841','','','2025-03-06 00:36:55','2025-03-06 00:36:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42487',0,'cd-form-entry','',0),(42488,0,'2025-03-06 00:37:42','2025-03-06 00:37:42','{\"email\":\"shahfitfam@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"5\",\"regionlive\":\"6\",\"currentpostcode\":\"N17 9QW\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAiaC-BhBEEiwAjY99qHOw-59KsVxYNA61pqMFxIo2uEktkV11Pk_niZi7kWKdocSjnz7nLRoC5MQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6TZG9gPKxu47DizdeIcEDOZtild6IVzzdQ73CjL9cUGvAiLmERf8Yt7KhEDwTr4IioZhULMm46P52qjhD2jgQ7dkFWYifGfzsxZGACHw5m1Xf2ElIU5YeG3evlXCyIerCCYJGnXekWDK_gpF3ndmRdfWZD1IRvhUcx2S2wKJ2JkfDHKGHCihHtuIh1LMfFQgSAFdyRFESjZI6bEP2py6sT0a65I80uWuWDkq4wAP-aPnbP3vhg9a_J4TwSqKJUsLZgWFfs5i16uPpBmAvo1JUw1cEURHWbVvYrOsEcqFW7rSQmAu4qpibF48Sq723KppFiI9LDVyEGgnYj7HirrLS93jQ0NxBb4zV7nqCo-OSprjd0OveA2LLiiqPwCjXXj-ydpa6z6BsD3bmt_RKtbLJ4iWj7oTeHCopTT0y-pHFXYGEbvHrWCb7YM5U8t_A8Gj8H0fuQzVdGFGXFSol_R5BtjtJn3PZPHXxhwzyUg3KVCqcRpSY6uwQmLLwYXWzzlr6-veloC9dGzcePAy9hKTimEj0pI00vsLvk10PgmuJhnLWHwav1pQKVSJnUJ_VBVedJiFXN-vfPvfxmHQLzWWBZ6g85q1DAmYxqJQ_L-6As0L7U9714FH3myVLTZIFBsve-oZzJRQ0gfB1fUqaWo2sji8wEHnm8y_MgeO2Q8vjjIdkXOIWJ2klKIciKwtLr6dZXfSHYUMSl0BPFzLhXqOApeQHXn840tclFWCFT884VNRko-v0lA4sbMTOI-I8DUjsozFznF64WJoLMwBX68cUB_4wB8DKj_xb6LU359BGiPuujVHtP807DTeoxXmsdybQgfjkwbOaKHCFcle4rW37g9OWvkI9xsxeWqwTEiQEu9kzi8EBtCSq_M50V-ynKVo_wH3Wa7ZxduAmKPIr-E5avZbRT8TWiJDaV_zlT-kwkqNyxd-h7ppcU3ZP7iXpD6gCNJg-nbW8ZtRBx4Ndb3sAsmL5Cr4AMyX4XHAyRHyrfcvcbnKlIheFfKFbYituWvDiitxnYmLx4bWdqmbbKBHw2AiPJByxSXxgg-RwrVEYq6WAuRxqiQd_QnN_xhOG4lTNRykDlMCb0dKzHQ41FRtiJ6I9tye7d0RRlwZAiHm7PlPhHyGk31QKZFQ9fRmW0-DD85rEAWXAkojZN475lJXJHcVAWvS4pQvrx5LudxEgs2O5YIJGjGO_FqDZ648hk91D-3DSmEfPncpAGD42PB6i9cwStGExlv4npxLx5jpwm5T_APKvp6SPlwSG3fuzb_HG03Ihhq0wJPlKIcuOoDTKqAG8R8F7CPwgUB7UPI7CVTzBqwNGDC4M01W5l7NFW8ZW8zlW8iSDpclM42zkexoiOSvME75Oy2ihmLMbIPgTEI--zU6EcwvjQyGxDuKkfWKCpts8dHSK9Bfz1QlZh6NLQ3sNNw1ZRxc5qf1SCsC4ELlr1vGXmkMY6egmHSMpbsK07eaS5wEWrw7jZOiZqF4rcUhbKokslQewfj_CNVAWB3pEsVpgiJwXpE1Gz8Kas-0wEshK4CPxJkUlTJySQSdaZZsnAQKjoP7UxKoeJOIcpdNVHTZ_7Lr10hcPb2lvycNi9Y8sQsQ7scalfIcBe-uAxbpoIP-uoeOfPGBAhH8sgRdOFZMUOeiDaAOXywIurN9_HFACW1vhxCCp2jBf64ckvP4bh2rxi0-BhUMa8TxFsy_LR2G7KIjpV41nxvNZaj7yTo-D8X4ZU-D8nbwpFiJAP5qy5xpVVG3SsfeGNsxz7WgOYBh9zE3W99EIA8esZWIBKhqkccDcJPHMCd86PuuG3qO3bdvbrscJoO8p4Ug3LM9iV42bo0-YuwWfdpLj0hiYJgJ9-QDfv-3qcJVUFe3a6LVHNwdIp7cQIeX6J1MwF9eIboBJSpebTKYzgCtd0jWU4Y-fz0Ww9PiqPiAUQ-bjnL-XeRG7C_RgrMi7kxCEqW0G61cize7fbtdW2DGywgg97UYaKZTt0jzKf3bPSm2ha_osK9-nKLBWNCjzUfT7s84trPBb3kVXTL66OhlvVOpihN2Y0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c8ee42002fa7-15896139','','','2025-03-06 00:37:42','2025-03-06 00:37:42','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42488',0,'cd-form-entry','',0),(42489,0,'2025-03-06 00:38:36','0000-00-00 00:00:00','{\"firstname\":\"Shahed\",\"lastname\":\"Al Hindi\",\"email\":\"shahfitfam@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiAiaC-BhBEEiwAjY99qHOw-59KsVxYNA61pqMFxIo2uEktkV11Pk_niZi7kWKdocSjnz7nLRoC5MQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4U5nXe4V4eiGfNMMfxMhfJP6kEuPVywyfxWWOd3gu28jKVazocqRNkQJa4Y4NHLnl9LxU7kyoSL4mQnQWuJb55rizh6yTW7LMAp7J2nXgkE8WgAOulXvoJw8oRPeYJOsjvwvSyvCW5mvL65rQu86WFDGqukCsqeTNUEBfnlXNrR1bfTi0xrGvycc-x5lTk0A4WxtwtCFUoMk9LYpHusRc-NQoBZNGLAdWUlMbduuaH8moQje7uJ9Nw2hdNfBtPmsKQIsrVVtFdzPmhJnxYhAAFdJ7viRZpvNIUG3mySeIqzUJI9XsBtj76Q8u4fBI7Lbkxcaud-046BfCpeB2gbfj8aKEnIPlI8HowcvGZMCLwDcADWLHYsYKgrh53No5a9kxmp0vl9uXMPhNsrybBNO7X6e6OIsIlZmf1ozVQrZyFk0bCTwDxf7xCf0SBr6nHD_WxY69vYDskm9nqRqdCXG_VD4OallGccyyR0smQmE8EAOqgVKG4LTjAT3cC7cKkCthXB6ovh9asthF2U4pEnExyWBc-zugxv3LNz5Kc_VaxSVt7O4NOh0QsQUh_CL9dSke3pEx-3UeNYyxGG2wwkdvUC5K32LNxd3IRi_kL9ARmarI6VO46UnGp0tpOOUWpGk7XDN1bNxoKQZTZ2iXN0bvTD6IWfDO9wZhcpsuiOKcAl4yr3_WGo7hwc8xdyjfCZOvAG7VgLy6D-JCOHfjrsv90NjxTmxlHpiiiNvt3sNyBWoL3hB6ifKFivQDfrAkpuPr5l5cdRkDbTs5eVttg9l61ouqQ_nVpf9PahKC_jztY5u1QHS5vLhosa9pXo5vMWncen0fErKcZjLUh33jAbgujob-6AN-1notQqrjE8jwC_SHJbBRyIkM79sj9dP7JWxTKQ2Hty_zZhMreonlgyDHv2QsZtkRSZlqHvWJblAUsGZjAbsqZU4Ek6J5dXUGOnWiMlqOEeIIuIiVNgFJzU_U-FrMgiZK3HzFEL7f6aLqFVdWrDN3_T1Mv-saSA7hPzSrL-ORNTYSeWeyklC1cQR_LaMRGXEoPRBdJ8hAwEUYmvwyAg07UhSugll0tw16llNeptSTn_cEvxm21ImvsdBbG02ODgBKp8o7JFcUDv430NG_FXVtaDkmvAsnLJw0JeUNu2N0yytZTnFk1cHX35pYiBKsYfnfCxcgA_T-gnRl39r7lnl_MAuYPVS9GzCHss0mhJ0AxysGFgiamPkx5SPIg7Ql5CJq-F-e5A0T0u_UpqXeu09TjquyiGnnk_JMW1vTr-JAWEyOMW1Ws-9CJMBBVTg9FjtT_nQ7gtJvCJGoC6ZdcUZGnwepmzoN2DaTw7JRXCJpHl2nj6ib8tD9pKo1oBquxkIBAgcpzPnm9CCc2ptUX1lbcvomh5BVJS_3KwdxtC1ogSAojoYsq-2-O-7_nGWH4z-WlMNgJ4oTZMyuXLS5JdCM9svkdBTed8zhrP8i2297y7SDW6cbmP17PG8bufOvPyk4kQ09jtWW1FbNz8OXpCqT8yLIQU-7CdxvphYNX54d_8DQ1UA254wTES8SLHEKZhQbbBansMLCVYviPnnc2xG9gjELULTH8Wq8nqHrj4inKik96FmZr0Z5V4qnKsYYeNN0guR8G2-O_Q1LlOA4b__Uo5cTLngLnjUbuyIxKbS0Gde5bVNwARZVtMfvyLKEbilsnT-QGWIvlN6gLjr9YADHh3DZip1asg09jyIRXImZNRrf8L7wmvYCvxq02cmcyzWNX2p6HaDjIgMpoxCAPVAVPiw_Lui0XYky9MEOfDDjYabCy44y2RXHvS7iyelFg_Bpt_Rlwrrpn9udstGr-SuXGNJ0lom1qo2GtNwwsz3XHPS8OLmOj_H3gocP7K9MAd_4Weh99SVrQPRH60GNuNSBhN98sFtLuZNvAKr9nTv2_AE6YZwpysIXRJi3POehFA3B39GivfMj4Q-Tr3RKJbe2kQ_VPwFZ3w2WvS5rjbY0ROAkHUa9AVMKP4pmNGxM_cAFuDWNuZ1kZb4nuUm0AHmrewHhL8GL_V5RllrWBAnP-d1_86UXAvTRFVL0Ij--ttw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67c8ee8cb4a169-35764737','','','2025-03-06 00:38:36','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42489',0,'cd-form-entry','',0),(42490,0,'2025-03-06 08:11:17','2025-03-06 08:11:17','{\"firstname\":\"Oliver\",\"lastname\":\"Smith\",\"email\":\"casahero19@gmail.com\",\"contactnumber\":\"697246184\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAiArKW-BhAzEiwAZhWsIL6cK4d6TQ0CTz2M4INYfsahaqzlPRFHdcphrbG_gCvrcO1QpBfsBRoC4SMQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4gObRyqsZY_5l7ykUhn55WGAHTs67RS-wtZ5hNKisZy_BEWpbVpBaTxJjkIzFtJr69WxXJm9o66uIa-DT62aGpA_cFIxRZtFkF20lxmXWCJvJNlnptts009PIQhgwz4hLooo3HPj8KsAiJxwcGYYPPDr7udWLragMH2hvAT56WU5a1YVxJNV9c65vMH68Int-YuXVjga6GCdI7HBbt0OYv11LHm3LPGm12ez6ZhvkFalDOFj8xhFUsDi4PrWsX0CjqtXlkRIMWMlMJs0NlOtGCmWQ5t8UEoNqnP7_VHf2V_Rbs-IByGjAAq0FLn9JvhRRlFITCBXFWQ9V0d5hb7zyqNA9J8sKqRiDlrWl7M-okW3a0MIU5rj3LGtSdUsdzV5Mn9hmtm4ffcEkN5ElEaHSZxLiJ7qPSWNs-o1I3YB4LWk13TH12_7CA_ERmIAYOp9_zWq8IfDr6CVvAcqVbzMAkuNleGPJx0LM0IEb1Pn2B7k-lH6xjBPsnlcke-z_hUOfUvuJdm4Q6GjzBeK_RtQVuXM8gVz6hmliGT52dvGn4FLn06b_UnDB5CTR6qjsSol1ERyYKKlgSwJmVhrVMFk52WbeRUbFUccyBXvHOKp-531yKPDRfKvZGIraSvPJeo8fVEsslTHNgU4f-wg1i2aPDOeR77rVmPUx91T6IWLboqwJCUrTG6pAsYcKq-h5skDoH-4evDxa6O0m3kZouv52xpwvBTzBzQooUt_txskSZdUPki6cDWmgcu3dUyvOaMoOJFNmMXxiDR9y6RGzX3fIMAHH0UmWo8xumFAPkAGfZi95I9K2pxEgNTUHOgyJZWyFqQPXhalACehpmpQPKD2gVLrebY7ZTJIhru0e0DfABxfgzW8IDXXLzsJ5tfXdAzwJwUXKEgzS0NN14o5tpEZTXBruGYRPapj9he6Kfigl0wNHUfokRzwLjePlL0VYrSRBGMu49t8671QkSvktVh3r3SB_Qn4Zj4NKIN9xZAFi61RdJrTi9FAK7xO-vqlLLJAKGWy0hspWk2IRVIPdF_w0lfEry4rjGaBWagku13sdJT80jFd8EGAwQSEVbiBdwn9V8R-Iph27OL585yOAmy0_1zq0SVseWu_QrkKYk6Rco171HvZAV2FWUpqwPKEO9aL7qKgl6wLX5imYwSAon4Ol9CcbuDLhr1QQbqh3XbN_UmVLtH5Olkbe12_RHzDuEPXF0p8njZj7JtAA2VW39QNlRz888HthppXJI_PYOGtoVt9tNBetjzRsxIVpRwvwTL2im1ESfkJx6uPnqIufmCI5eHAMRotty_60LuC84p_S9imDiq7H-rG5wc7IwhxJ9wlkglR4Ll8crGZAhZ4M8CVoAPT3dPBlnP4dAjm9jRUCw3LT5SogyCX3P2187AyqOBKuTxcCJXsSPZ06DI7Iulcv4b8EDRWqlXxksAxCVQDTpLPU0Pj6X2N0ubzJdFw05_-xnNjImtXDabEZDaEWOLPxSxvRIeML-LFE7leB3e9nH0VjHKmQYZEej7aunu5JeLDBv3RrqJlF21EZJhQFDmlIrcgAImzf-7NG9p3HVegQ8HK-h6jCxQrpTq74MNZyv-qXF6IrTHUWQGifgPkqvssWpbekmIaeB5o2EXy6_Qf0Fpa6jzp60namANtySjaSamBTzM4aPSZ5z3T6SRG3xPgeITwZhL4_Ga-wx8Gjygq1iRkJyKLADfc7KLJtAiCQX-yPTI13xg2_bPvS4pySN9_r5U5F0vUpaEauKGO6TOqp6N26_hF3hVeViIaZXWbRW_c4W5nZRU5dMNcz_TRt3eBZwIw8r8IANas4ckMZDf5zhjzUfg5_IHXL8LNjSHn6R4A6IEidbfwSoUFaZLnu7EF6MeejbJU2LfMqdYvJRx_zXHY9krk0fm0qCz844mxtHjVPXiAawGh4OhBZj_jmKRRZ6n48wpWyBW5m9bNrq2gCNAn9XOP7eVVGIJrnqHZrJ17IW8VDWPogF7f9aeb9Uw7O_oUf6OJt4VgMCrZR388x8yIFJb2PEfZrXBeInrmQjjkl_bk01UJCyG2XhX-DGSThFajvyG0gp8SWXQUEJaBRDO_cVzIcEsVTL3be73nHsbypMY0Rsau_sfdtXcofk1QqNPrr1fgxZranasCNZaSPjyjVFROQdwBp5ePs1SgQuy71b5vXUr-lytpNswUWfUcrHBuykdmYzli7m4iIHXQIJYYT_397ix2RR-lEXhbeklrpsQrXD\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c958977f8804-49320860','','','2025-03-06 08:11:17','2025-03-06 08:11:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42490',0,'cd-form-entry','',0),(42491,0,'2025-03-06 08:24:33','2025-03-06 08:24:33','{\"firstname\":\"Laura\",\"lastname\":\"Doughton\",\"email\":\"lj.doughton@yahoo.co.uk\",\"contactnumber\":\"07850121026\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/?gad_source=1&amp;gclid=CjwKCAiArKW-BhAzEiwAZhWsICiUrHa9TFqZSAbeUeLo9uu605PptTVnfInQZyBXtOpm362HiHNnLhoCgdIQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5xz0IM1GubgxRG2cgbeU5hUs0pc3LsMjlvXD3yLXtffI8DymkPx-GXPhNE-iTRTMfrZRWZpzV95i4xWw6K8gg2ejWrzfHAEJ7dzax6ho0fuHnDZMw27asVFmZCN0K_O9_bo7gcCtN5SOLRMFNDiPkBSIUcybSAPu9KQRzR-xKONExgBjQrNBBWbtgRvNO1DxSyhXITX2nQFGULVfWee34va_j2hAa4JCIMxLQjdAFXGN4ADaotA61bjDmFlphQx9x_bbg_7NBFARS61nYCV4ZEr51h3OXG48zc6wl4QBGScvqR7wlNCsm-FKuvW2ljhQau4BSS6aQdVsrgE4DlVoiIYzo40aLJxFyq_x-NvDlmdMdS3IVs9C7TwYrn_2hXEeFEQRGvx5eeEnvfGGpwMVUtCqAGisYGMFIx4X02CKDuRv9jBZTG219_9_95JjrWry_qaWTwGSs598x0TM4aR2DL_wZz3nI3ecK5-j7VqgK6MxHzQS2N3xMqzqw_MnJzCZR8wMGEe49Juiqtiwdv_ls7CJ_1lAFKZKOq6QZg2SS4OlZTskZ9Gf2k0WQB9yLVGA3RQLn61Kq3McSrle9NsaRAKiKtNOEMqDMmziyB4v5DCjuf2TOe4KnY8o3EcSyiSRe7U3nL82RCzlk5OC29z1TDVHDWIYmxTpuu8D2gLqWU2JWk-kEcZ6-SGO8IzJc5_xVNqUPXn5zSeUs5RINiqeA1jjDOpB22XrkyOQevXjvBGUrD2kqMkxLl6CzszK8Hq6_Hn2fSu4-bY6i97RKtu9dL92kD121CiWz4wgC8rSO8NGrrEXs4Rt5nhY5CCD8O3ftcip-4gzjvene-e1nHrGJHCWGQgc3jsjaAthl9OfnHV6_CvnsAhyKNrPCBm78lCWwKXtPJtgLIUaOocCQrawHVl0NTx2wqOpHLcQkE7iuhUdTWT62sw5UXnqDX53z28SH8akv6_1skvVQqdvG9Bf3-sV0Q7E096IeJ9uWUaIl62SdLppOtcGYAmYbRhOs0QbsXjVZHpQgRODdNMo0_RZx-3FB0B7EFf-xz9fr-h84ovu9MVAQyIZuPilW-squGxPfCksyDGDpLFqgJAXJ7RU9oFnBjj3rxwNpf7zOIPVRHPr91EKkDizalLXdnOnMpOYjXe7Dq6bTZzbhA8KRrYV9-SisKPiMnhr_28UfqEMCEK7J5qr5-TL8FI9HJQh3gS_E2QdH_gR9_Vu_aAWcpEG01fUHqsLVq7vKWv9DasA9wX_WFmw7ndsneU84nsvcRe0U9jADylWQPMuJTHAuNOF0feTDyAFdO7H2ZmK3Gmmjr7JpyocC_rHfKjcbCz2u36ykR1GNm5dRBT_K2l37ZwiwHwtYKtMBS1lkmR1ZnPjKdCPJpTIKeOsoG1RvuAIBzRKtjvZpW52VPCjjK81aoCZuW8Oqom9_G1j4c81Xov5Dl30UZ0mzpMNDkOSCAw-B2TwP_q4PdSfwg_cSRvJFbCsPkvv1X-vHftIBGhBvvp89kP6jRNopuwbM12mSHYkqqsVFXPeU6Z5JOAlxPEP80XITRa5EJ7O1DLtlRP5UwviA2e1uLdxYwdYlxD7zdz1D3tYCNxDUXmUpe-cROAbIoHQE0PE2NJGAYoajDv1kvql3PBAAdFE1X6_9wkVPpBqJ_Q0TKXw5GzZ97EROSzfMgjy39QogXYSB51jn2PeRnEpvyc2gmRZUs5KktYk99_2hzwxemrlcHRGPMNrrlM9RntvKawxgJN405_QiVSY19eJJgwYXpj6VSO_n0l4edIwtU9UXr3usfE9jicF3t_TIBuVADz-6tjKByA2ZXvM8V9QHSv1ZzMHtUWimFGdKmyDe8h-15laC3vr46fZ-bpfvW4nppYdKacJY2aj1kw5gw9bHpu4MHT_E3EqZt40ssS7Y6VimgFCmlR9rvnXOoOjbWZPbyk4Qnt6vSm9fTQJJUsyZFXJ785VhT78YsOjkETkNexVAQcRytMkn70vrq2HVDqFPFQL3QTAw_6CQrbM81L_KGjjbKaeFvVcWDGq71V1NjN9-EYPCegtrD31EQunPS-04R7P7nD7MGvx4UUEnZK_VQ8jmOze0BsLPrbXMFFlEbCqNFPzQoi8-gn1piwp5U791mPgftmA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c95b9f51de46-38923285','','','2025-03-06 08:24:33','2025-03-06 08:24:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42491',0,'cd-form-entry','',0),(42493,0,'2025-03-06 11:29:02','2025-03-06 11:29:02','{\"firstname\":\"Catherine\",\"lastname\":\"Bhopal\",\"email\":\"mcginleycatherine@yahoo.co.uk\",\"contactnumber\":\"07503951672\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vXHA3q3Hb1SgBmPrhkU7qmL&amp;gclid=CjwKCAiArKW-BhAzEiwAZhWsILQmbuJTZ3196iNjX9MwtCLDsK-sssrCYWLple1HIPb_bdwFml3LvBoC6ZcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5njo2CrK9GaNUuXsD99g3sA0fLcZkbzxk2Wn4kDqCdwg03jewMLE-dJEhVDdEcN8r_Ft8apzthr8ktnA6RwxSrR8isDznkG5k0QrlyuLMq2y8_FPOsSoDVhBmIqXlWPUcSGprnpV5xPC7tHzNYo9Gzjx94iNPCRhyy1qytCitTioyN7XPmhUqRCQAW51ZwbpCgeZmzpfYoS7xyyOWGflncuINwmBzT8mz6P34EoTcg794nP8iv-263EIUIekNwxcrSRJ78_QicJWmGoQuTmN4YA4gFsOqFaaVJUEk1uVJOjR-rXBKXCT3qPY266-Ccb3Jd-0FHuue6ERGxmABM6MImvJPVLhipCDyFS7Sy572AhWYmJXh8iWurekhNDWdA7KtInVXMBtYOboQi6lrPLSw0JwlQ7T3RR0smAd1jQTdZLYzFdEyBpNpx0A73Cgrhte1t7XPB-hxWGYyeRw89Tq-RZYu4bdxqrvvv-hVvhzXhCBtzM-8-Ibt36m0lUgvVqQder_GIfNIoufGPRVzhewXD7-JJ5fCq6JXXsCcu_g6aGnVmtAmG1Ff8QOXwtRtgCen-uX2pYoR60tNlrLQxDioft0lSvngJ3On1tZOh-iJ-iix2vfFtq-qZVuzF91E7RsmPNfCRBE6_y5d7UIkMBKA2k8wITY3v2YDb3me2JI-3_UuMh9FS-cXd0knjfJYGvvT5R4vtmz2AVBX0SFLy34sozQeNz5YacVvOEOfHjttYE2lNcC9dHzb8lbcl7VTOS1mZM7BVZdxxPGPJAyxiUf8PUE_PIeeWMdg8CphAgIAG1yDSsEU8Z52b4RH_7i-ePYz-sccx1uTIwdgFOgbqTn8ZizmrcikfPKZuupyYEv9AaYObKsyHYploNsAmA0NKbfaEkyeSX88AXIO0t9vH0G-0Ci1F1g7VXR5pdjNyYdw02gWKuubY09SyAYHcyU-4LvI7T6JmFG0ZTxGEvoBCng73bNAUs7PZBhbRLG25uZs0z0-BC91kOymz_iEM1jqWkhmN5zcNdN5ozn6LzljLD_MM27yyvdzSy3UT1o6FgRaMvl8BYNexf-DL431zKuz-HCwKVx-OfA9Uf428TFsax4V89LvTe2PCnqHn8SEQBN9E0TuzCDIkIXMMuWRvJxSlU_Otg5-fmqeNT5mxg8YRu2F2AWwS2tsi8R5xnVm3-HVRGNk1lPh2NZ1BQjuRb_AZbOz65ofmyfwkuwNbjsALduEasxmwhgOl-4wigpczrb8DdcmzvQ7rdftoByoLArIUgXgVJQVrQo2kRowHE7ekSTZf9PVPEJWA1YvJfmchV0YKPUKjfc_bCOAvGESTyG8OfySL07PuyK5n6WopThz_h2RbZNGFY4FVQWj5KWL-yiUcK1QDu6VPqxEL4jsVTtqLt1xQdV2DfdlZa6GmVYH7usKjDtlajhx8QfSPIp7Ed6Li7zfVogORqdnFnA0QPosqY97oUs4qpSD9-lmfYYmq9mAOwFkj1og3ezgvzjEe3u3cAqAZqIJOhRsLB39eQ94n9pw-pX-PqMR3b95ItlEgPCfMW6woKifImcgZr4QjtI34uoU4bPDJQIbjhD7tOA7ibmWD_gWp1gLI_SGp4pdWRV9hwKGY2V8XRuL-ShtSsF07m80Grwqv3pDlm0Xsni5DNbB1Y77MvPMsXU6AKsxtvlTaQzNQ6e2hQK7f4kk5FM4jSb6q7vofsNN50UzZYjeBDXddHdJjzlA1_2Wy4BzNMI2K1jqw2EJf0A7KlzRZgWB61G44e7dy9wkUCiEvMrag8Wrspnqye9z_RRhUvwkqIYqZjf1dmYTsZAIv1JrGGeffek2BkC_5HLxfdPLtMQdkiNez1Wp8Zt7dpFmtyNTI21NSYqkoYXaONzWQvqeQ91lYJGhKWyxvNQAOTogLoFSlxhSPQ8nMXwnw1r9IJxaLsnF-WXkXg0wYdr6nHhFZq4dbS5mRJPZzg0kovDztyvesriq5saLrX63b_OqRxeyO5WdWD8cjSb2FsIJteKz46ZThpQeTFsYbGyQdbCbG2zsUJVIz-6ggPsRUVMvNJ098j4uUQR2ReA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c986dca24b43-86690343','','','2025-03-06 11:29:02','2025-03-06 11:29:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42493',0,'cd-form-entry','',0),(42494,0,'2025-03-06 11:30:39','2025-03-06 11:30:39','{\"email\":\"mcginleycatherine@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"9\",\"currentpostcode\":\"G77 6JX\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vXHA3q3Hb1SgBmPrhkU7qmL&amp;gclid=CjwKCAiArKW-BhAzEiwAZhWsILQmbuJTZ3196iNjX9MwtCLDsK-sssrCYWLple1HIPb_bdwFml3LvBoC6ZcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7tN8Ee2AE1n7bFC_2JlGLqji9hPaw64vnAc-kphkyL0y7-QlSI-AI3zcOgNMIdftZzT_1bNuMjJSENi8a95WCaw1GMGqNtMY9YZwojWjpeWWK2daUmYQsYRnFoXlolVm1wh6BjKKPYnayohjn28_9PVAij5LfGBngDjAPoFQq9nh1DpR6KgQqoZwGrmMwZhaGDJWKOmrFUcM7JKnKX21KA4Swg0iKU1Qa4jkAe_EgaHVuos5B25SvPWRd2Dlt7vQ27pRtIsnmuxmuphZIekhKC_ETV2JpE47C848eHxcoRFnsOyN6PPob0Yeu5CEQ-C6O5fNfx9PgGV3tN1qNFiqbQPZLF5Uhu6G6hs9MQQflJSb2h5n7CrKMJ3fKQ9ArpOBaSaGs9Xl5SidbENazlYVe_95oyWofDv4d7uhp2RoQ5xipZ8giLf9d6FD_foknlBWU8X18vIJ0voSerZkadjMhUrwHcl32hgBlXi4RP8etjDc4AOqSYp8ifba_ISyKlRsHjPKbFqMt_CD5Pu83AdhqfGUEc_eAacfG75JTt4Bxz_PKvEV1eps8OZppC-vWSS_ebtdSZnUWQ5gr8h50nYFAyHzDJET4J5Lm2nkcQ3gdXfxgHhCS1wyzhRuHLorxR5g4d6Uqh8yhvjk0Cbxikmx1P6JNjNGLJWv9GnK3QQo_PP9PJ9gAaOdHqW2CaT70EeERdJXqMN3ZLaMQmAL2ngA73Rhq57cO0OfPhGHcu0j_4A2MWjHAquig4mImVFGVhEaUDj7oEraqYQNb1K1haRakcbAY5KIdvFRPzsVD16VFygsJNssJT5aPBggjpzbh4HHFl_MQHwyS4MK4Cbm7gMwYNAsarI90GPdMwsw0DGpLXBQeaROcyKYywHTEgS5JiwL-zQEdaZGr3qLwJipaAsNMVLV7JTuPA6c7o_NrBVtAxZSnlAR_oxeh87XGwd_l3biMGYQjx5791k5OLgS13hoW-TYXwWZSM_cYan6mamixX-62oxuGYZUcsWpHrAo9I04wukYJMc2KDso-Md3pjOTvCOkoHaNSQ6CjGfv6Tb2c9as1ophqqmHHg2ocRRzfVr0xc_iPJE4sR8PngloCYfKIrb3DrKtQlNyR0eNi8JRepIfAFVy8fZLeiKt3sT7hERFFqOLVUHa1uY4WoDZEJt54iqLZ8Zdba-lxREsPk2rkss4ESycFtcZaL7w_18wq9OMxGji_GEQFfcwTOSFB8MuH017Z-TVrCd8KRPnc1-5qdjr63A1xHpjiTj9gkdCEvtmYZNMCLbRs1nduCpHHga6IJ1ZZ-T9QsPxLvUpgAA-JIM5tat9uJ83rSm3DJE54DziRFvTRVNDMZeBWJMmsMwADJi-gnxVLofewDgHudQJYajvqAaufWM_5-pcs9ClpTReoCE317kyoT4wKgBCdI-i0XSByPOtBqgspXKLX-2P1wS90hIt7xEySqgL-y7bpDK-PaJthqEpdaCdAIl5KOoLfvdJ_KG8VxAYEZFV-EuXzWARhKNLN2s4PYo-GpSuWZ06epyZ097F-MyueSorctXbRyhU7duTX88fI5xuysMqjLuxd3GE_vGlQLecfCh8n3c5OX1iQrRKncgKJI0x_lvIIseIgdnx4Rfsgm2JreB6VW7C-ina04czMQz4XXRzTmCKD9QXU_sdPArcGYbvnr21cFcrHrKuVoFuVf511kPz6Y3Q91gEjauhgk8oLcJKdtX9qUOCW8nQ0nu4M3_bLVgk3HwgRzWt60rniJDT007klMzU2QoZwNZNbjTjxqUQ_PV2nBdLCCcR67FPlm6q7nB62w4ZHv5avaaffhjy0I6hJyYTauHRsjadLnZehYNlsB32wDv9uRrg1qV8W3OeJWtE1T61Ou2htfDDnadwap1gtq5HoZhC4F5mu5SejKsAT065Jtq4UXlyklx14V1aw_qHrE9l3avpURsQwD9uu3uxI6_winVBPJaJACZq8ohhgMbT24H7dSPX9c20mzompVhz-dHlCnVTB1QncRKa8g-ct_EY6vKA6y_LG5R4u0Cdmx4ojbMtD0uVZ9XVpKsFW9qNSvuVAacA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"1\",\"workindustry\":\"4\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c9872f0b4de6-36875079','','','2025-03-06 11:30:39','2025-03-06 11:30:39','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42494',0,'cd-form-entry','',0),(42495,0,'2025-03-06 13:06:39','0000-00-00 00:00:00','{\"firstname\":\"Jules\",\"lastname\":\"Curran\",\"email\":\"jules.curran@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vXHA3q3Hb1SgBmPrhkU7qmL&amp;gclid=EAIaIQobChMIkNb50cL1iwMVEohQBh0TeDbQEAAYASAAEgJm1fD_BwE\",\"recaptcha_token\":\"03AFcWeA7FJhCPB3hQwxcH32TbcWtp0nH-Oc2Kal7w5ZmmEf1P8La1i2MkO8-5i4f5vsLNw_wzeq34kBrVeL6HekbvojB5fSfG-eqaY7-5Nim1oMtXVflwxwspQYGn0IFoXxMMxCrQLHW9P55vlTK928yqcTbCcKvVztydAkZ0Mr9JFpaXh7OZbKc_3xkZJE88chrQq7_8nUsQK-dLH_gbHZqzpld45M-7XOOvRUVBC4xj0ZF2HyYtmOvSXczJamGU_FNOfrUF-5tgCM28J3OEI_A3SiZQerl03w3EIFNnc7AiKs2xp56mksCPzGvSvg1TYQ9kd2PVvnXVE_npcHkAbg69_WW3RxGlBClOgErUB7YcUwNlr4E7EGO8FtmpjJmW9U-wSL83-gCc7ZZEZkioneQr-aZXiAsYmXgSr3sSEzlH_fHFduBlQj_E-0ZL-02RuN1KNdjd1QbbxpDVL-ij_KN3wVTBjSG1MiQNNEQgT5GKRlxQ6wb7d2Ewr2XKH-ah97vQw4mh2ab8pGnahce5g2uXVVoZYLoOoZrkrmIiqgNh5Q25Oampd2PRoKtKdmtL-hn0aImJYzvLlT1_HLJSlhTJlHE10ZO89RfX5YINmndXYYOpuw1xeHXoTeG8FrhRDPQHIadF8GWTi3VViiam-gm19Zdj3hfTxl6i9bJynS6mjzmZqVKk69i-RvzvegPUoTIqKYgPsCvaW_cEs954PYFB8NtpHKFWxFy2pmBDVCCDyokjUBuArDV9eqR1FnFTUhHf4m9Y7JjbqMLd6uRhbAYEPhfxD3YJCU2qPHJfK-le8uZAv2Nl5PkJ9dz1G7AtEW2E1mpnfKp6b3rZfv3cHtBqPBOeVGXMC3I5AXKcs8h351AkuityVjjyIX1HhwNkGRPMwfKTjXkYvj7fFlTP-SdBm3kXt4sPD12g5pUwRYycFey68VSNMgm7d_Wv4skwNaSl3lz9ec31SbnQLEz_ObgCyT60VG32xHHmuXiLbCjz4__V4R0Nh43-lgXAxF-w67VWyEDq3RDuin-gN1ongLQf47uOjSely_pQIeVnNACOLQPxAEyPY7tz9YgQy99yyrAsqRbU2KFH_KFsGIs3kF4J9yL10mOCUq7VARkYBBbQC5QuO2EnAVGlT18rEYaGBosu6wKQCgB9zWMK-ercNWAdoYgDJ9Uq5SHVJl2mLC6qUIw3lbyTJBU1w6AMm0PdeCpD6IX_kfDe4H3iT1nPzXjB9TBvXAQrWO_tchP2hAz01uhYOrJISaQar6cJ6hEIK9gcmklIpgqVVIwRvZdA9h-4VmpedPfEI_NOVJqmUQBlH80diyapX93yzOU909rKZblF0FW4BBxR9FptdXCrM9wP3BU7ExAUNx1cdvd36ANnuV0Qpvj6Yg44bKpDmJ1fQ0clqyADvuo1bI3mdGaJuEBLmh-W4ipqzLjaWcsD1UCIG_XbQeF7sCH4dVqYCoN4EtAWNtGuJ9vq2uBFj9U7ewtHbpQAB3H4rTs0im4WQ6bz44xIEIpaGa9E_hSkZVNfdlZSvBwLAfaXlMLDQwjHHsPASsAtH1ZWzJyizL4dU71Wtm6paimGJeCK5ZHzvd99T8-0FqZi_4GvQFt38J9QKUh_c4xy-AbV8kZJDSnZPLRvK39RVao7j4NQymicDCpJJTpy2zh_smx0vnCv46iy83pSVNn2hFOEqx5Oqkwqkl2LHW3TkLHzEhVtuinwkjLrY2SWrDDcCVyMR54g7CrhoOaLnBmMuAk25ieujVoqg1GGaDsoTsj-WN3jj97pH0-b8swYPR4fB1nRL18IhyNP2slFiw9Xu2qihgKIhR9OFMQKAfH7YoWMf1twwRT8vjN7r0W4V3hc0NMD-lqyaDSY2bRKotxXi79vI8BCiDKY-aVSda-p8pNaTLaGSB6-MordhD2lhiLJ1TapZ-6E798CuINt72aKwCoZkGrFAsugf8EPsfcyFKp6UlmMoZSSyXOLFE18Nn-HyZDbrYpgz62eV4z-h_Gp77aEGIJ_MPYPF5l_XYKffvDc4eAqjRtr8owIMrA8kebzftSiY-QKBUjevA8_d8dIacF00IhcnOrFt07Qz7qA2gAwC1TKvMd4z453-50mnRSET1a5iEAqK37VcVJfZWMj0KOSHk3utmROZg4nlbmGEyMDFE7hNJEXtg6YFLrOLCW7XmCYHCi5v7g_TU3S3eRpN94ZaaWfisZDKI938cKNcwANW0MGCa94GRgDIURNI2QsIR7ey_EWhNlRf34NYGxn0bZjbUgALafE69o1Qilk9YdoUng\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67c99ddf27a577-82613189','','','2025-03-06 13:06:39','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42495',0,'cd-form-entry','',0),(42496,0,'2025-03-06 16:20:44','2025-03-06 16:20:44','{\"firstname\":\"Bruno\",\"lastname\":\"Franco\",\"email\":\"c.bruno.goncalves@gmail.com\",\"contactnumber\":\"07496578680\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA7R5xFxgsbugwC9AITxQlqcR0ZrfDZlmlnAd4Ps3OlkkJTLX7mWGghoHELvUBtcKdVChIropHVcSitDf5PTzqzzBxmpqBZOEC_E8HoX9Ke70K0tY7Sb1zUnU7AecArWfVKWGUW77Hs4pf-91FoLG-qOPdCazTPyfKVIH-oZ_sVRKrjOEkUduPaZBLAyh1V79DH2N-2b1MRXZ-o_mzPNDLafAqfyghDati2UhCdvko65sLLVnk1d8SrMkCFfDXpbAOAAN0nllGgATmurXgGIIf6TUfUks2WYoXLTR72ZLzwRw7tstTKLoy-rXIkX3nLUZ-TcCMw0rdfGumnQQNa9HfD-KXqq_eW4flLd9itjLlC2eAz3Epf-j28EsT3eK4jtDNGiM641gbKB4SalJtzTbYZ1DOyIAVwRnuHQyTDp1fJNweegDW2L-cLSymjj6HBoeWj0axari6-SpgFkPfGELXZqiOPfqnO9llChsJeYOf0YPjSynV0S533MDEP_l14sTtypbkW90ldF0OXirjP44k9tBpW7vo33LjxIsTe9Sonee5FAsK1DuppfLipUq0qg7CZDuFpdGsIn_hT-242mrm_zaLtIysXv_N23AJMFuIq9igIGQjD1yP8c0-4ys-0Mp8sYsvOiOVeG3486IyxhrRnhcn-1qjUAPAcsEYSGiSznMB40LlEICWKN4uvyQ8uTRLZeonX-mste2DPmxzUYKzn0_kK37PeDkt5I9SRodPPYo1_jreKqkDkNypRLO3-ZT8HAuJZ1-K1h09hA0ehdQe77AdOfK6pF2qQF8Ra6mBuYf66bdce0Ah7AG0u4cDUzwxfZ9bwzkXd0bmrF3a9XmDtJSZJ2GmniPSGSlHVV6BhvgxHtZKoO8fOFoXkJUBI4dhM9lk6FtIEbh7weWKyjJ3FgjX9C6ckclsWqFz4MavQ7qU0o1Mbz8_yf3ca5X7AMQbmiLovOS9OmmhxS9VJvDSOUWJ_f9rQHZzmALtn72g8Jw7h_IJZdKnWcpn2w-v1p7UAhm5ue_MScRFpcdLQkNHyBY9MPH31GxEyKFsC2asM4pEcgcvsNW394uDNWQLZW10-eHMgw9E6438t0d4h-JzfkN8qEHkeyqAQmEzCEWFZCS1DDgUjKQgNPdQWCbghvafA-4AVPIqYW8P2DsEbfT8Vm10-bAHeRD5TJrLu57No1PM6VgEnhvzai4ep7Fk7r2dxwNAojAzdPoPEmMks3XeMqA2iYava1lyJyj8NprzbmhVgPlx6xn8gM5G7swWK0re-dsJhn7IG6PKFQbSNF-4isnkhAJVEG1UNHMKOhgAtB8-HKIojAsyf70VzoxVTyh2a_kaVqtXtZv1BJy0oju2srhn2LgkwyJt0PI1XsI1dl4VDaLIYejYoB70TO4UzvRXEL5ubi80cjrIIM3fjk4WPYIKnW7DW21P4LZQiusFKC2Zza26hh70jbfkmtAXel_gEDtHco30Ja89AjxcP9GG3QjW4slDGhVeCLANkETlL4-YKiPwFcr8VyArICySAa8bGK9tRbOoGgLv-UvrmXdIhZccd3plKLFjHo-9NMjgefzGyX-NG6y8rVLxv8B89tgdA1QjzvpO2tVux7mx73emDl788IalBNMB5xx84IBCjtCzKL2Q_9DBrwjBUVBb0ofQ73ZPWqM2thmncQxe6qA2cLnZPfsldt33Lz-EHt9fYE00SjK5XDV2fCgdvRwVsA5BV3tfpxA7Owe7GuM0J-O3T9622iN-NyhIqTyXlh9XlDXzgZk--rC0FABiX8XUDmwn4g1uT8cy1sCxhEz3cXMiTvLqRWJz_WP-uApICmEkjxfREug5lj1O4L147p_CDbx2ntg2keQXbYdBb_-MZY-EoR4Aw56O3PH4NwRRelIFeWCvUFhX0ihR_2NAq2Rk1QifXPKspBKleLGxF9P1-Ohs2tjDBwzlFjDZ1mWk0GKepxlmdoqxw1tbjE2AgbYM8hv28nXFajCMuZ4zCqOy-tQDKJx6RLM2Cb1L2KNxl195PJlS9Ro5hzzrCgfs077eM-pyffud72rJdzj5SJqlN88gDTo9JkM12qXVyN4Q1zGlnI44tMlT4UZG-nysvg5EVfQfcPKLW4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c9cb4e273b82-66483064','','','2025-03-06 16:20:44','2025-03-06 16:20:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42496',0,'cd-form-entry','',0),(42497,0,'2025-03-06 16:22:15','2025-03-06 16:22:15','{\"email\":\"c.bruno.goncalves@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"SW8 2RX\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA5cw95qUocduV2V0n70GOiOleB9VIuLhqi40ZvkMgWBNjirxDj-rKz7y9al-DILGVSIFAOQOAFUeaeJ-1iClBbTzSb6FIesE4xYQJRKE-FLyRQIf3IrWEz2sICN_CNQBPvANmI6GKTbiRqaSluG6gDy7RwDILf67jUYCigQjc9rm3aTtqUjybxLnfA15MOfjpqHCMWH5qYZDaLFxnC6_3_WA_-Ucqyf9ErD6xuoYh49cn1rNH2fcYx-s0-nihRwVUhzFfWpPN65EzTjaPIjVRtzFW8GV3wrP9_2E8czSuQhqupRxqKuD_1FiRYqurclFYEffx7xyjeRKM7xnEWk2JTn7zXDvCa2q4QfN7rEPTm2uj44gDaVVcNyNYN3QQGfJbkPH2HF-wbt6p-hARLi371ZdlEiwlC6SxQ3tMzb58pMZIksYx_YNKrCuvRoBqJeqxis5vrdorDL-2tqlKKLX9Xyls1JEeLDAiBJDQg8Y4d6vGdkgTRoL2b1YWhgNq0wHwi1EndI0lCpN75Bkdby7nFaJxtuXegHl9zE0LFal9ksbhuOz10tCXCDY_K86ig0U3WJH9eIM9aYTd46AL7VNwucS_-s50i-nQNinP5GX0G1wBX5K8jWxRdm6r1jDvI6Ch3zR0qAKO3_c8uswhzogAD2Nu2mvJUBUYeCCis3pav7bS0WBPL6L1yfpXJHmu1Px0wtM6HkuUPMS1hTwaGubb1FPfaDqPnJ_7FnbOhwrkGpcQ1GNy_97bDw0Z9kSM9Ffy3cQ7wb40Ta9P6EdsJknpCJ0iN8Kl1Gwox7TpzaqsHWFllpdtOYzeSOxz82U2MLYb6lNAxZk8Bi0ZJyKDQ_CiZBv6XX_ZZi48JEA7uVE932s60dR6MLtCvA1iKPMkM39fFNAxyt6JNyCN5SqWMZzWhiVfutGt9U-EWkun-kp-eArlYbvoYMJPbY1kWBzQwu0fdCID8GoHABaT4gRedYct3DHe4LfmClykgcoNlEgVrKT_I2ZTm7xwhVvXZRemBCUvxfhuaXhhnZg6AgQ6JzPT8OWjiYssU1cIPZ8aZcTLX45zxOR6B75oxpKbGo1VuogHv5S1_V-KpsAyfzKvErdH1lhIPQncSEQXgDlYHtEI1H4A_4CjFVB6FsN-Y5NTom1FvsmM77ylGAESaEWFissrGt2u1Hv--Xz4Xkm7esnpIsS3RCcdydMzaIktb_r5vhXwVPFOaVytGHEBprQ9BfcIMbg-9iTR2Nec9vrRJ89SXdK9H_wzrzhATEwyuWNjQcpnJejOuvGYllzBjXtIKKqG0apsAEUtlkOSY3mWohIW1qbkcSBES0MgVvx6iMjf8NAulaTr1Ez0-His3UhMEXti0xzCHuUE-UbLb8khsY387pFgySdR8ZIOl6GCUmzTLrp7tgXO6xTm51Ut0un7qIEPCMLOea9xjeAitz60N1ygoXOGixF7LVgmtlDpre_mLF4P7EKYV8YJX9U9_1g4UCQYclTgqBwNakzU5JVNdvZhyPqh8V5-SaJUzwhwMpoT2TMSR_tzhldqEZbJ717mBjryouh0DMzwR3T-iMVYJKRpQU7-5Vn6dJBg62m1HwMb9KxALnukwN4mJ-NZJz3NIHu6iWFOffgZNLpzuj7Cjo16sY93MuyyRUA9o0ifqXf5iiLo58NTstP2ADgWHDNsh0TcjuGaI58r6kNUU_Kun6vcHabCZCr7Ictk9JQWtQvAc6WHp-STF4YvN4TLdyYl-AOs5EfDx-w__zdZSAxnEOOtMSA_7p-oIlIk4_5YbysSi0rfpQJ3S018V-gb04Ti8RY4cc2tpp49lpQHYrV8bYIgE4gH5lLCzuTso4Rb_Kwwyv8TQTIBn1FyPwYxmbxMyCug4_S9O8cQ-XzI00pC7GkhaJ-WcOI5jxRB1c9thTc1F_tJEO7YlKnbnNT0o60PEVbsw9HfjL9JfbzmtDRhDHTZUsz2TfBf6Ghw5ZsoUqoT-4EUMvwa6X-vz3NpWYCg29MQbagIUnEDKs4pT_PBQ0svuN0ttJDygNDTPeVG9wBzOkkmLQLSggsV_R0ptOAxtvCzXRqRRGbplwboHlSJuWG0kyiQVuAu-1NJgFhFUtAU6AmZ6jrtjaRTINB02huTWsu7U0ZGSAkg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\",\"childrenordependants\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c9cb843b2b76-26611959','','','2025-03-06 16:22:15','2025-03-06 16:22:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42497',0,'cd-form-entry','',0),(42498,0,'2025-03-06 19:27:50','2025-03-06 19:27:50','{\"firstname\":\"Shernelle\",\"lastname\":\"Francois\",\"email\":\"francois.nell@yahoo.co.uk\",\"contactnumber\":\"7496460926\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vXHA3q3Hb1SgBmPrhkU7qmL&amp;gclid=CjwKCAiArKW-BhAzEiwAZhWsIPUkem7qt1UI7ppahOWm9uL03dYUqujQUSMh7cfZe6_bYT1qFPpONhoCgq8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7-4yI2OG8MV8w5iYsnr8FlU1RiAkE7br3FeW_wCGH55AEfp-9t-RD8Pl_JEsBNW5ftZBFvecIbv-djz7RHxEhOHtvpuZcZlcTVg9EkwJB6qeDrY-juQCBtjZ9-RajSv3Za8CVyYoi_Wi0V4D7htlNKJ4LPIC82yWLlRhdkSl-27QfmVUNr6WR6U74KynB_st-R66_9cDepGmEHXiSFLBiZuBITyHXpZXaIXYrAN2yEBNVYbXC5UkwWG4YKFzTW0FqHOayO9kTGLuyuKCaAncABKJU31pMh_ipSDq3l2gqOEWaSezZzUfNQoZOGPpNlbPtbWnucsG7seQ0PaBE564eZS-FX3SoFAuDT9qj6AaU89gtn8tZ_9fhwZ-BeHmRAanIDqjCuRHslAuokihiVZUAreMT1MRY4wuquL06oatvNGmtmtWFAL3E4u0cTKTfSFUkir-ATPErbpICDGmCgMNtCiwxqZvmAq0G1QI71xAqQ_JPDR2bD3PsDZFzC5aoDtFzvTk5kK8e66Zb4lwVFt6rHeN7RQrdmYk0BCXUxqH5eNsMBpeW1S1sqp69NMyLdssJBZq04soLvDeEKOsBa7CxMBSYzhtsFpSHB9bMhpUeOGVxA32wKgwZYv6s_R7HN7Db79JDUz9DAuDAeu6v_q0jG97L1rXjKVy8EPi8moN9kWd7YvI7DQhQRRNTTF4ECs9paO3NYUOREeSfSUyfE2GI8Ns4D8CC2HKS18pf0rssi4_YC6iO9uOjAj74oPs78HG4WVRHAFTLJCgN5k-xvguOjUqTberCEqMW6kIXi4ASvo16R1XdvRrxIZ5PxMSfcm6iQYfepbCC26pK8WZVlb7bVd7qDVIXpM_5duO_xyOkBjwWwVIpLorvSSMMv2hkQupF6ikD3ggXFYrp1b3_lXpDMBQmJl7GuGTi3WnlMdVHcw6CheSA7gBGq5KN_uRH-UBEjSBMCdJtz4pVFh94e7FlPIzcDWtuJaq9jFJGrO2JpryMveqt603bZ2JdIRCUoDkYddeP01mPcb4FAXmjm2d6IYx9TKI4NZYADHMIZoJHqLzMKGUT77tpGRlztMXU1TiPnYp3zGJbxQ2fz7swfIE4AsE6oJNuMNRFVRoObWbAdoxvrEWwGGkhe-PNmlQ_GhNaIjbbJRt4IDpJY2JsHhHku2P9nTqnD12ZQPolBjUH9izASbVCuh2dx32vfTmPF9jXriZYP0PRpPm2kZ64xzDvido4AbIaxDZjB2YyXpO0_VWAbXgEd98OK1Dl4rvcFLm3Y8AIiMEFd31ggo4nHyAhpN6ZIQui_GUMxfZC6dgKoYTRcxzfrB3yVAbFexb96Rb7IfbG0oyQ8eCor5kDwWimFNrRClEGvFcqF_SJ1TFNyOu1PY90Ko4YOm6kWGEHBegmuAlgoMwyI9GPwObooQagge0TvT4qgKTNgl0qaXVt-8RhzStXn0ydpopd2BtuUewHRp3Fvm2ewYnTBvPw_KGHn22iLN6le6sRzv76IgpqfBnaeSEPabOZyHO8k7QMewQuapDCQx4JN_4PlhQ-9Nsahp35vLYo-8HA4Txwj6MrH3vF3p9yxsKjDwcBrVLQxZhb41wch_iLl-bfVyoKZ6GH0SpTcC5gALH6Zswm8C6L1ozWzE--Y6IFGAkvRKMSuE9xYwX-0_eaDTVieMQfmrPo7LGun8dh5DlW6Ka2-O-O8cMESHnIE-1mW_xgA8On0uIeqdzAF2U_L5IFC4heC5AZIrWGUTQjiEo1NvZkgmXiRWoDpSL7dYtwAbxUmEGvfOsjA7WFy3pu0Q81KpBMXdLSEaELhF8mnPbIIVQWdGmO28cA46cCr-h4uF2pATFno3xj-8K-ZROfK9BvG4pO5MvIWE4VZffAaH0UdCrpK2u_pIi9QwTXLiJzKk2pbC1t4PVliy74Tm-dpJbXN6gjzCyOnXTe9bpGALzhAF3bLxO6v7SBwClYYeh9y6KxO0LvMPSdFHzZ35xqjaxXZzOpQKH1PcvFpdncjGaefZuvjOev8_5A-G95Ekyg3KpwUOjTraz47SW56AWkJ5L1rSYJWEjk5_UInbjSkkcQ8wC4ZpJJ3pAY403k\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c9f72c16ad93-44154605','','','2025-03-06 19:27:50','2025-03-06 19:27:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42498',0,'cd-form-entry','',0),(42499,0,'2025-03-06 19:29:44','2025-03-06 19:29:44','{\"email\":\"francois.nell@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"E3 5LL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vXHA3q3Hb1SgBmPrhkU7qmL&amp;gclid=CjwKCAiArKW-BhAzEiwAZhWsIPUkem7qt1UI7ppahOWm9uL03dYUqujQUSMh7cfZe6_bYT1qFPpONhoCgq8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5DJZmuJMbLEEB1X2S8kuHJWX-b4IC9eB1z64YKtt59ebY3lncbc23L0zrgkjRHWINY20qJFQhRAtT4sjUfFDb9ZK5PAovonMtMHisygzoqVKwoiu4U8yFyXUAcN8pt6mNr1Rxe1rzGJ8a_zlGOc4TICyZHpxGNKcl8p8XzA4b2XBsLC0QVP89IpFAj49pWuunGUjG5K_LatvyDMO_TxtHJG2Xg9EhlUsXNKAm0cbX2upTxnkvI2vBz_GYF0OxMyZqlasRpE0j8JaQwM-5U5dsbVtvIS1x_X3rPFU_xfZwVzOMXz-ASIZIPuctHz__hRKhOkDWM3lo95-nY1k1DNLJA6ycM6yEKYejSxS0CQHBiBGN2mcgoyovucje6zDFSHZqfuVyVJefLbi2U-xFkoAGNWSHonkvMWP0j4eEgFRQXVBBDS2Bf1RSvLfRHMLG-ZEPLoF_uunWcvDLZJ9ULK2XAusNiydSQAZ9OrpKfRfdEp3cH8hOkuB-Ay6fFAcngEDAik4nwGYWW7nm-uBg3idtNUlhlSQ--OW0W1CeYmD2eRFk4v6FmY1VPdmQ_uyrvfmrwlweqV3J5Aul4honqTPnZ1lbvAK4wbH1ab1aU-obsT4fK5PEk3VueF0Zpime6zXFErJ__85BRbyk66cvGu801JhFVF426yoIsEeyXEUoFPRS03zFu9iaxfYc2vArZR2RrO4Q4FV2dicipRFXL5tX6dwwBJf6lY0vwdpxyh1ZRG3r1ALIhU1R_nVv1tXWTY_b2rdSOV1oKJa4_0xYHJZN-Yrs4rOKbr57EA8gn2xiT8zfkYY67DhhSDh404YOkuumLUrPD9YkeSniGFRhbQBXze78RqkRvGd0czISE5rx7MTJuhozwG54CqIISDNlvstKpXzdW-hjmp8VNAWqKKEiK-yh-HRw6QPgmuiNX20iExNFkJwzZ-cAXHs61r9Agxp7rzXcCz7wRE81S6lORlFZ7OR7gGJEmSjPrqe-yNVWkxUM77GH-yZUYJ1_Prc4gqjmZv8FUS_4JRDlfwCXUww23txdBUkpWTms9xvFTD8owZhPkOrdZuNv_v60KPMYdv8zJc-ji7UDv6wRpl1lqohMiSa7Fz9uF-YcVfZZJxXitDV6B7vWCvrOLQGxwaaQv7Im-X4U901Abc7Aet-GSMwSJHqMLVys7s5aDve-7OIfat0_HMmGEo0aTlYi8daqpid-DV27RLGF-gTtRSdEIhPKT7D1dvsu-TrMC4vMQuqdzfvJ3fYxgJXMHHSuufv5aNEP5VkAP5oii4Lqxlm7vxrqa1rjDsijuYl3BUJpQD4aMTi9ileTz2W4ehHyMBzTBBFa_BQl79zCnoF9e4Y88PE4IwtvyQwOuimIJk73A4iXr4ev_SjeRyjnW7CW_V009wiJFOOP6jKj_E8GzRky526DlLqHBP90bgIVwrZg9_JcT76s0EecgOnhqteLjimuCDIABhMyXfIIzIF2n4SOmYZ0IqBZ7AsgMt00cVIibWAJWxg39RNiLH4D_4tibQ6GuBJgIotWKH4GLirqG3fzIiy1ftjAprBPGyDoz7zbzOVmPu_XzKRstkSZpl3RlKQcP5gAwKgyKZJCYJahEpA197kZguZ1SONX9iz7CwQyhF60gff8rTGkjnSqFbuiEZ3I6esfmcizfZq0Gr0H8YYvAHq3tbrifsg311MGXok7IzN1Cyma5ulcM_OZRpjL9EHaOkHKS4L0sN2AnLPgGwYNCKIW9QQJL0rDQ4e4fyaZEp0i3emg-VNcOWOBvjEhI7IEaBLTGBaKLWQnTSpM-Uh4wwT5ZTmrIp_YbZLJK-KzAm2kfQNRxC9U3oX7DgA9sKv-nDkxI6qV5vPEXRGPNifgo3qUIiZGZdg3xgVoittlRZaXPq0g89eKxPFOxXJmHVaVGXz7S51nxCJha3ViUjxOmWwBav3WoZrxAI08m233xIEklsuLjgb9PsDcKo9oXf7QwNSGIqGZhHjmvMoslhvfDXbVkkMVcHHR5ir94Ol5m14cYULRQ4xbwcNVU-StmeiPRTXzpk-GUTZx5JiBRgTHVIxofb6lc9ana7JL5UFTBQUhj_ehyZhZU8TQYiup5oPd9A0EToGtO\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67c9f78edee843-44775924','','','2025-03-06 19:29:44','2025-03-06 19:29:44','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42499',0,'cd-form-entry','',0),(42500,0,'2025-03-06 20:14:44','2025-03-06 20:14:44','{\"firstname\":\"Eve\",\"lastname\":\"Conyers\",\"email\":\"eve.myotherapy@gmail.com\",\"contactnumber\":\"0403139482\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/the-evolution-of-functional-training/\",\"recaptcha_token\":\"03AFcWeA7yZrVYgO4RX7dJSrXlRjxsrk5mtVGaw7pfY-nWlW-XEdnDz2NXeakc1SkQMIWeLsTWsZ8AAhw_EKVihCtQu11lYLmA17b7Yy7PKfag_2uB4e7uqy7e59pPauAj_vpRo1SUsmOiwnQ4Lz_8-q7ozP6GFxTB9YGwPgMheRrI1eEnIwkPrNJAU_OcLTng3sE2fd8QdOecIUOW8hn3Uoo-EqY970B05UVKF9e0UhR70Skq9xt74h9mcJQBWRhMxLJzsZzj9ADeAzXwMet9fw8afs0PKcNwph1zmjaOowCqO7ZuN_43IJKCSi_THvwrFJBxLEty-0WzMlk8eqUgrlsKLx7KoY1mhOKn_NnW3XDbPKrVs4JEiCsfbWCpHx0O_Vj-PUZajLwL0EQPlZ_xCqj_F5UaVzkLGYht7b3xZ8nQ6JlWBDWnIdD9xe1vxiFrmR-jdC_wp-zWkoQnEpjdfyUYIdDaWUbfAcx9RjbG1TKjFV5Nh21751M49sp4C4n_t33kEQutE6xXgvBU7WkxkaDBNJKoaKn19zzVePEc6OTCVI_ovZcVKyWjcRqV7_ucgMJW6XkSVWIephV0OTrtE_WmZCNAxmRA9z3mfnyRtR969oqN1RumJjmbpCTHuBkqEeLqCPV1RiiXrpJnxdvxpP3T-tfmGlnlFYQ3TDH35NQbGocyFrp8cKx_3_cS8Xd6L6PcOuNvXpAz9ltcrxzRhvJH2pSEppVLsUwzNyZoSxnfxYetj64Fsg-YqH_Wad827DhR76_-ijMCdkmwnB640eGLvKFUx4vYXmCE0HoWcxm1ODKEZG24LbpFf2kWfge5bK7JRP3AowMFvz0WqOPH4im5wzQd06anQgC1brzp1HIjkrb_nJglIjGyXPGudvQ1g1GQHDhwKGN2j7WWQkhyOJfg3HIZ0mbOTQd5SlnLGBW_J-eycHtZWYXvYdqzwUNjmUHJl0EPgc5jNYtRDA9nKhI2s5JmzdS5SFmM-bcrbdafZzOle0nf_RP6uoIzd1_nLVorO5Kibh4NxqyGsLSVM8hW8TH2Wx_A1dwsus14vBPOkj9dNxNedv1QbvV0V746GPzqPfe-7oDah9ZhE2_GmYgOQzf-u4OtoGK5vC2XHaFyH_RJzCZ-7PEFkT_OToaScSypIzE0otmnMb_Yq-4is6aIGbDby_S56YYHAYCfP0Xi49AJEM8jkusEi7qnMda0u3INZX1MHZ_659wdu_nh_J_Qcmy4tPZxCpmq5gsnUhsEYaKQ22Io9a67rEUOGH5YRp_INCtxszvRcacRtuBebepTWeF_B3Y_dB_cFfNrm9I-RY8oRIuvEeocCyQxs0bAUbYJuXGC4arfoCisJJ3EsuisvfH4wRIOlXm_Tvjr1dTjH2xnCPEh3AwQYlft_eYJ5aPyQTW3Q5hOFPmGvtwsv7vbiH-XdrsYtp88JTp-QrnBZJ0HzaRci2hFnzSvz7EzMc9IBaeZkUNF1gXfFW8YpyP6W8JnzkoXuSWt1LP-Q1PO0-0kIoHqkrGVFYih7PbWPc1z9nSRX_CyZ3j7SA7EkpnZtUlRE7a7Co2Zs2rcIN48yWJhVov9u4fejVfXA4PI3DmEz0q6qj8y6eB39tNWCQ9TeN7hzfwdzDq8MBSO9yRdPv2jvKM__s6l01e2zKNVTbHTWXQp7-NU6rx9Yp5ace7nxg7s0Tr8Nb-LQKw68GdEOXLN2kRbP4zzBOaTjsMfhymIy9uC2bmy0pnSnaZo94fNjZIWh7-4oJ_NqJF49xHBhutPjnzTt2fdy7pDVubPEsJ-ySjzcv_jQkwCYHQTrbr1Cq3lL1ZgAxHL4Q9JaPv0s_sI76r-J-gX273WgMDyCFOAuk-QR5OTd8yIoSYC5wPpoE5awlPARuk-bLH4bahmcvgNGO88oeEOaWz3v7AU-BWKJDKW3mWAoW7rUFvcYV9aFPM13cJCkzaKmjofxL6bcrV_p3EbIv7y5LWksmkJ6eYLf0uOTmsuMdH3Md_p0oOa_9Zbn9r1qWnt5YOKeOPNvs_kXCZeGvS1lh0zJ39nTm90qaxmCZQ9W_EmJfTSvDydYXYHigNdtFxsFOWvf-CH2Po1hk3tzdo\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ca02180999b7-58807318','','','2025-03-06 20:14:44','2025-03-06 20:14:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42500',0,'cd-form-entry','',0),(42501,0,'2025-03-06 20:15:14','0000-00-00 00:00:00','{\"firstname\":\"Eve\",\"lastname\":\"Conyers\",\"email\":\"eve.myotherapy@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/the-evolution-of-functional-training/\",\"recaptcha_token\":\"03AFcWeA6Mc0ILbBCMhNOIFXrhuqPo7fdN4zot0usFfhfTqcLr4caH4amUqcZBdMIEUPjt36eMRcp7uiOcxY9Qq0a7M4vmpgI9inTPojbWkDZOCqe1JgB2cX7jqHZV9Fsbu0Af8gw2lfPU5im4EDb0AC8E_VnI-xaiHDsfbsv5aP0WLz0K0Mf-waqPFm2iMCKQFrRsFKBIpLLK1CFIHiq7eh0-DTPIcDw_5IistJ-DwgzCX9MNQwvlQcnHvNqF_ySsQ4duNEonp4hgQQogDcRjUtbY3SnNBiusIaM58MjMYOEEpS9hZ5mQWIH9y103urb8yUa24dmybqIbw-1s2wtmABak3CJzJUnHrQ9lODjF608RQkkCVfS6rx23_AOWGY2awdpJg90phoqbiHUOJG5i3uiD3FLgqCcrMuhT3vXX7xdHVZPCF2Itfkp2nlFLNntXQsp7nmwGuE9aI6XmF02TBrpn7XOhwJ9zCI42xezGb6Cd58AbYHqcsGfVDtreTpr-Ntc-pPV8ORYkwIipUC4vhcTwpN2OdnmyQURhrtIwHNwQ2lNru0sR7z0SyZf7UKWe5Ct4THAeRLEaYznJHD77VzjbemPYlCUyy13Gp0hZosJdO3-4Cc_YcdV25ppZwHu-RYVloLt-ZKy90fNCDY6-0qcF84TL0Z4ylI4WRpW7S3evXcadSZ2UahkUufgMKUIakpVT68CPBlGTuO0YB4wd07ceDgmsxCu0ltj9SQqWLeJi4Nx6An6Lg8DiLhzmLAdKzEZeDn3ppDolA1bA83gq2Bd_zrXGwrfefIod8du0hyhpBpwY3oSLsUPxVZXVrhlFkc5vjuBVBP2MJZ9i-mtv3hpQAKi1IWIhAP3ob-c2Lc8ofd_1wOwJw8KD2CSC0YsbVwKNMU_q2R0NpWPtT52rYmb-bkuC-kFInL6EPt72EpB_0OSjz7wvYnJbw58zu8Zie8Elt0GDeff2t84Hnnv_biVZtDmxgjnHutGio8hlhRAGpnAE8o8aJwQ60sXJjLWh9xQ9FoauEfAJ1mdZcyyeduiml5wSzJqqDY93oNHjHJEy3ej8yRq1x5AceWWJy0v-FKOy7NHrOJKl9vyH6_qAMAMNCKABLG5K0FYJLZptnrZ7oX8kAv6qL-v4bhoY7ZKCEWbCNTY73P2kcG7z0RqxbgICca1WAfiC3TdUWPRyHfsMHe8-iaiJoHMMW916Q3pyfNkDqn-tcd8spdFrYSEinRnzExD7I4yYUTbFTKgp85y54Y9v2MBNi7itbhrz0fxJjon2N-es8xx2s20VmyGzMe_iClHWokM97mrwByVAtI3UeIL-tb_wvq9fNk9o53nYeGBb9tjuwh2v_EnACg1giq2phwFOgiR_cSl4j2pVfJlYq45bGANukSbCXw21wORqK3q-e5h1_aVIauLZz2PiowUPn5gV-n-SStgkLOFRUxUY6mjmfiBgljDzzXFnJFnksWqo-QHoasP3hV4rOzks_mJerHNAmJ06S72Au04ANaqPkNeUcwjD7Y_2EwZLwu4cuku5_z4CT4wxIjAeq_ce07wSOYHz-X9ipxZY-I6GBx0nCDM_sWqAmbZodY65c9uQpiAR3tp_-YLtkN9WoP-qgC4MKaLd-yU1VGaDplDA5wgDJ2o_QNCPXYSrAHO2b0WQPWi-yFkJ3qkkNxxTIu9CIR_nsprSpjG8HZvVdrgWmICgCodT8SjnWHLJxzwjPtBCDgVA2cjTo92toLH3jyDtuxaWcQXRIaJonnTtumB2Q8cAMZXofdyH4FscFUu_zfJv0z7Sm6dk9cZIJf7wroNaak-_VfzY1sq3n3OvaWaZGfeMxAJq-FYAW-SekGzw17DPdBdVY2W0U796KIAmNBtw_LobPEZuUn8y_sIyLxvhoPF00wUmVzLDTGj0zaxtRuFpCWjpPo2CEcHcTtOSutaoqL4A7-GiUvKGsYkJZcIzoH1PWgLYgr-ApZZU7dgNw8Uqse41RR-EcsaJj_Mi1Qo8r06USHPt2lxir70Ox9kgdGZ1oz2JJPlX_AIJ6ak0fthMhERdp-gWUNRu2ivwlxELP-ajejGz0G5t5bciYieVkzsXC1eRVUOiCdTujIOOz28RmKLLYflYsYbr\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67ca025254a4c7-53741326','','','2025-03-06 20:15:14','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42501',0,'cd-form-entry','',0),(42502,0,'2025-03-06 22:02:50','2025-03-06 22:02:50','{\"firstname\":\"elliott\",\"lastname\":\"eyers\",\"email\":\"elliott.eyers@gmail.com\",\"contactnumber\":\"07957000773\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vXHA3q3Hb1SgBmPrhkU7qmL&amp;gclid=CjwKCAiArKW-BhAzEiwAZhWsILiGN1N-WlCXrqk0gU-vTyX5CBe1qQzC1AMJx6nf40IpAhjzlygaexoCZ7MQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA65IArjiJyY_iNpSCW3pEjTNj_4vuXhLygY3dCje0hx7zkzvhcm2zrN3XtVsqMxD1nndOAJHlSpXNzT-WXsQx3KkkjPTyareVw4DFyKO3ZlFpKREh_pKSrPtXr4FlPupnJ7iI6OTd_kUVk_U-nc9GwqKnpvT4t_aSgf4UK4m3HIdtdp7DyJUef3K4Kxp1w4Zs3u_DNwmeLYimMAY_boRpDffTxP_qiNkIOvRnPN2PP73y0yDz6pcRCdX_L1W1RG5OmOif-Y_pI5bd7IAuRlQYxBtnXG8ooZeUkCthxi0qPNPxVp-uZOmQStD02u4OneaglD5Y93iIo0AOjWKq0D90d3p3vn-R31OMPIlMTf-chH_909QgdVY4QUBePe1jRlK8JFPDGH0FXuImSnv3m0cPIzSGMLL8oRlq4hiPy92DREmbG6taPngl1Hcstrd-8_8hEQTgpMbIHk9JsCedg2dkSGqhkBZ2yqxm91ipzT9Zggjh25m4gQS2SZlpPSlrBo9mbGUQJVWsifO6hfh25Q7E0XYejGOCv8LU7832fhbN9wRO0nvxrU8oYDw2yS8F-D5eCvAR7sD7fQUjhh3Pnb9ErNhGorZzaG5YMzY_sl4okH2n7uxtoxDOPt4emUf5F1aS4oW21tjvKG45Re_0_f2fwqlODz6F6WMsOvRBHPTRDu56zhYFdDUwcK06sBVwi34e6j_7lcPNDBW1bZ8paOeY1TZVLbtMUZYXG4_ds_YJBI3gmvjNT-1ZdYSAEMhrkjFxZQ-Ebz6Jaoegd8-iJggtkxkO4TGGWq_pEuO7JM6skEnYXKhJh4IwDGdzov-ik9WcK8ovQ5vmWnlFYU__NQX6RdzrEfnidX330t9DoIR1kTiu6hszSfaczu4vFbS6GeuLBMa3hy6cOpz9ZI_SCW7j8xFjm8gr1KCikd9-OReoE8xknAr_y4_EtzMyYuuFZlQeyQi-AVxZrBFGbBGqFrhLxUF5Lamlpws0i8JlPKtPhGa9N8TuS_8OE8A3Riyz4gcSx8qCeAN983QMY1JrFIuM_IAGECo1Qczjv8_xRbGFMAAXYYK2Z_6zC-75DOyLZIYiGagEEHvcVDODLcmCwTqpRTwpxTw1z-NHIhwXtelvSUS990hNQEWFqVCTVYljnV7728iawt4n2nFefAxyQdewwM4JIhqE67bSgn8TkpHZaftb3NVgnkem432psnymdpw86eETRPGDSf3rjdOinomXMcPoeQTCAl9_ZiMJJ0Mp2TX97VecJep-9ICfh8AYgjjtFD-sof9sm10cB4Mxw783cdU0JM4Q2Cn44TQEEHGQ7Vdo1RvO570_eXeLoGqyCwZyxCJuph6kwtQT-jaQkJQd28wPQihT9zgRjLAzX85Wq1DkAipP4JnvnJUZPsMsaBy9AugLQYjsNsgItXG0JCqWQCnC-j_UBZ-DdqKEdg8UN4fDFM5w9bzGWu_tg6yYBRRPI12I6lvq9yAvyyquTB7oo6vcRwiL3xVfNx7PxAmkmoq973wJshqEeD91qMCQ3sPmgBUbcVSeVty5Vf3RtUEiw_t55-y392lTPI3ZgK35vcQU6jenY3BgSqagxMSfELq_EVYqb_Ks2dmtrVIHcya8JAvkyXoUHYlsmo_7KHvkquuBHH7AP2Prq0x-EWeUjW0yNYWwr9ALD01ML_unM2kxC8seywdQWhWWwhGjQOPmyhP8YVkzugImbqNNJE_-E8BhgHV4sgQBX4rPC9suu5oxuzOuWuSb8cGFMeB4fraMy9uEjDbG17MUjFgI69i1wK7f589VckXa3aVNr4JIXH5x4XrPfTPXiGLjHnwMlQFAbVfea7-Z5ZXnJQ1dH1gSXLu1BUbpOOedCUbAQf44QPObcYESBJmwJsgmtpUeegrExcXZAzcWNjgmboH7cGP0sU4q7H-reMvuuSQF8ZaBkf6wa8rAzzerHGEcGmRpsVfw27IcljxTFi7ZIkIXIkvrzf2M-pHcKy5YI5Bkv9N2xyQoJ-Im53jEL6w6CFype022ihK0d7e9AH-ifqPJ-JIflTjSPgCb9nSzfTBrgMivKu6smOxG_mFmvC84AKmKYR2AzekFqN_nHtbFOIaFAzHKk5035vM2eeresywfA6Y0mJ2qx28QH1kA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ca1b8252dd50-42347702','','','2025-03-06 22:02:50','2025-03-06 22:02:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42502',0,'cd-form-entry','',0),(42503,0,'2025-03-07 11:46:25','2025-03-07 11:46:25','{\"firstname\":\"Elliott\",\"lastname\":\"Eyers\",\"email\":\"elliott.eyers@gmail.com\",\"contactnumber\":\"07957000773\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gbraid=0AAAAA9_dL6tT1nwxf0tkaNRPeQpUSsYUv&amp;gclid=Cj0KCQiAz6q-BhCfARIsAOezPxn0pM6kRaP8_z8VQ_4JvALtk6uQq9rncnfyg5yhVoyH7pGXOv3uUEUaAlS2EALw_wcB\",\"recaptcha_token\":\"03AFcWeA6JFCLZZsHXVChQ57mKQlFZYscVnQvsI2YIoAtaTIDUR5amuXgQvHoI9_Iz5Rt19tqNyikzkg_UYWI08gHeWLJAf-sY3jLluqWAozTYvO3Hhaf1_vRzTlvudsbGophMYSHcOVaDfE3o_AVCs1MCuPi4zhse8Bwl2egD_fGzMopVg7Br-OZCMYKarhDyVirutclFio5ic0lgv_zPUO2T6tDPOaD50aOUzWk2YkO0fGuRky37ks9ElkblMlCIgqS9v7QzcLzZ0vCRINwzwsQCd8v8IjR_9wD3OhiQPQznJlE8FySEuG8bZkwrLtw_0zlMsKjlzdgaEJijeTRpDxqi8dwYRsVZPhDpYTdIkazbkVkyZ8HQVUusj_X8Z_X1IFA_NF95GuEheuWg0Bn6orYkQ3kiwYYuO_Y71KlTP4CW8gMFqMTDOcW5kwFuIBUNnh-G5f-F_iz0-mjf8jp-fremJOgHCaSxucZtON0Fdn9X7iEfqd0XWqoWnBnbNQ3fTnvgrFPMPLNg-FUnHAhtAe7gukjkOGBIhYdOK7zcUDMyycT_PDUL9x5QRd9xCgZiR0HvLhr5vgD7vZhi3AqJdAU-m7AQiBLbngEnqhOJfmbEkorcbrtPcFzTql2X0TsqbUwFgN55HF1xPLT2zphqC9Nkbv0JVa3n3NM6Yhvr7JBvGuGNte5M3I-rsjxesHj8pL_m7hrX45SitZf3PL8Lyp5rqQEo9fYEp0rznDsrY0x88bvhWs0MpRUCpq_MQ4ibuXXiUMtbE62thzK1ibJYe4JgvsvssHgxjRGe5hTieO9UE7tamQcNJ3nC0alan9YEId3yE7kQrsoKEGZ_Alf3XAwJ-n9xJm8XeqaH-6dqqNeKNrYKcLdQ4Gm2IX8EnFa-gsfthzWGbLLmDwg7HuPb80nBy9hUmvJkYlIa0xlAT6duz9GlpBVwusnT3wnbMnESBq5d9NUFgvXKdiVon2_W0Ee8nTtRNdd45xZ3e-KP3dtv0UP6ajNHx43wIfZ091BfAIKJOii34crrS4eHeg-JMeCY6YB5F8_vh4z5bodQPW6TN_FEYXpWBzZBbfmAhQxE-UjADjhn8xflovhNJbXtWHQMiDgc0RWdwPaGQ2NTBBoK0QJBnIN3nYigCcQjxiDNiuDrBmtSa25CKS91mCLNxdY5vZhcN04hL3xPsPSs2Poc2T1zBJ3B6hMFEOC5Mw9z3daZBuzP-cIvm5PHQHwySZ-UhwDs4cevUM84QOT6rnEy8-72UG6Wjk0lsw15a_HXz05atVURN8e8kT3mttF6noDzrjKYjeDhoXSYU2VUsqXQPrBqNcl6OV6A0v8CzFD14K32ykhqZ9M-eNGzcIHnTm1Fmg96kPVKOXRlZF8-3SV2BEYqtuVFcEhXlob1IjdMNeLyMoTEKaoIFPcuTHRu52b7pMxgpo3mu6yGn7-0NxleMvfvcJPErwD63oMwOMYAzV-9iYlZ07-koxexY1RVnkJ-QHQR6ySfss2FrQmDQZoaTAG33mcTxdBXZiT_0PcVZ8t9NKOTi5jVriFOMAnlc-6_eHgeajG6G3k07nXlcph4AtEoTCS7EyKIcr5ntfBY8Pae03gUPVXEzJHQfB_0XuizmBSE_OzgVg44DYQYZxk8lkSG8xRGcZcsNwyjQ1ct_E7np5oikLFwx-VTaQDYU9aO0DYKYl9JZvkUPMiFYYTH9zXsfn_fnWtIaXaGwqMuVMnV10QThEA5PXZuHKoZAHgwdqb9FwqKG8-RDxHY66QQbfmWVZL6mwUnmuQffsW_3fh7NCpwge1FzgpEbrdOMXrKrA1NA4bftuxTtwUDUppj468GS8zUR-jTzfXE66SO19z9Qr9TQHM-XDSC0YboX2G8Bbn1k5kYRnd5IiwyNLDGmYd_BDTpXE2xcXmKuHqMuoLLd0CgBOMlsfm9qV1Tz69c0ABOv9SvQYaes0xzTV11jXEqKkYWyiFbw3JHy3nMz_9l59xCKmmbq1jrfBbI0kC6AspASA-SrZTo_l99iOmHXmu5KsWVtAhhhgdyBrtaS7o3kLzYqHNIiM8xZOV0X9HE5rHud6XWJ9TVcv44_1_CDvKX45dxGipX7fXnhbkgv5M5iRGhnuQp\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67cadc4c4fef80-09688801','','','2025-03-07 11:46:25','2025-03-07 11:46:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42503',0,'cd-form-entry','',0),(42505,17,'2025-03-07 14:32:07','2025-03-07 14:32:07','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-07 14:32:07','2025-03-07 14:32:07','',42431,'https://biomechanicseducation.com/?p=42505',0,'revision','',0),(42506,17,'2025-04-24 13:35:31','2025-04-24 13:35:31','','Musculoskeletal (MSK) Education Courses Explained','','inherit','closed','closed','','42431-autosave-v1','','','2025-04-24 13:35:31','2025-04-24 13:35:31','',42431,'https://biomechanicseducation.com/?p=42506',0,'revision','',0),(42507,17,'2025-03-07 14:34:44','2025-03-07 14:34:44','','MSK Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-07 14:34:44','2025-03-07 14:34:44','',42431,'https://biomechanicseducation.com/?p=42507',0,'revision','',0),(42508,17,'2025-03-07 14:37:18','2025-03-07 14:37:18','','Musculoskeletal (MSK) Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-07 14:37:18','2025-03-07 14:37:18','',42431,'https://biomechanicseducation.com/?p=42508',0,'revision','',0),(42509,0,'2025-03-07 22:34:24','2025-03-07 22:34:24','{\"firstname\":\"iosif\",\"lastname\":\"dumitru\",\"email\":\"iosifdumitru1999@gmail.com\",\"contactnumber\":\"07496675156\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAz6q-BhCfARIsAOezPxkoKp87n05dgr_FUk3TtQha7UD2oD5yn94IcQhPSzVJDNdMPn1rchQaApV3EALw_wcB\",\"recaptcha_token\":\"03AFcWeA7otYN-Y1QRLI29Ep7kJwYie6SG_MJj2sxz6pRNF76qaOm6WofpqZqCbllQhaCga1ucmQtRyy8hRgX6w8s6nNIgrBj8LHv0IYqiEEVZap3w0ZAQwMZ9jWi43neJXHcLgAw1Wu0bpUH9kte39W6Ilw2ZVkegt_is7CpEf71bGwskPvK8s19whbqaeXPOgbUhSRl0-lMDJsyvR-JALJcT3GTCWqYS6EbiRlCU_KAfs4ue8PxLITTZpq2Aztj5t-YD5Zo7AzBOfo1xtJMayZiY-LHtKQk2o8bsKUYaIgDaDvy0WiBa6skPwNqwDg604tDJSnTVp0Nxp7hQBYyYFL4gb5dcveiRCNRVeFrUpLY56pwlkWwcaWVo1jw-3VUENjXxwQP-jjRsa3ul0I53Sj9Nlg8565x3ImpeCbS0q21ZcCWwa9ZXPkshDkdpqdEe7S8hH1pzg2WSdGYOdm1je9NUK4mBoRmpF8w5rHCtZfDWccHUQw6UunHAhs0ea7K_DtAHbfdqjUL1aGWkq28m7wjJQKru_EolW-AKsv-IFFOQ1bvDkQwo-mlGKgS6_8Rwprtcl0uLDccK61gNI7eeG8dEEluFLWk-iVbLlZxqZA5gd1eJlfQp4efTX2q0usGULhUhlj4DjqJjPqFsxsaCTY5Mct2m_-13rYdphyzDyOs_bb0uwyv1SyYE6unmBki4Y-Y4gc-BJXPo7WD_m6CrVcNZlc9dZAq0A6GZLviaWE-SIiIb_6i6Vh23HdYJC954BwmHr_ruDFs4VRaac4c0CGUtqWkD5S3Vg7bw1tyPFzS2bQLVsXAhSOCSsDrvcvjPI11unOOM9meFitRAIp1Bkf4RxgfHIh_y6V1VAw6RdEPM3N7xiGloXQG7sIgmc-pHuOF74xeXR178CVixnKS5rwumQ0ZhWGFi4ongr_y3baJPpA8p422GvQPx6hm6NE3D2ieXwrTSlUBPmU0Is_K54t2kuDg2uefVl8pOzoaLvN0WqpIRTgt4Zcn45tDFXW-nUyseHLdOa4lPjZRk5irTqlCbi_nUP3c2r6JM8c9a-RGa3pfL11vV1RiYFRua9U7ZnX5khHULmpaMcCifai-5bFqZGmLydWR_sZ4qF_0FvZkCzFqzGKFdiKMGdPOb0eE8V-NNpUwOa2nZChtebLzfS8YVSrMTUtKf_J2A2xX4Ii5Za50iujXU1SbH2yy3G18dOd5ItOd9KNUP_IbyK2YZnacHJy8Co58pGZRTfrsRbrSZfBkCAlwrMo-JsFOywnmt4JCvFXynkB8fYMPVhk40CIJG88O3PLp7Rw4xabqBPmLy2EYOjmh3Drx6WQZDj0wpTpVbPQHaoWD-FR_jdgGG2enoC7aJzL8ixExKYbRPaeVOhVuXj3IHiU3Fe8AgABsI1vehlovhA1zlfdfTAucmTnIW3emUfVqAXK6cS6UkpX3_XCu0IUr3tdYLd2QCqXmOIgvjSlJD5ihvM8jCHY--rNntAsk-GrhozAPWa0ONOKjH199KZn-PG9j1T27LeK1J0UNSZHNQ2PX3zWbfkO_5lKWFx4wUJHEFEBRew0sTqgsRVVwCalCf87cG4KzCbqOKHSG7jlVG0t8m0_e0LKAunKOvKN9PYnLACvEfNS-IVROEMya6ctJjPPkStYW7zbYzUA411uKAWNKEtW78ZCvdS5L8_hVLIha_n_wPTbHiesSl-nypCapOJTOAc_ryslzo8Lc2DX7pdoW1_IecvaUR_o7G6HnZA5b0q_Cs5SngAdcKvUPbyTvCCbLek7DEeKgdesN6wlZYhD8nSg38Ke4KwJzFzjpIy2Z1yT7w28rAduEgMVmZv1_LIFv1Ucs6afEkKntFVnIJU8YZJBHQ_Hc7HdecReta65lrXArChXaLzmTMcbKXquPR1HPRo0A4QgSl19YRy7avfrksxdhEfXzJP18N3O7QF33_iy9CW1uVvcq_dHuCvlKLvgkdKPCDRojC0Arje3PwVLQ6nVvx436YpWy2TLvVvs5UUQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67cb745d98b6b9-65288069','','','2025-03-07 22:34:24','2025-03-07 22:34:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42509',0,'cd-form-entry','',0),(42510,0,'2025-03-07 22:34:59','0000-00-00 00:00:00','{\"email\":\"iosifdumitru1999@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"1\",\"currentpostcode\":\"l133ax\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAz6q-BhCfARIsAOezPxkoKp87n05dgr_FUk3TtQha7UD2oD5yn94IcQhPSzVJDNdMPn1rchQaApV3EALw_wcB\",\"recaptcha_token\":\"03AFcWeA7B9_qogGZQVxiGt7O3CaJlAxQfQuE2Ck8r2jqqLihJgdKkOVhm-gRYF_vqoSdKGpV3fKC55oat9GB39iswX30TfOdznBwAUtPaC-X6RPhwozDIMBddrt776xbjEsQj59pTrqnAkEVkGchhliA7EwUsy8ZLchRwR9WesrNC9iDUTMocrBFyhcDdrPNguQ9E9KvizYC9UnXVc14yiMKOYaSFDe0FQkl4pD72Q1hn6LYBeDhTFqR-EFSExrQDd22sQF0X4fNDKkUoj0UGjVtcYu0UN23Nk25M5nYsYuwk6SymxjXezlkC4GOK5id4cOfpRlzk51bMJjfJTH2SxRPQYK4YKBucMocgpTX93SztRUmeja2R4uuTkwXoNmImkL_ICO_TGr3nQTbqP9bBXjHoP0zjXO8PLpBcFnpO0RGDVgnmSiZ5lVp-FZB8I3JTdlhc7kEn_NPTVg5oQWEIUb9T7qCV7_k7LhYuBMviOb_QqQwOCm_uBSK6r8xg4IinZzQTuCNQD889SpVi8cwlIWBJPsHR_qHj-0MtyRdYFdRaWJwoC-dK5z1a_FUp1WWuvZuS8FhMJGFpsbSs7YlQchu0TfRM5DPKamvcklAfwGivk9EY03llVW4TGWG5QwnPnKTAu5YEkcT3mQCeWlM2TX3cONYtKZbo9u4QOtK4MdybdlI2PcMBBn8JL3Z2CCUm3NvVau7nYuh1d-rBnj4QXsrHV5ocd0aI-McO-yoHQHlHr1cGgdciWa_wxuvJlQT3RBFEfovofDsaIHcaPjZ9zN7VUPeKxkouiW4hz77KPUuujzylqm5mC9Jx3vjAIx9lMwLEDC18e0jsySvxY4YStKCj2t0MuQ0FXxEh1KgNMnEVpZK639XvRHSddDe1fC56xU0pG210R0UbBF3AYjbX_FEAhUct53tlyFmYNIv-XHdJVvcSd5NIagls8TQFvq3Hty_F5tGdvC9QXg8u3Z61NY0MIe3Q46NyAM_T4SzFjLbuoo1CfpJIYd6cVRK6z0K4ayDZgL1LO6uPKWqGCXFVYwicCTtUW2l8UvS861ap91qy4yTQ5Jdrh3m6tkLnvSgnHaJzKpog6_YHNyEwU9FCbzsDOs09MnoSIQUZwYoYKzC8L0fUwAvepsWs_hP3aZjlCm1_TfRu_e-5fbnNUTT6Wi688BEgYuHx8_AEOogpzjb2O2iCEDan0P0mriYKbaaRM1bXRCVR_JMxltsD2wKsRMlZIPeKfMNpwUr5qWyYRz-4OJW5nSzWsa1EWtb4dl5QjFmzXjNP9jNmM27iO65SbqZU1uprPgqZD8RG7XuiJK1wl917aAUlZunxdaO7DPCciKZLhs7YsDMaPOBXd9dzYmlkYjRy-2acLOaQv0hGu5Oh2se5WPuQ_ydcpddbigh8M4qEoKkCUxK9VccE-CHpn1lmkrGOdRmvI6GzmomXUN9HUwanHFEgjUtO49nL6C0WelqSzoI062xRQA0Xsv46m6J9wEigjmk_UbBSpYcZwIf9T9HGFu8y26A94oGkdvBl4nLVrgENSB92qzqd7LpwaOYgbkqRg1RNFMm7hg-eGvDk_xjmevsgvZDDFp7gLCWu0nDBdebwN5bYTWLYL_Lt9I0bpXps--03tI2z1tzvEA9jpvfFxBoR_HohAxuu4UL7wxPQAFeDfzRo6IxjJJptOEcp_lSeMnyaCWPZ-CTVO1COUsxNHBDRQ8vlELllVUT2IuK5k0XUrx9Yu7hO7yaKfdh9aEMYai-WhqWA81neEES2fSQOv68bXVFNaLSMd1p6dSsJKoGdnNAZjGzqSZE0Owujd17LmvJSgA4Z3f0XqqRfXNJkV7bFwtCp5dkxuVt3XZ6j6wgR9DIk_KA0ax8zcirJniziCQtY65-k2JU4X37KgnccVf2gu2wBeN3C0G66ZhhujYcQOA_iMc_JiarlLp0Vtm3sn5fWtRnwVs6Wyu0X7E-fxf5c7gD7-JKA8mORQpmur6SglJx01pberPVUTfemNM1zTRVy5iqdr9M7vIbZpfMoJN8aep4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67cb7493950014-78679181','','','2025-03-07 22:34:59','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42510',0,'cd-form-entry','',0),(42511,0,'2025-03-08 09:41:55','2025-03-08 09:41:55','{\"firstname\":\"Dyionne\",\"lastname\":\"Montague\",\"email\":\"dyistar@yahoo.co.uk\",\"contactnumber\":\"07951648557\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA8q--BhDiARIsAP9tKI2hVhUzJJNmQ9u-rwk4Hs90wqXAOaaViJb0JhfsgYZlPtR7EGmPih8aAiOiEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4HqqTRqCKZn8Uw9EFX6WtXb2BS_DyuAjqQPZHPZnJ7p0H6Dac0kLEQXiBwyR_KrWbIIZjiO-VncKJe7roAzK0DmFiJRBVY2N6ZoR66CM_5eGpu2C21QuXA_0pbaTGAtXgk8O24VzwWHH8250PJcdehmribbTNhxJfTg12_CGQr_uV4Q5ntKBN9OCq84WLlW1aSkEOOoKuf6g270oLv8nk3KEhx0Wqg6hkcfEDR3QPZF87eDlwhn3oj4z8zkOch-lJdNwH0xpzYjofgnJdY71FGJodwCYERhKuP5JpLa9cpJb1XtIVXRDkt4dV-bRy_FMI6CuapG_6jBu9Oib-N1ltMOICXuTy_vBAWcNDWUkqfgB6_Y0oAUivBMHfj3PlFEWYeKLUe0Ezf2i38_VPvqs5ZfMddY3uc8kvGEvo-eQuQylIkT4K8w7HK2FMvu21rUI66_Uz2QnWxzaXuOF3cVVERQJ5jk28LdvE1F_dG1Igkwc2XYSpJMg8nH3v0SfIXYCneXPlcArLY47FuvMyNOED5kaqy2ZMpZtNfz_vdYrM10DlVdqNIQYYuF9P99ScViP0MGEcnJbjXeOwulFzjODcc5J4B7JjDG9r0BtIn7Tn0b14rzJn_DJ0LIfncnU5GGZevCkkp2poXlxrZqliXBgND2PC9vmQj5KL3TDcJm8560MXO3efRmbIz4HMCbstscK_biytcQJrWLOsX4TlX2HaLGtf0W4YwfBCLK3Eaov6mype-Q9daxeamOI1ywiouEyCYCy_RDF0Gh7FifxncX0WD3Oe6eMet0hExQPy9KFFCGkPNp3xQLVE0sH5WzgsAhLgbRcE1nTJvdICitulaY_YxpTYdwOJp7LNtrR7YqhTtvVK9l2pDRaDMJjRP1ZZVdxBGSStAnWFPOW_MxkuicFm-CZ8bObegaTK4c1152OtCzwmK-CGjSqhEcTHDyQM1u5fxRQk-8uyvE7kY110xVh47lt07pa89Urvd5XHmls4W3zGAm0FXl6cuZa4TU45y8ftr9IcuQD7LLUa3aJwdQ3K6OhDkNSUJHfHqTiCBLdb9e1LHdojpOYZgShALrIFNGgmE83B_XRJL6vaN12BorWVrmJRGue7VGQ5OVHw79Ls0ltxCmovl2FiMH0MjhOuMjkyzTiVlVQ2qoc1vq8jlw-t1Jx5ob0DWIIx9KE60yKCqQWeaNExLiXu0R_81aGk2K4OgKA8niufVPbUy55387ugyjHoEods3N_4fnAc833p0zldZgv1eZi1rPH1Q9g57hZMlMJdR-i4TvqRIrQnF4uay4xy5Oh-bBR55H0Lc68SxOhjDcmF9vHz44h9BK4h8QkDAqLuy0BSGpRwrwldR5OhmUBa6UQi9rTuAZBj3xbdZocfBxCPUOaZAiq_znHfrhZvdyk_yTC3rmkOnFcx3uHwGrNMVZhhlq1Uk-cJMtIuXmlv_ZM9XsA4lQQDjaSlbinUeyUtrQG_w9dGER3aCe2UIfOts1QZ0-kgkyb9P5jozH3HEA2aSfZK9hpEwaRJ4Njivpo1MSqUnDIIStvp1O1xblhRN5kAsNC5LrxsuvWY6cNSIK5qwcJZfCqvMaY2-S1iLpI7zDp6XAHjArHxqwEjk3WxjyT3bAYf6-7yHJi_u8nhAr_qeniwFxY38ZCqyyiQysj4uzK6OqcxyioSC5a2AXHbFmnLHns6RbGEhBBHTZg8xLK_e7Zz_g4klipHMCRmDKofb5u_5wAdHsr_772bKF5ZAtLVu_e7teRu5Zu6Kut60mxaIcf7rJkucyu_TyQhcj6evAi5FX9CuoRM2Z_kpelhzD5BTotpDgy4yfl3VPe1cUbK4DT98tMRetnvanaBKgjgyKbr4_GnWkhRXbXe5-PtSKYR80kspoBhss1G2EevibE3Hm0nsCexbZYNEC8q94eWzP_bufSCp2-RF0Knt5bGsUIG32oogo_rkAJo8xHTv_1xZ4d610ADqyERUFLdqMwtqFRmSB4VNd5riAQoXQ8DocYweAxKJ9K4qkjVzQ-c84D2QxYDFOjyaHjUZRE2I1TDJ9-1EvPBuQihvm27AO_6okXjnbbjXmVwe0Hh-EPCUUMaVFPnE_pwXjEdPcDVbnfAnywbcunqN34iPlaoyC9H1pSrvJObVpbr8Z76kuU7oyAUCoZ4YJ6w46Zto3BL7X_BxV-LuyMU3GjLasNShsimpOj2KhQP0hJHsdhidIrp5r8qfhHdiaULtg-LSvflZ-HW5hAdlTq-HPCZI6w5Y40odM7TDIUhOqYP9Z4xkyCTZCePr6zQUp0HI_uGtPULdqKwE3PepsqRaCRDaLDs-prpGYQSyFAmQecZ7yhxs7oP0a6Y\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67cc10ad9acd59-04516007','','','2025-03-08 09:41:55','2025-03-08 09:41:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42511',0,'cd-form-entry','',0),(42512,0,'2025-03-08 12:03:32','2025-03-08 12:03:32','{\"firstname\":\"simon\",\"lastname\":\"spence\",\"email\":\"simspence@msn.com\",\"contactnumber\":\"07525354911\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5fu9kzilLq7U3e55oMeFOvcG11vgkBcAXxJLAi-Nobw7UyuHBXFurf406lCfNqHAqd-DpJFiFQuTqCs1zNLqzjaFztcU_1g0nNnzkfBrYjqXcO3fmM2N_hujBtDCMECnQi6JLz8RZRs3ZT_0iHESKwVYOdTe815xU0n9oSq4QT_L2nxOp2EENLhESYfyRxbtv4ToXB_NsXYl4Sp_SSSXVT-m2PAQY6yyEDjuPLJhmJeDwrj6pgWLZJgTL60O7zwtmwNQtr3KHIxCHSu9-HJmrkmQ0UnGtRaJIpXX2D6E3ZMGhzBsftfiPgbnVBZX0wkh0j5eDufPEqYQYePG5PPS1gpAMsHHOA7TbFLt57LsqKhJwkR_SWrwCXZYmhkn-XpdfsGv6NiQaJKijDzI0nZZr56Ds-5tLFVH3UJLQ2hn9E_E-yqVXdvXDvmnZRgcAWuK9VngS8KB4FCWIjCx50q3mYByWYZlq50ZhJ4EJkw-cYCBhhP35SsSHIrSRTlCHgPCHJJBe_cQq1QChcWhDCvcPxRPpJ7-lI-tirfB6LYJwy1ZwVGKEf4Z-hJesdjRZcGW7lRHI9nESKQ7q015Q7zr-DcuqJxZm-kpUVb5Y6ONjhX7b2cEGcp8KvBakjlKAsqOG3BmYaHYaqyM6KvGKPO4QwbEsUGsI2iY2_pXCxJFJ8JkUOPBsJqth2nJVCAVPODxSTwdJIB8jnFa4mVorzWekjUx3Q8Yt1rPbbC2jcw6Px4M8fgf4eLAtpJxVn32zN1jFzFiWX5mG2to1T5Ji4k0xkM12tdZv152sjPChCBOimV9XXjdp7X0cX_pVaggKDnwYTHagk4w8nekkA-Oy-svVw6Y6U3s5RJfCcfn8LwT--ZcYonkRcp1lta6Dbo87yQQ0SSMm37HS3syYX4G1mHgk-mNkW_Y23k12LHYV4P--UWLMzhuORF8NexHZHnuC5qAxbEHjyyC9lQwSBn0hIcysgxX0OdV0ybNeEvyy4jIJ4LyqZ2Bnv6ZE2VRv8yJ73Yde7kos9obSpV79rE175lC6TetUrrqNeicINpNOfVmWe-FBovx4-eG3uD2t3AoVFgZgKQ0fGJqep0pj6SasPVdD75F4rS0wXrMUFMsMxbHLGutDSp4Ofy6P9VOnWt3rHHuLkf3Z2PRyAUSmlTgaWPqpUoUWbxCrtBihb7oGIrosRQZP_OPBXLNoEqW-RZ5jN-hp7w6RZ3bgFves3Eut4tt-TfTISaPMgTJkqAZcMnUejPHnO1l5NDB0dLavagPV1NBFZRcf5IUqbPZAzjaArua8Lv4DLNfxZG6DmFnXBHFFvD_67swHrEEEKqvGtU6tat5JNJ8UgpMPvZ_-CPwlstOebH4rgMn3th0mM96B2H754Ene2aOxyGrhyjz-9pAd86UpXj6V5gbtlS1Apw4Uiv2k_M8du2Lb2XKAKB5JNGrCFepf7_jcvkTNFt924Sn-qhaj12ja-Y79T1LbPHX9o43QyAJhelDVO3ULG4rOGd2G_qq6E8fgKFUmVtJCOnLGmlqwlqf0UVDhsboGB6dNBwNqAE-kfymMJjKm0mDcnYzfdLVyNC0SyXtgM1uiAjyvQdY1Tx61vTiaC54t96Vm4RGfP0bgNZdB1oIrd4rjJtJgxHbWeu4ItW6diI2Aqr0QHGj-gFfb79ZUwi6YI9-NKnuNs12ZcQuSHX2aKhpGBn9qTL6ocbLW42RnPf8XNdSRri0EuTxztYSEYE3ChhDm-u16Osrxf-Koqx_W9myTI5cFEymAkHgx20K4tGcPNDtWc9RWlOzXBXnNik8QiAFPNvDN1KHOjbqQqbfhz__U8lDU8VYWCXZZSo0OkRdruslsNQ0Pu4MMaicPJQKBQFPO_IMu_wGMyfbGpqRaWg_ZTudzoAoeI1j_Z1hKlWHWnmhVdr07CDeWzjaX07u5PJWm8i4lKoUDyTxuieH5UhEHpnaizlK1b82KcS5H3PUXJ8bKNAqOaECRLW4p5YidjxF2zccTSSgckKSTJo1dq_dgek0q2r0ExpNwHqziVUWAPXdE_o4c0ig56YwkRfkVtJ__88y88drW89kLtg_0PHR5FPIX6OXARJG4lkK8HYIcfYI08FAMP4Bm3\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"2\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67cc31f022f182-67911723','','','2025-03-08 12:03:32','2025-03-08 12:03:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42512',0,'cd-form-entry','',0),(42513,0,'2025-03-08 22:59:01','2025-03-08 22:59:01','{\"firstname\":\"THARUNIYA\",\"lastname\":\"NARAYANASAMY\",\"email\":\"tamilaruvi567@gmail.com\",\"contactnumber\":\"07442112226\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA8q--BhDiARIsAP9tKI25uc62zqJfURJij4FPbTzWD0aY9EUnyN-lovudLsrvf_Vo1vA4pY4aAoRqEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6nhgNPm7_8jBxQDZPfjaKLG02gK3vpKm34EPtYrJmvOdPiEM7Nw5E7vfge3MCPad-db5zAO3OzEk2C_ad9-c5-Hy70nw0KVPb6YjlVGe0FVj-ngNIrYunnGtl8Zehqq1zBMj6elR6QEShBvIuho4yJZuOB4uYuwUpHrIg3enF1Tk26uxpzQJ0kxI5fr9hB7R1i969Nr9umklYgC0TfijpEZfnvVBfhdAzowDnT-PvgowzKR607pGEdQC75buNKEqkaEiBcuv1OJrhvoP4cifMh6wGE8ez6iyuXwoJtyb9qu92JW5je8nCAZIArdcbSxwu1WNpT3Xb_20ZC8w0w2c4cuwkRzoBQ4c8wdujNeGy2-KRTenx2JGzAFmVLd5jXm0ZoGTDtoGkj22sr5w-jyiChBqx7-jhjnHFlDyCA0XhynLogpLc3VZya7LBsk15c9tEsm05DDS5B9SeHlsd-s2EYN5Q6YzEbJ6BCjnsEPtZ8slKigRPwNgWU8FfmVIgPlP5BWFuwuxCOKqnNuD5aYjoXZwG1PUtu2eqBGA5G-L47psTXM06-4HDOTSWK2o_m9N4J0iUu3-KgtvdX8b3UDob5m25qDxTXp_rUmSK5HQB25xLTn-DKrq0W8JaCjcJB9EdG-QgaadGoU6XfICN60PKn9r09reQrsS7HQEjL5OySSdpOK2dVFy-em0W_L8sWjZXDROsG7xaEPHGdOT-YOThcsTpuJ1VoNi0-n5fkAipB2az-cXjRpwVaNChPdCkqI2EId4HzoFcNjzXhWkXi0jwpiAfX7uBK4Dcb9AbMBOnh6zXgVUcRALw5I2ZNHTgHd397JOL8QcHSm9bFGOORH_AlBsqLk_e8BnoAyXX0PTDHFkPPSJMZssAH5JNsXbH64-TbXjjS9eseGyrjv0LHSIB_-LeA-ofV62PqBSQuczDTEAGdxuWHN2wDU1MZiRffYKy36tUmI-U4ulRwF6uCGRW8fdIDqSYkJU14l8PAc36sGFXE9sh1qjOlAB2kdcKCksbHI_5SN7nISb3jl09qD9tzv5LgkMx0ttiTty9YWteHIOXUvIERNajR_AABpUsdmVJsY7foY4PkTwBeTWpNu3yWAseGupqpJPDjRRQlKyKceema_2vvAxIZUz9s9_MzuLoOMLdd1jdaz0TcV4d7kDVbGx8gZnSNkRm32IZDTfivp60_4FXI7H44OuxYOs360y5YG69p3TOoggl0LfbF1xIM0oT2P3UuJlYhvGSank7b-lsptBMDRXPAmD245DaAsz7m0lm5xTkks1fykJw7Tm3PtgdSo1b7UdkFeOSxaKKuu3CEjSeLRX6zuGFvmlw9h-UQ40hxjQQryBcWFM2JbmHU7y_myhYlXMSpGweP1_bdeZOS0DLwA2ZcNrk7QYyUqPsrKJ94Ke2mukXvAskYdDuNtdevqdFuffQGoX3SRsk25dT7rM56uJAwYJSiDrFm3iP4uHzKKkPAJ2k84FDJeCA61hcJ_rgq5_q8oKCz2GPJjoofHSw13Co8Ewt3vP34YZXn1gvpFpT3FewZLmfXhiCL01pUbnqXSZ6BnM5RrB9M0zsbkjkSdb9OMsZXSBLqFZ-UYOHFBvznEErlvDPh3I0RKZM6VMz0SkgZ7Pm1cfFsNuSHyIHbnxzmFcpjIUdhkJnc58mmghqkNJAA3m48iOcbALYyhEoyFnoxIFlxXwGtwKrzJGBUd4FTX3YuEDDsXed3eFip133EYFEZXevAF9RwnU0fiecrwpDhpHRn-q3ckx-xyG9j1J05eMoebCs7TJmcrBxSHLO6Sm6ZFgQx1CJjWarkd6ttpu1WFNUBlC0gK5mpZntBpfVRoqm0zyeWdE2ufW5Rjxahf2-6mosZG8FWmfdCzDPpALkUz_239vZsVRhGvKxWdj2KF4gBvYiWJynvQxy1d-0SgoINqxTpnlmQzAfLRkxbo18DnsBywesp6HoCXOz7XN0U_hvoTfP9AeYRoVFjngyOuwTWf2hauZtO0111u0MZaOjXVIGuPiU3onIpb5WKbeB1P9K5IQWbCas8bPaTQDS9w2nMkpv84z4TKquH4khjPYCnyQLpmlvpB8vVmPDNoQLjBCpX8W458T-4xIlP\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67cccba420d7c7-61424603','','','2025-03-08 22:59:01','2025-03-08 22:59:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42513',0,'cd-form-entry','',0),(42514,0,'2025-03-08 23:00:00','2025-03-08 23:00:00','{\"email\":\"tamilaruvi567@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"CT13SY\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiA8q--BhDiARIsAP9tKI25uc62zqJfURJij4FPbTzWD0aY9EUnyN-lovudLsrvf_Vo1vA4pY4aAoRqEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7wYhJN6joOiwcKJn-XbShLJ4-OTsaJJBka332RtNGOhykuEdLSCF4N5Rm38FiL5eHbvFRe9NfueqTjiQmbDXutjdZa3K4aZDRuI7Bkg9c6U3GwRxX4kp1o8FRXWJcP3OPdMy3lTpyTltS7MHia3Dc0FxJAPOslTiyz9-8J7g3aW-G8zuDnSPshTEO8ZqNMOEyH36EE-__ap1ANH_fZqOkcQNEe9YDm-98WRB_DaCIMmIrLoed0OesHsWbWD1TcXIcxbyk-d52yBJo_KlFYCC-g-Wot5EzKkUM23z0xj-jNZo-qT5bvg_EpqSNvrWZZ2nzXvjjAWJtIvatFwkRMtG-35o-wnDF8tQNvnLe5577kECVwOseju5HU4yd3ceRb-yqKotdmHIljV1Z0vKDKoYtA-MnFa95W1AzWgIhsCYBpAk7phgaxD16AuIphEYNzmsBc5EBsvbPMnKfIu7VrVsxX9TM9PoiXe8DnuObeUMs_eFOjxrYgpzblAZ4tP-fP--aiOAk42bp_EQ8AB4qnQPrGSYPf8OfBS3oHjCVwh3fMafcgWrJZxe7CCk-pOWokbH71txmm1GZ2x9vvibpvkZ79B-wWDsXLWXi27nY9OgurQKRlq6I7_zQamw-B61l2dSYzC8cbXZsaDM54t_g8D5ZzbJ2995rd0XK_4EMFSRtMYjjYT3bpQydWPNdIa8KPANav2ghmBRWN7hwDMvEc-pbZb0hXOqIgI5d79BYXI41jC_8AldCCWGmhCdTW_13gwXmS1jLovOE-wrjtjF5F8h0HWpIIvroucPwvGpuAwtm5kunBZtcCloaUStJdyxeG6ipc2VQzKx_OOpgwlVyER0TcC59ukwQHih4fsoqVjyNrznKOVxcF_NkMZb8DfiQoSOBmBbjAYPu5a72Q8mUL2yaiKJnjH_ZA-b7arKcqH7TIqibiUjY44-bIuKtkLRO8NOT7nDn67H2ci5nx9iB_pLrGbS7GqiYiSPTHT5ND7_BGwl58amZ82NK2z-Xop6_k8I14xPWZqN7wrjeJ1i7RQ8MclQ1ZhRRWwN4MB-RSHDXY9PqlunEDrcRXRUKXN-4Klt7OlHbdCTl0UVe3pGCguoZD0X9ecnxR4aQW62bjn6Wq4LUJ_xQkAUu31Q7ktSDFG3nw-ZOnyn-mtWVpWDVUaH-5t15DwPugJ6pjgJ093RBFufHR8i3OyFrJpeojVruOemtq-Y65Qc9X5KWvbJ7tuVqZMImeJKzA41aqztei2bQV2LPXvkq0NwjSSJ9K2uUTCIZR4MGtxShdExj_L2yv5TSXSvvbVdkz-Qw4jh_SlgLXMw1NmEzgfJnq9r48oHuZ_3Dz_qL0tkBTUT1jy3ohv479_k4BRmmrGZsfyS4WwjxyIlYE2QkRmLdUTKpDyX_Ckne1oYxbby3saWQ1KfQkCOWdHctO74s8jHkOeHFPNDrJgtViaSqHnVDKj0jgRmAjcXfgitgWT3kFRNxKMzxfVRSkh8PJC5dmkNB3XS6dLW-jIL4XB7bML1WwSGeDXDnLIeQS3Ji2Rso91yOAGUt7PFxg8lOkkYIQ1hzQpDwQk5lJ2imFClg0nnEuCqjgF00qnPtaG0gHEJ68koKoxw2B-6WoNnnxljpQQh8NFVF73vZn0wQybcDx0Fmx2je8LgE0-afB02tg_9YfC78k-UNOjwPK9hOrC-sGISjd1dlP0g2aIBDZUJ5VlOgCbSdRNTBxeyGy6ZAvQ5lGEnA5KZllMWFID5H2q9zaVBGcYMsoDxWox8vO7zLTtNtUcFqSHb7IoZBckxZ8cEn0ME_kfqf7rzKKfMfvuWkAZIffx1dPls8YuaI5dVYc7XCc_4b0eMuxXigHu2y4KeBkS8MfZ9dutDd81Zrua16UXCrOx_MEHkST35e7-dTCdurM1G-EyyqTH1Y7cBpvQxJ5EudYZyijEF6dyNCsBjdfNPPULsg3lJmDHQxwv2Tp3fZjSI9cyjyQZ6vNbNHfIxPY_D87L1LIBNIOS8y_lNT4CJ_pO4saj8FiN0TSMaSPK-drn6drSgGYhg27ZmZa-rZdpPJYc53d04j_65Fs4urSfuEvJ7hAA5QCS9ymTJU12e98YYZGoSDS8m2B5bHW\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"3\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67cccbcf7440c6-84442325','','','2025-03-08 23:00:00','2025-03-08 23:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42514',0,'cd-form-entry','',0),(42515,0,'2025-03-09 09:29:22','2025-03-09 09:29:22','{\"firstname\":\"Kieran\",\"lastname\":\"Doyle\",\"email\":\"cdcgyms@gmail.com\",\"contactnumber\":\"0874891640\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAlbW-BhCMARIsADnwasqmbbbZ1_uuSpxm05vKV4EKlfyz10COT2hAo-woSOSZhEN0uTX7KxgaAhUNEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7tx_8mw-jou6jPOwyEta0u1viQHJpracUpOM1wKUAPhKY3apzmEMcStmNw2SVss5Hprd0Oln9CqLNETKaTlp-MLKOtzhpSrpeH-nmDA3zkQBjmJXf28DxIBam-Wrl--fQsvXHf3Od21TDEmTYod18xME-xiY6x5wIQJeJyBBjH2zRjRA2IX4Ql7Jq4sZs6s9lYnHkd_O_4X4vRFc6eKPtJ39oVYAuLnRpwQZNdSCCRR05GMMiKMmv3iCMCh7Wzp_YmYnCt657kPQepZ_zGiNSzCzXqEZsTkZuZh9G9AjTDbEapBjQeEfraPnYO4V6RtA4WEnD16jVokr7TdhFCRtYkmXgZ5qdz1llv2kscmy5UOo5TYTX1lvV66NHeMtBJHCOcGzyBAqPRFWbyfPsQphFagkfPvjmciQ78gRMQ_WxBLybnyZMI8BVxdNtS-QDMSziAyv77fUypPMa6iBaNoAgsWEy5AddaSu_9PFia9WpZuZ8Y5mSQwY2VkvrjMQZftEAXH5Nm2Ewy-BKgKHNtXut5NlIGtHj6LUOh3qt6Z2th3NJi7f1_xk1MnYPgemRwvpzRQUmZEX50KhXuCimKPH1D93u-TooaqGUjFvyNOJBs1xhdIYava_uhhChZmGWOItfTdVfqNS8zo5Hz_20p5TVjl9kV6K1FvOE1sPPeh0B9XXqBdFD91RFXKT1HWSSYr8_T1Z4usBcEwuBcs84Z0vIYjn_cztcs4YdJlx2p8EzZPZOhnC7LBYsfPBIid1CntfslX8RAFFgejFXUTiTo-eAQoIldhjL7tccd_rFyUyrYkYwWqHAPeD6GQQChuRVrZsyum_wSNoSkdMUqmWgo73zaXs08UX3eVaUtqQZJJnt_rXC1OOQLgBelpbTjzOGGfFDHNjMdFgjcxc_dRGcPSdOaebpqeSTy5Hxub_zM1Hd4MhJVTKscwfWhFFbcet2a53aAar5eamGZjrk6Jh25RwDUUjeQQYwkXqWnz0-RXk_XYNLlQpocZBsQ87FmvVTyqm_X38NGiLnZ73X1EkmMkqySXNfx4P6n3O09WwgThenzDLL-JL3xYmXTdYQpWX0CTDigGw7jGRJe1bgRbCr5uC-REFSfegf02sp3C40lkttbjxAEj0Di8SYaQuQYXOcJTLifPExMww5LZXszuJI9tz2ZLbrn3EVDuMkBzyeQcJzF7wzFIMWb-FVWhGy-OpSWlNdIaarbSeRgvG-MJc2UKzV00JRyBB5Qj8-n5ocu8I8_BzwIq9lwp7Mtenkte_i9_xgOwE85O1RvOpnQxIKjvYuwF4YiqUqD6oWE_w33RmSmK88aGKSl9dD6p8ttTtVZdrUloFskRKrc8oTqZNIYicDiNEhoY8jS7KJ512YlBI4zfowxIhdccESRbfEYnvFSGpxapqgW5P5R6nhA5nmX9l_lXCTjrWdLYXHHw3X5Zw716Tm4ZALuRQtQDOhGzlkMpeOkTUZo9JjwlCkEaf6FaXy2NBRBZwoxnX1LEEH5ZbdsODwsu9U80LLlJE4_oTbmMweXK8aoIAWRCRQTDhXkG0Ypd3ggEvtW9agg6ljx5Ve8vZdk3F8lupyb1SZ2AlpXtU9N7LlAVQzETj3j23lsjVjS_Gd4ZBOku5YuNPPfyYD69g60I8UTL3KsD-AAlcA5k-Z5U1_XsKRgDjbgfdt1kOyzPn4L1nQ5zCVtsgaFpG0FUv8H7nw1S1D8p1iHZdLnZum8zCTmYavESZQR1GJ96s4yAbGY8w8tr28IHsF60ySuD-eWr4LhILjCufJLxaLGAHpn0ZtYpB8gI8qtksAVIBg4sEPNu-XV_wdYAtplSlcnEr86flHaRoGAfodwAHMQdAQc4WCg7Der8trqgj8SymtGoHJlEaziBgD_26CVdSb0_LCU1NNL5k1HJDvGaID1CXjElKpl5GgfpnbmXRnhaJcDeVMb1TFBUT7R__DkqkJnfW8xLpY46AFMMWcR2lIWp93tLDPJTY8LAyYQ0BNAFki1xVrWbnCBGdvdqGO3DXXymoenI0WA3KlEhgppqBQcrIG5ZMDvKvKYP1fG4TRULCLedECtB_NK6Bmke2Rc27L0Y74yd6H_yR3uKBl73xquPfT24wcP7ZAF3cCmHfhu4yMSUicOQbAGuAutB8yzqTUJRT3XgSr46guuZQiLP--1Oih-hocwsfkdCjyYq0H3QmuebZ5R1uDrYWaSXoEsTZzi62E_E2KR-rfJm1NDjRpGSKLIW3DedYt61GlEjNyEr0LB9UjPzfXDuBDjUrS7aYt0h3yJT1wdo8iM0imuBqQlLT7pCftKasv33-c1N2054nMuT-dB25NnjVlWDZm_OlXi77lr3br21LWUkXZiWpKva41yxxgaTsZ_crpFed4iAE3FqmjOwg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67cd5f63cca895-09691968','','','2025-03-09 09:29:22','2025-03-09 09:29:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42515',0,'cd-form-entry','',0),(42516,0,'2025-03-09 10:39:39','2025-03-09 10:39:39','{\"firstname\":\"Eve\",\"lastname\":\"BURKE\",\"email\":\"naturalmassagetechniques@gmail.com\",\"contactnumber\":\"0721793630\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4MyaS6OjLG9-AYmOG1sZLarft6ohZeN-znzP-zRuNeyDEHP8oGkVLyBuFyYWI5Q5AUBcsg-FwJTyPQ5JVyIs2_uBhyqObeAAoVfK4nrf1rO3ZSI77a7Xmx_0tDwo94IqkAymvliY3npV_bRIK-tbqr_nT1_hrK2akSKulTvH6hoUIym18r5VKX47-XSmnQy2B00cPxuMl17jQxpuHJ4dveQwGEOBRp-Z6rpkeufAmzAePjT78dn3jKJuA2jVowN5Kx2EqOZqFCmQK5-clnKPy013DBbFmT8tx7hvRVjxO9cOMgdkIGjEQwwNXvY6S-j_I5-GYiYu2y3kdeD04gC-cjiDTTsGzEosCPoDvZ81pZk404OLLjnjrQ0GSvggfiHYz-64ohsv_sOEHvoEfbfsS4sw_Rx71GFrSmWajW2DtrJZWOVKL3vfZfhfpms6_VG2iHx0RQby6pReXJkP2saGJLCZLODewMKeYMzv4rDJt11--G_2k0T-zE3oq7RxHMVZZQ94CBz-LtxxzTYYFhwFZQ7bhLjqD2JaxhdPy8LaSjhjOoQ6gMcJQRn_fdr2zt0_c4_Zt_ppx9pASXczYRp98ZkOuW2NQzc_inzNy9lQna4ztdyNsBE6QjLc35IyJqwtTiwKT9HiCz4xqKMSW5LMomy50JvkU_vCJqZgppN6c1ymOnq9D769NXJ_EPZdKtzQtdns6Y-X_xK0GVSXci06L7zGaiu1EuKOOb9jiqOaiFj1UWfbjOJY7nphErvORfkcQ4x2zPsjA5gPjJPXlSlhhLUQLmD_tAwOphsTqn3ysJUpr8d1vVc3r4BGcTiaccPiIZcp5nDGUnveSRNRvqFZVxj_CmWXSzbXWXFHHaINnoUn0kywAx2QDN_CR4rwvWhzNrtY-4sAg368cYX32EbXCCHqbuwfDh6rf597uKy9gdeSAwcKEHhqH4E2bbPkCQyXnosY3QrAozco7kOlqSvaBYm85xeNoRrFT01tDT-mqclu0rjahGrI4YVtCJ6rvdWtmRcjxg98E_l8PCAP1L-GCV4kBZMKkKSzMxnRclceFQvwcaGt1I3f5M5DA19203cdpUDGdQL41CWxKjJ0_6mEdPka06wMJlpxJLSd3Zbjmsn7EjQ_vxYhSLP1QcWv5PY54Q4wZnj_lPYn6ZbkeSsGVD-0qLGrpsa4nhOiIlxXupeyMOc-6FwE6hRJyzZ9-t3nXu7wlnG7NGK3simefCb-PypSmDIT5k0kwLRw5HRiqwu9S1xE132vmQcW4hPG7eU4O9skH98A9VbFzJ41jKNvOHIURZtiNW1OMQl-GVdjQ9eHXeyFk_LrVgtBsg2cQFoYtCVoFzVs9oDHKaWkAYS0Epsud-xWFkhlpCfQwkOADot29P-weOBJQ-7sY90T-nbdhhiha-GA92a29MOdEU1HOAUx_2FSD7Cyvg2kiV7xQEwTTyHh65yQvQGQmfIoDr-WSWeDNjBWGPajthQccnfMp8XEPFuZa6kUoPFxSFzX5zbiQxgTZwvemvmWM3oBgGkX4Qw2ZA4pBJgAyjRufN3VIIjU8JCPQ473zVCra0O5pRPBmsGRtTEEamI16dF5icbPKMcs60tCi0bTdUbtgq9wAQmBV1nU2BrT6qF1P14GyTa3_9ro1OL4tWMpXMJKrcKp_xHPG8EQWP69Y-fabgF0xUzt-JdgmEIq9mQSuRY-ohRDDQbFyyBzDJ-jBZIZ80XwY_ivXCEtPxAUkhUZdUAN-VtPFYQWiaSvuGQfif1_d7J48MAbae9SzfN92cBN_BxX7DgxbGcpDNdTRLRf36U9_SWg7Hp0_qk3d9xJddjD6CdR42H2EQXjXrRPKyTUyiG6cinCkpfvemBcSybI5ho7tc1uCaibU5e2LkXGUWMLvRHvFDsWVdlEznG4PNw4AYEU38C40uxbrY8xLAol2i88YAnfVmvLOO1z7x0q4cyfKGHH2mJjDqCbOY63-GvpfrKlfs1ixfJo72oNyq578o29ZFD00j9IuFf5MC-FaZgAlXeFROkZw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67cd6fd0712a85-57309414','','','2025-03-09 10:39:39','2025-03-09 10:39:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42516',0,'cd-form-entry','',0),(42517,0,'2025-03-09 10:40:37','0000-00-00 00:00:00','{\"email\":\"naturalmassagetechniques@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"regionlive\":\"12\",\"currentpostcode\":\"1739\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7Cz95N1eLSpDYl9RnHqLnzDxOAt6druGWT39hzKKUR4HjVIPs8murUoCtqad_EkTv9rfOVLpNGBw_3QzZTnEg89Lwh01nQ-ZEg_b96oENG0PXtNjtWDsA9P-Zlvv9xs0Pu3cDo7AW2aj5Ht5UP58S3qShvuSYvniay3hhcvQgHcgkwveRR1DkPEcldir4X9at5XjKQoSaBS1I8DCbxbQKv73932-rc94CfBiknxCwylBrQk3S8ef9VnI3CWib8F6ZoJrI5gLeiA-XJNxAuwNCUh05w-iCnIYOQeevA-Vn42oh2eXplPJkCHhMBnDxdy4nLTwMOJtWw6D3I_I7vW3dYRjAYWVSZquHfTu6Z2tECcPsGYhhjUobFDa_za4Xwjt01z-L5qSFxqubRZIOyGyMvfpspNj3wpitMGFgHAWHmGz8KRY-iA3LCkqBH9Nr07gIEgMjAQDexUmN6mT1ManlDNTWMS9tUcH98ahuirK13ohXslyef_3K9eUCD7MHoOFiYEXGK99jJ1V1BXCKXZHatRW9WzETQxEYxGCCYvzJ37hKfYRGA1eEwhz_u72TUZntrRnAuI8PDKMVbMAWq1hYESMYkbthnABr6IKu-E_5b4w_6yZAFArYhITwtWF9q9LeW9QQvR2GtjMz30aP8F932rmFh-1zuM3EbyIX1KXAp-PYuRYN8qOvRKlMKE_9oU29aDxtrmPRCBSsoKK_eJUPo43s7g5LCW-6QKGMVnk3zeBClTZuEtVkHtYE0yIxZvOs3V-aO5u6rucocWrO2V3eTd2VGC5fBz_yWYSbpzn2k9_s6jF4HE5ASqzy_gKn3_S2LZ1m5FEeOMErBKXUtbBU0HbDDsnYbi3OBCfgeyeyQVjhzwW_Gfw3ycs3wjIt-qxwMAEgISFAPkKMt69z-E8LTiaNsUTKsBw7NSLoj-5UkEZ1Db-s_3xRBTepKrgBKrQsoK6FfAsdmhomOlyJD2SOqxH7IXfn_P-kBVKTRxauL31IFkrDwTAHTFs79NtOThn0Un4-xqdYWTWvd7_96UMiZ2lE0Ag13UapyNCkiptrvvJLXdMRsFrbSRuSSwQwL4FPkW-GX0yNZ34E8StYkuJMZsyKBIP0s9bq9svzRehoMQp9tOxuLwrZDBaGnhoX0jXZGM9HvoUTvdv_w85Jpg18LiHcKYD8ba9M2gaYdXb2NEDgvvNr_tLCsq3x4bGYSbwP-3MKyOjneWtF-xdxASrFjsG1Lv7_aTq8BhPcDaBhGteIK3aQxbOMoQRZpz1RFC5SCRHWv1rn7W-CYzISnUhuqrJJ8fNwRPigNpNpoMGHvHfHjJXDP33OSb5pILwkcSwdUSsaHTE5mIj0hwD-wTJ9E2DY58Kfk9bBfavXmcnao_chrDmH7q39hvtGUV091C7tt2uU_az6N_cTpwYet259liHarxVhFHEtIe-KEmZ4_kvYEMMyP0kWEdf-XrKnWiWkxWnSQrJIfiQONYV0_zh31nYhecfnrK04H_AwtJx9ooH2LbUIasqeE8XQIJ7AjWhoVk41XvxFTnuJDetvZaXkWFvyCGy_ckxqFJKnO35OdvPX2QV07YxEWpIrseDoHiMq26cWKRGiUdiw4EsEdlGt7QQkHGarkxEusVQxYhY4TALjMcgErBfeHEQLW9elWqbtXQpAP9JR0nFEHXXDUiviE8ugCWPDJ9c8rhKV6jIz0kNlBrJVOSsZNRwmKLJAB6qfp7ShAgufXcmjvjIHMB-p1UuvxdpNq8XGAQl1o-WZtn2CtrcJHXsoY42fHiSQ4jFMolPpe0e9buuejysnQm9p1BIzhfETiXKFGY0ViE-KoDJF_EVCSsoA2mREp3wEYuYgd_76DQ9QmVA2OWy5A-FniyiJj_mkk6x5LMUNpANTnIka-Yf_qxIRIsUamUChg9lmG9XlrBGA4BJ0zdQUNXw2KGtklybKN9S6YC30a3_DhYH0bKWINEoBWKH-6L1LjrWGHWakqSSvxmAnu0Zx-p3iSfylJYg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67cd701b3eec09-99971597','','','2025-03-09 10:40:37','2025-03-09 10:40:37','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42517',0,'cd-form-entry','',0),(42518,0,'2025-03-09 17:14:59','2025-03-09 17:14:59','{\"firstname\":\"Jolana\",\"lastname\":\"Price\",\"email\":\"jolana_price@hotmail.co.uk\",\"contactnumber\":\"07855896903\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQiAlbW-BhCMARIsADnwaspKg19gS8obN6bSfPVgt4nn8qn2j4XTblgPdBT_HBouAl-aHQ7-GuMaAhAYEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7elM-zyzo-63fQiP5aCDMDt05rlrONav6iMjlE3rM_gKHVI31aAIonTKglraytS4xOpZDzenw-ik_LMVz5lNCY9Tk8DlgmfrRAcFU-uc2GjXB14aeOg2sV1OQ8wmhWbXL9hMKTN-6d99i7OPRXN2XBKYp9uXGYRGUKQEoa4YtxIKFgvX-XKWaBZiCOqD1Ko3q6squ0bvVsiFtfpcJxcJmI81xbWjyPwGy23RU5hyDzwbzCOcU9BNT5vZJzE9CJ7BP0HVaueDd2Nstz705knpgY7ssCqzANL2OcXtI7aSqEDgQmqwoi8qjzEMRQPvVrL9WkAN6yMDwQyAYr_VhWhJwJ-Kvh_6V6PtuXugi63f5BK6UzlaiD2obMX6so1I2gBEzQSggzT1nxpCdAuYTFtcmIyZr-O1L378QQeBCgF1FhgHy2kv8JZKg4tC-fmYqvg8mnYhIRh8tKPOsvs_hBxC9ebb7fAA9Lfr71_wVKDDqtBmE_uCCX-R5kLKPbYvtPH909WCFY_ZtoB14-Llo4KXZibwbC3wRh-7SPZIZm0M16YI2FBkNlt3eBdOJrvX6c-tplixtd8rKoQx5WN_vv5vKbZj780cAjJDsU9rE07wHzOSsnKC-FaKbYnluxuLHBlg1OVJ3a0w00f-86a5nhzQr2Ett9Y2h3ai21qWRaZ-bxBZL5dzzR3sR9QL-dRFgdecr9CLqEYt1arrJL4oKn-MJznTqnXpDRQv-bZK9ypWkgPRB6TjHa7aMuWqvMcaNgnSqibaf3ohXtuSKUSigSqf9r6q03NKvuE17K_mrmlktvQnQC80ANUgiHPLYbGncQHEQvlB91F5kUSESGzvlw3QlyRrWS44MOwS9oMNNv6dBAcB-bxk2oAV6XyN6lZykHobS2ARiqGgNRTZlUyy90N1nQGHP4spuyugxExCTFSo09jZNNq-uYE0v9ki60p_-bOMALJwnwhsGESFqkimYbdDS_zzdi3LkjRXo6dELXuSsQDjrv0vyzyjXb0TOt873a589cYxG4-whfx8TvpWaZphrSN0qMH9FWnWx6NlI3Oew2ST3atiBpwjoFy_2kSyCAXVJepDVRM2WLWVJqdi9BnyDdRFY51jI3xUEbLocMmvhMkkW4ji2_-VzxOvuAEF85Ei8I-N_M6Ay1brsM78FHKE7YdxmFUITiwU_pKQ5VxhV1wDaVIAznXdDzQuO5B0T5QT1LwDFY09P_AF8ie-Q8YCms6_qKJsaXECsnZJu5UhjxCgVIEbjPe5Rf8HcGblwrGf8dIcC4I5Ku-_yLOqvnnYTCKjiMefAT79EA7oZXNf_NKkY8ObKXvyQbSeahrbD2MfErRWcF9OlywLHurG-K5GDJP22kSp5cdeshH7mYtg20L52bkHN7VH80SjiA3SF0wwgQYjnoZjjxR9jldo5t8-w-suk75dnt-_wsrq48IzSHU1KW0JBNsUf6wWDFyr3KjZKKhnt3FKVp9yLc_P6v3U19PAFxJBdW0Jii9kX0lWxXqCQ31tvpYJNYXE-jDT2XoE9quyzstgj3J_Z-7TAxhf9UNjLyISmyazbp-UU9GK1tuTiov3UzeYId0tcklryz2PhUhz03c6LyouAvJF8D2D8I0A2FeLkC42i_bbxvfJtorD7HUATniRrOYxLPLAhEpGuMWnGXZjiv-9A0_Zp92BDeUTFgsQdoXGsQxUrjes4Iho3f4jTpIQSs2JQGhuhnXcRpDsBlhIq2HYgyaxDyNFY0WcMaRdcRgVLFDteCi_stenaHGVkpZRol9nQn4x-fT7xVOsbDOFMpLOg4738-htaCHFw7hufQ3hHdu4KmGEAFDT6ON73rBA5DhwX7fHMSrvMcAv3IZVBFcXGRtdZYwpWvoRj2Ze5S2QSfwppgNRCuljgcOem1FXzo1XzbVUNbM8Kpk-8Ru96z3RclqSX0tDFmNU2eN3MWcPtgGp5sz9WXBynLzTq0lZY4uqynNwXURy9d3dvf0tmV8LY8fExptDoYSjvIkg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67cdcc84b53646-20478864','','','2025-03-09 17:14:59','2025-03-09 17:14:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42518',0,'cd-form-entry','',0),(42519,0,'2025-03-10 03:23:55','0000-00-00 00:00:00','{\"firstname\":\"Srdjan\",\"lastname\":\"Jovanovic\",\"email\":\"srdjanphysio@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7ROAPIKGRx9uiYR-pcq65hZ8XOEJUl8Km0XylZGL6dFokoHWaE4dAjmbxO1H8IiHBtjrYg2M8kyMVcFZykfO1jVCLZ8xYTQSEFA8HnYm9qDoCAKXOOhYpRu9JOXTHqXgUguj9gHh12TkiChJL_kEl_PNENVGYewKpNO0ckrBoPmQp5XhDuZNgJIzosmnhGVWqe7oj2eyIGJ1j0xlhmVxtL3Yr9DwoJ6hRkGFNZKmNfxqtUj6RXbiIhkyLBKfa0XKhifJICGmjoaot_LbQRo8iPgesBcl8D9kK3ZPwVGuJlRMUbSdla5TNNDiPKI9UOkIdFayFeDCNy2LDDHmI8NvVNqhexbglqj2XPDzy9s5J12abBL0ZVqENuzmzQ4L5tNZ3_iH2QCsCYobMlyGvQqJxdRvd3ZK9ua1KiiVnfns71z2XazzM0y19dMHD4q9cnR-xBWrCKR20pTnBx8u98qWwaFg6fMMXMtAYLjsLAX0mGZ8sNt-cUdwYWxPBnMob4Yr2X3uvy1M45nIWOnyGYRQctQ8KznKjRikJZlACmEozOs8ZmwZF_W8Xws7j7Ikh4hM2QjBA1_RPyaChbImstQL6OKUB2d9hULMlytl3oxJ-at38H-Mf5-brXI9ypMVFUbLheP-714_eF-hAXU90nvaWvT3g8l57NlHJ3JiO-de3TCUX5WCTzatcBL3Zc0WKf2L2zeZCmK0EPlYV4OoAJeaaz-FYWT53s2p8lr6Tk_Fk0GFP9YV8ZLXD7WDMqneWAEABH53EJOvTnhHLZ14SIF4kjmo1ZT6ymhTfkHa2x0POeCe4BWhfcNqHukr3rLiojM533bjZv3aldbil5R4K42HS0LOGHHTuYvE4JHFYQ_h9BAZ-RlJJL0tOu9PGnC-0p77intrYCzXAhfxlsC5eLIsm8jT26dP27SAFuA3vofNbmqhfq9sUBz5xvVi1IuJROxKK94Wr43NImonI3S1CJApC0JycWn8m_Hm6KU9SU-aPbKj1uqfpbICySF3KejzHDDvDyG0c-H10NJwFcxVluSHmiJb4GEaHp4kIsH0SsERyBl3UKMVhCmoyuz4lOB4U3vuYsXxuNZJyLQSA73Ojv6mYlbyrh8vMeFrfGoVCCK92-Fy8dQZYbQn4GJAiXZwUPW67WgIjzML-XqNAruZPRuFeUyRgHKIV34DtFSp5ICdhn5R-Y3vS4CJpq8Bbr-oNbbJVTfgGGxf-WUOXnsltYaeNFytvuf_5jHXi4xKNXzozYa9ZSoqonGsfrZfSEQQKBKkHRHRbulY--CPJoiadh6o5f9QvYPjZzM0-mWNP_W5yIKBnFNSzCRB2Lj3PPMFMS8BgWv9n-Z_bA2ojFbKt4TQuX22IwO1izshlqAoOYj2e2OZDWH8Wz6JiYHsPjBXE4WbSTikLWcdR6kub5IxXpxYOzaafXe6f3YqVQQPSHKDFULtF4V-nHqt6r5BaFqNWzE0MTD0s91DlIMuRlOJR2LsBh9y9LIgd4rYOlrSToZEmQ_MDd-gJzbhw5Kq55WHUpjUFWgR7ztn9PnuG9CF_ggf8O9pGjAGnvtKGDyy3T3fg-QS-xOCZ_MRS0VnkQi81jc5flwMlUEX5u5TwTRIEnVCZ3dM9kGXNr_XGIBVvGob1myaZbdOnposIGXqstsKOqb7GuYVvB8pTck1Kr1VqtFMfkoC6nqU-7hQjqokHQmxLYZgPYwZlE1mi_dPyuowOlow3F5eD5eAU2Rle8Gkhfq3sdlJ5rsGJ-5R7ufqxuYQxeSB0z4p8ASwsMGAaPjdVFeK_jr58SNQzxHWDsAbyQnKON4e8LGEOWjm77M3mBTyxOvvuqSmEtTxx9FzOnuQ4WG3r5oGiJG8Y7IV3ia6PQi3bUylxinxjff4WPJ1IBoYGPFEEtgxwOkSN1Gvrl3YB9G78oGDIYKCyqvkgMJOEDgudd_EL4ib-cE9nC3zSjYHpoQgJ-n1qbDwqVGFUGG2xDofyHK99U5OxUlKX914QRq_ZK8azdEoDi9JpbvjMZ4V2r8xP-XM-xL5VX8wR6kR3qa9h4b9kuak7tTJcNmrI9uUThs2kugaujMDNojEnFa0od0R1H582K7I7QRWbdaAsrhxq25iErBfUATJe8-0AR_1x3Z6rCuAOb6Edl6a_sa7wq1Y41_-KJmrcvHAxQDpAmv_1cWeo-Zw97lvDudbf42vk_8tVIFxFZDIc8gPU4XLe6sGMaiTd6nsZDnFBl4IG8Cy3IEf5ZvfHjjA4u7-FE7JajYvrKzQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67ce5b4bac74a0-42130641','','','2025-03-10 03:23:55','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42519',0,'cd-form-entry','',0),(42520,0,'2025-03-10 03:28:34','2025-03-10 03:28:34','{\"firstname\":\"Srdjan\",\"lastname\":\"Jovanovic\",\"email\":\"srdjanphysio@gmail.com\",\"contactnumber\":\"8617812747906\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/contact-us/\",\"recaptcha_token\":\"03AFcWeA6jRXmJFo1ApY1ZcNj2nBUg7hOIuAq2yKsy1gZlmr81JbkBwu4oXVPOh_z1JLO0NWrdcsuhBpfXIodtBxcpteTCDd4v9gEPrIX-2GxHM2KWpIJvpCCoTMu2q06qQaqSZDsckewqK3cJpStv7TjlbMKLHOeUSTrbqdJ-__03M3v6iSj33Dxdi5aPSF-hDAZ80l6ssR86tELgMhw6IthssSIU6ovFofCMrH8H4ArVGdpUqJ7bor-AiAsYLZvQuY6bTT9zDaflveJ5A9ln86PAF5uU2MF8rwUqAXnTKDX5yfArFCQ1eGH0TD0DTY0z126Mltmjt9bmAcvt3HD9fkvbj3exavLTx8evNhgQpBjF_KqflycAnxZ83M6QyA4HDgiJzX_lf4f5GaJxcsm8nUhcTaR4oFnNc0HjFqiDhfMmap8Cjfudi6Rj6YmuR8OcaPZOy4HH9ufSGCQtj-coo2DHHzsKxjqOr16xjnqiPB2dlcKDpawWVimVPGWroMgenD56UyrSLvXLEJiQheLH8uVuT0D5Rv_Z52U9t5ZzvBHAhiCFFhvcMVFPzgByTDyXumFWnlpKw44eYvI315LfRvANbN-dIQbyeNxEq1pPk-M9CIXnNi6EfDJfNLin_iL634i7l79Bpvdp2FxYFGNifMDnbco26bQI_hENhLzBnOFrEecrYGHcQQwMPxuMRhg9dfpBS39lm_OSlDMzjmZJhKA1ttZA8_5PO1tIj3fMQGyAiNLyM92KzMNwvHC9Nsac_bYpkH1gFBydXyg9oFzKPk4TIAuHB3jw6UWPczh9PfzSHz88pgO3S1gaiNdIyMOhQDVFGpf-TtfexCL_1N9dEIMh18zcV8iTBBut-pLBItxm77WPFpKHB32I1KL_68UblEDhy-TL4eXwmCkMVxnFLcwBVHr7visJKXIgoLkPHf2zT-MuJ4ZqG_xK2077UQbBhcmKHpm5BDYslcNtgGIWPPDDJMar_iuPfXfnZG9HbcuCRS94bp0DUBwqxDcoeJrpYo6FP7_N7VPePljbfnqNnbo9rJBmGL41BpocfmHuwKFBAl5gPc0gGAWtKR-HAO7Do7OkMVaIip30xD38pcPbJEG5hKH0z7ueDtav-9fhoAha-FQUvrE0IKI0fkeLuduT2-WQH-gVoMH9yBLx9dilB0CcArU4ksDpWWfIyn2U97KG33wKe6pxlK8E-PfZ93UN7VJFzkMaeTRxm7s10LPaPIHkf5z31fAKwiFWsKrZ6585bejL0GRJbxaV9DOCpuDpJzHprIc2-dz212NkzOClMNsSmWveM0wSrXU5PzuzLqI0OCUBstxCrDjp8RGNS2EcZN448ZFolZAaWQnjOuJnTA_bkOfYD8w3g5OMe1MAZK1PPO46MyhaxR9b6J5euKW3qT2ECdcukaeeNRiYjAm7kUoHEnEiyzSZ44yU8oEXsVMnW5sck9mTCUClHlFPNuWTo3R7TeQfKMZdGS5s_bGR9Hpic1CNtaesKWq9nZVNCzv27pePKnXU3xIByJ4i-LvblxRpYcVXZ74fMZX6I0FJElzpDsD9PQb-cWvDSO7JdpPoqA3_xqbLP8_lafDKxEYgFzKLeod84io93yCTFgUsRwLkDkD1WR3UHRY5PIvUPKJRv_pzINVOg5lom-KK67O2YmAjXdhJw1dU5GEoCp6ZGW-FHppMF1Br3jQyxeIx5gHH_5PN69wvyIXgXuU6YJQR0m1uSB0G4Ml4Ry6Yo9a0yTD0cjMdXoi6KfCaqAU-w9q2gmq4RKBC-6UeDW_kJFrPPvO6DYt5PUBCMSyh9xj1W6g1LbCs8Jka10GjGDtH-7vQCfip4VkX0x88ZOwIrgzteiHYrzm5AxcFWQjBxC2ZbxSKhBjjVYylhoPWUH6Gtt7o_OtVJ1hbVOuLIbXLJ8VHmzYZ4YKCPUysZzVG5CfzewWP2hUPAAcA1Avea1xSSyys3tO7Ha8mxjHqc6jZPl6pPUILNb-oEz1LcErXH6M1DU5s849BpSII_Xv0KI87QmWzQDaL68qmKKvQDQ2k1Jvs3M9jfbaqdQGL0jtm3qJ71F-xPdxV8scO4MxFsBXaEpBKJkePjOylB4MRXCRan4D7JBIh2aMlQ8usssb05Titu7Ssqe2IvKIrvcYjnAeCdlA_R2r9iQfvcxAzAHnTomtUI7KvPuh90yoilSHqvObKSYGGnmBgOpB6FjbwLNzkqlrPNFm3puHmASpH1ckaBXbK7Uqs-1uXmSmzZkqqwfcKelyIbtefkYUoYQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ce5c52047a62-75289335','','','2025-03-10 03:28:34','2025-03-10 03:28:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42520',0,'cd-form-entry','',0),(42521,0,'2025-03-10 10:47:34','2025-03-10 10:47:34','{\"firstname\":\"Ruth\",\"lastname\":\"Willsher\",\"email\":\"ruth_x_@hotmail.com\",\"contactnumber\":\"07498205468\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMItdqet6r_iwMVnJZQBh2olzbFEAAYASAAEgKGx_D_BwE\",\"recaptcha_token\":\"03AFcWeA7OrVw8EUnV940iJGj2j42BoQQ2vx5vuHiDH6MH5EN_jAw6jhK-NmYlqous_tNqthyuRM7rjbSeVuvF53kTYIU0NIKegNYoV13D-Ft1EWlcaloU9V4PdEdelP_V1t2KHShKMz7yEeIaVrSDVdjVpPneLKbk25DFwwI9k4_Y6SJ3ThKf4AKmAJ25nVjUjwvmViocNN0lbFvz0LGBG5bLllhaAY4ZrzjkU7IJg0H1_Ypu0C__GULgXtEKFUjTIqcYX4A-AUIRE-I1TRCLq2gMXFY8aOt1A_yj-Ydh3-g-U0TSVW45-HSIaXdQNvLiGyDLDvSRUrOFEaT-uYKRJsrB02z317jgml34TwgI68u6Qg2KgAT-_9MrElo037XSuvFOq-ks_hr-8QArwqYBut8CE3WgklUSd-sSRxe-bgdnARKvAtYYRRrGXJMabR5I2F82kyoRzXrjvFM-ktEy2lSGVP-PlDmi4IDMQqhLM6iy5LI7VCDAjU9aVZckuQk-Ohhgh3WS8FoBvKfmC5ZfgMZGsRswh0bKSf7OcmNNDW-3ZjqnwYlSH_w8YqasVWydEJmsRAQcMrhQoU2DXhzf8T-JoOHjqcE-STsWITp78B8sQ0bnI17RPJ6yH_25PBUl_EdE3WBmfg72hs23b9_9gWxi84T4DPhcklVJv1scRcwrEJCfdktE6NJoVaLPgXAY6G8g41br3WQmMqkZI4Y1-ZswWWss8Y9Heh1xDjXHrmYM7oA-ybIFNn7CrOfsAJl9HpsD3-SRbY73vzOlyoVOuR819UP0bY8XqJxMGTpDeFa_NHvX_SQZZIZnVfGGxJwqIeoDajqSS1-TiryTPpdGRTo0viL7WEPZ7ZOkdUdrHIOoJuCdaSEOWTsdMvOHGqtVykbI5Vjiu1XyoUt-3ZS1VpGlOFs9zc9fSVN4mg-nA9H1S-_yvp3copKAjC-Z61x20vt2eHB55NLlFdo8jOa_ihdIzDP22tngSP9rD7afIDWfT05b5R9hwzfoKiA92qTk3hee0hcUsDI4uriUinjkEI7HDKqYg2d6yR72BpD5SIGNmv1Vv_2eFs3WO6uGvNP-MZoowXED3xcVoj0y6KiJqiHps3ZC58a2IOWBUPrldFYhHvWyeLBF88YXFbfT6MRfonff5fd8noQSN-Rep3SYEYlW7A31kA-mYp_qFy5FwdjIu8LXI_76U2rVsVquztWdyg89YKnUzR5l-TnL1WGaP6pGONamydP316egW_JsgMxl_eAX-AtY_BNCdPJmh7dmewiPnxOxRVatpuSEiUZN3vnlzIzFqQiKz9UbAVlTUTdOPqDcIyeaITtR5-VF7V838dOzghcb7Ag1gnfLUGnmrWGjP9_CRLSCnchEGxE5iQvlH6B3fWTzEg5e7LQOrAcCuxG0V2wI0TCZr6yNeDAYBK-i3CFznJ6QZ9aRoDKv3rp0QePecZbKEZ7NnfB5wMURS91VdiZIHpbu_zzNvkVlaP-TjC_x72baIUIeDRB0AJJjoHCygRNF_AqIW9IQ1EA_A4nvvfDFR4pwhVaNzLHfq7fatZGg3tnZitbqXwyo4p0KEKV6x671aHz_i9my_qi38DFzEGOqrIXc6L27jPM_Wd3WbIXUMkQcjvoMoNnMURjxQykCYLTUvIZdzmRF2grcWT0MTEdTnG2gJlKmRZXKRClmFX29rkcBtBaTFnuiSij-McGeaU4ZlRH-R223NcK1sVjNeww7-R_HT8vFhrGu8N4ttKQr3CQuWJrx56QTgqS6HehyAS3YfOce4fnLQs8eA3Hn1bKXaEKacp6kf7TTfdD5oBAMwR83w3RCS7kb6tui5D6xdi4UwN7JY-nLixCC68cP8ZbXcv1Y52SPgL97U4B6H0NcNF8MxddS22Idc_qSr4X6RtEi3efFWtHzvs2o5xmkxI1kUD8VI_eAux4xHVD3wWvcXJxPI1T68Y8LE9j9egosq3k9b_OWCWxZY44kgp9X_9x59YcwRqIeE5qwe15Vc_VtuweAVSH4WACtOQXsscKsdR0mHWcJCRoweJVqLbQMHD-b933kw_aA5bKh9QYv213jJ0R_TrvuDphvXaLOss8fMCm7BoE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67cec3307b0fd9-44086003','','','2025-03-10 10:47:34','2025-03-10 10:47:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42521',0,'cd-form-entry','',0),(42522,0,'2025-03-10 15:05:20','2025-03-10 15:05:20','{\"firstname\":\"Lucy\",\"lastname\":\"Garrad\",\"email\":\"lucy.garrad@btinternet.com\",\"contactnumber\":\"07717021348\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gclid=Cj0KCQjwm7q-BhDRARIsACD6-fUr1mrsIS9hXWvAKx9bjLo7Pf5BEV3OwNJCPTN5JlNC42GmQcp_eBEaAt6wEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4oK5fAiHjqG69mhBgTm6XdMce95ikOUU5teXgM867fs55U23EUPeVnCc4OHj-3fnIdRk-dmh4_my79LKJQAoI_jbsGknnD9vHUzRG5hqlqmyitgh1pnzbd_MNYPyBO6jWpflY3fWKE-2nUvAl31RLcDCXR_ErcIDJf8j0V2zIgOrKGXSgomlvv9tWDx4ejRAzWy3KNI8as3KSsrYdtSMLe62bfNKkH0LgWo-NR6r_XyJBxMGiTvkz69W-CAiYBxP0mDvGg6Lispk3J7DddKx905jgwWzSu-Lff7Ya6pqAD2Ja_Uqu-dhw2eTOdgjJaJ0ut04g4tdFvpU6483E8G0FhXe8DQfaHX9kO6EFhMrxcsQ92tXLxav_0EGeKjSxqjZMixyIH0sMYVxKPvVxtt4I8I6JHSXHI2FqaZNAXcqZJGocJaFWfL0om_W-5RJbsh04VY0q24nW0-gV6Fxxz6ZLkTam4SrLjixCrJITck4EA5YO_Gc8ZD6bR7cG_mc7e2V3qKGI1L-Y0NvebBV_VAu9h6XTgcBAdOt5vzHV-Ql8mkJ2bCC7BFi-_ESN7KRwXKbBKHi9lci_jUWCwBZNKr-IqqIN9j4T0aUv7pC8Ra2O3f2yQ7jUCq95J7sXv4Vmuo3tJzZoH4Vb4po05qnfaSEewRc823LVdmZXXjd_uJnIHzgUMCEEPOOIgaNNlpTAM9qCI6G9BuRZ8Bd4eN8vbJIELGgJSXSvvr7cik9zGbwOY5l0DHegcIdEN-HTX6X732TOVBJLXqdEGGZ_2-JzReKKVTZiB9OJR9J67ba1qwMUDXjAlqvlYb_gu9D06dyhcsRagcPMW6w4DkmjOa5OTq1qWbVlPwvYpkswZcRDJVlKtXLoLd1tSkO818yIuXHpifcqDYuDpPnFTCKLJy8U3Kiyza2WHxzSebmic-6ezJvN_vKmqY9IGwWN4OELz62U183XquqCJ_gth67MJfdWWws_ZEvfGux3JBfGW7gTKtpvWhCtCUsqEgusEv_P3z6iK9EBkSj8do3jUbxipeSMr9cgtO-Qg_4rcnu_wGx_H0xNyMdIE9UkDiMNVRP1WDtCKOiHGuDMfM4-HWUrX1wefCm_i-JPnHwDgtEz39qcNNH-wgUlZCn_XPaAebPcEDDUYsS3-gxHtORH3T0FGjlYQy6ijFHn7oLbYWwkgeG36CaUYBNhF4slZ80-zfV-_QJOBfG9ejXWbp1fyUyZW7HS2BWnImFd30NDocqwdMUvas4wZ3sWY7wQU8pZMc1aRbOC0GlkShF2P8bwEtrI3JoOZAprpGrLjUaEwmB8FzrDVoN70EtneMFkE2FoVpcYZjqbA6cRMDNhITwkY9H7vFyLxwSRqY2AJK9Z5T5QY7UDLweuaMj8MquraL4G2RAqgdzLwmAtcyurJzeaBF3KeXIFFN_xxUjyeY4sRjGPk0mRJCkIfHrUU_D7t2Z8rxMpCE8a7ojgMHc_yjGdKQp2sC9LgXK_ClyPc20oBd4GufNkWLVjX9xV_Bkz9yKia5NAKY9uZD6AAmH1iRiSeske-xHNdWtQ3ad2sYP5X9pTZItKacF1yfDZ7rPeMBuG5PycRZnTiqgtGJ_1FiZ5klFT74i3F8eJhEqLBNWoa3vYDQoDKPV9G9WdQ3W7vbaCdI6VXjQRAbAAsTb3gdm0ItQ1OBZLP78JZ0gLqYIj6uyEW99H7TGfsImYmaITkAsg2k6t1Vp27C1TdsJZLUXAVpqd8LAcX-f2ZrZH85o74uKKjL96NMVjXfEAlRe7hFrOjrGUIYrnDgCwtdXwJjvVwAcwXpYCsHMd3U7KCFAONk4Q_LFXJDPppoWZbtEawEJXdpgslK8Kj7Eo8T8Va0GRs5HqXJshyAcI4VphvRlmODDs02qHGAeeHXQNku9diQ6OcdNRlPEspKW6NKCpL4IoTex9UFlSI4NY-zcK4AZ932NGFkmsSKnmecTiLGYUMxZxnROawKC68zIgjr7P2EndI0XDMKaiQ9dSbJ9ObqzZzRLNt-fbB_qeQH3xhe-69dVWFAyGy3HKqIom7HszyQbssCyhDlEf7BfCnFKGGiphmyqAuXcJ9qBzMp-TzEDCvmyaPhIFLvFpvrnt99_iD\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ceff9752f4d0-78859302','','','2025-03-10 15:05:20','2025-03-10 15:05:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42522',0,'cd-form-entry','',0),(42523,0,'2025-03-10 16:38:23','2025-03-10 16:38:23','{\"firstname\":\"Beverley\",\"lastname\":\"Laird\",\"email\":\"beverleybeulah10@gmail.com\",\"contactnumber\":\"07885113049\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA5UNaHBvEZZNi9r77pxoDUDdgOWjYaeOie_dmLXH5XzevGzL949__tSB0dPHNZnu9MhecxCEEt7onLQ77IJ6gc2jHZom8FqjpPSK1RKMLShbh6bmZmVAhX8b5FeOlFrEPxzBO8f_2pYlHwOo86bJe3NMT8Q1BCJv9lUVzP1m0TCDlZr79cyAfZyZ2Euiow_Em-2NOG4SLfgTLDriQq2YUZ_LaAHjHuJ3jciRYtAsIKiD2RfXUb-tWC5RCk6BV6hNzB7xb06Bp-uw5MlZrkUdV8qRfpTVQiSaJ5TwRuaq5H1wFzWF0_xlkCoBYKjknxrABAuS7tsXRocdSsMWziZsuuK_YWKYPFdIayUL5P-arzMZ7Vag9a22VPKaLXZdAgPcp5rlHHaQIYZaTozahCzOb9Xd6heI2utZoFfCrVl_MzboArlistzZdYjl7pIAnTP2amgf6yT6Kf5QwFmwviCCsox4RWv9PMan2t6gzBBCD8lFj1oDaRoUF1WOefzTqnAlhzopPumxFcSwRcS6bTNBk6JWG7vjUNkUmUTMpgHV6Sw6Lk8710arkNx-O0Fgt13qk9GMCJC2cWCKvNOXTsRqVoVDS-Krp5nKQslX2nrI5UHimlIBu4RCg20dCQk5GfTLmHAkN1hnZ68NsupCHgK6uET4n4Xmu_ITTUIBHREMC0UyX-nbUHyRxItlqW2APvfbXbqd7DRsI9GiqOM_9laYvyva6uyfJGzFYVTH5l-4FLZ0DeCPas0Fqzw4pLOYuqbvwOAa4mIE-XkXBZfPyimDj8N1WbIGLXz37lz1X4fO1jtbOmogg2xCo21vBwxa0MNT1-ykIpWoQ33wnzCEbctGG_BeK_1Uzw-GL1_ekjyiT--9DzzPxORduD9w8QiOApoz1ILT9RvYCXawcc9L5W3hCBybMNT-2Tnep5dQrGA9_EgaCujdRqyDQeKhkirP0vB62Ok7MVJ8-ajz14FeTtExsEGE-blD5FqBYTNZX-MabehBne1rjMJ2Rnapl1KRxZA1c8D8dbBpa70_QT8aEXV5gurpUNqL-6fLQCgRBDG-Bld8AxtcsdKHjdPzCZhsVnOigSjw7aFGya8tGZKI5GyC4bsmuFzvzt8k7pzkRmasJfBKnJXLotXJaRgDbhZYAd-nRLKHecpja1vRZABFW1hk0A5etXIeF9INZ5ZeOEKAMMf2QNGi8RzHRT-hkiEcTMZbNayuP8C0x28GPECZVbJnAPaEYzNEja8dQ2ikxrrDxggZJ3irUAF4hWFScZ0yYD4ixDAbCOnBr590Tu8N2QS36S-dQscGkBR1ry18l9tY_rerYOLLmlkruEzRuDDLAde7ZQWxwb6MmN5tUj68IRaj2FFbS5MIkFTJNcNus1aqO5Rg3JXK5EOLzGX5TZqFy3MuSej3jHp4khiZKPbkk17xHcN_eRqT1Yb1i4dGAvv0bZjCufrbOFZ_XQejM_K5UBfDniSYxEpnUx6aDBHh5oaQjOxYXXDbUzlzXDEB_s--K5Xy-5b9wpWB3GlFRm1XseOTF5C-Gw4go-yoqIy3qi1k8SfeRZxWBsuzkveAra07oO5fG9gA7mZOAac1OQBL0h5y3dHrblm2L_ipE7xHmPilz5aKdmG_HcNMVPV49WINQcuwyIcFTf2UpcsNoYJOoN7AjFKPA5eNjcJpy2uS1uoMUQb-SeCO9QkAyu1d0-M4kWBmgGm6mML35F5atxLN7xBXTrAJO0edAnwJd1jiggMiIwHqBt_knZ61nYiVN3GtUWNkTPKl8Kscu72ioFJz7Pa37yYANLHRQBj--sv2HdNCk9Y35YqPWH3rsCgqXDNDTzmH7OrEuuiwx809iCxg8ULe0BME7pWOrGhbENifUGwrJt6FcGvwSANAWTYzdSX0Cl3rFuCHizu3YZD210i0Pe50_uizz2-xF11MVSE1_fgxqxpIGZOF_GSeq1u_ZOBpwQLDWlbz6SFj750yrVvTHGg4geMc9myPVvVrohpWN4PtTPC4RxX6d6t2c-VDzoEmlu8wGph9tzHONEJKrMu9gqVPFqUycaVnKoWstanP5RhMPQ3FP2XcPyq6KYjgoEY8qxxH5KpRU_Hc5zYODUTibBWTYOquI1i3r7LoWbrmClaUt4x6M8aDQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67cf1563873b95-79309107','','','2025-03-10 16:38:23','2025-03-10 16:38:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42523',0,'cd-form-entry','',0),(42524,0,'2025-03-10 17:32:14','2025-03-10 17:32:14','{\"firstname\":\"Ali\",\"lastname\":\"...\",\"email\":\"co96091@gmail.com\",\"contactnumber\":\"01027165741\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6JILbPTCNAT5KRzlIcTCLrrvWqe6UkoZjXaKQwRx9BWIsI26tsgbm2G7MBkIJPYdaNqgNdlSSWbKuMMTqDhJiCo3ZQBuEJMxfk46Sd1vpaJ4S3ZYOXLUrEJ5myLVo9nlNYiw-GjQtULET-1SSauau1lLT4Ft5LGWa7jCBPZYRf0GHax47l-ogRA4ZFc3IrHracu1R264IIq0ifjOyq0F4ZSPp2941XzMVC3IruDUHLdGJADyBZscJY6I127IwCTLWSbp47AFL2FX57Klt2J7C0nNyRYV4ezWic_VUJ5jyu3ID6dVc5HDtbpzLt-SkicwwojhyLT8CyF0Mz7D_55gSS787valZGBGjmsr_XB9xQsvfME3ElVRwazPUtNQRfGjZ1TkKWtBUdCjSxCD7d4JwCwfSvHZsBG8pPnQt6-ps2xuDVUD53xr0x29n5-uUYyYdTrZqGzlXnmWEaVOfha33GRzxMUbY5Yrb9kCtu39cuOZxJGDucqBhf_ZfOyGpd6I7CoTbxrHj9_nANuRTSUmknoufQBbRF9kqT7egU7qTCgIqaRMwFMVKe8i7nJnq-hI-FGU-8DG5LjBz7mHYtA8JkylwZIe6pnSLH-QYts11XD_iVDAbUN3G5sv30_D2eZYo3PkpHk8-yuhF3KjBF9vUQLqswqjc3Cm_h3SWp9Xah2mD626uPsjjMcfuKDLXOqguuxeBdnU27qhFmzDqsbrWdrYB_lN7hmWsCGsS2hU1yH3TikJfNZyimhfTxeT-iwLAeohFoqSHVsXnjG6xjh_BsMEh6leMPHpIiOng871GWzMYMPIiofyA0ffe9l67Ehc3pGQ-1ndota-pyehMHzmBJlrwlAzOyrpivRnnbZZifMaQURdgLlognucHBKEVp4Y5f_BDr3ZlspRi4hKQlrwoYnShKXOaMIxpGRa-iRnKHCVa_c3FPcz02Mo-CSPvbUhinBQJ3Pz02Cl1CiBoFleZVtq2CF1ZlsZT8LwLLPo9sOB3BhTHn9aTtM0pfS6qiXhkcsXiGYPxX3OGJsu7e6rHgTRIfzG1G0IrCo6xy9cknoFxbV6BTiM_vbWHwsukwjxrrVk18AkgparxWJ-Nqy9LygoeDHr8Q_E3X3hje0IunieTVv93RKT86A_Dotk0lPu0cvuRRUa72WRvTlnZugMPg7NPiCrBemm1lFpvjSzUSgPpCkl8Uececvork-ZFP7ltebdkoFnlb5scwMjeS1nQeUWsEFUN_JbeqczCSEP-5j6dSIi9eNJVIJXbz0S1Z-mc45hMktIDQpUGwZB_CPxudZS1vIU3ZcU55RseHTQQ07GuhDhSVLaq8zeuOdmUjykVqvFZtqOgw-mUh-OGcKxpRjS9Cdq_LoMDKqJlxSzJbBXBLSBZZ1xGNTWMtQExWSjZtoj0VRsNffU1ZtSCfsHLDoKeRDTbrxOtpvMaSAncp6lCB9aQtw2DrSN30yqGTwl7cmym-8jd-WEqVw2sooUqcoCzM0On0u6YxBUmXEE7ZwZlKmxgB5pbw1KYOAAiAu5aJPaGv21niKvoTd3dFzZZ5CQuoYgZTobUIwG4wpN6Mu9-Jj0J2tVi8obM5Ugy4pOs1Z_Y9tHyum-XRU1bDFwfWmdkvNYiV_Pl5BHarH-OHHf2xtV-Ka_AKSo68lvF3cMvnZTlhQNMZr8Dpne43x4XDIBK-KGFUwpasfTgov4mTbw5oor278GXoRyzQ7L2yHAWvP_TgSaxSyuBVsjG-EQsbe5lL6H9fJYFX88MXHn7i54RCcif0L8lrDGHNm3Cq_-Djtnltrp4UeeHzaUdIB6gjvTRpTdCTU91tjvELjWcn4kczzNDOEE5zcyIr7Pz-0OpLyDNOEKxl1o0za9CZ_-w5vr6rlihJ5Hgl6YKR-XDP7qi2mdMmrUHWwdbIi-UopDDtHmIDUKxX9Sbqa7pRfSPD0hAhPg0Skns_wZe6PxTCQ0DfGYIW5WHS9xmmUxUJQa1Ew1RZ55dLoV1Sk01j7yrzntOPAZwvojcFh36NDYyWk5UF6Y0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67cf21e848cd98-75952146','','','2025-03-10 17:32:14','2025-03-10 17:32:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42524',0,'cd-form-entry','',0),(42525,0,'2025-03-10 22:36:12','0000-00-00 00:00:00','{\"firstname\":\"Leang\",\"lastname\":\"Valenzuela\",\"email\":\"beoriginal1777@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA5FVj5PLdDCusAqueNZvYrAHUO6zVSe_SSmQ4JGcfTFV2o6CuWzf28lBsaMupNeZ-EyJ8qpxhei-3lxzrulMKZCZJMv72HTZwhTawPd4Bg7Lk6u3OIqbFYOCrONeRWpQmxOoSWq8XFbQB4aeCkwTTVXZA5fYnMrbeCbflzW83Ueb7NMX_-BaW1yFfHD566dQEKf49ocdPDcrEAuadMA91YW3T3sPLyi27r_Ma6_-DWz2oY-zL7bEG0LqXpM6XMABT1t7tHdE0uZDXu69AZ8twrNt8YVP0UT3wjBrizhAkQQrKUkKR-prL0-uI4J2BI-6Z9IkSl4HCs5VbAE7lL0DKqv9xa19J8UQO7MydtjAYM1hMfgYpGNVUW95SGzxfAeUQNArg8N-PvQp7vUDaJ_QJaW0lTU9SSX_0ynSE-ou_iPdAEpTz5dLylcEsJN-MlclBOMDGshP5XOGJOlzUQmG0QFZshzfrZLWzhm1vVBpuYzjHq2aIidfWxPNrVKxdx7I3JvPeVG85xVuED5Yh05Y5_Pxx0Mc3ehfPNLRywzSfXEOsU_dJIJb74HsC-rq42soFby-rlPz8pwDFNfR4pCPlYNwlFuojMvbggjGCkgDjYGgaRs2Tzh5NrrI2XnvbNkBtL-CHoVVHIpQKGW1WILtqS5j6lmJo7XCzZN57saNgjH_VD1K8ZZRJhymoUgxZPshij7wBSO3M13UNelWO2t6nKEVuxDZGD27df9ISghWjekHFOouXGAValFkrhOqZxuGEi-5DjoxyizBAbxG4dGDaZNfO71X1ghfY0vId4SB_9wtlyucZBwDrUy5Sfrqw4NWJWWzKxhGcXU_IbFfBaXpp-hObcdf05Hmt37l1uDnvVTENNhG2cPoephIJHb_AdqgO0O5k-rkGnBQGguNwJhiV2EnhK2Y6QkpXAxDMGPoClVVehXPEtIiJ21Rwb-WGIDHUPNCc5AUeqimF_7bfvCdWO8laNfEu_wYLy-JSxUG2Db4lMvZGQ4hh26NXKVn5kLnohsTMDGHcLItn-ZtRmFXLM3ISbhH-7YS_JnFDY4rm4dGglxzd1I8RSpXObU4ypE4xNSQFMVVt2tTPCiCmw076g3hWijxlatPwL8gqVFAo4SmiBglkls6hNt4b6uJcg60ajrML0SL-C2uUdA1XYLh8K-XoQwJxp7F53AKWPjWWEmgGwMgdMb9PlzPtPS5zFwEXTQK7r8fUZNO1-Fg8QR6IG6GyjqUQcp2e98SeBo3KtS_GolOxAzPP-4l1gMa9n0DQgyWSqSCyRL2zz5kGwOd0q0TNtsaSMtHJ28SpXlC8an7es9dXlFMduqtqWIpIWu4oEX217XqCCF5eyUWZipXZnVvsEezd1W5FKtexJ1SoF9evRzsYZLbD4O-eBvhmgs0A40xQWZZUFnZRHPgofXUXqHcBK-6KFnjnzobdH6679stKinAc3a_x2wRk4jkcjSSs5knOAHmWe68bznXOESgcylJt6TAHHeHNk5WGAup6DJOlDtG34i3FY0pW7gt3XtH87rTdWv6ckY8g6rJAehuH4CVJJDWWYFVPvlvW33KL53D9n7yY8cDUesELbK7PqBTzaWgAJu-IylszQt_i292YvgnGx_TnvUJjCMMul0xjG1GW-VtxpOJDnRPnVD-YqrxStMrHnpTRaaMLIAQDqtuXQrO0xDVWJlZTRT6wSneKT6RPRbkDwfMvJ48GUFj0-NaFvdcP7H_GWcMD4-bWtVDcAxQydDYC4g9xqs4pWL0hR1d15pHBzV2KAinI3Jopcn5viAUmfH2dXcA_seR8KGN47kPwSlTJfRDKBR3I-bAqYX2k6gCdBbKw9AUZxOm-_-GTpVTyY3ZDwC0wcQvUCJ477Ve8HjqSVzUnWBd5qX6zSVMYdLcejyGFwY4xnmihFlzebHxi0r5QeXjteuH1Bt35LVTIfiQm7a87qWOAoAhbDFRPnLmajVs4wSNK6H0VVBn5RQrPPKTXSaGyKisxsOpZJryDevhrQGIxoxO2O2oyKkl4fVHVa_uXRBS2SX2hlKNnr_dh1FV0S61nbPr_w8B0QBUnmCcB7f8KKADt6Y-fI9zaCGRjCm5g_OraBoQnBr0ZjsmJqaBOgapKYRbCIw-V822Q-49070uCdhzi8QdxBLUt2fcq5X3wgB2bD2C1VpgEGNIsmZ\",\"recaptcha_score\":0.4,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67cf6950793ba7-92899345','','','2025-03-10 22:36:12','2025-03-10 22:36:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42525',0,'cd-form-entry','',0),(42526,0,'2025-03-11 02:10:00','0000-00-00 00:00:00','{\"firstname\":\"Rochelle\",\"lastname\":\"Tirrell\",\"email\":\"bruchelle2015@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA4D80hzBCg6ZmQ_r6JENS43kyd6lW7RfjglTDzlSdCEgZten7zwvH66togDZJJJTCgq5KTJzVYYmVB3MAAPSsrw6zNBOiBa7DKq4pmfRk9769ozHbmMtjaervGa-VTqP1L67Yf22_9g7651wgEoBORs1G8PrCeNpvBOHArxINYrFJ34Els5ekPUE7LE3xT1-n0X9KfRfO1jgsN703YArZ0jPe_pfrAciCdEMwAPc-YDQQUMh9Y6v8bY-UCssaEcHNRpjzcpJYUE__gOggYj4KzvzV9XqNGU3vhOF3u-Ea8rorJtpX8SU1-8d85i9x4Yup6Nv65JBBJ2fXdEyzymJFy7f-EwpVE_fBwqIKGUcTx9PFSDN8EkXQravhaJmc1nmI-1p7GaJLwtkKN6z_Q3GqDFH7PJ1hLdgh94leU4U2N5kEbqQvJ-h16QnKTVwJpaMFGnwkV6rv768iPsGfubQj1TippcIPAh_ZHfDBt_6RyJoPKGso0Gn7iUwEfxSuJcHtds7pv_gDdToVYyFxl7XmcEuKadKFJ3MfqtRcNucNT2gukJO86ot2s5z7JoMFDZilDUM-0JaLr2hs8JlyJgGU1PGA1vn7UE33Sm-CRDK0N-v_0ruOXyA8lan9oCtthSxjOgjQAkVrxgJ8xX0s8z74dzB-LkRzfnNb1-sJIPXRGovppKaxheECh3plE_zaci0stZPANdvws5zshXvPOVm2JInY1jCFAEh6LYd2hLqbbLsuYNbAK79pbL86HFjo-YCQ9NL7O0orpkmgZNHeV0qnG3EVP7pWcxB7afOU66cYUtEzxFpYsTAgljGXp9TOJeKgGH9xgAYTTwLE0idv9mD0XFpCp5N_WXwMs3TxSIELGBGxanAhPezdwJ8OaPGEgzIUgcKuM5gxXkgh3r05o9wv-jSQ0Bivlj-WnTM7atqXbFr4ioKDuunJ-_qJXJ_JVnerWXQc0Lsx-QMUC1-IErp_3AauB9Tx1aVfwxv3ozGJGmDtyB7OdUnFLcD1IEUWvCipF44XJjX1Y1FprAEI5eAzwf3zpxLKkdthED8kTFFLdv-3JhJBb18E7-5isYxZ6qu2-Re6ZHg_jPbI4TfUcUOxXtfK8R0aKQ9tRqj22NbqN6xL9qWjnd1LJprusVgG6TCNosrFY6TTtK8BMjnwtTg8pRSp53O8DaWhzLCbnlOyf8VVbAU1vFDAorWi-bdymw9SOS7iZD7j3gvZQv8ZmITLEi_NhiW-Jw8TYipUkPwIGl5FeI-zBODUMhzcE8zPve2I86kVqnfSd21ZG46VmQe-RMSY6xypegZ18bU6fzgFn8Q_p8-3gVLGqmaZRT-P7zYnhSjIG6TcjLW3syd5l504g86qBRR4XFjOYJR_e8hprqg2B0scBhDkkYHUewm_Y1JyMxP6_O1TTxm-AcfP3LCRQLIThfKfAz-kV31Be9RC71tJgoGNxYI7ABpOCOifB6EG_Cr8Qi96UbaBzpgFYdmFqPSrN4K-0sCqTOh7H7tQOlQHohkyIQirX5wG6skKETx5LWeGP6K5ZGMVuA54aoWvBjN1kpRWW0s7jzpHiHMwWKd5ZJpnjkjIDj0BHxvxVBEgSTumoI1g3yU9OWdS_U1wLO3F0qku7WnEkqyK4KWqqN7PITQiVwmgSb7yyr5XR1rAlldNuISYqE1nANrzjrcnPy422CzdgM3o2rjBxEh7YBZKItJXlzL2hTJceKW4KpVH4kSZ7OAYERM3_ApZrWUgQHTwTd2LUhJD70I-jXuEp6XwXTetaScEygYD3pyLHYzqd6GlK9TpPo2rC2z7nA-Pu45z2D2pnnpsYKN9TtbWg-ACIRvMGkQeqPBp0CBYh2Ld6Cs67VFeyfgZu0ai8nxY3BeHXVG5_it025NhA6hH1q1aBUQKxctdszJIQYQKkHJOfnqEivJPPSlFVW-M-a7JgxdR8X-JWlfEffTB5_NjwpLMWmiVgKF0nLCVV7u7uqe7UYmwUSjv4a5tgDgUO7OTo_CyNYcF18RfKRv-49lm62LbJ_Zt9BpUEgx40CD5-t788WxT697b9z6iHPoNfW7vsLnzsFs3DflXXoPzg-y09-ixmZsrGxV0KJBOXGbPRp0LBv5udOwXGBTqMdFawb2YInFpMxWidzVzEiWEvcGKg6xN8ogvv5g1ZbMKnOU6yRClAW1XLbREaM2bHd49TFsWiWjMLxgHeIjYVl5ed-H5JpgVxnWFYtronpYbIWEWPA2P3pMzAa3qVUksth69G8xzKoQJKwv4jByQu5PnNEZ-L7Y4XgTLcZmqxJhER9TyIax9Gyd7e3vY8jtESj6Y1eZmg8W-XMW7ijJbGrzrcfy5WobgLolV0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67cf9b7808b9c0-14710804','','','2025-03-11 02:10:00','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42526',0,'cd-form-entry','',0),(42527,0,'2025-03-11 07:26:53','2025-03-11 07:26:53','{\"firstname\":\"Sue\",\"lastname\":\"Andrews\",\"email\":\"sue.l.andrews@outlook.com\",\"contactnumber\":\"07595690810\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uHvUHzgt-c1bmqGSzpd8lFs&amp;gclid=Cj0KCQjwm7q-BhDRARIsACD6-fXJN-4nyUhK4ns_TA8Cwal1kZJB6V-vHIcePSrnNGnVkOCcfumiaL0aAipnEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6LYxSBn_QM1-9eikChjJoSKRo4B9b6ADi6WvXxSRxsF-Vua-3Dez4JKQeK0pJfXyVdnSTJb33DtgFdDaAy-mHM0SuwcQr6vJNGm0sYieWp5n8GnyQ6tfnYzkfN09WiSwxW22K4OQHgDMR1Hd2I-zfonGKpnpEMB43tdjYLsUFokQLhQR8Mkp7kKnk3hWGRCSPxFjoisSKBfWS21HaKRlHPTR2XSpC-c34zxQysiKMsqCcxyWI_jQISnuPQ-qIC0FmFDfvtfYLx7_ahTV6z4bbse3qTxB7yPjg961-i64sRrZ8SXgngInQLV6KtOUC82qNJKYe8xWiZe5U5Nb-avKrV1-lNpuUa8H_QborHtrjeUIdfi2d-Z-qTDKh1QzlqehCFcOB__MeM4kyKXVGBY3Ly_23nW_hA5UV4SQmariACU_f3-pRg_KmFFdrs0kL1s4_jlpkn6mmDoDCjOPK4HtsagfxP6a_nbiZMrwxXrnpWIcdduGX8S5mLJCKwwFNSR6jrzNsGOQs5huc5SVwJOSGsJyL7UUoJOzuDRtN2o9gyIS0vqBOc-_7tHfJaUW8VZlnAPDutLxpv52Exvzi8FLonwvQBTzkZEUxI76eH-CshWVW3S-sQs9N2GZrwg5Z87VeH3rSZMR9MiwZQOiDF11Mnr74dJVzTsmlrNtn4UohTYgq_4LMZLSWe4urAqQTbhUoPZdnH4QvstpQStAaFLhM2cveOWa7mDv9su0YELfLLLrGKeIHSiLMi2s6PcpVjK30g2iWEgZSaxasNnwcZcp8o_M_l7j5y43AiKRsm_vunZZywKKD2eM_L36w_lwynFgo-584sndMUPapOdDqWIgXIDp1fS2chcvvW54bGx8Qty4iZps58mxRnWNd1NgAjalzrtjkWu9nL6j-Ml5cTfGdy3PXc5ewIpZCNKv4nS9mMXyAnULIe6zjoXscQKQE5tQvaRFFC5pnur_YHip6f842GPFA-tS8B6C0Oq1elslESx9HiqFc7rB6nQwOwnG5Q84aMjCbKDO3lrDSJV_KYZ2wCbORsZUG3yA0xNloUZI3AGN72YlDz7RXnSM5RQCbFT8BOOu8OmQS9eL5RWMB17hizTcT0FxSCmWxhsGVk1I4bg0S788FXcJBl_Ar1eX4hkPHgwfiioAlvhXEACAQLBoZCZwkXJmhhJMh9oCGlQlxdelZvQwoYKHqmstb0N65svKTVHODk7g3nhPK48hfk__6IVkeZ8KVAivFuDVmz6oaBMJx130-m4LQya3IGKIw91jsQWrJU4KDFD6rVksJBX7vxcQF0NHwQlOiQdewUodt6bWj6hWEVElkwv-YqbcNh16mfg1GJhtFj0F_2K_yJC3x3zp6040VY-WZWnNexiZJC_MZ5j_ZlIYNteQ2OV1HusYOS7lHFLUlaBSqL6p2quSMANPzBCOBN-bMLXqd8i64rbcaDJruyFiy7w6_OgAn32RXF5unlubGQMh02M_hZpZnS9Gk4ZxooU1W-RWurOCSWYpFg1uD2HuahjTf-0oGgrmLIpH5YMiQz6w4hHeOH2Z-YEN-SOWs7Dc4igO9Izf6yHQRCT5M5lJS9upRg5i4Zpua5O_7i0nlongNCVojzbSWkFLN6qzHCn3Xkw538zbUf0VaDPOvkkdrC6EcUeI-RgzV3R6TCIq4zoegK-O0RTPetvOlPc3RBg8laFp8ucyiWpMCYaKtsSpoJPlrZafC0--_TaqkCJAlEPrutg05lWhYbIiRAyestJ_OQXTEK0x7UPDZY8EwlhQd_W1Tk-9UqftLooIJ51qw-77-9BtguvCubvhQFMOdFJ5CMuAE8Kqmp6hpZoJcYn00mQIihZTH0sI7dqCPWJ6Q8kIvIbVwepnPNBt-B5W7IrayouwmREKQuNkXaJ9s89apyGtgimRqTzv6KNldp76V6oOTxFK0cRtAY32Ti9UrKiSLBENhEWRYsuqOeZxTSZJnl9onqE0H-Nch7Q-5FWaVcC5XiPOCBo6v94F1RWnh-rFweMLbeS8ZYJL5tDu1rPDArosnRikmRSYUZ2d2tOdCDkHx05njVd_n7P5zMRqV-mMGo6YvLByLmuVQEsYCJz60G3_A5OYd88uwPWCnKyflMsNrRTP1yBQ-wuecUVg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67cfe598729495-75824817','','','2025-03-11 07:26:53','2025-03-11 07:26:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42527',0,'cd-form-entry','',0),(42528,0,'2025-03-11 10:04:31','2025-03-11 10:04:31','{\"firstname\":\"John\",\"lastname\":\"Bell\",\"email\":\"johnbellcoaching8@gmail.com\",\"contactnumber\":\"07968594859\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMI3c3BouOBjAMVx4BQBh1VSwrnEAAYAiAAEgJvmfD_BwE\",\"recaptcha_token\":\"03AFcWeA4Y1mLhp-KzyoFBDs9BDwYGsrolbsD-MgMidXRuBOHMPB3xHWhSUt42YK7I1GgjnfGD7j2E_ko--K8-NBX1-DgUPlLZ42pOIQOYqmiJp7vRj3gTTbu9tECbYj04waet0bLlhBwYHdgnctKjRME2OuTOUkwfmIi2X_p2-v0K9JAfR7U6yI9sncEp9q9v4mmZfy6-omh10bHmDxBUUvRGWR52wECz1iZwMcrJMq-H8dfDD63FylueUMtPBNQYFCtQkB8S-3SKYyjMc1QB8LykZsJoBM14SBateY4_0rIHLDybVdC35lBAOKYbrmpLEKqPI0I_jbDyQm5n25TcvBS0uW5MrlwlF0mfeTpTeXcxRHSCetAamicQ6EbaumD0lgE3IvuPnMNk7mjM-8WJpIx_3I7HXDBLLUEnxsMBgoaCdJwY0NU-VwmWOvxxlmfBB3CJDwmJrB7XTJlTRFfXkXl-0a4pG56T8074_IMLJn_kOpTjFcYIB6pyhO9mcA8OqinI1PLvXH3_xuqVa-0E1ReGVfiH8uUnZnaWRhbRdpcOIA2ULL0ef7DtHYu5CwVL3oGE6k8bdfuLKO8TE6vJKBdHUA1ovYHVBaIu2mYAxZjZjdWDmDDavX4ggZHTQ6U-P5vxtstP2p9OdfLdL3HQCSZmiJCMAp7Bhjzg1uxIMcCzvXjv9QbFYFS_0uMXzgYOrxrVtNE2Joje5HnOjd8VXohX7MNf0wiwu6mTiLg5-DqWOlJktXlA0FCJuKSpKlv4djqkntfi6Ud0SBUJXsO54AYCAakptwrVSWRG5CDEePG06eACrOfYDLP5L6jayayo5ufaSQVuQpOQFscc4DZwupLQIIJB9HqNJnimRIk2i-KE-K2H6BgXvfucSKqegROEu3G9jndL3eVdBiSsTg5Ik1x4Ol4iYABbuGufcGAyEYbzaRLLq07Pgk08qmforE_HUh0VWFafgcSQRt6ipdsnLnCb238HyEobXWy9QOe6M2PiG4A_2Ct8kPM4PRe1s4lbYYMPS24HRVsk0DA_69yKflhTIU9DmScuf_Z7HLYPBAbPagn-aYLRjmFuqcQosUtJo79X9CJwoghjO8rgHoEmdqQTS9HHt7qzvyI_38R1n5ghloxrJynw2BhIzlk7JD-fLLfA7Go0j-_5bLWW5XPA3q9d9X10ZA0hW_n-F_7zxwkKxnbQ0PKZDL-ax0tlmMs8Aix1y_5QOpRgQoCoEexZFnmJjc_mOLM92Rc_ZtHaiEtWf1jII7fTbtpk6bS4Fq8xgUbtSQJl_ECN-hAqoDev8yFUKekR-mWUEweKpNILQ7zK6oR1vPYp38MDyxZs0Mf7owqwwu0kfX74XM8yZQtCyQE2d5_bD1jq7mlgkVWrDIdWIarVhLa2tAJt90FJtLotQ7VXlzTd1X--6bZdqlgKFS-822jsO7tc4ecpc8SZyGTV2jpAI_8VT7xKkAvqhNf91nJ8lBX2PULe1UFDBXIS5CwwHUnpniOk9w-Dx6Sb_rQM_XwR-14OZNDjaiMFy4Epviu-vpD3dP1KD08kCG4VdEZdij0P2K2CDWtvI-Fpw5SVlHw29bjV7Q0lG96dlm8ThPfTD4b7gfwuHahZFnD8sPB8Nby1_Ac0rJ0trlCJhgC0tmt3L1EwQD8QBiLwsDn4AevNOww-97kYjgv0Ejvojmfx0ZX7eXTDHzj8jtLXid3dnZARPPMZt3Af-INHxJSigiQVuHpyJQ6YHd22h-AQhHWRuMc3NAiI-QJTeScazJLoO75p-gF1uno8r5fIjqcjMXRWBrEaMw8ByElCNyEN0GgreBBxjZVcnx948rnZh5cKaefryRpo0yi6-H8RlPajWQPo3tdOAsW1Ob51UT5UotC7wQwrndeLyqpIhy36wgNJjUyhgmCfcLVsmJ94EtT0dhnA4yo67TXW6p0B5qrhWfOXc6uazpt1Uga-NmaYC8EZpkJofsBRSKXgWh1lHB6vR-QhEOC44MDGaKbmfrKYuJS-D9d_-p0J-UltVYoLg5R2k9oJ9UvwhMoy3SZgNSW5EImGSBMol_ID_mkEObpBxbGieg1aO-JNyHo4ca41MNutDNWVCbwlDhtlP-y-_LXa7Ae0mFMYeybD\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d00a9b90b8c5-51387180','','','2025-03-11 10:04:31','2025-03-11 10:04:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42528',0,'cd-form-entry','',0),(42529,0,'2025-03-11 10:06:01','0000-00-00 00:00:00','{\"firstname\":\"John\",\"lastname\":\"Bell\",\"email\":\"johnbellcoaching8@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMI3c3BouOBjAMVx4BQBh1VSwrnEAAYAiAAEgJvmfD_BwE\",\"recaptcha_token\":\"03AFcWeA4EOnXi94fiYxgl6AVCTSkBG6NG0hdu2BwqcQXzwAv9WMp4vKw1TwbiEwTay62PDwsmqpz9BTHjjCWA2Bzk4FW8GmO8PnAFd-mYBd-g4xfz1EppX5LWcb222V_nsyBWDnfAgqFnbjV7Mvl-10QQ0iGdA5Y8Sy8FuY4ovjGKFhq2D0SKta0T2rDl696SJBY98PxEFJw4V7EMsV2eE9Gz733KSn-XTyvZLratse8HLb8fqbnUZgFO0y0eeSbb5b8fVe63MtDYH8dYFQWW9reyTUp64OgTQNC_dduwkzbMTFH_rh8UbL7Y80-7X9wxO-563JlYKbZxacN80Yd4nowFLp2rCuh3-r4H8aIaFKSfOPohY2reJAVliAmEGwxsE_DrFEX8_-rg-022U5gw1fCW-3Z5PDAoxSS3c3koQ6Djfbt5ZWCWzl3-anlkt0G2c99qqs-Vr4B22v6Nsi3CxuC5qPViel7R2OWviuOZGv6-IGPiqJ5H8gBqqb3BNYd22lZ5WOhxtlqapjdg05zMaRiPMVciDhGM3UXZsI0o79KbykZ3ukS0vB7NIfL59NkEstInm6DnVGinfzzh8MlbjIvslkkZJ9GjDONRe81wK3fZBZ5KJ1zXHiZ-SATF40zEqrWaDCu5AXpp_zDfhPktNLyE3SLumN_klxxK4Y711JoFCpoODJIEJ8PsJHW2wGD0pLnVT62ewqHyOXuhinOzsP79XwNcpgBpR_ksQmmVKARWoRBA51V6co56e79g6k7ozrTgVr5XsWJWlziF6vq_YVUp3zK3BvNaq7_HFirazvDPQTULyBaQCv9cSHnl1N7MtZs81sPaua8SKs-Whkcp7jJyq894O8T6RtAIVyCgXE--JMt7WxRAoKd7KDydDRSELHFg4kSlSTlLKB7b4e496jyDXdvFXt1-Cg-nbGxcSTWgPlWuvpATs-CmpanOLqGoihhyT__MIoT9ofqCL736uvanYXK7N17ZCg5O-N1zYsZGKTt-tA_xJNYSk6WVDknGbAkWlklQBl_HbPMR7NCq3fUPHPOwiorQNBt7QZYF_4jgc5dP4PS6fzVuZfnOrbqUKRLQLYdtlzSJXXs9N7_7kZlB8tyIYLievps6bX385jBp075r2p366sxXAT6546on5d5S0HD6MBGYSGsENmBXDholZFkf8ZuUoBD6TzqZQ2xUK8IHizXVavgoOEhU1_lT_HtGpZGDlCLKakzoRO-D-tZBsMs7qKh8c5npw3Y-ntfqKqF5L9oftyc6qc8vzaqAO7EWSvkPwIeEplM3-LAv0e0ZJLRp8BnyGo8PPlAfKFBIVWhZ6pQVp1N0RhouimpjyG2Bqx0VX43M6pRVfmlvdl67x5mWFwWSD9FVahwRiIRy9q5QHoHhtITRi2Rn4pgJEmBlCW601w5jOS9CZCODWoE6InD90NYyfK_tPEyy0gzSD3jMSDtxWQsGyTDUzQfW8uvsO6YANnEITJCMpLkUolqHHkWwKz2QJ8tF6khmlDpGvUBQ_q_U7UV-mvJnVesSBXKaC7uxcYzpVQtv1XUJv3tw-9bkvuSWG-IriorH-kAIj0ht4YfXLWxIG8TsOw5fbFEfnh7gDA2if0xqQiyRJ7JgOWHD-Ww7jpVBFHUmMpH3hhvWQZAWysT2dG0emV6KiU5vOUiUcnKUpLURMO5QrQ55Tdy-pGkA2mOVxYEL0qKGwvHHC-NhpGk4ObssEWJQAAmuyPINEa-csnPF7McyP8BGoRWYe6OIOvkn1Fg-ymKfgr1179c2fGSGZdp1hbSbOL4V8bsQ38erbg8Acr2ExFSe-begQgxtFWk-yMP3ni7FWSjA8PCEyRwtbiKMn5UbtZNO2Ow7pzhrm3tIKOcVmCmT32VOSqtYSVSxMi9cu6qWvYJ8q_GE9Z-Pg5RoYexP4FxQcgspwOqGjwMG6MN1q4gzCzXaKumDvyk9VLpzg-uYatvKolX75jYYwxbOLjFsvohaN3BSCuaz4kodktiWISZLdk2H9ZbP252CQCC-S3apBkitemmq-n3wv93clK4FUEF3d6mTKB6Aft7YDpM3sBtJatCTt_UQ4QdlRUGtkL9QdrSvMOwSsv8wjbEqgB2aRWZyk85wV8AC\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d00b09445525-79696028','','','2025-03-11 10:06:01','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42529',0,'cd-form-entry','',0),(42530,0,'2025-03-11 14:21:46','2025-03-11 14:21:46','{\"firstname\":\"Brendan\",\"lastname\":\"Thompson\",\"email\":\"BrendanT2002@outlook.com\",\"contactnumber\":\"07368453002\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uHvUHzgt-c1bmqGSzpd8lFs&amp;gclid=CjwKCAjwvr--BhB5EiwAd5YbXoJRlSZjdTMY5bMvTrqNEAUvDiIjU1bNqb7cpboGEonxOSCRJVpA5xoCTcYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5v8jWTTRs_h6etCYVO0-04MBRQo8mKPOMzE3JhroTVY1KYCjwrufiHDDX2VejNwg1J3lVYcgSsfTYruMbsAzuRz8mIBxvU7-5nq9TrJlsipNLCbyyojP60ZmUWJAoK7Jj54HW6djGVyw7_m_HRzDHcY0NUo5GS6VJJ2J6bcE6DwZ4p5xvQf8JBF6RA1SQidlpUa_Q0UTagY0JHXXoZi0Zil_O53ntc1-mRD6LtrQ-Fj7n2Ott5D5-7C4XmD4rlVKvhCkTe-bO8kjTN4Di205SdtFe3yEFEXw_V8gKZJAl-ukoUdN8cQepSvJuVUEzwCLVjLQ9hQ2v45xEYZpJAb1H4usxfrp74emRNi4LJcr28y2VkJBXiDLeOgqw9APEufWYjdCCRVCT6mvfwf8pmAxfg-slwp04_6MANaow6AM749chIXJXLqheyCrnz4HD8w58tAkVBGCoAU4mljDAVE8hhN-CT2BvEt-I5czyg9UjL2C-L8eWiKcg-q898YUMthmcy4T4kvlayNnqu9vHSF0gsPNaOCxLfWiTrz3zb0YEe0tgKn3KWfarpWhcHPRQxIzbP7jG3m7V7LfQCX_WfSHxwiajRTj3lDlvnbvJlPqUUfKiU9XQgRhLxwjFwdcS_zIuwW2uN8ITAsD6eIe9qf52iY6QBl95qb1gZ79ln93JYDwjdAPCjWlr_jU0l7uX-uGZ1XYv2p5-8qCe5sdsCATnfl-1e8jv0S-6UAFM9UlkhQo7n3_rCeAhrYBR8PdF-XXW4O54Ms7yN0tb0hSot8WV-JXNBWRaIwG8dWoz2ea_ENqQZ9Kyl4zD5HBscEtIkXWj6VvHp0aXvtcHu8ElFlpwqEDYcfvacD8JtvlgQEgM2WscI2hqnL20Gq0qTcoKRdqzmEiMFA2YHLKSpFJH1vLoMq4WL1gmz22lKMoiku6mx1g7l6CvrZFK3spsaYHO1WnDftdXZCErealAzjhyEmf0gweDdJ2Lld74hMp6RqDVAGFVsDmkHy1aHaPt6GUi2J_RV76GrSGWDOOjf1dHbPVdzH7qdEIIjEkTy_1N11yGys8149Zurj6Vx-EEtFAUvwYFMLNyHbjccEHAjyOuPJhsC2-6rjpe5B4GerEAtv23GvF2thMlSmZHFeb5ngO15EWd5b0_fJoJ4Yb_A5m0QnbfPE1WlrAw4mFcQRuB_biZmE8kaqGC2bsMFw86LBhGGD-pkJ94zvo1HYkHfgMECzg3b7n2w991y-FHc0oOA4gC2X4pfTG8Z6abtmdUoRract8vDoBwSm_bAytTdCfUS6ZW8UIiqTuuxhRucQAoSMklQbS64HyE7oPAHTh2OwhSCdKx8Po-tt405xX7cWUPKGpA0HV5TnK7HHnaAZNM1KcbiyEiU8yeXqk59yGJstkKdBi748L9qGiYa8LS_Oc_WXlH1NfevAXiImJD1SWWNovvIqJBw0Rb2dQ526M1SLW1OmPBEyzDj2NXc2cbBB5N7JZJztWzZ3_v3yke6B2C7MEjMGN2PRxYWD6FT1OE8O0UcaCQertFSh9bzcNzn9c2TomOklVoZchw51aQplQKwzEz52Kzao3d1wimPu4OT2DyFMe7EEBB5uIW6T448TKfqVQd3rFTdzBNyHEYU_BC8CqKh79_zxomU0DjqJd6DaDeBm65GfMqz1PJM1Te3mbHpgyseQkDL7I--v3bGgNLdAkEwD8y11hY0I0kGKs2vHlbmnYax-S6EdUE541uNaELUFw027O5qtqgaOd56HlMX_KgYcObBJAcjbuxJ8ttvof8MzZ9nF-FtQkPp74Ml4kF4D6Pjf3oKGrcKnLimiNZPkYKfyMJ8lsspEZCiYRVwBphVSidmSxQV-qGsillAl4BZQHic-EExSUmziy23LIE41GH7maDyJbzItlj42fp5qT6FzJA5ucaPsA53vpskegoOqbMKxI-zn51Jh9xXPQzuAIASX14QmsTRS0dNbQ7CAHQQMe_sYnt3yZHBOHo390y5iFqYSMMv_daVh29XDhylBEK9uxQ7b9yrUZXKubfzbGFU8rqInx2NXqEIyjrNNwzou7GvwIeHFV7TlPO5E8RqT0hL3zZWOQKwUlvZ2DVRdcqRkLZADVv1yrPPFO3_nUaDKOowFuZSski8jZVIBkkNO6epnmzGny7Mu1eikN3mE5NtQoVNMJZ8-BD_NFdzXK_TqgIfYDX_Oo0QB4eE0f7IkpCJztZ_iTQkOoRO158-HftmwYK3__9tiXu3gfypIu-ZLcdVbioNgUAEJs6CHL2TzTcffeq6jXezTip4nOlbY6J1OsBY5QYxSa9KO1u6VQa1cfqoWI55qogskznBFvKTu1AJZ8lCDww\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d046e1d38e07-68166911','','','2025-03-11 14:21:46','2025-03-11 14:21:46','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42530',0,'cd-form-entry','',0),(42531,0,'2025-03-11 14:23:04','2025-03-11 14:23:04','{\"email\":\"brendant2002@outlook.com\",\"interestedbecause\":\"4\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"kt187tb\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uHvUHzgt-c1bmqGSzpd8lFs&amp;gclid=CjwKCAjwvr--BhB5EiwAd5YbXoJRlSZjdTMY5bMvTrqNEAUvDiIjU1bNqb7cpboGEonxOSCRJVpA5xoCTcYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6i9SUM4HP54TTVtKTeSpEDc5OfevbU_B7LrqM5SywXj4sHze2KRcKlz0R9wEqMYuMq3QrGYYJHqW8r5kWucoDmGfCpZrtQXOAhxkU2W4XaLUla5CceG2MIsYhjnKwdxxloaEXrLhDgTL643FZhcvolFfkPqZuPb_nVpkEPxFXgUg1H7Vn5T1xGTKZL4P0XKgBevKBkGfGU3YokeTrZIFf8W9lQUVuFX_eMq0aKE1loTiKJu5Y5ftgFi-7NOxBJyp-ZP1kmzS96k-0h5sOLwZdSeaBRAqDpiDCcMEXK4srlKhsZCrD8iOOeT_0VFnqm3uFWUAfdqRZ7644niqQzDQZ36fhH24ILeahLyKxwJvTn0E9Uxlkma_-2q1mQMgha1J_MQ95ICw3HAU_60NU6mVR3GtVfjPU0qE-aVANAOrY1x_ev9TV15XMUYEeBBqBN4Ib81I3x2e1hJTJ9puvfQhICOOUpxIBrpVgeMwQpGCQbd8x6K4U4ZOb0A_Ljch_OqmbBpFBmAkpCxR7s5tHir1VcWy0O5mvlqlTSONBCiSUMmld09xbWbqsEcRuz85dlx2zuh5yc8YaYqMdnTo4sy2OgYmHTG35ch7X_PwxXFSIX7Q_d-5OOoDFY6OIpLVEoGIsQ_kKI9VOBzIncORnWwRWyv4G7D2d1DZZIzVpyUkw1qaATvMxdsBLDeejFzHlfKq5PXap7Lw0PV9pVgc9lKfsH0nUox6F3P2f32XH-mwfTczMy5Eig_O6TCok6euNv6jW-mo6rWGB7RLyoG8-JlvMiaetLOjbSelPgbmff8ujN2WUo1wwVhnUjnrFS7NdbuKCgT2oVQZsZQBVuaDlko29LgfCIRxc9cLaAsiXslkCqz5zh0nFyW5SyAT-yazsT5951lNtAemUPF_P1ED89lVZdawtdF3ZMT84Ss2_DHp_QhznYkfN4I3rHa4e6nCzA5PIPTe74IPdPJzS83DvWO9XY5H_Nh__dggneXAIOFGZAcVcsDcZQ-ECcUni3pC5nK9q_EIeGgZJ604d3iZrdeFZV4hKA-a-S5FIFQRWY9CI0bzwxXOj5u2Wsnt-mm7sv5Nj4t6RVf_ZCMhTe0TpuP2S-Ipzh3GcI-dylbEzM_2UGJWRpoTd9iE-bp8exYMpMdxTjL5zh4do3CcmdcnjUPDKeXrW61lvz4fumOrJrap3qAIymuGcbSt0QwoyRhJ7bycPOLY8IjEcbYnLEi6Ce0FUPr2awgktBkRLiyNf62xnwxVbFixYA0Edo1W64dtHSbg-ePaX9Wu_miZ-_HqiJ1dwBIcyw2zqjXteINabLk8cz35hhGBi48d-v7k5y2PYOYA_MUFrygrfS-gOypSN7zlipJKEVu6h--TILnVGO-zAKSryXl71N4UBE4MgAk2cXoVLErSPztbb8s5DquNIP9Xq7fahjV3dt2AaxBTcSrckT8l1Ei36VK3z5V6jJACM1ercA028otfzKOrR-twj2PXXTIqeMTN92FB2IkteiwV2QBVqc_NFlg9WqVBQ0MOdkKnNhOrNTf7MGyiffGQygOK_YjkmfCDWY0KyDNzShEqE1r9MfpnKZcHRhCMGVH0xf2fCpB6URR9MUchqXbpegf2oUfS7qiU2UdM6SsOuH3rCxVVa0LBC_vGBfUsTfCn2V5vjhEsrhe0PsV1Fye76MOuqmb7mDRaVbqwxcWbDufqkAUWeVrgBDoVETW0qtifVF6DT3jiYlvw1etwTSs9ADwSfGv_nwH6_3sWljwhoMMAjkhXjkfrZO7ylisyIhiEmukHagUivyGoduZLlaO3TJQ2lSD3LABHIRQZQLJ5uqZXGzOxYifThLJzirdeHi38OAaun_JkbzyB0wvXgtN9xuiSbhD_XW2jgIdT8vMFMeKlUCyvnhVja5IviajtR_5Ixde4MN_1f4bZiaZUQGWdHZAh60NB6mQPxku-8vhPIzRIg5qbI9QMnxsK0WtDPBx2iL4qoEPXqlGaLUYpjmlNaLiKMR1lVdONPBYsMXdlkWpLNmM7b2tFy4Hm2EqrwTyjZG5gHruYXu-EM8Bcgyiolb3DJpexNPwQh8gOrtP6VxemGx_bb_VKTd23ONY4tTzMHdL9QnSGq_ogszGYiC3pjl18OXt5k-JoHte9YYyVlzlNT-CCQT8fzyOM_hmKG9A-fFJLzUiCMz1Ybsy28lbyp1tdM0IpBfr4c5O4hN7803vP7DEZWdPBM8hUhGs8T0cTdiYP6xFk-1LkPpYStx0Yr231GOi9TILoS6KFGy3TafPKPmucZZg83h9bmppc1Ak2Aj5JKK40zvJq_FkDEFjHhTXZpawNXsRxswR33pJ4rhsTYWOsFaTMA7HjERCek3C-bzBADNIypk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d0472541ec99-07863640','','','2025-03-11 14:23:04','2025-03-11 14:23:04','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42531',0,'cd-form-entry','',0),(42532,0,'2025-03-11 14:32:52','2025-03-11 14:32:52','{\"firstname\":\"Brendan\",\"lastname\":\"Thompson\",\"email\":\"BrendanT2002@outlook.com\",\"contactnumber\":\"07368453002\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uHvUHzgt-c1bmqGSzpd8lFs&amp;gclid=CjwKCAjwvr--BhB5EiwAd5YbXoJRlSZjdTMY5bMvTrqNEAUvDiIjU1bNqb7cpboGEonxOSCRJVpA5xoCTcYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7FqbJdNqyqUH0VPHbyxhmLXhw0KkNbJbB3sXnIcsRN3y-XjE4bV3vyALurI4lKijizwVVjo7s45LLyNl1zzM4SMZwjLoF-8_Ku6c3usjrkGztqQr9KI2MTrDc8Y5synGSsNd84Uid1MqfvcPdVRuVOjj_aFu4Ym-A9zsH2Ug-HT9E1H9PJrINf_ozhJSM9uyEoZTt1UkB5WfBsLTAptC-QtUfGzc52AeK433eJmbz3J6Gnw-vibR8Z6gUMD9Tcy1miqDa_-xbvf-8h_BbG3qYEMRqRfTQAs4D-v4JEco6RZadivJfMsNmBUmrb2f6k_dpD2ZDz8T1Crni3x7EThqZzIJw65ITkOhQ0KmspA6BWQ-8sfjRwRNphiaJ6r7IRfDap6RuFgI0vxa-Gr2mJmTQv5D_wUxXxaPaSpSkFFFyFlshvYIZLidfAOItgJtUIKHKCz747QcEZtHDPh1zOdnGFXwPVTftU0CsAKVsUfuGc7AL990a0Xbqwl_G2JjFrV-Fem9tCxOP1dRJRyfekGTVRi1NIkoR6XECoUcpXmy-7ySycSIgq1CQeQR6AJ_ImPfOwrl7ZRkQhwHc0EZYqSs6BGZRvjdw5ry5YvyAwWwLvVKRbb1tXQRRc9rAlmPlB8NGUlNf-_aX9ZrZgbzck7f2iAVgMSEgyWZjewHQ1q6hwoU06tpVAfAu_wqtGUkdhuIorLy88gtas76aYPTaWL0ZNw6W7BoNCDwpTCvR0BUCJI6Ab2JIaXL7KDZKO5-3dG3WDeDC62ymtyJB5Q98GG8sYBLCE3xOI9myZkve6yFFF40ujmQ6EDm2-TOyn9__Mn2uSO391R0CRr4T70MAKiy5MP1sGhQfXoVdQPIKQZKcsmue3zMDPgobi5dmJjbpLX9LNosOcwjufSAYNGjnQnXPK4aYLEmc9twxeIt0L495c6mOJ43cOqQMgv-LQCTlPgeEWuclJtN_AC9R4rmRpCNbPW__cqS5A1GVSOw_FIjwE394TiVsJmHO3B1Dj-cAHO3sZaL40I2cuVANZJhCfOvrvWpvX58STSQeUOVuS0fqmTU0arWl_wVTm4dRIJXBqh2qqcymwMVMzmFq0DqZR4mqDwWY5T0gw4EmavfXwkMpCQFtpnTv4hwys6J3G0QlxFrnrpAGF9AXETKGbidcijE-6TEmre5jma9bbYdMrgHaWmze30aFZ2bGKAw0BAfQJrX63h75R61cW503J6VtR205ElXBywfkG2CCx6950dbbUGFzGt_Y76gUIkw6jiE8r8mlMRcVMgzGCJZvVsgQGCjvQO8BPcDKjXmnmQOWir2GJlAQLnPucxKGVrddune0GyMa7iS3hiGWl2iqFU_M5XnwLRrTwbbcnLHitam-8Pej7x8FoOg4BPHE6fK4I0TMHKxaiJYYGTPunlPq6Gc7zuClugFAxza2FlM2yC9OgUUEtA2gFKFkzn9ZIQIapyTXmW6HeKesfmo-l5W8u6EqcFA_YCkPRN_3BpPM249R_bbtrdCxxA3rOEW5bUi-dPn167TDPTiDTsrhbLd6KKSZjptdEPoCH-iuEb0f2AGKdoclqwbsF2nc1iaM28DwqZKaPPIibgjBaHP5SHRoPRTnnMHrUKUxuqOFkE3OKuSOkz6C9QeFmFskmT40lCAJIGjFVAIY7kbMfegjR9iTXfW7XG1XDKPSO8EYbWHjnUKpIYWzToYn_Gap8ekq285axI5nboKQzpbKCdGJLzSeoTiO2_GTDXDug_SKj6zHpdVVv1CTPjZva42wNk8HNFF1TP4aACJ498mjYxCtqOT8LBIhqNCLSW9qrrtM8VFTspBDoec1K4qociWxDKCefqRMwsmHvdGN1MrwynQyMqNImY9QTGWgx_JQ1_wRohUNpXPEoowLjOEr3YP80ZIEXHeVPBP5Lz9jYjOTj4LnRRTFBYqbjmoZW50OSere1Y0yhzt4bKmV1n3ItoGKMIxCKpj3vzEwm2muIbBZ1JJyIuXncyP5WGqh6LRElGy6BQ1SkPoYYYEVD1kPsJiZam2Tl2ngbdmMRf5061y4M8GAilWEs6WyBVLRzDkZLnc_9pDmEBl5f6dLGvOIH4ceNmqZeFL6u8DIT1zoU5ep8agX7Kt4AWJU_0r4VOYTJSa5N3c2e43jewSFNlsY6DxndCi0E08qiQYVse_UJ7nBF6gFNwyplxs5YJceL42okgf0aMM9EiUsPNgKae3ii5l0czpH1AtB8qPP9reEFDQtBty5XwX9yu8CEEjBbhwhR9-P9n5VZ5OrOtUuz80gbw1KiVGXC0gqnooWBSksP-PT8QtB48_dH-UYJnFQc8WM961bzHfGOVz6AupqyQR6LssPWz6K21cF8mFPuVFlhLFs-\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d04987ad64c1-91396919','','','2025-03-11 14:32:52','2025-03-11 14:32:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42532',0,'cd-form-entry','',0),(42533,0,'2025-03-11 14:33:34','2025-03-11 14:33:34','{\"firstname\":\"Brendan\",\"lastname\":\"Thompson\",\"email\":\"BrendanT2002@outlook.com\",\"contactnumber\":\"07368453002\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uHvUHzgt-c1bmqGSzpd8lFs&amp;gclid=CjwKCAjwvr--BhB5EiwAd5YbXoJRlSZjdTMY5bMvTrqNEAUvDiIjU1bNqb7cpboGEonxOSCRJVpA5xoCTcYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4hcpr3aoBLFy550QU5HX3JMQgPDSa2RY4AHoSL94HLzc4cBZ_cVndpM56Sua_0zaNBLQMT5l9AqCs55t90tehgVuuTlmy6LC0YdAmswNqVsfgd6WwwAs1cQRRFCXrPhAvHnXtuv3h2OJwzv-PWAc41z3BgOVPmphavSgruyLQGAXVo0Yxj4y3vZyCt_bI8g1uexSyggd_HMslY4WgDUvqG5wF8Sm-Kq5Eo41xwYCQ39uQsAtuawe7K-p_ly0u3Q7MqQ10W6xYkoyXbyUn2mb3Tc_Fz6YaP3XwX-cq7agwNPCnFCbOTiNIjpw4mILxSSjotHbAV51V8G6oTARME6MPRT95C1CaueqRx_UdhcxtMGsr761OpyWVjolMfURTiSvNIPvqhd44bEB8L0wEESgFiF4TzyCNUHQmytgdT1VzTi8Rp_zdXxHazHvbWOl_dwXPy_W1uBef2FOfpqTyxJbiYRQQS-JOLNJKJER6HXU_gGxNXqEvU2Co8KplI7GLWcDahDhMM9shlXhBQ249AaktMTRXDeEICDQS0PWY719vvl0xgXErDoUyWy8iyBX0V9NG55eraTZgDbIaKX26ytXaKiDdX3HRBZFzN_NFQq8SZTSgSW1LtC5WSV_4eMY712mtaGiLDWbQJ37Q8uN-nN6p1eJOzCzqwYYJheVBi4tZ5kA7gSs80C8Bm2j7TtA5MN7tCn-sb5nWsh3DBoynJiMUakvd0zQbWOBmetMM_WQGe2wYUX3tISA-ISlXtTwW89xv4QNlpqb5tPgd-INzrQ6CQj3LwnJ4SPA05owNUUyUoF5pkmMT9KaXZi-nv8mOTXQcr4mLtbB6O3KGptjkENSLuiuqCoXQTHPqpB2g90T2oKmX9ipDlaR2NddfSIOZtsXKyUHht9HwEGCPU39NFufH6HfgT8O3LGglmff4r_adPPCNBFPk43Tyx-WrpctnZogtG6JOOyYZMcrt_9dsWKKmFoeZaYBtIw8k972zzuIBaHyMvGkhfqmRXjeLas2td0evh4cntxvHC8P6iXOVPci3Ikr9XPnCjZ-8YljgaqQiE2MiRKQ5Nu3UiNZq006MaqztLHYhRQMuEw8RRRbGASLEx3jS9sF6y5yP_yD1L2NikZ7FloBbZOqWwjw7kRa8eRXSmBzNnNbKvDMkD-KcPF87dU3rod-iFP7tpyhNYN2lHtc0GDwYeJOsYHSeQqSqXVKho0dsSAAGIonOVUNrIbY5WAeKvPzEKP9EanFuaqtRuS4CCthgmr56kXHMqgfZ1sW1NB9x8kZmfZXrUs48zzukyLGvlQjwWvONvQ9UXk317r-6R1I9u0XvGJWYG2Gzq4zmk_FjPyejopFGEM4igABYABl1sDGAAkDd_1TNInSX75xhdQvcy0S9TDu0BzOwd9KF2BEKN-ND5XtXJHOZ47A-YqSfl3TbvTxw1xO0Juf21wjgTy9vPSePETauAhWcN5yFtybGBr9JiD54Ji_yI8mcp2pX0vrB2jFtL3ExU8o4FxIOXCnkUliB6CxKVVtEfkQtxV3rtTLRGV4O21j5-qslUMol37OYh3AkCjpDUDwoTY4SbiwhEQM9-8orx1U502eGAD6kha9rv-ij5tCAW7-WcVvzl_MJZGGh8NL4NJY834PKoJV2XDVuQIhHDnjzTYAGMx1bWspk--WgYHkoG81mb5I0kROF0-dSPSK2IZpvbZ83D8B7s6MPogSZKVu30kTtB-gILzXBRoR1o4qVToOQaqIoYYTF6R5wNzLAb7xX7Q6PO_Iimoh1ZZ0RVQPZwndPku1dws_tDyX3SGfOPpqwsvwpCfaLH1ALIlLbkRSG7PlYBa93KmCge35x4jAYbuDGTK4bdKrz3ki8R89r2xNs0y9O0SZ-fAtPBLszfQAjGSs8HdoleFr560TloI47VvDkBDsUXn77aXLa7MzqdHxBLdCOaecJ_eu1ONiHh5jXS0F0U9mNg8ljXpuzNnBaqTl52Ley75Txpn4T_d6ECyoPMzy39e3EjoAS3A2_GZA2b6gFNNJSWHL9EmhpHtb1qokojJMh6mK-XI_BbcjSOEsFz-WmdWG4kBRSG77dvmrbfMy3TpGI1eawID5kxHnns09iL8HadmnyXc7drRLGWkkpdj9KemG7_aY9VDGrXZbFrIE1f3hLFNzSVjFGKqp9MsKVsBpDTwNAcMLhIs-9IDS0Z6Far_FH6L_YZzovdX_MrvCI70lDy7pp_z-O-MLlhgyKUiNcyBvOzOd1GtpfnyzSWc6FwaZ_OF8_UtYvYFerwOSD1RTDHmZSwuDiIHtAU1RbV9nIVkhn3SoPXs_QmPJtr5yjRxLmLX4ZiMulLZ1DhWkDXFZfUXIcME7GwR4PC-iFT0-ly\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d049b5ad11e4-45595270','','','2025-03-11 14:33:34','2025-03-11 14:33:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42533',0,'cd-form-entry','',0),(42534,0,'2025-03-11 14:39:46','2025-03-11 14:39:46','{\"email\":\"BrendanT2002@outlook.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"KT187TB\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uHvUHzgt-c1bmqGSzpd8lFs&amp;gclid=CjwKCAjwvr--BhB5EiwAd5YbXoJRlSZjdTMY5bMvTrqNEAUvDiIjU1bNqb7cpboGEonxOSCRJVpA5xoCTcYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7kouN31z-9aJZjzbtbYrL4Iqbj35jXq8GXHbAM6l29Co0oU_CpsvQLLVu4ZI-rgEOLE3dEWnjG6MwaBkEPLrWzMPX_aXttcK9DQDVS8dij3nxdp5gVzUM9Aoch7ZnfuU1sgGDnCzQr4T_7rw8r_Z80GlGCIJM1fYPJ3JAPFLy8ptQ6EXLiUFNaky_-SMmizAEl7ib0oIgaueTVI8lOO6kTSCF4-vTrwP34ALqVr943M_sgu-6PqVAaOtYgW89DNp_p-cF9Zj1TdTrlpZA_NSgh14PNPBWnPosN1my-sJclyRqMwHlhIbgiMIzN3dttEdygZMZSfFBs7HAo8KWuwrMi9PMZzKPpBwwlIld_8KSKi7LRHQNqkbIWfdtkcUrXm1z-CmMo0Tq99Zkyb7dgsemykOEkrLL-O_hvG7tZ52rcOGvFXIE68-F5pT19xf8xVgb49SB59a5G0F1GolyyRHIIV5bHPrRnd41AvE2FPgHkK0mnKdGZzCRdD9YqwEL52KQmsnJGYOrycl8Ce6RTUxwMXC_bgljQ4lbVUeP6Pv0Qqs44spRkdtSosYWDNLtCK6wZerMBvTKWGPUsoOWRccZ1vaTGWreNyByMk_tvciW4vR4Qcej3bCPuqom7D77v0hY9cLhqzcqWoLSzkrLPkduwtNpnabXaKv1tub1k7SkOxxrh14BTLkZ8cEVVlYrCirtplypE1NXW8ZqI0FkNCGW8VHkscX8pUrU62Kfy4MLtYiFvxERE-jOnIymLJ3tWdMpLHRPtED7hHVWicCUBCurT88cvJpkZLg5vz7zwjn3tIZA8Hwnh4L-oXF0xuemJWT2642eiYe2sMbGUNq71birnqdMnSe8YqAhCVSFAUwrCAo0FGdPWxKD5L7N_TKUEpSsnb744KQZfUcG9zDdls6nzapSSnIfR9d1GLWbzqAJeE91T6cfd1qwBp5ivTn2eFJAZNlNjps7-Z5RadXHG-DMz6VgX19IW6Akyi-66ZFFFlEZr7FUOHAizIEbS6KUMJLSWQrSNU1vT5x87zrQjKJ8MyMn2g9vIoCkS5OIUHtGQEoeR_RQkdZ1vw-wtmZNNqi7EcxlP_bch9m3tpnGj63u6PBEGNP8tUm8eeSADt7fVebBu4bQiPa_qcX-EEvp5LuDRdsf-8wvotBARuVdGlpacYr3PhFGjy1pqjRGx8HoFRyPMMdIcuuAtNRJppd-JMx_WpeprtxefhCeDgWG0tQKQNpW1UMgrD1x_x3YbVkXYRLzbsN1XErwnFe0HJtZ_WKYXdP2U0wvbgd24HC7JuTSFr56cnvYOBao6KeQAF8VJ7JUhXn6OHdoYwProBWAx_dngHKe9LguTlAGwDhxNsEC5cAdbX7bAmiY6v2jJwn58-Gje42zuIR6jKj_GUlR0YGWfqBKMQhfw-dInSkeybkXCG4GggmFkP6FPPZhc7te9vnqf1Xi970kD5VrcRElfCV9L3EUP4gwHsCcbV1QO7ccwhN06PV2a3l45eYMLbeFEqzhs2VQ6vJSR_LbAQfzdIAXSW_-eKSfnIoiu-GxAHiTZtSloWCqiTXwsiSQtzqSuQlO61Er7_IvXct9-LjyH01l8tmCvopTBY2Nxz6d7Mp-5SNk_WP45Yd0FfsHajN-RxlqFwZD7dGI3bokfgeOCfQhRAzveXrFl6Do9AQPtjWB7MKD_Z6MgIL-0NPB9ZLBJojYuIGkfYtcmG3ZJFOS-kCMzYwgo1BKDqGaeKygFjlHm1s0wnMmltI9UXpwHf5BuyJQqbkqzmowKxTuox52b8S_2LXlkXrst-oxeszEdP3RVKHczH6qsRBPm4z5xi8us_z-Vqjl0wL6d4Ov28XPcnEg71Hjnzz9I_1a_7osPwVDTn2A0FcxR6eMdWmVZGSC7EbG8eopGKrRjRtn5GlQJiazmRzMjnXPYDxzQM0Rql8bLHfuFD3UkGS2YnzDh_bA4ryktxD5RhtyVBVv2jvZY8fKiAwocQasbiJOwXETTnPPtk07NNXRKt2rSExAs8uAZ7cTVf_CTo8xKJR78QGK5L1Nxw60cuoOlbPA5d22u8VhmJ2aAa-rwhHh0S_FvBRCkeIy5f9mV_ZTQhWjItTEUDhAR0x0-nR6Ob6r2o1ukxDD6l62epdMhkM90apNR2jZQJAd4FeNs9w-qW95edw0k7NWcxk78NW8fTC2wppnj8wm6m8s-q5f2LKQvw47Tn7asUFqBuZFbzUg_uXSBVAahnqOOC-26yRUe0VWlUNaectOdn1qci25nuHgmKu8MpLWX2Ibi0tsS55e2RxjKCZ6CbszzJbpzrtvvO49V8vpzmdY69oIDYRlQTTDMfhEH80DQcTr-NOBi-N4ZOeQ5nJLRzxNUiZE8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d04b1b139e90-56399091','','','2025-03-11 14:39:46','2025-03-11 14:39:46','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42534',0,'cd-form-entry','',0),(42535,0,'2025-03-11 14:45:56','0000-00-00 00:00:00','{\"firstname\":\"Jamie\",\"lastname\":\"Wood\",\"email\":\"jamiewoodpt@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uHvUHzgt-c1bmqGSzpd8lFs&amp;gclid=CjwKCAjwvr--BhB5EiwAd5YbXsWD5dhkzQ965tn3tby7Gf2_wWU6YeSrjtGH8M8HOd6-UCGtpnF_ZhoCbt8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7l1FLPKQfRGf7840zQbB9b4gLDzeAXmAwqQKcNZx-iBp0TRg60kAIPopIovxfrwoMTZMnOe55GT61K0ZmcArYJXO0Q4yPare5uilvg3_xGlEEqGxvt3qM67G4wv2Jo5xFkDl2hqILJUDLSpF4wT83qFJ3xYUjv3E0bhXrb-65S0M76UdJR_FFWffma6RTCn4itU-HF9s_dHLa7ud2t6O2OQGeBOjhpvJvkyNJfecxATtyVEWg0bZpDjQM0uRrBPXL9gXL1T4oQP33joYCv_VZ_MNp5gsjLVgrGrz-3vfiWQO6LErCI9gNAdUnKV8Q2FkkFAZUfUqP3hSwjnfrRhnBa2vGXMpvqUDlbN4suqWqFfqK0WEcsyNgVBL2fKIqukm6-nd5E-abUbO8LLoGZLGTFj3e9rbXu0rsdBTccgwUQWG0Oxn1EIuqYU6z1GHuV8yBC_yBTooBQTcBTWdoN53qR_ar69XKYMXZVJ97dT9o50STDdDWyg8yVaqeztdN7_wF-pAhhU0MN3Y-RZ8nLuZV32wFr_1Gj7Qdc_xXaPGqXna3TXJiigIFOQ0YpX7ol4nMyCwtPi2eC26kfz1p9m7HT5W2nYOFz4qVveWDGmmbv-ZkGtw3CRtlKHocHX7BQ7ILRgxmtEKokPBArLoDoZHkfNfyrbUmFrZIiF08ewP3DCGwqJwQrGuMWz9fUlovU4hQAGkwApPTkq6ROazp3qC4QvGWMnalu38E0GHy2Vtkp_xfC8F7o8vgd033jUdbVqjty7qXqZ4ZUrE-6HB8Wz_mwgWSmQYZxbUMRS4uOPkVCmv_dT3eNyT803ch6NQhu5dgEcIKKxFGBQlAk98PeOe29RZlAG-FGdzckPNxqCksxlZGs80dYYBM3qKtB2t1gLt7hLgYIa3ZpEmCkOgv4EPcKBg1uTQmc_kkC7Z62gcgrGiodw5KWjbFrt03A55EwxAuShzgm1KvayupPqOokKkKURTUjRrsOBIEb9yeiRA2G8TIlnUBnd6nWHtmLdw9IAElGsxF02RgpNL_u1ZdUk5CjXSRcC9LhKO73q0omjCJ5x9AymCcKvEh6AKBb2OTf15ZlssMn9GdRY-WQlIpbbAvLUKcpFBMt0G_tsoDGHKs8EcTmIPNGHY9_ROrLQf4B56cjfzdoFcYcIl3zCXj1Z4EuljHLRM4XKzWkH5-vcEIuAkvJuwjWprri9GRnmb7O4fH5yjjydg2c5cT1u0uceN2UKaKl5NfOwn-qXCuqqq3kg528x7NFF0f8f3Qr2Ye5e0jOKEhKjIYt_z-SKygTUBR1ailWt1kLYS-_H3Oz8jdm7wE7rGqHnoe4WvO7CM2hXID37wQxbOcH-KZoS1gr_H6RgWwtr0QIgSlTy2PWRTSRBrD7dTmQTeKIGGKhmsJi7sdaipWhs8QONoxskHr8kzH00jP42W4ALlgufAIN1IuaXekMrZfoD-ZyiOlTMEvOYGC8QNCbFP71221wTrBN1VPoAcnqp-MihZhguqSJ-2onPE1DyMGfw-MbldNrHhEo8Ry0ZJQGbgwTT1P5R2U_yqRO8P-iBC0V0_3OdJVA0IbvOkuioUL8ddCWMNscbNsVWCObNMfCHWxLIjXgUUdc1pXo12dhZjkD1_2Cxs2vdTGFlQNCQGG0pwMUmraoJqC-jw_zOlJbGkEDCXB2yMU70MEK1Ts3b2n00Uqeqc3KoXjvglT3UuK_0LVOtvT-Lq635xk4dHSU9O9FwqUaDMcewQqBMV_oGsrK5pBHGurIy_xOsUXh_ceM7uRFHxDr9IF657MbJY3ArgzC30_YJy7VsGUNcK7zTbxRr6N5KzMG4bIBTQZncFmAv080eVbIe_vVGZbkODD64J8zRR56_w6vTOTKSR0u1kYmbvW6AGcpUFCMDc_YlkLttTROpKdVZs-5yaQQoZd-qDztjY06bglO4nD23oNwP5EYI7LichgS6rx0Q6IgtWfuhs79Zy9xLl3X1_Hjrmuem-waiFeZMmifUGQ0hHNSJmeNtlZBA7mT938HnglnriG73tAm9NIeCosCjZqmPbE_qVaKvMb-Fv4uxaGJBBHvurcLcZjDbx2NBbvc80ERTq3CKp8YPSq3GJs-feMpGiL-8QGsLsJNFHp5FplEac8UWA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d04ca4a70c03-59482319','','','2025-03-11 14:45:56','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42535',0,'cd-form-entry','',0),(42536,17,'2025-03-11 14:53:38','2025-03-11 14:53:38','','International Training & Education','','publish','closed','closed','','international-training-education','','','2025-05-07 14:14:58','2025-05-07 14:14:58','',0,'https://biomechanicseducation.com/?page_id=42536',0,'page','',0),(42537,17,'2025-03-11 15:12:59','2025-03-11 15:12:59','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-11 15:12:59','2025-03-11 15:12:59','',42536,'https://biomechanicseducation.com/?p=42537',0,'revision','',0),(42538,17,'2025-03-11 15:14:34','2025-03-11 15:14:34','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-11 15:14:34','2025-03-11 15:14:34','',42536,'https://biomechanicseducation.com/?p=42538',0,'revision','',0),(42539,17,'2025-03-11 15:15:17','2025-03-11 15:15:17','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-11 15:15:17','2025-03-11 15:15:17','',42536,'https://biomechanicseducation.com/?p=42539',0,'revision','',0),(42540,17,'2025-03-11 15:23:57','2025-03-11 15:23:57','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-11 15:23:57','2025-03-11 15:23:57','',42536,'https://biomechanicseducation.com/?p=42540',0,'revision','',0),(42541,17,'2025-03-11 15:35:19','2025-03-11 15:35:19','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-11 15:35:19','2025-03-11 15:35:19','',42536,'https://biomechanicseducation.com/?p=42541',0,'revision','',0),(42542,0,'2025-03-11 15:36:12','0000-00-00 00:00:00','{\"firstname\":\"Tharuniya\",\"lastname\":\"Narayanasamy\",\"email\":\"tharuniyanarayanasamy@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/iba-membership/\",\"recaptcha_token\":\"03AFcWeA4ud263LRdMEfud8SWu5ieXSSJuJf8pY7vjsXZRLGVO1xTxaax06k9lnnJoptknzLozU9COrnzhDqQS-UshVm5TjYb5QvRBt_hwDjGfuXyZHh_BVZI6Q1AgAAt7E-eKaEk33Lv36rP-66UR57_kfuxiwzSyTh8qz6IHvgkYrgJwzGRXO-JcRJa8a7q0McC6FK0KznMP0nDyD8hub6aP9p2XmgALj4RdnQvMzx7xHqDfklzqEpJoQ8_8zaAju9Cv9BGV0sMTRnCSqrlNtb54GjHcU5Hemh20EPaQSao-TOQGMkQTWEbne6TKuANIXBgpp-CEwIjCvKRiMF8cS4FCD-yiQ_TWBYHa9cWK8lvlfI6Xf1lyQhN73714YmW0bXpJjTpN55oVAQLMnHWrn0zrhkkscNhtYOFHzoq8GHe2X2hWrA5DoT2bSkxPwp5BTWKu_GKJi6I_uTPCQIV6ArHgNg3b3P20EzDqoHotSO3o4JgiqZ1d2Ccs3kYJrtbdJwyekL2Iswa6EK40IB-hK4ejrsxfW4F04gwcZJ8DyFrXN7w8UCfBuxhvYRKmv13Wm7PWNCRzni2tgdUQEo-oJnxlXwr6X5L0Kgi157C4hic3bfSUZHXpyunC0XIqAb10zvfmmvx0Pc-HoZMd6yoXyXpkLykTPhHw2sv2cvs9DR_vG-AL7F6LsjGGF4m8wx3MteL1JC5xOMDm78EU0dt79j-wvn5OkSQP84vsKM005iCOGSsPdybKYKIE9rkvhZ8tW4U4tapdYIN2KwKLKS-OdG4sLwjvIsQnMBH918FKCcWOQLLMwsvMLVA__G1NbDrpAXDl4Nl8XBRtgSyQZOZJFa6e5qgL1HdmuyHPpUvMMtr9tH-Yue1UaFZR2hAyHUKemBEsN-nsZSCLhz91kZIXpJSzHiDmo7cThDbYl14g3Tsoy0azr__Zr1R6vNm0PoLVG31dwhId7aG34oc1kuKXR3rrIGhC2FS0ThI8FQYMi8tFEzaaszfwDYhlx1aW1Ilocl8b0sG63TRd-TXdINflq2ne220pL8jmMzp5t_Y1Jx49HoYtDWW0zckJwmZirk9yNljQ4VvfI6i0ihz3XN9EsIBiD1hLLq5m6jBbjxZs_Qkgos_rnJkmDN_q9RPKfbCmJRFPG_uQv3CDsZshKwgJUZIwCOukNHKErv5ksw4982NsUKD0hE9IgITKWri7EWXEuBgN953CIsEGnYt5-4C6e03eztP75vnTtoyXkfdzmr1GfuLtX_ukzXOhe7ElNXnxZoHNvSLelxS_mVV0R5aIAZSB0-FnWYdFM_91z2rcH6ml5XfoWspRihR8KlmG6gY83RAwdlBYa66CRFLOWTjjz257UD5LibKvKSyu1JrQapEjTSxzxGFLGUO3wuxSvcUa25PwPNSXv8fAA1r29HJ5KL000dsOk-1WE974sKkFHNRPC2Fk_FXTwIM2gDiMa09CRmQIsvSJwk9BNdAZdqGaFrr4LTa51J4PV-acM5aWyYMwHvLEnwnaqTyoh5GJJq0sjjUx2E269-2kW4cwydG0omikAQJ9m0NXjL6RFfY9Kgl2t8fF-bc7yuYV82Z3FW_fx1eIVTmvgatS1v39TPgnvT_o2oxPshhhTcbJhf82aenmZIGuYrS22NFfcR7QAgSWtWVfhWvnW9OqY7wf2McERUbef_04ZcIM93LqpdPpJuXKsV_ca6-pOz55ZlOYBmfsvXFKaswp6DFC2DV__RjrvvT-WRr187beB4WqmLIN7fKHeGnXuVTWYB4NOeBLFRC9mzu27p8d7le-DzLVV13iqP1E5weLQnbIi1vlyZutN_dCMuuf4_Vac4qUw_CB_-hBzFGpKubsP1dTuBdlCiguxioLF2UXnnc5LBn3C664Yow40okGjv6iGfl1reyA1FeXx3RWjq_bVlRWsS7b6K6onLrZ5eQ1vcHNdKOhY908tCS6V7geJmVHm1rS0qaKUqRXbbyWjpzxzYAINVfFemvGB3rhL2cnZvLyTEHT2WBupFl49xpoMJn1DMM\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d0586cb746e6-26010816','','','2025-03-11 15:36:12','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42542',0,'cd-form-entry','',0),(42543,17,'2025-03-11 15:44:27','2025-03-11 15:44:27','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-11 15:44:27','2025-03-11 15:44:27','',42536,'https://biomechanicseducation.com/?p=42543',0,'revision','',0),(42544,17,'2025-03-11 15:50:07','2025-03-11 15:50:07','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-11 15:50:07','2025-03-11 15:50:07','',42536,'https://biomechanicseducation.com/?p=42544',0,'revision','',0),(42545,17,'2025-03-11 15:52:27','2025-03-11 15:52:27','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-11 15:52:27','2025-03-11 15:52:27','',42536,'https://biomechanicseducation.com/?p=42545',0,'revision','',0),(42546,17,'2025-03-11 15:53:12','2025-03-11 15:53:12','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-11 15:53:12','2025-03-11 15:53:12','',42536,'https://biomechanicseducation.com/?p=42546',0,'revision','',0),(42547,17,'2025-03-11 15:56:41','2025-03-11 15:56:41','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-11 15:56:41','2025-03-11 15:56:41','',42536,'https://biomechanicseducation.com/?p=42547',0,'revision','',0),(42548,0,'2025-03-11 16:41:24','2025-03-11 16:41:24','{\"firstname\":\"Catherine\",\"lastname\":\"Bhopal\",\"email\":\"mcginleycatherine@yahoo.co.uk\",\"contactnumber\":\"07503951672\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA43Cc1DgXwi4TmKjeEGHtly2IO1ZTBvNAzFpKsRRFo-o2ReqT3KWcuOPaI04Nf8vkY84pFQfSoN5FvBs4RWVFFcBnC38qxc2f8WY5UDwd01-jhWL8N15PMuMc1E3nDgwYZFwhISiwyexsc-cs5oJEjgdqFfn2TfROC7rYOVav6lEADvbgxP_K3vK-qDhvHXgIW7npECAcjA-rb2cERggZu2TN7aI4MAUsoXiLJ5rO-1Apop9SIQ1wnHOVV2wcZs8dOZT4zHjpB2Sam3gDu5KRiqtk_PtJgctBC1_Fw8gWqK6-KHcSwvZbtSu7ZWPW8fL4vW6GD76ZwRqJTYDM3hGBX6ck6RqecMUf5tMXkAAH8yVVvHFZwVSrwun5V5pEFf1r28rMXr7S9uimd9vxbMf0ewqkXJLl_k42uamOVGhCtXUalDf7kK68iXa_RZ0hEPKVqr9SFRz3lD-2E_g9RyHXzEVHoBtt0V6GyJWIwyBgDOCMl8udzTgkBEc_YEyCJt7k4aUlOuqXmw3i0NuO6EXj51QDsFrhI7j6yH05-UbFljne4eeip8WKsS9Dv93el8DfeRdN5DSfESR9dUXg7yev-Yhn8bbG2duaPgedPlZuRXQ-hGAMk4buQklyJ4HEkfRX_LkO50bOgrBV-38365NqlMZxLjz4jslrRnRkxON-TVxYHmYa6N_hYkRGxkS7ZILiEP2g0xEIdaRwW4AlniN71IUC01ndtCMbzhBDwSdcT50RAvV05K3RlAdPB6rXxOy-vbuPh7obFdVscj0sL8se2L4hxCoLf8pKilfP1xKSrkvh_nrH840vr8b1ym9NZZTB7ydq4_ctz7l3uh9ap9xJaJvXB5LKN_QER316zHTLXt9ofBVrXqZDWvxzLeCg53QQ0q9IseRPu2keKOw56E7Rfzq5oWJsULgIghlVStkNdljBKzgZCVezXRJXnA1NUS9PT66-Wpr_eOOgVMCyY-B7cWycHHKWbnjfBKbRDJZmTgkKwRHQhREuag1s0TpwBXvySzFlSNo2zdj_tXsBlAQLcjCMaIsKFELwzm5LSamNGZFbPlbu3DPcg0UTSLmsgoH325lUjv1a7NQz0DAK9Lzirq_uFlkuEVR6PHTvnHCqDsDaraDzc3xzepy5S-5Ntw4dVOT7RP9WO-YHUAGGFYeuYO9qXlvhCaHjpEYvktUcFv6JJG9oxkVJ0SrEagClsW1FTTVIPpa8fl9hFA_PF1kKc2xY9Yjx6-_XCHoVd3cOOvAs19D2KhPuOf0r-xNzLMeUWwfJup_Dizl-TLo8pJVig5rUzVVrUpZ92Xe51h9SQe2lm-Gy_MygNjMx6q8z8U1HGbJXiv-XSV3XtZ4XAgIH_WhvxtsJxFSAW_SMQucb6yXWoAq1RVizQlPxCNM1ipfNtpxai13146dImk2E81rsDHOt7Hz95mQaSidL6oLIpIjSY_4fzJvawB5IpIDTX7hFniaCDzy6O1-3AIfmGCkJasHxUHs9v4PQL8z_e9bFQH_DPCaBOGk29Y-SnAsQou-HMssOVWWtchFiBtJYZPbR_YVQgOFIVniLmeLlybQocU7xgLS1HM6UP53EU57rthagSLT48S4P8EiAXvAiKK5TjpgOe5Cw2TM_RvriQ5KKeSzbr3D6UCDRvemVHehJEdIrqMmrggRQ1WmqW1F2WosqrGn4V91h7g1B3jFh8gLSGvAwsEwg2O28v5bfnfe7624zeMvu3zuoSR8lcuFenYuZ7Wpnpu3WaUf-jJ0gSmn_FqssbM8KIZ72Wj-bUEwmYU9MFMDcD7-uvxjJIGDF4LUEZcPVnHkA5wBM98pSsAhFOXyolm8DnukFsYDB2dKZSUR8S89UD7lkGVKu0zh3smNzELmZ4qqExxfKB-vrJ7iHy-WBHUXeBeyq3UzbEwn558Xy8WTl6r-hWp-cKdbMTZCkbYrhxneHxBXS7RC-d2Qn3G6PrRX6ngc5LlBwgtaa5mY-2kFwav0DKv_u7__-Fy2ZGLyM7UitAxhXvLdX0PDqOer-mTTY9JaPSmQhvglTU9zxb3twqGBkPVqC8lYqKZcPt5b6Hmo9hLtyK7AXp66Ak6yCWtEcp-o1ro7Ze8QAU_G_ig7s6JMZe9kLjboBJedt55ODYUY16QjsjnjlqipON7WFguRfM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d06799503034-81605451','','','2025-03-11 16:41:24','2025-03-11 16:41:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42548',0,'cd-form-entry','',0),(42549,0,'2025-03-12 10:11:04','2025-03-12 10:11:04','{\"firstname\":\"Fi\",\"lastname\":\"Phillips\",\"email\":\"fmmbrown@gmail.com\",\"contactnumber\":\"07824366241\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-personal-trainers/\",\"recaptcha_token\":\"03AFcWeA7lp4bjFKHHmy6yv1XuziWlN6m6R92ftyIsyDjsquItm8FUG55yn15ywgml4IPvVKTgLO2RNRb0eiEsvviO5Epy5Ar5Mqeq8u1_qPi1Q3rJf3RL-IZVYA-ME2yuiDuCIoikQm5JFfG8ioKcIGHY5Uw7ZBfIAT2pygnN_nhKuAxY-7a2G5ME1PX26iXk2l2-g8CWszRGnjkicru8rcEQzkayp9srZZxgK8jjYENIBvKEaxvOh_mJyH1XlhzjUAi83y0wkVjK2dcSvwDU8yxwkTFY1rvQMgsI7gUbgrZgF3eJ0DaQGfdQm8mxwi1pc6QXZAIIt8yHvDM9ZraoWztba2jYxg8lB1zhRgZzQ_ZfHFFJLWPWL0b8SpnFwmf2aBRB_4ojW4rU3zWqFK0FSmgc4jAmuaDIOcNSXV_V-19y_BPEnPZ_lqlH8JatNaI0rC3QePU863nJ4WoQ7eIibFk8PqXQkbkUL46pKjGXx0QP4fDElHIKLoAaFqkZY080-A9IwLMlBzO0DvP94z66kiI_O6tMLdYx0SY3R540TMv7UMA_WQ63bNGGEtrJs3JOSYjTUSYQKs7JiAQzN4hAWd_e2ozowfjJJ5LmT6Kh-4dhjQ5G_nu7zxoFC6P2cGMRRoXIpSASkqEzfu_-wGAtZHs5lbqNOhAbG6JEDU1IjKC5UVrwkpbNx6syq2s76Uu_xKrYJBNaKq2XA3PXeme4sgQ87Lw25nhtLncRhgACB0n-A3BPNez7OsaCWmZdY0dP0BBCLQMRjIUiFQdoSKJrSrHJijzOSmagF2Uylnndio-jr0z5k1Ya9jATolgYv5gzgg1--Llq-x-5SbSBpw9uqCTmidRjvI4hkDzoDX9pmkJTLmAK9MxKDOsHaCepxQAjJM9T-EifRlxuIw_hGBpDsGmc8V4j3vsto6hCJyWh-0DQC5JezpOs7UELREVAuLzKuXsirOK0nX-mxJCzbfpIEQDwzSgVSy7DS6Wdu73PYcOEAUjpK9EgfU3LF3rk1zywcocxOAz1tuoqQomaUB-DCJioRpI0bquJgZVrW2hILNwjHrjZp1T0H4yiliiA5coQrPv3fh2jTO1MZJHvkUHAkK8nH4GKn0v6DHFnJkAlxkDBuiq1shitjMyzGUPLF2J5hRXXlFkqCAQbIzhT3zToe_u_AFnIoax76lRkkcZy2CAGbBDik8dks3LSvaTpUElXWAmkGvkJsqqaOhARXco-kXspeiEoS4vtLVqhbOAJMazf2K_WbwY-T15M2w27813NKSjmn1RErAbDRujTJ_r-x5-d1Jr4JF5Kv4WtRuaQOiErH4ymp4Xnuur59JMJX2PNzDDTxwZUnX_b7_vPMwqeK8FLi-uqjwrf1QNq99IfDANwx0ntf7jWMpgWvTAB-p3gDms5xfkUSxXotRDuqOuHyC_-CF-HxjbimFJepVg_VlCNWwnSSCi1P_WHrdRJNUeQK_-EZkrwQa9goM9uVOCKrCaGvxcyJRVVPkk45RUoQWv-1LXoL5bb_9xBFz_6YFvJRuRSlXDJ67p3sZLkSyzHmB7HS0gJ64yRdkPD8rG5FwZvxaqdp2qn768fBOY5YVQ9PxgxQVeKTXPPbeCDkz17K9ZJ90PT8agx4gG26f5SLJOvnelnwn5dQ3gJNpExKtGTG3moOcIW4eEHmXcMjCf_QNzpC17_ZKOuIAr4OkZH7UjqwgAnEXruVmf--ULmUidd0HyAZBY7Na3VMB5VI8AP2j77fBL1gUH3Nq_Kul3zFIGD8IpwWys8bZsRQb7MaDXPF7N6dGt-fgT8nTs71ZYJe5z59_N0-Cwc7n6bLxc_H_0o6WXYJDgK9V-l3142KC6toi6IavqPtOZUFXt8OcsFaZH-VO9mgK340KOML-JxA3A6ffMnC1i8rGHAKlLftlrx110eCzGD0wcQiWlGPi1ItTErAmlTH61m06LbiZvqbCsiGAAlOpUmT1Yn2Y3k8f_TuayUKCT9AGgc-sTLEgRkCh0lPle8Xl_n5Ehsp_gXzJE1hN13ODkkLIVyPP8HCsG0-zVZqyVn7yO0Cy9fGuA2K-UJz4J1_zStxRr_2kR8AtCl582ySdOHjNIVCuKwbzxBbFrPjQd0ycoZ8P9x4nKuNtdT3-eR3maOCYokACQfto7z-_Vd5o7F4VI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d15da0dd7689-09264722','','','2025-03-12 10:11:04','2025-03-12 10:11:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42549',0,'cd-form-entry','',0),(42550,0,'2025-03-12 10:12:00','2025-03-12 10:12:00','{\"email\":\"fmmbrown@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"PE8 5ee\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-personal-trainers/\",\"recaptcha_token\":\"03AFcWeA6ELBkasFtIN9G68oLL1_945SNXnB_yCQiVMSYjyLAulARmoFN9YTESJf9cHhroK00aixxNl8Pd0AzxNK0b0VLw3f09hYfZkCaJu501dGBGGHEHyArWc-xPAcM5xSTUaamSWhSiKwnIqJada_L4n-wgveS6MvPB6JxH6ZpAR2z3rEM8ElzjmO8xpBd_cB13A-Mu_BOF5h7iMjnUwNZqcDkl2QeWk-6_C-eQJejl7hZ-DKODK_-VDLbazI3dGxiQzamRrpgjr9IO9hMUen58PyBTxYfisOtAJ0g0Ho_FOHWaw2_H8UFgqIrX2vte6FrtBaoE40ekiLQp5YtFQUUFg8yr13jJWp4oDlOyAv1hTI6zpjnAVhJkiYRUPYnySu3lanUXrqqPDTzqkK7abPtREDVeEr2dcG-RLwS-spHAjHSmhNHOGOX62YnvUvV5oPRpZpcH1RbY0sjpIvHtdH6MM5aW2ZAL2eubvBnUdeDzw_v5yBNx0Zv0We4e4kSY-7RhUgvzvvx1s2F5dJV1EPmzXjEYiKuGKmhUHqq2nC4jTaR3R5aohahbyiNq-_vZtCblloxoY9AJk8ni2jxazqJ5KEJXuiJfgvr5ksZSXSBLtuacaCRHrySDQ_x-7LdzPPh17sr3eUSneqIGqWFKuFUV6W0P-OnxsoayX5HajHB3NJzD2Fzag_y8Zzf-HstkNtG7fL6B5FeMYl9Kwb2_IUW9k91IP6E8a3JNk6zEp6aC2wDaQq-6xpKgjvZ_ZuMasiJCAiAvfwOvX5VNf9RoyKjNsY2Cb-buQkObrCPdsfQzQIktQ95aptWpdqA0h9c3B2Z5HVQB-OTKeoIwCsn5CZFCq7aU4zGnq_LJdQQRKoumX5lQ1bIgANa8WhRO25CG6gYc-7E5SyRqoILCjLKBaq0_Y20VdkAeFyaSvQij-O4yCRQp7d-7Vz6YMskUcCgP0Alfm9da6NaiR-vThF19Yws0GmVMyZxHU4-2RYC94I_D397_z2MxRmu3fJDQaf3BjuW4qok5YHpUDVzaXWx6hvW0zNjs17TvL5dm40TQpIhcAGLfFiUffatmLdTWrU8UmEdnkUwbUAOaz7EHXpF9YIV8hOXFKzRDQDJtHak4_cmPYWNBuaPFIkSaI_L2HByPtC7puXuQm97OxK5D8V76IEljZRZxFYEf3GVTuJTr2urkevLvsrUmCiORtlBMBMV3CTKdPSM4o4QHi0FN3-A674JeCzZRcAQCrOCIxpeYrG3zmN9BRBhA9hhqr0qyWAAwx1PGnQtqWlK-jWaDcSoNMsAuiJTmMxiO3Bk_KVHGeAWmWHHtlCqJ31Hbq2U-we-0KFcJ8coimq2u16Q4F5OfZfm23eKqnozzlWmKRYfLTuj1rS9zvceOE8nCRZsox_SXjZyGVUUYsz7w7sgmYYjv_RVcsSFJh1wItDdLxRZJYavHF7dfzw5WN37HibllH_ynF-zrUkzHIRYAsDrME4EDKMoXevjkE5GP_mcvTNyBG1mdn_UUFXJAbM3iLX7Phgba8sNO43bdNmTFUUXqa9yeSCyL-rfdRkOOE9_PKPvDdL4y6E2Y9njJzM8balq4Hfy3eqrMPeuJLDs07L6By-eoNW2Wmb25h7K-VlfVnTYzRrmjy4UG7QLZAdi_DRPHX7kTJxiuY9BfaoaEUXjmDkj6uF_9lsM7QfRYbAHuBlw7Y72_vH8tj-zuom6XBzaOkltuFlshmcXAL_NxUWGRIcrwFYe1Gk_4xNhgcPPcRQRxU7rRPCOyTQpsxKUvme2Sb3qy1_Piw0igYi2nk3YEFiuyPF3MjGxLOFrn08xtuCMPNFiCmQOgu188ThfFAqe8jfn8lyD7vhUwMgF0BOIDn3i-XP-cGoC0HmNFc5cqTycUrM6MzGaPpsye3I6xmaT5l7jDD9wCIpJ7VxFiO0BLCtzcDGWR_rhfOKTBHkJ9napdVf1PDdrVrKwEXexTQ6OnfK4CSPKKa93jKrISn79zzcXmjCXSIFmVJBCaf1N_pzBl74K0-7A15csZ8hZZxnUM9J1V29ILrA5lYsu9j6x450M33ej7DXq3oN29a_FcbXHh3ZmgySoAUR0_5u99TeZj3fc5_yqW4m7tUrWeLjNN4Ea7juFQhFlGhNg_FUYrL20V3O_3cURFoV0NtnE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d15dda7ff612-36859377','','','2025-03-12 10:12:00','2025-03-12 10:12:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42550',0,'cd-form-entry','',0),(42551,0,'2025-03-12 11:13:14','2025-03-12 11:13:14','{\"firstname\":\"Adnan\",\"lastname\":\"Rasool\",\"email\":\"rasooladnan66@gmail.com\",\"contactnumber\":\"+923006604635\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5GGNC8VW2Ly6otiPXuZ-_SmK2vGZaLdB2zXcdeDdilF1vYeMS86k6SAncAy5BMPPjpbiCqzVWoZe7XX9knWrhTyC0YJhC1DLGjDR86LqEF6dSRV9zj1K6pqte1tQwQy-KE1AzHGEjHrhQH9BY-MG2L5zzxl4iEX_xCjyLVng9hVoH9JzemQrLeWz4MkmjMy4oGdkFyjsNTKgMfkCPyVd7AyF1T1B4TBzBYp36ZbMsEBLNxJsTGLGAs9JQeEPjl8hEHyvHw_yywgPMvFi4k7SA6wj7grELBcCvg2DBGW1rFW4BSs9WfuBywhtoKJ_SlUTl3heftEuKBviU9e9qm94_UXDioRFNRQMaTvcPDwnHTSD0pNrpetmc6hMmn3ndXCVkAuqALJEmE2qQeq0vpwAAG_cgpKY9RolwW3iD3NS9p37xX9thNXd4WKWblP-UAhkSqzM6kyhW0KN54WOzb5geWoR4PESerYx8z2o5DgqV-YysLJsQOvkqxKmyX5cLJ7xZF_sNP8swwnymlfvK-75AG9Wh3HClgpN4N5l0b4IysgWVyD1MreuxJNDZDdT85YSX1YKGLMkbo2bOoMwkPr-QHoi3lX842gifGi36Xhnl2uJ6nM65WZdITlGcA4hFExX3pLeBOrf5dYhjaxQl7mW1D3heb6L21iX3oIkgEvGNQSH9t6iYonIK8OPnDSqklgiq5ARqyaLPuh4aEvGha13OZzsxkWfRfLDHuvXgeA0lwbx-w1kDQDJOT9CUvMziSduvi_3N8za_utLX90AsHFxrPRSsamz7KiXdVSAveJkQ4moRYDO9yKvvt1YKT6wR7AY2rUEn4pB87p1-QSalpP7oJfzeHvCDH-DZLtRGhh65ofUorfGzAQhDUrDeRItLznkxRnV8h6GFabMADMaat-IiRcXYR8rk8ERNX7fCw9DUjEeKS2IWIcDsWDs4WUQx2Zg3tPt3hLjdRrkhJms_uFGV2aApL3RMpZg9SBOkHbrvt8jRbqSs1oX-CqwuE3Z39GLXQ8quM7J6V8S1Ebv1QFwCcA3S5Vcr0xXVMV3y3W3k9SSW2_3s94fxPvZZ6eQ3bu3KxMLRUE6f_v5SLcYdbnCIWr8GI5behcOQKT3TLGY4l9Rrbh2iY9_n8h-OKOVLHUJUIv-MEHYJPpE683Lq22rYV29yXKUMnrY3ZPaJLrTvD1nQzl-NWV12ZLvULeIxy83HpTu87uowTWtwh8MndzxzexOgzte8Sh2JSW3OcBe3azRyOp1vg-Z_jl9h0pV_y9-PAa3rAdsh6CdE6_u7mRz_e7_vaAlt81wvRUHIUn1Rf1N5YJGk2aWv8irYGe8O6xNs3Uht25RdI787AvP2WLj5AIEOtT6xjwqEEf9fRTVNG6NLMtG06cXaxtgBo_bFtY01u59_islBCj8Lf8SYHWUZbkBhk6rQhmInlNlq2Adtbr8YWs6MX0xYJ9FgUQM-pezRrmENAmDwjoAwb0N8D9J6_OMn4c9KltH4xqd6lIxleNKah1Jrcndyo26UsGNXvlhmG8IcdNQ1zjZtY5t6IBT-thxQRElZwjh6ij2H3XVrle03s29v3OQ2Joao2Rmq1norH8tZGGD527pBZ3n6aPABRIBA9F0HBpUJ47FDBdKvoNrys7-BsbDkb5X_1tiUrMt1NQEZi9RXRGBNjoP7xvy-X8k-1KeSdbbUpyuO7nqnA_uwoaVAXoB3BhsFlAdUR_2II6fQkuEotSVr87lZu2F7MpJQovWfsVdCcg2pdZ3XCFlCSTf2J5jiUed4FktsT0jjwzDN0AoAdjPb06lej8f5A2N4-MD9xF3lqfCSoeaWuaU6oDXx-80-i2J0qduXQRyEbi5LB5rsB1jW5P1FuCFSRKC0HEJM8OFEuAbIzuANAhK7ik3RvJACr0LFWNfv833qNHo6XFIKi7rM0LSGce4kkB_IuZyYIDILACdh6C3swEp6yoydAkoFJtqtc2z7oPur3A-cag94-1gI5aGYzq9nuQ_EyoNn803x6qZupjI84nAkYyRti1CIovWcldijJ7wNCuFpI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d16c0e5abd17-05535066','','','2025-03-12 11:13:14','2025-03-12 11:13:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42551',0,'cd-form-entry','',0),(42552,0,'2025-03-12 11:17:49','2025-03-12 11:17:49','{\"email\":\"rasooladnan66@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"5100\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4urSNEQahNN2EcThnhc76I3OrQOKWNjVLncLeWpgRX0B0Z3qKN7koCSd2JsF4YpJjrGYsWVvDh5jmegcAubkr3dlHW-hQEa4GHwBkeb-_yr3LBZUOhcZ_zkdbqloZj0jeCgYlWK9-2CF-SxBU_2U8a-HUkZH9a3QSiTEXmK0W-3m7JIPeRyJxLTG6pv0doJ-rEd_ne3_hVe410Rzp9oyyaUnOSB0cDP-8V2Q0kFuRM3of4Wuy6TNEEfgH-Wx4fkVjCYpBOQ57khu9yPn9_xL2j37zfKlyekCo6yES_dX_2ORy5U0mS-WWK6EWsnnUxb0GE_BqU90w-lt4-SokXmwM9qm3TaJLoeaKZcmZTyVqAvcWwYyezj3IhFSjfqyrF-taAQp3yN2qWeTGNztsw-46WTMdQkBLYqf4rZlUNo4Oc479YNeSOyxXsqtFOGJNiZjBRjxmhtkwI4yI-mGHDJgtLeoPD_Jc31V421DxH0J6EVba6xubH3vEVvr1gx-90chuluNJbFDP1b-OpCg5FkyhfVtK5xihK2w8m9jLbkCyV8dtNvvjqAjyn6FXfnqTsxre9LUp8hwdfNgUmz-FvgbLErJXrAt1JmuWauGen2S7DeyQNWpGY7AszgWlWiTrwB1fRmHnRvLCcGdkDMn526U-7PXS6lYCOWVfnYI3hpXwlMjs4uEUOaVeQKslSQ3mM8ddIFumGeZM9FXhkDb2_qplWN9rVBPXMXdiSjURg8Akx37j3UKQcagJ0YwiM-5kvtxOKg12on96R9mZVCltftignx1_Q5Slj3MFHnxY_4PEohXYbvxF6G5IDZKRYIP_bYn-l7kVxg-OlLG4BjRbMoBAW9VKIjiauxTyo-kuOWc_g0UeRBeaaqAgvoBbWvNiQ0EW7y0mbekcR4h1Xx21-eQN21icitzCHTrKGK1yOwHDDGk4i7GXba4-J69E8WEZoZBRZji2Luu9tB4tVX9bW_521kOF25nnqrit4RtfwJ070iD3_y8q8SUqp6YKvW5saLzKc6W2AdkUQAyvdzPkIQ8eletRYDWiXcaTrhRnOai1CVxFjlmmWvVgdREY8X7LNoK06V3OtX4qgmxrz-xDFdWFUYCUZZ89ZSWQF7dFHH8jFOy7hX7zUZAbmxlt7zjkcq7AImfCKj3tYwcYgg56kiyyDCxg3S5SwBFqLqLlxRuEWFJgiXBKLmDEtd23PnCT4X0y1_QPF8XVi-jq4kD-7nkazrOxcEEhnHD028XoV3Ka0Jo7ddg2HD90ztegS_Pf76NGlSzcGT-GVJQCyv0aPBYSlfWZf_PzGnYc77_Ti9hY_1bIBpssFlZWgAaL3eNlz7BmQPv3rmV4FdAbSZ1WTZIqs9ZwIUtjBma8Nw9sG54kcasrLD0Widq3mG5cF8ciM_ysB6OC76QOw9di7CA7u0TUCe2npAGhoQmyuqKjyfebbgkVUowDtpxbMi6B7OL3lIshLmGcDv9R-UxAtdkUIHIKW2P4mGBatJKDo2OiytUcB-XzKeuMXumFIC20O1etRPuv29jbPoWbtM_IkQoHLCAgR9Lm_Jr8UytvVtAs77TurbztMUQiwJVLziEYviwsUD_wJlMXBCNUwdSZ_ywT7NA49SvN6HZuBS2C2Pfm3VmXaVVbmjf3FK4Jy5mJArLA2Rogmnw_EFflrUTa1gPjdm5Mr-PYb-1NgiKc-W1kqYS7Do47kQNmxv_TjAr6jA3X8eqsAAqcdd5fAvhIJjWX0-Ntae1OwXlPvCFUS3kG-EDuSQ4PB8lhnNcbEB0vOKhx9VXd49CAep-W6sPAjxuJQUmCjqdNGJpf5pCTYG4poSGSsd3en9Zm9ztu_Nwy2DWRv7lZclGd5fP1bZozuqowLoiFyxZBbXndSyDQF4WFpzGzmHp-fMps2tV33g3L8NvqPQ8fz5R6qvkWNcnkdUztxst6P3QpU5Ajr_tHxzX4a4gt46pM97S80oitUxiSggmO_VuwfRVRJunp9FLoq8cV9f1zbnbRlM5N_9KgtnYR9GXZuHSX4BzIL2bjiMeQWgBhTCHohgBDV8BiBZPScq9OSxlCxdUeR-g\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d16cdd470f43-70625586','','','2025-03-12 11:17:49','2025-03-12 11:17:49','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42552',0,'cd-form-entry','',0),(42553,0,'2025-03-12 12:03:54','2025-03-12 12:03:54','{\"firstname\":\"Sarah\",\"lastname\":\"Beattie\",\"email\":\"sarah-beattie@live.co.uk\",\"contactnumber\":\"07984824651\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA5q7Sf9WqweuX4Oop_wbBoo0NiopIeE3dhdjLpzTaAN2kwYUBg3nbXNX5fiODKbIB3oEZpdgcluiBqu5WyBmkoTlQT2HMkLgc_0Ya0uhw-l5YLoYMVLVDluhQZSy2iI2VcT1ND45TO8mi4D6F58QpTnZWaymAWzcr3RcBUlCEFADXmKzir6jPe1yiGkQ6YKRUwADy3BzQnPHF72U4cDLTkYz1ajYaDH_oI2wTT696zJwVzLhCq2_qCWuIWy_jr6-9KouYfcl85s-mtfq0a-UehJ8rXarRULtPHAJvVIRo1vHtC6KqSD1kFJ1Viodw1xVkpKKj5IytD_HvbbaZiocO-UKzN57v-uXaNRiuy3ip1uH0rqL4W8JkXNKxrBAPeUHXE68sQqeZM7eu-_aJdvXuytmyLCMTbTMQjEKLKjQHRe-7toFLnm1MuuZKIMY55p2B0jvzVxvtuDSl8-wTB0Ka2Z0iYJfvG5LIyy5gqRr-gKdiyWDkLTgZMwr9Yv6uD3lJwGvIT_clGyclGL_J23Jg5Uf0U1-wIPzGwwsFt9B74KLm0OkbkZiJQDTv08ehdry_B6AUHSDnxNt9QiL7jy--uhfomYt3972-f4Xi1zbETIctnXEP1vaoa-Mi5S8Wkkj7qJaYdLZPuhp4Vhh0sIu7RZ_ByaoX7ArHK0-TlHX66wK7LNh4FrHvdE_fTISdhHx2yoV8F43d4u1MQImHrWQsh1CFr0LSITRvZqHctbQGvlHWGzh01Y-X0V1ToihpE57_kAK-wlCoIqvCFgj93YozevS7_ezMhmFSWwM7oUg4z0oQP0FtBqzaLFK4uvoy7uZBOECFxGFSbIVVoVIsWJhLBwEDgo6fG0ujRAVmyN3KhhAtkrxRfshsauESeC7qlKs__9H5p8zTU8hIEbLiNZSdP5l3bgD3q1pvvxNyKCdlijfS71bgFCk9xJ5xL1sO3O_HrSplFYDBg6okKg4c0oyAkyvkc2-Tw8epcz8DrgtTeMdHy3lOmK0WvEGprSrAurYbz4A7EY-V8xBCSgArFlixbZ_veWJMZiDTYX2-mNW9mqDpQzMcVbBO3Hvh8x91LZqiZbMXTfngfqc9wePmaHrnKolqRmnXBblJXR_5Z3VM8zZMl2j-rRGH_GncGJ2V79jU2HjzGaghhBxfoRjrkcSajDwyP78_T-0qR0zESGqfFTWUtooRO4OeIIrYUW0SKLjE9gofckahnPkP8aNPafjC04aErG9iU-uZQ6hrADiQKHlQ5jg7N3ZGwkMZce9WUJJUD6hZNJVGImq4LDyuTsKXuczwltDQ8P-98I3RfCTiNswkDMof7sDLKTnG5bGIiyydnFk73hgii36ESVWgWgHOA1kxumTtsoN6YE57KspUNbaU6qld-Ug4Kwl2Oal8g8tiV7YAuwHzEXTb5982HXSS3c-ksXmHm-rfgx1xOg2SA9aMsEgjsRYu59u2JaxLak6yvZ3_tBLo4h7yuZqWUeW6rsAr05gEbK2smUcZ4C_CZ8i5w9v0XXeHGUZIWBlYpq3oGxl7vZ38p04uP1Xbo3IfhQJ9wcOj5sQNMW4w_6TjQbwOwUg4ZxHLNdBZJW37aRMM-ZmWuP-wx27EX6WIiBRZ5ihLjSAP6yZWkG6xG199za_7dCCcJgu7NPTA0-ewScsw3k0Usl9xfZxEB2RvWh0ikgkdSv0TurEQ-HhnQynncg6WDgnEEj0avDp0EsvIdEAchkxSOMx7CuZB5NoEdx9OVXGhD-PV8lA_UZgpBGLthxiQLZthQMEfwmoUEFgEKPCKkS2KGW8nCx65HC9N1zRc3HT4Psd6DOp7SC1Rgwx3aNTyzYgSMEPVSsHvZbnsk5Fa8CGMyRuZZdY1ioRDaO1_as3sdDAdXpnnJwa6AC2cadjBZ9iLFoTazrJGo6MlHeEjNGo1uTuvLOB2sxzE3V9Wx2Fw4iAANLg_tzAyS7xNMtqqqmfeQHn6kwyd9jfgGWxAK9wA2liGCMsaRtLORgpvxZH5x-aPyvyvVk88CShXv0N5m6tLB1GkMqsKuUraUS0IQXyQSxilvsDzn8z6fTfGpUi9gAnB-aIKKEqGR13rDA7527BmLBT3LNiAE7ThNCBWmlNk8Arr7IOPEmrN9fmPj5rmoRlBKLmgfSJyxQrw9OkVSpUWINT-89g0Uoz4oLT8-aYHzRek98rHXSF9jzDNR40b3N6B7-1qsS8jS3A6lX7jtsRlUywwRU14Qh8IrQxTpgzftfceioQOFgDMEtK4G0C_anvQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d178159d2137-13451514','','','2025-03-12 12:03:54','2025-03-12 12:03:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42553',0,'cd-form-entry','',0),(42554,0,'2025-03-12 12:06:50','2025-03-12 12:06:50','{\"firstname\":\"Sarah\",\"lastname\":\"Beattie\",\"email\":\"sarah-beattie@live.co.uk\",\"contactnumber\":\"07984824651\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/biomechanical-assessment-everything-you-need-to-know/\",\"recaptcha_token\":\"03AFcWeA7Oa6PsGjb25drlb63gTwSJrQn4RL2qgLIntrKCA8LY0ssb64RkyTrLHI-w5-gYyhnf46azp1Qlc5GC53NNmWdeDhOxYPWjOK6RsA2Z26gml0y8MIJD4spUC1NkQU9fSfqnvs36pNY928hfcKZurqgYjigXiQuqyoaJTQb4jtFcvdaLZQ2MAikinMME-585M4TWadXxRFEHGJGPeZ2t7ZNe7aHqqhn2hQLKb9aNnJ1gwvWFtNzA7jh_qqPIPN5j7hQtUZqZ1aPUO8DdAp5wF7V4WC-tE2Tls2iRxc8A5YHmruuDfqrLYrDOzPGXn1TWE4G2dA-6PHTpikP8evsmEfujom8tylxQnQH3EzFgpktF0GWmigU2pSiP9eDhlhY8Z2NC2d4FxVghISq62xf4506C1tii21tKU37h03gpcUjyIx_8edXkAq0GNcN8ALNbwdoy5KBoxtuCq6raYQ6P4pG_HqCS59ufil1HzdKrKJM6SRXtW5bcVUahR1YpBJI0iu0-24LRbMGVy9hWFbQtBzjJR_e6w25lzj1WJEUcaAU3v6M48f63Y2tXzqjkkVy2GNZmSJp-Z84utiCWRvoLyqVs4M27bIbVV1T14LEHov_HyZtfLaVib_jR0G8xpLziVAqrpnROdBz_ZnckfHVXUkhzqv6DyTkYLiiOwAK7PJDxOMBDb7_qx4CmRK7gTzolKGPxwi-pKLsyWyDhvUFzaSOt2bSn1U1LK3AwJDBM_CgPKxeBMyW6hsV-OeJNr68XDo0gwr9RCdylDX9nI02ycrvWTu7IvqlvV8Dm0njlqE4V5PtFozNkAJcB3aQBblOqPfsrEav2L8moudOamvUycs2LYRRAQd2KQU4fahJSSZztsY-1a3YhNt9YxgoQ0JVTmeNq2PlS5O2P2_nnugoBrqOrRGmWAcwYPzTmh2MHU3QMZYTNzzaqJbi0CKTvEbbZPh3tsURXkoo2wCQRI0Fm2Bju_lHkJM-svU2AJruZKwEdpHUvdKwGWvAzL8ieQufQVHMHvSo3uWtWq-ebuWFcf3ju4rUMsfSH4Xjfoe8nNHGa_qus1i5JHjA4IHvmS0wya8opGZ6Mf3VCT7XzZO0d7xuShwp9-EwR4wowoqfRUSF6uTXZ7WMfigdtuAiiR1ToIAbFLom6aERISqdhHE5w34ALRmP7sCeJ2VDP9GB6tRC_CNOVMgQKHHYrpIgLmP9TCaRLJ90L4TAue1pRnBJPsIhnON1bVmKjsM1s2V19IGQ7HgGGXwoq1bcx_6n_Eldy-ebqNIf5I06pSuXgkqAWBbCvGUjm_dpXeQCsdZbxHzf9yVrpcX1OauX0NoFSerXh9nrFvJYoyv8GBur1nQnzIFJ_PahhybYIcnOHBuv44pWn35hLpzs_BpEgJ-ejP5K-V70Uyw4Y5foBIbH2Sj8GQTPuoTCcOuZEgKxZaKoBTLHKch2PBfdgRGuow45cJ6PaNcV1ol-M4Rek1-pPecbSX8YOBkejCIWCr7BMyKMXhoujTAY8adb9apjzU87xz15L1Qu49DQ6ptQ4FXeMHDb3QvdIj2WNcVLcd70_39vBXt9LFvP_fKlc6dPSzzFoL4HllEQ9GC7k5JfaDsgtLB3p3zSVVPBiLp3JhVF-sQ1bPEBGSWLCVKw4lGgPZvsia2YwJCgjlj249L1BixXDQTXyaoiiHWfEhy86zhOBiB9YUe0qHarMnZP2_hM5bqdDbY_Fcr6E4diEepNmehTyL7-svsHVyJlJraOieROQM1lla4NFV0UKZiR14vt8_C9y3VL4mhS9z-HrqAugliigyVcKkC8X8yzjSTeZCBCjKxnPGn_Csh3FZiJjmN4awgh-Nlv8ng8RM7y2awUgVvHMGQnRP1LePCEPFW8J1YtmUV_xXYp8qvrbEGchYuTQRE4OF7tBXd2GvmQuGzJASJ3Z9WpdQA7EMbLLNwAtDDmE08kAljrXRUeiNzfQOpHG_xJyafRXJmIdiqXF7I59xdDbFv7ucM5UZgrd_J0_1UpXTKxirMFhYBz5CvPuXNRovEDe4vBfOZBtLATCZOFv2leofTbn2qz_rkLDrSVJG6eAxnBUenlpy0AfwjvSye8PGXw7r9kstr3k3TD6linJB48mffDce-YGKFcDK9EyLNYCYuObdvvgA-lfxpCGdaFUtQduO90TZfJzmZq3HyEnEux_IO4Qwxx9hVdnHfH3Qr3Bc-RpmcSPNe3CbuB4UpR5kEBIaynAblYLL2xaiK7LIznwtXN6EffiQa14Ow\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d178c9918da1-61393924','','','2025-03-12 12:06:50','2025-03-12 12:06:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42554',0,'cd-form-entry','',0),(42555,0,'2025-03-12 16:45:38','2025-03-12 16:45:38','{\"firstname\":\"Hannah\",\"lastname\":\"South\",\"email\":\"hannah45843@aol.com\",\"contactnumber\":\"07834350982\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw4cS-BhDGARIsABg4_J2Zf3bvWlZldYtxKERboBCDguJgR_my-yAqgc3UZMy5x6XyVzvXi-AaAnKLEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6PH8BepYJYY_W1gRkfI5hiE_Qqo3k4VSKHtNk5K9LjW0lx2lGwpzfILokYTgFDdxtWeS4oKJ4fOgxm-C38xWCFo08qJ6m_E5HhshknidcLnugQiYHL9aGi0MITRRUsVUcU12rXsyu6_aEP7rJLYbeapN_yMSqhxs2J8kpgsuUyygikA4AS9XMK4_0-syRdtNPDINyAD3eIe6q8Pj0ZBW7yB4UqrfZnQvn3-rlAAw_xbwYln4uIXgJc2UcjwH3yLAIUAWNoYpVeKmMynLAQq0AVPJzA7B6hgHA8pKW3z1pCq1F7QzE580M7io0LUIvNpRyc4N_7eESAkHrYoyjbIjmH7UTjkYnwciwKgNsh0cA_df-Lq_lUR4qdBVBrOYBOvgJ6CXpCctO98o2boUUbspVoeXXghGJjcFaxZbW8xIcD8929S6EQpWmCk72PiOFtPwxkOrUi1yUsEdaOmxAZVHqm5ezWOWdJ6m0yNQ0KnWt9yCawDZxg9wlJQbxHMJVOaW7M0Wd6AtIY7rDhhDv406oAZrbmxDvIK1dIHnq-mOGBY3s5aw54llVhgO7cT3L2TBxCXf7PIrMICnFNcyHLPGwq93raEnpvRP9Zzy2EAt5V1P_-s5m3dA9TJaGrn5lXU8UunVi_gqWiFTh-nVhFhtzy98AkJMpDrjreFgqJgQBQxlJcWAlQf7vpJm7-VJhJn2TMjkTfKyt3JTRQsXhzBY4gSuozhzOSQgwKNs9GB-5EUJ8kQdq6fL29YILVA9tb6ELS6mRk0gjSlRMml1nK-P0wRfjPI_WAIGWBuDQi8D9WJ8jcmJZHY1sruCs42FlFY8r6g9YijFj_-QHwKXCSxCm1o0tJl6hjh_-B8cjmxOXD8aGZwfGnHjICMGpLR-Qy4XDER0TfHsjHUMKEVRQUxGwkhWkC5UR05tcFpZw1fOKI4FcWBxkS3xGi7z6Pn0sc3rj8WN3FPn3BKRaq11J6iQe2cid3fyoR_q0D4h2FkyIDB49yJwtUGaLbGR7e4eNsDiPuiTjuIsJMYsZoNqEOdcwDePctyp-8t7xEKcsof6wRVCBYwihN2FbJVZbP2W6bRhTEbSbdT0DGPD9mh3RWUkCt0nXAplh1QCpRxgqnaXRV2F-6K26KGU-JavIFvkHODoW7ERsumMMhNyGLrAU8PjCscPo5Wf5UXi2NwKmbVHeOwOFry2Tgyt-WhedXr0_e3NRNgHUcTietIxdg4_Am4Dl1bXUCRbFtcMVdCTbW_wbbBKtPfZ3rpeHq5fiQI7tsXQ56oDJoyanYVmUMy9UIkN6iszEK-_4qCjsrZrF3M8GlU_60Mp8ONwu0_vFa33axfl1mbhHW3uNaF1A8XtOsS-D_b8yTS8oegO3RIoihyN3psswz6-c8QK4x8a4rGbOXw-z43OP79CQ1lzJShQLB2BQENHKy9FFKVWQeYj_nod0IIRpQ-yiiEXXxVj5rENgg5k0fo-CJfQ0SNVQHNr3HjK--st1Wr2RK3WhCD5tSOSjOCt_iIN2ufmU2e1n3vNcinvIfX0q0OmG--hDr9iuO-qmmcrKjIZd9lxINd2VVxXBq3J8_X5j87WUxHegPKmoVtrjy9oJE_L2dbfk6-dbTRCzY4DDuueOe1arZdpRTqVNHL6BBvwIc1QKqhs_SZgqHFmJ8DAqJ5eR96352RRWx3EXfraYYiTAqes2aIvfayK-DpPwKcYUFqc-S8yoiDIoTBoPG_fp5jBiflq4m4Vx2OIu3-ch8BvUrWLi3nzcVCbc2D_iU90JazvUR28lc_Nj5FFdxJ4-J0ImKDK0qzlv0AbaPn6R1gaWIJ5XLojsxTgwHCYMg9B1cQFXgXHiQoQvzfHI0yPR_bTwzt0GstI77lDY9Ade_LGiYFvZgy5xz030fkc4mMehwZjVskH2hO_0bXj9xlPOjLMxE1q4997WD8iy4phf87kIUde9iz4uxJyJHtYR1ijKXk8xrp5qH9tlXhIvTPjqjWu9DyXi670q1bECtGMp1Opk9EMRUBGlF7RywJZFgoEbjDXPtliqO5Lx9Nyjgp6GW4r42DHSD0HOQJbFXHkPeH12Ey_WOFzV3Ma7Xj1nuPRdZ9JzR42B8m38nhiWdb5_I9Q3Do_Ao93g-9JV_MEzs2ZjHcZ1V-O2MK7fjMFgYCClJfUd9Aw74OZjFh5iB3N5MIgBxvqH_TLmJ-tPrFJdmtSJgjpEnDyYwn7xg-jGuFI36GnJDhoJKIqPKAO2qVrIALiL5czrF89BkCHi87M3Mww\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d1ba274ccd49-66885069','','','2025-03-12 16:45:38','2025-03-12 16:45:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42555',0,'cd-form-entry','',0),(42556,0,'2025-03-12 17:18:55','2025-03-12 17:18:55','{\"firstname\":\"Jaroslawa\",\"lastname\":\"Macauley\",\"email\":\"yarka14@hotmail.co.uk\",\"contactnumber\":\"07782645553\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7IRUVlpN3AOEBk1Ya5cd9uMirM6_J_DXSKNbtmsz3oeNaDCFKZ1aucqKispd1BMQBecisloYSwDkLGr9PjyLnM9MQV2BB1o_PHLw6tjNbkxV6zyYxS0a-Kawdn_is5WhGU5CWXRqBcCTfOY6ZhLwPHpbSGvBax1uqrM1GsSzLCDNk0bah0_MsYAjg3RJCfPPyQbz-R3vOfCWQctAD5hYcMXfStDTSg2AG5dELSzEbghBy8JoPXKYY-0uQcl3JLyioCklIo92IzwGcyXPLyeuWhLv9TLWILLOm42--HDZQ0-03RSp39AYBuiL93wg_JdmFXy441cs_Ta5z8EVgyg-lxQj91q3ZLtzxp68NqfeEXY8q3rRPDEaKGZsliV1_DimNA49Btd6rDeHvj5wBWPulNBEZiOnESupfbPehX-Avl0gvuTDX33Q7HMn60N7ZH2Gp3VKYp9H-COJAFCVZzn7cOtIciF9Tat1cENqMf9q_Fr3jcRNedrBtvLN-uP7TAPX-tWmtsMsXA91j3ytxfWFH4g1r2FCin5R-hvrTE3uscMpnN1kXgEKPyaGHxT70Fz-H2eiXp_653AnirjDij13nHfaMKJ1lBJj-Xyc0Ho-CyShw4I1tMJPhKh7zPkivbLjvJjsejB7ECLxdqJxbSPyH_5zL-17xd5RInjwI08qlY-W0q6kpDK_aKPa5lLtPs8GJmRF5ao1DHaj6NrnmpoQV00knlRmUZPZgckY3GRBI0z1weZ0o84UjbZethegHaJOeNjkq07TBNI3o_tfDMX_YU2bvAY4yFTw6L3wwGNZ_ehoLE1yhwAacw4Iam-k-JbWy9zHWhiMlv4Ep9WpR5TI5dKU0Ao7HtAeuvlj0Op8DVN4IhKfA9zefMIkKfWxsJWZGbPiFKW04e2RtjLkA9DG0G7sqvwuh3BSav__pFcUR9NkRLcLz-Aa5APG8ICvHAsrORWw5OS9JtEs40zCsL1RV0I7lbstk1Kimlgj5PKst8hDLF0RqLJg53DbsNBgZw5na8P2gZi6IJ73DY4z6wMQa0P9n_qlE-zBuT-3A1EghRS8P5x4avVzgW_x0Y4rMhFb5KLXglfBEl3X5t95xeCLyLPxRr0D3rWBM6Y0QxYpLLbFWO9vse0HQ2ukCOAQTInIEeSXPCQcMjxqNh7aB4Bd5X3hbyLX3CMd0mj0lXm7c3O0CVwqLbhtA9dmtwansMZyf3CqA_uHX4lqaCrgY1aldOGNnDsR1XdYVd7-f3-a8uCM0Khxu2s8pSqwBH9vHe3Oa4ADzl5b1atVE4ctNb4FVdaJ4qHtcNmwvDkcKvQ0-F00jjerBNXOGnn1GYYeA3B1IrAHsBicWtaZq2YCUzoKDH2MbhxBQnBJzg6mHVXh959d8tSVi0kisw4gvixsOvesCemxde4NASIWpv0Qf6WiRmh-Wf5F9NzSVQCnhSr4kDcWZhcDqVjy7_hPW-pbhoSxDS1Pfy68YcqZsuH1BD4nS4mqC-fMHk2ow6jvL3XQZnpx4fD5f_idx8ATP2bPZ5yXvLHxq_p1pX8p40ttF5nohCLRPd3QkRhak24v8KJWSe-xQ9Mn3Sty5Tw5JG_QOwB_WgChhHcKwX9YzV-BF3VlqBYc311lpjualhU9iJ5bX6muFAHF7Mgv2-K7hlEEIrXpgQc-wHW_PrAI69Rr9jV2sWA_Vhzncq0hG8sSwFHwkFKH2VBCJ_I9n6tN3KRChkNWzkB1bkcuK4M5kMfof0d8DVebYddxrfOZJIqiuaUVYN2NpI37zVmBFlKsmA6WPla908RO2PtYfNpRNDY2tmHnN58O4WpYL_meReWSI60XKyxlB314H6IRkoefsFbxSanInrprQptjWu8XEOYXvuGnLlO4eGxYlkRTYp9oLAf0SG_l8Iqzy7-1paQhZul9XnstkqlZC_y91Q33B1EF2wo5wkx5OlccNpWLg2WVsbXBNZ10IUAkAZV6KQPD7uvoPjjyzjR2Ay8dxN7QzJeIgnpL47ge0-cHBLV7DfbA4Cj_BBDCg8CV2UUTK9udYURaHU2LxRMH4YPgKovgN5SsGQb7VwUOW-cGj-vWWM4IM9YYm1QOc3fEFGlTC5nbI_9MCW6wFvpseKYL69QUpNxg6R1pkbPDj1bRqyOC2EXbmHpTjcG0KgZt5IGzxZN1x8pClBITj3WPT2JfMgk-J0KEzWx9iNY0YAjOCGnF5WAOalmlnRVD3ZMrbGk4XoL_5QErxbjix9ogY3YoKo1960IqBU3nc7ttelD3lJTWp7i6GgQHzMCYAzTqga4nhyne8TrenHm8F0-QwY-Ap5A5D7LMMrVu313Nvb_dY7vNdErnOAgxCqbWbf_P4g75NhoQv7DYsadWwDJpva\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d1c1db203d64-31189876','','','2025-03-12 17:18:55','2025-03-12 17:18:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42556',0,'cd-form-entry','',0),(42557,0,'2025-03-12 17:43:11','2025-03-12 17:43:11','{\"firstname\":\"Carol\",\"lastname\":\"Schoburgh\",\"email\":\"harp.lode.78@icloud.com\",\"contactnumber\":\"070000000\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sN37QnfqabfOXjM5j2CEeOo&amp;gclid=Cj0KCQjw4cS-BhDGARIsABg4_J2Az_NjCRIb_h0pUG1k8tSgv-mu03svOP-hTgVVfoy3arKgMAeIf4caAmqrEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7yHkE8WZ17-zO_KUjtqtRSVGBVtfW7_Nj1M7k2Wlu1yExr438gmSUGAvF4PaBXyFz4vNzLwE_AkIXeKN_WsSGFnlhgXJyEniCjKyoU5QLN79TOh3Qz62o9E9WEuBEWnXiQzeEC_bFhH4yO2wt4f0bZZxYX_bRfHbgXXnEu70Vyji7sgqEGU3pasaAZE-fBMJWH720yCWUf5ozE9kh9Ql4O3mwBjuwoceK1-MaZfWKiZCdsyZuk9zCYO-Domq9dLZjxBNIUn-mH_ooBYqA4hBqvGhQvAjhRDSENXCJbrZAqDeCJFS33GgomfaKa0bs810VHzq8ihWp-RiaaJDd3IZMfjDLunpNLK-s1mrlRqmuw45g4xBuzWEVCZl5CAATdvl1azk3y0upQ76oRNMr0JPTKsVQb8ZNAFSdnN4Mvcg4a2In6Wo5LA6EMXQgqMAb1aQXHONRH_CxqbpM7ktWlRv3XXMU7og6JzGDDVNHBlTr1G0yyZXkIjdkAJl5Xffan28Kn2v6bWR1YQi-7XQVLi_7mZfaYo8m5APQ8951C81PoqXQBACN0t7NYEHi2thBPMIcgMK5fiJ2dyb7PVGRYDzxqfJFt-Vvcst371qjR2pKOI7Z-rGAMu0WTisCfnL0rSoXuwn6it21z4gS7tWbDN1V3qfhQEW85HbTu9X0CjwTLEPWBEXKeF_Ke0Qsym9lLZI-ldCp0Plir97NzO4obkSjN6bF4ZS7ZYLi6hdz9w3gAC10KbDriFsG0RTLh-JG74YrsPitWURhe07QXEzVHRfcx4okNbqpjCBjbtgLFtXG_l5Xws0hItKsrmmZaerK7TIEzpk1h6BaPrB9GGS5buHlixMF1QVd6ymOCN8F3gSCVofCy1x0VumgP4opoYZsXClHR9tWGCKD6h5wghlZWhoCxLVlA2Nnuny5p9ZDwggG5s6IBl9pM97ytbcks1FcLwXiBA_IHcXt5GQZgEKIJropGOSTZ4r_LAON-Q5dZfGKrIxJcNfgkrt_Dxl0C9bniPvhS0zoadwti58BVIVTYVtv9Zgds-Yl1m40jrZ74z-2NhzxjEOhxmy-_7-o4E2ILL0_K9qHkJGSpVhvvaVShrtxuTQ_qGE3wsA9UIE9NSenV0BxQRAXrXiijMsTlsHXMTN8aJYiWJgRG6HufwLQcHrwzG_tMbvL3pj8qjD9MqeBlUjPosk3p6fr3eUT9pOSzXHrWBMcMdA-9H5s_zXXXrjmEVs-CoIY3lX9ZHSTZNuBE7c8IlY_NPrywYb-sMRB5bgTBFlSTlpJvb7ajpWgz8jjw9j2skuTgHGBwkNXQ3Mz_gcSxOy0aWXutG1TKCj0t7dewxrJa0fb6j4dJMNrazPyjOF5le10DPS8Zss_dJ9_lq3eeMBqOTjp9qyKS4j2AznOxaKgYC0-tND2pfUQzelJ75nEygRDKLVF58EAH_LGwKIAN8OK0NA6pAf8XtUf16W7Hb_OTIrSvwIjKVJrcMeggSAGvqS45R_-49wwMY_EKS3tYcv38p8_d7q50eBcgBtrr_VbZKH6Zv539tMEUqBiiabkGpNRhF4AA6CwnnF-I70GgIsOwMrOZHoyqeDsqhRU4wRBY3x-JebI7yka2NlxzXDL2Gy-UnatLeg29_cJga8o1K7lYLvw7Dp_9WRT3z9Mbh09Bp1a2u1N-0cxebhFLy_VOTnWrqLMkEbfFjom9DK4mW7qiFn3NDiRJ42O6O-wdSOzCBwVmEEB4LWbgYC6VTwJJWwmFp45NxuCipNmKDQHcbEMzfSh_lvSavCYzsaUiJ0NFeecPXEXmFQjl8Tn9TJXV5_GTlhRVf4rb8LHuLIxzvarQPAe7YuT7BvGkKqcJCBieek8MlydcrXp-jszNyuDoqZp39C2l4buDpcTH76bvVx6I6cqybXc3wOKWxlDRmFTXEchjggTbdRzaMpe1GdXWhLvmLsU7Sq6R2HGs0mu3GO-uYAFTypz2tjIMCnAdZx0pP6Ml7oj4lnEAHxEhc4DutHPDd7N16JboHRlXmVngrA_ORtLWi93V4V0BJMDv7HC5B_CH9oZMG_tcVM6U0Z6omaCFxK7wgfm8aRY1XY4ZWJPkuV0_zvlHgu6aHMaaauqc0-PjDiIWoagnAs3MbI1WcJTvtj2purvUozZhgYD2IKs\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d1c79e449d57-86288385','','','2025-03-12 17:43:11','2025-03-12 17:43:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42557',0,'cd-form-entry','',0),(42558,0,'2025-03-12 17:44:35','2025-03-12 17:44:35','{\"email\":\"harp.lode.78@icloud.com\",\"interestedbecause\":\"3\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"Se5aud\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sN37QnfqabfOXjM5j2CEeOo&amp;gclid=Cj0KCQjw4cS-BhDGARIsABg4_J2Az_NjCRIb_h0pUG1k8tSgv-mu03svOP-hTgVVfoy3arKgMAeIf4caAmqrEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4Ai1RWX2hJEfvGqzoBJyE5tCzykrPaD4mteDmecp8c2PHptmrisQSqTVS9iSyVucKlz7E3BeYhvWIJA63LTD2bho2FzSYqAA3ZPVCOewv-TDc98l2MFd8tYNq5n0TbcqO6EjVNpjb0v99-a3VU0zr5GOdCU63-qMW_Q1fXR8AoWAqfV2shYTEIaBn1IPmyQTaDlOgcAuCtBX33iFurodbJPShC8uYV4Mu3WDI-nmz_R1RqD3xQteKgSSj8W_7iehzBC-klPTZhOK_TpeliwRHixI5IExw1wXRwaU7oIHYyOyKHBeMFCzUNxZVsqJKW0j9EXPNrb7lBByy78dlcTdgs4Sw1tjaW5LmO4J4TMmUNLK-rq4deJ31FLkfkMmaRR2-6-M6ca31xk431Q6G-U6CHMl922acN_ES-55YUQQzrjxSjJ19zZP7cvvVFiz7jYuFC9LS07xiiiXVYsfz37T3TqDc3MVgdu20WDJ_eAQVkeJRG8dgiYoNZZk-d34XMTr1OZTzCqz3DcJo3japiAIBKtZRhh3_fI7KW3043gCv_fHdaRf54PnfSMSJ2AIVCa06H7krW69U0ayU98VS75MtGmJJdhhYj8GA1vXWNN0yCOKwrT_vQ_BYEKWB-coIHHkjpWIo0UE0T66clMYnneRDj6ONP1FGhEgfXVjRNAsNqpFiT5sJUYrCU5zwsgyZhHqN57ds1tgWnxgDp6qZfHL8M0WRVtWmFbXOFdnTaH5zcIIe1MwY_Cp8deE9CqchO2DsC0KQc2ap_HRZXJBMYupEp_H8p5NZGI7VnnjviMwGKt6wfUVp-2Vbz8E0eKaK3VqO27HWF6Ar-TOp7KtAc7jLKgvqldwPN7zfZvmr23xWCTMXsXHIWNO3Ojdxv4hSlY6TnBLAU-_UhaqfzliLD1m-0BvzC8RdzT2qW2lntH0mpejwGwhgg4oSIKhKqyw0VAd5-YVhj0UKgaBUNCquZX0hY-hZq4Gzgp-jZN-B30o6WQsSuiz_8NTQ5cFkhY-GBxa7og5hC0z0xphsOYP1U-zcD1AMTdebUe0Hcnn0h20jGLGNeYpKZWJBLnm0a4hCsN2f23s52fS5q-tTLVX-KTE_aKNNhK9DG_zKmf-G35Xw3lFMB_e2mDemUMEkXeR0cYvh88o0bosVBTMOaXXj43Y27AgUmnHcapHcnmBM4LLfWithiISlEvk_4hPkYH1ircetWDMjbAaV3Q7B5o4e7FHt0eOuR4NPtVQCQ5_A5CTt0iFUNGZyrTVj5b-DZ9vqPEoyzDloLs9RaVCLBl1vBY0-pK5NZb6gakCNgsuS-z4AHI3_s1VGjsLFBs6l912u-NQxhrTe7I6DpxE6hfUc0lnbj9yEexEltqoBR4-hUYmkzL1HXQcq7r3Enazs5gBcHiCev3RBFu9Z3_bObw6ZefeZF4SupiWEPq8BuY8N7IkfjpI98kMh0WdYTpmhlnoOzf1n_MILzbkaCZ-sr-l_iIgwlxn922p9YkfZ4dxVdvQkKHVo6hp0V6VBhArEC9SF6vTsgswm4sEqcSqH0ohJKe0RqeA7jIRCKRW_WkfYVEHDaAqCH8lFcrs5dxDSrmSwSVqmTRcl9E4bPZ3hE_uz7u-QoSVjIgq_tupOkApvBt5hToHHzYZefnGiH6PYRLvDpxO7k9-nfLTiEbCqFLMqhHVPEjeE3Kz-RELajPT3pPJm_r2wGVdOltFTfcNOl9vnJ-U3MJcWhaYOFcTqc7j2aReo1GhUr_ncGYzAW80xocMiJYDgAHLF9s26PYj7KW_U6akKqarVmUpAmfWl9OQaSqe1VSbLohhWWkMWZiVSkl-7rMreyEGInL_1qDb0e6kyhutrIz6xzt7CmHUYEaUJ_txtuOjENTMgrPJeadMSQ7bvvg9k2nt8gZ5FM-2C7XX-waEpPdnUR8jV-aaUwAEJSHeVX1-iiYKYhBMugb13-5OI3arsLMNSoKwqwp1VSdANHeo3jpJZfbX1ASsCYm_loBIcDvnHwPjhOP7yRt5OeiNU1F-8eDzI1-_qErdxRZJotxgVebo3xlRb3MYsC582mRLKfmUSn9V-JV05lQ7e-bWtq6Ha-Pv1WiaVNSGkxM_GUVL9cnCqc6ay3v8RWF_JD8zs7x9KA6t7Z8S9rmnYuGyT0n6T0wbs\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"qualification\":\"0\",\"employmentstatus\":\"3\",\"workindustry\":\"5\",\"levelofeducation\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d1c7eb9da5f5-89784936','','','2025-03-12 17:44:35','2025-03-12 17:44:35','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42558',0,'cd-form-entry','',0),(42559,0,'2025-03-12 20:56:26','0000-00-00 00:00:00','{\"firstname\":\"Sara\",\"lastname\":\"Grout\",\"email\":\"sara_grout@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"41520\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA48kXHYKGmuatLj9dfQVCvdmH3zW3QrgC8fhRrYctBwwfz0QaP0ZkDKGk79e2IYWrDeQqTSpI6DC3-inRLm7lgdTkuY_kPNi69i1PB4ESVhl7gfCET7_iGbbf1thTLSd5NGrVy8aIKxQjZE4W6u_XRCSF30R3Oocrx0u6nAbXs6VC2dErfYfzJfIpICo9cry0x2D1f17YO-uVmwrtt-FcYTP1qfPaVlReJUCnNxuPppONm-WRFhFjyDcWdl13tpoo9oGzIgzd1vVc44q_TGyLZV6fPp7AtC9Lu7aZqk0uXHnymBuaEWbRVUAiUdjg8sHkqMycMhgKkgnu3Ra18uAgUe1UnTNk-XmscsfWoRRpMrSRIpu8uyAUrKU_LlBZv9LGcR0p-D_93BAjkIAqPYN0sP0xBIN2LwDx-RFCVxwRZSplii71CkwLnNp1Y3106Zpl9OX03Y1m3_zPPkmh8zjOL_fw2DEimjUdtNFnJxmnXE1_m08wdPaZJr2_A_fW-RERS2ZGTzEKud9aAqXc6TXanH0NxI4AC4hQEByAiZkaaD6iEmkweejBNOqUGKOZ2U6uMOLkrqlq5s3wiqcNWO_FzjeMJ9tmJH3KWlo0oHx-eQz8S3eYRBlICDHc5hv2g34P_NsWxh-OVd2R5khcKVIMsFg3pgaN50YVw183YTfNMBwo7VSKZe2uNQrWhaX_4QgBzYpaeqLnfOZhgLcQWeCMIgT_JmVIfdxKIl0E7OgRoqqWYeSN79wNBUZjm1I0wRdm9Q3vqjXAhhOvIlA0epcZAXPhfMhcUfiqU-t465evcoR9M4bv3Hh3QBD5EIsu55pOUtvxGJBKiKFeVaOyupGQ9O098oRs_M9xkCCNohXWmpiKzbld7Lhh4XOrBvoMPvFjZc2PrP77FCCZys5DBOfi5P3FskuU2CEZ23AbV0HXYn1VQ3_hp9ZtknkdgycrWgruIvOEqk1fYrfbdY8hyFTo41Y81iGDjldUpp8GPyhSHCPeSEVzkd0C4a21MDsA5TYlxKWZZWU9FOANvkYaeAX49FkCxYViqjxToN_iHW0t7ybxrobDxGJEBqKFaRDDPWoXhv3B5ZM818ncD7mpUTTzzvjwt8uIV5EZUa1oY2rOrej4zh7FJa7g-l2TwxdxMxhWtNEzDCOareCVvOHtZc9M4Cg2OcPMdUWrwQwq4jsTL1dpnX7AOiN6FPz-eYzke3GCz9-fta4PecSwOwhacFZ0RFbgoW87aaBT-lw2UEbNv_SyG9XM-d3tdATg5hsiwa4QdWO7UeLAXFBwfg3XtOA80SRGhYY0BO3ohdJsiLlHcb6KLSkA0VstnGHiV8PuZb1dhQlJ9tZnJELQ0agOr2iPEuFtIwNP0Qb-eIkXp3DJNc0H0irneGYlmbvo0FjXpO5aCEpLNrvke74FzAxTgzScuq5_haMkkvhGBDTEFcqfirciYWNh95hs7e63L2-nrj5e0kHlHfLvnM5J1lK-Ev-_6Pt5HecJhG--mBO-Y8VEUvoXJozM-w4yf4--qAPr_Zx0SHcm4hpS20rCsKkdR0_uvsVPw0yYj8QTCAaw6JIBaONRwjNLoTZE1iJDC044dPOK2ZjBwkPngMxAvn5hSwLgokpaGxEd3PtKBCiaJ7l5Y8OMPOcl0vnq_3h6vvLFJPlnYWBCwBW0qsejF66Zxn3YVa_z-gcNlQg3svFoBz1uHa4thh4DlZ6WHZIFMDOC2dc7ilJfQySN-xhviyUUACZtyFhbg1mdrYk5WIdMbKBgy6ndKmoXKTpwbceOp2-Vvew-hcFYUGdmrNOCeiXCn8FZ3TZngkIP5idOp43OA3XO4JtS8627xybq0OguxWzIj4_xu8EVzireueA31rlMV8-okArTsCN9JRmMQaZCKhHSrG2zVZDpI8JrR3DvDs8YRdh6rOrCly8_CjWWuknPt0LItDUQyU1B161Bm_Tl6HJnkmM7Eh5x7nSwXENmT8tuiI9tsB1GcEYcbvJT4ui8cXwNrB_zhCFQKx_zS5lboWcDnXMefxKBaFwN11xGYdnz4CVsMqBVWqPJTBkjbwq_f9IYuxxD1U4gdi4Vl1mkAWw3NHHBF1JifaH6MRLzClrZ4D3yNkpQ5fdluIxACtaHR5gD9X2cw4qvB_8sUMZnUkszOTGZ9uAt3kLUpfnxE5sxRmt20ZPyLTGkzP9y-G7iKjTCNaOKjt6YVfOiiMji3zvVaoDDIyly4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d1f4faa14128-24659865','','','2025-03-12 20:56:26','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42559',0,'cd-form-entry','',0),(42560,0,'2025-03-13 06:56:44','2025-03-13 06:56:44','{\"firstname\":\"Elizabeth Mae\",\"lastname\":\"Oei\",\"email\":\"elizabeth.oei@gmail.com\",\"contactnumber\":\"+352621643930\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA6lG6lb1IJ1W_ml1DHGY09i28ifDaUVRtRD15XitigrnW2z3rUI8yOWa1555gDLVhXrOKCIDB8P6Pa_eqpx10L8Qy5aLWny0qxu9V7WtGItyjNJQr6HNtTtdJEYH6Ox8V0E-OxDgYfJzuXU2YIOiYaoWuyG5Gw0q9Szh-tfCIzxwNuPGjg5bkHoRsE9wcZ7j2qxw4f5eSW0Zvh9KM4Id0_UrDRGPJ9NMb7D1fbi46tF6knG-SB8z4agY7cdXkBKU-BvKyXrP2R7McURY4-6IjlmI1w6MdnidIAZyOMWkDntOOGQLbmxDJFD6ICVz5T7f4zCDpqrbGcFzuQeJ92M46Y2w3htVkMOg0VwjjpoIB43UT9b9CjjT_iV5NRmbt_PKhQAM0jc6Tsfv09LVJHlDRnNVv0sGlWtP1iUVyJbuQbZp--J4Y2l23RE8TGmYQb3ZuRFA2hcK4ze7fkwduV1LgYbAd2ibYb1bg-s9Dk2C6Di-SV1Ztjj0lHHNJRqlEHPzdZzidx9McGwXeYLyIL7VUt1fpeye2xTJNK1I0vDDVr62JtGjVXiHyk4dCach9pbiWWlFhkeUIStlQgPaI1SpDdF9YW7ZkCVx_5p9vRyNRBfX1axx1O_Yp1pLwmIm3dHm_1JJLxLzJLF3iAQlEofYLO1oj7dpsMrXrNYdc4OCW-K6BG4CRsXhJNwV8zAIJC2m7mDjDCcizhorR0zIkfHcFEWej15TRnbOU4tRiC1Sx_o57P68WQcxBGlXZDDKKrRJybChD-qm4mfkbdqRBWEFRXbwg_EQ9chSUbu2smiR2OCzNQezPRi7aXcydOsekR4BwyePrLfCHBWcuDb2o8M4yFN4p4zCppGIwckcIxMy0UamJXALXysbrczIRff0g0YleNe3OIdeX24bcXdvoq-o5oi5FJMfyIvA1XXUxw-9CvyHAr_Slo27Wm-KjaySZ6wwdjY8PfCFqUyOWfmsLZ-kXQQmtBVW3m0iGk3pK1iE2t_onaOBrbW33JAbEzG5Sd02qsb-929w0l2fRu6ArOKas4odmMk6sp2UJ7yTxdOVR0kpi7iR8agnwE15oUc7KdD3c5yyfOIO4z1wYQqnFegxscfzY4XIQ2h3Y2OC3qltLwRufzf27LM35XemJ8_x-djpQcXtFU2hvhOGMlWVXFxxPZD8PvqDFc7xdAtEi6W57faLCIGINKqu91NwJ3il8TOtAskYGcpN7wPXh6JX8oER6isgnsrhW8-1bBQcP_n4ZYxLUHZS5e_hXB2hYlqucclt3220LMGxpQogwGmBGAVVyDZsz5gBG3aEdGqi51GDR2_8QeYusUh8ZlY-FaajIK9hbhJmCVPnMpu4bGuUnIJ-J8WXUkO_PgLi8FSeOX8QKMoMWZWUXbv2swEdOBMnTgSSvpO9B4djEwc0XHvjM523TofJdNxIyiZuR3KBlhcFMd7xFGAuVyBn2JppfWqXpTiYLzgufUm2sOuVCYMKj6luiijYhoCkk-HtHarixwh_y1H09sqlBVXqI436EpvKfQXKkXBmP-jCy-T8ULBtRFFDxB42HaQGVYfC1AY28fb5w11nGj0Qfh9htFMtmfhInNTzPNnAEF2Ckn9LZ8R94GjSpa6feo7Uirc0NsbQ8XwGWgAp0lxHKXv1IxqPG65X_-gEUJqWkt3wNdFLdqUIG69r4PAja9SS7iJIeIjTLPPqHWe_k-KKtAxHLPJo4st2K4VXwQnR4HTLNDrY2ha-Cpwd-7Il95JZ2whAzfGk-2vWnj1xxnr7AzaJsH2ROApzKSjyUXEMydUIuVrBhFbd-jqLAhjl2ACy22ysP9POYrnFbynwzxDpWMgZiNLm-o0tQVwK9Y49dzN1JDUIAKgMU31MjX2cufQ_DlTBsMNsnwcS-mS-TYBIi0TDQS2ljFaIVum8so8ke3MivPyM-IStMN4z9rd4EkUdGc9xjarIL_ox88eLzdh7TSRY7-bxKhZOO8QyVwJ0ehIHVA6BMzKE0ZD2UueluIQC9Bkmz5EjMrdj8_zqB49s8l3pESpQmSjFW2dOIqMmembgHW9-oYFqhZKOZ2bDPZbSAn2Ia4j-6VexDQHupvuSMeDxi0id4cK-F1qukVF-YZYBjhAh5q8Lv2s2SJepGeEBE1JVoL9Clo72oUqC5zv1DJ6XIMOcDwkO3iVIJsbmEKeyRPd4WzWITdwUNPEXssySoAeOhh2Hxrn026f1xPV47uNKfdAkNnE5Nw16gVAj2dBypQpGgJcAG5_UkbvjT_FfTNPUHfBd9lVjRZRXXWT_oE8if2jON3XaYUwbbL13u60Bwibcgim1GS2oXCKFmgETiTA_gCMhg8okokUK-3s-Y1DSH2of0-kTtm1sMMN2_Z9\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d281a09a1438-65992521','','','2025-03-13 06:56:44','2025-03-13 06:56:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42560',0,'cd-form-entry','',0),(42561,0,'2025-03-13 06:57:18','0000-00-00 00:00:00','{\"email\":\"elizabeth.oei@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"8286\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA4yRJR9lmCgYavLScgLGaNyRdZBHr3ApLaOYTbtQIHXH_pM3FkDyA_2BOirEbPP30ONwXgPlLq2dncp9rDZttMUwgorwDr39rmkzaAuedbaYKm2YMqq9crK26YGLQNwY8hTnBculiZz2Lt2Ejf6meS2Dh1CgiRqQ5s7AW9OMXs6gaw4Hg-jzYEfvzawMKqBv3jdDZtD90TmyaitUohJGa4dh7dR22PN1WOx5LpHlc7VyUXKzyCcpmu-UmuEGX3_1GF-IpYEsOdoMbbR2JLEV7_-eZmxaAPcpMFmbLBP1CeHQfxx9Dp-XEtpmULmIV_LmEJqd-ChElsBuZCa04CLU5JFZ2EJOJqCYoPLuQolaih_pCNmzHQiAnsZnjEN1ldP14B3AV1J1LnzLCv2GWKOzWoX7yODaajc69w9pKcTDJIsQKMroe7jJmWRTGclReP4XIQGDy9fqVMkXz-PVs2dZto8UW0KcCtu9oiJrBzJtt3vmvUfbBptDS2Bv9C-q30wqGFmJpCRMtRqkiVF0TZuBcdkJu3aREA0G_3p2N28vljupIzzTf-GrESEfSP-SQewZJUyrRBo8EkC5bPRgLxaARQPXdcPHzXSFrhh_1tRnrVDI9lE5jzTezOBHmw-uw-KbqALaH8yqfHZB8YGoMy2wUNo-vormE_NjPZe9cVUlvR0ZhcF0ISDm1YOhG2I_SYgNZuKdvnETEKCwliQCCyRzeBQeQeMlUMtHs-enBUe81w8TqJD8C12GeeYINA7yBW0NtE1jyLp9DKkdIUYs3SqSehvQtFJW1FqgbxJGe9cEZ6AuVpuk-IZOqBa6woAp5ZyCZtKMkseO4fdzYkw9AjJKHtn8IMEsaBpDNLqaVWZwj7nnbyLzmriEzyEn6tBbsICzy6k3ioS8YD32_Zq7LphqVlScVd5lruQg0VsnPW1tK1TwvBm9xa6KgzzVsNDyLZkG--aR_3XqfOK1IwAJlocDRXjMIGhzirXpH9s8d-rEOtB8NaUpMOPwbCkfI1nCsegLS53Yna65UVANHQQDezc8PCJViEo3QiiyjpFggZxvgYdgOZJsUUB_RRRauQp_FO1K_Zqmcp9KaywyjRxvF1Zzs1lvLFjpjfXOzgsOPMI1z_OQFvz1Y248CTkeItp6u6Dnsc-WKWv-USpoK18t1zo996sZx7_CcviQpBk1uRITeV9UWjedz-2XOA0gktvniIgAQSkq2tSk9-EZEdXXSQVfL2SLGqY81ZkqW5572srM-Cz7me4FNJ9cxwEAOkK5cUVwCKC3-NXCWuHpUq6UCVrli0q4MWvhitQen85vniPcwhjyyOxAbmzL-wsZbD0j4gnhAidVymRbvkQwtjVOj59rN-e0n-2kVHJ1t_jVL90VfmFcXpdo2_ra2UNqtJZ-Syy8a37lNrc0-4SpEs3UVNRmDjm2dH9gMSofRKqKT10XgErM9rxQcbq31ZWsRDCbKyBkghYP94XgVbIOFaWwxW1Cawxuu9zAvCgJVd9j0Xm2fWRkOvTJ5S493YK9BKSr5xUVnGwrAenzoNtN1Q4Woz4CCS8qzm7KwniJAENtRhjAfiqY30a0waRIHNJbseBS1BR3_fGK9olYGSjOzo1ThbIY7YomavrYcE_RT5l91VRPbiohXM55wrW6xq4PNFlMAyJquXOJzHpRcawpCzrXaPblM01UgI53NE7Id5g85F9mDjeVKGybQJp0g5uTVNwJVDHgRZXMZ0edIAkOjKGhkIskOgViAHBdWy2JzT6tKwoKBFhr7K4ZS_bVMGQQA6ngTH-NOdWJi5x2qC4HQw1ztvMFM_E7oDLosX1LdRqGOERheM6KhiUEPI4Hc8A1PFlpPy3cimENtkLCmgMfbfNpfw_2phY7CGpS0RLEVqfvxJd2DB9H7kHOrgnnjpeNp1t2MhnBnGl372uepSNrFleK9fiZ5MAEa6YM9l66Y4XZ1zVPwYbDP2SzX0q9ldLV6h5joeYFLVCfKZj563aiRYQW1Dpzb5d1q5X6QxrW08di55BS0mzqAfK_jbq6TVLhEHFLMbeRWzAIP4J6gYDaVDmqeA56bzS1mUR36Ed_N2tbYx-v_8ThvVfV8e6QsERP2wJ0QiAPdUqxUWa7rk91Zou1-0nwP3_fdNyjRBmU1UVpRGOkgTsdUi2mxAuYKN1MBd1lFbTtpOZfKhLNMY8d5SZwTyxNRWRUF54wIn5h_dQTqDjOx5G9cbYaLQ8Dbo_7ILUqD9Nu447HympHehC0SN8OjWr2sC-7aw5IChp15Nh1rRs1q670qx4oFa5drCgDgCgoxf31BTeYxIheLYVarbN1qXopk0p6irLPVkzc3SZmfS5WDxsQ_XOv5B8eWQOlgcxrcJnkdIlwNPz\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d281cee444b3-36861517','','','2025-03-13 06:57:18','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42561',0,'cd-form-entry','',0),(42562,0,'2025-03-13 08:00:22','2025-03-13 08:00:22','{\"firstname\":\"Elizabeth Mae\",\"lastname\":\"Oei\",\"email\":\"elizabeth.oei@gmail.com\",\"contactnumber\":\"+352621643930\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/hip-hitching/\",\"recaptcha_token\":\"03AFcWeA5ZMrWnbDkfGOByvfmnC-RLkXWqsWcS5ZFySIoVhASHcYcEplZsajXLuGvovmjGVqD2PIhtZyc09VNj6KaLz8v26gn1ZNLBFyT5M3FefRewCeRJMxhSuDN9_mFPB52b184pbY4FqOU2qcmALywC-GeZEEwDTYVHTwXOEEbFpcJBpR7KR4dzNO4lxzEfIOmGcGjdKOcLqtBht4pQiJJin6xBCST1BC1_FIIrIGmDR3Tn9-ZgPndD3iOCnLzWWwwvaamKIuYyOy3BdRINq2X89Z0P83o5G8ixlbmh3BvWbHbuhZ0SxmzO0Kxk5MCYrROwILmorFeMbyJPTYlHqV4YBcpa8JyUUP2WmbYosNcDxwnx-YeaDBrtR77EpaHcrn8kEkOUBAtY6-OFEAAKCXE1qOHNcrYNBsKfUxkkuANTc60xNYMMJyleypfxupJ8AGRUDyvZ-Oqk1prarZKaHWyvcuYbrLq5ujwEeE9_VYMedeprfGgxAkCUgWTNeRKKxEWWgzdVdeDwevDj2Zf6W0x4moAYFG-ZrEG5AuAARdOpD6oHbXDk07Tv-oujfib9Be0TBAgZycYqDl9cOJjcHLKwzPjdhbcSmY1GBwXZWUZ_KcVmlm3gkNSoNrH3n3jttAVTseXpMoRVEODA0-rtjLHaOH3t-I6W8qOscjv5RLruwpLwq3_8W6zOmKQuqw22FtOyMbma5hv1N33cUF-Kyboh0FABKl_xsHKAZMfuXvWHHYZG_j3PybHYidzzXE1o5tEXI8qjk8lWUC-_YQenCmdH8j_cj6VG2gmF03kJEjARa4DT61_Naj6XVi_ZvzZAgJ5lELoyZF_EhYidJuZKkaw4UOZOAj15CZGznDQYorQuFWGS4h-bIp8Ubv4LxD2IZkB-lW_y_aJsWdmI1nvRxxRnK82Tz93tMce2c8R4TcUzwa5XuwNbaFBw-FJCoFNM4TTFWVlC1Z1Wpi8mDoK2-JbEue1e_XZrL9xW_6D-qf1xGYuFGHEdOwtCQpnxyPhci9pYjO10W4VcNaDldFZztudO-326yDNPTpJFx-Fez7OqGCgIKDU4mEka6e2JjuXBOOYqT7w4d9t5bfJJGAiVqbdb-XhxoQFijaZdzbSJqFp3_agjNMQbKFhLq2rUBfbGU7kwhinHfVpvtQyoeUHDfAVdg0Z6V4QSVMwhwlMyWaGwa2naIPSKGiVDURA0n4Wyl4irhiMn0esENHtR2RFJ-DP1Vz5VebBu3ebMFFzgIM9znNjBnWI4pFULHK30Jp1WMA9mmHBUNsx2GTupc9ypo5O9_5WDKeqi0MLxjJx2IjY7RWrd88tLidoU61ujY85YqzIAwlpwDMDrnJI7IXTGK28n27i9w57aJoQZsuiGDhpi7HMpgDOG26QKVYJ8MIJ7VnzN6kq354_hcrod02NbXBLUy8dWS_tOiqjlg7DECbjBOCuyPF-3QHg52LIRHeMjNdJ6jkv_EUYztmOmb0jSyDlpqVdoy3IfDoxPZRZX4c9xNiQyhhrcOmfs27ZNmb_h5vESSATSB3qTYdIXM1IK_85jJfmsquzBEUYxJvvBlmBdvRxQP1iL0acnkMNzN6ljUbOLBxEY4q-mLkzERXTlFmNn2PDBweiGbIQVsWqWEL7f-lClzD3dGpFrRW1uyR2I0nDWsH8Mj_iXFO9rpqZaKDM-jK-DIM_rXFQqmGVSU5KxsR1HbCFqjifHtVhmzBoQb2FFg9rC3XUbtXsqegbN0Y3imaT4IRKVnHCoPMn_a5QNDGvR_dNr_zbNV59nPnKzIPcB8r34GrxciCNwPE30bJUliIaN2AhDtaJWV-zA3VgDNvZxSO9Bts-8yxiPZjyQmpmKpClH2mVolGZdM6ninal9uegZxA7cZOGWE9ifuNFfuOG207VXM0co4_eChPJ36Vf1jBIixhrZX-JCRosI0tYeDXHhGq3xE67VQ2rUErr5nw7Cm6j54RtCOdZ4umsuNw6NT7qD5h1HdEJwBaQ9ln1fRDmdDA0IbvfrybNoQBa8GalyGZopJ2aHFNoZgGtxC4NaXK_jKh7wXrw-bG8Lztw3fntFN62QN89Vgo2C-bk7UbHcFXgTtYM7opeqzvfLNGIm-p7_k7una7hNrz56TFwiMy46r5EMCA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d2907d0f5562-13451951','','','2025-03-13 08:00:22','2025-03-13 08:00:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42562',0,'cd-form-entry','',0),(42563,0,'2025-03-13 13:07:06','2025-03-13 13:07:06','{\"firstname\":\"Iwona\",\"lastname\":\"Zimna\",\"email\":\"iwonaandsophie@hotmail.co.uk\",\"contactnumber\":\"07517449083\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwhMq-BhCFARIsAGvo0Ke0l2Qs3bv2LV-XuM181Zqhj4DzCx42ZmehK85_GkpPLQoOtMLn0_EaAq0hEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6l5Y8NHK636VvyvhchzXUCnvSG9hOzoC_awXtkyxENCZbB9_Pn1eue84uiviwAcwMR0veQflcoVZ3nqmPRAinQDsRT7MzHxWylPijZxqZdwiIWCUKlbYat8cyTIfvvZlhy4iJirOGlKx06tZAMyxxohsG8vl-zIu1QhP5_dKj4wvqvGWVqimIJRDAo0arNJluexo0jkcvQ5eqbc9CwKQzACmfiCdYtYTInoEetmDLkpeHCPnFndXEBsPd6Dj_8CQWcsVGf4s4yaHkqoiIByqJj1PfPs1cv2Ep28JuSJ2GjvcNeesUqI6zozg-0v6aJcA6RrI2BJvhPMiK3uGS4oQr72GvDhotve_-HR9MBGyCbzYRo0jXUCNpOnCEdnpL4lnUTXVSDzvLtZX74KyDQJ3fG2Gr0MPDgEkqS4KBwHZ5pCl9rJ7fPECHL9sL3_aiqpAQ7PK-Xlle02qWX8EGM8O1iyxs7X9JOD7LgU3oEj0KP3Ny4stLgQo757S2V0SY0Vd4WyClesDx6Yh6rnKShF0rRCHkBZwjoesVHEHQOdNJkHMIlPILytbn-bUD08CZns25HF8DfOYJsVqwQJV-TmNUr0wScY16sbRl4-d2dCLHzlnHjxic3k0-xI83mg63zSKooUTNGnlBH2qIUmA5YFwx4gK2ncaPS67oTvRKYV35_hondH1Bh-J1Ojqea1usoeclhxuqIYgWd0ilKawRBktuMnwINnTo3ubRPpmhVQva4QXOK-7y0KTBrCKxwZbyx6YtoC4iM2cVGQKz1TK4FweSKopgK5Evi4oef8rkJK1CtmBDI-o-3XImLAYD-yKYxMvZgzZcQH89m2qPLSHUnA8CSp6i4iu7weRs6ZgaDUZjQkUVdjtKz2PqOQBFMSGEZY3PD0PGBJaErTtjtHvh1QrlSdgjh2IbBwDoELNITpVKT81BYyAhq-tjXTkNm3O0bwenkyw0TTg7YRM4kyMn36WAkmaUJLkiIPoBNs-SPBQ8-ofs5U41-QrWxXVLI_4DVldmlyb3DCnbFsIi3Db5C6NLiIFgL2XL3G3wDhlfIkmYSHHLPw2dlmojXDxu07kR_6TIxb24Fea7I8OiommP1-zodNH6mFh62LNTBJjyVFByBs37djn-OYcV2hOXc8lOkS23uALVqw2-ydeVeH7nm1rcOf6KBlq6Te_QfPIR6jleigZaM3RRl6E35eArKWM9ocEHwXzzQFS-ga7C1X-vVlBT28hnOU39mFGhQIJwrREFhsIYwn6UYr0GjAorKrCK7lhuqqIvAJ06j0PtPZhAcGJaLUBwAHtSwJMFIRNglI3Ty6F27zHmpBWXHUt6dvMmXr3BzIgVAMOZe3ASLWlYvx9-8-OzNvrJPbp8k3d81a9BQc2ZX1k9gkja151LkymcwNJ3ci74g1E8qd6I93NedaAOIwUH1ZUYXZlekOtMddOZaUtPAl_AXIJwkNSKShBVQoc4Rbf2JtkUqNBWug9R_JYsUTHSNZY_yhMIGTKEwTI2H6hfSE6So4dysfb8Ct4_P8mkjYMuYA57qZ2b371WDxxAzEfki_0Ygi0GNHErs75kcvScU4lCLeVCkFQgdCqSnnRxnGu2xWxeKT_-6kEpdRWKva6wP8V1mNv5kXmrWU07StmmoPOgpbevDKVIPycR2L7Vky0aaW02Oh8v7n8Izy1DOxMSkNKykrm3DGigqAF63tG2K5YpoI4WydKlRKSwKtnfrM51LvOL2se8tvXsgEgiBY1V6xRWp1GftKag3u2M1yPQSGVOCIFZ3pvluJlXl2rPtbsGzvugdlh5AtJI_I6OO5UARzV2GEtqAcDs9pCDG5rnwTaubrlMgpNSdoaDekqJSGD1KQPFkxTn5rctf_83wQrx6RapsyE62qeEsW1n4aPw37098wYV-714I133jjmmLmd-_pUKMwJW4SCdIgl8X8Jj3QowKvWj5dWzz9amIKRdDAp4Zagc0tA_iPPGhcIBOsKeLHufDEnDQxsGJfxE0RqsiFVpc0d4nL4kOkn5DNrkLkpmKqzA70gmBBLheI2g0eheUi7BQJwQZVzV8UycO9AGB5A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d2d86d0d9960-21285794','','','2025-03-13 13:07:06','2025-03-13 13:07:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42563',0,'cd-form-entry','',0),(42565,0,'2025-03-13 13:18:51','2025-03-13 13:18:51','{\"firstname\":\"Emma\",\"lastname\":\"Thomson\",\"email\":\"emmarealpt@gmail.com\",\"contactnumber\":\"07595441792\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4vV8ZjqUOc_vOlzxBlAtQyNJg2oV3ZK-c6oJgs33Tf6GXM37aP5af2Tq9RHuhLzp0KeN660aSMjuOFQlkNS9s1qOzBDaC_SduZQJ1OUGHl4sN0DlMrpQCCz2W_RPlwcuiTR5-pB2h9kSDbFT6ZECSke7TbP42b6ZH3OKMqzUKjG7dBc9rF-QeLDrhFdFK8JVb9WwDwFIuo_u2VX-smWbLvRLH8pyzRYNezgDIOzZ7OVy_UJsPbjrvHWaorJHXU5aHemBBRBFZBiYHpFzKYauA9545xZHb63nfErWisRve_KqzvdDP8riuuWTHE_I3sXFS2xT5fAS9Jgyl4HSO2A0hGednZwDU_X2UGplVVJwT4J_0d9rboTPtNmtwaNNqlXWz_z6xOgRFAduPhWPjgP1TNNDDG7n7Xv45M_1chI3JLYssmKdFfIOPTIk4LBZa5fb73xeOokP_eKCp0N37A_63BhemTEFD6Vn_F2ow3tKf4ftrejpxH1Pa61KR3M_X3D5RZS3eZVcgG-JQeKXhui11kb9dqwhK8h-YiO4oYS9vAg6ImGrJ227NrkSHLRUDUHi3ka_7EwuMd4WM6PpIADxlW0peTnffRECgwjvZUoX4mJvjvylA4RfDdmrD1sOnWckRyv9ulE96pcYz4KuajdVCdQ5fK-HMA3W77S6htCVc7D3-OfLIhlqNAj-EbuDPpYGSyiRId6NNNkB5UIkx9pzujzoK2kKGBaZtxq82jwBeM_hzvqOcF_X0REDlsqiONI-QVOzsFsWauutVuE_a-BMfb99i1ZVI7O9MqoRLYxKzYf6EgiTwx3HUxoEen6NgldrL7ucUt9Xcrrp0-CnSYecHXZ298YX3RN5ZzSwwpO_4GNxx34LglTR9VdZF1xBpWqPSmjjnGHYe6NPTPVucSROrX6-iSRGn_pPHaMn24Y_Fw-jr2--F5B6cksHr8n4o7Q-ZjdA0qranti3TcIkRXV4vTZVhHGvo1et1Q1ZzC45PqxRVaKVLMMbz-8wOcmhOgsQ6XZ1hNp30Ul0qh9mb5JRdq3kV4MXRxZovVn0FZf0s3m9e4Gsy1PJ8CL0YeJN-w5CpYb5lCLt8GqU5HxfaTH8TcG2UBh7eS1qTPDN8WUwryrQIwHvWZbYV8ukcMpO760XYKSxXRPIWhb-iKYptE3YojTZPatQo6BxsTUYUrPusiwKDaS1wzbCudIjQh8aqspVdEyres2uJf9r2j_Y5XThB58ZNibnKTNUxgXcVj3Km_U5HPgwkZMhi-I9K4vCXRh-ailVVvaGv2Unn_b_Fxch3gpG-zTZ3mW4-wM8rf5iSBiq0ouNXtnYWK73tYRW7eynrN5Adc2DQVO_tmO7xzyZJOkliblSaYlIbeoMhS_X1r1Ll93ygpHts0BGFJK9U1g9vtJALOFbfWcEixS1g7g461bufyc0e_iVLaV9I5tuq5BAdW-XHVSkSCrMJO70FO8TS-vPs8IfHEjj3qgdcG7qTjYeab-nAZ-fuAsTTBT1t7BxKcHka0gH-9FtZgGzXGx2kfcwL5COxqvEfrpRefUQsKJwiD4tT5oH2h8d8OK6ir46ECSXIjCWeRSCpO2Q4EmZz6zDgZfuHiZURWpLrpoKUn0YkMM5K8Mt7-LvPsx_G1GKHQisiNkm3P_Knf6t-N-R56OYhUHNn_GI3oNBJXvBtuWWx8pv9GU3c4oFE81rmoKXJiNm6wY7Seevnsu3IMmIQ2xorB_r35rnCUsAgsdnwn6T-hpFt77ZjeDx1VUBWtEexSEjMz0AT_EWKOKEFEgFLfOKOu2mG0vW5VFHREMYeRSIf3jyVrpXwWHzqqv7A5swS-BmuF0HgUw_gO0rFEjucTs2S16URam9K7hXLmoGg403qgRm1UAmjg3JvAG8ZMegYokpN6gMiJaJXkKZEpKC2B5WUsQCj9AsNhnkWb4VcT497FQNAMmsWY5jb8tFT9pGetoWwMmcSIk3qw3aj1GJ5MH1frgbaNseW8OcGMk4jEZR3U9mXNJOuIO0ICY-xicwug5OzWCBLGrE0de93G39-KKO4pmjs5Wq6Qy6s0x-ocgdrkhdkkk2SJKoIFuai0oF76nLAo9zbqzGoDK7-7j_unMoJ14MLMdT_drNSoLJ7NxxAxN3jughWaaSpCZGiA2jzSsRPqoO3GG7LvDrfVbGZWRw7ABMTFffEUbdK1fHoUtfFaLyCKHl6gyhKqEVofL949GLjVVcw2bbGMRFzF5ihtNx36cL0juxR0p-rop6hD_guzG1V3jvCtUIw3ZFVsAyPGKg83yitUr6Lr-JUYH0B4dlnak5vZJcJOc7c87uIEkPqR8A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d2db24300a15-83662493','','','2025-03-13 13:18:51','2025-03-13 13:18:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42565',0,'cd-form-entry','',0),(42566,0,'2025-03-13 13:20:55','0000-00-00 00:00:00','{\"firstname\":\"Emma\",\"lastname\":\"Thomson\",\"email\":\"emmarealpt@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4-FPxxqwpFwbj2q2uuscIanr1NXXGM_0A1g0xlCxE2ctObbk4Gf7PpqiANxDLGE6-jVdUj6KnDON42fB4TEtwdMHV66iaQc4i-8TeKspgqsBpfqyA4W4NwHod-gH-pw0FL_tntbzUgrjfEM_GLkGDYwV-K6QN8A_jSU16le1J0pOfr4_XfUywh3HOYOm7ok7gwqsZIc8sEEWZhsWIlNdbpy1jRz-cFpky7tXjoXV7GVpR3nLXdE86_6abu-tGLuVrWST3tU5UF0xWoWP6RZJvkOrKaxlUfBqQlFZaH1md1Ym0WRY94KWxBfXdB8C8IXDzPC6bhoWgdgZZ-jIjiTOycBt78Ll43gNiaPPyUHzq3JQvtto4s-uRXR9aCMCgJlJO6C8QDQy_RxnipN2zvh083383tx0us-RAhetTVuCbNLp3rVkODu3OrEMIqnbcDyFwPka4gMScubUBFG76Au3sfK43eEKEF7e0qEVm5_mQTwgL7cwpUcY5llsMqSw12DyJrm_eE_TtasDtNn6iwkOsgAJYkb-ewedoUP8LbsFhkhj8GGojLWd4_DsbdRx85qnCJZbiBUtv2MyvtInpHn5EoE6WSHfj_I-JwuM9MI5uHr3RYsKZD75qO3rFJkCuulFIyqcc8B_GljNHFmjFIWTZM7tXLgyCFMzMebyywCC1DSFKkcAeJ8ZzRNaW1Uw_CluCi_cFW3S7H4iRocKRc8Lqhta7Q0_z610fwMsMc_NUCzWABBgjdckKWGomhDvDFUJZ4B59PEQj3i_XifEGsrNGFkh26YWKpIClAyA09N8J41yZtGvPgFAvH1NUcUm6m98kaMBWW7ou0rdfw3mA5ULWYN3nJW4CKK-zuvdEm0Tkis70a9aO0LNDG1x9Zq5GAuQqMPK6ViOD3Kz68H3Bt-BYA8NE5aMVRCfM5v9R9x6fjVnmJQJt6GjwD_EM4-380nbwhxJTCxGeQEtcZl0DxyU5keqd4wqc1eFcweQ5lKDjw7X9aquhLAc8DSy-p_MEHOydEURZ_WJYyUMGmlmjq61dtBNWXCOvMQc0xdalfY7qpHob4W_71TE0v1SUS8KkRNCkXM7BbgngKpr15KTxzPu5tPKrsotUHgKQqUMoiTaLK4ZUPBgjr2OquRJbHZ0S2l29xi7yfhnU4EMb6XCY3-KXYdpoWV5PuhyRHfifJ-ZXfWrrLjy9ZWDD34xAPi8_-b3uMn37ecn6u6KR0ZlVWcS5sxTHvbq6i_TQUai5UmU_Jz2-IJDxVCnDHHvnm6DIpQcmcyAFVHjxbAqeRWYpJOW9u-27HZRQlYL2CvBgZmGi-LBecuW8n9eD5t1V12o0WZf9dkXeBXzdK3t9Ky5eishNjsAtMy8T3S0fOf2pTbs1le2s63z9VJXxEWouYlb171wtgAZdgkR4GxnOBGpIg03h8mm3uCQ-X9sQXo7Oz1_fCUyo7-BlaT2ZWoUg7jOKiGEOeUIVEClP61erULwlJPPJt0IMV-diKSrJNzXdEpNKPeL3vWiTvsYMTcT-wPMjjvA58YvT6Bt5yxpgVgOfLe25_aYdyifgIMW7jF1VNK07uQ6s9vmnBcx7z9CMftPTnMyd5GHE1Nq4_RPykaAZG_J6WiWEXpB507DhL6m4fxRNPwYWLa_Pf9ipfBGsmmTUCdAH215jLRuo9kY-wkWRtICyuwuAnanUP0fLJ-V8N5zFALYDl4eZWST8IgwPPdRrtYukbZYrYmXneauUVViuqr2TfJYaafHo5BwS5WaJnQqQgrvHCbh3yFsu947xc2s0bOu8-H9lk5xlb2gpjScZq_C4mJtFatTG10jx3UMQDMmJeupbbRBaGYSU5pGzDVqdtfHR0_SbS_kNBo0bmUYlWHLrJeyIXH-Cd9x9ZOHJszrU2EAEMmY5h8bvooLZYEoM2kexsiDUKoj9oA6XcEo3A47Qe33IzLJiFF2G3pMj-5epS-XiHJu67MfxM11KlGxCQ1UiKs6UqxtQAsUtGQZUr88WbR6pcbPS6PlACnOqHzDUXW93fIs4x8Apo1gqCxgFkzyejTIkyxVxJXLNB8Hxefr44mMdK-ejuI5qdIvE7yj-ZR-0Ma27XrGMHaJUxp0G_R623Vgh8skJfqJ6ogxD2FYev_-KbuUpPPPZYY95GHZsM1rQLFd8P_V0ab46ngu22lW4nFu9xh3lZngIpkkLY5cq_eQH6kPkeNY9DGKOWzzyl9jy9ZbsEu_XdRFhABRTpK3YI8fDaQMzOHo4equtT3ZjKODk46iitwMiYYccib-Vv5n2eJAXRZa28JEe6WD6jM2nt8ZjnlnJGK4lkqJdzQvssplsAqx85XmOciAiohvBYWRCEjvc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d2dbb727c593-85915000','','','2025-03-13 13:20:55','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42566',0,'cd-form-entry','',0),(42567,0,'2025-03-13 19:39:50','2025-03-13 19:39:50','{\"firstname\":\"Yolanda\",\"lastname\":\"Royan Pardo\",\"email\":\"yolanda.royan@gmail.com\",\"contactnumber\":\"07514185249\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwhMq-BhCFARIsAGvo0KdyFo2aBTR-37ijxXRCs_NY-V7FT_s_jPacGncwNsT5GTLyybWXHlQaAq4lEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6ZrBiGJzYWwLaRq6NBIGVcLfKvXEIjFAqalSYaO8ri7AvufWGhdhrWsCaMJQ2GWwzBqSbbkrdT4HbWpEqnoW0CmUaZu3h-R6RpscRijNFchwHpxeWCG01z4tfmJCMHfp-WKnsOZx5DhkgdnDX2HOfxBWHDv-9cftfMYczSZUF0Wo4-gs0N8cjRilZav5TfxyAAzzCPKOCLpfqTPmT1d602LsTpNpwFhMz6T4vSm5sw3fRJI-BUX3E2PhNK6zSN4YG3jg44_KzRw650xClnlErB9W14SETtQXgepF2rDdV0wjgF9aVXH4dWnFZ9LFEzAHGKzfqd-suPkw2DY9uN2K3k4TlXjQp9a2uasiVU0LUlnEVkbsEkm-pGJhOeuYGdKIjZkMnoCAsCUaTv9vM6Nxu7a3tn0vKmQCz0TeX-cjTvS8wUF66m2z07r-91jQoolpEeaLh0I298cxZzq1QO5V967AB1SSrfa5U5vNn_V2L0JflacyQAGQcHCfLe7TQRG7f3SkdzPsHgtTrg6Nzs1H30sCG_LzqPcyoWFxlyE_BLv1m4FjaakedKDWjwNQME0SLkKqw3IOoQ2IX6kDOdBMV2QpODP7daU6dL5M7a6Hu4pU6MwSaI9oL21qgO7qUr8H4S4BbmcLmaXxSdLyiKc9GlCB_gOWxVi9A1iAc0oFvvgwi-GeI-tALr3bK7I6oXD4bk-sHTHTHSzkFD9fje9P7ARc6Zgpf6akiD51XznGdxBZUnnV_h5RhLuImcFZmTHSz3w7am61oTcmltMuUB0XH2DnZFyf1ERUCmLEICqFI8p3nWKdmQvkwG1cCpyo3JeflEa54pyui6vHlx0zZnw_-lb-0DenxKl87jENeANAQLJ8K8198ZYpNolfeaqMmbNrPY7XuHmwcZmCFBQAJiPaTqbysWn9Pij1eu6tqzMNUNd2nQYiHIc7x-3cEZMdxv50DGYPDS75yp8uLU73Pg8okGwHbccPRtnIulPM060IfAkQuuUiChnJ1g4MXvQvkSHqtCmv2XID__zeXlw_dUbuo1mq4upTjKcanZkChes8mP6V3dYgtPrlJvv91M_Z4vhy4DV2lMIogomi9K_Fw8OrZBgO-d0XWl94xyVCntZkQaA4vVzxo31KrcbTV7-srMDMo2OVfOF7Qk9shNBlH4YkXndFHhowX3saJB7juHsumO8THAfh_PmLGQ7Nv1XuK36-iZRHYuINBO2U_aaE2J2lUr9lko5jy2dNLOvIogZTaKtIPjPIE7QaLUceWQfqN32j5eJ_H3gYgzV8R2bBr_J8zr51t3p7ef9QmzShW4lVpWns7h2dD18kWnVB37SN_COXA4CfonWh4gK2K5wPDwJjuRvBZj1Kv0OOyzlCYgLz0hI1JiODXd7JagsQ33xGXIv3gqfDlx7222ZveJ6KZ_H0rvAShm0z6M0LOdqURNGjAHScNBmSG5D_M8KBWbr8-l47A-sxuELrDxehZaNclFFzE8qLlV1jq32th32A-FgsgTxb_W7l84qrVkg8jwRu6B39kIkcdSQs9pbUwZAJgK3W5fjm_XwLGTI-8tFE6YCNBsYtC6G1Ja7HMrj7rORM46aNDuzSFNR1DVGDqeyqUDCI6WGbHQYTA9t-WEDyN4f7noZb4Px0XDGW-_lC9ZZPG362Bx5geeeEATgmHZvWImGHtseEWa5hulx7cvkynqCXXOJ3tweg1vIsF82Y_j5iU0WJJij15AjWE5ry-DV2uf-Ml9bD4fbCzV81dbKXyo0iwwmRRi34_NUMTW4LG82OnBYP9Q-pk1gLtlvvxD4dOsvqRctlymfbMDPQetWcelGxMyNuGhDkSEd6MvIW9Q-_QOFmSk65ztYU0enTji2ZaeA_CzeRG71psszNoTBv7aw9SXBG79ecMrTmySqsA_DhkSQlB7JB1U6LUEBB__NRML51SAgSAzVEVrkKNHJhglk5M2jlnWYuGcKJWXN1xhF1hYhi2DTtTS8pzibTKnxkQ8uJPL0bo8EKUWq4Qogl1wdpVW3tH5AefX6y6JjwFSHq1IIfjWQ9i1\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d3344ece06e0-87053634','','','2025-03-13 19:39:50','2025-03-13 19:39:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42567',0,'cd-form-entry','',0),(42568,0,'2025-03-14 04:35:53','2025-03-14 04:35:53','{\"firstname\":\"Sudha\",\"lastname\":\"Natrajan\",\"email\":\"sudha@pilatesbysudha.com\",\"contactnumber\":\"+6596227301\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA76lmPZib_mcnK8ihwKwsNbwb93q62lcNr6277pEoMfijiJIHsI7DGNmNA-U1jrp2SdisqBYDRTSANGrzUOf6htrJsOvn3tijy0U35CJKODC5PBVKeynqL_DwcTyf-psIrXwW5VoYH9XPSMbvGnihbSzArZr5kpIwh9M9Xu_J1Q6eKOuGIlai4MtIa8SpXFk8qW3RnA_8OwM991dznwfVSgNkwoN8QpWgV1-X0wb8eMjlITAG7-mpQIyRzK664vKh5davaQS7nhSPqloIiMGSLKbU68OW_BaBIE71L4XTWirTrSyElBdcFzqmZLXy3AwoWFhptQvDS67VBlwmEITEIRflquwcY1NLFUoKL_VaG4H1Sp5qZM8flEd-j9h3xelDN_unSoZa0Kz-mWXo5ZzBDruiIe7u76Ctk3pPW0bRoRU0ZFurK2cWd4dYoQo3-gPBjaZRVcXqer0OlEa3NRHQnfhybL_W8nXUwyp3Zvci0Y7kTvOO7_H9tlQ_A20FnhGv46EG9aDZB8MyofQNG0VwJPqRDKl7Fm45vHWOx1_tR6I6NAoWT_o_PTvpWgfyX2XOWEtMNqKr7lPSkUv1OUeGvu7B_e9KnyETUW0_QsAg1QS2aAPnSyubEceUlyd3Sy-PovqPGP6qmSUocgU4akg7cbJS9DNC3N1Qcm60PVvWxXpcL53l-QGkl3Uw_RPWfPboUU89dbwEcw-uemZHUeKSzs8dE_A4QKxpM9qA3BKeZdoT8C5FGlJfk0OVCWGwet5qZngvBX7iXQqkWnndRYnNafIWgv7juBZ6jhZ6shFGqrVI51LLBR1NVZpztSaedF6xgJtEoc8_rv02cu7EwfmSnEzZx7SCmbWzRtnbHTAjMBQebzntC3yj9xTVKun97aEq2jL-A-3yOagyeHslq9Monde0ZxHpSjXp7foMiY7vnEZSpF8n8h0wLiqXb_WDGoTq48aVFkRt6C5r1zRPFo0tgO008RmIA-XtvrJjqSCggSkyjanOae4TajSjxh8b_Hgg_i2Qzp0bm7lQQLy3qa2pclOknhK6_MhzcNJIvz_jp1lksNyHIrb1fxbnmSTN_6-gW-W3oifJOMI9BZhoQbVze52aVpGEVPbgC17vIL3BmbGXmogbLWZJYtooClhner1l8D6S8J5DEh7zXr_oh9-m7XebNo7xcOCIAzBt0tq8KnRq0G9YqMml0NXw7qsGBXFskjfkLRCKIhOoa_zp-yFUuXlwyaJ4WT4aOztMRfUshzjtaTcun905kmQZgEHF97RWVg2HTpSlIPs03ti-rHlva2IzPnh1h9NWA700AX2fOxjYdGi-DKYJpwOtmvl3fUNeWaDkTTaj0ajr7wbx9oP9EbcxwYX5XKwTvzincvXnVRta85y7krqWKTOjAOPsJXdasqxu6AHW3H1uA88G2ASQ-tgmAGyLLkf8NEA4pgrKmMtQvoYoI0HgGyjD0ddQ2WIxf78s4qb0yL9zLAty45jysD24G8u5aSutWdu8z3fGbdJY2bT7jPwQjETBPwiqSGET8B007-618vdNHMtdfdsta6mU6jvZkj1yf355_mmmsfgtgDhz3uaQfXm3NsffmJWMQktC90YyNs_Hd5R6LwqtfBtt04lrxPzahX7iiVf5kTzPDd6mA31RzyI6eip-ElW_ZTg1_9aAUaCC5AmFfQ-ns18A1Lq6w-H7AzZKxNgs6MjiX6mYg8Dnt4PibGB1GVq1N0uYuBBDhKGlPksExrQHZVfegTmLATfzlN-XizGyopSX9eEauGOTYdxkhLooew9I5pAL1cIBWDzV1PuQLrfamuBy48QdGpCUJhdbgL4ecy1Gqe-2_kABxrNSnaaf93oMbcUvYSs1dXkwSm8LFB2nAJal-mfho5DJF1U5Hx4SMSLxylelEqC9WP3SybCosZxF8URIUp2zUpy_-ka_g0tAW6syP99GzFYs5lceFS6P8pxsRsPVztMuvi1KBWkooqrem2BxOwSjBfpTzU4xgi-6fn2R_K_HrDEQ5PF3RlMPcw8nrR7WVn7L0z3iS9PdZnhlLd6ygCbHxT1MBxfeVuNcs1FK2FArVTfKcflGI1D_Enhx7ONBAr11m2n4fuDI0JGz-ITsz1kMgqxqbwCyLwXCD6FZdGSw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d3b217eda9e8-56077617','','','2025-03-14 04:35:53','2025-03-14 04:35:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42568',0,'cd-form-entry','',0),(42569,0,'2025-03-14 08:00:29','2025-03-14 08:00:29','{\"firstname\":\"Ebony\",\"lastname\":\"Clay\",\"email\":\"ebony_lauren@hotmail.co.uk\",\"contactnumber\":\"079305249467\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwp8--BhBREiwAj7og1_i31fIJS_sV44ls7gSraC-NdHGX8EwI5k4mEZ4aBjiXqrauwLmksBoCXwsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7UyBbRQt9uh6UC5ak3kfkOTdAXxqmDuySlD4eVMtJO-Tbn9enFc5cMCA_cL-2n7fEWSkcqKNV7Zw5uI9ysOAq8sYhJ6tMC5Sq4KiKZMb7JOwp-aZ6CNn5CaYDq1pxFIGfDNjduFSN8Qz4pN0qoUzQyf6P7iIBv58qsWxm772Q9aigKLa1_g2scvtIJdZLig1lyA2E5SHhBudoGP_YgsqJ8nEGZV5qYxoicf8DRGmP65YiDau4FlE4ezmQybpl1b1XQmhrSm4tYcJxYv1OCU3mKmnanLwvRxTuOerK52sx1EEH7qXI_C1dHTB0jiqg514OyRRLaArIevomqEW5OzuIZBDzfaI1SOWnh4fqE-s6DOEw9UXB5mWzaxIqNekiKLNhcpYFo8UkUPiEwjDNNFksB4frZfnaqwcnN5lZNs-zaxRJi9gPTVpM9C5UOmYtQF4dN6vwQyQ97EGpRF6wuAMN5hvuR294r47sEFtZcNIAfA1MTuRRxBiGDmWi5V9mKqzQzlMQ33RVfm_EF8vKyzHgSd2J01NxLHNLlBb1W4NmvM8ZP2QbcxMfMG9PAIpCbaPfM6mdW3sxRc0X_qe0XvMyHZr6rHMMRDZCxV9B_5UlnGhWFYR7U-Ds90hp6_x6tBc8fDMJliHZiDJmN19lHynYU7fWA_vN-5ZnNd-7Cint6hnqNzFzRhOGlDCEWjvXWHOFxJXfKmm2uXb2k4SBFmA28Tztn84iZUuaNtyq7zGH5xjlEAXTd9xE2xpOM_BxunjzLHE-jnMf2aJNPcPVzI90TuXsp2_KOVrF_kmDK0GJCK7cv-zqF9P4KBBwUX-KogDGUnNu3n-yrJ1PFRjK0s8q4IVf4_py2mqKFcW4To5yjXifwryiAnMBXw4oYjKZkhQNqXW0N8IAkBZw4-mBtO_9C3eIssP3pG5zprt4EYPRMnk_9ByOwoKfEM6irtzs_kP99sXNQ9Rd5NR5GSQ_H2WwNoQGOTk0gAAwPF5txaVAMgbndKLVR738x8kobFu7oOXO6QVnLd8x0Ht6Ad3QrSND2w_fuofzxi57sWcrJTejCcgO54-4ls7F_dBpcQXX6G9GIqUo-ELxc8MioHKBN7jCCSo7M1nKql-qsEWeqXC3PgumPx2CHfNyX-QyNRnu7Jp25Ux0vipQRYn_IAjAHdD4xZ8Eg1UOYe6-Bb4mrpnOwDe211jH-iRsOpTpRQOyNYtsjaHYRDk0RuoD40rVxXYFon0LZcf8rC4d9B2dhw-s7TkL4-s5-JV0HcpghhQTSROyrqCeSn0TXET6uMwiBpyVcVRX2MqcwDeikoY5JDPl4UvRf8bQ3tQfF0jCVsI3tstrKK4d1V6MaOg6VIiLLgtIlslKIsEqgsyY2zsUhVWTBFKrAmeUuKNhQtJ7fmoLU5PH3xUhVecyIs4aVCSraXJZijox8lqhSDHvk0m6DCkhOTOGu1n2yF9s1VIqK35zIkcYusGEx64tDx0wz8y65ed7KVnsjx_6I83SX15WJU1H2T97GUggP1xqE3h_cYRSFkgxChy0ykeV-cEpeX6S_aPJenCYV4uJDwQqHbkWpWgiXng7zFYZpfLOkCOpNKdHiYYA8HW4eqXcEYIr4-zvV3H9liArLbJgVVjDhhJuXGGNYjH7mW4mEMsT7VBGwT5_od8tDpr_wf5QglFkt6P6a22T2117p8XRM0EuE107bib1nmvNOjxxh90yp1a5SSrgPCqQB_laxRCmnII5SK3_02__kWQxkmIPAU6XbkOVj6PvM2soaYHLTyNCDQQeMf-kYYTXnhcO1PcNoKj_uZRX2moSTLbuEpykuCbMwYFxUmA2CyQFgovF-5y8RnZGtun-7wNgy195b36RmliR4dSjKXT3Ig0DnsrEaRrfNKQCzygD592xGsxncuxIDxaAFONYxi0RC1KWu2VS5HytspVF0CJsFy0lMRgKn_CrNoFsxcLOHVOMdIhBRsaCNqqvfIuTfGBLh3zLqa_CkXyML0MPR-6qAO15C-qhsEW_F9J_s1WmWrZdy8KiHDfEgMK7k7qNLaIGuH7fGf0kxw6SLpBd7Dn3gRbPK1cyXJ2BdACsShgHPypbCt0yX2sBU8IrxbVJ24DwZnueSQHiK-LzBJuvlbeI1sXnWrC1t4HABSaXpI0Dj87ZHQtL6lPADumxKsKBCLHVfrT5pFSHTs8Sz6X4X-Gz8RxCXmBYnky_s1RF8_6lXkQ5eaL6klGPsUuj33vlR_txJ_8ciIh3v0j_4fHO-jq_fF_X42xjCR0Tc_caLunWZ3isy0FhdjykwTVNpmCPGBR6j608X\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d3e20f597ff1-27562537','','','2025-03-14 08:00:29','2025-03-14 08:00:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42569',0,'cd-form-entry','',0),(42570,0,'2025-03-14 08:33:15','2025-03-14 08:33:15','{\"firstname\":\"Ivan\",\"lastname\":\"Alves\",\"email\":\"projectalves@yahoo.com\",\"contactnumber\":\"07308602053\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwp8--BhBREiwAj7og12BrG-xjtYU4u-8LxbrzLep9l8CjsfGZA3T_FV8bsVgVa24A6Br6HxoCmxQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7APALFOHRSF24Ec0aFrTw3rLKqpoKJAvZmHk4JIlu6H9ZRrPVMWsYvlr8p9aP967YMK0kswWy3DXFDSTisg4essmc1V3bVFT5ssfWvAEe8N4u4b-siJ82cgFIZ6zvYxsZ8Fw4qp8ISabdwsu3_csihFGygw4dEqlN3H2GFRZE6pD0wJsHf9sIApr7ib1y00NiO2pZe7XKfCGqKyAV2wp5POHC_e1GTm-7IeeynrUqDAEZsFFtZhbK4B-vf31gvkVmfg4-6km9uWaLkTUpQMlmBaIQhvbX77x9-0III_J80tp_5M1IX_Kz-5Fg32DTHXflRTHKnEUaiZRhl_BzmQ9S6KpZnCzR87JzYt_enPjNxTcWUWKRc_AFyN4SB2lSaOCrsUyWLRzE5_Q1gpfKAfpFT6DvlbHqeLR_I3Z9GsWytiwmJc4CjVMYUw6UPrkuoXcYTJz-CWoiqu5XVqEggrTChaH7Oxdu-7I7dnAtQd3p5XCuzIm2gtMfviME52E2U3GJaQh3FZZbIifXdmO09XEUDcPlRMoktUGibR5_riExUX8dDrac3PeUdIg1JkwfH_nsU9DhxWmqPg7C89kVkLbYdPjedZMudOQOiZzwQ-KotIVJqYjca80Cn4RNOi1dKmZnIA_szwqQAXOUrXZEnIj-lIc1i8aX_qlnClBUS5p7yRloiw08MUTPjPM7JDfS93kr4I7KD3htizML41qdVrT2uXR1IdzzpSZXFuTXgWpYCjBcyppTWN9_RnUJ-hRr6rEfOzLZ8Ie4Sf05tgr4fSS1UK3L_w0rdqQYiD1kggxOLv_G2XH4YOAlqdv8eGVI3ypzvPA7WqSn7VIpRt353p8YmmsjaK8mL2R1P1G8Gk7C5zqPG3JRw8HLsVBRKQsTCSnVpwXg9KuviN3ZTz9_lhcjAppCSasMn1wE9A3j2LKb3HR1Yohv5sZaNCXgYmvA2m5Bd0L675DHI-aAGAjLYjBD0q7bsohzJKWPgEhCDgu_Efb813-xemU_EtM6gX1IdOumlsuHlOU1bn4OzgfWRfZuhdx4ChDhMy8_lgtfCspT6xoqAorh6W9Ei60oqM2vK1YIO2hJfqw2wIf4TC22hnMwsUruXIcXNHvcYmNmgY91nQJR38F7lC2Er7R8mBsCxoEM2JaLNSWcC76hXouWU5j68T1WUFJYiNWO5JSYbmqWpInl1Qnd3jx6iGgGXMn-6WI5lZs6h9MdTZGuT3UNST1ryXVypUz1ZTJbHT_CIVBT_ypB6M_3uRgbm9NXklZLVxi41-V-U3CByrzqaVra9hsypJ9lwO8uRVCGCFLRzYr50MsiCMYf_pp2JBjTFxjoNvs71Kj8TkaR5Dt3GBqVL78lerDoCFjP873cFj8_nRlxEidsD57OqAb3qrYoc6RS-Ya3xnV2y8Ye5QUo-gAbGkxgnJb6CKCS821wxM9u8MRJZxY7_gLzSUedRzRwI5bQrXZBX5NNXrJLNOtC7wkSQvj7Iiz6pLEXXxTGOnLTCbQEdepqST7nTR1mfB_j0kqVc3NvsFa7Ca15kJ1Hu9pQhmtrJKidvBon9IxWFX7z5p2dJ0IfArjuMhBAdXL94thm2xSDiwJ_yPhozkSHfIhgYbMt8GxneVIkZKMHEezbj47cj5Tqa0gTUohXzHkj6ZZ1CvqKwRo-YtmPndjcQwJtGtn-sh7qUiDzexsJdEPXZzzfkg5uIa9wXFiW0_27IU0FLdttP4C-zWFyeX0n-RwlvUO2ZISEXnkaXbB3AeAv-Q-3GQ_MDMDuyyixtxzQVHMyrV0x3dPDeD9Rwk2VddGPdERl0YB-DjC5KoX-HoUmRg-fdHmg-82xrf6ySKC9T8QjF3_WoV7fzHKzewg60q9_tIDSj1TRD7WTXfsN6ke9VcXS8dn48j783rO6k2y6McgpzPOVyAH6hKHfEDQboNm3lVqdxJqlF9Zzb5VJ2tU6lNFPc3wT3XQm8HZRlAazs3wMjBegJGELRWZAxRX7Pi7kW0vDEjD6iLcaTqEuLZvWxdu3XyznD_XU\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d3e9bc912850-44196838','','','2025-03-14 08:33:15','2025-03-14 08:33:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42570',0,'cd-form-entry','',0),(42572,0,'2025-03-14 09:21:17','2025-03-14 09:21:17','{\"firstname\":\"Eve\",\"lastname\":\"MacRitchie\",\"email\":\"evelynmacritchie@gmail.com\",\"contactnumber\":\"01227709868\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/#row-41520-4\",\"recaptcha_token\":\"03AFcWeA6JelNMHCy2dqwoZwKW6Slo2r_CGOtHSA4m3-nejBJcUCATe5w8m8TX42ycu6gkHL6xNxQLUce4tlK_EJMwXtNu91g5_grKdxSO7-o5nvudKdQsBHhW5Hm-9WDY6QVn1scLAKb0AgCZlNT795ROYtfXGpK9Uw_qwapXPNQpRhItQe-1NsrercT7BAvwiL6pLjyGuKGi8bqaui7YOv_XAnT5kiJezbE3nEuvl0NjCCtt8CKRxr3sTf4vWdi6jah4s5M5BwCWWieP99jNNmwEUbwvHnIlJMC_MiNaAr5X_BSLytvhFwQ0gFObhQRIaaD9qWAmVeDPXkaSjBomcXljKI1IVzOf-0NL-vIeNOwyxElKyKs5xhHh5Dcw4SPExdM8KDLmYGEKmccuPiDdHf42S-RDi6nWcUmBFYeZTh_zD_UWnY5YqcxGIChsunYRyxpdxCvCD7uEOJaze8NpGupq4uw3LfQEQXZGTSH84LKMtnPBuyU5Jp773A-Sw5Pfk-IZX3ppxXwYh8sbVQD8WbiAHAHygEvng9MJq73oRgSJLhhLQLLO6oB5r51cfG-pvaBdvo2bbk8p73MF_5FFt1cstxRXTpSqE1R8OudjUxapYm0nTkTjOXRV7exGY3vjUzjJFvruAdVyBvQcopMcSdZkkQdT02GczcUnpNDR3w6k-ZBtkdAUH4RyTxliL-447B0_8o9ZDM34qHjRgUmC3GjrpsWAzFkuxBkf2KZ_X02Tb6B50DgCP64TGKz7uavCqMQqTN-ImUW0JQENGDLiqWiqKar6QPndVeWTMNg2B0UTUimarO_exNwZTsjRBttUT1s1Rjku-MqkgO-5zzdCpigYfTuAqBbAvFbFOk4zVg7GyOEWcghP7FHuZg5IxaGX7S0Q59FA9HJNJzZcTdIM6E9Ug2AUCrujmkgOeTvUDxqZiEYFKgbc5XjFc4djamqBBgobsyOMMR0SO6mPEcF4T-NUdtzbu-NaCo6TjGC6sjGoVyEH6qv5eA4uCyeH__YSP59jg6AOhc8WflCQTwO3qVQpoz0KGnVUxGl-q2uRDUayDI7As74wg938k5_kYJyI3iP9g8yY5-m6mvgnfo7VZXKXm9P9wI5Y-WknLRR6bQF5iCeuLLPr2w0en6g90Y5_0FgNXVCvnci1Bvx4Q3Xll_1tP9IfUCmBToPbctiaKr8QqikCfjR9zSWnwgUm9vgF3PCyz2kq03u_JgDxh8P6MJJf4Y97FpUfJyGoFqmEsyQ0ZMqULnwy4YiFeVf6ch8_1KctYyC3rSuwd6QGiRTEPpkwVciSVWkDc8_BDouZsk-xORK0XBH6-5DlSCgj5nfJJ2_Ti1jAg0kQpDU0CmWls5mdgnetaCqhWU4-lN-zFR_jbMpo2ZYe1xMZ8WHdJhMMIeh0kVDEMZtLSeAgxbBLEmD93X5OXOBLAqAWJL5k2x5GWYC7UL3ocJcH5-P82nAyXO7Gm9CFMrsN2Rp4keLK41NWJ0b30Qaq5_7X8i3SwRYoOSagI3gsdC-z_XUxCtoM3opmQJUasNQGITz_77Wy5reTTcEEXoFuLDkd2g8bRJ3HfaUMo0xLXhj9rXlnIehQZGStBXSDaJTRaTOOcG8M2hmmm90cRWoAQXbHgI-Rdch2iOumAwhYibaAvMnQUwTCt8e5jmdEaEVZO2luLCGpoB5MgY43WSSqAB3LmSPDzeNK47ghsFpZGgeoiW-rzpa-UMrjyhbuqCtxXgl3EVGpjbxy7FiA9NxcO8SXVnIxbrZSolicnYJerR4VAu8r4-F5PwWaewB8caGgeQ3w9pqjUB2flPKBOkDe_3NOIDEYSJy10GYVmAEb691RQurLsTHxINUR_R4vAPpsvOLjbQUz-9jAf3ypmUthrK--_V9x1U-NvHP-qIl_Z2F_upLEZwsbPrxwkOZ_e3weqA-UFRDCLO9QkfCS7FNaDzSgj3s1ad6I5Wkr3Cah9qFfJM3Y3HxmeIma65ZfUkLrKH4mvzdGpseaQhSKCi5_G_d4HqSCVp8qsj0BjIKnUIi1Sz6HG-SXBz_AUc-gauAFioOxyyhHKojCJnHF1vUGK29m9rl9RlslmmjQQ3eIGIkboyukEMogv9CuiXKXPXVwHKS0jiwswBLQmUtRl6Xmoqbjk8ElCGg-_vYBxhrDvYXYOJRL9QCTeWvznDGxo2JpK0Rfz1nSLENb8W5liIp-VNsQCRUTF81HiWltDNacVh4wkAoEsWY0BPT4zID4MBVuJUZEltM3sFeDlO_mgWgipA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d3f4a7c5a399-42567027','','','2025-03-14 09:21:17','2025-03-14 09:21:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42572',0,'cd-form-entry','',0),(42573,18,'2025-03-14 09:20:57','2025-03-14 09:20:57','','Level 4 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41455-revision-v1','','','2025-03-14 09:20:57','2025-03-14 09:20:57','',41455,'https://biomechanicseducation.com/?p=42573',0,'revision','',0),(42574,18,'2025-03-14 09:22:44','2025-03-14 09:22:44','','Biomechanics Coach Course','','inherit','closed','closed','','40778-revision-v1','','','2025-03-14 09:22:44','2025-03-14 09:22:44','',40778,'https://biomechanicseducation.com/?p=42574',0,'revision','',0),(42575,0,'2025-03-14 09:25:58','2025-03-14 09:25:58','{\"email\":\"evelynmacritchie@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"CT4 6DE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/#row-41520-4\",\"recaptcha_token\":\"03AFcWeA7FqlIiW2m74_6RO_JurnQpv366tCvbmo29xT5-DJIWwalwL0_ZQA53YbQ6QIefhDWMFqhIEJRlUgqtH1qwqq5g1SeIBzRgtjDj3dEsByeufSEUleAl3Q0-bqZuzY_kxKXxFhYBAaJ-fD3ryjS7Y6Q80ZYY3KMBh6i4maTQXvsEYxOnvROejyGjxz32Gxh2wpcwAsSX1CAFRPgilpUmCs0YGlTeqktiU3rEBy5XJYrrj18_jvKsZ_omoskWMfn9XdX7CnUe8dwGzkSr9H84alZQC0MqrhcWvbqMdLob_z4n6J2HFYREwJV4zGJLBIRqbLnE4Y6Pry9F8hYacSvtbQT__RWl9MxEeA8R3K0ww1ALh2mIWusdP8XWXx-abPdcw3Pw62KeCOYBUMmn8aHq_9-dTkBgJQ5Psu7LYpCWsSIlZz3z7aOKyRmYQcyzinviuKalDIF-9VazwKsU64P-nvtq-qRDaUvzZB7TnqhWzkmeUkCMN0xephJIwkdCPXJ4qV4HgCfmyQ2seJ3luRJH3Q-HJJgEMEUgMTd1_PqNHwCn7NJVuybV6WRXb18mCuACG1iy_JdwnHAujyGTot9eMfOsBij-oCcb6mBfS9x7cn2zI5wBXTuzFi1F24ufYne8MvBPxAVxr82FzHaunVBGcqiAvtWE8OHICY_xi5Cjh7uQ2yoj6lcZhCzr9HPuw1lHrzK19cou1bsk_aejZag1QTHzN8uj5sNomAWw3vElm8nmXEEq2L4zeHKY363pW6I7uuBcPYE8OsYo-fINqOnPzig5--0nRxqIqZ_AB0330VMFHMRtuEzm-PBHG650RyHCO9Hu47Df73RKysSclLWgLw1aXDs9d1TtdrhBQYkQLpJv3JPu8wecbC8xV7eAXsSnkSK10IjSXTEyy1dfrjg6xsPXoPajSrjRvyYz05HkBxZzhJXhMbPC__BtpXtBaOqrLKcddQTz8vSPaQ7gn5yWIdPL2uqb1HyXAYJrVYs2RphxTvK0a6mSsiED9ZWRidcxW-MPTRlovN8D3F_pfK--ypv12yJUbBh8j6Qao65yEPVMR_r5aAiTNtqBFoHh9BcGT2izzB1CsWQOwvcGl97OFFLjGm3TlR8ITI1ih7HDLi5vuTpNOP4tJI9eyGiuc5zPZ0WsfLByZulK3fSG7XtTbLU2P_3QUe6IOlkUvzaRlOEUW4Ta-APs7mRCkPLS2ZWDfpIsZGRrEw9xGHdvqa00YmXWC9mHTLEc_avD3aq1NGGtUyXzpxpcZw17Kd9CkM4fi8UE_nxj00I8dohjJeLdliAzVWwBLDBdCDGJLeIsfLxmG-q4w_yuC2GKn7g5cRKXszvXyqpt_C4hDbcksVNFINVe9UztZqeKPR85xZby4x2nP4JFgXg5YbILEZgZmcl8maque57NVaURBKKQhTWl-GyoQW6FMzaH7ezZaKk8z5zLH1YL0wr_Ah96Sec-cU8s2D7KGjQa11HV3xOITteAOENsW1OMwl1MpyjQGEYKEDGwRVJUPXgEguQn8UkdAgisCqcdrVFmieFzNCJI7cH6DlcMKHcY8tZNOyQEHQHOGotvIybIrXbP24JnEVsxLxffqS0OIlJCxNPt19iZT9fbEKIIGvvMynQ2_MljG7GexDo4n0zdPx9_6HE0AXn769U5y85JHndiyYKzXNEEWjU4sbV8ShbSwqaI3LgNxkbB67lTuTXgkIKr1c4LV0hMfdESE4MLbCY4mf1zebEmdmbDZRdvAtT-BAupk5d7A-VAdxVSv_tCWVuVIgfYQj_dS4GvASKl_TjPMWyIVYts_ovsp5KYpif-Gjl4lcdu1hF_ZjJfMUzZgbSxQZK2cgpNkJPGOSMAYwuQ6yuynFpgi5fgPJuNpA6tBb2lOovYoJCKG05ScKWgVc2W-7rlnHgufvFJUNHnGix-PBzZQDWB-UgdDVn9-SIesfriPtaHYjYzi7hsvKm6uh3C2C2wEjqsp3gJnEVKcraPtpv4H-eTXKaexfQx_Yd7auxA7-doJUB1VB1-qtM3wqHlQzrGW6Mc3QPivPwyfIpne2QF7GeLjrEKcKGZfW4ILYQzAKNen9xf9bYvV8Jv-20M4ngWaFOijoMH4MUdmJ7g-HMGeHL6wDPigNcx-K6rHbpmI3qYapCOFvduZ0FCY-ERErTqWwEXwXqkLQe-4gLyLLBFI0hMIUKtjPDj4UVdSTRXj7jnshRkDqD0EK5l50aiI-pTo7reFSXlK6j7fDb1\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d3f568cdfca7-27735050','','','2025-03-14 09:25:58','2025-03-14 09:25:58','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42575',0,'cd-form-entry','',0),(42576,18,'2025-03-14 09:23:23','2025-03-14 09:23:23','','LEVEL 4 PERSONAL TRAINER & DIPLOMA IN BIOMECHANICS COACHING','','inherit','closed','closed','','40780-revision-v1','','','2025-03-14 09:23:23','2025-03-14 09:23:23','',40780,'https://biomechanicseducation.com/?p=42576',0,'revision','',0),(42577,18,'2025-03-14 09:24:09','2025-03-14 09:24:09','','Level 4 Mat Pilates Instructor & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41520-revision-v1','','','2025-03-14 09:24:09','2025-03-14 09:24:09','',41520,'https://biomechanicseducation.com/?p=42577',0,'revision','',0),(42578,18,'2025-03-14 09:24:37','2025-03-14 09:24:37','','Level 4 Strength and Conditioning & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41533-revision-v1','','','2025-03-14 09:24:37','2025-03-14 09:24:37','',41533,'https://biomechanicseducation.com/?p=42578',0,'revision','',0),(42579,18,'2025-03-14 09:25:10','2025-03-14 09:25:10','','Level 3 Sports Massage & Diploma in Biomechanics Coaching','','inherit','closed','closed','','41425-revision-v1','','','2025-03-14 09:25:10','2025-03-14 09:25:10','',41425,'https://biomechanicseducation.com/?p=42579',0,'revision','',0),(42580,18,'2025-03-14 09:26:13','2025-03-14 09:26:13','','Biomechanics and Personal Training','','inherit','closed','closed','','39214-revision-v1','','','2025-03-14 09:26:13','2025-03-14 09:26:13','',39214,'https://biomechanicseducation.com/?p=42580',0,'revision','',0),(42581,18,'2025-03-14 09:26:41','2025-03-14 09:26:41','','Biomechanics and Pilates','','inherit','closed','closed','','39231-revision-v1','','','2025-03-14 09:26:41','2025-03-14 09:26:41','',39231,'https://biomechanicseducation.com/?p=42581',0,'revision','',0),(42582,18,'2025-03-14 09:27:09','2025-03-14 09:27:09','','Biomechanics and Sports Massage','','inherit','closed','closed','','39238-revision-v1','','','2025-03-14 09:27:09','2025-03-14 09:27:09','',39238,'https://biomechanicseducation.com/?p=42582',0,'revision','',0),(42583,18,'2025-03-14 09:27:35','2025-03-14 09:27:35','','Biomechanics and Podiatrists','','inherit','closed','closed','','39245-revision-v1','','','2025-03-14 09:27:35','2025-03-14 09:27:35','',39245,'https://biomechanicseducation.com/?p=42583',0,'revision','',0),(42584,18,'2025-03-14 09:28:02','2025-03-14 09:28:02','','Biomechanics and Sports Coaches','','inherit','closed','closed','','39249-revision-v1','','','2025-03-14 09:28:02','2025-03-14 09:28:02','',39249,'https://biomechanicseducation.com/?p=42584',0,'revision','',0),(42585,18,'2025-03-14 09:28:28','2025-03-14 09:28:28','','Biomechanics and S&C coaches','','inherit','closed','closed','','39254-revision-v1','','','2025-03-14 09:28:28','2025-03-14 09:28:28','',39254,'https://biomechanicseducation.com/?p=42585',0,'revision','',0),(42586,18,'2025-03-14 09:28:57','2025-03-14 09:28:57','','How to Become a Biomechanics Coach','','inherit','closed','closed','','39263-revision-v1','','','2025-03-14 09:28:57','2025-03-14 09:28:57','',39263,'https://biomechanicseducation.com/?p=42586',0,'revision','',0),(42587,0,'2025-03-14 09:44:47','2025-03-14 09:44:47','{\"firstname\":\"Alex\",\"lastname\":\"Baron\",\"email\":\"alexcjbaron86@gmail.com\",\"contactnumber\":\"07737200803\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/biomechanical-assessment-everything-you-need-to-know/\",\"recaptcha_token\":\"03AFcWeA60tR66FB57m5CRyTSU3a5HpQgexo7uuk9VnRHyzMt8jMquFVzdhwg8QbkcTzVmgXLNRRBePiKXcqi3lEuew2wrguf-5_MTPZ5nMGoq6tHeHm4PZKJyhTE3ACC9tneLBrgdd7TNP9UqNbrcIkbv00x6vHTJO2bfojwnqvHyGeXig8mh8sN3KAHa5_3YqvosKBYjDmBRqTlvEKniZeHKjT7TfazlzJqws75FF77FxY0PIidy3dwTnjPYgsaGe1QyuXYTfitkgp6eKeNxGqogeTl2tHTZEDZcm0rCn0PpXDwRF3y7jIZbzQH8kKy02JmlBWAsJyOxEIPCIb10EHokNK7bs0zAQc-klOlxHDo4-DGUr4PUSSv3KGtq11gsGOm8de2_5M0mN3s63byzrFTEjBEejGvDEmR2i9GNEjNrQZP5fkOslSVNOkSUhR0qM0MnBccYhCLbIsBZ5s2LO29ku4oMRjLIBLM-t_4-9HQ5alWg1oZzbPzxiND4u3pdZzlLK4WDmpeQz3zEpQXf_fjCU-gtU-K2_ZP91uUqfYp1tcpHPKiCC2TrUAVDRbpvW3glQCdyziDJjQ-i3b-LK3giaSvaJ1HD8V0oxbRl_Elq5e0BRmSMK6NuFYd2Jp87UCVZQybwfhAiPJlbzzO1ttxN0rIMqoykdyYr8xUR9ZSFdI0c21N8VH4wFUQgeV9taBOHCGeA7oJSOj-8OG3dsYKHps8AX-cJfGsaSugSullWa3gCU2KPrOetpXn9EeT0y1V1SHO4PNY9j_ZHqNcQ4yE1rG0vv7qUITGCI_YPfCepWSPCKuTHZiVq1bC1V61KbWjafyvB4rQOfg3n3l_ghmaiQNkICLn5Y8KzyuV9z6luL-OaZbmwi8J5H4fsUysI_CgKw5Zyyj-NDaJFhIR1K7x_AtGGWq__YGV5_OottJ5CmEY8GgiUvtJd3h9jtXN68jIQw4YAemx2RuAR80JQBlAdqdgAPAYSzzoWMkWHdcDu6sNIvoveKHlUTscUTwkSSLMBF8UMzfApTEfl9h53yliEsSeiJU8MigWPIg8ZQJUPPRsQxuE9vHwtVuuusPpDvbuvj1DhubzyPlljqr2puaJDQe6jL_YXkNYA6NR_LKOdSdWS9cCfJfLBqzVHVqqWRabAmnAp_2M2zbiQTTJwz34VraFuwmd2f746MKn0wXw4jt9qj7xxqFYm4aJiN0Ei_Nq8Dp_4e-JBN1MtavA3aTFQUxQr1md1lh0BcsdcOxLi_RO4kc9WxfYXKzS8pwmmGhJZkSoU56z_7bpLnNoz2KfJkYU-OfjQwacRBP8ezlVlF5sPeF5gzJqQb7HzflqK0oAFb5ZlZzMLk6LfycsE1pmUxOoSUgVh9ln8VSq4kSJQJ7T7I9vDH8GKMp1cS4cGCcpiUZItxaZMjLkTSmepoPj3JSgguwLGAAjdwPqMp4ENA07IwkwMZ9ngSIKbp1A8bcAwDCLyHibcfhK4jeEcB74DykxXKDyw_0EQB-sH52lcdgBwUEHWcvZJIDI0PhhouViEzApLMMx1fPMUme4k4WKeDPYCDJvAC-LGjlFRKvhHkLN6Qpb9KNqigiQZm7ZXcd-Q7pCpdmLYfP7YmWhzZ6zrLSlp3PVutVL2L3JixseKNDA0mkXee8ZPklZPKo4Zt5bRg8fIzbz82uBzXg3rJ8aLANx6dtzaAEgXySkVT_m9_wiRCIvRQXccZRf7SHuTTO1Qg0i0gX6UzLEzEJMCtfU0xY5UE_TGPZOKPPcgVdt8EqcXmiDW9yDl9m5U35mGNYBXDTxIIAQ8jdXWmebrIgt5idlmJUNpW3qHGantDf4IsWQOB0J7jsK2kmtn3qL93xQQ7SuRKcmsyTI30OeCX1ZSzCgI0lXQ5aIoOT1g0-OOZaR8CpYa_z8dkUA2hNrE0LdarCo-kXnwp-6Bs_pNiVBrltsZjsThVZoHWH_MmBlAKgdkeWWNV5GD2Yg0iIo0MGt46-qpFWdUWg9sWJRZvhcR62am4YEu8oRzLbd7HEpSdnT5XXw29cpOHVaWtDdPb2r4DY0z1PfNk4ecCfPZT1kgagPo58ZJIiM6UiGuKhgThGCZxIMZBwjz1-pKn_Lg1s4IpZD9RpXeIxBUZ38zuiitwYVx5xsdO8OCs0_Ghe6Hg__TG3Im_uvKHCy_2kALaQiowkMjcW2a\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d3fa6e1f2519-05279065','','','2025-03-14 09:44:47','2025-03-14 09:44:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42587',0,'cd-form-entry','',0),(42589,15,'2025-03-14 09:49:06','2025-03-14 09:49:06','','International Training & Education','','inherit','closed','closed','','42536-autosave-v1','','','2025-03-14 09:49:06','2025-03-14 09:49:06','',42536,'https://biomechanicseducation.com/?p=42589',0,'revision','',0),(42590,0,'2025-03-14 10:30:14','2025-03-14 10:30:14','{\"firstname\":\"CHOYEN\",\"lastname\":\"ROSHAN LUDOVIC ROY\",\"email\":\"cho0709@hotmail.com\",\"contactnumber\":\"57965033\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sports-massage-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA68NtolwjVgpSJBiUAFD7IRliMCZuwf5_s2vgwCm74ZvRMe73lC2x68FRiEqBcnGDyRuwOJMgMf9JkIo9jt37_jGib0N7vRK3_Pc6M6RCLbBcoRnSghpbBu6ig2HHlNTOSvA3BPkiaOEFMuZt2Pniu4Fy_c6OQG6iJkR_SbUGloDwkT2K4te7XsMwcDmkmzRS0pwbLBZwqMv3XJgDQMEsQeN1HfohJXH-dlR5_hvp5u-Q5TU9A50V6nGRkiuwN9Oqg2xdeF0SvuTZ-lQf_uO-X_DG8GwG1-Jh394RBkI-A3aYTyniwderKFI0U8SmsGsVultuui7gEJ7bGBhqs01LRVgVnth46X76mpjkO9-Id3A14XVduzrUfHZEc7xBmLrXZSPnAEEANxsEvz9-vI9i5bbDu1xfrSZ3TIN78apNCj14Qq3u_dMyGe55ZNlhVojq_UGnqUq_sCy56U47thhtYdZONY-x7uT3iHv6Ebkamns8nBfiyV1Gnxo1TIGexRMQ3K1bkpXw7ntdoOpDWatO8WeMQ-vncHu1RnyrKlgYRZSkT2W-2p5K8WtGGLr4zhz8ydEF1ZRwxtgcQ5M7bxWxbpknS0KuC46WSMXAyjmWKDjUJj_n23piUij2b-UMOhDOiYO0HBBunyPLNhkOTfupp0EUTbDnkqeUrfzPVYSpDdJLlfpVPiGcKL2A8UggYZT4lH_QyhfU2xLVbO2DXHjfkByMaM9GOZIjfuyncJBh2k3gwY64cKB-Y6oqDJ4lftCEu95BYMJO8AC-dnFG9Lo_Celupda1vSI1sxm2ieLaJXytCM-P-lvL06Mfsc236R2RycTFmqXwlZCGVRRvgQ2EfLs7Jfsh-qxqIRY6A6rsAERpnWhD-ByBBDq-BFnMqK-4_0Y5_rhd0zCKUWtTdEaLFtwWvpOnrQV1Q-tI_pKet6zvNhWvni_RrafWmW6hhtsKbWwuVnJ3jTo3kKU1DBgDX6CwD9b7l8RGV-HE1xKMdM9i8QipMC8LCv_YaD-XhxOMP63pIddS9KOhvE0hydNj_ScMWrw1YY2ET484LVtB7Yj3t5lRRorq_wuimHDKPfCuKPaANcqlRA4vQntt6xZ8AZs3KctUg6W9xTmOwcJUDGQsSPCfjAe_KqAW37Pq0nsZ4dTP4D2QuPnW8RuCz0dlB6o9-w2FQ0D6XL1WdIYcNBu5xWK3lxR7uD6RltTnsUuoOcVWAyFvboXILm6dIpxeBNgHCvSFSk_b4DumGk9qSdjm3a0ZYwn1jvzj74pOZReuXRAsEyGzh9B5F5aXrJz2kHYQJt3W50kQjSUkexmIQ0PhEctn9oBglLGWGhVNfg-PbQ8H5JLWDF2Mz32aHDi7Dh4YqM_pcBDj8IRU-tdwrWh90CU_Y6RmPB5HMExGpQfzjeqEOha92ERBK766t9ZHWY_Y7V5iZqPWCkcR0uZTfstbFsGVvn6jzFuGDhJvQXX5dK0KftcS-e29BYvoTcegj71r4S5IBlTTiVAHnsL815Lujk9d4e35PqKFti9Gza04h5iaM5jqCk4OsqpE6lVzoV3Xzr9NBlBPbPslgpHqkPdudhp26Do_WGN3nyc_8OuTvrJFKIdEVHVw4U4ZTHBIPtTkcBwMSq3RUpXDo_cgeZhTs--aNnno-ZUnDbsVDlffiUo59Hhke7RURi0UuwZNmIuphqRp_fbmre6vanqofOEQn9y5VUIsV-KdtCWno9ZRqsz28qo5wClomEOrjYcnVZN_M0q6_iOB4f-QdVcdmEEBtAQ-D6By3F6i8MkcJaJe13DvZHsubr5Kguk3DBlzY79AtEYVIaQAh6mmNxrOKKsyoAic4x6YwXYxZw0IKo-r0OE1h4NivgVfQUSjCScl7tc-Tn3fyIFYVrUWJf3ZkiFTE_EAFvXQtb6MKDyMPZiY87t3FOUB62sOMb8kk0osbE34vfHCQaNj7ImOSaxFiBRwuO0rh83P02oosSbq7vxAfedW6N5wtS-aIdQ_umd0cvJTMJPa04rpPnHN_keUObKaxlMy4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d405103540c6-52402920','','','2025-03-14 10:30:14','2025-03-14 10:30:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42590',0,'cd-form-entry','',0),(42591,0,'2025-03-14 10:32:15','2025-03-14 10:32:15','{\"email\":\"cho0709@hotmail.com\",\"interestedbecause\":\"2\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"11410\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sports-massage-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA6CcrgaZnbDMbCLsbejezWoD5DCFDVT2gnuKc4mzh6xTJ449cDZwW3ythP9ErU5VFA-VbnvRhoJo8Xg76RBCeeyBgcnKk-W2xwgnZFcfbKpLM3rAGxVwtIlVdjYkG5sjOsCR5jg5vn0YljGqYG7L-l5JVfQxEdZwiSJUMe5HbaFovOCT5Ylo6lUNA9mOKq0ms7QhITQ5ENpS-mYjb_FltmyVizn1axhGkUlBDIBK-Ck_fmaUrNP6Cf0u_7sbbES2As8XX2r28YbxW2NBBIZlU70BUzLclPwuA4ISHoHCnmpfJFBYaYmPs2CKdcWqHBqsDXBZPWBjmgWMndqnv52OeLjycAlrtwM7OuNUgjqa4YUwI3CrfzgPOxfc3DxOg2DhuTf_S-qGUZOWyDCF8AfjtZUU4T5djFF7pdA_5IIcZok_3MQoJe6l31kTr7u-9p8b7UcFSrmValEULm28i3GzTP3VfjorMNQUMkRRa782F9mDM3iEBWss6m2J9y7XLF8auGynyUkCligDxH3ghNf2_ma2W9-bEbmEPFElOIUnjf-0YHuQU4Cbh4LvXLUW_kIteBxfE06gUDpigR6njDRNZFr_dX3qAzjuirpWGklCl5_zcELu3eoiLTYEC8pwRwJK817I-OixN2lrsotApXIHmHivv3TxH2y3O2kayTDs4zdUs9kqQyH58ZTxTfl_YOrfYYdmV4FZOw1GTIK_HqWu_Gb4AiqCEF7usvEZ8fOmY-xQntmRId33E_zDX16_GWqRAxQgvK-it-CBKg9vomN-c9umEp9OU0i0b8gxtqOfDIft9nVVdBzHzw3o8a6Vsub-d4us9IrQYDaBKF4bL1AKHepxkRcue7YOW5M6lJGs9aR7uKiC4krAiZFrQ0_s95NTo0VzJU0LUZWmdzViAy_So8abYHsPV-9WbGU-k5TRBMJYkUtJraCX-IgreMMRWDGJ5_n7WYWsW9jmU-dKMBjDHC12xYOSQXJ8ewN7Q5rubdbTCKQEpbZv0vedoyJBmY0Ap77l4shCyPDNUjSh34KJqH9tXaUMdXBjr5oFqL_kTTknznQIsNan_vqr-YlwHsGSdgrXhWhJjnbnvhBfOxZrRzZSOEdcxW2QcBM0KnbB3aeiyrEzTfcOYrp8Ey7wvZ2pjRyUXXqRMsLAkM9IAVs9ELfJYS6QD-v1HsKjYbSoXG3q7LB5FnH3VGwOd7Up_abXfmdcmO3RGpceZdZxO7khS1sEoq5rgg496alVOTcAO4P7izXRuEGFo4VJS5n--siyNbLmn1qmRv1zN4NqHbCgxecnQiJd_n1_TsyvTQ7HizWHriGaSDAJ-6q22Rn-znIg9Mj5Ww1cbwbKq3OpwaKgbRwqyrSO0di_QiZsMku78W4ZcMcgQVs8U2asBuTxt25iHVAoEHK0rk4uDUzZ8h14xnGuTjKsnj7jQFhglWOUK_TIDqfPE3RIeuO1Ajhr_td-rMofErE8Wf6aMoq2HSBET0WStBI1IQm0Bw2_KPm1KB24X_Pol46mJWQr8XJH5V-VTFaGZHmJj2t0AGzy5fOpkuUZTPBLbxc50lwgOrkUxZ7HaXLop8vsGI7qn5NmbXkWDQo46yoHGCa0Ieys0mnatdu9Wah0quLkxfn-FskXowEvNN9j_aHHTkEI1bPask7pEsrATpN3MKVFAph5F-qiNrwxpLSU-vdTxAyI_59NsMqbEU0GJCZjXxIM2FxqizwweNEPRTOUQWEGNJSbHLMo-lDjTGnoK-pAobkp71otQaRaGFZNpPRYxsYsrQN8CWElXX3iU6SBIiV-c1Spi9uvbtQ52WjZ0MJSjKMCP2-9MlWELj23YmfLRCjm7_NY5Ljrw9xoccp1jiPbm-vm3UHiXYjAP4oE5v-jyOyJy6HMtKGBvaE0RBaHbg71isWeEYYbUreIZpNf6BaeN1_35EXXbsZfXJXfgwsrRXm0_7J2IOBG_Kq2h_VBbg1D-R-g45UIbySCRO8HUnQQht8bHl9OAgYMUN3HA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"3\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"7\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d4057444b5f1-34082954','','','2025-03-14 10:32:15','2025-03-14 10:32:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42591',0,'cd-form-entry','',0),(42592,0,'2025-03-14 10:33:28','2025-03-14 10:33:28','{\"firstname\":\"CHOYEN\",\"lastname\":\"ROSHAN LUDOVIC ROY\",\"email\":\"cho0709@hotmail.com\",\"contactnumber\":\"57965033\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sports-massage-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA41Lkvoh1xmJreTk7c_irAMFyc7zW6Gfd0puUU7kOkJ8dKM9-ft2nSwlc72ERbvce8N4ltBM7eEOvaveFJ-ZBlV_uBlPeSES-yF-OYgE-iDJFQL0hN0AxGExkOxyW_SrCsM_NA3JpFgTX3W2DM0RUseQIz4hrYZWwuFMYxPEAPRhCPhUZBDvfNHJx2KNRGeXUnlYFCCEQ-ToeEiThkv_x7rnbDb2wDqq-NNfwtus8qDJJTC6cnig-XVmNJN_8N_i_SWjln2A7UA28-mUkW6RxPjwapmvqTwNccneOhME6t4CdsvmvvZdTw4vNC_d2YWpM6C805kPc0R0RilvQkOdRCk59pI3sMT-w_cpeQhxuz3AiC98Px87DHlhkREr71SKG61ENUi8mjj2PC_sfSUVgIKHISxtXBSTbmMnjmKbje-2RWISXxjXQsw7Pmkc4UUnXPBqgSKTeXbRT5YOCFIleOYcpc7jtWbP9Sd8BgnZaBcUR86PaYfLfDv34ROCKWIckunEd72_4Kjzr9rS1j8AURhc4_PBYqeeiyYNjjxpok5PchEvw4A8JJEwnA9I4YHSaCXdhFMysMUgiyUo0DXfmDJ3Ok_P7m4MxzNDgAi5lCj_J0S37NWhXnYmHIVvRCNepbXG9y-Dk1P9U444am9I90Cl33yKYmkfdDTxfbfiAx4gTwizfh28S_e8oSHRv1c449D-q0dHjXP-cXq_qci2P8D6shHaJzYS4I4FXAVe9uTHjm-HLQpYZoPiudwNu0LU7vjD0PFTjkH_b-JERU1kXisY0NV5D6qiSx4KHjA5med_MDqSC2hls1xeeCi3Jmr5quRq0nrO1azpQ955WbqGQ8C-2JdmtrX7GkS3ZT3cStGWNh0GgbyI6Nhnsy6lF4swU53UohXlnn5fkROzIkZBlg7MhscUlBoGOcTg2p_OJTpoU2dgYgh_pFx4C1pUoWmWlwsIkAS2xMWiIkzo-aKSmlqxrpcQG24miXl-Rr6kcclrygE8EyiIqi7kpmcJJRIQMHCywb2FhDr-t4y2SqZSXoLz5gVuQA295ygPB4kZve0yDCE5wW3bFIZL924zE0zIMkoX2MQUecwX4GbL3hiX3t7f8ZEfPL6-DnDMpQDwjWCLKLYGVuu05sTkL4TsEbSK-Bm4uOumefYVROM2bj_jrqQug5yXGmI0WQZ6Nns9jTqJsTfHvipwqL65Kfh0dqehrFqxoNm0naBfoyvMMr3bMjts4Czh4Ex_1yHAe05M7z9dERk5A-bHRiGU8dz8g3ud3ZYkEpWrcqFjxOiaitbJ2wW30OThUKp-QvxDcKcXhDZle3qwy0dm2xLQ6ys0dQdBgt2nilN4uCjwquLBiV6TuuHPNPsbrFhRzNaa0_uVo_8-Xsff8s1RCcG9FeDS0ROyyDBC649RFWypiUVkKEQlQKYnTOClQ0IuNvKB8W0SITGgD4ugKHxyrZLymhT-6wBM5_T7K4IwtOls1NSYhcIAM9THCgbIpaqY6S7y6obOkK6aeVONr5YwYq6njNodUz1KdTY1UON2aFpL_sICcB8KsMtg6on_GQId_0NYDQay_FNeU3YuZ9z-dDaWsE1UaVu_ok_qe8xKwxYIobyQ3uqdDkL6bnVOmi8zjIFg6g3mPmEOSwmBgtmkhpSeoWLhl9bl3SWg4kSJCYT6z-OASVLp66DUK3Iem7YBlmTSYuv81__NPLc_ouxEPvIerZXUevLtS8IbfvE5L0T97z8whHRhhpxdy5ag0i_KEIoRZ7yfPVKTmdRQ8FUA2Y-iOSsZEIonxVdQS8uSAae5lAurV44-rleZrws-hqXkbLJ-ZSa0YGfVmOpHI_tgrK14fhLKfoDKecINq_ED0bEu2rAQG2Vwkq0bZ8bxfi7zIg3BkK8g4oFQzbdidZWBViA15fIrdi_uZ5SShc7jaEvbAKLqFheD2IwLFb3ERgQZwTiLez_wXXlp2ncETTol1W2HmVr79eH_JO7rMY_L_SsyyqxS9MnZnD4jwmp3EyR0f0iSXPvNzsOn-8IQok\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d405ec0ecb20-80174843','','','2025-03-14 10:33:28','2025-03-14 10:33:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42592',0,'cd-form-entry','',0),(42593,0,'2025-03-14 11:20:18','2025-03-14 11:20:18','{\"firstname\":\"Becca\",\"lastname\":\"Stewart\",\"email\":\"rebeccastewart2909@gmail.com\",\"contactnumber\":\"07999425889\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwp8--BhBREiwAj7og1_aHuRX1-DNsv7tbrKVg-gtrMMK23m3AAFlchf5aiGv9xrHWd-vDWhoCMSAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA56MZq2r0A_PYdw_zutLlcQ7YAenc-OgI5gD81db2_KPyLxp709790NtnCiYAyaAdiJfarCQIxVSc2pkOZUYLLX26dnVAxwZBKeXwVL9YV4z_jBwqn4qNg6UTdzqUOOei-ULgPOpUvNJspFzCrQCZj998tVsnUoNgB4LFByOraAIPmfTqd3y_Qhfm1O_5zLA0tLdavUOvG9PsrPEmVRWB7nKQIn4UJQ-DVJwOPDiAGqXEAx91MmKqBwQ8WYYtkAcuihC_nLMYd5HnXRmvD8OsujklRZvgPi6kYijwTkgObwiLzi_28wFx-NKRrrub3uaQYCA8Z-6p1sKy4odtuKnjWXhQgPMJO_9rY7bniUTcvX-5tobRGAmlDredsFP8Qh6s99RmlTXRIwaHdeae1T03dWR319zkTLLhGbjgrC3yymVNJ0WTXYxlvZpma59oPVEN5St7LErkcoedmyRZsYo4EqjlokzG9-fW0plLvDKfpQghK3Pjw2LhOG-ixq5HglMQvNH5wZaDWshYdANVYyk1qOXMixP6W6yd9FDhlQUk6w2XNSJJbYHV4niigb7_e4B9WhpWSopTtlSgichT7L3fcSUaeSliU7LgOTWYLB-YLZUq3ARZ6gPRTQjJ1MpS08USgFo8cY2T_jLY9tX_e310RFRXcYdQv-V8R2dDTwOiQBCO--EO4qQs-dgTU9szktJDnKENZubxAvkyRHv-7lSNcYGU4cscsCVqkyE2HlTY-EAypmR0ut5ClUi8DjB_DaezLjDG9ZulaETZL_o1nFe7w-Ze-laQodDH0NVdPt6AJL7R_qKRTiUDzwKjTrr50aMEo0Rqi-Pv6nxA66_hlgdVQNFt5xDfQb-vAnrf6Hnem0Ovx5HDrRy40_TzSpXwjd0ouPp-nm40XAbfYUw4DW4zSRJ7fficvZynG26rLfgOSp4PqjS-p4vfHJJq0lTIBLBGk3Epg5evkcwUojthh07a6KBuTcNRL48HPMJX80LtqIz9Jy6GBx65p7KrVV-rLglQnOmFU1fjzHLkhcuEiCnbgVb65cJzl_Rdt5ui0I9UIjLDAHryTj1ZANdIDhXIAzK_3RlmLt8Y1O_PJLJdU3kGT-SbkXuhLVnmMPD51KeaOQ2xXEccLPHhRCSmkDo3pDAY2JxQLAqyZUZ3m6Z5CNKW6zMrdK1KPcHEyk4wI5KNFmP6Qmm_NinyuolpvNUn2ov2R2YXWOzPg3aS0AM1e2SyO2kflIHH4xvwL2k3OYM2RM3d09VDA7kOA4Y7ws7aTOLeXWHic3bZtb9pJfpd9icBO_giljyHA9cbbnqQJUAaNpi8bNsDeowUpWozalVRdgk9POkL7QewK5ASJD3c7K-g5TBRxfMwMoLMlRWZNrrel4nu8WWAlWfUp-TjcMAZc-OGwzP4lhyRJ82CBBF6j9zNIeh_5jL9mQuhKy8n2ZfoVTOfZQqA7fBov3q8gusZFRWtUP31WjI3CX0JXeco7qM1hjHBrXs69w8V8ep72F7UD7wMCMvxJL4FblDXoZkQBTVDlrOu1j0edkR49LzvcVIufwU-8H9gvE4klSI3srjIzeh96Sgog6hF7squgnHvd6Hnr94oAWYX2I4809lpgw0IJ6EeW_OSXlbtbfnxYF49cE3FkSlLMAgRBN--8JPIcS405GAb8s2dk2uUNYIhqoWDo5YwihWwddU2P5WIfiX8zsTJXRZ66yW4jIscLmefnuBzTbIXQneflAeE9xrHJY8nko9LUGd2B34ad35Uj84sCGStsHDFV75d8ZBDLSf0QunA5BJTk6dlh2lbQy9RcquA-KyQyAthoYKTaR772XqYS74GOJihFUUlazEfZeWLRloIMKRkEdF55BWCMA90xpXUwhoI38X_8otLlCMZqmmvgLUEyIk6OzDWKwUZEevbOU5weycXCBC5o7aMq0vgS5V7bQshohteWdEHN2kUK6hNjg-b5N1P1TEt9qytdkVmwMQUp4aYRIRt_Hp39CxhLBf9opQHO1LsRExnmPhkBezqffh5e7_t--nEvsV13Bho2DvUx3ZV6bgijLS2tVssy9PMIJqalZ5bsED-kUIzjG6vtGTEsjG9E2VODDXVuuFte4S6tiYAbR_-IOQbDL5QexVcnTXiH2xQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d410eb5fb743-84000641','','','2025-03-14 11:20:18','2025-03-14 11:20:18','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42593',0,'cd-form-entry','',0),(42594,0,'2025-03-14 11:22:21','2025-03-14 11:22:21','{\"firstname\":\"Becca\",\"lastname\":\"Stewart\",\"email\":\"rebeccastewart2909@gmail.com\",\"contactnumber\":\"07999425889\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwp8--BhBREiwAj7og1_aHuRX1-DNsv7tbrKVg-gtrMMK23m3AAFlchf5aiGv9xrHWd-vDWhoCMSAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6xzHX7OnN6ehFgn2z9LBpvg0pUflNQjPXIqCYzALptjL66Wp6XoOEcn0azB0BCddYQjmrcY4pdrwofguIov9VcC3GW2cx1LC6XejOwSJUfL0lfnjc1Tui3iTg7JqfUeWpAtC6_81n14YwC15qYa11PauIOtlTvzNon3sl7bhNR4s-zU_2TUxIxirL6uFBdx9rtvHwu1Ty0CWyMZzADgkVVpwdN4WLT4tZntL4iGK61_d9KGI4pB4oZO35GRw8P1X-qNfzU_6ra-Gat0J9GYIy79MuwZKJWNsG76_5LIXgeCzAzDcnqK0XEHellfBvlKQhLYOoJiXhIruEOcKz3-L17Ia09j-inQg17-k1Gk5iEZR4IUj4ZJe6G8fqO3cL5ws8nonyqeWNqVpQBOtV9_Mhpnml2CkeKk3yzz9qGz1xtVghNpJwf5UMVCaGwvh40uYt95s13KkCiqqAotV-xkKQdL5GRBrzsBiwHSnOmWm15ZVnM4HmeGOXX2VQIlBJA-K36GctDxFzBqcAHBoTwAHUf9gKuQFlJHCfr4fpAFtDMhLvmKtV3632VqZ6MNT_eWjSDbOmwxg0dOL9FhH-gBT6A9DrZU-AB98BLXxVujNH1j8xfvx8VNzmeq61CyfKEKrzk182rJ1I7UuUhqv8FVOd7pwYbDGLjbHRQQ3da-4X6VIHOpaMHIZVHpo5t5b5HU6BwYE4qn8gDRlt8z50woY0D48d2RwnmU7CkvWWomBWxJmKzpCRhNyiWeEX1Q0EJxy0j3D0MnbIR2PU6nWB4jf1wyk8zwgAEYwcy43yHHRKhvqySzmw4t7hJa9CrxiVYEhO0wd9WtSQzMYR3NFHv0vo-vNuI2xkUiWoivDef98YwdLOCmEdX5QoRtMT-7oEgkDQGYcpIlgXotGnMuhSMfD49p3LUkajmhAGigir3gPq3TuiBnU3bfk6BrrGZh3USlWtf70uqjfrS9kEV7uMWtAY8_MjZ2PiYQhutELNrqksuD_Dj-TtTNnqwLTHuiS_iDWtwLRBFxrTfym1DsJo-aMHSB3sm-Wb17fP-hESZeHaRPuDh3aSAWIZW7zaD6YwY3fadMGHDMKN9wGs6k2nJipiq95TQmMRmqoWryx_JYBBiZfYjCbNzcV8IA_yVpOFp2Cs-MfOG2YhpPNz0g98vigQBqHZtnp_AaGyYw6Af-oHPCGv5WFxQhm7XIVKgmbtIyVwDnRH0l5CUbtL7esj-UxbrabGgNwMWsA34_dtt-IDexOG0aParWc5nMt-sCH7pYrvgWKGKveS8zKi_C9Nc0GFYT52-UAvEeG95-Y7YhOELCL-7-2fRl8857A1_pxuq7NZ1l7QEdb8BhVd8dRsW2Xl9_a8wmaAGI3ZgM5RZzOPzxAo8HDU3TaMpt_jfwH-UlYO-4wOtmkD73bhmGTqOt7gLM7RN8D0lh0ye1r4laI1jocY22Pcx47G3uLxFmxL3iTWRjpM0o8bFKpbxP_X2xrK6STPqi8UOz-gG18fg7NrhaQofAqrFVfVX6bojNu-VZupJ9zBcPco_jsw1Bm8MYyK3UXDYB9v5fFskl415ucuxBLKT-1XoUtbIXkcwkeTCFilRYzNMrFR0zRJFy80bl_4Sq2GJOnyTgPQEoBOQJ7-MRNUk1CKWh43D7M1IrIdxzv1pWw4yUGcxiTUftAi0pIfg0YdB5Cykv1-H-MYRyTCRDx6lQU0r1lcfWHZA6E-ruvOz0d66pzY1VVmfXwU62dSgwjEOmTGZzQdZ5_hJ3hLSiJRNCBMp-zvWIdZoHEOFgKDxbvxqMWfWukf2WPz-tVoU63MlHCvkxBKPx26v7spL9ziOlftuQJlsKmnvFNccsDijtNYCH_C31w47BHPVyoBr3RLpFy9xv416NVmGr__pnzuH2v6DdWv4HswFRFJfYtbLFbcxyL1LT376Zky_9iCUEUdpqKkN2G0EGi2pAD2lrZqbXRnHdIh2o4yjypOKNKnDwvFu1zZptcpOCobtuKH-r5T1Zs-gD3OYZb6pEdtRNCdOwhehBCHVkQuJ9pgx9F3F03S6HqiyEKAlfJF1yOFQkFiCOVyNKRnMCQ8aki0j_s9LPhvqnVBdgvrLJfVeL-eNaQ6w0EXm25DF2rQnoRnR_6OOORkidfqxz1Fr-JaW7-9eOHg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d411681f2d20-94639726','','','2025-03-14 11:22:21','2025-03-14 11:22:21','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42594',0,'cd-form-entry','',0),(42595,0,'2025-03-14 12:15:09','2025-03-14 12:15:09','{\"firstname\":\"Joyce Thornton\",\"lastname\":\"Thornton\",\"email\":\"joyceatdocwra@hotmail.com\",\"contactnumber\":\"07506733129\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA40PqFkFyclz2Brl8cHY_q796n6iklgErwp1wC_wEDuGfd45zDjY7kzA4xDlPjlC199wcJh8xDakBNhJioycKxn2bUqDfwViSXyxyxe_bxvoFW1dHvZ-dWkaRIos3Anyg0amVk6R0yKtUrmfTBTDxbEt8GP60FYWRayWIcqWT4kik7n5FJbz0d9Wem5cT2iv5-KN6ybBSMGNhdZwtsQyGwuWm5qAB8PbXaYkXVFgb8D4VXlrECqHyk-vewn7tpCxmanWGzA4nISfVEQSdw_YzIW8VGge8NKX86qYwcsVZMCMinb9NoJFj7RLMvAC6DPAkvu1FWwxfRUsNNWyyjmdmD7KrPlE3onlSrQJyMtMIFUi_Yet9sUo3lwg_rGzfga2RhjoS8I0DDBaj_ns9gpR0UtdZB3ZwO0skJiIlichdG7Mn8kjaip7txi6pmav6FCeq1Lf2wmVA-FYvCHQpv_DI0S5vPBH2OCTLvJLoCLGQcs8M-xtprMuwKUBzs6wpCyq5xSmqq12HlLaUWRLxlaXSL2C40YkC-FUKwNUMomXxhWRnZUp7QmUH7mHKUjUyqJNXm-p9KwBUxhfI_cIkQ-whbQ3-xtfi0qSsveeIOHTQVjJiOXyTj6iK3gLw1wL7sdX4jvLIVTNgu61RDKWSLFH7c9DZHBx1SmydzqNSteQId7g-3XK70zAO_gzC85xnUrLWUcrp7v3sNTCOMTASxJQ8CIpTXp8Du4uj7N09qRiEKU8rNkU7ZCDXfmBU_nlZdsWKrFf64oF3EgiQNfDn-f26agfGlABmw1x_3PFhbgY1A_ypvPAIuayRx4qt59fV5ql953z2ss0_g_LEim9JaHvvgE9mfYtLbp8-Iid9hpj1_VguKkrcC5PVN6AMit9e2gn-LSyvpdWJUYLsr_vybuuUfNu2NalWnDL4_SRKIeCbPgY4b_eUK7QaKdWXSmQRVz03kK1_Qg1IS7U_UKH2sbQ124v7B5dL0sLdg3pYQzitnIQZ4QIB_LNuXGuzhrILu0Rqu0mh_ySXmXS-d96BKEwqstQ8oq-FSjpif2TU3niYWdjpayWgIsPy9lHYQEmcHYEh_NZlCUMqyGJv3dvp0aXgvwe-_XjlCpBbp3zzxj-rjfwMO2ZlGCtoFzT0UVcLSMHBI7h2VAEoRSaFNboaX6ZZONAXVkw9SAXACpFygLB-02y9U8BChDP4grQD7kcXI60r1Y2HP7j8uaZ-TY7FwEguRKaUxHI9A_dC4KmsWHWjs8jrzKdqOYgf_OZDZrUedjXjnhWgvo-14nYr-fth5MrcnS5B-Xmsazedq5xDXEu0lBiWPHtXtN4F56IBwGEmaLjKMfkfhZDnXR_pnQcrnvmgmdLafvDtAramIMCsTpKbVRo2jwFaOtdqoYQooe8fwcdmEKxN3_TdLRqcgEbHmUpxLbjmF9lBj0ixQ2PTnq2E1T4H929z2snEwWEGiSZy_FCz0QVlrepsQielqy3gkNFIC4ifcsSxas47XRQ5grayJfwI5MFJb3eURN8C7DBJv7qVolpgVdx_Wtcqkhm4r-Cvxj3MlVsp265-mKQ73ZoYZu2rBlXeTr8yq7CUDmAdeIvNA85pN65sRKel-wmG5uQBG3Iwk-oxAGCgHVUb83f9rLeVeos4aHh1Egnm_TM5i4uO4LBzdFdkqi7Ya-7DFvmJXBqYsJSSuPWLL0XvSKeLlealC4CBgGPnnT1xl07WJs2XweDnZ-3ER-Kx3DJRZ5tcBUpxgA0TI0u5vqrr7FVsGhXV3MJUxc04bvr4U5-zpPGjgeidnlojw-9i3e-1IYjAvN5SjsQ1JzUO1Gz2dQ6soKAjqw3YLpga23SuO3Nf6qOf4TTFzSx31ZGUnhnKmg3NvBJXVdAv38vtJhnoi7AbQTme6sgoE5l0inSoDcXhPrZZ-fWjil7SDbOJkFrUKJLElPzWh6igN1BsglgAbafe80h31SeTmFkrxgiOlrW9R4e7I_gZxfGtM3n1SO8hyvQQ6U1s4cQz_5dzFItnnbGBocaSb-LQlB6_mES2DH2TKbDuL1byi7ZJZcs6ohxa2FHtCo27RSE_V_yenLon7_AguYWemjlix9HuQtRe5dypBSmIkQ_xeh7OOXOZVrVe52nzSevtoxzOphv79CabXikTNYRqhePkR3zrphzSVD-0d4nPwAjAyp-6ePc2mXKD6q5TLumOR8VT1Pbe7YjKx0W32NvsUpwVanz7QQeIgNMIlT5L-j2yaDvj4t-m0K200SEoPayslILSjJKxBNWtaXf9cAh7XponXOcLo3xLvEthV8vO7fr0lhJMIO_o1neswXf_zynVjPNKNGAArRpkAwa5bcTkaE8dzk1wnXJ8CH0FjbVc1nBIw4Ej7zlDdQAQK_yIrkR0NQ5qFbJaBg-TotGfY0SYzwgWjLBbwTMfsWX3HE5ozkzWA5\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d41d8bdef5b2-17637036','','','2025-03-14 12:15:09','2025-03-14 12:15:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42595',0,'cd-form-entry','',0),(42596,0,'2025-03-14 12:16:52','2025-03-14 12:16:52','{\"email\":\"joyceatdocwra@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"SG5 4ET\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA7sI3k904-Usbinn9VVfFhnAcPOO89IamZ8pwQj8y6fQbrzXW4kX27fvk-yfpStno7opP3zsR4Pq1aZoE0mCSfTtwMcIqbkJ0Hi8ge3sE9yO5hsx21dkzUYFA_oM7cb40JXH9tYBdgWcBFEzZWSV6A3ghMpookn1StQ3uGVkVcOubFnplBGsOD8_MuEgpvWzTVgS1Qof-6s9UhI3460jY8NaZQlj94xsTbEGj8WbP6rUKZFzoSc-1hxxk0UHkVcmoaq6HaCN0liAlrfxA-agLqFpnUv8EadtLflFeT_QLsoQZlHkhlaY3TS093asWvUQTJ5YDtuV7UBhdYZEXicqxhZQJqKCWIek9C7xkPPFsE_qZTMSLhLcBpFYVM1mZnQTdxv8iw-xeWjFzrrQOtTFu0hTQKbaxi7kvFwx7ALCXDEfhMw9JMLdA5ktESiLoLD81CJ0ZyK3sxHmldSZDQaPuAihlc0g9oHpUfgBvhPOy7iiRRRRQr3Z1YbA97K16utelx3lgPDWYf5BT4Ee9E0WibZc-QKmLs51mJFJBjiPYxHDy3sO08VrGal_cpXaju4l1n20IUCoNuvn7cUl-IuhECVEnFF6Z9qfQ7ibPNOMNgRNRb1e1JmXlFx_zPnH3kIadnIoQOxBPpOuq9xgG3O2AputImjIPvv4XQSjnfyq1uFPj0zYv8vfympkMKctniyVSF08Qm8hg1oVYgYhgX22OYHUTjZJ1EgZXOwYUMk1Gf6KiyuD1l4oUUobCwTn8JpqMZnTYC2kqdm7QfbjnEW6IvF_xdTVs64w29n1KS5S7g2DbJAPeG0YVukqS5Tog0xnPgVyguWSM_u58y-AAFs-SzATbdUcNxTayMgHBvF7uqEv3wW7uv--zdfMIawzTFLWRtubAehzSRulh0xFGMA8b-7eeVXxKaq2SVjCWBLYbYdGX9xA7Z92Lsw5jQQtyYkpTos_qedIEPt4RspC6pIqnBZXigYKMWpsHJAhEKCLIvHeeefiH6hEX0MBe7g6bTfW49yhm1_unG0eyLeG-9sPI7EHGp6fZDmT5XJ3F8WWwuCQkegYMuar3zB2jZBeywHLQt1a6PxnZQp4q-VYcb3OoC_-q3BRSZ3ZWoyBlZAJFmVwjXcehokOkXlEE93VOQjVjctzf587Rc72HwwwwTkgbid7Ils3EnkEWLraSn8CT2OzaqXsPQfHmVrYkh_tzp1S6PiohMqlFQsMvRazNqIswI1u1xQ7lPYX2DAIiFmCbiqiPl_DqLQ4DKgwrFcwBbdMcblD4dIO_2NidT5C0vkoEhGY99DbsPzYsbpOCGp-TvBFS0895aN9EWA3S4L4zqaNUB_1KRd6NBX2KzM39oVEPM7wCUYTBJiUOh7Vh5zLEmveYFdPJPIXgW_U7JZpV9kuwYujIOo5E4WHsOszoNW8fs-jLz9j8LUDlwo0r7Hpaypq4gTGydJ4qQVMRw7TBqZA4SQh1xEnYNmGKwhGNKJzEgPVqemB9NOcUweMsta_jdTVOJT1OQanBlplptYq_A4zkW8MEInu9_0iSfnBjw-sMYt_EPQk2dWqN3AxTalchXaDkX2hVkwChR7KS5PVTKgvqAAFt7CUejnTbF5xqVCgEUuoZANVaVqOFvEJvf_5eiHBASvUpaQYSgTDzt1J4Y6jvYAe-HplQUhUFl6BXSwhqEyeJjde2-q1rElHPvQoaG9g99jZcPLOk-NFYdmBaROmJCENdT3IbRLRoWJZCqCffAP_m-sUkmzb8otZUUCttOz4hji271Nv58J7NfLo_xtxCgtbW0oe8ZhAngOJLQlRJRwC3SlJO4oo9vI9CcNUda5AUcntJHB1m5r6lpdJC635eM6MznUVFAtjXwEF5_oj3yaK5h-jzXilZyB2DJtM7-wP02gsuFtKo0SphTWIwqEAf1fnDGxhs_a91Cov8MX5AiXGm79c9yiTgv0c5OyznPQuRizqtOJ8y7ts4s5Xtwa29I5uTkVcs9O6MgrOL0QnqKhKfb-k_LPCsHIX9Wd4wdmn3hlEHDqVy7metC3IZwwWs0gB9BHtboxcZ0Qa0qTdBP3pUOU9I3axuCho_nLa6eETulJKbhSXdeNgsAFqWpYSBBlX_nHOrCRBEyUjH-b0DkmhzRkCCWG2bTs444iUv7jDBdLXp_RNxZ2f0v-kXuZedN5RHtrASKlPIGWJ9qUd0iKTNoKORXmYVH3mhg4Qj2LOakYPk-gZ-e-G9wtJxGI1nmQwZk0PO3MkbImx0cl97-iMipwfOC5qhsX8ovpnpPBXEcbSVVTqLoakgILFvip4N0Q1-4lBhSa7LRnDgE9a3It98uXrcOokUBp_1_C5yBTRWhpD3weEwb3eJ-GImOwpSm6-znVftiCJufgSSbFSSUpZ7U1JnXwoG7ejHZWft-FWYGkA9Mxy_zPYNMKhtJF14InHXkQQm0RO3Z6ClREABfr53pZ5g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d41e0cb96755-23227842','','','2025-03-14 12:16:52','2025-03-14 12:16:52','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42596',0,'cd-form-entry','',0),(42597,0,'2025-03-14 18:33:25','2025-03-14 18:33:25','{\"firstname\":\"alecia\",\"lastname\":\"mignott\",\"email\":\"aleciamignott@hotmail.com\",\"contactnumber\":\"07454194949\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA5Q9H6rK60PqVIBfUyQ7HMBqlAlDfBpIMUm1NSS10-vkRcCvhttA_KvwVFPo8Cqsej60cltkjUnDxt24PKnVvsByODPCscOMS902YTsIdeqPMIgF0-T6kBviAOxg7Lt8rKKse_prACIsFGcq8UsBdVUtNZexuLX7LaLS7rRPoc577vDkxRH_l6jrDmrjQ3rJ5P80GDzweDxaKL4sP5kbdGwj0nckXMYZWTNVOk-87IHLT4C8Py3Gfs0s6LjQlvbGAV336sixUOa3zTga6F9jIJ80JTg_3rCJ-bMZ9A7UphX02tBFaKmv7AMdkH57wFIXXQwG-EzZgvrtNJlKIP9dKuwf4a84bJ-MWnSC0Ggi4icnNlIQECWH1tr0mp2QlhKQ1QnkOl1hqMl7srWGU3Qw2wAPXwkdo_iLJKXJUwxILeck_NyX3ChsAuvMP3YRIJoFs_9mkvz7nVYvL2VN8I6ugcuo2lgFSFDCLWZ7apGkL8rJ7PVLRLgmDVBcsyIaOlFpXuMqthldqWUp3W8LIAsCUUN-6ThtV4y7k1khMe_bR4IxiZXMxWQxcjYqTGh4yOTKcMehtHgjzQ8hWRCHr2cS_FhSluI227e4HG_7fZDZ1pD6ViJ__w6FnU3bLzgxm583GKJPoTGTZkHChtm6R62uhJImzyBrWFfeVssS8YAAUkNJAh29HQEHSWBlOlnVPsLiP7D3knQ0vjSb1t9fuUzXiFEftR4LR544jKa50vAqsgO7LLzb4OCnloQAjcrPo2R5qsWWjbfu5w23ojnAvl4H6uhOHUkrGBU2nqDYYxZFYbwwXH8tRhNTg8D148mJ7rJT2FPAPAhDBUiPJTkxhiOrC0idcVJi50zXx6YPIKa2sWqRoM52pMtWXLTRuOxXmmNcb75k5Hde4RcDg_gLPxC3P-lcq6Op-z3PfIq4bCySNSJ_8_eUfCiT3uVnaThenaSHW1SQLuz0SKiLFdfZ4kj2Kzy6EITIRcgon8AjI6Z2Xi_-ltW1b0WGATV9slG1BTj3qzb1GgAVaUl7UGgr9b2yXnFcy7yRYZOAPQFjeLLrNGdBznSCJNuDvtcIkQPA2rJvCUhktUBERMwGxlGTVZ33aNun5uWrVvwBRvYx2SiUXgp1P3hb18FdaNCfYcxoG2zo7QVxA0SWOkeWFZnb0LojS2DAmUS8a7WwMH2_utO3biy4gY6GmkaQm_NLCYWydFALkrLeB_us0rNZXORAyeQRyA7AYCX6ehX3d-b-0_07sblTCkaszvc6Y-49peH2NEAuOxaSRA5FQzMsY4VVhJYJkRlpRvJT-iFX2n_AFmjrhCK6ihfikRSORvs7sEJSGrLvc-Tef_1mIE9mPMuuUwS0FVdixu8KQVJNpmo6MdfwL_K1iVh9bGSv0WpjI6MFaka_02wKFTYKbTk4wbWVvVzNK0zG8p_fo7wCqFcRw7VqyO2k2vO3qwv0khti78qFKiTn-0vzssGMi_Pk1Vlf0xVh4-D5bizpCUTcvooeKRm4pS7bs468MVHl_kDW_zYXnCzYTSCf_SRwV1811DeFmc-aoBY3AvnPqXo7oNLQsxP7HHu0eHfCWKgXnsG1mPkoxkPgx_qU7QuXleqlmQY0knonLTBhTrSfZYhKtTJ9mlmCq8YcAk5G9MFAQrOeYuY7HmCeF34jQoFdVF6zg5j4f3KADFU4Qa1QnHth7uYgaqSM9tI6LPLcfMYf0rUdhiEiSmF87038T6OLbvlGCJedNqpIETGmM6Gx7RWogbRvbDHgFLKMdRDpV_Sz5DYydTBOxyI8NWK7H2fkYic5jzl1hYnB6quEr7snULl8YtGURpa0zypZbfZ-inqiCNEvCUd3ufaNX7hoBXhDVVacgLhlymBdLPjBU08IKs2ANjyYXOuNMD2RzJWkb5hbhlaQyYWz-27CXylkDQa_MAGv7CzBwj7GZHeMJqdXSyEer5OPF9Lm1wvCwZt6P4M8Hshf6HqqshNib8A7JGYyWIXQPh7RiVYvrOQaekgJs8ifVkBuBwi5FJ378X4V_85F5S_UrS6DccXm2UIDsXLyEOwCiamdCgvDTqzTClc21LnwnHHx0Al38Dua08AMoSkC2jLs6up3KhnWdXbBATve6bvFvSny9rAfQxez3bmGw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d47663d4e409-95090735','','','2025-03-14 18:33:25','2025-03-14 18:33:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42597',0,'cd-form-entry','',0),(42598,0,'2025-03-14 22:25:01','2025-03-14 22:25:01','{\"firstname\":\"JOanna\",\"lastname\":\"RANDALL\",\"email\":\"Jokarate@hotmail.co.uk\",\"contactnumber\":\"07538985460\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwp8--BhBREiwAj7og1__Nk98DL0dbEV-ypv1BV2ymZQEsjIpz077eeiBcI6NjL6Fc2o9eThoCOJ0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6p2V6vqpdMusSP1_-EbZQCpRG0Wn0DxxU5ysgAoQYwpEuoJ6ha81wuDc1dq2uXBLCygmlC3ha_WVqQHVqouwIBhDZI1NJZ5-pcIbissycIAYoqOnNQOqZqpg4bkocDvIezYZ1c51A4zmUpBxRABzxOn900NRll4MavW6ZwoA1xoWjpiAzoDXnixOmrHNL3FbfTDC8l9dQdbJNRrzHheBLgvsdBcvHBU3YCUPuULrhwVJDKPEL0oRhQz1mwgAk7gYwwpGCjh9f39_G0duPmk-l2bIaExXFldk_h4R6eRIh3m1EVxXx2mRChkLUurigyDkDyc78bUhRqHFQLq6vOTKhhbMDghVF-Hmqs5csT8CjkJQwseXKS8J5pYY0rzPcjmpvMM_uuXmZi7bRD8aHTZw1Tc694STrTOPkk4nRo6kwamiiPqnJjsMGsg2Cz_cJmTCa-jbOUMZEQblIpypBoM4ulhUvvctcqTJLcfhS5fnKuDy52Sl5H_u_6s8Asm49281MeTrW3eLlxE_8YeP9inPqWtgaSAu_HBnNueLDzHhdeN9vhL4sP6aQzluTmWcOEiOD_P9oI7LQdragWkpO-DzsBqRZUqeMo086kFkOEIxXlNzag3xHCD_GdoxUomM5l5ZenL3q4ZkL4uJbthZfME95shS0PO_UUDLgx65UmuEBave9MKMeUBPyY4ySk-5qzyKX_PbqAWM8YRfDPZ-1kPWuTCWRrxPtenrQrOvDznLzN0dJeFNfJZgORQzO0ytUXPaTus9jcEZQ1tthfTNCVVm9jIn3vd3WefVMw5UDLRliGSPGWgpqMmCHaGnzXwv-NwjjuCIT2bEjARMTeNRqemhlR1CDXoI5OumB3bpcFkgacC57WCzbvTQln7qZJ7PYqByCLP-vHq-0TFHYBK4bFtW445Pa6W-2Jp9TOZtEeyjz45Z7mNq1EZfl8uzWp5iyW8FqPDi7S05i_Vg9FyYI7rznoCJdIQsZcKSOUK-NaeJNPZgaxTN--OBXJwauo36dl5rYaQ1XroTbZOJCA_0h9wle2hLWyNXHx5phPcjrA5NUWIhLzqEVldCFu87u_dY7PrUGZbTbDHUi6jviq2ZyotPiNIBh-WnQ_G-6xv8hSFaa9WrZ0n8x40zzw0VkiTKm824I1BWwovJs2QycbN_gYSEQ3SyA8JR6hUQffwYrYPaRH1ijtr7vzWPLyqCoqLhhYdktKB2dU7lYjdYYgKkh4sBg9CoKVvyWGmeVRplweoEqfbO27jNQZwgOy9Wmcsp3tHTY0LA9m2VB5xeWqEphw8rS9FjJc7WRI1FSxxmwQPe2JWQB4X48xG5JWDQIchf1N0zdr3JZ8HBWvEnv2hzOoCt-UZIhOfWkQAE_pYpwwbyPc2GlnBrvCoWN94slrFP-G7MogK_O7mOTAalMp74MSDsf3rrZpjiaNGhTCqqwTO9FvQH0Rt1WzUlpRdzc3c2TycQBrmixzt_-8ho1medzxAXQ9uozCTxvo_IU7TJMy3Ans-ar5IBfqdq9y4DEdrnkEFxkW7bsPozjwUsFQPo9oUGTHbZj7Mk6yueqOh2-WrDgiCuwjnMerHdbKHwm67ghdoTQ1eU_gh7xnTZhjn7pGNMJkfpkPddNXytfrdowT63AeCdl5nFjiHC6XIlJe5VnP2v7BMMER1d6mv289Tt7uv37s8XSAlsPJT-p1ZLsGSmZU6ICRcmiPy5ahmR4w7tjGdRwR1QGJDMZklb4ZswP_5umPgQB3pPP2KJ-r0Nn9G3_9aClxYNTeqjlsVEeRiQOACyztXC33ns3mw-A5WbDtq2yDiwFsjgk4u1ztebzFqphexyAOk1HukTVWBlYTnbFZXf2BdBFNS8bXDRcr9cTeKthezrdVPz6z4GvQuRykX5Pfi1zUZcnZjdtbBYNNJYE2TOgByurBU6GM3Aycg1Ac3q4lpvTlij8yoaLNqy-mcvgIOs3dB6xyyjl_82FG3Bn_SiESXQFr1XuWcESTSU-2pxIODjCoD0beVEq7It_ULoMnG2z-V6VFRtY-WRKqywqQPzUsc-oAYCniJ2DbSY8usKRKdOcm5YzLvZQNhr58rS93Z4MB7IYZnmfINur_pNUowz9PZ-ZW3j-7qrqcexupSK1LNcmXjiiLk5O86diH6S3Muc6ULBg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d4acafb5edf4-16030411','','','2025-03-14 22:25:01','2025-03-14 22:25:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42598',0,'cd-form-entry','',0),(42599,0,'2025-03-14 22:26:14','2025-03-14 22:26:14','{\"email\":\"Jokarate@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"MK2 3BU\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwp8--BhBREiwAj7og1__Nk98DL0dbEV-ypv1BV2ymZQEsjIpz077eeiBcI6NjL6Fc2o9eThoCOJ0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7v1FmEEWUDFv3BqcVSun5QhHcEy6e_pvg4NIEn6i69dDeNxcLqkJnVuoKcuiyoV-KjT4vGS6kJP609LWnAG1Q24n4HMA0YVeuSBQdAbqEV-4pAj0Ztqq_24X-3SzZXJUU_wS6I7l8vANoQRcRwKQ9f9DugYdGbpbEL7u7hIhTkCzCL8WTnqEq4iGGD8C9JnZpOAcX4E1T72HeLP7YcWbu_nfdaurAr6vGxFzbB9z-3hQzk21lXt1mGgGTrDJlVUa-B7QsfrRGtSMhtigT4RSlf8awPIM4toquaq1b3r3JM-S3jK_vySq30JOBFUH9iIgObvigvCPXEVNLgqR-niE7cH1b_aUatwABW7uZTZ051_cr7z7OFUZ54rTKPnKUgmwJ7ndWBdujKJrmuugqH5bRRkGmeUrM-Fg07sytLI3NK9aZliardW9qr02tUSTis1nn2UroWPJcxiVYP4TWOY_Vp_YPZ6UKrlU_p3508Ataf8iZO1wpKVTppcAsmsmppMH6aOIbFdKwz1A6l4RaDQ8gnuEHSR24w-bqAudydKfClOtCr-E0rLvUBBwcl5UGt33rIa_WzqWLiGkLWXw25vD2FlMwQ3tg0dCeZYIfzI4kHK6xHXOfSMB-M79pQhQ8zo8qqErIWqhfZ_zDZ-OPMkm0omI3_iZObjni5dTLVGtFJLUyZOKRCDs4ppqUwa-8E7iYBbEzAtEgSdj7W2KyYjOov5UErE_HZrE1LTJ50oZK7ArGma4zGY_kAoZZUc73i4rtVWDMdxaRwn6sxDZMJHLfYQzWt3YDlbAbl1qN9iwuwxMXottjO_VqG3EyP4jcaJeTYreCbRAPm1v1kQQe6lh90NPCrxqc75EYRKD2e1sZfndmPpufz1iZBqtzP1ZeuPewSBvQw9qb6n7SOc_MV8e7MaEjThgdCBHPff8IbyjmXJoe8_kSRgezVs-a0VAIsLnJbCopfgXXa6Moty8DAVxztWFMLYiMqXLohP-Odfs9BOdODo93fWJCHXapz2_Beixgko-4ruFYwvSPy3rVQqbYWSLUwQXeUKJUzTheGThrHySIKP-sxH_cHc6xglZNu0XcowH4Ae_tQLyHALTCpm9p_7_Q-d8KVcUENK7WcNJmOBA-41CGAogiBMSdI29czr8aHWkwxiGYm1VrIk3RXIsu8lAE-oM3pZ6NArJQ8JsqgNJCef9_qMAY9Yzgkm0fL_isdMixab5A8ca34LmrflGt2EZPHW3TwwT_-icZsEPNKzYeYOyYGsqqKslnxHd3lOUcGK6Bmw16mTQNZu8L_mQrEamgv_y9FRsz7nqev8SgQEiX12LbSmXTVShZvXLHIa3QM9ZsmH3nPtcoo0w5YXHO39WWgFK3WSofkEknZYtlRRaKdsjdY6H4S9xXKvscZkmZF7FWvapGSU4KYB1K9OG8ojy18iE4ia5OKvdyhr2L2w1V6ce8fOkTzz0DIXKNroS24RoFdKwd8Y1ISh--3AYBXu-IqaXGhsETscvNLaO4qJHA-DJInsZ6XXQObVdMdVZAWYDeAm8Bct1srDVr5iR05YrvgIuq95BjQ8pUMWnnK7jywjqZ2eK0h8lS4uowVwFZc3j9-X0KAYbvKnupwy1RRP-AdHSVr-RcLP71DvvQIKQfo4un6HNreDIpzGXSntEihoZ55NE98-E_YE-XM12SRW9lC1qOFILT8SVVqPs3jq70x-G4BrKPWxio-e8vIaRDHPmsvuaH8Pgy5-Tz-2llgiGXIV4_oO49keUqngi55oxFkCIqTxgz_2LPlUCIzvjWExcambhuaaTXf7eYy2H83qjwr7F3_6Kq7EJ631rt_I99e2RUqA7mUeYFoBwQ1e7rwYs421k0_2eIpXQi15WYjohQ5qgzlm0zjQbhuN3T-1SSHytOmmbEOJOcq5t5YobyAsP0RERrK2nEaTs2kmRrz8OdkovpNN8M6Ydkvs85r3tX2p3Kl-ygMbZjtCUqwvsIVzmMpIlTALNejxo6w2RPFdFI8NTC4E8rYpAf6DjXWijz21qdlxXOT1LFl0RffyI_xIHtDduGK0kFdKeSxro0p17uKpVPCD7B0O-Wced-q-gJZ9v6FfNzk6FWpliSDf9SqLF1DDjzBLMc7284czaX7uXqRZR8P87XxNaNY3L_AjbBF0A0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"0\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d4acdfd7e3d2-47063206','','','2025-03-14 22:26:14','2025-03-14 22:26:14','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42599',0,'cd-form-entry','',0),(42600,0,'2025-03-15 06:31:47','2025-03-15 06:31:47','{\"firstname\":\"Eve\",\"lastname\":\"Burke\",\"email\":\"naturalmassagetechniques@gmail.com\",\"contactnumber\":\"0721793630\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7UFBsngVvgYrcN1lp4SFSmpOAt7a5usHp3gMJqFxR5aL9-2kTUh5tcwED3Gk2C3FEKqp5hNTzKg4P8-i1Q7Ij9_qjV6R7XTYCLuucAvBh6N8aNUJSm6gjsdVkBb015yEzRAP5bFo_RuGWBNNdTZ5t-0U0upandrysgNnbJKg-VPOMWp3mwZlxQ1xSZXEE6weOt4zE8SrCt6QNoLBJLa07jWoYB5Wa4E2mI6kUOFc4Qw2DACmJvZdWQIyJhNxDJJ81nbYEYBDIYgIooN63_tQ-4HqB1ER62cmIzVmXwi2U8osurqm1J27pjV2AthfsLDWnQOBmeRnoJpxNSP0tGSgbsHouxwT1v4Ij2ki9SV2sMIvPQTjfznomXBdID-bT4QBE49v5KGRYoTe-ArQ6qLgj64KbnHRCjQYspOm00WnbNUY-ln14sNpO8lzSKsdFw7t0VdDiSrrWyXQVYWUQKJgNbKHaszKOmPUdpWoSNQeIOaJJJJQZl4y1-b3GcYhZNkUId3AjscRWAqAj7SNvPyzB93JXLdD4REFSkHpdOk4BY0P25M56qO4lb2Un2sPxqDS16r0PLoLZWquh0eYbQ1PAJ0X8mLJp6QmeMt6cxlznvU6v_VMgsRjRLlv5bT86oyYnAT-5ZNRMpdtgKk35r-nCQtlPln1ZaTRp-6naiLtvFEcb41h1eEtaNfZlgO8RR6PIc_SEr2OgaJMEsyhmUYohQDM6axa1jZZ06YkcgYtnca8acop0MmrANljNJuco_hgnmdWwu-puFoX196gBRoImqFsapitKXm7KKnrVyjSUV_rKNxGDT-33jvGitgWEuXTkfGn1d2bX5DZ7uIHnHkxtd84kIXZu_HmV_YlFnhWQgxAXcvaEIU9ca8_koBmLasipCc5ARNpq25LULPKamwHIY99xAcNGfWIOJWJQeuieEV9AonWzsBT1LoF1gbijd8R9CuFqqB-169PZMY4GeDKTiWqrkTpeLa0a1Dps0hR0JjxmX-MRYyX9U5Zrsl4NHoMG6vA5A8pzm3zifkG7zSE3swJtTko9EwjFkEMvS6sJ5ezidTTEhhOuOLnQM3v2pz0Z_XcACemWS7I_siWFM31IkF9hIxVjuNMOC7a66YdY7Q0R3AeUekmGZKmzqOoZChKuQlppdji_AZPhYAEsvMdi5OBbjpxZzFXDcOZue_oGwcCe33d6WhZaTM6De_go6c5mYV0lLtk6KunGgde2U48Fvh4w8_yZA0gh39PycJ4Rup6hiSHpNCK5ReGiFVLQ4hKuTobG0jUUzwafhjGpyoupaU6AgYQmBSVwgHz2upTEQtV_L5qAWXxyFheBxsmM14Kg18J5_F26VVfnCXEUG--kOWKo47Ev2-iVwxnbo56C3OevB010RuAT6Cmk1mg-51qkuvDe5x_pbYNaEigLPeAZwjkfbEIixCNGJqTuCuMyFqJJnRt4j4g3RsTv7pF3hfTnH_LJjZXBIvKzwBlmStP4ZIOmkB1eb8ZdOX9r4iTBRb6Z2dA3S6jJiz5AQDvO45do2zkdNkr1zM1Qjc3LbzrTW-JIDvU0MhQHWM-GL6ZL_DDvWS7ysbLSnasnME1cX1CzoqoYNOd1j-6s3a-HFw7GSBP4Ni8ncIsQaEbpRkn0BJkc3hrt7jVkeIAPSspJKMV3H68ITm2-jE9H1oEdUY7m8Muldd9H_6fYV_5iS9Vd9yCLaspKqBkcHf3_qnrXS4nmbmc7SkffKxbAOfhPAJHWRNuvo_3J0Y5zpewrPM4pKSBFxQf-D9348LieZo26qG_GwWWjtfy9Av3SnhN-qTkyE5iOpoMDVlpNlNpQoi_zKgENkmiMw3FpgBTIJC_2O_RmPTkd3Oa-yv7jIu4HGzwmGOsBD_6NAOhuPDzIOk0zLbJ5cX6UCiRcQyMFPEt9hXcZCBbE9gRMqTcZ8g-Epj_asBPDv-zfqRXt9w2CxBIbapQhr4h5wg2mOXl42aG7WZZp69W_lSCdoC45MQ-OiHZW9cXu8TNUyBQDsjzJ1ZF7OIHcYnknHViBLr0iXjm-ISJ0FOYdg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d51ea83bd9d3-57332327','','','2025-03-15 06:31:47','2025-03-15 06:31:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42600',0,'cd-form-entry','',0),(42601,0,'2025-03-15 06:32:35','0000-00-00 00:00:00','{\"email\":\"naturalmassagetechniques@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"5\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"1739\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6X16XBkoncuUuQ6CXeei7s-7GFfTpBsc7nMlsH9kRqFzYsNlMGhO0BiOhTSAPUXwenxEYzC1eYtUxLzgT87lL5zIOeHhfblQWZvJqcu8EdIWGFDsFPB7Ll4yHi9ylZtmpkit33CloZ-6oQ9WyhmNMAzHXZ0ax06IhQKe7nLU6BReAzGAZ4P5l2wwu3-6wR6egpBwQcQJc4C9XtUZmRovIMaWOGL4F_I_lVnlipFGLreHpOWJ72Ls4zVj81XHM57XaPAhDkLQ27ismbkwnChU5gJKqskl89MMnmp7qFvbvZqRaNptDu23tcAd-07dGbVMX5Hti9RVtWLDu8u0EtO2Gm8kn9mw40MF1P71h4RG1ZAL8s67leYwbr7UTynpwxsNvXkT6MKaBQG27ABfIXiBTG4eEptOtNls_zQKg6p7_b4st_bhu-ZBXWQlv6-QZsgmGD1wHbiZ45mO5XgIg2rKKj3xDvhxbaXHkHowviG0yoX0zcBOeOEUD0uqVF2FQXwxOJJ-f-6CfJ0AcPHdv1KVcul1Yai81U6z7lBWM2tWpAtFZ9Yc7dL1dbM7PpIYeAOEaeqB0rPlCguQ2HGTRO73lINLvcFA2WncFJJ9kDVofa7O09SEeQa5mV5UCCwZxm_kPWxcOX27_rOj5v9gyj6sFSg3EzObSyE7KM5quGj25YWaZFe087KO04UxfS6XFFy2T9RpoGsXvomEPksKeJWs8DnxOG4E-n0foGnPO-4LCYjwPXdGB8U8NdkotDeQdaBwq9SVA4jL7Bn2Cdu_guq9IMPlAVwe2y-QPfMsHITdLNGwZxSTonBmvkS_CXf4Mk6u8VEiZOPSX6Aj17-MkPjYfFUL6Cai8fWEewgaMSB2CkwSpy-MfF7kxNcVI3UcOI3x-gmMlEfyxZ_Dzm-eIPOCAAdT-9mvG4vUX5zlRs5SVW8pkJLOS911oG7k74iefJ-zRvFDeKwAU6h51ZMZMFM1gzl0LKUSxIfnR8BDstCasMXaj5jkXUZUYqeBypMgTy_-TTHF3Q9xC-FRMgQU8zppW7w8dej92SBCv3ZuV-NLLALY6Si4TnhGdhC2gAkb2e-G7FW1vUDgwrZ6g9KkpCM_Fmg3nSmRWYn3BfOZCX6B4nRwxfXlpz6bbcRvEeAeL8g9V1yNEtks3IIE72JDZk-SmPgAXzUYzDnRt2lC2WEDmvvIk9Wo0d83wUNfva9HtwPIDXkNIOd1p3NUHaUM72uNS7M5whjl0TN-UZYImSzVF0RatZ75DAHLExweomGZMvf4gUXVRdke2iNAgXRJhd2F4UL8XsJgcRDqSN5l9zKpFRrmG_OLLLaXo8arNKw4T_IuBTy71fCBdFydI0T7D6R_OgeuLKqRkz8A9FbNIytqVCmt17nGFyL7E3TdsoUe-QaEho1PbIcfuhcvimegicSkAtOoPE8nQWtbDb3dftd_yqZ1pB37gVFnbVMsMR1ZJ-9g7EruaaEO87F9A1rHy7a2zAnwIMWw-Mg25VwUlFQsSrvKuPuvhw63b9uT5vKNdbud4gzv_P4GU0kYOXi6YdDuZPgNhXz7rypTC7hJe8AgBxalodgx2ZBEoR2aFSEm-EpHF6TfDL_PGvx4tudFUliOKXmTAcdJw0_O9RCe6tolFJeaUgw8urPKpl-kGIOaML_93HMnEn7i4DOMhn4TiDgoNZHoRkJ9GTDZnBdfxVbGDCTjeYy0jtS8txY-D0tAjK4aH9F9AIQqjQlmTZqZUHvpG2Pd6iUxLLsllqRNyd7EWPwk9_5nZLQbMq9Eo8SuDUtcRV3IL24zh6knxJ5P5doXS-B-I77yO1pG4RVBYx2ek3NT22NgDE8tv_84BRrHD-4j0a-IsSEadavOA0goqcskj2El_uX9O8z4f8QX5QE59PT6l0Etji7SKFvusIAURrqu8JBtOLDzEFucMjMdXb71TZFXebmnuF_mxT_QE0UGPfeg6IH3tZeOR842otpLZXgFwAY6bWwpWtlsREiop02F381dMH97imAu-ywKGsdRd4ifql-wyyEBNr7ct5M3Fnf8gpI_2PjRb9sLtU3JkIGZN83wpygA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d51f03815074-80860328','','','2025-03-15 06:32:35','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42601',0,'cd-form-entry','',0),(42602,0,'2025-03-15 10:46:09','2025-03-15 10:46:09','{\"firstname\":\"Glen\",\"lastname\":\"Gilbert\",\"email\":\"g_m_gilbert@hotmail.com\",\"contactnumber\":\"07824366231\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5Md-_wZOci1Jibr9eYp01il0hGfikOhxHv8FWC0c116FhIX8L1iXiz7qF2vj2aEyKE3dp42g_M7qSd_zVuJs7oN8YY5cQRQAYqgNxvlJAMATTsm7T-qd6-6-lfYfUZpa9eR9QpaYZJFCBADG8a76cP5njAUobCv6B9Xx0H0eEq4DICNCmOy8_vOmG_Xki8I-YymKztfc8OQ4CtLDkb_jpbgSTulTK9BiUQwiA508SPkG_I930kN1kekLEeeVisgLc43V9nzox0YcKXZCxtY40MceXt9rSj2UTPJ-HcfQh8dUvfKDYBVQukLIvysw7VvtwmQhWducfik4v0OGTgmhDFG65v8ZYM9Jd7LNuGnYxUKb3rICGU7BuUnj5S91oTUsyk4Iz56ee7yHc6ZtUsW-i7GLirKpcJ4JprYfFSNIYwVMY7SkTYH2DI_5TH9mkQ8Re7_H2C06xTIUq0cVmPFnfcfVH5TQ0lxmXmBBOWnBe8se3tB9Tn-Fs2c1mxWR3SgQkQ6dZduvYzD0qduYDt_2VJDwSddfsyJL4f3M2hqTTzRoCK-hSOjWIDluabIoD533viCgmwqJHzN5LmEpCoimIDElNGDHIDRjTAU1mEJ_AFZJpp8ZzL3If8rhU78idD6r-afLJ6QafMFhVHMg4JiS47VCGxdItEss3b21xjN_aC0K-Qk3jJcoOZ8LnWhwXbdJ1zws47wM5swYVlVjUq909D2vtcGbsfcDDHn8-qNd86MJH70couFag1b1OOmFOcBqssHHGkrVUATOg6nLVd_fJ0NRQFl93pQ5_phDngAdn5A-Cj-PJxVnNFNRxe4FWKPfJ5xIDJ8s0XIUhepWFHJ0nkK8weyQ7focFr5Hd6YgAntCEPqWN3qjmgKWNKSPgAGJXPcKqCgvq1bdeOXW39HdFfkdBRLLwBtjPJC_PudYa3L72MkI4AUKqdjJnDR4NwmFG_dnEtffQJN-D-nOImApplE4IQZj0WvZmv7lk45ta0KaNZ1ukBqPmb-b8bHjCkOSGg3ZM2D7cYfmfMmgjCxcrkUYUOE8WW1VvyiOWgK26vS-IA6VyiK6ogU-c0Nt9aK1k8kxW5-4q6OZAcsrfbWGrWQQok-luvDggyQkmLsqMrVMEkU6p5_JXA32WEQsSJ5uHxTTdGJzoSPetj723Ad1gkWFfIyZzgRtXZQi1VhY9I6xLN9QznhYTDftRHr_F7QHtoKPNdmxPDUGVGSV0wnC5i23wMb0iu5ur0pry_AO4meXrbj50v_N3J0RoqhkUPCHx9y_t8696S3qZi1upSxRttUWKfcFcj38BnA94go2A4XwjAGEyWe-Qur5tJrJpFuBomt3CQKZxtnFROA1zrC_aoKGBXyDNdGMbemJlEsmqgZKeXzpHPKRJVbNsPknlRd75nzGRO5ylZKqO_LxWaxLthqygWbP3EH-xXNpbwOzSkivHQLq5ghLtrz7WDarYmO6TGMFWZitVfnKIt6tYYPXTpLS-aF2fdEzZJX_v6E9JhTM1bvesSMZCJ3osMCLScjOaEV_b37x5CrBkb_JxjTDQamislLFKI6CYDaRS_x8H1C4Y9G_YBG0qUtERlyqWr_4QxZPpX9k4zudUtAw94oRG_0siIbI_gby71_NHtqZ0XH-02aJkC16UfybS7ln6T37htxVDKx4Tz1ZlOOYU_zRoCTQLbbVZ1UGfTmlmDwZlhiL8O51mEQvl7fSl6zJO3XIFy6pBoe4jW4rUPbcNHcd0TAbfd3bV4kuaH56HFbCxbTwD348ZBhVLNW6kzlS_NoQmRCJttWv38xnjph5y8G5o7WS98zyj9on4gR7I-ZIHGcHGtkWCIImQZJIW-yUJ5ipXd59U4l9oPmqDXkX2jRxi9wS1rpYZXuIYlki5Tfoqvebxwb_JTMSorRoAjYrIpjgQiTFYWSHqmFdUPJjf9LhlAhuS0qyE92cG7jJUX3qxe_UfEV6JNXfNpPXQq2wINBr319ytnwYY8qAYLSp9lUWGxD4BMQNcRKcQv5-qqqsajZLl2rzHBnQtuM5AaZAYhf-UhN8zSMNHPEvFAil8gD66q3S_JBJ5ehhcMT1t1wX3OXUFnJpchxhjMUHmaRORxebRSwq_76Ydelx9mbjbuZ4B8YuBrCBVudAqz5bgj8DI_KMNDYc_cUSR7G0MN8So2M1J-cNCt\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d55a6509d0a8-76968841','','','2025-03-15 10:46:09','2025-03-15 10:46:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42602',0,'cd-form-entry','',0),(42603,0,'2025-03-15 11:21:10','2025-03-15 11:21:10','{\"firstname\":\"David\",\"lastname\":\"Euliarte\",\"email\":\"davideuliarte@icloud.com\",\"contactnumber\":\"07925020866\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5FkhaTZIpZWZ91r2w-gyIxn0oisjJtfIZHjFxU7EnLyMzGQ4yS5ghkMLZekvFSTg4TeUJDqUI7DlUt5VMjn4SEeH8432OrqN45P_AGZTmXvl5xs95e4OD407YxofrZ6g1x0x6o0NgqSWTB420oj-3zEOR6HAPLUWxX4kmeIzdd-X6GUQYyqzr4YhBAFFlcgOQ3TyKdMBhKDpuUneue3YLkpTLV1WlE0E6ug4OtQHqRIBmtr8vWqPkQ5IomBttMyPFjRpzE9hI-bE8tCRlTaCvX3wU-5D8oN0KNSepTw2UEuCZcdNmWWUr_BbHFrLcwvUjMHp6RzrnsVeD_dg_Hy1fjhdGgYk4-7BISt8ogPYY9O5-raCxrrSHoMlqvZtHntBvWs98g_yLevMRx94_1JJ3QeuwES08iUCqf-yQhsqs-ScGbuU9Fhj2iEKygofbiybm2Y_zVImVEDAoz85IvpiAz_NmJGRYMl1_-8QJUkk5Q6Ahkq4E42LlzXR0RS1vXM934XlYu5B5scAjm0UsCk-hvdnXegDuUjv6HhwVIa7Lrp_BKX1CI5ZUZsMSHSCqOmkL4qgdiJcbIWAAZ6e1YcZwhlodBm4AePM27v3iRR-sImcikTJV7GZJ0uj5AQMWmtnZ5tsiFEs7x2EvD9ww7kit9ohYyzSGSMWNEUWsmfZZaGWaSIaSzqrwp3O7ME-Xt2-AM_J-XjqYvLQAE-GiU2d805zYDAySbS9jgDJDRPfccodpmlybeWykWP7CyzJjZPd4uTAIa8QhVtdgmLGV-31QGuji7CglJuxHkz7tdAkYwTD79d4p0TLApcg1DC-x1kJfzSqV-doBoE2s-jxlkHNl6whQfJGt15bmuA_wvMT1KjQJsaXit99mkK4RgN0LHRrecjWw9yU2IoRK0yuioq8gEMuX2ccZErSj74wmMvO0PjYuMs-r-fwllMRFdmhvNe11-AlyFIbRCzgk_KjiCbl9uGrj6bTOVxGMFAm3jb9YZ4eXyfEV-C2D7DW6p3VPklMvmZUDGCwR15amexTEWB0TpZZm5KQb-5ib9hLJanSE6i8jkEUMrYTzsFCHzchVDRHF_wUxzb8VK-TyIhl34oVbulf4kkkrwp1JUCjK86FxsxJM23hSoGI52MGyC5nGjMkEginPqIs3g-wk2NtdCa0yy-IeyxQIsz2AmSEHIQuFjSDhMVY1d88Rpqnsh4UGAyrKlsJW1uE97E7mlC1dEbVhFJqS9Hn8Mj6A_nsKhh_G-35eUYmlO213F59Dzvrs46RqrpJ-Qzz53HPQHg_k62HmdQZ2e80VfRccL45D50_7M_-lSjM9VhIta-BZTK9FIHaeOT5yJxuQIWjmEIAOJsHHhlCicjU7myvRhXzZPALqAzAPkjwHdbOnLIMsYFjn-gzQsBHqp5ez-hmhyns7Y5MlBUghOmc9e6-g6QrGw8oT7GtanYnXftI6AU1rJKgXB9grm_WgzpZtKLGzpCl--Pf8n73ItUtNz5phgxY0kbUPbk5Z6sCTYg-A2MYcrGwyjZTSvlpFT24VL7GfjnQ5Ftm-xwrJ6fdcFV_Vci8_rZaESvazb0mv3ugfgUeUhUSbL88qSjv2RUjii35L5Qib5bNIdf5rj_rMhmukYeX4j-QBCV9ynKVkXGajJD_LLh6Mf71umIderjTjLUte68iEurehVCTpXnigGlcDxY9VJAmS9lXbnFTiEMEni0dUhPv6RPnckzX7wn6MZSr57XB-SJe8XTaRimcKciNoMb4kr08fwlU8sw0H5PELAEOHDc1Q77zfHw4lxTVuep7fqceMrV_cEa9jSosUezVmvKxfdycl0KKsFrVr3QaXGoJ1GvIiXwpiIdxszKYcQ6jhMW6-fcVIheSJfwKoOPqVbhbuN24tifUQ5rjmGLVMbrfWsN5g6Pac9TeBcdJhoR2VQKP2xC-jScwBLIR-94Xym6ODMtEA1xrkXD_dV-VcHB4XAf1-ALE67DFQeLY1hP4nooaaQHFvewSdSJaLt6TRG6bkabJmVWTpxiBQexcFyYUcO36K2QaZjBCPFaoS_pivJ-GPnweUxkwEIFGpeB_Z0Rb4GFU8yr4luGHjkorilIS5zTFAd7K9uD6ysQBDbpRM4eLrmmkNbZZh-CRzuzZSCbxZwFgFBizvogK8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d5627d02ad44-33253428','','','2025-03-15 11:21:10','2025-03-15 11:21:10','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42603',0,'cd-form-entry','',0),(42604,0,'2025-03-15 11:28:28','2025-03-15 11:28:28','{\"email\":\"davideuliarte@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"8\",\"currentpostcode\":\"GL24EA\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA79w5fNtwBIE_u6TPZfRa9j37Lnd2hGiwh5CZZPWOZ25t0oC0H-IlXktBWFw9OXb6YAFAZPWq2gxV11L7YPFSxk_hjYRZzqsWSKu3OwQb3_2XdcvXA0nrvaO0eps5NzPxXbO7naDIjWGpMUoOZW7f8EQEmUhAOKfJfi93EaQPSswNJnvI7Lj95COoJawGTSbdnWvGvwGtWkJgM5X8w0E7MQ3CebC3w_Iw9MVvCbRrBPMYJjvVdSXpgv0c8ieo3UDlcLMtpVYRpiT3TWU65KaEf1D_WJa3khyIZDOaBRkdC9j7GyKbbXyepPE0uSMHAs1tATYgfC_f1lzWIawe3GedKhhsQiemupgEToFIvnwlaB2Ik3xGlksVEYUpu17NGftFltTur_dAyu1HoU4PW5EJOsrrRK952mGtO-GWK86VVVR309XmRO1JLbn22UVFOmBnj6rNjEzSQ1-k-8HpSMLMdaAu6LDvVBToUe8dLG1UkA9dTZZIM1dcDzvCBclY0EMd7unMvX77xLnuNikfWKbIgl6L3NAtzYLdvYcmnFo4qBT5rwmcwIcBl2AalELE9uK-XDvt83k-n8dNWWTbqpD1m9E-KZ2dGiuhi7Sr74Qa5jStGdKG5ZvY2jzAbvyeSRQI9uWE3y68QRAXx1Nfpj6dIyUi3ajTQGOZDeMftB4Zw_aT2YsGp3hjxL0W0CYApcFcYo5wwilaJ3elPv7_D8ulTRrsnlltbjiZqniqMF4luGyPXDjXdmsAbTkaPu-0dPE7da1-8BBJtcKrdzPT0hKenUd_L-7ilNEJkvOMtmLoEeY444UDHINAstihrRplfzvKkATqDsdOle3R7qIGr3QgZ9U-ZNUxrj5KGQn5UmAdrVZ3GAcEBObEbROWE9VIpXMleWgj07q3ARHjvPmLgI-t7FL-t4_mUk2Q-WbjYqo5_60lpe5Wbkgu1DsGt1nKnbqEAlv4dKaK_P6bYTITresOmNOfS9M9QVP3wM7Iv2iAwVKOOTNFd3ppamNQ4sXliZvqvboDZAptgJhNlHRkB2M0PIlMgJJPg5Xwb9Q2ofPWxvFqb27AufSBoIv-WK5K2ROn5SOqwdSbZwmwn4L_8Jvm6G0AAduXiWgeIFMkzLzb1vvzRetNWzAGvIeT2fr84mlrJQZRWzpWDl3UTXCTSQEsYi3EgoCHakbKVyTecjIEJxGEzPFBBgdqc7UaA0o_MfTZlBkII0UpF8B8LAzRsX3OEHZigX1cJmaOLoZlPo5Rl1teQsKluVFwFE38dEHi2a0_4A34oPeKCHi3DnDn_0X5SU10CY3ENPIZHpX_L853-5fuxXZOWk4nBM8S4mwzcBalHevw8QBDvoKpUWZfle2MM69zOAs8Lf1u7TO4afNZe7lktiCELL1Sd5vxH2GvHPdGrB4xZ_WCrRyGOmBk3JxMPMkITh7ENlezGMGIYGVKZZPhiHy3AmeGZdUOtUr6Qdxm3p_pZKqD4VlP3KtiOjPY7SOmm26ZLhQW3BiAUemLXhnhoyM9q1KR2zL37ytKFtmiNbRZi2hycNda9wJgZH422dFnlBAL403PQAdrLheRnXnfyUzbL0uVcETMmhLJXsTa8cQJN7gf-XE8L2cK2hiLCMoY-jlechqKJgquBOR_Y1EFfMu8P8FiPvtdHGpEPreZbAa3c1QOW8qKkwF8vOKYe43R9YwO2fq2zvSJXhnTHSzjww-2q4q0lGddbUKTzvKkPb0FmpNIKFAzq2HcvLlTcWi3BWIIp4cIi454fMSxjmqRKkzsqMtBSNmD8wVolKzglDEP7YNXZcRqYc_nw6gwJFaDGWdscvDVaLjvCHYQhmASdPMiWJgpbV6-H0EEuV4xd0ciGtHt7m6tSkOn5Ltn-UR4QwUiTpTaGPhgy9hnc6LzZq0pcRiFTBScxAOgG0I2D1OeVd3dKHhmXVBOMZv8syrhDrdUDLCPhEsiiqBwOSrMWR5h01junGV9ROgb22DZ2ug78h87nUloSH-uX2Rdgr6c91WnHN-HUSewvRSRvODavJVS_L0QulF8mmN4JMaflW74Wjczahtp0KQ5GL5y3DWeTVbPOUx68Hzqb9RW1ZTViTmLKBJvkmIkloEW0saUjOZIeJJGnDktf8WqybhGqJFu8df_2VvWz168gbRVoFL1PltYNBjVoKSkN9Pivb_jJbLawqASJtMU3AA6zZwYgM8NRkBUDhqjPcmmsK52snJ3pY-aGY65b7mNOeR3hFyPCN2locBdOu0vWMUDOlXLq7qInSH_XI5mKPgZGDnfNxepkWxscnz_ZOE_YsKi2vXT_yOf0JvLgVIIHET3pBzFq2JooG4ylo9GZSEe5xKChc24Rp5WKS0uQBFIPtKKTBcWU-vQkblPkjm302RoG-tu3VhdIkzA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d564355c6329-69664815','','','2025-03-15 11:28:28','2025-03-15 11:28:28','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42604',0,'cd-form-entry','',0),(42605,0,'2025-03-15 15:49:51','2025-03-15 15:49:51','{\"firstname\":\"Fiona\",\"lastname\":\"Walker\",\"email\":\"fozzthebear@hotmail.com\",\"contactnumber\":\"07944340360\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwytS-BhCKARIsAMGJyzpQV2i5uEi7oZKzGV7D-WUjbGMSLt9QvG9DssdaOBfENgLhbx4_3fUaAjGVEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5GD4CvMgNynThm_dBfIO86hqM9cpjs6Nhw65Ulsag4JOTBQnjyBoqbcIy6qpONVrYKahv-aw-j894ji4E6GXHAINRak0B96pp5m4H3Omednp514nRTYzwVSJwufWayfT9lAja0bbmH7SNArDKTMJR9MJvbogsEVO6q7VLlLJ-yJlnNyrWMH_g9f_p3Smss3rc2D6Hfp_pU2IEqRRCj-MAMfAg02pdjwcoL1b-48Dwkd9sU9GZAl_ETrOP0G4e5S1VEjvgML3-4R8wf4SyNaV9plJEoXV1aX_EYkvceUXfe1zBLlJLbzP_x9fmEIxbQ2tQrCGiQJnDwLySRMwynFBvm4LaZXyrsqcHRMzGw9ldi5fg0X9tFKV2mhcdR_i3IF7cy2rX5iYXTQTIGI7Nk-6_vdO2TND8SXCWo3WQyUFPG9-A2iA-0sNJAEY02BvZKObek53CGYnOa4qVvfgW7YAj1EJhVyXGUaUF1ofCSAQ1I1NgEv2H7-GSyuOcCe_28pyHMZaSaysOdtGhsOzhn-UdpjjYcxE14lF17r4xfM6VUL3FHO6E9Adjc1iV7wGdq3JqS2nbuIJLRT0gajrLdeV2ljiMDtejLu6dm1PlD90aOs3vYloR3T3fOU5JQvs7za700lGTVpenXu_Rj2Koj0vfJKQPq455b2TVsC9kzdfDn0hYXXiRa9-_DbLHz_WnOFaGXax-IiGGiW0Zunju37pUwHlC2cJp0NOk493ri_YY0fvCFCa1mfFetMR4gyzvUUkl9hRh3BEyHlpocpFqZeBrq9TecNroD_UZ0KBG0d2ArXSFc-fnlzXspEac_rRgPbrJZbnrv4VfkqlP1FIMcJwo32rFiTRG5Bw4Z4JCO4nnyf48W_Kwt9vHP52B7ffEOpdzO7clXPP_MhQAKy2911QpXCRoUVlxCkdU3r8xLtN_DRAfX0p68ODKjNBvDCwSILSjHRDVyieUoIK-QVyzafE7wZEz6Wv3hmmQmylbtIFM6mKua9p4JPyehEikfa9xw33aAS5Q19h_qrFS3OqexHJSHVj4H7F2wemW7sjJm1kL_5PI9ufgGS4qDYjMJw9QeNbzIcixzsF0Rct9FOsDRObqJnKjp9hU3EQnGwHv-6FsXdrDDIquA46EoJYSzsaWFPoCE-eynBDBNAhJmCMEmwej3xZ7ehRIw4pV_cIAW5tFOZd7VH3YupiyAMMC94t4rsS3-hiJZ425ZtJf8dJwthDckq8nhUkEpbA8vIkd7XvIqrbMRHixC9Np7dA75v6vzKVXw1tXQY8nQ8OtuvUdE-OY2sZ7X2wCgE4OgLWE7Xdq708UveSfysw5b26flFHObMea8zQoEMD1sYccekxfSxX0f5maMqxIEJ5FFOYVqaNwend7yV7nIGqcUwqxXbFq_zKJRHcPH4WRddJqfUlcvnBrQDLxR2-GbVQxhmruU1QkRLa6K9Pxsvk1vhna1-3GwDNX4SaQeBZoBbKm2vLsTbo9xj3krrUGM_5pL4rK1EWlS1YmjmzlXLbnzsK8hz2nqleAkGudQsQ8QlN1YOn4Ovnr6kYz8D7h9eASCTYzb9naIkzCd_4guIfdOyzvBKBEwj7WunyLQYTF0yL-vBzBC3ZfwanfSuG7cMjTfbnCAoL7DQh31iMbUSOJzLVsN4-J32CqTfOBs4rqAn_ybTiFYZ6F51AFliJ_RaclQSnlqM5kg0DIIPOD4cxoJd5NeY95hBEmwfKmhBPlBy7UP8grMla4U0kOsWaCZH8l81Z_gzaFjuaGIaErGpIDc0X1a4P7_lDF1UtWZZS5fpI4gU8s6gAJArnv71zRhC2gFVf9DZo17MUo4mXkE9iwW2JLfRSEwJHhKS1OfZR0P8dRiUIs8fuVuB-JzBwlJbNFxVonTq6UBjEXoRXAyA8KpaDh4o79UtqzgASckqGfjxCXLXfU22_VJG8pjI3KUtRj-1-SF0dDn7IEcsOZRINCCdNrzZPjlZxy5py5yxeBDNLTXcVHJHON0WEdJqSZupQJSBjBTtpKeA4FtFcaQGtdzwf45kcYtKwG0j8PM6Y0JDS6_wUH0E2DB7QNJ3f6PiPXOhzBnZ4-cKbSuVEtz_yYWHNW1UWoS8qeXAUziYMFFtd0c3KdbCHwLbMX3yA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d5a191a5c258-43639393','','','2025-03-15 15:49:51','2025-03-15 15:49:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42605',0,'cd-form-entry','',0),(42606,0,'2025-03-15 15:51:12','2025-03-15 15:51:12','{\"email\":\"fozzthebear@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"2\",\"currentpostcode\":\"BD10 8TD\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwytS-BhCKARIsAMGJyzpQV2i5uEi7oZKzGV7D-WUjbGMSLt9QvG9DssdaOBfENgLhbx4_3fUaAjGVEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5bdQgPkUlfrg4NFv_l3hjdrfzy3G-lkeH9g4cE-jbRoyXUAAjgxTN3bCLBtWdFaWDybl1o868ZhKHzSR0cD7XyL1YMiwq9N960m_gF4KGcwLvtqDdUu8cNRVL1tZJRe2i4zZvYB0vQxsydNBZ2gYXj27yQ04RzUgcCGGTa05N5TS0TW1lDYATibRnZ081D_uPu_DUICprMyEX88T5myV7GzHLj2NgJqATthA61nhi4SZOmOxo_p9Xk98AaCYsmoAkMV5V_edlimX4uBK0xIKbZYyenKysysGoRN_C4YPmd7-ZHIUoW7MdQuC0IPPoupJ5QSSUAv602lMfdXr6sgDiZvayfIf1KneTK7mwAoPay1zbxdxrrtVbyt-gEtiHgibIpXOohlhdVIkHMDLmNQ7ldHiEsHOQ5SkLykIsMnu_crQYqsCEOqALXkhN-mfVpNv9ebzt44cn1aFhVB8fudZ6F6cxAeDq6-bHLvDbrg18eDmEIsJa6Xj7EO0qaPrWzqHMQPdyxdlvoeVCZBDPQE968fHhiNtcYlOlfS_RCwbl2JHM_pvq4UsCkMR-87LAH_Pu5fCYXZRDzL8HOyQ5v7Y1f7ZNW7pZXCtNvghhfkp-cykebCmZLsL89Z5d7niKsCYExoiDB9ypA9BYEEE9wpOTPZIg2OR1Gy1aPDdSZ9nMHBy2ILs11sLm1V2Ayl7F1si0qbRUFaN8-ONAF3AjA2j3EvPgcTxawrYn1XccrRoH_kilI5StjaUZLg3LSheh0BRxMo4LHIpY1aoyU13TF3BtVOA6XPOzgRl4u5-88dTuRXhAoSpirixa_5AjpnmivT91_RRlGfJpXfEnSqVSccUFUnuiv-6uF_EyWROc6EhBsYIBV0CIn49mq0Xwl0JWV96pEy6SUoUnmavTPDXOTYB_9cLjVape_35rq58wbFMAejIN84OJrjOt1LF7Mks7kFb46vVYbZdcxOxydKMDAw3lEHQVjttc6f2-cOQRgQbOJ4HKY7w4wYwwO6lpfSQSIRPptZKOBEFMe3PfRB812qXmxbDnhh7PkVdjdITgoZpNlMXsN-aE4qr1pscRSRzGAsnkzv-C7j1cW41zBGDXGNeIJQQMOpIwAdJd6zdNg9rOWlrHHz2Olg3HVwCnj7jaGy0xQkD65SXheA-ip5GKi2_Px1_TD3z7V_2AguF6BBqSXfEwUHpcoStxzj1eWs7y-U9K934AC0r6WiUx1Ol1_0bREezsVUwiGn5ludHKRgnHeXaSbas834EBUOOo_jtK1fXNpbd7p_yTTEdTuyXTyI-pCSbh1GpcA4VfTnYNUvOV056yUr_9EGJgCYyhC0e_MfJrhF8Lgeq9v-vD_GF2Gkwg1Pt3YpugiMpAlmp_7eHPKlpBqvvLbSxlLzI2iLNT_IP7VOvNnFH4L3L1OYZQ6boU9n2Gweo1lZbI9b5wa66CpKOwe-Rh1dNLHWLSVupUeyJfV0YTi8PO40QuZRz9KkJ_g9ffe-eOCeQAAxJuHkIwJP-jtxcWezPoyf5T4Ymkx1qgHvATfKDYJkU2FznNdP0qfbdZjOocXhOg4dyZ9g67LqtKKjy9cXprynJGPo6daRanqhkrbyZwkfaktKoDkqNr5Fw6qKF-o0zR4yYRp9Gm5Q8xdB6NH6Gx4nuvCQx_-Mqq0kf5vumvIk6zxxJfOje7xtdEhUNXPgpnkOhtwDaIruSuK4wfpGaKhAItgR54_dRr9uTHD1RloiAK4ALD8C2yw4lPaZTJTzxqDOpkktSSb_wC09m59_rduZbZD_c-SoiIkGhRXTEbHAGTZgxsU6CjEnhy0MEKuuFt84gletAsgau8LtLCyG2dE_snGfLTt9jeWkQWbj2fBxe5OUvJgyonYEzgrxA_tTr7-lpEaKlcgL-ZvDA4un9SOk0bAokoo5iZhvhE6vvID0uC9p_j2Fl-aUWqVO0d9t90j1poZrLS_pUNNsUWdeqbHSVWXwQkrlKzgcuRX8If9xse-TtNN5BD3IOnUenn7UMC12lyUEB9GbfAmfiYQxUq-wfOUi4DmXuZlUb2mJeWttN5T6AsKPohpNaoZjcu_Ms04eewSjy8L0kfpp4NBjPmFzoKqT4G1snpAm4LDLdlo4EHOAtvi3V7CW0U0CA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"10\",\"livingcircumstances\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d5a1c1ea73e3-97707862','','','2025-03-15 15:51:12','2025-03-15 15:51:12','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42606',0,'cd-form-entry','',0),(42607,0,'2025-03-15 15:57:09','2025-03-15 15:57:09','{\"firstname\":\"Fiona\",\"lastname\":\"Walker\",\"email\":\"fozzthebear@hotmail.com\",\"contactnumber\":\"07944340360\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwytS-BhCKARIsAMGJyzpQV2i5uEi7oZKzGV7D-WUjbGMSLt9QvG9DssdaOBfENgLhbx4_3fUaAjGVEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7W-IzX3CG_dmYSUmBdU4ycfbDcGBe9gw4_GD3MZYcB4M-3gnu7hgHzR-PxgFLptjY9u6Vw_92m3j32yppTiZrKS3IxI8YuvF3StGV5Je6jyNqfEAFDP3l2SoSJ6o_fqwKddOkyJE19vd24DRRSBG9g26ZjFyWTdUPejo7-VQu1zUbcKco-KaY7MM0XVYqXxlF2JzRUplrIxLTSToNjP1XEmgYWAKZD-SESrQnGDEIkpCkxp6Yj0mHN1GtFDK-cgPNwSOXK9S78G7ErYKZRwNz1eN-Makyq3ZuBwjK747NANNyz9eqhY0ZD9QI2OSNdYLY7KB2lI7eBhO8p7kNTxOuEXNId2oL1sUJTYKFgXktgtogByxrJ4KZjwRdWeFUqL2qbu1r0Y_8uu_kYxUe95V0XwQJsWxxMS7-cmG2FkF1hlRzsgQfdq6UPjSNsaV85n9kshnENCoAlGuzbCKTM8K3j7VFyZqi9jkPBw68Dx_ckZ00sq8PF517FE2zcbBuQJ69He99kHg-ZTzhzlK2UYPsQ0KwpgMcstiS4aLlV9t6URTYOTChN0Kp5_7fgJq_HbCtIMB_s-qmbdEd8SeWN3FWb3g_Xvs4srYW3voU4r_49wgyH1fsbiNs_h4Bz3HU6i0nmpV422389GImfdIbThOdGfjY31izjolCzXK6LNQJRUz-YD4d_i4gb10JChz2-gELffiiBUW992Nq42d2ttOl9NOV8wuWO7ACRr1K3dMjXbzlrddqOsV1216tfRwZ2ujAGn96jQK-h-LqYLuj2plmWxToWKWVvkyN57ggilNiF8pBozaA1fza7mwnUNgXmMVUtwjRO74pPA6U9Tb-Un8TTX0deLNmMbgbhV-AjnwNeK2QP2mo9OjNWo7Yf5x9YYgktn4blOLh8YqlqxOzt39cGigjB90vSF44RpNiPTQFFoqY5VxepghckQKEmkXyU9gbeXyE7RIoNn6tJfphJN5Ghcn-ZojvAUW5fVTZ1isxGMuX2HHAR-Fd9W4m5lSaOYi4gs-uEbgzyU8KZyLjgQDJBR7fi4m0fKz7k-l3IFjZvabwJtuB4dRxjRyKS5Lu2hbyx0e0hvNt-oIHcnGgaVUYdo1rJYfvmoCGnnbsp3-0RZlZkI4pDPhDs8oM5YUkqELmX9xPMh5HxQovAcElgqSJoPlTmj9eHJ389rZestqF4-u17mIfj2nEnGKb9NtUt5wlnAJqku0Lx9gFzssSLR2lC5bv0MHCjmE1ra13h502Gk8UQyshzofWj0u1mvtRdSPa2FdNt6KTsIW3p-LQEzW9SjzUDNnagbvCMekBWPqdbY4YhGkuSl6TPNrbF6LWJJkKEMg3abK6Gy-ouMtSJaAG1w53_8QckPTdLxIyuei87ovjn4PVDDKUXK_KinN1Z0MK6a-zMorXfj42yROX-O_gvZpVBm12XF-YCuAU0ew9GgjswgttWdOTSCR88jJ_sQEvBiRfGhQmX_OJw0neDhJbG7OMG6Qotku2vZ007yfMY6JUokA8KXWRNH1FBJpTs_j7cvwHXsshBgVmxiW6uB2ukYoRnVk7PAlpOXADn8x7Hay5zj72IUbKkiQad-bil0WLpmWCVGc2OiQj1BOo-3ZZKmpZPdHRmzoruj7qUnPaLCtGrHE7SaIpAJqXsMGjWSoSyhqysXlBfINw45jTIKVHCCvCAEPL996fHtyi8ZMqh4EY3icPwAnJMzBQC2CQyYUuX04SAhBn0ym3AZJhbMbTuL-x2pM-RAkECNV7lxiS5JsYG23MPvqPZk2fyWmcT6TooUBt9UfWTwAq3x6xahCfZRxSmoKgxcQn2gEGZtlZOVDJDUNBWPoPkoao6UlCyOSIbECPtZFItPGjfWsJtJaN9SvhA-4hzjKgrex0Cl83HhbweXVg1VC-sTV49EiKr-Bgg7CNQODrKgQkvvlbrabZVw7MHv9pdcZRnDHJcU-VyKgwKpwmT7RNp6zYPoc66l7RoKR3wkDSHLZiskwEotinDPx93aAhYPsrZT7JTSFHYuruXP57hkaHiQTpfEHO-tXyRSRTdJGMYicvSwO9Ub44rA5b8H9epOssWUJKBpwkCp9TDDWZ0jRnonABbqxDhdOhZ4MZvLFClb-UFlVhm_MG0IJcnNw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d5a348c9c314-17008509','','','2025-03-15 15:57:09','2025-03-15 15:57:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42607',0,'cd-form-entry','',0),(42608,0,'2025-03-15 15:58:25','2025-03-15 15:58:25','{\"firstname\":\"Fiona\",\"lastname\":\"Walker\",\"email\":\"fozzthebear@hotmail.com\",\"contactnumber\":\"07944340360\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwytS-BhCKARIsAMGJyzpQV2i5uEi7oZKzGV7D-WUjbGMSLt9QvG9DssdaOBfENgLhbx4_3fUaAjGVEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7mxMb6P99fAhv-EnQ4PKu0R3gY8QJ1J9ADcJ6QbjezOS2LEMTMQuI7jI96Iqz4WlUck-OqLr_96v7mtFyi3omCiRCr20MsjRfuqI-b1LbBqx27DfOhn0nG75VnJO9Ja_-1jAPJoiNh0ZEUDiAXJa9VT5jDW1RB7-yRERJTagJ4lG3wVJJhqHQcAw8eQo0aUv_8FtKrveaIui0YMXW1Qvu4DBxVVOoxrFNpHK2CL8FSR1VJAeJKAhTbP2NY4cqv0Qjxb7kHaO8Fl-tEswEjLUXSfEO3A3R4a4yaKlRjgugQDx4Xc9fI-iaffxBBx-rAPM2pJ_e812V0qBLO72T5mr2XbmkceO1PVlqsje0glq9Kr_RaYya_8woRj5KO0fPdyzTJWySWw8hUHdCEbBwUd-BeCBLlAFYi-CdxwVCLecNxaKXVEd__d6uWGF_VncDb_evuPCHJ4nc_N-awZ3QqHixeiJRrdbhawuPY7rVJdA18S8BR2j_-PkxOHRSoTZYhRZbtaklTKETKeUscGE6XMzbIyicjRGg8_3X5k356iwvo2wAGkws2C-QwmxzMVrOIN7T1nnOqaXoTludzytD9qdIrXTcFvBPmmwxbxR0E9F6Oj06FbJE_t2f3QRqrX9kw5Q_rIRhTmaXzAsV7hK70wRZXUTSyNAyitVGbFkAJsQeUjx2rYrCca1U5qxqSbtef12zCFqYMYtjbfC--tTNpPiQsIYmVsHkr3LAB2p9hxddoZolkj-xoeGzqffuaj_3YCFJsEfHKhgMIP-_V4_6kXriQGarpK51eM9LVWp8YAFxPfG0KOuHJxXCIrSs1oFd4pXDLI4r9a58XBWS_ODjc6NG4Vt7FqYdJ77P1fvl0A78ZmewGyDmGidfaCBJWZpzYDDOPtH0IjkSypK4FEnqIvpmIUNUYbKjHrQFuFSOll82YaJR86i1xjz8J6d3lurkKv0rWv63YIOA_cWOn3FTSHDzZAjvXBoo2ITHUdi-vl5LlOB8iSUf0SF_aYE6ySHYP5p6oEv6mZM3_DSvj66dLiY7aRDapeYZzQpfEw7ZeutaGQxf2Cfk2izO19tUXyw3ou-ynlhsM_EeVfm01l2BrbmmN48XE-lyIBGgirUFctMZ1ak5ml3a4pJBNITmrixOo37sLXjOfZT3fSppcPLQcLgLgPysPyzip8qrJAO39GV2FIJGeoTt6EXSXPjNcu8n2o5jbc010nDq9Y1rZe9W2WUa4gUIlQuXK3vqOVNOye_6hz44JvVetKqAtdSW_QPzyZaQfBYWgGZo8dn8xCN7utlBVjkWTaM3_qhauAaZkv8THXg7LrtAyx6QavbXA_Vb92TDTr0ThkE2Lv0Q79WD8Awfi1mPmLXZj92IQmFPD5T3u7nPvM9oNBpRUM9mY8g28UNNYTH-ypsUrgDnlJ-adVcVng7IRC6hfW3nkoItCGZguy6fAR2nl_2ydC_LupP4bK9EHEpHM21nN1qXAhcUaYTZkB7bejLK4Ngsj2TsHTsvYmu4RwThlqessRpzzW56FONcxYfNMuI3sY5xikHKMlbrZwITS2My1GPN002-eGwERqdbvA_WIwkKMAVL1oA7a-zExvP0EpxI1GENQcotpx0US-DfXN7b6pU6IDPyzHeipqtfnGFGnTsajm2A7nacBei3Cjfg4G8nSjJOScpjMbxtG3ElYeaLrqDU4AbzqTMHE-o8vVEp3ryoFh-WMTqPdGJqw3vnmWFapXBWq9M84Nsjd4YdYpIAQRVBb5W0Q70wsHKAq2waL8B43V9dAwX3PFxxvj4WNIz7VLMBF0w6-nW9nBkUIV8lB-Iia7q0pxfkVYvhMXN9x1CprOQVyH-B2lEn0B0C4qzA6RMq5UAh_5MyL9XrxTnBfJLB8toA4hP0O64s7yPNw7yovYwsKHcgXwAyVQ8HdHOHpfFqTw1jYWqxQyaQUn7PnrKaFhQQzl4sbZFFpOuVQCbYmz0eqga9iQHRrfpOzYvaw2aVL3qoHtKgA2baALqH9HGSKjpNUFHdS4dCXz6CxKkgiqO1wIIBB8NX5S-jWGANB2Jd4sdDGSVysSZwe3N8vjy5RzT8lqLp107Wzx3xxvTmF6eEpwp8FtEU3UCPYii5wlqfoeAfTxdgYNmuMwg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d5a396b92132-54989383','','','2025-03-15 15:58:25','2025-03-15 15:58:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42608',0,'cd-form-entry','',0),(42609,0,'2025-03-15 22:59:48','0000-00-00 00:00:00','{\"firstname\":\"Karina\",\"lastname\":\"Salim\",\"email\":\"karinasim\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7agebefLb0NbSdmgXv1C7H1L18iialzUbqIWNBg8TQ72QC92rn76BwodZbsloNPB66LBQdjvNwZ2CUYZdf82OocOwdzvdd3YmVd8gnjeCNKrA2OSsP4HsezpH2qVKVGcfHkXPPjZECEQ6E5gwyZWAJSCO8eMjKPrl-7SHLJTtbN9wMKmW-ey6iWntVbtDsZ1f0B42Llo54VkaJlG9M2f-tUoCZhGu2aaYMVwIoLLPQnfXjHWAbbl02eQCqJ7jaCJU_-yxGS0oAXX92IPMKSGGIJWRQzlwtYi7uL22qu79nWm_JQ1kH_iq8XaE4gvvOlaV_Y1-RQK8qlHXp_l5iwWhW3YPM66ltu54qBOMWSdfGCCT8b0VoxcDMMuL46P8eipVJHAVMNtees7_SkwUNPXVVGizgyVkpdci_EiXiVkrtWm3qiulbW5QHsG1kLDgmBy9oCNf7jJUgUSrrB1mwJfczXVvhDr8--mvkZtp8ZbRAQJHKtrkY3JiG3U7VVlK2rS76qPsGsWOgb1sUl2xOeR_vbZyqrJlS2jxw0lKGNxfuX29pL4J0N8vFTCPU7o9QNL2o1xsOu_9_6ZfRjEj5i_ELv5Df1a4NG6P7_Itdjl7oezj1kqvFbQisQmQh1Hr28FBYY2sRhi5ywgD4EQ-Sm7CXGDR7NB84dKDd5NQfbWev7vOC7C3PW0GbgFnkF5_QrcZI80pziJ0tECjQNLm0EGBXkCE6y0j0INJ-tDivcsGTwK9TMYp2SsuzuZ7nFvGSmc8_7Mew0fZhYm_FMlkT8n5Sg-CHXyCN9b2A_dJbSN17MJZC9n0KoTOk_qxDONLEihHO8jyq95tHbgaUKM4aMRDl0eCAw2I0FXkupaUloNRpw1fLvVw-VUVFivxkyJgF55o2S-eOwEP4ZAnmhoH1fsEa9-jDp1Q4fTsO9ZLR796v6W6Sh-9wSAHa-qeKOJVyvaU7w7RKiC3E5k1j0QJzM_pmI-zRbwruvlPx5NtIP51PIk2lC3HhSb2NKzeUQOCr8AMCAs_fsHa5oP1PJuN3vDFmQdSrKWP9V4N_gio0_HP-5X14RSPv8Z7CMnA9ah-fYig94eSxZ5jOyKmflQZWIhXDmSVSWXW0QycssDrGiX8a6kyDSdwa19-tQsZ01LLyYg7HvfJse6vwUvmESnc3EUV2VkFuqhD2_HLMUz5JnbBVXrOgZWtYF63YydqyCpL5SwOYgYgdIN3CefjNF9vnoC4QX4UKgPv8P3FvcYH2MrFq53DiACcpmVmrm3ka-lWrI0tgo6cEEEqyiOzRh-XhQfdCIq_47cLenDwJr9fifpde2Eb6-R2IC-upxd_8yT_tHRe_FlYp9bG5LMoD4n792w_xqRDAQj1Ky35wVjX3A8PABUICdKkzo1nfr7xMt0_ZXfiSL9WpdFUN-3VPko1IhvEx1d-LoZVPwEV9VbcjzGBuPzvFTPjH_nvAEwEkf7LCCIhPYE28VCpIFP3m0jAssUTAlvTX_UAxJylpvGWe6Yei-u1UKH1SXalCzmoIKeJmsbWTwgL8iquDQc1zq2IO5WFd8z2NDg1XW1SRmbavdzv0iOtwa00pH_nlGCNMHnJ8Q7pg82WjTXMpCZG5b6qVMkGLl_7aQo9EGnm-V0I1AzAsxBzIQ1NiT4OAwEiSb8QlhBsb5DVVj8PFcM4MkKKVfOuk0WhuX1JCXnlAUCJeRVSLGW8bsejUFZY_5uA3eUeC-tWvdOS3KEC2yDztyZLNHD2J3Vz0njCLt9fUXNcmWYYf9vrdEMMwcauHRnhIBUyNikTsHjV0a9mrobbzFIMHhZFYKo15CpeERXM8ybXr5ECV2xTAThj_BnduDvGGz2_BvDR2T2SURBulPU9I_ptgUpjUGtmibLBQJN1fu6VKnTlhI5myil_1qWVAvVWAwpAWd39GhkChQiUlVoakRHco3Q66rz9mgAPMGb4asrmQp3xkcfCMS7CUCcoT1-2725gH0o-_JxWdU0B4NVC6nLCYZO2j3_I-rJdkDIPSMvjc3-y2LVTH6nvXe9GIIYZsPnH1A_yQ_izX7ghPhy7O36MmuxzxyZWh_N_c8d6Lts4ZdaHEIZJqfqleDPcosbHDksskxIamB29E\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d60664eb07c7-07129579','','','2025-03-15 22:59:48','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42609',0,'cd-form-entry','',0),(42610,0,'2025-03-15 23:00:14','2025-03-15 23:00:14','{\"firstname\":\"Karina\",\"lastname\":\"Salim\",\"email\":\"karinasalim24@gmail.com\",\"contactnumber\":\"+62818145352\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA61dY_x8lGufnB1G-9B7-QVqKxVYAvUdgwVdhhTnKL16pe5aFG7tf3G9EX4NbOP6ihuOH7HHn_-fV8BKXoblzJiGqT_Gc5icl28dBT2xbM2f4aa_FbwNQsEd8bL77ej9HZlReJwjRsa0zYPjYsfeK8OqqZghtn5rGjyOyTIrtB2wRRCF6oNN-DW0l9zbAwNQlPIgAOUVjrKTycnxshtKUGbxUpwzuE5GLmvM9Ldazk0Vgh5fQIQ0eMoPz99y_3ZCdwNq03phXVFVU9fpm5U7pmtlCckxqseUKJ6DNyt1W6a_JfhjljeSJJOxlmI03clTzEFtHiOAUCKL7r9bM4717xmexVEsTJeZDv1uoE_bm0sfNrPtcR45UZTJaLSypLR6jS8_qwLwlLgmQsUPZXJSrvaGKoQYDudQtZXSPo2I16xAMzckgFGIHc-FsZukS0YTKsd8O8OhHRZRjsCDaD_gtiG5Ndu9KVdf4t1jTJ_35Kq-Gemvcu_4fJYTeu53cro0NbZEDAmqNWXWo5USZ8_BkXWIhh9mdurq5tnSP7gCu5p90yRwaY11WzUvxqV8XnlQ49t3Wlo4N7mwu3FBs5FaFLxduBn0rGINMubf4GIHHhvmLs7u_a48I4YqgKhzPOR3R4vBHZYEx7JJgJ2bU5bbP-qMZXGScjzwtlVQJcwT3oowH2xzHeZT8gL2JaGRU0vNlpnuUH118dAOUw16XknQyVxHwySQzZX9XBlKswSw1cAl1gRl7vBtGofHco9xhHHtK5ymlBnyPo-KKy3NcWqc_mHg_qkpXyyb5lMyIqOK08igBV9tB_Sx9OCm1T8ZqEJKty7FsutwOLXgiFk2NC0Paq7-7Od6IycNPJJ5E1nqWbYnqYA9zMATr5o2PojokgyeDYGepVsdFuhBAYtol8HchO2rnMZAp6X1iOV5qMg3RBf-6SDp_75nf12RaTjAQZEDPeYb8NA3yHKZuRuZoK3IE0maA_ccF9WattguIIUyCDe1dofTBcQ8u0SH59dUoVBFbnw3_uTW3XLxtBrxRyDuE9jagiId8_wu2CH1JHcKLDtFq235egWCnuwrK3y0ZKK-FUGjIku69EDjUn6d2xj1qFazo4cDP-CYd-bgF0ZMCAW1IqMVEpNSn4S-EnNeDq7yvMuhwb7ZBtwsZw9q2OQmwQpB21DrBYiV9062CyYBDXV2_jipYXb_2Ip2_OMqDvaxB0UJGc0A3IBCyXO-m0fD2d6STquLdLuLiEFqwu32M4IKK7fBiNKgoR3DewSoeEAjSfr1V1f7znv5RSJdVuUG8RW0Yfun9o5Us7VxtMLw4yfSZlLjI2yCvDQ51PCIBtLm0vaH95RZCGzkw21Fm11BxEcabpPD_5HXEHHiWSTyOfZ0dJaBNAPhJUzWelKy1-5sfea0frrygrOShpWH1cQWZ7JQqy5uZzQQijC95k-K_sztfA-5LQ9lfBtp9vBllPg5LVjWRvhcENN9qr2rN0GNSq3VdJqrYcVKRzCd2RjGYb7_Pvn4BqWrF44AOpkivEYIig4T2TC87gJqennsa5mOQAejnErHkyThw_TRjwjyZeTQBHeiDbb0Wjyg7Y68J7LBk3ffLzYH-dI8_zpLx61nI9yPAvorro9_x-n53q7lwjTZBVWUB38TTeHmPbOieJJ3hB-NyVv_HE0kCzXq3Z_Fyp0L7l3mpH-wwTSJ5kIY2-uDVoSq62trReDNeYIwbH3skG8galDxENdqHdbR69U8b7krG-Wew0uDfpALw97XXC0V6vEsxC5NiONWiC4PiaTDGCrDqH1l6RbU0wVEI_KkcHUG6WOvwthlz7XVF69T0-wQ3rrVjNciOX6NqdzYXa1nOEaNXdJRdMl5-Chu8EAr7j2NyJ0Rxe1nlIsSRUloQBLVFcjR3tB35NjuHptMxeOlIPMl-7O8vIHmyBFa7lCfPnoGjb2x7LN2jbnD2Msc1MBoBBG1gcyTTCXf7OQhimsmI3Jx4e3K-EV3IrXykVU4MJBuw6cn4ZeVF-IX4G3V06JL_RMh9RHNBbSz463yWl2aiKBb_0Iy7eYu9KubjnbONZpz1pfvwz4BJtaRrCUw4lJ45U3tHC2zxFpx2MlCqoHRxgYN5OMi42RBE9oibOgqnYqmByZyWi6X6GoV9KZFelkTojWuw0mSbWvY_pDwk80MkSprxkV4GPj84kChbN4NKOnbCY6_aXxPmRzmwzQq3ynhwLnSLaFEc83O89nS0MSwKuI8XLGVw_0s47CEXhm-e6t3djXS0IEl4lCndpV38mDimdK3wkjAasv21PT1cpPrLqiUKU3mnbRaVE-ae8gDfCXaZp93qx0hnDfcWC06NNv7h9ocQ-ZOLNIe44Kjx6Zs5T6ORE0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d60670d2d711-10240018','','','2025-03-15 23:00:14','2025-03-15 23:00:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42610',0,'cd-form-entry','',0),(42611,0,'2025-03-16 08:52:19','2025-03-16 08:52:19','{\"firstname\":\"Hayley\",\"lastname\":\"Chynoweth\",\"email\":\"hayley.sarah16289@hotmail.co.uk\",\"contactnumber\":\"07796235698\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vMYf0PmFD-nNNfG_qTptKxf&amp;gclid=Cj0KCQjw7dm-BhCoARIsALFk4v_Rbe_D_5jMN9GLueGNu-wS748-eKXPy1M2EtVKb71VI06UpDRFiYYaAquJEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5k-SWEpRPq_s5zHphuGByG0fEDM_NA9gjYljHM3fQEOKpyjacYppfRf55iyTot2JE1eH5HzVUZW8cBQcu6L51Okrjn2BlOiTqgEYZ3PIEg5gyw_RMVcEwvh2BHxtPJVj4G2zi-PLiZTIJ3DpYi0FRcBNJvz0LnX2YTihB51sqAjyrix64fKhj8-hdObx70otKmcpeaOkBn6IB-rwRvAKavnqyvw0QpXkdOlVOggEJ5LZlRJ6lV28XxZuu1wh6YbkW74bv9qpF1OO8GO7WXGsQf0ClwiRNnH19cjlPNr81xkD2ua8N-9xjL60SZ3Q2ovP94Yexle2rwLwtvkAe3WWZOLOzlGmp9TFZdk9CHk85B05ZMF7OmhRCjgRM_wau2vFvb4Ac10Z8YIkqs1rdQCh6iFKm_vtNrKd5FwedPH8rvQLp6wMOqZ-tX3cl9bBU-5ZZnx4ZI-ha-g1tQoKtYwS0CoJowFGzxUorfVmhM9JKjVaH2tllSuqgDHjTR4Sanowj43Fuhomh_qlbkzrFnLwsjkDGCyA1nPxq4cKczgL-fqDfU7jLVScreLudQo5D1xxKPYwdtZtlZGmuJslGBwnpdbs2wLyjaGmC5_bM0q1qYUvFv9AIx7fmfnA-q1VWW8Htzr9kqrXSvBqDgG3791sTFkTA3p7mTQ4O5IhtqX0iFqkq9YsAWYn6BcixQOe6JEutV1_VA239VIRQSX7OVLihunX8UXVS3NXjrGalgsxHaxtadn4bETZnXycesmXgr4aN9e-rZkIomZLWyqc02tQFR3SCwefHeXIu87eNLMQYE4bPYMGd1bbPnO7L7m02lWMQxm0IWIaBoMZsk49mlDNMXtQl7Kggeuqfdc3K3CL_IAJ4j4EuHiQf9QxVP4IFTGReT4WlRWmHH6HKGGVCMSQZ7MogIW9anLkEi8lOKtgskBTBasl5C9DaZ6Ra939fC_RGfo_2206MfyqhA7pI_8CBZr4CNCDw4d-ne0jtzNybyOeNbe2LGPPpH4fGcQDIr3nX2vfRswG-XpMn-BPib6_c9chapsKg2SUjd60aPDDhTw2mRduqWgIhvQSfC-1lYO5ESGvcdoRRnQfzAcWfQYKn82OxBu2M-5YUalegml64ll5Wic0rp30IzPOAmwt3HI2j4ZRXNLz3tuG1b8EiUeRT7DxHpAwI-Zy7IQoiuSUKNZLx0RW1wM7Wxczoh1bho60PHuyiHnrz36a6yQyLqvUB2xL33yo176__DZ3e7pbm89zlDRN8tqh4liutl5Ibm-ShuJt1_CnNfJYbCJ2MFQSc7CwhScDDouE2bWJcD6V5h8sLKHFf1CniW7FGFdARaHGAXGchsrnXQCvWfoT3iRM9U-IZDap1hnH5IRuqDKoaoJz_fBmyPWHu0YiCBu3CxmVRAZ3kZsfNexdNxEpAx3IZJ-8LZ3Lt9qPWlWhy047ICW9zkY0OdYT1-fh-zKQ7dEZwYgUe22hyt3c6ik_0m6zKApp0pDPbTLpeG-_je7rNgZjtAsz60OMtgIsHrMu-WAZ0ekYUipDjPFh3APCYB6uKFKuj-sPFo1DiUXBOLh-cm0f84tLdQ71OaQCMCL9usQ2mH8sP-BfjWfrGAKb6zPfv4Fk975oKqgRZeAzCp0gYRp8_oHqXNqxh1voOg5NDFJAQDi1aO87K0_endYRkR6i-ESPodo6S2iFrSTruesdRovBUICwtX3XVhAtXHTpzXAT4ejmmbYR9-E-B_olT1ow2mj3jDFjPDzVSYZScIfnEZKoDyFoEl-cYJxVgpaUFsYEECxJ4SJ9WarFMVvJC-y28hLvPKVX5Z6MGSP3fuf_dvAyr3xc52AUeMs9ED0t63BtNw3JnZ7FGgBcEJRgMkzoVf71VrX0YT_OO-BSaa0MYnC1nfLAA-JxNWeSzpphPfaVzJyG65jVGUqsgSMWaL7NokLIamFxluUcc7eCyqFzNtg9wuRopH8xaKcH10CCsSyqHjTR14QGcvJJkX9vpoCBp5lXCkc8Mm9FKa6mtFzbgktaAKGrGbi22B4qcrohg-L82zSt_vq7vATAhzr0NveMTyLngfjlJlMVWtVOAQWfquQl11winMBgeKV3HsDozoBj9echtG2ALT4mod8qAd1tFK3qzXxG8Ee69FbtB3MyWEGWp9siM\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d691108850b1-99451017','','','2025-03-16 08:52:19','2025-03-16 08:52:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42611',0,'cd-form-entry','',0),(42612,0,'2025-03-16 14:08:20','2025-03-16 14:08:20','{\"firstname\":\"Kate\",\"lastname\":\"Stapleton\",\"email\":\"katestapleton2@aol.com\",\"contactnumber\":\"07305129472\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw7dm-BhCoARIsALFk4v9aorZg3eU2PtrWii0pTyo1RF6DGmhZf2P8XthwVGjOUW2ZiBOgaJQaAnbFEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4Cp1EtRWG0v0i__nOwQb_OSytsJK2p1P53qWwoagMmSFlyMKBU_90ApKCykhaXkvG1KUhZXwcfKSlugfocUUcaal3s5iPciMgGqRC4D-Wco2isQy9Ri5ILDW642NaAUjskVhC6OhGHDi1UozsnsI_wywmNIIUPTBAqdw8AR9wxsMbShg6TCD-e2dTIgJiVwXmD1SL--Naf4cz28iddGX7oybTdJq2AAr0Kn8zTdIIAJOmlU-WtSLwRBBEK-rdcABijptGBktzIcC5nZ395lKeH-6wiUvOKEdLZDRjMpbmaLslw8xpFKgI-gCczMznonD52ir-ws6iuKQHJtgUthrZurbbDZITqk8bM5miBHjkvLi36sbp49qDUSqPVQYPzVDt9Wj7KLqIt5c34nb48mO2lzr5onN_TidmrDx4-Ycmh2Q9d88CupS7rK7WEKphqEul5RT9ys9Abs4_cssnbNXd8GntO69ycItoW9ysb-ZCEaGwbm5IFud89KRN2gLXO3ll61ccIlQpc5d-_tAxql8DS-5JxrxhAxEvI2Dc3hr2p-Yp6K7EakTSYzy3asE4mDjGTKamBijM8d9cHExiZijkD_e83TsDsr_zNUTjmfBrh7WLmYJXxsqcJGjW0ON0tAXAf5qWo2LAu68PJtrDeVSip5i-JWfpK6tSB1qwyMkNroGbbC3fy-NfAj-ZpDhfvnThZ7Y5wJdHHPA1ctdl0sTAmpf3Q4VoRdcDk78niazfvsUWMoB0ooFxQzuTfu9UJwrqZfm9AXYXYg9gpbDc_pvkhmjWnl21diYvj5nyWSSrzqgzJB1FEtUFVYwaVPHXF44PSP-ywNMKlQ-FZz_6d-NhqopAPkqgdjQOdPSUdRs-iIOMTGYAuhEekmR8d61XLgPSlhX_xvaGspSYffqcIN_0u62cRkStkSsCMeT7eTiP7WH804kMyNbjQeq7IHOieeVDL8jaweYBKnqlQQQGnDAJezr7_XSSqdPCcSDTHEz56-x2HD6EQggUA7LqniNBYs0SpKKtX85qyWsaloSpkgmNODxi8l2QfIkCmK26M0lWj0woDJ48wIu5nK64l0x23dKV3TG201fJxTlBploO8D0M3bFgzXQTEErA9f1TQDjJ_X6hQT3nFcjICjnKKzZdWSbIk2WM39oFn7v_2KTvYrhkCvdJLd5MbWm9RFfAkreRFXV2-8FSnzcIIQDGCCKldEX8iCk0z8TWOoD_uHJXRyjWrxwxO4pjQUpu4Y-GDQSaYa0u_E0em39Ye-C-6vlpbrRyCqSVkyjpIN61Az9H_GF4p2m-lzO7XKgbqWYV63UpwUdorv4eurSeVksFHFZ3sOmCsID0qJVWEeoKNZugKo0L6X1g_EqQ-wXcoe-fayP53pVZoElh1jkui7SOjd5wFCxQuCPtelZG-Zazfe6t-bpoC-Se1jjbK-CwrjimRAYtu3GXzfzSwBS-9u_dym8LCToRAOJWYECENegAmVsADW8owarrn51uwBKFGqT2WFkKA1oDqAIb3-bzU0qYa5bW6NbcfrGNwcyaJ-l78PgmfbXk_gbmnA2YLVY4kLll0vd85kAttFV87A02Y9TUPXQVPKpDD-DZ4qw4qM6ojqNayUjysF8C2PhBEsZzFCfOSSJ8JNex7yiBX1Xk_GSJvRFGifSLvPLoQHxmfvFWzTq9-S3MSSfR2WWVX2ksTjLBRfLXqDV_yqNUZMFnjgZ8zpGKw29vmIK9XfoDj85GdhOaGyWaWa6AHjz5tQyheTAbTjnGAG2e3h6UzINi7kvapDHyrWFFVNppcN6nLIxxTS-55KtFvx2_iEDlLm-uyQwXWVklJwnyE9KyNayHjj3bDLB1dk0NECgKYVnhHp5EEKDn3xoS_r0RbHJdeKpoo4hgJTDinBVWfsEvmQIfchRYSzU5EbcBQ--ksMcuopu0EcFW5HQZS81hzjbonSHd5kjlmie8Lm39ly5a8VR-kFZ0A95MxKtbO7ZQUarzdW3HbrR9EvKTNkbVfjf-uo2Miet0NFxTPYwDPKDk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d6db431ad856-20474389','','','2025-03-16 14:08:20','2025-03-16 14:08:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42612',0,'cd-form-entry','',0),(42613,0,'2025-03-16 14:11:06','2025-03-16 14:11:06','{\"email\":\"katestapleton2@aol.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"5\",\"currentpostcode\":\"NR30 5NW\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/\",\"recaptcha_token\":\"03AFcWeA5hjyLL0KOX5FbczVxvSRfyxUBXbrUiW-7I1OvS5JWcRYSjNgWhRgDvhsSEU1Fl8pNdZpeE4fOfSpPRJ37DAFuoMHIZ04fo4sCZJjMHtjkPA8zAoeZUz-hvQlbhznLdAiWsATX5MS97ak_om7AoYuhupqMe-65zKLTCFbAq-7-XY1APTl5OKH30qkxmx8cf4JXSIWxQc_RR3uqEs8L0e2aZPpbPHnAxz8LX9A0sNTXwnZXGjLrNu4smzIK2SoYDs9yGHNPKKMChxmtCJm7KYSX0N7HP6xSFgto-NHHocp8S8exVkbW8TPZijTJygJeMxdaIY1UXRmzTULiop9LQdW2-DXxwQFfc0RVMrXdv4Zkwt-LJrOL1ayTTpe5vzf5i57EoNbcP4Rq7RS_qOKZLkrwp40ifsHB9hPQZCqoue5IoPLUc_ADLb2tngGmafLoIlzfJl32b5fVhXBPoCpzrYurXUYBN26T1tbL1MLdHJRrnvNPUU0mq1kUnNArcbBdf36-byr-EYSX9PLkYetcyOIpRoDZ9BCTZiQgQuLbBQJIS9xHI6xevOCDD73X3pA-x9RYnqs2I4QE1qO3MaZTXZUuwS94lyy2BYiWTBPKCa_RCAj5oHYh6TWcn2XZ7307dIxukRx5OMCndUx4SAq5iboshLW6517c9rsysT3WRP2_KTTW44otgNwSCR6MesDHxyN3mgdAReF7HHKLN0yVGfgxbfKHkcSKS3CCyVvDcJIZZScRzKlN1YfpGVqSH8Nl0KLaZWAov0hati2xqvWTSdOCLvxCLmcOYqIGEY8GoJtHZkYPZ-YVo0bSqWG7wd45f4B63-ycA8LwouhEjqeeBxtCr53npxliU1t-GWtuH8pSSWnS1n6H_mCZLeob-ikZYHulEaqLNw9h0Wvy-FSIp9ll_1MVBEc3WdGmxbimyfaZNxOZI63IF_UGAsSphFSuiwf7Wdv0LEDgEfnRQMlgWQf7grgzPJCNvZwoKz-2sQYthx4Fr4cvPPuxHPr3Wkr0cjJfRbC7SnEYCkcCERtF_gK0U_iKOTSFZE_IwlAeVMmcklopIKZOXAY6VxH5aEVdXsFrbKfqM_phj1nKK9WPMYYsZ3vJFttMJaan4pM3Pd6t8Fp8ZtVwjoguonrcORp4Po9F7YYel-Lo5D7UO5lcfQ0wASHXLrk5pCs4zqKvRc7tH2izuW7nlp83fnR1Xh3PXaNIn1Bj7DtOr3MK9bSpKF2d8_Z848Dis1LnCA20mpW5p-OXnUZnf1V_B54FzWqpKF1Cp3HUZZtoSdqIJAoGB7fEPTctgkTsNTftTcvAHmWYoCLv9n7NC3k80uph0l7SFlKE6UrCXYa45r4nomY-m5zPSeKPx4-3aZiZf4Y9b_DrGK4WeY-mSHo_5I3jqsYzH8N8Yv1yCJ-iR-ysioQh3CmRbIiQNQ6cTMtPU4rPTlWBgojbSD4Xm1A5Exiq9SGohWPsghjiDOq1xQan8plU9a4Hc37TKSidNeVgyxgeaL766j_hx27zFd6FbS67cSKt4UpMGPlCYWgi1QeBjvoihuCHfPytDBnZkyxzH902UwLzwjJRq4QptVuFTNzAgqCYdF8UgAgf1VhICJPTYbyQF0vfqiQzVP6S9AGKsGmtY0qKcyWr33on0Ta1zdQU8u6S2Q_10XebS5d4LjruLH7b5ocnVw-SqTHOXYX7nVWChlUVvaN-OFDbrV82d4mYQAji9vEpQw-EOHUAY_mP_dvySI8uTLqoPHvrTtM0OG0TT9EqF0Tym0w3lSJf-HxSGy5R9O9Imcl2C50Wl8TNDkoM0UbJLiv1ywe9KlM7-tTSiqBVMyDa_ecq-d-mXBtzc_Nb-cQfqlX5nUqFkR7Ktl-hkkOqgrh0uPiChjUwEXd-S29BV7v7djjhqyniMlfNSztVTxPJtoSJxsQ_C3BwZEH3NA8Z6IzWpOFGuGYtLT9rwrHOOWx6iL0qu6Jy5RD7kyqb83Wp81rUnk2lWrxZRLwxOMoi-rxMBt8a6f5DzcjEd4eQRowRgiSY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d6dbd38be855-98958892','','','2025-03-16 14:11:06','2025-03-16 14:11:06','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42613',0,'cd-form-entry','',0),(42614,0,'2025-03-16 14:12:36','2025-03-16 14:12:36','{\"firstname\":\"Kate\",\"lastname\":\"Stapleton\",\"email\":\"katestapleton2@aol.com\",\"contactnumber\":\"07305129472\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/\",\"recaptcha_token\":\"03AFcWeA757olPlsi6LfeaXHIT-2k8x7s2mUhJ1dY8QmDdZpfUp68VMHLTc7nBEsRqRgmv1iI4Uc6Lsp6RrHxZJ0K8HhSQEXBK5122SvklUlxl3DrfB2JKiwtVnU9HB1x3kV2V_SsvPgBCkpYwmSEJzPstL0BKPbnvXjE92XswZd3X4jrGAZAXwDtOKPK2pwnYc2DS-UZabkrfUHyBAv95Yf-KTyiAW_a-eU-EYSf2PT3Wr0eog7zMH4GuseE7zhFCb6CdbxiIAHi1tLPGvgBvmLnr3HEjI4g-_IXFKP6osQGrhNt12uru1PXh3Ls8CxCZ6ebaT6U1sKCZLqTdSyN23Ac12Jh0HaWuiZ08jXsYO7sBD1W6sHeKmtRUSRZWkkpouhV7hdlI95YYT7TSuF7Ef-FsvDGPRXDK0l70fW7vZxQxDpaQUP91Zq5n3dVa8jMatD6_Tf4IHQ1PddClLePv1F53PTNTcPq2s_R16__WJq0ORDOGadltKeubmOG19MkzaIyaRIj0iebZ5VT8I_YWyUyWQcw7OEM-N5Et9lOD0A5rWkBmbhOo-YVvmBsZ3_oQsoKZfXUJW-20dFaNwX8uZZrOGK3oPTAE_a8V1t5NmXFDUTmzb9xT6lurk6CoiEHwNmz7s9PISWhfkW8paHPgr-fgzZK3Moq4_ZatsM6uWhjszTOm0M0qmt_C8csk8M1CY8r3JvQQFBSeCRb8Zbd2URnvE2uheAK3totS3OiBhKs_PGcyk_UMWlKnVp_p8vcjO-lhuQnLQUAmzTXRSmcwYXSUjiMp55FAn6kvs58jrGQ8_GxD22VcCXHFDdNXe5KRAjAZGOBKItZDwd25L-DgrYhpuO9unf3UH9OLVo1HtajLvruvKquluK0xfRxQ9_qOEmhN7ILWUbMKKYw1wpjQlFh85yqLMSrSQ8EruUSI_LPudSKdq2TjWq8pU5w96PCHNWlwB_XdSQzy9ISlW61wKewf9BEiVZamehazS-whnNsEGZzmEWeID1sYpw6BIJzAVIDAGTZ-wtB6pPLPH99cHUNmzBw97pkPDH7CLdEvur9L3BG8U6Do7NbHkrzec26-IgbHMO6DiOjzkJ5vbs2sQ0Y9kT24vO-7OqgkOzn_V3qSBkdTWufe1kY1FATUCuBt7_9DKPINjUnkeWAol-kkAQMfKtuWbxUbxsZeDznqJiGqrPfCOV3COT5NepeBRCfIfVu8yH93D7xc6_wyAvIJ0ipyDUM1GiGGNlXRJY8xHEj0LVWzVvHnNEEGW10bEPujtAehG4J_tkw4RZ3mXyUtC1JfctCx6WSFByCQafPssjKshMMKoVY7lvKCpdZhISpJ4vxlMMFPGKR8rqSJq3OXm3eVm6owxBON7V8P5NyGBZYXDjd_pENIyyR-yT43bFYI2X2k1_seT1gwFypYaR2PWkbjiPp-C80o55NxLJaB3IPZzaWJfzeQH9I4birudqguXtMoDf8o8bIXwLau32rLQa2kVx8465ljQ7MmGYz71LZC1yc8ev_BE19En07JsBVNGFtLYBWFlCtiBupnUVm9DsHqTFdA630_vZVCr3uSJ-Y3vMCd8YfNe6U9iPYWTcSya7kVSxBG02Zg_R1NcLs2yoejYvjWw5tUbeV8W1oNY_osjRrj3hKK-xgPWqME5xNZ1555qlD694bG-yqpcj2n0LTQ3Zf5KGXt4ZBiuDODA8Rb1r8k_fnz2otLKJU8TJzzDQDypkD0WDLYFjMPCES7ZRMbFsDFAe54IIWmao50itwniu5bJe1W4vhim7HlD23-7KkcKaoGDHZXGeVuBEi0F5zz6-7L_GaWahrr6fUA6lRA4QUeVZ8yBB57dxtUKnixtPgmm1wsHyIpSGuwOh7eOEbSQZ6-r2l7PtHYbt6sYzSC_Ynf78yirHaLnHTqlYUPGwYjva9TZWNd1xljosRDymBA6hYYKkGPBAN2zYzOgUL6CbNfjs8FPkNTNOa9Mv0pTiVE0puHqPrR8NzTqXmeYUhnm9NS0fAjYQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d6dc3ec944a0-97736096','','','2025-03-16 14:12:36','2025-03-16 14:12:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42614',0,'cd-form-entry','',0),(42615,0,'2025-03-16 14:13:24','2025-03-16 14:13:24','{\"email\":\"katestapleton2@aol.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"5\",\"currentpostcode\":\"NR30 5NW\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/\",\"recaptcha_token\":\"03AFcWeA5C7jtWvbOB3ds_bGH3WyPyx41sOqsen_PypDNZ1caOT0pKIY2sTBy0kdj2JXz3cOwjliIGonQ4P0BTBwlvQVARhfro-wu2HuaKX5Wt40TAm1IArqYpPkibHpLTeGyEnGQjtUnIgaZXG1-t0qGqJ0vnWJYuJr8yq4M0ENquHir1SjNUKQ9tY-53gbYnSq_FSvvPAejAE_q3SYjQw059Gpo5DxABT9MwcJ2S46xIkTKArTta6UBH4jYjtmZazxNHCX4ovAgmGDpERTmrBPUXeLXLgqtKQkF6oxRagGT5o5SvQZptoUC0AEITkydWIKDiQ1WxqidVbCbqrsAaiqNW9eW6-vQJDIvj9maBSYQSQMcjeszxgpHhyxRd1K3tT_tKZDrXT6QtKfkDwVMRU9dxJPgRK2hX42oEDdmuTE5NCC-JI-x3Co03gUhSJtm7as6KRtqNezWFD0WKxMgDMCXIIXEkjWFgWeCFYMBV5h-2S1FjMwyOvIyToRua57seUHsxTPtMiK550Rkyvsc3YWzrRf2N110GYnVcVRgTgujgep-isV8ARrhqvyUlMDifusU5d1_xHvMvt2rlXRRE6AufctfCormQ-9WhFYaFVx6QgF1dM_zyLgUbATGeZSpoqGuZf1zkgjXHxvzyvPHk1G4J5MiJfwzNk3nBM7iK5uten1Oi-hhVryqN9ScGvsoKEr8UFONduU0YC4WbcIPGOXHhrLGl76SjsnWKIpVI-uCeDm2P1TpeM6aqBV5jISoNB7z9lSCvpRPulvV_NbjB15QsxrtKz3ZuSxTJa-xDFZosR_37Ojt-QlEGSZha08kva11Kk1l2TYrGLR-ft75GVlhsECaK1LAx9JQHZZKj_4WqTgQQ63u-Ykv4r6GDqTfQjL2bUM5G3c17ts-w0sio4-6Nx9l1yuNPsgxkHwjmntowS2Fj4Kx5qkiLOAASOtcdw_vOHzbFlRSCb7zec03emZQR4HndmCQJVKZR2mRDeNi-h890FLGYXiMM05FNEcd89af8dEAtk7anc2XKCUJUTszG5FLL2izDdyWBZBFv-2r_DXpyXpOzQED4UelVFwoROF7oCUypMArffXzts0f1UtQojflZp8YfIN01rTer0xWvwxMfw-NxEWv49SMLygw9lM64Qi9qX4uFPWdmDxt5PCx67vXYjzC372bzg_8t6MstF5b1HlUSFLCamww0fpVpLu9DBNjXoPgFH_ToakrKumubq_qBccI2blxECf-DqF7SomXX04uHPo6xN1ImV7zUmyfRaW1cm9hNGqqiWBqrTMr2cfRelodZhUgAqUk1p5eGh4mHTqoTSv_xzXFSUcKEMvVBxhr3G1OSl4w4h8-vrJCH-6cEOUTDYawGB4aTEqZz9iRQUZX9RHJZ8YUi_AniAh1hQf2oiuigd9m4TX94MZU5iLznVMEjUPc05h4YbDNdvbhCJIGTYCyNsKYmA2n6AMEBGhJ2vrJP1bkZCp-2qIsU5eUdW8hbkIwb1mhwglspBwEE8hV1OY2fg01685BJuxyWqc84DsD5n574CIsudrhoaGKR6OotStGreHfdMh3cnNtelWrZDCMtvTz-j-swao59KUuiNytGv7tZPgKtnJNOa3_iYPTfdo2OipSUpkkEGoKE_F7awK66W5xNX2il3mkCECg3gluztqXkRGu3jvnKhdimDySspKI4L1q38lEv-BX0OqMHz4rh9kR40qhA0q9kdO8fsoDjXbMKdZYqH8ILWod_jCrTtiAXZN0voUzqSmdymvTc0AUFxDNqxvAILsXqPwfQXKcl3immjjiUgWvyCATK6hzjH_Dk1vjjm04jaM8upiSK8coBV2IDdM0cmIJgiyNOzPAIXkd4ENzlcMeExDNCcfTUgtM1bidBnVI7ndIZ75R2YmPaWmybqesopmtZxC6OP0kJMK1HIPn-1cIt4IN6ipOgx_Qa5DxO6vTJBSo-IaI4SyHRCYWkcAWmHTz6DvCK9cyDpVVmXpOmb2wZEef7SEej7rOej-l-UN1jvLFT5c7UYrU\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d6dc6c2e8aa1-02878599','','','2025-03-16 14:13:24','2025-03-16 14:13:24','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42615',0,'cd-form-entry','',0),(42616,0,'2025-03-16 14:36:49','2025-03-16 14:36:49','{\"firstname\":\"Callum\",\"lastname\":\"Brown\",\"email\":\"callumbrown581@gmail.com\",\"contactnumber\":\"07596086805\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw7dm-BhCoARIsALFk4v8KeLI_sxPa7Rjrw0azh8HszSHh8FHcOyoMlwfVOxavkt055kq7rF4aAlEYEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7Si8ZOme93rULKUlICqeUfeRXr9lLPtmeonMHnrq75ayqlNGPntc8MNtjmiHxSRPN9AwoDi-ywB01q_iTN3rRniT5VJRZi6oHM74Xq2ikH9faZTLomP8BFgU_0dsVQ8ZzI7zdAfCkD4TBq1vK28SImZkzPgTC_bKfW4PRkkNjo_RqJmrRDlBakEgrsbRtFJu5ltdX4hoE0cOPiDtxhQTC3rDjlWX5waTB_9uH5Yti7aLHbOhJPhP8aZuRBRV54FqHguXGbf72F_tySupcj7tCnJrsdzzY0yyImwKnJiZXBKFpEOWISd2dZn1tuQ7VGBqYZ3l3n5h4f8KhItyA3F1jm882FKCYTS38q5D6iQuNAPOuDLwAwMjVW0OWDx-j2KBNi0QYWID0uWOZ8QSKx0iLDSmDoZD6L8gwwaWs_jB7ClvsfLcgkClbg1EwqfjwjqqNDImKeQcLu1znjnnWW0OTw-NMo7q6sTVkkzzs3fWE5LfIzk2mXDLrjj-YpW8g-APhAGvCEMtVWOXKB0K-iUFHGGa7dCsktPlG0ImpKCmdUVVbu0wzwiEdEkQjeR2imdZX584txpJOq819c95mgukRXag5oMV-iQgmnXfVYM_IpbzMiZKw9oOeEwYTdVFhPzDdglrym-MCCMjdg6FBsnUcl07lAUklqN9gJpxTmp-pJ3G5beIYR-1MiDwZl7Vz8zXXUZU3ofOyHKt8FZni-wsHMlUGPqyDSEBdz-9E_VsolClXo9E6to3XniejhjWuSso-nikKwfZ_ObdE_rDuKpBCHmhThx18x80bYMp_Ud8U_hK_lovl4beTIgiDiUO6Qp_Wmag69wgsEdZlojGm5UDVUXLSDfsZ09GYVzh1AQPz9JHiia1l4kSIEzAhBfwQPWEYivfmUVJ9AtDo_RVJcIIkz-2mU6kPunWBQrJ-2jKvlMJyC0No1j9olgWovURGiuRnuZwp_Uwcrc-jtQwr6cTe3kQJ4KoKajNeXs1jjFh157nCeFWXAnO9aYKb6VGE_4hXKsh0vuq6Qcvp-7PzN6vapbo3HjKXFzQG3AEdQ0P42R-T1ZZK6EaU8dN7ftpHp49UnksAIsNF7JxCItV779sw9XCfrc5s3NsKSoJecPEfydbCxct06M4VDEfKOYyVs-p18NAjYr6uGE9ouSTIeUDtJhDHZGpXrlMaQaKTqEdMByhBhNsvxxrabfecUFq5nY8My6Nyk69UxV3nWJGveccqvAdNB82xDt2Ljhqv6yMH9rqSJocSQ-AIQESeLZTcqoC_f3eNGwE01xh-6_g0wf8OCHT_EvCmzDbmHs2mAgKYsjgZ23K2Y6Zit82FRn-KEONSfGbFQ9ONTLg2xuEyDM10zRA3kIrwXkzxq5dxQvfOQmWQFvO90Qoi_cwlrBKdtHJ4QVvDPJMlFu_90sXnKoNKNO_FdIsNYyc1ZKSA0JCt_OqKZJNgysCFrADJ9DXRnkiGe-_A6aLVGxI-uGvWPxNGrAw0-C_shqMdUiA-qTjDzJCl9sARcpfyAsmaFzVgocDpvOceh1lrEmJWkzj7wSCTgF3k-yv1ELd8N8F7JDtNkQeYmd87EGHNTuOS4c4bz6Dfbb_8EcchsbYY4nvCBgAc-PHJyo--zWA4AVhi-RWmIJschXB3skE9El-zgfmMcOqOPEsTJf3PSMAHo9dUxsxxroDSHTeRnEpuPjGSX8B_0PERpzpQ6oiQQq81mi1A2U6-gw_9yQdzdIbHvSeHt8F9jb5Ok3OxJTFf6uM_P-pOcsLP412AOYQK1xQdbettpB8arTVjl6oEvBX4GVE_0CeOUA5mCv8amI549wLYZDindx_mvk8HBAVmMVf4joJb_xkHjyMUvaIO1G44bQy6h0YCPO16HtIAMQo0UU_6r6ZqUm3lCl2BecMQcaGv4VM2FZJbqFSRDRijqJFz1HFep0ORYHTwFgu3IUuQQkKQHsOOHyrppzUwvrMGynA_CLyBD-eBUvbV4BOREOTo_Gb50LuSCVnDkMdUx5RzFsX0AEt1Px40xriFlZePV4nEhxrPQlhxkV3CELPAAtJFKFAc6aLKksW5ZVA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d6e1f7726d41-37009390','','','2025-03-16 14:36:49','2025-03-16 14:36:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42616',0,'cd-form-entry','',0),(42617,0,'2025-03-16 14:38:53','2025-03-16 14:38:53','{\"email\":\"callumbrown581@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"5\",\"genderidentify\":\"0\",\"regionlive\":\"2\",\"currentpostcode\":\"WF8 4AH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw7dm-BhCoARIsALFk4v8KeLI_sxPa7Rjrw0azh8HszSHh8FHcOyoMlwfVOxavkt055kq7rF4aAlEYEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5XtwXRg_-ufnPRljAsDLaNr7u2S1X-6zOyppZFLgNXYfNTYSP4qK-mKje2awn8QXTh6IKTe9Pn12Y6uy7aR3hV5qjtSnpy9334lNxBPkbg3bPF6vRM3abW_mSle5Ili1n6-z0gLrGLDSfXvHt4WGTAG_hphup0nh_Gq0WrWweas9-3iAPhAcP4TrjG8nQJlpzg3PxF2hogP2s0uduM5OTYqSPfRDH-zNPCAXoaJoKpuLuq_lRj229pxwfrrOaoQjEIgLa_j6Z1LQr0l_vM6TfDfOox55CzVCJtuCifdAdUwWWaNwzAruCXdKGQAKvqXY69hH9YPMe5MaTS6Jm4cbLq6yauebscuayECRf9qAgYcaQXvTx-BJVb_qHGlwADVOe2XEzJOJ_htVa4fo66seBeId6OrjSlClqWHD8SLmd_ZOf1x7a1aiIsPQ0UqGludLGen8KHARtYti12HDAV6_1GE6EhXx2rNMMxylyo2_BJzHZntieZSGEpJpG49YzPa8jzDiKlF-plKbfrAzkYU_l_E08VNHH27Vd5_zg9-08TtW8tfYpIr0YjgVBYBdUwcvV4-Cp0Q-oqwp9DWYqhZOJdN8OXPKvirbU_MY3bwzHiU0ODwj8tIv9-rOuj-86KZl3W4Uwa5HvZjK8a2h-nm296koW5NMQV-UQ1USVjcqpibxxmWgimUF4f7RlYZPjfmwh-F-BrvwwIVmShhpjrLNXa3SLNKMgyPdC3f9pKN_YEfalRG4ixbLGEHaw5JN7pY7it1bkRrg9wKM4QYgEoUv6ZWANJtM4TBIKr0fUjIs0kzQwqd1uJa2V0cm1L6cS0QL9YZqpgjzl_-5bL_EiAViOenBm3f_HfK4oRaSpgv-ZI1A459jfRj9-oxkXP55KJu3xMo281V912z7z_Cey9VW1C4mvB1Ov-DExomMKsSoj11rlogO-ho3at9zt0BWG1CaS5FYnIoE7LpJQjO1EWGPpAWYSQjUSkPXK7H4ZPER0Afo5dRaSL_8JB_GR4nHXCAKHpC3Sa5GDklL6ZfGCPWToGQPotGrAIGjUdPIRddtIIQSA8GTpbPmj8l-7VRSDjW9oh4KG_P2nCj2_UPSDgHoRmZZL11uNjCFHVOcYOplfhaQq9-8wZXGtXP3fVmjYFXFX4Mj964b6ASmo2MFMqoR1xC482cyNuMXFVfe31hrQ8CvBLwYGFdksShkMc6TAP8siHlr0c59O7OXqiscmKwakZSSUjfjOm7GIgaMVCFPfkMao81YkFsA_3qTzRdqKevEQepd8BySH29rcr_eo7nEi1FoRkPZeNfEY4ncvJEg0gJvJbtnpQ0iZwws7nm2k3dVJ2cbBuGy0-ImRUCc6Kot-6uoMZoEvPBNyjpy6ObrLUYc_l_PYGFkQrYAY5cx4QKqQQAOqPzLNCwgfy6tLu8gCRA7G4s2eprSWpy4u2yPmT6Tl4rm9t_PFdWmfb3sClsxtOVaCd0RYjDXcR6GOj-pcxNtxQ8jzpflnwXWEJDHMZjV4z_rp2G-j28KUl4IXOkz0aZxY5P475LkzNuPCtXs5O4wanSqnKCjKX4fkHPkhHd94oHmTkyML1ppyN7_YrmHbQD43rBw8stFfLrgZXXAm-NYZ-6KEZPwtQLS1ZJutHaT08pfvq3R7v8L4mo9vftOtdTtoNoIXw9U7rkWrxqlfQAgppWS1vL_EU9KOz0zcU1ZHYkwrMOwG1GjiXTZAfT8fhp-WZLb1c_mijue-CEfrNcp8SVgw3ODW8MgdP9E7d_1f4zCQIzVybDXa5phsC_DjsWUj2rWq12DZIkz3UyZTTGLahtMeek4_1nA1msUJWbQuIFc99komKhZUOQFgN-DPMbEOvWZx7FAE0RRsWwyO7D1l__synprw1-e8e7tHx28FlyzZ2oWTtHt48rZ-Z43Sv4M8ZlbHnBoR0tbf6NvstOLiZfYTvMTL-m3G5tCb2sdHtL04t_rOdO4JEFEGMD2-TlbcJOGIT62ol240PV-TKenx184plWxL56O8DYtQ5pspaU8814lbtXGEnbN306NrAeEuv\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"0\",\"employmentstatus\":\"4\",\"workindustry\":\"6\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d6e26f522630-97858035','','','2025-03-16 14:38:53','2025-03-16 14:38:53','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42617',0,'cd-form-entry','',0),(42618,0,'2025-03-16 18:51:51','2025-03-16 18:51:51','{\"firstname\":\"Siana\",\"lastname\":\"Seaman\",\"email\":\"siana_s@live.com\",\"contactnumber\":\"07927312421\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5wmY5ax5x7KP3xzynw54RoaS3gOSNyivInipLG9x3Z742eE-qy4xodgEVljUfsAe242pvdSU_aLz2TXP-Hdl6Ik16zIXPOiyYMYVqIjylNOkLxLgn27tGK0J0kbNUYbsw8uGOSNR887J3dsR-WEgFhWZ_ZM_JjNCltHyBHGtLAbzNTT3vFEWhVmTlLa9Pw0jcexRMnOisNwqgDBr6hxyoTsLuRw2c85qmyycL2bfaqNT_MKChl-W9Sh0zS3v8h_Rf1Sxg3nRb4CypCaO1oC495cT_PhQi5KQyjVtaicaygI7iTI5-02zeA88hJfM-5NyT5Iycuv7lIMsjJQRm0taJkWadvyPhB0axGfeM_KzAoK2lhWCsOjr7wucEgHHgrRF3pxtF5SixvWrJnYLDrwsJkTpnFaQ9Rt8St-kM1F0KWbuvlQubFpRQYpZUJbI2n7Nc4fGnDRmrNQz3M1DhlpilCtq3jCSW-JNLmJ_En3eTZ8TShKLzlwPqWDKhkJ7aiL-B1AxZqdMk_9XwRPoIREwpuE09MuAgZEpKBavLMTnwnTQbq7UaRjftJWDUctiFT5XZevAJ_I_U_FgvJ8hxsk2m4PCNRP1nFPH-_Xkp5KHu2Z3TUZsna5R_MZay0Y3HiAnoMdcqkVHbzlwu70WhIpiMxyotMQpCJZqfsdKP7Vu6U9HOKEgYBkgLllL2_YwCuzBhQhW5P6MMnIVtUjqdO5DuyIjyoxWOtFiu0iQE-9jBkhncxh1KNTLT-E55bB7kDd7nzJ4LlLnEzxxZvL82X6YTWkhdSr4YanFJyiRyH-bvzQtpdFFVfnEWgz6z6_R8NYftBYm_d6zo13UlKxjNhjn7HJvjJAhRZ33vN74bzq1u6zBpgYCCXugiwQHTP9VuPp0vBXJlfmyuG-x15bu7gI3Kebx9tWwkvQSPCnaK4F6M_ZHYLc35nK5nK0jecjCp8VN4xFfKnThdRmOrJ5wtkPwDgFyJfs2xTUmdpiXLJEN6PuEkJJIt9JMexJPTwIcdmWZuvc7HrlExK7Ltl_ZJEdgg3d7gsBj1VNQCaqtKLzm2HKKJ3AhKnUgw5umpmgvxzREwUPoCc-hqgNdgrVd6JJI35FM4_d266rHfwsvk-9qvlFBTfUOJFfrw6GT_NXO3AcbjRVpbEUfH5Zdgk_1kZdQJIEH1oOQlM5az2FmodvRVX2KwzSO3C1Raji8icBnMLkvesAxfYURh3WzzuNYP0LHcEOG5Kih-sK2zoWlAVMTMOBBX_1HM8Yf6xthK07pkKdpKe_LL-njjvcvz7AI_qeEpRJdZQY_YoLKIIV4RuxfrWy8Cg0rQu26AGGdOeaZU7fcNPmXomPO4eacc45ljWG7roiX-o9pJIoCtMSbjfMEHHzNvwSotiHubEp6xWHnS7JjkK-Rhyg3LK8yBpMg1OlAizZ1YydJWqZitx4M0tZqWJfQR18ZIvQERw3_SSAyk26KzNKIp0XK_bk2mYN-1MceM31ePNXkSZEfixIFvg89B6nDwhUtxmbS2Ti1KDhIYwS8_1s_CIaJlVU0jTmYBUlbX65WXzR-jlPG5ZySmdiG9rDoeQVotdDXFj0-klL_xYSsLeNz7zUdaDY98LES5QMdTybVLbrZ6XMlYd_og0e9xL__lnFPj_hWc2mzLaKvfEhfbPg06XST-yX0YkldSResJlCImIsdJZWVeWE5fg3stZ1-ilR30zyB4v7mgzJOWHnpb7b4Hfdgpa9hNxxslGAZQ-QSAPxqwivuYa4tBLT7ll2tAgyLr6DXjeRaKR-V3McVVaYsy6sMRaVUc8BRVJUeQCZ0ao1iqEi5i1nlfqd5tRa6MxXqXPqEf9wHbj1G3mpCuMLZMoSpmELGTJmsd8tx3ilsx-SAfAoi9-cG4Xum-E7TOdw5WpofIk88GbyBtjEBj8dnMgnhxL99MFLSzqQKJ_5PI_evfcVNEkGxiL1xaNy3Uy7m8c08ZxLsydSOgXgldty66iofZ0yyJj6NezWLVA7DmTcDN5Mafq1NvmXLkGwpEAOsKZt10_2NqzO6LhBQwpc7vMno39st5Aj2qrO03ptOIgEtxEecvdpNUeI75BuBtJ7-yPtlL9dPFSNwMgFyKIWcTMUD_TpW-88gHb37ieEi8jLW5GK0v0buU6vTraAeGtcB5Ys4MLQBt-yzn81olJk-LJPvLj8aR1abu0oiN7bf1-QjGEyvgPoK0rQQV2bo7eUCPQymb47k6tlpbaZ2fNmqF-DCb1cVhVkW9X--e3LRrUU9sRUoBpm908KHpGT9e7u1Y\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d71daf59d8a8-69965465','','','2025-03-16 18:51:51','2025-03-16 18:51:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42618',0,'cd-form-entry','',0),(42619,0,'2025-03-16 18:53:28','0000-00-00 00:00:00','{\"email\":\"Siana_s@live.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"Sg16 6gy\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5VhVyYRdGb4F831n1t3B_rt5XTO0Ly3rrebEyj0973OxYZn6_xbEHekrz71bYXhigcxiLbiC0kg59-dlXVzDjHRDqVZpwCrsen1ktkWGvLcXogfQUhWw0Os28xXQLPbzuQm7ldwER7mTkhfhFL31QgZE3F6zfrUZBTB5Kpfnt5n-fysRFynjaTeD2aZJAuj48LYpXDkuCu_GPTIMDAlygqx0Cv4cDhgpaYCibS2_YSrD0rQX5lSYU65wP_Cnq4SYz6paco150MmMgCzgL2uG8Cpr610LCdOhf5Qx0GTrOKcgBMVej95pvE_WAco9wQ69eYzvGk1iM7BQnqTiYIm8_-PZ27ymiF_ziSlNEUGYClg5oFJYbYHTHDkTCSuNHY7b1XNIq2TkCW8EtnHA6cTdKKREC4oBjYCZnbX2-Mtpo1LaiSwcaTXcVokYeGSsIPSa_FN6GlLcEI4o_DZ_mBziNznm4Xa8nz59jsFZjPR8YCb_Cc2ey-NL9RblltsX7H3bQPXIdNN9-tgNBDV2ecW1KsFmIJr6m1uEAPn_uFk0zzx2W9eREBdubHNVBTRxCoSNIdC5gyWyXhhA93LveUFmXRD47xNjs6G1zx14Fzamx8JIBCZYlZSjxPgieGSeL9PwJfomJnO7yvhltgaVRfjD8R-JImkIvxt0qR8mXbhbwPBl6QigK_Zi_R-G2bGhoi-qeq-Fp0sj3_Zy-Jpqt-cuSwyXE2g8BSId8hwdO2wD5hXo92jfMrr1L_MUbipxM_xT1KZMINTc5SJZX5QW9J_0T6fNB2qn07gCsbJIpuX25kdyb7Gev580Fycw99TUi-8GrZ34bO5UnBCDST3Qr1Yt1Hk6JIBKojv23EyT4NNl7W91dKl9oqqsINxl8mUOLySrSC9jVT47s5rQS_GZ1bOudkwuiwPLDFsMasIVpU4hnGz9jUWNdkR4LjyWutEZA-wCO8dTDMEv_yICmvf0K2_U8Zl3S4y9qbiBQVhwfWhZM0T75iAcEIvEglONdfE1o9nBu6cyZZue0ee1iq1fldD3lIbBSChx08niXej74zCYUkIbrRHeRXw8dlpNSZQYb5yK_B25blZFPiyL5Ei8Vtum8QeopwhlCVbO4vYGk3Zl5SIRXAEc4Fy_g9jvNJJDePb3pGx5ffCkd4DxqkxHDy14rAbRkdVDWVGFKY2GZjFHQqrcxfTQIr70ZbZF_Kqqolm-r5U5MP9T31q_-oB-EtuaJj1Sk4R86wJ_IUGuRSCfCMl4I5rLBbHrEoCrUc6UWN2O8UewHfPMwyq8zfNrnMoviJSVsXfUBntG-sSnrNbunThlTDTYHD_NKfKOZRQCNnJ4Dk34GnCanlgRt2LS_ek4TpsV9gCjhIJnz0WEdntmi8eEORHoInc-5NkNDA-ezhlK-D0J4NFlyoRD4xs6kQEI5Ty4ZwkZJ43m5p3xhcg4mZUOMIKShx21GhNr3nL76f-uNmr4rrb2Lw3hqPNkCJooJZpVxKUFw-VaT2JQEEvQ7KQ-n0ZMsmE6_qnUyQZH3V8ALK41JpDTXrEUVaWH0g5RgWQ0Pu-wqlDfEQDv3U-un-Cb5qT9xJ1p7aJMv1OisJE50LbK5J5qRvpeqy27qmSce3xHKDkACPpMAuLqvT7H-vywHtoqXnXdF6T_iYbWsmDKGMhyuspaesOp3VcPhI0v-nLBjLE4IOG0eB0AcobQdLCs0kBhrcreIiOTNk1j_JWu1oYIPz7FOuG7Jsoh4KXY98jvYSFBe9Jw7u0gl8U0Mmddazu1HL2iAnxH8aBOAbHGIQR0kclECtGU3jRABsHnrC8A4I2roLlCQZvlFBDEbZAjU4nyZPz9UIMg65-abfq_l18W8znDS_fhLtQarmwV3g1sgq7Mwgc-9QGL6YNG8Ddc0TNVpPAvsCuuYpkcoWScwAYBbONmnCk1DepAG2r1zbxQ1ZXEFIYvL0sfDvQs0Rl54ZbREIhbt83zlXuOAVW9-1hoLZWEyMTGohp0S8bxcLN1XmKifAUJ5_DV1mw-nVWq2o516I88TPW9mKQh7SN8RhZbpSIHoNWN_KDxroXYjcoQ1bVHYnuqS6IY8sx14tzVvL1W0OeCLBikOx6CL9wBDxNJx7dzU8hm-rG4BIr9lC9i9PB0kxlwP8qaaRC-0GgaBAa1OXcwEPXZpbIEAARJtd_fVJ8gR9-23dTyQ7HrzvRfQcR9qXat-G5BfQ5pE4r-UFgzz6JjVk70SZcbZ7ofTxGgWcLnNzZKAiaUXvApQh5ORSs3mXtMXXpTOMVqaKrnLZhag\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d71dea8fd433-77909482','','','2025-03-16 18:53:28','2025-03-16 18:53:28','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42619',0,'cd-form-entry','',0),(42620,0,'2025-03-16 18:54:35','2025-03-16 18:54:35','{\"email\":\"siana_s@live.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"Sg16 6gy\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA781GUIJ0KdO8Wh_NdwMcBRV86HMuM-ixNB1QnFWmmZnybCMBKN8zxy-AvzfFlC0-0galRIt4GDKmEvScZLaG4KY75mN1jaBwsiLNqoMsFloMgAUMizx1kTwR3XPWmuX2JWpSefrECEQKr7P0lofyViyyDWGoxuLIkxgUtVTCr6zvR-LBSlAYOtqryOUcRxG9GdSk2l323GMg51WBTg3iClKE2Q00faWtLI7TM5k9xUG1ksKBq4DPGiJusbLqFckUgUvVTqG35phO-mt0XGgPxJT1qQc6WtXQKH-kTyw7N-44plmJpZKok7vDOlPXLZnh_HcQVrIKmLvOvKG5Htis75oGT5I6-hTXoO9zeATh__PFj1l-pr1HIYpJhFNnH6Pias-UX28l-Hl31qQ7geVYmusNZ64XhCGVz_krjS6l6QN6pcM5LYFTL4lq3W9opGJ04KU5oXdanrNS6zVGwKcrRZFBfcxZr1MIXFZxoKvY-wcmGiN1LnaJ8TJ1Cs35Fun9FgSCULS11PpkBNyp0rII808p69kJiM1kXPPoP77_A-UECahPOKdAyw4GRnWS0FoYmzsAxd0o8sTIaQtQDwf4MEHsKuuHiEd8u0tIF0ckMhe_ciGKGvSfZRBNT7vpdKNgHiVYW9e6U-GMH3hMs5hHIW-XjzjD2dd8hz3g9FvdaB5_RhHDwk7d6Mc9KgA-HxH8sTiVdFCcAG1YdfwLs7TqL5PvTCugTgtEcHpJA1pcL3RiqML4n_n1IAgqOwxm5glDXWEQlrpBaxOM0X1OgMEpuTFPvMUj4XT0zT7353vaGLTjkq_uM4_2HZjRt8076nEDILjlsL0MCQI3lCwnoX5uT4lsE7Xe-at-3VRnIwoZ-9oYEHs6FoyUjtiMr2vCe_vlERgAt-rtplI7Gyl8dGDYDZfC-5AFK6uCUy4gdEGYBEkO9ccCAkKUMtIR_ie7iZ3ebBqc_Wknp7mmwkf8y-0LLf8Sv27f_VPR4Ft8IOzNW3ShFpbT9C4N0SFkQKQ0aROT8OtRySOLROjYyScE37LAAjEqLOoRWmzDOQiaeU2kiEc5D_LPW_akBGEs1A2XKsBN4oxfYVCFI6xrXtNMF1Z9r28hCKCQAA2FBefnN2t3Znfsr-2X42nkp-cHBvXeLeaPt4Vm63RLkfuXD8DWA7v4TXYYZLiRlQietA_0NFYZafbp_8k93raHQ4MS3cF1OjaC-U1_vnQAwXw0yG2HS7YZR1POpl9JdwGreYaG7k5b-Ob1Ozgz6_IsMwMp4phnRKifo9Srx19nMemcuO4AR0joTeCpISxSUQRdAs_TvWqUxipgwo5N4WRwoVG90f9tTL0UuZ4EsGhn8CcojFbfV6LjlWugQenz8hNnPaU_KnJ8lcDZiX9bXraGRnFHkLNLwjdrF79QXlzRXPw9rT_vyPvAlFL6MwBWAd3wqfHWgqNZqKF_U1nXTNrQBs4WZWu5G9UFrv6LB0SN273m9GgiN0DWIwq_ceKJqOIztFNNfJgnRT12bzkvh-KxrO5TyWAZag6FkQMG30Ecu-k3QxH00gwdHZwfjhs6BeBiAYMgUeWyGtOuq6bnfH8tjIx7ppHMGhjXObPeEy_XbMf_ldtJBXkF-Ey0JAczjzgribGjPFuzvNMZ1KSy8V1Zp10jaVmdL2GCw2-_0acN67j4oACKzlUh50uIcl1dlmfJmiGD918yxdNlC3C6JJFxUG9eABVtiGBE8-reqqxdMFq7gou7RgyM4hDsL9HGNftb3x1Q9PXTwtF1Qxmif3Fg-QJYwrFfsv2Dsd1EY0US8pinu7oqY_vQqtpzpdTlTqSHUQMheQJQ-2WXeuMgPb6CO6EtwPeW65hcX8tnfjankGvgRbvqetLaYL_6Jrv2l6BA679QSvDA5a9NBHXAqGt8AvLmv5pCNqZI3g8mQPE_YtSJ5SLKdODP9aaoJx3XAb9EzL2oeuISbphx9nSvqBrxulEUy6BvRzFwBb7R8rx8QT2JlSiAVuaHA3hP3po3-1pmWV0vNl1X_NIZbp6aXc1NVULp3s_8SE-11ebgdnjPnkLs0VZP93oN8B5wvNTyE4eeDidFC3dRkXLf-cXWmlDfXQpnpcHOM3tYchUTKwzgsO4x9XcXrznTu_TnBKcElwwi0-K6nwaNAZ8Uc_rRrTDXey9tJ8HewCmza4L-UwEciKqitd9uXVqjOJ0AjGOxqDcPxti1kJqrBYIz47lxZuNw_2F3PNEMCNIF8zhoZsSBiYstZZjqgfWjQbCBg78kJcotMYAI4Ungcw6yj0CWg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d71e52448373-15228841','','','2025-03-16 18:54:35','2025-03-16 18:54:35','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42620',0,'cd-form-entry','',0),(42621,0,'2025-03-16 19:31:00','2025-03-16 19:31:00','{\"firstname\":\"Sam\",\"lastname\":\"Chidwick\",\"email\":\"chiddy36@hotmail.com\",\"contactnumber\":\"07510200922\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw7dm-BhCoARIsALFk4v_QXAfiXVlT3_unus_F34KFUEErIQyxV2H5SXtqMTJryLtqPrFiRv4aAisEEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4jcAp8L9wq_z0GiA4ENvK7-qFMt6NNOXUaKjoMz1cFemX3sXGPQU0MXjSkRzdPD_jbgLOu2dkjYdHOeeyntmXxjy_B8-QTx7m0HKXbdb4YGluzoc2NFVBAgYGGZ2YRzerTTUdAP1FJ1AaS5B36CDj84eFB2IUDsST-5wbe6euSuf1zwXfnLJEWPjNWUn_5UDMO1qGoXKC-QOYSysOojfzueaWp7Lm6J3ziQ77U5QhbVvcyuSPuxP4pa6lgwKWiWMOzqiSxDpioS2GPl32FJO3MbnsE1s1AnPJRGjxXVeTTuth2g8UrOU-FQaGTYkOldMAJ_xVJQy0K_hA3N3_rqwlqOXjgWOIPJvhqcsZYNDkvFT8TWh3NjJ4OKIQJD2bEMJ282IZejkLD8gj4jg09UMPF_fQNZT6wM56IVJ3zPrSLmz6HQ8gjSj1ZI2u1zQE3-QJhj4KloHXlIXFlHivbnHZwylUtzcxbVxm3BYF51UEFly-3yULKPsnm5l4pQy3KT9b_4_6WP9XD7BXdgmy2OzzHMOEvaGaIYz7Fc_0IUzOMenozyOaZyWGiwku5h48lidvLspEBKxRnEDbuqJeGaVNjOxRP5q0PIna-GQWV-qDFJYyNbjAjjI8cfUEoHvoNZcT4u7GeBD4xv6R6vm6LwUDusmVk5j3W4vxJs5thRXmXBVvmt4Pi1kMCKzADzPEzJfswLBbjpd7okP-MIQDLNsbYjUh1zFUO-Z9PmqK_8fldT2zCzgSs5s2WtS2BKvvsB-o_1iHnWQ0EESp4aIv3h4FkOfnFCWjgVN9vScNOedekIJ9Cb-3tezRBn1BZWtJE9rh8YuvW4cJPJyRnIGP9ilfB5MYsNU3e-0pUw07Ove_w3K8JyXimYtUSKAmRbro0therihqfCI9A0uipPPIhge_ZS67BQNugxA8bFu6szLdAQhy2y0o41WiUYQ2J99MX36IuvnZ9penVmJ2LrjIp9Wv3nPEPvlM8nYAsHph-2m-4Ueu_loCkdhVbv2OtuiKkY7A5KByYTIlztuWpsYBxE_k-HhzLyWQeU5C8brdWVOcRnaCeZEbKdfGhgHOsLc_ojjrpKIdJ5iCLFdZ-r40NtsnhRhOixqiqgS-Cv0Pj8RakcYv5IwsMv9KLfJi5s0CrgIP45CDTJeCgv1rolHLgWZrN38M3qfywk68X3EW4HaWFo6lPUPGbgTTCZvC5BCcZEim9tAqAhMBljRBmwJdFDvU9_WFQ0gf8x5WQvM0hRv7WfQSU18ThKfU79po0R_wuGQ4_FvcyrlLVSKvwrdBZ7hwQZfvlWuSS2af0MY3TtmXolTcE0x3ckxcTsZ2ZFpKPR65tWcHJLaovXBw_rlq9hoJ6SUF6XcjKSqmDlVv3oeKrl7MWindKfr5smcvkdVFVYqqyW2g8bypnv1pDCSzj-UM-kcb8GUhteTQhBLEqa2Q-KZtFGnGZsdklJVcpn_KrtQMnyMmWX1iFN-N0vvLTZ6QVSe_o3TdvvwqjrvXE5Cak2OZ9q09RAH2uOmutSJ7TaxfLYc1Ra7vh2q4lgfBms3z30JsbZQkRTs3iECG5H-DzEmFV6rXRsKRdUiNkYfneJlgD9Yvygsat0MTKtBd5ipjRKmYmI_4XEMlufnPFbAJ-16HqDxi1Q6PkmMy8QsjVG3oANht-hguJpxuzG8JvAst85THQaco_yiV2j-LDNy1FV1NOcyhuRHPJjXB7o_DuW_4DfzASh_c3pKbfaQqTj6fXWiX8b__gXDQTzwguT8O6ztWe0dvd5MgmEBtqj3eNS9ZT_9XYzlUh5qSN8GBge1J1roFCcag0M76Hyp5Mci7WiGCqV4uk4ezszlh_xgFR7AUsZ6lWMQVOUTGZ4my2V6XUnb95mC4e8M9AQqGxuLOqiN96Q-cMxAl6CgkO7SeeW0lyX8FXK57zK8dtfR8GtSLL1FaxJMAoU22uV-LZy4dHNN2A0fPsg7tfwxhrOKHAn5OtwI7Occh2P61jHc4JhBDrVvqwU3S7Ix9mp53cwXC6kbuCKr9y70GMMYbKGNtbtgFhR7GQ31gvvW0lIIMP5K_He4gjujwQHW-HTMxh2t2LVQpfsmGlK2FPABuzvZUrswRJU4FvaxShITrWItuF36m_kUt6aw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d726e9102209-93248722','','','2025-03-16 19:31:00','2025-03-16 19:31:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42621',0,'cd-form-entry','',0),(42622,0,'2025-03-16 20:58:59','2025-03-16 20:58:59','{\"firstname\":\"Stacey\",\"lastname\":\"Williams\",\"email\":\"staceywilliamspt@hotmail.com\",\"contactnumber\":\"07908764887\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/?fbclid=IwZXh0bgNhZW0CMTEAAR3qDoBrc-ppli9L26q4acH-vZLKD2M-BaxMXpSEIbbFkD8N-tbnwIA4rCQ_aem_EdVOf6TjUtP-7PRq8pcdcA\",\"recaptcha_token\":\"03AFcWeA61OotY0ZvOFFLLKFi7yGzjcPCVjznG89VOtNgOMIsTut5eLff_QEbgnEeeCASJihhYbpa-vOULacWiTzgVKOP9B4DNsfUTJP5L4QQ-sFoaKwwEI79CqNF1IggEg-hnqa3wQ26Qni0S0N042KD48cw0adVarvlRIxKsiKYuAixsu8h_0CEH1-e-9YD-hW13yijbaXY6AgbX70-8VVhsL_zzclhkwHM5xRrhB77tmvXw_1SfWeQ9cJCv9PXSt-dGONTpR_f9EesBPPaNZ5r97Z8iek2bRRpU4hLw_emnKSpZLe5ONyjh6Mycvn0G49nRZYzWAXn0L1eQXi647wIfXhSdoWR2KUIyWnOX1NOPM0mF7dTICHPzlfnoXYkZ7_Qxn1Y542A8r2UHt07icke8Txsr2FbP3u3sFksdpAz49ozdpuSnuHJhbJt5siiQWfbDIKltuvPr0vvsv9Kh9jNfPK5mIZ7lSanVnGJwQzJrJGNQsrO4iaY_qJeUv7zZ755ELTrlS-s298RO0wSQ27rZ2BK7Fgz51z9w1R-m4nSKv4v29AJDTI7oAUzaV-yq6gRiNfvksu6T7eF-bsaUOA0F7-LWSiapKJ3s1vIHjkggIuo1RCGho4LRruMMm4DgJbZWeiFqUVD2I-83uJCYcUtOsBf20EofKKyc2L8pQPLBqH3FnwBI7lLe8fJbiyu5MpBIwSdjI3KCo44tWcc2jNwWQ33PlELAhMYgQ5KgzIGxA88wDhPF5FcMB2NMoMhXb9gWF45ZOYwB0EoR-0pjPWQjywf6W8DpkCSPuST_h9EJ8Y3UbqM0NtBlGi5ptCfO7U9vR2rt4F2wXn2TBKeA47Mlkpdbrjfp7MXkCXHxQbgtrYLZw8D2HSkyLh5uO-ygT2JwU3YoNiHsiTWj6vfJCAGHHLesEmrT74yUHBSHzyfqSs8yXt7_x4kg2eGID3xsCoAl9-nUqGbnoC4JSuGouQNMRahdWYUvLUYhjNC1qfNkxL4g2Bb-kd27jlcB4Hl9hHPDwjvjmci6pV3OCh8_jhl3ENXYXqdu2uAGOcjDI1D9nKq2gR2oj9ENL0F-WYsu04dAsenfPa0nw0pg9dVaA8XsvwWy7ioJR7bLILtK4y7oXycbpTZod3KGdECoEMCgQmKWswVzpLsdmhjCNNO3geaSJp5qatRzLk0lx7YLv5qBwL5k3gLO03iYHnQ232ACOHGi7nnchTzkiCbf1ZBL7Gc4PiM8Fwt57WPVl0eDEwXoS-tUVXLJ_eTCguUjNsOaNkoWDqe2lAFNlugG6kofYjQwGkIy2CdZ-PrQQ6yP4-g9aPoFLAG-sab2Nb3kR7PUIKhTMwOwHG54DGGr1ElowhKsnGqB1ThMqkwxP3MeSdauT_XcY3HHionOtGVpvo4WcpkHug8KIJX-BWxnxBC_Yr5aHwo3O89jrSM9RL-quU7MmNMs1qGQI7hZedidN4t9hYnPi9CmQeWQR2lwyAgoMLUhFgSVaDkqPKpi0PRgQF60wvjxsReVZwuwz5IrCcwEL9MbRjtyaWzmhFkLJwA29s3BQCRsVf3eqLXEFvvIWYmY3UAKf2U4vaLcp4iDR6ICys_5VzqOkfOaxwSuutMcba2Tfd8333KkP_-Pmb6Qw4vMoDkFr4NMl2wjwt3U4gd48HX6T5pu4g7n-VW7xakprGhqW1XUT9jHJ3T_DUncgGTQ733B6uu-I29UP5wMxeXGQFvAX9Xe9qWR4Yv5ny6kD6mGrp6AOOGYvvq2d2R7EWJ2w2eRz0o7zi37uAmy5e08F_5zKLRkpkCwSpmpcx06ttcsgZlKzuf7Q2lZWxq4YhTPSQd905sbYbnzMadiwjQl8PGd7mrSVTkTQRrzzRFIsJtGHi8rFK0Tc37o0CsM5as71H-OGyj6Rd-K0Ol8oiUU--7P43tQMM9_Twqb73TVzS5NVaUdGCrgT4_auEEdEZReJHL0RxnuHIgcLj4rGbhNS8BHUIqiQjItHyiIZFsyKE0zT50WyE_a1dKOI1DV5tR358xg-9V_6DEGrk_JdXMph_YEp_XxhsC28se-ELkmjVfdnrhpCUWYifizRBC3VyLa4rPds7B3xNApTS9XQbqW_xf0CWQZpiz1yum6XntNT_siko4UI6udBEe_xb-3Nw5hWpfCU2-pd_A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d73b6f9acf94-16130864','','','2025-03-16 20:58:59','2025-03-16 20:58:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42622',0,'cd-form-entry','',0),(42623,0,'2025-03-16 20:59:47','0000-00-00 00:00:00','{\"email\":\"staceywilliamspt@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"RG19 6hn\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/?fbclid=IwZXh0bgNhZW0CMTEAAR3qDoBrc-ppli9L26q4acH-vZLKD2M-BaxMXpSEIbbFkD8N-tbnwIA4rCQ_aem_EdVOf6TjUtP-7PRq8pcdcA\",\"recaptcha_token\":\"03AFcWeA4xj9_KZBUsAmU-7uh_phfF3flkux9RYccZIw_VsXlDEJES981AMM4PfZr9P36_YFqcIQ0OxN518HVCIkCDfaGxBr7tl2viCNLqFgTLNAf0r5jNT9Fx7RBJegBqkefVxdgx75q4WtTwv-SHM-EMy1melayF6tkH3LF_folh2QhjWyT4Wr4YKT5G3BO6w_0p9-gYc8LXh1bph3tz9kxXci5QgPgz-zLkGkZcHIy5geRGSLazvEndxMtNBuzWwv0QuhlsqLH6prP8vd2MBINjXYrDoYNZ_7LNTmIEdAx0gi1IsEfXUYE4WDDql4n2pqC4vuNCZUxjX-uDUqdsYMpuM262gyv5KSYp6hWGmyOfMBxwUnWuTjN7-DukDfZzCD0J4KdJak1i8LO6fDnxSb7xT30hTe3Q2jtB54AOAa31dftPLmkLUCOCxE_4jCM2swhTnaOn0Lh5EHfZM6SqpI2aEQlZHxjYUZz2yPKZsA_C9tMPJrC3Nqs9YZVimopNojePpGSAXaXG-4XVHceS_kSVM7FTTxEcEHWF6wujZqyZ3prMiy9aGeKqwtLGjSkwsDrikszWfY40of8O0rZtN2Eq1qMHFIYYYLjUOJgvLW0zSitiBmRn_X9fXVicWkE0456EaRDODSZtmt-4VljT7b8EegB77eSWpddIeya71wj_cphdmHrTChdnoj0c3ntV-WmfIz76CnTLzEtEjsvL7ABwyZhkCl_L0MWEDGiTtZUdpxDiGptYrIsqcXwV7ssbs2jLyWLtXYmYFFCN5ErNYKSQUYH5Sjv-8UxVll6G-xKcf3s8LbeJZyEeGtl7HJpFoKsdspdz6KMYyDcUy6BfNJ1zkshTbd0TvtJjDpzPTiSfQtDB-sJhS7IJZTtfCHyakpEcWM5lg3M6YWZ5m6wrZvKKPllJss3NeTB29FpvgsRCUWFjkep_L8d9yQ0RmROsLcCbehUePPmlA9D4wRP4T79gaj8UrpnXgf2_tS72hvhbS4AJlyc-DNWUg_0rROXT52qCkMK9RIE61Km8dPwx83xIGx74UXFOZA0J5S1eEId7dlADRxkk_ZrC_44Ao5_Ah2bN91iS9-xtYbpH2EstpXA8Lv69RxhlC7f530kEtG7jkdy3U8y0Oy21VA6MQiVA2OgiAxzexa3Bl0ye5GaU_5bTb3ncQtSo9RHmOV4RwvdNaj41Q7P7YvYTG4iOqME8CU4nJ06wZiNASmgM7eeEUHHEiKUMtr0Pqn_q0F76Zlqc6PZOq-kRnQIOzY-99iET18gRhwqVxr5eDGwaVdBqcRat0bJJWitebLNwU2Vx67lBkjiaL4e1W1ti4MJ_ddnTVq8riDnF8j5Fx6XRjGNZqxpfRpln0EDbOJx4I3XjP-VEDALmu0ohizi0m-fbXou6tBe6MQfN9RQ7yWYvhHZsbkphqSS4UGQQ72sdwtjk-ML9vVz4rUCqGEuUNo-wVIUYEIl4IxxjbF6WTbeCVNdgNLNDIlnqDa8e4EJEz-iCXmMlsV4pPyk7VsfPfDMpMHiQp2G8jjjdNK0niWWuiU_38LwWUQjJ1PGUvkdpGNkTvWvO9roKmVDaObBhdEBonEiLROkndFtw6nmZcZ_Mv3RHaNN7dBSE7DRnTBem863vIQUPZMsMxc3Yik0ur4gl3IsbYUXk78d4273aT6Blyz-choikd_GSnifkipfbQjLQD5SZ8ktVT5lGPor7HCntPmiVCa_qouJYV0Ea6WXaUAbkETo_Lk2OxVWXfx0Ym7GfozQg3d7jZwnlkNdPga1eCw3Uj6JcivczQ6X7SCCDoFMFo1wUdcnr7Db3JFtBpvlVT57ypMgQ-uUI5uGXAOoxKoR6aENMxLMAlWR1DVVjcquKn1KUeVB8qGLuwTZHxDRu_DwYhVGjmTHrkNbdxv5h_9oUrJu3lVA9QgyipBxVmlFQBV2hPoftAem6ILngnzGoXwklTebGpi1A1Dgwg2x-SyUCfuHUzNHpLQwoW5PtAss8-VOBQP3WiWGpIXOJQX9-OzZRceCdFWNa3FRWwQPXLsNvzoDJyFME72VWOMdy4DSkDdPv_J52VLyEXwMtea-kupC7-WJOtRQF2XN0iRAoOXoLktZ1-aZwK-_0Xq2pGtMMFGVXoJRnXDmWigIOXaE3-u-RcAMTzjHzmkc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d73bc3604491-37637913','','','2025-03-16 20:59:47','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42623',0,'cd-form-entry','',0),(42624,0,'2025-03-16 21:05:11','0000-00-00 00:00:00','{\"firstname\":\"Charlie\",\"lastname\":\"Gillies\",\"email\":\"c-gillies@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vMYf0PmFD-nNNfG_qTptKxf&amp;gclid=EAIaIQobChMI-tzIgsCPjAMVapFQBh0T7hOREAAYASAAEgKqmvD_BwE\",\"recaptcha_token\":\"03AFcWeA4GMG4_EADHuKmnkL-rhkTHX7Mg3YwyQx3Shwuh1UpMly2x3QzoPU3rCD198l2EFmakXcbEFxUabSmD_cJ6BF415leak_hAZUpXeEzrVzevqfz40sAsKWhyY9SAgPqbHYxZcZTlh_ewaVfn4hdRfPCF9K0XbIqY3pgm_OR4r1HVOFqNEfGVlYeY1pI9yeQ3C6UTpFBdCeSxEhMljfiXMJ24PAQTEXCu5Qx4D8qMW3zft3PzM6Al94tZ8o3qJkJnK0JHEFPl-ccVMx8udHtexjvAff3qutyvqUT7k-Xi9NEqu36gvkbHmVMN_Z21rFrcMCIl6z7gzFC3MT4nC9cOInx6DchpcxgTBEtqOhcM_gSkKizm0ST52Q9kmWaXiuDz5nuIN-hJ2N_3z7AWEAonbotVVWwlvpl_KEhkYkCAzTF0JT11RUPxUTAnZ1s4bF21MC6R3OlwAHSjY1s4gHx0DlH4Cuw-RD4Z6uUUu85za-sjkFt99C4bfX8D4vX3mMdNVSKwsZeoBeOp-eXIpQNwzSXb9gG9K_dk1M4aIQPE9csbT2oeiqQQbl6B7Gav7GVGuoD_UuHw_WiSr0OoGDGB8rCu5o0z-xYKdkv5UzvSTMDqoVvf2QBShRb1BDgTTJjmRD9G6NHgroW_rHd0lEC2-ESzLkoceKDjQ_3Sh0tHnNtNKB7xJ9jDR68bbsNa98SsTEryqmONeg7AbViN0PlHRiXNOZoPgbNEAE6xLtr8nomZrbPRSOWqMK3RQZTr48kU3HZb2nNOg520WAzL0Pp-DFNP951B-F4BDV5cEYJNzVshD3IXuugLTbmYuISS4d276O3dbyw9susTjj17LKBd22wG70It3h5_yhX65NPxP6wspts1SWSpoVgHYKU1CzGil6TLmaaF_x-778_kF3Vi-w83Q48WJm20owD8kTz9la8Ns3_3llW-l6wPHd-laP0T2BCwmQShhPg1BoxBtQQcwDE6aRmJnl7-MHHBQ00gJR2dgo7SiKGKrFUf6RMVDhvHFAusxUlPwo8WxBdyrq_0YXoaVQG_uVJdhLOdngkBuk75-kxosNbj-8xzVH-4y1WeMS1XjqmW645imEidk_0cT8QfF_RFnDwnJH3tLpM5VZNYbdAs2hg5Ck0H9p8ewwPqfoABNc18nPt7JCZ0UA1qKbIFEU60d9HH_GhZR7C-y20yGPN80wF7jH4ONzgom1I03B0CAi1nt7GqVzkhlzVk3O8NMEBNrODuia9MOZti55hOrHTg3Kf_He8WteReVjGZAmLwaUEY21tHE-hL68fmZx99qTxxBUdX8TWHwfy9btrNipjIoQT4voL7ykzIn7_j9uAPjwL50X0nEJ1_iPVEOEGCgIotXCE46sMbKQdeufuH9fCg0QT1Tme0nz4szk5dKZxFBB4bInTH5RB-LDlqo2FAMSP03I55vDUQvo5tU5QtoeSUG45sEfCGBykvxUHjIvseF2uPeTkUV59rGbn1P6mmcjwj_rXBeKPbtGsW6Vi4zABgklyaWrggpZaa9TMmhe_x9UaCnPoMrEO0ZN-wJBZ4EGL1hJvgurEV8SGCYXnRVmguHPnN6fwvh9cHd8YcYDEFuS6cHsbOAX1ldYxcAH7HuSamtBPHe0S8rv0EUpe6eqcNerORT7RKCUwgHUxzWczhHdfOZL8CWfGzrG-pyV1EtotFnRwsdPWzVHrXAVwJ412xRtex3eWx3mVl4K7HaxbfzGPP1Zv90idVm4Ew70L0QVF8u5l0NGu2nGZ8sk5jQEcnNJsBIE9oJw48_2Af_DslHXlwa0HBuDF3PpOSOM8-1vDUuxdCCpsdSYpjmVIHiTrNuRWfuy4vddoacsvHRUsDjoN0sSSdSqp47BB9QwbUb75NM00FoUl_BXVORqspQiHdkW--_yOr_FOkNBZIpj9E15BdbH7rF-1PoLEZWKiqj2VPC6qslJRQmdCDt7KwFlEqS61we0eVMlB-wDLH7qKTjx8fQF7u9c6_ZsuTcWHO6XvJKB9nKSX_rMmIzGS9ZmhKT9ZuNM9CSGMdrUasrV25UatmWjIwEpyK5uRuG9BV3rixXmmKT6llgO5_p_GgHYd_iwCvT4UNLum9wzhVzXyw-XOZBEzpCouY9Oel1Fq3gCLU5i-hcq_lfrcAxbvqx4onyvUilFltJIB0RENhwIXZdpU5z1sGIlUeEenVokloQafDnZjniaqEJbUpVnRcIWD98ujsbKiDHbQbUjThV6vyu3XAUx4acMFuvfgEUbhUe0wyLhPgexNUoeYGiQ6DkUP0ZPCuGijU6Au5tPS-HDuhUDaYBnL_SovM110uYu3ZUiB7PCR_hi5TrWp06IIhggO9Z7lWVNPflq8FzLNSwNbm7Vg1\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d73d073207e8-36280312','','','2025-03-16 21:05:11','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42624',0,'cd-form-entry','',0),(42625,0,'2025-03-16 22:22:54','0000-00-00 00:00:00','{\"firstname\":\"Kelley\",\"lastname\":\"Ochiltree\",\"email\":\"kelleyochiltree@icloud.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA4JS280FULcRznHNMH5CcrjbCh5OU3kT8PVxTkZ_ciG1NjLCkRl8p2FYbhzYyV6WAtdBQ1mGegcPWIkK49qo2dkJQ54jTDFYOT72GUDwWEDf1kLscIMaOyRmHRDdlhsw4sHDkf7VHmTAV8gbSRUgDbcw2g9d7wmcmaZZh8g69RsbUJIfGHyCIDwNTnGxxbHlNwp4TbLQIRthXfQ_ye79IFUUra81m6ZIIX0dgR0NxSiwisPt66abBKNzOTJY3QrTavtkf_mYKHqn88JeEecIhXxPO96Dr8yLizLdo2eogQ1v440mRuPy1wg18qK2aybnpJl7tTg7w05RoYe0YF44CCd5N2x6wWmwNor2Q3Y2BfcTOH0K4lfAbqVgB4GRr0XKmKfsVbdwqV5FS_gEDmwZrVUuK7uvBLe0gcFZENCCip4oQG7gqKGOGYJjoUZeP_Qxdb6lJufTe4p7mGR1535CVg2w5Xny9p2P2h-AhKtel7KciB0WBvkB-OZLjyiIanN_MjJQNiDMUxYkbg7jDf-ZpzFVcL38nUvH_J_HXjc_KImVF8J2m_9JMVmpgNziBVKhjMsSBX7ItrbZblTIkMMoLTJ4v7MsSujR0mb75mSTO4uKxlXHm4Taf7Akl-4ygUuXCHErHZpKqQgXFfsS47HYHCAa47zodjNfrcmRQv3SFhJzm1f4cYFTcIfIOMDSnj_wuxQbAaXlSw9EtH3bdG1JWBHjZtC0US7bX6I3F5hqSDQcpdU_3vO4B80Yd4mQnhS3499H5vPnNr3h9EYP88hIRisQTBl2xZOFJd6f11yIGntSb6NXMWP6KMDq_FExXAUB4llHRE6UlQVNbHjMuKzhCsXPuMHzwmnsCkKxpokMo3pS1YQHs1v6VGXn4Ow-2WsXEfolCX05WGjGp0c3nYjyyJWmRrevmrVOTw2gn1TO-8fQ1OeGLVoh0fxvnFh7MS-ija_Dks2B0exe8_XHm4vi79VO443ZNMMWiVWc4NDgXIl416GlX51-L3CFfJ3Xberon1xpg5wd1n4IGvfTv_ZU9H90l8SzMk5bO58QFJm5sQQdymseLeXBrBZm-3XaWqv6K7U1GEtEePJuJ9p92U8lWWgbFExiXN4BS8k9L99-FPXx-S34QOFaABTf8MfjzsJZAGCfttCQ11IFlMdcQC8Hohdz4PGTU39S9970LlIN9fJkHN0ouz1o2cBXT4KSbr_gkRVOkC3Zx7tNUTflMZRkAASXXbjdC2zIoMZ1WxsCwGBSGAdfhG387d9Yeaq1YWj4R71MrZUGxHX0cAN7lf2WOjlh5S1JLi0HhIpur4neLp46tv9NGQrEnb9c-PJ5FfiElfBVMcJo4t1d_NJqP4OyXt4Ir34Ylpby-cvJwbI_KjJUDoAEvP0HXhHnwyx1e_85_Lrqy-Njm9LKgsyAikFyzuRxn19h2dSgKYcH_w0OQENPwC7tce7vHDll60DdHPehk7k1eFsZ4psUX1yVgJO-50Du2mpLkg5FeI9sPSkF7pxDwTzPopeD0MMyk9j5fitaZVnWjAg8U5YikOUjPjc10AKMeNWu1r8a7jxSb-O5G0jg0UcSMP3hsWde_NUO9rH3mVYcMYM78Aj4cz_MNw0NnNBxSY6xcUVwXH8087LDO_BGR57PoQvTHPoK83J6XdLLWpX6CbOM55ra-WmlYo5IRFffTWJkTEDV7U5dml9-mQd12phJq5DGtPA0cBl8X-WTEWGDRNLniugc4v9CNiCwb_3OPLze8er4gwCA8bWowwKev4w3ha13yCcmqDNwPVHJBKHvuLS9WQn7sj4UG4DVMKhBEzBe7bxmE-f-VkSGxWTTQpCe878jRhAP8KHmL1XIC9c2OKTGgbKXgBWycSg8juFzcpbTpBbLxyKeA2mSX_MDvGdO4-9phs3_lJNUr1xxUtOa0kA0rMQxJFurimh5x3biZC8wRLxgmKDSQKmMLtnW656L9i2zWzUSVk46VpVoGUPIQGC15SwDEVe3q0_6v_F62KOQg_vLLLMnIcP3kMHKPerjVxYOJGmewh3cNXp7N-rIghpMRYOZFuswPsZqOJNiyKNAbiDX0dQgomzu1xl2NJurDTtMxRvh6lVK5piC3zGb6QkDBjcMmW55Bm-Oc6CnjmHRw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d74f3e244388-89789565','','','2025-03-16 22:22:54','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42625',0,'cd-form-entry','',0),(42626,0,'2025-03-17 06:38:23','2025-03-17 06:38:23','{\"firstname\":\"Katie\",\"lastname\":\"Magee\",\"email\":\"katiemagee45@gmail.com\",\"contactnumber\":\"07720445383\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gclid=Cj0KCQjw7dm-BhCoARIsALFk4v-f_C6eTOTSK_VcW29Y5howCEHla4AIjaeMIL941W4BKQ8CBR7pE0IaAh1cEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5CZdwql8bkWwmcDS7mEJB_qc7wIr5GJjp43woOP72kZ-IvsMCL97Y9JU0cSvTHIICjNNCBigNvxzqc-HeHO5UWgrSGksiu5XNcibqIH0lY2yqA5f22DckJEmTeRKjKJWlKjdDKdbkXH8eNOmcgfxs0-qCdUyx8_87H9kru3lGO4-Rh0OWcwuDqxnJm5dzHNFqY2_f9_FaD4qDQc7uoeVgnjq1NN6qoeC3S5O58UdY9G06mRB9fYxSEleyJqPWR9_BR5flEvX7gaeWJ7aOVT1HLCm_Rfi0j7lK6DGWJLBQYh9ih5kUx3au2DhoozSDmyALlEjMjnpv_BfiUBTSWAgMYCF5X1m1vbmrooQiLctmLug00RpirAyN4XXfHZcagpEd8yc6WJKfjYDx8p7STHn7F3lcSzrhCtPsk33WKr0oe2P7VAbaRUFLJgEhhni_P8yDpigawQMXHvavZb9e1LV5cLF1rJcb6dQ9AzKyrbeilBSo45gzXiIN9fhN6iAfAzXsNdYNFK3IDyXE7l0TaYNNKIcX8NQuVmP9o16X7FgEoDxiHQFhusGqAfQxiv1bBnJugxWMW1d_N4GmJsn7IlQomyGgvhato8wupcLBnMbGJkymCCF9Aozw9XeFdrOZ8ptrhd2UvJe3AU67ns6pou9jUNe0Dz7Pd1KEEacRyaDvytHbMyPyfjZlNagHsMWFfRtbx_F_i9OPkPLmwt17K1XVojpmpVKmInK6AR_hDqDF48Du594leR29roMd-cwgFZnXybXBmDZNrH3ng2GkmMyUeKEFeboOmYaT_DpBOWZxuzU5icO_XmtYQz5YRJgn6B44_Ow4U6MLE1Mm11qybNPKBzyTNmMGBrL0aZ2X3p2szU3JUB9qbzL7ccHCkW7phnSI0DBi9Wso4RSUpwgnYjZ4u3UEb7ygo5GfYwMiNRUixFjhhm53zTMBrfQdFzfurCYlQG0WIPeV5CWdgTsgerexEbU5EwR0eI1V61Ydwm2H6brLwEbdgR7zQEasOV3XvNqbWC59sbrXj3cwE3HzuXIUokwUXHV--jwqX2t-h-mE8is7VW9ZLixqD_uLZt_qEm5GG1h0ZEpZ3fWCwy6p_hm-6OTb96v3C2_evRjGz0xV3RrgDfS0AgTqjjT3MFK61fitXtlbHQMAg3Inz6xJBWphvmgnPgQTK2u8shY_BjmUpIkSFaQ_jytOhBS4ulsyHlcYrLzWig4fiLA1TusqOohTIGHMIEDVqOQEXbzWyhZdjrgSUmIl4CeDjrIWpOMc92oZmy-f148URR8FpLibFPxSU_rwE1FsADAT4rAcbQSA_6tOeMxjE3ny17hifDBrPb63prNsIIlNmfpbimCjSUr48qOO2HrQNK7m8letyf12BOQnTi-e7xkXkg_R-DA1yKJ1RfqLUNQxQAmNgbwiWnqBcNQrfrjj2KIYjSnhChxUa1s5lZtzRDWNpVfuY9yVi7AMjFhXKRN2kMi2s1BFTkaV-kRXnMb66wTxntWEh6CF-ntN-Nf5FXIkiNpokDlzy2Eo1WIWy8bTNpXrZsrE3VmzMq4ZJJVXbq_nGF1GOayhgKkb2MXsWT16eByPuL61qmM9uK0FntDMegjV1t6GaD_Ic_odqglAWmS305lk6lCDSjIa1FQKrdAbyaPlS_CXS8FMsLDU-tePXeiNFe0GhI51joXTp_u630yEbiSG1QSZnYq3hGqiimAGppeTJeMOq0ebwQvTE5d5V4n4t33BkhFInazqw_QnKtFIQv7j3JSpAoEVLe3fsPjKxx7ELzu_giRUzEEmn_EmrDBDNVi5o46NG_WecLVPxJHWdtjgFoewca59LBwoj67rRD46MvoZyeW0qLICUXEkVoTuBQ6ALEQ2YU6ZQ2uItx9r0N6qBrQJuy7PTuFKj5NbgCNg-8jREfMebZS5S9_dCuSdp0r51mVIiRJ0mPFr3TDvrdiQe3eGe31F82Yn8YQfNHanvq-bp4okjxo1slzdHkE3ZBh5FJL55acFo2DWlDdnYD2H1wlwkhMQKAV8yUrFxf_W66PMbRYOQZLwHGSD-mmHPO1AzCblDucsy8AiDnZyKTXdo0nZPawuafs14kIvTiVohGF6JCqAL8Z38Trc1wuBzwljBoyPVMawuJgmpUKFAQVLeFL_eiLYVa51zyWCroQsctmqL5C98vYLJ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d7c34cc79875-27580226','','','2025-03-17 06:38:23','2025-03-17 06:38:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42626',0,'cd-form-entry','',0),(42627,0,'2025-03-17 06:40:15','2025-03-17 06:40:15','{\"email\":\"katiemagee45@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"Cm14\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gclid=Cj0KCQjw7dm-BhCoARIsALFk4v-f_C6eTOTSK_VcW29Y5howCEHla4AIjaeMIL941W4BKQ8CBR7pE0IaAh1cEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4yIUT60OuQ4kv51YVa0V5kwVFd43U3KdoswVl1l1_umiBN6K56KXoFnnUoSBCsZBJyRTskDI7lk30iFaBaRYjGkquo6tlo41WkhqAv5gEnNClJibJsw6nKJglgyIG1GzgivZRLsDxWMbsqn9XuzOWQaZlQu0HR8NnCJ8-thFSfm-7Iiv3DMZsDSg_I0e9cgvf3pm56bMcTpGlgObjwTzYetKrju_YV3_KsadxzyQgnjRxIvMNzwRgUaaTW69OXvVSktIqMNXDFEDsFIOQP7oZo-RnDR5MzZF_LEOutSTfAuWYZYxTS8XDWsYVnmY29qXDXvmHU--6CdiWigD07H_i9BppINnEwg50R-5raDAetCq8JLRiYDSP5oL2SdnY7_urR1RtzGVQM28klYmG5_DqLL9x7OG5ye3B7xKTIaAZvhZ6cnj0KSzLBtExMNqP-wiX9UGuPAD7x8DXUMtEZiA4ZZorSsKKsjC0ZV7pEA6KPcMVCM_Y85WgrHQD8pHvwKN99dMfUA2nWgQZ_nbz9M54654BS2A0pwImv6l8sVJuX4lRMatWbwSQr0DcZcTiZ8M2_0ZwXRbMPS0mo2M54_ArderdZo5AOpwP71CRMldZ_3XcQv88YQvcZdwLU0UWSrQFEMvDaRh79NplkEr-9WyVUevyU2iRqitZYt0YhaoNfbq0RiW_LNhs8uNTlZnOiKi0qBQrH9z8WkraibHIkqtUK9BTesko6lNeHn-Q4d_RKklv9Q7OJqu9tm7gRyjjqaWR2AVR9NLzEFppMbfgIm0cUW4ppWtodtm1F7f5vwPjChdl-KaBO8ZaFuAkuKuhIzzgFz1sNv4W-hw5LAHp1533r9aKPo4ZEMQc5KYvo09Ne6LKXKz6yeBHxf-QXYE3sh3Nrf_7wUwmK9naXoa7fSDuuDlQ6PYU_yOBU2tTevZpJrnfQ5DVozAl3ZRcLA437y02RQ3ZxtxV3djSUI0yh6Ap_8QWr8Mvqisel4ufTldjF3HKGE-myyVOUFJRibVJy8ty7G-9pxnQ_jSOJwIPyqMu5WCbyRlhVEXp84SaStoGKa8JRCPq1KVp1XDl9jjQ9Um4iBk1SaXdbm3I2mVmZok8m--N90TtHKX92D_SUUmOAWAslTPkOelgzMcBeGxmngagk9uJn4QOagIJtmMZK4qtP8-C2yPktoZ9656ETwMzKu3rcv-EZ-jjnTIZ72TuiUXuXimEh1t0QiwhRL2UFchN2IrNw61VveINk7ukRhXOIHi4jfCbajtpNUmTpHxgJpPYY_zqiLqVfUY1hDWwkB10KacJLbEGh-2NccKHrKW_5Dj-IBGl0x97YPwu3iT2cMaNF9gQanW7_UNxlgevo8ZqWVdtvdC9kz_WDfgiORUaUrjc6ofkQmfTThGGfMQJRfoHEn8D4ZvSahGMcYNp9M6GmLAzvuNmgLTPqP3UXz3iqEuwVQzKujS5G8544qpNqZFseE2-qZPmA_ktP62GNBTvRX0IS9S7cfZM8GStPulE3J7kj7ptiuOJ3dndhEZRYjWA6-R2NL6-zIshLSxa1uQjcQZpJeBWput-lSIKvmK3_DtbXV4exD7ka2qAZfwj-yYy-3GuNx9I8rZWb9LW8Ac6dAR_sMMxXerNZhTulwE0CuGB9utomc43ogR4VS-rCXCFe2npB5skbsR4S4Qtx8Ux6Rn0Eg-VM5E9QaCAKygl5WwQ16DQj8P6vY0b-Pk7qh4TBAfDjf19gDSUu4NO_l3TvLPoXjOCRHypvRdO6O3YmkSYkwys-4sANfw-UBYqTbzyQH0uoMaIoNWUq6IBXpW9wwmImHfwNmB21POGB_2Ifbdb34btBjfn6VfwCTTGMiSYA3JmslPyoFlBgDTt6zb7RN6uxuJeBIzt_L6s317-Kg0UBckv5ZAUrPxtt-UhrMAZVv_iXlYNOAl8-4s8IqUrBAJe98mrzp8NzPh56hv0EGl6175j4j3INRMqJN1jcs90IzWFWzOimLhBzraDukEAHA4wWPZodgYb9wt9uMwAIGQEsyHDf-mP4l_dTNSbMKaqF63oLvIWrNy5-nqZhTWd9cLo28g06TPyxg3k7zL2lenDUeDvKrapZlJdytqcJT98okEclWatMER_s8_2ZaE6dHejXkxzfKjkzD6Ya_R98J49G_87OUbn373VUih9nWXh2TRjxjt2ShT2d_ONOd4_4UYfSAA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d7c3ac3b3ed9-02864664','','','2025-03-17 06:40:15','2025-03-17 06:40:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42627',0,'cd-form-entry','',0),(42628,0,'2025-03-17 08:25:54','2025-03-17 08:25:54','{\"firstname\":\"Harry\",\"lastname\":\"Whitcomb\",\"email\":\"whitcombharry@gmail.com\",\"contactnumber\":\"07549954373\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vebYEJlKoyDf33PNCNECvwH&amp;gclid=EAIaIQobChMItLaZx9eQjAMV-6RQBh2MAiwMEAAYASAAEgK3uPD_BwE\",\"recaptcha_token\":\"03AFcWeA7lshZpAB7R6DxygdIPY9DYdUTKu0yGpPGcKCoeMM17UvdiMzUFLtVk28qppLAnqy-wyD3f99K87TWE4f-cW5_JrgUVoyHBZVrY1Bssbq-xI5laJDufWNr2NuoHFpqq-8FSd1y5UnbLCzAL4wIJqt2nq1OB5vm-CteBMMG5mn4zoguvcEOgSd3zQrxaRV8MqJEJhfnKFXObZRgmyQw4J2mzUolXO_Rpw9GEqWdF5RoOjqgFYn8mzsxVfyUGoU6pIItfAFDj4cQY4QVQfXNgZH2BAuPaSbS66wys99ALx2Re_ThA5LfuUu-M4evVLK6Y_Ob8F9aOYdpvEfaJtsKwVmT0FpKciZN-L_n4w2oxlFd5rRkyOqY7w92BDqHsTioHTY3X2LVtDizQvCnZGnAY-kF7uObUm2QRvo5gNCSzYhd3InO42Dr2j9S9CW-bZv6GXC_BJSNFC4WUhdiJz0mFWEn0FJmXuc2Y5A-1Yrv6Bmpntk-F5yuKhcNw1ahyQcjbiQGHpd38N16GcilGKYcG7Ya0ZiyaRk-9AnNozHgDYUaIF_cr7ArpTXSRSZswrRwZc8HDRGNBOj6IsYG4ownuGLewlCiNqg7WwoXvaWIISv2mDwfTomBrmduMByToo0pdjvSaUO7inz_VT1LDD4jxe81NxFK1QKD6uGNzvRz33wteN-rRu8KpMQYLk6H2m5Kg508b1MWlGcd3_1ybEFpkwdm9DQHVVgwTSX1y131b5sHqJ0hHtFNR6c33xjVcBSaHgIrcZaqyvHXgdlbPK2-9SmNW_l8OBP7o4shQV_2YUD72VOr0I6ugnG7zs8DWpF15Pwvm_UpP57zHyo29zC9KUW8bUKJOeJaZDm9XmX5yaAR8p19czh_yVTFASl2x9VKtGaS9v79zfi4YRxtv0XHzF2enayrt-fA6YubR1dASAwJLzitk0bAI7xvYEP7v4KcDK5FsCkRRRtEDVZGznAzHNi15okL6jOorYUGgW2b4Foisx7qpy4cSBPKSSDgTAJR1jDUW9XKzSW8lQKG5RivSQFU3j7eYmX8hncSLcmo9GC-94yOGTT_v7BsCoNHWBN6uEF4n37RUForEXt1W-I6h7DoOF2MtRttophQSiALG4oYD3NRHtEheLomJc63EIWH_Zt_g0lqLRKBYFQUrCi6sTAztCf1H8i6gEO-9puF_TVb36msvu3wr1IbLHPYpI_0-vaEfwiGAoevHM-eGSexMWcSRFFID-gpGW7wnrUktivPk1iM3megQfsgrSd3pKnCIlsM1PFUSbyiEqw6CIsiaInP47Gh8rS4JD-FoBhoXWdPkd-how4AIY2ivbIyFScMf3jNRcdtiJL6DHKy3NfmsngM-dKpLN31u2CN8A_R574RIaWi7bJMZiCBPTfUKk29hjeJWC1pHKlJCnLFOunEDXBzmfGZ2-EoYGwEQUCl-VxtGS97fVLfDYOErXRVy-bMj_KPq7W3JMBgJ7MM0Nf3ieQs-zF1eYyVL92Zggo4p8S3Zdc_bZz9Ek2xeDkZhIfH-0301ZrFRNSnWTOTEifKbhP4tW7izKLSAkFzdnXjODe7RzM81dWFZnIKYO09yhRB8wYLbdqy8V7DLm8G6N3aXUEVUq5Oa0VW3_vk_6NV60kuN1wfj91rUf4oxnb3-btTzX8s7fV_ozmAIP7dLCDNOFnKgZJWcxk267TCUIMZjX1zpIF2PNB8LxAvfF2fz2uxW1fCmRjZtOw39q9UbzhcIuqbZVMbJmliCckjanNfqByuBqtkPlDu9sA5SnKrgXc0ArKzpGPJ5V7pa5wd7UhXnZJbPQkO2lrEv2pz8SqYKbRDI5_AHdsqf2usMovIEwlm3uUefcdu-dzVRR1glFi3_BudoMYUNy3fChhBfqAy3EZtfO5szD7XkRQRzcY5_KiuGBUyb0ps2dIv4tN7RJXb8SbTuzvC7P41453sAJMsVR2O84kl3u8-yxAXBsoXjGsUnRwMhMDW66xdtmD0m_bkB9VDSGxyt2P31DhXTbFAFJXu2zsfESaS0bXl_BCLEpEnrWsm8ERwvQ-jA__vLqqe7ZxbjUQDAhg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d7dc5e04df09-45786022','','','2025-03-17 08:25:54','2025-03-17 08:25:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42628',0,'cd-form-entry','',0),(42629,0,'2025-03-17 12:55:58','2025-03-17 12:55:58','{\"firstname\":\"Liz\",\"lastname\":\"Lowe\",\"email\":\"lizclarelowe@outlook.com\",\"contactnumber\":\"N/a\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vebYEJlKoyDf33PNCNECvwH&amp;gclid=Cj0KCQjwkN--BhDkARIsAD_mnIqXUZMwuNj4_2CDPZZ-JD85UJGOHhflvKogbAvOJlpQyoMVQ0YXHPUaAotQEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6ucTQcHdsUuYozachuqq2hrDQlwPFDk33m5iKacpAORggDhjyjBf_ItofssuGDSMlO3dysoiDlHqZznLts5FZED5_6bxLPRxb9rNx-HYo52B_AQ-PwJWf9oSB2FKIcOz-gTHjNAtMXNvjg3_6VfRaUIhhcaaxTblDSNWeXMFQFCeqpAW3JULJJ7fpovXtQtRJJuUM1CoX4Nz35SEdukdtkjXD-YYwbv3CQCAHoFEz_5aNpdudpYEALt-b1jiS24NjobmEnO5kGPa-XMjyQrSCZiny2BaIQzTDWHqjpcdGC_AW1ASgscyZC7mJ_siFLbtT_bqrYHTp2YCfPcvirAL2IBYxQoreWNQVskePGSt0i0P9z7MpNCjgJXAFM6B-xaAxTLy_0wxEYv5ec8lxaDMbZxyuhejfanka_5lF8VcwGtoq7I8CfVz-2eRV_f1dOWfwAnVib-42yBOucYbR0o2FhKJn24qoM1UkFEQiNOWYJU6QIMErMwS1iTGwFrk2L0N7yKFTddfJTvWDFggBU_skQ1rzkKRpfR1N_K6FC5Jn2e4ueQP76cvZWx0DL4gJSmAGHk5IsBlbkD435z0nzxNykfFisqE6tt7nkjR5J2nxg4_oiJx8qTgEzCtKleUO_ZiSNIFb-J-WeqXbxjDoVGoSIxf6BwtXIOO2ggs2sWY1GjLwUytNvDqqZej24XaVL9UfA7rUJyoX6A4vnTNIYENHC26v0HLcBh3_883YisQ3hv8PvALFPze8XzLKoRVvh1IfufNRmKvApVTHR0_c2TrGtn96U-FK5JXe_NPn2hKAB1PhDXqJloL9OYE78JA3548IOmaXIi51coEJrySEK3Sl5Wv3wTjtrou6ch0Udq3e8r8n4ZkfWwpq5gkZyYMmcnV3wiAz78zf9hhZmDIaxOJiHhYGnxEyhnLnjEDEv79_d5JiK4wdub20up_nWwDHLyu20a2x4FCnKRVBNk2T93a_4HrVWpe9KcJLoaiUDNcewi2AGpJNVA2dOJFhAuktO7YpedCuXRrSLO0vhxXgTTO1tskuHPmR_SrjpZMprgIgJdiMuPm5_YBiA9y0iCCYBUSkdHUF9o0qfyvaHE3cUiyCxEFF0ub5O_88ww91klbKpkMgEBGnmzrnYjGxT8QQqP-xxPaQoJMlT6uKCe5KEpHaZgjk6eAcyTxQsaTSEtiBQykkx8oD_UafASkHkvjmJsSIkJsKqRmUwl1BpG7RSufuPKhJjsGm3iW30BY0LMNmOK8hVQYTJ2Jm3Fl9qQBDXcge4EWKyFc58fQ0__m-6a_1_uW6aEI8muRSHJOlPUbwPDhJIdthcaT1GUzh6cWH0pmQ0ovt_vuUwe9UHUNT3L7Tj6iROV3LouiJjzf2sTOkGosIEyVJMgyK_iId8TNitfgJb9Cnh2IUmm2QBPjoZ1ioeH7cQ0yLgJ4xacajhtunuLWYU7Dp0GjAlKZVLaBqCSrFoqi1oT9rJG4voJYF3Kx6Kj1gY4XjABanuu5Lg5M1z5FtUUFXcHL0kUPWfblpMtXEmzftnburoQnWrOtAbySvHKRUqo9_HVf5KsXKJxlbAG-RywukM2To3B_RTaKE0wKNXqHF8thCP07wzYbrKXIyL6s8zRZn5kwHjkGqKj6VUECA2cbA_btE0U7e6O-D7A_FwFlOlUxLNb2U_mKG1BOKykoELv5IxOKi9enoaBOKOy9i_gubptMwhZBDddvePlMSozKOLdRRgKpPD6DA55OYtzYfTAkVw0obcg_RB9YGQKmKrv4NZStVeW-KW2qH8HS4iMXX6TDeZCoJYBjagQPFRzbGHmuZrwKls1pScey15LeNO-5aGKs5pCJ9GMu6StFk2tJIKupyMDS_pV69PGuj3ChpZx3yogSt0W5QjTEVFqGEe8xG50oVM2zryB1QLPbZgFg_bK7COXmy1Aznm0Qm_9r-xiwPmh3W2ywBekKRjcQusbTTDMKykTB2agbOuxXsiz_gBg5VeZoWgLPoNEol6nKJfv4xW9GcDZjdJWmZic2BQ7xFI0k7tf94Q71Y3UcszyyHYuWkuv6cWAsL2ibS8G00_5uqIsgB0_DXhmV09lDcO07ofz7zKHVTD0Vl4a-5n7hj99WVdjbgINt9WKAHoBaC5KGsbIOkQCufeONgW6GPjaUM\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d81bcf9e0ae7-84804945','','','2025-03-17 12:55:58','2025-03-17 12:55:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42629',0,'cd-form-entry','',0),(42630,0,'2025-03-17 13:52:27','2025-03-17 13:52:27','{\"firstname\":\"Will\",\"lastname\":\"Moore\",\"email\":\"Will@mooreperformance.uk\",\"contactnumber\":\"01480 775912\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwkN--BhDkARIsAD_mnIpDugmGwu-zS0X042gk0AtIfdGTTHmW6L0ajAe0L6GXIXzprXartxQaAvNgEALw_wcB\",\"recaptcha_token\":\"03AFcWeA79bGTqotIdqSpuqXTY9ZZOpxQLvXP_oV_9s7kKqSLzsUgWdduOHeRgO4K4nSFJEKTY016JSpin8E8-YdWmMucuy5sem_1cTc2zXRoQQiIZX9IhZ0NfNbly830Xv5svVVxxl4TQ-9GHqRxvoA8ikGRaLp3MGoqd0pilPjeNHd_AZGp7w7AqWdXvVPo9oTYtCXDA0CFKQgyShhyHJ4pdSG5B8XWWcXIjDrE5ZihOmZwu5TAFqXjiwtpOHTu8xxFf-FMgnrnzy5Sbj3rVxJekpWoKXUlQlZaPPgC9sHxCu4jg4A5EHPuj6cyEv-BvX2siEt3NHZLrlXaqcIvEqoDunj8gab2F0M8JjcIyywQXioKyo5CfDhcNLQ6aaQiSWzQRoT0zAuIOdmFiiIe11Lm4QvY2y4Z1nVaEAMKX5-0mSLX_exEfGjoSFN2Op0w3CJyW_iFPHuU-Bw5sm1kw6m-IaaEu-8w1k3QDpuXjbx6F9ewOKgwjarRZIklNfTMGL7xJJEs3S-qrhb0viH7YuZYCU-ji7XT_XpLx4XUXsuUn4g9xi3LQ7r_FHy-DnojcWTB1MtNV0pJtEN88VOdwOkyzHqzwoBaI0hBqOI17mbZJeYOH2nT8-fcX7BfNWk4WJ3PD2-W_ZH9Hf48YgGsqgGrCDQuFlZMD-qqVwJUXFLHryiXiebXL0PvPQXVSmx6yIJ5By3M9yqczRtgum0hpMinBkluEiOuTdrHblV2J9Plni94kI5Ys0E67g8YjOEAt7Dxdng_MEokD-EN_TJj-9_CGo2KIBLXj0HcifeEuBUevA_Yc0YMCrY1VT0DW-RqgUEJ75AVy6Blc2ezd3jgjGUX88p3Xar6X_1zosTaYXitYZq_ka_IVynd0VkaUAgAY8KATZhtwLT3MVbOq7lwXUX0pwtsRz6tkwthBefLMXpCIkIx0LiYAM_J-Qn7GTBaAIZk6meDWDDluWIzRFEISFsUV9R69Ff7_e7Wj6VtI0c-R9N0A7ENFBULRmLSvEgE0orGV5W78ypcGfK-giS2imgntGdoquzesRsKeIe2vK7zeu9BahS5p7sARcqINpfz5DkvlCP0k012zhaEQ9pQGEqXTPZF23CxxatD1yGOt82rTfExotYw20ioY68ERloCC2onJE7aNUS97lg-vWUA4VhozkQnAXLtBhOM3L0DEHqsk_p2p40IvIpiJFasAMjLWJg3_AzL-Jzvbnjs6qeg29xNMInjyVCUdb_rQnVsgKgmkVjtecTFLL2qy3TTicTSG_3MmrYnsDjadDpuROlzmJ7v2jOa74hzHvc5_A9Vrpe_NJhrUTFU-zXO068t7SNr8g-QkEfuM1ayOvc0QJDVNoVSSVW4jGhxpQU9Hou14rBhYe1KMpqLJAV2XtSxGTv12xOPnc8lbs4GHG0o6Jke5d8P59i3PN3N7tTVf1UZod6jqcpTjNUhRYKd4GeeZVlCFpJNJSp0NWn_4NrY5vvCu3AvHwEjcyTiEukQb9WbgCCGQ0GrrRDLZcXDyqKsVNVeM5cXIA2N82vNdt48p90w-VFhU6_G_Oyg5JjqTJFqROPZ4PDU8Or4Bium2d6PiA7dKtVIUybseQZKtcIF-Sq4Ia-l3ZawNosayhATX1MMzXgFPROnTxzfvQJMgtb6qSUAAbeEZfBdEljoxPIKnfIr3YcCy5tEwrFqqvLbdESd-AFDN0PIG-faGkj6iBf5lII33LwydvA1fKf2IqYwT_TvGDZ-_B5EU5Ex3FPb-uY6pq79XzBEyo46vHBAX5MitMN5tOJTy4-UIJmJ3Pf4gx9eyndWwBXZ8zMSby2aAh94wmQbbT4S4UAIAGWz3CkM9SAULcRwcuKHPzxyr4ILNElf4jQewFWJZiPf8AwiLDf5bBdcOEHPHC_TZBb4wUmSg6hPF-nmtsBIS8ZQxZWwv7jes5AS2T3dn-WGLpw4F55BcslsHe9EdkOaepjYrWYLXpgEw5wlk1imZAvKXUhBpb9tK0Rb4gb3RO_6cbp3VSM4bDde1KzgBzUhEpVsOLhbaUwzIvGrB7NIwxMBT\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d8290717cf85-45171555','','','2025-03-17 13:52:27','2025-03-17 13:52:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42630',0,'cd-form-entry','',0),(42631,0,'2025-03-17 13:54:03','2025-03-17 13:54:03','{\"email\":\"Will@mooreperformance.uk\",\"interestedbecause\":\"4\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"5\",\"currentpostcode\":\"PE27 3lf\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwkN--BhDkARIsAD_mnIpDugmGwu-zS0X042gk0AtIfdGTTHmW6L0ajAe0L6GXIXzprXartxQaAvNgEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4yrli5auitR3gpgw0RJnYz-gu1wtAPCM_GtwZjk9JnVpSyF3EYkov4YP-zmVVzjiDk8CIML9ESzr95I2zYCsxFeyfv9gTOCt2uZ6Zm0i5323eCurDVqKPt_dJotshW-_PtHWy4LrncQL2cOQFy4fej77Mo5qAq7CBJnxkDMs5wrdDb_yvhOb_LHalhuDsJHJAmfOQFjB6P9IbVGN9OwwhH6cG_rt_GioFDsdrkdYEt8JiCTO3K_7ZCo8w81injOjV-jw9mhjIyzoFjpRu4tqRQDf-9XdUBvfkflbtsnFm_Bfd7TyU0SUS-2iOo48SbXFm37dfOdc026hbbnYa7WTU-MIUcenhHYyj3uaDqqRUqdbk6R5QK6DT7YqFU6LuWu_l4h1FRZ3FXaPywvFAH8Onwr6j6AS71zdiAdwzNHgnSRTLP3J1L7w71pkZ6YldEqUj_Sd3mHe6VTmfucHBwVrVjyXKS689VPDAnvxfwWxL_cpo9BQQ9cASRR-yNrocW2WbffPBKazicpkW6K00BnM_xOyNug0yJv5b2qRxiVXaajFuZzTczwuU997Nx6WYgN_GxtJznWwcCx3N4gaVW18dLpQlnuqwrJ-OZDYMQPPtOMIw4XESoo0uUcsNGe6AmsjoHZk7RCBV9pAPzlpXuPdXJt3Dpyey-2C_P4FvJO4UjKxKTSOesOhfUZQiuy_qpKL9RN5Sm3Sd3GI_ERHpuFAgMt97c7n_H6lvQ8xZvOA8VbJvNhqUvl_V_V_3gG03uPZUCAz2XMGsUffMcDCOFl7uPpfg1Ez2KdgifGUnn2BiWRFYn7QfeucRfCDFKsDnamk_R7Vzd0ZGT8Zn9z_f3_vqmAbZG6CrYYgWRfOjEhqqGq0zRVXq6R7JlTBtD9p1Vg-tSNSbUPm5Kh5V4q5_vzxad-D1yz7n_i98C1ARQsW_jc7SQRmM3Dm56zL-YxwOdLiZBoHGQDBfxweur-IuuzcNHa4no8dgbvURpSsIJvTMNdzSD7HBMwJeNwvxed9nzzoTTJ5UZFAMsS86heujw61G9iqTiHPTyRHOji0SceSJYZ3JsKCj4nhEgB9-tQcRGmH3GmIQ-8NrRGlyuaMmdzBLKGb7uag3-iQ0P40mBdv0-_piUzuz1W-qzE5RtrIcpuLlknkIpUdSsrL8-URBHfZ1emqOtpEUsbwkhcBOKZ1WLBXFwwbsVIRFL4kcH9TQQmVmMcDsAu_1JIv3Y2IuPkGat7F2UO47RO904KCzcptAUpatmwIvE_rboCqvCdA1hh-rCaEgnOv1RgDApGcbFDKlfJ1IenlNbjv4I65---Dc9grfuzvVlpiNvDQ29rbeXc-T6-gKH-UibuVlgZRi9fxUvjxCxXgVlS8WT0AOONQiB0tk6PrDxVlaWamVMzEmJjoYwc3ZZKSX9NqxoD_oZ5DyauyUaRIFcfsfJ-2mt0MeJiGR2EY10OLCfBDJrx0r4YMz5bD0xk-J0NuxI92Mh3eFBe5kwEr7kOUypoDbiKi0vGHDiANhi8guO5ULTEKWthbSNVyzvWekcSXg_0Zm2ex03x73asjyel0dlPM3QZSe2oiQmhs608Xj3nFZAsZiCU0BLloxsj0QdZbqnp2CZN2Tkf_f_7IGJrr_jgf1Lg6v_YIxFO_wTOUsVufB9LDWHP_q9FdLUS3iG9x4fYbPNjI7rFDx6UoCmeLPg9qDstkxmRHCtLj7dPFPqcQbhSSus6FSlP9BzyrJyhCwKsCcICmD9EwikXqWczSHU1GuaausZ83wKXCcgI95KN9ZNqKlY2dhg_61TU6aPvHZyehPv7K2CXIgGcHUhGTzAyZJLIl8qgFcHSksBpvp3DzwrbxWxEoKruZKtuWfVir4d2KPowZ7jEe2izWM-wZATMcfn0EbHxEnLo1sdBNDy2OTg5FMNY86o1OPqbYa8RALV9NtUuaR66V1sPpnlEfHV8vwPOzTnLR_pP0NKglo7XFImnKj_2YPR-entKjC4NxTRzU0N7cQsPT0OVKlIBJjLdQebQqAjE3_RVEYbZfAjlZKj5OIsSu97GNFpEMvwj-XDV6T3XBwC1W-O0w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d829514dfd62-19676758','','','2025-03-17 13:54:03','2025-03-17 13:54:03','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42631',0,'cd-form-entry','',0),(42633,17,'2025-03-17 14:02:28','2025-03-17 14:02:28','','Musculoskeletal (MSK) Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-17 14:02:28','2025-03-17 14:02:28','',42431,'https://biomechanicseducation.com/?p=42633',0,'revision','',0),(42634,17,'2025-03-17 14:05:52','2025-03-17 14:05:52','','Musculoskeletal (MSK) Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-03-17 14:05:52','2025-03-17 14:05:52','',42431,'https://biomechanicseducation.com/?p=42634',0,'revision','',0),(42635,3,'2025-03-17 14:20:17','2025-03-17 14:20:17','','How to Choose the Right Biomechanics Course for Your Career Goals','','publish','closed','closed','','how-to-choose-the-right-biomechanics-course-for-your-career-goals','','','2025-03-31 13:08:53','2025-03-31 13:08:53','',0,'https://biomechanicseducation.com/?p=42635',0,'post','',0),(42636,17,'2025-03-17 14:25:10','2025-03-17 14:25:10','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-17 14:25:10','2025-03-17 14:25:10','',42635,'https://biomechanicseducation.com/?p=42636',0,'revision','',0),(42637,17,'2025-03-17 14:28:45','2025-03-17 14:28:45','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-17 14:28:45','2025-03-17 14:28:45','',42635,'https://biomechanicseducation.com/?p=42637',0,'revision','',0),(42638,0,'2025-03-17 14:39:02','2025-03-17 14:39:02','{\"firstname\":\"Charlie\",\"lastname\":\"Gillies\",\"email\":\"c-gillies@hotmail.co.uk\",\"contactnumber\":\"07525755736\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vMYf0PmFD-nNNfG_qTptKxf&amp;gclid=EAIaIQobChMI-tzIgsCPjAMVapFQBh0T7hOREAAYASAAEgKqmvD_BwE#row-41115-3\",\"recaptcha_token\":\"03AFcWeA6c93VNT0fBDLzYWVBIZMqd28OcjcoeYRByg2JqpCcEdYABBV6L8hkagY5oCop434Ued5VTd--Sds9HfC3FrxTV-wwERjekpCtJhztejINWGxnbn_IEIVIhiCCira3E9m3MGDKzBCmoogXUiC_qof46HbZRcp-ijNi-TedAIxVtxBOKtIN5i80-2I42b5Yihi9oo0CKrw499XQLGePQXzi8Dzt7INTciPxsrcLkZ98k_7kD0pCO1q32DbMpbwoBLMs3qozMD22jItyBJrv7NEJ1s9i58koym_-J3Ba11r9ooBVYNCkMwvlYwUAcA3MwNm1umD9o8DpJ5LKuxzNGarQGFhbGKRKc46zlDB23__GmQ07Xq4ZXNByrxK5bgKMdB9BQgiNrQXMMg_-6tapngjN4Vimfo0Te2XrSdOEzn76ku8qUF2a93gO-G7f3Owt7QS2eK98LxqknuZpRmomFpUakyUlldQ66SGqXOKKxXlSjwNECKXnHNzzWXDMy_KVyI8rwdEsev3ELUao64uMhHMxRWQCB3LYj1e8irnZxL3alwVjJJFhxvu-CfkncPBykMkYNRjXazkxVk4fLGHXwiIB2ukXvhaxfMT44HuXhKPw2jSchLFUudzTz6ifPkDlL2LcJgYOuyd9aFtFtuWLEHeuDNKHiMPlp1244f0urE3ZQ_-wleM-M0dbb9IN6GoyvEyxa5Rz6HIkv9JTzVo9H8gazP70FqkincscRyrX35Q5IYGznpDXinkqn4OXU9aHJx3AFUENov-XrTDxexscAiSoh07tpxHQCRKcXgit3pKlC5bxaHvBL-gaavKjRLff8hI-sdlr8vAL8odyyeL0i8Mn55DjY-zP9SMAuRUlLQ-mPkt28zPCYPGIHYy_Qhr8yVN-ykDHFTvGhfi_5UcDpB8Eb1JRK-WYoP-LuG-nIpP_8xltu9lM-o4u3l8a-njelliNxqDItPIRbnaFfpOEkNjH9RFLdgSvnhEvYtpdTbXxDWiOWLOINOF0FSz2XxafP6Ex1M0v_D6jmnmCZ53BxMQP6KH_QfEHjOXyMDXVblEIbBvWKz8qzC7gLmhapFwuh0ZrFVwaCVkEdbek6hPpbWi1sj_he3zx4CCSFCAWp4f-SpDQW-Yg1kPp17-wp2dH4peeIqI1uWjxdIxH1BVdiTWmCb87m0NDkAq6s7j6Q7Wdw5lHyXrqVy87bpXBrh39Ib679ozgIiUTpP7pq4MJ-wLMFbRc-RBGVTvNAZJPWD-IHgaeOmUbnBNFsLrE2N2-YEP7ak8bs_v0tArbwm9RejHmf9j4IbgMGrrgOrCuQLIFwRHnAOKU-fDsdZO4LmgaAcCgHapYAcuQyj0OM9kOcvFzcIl3qDrnHRSm9TNT8RxtbymSC4YAlSKSKy3ijnaRvTbBCAzPaYTEVhs1s0esca9b3Q-9co0eLmEtbGfB3G4qAG12jbVaxxo84vdKaw9O8752h34t6zJYcbZJbFy_JNCR622WkGsWXVVGK0qjs4LTL4tSlFCaVv2OVen2mE-zyKTMMf-OhdzbfRcvVX5-M2YSrIq8aQDdTVEgLaTMs-OiDnMXc9Hzd9u1A2HkIgAi53zd9z14RjPLfcv8SD8L8P5Z-PyhfC5F0i13Q92j0tZAHaJcJKRVKfv9CBPLddMfE555kBJZGitn66Av2W1hxlELh2E1aKNKjyt1qubpJ2qJUYomtvjkrvS9wWq9pXWlXVCm2xCvdhkeR6CZVfE69cjxHh4KReiRnIU_I3QS_QLaNIsNPQAquwnzX3ZzKwv3VvS76JVIxc1YgJAjmyVxitR8mRJopQIyu3Iynd6fEEwnE49_xRVCl878UWG0FAZqFPZZFQDgsTJ0IUoeSisjCK0UjYyzoBNx066WtBn8jR8yxu8qhqswGAgAOBteP2EtiCPzioVW38JuwOEJHywWs9CXoCIWsbX9N7EGDVSloMhpNZ2TfS9LpPxeiGAi1eT8rp7Jzb3UKaT6xgP1bmJYywkM-j8gziQtTrtn_LLBP-kwXU0FTsbJG9c2vwq0tdxHGG8NDfgCY3sbjH8lvILERQDeEdTeMtLUzuJ-AFBmnvl3Y98dUFMHOgxGWgHUmqmKWE2gdOYtf_uOLghtDZ1EJQDmcoWwZcxvA7YKH693pkqFuaEbWmqo7foOX3rzDGYaf72iOkEr6\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d833f69da405-07668527','','','2025-03-17 14:39:02','2025-03-17 14:39:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42638',0,'cd-form-entry','',0),(42639,0,'2025-03-17 14:47:42','2025-03-17 14:47:42','{\"email\":\"c-gillies@hotmail.co.uk\",\"interestedbecause\":\"0\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"BN24 5BL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vMYf0PmFD-nNNfG_qTptKxf&amp;gclid=EAIaIQobChMI-tzIgsCPjAMVapFQBh0T7hOREAAYASAAEgKqmvD_BwE#row-41115-3\",\"recaptcha_token\":\"03AFcWeA5lxQ1n1DfbiyjMH2mvsKuEVc1J3eeS0hj5FUs9leish0A4uOpAsMFpD1tq2FcpGV77yqXmh62mcab2CHMNEXKdN3sSxMW8HQ3xsPXnW7cDbN8b7d9vPfcE1bMQ7D15X6B69dP2mtM_AFSbJvrwraJfayXDLBJxWAVW149MXu3xKxE2qC9trYDHnKYGqAAgI7lckjN6EdnqPMd69n-Go3TuXGvsvcqhaGFIrq2APv1s_6tQOyqM9rEoz3P90sFQkELUDWr3ef5OUtx_vvnMQ9ufwOpFsU3ZcLHxePxLlxzzM3m-ic_wAts9OFLA-_NPYuN7KAJT-e1teyMyTXP_spRkpRTVnqQ2MdjmiGUPbd69kpeVdDTzPpeTS28zhx9R98fQ_Q_089OfGMpTLMLg4NTGSxV7oDvKrATCUYrLwPsZawmII6BwaMaLtdd3I6UW1-beus_9eYYIzqFyFXddkVANvVvLwnpvjrLJEgDSBNL87Gsyr8729gqk9a_aN4wdQSrFXxhobcT1p-mF6U1WgFBli-CsfSdMO3mIbiiXGmYruzdfcBFNiY4r7M8Xc0RnCCbwz30sT-buiud4OV6qlbh-rsniN8OaG0pQ6GvcHkBJdxQvofDvO3I7pVhUhO9YJYEApaAKwZIMlrvY0gsDUhOqfAf3xw-UcWdX79nrgyuFESV17w2Jhzq4YVZZKSm1G6vPmsNd2747hoWVKIK4Cd-96t5nxbaF8Hj8yjY4uGT5vbHeCPJ_pNTIHSoiV2pYIrtkeZ_7quyhXqlocvSEG4P3iMn02lO_M4ntTKnAmN1qJr6YY-IuDD8388flXGyVbZ8JBeaSHolkn4Djdk14OqxL6tmKM_pg3ZcpHlGeC-GDYTD19eKrtBjOilSSNGmRw4qzttcExFwi075t5dCoUeSj9cMyk7KHgzL9Xeeo2q0tvOVmAeCQgtzfKqPe6a70uZEoMT1UQMqUlE6c_G2WqYuKMKeAmAEiEmoYxO1XrR0IeaUvNhtOSoHpf2aj2XltOOUp_z3Hk40eGpSC4WWzltnVu-7eeqo5tcrRBVCbkJye98eZ34n9uQmUAeg134agrunBOrAgIqIU25RI9efqfoU8kQCkSMjAbN6Z9ZsTXbKg3oSbBDQPbp7Bn8u1_mqo6AMUFZt2AeNL1a3TresGjAE3TtvL2i7ilJSISHGbFumluqJd71zkFvjSshNpx31uokx8LK5NIQytX3SzimjpdVH58B_K_kkxqn4WCrwYSXKr0m1NpGM2bkAteiFeNctv1ytWTvfyLG-_nx0FH5xxMJT3Gk6DB5svZ1SGFEafNVLWrd1N1UzTOo-PhocIwxLWkKh1qgx3EmmRfRnEuM5-M9r2odlM4zliuwSORoSBIuvBGR6G9Ft2o2vRKmiFlOk2SJiVtmzX9nxbajLf0eJwHBlFQVKQHRPAeCGXOIwRfLwl7vxjzFCmPinB720MwTqjNNbNJRwt08-m85MrPHo3xdhOssdafaD4aaeaqL5jgeODWjRBw1kxH_YGxC8T2iH8SiWvGdSwqTZqeis17_MM0A362F7BGgezHQeJFjAiowfMTzReLpykWtBeqh2s2eUkpjLHxW5KWRbJ7yhMDojZuNWwWuln1aL2Dhlzu2ywU88KIhjtW5mJsPdAYbsm8jgrOQT8r1HHjt8YIX57OoB-i3-z8feFWx-3YQqMclpg4HQG8MnipyuVVr6jpXUm6jGghhkjetS8k6zz6lqKiiNwfYOjyUomqCBmhHQUD9uO3QS4bkBcvJC9tAS1Aq6w_iOmNPAvD2z5raqeOGAHtYtwuuVDVYXg64pxOkGUb9ZT0XQMMntW2U-D5Fgz1WNMv7O5EdEAY8TP8LzwaEFMp0wRg3iISEEn_niaX742EJgytCh5y7h2ej4zKdKPCu_ZjEQh43-TTu3_RfYscRpD_yj2GMW_tesvQvV_rLLsemhs_IBJZPu9kdYlEZoQ5xHME-gOkkfz8bnlT0K8ZdBtABE9xrcaaY0XeHAWm39mVfF0tL3r3QqRSKnXGodggtGORsuXwn7pmSw5_ASsWrID15UkWdopUqp1mCKsDDqAFYWdYKTUTPeIUIpj2ymLEliMIZrnM6VKEBK0lMQTpEhB8cjqaARdPogWBaZmmasfKK-0Xge4caT34mE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"0\",\"employmentstatus\":\"3\",\"workindustry\":\"9\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d835f14cd661-07578445','','','2025-03-17 14:47:42','2025-03-17 14:47:42','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42639',0,'cd-form-entry','',0),(42640,17,'2025-03-17 14:55:32','2025-03-17 14:55:32','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-17 14:55:32','2025-03-17 14:55:32','',42635,'https://biomechanicseducation.com/?p=42640',0,'revision','',0),(42641,17,'2025-03-17 14:55:47','2025-03-17 14:55:47','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-17 14:55:47','2025-03-17 14:55:47','',42635,'https://biomechanicseducation.com/?p=42641',0,'revision','',0),(42642,17,'2025-03-17 15:18:58','2025-03-17 15:18:58','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-17 15:18:58','2025-03-17 15:18:58','',42635,'https://biomechanicseducation.com/?p=42642',0,'revision','',0),(42643,17,'2025-03-17 15:20:14','2025-03-17 15:20:14','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-17 15:20:14','2025-03-17 15:20:14','',42635,'https://biomechanicseducation.com/?p=42643',0,'revision','',0),(42644,17,'2025-03-17 15:21:11','2025-03-17 15:21:11','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-17 15:21:11','2025-03-17 15:21:11','',42635,'https://biomechanicseducation.com/?p=42644',0,'revision','',0),(42645,17,'2025-03-17 15:27:39','2025-03-17 15:27:39','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-17 15:27:39','2025-03-17 15:27:39','',42635,'https://biomechanicseducation.com/?p=42645',0,'revision','',0),(42646,17,'2025-03-17 15:39:08','2025-03-17 15:39:08','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-17 15:39:08','2025-03-17 15:39:08','',42635,'https://biomechanicseducation.com/?p=42646',0,'revision','',0),(42647,17,'2025-03-17 15:47:04','2025-03-17 15:47:04','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-17 15:47:04','2025-03-17 15:47:04','',42635,'https://biomechanicseducation.com/?p=42647',0,'revision','',0),(42648,0,'2025-03-17 15:49:59','2025-03-17 15:49:59','{\"firstname\":\"Arvydas\",\"lastname\":\"Dauginis\",\"email\":\"arvydaug@gmail.com\",\"contactnumber\":\"07490688745\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwkN--BhDkARIsAD_mnIpQg8sSw2j3GJVJq-cM1yxib19k8XtHQKP9MeSnyy2nk5VUQ4T0A9YaAo0fEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7hgasdAzKPWS-cxlS_1pdh5iGT5ljOq8d5gtEaYB4BM0F7zH2H2u-HASwyNpVRLcFq1Yy63wjWRznnWqd3jbPvj8R_8VcPdLsUA8cJMJjYqqL_SMIQdzkT_2PsSdNZjfLkc0YjgnBeMIlm7fUH2p7Ejc4JJOQNX02SEEfLnGWXNZV8TK_ORxs4O99HIaGE_GbVwIqzObGGshDLRQvah4oR4SQEypvQhAjbVHFQb2qm-_T6Db_tCaHUZba0J-e0YvSyA2alHcQJo9DLk8XTG_2LR-T-GbumnYEM3tQs7hCuxhtCx0Ay7Vxupqu7Es5FcXC-ohdXeyvuZ4U46NeZFG7J0Eg7KqnOy62yZugofxynA20XPdtiFvYX7XzVSFMuEeKZkYpRWje7oKItk6ikJ-O49mDfdMYFcl-F3rapIDGs7aEwsZ6_h714Hw4H_d9dzMmPfVKsWPb07ayWXHCPGzTIMZkofMAuWPHEQiwDKQwaZNEWM82L56HambZNL1t3SKUhtfDEskE608KoFYzPphMD2V0GSaebvjUaJaNBKHyUsvl8YbQ11AlCsLOpphflNyMhIqEhimNWo_xy1V1Ycp8JRuMepP93Bgzkc6eH3KcqI4EjMNSpzJQ5i086T-T3siwnPabFxNWe5oDbNMB8kqIrBMEj8fYAn5slK8R3JWc7xGHWxWZfbf2nUWGmM4IPQv7ab3bdwJIWH5SN6gSG5r6-60jWBMNvyujNkFGExb2s-Day9oGU1W6Pgh_f0y3FitHzMazACws_hhANOGdRwtjmE2MqBKJBQMTaD3otv56U4Wtp6DJ1v_H23dGgBi1QZCsoTgKNaJRESsfHCvElp87HxPMPIyUvViQmTrBsNwfWGbFauQDQOAYmUYalTYSXIxdedKWklh_Wxt-usICtnH6zAJaS0ir656xeWOZqza8Sge0W140ib9XuA87-JwpXan42zOpBatA--0dhXYtfjt3nwca691rAp9yFs_9ODMFZqFcWDLGRcmiPA1hqUv_Rk3hLxG9RqfEs1iwjs8_fAxbHtCP6vcjnP0LJwo0O8bWFGrB84BbntFVEncIothXpOcO4QdAy76B7qWXK_UvYUqmW1jmYrjfp_YOfRudvUMdWzjFwxrFo1UkBw813k1B6GUx8q7A3rx42cr7-072xX0UMKN4OJtmpEClUZOEtcVwWbp8doPzRIejvS1szkRURtUENfHgwNMdi_nFl0zmZzNvU3AhJPzjQRmcJAGaD1RTHU6om6w7v6H2k2Vl2zueKCyePN57NnkSMWgDnSfIz3NvqYpKqlURe1xvgXmGVMDpzXhPDnq-INOOfuKRVrY6FHJwTV6WohJ8v-armJ_egWrMLO4EbqVy9x93Jsz7vuzGQCnEsvNSViSP2Fbc-gyKWBgULZ1hpNGW0Lc6MyJ_wAEf9ORx0Q4q3dupS2-m3TINRWzEUD6NfzS0c1Sv_BGxCBgHv1bBwqE1KT7n3Yzn0zRNGIJhNMQwlElP1roKQcXuGZhI5hOYnDtzuAKYKaO65ZT6l-As4M_LMg09kcczUJ-1g0azbV7EiOGCUiybZvZLL0RsHt0BSiFLUC_GpD6Ey54S-hiiBtHhyx5yMbOKmc9DF3whRiGn_RTj317w1LgY9ny9yOX8hjUSp4DaLAd_EH_i7p8ABXkQ6tNUvPa0loemThN-dfK4MEsus1Dog9cZmWpqpn6Ro4rAZ2lAvyVAGMS_toc93vEeNESFD9-swlRSUiEERE5OU1gIrM5mHxPMPFg-T-QDSMEw6SI3dEqEc5bIXE5XVuoNSxK0ogwuIK5LWFsuBkkfudcJDC5anPEqMDEpAPGowvOnsow26dh0Csb5uA-XQIopZnkIUEyjAwsnc8zypXJpnhap0-52nBVzam4vlWR-qX1K7I3atdzt2b2wGup-1oU8DYzqB9rqee-SFKhHMJwcubrCwwur-NYrqkPjNMQYGMl7xI10rZ91deSIbSBsQfaI4l1rUyCKR71ehDedKSWb5zb4lZprOMvG7M3-m8KZkJyWhFwe2oaeRUc5ZRxr92liyhbV9JFl-RIPHL_-WKZ0-nnhLxmNgIESfVB7v31UJi920D6ygRz_R7x-Smhtl0K2mPz_9IXgzPksP8TRMoZ6znh-vikCQICrjE5baAiseMUCtHiV1aja8VXTzPCnU37a4AoT2nVPCcmV1jSjDsOw2ogCiIsspApZ9mAQ5EaSCP1tKxEgOsJc6mxaqUTPGj39fIMERK3ue9XrCoMLFVJUVRi8KxMoPNmOhjVyWArP5jgAer1z6480UNCQ3vlDw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d844923a4924-94249670','','','2025-03-17 15:49:59','2025-03-17 15:49:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42648',0,'cd-form-entry','',0),(42649,17,'2025-03-17 15:50:01','2025-03-17 15:50:01','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-17 15:50:01','2025-03-17 15:50:01','',42536,'https://biomechanicseducation.com/?p=42649',0,'revision','',0),(42650,17,'2025-03-17 15:50:59','2025-03-17 15:50:59','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-17 15:50:59','2025-03-17 15:50:59','',42536,'https://biomechanicseducation.com/?p=42650',0,'revision','',0),(42651,17,'2025-03-17 15:51:17','2025-03-17 15:51:17','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-17 15:51:17','2025-03-17 15:51:17','',42536,'https://biomechanicseducation.com/?p=42651',0,'revision','',0),(42652,17,'2025-03-17 15:59:17','2025-03-17 15:59:17','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-17 15:59:17','2025-03-17 15:59:17','',42536,'https://biomechanicseducation.com/?p=42652',0,'revision','',0),(42654,17,'2025-03-17 16:07:59','2025-03-17 16:07:59','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-17 16:07:59','2025-03-17 16:07:59','',42536,'https://biomechanicseducation.com/?p=42654',0,'revision','',0),(42655,0,'2025-03-17 16:47:16','2025-03-17 16:47:16','{\"firstname\":\"Beauty\",\"lastname\":\"Studio\",\"email\":\"beautystudionottingham@gmail.com\",\"contactnumber\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/biomechanical-assessment-everything-you-need-to-know/\",\"recaptcha_token\":\"03AFcWeA5YhvyBeKhEpRlW1mQjPMa9wg_peuJj9sh2PdrfOnMyIbfvU2Xa3GJX7K-8-MAB0O6r91WVtHOtNkILZdsjQnUe8_Sw9lqYmcr-hODhNm_pGAYdyfNYQmAov04rCLr8OmnEdqLBS-N-H49uPmpMgwsPgAg7WXYMS8C3GSdm598hUlecDjuICCne9WjjcTPoOhRlq02xMwFYXEk-OHM7ZO3skOWrxb6bPu_F-Ky2wRZDFTYon0y2jGBW_CsV710bIo3iepEx74pZIdeybS5OvHbBsp0dOR6XVpMxDW-krUp4IcyL51ISxC4YiAlJiV2Xs4pQOCPXcvEyQ-zjQBfjPmGYj4SFnK7d264xX2XmswlcdnuNGJ1TONVFQ4XP4Gp5PIkJ7PBF5LiVxWvd3OlhjDnhjGvVUOCgFw8TYeI6KryBdMkBo5fsm4J5_LwaSnIZlPowL9CsZVPBIQlzvI47yU6WER2iX6-9tv5Gv2hFNaFGGZuE19TFyUoToV75hQlmTeis2YfIn3xQp6fmqAmbCOVyL8qNEv8cEBjQx2trxQoC7ecNaJ-iLIXDWZoT5lbbfsgryScRgyljMEEcefODCH3m2w0smKRZVQeJpty9Z8ZDLrwfpWXT3gu1y2kVUjFD-4kU7jXc0hlAPZ7KnUJJ9IWqa-GPM6sigV7LSr2xRKZOxaVAGupcoJnzvkt6pCds5mD1eCIBGENoXkev-uFw3XdO7GpAnL1LpWw-BheZOn0tPxCSe-Dq5ESQOPm2i5UUp-vUWGsyMZc0hKVM-lhGuPqJIr7TWHA-zpuXhzmAeT3KWYLPKjI2GCxEYoAIVtatc30AtADUsSvpfiJXJs1XfteyfDXe5jPU24Cj9sRu_GtqseBWVlrfPRjbBw5pgfDxZPR003Rv9fyVC8XbulBrXJGtx3SbAYmwubxzdln4yKFrzrZBogBW34SrKlFohEbykHqEaWF12p6y4CjofOg8lzRBzXyJncn0MIP6Ysln6a4QjJd35-GGrGDnjYb9sq440Kjll6XDEpPuQ5il4ZJgLcC9pmB5VYC3tDqVJx1nAFnAALGh4J8w-Ljvw6AwJlU7VNrsdiq1p53vuRZ0n83EGGnm_3jHp1d8NZzCPPf3khmju8nDQQct1IjV7mLjzcvchyptyKbSyFMtK9LecT_AQw7UGOjW9zqvVfFj1NksZK5IjDaJyCWYzrNfgBnptS8Q3KJtu8MALWQygjptDhqa7HeJlktDqGNlQgU0oB_EEbEXbLQJ6PNrJV8TD7Tj_DVaIP5nQAdEM8mZ_-6n9Ncpo0-DLUE7bpaFaS64tW3vIPxl2QlW2Y5m42xuFXmJIpFeghzmjCErFJhFIeTptEAw2JKwyXjKkJOiMhZQvqH-SYalI-y0qyRXnnYS-roweI2uFXtoMpVTV82xE38uYkgQFEYr006-4k9HDUI60NwpOrFzVPbTT9dpcTpmD6P_g7T9fD4UPKA7QSL0wfIRb9wOqiK9SK0nRuKbtqz_bPy__lz4nOwUX6mL7J7tkyqzMqvAzfDPc9tHlnJSnFAytCK5x4mNhaj78ZQyt5BrY9hGpCYQvziTFgyypldT0hm8YBh5jYwnskouFgfgDIs4jcwAdHDi2qwIsQge5uD880eSaYR7zmFex7MRqFeC4C6RdxrsEm3v019D3wUU5agJy3emlAkx6yU5L9z47wQhHAYg4vGg8Ir3wxgPBGMR-fprDWyZwbI9-kruwTXulCn27JBXnzi3yntAQh7mbcFUw35_9dC24LQFNqcSTuJWUIlzH2nYqBQg2c2WGymi6IWPieu7G3FtgZaQOqlCcMdvBZI8zKlNknzuBCZsz0Jlj_QLmpHq8TW-CdMOdc4mNTkB0sQpcVwC4z4LWISYMRGEa71OCaIT6Ec9UbPz5X2VIrQGTEqPUK35GOP4GIZUiMoQ84afllFokL20C_O0PJxT4b2sqNSL0JZXiHM9UjHMt1R966iAqO1AYTpc54P3SrFcscxvp6HwahOSP1XGE8TzTX6iSg1RuSN8yGMC5Kz0kq1m6OBXRS8W_4bVNufHhH73ioclmPt0lk47e2MHGdPdBGjWmXU4aSM7op7195MccwJIJ20eH9Bl5KWDI3A-DsosSsagruNjo-9EQVx1kPIcndbVbo_CdJTRMC8FideOM6FYq6J8dAKyG5uL5WWdDjvmy8RpsWquxGW-lsHNhduuxsx60IQv6XFBiqeFNt7KJzb7c0TP-LAeiAzDZWKFI3DTuoE5S0iAslwIiaWSCIGerMJ8AsstQGzO6-1Q0svv8FwQb1Ywsa6jdbXIEaxapeKGzY5mBtw7D6LeRujPOTmEcLOcywzkRn4qeX4ol0KZOTDNyjSMWYvCQQafGMMoslmJH_rujGY_3JF65cooETt2ZgSEYEbvUnRdNDRhvflFkF12XHeRsb20VyPzX6uL2rIIP0oL-lsoY2VRjnjY0_LM3ykfo29SQT1lbl1tYFYoqUbJ0dpv-NivadnPc8T2yqSf1hyEH3pScFnVpg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d851ef2d7ae4-40146125','','','2025-03-17 16:47:16','2025-03-17 16:47:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42655',0,'cd-form-entry','',0),(42656,0,'2025-03-17 16:48:53','0000-00-00 00:00:00','{\"firstname\":\"Beauty\",\"lastname\":\"Studio\",\"email\":\"beautystudionottingham@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/biomechanical-assessment-everything-you-need-to-know/\",\"recaptcha_token\":\"03AFcWeA5QV-WRNqfVm_GMupKVMo5FXanm2ABtWXw8mYjegCWkoOFhaDAw9tob5vzT2UQww3PURKRdGCIJiTer38pJyPeEXR2fTNM8o-V2aQVezIvFG9EYvx1GZI8Yvo0U0bD8ycXeH1aNR0BtLhprQt4C8xXqogavBsxP4Uc1EXnEfCbZuLOcSUUXeNgc6w90GxAN3sCiCKIV1N_mx1iWzntwIhy_Ll8Rv69WSA7dD_s02xm0wfGu9VkA4u35LwwR4cFs2VCNKDZ4OqaBxGqB8u2gMzf__LvX1RqFEYX2-Ml6LF48HOhmfe5ZntavvNrIxD98sLa_6x4KkpKm7tuGG5mXyUZO5sc9IcTEVd9BzIkoS6-ameJdzm7bNptm9Kr0Cz5i1pj42Rz2O4QGPHnSyuw_EVvn1gfHBB6f-PFT7jNj8dbuRAFplR9JzW5gle0AZZs_tUN9Q1cYnC8NLMIrFvYhUAzir4Hbezq-f60OgclE7djbTPE5UOOv2WOOyR_tJbvRO5U9z09xWd8J2IAcNpm8JQoqaHsmuonrO7RmVVYIXo-WSSpqfCnU8yr76QmNGHXhabwfeIa1qyiHlyMUNbX_InwbTZ4M0Z0j64wguo8QW9cRHu72Xfwyu3h6c3SWYhRfPji2PGs-EMIuhdH4Xdtpxs9gMwB9lto2stchphfuIMx8PWeVT1ohu02HbaiLkv1hd9VxLcbpwAoF3PSlRmEz1WaPJy1D328eMqX1c9LA-U_QPFep-r7CeJ7xI0xuuMjlQ_XR2BZYVXjqVqJ0qpXmnEonGBqQ4G7mBsuPOhLkPZJ2GeiGa_29Te6N7KGWAufh8zgRJ9wZuLU4FjVEXP5lyWdC8QhYs8RGFiXsJDChCdz5rPqUELLv1xUHNZtViAgIXQR68luHf4T4tlCCRUuQjQCKzdNfw5UXRnqzILwGIObaYJowmSc94gnh2aFJr2j7QqJKAXNaNVMX5QVc-93jICHysom7EzzMmRWcIFK33aXMuy_DLcasYSIxD_RfkVoilfcn5TLs6R09VbMDLAGGTIjha3I0WD303UT_a6VNqjojyr_nuo0-biTKNYR8ZiqKGHiY7zwdbSpg5tEYEAyknv5Z3jiX_9Je_JCMIVvsnVdEPt-Fa3mlLWNuqcYsxDS5lwAHk8JrKk9qkolXJ1kP1sPltXizsXlcYYsfy4LkHOF1IRp9MRtZpTMx4ie3wKLhNJalk2GZ-qnmhA6ij4qdv8Hif9kHQPfoH8A6KBFToB0kLVCvr07-jCDIpS3JDWAXbO2JCcv1Eri3ReMVAhwMA-bt1DEkATqq9cOgHVaYALwnaEjdCXRgz5_tY84xFryd5E203VOIHdzWxdKf2HJtbi4yxWFVivVCWXny_TM70MgSgTZkt91Cftohdop77uBR0xgqnQPKjGtL-b4LiQ-2ZV2d6eQUSyS4xlAwMsCVeBj1cGPTrSapHF6dRJjKNiuGetd-V47Po8lLFppebs89_gslbCOCPYSB0lhPmjU1U3pakWyA1nhTpXEtslgcKl_mnCLioHdR4cTG1DOWstfvOM1Q_D8C2NxqxkpPsIq-b7Pa-emVUeifyB04yKEAvZpJbGSDUDceVM656uS7Cfp4osDu7giYMa3gVJUGHkXot_LPp0yy92eDNOlPyjJo4qK_oArnqAljJzglc204BfL7RyXY4YEQXGnzTxjxcx-jN77LA7i9zODcVGpuBIPCDuzydT6caoioftuxkJT3yy-FsHaKCC4-b4scXsqRRzt1L7MhG6PdSTaXy3Ol01w7abKvWCCcVUs-DIZtXPOkKFMGWzKWDLqzlUHVZJdkBEl_e4vEpyhDZE67aZcQOIGX4CAq2txd0S-2tuYnKwjWhT0gKFReggE0tXjjNt9c0Pqe9pkuJbg-R-zN53rCQBpkhvBJipDGoIgNeXF1Vmni4vTY8SsQZuOBcCESsFdjgLIOJ3Bqh8il4nkvHmkvPJDJrMsx8eZZcc4mUMe6ayVGE9sX6xt6I9AwLxQjMmYQ53QKUZJc8Y6vxbL7sZgQ6ksKTsC0zOVpKh4YTwiVKop2ULb-S-kZ0VogaJCvu80AKaJYwRFiqIAXSez1DrWGY_4F6Fbg6PmCFiHLbKaoNNcVRkphdNFb4rLtX_c6Aqei_CWfUgNiupw7oQGP4UbeDD6GJKeeu7fIjY6B4U1GETpnUJPLd6Xeyi1MrSsd_B8doRDJQiLeKDKU53mA-96Y8oDat3h7hth6wpsy0Vc1jz8LAZqgt1DZFUYjIe25nbGS5WnYDuRQfoo5PQf9SsfMUgH3_pj-K0-SyuP_mgiUU0Q8nphQA_IIXB655Tf-8XfKJRQ45dbvlPq1LdLqMuWg3go4G51KOdYORpuAETNcIijg7B5LgRBzcSEnbMR3iepoRfhr-BFBHE3A8L9K5DljcrJvON3KX9dLgVRa_7udb0h0SlVlg7zAIu8zHc07NSnOVVX193crfUUj5co\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d85275d4ccf0-86165370','','','2025-03-17 16:48:53','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42656',0,'cd-form-entry','',0),(42657,0,'2025-03-17 17:07:42','2025-03-17 17:07:42','{\"firstname\":\"Huw\",\"lastname\":\"Williams\",\"email\":\"huw.williams88@btinternet.com\",\"contactnumber\":\"07544659836\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7x0Y2E7hanBsrQtf912PSZknuZt57okHq1gMFHPzHmaVqEgxZaa4i3EBZ92Yr7HBMTtOQKZDOq0cb_60jwpsNSSYsPa3c--U71qR-rKnOz17DsmvdRRoBXvmK1o62aS5FszXrFn-1KlIlmWwvdfDXhPJuSp6W0lbp7kBf1iMmm5f38k-UcStbmeIZRflUMY_mcGg5EWqlZhuCO8bhTvpAZf8vWPJiMd_JHAwSn26lTnf0tlzk9Jnzi9qTq5smRW6CFNMIYP3s3IAnNg6UiCFddhECNgARMEig9YsNbDpYHkaWwokBa8yyFO_FIMMMlbp8iRTEMTEDrUYUh3USUtNj5QphYuToYRj6ENqaQxlLLA4oeK-_7EClRtspP2ZdtkRnjWCqTFTMg8LcPHqtuaMH2RzBtfDG7L_yjw5HSH2IXuCmnTV6CXz4vx9o5y5l3XQPCdgxYuBNwWYvO3Fie0iB-97SAaoNfXw-5XZBqC5wDFNJZZ7aHd26-ZwatNQ9XotfJnX7wP98OzAHs7tckWlwhGy2Z-azG2zUo2IfYxucTCaN-k3ccHfZpI0kjH0IIRRiWl08RN_WqssNhZbywD1U-bv2pwKjPEW7Ib_KYHmVQqzNEEcZL2dNzshKoanmOZCtzthXlq88WMhqE-LbZxzZ4sU15yaTo05vZtTr1yiii8mUe2A_0ktBHieH3V8ENJUmKnVCI2Dfuw3GbuxI8FBj5H0EllZxHH3r3vs1pmJArhosSPo2hficevRHOfnPS9Hxjm3eL4fxKUjCedzeOFQ32ACZEQ20gGjXeOlHj4vFiM_NIfR044VhvkxNr2CEBhvFI-bvw4JL5MnIxBgP4YH3ciMXbIh7vDjmH3aPOxem3CmtJ40wFVQvhtHL2wmD4a9xt8BlSp1sNVY2_e92sZlCosAjsYuKe2pqsRZLFP3l3Hg9PF6coGaE_M5A474D3zqraUVMytNrHBolZKT1FN9EbVDjZaMw_ttWUovgwPKe4M6kKB4LTacMYsnh2Neft1UwKOMilU1UGw2hTP3gndR-eX-tppJ_L_u1KUN2ZOQGSxDZygRJkeOWL14kyGknWpAih-LDBaZiPweC9xhreuoyHxX0pZuqeVNeDumVonjD7DcupCnroOV-hOVTooXYW6euRkPuI3cce-FDdpLUiWVPrjXfpoozUZrBe_spphQPUHik6qSfe2Egxi4ZpLztZ3H6KKyV_tnWM2RNEZDeRwf4PFGMTVc8oZq-ycChoPkl5vQ5Lq1_L-fRKx3VjxEVSz1Vaps6lJG6ahrbi-NolYzdI35VGvRQ2llnpjQknuja9wvQ-LokzuyQtyVNCiAnLh0ETE39WCoBgFqon1M4oE5Fp6cFugSdi49iiwdb8uEE-DVGDIgkSHtd_V5Wbr_JWGni7R3sZVci_PQgiYlW_hoJ-_7CujjdrpGZuxnm3355oJXSfi7HeOSxEZWxhHW_WdrbVMFP_VZTlhkXINWk_pZmpKZRTTZtvy3azX40izgLUTq7cq_PcRaKgJbg_q0EZ_iYnz6p-nN_FOdWqRYBYXsh1Wi4hhfxE6Vuqz0MjdWdxRAZoFDjHVRA9aTtQf2tENCY0cONS5JgjMgMDj_pmuwRkHxOl42GfIN24DcbPX1ZksHcjjX7eogKnpEvhcT6dEEgATfSQU5g3SRHL9CPyP2SjCIJ6CLk6Pzv1VBB35T6fSNybQGqaZXI26yBMJb03HHhKgxN63zYu9uWqiqcfOfoRGvQbys3DzwFmvpwZO8sChIpYbsgFrvls29pxT9rP4dJN326pTr-rZzGxtisUzDa2T-9V4Xqhv_Byb30Cluoqbih-rckshGWeO9AluecuutSoXtHKbPg7Sz_sEv-HCo0i2a8SRErX0ML33cGCeBf989zQccicaDFbh2PPwQcoWJPHXXWWF76OrcKIXhALSXe1_SN1HhCTAGaUvcuuqO0yOy_3RZ-l6vifEPqRHcBusgS9K-qA5m2UOK4jYFMv8d8-sK9VsY1xkKdafBIHzVjatmweXV1vGklp1pJgSx5tSFilqLQaqEJa02lDbyEcTBJhoDi01FtyyN3_OUn8vTl1q2Lqfu-p2dnmuoH_uzAdeH3iXOZJQLn9Vqgn2K9jamY9ezc-RkDGEAqEF1vGIuaVNCCZp8I\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d856ca95e9c5-04524561','','','2025-03-17 17:07:42','2025-03-17 17:07:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42657',0,'cd-form-entry','',0),(42658,0,'2025-03-18 01:53:01','2025-03-18 01:53:01','{\"firstname\":\"Andy\",\"lastname\":\"Levry\",\"email\":\"al.levry3@gmail.com\",\"contactnumber\":\"07392658168\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7s_mIi48Tu8UNYFo7OmWIKzwO7V29kdvgnVnWdj3PGV2VHMS_lNBUbbte06QqloRoPG1nCNqCJTT9PYJikUGp6hoCNhh3ko2TxZnbWG7PeBFJFzOHQ87dvVPRUuvk1edTK8DxouAkqWMVe2I3Il4jDd5Mvc070f63vs_25T01SHAhlwdRXozwL2VLd5bKYJCP4bA7w6LpPEnsL-Hf9QBX4za1SOSU9HnxHx6cfmiCsmpwBi5GVWP40g7YkKNB7MKUhSNd_PtlJ8cVMitOapvHtgow0V3hI5wQCY_Jk_YJKFxa_W8a6ydceIj6ePbzLK45JMqyMt0ujTohf-Sny0Lx3DQSKdyevqVBvYKwkPdGm8DynMBN2Qr34RkIFORWhXCQ_hLOd6JfH-x_GWVM5mVsMH7q3C0yKHISu9X58qG1Urk4X5cqHM-lqJdzfPrF_UNiOFFspEtih331AW5CgWxh7nNvL4XJY6QlOWWXfif9aSJ4_HeQ3gGxU3F1rAxAU6rpmSFdKXtvzzIeDJ3Pxe-6XNZqx_RBAswwUfPoBQvVy7Jq5MJycI7MTxtj4yhBe9iidgSuDffgoJeZY6YPT4FO-ehtr6pXguCqT-___JiDH4Ip7tAoJuL1sDygs4tnVGfhLQtwVfhVFe7SyjAg9A5lCKNARPaXcYnoTwdWrY69qOpLQWpoR1k9Ld7fbSYbWLn7JQgRZamdc4cYApIeyqAeRJupviKs-c3ds17shIO5nDbASybxy8s4sOXiQHQaSFtpD6_jWE8G2KNPcQExXzNUfFDIGeYrRqoplkfPpl1qFO5U0Ciuk2cGmn71u55WL10sHIiprVz452CZHNMjEEp238ZZeokhfWRPfNBp1CdzNhn-JM1qbZwe25WEE6URIRx8PRN921Exf0DY1-eJXaAsdSiGhNYnIMoL_hjijX4j-qOo2EFN4j9goDKaTEgNuNoxbKQ1_IFdMvXx_vx92pFB-meDiBHEu1RMsB6vIfcDroLfjJuBVRMlSwc2tA3WaD8sOuz7eSIoHdDOq93CT-5j4yoUf2V9GgXOCkUPvae0hphE1ho4-s5YG7fL40p6N7T-LoBn3TwGiWhVgiYo58Pc-x_U1zE-yONGe4a3a2ImkLA06YnokexZ7tEIdFSrE6MePNPJ2vt23MaZziyQMICF0-8eEMFQghznh9jryDtlK2Mt5NgUX_khT2FdM-SADdD9nF3whn8BhaT7eFqcWNHnKG8RCkqhGPtjc3cIuvBz4IFkS7LQk1SZ_5JiO0pKSZEsVPQoBDl144IifWOqxSksnP_96AH-qmM6s-xRG2j80TNPk87BR6sUNc7k0UTb7bCgAQondWshKZMNyxpRA4X0rjFUIPaDYZGkvFHIJmZWFFPjTWr-F5KQzoa1LiKWpbcy3j5O2xXWsQEzC8k70d5w_3KENTzGYIiZYa0gZaqD_MTj4S0tYakoDRvdBd4zh3UIbAvGgx4xFBgUs2mJKlJV5tdxoV5tzP_qa7F6gFnbmpbyFWD4TCkEg9jiXFf4SGuPqcASbhAhFhUr9cob8azRcHrfa687OSdmuRQ30-0NnEeos4Z28PKWLb34ySYduMT86xuejt2xRFRLG8sj3oSle7QtMUF1_PCtpHdfad63UQB4jMTjQoN-hjC2X-wKl23A0nZ-7BAbnJRc0P_xCZglVBbZPtT7Yn9dGHOgnCVA4j8qUBsI4sOxaH4wBXClOxB1Mwge-jxByFOauc7ulKeBnul714ZS72LlfVBU0gC_LXQbnWeVpCPueFE16VJTipKyZlk2DDqyLvl3utRol9gcFFR-pWLageqQBwpNtQU1hQNykwO_FTOLY4wmwPYcQV0xbTPY81-uX29vbvBdq5Bq3Odkcc_eD_OFFotPNzdLy_5G7Pex4mfP9p0Fgmt71yfobPgMijZNrXu4CRmqkBBHzCdgmChrJzqFmPihcS8iyCYf4UjFsck7L-ww7fruO2UQbiseBN7zazQiqlT9U1ci1WpdJE9-M4od8Xr-0cGdhhOSx5GXxk5LwCdHKUZqNDFoqtwzDxqfFzeIwvOD7C-tFEvBB618ua9vFQVX77MKg-WvwG1lKL0Xh49pfeESQRZtTLPI1jSvhjFz_-7uwEe5ZrE7NHA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d8d1ef643508-05513479','','','2025-03-18 01:53:01','2025-03-18 01:53:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42658',0,'cd-form-entry','',0),(42659,0,'2025-03-18 01:53:36','0000-00-00 00:00:00','{\"email\":\"al.levry3@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"SW1W 8DE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7vYmH58MlnvnF6NjEdXZyluAJo1k4uI3cFhZ9h4KXt8SUgH0A9yELqCvLh_NDW1EC9qKV3ueeUZnGu2nsqkqqcUcSY1dODalpCxYmv96f356xrAbrqE-QiAmuxWx4GdVqq8wc8My3xF_NKdvX2tKQC7yDhEZOoiWNQfJVD65CK8cDM_Uu7lof4Z-qwCsR1lat2YaQ_Wr1xt2733t0PpZU2Jeb34A_p0kTjXrm2smxBpLbhpHY60RnScR-cWdbPJ0pJaIgAQMK_KTfTMYzKyoN4NgSIPtaOSB2BjYiH9rZocekW_6iMzNgU7qTZyfIpt5vGUD5uIeqt19I0zZ5rXqGJCwbvqJZVFirsovfJ89iyeSGFq4cWbea8Twnm7T9qFY1njaejc_RTJQTBJli_c5mrD1YD17loVC6M_TXnZjKprW3iuII4J5NMNORe5p99gWuTI2nWSQ_DEJW4mhbTIxEJN7oZyTd2XpMazg51Ay7SWUsmnDb5A1zR12H20PPM61JYm98eyxHirNppRTWVMpsmhJSEG6bUlLJ_OEveOBE8EN1Ckx-ba1l3CI0xHazeWgEQmTX2cpMuAwe72ONuhwhpmRYWEdIvaLjtfFENS4o67pMN6BQetk46If9P64dZmowDHnuPeV3mfdGpfahKat4wb-_YwhodbmWzotVNDfNRfbJPIcb7RExSiOyiin55SO4zK0E9dJxVzkcVqZ5rC4IpvEGDrALlIJzhI5sv71LEOT4ITx6EpvVo47dTbAatkM-Qda5Z5Vz_KEjiDFls928DfwLlsp6Xd-jiZp2XxUkVFOJAhhxBnVzLAdgzGuHqFD8ZqbXpMvcktCQWYn63yej24m-l4i8XhV3zPwi9JYAj1eyFPSwfFiGCYTWg-QslVcPSpRZ3qiXGberqUu9K1168B0RAGdXnkLQPW4jHxPLHNtCYtwbrCVVTGb_IJ25V7dUo6ztDBlnhHKaf0AyWrPNUeN_VRT_STEyMaAyqUYswkh1JqGy8G0Mv2fkw-lxwa9mQHHA0YTuSbK3mA6eGEGN9ez4X288OAIRGghoUx0_r7bMC2SgNcezgczhCzgMnVA4R2HQ14eXJV6dRazveGGnE13oOEVp7AU0dxNqN5VEgUvjV61BLfn-LJMmF0VW8qJZSpLZi3dwcXyeWRtFWT5FGolSKjd4iEODUN0i1JMau28QTALoxZ5En4BgFQd_hYJwIIjcBZ2EHVObkX0BHZoNXAi-JqHFcugbD8v-qzfMPPzAZaTuk9eGk6RdbLXRAN1SGBugNJfMEgH2AdA9ojXmQZpvmBhTCq3CX2GrA49jerTESM0sKw3uQ456wDBgn6q-xYz79Q2mR6oLxw88ubJY8ZUTU4_mphM0hsZfu3wP4yeheXvrmbKUVocU35ax6LrQbDO_41LSuQzQbwDpBzuIFq-9LP62TfErIK7z660Ng7a8EHnGv2ZdE8zg42t2qO6kFLfMIbqumZPnA9RytmA5awva3aIJqiaAuxi717HJ793HbpNtZb1plJqiImqm_H2lMCgPWHdRcTExPrZDENvuKM_Z96wh76yKN5rIm9tmWlHnAQO89pQ9zYnxiCgF2LNkz8mQOcvxDOlTVJD6yxiWNPqVjqAnkEBxB3SJQLVDrajgwVPz5oprqAlqlt7lhUrLRQs_cQgmeUuPC918tSBde_O-svwAtqjp38-aLnXHoins5gJB1ec1ipUM1EUiDkYdkEH2XFjnk1kKc2NklooPAusnZVKutk3C_SAoIXlP7L5q4IQrpCN9C5Utfd4_86NSw7OmWoEMqgyXqGdU6XjgzFwag6gsXv1tFR6coXfDxKkvE_HsY3BdKzpBbIHJ7OtBjb7JMfvrYMc7wsWupeT2oGFssFxS-pzZMi0K_imlqaQsRDFMG1g2a0L1GMr8tcf4RJ-pJU075UEcpbvk6Gp-Ipva3tK7A86o8tOzwtjH6px-LLnLtNCTIqyukD1D3Pd2j1Ka2kKeb65HTgC7kSe4SOytlC08TOc2wZ-BlDYKweyopJEqJisocb5Dazxphl58AO54jzeSrII5Sze96oh4dr6Ej-3nPmKZsVtPEQ7HNkfWKoORA-bt0_BjrIxrxsv2gEVAauWNcVm2YwhADWgKhn2L_Xw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d8d2205a1816-58753915','','','2025-03-18 01:53:36','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42659',0,'cd-form-entry','',0),(42660,17,'2025-03-18 10:05:24','2025-03-18 10:05:24','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 10:05:24','2025-03-18 10:05:24','',42635,'https://biomechanicseducation.com/?p=42660',0,'revision','',0),(42661,17,'2025-03-18 10:06:05','2025-03-18 10:06:05','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 10:06:05','2025-03-18 10:06:05','',42635,'https://biomechanicseducation.com/?p=42661',0,'revision','',0),(42662,17,'2025-03-18 10:06:21','2025-03-18 10:06:21','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 10:06:21','2025-03-18 10:06:21','',42635,'https://biomechanicseducation.com/?p=42662',0,'revision','',0),(42663,17,'2025-03-18 10:06:45','2025-03-18 10:06:45','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 10:06:45','2025-03-18 10:06:45','',42635,'https://biomechanicseducation.com/?p=42663',0,'revision','',0),(42664,17,'2025-03-18 10:17:06','2025-03-18 10:17:06','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 10:17:06','2025-03-18 10:17:06','',42635,'https://biomechanicseducation.com/?p=42664',0,'revision','',0),(42665,17,'2025-03-18 10:17:24','2025-03-18 10:17:24','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 10:17:24','2025-03-18 10:17:24','',42635,'https://biomechanicseducation.com/?p=42665',0,'revision','',0),(42666,17,'2025-03-18 10:17:40','2025-03-18 10:17:40','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 10:17:40','2025-03-18 10:17:40','',42635,'https://biomechanicseducation.com/?p=42666',0,'revision','',0),(42667,17,'2025-03-18 10:18:34','2025-03-18 10:18:34','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 10:18:34','2025-03-18 10:18:34','',42635,'https://biomechanicseducation.com/?p=42667',0,'revision','',0),(42668,0,'2025-03-18 10:24:45','2025-03-18 10:24:45','{\"firstname\":\"Adeyemi\",\"lastname\":\"Adesanya\",\"email\":\"yemilanpejo@hotmail.com\",\"contactnumber\":\"07949133235\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6u_aB5D7hlqdsL-wVgJtjvDX&amp;gclid=EAIaIQobChMI-7HcmbSTjAMVnJJQBh3P3hVbEAAYAiAAEgIA8_D_BwE\",\"recaptcha_token\":\"03AFcWeA68DSo35LIoDTydfGs4Ddv3NUNsVGlcAUXyXhiYX3oRo6kEiqwKQWiFAcaKo6QEnlmArwhJBdhOLh4uPPtfj7iSdA-5xCYpbNNzl5kKW1qQfr2IT7_DBvUSQ81ITqzUuJrK4hCuCF5oqHBnmQro9PyOe5DmkhGXcNOG3RHBNWNoJftfCkSMtu3V7BvZdyo8WGGf3rpVJE6ZOnotkinQO_FwVkHrJzwj1g3arriD-jxVfY1LhmcIceI3crFymp4RB54ZEO31QiIZAu8y9anLryPRotNzyuqPY84XYanGEFlbfi7bbUZNPIhitvouQewzcuBLiPKgkn7z0DbldIb1hwxgo6s6IX-HdN-N3E8XzGPQWcA478Ic3mAxySeA3KxGpAmGOEsF0pNo_QbXIvywh8ixllF7iUY7ErFyGl2nZcciKe6VJjGWUkzIf05ON7A5cBxfEAnwgorAEDbSewHYvP4ZhhnhCb6i9SJxSacrqKcMynuitqsTopwyBXE6ZPGSoMbzRnK9W4Bl_3d_L1gWB5rd27tHR0oUvObXUwTV5dLMskIzAnwFpENfUle8FieliZhnsCl9KlLa-Su_HYknS1Lb9jeYNfGmuKcFhb_PTYqV_lxxOi2Xcexpb_NBWQAISut3HlloGeBtwJmjUKv4Mzmir3-Prd_l-We0ZY5ie6pkO8kKX6-CucB0k_JydPrD3jkHZXA4sXLqyWylZaQ3AFMPHplEr5W22w5CDeiH8HMKgVJ4Gmx3eHKjSyyVuVcJu5DniifpO9FCDp8mlSjqAmTFZer2wG4tlMNDPKMRktUVnLyPAqwAohuuE0DvTAzjfLsgkdD_BYUQN2r7h8PiHKiNA1KtY5t8fHUztnnapVycfsiZ-HnYmKw3BnQE3ACovHFuGY8rBEx0WKaP0VJvYQkClPRjbz1HHgJ_yqdjLBK4l8DejHjlOdUDGGmhfbRWuR_DknSw0x5J2HYRIj_hSUxXnFBWGuYA1khQ07ZKp-INVTwMP2_Ox9rEMVH0jN06jtGVcvlVNOxr49tecXbEtpKKkFpbariHqlj3_S4W9vFz3H8LfpIP5r0P2g8roznr_2klnq90PTqIxiUptd8V4npAOE_uCIZrUPoN81jpEuwnGM4JZ_ts02EAcdLYgJQrVYc_o-CxxUtuo-JHcUvONqZP-COq6K81iAAIFjzOYSatWA-rGJhDggUVtFVfNmA-J6o8OBEQ5mcKjPxh4nZ76VNcW0lMgShJyWnVq5nRO6JplpzAowSBpND6iG8q-eOcYa0AI1CiiZPmW0a9HyFN1JtH0RfTOjo_4slTItPWIwQmAbwoK7m1ELdcLdOigAnV3QIO7ZAUMQex8r-AUrVclo0HHmoX9r6MRo_kJEKw4QaL41rvHE4ZWRjcPxuxhvVK0zxOUiDi4wb3YQIvUo_XO6EV3DU1kUnnYq4wa6SMIl_CbjOE3mZzxKfY2r-BNCmO15yJWKI21SEU0r4Bh_YWaRNXhxwy-XWwuyiI2idyvV8uEkubsWPQW4ChgSUilbi9lmsSnB840Q-lkitLFRx5Qqk5oGHGXVYISp5MoIC47EqXjE_NYEeMi44iZYvBgGmEvdAsyoJjpmL0ueUVJCGeY8kAvHh5Fm6wS7E5p-36Y4vdVpIXYDCAtjOBrFDPNsl27QV7BELfNbFjY7g8U5scRFzxjZiTH50lX36uPOj0RF0K_jcBNheLVT5wY54Zn__W5IcVT2e2viMgkmtpXRFvHXIKE0j9VQWsBFI6KPQcME_7jsEDfGsAdrhkfZlmjrA7C5Ne27KaO6lYkI7I1ICL-Qs_JWisq2UCGtAZ9-ugBXD2TZNEMlPk44VEVCVrrPre1GQnqHuoe55rsPnlfO5IhElT5Spiqe0TCGIPFCb7FV9vC3iOYXGPPd8Mzn91IU0qrVaWRwWB-_2iVYoCNwpPfoSvHBXRKKd2y_qirirpL6Lsho02jBqoIpDA4YpCxueUjvc1hpdKmDacik8QLoH2ZzlpeuR6B7TqaS_tXudJcDhM3otD6__laRdJiJdKcGyHXyBUewDjBDAtg3a6fZx9O2HNG0of81DhFEDX23kINdbmygXvABUO5Bh5w10KMYKIxA7lnEqCP63fj2P-8upG-TNG7lVrW7XPcXlHuunoq3lzvfwUXQMEwp_RTyoIDzZ_6LTpSqgMjT-OApeitekKA5uSbRwNV59KoJb9Jlqc4ULsLvpRO0pQmkaM7Q9XQcMhB1rj86z7vIfKGJHwhtKJ5tqNN2DNMxXnXnqCe9ZGdLXmb66tcD2zaj5Qq4b38opiq-eIYBn-\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d949c4054b82-50501806','','','2025-03-18 10:24:45','2025-03-18 10:24:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42668',0,'cd-form-entry','',0),(42669,17,'2025-03-18 10:25:08','2025-03-18 10:25:08','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 10:25:08','2025-03-18 10:25:08','',42635,'https://biomechanicseducation.com/?p=42669',0,'revision','',0),(42670,17,'2025-03-18 10:28:22','2025-03-18 10:28:22','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 10:28:22','2025-03-18 10:28:22','',42635,'https://biomechanicseducation.com/?p=42670',0,'revision','',0),(42671,17,'2025-03-18 10:30:58','2025-03-18 10:30:58','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 10:30:58','2025-03-18 10:30:58','',42635,'https://biomechanicseducation.com/?p=42671',0,'revision','',0),(42672,17,'2025-03-18 10:31:48','2025-03-18 10:31:48','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 10:31:48','2025-03-18 10:31:48','',42635,'https://biomechanicseducation.com/?p=42672',0,'revision','',0),(42673,16,'2025-03-18 10:58:00','2025-03-18 10:58:00','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-18 10:58:00','2025-03-18 10:58:00','',42536,'https://biomechanicseducation.com/?p=42673',0,'revision','',0),(42674,17,'2025-03-18 11:27:48','2025-03-18 11:27:48','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 11:27:48','2025-03-18 11:27:48','',42635,'https://biomechanicseducation.com/?p=42674',0,'revision','',0),(42675,17,'2025-03-18 11:34:55','2025-03-18 11:34:55','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 11:34:55','2025-03-18 11:34:55','',42635,'https://biomechanicseducation.com/?p=42675',0,'revision','',0),(42676,17,'2025-03-18 11:36:12','2025-03-18 11:36:12','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 11:36:12','2025-03-18 11:36:12','',42635,'https://biomechanicseducation.com/?p=42676',0,'revision','',0),(42677,16,'2025-03-18 11:44:04','2025-03-18 11:44:04','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-18 11:44:04','2025-03-18 11:44:04','',42536,'https://biomechanicseducation.com/?p=42677',0,'revision','',0),(42678,17,'2025-03-18 11:54:53','2025-03-18 11:54:53','','Biomechanics Education Course Selection 01','','inherit','closed','closed','','biomechanics-education-course-selection-01','','','2025-03-18 11:54:53','2025-03-18 11:54:53','',42635,'https://biomechanicseducation.com/wp-content/uploads/2025/03/Biomechanics-Education-Course-Selection-01.png',0,'attachment','image/png',0),(42679,17,'2025-03-18 11:54:59','2025-03-18 11:54:59','','Biomechanics Education Course Selection 02','','inherit','closed','closed','','biomechanics-education-course-selection-02','','','2025-03-18 11:54:59','2025-03-18 11:54:59','',42635,'https://biomechanicseducation.com/wp-content/uploads/2025/03/Biomechanics-Education-Course-Selection-02.png',0,'attachment','image/png',0),(42680,17,'2025-03-18 11:55:07','2025-03-18 11:55:07','','Biomechanics Education Course Selection 03','','inherit','closed','closed','','biomechanics-education-course-selection-03','','','2025-03-18 11:55:07','2025-03-18 11:55:07','',42635,'https://biomechanicseducation.com/wp-content/uploads/2025/03/Biomechanics-Education-Course-Selection-03.png',0,'attachment','image/png',0),(42681,17,'2025-03-18 11:55:14','2025-03-18 11:55:14','','Biomechanics Education Course Selection 04','','inherit','closed','closed','','biomechanics-education-course-selection-04','','','2025-03-18 11:55:14','2025-03-18 11:55:14','',42635,'https://biomechanicseducation.com/wp-content/uploads/2025/03/Biomechanics-Education-Course-Selection-04.png',0,'attachment','image/png',0),(42682,17,'2025-03-18 11:55:20','2025-03-18 11:55:20','','Biomechanics Education Course Selection 05','','inherit','closed','closed','','biomechanics-education-course-selection-05','','','2025-03-18 11:55:20','2025-03-18 11:55:20','',42635,'https://biomechanicseducation.com/wp-content/uploads/2025/03/Biomechanics-Education-Course-Selection-05.png',0,'attachment','image/png',0),(42683,17,'2025-03-18 12:11:10','2025-03-18 12:11:10','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-autosave-v1','','','2025-03-18 12:11:10','2025-03-18 12:11:10','',42635,'https://biomechanicseducation.com/?p=42683',0,'revision','',0),(42684,17,'2025-03-18 12:10:17','2025-03-18 12:10:17','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 12:10:17','2025-03-18 12:10:17','',42635,'https://biomechanicseducation.com/?p=42684',0,'revision','',0),(42685,17,'2025-03-18 12:11:30','2025-03-18 12:11:30','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-18 12:11:30','2025-03-18 12:11:30','',42635,'https://biomechanicseducation.com/?p=42685',0,'revision','',0),(42686,17,'2025-03-18 12:29:43','2025-03-18 12:29:43','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-03-18 12:29:43','2025-03-18 12:29:43','',42536,'https://biomechanicseducation.com/?p=42686',0,'revision','',0),(42687,0,'2025-03-18 15:21:50','2025-03-18 15:21:50','{\"firstname\":\"michelle\",\"lastname\":\"maya\",\"email\":\"mayamichelle77@gmail.com\",\"contactnumber\":\"07834861775\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5F2U3I4BMbGWmk-RnPE6SqH0VBxcsRuxJehQrRnZfechVBDQ1tJK5SNnEyL4dcanG6TM0kXrLGv-4zuX1DQ-AvYOfK_9RQXPCOym5kT8g5eYU71uAvO0uD_JE-mqGCM4gMfyLSFTLELvHhgUQQxSkiU5Jdtkkwh7YUfMaMrO1MviW8Lj7Lk0Ladr7E-8SFtVppn1VYFih3pp-gj4obS_YJfInMn1xkVEKlbe339Ir2-OWC-CSjz4pDXZ7dFAg-cWwWd29LixWA1B52JyoxgplnLZHWxTgHYdfWiL7ucHzTRdQqKbLY4niSsR9B6eYoVWa6S66CpVAr8J_F4fZn4Aovwh2DlCKdyfWEIqe7YVk3sPhdnET7phXt_oT6wMhskXM8lohGwgg0lv2-ts4eR5KE7_p-GqFz0SKionJlJ3Xx6g4WcNLfNE23hzE3L7IQIY4fwZ-0fhEeNsK2afKedBy74d0mJyTn931oWWO5XzTZ0WL3LTFAPNmexoSF1D4aOTFZGOD0rwKamoZL0YO-Mgd2JpOSSHMsD6VDMUy-dXjesEsQZi6qLhDsxIfhq_1h04HkaXbW_j9FTqXyEfe89Zn8m-0SmohhfCUoBoXk5GaqYDpGEEicLKdFNryHlsrlRCjFFpituIQiJhngPc5iaapSgHC9YkB66eLoqTBF9MfiBd6QGAtzB3Vca7z2s1UVA7VJpPV52LcJmZq_3DwhVwDoUaEkFWEUHeAeHJop-aDdeTOMDAEVpkM92dNUmhqScPSKNrcbzQ44QlK-i36kHM7gPbOpzTqU8qWa-Y3JLx8V00_r2pxlG025o0Cq5yJhmU24Do5DUgZbxpNCOeZUziBzGWilLJMzc6je0OpzcmfNg4SJH5uu2Mr9xweR9g1O8bycwDiSgUXbevyJCq3AOkrb2osJARmP4128d8UGUwA2K8IUhrzqpTw0DZDEncjKx_P4YQ_5U9QfSqGupLdZ4LVuL6r4bylQOQkWMSo0cxH9_Ji886oHOiCSNI6qLz_39AmBCUptS8tqbBhuQ_9NB3_W85jkd7vpNCSA6xOTNtrpd5Niq0L-NZzMYXfRPaCE0SkIU5Hwsb25y0KaFBRqM6YDpgEINgU7eB5lUC21O9lb740nZ3kVuuZa-PUg5AQRh0xQ23U2IeGx3jo1O5n6doHx0LONYXRib4DP6r2pZseOZFRagcwer9QFdpr5TzvpSxi4_78_DKM5d6vAaOxSs8ergA1Sxz5dMQRI1fV6-0VHj8nUcAAXmiCnS_kKSqjBUoEmOh1Z2vJzz9sfWXRnlMC_NlOdzYyfs6CiKS7eijqkuw1A7DJYmg_CDNFf-ZuBzOEJhx04UnmwV24fcK-pKpSpxSfzVliXVqo8Bs0mQEb8whmhg0cu1SifyXphslz27XozKEwxp0-556T42ifJBU-Fn7vjQaI581z3tBSXskOBDpVYP5ndjCKnhtTJMfHj0ccDpwDHv1NV51jKpAOHEos8ZIhSXk8wCe3jf4nGni67W6w_Ecr-WrELGu5gMDXes2HriVOx4JrNd4fyaJ0T9CgZ8HBOcLMtdr4JSCjsvgLhtzkZwwFTWTx1xRl1xMawn8qaZnbGWncJbLCP57FEMlIeGYYEKI6IQZs188oDnguVLFZ5UpuPJUhzbqG2tsV3cUMoiDbC-AgdguFPQdIj0ENVedg8zsmj2ARDRpu0QRxWqbcp-LMZMascyapwer2pzPHknP2P4gXAMI94sNlHZ5z43rAhEDJZT6NVSNXbE3T2NlljlZ-Pc7mYRI_5tJcwrXNxCLaeSKQ7icfF5mrdPJdoU__VE7Xm6hMdyeIPxQU8wXzdytrMjE7VMSGeidqElmqR-ZlcHqaO24xq0fKqtWOTY0Ua0gPj7-qhuyxoiVnD4y5QPY31Gw24E3FUbdMh08vm-0gSRKvZnbtLSbHFGSaL6XzGZVxIXFIaitr4UftwjQiEdXfCezRI_MnKrMavqeaxUjvSl1mvJw4dtsRwh_Te7ey_EVQUKlutE8kbybAujTjpC3M\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d98f80117da4-08721538','','','2025-03-18 15:21:50','2025-03-18 15:21:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42687',0,'cd-form-entry','',0),(42688,0,'2025-03-18 17:14:55','2025-03-18 17:14:55','{\"firstname\":\"JT\",\"lastname\":\"Jt\",\"email\":\"jadbhoy@msn.com\",\"contactnumber\":\"07861211777\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6u_aB5D7hlqdsL-wVgJtjvDX&amp;gclid=Cj0KCQjws-S-BhD2ARIsALssG0asPonaJdpIZtQMQ8UCoucxeoKjWRIgh-cV0_n8d3-8ktSV6EK7_xwaAonUEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4-rxnTwj-k8JtnPBqqEXZSPMwESPaIIiUPcP_J3L4fX4Xn0ttCj65pO17akHJNUA6Cw5geERkb9PwCD41ZWqe0gaUM9ujaXPR5vff-0UQa2Tk4JA7m2Z0d0EaLUVvOHsakplt0IXQIp8hWk5_ZaOFyW09VE50oqAevZyZwIfaQz7L8ha9YRd5Vry00eylUjAuSByUqyIXnl9O-MB4Kr-AnXkWSofQWpmBSqEKzdwBT9XzzIg6hUUebJF0YFKXUuqs9bGTzqgovAC-y143SnBPWvZxf0Y14F7lPbKW8g4kile5iaYOmZGPht1XhhaCl75RvYgwuXx7cC7zifnLECtgsLKzCWf8ujEKZr5VBbVX_g-T9AUOzbkMN2ZUX43ptffTmVSjh1rNNAzRB7dG36wCgiVPfKqm2Ct8A1WyMUBwxauJKvNWmvIvY5qeOPYNsHx9XE6XdWF8pKlugs9KQtc23znTlgMmslY2nt5IIS-OSEUz9Kp6oSIsnz71KMZ9cAjw7x2KtHMmgqF1fzqQWokaruCHZ9mQcM9PiAWbs5grPNu0auXA1UjXSGaY2HzJjafwgfvegBRprMjEA_KaW5-Jfg7SGPAMQqr-kFNNERFDNzBV3HFU4ERuIBqY8jxkaT5DdCxORVP2GsKRfQ9jOdnlHALBx91wZRki8dnNy2zrlSek8is770M1caJKdn3pUEVXNtkzANiG_7KY27dWznGBaCjIWg4QgYn9dv1HYqJgYlYWZHO8j3xusW9yhscuele9VvOgoKOVLsDH5cIS3epe4vH2WDT-R9MIes6oBvfm2miy9WIt2I8lQJKJ4X_oTkVaYThsolykXR48mGUyHusTesPDOu6HS50V0v7ATgxR1gUWIDXVb7hddIwTLK1QxbrS7s1-1d9qLmJ-R2Cv-jhwRBVbNfZNbKSy0l_hMSgCgCjfuLLSDt6TTJmWDm-8gfXyG3XuIxQBIVV3-rVbHaWUI7_IV0JWn9sxIXdQSM221lUVGs_-fQkIXuAkBvGcExFjrK4B9hBjEdd62Pul3bW78qxIrea19UoAgOsSJhtVc5wfe_PEIubzKQVf71Saa1t1vN7-aR9nlRuVJEnG5QYuXHJhWxXISac03IYTeNLP2ZRKoSzTT9Vq5JFCS64lGbZLA8qfJG9BTyNOpYVz3rOdi2mTb0smMyIIY79EyTP0MuOzu1oPP7lbwuaxQRbOwxMgtc2wFfNetjYtxvOLps6vwCPjat5B1dtW1UiNX_vesEEc3lqmvkhiF8NTkakcrb24twByAQgQjtK5jGiyFybtRNt1iBHdB6eQ6gFpLskc9Ksvn2DM8iRvT6-n4Xryhtg1sbw6TSmQBap8ZxrzLAfcN--PmykLEhL9apPCB6khJre5LmYHwH7ZQPZgL8LOm9lzHH_DbQVCBmmq-e-IOyvQiuqlR2ZCGOZbTX7PKHAxx8zZ4xk9yDJOvJ85WPBOwy8CwlrXzmiRvEMdzeMWN74_SLN5aflfvzkZp7FCiqahn3AaZBn7hI37sI8x5k2xUKouRlG1---mFPvj23ds0gRn2NXmYlSLZoz3OGMJJXGjsad6jcawh1n5FqKMmKxxLEcij6xAlPrJ0RdREanxLtXNqLi-5MLQp_KVy8kmV-A4txxw1GcC1FQdxHXJFJR_86GTBCUGiBjpRDjYuMaawAgdvCMdOvblsvO93fA7_dYWGbm2-2z7pDPOgC1D-klMJheiStCdoso2Fx_v_GJX-5G10nsas_JkZmzuXlV_5Pa7XqOMi1nuOzAK9pDMsUlBR3GpDopllxPJtkb8OABo009E3A5t75ArRVdP22lLX9bHMPjsp9q_BDVKR5TyjwlRW1CR-82BkSGsds0q4kCU0Y594AGbeKM1LaAGGOB2rWvwJXHP0DKY7ddE2VrZ1-NksBPgrmx_U5Kbtd_lc6sEu4VtZctU17a4sosGn_TF2iD4X8-AQHjcYEV4a_HAD703LT50oSUo2mOquoh3sG6RwU7yCDMZJZ_ZvlFKI-ciyEIgKFs5EtIzKX3aBLUm4fVaVdFvx-7gQjchz-SObXKD4zZID6ZG9LZ4EXAgZSReV30DGxscbCp8I757eOEh3-o91TlgQGR_ywT39ew5tr8M0bExN3olJ1h_cHLRcRTmXzXOSVqSofIPIF7s5qpr6DrVUshYixIKGg7_S8xvZXD_gsJtW1QH5i_uvar62zVcby0qkYLfvfBjHsYAEet-SRFuFAvUw9qFSa4oqoGEQqn-sW6PpKb9yx6FQBkAuoziikNbcz_3cfGwV4oq7o1MKx0FewxERlTETijeXwyidwYr0fEU7Dw37PRq1KQcx2r7nO4olxZNPBgIpPr6utCsGWgJpdbOAULkGHAfqPkpH_4syzHV_cfSP4A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67d9a9ff54e1b4-68630061','','','2025-03-18 17:14:55','2025-03-18 17:14:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42688',0,'cd-form-entry','',0),(42689,0,'2025-03-18 17:17:30','0000-00-00 00:00:00','{\"email\":\"jadbhoy@msn.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"9\",\"currentpostcode\":\"G35\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6u_aB5D7hlqdsL-wVgJtjvDX&amp;gclid=Cj0KCQjws-S-BhD2ARIsALssG0asPonaJdpIZtQMQ8UCoucxeoKjWRIgh-cV0_n8d3-8ktSV6EK7_xwaAonUEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4byBaT9J23BYKBmWeN__pRyqH0Q-WqQW2LgTFgr1dBl89G-Ewp4UCNIh6yuN86zK25I-6q-Bp_prv1mvhXxBBIPcih8I16uZzsVQIeWdI0XCxiDrL59oVgUCcgsf2GQqM8Fq0l47bT4kcSp7fBkU-ujSMWpzlrmSYo-cqWhDgGfRwpHxIHTrDvane1FG8aFYzOU4uMHAwmkwi4cjvnnRg-fvn_ghJoLHthue_gxp58KerjZH3LCWswiMOaaI4xI94dfMnLNGrZ9LkQw0Y3_80jFPUSOyoZMgwM88SpzmBGRmMUuVvUwksp1FDYGu4eGrneS9qiVRikE_r4D5L2yJfLmidagbEN-0BJqnKslOwAPyganNwP-cBMCH8uqmk1rsCme8PB9IMyrBo3SuaC_SQcF4eWiZqyzflFjGRflemlm8hb10VHxbf7bS1mKVQw8OUUg4eJbJqzJ-uGK3IDOTspdrQfMBxM6yr_1-mFyX_Eqb31ZHEva0665K3NCrWnhhS7QdgZF5XEaFRuiqgJAlYKq_L4SZpQ0k0vNe4eIDKOmsfB8Ay-Eyr82wqoEVNKo5eqm_jXIpQCaS4NI2hy7JcOvd01BTR4ZlJKhy4andoisqemECqaNYmfquTKNNjNc7zwe2lS_XsyIk6AuOxI-Gdvc4czV-hMD-InYKSnX4i65nbutC6UbUFF5dw6shiZ33deXnoWdlSAt2rO-K1KdOKAjCMWfK3Dx8wdB4uaQuvjTCuGMBzA-1AtRUz2squctFfYbgSKTkYQF1-qJZ89ePevOYztVQswznIZTlAlrUTzxuFeSZnujpSc0ir2sx4ahYf8ykcyDZ8KzKxdJlSCPH8L4o5-1mV8WQZMkSIORO0D9aPVh2VXeGoVXzBOhcqXU4dhqsaXcLu46I-2wtuhdtFamfzH-3yLrDei89UPjjitFpgmfhoA31UFjCQ-qNIIs8wOLLWTe2HmT4QQiUjpbKwBMiWlTwFqs9FcEw9G2zqx4RoUxnQeaGNCdZ2-0IWqLY6JaLZJpyrqlWUFPv6v1IXR2RZo-mRRxNWjJ05j8-Lj5BjxuSyQw2D_HhFYBoWGIxY3vAkEfIh4RKF_rRcA0F-AztfwxQTCLoCSBJ0rGqTtyu-UIItDuf0FFJpHCQzXXfNRXN4sQ-TWhn22ujDnzenuleHZqAlNGhZ1XO4VtQz0hiusKzWM41Nhni1t4JtmgJF9yYVwQjzt68agclmaxjsx16kdPlwyUavS_th1O_7tZ7UkXCrcWVm5fVF6kEdJKzHJ5IhZicIlEr6i7-7kBPQ0uIp7G7TbWzeV8zZLn8DjiIVCf1oBI4e-efau_IFlrDmwWuZzvAnKtzhZHqQccyWB0ep61N4X98XpWKnkTYIOmgyCIA3zjYnvMQWaKmS6yAfHdjEBkwIgyPLXklFFL5CWg4VbA_m3iBUgcqsL1T-TrSBkRZv0CFJvUD3Cjn9S8-6IhAkG_NLuduq-zCqv0uyxGmhpy7CesYtJ06L7a2sOlN8y6nV9HJT-BWOPRmVLkybI5QCOVT3rfKopzxApB1rNjGy7k5j4zFT7YW5Bz0-gev_wOhTz3T8xGC9IVjDdyRzXCX0u6e8wvuCcEeht6DewXRicxbAFSY_6PHvCetJmM0oTSsDVIonD-XsZcNK1ep1GfOruYn3I1IBUJqJSOB9JAzed-Bngm_uWxLN8Nh7TFvXrTlQIlXml8IMJBCIbMlWikzRRzXd251qI0_aH_UYjkkTENgSnbNOV8klr34reLPcQ4vtVsnE5GMyBbjnzEjONBbN_5Uq5WLQyuEGTuK6k2Ofq_SSiwob7kkysTdwvPAzZGJNG8KTr8F3Gv3nT3Wb_-JrZRMVZb09Qv7nvdi7Mo32vKkrzG7XqggA7UrvIWU0z2u3SdHn2TUdt3y_iSWUGgo1p7KYDMeFJTo2Q5G7XstvBhXBgXL0TpnkQXQ3Q4YOZBLNk9a8_gIWi13Ittq5sAHNlDTsXWH0bIaUQ3KX_dv_hzapLzgEgUahzJceTlZAEC_ZL9jJ7OwA38I0aJRj1rsbJCjeKjD1CXBgN73EsqKqd0V2YgczYSKqSImYyvQIsstAf0aZk7LHmHub-aMWn84D6MGjy3FZhXhvSHUqDfwciU-BFE6MNcKMRHdU8eiYInnk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67d9aaaa8241e7-31637769','','','2025-03-18 17:17:30','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42689',0,'cd-form-entry','',0),(42690,0,'2025-03-19 06:40:14','2025-03-19 06:40:14','{\"firstname\":\"Katherine\",\"lastname\":\"Rout\",\"email\":\"kat.rout@hotmail.com\",\"contactnumber\":\"07968394484\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sxbWz407AmGPdKZSH1fX6i7&amp;gclid=Cj0KCQjws-S-BhD2ARIsALssG0bU0V5-sIfVhrZKLGdqU39xz5Ez0CBJpj2rAmIuim6umwu1t78ymgkaAumAEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7IgPbhKshHHiDE-XndvRMHZbAlx4cClmVXcatRpucH97RU7w1LfM3XxC2tEvnTA1unj1uLT-srBazPP7OBykKHaDiHxddwJ925UboJN8DiZ4j7Y0gZMIRol8ydrbD4UseO4IuyI2u_s5GSnNRl6cS18cmdUoN9ftUD653C3BIpnXaE3-FpZ6n_wmJ3W_-R2DgiIJKH-GnhKu1kTN0X-szM6ExYGWrgVgk5nSizLlcG6jVpVV6LLRYyAU_-g3bJk-LH3OccR-hcc3Gsv-z27B-JyrqWw3hHPVXOQBPZ47fFc5T2VK2WGGMfpD11aofekZJEnQ8UhwkdNXIa8F6Zn-hbR1VI33pAhxUDHy6bO47v4-dCELBzr8y1cF-XfFhJJgieznOUctbzj5jYRCipUSjZu3olzk4IMFe7j3EUSdU4y6cxDDbUHUukbGvqLDbDCbHhpafjpv4PLXkrSYO6uzXsuGUPOSBnJhcxNDhM4fAMgDLgSjCqSTYXlSeVBQJIWfR7UBu7d-fX-wYmFvAwDZV5T_bAfZRUrG174jf32NR8R-6vpBHkWxCSjleMY0zwn-HhcCsIgAYboiBSDOWFZme234ZV2aFlM8Bmb9HKxeddeB8YYlvAXOoAFTy_LOll71nPeqZqu9bHvgHFTe0a3bX4lJCA0s0oFnbtmBPxtxCuKbX0M73atMmm6fWQAZ7hpU90NZirZ9N_dxT4oBQKusL8JyP23GGel_XNut0Y42370fzBmXOpW90_3qVMKJvpgsJ2jV5B1VojUs_7rfzfu2BrhqN7Le5nz16LwKNjOg4pT29NPky94MpB4BhDu3f0PGPK8azm5L1ePgZoYWcIpyViwCwFgWrIpOvleXC3Hen2hB506RA-raNaMEglnO_HWVTimaA_S18LatzyhnIDhDzagLka8jyOOjopxLcfP4TCQeCt5R2_2wY4jVaCPf1jMnRnyqJRoVoB-Uu7uJEV8C6j_iHqL_bjhv45AvwsikZPO-Rbd8cFkQPsrGvbnOQK0K3xiSm9YQiwe_ijl0sL_5LfMAOIOwkPt27I8VP9xjGDyE7bN1ZPYTFkKMcJb7FqADTF3aAbJwtjOfaIch0OAaQ4QZPCCJtxFkt3EYxQ80q4HpjNQht48hoCPsg9boJu1pDBY2XDqt2az-TfOrDMV1zRzwH3qRdr0UqOGMWhzY9xia_vKE_IcLFT4QDPOyRfSjG9MjyyErHCCkSmXXwps4b4zpgRcuer5dDTd0xhZv2meuWzff12FR2Kg_Rx1xwxcNEtwdYGU-vbYJf_IXJ3lMdvQmhiNxp2Q6-sCHjXNJ1b4lbngkUg5srgI326cO1EkBm0NUEkjL5koN99sk3FpAfbDNNTGv_hQ_SvE-Tv1YKkGJXOBfLB21k8ByWDm4fxk1z8lOxBz_Y-xD353Y4ont0lasAwtHI3zJKnQvFb-HoOd0-grbMyESlG1y6Kq81psFy6Yn5n04-LN23K-3uXqQVt8HGAXFkKX5Vcsw99c8gOqGj1GxrVcUOJA04-MEeFisbPOEzAsbqLTVA4bOlk0BQiNxj-rz1RrqZyxTXdEoLzJyQ0gzWetPvmG3Sx_GsmtyGicnViWnfmO-2SvcY-NV8BM0hEK16r_1WylD_65PNDPb_lWfrmWPYhzZGe5oYQYFNugA0kWfjEzVZ5jW3ky7U2oVmLh69kFLa9-oF5bsm8G-u4WzDuJcHr9zJeRdO8UskKTavasZUgOD7MOkZ8YVEVrc0uNGgS1eGvamq3gPWbqVZ4wKf4475FDAAtFe5slnEijvSyAv_iZGfYmIFDLpc4l0fKM03hoSESvlxtGRsMunSmIOmtdXC6NmN55CpFmcU8LMFh_ygv89je60RkeVe7THNSF_6gEqmA0YKSRAkZQFVlOcq8uYblv9cZ1jSPhloWUjXLr-gX_jpIPEcf2eZQ-FBRxz8P9mOzDySqVlQy1O1pkQ6rFvvxnI70qFuzHWDdwMj69H0YjZqLstJFCQVn5qcG96SNsEkQthoXRJoTdQR0NK0REbZNSo2hjLjj3BNXz0NM6ygRyhFT94YhSZ-bQil_0039x5nmRo2UcV20usdNxQAS3MKY8bv8qtvsdWq2EjxVym8UhLywkQ3CebRIdypETrEYk76i5UbLBOz4KV9v9_A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67da66baa22e03-22511669','','','2025-03-19 06:40:14','2025-03-19 06:40:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42690',0,'cd-form-entry','',0),(42691,0,'2025-03-19 07:23:46','2025-03-19 07:23:46','{\"email\":\"kat.rout@hotmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"KT14 7NG\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sxbWz407AmGPdKZSH1fX6i7&amp;gclid=Cj0KCQjws-S-BhD2ARIsALssG0bU0V5-sIfVhrZKLGdqU39xz5Ez0CBJpj2rAmIuim6umwu1t78ymgkaAumAEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4EVRxDLsSjs9DoZaoDDOaCneoQicHfClowBqo9lOREXgZweCC2a64evYutGlHUfkJuoqtEWHi30t5SYfiIHI0DTXKHEKynERfnwXqF3OvNUbyHPdVlWtZZXjxL5Y42-N-KFtv7QEdfiHBYfKJDmDUQsgkUA8jhxbetxn8sZEhKRg5w8CTpPW53VVoTlxjZkewaL6_l6MPdOU89di0YubLB3EnlPimOGFF1g8gptSrnci0V87QnksF6HQPH43boFXemoYTK3fd19I7a5YskR66JYx5NDfNaOyF3ERT4QMje1VuJef0klzBwTlf7DnwsRqj24sn8Ok8mvS_iOgqDPsUaff7cCzxJOriRstbBAFazHy8qRxi6iNNblkQiNaG5u9ACwFbNkcuCdMtF85WsB3jU_XNqlLJX8jvvVG40h57hbe9d9nH0qM5C8fu2K2zi5bJrzZf7PpeFU_Uy9U6eFvpuKf9rCSaAaAovHMPUHbf0VPDqY8wurz5sl2f3gEoxD7wl2qLmv0IYljueDzWBNshP_yMRUQ9t23o-D1mGECI56rW9Srn3mzZRfyPwsR7jOPkWnzu8oOUJIgBVLKfi9MADHGu1WTSlMjGI115lg4VWW6YYEDxOIUp3n1K1fgxgo4kZTf83Shh4URZUcw61zmoO0tKr20YwtVAKMCYkNurugompmNhoc6K2JhWX5WTjz3aGSCX5TE8CzyRHsLbNXuZgopabqMmJQVD3DzJ-46XzEzBTtDMVGwJg9pFAW_kWNWmc7_J4Y2A-W-R4fduC57gJ7O8WZk2U7DPa6DnOLKLDj8shcDq5D06t4HZJ41PNe3pSFoB1WQLEZxvwszraPoBtcYW-554jFg7Et_7XDervy2052PShbBdbrZkMSxgCb4LtzH3J7CoobksgcRt4kh_3nFn8k0U7IgFn0Bh-hO6RysdX8s7VyvyAmiP9SCyrWWL6WgcgAmoA2lzEjJr-0CxiYTor7nixQMpmtLZKSdv3phvZTKq9AYidQsmD6yJN9OOJgyctSSrFVte_9lM5LUDbAyzUrgxhYRJwAco3MXBSSy4EcNQf1mPICsXoMAJoeZKXEvlhuut7HAdxoWUzEF0fa_83HAZnCjYHIdKrbkhAHq47oFovIZ8mheklVIGm5Mhbp_hlWGLgv4UijEosQF_xAjRDlVehZl18y8IXGay5PmWSmKawIFAASdR90HF1xupjttbJ4INum12d1MVBD_4tmJPEhowlybEcFhT6UDdzi39ohGF6RlKqrl5iP63H2sXqCAj9j01gxvbNbL6GAExGoYX8lariTZf7r8pjC3-V8s6iyU4bl60ZtTJWlL3AfQW7w2kjDTGtPdCIp9cAcgBmXXNCBNqT4J7BsTxBu2owuXQm4uWUnGsUMZyBp84GLp09dEtTLeMKcEcXb3yh3vMfC7-KCF-Nb9JitG1QHv91vDqNRTDgsI0rIY43uliW2Ofx2jzZT7aDgIGdxONQ_TfB9oK4KWBOBiXfpID80aEp-D2F4d9TOfgILkqNxu0lazgyGs1ZEsGA4vtQIe1H6pmy0kZy8OfCQZEZJUchjgCLl06xN1LEWCKlI_ml3G0FR15TCxS_I348U6mi6IATRe2iuRmhMBif2RpNf_nJmMPbExuLeAv1JPpJyPWe5Rw441uMZgDIoRxuh3px9opWl3dmGkCZDmlboLWZxDNHi7i7llBZbPWHNKBaiyTZQB_-3Mx7VAdGqGN-E8GHTkIdqv9xHJRrWBDn9s7qcFNX28aB27WDvLr9PMLp_Nh2E5kOMUXK9zpX5W-Vb5MBlUJDFN7tg038fYbrnnWlKHNiwPnqEwT1BfYmzcUoc96HOPIiZVz3iMLY2yn-HqdYuKraT4leigaupy87UToWcSnfFM1go0pogEkq0oigtJmmi_2o2OEwbC5U1lREKTrQk0o6dWJ1QXFHN0nH3Nw4hT6G_LcFtbxcpRoDssD_5T9R-RpCHqePErdFXJU0-ceYuTklGw2HS5nXCgmedxNZgETNCuH1lKXomQRgDwgGlMXbhxUmKuy0OIJUuc16I7SlmoTPPGPYja6eHcSQLjhGC9d0BzDWv7UmsL3LIcLOKlmA0mTvOLhV5Kt2TTGMyIHqafo-eSFnqWBU8NJSupDioTBbGD-BJRUT7AV9dvIbwIx_XWSVQPDNNKR84NdP9KDNQ24Iou21LgIJBY7AhEaLN906JldDC8CLwLSFNGVa364BJ_cYfGG84Yhab-NLvIZy4RVD_aNRimbPVe-9iF-iAObheejQYLXVeuwDoiskI-MNEJWumvRejGWlzzKrN9xNpWz3dC3KY6t1vBgP8AEt-THl6eDNHIvO9UBHwWApdSGnHApO32331H6hM9b4lNkMkNsjBWMoeIfcCw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"4\",\"workindustry\":\"9\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67da70ac551be6-26909091','','','2025-03-19 07:23:46','2025-03-19 07:23:46','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42691',0,'cd-form-entry','',0),(42692,0,'2025-03-19 07:26:51','0000-00-00 00:00:00','{\"firstname\":\"Katherine\",\"lastname\":\"Rout\",\"email\":\"kat.rout@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sxbWz407AmGPdKZSH1fX6i7&amp;gclid=Cj0KCQjws-S-BhD2ARIsALssG0bU0V5-sIfVhrZKLGdqU39xz5Ez0CBJpj2rAmIuim6umwu1t78ymgkaAumAEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4eue9ivRYbffT9bE8Zjki5MVtZYDkVD95c55P3P-eAVqO7FPb5EyEA71wMYwt5ZpEkrWMZMAVdX_n3feujDddIy0ZUVLkrj0Jcg2S8RDkqZnyQMKReDtVtIGhpxoTbrqlX3A1mPf_vx3dpagGxmbaiSQ3CMTMAUtYbIEsDIx6QMPeTXE1WGZ7KXmWhWXk6TuVcOT5MZFfREKdh0uCRv2ujU9S9NFRhJhn5iIJfcRLWcXR_ztdDBk-W-X9dCMkXiEzfgfaiaaDOFgzxVg4LxBqPl4sViHUkzupdJG2SgC3cIUwGfwTAO6_feNIxh1w3AmssNadJgm-ljU6dFOx8act9gyyqE2lzS4y5syCc-TQRS72G2kR1AsMq1HmyyUxQ68eokmk_vX3etwfD9p10hv11zi5LfyU7uTtjCx09Yu2UzZllGnvb5G_RHJnlv4PevpEheCaujJne1wyy0G9vzW3VGRlUsilLW49XlBaKoIt_vlK2D1XXSBJQmd5r6XxOLZNL2eAxci-oV9yxnuD5vEAhO839Hg9kWnOBFQLNMpAX_2EAeTl8jnJsY8ARwwBeQZ5EivHrVZWSBjLkhbqcI3n8AevCwWfyhGFnOk7OPzXyOh6pj9qbtj632-5JzX937bVeQWlLAgBiVbUZYy1mwYLdReRnkIyxsMh_OQCsIrMxRQAqCclUkL4NHYmJ_4xqvXXn1zXwc81jeJ9T7X6S9ijv_8B-F5bXjGNGZrcNcUqBlKT3aGhKh3T5XKhWblIrPzgwiwFil9QpPfEBtD9bMXD9dd4xFfZBtt2ewofswvo8lIKmwIfV6tJ4YzXFWOIxbMPCbhqHscicj-PO2koWpqF3izFctzX2imYft3NowzkM2RyA445Ars_8ZNDs5uikct197Xnn7GasHkilZp3V9k1aFcE3SVcpL8CQlTpftMigTWC0sds2Wg3It6A966Anxy8INiKFNO3Qd8KQp8yJk5493nLeSD1iuXXMQ0V7uLkPpw6YLclpFhJjECpBm2ZqQnNM48_2sDWb4sbpCUTxehL5x7qkxsGVOnF7L0TVh7uHnoEJrp4SR_ZrwqT8CPEerGyy5EvKjmq_faJ96o5hvnNIoNF2oSCKEmJZUGQXm076ImjWLWGHb228xODO5nF9GrtrE3zouBU3e3MJMYHiTGaOLff9U9J7D6Dsjp0Y1gpcSWuEuSdY4HcAFt9b4VELKW2qKBDBF0NvCAORTUjm66KanE00x7WwwSAncEgqf3Fu0gyDAO21ustEvsJ7wKepYSVpvajswj4jgJBfGxaCMNbHstiDBAwxw8edCTFb3i523l-vHO6ZCnPVrZ0o1O-TCx_WfV5vIOTJPQ1HOXSvy6orm99UBhr-nkhQKoKftTuOUNsimEULzfQbDP8cjHJJYphesZd957nky4VU9DigsPS-wiAFaHN8-nck6HubL9MwhqNHDB-sXAuutV4ML72TPBPf9rjrifoXhmaQ1Esa7lIdwPDlm2xnSCZykMOn_mUBLUE183sP8mA9-sk--QXV-anci2VNVCVk8DyRw_dnN_H07_pbWA8RjBVxJlqgfSbS6OjXCPhMOJ8sL0H694MxDZ-e4plIBrDQtN7buFSxU1JEBHYblUUCqYScDY2c1U9n8shVxXycKAYfdEIcdkrQh5Ve6MIF2OrOdNRHcOJLJAvouS0mpevRPtuVc7TilC-xBD8lwd9rXZFO8dL8BPfPnKdKkQ2KJKurqRPQt7cQjlvdxwIXOztVOlQ80D0yWAUajpcszvvhgXWoaJdEp6URk1rBETgoTY5th1NNk5rKENGRQdZzC96FO1DCkNMZ5dX74M2B79SqVuFVVG5UMTdjhO-sc0Xc1wV0_teYjQBf8rEE27YlkoGqxVZYqoBeFLKDb_yr5pJAPWxrCiYuV2CZiYK8JN3ep0aUAbaai__Knu3FzMNnP7fs7-w9hGJlDYlMVaAvVjMfv71pc4ChZex2cA9jkTl3Wb54vYcDWvfgSzEabgVfIs9Dz1Ruyr2qUI64yc4G_xsXg6pt0Ys28lvpgnn7BVo0baK-5_DQ6T1FqximBqQOCIqyYTJPjnfdITm3lf6Z_66P7_XtykmiKiNGlHpM9MlDGJd1Azwq5zqjOXQQBFLmzsPNlOqlt5RF7ue1DB0KZ50\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67da71bbe1f9d5-12603092','','','2025-03-19 07:26:51','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42692',0,'cd-form-entry','',0),(42693,0,'2025-03-19 07:53:04','2025-03-19 07:53:04','{\"firstname\":\"Katherine\",\"lastname\":\"Rout\",\"email\":\"kat.rout@hotmail.com\",\"contactnumber\":\"07968394484\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sxbWz407AmGPdKZSH1fX6i7&amp;gclid=Cj0KCQjws-S-BhD2ARIsALssG0bU0V5-sIfVhrZKLGdqU39xz5Ez0CBJpj2rAmIuim6umwu1t78ymgkaAumAEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4tfswaucv47LNSj1b3eywEdpbnUB9IP1W-gGeMqo_Otc_y-pPFRpCk0o2Cvursa7PJtdcKxayfbE09Hqq7oyqG0YW4dkAGpR82tGm1_NhVk1xDK5d3MQLWlVCPKyL04PAd4omKVCaiVrQnVMu1Tvl6yIanatjuqOm7pHQY2hBVsdBGzyM-A12NIVHK4AaQzDhmBmrtSX_7OTxxSqjNeeqxcy9KAA_GcTgBpgJ0gnHKD0iQYfHhh8GUd3VDaYjg7ll5meu2XHSa43WguplBEPyzZjfsOV5VwwRPxvl-ZjFqWh1b_wpOlc5rqfJ7WSjlhqHnUqNcpyijQuZDQ092U0K6_P48dSRur23M4MVmPxsiDl1Iqnl7hLSjtieto6s31Yy8qUhzsKwNwNeHu7soGpxHBlkhqfx8zJL01mjaMckGkw6xJuJ0haYMq4SYQhWfiLd3cU50kh-d6kyQkieP-DKqLl5iTm9kZLYjb91uRuSdwszDkagOBJ7PUNUXJXGP-5GtQhcTenB04qdOzhEMa9_Jfb5IYSBJl_tNtYHUMAFdc1um1zJM56KQqX3FBEzwBpNImiSmKSQR8etgWVp7tN1ac8oDddXuQKjYw0_9_K3JFDS5-O52zaifGu8Azb4ScDlMaNSblfw3wn8XlwaZjZFCra-wdnShjEkz0MQpVkURuxzJQJmnPMMictI4A8DmjW2e-R8b6tYt5uU_GFRa3qHfznenYbJkM_1sj2R-U1KpNfyxzvaZOKPgE1UQbmFGrnLTdQZpDHv0tzphKVupn1Qe9yaMtLNoAfUOKos0fR14PSgse4KYCK1sf1UbkO3rNShnuvmWgCa0tFfkGIoQfnvp-1EbTU5Yb9PhSqsPT1xwBtIV4gasjZzKmC7AwSChVB9QZced0uA7eaKx-2myfIO-4AWmymEetV_cAaXVVcEKc3_wYdyyh2M9gMV2sv8cjSVRIq3GkDClOBTqQa0qZgYg4pzQ4_jH4EkYpeIVM0-CiRJt3KNwfeUQhRLjJD8paydPDNjg9Xn0ihDrIcUDDsJq59sctOz0NP1alGsqS5yCfo_S7KOPre5G5nyJDVdb67zFoCTYz2V78yPva1nO4z2oH5IK11XdqVHuUXh2V-jUZtzmOhvshRFBBR3A2feOu5Yn1A2cC622JpYNXbGs0NyS8chq1ZNMl_yWJ8wzZLXqZHICUKDWA6F6GCkLOzsWaGINrLhwj5h94j3uIWUVcoOVm5KUosElNyqoEleHNyQUSkJIDu51EzCiMiD-XhRuVnhqQ9fDB4HVgi2EE5kn4JvWvfXtkpuL0al_nlpnVPXVNE-zaesbbruEkAEMbgcURAvaxGUqDtl_oQzbdMo_NNx8ti1HwiAV5oQjMNCDDeTqSUIPPJyd0HfeoQ3C-C-5a40ioxQajcqhX7XS2D8dlGLcIZ6YdTI5lbNm70slCvezFo4kWNoBw9iVBec99hj7V6G9YkeH1vIk7FabtKhmTEBDnnQ5UpYNeJzeK_u-NgvbME8JGzrSUzYCTTS8fIi3nB0PgfRkYaorT-htpK2NfJs1gshvB4HmsMa0vWEzo6E9isMrY8UKcKpxcsfYNc0TgRjH6AMlaCQcIJBdrUFbuq5qh3Gp2guMemw98fxbATyN-C4mMVv_1bfrlhVxMejttHM1DqhqOJXS564aIRL6r6x3rbEXv7unoGSWNJykyLm6bOPZH_hDOl6Ja9qRTIhhyp4WI4e6KurXLVz-9GvWpW47wzLtieSbGbTEU_nJFN3nA59hVmVkjPxLylnTxT9Xho517nql2BLao1baaPGxFoJSiAGF-rrLq36lbiqFuuM6gcl_1AjzK3ZuuLTyl-S-Kne6WGUfI3y8iGcgwQ7H1z6d1bM157r_YipQS_8U1kZsxKJANpuB8Xg7UvnmodQFxXTXCdFiUQ1J8RKe5VkVUitJ2gkY3rv--NIGqwMpr1WoCVQ1k6jQ1jrPbEwNpxRuJ0AH2D6WzPvrN4LKmudgSufrH-44Krm7t7XyO92nZCXqnTUI5MaDc8kSkmOTbVwtA4QyttdE0WxzZZVc5X0o92ZCovhp0cb0VbU78b48QCdBPyroHCetEf1tb61GJ-uK8mCjNUSdK5LT-0n8k1cwO9WaBYXZ-GHnzxzCmZBFkBMlZfMzv2M\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67da77d18c7c77-64174982','','','2025-03-19 07:53:04','2025-03-19 07:53:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42693',0,'cd-form-entry','',0),(42694,0,'2025-03-19 10:48:01','2025-03-19 10:48:01','{\"firstname\":\"Ellie\",\"lastname\":\"Test\",\"email\":\"ellietestingemail@maildrop.cc\",\"contactnumber\":\"01275638984\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA761GoyUWkD3oan0j5yXYQQSKoOsWIN-xNs7fdl4WtV_iwXdwteEBwOYIvROBc0OmIUuFN2sUfOV-Fx_hS7ssY6BNsNVeYSUi8PvzXGWcn_WiqPK8CPGf_AUr1SG2DaAKjXWOwl12l4fJbfnreg67nVdMLZeLE2xSgV8yAu7drRt3R_eCqYbC3IdYKEyc09l483T3VvEujHucWaJXpLj2bBPRzSD43r857Y5UZW8tzkuLle-s16GqljsHpalbmIiiIQQGW3sAheBV8TLJeTwrkFBVCVPf6GkVRu0eP2-cSPB6kXdH9sbeXKmBNtKHXJ2UFkB6b145P8jRGWb9N932w3DgzGbSc5fw0zkA-3p0Q6IazcpBXQ3LFuM3FEFfacuHqiYwB1lNeftPP-5tLW1EKc_Khqv3YtLT5z8yyQoG2EZEstcPflYCMiMDKhYY9PZOKOIifpvA8ELrGLJw-GQFNr-hkB3i6Jsrrwiy-9UxoRpPixeFD2Gyp5_HS_3uiN3EP_t7hPbgzkUrykcIH8xhysYpOD2IVRY86DS2yoAEmTpg6qu3UxZl5g5JT3c0_3NOmhtj2rSfH4Y4SSTEAHlXpAeHZ-dEYXFNCYhBsPlSXiJ5rnKSP2KAQM8-4nBFc0rhepql1EsU5GZftGnjbLYXgMzofnztShXFv40WwviOJ8HKxEqU_lXblrLsBK3BmG3ku2jxXwUnHNk1eq9Is9WnPDA58EFTydDGv-WVvfamJho79cO7h0DthnDl_ShcsDhIGTgt0RnK-jHPw3P_hAQQHvGIAGA9p1T7olp8-okk45LtRkn6pZ8T-63zZD5Cv-3eC-WkrnWweu9oxUWC2j0J6eEO3CoFeu-SloCrvom5uxM8Gn9IGwk_BsZIti07VWkD2odND78mmU2RBlNGkC9dHpkemoX7zCwJDUW84uAv9j_ih6AeEc3N_kV38FmL10n2NL9PsoWl3ufdxAvfOsvoKlVLh5BGrgL5PqaZ3Oj-vyfoVXZZkmXqDPcXWN4xQD62ryylKINfBgKR3cNPtGqOta9Hz4dNOuqjft9sCgKzOqeKQQnyw6BB6hPlqrSeU1yRD1WTSH_TlQIdhlC2xUMw5WRLXswRwsDQdliyj8KC_rkhKC8bSMSRBD0bjnqraNsYDNFsIbp2XaieMBXKIJ-BneYneqCbGNhtqYTWZ6W6fvmcjb83jKRZySbONoXlEddR3NRLzoQhg81L1Gkh0-bbvkK7XmDU5l_QI4VhPZRboU19nD4akyE7-yfaCOC0LU4UP8yDtk4D05LCOPqet8xTUaKKsI8Mzu1bbJvSfnRa6k3vTQ4VL7VUbg4jzkfJA-5OS53G6R8PHemZbmRpXTQwFxD6vGr9t2cfq8nkQMrFwnN8ND7lQwBec-iIAjJnWPKt9w3vI5jRCXkRiVA_f0_a590kFLJ-uXjDzNRgaA_IYWef5GRtnQBXORI29EcmNKQgbyqYtrI3J-xeO3Iz4odcpWBZIZtaAC-2dRNph7IlMMCYVdOL8JJdHcLPOmLYY7_8hw2Qw5_7mJdfXtb2ddpnxZbQauUdTJJ6RQArZDuUS5WlSezbXEVfLHYlnikt_OHc4pk4FXEE_oyfNxtqeV1mnUIAQT0dz_rvZCX6XMf8EUb83yP5kKLEQtcDq_w6UZ5OFZChH7Svpj2TvvfGelFMPT-LSdHhp7h1OqWroZgd-5WZaEO2-VuIf5VqD3i_OTdeLEQhmfACtpS_tblCEFjjc6yIoyF2IgCcMqhIbD-xRsI82kT6X2JmAWSd0XIQ683iSj0zogDpnVPihG_AAB0PSZzJCsX-7XNRi8yLKSKMXmwswLnfMi9tLS_eLfYLj9etmvp99spr2hi8pqCZ0Jux8ZiZucXlrB_dOOU0Fh0zRz8XjvzWxWnHC5Ty_ZT020dqoWUnbh2EUFFwOqY-zKjKCjHj-IsoABec_cmMm8_iymH1I9ZjP9aMD0JqtFIpu79qkqiOjrDefkt8liIsjNsBMfgmP5to8qRa3dp-z0R0R-MojbAso\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67daa0d2f2ea36-96859469','','','2025-03-19 10:48:01','2025-03-19 10:48:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42694',0,'cd-form-entry','',0),(42695,0,'2025-03-19 11:11:18','2025-03-19 11:11:18','{\"firstname\":\"Eleanor\",\"lastname\":\"Testing\",\"email\":\"ellie.l.preston@gmail.com\",\"contactnumber\":\"01263947209\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4C_s_S_zp9SKBDVuqnNY5z7Wo5CFGyDdgdaj_pPWR1sSGIecIn1qAA4M7Gk6g1SBVJXHKswKdO7thVURpq0tDuaf5cSnA7asBLivrUnVyQ4vWAl1j3XNfdfMaa7leNzR-ZQ9EdIxG_KeQu0trcte9y1arnJVDU_0iMbfRQWhvPgg2-UydIF1pPDEU3jNSP3xFhTb0QBQGN60_YAflYEnee35SXtC8jWfi5IoWnzJfymqrz9m9rABk7Us26UUXZ0XeRhLaNj7D2Ch3j-AJzoZiJKjGcWQzbxQhTbuTosLfIxl8EOSQrlEE9Q-btc64ewBhac4QLlaeFnPvY_s1V_xCSojIMXm3OxpLKBsqVnUZ6IPTiDQyaFzkCFbasLlFR08woeoKBMel_57bgnbJRC838bGsiDbTMUxKfy9kzwzXjKqAqrrjyg1Q5LqwUEaBZVZQOp3GjRCdD1oUD_4fK0USQmNIl0lpD0Z2CERilcJMvry6uFwse19_sSKcMT-zlsc6sa60z-nRYib6dA-pko6CaScm5b0c9F48BEYq3ILgULJdS_11ZC5ilGOB4s2ZB9bDnT5mdKE9uyadHWj2sg7aRBtjUk2Snpqp5GJ0DTSF9Vw1EsN0EDK0-6GTu_1VXmQtBt-5l1LtGNvtrDFwLcCYKcjUvnwEWp_wOa2S9ctMM9qTyKnV1FO2h_J55A4kquwZdtFiKl96XXGVSnP3HzIievmQMGEcrF3dB8Sxh7c-dZKm01vmZW39yrGzkCYHZotQJ6uBqsqX-CUuUtp6zB5vh22HTfGzvkF17YsAUJ8SZPU2IDs5_IU7kIpNlXtdqSvzclvMuQEBJXR-FbVz41Ft8rAu_OUKpbFJQ8cgur66Nl7CXRh2v-EN0cxScIfaQr1ZX1ea8BH-9jUt3u-ChsmX_xLG8nXZdW42k7DdN9ZXGWIqXK4ZjonheVwFhHnUB3l8b5QR3HuGDGCrVZcLogyGOCN92xSPsURyDrRdPzr3dM3T8bltuFbzUr1lQCf17fvbh3c0ZjX6t5n9mLYesyaQZL99ReEWDBKMFdcindnA8G1ALrLbXifcEP0tXBtChK0D5wpDh2X9Qun0ryk0NuXVpVkMkR-LNKEazjzKhX3ZElcYki-iEav-wb2dny5-WJZ_rkNky8hKGlr9m-5S3LEz9ncKkIaZhRUyDmbJ1ZBXA3K3Vhac6CJ2_M-NiHoukMo_5UlEPx_veYOhYCum6ikLPWZpfLlwmg-3huHFuLdRtx7kxijU_SXUkXxTcibD0mPjAdR2V4J8Ll4sgRPerO1qZH_MpBgk8CcZf_M_UY7JYYphSDeSS45OoXucs0wp62zzjnhQe_79kVIWIKH8yzB_N--HKcQYZ07tJMGgCXIdXCP1F9VS6v7HpuxGlEk-PiPKAOylwIrP4lDe_P60OhM0F-NrC63cHyWecvAuWxhRET-U-DNR8ExRrJhOMihiTfDidKEvCgrwr0sKsRcOA_ZYnNakRckr_RcSapVQejAi7sCP19KqecCjCWvUOSrau0UMNidD3xqD_ak5SjIYXB687wukxDgS2JE-ipPmwesgpCeJAdUXaqGIjiRRuesYV8_MnwxYZ6HrOUM_MwusbQRX7x-k6SwowU6Fwzu-n-40z-pTBne6CTTYu9H5swaLccFWoV7drtHnbyGA32zKLwX-4iZ6YSm4RPnsM_uIdq7WuCUCuZ5M3lUVWLM5GJcyZ_bpf4CHSCarg3ItfbDC04E5JjEf3GcyBXY0hAtUdQn64tyTHEXr1hv5EsgFSJ5NtBYhOT9aDHtgBp2f-z3ik7pY9uKHNgULZreZKG8P-IHsi1Bi-k80gOdkuTBuHzwIqb9krGVjSIIY97Aqv9WhvpWD8S11jhYVWOCGqj9_yB0Qw6LPBhnYGcJJkukwozU3omcRvzri5X_kj-fcDWQZasC8_W0wB_MbmkS6e2Z84INccbEfXaJaJwcmuNZtscVVfrqHVIIlI6hj4Jj5ZByPYyc_wBzXIhGd1ZFrOoAVkb30PJ09VVGvxiVpkNW3d__d9dYyXESI2\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67daa31fb12739-02399746','','','2025-03-19 11:11:18','2025-03-19 11:11:18','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42695',0,'cd-form-entry','',0),(42696,0,'2025-03-19 11:34:33','0000-00-00 00:00:00','{\"firstname\":\"Ellie\",\"lastname\":\"Tester\",\"email\":\"craziele@live.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6YtDX4teLFKCEdaAitxGkCVupo-z6grCOwBV3En3G_UNDHmLm9NBNnY4ephEcSNzk7rBgGWzNeAT8XJKqXjkl68bb4VRwAxTpTuDbJZ8bgWKL1RHrBQyExChs9JLvviVmmF1xi7FCByKraJIJbYUU8cGBwS_4076Bjc7ZvkGwKbPNUnk_12yTZOvr2t4IQHikhQz2px1BDN7ieQ7etV4-NLwdU7MCltacjzZ2TeNNI2_s4qtmHKKz7MPAPIAx2rRYCnp2n1PJBskO5eoPkiNJVfvBvYRmu1lHxq1PXXA5faxsyAA9BE1ZTEkaj4urJveSeuzS31nwK32H9uk1c9soXCQCgGoUBb8abWte2OGwc10WaP3MKEQsULjJE3lWA8IOzCwWRh9ptrBqFBfVN2nunLNxYhBIXCzWnDqHGv_eqPlSB0v5ZVZcl3eGPJaBBjwwaFIztNoCOWGMvgOlGgeezJXNd0IDbEVpxBlq5K4tiwM-WC5vXnR42FLA2LpIIa7MLfwMXsDytHHHRX1jjzqcsX8EH3j9nuCtQa1cNijjy_xr2jqdwzChvVEyHbZUIONsb6p3_21XHQ-4WKnvr-Wk_O2MYlmH1801PO05Mv6pXTE72cG23bOQ8kzwH7n1lsMe_4FT5pAseLSVqbUU2JaROBzP0T9PC3D3SmwrDePvpgBkPUmVRvTlyYEs3AfCo-yVxBFww_LXGFIDXm6nyv8YVdzypuKwNzVHKaCFshxm3BF8OXD19j5KkoJA_jhNkkHlHUNHO8bgLVwc4UQBX8zB_MXeyCcNIa78JcIgHkTRc5DedMsS86fN2rYwaXGND9de9-NkYAJRv9rb6gp95wC3tjSPakWHWz2rHSmxQBiR72CNPmWCbSLridyPWL78UhhjfYkzN7zQyqj8-LiuXXgoELKbCvol_nS-ZkaXuAYqnLJul4TygfGwRBiBVCFS69qAV_unI-eEC6V6VmEPYxsW6EJzzM_Yfcd1npGbP3f-P0ubFm-OcbE8vkjIWfYexP0yLw1wi6I6O2nLg6ZUj8ARYk-XArI6mAlX-RqJBJJEAueZyY4yn9Ucuwa5SRqbxAsgG4f-MupTlHzFEWNtYvmD0AGOfCHz5yaUoOMEhyG7Pe0u__V8-HZWOxz6OyH5ErlS97YT6PuhUo_ConEQ-7vixFFZ_2Tszdxu5zO6sWG8X35hREw6wQ0l0vrPaxDnFob95cfDCduOxqRq3L0L1ZZOJcmhXePJnkXxvRCnu9N2ZLVbLZaZt4ubSu28TZOIEhk2zP5UrXoz-APY6U0yruGEf2xatL6Gkk9dmYatf1EKpwfTaKw_CiSFquvWqfTLshhSk47PgE2eAt3ulGRu2uo6SpeuuIH41eb4WeDZJQcSqLmBNa3AtwEUFONGeTv2tRp0_18huHSNRmoyClDChq1YWWNHXFKu7Cy431WzpMvVKELL_g34gb-4r0-q2okxvoMiuwhHw7mBtNkTvM_IIinNCwMEBRuy6LjdXVG31yceEXQmpBKESiUaNbDCKMmHcXgSylWFVAVv9Txe7mNb7Fubp0jANROYd2zEGr4409SfpfnPPYI8PX3uKquXeIr2bInanQ9ZSLLcXNhbgKXxZX-X5j9DE3_HRkUNBCJYOfGr1Fry4QnvfWd3e4F_AFWuRlUWv-VtRMCL5vX0wJ1Rprj-T6pFAmXU6mG_DmpvOhXrvJc_PNNUtCTZna0mt_a3Rxne7pBxk24eo1-Ie33EnmhF4BWFsqojtlYymCJxHQMAjZSQ7gOUoqjNkSG5PrKLr706fmrXFfZQzja3xTtjpD-U1v3DRma39cPnmmnransDF0zbq0pFPlZLHJacCZr57nDS4EJBuIehxFZRXMMHiYXWnWiwn5vU9las9qrmaUVcGZIP-5bNp1Oyim3iZ97h76yytvdsOBu5WuxEbNWFvOsHKrCv9LpxLWkpCNNv-oJemWDpeRI9tVQJzCQ5-52A3Ofco6QOEKJZ7fxJtH7Xn_iKuWBpflzii1KRz0b-RCQrUiAqa0AI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67daabc9dc1268-11997211','','','2025-03-19 11:34:33','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42696',0,'cd-form-entry','',0),(42697,0,'2025-03-19 11:42:41','2025-03-19 11:42:41','{\"firstname\":\"Tom\",\"lastname\":\"Test\",\"email\":\"tom.phillips@futurefit.co.uk\",\"contactnumber\":\"09235182345\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6O99ClID_1yuZQeH4TvbWi5t8imSJs1UA7enQ2_GaBrclpLnyc2vK710ybI47jSvdBYkXqcysfuLtU8TCt-oi1XgojHlib2teys6mMAveOa-Jsa1GLxACdoAe7r6kokmt3_DeTCiI26Jl01vKtkW9fR3WeDM6pcZTu3xHzPPOrBc1GL3P_ycU8xxJIE_NbWkI_e5kdF_Dr934hcZxe2sxrm1OubZ472Hg7iDSFrWCs8mjSRBTXWSiPiV2ccmAh3JBGjElKEfR3utg2f433lIYyfQEpc6kmvT2Jpbt0-G9BlcSIkWlTw7u8Jl3aEPKcr7907TJ7jguSzwGo272kgnqKbXdwdaBqwshcLfnbVg9m0IHUWwz0uGV1i7O_-6S16yOLwwigZ0WBaDjEurRcU53N4EwOW8xk1FtWc9__2eBMEjvSkYAtVtqzkN7iDPHpFmJ3C-i7ZVvYB9SEbXhOM5oSCsrq85ssI_8WECyt2t-hfaXIUAiLT3Dg_9eGsSW8c6ZD0WTtRCoiAnPGuV_GDlrM4vhq0lBjZyhRVeQwkSmCeX5_9aSOqJNEq2YkUQDvghUgsoVDHMxagi9ZMD7hrtx5qI109b-3wAMsCj6VceXTbha1QWIRzUmv3wFMcCztJ_mkLm6h3mzSilhEyx9s4BmqRPKJ-yItY0z2t7WHp6LUgIYVPJcTDH-Ue7U3FEgMLcScm56fDbxW3RiYvoY98LORF2MddV64pESUq3hfwdVHGGK2Jp1pnULb-CJRK5iyHdpsyQyVRF9iKI-ZrdWKYqv9Y-cpxwKghqaVBCbIcRm6Cc8cZrq9IHiLdgI-yf8aDvmaZ-Ee-BscDb8Brr6YhCJcPJYBcFr7ZSgMGyHUC_JmDwkGx7moHBbqYLPs2c-STUxL5xmuqiJ2jaBoIypb1SwrzqFcU2aRZTLcGKYPfP8f2A_2tnI_6WZIW9OZWnbwpZXZOCjfB5b7yS5XSu2N1zFW_pW0UXf_VG8Vl19jlDzAYtbkfkmLN0Gd5Y3AxFSJ4n_pM6wOSxxxFVpN3nAVDlrYdjR7kIOuIsNvX5TjA998VIl1D_zZX9YEpmZG4IKBV6iIugboaDSPY-Hy5XIjGYxGZXxiUEDSNBUz7wEmUMyVRUs_T16Gj901kXM0-jMlbOaiLDPnuMS49TSb1qJeg8EGy3ydqDs2sjoklQlwICm3kPjetXQFOdy7XTX2h5jE10Ih8XkR84MHq-OAaNY-RzMyBnxmX5hSJvF53S6JCmxuiX-YUOnwvMW5X75K0xG92K1au35wEP3VIfv5d6UI2XeAkrfGScTsRbjpC40Zx9tYipGYa0i9dS_Ho5b-Pm4fGPVePjKv4fk3nKqpNzSvVLr7KIC5b_jL5CsPJB0hPvINSzGaVeuqudYlMwn3MEnAgjjDCsURBHoYfvwPij4pAPVThkLoW5xwYtdb0dIq5djcCvQNw6mkxtXk5zQExoX0YHpnRBc7mO1u4vWocPcvUEEbwAKrWAoMHPA6wzXZ_jQw67l20wxa4IX7dA6YuAFy0cCWv5lP63jiaRyJLlMV1li2EwC5szcMJoxipFKPSIF3ct9Y3fmysUJZiipF5FZS1F0H4IK1rNK_94M_u74UTS6E-4fT9Sh_C0Q8mUoOlJg5nA_HUonxNwh6PomWSbzl8bbcYTNh09bLuLdKlkxk3BgV0ZR5kw33Bhf72_3asHI7SLECasStLqZScVRn2GwstizxydVDrJixjtiFcWcvp0zQ9eEaoAzOnATgiW9JIGBpPqDOcHC2snVupZYplOsbp7Swz0PCnTTtuLoZtQRueKvI3ZdHCDGAG2lnk6wkD99iF00cdwd0r_JHT3n2ERmzzkWELWVIwLPIs8QHxav6drNGCVKNJJPjujUcz77Gt7Vp-RpGS91R3dHnm2J6gxOWI3KCb-ZxpZCyn809_JlxvhcMrOTCqU8Su3FzksFM8yrD5fWwc4OsfrQK1K6FVgMxZgBqMEzLE-KU-ZmCxVmFwjxkqmwLWfkyqckPiQjSnVG3zWlGTSg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67daad9c74edf9-06869900','','','2025-03-19 11:42:41','2025-03-19 11:42:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42697',0,'cd-form-entry','',0),(42698,0,'2025-03-19 13:03:25','2025-03-19 13:03:25','{\"firstname\":\"diane\",\"lastname\":\"nicholl\",\"email\":\"diane.nicholl@icloud.com\",\"contactnumber\":\"07984857857\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw1um-BhDtARIsABjU5x7d-qucaKQzbF16OV-yUQVw95hbuyUxpZw5Pcjg0HfjtB0Q0GOcnkcaAjSDEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7Uzwg8qOmfaOnntBHMrHTzdJKivtnRu8OKldZTIj73rAGnmownV22aPWumJOWMHWBjJ3D4sQygPduQ7wUKRxYzNVmpkiAAPtsggiQdGKwbq9CXuIOHgxeRbxkeHf-HM9JzquHw4RlGHduNWlz8FX6R-Kp6rdbzBSaZzbbddxGKZaMKd7Iv0lp7CUOPWkKqU6d3MSY6ygEUn9lI6Z1MgMY0cRc_i7-M4feNnChdi1brhVswXfd0oNMe3Vyap03jZ49MToyq2qeq1xyuNl6lXT0gowGHGGcFNDdVIqCjBL_zbEu4ivnm-y4TW9a4G3lUtrkSY-KCCGfbh3UyuDlQP6OeMJacSBX5NCXVGZbXKFRfebRZvAPSKxTFImJQh8NhlryF6aeG9LgPxwAEYDf7AE0dJRmJpphoLUAXGpsym1Bao5oJofhfmaCJ0TYrtqehdtX-2uecc1juuo1iQNadfM_gEP9-UZD62iK1-jUuvCTQ0210DFYfpO7gy0LY7lXd2-XKVoc_Bsup6QnAUPLcyaEcHc1z7vsmPSojdHbycctF17Y8monPnbbQLnogt2YPElfqLKBqK80osXMVlCZIIwcgtdOAgO2pkUn3ZhXtboC3oxdr-NIjW_Vp_pnl0coDAQslCeIdaFJFHnfmgVSTPMefuXOFMyvXNoy-DrN8M5d9-tDXaYu8wxAiYZ_LGfSSMkzIDYM8IEa-On4fQBUANdO-JSXDnP3q_iPTRC-eMC7tbn8dITr-UOfoU2jeANdhRT6mnIs1LLvzUGZhNbk6bwGOR1b3nJL8FUP0ICBieUAy-qXioc5-gN7AdYXYqDWc3RdB1TzMGmTN4jarNbJkhLr5EbSFppmp08P_4r2O3vR7oFXTHIXpk5CoQXSEFyP1-c1PDaWbRy_pCzV5jwkBvPQB_-1yD9Fef6jwkt_832ZPCM-0MukpTXJkRRr4YF8HKkRSe-Uh7JOqub5g4EQfxaS-CGRL67YHc1xXxSLTV9ZWOV0UytqqESXYQHdQnFzZFceBhFxVedrXyqwrlIWN_bpeK6e-3ugv4eQ41tWrbEOwuLNblRS7UtmXaNDl4fY6USHkRdnXwm2E8dsEBxdX-t1GPpAQN1Dv_2OgJIuCjb4yJmOQv50Dkep9JTAVQ5u-op-r_bKLUzaJFc06EETm9b3BY6Esew4ViXe-ne_UfdLlQW1u8Dymt27_1DROldNU6aEIoq6XJV1ptTnbU_flbCMexq24hzSVmZqyqNjXvyprvAenGhBBUiG7ioeK7UgE6DNGTrZOcAMc6FqqpukI8d1z-kNL-sXTmhagMxidVestMl-Rb_epRjg1GlPgwAWZ75dKGcA2Nan_Fwlmi4SDD6yFWsqo0p1rD-VDAurciYDd8RFGF-uxLLrwb-E89T9O9HSMB3ZJvTBY_AHLoHKfkfNKnuklBqIvc6PBRs0G_R0y1CguXV697ysrv1IeWUXI7prZP33PpX4NminxPc0IIX8t9Gc3ayoGJWBdAxJB5KcGkm7yUp7eFRQdfr-rAuQ3seJH63k0IfsXVB_3O27QpuYyCzuAlp3yxjVTHFKredKjsYkpfdF6M3AhlbvWLxkdVB1Ec3EN-glr1UA2fCO2fS9jJ7ry2tW1fsC2V4mHxXAeXd4qDyXA9YxNI_bwGlIoNliUmDZ8tKcldSIhhb7qnQXnK99aDiG6d6yiA0a9GtPFqfmh2eGsQiiIuIFMPARFBn3FhOBS0KT4tcGpwd0DelbA92r25y1e5WXE_gdxnq4_z65uVk8Gj3_HT0fbA4fOawL-ZslLgzsLO8RjctZmzeDsJ14qC4UidOeXnBbG3J9znXMJgo9q3v0tBbfj_ZXMlztZmD5ECo1XEhGnyPCLkXR9GWpOFqeA5bRnRvb3DD-s1BBiuVd5QHvRsX20IiioOnHi_qmK3K1TB4rOR_YsPbeizdlTbClQH3P4AZzvXZw9nv9tbMu31TqO-Jl3ElP_YT40lisHftaUYNzHPGoBZIf99j2NAQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67dac08a3b2af1-28553438','','','2025-03-19 13:03:25','2025-03-19 13:03:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42698',0,'cd-form-entry','',0),(42699,0,'2025-03-19 13:06:23','0000-00-00 00:00:00','{\"email\":\"diane.nicholl@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"SW4 0HD\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw1um-BhDtARIsABjU5x7d-qucaKQzbF16OV-yUQVw95hbuyUxpZw5Pcjg0HfjtB0Q0GOcnkcaAjSDEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4tMH--z9LdgIkTq4FKkP8SGjQDLB0AKuvIbn3HfLfZxbp_Q1OdZoTwdXu8Edmo7ocgLttLhaBwvRvt2oVIzADJYaKBEgWF86bS--txrDzG3N94JwOs1no0sI_VBqRMNtM0992AAgBizqK-Cu396mx0TpYJnvKEXlJyWq1EyQVcgPoooMaAzEc1lZbjajMPxWeo2uOn2DvV8j_YbcDDx5-61ohJDryI65dek5FbCDe2kIenkMoF1vukrcQFpcC-QaEsAv8QoFOMusbBiLuAY4ho2POkePAY5d_RroN6sZsghoMDjXu5vxvthB2NWyFqmGN1WFM0pRJwPG4Z0edYsyMSLtLwVIVRZZW7INZf_u0zHEQkz9vLV3ygoSJkQVOKyfccO9AFBDLnsZpH_Ld3BF6wqDKggeYIvdM_OI_N7-ckKNlmbdnzsHNurKsSPiY7AuLbRlAdNHtaFMmrIkO3_95B_bIC1NIWnC8zlk707qC4OCFU5o4QqnAzr35O8CYs1QIOE_1OoaScPxGpqdDAS_VMaa8qqETMTWAYgJHDnwuz9razJFFATOJS7kaK14TAVGQqMQeS30FrovDLwP18frH8LdIQulP8mdm4jqIiKzZln2dYLhJZEkpYrco6bFslXSYSk2OQwM57iMfOXPenBybhmqwlZQab-1AzLwKGIcp14TuHrHmAh2JUc8sa9lpHdPBpxd_2ZbQ60TJrS4tBaZqasN-vLIOBIY7Md8hyCDVe_vfvmtCvN42xoMoTTBf7jt4IuZ1kz0Uj7Sgl3B1Roi98sJvqPKAI3Q97ANHs8rSPbER-Z_17iYUMgJGxw-ZD8rLlUfoU_tQ-GXMhA1cp0R-06NODAwt8UY5oqoAZKozbMEi5AAOhh00uyDtWYnPreMPFcCM6UAqO2lNY-Yls4fxSazy75Agm4LwlA861zz-V3wH9Jm4eINIyFMu_cuMwCPVWRmQDpbP5jLS2sVsuNavP3hC5qTtOMH1e4Jnc7K-NqIBILrG-eg-7sdtFdLy6TfeA73oPIk2XP6gVSDCgyOBwQZxUTWddfLt99siRW61dNczsuH7mcDx9flJlHv3uwgP2rv7erLgZW56mZeYbW77mLNLjTN5_tIIIm1qserN5X6HKisATpOJoX7MJvVi4KkHKRdf4GzTkO9kTLGnSVsil3Rb-VS-HnyLz5yetp89g8POHpnJx9uNA6Sij-1HJ5dHk9Y_AlwWfaHsZi-b7R63hDWFM77sM52u6YiGRNdx4BBdBgdoV7isOy9mKRIQCUn2nbI8X7-g94LSEkxrF7Hk0VhtsDxVLd5jtlxWXxwFP7z87_9hjvcD2Yyn97MxM68x85ntVkTxb8D5uctW7CEYJM4ZadNOelP-I79oR40YwdB-_Nv_3T499ivBVu44fd1FGpBc2TVJ-85jWsvLj0uib_RGzKgWTeg2qnhVHlLVvSKiTxC8pXwSJJLDsgD6PZU5k1g-_aBW_4_V5FNMnqsCfUxz3dsg9pC1XyQBCT2DNRXtkurGqtIy9ANM0NziAjNoL4HJGJ_YSMfiv5lztpipUc5powTuggswjZXMIrD8LHoeZPA9Tu0jo3PWJrij4AwdLF--SVfJjOBjx9VCvWMEwpvRpmD48JmnhzvQZtJgo3k_7wZ8EmS-eQv_V6xJwkX03jHLvS-p3QWBj0BJgL71aCcJVeyYfMJYiCV5AIwmJ0h3UTjMbntWD-qvKs1__ZImLw3hSfXnZ0fEVE1TPqZ7eccIijDlb2uAr-gFsiY6ghwrM9obKfGgtKf-Niyq8dG0IZ4P05hIiPLGCYHFGO47KSBu-or9oS92Dm0z7Vxj9dZUtwdggfZa_6OA_khEORby-tREglVFh4Dkr2Z7rP9YoMgXtQZ702lpMW9ZMFsDcarhZUcOkfMwU6EeB3dttRHKs0jjqEeaOeE7QhxnDruq6DGU_0OLZdKJAupyr4jWhPvm-M6gUoLPVBUYMvL1bWXBXB2skpzOpc3W82UousNX4Ws110H63NFoC9R8ENwyj6CAx0mY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67dac12c573634-09175281','','','2025-03-19 13:06:23','2025-03-19 13:06:23','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42699',0,'cd-form-entry','',0),(42700,0,'2025-03-19 23:36:32','2025-03-19 23:36:32','{\"firstname\":\"Timea\",\"lastname\":\"Juhasz\",\"email\":\"juhasztimeaa@gmail.com\",\"contactnumber\":\"06202858813\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw1um-BhDtARIsABjU5x4xoToCL5KPpZzJekViCNe0FPzoqiageFM0cdUSTkWl6Z0rk6kl2FAaAmBFEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4L_XXR6cqs9AGIm6zn1a3VshfM4twNTUqWE63NBfNSJa6lP_Qs-gLzrum8ai2qApDBtpp5CvitxWfHCJZ0jiDpxBnugvMysFWEOfNYg5ON_oqug1Otas1wYGu8xZ3rOQQ0-z1L98IZ8QsDZFlxcDHmdoJxWgnHaOFJmznHU2wDAWDAtzqMsB3GKN5XtIO1eAJAHdmj4SMEsT5axRuuYQkpl7W5SoiyMVQTbCc6urI_-_GSaq2lhRKro8ZgtgianBvzcIquk28-GVg4i91EzoR18VNIx__gWlta31lGGeiUuRXm8E1mEZO4OXldcXrtFkHmw6U1HLAq3gEomIF2zWMJJSB4HzaNH9NDnXORnRCHdIP_sTLQQDjzNkhAipg0mLkhYF87taO6CNNyQNDRhZZ60PgHos9TMM9pijcQobgib3r8yyT3U65NCMmO2fRJygk06PKKl0m5TFP-rwIs5G3kEG_BrAFFUDQHGM2GissWrQE7LKZBZCw_B2iUMCALH1vIOBwAOZrwdxTF7cmrnFlIdsW25VDGqyU9Qv_V05sGMgHSbsl_pW4Z0IrDzfX_40zaix7ssXHZqLluZhHs8wOnNe2RbADVwcG1mu72x36SLnNd-6ymUeb7hLhvAeLKgKagXeGoZIUxSGjgJOdWmgvWU1YrtfsMTOSD8-PBGVhtp5MQ_MfLc0ctcBjhl-R6jaA8mJY-8ZFfNzSNmwYwqv3cN8s4Wf3uDR2z9jcIjDSj9W-3KRZ3Q1syZcPyIsoeDdFL87_cLhex7gdjVWe9yQUun2UznFc-S3CEJapGk8YUpKa2_ZjM-BfuA0NvGLd2MEDtLiP-K7uSkrZu_hLJdbvIicfv_ydiIYFSU7i_em0aonWvlbxoSwYwwdOBQVq34w2qdiGDwCVmWnG63X2MxAEOXe1Z__TVXO-lbHPB-Tv-qTgR3MWjD32A_450tMgtEWXbsGCKBdTv5A21mD6QpeM76ydZ0V8o5S43PBXCMMIWFOgu9HXluTJXdc3K0giYlbzSXAVt1E8lNLNxBktvlvhcixdYMUuRV32aCUH2cSkvruk1H9fCI99-dgLfqals9_4WZ_ULXF0hLK8e3j_iagBe8yu_CXTzPs-dPbXUhOaSd8w1tv6JGL3nhoR3rzSMyo62-SNNIKfm6JhK75idmcgVM7pWLAcBDCKVDGp0LZXQ07WmGdeODlmD_IlwQP2kETtFz_yKWkV10uRcKtImV0wW9WBvSdPJyaTzIEekKrkiTC69bqyrwXyWxsXvJIzqanN_JPKqzofP8-SY2XwxMJhsZYy4y-Bqt_XEgum20u9Q7TGjPDIcD07m32MCS7wFg05-7pwg5PlaqYmkCQlyuOjmuJmOw4YUTG_b7yvaBvEoJzi7Gw59wvcIDdxRs6scLL8ypCHFW9HC6EMtRia1jiEQp23jSpINyir5fIEgqSJTH1g3kQekmz7R3NzIjolMJKOiEdKkIDmW6AFd1SdhpbYTQ-DRF-P8BqVWuGLi3M0QZ2JHqZjQfz1Mi04zwxUy6Fay1JkpeqO04szgZ6_EAhMlTnW-BRQpM1dsX9fwrPLnd_e31ih4H-bc5m-RQCRpaKA1GjyPd2d3riCzFRjmY6V2GBkLDLN1MtPphpJIZTAsr-6giNOY70TJlMU-aaf3bm_YUHLSw9syUtChTQhgKZpCINAEmhRzCKo_kKDxWmsaMaa5fc2sowG-5xkeC1hXygRI9AHSuq0mDADbfYYYN6fFC93T9PfsiGS3DWXcnbk7cxt4p11MzYn2yydwUMpBnHairEm7ZHStzsFXgUBciP9voR7qnrr8PAhlM43rUzgtBMLConO1cgATA9iSrkA9uhRxdoPjimp5aWCykxHtXWRift3EoJ-Qoi3g141rckvScj0FZpT7W6cPwtfSPpht79ykxLCDWxfw7CjnpFOn9UcEFz9vb8kH-CEkstgsp2n7wAu6JHH9BprDIWJNzC3U3RaZLLS5VcNfQuV3VS6SU9g9FzR8ZkxYEPY5RZedKQX4RZrAHhGikn1_2DlpshYo9mRsEUC69KyAD4sklpF08Z24D_gVt9E0gHEMUGGwmJetHNKCNKJiz_gtcZaWMRWGF85I7c0NXKsh_kESaTGccYv9-KuDT5-4inV0P-RjcieYpujjCCF9i35cxLgmi5w9RZWKV5Jo\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67db54e8967141-89032848','','','2025-03-19 23:36:32','2025-03-19 23:36:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42700',0,'cd-form-entry','',0),(42701,0,'2025-03-19 23:37:49','2025-03-19 23:37:49','{\"email\":\"juhasztimeaa@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"EN3 4FU\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw1um-BhDtARIsABjU5x4xoToCL5KPpZzJekViCNe0FPzoqiageFM0cdUSTkWl6Z0rk6kl2FAaAmBFEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5ib6XzBopAzh85Z5SzwXo7HCPsDXY5nyzMkIZEHs-MQeWPT7oagE7Wl-a4wqrAb1zRWJFhrYviR7f85rjhuBPh89EXVSUGIbDeZtZ_l9SCNr2QLOoMmhlsc4LrRAeH7Rsf9gRLYBAS8rD1jZmOmV4fMVzVn61R7ok1vd1kgySal10HxD32XIKLFyzsr_oyxTh-NWaBT1nAy81Ihsb40UTZovu9hwbGeNAwo9-gKIkruS1Ael4Td4MJRes3yb1cBCBzcDt0PSsP1ubsvTVW3C6zdylCN045pDUTOfLpVdkTPFlrP-mRsEQ9X_ICXDGmmj01W9v2QCKWaXIMJm9sHvBA7h6o4fDzBGE9PBCWnfrINslbVTa2So3G_D6I1IGisDol4a7vkBXNh5js3lZ-wZ7bdVsQincFkj0ASamp4I-b2ApnNkhzO_N_YuuvpCRQ-kGJqN3rKCT5Os9rANV4NPSTqMDTtsIBX1pCvvvbIBxwSPj3cKjZdOlUz3mu9zKRSBAlS9P40usElZ_0SxioipBBF6sSH6Z-QRuOK3Th7e55Ul-wH9LZXrxgKotZnjL2fh5J9KUcgNwvWzeHgk_t5aD1TpHXENZpwmYLmwlubP9NnU-akOjdI4e5teQmYfd8sPuK6KvUryiQ4d6dYXUHByFreP0_XrViDFdHpmICRzp1bv53_L-N1BvYCo7nGa3MKncUhfnEl9hKK-uSODWaCAOpquCNJi9mlVIQnRCXEIY7m2uQ_fIeKq5nL8BjZrA44J9sKlNkOsCS4Arz_w0xlJiGqQ7z1kCwO5eliovIJxKozBoLmXZS54D4h7uqkToP_BhS8qHkNrjOxPXwIam_8P_oOygmuAq2x2bc8RMfJb3EF5nptEf1qoApn82Y1uO5o7BavhZ55e8mepCH-IUElMQneVzSaudoCA8z6xG4P6-yA3ntHmZcuWAuYJ9UR0aJfYRdxASOFOLUWzkseQLG1ie1BOM52TpUuPqEJbqCcI_sXFzucLmI6MxAt1aujiQ7HWKmGoiea5d46wus_cNfOOrYA2L5tJhWlX4Vh_obj_2MbvvvvWDmMQ__FvHEd-6caKHR-A-fGTMoS0451b1nHmzxsBZepIMevrZSzsEbcByervcoSW0DEKeRM4UKfIpI9p4kWbvaR1UrrBbsp_9oY9L3x5Lmt1dt-q8pcG9yW8jDlXqmGhk2p7LZf7sFkBMMloBx5CfkBQ4p8FTN5Xhg0lifQcOiNETCdcoWJBdEkUI5EDnI7jzjAFmncvIjTyA4vAkxxFlUojr69GmGynQp0NwYDncjmWdZ6GV3FqPUo8m50cEV7GplWdL7khoV0N60KGy5ES29Hv3edHuLMAW41fWvQmXPINhqi8KP1PNbD3iRWX2h4lVfql6ePHaKF1agbXBUQOLmtYMLDs5ot4l20x-8HV9bT4CIS3HpfXIZM28K7l4RgjZwlvWSvH9ap4eTjNTAItPKT1zzo19UCqsE2XHbX1Jh5sM9UL9MIFn_cygEiW7AHR892LEUCZdGsXm1f2cQltYnn62ZGbtyniXKiQWXSeXfCcuVwNJzcwssNmjKLfrAdqvD4ZdbziI2qM2hCAbUA15DXD871NdoEqUyUo-gNZdtk8C-G8-BUpD3WCwPIYOBB7MjFvsF-KPd_l_EKTyQ9tZSMDp6zs0NvBEPicm28jN2AIkmArUYAOTAHO_BEOynIKktYspvO6MTh4J2MzvU5I6DEKvFmlm3IyD1uO4GNQvp2z0185Ay0QPUOw1JmGU21Sc3Vyc_vDl_Lu9DbJvq_GjuvU7oJEvX6a1i1b_PmAY3BZRQKyS_NvYfRNu4l2zmoXOdsNIJfFAwPZ1LX_pQFI1lvIl11z7hjxhhjJDKD2muk9kWjk7qRUdpmA48YQns-cfZ_jbiUVmisfnIXwvbbu1ZzRoO4K5u1czZSixXSyJZjgMjIGrc1ejzo0xIUan4ZHm8FIpBwLBFmMgRsAYC-zLjGuMvExzcoTPc0n3-Xg2RL8zM5JgtBEMA1UY1AMyX3QR5myhpYgsd7Eeqwva8G6uZ5dBQ3q1oHut2s_xy9GtUlZpikT3YQAsNC05v6KYtApnZCNz7BFkCh77Bwh_FA0dk6DiLgZHnQUoFLWY2VxgiepAGlhFXtck4XpaUh9xQ38A3k4zZtPSIilrLbEoqIpuB\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"11\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67db552e222220-64829516','','','2025-03-19 23:37:49','2025-03-19 23:37:49','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42701',0,'cd-form-entry','',0),(42702,0,'2025-03-20 07:12:30','2025-03-20 07:12:30','{\"firstname\":\"Reece\",\"lastname\":\"Bullinf\",\"email\":\"reecebulling98@gmail.com\",\"contactnumber\":\"07368285976\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sC6NeivZu8zWWvmbi5FqOLm&amp;gclid=Cj0KCQjw-e6-BhDmARIsAOxxlxVU12xV_RWKOjSAoXLOgCu8VJN5pO1-895lk69x-ER7icEpur0es-UaAhZ2EALw_wcB\",\"recaptcha_token\":\"03AFcWeA5oEGlsM_NvA0kqHwJQs9l33sgWucRbOkXGuEO2Gb_EWOIanDqMB52TfEGOadwPCZAuI4kujoDRvuvvYCZTNrtHJL6ZEQLtxRJodZgSMnoHG36CVtdg-4rwmTQhpVV8UxqimGcunKlqSZMPo_iAcoKbsu_RZSrlOBVTCyjhjzaZIRoF3qVo6zt7jSXWwz5Yw0DGFM0INhNqvW7Lb1czoXjd-yLkKd76FsXc15H6QV3DKlJB865pTLvqU29-vaRuH56i4QAZ_FrlaKYWYWNpx4qEIH_sVu5Tmb1ZR6oGcz53a_DToC67HfCnQi_EyE2K0cjQtIrM8rztwPA1OgeEyq37qrsttzB1hCXLNhwzQaF7XXN-8XfcpPHMY2NydG07gtuh8pXr8lqXp2zlc14BDRTvJmoWcsugITzi6PhZJSsS9ql7X7_ed0K3u-s3FTjTwNYs1Mn9h3yhxHkKSxUWXbWcEIBXS8cZHNiekIKY2dTyk4u3lnL-BK4Emtix4_Q5F1OcqQ9yULm-em653Lbgloq8CYJdsjqzzb1a0WcX6I0FcgrAFc8kivkWYm6J5AMr0OxAZ0jVeNY3MjHqCubkLbDfimBYXdN3mdmoTb3BZZ9qCfAsRa0W7Q9DRszXZ_X_uTy7igXtEBKcW_ymgIQnT-Wh_bble5d8IbTeKBvi4aKAcuRej6Aq7or3IYRxeTZI3mYZS6uMtEZyfOcyxTTmaILokk878YSrlj5Ev3pySJm9kEBAC6nSJFOyfADaoUHtkL63nErhk_RIkTwadVZSRS0VVEKeYThg7M1xAeh-6CbOYV2fovSo0mb6-iChHOjhrJiLz48tOxgI84Ku2tVuQv6x6mIc0xqF9fii_iCJbS0KWYSL3OHPJyTNhTuwiFyh--rDfHQ2Xdz87YBW_rfLnedVAlJQs4cYEsJiVrgMJiWpIHiYD4Uovb1HE95r-IkNjJXQz6_PcEFqU1bkW6Ymxk0FN3SPEECleZ3dqn1oRHY9crmiZ7ofbNdnL_BUXPREXujITe_3EYrPz9O_RKOfd9t90xUiSDT7g9_WEC1o1fKGmzCnYjoSOhPhe4Z6cet9tdwX4yI2xBgrEb2R3VjnMO5t49b74JLH9xzlfx44ovGr7fQY-bE40F9QqA0W_-70e86U5r3YGcZFI_gMMrdFOR66u4OJzUHJICWLkK3NqVnqde4r2N39oIL6WzjKhXZX-47P0reVz1HHLIXumU_gxdYgfyZIFUB6jLFYZTvG7ngCF9q6Dy80yrzCozCFKoJ27rc6drjiyeQNVilAivf5FKjHZOs1Cm-q_F0oqrgdjF1stpyKWHbEzFPRaLnOdYk7CYrRBaewpwV6LTTzMpR5ZZWBMF-aR3walyd2ZTNo5NjhKHyldpcEswdFkL828ZPRuRA3sJiIKTV2cZkal3fw_OygMkz-gCJTR4z3eW-OIxzXEZj8hEgupGeNo_7CD-_ZXMIfo6G-6GVhO92S75UBOzkcAY6RpjPBaURSKQDBhEP8hXAz3sz9bHetFy9PBpU0YkI0xMHTKi1Jv3vgvlIvlNsBrU5ZgJ7akUf8AFMPIEeJaww9DjXRJlcTl9BqhZ9VfavgS8zQdkvSwdrSqHr7N-Yxzht_BfVpI_MEWrqpU4jYsQr8-NIQKxuNe73q8a0rmeE5oC8HI_dF2bcb9vp35R6E_x-LrJqgolrkWJ2kq5VFgRyNGrxtd0wJ_cFJt5uBzAs01NBhyA13llr59unUj11p0mrv2JdcaIZg2WyqrNL3nzaB8Folk1fA_q0OSK8Sau1gLU_p5fYhphowt35sQgQxXO9NNoIYYXJDDfNCbV0a7yFEsQnlyuQBINg06LZrsC7IfvykoJjV7qpBmKGJ1kVQKjVR6kXuyq-y37CmKYKkYNx-LRjqszPExBI8p5PWqkHyRTPe36dvA4eGpEL47PAFEpvC-RR3m2zi3UCpSmjIq6d3i-n3Efh3A3ieYIGRRT5NQlzeeR5dmZN_pNnd2cvj9g6lwagRd2qxJ9tGwyRW2t0ASU6LRGofHc90DeV9jISFHZ87aRArxDt4kiKALZGu7oiVWVyMZq0N2-c8iDigM9kzlmMd6MVQd4d2t7F1EelmfZBO0Ff3wDj_8BY0vWwMQrjVrYHPLXr8BMc9f3J_2UcOUv0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67dbbfd229af07-65186042','','','2025-03-20 07:12:30','2025-03-20 07:12:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42702',0,'cd-form-entry','',0),(42703,0,'2025-03-20 07:13:23','2025-03-20 07:13:23','{\"email\":\"reecebulling98@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"3\",\"currentpostcode\":\"Ng10\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sC6NeivZu8zWWvmbi5FqOLm&amp;gclid=Cj0KCQjw-e6-BhDmARIsAOxxlxVU12xV_RWKOjSAoXLOgCu8VJN5pO1-895lk69x-ER7icEpur0es-UaAhZ2EALw_wcB\",\"recaptcha_token\":\"03AFcWeA45K9SrDiCtid-WZTinzntSY8GJeAJs670FrhoABZ6EPls1VRe5eR6AMxUzxs58MIzS1qXZTyabyDzGNOkdQMtdbUYp6QMA4GbpFhSnf3OEQrpIeuJmiN31bQoJJPwGduRyZQoJ4XmwPXsDhy5JOS_aBlUIJdx-CVeIDmkSJpG7e1c30nJKNAkYhEhrXioLH3oAjcn7L6si13a9m2AUeW7La6pLZ1RyOv5ZnbrMpKjtDm_r9F8psk379KnXA0HIs_Oz8ioNvEZk_veuq3kI-LpKtbDms9G9ZmZxRNqZ5s61Qi4t_3x8tzF_Iu3cNBdVMIm4N_mkyMm0Ffw2r3J5H8346yjKZVodG43RD5hubquwaT13fDo0Xe64sG8wU-JcmGG3N57uN49ma6XipUHU_c3rR__ITFzjB0JeQNtd8UcvY4BTp3PPQd8tTQVHEWJk00F7O4O6Z6iHk_PKQzHGtohqcMGemj2XnPCgEHSJGwmlPPBoWlHnnEosMQAAIu8Rb4Bpx-8SzAste-RXy0OR_49x0t7hQFH8_9XaAyU59oLwGsf0gIn6j2klSMcjnLsF8o6JyBKd1_3oAi5Jay2UiPGUGA7cCVSbMXrTgvqXwqZxvRd4bBYjZE-R73x_JmCgQi7bvgPtVcbnUdggUOVEPozHmwv3r2z3P8ZW7qnIuX01I17zCZ7nLPPebpy0VyPHgkEACOqKz0qUjZvECljaSKEIYWWCApRanxkLdGonWW1yffXMmYLesu6dvSKlb9MIjW2MEIWoJdgw0_GfCUTYlbYh1VKTB_ULEBv2B-bh2IynEY30ttNFcZ7g5bbNTcaWt8DmlW6eC_gTdmfLeJwaYwfTpB-kXbqoTedLPhIj2KrkNKLL0-PWqg1ioFPAAtrn7sRMmUiHzWVfi_F58s_-Q9Ow9h7I6SMXEWGn309xR1n3RNsqfOECh8LQg7-ZhykRppGi9kfdVRPes2XDGRPjPmbLrA6stGv16CoqalJ7k2czRrd3hiAniZ86_hOsJpb20Kf-aU_bKa1vojSt2lhwaI6O0jlrVMpT6bkSzZfLJZLMwOJaTlkYco3GqAoBvcMmIb35fXYpeNXQRWYGBQYLpY9E39QN5M4cAw7l6JhTJNgscj9wCP_04jFLuU6X-IAImL3iUC8-5tMQMjX-xt8o4sw0uY6oba5ugeBSIYTpziSmrCX_CwGSBYZYyH2DvK2gjwFHbtnDruXzB3PwA9pA0gla3_NCsEBuG3g8bEG3xD2YMoSXyjgvzMp9xVxKHymDK4kHQtUCOpFSTHH3PZiiSgcFn1pepunKCdWabnXC63BLbYVF_YfFl_7TkCUQwMiU1htF6rL14q8kX9BecJgUIqwtjj2DmDstpORV-WgMz3Icfi9DxNeE1NIOTMwmBWSakt9GZylrY8stnK-9dFDg0zX9H-dAjBG_5fXCepnU4ifiQ9eS6-QCoLJl39j5IjTVwhVjSq2nf5dn3VsK2rt3GVOYVOJYvRVxbsAayTOKbOG7FpxT7b0lVosZbiigV2MYzbCsOuVi4VNMC0p8v4ZuWMkfN6Hn-0XW2JPCXO5oW-nDDBmDMNJM_1uQcr48FsHW6z16Jr49I-etJnDqr5c3Pa-nCQO4eBzMK8KEL9LWtcDftvh5jBKlOKktVB8muuQPOVq4MPv1xSQGGb9fREXKvG02REguslO3hEXRwcrDTCH7Hfn6JmgvJd_UI3tg5QthECZMlul4jZmAM-kNGH36J6vFb5uJ5z1fpe3l_mGfLE1PhvfjTYEGeoSaoqod7-uzV2R_0JRsLAyc2ystXYydsaxvSuElUitEMNMyrMLC11XtYP54Kt-UKfs7VHBMip5OH8Fa6s4QWvot0lEYVRBgip85kcqkRy_5aOB64ut6M1PN5A6z5BKmYZqQTHXKh6Nms04AmrHxfekenPRlYsZEd0MSNLGEHArOqyxfOH3D8pl8U3BIPrlS_pjXTfwFkl1Qe0iKBsbPYFreBo14JMpNPRMg9WgWNLjzkAHwmpR_oQKjSE5Q2oZcydWYJC6kqjduL46x0o4R-8T_Bdx8ANDilwZvVfXepWzQwmCpo92ir-UfA-crZrnipXfYDJObZZinOeaq-F-NG4QUL40g0EP9knXKXnRCYfL6ydCA8-sgjl17vhXhtBk\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67dbbffc51db40-09263863','','','2025-03-20 07:13:23','2025-03-20 07:13:23','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42703',0,'cd-form-entry','',0),(42704,0,'2025-03-20 12:51:05','2025-03-20 12:51:05','{\"firstname\":\"Naomi\",\"lastname\":\"Symmonds\",\"email\":\"ptfitns@gmail.com\",\"contactnumber\":\"07595639790\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw-e6-BhDmARIsAOxxlxW15f2L11wcp81vnP_BHvb9WfJhXkmbYVykyeUwtcLRHNXOJAXRf2caAqnZEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5ivPrkyvoRU5n3VBM-CQguDBNg7igUS2tk-br3zASwSpDE_FSQJhAE_LduUKfVQ7c8hS4a3VxXhB_WAHdAR8Wi7U24wUGh8vQrSPdKGEVdrNzJL6EKOROeQhJTakoNDcyX_X1AHVVmhFkdlGuohwkmNbOOmeG3dpP2ZvyvisSL9xkpeMBoRTim7H-BgH3AvxGMRb-CaG3IfRWn3b8yBJyIAJx5uMaxDJhk1lF4R8tY1_-rnWAVLowou5z7reK9D4WDDnK-7Rig3HnQHyfruLNqvLCCGALu7N4tC0_NBD0bIOyRW3xAI9GDN3EbyfMYy9s8IP0xRYPAQuD7vW6M7-qmEop-1MC5CK1jmHHEAU2Umw2MoWFIfUEDvov9iP3xMVRpfzZWKvKzX7F3zaQsaCW9tGWWBIcuFtN-ISNYZzehGANyB7QfU1zUIFcpQQCwShDBjoAeXKaSF3RQYNRJ-C-lq2J2eTVCD2DNwMvnmorPp1svDDE4BfPT9cVLZWZJlUX1tqkqy-W20FTtmFJ_vJINHV-sMTbih1GcGI2DJbve4rwoAx2nKbfo64bcoMYNdUHbQ7Znp3n8lxRbF4Tg-Mo1e02Hmaf8pep0Jk3IRLYkagb79xmsaPvZCa28inYMoKCsYaY-Oyr6magmCE-dGv76HQdb9QQd1904Pr7kWUan2J2FYJ-DdN4xaAc5-0LC_Kx80-aVcaHHhgjUEpavpzHG9ShBizoZUqIN1_ZaAOrahOXvLLTXGuRnzEWdh05hU_h9zQX1rrZeq_xoqeEqVxuHa0iPpUFihZNOc2ph85djugwdXet4BpUIsUaE386Or-skdzJUWKHJS_jOF4tg5RBWGH12GHwKLAcfH_Qr1cS9yVMuQzfXYAD1qXqSa7TiM_doygYrpvcVbNv6B9L06EpwgXN6xj0CPpVQfILU3BaX0Ls8HzVtoU6UKna2JMKlPwDmJoVjDGJW5h-UB6zyQ8M07lNioiacG0CpTPjbPpcXCEPioi3HZr5yQgSivlXzcbYTb0ym18dJ53AcsYmX6H6RXfB5HtVssV8J_Xui2vvNlt_rGHVNJJBlhPUwLBVKJ3MnXTQeJuKgcKf8J2BKVSBQSPvq-5NoEnn_QizI0o6aibP0IcAn64EfgzAzBAzIRxcBj0P-Ltrq_cOKnBlfK-wtiflH31fwHOSZJJ8Ey56HDUiltBdDlHf4vUTtKRtW0E8Tlcvu-nBzNTed9REgIRsRtC0tYw5lIdlZkFvZPlHtL2YQMqJkxZHO0iq-ygk3VpHDIj49SKz4qqGuE7R6n33-HdbIEFveKjOu69UXxvZV1KKDqpDKCqRYOiccjPi_xPn4uORJMAnb2I9d067HEDI-rgoVmTR_xndp3VTumkQTuEBUv1fVQ-azGFi2Aa5jhhDBRTG4EL9Lh0P4QfjVa2D-73EQFqCm-RLUytZ3MZRuXC3LwENCZmC9XLR02Oyh80-UpL1uCMtLoLBp6PenYiu_ha2_SWPT0M8stI9GQv_G371HBx3GSlOtuLOjYaTctw3l088JaEcrKip93PgYw13znXhJd79YYjZWJROCJ2TUrMHtwC_K7vvROAnJ8THYhnQrJhkm2L2rtSKP1NIrDLSM7AbFlzxQ8-AWdjzMb1EaJGf_IZNYdAAOt4RRAnDcyB5yoSDJwCDC9mq6mfftOlENkktPa6995H1DzbrxokOqYKnKNVz3kw0dqeisF_U3q1E6VMIrpac148mGugB5M8qGHAhPNT1GZtdUSu9X2LvVohl4vxmGycFprhsspvDv1NW-2e4PlOqmi8aJ9lZkp-PjE2MFHPRmd9vqKDav4P0NV9gZPqh7ZIkaHrzqmxkRjupdi7loAd1Hpo0RO548iSL7H-4jkfeEXWTeC0JIv0coGZ4QfbxlAUoTTKQV4jhINqyreRrnaBet87DsGy_kc1AyyFMT7zBfiaCd3Qode-_jFTIdNKjp4cuhQRoYt2Be3jE5WmIxHDwRShLLi0LGjkwwd2U5sosW8jfQnzPwgmpiq_9l-Fc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67dc0f2e30f123-57606967','','','2025-03-20 12:51:05','2025-03-20 12:51:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42704',0,'cd-form-entry','',0),(42705,0,'2025-03-20 13:10:40','0000-00-00 00:00:00','{\"firstname\":\"Jasvir\",\"lastname\":\"Singh\",\"email\":\"jaz_personaltraining@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/iba-membership/\",\"recaptcha_token\":\"03AFcWeA5tNin86Tf9qwPzOC6qt_oNiTtK93r2XM4qlLix4W7LtwGw01cYi1LlPZxoHkDERhnFboi6YE9LVzqRkUuToNhb2z2Pp4ICCLycKqfcn-5hDIwWbGzGZn3QRCljrUXBVri9PYKlShNXBI2Bt32Z51zvSngQtYXs_zDyYhb-pz3VWsuE19k44jfaQ7iNapDKeJNdh8mnBZi4aKIfvh7y9sStEztLzp9E50EaBl6YYRSyetvftHp1TkHO0sFmHuWFk9A7Vt-meHfVg10fEdTRDUmxVqIo516zu1nSajP36MJ1KqM-viDkZZuXxi4Y_gORMJ0L4UQFyQ2U_tglLMC4tzINWCyY-20xKGD7ekrGvq-LLm3I9fr74Tx_RfGgI9WoEyPcv_-UYlO3WGYP2x-PLI9eWZl-MDjda_D2kY2AySedqr7ptRBo-4pTeLVxYZJz4wHMPli5PFQyJB8DQJva55fIDrLFTIAWv2_X3uzfqlSFIMumD-c_O2Wqh4Pof9C-3j9zvmF_aCnkLKbKuqn2asOYgLsY_rJD-WX5ZjqOSy5vZ-4pAHilH-3qQTKZU08Bt91zZ2TUXtTlwRjzJ8-mssFQ9PocWauG2cde6yAvgNvebPBBRTGqDMeq_Um6xEmbe3vlCRof44LQhvPkmfzFgy0E6WOkmJC0FEcBCmFtfACqDehf4atcXBymW_3t0HUmpqXW7M0GFd1le4LqswpqJkfQgcJenGJ4z97tdM1JL_V2eZyOJwBD4qiHvXyL_7d4JfGD1_2e6AdvhExvh6I0zyw3QbOUt_3xRw6RGZK_gB_m3bL8LZu5QgGR0Ug_ws0UvFmqNyCEY1DuQ5VRG2qyk56lQlq_KGaIcgfKSNau5QQlF4kbYLLX0D99wWPtCHx9PSoFFqpBWp1pKhUVC8dAFhzpsn6S-21sn42fX8TTxY5M7gEmKyaQ9-gHIygmxXpRHAv2lvCp-BoPUGBUfunZNK4hkGBa754kpV6UDYXyhzTxRFmAQI15O45dTZUGfaMEiZa1h5o523Qn0qkrAWROKXwG5PxGdvIPF4BTSKzpN0p1_mVGdiNLlTC9X5ewZRfoEb0YuxDfmLaGcoDaA-OE0rX9ikLrl3Hz3Vglg_ldFyjqV3GXgppQ2udBg07adikPxlyFKaNa5tXFF3VXdHoWyXPDIIjVJf4cKEyfdSFPI8CQvxT5ket4tpiDDD0O3uE7Ae5rxnMvRSvwipOl7JCMoCbtHgBEeB2K8qvW4E_AOs51L-WQhEwJr0r_i6C5hYI9pB2e-J_qA7dNhJU7VHzz3G9UjsoSWqx1zGnlgtpIn_bvQCzT4KSOS8sgY9g3rWjvhNcNbCuixL4hnGAyo1e8WE_A6rH4gE8fIQXVvw593t8QPF6mwuLlrNuTV3EPymV-yRuFov7bQU9a_Ypgu_Bbp5nqTTr7jzCmjwrQuEMraqE8IFChyZitGqRzE73g_KSTmFkHetc8yUJFKs5xLiEcpnfPZWYP_hTnm1HJ0Drzjw43SNFTiRsSxY9ve-IxoVB48osjPb-yn5h2Ha3eQU7tLqnWI-Ui7gAauPgMNxJ-8O9tt4X1UNXHs9JaTxnfKlPEkxjrabUhCAu89tJLhUObHNH9JiARKVgGDUY6IvuZpXKSs3-15ghoUqYR30dvOD6rQfurOsLUJcMMSp2EQA6MRo3Ck_m-1uQVi1XrM4SJYG1L7VYMWIzans8PGnC2ZsQH2Y7B08-JIVVWlLDDisy5ZzOrbukCVab59ZwEIITe4VSm8wN-Q4zohNZhNybO8BEFTqnNbn3wL1seuWjD3kcf5auReOj760FldYz6L6wmTQjFvoH9XXOkr7t6l63ZXk-Kb1oXasB87njcuOddb5uM59eLvgldCA5WiFPLdWQBLadBrnEZ-8RvtWK_RNqNzNNp_17ROrtLoqOJU5bg-YK60PVFiZzRYQ1YtHClCJZiARNWRQkfgAt1DziaI0t45-C51P0Dqtl6TI54YV3m-GtQySFsn2A8x85W72jRoDCkN9uFRjvzWu4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67dc13d04a9801-06887479','','','2025-03-20 13:10:40','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42705',0,'cd-form-entry','',0),(42706,0,'2025-03-20 18:35:52','0000-00-00 00:00:00','{\"firstname\":\"Elizabeth\",\"lastname\":\"Costello\",\"email\":\"elizabethcostellopt@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw-e6-BhDmARIsAOxxlxWFloieoZH-oizOcd7MISybOaeTbwb8PzWpTHQr-Ithh6jcn1idLGkaAmDKEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7pxYjrYTNTcut4CosSrAYPiAdvwwqXVCCo29rVhmVnQ6sF-QlZLSg2mm6JX2EoCLtkqu2FTQaKGLMDoD1vDUmL6IENwHYxldKaLnKcJlfY7u2H1rcUWD_DQboDIFxtej4PjFgCuMBhs1fAVHQWx7Y_oYlPLXrlXJzAtsWeUx9GR4ZvYU-1BbTDeCJiz8OaAV7iayGKzDA8GegQGzt1OrQGCEpmp5M_TFiNM7dyEFEDmIWTsiFr8md-OMW7r3Uwu2SoB_miPChSyFQ0QP6N0s2eMG-bEOHyNECkxra8-Jezg3gg93mBxhVfIk9x_SE0p1ty7LD3rCPf9heuUSn3QqKsLzYHn2_pGC1ChV3nHfbcU7mQIWYb9NP34pildrvA4SyXtSB1rgkxk0Z6M6asmRCNlMD91FgK6V7nHEUUH44ExCJbvLx00_e7i0xlLhKFtn8wDPYF1wIksNNlynaE4nKJ9eOmuHcE5ma0LpUd4EkNk-OEIHtWN1x1G-0Tjf1LynDl9qwP0XHSWZEwAnZdbyuFqHBYVs7kiIL5q3ykZeg_ZOQSvT9SDez2C5LW6-HY1vWY3PwfIaczhUhp-SvWg9Z5vyMRu13jIg3PNgFpFhL1rBHsHg0ZWkP9AAhcTgmgJufVRzyv7Lco6DVnahUgqTbTlOclQdABmOZHuyNM_Dj4TbMwAAxNOm823WFX4QX4zTpLIQYgqcfi1_wqcjLmIhGfIgieyzinjB4_UatLkBoG8H9qTu3AKq9eg8GvgJQS8ffDQSRpYKDF1cn-zuHkjigefl2O4X_MHAMs-vlycqAdtyrg5_PcqswZhjyTgeO3aX_qgU0IQRkf2_8HQ1pyWZHN5TZOPcBywtfGvHPpcLxpO1ynfFHjX_Y9_rbxIdcDlYMUTRAH5iAgwQzEYF-y4iZ8l8zS4EnY1sVP6iIj4B92-vkmD5ELaB5grmqhnZlgCxFKr86kx0QZLMS7Gpxym8j7zcn01Rg6_ydGaRqep-cvq17OcxJ1fpfRrEERRQzreUkVYEtE1T-U-n4QtTi2vH5NZh0ucvrqdQW_Hs3JVYiYP1kJidXGZ7fwd3P5Uu0W6MC-mUy4_cCP7K6UbyFJISPa2OOknlH2vste9AJVo21J5iUcc2Hr7XiCZfih4vMpv_829mW5UlwUfaf-UR_g4h1D5LFLQIRX8jjjEMSycbJLt6K9LdCj9CQPbQLSMerGQoxoLjGie2e1fyDy3d73YceIPKimMalggauIeimYl5-psld4Eku3HWGkWqPBevaymdAEnkwTDupLYdCFFYty4aapDwIXgCUGXrzGfGcAwU8DyREguHqT6_E6lbhAfeOHoKNf8lJTvRJkzdhsBToz1JrgKQ7HdtoYjuz1-lyz5iDVQHhr2ImNpxRGk-6Yfbo87k7u2hT9GyP-ABTsF1CmZNUFEPR39I-TAArgFB1ndITU16rhzIJ7hbjDErevKnXZH4V9WbF3N7p1VpZgBopW39yspojk8AuxdGTumQiUJ6iJTFmAxq4-UFgHlTW0wwtrTXWULTfdc1NmE8-8UEBIwD4yHn__qFRgZs8xmABqMwJ9AAjaux4MkAusSIWrrY8s04hKM8m6YgPD_8MPNnOBDkW-C0zZPFBcuFs4TGS-oZj1SJayOlj6BZQmw95OMC0qoh6XE6nqlxoTlY_8tzeY2sgxt6ReV6gzmlj6w_qO67cvjyp7BwtwQnxdBvOKneXmKoAIpu-9BPVOIlAcxo5rQ-VfZLb2ZX8FmKCPB-NdZ0n2CdZGDbpEhKLkwil8K_kaPQI1wstPskN1VsoD7dMyXz_MMQOE2880eD-wXSki3YTcNJjol0Q9klGLvQEntugp5iqglmpfy_hHJ2_9xuYzRY3ldpS5lRor0l7EV0E2yZoOTLWuVSTLY2jLHo9KG4bdfmdxMPIAL9nmRRDKiS9YTVShjsFvRBU5QOx2NjQPoczhE2zWoU1PkQJkkRaaJ_bAbTziPfZsgS9jKlhs1c_afEW4XIc-hhg4B1AtKn4QdBzKUWFIr4D_8sHIaXQG25B9cZILDCrakbryMLJikEy3Hm_Q7Pw61Hnh6k-0wbhOKqtkBGBFD5SI6XvjLJeSVVrLVI0gSwyH4L2VumrKLRvWieBMiHqczIgUbM3PqETE2lJXF8kVpSqYmSB3rzXfNdVbSYF_FJnyzE3Vm_dDOATk6W0v_-veqAZ-aQjPKopNdXkMwI1GFvmNj0ickFP3go84G22v_t3xttaM43nDinUT0mKUncS7aw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67dc600879a470-06165442','','','2025-03-20 18:35:52','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42706',0,'cd-form-entry','',0),(42708,0,'2025-03-21 06:55:35','2025-03-21 06:55:35','{\"firstname\":\"Carrie\",\"lastname\":\"Wilson\",\"email\":\"pilatessynergy@aol.com\",\"contactnumber\":\"07973273096\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gbraid=0AAAAA9_dL6tDKYsdWFXAAOU7BI9LaW5YZ&amp;gclid=Cj0KCQjw-e6-BhDmARIsAOxxlxWX-2ik-_h_N5Rq7mnKlTkXYWIWhzRls4MRq1AcFbpopeK5TpsKIv4aAqDqEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6lHjSXU4ZJ36yoGCwDTIu9shlLKllxkuUiO2e386lOKPBgT8NOjkafOoY9dfDN1_ZSORGF-wZuJ7_bnLhnRO96-QV_JQXuFVrXRJYXeRYkS5oggRMJKr8MlI1z6patuc7qHoOS5bZvXDLgJwq9faK9-QnVeo7aTj2zvYnuJh3r48BBLkdNhq874OGlR0u4xCPfuznAzBcCoEYhZBldUlPNQZ8ASztZmFZ1XP4Ucc4LCuEj2WLyCm-7f6ovqy0uSm6Df4tsrlfeVQZa5jrO_aBagKXnQEB9uTG2W78Xt65Z71kGZhQu5OE1E07iUozJXDw0ZdyISxf2fUqBysCksUno-mYVkYo_RD_M4eDvoJiLHVzxfR45O-PJPIsLsxhr3ofS-BEzNpuEBDLsnKPLGfXOCtHSKgyf2P1SA98To1KMgkgvcG8xTBDhd4ADunQSZ6qUExjeiA4g4OkGHImtzJ0vO7M6ncb4R4GoeRONTBF1RMWrpOogGE2asM4mZZwK90pz3gobqJ9VuMnvc1ccpXtNPkfGfcvLzqfqI2rQ0obgb4TP-xRG0T381EkGhpc4HRrBV1qtS2_k3dosTFiiF2-aDLbYtfiQUVZw307Edwj-K2NDFuA4jyNivbTEhEPBu-PKQNnXq3ftMqfpi9OAE4Z6R_mlq_pGOPYKwVSEtwIZGYXWez_8NRzPCtuShWhCVKTNfUqAilLBYH--7UuLBa-Wf6ikqDf5-N7BTJgk4lOpV8XG_ZO_QS5ugsy-9avAig3HzUyt0H9fmQ_iCMbTbwDtBUXMhxg67eoOJly9QvZbflYy5wV_Aby0U_AZuRq97zO-G6Sh77sF1S8azJ6aZwhQVlc1xLfNVqg7FPQFR0c_RnindBYVfj_yKAgFa3nozzO4uGGz_evpAS46tMQ8R5FNp0LIC_crt-5k_Lm2em-y19ttCvDfpri5DhScCuuO0N4L6TVJLRlLZdrtdzygtAX1WVtjKcRSTemlA3IUoffvfab7_QQAkgp_Wadb7DpDE83dKc3TC6pn2ZZOkvTkCYAgwt2M_nWFhBBWyekh85SVBYFnXIhx8a91P-AD1_CSLyQDSHONfINYmChTjwV7oJY0j72fkmNhXMgf6Myrru3vxqxx_5YHzxBpkfWa3Ar5sqnjflvDaM8MoR1IDTTX5cyPs9fIppfD4nR2aummOitR04VEyqCbq9s79xoHQQ9bf1b-0ok695pKv6vNLr_zXzliwhQl_8aNN1pbiohDcRLX2s5vY4GrQ2nwJU_V4-bZ1d23RVbQvo0PhW0G1AUjLE46KUA_6Vw83VyQtK4L7ZueChWaScJmR5tbMHM7ZbhvFDlPCsXkNaegLP8EmD31Abkw7juoSBDE6oblkLefgqLh9mqxrtTCaFQSqJUWx1XYTJryhVA0iH53WzkWjW02C3hk-ZSZdllS1LNulPLXdQJSX5hCLLnzbx5ZuSSqV-bQdoJPkjjCqWb75lsvzRFXn6laZNRU5xkB7Tlf1dKaNs9xlBose3ocwUb4OXnZdrNsXst2qNsUz4npTQLPupeHUOH-JUPOI6xfJFHfsTanDtavg3akoIc6ft5FIAsHVw8k9xChHgnK8IN5LX9FXmKMVqFH0eC1os8n4NYsPZs7cFDpeZIDhrLLRuOr9MdhQsGfeyeV5NjN5ncF5yCB5H9yvJPjcm0vl9g7olM_Frs7PMiPffh53uDznWNBVq-OJVQz1vOTIB522SwvqJmsK_W5BVeEUZicdyzxYNlBAdgYCfFqrD-qcIGS4PYL4XNZixrD7RF_mhhEHH1QWDCM_rjnr3qBU85wqdCxj52V8sPiWfGS4t2qOvNOIQCEvbwtf-NM8ggxqzMYyHXh0T7T2Vfj8oWvyflOtn6xZ0YNgnoJiPIUx1KzCoDTcymKn3rpm0RfZkWpEBJ15hvtBfu3SxsWBJwgiE1VH-oAYWDpq5Bp0YBDU9BF3eFWw71l4iT84jEOFtaCD5dYN_4ShjUy0rADPCbGpNo0mR7SwJRT5FmcRbP9ALpV8vT6Qi7OyjQt9B2sbNCT0NUOiX6rhGNX2wgTYVO2MJkZ0m0ro3rJYXAWZPDdS__ezMlGS2QKp3RWDjebQkg1mPbCkd398797onvwGQUR0zw0bNJ2ft2N5jdtaC3WqgH_tBw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67dd0d43bf3128-10338164','','','2025-03-21 06:55:35','2025-03-21 06:55:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42708',0,'cd-form-entry','',0),(42709,0,'2025-03-21 16:22:14','2025-03-21 16:22:14','{\"firstname\":\"Antony\",\"lastname\":\"Samson\",\"email\":\"antony.j.samson@gmail.com\",\"contactnumber\":\"07966155461\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6j1ZSK1g9-3HLPas-UJ1aOf_7AUOliobP5Xk5zIPfIZJcHmlld0A9VHBLocbRQey9PXb9uGVi8OqCziVmpogRAi7H-V7HIT0Xl90fDdttoCgsfvBC3w4AQi-95gKCi2pq89P-i4E0dM57agUlmu8TtjfO-jytr_2ov2hrvH7uOn6IYaulGRjq5REV03XRy6vCQO2fR5qdCFUTax_ocnffjw63MY6xKSmqiLgXUJQuCSr7ynAoBP6rh8ocmIy7Ax0NmOpvDzdi8Z3D_i7NNyqMBq7aqXKIrIC1QkDrB-V1gjdmShKkeeQSt42I3fFKSkqJlR7i3MnqQJqSNeHrmFQzI3Yvp9K-D-jV-PoAV87_tkZ12L508TP-5v_z08_WqBP3revK655MUUOH429juYsgP3neS0cSb0e4s6aHTQL_DMHEnSvnYjqiwGXPeVE-7FOloS51tzVkRbUU6fDOku6m2aoZm4MNGFBcQgSybuxG4yg6X5Vjwpb1yfbJQF7ackva9apTEVdvOO1JHO3PLsRuKMgeHVcbGgHDBnrxpf_FTHyFFM_aeadcKkUOjwGRl_saU51dR8RwmPKT7fUhqoTI-0k41IbIMc3C8-ZmVa1yUfZ1gF1Q5yEZwWD-x3hvva3DJf_WjRplAHyWWGKNlGU0f-JgsUkLC5KUwX6GcuomRmgbtKhlfzIj1LpkZUXuM6WFJVi2zs9vk-dSW8mOrTiUiBuaEQSa-lh9rSHmp9Q_tAoVnkiYTck_1CzslLdrlJR474UEQTT-t016AhY6350EXgZOaGZXHqp2kj6yJ2hpkUYaPgbBpy2KZFVagphLvcazx7mQ4jUpXvIW5HGAUZjkJoDYCTPyKfMOrfNKe7IHqgWQyuMNB6VYWGPPHuwOI24o2aqxmLV2UXxaj4HdGrkDx-1eAAS5jHMb5CVxv6uHafdqEk5RM7lcitP-XDUFg6N4czbTHzGRncMNSCvQmmb8ByfCrtLxtDTlkf4jU3TlKuQJrCoGJfdVkKjT6GJSe7NAukdekSkCBS35IC1G5lmlIBkr7nt4z--1GBOrFcz3HkmrdIdSxzLrmR5iHyarMjVx8TrNcIy_GFwjtVZhEGRyubD7RM2mRtSJjbds6rLFBUBhSkNyXOiEDUS31mYZRdtMNB9k1jVadNiCiYkipgZijSeX9jv09A6SPW51qKgxVSYaZHLT2PaKdVty9WNjngcbULNneA-RPEW2qeVKyxjyBBgoC69llF442bHMapixspRrP3ZkvvBM4xWUbA2pNkj4VvVRPCFP8E0-aTGe_43IQirKk2j9d2A1-4IU3G2js2cDAZUanIWpCvAkpun2yWlO5UJzl-YDU-WnALuDDZLOm5UrRgakwei86P-OlT4iMzaqkqtneobkuMq3t7gVNl8pojpTCa5YvZLAQ8z8v2wjCAJu1iJ7aT6rimHYaM7RfZL-QWTgwlEeF_uY5mjdTaQxZscbvmt0b2B5kpeI1lXFuJ_pHb1g4bDopXWcLgQFlVac6OYJbaue7Eo5as5Nm7dd3tbha9-ijDneTeoFvyXJ0qz9OKaqkGh1t-Z3iGDBwUzHyCWS9O6P55fVT6Q4z48nOIoehBqaHRiCcRMXEC92fsrP8p4jNPkZo31zrdEeifBnWqA-7OlSRk2FqQUb-Q67NPWPWzTeRwf_14cRp2xUeeRTdaVNcaBNIXadNBgXc5jYbSQbJI3wudtBKnx69-uYXAMHg1zIgiHuP5yd5yFSDHDDr2jL5A1gjDFchHcGY1Z48mjeKh4SHAluRTI2iHelYrdoiOGod1y9nbBpzLbnuhZmfoJhzb03kP7g5itA5ztkx21-_N-6JdwuWFcE4de8fp3GOHkPSZwDUfb7vvdMVK5K8yN6cctMSW9vyaL9kB8tzus7wngN332aiHtGEYKpIqL7qn77TucxMiN6naFdVHiI2Fk7gZZmjz0Rauylk4Ql-19pH0UzDB5jOh1TJ5L19VN5xPLHhvzzV4xNcH2RBORxpFp2gpK_hMQP76LmNOQlgXcErsx5O7uOmhT9C5ss2y71RbufiBn3JHbaex7LFT-57807crY03jzM8gqeVrYKTD_eyDQJtgWnRWosYBOgA2E4YzbV-LD-PfX9kqjwmbAAIVA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67dd92271ed787-05928871','','','2025-03-21 16:22:14','2025-03-21 16:22:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42709',0,'cd-form-entry','',0),(42710,0,'2025-03-21 18:10:11','2025-03-21 18:10:11','{\"firstname\":\"Megan\",\"lastname\":\"Crowe\",\"email\":\"meggfiitt@gmail.com\",\"contactnumber\":\"07821235392\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA5DztGtKVxFNXpCRJukumxOUhkuV-kCQaKQjE-nwNHRmz2MeSVYJZToprtjD1Vf8xpjxyN4_quMLViQ3vFth_odKyEw0wiVPMq2eevOhbwwitetoHNyRxUFP_lSV8pVIftNd8cE7vw9OxPrcrBq0sxzl0DCzFYKm2_1qHRf4JDAVGX6JUARncWtpGp7W-_RXK8XDoz11Or-5jNWpGjf7Iw0-ikousPQX6KjIt3FFX3HzBxDUiYngqDtmE3WGMceYqlTQg6e0ID2xupkibVYsIsDRqENQRZ68wxQMa6-p2G82s2qaFAa_-llODcEGQGD4kwKptft3tWiVVbUVHUpt5RhYVMbsnfAvq1ngWV5ukHbDgs_XZ2i0iUriYGKhzndS2pSXMNd7oUzFSF-_nX1eTJwVFruB2OJXMqMwufgWSA1mFCbZuKP9QA6dzV8qb8T5EiO6D3yJw3EFM-XlNfT9MNIuceLkoKlKAY3kerEUYmFyIhEF0Hfww_xw04FQCs48LBJfJXM76zuSRB5YvCb5X79pm5xuOzHBgC_N3MV51C3LVP6EAJhqUEllmOHjys15nkKHu76I8FxGi73ckDWIRRvvHMYQKlwWZEs3RBpN-2dqhM-fgR8iVHYi6V1OM6HtN4Pp2IEF7rJpphx6CytjdUguG3GU-SGyUAawIV-9ieDNDEX5WFMCVGrNYg2HGiuiKpnRfRNjxL6qePTHGyHxStgduq_5noGHI8XLSpHlKJwr6sMNN5LepSICEco_PT5SC1sDxiDsyqKZRi43Jv8J2KCn75vv3VSptLsQG0FMnHh3CrfQUruqne7WyruqmavCJNfhr-qNHkdpQFgvy95_SKn8t8flzsY-_wfWCv5V12nu_KNO6g3pHSQYs6WQoeTRcO4sTWBKNOqVXgknHp_A2hkHTf0SOXn--8Xjg7_8mxeoAbu9IYEndQde3KZIwrFxWc-VBGTaTYB6TkNmT2GdcvOvn7wLW1SvlawbtRQ5lyHSaixAi__-4dIk8nT-QMBPFeGrw1AfE8HtFvHQiGfnjPpdoBdjf_9-Snpbu0Xg9vRW3vbEASHUGMHRa_flqa5dXC5hmPdF29hGakSFrmA4QOqGMvkjqgXnJXksONNRaWzEjY-rrPlYJcUSGkZai636lWFOEmxjTcQZ6mKqgjUaj5Ynt-0I6xRR685i9HMJfedRSVjnp2vKZEqfXPkEYi0UGFjgL86kwKVbwGp-ROahWAx6v68z5Up0yZc0xgAIz1jkRWcnOKQa9mbi7jAcbZIYr9O-AbfrrQHtU3sypVbXmge5z7rC_6gmjFXIIITiLfQsRce_kGT6VT8G6loz9oVGHCFfA3rSunXeoJY2vxA7VWBRI8A6ZGLSzQLxu7HA-DNbeX4rFyRRGsVyW6oZtpSF-Zdr9CaqcHC1QOCt59hkz-Oa66A2Do4uM8J60qlVZsXL8AQBf6P1GmX3fhVIxqjUexqrMNWvwXkB-E61c1Nqhetn4-Eko-LhGHnN3_BJnzG4C_jDbZOHNfXIJFVPAaTcHmgtibdwJAFLS3r0pd4ZGKDCZNO3mAlaSihvLeCzuN93kGCveGJ_2ECyyWcKimEdoRag_WBQ9lyV20j6BaCPGFu4bPt53mSMaTjdiY9ti5DDgh6kP6I9dyR8FRnnHX4gz_elYbtQr3sIirkXUI2VQE9vTlP9xsfkf1YLHDaxJpizVtZG_vVnCtkT2rKvcsM8Uu2WxOzRjEeJjJfWSwfY9AHF3Je2ihLLMzfz3Cl-wPYG0MM824Cyd9kKhfPoecOdqyjbY0f7G_vGN3trfaJzIxaAv9UAttZtkNTlrEUl1JYaBbgygHyC_GhuUnp_2Od45kxBMy35kCTIbUnm6JcMLESjhc-zTzLTnCtZFmnkp4Ihd31RemUqrzcCFfkhC8PB7duWX5BSPlUygznDJkOenv8kV2rolcz6bEDRX1QPix5Xu-rKJU2ji6Lu6kpFPLWpH7-CO2nIGxPbb_73UZr_B6XVDytDO1KCQ33J8kK3qwQm2XwH6cMc3m7skGgVyCbmU93mh6z-0oEHtuYUOyn6T1n7tuHMCTfvY7eDhCLj7l6WBQWQOHifchJFNce80cDjzzDn_iYbsGfID0q7AhhTs8HjRqzAPgDBuLrF_FqUsJdLAxjtTnGo0TvvONpnOdwQEN3i_bjPwZMpssppCp63Zdb5UO-IqVtz3e0hjRFBVVA3Y1o0JW7iFgV7yBYt-YEueYMDXQNfOkDgMZ13DGVF2Dac24mTQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ddab67000cf2-72753974','','','2025-03-21 18:10:11','2025-03-21 18:10:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42710',0,'cd-form-entry','',0),(42711,0,'2025-03-21 18:15:21','2025-03-21 18:15:21','{\"email\":\"meggfiitt@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"BA22 8NE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA7-m1T-MhjSAn_GAt8OZ_l7Q5OlzXDz6njUQO8u19pYf6KG6D5cCauLSmyuQekDdgsTZRlyBnUT5jZzQXBRrfWz-U_iDJb088YYtGnbfQF0J1ZR_qP_C7iNIQYPncKGVpEAXkns9SPNSj4NtITjFT2uNkjBE3v22e-IDBMgz9j4dFrPOeq4WXh_X7JtGT7mxkGgK4SDDm44Ajdf96Klf7u4w-Ul-dxqH6KUjVOWSMZa_G-9hWBFeze3KOR23Vj5J0xuLyMlaU1Pf-JSqJIXLaqsAi7-BXwHqPcjW3QjwBD3TFD1wcwmHTvcFx0kS1Y83jP6rxoTMI0kJ7iXpHJHMCW-uLOtjAryYsfZUHVkSCSm5MQ1CQmtxGfqWTtgywd9fDFIUclBEMEFAGUir9MKm0Ldz7ty7W-iBkFu2AZJHQMGk1HbU4eYW39JNhOscup_x2LSkfwJP46Qz74UX1bH1SM34GG0AoQoOhZybwr8Ux4w-rjgc95jLtnJZk1uvBDrhlcjObTApXG7ClWjp07GkCVwZGcFP_xn-lr7S6NhtcPtu5LF7T41i_8_Z5RzCdxb867f9zuNj0RGpLmnwt-PLV5F6C2sF-8OYBQfaJ9nVSPzwCD57fDPjHUl0iAmsTWc76ROHOAjIxpKaEQk9UVaDi2nHef0wzzRsSl4t_QEH_xFVnZvt0VyVv2NnzHK6j9n0AlTinl1YkxiZ-vOg9V_88tgUhCktlLGJia0glCkFYl7mf_NAOOlzYqV-r1MvU6O7EPPtAkcbz_pTuVfnIPza0y4kKOEoMJlaCvSSZC_sylY-ydK2NsUwOeMhAk5vUu0oEZFuylhNRrEC3SAB0E3Wz2gLhG8YdneWUlrcCaQeEvuHxtxaifNwNqQ3FYx2TMT9do50SxEmV8_iREl18oPEkLFbxJBarU_s5f7jcENewYuz1wCEL_L3l0LWW7_X3JPRoky_cGShoSdyJkgz4IRLjOIAUoBElF6yGvcwdp-cBtwGJqzxvJJhnt9P7eKgB0EROAf-uvyj1ZjVzwh4WuPRzeNdDqo5p70YXBlZZ7NWCfNLwGC5DmfDSQPHfqthV_gK3EXzTzIhKrDjS62wywvcglWkRU6vR3PXOlv1BUtnOfQf0Unfs4mOtQFYbKjvCK2aUBwemflD9K8EfpziJo5r5csnOxOQ76DhayULk1CuoDih9XbHEDQGyhPMnBvIJeKK-78ndEpgp9KFENMLTRz9uJJ4PlJ6IsekKHgE28TRtgLuUJWi5_r0Cb9PJjSHkhan6wRglkFPDy8_Eg4_iOTijs1ATaE1LrIZm0Vn2AaAE8kLj63_th-NDviFWdJNVVVrehWxOD7pg62dImj5YbYn3Fg2WofAqPCXPc2sgWRedU5eyLVCqlrc5n9_ysdq6Ld3IHarL6LL7Od9vTxRHlnnQwJV7_UkAMyd0rxld251r3snEbz_938enik9pxw4e7ZGVJg8A_hXY2mkS8hB2XekJkSRGPfVzAdyQSpS3o7lxsixsu7nktdVpGkNe9tktYWHiwwu-XmfIrMR13jNaRBNHRR3f3-qKiCNxBCbHWtu0tnOyyruXRtQl6eMbOBsIRzCZtPGUQpkZiquUk_ycJkR96_MNoS1_2hrUbD7S1X9t5j10hKCUa1_ehsRtk4uu7ElEruaL-hQcfa2gFEK5WxFWNPnG3jzDszWrGnXdPy1FiGxm9hT7HGytiHtbeTQkPUdk43t4eknYABFVIWfz4M2dlPNzn7gjjFuYr0uV5_fYQR88plesJlL1dsKEc83ZCV0eNLE7W-sLPgf7MNyQP0dYXhS5xVQJ1XhNrjowCuBNo1eHBGUhWhp-3H4EKJpF1-GZWiJepolTIyfHrB4-e-Wr9RRLNNHcIJCOkWvKFnpJEO_VzIbXJT-vWe-HYtwIPyFKvPCI8YVRiwUbb6JgFdWzazN0-ZbtH1ps3Hka6HwgzAFgY7X0fqyyrxaXkW55lFomXNsJZgg6TkQw2fymOiII-Ju9uKRHF1lOyYxBF_ythpLl0aPkAGF9DILRaMi4vcaNmQ8tRL71LaAq3FrjIbi1RAtfnCEv3QUCEbZYBZZPAd6YOhZ01X_LqdeaSp4uVGq5ACbBHr4_0N-kzZjKHFofD--79TjyFCjd2zUB97MWg5X3bbpM3q0h6IJG4jTLZ2vBssJIbNJRUt1tG5KtEICG2qZndESWfadjQktdROBk2zln-v3NBS6x5MoLznm8aMrCsSR_JOXiWgiFp37IcQd0TM0LJT0B1xyTEVLuSl_N_kS_EzpEY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ddac98b1f113-38585204','','','2025-03-21 18:15:21','2025-03-21 18:15:21','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42711',0,'cd-form-entry','',0),(42712,0,'2025-03-21 18:17:40','2025-03-21 18:17:40','{\"firstname\":\"Megan\",\"lastname\":\"Crowe\",\"email\":\"meggfiitt@gmail.com\",\"contactnumber\":\"07821235392\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6NBrBB3WXPU0yE-HqDmdhCyahxLY2aelXTJNOicUb-mWhuXpG7HfULDjmrsLuSXkvaaCD4H8uuwgGQOC7RmDmuNwRaYFhbocp384Ol8UNGHSvLX-m6eeGoSdf-C6hfStvpPi-27-_Wt2ILHJI4YRFlNfqqqDYS3xD486XwyMxAK6Zmer_GvJ_fjtmEQpPqE_2OE-6ZroefG_DamtQI9678iFf_k8TWT0yZ0cFDH3ZfqotJlJoPwGOibJfzPtji0K7dsAYUuW-UIHOxKEoylX6TLRBwDezEowpNk_9XNGMGI_TNQ9Vd9qlq4nF18EuJh0cggeozsko_8SgQV1HENHwjSAhNHOtSRr6Ui5o-pzbzhSD1w2a3_liM1M7fy4J4YcUb0BGtajnQrNl4bYAREanC-0Q3uX_JsnW3Fg2q3fDkWY1cIr4vCiHcO2ZnGXcR92edDoJRgGQ4DcSxOcGy1LqyJhDscP77oFDZMtDrJyfQKsHM0cB3U6mWG4AkA21ITb-JNAclHDkQVF5DBM8o6-Dl64cgEhgkkPstaWs95fzNK0JqkeX7ux44sFudXNge13LgA0QIzeWPcsvD_OiikV-uVsUCGzS0rFGI6MBDY00N1KuyYEFNRW_6Y7vMQMWFn95t364mX0lcFIYiyp2fZvxPHPecjBY67eLP_HKYvaYNsdXCVCzH2b6FAPjVmVFGyL7B7gxWAVmQtYwaZpzmi9v9oPHCpzZaX3g6rDd-eGNFFPCHClzXRo8JfSC-08RAbDKyWYUHkOzBAGUyQFBvw99iL4EAf1oLC1t52qBbDCd1NE7QIFKbUqpzi3NYisJGCeRDOOh7GoSQ4IFe_2JEohYkkg2tKfXy9yllPzfFMPYliNJGwvQS6OqvTJf51PD7xu8Zo0_KDAFGdYWvmEqrddPDsHJQWzSCQR1KRVMc5dtzDF_nPX7bgpzwrxHJLkPvLXOaGiQgGK5MVGmZo3NxpTAYo3CB4dkxkIpkbzxriHvtn9q_P5EUv6OflGJLfU3v5d8fRpoYg-HeqBaSOCgnO4dyN3nohWuFbJiFHGnm0QNvKxscFcu3Z2Z0VddipaRJqSgnwXgE6iPOfkJevE87h1Xj7gGjiQ6b7HlFypUAueGLhaw2e0Wj_eNYBYY-vYTv4OH7LdDEtTM5WqSdstV5_wtqbzF64zRw1VFu9yiirhdiMJyFWLP1DalA3KdxOYaPwwo3UAkIxLGkqFYXRSS6Ms3Ym8jrjXJnOvALlPooejMN8t_ORRytDsNhWzrc5fMHKfXMAMlrbir8Oc4KrpiWU8bVsFxKqOkkE_8IKqQqjJyRqY8IgOuqrJjS9OdVkTmzb64VwVsDRfeXMG9-vmnlVM0xy5wjEEBQNtW71LpbG9FBFcFYK08ITHycDJqLnaRvaikdqdKMp2s9cg6MB-akYDDydJM-rJqm7UyQQd1bjLSiUMg6TvN2NWHsCrfnWw61JuwZwV4kfN1W0gDkIGxNxulqf-sUFU31tRpdWqh6sTX2Tjoy3zECYcKrZZ34fyCZA60ExInbl0bYTVi92SqiDFCCjj-ODPIoK6FQkCIAvPQK0AEP4rpIAj83ZdqoarmYhF8gqf0xAy7Wkuh7agTvO1kCiK67NicTcViqSdCSenPn7ZI-Q1Wo-UDWxpIpZcpqsTcV_pFercRVadU02bd3_-9vCcCoF3TGfBNbSfZEl7iQG6K9cgXrWFzAuKDQgd7HbBV2qPzj2_yMiEer87gu6hixSz9Weih8Xv_C_kZzfsGKOR3bTI1yGkMuCkzepp1mKMz-nOM8VU_cSRItg7wzw3xHSPHvI4BaUXGuZH6gngo1QugOcePmkbxlEpiQ7tgmCQMezPtcfpNxSetgDUG33mMLRgHYP0kYZmRDArY3wbEiLxYiYhn5ZxS5jfoSka3BElELtBETo-eKybr5EHTjfp-4uxOKn_L1Ke9kw2luV8xdDQGR5XcKglCkOLjGsg1-g6qC3c3aznWHy-BSiJs03Mn3tzVdiTWqtKYuYizrD3bb3e46WHYM5YLi3XhFrgjNAU_-DpaYtaZgSqg9Gt50xspQks08vwrMXF4pIVBej_zevrl8nq4sCWU0O34GRy3wIksyZMnQBrFUAe65O_B_pptNBVO-k5Pyi0ihll9zD_jb3QbyVye1MLOhtBFqAFPtFSYy39sFZ2iorDmiCQAUuMvBScmmU2uLWHLB0lIf9ovSob8gH_hfqrCEXp5gJXVzCm-QwZuMjN1P_YGbZUpYmU25wUloiYoplQsZyck4xuLqW4E60IeezYksLBUt1ysfqJuezSuQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ddad2ace9af0-28361938','','','2025-03-21 18:17:40','2025-03-21 18:17:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42712',0,'cd-form-entry','',0),(42713,0,'2025-03-21 18:18:27','2025-03-21 18:18:27','{\"email\":\"meggfiitt@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"BA228NE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA40BHlWJ8JLwofR8_U7n0bVQ4qeVIcTUBR5psl5aCvSOS-FVVERXY3lLM8KiZvk1jXhEHC1wNBVryUHLRNqn3cz4dHTF8VN6BVqrR2ejIBXMbEwS3u3H3SYZT4hNytuKbPP7i_lXJ8D8aa0djfSjZ45H5hfnu4Vv0RfuiDBuAA_1BwAsLFOOQ_cOSfm4A9OPbAYblr7Yim3IPZvX4qmnEClqAYTW4yo_4lfbCapKCnT-EO4RdNgpUPZZgdFSK-vRBZ_WXPMBZSAusvc680noGzu7vpMFKW2eyTQ_1Xl38Njp0vEQHgvCy1e73VG4_lC2qW3eVf3R56YViiTiUs1_QRuCehJ-kNV2JHs4384m2dxQkhEa5xYht9Yum4okvlg0W9bM6AXI07iRJqPoYbUULkRykkXjzXYKjH5UM5Xjq0aJ3ImUsOUhZicpwNXs3Yq47H1QOOekszzoiJYHeArk5OoghjrxqppNyYTdy59hZKX_VWVAbSoMhiQ1kPRDbB93x0RjvTkXZ7-aAtNkWTynkZvjSWkPoyY66AF5hraOnZ4rAm3ao65DsUSITHyD7Hfa7EUMNgTg6sngPaoyangUfBsp1rvkjRIAyH17nXrbVrzfPRt0UhI-0BuwU0_1e4Wo8nHBLFLJThj_04Z1GzJpSt6AeU8Rav8uX1vnhN7gvNqpBJ41f6O5qhQ5WhTU10AcT9YKYfo9uCPi2RMyYbVM9Rvc0iJKeSGej_yc0GP5nT9RG9CltDhWPbDE72fvH3KALaIWEpq6cY653iuSnG8tYEPjkwziV3ZNAZ6AaKrmhSGHKY9tHEh-ggREJGUx3I-EkeTMOATICgfmvx1K07_-Io3y_HeUZ4m2pdzGTnBYOjuEYOuHEXXp24U1djR78E4yz5nUL6jUpgC8eBQM3PQHAb8I4gzLSbp8TFNF2Os-6HWlpWmzVi3offqlng0CE_lZMgHcoLQQFmYLFqUttIX7Crno_IlE4YaFaupG3iATyHWfahMIOZ_IJwXQHNRD7vQtm7LxUNHDWn_B_dYuR3z3DwL7jNRnCTeV_yIOtYBqvwcrWROEMPkGBdtp8iwkFy54OWtGWGCSKUh6meacuCQv9aixbYjIDGp9gFzLL_O9OIMTFWb7DftJpVX6W1_SWS-4NFoIL-2k19RaZBFDND8j0ldolM-SP4ml9rtQ3CzuoJOEHquHKa8B0oyA-lf7d48Lhog9SIp_oy92bcWkwUtPLvW4lOCPYutU_b36wqavAyNDiszWGUz8hVmyTW2o9cy52hDcEyBBk7x3psN2Sp76mRrPUHxCy40vgL_oJ5oeBezDGO1U3KCP8mcPoGwFbbleqtizjmVFu6TQ3-E7-LtcBqBaax3Ljq59cOT9hFZmlDLXM8zrwaJ0UYAOTbj7kyro1XI78fHSs0kmIGDFugzUT09dGLYPqqxHJQHyPUJgDe5FTxLl-Kqf9sFrnBOn2t5uf2n3i6-3bqQbbOQhRLWxN53HwFq58Zr6WQBnVerRwMrmApyprkdbF70E7wddbtfB-PoSJI6uJ_zIVO1D5oNWUtfzGkzTUdnBaSGKWf4b9iCASTedb5xVA06zDvoWjPykfzPV5uM_80iKLN-WqL06eXVUbwxiV0IqVexbthOecDN-9Ynre-E8XBhwCD67Ia1_vINhUNZUOGvZjYcPUzBBZgfR_FE-tZPriOWnri4YRCGl-JpLKdMlYj6Qe5lkNey3d7c5Nr3tfmJJ9OcZD1eY4COTm-1yCWLzK3j3ub96K-HAm-HOUAgJ8oUkrS7aCvx4qI7z7N4uM8bQkJlS8_UM2iN6UHEMBeND2unNeXeSntRGSb9JcWsWCdLwQcAimOdIzraFV-ME8pfbtH3JRvf_qdv5mbO1HqLpNLtlGujmRulNYapnKsV5KSyEkb9oKYMc29oJU8C8JKZwXowLe__W0gkmwKvFcG9AL197ezd9Lxr_FqtQ8ieKshlb5pM4yLIhWQgc21tdsw5yv1AQZ8xfXHSge2tBsN971y7rY-EGrP8QWJ4Y785fEFMWFzlOOQmQ8913gL1ESt7zLhgrmCAKA1QNxVfGn38FkavWADN3tXsWV06iSIE0oW1to7de0KlaiAIsvsjlwiKZ8hq-ftv43Q3MQX_Rj3tmQXUYVm1EwzIc5uveSSkihAMF_mxGb4xrS5jjGKaIGIjx3Z9mr42WahUhhsV_iwA1A0zndR06RzHpbD1boaeo1Svzuaq9a9NxjJEBrJOlZDnU8BVCBRVDiwiujGG6BCwNuWnvsC-CofO1FOTeoQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ddad628fbeb4-78480642','','','2025-03-21 18:18:27','2025-03-21 18:18:27','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42713',0,'cd-form-entry','',0),(42714,0,'2025-03-21 18:22:07','2025-03-21 18:22:07','{\"firstname\":\"Adrian\",\"lastname\":\"Hunt\",\"email\":\"adehunt71@hotmail.co.uk\",\"contactnumber\":\"07564344939\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwnPS-BhBxEiwAZjMF0rJU0WnP5XwVFNHQVTvfoRaGfB9w_Ljrf_PDHdIqcFagOxCe3OQNZxoChvcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7IZdrGsIYvyLesjxHxYWAR8djuCM2SejwznGl5AcwsLfsDmVIB_ksQ994ZHhfVbY-VHTc-vEqZdYV5tau1zrJugFlTZBhfnWU5CUEPEnECqjFtk0P1OfkiPY7gPY0dOezFeD9vbM8et-xSHL-AD1fZyWc2DsrvlgPgb8oxg65FSqv0Ta6UovgFS14v2KNpHBRApsxRs2b3ZPleM7d97Uot2MRjxKzwe4MGzdXSxL9G1MJjG29KZWqzpeM5JREmM216hsDVWFMInNjyN5MLwd3MF509alvD35uPZNUpcEGMpRhpJWP_paGWAHpyvhwe5mHdc6vQ2p3QQNyqh0HddavrOOSuQp6_pMeMGSwXXzloDc_050TXkmfnigxy06YOGdTnoeT1Y_n1uYeC3J8MmImgTSBNANwsQY-PqHsaOuq6i8oLjguwpFecVGPXrDqtOXiP2m8JSaVGv02EMgCY4d1-gxPJaKNO3wXIVoOUERoZW6d4GhoIfrg_zjvgZHbdpGMvODDUsBMl21-e0Labm725DtcVmIEqFm-6vVzRCKNUpVYw7VTCg7FgbJwHDNfZnL75sOWX86cWISa0nXYmfbXvu5X-KLTjnGi-ZS_tcCaNcb6g45yj0DVsNrZRHcv6K8IoG95-1mh_bhoyDtkkzmnawZjOFWixqxTwpDvCeFM_y6sn-SAMdVteTyQ7pb5er2JSYSONeiz0vyWWvoMzntBqTIhXZOZ-td4aOfStwjI23w0O5HAPuVAr78jrNEPz0BRkS5L5VSEl_95ZFAxRcDwc4YaLpa9PIDW1qAgvy_vQ8IOPMnuQkkGPKWYHdMOvPAIRTXi5IN8PtWLVumOf71bd_ffI-eM_Vij5o8Xa8HeVNNuCWFtywyWZKPh0H2AvXYRgnEGaOL8buMuK1H7FYsSNfpJ72BDR1Sh0JhbafLHCZptzya-AqY_gkdZOvCu4PDXXcBgpzouqPl17NHzAQm5_QHvO0_hobk2mt5YfdzWrUjLGpcLHr4AksN-UE8Qea81W84nsRNR6kJbjqwGpbfTln7Y565Gw-dfFsXFfy3HNNDi27a6vkQmx9mcyUxhwCCdjIAGXrVZkH0O7hNk38KASMNptos0bCi4J_KYmEvd3lvOFy7PT8qLMyCamqUPVOx3inVyq40B_OVzKos46EKuwAncWRQ6VuwAwXyWEddyVyLFnczYT2WL1cYR-az-4kJBg2ygG_Vls3wjtJNrap54NRxmor4lhDdZnWSOxEHJFLqH_vvpDUSaf_fmRmJeXOld8GEQ7ycv8YU6QFvQenZRcl8YXXCcMy4RCQWfXz34yBswdRoozVJn_oNsg71LfRKuE59HAu5zUfJ3fQU0uP_VbUN_FWPPCgBZjRxSgSP-PI1lya7dc3rTkdAokM4ci31R6HSkbzr_RSc6iV7JT4MjMKWB037KIRTaSN6soUEfecnckBpunmC2IV7qhBY8iDFcSXU6nKYptDdabRo74jlqk-aS6kUo3b7ZB2kqxuOyJ27DWyUzqrJXrZlpLHcbcDNoHXxyUcUM0oj9dgpkMdwZ1ukBGfmA_7E3g3pE2TO1RVUpuojK2rFRonfLekEeVnhpek6odqGRa1HGvVcuez7igCGtAriY-zOg0OGO9pMUiAlVL3dg4LdG8bkR8wq_IE8JnprwwfuBYBaNAtOoiCGSDwcxu5qCSSzwtCzGg_oaJycojqefPh1Fj7n_E-1f_fN2co7TORr3efmvg-k95eC808GZZ-vMeO252M5s0PLEIFaP2DHcdSYpxepGaAVQ8zkcipP0aqyrSKJF8vcwlD17orXX-3FQaYB1zjqhWvFagdegHZi2IVyw-tgU2IBX_Wl4QEosMA5Vdyh6tylWLAR7rxXBsSj8CPK28VZvLg9Gn4EaDJqV1NFjl5gnrNwj1FaNb76o9Rsp7oVhwue4L_KYAhDCuJlCjwhkL-nYfWL-QMgHsRvce_lD1UtiBzXgmSUKlMlJA_CVUT6VT_JBvukfy1BCbCLeZJZMMXcOAIiEPs9Aybj0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ddae24621625-66482078','','','2025-03-21 18:22:07','2025-03-21 18:22:07','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42714',0,'cd-form-entry','',0),(42715,0,'2025-03-21 18:36:11','2025-03-21 18:36:11','{\"firstname\":\"Adrian\",\"lastname\":\"Hunt\",\"email\":\"adehunt71@hotmail.co.uk\",\"contactnumber\":\"07564344939\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwnPS-BhBxEiwAZjMF0rJU0WnP5XwVFNHQVTvfoRaGfB9w_Ljrf_PDHdIqcFagOxCe3OQNZxoChvcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6PyVSlVQ0v7L2-Pa1QBZd54cPKm4pr2dFgSv3q7Ln6AZTqP1udkOtHeTD558S4ZG-XwKqoeOkxgDFkEDt-peLDxfRpucqE0imlWKxghG4Af0V_ufyFYyELqi57aVgn4AVMKz7tcizq39Ya5WN48gOG7jgqlGkiCbdcwOPoXZD3tgIXSXnDCxxGOMQwJBjyIoQVEYT2NqXMcRCjpmo-oO9POtIBDQbcE5B8MM4PZ-OR57eMYlmNMYPqpQ5w5W9PygwR1w4XVHpl5Wpqg3xMtosoUXdsjAtW002A4gnBC4MJqO3AGIlpuyL3Lx-O-IYxQGlO07_EYZcNBzA0Tms0zDks8YoXQnWYSC0JdokE7d987-iipc9QjFVNd8XDJB34Ezo90N8PsgibXuw0GYD5KtNLNpKzwqzXw8Kd4GWjgFA5w86_ACLkT2TdlgkBslpt9s5L5KyPyxCFPZ7o0A8Aawdkwwh9oZssAEpv4cFx4k3H_0xUcxSMGYGrkr0hK6FQv4iZ4V9ni11Z7JpoO-f9DNh5s64H25dhtWLRztPSeNykjfEeFpjchNTfY2ndhzKI-iuyqSfr2Nyq2D_f5MsVXP2lt8t0pSty2GpUUTF9EtgrfSr2ejC1_TsWT-Gl2XNNE0nYn262c36GnT0tmrhOphgXUUfRvb0hmLVCarg0uQkzIzjHdJlz35d1xQTUETn8IVjoQDOgDPalqLduckOHHTKsUz8JjsBL6-YmAUWpgpZKZaSrJKW9CpEFpiaNKZariXG0sDTVV9N_dVcXh-bCjYQTx2dOI_Q5QOPZ3Ik4jQ00f-MTj0QXcoQ2fG2-2GwzKOeG6N358AIGPP-bkh-7RubuOsByV6PRWPJ1yrkJAO3p1LKbwAJ7thyOzNzBHEp15WUo4Nvt2qtCyqvW3-KoF4JoQaJTGuEF-7mVYjTkMWsYV27IX0FNlaFFydZ-T68EP1Itb048-3MNDAvFFIIiPkIkA6uF2eusDApQAfcGHj60ZdPKrNz73_PyzTrpJPd3LjvQivOxrJeTmk-__mSsO8A5_ts9Yvcr6h0XRaxI-hahzX2UtRCSlq3gpIBfueOqEDCKtwH2EtM0qofgQ9izv9k6ncMo-fZ8HtkPGOORqItrQg_R850oWrByb9hrOA6tRFm1D3DFQuGBwWeKrXx8z4TaqyZp7P7LXkDw7xCfI6JW8o5H-IVuq6X29zUDDSoyqm11HpweLwvQj55o8KaeClGBZNtbVoybjyzyBWZC-DNofT1qD7XIFMdmST0_xE1FH9GlhYhWUlkEUlZMJunKEwmEGYwxEfOgdvCzsMRyOOHLsc3YpH_cexovtUUbBy65tf5K7cDaaNVghTI3cay5YFJF1VhtpZb88daNfQnl8CP9QhbNwVGrGgqkacTeMMvvAxcu7T4GGtnUFfuSFshRhVo_zTBtKqWDc4sbVB4O7tNO4J5I-Cdw6MEvVeRmebAMlRJqykbI68wrTBHrMhW9-CoqnXlMuAKmWFpZt4c6Swjffxyre7wYjM3uVDaTc9hjhadUK16sHZ0MXcUqWcynClfqRVjZCO_t8aYGiCEUmz2nLDpU4jvpfUEexGLSCLSVycHFdt0IcpOZz4S-gBt-nKN6JICDDyp_OoXX9Tp3wWcSoTfIMLxwiTtAApy2jwGR_6dNq_Ev2kd1gkA_STGOTaU1kpVTUiC4_cahqF-Q1mUbCftRXkOwH4A4-FZ6QP3-KnxVSs76QY6r3jlVnWkGaLCEi8flOL16eBywv9JZowEkDNgC4Z5AbpcdxperHdC-xXYNB28kVKuYfpUgEYKTuXO-ZywPEnjKCQZ_iakLvTjrNuEbsy4LtJao5859vCcqrbsAahAcV1lJPkNraLbulpRA9sJrLDJL2DzCq9iS1PimcCn55PoLu_xg2Zk_mTezzgvD-apubxwPx0CWGQfjDsFxqDXYctxqG-tz4YGZH8Qc5IZovGPuBM-5RmYvxTCxRE73KeZtLrjdApqc8fgBqvbg-9HMW8fgv6eh4ijPMLdg9Qs2YQo\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ddb18087f7d5-27282397','','','2025-03-21 18:36:11','2025-03-21 18:36:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42715',0,'cd-form-entry','',0),(42716,0,'2025-03-21 23:11:33','2025-03-21 23:11:33','{\"firstname\":\"Dhanusha\",\"lastname\":\"karthikeyan\",\"email\":\"Dhanushakarthikeyan27@gmail.com\",\"contactnumber\":\"07442243398\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwnPS-BhBxEiwAZjMF0g6M6XhSp9sNNi4r7gOPWYYKtUhnnE8mK5x3xafkHg83s31JwFDfkhoCvMoQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7Ul_IgBeUGYfpAweqrHmxn3myeZPCPdeyhmGFgebgTYd2zlfVUgEmsqvbLQtNbx-_TDEl8SiE4acpD-kE9cRpgVykxppYtZ12mhlx9LqtB6DVkrhCv3yCFUC9Pf4S_GKYuoBiTnLIk92AJVNWOJ5ybeMeETyH72pb3iFpNnUBRis1GxBt2EIK-Ib4KEknpmEGtPr0Ku242hgxWuxoWvu13HAMavK6DoPBW_2qQob3YiY-IYuJ0MQ0K8G0xAanMBjxg4foBocCv7D4KXXHc6ds5L8cpQa2RCScXZZB_ECdfMQQILOgtHwnchbOvEDm5-q9CmPdFYO2Q5kFRl5LC4bPA-f22Ki316OVOzH9lad9txeMHzbCredeMKgm4LASIVxvscaUi9b7UNLlwQ41xeEsgCEAahP4JccsONKj-zh6lskjO4JKvUpCDycKfffY-tAtRRIBrW40fGpL0ZEufZwFy08fYDcMhLikEF2OiNpc8v2jgvtZWLyhRYUUTtel7jQk8dfJ5K-SaTywFkJlfn9_eRmNcbnuyNfNs2clXkPEWqlSMSsiapw63MYt-RQfKWcn-b0GLmD2A-Hvu5N_u7OASPMf8dUYPIsJlJTrShMfDM97s2r3W0VkJdXltZ213Se2j2XSQkri51bTwXLjSI8rezC-8MYaz1E3UUk4yBR6SjLn8pEetq6NuBKxHyQ4HQOAeWBNXm6xDbKNv7GLBuDr_BtpqgqZfrLWhuU9b_TSEJBfWiBHJSkuf9tJr5D58wIZyve-rQM8HkuQx1saoe3TOAjpGtCDDBpfOOEbecGFxY3zUejBSQOKbsSPkxhgr_BSkOlEKXoycSvjmyBg2vSYtPzZWz6TaKxmKqqz0XiyflGKi4KyN2qONoTYqNFHkA1o6TXH-yehkc-KLbiygMgNSjDMnEsIXAI6bIbD6u5d6Fj0LwiTttqlg0iK0xESREPIXeoLRNWllc6IxClRgDkYegrGFJEBg9v2hqpH7TPaRhXnZe0bPuIflXZtIUXhCK8LPK8jYCH-M6jeFdFTvAC1NhxZmWtmO5fdbA6DaJHSBoVY3gXDDaDDfHv453gi8RXyjBq2-JM0jANhFqDFo3G0kb6Z-Wj13GLhrGlBcuT8JhkjwfdCgBTSvLyGU-EXRWzOvHS8gj2nenWOfeH1GCvA1YZEYDiGPmUPwvC-zakmhcc9vV30ACG1-hO4pt9gG8HcgnwMqao09c6EMCHGCjcBbI6uWSykDe7hX7mUjkcLHRdOJQco1lbQPiLPCtgNvcgkIG1kqzJSYr42VCwR3S7H4s_lannbIjFjTCliul8hXtfjQTNaXwCmhIB05uZ2fMUcG4tD4rsczybPhijRBzFcaVEsJT2TmBOClysegMLpKe2pHhcwkqagK1Y_3MQr3Wvv52mYNlv9pWOpxQgHqARhNG15-m_Erh3gL4R-7m8EaAlPIwfqEQFbZesje69SNxZCsOzfYaNdy6ovV2jGvYKooB2ZjmKGxzNsTTx5drk-L6aUZqn9EfXj-FpiebXblQ8AtIFHZOkObp2mQxRXRcB_7_hfUrnNtOx_dQEA3Rk8lf_lTi0cQx5JCP2p4HPjrBtw5t45txSQKJlBHGMrwCjq54Rza3hLqCphO8DBOfECDEl2uUtqYs1fijDA9S9DvRgBumAK7s9foav2BP_6XHaslR6x8x_TEIHlz87wkUg8-tHGFhILJYDTPm_4DSMsr299-UaY4uxPmW1gjhwEBHoK_eeDVHiiXpRCm4Ua1JIRouae69KHhcUmQxlad67Tx6dh2TGB494uNe1i8528rDwziaqpjd8RpE1G_qTOlaPKKOKFg40OoaxYOyYIUq_47TeWTfkQt7eqtpKQLLuaLEjwZw_tqmA0tduWbJBjKtD7ZR8LJuoXqhRKoDVchYkOhEYPpUzrlhlBUbmvfs84MmjoMgMLdU3dJ9nsbkMQGJzwBQndggaHegRiUgo6JucS-GWGsCbG6CUpi2rg8zkWNUVaPJ2JYjeg_2763wFtZqKJ1lh2SA03A8UmnHlVGWqHwZTk4lvd8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ddf212853ea2-33001334','','','2025-03-21 23:11:33','2025-03-21 23:11:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42716',0,'cd-form-entry','',0),(42717,0,'2025-03-21 23:12:42','2025-03-21 23:12:42','{\"email\":\"Dhanushakarthikeyan27@gmail.com\",\"interestedbecause\":\"2\",\"agegroup\":\"1\",\"genderidentify\":\"1\",\"regionlive\":\"1\",\"currentpostcode\":\"L3 2BX\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwnPS-BhBxEiwAZjMF0g6M6XhSp9sNNi4r7gOPWYYKtUhnnE8mK5x3xafkHg83s31JwFDfkhoCvMoQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6MnehsyGh51vw7XPzfqyh8o6WkzMurvUKvdC3223ur1jkYHbwjlHAAkB6XC7WOzvxWoaj5Wv0c05KRMfO-M_62L95S_uqOPWe-WMthb0zY0btFX1F3nXsMoAVKXwBbYLYorxthAsZdK4iEbG1ocE8TuFc_Csm-kW4ZiEAwXJwnmRwWEsxVOAtRFpxf-ygqEc1VUl7zdJMycCt4ErSZr5PWLwu_BLrFc0EN9sxBxkU-2R-bG76q6BHQcaCvZtqAjOqMKkvAhSIhw3q2fYPHzH9H9RpZ5EGM6Ey9oPv7oqzhFQL_YBlKOPnEzQHZTdtJ391Sos6xy2Ii9fRIAjwCysITrrm-2833pO8ksb8ScZakopMcaznYsqOUgFu8cg02ZFZK86qKz-r_69fAK0mdckQzW1KnRY9E_LHSElYuGT0PYgSVeNPdElzkro6ucZSNI8HI37u8aZrr7-YxP4PJqfDupkfeEP22LmDPMyLg7DWMwJ2Oh-jMrz_3EEChnZZC9DVAMdNixP3sfWpl34vHiT9FbssEtwrXEFzTgiP8wu-nfV4X7M5zDpeKAAqdsATepz9HIwjDaBYmZ07B-KJggE9-hiyvocoqs9HZfrI6XvuRPic1adc0PgYaZ1XkAbhsRV4Lu6ijp3fGkJ9bMNN5ifUmqfUUfU_Dn32x9fYc2dYJUnQtHaniusZRSLAMNWK-zokOD4dFiydDRjuphUzYzFQnwqkp3-2rALmm3jVbbWoPdu_fo78G14IFXmWRZP-gmhI3CMQmWvsNNIc_1WkVcrcUmxjn897spNoHJxVekY3NVy7J8NKZDj21gvLsOk7iNVP12tPRQ4MlE8OXEgI-nDz8rNCC_t5NF1zOUYX1j6--6cPu7XdisPn_8CxSPp3um_qc8qDh4-B3FKkXJzlglMrxrnhx_ZJSbn46DILtO5wAMVwdyiYQCd6o3CTSsK21HhWFbSKYPUVksx8F87A7sT4fctuenXW5bECBERfXhpQ9tbX8vtrzxdV7w75wvfAfNfORm7M0UVFwL05rQrlJyiDgjhYvUmSGg7iJNLS1PUTcWvoxUVfR_T5uden2Wz8hxA9Ve9eRC77XVvF6tUI6-vvw8JsHSV_4Ple7S03g_Suss4ptVncTYtD3iS7IdR_B3zWVMzgKoL9Q1_yxe8_i1dXPxCDatk_kYa0u2h36Ds6SLgSNhz38gC9b_uPG99_xKIPfTIUx5WdumbT3xMHzdQLhbqrMnTGM91jiqKmMR0PzSKZsiLXb2T0QY0zpxmyeekSONp3Ksie2RSxYL0v_DRzN85tptIulp1YRmvV9CtQh2BTna4JV61o7XO2UvlYBUniK09gk6PBf0gMR9dQj_m8EcpvAZdpFfwNXYuXsgWVrDB3bnladEQuYaSCi3pZHVp05xr7ubTl9bnxix3NMX9CLGblUueuZrrnO-cikv0ZGHa-gWKvDOwE5uSBk5Jq9B7qo87cnos3wwe2LUkJJ0l0c0K6sH623U8-0QG2bLm4B2FHNHxBMsL-HVsuY1mlcuJqYgJOW1dKk-NyDssQFzFCe0rU4eKKsrl3vltI4SXoOpVJpaXq3Pm4wg_y380UxvVufiX6zOq6EmhxHwDeNzJBbbRB9KAXdPv_udH7FQE2wfbz9wHRwRw5NQYsBUTAq19MpeAGCT8vJc-b2BmPJINhyAhxQxeSBGtNEi3k0emDbxoVD2NIR1SDhEbLuredV6Dm6sLTHpeWsbt1Z6qV396_gKxq7Yh3yMr2BWAGOQBClr-Hz-VH8RDOIV-T9_J1N59ndFxf9xHmvzvvOAxVTHs02X6050R6oajujUf-UsRLrZZC9PqKbGbt92tRvO1jZCwCi6v0OR4WzBDGpN3_VRquYMT1s4BQEKdskt-pbBaJbNzDZV987ofy_4awziwbnDkfvcCOGn623l3l0W3h-5EOUCYQfqZJVPp6fNjvMW3tWMw38F0d_goOog6iFN-izSlpLYKukKKBqtBxdb5p0wQdOxOW6q7ECpV74RsWXGBURZsEoxUD-6henxgc77D43wsJPr9PP\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"4\",\"workindustry\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ddf23be32438-40066562','','','2025-03-21 23:12:42','2025-03-21 23:12:42','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42717',0,'cd-form-entry','',0),(42718,0,'2025-03-21 23:19:26','2025-03-21 23:19:26','{\"firstname\":\"Manav\",\"lastname\":\"shah\",\"email\":\"manavshah613@gmail.com\",\"contactnumber\":\"07570294810\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/\",\"recaptcha_token\":\"03AFcWeA5KO-a51wjpybZHm1HRtQbVKtrOpewQmliamyGvA5j_AzE9RofX_Keo1AWWgYyPjcXP4COnqxOdsT_R1nRtsUFjuaV7uYK_beJUMRMqEbx5qkxPt1YrJ0yDJeEt1ksmSxaW7gcBCmGBYtA44LCHmUIgdGK5vEnRsiESWRkJT3tV-vI1BB_xfkP_l49RakPCGZdsPsW3qXy7y8BcvjVv7icWIWU0YSt1e__hpIePJ1U6hw-4B-l5fhGJWMlmHbELjWD6sGtff8Xyfww_lNPaH_WnFItkyc6cAX0Znqwg2XLLetMMTn7B9zoTYsCSnC7rzabUVvUMinmRK3snWYEwBHhI1IKY8_UMkr2DWrqXtkOqGq93Pe9Z0usZKXjYZkpQEQ8mrahmi5cjeOmFQNlwKZrE0TA6IZiw3EQOlZSD4lYLt8tm5r6OEluT3C8RDlwUkv7KpZVsAvHRfKazPCFNnErxKDbAmHg2kQjWNxaTQl22yQxDSF6_FiCaVus3euWmrUKAU58SizIvtju2JBs1z_i-h174loExTfQl-6IsdAThMmq4G8jhBC69bxXtpKGiWRuCdOpobHN0pSr873G-RTM4hnO22bOX9iZHfS5aer3SlGKNy45ThnYqtFz9BtMbreTb8f5ra1MAYM8yCkopYzll_cNIkmwaesxWoWrlluoiOxtBeXS_JwcLBBnEtt0SiX_yahGf5N1Fxz2SYEyFE-qlF-XmkH3I41wyR_oSgIgREZt_fzA_CMUXPqbRHD1EKGst_2qxnhJG8bimErfY4JI15otsL-3eZiBsZrHvQp9asRiwg0IfT9iCelWvkdYJm_ioH7fDH_QttCyTLEaUdafxIgdbSPQMpkJvWJGRDKVHGryS52kZbMJC8BoVL31S0ob70w8aR_p8F1F0h66DkER26fwV5HTw2dfNDxcYdE57IhRg7xvzp1QN9oRHRV2TGUOsXlwKwx2ZdsGvjnpoH5zQ1a-x2uuGgz8i6sf5ck1LvHLazqU-tpf_sZzhscJGO6Szp0cfYsR-BWJbZ2kXLLaOmnyw0hJvzubnlhfLT8uVITiFMwcGFMBht930tCpRd7EQKhyR4MNBjSKl9Wi64PDqk6LbV-QUVC_zEd0dWxYyb5WTuak0YjWLWl4ktDkDFNmJnDg4UxblIA2FjaM4FgpL1DlzT9vlYMNICiOEyPVYphv40pQF9BpQRMmYRtvVQ6FF2vieMY054ITe_NsJVuls_yuvACKnblBLqCfngsa23th8DwlO8lO8ymj5QEuaNjqNwuw9YVn9oXxMKLio6_oJrDy7Ye88dEhFwFWmUBYSmuEqYysIvuuO0oM3rkpKy5rUm1iPbFYWW2o28jZt5X_eMFuRGEcJPSwJfxKLqa6wDZ7yWqtZmmnp_EpvozVYfGPNOAenn4u5nUUwkZfZ6GoFd245Isxgtjqo7L-5ltS_utY1F-dicYCH0vgWrpUAwPWR8Y3Oyr92LwtDgL2RBv5PRvGqQEs19WNzEbf6UqTmkyaFiyIAS8UC9QEzdRVEUPFwlO3EXkYl3QOjl_rsxxWCdx8qwuvojYglHqvFYF8gDuODuLTckcu8vcFwbbK4AFJbnuCs82cE38Oz_m9Q3c9HXG9fYCB6WstdbccBQ2g-H5-O1PZfDYwTy53BT1Kj2Rah--s6htMOTXQuZM0pcQ73zr20QQMkr-Cg3aUK4PCHrk_hFpc--2BYObaLgmIYdn0sUxbcbgJ3XqqpVgxYdfENfBLevCs2XBtHSKXMc_vh6RcmHAa2lwdPllFdrdiMXLjqPMLJ9_JTT9F7LJ0r9KnOS4tUEG_WbFWjTzjG5KhFrXO3CxsTGT-dlVfc6ErKwY6XJIRAx3k1dAcChhFw5WEMXapefPQh2_GemXwIC8iZ1vf5ES5CTMdZwErbaOs2ZAwMEaBT4Q9ZramtQAlFi1W-_2vDc6Mjvk0NgZIErpmkNqJC5y0LS_uFb7T2XvdRwFfXBekOOz-DycUczyHmGhVkTSNSrvBR5M5PP3YkmjMJosAgQMNjSxmGfTQ0aKEYkmAqiEIITZ4EJ-o2w-_2X3NhNC2muHxCPX0G4yJep9yTAJuFtBlCkwgFqF1WTG3UpWYaVPDZtD5CPJT3abNvFBYegR-0fg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ddf3d526b5d6-87139170','','','2025-03-21 23:19:26','2025-03-21 23:19:26','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42718',0,'cd-form-entry','',0),(42719,0,'2025-03-21 23:20:31','2025-03-21 23:20:31','{\"email\":\"manavshah613@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"ME10 2NA\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/\",\"recaptcha_token\":\"03AFcWeA7o_Cwdh5kopRT-ciDkYaJbgHCzwcDjMxS3hKYtlf_7Gwotj0dARf7phyLmYaAm0Z7vyaFCXHwe5x0_iyQCdcL63YrRTojEaYkZDlJufurIJFkepgdJagqNnKS4MamnjRQ6Vxq4gWWHLTEAldoW_XxIDQG2QIdk-tCSBhErQTt0lRnKntLc5wr6NrdVzLK6tvbdOLJ1bDfDPWXto4FvoSGmZa7Mzdj_Z9O9R8Ia5aKvH_Yf65C2jAH6KyaagE4FJRggV2t-RvwAghb2CsHGdhJFfmwepQtjXr8Ivw3TxodDGJpMXjDGci8DH3ZuQfDI_WLtmFrFwpOcSqSgqrZAvETuSLc5HdkSfQpYRwCjdivTvqy0B3_VvsiBDLMhEQmkqKEHeFEZYezDhE7CfssgkKPR01cwQO1GTp8UZRg_MztHrr9rj0wvSmHV_mQ8nwJTez4Jp8llNW28_ZcuFcblpHh6YU_v7Oyyjg2EDfXd-3f3CQJFDFAjN0XCSFpKt7PAMgZlJq0UuX-F-FyUlnZLJivDZRGi5NATfEA3DAkBfoZw4CmKjUw99pvaJN1Avh6REv0hGgyrbAtcVzOLqg_iFR5Fp8bTNJCaOzQOEtkdlpQiVmDUqfAGk7PUkwJFiIkOhquwqL8kjR3JWFGahMFpzO6IxolHjGLfziR74vd0mHffdPE4qXu5qHjb4APjnhJ27ZZIiGkgkfpUrW5HbvHBtydqG3pwPPg_U7vS1ZP1yOUCdmo0BHMeXkOiEr-GTnKQm5Av4R7U8yN4QhCSWpg4_F4WadN3siHBEYr6mJiWZLdzs6mN13OHaGiSOlLpxwRo7xpmBTgTX05KZ4pNavSXLxWKU-Rf-0qg5JRU6_1cMnW1fgFm2RIduVxqn7aeOvNTCWXspC_l2lo3uiD7YA5gFzIadDE3zi1Ke_77UkXTgDR6aoGNdCwzEAC9nwji8kPYyFdvlx7eamXV0NBox7GhCER16zKR6zsdGOLnaWOKGUjSDT-00RFEAompcMmbcNulqpFTOUzqo-468sjQpgpDleC3cOXGyNsXdn310PW4UN7MJ7RfAiAc5xkz7JtH_UBEE7OLgfKecAFY83idwpiKr6zhKlMrByS6xKbXHtq3HZ6hZm0gBpMhPYDuZXZuQm-osQVmqvamL6Xyf8XVR2RD6G1_Vt0ufqoJaQZtsVKKqEyNnHFfjZamCRqLPODPMxdFbSml2GFvsL-mS_fxrpaItDb0snDS6tHsWQ3O51wYXqn__4ruUMXlj8hGAvsTkzpBzoTmjem4GY22p3zwXfjzn40gvP7YGbSqoG96dPRRNTqkSC4iBmf0RBScU4zAb172PwdAVVOpeBZJUJOb4Wv0QjadUt0eeOm9W8pXsaowfdzW1h7-99NDmX_TpRnt_CGad22W-CTxfHzQRJw9NMfSTvuo4bsN3YiWJfWfRT31R8_XhEcLkyoDLax2VcZrKaNRILyz4Ph_2b-zHtGfOASctwjE6RNSRLsn5xEdOh5OgXwPp_yHPQQ7orISQ6_zHARVWi_nvoeLMqFRvwLvBchFg6k4FY8XaxAkFOYvbQSl80Ybs8wT00rI8aUPLdVYbgv7hdZMm7usvQA_WAGE2NG1SD6GUOA-5gdWaoF__ldAPECZxEwBcIDgZ2DfGiW1h6UlFK8yAN0LXbOAp72pEVRBWbl-89Z9uls1TFcv7VF8YUDRF0uM7ylALwOcS-2NA1lYW7h6L0hAuozSND10kOrWHz0CdZM-Z0CLa0A5V-HpcoYAqGVEpdZ4ogcbL1dOh96up4nNmBx_9eX-cbVWa4Dld7gOUYn5p23v-mKsYwBXuu1vELB3FFbv1xMcmAZ90XnwCUKHjElijyOUJ_xDt572m4SfEFNJ-7dTNC6wgR3gwM5ZhVh71cvyuJt8FAg7hOJYHohULfFbLrxsdRG24YeX5VTUoQbvx13m_ItWzXa2wHzrH_AV7Yz30GyQ1sjXJwZdXhvqjfPJJHnf35oD7jsLYFiZcIKB05yrfnWL7-DbODzqRl9uskxY8EtYSDNWUvU2VGXiMcsL14S4QvJ39R5NeiVOXq9zhHYteiTCXdf1H2GJwJfdS1Wd-dKZ3g7wJGt1CIjzAsblSZRXcYNpQORu6wq7G97pOA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"10\",\"livingcircumstances\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ddf422c34d98-21913476','','','2025-03-21 23:20:31','2025-03-21 23:20:31','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42719',0,'cd-form-entry','',0),(42720,0,'2025-03-22 09:03:15','2025-03-22 09:03:15','{\"firstname\":\"Rachel\",\"lastname\":\"Martin\",\"email\":\"rmfitness.massage@gmail.com\",\"contactnumber\":\"07896231732\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gclid=Cj0KCQjwv_m-BhC4ARIsAIqNeBsnOkaCYROCf-NVBckYy4SlBJGw7DdhlTY0AdeU_NWk_RPSz3sjqHYaAngsEALw_wcB\",\"recaptcha_token\":\"03AFcWeA61MXFxi6eNIdW31qOs27xoI05yjIffWM7mPcJcGPhHMPthVsjf_wTgsF9uWhsrnoBUDWI5r4tajImNgKHXjpk_z-YUC4r5mFY8AIGerRrTS66envQn2ghXwWLRDO1Yn7Ucq1DkpEfuBqy5C39SPzWNoaSFtushxmF_WwuM1Ptkckz8a-dLRShNTU0rcQqyOvjsPJbKtdJ-UTb-AyQcnrF94k5xt9b8qB93utVWrnLLkHlWuQ8sgSKNDIgJygKczdUomrkNSoDI7ZuypnAXioBI8eZMvevYNorMVa2bmy37YkWGg8YUVYB-_g10VJrK4LmRpBJkc0-eTtScqmSpKxL3sqUHbnfLSSXYntsCbFFz3vQ_HSZavpDqbTsGizbxuLVIljvj60NvLM9J8OThYhkVSaYgMCvJ35H7_CB9PsntUPak6sNLG2x5UAzf6Osw4dGF_WJArinYlcEKTJTNU9sfWGd0wrqL0zo91uwXogPcQga3Zw3W1zVYWHgkumlLHb96BWs_yvnQME4uXxQLe3XdfCPdQU5iPmhXupHXhafnP4VnNUntQLQA_RQB1T0jmxBpxV-6bsaQJPu7RleqgdVMlmq85UrrQevReYjNdcaXf8fbZF7HGatAMKhDs960oxHCau7xq7sEh1KgSpUUNZoFf3zIYGyJ90y7fetc-7yXRCYTHSdYkdde3lNaEeAOGA8Bt8DApmbHn8lCKHtxQVKqGA-zufLcrAav50g1Qh2MPpimeRWlEInKmRxDRZHMGU43CU54qT1FaC-gq0BiBa2p7DE_44xXEvo74fUd4WXU0HoZ1SUcC0-0-vbvt5wkXamo25eQDh6yyf-QZuCXliOvGlq60j3OGJzS_hGRR4EdTiSc34ZXmjgCvNDvS25XMLAYBBsxKKYgQk7HKCcKPpNKIWrttnA_zH4YHI34ExUXwGNe7vRnqYeH3snQpkOEZ-OZ_rpZmI44GQMIcCo0sjw1l8aex4KKI79zl1YfV78xkHO8-vyuvQTstX418CIKpPcNPAX3rHv700l8cEVPtYCQfMpVge9SCXK6WnbU9UuyAVQInA5TgEnomLYUGXiaOhdlSoy4VvdY_RInPVGHA3DjTT15qUbQRYoSLN15SA8JBcjDdeb2QFXbylvbkOqk4ASICFn55482tDDDHj4VrdG2fEdlI9McKz-5Uqk2WZrAPAox_UD-yvBW5cN2s_cWdsHlb_ydo6gNynH33B_bNrinSLVWvUgsDXk8cG4TZSf_Vni2Yy2xoKYhnQ67GSb0CWPZA4Oci0ZfGRni_6rcRMAATqi109VSmywyt1Y73q0XVUTsHSXxWsx6KeokzBBpyowsLe6SINWnyU7IpbN_t-HUlI5EZg93ULMpoNWBS1pLIXh4w8rQ4qDJJBFDQIUH9UwN6mqg0iHTjYV7GrTrmTJmVqf8pdn0mQ5yQcKlVDEJIjYMHLQ1wACm4pDVCHHXZQ8B31nsKGIG_imvROs7mVIIqv6kUMSYC_w9P4rQhxmV74sqkbICXnMDETj_kabKB18-EnST_MPeR1_LOpabeLh3kh4NUB_hF8xoBhKQTBtIliRWscd_-I6wfsY76qywwKt_uuJeojjbvqxtH5QXd4CasoCh2f4FTYLlvfrwhDHq3iTYkn9SpCkAJwW8BkkAjX9G0WOI5OZbSoVtt_SQDVb_-LFilL_ik14KU7Zab22zzjjjnDHM3-1OTjuKLHM_ZNC6UQNFcW_akdipkyIAJRq92a9BUUrnjLIspi-5kNA6iu7dd4J8Xr3dH_i6kCRmpRPs0aTS4dTAjtkhDXv2oaTkPRgU4ZUih0eFF8tpElRbifzmshWh79ReapLQhEyQeaVWtaTFWj2aUYirfZODJa8SbtWIR2TswWWES0vm9sKSlcTUxNpHpjeVn2mYlwP7bD-JP5Jk01tMltHfOR2LQ5OVu3S6U-q4G86m_i6vHV9vB1zT21ogKXQ2mqZPdOqzfzjSj6a-fUKbjS_o9G3dGSIRBZowsaWJYfCHM98FaKrm6W43xkuXUEyvGUGYjWRtRi7dlSOPCDVOYtX8N5iRIYLKDUdsGIy6s_OdHCWLegLdp29t_4kkF-NTVtRthT6qJK6czREzAq-IqABh9JARe0lc7mdcTw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67de7cbb4ea5e4-00804053','','','2025-03-22 09:03:15','2025-03-22 09:03:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42720',0,'cd-form-entry','',0),(42721,0,'2025-03-22 09:04:21','2025-03-22 09:04:21','{\"firstname\":\"Simon\",\"lastname\":\"Foy\",\"email\":\"sifoy@yahoo.com\",\"contactnumber\":\"07923214181\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sTK1O_YTmtADhsMrjuJsP5a&amp;gclid=Cj0KCQjwv_m-BhC4ARIsAIqNeBson22xmKv9_xsL8EO0R9VSfnL09EXQwRDsvm16q0Hyo4BSI_imRbgaAh_WEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6O58XXM8KVTzGKVkNhvv647PHUsbwPn_mVCmHFyWSbG46BWz3mqOuZKc4k79YBCVZI_9TKJNDKcWPVWDOQuLiH6TgmpVms5YFSPchjuxOS-murh4XBboQdjYZPn8JJUMQaxdWNJFpA9oqqu9oLjSFc1qC2taEaxWZRVjJeOIXqWm6i6ESffJcQ0ExkaeKhoCUCQsR_S-KvzzL8UNt3sN9KoYFJSb0qkY6KgbbVz076FqTolUMNhjjbSx9qvkd4yVR-M6ULhm-QWGHHxZBZJitub6SiyFZGDxhesKDqxd_l17gCDhCcor4gcSTKfWL8CVoWwTupOOiQTuszU6f9HX2EMi95F4rsA_s31ACfdZ6kjYhst1cwruX6joIPGY26mRnUxMUn_5D36aqR5L1d4LMt_xYaPXmlBmE8gIzBij2CoENYPFzeDCoMm6Mf6GHWXRB-L8QQLB5EWNwHe56C2IHMpZCLrKA74qUMTSiDynUliadALMfbk4vWJx-P-iYpW8UvJ7UFrKdAVa9Y2XVtD4FPG7bqbC5VRRYpCR1MDGoXEPhb1l4E9l14g6KkmtS12iU-bdjbPqDxuuqdmCu0pJZSIwEucR1uf28GeDPOSsW_jEvphktU8XCYfkBh3TW7nvDwwkNI0Y0b3HC5EX119SByP0T-MBPtefbwHdOB8MuiEyLvHaKOQUDOomz8NxQutbmgNb9jPTKSAOMntDejTdFT5899FvKUPK1t7N2koLxDBgnmWiRpcQNZ5Bsw2nL9uZ9s5jxPSchd-1lb8qxma2i7RDP5d2GXJGmYGWT_5tRJb1EQ0Y00HDDtMzGTDkWZZwZs1h5pggugLxN31_yluIRC53S58RuNtfOHbnYhRIz4tW1dj_XncE_9rJx5ycF6WBkckxiKrKUTAQ2B2Z-jRoqlm_ru_CGNl7xbSiTo_xTFTHmGX1jrduaMr6UsD2sfdjlvTCjQSvJO7Rh_SfJMMbs7Yfa4PSt6nx75g8m_zcdvVOazopUjqtjEx-1yq5Q3n4ofpRgTfnPOV4JQo7tsqkcYXMpLNIEaIRtaXTNVqoPFh1BUQh4UkVIL1en_RK_Wp8zqMtkTjeP9PnPhQyOPnVh3vqokTPYAmRNj6fYa55P2qNA1nVG6OKWdJUx0oe6EaTlfrREJm3obrcPEsg7tUX8Ma0YjKM4ug684AxcKAAvxVAh5zDWwhywS5cgCU8ZhyLnU07ywmkhpgMNLUrPYPlNvSW7hRQRioE8NbuDIMmHQdV-niSNqzwJFsoLe325pTk5m-F8B69miqlVM6J2zS_YwpEqrSG9ADzlJV2lD3052uvdMqw4GAy_ihRskDDlSu8uae8SHcjA3F72YQ2cjO4kvjyWENMq-xHkPnpKnS_uoJCNOuXU7cg_JbtJUHB6okeQRjSPPbBxFZQmU4r6cqNenU5Laq33cw-kh_adsHse4TLZuJjyqLajSDoIojYLVB6ffxQGKyvNAbFz-CRqNVzgd6mVxr9lv_lnNmXpjHC143OnEXB86gBMhE1uByhVNq5IK-SGN-hw9zAGE02hRmbBEnebRHFzscArJQIo2zKoYpcrJrKEj9nX_xjMIfh-32sZT7bJZ0BSz_1o3Smi1SaJcmW-nmGvCo6C1DTAf46_7UR1ti7iyfDGMr2E_NophUu5HG2k96Fy6CLg1jBdXPr6t3vI7XNRttEdeuvOQiPewCmE8qUAcnZFwKd4HgdQvbP_qYGq3LDutDq-57A-K0PQ_dRyDBKa-siUrPhbrymDSUjH3eTID16wZt6N058IAvUoNqpxHCWvtF4zszDg38_I5ICmu-IjVVbHXfty30HTDe1n4pMbeC06G9B4Yw3WcBj0YC3Gs2PYjnSKFYPaI8IWCl4vHUqaGHPcaPXsPKjan5AzLuFHsEEzaNoeMa2CQRNaxIPuXN1We9Unz0zdGZejOR8r1ITdtPh8QaYnLu1nWVgDJZ9MzXys1ANwI2z81R-N4xddGDZ0g-DaGs_ZrUhgdvm0UmguyyCVV0H2SqZDdg_OdThF2_xv9z72XsI4kYSqtf-nEM85nDQva2kSHdI2S8f82wZKF7VHcyu7XlhhRgDEsVhXmTULHMJu9nRvHjdewqXZfFydfFU1tGUdRTQUUn21uTZzgvhMF4oxnouF_L55Dd4Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67de7cf936ae71-58205118','','','2025-03-22 09:04:21','2025-03-22 09:04:21','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42721',0,'cd-form-entry','',0),(42722,0,'2025-03-22 11:29:23','2025-03-22 11:29:23','{\"firstname\":\"Rachel\",\"lastname\":\"Martin\",\"email\":\"rachel@rmfitnessandwellbeing.co.uk\",\"contactnumber\":\"07896231732\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwv_m-BhC4ARIsAIqNeBujzLx6gpKvvw526UISlDXh0IVMc7Hwlb0xyWcHWOE3Df1B_w9_91AaAluWEALw_wcB\",\"recaptcha_token\":\"03AFcWeA463Ub1E0YAxaUcqvvWrp0HRBo84PdFhHvbdXxi7_N0P241WXtNijc5moBKpGzttEKy-KlAU019Seh7A0ls50Zfe5Kba9ESMgy2azSLzHRYP2v-UCydLUD7PfC-mAoGRnTxCXPlxGVWKa0fGsA14lIMcU9OYf1pzr-wZHvSNCUqZiZ1z_piqL5AF3HH2mlrIZZ0yhyPkWpwM2jFJSC5DlV9FUcnhDtW_yc2J5wItfniy38ThMTc_0P2BVOTtN5laowfzrL4tZDOzKUzsF4njPku8Bc3prIExlUYKKH-Ye3z6ruMoirGJm3rcOcyWd6MIwsHhWzmskuthWXngUS4dIypupmIPVIZNwsu7Jrsg1qinoJz_38pZKlZdfuMr-ymED2ZqL6tijrAfBjLjikeEahSy5h6YJkNAzySZcfhiRiKPMfnwmcjO0V2GwAL9KlTFsWI9UDAsMgE_oo4If8Ao5boHDSN5Zr5anWUaQgaaZ3WD0k9RK_bQM0xehVN4LVxkxYObCPzAcjiMaFGKiW0gXucVaJHdntBtvQAGPKiiwF5PU5I_cXetSlpXyI7KlxEmNtAaDrs7v8Ezu0RmX-FIUyo0Wf8WIcsTZYoKC-ja-iFwhIUgy3uyZMlq7cuD9JKPz4uMoU3zgDe_9ojobYNJqPAeleQAIjLZy5eT6_6EIsR2hxaF6fWdzVmDnAubVU2ZoBq5iFaiwl-CkYDdgpYWgMT8IUVA9De1R04z2nr10no1LIgYUaN-v3HKxAk9GWpIDs7kYXUXtKmTG3Hp2sd1xwbQfWlbEdzLECCkF7QqzXbe8c68Hu7harseSSLIDSZpiCc1hocN_RMrIjV6JbUN5ZOwTPJYCp46eVXU1nWZj_iD7VmY4yWZ5iFDt4GdYXHCAbLYQ3MunkKRuDh9nmdsWbv2CBFSikRZmtAFiLHJHuFY8769TEV_fPlUqYqU0l80Wke9w1bUb0reKgDB1pd2Ec925LIJcaBnc3wD1r-1xAf79j-yZOqCZ_G2VRFLTxGcfWWzY7TuiSAn3xzD-zRMqQU3Jh4KOSQqwzPwwhtrepZu7IUDGFRa0k75PkWJA90L_uyjZukt-Bn5V8XbamIii3Y5QfVCVrofHB0kgJE5xPMIBopRcqJuQQQ6fiZpsduaNg0YznQWBeouWdmMEh6M96fba66gQZra-GJfjAaN8ucgLNgF5gzeMhxtEvg24SymQTQ9SuLWu3-sVDEssdUIEJEUCGn8NChqVaW0e4Ze6sTk2YbkpW4Y5cnlKCYUxuFW45NG2jdksVZAVO-T0aYbyxFzQchD8R1Gnl4enj2YjpOLXo3A7_BOryXPlljC6fjrJEBu-zZtlxy6rYAcOMPiKxJvILGcBos3Iv_2PemWdYpfD4lR_6NqA8k8CxS-wcqi5ca_VbUSwByE8PbXeBnvLbgAgU1xoIcBSvCPV9lJ1NAKYXaSFPA-R6eqef2hrpLY9VAARMQK-dC_ZX1OF2uR-CeosYOTTG_YCdKtRBPxNYI4e9BaB5PgbPDiFeX0E8NBtnqdYdHiFv9yEsIDaXNzNSYN9W9nKLAlg49Fo6akEgqrcXt3N5k3IWMAa9fXN4ojNX8imtVcQg5i74InTjTsJCbHLl7xKeopgZaD2surb1C8iUCqCghOev1bNkqzOLOFRrm5zj8KTeZULKZ_Vfa8ZLIOB1RvyOGcXlB_SJglFz-ACEEptD9_NPsjCNWBCTdpQZnmQTj83aoRI9soepR4iDbP8xw90KIIu-RNXdYF8TQJ441QgAUbqyoXgz3KFDdW3NEvAHW1sExIKj-Mcn_xUtGtGfUABYX-5N1T6BO5k1kciGqDGgjhoCt_tNCacnRsK3Tr9VZXnViC3SNtKpcYS3LTBLSB90EcJub4V-ugt3hGi4TUH3TsP0qsA8R5pYUr8oHOxiFkvUiMGfo5L7UncogfHBwrkLn2mN9MqExM6ZCL282Tk_N67ziOWyRysxhqHXBD-pU0QkzMEXq3C0BfuqQsYYsCNmcw0Mm2tLFesApiFAF0wY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67de9f002ec201-75994678','','','2025-03-22 11:29:23','2025-03-22 11:29:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42722',0,'cd-form-entry','',0),(42723,0,'2025-03-22 12:46:50','2025-03-22 12:46:50','{\"firstname\":\"Germain\",\"lastname\":\"Gregoire\",\"email\":\"info@yourfizik.com\",\"contactnumber\":\"07903567898\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwv_m-BhC4ARIsAIqNeBvFnwr7BQRml6JT-A36KYpzVUSOLjctEVwfqxWWKw4WtB6zRtaPr4caAoRQEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4t5srSHOHx3Ho-AUw39rQ5kMu7mMfowT-dgn0EBgyVo7ug3Iq-QVoHgQ7VKp_nRkpbCij_HHVF8L-jp6LWQH4vDT8y7x4bpIEdL_JjKpqpOH-JY9LE_f4nf1dIOuEyHTm4qD_B1RxQLtT4WxGXgTWlTkCxjfTAbVJxwuS9EwRqZ6D-geXQNfl7Ez6Y6SfK4G7mMgKaKNjfj0wPodZIMsrLrvqIqXPihkE4QbHr43I4RM1E5Oxi8OAj-FM1tZbB-UGC_sH3k8PDLJgpaGj5KlciOJMG2CGZ05wnIDGU4v3kirQ3JPRWGf_juc0owAwWU1UsqJ6-jciBmUdu3LvAZsODUmgITYW1zkI9zfmTQVOfrKBJItVf_KrnxtaQTLqY3E-aGZSNLr-G7pYwTx9t-Bd1jzSTdtxux53ah3jT6m9MQGuDP1EWlQQzoTMz-_078YRM0bCww9Wni5JaacSLprV2lQ-_Wk7RHrWYkip-uCmY837jVePLeTs25x0Uiy4GS_qlQZPuP--sRR86kULUzcj-Ocqta0HZ4UDw4y_xZudmejdR7MrtQxiykvkI8QeyP8vm-ADBdpyp6gTRX9-K4MVTp9s9-snH_VWhQOlzaVV4hvj05eCzK09J24yeUVuayc8qNs6uVaTYx8AwrKDxe3uqRIADv1w6KR2lo-xXKR9inwPngKKmbrGcqGnBuvRxIVvVag48078DyDdJ0T7r3N_Lv00NOdr8JL8-mu4vwJXAy4ymlfI3NojWc3mhIucT6ssMymv3nlCw32usAnOdeRpyBsvMkm0pWlQKkp2xQlKwwpOOBrP2yolIF0yPFCew94N843SsNM7Bzvz3oqCchgAXMme5vziJUSHMscTg7q7G5pEaiK1IVJGETMi8VV6IQdqe8QHezMcP1XyqMORQtaY1Ou5KU6VTZI-p65tA7zuP1JqVfjv_XzERbjUJRsxzAUhs9IgyOjwLyajabbdK63cD5nX8xW8pYwYWneX1J30lXTOaqHTqaZ0TdCtfG86W-ySXbVMXozWD01IXoWVSVw1KZBh9PQl1u9xkQbXhqvc5G6orOh1ccxiAUK0jgCctguCVruzBj0pSL2m_Y2D795JbruzQCci-71wPBEm7Gc6NIT8xuEQ-cFlHUbJzzi9ZgVJAS76Z6EVMWurJgKXybHEdTbWIgLqcKChYqWOTRPek_P76fF3ymK385TeaCbwrK5V_rcKzEey3GUksyc00akT1xh3q_5vYKUjhhGPYQKaDRCSKYG_3-i6KJrNzxTVtPOlUKfZ0IuAQhDih-tQGylsSb6n8udDim0rcm5_yLNHOxmtQqLtW_GKTAIVVWFlXwTjad4IWZFdho99tmcwUYGicZ68ZaYRJv89kYMmLP9x9vVl7dZWHhzSmcyXO8M3d1kyvbbhxA9uFxfmLYGENQxd71lwGh8oZvMS3GqfjhRmvbkl2XahTY9rsb30KjFxJOt9iljNitHpT9azvtV4ZGmB_uFvnRqIwGwZc0TlCsWzOVKEmQkdCmQrfp4P80V4rPLl3XyBWbRou8Xmbr6fXwpsxXRjmQxZz4qj30L_mizlmJiHwuC2LoSmjWjRlOJpODJnyK91xqAO1aooCQ-Sh685r0Nd-dlbumWxTpZ-WrBAeSXMm-ydhWAFqd9djGdI6h2q8Oc9ypXzcVy-1Exn9lpDhBs0xDRzQ_mPxkhVuPmuAYVuaQJcpP6xLHaCLQ_W3JWcPnibjIGfmlTw1V5g61WodA6wimvGeMfaniAQkcT_k9pCmoewCNUt036CWUN4lafjzdeJE6aCO44aCXeCuKFf_hET3S9-moDniac1QOUC4sc5tmnXdd0VTWJsCipSfvuBoUte6D-UFQ3wx-Q5NTXAZFWQIdbTIfCOVgNZ4uZQUyDLQF1H_SJQetDSyfCCWBXdtnMlsbQ6YL9OS8r0ptR829UxU7d9OrmoGFmRv1JJ5s99c6lnEantL2G-mg4o2Yoz2a_OWu8MZSn7Ih79ewzm4zUWoTBoRwZb07yC2cqMWyLrb-DYrh80B5KgRNOzAziQUx5Yk8hp8IauoBhvhAZrIXKGd_DXif_zKRk1nRyzOW2lGJkXcKA4E18G2XhdNGGve-_3OtOs2FNzCW3cETpMEhYn6lQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67deb12d0f39d0-60473025','','','2025-03-22 12:46:50','2025-03-22 12:46:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42723',0,'cd-form-entry','',0),(42724,0,'2025-03-22 12:48:27','2025-03-22 12:48:27','{\"email\":\"info@yourfizik.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"SG8 5FR\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwv_m-BhC4ARIsAIqNeBvFnwr7BQRml6JT-A36KYpzVUSOLjctEVwfqxWWKw4WtB6zRtaPr4caAoRQEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5PvQqwfEwGjx6oppWwMHSX7Dj01y4Q6TNfkK-zIaiN_nwkVJAt0M0VDTKxWvalbtYrn0RSn4WeHvgpMPjmOMqyiSheepAKOq1351nX2TRIkGFSO3niM_w_0B321j4rc16Vu8TfWoRFCl7qwvraNbo9pRB4v7ZIugvOPsCWGx1wFsr8uEu14tWyJBdJsqpDE0rdGdg2REfcaidOMTmY8rsWMKbbCZYa6nh7GwNsJZVSJSpJtnoZOSB1YENWu9hJSOHnqjcXZZeN_HFkPLwjkoaOVzsYK5brs_ofT4cd-4jJjRBR4rKmhaYipxtZYxyN-CDu0Am66ialhkC-TME2wIa2-z3NKfOzzpeJDovenCR4cqaR9hhZJ_vQby9WEaozxCFOjGR9osl0Px945_avVWg7KRDysKJOdM6x1y7kJXC4wc1301_RuRk5C8jgpIbOOVcN95LbNPIPZAKqbOhwVuuQt84Ktup21IZxj9I7LHbsY9-OVu1grm7EwwB_nut7dVYtwFWc2XTd5adeVopMrxXeqE3Fkbuwxu3sBkcTY9ELDsrQKBcaLOsjU1kDMsZAszS5RgpQQ5yNj_ty-_M5GgWEy3PIRhhc0RCbpGT1b1IdyapV4pquMbP218DYucTXep9Z1HjVhKgrIMOULFJwt4bC5CUSMNqnI-b9bRUOEUegDvdHkMZ_MAxrsZKdB4HeK3XD04SF20kjswnGxU4Frd6tNL5L1Tvc5KeGQ1ctqpUgEWLfsgsZ7aZPYRdlTZqHurtUhw4I_ARi9EIqoyezrlbOzOivR27KCVhsn0jl9ITN6ZZXqyEx3tO5XvE9V3M_WY-4V5pgx4Dd9Uyo0fuvGktupswzIpV5vSnN15Wf0uafnDFuf4-eR0T_9CHi662BgmSevxY4VhM-Kayf5I2UVORlcoyCNWESIVGUSu_CzmixyJYOJe1_Wlo1RDbbGOkNLvM59nQ3TcwIjD4kL66TUw3WcLuvGEDMPHwd_rD_oVpDY3q87ha0vlvsk4Gt9jGnZvZmrO8N0pzOzNXvjgDjWEPVzj1-Gd7XcBymtbeHTga3a5zh0QAg5TBaqT1UVTkdtHnSWZoPDdB9EU7UxlZs6jKmnoVLfNJKyJrtyBxkC4rXYYbHLUabxqrNvs7K6zvusckiLs4TamsnqQIrR8jn54rbUpnRpKxn-E6SHjb4JBhxme8MABRgVfVikMF_-qQt8RyDKrC_gYQxep8WIxD9Lg5tDv2BZBHDH2gfH7vdKNi1CDWSDx4IE-dN8IPJCnS-DYSOfhVtIVGAhkIMSiz67kG0KHyPBHzPBL09k22V9QCLHVibGPQeXo7oT75THLq6luDY-gPpeEEe-wbD6ZFtWqqGc3FLYhc3U5ENAG-sudFxMN20VvVgmvHzp_1Rw7z9uvNNWQYMvwFyqqmFsike77Sq48Td2HRjsZrOF-yJ5Ky5iOXv2606NOjgGsynWPFwV7jHtyresgOAOfNJia73ylW-wXR6D_xWXBPJ9uZMZIE0X79nda4ZHOomWmyWw6JwlQsrAbZ9OpxsC2xaAy84o_5FjXniwCD_F_pMbJ8_5O_nv4UHGxXr_swNDNswd7oHgu1XI5ocWRn2I_R0TqIn0Z3lz_kb7a71FZUnpX4NaeDAEjmYPO3l5oYyV3TxjQWSzjxduHzynC4LEpQHQksguj9W6VZVsCU55bUDrCQh-BPsVuk_0JaleTBfQlusWupOKEH0B0HCrHBa5EBNIic5-bVrJGzDFEoUwmyrrWuuPZN5ci2JwzoZ4uNUfNPWr9NMLF9CGS1bcSuoHr3sUGt3rywEH76-RZJCv1R6DTVHfUQohmcI3S8XS6xtO_RR-K69wRMNsfwrpCyOGkFA5Og7zctFLoxgdS2r7aFPL-hsZDNGS8MI-bX58v3zQIVb9Vqx2AHPE_GRYBNS5Gr01pkEuvnqDVaoVmmeTqWwc-Pyo84N4En5hbnG_SdVd_WyA95MmxZ9ZFOIc6TkET0HaMrAIMhtraO7vPHRZFO1HID_Shu7_8P5lIpFvCvAd7NpSCf4b2bkjS5y9pP1r-_nBUcIGQBdmlC89GtiH-qucqhKmiB6aza_jwuhx05eWppE16rQkLT-Sb0DPYnaIKnmqZ7GFmF4fEV05A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67deb172432812-88789895','','','2025-03-22 12:48:27','2025-03-22 12:48:27','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42724',0,'cd-form-entry','',0),(42725,0,'2025-03-22 18:25:48','2025-03-22 18:25:48','{\"firstname\":\"Amy\",\"lastname\":\"Atterbury\",\"email\":\"amyjade321@hotmail.com\",\"contactnumber\":\"07968660745\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5fBSZvB_5jtbzsOvEqvcv9oTDoCPeiIK-3vocN6kEbOZ9XxZuQVfcuEIuS-tlqdwX8B3lLNfuxxg_NqabmMVLp-x8COma0XZ2Vy7fGZFmmr_p_LkUjO8kPv8Zn89XaOHyo-4uS-7TrBsJG_nEyCRwG1obmgmtZh-sJ736miISUo9IUtEA8w5La2VnAOGwQXU_1yDUTQBBDVYktSgF6wFULvCMoPHTSAa_S-YWS53R4sblPQz_9fCemMcwvd6Rf0voEziTWdC06F5Zk_8HbmmJ1AZIiHfoTu-Tt35IZNdfYm82B9pLAloqMMprOU7OwJug5tQe7-5X7yRqe1xOSUJ3pkL2fH6777_0Yzj4jVCNSSEtnOeIeF7E3uPLoPYcsCM0CiQToKSWtsaXtwY6_ecGpqFAZmlI--ER1xBiD63kJkBhDIZz83Q6Jsj8AnF4QVkGR3cyPAGbqnXDVsJfFXhEW88ihzV6fwrvrV5ERYFEjPeEhdtBKjubuXoxOYDtXKr6SFvRodS6AdpkQQdaqSPcJBt5rMFE7hPKxWGaQO0Hy0r3vk1ak0joXLUjet-kTfWqDc1gHWFLN6ndIX-n_GsQrAygKFWk2WP6rjJ4dAM2_Oshnhcc8PB0HdtWLzvXhltX2p8D7rFRe6eFc2G72OcyjDOEqn4QJdhDQnuZZ5SrBS5WZhbTnrU_znMt4QDSlYGB8AL_8wtO-PAVGKW2wh_R05sUpM7u43KG-r-wDcPP_ga4ObmpXb6QzrRO1NkIvWLVxARGyzbY1chalGdEjx7TOK7ERliuhAWqcL36bZXINQCxnqkkDK6NsXtVbPltqnQOEE3g5FvbInSQt7JxOm-KxUncrZCp6RwZ0gLCl79KM6XxkWzP9geWGyxtqxrbRdbPZmxzaATE48AX3IwLYiQTSbudDKSFLBdWIhGijxpVOACbEjUv8J33XWSHCtN2xggZ38f5NTkfzAAT9HCAJ0cEOM_Kw9JUpGDxpSDZ7eORw2tlG2NMUXL1qc0GnBSPlfOEteAP5ZxAXkYrS5jr8i8IKUbMgQ9sbYbfdIs0kRUedRlTuOIRmYMSDFPymQqiG8dfNofatllMNtDF9llpMCfIGBKr_MQlKCMMR8XY5VVMdv_ex2tvLd2M2xepIBEjlvblWBO_deKChnxerkdP7F2O7cki5Gj65U55Kl7wFxiaNiBPJMhsmVAHoBogE4QIS9PCCLGuGNnfsJSROusf_YPh6wBJOspIw916a2qQX76kmZBhHYgXnoCDoP5oK1RUtoreWaoLBzwTlZVSq5ucn1Ku7G68MhhmYvMxikQWi8sT83sEQaTdgBGBso6ZdAl5PN7_-lGomIhOLnJvM_WFujO2xDH4CorjbEvndV_O00JrPSi6dhnkXd-yL4ZgaurmI9sPVeaT2r3Tw5ARn8ZRZ9P_mHM20uQy4N9AfPebO4jR28akWBcGZSkty4-Bl-5RGfNbRhtRQ-G5EBaIBXbXk8Wr16tO-OCiSWeYLcnXYTAbb5ffdd_heO3HqpDPEiI8HmxWt9VcrIVN7XTAKL2PfN_qw43tkZ7rZ5po437eFVcgxiC_fqkBefzRPEq5ehzvWR8sm0TDKLfwar03Y38FWO-RPzWEsbnqep8WKzQnJWeNdm11bPaIpzxQUVBllWIvN80WijDWHGm5HEzMTQghTnCt2zx_5X8h2I2eBocrpgoC4I7HJ7_7R5_TUe-T5TzxHQULHqi52Zn1l8tm7HbSucRwV4ZjiQFGXlbeV58mQ4qVaEcMKPibnLCOFJe_CsZdf9xSlWLU1m-ZE8LzwFadVd09XGRoao-2qiWsPwDqb4P4IGvJ0fpLnHVyq0caxy3f3rufy0AVHOcRIGmEfNCbeOSI9vXdz8MLFVRhyeJ8YP4-4dI4W4dPEIBQ0c-Ov3xMRwLkj1DxMj0bUDvP3GdcxTzdXA_kDczMK2NdIA72mipM6QStYxSykwTyGMsnZ-RG3QJrkwWi6zDcdE6Jd3moGm1Rl-86mJvPa-oCV8nxoy-9OUdzlHA99OGkqedButPfme_-_qSbf7EuS4Pfepb2JkwiUfR9YN3dQelrWnhA0T5A8HbjWWSJXUDQ9aJl2FYBL79prEKVLnzXC-7T1CNGWz2Kw4irOMdshfqqW1S8xKvT9dFTNFh8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67df009f8e75c9-11471444','','','2025-03-22 18:25:48','2025-03-22 18:25:48','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42725',0,'cd-form-entry','',0),(42726,0,'2025-03-22 18:27:00','2025-03-22 18:27:00','{\"email\":\"amyjade321@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"LE19 4BN\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5FDgW7OMILNvsYc0i1bc1R_1CWxSSMhv0rjWAwLcIc0XK2E73YDChZjW-oibLGGCvTqiG03tFm14gx0sQIKdsxlfYcDj6Y_YHyorWJioal9pOyT7fRBeGSFGv6ldqfwW6Y53lrvoKRpxiqDPcc6YQVefmCgUKDTGtEho3fnTuQWBu69ZEC3kF1U5ShJOf5X0JoSbmNZBhNfpHULjMFWyTIxG02jAsiEF6xovYdqqV2wyuvQE4pg4v-dAb5Q5pxzDbA8uNXfJf-FHQV47LLOP6k-ChsNtb3TdDdCLsbJ8loQ__HQO0o-zfLlV0wqZy7w_QEyb21jFnooURBnF90IhtlU8BE1b8sLZRPtFq5jWhIG4ORZIGIbUW_MExOTq8cRSUPP6x3mc7wsroxjga1_fp79ZhgsFd8M2i4rSp5OXSszY4Hsko2gAUGtMOONrZTR0a2EyRzP1HNiqZb78OQOuqHp1ZB-duyfRMI3lcnCFo2efrTOjnEQ0TroCgGA-kg4vQy1_C01r8uo5dUbiQH3vSj6chjkcdOQly3dJX6wkLVhcXDXJtLxdA8p566WWo3uBXAgmGf5DD6rWxd8Q_DUBsfbpM-OVu1PxC9cdsoZQzDDdRGm4-5IHGpbOQYWC9fe0W3WbCZDxQMo8B9nciIa6ZCFGLS4C2_EI7C1w-Oo3vEwx3lgO8EolqqcJoIlOJejopRWyZILqUwfyX1eEYMfYlRBczWDLpHhmihDOePo_O1NsBVyx3odRXhaelXUcIaNq-VO0xrQ-MUYeex1ZqGFLYGUKBck_DKN1DM7SzrP28LBuwYkiyPtheL3gVJTYVTtHNqnqKulH1G36ROmmC13YIgcn6EpA1i7SejP5dGkvxEme5Ggw8PVaK63gKgFnRm-VIR3H_Z5P7C7SKrgPXZsR9Iw1kiv3_5nC3ADL0C9dGXPaSYAFAnsOTeHZrj3tIvoAczc5Ark3_upAMsc1gBGu8LjxaIrO25wULKI8Ud0Y0S5tARgxy2aaSXOryiG7_SbH9pQodf_CHwZK_1iqVNtaOfA-s-re0kMeYbgRUfphfb3CPe3Cz6l4akUMmY7Afk310jw1fEXcajU1btLqfzvq1tvU6pEQgdEB-u2tLDasMRKNC7zU10IwQBpOxfTKumj5q_uwvPABpCKOxFluIOE12EqbcDrYXRinjtok4NXS4ZdsnvKCA_TDUZ6PFrxW3BzPzeG7GBRIwWasdoCW8_Fgx-XC-3WeFTDbWHTah8aaoZ1Sla1Dym1SZBgueXFRc3qreAGwjF4sBpu15nT67MqQzYXOtVvdQT13VJB0hhYD80v6v-oqLzsL0Twy78EH3fjdeVP90mWI3vXCLS31XOIQIqy4kLbKr7Cpqu2fsJyobaD1CESzbwsrhXHAruqFNjefFshh9BWTYK4Vi7oCjifmK5-zomdAoMNRH05Gv2PKPxQnxMoWQLQXSNcnDMhPDUuU6Cbx2pry-c-zDgIJi8YAsbawgkEUaiNY950ms6HG9BzuEG-rlt5DxqgxAyyG8SDv61sIDekW9UGOg7pmNSqUNQrK6N6cVb-Iye9bwnczr0kZabBFsclLEEloaZwzJ93CAMV4Ke7vvMFuwpz_LE4qC1Oh8WXLDTkSi2FL15ZY_xNEo6jZxHvNsxyfZR2lGZS3GJMal1tA1IdjSc8yRLayjyMwUG4EWgq84Oxz9jeOX5kW11rI3vunAUl_0mxzqsOpMVEEypV2RVw52vEYXF0cWL7hnevzWtLbtqoImCmBRSK1st2bFcVqK5RjfNyHOBGBGCB1ZWHr_eV2jqoHWMpe3zr2TEvKB01HkcpNfTy2RL_ZFr_EugnbwsrkU-8KSquM70SpcrPRyCA03Qlgi4VMEY-aXwehx8qTL27TWOEs8CUcyTsK8zqfptL8Q4WYwCOazeQ67KemB7aykuevtuqrEMaV684yoqVBNGuMqlBE0ER6lxOvjf7kjTFnA_BHCe7PMtaD2R71iuAlDneI-YB3wNvit5Cb5aioZB_qPcRTW605u1LLSWlHAlTx21zBUESBIto1N4SL5VLQdp_tDv_LwUFZRRGXm1CZZRIoWkQHBOJvNoU9JHbigQpx7BmaQUDfm_C6S1MovWD4KrOyUTpHC5P_BbpDYFA4lZPO65Z_nKVofkh3M\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67df00de4d7786-39960515','','','2025-03-22 18:27:00','2025-03-22 18:27:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42726',0,'cd-form-entry','',0),(42727,0,'2025-03-23 00:59:46','2025-03-23 00:59:46','{\"firstname\":\"Angelo\",\"lastname\":\"Ordini\",\"email\":\"angelobesi@gmail.com\",\"contactnumber\":\"3279569914\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/foot-biomechanics-made-simple/\",\"recaptcha_token\":\"03AFcWeA6fBvSWs9-VYUJpDkklUgoAqB_XF6VIKuaEHIxBFhe1srV2jTEurf6uat4z45LhpI7k_DaQTPCLn71_XRo9Uf6sk6e4oPr_SK5W4ImOjFaQqj-XCBbqEjYsST9juX_H2qoerl5Wc6iYeFL4Wp2p4Ms78EnRVHBPHdqtDvyrB7uG6IHxgml2IpeiOIk4BB0fQ2dwdDI7zI0NZJDJ_hmdv7LSstmIUsnlU4FoNKKHlrzZQWWjs0ENs-YxNExx5Ef7FIeIce2lxFEf3Yx0XzmF_gsecP6y1s7fkEEkn5z0X-DNq-TM2n_XfmkLcLhxhssS8ezohz7FRYiSBOn6-h8WAuWYIP_-34UooCj_oh0NHEWNyjNTtxtaz4wFkZ-a6j1b4YIRpMDcXR9GhErxHg305LGQNWayUwVeA81JVdB4gzI7iFE33cOOnR21-CpUQWIIxnzOsyb0MVE2pEhArnlBwJOan0OriDE0F4ExNCck_e_FAh964q31WJZ7Es9B90uPYtFp-wqPazKOCV05ni102MbagGBh1jQvU54dN70gpjPLM2KzhGEKBwV7XK23n0vUB-niuH1wcqKzYrah6TcVBSFD2QGWUnWDzmEkGuEbYhJktUYMKUbPeHT9G9GjFpUpS48Y2tpTB4xZPdE2XIOXQ2cUAQuCcWTeVj-6pj3fx7OyFsgcBFYldrZmf5JSgpJhsX1vFlKJvotCd6MN7cFaKN_yXoiGXaO7RnNhU6M4hFj_3pUMHh3TAHh6wc0esEw1wZaBA5jRfDVBkELNOitHrznmdzmERGxZFfh7hhf39kGgP-56-HUJeArwhxz-fsOfaiLwQFZ2x4pnUKMHY5nWAswPs8aTC5Ft3nmHpMkYdI2bsmd6MohsKFNd-cSE0XKd6769wU6U4Dqgaiuc4jfCB3r3KW3eKTo4UZJBBmD7x328F_2RKHybj9Qobd_86wJq3C3QnHDh7aqqwZW3-QUZr_R9ZPWgl_Un1id_3YZFgwBPJx5qGB5YU5GtxaedyOBfPm3x8kFjV9qPi1c8M7ZkDfNIA5ngKmy-ItoHVjS0yHCHuXBn-cIIaqxuL0YpLs6gUDyeQpOEawN6Ydb3TmiquAvWGUap753gUl8WRu_i5qhZ6jdVz4H8WM_VDv7_qWBmsApay8vIAuCToXgEprGI0_TKxLVl4ITNVvAnoRiQYu8NxqmKnDdnpGmN3WkiFJmk4Cwu6qmDluE3V2gDIXMEU8whqfBiXfnwX4i07t1M-wOUXTRCGFALVJyhBQP6m9BonGjNQIQfo5bOZ70ObAehA2cdPfw0ap-uv-ZJ69N48T66vZjwa2GBMS8as-o_t8K-gsBeXnlXSv6EQ3HhEvH32kR3EDGO1sMkXanWA5yV6d1Ced21ugO_aWKBbGAj9NnL10shYHTX-8Vs3T36ccm3humtAyzsPI3Hg9EmAWFJK1IOhhqaftm4hKggfbuyT6ygJ7g5aErpHHgfQJdAwX58l7EWFtDSH28CCKNq_qdm1quJm9I3cZUJbjpiN42AHCpeBf8K32WiU82hx06kAFKhmzlXhRcPZOqwTS603_aldm-gWrSDqwnutKQ_P7P7R80fg5lkcWkQxuVd6QYOIrtvxXrrc8_eF8pZeqi96pUpcESckelhCNEotMo9F_Yjzu_NbpNF7nuestX0MI3N-tV-fu-AnVZSpYK4TQxqwBQiSXOYs5mNyOCq0uvStACw-_Whrs-xBqc6RvsCPS9FV3D-JVCm-nfNsDq9DMZvIg0nY_Bi75tyR1Bl-xcCac4Ykj6zGKOf0qg7XGRca6MqNROplI5JHeT9Kl-99hONHSRV9f1uksBZDNn_9h7HlUHhr7QQSUwdFy2ii1JYkf-hVjO3PUYjemMjTCwzaofMVCbRhf2pJD1HGTcExecnwnyFMfY6cHWnu-hfSe_Ss1iezokmH5FqEiKbPHGs1nYp1OuU-Wp6v1bPNlXpUQGmjjTua3ERrOWZ4H7xIO0ItwkoV6Ajcy5gaV56LHKRsecrlR4keyfLOW60JNM\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"5\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67df5cdb02c569-81725603','','','2025-03-23 00:59:46','2025-03-23 00:59:46','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42727',0,'cd-form-entry','',0),(42728,0,'2025-03-23 06:23:17','2025-03-23 06:23:17','{\"firstname\":\"Alisha\",\"lastname\":\"Din\",\"email\":\"aliiishadin@gmail.com\",\"contactnumber\":\"07508307179\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA5dmiKF4iYoOPfAfAfm2BjxC6tFImoG61vbprCsJ4ZSkJHzeKszVhg2CyU2h50M7Vpou6PpXVtOCrxU3ic4ByDvzI0SJJFrG93IRgiEFn2lD5h-gFmigAImw4to4iPz0dyOF6dzRU518EntJo7qhs7bvl1g7mPnfOl4TmYL9ZwdzTWeJ0TH6p9mrYfGwNNjsDQEWZ1_4HYaCQHxXpoHPQzzJNOawR22NVjl2mC-KwP0kCf_K6hvaDvt0_H4pV1pLFYFSzhq3XpjeBixQ2jO8Da952-WIRDxTYOFNJup8PCUxJi_d3y7ygQuXs2WN-nbFfIuoGUDU42Rd5B-7F7FZHNoeWhDlq8QaA2IZNaXEckFtMe9VNsrQLI7IikMRCIxgkvG3St2av2anfUdLJ8pP8fBhTvvh39pnPP9WHFq74aMzJLIeYWhcZfDSh9fBTNN9gYSvY6gkqicd6SCh0pezq7nC6Bf1RAHjXWIvJlyYuhnMTbwuxNliKpXc6GHdQNrxB3O0i6dJFW-l7oeV17_IIu3FG5XBkhIVknAZb49aPGQit1XLlPt-2K9aYLPKX8COVLiCPj2BbEP7mEfEzB_ZuOnh8iLeL2RVdvfv_DOluIXNFEcBh5lMORGYoYtfDtvQwSMyS-rAmwGAUOhAIgetomjL_A7abtqwm6s03zyGtpNl_ul_BwwxOL2-Zcud7-zB8UlBuis2svuFkiErqtj2HenPCttFBafv30jUlP8PoWAkHsgH52d7SH5Td6duR-rKONGxp-22O9qSwNtgZm1o-jte6EI4jLaL80JcXvwA0DsKC_lEuoiG7DM6HM34WhYWQG-6TFtLObaMKcFzpY2tlhGxZb96LOAh8IBSOUXXRfsGqUKhDQrJeDPZ4foR6qBpmUBZcNy0Vcm2bUR8yBr58SmSpdcwXk9bkORLVVh-Fm-cNX191PA2aqE1aeKmbUP9Cz7s89FYFgP-DJFYFCeabZNvCusBQa2rVgcjC0toEz4p5aR-i8kiDPAsmhsJ73CdnQyqwa7CG65ll9sFbunJz8e_UA2feNpbsUA7PPXr5jBl_TZHbHcsOOemoT0h3pNpdUXqbAAlAIYxdn-nIGkGi4lkx-Bfg_k3LO1yBIuKvan-ofOq9cOAnfw5FTo1iDINV4va1uNWS8kQO8_ldOm8VuYHBvBb8-NlYJsmkJnDN1_ffGvzBDIkbH1sf8H0UphBVEsWlCc-msis0SiPP59XpmI2bqcsgiBODBCOkoITxwGonPYe3RArUkChMGphQMnAx15BFEu66avtGBWgplnaMbngD5zGPlIN5V9hDLNsbBBpB6kADqIKcYjfcgWs6kKw_HImuwjLNz_AUoxGheZFdzhVHsRHCGQrR_uL6EO4yFTjLrO_9s2941gq1uJoHFhbYaKBy-3sPGFvvGyUL5aLMdU6S89yxGfNoLZaG9104h1oVmI9T0ouL4ZSpQKAfc5dD3FTMNq4rReUpKm6mtvrC0T8rs7FAzIkalzN-XCEbMD-ehvoH2ScSOAW6PunHTnRUmcfTbnCEgf5hAlWRd6S_uhmUtddh7XtMLYMmKYHGBFz84yawQjguio7m-5qmPZf8gzjzAOVedTHrC6zBlvCYJ9qbcnrIVQQANIEcsJP8J25Woicc31GE8MOr68KrYE6LJhgiY7cGuW5O0sujKlJp0zdcmUpGpVooNbar2GGYGiukNHntHV-8IkEt2WCUfyqUzxmq9IZ5DKCM7MN4cza-xeJ41lZPKLgBZEL7UtHR7YHppoHmdQIOH9eWi2QtDeHSbdyeeDlVeuOhA8MW8Mn_DegKrdqBShS8RBqxLeayOm4_nGV8bLEYgo6ZY9NmI_jmudGeBbqtEYg7sMyry9zlLcNfN8I0rR7u6_cPd_w0wTrH9O1nfE278TNrJ3BEMPNKar83ee_ZVNWDXsIAMJw9V5YyL2-Lugkdw3vMrH7e9_2Tsiy_GtfsKF_7mNj2rsNH2LQ7Wab8GJjvJPRlBHE_udwXNyKHCI4Ybcvf97rvKWfhIda_8XdCR_M4XLB2ELO6rcu1rv\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67dfa8c576fe88-87356111','','','2025-03-23 06:23:17','2025-03-23 06:23:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42728',0,'cd-form-entry','',0),(42729,0,'2025-03-23 11:58:41','2025-03-23 11:58:41','{\"firstname\":\"Matt\",\"lastname\":\"Duffy\",\"email\":\"mattduffyzz@yahoo.com\",\"contactnumber\":\"07484227423\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw4v6-BhDuARIsALprm32pLNLXtnyyfi0fkDPUj0kLFIBx1LcXGTcPihUGIugfrIiVckY35YQaAlu6EALw_wcB\",\"recaptcha_token\":\"03AFcWeA5CrgrqWAzm2Cd77CFVofk4e89zsln0yq4woftczlxPSElcfsQbS6xNvgAGXJqfsZlASXU6o5RMt2CAFT_Ps5HdrzMR13ir20FEOBytSanKyyeO0DZcCjGryFd5_i77cbp23i480_DShwVWXA7jLJUYuYjMqKnwjkaY8tdPW3wKrS63bXdfznzWCSNR6Ej9zS-4QDNm6kzAI5G95qlsyOIv8D2iLsU2IX_twQBlT5Jza64EQkOnxt3YBntkZgOE3XjcFMzSX2rDOPLhTXQuhzk0StQCPu4C5Vtyux_-Zc80X1MT0DI-g_qVJBGzbqM06BxZMwXxHrOjzQMxiVOS7TUTTmP6jsE3JpKGPTzUxXl_K4lnMaicm2YD4Z_OLLrdFz2e-KjeolcPS7ELVI7aF7_u1qzn88m4xnfk2RJCBAcXvn_I1MV9I17S67OLavF-_daOuX79JCkWT3SY8qZUdcQPyOz_N4dtRGIuoWXnd_X1LrqjgGzIFdJmaFI5-69Fs5ckKgroTEVj9tQLLGdkB0exP3OLbqlt3n3S9L8iS50L3qrabdKQvIIBzFqttwAtZslzroJe7ieDyIE8Z1tUR5eNd2ddPSQEy_rwHpDBkkTGG5PwSa9zh2kHGajOgqNwUbYUJfZoWsuoVIhhIUKHF0UaXI1qscc10wSa4rrzOFM87ns1Yy-9NFzOMPz1b80uDJ2h_laWjJblc6gxXb7VA-wrqmfHrSJ4pvaCbgcYeIDcl4gzxu9dRdG6mYvFdS-Pwb0qAo8dWlqIrvavXPFKFQg0-BhksC7_nldHEVqzWd56YwUtyfsJq-moUKoal1hdqHJZ4pb-U0GMcFjVV_Yv8qM9VD5xTz7Ul3Of9hSfMom28EJ-NNk1Ed-PU__bsx1xZ9CYk6dVKirhWE0QWH87el8KFOUeoS5V7wIPHm0nYvlM09a0IIhPzzH2bokfUEaxDF_oOIzCzJLQ4tTMlHigJhveTx1V1B3pxmwuHx1CHqZ9vGgZxPwagLVVH-NiO5dclTO48zIso7pIKOcFtfueDz7iqx8An4HYFhLtXciptHlvLmXCrCB1zN2N-hQLzBbpteWqyDuvnKoitwzN0J76zxdUVHIytOgOknGoRkUlu0mCGcw-NhC6Iq7_L_hW6RAqgcs_7aHLFSrTkU2L4UezhW4d1Fv4kszoMfhUw_c31uL4qAoM5FHchZ0HC61tZKbagVpBAPEBrxJi7bAn3wtKBUnloD1zPTfllb2nmrV91g3kAOjXydZ7niPn9E31TMz_5n8Q2rAlHFvc5G5H6XBcMWwOlfChWYgFHXRuNewYS3HSK6PUtL2YU5cOXzyaaA1YiqA4p384DvQ1dEYnPyYOradbOt1tUHCZbZG1vQtwOVhfskk7Jmxbt8YzXNAJQ3Q2A13zynBmTwukPKjDESCGyuJZc0-4vYRfQH06iaDEq3eRH-jWdNPCFPB7QmNwuWl_j8KVojA9fNw8-LxBQLv4q_n6-OZu7WpGkOAfIISPBpZM52fXki9ONA3IHu0o4TvdEnWwhE9je2XqV6OctPUAkK1d4BFAkc8YpbpfqJX4yS4MGOtVQXT3PvGG4PZmkNq6qMphtI9rpKjA-lXzDmxmOHipu5AW9WCHJYa9q0oo-oKkCZFU-y2lH1EWh1mBazXqpwuikxiO0UcnH2VfqrCWvX-lt6Src-TXTLG0BcNdBRlXL_O9GWmRAOs5SybIQBDBrsrO41QuoIiX5HET22RLLANNDW0wjPM_nZTtSFy_1aIEjAIZhnYCySzKBtDsJNKONQU3cmZK9lp2A-NdqPYt8VEYt22dK1LsXu9jZmtEk_wzPMj1_B1lfgVBZtD_O9KKcMCDD53-mi3o_LDllJPLrR468o0lCW7aTHiBQLawVFpdQFZJACOd7lkzKSBJUdqMXgRZtDRMpk2Gd_qgPU7C39fqt2KDnVgPVHc4hWfo5Pt2A6Px6YRgtFSewMnKFVJfRuzoqJ7-bJIU2GsSgitkUegYV6Fgz1BWcR2oAtOqjgS8uf4AVy-LMedTpQB2PgYr7VpDpy7re-7Mb7WM7E93IoKNGrZrCXCh8G--dcw1QgoCaYojLNxYxeNDJ2KOCkeqTkLKx1bV\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67dff7610c11e1-31150339','','','2025-03-23 11:58:41','2025-03-23 11:58:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42729',0,'cd-form-entry','',0),(42730,0,'2025-03-23 12:02:03','2025-03-23 12:02:03','{\"email\":\"mattduffy69@yahoo.com\",\"interestedbecause\":\"4\",\"agegroup\":\"5\",\"genderidentify\":\"0\",\"regionlive\":\"8\",\"currentpostcode\":\"BS41 9DL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw4v6-BhDuARIsALprm32pLNLXtnyyfi0fkDPUj0kLFIBx1LcXGTcPihUGIugfrIiVckY35YQaAlu6EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4-am-sL0CdCJE9RReFMWxBbw1lYNe1Jt31DfB7t5rutdC9x3VDapbIoJ0W3SKE4AdfxEsv-Zdp-cIsQDt0yujQBrxiFCSuNV_ABz3Pq8grlBirTVta17M8hPh3KRxqkCMiz2sAE9wS-VbF1IgxFiI56fMRwEmIKN-lG0YN6bqXaNTTdV-abqf4baZCLgZ2p3VzOI2pWIcZZoyu3oOlUV_s6GHAharh5AB2Nkvw4YFFAnMPy3PW9J4Uzid4xrETtYsR05hjd2N5OvU0vj4Aab3SaP94RemfP67-5iE9QM5UHobun8g0DZzRFiiPtuywdTLtJ6--D1wzI1cgZtv_WIKCrN7BGG-tu3M6JvgQ5bnj_sX7re49cFz41uJnFReiCRts0a7mXbu5W2zt-ugbd_bJ844l-v5ZXWZEEU0M1MoVro-Cu0EC26V8Rd_yqgNnL1yKpat7ls8M56hszv4JR0vQISPt4yn3CmdbqHKXQQk8JpN-d49YGLYHYzhdOTSQRCZbm0fm2rqVMewxfrD2KERP1PLhx04W8ocXD2XBLnKyFeyU9Z2CPGr_VmbLdiinCTOBClZRHl6afzudN_HG3BLW7BcSwke3JGxFivESLsHW83p-QYp_9bk-gWf7Dk1tkgEz-76-7xXE9Khb1n-NptSWGnGtR2XIvDm6KnvptftQ4xXv9jaleJ0_ISD1DRvh5WUQmL8OFHK2fxmcbSLNpjqZSP_CF20yijdb__ko29a9IKi2DA_JmB_wD87j7HFFyXM3rJJSvFNhq37g0tHitlKd4g-A-JH4SYPH3E8WaENywe3yoQeyCq7FSySdp1g-IFlkCc6u5k-Sk4iJDQB-q1fDbWvGmBjDwkpw3Xg1795zPk6LxZbTq9OCXpt7wLY2anEf0thPtN6R4bv9H7p0jnBE8C3lvSZMhln67yenFqTc7cHyKHaIFiUojlcExpD-XyGwnd35ye38LPXz8w2WtJDvsPVbi5Jg_0XBgncOGRcW_VpWG-iROw4sClj5DddzFjYeOM_Jr6dCzCi1K9P7mqoF7_iNJ1Ny6eRpr3lHNrYT89q8h3dKigIn3vqiad8P_dCLmdzhSBjThemyDhHN4iBV6ujI6DS63ZHEP3gKrW2tHeD--jWKs94YLnd-zRCjnvgPsC7btBs5ce92fKvG_NP2b8QMd4BR_ChWH0g47SWCEp_YFrqBf5NrMxdb4rVQWve0NHIBrDRYuz_hzSDkw2_aMylG3dFt3Q7IY3bXr6u1WQlhQdgYb8Nskp9TVeAQdAsXqQnR1U_ey_wRQ6vKbzSX9vpCqOHq195qArwaWA-znx0ZCsysbIe0TE0ln4_KqNX4ccA7aEvXUkogrwt-XSvt46rV9VksfatFZts6O9EnxECIzatDuyPoMlP3eFu7EVjhAWko3yzB99gKGm8VmIqzSI-9be__eOnj7zaff6W9lnU2o779nct9M34t3KM9ZADDRYIkZ_uRQkSRB0klyHiNNtBxFEOO_6qh7kyPp7m6CfQrF8HQnk8_Huds7t1fLgBaJq1wrG9s0EtawdxhfR0HEsoaIJeL4ZAxD01bs-j5qVt85DLZG-6Cxr1W2DNz6lvDhYyis1E1QkrGBEwQhfmUcEpdej-Pvyine7g44ymvpP_9bkXKPaRF_NUEKo6SaRQIH2mi51uOJHwZN3F53YqK9-twMcmCEh5SyNrE5qd06mfgHJLoDN6gWHA8yIjJJpEbLDCPPLCLIf2MioPED5e5Ns_MvB3-mUP7QHCBc8OyzwsirnkwaPDUOCILDxi1rhCfpqVQRpzCWBpck7QAdfM_mrK26KM9yRLXq7KQjAPhIc_70ScjhG5pgZF6xPYWwCIyh2F-6Qy9K7UNjUApDFAljKWEFRE9jw9SVIy35QBWevl7pDiuLocbvQHV0OItzobWb3VyU-ELnUwIjq_LNBr6xfd38ehw1CWNTe04Tt_KM3OHyL25L1eR0z_VnB7qkprpZFokGsKXAdNhpiQ3MrAJabMcp_wPOQc1DmAh5mkn5_7kQAYWqEnsFF_Jy-5fssmDt4jTUrsxb5k3Yb85uo7lsjx6WbjtBpIBa6gsXFm2L3GlLS5o7R2Vrq49OLFOMuaQKW86r8g47v80h57K66P11ei9Rw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"15\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67dff8200b07e4-73608248','','','2025-03-23 12:02:03','2025-03-23 12:02:03','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42730',0,'cd-form-entry','',0),(42731,0,'2025-03-23 22:24:19','2025-03-23 22:24:19','{\"firstname\":\"Shay\",\"lastname\":\"Howard\",\"email\":\"shaydhoward@yahoo.com\",\"contactnumber\":\"07941098942\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw4v6-BhDuARIsALprm30DVbDgGRCqGOQnIA5OCXx6uLQudWYQZ3szNfPdkixWPME9UHmfiToaAiXQEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4fxO7xOI3NEd-dUVYzNB8y9fteR1RNgaQxJFSyuVta-SZuX8bCw7eZXk4ZsJIljyCwC5ZSWslGILhfdvY8PKfUlaAXtIAcKlM_cjQgYBqvnfq9JZWTlfkP0dPBNw1q65VpEeufdZO1S3tlDwNyR0sBItNF4cb4vWyHGzuSl-rFzv8JGI5G4IGNK8b8V1pO3Dj5hooWbBoTNo3AAmJwPXzBj1ozjo8OdBl3pp1bE20lN5OMj7xtz5Yl_DID58RiOLdO4gI7e5dDsndA8qmuGAsK-DgL19gWoK6BCGUj6yTc-PDa4v8UzcyWDv-V-SZ5DzKZqDnaOIbOOv9TwFg3cgsasmjf0sjxIOUI2B__rdsfnpndroE1CXgpglaTGRS70GI2z9jnL0qTPOIowTrQFyzcVUILUmOzdCic76NnBJpuSD0fGif4M4sbfae_AM7lPaVupcT1jZoAlNgGgwZMGVjZL0ERFBZvjeZBINdTYktYvv31luR1WyyLy3mYi8p-wRCVusC_KHCgpAzaAf8TB-V1_EUB_Ix7WRmP2hFCUWo5IeN6fnx4RGmlvG4sAtlK6fnXbyF28kjXY3o8uGJmxq9wf9Rwq722uPzvwJgou06Ql2y_y53tiVKj0L4XDSne4pGAn_nth2x0Vo7FMsJ-z6an2O2m5aZ_mFMVvv34w-X8bvPJ6rLIS4NmrS0khXpmpiU4X8P9dqWj0Nw6aUCD_dp7WrSkJRcjNA-fRysFVeKknKz3C_Gn2PWMnj02-W8n8TVClXWE2F3JFwt3ME8mzmpAuENXi2Gy9iPvbwyRj5vxCbrh5F94nRNuSFlZykrlcUqWnIx-aWLGTsGXAg1hWULpLAYPeFDEESWX5ndr51hH18ZgUtvQPVAs9Qr1JIAhhGH_9reDNIObu3HRw7IHdR5GIr5_wvHFW1wsFoxdEXnjcTi8zJu0oc4xMZnCVSXhDArjXwkzSP38m3O2EiQYljDGA2_wKsiWZYswpUTHZcVQz0k78C8WtlRZwORwojMdnx9RdWMQwv3LLJ1bwJnVl3dg26x4J5-diBfsWpHOO25Zh5cf7LOqCUYO3JUECoHRMifIcVQ7oP5hZvJHwRl94qum37oGX5BatAJXWY2yEBoy1pLDO-Llx2xfiUocTbIAgjXv-RaClzj91dKYYeit2IUqoNAlIpkemfyFKPhvQZfHQVbAOxoESfFY_QALlZFtiiNp_Mmod92OXXSh27RmrUNW8UfRxMdv2Mxl2HnxaDlSK1JGnPE9Bkk5odh2z7N1qHBuwEcBSKfGEOgX6OY_1LGytuCr41Ek-MWrrJ9rli5Yk2Zc-iTu3HNpM0aXJLwOsdemxKZv9G0y3qv7WhOTEbyyTPUoTOrVX5Ra-PPxiTsOfohxRjetInBXX47Uz5dAp7X3JTgLUZEIM7w0kYRnejtT6xkgx1_xtj1AscT1Pzc4PC-wU2JIqVA3Ng3VlICBcwfUKRlfnwxhiBRRqBgp8iBZiUNMaoo0vXhnSbLgCaKThjxxYPaTkkPLjJR4HJD93GDCVjh4qgIht9nrp3R7wBWsgw9o6831llU0EvVRnajHvdAYLNQgw8g9tT75DywTnLlOvugjZ39PFZJ-sQVvBK5MbfXANRlTmSNY0G8Bhtz82R-voCkTAdysmPqykmggVvufnP1uUE4QPQLPtGplkgr2_0g5eZTMMJER4lYj1BJOOWVzN5rRl1vGsZ8a9Ky7fwgrgsGikC-aLgmkwMA49cSh-HbKmg8ulWVfEjY-eDTCAYKz0WqENyEW809hmF5fsyeHmMUMNC_oBHE5Yhey0mPe1ym0V4oFZsUKpscsu3mfC5JtbxecWxgegaRD_8cb3LepEQDo4rHKKJNUA5f5R9cYNd4vUizud6LigF5qZtXZH9yKaqQyDCP0nE_qxFFaIilkOqHvjOV7g9vzQCV9qbjbub_FJMHFCB7Abyo1ITXj6mds0-Xwn4TR04PG7ZswJTuZBOPG654PLJdibXoU8AjqFpiZ5Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e089f3069c68-91853357','','','2025-03-23 22:24:19','2025-03-23 22:24:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42731',0,'cd-form-entry','',0),(42732,0,'2025-03-23 22:31:37','0000-00-00 00:00:00','{\"email\":\"shaydhoward@yahoo.com\",\"interestedbecause\":\"4\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"SE22 9AT\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjw4v6-BhDuARIsALprm30DVbDgGRCqGOQnIA5OCXx6uLQudWYQZ3szNfPdkixWPME9UHmfiToaAiXQEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6SVd5ssVhCpmwmGyLbihvXmBym5CjqjaN1V2LuaWdtA-QjdIepweNks-IlEo9B7m7TNBofEpUVOR3gi2VfiNg61lhvHYcg7vNO0XeQD6MhXCe27kn65IjmhvE7NgnSqyPWXnWHdxrmBeXMLLHlpEAACLOMsEWLwTFsU5VgV6D734WA3ICpnWbXUfosMV3jO7a5SEClaP59UxujPGZCaXUCN42_2BjcazjKAMLBLPGefl4X4Ke_p7BBBr2g44m1c58rinFTGmlWzxI1rCztVwxVnuzg1p9zA3VbRAFNQ17y_9tb1be7oyc4x12O7-z3H9teuASiI60U_RPK4xKrW6W678NlqlXEe5QTs3rHj_o_CWfjyX59SfQ41udmZbVURzg1VxN2B_kufKy1jH7n9Q7_ffPFAVDZ7_I56iDYoBAfB1d1Qpx3T47jUh1onV4ePoPardAF1fJqnitqqSxXVyUni4F0aFyvEMSekCC7mAlINl6mKrIxFW_gEwzMpGarrhQbPAmVLiPUC_kb-5lLUTys1s2cIGa-OxSSSCNl859in_XDqjV_413wcrSMBlW9OksS2cc-ZhOdD25KOSK9Vn0zq7N9-bPUXclfqTlMKY2dyFDnhUW98bqYaBv13l0Lz7CXuo4t10HmCSLnPzu4pJWo-lpvDPvNDnjZGguAL7U5i_6oDVTVcW7eRDeGGaYPNjJyL-epnFkQpVlaPLj7BVVSZRiQ7Kn5RNc6pQtk1FUpXQonIEWSoc_x4NSA3O7L6p2R2jt_VVq3Oy0uulKJRmDUq6i5vgllW6P97n3CdNQCQAo_KPtJ9jIQrP6g9iqEhRMe96bK2gPSrfPydTWcItadpolM8ezZJAulD4iwkY9Inb9wbxxKjDQjphqMcag6QEWH1s8_7qdYk_tV9EJHQnfJIm2TiEnOk4u2IkVzhfkXwSWyO1lWEe1XHsf8EGT4YepP3zNCmOqNNHcJaKUZrHynL-GDPkK00RAXcj_1NzIgSEaW_A06_L1ARGM1MASI8-myx8VSMNb8d1aOYySMxUIdah1P13J7peiFh5nZsjX8ylo6fvr5X8pwAcZV9kzcZmtdsFI_c4iRKmAvfpKybJodDcbAZhsuQsfql7H8EIF8QgqsSJmJqXGBp-sVfEJJnmgjhlKaoSaW7DxdxBtSPocLXuRp1-VtmufCKv1FA_jg3iu-FOSzlUED1qDnUQafwDPfJqDLvh3qTejO59_NIwQmwRPrbmFbIR_A_fc24JDjKbbj72zjJIVCH2sgLZpmafM4TmyiqsKoQ25Y82h1A-2VNKRApgD-1UEaC-xIUsIuqAvd3EXzOLn1LXCDSwhtsAqZTGFeYljdV-ddYzN70ERyz5ONc3j6nhhgKFd4QvLrwxz0bygZmf7zFh5ME0sWOHVUMDQhlV0IG23ut8fRTCz-p4I2xo5IjK9MWizQWDfUL52Bt_Zy1TzUH-W7z_2wVRiPqz3ffEv0TdVB8k6_eEZiDGgH3dkHwXaLn1hC7j0bwEr-d_PGZj4mo7HwAa_2XvkWkZyVv4KzsosCeU_ESsJFrqiZNrshXYa97Da_c2mqkG2jDuTCFc7rw-4eixkDMVvZ0j1nV_0Bne0vJo4m3zXRkCQa7TYE099WAGp7sLLtdQLqMtmeM4sl2yIr2PIAl_7O7pRBNwxrCjZb06_6WPbml0MLf6QzrcG38eEjhWwCy4IzxCXJMf8MCC_V--NmXNFI6yTLqnUTMFXxneCUX_BF8Ys8AsKwawMCMbo3Iqqh4nllS1HuM_ExpilokrUn2zXuy6QHCcmc0ud5C6b72ueCB2LBpslFZoF61s7kBEJCeiu7BtOAURCKdXgpTihE3QBgQ4rbu-JUZrQVtYZq_bIMZsOKoB5POWEzlzHXnfVlAYudjEkhNF5hqIireePafYPt9FuBVy9nFwWr9xTJFjqYSzQHkUYmOsEddj9cA_y6eXCO_i8BjTBGelCA9y51WyApwDpeaGMvWouaBfHYaUMxnpEH5HmOw0yH26ykYO_0W6QTB14\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e08bc9c78c85-68436381','','','2025-03-23 22:31:37','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42732',0,'cd-form-entry','',0),(42733,0,'2025-03-24 06:13:22','2025-03-24 06:13:22','{\"firstname\":\"JOANNE\",\"lastname\":\"MCEWAN\",\"email\":\"jo_mcewan6@hotmail.com\",\"contactnumber\":\"0553037849\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sports-massage-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA5HFByLlHBpOgalrQLXDagjZdHEaSn95Yfqx8YOL70qSH62GsSLJxolEtyjRbSVYULZIdj2YFCCIbM7iS-TR0CEfxgYsfCbrFtshvpjQoujrGOiKosvesu4U4gPIU0cw4erQ8SNrdDWp3DZarJqyhgEUnk19P61KUHnVzMDm3CXGwMeUZge0-Ry0HsjXG6XJtY_XZrkHaqu0nByKL_wjn3z8FoWTUk8ZcsHvVS5voDR36f1dTGNAwbwVLasOWBYsFDt4batJW6A-Z3OLXdmuexUoT_xr9j7KtTtMKLxtmUFrbJtIrY8D4Fw68yej12P4dj4E3s9x7h8JbMLwoegxwFJ9QDkXesrVw6yAs0t-qBppLDQg33nk0qyB9BuZbFibT4wJ7JaNSNwsfkBfm6h-4EpwUKeeLYvzz0XoDoYfTq05FVOIHlLUHBrJXQLsVeRwOfIcEubQCAekAHDSIXlPQlZm4I8DgW92MeiWwZ1_11mmhM8tjdsOnixsT5mJOn5IVUi_oUhlbEr-2PttAeVIq7RmSpc2GjAcxzy-vyNc4bgPhxqSgdLn0298l8iVus1seQwY41wN-ndH3z-BtWpM43ThJRoRuIr_eBvWqRyoh82zGjdY-R2S-2hpqUd0-N2sjbtuY5hk7J0jBGMDlwwPUr_qtZpGdImO1AgkcSKCl7eeWYoGifH2ioO8_PbwUy-ecd5ePdE41BJSa7vD9wEsOSDZhW6Rkw5ZpmQfUnk3GNPVCOgCmNCdY9X4IB-F7EuDlxKMcr3TnwjgT5eZ_RejQr7HupuiaSeR6mqrv0CwR7toWnRtv0wAa5EeMes_ZbVQFemni7RQF6uwegeq0K9JbkhN0OK_2deTODixyrCYKZT4yPCEIQg-jAMK43um5_kYyWs-3I_l12PwA0vFhctVH7q9iKaQBw717wHvzpovgURyWeVmt8_HaSNOfzMPzPhICp-s3NVmvgYtqdbOPCXdS5md4S_-so-3LD1GoSrvZlnSVGLDZuy2F83DA798WFmtSqS3CKMqOSwQepjnEssHAZd5gscrkkqFPFrpV3EpOZjnw_qyTpwdX5mAITtMkyD59u_LrHK2zQOTlv3XbM3KAYlX7k7XSl9jUK6GIcLJ8F14J1KauJ-RzXBybBSFrQyat4pB-ouhZIlfB31z3LBNykbbk8acDf5BjksV9OL0NkSBWilJvV_Kqj1PHgfEMTpDoIKAN1X72X5T0z1t9CoZrHZ9xVMOds6YVvG17oaWhIDHe1NGcucRF3OS4ykn7kWAQlc7jfd-t7WYxMQWH8ZTmk8GFJHkGzAbPqCw1L6_Lpk02IuRmpOuowe33DS-ybWV_aCmJNWZUUMcrNe20hCqXyCPhvXU8KrltpX_9FnAC2-EOc-KpsLcb0JwuU_x5DyvCQe4Uin2ySf22ATe9F4TIsTCT5w-aqRQ3rrv6iNnayJPmnB4a-KBjQu8tcxJE0UF30gpCAorM9XAdKYH_dA466OS8P5pjGSD496H4ZQh3KCE-5XiPmet5e_13msuhCpsNcHu1EZvakhK0B2pDlGM4jDQ7lhxdGrjB4Uv2m7fDzKexhNLpaLJybvZkOV7uhzv6eqB8kdfR7eIsgqlG8cSe5LAUciIdGYgubU6T_6p3n6tSV5XA6BiA4Bc4I34ijYHlLYa7yncQmOzyCqB1prWI5xEQSRxPVPqYxjS6NdgoZSGDUbqsKR2rzd9ne67yS1W-giSHNn5Fy9LSB1PcB-v14b3kMpZpjaR5fwxRS-u038gJjgDlCy7_FQTB6K1WRFIEAtlwyXXlKVTKhnCN0NB3tbimwcHf9uOWXgrsWJz-6XOcvDzz7Hqw9y4lMRru0xlTp6B0t93nGR7msHmGuslSA8BKFte4a-68jnPn1GWzKypSSqFX9paWTpJgcKwYV0hbYO0_rnpKSekE9GKhdn4IW-USz70QxMo_Bx015GeIPyLkZfi-_PDfdBnGtFFHQXItJ8lLeFR2Jx2Untg1uN-93b-MLF3IkjUqHHlXrhjUfR1MxSHrc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e0f7d7167d65-78101793','','','2025-03-24 06:13:22','2025-03-24 06:13:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42733',0,'cd-form-entry','',0);
INSERT INTO `6m7_posts` VALUES (42734,0,'2025-03-24 12:07:23','2025-03-24 12:07:23','{\"firstname\":\"Ellie\",\"lastname\":\"Tor\",\"email\":\"ellietor@gmail.com\",\"contactnumber\":\"4349069008\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/when-stretching-a-tight-muscle-doesnt-work-a-look-at-the-gastrocnemius-soleus/\",\"recaptcha_token\":\"03AFcWeA7rtwRoDCyZPJla55C7UUNi0cQksZclRQB-QD0bhPdZhE1vFFRPkfn1bfRo3xnYp0QRZrMaZvVJRnZJOYDqa0a8ELw8CFJvuaoVYzTqLAGABmADtOtLESBA6pXkHtPtiJY5vFI2w8nn5qozPfOaMOe85VXqkXf7MjMsGPuth1oAvy4qlCZAuvDTDPAkKVtiDGjsBU1vrSAIvwcuZJ0iLEnKGgUdIv1LqwFE10sIvU1FUrKCh1eg9z1hLW1UamEQBY6Czd9nOzHEwG5vT5DfTy91LiEHdv47HmINfmLzXar0WiWVdYb1MDORix2W2wXYyitQvOqV2SR1y07ahRkxA0J7dNHWAKCcmvpl4Lk7kpE38YvWfdNaskS99MVaMrIc63ghjGYvoZUq5mWh4x9cFSbay855FkhrKud5VbYkz65Fv5r3lP_84rhLFCw8nvxSMyoqUNSz4yRcFguwtanoJDrbN-HVzhHViXJjc-jdqpsI4k2Is1MnNM39Yg4USLmp9Pl5RM24KxpdLE95ErhWbSu-EnXLQPLmVeW-3Uv1CmXYRcXYPpL4p3DZMR_qMqWhXWfWPbbOqbNgyd7DO2PcRw7NooFupDF82VifARAg-E9DjKnerYlAyccfugLcZv6_A8rbaXiydQY16vTtjhukiKTef6Cd-C3MG8rPhb4bDV78oRK7HxbV2h2OG9HmVci8F2Nsk4A04ASOqPcDJRedGKOB5n7tsc3Y7u5rcu6Xu1_cIs2NUbMfOooDqPrq7mIa3Xo2IGrciZjcBqP1NdLsDnkLHTdYk7SDCgcBtMooLchMLqIX72L-GaUSbgvVJITxT8XmZ066VTdrSQpuoUdCysAWsjo45yITDQ6wVEmj06lsEJYYHDArrGcRrjN7GuiqYwOyILlTZ6p3nHCZXnI9F4l7psgpkKlc2CF6gE_XwsJH9PKQC_sQ_WBzBYyCEtyesUCXjnChkLWuRQFu1Da9_n1bV60kNDJfkbBXl16N-XfbkkhgkirdoxU3EKHKZUBvtbKMUYHH6cjidxszMr5OZ-nzdmzcz1dhRynny68BNOW24CzTPECg13KMGEop_q8wfct3fl0lRE2PyIsp6ghWOAg_hFkddBAvHoXifNf6EkYdIU5-7NbaOahBr2nYA0RC-sC2aome0JaVej9aR9HBOKZHlfEoxNWctuo24jWp2VRunQ9V9IpPOdlBnPfh3XkACj10d6tulKreqT_HgaTLWsjn8N9-1mO5XeStNzt3ISbPddqaUsT9ELET_y8mdG-ETDFP8tdfUn2qiujchyArhP4SxTTji3cLOpiZ6Ixn7LDG1BijIUqJytiGm4vhCs-TqDx2W5nBLABJaNrALjueKIOR8_d-CcqtQ_st1ckGFHdS2GCofUtCBn6PRSagA9SaQGH2Ax9aI8U31IZHTI9ciu5WYRzGkdqwEbRgbyUvEEejVsOKd0zw7oDvBMiGgP9crGUzH-fKRN6y7oJF7qKVvoZ3GYDFc5kaY-H28PRG7ck2jILOgRkAXE0ST7gXuc9zHEMUmAw6YvzKpMAfCLZV4AVywToepyz30BpULTakJQnlGFFj1K5qAvSwGZLM85M64tAq7Rl0b1CYtQwwye64sypUxHNkRk_FX0tqrod6NIBp-UogtQcDBj7U7sPVNK56w7IkW6DwUOWryq-KIWZfgvsEz6_Mu-RJUtHAuhFAPNO6K-1ERL3znwo99-H54YxEKE6Jw5xCP1pivtHPVe1lw_ytX3ikwYc7c1n_4DEUfkqTV8esKurJocJ-oMtMFkWSdyfyzpRDjBjyWj-fP3IdYcQ1Gb4lo9Rr-041v9j2EkuXZP4H4mgldHogOY1FsggMBOICEktvRkR173ilZ6d8sLPDHiER-AyvQl640SbRjXP8x4yHWXmIopEw2-z87o9loheFfwTz-nLzxVlBgLz0qwWA2HsNt28lA5CK-j_MlI8htf0HQSm6RurGQEXmgQ749r0ArzlwU9tVzMIzUZfEMp68hTbPshaa_xhR4AAKfr_veeeklrz6dBaOUlv3Fkol_no05wbBwREjHpg62guD-CHgWDzQmkseQF_r6fmHn9OPXcAZTl1iwbqVSJZ_Oo8eXO3PEaA_seGeD8D6Jzhm01U-ZjUo2mf53ksf7WHuu34bNOJy4Z-9BuWNiGBdRkwaDe0akum6AOSJLdStmZ2XfQi4gl_Xpehid-fvZC6Vb5uIxpowD7wMM3Po7nnY-fMqpauhyDjKM3PZ0fOzzdK_f33WAYnMyQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e14ae66a9391-38284430','','','2025-03-24 12:07:23','2025-03-24 12:07:23','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42734',0,'cd-form-entry','',0),(42735,0,'2025-03-24 20:33:02','2025-03-24 20:33:02','{\"firstname\":\"Alisha\",\"lastname\":\"Webb\",\"email\":\"replenlish1@gmail.com\",\"contactnumber\":\"07746119822\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwhYS_BhD2ARIsAJTMMQYoVmcDB7EMv3KmYe-_gy9M1b9sNIsnUXIH8qLalqoaf0vcwXbTfUwaAhUlEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6tk8ai7akfrh6nc1Dr2Y3c9LcH5ezmFaZjbVaRbt58DvB2t3ivLBL9NpxA2kIXWEhuhAVd50-IlO2HcP7-Ze7NfCBnNDL7XWhqIzbFMhYwj1thIrBLsQUWGQnPMUuNAuI01W93TxM6qaQQCf7x-Q2PctwRz7CGeYFSOq6SRlhhQ5Ot-a4L7zVLF8VuG7SQJ4i4iwmh4OzMOCki5JjDTYCUnqohMdfMibwjfr7fJgKH0FcHVykhM2Z1Dc62IoB2I2PiKdPNPSRabQd5GV-5PyZv4GDpEAqiJiXBExt47UliCvHPWA01kehwYkl9NY9o1pg08r7MqhN07skYq9hcf0_cGw4V_ZvctwUhg8KWANmP4i86DArBD5vT_Iu5UH3kPVbeucWsEo20kVKbNrV_TORXN91txh8jjl6IlaiYkFV5nlQYoRVDQtVn6MUBQ06eidSi-B-oGTPQ3kCAB2rPqefVpk0gKfYvc_AlQVKBCZi9nSiqVAJNNt9pt6Ww7ZDnkmAD09Y-32jeHnpsSCAOFlb83hEnNFXjT-MGJxWOKKYP4rTE7tmaDbK6oQDUwGlgCWwialniPd8Wngn7aD17iOKJicZ1-i-4TcrLWDQRWPyNIXpwxj2SK3l5wF_Hj4Z8HricsAhCCDqC9nf3uH7taE2_vPHv6rcHlkR8WJ4w5_bCTmPfXyTFTEcdt8yjvdcFywUVV-cE0MxZDN4i6zbTjnWyPjwDmpyxy_KDycc0oGlhTIVnzEpvbtoxkwGO8GbywUfe9PGPvrVC_w7Zx7n98o7KI0uhsHcKp-DG8Gx1N819Hi3I6kD0vCTqyVRKiOZWjUI4jY377iGY0cL40xm65NpaCrHGV7blCKwyGNhQtAoOm4WpFiZtRTg_tL7K_dHw2KC1sGi4VD-eCtXW900p9zCRNc-wgwYLSCDc8Aoc9ecHQP6WOZ6WoUZq2YdpwiJuN2YGTnwXVW3OwYkf6oBCuPZrFj5VWfH4OMiMgxb8o-qyWA9qN2mvHRjzOThEFFrCfCxTDBdeM9Pgr0zGiI7nfxj0HFalAEEKmgtbYf3r5dHAoDfrBCAGqsTF6dtpWIzgffvm9nD7AhGV-9iBDOjgO5Fhfk-tbz2oO4fwIOdnrMLOhPWmr7C7gVCWGr4GJH8w398Sm-DC6lYlPS6ZPQCpUIIUpufVVCUmSYPsNBMCk_ZAvuTzfUHy1QtZRbRDRC8wjBG-S6x6SvnxnxbBaMAD4RIN17CWTjTwKvHx5olnQOuQDG6uXK4t9b4fARc5zMa1uTo6AkQW3Wh_oormqK_o8jEGDBn3CUw5kypciQT-OaFIkaLxhuQGhFK_Bc3xHtVcYxYTCtP1IlRo5IOVcNKiQ8aDE0ytZMXvKvnF1LVHAkdH-GVrvU_ve5ASJUTQBr0SRjtQLUHZzOUmFUxWyxV_i5f7lULyWDJEcslnJ8TvL274ViNtHyN2fHseGix-alHoRPTLLJRcpjC8OuXPaV848XwDGE65WHN_CEc4T-lROtGodmmownLaeO5AbtWGM9zkZTnRdzZgWM-OjiiHCU2Coa7DKvxh2jgUxRJ-OvASO6kfyvFyyHNx3A0caCHb5ZbD1AMQ8XH7-2b1lSxZ7k4qH2MTRpVUHteNxYMnEH5nb0Qk5ODg_rhTiIInbuWs_aeQ5OICgn0j-3mIBNLC1NQg8PFFYGh3OwO8htOlxb_he7PmtPnYv7JPNh4UAGDUD3eSp0_yRhxeSI9vkFBGQT2yOTcJtLGjYT0eY9DS0U1gd3QI6yjRjG286SKQWx-Oz0QCZ3OsA69QuvQxzPofQTsKgc9BKpNuDMp96IRM6SG-CKfzogRvlmoDemfEfVZiRT3xocsdFLm8VPYh1O4r-wyPeLqEgChdNRsamztxKKTdTKElWF_ErcYJYSbAfKPVt4DZkyZNXK6XxZAyh5qF6TK5Wd4VgE9nnV0tzabkjQy76pokPj-HiWK5IPZ5P_uvB24Gd23tT6TXaIn951MRW-vyqebMXAU5CEKC6581iAiXBdZ6l54aKtckiDZbWoHzT9eGhC6wgZmCA0c_cbVrhs55iKITSJQmdVMfwmiCZuVqzpVdeBweVNQg4c505_O_AuGf6Cj2WyHkzFBS4dB2P-bVdxIFEQgeow\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e1c12dadd3d0-23901180','','','2025-03-24 20:33:02','2025-03-24 20:33:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42735',0,'cd-form-entry','',0),(42736,0,'2025-03-25 03:37:43','2025-03-25 03:37:43','{\"firstname\":\"Sheryl\",\"lastname\":\"Nino\",\"email\":\"sherylestupinan@gmail.com\",\"contactnumber\":\"047373904\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA4LQE36bzqcTJGLz9O_c_aH5JifXXJ4p9uzMZyxVFEPENOram3ZDsYkQHuGkpD_rPvP5UVX8OJto2EXdY4iC_gJFiwz7iMWMpTEEyysRJ4Nf24sbj1wiRHxtQQtimrBhIkwKxGJd9SMDCPOYtJZhLgJ-JDADuMX5Huo-1V4bA4gbqZ410gMdaqM7RsYj0tA1FLXlIIcL2-ksLniPCIlRdnv1wqIfHruNuWM5bcWzLvS4MEHXAaz7disV5SODy1zzEdD-zIu9i0w_M_QYK3kFQxkv9WRwYX6QJk-6ogjc_eT5uRcT5TK4RKP0MMKmvAir_w2l805lc2LQ2-j6DGjGdVOoNvY8KiE53ZfiUuHIjZ_qAqVZXThsBjo0TdfTjLkYk-EnP4bs7I5EyKuropVyK3m0yGab0e7cpqJ87rTGVPgsVJusEC8aLkr1q2Laryxu7xY69Kv8Wc8b0Jc1nVlkRVKkid8akXX6_OsqMO0vijGDfBiF1sCFpoU5Y1_7oc1Ht3s57reozJbD9K2tssH4N6Z19Cp3xgbkJRR9Zl8YlZlr4NLA_0nHqFqo7VXasAl-vgfg7owwQlpT6PIQf_W-thdA-AItp7wUq5Ngb2GgmT4KEOIgfwGJIZjBfq_3y3d_m8NVZE4roRFv0rvfW56a2IaeS-VcdwLz8GuBsHnBfHcZdcqX2ELJ44fkxGM_qLWVzrzhl2B94YWkG0qg-yGM11Aep2OuoCtEV01PIaM9Xhet4WeXZSILEzNfao2WNmrITe20zoD6dmA5yvvQYLiL5pqgn3akNDY42BjtHjRyIIDGnRIUywNWXnSTKsiPHny_J8f6l5bYqTas8R3MBQvP1BvdkvJfPX4lizqccjv4Q4vW_C2ajIchHkXxWR__eHv6yroAYbZwcFMPyDFEPA3whDh-r1F7tD8Nzx2Z9TitiINrNT1CSt_DpH-2kNofQ8V05mOP73B-Abl7bK1uG3pm5efd3Z0srlxSaJqwt3kuL3Y_wOqhcFCv023cxQYUhv7PoH6IKirprTQlLQfj-knASsHyHq71ZazK798aYM6uwjNMxRbpDxZbbzkx_k8CMbPtpa0Z6EHtbMGdyIWFf2t1UXdiASaQ05LoJJSJNKbW1nOyYS6eN3UYiwg6l1FcLgO_vVxstJPc4jFRyRDxPNPWvmf4oTF4d3q6j07C1OxZVPns879dJbKIXdAOdc4pqjdwb2IkMde_0M91yT_9iqb-r8jwQgIf47JGMJ9gk3iZQ8ibbDAb76Q-6YYblWlQv8NkG1lSflBDILgPJ3BC074QbRaBT8SbCah7JoPcNwuXPwjjhpRg9gNCdo0ydYjX4S63Doowl5fDa9XkxEJsoVExDDONwwtFoMhellKz8JwGjuOUBE-FiZRNwSYgbcB7T8KhDPAJpgOfuDUxEWxK_kJWXGvHmj-aCkOGwIaDd61hY6VsI94PQWFEKh-OH4Gi6muk7wk_hII4dqvOtwEi97Y2jU5JEhVOh7heMbVlO-jCLTRYwCinoqofbVmIVGdli7DG6wXaADwtMzHCF5H7Em6Mse7-eryRBw0CxxGCZ5rfJrxKqdSPv73G01vY19TR0HvfVmgUGJTBJlgieIW8UMgU5JfNj3xxQTQPvATplE2XfS_c8cfgvRq1XINyCtUmRLbVnMRpXaJQr5o6Tgg-d0mJpu0DpH2Hjnzm7IymlqIdswGmtCAII1xD0Y1-V4xuiKrlLgsLI_E77Waj3KnOgzCT5SdhOFRIdskjQA9qKy70KPcbLzQoH3FuIDRdtafxGP420VJO7S7UvvTH5a-A6aXJgXihhovyxuczWugMQUfYnYzQ3mRkdbc0PwSmEKPrlVZLwgezBDcERTbclMQ0cqcg59Z_bNqk4kf2btsLnCFGcnv8s-EnzyLbav0tHwqaplQ-wyyTBzhom8mMu7e-ECXuxV46Zo7FgxpopmWVoE8RQ84tXhteogB6sIFlOgXtSLzerkTKPVbuYEFcBhAoyoAXFC-Tv2g3z2czwi1QSy8zUSNXX9nSBXI7XoFLQA_Tr66-pVn9151fZsSJh9rm0frIQ7tWajFhoskky2HxlLz1zorAXvIMxgOmlFSKHyNJkY2p6xyS4Wa1Td9B2tRhlFEyyT_2f5q_cLe9ecv-H0VAx-o-q1gw-UXXmt6YenMXqGh4tZxxZTH-3P-TZ0kD2PsIfvbPGZE-bhgHU8eRQokN1ksqA0aMHR7I7hd8uOZ4mbvt2Xys1WnEM5yfHGSpko7HabefBykgjRgSkkX_QdKELdv2NZkGtd-Ywek56ft7TlCXAr0wbI5\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e224efcc5034-95006112','','','2025-03-25 03:37:43','2025-03-25 03:37:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42736',0,'cd-form-entry','',0),(42737,0,'2025-03-25 03:44:01','0000-00-00 00:00:00','{\"firstname\":\"Sheryl\",\"lastname\":\"Nino\",\"email\":\"sherylestupinan@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA4s2oCby_gClb1WW1yoxtIb6Dm0C-9wj85oOc5QOabvuUVDzykYmmUzr_aA8_Z1WJH4w8p9M1HhtRaoznOI-6eqpzbbBt60I25MgJHfYDKX1oU3q3_FdiyJhnWMG8Jd-z7ekIEAetY-6GqT6b2DegRu9_ar8Jos5X-un466YjB9zVw_9jdyPmcgwYTn5mH9FXGDnLrb2bZVfjj_phn8NhrDozM8Qj4jrFgjyY0_8lOYDY7IX3pzQRqo-iVS9-R4gwROi0e_d52-VkRlmlnELTSZwJoCkAtMl1vIaDf1DwPgeE2tHwG385XRxZty-F05IOPM3PCFZL_XpykW-ZT0IZ8BFPp6TbEBGCcc5mvf8MHJ8cxV9k2X5L8_bDHIO1DFpirHUVpRRgBCh-1Y5CABrOj_-JUeKwOAJI97Zaf2-bsIi2LdM7kI2dddJJe2be38VwhbFffRD3AywaTypw3Ev7Hase6XqKF2T_TT0oQuFgWya3GOVycjEqyGV4dzdR_woiReycqqTcW3QWgLwdjReleKAiOuWbsH_zCMHb7Jr-64xEG5xh7FXrjUZ0-Uur4D6vMdHMyxQyURYaUgrv3Q9hIAgB7V7a6dzs05aBNdBJtIZ2gVAGLueKxk8zU3gMeEhSDpVo3F5v_DrE6PbnPiua9pH5_oXHczGnrKQioeeMhp-D6mQShoYSyqbFLv45rHzrx_pKTW3vlNWmb4qd-DYf3C714PBxcNDUPYHrxCzFFD4fX1l8182PTJNJ9QuGU4NKvMT_ctOTZnovqzzgrr5xKCGgj0-g2cteHYTNV2rPSTZke6bga0OrMWV3EzF05b6dBfwzoItsV1piG_cR_dIZkgM1XzP1B2sdH6-VVCvTXHuf-REgWPZmisnudckZPlnmWE8AAy1W8GuUEbKxz7hFpW0aABb78She-u9DAZEi7fmP_kku3D1FNdc4V_L1gPpCLryDbNZD3TtpLzGHMKOv2O7caVqBFI-km_1VruwlA1-EZzar_tf1rT0E0RWYwH3AkuXKkJbsTvSvpK2V7obaK3r1gAW4SoLgN8w9w0LxUstrjCVDuUqGeaH6Rjss__Ime-ROGEQI9RfKWANtGJ5j7LudFaZnYeCSqRX4MjKgCjl6SGQ1pXeIQtDkUuvIH8tdP27m5KonDYZ_xutDsQvG5F11o9Z5hmTZkdRZdw1G9Q_L7gwY5g5taeTMI9LbrlJT5y4W2gWemCC4_JDQtilPH5fCAltGcTZ0k-4y_o5Cgj9Qz15QkGuWOq35ot6olWJul_v0836rHxp8Wzq5Sye1kVJ7PVlilKCtXJoKlWqyHUQHK3XtwaQBbDGAdLvYXAw6kNjIt7HZ2N6X-n6RSEWiychaYEwZYyqjBKwvTUftXWeWEnwwpK3rVt9EIwJUX2i-yde6g9kW-_J1Iuu1uZCfiCaTiM4VS4xmjncCrXfK7wPpoO4TN-XWHUb6DDLmaxE0xVYCR3da63pugmxzSOuuk9G5L9CS2OfXzjKg365GFeGiY1gggYfo7FCGr1dthhKs_ByuzxLXQhROEuhKC4Kjzc6HoWWFglHD2VC9M0SWJ8KL8tz0ERFGNr1id87s_4SpoiMimqoy_C81Caq0I1gE7kVYgnGhpSu2HptxzuNRxjjtysjm8Au2j3acK1KhTs6PjJfPYqxHKGYWXGyUvovxoqDFoV11eOlEcGX2cEh-Y_97BIQYq0bZUUU5ZcRlywMUIDs9uE7aMpcfKMVXtE0SGjqAnDX-Cq4w9zZ8cf_iSSNnwJs6ycRhBMkT0pQj7Q5DY5-2kGLwUbO5wQIGaNCQzN35cSynhxbwRYQWu7mHUdR5yEGUGXv7buByELvp0Gbb9e7SMOTh1vrjtfDFqklXIyH6O0tAE4RPhY_nP_iFFoSiXoF_g9JRlnm4sxxrCusdccQZukOjDiSskCgqQyuxeJP21XAgE6WEwUAM11vdVA3Wuum_UY8sA7zgJpzz13OvbG89RWsrgSNpirgq2UCWHNnLkQhNqc-sSfBpPpXfIcHLfkhvdsyBZCJorG59ajYL_nfSxfDWLxSMBunz6YCy10FkYDbwiCfcOxDKMUFbUvVC4wR-Z6Wyc9tmCvlwfdprymgnUAIh7T_OefCadFRK0C5MoOdLByF-sgPLDdjPLkv0YZVQ_oxm3L8tOMbe-ncvwcr_GlG1zhnTs9n5hQs0NFK1S26EbXAFvr6cf0kXw42XOUMv6ps0OmD2QJVj0M8CSAsobV_n9Tofjc9qqXfnShSXENNwrhozic7CkcP1bOeoh-rlGRSS-q8cts3aR8Hr2D1BtH3myfpx6zuRqTjA0TwJ_XJg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e22681e97dc3-85771316','','','2025-03-25 03:44:01','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42737',0,'cd-form-entry','',0),(42738,0,'2025-03-25 10:15:13','2025-03-25 10:15:13','{\"firstname\":\"Elaine\",\"lastname\":\"Tipple\",\"email\":\"tippleelaine@gmail.com\",\"contactnumber\":\"0872163390\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4at-G6ORhdaHFEfn9Ds_ntIzxzKzKicSHqGoZmOVVTQj_0A9oIc5EuYI7c3l2y6oczkuumXJtuAGZede0t2_S6z8Lhoi9cjA8_1-f-gITmCKCN654cbn5nk6kvjPyJwPaenlb9mxxmYj3egjM60-O6gIYvsEl9iep-1PWQsZtqgAWGnxBGIKauecEFXCkrKdn9k5pRzz9-7V_bIRqMihHUwU0cqCHwnAcPE0hoc6-32kk2NWuDqrC08pNxN_3euPewkYWe8nUjpYpS7KQ3z3vXQTkOv44trUnV7-k7Nr8fQ-WRgBy37u_Ip4j-hbzu1M0-iM5gkgc16_XDR02GPo5G7_ixspoP42uGUOYJk235K8SBxAm88snOGpfgiaCP_kXFFr5E8htnzaHcv1DaccaQXJxr4wSXZcQkhGP_wQHfGXicFvXkZffBnjv6mtox4qi84okgFS_PamkQc-ZAl519T4m0e6dQl_Ib8v_ZUp2wBbappVE1XGws27Jy_2dXNCAlyBuoS94dvCIkZzyL1mPN3U2d8e3plZ2N8namqHpPtrFDpRNcKur_M3mQlaZV8rwHLDlW9RJ0MPdk03a9HcQhVgNNVUMXYPerbQpPPItqGV66BFMrRPoLLVFYLxH4ToGLLIkQysXVI1DPiByWTLTTPgAZQnDQw5N5gYMJx_gMuBbVUp4ftJkThcRcGFWBHpRGtCo-DR3M58Zobrph0ZrDqhuDCzhTYwzc9inu_TYz0haVyVA8fSg-MshyNlOsts-amfcHZarRnmLASSChJalbwvRq8GruieujT86o56--uaLwG3J2nRZdOqAw3k2qvcyHJg2_pGMC4XI7fB3aPxbbnW83DHtvNlsxJcNvugzq-NW673tR2VjCdd5e-16eLv4rjZgYhIC_bCTVgFoA8IN3z5cnpp323mBPLH-DmpJTOATLmZpiT_rw0vuRxV-eSYzvGVM56H5flRkYo6ymDb-8ZKtyk2TTvnCY24PpssKRZhDupCEvgt0KOhIebozTWnuuzUdgwqdq7LA2anF01mIVusJ1QUgPAQpBmBvBVHgpt5W1bmll6vOchVyMs3t219moUIx34GJrqO34sWK-UY5IQiZohcX0LdK9r1yJ_jl2HyxPfkTleW4xOSrDYG6W-DLS8yvGmBTtiYt7e4hNBb4xwDc9YedXv98tr2bYgyqdMHQ1kLs5VLTAuS_RT9WhmS_tOuyfdQ_gUm8bn5b0hRx8LWqutJyBcfOxLolio8oZmmHm3MhsZ3wvnsUvPIXSKWsz1amGUQp9kBrX3DyrSroSYUEdvFoKU2eEGeQGoaTivx27zyoUWGRvmMWeyLMo0OZu5JoRiuYep19oMS8iK5ljvwxS9II7hpUZPJipE2WIhDS2ZRLspLb-fBK5zVpK8csMIcFHbFW2uI2umJFxnUlRMe_dHWIuMtSTnYiCQVEd0Sc5A91vVrvi_OOu7W7N3oKi5ctkGfOg_Ay7pHn3dLHh1LSiaGfRprl7ISshlIbMwDa4Hic0GaMA8aNVSNH5ub-j5tN5Wv-SM75OdYxM14aw_ILdiNOC2ErJwshRpAtbXxnkgu15ssBbINbsua9Jnh7eMcHnRGiskJYeLfKyK8aNrrSEFW09eOpd-I3_vYwG0RjiHY0xOTXR0i_mPhecnt_Vof7bTrHCgaTXQIby-QrLDk7zJHMiMu284l8A6jUxpU0RVLhnoxb3UHGsXS0-NElN-CDLXjuARmiIUlmT7SW1O6z6GYwRAp_Q3O4UkhMgAblrFXLPb0kq5qrse4Cf34bR2DFtlOtNunUiWhSNfmZG8BY1JzMwAgP1D5eKp5aNYav1TEXIkVIrNMNphD9IQRz3P48O0Di3MkLIHKNPwhosDBVD-GmUyatFBmSYMUzCTHy0IUVuQvVSvGE3rb_zZo9tEkycWRoUDKomqPT0jJq57fH8G-3d6KmjXEej-mEkvc17MTpPn44iJBMPhlERCFh28z7dVZ3Fu2sW2vrYvBi-jxJaTYEB4-RKJmgN3MRSETsc42Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e28222accd58-80490463','','','2025-03-25 10:15:13','2025-03-25 10:15:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42738',0,'cd-form-entry','',0),(42739,0,'2025-03-25 12:49:25','2025-03-25 12:49:25','{\"firstname\":\"Kirsten\",\"lastname\":\"Civil\",\"email\":\"kckd@btinternet.com\",\"contactnumber\":\"07415332556\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/imovefreely-instructor-programme-workshop/\",\"recaptcha_token\":\"03AFcWeA6Nb8au5P7OpKxkNOTwwktXw52rMsoi57Noe6dw1L9WAg19c_skkf7pc7CPRbuesnafwicbq-97xIPwwifs4gpHq-QWaI4kb_kd6lCOBslThhfqQOPEyOC2iyj6hx-WbMsD6CgL0XGWdSzkOkhUVvdyhOwI5R8_Os3q4U4IZdzzA8fYv5EozfETwoZsK4dqzLB-7vUxVYbc8TyBxqudMM9Jh_wuF-DDLc8eVoUm5V7QVH66IFzkdWSLVR6MxKgskuTJnJOvZ0y_9I5Og8nFe64dKzxcRIRtJjScLP-V4TEqXbXrJWBhfBs5cIxF1Ci5lmpv7BuZGO6Q3yMhhGP-n3H4h9pFwf47j828pEDR631OzuVvi9_r_ZCjUdkqlPvi-8ETPBqi33Y_U7Rb2F6abRFO4zFUdzHj1TeSOIu4lN_j2PdegpD6pH0mhjEUiPTGVhXkAEHKczLJnyOzVo_1q9AP4ES6hMhDeNjjq_XjRrQwj9gy2geHA5n7eWtdCcAkcEKbb-s5IR6U0SVCk0CLEVyIofePgByuZ7s93lK5xnEuoZxLQXIsdeFZGuqgHx_XqmwGCkwBQlenYIzdosFDLQEZ0hxHLZaX2LQjTNk6DUKKSKjFcKiiOLhpEbYox5Bf2t78yxzG3w4eaNWX7rnAm0sqiSWaV0BnR8kmno1AyggyL2B3-C7dPCp7gUi59GTcALHuN3m2kndbB2O_IsuS5xtIe7eiS__z3UZdLQg-iV4e29QxpUh3jY-RFIk78i1m_65BYTPnY9igJC2BVteNIOkSllQ_sz7wNWd5m4qgf-2Mh68jd0kmjlUYDFG64nszTuBfuBZga2pjUnUdjp7ZFgLtgyLs5jejYCXD-B7EN80bDh-PC9skDoAk_KvRfe02G9FOexrCFxgcHP_7icXeWJ7wivDv0nbKp578UVcEqvp95CKpn0SQv2z7zuWMQYgKtpEyzUmELuiePewNk2nl6izOU4hiK9sB9y0NoOgEFShKrMQ2kwsnrHbYg0Dx9KrFIgrtS9gJ9o4nCxReubpuCk2cOsDioCruK0nkWapmnye0vOICxK4v3VKK5axBYXVDSXEvm6NEcpCC5adPmE9mgloW1GRYCqhZixgZzueFZ5wd2N-J4kfeTgP0K5gSi4xMcp5j8hDCpQlsJ3g2hbz3vm25kCGnd4rIdTl1Xkwj2eV9IgwgB1mNppgU8UZu0QfCa4hZ1WHIzie01OI9_lCaC7golryVsEWt9oVOQj80co9QzJk20LrxNsSrqN3Ufzdl4nYedrau0RnwHKiLiWm0PO9qfNY8WY6TPBY6MdOwJ92pqL2cFXJ7_9yjFJniOe38LMqH2AUNrRBB4hoJqhHKeCHKXUalO0meeV_7ybrpChs1c3FE31Q8x-_5WFPQ2mmT2JWvzPPKNBkCMW0sXu8rVNtZkL7BYu5i9VOdxoxUMmF84BL_GmAwLiFrhGnf_uoZodegFDnEJ5tUKitusC5hDjdp8Xz6PIdUL1L_5Znp3zM50YRSwBq2LCfelwIDgitJ4NbGSJYEZnpd888d9CS98thNftK7X4EMpbG1VoLUfEOzLnij791TOvYHPBf2_AjtMMXsMBR4JAoVnpBOElGD6lDz0CjcN8Unv58AK8Vbeae6S8l3vYKQjO4jK70AR34Hh8QelOR_On3lLIQnSB3e-Je4j3vNPY-t1qoAUlU8uU4TXJ6HuVjU809JHDTmQv5CNPBBGw9DKCKlJ1XurDOH7U5Jk4tAjTlWcCMa6tHAqn9NOJOthgq_wPo2inOKyqwPrYuCQXYW6c8lHvD2rOiWhvEW9D4MjtSb6cgqH-z1kQYEy15V0RGoFSZWEE2qvPEfW4f8x7SS3HDtGpYT1ZPPQw3koT4gn6knoe-LZDQp_R7Xmz3M4JFcfssHvrg6cZt-mDa7JA_uyoPDpVIF_B4EQEl-IkH_L2cDE4hOPDNAGjZiIXDkw9QEHdX0WmEeJ48bTbvupVV3uq44M5C-lK9iFshBbSnwp4ZbMEWasZKGqwFDTu-BLs68VzogHSHxfIqhySFaWVWgb5SRYHx7tsbOd_W8FI4vZg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e2a6313a7a36-99761979','','','2025-03-25 12:49:25','2025-03-25 12:49:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42739',0,'cd-form-entry','',0),(42740,0,'2025-03-25 12:50:43','2025-03-25 12:50:43','{\"email\":\"kckd@btinternet.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"regionlive\":\"2\",\"currentpostcode\":\"DL8\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/imovefreely-instructor-programme-workshop/\",\"recaptcha_token\":\"03AFcWeA4FhkUTk4qqy6u3qne-j8RttylzjrJ0r4TklUeUqX7FkEye39GfiDM_EpqDvufVOSYLOKFlioXLrj14Ys_qrD2eWeNhQIv4-XNqfHwRCUP4ILgHRB8te1PMXViCHDfx8UOm-OcbppXHCZBgoMyxmZA1XDVtNArbIa1sF9YiORA2g0OjuONREWs6EDxBubjS8zQf8oE5FHcWXAoG4OYCXQJP25FceY8mRbPz0IDbD6l2cbEjWQ1sO3mwy_qRAI5irq3Hf-58EVT9vyrPNx4Edm6lWPw8FXlYyeM0NErR76c4qSK6xXIDQUfo8usUJ7Yww6VqEbIgVxhorlFu4XAzj4JCVx6u36czCgEaAY0MU8KIzBOKfFvOwDPp-eBklsv2LoDtkl39oyjBS_5njm_bcAZ6F5HjUPz21RMawJ8oLvg0CQzjEg8GqrM_8PqUlUFibPCPyM_GeSynZMI-k7wYK41heJQ5Lj_1yFjXbafMbslNMBLOSbi96oX8C7R3OyvJ30HwouwpRZZGSouaIMzJQpHPpQapS8Q_UidCN8NDKJpetadDTJGMUfrx5-QikkOt7bsBWp-Pqs9BNJtXQPRWQXE0ymIOS5d2rhWosGYjTR92J4KqqJGV_V5MRpUYoxUZt3jafNo9mv0I_mtBs1Y6jcMuFHOJdycXSWPUJxzPODh8jbS2CpvE66GYWyLnXAkCj_tKw_OfEceOgbTEP9ZA3fpBZn7rFieb__5UhIKI4qmVOVOmbwSipGL6i9nbyDo5qRUGqBO6XoZ9sGJ1PKOCjGf-gPN7AShiI_uTcxf7XXq9ELi8zUHIsog8_5QSbSc2uUxk6SshGC5A3iEi5FgT5iAXZOvAg6hvCYpVzYQXPxPwhcqCtJ5c6jKBmfpF45JevYiV5KpZ_BY8u7WbasBa9osrOxBnXl9_sAqleJ02lxGmEkcoE__NSROSWNaOUuX44X3I2SOzj7NToup1X2dfvvhrvEI-TOWk3O7LrWo8pQIgsyK_K9C19brxmswkrutLsmNm1LWaPiwBGZVEPivxfbAJhDxCmKRDK9bSAadoW18w0JfoQ2Ky_zOqB4lV3qyvQVkzVlzcb8aPWYuELVrYVdH1QG1RWDLijPE40Y_rYw9v3bNU76QuEbhwKoDDstp27C4ltqUe1JArvCR4SRDc3mN2tTuz_6Y9qERinxuxMNXQasevNeaKXfowJGzI_ZWcQdRCW2B9c8a6zh1Muc6xE2c1agUP5TbnhRujUiLuBIWHTOf5aTNQzCddCkyU-RWjiKLn-9AWpH-OYRDUuTrqyk4oVVvX-xpSnB90HvNy4JK5Rl8EcfVEH2FX7kCzJmhYq0MYMyKbLPIWmctDpONYNoR1exzVWYTscHW1mk2umIx_jGqBrzPlUJZlknj9blhGVg_QgBmU1hefwLx8VtWxHERRZXkP2nB7IXcKDzJrLIaGQZLL_BoSFQY9tGnHzSA6opIwil1Xwn0Q4IH8S8TQJgs47zvhB9zyCXTg7uIYWaum3n842lazh06JeyxRruKZjIQJW9tdvsHtf2UScvxVJDLaVzQLZGCSbADsQ2XZbA8hzn5bJZpRaFgTVZsl97HW6NzedKIoYaKUzBfQIHiv4bIysgBVDlOLRQ0xiQerCzJwl02YNqx1UepObNssbPaYeXC69yxDnbyrMSHCG9QwFN32ADkQ0ep896vh7UgoytCIkywSmgtN5d5q5VV90tOusV67ML5rAzMvG6S3IckVFx_9h_gZXi9cbIdXTePernN0g2bNQPWdbp-l5HTEvgq6yJlot_Nx5o2Nr-GYhpccO7bNlCGmi_TXNATzGgK7tQnJsuzdgj-m9x4azf7R5sBssW0sgUZqdKMFZXsHm4Wqm9NOJw85zxUAdaMoPXEI7xzcSNsJqHRHzhHfOcqzlJSMP-BjjngRSDXZCkWCFi0VUjAjAbDnLzeQ1VdpPdRUgnCXxahsEl-n1n-fRYIUS4A8Xr19NEafub2PrO8pnRPOinRH0PHgELh_n1xiMaFq5w5B5SUAwA2kLwJvarqzxiCGVx84fLsiHw5ACsUegqbyma4SCB7fZDvz057CTrJqah3uCsKKDqF7fGgylmSnC_9g9yVE9m2x\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"genderidentify\":\"1\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e2a67843d056-57435487','','','2025-03-25 12:50:43','2025-03-25 12:50:43','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42740',0,'cd-form-entry','',0),(42741,0,'2025-03-25 13:50:52','2025-03-25 13:50:52','{\"firstname\":\"Ryan\",\"lastname\":\"Etherington\",\"email\":\"ryanetherington90@gmail.com\",\"contactnumber\":\"07715316740\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/?gad_source=1&amp;gclid=Cj0KCQjwqIm_BhDnARIsAKBYcmug0ZAJxNx9rE1tb5Av4y7-vereDgpe61PTO_xrxexnpHiVqrOXy2waAs9rEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4prD0KDKfmNm5nCKrLrGoUa6Q14WUB2-8DOJTTV4T0FO3jasoZBikmUD7GC0kmPseojPR6RmzscbcAj2toZo3iv2MacU03dDhxN7ogir86hj-g7-P8U1_grsoQTA0Xg2lF0vSutDAnQSz6XZZT1EfPK9lxpin7V0J76hZ9R560IeqCS1fSJKvD4uljYeR57eCl5bk2qBSFccIkgveESe1nCbva8mYyVYwslcNHdw9odQCRckciqaMjdRkZu8JmkoER8woFPJd7ihU7Wks3d1klvDK9lSIK3Ee-vZAiTtl7PpOC_rIJdQ0t9WtMBB3OErFkgObd4btKA8pmaKeRhdbUhfP4Z9T5qsdLKbG2H-zT-fkVKoXVUGK4_unA1pIJ9iaDmW2s1gh8jw8bheYIFmEguD7RAZcBk1bZFILSzbFPPmDy4N5mmuiEmjOJx9UOn0c7K_4gLjeRmHTqtCnYE_AKOVPWwrAYAAmBwubY-LlAr3ds3W7c7IPq3-pbA9vmBWtLmlGIE9uB0wSp-LqqlvO0k4XnyUZn1fACnJeLGmigh8cXmFExcVIlCkQ59F-BWS9xe_5GowQJBOE8sXF3CBCTTOd7K5Vg6jkToZ0Pbhvoza3hGaCe52iJAoJHzQYPAcDhoRoHXTUJeZ4-sx-CM2b70HnlQOeQLveigIBPxeJXT0gL3Up8P07Mzl_gevEdhPsO2MbcP_Rj8HDGbRAZJZHp7-E9Ctj2xy116L1fK-SdhpMhTCfJ03xhBs4B6iwEtDEqpS3KZQWPzKYumNfKkkwS4BY0CMWSICn1aMF1fI9cOwtvtgq4bmUuDyo_bv-MmjviJtqsJf_f02x1fBb0Z_bXLz-w0KwMNRTis1REdcDd9e19yC8CF4ZxBaxKstJUMRC-t8j7IrCcEnR0p8JxQZ3jHVlwZQ7uWfHJXKGFD2j5ZOYccKpLKxvv-0BT6CpHmEqe-TAr6mf8V83Vv79JSw8j66qeKSxxzmgJ-40CjOYbOex3z9Q1bobQz3fcJ8VUFoWPXiFOFCvKp0zZcKTulNiyLzkLagTV64rq6_7e7l6bcvlXSfQRcniufwqbzW0iiTyKud3Tlhz4dAAJ9c6xoNdHbWuxIptSAT7TfpsXu7UUJL82_PXEeuZQXRhmphuIynk0oiuxlTm7Mux-vgTJOR4-7VXLPgqqsEa6KtdDWi2FiRmEliT7bpgOzPpBS6Gdi__XYTJi4AQkveqS1zIq4ilev6NrHs2UsPE2E8T8M1KDImbrtJrxo3VmYLJjpfuuEbNaWRR2w8LrIvSbwn-ec8D2DgQM7eK2-RY23dhbx-T1zdrKurJ6PmZkWZgVT2849YXBNLRc3McwTQhoHTkSrd3jzMqF4JdIhZ2g_PKOhN4SnMcD3H2MTHrD7xgcXEXXeMKyVrpGVwoerusowyIjjl3CQK_Q22eChY1TSUNwuQYOgRDsTaP8cdhDXRLW05QWrd8R1AhOGzJ_3dLQkQ_m9eGZPDDllF1zS41lk1vexmAXipbXBLHcF9E7ZZLFZqCR4TtCl6MpRvHT4WxtvEhqQV-DaiVraLuPcrz1R7cg2yq4ccc8_oSHu4_MkTGlZ5uPWfzreZdCCtL5iCiKNShVu87nSDkMfj95x8w5bKDu_YZwqMAo2i_BN3l-IEzD696K5R3BvYdQnkYnXdsR7QmZjttUVk3f7O0-yH0Zj2EZtxKZ88X78SzFCThPLGnPc-pWSKrObFtv53pQ__EndrYDlGXeP57ug1ih1co0PzQUZ3aDN6Xqj65FtcFnyHeLakaO2gCZB5yC4CYEz0ySwqz8qgerZTwkRvFA2bQOF6JxdiDndKQEh7WtjE_WnnSvL8HS8a-F7H0ExfrZSHrnc7EFbexxf_KGWYnmvQ1H5bh9xcge1DmLnnffuwwgBiG1PtwpgLN0tXud_WomZVL3w0Yrk_VOVJdY1W4yZtme7x1fWADwsUcZKqt0nMnrS7u4gJLKWcS8fJqwjbm_pTVwbZg88AMXFrvZtl1rGJjarj2fz9JX_lPrDv-0-wpVbQJriCMOpSfvyyxG\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e2b4a59fc5f2-95223930','','','2025-03-25 13:50:52','2025-03-25 13:50:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42741',0,'cd-form-entry','',0),(42742,0,'2025-03-25 13:53:18','2025-03-25 13:53:18','{\"email\":\"ryanetherington90@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"TN40 2DD\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/?gad_source=1&amp;gclid=Cj0KCQjwqIm_BhDnARIsAKBYcmug0ZAJxNx9rE1tb5Av4y7-vereDgpe61PTO_xrxexnpHiVqrOXy2waAs9rEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7XlGYSM8vZ6-a5IbaIIXbh-wmv5IdP4RMrvmoLmOS-UkwBQllH_y0vhzlSSI3Hi5GBS2oxjuAxdsdizSyZ3B4639xaNuLi_LVnxELZcbJWdFi-PBW8BbUEk5Houom8waVw65iuQDjOxBT6Kalpsn9DNdZae5sqPe2x8a0ukVX-jBxdGrV3F2YdVuhSaJnecg0UpyWxb1e2DonJvMsLwgwh6iWG2qlIP8vnAsQhx3I049r575CMamaMemwsVPZvx7oPnFCJkLsYpAIexG0wFTOPeAxD4b90885r2uSEk4qr5VbGGRfdh8YnjllFOSar3nEjCthlgwmIWmzwKtrsu4IS51sRUxYVQWw5KzHKERC0gfrfD5DJmd19F_Pd2vhUpwA77XEJJWJD8mHBcN7ExFR8towiOKh5HroeU9NCn_Al-YuUz907JNpj-CyZ3jGMpA67ateGF51KkPp4JYm6QGS2W3vzqc_z8DZxGp_QWbejWDmXvQIYxK6kdNPsxMtEhPlU77tmECZ3lciM_0pj2be0b9rsg0IeIo_O1pW5ZDRJvdduM3STJ-StO9S-QdquJPa7kmfvV1qvDLVfxBZ1XtO3R-53J-AuGauAr1kVtFoO4aAxsuQ5S1kUDRuFhQZp10QIf7LmaPHKtAuxjrCqZ_QkBOYKfElPQx4VgFycEbDNDQkwVFGG-MSNp2lHGGsMUPDUMevo80_WXuFUgnSK5ySZZGhX1620dLE4ICNXww8SdnMRAZs-gD2eMrSIzY_2dn3N58PfEn-IW17z2PZSy8Df70xsdFuuaRxs0DRRXpGqlb1hwelelq9ewmYBTGTNre9MlLk3_d8MmNmOhc2aMKeBHIaPi4npktcG1nQTvCYXLyInjuX4q3xgAYWBDEeoXzieg-DOgOpp4KFsrqkULLWxBBgh_z7R6Yoa8U2DbnjtjepJAW3qoKY0c_70houLIpV21BpKuHoBOF0_nif8yf81Fv_bRwWPv19tCtxQT4uo3NPG8EzXqGAJbpC_TJVTsrvnl-QIdY7Xx-Nz9Wm_p79-VhZef6qeyfS7Ppv2VqwVfJ6wRMk_sVtn3zvIalhOeUMI2w92YLDOvqXpgVKOh7U-ZdSG4CjZrQmXZuEGywkXVPia9GVY-zXD8yLLCGJwXvt7H6pCcPyhCJje5nUwQDhyuiy0THiYDLsG38fMpWMbUYiVdkJchsWi8TFxZMwDksb9lUFPatudWbvVPYaQxhmrzM4tzlQLOkKFBTNiHAYEhctN48jBk9teUHllW9pLn8fVooJmc3-Rxphb9DzvY_JUkMiXDmYdtYrdw8ADgPBVReCsi5xjlin072-7xu66Aj9-v8Yp5e7lsv_3Ya5IM9WI_OU_ASjubd7MTaLMAqzVWUA597x3b-Z3GbMTOITJXiwB1vZ9DOynn5pnANHPTC4YZPUqtwRHdsPZQkzRLs4ULdevHLLjCoci5uZa3MkOSHDJ_cjln9FKWfBVIDXH-fbvFII81ZDKJItI0CEFLpOu3_Q3I8G0kD99-cCKTDCjLSdDgbScv0CqhjKqzPDnjgSyxbiLjoGc9gOCQEUfnlV1OsM0SB8keeK__2e4U_fL4zlxHYQRUgzxmcU5kciE-A1nGSGLoOqmF7ZkbfyyySsU3NZa2BongSutMg7Gw_OYNw04hz1ZOlUFBvbyUOqhZzgusZ52hUumsDh41IKnm7oKc73WInwilF8SxxbVuYiwqKmt-8K4fSJtoufevpg43sW83kvAePFdN8xrws_nHOTTyJO2w57LiwT7HJ2MaarErJ3_29kO_k8ymdiNfVQYUteiB7ZLOaOulO3hJ8rBORkZ_YiFTJr_BTi5eKQr8NW8AIFCNJSKxZceMJT-142JBEjkw4nTZZsX7ZX5OBdLEK3e_kta-DHzy2-SUnekmEYK_YCrpgJG-5F-AyUTTVb21qhBnYX9csTDDfOAAg472MLqO4Mj-UfKbGx3VnmzHJ12ivZhYnwKvTySp4BYVM8LuGzpbudXpELluC2H5esSXhp1iYGKJ0c\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e2b52ebd25b6-73324609','','','2025-03-25 13:53:18','2025-03-25 13:53:18','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42742',0,'cd-form-entry','',0),(42743,0,'2025-03-25 14:02:19','0000-00-00 00:00:00','{\"firstname\":\"R\",\"lastname\":\"Pegram\",\"email\":\"rspegram@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/weak-glutes/\",\"recaptcha_token\":\"03AFcWeA5NLDxMNGG3F6VSBVUwtzEsiRE-qjrgUy_Sl3v-0eyA8aXUSBwrP5wyZH1A0MMhQhKHm6z_WBdYp6kQcSvNBOEtPWjKBeP0H1Pje4Lj3akqCB-cfPzCmG1ReYuYCLKe15jw2lmkpiyTgqSwe1GcHEv4H7bE5AsXc6qMV28xlxay6XdO2NdbXdXbfjBc51g1Ir6XBv36B0vKOxUEZLd3rO3NXCiXrCc06TY4f8vyOX_F8uhPveq1VSaGZM2NdF72XGo6l26rwoJoHfftbFYfOvAN_MnMRwbMswticvvbMlglhtB5_Vh3649mNQHU3bwseFh9zX7PWw3Ck-fsXh2X3HtiJXnDx3i1em991HxUj3zsohO973iL7FRwuMHmghBn642YmO9X1gc1gFBp26z8nsIZz_B1I73vkhBnbiuqdq_Hh2_Fvte_jX4tHS7K_HUCtUJOlEl_efO6F7Am9ATUvzBhIvWJv4LeQ7aYTau1ITe59uamposk8ua5U5tvffwsn4COGvCez0TR9EUCn6txC48KtsrfgdqbR19RvC5RoDRVcbLJhK6kwZ0AcJ8zf53So1GY76rsPOOYBf7b5FTBiSOAm8aoEsFpv8Bvqvl6VDMDimfEWLJqc0PiP0xkQDyo_n9Bi0mlAcRLse4AcSFLaVd2WCq8NQEwcIn83SB40vnqQebes-neSq6hK1KhbYPg0dgqtgx15ioTp-iNX5gByOrtlhV3kG1makZ72-8vtXr_lfyRsKQMDQhqbs4V9jZA0AJygfzNXOvMqMEBslKQzkufvoUUoQSty93yoFmTr31nNU2coNpkoWSi-ePJjaimAe3gKFN6oVyJ2Ujk-OZWrgX4FXepPWrUU3OO0iOPLO4c_jNZALpocs_v6k4hsxTZMFd6ibxY8fM3EOs1_q-51adIhr8kmSoDoNbQAcfmKHGnUjlY97ArUr0DQPsK-e4tIC5APh5Ft3ExxjSBxCICFR-J7hNf2v_7WXPVwaozACI3bDKhQ_LNAoNbdWj7iL45QrOMUYVJc71t5zXKnTYfnG5tzQkMi2iieiNNUyuwdnraXxfC4I0mkX8zLHD4tO91ESjqEOJP1afBZK8j5YgCE8yyd5veaboQW4laZpoifsZVKLEIvGszvepciigkQpRAQF3qKv81ywkclu_0-UQWfFUfBBZHRYOrYo7_y8mfpfZ3SIOobeSA5jQICnxbUdMsTtojL2zW0AmC4gwgaBc_K3PFsGPoIjlDUHIt-fSOlYRrHm8Q9ch9rUoliGJH1gEhwzWH2n6zO3QgAigPzWBncaUOilTE8C8tYacSELah-kjo8pW7wylJ5Jcn3RXJpFzXWiuN6jg-7rXN0AUL8J9Qu0cxt1K7aEcrxFDKcQ8MwaA-GiAJi_8gqMo9sEsuGXOmU79lA5PESKQt7f7LhAqrX8v1F81RLXeBiLO1mhSP1nA1ed32FBMJjcax6BoAPVg9W3pCQwnLamlfOThPqKQYlR-cmuI8NyroV7CgwzXDmvPVP9ocz4JnoZjLqptF_jyXej-ghBwoo4Gpk0p8qrsQHlS7sLlcPSj1HqwlXkhatbIMaDm5ZnETfC778DU69X4rHU_-uj2RR9uFY9MBlP0AHV8oex3Z9GHustYWY5xgiY8bJ2FjHQmSGn0IoR43a1N4zn6JR7XsGoWe2NQmZBm4fkkC6nv8oAwCXdjarnLdwQjQZ0Kg_9-Ms5YwvSV8vOZb7Gj1DUIl_bMzRJe1OIyg0NSggozIiCkcs-CsowQ3s3yBkHXK0cJj-Il8gtsIBNEg-IWVt-MCpCGQsjPspoZBIotJVBEYLE118NQOXLM8TxiR1D_O3Pm0yxQ0OKRut6VHMA53RR0KfbxZyDqO1BI3ZnlwG4gfBeldnjEADZsxgo5XOBZhFQLRSAXKzQHIkgNFKOcS1_ch8SmqEG5tGvt0o6AFWCLesSp5yAUOiUkJ85XmEp5lk4HzJ2u8JJgYNxV3Pve7cchY0PEFpJlJ9cELQgrVIOE5_D60nahrgjl0WLa9jgY9SrA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e2b76b68bdf4-95216093','','','2025-03-25 14:02:19','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42743',0,'cd-form-entry','',0),(42744,0,'2025-03-25 14:05:54','2025-03-25 14:05:54','{\"firstname\":\"annabelle\",\"lastname\":\"wilkinson\",\"email\":\"annabellewilkinson05@icloud.com\",\"contactnumber\":\"07398255804\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vUJAkJVdA2EY5dRMYHEgwfn&amp;gclid=Cj0KCQjwqIm_BhDnARIsAKBYcmtozu7Ic9ImfyFSHbDgEEbKHu76K3LsEMBtUYqDc342YChQ0n7eb2oaAsedEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6E-4U0lZQmCaJ2cYTdU9uDlVoijx8er5QOcdYmalFdH1PDgSJvwq6DCNZtxDXtAvMwu5gn12hURiRTLNVzvJ5Ha5Ho91sKMwOencKEjeCYdf4tMgFv4_QSn8QUnZf8XzHjjgoCswDmWs9wOHAGVfBXEtrIB-5XMUUtwQA8NOYvFJ_I6TVdcqAlMpCtmrbkDYO9j80b1WZX4nhgg2IDW3UWxNtDQUJUhSQ15-ahIEWMVl1P1Y1VErJonCMQ5lGnLWcmRNbcx15zVZekanmPr9HqdSoRM6MV37ocZOTcvueBTg7rmHt29k5xHSc54os3LDmzcOXK4rHSPGl41h4y_pnSNUCbrTKAxB6kG8DBrh9XVuCNNKBhEXqMxXw5FXzvZMCwWltEm2Snj2ElI0fzZ-Pi0_N1RugwTxd8Y6aF3pFjjaeW5W_uSAXg4G6ht3bYEXKSMEkqqhXo3NTgOS1RldpFYPu1TCoow-tADTSuHuLzqfrK8hOONUu0r1ompCh-Q923Il9Rv-Ea2tRLVehvwUF79HB5Tl7k2JYahvroKFsLSwbehQ-8HjLZeElW6iNeQcOvYwBNAB9KbjsBcYOXyzdN_iNCgxLRubF8QnPn211lKV4Why9aMmsxrPGED0aUGgN1OqsSEbEOriaWWCKEkeIKKAFsxUB0hVo1bjnRPu9JJQwsvt6nwhBNhkTw0OzU6kCose6CV4Y9ZXG_oAYsEWm53gzSwpSMXHGxqjqzcHQok4UKNJahUBmsyT7E-052npKngit8EJv1OBpaVUn5BYgXV-aruiVDaM-LQHeX9WbBr4tudqY6YiYF2B8AGapp6qooqUWwq3mUuDT4V0DbcakNH9uL3DMQB9qh04RKqMZznfpqEauNTejUwVlcyUsjQFUHSN0gaJp3vfJufdyeojmNzH0ZdUm_jXLRqEZbG9Q6X5pbF3ujDUfHRU-ZT9FYZcBI2unkPOfzcfk0B7TAfgh2ytng5BWKVzK6twL9F6NWvx7-_NBtRfNAZzp9cyicssKHFep89IdFIt-aNMQ5paIJJzikiq7KcPA1vmbRZH5vMwP09vBwziJQK-yA9cZiTN_cPuXE2pviunaMgpZqad-LIPxs85lmfZRZJcoygACP-JxQeDyfHyP8kWRaIxzhxApJi6yhP28ijdcnmQ-XXOf_DHGlke0G7D_qCoW4ZpMlsO3NRpmM9gu5a9Ir4WGyA0ucwWk5Oti2KMJor8JxnWxJIrxY2TyDUDyIff0Wf-joVmENRNmPDD6nMVq07JksDye1g0-X8n0oS45viSm80Ib3m4b2eQEZhOtQF6ikETMvn2weoXSDECTPGLMqPamncnQvZyTQb-moOW4D_2Qfv_Box3E6l6ZS3cpIoS6z9HDPQeIZ2NXRdZF6PIA2ISRWscSuxvQ98Ptz54SAjpfmohktgSywbdx2a8i062v8OSBQD1dSm-_dFs4y9s870uwvrLPxm4tfcqJiEpUjL5rxzvR32ef0seX2_30xdsinbPiQ7oConZB9I-Z0jNYxhZB2QXQ--M8sUZjsOEXsTCLT_u6sakp0nWF5BZjAfb-bp_WQDgsCmcFGil-x6WS_w5ZBkDO0DnQl1W4xj8k2oFwbKjQzD6YBVbHpCoPXn6_OtsaHCxEOXPOoBU3VT07I8V2PqEOnPxqzkTpivjqtkmxivl-RfmXemc3vthmo_nsJeBsJmDxJIuG_VPMqCnPMIC-Q1rCDGGnKnzcLOTFDhgsdTQX649InpLDUhuzBnVCb6dFNR4V_i-nUU31ZkwYANsl9h6nDwwhbWfA8DzUqfZwWbMGRK5me7U_g15BQGjG5LJk9OgxkmjqWShG-49ORnRjruOVGsVVqjnNVaueLn2uVMSaVHKsb1LsjDcj7eUPfb7YjVPkbUJc7Pv0Llu8j-849esAiO0FUhvZCjkx3g1dFM5XpTpDEcv8ZqHYo1XCUB9EZqf1vJeN-zTrMVKMJq2EUdvtnfEGtGVgZPHhbEB2yRH1T3wC9YRX1Hg4f_CjKH1U0MEuBoAT15F3crsD5VRu4DdGRnumjkPiBC9gJvGzXzCOAL3t0Yn3HFMpmPtD1Q1UwCGRuQj21V5UWtH4gTHen_0crEbQ5s4wAtc9XzE4vkYi7gSYLNw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e2b83284e4d0-83296833','','','2025-03-25 14:05:54','2025-03-25 14:05:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42744',0,'cd-form-entry','',0),(42745,0,'2025-03-25 14:07:33','2025-03-25 14:07:33','{\"email\":\"annabellewilkinson05@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"1\",\"regionlive\":\"2\",\"currentpostcode\":\"hu6 7df\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vUJAkJVdA2EY5dRMYHEgwfn&amp;gclid=Cj0KCQjwqIm_BhDnARIsAKBYcmtozu7Ic9ImfyFSHbDgEEbKHu76K3LsEMBtUYqDc342YChQ0n7eb2oaAsedEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5n5jJFisGhjhBvIukzt5HpXZLUUnFtyf1jHmxY7vUf80FZnBrIW6f6HmMMhOZEZpEYbezDOk3Xuzf_vaZjUL7qev7az7K6OT2Ggp_HTKwY5WkoSCSd06csjI2_tEmNU_nTOXJEALk6qAc8QywEfCUGrmstorWLFxeXAVvopS3qQdJE4V3BJXqR02u6KV5RNH8fUuujnX_J6RPmdY1WheT1CcjyIvEv6GZkprcfCZoYHhw_P6Nw6PlWFcmqF-Qr6ho19GR2cTkCwGkqAQxnsgv2lPRkqLk-E4VxYn3s59UG5Lne-YESYHHMNw7t5LzvYkY7KU4w9ZLBG7vzwKnS5t4YQQdIWmckSOKL4OmtnvGI-qmgr2dfC9fnVen71RAjNm_n3v3gZ-tn8Hli9fMfdryJLm70vBUYCblNOQoZTWuHnP7ehZn-AkV-Vg7jIyJi5OAGa1poNPtMayx3A5Y7Be9-g3ygB6NDd7yaObbb2IX8s_num5KH0E0KGPx-ZfVfbCTWkt_D4CMspesKNCRk75Flbo6IBjQbmseKHpsO-WehgKlFlp7IlbBtVcHbOLH2DeFBld_GfIc-mHbSiWKIIYbzwZTPzf8ypcuttMbF4myakZTv3nZ6B_FrDD0bcz4Af3KkWhbxZU1kigJqF5pRuVarjLP2KgPBihcnjzcX02BO3xExitrKihwL8t-ug_F8Mr5mk5tJtOvuB_uEYL_eDNT6F1NQt1XEXM58OPY_W0mSTdywurPeAbjdHCoEaSf_VVVYfQfRzMq136P-NA41Bw1Mzbx_MnFIp3xTM8RliKVJQBKadckOt-MDgmygpiQ3EWo3F8J49dAcElzZN9xeiVoBZxQnuu8sHNtVmPy4VsDWWRbQtflqAC1_Wg131qCCa7xA9fC5ihJUq_LTNVDKtdPftc0WzWrKLBNw30mCm02ARVThGpu9ioeoheTUd3quwnKhVPfds_lkLBJrRdj8hMsU0PcLHe93fYgg5HrkwGDgt7fg6v9CQTCk-RttzwgUj0DpJ43XCjWr52qt9IV0w5d6bgWmcxJr7pjaaF63C9iH3PS2G9DkJAeihNJQgp8tLmZc9mNSlw80YN3GnifZ7g1AtK3C8dlLEiI3cCgrex4uZSPesE5XWrLbB5kA8v2FC3XqJNZGZa87HzaICNkaWya7Yp1wPLlw0catLd4NYuOrIVrd1mD5O5Ujy-VwUGEL2xQj2cIZ-huS5tGA7kFv1ECJ5B0gEZOijD9ZonY-_hOL-7HEzESRzN4KZHF6lxwN63jCvhKKEeBAXqIzEsZpz5qPraK6iuPsX5yo5MUO8iVI3axNmqPvCL3x-o0TAZ9xBwKZAyiEFq5oyRpDW6rVcxDt1XbKu2jgI7n_heVZOjsp0OkqFzVC2SyGHAlX1mlJQE3LP3rq3pOiHQbCm_iq4ElKSK0FW3mClhBFMJh9l6LRtrX3302GF4Z1GMNqLzBBwH7dgGyprkLg3ZZQC_ZraNyTozA4uDU-6RTWHtiqk59VFMf6hU6lBss6aEbqQmRSQWpLunYAVT1DEx_6U3U_R1M8yUVuV3eXUJPDQuK0Pj-maxvE6ZBeA0RMBrZc6MwZnrEYzn2PCxvew6VynvK5UCdwrivTyP2YYGcKMGY4gmmQvmYQsEXqun5Znc6Qo9osl9jbd9OsachGEs0v0v9LFFLnvaWi8h-B6LkU41rwXvC_52BcGW2j_Rhm2FZYqPCiSHWhtQFa-yKfktXZEfbve_sXaambsj1PdteHkeuSUwrj7mBr9xwxAekjy9oclXoW5XGgwHDQmSfTNTEVR24JE8srX6gtTs4cyB4dQ6x8LfgYNp_uZGnbrjvOXkUnPNkZMBhYM_No2-Ra1D3daA2wrfudiC5tVyEuRgD4mBjavZLJ5GJOzuoydcahLyExtGQh2shGKoStR1nbqiKIYwBRTao7zhQ_ShhNALtJIawd4EmYbh7k_Q0GoRA8k1jO6h06kC2Bk7JA091PzlvQSw7ofU2EUdTKQeJAswf1uo2kZWFfQD7VmPl_TDg9bREN1Tc30snFCvKb5_EG85MMdchTUSAKBuAOjT8WzbwAbFdjJskhb41KEWbq8zA98xXuFF7G3BUungkIFpW_meRA7YnEfMH9yNry1Y2RMkiGXDCUp-JQKzq6yRm5fPV76-x82ymGMX9ctPy1M8ZxJYlb0IiaMADnhaSBWg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e2b86ae39653-27716609','','','2025-03-25 14:07:33','2025-03-25 14:07:33','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42745',0,'cd-form-entry','',0),(42746,0,'2025-03-25 14:20:41','2025-03-25 14:20:41','{\"firstname\":\"Elaine\",\"lastname\":\"Tipple\",\"email\":\"tippleelaine@gmail.com\",\"contactnumber\":\"0872163390\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/\",\"recaptcha_token\":\"03AFcWeA7J4ksahYIczMUiaMs-RIpV6xNirMRu2aMs7pJOje03Zw1MIUl88uZKF0Xh8Gw_SoqBFmb7Cd1OtYOdQrHGL7Ngaiye4v4JGSRbUecF-GI4lqXalFI-nTGGCx6zizbZJLS30jTu77lcRXs_3drSFlAuml_VFW0OC4GqEESOSjrm7r4Zeg0IHRLpI7IuwCwNNdd6m6QIXhtlfHAZblk5jT0UBKTSkcEgHYp2FtruIMH7mP7HBqOQ_cuJxvtFoKmuCfi6dlbFzpsJ149rCkqrHlGVsYf8sUMa_zu7cFp8UkvVcTsBvYWNby46ECg38zEovIeHMH_SNRhhyMzGoSjUBuuKKn2y40jf9sTlQrdv9i0VoODbPU4lpWYMSUpJkxpxC8A9jQTStcZsbKY5SQR0wdJT2TLzPcxbPNGMrJAX2_RshcBBFDmdm2zND4WsBuJLXAgsTOaWyDsSL-UqVC8lTTKyaY2Q77qjFZOnsKSgxdw9KqYHSeb78x5XI0HzjKAxmJt21I8e02nhXNwXR0hq9hdFlipxPmYFznzSKhlQL2Y6B7VG-0X8oD6WUhWJ5_67nmNqX6BBTyq8pJGwJl0r4HFvbbvIuX3cIbV0pT6jnOUZVd8X26yKenL5HHWKAmZLN-U1TvEHlLgYv8p95gtwOPUoufTsS0JLqfuAmTt7e5i2do-Kexly6woZa5RB57z6SBQgxvjmRgC6vn1NNjq_qA3NgWY70Bh51sfVcw1FMniHsQs1GsVZn_oXc6pYSrVVzSyIaXhd0ZUusZqNDUg5_N-XKZQt5Swz7wlLp4mpQ6a38HCSnS0YOwHchLxIizjGRoRLK-5qKkiL8UkeMGUgWk2aZ_NS7UXrkKnRTnk5-7qt1Pm5O5c7Vw2JsfA82Lv-etHf5mCdaCpXf6tZwKoIXbE38wdnph3mi_1aoXsfb3khOhvymJmo6aJXWFIR4x1XREbiQxUqKP-0l7zLc8jikgfpm8r7TxnxQVrqnf80ysddGZlBgKrBWOT4x6zS4kjiuX4eH7NJ9xgfBEL8iPfAzs2Xltap8aL-pbZc-KPmgrE9hwOIfx2ZVwcNk0Q5aWptSgt_4w_Z-MKQ-3IuQYdlxeg9_mWzCM9UA0uvBoW07QH_eCRVxVXczGrr9oYNk0jndkKfDtmQR1gq6yZZP0U7ZmFe6M3yY9J1n_txueSpxH1O8WLw3t1lAVBu5vx4sp5zRBq7icBTlUJFQwKVrqUNtx-6gaKYQkiWDIY9fjzV4W-M5oBs5V8GMViZ507UhwD4nazGV1YiRFJjF5a-pRBXn-hFx1IrMaAHV9U31E_rstyEq8Ro0Z0ekPZEZuQpnsZ0Skwu4ohYVbNrSvcXepGIpVqG8tV6fUJOgK7AKBdnGzIiJFeFK41jWMDr4L7OsV_K5SJEtIQpmyAJJjztt4dugzt8h1w7mKoU9uUQ-0x0RGtsGCGDmL_ax3NcJeRGYhZsK93ydIJpMPOjA50ECCSpQQz18vo8YXAHa0qiCsTuzdWroDmSxznIVvOENBh4_iZfTtrGj1aMan1UmWAS4wzYYVx_eqC2lXzW4rnSpZCm_tGiLJBW69najtNvJYPjhL5kF4OnReeSj4TSLS3rqdGDQVnoISdaCGz1TNXw7NC7jiC80ezK6mR0PR-oNdy52UeUGgaqWVJN0pM7EMMCDIGBcWuv99Wp4107L2J5WAfv1_1PnOiwYDOe04hKX8TBD9dODeBq-66AbPFdFoVnWK75uLIDkf0fawe5XEjdSA7nCbEDWVKzYFUAfP7FtXXpgQGYgy4_fgHuuHrLKH8y92bFfEK9Jqq0wRNkzLoqPTZC_O2NxDx8dhonxyMWfywYIHLjtq27O4v6b0W3QSwP3uh2NsjnHF-aD5SDBBjZz35eMfKU286eCqeOIDgcc6FAhtW1j1eJaUQhqF6KvvGf6pt-an_FpGcUFXyXDOhAO_4K57Pnj-USbfqklMzj3Oak-vaqrzOIQ9-8iooAN8qpHCm-FVmMQ4aC__CCv4H4jnW5kUBMcesQ0fs\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e2bba907e4b8-58707868','','','2025-03-25 14:20:41','2025-03-25 14:20:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42746',0,'cd-form-entry','',0),(42747,0,'2025-03-25 14:21:32','0000-00-00 00:00:00','{\"email\":\"tippleelaine@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"D12R295\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/\",\"recaptcha_token\":\"03AFcWeA4hD9MWAdTCSoK17Jn-VFF2kgcINNpNtORzmCZYDYpqT6iX0-M-xhUy5P7wjqNcgdGPgIi3AKDAbloKe4aXpkg450BL373NdJ_M6n81Qy_Ys0KpXwb2DNmNn4g9arADpEatJ4q06kziHo73brDcsyd3A-z16km52kFPdWegnCxr7m--nQ1YjW7tLO_0LQJsd2eNQk7SbvTi_D8wC1arxrijZ2KJvRypKhWR-V06itE5IyapomX2s50n5_ffNxdU5vunqn5MLocWEtIMjn7kkL9Fl1jEYlyz4GJWD01KNFD5j_VfP1hrhdOzai4v2zO754lTarxs-EyaGfjxY2lHW385N6fUlZ3J5PNIWBeXvmz1DK4Wii98vRQ26BiTWD5_KZfsjzm41LKwrwNkC3H-UW_bWhT7FhY5qnT6lCgVY-I2PdELIT94bBwAOm1zcUw8Lhn0PCnescxXQxc1kU33rAeTgfCeI__rlDqaAwmZVJDB2ld4iOAu-Y3QBXQrnNLwdOHEO4Zt4cNFXxC8veUj2H323MvXCUewv6T3Sl23gg-DhA6ElZxUmp0cJAd2POA4YqDQ7_Hvy6GrwNL5HB7_khVmq32UiqXZ7RgBn1KIj_rlXkyYhUnNpQJ0G0XexMfbpjxLaklINmECFadtxwjV1ZfU5txLOdZWc0w41e7uJy1IVtQEyADqo573uRYl5hz96sadzmKoGDJy4D7ktLA9fKTcosKSeJp-eB3ypTDbSHw7qcl2L8SHJGiE8I4kr5rtptTgPQYtQUxbbOsfXuYV3MthhTT_vBODshugrvAa1lCPasmctlkNFUsI9q6KDq3IMO8Y_ykZxU6ftP1lDii5K-DnQHFbIYbKN-tBhySA7AFdZzCLUDbGnJ2jDd6JgCpC-O7asicKnIvfnRmXeuiaXKZqoM_V8GbxYz9UAxFJAdszDfCYoGANdq1o9UWQe8Ltjr6NaevzmKGmGBsExsge35xqe8kTf-aDh6PzahE-SW1d82K0JBdyp2nBv49O2w9uR4aA8rKiaN4fZD8vvRaqexJpp2QRr7LGQ0VsA_rXDQHDO_gGtbU0txaWSqr12buYb54x2GXBlXaDQw5lnQe4RjvtTvI5_4mFYGkjgkQ5hmxy_uA1f1pM3Ghtfz5nWWvpyGUbya2PmKnoSAUqoj1EBPDbCA7WddOahCfgEDfs0i3YxrBsktnSjYSHiCAk6WVT9JyKhFvjHIr4CP3qH2FpgnkDvHw7erFsNcUh64oMJGml8S0-SQHa2k88pYlm4ezIfdKhlPUwpQmuDZAC6VoQlONtkU3wLihNljkQTy3-bTdJ8AT5JLe7ySnLwLSZESfDRarDo4-_pwMwxpThTGqSS3IBjiSOZ_RMtjNaQ8rBRGua8-KGH8HmppMdBHn3H9SXO8aAfBjqWzkOR_Q2YK6Tb0gj7u4TyiPhdkZ4k84Bc4XwKxWac5NYFF_isJEa-S6Yc9Gr8Czaa4mLKzv_PSeErzBdEL0BdsZBL4VTqmS8T0hmIQv1uhikoqfte2UYLaOyD_0IyqJyG_LXXeMaGVD6HdApL_fBboDfZsCQ4k7yJdCkqJFhO3Y44lj0MHr3Wi7NWW4IbhpclBqlk8M2TAYpdLqAkZLLg3RhXHPujK86eYmrX6H2aNvteYSo49yzkSdrACWWowIp7VJnO_thGYK1jjGvNbcy7SdgeeEHVbSc97OhBXVZQMuGQXT5ETgLPwMusIlw2iqgrrbBFLf2ZmyPeARiapRMUph6Wo0B5kYASXu8HaPnOqiQ3SfCSt0MOtfOZnEOoRka0-sHA_kwAoRk0tzrO_bsdO47Kl_9GNDGhFq_LF1hbjZfmaoVYrstZ2RwtqreW96CdIAsdNUxcIBQuKMsXt9IaNcbRFceVuWauDm-BEGe-65A0Jo_J2aUDGtmaeLgZROtYhwHFfJgXp-xnHpx-gs-j7uDm3-MCl59MsGN4YUcv6kngTsrDl8JbtucZH0SyKqMg5JjgCMGMo0UIcP5BgUZzASHqPGiMOFJQq2PX-lIuD4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e2bbeca36b27-98283828','','','2025-03-25 14:21:32','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42747',0,'cd-form-entry','',0),(42748,0,'2025-03-25 15:15:20','0000-00-00 00:00:00','{\"firstname\":\"test\",\"lastname\":\"test\",\"email\":\"test@test.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6JFElGnoWzvCOMtwTiFuCT4f4uu0hRD4lIw4mi5bF0AtHH5TBmzoEMMeEJcxVN1B8Skb4HWeDd70rMGeqZHFXY8yXCGrvkjuxWO4rIWtcON1dqWR4lGv91491IZefPwsjbRamusV3iYa_oF0mreYGO1tEvGf9px4jp_ojLQezj-N9YZpa1uLGzOHPAYSe8AfOAg27_QpfVmye3yNl8wCR_0SF2peMHqi_inRq4bp0JUGnQskHihfI4fL30SO1QG4VQqqL-vCuNZHCSRWnsKJG6j9C7rncMppqtDmtSRmwRUZrcoGi7AKEsOd4d6FTRPSR0Ob9615I-Kwdn1wRUCtHUikr1BYQdzH912gUFZFkrpWazqJDlVJF-hDSb7RPPzkdNL15QbA2rknePyV4QqvI9v52B0FsbU7vO5SwfASATiZRY2kfmum4x4EjwnvEYfUbHtaNmjJNccQ0lvZwQdY0dkEFgQj00BQBUKWBULWmRSvmEiWIQeqFeArehA6nLOyKTiezitg2lHfbDqesarp2EH3INXhbAWxl2AUY-0mR8fQevAGgRTFpd1Ly-NMNG6P1E0ivbx_7R03AboAjL0ZVJ-Mal-jlEE2W-DJhkJcqf-s8ks9IL-haLXunQlvXFmhUr5WtzXai-V-6jCF7LO-R5NsxEAtC_K_kc2sxrhI1_XYaS6_rTIsBMWZjUrmDvc4nU6lixo-Onj6Pw_SxNMMJkaABJxkNFEMvQTNVjK4anihcJ_ErbJF5PyQpEiBR8O92TJpVirdZUvseFuUlxw5D-hWm0GE-FgMpGIpsNu2jlyz2uzMX3vpqZl7Y3h2rLHEir4YbgCWZVIPe6g8t9ikzdN412eEYCKVIUblhsHsL05pKwP8B7b4bb9VXEY4BF5-KT-nHBteY44ndIQvb_F2boTVMEQ2SrJ7tDZ8_4htsAeMOPbUEJJiNXJUlgOfhV2eYs1OC_vWVHhOXrgxwjRdt7r54jpTO3LHT_aTeBrLvt_7BmgGJZ9fkEBC14oPZgjgXMWo1P8IJIeBDJcIleWBf72kWxwOP2bkkw1SdOHNwG6HRBvuYkyTmiGZp6TmIbmgIaPfjH4ZM-wo_FbZTTfjKINY6p0w7b5uRHG3wSvtxaBkq_LOL7_DmA6zM-ZXSO_-esaM3JU2Hiich8t2u6YST5GRQ2DwNer7Iwp9XEsHia_-QSgS0_ZlCCTgUBq27nprJf5aFDjvIP4k-Skig9_iHu72HXkwBgfViclD-fhsydCTYhSXnplPJhpM8JneDSdU8SVVDA7_IZqVsIw1K-tV10xRGkMHBh2gPyP0EI0nraEQLnhQq6zeJMY9tTYlydtQzv-d3EBiax16dfSiX5wNPGbs1X9ImvYUQWvXL1WezTyaF0LvzvKivxlxYEUq8WCmYrlJ1xxKF_Hc2UNRODwtwyvQ_V1-B4AG4wqm1OvwaOrLO_tC15E4CXOXIISK235EhWzhiTtn_doYTgkbsx8yS8ARWx9uA72vmibWLRQamDuTrV_V9fJ2lMSE9NG7SZqe9pSEpWV12MLBldNY9hYSj6HPXciERZtzvfTdsAbQNtmc-N0Mmq_DLPsx3L8luuCltzmgjd6aENk9wJrxliaGRthNzIEzXih9oglwe7mNaj8et0s6kG14Zdc0ysRcUvVEqGCQxKAsjDx2hqYk-IsDZyVWdBZWSzE7iwV31MrNM8REAyH8fWiH3dqaAEZPIyQGLYZnK1-v65Qb7F-1WK_mhCtJD2W01V52rJH0XPxq9xHpTKvl0vA9EkhceijvctauXlapl4UgWY9fBt0I85ReC0_1qhlLcaymyw7UIwt8ZUgcxRM43wc9idDEy6_F_Kqq7W919cvPX7UR9GPNQBSy70DF_u48lU7xocPPUIrY-nXY-C0X4Gq3FfZYGz1ZefPnrLhQbHNle6ULW9R0tAXC-FtHbjOVvYONq6sh3lqmtaReqHL9vqyP4mMRX6P4DgAu5wz7ffFBWbAf5w1_XjfbyMymKZ0Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e2c8884cdbf6-06347282','','','2025-03-25 15:15:20','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42748',0,'cd-form-entry','',0),(42749,0,'2025-03-25 15:24:31','2025-03-25 15:24:31','{\"firstname\":\"George\",\"lastname\":\"Shine\",\"email\":\"georgeshiney@icloud.com\",\"contactnumber\":\"07778324009\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwqIm_BhDnARIsAKBYcmvLdeCBqRNV5DpXcRCufBJcW7iJG2ve9Eto49RBXSLAHByRn7nqTU4aArckEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5hh7zoDHXGpEDMB13M876-LMcA_5FnUuUy12fG4RD_OgeDFX1BHjH_QZeFYT5IOwNegkaWCovUa9LqxwqDqO6V59HfDTfvAIr--nCJq0YvoMltjnWS9T-HcWEK0-eQ0CFXj0A_sjf5bbSOsLKwyx2B0WWHA0lVi8dHntzqFLUfwZmV_OAJa6aGUa7rS530T-E4yhj32r1HA_9e2tkxMGLHG91qC3IQltMI7oUKlQKnMNnck2o1YqwxLS8y55vwWwyG5nYIFPHQ_9VJHzbOBqUkdmAq2a8neiiiCSyhgEFtw9boZgj3FmAuZP2KFi-ckAqOP6mZXVA5-nHUEbLWh6TIiAykmuGXh6GvmP3zIwc2kryqbXFgQLu0cB4wJEyTeugg-MJLvLdQdSO4nGJWau8u_Ko8J3WgeGGpCnTWh9tMvkSzqvqYyEcgW_0UnwlmlQWyGla0y1RUHHWJQ9GcFuiE-JNiBRARr1SWp23YaaIcKQIGu8Yfk48R_Tp1jDsQi-ZkBGfPPzOPsaXdOAtlUaAI81QegMmnAuEfYw7NBKfT89uXBSmkxfHn5J_o9_LOylujwFXkOi3r6OI0HvFNEsbZgIq50sqsRK6LuDSLqzJC9F4Km6uJac50eo2uiuvm9gE9XzCAcJsOXR9sQhCy_XPzsKRxWU0YJpPHWwjh97YDLdpLOzqM3r3pNfsSk4xGrnmFVqHhIiGzqgAY-d2g3JCK4nKFbAb-IyrYX0MzBZT4KevL5jseYKX8utklTrdQH3eQ_Xm_J3mk-rVkE2zE-hwzyzYSBBm9UfsgZowxibIP4d-4h-gLLzrYmY7Q_h95HSD32UcxeEjtJYDAgnq_Yd1qTsVGr_r1AxfQwGiCPvnrvpFBbTsGV0sB-n9p17mPnEiulO0jnKTgPhJORxOgiN3fy2XaI2YiKPpOk59LFCJQa-2Ni5evf2frFFWKgR12szIkgL2eJKMZJWd7NXD9mq5UG5eEZVLhgZ6OENo8wPfOuKrlKsHD5xcy5ZIlLN6i84fuHjOLPol9DtuwZ3QrD07tg7fjnFzCzB-0pjn6WjBsGi6YmQYwftczkvN8rers3_zRuVTVARWbG-oMnjxjgohIgRGZ0Ku-oBIaRzmPuyFJg7QGewwmy1cuaO_XUB_X_wpk-TvT6_isu8bBtvqnqPiyzwVEM4JkWUQaEq4rclfixv5lXYCOTFpmeXS6NgjRKaa1-_K-lky_Z5LLFRkWJB3ZUmbzx--XqODMYciZpPouKC-9SiK6Pji5xWb4UfvgP5Hlp-8h5D7Ho3DFq1OgehZ9S4EvJZcX3MyABkR1CwyHUSgCK94Vc6q7RTbHumRdJTxL3huWh_Uv6lWCPchxCIlIyNtpVWJ2NhN1B_Tn4iyDuwLhdDV_ItXCcM_I9QSVQkRKm9TOglZ_1r2Gn-V9ujRVcI4RPLhmAjSRSV6lvpdQoGuPl32jQCcKavwDuVb9N0Yv1K455S3qv6-dRp4b9ZkuI7QwxuU-Bcj1XXtNkQp2VDctuclKj7hkXbVPeUtkf972Sz_oirrSC7m49RjItS-UAKtPIpjzpZI1k72YceqIxjg1sx576WSkyTGryOAzDCbLeufgaRM0chFf63qMz1qiWyOMZOtivfvhy3ZI7yZOcCEwUud9EOW3Oy6KiDzniFm3cmH6IGL3Bx6CAXA6GmpVL6LzYBzCYxLIFHCMi1LW2uXbfXReHsVHX-X99rLmGDFhPfRL6W2kw9tEgab-__ccLaBEBjgVyoaxno4N3fym51GpUsyqfE_MzFd7tipjlIdaWWdF9soIv2xoBiT982JhY9KSCE-mybVhXA4_5TY4iY4Ligf6v2y-Rz00-rm7gLZY4l2UZNxvFEjBWsS67PuWORrGvQcD4ybVq-u5FJT5NqOufuKPp3Sp4W9Dn1RBzvVKVwP2hEA_5xWDw5I7MyypTwsYPLgnR5XjzrjbRrhBvh9eO93vsv3utJlLHmHYNlMnjMclRXkrwtv5YC-n05-EasPDxFeFqmmSLKuQ1Uv3rQAXZmo\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e2ca7f5ae6a8-23381342','','','2025-03-25 15:24:31','2025-03-25 15:24:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42749',0,'cd-form-entry','',0),(42750,0,'2025-03-25 15:31:47','2025-03-25 15:31:47','{\"firstname\":\"George\",\"lastname\":\"Shine\",\"email\":\"georgeshiney@icloud.com\",\"contactnumber\":\"07778324009\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwqIm_BhDnARIsAKBYcmvLdeCBqRNV5DpXcRCufBJcW7iJG2ve9Eto49RBXSLAHByRn7nqTU4aArckEALw_wcB\",\"recaptcha_token\":\"03AFcWeA68xPeaB5pd92RLy-aETKDLyoHgiexLKcpJQlzF2Uy_PQZvKydNoFsKU63ZOfqgnXr3RoMdIRqL-F1Lqyo-INXZc-j2Mbw6NkSv3c7wgSKKvnQyY97cJof_8uGhQ76q_-buGjYKNlr-P9jEjY0dXfyGKdG_ibQ9C_s-ng-GmaeksdTgYK-2V6Kz3BglFVmkfNg83WF9l8HVEWSCZ5sGlmyHa-tfDZqsk-83q4A0OTsXnpgZ5iPSmosLC6VdyEFM47gv4jkbQtRAGi1HZT-Z1NJ0GkjZ6FkjZ_AFS8GT_93zUqLvsZd_l7gKDCmCziVpnAIpI5o_x3-IYLtKdCO3tUuMwA3t7w0jQYCfTLQRGUZB0we3BFGgLVlGWVbGEyJtzEQBW0Hn4GA9NrtCLYfiUjoTTx05padybm9o1qZuxFHo5hbA21u6M_r4cPwF1tGzXYnd3uoHQvzm5xmQiX_i1B8aeXE0iotJLMJo5xmPi860ZBSicT6KBb8qBQnqoAMZc1Dq4kKBBhgzXDil_csA2vJVqGig8uoFxS7n2ZEHnV9rdTRnJAbKuqLhdUh4T49agdxNrgv6zDxu3QeXPVfqiOghHa1-dfym1FqlTCXkIDQ29odvuTa4ukWBc6QthAYCGLxcYo58D2umuXAVpx_dkhu0Idlqv_EamOWJpQU529FcJgH8HlzalPPeqxxec2aAky2EhI3PZVdCNcWnKRIN71YPNyFTSKi2mGpcSk2aFTUhE6N8SSRZKaYVc9VtvHsEbNcuWMlqX0s3zioVoqG2RsOuftCP8V8_YYS_oofxrViGqT8pfhfKFjN7G5hoDdWF5IMJS7So_MVYOY_8LnEaC1fkFvt73B1B1cTDk6kZ5Zetwuw_TyARZEpb8dIUWedFXWTwRpWjA0oFmVLLneYygYf8sqgLKKP-K2NjFQmPxweSHimEnlJkBVTg80lyG6Gv8fXxjm2DXDE28mGA3me5fabpIOCWmxI63juqDmW0LNlJqFT2L3mfBGDuy6rS7-6UQEPgzAWedFGcefqZTworNygW9oT2APSotIjB4tX3xgOwxu46KIaAVYkhW3886J0rHIGeuWzJpzQgu9mrRSjf57scOAwXyAYVAcDgcUMY6Gk6CLonlaucPhVmOfxB5POZixmzIgi3QBMDtL_d-6zbaOjS_ucXqLJN21x4dusSbkJZCyYB9d_E0kKbIbSDUZjTFEZQN58cb_JZdU3rZf99UcAjmBRNv3iDSKqbVbJFJ-s76z_gAyIZr6QStBLrVe8zU7jgtxPx-293qcWHzsX26TweavXc7ZhuzPvu2FzbUdpS-NYWd1e3DjP-bWpQqCpmXroXA_wIl0fh5V9ohGerNirL967l5sBwTKQ_UU0WwgVPGYkU-7xJyiWXAIZFr7Wo627v5mXA6KVZF1QgjJySR29uiwjX1S1fHQroIjv0MFROIFRpCIbBpBGFQCAbC2-4yvwm4PZimrIfsNX1Kxy6ZjphXExM1b6LeTxWuQuvEUgY4g2aeISlIRjZDXXqMTY80dyocXIbEYW2B3e8PEZua6LC8_-U8N3qPoo2qDFX80qCPCWkHT6P8QRwLK33F6fx0XBchCQB5w1PwrJjdl1sCqKcGvR1A7OwTl7cU6K99jy2D5hJT2VluOlRIDxXh4kow7YuLoiKN-MpMVxLNFPzf3ooy9qrssH__4hzeLePjM0klPEfx4sXvjkwWVOC3BCU_XBW8Ppwtiocb5U1M_xs-RCnhIuFMv1tRSvFiEJHVqz1Uv3QFCwAEFy1r4RHIMXDQ-twehC9M6t-7KoBIPCR4QrCSMZOMj9D0RmvDSDwlAorZFFq3SMZy0s5vnG7VefaIaXADognrtvAs7R3gj1-PwbKjsSqcr4skVMFrn3Ok3k2pTve8YNu3DNDG8qloPp3U1FzNqqC3m1AR8xCYt_bbsv7ECDCnJz90k76XrlxGdtxjc8kw401NKrbNv45iXYXgrCD2V3tR30lv1WGORgOB8zmtl2NlpBi7zBzybGNdE0fhthp-L4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e2cb83a0c349-71845568','','','2025-03-25 15:31:47','2025-03-25 15:31:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42750',0,'cd-form-entry','',0),(42751,0,'2025-03-25 21:24:47','2025-03-25 21:24:47','{\"firstname\":\"Antony\",\"lastname\":\"Samson\",\"email\":\"antony.j.samson@gmail.com\",\"contactnumber\":\"07966155461\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5DKcMwcIXgEhrVOY09Y8sIjaoKlvh1FdkLyjySzU_JypAzIjTyIL8yP8lQgJejzE9Ss7WygINZAOYjMk2u81JDzfCAeumbPvk6AUXb1ZJMO02fiOcdyE4cWr-1q2JjxoK4vufAtiIOhxqoQsCuv3gddn-y_kcObRW8dVygKBOpTDsHKiceWvin9cpjBw3Sj3vh14OABXF3xgLv4ZWLIBiBnVbitJNyBgpOVpUKG0JYfxFlqDWS6WKsE_5S2CE8kaHTBfnGy1TYXEOITuxFXzMLwA2hrfZYX6p_WVJJ_z6oK3GohCvml67whnXi1lRSoOXeqmBk68kVHEum3jxKZBqkugJ6zQYbmqsyaxRkUm_moEksrw4StM43pYcHUBX7-T_jGIOQkdnj-pbVdpr87JlH0cxcU41Dp4_wYJPEWGIZCWmYowNKZiSa-8AbA6yu2LUGTCb1meLDKFn3_ni_2Gt5NUODP6IIeiJALrouesMqQP7OwOXjMdpMYtladIpKXxOIriZTSKg-RnQUPua-XB3-Ww2x2W3ppx2doSPyLnYgPBzscaSWFfT8uLZPWFKP0rKvPiD1SfhMbsRp3N7TAOcdKpm-PFXt-Ao6IxbqbfCzn3lM2_ipOrlZfVl3Uh94GqTZD50u8yrMIjbjIafDJD-wayDvO9KFVIRO83UDWqetuxq-wek20i2_b0bc7vyzj4afDXVxIcT_zK9a09oItmb3JHBW4HBJ4zWQI0On-cyzY01iPDLcj12H_44M9r7jRD_eQNgbh9ZoUWj3B8lwPGtmVo2gPtl9jlvu--IFtkU5Qvn5uEeowmd43fAo0Z2iQNh1CHgWxN1iLlcDLe3ZQQxTLtRx42GWK0NOt5R0WK9d2wpUk1-dj37nFGzjF-bci73j8ilFlXY5WlL1-hc16ITc1BPWEoQb2b50R-244rQ3lE3eRIMPMIHkR-U6-Otkq39pGfC7icKK5tlQlNHK7XEn4if--jybL7wAyElO8k9KlvZ54J7ESUzeKlOfG1ozQCMQQxAg7fiZ6i6rrTZ-G9M72TunsrABxeBlUhiD6B-B3by10Eu9YNw92ZgXt_FsjNyCzjCMj8x7va-BpWBnWsxF63TgMFuCAWQirDfvgM1HYrc6bBPRnkHa2x1r3rTzWep6FS8e9vi54-2mTPrTnszzl9LG6FEXf6u7t1ziPK_Xyyqyq0uIpbll5tj5jqk-iekP6EkVYNsUti4zrtg9ZI0QzxuwSccNpxaFnSm3CeYAElm5Vw_YPGWCueo0Wxbt1EfK8srg5Brnei17TfgV81wzpvTcwObfT3tHaaGkQkT_OvMRqkn0k5kCBpQLOn6NYJae0eQCKw-1_9i9AUQZuL_Owbt9GhplfH56CyKaBGyaxh79zG_kOntlVgidC3aiEE9GSpTYuqAw3m3wtRfhgny1V4ZK8TcM_Qcq9my6ztq9AdIzV952PMUIBIfNCuvj9NgG5rmwjFw__k-X-aOXeP33TPnRgT4Lpmr-19FnsCm5UFHn6y00pPtKFanl9XBn-ZE7DQeKJW9bFuGpaEYUFdbuS9gU6iCf58srnaJKPDYbAqoGkDw0qGhy5Z5lyltkr9UG1Wr3F3QiJ0wf7z_Zre818DpEPnmZ-xauAzrz9gtM-yGV8eg2A7AGKQspP-FPhChyaiH1ORB42NT_8pW0og8fYTnHsoj4vHQTxqA9x_Yu0iC8RABjIjUtvK9I9fK9AdLqZlpOxFv7218HX-D_y_BGGzH4LzHtkmx3UPjFR4bXaMCtDakawjrrL-WXvrL4-xyYsgXBAueuPkluuMO1dc7R3XMcwZc06-5rQtlgR6Cf3Iy674wn0NZgOkGYUgOypcOohh1YP7-Dxi7cBSZq49V5ZZAwcTXezCbVoH0dhZJw1ud0ahzjCLjnWdJ2fGHYvhmO1KDi_qNTOr0oYOZE60o0epH3fQET-YDDnYom5d8WfylxtY-x5vguE3emxPiWiLj_m2YiTkJwDRF9oJ_0hx_-npxJuvVJFqhRgemYqamiP_vzdn-LK8rebW5-bVtftv4adQoj6PwosGrCY8aPD9jqjuWvF3iOQHv34vLxdfsHT2GMTky11ypdSnqm430kToQy6mGm70VuOUTR31acfu9St4QZT1H_zpZFEbanPVoHIqHOxec\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e31f12aab7c5-62755930','','','2025-03-25 21:24:47','2025-03-25 21:24:47','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42751',0,'cd-form-entry','',0),(42752,0,'2025-03-25 21:25:58','2025-03-25 21:25:58','{\"email\":\"antony.j.samson@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"0\",\"currentpostcode\":\"YO23 2SY\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6VT-04GcrXYd95HUXG_rokREMIx2n7WALHHiOQd_pjn81097Ypyt-Buq_mMprWhTSKzS9P4NSK7ExoAeH3kcA6EvvXvlGBRHhopQkx0NtQtxeEor1MD0Ibx704sBWBKFH1ItkVe1gvIIfseoOo7sgqjreGG0h6vv8EmB71Kq6NKQnPoyXCRvU1XEDMz6_B2abdlHUQS66BJnNBmjJkarbnHATuJSp5ydZqcyPh4MHwt6wOJ5fR3F-BYFsTBr1QvB9XKnHJl8ackBC8-MOgqK0t60H9g4wt80j_XvYPlwUz5YFOm9YrBUJwfXWNWkroXcPsO1utrFC6tgwXuLAXdrf506tAzr1EG5qp2MYEUhTgrE6GR6Y_63QKvqoITx4tfJXpVN8ybLMcd4ng78BFGXk6a_TPpxaZhGh14rMiltj3uawljuLxSHhO1-eirSMmqYKgrSqhN6xyxaU3Xz1aSceRj8EqQymqBtBHpwuJx6-I236fuGcYSo3H3c7J30YO1SQ4iuZppTI7d6GaMA-n11HtcXObls1JEUJhPXgTRgzZmtnmaOr-VXCPPHGHL6bDP0YnYjbp5cMMT8faEXaSMSTKfzjPRguJ-iOmjV9gOE7C7I8-up3b2TgmTgIAHyl6W5evY4PslKWOEymyKUHGVEZmPmDcQqNDkWH-S0kF0GF6mXiFWMl_81blPMJVcbXkB3XMHRPImftJDIUXzQI16jvZMKOcCyxj7oZu-IdpHJCrxevQTcUhIbi3k-frtt3aiJCy9FlyZFfcePH8CwjsapuygUAB7ZwpRxVU1xazGUUeIuSFG-Q3HxgQLk-uLW_Ofdzbzj5zIE68eoKbwvTd2S0g5sLZ4qhSqhiBz9rUbfANZStBINvMZ2NN5_xswjb1-TvjR5RgEvniQ1WnEq5XOb6Y1ASvwFnJqwuUTSc0pkSyEE3aO8-JCjXl3_Kmx6owtn5oebihrGFnJ4eOhpr1IrjLq4waRrc536z2OwR7PEgAXSCSGl80i-sR3x3azpDdQulcgc-OVCE4RiQsc3BCtgui_liEpJ2tBNBNNy3PikEQXpD1dBAKxNBg1HbxbQaLEoroK2jms4HhbfbsnjM66sQW9CSSc8vnxOp_JT8rWA5idel-j9eYQmvygeAq5KWxvoRLpnauq5ZEIZ_ZZF4pQYzgK0pbRDOyKqjC_t-1YU30sQgugiXpoDwNmfdL0eGz1oh9BlRXC5V9CdZhmHsIrfABcdM9BT6VsSIOHcc7sS4ckLBRakllPyC2AFhq-8RjZIGtsGcq7M0hCEM4ZL54PusCmDdW5xSDGgTaqqTPEMQM-D40Luwx9Ud0J68StvPJPOzmajzYuTB0VGv9yAhN6WHaEMgBBAa5Hsg1JhL6Bt8G6o8kD4UKYe3KJo7CvXG0ijyvk_dKjRp-0NCxI79n9-CC6W4vHO5B3H9dtySyRxPjSlUBl9EBK7SwyAnDlt2VtsPPtMleMg7hA6B__tbBJ0flF_u2jANt-XelVzN2TxDhBLr64Ji5IpYo6fLzQIneSegcOC9rMVUzawQGGS289gMEfGNsMjBo22m-wQW7nraA6EI3vIEaSrokInvQXZ3s6OJx9gJUpptQgifyLLa3TdRbsAEset83IGLGar_XH8PvG6L6BoPbXHRMmlXzYTPCbaPgN73W_TTdDdB7CEp5fJdKkzwitCIB4a6MT6j_50qLeBvWUg6VVQn1a89mQ_UpXUHa9UkLPmKy7XsQ8P6j6NoOHbML_ccJkiCDtXWWvr3FL9MEPZQnDySsns1omSsIaCs2h1mmrTO-Yh_yPxHjDWLYBoZTNy9Wg-nOk0whDgtO02xcSH6K5bsCS1dyj2btrkT2UyMyE-_vMdD0mygnp-DYNqkWvgd5AFBihArvJrlfI5ySYEZPGISmPii32PykgCUjJx-cxetoJFViCE4wC8agEXcsJ6FqGxa5l1StX1O2mkuzKkRSYp7tAbTsK927h-mpssGdhUcaMAwOmyubodiMpvx12wbP9y0hVi5VRhHIOORUXPY-f4xWliH_IKFd0Se-8G7LcXKXIaPmVmXv4fTVQCxxDxl-soHdydsezG5vnZ5Ac5fiTu5y1y4mKhkvZGqN-PVec8gPRiBcu-1nkRNfdP_BJhQHjrb0bdu3KXb18i0nOxg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e31f482f5b06-00352086','','','2025-03-25 21:25:58','2025-03-25 21:25:58','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42752',0,'cd-form-entry','',0),(42753,0,'2025-03-26 14:26:45','2025-03-26 14:26:45','{\"firstname\":\"Jenni\",\"lastname\":\"Cochrane\",\"email\":\"jenni.cochrane@hotmail.com\",\"contactnumber\":\"07974704899\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA60tea2b1dmprgIlRGpkOvv1T2_BxUKTYn_pWgBNlVS1HADKLe2OudrN8ZBmSeJGky2K2OdixCsz8gbErBYBD6DEL4jUcTcQr5wEeom06EYY72u1LCdbtJgSCe_JR7iZ1GCP_aWUkf9XJ69eX-FXv9YrsBDmADJiN_uv-e5Ca6NHuZLogQQXf0a354h26P7CCjkFCywzTJTOA6SIt3YuvBs3pI296P0q6FH4-U-E1EiHG_HJyDzqAMwnVuHVF9lJcfZs3KHhgCXifKBPVuRzk5v6XW1B8OX9BWDQkv8mY7xgpF8sQvUvx0FmvDWDdKEcItIZm_cr2df-3VGGgiOGN4mLB_OLmdCw5knSlE6xcD2qoEHDcTVsD6KzdC8tQB0JrqxGbafaGGU5mH5K_34cVCF5hZeMseL3SjhZm1Dj3lPPgfUSQdXwSQxYUaVOOgM7HSQcfyFobjvWEk-5FiqwPQXa0uMXmncMbS2aroVKkR1MOQVsaLW_LhMF99CwwyWcKmeig3bxkKxNzZcpdRe9WUZwWOaU2IYubyKm-i1qnNlnNOswTZuVo4poaocajFg_T0ohmIsnKgGg-K6mPv-bFXngeQJiigMkgtP41SVHAQLBS1NCMElKSeY3LjKlv92z5FYoX7g8EbVOxC90yNP4UhgevuviEC8qpwcAHI31EVfUhR5a-Un3mkf9p_3gRVXHWEgjE2un1L7XEM9hK8ybLpjIbkD0D71BVeDbFKIAt6oMlUzDAqmytZSm1zSa8YeFSEyPZm6HCevPcgm6DIsa-TWKlHQAXN9_fXX6wFTxCRrPk47KEyNv7ag-ucOeBApX602yIHrmtdOI4ytvbBfwt0R2Uh0wjDTxNdVPuv5WkbKlCj-3sevKlij3K1yOTsY2c16FoxETLPieHdB0cUPwSBa0XoufqRJOo-xexClgj6AGAAQBnm1B6wu73-g-HcYGjpfMSzBbbICHp7vDzOlJbRvdOySIFP1vQSm_r_a8Sz9DxdbuTWq7ngccry2BTNn_8qvYZBZ4PsUArvidsIZ26-9ibTQd_7boqM2Ht0Bqi0v-C_g_4MAbRj-BvTQTtHlMSFxlCZsjpmYl0bPQE6DRauYTEczibql5bZ-o2wiiTvBEHWonAoOe2ERmHl13jO39G6-9vHDoKguJwBSArkrkTFNkEKsO2ukUEMxnK6Fo5MNI5TWmgzuKuKV2i7KD8gm4TyPk-yz0x1wJa_UBLrPgM3BKt7hQRD3FbnpjpMWt-UfdLakl4EXk-y9KVZzgWYN53bvmUVzHQrieTPlOe-3E9gLkdCQwtSojPhY_yZKidRVxDqkwRQkfHgMFi0HDWV1huBiX1MK5u2lkI7liZrq1WP8FK92FbxGQRmq0xuG1oOfaMnh-FiXbfdkDysBPHW7Zy2pFu55jB_5wHLZChV7XN0jQdDsP0-xJNCk2xuLZu0XPbRaWVMW2tX0gxARH7OMNbOEgPDZee2xpXnDnly9M6iQD9hdDQwqSiTfAG8TK86peRInAOp87ZFLmPSWGhn3_xFCcYsRpw5CtmG8TaAOJZbUvKUd53KihrYTOTV8fY3r7EITkasRMUNopblaBcnnM2VU95NVq8ySy8ehofwn4vb2RWby8gDzriNFFoDT6W621Xuv32yAxSCl2B1Cfakje4JD79HMihpswmIQecObp5CqKWyZ7ishdxQw6YiW8j7zIu4tM9IllL_Dgg3ep7hNg1CKhUqBfruvwo6ZCZnlp28h63dH3lstmD3VtW6svJtYg-xmBHb6N3BY7OrvaXdeKm15TZrMUJA3NivL-8vaNpgPtvNQJjl4ivS9BYFI7XM32aQ4AAPI-GW16B-zBgpfoZlsBtNTfeSuL8eXMK0k1WrY7I7tZNqZF76UElma__4NGn_a8GWBj7Xc6DcHxe7E9rywJiNUyHUTqa50G2cqxY7crwjTpVXrct3Uj0GeVWoySmSJ_4jx_j8wrXjyxl7jo5U5o-JF5L4PtwdUti87MoDQ8mHqoTdNNJwYAXc4mQqgaosgRdCpVE65wTrTEU6x1Xop_J-N_yWOafC1Z0vznI5UkYZpWRQvLo4LubAbv29linxP6LdL8W24X1n9dkknSZ8AAy2rCcCoy6g3qhU-Uuei59GVhvvWZcWrbk5-8rki8_2MSn0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e40e97d010f0-14246193','','','2025-03-26 14:26:45','2025-03-26 14:26:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42753',0,'cd-form-entry','',0),(42754,0,'2025-03-26 14:28:14','2025-03-26 14:28:14','{\"email\":\"jenni.cochrane@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"9\",\"currentpostcode\":\"ML1 3FT\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA4Rg2fE9OjvnqcYOd6wSPSdJh0ALiraveXtknHoRD61NIxNbUb3Seiq22_HjbktcoXeMOMjEJuAIdtnRuQJLdY6tcMO3hNbKrlj1uFuVviyYW8IQLGVi2nVxboU2B4mOn2J5mgsxVGwazlyWRXfOTUsIJ6QPKvvKwSNb_RCv5K6OjqfzWOc06LKzUZVrg_J_MhKIxZxv0xN7Hz9A-ROt2CucPOx7Z9xQfFkNt7yRp8qmB5KN1oaLoHPU6y47ifJWz0ZGcF-7HXD6pp5GOs-lJx6H0OptNwx_4k-I1R9evbZowRWt_Etg5233eFbWUFK312cnYC2wsHExVDVXdlq0Q8d_auc90Qoe_tXha58Avdinu73pwTFv5olMpzCOQtG1UG1UxftY_bbEAi_ldQcF-LPqPrn2b_c414iNQAMs4WYtsFeSD_zAl63n8kd7UWFF0KuUlQC7pNQUbAaM8j_h-ayxQ9L9uiJeeUie61LLgTiO87WjhuvSJCwbRCpgq-eu3zqv_ekPYAM_DVD0FYKnUIhPktHfd1_fJrynDdKV55Tv7wXV3WvGJr5ObNXZgJquUXOVMTzrge7LtbM7Pq1dPlBLHWbbYICuWRpIbGp4BQJKvm1MxbImjYh9uI0lds0rEVpVFgs7-pmMrikj2Y-3ZaigHWPt9jogAC3ltTTcXwwZLJcmxJJ7sHp9OMnSEymedt118aN9kNlRQV8hhu1jcTdo97sgF1ioJCDY010tnD8SsxxD3aYvb_r9korE9j6Zy-g0Amcc4yYZIkRyukvpvt9v2XF3x8yuzR8d9q_2_BZqaq9-veg6MxW0KrbZn69SOP7WNMw2yxyHl8Mr6yGjpV0lPmwA5QXD6Zm0Ki4_785pj-HVVlRgh4hYkVlAuYWejITeHkasPLxNxyTFLTZT8hDQNmQ5Ylxkb09aXvaYRRahvsVag4YBiXDSCSoiEExF72WiCs185kLW9BIT-XsxskC4EHIUHFQ1kCvcq0MPWSYXysPKcTpQqBJc2g9VSvT1tLi5eUKGd89KKvTGlMAdfVlIARyVd1PLPfJJcR4gX23RGn9h25FTxzsIjkP4EIM7gy5lfeKFQxMeeCHyayAcdXjEjcM2f8mN9axAyIu-QSski-TPF6qUtQ1DxOHc-uPTwYP8SDFf0eXj3h56Ah_cVOYg5Cwbx1EGE_Qm64eTUxjucjQEUtQPH82lF0WKlAPM2rfLHYVpw4SIdZx5NH1qxySSyUGr0un3eNBmgj5i_DvZmCFkGV2ECrdKVCSrICtECOIEenYJ2acFuQWHa8giJPcFWgTOu0U-L3U4Rw-hLaILmi_BzGqnIK4XREe8xh878Xq4Ig-qqGlc5hYgi2QYq1Ab70gS6n-myHwDqxOGyE9kC8W0FDSKJx7PtH2PQdLFyw49uKuFzDaS1m1qvJtZne1lTLdQ5cvYCJu_ZivFrZrk_xob9axDvkNGUbQ7jCTQ1Wcb6XHuTo7ajyGjYObH1F3wfjuhFcmNHPvqLUBNzItsVKT5hOyEULH1uzYxL7Lzf1ggHtqPNah_39cTAV2-tsmoI-g8Gbce583oiPkaA2a0uGEeD8nQprn7lAUGrKhq7OqCmRS0DgHu4uys4hGxGcQ5iXAvKvZVayuqq9Y2vP-pIkWjL_b2LCEfRvxC4KfylBOCewNnfoBkEORuNOmGXC7W77o07Nhpg0QA7cJUTbGHThocM3Anw8R0Vfvb-Ea6NANV00gdYhSsX9BKOHsIexfe0Xv8v_c_B_qJU62_mrUunrr4GLyZhLYyXKJlDpYQq9QOedoIzQ29Kdh4PALTrJaRXLvTm1gfOGDuaM6FH0-95HYE3xctkwZbTqTCLKYgnpSldfRO_PerlnBeTlTmTBaYjv4TWi55EJ1G9vyPk5XXROSK2r6HYltpIBa9bU-kPsvMLcOoJkIB32zYpihxYuEEyeZdy3K3Slgv7ehDAWUYqSayZlL3vI4zyoNkrl21xjJ55vvBddc-C5VT1XX-_1vTM9iodgKdSJQB_GWhIQEejMSq-ckKU6BKaaytc_tlXxas39Iibj3PQMI3D4mCvJ8QrCuW9KpcfSIaYkZzIjRjiFXTM5m3L3maE1tVo4UFg61vaBs4ZxqRm7XDkRa8g5grGW2zQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"3\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e40eca986078-00642944','','','2025-03-26 14:28:14','2025-03-26 14:28:14','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42754',0,'cd-form-entry','',0),(42755,0,'2025-03-26 14:35:02','2025-03-26 14:35:02','{\"firstname\":\"Jenni\",\"lastname\":\"Cochrane\",\"email\":\"jenni.cochrane@hotmail.com\",\"contactnumber\":\"07974704899\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA4JPcVpSfG2DDVlr-GVC8_SxQXlnd2DJwcL51M_evDtQ1_SqoKfh7eJ7ccIww4BpgZsVchDGkZKzJypeLvVG6g2P49WtjeAbeuGIkQIRvK2qDIgcq9XPVel3sTqbkZW_DYm0oMMkcojnDfkKByhfT02xHIjcXeJTUCdHKJmrbHtiEQyNIybwpGzPCZfd_s0IuB1fFSDYS_zNe-58REoLij3z6HbIy_6OPjAlRQ94DT6v-cxUwZnjfZ_GQhJW5Tx1mfLvgX0v9j7XxlMeug3uzuo-tSzPLTuLwMEeA7NPdGqQ9Nf9pGCI5RLmtGptmKNpHWYyA-AmScy-oL8Or8iwqRYb3XrxcEaSqrZefC9A8sfCcH4neTIX1t08B7iwArR5-CNNTvltiLB7Kcr3u5que9mkKcn90RW5rNRzDYYP5zvlpjmriugo_SkgS0f_AV7w_5Mcvxqw88XRv0vI3xQ--b7IwQOVmVPSqgQ-uYdsq_sPPWTliLktZKOAP4Mkn_RKtTkfvQpo7qvMOAij9_cz63dPWcbIzMXieyaNw8fshL1e5nSHGFXpzhZgKAqI6FyfHtHO6_inp_NeQddUZxsoRic9FSCk_RJksbw6sQDPz_fWggCNeYgX7OuqynMKkzqyq9XTOiD0MKTEZ6hDKUAOl2aLPbpW80B77yvJKpqULeH6B6OhaF3wUTzgE22fIGnPmG0RkbaNAcqkvL45Ikd52xs5y4y_AlOJMf7s9GJgNEdrcz4sqY0-K8WEjpsTCHonw6xo6RJJozSbfK0KcN7ffwkD1mQ2-0Rmn6wCE7Evrw50I3dhLdAMqEY3EIf4rE3EdHJ-zaQ7amVA0kAIeVFibKeok1MQjdXve-tUIaQ0n2xM2AdFLqcWRFkr45-oybhDlFZfl3jgFXfBIXlc1Zq62HJh32geENIpPdokenls2ZwhsF8_I4qUd1e2TCwOLttKZdteLLeQSsVkr3saleHJ8ey4f2yCVcxpjyMlztlMoMTLGn2VIUMrs12bSAJLdkG9Xb9rG1-UtiM0E6gqRrBQqS6tSlXH0srSMLZrMQFeoDKBFl45KSfE-A3qGMddDnswefisw8q-uDuXfvCKVGrjyLguFf6IRAGq5a0qaggxf_66cXVdqt0w7TFO46BSUBZDl3rBOPDC2DQAyYIrQ-N7lKkhtq42ngNhXajpULfbDICZQB0HY9He-tChsz5nFRsG_MeR5oEZ_SRqguXbGyl232ifrzHlKXX-2tk8HL7fpdYXYoGPfMa2rjV3nqN5wAMxS0DdqTUzTiE1xhCfNJfkNcLh_Jkj4YhphxhnkG-88KgCG63i2X0R8BE6NJtD0OI7xLoTPd1Th_nKN0IEM-FPJYTwz-zPffGasSdLTbYGpsnAX56P1XCW-fcRvl2IwigVg4kCyWxegMnnDFOKd2mVXaJ1-sfixTHIVrl1uOOCAFSmQJtGCezWkl03NoQQ_o9SNjcjYu5X9KZLYwQVys7dfUhDyUuOUT_7glrSJMzCam_P8Nxa5B5biXu7GxfHxjAM8wtN5V767V9QvFBIdAes8zf3Hy1XFfUcsCjhmSkuLemn-1WOzE9AwCcKpbLjQT5br3-hmg-lbpT_jxjXc2QhwNW8GI0cXQKuFKIeoSatfjrI8nkqmbRPm7FnSTMHWuTewt3YwqsjUyko1ztFU2PqrJ58jZj7ianK5FfTkBoAA1mz4PAP0bySbUdti8dgBpkmG4Im5f5LHLagmqLV_0GGgE3Q4vtKyYHwkWp2Lu0jiIyWVcLmwSjqEkakEJQB7S9oAUIc2wkdPdjoZMyBdBU8Qpw3BXwBcsr7LMSGm3sjo0YQi5w0ZK2IjnygtmTyFux3ZVyPaKyZcW86AgrGYKWQYQKM48XinPCf95zHBY54Amw9wdvLff-dBXIqSX6AbeVvKfkqKy0QZ--N48PSPGQAJgiLmdLbn2hl-ga0kxZ6iKMp46f2N0I_ZHW1BIvV5qno5Q8k-lKx59bZIwmI2FWqoSQ3TdbrTct6uGE9ZyCyi3MCznpQX1rYDTf5yEy9KX_TWyjvww2dm2fYwBHAb13RO_BqeaTl9yWIxPHQ7fNu5ovhzCqWz-1n4S9QUCLapabTV0lZjVs\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e410886ed765-42242337','','','2025-03-26 14:35:02','2025-03-26 14:35:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42755',0,'cd-form-entry','',0),(42756,0,'2025-03-27 09:00:16','2025-03-27 09:00:16','{\"firstname\":\"Jabari\",\"lastname\":\"Animashaun\",\"email\":\"jabariani@icloud.com\",\"contactnumber\":\"07472657831\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwy46_BhDOARIsAIvmcwMhZZr5iDLp_N_O56v3IJiFLQ3Pg0GiIuVNjWkelg5_056uQSE7MMkaAu66EALw_wcB\",\"recaptcha_token\":\"03AFcWeA627JmOBJsjPBzcKW3ON8OiVrpExiVu2BDADSJqc0Ykm6phT_sQA1o-C50UhJh8BYLtc13amUZp5lUlcvGAPmFvqYPUTLs6G56Fn-piE6YpDV8B5xN0uykJcjaOUbDpi-SILM0VQDQAVpyl4QAPBwu8RISJFxoXMO2Hfsw9mWXt4KgxUMi-JkKODEfmwOISw1L0bEtY_sHVG9fuyNiBkDdDONSSMBD3Vp3rrRec_T3JXUneuUXy22Nz48h7g4tWVwHij3O5WRXNIDEPCe-Fufs3mOudn0BLLdZl_pkHoy-4HnztHCiQVBkiisJ9hCv3SXRkAR5Z2zsR8jOupbqNlDO5U_EsbYln-r9UpSdUvOsi_mKIkipJMNbtLdFiVW2te6gySSG7T8BgBvAzpvxvS-kUkUKH1_hxBSdU3NYLO5honyoXLMiwQ9Ol9HXdCAsrtNEbldxamjbdRtfyG-9vOEUmF1V-Bwxa1RGGZlJJNb8wOzikEyyO4QqYOsHhL08gBmwKq4Yba4dtrF_xTqke_feZMsMjSmqY1LOUDEjZr9dqIPei03i9fW-cf7ncbT31PvmNi3SSHRO0ZK5pzR41gOcZ5gierANaCUPbFT0L47toRTGB0Vu2EJ56meggKuhADrfumEYHafgeD8bQJgUwo7W_k8x9MHVttrZXHNjPzRJkoH0GrXxA74ByyyMqWQKxIHTCso20wRFXWaNben_VDnwLo14LlShvk4LsD58FBlPbB0l7RE7C5s0g3cH2HaS_6cY__ApzOvXcbC32EgEGcTwzULjOyeoJJDX0CeGei837aPmKnHWRlNyyGepp1IzTdGN_AVIPUgx39ypudRO35oivnayuXDneXEpgaKy5FkxFK1hVJagxKineEh9XGbu_3VZGtNCvE6A6anOQ8hpx2FSyBivFJ8y3Fz3HdbCzZ5NtJp6mTi8MQJ2DlyRlZDYid5BGM48wOuf6mW_Rgy0OhetIqajoWP_xIi_A50QKHMAtyD22eteb_YDB2uDuiL6sLzn2xr1X4xn96r7R6VqVq3BmzlXUx_l5jcVaVjSfF5uA-nXWvo3W8FUqFZF7QMusXC5ivarMt3FsauRW8DggjCWW7BpZrJOmcShUhDpEIZ_zMYRObaGIHNTRWJeUKj3gzRXyON_WzN5rKZT76nFZ08Vb5EoVetmKqG7yiDmkRnY1__TqMVikoRoJi-TofdgxnfF8jFWylOye8wZ4GpzdnHcVC15kX6NmlnybnZ_qfclUYeqJWYRf_awsGkz0sy_x75LppnSvLiww_GGiHaPTIsAPyhOIKjeF6XPa8L4Uyw2uITiY0YJ4hXSpsr61CMKjk9khOBdSeqy63-emFiiA03gB7XY3FCzGhOydNKeSbKuPfhSscJFgDa-SHmtlbVQb51my4OVzbnqzq8hvdwHl6MwrhPOoCQPTnGRBJnv-zVKCDMu8O9BECK2C2X1yqboL-vs7Zmx5QYzQWfCr4GmySFjfChTD7nByW1UEskLrCZXJRzT0mB8C7bIr4GI-asM1vjmWjdBnfo0VLfvPKCs0JrK4U7zQgXEeSBTayrA1fuUQy70bC5YhayNuPLjP7kS2NkmEqDXlXWM2AtgyFMO-Uj4pSiZz-7ibUZPRUcLvQkRzwb6gqXm9thozPZk1ebJsdkREKn1OT0DGoQWDBz1TwAtgcucfi3TazgvavyJKcLKlWr-rPwOv9RkH9bgNRfZOKMkWvqnW78ltoL39BO5u5OgLYfkqVz00FvmLSZs-fUhxVkh7Ey_Y9pZzJOjwGsmznfJ5eQg3sEPjdAXOx0P03kn2iaZJRvV1BCCHhkZs9JgRjiNq9q2e1qZIxLaP-Us9Th9fNB7ocCH5NdnKq8bh2htSOc9pP0xc9yzO8gX1veuCKt2NoPNczlb9wbHjdZK7zXx9z3satlbP01rARAEaunaVVgqNcpP4UzNgMH3GWnpn6X_GWbiGlH2iFBxiEXkKIar5BhEVvVDKbu9y7LuQGKynTo1v7mJdJFJ1RABozhZUTAeqSxUth0zRu_J5oxqmdyUdHW8zIqwBGys-slCRfjh37oqpfbGXHmrdBQlPfS6aS0X0fbSjQGoQDu5NdAhW32agWLtruD0sOuEBoZmHNAVUBkyiUjy3-p6VPCZt7Vs2sHHnmoypQ-a45_HzZhQS-7dJmfOUPQb7E-kHx3Y-C5-K7RqpEhGpBj8rH1gEY7YGNWeg-M20LrOVm3TnhdWIygTQ8y74YFrYFOSwRT0iQOMTfS8lE5Em_RXM1re6kgnZ2Ku2vzz0BYQ0-yQFZnWlsI19LkqHHPWV0p0LjdSQvxfekugAkMg-q7LrTfdTcS6hMCcZoDk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e51389c1b5a7-09860641','','','2025-03-27 09:00:16','2025-03-27 09:00:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42756',0,'cd-form-entry','',0),(42757,0,'2025-03-27 09:39:20','2025-03-27 09:39:20','{\"firstname\":\"Christina\",\"lastname\":\"Henry\",\"email\":\"christinachenry@hotmail.co.uk\",\"contactnumber\":\"07908953385\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw7pO_BhAlEiwA4pMQvO3hbPH6yzx4OzXYPHuW9sPXxhdxjoj43gCZfuIXQrM04wTsYen_dhoCLQwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5BjRg1bU9AGG6lK6bgEnYgv4W_0obGjm-ntRNmwhyzqm2clspMKyZ2oqpxexgj19sMP8iQOmWWoUJsvULDYvG_DCFo5Z0Ox3n5LVIXt8nJKCyf1x2joJovZE82BuL2sNVAG7gev9yJIic6KihYXaarKiC37IUjDQphTA_do1QD3QwzED8KZ_pC3gmxZHg1X49nHCfq2fDWfhQnvxIotOg70nlesz-6iV9atOxIOaqF6KCxA8RIDCmrFz1P0tnWMVanhjdEuWnibKU_XtPsJklnABciL_BLdJJi3iOrygriCkqQIrwwGHJd_Q7pvK07LAW_ysaFifmcGzAN0_Y9O4xGs8bMrl9Wp8o8ogRNfyCBGajnwWO6cXVrtL0FLuJCdijhP8Tbwl30pnuzHwCVJhwMXbhCtcg1rf_0fMcgPN36dperuK52FkI-0teeiy68KPiftIslx1q2dMYqFDHsLs0gAESVcg1kiaj5AgnI_2OIwUW_-o8vRTHtzIu5YGUoqiouIvCAFtOOe11d7fv-A5Z6WQpu1b2n6VmqYo3D5Gr45b7vfKa56EvUIVQNA1UdPcgQAXIhQKR5E2QvvLA-4Zpbf0espmh5rWKJT65ItlOod8K1EdEUrpMrCOUJ4xhlL-huTpVQFSOx304O-bduRdDqTZgRVVAPbCy6QYJbiLXsb7sYuLTjzlIJohMhqOg0k_AhFTBZg_iHddmkKTLagMg-gpHD3-QbuUPmmtngCK1wP0aTIdmvnhUZwDxzoGpwYylslUA87c5jJHTKFbFDM-no3SuND61J4fqY7J-N2SVml3tAMx3iteTyyIH2unc1k56BlSxd0geIiDzvAl64j-prPyPmomaxXvMeeDBcxTsqI0JP_xsq_uXcyKC4OlKv4ExvIS5YjQR5-4akgeQo1asNXvd4CW7xuyzulCErIM08BFWTIz0WBg51BZGKmvLmWSNpsAe7l-i2qrjogJBfmkUxlGN-W-HrZ88sLjIk6PVX31LJQmaL-BArmqbjmMjjLoyq7Nm8qCafFtle38N87mxEQ-UAs0NIAmGRDosfHNtkLG6Gfk89QxdAxsJRtlNbi0AhSynOHNJ_VOERoN5oG1zFZSU0quN2qALlDI1WE4NW531fqHLc3KL5QWkiXxZRt6epAztWKiWPkj3Ou3wAZ-aE4AETnBsJk-dcHf5Bf1gnog1HTO-NnQq-sE4nskBc6PpMDny9y7VuoQVixcKkmt7DW1K_FstOwBo2TiQxzjdR2xgHHqecS2IJHtElgqvX-sXPLeH_0I5UiDjCfeOrkJM-PZ8N3ARbxc9y1wlFHSFYq2vSlS3N1ZldTfRg6erAbufI-vDjeZl6_76e7FUnp2H0UouSnxW0qusowVyvs5FFDen6AIdQAdgodqO0mQay0Z1rTbaBbZk7JePn1aBUBLUnbc3MwJusvOoR3LSL-8PRMd4ZoNGm08TrclbSvKoPSvdGj4fpGmGLNJqPMf4nA7nRP_sLueFezdaKCiLe6yg2gGVU4_6Dm9KnnZmILvXoR4gHNSwFhSElJSNYX1GdXbvBqeGdF5DXDJl0DmomV-ADDwrY6PssnVOFfNRk9bg4l5sPluHGkPedO4cnw1lylWAQT4PZpc96JucZpCoOIXyF5p63w-srL3XhqDRQrilUWQMikPTmALSpWfh_Dif-c9uUdM1h022siNWwK8xSy0G673f-2odYEOAmzFTEXO6uQPai860uoP1OWyvxsXrK1EROYThB3BgYhoGUWsnAo4w3aAFb4hi4XVYc26AsL0WpsN33piwGFgdb1wmJYnNl2EnRay7OO0PgbKvmsBQHVOtfORI6Tucy0nPM1vjSmzpRU0orPp0Hev_kpTWo1Q9rRVRcCAjkvA9dqXKbRxdqkWR6LBnr-ZvJPvCGxV-p19TQ9AgLcq860fV9HcD2vM4SCy6lOHBd0YTH15agEWM2CyVzjaOazW6G--yugKZEZeduJk1VEz_Py8viLHGrPXuOxT3musDgafmHxjazRHHFWR4rsjqHmYpJuCJuRi30n5hLrQTtE-gboMYOutzjG6luCl-n6YjoQZbJeSHFDGJKDJO1jLdKYFS1sJjIGqRZcuCCUtL_YOKAIAICeFuEE4Ex2PCef6WGe7exqYR4VkWnTYfdYnF7dZiYcqBrCueaE5jD_Hkd7y8nN-_ufUxMYI1n9z3AF1bpj0o2bdVdd8oD1JyN5eRjo0VnZqy1uSTeSJOH5a0dZJ42nvvX4i9QcDef2QVFOEsVftPr1tThKUqC33oPbF3cjww0MZJt2sFD1gKrje58qU1B6Mnmwmq9D8RR_4hKIO1S6-5a6-By2YlBENkkD4xPc4pN9IRNuEAcP7mPjsoWsJR_\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e51ca022d3e9-71730031','','','2025-03-27 09:39:20','2025-03-27 09:39:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42757',0,'cd-form-entry','',0),(42758,0,'2025-03-27 11:20:16','0000-00-00 00:00:00','{\"firstname\":\"Naomi\",\"lastname\":\"Di Fabio\",\"email\":\"naomi.difabio@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39038\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/emd-uk-referral/\",\"recaptcha_token\":\"03AFcWeA6_Ll8KwDMpSz41VOta_5Y2Fsy7wZ6Rq_EQIW12u2dWSW_CvvQzvlqYXAgJEhFnM6XbdpMWurFfjhx5C22Wbmcmu3itM9YyfjXwnvt0ixC-VHyWNw8reYjJrsowlX4bdKANm1yg3SPI4dQkoKoudEVU1OyOBpFMD8EMOAHmUFmBi32zO3zzBlDXlwhUDTrP8eZIfGO9ej4bg8ioBv2oOHskrYmV7G73AYN-t9YSvlRWrQS4-bb4kykBtjvxNkhOfo5N6RsU2hXEMFXFp5pJmO4PuKH036fwE4Sy3sIARaPuZEQ1qGHF6akRmFGoQfl0sfVvIv4Y6dWTIrlw-LO40YalaP2FUHq8_8cHSspdnnjjKS4Y12MqQi0FMsc5ODpaFTxSX0BTJXOIbISfN4e18sHx463aanDkpDqSCQrxqEfSxdpGZ3HqU3dqax5wN21SIG8tG1HOgoRHhk-ukOQkeYN2RbRMq9GjHMwc-hZU55E6mz1hYk4bs2S2IMxc68opli0UaHgYEw01LwIqfm0FTl8GvgSB9gHiwnRQYsOjQax4kLHiH2c3g6VB3Een3PT1Dm8q24uQJKTz_DvYJ5RkX8AgR0Jofto83CsUZPaFQek1N4c8kmwne728JsEd5WMbDMOlVBFDoDimkrI2rZ8wRyI-5iX4QZ-zv2KcKGRDmBklDL__AUjcwvKcTrego3YfgicdWCKK8im6uXHHC582nQ-Ptcz8tiVAzqjsYP3HrWTdTlDOaKL8QHAy-hDMJDZQxlAOEypAJORwDGhvmSI4qi2Cmzq0Pb3mmR4wJEnkPArcuckuArGuTpKtNdRFu_hztgwYzhbG0l3Ktd5i2SdiBdGWRj_XnTNqY3Ype8CttzHNK8yYoW8G6ajiBrlw_lulBdccqrUsHYSpzU8H1xrXpJvgD5um7pq1C14EKbdhUSE6gcVrdzytw29sOtjEOg3ZMtMgqdnUIcE3CSEgFtgWVPzCX_-u_SbXAu6DfkgpzzWubCfaEd_0woT5vMbR8a6wDK2oDSAgfafBQc6Z7Qbym-DTvDT4f6RAVX-7eBEhFz9bWEOaeq5GnUMQp7_WJukrtbrHO90uC3LhYin_JoCtFhlUNmfFfIDTNFA9aV2tW4bjHW3vd-uayP-dbhP3d8PWU-0ZawW6i3OnlZKwnlbDS6tomqjhUVIkGO-Vs5ycory3B_uSHyhlTcSxIPRErGosVBXwRSov25OJEb-zM9Q9uwJlG61XcPTO9wKzubbGHLrFJFf_vJHN0Y3CheltsKDnSXh8DftNLaNe4GLKnZkNnNBB8uCrESE75XY7sTtB4zGagzhWtGeQny97Zs_gcNJk1euwFvObiU4VMGWn4lWpgGGSEE9GFdVHIb7G0G8takt0dQZcSKESRKb-Jf4cPgscnz-5RRTLvKQTcwiQZp_DM93W-4Wrg_LnijLPaUlcPz8d6lvyb_WsfZUeXRTqcSyPnZ43OofYJbzfbTK7I_O4dtKICfeEsMeJTSzNdAj4GRTsNMgUQmU0C_sjGez-J0j84gNtNKKdYGQCh4Qerih1HgitNp_DN16uxhWAUVmLGLCCZOwdE4-CTA4KI72QSNP3j6oqvF-iLmF1_FGvqXHancxTSPld6bGnjWLF-HQTrpciVf0a0SIQh1wTHLPLWWiV5MmT2RaZffp3N3A7pPy0Sg6WcUJemf5OCrVDKHZQmU6owKkQfMi9aPWAYxHXVIe_AsqrfAGd2fM0-u4KDS-83ffXjadUtwWd3-hXHFjiU5a7sqQnmOANhd7yCrzegW5kvm9Qj7q7O0rlKkhY08Ld2CDzxiAgPcISM_0OY47i3iA5YDLGKP2pyqOVcJz3Re0LD4__CMIIUzdwOYzw9Tq0AHVgvVfh8jfPQMzc8fZbJw1bUvyDnbGDWRMxL5u5VkNGlsGLRt4sX0XHBFI3yQLS6sl1plE-EvK_NfLeobrQP0SRe-cLRYdXK0LqPcnZ85u2b1bPZEchKnymepYRV8UmfyPjnaAm8jMEajldVk5zWj7UsMszka7F40snNA99epnv4gOJmB1IhPkPbqj8m11YOnxIgeMPpT7gQFWxKkjTFqkgUr3R0A0nCXCYrTx5NF9hKgP0hWmmO_26JLo0ZRj4hhB-C7GQgg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40413\",\"recaptcha_success\":true}','Biomechanics Education - EMD - Referral Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e53470670393-07756431','','','2025-03-27 11:20:16','0000-00-00 00:00:00','',40413,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42758',0,'cd-form-entry','',0),(42759,0,'2025-03-27 12:48:55','0000-00-00 00:00:00','{\"firstname\":\"Ash\",\"lastname\":\"Sharma\",\"email\":\"ashsharma@live.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vQ21YYJUO1Dx3ABtbBX5Dxz&amp;gclid=EAIaIQobChMInfHW2KWqjAMV9JtQBh1S_gzNEAAYAyAAEgLJUfD_BwE\",\"recaptcha_token\":\"03AFcWeA5djUuYm4fNGLMoPknocAuQETBnmyOqn6KgY9A22ybVVvBux2t7nYwkg9ka04UuACzNmXVDOacJX1Egk8mPdbBuKmpHGq8-rhxhC815cQCeyWWqdI1-gaUiggOylVyFzYBLVuLpRaqH8qXj_bUHlSFJO-x1xkW_Yeb7lIMrFNulQZeMAq2QEZ3xMzaGE89VSuq7-qOOTdTpwqhXtZ3G0vMKClcqna70kN3PhDR5x-uHy6uxU-rLFK9JBVlLMIGg5qCnUOr8ZATn91I5flZVkKfOdkMRyQ2H1vKfTvhYvT0xAJMkhTFdkj19YmV7m_d_CB3xIxtnB8-67eQSHlOiWvhVsw9OMqw0qj14jgMpC-RAGE9rg73QZrnlOEyw0iXIdLGHyA8m7oCn_LjJW33_Mw-qa6nltxDuif6eId9xrKl6L7oU46H-8xoKZQR1BF2eN221zlLWRpf6ik0MPoT4Bw-9TxF5wKDmOMfWpc1fAoY-gcptew0iz1XXO166hDE919Dv5OYnzr0RaR5p1ub2zCOLmsmVXL69yxsEzYix0yoyKBYP7IT2fWyL5jGe3vqC3TmJz7nDYYlbgSJRT21tq7rDgv33ui6I09kMy-wJBjKWvlTDg_o4pYru73kS7TZkNS8JIkeApID5MbwGGe0svx3y2aPHw76NaGDm0EyVeOsOvoS8Wh1TzOpBE4CTzFjfoDcLvNeAdZJGCay79c74K43jF1X_mh6tmALJ66dxzkyNS6Y5qxu21Wbq-yKONwwmoScjAnnDK5bOE3G91QrB-ZPKS-Ir0QLZ_S7y3KG22YMNJ3no0rgN40Haum0RcGsAnvj3n8SDjVK5i1sRikbuBSVbaGzBxImMx-0dX5XdEAjn1ugAZ07S3ngXT-vmIRKF2hDV0knGyPhx9BdI8zGBPh0IXXNndYRbs5Lyz94qQx59JmkiivCwlUFzZgYh7AJ1mqkp6Qj3ixlmBzlstSopAwyuyoAA8N2f-ODQHKqmA86_egHHYLvJgJSNYZU81h-HOPpw4dxCN1tfgd7uexX7C4k8kyXqIpcKUjRmw3GzsTZUjwh-o5_0BbkT0rAMbUFe1nxTf9diwtP4s9oTsyaQdiVrXm_gRufEGs9AKboTcOwVkG7tjYMqOA2YK-Xdh0GM6V1KBoqOi4IFjQb7n6KQTC9ipVdg09_f0av-w6x57iCKRY4ayyZU7t99M8WbVCVMh0VrfxLZKLqww8ODLaEP8j2FVio7uczBWv-HSFJS2Fz9dzR1qg6HLrcxPm_GrYI6JCrjU2x2Uq44M1khhfYOZEqGVzCFpPRI-CEvlvIrQEgF5C7Q5l1Swu1ZQ87ewN4mF89b8MUlz0Zl2yy_aijT7tzl53a1HuXRwMfcnkHcB1Chv_rhvsecNLkyzdbwhtHTOpwf_sHiWy0lEYk0sedRJeHNA3n-_XurFj_VWMGLMbCMcwq-TbkGvJPhxTZslGtgq8Oc7nuMZAweH9XuVY7O1c_pvidB_h-ukG_zV5fLPv1tIqCQczb_anynAncHS_5shQ4V-KloSSfm4iBTkHcBw_4V7auAys2Oo8KaeWtwilGqsw0oNSO5m7xhnbpzVXi3gt0FLflpInE8CXVk3MLz_1Afx6OHY_W6UwkK-svLm6kkSlsMuHh0o8EOeKND6FDZtULCL38A58n6Fjr4CT_HaPnpt3A_YJYWBGm5XtCOWf-28UwU5Cgg1LSfscyhkz7kIAHWm1-2EFUA40Wxa7POcHMvWSyr1wMSodl7ESXBIkdIfHahPe9X91r1H4YxGbAfv9_njJdYkOf1jbSxF8yY-9wHd9TbpelkCw-jmixGtGhI-IoFYjSezSGMjeq5waOwfY-pY3cJnsWFYEA5TzWGCqoJkJPaiUlgVN8fn_SgGf9Z4fxQs06x1NgnPG8Af1KOkf5yJI4v49E_n0DwhGT4Bb0ueSqzd2SpJpxaa2JGN2xGnttSMGyhzheS-ofL_xqtV4pemvYh5t4ohUErczyvXrNjhxYya2bzSO6U4oi0-hdxNLeNzqrWgdzQAOIAng4B4S4wsXKRN7h4Ydch9HzGYh3RnS4qm4pJZqcwOwnvyd3-RYRo-ho\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e5493792d6c1-76619248','','','2025-03-27 12:48:55','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42759',0,'cd-form-entry','',0),(42761,0,'2025-03-27 23:15:51','2025-03-27 23:15:51','{\"firstname\":\"Jonny\",\"lastname\":\"Brooke\",\"email\":\"t.e.g.fitness24@gmail.com\",\"contactnumber\":\"07818149897\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4ZEKiULI30R4pZrkwN0vw-aLnFW7uKmf8e5etrz6KFtHq84meN-EljNu5N_FTE0dtBUTokrRb2F1Bw3GdpYpaeFEZ2HKXuWF_2oU_p35MH8i9qohp1obXY3DO_rk0blM8TfzNYSkSCGIvQhjZjJx92l4j4L2vOzQljYTF2jvxlk9l0iDWqqGmxVUtLc81S_ENEjCYD7i8a6-nG0CiWBE9vo9ovecPOdmaOJfZEYJW1C_5yKgQTwx4ixmEQMEwn4ockokXzBLqQfLOWe557j5XDi17lAI7p8-7FR6rnq9PY34HFGQN9ayUmJkRAcurfvwhXhN075GbpfAQT0sY5o1D9X1wHugoKOmINlm69YUD3UFOS40u4LY1P8S5fuj71yLTpKQhR8goHJ6T5O-5Bj3W74UZo824R3dEMyVUXqfzOpPZc-vjaNb-3dJvnT3BAEsQBKtJxEKiWmId2wjZiGON1fbkREDQt4lUP7jCO5Pin00nnGZCGlunOw9vuUf1weT50FfIc2FeH1_lrPR78eF99RhZGb2neGrSzF4byTl42YtPSd47v9Q3IkmCwuBU3b4QgJxOn2LxH-08_PTGKTHpZXOjWIkkTNtvJvSYRbLC2iibcQeFUK5KCru5hwz-6Iwyf_rL4tNrJqMSYYNjx1fOSehUtLWPBdy49bEcRSuXeFca8Nh42XFh-U4IM5UqiFfpdFsaa_9r2A-xMA4uCbD9SQi7072hwGzDiZgNJjn4jkesjtRrvzeOCeHxG_LRz4puEt8pPrE0qn4VaFcj8RSsUmidW3hvq8_bJq8RhX5duJcpIZsInuu1qivqHpC_LS8IaY9LhlNz2qBM1YVrDpCYv92dqLqGJ0KczgY8h62fNfhWTQ4GpvBEPgK_sgfrUoVKhcof5UHkhXT_n6MIY45MRy1Wh24uh5V98pibR9Nkz3xlZ7J5oHlSIYNDzUii0ce9wmfsoG8fW3_3H48IDDO1d2VQ8afGIYIm5Tyyaw7kSvLMXAGf9s6qxaAUNoD6gVnMKWYLSVIwv1V5EHiW1I7Q-aj2_9dyV971x-Vf818YbLsbJBXDqkvF_eouIPG1MWyqgJLIW7gudHtnvsjxtLLCMNatBRFL8QNm7Gxq1yrdgKDIKGdXt4byN58ho9sT5J2jL2-_ctj2zXFq8y2r5IsgAtOQPZuCVE0RxQicT_u3VxzOejGD2vJNCreceL3AniqejHMECz9aK0NxXIyUceY6q27lsExYH_NjeFVvdSBIzQAFUUmGZX2NVAAGMbtqP1R_-s9feLJ4LFRcVWzzk4BHLpVUsWTFQNAyx2eqCj4u5irxVWqElgmgxWhj675FFnE9CXn3koz7A1bQXcdFa3o8NzM6ndJcqhlvH_JY49XU0qvrL8fduIlaISyVocbvLNUvGbkAh6T2bmSonNA2J8czOsYDlQgJ3g82WaFNhhBv88ZhVanpSZTe9cQ8tEL0Nut-V1sA16RlGCrzu88g5YVfrmMLeRpxpFNcMnq5BcwyKc7etBhWNvFaCaspNnys4WUGTcmNhvQCFMJyrb7FxicwlMVI8Ss0eZ40KpJ_CuWBZiAh6Ms-QjvxPQjDnemDao7Ym5HvcAx9E112w3zvIWHYPep8u0bsCkx0ws7ADzilw-K-in9VnF3BzhYciGhXz1EQKF0JAiC-EDLTgHpHsmqtbLhkfBkn9TITTjG0WuDhZa7TqvR9ax4ypztT0Dqv-OyBUDDIpRyzLrrATZzeADBM0mbhsDEcypOzlqiAVwRAa27fus63YIFVTtel41-mXS7FmpkYYyFWZqATm7BU2Obl8C5Bn_YER4qbT_9AvQzl2CXCC3qzJeAS0gKQ_6T_Gsm10Iw75BeI4eqOV9Ea6BSKKSNGdTDgH_yPQzWU-Rxikq7rterQEB0ZvEXtHWhlEHQYqm-DD58NFL-XdcJTfceYKpcgIVlbtMp7aWQVcXkbiNnQOLLSjpGYCw5ldv2ZkcizLTjpLlnc9jlPD_k_lpAZ78GovZTkNJa4-bMwMHVmczczoEnX4NGDqMYTVIJh-WBNwOr64\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e5dc1d8f59b1-52314906','','','2025-03-27 23:15:51','2025-03-27 23:15:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42761',0,'cd-form-entry','',0),(42762,0,'2025-03-28 08:49:59','2025-03-28 08:49:59','{\"firstname\":\"Lisa\",\"lastname\":\"Mint\",\"email\":\"lisamint1@hotmail.co.uk\",\"contactnumber\":\"07385167726\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA44kitdH61P7D9i6EjIH0NZK_qCNvsqILd1t_pESkipMjvWp1ArXro5TF3XcBw60J8AdBGfnEs_dIb9rUvGXj5x6X6jOriZgj1h2Azlv5h5_5LPEnldKxhYxwX5WH1Jx19ZDWngHP0VHYHR7aEsfBElJCd_tghNoRlmrXQedU4dA4OD4dmE2NgIQ1GW03Pnp1NQczlk5sdIFQ6eOi-PiGnppxELfqqNgbz0zITNWtw1mqNFFiJLvjmzxJ6xqOVfUDm1FjvuqYO9p0Ywum5yBYhS4B072ZPkBec8bayC0-lXsOktnhieCbLjXdTgst3qGN9KM0AzR_x6fzf-UxCRAJw42HCu_PJsC4jzSYifUKwxCUra--6OsZad9am-O_ciA9zat8UPRxG4kHxd7TaZvodIODS3XmC_8F5WYKR6oKjAagyXfecK0FYSfsk39R4KQdUHTyco5OGhUQnW5gkTNA2-AaFStz5m0X1YYBS8Ui4LU9Jg5K1RDi7QZZVz_iCC6TSiaZ61MUEsbiEwFx0KjcJJWPFWMgEC3vSgrMHO-vFAYIBoOD5Q4qWsgUb9CEnPGecsVqI3dWsYrQCjfrJ-MZGrbg5tF_4rarXQZbMf8pIMGdFKd8Jqc6u-UUnMj4r9hlqzGB7Vf8KUa7D5Jbjej4lo9ZN0VYI7YRzl6zdVb3kxCjO4IgXMArpAiO5RUZdTHzGe6DyHgELU7lSZHl_k8SalltmVs40k3ELmPiV9dgZyJQ4T_8hFLYLILPN90oDbEARo9fhlXQsSo3jYR1QYwMgkLTj4q3GQko21ExnpSL03ppdb4rIsHksiDIn_e_AAFYYijS4u1kbob3pmB3KA7wzTS4GbuHt87cA0aj7aDsdZxEzpOaBg56HA6r4-5fZqXwbrvvuQnRc4Fb3Etu7jJ2o961yCoAj-IFEKVGXgy1BDqRZFfs3PUWkwPZsru8smeg-zX-AMgwEoPeOAKIpsogkporcgh1CW2J1sPMktx9mHhsj6lXPCmvYjBFD_O2FvNLc4ietdoCl10-ZGuH-yYrIBdJ9_7oXnklNkkETEN6lUeIUvGylt6bWBWOFECBtqIthCan-NhghF_zPgQ9jHwOJty_hRed22hEReLAOaB9OsKCx6p6S24gPZXorW0kJVRlG5GKm-7dBQJt8gXEpcVLZv5mQxyelBctfIHg8wzidq1_03Kkw3wYUGkCg2HzB9ekJeaHW4PScI4VB_QhlUYh1Ld9Ca39Y8Uv8cyX72yMRraxD37v5Io89WNlhe86mKyDiAIa9lYhtXvIcyItP4WW1UmKDPruKj4TgaBXGNRDfbQcm20n1E-YIbAw4nigs73wdr75Qxcz3V71GTB7Vj-d6o5f4OAZQ3kteDbCiE_RBD80dScACy4gwAWakUuXF-4h15pxr7k8yhiF8N9DaLmLUgGRSJLgxvbVU73wlRHc4JYY_4s4yhpEmLvuPj4-87NxLb_9KMYEEk3P-xvEVsRIbBg_61Z6ggM7RWnBEAAfARgz0av1NyVVcUIIYRoiaG13-FpTHVe5hmHSxqGi_GvmSMhuf1WQtCURZ9yWZj4D5gCNgYVXLdwenANmoRH3y1Jy651Vo3bmiVllHm6E9t4_o8Rs6FOMgTeF1OTq9d_qk98XEKgo8cBd4QnMhx146qfzxzKnL4q4IKLWdkZPHe_9AP2HaX8FF7s_cN3Zl9-w1-AvZ-6CB_jEIDX-u1sVlmzAqGIgDojMxUHVWCOFgHITG5ri1c3tXKMcRsCy1L87H1cD2rCsIV7WP7yzh1mQW36QTKsvq9CuApsekXKDleOyfnOpIij2bMBTZkEA3Ruy5Ou1mdUCiKYBshTOMwKu7VoWMOMf3g_An5cTLnEYDrOSw32-mAJ28qpZK7gMIu_9-f1ITznG3P8Ahiq08mpgkFJLB3ZbwWo5As1lPXM3jj1EX2NEE--3CkUfv--IQX-SrGo8ts6Y1zU0K8dWiAmygPOj83-riiFWNsSuyZPBLX8ZCm32QCCVltU_gt03my9bB3hN8KhB8D1C315pkH_3o1X_fsqLqYgFo7LhHG3kaL-SLXa7_DILR996Ak3gvrC0hBzd9lZ2neJejFj5EuIkI9Q9gE59MfSTqZAyh5E_IDRdCcGFj1J1WnC3yy5fmvFH9wL1YhJwL9POYi2SzRTAeCJ1dlBXkK\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e662938cbfb0-23895335','','','2025-03-28 08:49:59','2025-03-28 08:49:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42762',0,'cd-form-entry','',0),(42763,0,'2025-03-28 08:54:15','2025-03-28 08:54:15','{\"email\":\"lisamint1@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"PO40 9JL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA576ZK6CpcBIBWrHnEyZ3WDtVbYjgFAXd93Ne6B8LqwyVn0H2FWx2w3rv_V0tgF4XxXyqijUoZRGdl0x-1QgaiC4_4TWtiXO7w6wNhK3V9qos3FUDgLO6v6dPTT7_bYN_txVBEV_0j0CFvuymUeqrM7vvS2j6TzlgpXPRG6TW2J1U7isWKtatVi3E4QFmSYJAo8ntLE2Xfzd-W1zxv1ahMw-eXQdeoHqx2Pk2p-XME3i8BafDCB3nabETi9FYh21AXdYXI_Tfz91J5lLRWJ-hkT9PhjcAfMws94riYqARLkZJj-YZpJDfLMSHkAZaxKDjgQC_ZbkVRoS0oqty-AuPMWj3jvtBXw1lVqus8H7YxLW5iOuft-z0mn6PHma9wuGX4gB4pE-8w2pdX0bbXza8CkFvShyxiNX9hXMcFBWnRwKqVzmIm_hzHKoh3v3nrmZxgnxy4yU5n4geyD8TKPxqiDFABUOnnnFtAZ4bDIWQhgGE0CqWBtIrRdDsQIhZaPNmovf8k9uZze9sqm2PcXW63FbihBgVxqNVADBXwsy0ceEl7KHORUaukasWJz_3IZfa7e6uhCStNtB0kdFnxpDxJC4Pp_ByOT8KIzyJM784fgDTKG_0SwIygYS9OZA0haBKXoz0lmZdsHNx5DcgFOh1P3MVFKrTgOQHNjOF-lhoFd-Z59Qd5V7S3fMjMw6XSX9g2ruaf7laTV3rkoQg4DYjW7TlPDJurHMrJUzPolhgA_2n4hLVY2GPp85EcW77RR6WtyS7kXop1e4a76PfRs5XqjtJ4kenVxRQJmWLzfehBp2ADl1nwd4orHt9yPAYMwiaDIncmwr7znRwsQkB7ec81wcgOuIYNWFdXk97NvfNugMmkmN8fEJVwfqLtZU7PzYITHP0T_rfQ3xthhVV54FZKKk5JuLf6TkhYKMZKV-aI7ZG3jvTmyoHCbo1n7B75G9pYKLkOuKcn7PJm1nSIozIOVq0uOsEIvrHbRiXGxbJFhuS4JCZonmXAlTODp_ITXaViNfXb7kR2Wm9JXmgBPG2TPBhOEhLsetKXkm5ixGcc_AgQ419URrn1Sz8wsiwzPtZkXH83D3jHBGIf0ZOfCPAmSFqnHHBja2ew5AIa0IzKsLStJq5RrtSsKjWHAmz9obEglWeW5c2u-qXUyTIpH3nKfcfAHZorViN4XYI5rFGIpUVHNYmvM5sB4zOSJx4ZZBhsM_HkPJfHBv9jF-4PWAk7Xc8mqqVVolx1BhbZju6LmsUky2qepnRzgRHrHx6FoWRGkBH7tVbFcAGd44SBbL-kHebEm2BPSVzCIDUFGQoJR41-dl17JA6DVtxMk31pzalPx_uaShIStxu8dz-ADv1cC2jyIq6bpODR5j5PZlYPyftBfLmJCnFFPgw7uvc8YV8enb9HNtLJmpES8ITPJhIPPr9zDmgqvyzkLZCXWEQVUa4_C0YqcqlfH0iAuoWVJxd_rnIwjWEaRA9HiGMaH2zrcgrp2fUvJdVsxwJiW1gCBO4lmq8rSCW0SdC-BZjl1Uxh_8DOIS0iZGL3eKAFIC-MMYUNvQJIt0txZfmjeGgylRZIIQNJWgwBvpUv6jY8jn9Fcu_vTESpLqYj70_0FXLfjZeY0ApQbiVtKS2IPwsXEs5WRj9G0JiOqciN3VXRtTV8fpqR0LiEcs1MadahC_Mv5s3O9zF0jgQPg2Io1GifPnEbODhZVXW4bVNIj2s_yhKl9Je-uujitNqQKweAFn_1kkxfzc8urP8N_cd6YYtyZDIlI_-mqE64aZYKY0HizDoD6wX0EFWkIyhFPh9geuOwDpMGrmqE22Xz7wLfFTWiWH-TlbYAqC2LgIX3bym1bWwDPPlHGABs_ovtqcEdH7On--p5TscJYQOnXnnfJ26DJ-8ci0uQaYErGRJjYfFEqhF7ooOutIilzuCLncJ5FqDtavcwrnVjYuKMRE_-ZNHJC5hxFBcJlr_yeC4gy_p9oVjkdA74pVArpLjeOqlCWn9s_jRwy_RbKxL2P1z-47lZFkZKfHCqneAMbQ7Y6LHhJ4akCRptKEW2wTLBMnjCbvcwFsGE8DGXESYNq9IUil2M7oikusOoR3KWcd2NNnZvhFmqMGa_tg5c71Lpp9ONLLdWNyTx0d5WSfiWlTd_ngwDNOILj4FZlncm-SwEBE9Ovhm6NQ6Dv\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e6636a1bb093-79073069','','','2025-03-28 08:54:15','2025-03-28 08:54:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42763',0,'cd-form-entry','',0),(42764,0,'2025-03-28 09:27:39','2025-03-28 09:27:39','{\"firstname\":\"annabel\",\"lastname\":\"collinson\",\"email\":\"annabel.claire.collinson@gmail.com\",\"contactnumber\":\"07429956966\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwkZm_BhDrARIsAAEbX1ESZkIdH8GaZ_VEL58SWr7plmaT0gChcMBAztZpAduZdw-2BzHDHHEaAgVzEALw_wcB\",\"recaptcha_token\":\"03AFcWeA70tO1bSUbcIXu1Ii0nc3srR-mrQ5NkglaFOd0OONofUPxnGJ-iJvyV-l-ImTxfQOgfIeNVY0jdK0CCy_-u9PKMrHHixJUQasWYgtJwUju7F4q1dP1avpz9_u6YjlFk9yZoNsCKvBNhJZHAxJ9efbHAAhDNBq21eng2RswNDRudMxCfpWMezkmta488Oj2nnQCGQxEsPb0PaRNmmRPXt5SthHVtsA7GUC5EeyB4fWktz1somuUZ0b99BYm68bX_21BWW7GPUrcq9lIqIKUnu0h97JQ3YqUOyRURjS9l3HRqkKzTon5ekugkNWDbNLQZmNZDJAg9SvyEzP78hhQK_4SlHAtU8cLWfYvFBnun6qMEbYhoDuSBD4Vf0145sSa_m2fIJJqT2KR9Sxf6YNEhU0v5Wt0AE-f0aXB4I7HB5kG7Ev1S5U91xZItV47sEFBN1mAMRf-MjWNTVFBH9Bm0qbIAK3rwXR1WD7bviCza2_uh98gKxhV-gAN8DOf4WEelvgny_BUDtB0Rwmb_0rwz8H4rrbeWy4paHZwMV53IQPi21cZ2Dmu9_CAu0PkFh4QuVEcKn-fIWEDEMCX0KgX8oW7f3Su4RSor_Fx3a1CKPwyiZYOA8olRUh6eOF_xvGR9abugVh3VePvRPjXyMcR-MYFBR5_qcsMmo6ydl9M2YX4viYNaFoL9XLBaawRc7qp6j43qLvUs0vUJxpUlQ3oM6INmqEPJ6GSUXplLhH-3csaZ2uyD_UAyggxSdSVnSHahXuyCHbxpAKjqSiAukuwjpV8PCbQzctO_M6GfF8aCNn04qhlaoX8PFujZumtonprixRNpTWofxhp0s8M8M4sppMDGqm6S0dF7IMFerv9e1scd_qDBt8xAKr1DXl-0Op6RHE9ytiiJm9-M6vgip2MTo8SB8-BAnS2Wn8W9AfcezWokyflTdHMW4lA0u7tbiAzSxFvSKJGElmlBQGtrPjns7y-wQf0oVuRt3_D2WGlsStUpxtz1lYHM2dJc8dQbHJEyXgAF2xfCMPgg52nEnpgoLk9-xeGb126YU9kjWGbYKmBCpzjz9Vbe6GMHr3braKqumm8HyHzH0la_X9GZPjVn0vc9zXERUY3k-BISmq4IOCsEhnLt-DRDxdlFCrP7AqxjkBe0-jANHYjM43pKQDznV9YDrBAp2wpy_JPaiZE6iAi0UMyHtfdJ3Y67JW9Kt7G9wGtQhXdG15MImkXOwBRJIen0Lz3hXxn6s5566KUvysDvTB0BEbo1OF3NsPf1L_fUQcpgoikJIuQABfECkSx-9lmXB91dAgEAFzr_0m2NF9ahQwLax4uYgsZSRc-s66umxlMoO7gHRZcP3KDZO6kWlpLCQXrn7IkmY4z8Zo9FG6zZJ9lwwViqZmvcmkX9ncxiPO9MiwwdDDEnxY3LOoPvHpdZFFSb69L3noc5I2R4mg6GfqcjLteF6l464MSmcpEUXP5lbdG9sFhVSlmRp9vOcg5riDtqMwOMQV1Jx1nZbI481SCMWjwNehY_ZXPZHhCCr9KTK8vWBGkRDH-QeUSb14kF0pD_dQkN-E0aIyOPsMgoxgonNwVoK_JBz2R4_5es060YaDTqgM4CJx8hYM7pN41j1ewBzNBSVSmd1-LWMno6vg6UtXHI_5l89u6YPUCHujRAePNGUi4hgJ9oZO0WLBZee_HP-BCi9IB1qqoUzqZYAbfSdZ3cpLtoa2bhHiG6DqvK0EzshX-pLTHVGfCJnslImcG-yjtekx79xU9iFeUsSnOyu4ya3dMjLO8LDkwMaQyVoLJ1KxFfZ6VP4ELUuTJUOe3Dlp17KYTz0pTm43ZxwCJjO2FQoKOlz9EnEHvrokIT3mMy3C6UAPua-HXRlIrNA5v_ccOdC8WZ5AcnmL7OZzZZLrodQQ0OVG-j9zqUby2d6QMXmveux_6Mu2TzL15UrK7HYjJoSlIETXoNdWd808lj5b7gsfQlFpM1yosx6TvD82aPqmZIBzLIb5zveuNcyWCGiEW6Q6B3W219E7gFIZ795DOoSlpJwFpyrr19I840FFAeUzcwy58ZAr1qkgAfB6bJFA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e66b7db21d16-64661874','','','2025-03-28 09:27:39','2025-03-28 09:27:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42764',0,'cd-form-entry','',0),(42765,0,'2025-03-28 11:39:58','0000-00-00 00:00:00','{\"firstname\":\"Daniel\",\"lastname\":\"Silva\",\"email\":\"dsfpt84@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4ZFlwUMLCoYNiSs0wUyrfQaCa1c-c6_C9z928t6ISdWeuRrltStMeVdc-zQwkyKEoBQB8YVZDpny71ETt24Cua1LrFuXRTyhxsF5FMMyuLFKFetkydlEcJnc0eXxANRvS7ORUCgNDTRQgQOKfTqv3arRDV8hL32b_nJdfmtFr5GHQdArqgKyHg2Ynv_FZ7tziyGhS9rfCZFwFQuXaq-0pqlpdghQb0trN1kw__cQWxPcNf-jPfhNUpQvWbnMLd6tevJtMxz8JC68Gw5Cjoq815plPxWbo_ifvaCzNm_8Vtx4aiAJ29Rz9UoXSQuivEvD9JQGS-Li-Cj1oKPgJEx1EqFf7YAWiDZEK_XjMr5KzVq4feQ7OPOv3q-4WHOsMUs-whGUV5rldxk86RwF_zXI-wYsDbPenBCzktLyMimpAzWlBM1_5V-omiFWgLVxuTeWK9yzRioYDp9x5pdKewoXbcd66MCWsuwdPV4TcefckyIO_0f-q2bcpNhVJgaoysd6Ap9TOoxcM81cntv3q7ALoXd9LMf_foFDpt8zfn67q03p0-19BINwy-qWtkd8pgHXGfHQ2hsBlmS4pkFnu2yG4i5HDErCvxE4eG5j-ytm4iwWlqeCHWQEAvbP2ABUv65BpkbsU-gDpBZBqtVdOfE4oZi5D33nZbLZklNIZ4NwqaMmlsv8NVaSm702LN8aq4rzaYArdt_qsI7I467AeaE_WO20aGsiGjJg7USm5S9KP0bpYLnbfC3VmWJIONp4dbo-DbKxdz-MrS1AhoDevwWl_PuWMJ2-_u6J1trYVFopuFHPWsiLp8GEPf2jFj7xuHpIHjBmav2LWGMQpciEPvs7FFL_CQS2l8NAlOoibHdKXpIi9dtfSpGZ20L-gbyj0ebkm-buQSpA1coInskdlnUeGjBspJZxYaYK3jWG5PZGXhOBxcEHuUW-2RdG2fqPvDi7gG2ZQKYNzrA09zk29PsDzU8SPFBC0hn2EXNaJiFM5u1b7DD2lgOK1TiJuX1zrkaE_QAeR0g1b6rSI0hWATrX7UndsOwhe_2NNNDwqrTD23edPI9kdy6nGMOOUJxIWrTmxM_T_2Ws-ATy66k4xDuf61p-wMKJve18RLOH-QqymugM0_Gn6CsHDt301GaeaHxT-NC5vXf7VONSwpJM_is5s5v6J-UDB-1CfQnAzS9RPYxRnl4wGvISsQh1rOzEfnEMObBp0BdrRzGqdtLLvyc6hMsONpGAHtNr-YXAr7TfQS1wFpxCD5Ue2-Zd6AV1OYOsV7BP0m1cK8M1e3ZjQLSmPpI4DJ8z5ERAG-6xrS2-6I8Zj4wouF_8h7r-IjbopHEO-EMiFvHyU0l4HsJMXXyERPB7t-pEKTCObOr6mL7s0ALO6qozAJhSJtOBSkJTi4V7lQMAA5-XUpSvv9b2yI1NkDGUoJ5gto1ApLBUaa3FcAhpse-7zKQD9aDuqQ8nH4oCp9K5ZOj4CMShb7QQt7xiZcJ3RkERBO6WYjJG2VFyJYJ4nyAbuvQE_fPESFt3UZZlniKOkoEvvOZJi91s8oFCVWjNmCsGeWJd3g-9QohevJWBtm0VEuOqjHsRTmqffbq-MsYBGh0NiS5-k0B1d1Hl9_e3Uw6NEtWGowF0j7x978SybW5btf7UdeNXVLXKQcIOk8WZtwjaD45yL6m80BvtAn_sppe6XcYTtybSaQc5pSoi4u1FG_6VRy48xKlWAmb7zdUMA6agJcsOMlBF07boXPElLkkZCvlLgHlzQBT_YLTEXAOSF9uYnCM5JaZnx2OBARUxGAyAbvvdv47Zyn--DS0SrGYQ4qFhaq0QHL4KgY0-48yK1RHTKEFSCP4fSVGiqDVetOWZFlg2p34AHeLtyB1J_k_BR21JlbkVeFgKa3Jy_CxV9oP8FJp0jVpgGTdlHPG_oHwquKEYVlCZ4qmnvVrOfCs-6RHt-SpRE5usq_AUHMJr14TMxo7cHPs3pi1Y9ge6ueYjn93smaE3lRsznbh5kcr-turOUL1GPKYq0fC3By06djV21h1H_hDpMiMboolYKjeKvofuWEgMNCrudW2ZckLiUabhW8ehWHb3KGEQ7Zkn-EatCDQ4ocoVJD99zX-0t648ETiR_4O1Mo0xiiwWqRf89hcx1ay4aHjQOi5OQI3d-3VAoVes4JL_Ynb_ye47bdC9qsBYFFF2s2jpnLeAWxvBNNP0gaKSZp0xV5JoVnDbuJjkWPTvDWtmWcmjN3oaTGH3swWkcCT8buliCsyb1lKcXOCvWq650Q_NRoy1Hkqlc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e68a74456c58-60298388','','','2025-03-28 11:39:58','2025-03-28 11:39:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42765',0,'cd-form-entry','',0),(42766,0,'2025-03-28 11:43:37','0000-00-00 00:00:00','{\"firstname\":\"Daniel\",\"lastname\":\"Silva\",\"email\":\"dsfpt84@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7FqmNOEsiHp4mtXvQpuqJfB36yTTmPitKcftgZk1W6iKKX9EoluUzxRmTHg020auv7twEOHUOeSPutowALhry_AhMfLZozXPBfRVseAclvqtGfJn_iOzWF7uyOqUI-4zKJCbelM9dWCb0BGIXq3rcJXD0XxnR1sZfyldOrruJ5kfBSHpBCDWg6Vh6q4kVKJWB3aAVC9ZRloV1PmHzU_5JUG1VvKL2S8TxHhTJQhd1wIfYHrP1gscUmFakX6i5wuxCDV_kaSJhmSKMIICnMg2yPCl_DEV8MWA24lqDH8Yg_LuLYh7izSP9Pmup0CljKZb1ut90W1Jf7DXk9NS7X7zABXS5vtTQHrwzT5HJEz7gPMoSCN62NaGtNtlfPFisp5UQ5Vg4Rc7YrQZohZhVQYr3O_18sGV_SR_-cRLuJcAPANhWcaGN0qDti5APq4_uoxf0Q6bf7QDijocfD3UYzoDNuFB_F2mB7DxQvwKBb6jvB3GmbwvDyAyHlgPMUSjtwyTmQRKAYNqMZY-HdGz1S77dkYWnm0zY1EcSJO5fCdyblENgUDw_q6veyOG7WoWg_gp2T__Efuhs5ZEdidKhqDm_N-JASw4GhKxG5WpXGxJgiz1VUP3k1dLmOZQfYoXanFfOr_EkbwCja8yrrUTHZTSawtcTxwpUMQCkvkFJFkHWRxUltu11Yhy_goxAzFQT8aM5aBWIXosBCtg4Tr4q70fgrjvJJQ2N-K16oguaSEp7OV-rs42wpi8sUVkEjuyDuyISHe3eohN3C6YvmBB-AokyGQzgIVoJ6iAxYl0D1mw3EoDb75jaMgbnYNivXbggbuvEApW6fO7c5cv5oVRkO7J6-3H7X84W4nMizIIjs_pcgPK2OhYtTQfA7wHcrcbiHYjItTFC-xMdvWLIx301-E95fiMWskMU_ZwTqx7URCOBm5YbHru2lQRP5vEK-yBTYN5C1HQ6jIbJJCHbPCBT-urXppyV4IK7XtB1kUumyU6LeGhumrED-Ph-QTEPBeGM85XEpurAHxycoCT40DcfGdfQ3WCFaVxW2ukKnpX-p-Xb79E5DdzMEUm_fRVfj8nfVTxOV_RG9OwWP3U5tJnBpd6EBjKfTltQ8zW5uRZGqhR7f-qBK9s1RPZxzLNhuMIggcoc9Dd_SuB5IAkNnkrH7IxXKpH78BtN6NqQ_CwSPE-TGZpmybLblLasqVDnkbgfdglU4Krh1_krZFsXWXbIn0ZECv4xPnDurLNlc57qPAfnV1Uzx2-FWw_NlmG93LSJ6zNaGpsiN_2UxkRiCFbbv9QFRRvtZFvlBavMjPtKTCx373T_CuLbsu4-HQ_R1_MfT1pnxRNOVEmjvGZQzB8NuSUHUX1gPZK3ED5ZSwLdVzmNLnvyTiMgac4_5dzponbSXzNE1q6GeBhQkuzpT8DG7Nasd0l0sY68o8FS0jA4fllhGP53Mr3Ul1OzQd0lnCr2M3r9ieIveBukksX2pR8TOwifIBCA9_Gjb5QLnVzvbPf9fotmb1LDNiVvWF5BnQQzcZ2gGDSBbOYj5CQu3yiPXw0StGp-e7r9dKZ6eDcNWdgp90hn6GnIk7Sg7dH7zLX36XErRjFk2ELMTMOrPm1XHgyfsDfS9Pr2yWp9O-LJ4w5TG_IdBGLt8vlWWcYjU7laZ1zNnXi1VRif47OL2yWd692Yl-FuK9f6DohqozPXj5f_uXRxLDds4BNhfe8Im19DQu9V0tbmMKpOZYyPZFK7juqzkPkhDsfQmd7v035X3LT2uOXiO2-2k8tCPIG3AL7UBJodqBHe_DEJxqrsrvFUsyMsYkr8SLUE4VrPE_O5TwKoF9zygeIxQDSz8Xw0LBYObdbfBqpX7IveiFCI4jHT9jhLmqsQHVNehZ6Gp4Tl1s0-oGFeJapUguGb2V2MyNNRSrYAGyi5y3Osu7OvWm5moHmHDquZ6DfIs3LC9LqnPrS8zBMMmAtY6maA0SEFH70uFbGDeMZ6biFqRN_bW7cqc6iAgHU0LSc-1ZMWc98A_3-UvbOLCfeYJNDjDH_Y8Uq1E5HhqgCRKF5RjNtv94S6r6tkc-nXvhRpzwKIer8_aw2gohRbdnGrMr3cn6Jn_KIQwQUWrITF8r3F3BVf35bb3Gb-QTv5U7t971tsRgUsQQymC5NzDJu0-Wh2lgEp9BgHtYKalKCQnTLYySF9JJ_4AqVxPW0NHtNVu8Y-xPV7_7-ENcAWQ7uPzqisKS7aDADx00TCNAtFwdiQJZz5JcYfvnXHYo5ok0YKEq0Tm9FmOJrDZ5-MfhFY\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e68b697e0995-86706943','','','2025-03-28 11:43:37','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42766',0,'cd-form-entry','',0),(42767,0,'2025-03-28 13:22:29','2025-03-28 13:22:29','{\"firstname\":\"SACHIN\",\"lastname\":\"JAGTAP\",\"email\":\"sachinjagtap2407@gmail.com\",\"contactnumber\":\"9167767909\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/what-is-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA5JtE9DAxuwOSwFTvmSmWqRUPGeTdHs20QCl2jxYKC9mlvlQD_T2mUCyVPH7bIoIUo0Ho2YanSyYLI5LALfExH2xpJSqYPGK2mfznEE-ZKrJXTo6Jc8Q58Qmt-iy3fHKrwChy5xsS3KnlwExxyzEFJyKRakInD8_MQsRxpEzMAl8b4Ok9i7Lt4_xCi35XLxZryYjDeSSdAyj8GIzKFgqM0IAis0ExIsGCa-5wvt9OmjQwD4HzUd4nXw1JN-vEhfqLLcxJtdmP8lsqlmhC0HSMYtLLmk_h0p46UsTvrg4I8Xz8LAcDzhLKqAB1qdALY44bksn9pIvGpvPwleHm5b0jMTqcaW3xhOhLKl0DT5WLClwM3nnPueR2RBbA5JN1Z99bWN_-zO1ZTtA_ktdFIxg7VmCPNEkfPMidTPpCV519XMMAjpD5WQPPq4r-bZzdAXjEjT570j76hk7Z_pWOdbq2QTMRAXxqQn-B7W04OWCODGpGXZmNuePpXcQ78qibNmSQ7EQYXb7wJ5Zai7NdKPGASwp3kB2rUhaKyTt1qrAzbECJaElB9tUTL0vZ75wAoWpdtmbZJkqsZkdBuSZfnCEo_Gs0wz3u78ycrTKxDUQBxkCodteGc-RpXxqb2RYx2g43y17g6cotJ1VCIpujVmtcshOrBGNvoG5BhF-2EzJa_JU6yu13Sbkz28_HZH6NA_SsYFukyMNXLywP5Me0aeIgEtGM3HwFxeilsViQpTFgb364Pp-WBiIyMDNq9_tmMBe8gbwgckpkAIUet3vx34TN0BjzxTroYpOtVRhHE6dw46_tusAmwVcS_945OA0r0gnKtZLoUiS9yjGMWOR3_VERUgXqIRnV0DDnX48_n_9cNTqiegUjDP_3P5qDBiu39D9vxUM7u7gK5U3BXYEM4HpZuK-3q_6VpLzL8ufdGFAQsrx6U74lQID1LZamVPEWPkK_zLhAKliYlcs-Q-xTgdods2qWbPVPbE4pAB62Zwf7Fe-8aqlvVTo7zNUzBmD80z6-PAMYmhy_-KD1t_UqmMrVS89n09CjAx3Vz235W3urewlgZ8yEOxE5Cdc0nvy3TPggOE_dnU6BR4umCcWiTXB52ZxBFf-k91SrMjNDLE86esHkOocAymAqXFlVwYXifalxHr24pi3iRA0_wFCmmjTDHbxs3QA9BFpuoTdJUCS3V7Cuy7OEzxhCuLgtp14oYSFMOjolfr_lY9nagPn4885WFwtJae0gBPcLGkNf-PXBjM4N-LAIiOZHvvZJumeT3GJeujmUhE6Vgl_F5LHfMaJMSWoqZhUcfwWmX8M-iIkxRebknfuTLjqXuCv204h-GJxeGF_5prD53AyIrFrKsg88ylrGXgUVoDTWz_LgBjJjHpPmCjnGe62kzNOiKmFHow5gTDehVc7cLOk-cUNYFC1-SmW1Sr_ZaIvioMW4cjF9pjL61ehEnHsE5uQVf0HRF7qtlAHBaDG1fkYfhaOw5sjUk16G_76WWstqQTOtbikZlvb2dFkCvPIFyFNszMf4t4VUcT-eS21NSFWgCCrOOMkAceF7mpQ3TjTUL72rIzVgVIDgwodFiGs3gUkpa1-Vx6L_Zb5-RGeFGYPq02uoyfDKBzvt-CC6gxqBaRFcAQcfX3pHUoKukmTUEXsYnDi7o4uotwA1fYE1e4YFb3jpmFTMolujpXsnw6l7NKackmuMqvj500LVAues3Xenw0DZN_NCZ5qV5GQiu_b9CS_h3DVHvgBR8C19_dLXqiuA5VxMzgBl-rDWopYEeweXdfabJLM5w6_cG0F5S-PQ6ll3JoZPnxbe-PWNb45-FWYrvUbHeFuDPQZEBC9I1DG-BO8Yw9ISLpqwZOZZ6lE4sudItZTGk1muWYeZV_14pMneAlWAJjw5HPHX8uiv9839GcgUgzBggCUmhdTZDmS8dxma1F3f9rYYnkwpcqf-9WEQNJoby2Cj2-V6p5Yp3SPyTmX3nbjGQXCtMEYnSl14RqsT1z8F6BwYk3Hg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e6a270a77ce1-65292302','','','2025-03-28 13:22:29','2025-03-28 13:22:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42767',0,'cd-form-entry','',0),(42768,0,'2025-03-28 13:23:21','2025-03-28 13:23:21','{\"firstname\":\"SACHIN\",\"lastname\":\"JAGTAP\",\"email\":\"sachinjagtap2407@gmail.com\",\"contactnumber\":\"9167767909\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/what-is-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA6XpU01paBc2c4O98IkRQZmDcOgtA97dJWwEyltwF2Gk8a0SVPZxUSyvxUEX04eqOrM5mw6o4ea5VUHrVTasZnhlrdai4IByrTJVyPBtpJDk2DVH5GlEVBnROtchBQ6Uvb8LEI8gK3HaE_qafYugAwHWlSDFWMpLLIgaoro9VITLbU0l95H0Gzpd0TH5_9H-VaPGGyDxEgd0da48Y5nbrxDZ7f2DDVW7vUWos9AtMdB2rfwFyHSyJTEYwdfvT6QZ6b_6kp-Sr0nMQJchEyvn-MfdRAFbG-FyN3REqyu1uZT3dlBqBrHkDlxlA4a1Gac217JkNdBI2kaG6scUy0pGK2JPMrzUE6OhCLMzDoEH_FJ4EUMf73EoRPQ-Ng5jRRI2pK7QvWUG_Zap5HmykK02ls4SYQUaoshZMRMWHgW3bmy4lTuQY4jNFhpCu6139-YdusrttZpmhuOrsBFDu-14nxe-_o8QuIS0kSRzfu45hJ_g3ncEHxTTogtwcyVn4Pn3wgD-OB5l2o9rL7r8gHY0R4AsuxBfJBhw3SFT7CIHG04HtaIKTcEUAb9xs8aODXkvGB0Fjm51g5HacoPbEih7z6-cf84pFXxuTqZKUbC64SKE27i_63bkFLvkmKy7MaAvb5fnjEMwimLfQS8DgpDPrXlI0j-GMihvTF9Yp8G0bFkCFRKQsZov01PNr6NyEEcA_d66En4Jk5HIXjWDeFdIFgeKhQe6Gb618muylQclZV5KnW9Wa-3owVv3BGgs66_9fxdb3cabywvf_HVCqU5OmI-fpRvS7hpMouYGDvEnW3rDjxhOY52Ep-fsAZTjaucZ7sjJR0x_mHH_QKQ8s8mE7abtmkzYL1U7Y9_Mm571Tr11H4hjFcz21LOS34J5hjQqFz9FKIPc8vpjvRGeQ9YuPiCSgShcwvkQ-0jgNIoQNs1qosNskI9bmQTjkvyCeQ_vu_cv86GelQmiUMm7YaYszmrYm_i1t57eAz66RP2oDDUUcDPGWc67L7kSOe_x2gWC9UJQVT5eyyMfv8U0jb3TGuWDZ3-ZSTI4nJYdycGVPbCS0vQD_E9QR9q2dLDujNgd-oufgopcEgL3oVr0VTTBvqg3dEg9c6GaNynx2Hv8nbPh9S6UnTw8y6wvuFryyXtZHFyRP9mSXBMMvuYfpqc9oa8hrrL6bIyAaFrKvnNkCXFrALHCgE6RQQTe5IGg_WXNhyusHipRWG0OcqIWu9fiFq87TMyK0LC-O_MePL6JqmWYng2q2fiLvZzFoaHUScyxVJ4ohmWmRXnDdUiWRUCYkfJxrt3S3TBEwe1Hu09XsJDEFVMQDoUnPBkimDOkGeHrEKw4mPBTq_Ei-F6y9bZMa0ieE7TjdEtdUbGKgQ218Z7LaccHYxF2e2Ug7Ww4pfx0b6PNMFVFi_cubL9EYHUKigqxkMMpN3JB6-ZnNTBJkE4Y_Yn8dgbP6sULs6UCOJR0xdzxKPGWuUzb528dAs6zCf8d6VNa_4ipIJAYqtVKgoZQvwE09exsQGHZ2AgpizDlItrzAvjhjptQZyslAghVPLZozV1U6q6AtoMLIKmNNA7E0pTDb2oPjDaawFe0PYFPO3GdOh1DIlvu-euWwRzPTgM4MnDMTLVZrJK7g1aT_uYmS10sBocq3CF2A06qkohYykbFuqlkPw02nWFK-0lDx-AjRoip5YHhI-vRWbDQcOXmdoOyoRldiWPbwHWZQYTsBCrDMvoP620Hr8F7541bqqXniXFwHsfD54N8P4MXipRs0DPDU6RSwmuP5i_ZRYllhfSpeX7DWfIkKZulcemSxqpZ7fJKW8n45WfMc8hpSF7Rkxa-B9-ZXIXNgDPI-ctDOBJEN1V7QjISAkIYz46Va8n9Nqgeyna9Pfcz-h_x3VziO9zR-8TTxUw4jLFd34U1mF-kHUloEnP3tbh9Bx_kCfq3xkDooc0nRpLImlAITI5wFatC5aBVkJ4nIQzPcVr1uiWhq5Ex77AbslcL8rRDnwHwe8FDg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e6a2b13122e3-30153642','','','2025-03-28 13:23:21','2025-03-28 13:23:21','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42768',0,'cd-form-entry','',0),(42769,0,'2025-03-28 17:02:02','2025-03-28 17:02:02','{\"firstname\":\"Mike\",\"lastname\":\"Brown\",\"email\":\"brownmedosit@gmail.com\",\"contactnumber\":\"7036534164\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4ly84dp0Wx5sfMZXLFCUbzY610Boywjg40QAOw9oKeeVDr66s62PIZGcnRw1DS5QYSNpjpLziV-sjePBWENwPDQ7kemhLvy4TcM-7-UtkOi44ot5udyGPqBNkv5tabnH8zvoWZ5JlMyRhol-atEHzfMR0jbyS0zdGG_uB3rtb5DN40SH3_kKzcsKT2am9U5r7KaNbyAKQmIx4PSnW1sx-Pa5d7f_0vJJX2fkj9HtXYM_2pW9VW8lNQjggpARpN3RUx7lDF8g2qimCECJ6P--JAsko4w2yZt30Bla2UDKUXXxkUFTeAj1uGBVFjaaWNQsJ3rJ6wCn49BY8DnV17ApqoCkjESMq9A00ncNYSO7BuIkRwVYti9ulrc3oHAaEOxKSMYz8JToSlklcr2TJASuY0s7x8Ec82KmWyNf1PTn9L_YJXtdgy2jTZtwEyNKDIte590O7okbhdjNcD1oZhC1FYWAlaF2iL19a3ntlA1Luu2RxVK8TIdKgUXNi3tSdlS1KWDf32GdvHK25Sc2MlIltfpGIkbA6bv59O3J_vDBluSoHawBj0p_6qxalyCScm4fF82dGxqsVthXC1gUXEsEc2UJc4BWmykXMYwFs8fjLukKAioM9BVygiaw8RBHuSn3wri9hU4PBvERFLN7ZphNs4uWYYxoF648I7wKAlQwto-eUtuoQZ_ortkIxV2fhZ664n-vRZSlsG6TJysG-dtIs2PoSSO-51TWw4SRMmICfRZtpLsAqVKwZUp1NVzaVTvmw9sceSjONgmCRoj-fgww3UbZndz4qzwODzuZXHX620_6aoE9GNbUrDnthEDc3i4bu1e6yx9puJX5aZacfb3tcKQJ29iYfzAQai0YTmeztJwC8XiRlUizFXR_W5ifGe41TyQf-fp_eL-BbgqkZj6Eew9V-2DxFaaXyn6aW7Kotj5YFVyl8pX59Lf-kyStqBGGx6oKxxvoXBZfS5K4JsTpkPxi2X-IFDvCUEHm8F5d5f64Njr6diSsgXPZGfoZhLlXAYPWSWBEoTwc2UzGBlxzn_MQ-x5PhXyBkvH8KxVRAFZHrEx8CUBxzD4J19QN8lDmV113KoVIIqdcwzWWTT1-8U8hccoLwRcadYDIc43QOF1J03elCBn2wElp3BN8yjVqFRGeH16MjOPyTk05phO4UzZWyWx4kTN2ewVUD2Hc_VYmHFc4inByuiwJuLdDg_0WHxYk9o70FoehPNvO8AB9qJ4PZcp1HTykmX8HhLMpkUuxx9J135CobkMwgdU3-tzoWm7hDgeJTTktRs3_y9Ov84x866x42C_Dwhd7Fg3rRQyHtCnhjqjempqFal2o41HIo8OnY6Jq38daUpnm8WLIcuYD85uvuMP3LbZIiw7E0jx-5YC6m7bSdMARb3JzgcsK_TXpd0s897UqgE3IEZIwjENIT9DofKmcwDUxWWuz_8nfhEEQtnMYVgWYQwyUmat4jQuT6jOqK_c7-B0o6Kpo9o44bg2LsERSJCVP6ZHBAZd6e7zpNDhZ9I65trm9x144rexD4NBQdgVyHBWRJxrTnbp2bLlQBE24mhj0J3AdO_YoFsqIUiU8GxoY8pMiQulGDDNvODJFBhu0hX3RNyslYBvIOg2Wuag2zyKIF3NXnTD00_kpMIq-ApvIrug2o6wxM1HlX9S3efgMbk09_HWFZiM0XpD_dO6THxF-33dXNCYqLfNhDG95qu23ns_7ewanu1C1NWJWYnpIzZcbCFgYOha1mD8s_HFZIQv1ERTCDV9Y3VAjN_Gz_rXPoPSAD3XXFpK-FbyyGOMyQBdWRe-X98i2oDs7akxJxQj9cSMQKvr3WC9GXrS-X5kYcuywb6Z3Yfn9lWZdm3_fqCYKWKcwlEZ1Nfdkg757ef9_Tv-X5hXsMB1MT_BxINyZwVt-lMT8h6fOsbRa9KG7D01HCwOJyFexwm-_n3E8Od2Y1RnxO5_LhlLCQi2jeGtxnSxiQ_24mwacIMo3zWfj_yCsqqKOokJeVuZoaCucx1BWFMVMAmGJ04nUVZDDQ3a-B67KNFytg1F4QsBmmrznMg94dz6gNAgl8a_XBUCSdmWqM6mNfmEYBu3d9cFcH189Yhp4GLaJpOiN9qsMLNa5BUViCsyMR4TkVhxpLiIo0jD8QCfy6mDKOHigg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e6d5f0c78ef0-43537462','','','2025-03-28 17:02:02','2025-03-28 17:02:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42769',0,'cd-form-entry','',0),(42770,0,'2025-03-28 17:02:48','0000-00-00 00:00:00','{\"email\":\"brownmedosit@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"20111\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA73CicmakjhQOOn_BmWi5FcoKEGceDf7QkdzeGz9ESjviMthYs7yZQbysIdm9U5h8F8gSXkylSYHYxRW5939u3iBZt-RBHykwjLULqs01ovD-i6aaKVIqrN73G3tIRpFnoEXHFN9YWZzBpntgFKx8gCS_PUtQED_k7LoJy44NGH7Nxa-2LajT5W0bPg6msbykRknxi5sd8ixLfFex2elI-BnDeLLT4Hbn0-jM_VvnIc8uveNWDwOM1EK17C43J3xwrrOpTCtvh6FYh1yNT1g-o7xrd3KQppH6Vo1b52AItiDN15MZhXMDlswVgIrXXwZ9AbnAxEXCZhBuYUOl-TPiYlz7ReLeK5MuwQ5D01AbMxDq4_QfSCrV6qZTVb1-UF_h-0fsVKn73ApUHuw0xgLhlneqONBluxyCVaPU42DCa6ogdFuGj52ggVQvuIhww3uIgOeYAoi_gS6z9LmWB5qlF5nk0ZYw0bQI6DbS1_GpLLSXPYKjKWZms3KGuQRcJTiOe4fiTxfrZhT-WreUSaI2aLTWF1x9Ulm3afiqvsIWDksoaaO4JsiYLwj7nFHcMzzpeah7HYeEoYFxiYwZ7X492PmE_HcNHMWw8tMhkyta-qOcqhC-lRn5nealXHaxasgAnBWB0rY37AlvvakfHb_N2LP7M95bTljrfeNGKk1F2ERGFWBqDbsi6lMj_9tVuCZ1Wlyf8y6OGcZxLUYqKLGbp20YvrNtVU7Yxm-T1m5tM3rtn2fmcwZ_d-_ohPtZo77kFBv0qVnN1TRHoKEtNxvpt16E4z7H8TKQiPND04F1H3wfIpsvOecj-YCzdzd8Akdyu2C38b9R_LWvaCG0Z47MWnCoQt76Q5LfD_aoxulO_a27oijIOCmYxwO1ZB2KwMYoz_1W80_zgSB4xyPrVSpsdxM3LQL9AU5OHohQmDXyccbxCPHeFRbhRsNvmU-re8neTC3mFctmdLoyGEybPL6_p4GARGfFxoltc6OZi-1Ghfg9Gm-WlgluqHYmeg1klcbh3DgeL4ZQSNKsjWFRJ91I0QZvzrewABt-y8iquUuDMBaEEdXJr3jy7NHGD5gmgaYwPy2irbP2525zJzzEqP4CyY_QAYA1cxEmYD92zStVzi4shiugMRgPuxxc6PgYHxKjsvsPdWwB9azkMsAVvPA4gi-cyAP9tf20JrJw9d7viYUKG6UM2-BXpDqQGb9brgIZoeOyXuVTKh4az4ZKFff6w3QSw32kzOWEzYhydr9pe3NVpvj2YWpBL0uduDbFOS66UUJVOifexJIDEEbKOJ9jVRwQyBjFJQ3cHqRLw2Bg_dl0RRnygalX1OCOcmGsZOI9qqhLY6k-ozuUKspmszD-4gPw2f9ZYCWx-Kr_vFyl7-g-4Cj7-jjujrSMZuw1Wse50rHLboTAbarFnD8y1Ry2wXS9AKOxBphKWQ0KTvJqolqOfjStVYFXKTGPd5LmlebJnwGTJvHB6dnSoOxZ7PS-NhsmoJQErkkuS8zgFRUhI2sUM1w7HVD1_ZIxeDsOm2dUwTVVXokw224kGG_CF4S8OdsoPhSuj07nHoq22Px5fIXpVO4sFWIGZhg2anauLM4SP7PHQpHtxtmHn_HRwMkC16MKcDo-6TGn4kPvt0LzS7nwfiM3qxLMqq0ryuMY_u5cIgg0M9pfikbK5X-JvJqvZvj235Zmdc8LlFfHx-wLqKIrrmJwDmTuudQ-pJOxSdCGyBM5UOGyYWQexk_ZBPNMVeEqXi8m7rxN3W-j0Zi9calup3pMq-0OYsXW7_3zsGJJ5YXmei53zB8wt3v0pOVQDvLaCWdsuel_FgfqbWWtnghnznFsCKVneguG1p7jTYLtEjV4cpONl8RUvyVBl7bs7uy2CySxyoI8g3c11iyjZqfaY2SxJ6BuqY43rPfhFwl5TXVU1iYUzEhYD74-R8z__2eL07YUTbsloSrH7sVt9J1LLwMhp7As0gkpLdLHDNZlGGxHgDVJ13hvlZ9MLQQs_0aKPSKty0o-Yba0KlSujCMNCX2v3X4fa4TghzA_pjMx8ijsemSgfYoqlGgMhHkbwyMq0OaLNaJXsWE2tEmY11_m_VrNGky5A2cSB8IXnMgk1HeU3Jotq9014pbo3guk-AU-yxxBT7rYk7Sr5Vta56d4vifQDLAe3RnWvq1eivRdwtTgBqrqAlDyJQJs5pfE5UUBvflg\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e6d638261bc2-51964064','','','2025-03-28 17:02:48','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42770',0,'cd-form-entry','',0),(42771,0,'2025-03-28 17:12:20','2025-03-28 17:12:20','{\"firstname\":\"Lucy\",\"lastname\":\"Day\",\"email\":\"lucyday1979@gmail.com\",\"contactnumber\":\"07920804632\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uXNHqYZek5sPljy_08kH0YM&amp;gclid=Cj0KCQjwkZm_BhDrARIsAAEbX1Gp3MR3b1Bh0RLTwf7fU9J-7DOtd1N9ySb0ah6rSrIwK5z3ORDc_VkaAttXEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6opO1AquLubr_-KchzhGEEfGWbSksbi7rZbpoB2K2YY0y4WSenzh1pfPnbSeL-yc7GOThGuBMCqJGyB4mp-hob5_jCtGVL_GVZJ4kLNcXZX6cKzEsidFn6D1jqAi3FzTn3kC5JxTBPA9n55iYuXfc9aBO4hE1Lbrt6E4dQY6QL7YziOmE4fH30gBYOoplSq2z8kf9lX-0PZAtqhqJHOtLg0mUhElDo3IWEwxSyy48ryq234pLeMACY30NJEFQRHS8SHK4bqB9aWSFi5ULBxl8B3z1FAvuDyjPFvi1P_i7l9faBEQB0W8n_KHm3I41XgjCJKoz1pIUr1iIBhXc95-_rwDfKYBNSvyLPXrzUFXpNWt8YGFZekE9JW8xkBRhh8LyYiFEkwM41WqLO8D7nL08B3lzORbvVuElca-M7gNNvBn-3GEubkt16mXNSKDZbO8PSPCeZPPdQuXUmBM5yRgfKakX1So7-DWdIA8k5XA6_1Uu207MOGtRZP--rFU-wanReWLmXqrJmBMfShgOys1sV744m63OMUaNjXTfC8DkD_YpY42Vm2wlxHFsZ2YNMftiJWpEKdGDoOY9MewKJddLCQ9AgiuhVW5QJVrAnOAbTinc7Dbrre7uZVMmtvauaLN-kuTZnVjOUyafKsUD236hcpH3GX9Cq5Dobp8ovm9sNTiNgq2Dtp320d63Rvez9nv3-DMVckWfhKtUtMw4qhMt3tmFsnk-fVf0F2yFbvnXA-3ZOIZet_OujYiR6IkizRztoPaeDkTRjJaMoLxikb58z2x_lPEFNnHllf1IBwhSoPJN44UXQ3eCW4iw9zFYGCN7hexXOdqxp-OOi2nIf8oas-Fd6xxD_98-5Di7iD_tmSFfPpQg-eNEcQd4rPzLsxK0Kv_bgzE-WhfflwVlZTL4cPDEoTB01Fy8GKGjijQsEnkIH0tGNU9822GD4BFxIzquq93ULw7l9a0gza7egmc0JsAS24TmORJ-ZtREKjfcSJ-FbRW1PJOaBSySy4ebraXFv5pamfUPqIuRWb76_QjFMY8y8XgmrCvKYo1vDV6-9-A8TqcBABDTxZNfdy5i7CSIzuop1oqSt5qwi4iwsAcdA8YfCOK8kiuCZ7FGyQqkoMxqhS5o6UDqgt6Ss5JAzTUZJe3MBfwPIXYbSDsNX4qB8yrX-mXRA3XhHMRQTw43ic9Gs9Cgb2AN71UImbyNosAAODR12_dMIS4KGHt72xiEvdJH5kRHW7N6DmOtRV_kVvr8UITXAgaB6fxffuHGBfdBo5T93XmXzidtONm8jm6ba-O7RBT6fnTdm_mvWSvZO3_CnOV84tnfwFXTTTri3J2GQ4vCmJXDtjQ2BA_CbAf113xoAPNUcEh1ufz0338Dqbw-FBFOdQpznAXJW2aDqUgZzWJ3QsxVEwZ-HKndck4c0ZGggtPK6If7P1JphGhqnj__AXY2Zx5yvj2qHSskE3wQK4WK86eWlpIQAg9JoTsfNW1ZsDHtVm3wioiqsywrR0G0lvEBlmZ4Mm8B3To3FLrS8-252wJo7BTzZbicGd89psZEqmb3eOWunBq0o_dj5YbqacGMSc6xl4gBOhsFiRAL0X_cczIfz08W8aoJZPkKtbNzId3WLh-VslLMCTFdT1rJKOASskiq7FhQJL0Sc1HZFQS2DDjTayaFS1Ve821AnNpOmrx_WcHCLxnaY4JwPFpyoNl33S7CecK8YcSGuepbXIXUXHUhT3FwekDS3-xiWgQBHMGGBnZxie1czzegd_z-RjgeR1Preun8LsIz0cyAuNT6ehe0VZVMyK7HsPo_eLZ4XKJYw-vgfyLcO6I9Urs5Xh69ynuSy0C2vBraknxRBbQbjhSZSoaCzRRB4fEBFnTBUtAOFXBX8acSnekYqSqA5bQPJUUsIi-A8dIvS3txQ1Y0GCAzp2Kkf89nldPcJlY_XP5ivav2WAKLOA3sPBuoBhTj02t0vtkROFyKsLevnxPfU0kcLdp8oPeBt2yRbOLUXZleDzGZoMXNaEk85vK1aqFjOr8W64ZCkcxvvVt0Y5c7l--0T5GlAYhcpqUv056WrXWNWooiihYeUQxPU4RKc_pw0pFAqMxMrbya76NkI7-hvp6btPMhJigMZ7_Snsvq-R8JCmS2c-BxQXuJa70Wid9zL8BLpvTv_0Qbe-0or7b0mswsgNXl0i2bLUUIaTJVp6UJe_TUyptq3tAhjYVMzpOjf3mSXc4fJ4TU3gMeebZ05v9gq-QB0QKDXUTBgYj9TqCHyzrFMr-0MI0swrscbhcTnigDRN8K1dqL5JK_-vBfnaa59HNYFVN28m5TzkGioac5J2aafevjsc9ZDmer5grvE2NJ-6viQeeIG8Qide9EH4bl92yzKVCCmlOS702jkQg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e6d865d35611-39748513','','','2025-03-28 17:12:20','2025-03-28 17:12:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42771',0,'cd-form-entry','',0),(42772,0,'2025-03-28 17:14:07','2025-03-28 17:14:07','{\"email\":\"lucyday1979@gmail.com\",\"currentpostcode\":\"SE23 2PS\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uXNHqYZek5sPljy_08kH0YM&amp;gclid=Cj0KCQjwkZm_BhDrARIsAAEbX1Gp3MR3b1Bh0RLTwf7fU9J-7DOtd1N9ySb0ah6rSrIwK5z3ORDc_VkaAttXEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4a7FKQX2PbBsZtH4955Z50VE8AFEcQ4aUp-adfMpaCXTWeQJw__nNOpH0zQnxBWnzAcJpMD0xua5E4B9rxytwIkyfa1GZQIU72pL5BIMw-WtYbiOARYt1eNcmWVvjXKPRSR2pm8xzwxNpXavXx_BGgYZSAqA-Q_lj8o0BrTRNjhZVvPkpRGRn2GEp41Eyc02eqlGkGsZMeL_zc8kKsIUpf0N1NiSVAcxXhYuflUOKP_HCQNgKR5TQAD8l3_Vtn1179-Y1VZzhPLLD9w-3P2g8Xte44pFsLTaPopsqK5qn8tlFJBYFXBt0gMlON8hYQTw-sP3eVAIfngxvjcpOIQkH0h8Vf4U7-_jSQwtgdM-IJvBB0vslv87goX1v7SFpUSbdpA-6tTFLiAPJtuufHYEs1Vqv-9Y9HeD5HxTp7AhjC74fWKwoj2-vlVPI2lbe1Yltl0gr5uGsaGhkrBaq-OcF70-zHSH3_vnHgais2I2EzV7PEXDF0tzKNhoYIXp8Yteu7HyiAxtOgo2OrBS5kt-JtPyLjBwg-2ruqZoIxyh4H_YSuiKjzoppU9wKCMR0XE9YDhSElk-zMTgXkRbxMYxzKvGAmge4TMc1J2dT4tvwN2YRFa6VH4sFCZkX_6zNbpBV1dHLCdtAdAwNDsiz1rg-3Fnsp6PAoXaYhr3b7k2DGOZ5M50zR8bZ2bpdB36xpHEaKScTFY32k8FLE9_JOQjYfJQsZLpn33pZD1GT8vt7-kic3mrBxjOKcUOZqKMOGiZ7A9SpuHR6gorjNCwdYHBblBk_NpfwpJe2csjCyrd_P-O9kSxwnVQH2Y4dmUH7G_iPo-E7aIN0ce7E2cmOEhABlf94x39RO6JCL86dMYrFSEQ3cC8YgqJGWBVizCn22SD-3Nvj-6VZn-KTeuMybqFD76lvur5_8ZgIpPYItEsDfa07B1mEk2fK7OvR7za_8AXyoMri-TskpFhU0LnbuuPeBjgL4Rgyu3kSwu0zLhRIcBRd0XXCoaQioCWInrMPsd-KrxQl5x25PFmuKD5wjXAjtNHrL8pBzmNrNYqNl8_oeEjJAmw1kHJIf8Otg3LyrTM9lJg3N20ZE8hFP_3CfWt5n6QZ6EGjxSE5c2j_ist47nibEFOjSjbEavetAFCU6-1lWYOWRJ6To4624vyALtTjF6YPbFVcOeUo2bAlzXi7RbRAf5IosMMn6CcYCZCJg4gpa8xQG6pZ9JOGBFLdrq6YQ_2cJaSPAJcXlI4yFS0ZIPkIvvXBjNpwGBTvXyUZ-7XKVRRc5hGouPaVItASJ6v3cW6JL5HzNJKXP54H0wIWYXF4LaBtvySuss0PWCJtn7h27WGhrkPk9VXIltS80bsgqbB6xfR4P-SjNuOExPWbC4r8bXFbWXueRCTZrI-bTH553K0xl2eqUNg3ve9MfK3xapvxxJ7mQW0p_1-iPLKY55W5UrxtZEheCKdEnE3mjTPvTWSVfyu64lVkN4n97h93WapSBnbsD2mpuWOhQuiNMCxVADCuhPWnGlxXmcTjqNFq6WWz5aDRqF0IulG-rMQmSVIizXRtwCy4Mo4gQvkaonp1bULJTxYVgjkcKffhire8-SxhljHLQm8KQXUv4RhOZ02ImLV2S040UpkxnEQNJBkZS-1dHTYICjUn3oEx14nVUArwViXVw4-9N1puk8XVjfuRbxlJaCSLYDMwOM_yofIztlvQSmIzNXHWVT6ZqCq4nM4X_wKoJC74HITienusMX-kjPg36V8oHCPVDLZoujLgEHA7xvSXN7AiDZH12psVTrhFFKa1nSJKK6dDwWgbuoIV0EMrY9XkPvePEjWZ1uX8IBhh0peifwAeAIbIt5spJKpSk45xAYvCgzLvxpLz2JraVXoCRRek4CSmZ7oI53zb8oSDzIrmTNQ--t_228fpGGrHQv0Dy1xTTQsvuYu-FBcXkDwuq7r-dmAY7UEbL5N2yonyhpIbQjdXkuyI7GV3T3TqRPx7ABoxb4WDPAOXyOz0FoAlAnD7Zge_Hkn34OY7LmduKVLO_n66aZ6vlPL_xHJb-lWEBd4gjveR3WrCJVsPP4Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e6d8a983b8d6-68339471','','','2025-03-28 17:14:07','2025-03-28 17:14:07','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42772',0,'cd-form-entry','',0),(42773,0,'2025-03-28 20:17:32','2025-03-28 20:17:32','{\"firstname\":\"Lucy\",\"lastname\":\"Day\",\"email\":\"lucyday1979@gmail.com\",\"contactnumber\":\"07920804632\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uXNHqYZek5sPljy_08kH0YM&amp;gclid=Cj0KCQjwkZm_BhDrARIsAAEbX1Gp3MR3b1Bh0RLTwf7fU9J-7DOtd1N9ySb0ah6rSrIwK5z3ORDc_VkaAttXEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6UThB4Da2_xqCyugM_SZjBH7uoFm_HuHcd0s1DbYHMS6p7K4KK9x-2QwT8oSTGvkwwaV_auL4emdP5fSNNaAql_7zhnaRGhqdt2hRaxi35gQaKV9383wcevcbnPfN7DAXEhw6_pgdBibhOCC7O762D34aZhSS8zepOBHuQwrue8jan_5ixsBIOjvm8zxYGLOieS2-k3oSIki5UmrHLmzgtFCn5Jr7RYOTssgbPT0D868Fb7mUX0FuAKNSDVirC5MxNMvaVaXIY6RfoRRwJkwrpFHIL0VcT0M0mvuHoY3_r0qsqPuMV8gAp6hvfapbcg5_auJFQAbjp7hnhzrzzygYr53PP1XsXTSqqqBqsspmv0Fw7Gio5RwjYt5MBoFeDMRNnf_dHOkSZkWhxvG5B6YUT5plgwxw6w6Wk8CRtI41lk5rkodnoD3jfMzqXqAarRaGtc6TWDjZht33rIB6MwmeQV7XEYt-7xbN3MAeSEQPRW5gC7N9OF7t6vKcp3ksEAQm-HhZx3yCEeU0SUsgVD2mzOwTVDAnoehyMtH9Inn10EABGLMOt73qMgeKAtwzU6gkEJH2MzHHPzGjmVEvR0L3jUnBwYp4raLIYKWS7RmlEvw9A9bn46Ab4HrL-r_xMJlsfjnM_KRSr7yrv3R8Uv60Yek0juqdFjhbIe16kntYgkFhXzdmPJG4ayRcX30t32AqaNf4Poi6TU7v0jBKa8wgJNj4dIDSr4UcJJvUdNVj-MHQR8RLp6mgaj9iqVAUIBKZqfUB29HCuqNiAd4F55rUdshmRQ2St1kpixSjd83ipgGrYo8sgxrRayyDj1va8NCTzUd6o61bJSvRa8eMG5N1Vy9hXD_-MXNQjNPQy7BolAhT6Ll4D_aGzaDOPhEe08TllcrvinNddqri57l0DVxq4IPUfy-WxdUCbJqXUJlPHwFK2xYiF10PI-5MO6vvhmvhBTVBiO0lG-F3-nD7PT85iCzSBJbw5RZGHQwVbnVRQ6ekVdvhwu2s73vyQu9aTayGvTEd90lFSqz13dXu5wLZ7xtXVneo9GdDbx4bWuug2FyKqzmec8UF6xYtKcY0W7rE-aprEJWPxcjD2jraEg-tdmLIzMRiKpNEkCBlsb9X8jJhkZIcQ-QWKCrRW3gy-HAr-4_kDDuw97Roko4iAOeOV9799rZPFt64giYh_-7hFA1HsjF2vE4e29QKeN7xeS8hJivukNw_wv1I4eAcUxM4sWCjUTbZ5NrgM0TCzPpDlJGoLo2UMDJix4f4ykvQ8uvckDpARXjmoQhoPer4erCF8ouS-reKhsIgO71XTYVSC6LK3nLfyndLNEjneMW8GRFZqnm4bNsJ6s_EOvek8j-vxMGV792BOt-_yhAuhdPOfmZWDGTzqHYppAAxEKlr7tMcuJRPKH0OTtpQ2hYMw1V-dURu6-DRylay6c8m5WJuZ6dJnabptaErdmu5UZPdF7GOrMZ9Tmm7x7qqjrOjg64uQTDbjk6w8CmQbe8VfsGVZq4OfpVfF8xxjNR9WKMK0s5qEhOC4MrG9z32pJVupKn3rOrNgo8DxMt5w7kMV6RM68Ut8ywDPbClORhYxVwKBAHufgudY9THgRF2KwhJYxUV8-b4WVAEOhSJsbPEpW7XG9Y4AGwzvH-uCnv99Sal3zlJ59JucUOfHRAcE9Dp1mkCnne1GHcnR1R4YnO1JfNdOq9SuIbMHjb9pn4Tg6lK6bjuQ3fo8GodOz4eiFppnvDQiNoFwRTeGD9tMEZE_udDR-2-78pg27cyDCJELLrF1cyNY_stRkXFulGAfyhHX0Di7q3SGw3hgw1YYmBi1GwnNVuIMQILytdx3gV6M-crxbOyAYUYhunBYIVUreKWcF5-uyHSiLNV_ydUrBtcLYOZxJ3JOow-l7cwqGM9STXisClJmzSNCgqH-lQZB81hqanWIGDSkH34BRgEmJuak7neVv0mR8AV4o5oKByt5xAvoM3zikqG575m1u85g1szsoirflvH-5NwncaMi2NlYkIDXarbUsvt_TD8ItMTi0iLZdgp_q8FPd_JnWuJInen7Krf6cOwYR20v0ZlkfIS7Qs18WncE4rESYbFmfQRSsDfynFEBDPeaCjcie3cFlzmPHkR_gUCVjJSobS82wWum-RmAAIK4qdUzYY3ndhJg7L-Kc1J0FAGkpgHYu-coNrGCQQU4111EBA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e703cd522252-57110643','','','2025-03-28 20:17:32','2025-03-28 20:17:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42773',0,'cd-form-entry','',0),(42774,0,'2025-03-28 21:51:03','2025-03-28 21:51:03','{\"firstname\":\"Andy\",\"lastname\":\"McMahon\",\"email\":\"andymcmahon2015@icloud.com\",\"contactnumber\":\"07506836856\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gbraid=0AAAAA9_dL6uXNHqYZek5sPljy_08kH0YM&amp;gclid=Cj0KCQjwkZm_BhDrARIsAAEbX1FeGjZbkpiKLDMoL4wdTrLXeYCFNIDMyY0e_M-JisiKgzbvunY6tz0aAjjrEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6c8UsLoBmB4BJXYHPqKYcbs_uzdpKejjeurX427LVs5MuNF0r1743MKX672Ggff490rl81vU-RjJXtBEIkVbdzMiAM1i-EzFvl3vUow0xzAkPqTNSAG6oO4mQPJEmyuXDQKsMMrwpmLIIuR8kriC5n81RRsdnBiNrXJsOw7uHA5dmkIS74eeQzJ0r18Imk6th1rNkUUmOixTWc1hjES6A-OjgU8rjzF8UVopjc2mIKTE5GvrlvsKPuOmitg7kIFKvFnp-SUiU6a8qcWdNPbjwlgejdBzm3qtk9wnZxNtnruxIkxJljouDfne4BllYTxlUM_-lwvF_5_6jgsJth7nRWWlo4YmNYQmKd_iBCdsdM8L8Q6ZkLSJpayT0iFJo8UgUfHeEgiGl6U9dZrr7RCwhxObBlV93vG87yNXAypecFkFPw9Px7A6lmAnt6zDDmBLcr1jKiEyt9Q0BWmMSBY-QAOS_7fAHSs3EiRu4xN_JmlQA4Ht9cLo0Iwy3B0Xt1EnFKxxgA4vTe8FzNg5lv4LkNxtl60uB-OJYaEMxMgSfhRPbylr3YCIBq2V8EjzawXTrU-45qGx9ucP4AgHyTfxJbmNJnvJN2S8KF0WBJ68p7oNdppd5btwlshc4LtzfXPZ965DBqpVF0HQuTjyg_kJnhhVOF3hHEr2q-qJtm_c8KtxrZhC8PWwWOEjEZcOQKYJDmFsU07VxkAjray35N3-krOKIqDvkiJfMujrbPRw2xFWEvzXCRx_uabSeONEyLxMX_IIdKcAVXypqlnwh32KrWeVSsfjsh_-jyYLtZe6f8uIESNGTlqtA1xB3kLq16sTRkN-hA4a5dENlfyB_oYoo6w0NYcfArR7Kka4y3t1oxbvKfHuIh5Iz_kOFomn7_6KD5Yapk3FQcNl05k4WM9PwxJ_KLgouXF53s1SVGUK2hV5NKQzVH4PFd3lPbfBec89gpsFFZbpEoKuvXtIWVSOGSY1BCqLVsCHSzPgOfjprDrlbzyvMxKBjhdnpuYOqS3WiTNMWWz487bq9-naSC47VKK15wVk0iZ8XrWHj9LrK0t_L4iYQAau4nWj3PQsQEnx4xZKFCVIzdX7Oh_-9Tdo8s2cupZ-J75yQ_TaqyDTxJYWXRAbq5RVsGsBSvsbD2ES9ZxmfGBivLfWfNGKrVkXgO-WB0htAYlV1Uujetkb3j6ZbQLHsKBq5h3VH2p8L-6BdylUdj74JijnuL6CxaTGALUvjF7XBDwB5cEWG6rFWhxXXecWR8ntPfhF8GwP_17WdaFch3-AQMEPHd_vU3ibzQ5MSx5JqS1NvCEZnceRQ3ekSwgWUCjgjbRnKerK_XVxxF8d1xjzhW_hmVBfYcruo6MfXlfG8gE3BKcW-I7vnIeUInY-PvG9OsWv_DM_yVCqtyZmcpVxJeSC3Ofq_etZFlpiJGvwSdeJ_ZylJdiEHYuHjhAsz0mV5ZCumLL2gYnrRTMhTjt98jvIMF_dxzzaNorEpN2PXMVFlm5f3MsLHseCytt3bAcjjltwaGGO6QLfknLqCvWYswpC7_4gaV_BkLRFLcNenC4YDmzL_6rgeOq88q3WmW9koyap0HlEr33IIW2okEvfXShi7U-5cFayhZuUyrKXPxy179P_zYKLgGX-nsjGxuXEnKpgKAse-0MPM1sujaSlCIuUFD5IBpdurL0a1uIEOF2jNC2ca97Wvq8QIiX78ccgPeZlZFj3dOyGXw-M7FMdhhGh3HvInuPXpmK8eqohkdc5x3zP_iqvD71nxEIk9AIMmG9GXCkOSuaaSywQiH2blPoKf0j3oIVwNHKVJCZe5zY3wfk61br3Oise_OCoqWpp0EnRrr2oyvB2H_HogpYGHOZ4AN5x50bgswkh7Z-8QhtvujZ1E6Cg8oGRfj36sMiciFj_TYy8Jrd7CCICRjtMnJLjMMd79qYawOtLZrvYkxtJ8o6Ee2IWvz8vNe66mOnY0SlrdcxyWiuBj96J5xt8qAsALLUcVxIklWF_eZvHSsREWH4MNIvV5U9ko0avh7HVrFFobbH6ECH6cRPLrJ71K8PzegrpQE6xSmMw0HXeBOv5XRqvzX5ncHu75k9CGXLcIlAAgGmZvT-JilkTbJd8PDGGKQp599BiT4XfMrJ6wyv5go78uNxJnYAOSQEvM\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e719b748aff9-23337662','','','2025-03-28 21:51:03','2025-03-28 21:51:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42774',0,'cd-form-entry','',0),(42775,0,'2025-03-28 21:53:07','2025-03-28 21:53:07','{\"email\":\"andymcmahon2015@icloud.com\",\"interestedbecause\":\"0\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"1\",\"currentpostcode\":\"WA4 5DQ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gbraid=0AAAAA9_dL6uXNHqYZek5sPljy_08kH0YM&amp;gclid=Cj0KCQjwkZm_BhDrARIsAAEbX1FeGjZbkpiKLDMoL4wdTrLXeYCFNIDMyY0e_M-JisiKgzbvunY6tz0aAjjrEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4A6n5qgY0LZs31_GvW4LLJZFrOPm7dXDFUmFyv78xf0Eyz3fRBnbfRLtgqsmPip-rR6zTMTTV7LII8tskAO5VpDAm4SAlUen59d_OduqpQ2TD9ZvGe_v4_-3dx5uoaBgOHtm5ZooNlJU6FolegIjeb7QKyuE_04T90CXDAxVFMJULByYRRAuD5wVeH8scnXo-ygEDeNQZuG21eHaKcI-9m20Yv389ecoTl_N0hDRDM9ZPC7kx3VLu3QRY6xhfEAnjUr79yw9jdZUt5RO_OlrF60C6F8Dsjoq99sQt2vDbWQp8YoRG4GMHnzD1HR11ZQ6pyJVd9E_QIteeEOLVuQu4rpQt3t2LpG0PG1rL8FbfMlKP4PKVmBdu3TfgY3LA6zqJNaboBHxzkAbwbOq3O55i78XKNPOaId-ZtwxmSUATgYrIl78aJ15wQv30sT10JIWm59sQ617qMiE4r53x98xnZQgGc15tV_D5Ph13nMHzx7aH44XKG595BRnEZ48qWSz5wbfbhz3ItlV-vF-NDbSMTvrCooBAXLLNCFnjeHmlfIQfN2xF94gCkfXXDqqKbAZjcv9Q5lhoqdLry1PvBMaAd2Olui0Afi9CzW9wwb0K7Y-wKIka6W0ROuxWI85CcHvfGKwvFZD5xO5SspjIkcHXHYEQFN1iIcehIi-CJ78tob84aI2mXR9k-7ii23Imx3uDyhXRyRnjSPU9uzvu8XtkznrXjfmCI4Gv1_-RH3YaywNaEvosexqs1WAXYavpx_nLIZEo1PSJcCWghhhg-zNWIzIF7lxgFDpiKU0hnwsTL1xkhQfc2Fa6t_KzGIriu3LWI0FQ4SPn17wFmYmeUswTTVEcsx2o4m1C1Uu52CNazvN0rBI_H1HIoTqgnerBtnI50mTLX2AYc9iWkx6cMHg4qXOn8oHFE8OEKFZOhwgQrI3KKkHJbfneY38uLcL-v5s2Bfbh1NcfSv3xjYnVjUpm6nrpEOgsWBIPdSLtAEalsrVTko357eloVxPe0J5l7VIjCj0SSd-v-disNjPrIGLUlOzv_mqBq2E0IWOqf-9RcP0QWhUlSpSillwMYHqD1wXmdBMS6pnuBsMmG-yYHa1XCCfF1zEgLjvTHSZHUixU9NfueG2asPOYq3Bzri-T-_-nFBkMzXW0qKXXa40N4vCB4F7VqTld_lgQCn4THpBSR99l-GA-rYTgaQrF5HXh3nij4D9QOFZoK1l8gTEpDWC0ynhE-CZ2vsqQXb0Y2sCK1cfBsl0P51QNmpi-s_0xLFFY6joVY-fmUsg3lxf0C89kp0oSgyvVnngN8e2rzLIOrDu1boylF2RLsqpZzhTdK4-1gjQAJIYfwAoAdlwwi_sCYzCOGG2OS29WOPYjQXI8ossFXe4TBSPp89TczR0MQ8xGknhBwSTTonYbqlAEwwy8BKOLBa7R_XU9dpmoyz2mpYZkXaQqUfxbup8nv5n5SzDz2Q-udaoxUQEM8ljo7ivS0vGyvBZA98F0NRqUg5fmzFsCWfylW1W6SpTOgvccyuORJtf1Y4LH9LbBzPgvtJqR7S1gr-EPUi9hTU_44DGng6F7Lk3_6EHlys7c5zo0DFVNFtfNOv60YLulvxv_hmEuF4yykPZjXu1wZncfHoaz6jDFBCT2mYY60dzi3UxYP-NnnZpLQ0Zwjpa8EbxlyjTnBBUkgw8WwqDTfx3ytfnbG4bQRQixOIOCkUhqeE73WnBs5gA_KEp0WFkW4IS5cQLymLsMJRYkeppWUAXGOdFnnBchvLXikAJ1iXkUU9sDNNg25Yev1LaPNymLOw8Cgy_ucwOs6nbfJelVmeIFKf0-fElou8pOmbqJDUlsXW_Qmh6eK2TEN7k21Q9ADTCgGEnyVCGU_1K3T3ZE8TwHYNPjRsV5APNeZLaeOS1OQvMu_icjSibwFN2042UASZXemmpaM3BBggXghKSeMLowtbo6jpwsRQxhGz-a7pNMF7As1hwpV4BH8c2rKIYBAQ96T_wGi-d5TGhYBWe6QQ9FtTPHU_5ZsxfNak02wsgXcNctV4pB_4x6WnoaSQ5YEWJTWbZLlYoH1f_jNEbwJjoCNgegQQv7Pcq0KVsvNSy5exDmMgnPR4Hjojye5ekHKcruii71Gq8m_z5bZtkpUNlTt7fjGIpsiiXZwLX5KzyVnSbdA1WKVcqtwt5wXGaDoddIXJeLaDFol0A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e71a09ddd6b9-45711903','','','2025-03-28 21:53:07','2025-03-28 21:53:07','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42775',0,'cd-form-entry','',0),(42776,0,'2025-03-29 06:07:56','2025-03-29 06:07:56','{\"firstname\":\"Matthew\",\"lastname\":\"Green\",\"email\":\"mgpt25@outlook.com\",\"contactnumber\":\"07769271843\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwkZm_BhDrARIsAAEbX1Hhj9fsJaIVExu3BxaUc4e2MoTFKf3nWutPwcT6CbHb5V6zJw4jGysaAsayEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4uB605fWfjZ0iN575HdJIwZE18miwUFF0YkG8y0b072qJBpyfFgxf4a6m_SnRD3TphM54x247aSRPDNUNBNb7-6VS17UZQPDwUmn9vkXT6vEM7epSTU9xdQjvTjISFQBE_IWggnNubeHvn6dBzHHs3pPl8YnuKPgtWDh3h9jKC2UcsHWxIiYLx_DgqthagZy044tjCP_ByT8T5zB1y5sI0U9YbK7o-7dBUTchcH1v3iHWQGafkk2J5Hz9--Amboe2FAwYTjvBYlMf7Juq4cd22Oxs14IIbBT5iGGmQkpo8mFBiVDBF2u66UdbKLJH9M2dFq4kwfAI8lnXDiV7ZsTEwrgsO72kzMSvgS5nVHCQjLwB-B8LounCa7magVgx31ERAUfESH0lWGm2zTPLOQJqEvJ4VZOQQG1Y7cIONrsHRyTvqmdzZiD9ghsmWrT4FCMRgBnDYOPeSdxxFP26269YMyRDvjc428zcrCkEPSdiQdXLYbZNQx7XmX701R0BqdSilXUdTIjiN_UTjUbTNiW68MxsWtVLgmehxBZtqeYqi5aexNGRz8nJz8BdM3T-2HOBIXD_dZYXNDPp2yN7mQneYAuNZ8Q3oYKMSVmvfhz3YfF5hQ7mwsDmx8gJBMQppIbsXB4IE25wR9ZlYtatOnw9wff2vSos_nOkg1qF0jL2mA3grxWbtf0LyMKXP9zWmObOwrYwPDmBW3irjAINmBGMz9AdGRmxfY5AMgE-jU7vgscn7z-NFSCy2Sj9kBPkbkqV4WZLnalZKs42osEUU1naJXnamz6E0hZRsnnAm79BvqSKSkMIp8F1brt16TUf8cgvN90AoIoZ7Id1L6J0_Bq31RYK6I9c8O561bM8H9XTgCSAU0-1YfyqEl_URLJvXdREOFFq-hNHQ3mKavpBKqlZ9WW8_EfN0BvIrEjnFYGatPt5cAI6cHBh1icgL4cmv462DRYo0Dgta2tY0mVIx9UdzDYrrJ-d_0j_-a2g537_iRfnuMH3dCO3Rj4xoFypJidO6r1m8qkhqOgp9F0td5POqs_w5ZJuU5buGi-lhT2XOiEfrjXJHhcdFdO8Z5990amAAjTAMoYYd5WkzPFWfMKPqg67wqzQqMhPBNcci71j9VJU-msxW8erQe2lk3hHjrtm4BxvVSAV_LVSRDEfYM4rX3j9cY76z8lwmMjSmQ1Ti2hRZ5EM-O1_SiHv8dSg345cCVQl-OZ03NRpboLndmN1q2spLAEcWCnLYM4YS19UKcBqfXkLW5S3ZMiLBaoIAXmKH6xd2zE0IvAhFpCsWZiAaIW5QH-ljoPPv151JaxTQ5CAeuY_M_mr5MBGkpCdD2dU-ilD3276TYKhN2BMJt6f6U2xPYfehlBT-d_hYL6JXpRfcGOFINY51K3lFvk5Ap8INQIBjRDp0IjNxPUGXlSOfKyCB6XaSHYGtCVJeqoMITlBEfBchin1vvZ3QXlNql9W_XZeJUfTtDtMO9IsfqeOWqYD9myxSwPmiFaLm2fW0ski24nASrgjgGs1KUSUVB9P5nUfs3B97wf2T7exIGMIjqOXWT_ngeeu1hgU3XbmZODGX2q226fq8kE0x3UqK-GDKgOAhdwKyCxM53ZGBS0h8wS9L8H1UYbw2vKLr4Y5kzbvVqdynbxV1iSUD0-BRR3a4KTqOAQkR4cUAPoR8_IqL43RqTR9SGeo8bx2QuVoZNGo-UE0gE8X4Yh7EzS6kK2NgeB9Av925UcOtRzSgTBR80y4q_OcX2Qj11f6A6CBY69tkrjh3WzF5CGEtXJWC_oisLuSpI5pTHvPp48OrYMjn83igiCx8LA5u-YAcynRAz6AweNP1m7X_tBLBiw-lF8E5gfzNGQxgxpkyiQafhNnwwd3lcPAQkJCNpn-nYJKNfreDAlJ0pIBGvJXEAX9g1gIJ6-pxYe9tkRHpZp_r47l01WpXSShcKa4cyCrDZL4bNbSBKdmcYbstGyL3gCTpnqMEWDygMaH2a6hYp2rX3m6zPSOzyvvYdGHWsOZKSOwpxnRcfIZSL34Tmzv_SzgF5tsxM7i3wS2NbxvKDNGl1JPyxrr0lcbfdxGvE1oTZGQPKUdOtrl_etNu2tlJdlaBmCAZZ9jTnwb4zDzy-ekboR90EFMdzzT4K6jhvrXM5MBMZpel1dbohZRYXpfP1IzWgckITG8IvgDx_nT-4ft_u5pSI3jDlLtWsTNWjOdeHHcrXo-QrspSP1cm8MES_ey0U8Z5zkYx1B5USFuQWR_cR_qjOcspHA5s92pRvjvjetR5-cPAizDIOW3qz3jBh5L46qr4Dnlrmur8YbZoqJtBmWJAIA1KWDumkxh_VTgcslYowMrXElYx46nu5FItF9wfjwws5D6a\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e78e1c981841-38535535','','','2025-03-29 06:07:56','2025-03-29 06:07:56','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42776',0,'cd-form-entry','',0),(42777,0,'2025-03-29 11:48:05','0000-00-00 00:00:00','{\"firstname\":\"Melissa\",\"lastname\":\"Hersom\",\"email\":\"melissarhersom@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/?_gl=118dyd26_gcl_auMzc3ODQzMTIxLjE3NDAyMjM5NzU._gaMTIzMzk1MzEuMTc0MDIyMzk3MQ.._ga_7C6N0WZ5Q3MTc0MzI0MjI4NC41LjEuMTc0MzI0ODEwOC4xMy4wLjA.\",\"recaptcha_token\":\"03AFcWeA5pMfcf6Xb6XmXsDGhqw8qXTKxNWoxnKCCXDm1B92Y4sllO_1_zGbrCB6lTwrcb6IoHcIhmWpnBsb4tIi8FdD9eDVfgV30f-TRcZPXSY64DjSQBtQW0S0cw_HjGCBIq-f8RulL8n3yl2y7TnXlh5oH07e0IAg3BV0p0iNaBjA_egkDjKviQzJmGevdkaJLgc7yDLtiXrf27tGpAZHpWApiyceESnL-ySWOc4CGPd3DV7fJOffvYYdwKGiK4Kdu7kZn_XLMuMGxCnvgs0o016cNQzs1lBWovyMQn0SUSRIb_M34OgR-40MYmYKfTJhKsEWEkyV3H1EywZhMoaaDP7QAA81eZJrLFc5VVZiqW2ga7tN9ypuueMFH8HylEIL8zjU9FAYZAkgURNvk9iK3fMp4YPf49hNM3C60npqQs0xyASx5TYPE_xZx950uIsmlyXn4vLS6KutiTMZVCcJ-m1HUWu6F5YIcnaB8a1-y5G5PHIHZxeX7MwW8bVL7Ds2oP2rT2vMcGxELZH4XaF_Oyo8k2aVTpx-ExPggoUL6WMoCVGQ7O5jp98ALDSEqk50x7SCvd6w-Xzso1cIth8MAKI6ap9UUea650hk3KZBAFABpJ-M42JkDLlK89k33rw3UFtnlKlxupKbW21BPKuwudPq6R-VN2Ccavf3-LeppZ2bpXHIOk9KQCR_b4XBsFHGWrSPeVU3z6oFdyod1xEGMSODaIlFt7GrygPH9dAV8FPa71GmgY7dEQWqJJ4WCdR4pRyCsORvFW8sHQIMPNOzYdgec_xk77eZSdeuvV7w9NGTxvZ55laCeom_szspfgEH9LEq6YRA2rKHY0LN2OR7qZ2K5OM_AhVHeYQiGDIdQEvRaltSpWSxVDTaAJCywxUN9vTZvfh9-NPMIPUyAf1z_TEg1IaLqMsu7zZkV-MaQeBA03oEU18dngH1K2qnFGR1cbqPSNMox35oSz0twzC5v4CSMhDGA-XZVZaFa5p77c2I0gnDhSafVHSCeU2VMAl_MzLTUbRFJ2NNiun2aIo7y_vvNBtW_WNDBDV8tH8V9JyHKDnEx7jVZRXzqMdfedOtEglWm1V64neAbDGCaMKMwe59OOSceqQeWvNW8V7rtvLLFc_Sx7brNHy9rGp0AQpJ0P9wmSDm_vkZvy_wpYq5QQ4nsL0DIldOi6ktogWtjHi9OD5jJwyX70nWSk3qOR9kATeLNRwu1mPHq73YO8pfKt52h-dMTVHyGBC4KdXUsq3bDVDrz3bI4_7xkN9ssV7BJhfsN8JJf9WzP5S8s6oNmT8iJa4JA5T9o4f87x_b0Wy4MFYhpBtfYWkeBRNP65Xhl62MPA5m4FxTkSpFsGytRNOYZAgnNYYvVZHoGh0Ox55kUzlhXiBtuVOM2ub8Fd1r86RxKvig3mZthsDoYgp_1WZxMJPGGdbXZHorgF92SG4EMUmjCKQ3DFVsB3RJVgf6-NLLHhjIj4rZKVOPcHPnJdtMrMV1O0Xwncx1QQEeVwypJr9VKh9nvKjaLsWU1vzXjlXset_cir4QUzoX3YytKNbGBrd5srwO0O9ptJbnQR2blGS5THKk5nENLbzjM01F2NDYrsgEmwrBQL92kuA4xmz4WvAPE82QYkwmZ5XYufL4MALLex_cDtxBwPU9xJp4DdfIDBkaf4mG7of-sx-wEqlhTCHNcoJPl6Akacyb0yMwAGek0sdwaoxeY__CBV-eUTDEMO3Ld7n9TpN42EQuKHOrYC4F5rrcxnatylHUAWgm6evkjHdyDSAwAqtwwhMV8-BFKGhMNF_k09P_TxTPulrj0Q9VKDaSjOb6EVSWOeAzpf5NdISml0k6KUdy8A8pqiJr5wdadJQwBUGTKGS6-uoUdJ-T1-_yoK_H-htMRuahlgujaYS_AJJDlgprKUEEJ3C1KRqbp9n8nK1fLoBKQKEXOxt7zh1-jdzd2xs6aXSb8jbfx9tvBWuYEMVmCXOypKSVVvBAWpJNm286mRvv1VKtp2RFxwi8iykE75itQkpk12sGA7X10d88lKVyqpaBrN08-iGcYIobTvETZvW0exSy_v8KrsuSFxX1PqJq5MVEWkl9hV_mZQyxpLKLJA9GF2DiPPCI4SFiEQmIOn1K7fNGGM3bV12GYcBltCb3XpjZOVidQeI65ezWUUVX9O83FtIeYTIt0oXafcx4EMQkUrBHxFEL-vNNnbFqsKtM1p0X4sdgOL5B7Ky3u5aW-A_ex5FbgzlBDRCgBorMo7SiHG450k3L_TCQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e7ddf5d185b6-41951143','','','2025-03-29 11:48:05','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42777',0,'cd-form-entry','',0),(42778,0,'2025-03-29 13:44:23','0000-00-00 00:00:00','{\"firstname\":\"Charles\",\"lastname\":\"Silva\",\"email\":\"eliando@msn.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA5LUMtCei-tgxSgHGtvERI54JkAeq0oItsGyz3wDBsbOeuR5FrnTW7x77VDiOvlOoCgFnP5ef7qbps0zfV1SKL027zjMx1bv3fd2Hb0AWwi91Azw-P57kzTzzvf9uY6Z3lNge_HwtEND3fy4lFvPTrtvC7AsW6hcDmE3h5jeJOA1oVvEPhi8V94ak30BGNR0dTfXb_A2stOrdot2aZRhk8o8OzNO0iH8xbLZAYDZKmN42JWge4OdwKpB-GaAsr06NTrnmwd18wCQVDDbR-64zbn_u3R_07cex1Gf5cbNc5fxw8kavHjBJuMhQeltH71Krdc-Wdq1CiIPRttTy3qpaE-hofL5C1dC7Ml23sCCHAjGCkNdHazWJJxHwygpWEZJmiNuduOVaXprhr4JH2fw0HX8GjfVvcLJqMwLhnSVPlInXBnHoRE0SDXUppwEYwD-7GVwPjAvoCAtwljBVdwhnTc8yQTIxoo91bKUpiRpsFNEhAI-1HrfTlbx1OECmx6n-qfluN47uPpNArogfPxG23KNHi3Q_jl4d6UCiKS1Jq2sDMhKGImOWyklu2nPDaovPAuTDZsxJbZk61JMjsM-XfU-IgV3fPsrqs8qc10uk9AMBCgDuzfaBdnPtXgHlpbHBrM82hrTwGQRzhrjrtaH6rqk5qqB4ZfPwqa1qYBcQYlQ7RnBs69dvhlYV33KRB4aLYUBUOD56vG7f0zpcCm41Ouyrc8Iih5xV-j1fK7EWWpYNKTwrdCfLwRlc2j9G5JtJPGrwOGK6UzIxHH3mGuKK4e_yddkh0nrFMqM97SbzTvoaRH8Qb1TG9RZXss7qRUhAGXGcftF84wkeV4mt_ZdmOvFWb8rRG7o7UiEx3YQGwxvmRiD_y_1N0WuKR39aHB8ypfU73Z3qlYQOs6bD0jtxZ9FayVxlMQTmCqvWtr130wUOxtlIoTdKCaUBta_hUT1QwZjrIZGBxU3lkQDpfuJLClq-TPpYvsa_evHbqduixwzOxnRsSvHH8Mq1KVRJOip_ekuxKeM8jegJYCPGxaO2_rx3umZ7qwJ5CWm5CPxDld4Sjpklu2ssPdpSUUr1oPH9feQ_m-2L2uIoFyl-Q8-shg1qm8Pvxwu8bHkB_bVA8uZrc8GnkK2FfKRkCVkEiMUYKOvzLsWn-QPl6snNKYZq7joSOak3WpCESsYN7_KHR1yVWxQTo0y-4Ka2p8EPFX2_L5AkOZItyXOHkVQrw3uzaMcWgs7ikSCChPTHu1fIJQggE4_Zkxo9M7adbFWfmy1CFyAMwTl50xWRP_Hn_6xJMkBBp4-Hl9RjDvXHoPH4mjzJLxodfVz65Q8qZQeGRZCujCx7dGQKGbUu8qGUjdn8INoUbaB4agG663oBw9x9hKQpFd9D74FGcAZeqtO_2SfFHIEYedkYRD4wqkR2-M7Rdueh8eiIpyrEVlKHUwBkvQZAI1wHJx8_gT8SXgqxXpfzuBzGLExz1YBmvxASeXBaxAseO-pRRSXbThh8OG18fUnFGt5O7rd8tFLDwn-V78RcO2BgvzX5TezRZ9r2nSsQ1gYYBtZIXUOSwAibE5ZKJSwkL_SCeAvMu9w9wDzT0_LI5pQE7RBd71idI9m7IOIxX9FqgRTqI_ujCqmzAj04odWsXYJt9H2KKRVZfwgf4VnmbL68enG43etb_qCb2CfbjxQl-E5gOOgccKtRyqVRuwmMLBEgo3cpD5RG3SWEr9AX4zk2Qff214_Pri9Fg8SNfOeI7wgrPhU--5NHwNKp0kASj8d4-KZJwqGgNntFOGUX9xKmhNdQX69kGVBbmJiD7Sxfw3sr5GWlB9ARIRxvZtSfcmBzdFCoLd05Z4TNZtx8YOQn301qGIEx1xVax93nERsfLaZt1WP1D_0raHVIBqr76jXPS3E8uvz0_TBEcKhPhmidXa6PHhO5OndQ0QQexwPZKBv7kurrC1DaQV8YQuPUiw3CGfn-MacqZu08-9D18AvrDc0S8rdSpqghpQ_U4LQv0Bsl42jnaGXRMIHQDpAZwZaPF2lL-c5_ByD3fEeET_ex9JMdWvQMqxy8Mi0SiqejczZotzkIw_EwzvZt5TwnTt4OvXJbSqMm1lk5AbjljhFcQd75Qo54Q9EbM6NbxZktsge2zvIwW8rC5qsxlXSVK7dgeeP9oyI-yg12NtaTOTKnwv\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e7f9374e2123-17367034','','','2025-03-29 13:44:23','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42778',0,'cd-form-entry','',0),(42779,0,'2025-03-29 16:56:08','2025-03-29 16:56:08','{\"firstname\":\"Lucy\",\"lastname\":\"Evans\",\"email\":\"lucy.evans613@hotmail.com\",\"contactnumber\":\"07817444161\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6suWpdYBFT9chm3XVageEdr0&amp;gclid=Cj0KCQjwtJ6_BhDWARIsAGanmKf-UM4n03ej9LUZm2_xTSHsZ4ERKN1w2bpJgvydNBOaMMEwit0R_HoaAoJHEALw_wcB\",\"recaptcha_token\":\"03AFcWeA45sUDFkjFSuSuF50HwfAql-O9EtX213JxhA4cXWXl-o_tcGtLPQ9jo3Rfnrtvn-5RfCni0rPBSeT01Hx3AKf63XQgImDA0TlDP_X7970XQ0k3QKsYZPLNkPPNObVWFJDaWrs4s5EFppLROZ74tSkIDu1_betu_RjagolcFo1yHLFZw5Rpi17YjJQzrZHkZCLZHQDHVI7nOJzWrxsScwqIjsJCy1woNLd2rnLt2o8E6cK_LOWrlN5ILU65iplpyeTo68zMmC0JrQpxY_6ZU3VSwZXI1-KpLQzbiH0w3h51xHQP0s4EStOVIlWysE5sYlZNB7YgeV7dUfrIXP4nsAFUi9VwnNveKf-oygTr9BF3LjECQONqqRXWprrG-DUAkJFVIfjgr6oz9xxSgMeEyCuD9nNHQiJ8FJDyNdlHUzKJ5Dl6qEoFfhHk86Req7YxgCObFbE2pfNpMIaIfAl0Wcyl0DpYK5UgvOJuBQvsdIJ0Cidq_kRLeXbtosFvYmevvnBr0Sti2Jf5MhfVm7xzgQQCV8sHfAQHi2k85LFuL7kJatBWD4oGT7R_a18Gzn3K75BcB7fTLM6M0d5KBcm9h_v-FJtYVnE_SNzZa7xiKGODe3_5Yn0503GTF3F4amMgah9px4v8im0KULexJFWjORAfW-wplucYTqqGtL8QEZHkMYpizu3pnOBXQ17g7_AG-2GQ1P_v2oTd5gT9YUjvknILOC3LiS5c7MQCBzMjDZV75bfxslxU35ZKcOPBGCfmsjScldyFPVQc4iGUI4FjVbLIItT6CV5XB7SGotB9FNupFKYlBKCXmqyo7eTrhvOvY7LBKb4SEuZbOTW6qIb2LoC-G2wkRWe6JOmtJqMYNVICKQw7q4UtFvrb1s-bySpcAIrX4Dc_vmYP5dwCNsIVfdPH63OaEdidcTE-3Cu5wEIUyYCtAHFwrz5b7ITwYlCzTMXlu1EC_Z5o-INzWt5miH6aCPfba1JqEkyuyAD5a6pJKDMS0F2JjU0O4PZ3_VHzN0t75lH0cPyFSDEgLpLTtu9NSFx1xDxBE5b9SMUfE0hDesJYpbQyGanC1SsYIx0vP18386B8LvIS5_s5wNSaPM2GDaiBymy4KT-J8NDeJYmDUic9lP31t4HLZjBOy-XlY0eZTxbd4j4ZKVNC7fUI7TLnA3ULgjIHCZDmhZcJI8SSGhQBmV72PAdTpJQfX03sNDFMESDOBC3E6jdKxSQLfpA2wfSQgLsX9VMVEx85Z-CWVBrqDtVkNRt2ljHUB9MJBIfMInMXgd6S30VuUUUALiMLKhtjhCd4dVbupQtbTLyMySp94yVj2tbJNhwZdvPBmYABXTA3B-If10CWVRvxoelaXezxGANPVKMyKR7MOmN4-fXFhYgq9-B7JoKZBOrKc2GLqx_suawAFOvVkKt6SUquV6dtz0IrsXtYLvVnTzmj7Y1uChqnSC2S8EDEKyy7J9RJpWqn_Ytn0fyVD9xa1jwreiL4uK8jvVo4I0ORe4Ne0BHBcGu6wi6ktApLeg8VyL0Kgqcx2Xrc8OwMuWa9qvaGS9RTc2aMoCmFV3KqhecOfza9X0jP5_m-NvPDTvMSzltQU_VOK4Kbw754EQGFeW6vT90yvDjkbzMzhaLpQJdBzZ6rZnQV95H64agMIHrVPN3Bv4fOT6afPqVShZW3VMmX4sPcQh1obtI6W_F2LH33hXpQld_mkpGbbHStEyZierQ-dI1CjdrPBofMHmBJS1tD601Udyza3eXJDrpqQIkSrVU8l2DTkg0Z-pP8q6nqzJbClGkaqUBM4IL-01GKGCe-qGjzBY1FVkpy42KFolyqQntV9WHJWIV75dM_S32877qwsYkgp9q-2zne9ayRKGGG4dHPNqkM2jL7ZzgdVcSCC8uTrWd20kxyve2zUq3MCTMELyrYnv-k4IwnriM73-0CA56ocmfVrrmWI-UGyKCqrofSPrbjgzgKn8Cdm_VA4IJnrck9ksyTFVFGPNnU5VLvOHzRGILm2cWhIcKzhtMOVPrEaqftxHGtSCWtA6LpYGPDEcwu1xO8OkM9ytKxM5Ulcleh0yg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e826168ca789-88626515','','','2025-03-29 16:56:08','2025-03-29 16:56:08','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42779',0,'cd-form-entry','',0),(42780,0,'2025-03-29 16:57:29','2025-03-29 16:57:29','{\"email\":\"lucy.evans613@hotmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"4\",\"currentpostcode\":\"SY13 2EG\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6suWpdYBFT9chm3XVageEdr0&amp;gclid=Cj0KCQjwtJ6_BhDWARIsAGanmKf-UM4n03ej9LUZm2_xTSHsZ4ERKN1w2bpJgvydNBOaMMEwit0R_HoaAoJHEALw_wcB\",\"recaptcha_token\":\"03AFcWeA65jn1SL8VVj_JWSW5cVIlTJF55FExneXz24vHYUQ0ejuklvIWYLfrKWzWSlQmT0cGG_ePJXiIL4eIoVlqxJmPW0bDe0smP4z6wZ4p_5WOoxdtGLQwnW090FIygHp2fbWBykaSeKergfMNV57Bbz93AWeXZeOnxgD1XMuv4a-3oW6rImNsczNn0GNjEpe6teExhAaUtFO3RhfNcDoRqzwNGTXo9ejR0AAKMI11xcQ8QNOJzTv8EhcGcQjjNp-kZQ-IwqsPVwAmNtgdK5U8rsa2-4x2Wf7C5CXr_tbHMHbFZSomc_Jy4S_18xQStxoqxsm8Q0S060HhxOkzmqhihKLr0eVkSoiGrb7JWz3imTkmtBuKWOipIR3m_V58tAAzIcyH-Eh6wN0fPjP-2MhlMlIR6hZrrjIJ3tGJOFPjac1Hs2ulPtpHZyRtv8D1xtDtXzugxlg0CItTOFaciihzQagW7zje9VNcpQ4T1HzRWv6TWi-LgxPw688JpdZODPeiZJkjvn0hr-5thbPKe1nDrBRZKUcUQtSXV4ZYurky0EECR5DhUvq3nDknEbz-9tqILJISqv6x2P0HLsw17uY4wiImMjoR6miAD3YSheNKLlNj8JXt9pJU7SVcL1sBig4KJv7wTo6SRaWC7KZrChWw5TuzpI6ftg_lBJ-VgDofnQNd4PUmnk1dx4jx0WbUB14YIUtNErDa5UsIZpZoUkvJMR64zzuRu3TM7t__J6SZbptEClWE9pmB6uDNH9UB-nR6e_15WPjrdDJn_IgvoaGWB5SMJtZ9_jAEL5aEII8-0qUST8zSqtehO9IIvKjYMzfYCz5NO4CLXhqNs_SH9g4fvjoA4TNlfpQZl7U4yCFS5mv3q3oBYO-5VaYC2-9rVnjg6p8OUyouxxFnlMMGq9t9p_-7x8YrpiDOGhkVTvabiqDJJG-TstQRYiuu3KpipZsT-0HYW7VWsqBYeM0mNOE37TGU-N9OdXG6jJrJ1Pf3o8lngi29FD66Z6V_aQd7rbcnIYWWOLc2KrolAJn3GbSWh2tKr13y21v5fMp7MeCBNa-CF9GczWu_bb9vmNnyc9LlGUA-UDMJYBpyu2iZa49bSX4tnZPUfCoNGTZvuJ4kZmpC1B1A9jw2a91xX-cllJ3njDzLjABHKMn3x-bx9aL-7615Sn3-bVAj27BdK2fEUHh8KxYrb-yXZfiTbhQbtlrvIXCQ5dhszqsAvH8E99ukpZCjEMOEsKLcw36CLk7yvRWMK7fMRq9FPgwo5gFOlCN89W3gsNth4Bnk8VVQOC83Vii7ESjW6Dg_CJptpODxjT7pO5ADP4ppIrSnWyLU4FBVosByjgaw_KjSvgpoLW-PzU0R0FS2rvU7ux2U8-QU5qO67okjNplYB9WtEZdm9clRlZIqawYJIko98Gpr6ysCpKIp9DQjJdFQ0OeRgBmnKNlhu4HORJz5e7b-x7zrUKH0Oxapg4EKXvqC-Td7uiy1d4vtcgUjeMlX0glhgTDlkRhSioaDw6UdxatA9Vrf_Et3HsRBC9BAcVudirBMmAe-sLj97aD6Gxrqjff-_Sspvqtw3L942ObWIZspF-ff08lRZuJP-XU-D8asfrF8NR3kMeGA4rCMieiEeJdqBYWo0GE16vN2vfrZg73wqua4mmxElBs09S-k5_tB2ZcAPK3Ndv6DuuCUZDeJ4GaeW51np4bB87sI6xvghUYFYkvk12-XXIslrLkYlkwpJJmtIf1-IOuOaMwJXMqGxYj0rrTTt6Rxo1glwG40Mto9kXCetEpVzS4AxZUbFvWgWh6Q4A4cbwmJbPo1gCUmVJU2Sd2g7Rd6qBfjnNf9SJON8utCfKDRDbgpfMQXhqBS_J_Rks-wZmDH3sjjG_YQPXN8REa2diMkEJsXaVfCX7DhWDxeKs3yDeYp1QJiP-HwRwJ8hcGHHLnEIWfQbNXq1dlGOOFo_2hyq4DglP8jhCcV9QKoyzXdNKsp3LHpAPRlVTRaBR8DLYDOlAkEBbFsFAfQM3cQLjRwg2wtzjVX0xi2N9U0RiDa8soG0GqqrGF_CuF4QMVj_aDL1czw74w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e8265e577332-22667781','','','2025-03-29 16:57:29','2025-03-29 16:57:29','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42780',0,'cd-form-entry','',0),(42781,0,'2025-03-29 19:21:52','0000-00-00 00:00:00','{\"firstname\":\"Y\",\"lastname\":\"G\",\"email\":\"cessnoire@outlook.com\",\"contactnumber\":\"\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA4zvIm0j2yiBU5cute20w5lO0pwRkeTrydFobKCxKia3DMjxqJcpDEigmeAQ8PRZoDtLmOapFwIfYrqr5R_W-E7wKcHRCDnVgbOQYOUXb4TMlTpV7yJtcStMJELjMuf2azpxJAXOIJRrBCb3dR8AbHKFEKkWQZmS76pxfgr5f26prdwpStc4OgiZYw1bWYwj2tkVjLntEKIgnPEtGs9HBCK6yrYWzEWSsiBsiNoV1HaVOuzP5yQuL1x-98TDkPZNwg6WikI3iR3y810CmPIbDMXPmkbXFZ7Pavmh6QHnop4nFjAc0_GzaAG7qjemHDUD2vzWt84dYgIHNClH_lX00r6sfTezQNsnFurJ4xPQWq3AV8hd2JYt6mThHZrp0Yj350_e0JsiBxZOpziUWbQijJSd9AeU0HQD4LZol7Dzj2rjMLUDqby5p0gfrrOf4wHS__bj5G8mp-B1W1Q136KzhiWE16YhfdHS4phBugvFQlLjXCM4isjkBqBU82gMXGwPZkPcnT3ZZnqGMf0vWF1pjEGuhuJFwH9cF-q5Hocls21Lco4seQbzfDjDPSOk726y69E6rgRYYUPyHbkdwhOTMc-DBHSksHBMhJVCOg_9rOqwUCBAaeQhvGQJ-mUpuO_ke8JltIMaJi3Q4U0gN22fXL-n-cZV4Vu1hNrXE1V6wDudLONZ3TiXB0flKl49T1KmabVoug_0u3h0Fb6ZmTXyJiHZ7J8jcMu-hT2p9gfdcB0I7b75Sol_R-v6uzEVsWRwl5j-gSmZH_iA_Bm0c-89t2KTsuvPH4MYESQ38StGPkICmZRF-hBsTQl734Vilx623TN7OOdyRQQ-Hd-cF_Pb8m59L-zqelYh9EVi94rZlik9TARusrcQk3Fbhwho2uG3Bab3Ye-yCrC4BJ7kiiXN69A14MzCwqEeSLRwT7ZW89UdVo56JrE-A3mn6Yw4OFTPpVuM5qecya8t5LBCLH7_GTi-8tSzXpM3qr-zzs4lzvsmdzNctE7lPtpPAwK8T3A7p0Ozjj40YDzj7Xaa4lH4LCBntMr7Lv2trcDr2oWRcRmTfqfaZ8zZp9ppvNyAoZQgNh_G-yoA5cRT7HZycG2J2qSfS9adYNDVbQiklTBpG9HJPHGYaj2GVIQNrV8waMwuj12gzZcxVS2VFx7jmXQDHNh6k0_Gtuaw9xDrhN-o638qOQ9x7jeTye8FlKv5IKgsQcFnM86BiKOHmuqBzBYXs6u2bT1dKuvKOhPmNMIOH_S4JuoJdj98aQ6F1lsoxywvKuyV_19rQjlGhwj1O7NPNAaHm9h_ZGZFXclk5H_3MLvaLt7uOoEdviwxyfoxukt5JUWnrcjdCU5Kxjeo-uSSorrst84hk0Q_QGmHZekb4uFgH1zz0HsAOqALmshFAfFkqPZKRc6JJ-RjB8y7ZFSAIqcg9rnGJ3wOGfBuaRGNOLA5-1w-oiTt7pFKiCJQ8-ZodK4G6HfafB_qfE3Pqq_W_MGKA0TGhtbdjfSZ-37IWazHDk0iTNtVYI024o_GhOITkvE9Vzbafdch2r-SXLDNpZwY7Qq21ItkQT8FnSyGqJkOZoqRhBeqHpgmsX0fhbcQ-vgja7u8PVY0nSdtNnF93P-bigkhoV_b2dvLdIc11jt-nyuluUcWsHOvf2CH-hOoDqxIKtop6hWVmPv2BGgFTHZ3fuT4yVuka5FlfjdULJkM98Y7lYaS6K_kXKq6Bi8bzxYT5Uq4i5RnGhKpHVSL0Xwb6_y5KiXKrZDTWYnDPbkM7tTw1dWYp38WZLA4qNbl8XWdXfu9SEgIIMHADN6WPVPOQVmBcf14FqcwwrzJQua1CJfuo_dxrSzHg-P5mpvd-Ktdn_lV2LUEmNSi2kh_Z7_326VMFoHJjEIEiXrr9qDp8OvIJcNM8wHK2ug31Xa710eybYzhRIu9yZVNtJSXCEod6FedlAajkfafG-joqOOSJ-52lGUMvUCcetS66lghmzOkXvIYl1p1lt7Z33ssgbHzqiMRA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e84850c21611-57657445','','','2025-03-29 19:21:52','0000-00-00 00:00:00','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42781',0,'cd-form-entry','',0),(42782,0,'2025-03-29 21:27:37','0000-00-00 00:00:00','{\"firstname\":\"Aram\",\"lastname\":\"Nadri\",\"email\":\"Polaksen13@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4Ol7ncoHnoXl16baAEsCPtzNPPoX-lM8uKZhGOL-ZsiD8HdrL9R_ORvRn1Hp3mG34cLkUqpW7Y7F7deHKNNl1dCSNmGKn3j7xIKvKGGcdkK3WeRluwSNcR56A8fDxwFFEM1Ft3LF36NclUuFcLMezf0Hmd_2iHT315obyPO6aSPLpEtNbwJMAkI2RZXnyhCtkQYFj8MqppA0tNHzH53pWcM2LnwRNX8XPM_VNv0MFyf6w1lKBhxxB7hU5KGtn8ThVA8wNHzYBZaGSD994aZstx9GBbThHpX_JDzw0NpBBlGTCBRsmXvrJ4qNF3KuKEvEAUmVPDfKsf7hFJ5d_FUHJILUjmjaGX44J76CJQCODn6Mon12LItm0QhJ0gv_c3IiESK0Lq8FwjLQeuItwjJnJ_wgxMusfoGAEmYI8p9VyJfYfS6JICPrm24s-80xCyYuLHRHlP2zn0sEEL9GEDfIlku0HW9f86J8RpFG2vHaD90ft1chHUhXuUQgwS0CY6WlM5iLYCMJugoERzk0JUfDISBSYdRyrFwPrNr6OI6v5zmfBzqUfXaiiDcP_TGroJW8FQrFZmvSoXuwe93o1OGIVdG7JteBD5pyaWCHwvRyFKlc5iQL08Ol1JqTOwPrvRSwNZ4WzQJ8GtatYC9677C3IOgd_xNllshLOfq3ARk_UVxihymnKxIns1PMzSf4TbEKALBLYfJz3STKlf7TJCS41ksyN3ttMpLCNetsu3kjYTKGlf1CyRlonuerEpyb3pwr7R0syAWH9yzCrHRePN6xcfAwdF_mTu6zJRxUnFXd9hklee0SueeCq1i7fKGuqGZ3o8QFSWvqm83c7bxKg05_95Il4wCNPNVlZmL_9TjJVZj7w4spPHaJDkl2rfIU5mKoIPg61QPHd4--hxtpaRUcLhxRH747cmWZXx7rdc-iq6wn4J9X2mjnKPo9jXdJG23pbA4bMiIx7KWMjhhiZ4CUdLBGEHJvNjgbyt7FE8arNduigNcUA8aRNKlkeJH72SEpFAzMM-0uRO7Q4guCVIQ1s_w3dSkGTsjIjx7CJNwT-suJDzz7DqJR_FVXaU07mE5cKqdfWaTkef58xh5r0ZM-RngT_PcyqLO34JtjLfqEwjWVZwEfKevRS2xFrC3ELB90B1wqeJWRUpAJBTgUTY0ck3tnuQWsw-p23WDaad7rv8FLLvzAVOqKwlIbzQRj-OwSLdGVGFJhZYGMCN89QxBK8YYcfTHuq-F8Z7ZMZW9Qh0CD_UFDF-9ET_QvXx0fLBMGRfYim5rD-idwefAU0MpJVO5Yb5Fzb_OYLB-36_H4O5I8TKWaq6Tfp0Fn5Ihs-1WEq-K-WtOD1ZJ01HOe_PnpmKSC5GLidzwBJ26KM1paOIthJcgN4L4I3nQq3HaMq5Ptfh-sc4JRvphkcBZSgJ3m93sRc3L6dmYtEIDjU-4AJoeh_2Ajzj5mAU7KBJueEmRQv5TEUXqMrm9EV3TXaDIqJvbYzgVmq9Iv2Fzb53dm94dszSInp15ToMUjDQneLJG5Xl7kmDBHBhPjGr3cWhCmiRQWe-q7HnOLGdedmFlYaNykczssAtj456Y-cHvXDJT8e8yl4yB6FR6INcrWac6_m-G7aSFQeYuPDnAGrJgV1NNV8uAtXh_Cn-vDgQi9jmkig-cSyL8Y4P3XBvPP1NvxcJ-gQ1eHOFfXjnhwxZf4hp80Wk_IS5NIO71BfsTQryGNiQb00WK5GxYOJgBhEWPSwVAGXWaFxpuLpfGxHvllS1uwtNHT4JTMQ_X9jnf5x9H5gxCGOPsmoQ9oMuw6-Uo1fcN5wDADyFU5Mk_Xw1rq2VRJuZO_jTAQkk9g5eMidA38eQ2kICodRwkcaud54IJYikCeuL_B86KCQRsWXWpXNhTGqfsFFzrKx2VBFzyy1n-7TlQdUzJ4RxcA_ptOGAseoyLcQ0_tlYgho0fa4XDUbCcf19rpXP2kl2EQH-G-qgjIl3OtJL_agJ08CbZ_Ss15mD2XFilBiLeupMPn412dbSlkMYK3hnftbHveQnAUUIvKgMFPI6\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e865c96e34a8-20957524','','','2025-03-29 21:27:37','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42782',0,'cd-form-entry','',0),(42783,0,'2025-03-29 21:29:19','2025-03-29 21:29:19','{\"firstname\":\"Aram\",\"lastname\":\"Nadri\",\"email\":\"Polaksen13@gmail.com\",\"contactnumber\":\"29731725\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA71CaHRLEpxNh-UGVWyzEyRQbVTOthuU5emeb733_mopwDsZA_WTghKRxEHggU9UMjEMqIt6eHS2bMPUqVE4N7Q0LI7s8RXqShR7YBl-AszGTrG8UqAb1ECT9s9k8PIbcilyrRArmUnYtehJoVKnQw203MnfCor9e0roq71lC84f2CI4I1BElQ-tZILI93kCL56Y7ndvGvOaWD4O6sbAeLK_zcQsYTVfYXJo1L52E_d0hshhs9KZncUxpdddro13zdwuYEYw6i4snap_n2qF8vYJfdV9q8oSQOv2Is0NX8WO9ssJwFNIWasVTOaMGmZHORgWAnh-axszoKatmUQL2ZKHP9Ij-iKhkojFBJB1EQNqGO_BkV_8KY9qfDhYF_wf6s3VPb5MYDu_KFXz73VXwucf0bCVtVY6X9EjWIJP9ICm3yY3qixyfSvhu8llBSIVW3gW9s2WblqOEmxPrWV-ybjhE8TY1mRxps2i-V2C-VeKDC7d-S2yh6qQHnuLNlvBcmltAZwJBVEydKnJMJ9elr0VoHZcp34b-RFIuyKcdC9vK2WztdiPi18PsCMEl3VllJT4YioTHRz-ZbMFpn8d6Jlb1UTtcwkpbxi1mFQSX_Cu4C6jb0sxB3hn403eQyfdRvXHCUycjrj7-_TNPQgTm5vnG1PnMkUvv3i3EZ9FYT4tl1qZLhpNnK4XfD7hDxEYD3wer2j-Q3SvZAOCJhq1AN0YKV_2BXmGzg4Rq3UpdCI8intbgNSFUr9j-PIHlnML3_rx9c6e9znd-3hqBAxo8GrWFVSZTwasDc6btwNJHn46H4VGkY6t3V6nat1TqHwrLZp3IdwIuCGdG9kDx6yWz3_uC43lfAnAxKhrGp0fdj7bwqs6r3kcSCE0Ymt6e8SyW98ROX_Om4_7z0wYa-eDYpVH_eYSsN1rTY3e3MZNyMNMDH5NDqMtqwY6exah3yoY2nvGR84OQpfiAuckzohUuMttomNcJtr0baEZttsA45fzC3lv8z2fmNWNqECNFX7v-BlXYoSoNDvc0t4IMPUAsy0gYjvdZjtY6FfpzPKYQiy4CJQn8JKcvgn7uHTN0PeRJD3zTgNWhGMo506YnZEKQQVEQ9OhA6qysz4FTeTkeNkf9qZtBlJbwetlZ2A9eX5aI_KQW1ESdTONIPVK-m6NqfYXY5Bw2ewS_CTE8NAXZksPUtwj14Eh6UDRhiQ_k7Wexr3v341R2xQxEYPBWlELpGFFbQv_AaW35VzXinRXyoA7VQxpCujkstI7SIZRsLYr46EiNAExxrLaWII5WDjOKxFjsRMablgMH1CoRT_6ciUuTfLSlAHLc5spyuQax8EWL1imOvCqsShYPaYV-6_LsahMBMEB_5xybtyoI9I6eenuH2qOnsxmeIMSSj8I0ufzudGkEhZDXkZa5EQVh5W0Lhztsn4QmG_OnXeGMqDj5ltxQTGFE36AYoWa3yAic89ppUHgGG4wqjUd6BSgEkzEVlLeII1Q4KM3kRsLtdn8pOcQJ67EARMzSOuBuQXHjYLgoRgCPFNg-3rAVhCwHLtkr4AwTWAGAD8lVegGWum8Lwu5Cr06Jhh8KtwLd1ew_fl-LI8BNlfPGmCmsA2uMt4X8paz9jItZmuuuZeGn-Vi4AsmSMZhKbzuKCT4m8MdKQaBkIjuhylybOmbwJVhdC5-e5flfQ7gx3TWTfuBNAAIMw-eDhN3WK6d1FI055luVneeWvcbjsHKXNss6Jii-Url1voOXmm3FIhxQyJShqowhnn1BbW2wkQOFfQvavA069SdKMimVKKA37mxj61mR5LpJC2IYgulNa577_WchOpZBiNz0EbBwufOJjY8v7CqYlzT42_0HX-ru1a6lKypgvFDLTXlXkkCNfwgCZVcunmzWYCzURdR9J9LMlFmG9trHfRLmZORWyKA5pM8XbD3OIt-uszIrbTKmqdf_iXP2gJ-u81N0BFhEVN-kEkajMI4FzvNsjGdIwMkscdsHFci1jrfF9k_1PPDhun3XcLErUXHBj-mnqBavZrz3jOWh6kkTNiOzw8MLzHpVZgyQ9dThP85ffVOz8frg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e8661bc574c5-02296855','','','2025-03-29 21:29:19','2025-03-29 21:29:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42783',0,'cd-form-entry','',0),(42784,0,'2025-03-30 00:48:51','0000-00-00 00:00:00','{\"firstname\":\"anthony\",\"lastname\":\"hickey\",\"email\":\"anthonyhickey@gmx.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7oEtkrsUQdC3VPMA2BLMU-4ObmrdwxHvA5vNOBAMJPZWu2tu1QkGc_T53NdB83cryqoTNkBLLDpYvCUmDbwxr12avSGVpGo7qsGx8g6uIAHwyN7M3nuXOg_f8XAOGHx2MrVGixkBm_flw0N0VW-dGqav_6aIF0RsFzj2jJytf1vnsL62pH9tTnm-jo2tEw_9xVv3o5et1hxAgLRrJqEhK0l8PFvAJkiK_d0E1yA3chHPm8xjeRxXXHFxLJvgfl5y8krzd4-jjyr1xC0fTfj1LTSe86L9ywVskStdHab0rXLiN2IEmO8cMhiYNeRe7Ky6sa6x8bH4LzkW3fwP-HbL6OdlwXI9m6lNYAuH4kKCBM7Ejj9xwZAZNKk64sm6wWqK_OMEHbs_ehbXJsoYaE3zCXC-8N47fRA7hAmQJUNqAMrwB5Q414poHiZ61vCKfPhaLilp17bUUT3YAruS4s1PlAKVPy4PItr-tDDeEDJmrPipceSVdH8j5veq7EcqAzc29zmNoJNNvkCEH_HiFvcZAz17C0rr2vgzE7698uxN-lGY-Kmhwa0MDKFyLQqOUUczZXuep-RY9LaQ-2jw1coctehwpbCbDCrXID7-JzymL_PWHt7lRDtutdID6qY5vFRoPWCRDa0o5IcuErJJ38Om34B3Gu4XYSVwkcnwUNIB3buCX8F4hIYHAfg0QfzaEQvd0fCRdkCNiQ6J6vYweXrqP6MKj5MmH0LSqVEi1Z_n_JKsU6IYyfJkQsNUu81dOt3EwbcAzILAjjgi6HkUv8tXqJzMdNbxiZCwTHdPi214ec71W3IIYD-M6etYoeOx35sPuNiIbIirJyHSVbhtrXIskdlAe-PKHOxF1nOH47dpp1JQ5ZnKYvXQZOPaqRLhUfPC7M8b56HOCbqNb66DwdKjAm8kZL0nAjo-t9QytihgKfopSxpci6BMiCxGcJiN6Sj3C3cZJd91Ext0_zYgb3U29q5D-ZUPdp1Ar_ysSM_LvCXmfH7WTgHm9DKe9hmkvWMIwK23wO9QALCR8LK4TTYbjDBIj_v5P-KMZsq0HDAarWTOsLQBSHVwXJkf4lJ3_ML9ErZytbsB0vSPj7NpGMLGVPFIMDY5SkRSFrAGDfPLdYZfKbQ7z24sVApN3YGDMrRqRMfLr5cCqSQL2kOWrOTPwHz6MubQDRN_tQL66S4vVfGGgpVGmPH2PoRhoPxAyGdy7v1yErb4RlGgcxbYo6aC6JtXXzzot_xgHCu7FlLY3HaYmk1i1K-bN4aBi295gE_rY_LVtOPmID1WWLEmobyVpeX1EmZrCylSDS4L1mpNbylwZIQAqczM-kPNESGeeFEM80H8gU_CQ8Na6Uo5vNeUuF9XedhpC_eDixHRhhXjIIStmZdOO3Dxw9Jio97OJL0AG3aJDDrbRsKzd-DNsRhcRUJUu0Dee5UJuEArN23zBMhXsiMg_QqfWbSzMRtZTBDR5S2-lPNvlU1EUODG0BKpJhK31aXbsY9-DhMT-HyTfUgvTBaPNeoWEWXBoXN4HFkIh19csMMbS4Flr9XSmRBbT31-2irEEGwOUQ8ERFiZbqGl0z8mnsp7zMhtvLYm8CwJJHhi5IsPMlcHWITYH5e2bW7vOrrUnJg_nqTy1KKuIff3EB6vi_okjeoEAs1KWh7x_vGvU2EASwweKNXgK5TK0aZkTRyuSB_4vb6OKdjzNUuevC0jYDQjRf3hOXaj5z0p_MlRcfdbpGh6o1m5oePPXBlOzQVfzg-6ZBj-ANlv2QS_974pGFQHbbd2ObEyiMSNtJMGyMGB14VaxKcS-0WthOj3Y6M2lY6_dgcC7NvJadG7z2C9rWliW-sIRRaFuc1ODTGf8H-GRoXB1JOeDXhLotxQDZ7KcOO8g_Y2kjFgjeZPzDiREuY4EaaFlkUGUMCHP2IE_SDf35GQLGWSc1J3mx43QJOBaz558dUsjpgW-n5WkZCIYL8S1w70RqsqmIe3hsjDYd8LIGGJ78NLYfitgf4N5uNRhgOfAtfGMZSEqdrjUJgtEfU1XJNBAjB0RNdTrskfbE2NMqm5vQyYLO657sZqAAt3YX7_qw-ZDt5yx3pVqY5vrxu-GUmo5vq097YtuMl1wT\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e894f3c096f0-95586192','','','2025-03-30 00:48:51','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42784',0,'cd-form-entry','',0),(42785,0,'2025-03-30 08:49:19','0000-00-00 00:00:00','{\"firstname\":\"Colin\",\"lastname\":\"Ross\",\"email\":\"colin42ross@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\",\"recaptcha_token\":\"03AFcWeA7kh8xb-zIEovIsjtC8lxpJlM_cmxTDzISYCnyhp0V_lUfftVskmnKzeWrD_lOj3eP7f451iunSxgVORsMGj4x_W0hlM5XI-PTF3DjEf3dirMjLN52w4cWq-7hGIj2GIv3Li41PNl5cnrVYVmzmX5POnk4nUu4kxPlPXiG87WlDWFslTqPpOkvULYJA9ptH063FIfjIcWaj2NPs8MXxunv7E_fcrmxIMP_QGS5utvYTMfBi_IX2U1CUx1QQ0Ybrvu7QO7Xc4CssI_mA3L6EzhvjZN5ifcJPvHVR4TrqSh00fPlHTmJ-Hay1jqPZZpR_1tOv6bYpFTZSbehJsmWnw24AC5F02ANT0htJZiCTObiHRG3koXii6LbYqWZ7dB6WfT6PToOfcWo4GPUfrX2OvXnNMcEGcTfqwJUQ_BjxR_rH5MVlzzY_rCNT5RIZz7yDr0uBCNYezGtXtcmKMmAyNoYNko67IKsFdL-7N3eDXjgJJVBvxT0W8ocrMNvYBIubHuObKbQ631vz9FpzFP1Zn1c2pAZDnYgBnxKV_kX5pgTYBA7hSXlBppAj8yV-Iq75QS_mW5t0CgjbXK6spz95V75SJe03EoCvGm6laJIZI8N_stRy_L2eFNTD1-BDUnOPUmwEFI-A4M4mVwpCX5kGmjMM0binG3Ue22md_C-9CvoRfHOndCqDDZ_gozgtJi9ZSTyrFYsDnUQGvtek3E8wr4Ph35NmzPGtR9Y_5tDEa68LRQwNvU2NB8eOcpFZOjGOFUmC47xzA6g89-IEc05efbsHimNVZoInhOCSHWuf2QLsljJOo_WhCcAsQY-t-7silFmb_P72eteHyNlndAWt4ZenC2nbGjwJqXeMla74e3uYHQ8DzzF_wotcdfZXJ3j8uywbhyBouxhtcr4C0n_fUyzUcD6qHQiFJBue632uddVuyUbBWqtlprJfsLMP5osNjzRGnhcwYgfKDFreLHkuS0btEI4ihmVhms96Cps7am9ozYYGPezBBqkhXB9EkprkKMa11WX06J5hf7LsPbPup7eMQ9mXgfPUvPvMfltXVJ1Bq0BvY6zKSN3VOpb6996WEK4fn67ly9xIG0QKt1S0Lf4DUSqihH9eMM-FgLAeydy2DubZfaG8fMQMtexMJkK_CkADFJLDrUIzxmAZWlUcICQ_j_fJfB3dkuL8DKyRPQqpMQEfXC6Y4kydEk2qELnVQkPTe57h5nwxitbuCDQUYxtwru4QV2_FGuAgMknxK5zY16TH9QR3jkLNdunnO6r1Y2AjxuSjvSLWTNWTBgoj6wB83ePeLeWM6_pQca3D_iQ_qx-SzwE7pjYkZtLNAJHDJ2MZZQDzaS2QsCJ80awVtUGyeSJFyvuqX1WRSOaCdhbboxKNXl9ea0E4cuGYOG4GHSjbAerZDGsNpsKaesl-fil9zj5vxiT-co2fLqEW9kGJvwxLOWUclfZPFr8wVNwjcoqvoI-MFpeRmsONwwxPedbwkc3sR5TJpX7c-kEL9rGKtBn4qqsAvuToVPhsjSTkeixSX_XggArCAt7Psb_feC050mggyeGMTDTo1UcPkf4IYTPCYs2TLoYc37IvAo9pBDNlnYz_KyBOM0mVCgJI8YR_a77ULuSROjt0UgkXtyitxIAJ3iJqmCNYJ8xJ2oxxlSmklAjE9RGRZsUBpxAQ7bk9bBq3L6o_OQxnyFFnNHxZTj5wiPlSOMw7m9CWDinoV4D5wUpnuesYTHYb06ffwxrLYq4x03PWiS0hUWmK4gFtK7_t7_bMFPuGgp_SUlVMluWuGo8GLqinbMhQx5XxIz6i7q7Oa-Mv8zsvu65z3oCJjgbn5GsGwPQbkGVTQWBOaASzas31NBPcjsTW7qifcwFRUZTwukrz-0Cg4j08KAJCEI8sSEhMDr_b3yb3VP3v3jLa4iMELwaw5MggoPWDEIA2U1TBcLmDwbFmsfbe0rNZdafM13Vh3nG4K8mcYcXyHjS3j5aqezDNXw3wT2IyUY0QTD9oJRTSAbeaKA_Vi0IxxPDpymNoauCZavP5lEHzui5MYrv5MfnJMMvmSFZTB7Pd73d0_IQiskFNS57st-WY_KBgfJhnIeLlkU-hp6ImRPFq_1TlOdLZQ-YZ5tD58Zn9-OiwDo68SzbwPFQN0CcECDfD44UC2oYil2bKEYcHmhotg4FuwJ31bNuCfROALvTMQyE3RORyprvpKeqcz8eZ4AubHwNwLd0BjndlpctDrtR2facQ_LVqLIEkT-LKCMo5Klg1We7-wZtibaoQuRb26haXGx4HJcR79DO7TN-LqSvUzWk4FX9zNpNq0IntDnkO_MUVYsXs4ooVu7F57110ay2qg6UxwXGDoCvBx-CkmVNs3IcJ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67e9058f3d43b1-76918724','','','2025-03-30 08:49:19','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42785',0,'cd-form-entry','',0),(42786,0,'2025-03-30 19:13:47','2025-03-30 19:13:47','{\"firstname\":\"Jaroslawa\",\"lastname\":\"Macauley\",\"email\":\"yarka14@hotmail.co.uk\",\"contactnumber\":\"07782645553\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5Vu1fvpSy3uaL9gkLwI9qfeZeUcraLJhY_icSg6e4ypsTpuxVl6vPIwDvAeilAq94qBhIjFl1osxx08PDm8krV2oN-hMqLEtMskG9kj8gmZUJmHJXEuAGSrKapvXTqrwA2lNi0UITufaY-MiHyEPUSLGap2EAhnXZbXjwHysJn8lyGI6zgAJ03-59Pi2rMVv3Grlp3OR0k8iKPEc6uKAJwpeNndkJuGmLfonVWC0amEGi87Y0lpncSibW2_fyZaHoY4_jcg6TFnHckmflO6NF6pT6_3MxV4Ch0Ep5p06sNaCFLodONvkLHomW2zt5LRvWNNoDupJpns-HAmjdlwSj193Yqqu3FYpvmz01KOcutI5jyyT_Zwx5_240YwCNlQuznzTJc2zmbMDL0KOlLP1PdR6Ca4wTThPRjsDLa8U3AtjTqsnn5X6qAHNaZSY6tQmN86F8o3bOxqedBFSilbevtUiLiS7n-Py5H-zLlW43WVgpep9Anlj_zdHIhZntjCgsxFLm4-9xI7rEBw7vDMAuzCYe7uH3S3WRs9uaSDb35HYmj2BxQBDfnRHRebTMzg3bYYpUbKnz-mJWlRewi3AZnuH4pJbAW6wZqskGWCAS6h8sBW4USO3CQlzcvIWLEUQ_eh5RKtxQzTlh54mAC-O5tMcSsyW7zkhtLZHkWLkKrIeNgeB-LgyBwB5_KXdZSKgleK6ezrCoTl-_MtaJ6zc-O_HDCDpx4WvtMZVJ7gky3kcfRRBL3nAuYiNbrco9N6EW8M_-4cCdwrIqzusraOLs4qVVr79ZYqr_Uz2LOekussOd_Em3dOGHBk_WqI379BUjzKe72AtboG6Bu6C7WO-8xqUnbU3b6JN5CHQWNj5p27jtclM_AlQqZrsPQm1iXsBsdnR0e-f2XfI9jjvACFkF6XY0m2H80HJufDA7YWMLyjhYC7a6D_rEqHr6QcIUD4_T9tOPMV93E8rZSbr5OE59Cb_l_bnV1XiTJAWmE6nF2tp4GkErEpUuD7kSzpJvhFVZC4CBsVg5n1Q_K4i681D_Vb3ciA9ngMWg9MVUKXhlX-ViHTpKT44Tl2Hv95eRmiRoMJv-_DFVRdnDcH05oqWyL8w3YrSaEabrGY_A7N85ezMg-k1OBPetc0JgRgUiUksnUsVslJw3_VaKm7ajFiHI-nWO0NzG0-ZUqpADiXU8Mq-UI017BJy1aU4sk2IAReB7ota-Ut3TrsuDZEQL05Ds-vnV4LrRkD1zOb6MUJclnTD6013D4XNj9g1xG-jMCubAL5bS5lgfammtpuGfQUTTlhj4xnAKJkFUVU2EG3tPYiR48BfJNdh8v3Js_CSEE9qyHKzQ6lFbaTlYGg0UwM4jCwmNR8QK5yFoq-hrzdgfE_hsnIQWyBEv7DXON7mNPSbBdwxxyMQKMLiSnooHeBpEb-BuqYSlfmpsETjMwschV5w8b7oGVoSkii8xWy2dQLFGaucPuq5bAiUa0PvedS3EMgmrpSD1ah6qJd0jbu_Yl2nFoSN6IWuWAHF-fJWFzqohCk-U50vCO2CqvRXNOwOlUM-JbYsP5Zi7nR_a_sT-0U2Twy4MzShCTWOjabgsbwfBGNbliaQBDY9CRadUFRQxYqxnccw9Bj0Xe-AzPoM9FntVzW3Ausx2xiUgaujzttPoezrwZnR_KFJFR7QZR3j5fd81jw9Vm-B2FmgrGWRMpGC6CUq-BCfMQl98LeIpa0_ryRfu6f6oGFMjJm4CMQQxX_3ep-Q_ylSIls1yzv3Rol7mhEj3A4gqtIJJsN6-gCK-CN-rBYP8h39HerFoJu2kF5b3QebV8vftnruxAQxRYS1x9UaiKdTZt6rBahfsXR3VsKPhUQqd7h-QDAs0OguMibY7jB9GbRTx15Kn8Nv8iI0rrN014Mym7Hvw5LKpCcpFnqPfUmGITvtEV_czjpx-LhxEp9wHKF0u9vFxn6Pupf-gWd7Alp1glp42YOIJCqXFEbMX8JGZ4Wgp8B4VvFCZ5RgYjO8LbIBMeghRGwY-x6l4Buk8ahBI5GtywCgZJamZ1-cS9fkeL9kb1oNqq-UzXFsN4sSdHPYuX1ZwNQOrkr1t9to-N7TRpdICVhvXCjLIqBbAQU5XN9QzmZSF1h0uU5OYzDK5Gz9oH4iwZGVhnbBsdvNwXJ9RDlxKB267Zb_mrgjgq\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e997c4b801f9-59515864','','','2025-03-30 19:13:47','2025-03-30 19:13:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42786',0,'cd-form-entry','',0),(42787,0,'2025-03-30 19:15:16','2025-03-30 19:15:16','{\"firstname\":\"Shane\",\"lastname\":\"Hinfey\",\"email\":\"s.p.hinfey@gmail.com\",\"contactnumber\":\"07885759266\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6stolmIEMrfybAW0T6G5-Uu_&amp;gclid=Cj0KCQjw16O_BhDNARIsAC3i2GALqw0Sxt2G2DtK9LC9fA4gdzHMeKK5aZDjCPEUeHokTV1VvyHhl6UaAmetEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7B1VrPh3hQnFPxQ4kaqEvr-gUi6KDauMb16mxQ-cMpcb4DIRbTB2_qa6rWqR-wClxkMpn-Hmq1McyPQAEoGlYnY7UnIp0xaBfyUa71oGEfXBcqYtpQZn5MxVsxUhBUgLtqqYKv62NMKw5evfnHiKnVzNe_fBHL_L-1OFc35L5ichpIx-RDrTxQw48HECeQy2sI82rlDh0yY097n2RSvw4YkWOfMOAjVpz7hFV_SvOBnofPZUuOypwHS_Cx3npk-AYSrjCe4CrKzE7hwvvnWD4Xfpr0NQNyaz1wZfKvHANWCQU49gnK0AW-ikvto_32iVv5tF3_tElZiVf-PdOu1DXe3PahTpDxrSjRvKVimPULTswwORYbTYG9T4Pq5azv2PRTUglfyiaM-A-JtrZAaut_xUpd3C0EwZ_xJICyi5fwb7qOXehKbEFtS_HQdegeH31X5t1sY4J6H3MV6NBe9_6h0pvHJTCinXGlOBdk36eqot-OADuzh-2w2ZckBKNOD37o4kALLBGuyceI57BJFzmr3qffhHjf9rWn_ZEqQmyU4xoBFIg8BCfhzwZQXoz8eZkPvoXTAoRcbi0rVZNzYzIzz0mk1pWW_NjmOuzoPb7GkRBLmWZ2XO3aubnd35iqGAmQy0_lSBA1ElcqfNlEaaCk8Jvj04OYTrNwxr-JvTcgcbjFzycERZNOf5FLtKpCspglqNOzTMPkbcCg4zcMbXUvX7vCYIOlqaybT0AQ8-yHnr9MtkXE6NHNF21YTTyKtG8OnpqcCNWje_36ydjLsIbxWzX2nUDYJXoXcx7OXCY0L-74KoEXdLoKU4QZon8DD37dnaiS1BtVau2PwQOeHBkytJEwYHTipruYkaoutfa3BtSGXnEvjn7rXf5WTuediCLGm6nQdQqlmXwG7yEjz1JlAPejRfZOY69Zgw6mUrNwFX9PwevYZ2ECNyUxoahqYBfGzx9M-j3Mrk3q6MXUuxh85NBriyt0DVwrCpcHZzmClk7TVJBDPD7ykoGthRT85vl30NwmJpjO0ce5rFmT3Zqz5303KkyxafvcTV9N68Q59u_Tf5SmRytld8xFMSQyqiZo5ptL0yDUdGWZIwmddaDQ08ndAgRV71Ww-yWT7trqw8S72hAkQvWEgZ3DPDS2jTTBj42LKMq60-fzD6_khTnMVZMt1DaVnt4_YN9Ri-vNl8GiurMQfFefeTHKDIaULtmNOomcuExjop12eoHw-GEw1oLkDGzlpobwWbpv5C0sfDGvY9YTqvdVSWmUC_wAEtb1ty1kvr9sPDjCJvuvxiJcnd6ow7qTu421BjLf-CW1_zrnljp_z8__LA6zonUqCorZhcZM5zUcddH302VbR2rFy3sBIF5oXs9dcoDR4utPIVsu8xTpBuTIbCCUIHICoQQjOTtciEEQ4U94nvSvpMgKtWjAE-J3gR43E_jPm-I1T992FZo5N14mzo5TYMngWrAfMV7CQR7yoB4H_Bo-9wnLPa97EvZmr2u1-fgQ6DjeLh4pCC1_A9M_P034qplrkdhrs0pMqwZAiV6J5xMvMlyeFEVzL-Hs2uuPKe_oiceJQ-zpbxyjSPGW3nuTC7gOVr8y9vQQ_zpioxTYzS78EnnbYSVY3J8WHXPuykp8vYXsbErG8N1x8utLcLxoDfSMmcUjPVGz5HRYVbnXlcuf9klce658xIptQdqRxSXjSb_R6QiMUk8fNwVyn7wubw_HRIbknbDmqAfrSsje79w6NzsIeW8wAefeEMsMdvlotPICCcegsZsofGw1zuu2lAIzfcKDcNlVUSTxiZGn6Y-JgV_ve1hACJHPx5dPkTicRK0MC7xzE3gvny3Mb2eJQEkEyw3LvZTHv-z0eNJDNQvgs_Xa9jKp0ay-Cvn1Il2Gmge5p37M7RlnEr9u6UvGJGofqotaEwX3FryxpRU8uGoGdpMIEaTbIsypg7XI0Fa2uT9YDFV8PLT3UEZjco-B8_FUSWbXYRYCfi5EJCxHP73lOGojezO-Roi2hslUkI5pkkYdO1bpqZzjJVs042kU8Gglit3uPi20FtBVpi8KdfxdJeGIQLxet0CcTmKzYbfsufphImuHLeKSaPn3xX_bQ6ymebVU_lfnyxzOARxQadnXZDe6FA4wRbMKW5WKyx1jMqjTOI2IMBqxOOBgyp4KJXsRfkmlo6Ya\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e998304f5008-34591908','','','2025-03-30 19:15:16','2025-03-30 19:15:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42787',0,'cd-form-entry','',0),(42788,0,'2025-03-30 22:23:25','2025-03-30 22:23:25','{\"firstname\":\"Jack\",\"lastname\":\"Huggins\",\"email\":\"Jack.huggins.jdh@gmail.com\",\"contactnumber\":\"07539042813\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy/\",\"recaptcha_token\":\"03AFcWeA4Ekue4JFXiHFZMiqqMRo4F-jFpRwHR-yqYRXo8BQMDhJEqC0bpuhoJnTpuQdR9tuG4zuVOAotUpapeIUxLQzKqM5i8ueVZWzUo5RXjV0ARvvv86pMqmLX6shHFDySaAxXRe8MLbybhJrWUp5eoaNSBHYUbqVHaEvHSoyLKc7abN9uC5BAgwluiZp9DZvtWlufp4kBC9LQ9PJJdq9u6Sb0cSdBZL7Jm5nc8T_s2v2lFsQJp5x13C9j1JB1y2MuqsUROLaNCniIrGFyU-Qu5lDPKu2bhD5h-2mcxusIeNrnM_jnKuBrS5vomCk_3AI-gBaeoh_h58PDoBfMt5VWF2uIZUeCLoNNkqZtjGjFKAvW4lyo3mhQYwKsmvcjUnnAfkVHva_7OsUs0aNSt6lwyoTRU6zM8B22fuvAkH2M-k5DZQBOvMxbodEujVP8TQbDmrQ-pMEH20CS7LZzI4Q3_kglZL4lsGvpy3RYQ2RlZaboMf328sm0T-RxhaeHJcPxM4vy_ujqB1iqJaY5l5slsnRJRZhghH04EwhIH-3d__TwSi65K6SNP19CMrlr3Q05L-M0PkHrKOa9Hh8jnK6cvYkb2nXgNfRovkzAHY3IrWAFMFGJOuvjxBDnsK3GABgxVoYekPpVAiFK3HmBY6CaIdw0JSRJHx9JhpWLFbSFiLIasrv9vUJLv67maB_bRVYok0rGPMBSWHMvjC8kVOZaTF5rEqWUbhN6-_qX_bq1J9d1Wns1P79RBOkftqpPqlcZzGMOmtv4RjPVyAXiUXAqJKVS7UM2-xX66QqsHHzFc148hp6h3yUo1Lv33guVxQZh_KDw1RCWAXUeA52RrHZiYxDgURBJ4UFAVFlHbN6z0-znmt4YLZ--2T0alCG8t7UHLhiOybTiWq8GsxOmDzOwldIgagRp-5NXglLaRLZYV8LcBUCibi1vQbXlPaRya8IQWRG-g8wzJS3lE4UXiE_jSLcHADFWYLkDmtZgyabAPTGrZksVJRwwpZXwMF0rnHBEIsJYjtl7JC3qeOgRzAGkQVS1noVnEogVVJhX5W5Ow0fCPRLJ5Q9KQQY-d-pMfcsAY2PAsUJsOHum-gsM_WltMv2_ImZ5hE6EYOkWOVKy8hjizbhJgZvs0BqFh5Ih_EngAGI_1PslaLyYvcO_10k0szdtx_ke8PkEEevozX84y1wNukcU8vg8RiuiVKdK75TOnbJES9DjMxW0J1o1thkMK19i6uHaVAMW6afc-3Dj81zfU1rZ8lmPZQfvMdKn4rftjemjlxXkhmvxEF9eABk310sWkQe-8RpHqFJeFSlS6halP-gXtJdexcQkJp-AS91nWvii_f7vCXg_Xdu1YSTs0FOltzuUkimFl5yKFtbj0BNdJmhNUe-dt6pHsOr1OqC47G2-vxwAidN90qf6wbh6YBz5Zl_McbcTzC-8dmknIYgEaUrXP1H5lFDwFFrkxIRk_lGaJT4TOHeuTW9i0AI3W2fes7ekAxMVnxoPJvbXPWON33yfP7jcwn4pddtWSKKzSu2ly6hZheCFTw3lfzRu1yej9XSOn0yLfTJkwx-7bNmq9ai8EREGp1PaN5ysqdB1EddaSEvxBOAQ-7TL7jwg9ye09H28bP-peRs7IhpV61DLKBjOSYZCfkZm3Ml-4GVh6KIb6PUVXjCXIqrIZKMoiIS8bIpII44CPvSc5-RbcJ4EnjMIEhccNvjvJDBceu822vhqaVE2Ga-RVbXJ7oxyVSquv66I3Dbzcka8J-lyeXOjnhm6K8QO8Z5sjNq_aXe9lwjGRiFTtbYbIpkCRTu-1HkhdlvXwWT8Mro38QAK-GwM5apLKAUKvQrIrj0k4Xw9diPYGfx2uZvPVEDTY3MgX1s9y1XWI6b-V4eLS4muNmX6VvZtpd8yNQTFt4zrMMt9vd3-1XOfAbz-5UxUajokbUTrCJD41iBw4RtW8WxOtt-sF11b5GYVbbUMQIaV4mHCPdomxH55gwt0TpAlamipzHbVEL5Q5Gn0oJU3rZEuj1hbGnht5owp5DJJWnm_KXVgCs4Fu90jZ0RIjQr3lYUrvpGNmN4ZZTcSWd5diQIoEbdz6q10qCI3wfeAqg4yNE384GKcRbSoF_oG0ouanIR7Ed3G2BpPcsw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e9c42bb10607-68920002','','','2025-03-30 22:23:25','2025-03-30 22:23:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42788',0,'cd-form-entry','',0),(42789,0,'2025-03-30 22:27:57','2025-03-30 22:27:57','{\"email\":\"Jack.huggins.jdh@gmail.com\",\"interestedbecause\":\"3\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"GU46 6QL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy/\",\"recaptcha_token\":\"03AFcWeA6olHlFWvkWG8PpdPhYdQ02I98Cy_GQ_nlGZLANN_phoovu21wCGQvxAdmO2auGQdwtCVFj5zNED0Jcii_dLdQ1ECjMv-z2sM4nAgU3KV7kKDiA9nCxP88LEZMzHqz5Ju5s4w-hoxGdo3s9bh1jn96k8CZ23i6J0Nz2bX_JUy6sZIEbooxPzF8ZXZAeBbJP3NhByLRwspj3ezTBDsBYwlgc3sCZk8SzoVG2Am_nbpPkVWqEoWsE0KzIdDgGxfhAKAOMiVQsZaiWDidYwLfY8yIX1Qwa29t3d1dXZlp2CDSKeT0b-8OvfgYC8kbwUGds4utcWfZBy6yKrMpF6HjYvxqmIYP2coUg0MTpPUg1L8u8DEHPRJusFsLwINxdMw9wnGqq69pz7Vo5-Nn1trfTgS5iAqypgSZkRxxY-2G3N5d5_57lC4ZVg06pSaAih1dZy5LBJGlGrjgWxruvemDo2A-8bIFevKhwZx5WiTMbTcwCdrz2pc1Yd0BinAU05HX2IN6Mvcn-45itG13eKbQB9uGkVDgVwjTt9weLmufR-XCz9ZQegPPyKrv8lF62lsP7YbXyinaGdGtd7NKCkiyNOEqKPtw8G75lshNU_vB7bCFS6p0BZ1OK1P-NnYOLbQHILvmbxCaVIXmLsOvIgzjwu2qNEbODrWcIFgRr7kviTak-WBQkQWMC4WSSN3DwHVpCzaZrkINoPOV6OFMdjHQzM5hWR01OOdSjwdue9UGVfNq3TCPKQY4p9CcoucG0G4RnvB6FskV2KZNzpd0maS8T1FJTbJ9Hy64Oykq5RiHGYTe92REaKgkUQ9XWWP7-npvw4uanSO0vuhkTEkF4RGtg0whPvLS3dHS2p0xaT1_gk25tPVi3_d0DZf9U7daoj94vEorwxdoVhfqB7JA4OM_lZ9s5GUpxDQ2ZmxBXe-PWkhNB7VuO71NRYTfeWhBJbelektAVu6xaebRILngQRlTFyY2uDhjfzFNKThIUd5oYleLmoZsHPb7j-r0c3xArqnogBmeZdRlh9cTPzOeruGDFSV_chPfnd84PFdcEaarPnALu2S7IldH7hMAceJ4ZeHZvbHmIx5ZQ14OyjLASiRGG33ET9YuT69xJHHWRQ8RlHU5c3PAeQWX3aHxtiR6Hbfb6ir7i1HMD2PaM2Jj5ukDTAjLZMCYK8qTiqLNBrvWNzONVHmc3rmxIeAFHFp-cSVJLfHvgwIXD11DHIm4eYn_ZLLC1Je4vn_U9PeLk4gt5-Ixs3Q_gBLdBDFSDCLD1HSB7GSRAQQCPhJq8wzoBOwXs9WuQI62t1p5AY9lQNCrhzjfdEmGcIZXbmC6Cltl3Ij5zOBjCogqX_3CEsLLT5M8UbV4IWAxHW6JOiltggZDCHOw-CIjv--SPi15EXd7FEyIqdDHs5XxerVcuidj-4AKR2lmZEOsoqCQoiGv5crlhJczBP5J9mnqKKCs7Ojys4eNOmb3O2EYCJs3erib24dwVqTs6Qi5QXvfXZpfqTONdlM7Wo01tuank_CKMhlpYuMyXaevudMyiqwJMTJvIHB_eIIMcbbKaHvlLfuMH2Q0Z3giw8wZRoRtE8bPxRlvxza-BNrqzs8OF49FnREiGet_J7x2EKidlo2TYkow-6Y-xbV6lR0k2p2mC4BvAkobPcf3nK8Fb5yVFFBdgp6aJhs4qmLqVUdp2xYehO_BB7tzavbOGeb4vgRvZNrAXptMJybq-7RTYkWhVPPHBQPhD3c30QLnVAhekHbjKYtPEXRgXwKpxokaeiR5wcGVzj3-eNOf9-Vy5WHAHrJDqbZnDYgiTFuWEDbdbyiQOlnGp0s4OODuIO937efgDMzXyVMfMkoKYfaQb2x-mYQYB7Vsiac1Og0cfmV-k6oJuPcwkjzTUd87cBIDjPs0rdN03s3q02oiwo7QouREmclKlzmcH3PVr2YaQ25aj-St4X0FxG6UYtRbpMMri9CMoFCi-FOyhWBf2Q_46ANP6ikPCQltzXiq3zh6mj5REFTrTbSlCPZE4mIN6tTBwitB_mjZ7fjU4vefQ5lPq-8dJu4wCM2D7pxLeOCBAgc3yuO9sJFOAaHSPWnkdDlaQrm82iGruRgY3jYAk3TPxJ3KgKBa7gkiTOELX6VDHh9ZJJsxKfJMrKreks2abCqC13-YxilSopDdslGb3HL6tO8xy\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67e9c531498115-57118903','','','2025-03-30 22:27:57','2025-03-30 22:27:57','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42789',0,'cd-form-entry','',0),(42790,0,'2025-03-31 10:41:58','2025-03-31 10:41:58','{\"firstname\":\"JOSHUA\",\"lastname\":\"MCLAVERTY\",\"email\":\"acclaimed_care@hotmail.com\",\"contactnumber\":\"07734923387\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw-qi_BhBxEiwAkxvbkP_WAOrK2ido6SP-ayz-Q-FVHQVXRopKFaeXljjsMeS_pZ7wIHdDwRoCQFIQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA58NHHMDBBUqH3iJ0FqerUoPYX7dEvbdrssS0zIkBmzs7M7kh6XI_k7437Mh6sDRNoYIG7hMB8VkNLy3dEIp6Pjd6w3kJb_7rY_3jx7c0Y1x_PF5txwuuV_j1hSg-_T8CsigIHCqNV4X2jk-L0UiKjGkCBJ5pwRXCY4sa8tPfpvKGtDWn-4LRNmYXAMECdNuVjp4kDMw8gPbH-M3Ew1hwE3wm9we-8yMd61dsJsHneaueNnyGhnoCUq57688F-IOP32Zc3bmCHtDUWJZ-jijGRiCc3W9giYZCOI24g4BhgOrpNqWnXLunDgNlRzMzKF6YjC1tc4JCVP53UFqZIt1WdcTE8qv80O8aBMN8Scw0Q6UJKE2VnMEmFPFgN-jd_75KUhxrNl8Ucv5wItQOyTC6GeH4dpfk04I6NvtJn6m6OnoAlRxLqBhpHnvxzhvhlFL8MZ4fyrmroAPOmfe8AJ2YT80caxW8cn52y9XHO9PjBdLhpH7yUcLKdS4kWUn7bqEoQ5wVTvgwNwt8Mf1EqDMT5qO9c7lvhHleEafdtarj82zMVZYuCbLvaMfn7DcVHzogYIegn6QcwJnrDUNfoD3qZ1xiACCjHpRgMeb8po2fsxd18ch8rsQT0T_VzVoL057Hyf0CwPlnXiCmE6tnULxEJACMyRIK1YBMsBCFf9fJn_YQk-dJEvraFN3udEC_j0eJrmHUYe9Uvv8PwWGzD7fi-98XjFBIWOY3KeAorcit3f4Tj_Pt2xv1RzjcXwCjH5Kj78RVElCbKcC0shpbC9dsLbgUrmWGERyFJKSpybrvJu3Trlq8WIUmWMTLE6Hy03jt2HlbPN3IPRKu4jwg_afu1g16JhBTlL6UM_RWoJtctPvT9ZKWXtlQ2EVXZjznARky0-Eegq9eg7rVw-nyCZo3tEbed9Os1sb4-GXiopiPC1e95O1NuqQsqZQNZQ8B0Xn_BEk_UmQfSU5V8VUzXCr2lpKcmN8-MyGW1JAoP030mmcFkJLDVuUj7xo-noy-1kFJDB2hLZi6RSBXXI7O7m8cFTMwz-dIbmpvq05s9xdsEkcrHYWisWYeH_b_eSpr7wbWI2b0j4YnWlmzb2bvZgz7XJGa_KQpvjYUSbk8H15QB6Gdz0vwGrz6ywIKfFsQ8JqBbXiUJYzgz1GpNGEOQgCXUaMwsP2N07MBG3iuHLAYE3_dHjLnIX4MGFSkC6i5OK-DCBQDnOi8lEopwhmddZ2xMsn-I4eM7ilkniSG7Ne2kCyIpBcS8dqip5DNuK7jLkiVlcR0wh2pse8eeZV8y0bLeIqk7oFopYzOnjjmGpYltqvSjDgNk98yp9j5xH0X0bG3UjSdC5L0bl3awH5tGHS8Bu_KclAEhfWzapmREaQBQ_JLJRMQ85DqhXJPMCILYBs3MV-TgAm1WUAWbcHtxi3q2z4fz42s8WTQWMKutiW_7vnHRlcNMrZKAf3vJIzAZ2LgKkFGL27lGj7vSmlF8A5j70jEJ0uKQd2s1zOVIfI4qlpBn5s8HDr1RGlBjiofzYys9mmcOqy9EMIz-DtX0F4MkGnhgSuVuCwBhvARfSkTBHhmB3CdpfWFUXFb67BTGW3RKJ-2AAM5V1GAsDMi_ani9NCZud0GKnQH7gAHTCyjDYaOB30M6OCKthkHTexN8-Rs3IXJPGxWuph7lOw9oggarXZagpYXiXoOsyv5rV1OlBzF7dhPsXXoMmEdnAFvsQBTaK7VjSv-7xS-CYbqLzOlkjtCmdkg2DR-_NJw2aqtTj4XjSlRn6y0q7WFxBH8PBSGbRn3eOVYhQG55wneUKWtc3jRbQAWI9z7wT1PytMLu8_tWeIEonCNqVVwJxtawXpD5YzmcAGZceY46sDqjBc2BW_j_qCjfLh05GGVVhWBnYylHDVu3VY4ksez2cpBV5v3rO6UF1etKsQYoXGr2FvuPC6GClK9-NAkhUZOAoxcRec-a7pIuAgDcg1tXsiwA8cr-UErehfZoelSw5ZDZ71SJSvkcBkQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ea716641c591-66482916','','','2025-03-31 10:41:58','2025-03-31 10:41:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42790',0,'cd-form-entry','',0),(42791,0,'2025-03-31 11:11:09','2025-03-31 11:11:09','{\"firstname\":\"Imogen\",\"lastname\":\"Wynn\",\"email\":\"immiwynn73@gmail.com\",\"contactnumber\":\"07951036302\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw-qi_BhBxEiwAkxvbkLzWVG1bsCO6wnPK3GStn62eggt3EnGscSTjtvybWSRn2oi-ktobMhoCozsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6GYTJOH4AWifZeLqyIgvdN7Y37ZBO6bgJz9jktaZa_jLbuiK5tVjBhxCDdpZUKUlirVvp-I13jtni1VvbhgwLXDfvrg42Q7lGmDmYJG8Uwh4S01NJAVuPCcMWK8qokOFHdwX50DM62KZc_rZuqZ5Ec8WexlKaGx_jJV-RN-9s4SPGOq4iuxvg0Wlxhxbc87P68H4APEYSewWwo3RqWPP8XK5_C4lhVbNGHB4m1ZqFmwjeK99dJlKoHKlOFoHcYVUluV34nHI-KGK1OEnX5Q-K8p1-StJrysCdfUv7wFSfj1UBk3SwB9KXrzl3UO_WuV6P6IXzfsjyWxxabVebA4W8Qg8us5xaTDyx5d1w1cIFit40XH3uOXG07OCLdIQaBxjcBm4xn3HdgR20dIabN4ldJOSbVtd15HOyqONcSxM4sfbp1APM2KAL_Sqo-QnmkPrzLlefuX6fd3sDgZ7bnZhuhJXQL9XTvC5yuQiqrMOSZFb6k7TLrE7nsnvdzVJvXafmFOEEwMJU4XhaUPLVHkVhr0J4sh9YQqzB6vOK8Fq-pbBex1FocVAs_GUVWAssHC3kMOArwebu2lx51FwBwg33X3ca69hE360NOx4wCuxNAKElYaHSRp1WilaFL0SkOZ9-KhrZX6_Y7Qt3vPDbjYkAvcZgeVvu3MDGqjeai4kvy8O81SqMdOilwXs00cbxnLjFPrwbeKlHMm-ztlg6yaNwjr2m9dlvVUTdVQTTfXpNlKK1DiqJCkjkdvKXrKY2e3K_uupcpv879QCcJt6kPToUw5BxBqejPHB6LhVt4BeqWnInfj7UKJuZpixTthw-0AIKxEqZ10v8jz8Y0FXSeB8VWq5tgW1QgsZ0W2xzZ44_lF-lCYwYRaajzlk1OoxA40f_sZzISnLYMg5M_QBEuqVi9_Qd8qY_xl1KCBWaqvNixpwyTBfTZCpTgL3lIxphxQGeWhmrR3gEDGaKziEV71B9Tq7s1t9nKoCzQEQQNaM94UvpvfNs_ByuH5x61OOAia48EYQHgdHY5Ow_i3SDDxfE5EKz7mRD9d-DM3sKne8Du2sl46yeEdDO9jmIFmDzRwUS8_INlACG44yGzZgTheeWTjWiMZcRwmiAynItU8LBR98DnFpg_3OeNezuOAl7y1BpxtQrxd7PvllJvIV59tUlKK_GSxYFVBXlDFvR2Ld9fwVutLMxoS-aAXnK-fjNaynhn1KGXBRWzsOxbcPG4EfEcH4VETDQbQ9d5PghkbDiqRM0m3nm0WQ16xmFW0OEVD6sAIUjqZGnPzW18LKrd6LePNx17099lsTKBIizzHxLQC779obpNqniy3rHsacNiyjmM7_qmIRj0cVIX-28h1PUbOWtR08xNxqglBdGKDurzpe3oZAaQxS0UGsCDy5BJCpA1RDthcbvM33vu4x30_0Pk_uz16pnCCouV5V-utqVp02S8BJ6G1hydQ19JMjMntxER5t2Jv-vSneBsY7_Um6UrQkOfcP6_OUp16KPKddj2TPo_716NTbAxvQPzw8pDBkfa8pCbgxFzcP_gXiRejJVobnD_VLP4XpPlCEClylooPL1AVQBmRf7CLULmr3ad_DUbz3ciAxYba29AaHJ-mQC1oI_Pr8AFYdnBQXnP1ULENBcIPhE7fePiQJSjrsXNbRGiOb9C3BMQr_YJGQccYsRNQbbssqVaB2NXQHsLgP2oDyw2UDw0jy8tPuzgd1tptETLWcgZHAt6pjJqa5FbSXN45pMXQT6d7AhSVeWN7N6Kmx3zbeyXOEHhFwWiPKm1kJyX0fEIuORiQVACLurbk8QbvLspWm5FxW3iIVCLkN8L-PexGJTXq29epWVznUNwIq4uDVDIlorzmJ-0qlTKuxSKwtluxTChxgmnI1kFEpjNNEoGVkxXc2z0kkDRvkqwgyrndm0T5PR7zuCorkgAa92A_FAoVG3CnXx7ynF6fhEKYSd_iHQjYySZPs0evaCQlEHzfJSpWQ6SCVynz-MUgkFhs9duHhsriSPcK0VM2d38dgCnGuDyZDi0BkTPcQkchTy_8bbm\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ea784050eb10-78649367','','','2025-03-31 11:11:09','2025-03-31 11:11:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42791',0,'cd-form-entry','',0),(42792,0,'2025-03-31 11:57:55','2025-03-31 11:57:55','{\"firstname\":\"Jignesh\",\"lastname\":\"Bhayani\",\"email\":\"patelchiku20@gmail.com\",\"contactnumber\":\"07823544982\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw-qi_BhBxEiwAkxvbkOFxOjUHJ_y5cA_0qQFj02cgBguJ0GqXbelQhm034k1rEWOLYQluGRoCrKAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5P0o7KWznS9Gb-_eXUiOLRY4vY3b14-P4NKjoakqoqNBsPidcW0SFBOe0wwraSMgtjSFVGx8CWi0yAOZTzhJug4q8ZTZtEqhGPCeQyTIEK8tGsSkEzrgFU0z8G10Fdp7StcLNzYEjU0MOhsY09c4RT6RrRiZC1AzIXgB9ln8iUoKSsgEBN4LwZa_IUgB_T9H5iZLlcQAtQpdZLDPqxv-H7iWZ0-ehM3rSy7_4Ao3txPYdI9I0tvYUtvN0VCRvnNHC7RlXppfmHNtAuGu09AeM2scxWGWqZ2fAf16VwaoYs9ujaVXdcV0KX2DOkvLV373N9VFxxVdhM1IWOe1d1CogLkmUVvGI4KLMJCwPF4_NFhx0IsBEYKCT1IGpJeEpWyCHlQ8HI5xTlXtCp5e5_I1lGVkFVEzYupGEIAE3Cgm4hrBaeX5rjOFsPpNv_nLrIQDcxBgo5HrjKwgZsi5ideFcZP1Q3mnn8ZJkUcuEJxCTSexJg1639carqMFVk_BZyj3I8J4OBKTCgMipfzpR-FPWk19YmQgV4X1EOfnDnRwtZEukaalVh7XgxgGrlB9LU4f51A7_WDMwadgElRKEIZ_RvMVGSDVOzMT9gghMe3PCTtUz8G45QmTvFV7qKxeOUlDc_RYqpk4o4g_8kASIfQhId8LpzNtPyYIWU7zr8aBbwTElsRw-n8XV7eVGkZAs26cm9g5YMFUATqiYlJQOYf4frqGQ-olnV-7WG7TktMVa54_mLYtsnPQMljOUDgdXj73IJXGqCKfKSnrPkAoQ1WIASUWnGs3G_ck-_X24vWHdDX2t3ozTO9lU0KoP6S4VNFFyTTMU5Hj2IfT9yL2dMrYIWdiwtlMf6yH17l-cV3It84DnYSB6Yrif3I2kTi3Iv7gYIkn_bmsrI3y2IZ7iw_0iaMHHMAS0vX5bqcuPPWkPnnVoltE5_4cdVYydrDKBYKlIeMNqCoAK2pJA5Bkn0G7t-hrJkMYmJaERLMrumUfrdukPNcePw_gwKcTJuRRLluLN6en38MEOOnCgTV7Fj1zh7QRURefeZwjdd7LlTRw50vhTo5Bjr8LEFaPuocqzcxJFVF_DDGESmcyTDS5e2HdzE-3feRqHdjMk-VLirtPn8djf9W-Sq4_j6TbOcXzjDQ2LRxuUEdJFr9rm_U5zPb1F394XK_U1Uk7fCP4iDR-ynIZF3P_rG9KuqazdlKdz3LVr6by8q86QM3em42yRlD0EQC6GWW9k2PS8kDC2iqPQ9dWa0ar4eq9YJoRvpFLXPUS4ojHaq1-N0XmeVDx2aB7nDRz0A3hyoe1ZVsU4vd9jddjZNMZtJBWaTAfBj52FMT4a-ALTFBv4lz0trgv6JuT1Gox6iobXm3S-vDyZF-xd9H5ezEj8XxeIUdHYhwtAmDGY1XOGnMI53iziocKCqdqp8YbZ4wftMl88KT0yIlCtfhJWrSAvVsx1-oV2w3SIW-RUwI1Es3gA8QKmCxo3Fq28jDv_4epTVBUM-me49h0LWV23KhoqRzl5nIXc65TsVY6Fe2QCgWykOKczK9WMJ0d8PkTUljxxkHq_IueMaGt73BQ5_oxpvJWQaJwX3HpWok13iTopzMQTorDQdpr_h5MdSFyqyBpD5vOGLMvdYvaXog-1ln1_s5cZNeVpnbao4r_jOJnPc653dikB32w95nB2GUXz9n02Zr-EZ7G9U_yV7Kfos0zCjsjN5C1xHXxouSndT9mHpP_EGHCosj2nt40ZEfJT6MVgTS1ATze3bZHQxHFBWeJlDTvWbWap0VKMAVw96mkU4lQ4kKayLlNOwlnsGvwTpaky2HgZ8SuYI_45gJsTLhyZbmaDELhPaEhQgv07upg8uykbAQAJLKoVe6T1b6-Xhb4BWeqUDvhP8FGGMGTMDMMdKm8e8eOT4hREETGuDbwpbg_6Vcua-DtiItJDHTYawpbyVEFjC3imQfTUz9PbiHu0NEPXNco6OAjMJGX3cGrZ-6EysDPVOwEFjv-Jzbwo9WYcfJ0NYg4PMtbccVO6QL4Ott5Fik76udf2QbAJSyyonkID2X2XBz2n9vcQUdYisaHlZms6w3cVneC3lIRwuHqXrkcTiBKUJz5fRqVC8mVGLc41q9EKtCA9X8cULys_3hq7SY-o_XmU-imRdWD3WEI1NEnw9AUFMOQRS4__LE3amEp5yFmcOfyDKi8i7w9JDu1yIo7mn9WHuaKDGJZScKoqxgIwKbqrt-yjpzAIEGcSk0d6TF9Fb6G8UzXZxYAEEv3FEfDZcvst2ilSvl8_apN8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ea8333c09549-77890035','','','2025-03-31 11:57:55','2025-03-31 11:57:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42792',0,'cd-form-entry','',0),(42793,0,'2025-03-31 11:59:10','2025-03-31 11:59:10','{\"email\":\"patelchiku20@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"2\",\"currentpostcode\":\"S11 8BA\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw-qi_BhBxEiwAkxvbkOFxOjUHJ_y5cA_0qQFj02cgBguJ0GqXbelQhm034k1rEWOLYQluGRoCrKAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6u6pTpnljvs3NFbF1ctFA2BQjnhI-byhwH-TlXiOQc7BqdW4lTZ5x7uAt_625wXGS8JNteufRbqT_kM3AQfJnU3xjYfT3xjsLaUGns0-vkvGij2R2V_qraGgRRDm0FyHnJatGlHlJz1KAwvoONDJeuEY-pWa-WmcQiJrnwAEJrZAPRm6k5sPE6yRM__2Q6Tx2sCXVLiqVGQLwoq7H_5zYenQ6Mq5uvmhyhpyHV5CfxcFP3ZCAvs4S5Eb8JsUsO3jFYoQGpVLpAdIcYS3NuODI6UdecN_MuyJf2qEThjag6F7Eh0egYLLeojOEzhVcRN7aah2uu3Qi3xQQUb01WetuGy3p7YYg9p8Hu6OHBOKz3aSACP21YAjz7tC1He7UoGD-xQzJrOJJNWTdGH4fk0g5F0CdJ3aAWLNHvKlbJvqS3wIOAY5MjVy3D0oaeZRM_mQPyVWi9pzD5wRqdlQs1b9NDBTcZFqI23oCwPPLcHGFBV0xOfeGeRqUL5ffUAThZUJ2Y4M_VItOiSDZ0NzJLsUe9ubu8wEU1pN49GGy1eEP8QhgbyJ5pOZeX3Ur4GBawoj94z7dycw3QXHiYN908mCUVfRA6IQeT8rLdAdKOKhek7ejNRWS22iIc0VQ8chYufndTrkTlGy8UG4Ak9qRMDj3grnN1Wd5ULHK701kN58aHF4iii4HU7UfK5e74gr_3NOH32PSTAmiF7dmUH_YFFKDENccjPCHi9v6r-aRX4slMOZfmDFBuFezpQWEEN_ErgC7VWajT82LaxGQBm4S-NnNXiWFy1C8ehBAakl_SHincM08tnFdvdI0Oxq1KjNCpVzNdWVx8fLrDkgMo6k4mZthG8brGqbyozLC02CwmH4rzLzskOzZD4vUZggPe6SYMo6urNDxMYIJrWnEvGlYQEMh9n1W25I9lLCHzJLJDDL-l9IcM_WK87vDiUJu5fF7QXfCYommX5s2hiwp3m4vBfZAilVCiKm7V-uRA1FadpPJAhUfwUVIe5qBSjBsOTaHsv68E80LZuNHPnUgYmCPzLu8eDO35MfeuaPXmiX0mYcxqcF6SRRlSrb2uPK3QW6zp0CNgKpzOpFZTADv_XV-sb2EHYBJsS4muy2kj4aRiR8Y1Vlfg2yXE44Wi23iO870Y1JjD4BsdgiWnLLkQBjLeyc7IIKMn3lZBXyKkUGSkDKOcDfBckqVOrzlsv6Y4Xwm6MwI__FzZVM6FwBB6qSQ5BlN4gSZ7wr5zj_hONbPd28AJwp2lYgNupKLnzCb5opsAjbwGbPUQ6xj8xK2clhGzhNxsPo0Qb3VHhkPq-uq1cQo7DPdjKARJlAY3EBMb0iiy2ZzXf8u_3UL8sW5KeYdPqshi817RRzbmrQ7v6Eyge2lRfr2D5_iCkuOQbBMn6HX3QochEFMxqBGSFqxOwILabGiA58jy81sgIxE4ldZERwStwWpPrCQ1hpqBdVdu6OVJ2-n1sm1nu3Jbx247jaNiZ9tHcCpud3i_Gjci56Z4PJk34hMJxfHiJazzFH3AmxPwdqB7o9AD_LFfrtRwi6eJYMxw6P8ZmTq3BkbEiXclJXtnRbS3SbDFxTi1ng286VXe5HiNc7YS9ZKNWStxECreGU8-yCM-GpTheujarNV2a8qTvHITwwgXK0kN5lQNr_bYvve0YswdfhcCfRY2nfHMMiwxgigveLzqldViSDA7wG--fqkTjkbTUP628N_UOxUHQBgRr0mcwpjNHzfZgeNcsLv0lqz2G9WaJ49Q7egwEvWjgSEqOvSaM4bn2tJRIguXaDkFwFvenM-QOMtbYidLGZu1xgtJa1XSK4C7311myHJ8ynSUT_GeCY30GhwSvKtl1rsIGlSfDRXfF34EgxBFy5IjsyCL3zgN7E4eQMQgwjO9syKIdurD_sgMJnPuNcg7BjZgYOtXKec90gPYoSiOIJVlyTbq5QboVtbV6y2ofZ_-Iffe0T16QekENt42gQ-_TpY1d4ZjIMeEfU0BCZ8wRLXOsL0DvailGHyAMS3oU3zPSj8_hQQy5UxLs0_MDQkeNnMVVgkwDezGcvtbjVYDEBDZRcADJOzkFmRQlgeb0DN6jMRYdhOvFy3cnPCWarxUKgFiEm_gRg8I9mqrduiUNXaayjwY9Ajqki7Rc221TNlOvRQvd1NJSgQGkoeG6ki3CJAH0PJGRQHGePV434lvxeS0om20AxuGbl7qhPrmLddGOV9aRnF8bfDI2JdaMFLi2y7SKcqluGR_EEclmHihUmM-q8vfM8XGiGlaf1FKWdc2rI0-GYIlyBahUUZrAlpOXbtZzX5eCskz6iHEC45BUfPM3JRSMg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"4\",\"workindustry\":\"12\",\"livingcircumstances\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ea83690da7c3-41099637','','','2025-03-31 11:59:10','2025-03-31 11:59:10','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42793',0,'cd-form-entry','',0),(42795,18,'2025-03-31 13:06:27','2025-03-31 13:06:27','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-autosave-v1','','','2025-03-31 13:06:27','2025-03-31 13:06:27','',42635,'https://biomechanicseducation.com/?p=42795',0,'revision','',0),(42796,18,'2025-03-31 13:08:53','2025-03-31 13:08:53','','How to Choose the Right Biomechanics Course for Your Career Goals','','inherit','closed','closed','','42635-revision-v1','','','2025-03-31 13:08:53','2025-03-31 13:08:53','',42635,'https://biomechanicseducation.com/?p=42796',0,'revision','',0),(42797,0,'2025-03-31 15:36:08','2025-03-31 15:36:08','{\"firstname\":\"Kayleigh\",\"lastname\":\"Robinson\",\"email\":\"robinsonkayleigh@hotmail.com\",\"contactnumber\":\"07921668455\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/imovefreely-instructor-programme-workshop/\",\"recaptcha_token\":\"03AFcWeA4uS6s7tTgJ4yykMbf1PxDWA6hwdOeimtf_C7YGDOeMjnqNcnkxYj1eAf4FlG72Ami3YwHfZvV5Ug4q78jqCppIonZF53omRZ-SXd_QewQ_34SoVsL5ZUGS97KGbJumdmoc4x_Q1WZk7OYrY2epmCZ6hcGYEqHg3XzxKTfPsBTfgySi5XqMWG4pT-lr4eSG1WFIp81ulTejxEftctecF6L6LMWL4bN9Cp-sJHVtgAQ1xPGvESoDedZRJbkYIHLxIbaJxmo0d5CHIzMo9mfd4Y7_bunpPGamU7W8rX7DRNZhKqqB2k6IZm35aU7IIsVUSqsPfPLphKot07oO0obe-eP5cdVwklDiGSE7nWwi6lw_dTnflXpG8Nr1mKQeVCsUjJdIEqaHAQ9_KVM3uccNHJr2QpR_hq-F0hWytqCDjr7euRJ40Imu0yqMIb4ybnrMp_VCdTRtKM4WVTDE2Z1_ZGOSOmqkrWx_FswykPuzp7P8PUXvIuZeZB-gSRz8fIw3SzVNzapRXCKSsXtmh4Ug7isz7CNjWglaWqAAj2YMzDXVyOq-oX34LmivSgSoo22S4YUX2fmzCdvZOMIsUEH3aBQs9Pze1_2kRnTcHI9jC7QJRpm4ENG1mcP9ssAv14uRtcor1VrxcgvLuO_9_dinX7ZxGRGQIeRHpAr-KcHNcVw5hZDsBIyrduJ1klA5WSQRBjPMaQ5goP815f3qKkehbhRaSX3VeioWs1IC8V4r-d9O8DQrM2F_HqJuKbucl4Z9JCfMjwgJNUCRRaD7Tsbcce-7TFkn1zJufRFT_7vZJw_lMiu8dceoJIwyTJc1_vamNmTBN4BWPur_rBaXgtxciWm13r1YT29y7iXFnU42ovvQxK-qmDkJd7jdRKlp6SH0uL2xNF3NmhaFvzAWvJS_GX88723aZP4bYUjkf4h-MsPBiY2IRsiAtmqgJyRj-C2j5YiiH59pZaJn8ByhYQHXy8XkAHsAMfqOoGpbXNRkQIQ5MOLpLps0W8AAO1sY9Q57f1_LKeS_mrcdX0oKf6POSDxdZCKaXJAyNEvmgvvO9bfkxjI-wLgzk-xNPBWETihZ2QcbH-djHL3vaL4e1QKTgqLBD9_fLYnPcv7Vwg8tr5L79jlRo3BKT8u5Nkys0Xpuih4ZQcsjt4_w6G1PgCqiNhOb258KWaqctyfuoYnnAg7syAeoxxGynUkcP3UmPAKE6Fj1kyBrFHPj6zZmi7IWEyTC9p6atuxpDYKA0P6ceUGOdgMX47z73hjMPdOeJwxPxzUsEW0mj-yUGDUVnaA3HhrGa7L6mMexJC57UAGBT5dgXb2loMmpzwBHbDhs1ppC1df9YzO9nW86oisNyqWgEm-RfZztYlmVXQ71Iy-M4tglE3y4aVUm_s7b-WggBeW55-AgQaaHI3nOUsVAbZWpU5d3L0kcGEkiAEdu7HEQuHtl6MP3rLtHltyR_OK-xCYcCqjMXbKSBdDpte3SDZU6yPKaWkjtiol_9xcQT4mF0j1fcF3HQsnl0SlDQQTyWaTbE-Ru4476j1bYFfcPsWldSb3dolXJ09fYC_iNezl8noGJLKi274CXEgVbMSYk3FgM6f-YWY81p3Q-xPrQM7JV_qLe69x81HsrU-FQdS7YoEM5Y9gdigcSmBR_X8vcCH2TVRkqHnBH5ZxikdeJ2H5oVEa_OldZpm8KYj3Oh_i7czdi8Ccr-czx7OZr8QQDdh19m-YEzrv6aEzM2yzPQ3VY5XhOkp64fJlK4dEKJsMVq1zP5d_X-efUzUbJBDs_VhXC_wMYwH7Hj9uk98YWSb2DS9F2Ix9n_r4arC2DToBs53IpiuJZyykTrFtJPG87fAZ42nsLq7pHUzXxhjy0nZmxEFLndy4k_EzzPZAZINjtonyCb8WJZGPzXxb1mJupZmn5F_RGeoH8pU_shbCQ72HG4v9AYkXfbFZDAlZPBcJkkkWESQ5EivgNx1Md19aw_YtiGgJm5ZojQw1wTxq-Vj88G7htK2-aopq--0RjF-CiOb3MmnfxhK3zJsURSBjo5-iPWS7MuQ8wpZMgrP6oRL6Qo7QFaeLyLY8qjA-t_r47pJaQWnw1OUvaL-1ngR3SoD-e4qh76SX4FvloXGHetGzqbPRDw4_Nz_LIXnsMWHqoKCwc1aw4QG9TbKhYO8aqBQJTrprZplnRMn9NDpjhQxFZhuQa1OYYcBtmRmDH-H5q4F3VtD1EfhnVsBdgIuHqIBSYQMrEjpbdIBZr49711n2F44jE4YIHP0FgE_zY6or0oWyhR5ozZ50\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67eab64eb7f418-86854310','','','2025-03-31 15:36:08','2025-03-31 15:36:08','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42797',0,'cd-form-entry','',0),(42798,0,'2025-03-31 19:52:07','2025-03-31 19:52:07','{\"firstname\":\"Lorna\",\"lastname\":\"Tudor\",\"email\":\"lornae1@outlook.com\",\"contactnumber\":\"07717495374\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vnt9pJeOCM5iCHGUNmrZ21Q&amp;gclid=EAIaIQobChMI2qLlzou1jAMVrJNQBh3PCQY0EAAYASAAEgK17vD_BwE\",\"recaptcha_token\":\"03AFcWeA6cNtunqNIEAh2xVScC_xwFBFsLDEf-TSAd2cdeKb1ug6VhwXg1-rQIVa73HkHZPebw53htgL5PdV14KfibOdYVGwJLJeNtkChZqLPDqfIAH7Cx3dYyD0ujdxkb3dj4VG1UiXsSSE8xH30YURi1A1o0f_RhEsSQqJzOQbUISNWO-2IfXvABRDG8ErfF3Cv1QZm7whVkVue9LHtKe1lrbH2jK5y6g2zKjSyO-Z1YGwdQXlebZsuYf2C7yPinCWREFWbahL6KfMOfzyDd-ARv24cze4-sxr8WsL32eUyfT9jlkdEjfeNfEKnCAAErAO6STtNOdAYbLjMeBZESD1xK14V3DJct-k79cMpPwK_ThleB5CoQHnVd383G-srsuNsd0b5qDS1-DDr18JMAEUcH4T8oZ1aF9dw00wikbHOlFneDXp160fHIybxWjU_gnhH6CVYJRZqhT5O92ExxQOS6lvEqYC7Ad3zwBhUVafC7AO0Y_m7zD0il312u7C6p_fOMYNuF1cjY3VBdJoB0x1ZGIX6rPMjLDrUlH944nP82F7uWS5CkxELUbXpBZR8ExH4mmIMEj8B_lhZL4SO_l0ZTKYJ9aYO1k64hLgs4A_3o3l91rOWT66t3CkkERZ9katCLzHQD-tVCB5JFa38VdYtLEP6OVkZQnM_3X2nTM7DB4yS3c-PThKB6MF1BX4hyOSb8JFaGc-CeghQDupGbRoZVPwtaoO_YflLRHcdb5e4iSNHVnlxIe7PHXuNyInYzsbfQoBxj-x12QAlGptT3nu2SoAmFfWrh1mlYnwIRibnjuRE1Rh3Vg_dOkT5DP7KApjhqPiGyiKRe2rP2veVVoR4f0h82R1GK-52rgr3EpdkPMRFkB__vNZuKZbhDQFw822iznCN8fU5apjyRQ9cP6PaMVaH4hQDtqwvGHoY0C7ItosWwCmF_IFrcJ2p85lBdSDJnrpEFDeN2STn0j8LTrHWVN-1CP0XK9YqypRWdW8DbtAXnOoWcJs-UP36Xkx9PsQ5Oh_i01kybFnrLIzNVmsW78msfFdXHhYE7WxoMJ27_KHV8wHV9zvhIapQfd90OVr7tTlj30HXosJtl03max8tQNjIohaKvfSvWHu9auTi4MF_YZYmTKy8iN7NUcyeUXpVubGfEc6daPWt4oEZv2B2XGvhYBX7oLLvy9tDbH-kdEGeGltRpMB_iYA5xSEZiDfA1pIaFGOrNdKe2WlHW7GgS6Fn2QY-dEh9UMKdtZXbD7Cf4mO3SO0DVq_Ei0HrnOSosDwngZHIOxmuT2amSpdHTvgYSthoo8N8s2ZondnaRu276vYsBw2Rq9EAIvUPYyA5KNXvIfmF98ICnssXoTP8sbbqDAOW_GOtbjtqoLdZhqzm2YWGW3-YLWBVQTkZv5cDfnEhXhP7Mby9CJsd9zo2qQaD70JM1tEt1rbd2Q3SI7HCb7khtFiih8pCs_CwvVQ5Dzxv80kcnq7uWSgc1CaU09-Mk3FmnbA181_YuHC9SreuyvdudA7frfK5sRnHQVkvNXeRwKzUvW5rqA4fxCswbRTGmjkCuZ8K5Zh0c7kNTrgFvBGz2kZmgox_qyAu7mGyZJt9xd8YVzT-uYNjkav63964uESBPzvHRiMTO8Q1iFuHSoKjgQXtPaoNIK3cN2o2iEd17vjt4Is3WM0v6iTIQLf-04YP3giJ8CUqrTxWttZmqcgH7w1D6iVnvBQJapvxv1yzX5TcHaHZ9tiFCKaDSrGhM0MX8CVtEKc8DzTRFg-gQyuYjiCdcmUMg2NRVLwiEmJ212PvWwN05qa89R9zVVDFCnNDM1X4aA-0c-oAs7vT7W6MNlIqMMPD1ZcSmsHYlSlGPVBY6r6acme_0M_F7pQYvVTXtsm6BVOmyohuDpCmtornynGYcgJGROiMxpxuXTlkLvkokPIEURvzozXZsLtAYZj87hAe3tfJLgm9eBMWJI84Y2r9x7FZGheaBMlMPKUAodBcoJ9HU8XKQUjl8GMOfyEnNxtKKXmKhcO-VuEUfFiyQKycblhZif0kH4bzK56ROD5Lvh3KBYBAmXylT0M2eQ-M280xNrulBVsPr0hQrMFGFsmpWmFO4EOhYgDYWkwkzguDENDyuBeEaDZFwBCaKne6mhy7Zbh8TMkDVHAv3clkwanZKn_OeZuMnfIyEs-Ac9ez7b3Y2Izg8P_chMHI6J2yu7ITWko1VW4t057-2GBhTEAMAOEknsQnq9vaRVH-JnUWRWsBiKCD0NuXHcwnRvHi6QFxF3rnZT7xkgrK02Bv4WgLpXXuq3ZvfUaEzgpiYffjDAoM7P4gHzZuxSTPbVJth3ur5D5zNe5o4cinRvxANmIQRH_cFKcBd-UKG-1WqGi78ZHsbcYRCdDX4j9tnzxI7Yw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67eaf24fc63567-84123840','','','2025-03-31 19:52:07','2025-03-31 19:52:07','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42798',0,'cd-form-entry','',0),(42799,0,'2025-03-31 20:19:16','2025-03-31 20:19:16','{\"firstname\":\"Sam\",\"lastname\":\"Abbott\",\"email\":\"sam.n.abnott@gmail.com\",\"contactnumber\":\"07841826149\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vBiOshiarSO5QA0d0ZNCVwu&amp;gclid=EAIaIQobChMIs8eT5o21jAMV40JBAh2uRSagEAAYASAAEgJwUvD_BwE\",\"recaptcha_token\":\"03AFcWeA4Wf4SNC5UA0mWJ3lIV7YJcSUAOusYKJPVDIjq5FmxiMuW_Cv5R7P8ABAQVgGTWIihoGNYIiHxZZaFaxvgFGLw1-VwkRj7o9pbTsluCt02iztCcdbab8b5o0C6EFDcOdKbe8VuLCV8Ew_y2nlZaQZDIX1lYZcVToABKKb2WcFoxMTsENKgcgv6zGhoIe6TWjV2Mq6gtNeE_ZeA4QufqJVMQU0ZmgYAOvH24KCg4ByCnUEusD01FOULUgeWAPf354165ca6mLp5ehMcp4W8QRQy8W-QLqBRqxJ2tEM6pVrZGKKzlR6WxGA201MX_tKax7q3h0SiJdwyhm1eKyxXFVoBK3sr9Vft46X-famGs7TYVlGUIzOUT_FCwfyQmpraigbjbOkJESQdEl9XHNGLfe7vBBrTYCL5NgFoB4FvvElz9ENnZjcHH4MDDXN77PjaxUS71XCZJzpo_qywbeJ8PNvj7A0AGVdETWke_xd4Dn2t6w0KxFDrbhNxfiJP9bXdNgdPhJYhllKeusr2nCeyJkiSwikwglxHzxyE7AlFWn2IwGvA3C80fObySpXlkjjuDYksLK7YGmkF7ua4dWeZBlAsUE_lJDYYOcX7bnQqtbt6n8-qyKkktDAkZ6idxNgwiGgyhKXXPNyTrFtipAyqWDGhXADQpCy0sgnLkMCat1-Sg7O4Dg48Bq-AbZTozLyhniscYlVlC6tU5uFCBj2tvQTVjrwQLjsHo6IvqQ2WdniV9ta5VBPKrndTzfemUHvkUdg5boPHeKgx1-9JYMQg4QuYYOT4sdMFG64wajT5Xnkx-xWG2jYdrZFgQJQyW9bKmt26VZDJaRyMv1XITyMDHlZKjhvH7QsitsdgGXEoVpxsSraOKsqUfw9kpz45qRjrvg5X8Lzw6sFUilhyh8xgIdRzM33hXSTHNAHD-piI0cw-WX95KHAogkPJ_T9HmtEDPvJ0O7Ze4JroDaO2pqApH5O88EWH9u1__F_-P3rlMn8XFAksbyiIJsg2FXMeXSvGZn2oI852GELhxj15gdlAH_GWI8A70nUm5C-16KbImtTVBPdgjjUGlXvrxO16NrKfJW0ZueaPBdzOWNyolOA9KCT-zRdQ1w4plItBn2CBuBdw6UC2D4M-xMR3PyBwE3xyGk72j-VMSHwNfrHjYBfI6uimNpn1RymwK71w55jIENkmt5lTyA8pCbdopYqdCStjjV_Jg_Xyj6r3-cyuwtwDbU0j4YDIt-xs8OBjKieRoPQme3WRYh2e6OHmzB93cSouoFdjcUIzpyrq7x1t7EvMqP_BxWQBqsF8E0TaXnF_SJOpE0Pul-FYaGu-tHJUPwFlIj3TjiKul05Bb16g_6zk9aP66tggqd6JNfV-7XdJESz1_O1wtc_jqG3LL_GNNm51gsjw5najA83vsDFu0SUwm7Jjq_XBpmCyC-zvI2NVCp8g_1oZ_Fie8bKihtvMYJt1h5Y-ac0FO-IXVy6d1bzAtHEPJz3sbvzdF1169sgJZlvUOQmmsLLT7rMe2S1JeRAfH8dy3Ga0hYKO5LPAlIHfYd0BKgb_G9WBPwooAZnCNVbu8Gsn9qU1MXOY0Y14EcQSpEkvIaE3ctj9u48ve_7QkF5v9Iu4pkczKv0A6pVYqm265dYHDmAbSnh01UO3EbPDC5TJEw-BAcBGNFzImG0pBff8RXYy9_3sqzzO1YMiI_CoNtpc_1aqzuZkcBJpiYnnnnhXC0VI1S_ok-7x3lQwMj7wcz5E7Cuc_Kyw_6AzeQBf8pz1xGtQ2zbKa1D5LeKHAQ8XbX7q9OAuCE9mZsUH9Hui7IQHil1y1f0QL8rZXZG9HEyajf78phYkrf45mzkU8OPvJ46QeLlGS-uHmVfDLRXQwJ5PhVR6fo_acw3XZKtQVdihpEGR5Sv0k6d8kawhz86flU3YD3BWIi5SrDfsrBM4hJ2wpZkh7ej-JHyyhYRIKToFo8kmzdCIXdmfGihy9NADAfuPmd6EHNc04ok9PcAS33NnJdED3-Jv7SzjABYWwF3Kvj90PplHBa7gPv-5U2z_Ed1YrdiyVN-w0HWz3fVl4VF-w2Lxh0Klz_qNskSWlAZKikSNXi62kSOqaqvX3O4SoqNSaiXcMTchK9PVG8cHPot9LqQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67eaf8bab4f146-81206231','','','2025-03-31 20:19:16','2025-03-31 20:19:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42799',0,'cd-form-entry','',0),(42800,0,'2025-04-01 07:50:22','0000-00-00 00:00:00','{\"firstname\":\"Victor\",\"lastname\":\"Pereira\",\"email\":\"vmrp1981@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwna6_BhCbARIsALId2Z2fHgd2lcfAb9jOBjWM60p5uZkwyNPeBtSkFT4rw37NzWt5XG6tKDYaAhlWEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6oiEBVzNsZ0Pbim5Yx9VTiqvLSFaLRM5yOWUKiE_FcGA_EFdrjSnfJBsUGEzoacSXVeo01lToiozSiffOyX-M9Gnqq1hqoQ6LlZHhxU8j5ARQHHvsn8qGieeymeUSvBLPxDD4z6aWVQ3eZsPalNn7e5hyDk33wMfyiJDoT_W6vAiLFWvNMtmvn_HcBJj7AFG9SWM3uqVPa00KleLdiuq38MMQ5Vq-lD8no1TCrTIC4YdA9p5XbB3Y0tHQUWAl_yD5uiaC_fiP9GDz42O8BxtjQ5HECyAmy2GKaXvbRz6E4yWyfWsxgGvmmMBntiLvpAw-OFfeX0JncQ40iTw1wRyoOG3xrBCsV_eMYK9iJq6JeGYMvenTc1M0Ls8yshtDz9kNGwT1XKY0UPDKg-c2dwkjxEayDAc3k_qeRn4zfmbP6-4LqLs0ErajLlT0KTwBFHdU2SyqDjtUBXUBG7uEdORIWnzxptTge-yuQLmHn3LCxO_Vax4jdp1v9kp4LsVKe_lVJNhze2PulNDbjTYy-4zpXRg5W9QeGVmiA0RgU1Vd38prxB2nvFyR5SDkPcMwKhp11M0EI6Nyn1dGxgNaxetN3BbgxuG6Wz1HwNbgo2wCdCP8leI7bLnLghFtKM6U89EU5Wdkao4BqTi5RYUQsxC3n7zPEGBv2qwXrsQ9y8q97FkXayhX5FC07QtLpAinAYIEM1_HW2yPLDXmJSkGWuNbVTMtZMVHyUrL2b4YGq5mzkOXc6lr2PL8ErN8EEWK9TQKyBSY3ten9EfflEYFbxAdlJznP_M2JRPhzFxXM1pukKiVg2VvJFcpZul58kIRazUEqCWgJYIKMBep_NfQOn4h9j1hmDjRJvzQXyBgS8styX0b7WOaMnGpeOuFyFYXNjNZGxno62ToAfZOzAtSb8lTXTWb47eyrQAbhV_hbpldQLxQjwejsSWpoczUUHqD9asNuRwrOhfGiRLuLF75zhmJNRi3fz1QIEF_m526-roaDkhIRwHoYNvjJl43CLswlYTImBvOWGfI-xPyc5cBcHcnb9cFpI4iLlFs10_nJqjBMhJZvSmFv9H3wVFow6DI3Fdr-4tqhgxoBWdFrVfDEwt1DU94BPtWDkG3FZxyyx55wUH4d-tl09IGGiF_vRGIblahWpvGZf5sLrwXODqk_FlziIo3i-pxIahRnZX6vUmr3o-_fdfQcpqB7SJEDLfX1zXajZBUqHbdevV6Kx3s3oohGsJJBahvB3iW5M5TX3zAyVWlGNt3lZ1ORMEHY_prexBIT1kh3F3BMHo9XOjp6FxAel7TG01rpWAc9jU-fk70N3kDDx1_m6OlwmwgW6Enk0fQkwipD7T7wLhW-luppU7wBy4CK4AUMImk_0aOfo8DGIv2vOfrr64-u2DujuXhVpSRaGpar6iBsNINei9isqcAyqCRuWF2pfuTKUDGXuif0gCqEMXBPzyrKQNxolX6ixh_drTfbCLBJf5mLqrsYisxNUIiXYDQspiXOUJthsdDlhv-w0UIMDDaoUjKQpkehrxglfLcrkGvMtc0hCCgkIElcDFfilG4fRXMnSCZiT9YeSRPyduP7AcpWHmhm-bWxuqGIefyr_fDPRxjJV9zjlug5GjsF7EtL1ZQKQvr9NzqcLM9WXdM4HUOfLkmCnW3KUDgNUhnQZW4tAlD8Ir09yIvt18CWusq17zE5iDFzjO0SFgiLTEdI9c-SRj1zFj8ATNbS4C1ajvRibS529IS4Ly6oQt6p2Of6W1JCgSA3KQ_R8zlP5K9bMEf0FI3TjFkg_i0rVtwW2Qf9665N1djvZEczAEThvjgiblJBGX-P-5DmetP21dCuBo-ip3bdUUdjptReI4bl0LlWRQBK0W2YE7YGzc_1jz4cvcBlUogIBo5HqKsyo6jMRI0C6_jmyZqdFXLPa-GvGtAS1Y4JQ9VlJDMwtOUu-IY7_N6f2QOsw7TbJWqQ-3QgAPm2czSzBRetf7S9H4knYSfFeb6HcfCR5S9Jy87z-02vCqfGgWB9kUEE5PYHxM4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67eb9abe497b42-29816587','','','2025-04-01 07:50:22','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42800',0,'cd-form-entry','',0),(42801,0,'2025-04-01 08:30:15','0000-00-00 00:00:00','{\"firstname\":\"Judit\",\"lastname\":\"Oravecz\",\"email\":\"judit.oravecz@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwna6_BhCbARIsALId2Z2UPkkY33HgtdjQjo7eAovoqUlC2e_S8dW6DCgBaVBeqN2Bxlp5uSUaAvOBEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4WSm3Ghqbh_DtKmr8r5auXUA_GDxK5uEHqbK2iJ8MhqlJyhBQLHyra7Zvkomm-r_IMB-bBQ88X3BOz_WOCoflaWstnLUZV8-9fsHA7fAvyic4zCeewMBY1h9naqE5STKCCIPRuchkOvlql9eJCzfeVt-gJhFYGuaCm7lN5JNoGB1O5_wkE6_Ib5lq3dcpstTXp0gnd9AoCQxdQM4eEprCg9YSl_3T0EkLkVN9xAaX0vQyEQ5Dnz9gF_LcYiNd8Q13wleWj0mejJEr3FUpADE0i6TdoK-vP0tt-kgHM-bo2Mlr-HWpUewJ-2TwsYN49wTQT5hcj4Si86FZTmrcGnLH5fqsCMl8I6PD65phU9HlYCVwiC_5WzIpLM3_cOdN4Wm6X66JX48-n-Rel6IBsC_MbleiHnAQDWUVpNazHZgBreYemUgk4_McS0F1mmfsfi94HXZVgX72lephBVZpHnvm2mJ9lqve2IGGnluyAqF3aQE54grhdMLj_tscMRh1lyyPAWJI0DVlPH4uIplgLRkGPKdLLJfleRwpoWgG-OUyPkq4cZJQz3AQymcBV5Joy83mCc20bQzyZBQ60TApfvgY7z-0zyE3kwMMpsEANOgd2mb_Q51bz2ngrDF2FFjM2juFWYrnBBqyYVyKGkhuwYSk-XcqSNMItTWcqWOcpwgFb6f9DtTn6rbZM8W6HmZKZlDEoNZj0LXjJpVpHDb7r8heIU9n9ts8Ac34pt5GPLh32Xa4zWReyIlQ9azMOGksVxfMgh2TQJuea6EkWTy3ptEuFwv_9K0UkD5FBqk_nqBoRqV8LVr9rHUR4E2YL694bdERtAc24kKb1FuUQkNpzLR2yToPWzVleQvoTAbfE7HE3VrxVl2NsKcGd8Yg9eyHGDCKZIDdWlfaz0rlEyfna7vTE5ys7XPWgNNGzNHkaRNWlQVVJS7k4uyDx2Rl7iR4CZoPNvdaPKYHFIlz4jTcM9NJ2Q352ccPpwQ9lCpjWON_XdBJLNA8AYgQSUTWFLFGuGMqeqLJcyWTeEMDG_7wM0dbO8q-t_Y_Hm5P-m9tNUvY4pixuPy_tFfBOGQI7XRwAP0QEHb4hc84kVfu8hvfu9dvuv7U2JvI5xaOG0ii0k2n2x64zpZ4Edo6g3DOsBfklhgxGdIbrio6MzRvpfMlR2OAPVzpae48IBKEI42hoxFHFh37k9Xum37ujFHwkAFUnvFVdsKzBkyvkDoZk1xTvfNcWBgFOwrAp_vrqu4Ar9Y2WE1pNAEjfPBYrdHT_c42EHA0BKFHyfO4o20poZ27Ylh9-P_capyExateQkuDl3hAtIBXFqYCjvY9cXJsVMxHIxxZ5EiW88to22dDNg7Ww_GvA4AF47huwCxF5XfxrdB0g8evbL3sM-5ClotgebMv8s3pnZtk-CrEHdrrmQ5sPVSr4Jrci-pGzC1fWOiwzFma3W2cNrzvYVjeMDVTbtL9afzDKuBiXD--mAaQbjlkyaJpFgq90V7J-sDp_79fA-Wx_pGgpAIgMuKhu7rNWwDHbzvCMtiLqYcZs8_l0yxTdaeCwk38tPp2Vz_UxRugOCbM0QkyN4JdCOWwc36BFVFVrPhAi3UFHra5o5tq8fEa611ODYWDDi3K4MNWETBhqXHQopsG9LvtiwoxRQoAlGgLqoQZQUxilAHJIWKLSxWISMQJvWbSvjNVDZRz-WtUktBBUirvYU46nIJA1HSEDDZYt2J03ZFVJRI2g0sXDcoJixy12Z6SP4WrDRngkI8SvuLrPUdaCogr8cPypAYkrp3Nu465UvuWCguRqrMDgMRAXvMT5WXUsoy58cQ4jtZUENLYqeTx1Bna-7vJIkkyc-lBTLqhzD7DBwQdzQ98rSyjM22nsyE0yKqCLdPaoKEHMKNflz5XJEtGOY7oLLVZLCmv8wssquwYj6PUrJfjSg-tr9Y3m04c7UpXRC8I28mNVt-dOha4TRKkoeANLFndAahwCh5INK5cNxno5Qvb4vlkm53ENOrMbj_uV5dm61NPuRoZN_KsxFCFWIGrmYF7NHdIstAFMcmQL\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67eba417247501-98391429','','','2025-04-01 08:30:15','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42801',0,'cd-form-entry','',0),(42802,0,'2025-04-01 11:52:20','0000-00-00 00:00:00','{\"firstname\":\"Emma\",\"lastname\":\"Darwish\",\"email\":\"emmadarwish78@gmail@.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4VSBXlKy6BHtGxUTidu8EAYjn948Uz5HZIsTHGr-YkL6CJUn72IVnsujeyBwCfMIzgg0kL57IEUtlVCfxy-PskrZXuU1dDP_zdvjBQOh2OJ9wquASddA4um4wGqWkwCWfBchCWSWw_KUaoE_XLekzr8DiKLQwQm3873GoMuKNzH-UEWDdijYFEnbmsdQPlQSUqrlPgWwPlTrl92s_XHXLh2L0Wgzblq5GWMsYetvZhSZFr8BnagLAvuUckrFmW_Mt8JmcpgOH5GQNK4uGh72dV-TE_L_pJ257N4QYC-WEKao0ZbbZc_Lckof1XIkyjK_yxt_3hnrJFKH-vqCC0ew0FJtdMTYHxNoUmXTjbA09Af7dqXGYTGJEYq2SgjiIZGl8jpDaWnk5Uhcx5EIjorwUg4IlD-YvBWF1K8_cLqu1iujkJQS3k82N3efYE4WUGs8U59Q7lMZeS0X0Fal7VszVOi2E_9ro6y0ZyjyJF4agzJVNtW83wSsgF_oOAg023ym7tA1WviJauf34lP-q83zLcDAhzrSxmt5xB8wnseqIVkwYsI09n59onVSkRXiCLD-Ot5hxoO6Suzk8x-HLOVV42F5Gh9HM-ExV_8594AW8oekMtXPwFwqAeJYiHlZGKOcEwL0KAJRwme4HAhcUi8giaLe2GnToN9EYA-UkZ_DUzgw8ziYbL2LelNdm9YW0hcyuwkF7n5hq1t28eY6YTZDWaSaDt2P9OVe2s5i61nvK0C8ZIPi03tUQTFhpez4vZMutP1Xgndae-8UDTcmP1nQhHI4xs7m6QOdObVQiiOJ9dPVZAdEY49bhWrEjm8gETnLiysj-YX-N8QAL3LXUtiUND1tgpaQUZDUANpcL7AHU3AdLyNI2aVG6nWIi_lr0R8LDB--CG6aNtMaXuEfam6Ppq3_pT-s2R352PL2KPpvVb8eM62NNu_bRDl_u_dJAqfozalTc6WStgGVnYW1qmmyIxFKvj2-NDe3oCgtW4p888ZhNS65IkNNwSPgmy3H8dE6la8cU0v-EuRoeb71Ei1ans4_Xz47lFRkfRQfog2sQKzHlegHBuTYu5vnf5Bj9YrwLBgO4DDf6usop43VSRh9DpzZUq1yWkGrsU27c0lx3Op2s8nvUrs9YKVLQRUHuFS4BprbDHFn1nnQjhm7FOVCuBLtIQlRJKBMtBD0kRrHxzDWAEB9ySlZFkE3AXaOva2HbEEWnYIS9BTi28ByB2JE6wHdqxv_dn6qvpSlB5HwawrjYrABvPWlOnn6rb6OhyHG7XGyyuC23KCK8kXTzGxdThDDjxBoE2aRZShfoOsNPFZcnaOFGIG4oxXCdlU2EaBkelZEIrCrKt4onZirlTkwfw9seq9pmSlTzilI0nsUzQ4fnUGzfZGSpPciX1F75zc-SxDe-uDNn0pkXdWPStPUR66hSR_v50H3869y4pb6qTUb_A9v01Ja-D1wV7coB_a_5cIOK14fqBidVdiT3g4wTlKQrAkyQIZOuX5x909jxEw9IfBSFuI2aYP6tu7GP0pDd9th-QW0ukFE9Chk5EOMogLAsKCv_rQFRAOtfrnx4XxvuYb4uoVeJWDb8CYFSBBOI3QebiLJojOaxHb79-H6JdXcoH8NX78WxaYhxflb-pv0BOrMJ8CY3g1m9HPHqgwm0yr4w9_pfFEzIsK6Hq6eVwjDSYKGMfS8sYaEnSeC4GMQ1h1biHHNmRhjWv936K5tduiKw2LGmhuJ6u5f2O8Ar_r94hIj350BBFKItHf8dayYwZFG4Ify9R57YSuMKZ75erflIA4YGnnj-7opuD4r4j4Chzf28ktxTqWlrgwXo0kqM1u1dtSgzzzLfmS8pW9jfb7-nYone2Kx_xFob94SPH5vsIInBh3cJss5UGGe8eMOO8D2rlxvalIw5qmqOnLgzmgIE2RHsXahjOLl4GV94W_eBalUZ0ugttaIz-AnZVePY094jy1Xe56w47VgX5I0nprg4Syrb3D_N2CoiNR4bCZEypaf78haTVZQOiJZBiJXteNxjqZpBjLzcgVXGLPANLDtNA8I00Y-Tsu8Ih6RaA8QsRwYZz_uMjk1ffGfVCY6FZzONwPRWqdhxQ7Y986NAXr8fCJyBeqeqYtkUJM6vqpxBzt1h1Q25wyNH1chhaA9etqOX2TZRpPycrzY75LAvKsQtNZRzAgu6ez4_WK2Wqh9li9da_6pnWm8lHhncc1Qmpk6H5k-0W83M5F0RyWKQlGnx23Sx18fAKn7D8-Nhcdp5waSbg3ynXiTopCZrVuC5aKjD8ZyPNXLHI-702Pu67mfwe2WfFmal0TqJtYPpXkr7-4u8gn_Wkd9hHiP-Vxz1EwdMj8-mTkndwpEG_vzEHZdDwKwtsTfsxJ7_LZuhwfeB16g\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67ebd370ea0c35-25686076','','','2025-04-01 11:52:20','2025-04-01 11:52:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42802',0,'cd-form-entry','',0),(42803,0,'2025-04-01 12:22:28','0000-00-00 00:00:00','{\"firstname\":\"Pavel\",\"lastname\":\"Kuncl\",\"email\":\"PavelKuncl.ml@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39254\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7kd_CV7xKN5w2ae3IZvEi5DqMGq6KpekrAswV9rpamb1pmKWoOQSvlDegWpOn7RRZ3RNVCTNQeVC6Ylx84N6GVOF-YYDy1wSCyT-6yXraZ-3Yb9L3OyMdkXdTqLr1MJ6zRlgpgfv2XSagqf4YCRaNlyksgiqPP5wH0Tn22WMusCcLuWxatjaufyGiplvJPhfdXLrmeXPn3QUSSpYkg4a4jzRQc0Oz1In305Qeh4JduwV9k1yaBCSSdeYQJTPeqYNivSEj4bk8yzXGUyrv0FQXUqGRxPZU6gvjZrrDIITn8s8rAdexAh8-TzDWznDRz4jdclrZuTyPYqqBejTkSevLhR_GBtYZrEOG5NhxekD9QR3lAipsCRv5GE4E-4O8gv13ZjTcA51fKF51fg5MolRxstMezTwHyBKwpbB6zXGpgOWVnMeTaS_S4_xCgPBx7zSI7XEFsYjgAaofZIdstMRcnEChA_N5fdkIJ6XiJQ6srUz_oV-rh69irJElajrEQ03QaqloorYw-ae0R5ScaKrSJq7jElEpZnZygAtnU5gbbpjBZmD_i5wfkGxCZe8e3sFFuAg2krZr582TDjcBYeZM-AtD3Uue0wBnob5sG7BujZJDQzNDIOGQHMAS33arzSrmD5RzyhnxnB1L2s0y4-ESRZPXoYI6fcq5BJpwdtp4Et8ZAaqDnC7dpmqVpO74srejqN0nwdpGxFagFkU3pVmOXxuvsbhRbWNIFKyZctIN2_LrC7H-1C-rWIcDPP4KVOhW-W1P1BMTZkpwKJXX4KmR_cLC4hI9kouYTXSfA0kGNqfvMe4ln6thTgtdqH-5TAIrKMeeBOTRPLzUt44euY7i17yCeKV5SjQ2lJS1uJ_Ql8PZKIdv--paWqQBX_3cujNxAJPXsdOaqq3H8D6fCUJ4nLVAnr1mGkJtPEs8hBYKt3TyRi_oREqgebw4utRZnPwXQVYXXt3thYw0A7UfFZFuenfAuha_nplM3gni9p2iwLFH2Huw-Tdp8ak5RltQXl16auojAU3pQjtlWaiuMXhAjhB6E24ZmKqsFVBGNk4k_D2hmcw15QZcqbkUt1NxpnFXpf5LmWTF9teIF84PoOKv8mD5vuLU9_Hl50aMIRhJtVRGyrdOzsqkA9d_DC4B0AVJ6JuJY0ffAi9HD5t9y3trNBoSvfSthQvbMQQ4yRcG54Bu0JqsTmmpFfP2aFLpGoA16hxFXssEaBSe_oj7wXHdPsf5j8-ZPmmFgpdQx_84rY7bx80hL7P8k8Wnmc7oQzPeLxRd-YmI1iNi1MjcIcK2bM-8O28lx_cboTJ1_5BMrHNYajhlT2mFKUdTQpr8rD0BiWl0E_xWwK5iZ6YOCdfN6af5dgljbpUMxDsTC_zRLbkzSfq6U41xYKco-YRGZdjOJSU-fHs2pFH24lh0r3legXYs9ejjJhcS-CPP34faky15ag80BqUsOzDX6jDJ8ClCTG4D-AcsbGlcs0FvkKPjHJJwVomf3p8gXII-nS79TQvG19yKuMM1lWv1PfSchiNK94m51Rf4iN4ZqFBTIYJ4TYxZe5luiDuRTE_rtbbmJh-N1fPs9E54mD2QLks_si_APgmJJ6j-G79MdavAshAl9rOxuw1nBqcyxXnTzc28c9hfYHhIbvyw5ZQKRRhxKLZuj9UkrqHbyFJvKP1PPyOQbHYW8Yg1nv8BqUcC3pKMuEDykEx2CZA9pZ2V-hiSVdQJaGjf7RcWLgkHcIwgLa5IXyWCmHz6UbTfjVedlnoxk1MEiqHoN5azRx1AoVeqY-6bOB0W03hV7UGOEExnQmh9FFFCxcqUAlh-rOGCORTQuIvANHfDOK8R2N3XRMyxD8sfmk07mZ1MkKLcHJ20Iq-GH5nz0DsNZ_e9b4-u0P7RkvBcHI5qp4iJVMVdmcD6PuFnvLGKW0FeRQ5scJZSgrCmplUt8KHsEyKDXJNjE21rWCTKxqfsrPy1q4eeEsbbY8cdAI3H-RC-VQeqcxYpey-HPzgFII5lAM8vNuVnl52OVmD4bqEozF69ww47aGpkSTtLWumNx_Bj336L3KZ07zIw2KI_AANy4FG-7toW81krnhIq_eQ6hQtvjoGdKK6v_gLFy9kK_qM-YdmjZF5U76X0OhrA1BL4SE2K-XalTLyvQFviq7Spv4AgEGQjJmCfMHc4SVH7qXYD0CX8MdM_eYBjY_gmtEnNBs9x1LN4K1thWgVkXiWGoj_FJr_cmDph9Pczlo-FQ_rhMkWDtgSysaZXhcesTkLHhX6fr0OobQpuvPRdXTSkEfc1NY0ApJxJl7F0AVOO7\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67ebda846e2299-80331128','','','2025-04-01 12:22:28','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42803',0,'cd-form-entry','',0),(42804,0,'2025-04-01 12:33:48','2025-04-01 12:33:48','{\"firstname\":\"sophie\",\"lastname\":\"dixon\",\"email\":\"smdixon164@gmail.com\",\"contactnumber\":\"07943890056\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6s-yl10fV19yISmoTq75-oo8&amp;gclid=EAIaIQobChMI37Xbv-q2jAMVl5NQBh2WATHuEAAYASAAEgLl7vD_BwE\",\"recaptcha_token\":\"03AFcWeA5fY1V4DUItAKVEZUEXrwtgfbWxXGqEqgA8Z_Xe1C7t78Cikxgoo4MUbHYw1r9JQQCYV945npdYTzSZbKp43kN-GitNsJz1Sa3u6jzp8AqhTcYV8Z4fCGgvrjA-3Ns_rLSp66AZNOWKOSBSku4eBIAxocyyoq0kWMLRYO_v3gjMIQZXMlPtO8JpIb4hELdf2uIGzgnmCAee3yqkGFSfPOYaH9Rvh0zV407km7Se_4T_ZGA2I2LC-aw_g22eA25sArwGFD1CPULq66mQR77l3TJLQEfM4i1djD902kj_fCd7flH4nc5PAHUnWXel3PpcFDCVmghIqvNE1IqgFdWONds6Y8ObSZsrQ0oqRxsyJHmXS6zNSwbIymo-M5VUWtGQCcBel2Daw3dK53I4GjYw9Ff2R20kBspZDON_ROUHP0ik11PUxJJHheMQgkmOOjiWKHcksWWe5Q1-ZCSFSAOY8_b26_Bq2SF_WsEocbLQAbawlNccU5CvOtFwZQZMtBAkW2deT8W4mSOkgue8_EKsIXJW3KleLPAjA2ftNFV6by5TVq9kKTfuNyjF3Uyu7CkmjIWnnyhIBL2dO6IGM_bc0LtBTjaw9s2wNPFS6lC3QY41NCovRRIwC6a8ocnfFOHWvh_I7_14_mWZOrDf5X4EUBvo0YS9pEbWwMCQkgJnfA2EPKBqEeP11lRcPtzxvIZDLz83W6P_r56zR4YndUbxCj2yI6dmc0_vhq2JiuDO-JQcOlByR81y8CAFP9AEl9I0fHLcGbFIqhiQrF9NSC-UliNc5asGYELnCmIPbYwRwajKne5ASmseqhenuc8RQO51BSBBKd7oKeWv5lzu8owU2GW4dzFGLmdKIqG8el8NVTrcIMvvqLQBI6VV0Ko82HRQ7OX7EFGg-LOpUTGsrrmDoxNcHSPzFS-VspXH6yxk4oJYqwr9WgpNyxdXzEQTNHPfdiqCf21UhXZcW5th4tnkSaAaBFGaa8uyajSFxar43-Uq4eXDL1cg8vdcjh0LCw_yylij1wD2H_H4LHrfD4cn6h8mKXEEWPw-2Kp6uxElt0JbykF58u2yXyTcJtdXP4EvwQucfH2JQzDogmbRWizDAx5vFCjCSg8gIfa3ikws52nUUPTQMxFWui-Uu-9PUMEJ4BBZ8ZQRZkrMX9B3dKlYWtR-9Js2RlPHK21prHyW6KkStDyOIEiNvGtnFhp0cTsbStRdL0_hJSoGxApVuDl2RwuXiEhV89u6V_NozQ-orDVE4NuFXdUSaK9CFBTtq814cy2w2HBDlycflXWdspOW4s5xqoqqQC_kQ47a_ql5mOLtQX0ih6TObqhumvTCY-peX5yZ4ueuGTTlOk_dJStH17L2oB_hAYMeuhQsVmyXQ-SkwUaA9gk0BaFRqJZBNGOQ_bnuT3H2Tzjp7zdzCehzcuXGBUEg-XZsGLObVoRt8WI1-rR95Gt6LQ5jECe0_DGiy6M9JtvqLDFkCdf54W9ktyAeQZGADJxXQIExiZYQjotE8I7hTb3WUKHdwQ9BnBwwT37gC5wI9XYjUGa6nWONplwBFOOmkfoQV0fHWg_uyeFkHgJkqI6Pp75IpQwRTVRWgFVSchQUYnM7b-t548tj5zzVrEu2XhxdNepFWlQ5ws6_WqC-jNhx4bePUAbrkPzrpvdJS2UIKySerEc-Mr85-WYutKysColgbQaf-UMYQynw6MRiJD2Mx3J5n0qS1_Rcv5omD__YcnLa5RqdXFY-PoE2-sPpZX4oGzY7jOJBxbjyT1bk0yiwNoU4g1SELNa5-pMC75zcY5ZYqydH_X_msbkKhiJblUg49c_2c6bRLd4uL6_ZKwZBDjjTey2Mm_u0l-UvdtRjF5lmgKwXWfedUxey5lbDnOeaLUtc-6UKNeiyPKjBCbx4z5lKyOy4MOAf1CsI3T3b0CG53TFr7f8qEHcjDThfiSoB73WZINJmmbdo38kolngWWyo8dJSRdFlkh1gPDKuTKVSEEoPqjncL7Yk63wtQP-HGe5KikLXtJ0Soe5xtG1lBRhtybaN5_RXGUCwT6PWa3TUi_rFOpDZBN7U-zjeenbV31kcriEuii41DR1Wejoiy2cxJZ1ZaB94phqyFjWwI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ebdd1f1eb939-97503003','','','2025-04-01 12:33:48','2025-04-01 12:33:48','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42804',0,'cd-form-entry','',0),(42805,0,'2025-04-01 12:36:40','0000-00-00 00:00:00','{\"email\":\"smdixon164@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"da15 8ju\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6s-yl10fV19yISmoTq75-oo8&amp;gclid=EAIaIQobChMI37Xbv-q2jAMVl5NQBh2WATHuEAAYASAAEgLl7vD_BwE\",\"recaptcha_token\":\"HFb3prfANPIQ8OTG5eQVBPQBsDGhYDWCkNPn82MjIaZWQVASEjLAoWcHoKdT5ie2NDShooHB4YbR4dB1VWQX56GywcIiRVA3EAR0tub247XzY3P2suRnh1S0xad1REAFhFRgUeYERwekViNnNjOkMgK1NWKHBvNUYjeHFfLV5salYRU2RfCwlsCwwCWlxGNiwKOX4yLjAHZGUEBVMjLHtbIAkjMBVPQ2ljVlNPAwxJXlxtWnxofWwsDC14NVUjA3EFABAzMjgZcTQOM0lqRFlWckBedApbS1RjelcZY218OkdiE2Y2XV9_JFF6VVB0aUsMCCxqdEw_TmtxaGpIeXZYaloccFpiV3ZDQXxTN0ASGBlHW3VVcDFrBiEiSSd3Wkt6b2osHGFNe11Zc3ZAcVs_aCsNQSd9YgwDU2ZPTEUBZRwrNH8JF1RHe2hlVHxJYnx-Qhl8TGppdGY5H3NjTn8AFltbNyFyCFg_GRN8NGw4YHhuUFQbT1BSVA1fQQBaRHNAQXhNU1sbAGFDUGYyWxB9ehwAKipKXmQUCVIvHXYbe31DcG8PBU1HSnsLPiV6XHE3XUY3XUgWYRFqGUwwZEtwQF5JcFF4HHdMRGRCTGYsZUxgNic2flEnHVVcYHNoMXsRPwx8aHBlfEgEHWJtRwN-S19LZkIFWFtJfDl1QkwaBxlDYCNkeyZcNSkzTRNEbXsZSQluXHF5W0xiYU1AQDw6bn0PMEJhFzovQlRQT3ECeBMgPXBkG1UtckpHSlxiaHAfQlJYY1hnTmkjIFhsUms4AGJrdFxFG3s2CiopHkReTxBpH1hrXQweSE5bWGVQdGFfYxhtTUUWIBJFRHtyaX1nKTsaahh-eFZGfEtraXNYfk1dBHpVQE1idVw6Q2Nkbw0cc1hLdEELTmZgGTEXWWREXHxFbUkZfFpHb1NHHhFRXG19ElBUZUlrD1lLYVFSGHo2bAl7CHI7TU9xUGVCWWxER1x-H3BSdi9DfnlGazFRZT57enFnTnpUCnshfH8Qb0lPblh_F1McZ3EfUXN0X2tEUVwLamZJS3cWdEdIWzkCYxIQH0AFendUHhhrXU9NWwkaGFIZEFEsPUFPFHU0QnQZNWVsM0IvKXV1OSlAYABJcHdNdWdHdFNEYX1GBVthbnZOWAJiaUkXJR0SQ1ZtX3hCNWUBVR1ke3RnCVV1Sw95d3d-dk1NcGg_CVwMSkRkbjMCRFJvRXwbf2QgMEo7QUtqeVcWc3JASV4aXRBKSW8pSXthdH5jf0sjC38LUV51NUosJwBAbg4-ckpWTDhQWn5kGVBBYQFpL3MMOTs6NEZVZB9AZUBLTBAGDCxhdB5qcV1qcGhRVnxjQE5FBk1PADlcUk04KkReXHcPTnFGWH86aB0vODweQCpUQFR7dElIe3hsQVhbElJ5aW9qPmthQmIbdElqX25uC24OLndxLnM7ZUdNBzwafw5nZEhCY2YHcy9zeRN5UW9vJjt-UUIzVR1xLSkdeAlrSFBZQEdNF3R8QEFNeXcQTFpmDF4QWHJVSzoqQ1VraGRoBD0WO2UCeXp2BVpsVUp5fWpbc2ZgSUxFOVk3Fn1tfEYLDXdFbiBCHmZxLCVjDEZkfVRQTlodZnNmcW4cf0Z9SF5VaRVASk1wAi9VZkQ2SHhkKgQIZ34fTmF8dUd8dkJbVGhecGRqQnlRSSZqYiUmfAl3cRp5Ul8VVAcTJmpsRk5THEtFWnkSYwxPY0xVdg1AYUJvASN1SF5iDWVkRlVJNWAnNypPDABFUVNzeWIcQ1hraVxJaQJ1VXpYaD1UcFNxLhJVYUZ1bQ9jeg5_SwJ2WlMBclxXG1VsenZeAVN2BDdQD3glbS9FZBQEbkRgezM5fzs6MURoFVJjXRxbdW97TEtcXmd0bRFdaUg2P3BsfEcQEVZ3TCZDKmkVDSlxCURPMn9vGz8YSE5fSHABQHZzci0DXid5QVVBEw9-XVZJaxBpFT8NUQIRbn4ZD2osRW1jFmQWRmcUTEhiDlFwdGFZFht2TEk5Wm5sXh8_B24UU1RJQ0gfSEl9Sn8fQU5qQXFvY3hrAX9ibVVgKGdsRmcuDW0_MgRNFF9vY3NPQn1ea2h9Rw55QVJaKFlsWn9QbnRGE2FgVGhsRmRpMwAxcXtkOl52QnJ4f1leHW9-eHh2Z156cXUVWCYqXBcnTnhQTHEzQB4fYkk8U1dFeXhebH5PA2lJG2RGSWxOd2pbIVB9dWsoEGFRMHx8ExINMCt0CHdGNG9fc3hufQxhXlZfUHxGI0cOWzwzbG1NexV5fVlDWhMDEw4eWg9JZEgdV1luZ21nX3JLA0RLV19KU014NSQ2Ewc\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67ebddd805f899-39783067','','','2025-04-01 12:36:40','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42805',0,'cd-form-entry','',0),(42806,0,'2025-04-01 12:47:03','2025-04-01 12:47:03','{\"firstname\":\"Eoin\",\"lastname\":\"Clifford\",\"email\":\"eoinclifford2001@gmail.com\",\"contactnumber\":\"0871754075\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\",\"recaptcha_token\":\"03AFcWeA6zXwYbv858xqXdIKFcBNrErKNZLm-JzYOa1ZzppHvio3dEFuJ1LN4lAdtQMpm-xjgRAQGd4HanrqZ5lu1NxW7VHQvQrbCMjc7v4RswgkylspO3-jTKEOh6VT-MbkUHONvS6QFsPpriJ1l8cZ5ggzBBDu50BSDzGHpmgwqk08G_bR94yN5Xfub-tg988O5ougCPBIpgtVAWU1XFaetTVI-RdvRuuTRrIf155kO2KDVY9QCvSADBXz0iJVJPrfEgWXpK55ykxPoXd2t2O2X1DNHJ0yJVI-dFJSMa2OQX4VkDH7QkZBPQvnbVrGwyq6d-m4hrLv814JUYH3EBu7vHR__o88iMEcHEJ8LTRYOtHanrf_1XIQxuF89BYJ4ZgPRLBB27a-Dt2_HiBZfkUL3W-XbK5V_hfZEg5Y9ZlBzEnOuSNFeSuWmNcQScb2eCCHAnvqGXvkiA5sYIxRBkYLbfwLrlqSBdwLseG012ATgVDMbTLP1FZL75SRYN8AYtyhRLKQF9JslfOm1wPKYhAm9DHAabyev4mdbchg25dK1XZDvzW2FkwPOYkTY77MUu2tHHiXD9JPiDy_jXos4bdD13cFrTDVESTZvEQI4yT72GdGFNuvMAVnblhUBUBLpDQu4I8FMYgW-EBuTX05Ghmqy9TcMyoaeTzuP5H41BGU_VWda8Zb501bmcUu3JyJ6x45h5dGTR9vjnGJ3LwjhEHtKQttPkJWpbBWwpne-MlA42vBar26UKirUDf7A-caKNqyHc-LGrlgzLAda1DJrccR-RosycOqpEmbVrZI-nsg2MEj4YIjTVew1HFDfn5kPKrwZXVkOy8J9-brORsKvRKM7Xdud-4GuaPUaMXeZ4WiPOCangBXqNl5cSBlt8kr5lN9m7SH34D2TokMvCEmHcA-BIy3yhC7oSNlXtY3vUiQkgwZfbUt-CqE6VVGVatpF8llGEGV62uNumy8UN8IOiL2hXqXW9zqVxXQllRWf8RBrJAR81Ltx5vqTrZJ2Li_o9iN4SH4rF9-a844WvjYq8_WBQoFCvCXfEJuWngTwA7EgVWnq9VsIqALk9jHqIVb3mvjETJz3gmTbjZU7n9uq_KUMl0yZOEnYx8iicIlaRwA6vLszmaTLP015qSJmsBS0EwjqIE7rwHrcOBYDHIvalULy0iInUaVdClLK7P_6sRWF24LXOYRjMEHs3UqaaU1w2gRE4pLSlC8siVdeGg-PPuYsSCWMGxuVTEvqWTW1EG4WRs6kDbtZHTgBOtoWocDBvv65C0E-gusGjIvSeoYlurS5pARExRwoLVu83LJEP_OYfyPvriXjz9okJt1ipyAcv6NQzmxmxMIvVGijxVK5asHhqZA_EUICkNVj4kDPKs6fh-bUiBli3WbWAefH5x_6-GSOrg9uQcspPHMopn_dnQpJYJUWRYl1Yy8BQX_GCwwqGmhQvNbGK8U0mw58_1k0R7Ld6zncDd2Zmy5O7LJUcayBdPy_-QUQTRCkEHfp4BAtvwhPNFEB9PAtyr8lNPGqE7sTstHPRm7bbLNnYlmMX41KtN6N7Dx-O16na4KQeIAIbK_523FYAUQ7mE1jVKLqclGBdeN15VW1mFoBHl9BK5pFQUtV_jjsO5-t7FqMIwDsBDGgyTFmH2qW3IAcHqB4oJbPCIlU7Z8PGqU9s3YqLY859SVjoqkbcGiqut52pU_BmijvNUfHCGvPo8to8toEd2-pwt2NVgJGadF8VeTA48fehJv95yBFHP4wpzIxhSMR1DqLyEP4m2v312wk6qcpFGRsgBivgOI-1AMNbTZ2VTzT0VCfKIWaa8izJigvspm_GCvuCnXrwqkalTm3F1RJS4ZJoes9OnGOknfT6k7hI6RnAJp0JdzcNOgyoJscjRLS08WjU3S6Mlcu71GIqqCxP9b4mY0si4u7HOIxQtssd0k6zjtsMLYxfY9JN9LXbVX6YV6eJQ9Fq_lkb-Oano5FbVhmiaTL-MKc1a194xq3vcPC8VianG8iw7xEx8yxuyKXk7-7I-rSH9Dd5dt5oWFWUDuqyql6D2EDeI9es6ZAkl9IvX_L3u_n-eCNdnuCDV0t8JSCeO3RIzel0b7kxmL2zex7kI1nPMaYTY4J4eHfognA9Ki7c8uoED9YqpszKC9WEmkVru0hrzOf3z3ZSWnlxiFAsuQF2_Qiq7BMtI_0fEkI31NeVa-YcfnZdnnOHHgQLNuSiYPXfBxr2-4zmxj63mMLTrzjPKlffjGQa2A-EUoL7Iesp0SoB_ZvbqSp--2_4GQCZHH3C0FM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ebe036679368-16985104','','','2025-04-01 12:47:03','2025-04-01 12:47:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42806',0,'cd-form-entry','',0),(42807,0,'2025-04-01 16:17:46','2025-04-01 16:17:46','{\"firstname\":\"Ella\",\"lastname\":\"Johnston\",\"email\":\"ells.johnston@hotmail.co.uk\",\"contactnumber\":\"07742620677\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6s-yl10fV19yISmoTq75-oo8&amp;gclid=Cj0KCQjwna6_BhCbARIsALId2Z3ew-FZ4z8wXa24UX3JhBCZtR_HwAfRbNkxzloZuzJ_eH0l-whxCpYaAsW0EALw_wcB\",\"recaptcha_token\":\"03AFcWeA7nx_nn3XwkytgIUZ-WW_W1n_NIgQBSTr8b1Kg4LwoC6ltlfYl6hbueQFcqljqCtwWf31uSbfEYuOlbbCwFhDRDwms53MsNAAzORL_cOgfjzFJqhOeLJeszw9bFmSPzfFHZ_lc5CpmxusxkS_L2JuZ2BFc08M4jE7ag0f0REOZE-XvrK5yA2hSikVde50XDT8WksMC8w6zMO4WzRcx_ClwHFlQjAl_hiSfWu9FHyeViyfwBq2aJc-TW9EYIPytqPbP9WeXxOW1CHTi9TVghK74kuOAD5dXxuc9YzSlBeu6_mqquNXB3Et-2731_sDygJTCgm0OOckjFF1dbpf7VD7aC_cYBCAKAEo6BgPtpQvhKgIoqQc5qGxIeFCE949HeTpokNd0CirpF79yNY7ybUpk8UltuTabFgTxjGjWDefRMeS0kED1UGDpCo-XLlD1mJTz-hqHqFpotjZ9yKZuwtNPmOrtE0KbU_VRIcSlouKJbtvgzVjKIsx6JiTGJAcczqVY_KaOGWtB0NsOuUymU2Z6pJU3t__IlbANfcEERzCjEjadIiscqSrrDVvnZElQWu9JToRx6w-zxu3Vx8CkVURWQqbFMDFYJB1vioPO7GdPn6K4tcQvJJG9k_JMqdSpP9Yrz2BpT_Eu9d6H9sawwqBhtTIF2evYJfRMrqSaxsCfue9rtbkpQkvIoJ97G1H-B5M1dM7PTv_RhltsyrL2jmX-ShCeYsHgwxwgAKbVwJ9CkwTMen6x1oQFWoJdIIyXq1GmVoxgsKsKuP3V0o9X_nZF22kfNBu959STh_1MqbOTXjpc7X4FaFWyWfxDNMp_Des9TL9lEjkRoPpEzpOFMxbfS-pB1VlKQSvvagX2RyuAeWuvqsesvyk6zEAVhW7oJpAJwlV5Wv3FtsE28QB46F96UX_q9g3RCe-pvOiDYVzWvgQtut8geH8__ePvvsx1jrwSc4SQg08offoOV1xaryWC_F0eRZOgHaIy_hpPRp1yhy_YyFLpbmRgVZI9wAOEccvnXfkkmpuQNiwLpIYREa4nnLLq_Y_cKN7mbLLPRKsbIBqzZ9DomcTN5QniHBVfoWMGFr40MiRDLLpwgdfYPJJgiVmQMRJh74g-w4jKj1gzZUJrqYVhNdVAB9tKuoxtqoi8LG3WK2lMQY0Rwkwag4OKuQ8ji6kKsxdG9mnQ2T737commBMHFQRRj-aCP_b6AkQBb7UCOWDIOr7l-WBeeytePFHppNjJC-8-RrJrCt__lMJwFOkELJf6VnJK9EuRpBvbhg0QLd9ggx3fnUCFvWgWi9R6tvN8RB6Chh16f0mbSCKx35FyTfE2g9Z0d-RET9MPyQTwqX4zJi2GMKH0BQ2ZBFevIhgjOJ_b0KRxgcS73VFs5euk9yooYezvjQSlUv7G3apGUqGff3AZ3ab9oHhuMlXAakCBJmIVwO0dGxmtgBlM4TY6Kb7mTxzWCjaBaPQNb2s4sBENwJl-2pKxeUJ6EU_zlrKfH8haSwSWk9eL-j6MQYizd4m9SP4q7uAkCbxAGjRntvxTdFPAQ9nUwrkoDXilvGeVW3ty2Nh_7wy406OtEBgFOWnZcDfAN7z81QT8o1_4IKaEnPxjYmeoT41vTtrHqoUn_V1Ki3JkZUt1HRAUoCkPXe_td0UNYBs3dFaCZMmhYxmLBU4X3utDNpdl-H4ywKeWPDnbnlZIwHgQviT45IC0sdtaq_c0Ly-iyuD9P9nFyxoFX8CHClfwMprRn3HAi8EsDrQ_zZsreVxBhi5V2YyufRcUcPQ-uaJHzObXbCrGQPv_TCV81xQ5ONouKBG_oXqNGyNE0-te5Lmvn5VDk27eJo9z9hf1QlaLGTwg6LYPgCqu4XzOdjOq_EORZ6MPGcHTBXGxs1Klr0XcJEAZlf7om2lNdN3Gj-Or5rYOfPk_rFPGWjPT_47VV1BJkWCkmNvYM-j_Im7AJ_BTy7xJr0n2M0pe4tF2GB9j73-ZMHYb1Z7ACistKyO8QzLQPPwFQA4LvDvjr0BVUhIeOvCRi-dbLpKZLBAMiLj8VlmZWwZQytfxJdXEJS0-vHcLgbjPx38h2BElsmjkePA2oA_24aG_ydRAmzbVDOy97VqH8tr6qwKay3Tyu3GUnix8_LilzEg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ec11a314e7a2-41879371','','','2025-04-01 16:17:46','2025-04-01 16:17:46','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42807',0,'cd-form-entry','',0),(42808,0,'2025-04-01 16:20:19','2025-04-01 16:20:19','{\"email\":\"ells.johnston@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"BS2\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6s-yl10fV19yISmoTq75-oo8&amp;gclid=Cj0KCQjwna6_BhCbARIsALId2Z3ew-FZ4z8wXa24UX3JhBCZtR_HwAfRbNkxzloZuzJ_eH0l-whxCpYaAsW0EALw_wcB\",\"recaptcha_token\":\"03AFcWeA6M5To8GXqef07OadE-xWXvkFG0-o3Uuvwz-jiwtjrknLBnLn_GRfATqvmH9EAPjLZlRA6DOTAixFn59uh8adg9ZrxmGJSRUo37MtoaekyvgvlQ6Pd8UMEJRW05nUafDbnwSAmyKU2O-sykQZBpo_wtOo2ZjZ8opwlqLR-rXDCj7niKzlQlbEtCmruHwbwwpVP4ZY9Xt6VmUuTFJQvSWHNz10r5zDN-86OXcOYZSyt8KHLgQETgY-xd2ISKL_Hm0Ny7oMb9brQwOA1Bo_Wu-Mdj9azjY4voQkWYEhoOMJGI7FjkMtzR2DGELiIkmHJxnlIYNfG8h7el2_CiJt1f4uypBg82y3ywCG6TG8jdOoFDubJTTukXuHAGC0mqtbY2YZ-1P71nj5awavIt_Xos_qRc8Cn2Zm08YLAnzQ65XHX5M5h1pumd8MoWCkD1Fy6y_stbh7pbKQ43_xxe14i7DRVtz0w0BZTCWmJEv8Y96-QJBe824H7KKkgKNB3Ak45Kqb8NIw4yVMs2G65lGkldcuyiglDQErslBH4O250_ShLriRMrlrrfzoU-bqlUshoLQwHjAc5XdZeMpAPg6JfK6_PYHtVDoMJqVr6p2vaH-CUSgRwTKT-_WfMpf0C2_Bt1O-DxrtUUz3g34v4yzvtOetBvW-d8VswZEPFN0BmVayatIKI5ulPmgwD9Zhc41Kg_z6etyXgawDImhFzrbm9xBCuO8kziPTipB851d3Hze076oQH-EiI3arGPeIKtlTv4RhdP-IvYAD-Pjuvmt6073pjwU2Wxr_itU4wUUxOxh2plKYBEkxGIS-aa_KgJpQCwapvL-WvvqtJQ3hkBfLC-eHa-fX_TxxFa1UwYVYJBe5a02URJbTvQnddvdWPa7HJdf4-i3mMmvgEmRxYtfuOlesNAMws436jwECO1XIpfFxNsxBtj2aX_EN-KQaFxuai_-mBKwAKok-hZyqOy0s33_Ksfv95ulsi9KTFRV3_knMHuyKlqz50JeRt2EB7dDMuMZ8clTDgNsdz7JIch7gRgLPdLveNmcvfAFSwjpFzVFK9pMV5tXY4F1a9idZTBhaN7aQiq98iotL5iKX9t5DE3nnJ94cvHGCS07JLom0-s84_axD2D7Fl0MP4tr-WvWRsrOQBxcY0wgftzKc4qJ5jIltGCfnQaCpNoQI4V75uTFKavSZz1I1v5NeBKwOzXwn8bB-Y1fyIEdRusai_16b4ENgFkSAzBybrNrMgnEQiXGp14RK0_LcFL88CkvoMN2hEviFh6teqc3R3cJizlPL3LBjcIU08GKag8uGHfW4CdWjX5txojNj1fmfWFzKJZnYTiNaLbrsOBet0N8I63Q6rFoxVPbW21q0TV41QcJ5eR5YN8Ggf3eEY7ReXHEUDj56DfX3sICxvEj9TNZnzkR8hdXortW28Y9DH2XbxXayZF30HS2s9I5aGYxVgEmHzgMkFJ1C-8fRQCVV9TSPpSA5XMjwmxK3NoTMsCGVlT91eLsfvRDOzumBiC5OnwLH-MPezw8jXpld-KWH6Jiyx0yhINwzydknecJFh61KIake78FmU__4UIMuY7WDCTGrKyhjlhBHDWD_kSzrjM91Br2Kj8RjdDfIlpqDNHyrBH9rIY8W4AEqAC-rjL99h40z_yXoVbtSzDPMgZ0VBiSY2pwf8LFb0DFnkxXBl2-cHBTG0v4735y6gN2Tj1UvbGZHHptBWKiva5_6l256x7sa0GCNjNxg0f1iX00HgkNWXyFIfpVNQjgKr2pN6mXWb2PNL21YNgE7frZ5zGcbN054SsBU-NUx4XmGdBppXOjuXifJwHO-zlzfgA3Y9bGU8OZ43tdu4q4bIjY-EReBt8zPRiYRqqI2qLpxzWS3ZbbHzWhilBMbd8VyKlXriqWtS_N4fsQB5c1bAfdr9w5Adhpc82Yb0FvCRCWbKPx0JJZ2Eq455IdFtaJbVfWVoRDWnpILmr7y_OJZxfhiEUgVE_O9JmCCkT9-fWfnC7WN4BaCetSwR4-c9wZLvY-g-gUtuT3ypTxbKNulQIwzPC7l7JmAWYbP1nyQarF08MCoXiPTSPp5QluOZNIAq3902hUCcy5w9E9q4eqW-bJqt9ajrHZK7R4NhJCko34myBLPneyZ3Ydq4TeGi_d_SqgNw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ec122f76f404-59001609','','','2025-04-01 16:20:19','2025-04-01 16:20:19','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42808',0,'cd-form-entry','',0),(42809,0,'2025-04-02 15:40:41','2025-04-02 15:40:41','{\"firstname\":\"Andrea\",\"lastname\":\"Ferrario\",\"email\":\"andrea@germankraftbeer.com\",\"contactnumber\":\"07723546520\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwwLO_BhB2EiwAx2e-31Q39gxm9BAf7qRgqh8hpie9_W58s-_i_eky5OzsVooK8w152SgwshoCbEAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7mgqvF1CzVPGotWtWGMDDcQCKN7vvoEOauBe53AyhMyPu1vV7bVdyhaw3z8PoC9FZZsF_y772Mk5-dQ8qJslq3hzDCe5nN5OQScOhcunmCOIcS2E7E7cHTqTstVezY9tSkcCmvo96An0IJLis0YqanVSP2goDTPyGSVm8S_xQ6B21GAGpa6Of8KSrzmRrV5zewBOWm18FogW-Y4qmPaRi_jiAYHSoZ9bdENi-8II340tz1pFMIPo7RRo0XPVFpp3_hk0ONov_0e3-e5pXa__am66s1bNdUvK-aq5JVPbW3Gve84uMTcBlBx4YIQjrEqCqLl2SlHxUyPJ-3NpkhTa0XxypdkjZh34mmND7linjpebq2-sOM2AoVh5oJFPoErBqsTSeLrhL0Einh4wXnaOYnivY9ArbSEKTRapHbP_uXMWObPwxq4bOFJryR4Wcbj49fLaXmT040urEIE9ZSENCVn2m-INRhUHMMdO8_rOnXF56HgvlqFidQQ0DGxJC2EXyJakUtCSN-iEbMHtsGbqdDbrwHq67KxsxsrKDu3mQYwEIF-YhGTB0ib_gCYcwyv5sqQgVNbUBkaieJdx-wKix2kCCuyIh77TlAibhX04cTvc8gKz0L6HG7iYu_BJ1j-ypmZC1q9gSeTTmj1u1fE6wUxdQH6siHBmKUjH194neZhs5UcY1pijUacofPuxigs9e1eGbYeYFvHd1eNfjoJaGkku0lFYDgkdjKqrZ2bbUYipFBHilSQZoy8ElmWoZLY0RaeicRDoxmsJyMJwmBGxnVE4-aBoMVW_YgsGnDHHFk1v1MpCY2i7lPQ5tL5lC7211YojGUiB1R1ozjG1Ayxrh6K2A58BgXkkXPCYLIqQDi68_5VoIYhJfgGu1iEAPj8eEXsHeXUmn57tYFS1GrGdFo8huuUeQXyiNshRt5zJ_uvrHrknR_Uq0L2Ewle5rbU7xxxcWMp3dYimMhaBu8vzZN68MSh_2rW26CAx1d0kUVHU6J0SlrNBvBXWCZm0ZJyPLjquHGEtmBPwnQwHRA1HBbL-ZvCcgDLOT5RMoJh3VhcQvKSJETXvr7L3L8M7nl7rsY1LyO103esnOXy9NNbFYMUyNnLOCwefZ0qmu496EYCPhUKb5THi2fy7iuDHurgMYWIQJC80dzZTjZ0YtVra4kL81-Ya2zfFnh_jSwhfzCnLwQsa9phbPHo57U_HiDymB1V7pHEwt6ZFFbxGeeCad1QWDgqyvNVEPEqbYW5B-NxxShWhfL91bMml9LRgvJnn1DgLRKU72XMVfPwo9WEVw9INVZedtiBE0j8fWi0fBM09XUbpFtMB7eSIX9Q8wVwV556ogBYCAxRebggEYCSu7M0QoX2qbc3_-VE0dADAfzqoMOquzscAs5y2ZsP0FpydIh1wt3wXelQnjU8WF9EVvt-2SqyGVB7gORRa43AY4DKbS46ED8cIxQf-zYV8nD8zbpVKD5_9gxL1eq8ruqkVgh2L5PGjMHrVAK7ZxqR1rm0GLQQBPbTPpA-uRniFO0K2XmYuJzR7PTxdbj3OnU5ExZ2urTGu7fSO6wZJTOchn6aCUlknM97YpyNg19JwvmX6O6r0-Gu4E5v47hAnB5dLDX9vIx1mpqX6YoAYpRZtXEeZlmMhtK7knXFNAZs8oPXWMb3Mplp0fP8FBj1mSf-ssZoTvJ_fPgf3zmcF-gOgkguT5STwyMDA7N0bMvRHLbh6-_dZtfh6sbdqqvQaaJw8ormg-aZPAVIb96JaEvM_NZpP-eK259veCCCqHa68oNUrSWe3PZa43jUmWSLkEhEKyNitgUJN3ZpZnpRusT6DpUrG1GujUPvjEVdR3BV_fBOJnSzMRPJEcTXpPROgmlPydCZfg2uOlSWFJy47b5hfdMWHq00l5VTiGFzxZcXqOE3ApGzgVqbJ6IW_OwL7KQlyUa_VWqjasQPmgfuPJvATk3sHtcxIpoO-th82czktX9w2MT0tGfcpDDMr-XlAZtRqAiJCJHzlvXm1d3C_gm7pDLhojGRAs\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ed5a68ee37a3-64359478','','','2025-04-02 15:40:41','2025-04-02 15:40:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42809',0,'cd-form-entry','',0),(42810,0,'2025-04-02 17:05:07','2025-04-02 17:05:07','{\"firstname\":\"Jenny\",\"lastname\":\"Mackay\",\"email\":\"jennymackay77@gmail.com\",\"contactnumber\":\"07900991329\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4lkReKCClX2lP8ynzLimgmM1himojSH_vZShS6sNDuhcIpTz4zsFfIxU4cuxDNhWyyQ_zp5P_ldHXjqArkdYmp4JiDdgrpQyWo8XXPKo7IHz4lZA1Poe-Y23rCqf--2m_LeZOhbgZie3B0hQPz0p2z5M8kdCaEXBpnrBj7uTmwhoOPMaxUVqp2H90fZ0HEjsN0pD3Qp88VHxfU7NdV_yupWW_zOv2bvB0YrvPfkZRpncTkRVEM3cJehhtqSjYb1mU_fQWx-VAf9xvk0emN9zypjOGGFJi-_o-IEvzBxpa8SNT24I9IA4xZqj7CWVGlRL6Oy58BU8C6LIsm68mZrsAr3i0pS-OY6rXwR3G50qwR0Z8u3e7m_4tE-uWb_EphKhT8sfYKsOxB5mnQqBYDie3ymLfl8raygMPD8mjENzRAN7A-E14DzAXXhGK_dTSp5DEapmTEbEd_nHAVzjkjonNF6JlbdiANyOdSTvfmUOBucTF1RhHjx-assMiEu15ov3cSWuWBt5p7c-MJnNNmlDK_qYX4ga7PwAw7gHbJ1EeYUL8EAONi2PSVzXRaVn5TCtX82cduhmQXVLzbZNOOexYs5JLWMMmIklc85zgRiNg0zEi_EXlIDRlQSywH31KntiYHKsMHW2cUGFN9Tf_ZUwsi6VILlcq5gl9oRGabk7fnOYROvLYxxaXEtoheaLnPzroISxXYCoG4Mt4B0Pu1ZYxgsbn-DM2mODMZpB9oTvS5jVIisMWnj4-Tkv0Q66N5Tehe0vRmrSH9yoIE2BOttAeGs_Mc47ZPKXPJBzabRapCglfvp52qcVqhOFnOt1zt0iLyydH795ataaNZB1q1M9Vb4z-yHVa_sP33vSdG61T-oDXobnpkqmAct3BQw6WxuA9O3pW5axgQ6b9oFRZeAbfTjOEUS0Nvkf6Rthg7DIupHpR7hR2QwpRmAPm8MBS7-OS4Y7pZetTSmwhWbwPQjfDMrLbcn7XxeAkiu8et4XX5QpvEaDAIfevulJa7U_NoroDHngzZKh4snZ5yuOzpGjjLhVEGim_sXBp1GOvxUFoytnWSCYVYh8hMNGZbJtOPfjftW5Pyi_EKzoKxA0ic4Ip-ROHGz9EUeLp0JrvqvNqi2OEiBXCnt5fiV3cE0QnNWExZxiwzhJg-9F5KwBnHHiUSOQsl4Y06pQYoySblgEeVrjQTkD0XLFGOlHyzdbCkYAhnjVsmJwSQ6qBfMyjW-2uluEZ2ylnF7KiZqzWiDakYbEyugytqwsh2JdKhB1KCN3TXErM-icfeUnIX570uYv5ya-i-0bZpvQhk_bzo06nmb4zuwx7zMU4vNDqrTl3IX9PtvAH3CV5a-b9ULNg8A22U0McwbyoG7FDKVA-QFDDZPMr0dB-LlDuxoMLNhI7ePen5lITPPCLx3gIXDZbT4l4Il5SMSiMexHhs7lghRCm5MMYWsucMf42g4oNt6SQS4REXedqmE69kDZNS0MvcNrL4MmdBlb0CcY5G-ldvMc3_q4QtBqCgdvXjhrh9NdHaUdLBLMxCXeaMz553nMxWNZMCjPUWa3gDhhWIJCUZ8yP4w9u4btzRYkLeW0Vt23zkFUfg4G4SyLdpo_QUIeqmPbSRcl8vzhlOQWDhJ-Nm66m1HU0hBWhzqswzcvW3mPdXSMwjHyzM1dfZoHP8v7h3bJHUC0k2Kfmqb6M4HAliQ1036QHk0ZVfTUet9978KMXhM3UIRQRTYUX3xn0Zt_YQmjyXL067jbiSFOQiYAwZDQ7tC8h0XRS0alTzPOTM3wgoeVCFO7Xv0HFgG-SxihpecorLTPiqAEC03C6NMHFhDmaXgQDGUvj82b-36BHgOONpxbegvoCRik6mcEPzNyFkmBbBm8yj-KzrEbb5gxi_RHduYlYADGnRDiYCoK6ecfF-dCbK1y-rPP2yz4KnQY2AqWWeNQ8t79eju5Qhhys1atxq5IMSZPkC8526WKlf_Rpasq30YjH27iuYwrrignhlduYgab0dRRvpT8eKWhYmmAn9N3hpjgSHEqj83mYkLJ6GOimtHD6DkMphLyfSqJTCYeOzrqXbrPBX9ohNvUNWPhEChMoHRJiaL_jeHc5H2qQcF-UQ0_s2\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ed6e33382756-46244586','','','2025-04-02 17:05:07','2025-04-02 17:05:07','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42810',0,'cd-form-entry','',0),(42811,0,'2025-04-02 17:08:14','2025-04-02 17:08:14','{\"firstname\":\"Jenny\",\"lastname\":\"Mackay\",\"email\":\"jennymackay77@gmail.com\",\"contactnumber\":\"07900991329\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7fG1ldaBL2WteiIKlXKu7-xx_367XphoHpEnEAlDqSCBJrTEoL7uGmw5ZW2d7QwTTDUst9Bffpts5RXtIp4zyZ8cyPIvd1jtI_PD7KE8QU0SS2jrzQCbrzwPq5V_YbJdWGTSF2Gpsh_xDq86sKs19aLsfvDMGUhQe1iK1ZX69idVDokFpxWwOngkSckKf9XnmuCsjZpjNP15SBrEMgK9_gEuhyFsSrvCWLd5SL3VET5KUwF6R-ff6Nq_frtIph6om0_ImPlO_fZ8oMwVupwYw6lVugcdb2tZR-r2duUYQcSOR90OQtabNH7q9cu1rAGL1iUYmHTfpg9fjrsOKYLfHMcPoExVS5GlENm_EFHJpj22s8tU_WT23ettyzPmYfV2jgd7pfWbjtLxY9GnrRbBeCNm4QKUTbkjuuXQwlilmsjrPReHQAODuntmGDrMLC9a9xafVcVvSTm77Stv7CIVPxNnamwYzhcrGJeDUKeF9EKIC0cASRz56fIUuW7ESGhezLiB3Imt0dVVdthbpgRAFrqhNCSmXgw7qyNf9XjFkStP34Vl-h-gzK6H5ECcrWc1vkszJVrncUg-sZyqKgHs5MRuNiH-wyUjwCk4xifgB32qhTBCSZZrQSx8bHLNUYzw18TlIbn_LkpU3D9IKA5Sj2yhZ_TW1XcH5ApF8Boc0xxx0DslqwNs_Epb18j0hvTyIkvnHIlYbY43n7xfwA46MVa4OUzBqyd4b6mOZunE5QCKV40D79-x8zzevMLk9_pT5uqrNVxn0e-Z14BlSmO5i-f2OPPF-5pUsT04EKPDpZXgNouuRjeB3ffNcls9g_0gERoIRN4tpShyB38FN4F1f1Q1zT5gQFt_YaTnVo-kBeQ5qlqhoJDYL5Ehq2fYVTsKwJPqtHtBN_8llKsOT5kXEgmFdllfrK-82Jqc3raGA2KXt7cKp7D4hBle6R80waG-V3dcRudJpVz7YmZkNyNiSj7iCCCKW0rpcgLAQuTiYI2fnO3bKBPRKkDokMBJdlmcexyDoqj4WWQm6oTHPGzPF-iS3zI2Bl9vK-hcNDUdeVXWi9RBC5IlWswrp0yhnuLUzxwj7_Q4vt06V-gNyudsgI9oXsnYLCG_QUeS7is0dZpwJXb-v2DS_38qOJheD22nIww5Z2xrDglCFrT1lXUqxGbfZecz_ZeV9arsnCWA5mQLdkSsktY8M2X2QfE9D8B2cYHMWhKnaaAAZQEjb0Oc-1Q1w6XmAm3gmzngDcOhYpIn_1bb1aUPiUECx_88mcR6roGa-mKloRqXEPyzK4FYqBvatJM-SA47Ry2HeGv44txebR2pr_8i0CDGhc2ePfNJHZcZ5gnEV2hxbl6yvolwwHzWNZi0uSCrOs_jpqTRf3SlgH5GuFy5d0SpFXeGnLyxuUu9-vDZH_6R6ATx2CpC6qFWD821dSdaEOhsjxP3mz7wGpxOSM-zAltqS8xvB8MIasgPcV89MCwgbE2md9Xy0yB1Yl3gsnXs2neczgmep6MJmmFc8QYR_8D4UXjbQJqFBl4kudvL5rU2r4Ky6mbvt4t-lM9lQ6Gn4ImESBzNlsL1B2GM0VpKpGICeheLlfOGgBsvbEvPEzMwKiviC3lFqvsTK-PqnfpKQF2m5LMTkbCe_Cd_FMeNqdjPl9wyXB1DW5o1K4EZF1aR9D49QfMBPdAt5U8t3PMjui8zP9vjuzh5oyWNJp2R3vRkSR_Sh0Zcyinl1UrFf3d2mTDfxReL_I23_iTtNCv1MbCtz7J_CEMwarK9hmii3_zUqgZhOuvaTadghApRdRL73OdZoxN67xRG_gXPo84H293LDsl4Ym4ql2ChtMxm-GNSa8OFpZYzvdnSh6-uztJR-PKy5-j1DKWbDECs4urwWag78olBK2e45MnI6xrG4D4Z8p7JpeHsCoNfB-4cD4oUHpd7C5bH_-ykgy6NMB38kDHuZwGhGTtgeQpWdvtP62Un7uM0XtmPaNpGGri8y2rMsq6wO8Fq5rMZiQ74prEQ79hzHcW2h92Lrfc2O_h94pg8ejc4QRGWjlfuJ7_5ItH2JFLSUSyOZGZa4FFQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ed6ef194d606-59277069','','','2025-04-02 17:08:14','2025-04-02 17:08:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42811',0,'cd-form-entry','',0),(42812,0,'2025-04-02 17:09:07','2025-04-02 17:09:07','{\"email\":\"jennymackay77@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"SS8 7HJ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA40SWGs9CAdrDO5xe-4qv-0nmmrHrwNwPtg3rjxnHxV5EWoDawRExq2pSsiuJZDkkC4rZkWNIpeQE9QN4N1BgfP47S3kaVrDQD6fFxO9VWiFm5VYq2W62VUo4V-uXawjTSa6G5YgmHO1fdatb_V0_2NJ0A-dflfIr7vW7kv6jVfdrUwD0hs6UKPQUmbl0N3N_41nmUOl2ph7JOxE-RMT0DgH5dxhYWOBDZ9wTuJLYtej0sOLAvYUblH84_Uhl2GegA_iNKtyjYS6Y8ShRvU-towvahTJ4pa4vNNXtaFIJmVSEYYjbpUbbq-6xFOMuQKAQDZqlv2tvFtr70vKjSFuHqswj-SRMTrP6GpcZB3-ZBVHcNefSzq_FN-gdlmF9rIN3kSzHj_aCQfmozGex7W5UNkAuIruqbLp7qKtUrTC1iKUIKrn6qpgo9uPiNV6RZdLOlUFxhkisr02A05gTyePHyClJ2d55Wh3uBjlzOqHyc07OrFFVdZWZSYotQXmoMjyJpp4VVB4LVuAK6nb6VXXqBFHKOZm3yI4muut6DoYuhYBR_fZ9Th7ZdqkBdLeZ8_n4ckT8QlanFMsCPov-UHc8g2QQOyqNzHxAdJghH5yZJuMZ3UzgCcJws9xVVlOVu_-6EuBbCvYXD9oPE0ob-1Mn8z_37DNcXAruJopMgpWzT7DAmGzuIY1PVypiXUm_Ijm2NDWwHWSjyGMrQUHjfxTJos-kiZyUJpOxPj86tLLsGqlkjrIUdwmsWepOLhq2m8aw36AjyS3Xp_DElHO-n3i7JNRoPrGtMAnL-7dNfa5atZcMrb_Ph5PRRXaUtqip0FxOWJlysCb6Ra6WLVE7i0If8F6ztJDwHD4w0XVE-jSPZ5FIUkvZXq-1gI45A1bh_Hc2_iRkP3gsN42y2RwV4KF4cA7vgPzXe6aKHtdekCHRiv4vZaOawlbBvHRS-kGZAQ6iRTCebwK2xEl1Wz5qOHbimA6rpW5nINUhdvIO20x8nCXJjsYGukMtl5h6RM80EvgswfRnx5ArrkgDaUS3B1v62VlBj0wfheQI40W4ZNrASGqCBL83W-bUzTO9BJwaAB4B1kwsY9kMsx5SdEaQL5OFTHnDBiegOoIfSQc3P48LFUVwikySBfMqSScFtr0MarHxT1jq8tXfJYF9_8vTiReXmdnGCaIgiF8sx0cXhHRK1E-dXuOazYioiu0mU1962PTdjFbYayizatjwjdUUG6eC_enBgXkfERYtrzWAwFbx3OICctrBiRtv2NIAI_hu7mhMotBGhq7TXLuYwNIbGoG5D2842HMo9D3pWFcsTIdHwdOIhAN_RijtkZJxNKtju9V_a98JAVD-dlrOfpNdNHxxguB4e2jkZfL1tET8EQsxhvErh_qB7eWAeCu4ZtemCfmoFsk4YtvUq_DIi3Db7AXCxLI7F1K231ZIpitypa6m8SACs1IBjmuEUcHUEfuX_YikUl8ELOYwxgW2lNqK6Tu0B7V9Sf_QdLBvI-6V74EFaNzgBLUAgRmr-03lls8239WTA1k2a1PXtO25WHeFPyLWzQOleu2hfGZ8BnV5GYmCTtjwdVB9LDvVGbXNr32YOTLhkodCNMvr2jLoTFJY5A8iUJpV7nkhngY-1LJKpylDpNEBVwPvqgQ_ZCeDHNI0afREhBj8PbJ--BhsZTbiO5Ccbb0bLbP4dBz2wc36NUYyRfgbQuNPpNX5QphPF06T67jENstlb-8LTzBx0WtqcfaYZ_nxTOWEGS1RPJKNCHCzi-w_iWtzAL6yOmrQOZCwLkCAreIKtW9D4o3KZ99PvhkAV09Cg3WiM0vqcxvPaqh7Hua1l60P7NADc22lwMF4-GMVJXS-FsbCXe78z_JSUlkJ22aTrjgYfsSENo4ymjPxz3p0XK197zsHFQAxkZFi6mYhG3Ewrt4hDBGPvT5uwiG96jlqHUKkeKFtKaN1At6Iq6eqzSWae0UXsZgU7lrYL-m5whmFn37NSqQCiqbEId1FOSFmldv1G1hOuvw-_XRKb8gZLUSGHVMloG82zpZrsyz-qOTPnclRq-n5o2ZJfLwuTXxzEXafU9J3zOlXJbvLB7lkanVFpj6AQm9gacy0j9pnoEFM0n\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"3\",\"qualification\":\"0\",\"employmentstatus\":\"1\",\"workindustry\":\"4\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ed6f19041961-82473718','','','2025-04-02 17:09:07','2025-04-02 17:09:07','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42812',0,'cd-form-entry','',0),(42813,0,'2025-04-02 21:31:27','2025-04-02 21:31:27','{\"firstname\":\"Meagan\",\"lastname\":\"Dorricott\",\"email\":\"mxd431@student.bham.ac.uk\",\"contactnumber\":\"07919082649\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwwLO_BhB2EiwAx2e-3wQlRsUm1eesTGVJrGebaRrstZTBgvDv0WwYzbjVQT4qURIewxsbMBoCfJ8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6ZUTffvsYqvvwm1ZmWPvaS9WkDvShry9YbpAc9TcMo7WmLkCrLXpiH5AJfzvnj2nKf4dG2U5s-x8fcOo0a79Wxm-kjzPFG291I2eLYsLoHh3vdvow3UeYBwYLPCdhPbnmjfGBb-v-QV2ftxBq0AnDHoHBACYMmLZ9t4aoxbfnNusCfJzcCAQDduupk0YDdOLhwkLfLLpktz77PYI_GdFoBiAlvsfIZS6rYq-WJPsNmtYIJ292VRzAh1HMOoVOXlUkBVf8P-Bs-D-C7YrFOU8DjqDxrQukUhWE-RvXSucRak-Z_zCXF1P0sBeT0VOWwkU0gjyw-w9V7tKm1VQQQGWsO1Iq9YzrLiGgq7Vmph8wdPjIXCsKfAW5QMkE-xS3ki6aRD6WKR-t15y4iGMRUmIq6dlwUzVOMFSWXGi61Y-mrFVB8x4FLd7U79MDkVRHB0mCd9NCghjernditxON9AoTuRcZVX89ESUYQjWRU-R2zXrtzTSN_7c9OwnN6kzd42PzJ48ePJuigBxFaMTUAkztEYLC-t_4KC7LUCAIjh3j4Ugq5eype2-BMZ0b-qsyI92nXLkyfMoB8zQBtKvPwDj1sPmKKEj-IAWVlXiRIE1UyYUCcWRzhI7X_IzMLpbAxO_iK8wl8iC56AZf2i--PQUay95S1Edt1PJGP10bOxlB43wpZvzKGPfA5tAeUEyPmIw3hj-Oey4I4Z_UX0Ec3ITsQzsoSzEI_lUfzrt037NGzjes1fjooDuD1q1Dzknmers5nOZQFKqYbWz-pEc8zJmVr2r9zoscdmmAZudBv0-B2_wat2QmR5rnYJDwJ_6ZsgczsiP8UmHaarA7TIsnjD16Cowfz36yQqMBprVsXkBEH2Eqpt_9wQIZpXsad4ROhdaTvJMrSc3A3bf1e_9v3VEMY01fGbm-uVmrMz_7hDFxEc_GFK2eAGLmwsqa6D_9gEa5X3EIxHWXt83rFt9SQfOYWywPcP6qiGnliIKZhWdybNgM3emAtwvnMwNWmnKikQNhzMCLmBbZv_eH3uKUwWlZryrKUM2JuCP6ggJXrerR1Zl5yCx7LBN8-n-mtD1p3Si6Xd3-0MoSQdJpealNILVwyaJPL2_0ErR7b_snB_RZ1W6AFSR40ReiuTaJyyUmzcGL0NVdm0jiTgHPSdhFdCKXLQTFPKq1pR7Z3OmPHYdyGBk3MU7uSSSk12cc3Umjh5c2AV-DNPXYLLD2kH5egZ-0n3r3fna2HZ8N3TUPIiEi5-Apd2WgH8kwUgMj3AkmLt0XcEeitY2KXsGc1oxg0cGxU2k-nkcw3jhD77krdCm_0mQrKUEXZTBtgphkf63p4y4XkQ-b7hdmdikIpaZJvWPX6JmFSfWScTZalJjh6fKN07lvYM741tYB2EVBkpBGfeKigJ0zx4pr1qlROtWxV_3IROJit0qsLZFQMhXcTvk3CIW-w51pbIED-IVxUki2xEwHsNqpJoHMPTCKNLCHnbN5ZnwKp8fuWHhXMFeWp4Fjuw5Yo7fPSDly-ddzXQeRaYYUw0dMxJa5rgZNGeWiEYbAO6fvcLPzfHClipNKgFCNG-LPHr_uLjO78mrMPeTQW4w23bGlY-7gW4w3VBLYFUNt5uJD5pYE0AnDvQ8IsdXCyAvqFB2Y8bulOheSjqfvPDSl_P5tMwFGCBDrrt229uG2b8-2QguEmaPxAVJi44yfiPaYeAg5kMOC-iApdNHoegOZe4tZ0Ry9dnRtfzm3DiNOIg99cNznJFWoXu5Q5BnIKyUc-BMsXlIvhHSDgCaOQ3vnWeoFSB6qNzc-Lbr6u-7qOBb02RDggh4-PNWOHg4pVGebUVZvy3P9cLyRlqmGuZmgiBFxv4IzOXBfpSzE3k8X4pHLdWkq79fLZbo14RLq8vdr9X4uM-Us1_e3mb8wPrBPjmJxSYVLMZP8nVR5OYZtLYrywfhWVhdXzzknAjwDcZYcZO-AXsYoHAhSwnb9PUwS8JYh_QRsUyaAw_fyR1AfgYRF0boPXUcEuwmlmgBd7o1rYA-uQqDqD7Y58RJL6I_MZ0LDC6vZvutJQxnv_iEsWdXYM_T3D8U1hYXRp8ADFolZH831do2auA4UsKd_R3MgdJsHtf_gnb75qmYIufQ1E4eSqvQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67edac9cd9a3f5-80944265','','','2025-04-02 21:31:27','2025-04-02 21:31:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42813',0,'cd-form-entry','',0),(42814,0,'2025-04-03 07:00:37','2025-04-03 07:00:37','{\"firstname\":\"Brett\",\"lastname\":\"Collier\",\"email\":\"trainwithbrett@hotmail.co.uk\",\"contactnumber\":\"07971238639\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA47oGLyfLXJ6MDAJCuiXvrEiQwqDU0mDq02r2zXg6rVJbL3Hjw8Kd1-CMjzc5pZJDy4ClW_tyZNlUfaASsjar27ITHGo7SQu7gosRy4KPhCf2WKSm3PaloARzuIS6aw_R9XpNWaVZmMpJKYbDNWO1ywcnDhDYnbsy6M2rR2YQHg0lb0XCFJYfKXVxEVU4z-dpFH_dE-Dp3kSDKQIDB1Lx6x4PxlhKzRuZy2qBnJ4FRELc9DBRLdoiQL9-Y5O5YthNLKtMtVUjNXSkvmIX0R2rNv38HUKn-uoVNOovnoAEEtItOMw-PGFKNbGefprHWTspdI253Mhw6NJ-9xKfZfFH1i8t0WoxR9wjFjguKCqF9ttRgaV9uVyro991NRozMJ3ZdwNtJmWdaKHn8eYtiaqeCeySQVUpnD5aioaVWAe0HDyF_SUMIuo5hGZo8hdPq11ym0AODaYqCQMxmE8P-hOIhtXky3bO9A6-FMbXOrff2A1oKYKOhmDPlCttIr4XrZW1kvNk-XCzRm_Y6hrZtR8azVuzOemLw6-RdKw2RAR_yPjG6oxPAc8GbHXPf6wrRyl_0Os74DK23EpXbxuS_UzL9a2idbKL4gIcqgy1bpnwa846gpiB0oSQlnt4QporHPc4Bhk0yxtmRYxVBfsXKmT87nxuuQgwtZ-e8F3VSd5d5Xx3RWc5Be6ZkCgADNfgtxigUtPQa3bzNFqNHCDFjuY31OP1RqPHO51y9Co9jKidc0hdjBOY_dc23Xoy7xfzbzterUgWrWQ-Gz1cuxSer9TGyoysKsuaNXRuc_ng5EKyvB_hBNMXlARxIgBOe1zfKe49u3jxlTAg4V4AzCtxEDRjmfvFD8Mlah7H5cscTisSXohOYPBavqbQflRFRfMMFcIcAjn_Sdp2L9LGbmoRbMr8F_qqoWqCgrGhclxvTmDDaOH7I-dN4PVJOCANP7z4uYaV7bmF9_XBpfWqLpHGmK5rCL2nEM675PBnwT79vsjp8Ctnzo-HzNuyPAZamXq6ImJWuyJF4nmSB66l1bHdABouTZSFjIkS5oOPyjsbG4B-nn2cybl3UCmXSUVcH961c-ahB_WfmbznhvkD03z2MO592TcQF0sUljrcbB_adpf-zR9ifqnrRtJAGJerslWiEAGMHXczDnoSSvgDBu6kxE8LDA94mUVY2FguMkovdooMz1n68x_B6k6U6OU3WKRq5Fdw_1Wt4GxhARv2_tGDzhxFfpz0poUzfnStC5g-8tJOClevPwIrWuqDHYeG0He0LktpeEZuqM4L2yFEXBtCz0wCCE_E_dTd-SaF1HbBONuG1k2o7sKShEmggVDyBTVc4uiCQkjwBL5BnS6nrxSmximm6Oum-yZSoPla0i-W0wI6mjDtWpYxWhOmOoIXqHJi5r8_G3Pz8YQ-AIi9noLsAZI6gZZ3Z5y6JIIATpwGCgUGT5EIkw-Mm-az93bytN4r8TfHnQE4YSJWTU77EOkqc_h_nTKK_tbmRqX7A7cYNHGzCJGY04RZD2nzO3LtZTv-bBxoyuHF2_ExudGUV2Bux34Y3G8JkquvdH1euOMwG5xHLrKL5VWNnDIcpGLYGWB3hVvB8xmugwLNtL8S1ZSPGQSBAfDeOux0mzFkYoCGCRMgMLT2XdWhXKWW9igfTbE2EEwHo4mtgkLHBYkUIuJGwLWY8LOeDle-rLpRoaqJgMlfHHPCPiXv2XmBiE0kORjnOLoaFRn1TtVp50apTK6tEBhMrzL3tp097n2qVKpv1c93QHl7q4vdOfzNC61fp07-5CvvgxbvIwCQSpl_iwYdbbB9TtQkNmHXL78TZug7og4BFQwNGQYzRUn44N0MScUyEbeXF28NgupffG8Eo4zisvW5VOXZX7hmhIvvVbcEx0CWOizZINpg2jO39FP9lQ708XFpgsQvsJALfoOU7KlRFeEwkl6URDJY_hBk5HAUGLKxzRxweJASCBDRfknuEDbGy79n9eyNIssDs3wcpksIcfEQRg4iyKW8GT6mdlan-BaeJaFHsFedxMaPYxW9GcZ7xF0pUdgrICU_-w04NA6ephB4TWi24mERNOMu3PnVBzRIXMhccOuZGkRiXOawz5aHMkGdC57iTOo502jGQuP4mOiG_M5yg3PSMo44nDeI68vBlptCLQ66NKGp4pcMDFJv66eflc6WPMPSEAVay4bJuXiK_0jbHAcmExQGZu7W497AGmLQKDJh0Qo1LtCc5FQbqhxNBaDhbbkrqD6DQ2B0DjHpeb95cYJFL6Tj8ya7MsKno4GpOynVnEsqvxNd6ldXo57iPB0gj5ZCW1e6O4HzVwFtksSW7Qtg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ee3202088692-12620659','','','2025-04-03 07:00:37','2025-04-03 07:00:37','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42814',0,'cd-form-entry','',0),(42815,0,'2025-04-03 07:02:03','2025-04-03 07:02:03','{\"email\":\"trainwithbrett@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"HP20 1DX\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA5eZPCY9jyOTKi0QYhQ0F2Lz2vrU7SYcmsEvdQjWpduoJnbcyqQ8rnbqiETdegQ_JFux_fLMvS3rUTTyQSyE7fgJ4Dxb6j6-wgxH4hyll2rhCyQ4ZsQNXykydS4aCJsTtZN3MbA_o_xRUkIZ1EsNeRGSdkZbmIW8M94BM5X9Nw8Bw_sTBaebl7QTrAhWD8tZoS6xrVzolEmBAMS9bYoisoZDpwckmu9Gz4mEZ9CcNvO7aqUcn3Sz_2e5l3Lk1vPNc9koL_bgxoPKudQDmwTrJPDDGEaEejihvFqKDU3iGFa3-cBHYz-D9T0cffjW4IyUI69YHTkK9_D_Hq-CQVPDa6thOdYrhoXG3BaTaJJmDNXxhZvQDgeN1RARngTyZiBsCN4K0WaBH6RJ4D2PrAwErxr94S3nPlh1fJf2sm2XzB9PKi03jAm1lVP65P6JRQ0CEuwHd9NC_0B95NRIaM_QXTCxpI8OdujQfAk2dmmKMkMsEFbjtOeYNKJcZovs94JrkHaJJfE_eEvYEbrpjw4fnz9B--sYlG7gfWKE6TNo4HHCT4ezHQ4ob5CV_zvR4v9Lr8p4wDnWQVl2PjZLfYw090-gYQXcShxAU_4viZTONobYF-TU1nhPSYG7TF_AjmmQTZORhI3qVfXHo0huI-TVpJ1_hh1KmvKsTS87sjhI8RAsm-o3_xAj9Hn56yn6piQrimz67kTThA1XOCMf07G-e492LCAhhalrvhfIY77bxnq6oBoCZMKfDdqRtNNu1D-_MYTMio6X9oZo51YhIAk3vQ6TcPaIVwnO4OsCwbVI8fIH3MqWHtiFV-Oh2ysoeVECNcq2IN9DejHLSWWYnWUKySorGWZX32vid4WYPdWuvUVZRothD6yLJ6E42-nLbLgHLmRS_Bpp902z0DVVD8pbeyxaZzmW1PfIG7lD0xAYSY3U8L7STfEuoOUt_csHoveOG7pfetaU5vo9S8Ss2ISTdISck4mTdpB2cT1tssGBeGP6fydlkEgpztyFt-93_mKscFymKjlksA3Sv368i6nsD9CMqOgBZzJEXxoi4hl0IWPS5ULfbEjTUFzaLKMSlHH8HNxznlyDnYEH0Yhr9SGOHsE_qSptWcau_LBxG4cQuRd3pEdPAxbW-zJwT6jX-5dNJ7TqiYh93vMdvmKMGyDq6s8aZCzlGDIYri-i-SKH-1-ztcZI9f6tQ46jnPEIepKPy79cCHqdJEPBVtKb_VHqo3GQrShLE4c1AnHccEAJztmQtGDKDnDVw9B0BeFhWZRltkwHQIBao0r95efIt7zsXSFwUi1S4h9QPpLdJV1QNzQS3av2A2cQ4M-bUBgiWARob6JTYp85DqOJYE3XsaTqPR6HVHrvccTxIhRguKmNikHf9Qyr-Ye5h0lvx3Yu_w-ZYpP55D0QhNAWvwE1Cn6msi2um7bIeGgPojeOd1xLiwA9BCSnGIEzfwzcOEgdR9h0edN1VqcierI8UC290kL_BgtlcQ3wOwmoDz4UpxtMm6GYWTbC3oPLBqCFPXV_1jKfv2xH_ynYP1hu3fRhX6isSuZx83zGxuEy03Zcj70ZCMmNgTy7vbVWOnqqlEMQb80ldR3n7TvAJ9ulQOwCYIuBsUt87cuUqt40-vF001RbGnsWAZzGbSUN4HvW-7S7SisymYfwaP09dvlLtKLjh67lT5kgRxQ-4kq4XW7gEQJPLOmNopUQNPP2CdMa3lqXHKh5CxlafFUSf_edNZTat8koHbDhT3wbZ08YiO45W-B_78-PdqxEFfQHDIh0LzD70bdI6maYWC9-a9u6sUCkgfZlk4qkzcERYXJbbYi_ijcs2Z72N-Ni4yeCyWUKc-Szn7iDc5tU7p7da7w-CAeXjydcOHUcmulJJGcBliPErET7qVrgXbFd7Kg5BOUSM4VdFsWEZdKGJO9mdPBWYy1tDL8jHDD8cSAC0Mc2j3wXbkpNONeLgG59-xdyaSXWVDqxjKVEICYuUJQRRVMtBwevUMTXDpZdsOjywI2MDs0Kr4s6EpSillIYAJjgxJQt90zTaBYjsHsEyuaVTYsl_3Pud5elGPO29D3fjPxerGfwRUkHpjzjp3adtXEZaNxdf8uNllKadT07ZL4u4eeWZgnQBJxc2EqtVaWdbWpqxaMqD2Eftd7CteIN3iLUk9wOpX8m5EjYylgFFY253Rk71cQEhMbnWEzJS87hzSdFSLOiPBQeVHj-iif_YSP_reWTONs-Imwk-Y2ePf62eTyREe4WahauOBxAFKf6uKmsVPB_LQQqwfwMqXpHbc1oqeBuU4CInFpVMxSzHiwGSPxsrHJXNV5bGPNVQfnxA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ee3250e67f40-87317904','','','2025-04-03 07:02:03','2025-04-03 07:02:03','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42815',0,'cd-form-entry','',0),(42816,0,'2025-04-03 08:09:32','2025-04-03 08:09:32','{\"firstname\":\"Maddy\",\"lastname\":\"Merritt\",\"email\":\"maddymerritt1@icloud.com\",\"contactnumber\":\"07807173192\",\"pageid\":\"41115\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6thC27fyJUJ1ew41u3uzVTxG\",\"recaptcha_token\":\"03AFcWeA4-U8J_thBbLbsFa5leDMZyIcKfPdhvFv4Y8EbQwjxM2PnFGOk9WwFOqTE0ik_WR5TDGtFLuFgJxulxapyCe87d0Xy59l4DPfeoXeTj6wvX3sMIu43MCPWOZHtpkYf0r3wi8Vda4ZM9P7m64vspipZ-mvSk4kvADDFLudLphx7w0nNV5XjsTBv_RN8lGuD9dMmXNPnk4NbgwJlOPq8AT_eUap5iJo0f6CG9mB99KILwTdDlHjfCMm4FwY0n_HenuFa7eChehTe5ugysHMjQW9uc8i5X7NiqI76sZw2Om8iY0YdNKaIOENuStx5JHO_br2tC0f1NgnYfvmUVlfU-KC4QuDjcejzF6semVJ0v7w7deg89IQj4pnmHYSzkAkYkI173d46nmi2BzGHm4S7QvCfp1TmvW8UTDyx0MxLoJptBsP_bf_C__rlfnEDTHB2ghDNwlxnKciPQSHX3ReY6Kc4PBeBJg3BnOFPHDG-56u5rOlWrvn03MWgeNh4kJZ9j8UKkEfsnCtxL2kzeQw6ZnQm_kqVIaEqsTc8wZh9PAJRT3QnkP23klBRVEES6eqD8MYqSYTCInhyxzlPe7aeMHmcWT1w1wpWvzdEP8j2Vrxgj1GI9qpbnQJwhcDNk0a5985FCP2P4nCcrUsD64RrA7QPR2G7jlTbcoV2rrvY2R0xEeLd40eIOwPPD6zwBoQa_VjPKWHq3wQrTXzVU6l-dYwe55TwLpG4wT4BulilxK39TzsnSH-W_af7fA7IgCd8q5-Gu_uNQ7YTKiTMyelChN58lSBAePE93ZNUcHZOemi9z7aSQKOKECQwYN0fAEyvu6BOSwpWjW-ADkwPnuNyzQVk3bNf6JvQFcd9MPlwRrZgZNML-c-McJ4egIGqlS3ZGHp-koG-m_3vY8N4drZ48giWZ3keK3JToJ5HQylqc7T_5eYpyGD9o5zVGQfy_V5_z1fCOs9JSd1HXCwKjk3WWvYV8RsIt3X33m7lQj1t1-Y3tzGUvk9Ydw1PIBfHZ025wDB1inAkF1iQFPiYOJu2iVYNcED1DZVIuVHbBa8tAiFVqcoXvtSd5I7mwIBTqRQdfvKQKDqxnpAXNWkxijIxAYCNVN4C5tUYOwYQCqaEtVxrKWvtfPE_TlfRzCgdpm9J6cTbqMSD0kSoL5Hzz_U8BllCkkQO_YWyqV9SY6yyTBDgQifoI8_i7acBr4JzTuugmD7zbb557B-9npyItE0YYyfNfO1KJy1iidnVhj6wPeQtKan5lsip4VeAOVGnz8LUrsddIQLu3FdIbdOKJQ61R6YKkr6-4Y01E81XoKe7mAlcGQ_qQIV121en9Bj02EBgDDpJBtB7dibUowSf7YnPWxESirEQjzxO1-oFdPeJxVePFfd8b-5ZBqecaptDZUJ-X24a34soZ99TSkK0D0mj39ea5Q9fZJ1H74TB8KH2HCLDcFIPYrsw5kV5bxsa5D4GOH8RJZGbJJRsmFDQJaXo8N8tXkZufabR8fIfAnwqmz0Pq5htVcUtxAS68yUMgQ7JwrNXMN6oIH8zePAveV2jFv7BQIm6GtL5Qgk0UUx_Jv4H6vrMZdOexp29lYr2nPnPDO3_TLTX1mEcna36qGI-lrHaCjKEGxDH4pDtAFtWjk0E0a_sOV2ELuWJgWp0vLH0lKvZvPxV3GFGtghRC58S92YmvX4KXqO1fpCQCzGCDDtDpcicFVzqb-jzqb53ZnSH9cj5xBxgy1xUZhhqLS5IuUgoUxT2vFMtUieYnfkuk1EE8gIkxyrjnovXKvYeoH7ax7Jizafzv6GmwYgiW-b0I8ocfbIgvZxTLh0EOm5VxdtrjB_TsIRa6Oa3zbLbTDmI97HtzRFeoY5yKWoAkay0LMHvqwwnaRoJoJrC3MUm5vkC0Mdnivof2h_vGNdo-UCwoo0ZLkD2HXscjQcnmWTLfZv2AWIQfw6LlbJdXECFEmwnD-qnAVjdBrvFQGaRysBhUxtE5HsyKdzpHOhNYsW9RYWuotPN4rpVvKJG90YH5ksw4EvMbBOM_anRN-uvc4fv4COK5Rh0vshdGDNMReyNYA_I0cat3Pbcg1TU_WoJWgvKiyEj1RCifQFqiVRkT-rQlrRBxgy1iLKRO-AsS4ZxfemmxLE2d_uwvX2YvQwKb4MwD54VBP4hmEDQWygiuHMDHK0BvnZGvp6wvzjxkzvt5F_W4lOQUr09opCZVIgoIfnNiRcjvXGxsodg5JSRUrURavwQT-lVKE4VgsJ4yRCcwYkL_BGmeCCmVTh2CTN5aHW8glXx9ABP4IsnP6tgKWyIy_rXE7fc-kWLnibxRrmUXORGsfJYXMmGqTGP8ltc9Yf5u-V3UYdySfhS09PkoOkgjyViOEdxt2_JWYNAyDdGBuULw0UDQhYm3NYxvwctT_aYEjqm-qyg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ee422dc2c430-24729914','','','2025-04-03 08:09:32','2025-04-03 08:09:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42816',0,'cd-form-entry','',0),(42817,17,'2025-04-03 08:37:51','2025-04-03 08:37:51','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-04-03 08:37:51','2025-04-03 08:37:51','',42536,'https://biomechanicseducation.com/?p=42817',0,'revision','',0),(42818,17,'2025-04-03 08:39:28','2025-04-03 08:39:28','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-04-03 08:39:28','2025-04-03 08:39:28','',42536,'https://biomechanicseducation.com/?p=42818',0,'revision','',0),(42819,17,'2025-04-03 08:43:59','2025-04-03 08:43:59','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-04-03 08:43:59','2025-04-03 08:43:59','',42536,'https://biomechanicseducation.com/?p=42819',0,'revision','',0),(42820,0,'2025-04-03 10:56:44','2025-04-03 10:56:44','{\"firstname\":\"imi\",\"lastname\":\"wiseman\",\"email\":\"imi@imi-yoga.co.uk\",\"contactnumber\":\"07879883931\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5uRqaXTMEurwNbcSCRsJ0QKl0B4HslEcdqe_B2oJ2QnisiJWq8ALROAEjAVxRmR2El6t6uRIs-mUzBruyvlndOIKWjnu6XOhCWQ8ne9q6EPEU4gUxAtyLcf9q9LlrS3auv-AEeJX-mUm771hSczPcTyYgATbj0i8vxYZtHTVSI5_NaIRmUjQWJ4hhcKf6sPodedOGx6OTlGGC5Cz8_uLO8yEt3_29ibjvySw-EJ5eqQGwnX0FtCxLFSfSw43Ft3H78BIvM8EQJ4-Dir-sHoL-7_d_rbFJ3tp5uDQbXHA_ryDTSG75zYZs4vVby2Mb3kyK1lEDwC9vIRzNxflCEmUzHjUeBsDAGlK1LCDTH-orp7RLgYM55dFCga7GGquPDRqffatVk6-82jKVhWywRPm68TtVCbb50H96APXBchDICsHLn-GwM61c9ePwzhzuTZuxvQq4QPSzqQi5XGEVbih3QDJqOucziwQtAikMDLHMrJGLdDNG53GXConEL3umh1cihCqxRglUNe9WZfswONiyf1pFlyI3vpuHJBRPBDPBm1XztV_ZO6NrMADpWOs4UvIZsz7eolsjLPa-EHxEhszQlLnAWCOJ4ZDzTrFTWOTNAm9atAW-ToJJdN0uD9PKTQVPd4dDFIyHAluS_GlfenHtuOUUGdkGsiBv4RCctgPJrcCxv9tL_bSfdPATBxSnyGKkxmti-u2ASxOgdUZszaAKuG9JSUe4OfrtdwJsqETQ4-qYCz_HOcbQdfWwC92c84sftgUyPgL5IFS2-SWdFRGZS5pEd7v2XwlShd8wjmIGqR-gheJL-9PlIlVmOMHnjqkCv3Ku7gU-T6mrpGY4bPPSFVnlzah_hfiHikTnfMin6ANNIIvljEq8t0FZAMglUQ8Ddqcssssy2qzaedD2-gwSg3sBL59gvprI3ber7ihWdw9UwajV6OqgZFXglwljD2oLPJQM3A-k-hHFXTcIyljazFbvF9lNCxsertTOCDejcWGwde_P07HRKnvTA_8Pz4wZH-ia7kQjT8cjlHrd1A4uk1BKbybL1T4pPHQHy4CjaGe9fhR6GWs80hvm515mhrDdTRSryT2PzS12HHROk-0JIvlQKeHbeEEV21bKwQhkrflQIyutUd12RH6PvA86rE2iuhCHG6KIs1e3aQVORWN2qTBBOj67IL9xsCf7s7fxvuPjzcdiXOwG2m7kpGy1V0hCwGqeO6ajAVd_sNL7GYJRZWF2LcVHTraqa_k-rQdL6rfBd0N04WKc3unKJylvNs6iFbfOyJ71zGxFYIwakYooQlRdaOmnQcVBMZ79Ca1NN4-zrKedZbxGtKCjAPzB5liLyRkrJnmm7Q3y1_4TbVRHIhZ9972vbgOmab-YL719-W-mqqIk45J7Fq56Oc3HgVGbhv8_TwPSUQbtq7Oiqj2mj6LntxUK36BTjAEj75HKCo1pUH9Pj0QH3722_S_695q7jYYhZ4oVDxawlgQa2C8ifnytK6p-YYp8Ay4VDdNpoEDf8lp0I2VpsX9JeMOJi4xYgJdd1JpY0O7tRN0KCkGnfrAYP1-xmta--AICeojx07PdXSEO2638SgHaG_dsz65-xJv1T0xShKwDsqH1ESJI-pBDaZLUw1FTLO4z6AxdXb39fuvtob--0AhlItvH50EpeTGZLjeGwBpg50fodLkg0IQdeSMksZDAmp79kHPjhqFeP2H51wYgAPDG0ku2T1WJJKYRSM6Ke_jYajk9Xnd_XRY8MMogKSIrAUCDRloIbya1QnIvd_BsNuiWpOHGGHdcjtwo1ksEnKTYVAanI9eFUqogQLSDHjGE1w66Dt3wqjIzaQsr_KoTcb6owD5DI-n_l7AJEYgmxcN5f7FGQUzyxsThBY3l7ORjFq7T0VXMv60zKXXZAKQsc4yMi87fcClItCUgMOZUMQfjdVMDVkjHHTd8C4HtDM-zOPtTFNUwEfm1Su9vXOEeBlPfK1xK861FLfGjRPquH6n0J6sUTqY7IXXzW3-WFS78Pj2nnfJ-PMHPlJ7btVr17ukVlEbG_bbbjNxDuSDU_jVQtI1lJcTB8jwW6Yz9onU59i82xo21Kn-HrUFY-voZ3LQiTbgcEFfcnqKb3olkezUV9YnSz31y2FDgWmw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ee694cb0c158-11658989','','','2025-04-03 10:56:44','2025-04-03 10:56:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42820',0,'cd-form-entry','',0),(42821,0,'2025-04-03 10:58:00','2025-04-03 10:58:00','{\"email\":\"imi@imi-yoga.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"n16 8jw\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5ow3XvMqf_iGEIyN3fDE7qCjw54WOxt6aCgs0fq-C8hyES7xNCxLOGYchBqZvwrozaGtrC57sGIlYXznrpAZBMJE3WKlRb6r5Fk04iqrBMtaaMqCg6A2FAbveGum3ado9rQE9ynE9ywbU3PCjuZQPAbS119GWIMxQX-KmCerXe1Abj_rE9-IQplrDFktsAvHYhH_VYVZzr6Cfh-tjk40LdvrQAPfcBIHNnL2XCw3rH5h-6IM9ifFYJ57kW1rA8eSHid0AA6y1gEIFR16vvtVa5xRKmJ0GtEyHVHRSNR4bklJmHlote2yQ2eDrun7OC61Z31f93FUPzoFOUAtbYZ-vbsb1zrPFinyZ2SJAvItwxKgg8CUrIOknCZWieptCFpQSuq5N9zwe1Q24OB--EzBzUXg06f9_OznlPB2CZSLoBwAVQVntO55pH3Xq7v31yIFaIX0z4zygMe6o7MxGP4lQ4r8YRsZKedp_aSNFHNnmC9bg-UzHNpmCipMXDnVcIfG92Cm6I9yofDY-HPjpN9qiLlde3FK0IFgpl_Urm-Q3WsOnIXJQX5VML8zPwwR24PYl_JgNxidoVDX4q5b-44pmYjOOUNOg_R82d6ZHd1kr9RiXwvUZgj72nRUtHk05XRDdEWr1Mi0jKFUPjWJ7BZyJy9rBaY_eLIA-vG-tfYhKlc199CGK69qys2iQodqVhRMfWyuN21UCo8vVe11PrfZG_8VeCmeIGX8O_0NRYReV_X_c_8ng09mElI2HcjtRD1dXdCW7RfBXTS0P9EoxkXY7CRHvYDAhotMpxSG9-3PgYzEpOSWX7LeqUkd8sZ-z80x1SHi-0xHjTYqsIIGrnv5TlJlkyIk8C0ZrwBEU1eXyDras2PdcjBhyKFx0n474oc333wWnbJkG2vAQGdYBjz7KYswgabPQpYd0G29oHy1JWRkBcHz9FLPAxq_7UhtkqvxEXW0ha4xMaRtBpPeRiURogtSIEcKoo0nRszGE8jDzC-LYK0gRsCYLDkNPVhcStc8zZayWQqwOaEUfMUC5Rs0HaxDwsODxAp95riJXpKURa4OCC3ibHK32q90_0xFTbite_JluZ5eVrRWYA1D4XkTlV47PEFn3uaXLC0sucN8T_mtOvqKxss2BCkDfpBsBXjJ0kP_YdOH5p6iZBjN5nhXhb1PXwxZNFtk4aDb5lT6DBA1mYDGtTBI65S8ClzpMzbzZeXm0xfD1odoaMlZTqjpqLfRZz60_8Vgdl-XNA0YUouW7x45GRaSavkdZW0LfJdOLJLtSxL84AoIETtuBfj09-YuHW8n9RVj3bAbH2oMjep5K1x2kZJe8Rh5GCPEtc402MgW8c_mfSiD7mMKIZl3NThV9DLE1qWZOW2nonuUcchnwRnYYaG6bLCllEQ-flj-oK_GTXSIZDZTYlHd-yiI-2eUQhWmSqy7IdCvfYQn-U__qVsQdqdDhH6doG9J8Nf0_YznPOJ8d4tl2Lra6tG6wxlwf-YihRPZrIiH5OPOyRdHGLT5vZ_L6pUuUXT-re4v2_GRUxmzqPWtOSX_gj1aF7bDdLfWEoyVwdV6xIWICZD1ykBdUXh_9ktvOq0D-LvB4tBXr0qlDyK-qu8mP6U-GZS3v_13NgpN9JhHJKmGHloRPiQbdsJfAktEfZMqilKwzIYSQPmvaQGCpQ_h8OIVdfkiiZhwbtHFU6fwoHK-uKGHRBlrYkU6FqPo2rqbNOJDS1fz7yjNrHnmKQVUSD1z7YEDgbMmRFTptMTobwjTJ4V_k67Tc8d2mQWOAiLL4mrezPYvD5VUQm8oOhUOGhDdLJGHbCz68TxryEXrNsOjB1OqEjbS4GJGjH8v1iIfnkb-OFWLL0hx0K1YjkmjRbyzx48xO3okxgr1cn78zttqJlGk9NLhEAUsRQFnu1jmbF2WZBuFOb08zfnFJ_T9nnsd9kkCFsdHkJYLiGWOEtqbdKTgWCO3rPFUf1sk81vHI_aBwAvoU3KI03bYreFHelySd9MmWDgOy-RMvxNZnnPxhhP1GBkCAbKlvHef2YHARdjo7xUoe6e9VpDQRIeiPQ9XTh0L4zH8GdDYcuyy9JH6VYTAn98a37-6TqHFiLwKUAYXBoJLRSAWLAZKRmLAWlkql1Yn6WPU9D1bjtXDwQlaK3SMkA0xatdgMA_caPGr-4BbC14W4l\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"13\",\"childrenordependants\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ee69906965b0-93444388','','','2025-04-03 10:58:00','2025-04-03 10:58:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42821',0,'cd-form-entry','',0),(42822,0,'2025-04-03 12:39:05','2025-04-03 12:39:05','{\"firstname\":\"wahbi\",\"lastname\":\"belhadj\",\"email\":\"belhajwahbi@gmail.com\",\"contactnumber\":\"07535652551\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw47i_BhBTEiwAaJfPphTOIpMN2rIfQ28bqf_iZ2LlqkLG2bQ7mUZmMO8q16KG25x2K0_csRoCz-MQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5gzmuCkgNJU-Xu_uOZ-6RCZSjS30yC70aZVXVAyVGCy0nw5nx49U14_cDhakpy-q06S4Izv_JfL1lK0ataGXN-g_J-WkGUyBTxtl5JtSnhKZYmXliw8ilzeZlLaPBPr1X41ok-Wf4OlNrXu5aHlKBQg8ZpDoh40w5EbEODA_eOuBlmFIJPtDg9h4OXE8XgXdp3eGnH5pSVI8GyiMegGtWOvWDjQ1Y2zSPIWB2aM_u3VPan-_N_BU858Gei_Oxoc5Y2WIMhzG3xxi0pLgh6-a8ELi-a1SPl2Qgy1YggLazeyLYebHvFe3RGbsesrGXU4_N9ryg14lPQHgAnDXcftsOMte50efTSSh81fuN_iGAp_rzYH89N6SgEYFo0c6Dxtxx3sHrQ20GuHPHg5zGXen8wSVjbsDS-As7MECDia9jmrM-pQLgAFKyshFplqNhzkL2F2LR7W37-FC_IonwV7h6hBVhfS_b2fCA2YbR0ydyUGMQS9rSVFm8oLoXSvQ-FhJXvGE35xB8ft6e61GTAY_sorUxd_K1o2bS-HvwZXvZbAHNjUZvi-cVkFBTvvyF6OsD79q5ltPcfyktEzvIEpgNm-QhvNy28rveALrILEcqyiF4d_9QORujJdUExQTXxHMNDgy1SiJ_B067RNeri842I2LQh0cyv2fhCujsD-Ai0GTymsYLeISEvFXsERSY7GDdgJhnDqDMKk4Qd-Jg3I01n6vnmgi-JxVx67z6GsCFt13pccCR24Wh3gpirFhETgrv_jUz5uvlECYpO9mAhYfVOSk0iikRn8X41xoSGVcb897kokYa97vijsLFYvy2aZ70SN26CIOhbxFe1DkhzoHEJmIbI4NoO51tjgRZVUuzjpOlrPsB3vkxS5mfQXeMm1pwofDA3Y0OQDWr_3yArie-wbCoevvtkPs1U86w3rhIHtJTkKMxt5lTuhJa0HHQ2bajmcP_JHve8T9eQhkxDfZa1giUIMejyobN4sS2Nga7XGKnUgedeDms8NVoFUITJyyharLLP3lGTaRl1hBXRiGpLiuhewRUIivAtcyOeL7Hn3YoGI-h8YEXAhXRXB2eItvtJcHiECiwfl-jECKUN9B_Se1jHeOMGXXwSwxEzvu3Dm4tGDE65uqohACx00HB13CDDaTFgMTHkYXzb6E2lkyG_S8A1dLaqNSoahgxskgpLCh6v71ZHEV75RW3t00_Tuzy-WLvdL4f6rA0ZZbKdlrwsuTg-pbvZxV5QgXsdZEExP8ozqQREQrnmiC4p5ZcriB6V1nmfaZlwzzchlwN3B-0_m6Ng5QTWQ5HgyI8SuiFWDAzC8Mfjj_qkBV6oZy-337eZrqK_8di2wpPiPCHMow6T4P03MqN1PG3fDgwX2_TMg7klsEuHycFPOpALOyKx7X6iik1DRLsR5bV0L68w1iAJT1O78Ys3vkOF-_tzqyuYBiNcJLcWYce5jXcazWvght2T22aFEw6-9-D9wQbo3-v0aI_93FnRBX1Sg_1mjjpjDW8twEWBla7sGqUhqqaVkUIbSlR3oP4DdK2c6BgVBBX3aYahUCN6GfhaNA04vHcFdMoOVY0yqM5jvBJto0tt_rc-CItTK_Vlo5e7d6VjJ1Xffd6okFBq-_znkRvKbrw1BDPw2y7E0EVFry4u_OckAWCdzaluT3J9mLad9GukoJtzXr3jiwTItn8pR_jFGMRN1FLJed6-wbAhhOUyfqi2_8AeuY39e0QomYkK9O3w5_TTZj7QAPyMzMAj6YCRU-CXnsbDR0LXaRbjraHH7b2B_YaJQzR5MaNldwvIoJkEo2uoOMoabMXJweQm6RgK7-r0B509JD5zT9MlsBiALoOm3fkxJgGV1rIiDnDTNWXK44yBm7DksyXVyUh8jyMcJtg3ZNQqNkjLIB0ld2jGmNXGnf5sKSMsVu6DZLDu1k3rfDzIaKwU0yJ9rAQiDQwFGBXXyZk479e0sTWPiDbpWSuTy9z5lLrDcSCT4sJ0WCcq8MCSbDYklioPAYUTszAPoMHNqNR_72qQJSknajc-m_JHKKCX4MM1kNCRHELfD1LLQBRV6rLk1IBS-OwYwLO8_Tf7mg6_rslswsR8sgfg56DJszrTw3FKvl6mKlJWShrvtYHNRm5P4i5y-37FFpFZ6e0I8YLMLA1UYYn_OH2WFrliyYZrXb2C9buNacVS63GCS5SbrisBsY2kt1UweA_tRhhzlVqWMTVssVIkgWMKy8PJOg3CEy_H2m2W82NMwHVqCD2-iVNDzB4h2TB8ue10yLq0y_WuQR6vm75Z8KAqDiff_xL0falE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ee815b717021-01562947','','','2025-04-03 12:39:05','2025-04-03 12:39:05','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42822',0,'cd-form-entry','',0),(42823,0,'2025-04-03 18:11:15','2025-04-03 18:11:15','{\"firstname\":\"Lawrence\",\"lastname\":\"Lioi\",\"email\":\"llioi@me.com\",\"contactnumber\":\"(516) 915-5464\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/find-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA7Fm4AtYXuXWWYgcXLYrgLU7Fsaol9IsX5qKxEQcSKTyV4Yhvy7PdFhqYCOUnqztdYFL_6DAisPxA71cSUtPFp0slIh8xKAg9NOyMNAwSbU-58T-KuPHhLwOFKmSEcoFQvK7eGXY84bqP2BBQTvXTqM4wtWFUX3FlPCyZC03OapRdvgKRPmE9urkKYxzAqW7c49ii-l8XMgDsX0CwGd_439ylMqkQqb5cMpch8-L3qDV9FN6CCO5OisorZSd19-BwKqsB7LX_Sr1U7me2X3E7mo-3LUG7rsn9sdueJzLZ2GlmseTngcgpgLluNlIYMPyW2-hLa5djAWn28ULKkyMhw4SWJ5RcYNjVfcZ0huK6gfNn4YiaetClRn4CDI8ew5xYAqD96bunFUpqZI2L4SUZf1fY9NhnPfj83JzesrirpV50aH6HUzc1aAQN7XxalZ7eHPfHPoYMyguM-82iPHBqKTWE5_Dw34EreVvu9tJqMFiowZ73sKVcmRTnEDBwx3fIiKiZZIIQq4-Xa9qOCBL3-Kq4IhdcajMwmBBsfaB2-zKGSzgyCWQw4frcCmyJD8rMqOGpNk4uuozo7VHXmncAU566o1kahYqnuBNFPN3oaGzBQwOLTWmY5iswabEIqVKmAEP9zAhAPYS4XGzH3twW2WSaHArgBNRK2jeKhZyQJTjgsMsC7iTi9BBdAti6rFNYCUQL5ACqVSEqWAgCGJ6g4xRPTdp-1enpWJuk04gQI8ISBO7iysSrKXBsfzOm9ap6BXKcP47Fq6qOf_ypEPrqH7T0nPOmGTGJhMCkXVq0QP86efMiRqjgkKy1pdOSoSH3Pj9-28S7EPiEV7CQIhZTBKKq6zms15OsB5VHgnQ4XvqNT7dtlHEnrwv_I8dl8gJ1XTaA0CoOq4tSC9ade-0Kyq4UQf9j9o-CAWL_LXZB3TcTfJPOhrOo5IsNbUncL2ZQddVW0IvDMk9ElBWQeh4bGGBsaa1U3nSzzdDAdz4PQ-JsKn2cyWYGZsGmqXVhkspBAxAapVej1BFXiWHSigWQDvNRhXztvrYkCoUB4MlVn7meX62EVFADjMPoddvKL5HYdmyNPG8JXBnWgDTutIYZ_ejfitoHcGPgzOw6XvNbV0PC8JmG34jWpqAZ6vnXcxX3wQ_88WIbmMTvB089QptbydexpM7qm0WLzL4pWM1jh-W5E2KtO5n7hqVq3vTn8SjOqhf19xkhGYB4YA_OTmjZgrXcw3nfWHAG0ITjuUr0Aeq_30KBFocKimw5s9HlD76IXOygcJS72p7cZpils83Yrg1rW-UNfVmGHacW1M8z0TKFO7CenQ3ZEwio720mt_kGp53o13xm-NWu3STKjSfysCNp4-eEphTPQSnUDTrPwKgGhZcnGVbpbBSPAmiq-8EJlTgH2cv_yn-hPdmEHHu97ZQZdCvU3b6fwyOepKCbHzogTXITwQ64ekYJyYM1L4Uv82Yp7DSPCLsaxU8dK7-7DqdMRdm-GvTzaUiKx7a5NoY64y-AijBSvc4ZxLWp49Izjjl5G7uOEb85vhTgwbf-v7U7Q8PUWmQtutCUzacra3B2gQ61ljFMl769bR0doqhFgWgtcyVpMPL1PmP5EGhtt14P40VG8UDNDq3dmSa8ZSTCCJcDnEyzOqwEA8voSlnvWvX1KsMrf4nVSEYRPMz789q0TaZx6Pwxk4gj7KEzItNbSevwPFPhw5cVKIZCvcH96mu1XfUFhuQTKbtBJkQzakz5fkIvcaOI9TzwvHd38S2CmHBkswyve9plqxvoCeXyiojENWow4WtsOdvtWPfNm2oWa9XDcd2BlK7pnZuq-nHzwwdkqEWYSzQ7_odexwVWfc4kB9knZsIC9RD595JsJUJHEUbqqPP6buIZW_WJKDLncEBsZJxYzU_FjtW5PcTZL4gHVzseJ-cDLTplC9YGfBhfnwTObA3jrLG6FB-zwIh_OXIZksFE2ki9EhrWnYs16yyFQbu27Q3vyPdxKyunWqxuO_K9b8nwBRjHbLrk91Ga77y3IUR21Sg5zMqDT2D4_cv28a7wZxragCLS7u_A86KICB6WUA9WuvDsGYkY0qPADofd0_nWT1RK_klqsVKbqdr0mnpzXsI1UEQ3kwBPiePe4V3MgjjYZ6hCnvW4r-iRr6xSkj2Oc9NtWfxQXGh6W7Vv7ltL54pmRfJ866vvWTfZ73guhXRIjOkmI6_qKdm8WQo206ANvwF4gEkjowdc0xv8Q0W1Px9l0R4D56CogIF0DSBggM0qV3hVTz6ytq2V2XvvT4pBxMKio4fkohuWG_GGLon2GvZ_2JxmLPp7bNaX_rPmUA0QPiS3dJRmwPYM5NDMWBVRhxgiE-kM84bPt89lb7Kh8FbLxQV1Lu9GDOvuGoDg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67eecf1c9f2524-02765036','','','2025-04-03 18:11:15','2025-04-03 18:11:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42823',0,'cd-form-entry','',0),(42824,0,'2025-04-03 18:13:23','2025-04-03 18:13:23','{\"email\":\"llioi@me.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"11010\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/find-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA4XBNq-X5Xj0nUsYi6JLyLrdY3II5ui5m1w2lG5YYNdfS8FcXN2O_kOO_UQgnPefGUkpq1V_sFUbE416RYrrR96dQ38LujVieD172rWUYEo1-rd_AHY9MeTd9o2D-ltB44MemRJAaHsHjsyDWvrHjwgo1_ejwz5BL7q3zLfQ2VVQgamo9mCUPow9q7-HoBmgvKLq7u_scTfOGlG1rjHStlZE-ehM8BtFm0j_YHGsMWOd8YfjWY6CzViRm1KrYtxLFQzbjSfGHBAv8RHNvRzS75Ca4cIgw0xyRxiMW_uq9U7HbYjU-ZMszgZ2txkFzooglaOdQZvRTrcoG-CA6Kg1h3P_TmKg-D-mSX6KRUIo_Qm2wn1UP-rQSNUOHg3qUwtqWaStET6R3KvQgbFihKugq6G2feBCi0ol7SeUbeApaENPKR7pZBuiKp-XN4XTT7o4Md6-8GbqyPK_gjX1Rsl0VZfDZdG4htxnE5qbr__mpjLb6wXHOYYjVhaSqok6rQId_OmETWQrbO4wehO_-D8MpJKq0tXAb4Qh7mAqFBQ6UaO9OAs4RC1PXY1_gSYwGHiilJJUItW3J0p8zJRpzPLTzR3IDaNMZ_W5kTaVTUVd6JshccJtJ7lciRaVFPxDbzstn4g_DaZU939GV87Z4CrbnqahwbLp5GW2x5lT2TDCYQN8QjHz7OZMRmyVxf-7bBJcioWAky_hT4TRuYpC4L2s5FJweeeHWD_N3_rwTmIniJ452-JOG6RkchIzrupmUQ5m-MhP11G8RYaPgRL2tE-dnBCLfZgc7jcElrwEwsCHUeW6znL6Fb9GUUUHdEl5CGO58Wwm86inZj95_R6ssY6zgLnY7rLvvLl_1ZJkT8WnQtojslfCMnCXcDLPkBcJ_oAqnZiuCs6JqpY4FoGxM1JcQ0TNDfwPkeffeW41tqVoegLVRB7CXUA8_phSgJLR8UIGfsY9r4ug8RG2dicBF9GDJZPXx9W8MnvdFcv5tBnvxzyyzhijlHKIIh4wLh3RKF26NuLU22UhLhg0dClS7WDKsoSrThIH4GgxONeG40D-5REsO-1e1T6y5z7cqzw8PN3MKFHIYfWU-_4tob5xs0j1WspQxFMrm6Pc74qat96dYU31_hXUnDlR8AsRUjmR0v8pyzu6ejqBJlLzhGd5t9sBS5pqjKzOMtxne4akVW0aGCxZwlLRkEPKtmQIv1GsHvXTe1-ToAnFJXPXGzHTefEx0ZkVdo850t--hIFTebC4hrUCXJIQd9mSq1fXk5gIIyN4ILFP2GjaHYfYBZeW6lpKtqmkoK-v4e3UqcdoOv89CZzZGeA3uLHaKeu26P_nVulvgmoXSZFJ3wmZ8eKeCM1uWEY9HCjv7qvozKilBtyO68r4w-hWKjJH2l98Nv8c6KTDmO4zDMDQuichSIQy6i30VzTcwVTK-xc1LaISy0fHFAoUqAZD-AdpY3ODKQCp-jd2jB2UzSnzqD1PKvEhnWXyAkVCczYGi4eaN1p3jq7zkCC5_d8RKz6YbHTD2DyCKceUSGF1ZNAs20Th6EkRp6s-OrRjEdatLMNUnZ0cRPZ-Yx48FvAf-MpolcU_HPPSXwYUpgs-st_FQ1ykO_sLdIFLltnCbpEKfLlrFag2tnz_CzDgrM2xYoT9x7HDOMn1521RRulRJY8TpG3UFGmpgXmg2T6i73Vs6otsvHkvJJg_xeNM0emnE6_IuwEMmSWu8UDpUzKhnyKPr_8hP2w86Q3jV_DXEwDjmQtmvdfdnYvVXkoyXZON4RZBqcEUaFrDcqxTPpa7GOAS3MP0gMwITESGsmyZNQuBv-wwOYMGqS8SqbQFB66pOHrr4OzIzxDhSiy8IS19HN28c0gmMy2PeqyBCxxVFOTt3Lc4bPvkXgT2gCua35DKKSa3y3Moc-15Wa_HMjLfVNKiheVKpJqeNkSP_ngrH3Qgsg02L6ukMAbkpzjhiJGifP3Dn2O0Kdnq5jx4eMZsuK2PIMHXskH5FcqfYn26TT5f0VjEiewmDC_udjsXqo0Z9nRO0msXjYhqsm7y43jEUYp3_dfNSy2lwQO6NXa56FO3a8h3DObaOxFdtPcUe8Sx31ZxI4RuGaqbhd46N9rij1PrdSbCrm4ds_mX7M6L2Qb9aDI2ymxealcdNWIWa7TGFQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67eecf9a3e1000-56425633','','','2025-04-03 18:13:23','2025-04-03 18:13:23','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42824',0,'cd-form-entry','',0),(42825,0,'2025-04-03 18:32:43','2025-04-03 18:32:43','{\"firstname\":\"precious\",\"lastname\":\"Hughes\",\"email\":\"preciousameriehughes@gmail.com\",\"contactnumber\":\"07523352356\",\"pageid\":\"39249\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw47i_BhBTEiwAaJfPpurKaLQ-IVe49lC0C1L8z_Xmz8dhenOhIO5b8JbLhjma7B0E3l-ZfxoCD64QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5NArRtoY18p5RDUdyhj7uhYodjmd9aSO23QEJWAIdjE_enEFyDQKMkD96fNOuH2nAlZcuxo5TabDM7hxP06ml2JuAqO47rstnm3oEFmvB0l8Kul5nzoAk9IxAY5Q5Y_nZIL1aMOQ5uTIdt4sgg0k4JZpwO1wJNv6G9Y0XztjqiIdEAibf-2yL46x2uHGbDs7cs4pywkRmtkXoSrWfBXUQxAq8PlNyge2x_r7nFwQtIGxunD-VtEjzs9HFrF4FDwIVOOC63mk7sZ3ZsjAD2bAAVPa1uKH15y3PqEs_7prucJi7mkRb9L8C3DupzftlVJUAdRgG-xBwaRr4mrfvPGW9aPy4pRTMzNDeqCoCrbFkw_m_3exd-mRkXgbDMQKy5cemNmJPNc-vYohbCu33nYw62G87HLdYEQYFp6juQBPdUMn81jTCPnDVg-MKZl2u7TA2u9_24rE0Mi3d5-FM9R-1xU_jQg_rk9KwKtfS3-Nix_4tB_a-52SLYbenPTZ2pMzYZT1DmDBUOw-UoftZEH9PgU-CVurrTj8exm8FLbuu3-n_bipDBFH4QaCPzAzek727PTqzWJ4L2JRqFq91eedH0xcf4YtflG11YM-_HMmqB8Zv41T6UHpHXkFdTW0kAUnsWbokrqN5SLfICsm2VVcqpQ77R-_aOZsDqIE7OjdCaY6i8Wrn8VOEk0ExLM7IT52Lvni4G-i-6mZVq3OItKD-CGbTkD7rjdLJWfMKRZ57d7l6hnQ787b1LR6x40dpkavNu5o2FD7K_p00XmOoewbUIcGGkfDbaNwOCCNJMv5C6fJI2GUuWEQPp0igSG4ag3BWKegksp9j3qLxffca-rrpSB2pXK1E_Tp3xvcVanoeYwXbxJgkez7_rq85fHsT7ghYlLrDl58IZL2vmrqlZE6gQfJ42PDBJy70Xy_5CeuMPy2tRV63bd17i725wtmZimO4GVvztcuho1XLTPtnQFn3X9kwKvO9azH6DQ6VMmMZBII2gFm836QJdXMFOlXd32tKbSgZY_nX34ZL0qGoOuCbmxa0cqtEGmofKCSSGDd8-d8qiCyzhbYraJa_tGJLFizXbDcgQgpdMOyd4xrBbyJHEIQ7vqeKvhW56p6tqOdDJiWfAdIae20R9ua9OUcXnuh9FsRDPyZkKsPxfVP9LZbHD1wCsvpot0i5tRi2OyB27DAPB-IeKyrzeEep4RUqAmUaB68dvDH0dJyqY552pI0s8AS5W1VtZehek4wm2ze6wZIvD1Ujvp4zX-OXMTJ3CKsVW091JQbdi7NMrmPDQy2NtBB-TDsTLWS2lF7PFieqrG-hMXCkJtzl7lNVFuQ3CxGN21loW6dWtb3a66W23dp3MMqnz49HHYOzLTXz0dn-Et22pRsDze52NTYvyHunXRe5hpPs5HBoaArMUm56AuoNmVo5XzoHLWLxEugJF3sdN5fswvX6_ZVNKc-7lweQFBpG3TgSwOT387-qZoUXU7EsUds0APjptJNXO84pBg0N2JarU9mGs4v5OuL_Jb1dPunh1NOmqJbxRg5wyH0l8T7QOG09Pp1Q-C5X2QkmmJEB5zZqt9fkt1L74F9_JM0fktXzZiNiYp3a_y0iDcFfs7a36Ew-HJFQgaSAKat7Vl7US0yNEFSvBCu5BJHeB8URxTG9skeoR5na33BdlGKbUuLAai2YPW7H1NIr50IswEzYcjxI_rUUoGP7jNBWqLQChgMnOl50Sgamog6klS2AztO9sdbLFjJ5i1TN845lQiUV8gbLktT0tQPQEYwDpWhtZ1V1n_tFk42JuENLMeBtFcuiW6wtK9wTZ0a4YqDznKL0E65uA9sUo-casMAqCiwsseTf-qMSvPf4kjwZ-MmA30a1gSjRGb5dt1yZJlYGM-O_4VJVkLZxX_iSnwVEBmZbVFVyRkAB8ae4c7X5mNvk_lbGjQ71KCfX8ARMBDlVsMunKnc3Ymys1jTFK_vB5iLn2w4ToQpZYxDlfctnzUK90wQVtR-O1O9DMy3EZPSP6YmYx775jTHg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67eed4371f10b6-00610303','','','2025-04-03 18:32:43','2025-04-03 18:32:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42825',0,'cd-form-entry','',0),(42826,0,'2025-04-03 19:27:38','2025-04-03 19:27:38','{\"firstname\":\"Ross\",\"lastname\":\"Miller\",\"email\":\"rossy_miller@sky.com\",\"contactnumber\":\"07725033349\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6thC27fyJUJ1ew41u3uzVTxG&amp;gclid=CjwKCAjw47i_BhBTEiwAaJfPplH0M5_LqCUnxPLIiGafmDDiPIN3Sc20thgLLCyGUofabU33z1QSzRoCgV0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4fU7EF0BIXrrIQqbzVHRx-EAloiyD8RO5jepAYKdXZX7Bfu-keLFxB8NrrVN6QSJXVriwG6Is3tShYrsLauYss8jDOBiM4wh3hLWkhLX3HjOpHoQoUc6U32PcqGgmpbLStj1oPOg5mqzH9FDHtwOTjXcDc1L9MfNJ-VE7A4qRGuScn97cl56GanFVmBit8K8i-S19pBircMSoVz2jj7voJhJt__Vdb-7GCy58IX6WwBY70_4vwdOp5W-4iy_5cEGnpXU1smFZdOdUQa-rg9zJ-pnXAupjoLPIgqGT1KiUafOK5pqPmuSPn3nKkzQPdPkEBZDc9P9VIyy8jo_Q2BxukzpACgw5f40zh2agLHVEx8MVXB4LPdukMmqTmv_sCNbZdVAY5n8HPs9dfYVx0YesTAdshoRVdIxUM6uBT9dKioYqEzA8h9_N8NY_q1y0cqI2EDhqYcnjr0GOujAbHLcz48dyt7Hr9LfZaxcz1-5PGpWyL5oppGSMYmSP7V8P2I75WF7RVRyxiAL46dxP1Yp6hYrLRnCVa2OFIAFaxvT7FvQx6RYV4nNqh_9eYBnUyTFtjqPRoCW0o_JrJkb4n69xCyShIyjEU0HH_Q5RpT2Cy9Ntc5PpYPyNIqLBwGBgDPX8iVeGwsNQhV3h7V10jz3uyV0Q0WNIThxTT9QZvEHAqKO6vXzsowbkGvoW1KWHCz1gfiDhvjcIRpvDXCS9WnQCqluuUuf9u92yP9FOtFFdFpsFfs96jSFf4oERUU7wMgM-WnHkEc7l4M9zVq4onoEKidMcQJTCFzVGZCGzBMhH9Q6UV_hOOq3zvRQCIf_jyhXOR7FZ0mxpTRBZMxbALzQSCYYEfHfqyV8naTikg_CMbfR78qRl5Mb34ZjgrUftOmseAOr8cTfCxYvLZE4U-sJsJEfcKZag5CRBv4Um0zuiosrY3j-7o053h_BtFmx2LtlLfrXzZ1_uTJFh72SZbhZbEg8KvXojtBJiFhLDIo7F1DK4bz0vC5DVOuE4Zrkwf2kJT0ZWLTZdeEXTMWaTGqZ9n8ajcpxqjtM1qwT9Z7-DUlMu_4dbvbBQUSoAdOevUuDpmvOJ6PmUKep9CtXAkteFKVD3lyiRL7B25GM0JImu8taEe8t1vWobAE6_r9G-JXZoFhPQgvLSWit59srHMcwz26FrRX08EPMsJp-4UNuTDSz5Wq8lLh5HV2AJtKrdF2VS5OvaQdZViS8DEzMiQVuIRCSxITVGtFdA9ZjTyaZBU8m6pS8xR6Y4ByMLlMhJaaOD7KYRuuyAqGAwzmPA-1TgA4QFOIhL2HL5y8OuUmdjzcSI5ixgtzPAuchVP_XPmjRE2ez-i8xD7OesKwTV-PPRC7-k6zN1pJrcMjYlOtAxHKvClM1qtEXibDAd-D0tCve-cjPmvqCiWAGV7mlgpyiztDx1yRLhzlxMeT4W2qNNZebd6_cUgwsi3y8k5pD9xiss4ZcB7U0eu73NYs-ftj02qI4Ew2R0cy1Zb3oBWq2DL2hF2pPZsuqu2TeJxiLIUVGvQC8EBmLpxaGzi9h0hZE7nxXbQFBcO4HrojHep-bUXM9ZVeN5ylai9zLlZO1RTpJJQG9LhMcMrWrFcR_CtJ7wToDppKiToXRalPkhwr8UqnMxRx5BnhuTuAXCRNwPSNEQJJyBY3bCB8x245zU4E0q-11OS1Ck46ce0qtLGcZKpifaLcmuJNjqBr5OCp5lZkVy_xN8Kws7pw___X6BerSw3dOJ9Z4-xyBzWqmt-KE4vuKWa4xApUcdssd8NQT3R9g8fQaSoN2q8jm9l31wXhe8QeW1veBj5cSd52Q3sM9Bq8b-eAknpr-h9ofGX2le_TtOx5dkTc2lXp_vV9eT_seAmBjrj-uKCmhw7dZ94_hAYRGWlyTIkscv1wWP1faa3rXBYdqbXeti5Ek-jPG4DpgTe0OwsjoiQFg6Nv2ZfodFA1suDkWxA0bmrKRSKHPeWWOEbsMvVZEEG1i3j7remt78UF7eJD5PJFCbIBCPFoXjLLNTHD5SY0hGHUTgSansFguEoq4iLoVnYZdj91I4tZwSHWrtjbv11PxV7n3tC8XU36HjV98gynZJezhZvk_ipBGDPjzObzGCL31YDoJvDUz3UvFHV7w\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67eee121d2c718-88076396','','','2025-04-03 19:27:38','2025-04-03 19:27:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42826',0,'cd-form-entry','',0),(42827,0,'2025-04-03 20:54:41','2025-04-03 20:54:41','{\"firstname\":\"Peter\",\"lastname\":\"Kettle\",\"email\":\"peterkettle06@hotmail.com\",\"contactnumber\":\"07506452385\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6thC27fyJUJ1ew41u3uzVTxG&amp;gclid=EAIaIQobChMI4_Wrxd-8jAMV2ItoCR0AGznaEAAYASAAEgLAb_D_BwE\",\"recaptcha_token\":\"03AFcWeA6U9FfbEzAjxTsHmCjAhIWe68Gp_73yxp2okBPhFVVPUU1AezzYswGI2edslBomBbSmhhMkw4hy--mWzCoIpRW9UQtMosft7SiYXM25sOVgdpECa_CZaNelXQcNnsmUQ24gVnK3MV9gHqKfobesu_pJi63WWum1aCWyLg7KBq0RlzUOVyITpZU6OA_68Bcmx9XDwNkyq6_i5YhUNlmNVF7Cjjjhuqjzah1LD8ynQ5v_LBYeku_IZ2LimrZG8at6YP1-53fapD5gASJgh4qGyO7rs7ULdP6fdNxboBagkAuhKBXUuDlBZ31rr_zU1KNBd2jRuwzSNNdjYf2DvGVIj6AO22d5FTxheCVsOFG5z_tFFCc2w0t6FF6DChTNF1ICFCfFoiwj6elu8mTJUFITkyS8ScAEqnFnOXM8vXpPwMRle_GNUGl-wXZHmk9TYsF8JT9JybU6XN96xL87emz1l_sN3fZcwuaDCSWfzLH9EU8rQpkXOq3Avdk2WVK11u2zdpYxOBjLHHi_YQ5xyK76NsGVO93S7m1DX8RkeVfrkNtHIXtwR9FsMDPVrwI2ZM6E_x5QR6O3Cau0UQKzfSQI0xxgI-JyffMexwwGPDCr1BWn6qaJpyMQPBXx3isWSvhLXwRUZtJAtUnigspd3gAwn96LT6su2qgs-y8yG8da09wFtOHE2bhzgwOYnDO2NilvnG75x311MqgEcfWG8S909jRIXBtzAad84ZF6oIcnXphM6ql_HwvHiRsYnFPq6_nT2L6efAtnMeil7FxRCq1UnD8TnsYR5T3SsBe1K9pIiqM80hY5nhiWXTQRnTKv-oiZsug3BKYydauk3pfOdbakrckNDjf-5S9wzQ1WYl3INcTDCE8v-rK6Ut3fG6lVfbdren4RzsjNJD8xJ3EUVtvf_ZCvY7-nJFDHdZrWLVmqi5ADeS9lJUNm1_RM7aympv9CHS7vaSqMv1HFudQUdU0uXNChKavvDVk1LD25qZz4rUuFNbjJY2-XWatLEOFu7c9AbS3STcZrtyH_FKA58HZx_SOm2pKb0pv5ZB6JaDBojc13oDz0n2J2w1yIEfFRlzpSBZ3Urf6XOpP2ifjnKiUpf4KE2MgRC-g5eZw95uuKgAVs8kopDtKiyx1bQGpzbA7vNUTvRAO5Fk6X5jUut3ulagTS1_IxAgUx640448PL_fjCIhop5eVGMxyoyE3AUX_6uS1qMzOMomvidxNrGBR-kbcmxfbS8CuHK_2kpEif_ZMYGV1QKRuJLJ3J5ZZuIz9hRNv1BdMKtR4RQ4vekUJpRb6kNY693cW-CAVQ1YpkZEi-k-VUi_le66D4Q81-i7gLyUSBgwBCrga16PM-p-jZHBd4Qu4fad_XwX8rlTpK4x6xqzKH7SFzROL7T5UsAOtTwE0yL1KbJ5nWfLajeHaWosIEtXB0f_oeH0i6YdskSGW-w5HDak6X6SMOSE7vAOgHXfpGpuNfGX0gVUQ8TF_XFAaQ1P7KbEGIMcJovPKqOnJfPi1j29SYucRtRMkkWb8mufXXXKGKRuJ72RjPgoxgbuTt4SIfy_zrKeFR2-wTbY5Wk1Ms9ZgkX9VDUf5WHK2suq9D4O_r0rmV4gKvWOSEBXV5EuLhMEKrG9iNDGql13Df1KDZ2AQiOla6_ApWBICPPM0C7Kv_hhkKGxsHw628wzOX0L9JLSVPiJ6XF6qQTvPPj0O-M1lL2C7h2oyAVvRv1-IY9N5mxqX41f-HRBWtkKX78xvEUWpDeyoOfrrl7JIf_n718nCnCY4SuB5b5iJSheH_Wr3CZsjloXAQmPFo5_QEKqDTSqsUH_KPX-n8iSGrVhZGPTx0IEkECGvdc5irq4QI7HJA20oS7_zmWo67iOBiGpmU6d0sOjsr4xO5QfxFauBBJRg8K_dqw2-cvrT78S9ZMSGgQjeyNT6AogCNvDGaxkCSj9W7sY1PZcu_E1KbeJhe35VGcOivwz59-7xSludLJ_RheRWNs8ifgy2zHgd0b0NnMLvX8Gwelot81IH0FBkrkzevCeevkayWnMEKmraIZ4A7bvHj-X5QYxXSIep6x2S75_7Iipf00DJ9UlcouBSpedlC7zm1Zhu9Tb1av_8_aTlw9Eep9X77EKLKLblJG3BsR_fHl024bl1f70pt1kv_KsSbUAlyMlPq1jvZUQH9eixW3Hj_M_IID0mypyqSIM8G7Q7cWx4aTVEinU9veG9Yy5S653pa3TVRiCc2SoqV5yrFIFrVqkXd7kR4X_pXg2mLzSBrSLngyN8IIjd61hDazveG2P9x65k3q6YMyZa_LVi_cEqu-_aLoKj5pNoWkavNc_uJxyWYrQXj5xImXkcgLAe0Ly2LPB3_u4RcAoRSG4Va\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67eef585620661-16985053','','','2025-04-03 20:54:41','2025-04-03 20:54:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42827',0,'cd-form-entry','',0),(42828,0,'2025-04-04 08:47:35','2025-04-04 08:47:35','{\"firstname\":\"Steve\",\"lastname\":\"Whittaker\",\"email\":\"swhittaker2024@hotmail.com\",\"contactnumber\":\"07794 439068\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA6xTXDdwZ64u0sd7btEm-rbf-S4BtfdQKkjaUb1UETmBg5cuNfOo3o2iwUIkqFucJGKC-QQe3Evaqgefj0trGNYFFa6ZHLHNtB6JCL0ITceuhfXpqInlMPGmF5qwjftugfHmAeEjFSgSW38gxxatNamSqY9qaGgGoEC3y-Ya2o5HQX4CqyaBjMh8BozRG2WME-5SKQkJbL2k12JL0KKTIwNbD0XYisfLbsdW-RY34bk7JII0w9-8NYYGDnLocxxlH4ggKCOQIOAWKo9nWz1rq34rcP8VtKtbokJhoPN2QgVUoyaevtxl8V6RiWM4xc-21ik3ygN3lLLPHKAJI3b3bt1e0FAsYktPaaKgYRZycnxWAIyRDoy33s_j6YBD0tSjrVTZ0gs2YpwRxMwA2dTGSct7QJ5eyDFFa1xEwAaEuVr96xRL2o7JTI5kpako29D9l6IU9zrgg1Zxg3BmE6Cy6GRwn404tYmm7wF6hFb_u4sxY7-D-MjjVxltCjlvVL6tHPIACsHwgIpqZ2dWNdJGwO-h4rG6uSkc01gCe5U6-7dbnBp6gFwRdh1xICf2jJ0t8ZilzvUq374HkU2L_FZ0fcoCuwayuskc59WeEO4ncU1hTfA2vuuSWXmTFNnIqYPFXbMClR98HhZZS0csXtwcdG2cLc0ggjZ1OtgakJEnlIifXi2_Hbd-EJ0JWxJnapXrNCg925KPy2kH2w5CfJm4lzJHBx-i1wp11sY4nPNHKmo_UGGpwxPUOUh_2CrRIGDmexJtXwh2k56h3-CaFKjN1mJdHmX79FJAGqtDnV0x5rM3zTb_Dq-l4ZcmN8roIrmgQyhRTcTwAj8fy_UFHfcRdgMJY0OmTowHrBnXc34CqN8c6FUpUKA-Q9U75WrgXRQiwCyYHk-QPo0IM_ua4FcLjamEizr8FyzNPRsgTooDIGAC5DvOrCY0WGXW_DwWRrHJL86L9_GugGR_cAjc9fJQZMNL5JZ87a5UqbValnYFHns8xt39ILKh6QUl-k-1CuYtO8T0DQFn4gN4DGRiQzTmNnDNftWWB4ZqAAHZ5Cc4b9AhsyXP4xlD22apOmRZS9FYuY6SnSMLJCyWDyT-ODMIvxyOPKJfff-6je5-wD8Xugcf7Z1xsMAuKAqQnMWxguLHoiAY49fy6c0TmSFkaA_IqkHQthuYmALkmWTXKYsnZ1_IB7PGebbTC-3vWvjd4ogCjH6q4T34b7trFk-d9PyFYrrPBPQDF6i0t3ViK_trzJOCS1aXH1IbsyA-i70Yo4FN5qGGDAAKWLKX99jZ1qMMlN_xi4eQgJzM1b75-sQQ9nFVx_FS1KZzYNY2HORxVv8xY_l8zTbx1H2Upt3LklliMLoaI-9fuyrPToK8eG9PsKl_0pE3n6uqpxmDkCLrpUzvgtzj904AcCp1Av18q2m-zJqrNWHuABzCFt9rEuzRHwBzxS6m7usgFLE7KTv2wQU2d3o6sj7qe3TLwSdI09KCCBbs-aNUZ7MMro9Wt3BtWopmknBVRDcs1_DZIgXlXA0VJqRQtee6i1fBytn0WqKSAecWVmfdM7K9OAa4fWdl9e5kMRzIEpNqlg81QyVGuDUbouREXwThx5P_EgZnqDFpR8Zw4opDbIrfJPF6I5K49hMsWKKuadIH-bDqyyCEPDhbUm_56fxb6XVRcFACBR9wgzxUUigJkmbeN4Y4e7cbkhrXm1hlfpxhhe2iycetHtOLdJ_fpF_5zeXp_ojkgZsXA8e3cc3bwORszVOmcHthpAQ3whjlzVLIl_JlP0Og5L6EM8QkMax2o0G9PFhjxX9NrCkiSXm-sYbOQZHk3nX-GoTOaMweqADZaq4gBX5t22mVky1uSGbuenmd2i9QtyzMRbRO0T1UMS4cthFjQmu_a_FA1-N34C8HqTa93f7P2Q90a9baumZEaX3IVGvrsQ8r8uUXUlRLWwgM67dYmGaUo8uMxVsndS3Z0HaLbgnKAakeoTLFQS9iZg0W9tPImtxAnxpF-NCo-HTqZO56-noX07xUXx-z6lWaWzYMRk_zYD_xNYr0FxHesvV_Ne50WXvWeDv8uR3OZ_ZrDvoSqfmYxix2YtO6MxW9NqIUsKm8rYQgjkuTYHrB91ZhSXtsIWVMnDsRKqhQ6rLi-fuzVfh7cgwgy9bNjlP621_yU7oprABY_MFI3XJ2mBR62Z4dAc1_SL1H2Gq66JWe5YmAJmk9s8q1pLsQCAym9pOx3QMzXk-WL_x2C9Acvs73OU2xVrx2t2U4-CDuojcerqAiAGyNqr6EQcYLl5fgKOMs-3INHong_TPRWmHYJdhr4PNYm34rt-1UQV4WF8tbLmvsWczwN5obmbzOiGL_GWBFuvfXyPbOqnzca7KyRuV0hkOxkWEOAIC1OJI2Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ef9c8ced35e0-14732301','','','2025-04-04 08:47:35','2025-04-04 08:47:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42828',0,'cd-form-entry','',0),(42829,0,'2025-04-04 10:50:31','2025-04-04 10:50:31','{\"firstname\":\"Siobhan\",\"lastname\":\"Coleman\",\"email\":\"siobhancoleman@ymail.com\",\"contactnumber\":\"07761032167\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uSN1R-rI0AtjtCWCrv7Jese&amp;gclid=EAIaIQobChMIvPTY9Ze-jAMVQJNQBh25zDmIEAAYASAAEgJ36PD_BwE\",\"recaptcha_token\":\"03AFcWeA4fTGRnSj0iIOlPx7ka1TmV3-R6tNm6b51Hbflm-Asf_45Ve3F_S3pKrJEO06Cb426BlXMa8TMiTmdKmwebQpFkzUp0z_3BUEzDYEWBzbWsJw5ONBl2WLHWNo0mZdyXuwxFdv1CwNPJYZagFYI2qoSZskbyu4JxwjUCQTwyrer481NsGInf1aCRxu3rmXEFIAUVuYVaPE79vZqWjNiYST1vnEb7KwBhzxVCJUN3a4u7rJsrYbTXpywUtLWA64s6Xh0GzD8Xp0C1sa3nzI-RwC_-MOCJuURUxuD1wjcClFIF_dcbiksMCorMOgCgUPY_W7k7IRqxk5BxtpEXoPuA-NHO23-JNGkSvJtzJ_xgBrAq2M69kqSLWKZ9siOEqefc9q3E26nU515TCmGDxLzW7wqgzLZdQ-VMZj_uyrY37X8_eFb46HlfJapL0qSlPpCKTFLwFPZkuGR-4l8tg_cjNvDvfELBWa0f4wHMXEB5Z-A3W5AC1aRvxIkcNlbPHf--P-cijHsFGfkL7iK9lBpyP54mws9qbKC_zbvvC7AH6HPlK3PU6a7XblqrU1QnxSmtdudrBvOnMWqTgfAKaeIfPcIyX8Y3Uhxvssj1QO17TKDtSKoPcut2tHelhacPdebRDfPtakJMvqpTnNZeXM5nEwePUEIT-26gAXtkNEGgRJf8irVte-19dtyVg_ordAwnxa3W4pXH7P6g1P-YZiZlfwXq-G9LwWtRTuyt2eZBUyPA7ZBPlMQgqJQGTlVP9TCQNqAcRlFthUV9Ml5JMwquUT26sQ0aRSXYZmxgQcFjjr_eSQKvsZNWiWm2niYyN_hCyAUJk_b77wgVYYEPOveTXPeWSY3_FKeEOhnFVSpfvIwQVBPI0M9pua-UtChMzoLc-p5jmMLD6Zuk8u71HcMPoZ2J2Mgz1hNFbfRmkt-ZR5GTDV_6QpomBTXAIFMFacIiF9MKVWDERd4kHt7Pg_axADRtmbvvJeLTAkIZ2PoRrP3liXI_I6Snzx-HVR06vHxA11K2nfq_hU11kbDI5HhxDmp-Fwm8YdRdylpvIfXVVpQ58jB3tfQdM_XaRSSpFNjQWjBxyUfpXCpItWnd7oyeSdk9da58_XNCzKRG51nqzl8yr0nGbWRv87KU-yOJ8HQdhf8A96PdxbEyo8ZFJLZZlxvZ9Z5RIUIJgyyeQB0fUKdfRIzBggE4bXMygPckJ7yXoMxcqg67e_8iyRr4-GBb3qQkAC_QM7MWqoIC1at6HOSJicBi-bG3l4gRCn1a1UEQ9l26heutDgp8_vkOdh_TcovKiGhlmC02PSXzHrb7JaWb2Mce6SR8zRI_X7nDHEheapZfRDS50kwY6WuMK9IsH1rn2p4nwrUyMAwVxqnubbiNsCExoVg_SS2eipvj4XluqPiFHEOGrCJP1tkQ-cTzLJTep06ULdoZ2Q4vchiJ-ntpFSjyy42wqyXNfNjyKfdTu7mVdLRNpx_OdIg55MEsiknXJXhNvC7Jx8gLcPK__jGJHxbm_UmMqmqUUp6Auecl-ipWbTkorH8FA6QKNEGYcHKRIT_D9yBMjnIlEAD7jr39JckkFiDsXJg_gNB2EWDanRaylR_6echw7bVDhV7OPuV7ruONVn9QCGAwYXVFKFe5RbRmApFWDIEQSMsUt1NfVLrG_AFV6dUfe3J2L0FqsNlQAkJ5C-W0u2Hvyl30wuNeN9kogRUIdCv2IWsUhSZt0IHYHQg57CsD6jgCxn2BSe7jiMoy72p-WtfEPpQEVmd4CkwhrPsOU-S3n4yQq6rcY0H0g1IfxaITg4gRcQYRqDhSLqAAUGyTyVitl0ICNjaKFe9x4fnVnseWqGekzDCb-y0icngcR_L3IyNJMe9zKkfh1QUrrrl2jccm8AFw0mnR-4WF67JuKybOfU9DkP1YWJO-fExtxzlMYmN23ve02RlVZIkCPXK-fN--Ph7RvuF1akGhZImUxQvEEhyQVb_4ra0nRv2m1cTMjijcAnASwO0vxr-nuQl-H4-pONYkeqcUTSqyv-mABF23otFPNmMxBVrO9F3t1nJeJglVb8dJ4Vr_OnKgE_SOerI8Rqw0qDC0PlLkVoPd_yBonyaZSz46GDLfR8DSlGpJk-cbhbjOZX_owqXYvnMB-8W-CE8d6onzAO8II30blby3Osgi3_s1u9dYAbQCUD5kvo7KcYt7DV_bcRf4tIEfrEP43WPZ-K_GyPCNqxPg9uansPuYwnRgTI7zGkpoDU0umNOZUDudoT6BB3qxC0D8ZjjgDaFkA2MxMuD_FV99aGWDd5wXXKHSekQTI3Ijn2TiLwFEYFT_3WV8wN2AJf7ys4QeJrFv-E7BluSvIQQg8IX_m4mN7noWMIznvKOaNDZp9sSHKJwF-2n7RF-onTiYhRJ-i8Skdy27csVD_hg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67efb9627048a2-46096242','','','2025-04-04 10:50:31','2025-04-04 10:50:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42829',0,'cd-form-entry','',0),(42830,0,'2025-04-04 15:59:26','0000-00-00 00:00:00','{\"firstname\":\"Tien\",\"lastname\":\"Yong\",\"email\":\"tiencinyong@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwhr6_BhD4ARIsAH1YdjAiri5E9KppNxonc4ITk1NczZF1x_jL2AnXpOb75KUNXAC8bEla7WQaAnoPEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4_ThfpvZyhvDx33OB9beyUCqbMpZf6N9DwlMJtWIzdERUthIrYEugH3wAcp5ctpUNydb8zm6RDaLvSVOv4q0XjwE6_MABcHee4SoOsogpKyoj3T0HqkWgMdM8tw2wg0QuIqmtuHGQeBOzeIyXE5sB3wWlZhWMOth4wHkKIGGGwiSkUSrY113DT-8np2Lf7oD69kHt3btPp71--7IXeyHihpELhM__57ItEggJF9-dJrd_YdNuK3jYsuC5sPy9y7xzyRnT3p_xsRXAmFS_VKaLtMrFyHyFJYLP8g-mRrIqKSfFXR_XZbeeStnTmp3_llSp40gsOgtIYEdGR7BE1aBUeyxJmAXBdhOM8XX6OO-pyzPIx3BnyvEQVDY5mD2oDbY71e0EDizGtqM6ctVVB-ow3SQIwfM07_wgVhlOxfwxMYMa0Sy_SZBqmx8-4TE3lMXw8U877A6nq0sIkrYrSWG9fgXkVd_Irk_MCmEUrkJlzMX10Yn-DGDcZGU1fvPRasXEmo8yCN45L3daIexz7uMtmRLloz8j9YOui2vsEuIhXmhG1yh9KdW5PBnNpcCAwLlNeHYhQ2zgMXd7VRFBH_Y_2O34o70Pq47Iy-5Ambk_dY3wL3P6LDo-THA5gCj2umcIIAqD03fsmPDG7EOW7yahfB1cIDNmKuO6VSMvnVjVicVvVPWzcZpmOweYGmrFPBdjuKf1_znnkaq4TjqU4sCwOUxWChTiKjGabxR_b8dv1rxJvn65zYZS48N3Vnt4SqfSghiRdjIuOYnUknih02YBC4XswHIejbUoyO8klNuaXyd18LHcH8eGqVCt8-QIw_rnKCJIz2nbIUchDTv2JXkMiFbhT2DiP2fgskzO2b_-rS5jyF_LnSZM23cf_p3Kxm9WhHJ2zb-JBJNtRICPR9riXfy_CHPyB6rlt0tSOLkbTywFAjNJhK-U32OuKUMwNAjfWrSF6SA4o3FjFmpzBNR5RsBliwtQqVCghM4z_N5smhQVR5YaxteIkKI01JHGZJ96Nk0kDaO63rYQGDBZpFiaEXYTtYhYfS9EwD0sKKMTMm7Pa3t0v0NUqi2fopASo0gAOixgrPk7X1I5ZDLjnVuTme0V2f6LvtVoTkUvQItWxXf_k7OJqftcugV7AkEy6lfQdNpEpnhy1HY_B_tM-WlM9vp4E_nwZaDkzCl0NUoYI-atQzErpArtyAhaEf46G8csI_VVVJUbOQijdLS5H9VtGfWrIp9y-w5siYaLG6I1o6re5_6fbOnWN-kLIuLgJdX5_gJv5FcdGzneruFeeqEtmUT3fjLiiszNfSggOd1Wsb4hPoZHYXwY2d_uWwkySUxLdnjjY0xSNMsYqKPmnaDeTwM80ThJRK11zOeTNKqZYrtPqr6bk836hYuJVm8EiGOILW3Gr1DCEabwSwcc59tlfP7bu0pNShyycCwot88yYn14wHo84SbIVAM9lh0CaYQNunaLADtrDWkkEjiM7szNRAP3XpGDpreYNNOuP2hnSJwGkaWrIFtkleSn_xVvujZCKsWtsZxuGX9MThYyufp5Bo4R0VFFgTAeD5Aidqg1cZXaLUCLN4wT7uWPhBfYFGqRklyy-Wi_xSYAbF5zFg5ww607h4uT69nuz0q8kcmQkGRZus14y-UoLfDxaxRN0DDTsteJE0LKrwFCBWFlqDWuK4KPruxwfMIsWpePrS7OHV__ywz7e8Jh063Wk6N3PdbSLPP5D9CDlHNuwzQ4UKFSPmNTayQ0F66wEN43WWJzWKpIGWnCRYnz24u0B1x_VVr8xou3oNHIjAs1RllmEsjOIgnAz6bOxR9jqszLvg8hCYnaaUbWKX6h363Y1hjkxaVRta-DdE-13_TwTk8ypsoSHWo457M6zyraJ9NbJirLQvGMNhuxKQHd7ixAUL_yX8LkjFlhymw60M0iAl4B5nQZGy4P-43LjVXQyhnet0fmH5nGN_d-J-hYzNRor77xxY8TFvUDk4Jk8dsp5hlDffvp67LXINku3fALNw6AjGEnNhNrrFdk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67f001ded31c59-10715777','','','2025-04-04 15:59:26','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42830',0,'cd-form-entry','',0),(42831,0,'2025-04-04 16:08:09','0000-00-00 00:00:00','{\"firstname\":\"Coral\",\"lastname\":\"Dawson\",\"email\":\"coralanndawson@live.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6DiUUHH7SPuruc0L_-GmXpyeQ6QmX8I86TDwQCelw8n1m45C0xRfOO1b8UyidMLNWUAqNy59ksWMqAS12sgDzIvl1lC0GiWPJTdXR-XwUH-YrPlMVic-nBgHvPY60yYawcKIyh7ChmLSG2Y53YCYpYfBsKObVkxSSIatG0Mj-JAyrkkg0hnbr94qqOYYKn7orG7AIMOEdRPGHjXTElcdC-sWotiZberZZKFsds5yIqa60BO08-FPvvj0V0EHDqvIalKnEbSrZJENaO4mQw_1Fjf0d3zCHvvun4HIz4LVna16wf8853j3pY4jkQyE4-s4XjrcckiGUmamvhRnjNXJTKCtS6hfMOqJsYJLJ5rjLQ9dTM9pA5AAIky7jGXMsmuqOx6q_1JTrvhNV9P-c38uSlpnt9Cg1CtIvIdQp09nfrafK8UwZtF-y1VGXJpYwXANqNb4Zgzo2Dil7DBOKDHo3xAD6Zq_Q6RSybil58xN6oL-aHBRYnFo82i5Rh-OzgB4Mc8OP-LHOdZfBb2BNBC0IoT4Pc3daLEFccmrEx3o1S8_BloTqw1E5saz8S7cV5aKZaQJv8suUn45xoyDN_Z50ji8gmT6q5Fw5A2neroaOe0jZqAbrcr_m3hKZrG6IDG2BiJNRqanOiKNdpdwKEoTVsSQopyL3mxZrWIddttNaJ7h-78n2EON3Dv1CH8BSygOX7K-thK7VHnuALKpn7aN7ksi-FBDBwx36DuJrldCLnflEf-DNKHTT5cKH5Uu6J0qrTn1jvseLyI3RmX2WbTALPjGhALeStsF5acny1TVP5UNlrjHRypV9Dlusd1wI-sE0txgPNFNve01V2d1GoE08HGnlegA9RFAz302ZU63Rj3uhjJSZv1FPSkCX3WJqpbLVlZfp7PSAiqafqpyxFSKyO2Oh1g9kk8C6b3ICUiiiPhbCpeUeyB38gT5dlzrJH9j6IB2cGYuVXDKXRHeih-ZuTpgrnTl8kDxXcNPnC5di7tRAPTkTEcejnN1l6OirDJttrzvEi6Lcwzd5uk1soXSqGiSr4GxtTu1cfd3kq2-y1f9UzaxoRGXfpYj7paWe8lE0R5yzXdxWsiZP6deDjXHvUg_tjYu5PRHLEN2PeOqDsJMLO0gFiUh64Zq5A2xhOsciMTan0Ibn6SnORzqpbDkoCSlSrvINKfPb_CdRDlLx2lWqWmaTOy5Lrp4lCvLqoSIQcTlZku-04Qd_Ww0WOdnI0GnvaarL7g_vBAnxv8smbDjswf4JBES02eLNGcUwI4exWmh1OhaRdlfDaGMNKQ3z1OEDmYvJ5DN1BJiGCxnWGagx8tWttTgB4huk-c0JC75POByG7OaJpPS7k-5fE7hAqUDVks7RdgKVRdiDobzchbzmJtvJvogCn0tf9m_g18PU_DaMXaZ-jK0D1kWANfPPm4mWY7eKGq0R_3weUCJPTqy4Yjih4EOkvqR-FLl_ChsuqznIpl_TFsjHRqDqrSUgYU8HGm2Jafc1pI0vuUuie9hX7rTw3CIpW0CMWuVo8PIG1HxIbpimhKAGZPlsH4_ryKx31juLbvJQzgAA1iD40hlFqdZD1rODdar27ERIAfdQTDBKdve_5PIcO-Qm6FPOkn8Dd37H0I7_Vbnw3i7mW0y_LbFDzYoVKIZYTEmI9h0brTrfRiWrJN0M3EQGNb6k7xdqBQgM5gl8CDHa6g8nmF_GSXC2dAQfu9VukQ9iCvo4fGE5r6djtxngJ7Hbie5BBknrh0dFK7M05pyAzo8mULQvOsElMO0_AfX7Uzhx6nEbrF2BsU_aQ9Y_rpvhOky0HMfbjK2L4qRAtaP8X_OxuQgpD5m9iyE0WZEzwymEBHU4PpWuIa1W_BSGj6nnVHG2XS8jLf0YTuU_8qDeaG7zYU5JZbgZVu_O_GxoIpKMxd8m0OW2kdwnRb_qSUHCl1fsuSGXBraHVTKcblJMa-Jxzp992u1oki0EodmwL-WfYBc4gRSwipZqyCIFMt9IVase6HHsMiONdyzxwUJZ0XQ4bXzF56JFkXacp_90CQc_1yGTQy6QSDtAC0CYPHcVECSQjqN4dwQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67f003e9629cb6-51702471','','','2025-04-04 16:08:09','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42831',0,'cd-form-entry','',0),(42832,0,'2025-04-04 17:56:40','2025-04-04 17:56:40','{\"firstname\":\"Ben\",\"lastname\":\"Gleeson\",\"email\":\"bengleeson1@outlook.com\",\"contactnumber\":\"07469190232\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA5_eoVZHgRsIlfJz7oCkQm7FNQY565Za9ehCWfpN-96qlA9SINgtkOs19Ni60RtdsMTRqbuc2gB3YbpT84p_SqX_VwwRGfHb9XGpeSTQdw-3iDCCa7FkaV0S0ulAuTUUQl01YJjAWFb7e2ngYCQqCSMVTPLwOnCfZHTmaEpNreVzmWBeBEWffxVRXxo3_XP92H0MMvG8PUP3BW03D8hYhQwLEkDSkInwRamia6wMGllhbhrK1Ru4dNH-xn-39p35bCtaI1ts6yRnjJ_EO0qITIzOST0TEt47F8VaNMEX-nsOZrwxjltXMr407IZyloG4XNDrXZfO2gyXyMzbNpjtc80n1ta0_xRLGyFJrjSjxpOsBmWZ-vvzarzXxR75lY1BMpAqnUWcJxNx2KxYx2TnHLyk25bd3qwXLaYFaksR_P5c_dGpHFrI1D6OKIoqZUoB90TDep5KiL5YcG751YrIVxK3lr5rtdxvFSArn5hKrM17s2HMa3o1mkDkJliVWq7odVbTKIm34Fp8ycC-mcXlB-KO_DgO5TsoK8DhqZNl4xpUSVTwtNUMVf4e32iTjucGRaTXf88NPjps4aVppcQkn_MjJgKkKPgX4DlmFVZGosPFpe-PLZ8QVI-YMVln4zZcs6nb7Rr6f_es7t7Yo48pSskQjjhh4ahYGYb5zlKHLzes42gT3sqoqTOuRp3rHnw3NIIwLfayVZ7r0xd9Yv2F4M49XRtVuyz1lvNgVC4CXwXMubmXJuTSOXSaykXC2scPPlp2CP8wfzpMYaIiue0iPQ9tJcNEmfHCeMtn2XiDjFdKzJMMKb6Gy-92l_89EX2z2eRAKXD9-60PkcY0085U6D_auJZfnArG9giSJqyvoS4BO6INMRINLm8zTbU3WD8oK76g3LeAicSDI0a1ZtciRzM2SkLXt3MY0wwHluXQQEN3OPUPA3tcbOJXwDD9SF3eksfD_qFo7Ow_JmUGFNG1P8puq75JRBkpYUozdAsonLdvqkpiy01FyNlUS6ecTH6frj4soFRCPehaglKENt19Jb-ozZL4nIOq_V3qftdq54LHfpvh3mS76c0OVOFTRIbzKb6uCPaFfhIcVSSxeob8sheGdnFe90MHSCNITcaiKqpEPgTZq-iA6EAEd__967_vluULI8BZPUwtYaCco6Dij1pAdLQJWBU5VbloC56PqR3YRLhHx4bxpv4EOcTKlfrCFXFV-3DVfHHdJ49a3JTwCovTGdq8U_CRVArkcq055fL-Yex8aaIR8M9WXEtlXH7V3I1lio9U7P5c90BtdYbIe4K1PyLpwt3q3PTBCETIPm-fcGyxwNzLW52BDFV6VITYubBqQM6W7-2-iSh_gI1kYWmx5d5RRsO4OK02Jopu5zQO6E-8gNP3LobAHNulUtFpZQqtoOf_FDPayDslWK0Mngq0ZF7cywDRyvEX36frrncloy4yNguybi7MsZrMbOsXEeg7tBl4esBcFmt9lCEwjuGzizE29_bB-JS5_-oy8G6NRKCv_d3BuAVaLYR7PkcTqUFsLp9i2OB2MUq1ip7lNSq3eSKLaJLO81DTjRw6zshEqvztf8yfPiglb985slxq31I07_V-rnJ7mM0t8654Tv9OzZgchHY_9f7Tnqv-R029UB8n7w-OIy48a5apiFMWm8aJji6mvIUrinD7mqgvwM1z_7G4QjsLCCgdnnwVGFBMsVeZyjjrMTKrQeSIpse4prT1RcVg1_ZaXDPto1UMWaHQdbDvQ5o6i956AuX8va0vUdBiHOimXbIn_jqt8hkKyLQHBfaaIiKPWEmJ_wTKW6us-I-SSuQeKpoSXHWC4uNskyPFZRQTUj66fxUndHkhDAMcPi_wSL4MGPNDuqdPzvkGjNvVpdjOR5tHPVrzhK9ACBces4s3iuM4D3Z63GRmCby5WMtznkwGPDYNzlvDkWD7WUbuDZEDyPUIpEhTA_5qI0MAfoNR8R1ZO-wGfjZW6Lh0-QN8KwcsdN4jfgd9I7OQu4QG8zSJ0XRlWak_c2v6hmIEnVZBJFXhN3xvmZaeP-4xRpj9fpD7iYbRCUufMBR7I_erlwhKhHv6NhEnYYgaBGLiaouaAFZkXWJoUeM36YP-bOWSZ7RY2yCZOVoW-SZFoR4EUx-85-WmqOT_GiX864s3jLg_OInF33vZXJcE-iyCeOeUpmOv-NMyvyUi3v13J9orQ1sNh3mM7ai0yIfpHdNn8ic5_yYtJgTCzydotAw5zCvHYktxJqpRDLNlXAPRXbUOCtUtmIaRa-n5PPKZk1ToxOLLV3C8Y_DgMjKLBRg9ycNsYOdvUzGBSIxmD5VxixCwk3XMOI4LHEaaWHCYHilpxIAB_SFikpc1h7i4SKEZMK5zxNuMGtFVRcXLDwaRB5tRg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f01d484d3619-21341090','','','2025-04-04 17:56:40','2025-04-04 17:56:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42832',0,'cd-form-entry','',0),(42833,0,'2025-04-04 18:04:56','2025-04-04 18:04:56','{\"email\":\"bengleeson1@outlook.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"1\",\"currentpostcode\":\"Sk7 3jw\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA4BvrqGNtZEHbZF2jUOmWwD5ua92UcLKMlHcCpk9weWc876wGQkDczBlg1_IY4W7HinrunXMIM9XF5P6hjnfGoXWkxsXJVSWRBdAGjVqwgCGsZwjbUR0eoW83SXFi5s2wuf7HpbfUZAUBJq3rbsu8mLjLQowu_Qc5DBYxlrScrD3qiLZ1OlQh03MJrhLL51dvtBGE_1lSbDWZzlSHIS35jtcCCXovVOoZciNNtnk55mvCbTOvAHQKMJFnsj_ChwMRcTdKXjL1QkLuj0OgVfhKlACIEA6MmiIQI3A6nQlqVAHnrfOQ5QPY_bnvLnkacdXbjFdfwA1_0KfuwFA2B7GcK8nprm9-eT8fonv4pos8aeNty9SSEpQnhmid4LBouzdbuO8GOUDJbRkOS74y7HfDmEsstZara1Fo_Y2U3t2nW5u0pk8rwleSni0TPpJRU7RDtt2KHlaGQ_yK0aJ6fV-usl1F6tNjFOj3aNZhtJIM9t5LhBMxKAZD6IR27v3gB52qX_mBXTfiM3ddPh1rAYltL3MSBEJ3CX7Ap194m8VIlorinKJFs4X2VMlkK2guBs5TqvnahE_WFdSTClnNj9eLgsUgEF1_-0D8h6mf9BsOI6tNvZAh2edcV4mxtUDH2UqFuu8TvFNqOUyI7xIumhskJuP-C-tImTe0PovT0rf6QFgEvgvtFgsiBp1aL8NoYogOF-HwsxA939icc9zLKFUWxvtwjTv0b1QyoA034qjfqw02PWBoZD-HYCL8XbkQzsjh8AqiTLRadXPrVBkbbKMDtQpigK9A5hAe-QE-koVKPHjqhSF7K9ZCgagwpujDAEUwJG3qF_Bf7FN0Vl57ao46Mjiw2jp9PzL7VI9NANsHqctHSBKvbI08jrC9vAlLugQtRYSPByE2deuzBGggL6IH_JzfPSf5DWP1xBGOOnSqICwfNM2EC1tZ9hWsTx1fJYlqmZ7WZLYlFU6bB98tIlZZk5u-cTAmKDEw6SoxVIjQNhojQfkSvmjmsiEiUfU4eRpNR39L3_lnBMw-C2wUYn1Kbicc0xIOUp2X-t5kRBhBx2Q0JGPkPbvALKrwp-k4f9TIOFkFrlrB1hB9_a_Unz2kL5Y6qVjCbSUkbnF9cLXGY_KMR9HyNQ0MmfskZ-fSAe9Dn_bx34suDje1jLrXMkq-eOWlEISy6XuQRYNCcXIhn_9By9bc2X6K3rhstFoKqRjwzHy_4ray77PL8-rHVMTQIEshVxeQB6gI5c_7nFJSRHj3avPgoNT3PqsFbvD4wdL5aPUuD827m-0MXtw1-Vp239ZX-U-hi0tcX5wFpfLqKb7--jFo881GZZ2jJM3iBV5NXNaxT9AlXSyf5sejMTLkyg-hzAgnKFgy9Dx696Tc23GX8yWNYZvr_0FZAqAn_x9QvjoNWclbiQbHTBVdsM-iYJod7zKlMGQq92yZ39GtfRTzMwQrZsuou3G45b0f1EYkmLfnYj-1BDsBHWREyXTiAuuwG5onB-qAPWDGAKhoY-t-xeGuDCdiENWcvQMvKruLHTt-NAspgbbhuJzfIuJNEhKIj7msTSkGc5fbifWhXEZjj5zbrijHyymclx31urjtHT8sU47ZRagyU89x_3iOTcu4wtSjI9JJS7xFQEAK51t7pXR4yNtvlFCH-TjK0CZCVjYAfrUCzu-oe7QWCoJmSBYv77tj2zC-EN3ZAGqaqqYlPBb0HoyEJHH1bO9u2yrHoa6SqkkMaoPji6Q-gL1Dd8VX9d0fe1MoXnldAcLhXfrkQjVJCga1A_QM_fuKKKp-0PkMmDAG7VlMIDKfZHu-vWUUcOxmFqkciqgbJ9XEbwKWcDcOkd9nv8wKNCjeb6nNtJupcgJwhUOS7--kc-MJcx-L9JEM0rWU12ng0OkyNtApRiAY2PZXsPh6apXBRxXykif_LVug1R98VcS_eseQv0QXXnBRNjCDwM58QF3GZlnEtiM03rbys-Lep_nFvUM8eQ1fL-eU8A-a6FOBzYjOjEMRsl7fsgdePM2fVyVqqMuXuMrUNyTMhiT5GC2nRLCDyZ3siZuFVtefO5ISvmR8YzHSgVqRKCcv2tDVjRhN_jmi9Gwkqz1bcTZzIbfGTkPv9mZfz1SvSIyccQGATFzXWcr4ZIjO6gMiX1NPL0j-d5CP4ckvOToanl68uFHMb-__1Ym72TH1xMsvHZG-Xhbb-hN6eLyfOlt3uwrPKe9ixNeu-iKb-2sbhvq-2rdpD9f9HIEWEjUlKf5jqwNPerM-w6DMgc6WChkRaQDn1tPuGbZnA_eG_7zY5MxMgXCQqbmdM4Rp1Z_TsbUEy-eYDUtuKtILmWK9xJjVyTGNfRSmaCDmaEXj0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f01f03d24459-77020810','','','2025-04-04 18:04:56','2025-04-04 18:04:56','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42833',0,'cd-form-entry','',0),(42834,0,'2025-04-04 19:10:00','2025-04-04 19:10:00','{\"firstname\":\"Mark\",\"lastname\":\"Innes\",\"email\":\"minnesm@gmail.com\",\"contactnumber\":\"07540460722\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uRJgse6sxLdKxInCz299HGd&amp;gclid=Cj0KCQjwhr6_BhD4ARIsAH1YdjCbnjDvjCDdZQBlJ0bZvvhR85hQdzXk3SSP6uizRqjFd-qCdpiLTnoaAsTaEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7YzxKDJ6I6H3L-9Hm2fNTS0ZTnpWWOyFfuLU1-F9cmlLkVcj4ADYV-GKZkkqnVWs9ULiyp8Dx4djr-HjHjYLeJ3O9-NejgiLGHu4c1er0SfMI8BtkMmNJ33y2jAP3P-8f7DNTgTJrfgDDIRUBYmJA1ukD_NHfkvS2hBHiAtVcCHEoAaxRw1G0fmFtbz8RwE3DFqTThkHJK03Le68O4_Q8UV-qO8BeCt6jcKnK1beneowsfwIIpfi9k6Is3-DoIKAiXe18a-Gx5_13AHM_WTMXb8MGkchzlg-frSYWoGObh-hX9oaEg_IS63un8sRMiJkc11nUYy0hFESq4j6z4Dr4ugmKTRC_-itrNLSGYFDCSByhkwJDg3XXTpUvugqOxvMXaUxonQwaBD7J_jHDVamt3c_WPRLk9tG3CAVJHHopuTt8sDRz6S8Lqts_-TwMSOSkbAH3TGDd7zIYxjT0BVakVi06hDm0qqskAcY77S9sqx_rQXWV7dZskmhcEmUzdNkmPspNZETPiSRpsDTlJnYNHMKbOHjTRi7KlvDU5M2hm0Ae05lt7smBXXGNKreeR0rSsaO-Kdcw82mtCJPtlLoxPvZWDLFaxtc2NErL_F3Wm55WXI01zwhtR164ws0XioD6Ifk6Lmc0tJONhuGNr2StbV2c3q3QggbOFqn-cLnpXeCXeK7xBF_au067w79I3Fg-4vBs6xrmwStn0NuBymEc8hkd4vtaKCAp6o5l5etdWn-DwLp8QVCRSKzSOcVs2iUtcQjEp32_R17VpTi9DOhc_DLeedqqPqrn5uQ_s3xEiepopvEBxAZOpOy9WnN8x8VFQ7x10AcxS3YNzZTRR_y4Pq-uFTivdVfBOPfBNd0tIz3kqntmBMcU0a8lVjEHec1xW_CZo56vvvvYgHu6xewvEZCUcYKH4UwfbO67_kHu7g23RywwyLAdCagqK8B07mlPO8R9amkn0NJDUVlMLuhufBeB5cBvsEgfXaALGzgGPsle2y9_6kEy_ZpQRMrpUfGhiotNqMsVeBDk7YziO6veretNU3-lI00ydgX7r60lgF1MQMTzhsowNcm_AGf9RqSGgO5dtP7OmlepJvVlJZUorfNI75p3dTn_2Gz-DXD3wgcdYFTQOfXQ7gmJ_EjtAsbPipSoGqdy7buT6BoKTHVV-R57DaL9nr-9uj0KRz6mex409afHIQBIyRb8-8WmH2NlBA-A-Odx4bFHJqA8V850qvw6uuhCdXBvwOfCHyd5jb_c-Ua_MZdGxg_WT8MIemNeLN7hIaJhomCs1FngfTTnkZ1KMsiGfd4rq3i2lBsKzhniDgtV1iVMTpdivKXeCuULZiBoosPWPGfCzvVmr7sHX6o1dBzsmrZ9p00GcNGb0_hAq0gxLDgUHzkr70Xj4O5ZR9XckPrV405gwrffFzO3fT3usdgWJlW-LGkhT5j_pDru5OKmGu5pravfrvvKD0z0ZF5r_VWaz45kXNTkzlUD-S59zqXx75XsWPo7Cx4MsIUan9VXnDmzh8dPYkioQtW2Cpvi0_b7k8eIAv2epcG-twviFHZApOUFW4EWQcvNSrY2WLEVcqGQNcMQZg0Wit55EhYiW-hTgfyIK5ZQOX7ZhfyFMAmTvyrO1yVmkmjeLDKsd_vo9xfgH6U-m_0r0TNsyvuSMYG4ZmJ5blyuzzqDRO9Z-WQnnEpHkNPCS0RDz9BQsiQiPHEEAbK3TV96d3D-d_inS0pGd4_OlRPnjF0HewhS5YaUzMPy-odpm6XDOpw7OfkfRNrl3zput2O6f7D3byqAJHItfCZJIXxr95CSHxJEcJsAzKE9waMQxj6H_eyb2UvmUf_aoPci8B2zh5lQ2Ac3Gd1qLyp7mkn7T33-tcwtkJEtmponSkSK90hF14YUSaYEnbeSekI2ghyikgsF0XMij4kN_Nd0BG-XDjAebK2goEhSNd48v-4Uz_jjEzVPV-Z2leDOSnC6pcwQj1P_fnOVTS52J6VU0Zdtqz4n7qUeTr3nO__SAgpV7FYvobezWFnAPdcrkq-aBn9rsYB1nNgfe3qqH3GcLmquxtqsOHPcgaG1VfWIBpKKad6ZtImidRRrueLL_lxzQaShz0KZccYqJ_aqiZ6w_1DOmjgb3dtLboKUsq9F_JZ2YcZrdp41DM44gJiN97QymCQtwFae63af4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f02e666bd615-11382619','','','2025-04-04 19:10:00','2025-04-04 19:10:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42834',0,'cd-form-entry','',0),(42835,0,'2025-04-05 13:04:43','2025-04-05 13:04:43','{\"firstname\":\"Louise\",\"lastname\":\"Stillman\",\"email\":\"polefitpt@gmail.com\",\"contactnumber\":\"07786231515\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMIyJivyfnAjAMVF5FQBh3AdDboEAAYASAAEgK21vD_BwE\",\"recaptcha_token\":\"03AFcWeA4mxC31ruv7r2Pkv_TYuK47QDLsaS5Z7igzgsftZOpKgx0cZgRpIfWSbzWVqA52Yc-FYkgxasySDytHWI3QJJ5qiW4K2QpU35wwaXHM0tyA-i3PzeEdIliQmcyOVssM3IiBjIyga_-TgbpkHQB9UwCCFO2PReap3L6g_CkxjpmxX6vzEOAnl9BNjvuJdsgcl5J3yxTv7PuoNkO_3hFCZjtKL0a9t3NT_Sc-7NgrQ0MG_6sJvfAlFowmAgVd1x6kDW0dAPdRCuJs64-4VcwM_TiRi4Eh1JW5PiRMRJnOPwwkhNLU6j9lzKxWud6I_0FQWAEb0aZHD-KMNn-NBjNztBj_1XpOjyDNBs5b7tIgbNEFG6krGkJmBlW3yyRUvuE-q0KAwK8atQ_exEzYInmhgN5nXoxgfDk1BF7SpaErAtTBPkLmKEJFJTe_li3wlJfuax4e1TIDBvAdOF50WHkWaRUqR8bG1bcW7g_4BH2zM7-TP0OQFSmMP7kgfF9cAcSRL3XW76wv1vZv5Lud8BMKI7dRmBlsr-hLDfPJpsnnwSdL1lMHtpkFCJcOB2E06vbDf0TfU99HMgS0YPn18J6BmfPtXyjeHlJmepzBwId5ZEJq4AKq65zsjqrl5Gu_rTVluBYb61ugIySXraJAtCKLqYDRSaSmVHyqHN22CLqEzYFwBFQx5k_iK5aLNAP8akOHuT6GpSpcP_rFkGajKeTUy1MsG0-OaEjRfhJXAMPJTT0h11HBKQI8OhEKYEs7PWKEXV7F7EUJbDE0aXxLtvRPwiZAQ1f58WL1gkKd_jRrat2v14G7tZJqkOYinv2hIEd_-RMj7Ae4fJKwow7a4VfEpciDqgbUdfmY3xcR2egOtKsux2hpUI43KLXxkRzsItfR4UiBl2BcGy_Mf201zhVvEuUMmBp_JABK4m5tsucibtnqvVAIKaeURqsw216lfbAdQkvF_gIzP6Rc3AACEZSt92Qhzbc9XDdxQEfDxuR24mG4bway7fx9F0wkxbLOhK0X4_IQvx1Z2bqA2QZx43fz6j51mqxZm-t6h-omHLNoD8btaWWIL3hrWPFwrH2Tf65MQ-QsyLeA9xloWgVkLtVedzDoFbrh5pZcStPe4WJy2IkYnVRLODdUqikOflvf6uye92XRFWQnHY8KbT6TsyyuzxSxa8eyN8R_72LolRtrqEUTLBjnVMWsHp1mYF_hYZJQDpBVl3nLmhlVSAuYzrs-Z9WGVIJ39IM4PN6GfTtzNdiwg_ljAPDdTukrj8-Gth74alrrvUbIGtHb6N8PNFlHMdSLEanaMHkuGTZAIUwusOKj8U25c_QkS_jJvL3BiW3QloadlokPgUal714F-Hgy1lURtUu1hzIcAYr1eq0neyrNwB4arbSxvf1z9M5yVFyJTgPLwb_vnVJXqghSJdKpuV7QDNOtTJ508U3N41jM20jhv3rW7FLM-zSIStMkisevW2rGkuN5nOEL0sWiUHSn2VbtJNxBS6nwSCO2BQ6cuMBXqAcLndqs9pPtGjATkLcAV5aGoJvNJR5RZ93151vbaJZ8LclVQSIzz73GUkaRRtduG1myV4KUEQACAU7VdJTxrnTj2iSGJxAJf56oxLHtdMwq9eBJHyoCroV5uzvwR1KhwLXM9ys9nZyQzjmBwxDS4ABhc4tS5t3lXzMYC1HS12W28s89tzeq5WJUxM-4G0Rogav7xtgG1k6rYPnwaSNali_fvxYdDYbp7SSxT78YMO4nMrKyGEu-i_FoMsiXz1gYiqtm5sNf1X5FycPKXMM3rO2M9umd30LoU69IozvUT2Y9kcEm-4585KGz9oOsc_B1mmyNm5SaVpc3R66qN2q8yZp163PFC3cZSpyXhpXtBDw6Ap_Wf7wgWqGEujLp7xDAGZe1IgMslUDOHeGHHNJ4ULw03-zAs7Elc_9N2mIY8zwsqeNI75Zvo7IF8WT3Mewspx_QF61DkVdelgilqO-I-kIDvz78STD7gNg-ICGtCIZkl1Y-dA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f12a58708487-58197693','','','2025-04-05 13:04:43','2025-04-05 13:04:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42835',0,'cd-form-entry','',0),(42836,0,'2025-04-05 13:56:12','2025-04-05 13:56:12','{\"firstname\":\"Ben\",\"lastname\":\"Heng\",\"email\":\"benheng92@gmail.com\",\"contactnumber\":\"07899540599\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6Kp7Bm6MBch_jiW7hq7Z5QMk-QLMya6YAIwzhUIfzhHANLd1yPB10SCnuAIg-FMFq2HCiIvSrBOn2YvgEeGdFN65fpezf8YSJR0W-snzRWxNG3FACO1KB7Ps35UoNvh0cjgwTawBrIClKmnw4eoNWeW3vpwLP6tHytqP1SAxi6vfkcID3WC9QkdAz7dzrYlIC6bMZvyGjT0XUuMykqq9gdSv_Kn6kNYSkBsRQRcf-fORnEwV6c68eTf2coCtirtcHLFE0aUQyyODluKFnGP2QBFaQy2gt68zGa9TbUUPhY8G2vuXHoVIC2AHMXJl0GzKxMuFoMDYbXroGzeBFS_UgyRpE5_nzjk4qfWVCdPpI0PKZP-7B8ZIZ8WvH9XKiyvR-PaPDGakbGj7fMD4jtaOvfHe5ZOTY_06zutKcEHVAMcaJh167rxMI0b_NzP3Eu0_K03cSizhssqvbrZwrjjB5RDsn5QRtpEyYofcOYI_jL9T1jRQsNQB7DdD2Gu2tE-qgNq1wM2P9zjL-oY5pBbVLQ0cYOfyNmOBM_3kPE0ZrqL0NMrHnzcvFN0MqbNqy9T-d2TrGplKSZPpo9svToR-svLgCFejH64MerJeqdsSTxUfPPjiv7aAZwkKZZknBg8hZtzkApP_FmoW5FqGopHb2CmDuFSbkq9aur8fTDfEkHP07J8KK2_n7e7WXYEc2482Mkqpx1vDCwdKKID41o7eyW2G9WMAMQjRPrCGFvpOkrZueNCgftWVoVmsR8n6gMxhOw0o7xPfD4AeNyMAX_8oSyaMNg3f_Df-a07T9E7H_7x8MDV-cFSvnutOGG4rie8tGB8w1lmaULR1BhTSH1VhohW3R69z4pTMqmUB8xsV-auxCZIJhODDvURXG9bR0u6d82jNpSHDwTMbaS-8YooqABHJcSc248iPj_ZkX3kfCcvFLj80q9bLFG4jmHgp_cQ_wCMB56ovEwKsbnBEQfWfsXU76F19TILEwnx8muE_vuezo-XSu80e_CSK7aCwDezBz1jpFu1com6Ik2ZAE9OiKdhWIGas_fP_vz9QJgMMWh_HrZk6YYO5paZyPa2lWcVTIICitjLiKVTDs6fUJUdbOyYdQwr0Rjq2WkX74lQ27TvGYaePnewZBuPML96rCWWnL1YPxmm0V2ofL4nlq_UnohuHDhp_hofczGCZkp8meoaqisvb924m7otuArk1DzA151ZmgSkYS9boWrGJKubmE6qXbWKbbdV2BAlGV8GBKc8hjtiZXWHRicWDHMVPOghQMdOE5XX7mEa4tkbD0OjxF0alIv2FQgStigfWpTMlKMJKUujJ2ZfAm9p_VsWdU7Hd60-H5s51fhEm2D9NBYA4Zdg4Zq0bx9le7kDmDLhSP4Bzmg5B17RKRQAGmJcfm6ur_mj6mzO_gnyLYji0pVQbdco1aop3YNzj-Ue9yiD9k72-ZmwoVHsvwrXjZ0yisamAg8zRXEvlQbUGGATwWYFfhdUp8McExiEEvDpAmhfPXJnieHvAZ13zftq9nJCqL-W0LP9WM9BPFmN7X_q2i5EiSShrfXpk7hE_jFuM0JMfBGGWl-RkNkRHYuStsoLSlciRQqJLVC3hIaJFsbseLUyin2f3zJknrkZbpvxC5FA0_eRQ1321nde-w_PTOmo1uQfGOawm_FguPtkY74PP0ZcuFZBUmGByW3Emyw9Ys7yyUJyJ0cXTgbJRj_qDJRbN0Raw9b-KDGdG_30m3RG68Whc7Ot1IAYA3uDRagLpZaVutEcXQ4YywetaXubwGbe1sWa4ZkfIFPOxMjl4Cf-YNyewEzuG9UKEnysNOY3XxYPa3oTtmKERuee5pblehw8TG1URmQ0MDV9tufQTpW3nrygflieAhVbGtRd7hgUUboZLGZvne6sBtJVCmeVm0EtL_KSObBYpRTDFmKaazTknyAs9ssdJ6rFOT3VxSGjCB1VeVTC_ACZvpAzHW50TC4tZJncKKa-tMzf5GxZI2WqwRxlPxDWEDr-a8Pdlu8zlR9PjFx0p3978w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f13669d0d875-23539659','','','2025-04-05 13:56:12','2025-04-05 13:56:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42836',0,'cd-form-entry','',0),(42837,0,'2025-04-05 13:56:43','0000-00-00 00:00:00','{\"email\":\"benheng92@gmail.com\",\"interestedbecause\":\"2\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"EC1R 1UP\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4o_9t43cF7tWdhiIkhsY9wKxmuEogvkMb-AwISxgLX3-7jRajU1ayjUsWY8pCEXdssTpr_cV1gsbXqv6_1j3yTcLKqXUbYQDBi6Dg8DXAGw4r1mTMzWOHZVZmovHXbQ4spEnjF2eBeeMW9HytSGgsXaNa3gpPGUDFNYOy6Eo1IRSD0uVGpjzzAcuQ-NpcVQlN3nj-1O0zKwytyvO_dxjyoweYxuzUW9s_OdGhqg1x1YLlj3sfBC04VXeHmJprdSppjsRKAvCaYbH0mI5fKZyOvBp0z8dFBJO_oXgMfw5uuNk0WXclml3_i7R0u-lY05A8l0P9GeYTI3eSki2lwp6txVw5ijW3QBICaeYmKU7zVJyS_IFgAGtM1907J6ulCXLdcTBS8TiSeNjeyDkLL6VbQmE2jseBvsxvf8wGT6twMwf0j9dh_rnMKUHX8BHjWB_fVhKpG9sIUbVjKwJLerjtSWB63v7xz5lzlN8SUib5i_o975PvNlNBlThHMW79A4u2Cd__52WRecdmoEJJxrKyUEl_xDFO1CnXSCKoa9Ua0j4bMluRPMJKgfJWv0hisUGprrtarwZ71z71GoBm_kqRjVGJ35kzFFqqvfcpIuxg29o0E4h9OeGCbVMcxoHlvKwq54abp0zBz8dYu8LMptXsCToU89S_ffUXZ6LuANG5NUpcybKy5_DE_OLuxSk56-0qoJLKKE96MWRVDbeNEW3EklOGst6uVJ-efY3X23Zvrt-XnXshSZYeRMwrQAfcfPknb74K4q0lyjKgbzSShdXVWIR6U49wPaSTFfMTGXg6sFhWZU9NDdlA8G0vQSZGBJ7W485cDdU_ANbDxGUczATx23WZ5lGtFh-7q9CQRk7UxDrxsh9V-i5lCSk7mypvWK09My-stE0w3RM2wcVMN042_BzZ6KN5gDEEtWJrmbswMoigEiK0BqBm2nwPWPyKr_B5MwSlVk2ZRn5dOj5novHq01KFngRDTpvO5mzZfBZYMevkxD0nc-B8wfMoVcjJxXcfGOJGokpZ9P4lAukEqx1eg1rvrNY_Uxh6Vd0TAiWY3vP1yTX9YS7pTWbMRhE1zd0_GAoFs9r3oA5GT6TpnlaUjpd4q_KDwlbSoFeXckztZMUzjVKYhCzFc_NtoBNHwmyhE14qv-10zCop5ZC5z0T2ABkEup-qQrZ0OxiWjpyzxk4eTLCnMiGUlNf0XRFYIkBnntqJ33Y27SmYYNFrWnX2myA2L9EF1sU8dCICn7spsfyD9AGBgUAZXdqZN_yCi8l0YNo_YgBTUrwBsMV5jnh5NW7fUzpX_kNtBN5DY_t1uVe5zn0VYVYF6ZsE1mpXWPs8AVDNmgk5Ny8_MLGgpTkQMcQpS_QeFwSTX-OrxZYdqjwIbmfq4NPYmKHBBcBmE9CRt21YcppDrx_ZUjleXi7Vr1EqSrYJUMUHWLaYDGgRTaEF1jMnBYfhan6mKBsi0EYLjr4qrrSl0bSZfRu3KZtFXZXzDzWQ-mPw-79dSSJcU4wfHQbAMDN1NIAa6TM8aLlwlAl3M0K5XU7HgnutTunrLpR3AOq9xuvgJy1-0DDgMavsIHNczm6qxaPRxq9nF3A-nX7eRegO8k-OlYCGK3sMgya184k8zs8t3dJVF0j7vZX_oVuPbqzcem6mYnCVXdV18rAdnjrZJPTock8FnwdckkYNMWa8bZ_3E0p1GUo0xIiPM7zHdxo86Et7M7dfJ771qRlLk386EPxb5k9sKyCfo6hw6liMQHXVGMZwmbGANhq-bk-0UlbmFmYes6srf2BONWalVsBFa0K3q5bkd-Fz5uqL4YKCPDKfYNWYaEJzQRbVxzxzfy--sd2Sq8Jr6D9vuYADPvQkHgvqfpFwSOelwM9xanl1jf7kjKHPcRrH6f1rS0XGGTZY5ERNnlr3T7N4HD7OexWlb6UJjTIyDIsliLC6gO1SgipAURTGxtbUe-gDUI-ukuN5CZUjbq7LXjDslcyuhN_TU6h8dKeXAfxgMdncwXwWzVqQ0VRm0whtZ0HF-rEw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67f1369ba6d2a0-44620445','','','2025-04-05 13:56:43','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42837',0,'cd-form-entry','',0),(42838,0,'2025-04-05 13:57:34','2025-04-05 13:57:34','{\"firstname\":\"Ben\",\"lastname\":\"Heng\",\"email\":\"benheng92@gmail.com\",\"contactnumber\":\"07899540599\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5CYV7GkQlK4kOAtev90TZk63nHPOj8IwezdGGVMgVTHnt9i-ciOiJrkas8CwAqE6I_pMdPopxTWgRaVu1SlISw1FjhyBH7O7X5ZLCPmWV-6vjNNritW-WmVd31pLcvS0_RjBHgB2WSk15d_He5XaHu7x9chFhsfFu-HqS1XJ1HCvMzNzpGaYYtxho8iR8mNTgDZ8FPsugUmAGj0uK2mp7KuUVQc9dW9J7E0sRisYaa5PtoBJFeryRzfMV9wGIwN6dmFZnJ7YP3hk4VgQIbtQPHM1pXfxZzLucBUA6bZtCxMUswuTwnvlidhRAxzjTBGiP6HjtZgXkZ6JCvL-4v4-AWb6c5xtJ6Da0BiGg84OyhvfwJgtj7ec7ZD0x93vsNJxm5MnDpCgOe2ZRLOJN9yDbllSsC4xgaw21clkJ9NqxV10ALxIzZ8H5TDj6XqTsE7XoqDshKZdzeVCjmvhvzguQX4yIWUKcUITdQ6ISEbKHqo3au2yp_wVNdm_Wv7Gr4esZ3i1JTN2mrQf4xrE8ChkqoaJYjUUyDAN-BWQmJ2sJD5ISXZkpyDvH_nIXGmeOQ3NJ6VQDe7H4VZH805IOP-tPs5POUAs6thS2iHITSbaVO3zYwNvb8hZHaWHX8SHgEcO-fwWlhLoRl0HcEYBrNPpq0qpuW26yTctgiFlWIY10ayyAVWUJB4VrwcIIVQkYGhe7xczIF3LzpEl0PujPsA0uNfqLsk0hfOjRBISw7MyeZ4EmcrTMbnAjvK46o9E61fl-u1X7ZrPzYZfWVUPbZqZDf3xCLTpmYjSW_vhlpPjBrjaCrSkZDVVBi1mjpppIAMNc_vCESznCtQt-cdxH1B_V2pqJjfgSdpKI8fRNyx-2iP6TRA2WCCSrV9ZbID40SD4kzH_-Vm0Eex4fD0qtkPlyiMJZOoHOFYv-K1wSFZzQl6Vryuh-PVBxCi-hECxO3W86baegXBxHA4a6DHJf3RdjeWQsDOzJ3CKI1dkVpYfB50n7x7C0ke0rOu4iRaELlZ-DEr_btUk9_qDBmShaN76KUfgFArs3k_-MPSPFMaFZ1F-M6Oe3m-lTDpDZyWp7XFfdXt9g5X_vnOEmD0R_vRCNSgpt4Yl7SzSyExO-13X4mCtxhoupSVpIkiVKTQBFJ-_mTNbtGqjZuypf4h0--p2vV7Q8gaAsqxq7lUqmMN8aCt0YMLqudqWK9PcqFc4nbsoOjAUvWqhUQ_lP8GSMHxJUzAT7ktlM-FfMVEV1JqttYPtF7EkJ7c4uAdiRa-Kg7JVT9z-5x38OppKj5YF37s9weCukrsGvmxEO8R_kOaqfhUFqs7sncl2JDVgRrTSTqcRII4I_gmcXOablGKIXfX6GLzfFQ9YxE8vCHsHCQZ5zQHIQ4tkg6z3pNx9NIuKzIkmkFaz7Yl5V40uUD30d1Fm2f-u4CAEkZe26ZngjwsJpyc7-sQ2ybBDdAQ4ekTU-rnmprV3QuJYR3l-DG_lLs2ARL8p2Z_aJP80y2dGR5qDU-L0U-AGM26LLl2_0M3_H4Zgh-_0XAGfV_AkEsXU-ZUuoIDFpmFg_2Uv0f_fSFIy7EgHs9rhv7HOH71VVq5z6Oa0p8_KKE5V2KwIAYsNQFCaHl-FrqzL292ExCV9vMxwLZQiaY33L578PRmoUM2xvePx4z3OwUsPfkBPmhoHOSixKBgpspbfGnLvSfPan97t1WMOR8HiqhiVz5pLt1J7wv9Nste1IDe7qd-wLG4l3ODf49ZGSh3msfYlLgfhiNuuokIJUBgBF6YGDBlKKh1ACJUGaxWiILi4VFkCP-SWGqMDNdzdFm25ZLlPGE9eURSFxZK-tPhs6ZG1N52zpAo8_P9Mvy_IpzzimWxx7iFKRyTLoAO_aJRY2SHXASg0TpA3lHItqPg3hb5XMvrAsP3dtW5N5Wv3d8tVlirqJR8lmkMItshjVJ4TAylaSFVA7wmMRBMxTlA5OqFBwHaSrZw9CE6U1axc7JWroniZpukgqqr6ebptzWk0K-BNxMuhZ2dpWl-_0Po50lDRYwqmU3pV9EhULW-gKkfPUkkSoOoBaH5EzCbGAsUw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f136c60c6345-64630346','','','2025-04-05 13:57:34','2025-04-05 13:57:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42838',0,'cd-form-entry','',0),(42839,0,'2025-04-05 16:48:03','0000-00-00 00:00:00','{\"firstname\":\"Ilsa aiman\",\"lastname\":\"Bhatti\",\"email\":\"ilsaaiman9@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6xIUVR5hxkHl_nVLt5mnAR5lk_0mBAVfeZIt3F-VsrA3AKrUL6brXzrrZJY-MxNAemS_-HWBaTPBxL6S2-rCjVlaRVSEPALIphmj0q0jZLjZIbyFswuMwkDHKP7piaFRs84lbaCh71gIojDC_5Xx0t2IlfmsALLTj5I_I8wu2qrq0K3vX3iiXLhSl9qb0cKk0_U4v5apo7I8goZDS0jWQOcrDeRU0uF965lTBKbCOVcYgGWxHD-Bgi3O3j8WPRZYUZLwcSbvh_WDFfo0wZUmTMvxMK7_IGOxE5NhzxiHr9NfMkd-vqxcO0rEqBrsYnrFmHwEVOTJl8hAgnXubqchjYv_40YreMWjpgobvuHcEXcx3v0kL69JOwTF9OEPtGeZrgHHAuGqKV_KJoS8V8Rgof4--Fw_85BU9XvepqYL7LRKTnIz1zhnFIaRO_dtfBB7wIMplD9ZUDIFa3gJWP1eqITeO7o7GnZhLkEZCfov3vqLjN7k8hEh66PM4lfioEuLwd9dXQIVwQu7BNvmuG6kd2pLtbzwzAiyqI8hgvE23FYv5Vm8nWecLgyhFevf5W0jM_bV_Skw0dCa1Zq5uGl92JzjJiJHVP4v7rWSAnnhe51jp5gzJe7O1uXD30671zlA9AK7JL0q8-tW8RiQiyk9J5EoUD9qk6p8WWF1h6xmbG7rAuAd8Krb5rDF_KD8S16EAtdGAv8F-xrfIHFNvAZOXiVQ8bBfapW-VZy6hRF9VpNsEiO9NAGjgYCaVcYnKmeuCLlao-_qXgD7sk7T09OydZFuEGOXJjgEAlBMEN1Dq_76MmuTJCZUFranaBYKFdrsc9D9rR5OmWCTNC9_ANcPeiEdGE6_7GjjcXbPmgTI7SvXUAVsekeEtUerkTA1o9Ai-LMyfJbTlMY5QQs2SfUhEIHnC5mVkOVSUeKKOvcMGE7DsL6vU0JbrJjFGI_6KP9zYD9pKdbY_uCIcjyREwIcjEeNE_PfWtoGD1w4i349c1hRG7ARTsKDxu6z2TVnnADYfc_72fQ0my_-qN4Un1HvEsExLm4cQtCjri6nVVTTzBACbq0WEnzc2AOH1MD6ujZUQeB9T93vh--9pD8Q8feyitK_Rnv5z4BL_MMN9Qt7l7KHfJkTSVAAz7hGx60fZrMTYa8wNzqak5PjVLfV1m9c7nNURb5kSOTTs2MhoEgxdDEhJWPUu-UdY9Zr57ranpByVaF5S_1HkVHUL3hJTzjzO8wIwjiGDO02nTu4-WeMRCY6mKTH0AKjb2lE-EmnfoBvzV5zhoCytN_7M255DGpAfMjarjg7lf8ufw3pSeZRaGQck8xf7aX1zT2qDWUkN9a6RgmpsB4YVZggyizuaoqNOUf5KKt_UXtYlD82GPkVPzc26Rt_pm0JGhf46HIEDRCWmEYrwEVlitYYn_QxSp3PGEBkgvayEx0veqwwnWysml6LQ8oWLfWuM1g5ge4pnEcqcYE1E0qm0kE0kmLjerzJLVwnlla-HxwsZkgHfex66hqSfrQIj2X_yTUFKm520ylNVhgqhShkjMFFoYpMGL7C4wapE_xEwNpPUBWm3oAnAzAvZhx6tLSyqFroCnMFqovTlBSlikN9JHoVzTkXRenov6lKp9dVKovdEiu16xuG2x_cyVvygfdnFoq3v5b9AN9B3PNQQsfnJ2Zod8_lpA-rWxTa1JcwFvy82XhZHV8dIRWUbArbVh_M_T_xorbD6I6w4fDDa97KXCiuYlWguB7gIvL3Hzm_VWDSjoEvDwo7dVmE8DkF5OKTu22oI2lPBu-B9et3K0YVKZBLhJ-2TsbcAwOk_Dloiu1vLrW4HVGhLil0vzes57y-FPFPcw7RjS3mSPC-I-gZzY-1JCdn7tFbAjKiy7qrQoRIn7anEKGE7KpnUlr131OeOYOnnhnaEEocoWTa-pQKhP1l3G3AGnWd_qoQ4YPD4W0AD2KmfIzfB5dw86nfNEbz4g1uS3-7lb9aUVTuPLTepc-ecZzpgjL94e238Yk2THdgzOeJi7y-NVKBDGi-Oa4R5SEMQzEakBZYmk6JW3ogxTquIZEeAF8rScp8tjzRXXn8g52pDPXktnrsjo09NOuM-QFuS-3mDZdKuLCCvlA4kuDPuuoKHVeXWBR0IKyjZsz1FnMvvUMGPHCA-fgDTna6KsQmMYxz-2fG70kBoSbcDziiR-sM-v8wsGoiBlZjyyAgDyHgNXIB-VSsAiViMuLSCalFSsjmxV_7ctxxFEG38HBpe2tgo1jViVm0VEX5of231H3AUr6uGKl1N57y-GgqI54CIXuDamkdxGwtQyOZbqGfC_3CwfQou2nMwsow\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67f15ec3c9fb14-71032482','','','2025-04-05 16:48:03','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42839',0,'cd-form-entry','',0),(42840,0,'2025-04-05 22:09:06','2025-04-05 22:09:06','{\"firstname\":\"marwan\",\"lastname\":\"Osama\",\"email\":\"marwan.essa2312@gmail.com\",\"contactnumber\":\"01060053429\",\"pageid\":\"41520\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4NkL5i0YueKnmC06bTFtk8t7L-1NwCzbrWB9tVaXF_6vvJvsjNdBXYOZv8VsQv2Qy4tfAiK7WO9mLPLVP2V45NjBUMHM18b1n0_2hW4OOUmdOJ_lugPoCyjqRpkxOP2duqaYpc7joJ3FF78NK9jvgoG6hf_WR8yWCbervy1fT1I7pNpvV8R4tmOBuKLbGNaXe0NJ6u3HJ-XT974YProfLB3maJ-YHNm4V_W_zxaxIbtmXQAEOr8bwejeYwYPWSzjskfI8wK36b2vaXQypWBZU6FnmkUZw4ZX-nK-1nRam6YivIxvKuCG9_VBT2jxCXfTGHcKH-eeW2IObQwZCDC7AESRJhttYgOx5gogB9cVJNLBNgwHbyo_1Vw4r0dVf0j_A72iGKY3BNWHva3kWsxpJs8zw21LcV2jnqnyC7zggHjcAl6cgLb1sM4tFX_0sXHfWLKetF228kYBUY1mkf2cRK2AhHmesCDXah2alt6lZUNdjLwLS6kImoOwmPsQLMAH1e3Wvm8ZprnwVMp46r48UWDlSATjI5dyJr0j14S8x8POe3QTXNfABfWx4hZ4pCIk1vRZkezCMOiv664wMRz2pZO2fU0Ovr7Yzk6KOnkqYi_Oyc_AYUqTgGhAXVeoGXaEsrGkx9VXMdsxqpC7ONUaDgTMLazAFb--puFKf4ggmEcNXqcRvliEWTkGxrwhjNnwxWP1Q6H6IVOQ37gIVgnrb4r5BVEFuG6J2SsTJ1r92dGLpra4icYpB50xBA23BjdyMMzfl2fTkUUWFCTxFS_Ny2wHKNQ49UF7vTSSNmb1cd3WRgEMc-66RtA_q-Rhrfvuk0AywpS2kd3ihNnBQ6veaawe-TMV0GHOkQVOLgmlaQ-T2ELD52uFs-97BGm6VnwlBkQ_Mm8kDoIgpTRoKEmOIyg_Y6KnKkUokX4fzPwD7Vomh5ZFhug97OFU_y7qiyWMMkw_p9Fo20cCvEm1XaNcagZem_t1UGjnh-gf5XzAXabGCMvf6eAjQPEhRfkPznMbq4-p0iVbb0soIwEc7p_YHx2xsTeduuk5bhAgNRC36bLoMwq2ym0uQ_ik9cUBYZAMSvDDk1FaBepf0DYmc8ZXIoe07W5334JF5OCEdvhUWfRXxO0GD6jN1iykEnDga-NWODWYxo07dnNFccpIpzRoYUrrHoFT24ep5Gctr5C82Okhws7KElkGYrwazmAlVb73UG97PbW7LyoqqpHVUFxEdeW-h5oKnNi6yo9MqWWHB8NadV3UIOV5GTlykdbsajAADQUffuGNFZF43wrAPE5gziw2XirM6n06wwJpJKqEsP21be4FN_qY0D7Kj6jlV1HWs5yEJi-Uapn0SSxltrnc1dvMfK9yplpMAlVK6IO8Pp0dugA-azq7VYvndLbJ5Dw7LYx13CqCvLd2j-d-8Ale8LiCbNTzo_iZ_g8R8LcwJL4zsOpHi6CIK6RyqIKyZdfnjrUzAkOkhcxy0rvvDjKDmQAf2dZ4rbTxf8vis6qIffcAfd2FIy3_oAEoOfbALzVXy7UCRn6mttWuajbGmZmSc-ikTB_xfaAadnGgP-CAVy1Y7xDAu2nYHMdyKQ33JUG4Brtgf4Zzs6JMFjWyIjBOnD4uKDiuYtFYfmO987FM5ligxNUF9Dd6wwaepj3gte23sP7htt3CCyHAX9r4995_fYjuzC2_oVZfTiUD2va6JAuPsbGjeMnk6JuyKVw5Abvx58WTMeLtZZZJe7GzkgW_DJP4WHkLVPt9oUisErERaLFJZ3ewoDnXkNs0OlJwr2p6Zqj3S2kClJ2Tp4QMVZlzPF3E4AvETCj7VKEibT44vu13Ls0B0t7b0N1Iu4jk-odlqowkTs8sYz_tuTeLQDNL3KOjYSeZ5m-ByerlOQxI5NMnOMenW3I-Tv8eNMlvs0rp_H4Nff3XJci2DMP2jmCCFBuYdsnzzK0OnPRhpCGCD632wEUBWVNhzEq44bEqSJXElrmK07LjHQyrxOcV6LueDA8fgCeZ1UinFmbwD5USMP4UHi_9amqYE_G9xdo4ONB03if3j4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f1a9d210cf33-16107855','','','2025-04-05 22:09:06','2025-04-05 22:09:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42840',0,'cd-form-entry','',0),(42841,0,'2025-04-05 22:12:03','2025-04-05 22:12:03','{\"firstname\":\"marwan\",\"lastname\":\"Osama\",\"email\":\"marwan.essa2312@gmail.com\",\"contactnumber\":\"01060053429\",\"pageid\":\"41533\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5mupEfq9VqwBTR3pGMy5xYI62EDZPSuzJSlbtpw94toh6GFR6sn3G4GxqkNHO7Mhj_iKnF1qdGW2obUSDUM1UXCKx_9xn97qP2vBX37OJZGHIzDjmWJKmxEoFhq3si9iI2EaiuJDPbtr8rXaTBpRn1iHxO2b2hpbpwEffcYyKdhgkWWw9eFA0AgtA_NhMoUM32RQrtcLT1X8S2Gnb_7mOaT1yW187JGK2uLaCDPshyoo6BBOG7zuQCxtoG6z5EJxxgKTQnUkABbTWUu-I83soxiIC2TiDUOe6VikzAieyAKCm89OYUhmZRRO-Zg3-ifzaPu7A8ciNZOhffOhe9PPBFyhxksnBi_XcZf61AkX6uEslUqfqHEsD8pMxvD0IO0IdUlMF6_WrHgp55hoTcexhqeJgqvK3JIGqxPaBpG638c6w5m9ZNnmdeX-fG7kufcKldYrO1N78ucWWcZvHHibIx3bQOBWTIHk1lTMZ-VK_8iS3BflXEgGel40SR5gFqutgdO_741mgtUwxKMFM0t_IjEvAqMJr74X2u1oRZCsOvpt0HANrRXHmF1862s70jE2lNC3bgawE6MyszC_HJtMJgKHOESB4-qF5fSqCkN5m60C0ElJa5ug5wonSHJRPk47Sep_KybjJpZt33bXLt0tgdEd-Uo7xMdbEfU-D6fxEOLc_lgtK8A8HdrDcOOPzsxqCjcEnBjYvOOY39siWZadRDI_6tk34b5SQ7ykl-CFDrqhcoTg_KEt0jvkbTp1v49PeVqVgRhZ3g4OlTJYiYVJYMynuV4h1AMhseJsbAGacowX0uI1HsZ832FfFUxX7libpzZn68xHxn8BVndIz0RLSFyvG--8YS3OCyTqb7mPejbLqPWj5yXyC2lM5ZPUPND42BeTbJVoiyD_4a9UNYUWvJ2d-ub-F_1YeQL-hX7ojx8XIPRlzKNKWnZ3yjxHU4aUEM07snFYno1tl4maaDpjN-0FRtfR9oisXxJGezGYMsqqTADrAXDwo5JN9H6yKtS6HHEkzlGe-h-l0MfKjArBw8EI30b1wH7Vd_beBjTt1WBCAhfXEyOqv0qPfjsmjlF1v4d8G1dWzoS1Yll9JbQKr3c_RcdpzmOnCD-am_Z70s0UIo3W0liWFgupHM5Q26teJITzJUHq-K6fzw4dt9OscMDtXcOxDeV9TitzjDEGUhlQs7KiVz0y--dOnNKaLalfxzpvAFOijxGkSUdsl2xI1eO55Whel-DO_1s6FKW9dAC-YmZYALU8NLOiJuYAZDNEwhPSzZoV7mBd797DiOnkdcKbBR4FmcxxrQEbTPzdMLcAQ9fNZZORiIbFaLZeEA-5LeN_7inYmkfvI7k_2ASsnb0oOiM2y43RbXUnpEdgzGbW0pD2CQ_LCFo3xMmoHya2-aE4NZEbyu69F5vrfdjUJyKPbfwq-p6rVNNrIX_Dphhx0xJ2oTyTzCBFL2luGQQh_ed3QOVyTpeUISoxK7HB7K8PeRsO4vvjVCxNBwvAbnJ31rOH84mpIM6jY7hFs1_Mgfe79J3IiVLXaZgoENVfvJLcXHnakrbVUyp9bVHwndkqsx8swzlTiIL-Swkxio_KED8oGI63FXqIHZj1bkhFp8lkLFowSiMmmVUOLn7nLeBhfpVye3ZMi2Nnj2eFobC-JGpsmSqD_a2jNr9wkZwsY3EWJeVHhncIJHrz-L5MeFSuMdntRsvUlOgC5_0q_FUVMKexnhvb6A60TQfnFBgL0AedG0cZeChYX2LV3-wb-6dgKFJnSqkux4bgQYposw_LWKYPEM9ZpivvLTslO0FHLuR7n6-0DY8iNe_CVz0vew4ebfl85eTyCaNdwP4A8dWPMlibr8y9D536zY_s6MXnMpe4-TYOEN-L0CyIZt00s5GCnD3VydY2qg-rf8yT1lNA37Z0Qmbz0X_huiVVUWDPifqDbChdxgzIyOrQvG9zckRNWTv-5AIKCTYv94PObWFM5eD9HHFrXyzepgaQbVCB677_PUCUb2BMUG-ovJy56Nn7EBsan1NSASr61zdcWSDkSoQK1f\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f1aa97483e96-56279662','','','2025-04-05 22:12:03','2025-04-05 22:12:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42841',0,'cd-form-entry','',0),(42842,0,'2025-04-05 22:12:39','0000-00-00 00:00:00','{\"firstname\":\"marwan\",\"lastname\":\"Osama\",\"email\":\"marwan.essa2312@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6jOgUFlk3NZRaH_dV-G942bVCKBbMDnhuhr3TDY0yTUG7ubrHmGi7xeLdwdNL6aVyTBVOw3CluudmP3ET7MxdiMYVI8Q6YOjvdi8NGlz2tnB_Hx4avS4TxdmGPDUuGShL4H4BCRvGeOpuGIdaCZKvK0kt37dvgkWAZ0PC9dj-IYEfFy8YPSeczr6Hfz3SRIqiFnmnj55Y4M9V4AiKqqCa1TWNgx1ecxhACvSn8IgvtxdoUM3Itslj5diMWxoYk8rOC8TnsPrurysZddAqLTeP2qX_030NGAVfv_K2vSCZRbiHK_CBZgFux5Tdhbqfep0TBFkfFJlg4MexhoBD2KEydgPhki43UJkY39Q46l8KRF0v6jsDPGAocjtL8QTLelGLFgHZM-byQbkAeddOnoBbXkFezPgjJtbl6SrJ2zHvQVaYEl_j_Yd_GrJ9VfkGHnvjVql1TXxfY6Tz3JzINCqZ9F6TEUeg21JXcxFvU3gLKYgzWymAdVICer_lHyveOcjcgX9Pj8IvDXS5Gx4DwMX4IpDZ_VZzojqd01PQn4sNbQzv4u16dVo_-LU7hYnGjhO1-mt5GljSTEIzDs4DvOnYVCaMSWSrCf7VCC6Drho1lc6hd9GjU695nb_L-F6rBENqVQw5jq45Inl_NjjxHFHSgfdph2J2XE-qTfgNRDmcV_uGHcc5_tO-OJ01BqqrhXqImjNLK95XEWZECkU7K0zSh1gnA_SPt687KjfHqym7DEO7IZXeQwt5K5Ncsu97ixcRQ4X39N_zsYb1ghTRh2DZpK24m7z2tZdYwZ52Is9bnpMl66P0T-Dv-ugBjeVb1WZh_fh7DrY3EVyLVr8uF3b-ffAWrPEHWq2GG0nO8zWm_2dV9Wn-v-VvQIRwIGSJI9vTPrxEhRlKCkyjwaCV1Y6nJoJmcneHxPrsNwv6Y7ZPncJUGV_RM2doz-sZ6C-y5xN3Ko6GPY2ZPH6qkrVTUX4JQfOAFD5XrSODz8ixhSjuyvcAB_htVItDhcWb1U6K5PjybcDdrulQUhLgGFeBRE0cBC_P3NkMM9tQ8dK9DRhmRdTcWql7fPQAQJo9x9gXqTHP4wNKvPS6igcpUsmZcF7tzSrnku386m1Jt50czuSfgaBL6iOZf0UAztKl5jEyHf0l0SQmTTTmf0K4JYuqePpfdnwiiSwNBwQR2_rgkI3G7sP6ZnPkcdCJcRsgDFbF00QT0R-JXciKbkIQv4OR2hHRIkoKyCcvdc0DWrjVUCUvVVW0LaigvzqGIbUmcZis_WLr8SiR373Lt3uGIni4p4D4b7nF9alaqMLleRaPM1kMqwM2C0Wt8BNvPCO3o0F_s6AD0n9LbEsyPuX7AnBxjqr8GFBTmKXkKlTCpWbmuH9nTP6TDTWmyvRrqN6jeL3lZqI9DdMTDr1dA-cDO2YQm1_2oX3ngZ0zisVqLNKQGnVuiV8rIqClrSC_GNYoTfzTHGSxp17lmDLPcxef_CkBKDPBX5h0KIOoWHIXdsm6SrrvpTOdXKbl95lvw7-hBRjOcq-SW3JuWZR7p8MVg8D70-0v1tkm5BrTjLoyW6Gr-c1HlrtdTJYG-feFwkpN2I_7YUryvXlj-GTMQOVg7I0zFHSvF-XLedgZuXE4owKZOBEWPn5ubv5fZ8kqK8-leHv0S3MglNZb9HkJq0OpHhgIrHtcneZkKXuhT47bICFlW1BVUUJ_7Pu1LlpjE_Inm9dSbk0Sz6hHmKB-pg490CwsjEH1k9M3t_0lZb9FZwpK6Zih1XFHDdTX5RThTQH841AHrKgsvN9Ckqdlicuw9i5A3XWyKqtsWArNLDK8Dy3tHU-_DXITVpfHzbJUqJ3xIBnQlInpByEf2wKdxvtWAujbxSxjFIIodp0PA3mOaXnUMQp8Ub3qDzlS9DTwaJEi_1INjuVdpiiTp9gbECiqa_Rf3V9bx9nBZ1bOp9hIwImB39R7REC0364g1oLyt6z2OuT6qAAfirfQ4Dd-2JZiZEcta0DSVv4I5J9dFhNKsUPKAPY7K2BtkfROLIS1lv67CN4tm3y6D8aIDT8ajEe9km6o83RTJpL_do6zPtd1dVhl3dYzXGrlogoc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67f1aad7242528-00529120','','','2025-04-05 22:12:39','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42842',0,'cd-form-entry','',0),(42843,0,'2025-04-05 22:17:32','2025-04-05 22:17:32','{\"firstname\":\"marwan\",\"lastname\":\"Osama\",\"email\":\"marwan.essa2312@gmail.com\",\"contactnumber\":\"01060053429\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\",\"recaptcha_token\":\"03AFcWeA7ksMvFHBOc7_abgDky_iIz4XOI4HYS_Hi7OK6HX2v5EYEyFmMNSWIYUoffJNY8ORlvC-S0HPP4u2lRkdLJgoGhuXepyFjxXeEjjsVwdjrun7tqwvSosuvcqrfJUUci48Gt5ITmJb9CzPGMSF7FNsYLuUIGwNIWPnqbnmGT7zvWLmVciyuIVyjgyudpA469BqsvIWV9tF7waVD4Nwl3_yq8fyKFkmSqjcsEzClcfuvO4T2w4UeI_qZsAj569UbozndSNJOnJmIgz-8Oc2RkSAgvpnoOpiGaHjD4iUhJ2E7pS8JAsY9_VM3sX-gIKF99xmnlCjvLuavQX0O3-jk7Xe5pT7mRjdIp3-67eZ_8ANX0ysv_gOK7riSozBfUPBENFbg5tlU0iBES8k3EakYd5wlaIXEb33YznvJAwpvaFPLbPx31hpAo1tY-u6mEA_bBUdmC47g09R5F1nG5gVWIDc1cGeaEjrTAK6vC6Iq_TfXhXKOOnexAHKz0UNYuhiG-KBSifPl2vaCz5EaI3rom0KvWKxZ4ejBV10MgjvU3JzlJLWFDZktsGTVKH3_wFjiFJPakS19zVQakrFIOF2bZCwhF32lc_WkajwY2C2-tGLDvyq7qN-AJRHCw8CrtK--6seDCbK9luzPexJFD4BjGPq-1F6vSySHmKU05D_W8mVG3mymQyEV9_wScQLzdP8LavOBTB3SmLPo-k1BZo6m5KRTsFS4wsbvoT3HduAFmny31jOftfrbMXU2iFlNXk39pKftLPjnGoT5ayppTiqv-XLZGkkouc7JCDvgceTSF7FmB9662EYx-PFYmbmXzNDm1UAcPLVodVo4dI_-fvkmJP4_55TLzg_Sb2QPXtIio6bIYKYIVPtllGHMLAZcw3oU0v1YOh9-sZ146snmSuZBbp6mvGXPxOAz_nmedLPYIehNEx0JS4VrzYSU4fBaWjEQjvI1m5XKCCimuqSVqwRB-_IHT4SGTKidbyJFMk7LEyFUAqpoxXfF4f1_1fujDBKSoNRVa4UDX4NTcpvHRbzxomov8c9392xRI8aH58Dd9FMA-vLhbtlvrIuYDEvR3pXy_sBmBX6bMCjqoUvH71KvhGCryLWQcXO19vLZTWvtNLu6HvjcubdVeBNrJlSDbADDsheKnMcEHhuCHYoFY0-sD_-_tYK5JZUMkUvs_jzIltcssiJPBvks_SSuTMx6nqoac8mpjjMDpOjQtM8xqvweMnfy4osH3qCU7s7OoK4AuQDB9fWeXQ_OUqhy6wZK0kT2ChFDYwvXaNRJuv4XvTkNYx4TcRHkmgQ66672VCjfF7eukQcmZiw8AcCrqB9i0XTh1ivnzJVEDH4icXeHCmGCFx7Fo0QiZxu5mmDktfYPhrKYSVFqcn86QLVQ54aGETCWEJl0VgAr_kRkWm4pyfMEYkL5eibqf9Q0103UFc1HX40MhT9NmvF6F_PSYWFG9qVWgtfZc1-MfmjiHYobdlBdFyLBhUwPVibSuwN7S-GQ2wpj78NZJUfX1SjMmZz5dNW7bMtZz5O-qJ1lbh_JNGaSfqKsAFctKrRxdLYneWKNWRtDDGV0BEg5DADK-0rXHNVuy9TiEK6XXaVQqypX1L5mNxkBh4_goej36oxrGc_GIZEhqZjBtKGIM6UICIv73KvrBB4AZjH4-sy2O4dHoVHI5SrJ79NR3YTZoDmIEEbZR7F_irdXHk5FCVcKFgayPZQQBjKoVQOLthbqzBVcTxySOQJ9R2H4C-SrRCz2P2br8hk8-qqLPXIhpKweMw9MYuEqQ2PCDQ_AY0UA8RkL7wbozwAI5LKQlWb1UKI3j6CJSIobV5RIvt1fpTnhfixzmup3tReiLraetahBgz6QskzKn_KA1JM9FneMOe0wuQRQHu1hTD3S09NWlcy7cEDxYnNmpBZE4PegYyeqC9fc5N7ecWNH_zsjatWV7xGuVc09retWDssuWCV_PvYEtdrpxGqBWvmorGZp3_qXaqYahZPkADZmbRsh_FeM9rmGzvOF5anYeSHF7wtb1143Icd-ygWmioXNzP-RyAwAChZSnkPk3_82Bo5aPdw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f1abeccef156-93445550','','','2025-04-05 22:17:32','2025-04-05 22:17:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42843',0,'cd-form-entry','',0),(42844,0,'2025-04-05 22:18:09','0000-00-00 00:00:00','{\"email\":\"marwan.essa2312@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/\",\"recaptcha_token\":\"03AFcWeA4Gx9cOw5NqUN5zwedgrP8FqnyeV26sC6ThD3xM4INxFNqoWlN19sEKL_EKfj9NuZ_hy_3XsyMQbrdbLzCo0Sjf8adFYkKRM35OfMaFAqJp8p_G8mkLWjh0aAgJutEE1iLSnz8eLp_V2mnuP0d7jkY42ItnzAtZ93yjpPaWFtLc4ME8nL1SOYyiLmh8eCOhNjIZDWuq1D1cVo3H4gny4oe1XIEMV4Xt0XiQgwQ3sCBGVcu8zuQIsxcDq3BQc_Gu7DuGc1hC9QTVYPOlrjaU53i1tmeTlw6w4TRA-PqvxQopepXmuftWPlkAcXd9RKYjaIPphxfxlvWo63Roe42ORTarScQw-NDOHFZvQ7JpP2klUVuUyEUt-Rrmt5qpvOLhd9Wc7ZMekgH1bZsRH0MYOMCgg6HxPTRUvI4i1gsV6Uk9qYfMEE5a7TmKmJn-AUm479N2N1zQ8t1beec3ny1yMRXwJKovOzLfUYU7aeG2HmC2ku-SAaRcUGY6c4C7XrK6JasLwC8Msw1uMTvj_GPDRCLtekXTCu3likb8CfKKxM3fMBnns1coJgw323PhZ98B_U9cbyZInCvSuJG1WDC7UqXv3PkSPYcfhduDWKpTdJqI7HzlchPjDSl3ArSLf07GLnBYh6Evmf1zT7Lap1K_Lm23xmJvq-ss7rB7m7IskG64YsxdILPqSfgzWv_7BYtQCvQnijJyHn23GrBA9Ft8oYVthtVhjVPOwBc39SMLKBaWvC7mzfpa1iu-CcoHiAhAvcCUljxVQAD56YSqvXApRx0_YZDyodQu87QOxMjKSsJ8V6BXUcOcOv8mXmONxgJu-ZzSVaKuX_ym2fZAgUu3z02bEcdnIowbVrwpVkBHMgyV-tA2kVC3Eqnazf-gi6pZoBrzIDu-GV2VUvhrjjFocvZUi8Hjiih5LPWyu3g_X5aaxboMoftafbBhXGIdZX7d5R0bIvv2iXeBsnOqDReqnTY9bCCM0iBVlQv5UZ7dBs8BQgR2NfjwAo3AZpgMl58IzMYdtVhwL30BLyXYTxiJxlSTsUgAtsPiIxI8kSuPxG0kDpBdtTEQfS_CJnwkc50wzBUBWdDQpzcDYNomMlrt1XB74pyZYvuRRCxRuZWAq4m1GykdQfhNZDy_MZHEb_Tl9iAJjmI-d08iTYwRKLSycA9yx8bAx7MrbHe8YRuxkm1j8guPKumdxXz2GUxQvibMuXriuUIYSd2nCDaGvUMfEQAwcRZ2zfVuF64fxFBYmpcSI_-00Tw_mkgGxIDeWsF_gz1fdBi2TDKybBvI03me1xFJZ-prtmtjE_mIVgjzVD0XutGX_cqXGMiFQ-TEai3W65I1QgMSCpQMVfK-O_tKwjiyVN7kLnxZArCxOzn2NvgTvq7_bllqUA_-zVilhgugmK9nVfRIvRq2ytHDn9ixuYMwjYTQ0xYGFpLd0IyT20Kb104C9ra7YAEbxj4up8nv58X4rjrhUjSxUhXxq0zDpHkwXOEuTwL-9EX5TtuLI1GZ9mQ2S6utQnJiH_5RdycJz8sN-8Nfc0mrtxqIivAM0yfNLEOgcFBboAvEQY9DPvv2m9BOJjyuf0jFfDwtLrszE-CdJOWhx0WbHTUOJhEoVoZSMeRdDzxPC_7Ut7uy5HcWMUFDWMx_HMKeyks7YRJsT9_u3uKBpKgExdUeOekPXbbkmACrp01uLytGVskwsEWXDaSObGYOowSOvI9dMnlfb-2cOsEru4gb5b_RgRKl33hMbulasv0b8INf_qu_qWFNjg_9U48PaT6rIGkVXzfeP6d4tgmCmX-vPB3JBdioZOmCXh_ignDQm-2k5mIf_LQAz4H7eN1x8AD2g0tf54VsaMdhRoEZfYJBSKMBRQb7CjQ45IY41P8C7XC5PIZrtiivCD8U34ZDGI92P-Xw2O9COlT7aImQpyuNZKKiypHp2SsExJFibOMO9lYBRyXQZNXL_n8lq_CdDIJprXF31_O9YhiJnd-J8_JjRuyU5X_Lw8LYZh_sgY5WnwsYFc7HbX37fZaqSHIoXaVL9JIbsr7_4VeCmLImdXTpkUDG0990z_rbpfilQ7Is_qndlNCKVMT0i3e_sYE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67f1ac21a54b20-76635406','','','2025-04-05 22:18:09','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42844',0,'cd-form-entry','',0),(42845,0,'2025-04-06 06:31:02','2025-04-06 06:31:02','{\"firstname\":\"Phillip\",\"lastname\":\"Rudd\",\"email\":\"philrudd14@hotmail.com\",\"contactnumber\":\"07866445044\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6s7gkqYgXIWhZpKdbMH0X3YG&amp;gclid=Cj0KCQjwqcO_BhDaARIsACz62vO4wpnkfXj2b-RNYvg5-1E6HX3kMvUGAXfZv_06oatSEQ6tEPxCyQgaAgx1EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4L_P2PhDMk4vvnJDI2N0HAfEBoGDUqtioD1W4VukzXnnMw3Y04v277CLMl2-kzW9TNl1N6FrcHLb8EOXs-Tb3928X9uhikCgBcfaaQlIgCdrSCtDOYnKCOawYH5c1DT3s3ft3rwCDXzFbT2kDiAM3n-vtt3fV-IiUvRfUOWaLdlT-WXV_Ho0fJkaUcvGaDDz7Q3T6GmL5bepB2UplnsQ_3w65mTOhHPR6lyr0G5-d66J8OqfLLRHMQCnvWxJEHV3abd9RCVaYgAPga8Q0MXFApBq8bDm8_DMfbcXITrpgM4f09TGhrYI5ngG08Mn0ryMaNMaFE2w0eYAX-kTDHZGkFrCuPCUzwo6Uwr5t0sRvTjYQceXjQM0nvLXN3E1ihcV8vSqQTHghXKv09E-u4vw-aJdvHRsqF-odNktKv2YhwaUjlYTGmUQeZfDDa3_WRlL4-85i_KfS6L2bAr_0XUrnZLONGhFw0wZZICUBwv5lZCneKXkTWOQMateOZYHo77dxxQXEgDG0OxI_rAtf7F6IZ4OxEZLz6OzR3jCh_ABC4AT7v-PMHiMo7uXzzf40F8oGklUVDxrlZXXwncIrfAujiPp2er7b0UrPf0Gh9Uxq5dkpen5R_7a6R4UK1SokzcAjIovuxNIARxnZ8QUfr2TbZ3AvVzTYpd_-wKhOFotl50tJZLmxwRyFwI9oVrHr4f5em63gohhnYaceM5K45nIK7FIuJxtJDRhWldMZ9HvDzuVFWpRucKt1igVd6VDp73-HXYnrnalj93ReS2N5Tr7oJ95IGmnfyhz1GEvxPgTcuumAdtqIdUNnBsJ3pQgIro-4PxdOksb0IRU8LG1OO21C5Bcfgb3IhWrolkYpPC8rjwL21cdTitZiYNvdq1n1TKgtAQbVymGHywnAg6M734ZVfZqdz8Ilosf08QnDGai-YJ8q_E_b4ynH-Vxw1jlDPrTUHALnHQ6RxF_5lC93DG8Sxv5u1Ujt4rQCpPZ0KX1daIPK9F-ZrpPWyANpecNlJYQesZcvoxSd8ZdYoPOMZBLVvPU8NAWrtXdhw_0Kq3f_n7YOP7AG0oCYJiizeE-wegHPKYRaJcuKdEJNqQVaJr6YGwlRWwKwWPTcaxHA6zEED6G1uCgxSvV3ig9FzMoRUOysG1lSgsRtziAnYqvl1OD_RltBVzYeoQXBIO6vno73pmQISCDeE6Nyg-yCI3dS-gRfZkP-4QnNOAEI_JoI4o6E2w0TZevrmepIjNDlXdR6kZ-XvPf4N2fzeF-MQLxOIiVymETHPlvaPAOcw34nAgsYObmKMJFy2Uvlzrk3gAzMrxhAhW3-ps7sRP4GrFCAJ-rc8vI5naECOd-SwXWxsRb6yObQ3oRAUkJGvuNkItziVUyCdPqSo-blDNmXHPp881QXxZDUmAT4TxoosUpmb_rOmOiQsUnX7Ar1_p2W3Pg3oHCvkDrYj12IDMCZj-eqbLjKVzGsi9J4TvmrLJ_i3I6MNxQomarX0nZxUaPZO1pkIhFgjv2i8YS14jqmm2C09fxtcL4I0cccuIfYQy4tJIPpFn6zWmmJwSe057wvggDl9bv3S3u7DS8U_IuCLdnM5dJWyYmBjxZ2emmnKuryu9MpAAda1T5yaHRvO2mCD_cPW12y6iOCbcohQ4kvxRs-2UHuyn1EIR8Hpl79s3Vx3JaokO8In1iEedmVJSy8aaTuRxL3DmQfEZp0RBUOoJfk2A3xaSyJfsQVWziLyJAlimd5bTwtcqYvlCB5jf9919tKMQwNij40WaMlTj8j47Q3EKkoiBlbkWxgyZsTb4D9FpP76XgtFDSP1TbQCFYST5YI28MfvnVBX1FbIk2gAPt6-R6GkpAOhpXvW7nD5cHUG2I9uTZFw56hiyIaYqjxxdVdhTiVmKcTCh8l2wDBzVbxeWIXnI3iNwN7ly-o9Dbm-unHVsWbObSS2URT5pGbbxDd1TevZzAfiEAr0tGrZMXBcR04r140E4ucrR2BkJNT_G9Y_SPwjBc62wumTI8uP5xYMXWFdvPXx_kHUVAuvIpbiWOKXn7xBEaTFFxe30DjevfrcR0NHUfgtY-9wrLSqbCkKAUY7rbDGnBLxIQLe-VA1aqTKhVUP-gdYers1piJV8WFKlJzAju_AKxBNYuHr7iTI6keoQzW9eGw_ShTT2a-pxD7bfL-u\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f21f977209e8-50805812','','','2025-04-06 06:31:02','2025-04-06 06:31:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42845',0,'cd-form-entry','',0),(42846,0,'2025-04-06 06:33:20','2025-04-06 06:33:20','{\"email\":\"philrudd14@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"4\",\"currentpostcode\":\"Wr26ru\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6s7gkqYgXIWhZpKdbMH0X3YG&amp;gclid=Cj0KCQjwqcO_BhDaARIsACz62vO4wpnkfXj2b-RNYvg5-1E6HX3kMvUGAXfZv_06oatSEQ6tEPxCyQgaAgx1EALw_wcB\",\"recaptcha_token\":\"03AFcWeA51itXZKFiDIxb4VpwBrtbR8XiMGJZUrhk7BPDyUfcfuoLOJOsmxkN7y6J6AcBghD7R0Pg6n_pGIqT-LuRFSyV-jTKKKSmI9GdRwskwLQ1Cc5UnDdCqm2IznIU4qi11hRSu_CGk6CZccfLf3ZIwtJgCAfT9RZbX7A8kuidL1pcJQbiDA8RpSdTnOZBOXspoaUJItJArJMLoDjZbfeIfeY63S-EB2IPKUNVzrocP7ZOvqjUV-RcXHSCAL6vratFmrIrky5nXGZbozowguPiekaRdIUkJLVS_93x3HFg3mcG5dpm05kg_O-KxJq1SjnNJZCmIFCwoHYI1QoplDsTWhWCcK1c4_bLWX4vwkOFl1gY26AwGRHLQDQI78Lyh_nLaPrVe-mg_KwgA7VJJhgTZ3n85QjekbYPKYOc-eNnuDlB6fLsuAfQA9MFAV4E_Iq13ECEQ2lldCly7A7e-fOcyxiP_8gz06O7XHao-hmupyYjdnaqHdEqc-HYRepfWq-naqKYd_oa_EzDkPOnFCo2yFJ2U6b3XlsDnwRX9U-BbIF8htoCYNE_Yc6NCNf3oXRpnYusQ_KQ1sCRQsqUKT2H1Qrc7Riow3Xk0l0i0nJrcbBlQoVz4nikZO2CdRbs2X2CPjW3lckQMolypzduxNkIDor4POeR1t_RCcDZ1UaP00MWy3FZhDdE2hmLbxR2SlVgvZP2vBOPJOviaOvOsr8yD0oS4mH94ArVfhqHSFlHmWmTMwwWFXrYhhYGeWBsSJd7R2Ko55UkgMW_fmcGlz-aZJ6rWmAGe6GH-68J6E5vAWKXQUv0hBnmBwneHC8dBc9r5K-K2l2xPVcxD_ggSFXvCCMJo-Hj9HmKnRzbqrv8qIvQBMPbCHzORj6YLhmaVzsjBX14xalld0cvm6RqY0kHjm8cAsXqWqn6hlcjfnm96GZgo39NaXJWAtw2Y0l6HeEXqUCrgqeozBT2qPbL8qllz-IRZeEhvqcRF0RdtMZPZHgV-iCrjbNztH6bDUvE0Yyesz0N0chexC7l00XcM4Fc3FYVc74ob9Jap1na1bqkv8ebCP7BveJVOCPRK_7wMCy5Yg3f25QMZpmln1cRN7xC_I-Ua3YKO2QrTUaq3tZnEY_Pcr3ycSqiSWy-GC5NtlxoAiUiLUcoKRMnjMAIjwcqSiD6W71rp24bXp9Qz8xB2GktXO8ljZu92lrlcYMzkB9hXad01f_WNpcJylJOh-SD59bq11HjPkY-bN87Fs7LKcpf7YnTZqz0DTwgLmG4RUhLZz5oZto3WjluBc5yp2zqpRLdLkf7e757zot-RxS9m984JiOnmGWhutAGp0sODYrM06MkYvu9EUBpAOlCb-SrejljStTKaGTxJJojAasuK4HFDkXzqglOqaVtfaMt_CkJIAaV27BbG5wTZM_flpmLyqY79F0wEdeKKpk86FdTJZyN3x7O2XQP1vu4NCVpFVVIc1mfkNPaLEXRespso0Hs8xuky08d_ZpwrnJOtTb-AxMGAGG3c6fieUh2Fxj5lDcTH7SJ6cZmmGuRFA-N2F4FeXfpwGgdBarLe6sMQAmPPntGEFhBfBu45H1csiPNlraduROUUWkvvloo0fW1BLoZdgLd863GcdxgZDeShRIItBusorcwgNq_WX8Q0Dlk9EA4iTE5dO8YRxCh6a_eM3jknfHQYQq1_HEuZmHWgsGKdH4A3stQw9tm6W6KDl3iuMx3Hic4mkaUNAc0nsuIj2iNGXLJie_WfbU-WvkKzs3s791Rn__NIXBpFhq7xx3gH3qHrodRyV0Q35HNVYJ9S3SajII8QB0Eyx927f2oeD1uZ_-xzGSIRZNvsl8ar7VexNdWGuTUYVt44CKVqAsgjmIccWZ9uqcwV2qBOKFTtLdV-6Vm6ZhP5tAZIYmBn14dHGu1UkaQKfwab6PRucSFEnBd_Ia19_kSXH2Y6Jtszkemi4ocasUD58WMUS5u1aPggrIgjAeEWFKecadnoFh4BwCwWx1Fjc_uLktq5QvbIpOFPwhAsj4zywdhP3ithNONkrUgraqcZ_HdRZrvUwR0KucI6xv3aB1cU6Vop9sq51taNv_3Nl5q3w3N3QpXc8SvQIEpvRnz27eOMAwja-ur2-1q8J64oV1U-hw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"3\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f22008a571f6-55806425','','','2025-04-06 06:33:20','2025-04-06 06:33:20','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42846',0,'cd-form-entry','',0),(42847,0,'2025-04-06 09:05:38','2025-04-06 09:05:38','{\"firstname\":\"Tringa\",\"lastname\":\"Gould\",\"email\":\"tringa.gould@gmail.com\",\"contactnumber\":\"07766590039\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwzMi_BhACEiwAX4YZUMv_ztRVGFT1pmkB8pUsiVQcgi0JQ8A7OtsqFisD5YdYotNMUviLlRoC7_AQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6KuTEPK_He4SwXnrzH9-05fYHshObiH42yW2dOZRRdi3Ia3qT-OTBF6-yUW5Bq-zfMS2oE1Pjgt7xs_HHe48N3-mtAYYrfv5sYCzdODvxUV3oNt3EsCtzxbxllGaNXr0cqaQ430s7xgHa9GF3OLsk2sC0nrKE8nGZtpOisYzunmmi_VneAQzD6gCdD0DWNwpm8EkpHAMvuvakDNZZjg1H8QEBVIiAUinCav2BZEKi7zImNAeyvlTxzMADAPHtBDAthNV0OUJuW1_4dnHaKWCPStELWuXUAFB5gPq1PHLnb9CoU92MSfXs8PKSRN8beYRaaoPwB3HHQXPlO40XYDMXQLmprK240_pDqD4QwO9ZjZb1HNH3BKyq1rdoLc7SsRewNIHn289iAwq3f9tcRdfJrCrBcm9hf9O-mHZZTGWVfN-HWhmiPBTKDVziBBb923fBYyN6YBeGv_xNmxtb9KUtA_5BX5eqUlHTl1Hu4cd53fyr-QkJ46VSRXjMjcDMhTSnwA1m_cb7ywsuE25ybKPKphSccVydYWtFQH5cBztiRNGzIPihdohMxVi5jU3BUQG3nvRwWpPXB-Kq8NkfIbvnhK-rA_vXd28K_4cKX-32dBWs5_Tf2yIMcXlgwRxU2qFgDSCsAhQxOWOrpgAb2nfEfCyS8qo9XdKKY-lhSKf3XTp-0-6QMdXmoHstyNFQiJ3KDM4ZYTmNPQSq6aKiJybKhT7WdFBYMH-T2oeeQG1COtA60_8OmDYwn09889_nWqm2dcE4L4dveJt9puOsN4-AHObg0IlfXQi7MKtHO964tAX2ip1RnEUsxJA3g4RQO5x0R-GUPywSpyJGhuK2oDG4PQJFSu9niSCFpn5T2L0q_KOr14OGxz9SjYitNPROAWe9kltlyKXsjNmhh49NtPdnkX5eXNWAD1loJVHweuNX8Regt5rxMB-e_qviRMMaEqZCevp76Acg4bJwV4RG4SpicyO8swsyKUykcSJgbz5JWwJVlPFm22v-_PTjzKKHIVCn_rRMHVhImsA-a40WQmAtmhQ1N_6ILTFvE_P9k_fqkcaJUMJb-DouyCsYP8RQmc9vrmJs0UxqRK5c985Bjz-B2dYYJDq5AXx9Mgp90Ys5LKfRN05YZ17buoSxHYOL7t_aeSN6LFA1z6qZE0DmH3yUgSJwHTJnYDr3xz-_IoPMwKcD33HAHIB9auib4b-dUknPGofrUlJfbFnv9a4enczIotwspHFdiTYoDr_FRUIy_E4OeNi0ySukn9oVDPH5LImQ5UIVYb7BDD1BPI3l79Y3cQ_W9OZ8KkoGUX8s7dhdtK6L72yJE0MTvkGNu2mrLlwRJ1-gsWp-0_LOqM9_CZyRPy3XuqoNpBXZo8GygUczL201VMx0wWKr20wN1ghAdb7L6x40glMuLf_hIOx91nmA_p_QWTqVvhgjk4xwrEQ6m95-vnPTfB7_ql0WNggPBChrf859OWowytGy_Fre-RV_baAO8Ii-2RG4grlOjYuMPGAmFTiLezxFP8BeURUSVTv-wcuSDsRkQncAEGjaQp72yaBIOdCp3XBPRDupuiq6BrcKJfVkK-kAXSlwAkpY4D4uB2hIi__zpdJRSE7HLJiYTVgIIIO5398jP_INiXhh87LAuMKE1cJiy4pl89giHacCEYaF_ZjPlNY8nt-x1NaIdmZWm9HTuyErMjIlWyeWYCuNxo6VEHQyZdb87iKR4beEL0WLfMQahi0-J4WF5CHGehItJk_makiAHkek00cnx2KkIBrz1z0Og5o6vorSswOti1Nti5Zp-zyCAuCrxDB-CI0cWYxGDVVHeXciIG3hiqi7R3iojPUErcRAZSFK6gYL5qGhLhnIcgUDQheiPSx7rq-cfKIYQ4eurApfgsFR2v3XHgach73B123AtajA_fUk8ipqgbUlK_v7PSoxOAYX6ZWOVpC8L0khJUkh7E22ETh3V6E6W2oEdIahjw2Si3wt9ZJ25rmbyQWJ_Xg1dVN4K3uV6Umddgij5cBhILN7tJ4tFWYiBE4uq8VHNy9t53GI-ttltPZDjBQMw68E7_gQ6zJ0qSA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f243d68178f6-10977585','','','2025-04-06 09:05:38','2025-04-06 09:05:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42847',0,'cd-form-entry','',0),(42848,0,'2025-04-06 09:06:26','0000-00-00 00:00:00','{\"firstname\":\"Tringa\",\"lastname\":\"Gould\",\"email\":\"tringa.gould@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwzMi_BhACEiwAX4YZUMv_ztRVGFT1pmkB8pUsiVQcgi0JQ8A7OtsqFisD5YdYotNMUviLlRoC7_AQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5NT9wdCcisl8pBdsFxCNIrLZl_pSq5T794JtBi06H0hgt-uYZDYYJo5WdX7Kj-OiMYrOt74u5qyDcap8F2cA47YffP-PIjvk4stHOPC1mNxkwmoZ9F4UPm30m0SqcUP0za800nBhbmQdqliX18XuipAAcdj6blgho_entqANQ6GlY599NI5kZ8ZaJ_Z-6ZSMu8r1L1RNL8mrl1EuvneZ3uWV05KXnO7FgnAyaq6dKR_Z7xbrfgD8rsppcxEgBMmu-B0dwiz6SCG_IZi2XouCO575lxsLuDvi5VaiPn6lTZ7rKZTJTetZPfTJZ58KfQb75JSynu8u6LTgcBYxWFYpUxKMTAUX8bv-eVHt3z7rJa6hIA-5mvPKVtcKMt0eYoUPlO5BuEDy5FN5Gyp1nYBypWY1EciePKzqxWJ4uNjbRbHNZxj5UQdyBW1fqGKMncqrCw1CnUb5s5_Yby6q1tjFPM1Y2O4uhFSMHkdmtzFc1CHsAFUcfsg4uspKYDZwicxd2wZh02Gvm621mrGQ5o8jLiDf6hX2HGTfqzjNvhqQ_V4elaQrhcR8Su5iGn3seBq4clI54BhIBbLrx1vVTsKwL6BJWJJ6xkDZqIQ03BonbtksBOnrSVGdZDzekfgbfXE4Biwh47mab0_qRLmZEAAWIx5nrw1g6BPDvpmapeEmzv2JIjtcGrejMSqtqiVJ8kki2VOlj6jnRkX0XdzalOtD_iW9tlKmDqVMDuQJozKWnETjkidC3F2CoF7ubdPqxfRVuu6ASvRrpIO7_8Q__BZ5PhBLZTVEmN5QjlGq6TzSksCWpL5uOp_RUrbsXd66_xN27yk0zrA3x7zbGJEN-9rvooJeOsX65k9D-EqKsefyW6iVsm2NWe0LHKZkLgZFJ1OHRobL0eqLA3PsmWuOBnkvONi8Fob2jPO-ZJhi2nxLi34uP7bvjqztcQxy6an9v6c6GMZpsKFCYe_C7MMpvDyOHtNlCQ3C0q6uKEz36M73o1hx6oPu6aXiG9rn4W9Pru5gr3lVtOv__LGrKsF-4wHoE01_Gh9kT4EhBPHu4i4l4s0wkfcnL0IXceM3rrvpD0yaVCHwIeqHq82tt3Mb85A2UpbDFllddq4WKH26eK38eHM8TqpwqdW4MVwAWvcDeUWmUINiRKOpBMlxZIE0Z_xA9sDQzsZt7GAfznhtoQpHDcsOWuX_D-rLrsbe6CYOCCzswaRRyeO6ODmV0WCpBF0SKqGQ9FbgJS5FW6zlnua4na0z1a2Cnh0ej2Mwg4CHNEahKzRhGe1Xn6ntQCAaMe5OJf8-1zfIesnmuSUx9ZJDoVnrZuatmV0zzbXTE0E1n_7ntHLo-iGm95L98AV5tcpqjW7ZrZfy2QSoJBi7TBv9dg6zBQU1ohNuRFJ46pHKGmeDiYeB0TIt-yUf_r1fsHeETztRVA1sTTO65YK6PxECzV-iBVJPUZBIzf0yoABQC9ek4CaO1Z3F_l7zFGjVOisrphczTJ9vsyF8ipfjk9BMvezZsa_ko2YB_CCVpHMDB5JME-YtvscOzd9qN3YO61Jj6ZxbAl6BIk5eEABfArgrghbhmW8ja0MtyIY9DbqR5ShL1VXcbtspbhsmDcKC0rbPOrr9GMUiVYGM3yct9vL12kwYYrCtOc9_J8eGF2ahOVCSlvz60HCq3-ZkASoNOHYChMjRrUq3jwxbtCbc7GUD6P2GUJPTDQWucD2gVmqfShhKrJVeFv8b0rXRGyYaJKNUwkQX-cEG_xsulaB7S3OQalNCU6CPh503JrlmgyGWzV6ougyMFA5x-J4f9lk5lDbjvbTYGx-fiml52_2uyFZH8csvbRNSFloGzWo2pf4MnHNrcsgDGaX-3Wdf2s12_kqeOsZG3egsiZ49X2plmtC1GL12htqa877QjfUX9pj7iAS4Si7PNQryTqbrPnxOwXRjVUZ1wXLISbsXh5sWAQU9ekAY0HmLeDnuNblCWPc8BJJnY_nTBqq9HcWBU9Avcg6NZ_iHWaSI0vdynCtwauAHJEqBWKP3mBtMPPT_KURcAQoAO_0uxVRNCLVSucAN1UT2WhaGsXzQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67f244128eae10-48649016','','','2025-04-06 09:06:26','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42848',0,'cd-form-entry','',0),(42849,0,'2025-04-06 10:04:36','2025-04-06 10:04:36','{\"firstname\":\"Kristyna\",\"lastname\":\"Kovarova\",\"email\":\"kykush13@gmail.com\",\"contactnumber\":\"07427240476\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6s7gkqYgXIWhZpKdbMH0X3YG&amp;gclid=CjwKCAjwzMi_BhACEiwAX4YZUB6sgvm3BY3_UV9A7P5CmNS3foqryUWjfHOgRB-MSRnM-6hLONOlABoCwUEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6oRebGg0dQAdbkbwaUXJL9ERGq7F5DYfYlnnRIPyhAfsPLo8pu2YAq47NLrnELNzH0xuXGzE_oGVCbZluYJVgPbCaihRygQpCUjDOkz75shCIrrWI-8QbO3R6Yo2vA0Uz_AutJphH4ZNSsIzuDNDtddeIsXFxyIMo0iYBqo4pfksyW5Ii25BTzhVC8D-73MigQYaNjawyWoyi53sPh8Wf7DlLhDl2aaq6HsxmtknvviDfqtcdihOT3ILJwk0wVmZ8v6szgzLK315eEDKVwedTUIsxm9wWP9QEvdtYNhoN0P5maBxJpcrViyM_ZKzBD6id449b3hlfpK26xDcqTiCbREIg9ludt_vjejgikWU1f48mj0nOOLASgHUSHDXglBlhKS-W1HY_mCF3xm0U1q1FwTj2WTbdzv4sWCgHIOGW4kU_kApTXBinmjH6ZAK0CZSplSw469U_tPxcsND3Yh6eyNuJZ0iPwcz_1njgiLduuHvw4ZFtLM_DtnnEbA6EAjl2oj-tA7N2Zikb3f34GoKrJQSMDRBSjjnK5gh-in4D2TOJQdOmVWVXs2qgojx_CtCev_K-EltqpQaeJKBpoIRbOyvXSmAtabbnoOkhhsA3VeABivPyyK5nJx8eAOf4_g6JKC9UEzwkdVdr4eeLMCvvKpgGaj-GPySjRb-tF46ySImTwAH_TdshkOX_k1kdojEEXMLm3qswZcZ6ytfMr9ysJzAxTjA1c8v9g9eQ3A4LMrrS64Z6OyI46S1hTQIDcTpXHHx52KZCfzJIVX0Q8xv7PH6CcAbyMVxv5N97RH768XEDqjuTvghly0ljIXxg_0JMuBhny_ztPC7q2rZ8FGjmWr9Rej_Hj4tnA32gMJ90t3NBlRyIsIxYXr1xdC6alev9GFsXRfzwZFI_xVrFDk6r10UkPbl7mR6-nwCbW6LdKtT1yJdz8iGq2TYt0_PAnRrXxMqqTCpmnqyLtcgoUuY5FzkvYZLNqniBCj0MEU9_wsZpFVQM-2ZKr7Wbq-pS-8SSsxu2xe_hnhKmyc_RAGIoR1d9Yuei6cZGNIzfmGW2ak23cq_mohBd8ki1FJZnxsF154QjIvoPiWoBq43xi1nFZPeOrjYB9-5UrA9Wy3VPjiWgfOkPNzuxMOtBmIeQCfL4K20xfCwcP7jKccg2ZR5FJXoaqKAns-BL5RQdu2YjLCTPml6wmNoEpBRylaJWsjCxQEu0FyLY_RH2kaPWjxr33_rMvNYsznBkiclemvLvlLx2KyCzpYTEYpcnDnDnZX-MF_muA2O3TvFGUL5hAPUbBmXUp3S1GtCYo7-9YN24nhfTpbfzewizHZJ6xk_d1T5GN5PShjQeDzap0DsEdOlIZOxOeNIKThXrBnvhdvCLqWzZN8xVCCfq2x1H6h8677AwwXfn4Qp4__BvaM0LjlNDHtJMT2cfosy_SWHdSsXTxqFl2R_lmsqqYi_HB6hc0qmJ2WVtlXszKX88AXfwzFtHGmkx3oYifvSK0Hc9ffj1fM70KQQ5I5Gjhf33TtBrnIj7xJL7IAzB_Rvdw1jkJqHBVSA0Jh9yk90t2wrcNNlWTGDSm6WP6lYU3jRn_4AlhqGylZ1-xwooM4CBXQpo7CsKvpnU7qRsXobrk-7hQsDGuxPqH7F3Br77NgcIuExEDbKfOMRFUzp1H36SDbIQnfnv1rcNO1qkpsbEtl_xz0RD_bD9YQT0ovl4nWZRthjDwyJkUAZkr7jl2wOC5TjZ8-IeY7exNY3FOebz0DLLoMwvDujYCxQEe0-cWQO_Gi1109Qhwiljvj5rB11ICLtc2l-gl_ANteDM5YwhGG_ZyzV-5n2huvxJPe1zLuYNMu0KCiuG2aKOjKs30RjNXwLqumo4Hs4uHao8dFNYQM8RKI99MpeeTI_53YfAM_rv6h8S6ocQBcuvWri8b32hMrxQc1WxXikgK002ylIQ_Y26WmQfU4qZSO0Nx1ysuRF2jo6YzReXOkzzlArqC5C_sdKGmOd01YdIzBsNuLLF4-nur0Pbct18s8yz6k_I9jdDsQr0SQ1gW_uS6Z7mED1heFnSpR-AblHWRvpVGbssR0TuzZf6wP-VpypwMy8QLP-FRLVTe51LqID2aNBG1S7L-2QByHLd2x8RisHata7daSCcEOcZp81Uy7lF8UDEIn-iTv7Gigu6mPcSD\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f2519f1e2d89-08284910','','','2025-04-06 10:04:36','2025-04-06 10:04:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42849',0,'cd-form-entry','',0),(42850,0,'2025-04-06 10:06:05','2025-04-06 10:06:05','{\"email\":\"kykush13@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"Tn2 3gh\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6s7gkqYgXIWhZpKdbMH0X3YG&amp;gclid=CjwKCAjwzMi_BhACEiwAX4YZUB6sgvm3BY3_UV9A7P5CmNS3foqryUWjfHOgRB-MSRnM-6hLONOlABoCwUEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5B9XY5vpOjImFQ-5kFo-Jg1RTlweI_gZK5RtLbnUSwB5Osnz5djuPh2bTbpei7DPdlzSIPeRhZ-3eDvSv8aEwaWNbu3H3k37aUnKV5KzQ13FikIOmnXdszgKkXZPwq2P24XQIjAaAuTZxRRQa0eq978EgU4-8Kq4FbSIn42TxZsV7FoqHQ9o8URoz_nQDmQaboMFFf7I8N9A68FKoB23jS1ND2fXAamTdompPD7tpcLiRl53GTakYxhKJMpqMwLZkp1_1YqdCfSneanP00qJUaLEhxj73ODSv9CXQFkKhptcGuwhG1Mt-rhf79xBn5PpHidlaVh_mPR_K50b8QyPnFko2jcDzb2nZ5yIpjbqXlnAWL2o55ST6Vi9tuR1-xKlkh5k-y8YPamJC45mXaK5ylFu5TVw6WeWEg78I6jdI9xRHdlXLNbC0wmU4TW3dg-HL4IWiNvNwf3frR2-6Q8WuvKBHQO3-M0lNDdS1B4WyXJAfLWARq4Zfc2oD05OOAJY8kaGFHKmEx6uc1_YGKYZ1A_axSmNjZfbjOy_8LsQfjR80RHiE4-jASwa6XQNUU8jG7m2QFBw0BKHVxMSFN5ZOGt3n5nvmtXom5so8zK4EqY8R1HW9Cw91u-Jrrx-nLzGtanDx0OJHovmqknaTTnJunq2iOHjd-F3IEXpeJvuZG4JFunoSmIFbum5WmGIcSynpo1Ows5k1IBXK8RgcmytE4U5qyzVdC6I4Tin3Ly3b2_iiXvYMZp93P6opevudmmPO-tEndqL2tPpR2iqcOUQK2-4DkFALi73MPYsr8zbzbEPYAl7z9hiGnyef4TswAuE_zow2h9Bsdl86M17649t1KsVlYLUzwl54zrIb1ZgUr0xPSA16eY8aHxEY_R-YTPNv7NkuhmHCZjZcfZd61WdHceW8ZCAo4m3OWPDoRqqW--d5sQZcVwyuH-cscS22Vod9a9CnF_L55OBbo2LypvQihax0LgaRTS_a1bpDSHcJbz2dyZZEJXNTGaW9cLmQzrXaAoaok_1rxX3AVGQCj-yWxm_eOf2J2_-62dXsAVF4vtGE4c_vyq_51sv3r1LePs4A7vsCdFVfkSuYDq9uvsMseR5haB0M8zobzrwy0gywLinsXkd6FIt9c_N6ERcBAi80_N_D6Rt62kabzeBlkZYbfmh4RIGtLlxMRBqDjNxUkyNnzBVsTRC_-yHuaZbRhZKJFy6E2RabFvYfCcm1j5cbHDlu-1pBDNusdsoygHxp3TIUVUSh_IcKPFmKDCECGp5qSu680Md0TOS6nSmgs-uXFodotIO5bCRrBQbbO4K1ycCh3tR_0ukZ2t8os2dd6Ot4DQwbDcsSXAnds0teASHiAbt-VK5AIV5SGMyTL7NYOgKyi7CnTssH6mNRQWjxp99c2FMaX1oGSryjIx3okQovAAKLISJwMve0LAXwE7g65bco9dXrJmHUKjhgl36YrzxqWoodmmRA-dYcsjYOMue-A34_3NqK0xeL4LrNjcCZgiEGKrX4K6UT0V0TmquxH-RfzP7Kr6bDCdterhWiaB9by8vFkHw52vX5aQDbbbyOr1mXEJh9WCw8e-vFsWckCkCdP-gVgS-yG2lPvDJKZbwE-5mBGkQt6NT4GRMsGDc_wLaqah0Q3qPleYi_d60DOMzUoRjwQMC7kBPiI8A_R2cohhPmhl6p1m_4x4STPaqF5fvouxTYc5l_J8D08lnPkq2G-ntJUhb7HNafbhWvlen9ClqMmwioRg5WJcFdSirS8c9VHyMIPsTtn0ocnpa6LKkr2l49H7SrCARQrGO3VVIJscyClR0LwZQNZdiXulcVfj-0nqQ2cHZGmbPuTVBGc9PNb_nMx3Fm1mEJ3D8jksQl7jF6E5eBHxlp5M4ohFr10xPDang1EJJr688GWzJjI-dR90Mcx_W68CQeUngv-R7CT-IqV8f1DEkRCTW2P4SroTquXR2gL-IRGms8D6n7xfIiY1RprFlQOHJ2TdnIq264qmTP6nRb7I8uPjVXsogIPkmsvVgkM1sh9uHC9PzSOVvCMVIA3RkjNRWESXs7NSQyssVOR0p-OMO8QsBdrytnaKUOGFeh93Wxs2qNb1ofwr-G2LqsAcSFgAK1YQKZNit_sYa6tsdELMyWarAbH6OpQ6HwQ1-JDWPS3O70cSMYyxhJ0SFTI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f251e250ac96-85071174','','','2025-04-06 10:06:05','2025-04-06 10:06:05','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42850',0,'cd-form-entry','',0),(42851,0,'2025-04-06 21:16:55','2025-04-06 21:16:55','{\"firstname\":\"Thomas\",\"lastname\":\"Langley\",\"email\":\"corona.28-mazurka@icloud.com\",\"contactnumber\":\"07792711237\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tnfYTVoAE223piF98GdbjMj&amp;gclid=CjwKCAjwzMi_BhACEiwAX4YZUNxrzC5x9ZcGyNLq4TiBlPnDomEDEm6GzrWfQrEcRNkFfyd97C1BLBoChxYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6fJJweisAwckdsSnVa1yqjc2Ebcj3PXMPQhJS3aTo6YXJ2WJSH4C17k4coEeOp0FuUBzaehcseubRga6wOM_WS4SZ6fDTsC4IarKIKMSGzoC3PxrDmznq9R1g2dF97HS6Ly3gwIWQgRUFWRr2rSKafZQnC38x9DaTRWstH3OyjtwNmMeON3rl5CKY6W2P4hCm4_cyTh7c4yyrpu_ktB3hxUY2VOD1L9aOk1poM8t3MZ2kRo66xnB5L9AaXJlIrR6QsM_7RgIPQzzULBJ7PwlyCWeHMpnlXYc8CoowUeXmf_-kFlzfUcTZuRODuXJ724IbgTVKygeaD9AQCyBGKQKgQS0h9Hkav3NnllpK5VT8mbzAigNKoSKJwqgCein8hdcpl3vVRpdWgr0ePY4zd96pqALG6c4hCV0gGIzmwKZevB52kamBzBIH5ZhFZnZzGCHXcbhssKpC8RDWZxv3VtcKl1ROc4g-1UvWk_D3sEdI5Js9tKdGA0gdJHpmYVIP3NRMoCzJ1UDMYLs1NggHZTIt5F-H-TdNEEh5P_8jYRDbmsOaxk5xfWxronYvrdGTqLocj6mk_FoAeglusAhmA0iHEaKu10jE1-ek6hqrXkne-GZ9EyA4tzwlDGR62Uvs2ovDUp_zwrg2W3Po2sOavzVJTH5N5XKE2f7zaZ5e2-9YywG5yEVVtVjOntuCOkYbu6pOkaE8807Sz3eS9vpoxbOxla0sqbCl26jbESX5sPB5x2FmIYK055tqUsOESzUGGwHG73CNa_MGl8Kiq2fxJ6djtSwXyMb3dsWGQ19IZCRHwZikuGkYieaR7tnC8TQfBs7tR-BsfilcGt3sOuNPdoLh36jywYBxUsxXh_GwvDAn-TQ-KZ59c4CWUokB1523pVNwHiZzY0fLdcZweK8ju7tgcg1xgpCI-CLPYaplNou7yrqrE0b5V2Ggvd5ARlkozHJ4zGwKLgtBr9-dKDhWY58oYlVrcFQXA4BHJRrbrvAOWzOE99-oD5gMsfUA0447sNQgmWG4UPyz56NaWcweOtFPQrT142Ox8Z1fFIZPF6qjF2TK0yscJ4HzgxCJZ27e9BM73VqwdFhIaUQTnmnAgsOfnfylsGfDOyWfkdCMcnmxCLtRjZEauM9owO0C0gbLNxm5ltsXRVRldvvRSDYNLGSWZixshmG4RD2vfmkujODo4_-LMv6HzR1CbGRJGvdNk23R6quotSJ-7NmZmco2fN_lgEAU6Kawb4R6mRAB48REHBYao0uB-D4Fo1zuy6-NtRt7oOGDYEkLJSuQr4MjsRiVl0fwHiy9zbq-sdR9Hh2rOg2NiayekwMhBllFRFjv-8LeBKjIc1xCQzDPxL6yclxnM4xcxqXnTEp2iAgjSG7-GIMWmTMs5sMCH1EyOGm5dHwR5gVQ9p0qYgiyLEtA2CQ9WnkUNL0yHC2Bxzn_psBzquFmF3sF6GPACEj8iZ6iM26aaa1z2M9emFjl3Vkh8rLGiiv1B7NX00KHYWD4dXiJTxmy2VxnCIPcO2IUFYvQ3fyH8qVVlx0XJGVb37oscb1tEAF5M_ou-msDNbgqdZp1sgLUqgcy6dvHj4howhyA4wKjZkfE7CaoXHk-b5FXeUyvgHGdYCuM0dyQzoPSotA0JgRITaGBSkTF-kQoninL96ccukARHROF3EBZkCtX1Y8DW09IyR0bC4EjGaNubHSc-CXOQAEXJ54MpcjYxiytYM-spmaJeJdOXtaZelD7t9eclNsDrQq15zh_YVusz-KauKt4kTLMY4yql1qNRkmyLHrObN8-jvrnb4rRhnGA_VJbaTwkB9LJEVOI6b9Wf8Nvs8O5ADy_R9R6H0I6rjPuF924rNAT9Y9N25vzfKMVHrrjZJtD2iuzRKclaA40xj99abMFgMugL_2wr-yHuYupJ7XVJKa_pxYCu7NmHpt1CWi1QJ0aKT6z4Y3pklPFA1NZ52mNjiiYtRJECloyC65vxIE2Oq6tnq437ndokB6CtLWiLB463JB5_nA-HhiXeoWeua2VPK8Yk2vwxmeiSml3XgUK0RPVB7fX9VWM3V33SdZGMyRXQp0g5c8dCW0tVUoKC1Wh_QlJBElmpYuuj_yqMM-UNrM2Bc0zdcWWHSUv4UuJWjOCYRC_wkwPKJYKgrwI7qLogjxswFpicqy18_2BiPKYAi2wV\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f2ef3b620f38-54228374','','','2025-04-06 21:16:55','2025-04-06 21:16:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42851',0,'cd-form-entry','',0),(42852,0,'2025-04-06 21:17:57','2025-04-06 21:17:57','{\"email\":\"corona.28-mazurka@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"8\",\"currentpostcode\":\"BA2 2DJ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tnfYTVoAE223piF98GdbjMj&amp;gclid=CjwKCAjwzMi_BhACEiwAX4YZUNxrzC5x9ZcGyNLq4TiBlPnDomEDEm6GzrWfQrEcRNkFfyd97C1BLBoChxYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7mEzpBLyinANNiW-DNznRel0TS5x_kimwc7dWv7dUBaIn_d2zaW8CNB70C33-xTJprNchzhUZnClB36yRm8WpliH76gRlCOTvrhHaSQMXOX8-A0AFbGXUfNHeCBpLDXuLqyrVH_sYLdWhlPAjyZ4NQ3zZSRfVpLlfUObH6Y_SXeUH-9M7udRO-M1Lte7Kx821qipS8hRv9xbQVaqtLRU4tPZCqc-ZI3HvvKunPSecYlSNfZIMcVglFf7d9Di-Ap_n4en9ems75G-zSY_OPexnzoe10g34OvG6q4jEWnDeNQOKE4YG0PwtVe15iMdjzC9sLFFrG2qCzKaK5zGL22tXFhSlcl0E6GmA5zx9nOiSnAHXNyodoi-8Das-KZRkMr027d1sAyRsOSnJJ7bD2u4guJVqiwnl0aGOyJEUbRGQwTfP6MwZHfytgM1Uix8mAkRbyZUtDbZwYPSiSjkdfbvgNWicexutpEFozt8PvKtBhQZz0nPFXIu1jipQHC2uuhAAISdsoCSds7v9_-6T8wtQDHmq0sywGqtEXUIMTnqMtBHuX__l1AuaYv067Ux2QNQRXfMsQifOqlhCTNqUXsEQnnmdjqCDOElrhmWxC4NIMLy8ObxtImz3DCNSHn5hX6zNA4Au0ttv9MPELO9nCGL2AOdh7Zt_STvSiDwDfHKpPg2CmwpEFXsnEo32_VQv4tb1Xzh1eSDlRYcaHC9X3LgF-CEmOn44Wn6k7kj_yHlcoRnjrSKGL9oSUakiOg2sUcaDF-JqF5BA9i8QpuAQik7deBMjLgvH697lac1evOkgy5FsZz1ERRr0vY8soGmdexH8dpDy6jmLp9Ilw76ii73unuCeR5H09WV0pRmc7DlIzdCrH34tyAzYNZxkM9oMMUtD5bHoLSIt-0Ux89AmWjADiMIeVvehlOHrF-aHEVShIi6kmbp5nAL08uskjNJMQ2qkpNkRcetZfiEID-aVJkuoOgDo77hgHqyyAU1BK0scOsAfTJoJrZaf3EiKoDhr6QTV8oj6C4u6QsSukuhvlcqH0tDYXpEKzaUdZg2scrq6fpokWwoF2cs5m945gI8cqjwcPtouwWEJg1ea4uQdF3BbEq46soqjHQu8AjQ2IOKthXhySaol8uCc3sGYk7JnjYOHmW_tVPyifBbnSZiTrUTQP8bCfNLv3IM25uFi3y52lWHnpVEHtw2GKTRqPoayZryuwU-U_974yom9uga5Dty6wBbzQmkKJAOvrsXX_t2ct637mRICGK2fMxAocsLft09y2ZjqEIIUpi_O_Cef9w6GtNZrCKXJ4XknTvpYxWeN6VypNb0Fx6SuZPDQYxrCZ-SJKe3XHFyiK0L5eOdyO0S4uhbpq_8yLote7nfNQseBHoOP03R38GLXGo_ZUtDGg_RQUbFXoGNpxKSMIqCrO1e0WHtXv97Jg2UiT3WgvchVrw-rSeVPcNUvxI7Ovty0-aVXJlb0XeXMbclz6Q0hN38dNF_BfRUrYKd9YW4nviUpI8PipSzLn9JbRZSLIIO4fhsMQO-U4SQ60iDiXb-dHJ_oBbXIOZm8n3FlZ-SgZfEgH_N1YD5s-L0WaoO6E4un7ivnrFa6Rds5Kvh0qXmDTxFMxITafP3af_mBPzMdIdExzXCtyLl9AvjAgt6My0Npac8Z80DMmLDO9eUYwQtTFoqbq5FjIqHB_5j4PpRDoj8F19szDKxaxh_bC9Rg2mHMf_5LsXJzwpFK_oXtbK11L74AusFx5d1Oo7kT7YdqMKEO4hlX7iouMXpcQDuXcLa0P0vEj-gHsDg71JJSA4k84T87n_S9jkzDtvlg63ddw3VwY3lGRwXts-1ayYnD0sWzjbvzyoxOpChCdZYEt6ND-25a1tRYbhZ_G9JOjxO97o9_XFJzAJkLwkYmp6vSYiMnicpzu0kPqm5bsPG6GIAWeEP-8kAYq7rY6XXnQ7_EBZ_5HXaEMjvaVNYciR6zFQhat805zhsIriXag2hZvCdDz9YeBSSzYiasDS9qVNeoAfHE7a4CO8k9pO5VZ2Cy0MePwp1AbiG2sTlZ5qWBdCY-XP1-smUlp3Rh5QUMhg8hmQG7n6Cmld05sn1I3u-DxU7KYKDn6sYIC8gx-4OintlkZ5Gzz_QesGMNvWNiq3NExdVFbor0G3pAyeEbxaCAkec7KUo6-tBBl\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f2ef6c4df1e8-30331189','','','2025-04-06 21:17:57','2025-04-06 21:17:57','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42852',0,'cd-form-entry','',0),(42854,18,'2025-04-07 10:24:06','2025-04-07 10:24:06','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-04-07 10:24:06','2025-04-07 10:24:06','',42536,'https://biomechanicseducation.com/?p=42854',0,'revision','',0),(42855,0,'2025-04-07 10:48:24','2025-04-07 10:48:24','{\"firstname\":\"Sophie\",\"lastname\":\"Hall\",\"email\":\"sophie.e.hall13@gmail.com\",\"contactnumber\":\"07572160311\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4fUIN4zf_WGaFUYiSDfwDH11T3KQm00GD5Na16itJX0uD3AcY35HeVHYSdC7hEgQFcr2WQ_BmcGn9NattnvVL70hSOZBIvl_nCaOChvBLOElWCM2QZUiGVt5ckoEK-GlID5D82z_PhlWTO4yo2liBbsG32qriJlT0ZUtr0gZi1x8jWjCRcdwkWrvPsrfuaWGZ9VHJOSamCkmA3xWSvhmOEcpMCQgvzHkv8273qXt_FzDaKAjTV9TovH9f0_6lPsKJF3AlCNag2dl-g1EXAXDXptNg9qrlEm5lVFPpE75lFU6vO2pEke5yLSjE7ACyDsgYnePyGEv6ELXw-SzbmO2bN1ruhJOWLw-KcJLmtYBV4oxQFB_Q6cVUurN1i_oYZVY8PAQMtjdzm5m2bO1iHqiKdxH5bSVTpS7mR2HPHaCgoAwEvMIpiwZ1gix1JsLt-0c5VkLRTakryA4GhxJkW1ptS66_yzzbl0YtD3a6M-mE2YDL-WlPUMjH1xy8lJZMqwiduiU0Gjd1jwOvhz1lzj10nuvM8WIqxTTpIDEmtShZQqWLSDuHfeuJP2mmzlHmCvqmt9vga9bX96kf3R-SdTTaXyR4vTNT6k355kgE_y8pdJqQAjtXoobLCOnE1WYzbBMmG9uPuEIicCprCfn36MV12n-6yuJqegKE_vGSe5rxl1VsuSUM-cM6WJLNKYjDKKxvF1cTktbY5fD2d1PVjdbZWfeMAfwMOJ8evAAGNg8TxtHYwoFyk84-rjZQ4_0mp9q3pA1YugLuSBIz06lLBxFYmFeKTak0SwRpaV-BK9E1dpeBI24QRNGC_mwdS9miyX9TshIZUXvdC9JVwjhMNZHipCK_zSK_xvaImz_gGQfodwYTQlrbNALbTkQY6sCmFfSXTxjmfQOkmkX5_QElCJhpoRxXD7tN4iVV97SoReO3wOfbLvaR3E-DRdDuS9rtx-gKaBUW1FhiOiUYrkoy7k_JQnNA89OSh0QWfEDC1rPGPFv7IU5soG_Vxtpl2U-FA2xC5zbNum6k2P5kFqAEUy7UwWgzxwLmjpozLi439-fXtZ8LegLWUgW6wj-YlWu4yh0X9xLb9oBsJU2xcaZclcDZAc1Dc4dLv5qlEcv01X4AOX9fK3gsZv8pZIL2-FXde9GJhT_fW8TK1lu7EeqewloEzxw1nSs9NwFX2WMNuxxLo29MwhtoEEBPhg4b6to-ZJo1z1zBPLMHtDpg0qsLMY0McuLrYO6SG-U1gF2B5_Tz4ArUPsPPsFSFeM7pCmaFgtFN2kCwmAGbfe-jr04rY49k111lH9BpxRKrDmE4MuRwII-Ev8i60OEfiHnQERDWiSnQfVfm19S0E472qNQGD_VEkMHrb3UQRHzNDy-xzW-J-DWApXvZNcnFbPEJw7XoGX0tj3xtOIEIuNqqhEUKIsThQqBAbvdZH_P-o4BwY_gpD4jIY-XEWFnGKjc923iJ3NGFSus-65_Z92GjuzxhVBorargj7eHRIiUHPxZILiTcDFz6EeOuAZwR8dTeitaLHhHyMo_opBKxE_eVgEIdemOGXolCgCKQNJ30U_5koUDRo0yoE9PO_vD2DuAadylL-cIwPcK27XCaAwOA0x7q7cCpRxdJuBOze75-WBOmvSmMGTcT-oF2fOkbFypPC3WCHnIKI5ayMb89aOeN4ZJbtH-_BKtAE-EmQynGYavHz-Y7BwGAt4Plo-k-Hl4tatAxKY0r111dIV9wEM92PRTn6VCt6RafXRVVtbvMwKAeMyn1RQueEWtzpCY_6m9CJ_1ZKbC4KvAZ6kSxqYmKO4O8KbKAvo3efHMli83LodfX6zdFaJzw4D6xUPRWNPCjLnKQrJ3ZXpqsb8ItqGnXjIoBe8fbPmLlr1jUnwpaHDeUIsOZHoP_J7fuhBkTAeF2Q7BfIv-CNhscBXkYNiAtyuubgme_3-SQMkDGlkyh192dKs_OvWEga8cTXQBIVO05KN-bFKgc9vimRY8RklqmXEqA4mW5oVWAux0eYmPnWf1tIP_MzQw56wanJSsi_8E2LvhXibwB3oMaM1KPfER1ePZ2tNlc2_557_dRLaH1CJxWbjDvgFViDG-f8k-CHmi0Ng14UDP0KnYx50BxMQ9FsF3MTEgevm5J5dUsph4xXU-cZUQSQafOs2HdB8vvNxJjnAzZq7mEzd58h\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f3ad6bcd33d3-41730845','','','2025-04-07 10:48:24','2025-04-07 10:48:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42855',0,'cd-form-entry','',0),(42856,0,'2025-04-07 10:50:35','2025-04-07 10:50:35','{\"firstname\":\"Sophie\",\"lastname\":\"Hall\",\"email\":\"sophie.e.hall13@gmail.com\",\"contactnumber\":\"07591117497\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5QiZdurYbn-7HXWtdySPRWe4gVVRWtm4o6AUxDk3hZkEUNaF3qDoDlLzNmzcMAItr62h3PWQUEFoO9kLEip_5jPX-7HfABi84StWPuNoCKcDQbJ4N6sfvuMuForbPf6by0AoQlS1OU2oObkrxsf5gy2oFmVYnUKR6K0srtskFHMR1-8Zpr24eZbfBZ1uPuDzQFfbx2d60n3qpuLKg1XC7do8lXRRtFeC4k52-2O052daM55hZs_u5am-Muqgatl2IygzpzjEz_WZUhTQ4QUmHrY09G30busJEKINBiHWpSMERq08JwUuyyrMVF8MpxhrME1claGxv_lhVQJESOYdnj1FmoZBXOkobBLcEtdK-grPMdrqQQ0H7HmRPrUEIHcCz2vsM5DAljIDPdcLOSi25UoviROV3jsdvuwJf2I9q_ttgVrdpe7QsYd2TMgZgQLXtE6NMGSq4ERvnsQqeNwdaOpvRAZQ0rOIl0G4FMEztCDpT3SI2avSC31CQk-eWcb_bcOgBaiOZsYoZV317kDpgkWNq36e0RTRHtycg2VHxjcEVdBvD0Jq2cu7ffKaYM2C0QxMksu1_V-sDuJF6l_9AlrQjOO5jyFgaOwND--NOB5pG3Hw7tuWWASBUujqqnXvaO8vf-TEpc1lPXJyZlrMXsLJGaEsKzhWbzBAOi9y9Rih4azGWsnBKQSDWBYz8Dic22TdTkCEkh13mJMIpD2wXk4Ws_1S4WrKSfz6ld367SjBKt-Zfa6I3IobmUhSE6OrxwhD8KH8DsphWYuhB-mPcc6kOx0yf9H5znfqkOLKtFkm2FntR4G9hQplJtGvna25Rvu4IqFhbGOr9MqDgvfSXL8sEmOdNcFHSt_nMFbNcisdn8n2gyx7wjoPlpuxdf9MYmj29cRXKVJO9zF_ZZZdH6qfqwQX3DFJR94888dKIRnLp198s4LGmvzjap72aE5cdWLekv3-pexqV_yiIM7q8t-Sy7R53ppYHN0fOwfS9vkdm3nhgbap4QTNVyF-cBXKSucO42T0cEpexClTxSTb5Xb1ZF7J71fFyrT3yvouVEM86VEv1l8g_VeD79pIDFoo_9QB_odS--FgI6gKmK1oRJ3Y2_9eUDApLYU9mgVTDMYAAqACYf9w4pF-1NPHXC20qT0WXIPpekJI3RAUXQ2k12d9Dp6MmMJ_z3j_a38UYHU7QuC_CfKXjz5IQM0YzKdClMDCjhruO8pU_QRtOXF-WjsUpq7yayUT45MoVtN2u4Hhu5x8IJ7R3RW6MencqPdQybKYnckFzdzA9BwqICFWIMwNKq1BeJga2v3v9VhmkcVaXJ9nmwWXyhMK3WGHWfCeNg64OzSWT2qCoChB39Df24p9MM2ijmVt6EmeORt4kbTmj6ayUUAIySVHZCvJgliICbzg_NAGeFwYUGs74vKmrsEG8HGAleNHz_1vQVZtobI_pKPdNQFmuuF3i-41XF7ou5CAf3ZcBGRyuifIJvMKtkiaHeJqFLJiskUcJ_k7vG6S0Gi_tf2cctTbiUbKezPWpppR9aDHinNh4kjZP6rVgykYyY4xtRmatDN1OXNne5fzY9PrmnlE-m0boAf3RGZqkRhfcxo5sZO1VqhweVoIm-a9OVS4sWZVlslJ6RloOvxxWPhiEWV0Hkw5ccwyh1iEIqXQ8xz6K4HX-mujoo8s71SV4-c9rU_gmOrrQA-es5VgC-I-dvJKRY1cj187W47Qgq9MYA8Fa7wRMRk0HHD66jQ8nwwufRFiwxna1TxG45PYdlxnndomikm5KFGr7ZWXfFYVd1OtUaMyv6zj39higugD3Jz2nE4yUeC-a6siK-Tb0Ai4yLDPFxgxF4A5GynfodiZ8s64O2LXiEF_TblRMxyEuoKXxY7sxhNVWQVE4scncCzxOFAfb0blcSwpf8y8BpAK0L8eoXBCGfC0gLx1oFeO7ik8fcYvABIirsh8fUPuX-K6mXHvrshOWqFmrU_OGguOuWe2zz4-H91BJFv8Vxk7FiHV3s1PjrGbJC3sr406_gP2tzVDOtsvgFJKnHNfYfcrsAiY-ZB89y_reax-CbpBuK1ohlwQce0UzkTNjVPEvd6k1_O0-SCh-jSUTnpi3g8Fpzw-0B5-ReeQVz8uDivvk9ug\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f3adf0284886-77479538','','','2025-04-07 10:50:35','2025-04-07 10:50:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42856',0,'cd-form-entry','',0),(42857,0,'2025-04-07 10:51:42','2025-04-07 10:51:42','{\"email\":\"sophie.e.hall13@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"5\",\"currentpostcode\":\"IP33 3FU\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7lAnI4mHY7VO6RCHUz5prGTMSaBpfpZ4J1L_pWTofRoEJtqqc6hvIqduwi7Z_J1_RKPQTctV09VxGWITWxBGydfxkastxWg-xustCoRR2Gw_GfgSr5zXm_PUr7f0JXuFhOZqEsJXhS6hwQuXbMl0NFnymjS13t0iekUF3c-MNqiANbvG1H9l0KLgjLVMBt17q6NLnRXFfiAJbiLJV_cKnfEl_lJ6GF1aSl8DWhCqHKOQbYk-zYam0XE_unsIeAV1DLHDhaVBwJiUJsp2jJ9wAcznBGRFSEvN579mTkkKVsMklFcZywRPvy4-NXEHjvyLn7SU0n1vXSR_vEiqnxdU0wEJscfvGFTJDhzY50HeutDkkOUNBiJHwVGZFPjLEaA9e6ltIAV7tWke4OBuriyQ8cV_BmKmdMDvF7d-AGVyeHylyk_KHx6wJAmma-BzViO3yqRwKLlJ51H0K7IHsjoR2W7aRdNwNaOMQ-Gx_mN9gLK1NJX30OFZMez0m4fNvxiaCKixqN8KB-JvGBcI_PIGA7D10kgBUkNEzpDqzlPVihFOMASl93NcDlBVuWQHGmokrfqpIXJWbJSgn8ZA-cRURkRyj2eous4fi6MrXXAtfvVC6nveSf1f_FCBwZPDtxc96KXV6gzZjkPYXiDm39zbQeqhO8AEp2wGY4YX-uPGBUwMFn67hEq2uQ0XbaNV_JYSbqJJBSIqYJHUb7rvv3FWE9IA7w6ihgA-1_f5mFfLiM4bps9c5DQT5XJWFgo_PkIQrkMXDt4PQr8WjmSASChKscpJ76ZDiUanKk_G0mPholRatWOoDMuk7CvYSN_cjsO11mcNKR6Ir79tCqpetTRSW2btpFf_ycK9HTsGHgimZEByD-yR7NKU7BO0ViRmrz_XIEeLZ1K_vrTL02EYwddUzn8b6dT3iTjXhgrb3m_aYx33pUZM2SVlbLRgDxqfaBeEpJI7rjteZA3CpKo03RtgZjak1wunrP4zyQwcycBQZETq-IZTIOturct7LhmnbL6O7QMUyEKjatTG18D941xusikw1UMt3GmyBoTL9EvVo7TSHR64GJYUnQn2SsGH-rjemTsnzKY9e5HSDnMTo3pmlFW77dB1WgJuYzZeRwqyTuc3FKrCPcnbGHmulOH0QqiAj6inhf-aG48hSYnEeEVTCknFJuX8TYiiwNAQFs9vJKqH8p6Ilbow3n9rAO0kaBBJcmTTE3fDYy5AdhVT761E1XQRqHcnDuoAkTitHSTMhRmRL4hL02rLcwCTUpTCsMHo8qBC6aO0ks-KMdEX-rGJD4mCEQGMbLmPpK1KwYmHEMfDc8-nsHF2mEzAzgELiQkZoT0wvkt2l5f9r42GhwsVdl7qhT_KLS9vwG8P3dLQrEHo5DIWnCkJbBF_EJh3Vudr4nHzyAnA7ANCbefpcWZdjPT_r993yMt100A7cp27Wdm0Raf4Iug8qFgKxmB1lMn30qjBpHrPYCCxX9n7VbaCzLUlMQx1KphvMq-PecvfLdBPAevod3QUuCaa8643C81eSui4u0stQNjx8dxRxLMwAaRyT3HzcOgWXMxXeh3TOgXastbPSdY7ZSx-_ubHYj5b8Gl9KyLbggh4oPvHmFYW-Uwei0GrnHmftjEvxTTgS1IiqvUxPbMYiJe07qKOzShkfqVKjbEozhmxjXez1hgs0L4Ur-TZwHD0vSZRpSMAWqN2d_jqx0QWV1fwx3bKWwPIIw47MpLIxwmg7mVX8dc650lLI_ZkQNpEw9Qg3pPAa8wBuXVJyDjU-6PpNpgjjetzrw76xfG2cJDCpLHlbpBRmvBbgS-oGhPntBunPP6v9c6sJzBq1XqMAHtew4N6EGeFNmIcRKBTJs8h_HkwMpFl09le1VIqYfh-lkE_-PJRBkpigmoJX8ryMRKYu4VdhbVu_cItchyyFZIxtttbvjd28bi8ZBizrYZedtfvqdSB_CLd30m80VAdM3CXpGiaIi-WUYIhxmGxszGaYOorpZNzo4HW1LxmVFzq5II8kIJr8RDF24a_-29_m1eSvTxspvtqiCoEowxOG1h9YuoS-cTk59qqNELinW0hIm2e9sMBLbsKvejb1YkBC8suIilYpNRh9XVhGGiqQitVBESECLlfJMBx_NnZnwOiSp5RB4koa1N0jOIxJ2itIwezUV0Rw7GQps_8f3\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f3ae16832ad7-21498087','','','2025-04-07 10:51:42','2025-04-07 10:51:42','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42857',0,'cd-form-entry','',0),(42858,0,'2025-04-07 10:52:21','2025-04-07 10:52:21','{\"firstname\":\"Lauren\",\"lastname\":\"Cusworth\",\"email\":\"cusworth_l@yahoo.co.uk\",\"contactnumber\":\"07467596741\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA53MRF-3U7mnYBlT8O62aVgfJIKkG1cMaaEzjal7QVZm8St7FuJtzh83XfQLTs5mMFa6ckjV5QAe6LcLQvly6Eb7qhJgWUCn4KeGk5qlZ0t5yOd0ikzvL63UWUTluSLsgn39wUZIq8agKbNeSYdF8snAXqxqZdSHM2TWNhYUEA7vm7d2Zf9QUxWjtMvgj9IbF6mOuabcBZcacoDPuNGwx9Cu7fjLLDmYsN9F9agWsKc18ry6ZxwU2cm7qgwy3sxyrvII9GX9xxhdeaE7rjm7DTr8Vb8xjBGHrQmkAF7sPaU9cTI6Y_ZmNZsEFbYyLeiJ04jlhbj8fb16J00XEg6dwciLgNI8ZjrXSxJJuxU3g-zkYuyhG29B2suxZBz9OU9E--ixkMTpQj9URMYne0fLK_iA89GjnC4Yt17NlFaOyBrT4QgeiW55LYIKJne2sX0Xn1_snToh0x2Df2z_Lw_MlZWN9Kxi9epUwEgqtjb80bUJ_zJ--IZV-gBrNGmjfGGV6c-3fN0K28wtFTlTUOGQx679JnLGSTWrpQFQ1JATRCs_CjJxClWyDE7-8AtSSPJGHQXfm9lgM1SePNQ7lJ1ny7mYJWZWnPwHvl7T-C9uIkURNsGu3eZJEeWtKiDxfBAoJ-VbyACsRBbScux9tqAasz0MLMDh0Ird9Pb4PgFbyy3dJXdK5ELUwWAg4MM_gDS6IxZxRAVFGOTfFAuNRDOqTArS2hrcnIM0O6IYWibR3atMPIeNyHl5T1tEhzWrEaK-AH1HJKkVnBXTst7I4pEL_DcCeqc7jTdYVQK_-j4j5M00r3kHHdUWi1b_GnwsTLfFidpx3J1RNpunUUFyEWbLAeM_63fCu59OXfN9Ypzaeccvw-QHWGRtiZSvrVTfmAezyJ6-xYbwPsheIhwFv-tbZ5k_6FHksUxc0zgl7FU_SRc9p0yg71Rm-8V1ZYJO5TzYjO2HTS-Mi_ePoIqTGXKFc1ynjIdTdGPKjzv1UbDV7BfLay5Pn1DAgtO8C2XyOi0mgtib95GXVO9yhhcqLVpaDp01MgJziA9rfFFCaUxamdtJRvymDS0HAvC80gaFmacSNq3azj_fKCyJeAPIGv-PbcdzBDl5XoJcLonQ1nRFcFM2qyh_hZgZMDU_73CfdVhovCxPoHnQBQ7MYAtEeW6hJtaOxONT6SiUjkxhcf2DcxBHiQBMpyaPCoeKV905GFuv6Z6YDP5JF6sd5L000-JyWKJk91UQZNrC9gN5sM278L_VkmYu_wSq42S-BQ0t95RSHPVXRRLwj42u5J93id6vbCc706qOZr3RVYFVZd_08K461eKn1vZVOv0gXlxItkMqjlTCnvpbz0SGGKepiZGuJsPyf9tP_B3q7sjRDf3k6a8w47c7rcXWQ1iIBaiRnsd9C01ywIr7HlY-eUmbk-URc13fgnnYksuKc6tbl4vGjc7hrDIEbu4JiWx2v1W_hm4TUHBEe9ye_ie5EclJeGF4i9YZ74FSOfWxs-OC7Zer6Nwk3ZMw00_aY2mh3H_GoBtzSGrbI5KD3yO1_jUrEaeyjTSop8NWuATqAo8k2HQCauOEKL1ihhRENH3V0kwtyjkyTaM4RaPBCqD2Z6YAaNieryOFGLo1iu2gYVuFtcUoH6qdXHEdTWqh6Ob4zmAhGt3ZcMvojlAlB9POn5Wp4wsnN-Yv3fnwp_yLUQfpHJhzYmKJrY_FDHaw8hO9DL4PUpnPDiidF2kgJ4IGIfAinpcYfeCv-8D-a3AWb-PeG3064r-hL72N9ErvX34aB5YAXQ-Yhm-P_LI7af0qncSxSd3j-IyLxJIMmciqHgmXmPXUwn3B863NRwxoHvIfV-t2ZrZWoN_4xu7N5B0R6W4wh8P0fsgFIREJUzYgSBIYK-OGmap9-NA0ylkW2wARiZdfzkW_F4MGJs7ZXrtV767vtgnfx6SLnwFC7xg289S2Wf0cWc1RSAxwg6bYRjfPkYfOVFNi6bHhbas7capoT4ayWcc-fvrVolsOIedmDs6KUtBN-eYpaAJenNAWhcUddsx2yUS_npIhI8I\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f3ae53f17748-73348487','','','2025-04-07 10:52:21','2025-04-07 10:52:21','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42858',0,'cd-form-entry','',0),(42859,0,'2025-04-07 10:56:30','0000-00-00 00:00:00','{\"firstname\":\"Joao\",\"lastname\":\"Lopes\",\"email\":\"joaolopes2602@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5hzTXftuo9AT1E8ga8T61Hv5f1o79fbKBrCfztt6Uegb7khooN9DuY02kLLnPZf7K4zweEYM62rfNzJ1Q1KLhwy25pTOPEi30_1oXZBp80mnw9g20pvAtzsQe-dA35DhbpCMJu5k2l8OsbFRxU1sMCjZsh9NwTHSe4b4xK0pgjgtYKT3nIM4pKm5eg5TphiEQ31IahAufdWpIw-eRA1XGeyvaQp188hQr4EeiMXwOwk1acKbOe5aKrJfzYoV-KT81ZYZr_o5UrozbP9qwVpO__DAPc_rSk1N0eDhYEEHcTefcOmi6RIOT6aqzKkloPrEP-E1jXFlTsR3Cv0A6j-Vr99pTEvxKu5t2UPzEPtoA-7tHUTeaD3nyrqTbD46Ktpxd1e9iCj7DveBRqH9nl-CA4N_e4KllGPl-O4NiTKOgmh-xvFceNqHNIkB1wM24fXl-ICgojviUyuzR9Y3Ixb2OTpArSN_Z18pTA8aOkWjBi_mzwTrBqN6BcJuhdv0pVlEuum3S4GtS-GqyZK-F0P-3mYDqdtkMawRtXEK_xVRmC1pgxF8wFJZxzxuLh2stiNqEhihOgyuxKXVfCKPQBpj539xShA4Nhr3TW6IFGg_z7HOM7rLhAxO7vvypMYLwX84p9Edi5pGKmoOKK8F6JT9AU4VlqapdREDfCbUqkAJ_jr5uw_Z5ELLLCDhaK7w7TEPoB0q2aV-_yFeqkPFSH7pdbZfCqbLDrZAI3U2FqINHZuKDKofYwvU0Cyo3mNhtC-pCgpUYX_CUl7a8q3brryWSGwIVtd6NS5WhqXYX8KEF5SxbJHxyG47gpIQObwfZSxKV21Vq1tKl3q0gHLNyPmLwBfjpmoVU7kfWleTHYRuFwoXFms-AZ_F99lXzWdGv82wOrFyA0gfTBA38TXpi7VGq60YuHFIxp1g12bClSbO6G96iPrFZLWsyv4KgcPrLA6JW1wxksLPLPwCJLg3Bj7KOUycq-y6BpKpDr7M9y0r6PywGMgvKGtfLvhrGcMrBml8PuIMRamXD-1aGVGrQc-YpzKru0hSXlofo2O4K6WYitfanN6I_fhN_p-Ce061_8SffW4lhNwM7q_3P63T22dilx04tqwymJfqqj2YPTeGqbJ46nLiC9FsQp1iyfS7JQadPwZ6FN7waotLMNHl177DkN_6c9KXVBPZd-UpBzws92N3r625eE-ZP8xhCqzj61Lp0ZV-y5AaWNoAqnnS24h4P_toZPhaWHbnuzWPH9Re_iHVTHpiy_4L5ndr8m5YZmi7545w05eRTq0X2LhhXfRo3ts4Ow7MpxMjgRsJdLBmMyF5ILCcltFrb354yBEixwZhKIrCfEguKwmbDfOWNEO0-jV7NcP5qNapC6Fy80a5y566H-0zevy3__9myhBnGnRmzR4bu4sQPX4QbpI4tAltdstudKD8yVaXs2z_0v1BEpZIvCwg1nk1yOH1L5Xzf-6RSHF678rMJ_Oe3RKg-1O6FrDF3FqDJ09pT03CJbDhG05Kvi4tQ7TeMlKS6hgX3ghribYqKcJuGYZoNeqdGVyds1A8xuYpOyDCIpJ5q2TciOjZ__jd8mWsNv4s0YbZcQTc5ffQMopL59zsnu71_D1YCdkO0cKFyRJKz2Su-DLa2hqD9Qsgs8VboipBxsK5NSXNh1dLFcYdJncUPcVVXGw27nl9Lv2sF-J6W7qMuq80kKfPCQjQMXMm_dhRhmhosLfmtveFqNwqVWiWaleVRpgX7IZfH6EOQo3p2awHOMYYASPIjZm3u79ZRt_LpW-9xG8Z9s1uHG1DnoKALbgTZuBVA8EnaGkvF4ZA7Iw0K4VhkqEvk-GGzHNChQh4vfLQSvQCpUzHw1XH5oPIJssc9-wuDB5cWlbx_A9NgYUxZ52lCAt21sZBWoF0zG7bFfPp1c85u5n35LDrVfzgc0l5ZiXQnztYFVW2xDbmcOUl4kYBrjSrW78tVORmwxcB0tQoWOdS9p56df6RDFtejn0T2c_73XO2J_v68hWlA-MHXe2t4kOFt6sK86y-BbF9F8xgtIDz8JEjnGzO4-hznshZkBmegdiGwdXcrpFmAwjXx4RA8u4LBbYNufVEjpwo3053plx0ZHwPtySCyCT-FP-Kz58wC8eP7BJ_MhixGtBpKrnEBbffdcvRPZfs7giKZO4PwVfN89P5I39JVSHYNML-K0jwyCTRWmZBUo22dlNN-e4-BTlKHE7RyPMUW4fU3B_78fL-Kgs5EcWRzBxzMZLyrScIvSKIWYDQZ3gUsKd1mz7lDsTIg9vIh580P5HG_X-xlP5NpEq-uqZhjV4tjmjAbK-6D_rT6Z_iq1JPqJIBohyBmxpHIwUPItXD7fer_st_Hl9ba6C7ppVq2zKg59HKI_A9d3JcCnIQAwcwRBf-MqQm-rR2Q6G82RxD1tUL9jssI35c40dLn7\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67f3af5e87f5c8-75621742','','','2025-04-07 10:56:30','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42859',0,'cd-form-entry','',0),(42862,0,'2025-04-07 11:33:30','0000-00-00 00:00:00','{\"firstname\":\"Maryann\",\"lastname\":\"Hardingham\",\"email\":\"maryann_hardingham@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7PnC9uAIxyrxfZfczMp9Ve5h-k3Lzsev7OUk96Kmd_9Ev99mr6X3fjv3qgRheAYqQIQbdcMifdGmxlZ9ASQLsLYAGRE6gBxYrctC3jUdLL2UH8x83pMytblti7HrZTpSgPQu0qrMFA00CYOHFyyc7JO35HFNSsuux9UiMzG1qsoI4u-O8vF6FsV_jKaHIIPFsieEotjsu--u_u_J9ZHxq4uogO_ZEE9LkW91nzFpVrpseuLsgiQc8zpYUN-685-6cM3EjggPjc7DaZYUeADZXuKZXoqdYTwQNhp_r9aGwaUodmFEwmGxgJ8EPezyj2YUfvUz50HBshkSjGRY19Vjao7yjrOA6RYkDEtfHF9x-hHv-5Lxj5eWHl9YumN-ciDt30xT4j_hXJvyaj7E602WecvCAKPlIkNfN4jb1ugeQIXF5FCT-BPkmzmf-_W0-xrDJwD6a5DM4WxOSmBS6gcALFJ3pRBhJajlGdno7QJ3tib6IhMHP-7h63To6s-t_LTykZVNzDvUROJQF274jZmdtVfdzhxn5rhafVFa_zdRNcR-VKLkzV8Pkrb_8n5IVQ--PUidMua3BVPigMAPs93aeNxZVH05_GTqIvlno4Sr_08lAHXvOmbJSEhx91_Qd2P8q6_IVTSGZK2fgXlH1yHbMleMsofPdIm2rVci5yxsK5HXw0Y34RlR8Wdg4eqViAE6lcfpkWFOtIzXZDFKX3q8zPjiYsPEVx3XaNBdyES-U8pQbOwVqx9s7AViBygRR5s1ejcjmrD2cv-3EhCck4-UwMJ-Fb5viD1FAFJa5SEn5Cme4e6zENv2naN2dX2Bl0HL4RxgwX3v9ikr5Bo9shfEJSLQv782JciEuney_YaLeerl9Q5RWWDIOHbo6riV31__SIvobpVhNVX85UjI32aMIdpgM8auKW3UvD08sY4PwBzNIaKjITPx6CsGnaUt8r8Wd4t3lzGFnFNFCxXKw8O8gGcleoXauXJP0L_3L9q9RwVlmsKHRrZHErHI8Og-IgO8RGmDkg3TmbHQ0kqEPm4OS1Vxc1goZU1yUVO314hV8XQpRzqPzGAeIofuIM08yKA5_lzBNAfdGuvmvvK-FawEluNegRg-_OCoUP6RjJKO2edQp_lnuJ_LyrDmsxNloqXTfemYOuKgOo8mpWdj8ZAz2eW7KksHtiMcR_K9wGUWV_9tn8rbAhd6PIqZ34P5quvlCaokQHgtkaS0KsFgYzjCGJpmufPDLlgogvjlC-8JSzrTUQIdaLZjhdG6XeYetYumfZe7P-OrJKSXs4DPjRHMJ0BxtgZxRw64RhRBeG_fKZ_3kK7scwTawHsBZaI-_xaJQLjYGgE1_NzP0iEpDDZwfVbfFE8MPLGJ8lHNA_lna8tMz78VAQbSVk-XNTN23diq4r19nYelfmkgOT9JJouSdtlHsH85zNzrLgAgL6fEh5TO1SrGVuhmDRYjgylRibHTPu2W-JCLwPhrcko6lks8XzVojps1P8wQOtbJufkMklTyr-aiLq1_KQJ7Ue1GN9mnnVxjjewlCam_1Lzfzt-YTZUm3jS1wP668jnXG624RfjeHRx2moqK_BBzYQEVu1L-Qg7EwvCWtikz3o2pY4yCHnL0anKLoyheJH0i4FpULU0R25T6EHYKrK-xfk68DJJOsbTqFF_xrrRPCz6Md4iLL7bHlGK5hy1qXC2mTIpp5F-CtK3NXEHYN3HlvveTwS0ps8Xsf5_XZAx58HCR08552lAFKf5JY9-fZPtIc3GGVIn_4EG_jdFTFFEJUy3PuycaAwAhh_cvFo8qOKtN-RaHh3P8BfBEnLIPNEpVW5n9AteV0eqEKJSqSelK-18OMIzWSCLUH7CLEYGUBUHgriKxJ9OQxN9YPHBd-3dkrD5ZZGaHX76YpaQkS6docK7i_pLME8EqmG0zQx_5FDC3ybtZhL3uEZpPaanEV3OSR45lPrbQkNBoM918C8iFoeZGzhq5O-hhq1MjC4ndip5OA4yICAsLMIZJM3NVjJ3Ch60Fk4rW8uUJsz3uUOSYs-6AtIZWOy62PPdcRuJM048ekayH4m58-kxwQ4YHMIN_ZIEZZNYqh7F3bYS-LLf_fjC-Z7nOj6wRA-cYitnSjsunGALHwWBOYw8ZVwJnPbjwG4q_oiQpVUcgI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67f3b80a5784c7-87075566','','','2025-04-07 11:33:30','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42862',0,'cd-form-entry','',0),(42863,0,'2025-04-07 11:34:34','2025-04-07 11:34:34','{\"firstname\":\"Maryann\",\"lastname\":\"Hardingham\",\"email\":\"maryann_hardingham@hotmail.com\",\"contactnumber\":\"07947600739\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA42pjSkamXcKMsbxPPCVsNsgTtN8iRJ4BvYrLPUc_MUpRUC1sdnoGHniuC1cKbQk9iqEzeO_IulowGmniDbSZ5bd2KXfYdh55kC3GARlA4LF6l5DPBu9d6bCiiXEazz7_L-xGJt2EApN3oQ4KmXZt-QaDXPxAcl2rLC1Y6_HCQdNtXGGZU2yAs1lgU5zLR4e-Tszo5lwB-eGBxH_znEO-Wcmmk35tvc7mByoSYCu7tyMdjsXDY_5J6P-DMcWzUx4IQY_Dm6ugHknMXK90bdWFbiXXjabL0ZNa7w9hWWz-E8uR-HnfIad54ousCfwiyw8C6OYbxEHNAxsfEPAEiOl6xqWFpvyGzD55tGjwUdBwkr7GtzlsN_Ga3UZ3CYlnt6da8YdpzEGUlBnVEJo7uK-a31SH0GLMVw4h4mmRfCL7pkIMV5wNTu2FkrkTap3MBM8V3_-SKfRTT5fqNO93LMLkJKViZlmgFQzVYVyZS9uKGy3MK3u3u7RmZsYppHFiHn0_l33ovj4Phb6sDiRqHQIZYvvNl7W0g5Pzm1mvxtfjrapq86c1roNj5Gz0BOG1hF7zuvEli7oUXHzxJdCGLhxHmWea2Ot1QSpXhsVCozV3gBPhahtaIPy0h7c8--KvwqrsN8cBB3Kzbjkmr9cgPyrnKl3x4psb_1loZWGo44MhP9i2Kk_HI2cjnZ0u1IvFrMIY9n-pqAUnV1Ek1DZ0dbx5cPyEPfP4M_bofgbAEPGO9ZD26F7rnXlE_cKKioZ-XRj_-dDtTuU_mlvp3OdJcON84Up49xJtefcp1NC22PI0UGKqp0jIBUHZ9NC5BiZVKC3WXe2Nd0KvBD8Y3oC2TosFXmff3Llti_itJbJKXfYbLFBGBaxI-dFjjALSAGexH6ORRLbeLnuqYqt-Dd2ZcV8O1zM8WNGHYZGTDb9kGyEfKkLvY-6fpYMIZxIQRhX4Clen86llkGE6s17I4FAVjXhDPNskcTFE07sHh-cQ7FVMZO0nlNAn7NIXa15kWFVqt-1dBywLavPKQcOruKwO3STkrx19WFc7jlAnQpH2zIMv6rRUE68tov4eU9hpUlNWshNC8ur77mxCecBduokpwdGaLmePthz3B696LSStnsHoiCUEFlkZ_63xHBKoFwo_9IWqWwZEROu5dY8MEAxwrypd7tRAiR6MheLJKdTu2PMcf8NqvPBFNU_1i0J136yHbsRcGAD-g0S6QuKLJqCrFq3FveR41gA9V6JfcaQLoXJegP-j5GX0YhzgqjKegpDbupLVV6u-8SdZvyPdrzRAtikQXXJPTfoMqUx_b8QfFK7XICmq-8RLwvB9uCS-KVcjp3WAPPm5b-udyMlmYyE3Cn0QJeH47VmyAD_AZCzZnwngXZu59FMXCsDKk6G9kUY_nxz7xBrVI-UkUTfHY9-YNITO8QefMbwszNJkCsd7bnwr-o1M1I7FpCpOfpTLmbbKr1GSkKa8rpfcpH9uiirA1ka6_W333P98KAvNIKfs95iO7PlfOsGq7TEH0Y_lpQKYSboQO0girlIJ0-vwfbkrkuG1Ah2-YIzZJW5NnpDVmbZ92aK7Qrfmb-0s1hioM7frwIu3PKIE8V1chxksvVacPzrzBpbvTDm8NFQbeijiUQwRBWwEbK-zf3IbnMlbhxr1FYD_Uqn3_iieFCNJfzMW4KTaN2MZr44zrpfkWtputrKWj173DYbaplnWqBj8XlnEAa3q1bYfqddMXO-dKJCkogGsC4Tz6Tu-WbRshpEyaC1swQHdxNbEaWeLlb9CstKD2ct8HUMBWGK3WhnO8auPfzLFQ-wwEsWFgJU8vxWn_Xsjhm9Yno2wxdb2zz3ciBhg4bxA0UT-3F7OnK-M_RErNY9SLX5PIVn9yBEkHga0xMOCVNmihwToXQ-0bYc8vo_gZWLhFenI1YsOTcqnfrL9dOHr634SDcBcanhnfkpwJumtym36yQzD_hE3G2tEgxfHNjb9034-kxpSn7D0kv3FD9y9r-yhhBFd3OWz95m7tM9xy4Wzjim_yL6MBDNt5ZTiWWmkXdNH3mwac_gu9IoXIO0cHAEQog0CTA_XHt0LNa5nuPC3hlYAJb1AFW3C1uXAP7nN3HwwbHzSu2y8mojOFngtQ0EMJR-vYN_jzHdnOYQ4TDBjz_vC9R1r3l1Cqdc-gxO0S5eGqOLQGIUoLtpYnv26Sl6exDrw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f3b83ec9abf2-12725575','','','2025-04-07 11:34:34','2025-04-07 11:34:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42863',0,'cd-form-entry','',0),(42864,0,'2025-04-07 11:35:45','2025-04-07 11:35:45','{\"email\":\"maryann_hardingham@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"TN39 3DP\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6VGOEvj42WdMRriSb-63VurEKGvPM8_4Bfb8T_Ybmq4TY5KwmYaA30QrxNahN9ldPW1EhwWkUeUnIy5ZuiOXCASeJhe4u84joqZq4kbEhINdL0XsAWvRHJcsVz9AJDAjazYvPGaO8k4U2pspvFvJ4wd7Ee_JRE6lm4eIzBEB9jqSQw6a0urV7eb8z-RTSC3eCQSm9UPa7M6plwZi-zX7cseoyE7SToNzcdWYCY-g6QU8xM1rlPgp9hojouf7EvLzG_zOfCVhmHi1BrhAzyugTSUldtGAJJ3uq1VgEgDRWgzHS3bNJgr2J41UPX-8DNXuNl7_yJeGchvugdS9B1I7DAl0uKDrGMucqMJ7MqIe948Tu6RK7iLGiyCf_PZ9frK-ZnClHo98duRa-N2ICDpMsin4MGpLwrzxDr8V50TC8PUemwLtl8GDptohCXjmvhM_7fctRGYSN1Vm3v5vCNL39TEeBn1HQbbnazS_j9dRr1yyFNCA61Dpz0zaEdLejuiNyK-bjECNrXcbATrPc2KJpTw8YGGVy1J5E91vLkwIYxbC7DYhH90gwA57C1UK9a2_RiMVc2n0d9eKV3LaS9P7REG1_EIzSbO30wPvwKq1edYE5_Jw5-bmDRUKBcIU_X6xRUTOxq0oE9it26qiqthXkkI8s8n5ZpI-f9ba3602nABjOpeLsIlts0qoNkdyZpFq4bpc5f1z4YEK7IFeaJ7Ic_TSdqpNE0TEdnvVDNHdPW-6NoOFpoH_Xpy-yTILZP1MGayP89DH-6uSBUSs-rBQLeL7d1KYIBdmmWen_jdGaufiNeL2MCKlvEbBhdQnNGopSs-O3E3ng9Dg8CaKiwKbIWzeXtWnQVRlksnCs-Ae_wP7Lt3oRinXm3UDeWJKYu6cQxQHxZHr92BT-OLJ7CkJt3GspRQFOW7ssohaInqMoYA0X45m7ZNikblloqnPrXWULE4QJ51xQWCgrceau2uAPPAs_uFgXdXf06Y6N5BbKZtmM3pMSYC8sUFblkTCqmXZoOOzoKsxu2FToHcnaQ67ACbkRHgiszmdoqHwlKJvVTxcKGtry6-_rGTzN9GrTMbedqFvq0I-tO8FFwLo3jl40mTw48Z5QWqaZLrIzXR4ZjILYWoKWAxgHvjwBRh1O2RhvhyBqVQJ6Tugf6AEosMpDLzg_WxryCWSD3DbXN85IC3_ts10PHfCo2-SYjR0x3Zd_k0yBR644aurnn8LtRWfM4YjfDdKGnmBq7_ayd798mPB2SwKgBNGE-O0y1JWiiwhxut033mHsbVAJX8B7Z26svsGxlaYzYMbD4fN2Vi-H--01FYf2U4XQzFdjXx0tGHRpmQrHtpExzlB7YxW187QzGq1fBF8DSZui7bUXgPC98ym07UyPTEsnzjmb7hjI9j-5bHtU8wrAiNkpOMNOe8ZWrM9P48QG8KHdT1xaCFnUA9-DbX-XTOF0XNTWyuTCwNdPmNtfsruVFL-VA1TvkffIbSLDEEEWw32vzCg9ZzTfsuynKzIEvuuq2sg_RfBRReuzf_vUxx2kBYPs5Zo7n0sJ858iMXYN0PRXTtTJHZb1qVRwapIhYW4-DcHv-y_h-eUPG_6BCn_JMmgd3I0_xL8Coyqs42snopSQrJuVIUeHgzC4E6e7gg2Nzkk7qCwv0xHYgOzz2jUcC9z2SVYtOTwPHPqKWbw59rUvBqcZn2AHGA8QjL49hTCLQ6AyqSNYhYs68ZkjoO3M4COxNfcj9H-_-BMW43bes_FS2zu7Q1LnK4_-2DFME16RL19cZLjNRRvH7--hpLyfJB0D6mTkIg5PSWoClCSMr1_zrOqTrb-Vmeg3z2ErdSLvf5XKQHTC_N9CVAzMifGp6HbPDSP204q6PGTiWcbknxYQ2XQywqWeviS-ERffRzMKGo9nitd3llzPtzI8dZ8ZsIwKo7zuwW9O-uznILm3p5y4Q0RF5UVrGNtN9P6OTFz1BQ31Qb8Xc-iGrnAUtBlMXV8V_Mqr9TE_VncL2sdoN39QQ7AAuxwmxntdywPTPKXcZiBMEmfI56v32VjIeqrlGKt-ryYGOSaNeF4Q0nzDtXwmUpqZK-L_6LRah7BUlTzhUhmlOIHE5KJC91oXgyv-cXpc_-VBfjQoiCW4n2ZIUbI5dfjCAp6CO_IaBDpGH-T6dG8zm3-L8U6S_PFw57adCuZ495n86khTbt6oPyw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f3b86ee3ce29-16118445','','','2025-04-07 11:35:45','2025-04-07 11:35:45','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42864',0,'cd-form-entry','',0),(42865,0,'2025-04-07 12:23:15','2025-04-07 12:23:15','{\"firstname\":\"Lauren\",\"lastname\":\"Cusworth\",\"email\":\"cusworth_l@yahoo.co.uk\",\"contactnumber\":\"07467596741\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4pU2xx00IuGC9dGXXQf4WQlBZtd4zKACCIogB4gDUTC5GtTqIN0l-do-c2LySSJAMwLqkTw8EzE7J71c3ABwsIFIavDZEdLjcC2M1UwW-ys_SrxGIQgMYG2s3Ka7dEc3QoLzm69MHYYJDFNQ4BxS9U8cs5GXdTBpYJGL0F0rMIO8oyI6Yu3_RReGBV8jB3YAdRQbKarW91dM5u_NMd_PO4c2mlFdjsPDVeNOQhgNhGX8uZHnZtkTznshScjbYVwC3w1D1BwsB9zh6s_t7mpVB9drjWDvNkjUlrwYlMYG0vQW9W0a8kXggIGMIc9xGrsACz81Ib4wJW3jB6gozi-OjjQqpCUxRIaXYOpNYFlojyOqmAwIPzlRbfSz11Yknu6REjRLptOq3cy53kuJbmKOgRqaF7aEcVjF57arxM7RqSQ7Hzzv--7hDOc8yuDHxfS9jurRP87ifX67_njyOMkte96D1f4C5kQ9qBZgHADTL147W8NEPP5uEBgnRhZE03cgH4t-q8bFQ06m7iptA0xzcpXtt9uRE-YutMAauTSbDSRDGy67YWP6K6NvNYEv2506H_W_cokuMPJTg-bJzf_vd0vPCb2ugYZzvcZPoq08fzlgcHAG2Z9sidROL1B3DZgLWZ10xznoIJv-NPLnRWscxgLcGtRCvBp6-kFB8qu8R5hgA-dZZAi0El4yxMaZUF8y-a3Px4u9FIBds1yPzFyld2uM32FYLwL7EXk8jytAQhty1emreasJz0Tg3cs_lMNSCiqMd7E_cOABVPPE7lCxHfi_ggk3km0boI1fRfOW2xmxDAOZAVIqSEIQ-aE8w61eeuuQ1SvtQV_Mggd0mFdXwf2tpFSoc9mSEbOntgCU5gIBtLIAnn6dGl3MvssixfX7F2-CarIqrSqakox3s4DD7nUuhLj4C40daBZKyOZuXMrLnnJt1YQNSsLi4r_aVw9wiNLw9lJQSfsJEF0Kro3ked8NCJF9LP_-8EFxgK5GJLz2ZJADt61ATKbybd63T4R7tp-zFy4r2uuwdkLGHWx__24A3sKm5suJbepZpoZi1kCuhqQqfcDBSe8U6fx4V970SUd-9bdV7Sk6XFKoJH3rovge96PMeUHWp6jLINCnbicz54mTH36IS-0M-h_lsX7cuokMqHBK7RSW3IUrEYWGpAS8BYNxO_buva2LUeWg_09dqCg_5Y3Zjxk_rVBcWSYNIGFwCzqdr_ULhFJdMZ5MZ2LX4rfqTf5y60egCG6G9HqwcmJNqY2lTkVBfXP3TSpGuh5T5Hz3B77tHtpGqROAHu8QfMfRNuHHdhqPkwx_h1TI2TXKVp9r__oZFUyFX-AcwYgDSHL08OqkUkquUndbsJ4Su6Mi_XdVxZSLz2ksUbZOQXytMmyK9D2WTZ8vZTVy5K1xKvhKML_x_lqr9nDjpmWD50rRXlCMyI6ELVPyecE7YlAhw2QsAS8_aHsvH12N75CbbgiXLe3WXFmAjkUdKTd6yz9Cm5B4dh1QfJ3s-fmyO0TLe4T3hcr8Y8RqXGr-fqjuIlzNbmUxkd-DcBrAp9j_xWqr_1Xee5_Lme6ZsSMyDQm6gccbIGNLoH7MS8pjrqCrGj5ZsIfIymME4IjFAwAFYQG01peL41WTawdiO65w3x_t3wEt2vfcsHmT5vKyn4tHdPKEPDBVwrawfQUCKOOcwXuFnxMdm9FvxXeT-keqATnYyxBmg5Zhufcq6yDtImlMhkITYW6_RDFn7wH-AsrzcNgirCjHSA9u3WQxvmJW6PS0VzyIMUZFrzBhwcTiI2kl9HvAnsBNYuMnuVCN5mKH3kxT8k0EV1BJUui8dXmKhHNQWlMTtgwxR3-k8uAU65KqMAlJ0lldltZsSR3d1pNk5fPwzEzBi6lNS6IFBYQkGgW_I5CKQsTdJidqjZMRJErUtVZKffyUwHTCnSYsV7XpGDueesVSlFz0-HyWHfj0vKEw1hKEHYoiVjv_GwyQzoZ1rzBZf76X6v3AgtSI7JJ1M_4FO5DF5FklGPNB1C91wRB_NZ-cVALWgqa5R2In149KSR2EdmvEB4LL5RH4VMaJTvvA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f3c3a6d42fe2-80466889','','','2025-04-07 12:23:15','2025-04-07 12:23:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42865',0,'cd-form-entry','',0),(42866,0,'2025-04-07 12:23:45','0000-00-00 00:00:00','{\"email\":\"cusworth_l@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"2\",\"currentpostcode\":\"Wf9 3pg\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7VtR-1E_e8TQ9ne4-yOWxRDA-VyD5QPuPIziXj7lI0PSMs725Mb3ePO_LVPe_QvyKp78y0jlI9hIe2RKDRKKBxI0lYBjCudwCIZMWE8dACw2h9N4evpy8vTg8eNoaUs-gIf-0j3MhvW2hh37wjfyrrn5QiVSErKDJ6aq_HyilRncYtlJecwsb2LHeDDt014jS27bk97cqu9bjh5-tV0nAzbJ4YNMppSY9YTY7xJrmvNazZUVxLwDzOIRoY_o7RKy0u4ydmh_P7NFMVEzEAQxpC3Thgd4J6vlEbrX9L-wvYwIVFURtUOB0B80Bii2RrJRKjgkUL3Mb94qIXvFPuMaz5-u26PF8jHErhQSqD19BzAIZFWSXN4KVckMoX-EfvX6BK5g91HLU4L7glMFXT5KePMJ0HxQRntmOsIZpFWvzJIW0GBYsrl2e6UIYUObJpIZEYZwYHUQ6rpA5XaOIt3Peq7oqEh_A1hcQngrtXDHjm7X5CT0XBQzyjtPpj5-k19WaMajOdPJefaoAwHbAXglpFw_NYoqSpQFY6TMIdns_51k-PBew7OB9kmVUxePCs7za4HMwTzCZI3NKYORaiCsHmGSUAR3WteHjKAdSsS_d8UFKOH57UtIOpIa036lD1_B75kn0w4UVtZVLiMFeiKvuztFu_rf9uk_tsJ-5CzV4mMnlwJ3XR03TFn46sxZeyDyg0qzakI78Dc4vtTfniYNJxlP6u0PhcvpuP-zubTnv3LIPpc-QtsL4eqPACLh_TBd5zBigWZPGYhe3fLLfvAYaJGA2vzPKG6K0UsK_Av9PmBX95g2Vm8fp8w1fluDRH_o4RwK9Mg_oABOkJAjCDobE46oe29v8Ov4Edp796Wk73UFDBSzPHpZbU_WNe22UZUvMy58WG2kWZcJtj08BGIMJuf1lfjxLztskPCVjc4RozaOSZFuaO4I4LjeYbnLbznzfnlhhU3yrw2kBuhy51AHHjDXpHhsizLssicoOwQmyE542KZzbJcJeB8i7UlWsQ2jt4WTvks_boZAsYuSzDRr52TxTDLeRHYlgwqKKx6nBBemLzjHcweye3J-UvRQaY7Wy3RvpImSYDQr4gq6S-y9mAIdBqDkibwGhWZzBKQzkjjnoA2GzbYNeZnYbYuD587a3exWJUpeaB-uDqXQollEUv5uoWyEl7QsbDDuv0BLmyRIV7fiWqLdpsrDfbUeasWkqEMjgQct1nXiZbig5MiAlackbD8DjjqZ1IxP2rQ79v81L1guEKxVVeQJpGsE7qjmOYYfGJHM7cg--LIxPji1r7_8M6Vysntv-N3e0G-W0t6K2DT_-JEdAGvmjCNId_s9lAEPl-a0GPmTYazOp4tlv2DtYABvwjOyTKfz5jEKxR6ECpBGbFn8rguPz1rIykkfRgf980bpDITa5GUYAvy9m-o9B7ju6y5kOp8DZ9m0ba08w-N-5bXzDKd3ishAlK8McLurWyabJeQLhQl1RNwyO_0Lga5vaRtkZ8PV-d8yuMnKMIeB6UGw6Ov8nUz5pP5bSZzLNLTS_79-8CiYKq22aTcJee5aLxEmiEDvWtVdkvxTed5yUfEd7dQUkJObKlfHfFfiCKd35t14Hx2dhoABSJ07oWj88WdXkQkWUNvHTn9TmfqCavTHAceuZ_Z2IxThAUANC7cDo8GsLfXOXobHG8lFTnjmkYQyFKHhkmnehwgqgn0KRejF59P5_E-5WAg0HRbwdUuvcFFj46sNuOSRck0sfEK2haKr7F6K5It0B33ApLJJY68a3WNctIVN5tU-QAC4Hakz7QXuOLgBKs7SFc2Q4BcgU1qTyjHmCPh_QdwVpWKq1HcW6hVw4WomXlfJWKoIQiE9oAicypsrj0q6dS5ZrrTm8i62aU8FKbewp7KblNjIcOOLESjTkFh5TRXi-vXE7Io4Ek2pfTI8e741laUuV7Kf0c6bjvVBIXiDRDrASVycBkoY05bJty0O78-L2Z3I5WhOLhzTzFQ_JRs6KmcjhAM1fK4qjS3SdIX0h46SrZTxg1d1tFoNLVnucn-_bZxeUN\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67f3c3d19ba4c6-08284261','','','2025-04-07 12:23:45','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42866',0,'cd-form-entry','',0),(42867,17,'2025-04-07 13:59:24','2025-04-07 13:59:24','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-04-07 13:59:24','2025-04-07 13:59:24','',42536,'https://biomechanicseducation.com/?p=42867',0,'revision','',0),(42868,17,'2025-04-07 14:02:20','2025-04-07 14:02:20','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-04-07 14:02:20','2025-04-07 14:02:20','',42536,'https://biomechanicseducation.com/?p=42868',0,'revision','',0),(42869,17,'2025-04-07 14:02:29','2025-04-07 14:02:29','','International Training & Education','','inherit','closed','closed','','42536-autosave-v1','','','2025-04-07 14:02:29','2025-04-07 14:02:29','',42536,'https://biomechanicseducation.com/?p=42869',0,'revision','',0),(42870,0,'2025-04-07 14:08:14','2025-04-07 14:08:14','{\"firstname\":\"Robert\",\"lastname\":\"Coleman\",\"email\":\"rob@indigofitness.com\",\"contactnumber\":\"07970416171\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7QFnV87GX9WUeQaaSpB4q7J-V94pWM64n3TWKsayOfzGKO-G6Jo5uF-cuxpmR-B99jHRoBK4v97NWeqsLR_o4BlOYcIC0Yeaf77GXiOPG-pwG3WRBixJ7T872wY4XM3xVTaijcNSnRyh_pJi9myZsrzMUp3NX-ajoSkr2bFcKTuthKTNnGpHK6uuPLvJ4GFAy0OiouwHwXfT4Hjah0oiOZEfESKQwfRwTru1TiLrbebTQoe5Sj3u5e8h8ophGJO67Rb7UgZBZ-5x25m7L3O-OWIaalCxEIqAXRe34jxRqRxZAOfnV4vy5B6--i2Z7UN6FsjAI4_LF73-0rqaLVnlhps4S7aKmOjXiP3GUPeloj2Q5zCjMx8_VN3fUJdvNsYLetWkvggD3ObZwNH1PuGO8jHmn4ICmivS4-E-aX2BIy7tP8eYM3S-e4wuSAukS6p8eVEg-HY3FYREAHmKFjwew9KLNi7-_LRZXqSKD2Mr_zhuZ4Zt66w36jgvzpMswZa6wc0-ARgm6Lwl0qqjgePum4PDatcNFyVUVxZOduROHKJNpWo1Gauk_ffHKkCtESoEMrddTypP5_mLCdtbiu4lottnv7Bk-GauyTarz0B73FeOIB4aZ3MnnHetyAGhdWu4tJ87NemPBR2M8fLWS00K2WQBKMRzM7CnR5d4UvkeS-1BwXEpPwAeFx9JYHI_ZxbgQ-rjZF5a5nztVFw9vp-TypIpS9hmh5JNuL7-uVOghiLrjKqwe8_0M1kJF6pr-sb9tcl3ErE0RBeOYbS2wCrgDRIcaBtj8ItH9UXwEBn4pJGt8Y9bdyW34O43Tmj7umDQtdyuIRkIOuHrrVB3jBNvA5SoENBMiswnTpd84dNDlUBqISyQ-WnJFP-4D4waaTt5N26P1EWbxVQNtVi4UT4yiy1OxO6-LyMk-kHl9pcvWyAODafwIknSD0ySL108dFHWnpwSq5j6uvs4kySjxm6W7l0ot88oDz54-jsTpgl3FU7LNzh7XxKOmRmoucCVcJX22M3q_e9U2Yj36UrkXsrqn9jabqAEXjwAGrkZUXH8j4cat4AYNMPjqt5iOCJ4pz5elplzufsczLodlDSp1E4ke7l_y1dMpOpa2Ewz_Tb40XxdZICskQaKjaTkMozAJXdejJQ5ZeQPvIIqB3TAAoFyXl0U-OFppmGL9vxMtyJauNt5guIlXQM2DvRpph-vBK1Jjl_dXOTsdJp_00C7WB2E3-jsE_Ku921MHOE3iLYjqZJ3QGHj9C0gC1PE_vIJF7GuK7UhUiFvwg1jfyBhpf1c9sJj9ZQG-h0JrWTfwWd4sppxxKwEBw2-zowtiZxwLDhxuH04yhLDIKnhteIE_GFKEE3u5NJBrZPgb5CsCJ1mUZBRNwVuDqYxZwwvSmMLvV7Za2CdfTsFH1dTjW4a0spHW__x8UGCZ7t6ZIjkhxWG3BpMxubEWgtwUnD34sj4pqk9bTkHHiqkANTqmJ0jC9O4RYsVAxkEZnyLTL-0dZqmMCGHLGY1oJWAJl_v3zujsPObkWtC4rSpPYiPWSwlgilernrDqW93zPvdWuHUDgJZkiRViU_IC7Sz3z4nxQ41IM4WJZ4A8-n35x9nHSjqD2esuNwgFQbxpRp-QydYu65f1F71AnlfGGjMaLPGocBBokLNlKo-OyHFQHORi0ZQg72WWUIfYJRBzpXA8GcM7q7VxV_MgS8AmBo7o1OJNlCURMe5foPDgGSShwe-0jfyQbms_qBKcT60Y_KsSkiMb6qZHUb-DZ4CYeYrIkRw8XmQ_4MJjvF7lyTMgrVt_cTalLjK9wPA1ZgvWRFTTsooybgmnK8HopHf6fKcBAoHhOgwXlIPXK_na6LHw8cKw3wqIHY_-IyuYMF3UtMhnZRvgxV-NAO6cxgmBr-YC-KDWbd7ZlE1M1P-lYl1WcBQmp6btEiyxQCEeVzvshYnatbHl5eblsZylvNzkf5Wt_FJB8I1ToRontn3K6WDq5XaTQejaFWLuZx7Gwyw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f3dc397b3169-21005827','','','2025-04-07 14:08:14','2025-04-07 14:08:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42870',0,'cd-form-entry','',0),(42871,0,'2025-04-07 19:20:35','2025-04-07 19:20:35','{\"firstname\":\"Rochelle\",\"lastname\":\"Wotherspoon\",\"email\":\"rochelle.wotherspoon@sasktel.net\",\"contactnumber\":\"3063808050\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/?utm_source=chatgpt.com\",\"recaptcha_token\":\"03AFcWeA6J3Nec4v_pPuydjsMR5-qQhLe2JovDZZJZjzUmEmbYGuhDM39HxFuBe5QJn8f-H9-IXYo24e2Q_BZtkNfGNBSfG46XF-aTQHIJLfwL6G62lYt1XI9_DYxi0kCbMeRuk3bfnzbj0Gfc8RVlTZ7uOxKnkJV7wVu_y4nyJCA3Z3zC5CBnI5Zl0w2FF_OTfkwU-Puihrr8Exm0qPR0-uNCOjQuj1nsxfzYF_VwAZbo1CLZxnrFJ1DyW5hZjuPFC8UFXv3hF0tv_cTAg20cm7m81heu97ZZi5NC_YxinUA8ktGP1L6p-u6fzqeuAlBxB1ANy_y7WtHXQBwsmbINLWUCj0L0pnYxFnl9QS2WbFjmfDZyVoj2c1XDHLJYl1wXM71CyBnD4EkPLwV0yyHV-XIafGmuTNlC9bycYXaPbezQ3PGB64uTeCYKFl6QXoTUgbfGqBOH9fGL1bEfEurTwFee2MANezSGGU6OCORriO6V0U6ArSqx1fCwU_k6viMEhBrs2yLo9VHFiKDysi1bcwW7LvVhds0O22r4lT6VwVzNJeMCnJpqXYhhn_b9LEySzpRDgTxBZXUMoTLHpcYVku9LBz2MEw_Lwhj5AgMcIIXLldaqVP9cQ3WqHeA9-2diZW8XAt9pR7bjHHHS5tBgla1N9mz4I2gCa-YrHuaqBEU9mntkcU8qMk1ltMZ_akQolFI87w7jWdOPuDbPwI_di50MSLgcple6odsePSuuGAMaWmaNNxT3GatV_Y2dRRh8HaEIfXlB_9vXJcM5fmG9_w1iUTJ66mFHwBlD06HWVtjF51bSevgmuIJb9ELjXs0e5gDHf2CYOMZju81JgNdXt4oxE3uOS4MVzj_4ITi7tofYKtnEZUPjCbU-wESvj0fL-gh3OkgAHrnzeAIvuESlFZtGiZqVrN4wg0nddw1J2fs0S9kcvjho7C2GgDXdnM9j7sy2d_JhUE945cybSAomMk2oG-Af9jsKNSHuvceHkKhgdtLy_BFakUT0Hmu3K7n1R8MGnKR-0IF4eQ-HCE6jmwtpVM1fH0zOduN7336CrfD4_5ifhcaJ617tdNI8_jBtVUTXweJZQdmX7QZ-DSrJjOrAIrnnZcQyZ6MLY2Ny1ZaEPEZvK3xrifIVKJzFdg4BeVouh2xEjOosecMjKzSSGcuyHGIP5SffDrk-jy7OwLfE43qaTXdnGGRs52LZpDrveRBPUbuYSpC5EmTcCUfFvdj2I2ZhFyVUU3q9mKzYw_Scwm4PnjhNt_L4zbkZvMJbKEyXVfLOVFUmc1IehHz-4gtEHasXYjBkKr-jt2SqYd1jhdljpONUpLsiGw_aWbsf-JKq-blIAj0xGkWno34njdmfwwcglbQyokBWLoh5Tr8CNvSsvadW2D4PnQ5RLzlqTXBTwA7HptH0ADC2ht0yrfxJ3YcNVEyBxlTssTMvj0nuhWdIoHYGihlvk_-Lv1t1Y4xYZJRleE8_S9EKA6f5bW_IIIxd5dC5KcrMkVHVthry1sknVgRl_Fzlh6XOXfTMns4x4CDIbuLyMzfYxHDG2i5n4KOzR3ODC2y2CXyHmIbXKvYeValv9tUf6qWcn-3frpHylvc2QvshicghsrnuQNO7TiS4sNSViemQ5hzcd3ugs_rjKns3Z9e7XTa6Xg78IwqWZh4U-Mwd5VfqpmzKDZLBKj4CUuoRkcoaVtFMA8eGxpFZMgBERJ5p8KObxZ3ZMMImbpq6Sni2nWC572kr7Rsi1YS6-x5JTRGqboxqAFo1ULrvd23PO8w0608xXqUKImNlEW6Lf7UQCfEHmhC1t_iy9dSmi4MFIoarmnlXmvfqBVMPEkXVlWQD-NtwmMBBCembAwbmqRHMl-mLWwW0wfaDs7Xhi8dnTmuzLfoUArHdJLy7dvUa1tZ6UXX17ABBP2PpmQpiBFXl_XOMVaofjgWujlNkqNAR3Ko2GzopqCJ99BD3swAZ1SgkVHXdrgUoKvWqKUa05h0kg3LazPx7yyQrsGFsDxdL_7-zU7C2eHE9e2YFYi4HWmiy3jewCxUItwtq62tgPdp1r66ZXjHb7PXnZLn3lo6tpBpDf715eL0vDjAgRGcy8Q5ziJT5hDcpanOTFHoDL7tnl-kETbJqvK2MSnkAbtCTwIBB2y1Uk8v-CAlv3_-1iAgIRKe9mc7B9DPTghiF-5pk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f4256ee66900-34776613','','','2025-04-07 19:20:35','2025-04-07 19:20:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42871',0,'cd-form-entry','',0),(42872,0,'2025-04-07 20:46:42','2025-04-07 20:46:42','{\"firstname\":\"Stuart\",\"lastname\":\"Brown\",\"email\":\"midlandshockwave@gmail.com\",\"contactnumber\":\"07989507925\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/what-is-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA7pXioKyKldS9wVTj3e8MJVy_xa6PuH76CAAoppOMdZhE2deLTIAgfYAMWVWRT6n78ei9RWpQIn0l15C5aZa8nluXT97e-AfyvikJQ9YY_EixLzi7NQ02Mwvl0IwL2fGJAQWCrNW1L3-kHc2MKoo06N9zT_BCAEpSvmIxpDb-si1p1bshpCLZhmyOKSlhm-DfokQQvU_5NLrUItC0e19ahuWRGYC2gdOnF-SjvTgv-Qq5eebNYqgvnmKrXFUHyx9ceNPtvDPCOwoTbKaUFjyRIDWSv3T1hoHy8SbqwHguRndmTZu_W4jYeAk0GKWB5oJvpeaWqZEO0y21ya_03j5weaZ7pRfS0_JTmClU0eqTVKVAlUXjweTel8l9PwZoPxHdZiEVU9xGmFYgLwjjGCIrWFm5IptXo_CSR3AXHf5MZ1cZ5fmBs7oWfOsBXXB5Au-NJws8QsKm4UBL4eH0rBTmgwSCQv5o4DDTrRkWa7p-oqFpNfcLNw2MmmZVLPvxmSIb5vod8OYzwaaynzgllwYuIfW_dM-khIVpUWMIzJuAum33meXO2nUv6xZ31uX1xDz-r79bQlt0m_s8Nq9qlsCIZQVqfcaDWaA-iSgfkYKtDJYVdBGNKRW7qv8apxgVqQ-ZoWa-ICyxnNj2oybK3x1ZOMxL2G9qL3JMv5mpy2CEjV-05goZtLJlaBF-c4FgOikyAAPgUiJFHHRLrN81JVq_STNPwkMs6IiMTolRrWuBZ4HQhuHhzcC08YoDwiT4lnR7rh501g0aB2LRGAOvwYohfcUSWjPRMV10Or6AwQ42IwL0dGw_aF3f0cfEV6mIB0eeCtlb9_tXTwT9avOqvFqQfRa-c1RzR2XwzepOMC5fRNhe7UvQnBaNi4CpEFQNKJ8Y_4AVTFumQqkmUSooGGo_yjotezQFAUCi-Q4arF6LClpD_G1vONYsW1FumymaTIbmabzUf-PbT0v20Gc4ohsBYbjDMqxhZhOd2Mmv6CMNpuD_SasAC1p8htmBX_e9OApEYbswc9kTtaav0uBWu316F2Ia0QvCOWQcFrx_OjAlRHSJJSGXYEK7Xyjv1ChuvAOzd8Qsz4ihUhpmg4S74xmuN6rzOcL8M1ceNfzMHqdsCNdAmOYF9ZC_OSL489W52gWG9v_u_nJcU3X6ZoTLXQyL7czZ_TMHThPyoop_naSx4NiQ2KzmtEG6bNLWJFrqngAZhmIwB9WTJQkSBU-NtHeTO7QX5YwL7m-quTxJ-ZBPSOV7BjnFS7aaTsrAgws5kKxiTyrTfw8NXxCKVU7-sDXKTXWL4F2KU5DZmp-lkMpWhsMY6bqtEa2V_nIqQEx0KKzdgb_iCRJEtmLEQpPPrtqyQY8HdQ5SLM5aKKwFriXshK4I2rmEN4DwkXv1kw5pAeLPL1qTLrC6KZaZ2E1LeyPecjPN2Y108Qav6prEh270R3mQS8H0KScXK_eYrvw7NEXeEvn7q-COe_NRZWqaoeVl_6jPSoZMeT_DQ1sXYTlbKSpt9PqZN7MURQV4-oPtJ6gxeWC01l59qN-bZhHUd-UneWzwjHAVV99Wfr2rHjAsPp-DKnRvxl44bVqPSIMHSPG1WtHpelsm4-uqb9jQE1mNlXmKUGlpKfOpLZm5QFKcKWOe8H04MrHirCdFK6VlrriOyNA8xd-x3M4XDIUER9bmEIIZB2SG-ZJYIqm7OgHNoa8i-_SGSsPc2FJE4P5my3lO-Sh4zZAxCCc_zxBzqQaROIwpdMTDufH7ZyVYGKMCKD980t-nTb4hHZ-pgFAD1IdalS0g6b4YsH1qcOIUHfX-qGoJw0malRMOHoJPRt0Icn8oMS7SQmo3IEn3-21DnstD9oQKuc8fPBTJHs_uktgdeQWeW_Qia_sQ0LPM_FWM7u-WiubmxqxRHtjzzp30BVysI7gJIgG5ePA5seIxj64aGVxopgN3911LPDtmBmb3RCUWIhsY-M8sE63e8y_TLJOUmA8vp9RbriHYHVl0IT37xfdti3Gg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f4398dcdc1b9-59715877','','','2025-04-07 20:46:42','2025-04-07 20:46:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42872',0,'cd-form-entry','',0),(42873,0,'2025-04-07 20:48:28','2025-04-07 20:48:28','{\"email\":\"midlandshockwave@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"4\",\"currentpostcode\":\"B91 3SX\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/what-is-a-biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA5MRCjHdqTtM6qMjy65jtJR7ihclpiDI7gWVdwXf_3CTOE9fyBsI9b7EvaXa6bcTWaOsfSApvnRDlzmLEv7yOld06cYA_ngjNgMMcf8h2I3-Kfw0O-pPWNRnjRe2QfDnIQxr8A0V8YvhW1zbTRE4LClaZ5qVId0EgHzif9Jlt_ephyZI56Kw4NsAzH5Fs1xx3KhZa532HSN42u-qgoCufiXYnncBnUFj3EtYUiUukj49_uDQ6AtyfzGPBusCNpJXZYArGwhYKZ9HC39TgHCLL6JnTgmf55iAuBTpNwY-2rSIwK-SDXdR_IdWBCQfV_DM0BEGdIP8JxIiG8sER5-YHCS3L6v55WzOT95-ldHCNPyS4OdGXUOnZ3OIhr-UuUFoijaONUT8aSDeidJHBZFYDxMPWHTjdu1Qdj-tenoIiAZC9DNXk22vBeHaYfNzBHk58Drov15V4Xp-z5pnxK-VVJzZTTUV_8Eza2QxF2attyEU-WVtWjF86MW0zGp_g_IUunYNA3VN5EqT68eUXo0_J3UGISuxMADupfplRITqqJ-QqX9y9UXOaFUbUH6YzER5qbclCXftneTMKKAWd686HAi-lUIa57JBIJF7je30bDXimna_FxwvfHwOUWq-mW9A0rc6tEhY4770sUcCbH6-LneQLEYL77GPFMtQvaS6iMQaqo9Puur5Uk49IZcydlMpvPzNqrsweLqLz2QjqN4oBNKwtqv-b-yTk2UHckaC4Z0s1mbCBMIOaMFsUbp7yFyu5aZc96-LnIgHDH900kWXhBLREBQxI7Ess6jvzdbllu7JhBuXUh5rYUyhR0vwdaqb739TsQravkLP6-8Kmi408XIITwBEVlFyvDmigWk4uuzmTA9lkG-QlmTQZ68q8tNne89M--BybovrKgSzzjW0pfz6VkPeUWnNcr_FNxbqG23fo4H0rYTf5sbfQOQZ_hlR3ABQLKYAovWODpcP2yES_ROIWD2dbuTP8I0DR_kYGoUfG7RrniO3zZvK531TguePA4YcXPbaj0EYaqcawuDPSe9wWyOcpvoO-k7dmEcInnkqpz7IuJkXkwGJPS5lNH3H-8EfweI1nALEUbPpgEmSkD0_1zaiFzywKhsI_ZwQMyKIrhP7yJozmkwunipVe50rtJ68S_Ht-_N96G6Jcxi5f-jUJWYclhZWATP_Ovn223M5_1ZsSXFnbnAf_W3tI3AK5ooabeqtB7jGTmiCKo0oi0fBWQKUzsRI3TqnyLDJwxwRYNqkX0j9-YLQmbuUT4xIYS1-NHzB3HDYgCRsp920l-XPfjeLgJjwlTcUXmf80OF7aDtkAhLXIMo2NGYqy8FS3pzCZWRtJMhJXPXLVaF7r7SCIL2LYbYSKh61HEuppY07z7v_csAFitjEorw_IG_hu-Zx7EYt6dR9JZjE10j8i_FM323ofNrAGOaGxAbnbN2fJtyYRxhrTCLsH5Q3cVN5e-ynvhiEjgW3nhmvPfJ5zFXxukYvln0wqH1sigUVG57LysnIFAg8EdFIqhR6nwh1LXgSTS3_rTrehZKmjSWJ-lo9WcskmQ0eZGgrEABjoQBQHy832V3WOTC9Nd2dbOHXxm0CA8QkrDYciIqf6Pk6r7WmNUT3NHE53a-x_0PQCw6oAlQefmyakoLI0flATDQ1IYu9hdZg_8996mfMGMPt7wg29AzXX4T3xtoyYOy-OeZfVEGhk5YO6PsVgxLOcIVBcY0XMO4ZZt3EIn9yPHn7_gtuYIWLpnVjNuVPXIoiUJQXm_p3GTmwDrkLkkfVePtSFuZN0bnpZIKiE7e3wMTq6PJgTxab2EJpi7evUXlZswNj8SUNHmakpeEaIEg6F9OW6O0Gdp2iGgM5HA8xAMyKqr0Tc-rI0O5hSrwtzmZyjhPypG5WRlzJ5guT9qwNNTnrhHEcAluz2SlKxVuzy3adu4m8MpTTvT3yIW7owrZNp5Kmwo066_wThKm6FdbrsBtOj-4K92Jxb5oRdO1-JgRr13bQDwBaYBiMxLPxEacvwK3cMrv3Icw1m9DlCDQE7C3Vq2VHin8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f439d7e5f239-08203085','','','2025-04-07 20:48:28','2025-04-07 20:48:28','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42873',0,'cd-form-entry','',0),(42874,0,'2025-04-07 22:32:03','2025-04-07 22:32:03','{\"firstname\":\"Sabrina\",\"lastname\":\"Eley\",\"email\":\"sabrinamorimeley@gmail.com\",\"contactnumber\":\"917684558\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/what-exactly-is-intrinsic-biomechanics/\",\"recaptcha_token\":\"03AFcWeA6VF06CGYcnfd4ciPPXJ2PnFJeN0FKaguzTFTRJYS87T5LgwUW71735rDCG2a-UbqY_eI4V7QzUSLGwwNCrVtCfi-H_8Owkrgmxxvsh0r-9GhmWdxdnjtOuqV_5F8dFajcfxQJ5yAvs7MeLW6vyTPkW7GBf9zTT2V_ZttRW6lMcaffutM7vAiLAwDobe0yNWjSybyw-1pbccv01VKwusfy85IRmIgGlKkNMxUNdfeePA8H3QQ5N9lWXlGZKIExwoLW93yfXr7r10ONh0cETD_qZXemlFSWUjZ9BjRR6SJaUPItcaizr4RxwXXS27_ROUXgLXvl5Sv2cfDjn3oj2XftsdLTUoRAGIPOO1BW7qfsmuco4gdfMD12C5lmdGe_vR3sP1Wkk-oqrvzPVswDKiRYP-uUg3-0BMA35K6t3frKh0VCmfrvOE_Bmvith57Zd6WNZyX6BZs_8RwP0h4aSfUAExCsqZT0rYTXbWQAROlKuE4Z4Z5I6YlPqXl-6DTUHqysArueKVWIFnW8qkWajss2iNC1JfPrVFUV_6mH0HLylpj5jROP6ANfMyXB-ZHKA00Ynn9MS6NVZs4Cu5JtUXy36oExmPa47xQ_2yRl2CCiU3NC2z7nksHa7k-o6qHlJHbQPp5aZKgzqu2UVGXjPqxeqtiHzMNL40HtqYSg1AbEFjyAZVLy3d7lPh7q5Czrgx1ZYw0rzXYdf_CIWF8pj7OqfoZcvc3s6RW3JZ4N03enWkSx_PljRm8PNdZlKp0_EHNY3PQVwNTRjYI4o9eByV--OB5Ha8POUJ40qWXDYmzSBzPHGiUyH9z85P1pcZxxO9l5SluUtwn6oVv-7B3-Be8kmyhSNYx45a-14PIda5pnSTs9iycgel0y-yI_RQeGFlAINu2ofThxMoLWYZkbkRmYwl5Lv8T0aAuxXSJ0NZyqzBvHo3QQctfogXk4DPdv-U6BroEdiNE3mk6l5CxHPSTIkiNwSN4LMX7n0bOT279EgPuJfoMt5-r3T7Dm4qJQ3SKSQWgC5Lpd2cQYE0cVQv-BhEzfOkETlAz0SRCcXbUlnxHF5Phi43hnm-07SvNvxy-myfah2z_ID195cfFmmR7qbX2q4c5wbntSGOUqnVs7F-xAfk48lo3pjbJmDGoPWS9oaeupjhVOLcsNFxkKuHWw-62ei9UzKp2O7LfJW9WA30Ojhs00B8AItzKJZ0qvRA-by9WGEeUahdiPSa5hkiLW4DHfsWncZVwuRClb1jHN956bf8cr_ixl6SWkcR4EU2qXNOg6zJFh6-B62Ne-jZ3hWjHNwlOM4eJzsWCisLpD0EchVILMgmxrsq6ZkDHYKVZfkz9c-y_a7QJIcEEDcPii-PM2MMs6KOh0s7icxU0cWPMJHzmlHBEElJsxbULSwWa9cm2xaImsdGu2ND_wzNVorSlPYQTK5Oc-xEuOgZsPJ6e06Ms7Rphw6S3mh9txaIHErNORBRdT8bUGy42uQTdMzRUuGlWVSZGfci3pHcxlalJENdqjTkJseYHzE_iZ_F7zqJYWXd1vSkZWtSPtPqoyb7zdpIxy15qn7KvIa2MdPg69jPXDdXKBuMnjRDO5tUvNbR6B1vv6EiVn7Kd1WcnkPE_PUrmRFGMce7g9IleQEM7eiQQNPqkwHz6_iMgijOJdAHPzsWi2O4exno3A_J5fa8uHPMaOkepLuDaJDes_tOvHzIgfzEf2pGL51K3zPLjwJG4-8e-q2KmB2_UaQPPbFnZhhewZbnjYXXl1Hq41xiUWvVOchiYOCofLRPUpTuVsHSjWBK_XahY3BV6bxbTSfDSDtX5B2RfBKbzNOU6HQzNbUQi-q1nhE0-NngPFhtHcEYx_YwhzDMmCFtMwKEYaioEiYe6PV_SHCcsjr3ulI1hHoo5Gm25MlkeF3uKoGMI2Hd3VpuPsLcqfivgW-oY5qajefQsgyna1UwZCUld4BXH7oRrY82Rz7JucQQ0F234psSQaVTMVVwjhb8yeG8l2g3_2aEMkokjPKcuDuKFITpFwp13v-D-_K9PZEcF4ImheuRFqJmepd1dIbyNg_sKYRkvsnPfoZ4mA96jwli9lEcpXEZyJumoJqwjAFGk7Fnv5c_NukddpQeZdidmDIBxRR2hJDCtjn4-dBPnZPWq29_zbHpHTJ8nVehKbXyD8ssViXig_I9DsiONv_CgRHO0i3h5nyPib8JyubS5KKIFvBySxwIWyV7pLfqdVD6yv1M2Yo19xKqvoV6XTRkd3XTmkzldkc6aVOLvCnHuXig7T6m_BGK0yoKtD1QEWaJHgL6szdTvSg5TgUcg5kY2bIlSW-I-LeEyny8tsM4fouSsx6SRLbXil6F9vhwPGRkpq8BACGyNH-5ERToHFhQSPP4LFu_SOsX72OXr_ExN-k6qsvnemaIwEkNlUyo9BEUPy0MFNqVGrf\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f4524e6125c4-33870996','','','2025-04-07 22:32:03','2025-04-07 22:32:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42874',0,'cd-form-entry','',0),(42875,17,'2025-04-08 10:51:32','2025-04-08 10:51:32','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-04-08 10:51:32','2025-04-08 10:51:32','',42536,'https://biomechanicseducation.com/?p=42875',0,'revision','',0),(42876,17,'2025-04-08 10:52:09','2025-04-08 10:52:09','','International Biomechanics Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-04-08 10:52:09','2025-04-08 10:52:09','',42536,'https://biomechanicseducation.com/?p=42876',0,'revision','',0),(42877,17,'2025-04-08 10:52:34','2025-04-08 10:52:34','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-04-08 10:52:34','2025-04-08 10:52:34','',42536,'https://biomechanicseducation.com/?p=42877',0,'revision','',0),(42878,17,'2025-04-08 10:53:03','2025-04-08 10:53:03','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-04-08 10:53:03','2025-04-08 10:53:03','',42536,'https://biomechanicseducation.com/?p=42878',0,'revision','',0),(42880,17,'2025-04-08 11:53:55','2025-04-08 11:53:55',' ','','','publish','closed','closed','','42880','','','2025-04-08 11:53:55','2025-04-08 11:53:55','',0,'https://biomechanicseducation.com/?p=42880',24,'nav_menu_item','',0),(42881,0,'2025-04-08 12:10:17','2025-04-08 12:10:17','{\"firstname\":\"Nicola\",\"lastname\":\"Williamson\",\"email\":\"nicolawilliamson@hotmail.co.uk\",\"contactnumber\":\"07931798593\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwktO_BhBrEiwAV70jXpyN2CiMA2R4FMGUEml5c9-SNMplufrKJyQhrKeV4brv9ivZNLTNyRoCjG8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5F7Yhz4MlD6u1SN8C1kIRCwCZ6rjT_NXpkDvzu28iAgR4WLS9KblUWuJd10SImomSdNEBvyCvagRt-Nde3IjDzxqRjflkRfprC_1SXKxSI7cZZ2_WeQ4WAYW_vm-RsjEofklYw_cGY9r4ZcEvtDZd5zNdJ6O8HC8wMNN6SATpC2JHYwNOhwy2npKzTHKWul6zFZuBx7IJCjM5fFAlbnVNv9DhX86Xiux8k9_NJs2N74xXfr5dKxEh1MwKmzt5wAPdDPedUwhYGgF_Ffgj4NIIdOZEMXUS0REVDayKjm0PDVkz8MFRtpDQ9e-fOyL6w9auxuJnyoisPLxcsRPBa5BlBYck2oPo4Y0Awp5Xz7ue9beabAjOeTgrYeqifBoTr6rr9-BhNmz7pDJCWQq5jJZcWPf6QUeuRnyqD0bDIyVeH_jVEzU0WXHR4JZN012h1eYm6YXHgNGrnYDa76t-AEPOkoqQsRFGB8gBgE0xjWzr4LQZJ9wp9xqrrnbzf2uCZbeWlfuWJOFEQXdjxhwtnCG_R4uIEsfQhpfma2R86tC9auIEI3REfdil4_phgUJWdwyyNBtTmP-CsyomHEj7colwGypQR1lSP63CS2O9VoSukjYXbfQ11f3Rn9BuW1Q4QVWhe__PcitoRSqdvCt5b_4JBshn8OqWyQUl1fQ0vGB6rhUE6cSrqRVyZ6Z5VWo4UEW54KMyuqwM5z_llMip8jG1-FT7nRNXiRzHZgGjtQiHVUXgMZho4x2LowswA2NRygEzLG29Q1_F9Onln9dUCivwJFoGZ-d2--_Trev3ntKaPkNJVworZPRQQV5id_GlC_IOX-dY9lOqiyhIaITui5lrrKH80aMjnPn4DMNacOHY9ntKfweBIC60Twqo82J4JkHIBEEMaU8xLlPb-_IzHoN0_UFBrmrJC86-4WaNrbgsbURGb0MTpIIYIzCxJhq9j_cicoMSxz5mjvqxIQvTvT3kPD5e_yzrcbjv8EzLVDjXaJ9ohs47i6EzXy1wij2OkEOna56DjyJHglSU7wOEwqTtjyj4bAd1adk30tZ9Xfdelfwl173RmoP8J0PQDY6mPJrU8c_OgmH8geSDhRQHdAsMNDvezRiE3dQWqY17_mQsPqZXaj-BZN6TrpEfwrOb-yimPCzGxub1tCK7aWFMmqCCO_KLa59fiJL5dnJxw_ePa8i3jrDZGntbhaIdvPI9YprFJnl__ENpHbMhit-hzUEZN-4s-4wZmkRBf4eFal4Nvbdshj7t40CYo28gykuo59z_aZlMJCuyqu4FY0Ka80JdBV-ZJODCdm1WpjKuFiut4OUyqwJiEPRecTM1KxegylHvZkicjPRSXRelgaM054SRZqnPpRPXfrMW1ufN-8T74c5m4UX_wJK6K13qiKkt8KDKOjyxz2wwl6XKrazbJvcfTBJuhn1MZsi-wz1IM4efuQRQz3LJxlahSkPC5W6WQVyIC5jnnT-sPnoAU8x2bjeXtzrZbHMike15rPXH69MrmyQHLnBrwdfCpgEL8DgtqcSlEZ74yMkEt9bu3b6Akv7DjH8Eff8GnWulbTCUDljIi_nm_p1k-sV3rMx5eQfNeNAZ0Xd4S7g6REXNrd7bzfZXWZ2QTKjJnMcKy7F6aQSiy8LCuF9LyrWpWqNkBNup2_E3s28EqxoiG6sBbMuL2dd_4CRhaEYoO7-EdL6l6P5gilCzBUay9N5BQpboB6iTBzaNKY9VV3ibj6VV-9e_zt2VYyBpbxIAuCIdawSGXOQUraA2JlBgNrO0ZHianp_CayfrMTmWoO-3p3mz2WbTBoyrRkLz6AqsPmSBJMk6HPel-2xkBIvBr216TstSXjVcWwTAsYYn_pGijlDiJsFjiHTZ0ObtgDXdAwjEFXV-KiP-4aGw4E37r9GQCx1UPSpEjTyVpzrEYf5fpcqks0KtLchrcy9ew3OXYEDNCo5To8y2RvXEVSLyzpCm96dk1-91PD4x15132lER-4aonhJvR3i93cbz9znY5rgBAdy9pJ0juqRWhHUWdAsDxGzfaeecJgiJZnvUFnkMAVNoAzgyeUdVLyilK6Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f5121abad8c3-15451771','','','2025-04-08 12:10:17','2025-04-08 12:10:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42881',0,'cd-form-entry','',0),(42882,0,'2025-04-08 12:36:18','2025-04-08 12:36:18','{\"firstname\":\"Nuno\",\"lastname\":\"Mesquita\",\"email\":\"nuno.daniel.mesquita@gmail.com\",\"contactnumber\":\"07594524206\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA63Bxd6bv9Zm_YPpPeF6Se0W9oQ-YO2IkhbdIsoofprZaYRz5P1c8G8YVaPf0ynbOMWLWeSElcXRqWJHaaaFSvaA3h4g02MGlVPHGr3Kbf6UhskXKxaRtXAkaDeYeBt3xke3V9boX9CG_sf08-vpoGQ8swESdLvhxJjbPYU1WI3NQs1Q6AkKsVvM-5JV_hqJnMPaWj6z0K6VxnYENWr8DXAu63wRfdrRBCDfEDPewa9E2TEKbqsx6A4ACJ6pmpStu_IaM1fPIiOJLSKDJ0xQxgMn-wvYhb3fxvqepL_84otZc35hsbh2uOGE__rr-uyvz0ZrliSQwofTJVyjOuboXq6E-X5zTbGYUZtJdvaQKZxVaMCGdvrCtz0H3LFioGTbK23mu_qeCno1p85FCn2gFeWA6Q4zLydLilZzKGMMtGy2V3Ok6bjCp1LNzgZQ3dOlC3TJJzYyBRXv23_d0LarTwM-CGVmOuFs6Iac0iG5AprSEBfeozAvRrjFJP9ctq6slGoF8ll7jrpOmQhXAQhBbmILlwVCVxEU0Jk1GPcB9V1pKSVsIEvCFAmbnOeMLnVPyuRIVuza8KcwCPcRiXjphvaydS09cqQQhzDn-i_wMwzfEcNMM7TUABeMQYp4w9wJRiaxYFcZrE7MZQCvxWQWtzOtAbem7hIISXOLxM1xv1G0I5XAAXhJHrfQ6Ar0GmtlWM6jOu_I3QuhaAXVCQK202zEsp7YLiiQuYILzgs0hM7_q8XQrNid0ULlQhoAVBUNSVWdD2Twdty2gsmqvULV71cdtvqyJm8GA_2BO9zjsqIFJhh4bwmShu2JryRA34hI3msSdua3WEZgo6AYwHr955yhDS6X4_AJTgmkNMN5QP78ZlgYyMQ20h9Iu6aJRGhEuwFqfJLe1KQmH5bz7xkRX-OesS3_6dmoD0HECdR72IMYbGSGntDLwYnYOe66ow-FYRsJp5ZFYap7-B5ER7YfZJteFHwf2yYhIuLbqd533lLjXlXXRigS7k-YdX8t2xaLJW9tTeVUNooB2Z7J0MZYX5sN4k6_I0JYjI6RpmHbWFxU4AIstQ0WS-85lI4X_TEr056pQeYsSv7qaea21VrfwNS6vUq4S83WbHmP7SugkQHxj7TGDB3FfrR2w_1XLmj38RJMyAhDXjdGm6hTJKCe6YnAMmB451TALRYs73tqKQSujSJ-h5hP9y2WsYZ8gWM2sV_ythcWJEBw-sAKSzna01-kL7N7XCGd2Sgdn2-u9E1dEFFvHsZdMlwZm-aTk6gwjFW2DQX__z6rZSRzDuAZ0i_uvxICrlPkBzdK2WgK_iLJvA6zxpy5oBdAn-nLHl0yDP4dmoInO0_p10zyMqOhk20rq5nF_eAHJCuCGobf3nhWRBvjHCSh5jWP6mqvOqlQV9R1_F7P_QjLm9AtcyCLTFYxeufhFfqLkAKOsgP855ur5PjH1ybK-NaG8NY5gUABkebmdsNXOCaUxs_zwjQcDO9bLhlmqDZY-J8RjgLg-YR31KoEdplE-VIamaExJ3BQJnQMcPPFpJ3tYA1x5_d7l2xw2lvKSNqz9TFC-oOhaNiZBTIaW4bxQnKpuBp0PTSLz_9nQeRTh520AI4gRrPyknW3abMcjKwpJQw5NnccLpMvX40QcIy9X2ScViguHdOIx_RO1GKQ5UvOvSHRYNLbbB5XTA3Qtn62e5Gl28nS0MEL22DF7m6Rn1f4OwyTLvsb7IdPIrn7iP-Hte28UinohenY3uMzQiryJ8GUEP8GTH3lHAy4ajIaRZTt-19hNRvKlFkShEexC_XfHoz_g3jU2Y6OMmIXWakwaAq2uoRqdbQSURwDPVcifFRPoG3QBk_0asv6ekuc_XyT7j9M_FZLhMOYtIIc0Bh2jUIYz_cWBx-oTYk_jqVuQoY_pV_syL4WE-IPub3MaqqRSVi0LNRIx7Poc3B9T0dDbwyuh-jm43HCyl3IRrh9Yk8BVyFazJbSX_bNb3UKj0u09xmIMr9jPoSQH6HLA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f51830dadf08-81341243','','','2025-04-08 12:36:18','2025-04-08 12:36:18','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42882',0,'cd-form-entry','',0),(42883,17,'2025-04-08 13:07:06','2025-04-08 13:07:06','','Home','','inherit','closed','closed','','7-revision-v1','','','2025-04-08 13:07:06','2025-04-08 13:07:06','',7,'https://biomechanicseducation.com/?p=42883',0,'revision','',0),(42884,17,'2025-04-08 13:28:53','2025-04-08 13:28:53','','Home','','inherit','closed','closed','','7-revision-v1','','','2025-04-08 13:28:53','2025-04-08 13:28:53','',7,'https://biomechanicseducation.com/?p=42884',0,'revision','',0),(42885,0,'2025-04-09 06:21:01','2025-04-09 06:21:01','{\"firstname\":\"Alessandra\",\"lastname\":\"Martina\",\"email\":\"alessandramartina98@gmail.com\",\"contactnumber\":\"07424298930\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sK146CmlIky-O8s8SCtRoQw&amp;gclid=CjwKCAjwktO_BhBrEiwAV70jXrohfCbBLyFostsumRFeN3vApf6COv7rzHWoR8MApZ2jNWg3AZHLqRoCRv8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6kmEh_SvFGD-kRWt04VSjZHwW0l4CArpLMDbr1e7evS0gJIrZD0RKfd0sxw1rNdRzIkoR1aabXQ30O_PUahpLBO9FL3G-YayaJAUNMosZ5gzc6JZKNcYBziE_oNcC55uurEh2-s2twq3H5CRw0-BUNPxXqiZRzzm0huc3Ah8zVf3VV_yAckAgvPRvXk75BZu107rqtQBVziE6sv4aC9eCpqVXtI82XoPmKvz3rGst-sfWKQuOjQammVuP6L3YhxIuItO60_LcKQB0MyHPmjXEUA9qmT_s7BpTRaOuWWouB9i6QTniVyk6KR8LaNp7MeSeO6RJ8wxZv9IGQy8TJJSk-ymHyPA0ukZARqvmbwAVi_1gHREG7EfvzWnPBVeKHVZRx1UMQ8RrttB3g14l_O_o9PP0ogd-1XUPu7TxYRa4KMBMJm-ez9yuuq90qPR_p5tWuoAQVzEXK5nOnII-SkCpfjVaS6AeCkfB6jMeiXO9Goo_PrsDiC_yvl8-RdoiPHqk-uetNftYgP2TTCoDNECrmgR-VdBwK8flVwm-AykkzhEEukYJY7kaY0JVzyDh7JvfQRsURuFWhlEMmkFMG9qSoMC5DNlwHrIILM0VBDZRzV_XakL37cWCqaC4T0WAFQTDPDQryDUKMG91dkQV-Zim4SzDymdO5HKSyfbzfIta4wGiO4CIDIDFAhJLkuwOtRK0TutJg6B2encMtD89jen5LjK4hhUSmtaiH4AOPx5uMB1V11awMWc3I6NOlUo4CV_qj3_Yf2hdHrcCfkCyZKDyxGBx5p5vXXsFDfuE-tSDqFXSBzDrBquJkzK2plprZ9KCynSbhlT6AZ5dVj7Ak1yGFy_5wBVX3Ce4eoyMwpGwoGQDGyxfOO-sv_ZJq32p_mYfdEK7F9Z_H8W9a09Oa81u3hZn4Of4w256H4jTcV7GYSCz5ayIL-MNk_AoKnmcQdNPc3-svbysU8WhVwzabQ71-Cipxa0Xm8tDU4FRjtrAQftStej5j8btYk1wkX0SEV3T1jty_Cz9HbZFIPmq5IoPMc4F7aODcHtGxlw6g935r-MFmgBsyQgLLLY82JzD_K9-VGpMtMxAj_P1WAEAUYmxeIUlhSkwFXdprKScfeD9I5nE8KVl-b0gGZ_yWTvc-szrVJvKKc5Qtw3MC8CQ0zWjqLtK3YJFjcWVsWt8aI0OGQFGZej5iYJvtnHqPRSkBHqw6SsK9JjQnpCRdQHW6pLW6PSONSqAyjj9BHmqWMRgK2e445VThYrM4CkfP08KCIHHwawvyOOUtB-DJPD33G_OS-aH7EXzL5WHCYbmMCV6W5nCz7xwLnHHGW2nxC3wGXhJb71V91izTq9R40CI7Yzo3Otv1O_P_1Pwr4mkvPgk0a9TFg9SFNfd4Z87OP6UCniHiJb6IYB9e9_m13eKguKTZGWnxx3yKE5jOaiJf4wRU-mteC5k060cDerQ9URbb41eswbdpo0hhs1VUh0RnXh231xCB7ikTjQt2txNmn7bMBuXWWfwXTytaWcoO-f1SCCubQGHd6qB4KoC2cc-iW1Z9CZ8IlII17lEzwp3tlq7n-IlWll8uhwjBkJEam7JHFqgPWKMPQvdSRTaYYrIIhYluAtLDISGSakeZ2s924Qvf3e3I-ruseX5vLCzXqhJEyaZpSTRFDSAi3VzqMA18b8ZxHEs3yP7yVpQUc6oD7XkFqsqkd5gHPkAkLBuPF7fJYsrgnETbaDoNBX095d3B6BcYPB3MaBRqQcOI2FUnJQoHPsr8epJFbaOI9FnNEXX7almdj33jxqnGLqHJarNwMwPHy2LlCDu7IFCRVXy1Tozs6eNDpsXKVj7JrF2jX4wmb__l5jbJ-AoIRrDQNVGohZ1_ifka4IN9Gax40R0saSNkPoKcq4q1Ygyz45gzRHfH5w9iYwxyTzHyjmdZnisMn8jY8fTideCBHZDsDYUgrIu0FavnoNvfAo5NKpbCyeDE-bk2UG7QKgjQTRuyry2KbQquBK9Q-vnqdv2rTfSJa17iajmDr-vzVX9VjXPbrxIRZfXc02TALwVfU5iZcI_9QmbaDO7RR3smzgkBesgAUx4VhgwMA8EQcL5eA5T6NjmMtkd2GMpi3hnWityPf4TN2Ul_F7qtTgEZ42VlX0gR8_KRDQqFZuw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f611b9d8a567-94117770','','','2025-04-09 06:21:01','2025-04-09 06:21:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42885',0,'cd-form-entry','',0),(42886,0,'2025-04-09 06:37:44','2025-04-09 06:37:44','{\"firstname\":\"Nikul\",\"lastname\":\"Shah\",\"email\":\"nikulshah1@gmail.com\",\"contactnumber\":\"07980303333\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwktO_BhBrEiwAV70jXllh45e39Xbt6oWessW0V8ugoYl7-3-BwWH8NMmpBijMfTEZiJUPvRoCkjwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA70BESkabtQWKbL1cXq5k7dQPNr-a__aYnIrjbOJLUwUtJrgH6VdqiYMHQ92zAGExgRJx9nO2y994yebQpR5ThIo2pRqVQYpniyxEOVl6hYbQLy1wlyjexOt4picDkjrt8uCPe4SIKbuEaRhxgYObTN__3SATArDT_rEijS3nJIXPgEtPJXObTPpl64tIHsVlpfBLPYZ0fojiUtOvWS_DfLPIaZXnoEzLhvhDSINm61csjN4WATg905HzOQE15j-QPjCpmNI9mfQ--JCodOiW71pmj2SqkA1cH60ZSAuFFbfTmsNBWEYAc4GXfxi9qrLiJGNhbLIzTz5Rj3jEgYKBOkMmc4Yv7sOpLgqXc2_NkcBy6pF_FU2VAdlQEjX9_7XGBasucyIlfZX9Bguyay7mRA2GIEaORKPqM1xwol3ejJxHWRgc8sHclf0nz-g1QtOy-0TJxWrzlu0radnueQhA9NvbfnlVG2yxfD-_U1sMQaLCHOlC7ShdMWONugDy296gvjLyp5h1CGVcQ8P1v0Ouns-iMRBZpKYlaR4MSxrP5FdTCdtx6xXPntg9KukB9XSrJyZBcuDxi-QoFSGReVGu5Zyu_N-jabYKpNC10u_tgZfB_0DKth_mbyQQO9ke7AUtllMNwT_2JcK3yJvzlkwoY-BbkD4MJtui2srPDI1T4LVRV-tM7SNN15IzdAPDwmYBetatGmhvVbZ65AqsLwRXjW6DPbKUOBSm0G7edgl_S7o9E2baM5GTUO0p462rUEz6Iw9VA3mb3ilirn-3kzT16a8Q83lhksyN-m1i63ON6DismN3HrLoxzbKCR13mnfzOJs9W4FFdj5IoamnqUZEIyN_dlUe_WX9utvR77iokUvP0-7MSrwNV9MhSQZEEnymKDtu9mEwgGBCSd9sp257fWTfM2H-4sW_p3vMCwAnJNsbsowNhkVoU_fC_2UVwX_h6jw2G3HyPLoV3eRoKYRLuQhQH5zvztVHzncnyQxL8mckXNEfHpY3EbMxvhmfk3K1wVa61SFCSnt-zeDELh80KaQq5fgPXUrutJ4nxxdJ33lwTjJ_jrO6I19A8FTGcmQQu2EH8lHLRFUiFW9WAYkSZcg3gbR3HMeHgwYrGY1cypjD8Z3CpndKoTga3ChVTamoryiMpFiWyvQt0MeFFN0zIgeXry-lDP4n_kh_5Adq3adFlT4u7sX4JabMelFkVcgEHIi1pGx4IXU0EmYqw-zYHEboS-IDbW2qZGeYMaXosUvvEGFGvwdRweYR6ocEFg22lSqDgSC9Ol1zL_6b_Y6LkXmqPts6aDk5vAYjk7h_BSomO05L3lrKbSoCvZ6cgQREo2FTZ2Zk8HSpcujxBsKZhPQrPf43KSir_3AUO1nBiJhGHWut3wfNuCSlzKaH_lLChIdpnUPKNbS1hssi2C1rBNUn6g5w1F5Li_LcfXUU2_ZdsiZOobbrwTpP2-aWh9DWPGm5TAqxyR3YXzwfvqu1XZnyqsJ1tt4l---PVwJ_ZkCfen3RnyaE9K0_PW4R3XLgKaB1FMfz0wu1EWkCqWP9NRYog5WO57vIhbzi-dsVaVThXTWUqE9OwvahWhLj7aXOsr0up04xRCbrsYngHEPkn0hMkVwNib3twZmvrnQ6rz2jtEwmRefbo54lqT1MjqeqBZx6YXPMbjW8qzFgs6MG_h2pJ73m3bmczoiCVbE-i8ZSdu9qBpjhE60brieDmmatwse3Xt7pH67iHH4Qnam6PEKeNQWwGQ1WzhDZBdN0gAH8CCt9fyPHHDvQZWPPrjiaAp3XESC3FaDsDsTvnSIp3Ic_yBHYn3GVCSVo3tHUb-4U2OU8GK22mD7HAuujghGNd4nVghLs7USmmqfoVf2mj-AsvXORXkL5hsE1eAHpEXc1cWkDwr51DmsAry5Dm1oVRLzu5RjI8XmtLxc7NDaQ1-K14Jkbmpf-V134PqYxrywElQjd1F-Sc4nARYmk1t8yrJ8iptcVOt4pf6RTkEkbPPf7vXkGlRiwuAJxy3QUKjLtf8qUxcS8fPWrqMJT5r8Ru67tsShSNyanEebh0Vc7s9tjOSW09cSRjtQjU-TwV7cR-knfGWUrS0w2dcTma7CIwJfUjz7e73d9D6ppX_5fAZutHZG1vThdwvbZo_4AaCNQD-emZ3xEKtesqoxdRoFatBYjZFLpme1pb5M2H6vfLwiHlZT0gJOSTgUKj-TZVRjlxzuAMndUuXHL-JL3WgYqMrSvlFg8EF3VjRywraZrc0DO49AHL_JiBsxGn4KPKgM0402YYw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f615935955d5-94491630','','','2025-04-09 06:37:44','2025-04-09 06:37:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42886',0,'cd-form-entry','',0),(42887,0,'2025-04-09 12:37:57','2025-04-09 12:37:57','{\"firstname\":\"Jess\",\"lastname\":\"Hansen\",\"email\":\"jkhansen94@outlook.com\",\"contactnumber\":\"07568535443\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6u0KqXsJ0o90Q3ZTUSFnAbbi&amp;gclid=EAIaIQobChMI3MH5ifnKjAMVfJNQBh3PjjQ3EAAYAiAAEgLmH_D_BwE\",\"recaptcha_token\":\"03AFcWeA5I4xppHyXfDmbdpEHeg76sZUi_8JDSMcGnD7NO4Pa1spjAGN8SlltQfjiIZTmJqWc7QmPLFIuIOgc2qXap0GE89p6CVsYDPid5lRU84VE8vAHONvt7lZ1iSXxDVcUAYAEUmlayAGoDVhL3SlN9HgKnCczAbKqQhkMkrBxbBNr8EGUSRAgRdJp6ZVQ5uiTvpHoylwGE9jZsZ-Nq7GOsvMOZLE_1WuSd7XnyD1xv_Opr4rWl_vwtzju9P_VcfTY5PUjiJXJPEwbUp1aiBD0zqzAO-PeU86mcLkMqYkWUEQqjE8UaAri9tFEynxQn6aJWQZ8ziYaxg1BM_gOK0b_87NLKYp0Byjkp8ffxprDzkbf2R1GqmLgyxRgSL8052wl4ARlc7upPrc3wWvbWUO10AwduorgRK5uReRC8sGx8Mtk97PRXVJLXyJu9JdqVvFj9k6uS_2mmD3AoLyy_A53cinaIH4Zi91sO1V5YYNUJEFbofoi2f_Ek_UxPEJB2gXlDwsOGsiVpgVwaEvKalGCJdEO_Ed967TQcPEmXKtUF-AfGLUvEHNk5KhkoB0mwkUIsVg1iibh2C3SfpYkpp_qtSattGj5OVHXLp89Nwwfr3qqKyvfk-keh_tuTPDl_aj6_8zyqrBiZfIQKGxPo9ZO5s5V2mNUI-Wa60o6Q5yeOXNkEUtBO8XQ93mIhT35xHuCszew-qpYzX0ITociSdiVWzvH8HPsGsCFt7EbIBRP3isWu22kuDlrVbFTyOl1_GrSojiZBoVa1oQ3SiRs3IYDi2EEto-ZQa-gYfBp-2vY3EuhCsVG5rRtMReOHicCzFFTXfDqORRAGys_kNxAH0SapDQpcVuWRUXReAx1NCjo1ek-81Nxh1nqaq-7FzIea3Ws7Vf62Cxla7no7MKMOYXJDO81s7dPc2n7beQIOw4LL5XX87EQulNlpvmzn3OYsGnp7XAb2me1876cpNuhuRLWb7bTKMjwZjl92c5iLmy4fKFbwM1OXkWxa-pdF3OIXBFt1lL4m2prLuvjj7pgziS2m0XOONugiMpO2G9kCM7XBjwbZ_A2WBez4wup2yBf5IISDAigOPfjRGk5Kvt9A0TsVgWN38i3MPF7kODjbxvQPhBDgUHdiRDKsxCr0RCAdlKDg02Vvc9M11IeURdBSoWcwY2yNCGaGlFrtA4VXNjlOcRjUKXRZV3r8uIkw2I1k1M95AmPVxLFuN5Hfsay3ujE8pbRJA-_BstAkY0DtGtVY5FgJC4AIqcJ9-5zzaPyQQc9n2ONQXMcib9zm2KWFYirsJ3NTkDS_EKXhgyFlcOHxqNuywRcJOuPPJs0LV7WBvLtrCAXluHQVkmw1mOweodmBzWRdon5t5bS8Ens7LwgiUrIn-IG97pS6FusqogdrZgx8rJypxXiiR0_zgPP7eDVh6wzZbMqSpg7aB4l3MLYvE2jkJZ1EhhW-jvnmb3npBSVLFpuhX6o-CjjIei8Zm4Vf2_pQYr1UBt_u-ywXWOB9d-7KaSNum-XWWYVzdS_W_Wz_oUUO3zYKWz9m9OaYGRKo3y27I_3AcSrmy2i_BFjWgrLU_MV_FFIIp-nEeSCbV87-f9UWYsNurTI3DUrOlJ8tMjf3hzvkwIDBs2CbJ3Y7tYRjNb9WVqoYRLZg3MEdl6XMiYabQYNTI_VGG3EUcBRyjnA10W8lMIdcEOrBlEXnHXmYVPiJHhPZbKOdfjxWWj_0tZH_k8Yt52gbRS4rRewzL16efm_c7JOD88ppyMlFf485p73dWDjZn2FnZtU0EnwEEwsju9AALfGMM-2DJHWI-HSpzHj-pmSQM0-PfF5zh1k3iOUJ7dUE8BCEn5U7nW_bhDt1FxHqIFwSyWEHAkvu6jWTLb2TQImZ--x3T9zOhA4uG2zKwYrwrnP2IikfsG6En-vk4lZfEF9dRd8vGUYoPHB9fU7Cto3yN2p5SHZ6DuRAtgo84BGHFcaOzTfvy0CsavRfYeD9Bj9ayAdtKtM8LzuacR_oOVPiEF6FLYma7_bIvxESgbsosyZrvK4FtITv6exwa_aHyQWKkdOoVTt6s2YexKr9LdyqnKA4Sc2fp1sNS7zwu-i6_HyCOkseIs8ymxPVIu8YCdbQtij0LicH64yuNda0_5RLxaVHO4WXktFdoeX6grHtlsEZmEtUv-azMPcZKAE3c7Kk5tMSBG7Ba4Yik7dBWg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f66a184ea3c6-35792715','','','2025-04-09 12:37:57','2025-04-09 12:37:57','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42887',0,'cd-form-entry','',0),(42888,0,'2025-04-09 15:08:12','2025-04-09 15:08:12','{\"firstname\":\"Chanely\",\"lastname\":\"Marques\",\"email\":\"chanelym@gmail.com\",\"contactnumber\":\"+5511960724954\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\",\"recaptcha_token\":\"03AFcWeA5HMNs48bpHmwAZ0bPqI_oIjOn9hykOLrda3hVzR3p8ydkV1PX5phArBjKdf9jWxP1Q8_O2gj2W91xEoKIiBE5WUqEpe7OxG_IoMO2DXkCuaG3YpUbOLSqUpwle_4GY9D1GPX-xP1mokgUWFm0A7bESKreytc_bbZi9eslwr02fgftKJVwy9csZhQ5y5Erp3nXED8apICMI1-39pxTdVp6neKN1qZ4A5I2b_5Q2RgsoFoxe778cN0H6H3usvsMZOabaUu3dIDfq7RHwHgdW9Al6UtvDoQVvvHs86GJNa4wEqpbZq21N7mJa6VDEbY5h4j9JhhlMwvgZH_Pc-LST77nypzoWWpgnqM01wYD6i3wYIvZhWv4Aqe5S4Qry0Z9ZvhbcHno3AFtA1XLvzliZJQA8Ay2gmc9F-j96Tg1Dx0laC5lO8vVwr3M5xteAODF7nhOLbYKnhBwrwb0YWgAcegX2GvbZGArud2sUC86LPGcmoAqgnFo0dNpFROx4edP2Ho7R124mRLoEBe7X8JVMPsKICIHBW8yph8b3-l8-6TQ42_KNgREWmHr3PrNXlaTFp327Q_NrXirxBRp7Vh5HpbHuHUCV_yfCGLvuWyq5xPHymfvVzXXOe9js0zmOczfGuhFG3HJ03zfNMuLYM3NncwmDoie1OCTmIyzMMRFThn0e8Je2zgfUUDIuN7QTpwLTo1VzwpUutgaq6mcQO703U435g1DjsyuB4eEqHckfj9A96s7fu10Tf96BZ6cBBkj9SmcO-eWkZwPdSoy_cGisVWnj2NG2ZdJI5yqp2oT-nPSDpauEYEWMG0rRaBbej4Sz1wfY1p26Iq6efwbirXOMoEzBPhEB1pUoLSAWw6NYuv4_rrXg0NUibttzr6zkez0HShfbOnBXZzJhM62R_mtiyzsvXl3g4uu5cqSazb628_qotWYVrM_tL4y80orz7LaX5IWrFEfYEFi5WkdJnJXJjB8CuJMnqOhddpVyf70vrMGz-Hpp7s_7_jqSmnkLCTwApVaM-CcfVxpCYFCdUdI_lqlYmxtZvvjUDlvhPAQo3TgdYqxFPBsnxOKnfps9r_JfA4AcZnjiJGCOnpFN5c7hbBznG3zByY5XeOwGEpS4NrKCjhuKHWR_KMo4M4FQsuiH2Vk1uyh1F0J4giiLV6MS5qIywdQ7jPKFTKAgxCFQmzgEMGahG-rTkLvs7RgXSKsgrn_rJfzP9sCB_xy_8Om5zvUL4aXHa5ZLCVGSwWKN-S2yrx4NVkYvXMDcsam_zhFH9eTl0mux6KxKv6cdhUFfk8VNPQALuS5BwqhJzJnhrjQ7KKBlZ570u2Gm5U1LCeT9d_t_MwZ9cFBYf5Fzci7Lstppk3-Vs0Y1ZC8NsitzNYvsq3Rp5ZewQJ-hITMnZKKYU9tcDTptIizR44hehgfK3zGsG-PH7HmRVXWhU-exMSIl8hMbZrFWogSybk1t2mS2MDMIXFRr97fyZA9xR6ydb4yN67Jrnj88wpQjiyOuSfCA1TKP8OrEGiyoiAvQQsXNusFJmoAA3aq58jPWq3DhAoFQQ_1i495dn9J6scygWUcBi78y3BZqE4pPwSbBnk5_E_SP5X7vKK5GBKiRfDh96UEx97JxqrJSgUEQ-NxNrHQq6JRdZf4Xr7BNq1O1FheenOjvmqX98hjU3yC58yCGvxO9el_HptMIn-Jcq58F-2o--yWUGT1xFrjHGHd08xpdHpQbZY2iQ6tKB6oCJOXG8mXVtA_YcV_qxhAOghcpf9EAa18Zo5AueeDBMaTrX7hM2WXUzWVG_SZmSZMxSEfG82KUNWfutHblU9vlhnb_3HaWy6VJtKTRAVXwl0RZzaFH1KYZGdI7uub55b0lJbMCdu4n-CS6gQqBFbCjmspncJ_j_Bsk9UciLiHXthWz4O3fXuF4Jdn9FAtbZ9UPAxP858e09cgzI0Bsy_hz2NZpkH0b0lM1wQ73Stztr0KVK_KGqGR3vKlWWDZd3SKhRyCJT10IUNTbNvQ2jQYMM_ibZYMYwb84wy50c5oxlKmK6RO95wvi3A-5nCIPiFgBn09ddhntw8z6Ow\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f68d3d416bb6-43127755','','','2025-04-09 15:08:12','2025-04-09 15:08:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42888',0,'cd-form-entry','',0),(42889,0,'2025-04-09 15:10:09','2025-04-09 15:10:09','{\"firstname\":\"Chanely\",\"lastname\":\"Marques\",\"email\":\"chanelym@gmail.com\",\"contactnumber\":\"+5511960724054\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\",\"recaptcha_token\":\"03AFcWeA6pmMa7VWCc6AWELWB5cRPbSgWEVc9zZSGbYi2fV1C_3reGzbHxNbIbo2QJdBDsjTzYjcwtZDZeL3nue-_h3KqMV2sz9okCxYOxZLyXOX0SFuiEQmynGxtNtsFoh65jxSUpXRbNBHX8Qcq5JC6IH-eCycLqIH1Tuo19LyLGLm1CdIBonu4GzLF_mgG7X1CmwvIc5z1sDS8CDzqtV7yOt6Ncdj_zt5TaS408O2i2dvMtD_YblK89Kt207Ng1ZL9RVSO3JRxResGDPKVgiS_Gp_g45Ww2-tC-xvZiuKHtv0XoPr7DeOOp0ClCyU8AZaPAgXif6Z8P5Fh2VV8jBYAew47aJsJFdIvCJU-5Ch_-gKO2CKfnk6loWI5UtMYo1Nmvh89fQRPNtd_p6XDLJNo1VuaYaJyVtWzBv6PldnIleKZ3L5sZs0Xl2jIlVkmm5fLy2Wk3GhTb5YtGx4pJoQffiMFBxJ5ArhUEaM5-XOyqVluT-iNjCVMqK0dp6CFSjQAURvDzjkA-dAqRPW2BeLAH4fqpN5N5-r4HdP5ZCXIi7LkrROkptvxkuBgc67s3ri_haQHhnH3IBoMjuRuS8DHB35NaSdEMeTWOWO5mHAxW8WDecLZYGWt2pLf0-jh0JvwKBc0wCP7Xy6g49-bV2qtEP5MJCFlyjhPzJX-x5kzoaZp-oEQEMVd7jUcBP-Pv6K3zle0zTlM5YsDCfmPbhqLUJI8rrYS0-f9kmgIqOb9wsRKOr3V7XquAbJe6B4eGcdh_SKUomauxW10317CECbjEsGPfGunFwx_Sus_wCgS4V_6Q296k7WL3LIudIIm4Pl2jH2zYZfCA3rc6o-BEZAKYFyLI0iK6OjlX5HTegdfnJtD3XbbZG6JYDnVeoDHtblWRquIFZl2eirUMqFLpsegIENSbdI3ZC9Kswi7QNRGt_ubZL6X8EwFO643DFqnrgFfSgkfte1a_nkavassUFzMLBt6b22N5eiQGFfN5dNDTumFGRWFFiA6hcbkl6r_TP5_EqXZh_h286swS5XYiX5njgCuSfBt6hUD1U9RnvY3du0H3Gm0KccT2KsKvl9oETZ7Xe6C51-gjcfUetE4SCtv0LYgkW_D2zijo0eYUTht8Af9Si7_OmaMpMQant_1JUsSaenZ0r2d3_NECR_q1wZEqKKZZMAuDswp80IHOAja8uiVwh8SHWcDht7PY1SXMDc_QGkhXhq55OiK-wWYT2f26a1imEu2oO84D9gvo5f6mX0SiNlLs4e-VS7rQgjSbQMSgxcdVBC4LU0OVXw6ApB8L7obSrceuYVhvHMF11t-9-OX9q9HqRqlb91CmQP55KP9QpPVvVWHNkxeIbDjTNnYmz7hTQcLn10lHDm6Tevvcn_DWuhvNjuBb0Abrclfg0AraoTgEq0IgeAf8Vpqc4uzRA3OIqvbuNd9znzB0gUkU0jieOtG7o9I0zSJbylOxbPb1d4QkOGQnuDebq8hQF7QL7-7_hhAZZB1dFRzwIq8QH1yzYpYuoRoBuMdKE05AbEU_kU43fUb2YqyvcUJebjgB6xtGMdTIO7QmQjWQdnOfZqQLIH9rRQR8Y6L5yjNsleoA07lCVuNgR_qGN7yXnnjGV6UlKuhwUyqVKVuUIxmcdcfedh-dFVYgofb60Y6o2f_gC2H7e2jZGHkfIzrehi70DNW58Ga4rPVDtNcLCTM1yqc1me-n96ajNRR5OQaE_JgvZ6bbSfb36iAdOq1N3K5fmGzIdHW7oRfEZ_fO53WofcVpMe0AUwWq1xpDMPbfAPJPm6WEbhK4_G_Nu-FRF-beYxQg4U1xZaE1xIssMyxopKOHzGXCw5yUq88ymgf3oXU-FmnDaUrUafPv69wBotf_FmK0P1IEw9aZu8epknAjopyt-RtlgNSpvc9mxHZER0Ik7DiEOSVYQTV3Jq6tn9JSAGhoCfTT-RXD1XviMoDeSLAsyR8Qt5sGGawbCiJHRuPwqReYueScD5sjwRD2qNMDaXqrjbHwXm180CRLWcnfh4klRMv_o9tSCSONFSoKq8AXx2KRSlJq0mMVCHIRIu9gCTwdQ_8szg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f68dbd605242-25292079','','','2025-04-09 15:10:09','2025-04-09 15:10:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42889',0,'cd-form-entry','',0),(42890,0,'2025-04-09 18:25:32','2025-04-09 18:25:32','{\"firstname\":\"Jordan\",\"lastname\":\"Sciberras\",\"email\":\"jordanashleigh09@gmail.com\",\"contactnumber\":\"+32477600423\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\",\"recaptcha_token\":\"03AFcWeA6gUFzQaN0ECeJ1LM9eymMWj8mYwiBKEc38-Fj8hR08oibV8-ckyQfp042rOOH4JlQ_oC-WqO0Q4-sL3lWgHNAyUSbW7clbYvZ8a_m95L6pJ-8qelR9AvnEVaEyQRzUXg6IWTLxbj4uf2cB44XWQWAd_QYs83gwXOX4qPs2IiI_SCPljpfA7BFytt7_1Hr5VR0Bk43alKRKxKKBNpfotHM2Pz-hUHjRN69JgVSUSAfVLMzJdN62BSRKlLJ9xiTtAdUfsFvpbHyGbX0menyzoGOFjd6_XRm1niWZBsWfU3EL6cRH_SqWIHvzBtOXWDMxrZHvzYfdtwthKFlIicsX2P1ztpbydexzL755lJ-BGrOw9X3wjTqitgK7vE6HfHXjloQ2AoLY0YIT4XOmVoDJGgB4-r4Gxr8CRFGxxiLbyo-0Q0LjfVly-yMaDl7BcUxt85JaXWecY4msgVnlkJ2QBGQz2XTNiVmMVbATQxK20ziuMGHiZW6rgpgRv5HYuIAjC39_6UBwSBWawAgd3aVB83uzpveWKV2d9-pXyruupkJS-6i3vasW8dVlxuyBOPOtQsDuHUDfCTqFNjyANrq0fHsm8u4ix6sUBEaqiG_s-_yapNieUs7It4z9OuUwooATis0PQRley7awojENBixtc1V5SAezqowgHO54NbHj9ofxzs266fLdCOe4hsiqWkxPgHGVj4baT9L_YQ9t9JD79jWY1JXxmTLTDQ9xKVYjjx1c-5l_tP8YpQ4-gtYCqHAWZwEoZtIlqTu5ugkHqTNVRBK4BOqX_MTF5nyzNWMU60kDqiHf4ipsgrglEAPkKRd78b6NDuBlTohOTXK1OgQlGVIjKHFegXn7jMHjHncB3n1U2Izx8dWKc8_WP3AMlQ2NXElrpJWWKzVdB2-I3zOkOoORjVOVG8pwob_iBdb3W9CViYGVlKJn_yWjiQLua7MpEAG_iVI5IQ8MT4ZfxgneeNpDCSYBkpu2auRDPanK1h8Gt1nCTJCH_kudI_u_c2RXEgDFk8cUqJUfnfHjXXRcV8O63FPSwrAFdsC_mLrBaZUF-HofOxVaO9DjjX9iSA1Hp8mjYEWiCk1kBSvAJ3zU_BcQAnTviJPvIuZ6TnYuRyFvKuYJuoOYItQ2Q5fPEf4SUHyessxnk2B9kZd7766MGNr9nkhjq-yfb4fhS3L4az08AyeK8jveK2exdPavm5NzuUPvbhecOhXtYm94G3cVw9ECnYnVhExrPmPoR6ASBsmGnc5H55tRFWUuH7xkldid2rFPuxOdEWRXOG6Bm8cYtfGcVdOLf7vjwCzfV4k07S-tREuTEOr11AUxdFvQuG1Ym4a1G7wdYN6mRJaf-HqiL0a_HhdS7VMcB4l3phglmCgFKPAFN03VQg51qjYv3d__khEp1pK7jtMGVFso5vCmlcXWxZyOzFFNjFUZWUVrEr4SNfBk5WrKpA-ryU4s3GLgYPKhyRjw5BcJdSNx92_LC783YJ29AuF12iaiV1yfdcH3xsIP1RitmE_NjmvWwu6rB4KpFvLpsE1p8tfy5S7OcvEh_nQtsH4ynH3v2KHXj-h2iN_6F8lbHZxw9L-OwpfBkHYi1yKw5p9bwObOT9YrkI9Sbf5pEnqm3x1hT0TqonJn2oLjyazPlr-K2UqS8zuS2WiFLaxhCmIPC7avHuaovEswndxt3ArHUPoBn1kxTMEk6LqE9uJoZGJ1drprHvWPg1cM4hA8AzBj3O4dboHafWoQJNH5MfwXo-dgGKSo0sGAQXOIbu3tlV4jDaVFUiLWmMIO6KCHd8VeZQF7F1hH4fSqW4B4ptrOkGEPOSmCS727DA--hV1JP95fsY8V2L3cIshDUb1BJ_lvC_MTqZVaheCzvsSACXTe2VMBEnqqYMeHEbayQah7PQ1-Y6_4vlIi2LsxFgZpOj9Kvc8qxu4S35Y8_t-2MAl-_7iks1JMLwAFMc-gLtV6WMi2iGPUQOhwnEgNBQ_MnK6T-rhiHVCRl_2eA8iYr4oW8YbKy2NK8t9RnKL1RPQsiLz6vi2ziwhEsdmTbR7U7xIJl8knappe9GM8Cu3w-yrmSb2pibeLha0E5ncCpmzL8IgmLfMSohJ7pFWPUlccsHRuL4lj8Cj1JcGhWHAufU2Df24W0_L-Pbv8yqj16NvZNLmqiBhrNjz0_IqFMEmV\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f6bb8283b6d1-68601417','','','2025-04-09 18:25:32','2025-04-09 18:25:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42890',0,'cd-form-entry','',0),(42891,0,'2025-04-09 18:56:41','2025-04-09 18:56:41','{\"firstname\":\"Tom\",\"lastname\":\"Makin-Bell\",\"email\":\"makinbell@btinternet.com\",\"contactnumber\":\"07784472126\",\"pageid\":\"41533\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=EAIaIQobChMI6pGzj8_LjAMVnJZQBh1K6xVbEAAYASAAEgLEHvD_BwE\",\"recaptcha_token\":\"03AFcWeA4uZE1bJejUBBayUypKb8JaUbMuTcKZjNDzuBhyU3h1jWfwYNBFPvp3XlZ_Z6_FT2dwcYs1JQScOc2TIP9Qxv_vWx9DkX8sh3EPi9qMLJR5lGzQVXS1y5yYlG9Gp67UwO8sJwgEeT4YQDsTZeDb_qDNFikJpWcwF-qBG1FcL8a-Ku7ZNXZ1UbKWE8fFTbuhMT6dkGzx-4WnR6R29dAkGHWHIFzcka-gzdb7HWr1YXSDb_nh15PF036Gy8pVfpuNMmBE0CEhTJREgVnOXnZ3C6qvY2D4jFIarJu7FBJVCdEFmCgoQMAGsGv709YLs9V9nzLiN9FDan14YsN1iWWal_WHjh0s6GHQv7d_VcCUit9uEcDNSdfeyrytYLLhDmtc7MaM1HtgXRUONXEql6pwNoEcpnu9NBkTYjy3fy9WkYgkg0dVEmnBhqdxBRCSOM1yb2mEdBEMKqza4aUpRIjlc4EdlBPFsRY2TQhqS7E8vE8nEs0csNcFC0yEdiRgLhaAeMblaxZWa3OEF_QEaJAY3qSanGnXjvdPHpFXPvRwB7WZ_Wau0Ml_C5V1A3xff9KMUGWQHIWtqKnpEJEg47BqUCcwuF1Gk9PTLNWsMG3yFWkFyxP5hYnKFRgvhzhdcEB1x7HlbMb4H5fPpLhIuZZ4hTwbQvXjDYvZ5sCg5_kxgawjxumtqlCLBWHm6Gam4mjAyl--9ARoV89ytsImc6sRvrhlE91oTb4SMejdRUdDg1EsV81LfBVDnWCEL0ukm3sRUzFNxaB9X1MevEM5Xo3Zx2j_fQdEJjWngg_VltcsVdbvYlpMRXOG7et5KVIB6MoiYrK8yigVa9g49s2dzBXzx_bEgP6y08sBLjHXpCueDVfhuXPHQPFm1tvCqf8dqFYm1XNN-tl5dC5uTkS_Eq22SlUHUG6X-VE0IDRDJegRDArTGpUg2sjg-lsJnKgJkGpRMjCgi1GQHeQIq4iu5ix8u8evnawOKLzM14H_2BhCo3BqpLesCOBvUZADrqlZ1vJL6FJz3lk4pkWpv237ay1sy2LalvvPQEmZ0hKsgitvaVIIfDdD8rm3Vyw6sXAz3hqbPnpg7_slP_BQII00jD6pHtjE6T7TX1SS0qrD5AUXpnXnE4ReedUh6Ig65_M_pJUG8BvQsZK-SuiHAPPN6pE5Vwq_RGHz-ryXXXTpoFzy7WmJuFMZOZwh3-JB9ux_zbLBc-cR9xnG0k4gtyER04ng7oxikHNpsgpnE0LO1ATFQqFY_3r8B173LvJyYw2WDdSCY8pnHrWoFz5hHZ53gEdT3P9jip49V_90mFzci9Nd8lxTuJoZNEum3wcV1h33xnBU6XFdHMtw7m3S8OVeH9dHlQH5odDZah3WqVKGZ2Ckc7QPquwXrc9-KinCkxLUcpYmgCEGBer-7liUaiFsPECbyZVsV7kIk1qEsN0IB_To728Qp6mWuCZWEfcYIDqZeXbzaW_yOGegcWnX10cvVGa1fJmjNssA58lCZ9q0o3ubWSDEuEbM9BLW3nFnuig9ga2gpDrhh-b26VKvO3w97e_yI_ZSqP6qMF8egozY75c1wmO5b39VROyFSRWAOuPgtbszjeXnDLOcgXeHvjgET_iv_MtYlYnIWCoPsI9du_XJJafPATV-zEufCMjPhuoqfShR9mb8W77C5TLKnhthkdLfJxLE3fNvxBzNN6tEjsBVN34WBNzK9zHzyoG68OR2IKpKvL6_n3jJpdrcaCyIeqRLo4JYdUr3nBayMMzkjD7CWIbABDXsNyV6zfnn0CAA045XjDhbyS9JHk3-XXm85MoxZIZM2U8vYKxJB0MXDK0vrgwOlgZLRjDku1GBca19OJHvrpxyOe3wmPNo1-4UnKEfgF59TPTuxAdocCr-5ZfWHnHlvCfXoXTPWu9Q1M8_TMtGlsiCNiBUQqBn0NyOp8_zDLPhMxxbvHq8E8-S7l1lUDn1ts6igJBOJceQ2_MhIwcHolpnBXbII28SeQn9_gvR2TiV6NT7ftGArUE5j72Nq_YABwz4qgYZUsfjgxpQGk2KQtskrdqMTIVvXAqtcHr1TIl3ktgwKUjZllEsBmVH37w30tMYXpiaNEdm9aLWUemcp4RizAl5-ainS-KzLiuGBZGoOilWtmrFebH6GA5bgIEZOEVqHb4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f6c2c49c0c17-53226903','','','2025-04-09 18:56:41','2025-04-09 18:56:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42891',0,'cd-form-entry','',0),(42892,0,'2025-04-10 07:47:35','0000-00-00 00:00:00','{\"firstname\":\"Josh\",\"lastname\":\"Mc\",\"email\":\"acclaimed_care@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tA9rIfJykFQQHPNhdZETasR&amp;gclid=EAIaIQobChMIk_bIw_zMjAMV65NQBh2-kwdfEAAYBCAAEgLxcPD_BwE\",\"recaptcha_token\":\"03AFcWeA5xdfdmEFZ86AGr3RApxhw5qcxLU_H2ypK_h8A4-V4wHToD1AfQuvoLsmcbN499Xkp6drPOB9vUjEpwA3G4mxmblMtSYotRGtaYmxa8rCTRcnmK_oOPNTw-JEvDZaPWH4PCLVn9d-YJFJW8hZlwuzNXKNwEnLlkfuv0ZNrSra0QBRrob1zX24W4Cy5NwtpdwywU0fCknP70Q-W5X4bCy6JEUx3bUJORUV4mVDFO4evHELlGbPttD0oEVwgKImt345o4rzmMjdgvkW65TyerRe99LuUboOCv5b1B9DB1W9069sw14rDIT3CBnhRB0SlFnluci_J-lUgXgrwOTGq7ENDKnED39B9VzvAALuyS880gtr32-0W1g4MSi0Tc0WQ-yr-nJ5oAzkFXLICe_Av4Zb6jtEi5m3pjJg0Ueawhb4PAJJhqqzGgcCGdmSd4QubASomK6krHJwEfAb_asrmak_UsA1zPgzsYWMq2OMBsW89yQZMbn1-pBGbl5Cih144N7iLmSlUu3ETWz12vlBlHQImWcOOCNaMV_ndUnsMOyOrthCnsEBUxDKnyTTFU5-MFk1_IL-H3CRKj0cgBhkcKHevmSFjqpiIBFODi9WdhIpx3C1o2Aoj_xRorIeS_izY5MTV3Mahvx073CBT_0HsX1FanCKXAo_kDMl8IDrlZ8tCxOcqKlu_GVnv6ElO8dAtmi1JMuC2Tv3CxbdxMANUvp1onHe1_Fk5Je0u4T5tGpsGjQJGxkOt8t1B26EmeahQm9uCAlykPiqJoFugrkfy4CQU48_Zcr2CBIOlgKrHNUA1Z86mZ-uSaZZJAI4nFy7wakD_fUk84NTddlc8O7i_LKtFm9KTKPshaqmdyIfZP1DW0NO9EvN1o0hCbe3uhLaD5twKSmULRE9Jimdn6iQQLdEjmtwIbCdv_0hwTljUjodsnu7xSUznehsEQUBfDnVqh-L0eyI-vIlpiBFUydYvl64auFrZ-MvzAwqjNz87Mr8pcKyUm7JvztrPYfLAioy-q8U7V1uWDMk7esQqAKx88Am8ilpliGPkjmA009P8hn-O7V5o6MHJKh2XMRqhwtlwVqOHzvEOCXzMF77riBwfTihJRyCTbiB75BTzHPrZtrxwQhTMW_RFvzzveI7ocU3EHPVBfOfWDDYCwWEdKnb-yxq2O67yoPVwRR-47yLoqGQ7SMXVGkz7rfeDLJIR32uKZAA95YResqKuq8FT7FsqNSQrZr6Sroa8Ecs5l7SqzFQfH7jReAITv1CFWPnF4OiSsDxDYnHGk3LSgs_L_RuvGmSg2h9-_Tt34Wg_8znZzwSkJRqr91Dbj3OCRUNzH59HF0Vu116xleRn4BixlTzu_fHaCE0zQCPFZjai9dkHx3zQ1em0bs7kxwU7Rgr1hc5yPjbj6uugR0CJw5CvQ_KNxMwV-1-0epIj8UQ8ymF0NPDucuMnoqCzX11t3GbUbh0qOrtIo42hRqWa2zdHrsyAcLRDpAxRkj_Ui3miI_aCLIKCImocAWyDm1A7zuxzEFWEAcVJW9Z_1vfrTudYtKMMf9jZrQC2I8P-GXLK5ot2vuy_EqBvD_aU8Rk0hmaRRdqsI1BkLxr14laoEMcQPzNFMuHJLKlD6XhqittZAUrU28byPfOOZYKxpJy_HObCuEqSE5eaq_pPQXT8h5FyPsY3loHrXogtntVViuOp8k73AECRs31dQnXJcy4SSyad9aMX1gkHWmFbTIbZ6QJNSK_nbSEa4REezij8CIfECEH_5gKcInmewJ6HCrw-tkpw8nQjjDKsFs7sVJBq4hz5jBfJqSqnrj51PCuRNNsIiEj2W1PEFoVFOf1Lref6SX47LGm4o7zuA_92hMU2Drc-6PXTWqR1ASj9P5xj9MdMHREtDiczJVTNenhqNiYzB8q2A6S4TmSX4W9Th_y8kEQaBhqW5VFTmr4VWLt3MbFmwr78xryKFJzFOh1BvP7ZvaeGC0pmDtilA6hHp-Km8bvBCaSx7B_I6HVTjVnI0Jyh3h_epP3d_8We-DCwQ6tgS0WDcTd_xpB8ngyK1QARz7Te8Bw4hxMmj20ypRzOD2-I-Ueepv6XYA4vrpmNz3dVsk9bKNyoRsoKlXqONDMeoBhjp87dZFTP8RPof-QktsGEmNZFLgjLPbzAzO6IWl1MXe05aKR3-YoM9IIPIpOA4X3S4dVcOZKgk-GaDzK6A0QYo2VghkynNQbzzkOhVxFkP8bACVp_TtcPr5sngC82yEY5dIcuSwvUeUruTuGIJQhJr_dtPzVWO7_3A6AOuBNNQbn0rkobu1vnGS4RJ7U0L6-ob-Csjt6781SKZUwnwACmcGtHalMQfe0Kq0Vr3iq66k1OAn1uFhKkG7H7Y\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67f77797625548-06277795','','','2025-04-10 07:47:35','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42892',0,'cd-form-entry','',0),(42893,0,'2025-04-10 10:32:11','2025-04-10 10:32:11','{\"firstname\":\"Zoe\",\"lastname\":\"Garner\",\"email\":\"zoegarner20@gmail.com\",\"contactnumber\":\"07747696938\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vAwa-gE2OsArVv3CVKEvLfH\",\"recaptcha_token\":\"03AFcWeA4K-hmibo3Ujwp0_BUiCfa0KWXufRf1Jh0MG8v_LvmRzHnoNF9bTulpLQ7z9_ocY_qyhJVpkCgbiX4Pv2o4OuD8xOGCWgSwzxamQDxwElPZ4ieQ19_7TR2nJXenPMNBs64pZ_EbFtqdlJHZBvTTRaP2PTdxw3HnS0sM3wr1L2U-uEM3DM4dIrUDGVn9SOy4FrUB6ZqjrszILdoieWXjCD1WMPAGB1j5UFcJ8vzUv4ZkFb4P-1P0HrvRoCEU5aQKQiVwyS2gWTzi6lr7rHYqnDJBLDIr7sDk-afEMJcyb1zpG-D7p8bZ17SD29-XFgpEafewibdZ09sjiwLW_0Q4ZlH4q2l1Srja32rZaz2XR9s8wrVCdzcDNKd389RzcZi-ARybnLEB-nmZy4pr_9tWIOKC3tu_AnCs0gLHNoSg0za_JX73je4Nw8lMGxXzQw2YlVozAzwS8xixBnRIby-O013np_MEQ3k4ODNC6w75F_vtgc0Ktjs6Kcfz7JfrbyO-uRQWsY8AGNKFHyOBYDZ9VIw9VPjENcD3m-qz-LNoCg5iHHnv7VxQiEfoRD7Vou4vwK-IWvUGNZxSoEkYxUKqEGQT-osREWLoApRRAvBlIHi2ovFGlmCqdOAm7TCWRnzQdvUoelE5LO5xNobRqgLI3SxZKrqbl3md8YPWI1UXE7YCMgaHbcUp6fPgITrkzbcL825WRfwbXhejDquV0kvV2k12G_kzYm5OMDNQEr-6Db-YtVKo7kg6aYAnV0iOY99Ar16ZP8_F7XJw-5RPTWT3S-x0zeKD7lAPvos_HArGx7SGHBUDPXEIdq86ktUDlhssH4ziQmyAQi1D8r2F9yYCP8B_iT1FHQXV2wNPSN5XOnsc72CHkUBuv_ssuuTsOyJmSrc-LmNmFszL65eZCtqSbZMMgOHxDh-CrGCi6BK6W6CRw30KWB26W6GR064qx6VOh9xBQxhAzZnU_er-i24ZjEwNHEOh8WyoGVZe4Eq6D3hfpMZ4Nxdh8KbNSymyZbDcZDprBV1ou8qfWJaldco3VgX1RUnB0RhJcoy46UZaSrKP4Y1W3oLyNrmf3Ber-DVF9z3ohOli-NfyB-MWFoSpzjYQsRgK_MWMjkMw41kO6MD4QJttUDpmgPJMGe3TxYCsAnAbnw-G9IKaHOIgQ8kJz_PoMEVSNQegzXsuVPSiJS0663vlBnj8SxI6EgVPfn2jgu6YVCCYdAVGN0CjKQLPR8OUxqK76yNbyy1kns2Siggjk2KhEkOYx8vALSSib5W1_f5CfLWsV3JL9WEM9r5SoOKBzOOv3IXFw350CpxMPzJiwKzNZ8OQ2oF9jtiPo2qZLu7wPzc4lEUxBepTPsRgCB8lC8uXYIDQNkmSvYMdOJfiUK9kR6shW0mBBgTnGYUPlXrUc635eq5fXUh-eq7tG2FGKJozjQWukvHino6ClwjH0am2K9sLV208tgxWW4B3Si9uNgujTGfhXXryt4SgzLOSEhR6Jlj8F1W40XiXj91N2uhr_-peC6owMKd9dGULk94tB127kcc8NdLHSy_RBFyCXzGTeO9E5ga0C7_DNd1-HD0cX0YYfoiszEwt13_W4i8VApd_Mp7ZQ-uLc0DK0bTN68Vf7j5cnMCC01BZbKqoPetbDMyPPzr-5Ar26CZmXOZBfnE86As6ubH-ksih4hTtDyOYVmxTpLW0-6AlBdVAteBgisXLT5HGmxvg1DmV5WjmHV-zAQSSx7knsR5s96ykvhEwxkc2NIIcHWa3zfoPTDDqhAZ1N91zAlNRuzwpNF5dkfG3hVvX1co11nYyLktmQAJkrPEc_in9jnitwtPD8DZh4Q5g-rNDebaS3ghsbDaYmzacB-ysBZzNk81O_QrlqdXjL7zRhuBmUvSaYIEgi6M14kTIz-6cEQH0MJuDcaaIO4wQEZbq5Z_Nb3Ig1hZiKWLJaZXgJNXIg7weQ5XZhcqpvHKHc9x3wstMsj7hGVWzj867AOJVMlCt9tDhF_7wrPr3GaeqtgYPBw0ZJsCooV_88whhrE4vEIR6IRMPMiaRQguflbD9GLSK6teoiiLLNqZDWiovTq_PxNJYVrl_Jvj3-i3nsgcOYuSqewaUbeLaHrDPU-gZXJQvLE78bKtoGTnZdsHKNSg9QOl9rFkRAd3GJUg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f79e20c27242-82602928','','','2025-04-10 10:32:11','2025-04-10 10:32:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42893',0,'cd-form-entry','',0),(42895,0,'2025-04-10 16:42:39','2025-04-10 16:42:39','{\"firstname\":\"Mari\",\"lastname\":\"Cireddu\",\"email\":\"pt.mari.ci@gmail.com\",\"contactnumber\":\"07764250095\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4WW9KRi5JPQ3wj3z-G131SJgWDCvmeAWLBZijsm6wqb7ia7NGVo4qnrJrGiqH-IN5U2GOnTYUleZvekZCp1H_62EoQB6J9E5zmlYRu398IeaM6FB0huNtk5ep5ISNMxggYvH5eJRhCESqmuk1FrXY-c-mEgu4dycpHhtqQlTZLy_YyNDXfgEYVxUpLqMnqfqrsy9WY8OFPFZgbpz2gBLzTrGGkKAupRBqlFdv6tYN0f6fpfZZEz1lPzQq0SztGoMqmrB_wFaMJEzK65noQ2jUlOzbbS34_r6Pw9YLYGerFBQBLDeLi_NFY01iZGQ6UOaWcgF5oWVWZ2R4NIdiqwVWqgwcMm1uBcw4vrICX7vmD3ar2oTbvZ4_tBSwCydnzi3PbF7iOoBY8gQ0SJsOriiYqBrVlOIZYFznh14jydcswigOTjChyNGtUNiKY6ti9fNu9mziDBpYBCklqhUbVh0_di_-sdanf419eGIepYuZhuLyFqSiX_Yg88fXWTya33EJzIASbGBuvGeXf2HPVoEYmdiGr9Q1dZyNGr8rr07upexGHHnPycLlIZUJ3-ML8Gg8yJyt_HMofUGt343kxaqNEAnFSBzXgdDq-7xHRqhxAoqpi3_aLYVk6EDhdUw347PR92qyvONEQMSSOa3RxStSQFeD7pwkQ0wkEDPlc2hbBY_H4jVFQxxopq-lPVOr4_13ppZVCsykysZDDvNxJuV_l_Ktcrvm1YZ9-l3QN_V56xRMo7a9jnSsjfO3cw5tHDH0-vFmay_N4IQ1eyDbeOzojI2HJyUDTeqlCMpx7A5yhQOr96DeEYYU4kiQxVCaiEYmHRXmHgVimhJ90R-I8kgHcIuAdIEceczCUlz0gEjxYkvyQ-YFCeVrfjxVAHneR67aEW4AcFn40Mw9aDjXk7TI5AA_JDbfwFxe25VU8hI2aud73VUUxS-ChYLJDDMmE46Dp5J1mlrcH2b5dAxKyiyCXatCUqJ0G7elKljT4d0bUQSk4EvktK0I_OLZCObpGEzfFuU8v_QIAijG9nuCcgd1XBf35nzYwHYiM3FBVXfqDAr0eH8NpFQDYUuR_Fe_jBV_gmFH_htobEn9T9L0mvYmceKvemN8G_oj-_f9UJG0sTV07KEVGoMjyR5OpIKuc-tp2tWNDe_gUTsTICW_6gW_rNBom408V3gDK4EfS0o37mhf2kuiwJeI3061a3FRay218lQf75aWi8B1clLF_Tfy1rSrfaut36kRb7-FaSZVitonclbxYkXiSlOqvhEP16OpH4C-mb9cIwKt20srzg1ln3J1ixxbRuMOm06jUJeC8eZPRFJwGZH7rKiEakUxBedQ12TKtnZLzKO-EJvIktnk4GBSM6aZ5g6onAGxgKqJhCPnFVUtXQ4G-YQeNCTACqtBq7yc_eFrlY3Qi2LpVBjKDkKMPU0q-JfYdavt2zoavd-cYY2UYobx3Em-B8GukHsZOmFHdkiYX_yB5z1SF39qfI1Ep-qYxP1qk7mcaXjSGe2FVApicsYmP6GEOYCz_KaQHxPwt1VGuSwUgoT4BVJD83VTrrjhhSuHeNUaYBWjB9PJxZGHiKOneMnWjda-cerK3yfsf_gfeWilWHscqYx-rgDTFSmL4HF15nGq3q4QWroBool_Pb6ba8PjSRt3oypn7_LQNPgab1ndFZq_cfXMn9ZoN2Zq73b-RgRqqi5_y8UDPjX6QRG4iYPtm5JyAGG--Qv_XiueZC0N8IglFWn9Wd1Zk-TJxCIpNaIQ4n26e2zs2CYNxB3_ojhfwN8wK-EXBCRL1txmykQh15FxA6jKTNgoEgT8WKInFpNryyi9hm8H93vyCIeoqqcowJ6MLRpZnunMj0F1ne8RE_hpTV7uMH0ni_ErA9u3uYNXbps0JYhVCaKDIA0AeD_jhXI3GLNqpz_rGAjz1l_zG-Qe_uAbuRP9C2Tx8JWEu_WPIpZ7m8M-219ddYZM3AH9mgCnR2vIUY2uKup64uNlO8PBZBhFG7Y-cuIa2Rt-DHJFj1nzUHMN-u5MhSLYmf3waj91e6PEW_om6ps8fh3vhKdHuwqpW6F2aYw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f7f4e2120c09-11664215','','','2025-04-10 16:42:39','2025-04-10 16:42:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42895',0,'cd-form-entry','',0),(42896,0,'2025-04-11 14:20:53','2025-04-11 14:20:53','{\"firstname\":\"Hana\",\"lastname\":\"Dameria\",\"email\":\"hanadameria@gmail.com\",\"contactnumber\":\"087878552887\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\",\"recaptcha_token\":\"03AFcWeA4SCX5vMVTKgR515NF7Zd_Ux8uMOM6m6PZRyVtY5b9LQ1dAoVx7dFmeqHe5FTiqkCDhFMvjYpF9qP1Vi1M4mSymFfxmLRExL8bYazgvMeHPW7XylxaHg9dp0D7PeaACZHPMY7MkIlHdXnfUTViwIRt2XB_zrqK_-MA9DskA1XMutd-LJmYZRh_QW3DKqhaNYUhnvK2bYepmyRAv5iafRnDaFSVUH6BONBuXlMs2z6k4vKWAk1Ig3Cm66JN9HjDcWgJnYJNGdt-qPqgq6E1_AtDSLLf4sWdY3I23YSJgPX6x0HuAWFaUaLQk6JHipjRAvlUcEC4la0crGkmi2yMe0fklCaltDMF32XIS4axklcqDCVSjStVcnYlVT1NUeW12cg3j6wOUx5PnGf5Psx3x3q_sTWmOkJDTPSkWd-qEpKCgL5HJJVWVc_lkZFeT1Aiq0yMyJPYLyTvWK5KhhOVwK1ErrfJ5Z2Aiw1YM6350PRD-nSZmgOoSzjJwM8C7emiV3JdYHwkgobYYqGdvwklQcwcMzJnlGU8XD-fK_eeynDe4Z8HcRpohA_wP_i_DDh46h2k-u4i26kNjS7pIxbPV08cGcvuowUqQu5FbK97P5DLHbzqj_ghOcIAIXkxAt1WM4fylH_LK4eonMczVWPJ7curc6rxxphIm0mupkqhvNnoNaUBdaki3Nf8YiM4PM-YBpQKTY60mjo2SIjJTZWmRjAuyAxYsWG4QhkYJm3Y_szk2KaQovhoWj-Z45IPFCW7zW7LrqgztIobRx_wAlVKGyQcn8b75GosDvQCc_H1-D-MsIGwfYB3pwxRgKfNvLcO21nEHxJCgXMhpEX9mjWc_6UKk4ijnEowi7LqwzA8aI9yVfsWlBngqJq8mG0sVrV0eqEI1ipYdfbVcHXrUb-53jvbU63fbQha-N6fyMUc1m-Txl73mjP-2ARejPQy0IGtFtzz-9Z1JnkuariH4x-VWrDSAn1sUP9Ce3hDhbvX_yaH5eCdgJgm3mfpMLbN5tDF3dzwHvObr06DTiBxYJBrLUs5yQoqMi4gvZAYHh_NbI6_bLymeE-GlaVsu-AHzqrZmx3ru-OTIFHFPj3QRlSDBmop-0gfyWPPQQmJVKkbVnoTJACYp9vJ8TENMdJCBEmgDGeOGo9TXcJP77z320L7ZAg1UiTFXE_NamC7M95xS2Ixn5hRkpU5kmacxvwTRxMGcsLf9lByTyxgO_biWW_7PDiSNhIz-Vdn-7J9rOP9IuPp1pUn4g5OvNWnrrC5UC0hm0zscLBmYQzorAP1GG4r7CLvIH_YCKIJre-qlFmzdvmjvcItZY5tajPJ9dReNzXyuO0jewLtVgDls7AkAhM09O-VPZBt-04WRuCRFEPfEYi74ECJugvFJbvTTmbMgUwovnya_YCNblhfSNcD7u32YtBcs7Eh-tFL3ss1EtbHCq43E5KdTaJTJE-A6yR2OpN2uSWoUZtXFnBlZKFTLpoV_PZg4J6ra1zgaGzUcgu8r0kOFUtgWXy41Wkq3y_k-Ov25GltCIg408mCilewwQzTDU_a5NOSRl6ADJ8ddQ5QV10oh2a-5YcUgP6gGtQnSUxeSE98UeEVaiyx8Xv3CL6DF0ubZ-AKMKYbp9ffK8oqTgCp9Kyur1bwN6g59lJyxbjnJCvpuvnEq62eqlTUFvM1khra2ZAVj2Z09F51vQHXKsoLnUwk82Gk7E2A0XxqtuGprSqFq2ED_d9XA3y16E06f-3XH6Wi0Bh78ogusaBC8vL0fs5WGQQRouGECTOpERGU1Hl6poyXM6EavrTCdKI-654IDAEsANLaPUOWd-VxYIUWY3V6UQ3Fi5XrjFglwqYB0Eis-BwqY9dwqHL19zQ-FcPynKGAPhJd3KpiZ59JyPtpHQoXZdI043ZEU_r9jQaXCloYjKul9ObO0xUktg6NL69Fn6Wbev3Xo7IX99mCsH1vpvumlr5c1OYSM_P8hyQb-YioykmJAAFIjnZxpmxBZ4w-q7gO0s9PdDz5Ne7zLW5fAcXNR2d01ClH54n7gyk61K5Ju3DhA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f925360f2334-91031950','','','2025-04-11 14:20:53','2025-04-11 14:20:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42896',0,'cd-form-entry','',0),(42897,0,'2025-04-11 15:21:15','2025-04-11 15:21:15','{\"firstname\":\"Vuslat\",\"lastname\":\"Cin\",\"email\":\"vuslatcn@gmail.com\",\"contactnumber\":\"+905324435135\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7vwiQjlIHBklpPmy529Cxu7WULDEGQj8suiE7p7nXct43-o6YajXtF-BqhYfo5nkVLnbqJJ77t-uFu1wD8SjqDSgi2Ls3APn7hsqOMaoA3nodC3VhQh-BUmU1kna9oPJO0r3ANfI3rVmSLFrV5DBF2kRegbiLkGRWwiZV5ioBo8MdbG6I08cWI8IHmUGRNK8o8DxOvprnDeNW1mPmESk1LMTcruJ8n2ngjUyrATXAJjNL6ECZHfzzjeOFtg1LEkW8m0uCDO_egWlKigKYZIcl5APvVJiJ6bhRvbJlL_fn0UUcXOct5A-hBswDout7zGu0H7FPR7tBe0aO7AGaTHlyCHkMy8I6Ge0KtpTOlzW8co4niqUNtqeweHGvgBRAQzMtlpFqdbqBC6HSjliyaYThRnQbL11fsT3TJ-smNi9wPJbu44MgPXyUdG0-x0-liP-vZe3wl3SRbk_GjQPdSpoJGN5CHXGO-rJWt29msj5FeG7r0vNpV_gWScdO5Q1XtRhT6gtxXAstXRDa77cg6203vFWxZLCBSmBUcuEY-062g0JITSnAlwjuF-diqa5aIp3i8kGfHbkv7SfqTTajBtZeGYK62PLy64cHEJy1a5yqzcQYgp5QATVVyYmIX_XqqQM3afqc6SHD8YYiph2U_ttGoc2rrFHp1yiHeKLOlAoUxf3b0vFsZZf4R3ExrFeW5TpfDZoLN9E1wSCW3ieYn_C_CkOlaIUiQnS_sC1A1wCYcRIHDhJd6bOFjfxnYGlEa9_o1xHqGbBw9Pdrbadv75lTSuI0kJsLLDPk4uZAGAD0qeO5JGhausEZxAaWj-fZ8zDvY5qCZgNm6QcoA3NsSQQTQl1t6Xs_zZs4h7mew8bzwsHm9ZkZs6ZTHRarwYr99wpo84XcXT2h2p-Twq2p4sHND_Mbugn-DLFp4vjFp2N-txIRdZ5flVFU_aJYMSTvDAU-7IRHVx3Evn-Ke-fYLzLHwrlTpl6_HKv35xEG8Z0GppaNZXppxRTNDKk5Gdx1R9_dGLR4T8fZH_iYNAmZW8jbgqMsNEP5sWcNcCiHpU22SZt7Z72fJeC9AXOBr08z7wyOxp_cY3_bqOAMUirwasF4uNRNUO3wI31PBRGIeUH9nw98B0F_AYACPBn2K4fiPVjKNvrvct7ukzR1KQY6Sh24UFB9V0V9NsWXKpj0hDsNkYMj6JkfHWKZwW6cV3RWGV_3REdCnMWxrtXLBZvRnyv2SttvA3ncWDJG_zYvpWZDadWoVCPmodB78ErN4ycaQjV9Wqnsvsz5BtQNm9JlDxTDRpOFD0tIdrl0wOFS_HJ6odXV14AgDqZ8o456_p2Gjvy0-KoQv2GInJ4QLRwO97Nt5HEHhdi6c04cz1jDdnhZkdmcllpeU2AvdVCWHgBaHw8QX0h84CLB0jamxb70HbcxIdy6mJNtB6YC6xSyJB5QwTY4Ljl0ljzNbEv0wu9yWem7O_2XSOBP2KpC4BCJvx274w8iBA1TrhYjJifJbUDP-GhEfY6ywQnKofwiBRWoFwmbnlW40mKYFD8UrsdYNJ1V3Ba-ZUiqo6Xu6oi6r8gbLP2S7y34jibtXolyhql52Isipc8WU8N0i8AMvEBBXN8DBT6CXhuwGsSFkHXVmLP35wVH2uxj7hrHhwLk2uy7YeYTmTvH1T7drH-jYJmkuw4cTUPBvzjh4ejE6scdNmsebkERZ4szNnPbOgy74nryKCG3N4f2-2vp9XkcKd_YPTOl6e3TqkHFlOQoyGKHTj-7kuhehJPpzxsTvNwOjO5Q0eQm6WDRaU7H7tPMHoqrOPyjDCMFmNBHwVS6-91OS7TJBMsgO-7al4mwkeLcAEteRtUxowAS_TUZAm2PVsGRWS95zrNNIfly5NSoeOnN5j8URaPCTIMTXP6Yg08ZjGMFYdSvS5Y0lMu744dZ7LlwrvXV4PcCXib6rUz6U9JZK6k04fmeGOdLbluCaMiR4e3HPHHzxTh0zzTy8yvVnuvr7qfKkEGlQseZXFJwY9r1omCdyYcIwhFYmJ0x0KPEcBmZEPY-tWVrSDR5uuhFujQNVOYoDTXoVfZ_H5fNAHAznBZb14YecAb0tMbKh3JOYan0tCyQCctnV\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f9333d2c1373-16870950','','','2025-04-11 15:21:15','2025-04-11 15:21:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42897',0,'cd-form-entry','',0),(42898,0,'2025-04-11 19:25:35','2025-04-11 19:25:35','{\"firstname\":\"Ellis\",\"lastname\":\"James\",\"email\":\"ellis.james16@hotmail.co.uk\",\"contactnumber\":\"07471108582\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6u5Ll3dH-k07csazABz3HwZv&amp;gclid=CjwKCAjw--K_BhB5EiwAuwYoylQ2eLi2wZ58_E0SQ4iiOWgYgF1v_q4uqdF0PGYcvVXJii9Dg-gbsBoCd0AQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA50tY4pvgFMiFmNrFTQ0-Sef-LJvc2lZm--_kJEgC_qaeWjfjI2Bt_VwV6C_S5aYlr61KJLjByLjVBRhfq6jT8hb__cbKqqMkuYXyIbB-Nm4_RYP_qEPmh6x200xdHwuRit6x1gyIjCZ1V23lSNDM6POhmTeMzY699QclDjw77Rngawy6eT1BAhC9UHpz5IhI-ITzq81HpK55PhGnm07DiZWE7_kxDt62L_TaWuSDuCNVU6FUmSyPBek3_hXK2G8kJhGukelhs7OzoIIMH_BKKA1u8JAPDn_mJ30OVrrsOquq_3pzxPk9zH3EWVgrvbhvHHl5cAs1Xql8WDnr0_3fU33291zKEec1tRgOBDU3wByiXMzoZKDYcnb0cnYWZugXfjMs0ekfKc6XqckJsJFYkgugmnad_AgTKNwAVrAfKO6LoqXdCy5RHAUaSlyDvfGFgSD5idXCKAYKdmqDW2nqbkjaIBMt-quEBX-vLZXuBxqwfRyazLUizDh7jqTpC6CBBSLZaWqY5Psd5QZlCEgzlErn7T0hkJhaQJz2duoe-4tzBaBmkpNS6dURIR7aTnuFuiUGozp-6P37NcxDc9OxhfbP6SHPy2o3NQeawCDzkjNOVlwRmBsq2OHwQGtEuKSxDT7TyYrI1YmfhrvVS9-0N2MGtPsT7V-myn2fEjAM4hrRCs5l1Ax8ISrDM8xmy8lXigIxnse_0yYFAkrytFGcU6NYQ9vD1jXimAkrc0h8MO-MVogAbhhtF95J67-AT6t_uCs-kWiMSwIQXWiO7D0kxtGtEDcPYAUewMS1Qw1OJPL90l2H4sz82anQhBIi3kIB5FfdDWMJ3lfGyzM4rRR5PlSOq0irIV5JxIoej6SUiwU1qqcmN1dMPKpU_XBkrtraJAJaZ_pxgnsuiPp9iJIVpEy9hZQMpv5qAOFHa0ffNwpkgek-Rqa14YrRs_RRbIIUec1tL_DED6WSPpgEAzXZCqpP6exIhmUqmUXUkOmBMV0Yd7-ezRsapY1bm1ljOXXvDtLVyta5jjYMql4vJnluzV1Yz3Gqo1A0cXyS27P5Gt08aDZDRUNvsjiVdS-W7_HkHKYy-f7w7Us79Qzg-PymwokUSmSyqhDZZjPADpkGmKxX1c9tC-rpQxCEpnvv55N5aYnYKZQsmArtWq1RTse2TN73eUmQcMEeyVC13ULVlZB1ByanOcqXxjDHtltlYf0ZaUspuwlbOldrefUsCTnoIiD8ogeJDqIvr7QzFjEjaI-joojNxeRYcD_KQzAeZUQqhGXS970VH7oCDD07xNEfSBlo_60CtraAqSa4Kkkj_N4DxcpCvrncff92IJIBRNoGX42v-wlotEdw2C4bDsMg0AN6DxuRxrApu-z4EtsNAYyI8MU1jq9YTig2iwTJLr9YNsB5WpAuHhGHu7V-JwuAkqqsf4hTt_pNJHExgA1WE3Ew1B85HR43kDF9l9CsyDX3674BALt7qFEbw5r7YxXSWISfXFJt1FxlPNglPS3Ge1TZfpIJa513e-D7yiUHtheiPgsbME2d9qN4d3asAxruLSHaLE6U2FL6050fqLIPW6vyx5w1WJ-1rDOiiblUnQ7Kw7wGP5rKJrz3ozsAZPISM6jtjFnOxEEKNBZaUIElviG9cPTCyfsTyqLGIiU-eQzFU5nlfUpsi5mN1RXEKQJEq5YwuMwLMXLicL_-hSP_jhY8EXEDn7vw_ivuhpC8du_uS_zCAIRBZP8xZGJ0nfqiMQENOnWqMcsBU1Y3rHo56hj-8DjbncS618CIqDYThBX9IdZNL9qDgBOf9El55Htr8WM6HwmJ-i4tRrLXpCxz2AVHxnqA6EkMML4BHQ_35wy7cx674majLBpwGHIDmXf3hcDG1x0EQIDYL4uKd9Go0RDLyiHs-eCSwniI7hal5f4f5cSjy6FrTqcNVeyh7qlswnBAgBCx4DMiXwJgEy6klX_FbstKAgf3x2yc7V2TXzprklJkDpCgLaZcBjdYcsuF5k0RMqTMFUwtyEpjgwIRjzeZa8ZhzrBcpVi7IdRcIDUZeSRyuBj1GCBB5SJ7IIF7IMoboxew\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f96ca4282a73-45697688','','','2025-04-11 19:25:35','2025-04-11 19:25:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42898',0,'cd-form-entry','',0),(42899,0,'2025-04-11 19:27:11','2025-04-11 19:27:11','{\"email\":\"ellis.james16@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"NG2 6EN\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6u5Ll3dH-k07csazABz3HwZv&amp;gclid=CjwKCAjw--K_BhB5EiwAuwYoylQ2eLi2wZ58_E0SQ4iiOWgYgF1v_q4uqdF0PGYcvVXJii9Dg-gbsBoCd0AQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5b8lVmZNV34s2xGkkBedUIIquUsoJt6rRYBuv3YGd--pu2_DTvf-U2fg4taw_AW2TNrvINsbIWoTLYPkH8EqR9RRJ0kC6K1cxw4zI-rvAIMFaE5Ra5E-T4pQUPogLgTb2wwWfFajDvSoK5GpJMdE44o6OME_xwLQNSwcDiBV3XJRlZDrUXj6mtDLS7x5j835ZiKq4ltYlzgwiOinC10SFHG-kjfC9E4-mHgQcpVqGa6zjd7NfxvMzwjbgfpeVMUo3AXZiPtM-OYuqPEIe4rqHEvo7E_9_T9kMmgtj-ZANNwWD63IP-yZosDt91lWID3rjeUjsMwXur7WyJJfKCfb7RZjABVDVN4iS1Wst9tyjHFmlOoYe_XD77OI8e3qNM1e-lLB4rf-THjo9ZDo3wfzUrKH1XolhkAu_KLeLmN5LUa9QtrnW6-fV_Lcm_YBEwIXIp913h9l74T3nfAEDHkzVzs5lUGGhEDqXbnZ6rVA9qq3ExM03mVLVsY_57Tqr5SVvKfpYNfhoQlarSJIZEe8LD5oe8aEp9rIt_M7osBJK76370u4-0Zx5jJ-d5aVX8VVR1mJ9m4Xhn4ZmuSSBsouz9SR4HHMMVooeBcoQJhu626O2zKpJ_8KloCS7Q-9GEVI99N17uStRHakItcaZlntDhMrj6HjPOp89F6yFs9yxMaMFBt5NPWMu1nISU6mHP_wJrIo8qpHOu4Iyl9grX6jxzTPob-dg26HI2NqNA5ZpLFclkPgHycDhEWc1f4BHCY0UgMon6GgAZPaCMDf4DAfiAlc8kSaqFZ_7vyCcf09qd584M057ZAUWbPdDNFDQwXabjWGlfSuDXXnFunBd7RIlavwlXZe9uaKvtoaYULkOq5tmxv2lWhxtTK4dvJne31q0o3zTHOHD8w_vVQTzRgXF8BJ2HgJyYn7j1-y7XQb906E8xLlbaBQ7r-op46zTz4ept0wGTU2FXrNan4gF0b-dA9Ta2Pu6d09PraHfj9vfrTRPuofGinnQ37mDSJ9W71E2nW3FBGF7eumRaxDKzJE1RnW_378C5rbOfKRCuUHfM3aWHvkuoysnxrYMQgfWDXjNwq7Bu4N31XEQ_5p9lB4SCY8GwJhyS9T6i77Ft7eHA-5We09Y6eo_0ActP1TxvQTLEh6mmlcVrw2DPnqBHU9U0GeXHn6q_xtERgXDWCAywueCIviSq3c3Dj8rfxHa0cV8KoJe66327O2wp7iXXsF4wNMp7_LazW2v86Xxe_r5M9z9WXFIIXelIYQRQVHhZBxq3RlK_aL2BbKg--b8RPSf3rsv1GPXxriFIB3Ocd5pMcJVzeox5YhQ2ly1RhUX_7IwFclri4-7eFGboLT7XrAojCNAK99Q8-qOBDmK8KEJ9j8wjDqshZ-HqkVVtehuJ8k3I8L38-4zw1eJ0pp8zihQEzyWaiZTgyycQ-Whbump6uWKWc-KF6lCbhJ46gYteBdgiSaDw2JOREatjD_xsP3RG61Feu_dTQL37JdEySBsCDUigDx3100Xm0JzdlRxXLT9dZczwkezWsLC9rXk5CI9TDkEBcSvyhbUazj6iXkIay-G308xMp5-7zZQhfZ-kcutV6IpK0-fFYf_q6RaUZTqrozlyDpYRm-wfYhbW-qDrBPRAFp0Rdqi4yLdFvcWOZa8gbXyYzPspsx8NCyLQROwge0JqXY3djKTXZE1PVG4dayqDM3uxK6npWhIqWuJhj41la_uqH0FDHtxKSe7YwsbBoJq3-6MTigcQnVCBfdg26Pffi-yLLsXMOcOPAej8239IuJb6FNGCt8WLQuC4B9pFJTmiuWke_K4bfnb3HoD81QLwoNR5fqxsusijLS0KYW1CS2956Ho_Ao_4LdXFPDg-OX-dPp6YYLBElvOEtm62Gbwae3TwWq-Jw6ODf8a-Jkq_8Gj4l1OesfUJW6-tetiCG1Eu1Ih4jN8OKskpZOuhjwISQiQFUBvLGhZgjCOXuLkwrrcVhGDxYYH_3KbWk5dI97dJBiUvtGwO5UtnF8eBdlZq6pE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f96cf2490e54-01254876','','','2025-04-11 19:27:11','2025-04-11 19:27:11','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42899',0,'cd-form-entry','',0),(42900,0,'2025-04-11 22:07:40','2025-04-11 22:07:40','{\"firstname\":\"James\",\"lastname\":\"Lewis\",\"email\":\"Garagegymfitness20.20@gmail.com\",\"contactnumber\":\"07899056450\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6u5Ll3dH-k07csazABz3HwZv&amp;gclid=CjwKCAjw--K_BhB5EiwAuwYoyom53EQiyyX5aEyHRF1vjwcaJKNTZoKrytAsm3qWEX0KaoMHRaq8NhoCbTQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4F0td9hIGpTLoM118JXbhaDDrQIB4c7GKpwN1KHfx51did-TH22iJS1QHLIW4XP9NWWPnwEj318_aIcA1b2qutQDUf-XOMs-aX3REe-gMdI2VmWi2lJY5BNQqNKEcK44HbiM9L1N1Ic_wXJuyvLZmxu5LzqyWbo8OqfodJys_SbKheA2GRDckSZWCksrVR2UHFDX2mIkBfL2hhP9GGGqN5NzY9-d355af18qS4oap9Bb4McZS0HHtp0WIk9dHp5_Hdst30C-lGM81MxA8u1lL_PYX8vqrzM6hks4xfv-aZE9jopdS3spd4n58AImr4BIOI2y74cKXB76MuCcpjQcQ79RIpM__EkWWNIQrSC_udnG6l718U6FcejUu7U7JHCpE2-5L-pk_Q9BISvw_Ni710Fq3iabdsuVbO4lGDgpiZIFYIQExRkCJsCbpFaJoa62ZW3r8wDZ9F4JBwo1XMQxydZPNxnFvlEhu-FeQs317bkT4EiumY39PrSeSjBoud4vb4eFWbgF5sx63lGozk0RVY3689vzmVI_WeZZ2XAqQwPRB31Ev_2RRGOqvTp0FLxpauz_zTe-7sTqnJiGb_LjmLe5uTQuY4y36K7D9eNzYUo4btkuJWZnnTjBYQ6XWdMTmLEKfn4Y_tT3wvahqAGEqzyaatgbvPMQ7Rw5k5g0Gl4RbpiJUo5fDrydo_dq0LIAadGWi4DP8wMccinSYN4_Ojarl7qQxz1SKHS4-IzXybnd6V1D_C0yIsvXbr8KTGWMS0ckN-GJ-PkngzYcNS0bGc9-rMZ2-8k3pJqZW_2wABqaFVklXPJugEcJM4AzTwXd_bTt_O_UfjVFe2KqPnFtU-oTVIlQqLysxj08mElsrFNO8Fvcyt-fX8TwEvqxw5kE0luFcoxwSqg_e4IN-ZSFUNYhIm_iK3fAO9mff8S0C3ejgAC6wXd6L4ePUC8zJ_QoO3QZrRHmPhBsL98wb7nOWe0-OhAC_0xYlOMNS_X9Yd8RPKet_bJq2i1Bm9Rv2JMPIOZk9OglVDtv_ZCa5nkAzrJuWXJb4cymRF6DbZcwOOF0K07rVH__QE8xZHQgl9FUaxMk-OFPcbn-2HL9Q9duQRGoFYY15D2tgV-IWM784WHibw8GSsNa2OzIVpkRYXm6aVvZR1aqWoRShKs-onu3Melfopk1-Bq6E6RJDofRFl3KtXVhqbt189u_SH_qo2sjcqP0VDMtI22aXIkzLzd_PmFZ48iCJ2C6m_PDmlE1onaTysVMfm68KntTY_zpZu1VGHrH_zpEXW_Mas4_bAGHgmJMJBoUErm-BNhXfBpXKim4Dt7HXZ9cQQpngPVRMZi3d9Gxvy0JlNE2n2CnkwYxMnrIL_biTS_nMGuzLRnGhl7pSSeKy6HNRXOKwg-8QePLnwRi9ANvAbGeGRmH5hf2ukjLEj1z-tZK2_XcWsAFKBma--01LAjQ9oAGkcx9idqGSZsBaCE5CsyHCjGRFtxi5nNT1cs5DQv6j8KrHFAxkS9KjXwtLrfqkITHOHPpxxUOp3goYLd4mCGBOguspi_cWZTbkKyyBzycU_POl6ffSiJqVFoE3tLV7Up1SUcrfhxCJT3A-75KFAhxPHnpU6pdiapv2WdoasaK-esRphp2BKjwC0mbhbsFZPnYlrOqpJEAs6oJSnPguTMorv5zFLED--pVx50uUJjKdOATvMZB_6l0ci5YQ8BgCXTBIjZJSA_VITKl8vJiXXgFSjwqNxi8m62-mdgPzs3DK8H78bbq9AClL4Je_TknOjCA05UxqaGSMkMVwq0lL3IFeasZoAdRtY10TuO_p9HWKmIv15mrQAWH_i_ABt8R5YpmODSARTOkwbRMVjnN-MDmrbOEtIfHHnYiDFPbpOE7nN-Zmb9qXOvYnx6OCNGmvL1ycF5HZiRX2juMmlKT5lYBpkTFqx5uKloiuQ3K2EDSZxa_BVVrU0L0s_aIXePiGPMbhyuEjyD_5QDzXus4C7uxJoMmoPdSK51Ll2un7hIENgwYTL06LeAl3BT6ocKVqKebs6vT4eh6Jiuc58sv0PpROAohZ67a4ga6C_Lg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f99275aa7dd9-79530849','','','2025-04-11 22:07:40','2025-04-11 22:07:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42900',0,'cd-form-entry','',0),(42901,0,'2025-04-11 22:08:16','0000-00-00 00:00:00','{\"email\":\"Garagegymfitness20.20@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"GU1 3NH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6u5Ll3dH-k07csazABz3HwZv&amp;gclid=CjwKCAjw--K_BhB5EiwAuwYoyom53EQiyyX5aEyHRF1vjwcaJKNTZoKrytAsm3qWEX0KaoMHRaq8NhoCbTQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6tWmwVbyMntFZ080hOnEKMRu58mjWFLFIyEfgmuS8CS66jCuCunyCfcL7tVBLkQ--R_tBM0-3Sj_wE-UrbTz4OumQqlIN7n_v79alRVTSEjt8NVcOT84SY4AJpLEn9nW-GNH1jFKx2wXyXiIPxUYX3wuY17LAOsg_1Zb9JxSaIt-_kPyCV-r2pUw2we0iGD80p1S1MXtUPZX5wmyga74V6kOwyN83feIofgHSe-1Vil8vEVsfYeFO-usA1LbWbyuWWVqO90wEylJQakJ2NEMyr_1l9ym_weYXrMe4B6roMaFliPK18yiqkSXJn9CetRg3VcSTmYYtuRt70jd6yotCipnKjt_Z_JI8i25kqULk07BxE4pERecfhZdRIac5G8Q46-hqGiF9itm7tYXaUfmqpt3VDSPCcvqM4Ug9wO-9v4AXDhFVwSOOSEvDkPy2fV14cXSQpO_9xajfhTSeZae_inYWxQNSEn5gQBedC9MI6qZWTyT2vNbMHDZwKkZYBZuDsldm1OX5poZOGWQjkGTEaP7GenWLAByxdG-1EO0mVSr8H_kP-vW9BF7j5MV84XhVap_gSqMCB86SZBhi4YJTCn2gCsDNBn4roIKXE0QRGJOUAsoP3yLS1Yp-Cr_eH1STbtre5ktJAcBKvFfoM_5kJQAJCrDM4ueNQ3SZeLk6IR4rOImv_RGr7fqnRkNs8nGfW9CSVlCCXjyxQ_hs_nWyf1EXSlcn1xBznqQMeLhwdMlOpbKp3_wQnUOGT8A7eleyQO5gKy5J7vSX4HjRqwHqW5JCeGjqlEzTt1WKKoiLyw3wWeYXU515GoI1Ge5y_XlptRjkIb959LLu1zRUu49DJ6e9fHVyGZjfiOnvbgZrTYKz_Ecupc9trFWkZq8lKoXBOfDicHka-g1V42F6GsgvfAKyLo7Q7fdRFWHU4uK89ve4yUJEczWykk5AepgZa8vMgI83nLDfTVoTnVV4CvBTgXsLjwfaKTYgHFEb9mXTGiN4Kv3mX6k_GrswVCfbWYSYMJIjnwvQSR-3uwVLTMUmOKjO5YMHYC2VqYfFgBW8SRs3Wlm_SuKh0-dCvuU15CTzg4SgjhXyGnTENA3nTeznBLuMDVAVA8qr2-lNdcSZFzRE4WEn6ZBo9dLJt0t9hzizFf5_FHaCuLr406ZafpbGTETEEw2nUcl5G0tqpbHPK1UaPGtBBUnzpPe-SP5e9sHpu1H7s4wth6k7VqbHpJ9M9Q5t1CI6S5Ey38OfG1bUkekkZrMRFrq-iKJdz7PzZVVTu5gIvSnBhlaDdYuNsQahzR5zDbQoF2lTS4c3pYcB0S6eybJ69BHR4DOeWwZBmcb0gYC6_pMoFH09_xQj7UUTdmfhdZr7d5TGEO0QYUu4A-gxGO_FqpLzVQW9P7Rca_aY2O9LB75T0CKo9dqwq7RgvogqVtyLRnMm0_YW50lXePuBEyThpg8Sid3eDphKCrqgmFCx_ySnrhmdu678q2bv_xIa7OosPsrb0shIJ_UutLZipP4zh-sd_EYocr6W4SfRBxBf32tQoEeB_IS2w-TG1Pw1YLfV-poc_7O19iAhSVTIno22ol9rDZLs_whDm9xKrH_EPQV10WSoDDnpLS0bEW-uovfvMP8C226U2ZwlDzC1oK8ximOLelRhzWW6Us8jWwv9tYFRlNjxwmKGklG-WBCMeG3Ppg68C4ZAZkos8EOONnubWfg1EESyxUYKY8uM919WQ-iW5JjEUPptR39U7gWz8_ofUvRVRmHjdWweUbtQIC9Wv1QfU9Yxt1JdffNq7p9o_kHIGRARDxsBBntUFyb6ILmpNy-gCicF3YFdzUn0CorOPsLv9WFAhNmwpLR83sP8MMDDm0FN7S1CU2NXoYdZQQopElarhoSXlBXmpgfagY9DwMDoApi5BKlmiadZEQAjlN9NOAIObL8T_KDRRmxN6iaSYNxzN3sCX2qaHZrn0R8ATyNl9Le-aLisBO6fdFUFfdOdgePRi24l8wh7EX6_Fe3e5IJv9W1IaRBK8NVhC3gInbDrioa8Ztcl4le3hTgGF\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67f992d025d642-27490556','','','2025-04-11 22:08:16','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42901',0,'cd-form-entry','',0),(42902,0,'2025-04-11 22:12:48','2025-04-11 22:12:48','{\"email\":\"Garagegymfitness20.20@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"GU1 3NH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6u5Ll3dH-k07csazABz3HwZv&amp;gclid=CjwKCAjw--K_BhB5EiwAuwYoyom53EQiyyX5aEyHRF1vjwcaJKNTZoKrytAsm3qWEX0KaoMHRaq8NhoCbTQQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4BeFu5SAW572NIzuxQysrP8ZzB8WD099dyq1mUtnXb0TdgpgLF8_5o4v7jkVKZwzxEkvbWkreBiewbTN_7ShV24lNnInYSX2UYujZN9n7hd38ocdSrDbzg0gEG2qfS6zi8U3LK6lvoKQCZCdOaZmoY0VCVqEPlTuqQ5ykN87BZ2D3chL45WYOIPXMsgyAXh0KpN7jC08LBEJGSc1PtqUoy7i1-rO5YpoMIjuhkHkgd5csTlkVm_t53Rm9eRWFlyMwR8VhDIJ7gnaFX5pgfyQvY9l0Yg7xnLBSzmy7v0VrFxKAWcnJu8J-XAisUKogC1W2w-dGvy0iHlykZRaczG8_piIkk1IfaU0518c2P9mD1E3hqEaVoPBmkGdPf0fC6uwxBtbaV80oprPrOolkEB4_c99PaBj2TjY4iZNTgG-_AFrArAkLRhDaonR6vOARoRdZheAultHCglik37qAQvAZsdaqH5_AXRUP-FfrThoxCj49yykkcZZv8PeOn3IsYqf7ZrMQv3ZAlrxAhwYiS0dC1_fPM37V0LKw5E935Ck8XznyN6mWGWXFkvDmsBsgdlAt0f5jxpIzMrOO5tkpil3hQo7OX9zZr0b2_oWCD8t13ziDWaKB6P0Uz8zJki6AjbIHg_wEWMOO0X1vPeDxtfL_kkyOv10KttTYkIhcPfrPvyhSLRq2c43lZZAl9-M1FoGyxiJ3dSlQXQARW2ZIYkR0uJm0pmu1bCZInzHYVC0tucqS15QAcNItXPYoaPOiAxeA8qalqBy3Xnmt14oCHOQ_WV6W2IeG-GVy_SFFWKezdBjbtYw7MZZ90N4zna0KHqCM6B-stsddcC6k2NjYKkAhJY8HWaxADL3T6jRm89gisM-TXbL87U-o30cDJmah4KJEX9wZ1lK4I2LOA-E2Ywr70hml8762leR6ypZO_JPDUVbPgRNlregWt2J50jrfZilsbu8foCqGh38lcrHC_BUdNYwK_LNk98rleZX1XaQvzXbX66qSy6C7fgCNZoBUJBQ_0AHkk9dmWwXx8a3qR_jg1m_Zw1gwkVo_IHKwxlDIK7_YJRyH65sY3C0stueDlhPrZerSqoxnxbHqVKxo7BwcsV-lva-b5tBEVUaC6h2ZQ1ytODnLU3CqWkFdO0dPjGDOLh2docK-Wlg-G88t_bcsZSgDMOkmtgp-yPqdke19Qw56rKf6lCQ4389mgKnxl4XmIV1etDCL0W7nWNscU-ioVpwUY8ra1SkPsluqautvnkWJbqXKnAZTtqQwuLKHenlv8V89mdS4SxNxO0n1Jm_mijcyYwtnf8TchfGAGvK0W6gDjcpHkYsPwKPO9MpkijoKAvPfTtSYcYTfU4Ff2R20gp4VDj0bky_QgAvvoQA8jWtm4_lH2Fc7k2-TuFwPXisN8mjhCf2AbYV2256z6ZP0f18dejZ-eR0LYTc8WKNybtliVLV6kq0qozRPqbBTkHcXcuOELw2Y0OSQyt1WdC8mWnEwBpzOXtMl_tfq8O5ENmhaIVhdFs3usHUtAShm53-HNkPaJu9zwtkXKkEaaYEg-_-wuUCSYdZMk_vXIRmNOBHCXYTbTYvzkYb208Gpxvljnv8WviH61oKvjC6Gkx6cBm_DbGfccbILyncRLc_DvF8S_VT9BJoITR9sqGgQ8mjdNpCLNAAkE5Z5jiVX635nJT5plQLUmwxmI2JthSzeMcRnh-tu65tTrsPGCM_i93pV5nm2XUB2rR9ALU0P849-oa2yTPhbZrIzgOkWuA2mGhxL7fDoO-XD_jUDhkMFNk7Frq_hj8WfDy0N40lv5LTPYXgGBKIg0BKT8pNJTQRdtBEZMx21jXNSsqla9t-mSJmHzE99P3gDA97DoyCDSP6VdUQMP6S4CRTxNAScRjWH_gzMRQvYdQ3lzEz9mk67QEsoYsl2gFPHcSfAgGALy1QKpij9RD0MG8mAIG1f1qxOKKt1JGGtRCz3AsIKiGAvk60UAc24bhU9zIGlQ1bnduIOJF47yVg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f993b8778375-99482398','','','2025-04-11 22:12:48','2025-04-11 22:12:48','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42902',0,'cd-form-entry','',0),(42903,0,'2025-04-11 22:39:40','2025-04-11 22:39:40','{\"firstname\":\"Jacqui\",\"lastname\":\"Duffy\",\"email\":\"jacquiduffy699@gmail.com\",\"contactnumber\":\"07594663593\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw--K_BhB5EiwAuwYoyvTjYLOIXTq6xBziDLCEEh5LAjE5x_mP_FalSawnO1kSkCLG0V6cJRoCdBMQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4nBxz_2sJpz7TstCeo7hxBQfRRrddC-yZPRe2O4X9GdcTdhz3hXkH-ka-y1th_AM1u8eLwS96NSshLZyqYtfEMMT6klXq7yneIH9yHwnOjKSbB0tuaKpoOINZdbHqpLY-u8xw8PCf_O_7q7zULeff_J0zjAqlqK3YMIgfgWsVTvJSMnJnsJOZ0TzgknfN5Zm_Yizj9ZAtdzfF2Oya0a_eoyg-hsxst74swEHCQv2Kvkv5oZvomwYbtwmUidJw1F6jCWrLxTwwR9WNP74YIxJPbAC3RdUQgHS1p-QdmS_8rzwLVYU_0j_Cev2EI5V7xrWvc6rJklDKaM089sJFAhhUTTva8lFEu2H-HdQibLbI50z-9XrNtCXAztz3DsB5_CSxUF_9RRfSYCBym_-F6HPlV5mHJXtEL4bfmejHSB83nbHvOOlnp66IQviSTAPdBy6n6Q0u78NFReLzQ-peBu3b0Tp2TMaJ-sROSpUIjXXiQWjuSMvqbJupuLByhmFzvS05qJ4KJ91DX8N1Gfcf9Rz41x5n28WRjBQDcooGmtqXbYd2VMZ7UXn4Hd1xH3-vpJR0vCMWzgW8NT6Px2N8gjcPNyHS0zFZhMZE2XyZZQLHdE10pQvyRZE9lPhWu7ctAZSLy2ST-6QLA_1_7p_LfIlDcnFDfk362NIHWxJtfZwPvPjWJ-GUbAlO5Qgtau2MuqsutbXpbLRc7uHcc1xT1oi_wJyu2aQMd56MNQWZzNe7C3Z29NliKdaKlnyeq5PunCSQpp2o913MBiZYsdJGbd-ISQJGLoNCLS5Hu1-APTrIwqmMTBXRBGoIEx5iUGPrq1ZRCqn-QcNCDb7aQGiLeLZxususpOvNWAvaUDxNk7cukCSZPn_k2SYq1fhUsTp3CCe2osdzO6EP1ZdI2oQ7uyvipTEzlDBPYou7wlflNipmBkiebXK7W--oEzUszsfuN1rQm_PnXu5O4ns7zSSzoqyd9IkOom_v1dXmkcC1bMQNpjKfs3K1G-TyNd89kzeyyGhTmm25Q_uOBdAjBGZKIjB30wGADLlUie6334SXvVApvVJCW_S3-BQZuDeQPwBg2LeU3gseIVyw-Nh4hyOd_h9f423PaL-qxudheSxof7KjN5Hd8H1lTNXqxOAZyYkaVcDu0j8GCJ5Zz3JuzhcZdBH2KVnl0HbMvjGEcXrG-2tS83ynDcQsIcaBm0FkYh-N5qMzPhAdow9_8WoDf7FzLKt_eX7M4vZCVmhm1dEc4bCWWpuhcxsARCsIQS61FWQdZzWi8ZLxy5yzsO7X-_UWTxXzCh4YvX2p-5b6pHTnOdDtARPs43aF2ihsX3-uc5WTNiLOgZ7RHuZpltO47AHGZC4HNrF86qfQSKe_dz2OklDCSqmL2h8mO-h3PTdJvesYy27G6l3AAr4ssN6_M1mhxN5FUfvQ6f50k6l6Pj78R-Fg_mugEmBLAq0ZT5eEovm-buAEKXyOzK_YRZ6opC25e-GAIx7HkZ_Re8YcAu0zh3BrTNWOtaqafENZ2znlIW-AMDMNYb6MzqNbAnsmCQmXfh9zP9LEy6N7CnZ0-C-wWbccgJAPs4gDCdSs8_c-V3qzPd53D9zi8EnEsfv_Ti_Rcf__kusT_-k5MeRuJgrdkkhrOHG1ncy5ycKX7gxIEGNs5S3ItSDCqXuVF4t4t0DII1y4cyVexu-8buOVXjtcP52AhkID915CzN4QX0K_Ia3sKbJe3chYC5xjNtF1_En-3Jff0H0n5YaHASY4DPHLypjgFhd3g9qol7ujqfabLdQyhK-KTwWVbThXr1XgbEgtNpcZdjC3O_3JfuqW1yAsck4OKqnhI5iZt7BEeSmgKpfWEoLhf8sFLJQqxUoZ0F_aLnWwenLP0spl3ssE7PakYyoFPOlNbUJafzpxVpCLameGFLAiRd1YudpjjWOTt1kgUSSQurfO2UYtC7s0xLJOj0EtDh6coyIgI6B1thJJ0vdqqHuosJqXuUpmdOMmCAJccdxJGPPqZ_k0y4YcfOh2nx92wvONdyy2hMvFq3ltHzXI6-lcNuhTBZgjVtcYS3uTcmpRvclY1fg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f99a04bc1413-67789043','','','2025-04-11 22:39:40','2025-04-11 22:39:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42903',0,'cd-form-entry','',0),(42904,0,'2025-04-11 22:43:21','2025-04-11 22:43:21','{\"firstname\":\"Jacqui\",\"lastname\":\"Duffy\",\"email\":\"jacquiduffy699@gmail.com\",\"contactnumber\":\"07594662593\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw--K_BhB5EiwAuwYoyvTjYLOIXTq6xBziDLCEEh5LAjE5x_mP_FalSawnO1kSkCLG0V6cJRoCdBMQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6d0_Kx9OGrzU4X1Dj0jXiowuw6mrHhaFHWv6d8ohzKplcd98pVtuQjG902b6BRuHCu4XgiBZtDmrq5thMVwqtsZAG4lMlKWK8-b1i4BSuiI7atGFfPqZ02p30OHeq5nwOUGq-MwSHmGlp0ggfTvZ1w9sM0IYhUyg8HG5Gxwe9LjyjlNsKTkuZ95qA9m0TtD9G6X56GBdzbeFjUlgpSbeHb6X3jQtvkkaIGdZVZl1G4Jm5mCHm23s5UEwWmehkQYbxNq3xuSBSV3doTCfym1Gy8I6N18LcKEscMHg_bIy4aii-HsqAkt7sfT4Makeeba2U2hiolAijb2NVS-VJft8kj0snyItmdyCZJ27AV8JIZ4ksunSotDu4oHi_KCTYtaOH2FfoB_ndxE5VVDIfrXF00Jcbjyz7L9ultRAk-Sd_-dJDm2_gxn8zmiJQ4rH1d6Oq_SC7tCu1LepdSu5YEKfhMDk7rNbgdWg5Uvd4JL0PbsjP1n_y5VbVMQz4bUTMvOvPUk7l8tBXEClfn0u6Ue-HZa5sLsQGR1oqYtLnaq8UbMzSXcXjGyeTcMARssrPYRlffvZbJ1u_FjeDGogyd1H8Q_UzcpLQGKJHO7sVK8Tu1cq1SexyBbv6l7G3qJMu2U4glTua1X1iSoOKnTRraGIrgNy59gq0YeqTK56E-Xh90bpubblDrW01CKnAatmZFbY0QI2QGolvR9H9lRRPJk_cYYK_zINvMV8c69FyrVzZJJSAyLfu93_-6offrPeKcJcuWhpedEE64uj-zmfs_b0eydxxkf49yhVnJC6qM-QykJdFJdrugvAVgrLi1XpifDX73y5Iu-PamfWPrY4TzgoHT1Ev4iHcTVjfLEm2566WMtil4570--kuFstLCMJt5_6fw8se_OnhqpGi9qk4zNT9_luYN5DHN_v-Tbv7-YN_W9EAA0ypcghT2i0TXDQB04TpAv29z2sPJPr8h9tYfNhYy4LkOwgUEJ5ohnJFiYXbCmBWaBoSEx3R3uW_RJltT5ODTEXlh7fgmRrIYtvg_7qZ4XJ1RVvEi8rolP1J1bNfB_-quMZPeekcH2A9B0rxPtqnZWWX_WwHXT_07KUirJL_3Zj-7d5flzaDaQ4L99J7_qfOLiadzeBDb2Mn_j3LzO6GYdBSo9kAPdHOojxhjC6dNp51V9i4hb9ZFdeHcJLUlZ8hzx2XZkamupuFngkCb8UmyD835ES3ZZTRwTCJR2PNOX5JA9kmchI-patETgDb0v9Ug43ircbhfRmmXdl7z49nHqTa8OsjrZFoCaR-ec_WW_KizYq1wwUVfGy-rHiqfGk0TG2Wtl3A33fkdNgDwX5PRjVkidAK2KUNRolOjcWD7X8FgqLGLHeT1W9V1R9IaLCTjD6TvzeZmUyXzuWugrN8y3rURp4K0iWXgxAikUQ6zn7950HHezXDhjhudvS52pa7lcfMc8izRtNc2-yblRXyugtKXV3EjFcnDu-4Ze42_89s-HpcbqvUlUvBYudApMvVajlktsZ7bwyKRiypMr1Wvnn31xopRxt4ozIOXD2iq2bPtNmSxVNMxUrF2iYdU-BnvbSSybWl8zarjYSHKXaMnlN-vzcjMeN-j8lDIFKyNVcjKP5qJt4N-Kwec_3htdcXb8bfarTqGfW8tabNl7IkXOuD7FEeQXXXLSGgUj-KZkVTEsQWDoPwbvGnMAfImCBmCjzdkqjpsA92RuR2GXR3O5prGrxsCU4mi_rZfE0ZMIxCO-KoTxU8ZY9g_uhCDmLYMC6juQyYhSGqiLLp7bfo7B4vD5itkF6p67QfNumz05PWTladhu9mcjZNRRqtdqq-Wi59gwtQd1X7vrBywQY-UJOqu-l5iGp0DujATA-9sAlgXlVyM_vKPhjlbS7FkoPUY6t7mMYfXcJ7hapyaH_dOjJ5v2WAh-SwcZ8JKTbhDZpLOfDA1a056BJ0-CMNHqrSO_FUxivUntreDcZQpxdlVAo3gLeWoF6o6Wb3oIvUUGEnXnzOO7p_j2Yke5N-Ok2wl28dSji6BW9Prm3huubobvNO1TarzT97UlLXZuZQV9dOffEzXASzUWQWBMGIcEpnG0UI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f99ae026d936-36101695','','','2025-04-11 22:43:21','2025-04-11 22:43:21','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42904',0,'cd-form-entry','',0),(42905,0,'2025-04-11 22:46:19','2025-04-11 22:46:19','{\"email\":\"jacquiduffy699@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"11\",\"currentpostcode\":\"BT43 6WL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw--K_BhB5EiwAuwYoyvTjYLOIXTq6xBziDLCEEh5LAjE5x_mP_FalSawnO1kSkCLG0V6cJRoCdBMQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA787-3UsSc2QsSxvUBAiujQUAV7a_hjR3ZJSuXpfVFBDNhJvVK7Ob62fkW2RJO0oL5N1ZcD08xdERbycLIJiXcsYf8TsHPPk24MKEj0xe5E-o1NVezKYIEYNFToetXaLDsTUHDM5u9CwMZpxB0YRtXxasXLwRjM2N2sN-TDtzikLmWXum9qOU3Dm_5vx646l5gQevS9AKLviHb5Qa5jgTR2ReaFlzT0jcZZWvUdTsHj3Qmn9QfpVt9OTgiBDvp3Zqb5CgZKA1EctIGMIV0U0vkQ5E80KWHx6iaDcXp2zgQBibRHcyE2yUZddEWPY4zcPHxXM8anU9vnKPak0Fl2Drh3-TAy0UPm44IZRK_Pt-2Q5FOTUUGhhRld4FuBq-knbGibhf5OeDG5eQSXUadw_YSW2hUHvJ0z-FuUaSLritDF50JM6_hQQcZSZgsGwn7WgF45qum1LeXwyorv-zohi5wiWJi_dGVT62cQsDrlXInqP7boF2qoCHiy3199xCVl6qeeUN1u5xuG-X_zGNL-nFQryAOJBisFIe298WSkx_LlXENJQPgStUmKzSuOKQmF-4zX6j3F20zah5uD-JefI5jyH1V3KDN8Yr9W2r6dCgrgbXTj2mSwhz-Fmz2ftrfKDaLz32p9jMaW5lkWAIuTRH3azed9JXHMk2szsp_7wf74G7ohopT_rP9M7J9QWhy64hCjsL3bFnaGbvUe8XhBPfJ1oDVOOUaM-Pd85f_OUfWkP9vT9B6ujLsyyaA17kvqLMqd4OEsSK0LdsNOeDrLPZi1-q6ynRJQ1xs8oIBv3_SsHjMocaREC0SfjTXsGc-bbqtN639LnCQrW12VAPgG002cJbtqMP0lXYyBNtt7NmGt408QvdIkF1FQGwLn4IbSu9FpuVWi7Byd00n585CNIYOWyHgF7qGGEUifT9knFp1-Aa2KC0LBJ6pQHfN2KEoUw3rCIdRYdJY2J95QwVT_tYi9cFzYqMSU0LcNvSklStrO3GFwPBd5pTMjW3JyibEchrsFVubuXFhBsBGwjFzmIeD-vDd09UsPwKzgZvZFFfw_y97fJNMzsddvHjbI0xEP51ZJm3NxC5SXO3fKz9crP-B1_WoW6GqmxRc2E7JiI0FZAdNZ3BMbkbpc1spGDdK2UGVo44C5vOsy2avD5l-haY2qB3IGD-KwYj-isUosyUdYCb4YcnpHYY5kWIiRDVfrT1o-vdO8-BNuYhgEnsaBL-k8r7-ImjQ-xS4ilujHNnD8o7fG-0HDwq8-uLcSTExmR1Yd07PmakOeGyXpENUOrkD_4NSXvnEwbkNE_gOLT0oiZbLDTaSDVWK5uYwem_2D9EdOmixtmOO_GdC-T4wbP4u7BLArzcMdzHGVSwetkO5xpmBkcdcL07p2fP13ci4c0P08RhKt-Fvc0cRLCej_bS6WS7fkwn-K0raeTLUlaNznZO7K-7TlgExZlN6UPNnianYFoO--mBJ3gCev-D-yCNjs9Kn2y5UIwzQ3a1fOoRRHesqSD9daDC-bJH80rFRPSWNhTukExe39QOnZo91xr55Uv-cABwfNIdt_nAmd0BimJE5JfQFR5znyGXP2GFociyL_5or_4lGyj6VkwgXQ0adWONR6m4MxPrDZRQbAvSpXP7blCwJpaodS6vX6mo3LK1Sy-r1FA0ad8t1RIBL3YpXy-urMve9VQWdeW_OcfzJfpUQgfSUtRBLkAZdxPvP9Hxn78HSKrEjSRCr8T08P1wKqeR51dtEnNEX0N7QvBk3g277VaiD0IoPxoLmdNksHC1YvSeXMuzzt8XmntkmErMY2cufuiZZWLjZCVZDgJyoVX-Ls3QWpUCf4Y5STTR_dhWLubovmUs-1nO6LBvMiiabGI0uqbsr_MhuwxChQai4CwEuCF6rZ2Futegpkstc50_3GQ2jDiAoXdnoqLm3Z_fYEIKnp7wnSdcW04xXZZciFPGE3KKNkI33ZvEKfyVbCPI4EHMKmZ9NRt8M3ZQ3lMdzhxk5wD4ERHGvwbPP4aqET8ZjhGlPiIYlrzkG1_9MKJas6nPKilVkQu97hL22KRbTklNUzvCAZJJjZvy8q1709XjY-yjI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67f99b5182b7c9-79051776','','','2025-04-11 22:46:19','2025-04-11 22:46:19','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42905',0,'cd-form-entry','',0),(42906,0,'2025-04-12 07:03:01','2025-04-12 07:03:01','{\"firstname\":\"Umamaheswari\",\"lastname\":\"Ranganathan Shanmugasundaram\",\"email\":\"umaphysio@gmail.com\",\"contactnumber\":\"09962340777\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4Vm75ZJAX2QAueeYaayiZYRC4PVEoDhAW-1EeUJhmqQIkiZ1M0j78glc6yyF7incL71lIZPspPeVFGAiEZpviqdBsu6E4PIETOnzoi_RY2efEml328LBwiCPmeS83ilDextxZj9KKrZfPZFnLFffN6RS2jpUrw8Ueie3HQ3UvzhLCklMmSZ5jwTY9AOmOS50kftKPpZ1ks4eqWderpjQzdpzRNQLnesAmEGdv7QJCIz--cqFG9M9tE8yVE5GlYbQYTC-A0Q9-lFVffvQihWQD_40KpdhBi-3tN2l6lExCMEdV5tba-bRga6SVGgfY9PRlt7_WQBAGhMHxH9S08iisF8M29agw4jdNWgtgjjJmvvCI390US3olde9cdY0oed4611w3n-2ul9s8StPdikv-QbS4bOHwjgfvsDK1dvc4REopsszHH1CEcMWuFDtnQQH3z89oylHWY8B_NmWuUm-3RXBxDMnkeVvMW8wd9aQ5JWhTOPm0A-lw23SjUPFpHs15ddvwzOu_V0OFm_itZScXdV9YjIkio68wc2EHY38tDD6xjLz08v4GQHUGhb8r-MSyHI2tlaD_0fJATV9BBBkOAJqMSTcLTGJR085DTMmCCp-0jkhVzacDnqvmX3kIkKfIBiupFn7v3Skj0qRdp9yHN3Vn4h8tG9_bPJf2zgTw3ehEW-hFBah10uppwvFeGm3E1u-kl2pSFkcDhJbDXJPMt-VA4oMJ-IvBYbX39ycq4BMOk68yd3Ph6u6fo2w9onUCP-9b1BF2ACZkfTMPufJP8zBN9LYTj97y3VdZ9Y2pLFyf6bS2smIk1XGUZkk5TpNFHpWZTIsRA77Crypig3WQzpcW0nLWRJflHBHXBMFGUUkYLXqkLffNLCtKzlOWa2AlvPZxUs9BKXr5ck_VEgU8g9AvFrxtq2Im34NVMBH82h9s9QEesi3OpJT1AzC35VOrp-mH41WxhDDgTCIb9yGwKrNr6cLyXsJRgxr74M1dOj8DCD65Ddg4RwQdk46P6zkyIy_TaSZbToBPMyJ7SQVT_KRByubXNPD9WJs4mgWRfZW0JcBmaKMh2uYAGakOuwop5tP2zvhg42BMg-7LHMQaAQdT3fcMRJepWydLDxmqNUEatfEji5wY8yTnu8E-iReiaV2_7_-yx53UsH3zByph2szTMdkYLCgcszbLhoM3Hx24SbHW63g5Er9wVzM0kNZ2cojZ0TzEm6_t1cOvYluApVnuKeax9BkBLbUZ2G_vU2c-mPZEBRVFub25M4Z2HpPn9gT7BErWAi_jIGzc5CceV_3hRMIL99cdexOrm0Ctiftk1bouUJ8z0acTzZlxRF3nJXnrCtmwQ2h2R3zUIXniW5gXILKfS_Rk9g01wAuUj49-Eu9b4O0rMS4cbbW_51ue0cUGeL6EVjNyum3LpCNQ9_TibHcz91BEgA6kSnIcmi_W1fQVQY3ZcvgVAN6b-SKx3od5s1mDR5Rte4yLUlDV5zZJxkkZn6nk3Bg68OVwzPpuTVrc5T-IxVC9oW-moNdbvoDjuX54Ca24TgGwR__kldUYA3WwOE_lDgRA5zDqdkbnSHBCxO9dFolwN_FQy7UEafB1KhpYR9dnqC9rN0wUX7MxicMBUUSzpxmyx3kCz65JExLaqbKk60hfEh6MTKJW6i5RJiGYsRnckxZkAf0gTNugaeSGZWq1b8BaGqH5Xwmgt6lzG06rCfGE8_mWoR5AO3Sc5BQI4FQU1-UprpaAwZiHKbLgGXD83luEdBztFod6rJnRoEEOQXdBqG3awlAubNOf2sOLsLsRZL0A7LQkNEWcRUtH-2X2pragZOsSQSJvMISMhnP9pWrkVpAJ4VTiD2odvyUWtd4vWC-kgG6NINLC8Ewh-J9t1BQHwryzQP3f3VYgEfPAY4YKt-50xZBguU5CO0a12A34vVJj9zV8kJao7NWx5hDvxqoTgrrrGXWcsXqNUBzcl-cYccCESvxYfEYB4vL9nL5Qk8YqkxM3qM6fhn0zlFz9S3MAGtlZk3ZSi8GhWs8bUoGMDk_jc3AqMhJoSxdvQjrBK7HF3fAyFYruOTw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fa0ffed6e8d0-77748712','','','2025-04-12 07:03:01','2025-04-12 07:03:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42906',0,'cd-form-entry','',0),(42907,0,'2025-04-12 07:05:31','2025-04-12 07:05:31','{\"email\":\"umaphysio@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"600099\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5ykgWGtxf29MQ-E7pG6bLUL6Y2wpt-ZHIAVR9e2_pMDi5iRPUeJe0gUJkoXqAWJgUJlOC_xbIfOZXJN_Tjbo24EnOZh8Y1qNv8eI0-Ep5thjtZ-uUl_TxnqJXv9jZtqbB66H4jfF3WfAUEfgpXternKwyAXKDJfWoXEH41oic3gzpWwq_QgZNgdW5sgLuPcl2dB33VMYCJF5ZeEUn9giBHz5-uY_M6XDlXMBLVDUm5tbY7OnCzse5pAQqff88otz4LMLS-ekzGaM9ODcbwHP-PbJZPGsKKgca85_SlbiZX_W6Hcpg9AXoyqPpJYBDUy9IDC_VYEWZxurNa1HQroLDASF6sdGu8hlg6BeJzjbbdItZItzzdov3eRmDp4Ah383n_Fc1nAwg1YOvFkLY8ojMkcNbyh6fZjdfdQj8bBWC3X-iurcwY5JzqQt7fCFSDTIR0AUFlLXafuRuMVM9dIgCO_vk62bFpznIetxOYYriqmC6Afi0fSxA1hNSmP-LavO4lOmvfirgTcslRqaoNoxNM5vFBPKZT7GQ8JWMP5yVC_qyM5IISWxAVNKvcx-W2q-F4TJWm10ODQg4Pnp0ZhtF3QaaCJagyHCts1YJmUxnSMrWunrtQVRLylARQ73Kd8UDKADR5RbpSkj2Ixqz_sSuifCwQGJSUtShamGbRwvK1f8MUGoMWRoI8u2_xkeJZhQ7LEvap1mg9jVCRl7qCKiEuDmThHw9agx14ZggisZ4LXs7VnYYXYLRAf_kefeMag8B9tqlFENsXR0SkQJraTcgqgcu9f08_alXwuTU1FCZKH-xDf30mympSp7v2Zm9RwFhwPSwC2EvscOICxzSk0D03fi423csHJ5dYF3sOCRMkseOOhjwLN4rmk9CsGKHwJ0KvxjpDFugtpZqmB6zSH7h54i7QZAzemW4cEaaNJivEENrSeQ2XTgjMLE6BXzqIgn7ZglJI21w8PqwRN0S6YZEADDsLVv7vWod5X5PH547254mfTlMvAQIHZLR_xlD3HfHTOtKBIL3-Tad43XahH0uiAgLAesabGCwzcjie7etXPX5sPuhkchEbG7CHWiJXBy69QxI8-ddFzU48TH78rulkYdNtT7IEB825opD4m29a_TvGq8KkDw7G4EH9f1CVe9oIlKKAB0wsTP89ieAaKfUKSSRV0GSvvSEtvZa0Ywzzt9Aczik5OUs3D_mrfX3nYpZy2n0AEndEaOLhlSYA9QkDC4DXQq-rdKaZ5AnlpCxzz925S_qz__hiM-lys3OJAgtcEdISFE9fzm3m5WRNzGt_5QsNxei80yzpaRktqya5i8pU4Q3uwp2r8unXNMDtEtJaKlML2S_GBlLvl_Oo4_nU87LVmCwHSX-8DQvh4Oq8jpFRxujJ-_Wm9J-4wGXbKtBVJu0ekXP_qfHSJ8mhphNkaYdCjcj3wiyAd1E-gwYoVi8N2efFX4J3aHUelbcwT5lMPSvAm18fl69CYie-fj3wKojVZOCny-ip5PgYE0tGXflj2xg610QUU6Te8-iW73NAB_02n_Oa69q2-VetFhcYgXEOJn2YuaBwRY0lBYleYaNCMueo4vuWu7vMWsb7XeqIDCVfJSqEOn_AzH5Ptkyz-TjAX0SzxR3hlTO6vC1Vo5ERCLi2ajeEtUA2OoNj3ZXlR2SR0h6Ssbn7lN7mM8IgmcVJgwspXK5HwZHjs9xUMHkZbcmaGlBrNRvckVHM_I-nUgeD1MPwyjhtqitWYBIavuO2WX04XaybiPBilNYgAMzZJWGx94V_tvxibp69jEAZrvS4BNW6Ot729YCqy1idw5HrkreFC8ot-XQeSDusLDCX_-PeiOc11nY8SSLXd2D08hcBJF6Hta5Wbj1kHFrZRpZAtBYh1O6_NFfFw00FutBRtBnIKuVzqAHLISUaem5I6ANHh1LYDyvSVhzkqSOgMoFHbHA8111VUQluODQnPwCo2M-vQqqdvcjgRu8FipBus50XybZOb9nW6gSiamMZM2Zk1HL8oHVKbnuVvscH_kEnH9gZtHXGOJfy6LZu-zrfEQMEPTQ3snAiRti5vJxc1G82Eg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fa1063813257-98119589','','','2025-04-12 07:05:31','2025-04-12 07:05:31','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42907',0,'cd-form-entry','',0),(42908,0,'2025-04-12 07:42:41','0000-00-00 00:00:00','{\"firstname\":\"Maria\",\"lastname\":\"Francis\",\"email\":\"pip.francis76@googlemail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/author/bioadmin/\",\"recaptcha_token\":\"03AFcWeA4ag2FKjPsOoDFdRH6mS803aw_dECZNcIMP00hna_3Z23co45WlbgNjIvfksh4wB526RjCbZrqqKbx1Wh6mXvBoj8nehL6nXEFcQIRpKOdLeALuht8zwd-YWDuUMHtdp-XvWYY7H0mtY25SaDLPu1OxLLk9CKo_qPvdsjg7CoXCCV0NVJGgduRgxszzqvWZTDn0SwgJYmJqPlnfhNC8H85wqkb5j_gc9d_BlEhAUVW_C2iRGNeQpeuJWLoYM96M4ish1395xtAJi7UcdjtPOneCmxXNoy-xM6UmNmB7BxmHrOLpu_IHe1wukTufvINP5Jfh2tbJVq3q3IXvbUHy0kVDYryBeyZl7GPSy2jA5m545S7jm2WQa8lAcy89LAIyqK0aW-WTMlXs9pZdiC7EpjPX-UkSXWvsOP8SuO0fWkilCvD025vWez_LWeY1BAfHGBXtEaRaixA9J-4jQ4yGhEmKY5XHUxvwuer9qDH3oeB9Ho7sh4otRolb1I1CW5tIAHsURiPVIWTUMuwNKEVHmhKZZM8sM8p39cMaoHFNM4OUf7YMP8a_IyJxvokf5sJmBqkW80rAnFoqgdrqmXhg4h1-2eyDtHpi4E5g4XpJ9MzVepcmn4CQpJHkJsIsSNvoyejf9ufcEcWi1ie0Fq94lMMCqQ9Qf0PL8MrGPhHaeWdh2Dmsno-56hLo-NQ2JAoj7z921x7ZySSYjV7fq5PPbn_g59gaLU0pBEv_Mgez20-7MvpePJmmihEhcQYQNMrIjbDeGl0nuYdDvleAFTRRPbzpI1HJvmwcOjf9jhVx4Q4AiyBdw7H4EsZADCb168xWJVA0JCsAgJ0gWN1MHeopB9CXFJpyC1FBnEROO6FanU8bNEEejH5n4fjNJGFp2f10kl62Zr2Qbj5AUJUjrtbdK6vPRRq5A5DHUJ8HGdPJMO6fZxOd15Rq6ZEl6m9p0XgpYj5G7bxsFE1tu3T7qZzilCHb-GU2ctJ4RxI15dT4LkJJoygKlgpeCet9EzEKp9WOoy-1hn5MNEUYZEQuLxrv2xWxbc3Rm0OiqygiZshsXyc7AqsvhhhUnM2X2MlVJtEyDdTLxIWqkmtjjbRuZogRC2SfiGCtXdw7_DGKmK_nwdXO3-8mapLMAvGdn6ARTQm03fy7H1CLIb1Yd26_4UaKhi7PVGQk78mB9EFSrccM4Z6pmrsl3ZD0-9GEIT1HuEboPIL8v1ZHhXv6JG1FC0C54xlsonwGfHhb-0tOSmwPzcG_ECglltF-6CoS4U5cQmCBGJ3nQCfrGxK2cbhgbG7lCIFJBAwa8WgnTBd3Av6lHkBRjr9iKegA1vY1kerlYnSDZTvhA86Xr6m9HcBBg2kEtdsgnWr4Yo1tcGC9ujXJWjlkseqVJ2R86sRu4r9X34HmAplz003aDX4nvdI-nh0Avqn93X0Wzh9K77vK3cYlY6zysh-4xIONAGI0jSzMKJkUyRvFdeMv39DOQsWTsH0INldde0FEmz93ASyybf0jGOKQuP4HdssjSUT6WIG2jZ8aflXY1vdOCa5mezdHc_Lftfm9Tm_BB5ZBqdJskTcex9kRFX5O71zFs8cGok1pFBvKOmYhtEGWiU13czWTz3fN7rN6ipiKD80RCU7Pjya2vRiSL6_Yclbqm6vvttga3QZmDm30VMJMRS7ocGT6zWZn7i6K0n7BYcLvtq9eK46KIViC15V62oNa7CmVA3a40eLBTmGaLkpzyLEgEutO1_rA_h71NNnMvb36AUyifdP76HpfjyLve0WL8_wfYp8DlMQuGvh4EWqRHS3CJ-3J2SBI-M9InPlkvLLVY2FtX0s3O1a_JRXQfSv_HdPOwfrCD6NBNLSocWXsAIEg4bbg6ZGQxAKoSOAXh388wmZjmJ2g-ZKr9RNZtqAvtmwVfOY8e2rInnCRRV4RMa5nYmwqtaoWeQDpO6NkQnk2PqByXbmz_UEdpUGt-DE8x09_-SND17xABy_yCxhQpvCSQPR7jTg3Xiu1PQIjE2sibPu6aG9JitNrdETHDPj-xICSyR69cxuuBipGnI92nc0-YgiyXQc0FY_oUy-anqpDYKLUOTnkq5jC7Cp3LLc3oJZADLflX_IKs9bm9HVo1YRh6BHJbpCj0DFWYauFFu_iPcfikehbNl6NcMzqg_7N-A_tK9ILQA2xVJaz3I_NUg4oWahEtjWwJ98OCjBkh5yDDijXm5hPrRnyIDQ9n1UAixsJReITwPP1OEKiqQXMpUv6gCBdsoEq2vlSv-FYxA9obfOV8nvOaa2LEtil8NxXXGQu6CAbJ5YFyH6BnMJd\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67fa1971848709-15123913','','','2025-04-12 07:42:41','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42908',0,'cd-form-entry','',0),(42909,0,'2025-04-12 09:35:57','2025-04-12 09:35:57','{\"firstname\":\"Hina\",\"lastname\":\"Umetsu\",\"email\":\"hinaumetsu96@gmail.com\",\"contactnumber\":\"07934351269\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t0iYvMBoPf3llRh47yiDhN6&amp;gclid=Cj0KCQjwnui_BhDlARIsAEo9GusumKhjgAcSshvYEWXga4cbdDQfKCv0w49a4f16dzR6AbcIeLOIcxgaApE6EALw_wcB\",\"recaptcha_token\":\"03AFcWeA5ez9sJ0NcCnZbygGikRiJe8vKLfc9p15dJ0U3qtcZne9WJXMAl9zvxPT8-eb_HqWwoVh_pUfq9_2fR7nyo3v2dm-Izgy-zH1EL9V6Bax_bFvslr_IeIYWM7B2eEtnuBJ_wVyktVi9oZKWekFRpVcoSBifixYDAbg5vMtFp_pI7EdOt6g9pVpoJznnq5X0z23Bs4Qt0t7C-g5zKRoznAxlw93CiyLpMfTD2PAMJyf9X63f4dccBLp8pNtW3Lyjx7f5kNmYEr7Q9EAQ8YWMSYrsmVmwZ4GIckS8pSxH1Gn_wQkNtuviVrucpC-J4BH_kR5Y6gxKr8qRzsODTUOYCkrniL72mZ6vELQN65Z2AJPUsFWBglXHlohoSrYQwjqST2T2ZY47eqBXI-rvsFxyFRAonmyGQ3_zVFiljJHw46oVlt26ndyJ7BkkMKI0YMFxRdMeCAd88DrDSkAgjDqgUlB_lqZ9vXpP6XZE5ynpBVlvdRm3RyPd_SI7Pn5w-Q4OXyrczHKlUzxfxfxFVikYnDkeTsFAn0hs7--BUFiAFzfnL7yELRorhOYwGAjXVnI-fTKUoNaYoS4Y0lhJ9c8NQ4ZQWwjoXDLK_62TsbLWhqnQXkPvKoGeeu96263vhJaA1xM6Bra_V3ZrtMk5_6IWcYw9kbVP8OjVyboLmpeBV2x-Rz5PyhR5kP12gEyfn7Mg2FPEbNBLzRgQD0VbDP_3b3ySS4wwLCjHhHskwu1FweVTsf9wAcCZJsbpeiGNtBrQSzq6MocWQMi5PTI6rJ7ZKpyT1VN8hp9PcyUq6x2yi5I-hXw26_AdvTKQDiqPSKnbs3EZUxiopoKquIGxqmoy9CQVigr87jcUJrIw7Ic6-wUTCG2yhD1nMinDq5NoIwra07PwZSzP9199NsR0VpBgkMW0s6ZYzlWRlo5RI26a1EWS9JAjevNFVwmpC3eAP8FCsDfTaMETM3r7wLfnmBDHvhppWULidO64Fe6o_wIMf0vPIs8MEkPvywD8_hVU9Ra_ikQDmCcCw08qLVjtw0fxMr8-nONCpGiNVmbh5ITwfpbkELJgDcjWCLepNwon-bk2k8DB1EP-GteqCbHLncj6fdcrpJ9n_r_sfdJTeSqt10J18C9Z7ol0UYPJYV0igJT9cgB2cAKKRqw8vG5VRFa9QLVWQZvpUxR8t7UxvB39lZxpeDD5l7kYk7shCKg0Xl2bUNy5K4_MDcofVEyhwQW4KPgiYhQGOFZpOLDWK-24eiI2Jj-uwFCDOfaqQZo_X2WweBsfI2bjEYaZ4W1k9ecuqGwyvDkHxOuyyPUesnFKd2-22kqD_E5OxcbZ0j6OfWTPYnBhB3QkEl7W8HL4vPliIpy4mi3XI9LHXIIwnA7r0upyQvprls3HAfwF9SUkE3Ft33rsQ5B_N6gHu9Q6N4A8gd5VXLudxB-1Gntpt_zAHijGq1ERyoT3WIzQCWkFLudGYs69KuR1z-6livAdGwSqRnx4QtQxCmGX64snLXLywRuPGD3SY9Dwe4aQsNwuurMqPQXaSFrQWrnN1mmazO6hQINxwKD4U797xw8-1VrEC-Eu-YPrsNx8qkLara-U21CwmLM-i8DYN01vcDbt4OjShl3r1pNFmmtj9v3s5-N4FaNX0BT7-_aqoIr8CLrSYXPHU2ddfulKB8cNm_V3VvRfDIrXE_PQPNsF6ZJgzv0DamF1dkJLAzpZa2jUwlPYdN346B_6epNdadOSwPi2K00FnU_78R5H8lXx933VUD_kQ1zgbpNuDoUNX9upBQGev4epJWKWfxkrbzraOV45_XKB27iN9dNfbaZ6cAQlauv8OXEFu9iyw4Cp1VFfachwVjc44JyQzbFMejTWy6V-1vrxfOERnsl9aj07Lo9mqQmBRyD1KeKdggZp8ZuSw-lieSZYIKr0mTDtgCzbra7Eq5NF995XQifPdYn2b7ax1e0TVS1UHhrLnbAr_mGzhzQTDFjoKquSTeIKlF0szEINkGM642_SG_Yr-2GNcsNmM3z_qUeBrVoZdlOh8_CJIi7XP_ElE9oEblQWPZ9qDmiqpVlANK5rhk4QNgK8cK5vPD2BbqgIMRkV_ov5MPAP2GoCoI0XfjmwhoIt_iNbngWgXlNhPfXroJhXfvmbdQl3qFZ-5qhJjknVHX7H_GBFkSE8DHUTEOIoVnPxND-sq20Dx-QInDomiBXY-DmSF44xFC3JbUfNLqDlDD5INDyzMj7N_EDOMBKMWMLnlT2LiAUGE3mNoXm20yOx7aYN6NUxGopOW6SVzTopQMPgPY2m_N1s7qZleVgUt7n4m8nMABmMB2TWTzQeLbOSlO55RDMk-6KlyiBDfPg29LPnMZeHiiSnCREVcE0Lp_VSAiTJJBSiupA5kWnqtcsc9rcJBIAwSFF5DZK_pc1ORdKs\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fa33ec6bf889-33873206','','','2025-04-12 09:35:57','2025-04-12 09:35:57','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42909',0,'cd-form-entry','',0),(42910,0,'2025-04-12 09:37:29','2025-04-12 09:37:29','{\"email\":\"hinaumetsu96@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"2\",\"currentpostcode\":\"WF17 0AR\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=ad1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t0iYvMBoPf3llRh47yiDhN6&amp;gclid=Cj0KCQjwnui_BhDlARIsAEo9GusumKhjgAcSshvYEWXga4cbdDQfKCv0w49a4f16dzR6AbcIeLOIcxgaApE6EALw_wcB\",\"recaptcha_token\":\"03AFcWeA4dQbF7iUj3Z6qMAR01NZwfdTbPriUId5VNGN1GKKxsIytqFnhAQrVXoUTsvaEj9AKhajcPemhkm_iCjXjyhudkIj5Uu8ym7kfNaeugWEAnk_604yWdncZucerULmqB5HFAGFQoYntLwVm6Qu6rr3EdCzM-CauoApeXxmmpL6g6bn70mqHP0uWihKcyDzYC1jESJ8GLRZvTXyaczGGN9VCesIC3F4_GwcT0BVw2tJ5W0Pnogo9Od1n548oojWbgfx_HITrQEmpDvV4i_jRmz32TILhK0GkhkxB5SYtNTbfz5qMeWAtAcKdinKNomRHG-di9unsYpxlIZrxTrbwXUuO6DHuyULhzJAOkxJuWZlyEsdNlYG-RxVKv9JUxwtBEikVmnrOj_vaNUpQOAGtbq9BzahV-ti72EB2qA3tWd_44jLZG6pwXCQNibnMB-1hIjj-tIF4w7BwtcUohUp5essUqOchb-ffqy_60O_9UAgLBvp94GgXdBBqT05qpQb3tlTkaOiBPBO8dJg7UlOWZkZhoJvn5IMNivwMOylXigYpoxmPwdUoDFrc4QgRdV-_vHVNiFB4nG9rTNVXIHR4MsUxeNS5SI1xNxklxzozcQVCfRfIX6cfMo4QK5yZcL7SPuR2ltY3NZTKOx0WNIbejqaDCfzMz45T5KdKxoWjfGIifwB4qvEtrBddTttTomM2yn1m5KV5SfrGgJvgTu2ElWOBk5brjENIA2bkM6qWK11jFLXXYEpdJ6dHWSE2g0XaMjE7cioFsBk2RgCZhoizmK1FeHF838o-w1Vjv8Ha58u7Giok2-C6UARN20KCwvsvDSmVN0INvVbRq29CfHnpskQkMvvKmRycfioraEKcGsExTJoFkoxuPEAWrouJRoStiurK0dixK6or7cruB62ucw-pyx_zSfyeVmJAKvCLilXw96GluAAe14Zxb_AwY_XbY7dwNRPo70vUp_n9-3-B74WHxyzV_RMPNlrgscvTFChibnPzEvM4Z8biJo69I2Z7V-tqNA7CuhAlREVTNyPorIMMzV80GQE1Elp9yj15XjfBDD8eXpZS9mkFcdLohSJxWf8_OUIkoIKpDFzZ45lEHjQt-C7cUjoferJo_fbrwBoCmvQMWm3diuKwRjXegyQlOghQ3HkWsDfEOMmhdpQ7xm4dHlz5JECqqFzYegtTGznh_WUIQqbavvwRz6Suw3JqhxCM3kph_4nNUvQb7AQkb1Dm6G0zY8R3kYg0Lk2cNbEvQwfdP-0dqycZC4jj3VWfj03Rr2saX7x8Llw1u0U4uXeKhK7ifjRNibPskAcEijBMjqGFHz8tKuyFmX0TM5U5H3cXRZ0zNgxn8mU7PSycl5VQXLV-h3M7eMJZvLqMohpJked_6ganybjo2ceG04A_FJ2MD7q5OdR83UeEO2_NKeq9GFTGUYU10LRNYMxhsCh80cc_qNDJJgcNQY5w1vqHzWkSuVcP9lPkNL4AkgsoiawTNNefISzTZfvrhw-uuctWfIr85_vspw6cJ3H05S2KzRiVNuZORDpwhpRtesmI98X-5JjiVNwySHXqnMs1tKFYHAw9Z5DgyfuLb_7dJDywnzgPUIqPmZchMsH9vU2BrLMMKg7z_Hoj98uEZSmY2_uPlkPpa9dcecqR2-EMGlBxDTa88-TkZ1gGSljVTPfytG4e5rrSaknniawmHAhRkBSNAxliwLqoHNm6G5pjoVV5D6jluQNFa60QUzRlQciTnUsdBc0yXu5IcDzjdjTrzEfE5m5-uf59G5VBMmm5rvkzcf5wAv19s5uarZBVw8-VC5O_xJn4yY9atNu7V-bRXuznMA9-JA0tPYD-tLJ7rffm5St4QKCK2LKIUwfT7iGh9xKFKQB32AOnFDvdjYgAPEn3shpA7KTkwkec_IljH0CyOeo8xqthEYWYCI0QkCY_6LT6MMqYUsBzoVyIQttPNpT_XI_YYHZFj6MqWiEUEc97pghim8KyNzhfqllRIK0rpmNvWFQldg_4e5hne4rKW8KO__FzYO29ND3J7Gz-rNZl-uMLvMweY7LiVYz-5bHPAkdjmrB0snTg3FR-WiUVSPSGgeYNft9YLAolGfUvaY_VkRgw13-FmJdBZA5vN8UkFGDstApF50MMck941l-qXdmQDAAdlEzsszFflMj75bDAtnxKUEkT_g-IDjnwWq8TO-Al08VXqlsvMr1K5I68GHyAk_o0XcjR_bjOrvCTjBrRRr_4u8Swi9Oa9UosJGHy_yN1eBRvvFWEvtUcAiZBud1VIpCp1IIylHA3iHuoWkJsHbFyKZ8vGcbFGI2drZ2cFIN5_iSoyIK-UDPfbcqMS1tzdXVS1sjXNqHuwP7-1Avqpfwerjxj-pfr3KPW3A_mrSlb_-EaBLX0q7hNi-ymzErCI7Rh2rN-dElLZCB1y__nNPKxt-miW\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"10\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fa342e87f530-26346532','','','2025-04-12 09:37:29','2025-04-12 09:37:29','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42910',0,'cd-form-entry','',0),(42911,0,'2025-04-12 11:14:13','0000-00-00 00:00:00','{\"firstname\":\"Euan\",\"lastname\":\"Macneilage\",\"email\":\"euanmacneil@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwnui_BhDlARIsAEo9Gut7IMhc9fgQnKDRAewYhzILjy6utdjLrJyugedhU1HC2uOsjLEEuqsaAhLFEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7Mn_wr7CceMypE-cfrzw0NF3PhRMdwE1GkM2XDEp8jJViaPfBnQMM41wRdcVOb2o9pphZEfzUgfe8u6OCoorO2YkEAwrBZdFjhXLxp7nbfe6T5TT36uIQ0FTiGULqapEjIRsnmlrYnvr0hnKcWTGILJ0gELKfr5lQ_JLR610mo8ICFXm1l2LETIKqrxPg-ifZMbUY9ueMuAXx5i6zMVdLF21lNEhi_eqCWCiZht-DbpGWO6g424eMFDzCMA8O-dQvWBs9hBiXyhwLmJ5VKl0G_Bn1aPBb90olTZOgOo02g4Euv5HHk1f3EXcS7jb2wOAhBBikw_TqceMAiB09Hb7RSTN6ysNnean9_12kbtOelHCxOSsVjSCtuog7q7u5RXnabzJwRxWKGKsqbcU7pVQhCVRB6n3BT9m03SJHQip-jcSNQmtjFsQ8IygCCvm6mvU_jvUTGhEpaJ4FRMd-TPnBBFcxWzf5tv6GhBRpMf8PaxJLZ7BhYyyawm0ghdxnGDsSIHfguJ3K1IJy2l-R49BvTew9me_55N3-xVU5ESIFJPUQ_6yDQE_E4FD8lNKZS3J4g7SOdFuU5ZnJkUoo93FejzTvXwFvg7W1-Ba08eA0Qt-hySXJV6rLCGEk8bUhuchTUH9ezSfusNPVK4oFlMr47JeLs-lO-vkMTSDuuWiIYQ7EaOgBOMWj25mx20dpqSOXmb_lPXNGkCP4gFtM-nJogVXcBs5BIahCzfviX0UMiifpRab4i8U8V66rYdVEXCTgHO83Acgcvs1U-uaAnK7JJiSpuZK0yU-62nUWT_c-QMLWnbvbie6mtyMDk0q41iqcmbTqoEpxZatrAMScB-7rCqvxbDQeYhoNoLK9eML3zhjCIDFoFfsjVf2swop2et_KoDXtPljjuu1Xw2d55GSuTJr-eYl9CH59dkZYb3lFfMBuNpE8I65SfEFveYhT27d4BaBr9Npo6wCPn0zu8Ba-_WtwSvI72i-kr8xgVoQ-lL0lhSzwCw1odwAq9e8AnkVPtGT_IPUYUupsXAlNja2XGc2EVjs-BAO1IfI6RBm_-fYB0LlKhnO9KDEQzDDfAFLa3t2UDJ60ne-VXW6TcMXLCcEM8HKW52XN6dX_JK1wGLMQIT0evQEQ9pi9-rC1-IFcc-JAQ2JtKplBK-8mMUj23E5eQYQhup98XXZuprhgGevtImMBrBtgRLGp2l3_6RVC71KpJhQiyBJMLcuJzH4nM6gKbV0l5NYGPVkkJhMEFWb8QSy7ms5VNEb_9nX18Q4I-nyIFQl9WywugLyqdubvDKfqF9Qyc8lVsylI_mWw2VuEjrxnJSH8xlSmycDsqactVwI3WozvhDVJ29pDR1Xyf51DSOb-jh8UQVsSAR9KTLtuFnds5MyUPoDrXjjDRbAbn0xoEhx9lH6S2BHTiCNmExfW_OGg-r9KuzMKqN7tyBrS0cPQtgvxHVMxSEd1wMdMw4pPA8ipNyTeoTOhBmEcDobzNf-1glqgMPYHrGdYrwelSyO6YyYwhFf6VayliHO2EiWoV_LalQwro2aSiKr2HuBLKeOs28e3-PLo7cMWSrl9rHers784zLn97kdceEJPPFEqXFq-avOiJySYpYAWCxyv7ovvp5Cyf1dWF4FeLFhs9b-OZHR0o5tR1A-F7wLR_qhESRsxRWtEqR3kvqB5ZiRlxcve8mRYUgeB5_te2XwKoKwxa4mEwtM9cy51HX03GlhoCIMAMtPMKiFeUocQtNGu0AmVe7S2PCy8QNDwi0kgbCO9bpfJT57mgUnf0UkQzp9c2q14rXxffz9pI0tdFFoyxYbQvTamc733ipWMdVxBhBVeJYUxoNqh9B6xBDtaV1tMbwDvqf1uhS0lVaQ_DoPnQGx_aim36rKgmPZsVbyAC745aVentsDBm0Pv1UtdQSfwDu53ys9tqUZ22ImOziWJzmL5YSD6_Te69qZqdoMtPc4RCvVRK4XstCF--wcUj4M2txlrA0ZVllA_vP97I_6XOqj_Sr7dVSuvtQOaBCsGZ5mI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67fa4b05ea93a0-05783177','','','2025-04-12 11:14:13','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42911',0,'cd-form-entry','',0),(42912,0,'2025-04-12 11:42:18','2025-04-12 11:42:18','{\"firstname\":\"Rose\",\"lastname\":\"Bird\",\"email\":\"rosejanebird@gmail.com\",\"contactnumber\":\"07398986498\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tSirn0nmQ6puo00E00JbiFf&amp;gclid=Cj0KCQjwnui_BhDlARIsAEo9Gutdlf2duAkgQ7JsgYasoxTCE-E9yyBCHqC-7O1PoTbZ4YWomS6U_YcaAg3_EALw_wcB\",\"recaptcha_token\":\"03AFcWeA5w-8SAiXKh-zAtCR89HjHQiUbaLz74HAcs06-xip94NSYsGshP6-R48rdtwQca96lUqI2gSw_ObHvjyn-UqT72a2J7oxOqMhIHL_GHOS6UhEh7Vuc9Hi81wzFPbLNB9eEsYNNIVF6OuvFmS8PjCo3We156ekvJr4oURWB3r8NmhOt3wtzaV6VolwBbD_i4q4CWsqYGDcgnmrAklub14gnaSFUX4VLgaL6loulxHpJsZ2cholmXhye4Qz9WuNA1ZiNxdi02-zbeVAx1sL7RHKS2f1ZtZ5Cgh2pNgQSVkFk4T5GaKYkzsRnWzoe7Cy0HwQoxBPXPzrloCqjnyIjrag-BqLjlHMZ2DsYJc3NmB_meXFwvq5fUdXzKzN0gj8ld0jLXF8_kaMhqI3INsdMqFMK3VGfXfQKPCv3l4YOHR3Z2_O4etOPEp9XHo69u-bv9SQaI7hZe1Tgu72DeoIg9ggmqnh3N3BeY7BeGcmvVx5LB563td-JAlgMGE4cuC15lKTmyS30lCRh86E5oHYAYwNt1T4rMt40mgfwAJfz9t-PCJAs2bDQdPo5-Nq1kzRSYJF1eX710nBoYCqDFtOcVERrz3XErJ9a2uuLX35uyrheSIz-MFqM7QcgZ51wUN31bZF_inclFC6b_WGW6-T9LWMgCpbfJX4hSDXCaftIKEbfRWZhLA3i9tATpVSmyLfwi8ilVo1S5Y0OnjVWN8brIQt6IArbIJkzH8js_HEsWA93OPvD7jQMd4YH9sCdsnzZALk5xc2K3ebl12jLUo-JIbFPaYETEhswrUHZpm_apWSYGtWi1cnIT3k0M7kBED-PqMmSg7rpaulMd2n-TWwKcObo7ApIuDMbz02v9grn6_9F95VaEGTPYVStMh3UfRd8DMoo9SLf5Eyo7N4zeMi7uCvvdr8YWGY66TDZAuaJiyWoLoilw_XDez3KPyRBOp4bcFW7J61Tz1V8VSpqu3RdAdigZYIwxLZ1XWq4gCn7vyLpvzClAVYLurEofuDPLQYoXxb-Z2NLu8OQbZVhXlzc0zMT5jCTzdGImTeNyvt2lMOK-QNgSRD5iEnbG9Z9pIPe6HsXBFmEdZNxGrUMfL8MhsN-WvLUPechRMdAwtIifKPfIS6drtFVXgrU0IT587zQIvCp-7XugOjElmevrGZP8MH92pGb6lUdSe4l2uHyMpJtWt7vxm4wmpBO4QGwQBxylHXdtPKrnr2w9U-aT4a2esifTI2JpG1488s7LRsaAGbFahYLOAgDpxk36WIL1fD3C-YTpj8b-OG9SrDo1xUbVLrn3RblPLzfitmre9QCcvkma1BOgXYSrOHUqsO37qEUZ_dFjjghPVH070wPeNqVaOClJiNRa4KoUKHwG63QiXotZ3TlPII4omxUEnxCYW50WppieY3H1yCDAgQpKDOVI-TyALvQ7kCXzpPCVhJch-hHvCBQUlLLrDWFFIBf5eg9H1_lHb-EMUxE5BGFc7pTqhT8flUFrT2iZplTYDaTJrBau2KN9ySaO_onS8-A76L4NgIC1qaxfEvrya0VEFCvlpiwCKIFzXXGwBrIVWMx0YXV2ThAo9VtXAI7gds0tl2d5Bib4PZSOrF2LqBubPLlvNYa4JHfOzrn1rICuwEH1b4PO775W7csLatzvWUGltgwrWKn2dZwn4gRPvMkHzO0DMdR9BZxN--fCq_ARMfP6LH0k5BzR8DSSDW6blPtSevxFQ4Z6jQR3DWS1ATHD-6tP35E1KX0taGSkbzfLOSmuJkwjEcR9FV1wN5ru-mrhu_7KzUYpSwij29YNXECy5IdnDR3bmpe2dm7UckdpAJvXT-tXYomHcAuqS05wKOIbjQ_JrU40UCgrwxO7WhFGI5SJtjlS5qGrRl3H7PqzUYQ0Kmxgb_tQPmt44txDsocRp-MXKTmmypCN_teHIKe_GZVK9O9p5A5fShgDdcq8nF57JxG2cypjGSxIKlfBJ8sNdmMC_oONOKbOPpSn1aVtbdQA_iolUIlMig\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fa518f9cbb00-25136615','','','2025-04-12 11:42:18','2025-04-12 11:42:18','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42912',0,'cd-form-entry','',0),(42913,0,'2025-04-12 11:47:36','2025-04-12 11:47:36','{\"firstname\":\"Dom\",\"lastname\":\"George\",\"email\":\"domg94@gmail.com\",\"contactnumber\":\"07712345678\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t0iYvMBoPf3llRh47yiDhN6&amp;gclid=Cj0KCQjwnui_BhDlARIsAEo9GuubK4w7Gnlt51dgBTFqiPA4MUJllJzNfu2DIkiiKVw4adc3n-vmUtoaAguaEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7SNwwYcvGuiBUuLfGDq7q9oMrxfGAAco3dZTTfA5xpyfC_29entemTOGiudlovPGXZomqwP3X541F5YfIcMbvvODwwOAqFz12_vOBZZNGy3GsMxh1qPu5YR8iuQx9Xe5xZBk33g4epgu9IE7PA2DlFGp2UrL_lBOYkhWyL3n9TOg_6YbpRa_2XJvzIWokgP8USOXeZ5mIp7_FrhICGR_Hx8SeqFMZgd-EIXdx8TKHvpiU1ner13Nfw0yARsKVeoC0FHIyPbS3WgypUkv-_wCHmCg61xa78qjJxYLctv5a-maNGrJb7rrSLVGJOAakLyWKionDPIrrOhebi43CqP7Oz86xzZdMDOexnoVBRRXMvApwgO_1qEVfVB0DczbevwycBQvinu74QInLdzDSI0qNFR4l5NCM_hqoi2JbNhsAwFVJkaLRKpSB74lHzKUQlxhf8LwCF10bsBRkUiDD624CnuAhom6U8AtiFVla5ajO1perfp32ZeL_RxN5Ae2jW3Rvp6rptjRSyH6VfCL0N-_oBzC1D186Mwyt2ipbcpy2CDiy0ZyZ9dFkEvF-qvevLJyVcRkpadHNijlgk2N6uwz3LC6a5qekA_WoUf5sDPE-spGxQRUYG-rAvjDX6k1IG5KmiX8gRpT3zaEhlQpWasEcImGe9V9pTmAPYuPRilGoxq_ezU862rHi7F0jXULuKamxDTwn_kyd-RfvtJ44Z9-uAfuvnAvqYd_sRYQoyMgcVb1GPiEHatmN6CSPJOPebHGC3BMKIQp6N5z9qzbOyTCwXQ5O0qd7q-lyzLV-6vhoeBX6RDdE-SdU8CRYcVagETTnu-kcBKBNkZ0_0ZUymxgeJErf8B55sE2Hfm7d8h-AH1dcT4YCJ7fv7Q1nFuHR3zYXzKzjGBRBDxLgBttjLBG2QW3xzU8i4E_SHZWG-JtuaHQcv74DTm49JpXr-zew5S8FAn6BBAZJGdoW-oFlbRJIf9PTlPKzX95FXS_fBTkr3UO7BIzp2GFSBVxW8N6DuNZIVbEaqCmX2B1iOtcMKIaRrS3e_9Pf_de1oMdc8YkHeN6cMnDHuofy0ehdlsCEl8yOwi5KVvisA8cXQNeAY0oAf8rFDiIc3EJM1u3buCnww5P8DvS4R0hhxQI1IOiBzGBQQW9N9f133lHIxpAOL4IB2tB1jwtBizFKcB7TTJT3gB2MdqiUYiafm2SX55zfW85B1O6OMFZS8yIQC4FLuguxMp_YcnSafV1DoAttrGNtMxDr3F1iMsXF9OvNUa_WB9JkbNcWM3n93lFJ2aon0p76BnjCiwOtvPTpxHNykcU-ycR-FAQtLt4dgVC2npS4iFmNWYWdF1-mY8SCpapOEMeDDXM0pnrsC41TgHAmYyZjn1HEwixTzk_bw6fVyYDNR8AVE9Ieksav0JXtWYbwUbW3MBux9PDlOqo7XPMB4SGU_OWIss-yu8t4fQ8vPJcm-wBacPFeDWUzpDtkKYH3ui67ONwdoqdwSOCOYjHQHFV1F0Ej0wTlkc7cUT6LODOmUOGWy2jQpDzuxK2YmPnryye116IC2l1wrtk9ckKl_mS-0WJmdGxuxxROJpZRZwwlyD0XUuJF2tW93ptG7-cMeYjqFd0lKSunzzM-UN7pcM6ilTt2I402g5vrpcyPogzduMDhadCvM2hHffr7iBclpOeXI0mGD2Ryn2QxyhkxXYszRxAxD2pIW_hHv66sPQSO9yIkiqdlScuCEcLMpwPVma-VKXtfaRKZQNWP63WNhk2W-cYo1w9LfbcCvWoJLxIZZQXQv4c6xCD1lrLGYsArujTf66ejvPFazYAMSG5U0TAz40kbgUkM3OpvU_MSDwu9cFiXc9be64BMSgo3mUdM-cD4mIkPC5BJqjdb-7-9o-WfdHMmyaLehVHvn873OlSsWAzk96Ylv2OKY26LHueQXK_MTy8FPuzYgn8tJTKHwJjZju2oSzJXSYZ1ZYvukyfPR7QDM5f9gDQcYkVKF0ez0PdNspqkjus6Ndcs8ukHjA-fqXjOqw8eLcLkSnYIhQRmyZovPWHW2Ob1AbHthzCuzeroRBabK3TXDVwEl9SoRROaaM44bsEWpQuBNHAikhkVCjtnNZAz-R1c7-GTqeE2EjNpwxV2jgC6Du1crkYK3iwOQKdunm5E\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fa52a0ddc7d8-89523061','','','2025-04-12 11:47:36','2025-04-12 11:47:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42913',0,'cd-form-entry','',0),(42914,0,'2025-04-12 11:50:30','0000-00-00 00:00:00','{\"email\":\"domg94@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"4\",\"currentpostcode\":\"Hr49\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t0iYvMBoPf3llRh47yiDhN6&amp;gclid=Cj0KCQjwnui_BhDlARIsAEo9GuubK4w7Gnlt51dgBTFqiPA4MUJllJzNfu2DIkiiKVw4adc3n-vmUtoaAguaEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6yvpgPT4Pivo_Kh2dSjGQI5ejkrqYlwahU6wYXcUKEpwnPt_ZBNe8zzescspLr9dHYeKPK-bicVsSqc19WHDj4N3h3lGXkh3Yo3gBY8pCCkkH6NE0vEagMyXPJqmvryQLX5KNuLAfWxKG_XPhEWMTDE7Gtn1p4fgmE1LKXoVGpy9t6IwZVF03Ly6Or78i0T2fHIPQwIRYPhw11VJF-3lhe3gxhmtIHIKMm8uFfFYc1bIJERKV5WqIrAgT5e9gRrDqPA-GoFkNXSZmfMgi4UY8HT4GjJIob-bt_06k3RfseRsayEtkzkC5NpF3dgzawNUarceL07IDFhYxonx5rfEIB3oxiUHYMhxi7VNq2DUD5yk9W8JK840IhxoTMVlcVjIeOgR8weaTBUcI8fJXnnNcXs6NngP9SARcgjVY2uv9DBR-C7YYriYDbXjxIt7rkqxmwl54DWQ6atP-ocDmTiiXGz7aGqnXqFmQ1ovEu6C1JQRjETNgv1Pzo4lptP3JyxeFJPYxQEn6zHNza_sTwAFsyyl_rxqwOpA8P1wTCQNAVwQenxhgBE58efvmG4pKn68eocUCde23_aObOXzzDZGbgDyFe4zPenpYqv_ABCO_-sld7wY6oV3vyjsPXNGcVWw3bvD1F0bIO1pxhtvh_-OoiOebCKsSBGdNaPCQBR5wT12pZmHMlGpI3AxvUCOtDRsGF6bwQM8gWfxEagVBYgrwHoJAPiKiY326cxyAclypfhdTz09RqnxFg2iyexfyQ9D1U-yGiwuQFuEhXJaQXT2t1eJZOaRAzqHnzsH1U7wUMTL30r0BkeSVknjO8ry8nSkuVwMvjJ-P3_E0rjGlgL69UjkrnjM3NnPtwg67QPZ5IGKVriQJxH0Y10yEpgCp3CyxlPlryDXRX-tagphRAdswBdGB3oUopZq4dDMx0y1UGL8ZGGJ3jah3hQ4BQSE7COTp3iYXwMiieygDaIgEFjs2sfFnHGAE9k_nNcxbXT7WP1e5r6gj00H-hdJRE_i6f0K796td7BcLLaqtKIQTtdehEDkkDa65zTLju2aaSGKJKm5XJZEKi4pJ7CO6fcjzhZulMQTgiwbbpiF-P8vZ7wWSNQywupKzWtPBFeoIJieYgpC9a9h0q2FQrsbyWjnRVqr6egi9odclXZqJBqqypQv2YIB-IRx1Der18JNM4Gx7dNdP2EUjctZwUX-ul_DQmNbPDoy0fDBAP2VO_zXtLIhkEmgLQawsFW9tv616_up0AtxRsn0aAxKSl6CLTeRx6r9Hxlz9x3AadBcbfSbvX2n9Qn6qMBqhD1IvjZuQ_Jsa02A5IusOSJUsDG5U0viIGANYjnzplWmLyrBPdjxm2lauJWNZ4Zw3g9lbP4aF96Rk1fGJYTk5KYw7yYfwXcTWOgFqSTg4pDsL0p7rSMNFnxNbPZPPauw8G_R_B_HME2cSqAw1mOXUiw7Ek-PT-hWnMOPgqTSW9GWnj70soRuQLZe2Y2O6QCRPmSM7p0AeWIn9AufXRtMRM6FdPETmyRl2rgS6GYDWH4BP8gcKGjCFIfzOtuZGFSFdjX0TFkBFd0ic4ZroRkd0fwEAi5eYKmybuTLvzoI-m3fqR_Ue1ZH2YWX1iJUQMWJopx3yIMa4vg2Avtag8LvF44EdoGjVznBSrAHd6rTebv0CzvAU9QlI_VJuOZpBGO72ldmOXrzi0dG-7ijkftMFEZY2TUiZH4oldzAVyCj_cAfq0DigJRaZupPpj_xhdzwUbRfSCi15Ywnl3ybHbRpSeX7TiZIRfF-IAldFkqVZ7OgVo1KB9lS17WOnkIEgFCsJ34DaYFUZN6jJI1PYOKPpYBqD9Lc1ZiQz3nM3atKOm6Ig-GGV2zGFBRZrdEGvF6MHAk43CwitdWWOZUl2KC2NhXgl1F9WS4gUt38uAKxzAZVr46FooSMc289uYpRr3dgPO0e-cUJlbOrPr-KJWPqBkk7zx6G_zTj28knlzgt3Imtl7u_4k_5nt9Q4wTnriZYInUUP5lLggcMUNb4E_y5cUGjjkDGwJFmaJ-jIeOy-ZlLwUjyYdAKP1L_xTHL3KgEQ7PjxXPJaCQNFoZay4CgmyqB9ZUd_rYVRwvWkFz-3F\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67fa53868bbfb9-81114427','','','2025-04-12 11:50:30','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42914',0,'cd-form-entry','',0),(42915,0,'2025-04-12 14:11:13','2025-04-12 14:11:13','{\"firstname\":\"Benjamin\",\"lastname\":\"Levinson\",\"email\":\"bdjlevinson@gmail.com\",\"contactnumber\":\"07984604860\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t0iYvMBoPf3llRh47yiDhN6&amp;gclid=Cj0KCQjwnui_BhDlARIsAEo9Guvrsa-c71nzR2TLH3kBV2CcnzFWIj2fcP9ej2YDO036BmIJ4JL7wV8aAsLBEALw_wcB\",\"recaptcha_token\":\"03AFcWeA518_vRPeuLJaWKesg6pMOKVNURozbpvDACQ_9GnpTs3KilAKJwLENz3MpvddiY3782as6tmTCC0TpXRuvxZgysfVlK-gVu9Dq4-F8J3n2PwlH2yZ4QJ2thbfmepFHiWOPkQZTE_wUqc6U_8u7JyByK6F9-fMLErHrUHIjQU79BQfvmulu-C850L1pwnaBJSS-mcEdK7NCq7SgpMhxRzbocLycHgRK-ic7-vED6bohXOrDLeK89ov3oxBl6QS_RjTdrcM-Io9QRScDNUfwxMHpSg-ulMsGsYhqUoWtfmx7tfzyhtZxoJieOrtuAgmaTOAouJVprNlPW7ACytNsobWE1ha0qExWt9vvJyx6cbbP_-6a3Tu7eHF8XvO5jExCdGy4yKpdTLbx6lRrzl2sS6W3tQPo-id56dNzyG-FLeK9I5_OSqsCDn6oOe7H_xGMxXIyLe9wGnnN7EX5LkM3CttTdgANDj_Owe_7NsbEUo51GzfHeYC9YiyfdwCeEOcc4eCJzZddsBIf_zGRwAKnMa7ILnCSKxN-p90TYa7pqFp2PkNusYd9sxfNbtBhZsgTG-48D6V8a3cY32jlXSxC9vOxjRESYEdQohQ6zgwPbTCtXfzSyjleUoKsvPoJk0sb-y-WU2YkhKlnIZD8qhCndo2vJOtBWRxaj3jK8og64SHc9u_f6UvYRzJquCxd_TxQ6n64oKhhXXJe6vJpt-8gqp1Ea2BbbV-8XLw3THcikutOAp7grkyeo-kyw1uyBdXfAyqSOLYwDuBQnMUEG6lZuj1hGMa9TzkmE3U587UcuMSGY6zEtFmETyx-D0zQ_Y6UyJzP-z4LYBSBdzdkY3uWuGV4BThDy0i-NorEsvDjaHps7qOOM8tkAFvEjeDLzTgYiNWJCdELhgmpbvcxFGFYJIE2iNhaT4ZVnz770s3YU7oTQYG9va2mVIVPHOpoPpK_dT3j07TkLddKD_Wpizjs9-ZuqFHTNM6si93DKP9smoeLjI9dOqTZyzElAjJMthTFoL0dpl2xWVLGX6LykoMQu9YXsCpbH_QEPof7Uyu6OdrZLdB_MecEmb6ETMQjtz-RkLIDD3yHe7ai6tLIBS7KaT7qNFgv4X0l7svRAilAqKUoitOZf6oY_VIVAOzSh3KIGkb0-MVSGbLj-8beLvBfngt1H6nZFgfnayGrDwKShA3sYIOzkelOJfZadI9LQDe7-9bXX6tFo4DQ4z2R7K1rf30v8KUcvHcYjje68bQ7As9SYgcB6VxpQrQ5udRFFmxAfimBYx-Rmw_xYIARWuLctc6zUzXgepsPJlzZiQcNfrvzgCTDxwWODcknV3_vyZC24HvV7VhlHwbYxCpRhNB0Dz_xjgWtXM_CPntezjO8B2Jdflt_bifljjNRh_6mVzcUyG71ZwCE-3RDMMrVAMduC1wsIzLA2fNpG-jh6z89rCHxHywsGjN6FgEF3UP_FX4n1qTcr2jNpWVeT9aro7uN17lZ6o5s3MnqeXek5lLVtujeSKswb7AyAM6QA74JPLGCZDIfUZornvYv-_BLW1MwMBRXM7vAfJJDcZ3996x0SGC8Scmq_yRuIRClITr-BRI2CZ2_toqy6bbt1L3mlPvUlZzQabXCbowTHfAdQ_ctLJ3FSuJQYBnHzHQEYYQPQdVjyrMFzt8zRtdAgskWPo-iDE-3mlvg5SPFEkE2HsmJMmor4sRPaSpvvS_vGVJM2uZCJyw8e_U7fxdbhmDR_0hKZBz0hMKaGa9HGIQtiqcrEmxQPJJ5FELs1Cjv-YobKBzrzoY6Cl4v4Ok2_fTxJ9-ROs_9qnXg4M8W6-2holZ0nz0xOthDsCVyOXp34r2u2MPNlNBWGTgLAWCM-CdLvkvn6XS1nOYGgjEOCepSrRGux4dbfpx3NZ-uF7ObHTMrcq_t1R_JL0YcEGc0VP0pxCYQg6v1IFvZosZvE1ME0Z3RjDy-y4rf99iPeHIzcauYCx-7UMXObF7PkYYuG0RpibquOzz0tGO8hXCkG5YtN5saLZN4dCoj1iTk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fa74613db5d8-95812842','','','2025-04-12 14:11:13','2025-04-12 14:11:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42915',0,'cd-form-entry','',0),(42916,0,'2025-04-12 14:13:29','2025-04-12 14:13:29','{\"email\":\"bdjlevinson@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"2\",\"genderidentify\":\"5\",\"regionlive\":\"6\",\"currentpostcode\":\"W5 2HZ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t0iYvMBoPf3llRh47yiDhN6&amp;gclid=Cj0KCQjwnui_BhDlARIsAEo9Guvrsa-c71nzR2TLH3kBV2CcnzFWIj2fcP9ej2YDO036BmIJ4JL7wV8aAsLBEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6wf2RQ6djIdPF6ErU_kzB4daxWpTDbb71EgMTQ1GsS_j8NUfGEMTCwp-WloDwPnhHd1O89YoNOtV-LNnmQQNQvOFVPoV3qpzU8vKsdxt0P6aVd9LE509KjieJHrUu9qatqldOxYnapy8g0znk31ZCbY0sNxRIYKNgr9Fi2j3dytsS1Xw-jsrMB-NHA5iQhL9fNG_axmAneIBq120LKm1GIH9AKKYSTlTofF0AnkIDPMxrJuXCxasDC5nc8ahrh804jI5TajS9UDSAe8v_heENTUE10A599P8AMXk6wnct2HOxlEOu8XXO-49FlOlURSPaisauQ5BWT8ULUAiukFFtGGY50oC5bV3cu28fmBwes9KsL_DeQFWJYYd00WeU8vcMBS9hQGubIKtNcc6kGBK7R1K98Q-dXfPYwEs4wBOUewsZfhqg7--Sa4sgcxPW2Jev2y8GETCu3rSVIGuQ75YU8Lzx3M0_NnAoZIyiAcN83zFoFWcqNssaAfM9tvUsjGRztopxfvlTz4HULenIaj7LCpFuWaf1E5wRPrBL4Ls4lvHmh38XRc0W1LBalBnRcFeFFLDMzJsKbHLaI1mqLQQWVFrJZbP6TxCmGaEOYOUxdajJzBoSg-6kRm7joM9Lahe09ry-uAtqAGxo_khNVzXJbnItkZaQtUI7kXJBkF48okej0Zy7S2tJ9hSa6Ye5TAr_VGl1kxRpd1PEEgqeeUXiodwsbZaiZlgUWVSA_1aH4PDgntqJz-I3P05x7CFVwr4jPFseSBg8bwDvkHWyT2UzLXK5sbNZiXmzslj3ENkaH6hkMQflhsTJndJuSkiD3oOlQ34mCLUj_P14IFFi3IHJVnzKJXaUme8hyvi-4wcOTbMTq-dz4-t7taAu8xEjI18KK7W0ynCQoGNILf1dPTu0kGZQNlUElRcey8tbDxdRZPe4HqSClMrzl6YUuE4IfwvHsjmgRaFNVGeM9f4lJeHRjuy2eDAHU1z9kMDm4EWK8Xf4s1gpx65h2Q9MelPLuWUmjkNUS6TwzlTrnpG83Ut_34hUrohRP_plMPH0cxjQK-EjN8mvLSQddyg5yhMqndK8G0TY6MaSofnEhQzmpYn9x9uuWjwiGOab8T40cMCJAVuMIDkugQzJYyzuONmL3W35qDmYow9SJCQjyp4qvA-jmODyZMWbDBAehIXkxWNTPxVfMuEbOriUZIdYBJ4-Sg1o4U63gIWPsCzKBZCXzdDJOhIc4nzEmOWya56kNvgxDcG39szwiZxG9M2Ft8q7_O6O580daULpTZVP4lhoqt2xbls4DTBHS-c_uQUnlabP3TLYonDnEsmJB9mYAOpqMOcfHPLabVNit-INsgN0oarzjGwc9sXBOrCg4PXbLjsgbtBspHhz-IqpvQdWs5yITQwnzw60-DApBmw4_Eb3DXukuz0gVaivDfwNS5tr2h7XfjQ7zLbWLAjkRnccDdftwxFum_u8nI_hPc5KjV_ekQYz-ON-tGrouj7VAJ3llEE7-IrnkEuO1hMPPP0lPTFPNyE_DSKn0GdoCtdCL7yZuaN8yjpqPub-xDlJpPZ0vlvIMrKyammO5G6hewFD0hFEX8ZnDTezbHYvLtluO57JPbeCDfOdimMZlK0ujcePUiiA4mor6XU3Jj6x09ZOwBPNmExNex5j8lrPJDBSEbW-QmN7bqeoZRln_51uE4V2hNRRlpPgG8zRGBAjAg14XHG30hwN6HAw2gkJTX4t6MuJD0OGtRay8NzoFnRH9cQDgW8Drr1jOTcS6QnYXW_rHfhNxYxzy-aLaVe6d3mPtgKmWgXZsB0s0kA0JFhw_dKxpNpntUCr_0Dw0gi7yBlkJYMQhdbGqvKl_mvjZolk-y2qVh6PAzLECAUXqCsrQ_by_yKAdmvseDP26-VC3lkbcx6UbGx4g5UKaWXaN0c95wEKq6FiINxvlZ7dQJyYfYLC-gGiukNiDdUWcql1ZC2dDtIc9ZHTAc-3gsxEWbApqEwHbMyT1zsd67K_Ynv-eS1Yn_iI2leKph_SzI16S7-yeDHvfHuxxrZsIkVBXSH7IHu5dNOgJAW5VMw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fa74ef1db568-50759083','','','2025-04-12 14:13:29','2025-04-12 14:13:29','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42916',0,'cd-form-entry','',0),(42917,0,'2025-04-12 19:20:13','2025-04-12 19:20:13','{\"firstname\":\"beth\",\"lastname\":\"sanders\",\"email\":\"beth.sanders@hotmail.co.uk\",\"contactnumber\":\"07780437298\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6t0iYvMBoPf3llRh47yiDhN6&amp;gclid=Cj0KCQjwnui_BhDlARIsAEo9GuuPaSCI8mJgpJJAMhlkabD-E2Sd7KTAzXf7GPvkqrhOspjdWSmCLWAaAh6EEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5uuFmvbWPPAyHWD9V0CMx7wUTjDKwEk9hrVHlHhFLiUlBBPl7sw3BoeDr7I1eI7K-u-EOEzF4Zjfni7ymrvBcPXXsvrpeCCS8AaMJAe7sWbUVItLhx_Gy5cJFT9IWvaAXdO3xgzuqoImOqvEP62I-L5qADiVmSVe-5214pfxGa2ld-jnpnWZ4TF_VWl66-0KCZN940EIWQU1LjHJYZ1QzB6zVp3Pj6UUHu9sqiCLv0joZUzNsl5asaI4jP1mMTEFlGfl15Rnh5UWgqrMWeD7yziAFZGaRrWHUfzbd-AOsw4EwXkx2RJCYfjS7mX9DlNEgHGpadNaWE7vMZ0ccpt8x795sBgKsyQYbbHjmwmuGq2aFhP-2kH-_HRjsMespWCRGlgm4Z_JhzkCdmsHAGrWjMAA-N1DVrLPCK6Fhq2LzBqGC6bvG051yO9se4uHH9mvQJ_SktH7hiff3GtZg7h3IMb4Yk5IR5uiHzb6MFJP3Xcs6ADWiScCGZx2ra06C1gpbGqpeNa079ZFb5OZV2ikLEbHWhP29g0HZjov_TxxLmuLCm-HJuFYFnncra_LnxuyxrdkLSlHlqU03-Osol781kRip44jNSIfxPcgWRxi0P_uqjwXb6YUP6K2cWzUyaKQ-9X8SwU4Xq7IU267VhoLgyQ5twRz6GKBzB5ZoxUvnMFlhicUhwWkWNopvvfUwFAmDxRsfftIdgGoTLDK-04OiUjxXv_ejLT6-ZWyi_WxYr3ncQDXI7FhQWVDOC12bD-mDmRGxATSxKOlL8zhizlCsoQWLvHYCJAm21eVZAdhlpJmOKBTjACZLRJVKGwTMIqJDCAoDYstJ7Bt6FRn1n0e2WNDI8U20JD19eKG5FbxAzavtv0m6jBOCLTzV0JbF8m_yypyGlD2n9zlc7nQp8tSjz4g68qR7UzajwUK1h5rCOirks596zQLcgy7xprWBPrAck7rcOEiPV5peAG2tvE2RiqDtOd8Ac2_pOwXU3NDgDbbJfnqouqmeqOHXGgfLV8UjboBBVHfqgJ5dfMw0DLtubPK-eheWTBNVoyGIbfelcncJZQyiZnHo7u_OdQUQE7UOASIr0GuIHDDxMnMzv6NswzxTCJP8Svh0BApXehpZCAfnEYLPeqTt-gwr1j5yYPDxFyHvOI94GsYN78ZToUXTtZTJWByMiqb3iKPAPSNqlNLUbgZ_lr5BHX3kV1No4894nPtVO8KdIT96qIriOXcSrCarcE1EFp5UR-6iVmFAphHeU6R5OUsZH-bdv0Xl1FmE5vRCzBV53Fl3SCqkxOW-g-iNOto0XRQnkZRWTijUpObCEoPSxrRqWjrOd0iA_eTV8BV6I9UoO8NTTiuf7-TjDIljweoxmxzHUj3VCNKZzgb1jpFFdZoifMf9yixfT3T0qR4MgfltV9D792xPo_Bye9NOg0qpyNsrCbMSB2x7FEfUnknkwSPMBK3m16z-QucxBdml4Km80pd3rSWutJqIJQTLnc8Bi2IvYrbwGzRXz3bOTXgDUWKnrzjiSLk11SF3zn_Vj7eLKTat2asu0xil8Xourb2AKKy8rxzBMLUqzvXZGNJCjBaRInWu-zecISgfioW4vw9cRGOtD1eFTfZgBL2URgGEOsmsarGu-wheHYp6pOnP5OCNZkN5966hB6c5X_mpImhXm_hztxaFX80pE7GRHPBg_GuTzj-IZOwYSS2gpuK6mtiGbcTsN6Lz6yCwir0Cxz23Aezv9TN8HldxA4zT8uZPZ7HzGJl5jy77SkMs9sxSXPOAFgpu_t5z5JDC3nDenPKdpIngjCTccwR2OosRE_auu9oPI_pEycYTZlnIGTzy7LkdfvqkYbfocx1Wvm_l-CgN3y0wEZLazIDWDGxe4nxud8TEROkiYB_4VOmEgUv-qI3deNQSC5mKLNS0DiXatkI3ieXdTaZItmZ8uE_jUnrRWXjrtPOWlq7-2Lijhx0TA3ZLdHo9lofHZ8OjfI0GXK2UlxQCR1_DchtaoVyiF_sizXpV9UupkOYSPdPj_c3t7O4UMUkNrDuxwNxcGBHqn\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fabcdd8a7361-96986903','','','2025-04-12 19:20:13','2025-04-12 19:20:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42917',0,'cd-form-entry','',0),(42918,0,'2025-04-12 23:49:43','0000-00-00 00:00:00','{\"firstname\":\"Marshall\",\"lastname\":\"Lee\",\"email\":\"marshalllee.strong@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/practical-anatomy-series/\",\"recaptcha_token\":\"03AFcWeA6Jl0SsMDn6ZTNx96XxHihfiSOwTiySBfq1BeTB2zYfu7R7fl-NYoE0L-sajRy2h7Nr7x5b27sv-7zdwO-YNNmF8Wdws_KHuEMlQVyN_UQMmqgfUdyMqqGLpWA-MWlqG6cZiRj4cQ3POuwSeQd5hhD5YISWFqIwR_rLhUDslFKtN4wCPNa0ifYmSwOWOGPr9V5hV92cUv-frTFqYdXIUDGn0J_6OyNxP3M-ygTd_g5C48i-1DiSOMZ5uckdygX3TRNP9W7624NL51PLfNdqXfL2PoTFk-YQTt1fXA-hn4q3iEuKXhk_lmm72jf4CBC_T4zCSIMeiD1ioy3OrK7aHrO4lfZk5NWZQwCDK--jFu08CH9UM1BXyYW6B77qNCR29KF7pWzpaN_oZw-Z8TfsPhB3hGM5U2zoTzRgnj2P5O0ovpVWAeKLZRdUETE-ZrjdfqTOSSyeTt7QNDZpb0yHnM306Z19WMexRfzG64Xa-25OOiY38SYbcYDjwu9vfUBgjQEhVCONQ6QoWHR5e3uZR8CIedYLsFuRb5M5ff0KA-n9FjkFv-xBiWrk116kHAOVN4OvMdEvk0EpJTVq5NFziHHElq9fSpvbTDQXi7dZcWwg_w2j32J9aP9CfJnwOwaMMiPt38ZAAXi0AnoDpwvquNPgzc3T_CgZQ4aJMcXQGLfdU-aRxN6-QhyRQh6cQtmslb5uAEI25QCUfpy7HBc_HmPHkNm9BOqRvsNAohpf01LMKpCXRhmIfuhEqYHVe5iwi6ePWybPWEFj-2MwZwq2xaZPc5A7Ni3eiGK6u93fRdPbkUx8UKvly2Z7_CEoLgSeok-skSsGw6GgTX3TY31mnYKEEEWeFtf4WxOQW8-xleZ5YSJRJJW74KEgoXt9AIyuCM1yKGqRLmvAhEQQkM8mGz90fTzv-eQvWxsqi5YiY-wwmJR-peN-e4t02s2cqDSS5dZxJveCK6LJNM8pZxWta8oPqUPhC6jtVTt15hdgF7r7iSJY_0pN667Pje6lbTWccRdPZbIpdWPTj20W6lV6gHHkyYJhttRUvbVO80WG-QnQrRlW2yU4qTF9z685Oxt-RQYa-t3KQVbhou3OFVWgcMMBO-UMOkzs8PvX7tn2BwUUosqQ6GRdJhTqErKbYnqnWy3CdVZGIZC_68BeI3J7dxUZ44Ot7R5r1IMwmAlBE3u1wU2MaKz11_E1kKIBtCONfIrtNioNp8cLB0Ul0Hp9qb9MItaamLuc3ZTCGG9kSKgvEvnz8xnsUf8KRFUaU8bsjR5exN66UKtU-hI8ethLGEU3z72kFqGqfG_7-J-GdNgit8tUB2o2LUofFxeN_rNoEDhnpkzanMAOdqwY6pvae1AL9zbcXwnvA34DJs9Yc-YdI1yuDI0Rt2_tSHRGPxxF73Cqu69HPINBj7zwPMUM7WTJyH6Tiomyptwuhsnzd-tLjh5-RDGH_sr2BNeUnwdKD-CQWEiAvk9ZtrWDYXlHxR4-qoJ_ozub7Zq-nllF82s9mcW0tuC18lGB0asPtAByTR_H4qeMyBKmfT3O2nSZ0DgcS_SnPwWUA0s7vbedpePOzvVP_Hf-VFDthmJqw_ujK-MISviHycrjgAJdVyBvGGpWz8lSDq71bf0KHWFNVYjkSuF56zS-uTTJssgB6-8jJMz2aV4_ngi5E60JW9_bR_V_eeHmXzpK9PEM1m7IZa6rN77T7DG7S2DQdVlKQo5rOhfJVQSKxE-coxr9ZhKew9WMvfkimwElMJnoWjfoprDNPXRBruhcGYTqMy-61z6uJxC25SdeMWzjkBtGWybclDma6V8TFzcXSD9B04mI6IkKZZ8g2a2_HU2CTvGbpiRgKg_FXdrkxW-vjQepCqbCE-EZsia4gi5DYVtRY0fFYGMll5UMLtA3dpjeZJTcKZOIgx7GHib2EDzA9U_d6wOKggxJeDk1LeANHtKhqT7sunKAfoxeU1h2ZU9vI9TCeSJr9UxtC6DmNsEeqdefuCPAsjKdcpkpx-JAjR0tqjsdWdXu9upkLN8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67fafc176db7a9-97106293','','','2025-04-12 23:49:43','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42918',0,'cd-form-entry','',0),(42919,0,'2025-04-13 08:14:31','2025-04-13 08:14:31','{\"firstname\":\"Natchanun\",\"lastname\":\"Sriprasert\",\"email\":\"c.natchanun@gmail.com\",\"contactnumber\":\"07784291654\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6IIu-YwVIYXc7u5tMvKs-QLcCskb5o3BI6bIFhGCI0RlcXLBcXIdXNtM9X82J9ZwSzcYtWoMEhrOVmTA0Nwh0zePJXOPDuXqDHae3AXZmpey1kF0-RQeHG_OX-Es-5z0tWCMRl5FIZXVW6Eqh5hzkthvtnoJtXWUqTQUnZsq-1RCj_Fzl8dwraK-xShpYe_pY7NpsJGha0B7-7gFupsDisfSa6bTQISgbsIgD_aPyLqnQU-meYxPK4GShbzM0_UQsLeFjEcp-jX43KbIvyE4kIDXldkFa-ajE4NsYwPkC63nqklKzH0jNpBU8JwpoWqqZoKXH9XRhR8BhIWkeHSgR34Xy9JhH2WRe3rwkXO8YHku0BqXiJ04wzakUEViswAx-nRduYUMmzUX6DtYYYcvOl0mLWctuvMfRB7Ttw86cdU1cu7jfocdrPg5IK5uZD7M5NwRcSdBBhkxEsEbYyjznC6LKE6Gb825v6tWBPu03bJdAWloUlJEgDMgXmRvGLBtwUyS78D7E6ST7KeOuNJld2EHcgA9VM0oXQXYp_1H6dAzTCy__UAFABWI-oTS2ifJh5hvrfhckSRb9Sl1r81hXZ41ZHHmEWO2I8V6QZsJp6UpaaWJ0mTU5xBNuyJMhqULxtuhfOE8JZihVqEiW2jnLLt2xgX9cq9J6oPMEb83zA8EOkeDaYhVlXrikhBv1a8EF4pN64V5luZ42QS1UvNMfAybaUb7MtWP89KDYj4x8U8tJhb0JqzTaX-XomNpWyR7GBb6ReFoF2BCtbO9it6F_GbmjEnE7ZzN9kc25znNgMu6aBGUsGbb0iE2vnZ90aS7PoM7vwSmBViPCGGFBK_8Es0Br3cKB7Y07n7fhRhPw09d6yyU63yW6tICQOsecvPw15xZW_6wP56cXI1coHXvQQvtRPyLKesZv8I8lNvDB5_14KrP5PUCRot6pnwdCqRUlD6xGxidxyia219GhbdFIbW40boiRT2Sk1Z6f1PJq3b5rTj5JB8ZjxORQVwIIhy1mHdCVkO1jjNLHJz9J20rb0y-ekPb0tjHoX3kIDn8XH65zK8ocZKeGkfO3LUTcwFfjcKnnH5zDg8JRqH_2BsIvaa051XAkUImn1-9nwAJ2kx5Eze5EZjYCuTYXA_snYdk5aQ9H7to8stXzLgDJ74s-64qPYwzGaI0vDr_u39txdgGwHTGCNI_06ApNe_1_S0sLUiMa8fR_M0s5eZZ5kozSIydGDbdQqxoga1r7qT7apPzgkclvHvis4NE_2473zEYUnENzzRgG1WgKttiuDFUcjwvCkErIXn-C7e1_wk_N890NdT83jXfq3Z4UhZukE_aJgbMwbYfHMs5xGWGmQVPcv09TCqZlKyI5CUrD1_INOlia-AFm6s3-lPQukLEA-AZnXfAdhgF6VtaduKBfwG_WCGPLmI9lKYlAkBQxaFG_PRphsKXD5SYEf2ss6RDD53TpoLj9iUsZFoi7qpHZ9LjJQKKp6D1NoNz7oYhHmNIzwMASXbFM3QYuknQZAMQ4W1R6RKcWH_SysRVorevsQ0wHEhV-UDZqfBUOohHlqB-PC4WstkMXIRb3Uano7xR1sPkCXRvD2V7I7Ed712DeavxQY8TjDOtM7zL5begDupfkFRQrimEZArMyv-zKbJGEnLYgtJo6rHKjcjbn3q_N7V0Pjb7PluF0Ulc3aP_rvrXGMGyxTvzwEnEq88KeMPxlggHiAGV88d9MIRD4CbGzGvvuKOjIKDrmNG3AWgtbp9PHEMUOlbRns66VkCPnIXCYnEAr36LQ0j7dF065X23N50Qewn_9a_qkMeIIlGNAj2NvB2_h9LsDl-qIGHz99T2tLDFwWtrAobL98oVUTS3EpvARwhZbSd8k4vsfq9-oJBFhFG34gbjd6ywG5DD2M2F8AdixVwIK5H4KZWJkliO5LXlTTsbMeY7KsTkEnrDfokED6q9gEXHKqG770rBga_6-HUPS4LOGVP7wjo6r2iVLsa7pZo0vOxbQuq3v2tGF2NEHX5wja7FjibRyw8_hRmyoyvdNPm7Thx89yX2JArlbZxpQ5HVn7_w\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fb7249555ab7-11616512','','','2025-04-13 08:14:31','2025-04-13 08:14:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42919',0,'cd-form-entry','',0),(42920,0,'2025-04-13 08:35:17','2025-04-13 08:35:17','{\"firstname\":\"Kerry\",\"lastname\":\"Benton\",\"email\":\"yrreknotneb54@gmail.com\",\"contactnumber\":\"07956263338\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwwe2_BhBEEiwAM1I7sSK1InAd5NmGdIl35pw7gkv8a8ibSRY0-Z3wVjgddaoXJKzcjUIvfhoClLEQAvD_BwE#row-41115-3\",\"recaptcha_token\":\"03AFcWeA5-u87iFvtBDwNYw75UBH-eD__4QqCUX5FmlliOs2xZn8I2vmSQqxEzkGr1fVUFBWs6hy5GZ1IMf0W3y-6pR6AjIkG9ujD9hVjJ54ec2co5J1qCwmC7emsFCRfvO6uV9nAyvlN-dHyqaVgO58uEiJrFKwOauY6evLtyqO04wAhVCvad6zqGTMR1ifsTT3dL5I2cU7vuf2XVd4bqOnP3q6GJZmp9rOKxz_ChM_cQa91t2SZrjRDSuMSFL-IZRKJEM6yfqi8eraPrkFGbu_UZp_Qsv0pPOjNZcqF29g6Mou4WZ7W105ePUeL1CMowHu_VgsY2jv0uupXqzvkCc4j4m7GLi_4l1fiLjNviDAFfTrRY3rOI8dLRRD4sSAtekZdzH0IUXuikMjcmThRXRWD5-_zZ9n8V3BrzMNg05JP-1hEqyFPK_l1JT25JNZiA5vmg-rsTnFCmxcpjplFTL3ybG-gGIFBRPhMuYHJYCrk5ggLbj4G31cArudyJh_YbvhvrYFh7Q4jvEX2VEgS1m6Ndb0z1Q9IOso0vQfzJ2LhmBA-Ujv0E-xYBCehOoLw83uKezeqbDTPwo-HQJD9QBRERI3yUbjrEYmSIbf0n-7qWWrAS6d0wNed4vI8xXaIIEevEN4HD0oPytm9j8wUdexwnORLtNuND40JDGfXW_E7mISNxB1jFcI_YNXEAEbSEOaeTzhHag4sNi8dbojuxwtT5bc1oubvH-Zw9qBgAI6DnCYbxs9dNbkOrjiEOWttFuEiyNouxVkuufjdEjNZcEZIkgfGFR3KcbvesMnICjEpk77gT92qRCsLW1Bemjy5Ax8d-iF2pczPiOv1Fkbt1uas_FFmWgHvo_YteNAUlUxpJv_5JH1ne0LjN1D359MfWIcvT_nu5Ok3YWgu8wbeNrY4HLVIxNTK7vw9Wr8rZWsSJ6_n7LuWbh_lAUaPTQO32ai8n2cBWaBS_121_XsXqWd-vdMXP2abpSkziGgxpTbp4NugtWYCOpCdhwHF2XQ8ydpAiCmL7uM5M3r7j5UailcZqCYBc0DDtVZJD5bphmnXPxrpXhC_LyTUwLKNSFrSX3rTDHBXIX6pRwv_gTCkmGMwBMeIyOrm33hO5XWFAXeyag07kJTK_6WlLtNFlz9W36f0BVHDIUJ6OylljOhVc_y2hYby5fzDI1lPsP4EQrIo4UWbbnSbJ4-wokehad9pPjLXDXit1kpKlNomt1nxOaqoqLRMW5V7E33xJ7wloOzYP3uPTPniyoEicsXVtiI49vPVtozB4_sYoNNSsqMqWGUttWj7k7tmo2wUQMrUOTmD05wrXlTE7YQ9geaXCshFvi_hYBoRVAEMyCzhHeidM1FnKKkCjaSrOuJtr2VW9Umi_tDCEPSVcN7EBD1OSyAFME7pxvPxgNryZOIuS04Ir8MmTi4Jv7jaPe-KWmL-j9Ql58DYblU83SlVrWoJIwywMRVzV07w13PlbCxYd-3B3Ji_LpfyquzCjffxnkKm6sE_ImmGD72kQJfyVPO6enUSZ_Xsaj1QlbgYV8qckPFBFIGhfLRynpiq8gQc8FluXrSCPOy-rBS_63XhQaZWCyaGOBXVspbjOwAz8r-UP1vNuurcJiiHaZDwNC3UbNtwmo8fedRsU7sMUSvfDEuZyQ-EScHhz2ZGXVN1W65GbCPwRnyK3oGvtZ1SLBc2nkfs68th8XfiieycQZ9ae7RF8kPPDSPCsu0byZ0jKyQhI0OqRce2JXljR340pulrbwLzg1DjhSoZcfUMBCMTBgH_DvpisV4UL41TSzLzqAjYUXanjCHng9Db0yahy3QzOmWk4ohD___k4l0YgXXygJWbkDI69_c1R9IYNYBpgPcafzCBGGJz2v0HsUWwMHjdxE3iB8MpB7kJsd5EOSGsAAC7Y5O2iROHQXMeWlQbSFm8recvi_Z_VjhERWgTcufV1QFnFFqyZ-tPTXHTM_fssnNi6DXIDsSLTbiGDCUKP-RXPDnMki0rmKHQJIUEAR6UlVAHeEd7CdHdqyEtRvajPPMVksL4dC2nj77qseLXlU5HnDM6lt7xj6Ww4MuCfMZlnBXZiHZJhbTTNmQAtCrTkSB6eOUcNdtoX5_AEkpr3nMcZ2XsN3Z-3bVbp12NpYd7BuFgGQsfEUtXtysF5Rqo\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fb773349e712-14901308','','','2025-04-13 08:35:17','2025-04-13 08:35:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42920',0,'cd-form-entry','',0),(42921,0,'2025-04-13 08:35:53','0000-00-00 00:00:00','{\"email\":\"yrreknotneb54@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"0\",\"currentpostcode\":\"NE16 5BD\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwwe2_BhBEEiwAM1I7sSK1InAd5NmGdIl35pw7gkv8a8ibSRY0-Z3wVjgddaoXJKzcjUIvfhoClLEQAvD_BwE#row-41115-3\",\"recaptcha_token\":\"03AFcWeA6br4OL0koSSWSSRFgAB7iCAuKI4fpp2gDzc7dKTSU2ThfgooDnGvQlvvV9E4sPCgUy2fs8vt86M-Xe197aSrxMD1Gsu0cRrPYBI_4KqhXPSjZxJIh9Rq0EWxt2JUEmXRW7n6lpuyZbtlGVNdd5i8Nzem1xkzwwN825P6VRrCIBY0q0Hbiy1cSOGoj-QfmCMbCYr8-VQRyReLVype4YsrpynS9cZl0aD1JNUftzRpMKVjydSP7qi5_4v3K38P7hsBfm_0ourC-2Updsg6-WB2HMwF5xQKiPw6oeZ7LACo6FWcwc7JR9FHBXpPEcBxLM7EPlQtCgGbDYeXpXGZ3n_BnER6Z4gOnqsQIAKYQdo6df4tnCwrVq26UTWpwgv633jN-J9y2WDR37Ok7sqt3QcNtOiFxG83qUdOdctaw5XtJuHuWWMohJHUuJQu0tqE_SAzKTPwb1uV4cPLl_2Cx7XwnzQulAgqd2Vk-f2nPUEg0rvcXxij0ZqymCz4vpOpIU_-9NRphI75RaGUb36iSblqGYa25fteVoNvmHB9GhzFxkPDGcIGoFive-sNp8WBE3mR8NxRkKZAIWy57dJiVPTBkYZPBD5X4xVSlEzgVGleBo8L9sGUQl-L_XowxEXT6VJGCDoss8LQ-5ush-pki5j17HnDlDUG1hwJCdYiRLSFeXxdDdADCRib7q-vcQuEToLa7H9TOGAwnNWVcaXYdXIhgzXLjcQId8VhXagcZtOxemgfnkp4DUc6YUbQ6qx85k2mEHh5jwCipeI5jy8mQH4IyIIChYn8RxRoAhTfl4nwIcHjNUKiej4bL7QjxSAt2qj-Rs24sXfGbWIUmHXqQaZqA93uhBCaNB2YOIEQAjv_6mJWkW4Dlung6Ytp3w3wp752634_-7jdtTBnvlEu8ry_oMmAyjkQyFwibwFw1TD1SL78maAu2KXjaN6QOcyaAvCC21yB5C9nqRo8BRuWyjuq2VAkJXDaae900OMgBE5328t4vLD0QCCnEfxTdXY-gJPNGgfnGFO8nlokxzVpyuoLeXv1FL2udMzI5Cpm2pptMb2Fn6YUg_HIdnGBpabqjpAX0kA7pmPJRvf5K_NaU_RhiSVwu_uoIkttyCBFUzDjfBKE2iQdSwDPXgq8yPrxnbv1l77h7srm-OGTXtJAXiOWS1VKhry3fF7Q4B92CgRiMlR6A8P93lQtGUNdtK0L-N8oH0uNComXvBshja-QjzMd7qV_ST4eMkr6H5GSj2BXbVkzXa8oLg2O42jI132ir1uNX32dHyAoP-GCaeSMnY5YcIZqx3gRuA3y0ylo50vsjJWD-ZzPqlMQlrf67I0gXgg-4cy2KfwFt6JsT5tXOsDPkTemEYfbw11wsAHEs7jMhOY-NaONGTUVpSvl-WtWdVgUzq9bvFNqurrJylkww7KHt8wFnAwtBEu25n0TzsUl42WsgamcNlVIpi5m_FGvq-UVkBSb-sp1cYXey6cfoklDNB-b0KvGmhivfnWqlOn7dsDu6fOnItbsWWYqYYKh_doTWq49CRySYmk2Mp4k8rrK5TBt3elnGjxXc_FE5H1AoE0D2BRQ-cw-bROHm5NLT0MGYf0aTnaeZztqNiqp0Zj2hL8T6_u4IrfamDuv5O_P5_D8a6h5QfCSA4HeDUJRxDFEETVW9LkGxMfQ8a_qijMnS6MB6o0LoczDV-onmUOh8v1-DkFKYeGCxv7hTe91YyOSBjq407oGit9SURBGcz43QjxckOs82MUpxQEqc9iSgQAWj_bzQsfQ7a3aOhJkiZmK2Fv-nSEHLdEnwW7fxIlarCt8bQlrIfNNTTIcqWL_Kd7dRnyiXmmvb607XhDt8VF8a6Ul8iSzS2uLo9lvOzrJCycog4fCH8ONnJeepzwEOGrg1D7PbXOCJ6fSGnab-vCq1U_0fnTWnm7FSid1SIzPi0saVFOf_FT0EoQZG6le5dL7tXmTcqrhvg4tuggi6NwxLaKeUJJx9qZIfLOaYqsiGbWXiD1ApdsPD9ZORgY96go9Y52n5mU33ascOuxqh23qTyCDpxuy28zS5G_2-7ov-Zaa_OMQfui4ELbZMioDA1gPiegziEWTx1AaziVY69o6CxI8Ya\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67fb7769b0d062-95767145','','','2025-04-13 08:35:53','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42921',0,'cd-form-entry','',0),(42922,0,'2025-04-13 09:28:24','2025-04-13 09:28:24','{\"firstname\":\"Kelsy\",\"lastname\":\"Arias Gonzalez\",\"email\":\"kelsyarias84@gmail.com\",\"contactnumber\":\"07397522093\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwnui_BhDlARIsAEo9GutqgW8VgR6uOmuHWwBJCmonuIZvoUW1yrMCWo7Tvbj4tprnlQWh4gIaArz2EALw_wcB\",\"recaptcha_token\":\"03AFcWeA5BlOC78P0P-vOg4UKnL676QdrIDIAPRfDScjH2hkAccAwqJI8dtOgr2gKW0BMFu_QCI_ZDCklu2fBIL441EVfL2XxNiZ7snFanJKob2v78Va46iBaH9tsOXybwTd_1WNxtFKkYWEvx7VOwNSQc38J4or0GiPa95oNURfMbWniA2eKBB5ggUkjucKi_S8hXNqBOkFd7hqT-my7hQNyVYVjxAO9LZ3jDEPfBZYROLJk07rESWgV75K6k9MwEpNvP-p0sDAkdYZF94if9DNevm2Ni2XYVnHRgy8B-G233UVkTTzQ5zKXIsld20J08XkL799WjqW4rotr568ACXqnqJoxGmAb6NO_92jlwJFDhiZ60lJ1GV6S1L6pDWy5bGOAk7_K7XVorUQ1DQNVIkzEHWAN7-1jAuIXFZvgZuKiEAdskH7SvBH71mkAGS0qV5f_Ulo3rj7WkiCLaCYVKXYfJAhmIbsOuG-7GBM3nfTvOQo7NL2BMNi6VcLLRbUtPEm1wgbu2a8-CjJO1PsF8OlhMO_LHZ0qGyileHxilqYp8HvNuMOaSPScqZYZRx8ogdmqtCQOGcxVWzEjHwuJXRm2mr7gTihi6cjxPv-uVCtcLwft6bo3bghdLlzuQeDbtLxdNKzRKXTDLxR78xSTAfMoUy9LCXhpOq7ibftVVCxO5H8-kEe_DCs4QRqmcJ9FX7FtJBNjdkp3xLDWcjLJ8D3l_YtSIPZDYPgkYwLscFcbJ_WqifvNer3b0SPT2VzE51nGtwua-BIlD_iheimUOjPj3vn-teY2wfK_G2E3S60Dk3Hm1xedgAQuJAHQiRrlK18qDluWoi5evzcvCrGnNWBN5mt4SbzzUTl31_-Jqz6Sp_vK_IlEVwAq5d9vBnOZnIq5jDRdS9nUpndwA-HS54nrl-RvGuQoJ_QJHtb13WDTqRJPkdsRyrV0vGHOD7Hse6uJczsDM3s3nZvYvLzLl6hDVnjNZP9Jk4z5mNxkeXc5wKNnz7_DJVHJ8tmk91QQQGIUj5jHTrWodSNafdeR2Q9_ve5V_EjfYuTSijSRny149_kNLiDpDAgvZuZ4snhn2isxAQIonbSLtu78MVVvY9RTHulN-WmDCyGQt4WrA0VC-Wol0iYrUcWUWJ7nvyJ45OgiApHFT7_87D8ParIMFH77CDajW2cFFHKAe3UTHMFUpOy12_gpeEITuuzexWb5SU36X295sVLVGpPdueWW0IruxLZhOaeBqoN-op-ug3DGssbarnkPmWM_y9QBQuuTUJqDEDk8VKTuQSfm8NAvKIy9dm_ROuB775v9sTm_94RkB0f8W2okIStE96m7kTb3IK3gQPunW-X2D3TqyOYKlhoAieiQj7ZkNMV-PzP4pTudjwwGOzp5bqpXHvry_YBh-hQG2pZtNpjDRdLf7QvRKaW5OlB9Q8g6yrTw0lwx6B62r4LyUDfml6FGLMlytrtNXidtZN7ZhOF7XSar7Ln-UR1WavgQCsxCzxHX9mH6Y3PihnxRfdCLmT9W5P8rO9TdaXdN0xmS24jTBgnkCImqx6hnIT0vrVjZ6CafiAJft-IWjKTlLOcq9oe7bylTystdAJwvQgAjt8cI5B_bZaKtY-z6f8S4g1te28NSMDsBVCryGYlWlLV42XaOzVJoiZUUSLXJt-bsV4kID137EQwq9lgWkbfoUmIfKBeQHYtm2LyXCUVcnCfaLrPp__OTHlHolZT-5xRv1z-Lhr7DGBpe8yeWnxiJ1m3MFd1dihB5ZrFjHEdjqwBZdAMOBik3sPjHlWHwZK3smGCOx9B-gb-HBWa7Esb6rIl720r0-REXQgm5g1SFdz9VC28VH7Sv5Pkyna09sEA6ZEckVmrKVJRuWZwrca6aKUJ4i7Go19dsa10Hrj_KWc2heqB3QHJLUq3qFwh2YVVJxJDULeZ9c7fP_Apj3oEqz8O8zM9bAlJFGZS2H9fp4gSUJhYNjp5vw9Mh8wYrey57p7yLcuZdfv2L0_4FGKZ75Dt1qviSiGRiq23yHIlq2wf53KP-q-g4YbR4343NTkd9nAKkuxQSs5yo4bmJEDgqu5dYCvWgu5AVGdN3SyYVxjgWm4rF8QvduFiOd0x8-9pOqCHzIKgSCxdNbVAuL4iZBh2gch_0tEf22iHpJh18ZXBx1_o8jiD5zvL7UUgpV-7U5oQrw65DKazntxfcSKJV5PcbmBrr96RiZcIhlsTUVoejIQ64-sm-6TgxcxigGOsujeFlN\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fb839854b263-68019517','','','2025-04-13 09:28:24','2025-04-13 09:28:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42922',0,'cd-form-entry','',0),(42923,0,'2025-04-13 13:52:51','0000-00-00 00:00:00','{\"firstname\":\"Ray\",\"lastname\":\"Wheatley\",\"email\":\"raymondwheatley61@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwwe2_BhBEEiwAM1I7sXMJ_DPmtdk1XT0fshrpP6ezRxwctOHUFN8t84iT64G-P1rtQjxEKhoCGggQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5nXHgcJMUbWBYwaGQauS-lisAREquzU5pUlXeq5-9aCgzCxmaHPjvi-bA0ywuDl7VODJYDzvvu3la570bRSCS1gnw6TG6U0jXRbvy5tazdZ5Rv245R2Z_8lOw2whK-KdvsHpkMDFNirrtA0ktkqIPUwE_y4DWkdWOxa9cbSoV0j1ilaCg3pex2bVScE8WqVhD7YXoDxW1qUwPpIt11h7wUqRAe0HnAhD2bHOlNU9rDM3rZFVyZ4A3yXlDuDhUFfLXW1fIj2vj0hDVECKc2ApZzYlO7AxDgbKqhGdSaXIoHG20dgPOgJi9j6npj_5Ot5oKtLMIJizt7X3Xehye2y1RF0kTrSEZ6OBB1QHYQuxVvZLzjWRE-7YKxXwu4t8mNMYZK8hVNfDIeq6vXKDow-bpggIsud68LQgWWWx99ahXp6E7HJaDVq6xzwgDCQhqjFtBuX2UUpFEYzr_2OtNHipvsBvJFxL6Q8GqgM4UnP0VkOGUjyxE214Rwx610HRiUCCXmYPnINzeTc_ZubuyyYvNxUGdBl2w3_4YvIPe5GohVfnLVIUzjAu0Cd_5mDF7z9pEb6A32LFOykUd-XxptWccyc4CKYqXSIkJWA82kcVXWLoedPGrof9zr5wTNLLff-nnQGE_bRy5zvDkjeskryWd0WmJzBL5BcA9XPzc4o5IEc8z4bpJU9Jdz1b36rTCzOJeOOjQWhjRQD_zOA_XIDhglye30xbmQyoJdGw814nywE3ygsMuew3B3DSfZLD0XkWkizsUysjodZVbF7N4U4Ee9sgTc5UXwOlfSI0CAsQlw3GKSpo_qVL5GETvvs8iV-U36CDYBsFda7iez2m6DC-6Ed74DOwucX54yqD4oZmOWyX6bjoWma5tfIIXXXyIkn7IMzH8XxCRMGMRp6nm5wXM6M1o1mEfj1bI1Ng0C3jXJYi20MGtcs0OSnZmbqzm9rwUemPzkUuphIVKd3b9lPPezRH2gn0Bxgrx4FpefRrSazUk2em2CPyESDy8ay98UpXx8Dviie3NikscmeFH4utirFU24WNSCXWnnAXmCSVS0aMM64SmqMfBoE8EPFvk5EcvbLONT4-PS4xqiReBSoVqpOmZCcflpFSQOO06Q923E5CRse-ZDAjNljtrHiPg9DvJcuvkMdUu1X6DXzGOacn2buVKRJdddKhNzLjIG0lKuojYG7OSU_VmKfUaLdXvm6l8ypTgQfP1fNJWZSpzL-zIeDmlsUPEFiDbuYfuUfUBkj9MCDtTqbT5IXsGI6B62kHPRMiOPGaKvLw3Vp4rdBpPn55Z0zsMwwhmiRyKuCFVONtNS2dpcNLmqBAu-v0A5QkJFYr2v_pN9VmHuw2rgYVH_WrGfVOWYkO3ddF-79jHzphbst32jiGEi0ZcMA59c00CoGt0wo3xKC-ba2_gAOVKti1XQyxuFgIBElkh_iLw_vdgzfsxW-s9mZY5Q7WErkztRsfxiOfWi873KKte-tzvJ4qtGhFLkXY3NBrHxjuaruoqtMBgnlslzMMs6DQZLyImOgJG2TpshzOLOK8gLpaLgBFyqQDUb1tsad1LCZPJgwV1ok7_jLjOBb-tk3M-Kc2bHfMXL338ey2NMCB8elor3emyUulGRqqou6Xo-4gYpql9x1aJ3E3xtq_dPbU6JMfSHA69w0H4PEA7KyehC4mk6CajOZkrPSj0oKfVsePNGzeLGhjFxS6o79J0j2izC8jTTbZeddx5LYdp2eXnMmNzL7tuivUgPFifMfTUXKuDSmkYbFVZxwhhGqZo8RY9WgfJFTO_3wLzlQqecjk3ZqJ0wZoxrmUpZomBoDiGm5bcgE9VHn9QLeu8SiejFW2FFQqlvHYN9KIfKXbJ14AQiv7wloyeU-LnRxbUvzxpF-HUtV3JDe2fMF_uMhugorLJ_7AVNCENL1npvDqr4IsqE35C4lHaiue3OILgkhxUMWqQKP0yIci7JZXu4EoVQx_cAIp8Ao8gebLq0_f0qJxdB7NpnC7FZlrT5jPElig--H9ASwroe2d5tKll7LKoW9_zQMknjQli6\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67fbc1b349efb1-96334344','','','2025-04-13 13:52:51','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42923',0,'cd-form-entry','',0),(42924,0,'2025-04-13 13:56:24','2025-04-13 13:56:24','{\"firstname\":\"Ray\",\"lastname\":\"Wheatley\",\"email\":\"raymondwheatley61@gmail.com\",\"contactnumber\":\"07982165135\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwwe2_BhBEEiwAM1I7sXMJ_DPmtdk1XT0fshrpP6ezRxwctOHUFN8t84iT64G-P1rtQjxEKhoCGggQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4aMVun-0MH2bBdMQ3xBkYn0SE8Wb12M1ALQ9Z7gheHoZv-GnbhdLOw_QZpEIcRfw3kGqYLxAniyddys5R_-cRaDf0jjjCtdVW6Sbv8_dnUA53KyBwG2gqO5b0FYOiBWe0e4_YV-imRd1hs45UcJVur64uoVtLadmulNGJD1DlFs4XKCKBNqnFTumWc_Sl1Klbti3NcBxxsxM1G15IJJJ3r_XHjzSQJfdPBmK7xg2eNM-Amgtf_6l3Pv-FJPPGI3Wvn70U563xapCvOGkfrnCXkiOzqlhj6mC1otk3fYcHcN27tj6_8aP1-5GFu8T6bJWfam8Di4UdyO-xbqdk5exVpS8Vq09xBlSEd72TpkdpKcMT3mJTWSNRd-HL76PFJWXkcKaWb8wXlR8nI1mT0xbuhjSacA4IL-iZV6VXX_bMn2ZA2eq7RqNE6Ih__ZGi0tzaM3fA3Pg5EvQ9bCvaSjHtp0q-LMy0b_YCNQKWrlxd_a2e4hl6XL_i4qBVUkjQn0gkgDxq9V4D3gUQHFlp8fhVyHDPpPoAx10gWdZGr_mtRRIZQ7_hHuDrDSMpX6GnlaPTMMzydxywGHn8bDDJ7_OAW6zvQs8Z3q5VGcMKUJnIPuF_X5ctvXM30EdKCPJcsLQgO-BsUO9PY8YJRTUi_owedHfe1c2Ara72_3ib9YJBhJTvZdKY9jn5bMYFqgBLk6Z-dBpJaHEsOVgRdI7LOEE-UVHyIbOMTSml2_UtVJpmapanhgLkMmgxwa7XtDQmzsnMaFaf2kHfxKFNh0Pa6TwCr9vCJsbm49Wb4-84B-xB7xaRsN0HHdfKXnxkLHzmRgS53xiroU9QRhqo4NkyYy5AlPFljtlCg_d599qI0C0EYezefjOc_1zPHq64G-L3JwiS_8uRx1ScKW470YL9nsv4MJb5Rg4wawySOWEnjeVGLbJTcMu2xNg2l_iKpHldqWIOtM_yVxpzqowoSNdoGiofp6d-4mAZ81HD7JUPmvzZpX1VVHnDZuGaW7QoOuj86i-xoi7KVl_x0X9BFKLLXNPaLxR0u7tKDlHprtrzu4Slr--XRNL7Fc9soDIf0lBq_wuMDW9KGBpNTQshaPIx4kRb9u6CzDLt1g3fJjgb0rn3M9qKatyQjgzNcj6kd1bFoXeWdnfnA4D-4uGV-D8-VWGzEaRSqP5u7a8ezKcjGguz9aMbzmO4WhJAEAiYi05CPLUGGh8c3it98XGCoixDP_9wtBxBnOF4Lqd8QzXFMqtt28FnMlsdB09jcWRHCc_jD3ykmPyqDv5TSJm8i8uZuu5CaVktKDAWU1gN0ZJHECkqKWq9_2izLxysxFTglQDGSq_tkjsCFSl87b4DgbyyiKaTOQ2yFHJ6wq9F9fu26AMDvFz4WllCrp3oLssRe--_YAlXPiYi7WXhbvB0YSDATw50V_LzDU7lRzC_8klRbrSuEc_4nMTASiJXzCZA-YqV0TLvRbkdtIjyqz2n5oVuuwLavtnD9OuYmUg9xd0xIR8HRXYfcbYKRFVS64TcqetEbK9wBHNg3I1AM6eZeJoLPC3bFDUsOm-snARI49VkwigtahjQen3Cl2247Ss_nQKa08yZs5791WW61AG7P_KkoEDX0M3pXInvgcw21dnjS-quFSCvoS0OQ-gXd-7K_id04D6qBGB48H28qYKci_lEy9KKVqid5bWgu7BNeUeD0aC_UMMxFbzNT5uMEpt0Kwgfyk0N4UMcKxRi-zwB9GCdv2Su65y4xoYI4WTX4mPHVNYWtxTTmE-Bj_g6PTxhEY9nYXHhHbBFoENW72WnW3hqxSLhmgdPlAaJvOsJ6_hlAY8QGWJK7EhmXeovLpV4TvQmRaJORo0gB_36NbHGZUL94ahkFtDRJ979gcBdOxJJVlLyFBN__x4d4RNS5Zvd5mBY6Nt3YML1K5GyoNeP9PRTyuL2VMZ13TYKmYiQbgCyx2oY_9lAbUdb_Xkt1OPZyWJm4Utz2B7pQwdqLR9q_Bdvq_R-G8rtHbA4pef4FI4eXQKRXGpZ2FgGAs-JrSv51yGx8aTZSL53r\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fbc268964050-77170476','','','2025-04-13 13:56:24','2025-04-13 13:56:24','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42924',0,'cd-form-entry','',0),(42925,0,'2025-04-13 14:01:40','2025-04-13 14:01:40','{\"email\":\"raymondwheatley61@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"5\",\"genderidentify\":\"0\",\"regionlive\":\"0\",\"currentpostcode\":\"TS11 7JA\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwwe2_BhBEEiwAM1I7sXMJ_DPmtdk1XT0fshrpP6ezRxwctOHUFN8t84iT64G-P1rtQjxEKhoCGggQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4g5jrSSKp2cANzLDVRHPtnHjm1jECLxmqUE112SFC8Yt_-RH9Or6Ei3K-jzq2s_7MxJatoEXgqlfpRuy1Th7i0Kw-tk5YXL3fkDcp9vPswuy3G0l-kRqOLf9xfLXJDMTY-mq9iDXGziEQGsF2iJnByJhvl2ig8GHz6yQHO8SXcwoSIuQAZcj2xi8uLvajXLLp8ZOgHVyrSSNuE1dG4-nj0un6x8o8soS5dYQm3p0gIz4Yo6v-8tR6YatUSRgVBDRLh5J2bL9XQMpnewR7tvQ4HFB_4IvtejchZ6MwYR9WspZagiA2rmJ6q9NyjAA3h0ZG2ol3slAk8T7McEQ0dLmuSML7YI46kMWLjscoWGs3f60bn_-bzpELkAS1D5ItDYppRNJpGnXzqeel6d2LpIOgOhgGmEOgiFAMw2rNCEY18IYzlzuXg8qxEhf-ekcMnMe8Eobi-q6cDHIMfcCnRYL3voe24oF7n_VeCrESpA8zVhAmhOnQnjznopzu0Pui4ARrsM-CfsK67TZSWvz1ljgYUWSHWzOUKDxPi1smVd-wLF29ZwTYXbBzS95Zey2t1-rn2sF9Hzh1Hak_1DrIemyomND042U-LjVFlpp0eKsjbxcc6DDf7dpXH11jMKr6HUP4lCMTwoE3ddBbuYtW2p1yjpatCtBJUKl0jQN35yUZ0KTJ4PlvahbTBakDoJlwshv0-oEITkiwGDzxJshBsD__tp0D7R54ANCwlVkXxjAZPkcCcg_E_Pxlz10qhIV4bTbqARb7O_9IxmXzKETQ03DEmCTrqZULJh_zAjgs6I0oaqg6OxwdQJuoYH9EeITICOWT29u4WqNSncan1ebTH9RuzrY3SsbXsF6LU9vfqIHc-kMbBJgADbmPaZzTb8_JT5r3yn9G5OrKCKOVBtUXY6Vf_oJiWzwKDy7FWJb0fsS2vNZC9iq_o7Mx28KN6MLXnPvqEiMC84r_EL78o_G3Daa0qnniym7nA-f1m-MvRzmHefFchsX9ywhJQ5H8C7cPbNXn90OqOSfotJ45PMhCxy9nFXTiP0aAsfFkQYN-bZYVC9HPwGPJHzhLx66ujAC85Nu1u24yVhndLqjcU1tSWY1WNglb58vcs-Vv4Zxg_-oIdFpYYtfdYxfIBVWj_zbpzfR4rKP3sOiutTyud84qMgBBNN7fCbz_cdgokvRnn5nyNMTmnL4vNrmyL5gUVTuOkXy1YKIlyc1F18hGUY3qgicR0-ySqRRNsVPHNqUyNlzwGs5pwmaxrwYVG2lw-uHpe9LV90nqmr_ZVnNm2A9-Kxfdr_JFNAsymDHRW0KCNNyBb2EcjAI_6Eh3Zgw9p347Gs_eFXvug5vcST22ag2UEcEQBuJwR2WL9ek2IumflEspeWxzr_VtktzQMEAY_myJoGptcfB8eP19v1Dhjok3D3tHmeJMyMqFRnYbErYrG6CO3KkWNurJMZUprrrbbzWoD2jLTvZtwSSXo392yQPqok7x3GM36eq50ojoJlSl_QLJJvErbR2bp0uiaBi20uDIz_jDnaWOeX0UyC_HVOxQ9XOZwP9xF7Z5jcObT9k0osYXDMRl3iy2ezDjt1JHp3_JsXLyyGfLCnmBXceGyXoC_NcZjj7z5SxF0bUamRglfnLP3FvgYC_XLAmr8OqzLBuIoOX5UkzMOHMskapKH4Vv-q1V8YrKen_ZPvV1f9Yv1dUYMd5BbD_-Xqmb6rDXf_M6dRtG7gU-bOfUu5HMeM3YoPe2JVdqoZUhgo8CDonnBBecRFP3Qq9dl2pikko9sDN5mKeGKXu9Z-l_iptTcCrwVXXFPETjtdO0wC5-tSf7ilA9HnbLblV1mFdfCZtozcmcPj2S9weIX-qpftIKqUs6cUMISY4PIUJcVA9XXqV5A0bQwZeR9xNJ_Up7NAmQQovXR3svi4KdfdkebiWHMfW9S8P-d231zTeJDW1xhc8VHlOjaQBdpjHiU7CbNbt-w05bImCUAtJEhbKGIi07JhBneD72jxmhbbgSANhD_fTeWAfL4_wlMDqp-O8ST1SlPLmT0zpvxFULk\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"4\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fbc36ad5d786-69732283','','','2025-04-13 14:01:40','2025-04-13 14:01:40','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42925',0,'cd-form-entry','',0),(42926,0,'2025-04-13 16:23:25','2025-04-13 16:23:25','{\"firstname\":\"Robert\",\"lastname\":\"Treherne\",\"email\":\"robbymt7@gmail.com\",\"contactnumber\":\"07902844874\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwwe2_BhBEEiwAM1I7sVnQELZL6kyP66NgQyc9j2FrzBE7aLekf1qQXbFb4BjxV71uyHpP4xoCB2MQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7u7-5jQqUIWgue87yLTemspy3GtNO1eY89fc0eldnRa9UWgFZlrbRvUa_F3zzznaqfdA3BCRBVSw9MKIcuBgJQhaLmMVb-87-Lmh3qzZQjDqf5sSqWBq9W4ect4dEZh9TKTIo3Oz3QcqaOOOqbSzsJizCoq-4VITyzulkNn8Lr4UH_Qin88xI8MALwpxzoWc15pMsiXFV5K8-QONxEqJHtk3UKhVKosGnBH3GHMWJPfq8ULgp1QQ2GM-p4lrETdHfXJB0vMnLmcflqRbmBnHEAIr7gZCJLc0vvrbKm6YCDh7_5afkHKMBabIBiwpE6pJjbMY-fqldnheTXXdSiGGkZayOoqc1EC1XsjmnuMaygFrADIRDuqSrja97Fp-VyL5y-zdqrIHamF5E39s7Te8I7WgHXjMnZHxTDl2YIrMHORLSn_H2Xa1s2BCE7U-iPKbdwkqy1USBhPrcUjtDWfv9bm_Zp48rZhrhccvXj9WHSccxPym7ann-7kFQ_vmWv4gXH7c5R1dOv1Blnd_nxe5DYwfvfty1BQcKLJpo5YC2yvfyJlIp7MCyPWB5lzseNY4qpZ6iilicUYRZd2h0UfizmXfw4ytk-urLfOJVljznibcvv1YoXF1HUBgxeJpK3yJyg41wRBSuhsBIiLQmBKJsz0Ep-n5LeYG0VE76BRG_S8Rg3qy0iPZ9q4E4OvMkbGrrb80XQJSSTcqw3b8QGmGsbN65RR3Jjsbg2TnII7FA0484G19T-LHZVY5rzBveXvJi9kOkg4xuyinh72Qu3xPOZ8dNMK8H49SsKTje-bYGOxT73nKvBBhKp9IZnaZni6ibK2DPFcBcuFl4kKzSNJVkrJCyc3LHIRmEDcx8133NPnrFeprJ3vKcLAY0UUcGQEoy1vomuZO-_JuTAasELLcdx90E3SjIiXMYYQpHSiWIGKcenQhZ8a4rLCjpR_vL4J6J6bLVM5TaoWSDDiZmoFyc9vCt2p_EZs8ywIKiLntdQ0noRcKXdDMjpewRVwtMeuCL-ea4mgLHl_cUeKdzBC2i87ainX28gb0baOybB64_KocEq4_T7QvqXqDF2XvrQk1VwX_5NXtWwkxRgM3INWEtVPjgxNEuoQ7zF2WqZJmfFKt5PI_NHasJPEz0lJfD2jD0RN0QsZWgkqZEXN29-JA_yhIrJgRmgngBYd1VvbQp5aI9l6V9VELo2RC80VHZAYvqYzN-a8Al72cCXCceKnS8kKr0OCURgV7hMHVwRJkACPl3znMZJRfdhinPkbX-uja8hVsKfnuVQeXyBBfcN9d3QaVS0eWvshFOUTyKX0FoEbg9Q7bSF8RbwxHCiA9xhwlfWARwPfVTLVVfL0IZV7AqwmgpItUlQ3leUO6k3s3joEuS8oCYZxDAquOKLnZoOCpw48HLLgdVL_N3S1XatwlTrylLN_8RkATUCu2mrqMSbysDVx8Mf5aofDy3JECBHX0CBsYgDZJq5gyOZ9BfJMzFp91365hKkw-EJJ2Q2yPEo5faRBATgPBJnIYQf16E74vjE-hHA6dgjTtUW5eJqCWU8872wYk63rkoUhf-eRqWVZHVHzINEGW7xNICSniAd0IIuevyQlEhPWA8g3UUx6O-Y1rB86K_ex8G6hh09-Jq0G7QuL0IRdZFGN30dBdZS1ZQ09KxhmhXFHF3-v5sBkfYUgSe1Hrhk8zDCNOAQw0c4WHmdj5q70HWs0Es12qBrjp01A3HVZ5d8A8gR2ZTrzNf3E-F2DFf66gYLqirmeWeopn0kmXnVJIP1ZgXyQSka073GhoF6L6GHtJr6odByDBvnd3WfvVHUPALgiHwk-mRHhSNmPpLsfSqvcfBkkri17-8qC62Kfg7IVxWBOW8-cMgCiQNGxWWEWvq-UhCDtjUzDPvk5M8xZR1hHQkgN-Km7gQDLnU-9m-wCTJcfr2LDrqYZrborhCk7Mtvd49ujnAmpNNSkHUTkPNK8wdgIzXGANY0LgJX-j9FNE7zcMplQW5Zq3DQqgQrtJXzfwWtcCCoLgV1zT1tEkRj0AkXfP7pwTmPJ29DEtsJmJ-mcIKx0CDIwscRG7gKt9xJovw8RDEcsp3Plsk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fbe4ead73096-88870421','','','2025-04-13 16:23:25','2025-04-13 16:23:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42926',0,'cd-form-entry','',0),(42927,0,'2025-04-13 16:24:51','2025-04-13 16:24:51','{\"email\":\"robbymt7@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"8\",\"currentpostcode\":\"Gu14df\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwwe2_BhBEEiwAM1I7sVnQELZL6kyP66NgQyc9j2FrzBE7aLekf1qQXbFb4BjxV71uyHpP4xoCB2MQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4ELub6JOMCRyXts_y0uEjfUkUtu3ymVRWgB5XbCA1uWd_F4JkNrzLiLtLr60VVBdxRKpzL-NM7PSjvUG1sAGIEu5H3dLU_6sDlu3cIshB4FKK-my9ZFiZaGNU41bAG5zApSFedRGCdWVQRhsFX6Q5ejETK5FU8UBrWCMvZV-KVv_qwF7lmpsbPNOys4HyNY4qvZz8zNOAxOmE_3KuznwXFyAaDVYBLLmcj4q8QYx9_KTgVKkRC2fPD34_fp85kVyJkWn98e19hF5kDV8JxcDIxcoqXJDql8tKJXqX_RVjxmyNOBk42aj7ry8oEZM2iXjmQhK5CqYqewJ_t8nxOGLdPYWUteQnL_GICGsTBLciRgBx46Rg7VlvvQyOIhKPRBPLsu4nbHaNp6NT13vGn0XjDeH5KDEsC__8E6a5yvSusB8h0H5UzN1xpqsYe_uRKo7ZYWHyxWq0vKkcwhJW7OEQMGcN-2RJRi5G2z5jKEUK7qRGdD3PLw21DlPFFmROHLL2EBeyo_sjlmrN9zYVwEBS-Qtg_nuTcsFR_cDJTarxj52_jHhWTb69zO3IMDtTB_5aM2t1mK6eVc8yLuMtSDazjPXD1Ahe9L8GbIWLc4B_DFJcUPTYJjvpxgNu46Vn2Af4NdCfstwkB9HrHC2GkcKQaszBHGu568W3LR02qaYr9HG35fQrII1MceJbdk7ReIT9q5h8Ln_t_we4kPf-S-GX2mq5byJ5bhwWOIr4tvOSgBm-VSlvuWeGHK0sarpN54dyMLxNma4JbCyA2o1fEj_fPeXmo6ADLQQjBAgeWw3eeTyMylw8YwhX0DRqRXtr-cTCbZDuv3a4uDm1rVc1SCRPXSGWExw0i0_YisvPxDOZoWWoTA_En7p7Y0Ni5YtZnuI6jjtbn3rHPnQVjpmsD1TRSiM970x35C0jyIBqCjh-y76kAPjeqKuiLHCTXxu4FdKwxL3Hgq3C-vE0MApOd-j7vDKsvDCEKX99A5XYTPdXpPuMJcrG9xCEbRLnqm20h0huScCn99-VXG_qUzT7EUEcU7Ga3aUn497KlU_k38DP1R7kO-bg6jzkVqIswCN2zCQdzdUK7HU_nsO8vyNzZVUeIazSQayzf2kLMC-a1Jug2eO8q9GkaLKm2WEKaT7adO7DT4Ih2Bt4DL3xPuecx_VXOmGqtsFDoPnO9w473mFUyTvncyC4o7qABWsWFHjXrjQrvns-MystxKGkdRZT95lZB9Wc_gZQgui3uOmK15732VSVIXW7OjuP4_h98B2xOS9sBAFcbeXBLQBOgBeCn0j0raDflLTNORBQITdOQ6tzSd70mHB-8ba-XomCzw7p5q3BbNVX1BAXBNeFmBdyobS3_z1D38sVE5CYnzc23luRpUqFilXvWVZ_Md_b3QBzcIWoWsQskotZgjdqtT9hgET5iPi0a3Nfn3ypJEJMPbGqkSlIg9UKcfRcAGZrd01voVfb2SuIU3Uae7JY90mR72SEodpgk5CVzX_9ajBtPaav2PKkhZr454VW35fapUX_0Eb2FJmtKTFwmtD7cImYwG-fhOqILMRt0UZDnHkXqUup6RIUSFpE0HQs05NSOOj5Ae4DCvOideqSKDM32HbHm708E_amx1MLpzkaUSjWo90wASqmBI555ISRE0DGqwYH3-TjpsvLmlNw-8A78_OZYn7jjmXwwqltz3vZw6nRq2eLwuUqi2n_R8vC-JV0xdjMFYgNbry4Er6xLRvXQ3RClujglxSk1Uth51IxJUTMx2U3Mw_RvqaFcLnUXni3npW1YY5Q-qfNU-SPoURMviUTYba1U_WiNBgR9LzvGa2EoBdRT1sTbXJJ9XmHNC8dx8EDe8ZU8GFlxTL2igPSI1Ck0slAs5HywYCxIs0wukV216l79fY6mux882D6NsOWbTkQaEBpUdX_pGI8tmsz2v4rs5KckzaYEzdzHMNOpxdyFkyewGMf1z-npjYTQvE2MkorQVHNVz60DYftQL_UeVWdiexmohE_7Bak-zn0QCa_9_KdImx-_ytjhFabhvt_gw1xkvfoAzNQM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\",\"livingcircumstances\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fbe530b69452-03263695','','','2025-04-13 16:24:51','2025-04-13 16:24:51','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42927',0,'cd-form-entry','',0),(42928,0,'2025-04-13 18:45:03','2025-04-13 18:45:03','{\"firstname\":\"Victoria\",\"lastname\":\"Allen\",\"email\":\"vapersonaltraining@gmail.com\",\"contactnumber\":\"07770572746\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwwe2_BhBEEiwAM1I7sTzQs9ohZa46Xr_viObN4fUePX-YpOuwX4ON0_irKITVxd6ywqauYxoC9u8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7DmwUII-BSDppMfiYpqZ9gDGVf4Y4vEVMUPV_0V6fl-c5G-a0jOV2CvXqjDWvN3rVBGpDxDLGKxKgYdV3URYxETb-cTRV7MlbiP5UwhC9vW-rekvKinn7evstfpfdtiJJc8py2hbjdpC0FeU5IV07lfmxERO87s3U3_sCbufZlr1FUXfQ7ZcqHcBGOa1ley-jChktux6jj-igOw3izt1cRsro8eer4atasMt3ohxC6-cJ7EOGlLUPg7XOWKXn0XoUgp3Z2e_dr8QUVSyn_XYmyaygczAWqJF640P_yGikJ_cRMMKRW7_H6HzGDTKzFmtp47hXJo6FQKOxn53q8iqqcj2CFmZMsVTyL9Brqa3QV7zuYNtUxC2rUfscmmmazzZvcDNCW3jpALPwjh9J-4jUeis9A_j8BNFvmtXziTkae3H-ojMAAbO-J8kziqQk17Ppn9OGD7LbIds37OHziUe6YvghcfVD6u4I-fopfJN48jW11lYV-mIanewVJMVzNy4EHqUMvQTjIm97CMUXOvZadcxm5xL8RmtNYhCJPrXTjQVZ9Z-RQteg9JTzpoz3ko770ZnFMgmvoUIvDpKjpK9Er290U5L0GR4KrZnOL3EIadyZDXZL4_6slvJNcPcZMRRtC1mrIxdDAJpQF9xKkC_OVZOEWh_cZjpp_OyIwHb-0ynSknUw02UVNGMh739nGJY15M2_zR-loNhGwEsP9fRU6MruhMm9kQ7nQxOJ2vAsfa4I5M_yv_HXLI9mitN3rh6lgAw36y2pK-mu3eO7ccNRpUdX4fXv_o8TDvq5k7bLUYmUsmGrDjYRR0kAnhqrx-WlP2BG6bBHP1teqOC5xgicKmf7pYO2jWbUrBDcyUOSg2tXEsTIh9wKUq4YLvy5-RHec_5wTUd4AeC5WGrbjMgi6nUJXbRBOxPHW0OlrVFqHEroF-VjDO4KpoURvWQBrVFxIVnTNDLz48t7k4uDXwHqhp9FJrxtBTbr1Qi66GapHHphVtVEX1rFErohRF1x5HNc0asJtk4tcgpgVPPo58Lw67SzfrjVreOHg_k96soqJXRhFpcWJKAW3qujTg21iGwvJ5zwviF-gaHDjlmPFGNbC23BYHLxqMODX6_SRNDwjI3kgvd5O9_LzGHCMkdxJJMvy-TTYe6SMeDa7PPhculFSHqXirRGWKuw_y0qPKx5FgnlD9BzUYLQfIx7GwfWKJAwsoARVypKzDDFAqn2Idfobk-hO3qJFco4gYaRQ3PpvCHbX-6YfZgJEFoTDyYRO3Kv7ktvYwnFedxNjHzPN_no12BcBT2p8ghDSEGiMe9oY9LSvVNWvazH_hx2_7lin5vIx3vO_kA7PxBCF2RKp5UYsv4G1Tivd63GXKeld-X5mGkZVrfHBNpihsjE08GNb8wG0kD7EfG-40nA0QdWuHxJOOH6sqU8i7vlMDVIqg1QoQ0cXioG_Rn3DvPp5dJrfvARiHQRQYrDQtuSnzwsfioP94uMSYe17yxRWXtzaMuFv90oOF_3jmYUCrqFmBYCYnVaMP-0j7CvFw2XUNdKSYJp-i5FUoZyjA0KTuRhf3wCjHqEr2ihThImcrUzlq93WZceszd2YjmAja7yAfdXcOd7GynLMQ8g4vgehx9f8F60wVMOe9_pu31cFpuNDGPqnpRt4S4yMC2bMw6DoUTyJ_-2Cun93iKnqOxDepwNFeK76n1CJDE0psU4ICiJmRJBkWKYg_r6KL4MLgQWWSqZJr1dIqLYpok42EswXeDL6FOtki-lvZW2GnP8yW9mH9v2OQoZ_Rk9vQEs2pp4VQUKsHf2OrAwxY_nUNrWh449cOPQVo7CWH3Tgn18jdLvHx49ZegukXz89DEXUJKuETx8wVuoavz2rp-96KUqL1Zum7rsXqPMzWmx-gggBr9XJrp25DW0dvNuESJI6YBIAxB3vt0Y0RW3r41z-OKQtURaJN0g4_dnNYo3-PqrQ97gyaKZ5r-Se4gip6xuOFffoDmBFXc-7Kf5NzPDeg5CC6L3ekv3u27uu8Zns77JwCWEnY7WrCoOYtG3Sf3ZRQkRC8FrNwEORoBmcjA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fc062205de02-95215578','','','2025-04-13 18:45:03','2025-04-13 18:45:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42928',0,'cd-form-entry','',0),(42929,0,'2025-04-14 07:53:36','2025-04-14 07:53:36','{\"firstname\":\"Emma\",\"lastname\":\"Leonard\",\"email\":\"Emmaleonard@hotmail.co.uk\",\"contactnumber\":\"07976548001\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjw5PK_BhBBEiwAL7GTPd5Mjn52Ih5lUlm4krVp0Nwc0UlNc4HgvhuUoSxrvgZk6Tf4wgbzSBoCUw0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5OCseNJV7qkh8paI_ac9j7aLOFj7nUG7wc9kxCgM2PtWh-6m2YDF-gIQdLsMow1W0AP_pe_oXab1iqRxVc9h27gZDF7OqOMrvBDXbFfUnA356PD63aMm-RbAdeoaXOCxtPRph8R1aC2tdF9PkAZ0c92e54_sDYNFwg-L3ehdsGtdPPTMaP5dQ0M8pRaQrwfFYJtnHYt6GQygRpNV9mOrRqdzGi0tiYEoLxmXXBeYMtHixvuaIl_BX-MJR47rpMBmKDyM37HR-9nnXIPUHuLkVLqvcNMiksB1oQNiMHsS41r-r80TrqVu9QSsJ_HBiaZpETwMJ7delDZbu-OJpATTe87JsF8gwLW_3d3kCJ4qu0TpxBoBi4y9iOOqXtJFqb-euWMxWGCeYqNMG692OA8GI_VdwlbomIno2Eig9QFFwrUVVzBx8CZWs1qf6tSjJENHQv7ln_qyYCMVzZSIWme27ZUFOQaoLD50ulfunt4jdX2btLPmCWDaq1spFs5gmz5jE6MvvKp6WhOM5mPagpgAHmahsfnN4zNO2CW0iBab1wRXgNJCPHCy7EQcDeKC0uUKfA1HDH4jr9-ZzFohvrmTXhuxDH_VESPFwgzMnqcdl5DBMYIbec4Df08UQ7A1cRB4UdeeMUL8dxsfXQ8wpYyKii2vPDDbSgeKfiQwAUTfv5p_mulyyt-2dliNWbao481PkJv70WZRrIVjoGRPMZQ6SBR1STkf4juaNSIJKWGZ7jBJLIadJfOamUw4AgmdLxfJfHjxGCCqD4TbtYXJARjQLrT2-BsWEgSj_PM7upB5I48CkNeX1ev9zxCwoxryKjAPA0kdCERDhfon_dVCvfoZzlHycmb4WS8pxHlQiS2DBoJB1j2ddbkwy6m-4SCvFCVQnO41N5hDcZFRnqNB_LTydzKs1tE2zJahVYvtwcmZONqL4hEJjZNRycZ9RX8WGwNFh-kVuAdPq3Q1Fu4k5atomNIazM80XHXIb7QoE0yglPStHVmvPGRl1iPisFr1nbYhIMNb6PLbVU5mqQ4QoIqWXFAyS5m_lCArwiDR28lZlsxiWbFQeUDATNfQ_fCmrAOQou6XLZFFgYhnlytGa3CAZRdsISjaG-pO8sgNndOCtQdEIqkpe_yXSWGq44ht75RtaNDZBJuzD5IpmJBZqkjPIGNXroZN-Gj8H1Za22eaY-rKpnb8qX80gqOHMM9kXGF0A9cGhWqzHlLcrBGuUqdVvRNTWVR4EE6OujttA8SYyZcAVwIzHflu_GZw5HTi5WiPuOh8cE88c3G1irctMmbuVJJojsgRfsQgtSavwr4CMigec8b4HI5PLlkyQwlSXuh2kfKbM4ZXJ6-X8j_iz5Td_1VAGhVOBQCYetGqnFAHuqXEAa9ds91PfuM-PVlGdGWHS3xe70UA36mEDBOD9AVBYkxXIAPVQhtosd_p9rjXJJ4Wlw3bqQ3jBYQ6P3x5FmKr8g2eXgsQlNFFilmE1bjq9rdWMBVAF5kljDjEvVZoz4C-Dyp9NsLJDxUt6V7oWX8UiM9RtEVdsoC0xqmGMeGlFyCTUX47kVaDnQ6d784vZ3x7Fjr8SuLjhJJevXHrPtrAggS7rhReaSonXhTRLmtHQGL3ppcHWwJUvU8TFmY3APutgOXcXVy-76rQYuh7xoQimGAkmx4Gq16oxmuVLG6Q3lrdYoMeRw4SblpY4OWRbX6LU6fILfNLGKlbPTiTUznMgzZBoGi5infXa22Ts0n1xE93bQ7Tk__kSB2LqyRpE0B2eRdF0TaNCklHrbpYGBW9Y-GQClJLj20hsGeoN4WQIfNyABqTnB9ppikEjXMYCH8jxDy643NPBKRv9Gb3CMVFJGoVCt7u3hcOTupNxXlayXl0oFL0QdV1OfgTPygNxMw-n_K8Znyose6EWjbRsPiiryEPUzvTsk0aMIBRbxrjMvq3raKI02lPZV4jJQfAAMkorbox7CU2LN4tCW-vHpxNh27oSKYEWiKd3YWBRm7VnNd-ts2UzvkSkVfAkug13SpsYW96wEr9-2CBQLuCKmUktyD2nlFoOQx37TdmFcv4qm9Wg6MkuTQ3-5ZzQ5SJ8zzmI9m8BJ7a-oTG57iBD6No6K5ywkVpltpto4d9cXbcJA6hwvBWYOQkXFLIzFHExbPNxlLUe-6cdscHmKhJ1Usf0KREPp3bXewGgV-Od0QrPX8238hQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fcbedf847000-71017498','','','2025-04-14 07:53:36','2025-04-14 07:53:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42929',0,'cd-form-entry','',0),(42930,0,'2025-04-14 21:30:11','2025-04-14 21:30:11','{\"firstname\":\"millie\",\"lastname\":\"ward\",\"email\":\"n0935653@my.ntu.ac.uk\",\"contactnumber\":\"07766370892\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA6bFrNoAoWb4zV2N2nERHAm4CjK_tZacLST-zXFVET6y3Z6HUuYpf-0fxSUwBip0talc56m_I7qJAoYfQeS12AW5JTCn5j8gPJ6R6Fn8xlJzYKeeojzi31IlXndeRLz1yYAsZkvXtG4LKFJDTrhIvOl_8JOtJLr-L6_VEI5rEyaz52NBHteVG4UoaUDux3Jg4kycvee-z6IUkbjpZ_dS3ndQBUzjXSj9at9_a5zf4E8QK3O_wnJBwbMwPL3gqfFHqU_n6wAOInm7gBj_50HjfFLpIl6vIZ5F3R2tid2-FZzVdmSYi_JOFbpQdjW73f4cpVKu5Tj0kcbcTB1u6N0REMvgKbiG52dyJ8H6D-1ObALgQya9tMnE93u8487-zSjqLTU38TxTzpxsg8X3kIpWNALG5YkjZMlc6a4zcwLPFGFHrNO49VVBQCn6Mm6oeG0SJjl_BFog5YEg45vUMX62Th2PnyOm3ITuI3oeDA6i6qvV4Ixho0kJK8QNbIkyG1Hkt8swOWJZG3SJWHXx02CjpK18yItD_bDRWeNhDzCis8t-pl0dfFUfSFcXK5jlYv_Q0efTvx377GEqnStGdmLpJbGDV_JGd5dsgCwoDEXwYHgaf9Yqm_x69AO0_zI4Rqf4E7T7JBM5vQ30CmyzErhdTdYqNi_uwvMQ9OrjHcPT29sZy_FbMPfrrQPuSqMMiXaCaSLqaisNv9U46e4CFCnrAWG8TOcCQiFOHbaaFkWlbes8vb1KXIkhPKTW0INhDaoXt-DxN-IrJccNs54Ku6MQ82EejCZ_BSiEWmAoLfPGMmXG9UUGQEKG41voXPS14mokXest6z7o7F-ChFlMsFhuPVv19Gd3LTde0EXiHTK2sM7UB_KVKMr-lRKKUqozjAMhJkpY_XUfgizvQHPAwEgn8KqTNIqt_HWk3D4VtHs64T_rKOCHNuUYNk8-llaHbwKgvQjR5FUtK3BwQOC-zw1eYOI3LwC-qJegrtZh-qVSL9t76bOSw9R6f4ykbqEQElIrLxhMMrlbCBO-y1K8jE3DHeiyudZG1Y81QYkRyWbvIrAQ9Oc7btWA6vycK7IN27hM5MYPZPTEaiIngZUMBZ_b5n6D_uVs1sInA1z4jYXpWdTYADuU7h-BYsSNADhfRdCeO6x9HeQaJehmQcgvBPCt9ugtuYc4zNGKTtfgNA_n6_75aH9hu9IAvei84fld0iGEt3yksrbRPJ4FqNILdF1q0hz8Ch2rUlpPc0VON425X_8F_0Mu-mXdRVUj8GQnbCPWhShMejK-Igm90HGIB9W7THw818CrxAft9NqKXweMrbWAtaPvpurzjV-XeyxmAR9i-ycYk7EMMRzVmiuP3EPtBBLDjdNSf04nN9lwBYZEGRy7VU_FS5wpSAdmjFuMgKnvSjgtSZuqKZgmaGIc8GzR-29WS4wQGWcvSWfTxmIM2GzW8vpF2rcVzlIzGfm2-EGElG7tgOHMZUPSV5gxmJYELUQAnnKbDw1W2Nqwr5d42DxFihu_mBlSWjVtgmPDIn8WtMbY_-Pak8vE1FvTKvaWW3c46-mVmYYMoa8nmz3o_JCpvG6kHfmUR7i3LfyigPbNeCdrAFpbh2GZeZpsnWeg3cER6FAoMQFfjO7YQGicq7-FuUFBselKFvfBpvQ64RsDCeAuTgdm6m9L9fKS1-mGiJjHtDi6vvjglsZPtuf60ZLAUtSFKNOajuJ6raJ69szpn6VZNnuINuNhCuX6ZHo2cA6vnOYCacxYSRIGrdcDML7cj_UBOrrfqM1eVgoT8WQCZd42w9AH9JOhGJhKM4prKo8LuFkpqFaaeMujo7hfJiSmaJRx8nhd7MEAz6lqEBk2233R-TGFcGZIcUqM4uKloEnYlLecMsM4FwAZfHYlbAzw2KELRaKnLkLQpJkVXBY3RaXooYsC8LCMsR1K7uGywpdlaOfybcWpCrFgp6f-fE4xmSyc2PNohApZxtU_1TrENdaAwrhwLjWmAGN44o_3TtjWjSktJCvDnEYYELpV5d1ixbhy1AwZhqmb3htM7l_2IALCgpwo46R3WujWoY-aa53PiB7KmN8pt4RPOkOPuxYBaq8YT7iM1xeAkEwCkvs7JA9cczCkbsG6Ym7wLq46G2726G1s1zlJ6vbEV0X4bR5Gl8Exnc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fd7e522a3530-83572447','','','2025-04-14 21:30:11','2025-04-14 21:30:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42930',0,'cd-form-entry','',0),(42931,0,'2025-04-14 21:31:00','2025-04-14 21:31:00','{\"email\":\"n0935653@my.ntu.ac.uk\",\"interestedbecause\":\"4\",\"agegroup\":\"1\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"de76hp\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA7SmgOMFojbboEHAT2V8g5o36yW-9HS1kvZphayAmlvaweJElAqRlIX2QX2EZh8DUPAt9zRMZxZyiFEehhTgsNiFDC9C9Vz7J55KyZmWV1Od6AFuiBl3NUiUUf3gfOqzpwpujI4tZXSNoC-9dqHvXquIQt7i_bVSA5O0wn8cYCuecXdp-qWDZXdJgr47Ovn2HV5AoEXw1_VYUc5NN4xPHXuuWl6q3bwHGj2kDL1Vy_nfMRmHYWQKCWUXMs176AZE9bell7eONgQB5TF-Xdc1sjs-K3OlcWpgicGt7p5CLr9KUe01rBtxPc4d7L_aHqKjruedRwE5ZSlRDM4iqjA0NMi-ivzxOTvzTZRC2O2w_1N4wChPBxRVwZAFZ_UXfhI8y6sqJrUlKnhqIoX0HEF0A9hFST8dty1KYJY1GQEtvx0vZ3EAeTchOiQ4C1UM17F8gxSfeTu9IyXlXStSTF5qfsoOcJRBL5AyvE8ik25eZ_Oghc2Ja3u5mMU0wa14_VcsODBa2RSENVoHrsLithZfScYKNOX_YqpguQiBk3I37qn7oeJs7RtaGCmdNCI68y-1BXq6FkYOVTn5F6juMtuDapk6rIyDm5EfhD41Rmsfbsb5U8roTKEs-tM3o29MAeQac5-zHIVk2OCkGKoWe57Zodv2yRZ41sSQIMdG1Rov7U_DyOgZlvJv8Z527kN5UMQAXK659Id6zRKgKmYSJZRE4P8UjkQZJ9LzVfU8S9I4BLk7MF_bOt3Wo8qhcG9GC1QhbJ41rglG-Tyj-Bnqm1iv3tGKAE7fCq3uI6c1sAMDqAgjieJARHeYPtldQnpfxJGvBQbXWPI41vv4WncD8-1XOU8XjdL6PTCX-DjB7Ug_wPPYHdHC2ZRcRT94XZFaGaO6qYCv-AyFGOnBfJae8uCQwhNb92FnFJF6UlONASv8wHvvexZdrgKyXvvKF1R04cPJFjxFZz9z3jKcz9l8jSeyXVlex1PVltPQHjUh_OH1E6lfBIFInhzu1ln0K43O0obsK8efUhJJquTZe1f-LIyyGrKZJDYZpse6dC9nUsCvZnOJCD0UBlpMwdOe_3YSmEODnp3myVvuzvQOJmu1EshXA8TPmHbUDTYCzUf7esIujqyGGaPkHB4D6dUg4GO6RS8Du86uKuYN_e85cafAiQ1nW6BZCKAPYQDCwIpMl726RlKqJSWUUmzCgIaoRpe8wjtXRPNBZqR5IyXcLt6c3jRspLHfhNr6hd9onPwOUWcTPB9dOJr6SUw9csE1sAZA1D60d0yHd1-HdIGUpQ-OMhLclNPjI1K2mZwsIE3uq5YY9mw9YuYCR-D833M3DFLZfhcdl3JOWJTfAP-BCPTcwipUA3lO4phloDzYazV5poDdkujBOfskCLVMFwjj37zVaSyTTS-RYcOakPMQkOGyONsC3ChpBLXVntP0V-WaWhwyluEU21jR67pfKPwcZl5h_PbrmveNZHwqAV6S0GSqEZ2Clcr9n-DcVxKHJFFX1Lz5GHyu_2emBnsuWK4o_TP9NEMyGlE6_IVcN3o-WceaQypPiAeejVExMtjVPnL_I9MpzVnrNNuwPCU0E0mfMTj1hkEA20lu7_F_FlWR08OnkClHp5KNNPEVhoWAxszhoDP1nXlzONnfmiQf8_WnV0YXCrZE2cvqrPS_8HgXhHjj8tEzKXOBXvizyBYQFqRcc7dU1AWs4EfmEL6HSr065ME_LT30z0MRCNbDqC9cMuJP_mCfbXWZv-NpyzeIgc5gpArVteGk6ws9Stk3ul3uSRaOH89767cob0ixUexiE4mbq4eLUhZRXHJpOmNR7NaaWB06VzFu6axgoIadJqc17NvDb2Mp7jJE8NfrA4hwRh5zeZM3dot9heOy6gnbiG6uWXdYAxXna8Ud-GpnIciMwOJmCxcG8KZp2-y5gNTfgP0PnDDqTPQ8gg51ZtGksKfVfEOOhIWX-Tvr0TtENBqfbvs0FwdN8v5NlW11_XGTtYpNcEEWurdqk1ZnEAUNzaGG6fC-A3S1A7V9qk5u6SO4sdJJzanPVzfPKZKZlwgQkD50tAu9LUHNQAFfz4Mm0NwI1B9LZ2SrVtXgzoQ390tovpF0UpQSD1baJUEWKInB5XMkKOtm36ILPQbnJxx31znY5lAWsH6BnVOSgI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fd7e7beffee9-93129134','','','2025-04-14 21:31:00','2025-04-14 21:31:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42931',0,'cd-form-entry','',0),(42932,0,'2025-04-15 08:09:33','2025-04-15 08:09:33','{\"firstname\":\"Lee\",\"lastname\":\"Snelling\",\"email\":\"l.snelling94@gmail.com\",\"contactnumber\":\"07935962792\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6ungITnoo2QsVGQYIksXonF6&amp;gclid=Cj0KCQjwh_i_BhCzARIsANimeoEfQYgV7gEUH2cZYQ7XV9CataGECa2iBl51NF7kwceJ1cXABZIlaXoaAqUsEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4zmreYosPNDxTix1Wv_BboO9ZzDEZR-133pTSo9UYKUXJf1c_zZVHEJD3Bmro54M5Xa1jtIvgrI1SMrLiOvisCbz_C-caL1WmLV6a3JGLJsv4cSq3x4Q59p4n0J4e0WcMqv0S7RGOXW7QflCzmZrAIliFy8waUbaolW0L8fk2v73SUzj9beLf7e8ZQQuPEGZk6USShsqzCC4SQSLnU0EpThzTt19APDYdbn18XrGfK4BemHRopyuVoHgBbFit5lNaQtye-h31-4_ZOZZdKB-3oCE-dAjOD4s7pI3MXz1bcXm236egSCI8KtsYepkqyZBDyieFgEUVNdWi-6P6JZLnDdI4l8ismWYadqp95Hxh0gs-sgauSkCDKO9DFJgdD9C8BMAo3runuUl-dI1tfKMN97ZW9SzBA4h0nQUvCnjGbZvtbbxbZhJiXQghy2ClCG0zeT0y6LaWu1vipX32MUHZ71ZEDEYowAJYmLhi7wDjwKD7rPZ--q2M2tnD9mlifqo3dYqZO9lEFGrrhF_wALzcfMWmqDMmIpRircJwITPaLhcrOQWTlK4zeiwzk_80K9zPXIM_IXXcnnwRN55jZGtOqcAoToSQgPCJ8G19dMtsMz0i6syG5Ipfi5stZ5GZFl6_6QTtuM85X8cz0BeIxJXSKRIOUKHJBRsfeN4cLextYSAB6S_e_LJxobL1k-AJW8TnOyHWzxJU8B_uj23l1xYBC4c5mJ0zrXoonM4G7cZUuymWGxyL3ZjbVlS0xiW64pn_lcBsAbArmEliU1_2DG2n2orzWVkW-KjqDQoc-5yR9RCM_I4hS0F0lL40kwXRzF_wfyAb22ELt0AejVoXNN8zqpyQI7erbzq7Zm6NDAoTbd1aOkCN8UPWr5eb7MnfgvQ6ISBNs31HRHodR4hfs53p_-MwQkbyTJxXcg60V8HLeVhFVIGJLApPpW5Fnp8_oQ-luQnXiCYnNV49D9YJM9EfYu-gJO3a6R5CdwwVeAQi7BPKlSPM0BpKLDHqzt5DCej4KfjVHo15FPzD2PaiU1uYDz3jLhxCltV6hcyVhkPrIFTSzz2JIOQY50vCRBS8VVlcUR1qWwp8UHh672YqzM_CklYeRKCTGLcLKO2KrXcxVgWB2pdKuHo9vdD9S9NgbAOplzeOX74bwhtb7vPv0N2vD4VmBdp7yeG3TXYYBq5UFMVdXe3zOI9c9A_5Dbcsxw8RPTUhjfyguPd7hDRa3jv-aVznisGAabK0cFmSJ6spUjwErKnQ7iiShfFqV5M2GjVx8LjYW1ebBESrc06XeskUhthYUepV_4PQedNUFCgQz4fTTaaU7yyyIbtCpjLL4n_OxkO5JZ_3V2wU3wSf6bO8eDqkPp5ESUpziIywKWKm_ATQ19XFxMQpKJUDXwzcq1bFViYt13QJ_4VDA0UEQWFj1VV6_XqP0UDAf1Hk5BXh5st4D9BDfJkAGazsy08n3mKjz9qHTlX1djevksWIPGcjb4HesJOXfn6A9E8bW_tapZMDMULxrNvpuJM1yKqt2pm_GufnyvqB12gJ_GxrS-F4X4OrVwHIMgaNmuFTwfbCSN_cOfTa54NQLhoZ7y96P9Etcx9LbyW_aC3b7btlqoa3pT_IfpDMZnna126ZBRN-oKL5LnK-7TVfCIdjTitbPzrv-tmVsxJhIjRCb98WNF3LSfwVBl4QsG-Br6_SbzEz2MJkhK4gfDQBaXL5dLqFmRPYkKLySdzPSF4qd_JAeArdD4-fsWuAbIVtgxkX5qhcAfww5I4XEydTqLB-2ck58NdYreCQ-1fSmMyFkZFJcO1iAU0ghYUMlbnSHXVK3ODYm2zEZhRBbVbgu35Jeer3wHb0otmLboWu6JxuqLQ520B2iZaSx4cTUZYlHBTTKDq7PcAWjAKogCla78xi2jW0HxMuS7wDP0IbpMOpOCRI7LJz2BHC4ZuAnwQY0vtOgtyTEzmqIG6AoMwNXPiRDqE-LjLmj3jvuzhLf1tAQ9P9PVDSiHjsiQISrxFndWUPKlcXpXuqP6UIR-EspavLN1HJImhsSTeUWNfjJAiOru2B__krAFTnO6w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fe14274fb8d7-94736076','','','2025-04-15 08:09:33','2025-04-15 08:09:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42932',0,'cd-form-entry','',0),(42933,0,'2025-04-15 08:10:44','2025-04-15 08:10:44','{\"email\":\"l.snelling94@gmail.com\",\"interestedbecause\":\"2\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"CM23 5PZ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6ungITnoo2QsVGQYIksXonF6&amp;gclid=Cj0KCQjwh_i_BhCzARIsANimeoEfQYgV7gEUH2cZYQ7XV9CataGECa2iBl51NF7kwceJ1cXABZIlaXoaAqUsEALw_wcB\",\"recaptcha_token\":\"03AFcWeA69Tm1TLCIUlYnMHlCE5vDIhgpXH8HmLVfJrVGruKSu6kmHEwjURIQu0hIAKDZoz2bw8ANykSt1RZBhSys3f8GWiOVd0fdZtEDlcwQesOGZ1QY123KOS3Ca417rXFXOJe_M5_W5RUKDAT5vrqaimBiNKZRdOJ6i71z7JsC56GiFYGstOGYtBwT5GmrOCa5uCHd_P5iQrbwq-Fm7s_5GWIiFg7y8j60hls5k8VNAw0VgzfSJ7U7RTgsqJQHzbnFIZ-t4K4v3YEN4BiT15ER-kCDRdqUwXd0mvMGOqKanEKuOk5PxJKlp1o1YvbfZOaiMjSWwLGb6CFbuYZrEaQocu7nVkwNN65k_M9Wfb01uFXfPcwG7mAF5nFDHGXA0wYswx_ryDJAUasqFAvIDPmpBKKgYgtsVS-a3CxptirlZvbkM0C91Y7MJkKEzMfgdievAAh5gyD3ww3roPrFlVcnTs6D5GgG9oLCaXOYJW8Asg7GoDJh9QeoZsp-2zLF50FJ24SrZkWUFh6jQBqMzs0tdpYtg9dt93zt42gSy2bXqdNdiCdGDpK0aFqKlOnJ7-aJoMxXss_p__VkgSMUw7tLjX4EXn1uwpbJj0etiiStFyPED6S-cNkR-d8tIqBusckJ2KfQj_KWyu6znh5I_cNf0VWh57b-aGX2SrfWIwJqIEvvwVlvqI4aCjZI47li3UlMC4hdyaQ0gXRuh7uyPvVLh9Opql994r3M7k9H4m725dRL3YSUj5g77A7Y9YBBmdbP0HO1Q3p5VXGzbxq-j1ztMjwpH6tq0EG6QGgfww3Mw7qJ-o4OtaLadCidjO51qH9nh44ztIdy_O7Um8J4wcgMzLRKD_KTOxorUmdLsylDHgS-MIW-IVdWEjqpnsNcFIrbQSSGDutSCAzJuzDPZWoNBexFgpQmnZlkrt21kmq7D5u6KL4BzWCkKDp3tRjyFJGvqPoBHDwh_56Tsz-TQmdcVPoYj00J-CZFm6vGOjYInw5tHOp6Phk6ZQI5gODn5L266Vn2SkdL6a9SLW2GuEkhnTWuy_-hMj7l5T-zyYATXPhrCu8cWSDkplkwi9QwvBxb9Mh7Mb0IEiMW93EC87KdO3SnVLJ2sn0aOQVjV_GCQO53YoooxOvasYEjFO7QD-I01ov0f-x0w3MpHNmMDbBMZlsvnmblLX9DX3uasZki26walUcTkp7g3Jkcb43VSnunAUOq6rpWG2sF7YYoGAHFPs9tLpMBq1_KM7DXut0DLuCYuXOtZODf3_tYLL_rMt-hDvDzQFfDI2ztb38w-LfTyJlYxK1i7Ov5ITjyiubzxMgJk2zEC4Jb-ItrDo-ZJvVm9nuGA28mHnXTtawjkLc-PEp_VXaH5BgoKjneT7gbntPzqAVM6IFJ9woPac4PyyihBHnaYC73nSPlA561LzjsA_9V0g4YmT6eWxPhdKzVm32zwfRWyVEoRUpEoI3x3P4SE3bq1xuZEPMBfCIsArqrcgwtul9SFFZL3gjUdlNaJG2JbOdNj1nviC74XFx3J08DTSJACu93LjYuJTi0NdEHLoVTM29JyoR_cktFER6pXzAXIEinrSeEPVpOdFJMaZeUIk1YfwaaQO4CsEJR5MSJzoAJ0JnW3onB6959BLVLKltlvE7jlKFH04vWT1wQ8VLhjP_2PuxtvlAocYfOCMhe4l70xIYsbCj3woLxoIp4YftPz31n-U8bWwWcnZXhf9CrjllKYo37wMvHUgOSYxx10lP-lw9XzqAt11BoS7-4XwWRXTnKShGeBhDn7tYTDzlXsca2me8Vr9JDweWLCVn7xRqXVk24zGtRP9gkKZm423zgixjdK0Pk-R8UkE4j-vf5JvycDsjd-d_0R2iXrCRpnUHO9KeLFLbH_XV5D9Hb6HukoVsEK71gMfL_i4ZXNhu-SDGsCenRfTm91u8lHvQrW0IIGpCgTj7TAHd7IqWVumiP6NVVNWt7iEPQA_JIDvN3Y8kfelX8qFM6ZPQ76rZBsGZ19Djjxki2dR69GpuJ_uLatCoWo3sXG4dlqfladun4oTcQeY8gJ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fe145c3c53f6-67456803','','','2025-04-15 08:10:44','2025-04-15 08:10:44','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42933',0,'cd-form-entry','',0),(42934,0,'2025-04-15 09:07:45','2025-04-15 09:07:45','{\"firstname\":\"Wayne\",\"lastname\":\"Farquharson\",\"email\":\"wayney71@gmail.com\",\"contactnumber\":\"07894573693\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gbraid=0AAAAA9_dL6ungITnoo2QsVGQYIksXonF6&amp;gclid=Cj0KCQjwh_i_BhCzARIsANimeoH2htT9slLNTItOH33rIoyFCnepma-P-EGvBn-7qwsgrcWcFGVEJ1MaAvbHEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6FVwbYN6nHtFRS9jMdtjO95Cb3EUml0krJm6VwgJRmHH0RKq-wQOQeIWswXrxMa4Wd_eJrejRvvUbRPTuMjDYkDgrDyxIjTs4cc9XRmcJjArlC3I3zHTuUdPjElY7CJmkis3GuK1XB3HRvCPH9hSV9OzsVtNYSQ_h1Ex8Dg86AtgK1IOqw9DkN75KmX1JOxKLafKEk4f8MIz0rgCL-r3gSPJjcvvsWz8pzeG6GhH25vB0vtIQJEZxJMi907Eq7W5H_n2LO-u1D_WYZr3foreaGJ0tFPUjkGh-atuu2HDM2HUW6FK_owsPbhE6ZSabz2Cn_nI4p0EO-76qLHQyZ50-4AVP3-P836dwvpnGCbvKUQs0B4alixpvdAvANoKAevQqN11QijxlhsJMQhH1TrEuVSEKhG_467B6L-l1WMvPb2YTV27lSEKP1m9nRebO5x9rObdaCotLVxy-d1aqP_JWRfqUgQGEpkWTO0KrlnPICxGXdUVA53bIzsiAoodSn_Z4I8iLqz6FWslpg6SxVzs7oXhfFGM_t6IE0FHr_AQtMTwP9R8Ckwd5LTpN0jrrwCjDxiFvcaVJFPRoVUA1PNhzDNRe_XO2eTd02cNFkkvIVuzjyx18UV3D7_zUyYwKvQD2NGF4QRujGf9e2UA11isqZ-Mxllnx1ZsUj-43GqJMf2DB8AaSsIGZsfky79xJ9NhZSm8qwdycMf5xMzIRUMN1ybz7LimBTjCPlVfiiGuEP_p1l6LgILQw0ajC6AZnQq_kRBZmZppg0BN579tp9qGwy3TcD2b0N65-MRg1USSAZeKqyobpfMG-aFEbo1LdS7vcMUncf9C6XKYHC88mcEDnBgvp1_wwDXv5gBtcC_g5fMvK2M0-_YjVorhh_s7qFmjh4qzYM4axGfiDHWUr9UTaOShJB28aeAxj7p8OMO8w89whAKYg1G9nUW87x3h-qhDR3KIbk5v9Snf5Xlz3TdD5YffmYjuzDGajfEA3WBzbHWr0ZqZBFWGXx9mcGPETmQg8_VjGeytBsULUO0w4JGCs9lcJ6WhaJ9oPvRP29WKkYBXTrHLVsP7o-NJGHbL7HeIoOqVWjl1cMY-X27NC-jo0zi5h5jr1CNM-mQAhUAylUjeRX64gO2HHxX3ICE83TmNUUWL2ro8lwRbhQtcaNXjw7GQmElZohwTuNXO_84ji_BjbBq4WCEU-prhqPOjcvrerWwFYhqcgEqx08_pRm60bOox-Pl0Y1aEpzdcfuy8FeOYlQlg600aYNOJ9Cd4VoHrQUwALiCZqa3NsGnnT8RklN9BaONi0Qa89dH4OYrCm-MQ8-A7tKu6FbZnqAfSww6NsONshCP3E2q8Y-mEBv2GlviKkLeuH-GltbdtuPRRhOFtPjssYfvjLZuJnt3CsSEXoEx19UwAmhw-OKUTrD9RejBmlU1vKm03_zU1Nfpgw_PwEqfVdaHUuemqbhrQ4QZozZF_6QOhrt7bz6kAfYCQ7Asyf0NZS1gh5DStW_X_-uSacJpXAh01-WFxdaZLDODJ3PBvqtpbWkOAJl6LgvIMkg5ydlnk6d96OBV2nUQJtSW1CS_iakS_apE7D_fjlEbCoOCNOL8ABtLDX18SWle1-M8zFt6HQitboUgpKDpPIALUzsFme6wFZC_zGQyX5WPvXq2cBCLvOLqYpzcmxXMGycWH9Q8wGWR6rWxBrcKpFmnxaiifLI1CHyOhv5FJiJaZC7AGr-lbnyPkSWDA_Kf-yr2et20pTyckI9wQOFbAZpX33g57k81UFfKZxoEfEHcdijh4irmpcGH06tVPxggCqDpgDuxpMLBQpk9e0CBCVbP80wZu4UF9yt9YqizC6BSb4kXRBvKXege1D_yGiaJsnGT2oU6bl8uVsWpxg1cRlZtMk4lca-4lkrKCinq233b-hGGk9_KzZ4xPpwL66ZedHe3dttrf0uKhJxLvr0etjk7TPJqwCseO80K_5fUsdRU0dnYS5s8CnJhpsMW3g6artSOEdDDxDa9Pe8iWBp7_mDC7nqx-9Zg1Legsv2D2GGdmZ4rL_EN-efPs4sU2vZcjukYLh0GTjvFDzUUMYiR5yuP-S2PUPluEqWxmGS3VdhLtk87JSONFrEG7tq1fVMX9PIQIf_cG5BitTDfkI-hwt8ZbguqeBJxJX4nUIrUem3PM4uJ0Rpl7St1feEkktdl-olhHvWDSzKV2EG9ahCFO8OhlhGbuYVrJbNmntmflstl6z4EX_iWzYdcUzKL-RVknDHUr4QXEfG1QjISeiJxOgZCLVeaCfYXxWm0on4EBBt8PjVuZnYwSR2oitzwgGNqr_l2PrlA8rGaAFcHyx7_S7ZRzbjc5l5n99H_q8ejuhP0Lrx9c7n\",\"recaptcha_score\":0.6,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fe219d967839-48785475','','','2025-04-15 09:07:45','2025-04-15 09:07:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42934',0,'cd-form-entry','',0),(42935,0,'2025-04-15 09:11:26','2025-04-15 09:11:26','{\"email\":\"wayney71@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"5\",\"regionlive\":\"2\",\"currentpostcode\":\"WF10\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gbraid=0AAAAA9_dL6ungITnoo2QsVGQYIksXonF6&amp;gclid=Cj0KCQjwh_i_BhCzARIsANimeoH2htT9slLNTItOH33rIoyFCnepma-P-EGvBn-7qwsgrcWcFGVEJ1MaAvbHEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6CDvNQcgJCf65hBCNB2Z-bomUGFQc-4cYETdtf6HqmFWYT3X309euAg5-h60wUgBF3mZJXWxtET8YuOLUhtic8RncP-63Tu0fTK1RzW4giR0vTZkUD9ycmoXCdh8WVRAPhHyJtxyjF1NLAl6q2R9eVhaCCSpqVofSduycC79M1h0o1IW8pP27Gxrxg0Z8j6iHgx9BbG_IR_RwTwDKtEWWR9cwJO447yMhnu65iAaJUJpiq1_O364rrxoMsEoCvCbXz7N3tRE5ViFsrq6fBEnNqkAKM4Q-C7ZtVJm9alS8zdC0EIih6STVc7AmyniyPxi8zDOEINqnqmke3aMDZ0hjhtrqkuv0rC5ug9FwUxdLXzebpaHs_gVJvxeH3M2T-Ty9eFi2mtAZYeidhoXE59dngKTl2Brj5GdCPfJfp9oq0sXA6uLyaPZJtSlG6nPhpgtB4a6-gO5UuUNmCu1XWMUj196fgB5io1p4YkW1965d1-wTF8KeT5q4Cu-A8SXme0BjvudREjwZ0LFoPq9MdaIjIHlqI76-VOega_I7kcHY-i-SYHr9k4EJSp09-BAjIePzT7ccNyWX3ZSLAWZj-X97FD8H03RWeaHBmF66HGlPPjCSq1UFII3KXEi2wwEoCJ0rMlJxpKSQjD9Hn24G5Co7PmS0fHuZgrcpzDFTFW_WoKL1x4yBSHx8SkBAUZk06fe_cXt_gAqDKHKskLrFAU-t4Zv3Rgd9tECuBe6HbW2cjQYc-KZ8STcW9cgzlcwTRNqD8wxKmt4C2-G5OhG50oQaK4Uqv9EWnRB46BODe0NFrGrQcAR7Xox2cb3xuWf2PKZ_VUOwNb8Ppc86dD8ctXppxG3ppFPs8Cks-UT6SyYLyjimNjLmVNQq5WwAzxYk7fEPHL2pUQv_S90myuIQJhRmNUnboALDetU5P7Wuhr1ORUwMU_5ceoPzCnwWdlKYDbnTIYMuVI98QxYSU8QjK5C_649U4q5AE-vjBy61dHLNcto18XCdk4OHXXl2Rjo4PCfABMzJ7R0ja0k7gjag508hF1Wv2p3ytnt6lak3RZZxvgSTsavQzsvNOiB0mF4hdKTYQlRO77yp7xzMwX_ElktZSq4QQkkc5QtT1wsuLUYhU6k67FyYhziIUC1sdI1pWWi0v1wnvE1FrxUXbvFOyGJqvVtvzUaOcOeLuvPqK-T42KvuusdyBhlCLydnXj0KXQsTnntyoWpBcFU6M19_793G4_EFISft3gHorXxYjglL6k7UFKK0aFBUy6wV_Iu5U1YLheFcWexU_8WEUc-C_B3s9BotZJfvkhKC1qKQdjJHBLsUtLZnUqTQHlD_pFjPqxCza1sCQ18MBXG4tqLoO7dcG2R7wYGtvSccbxdym9eIT3IzzxehLFxhGkHHQPVTTOZKP_u2pkLEd4NQxp_SZW5ABJ9HmrhpkhplXLpCplfcdQ3EFhXu8anbsjqTgYIuLvtAQbVgGZ8IKnG_1iHq1OSsue9_MWqQxsS-2EqZaUJuZbNAIa2JHvn3JEbh1gxKfch0ImNvbRJrJp1D5JT6iQbvPZ3OS7n27UYX-cmS2RFvAG7qs_MrRsyVq8wH0N89eDAzHcKCmfzEs3kKxO7CqasLW5BYTtfoKm_48Zmv5iEwsPhjLuVDNvU3qj9QDkUkioLFvu82Su0Ean2xlqw6XLIYHLzXjfqJd6LfP0SQGxbXE-fPtfvrp2EERE55lVC4_KhsGd0R7KHLdd4wT5mM97xNOHGgFVw0_bmsaOElP14xRovPS-1Lb8miSJLuTJKjCpMgfI4zPTLlu30rgJ0fQ0uQuLfq8DXOWlGXqYZznR3FT1hTzb6loSgfgbFrb77WIrAMspN9ACN3DO6QmAnpwM6SgJRsUNb0q4W0XMRg0qnkyHfPxfB74r4eiYdYznya3sU8E7aF3v0gSmmuxsv4plwE9Q6vG_1YpgKwX9qEGF_SxQURm1skrdcAh58VcdTxSSFEPKk9RAhvBs_fKc55eOc9Yc1j9Oe5g0ZqBGamGzEeD58-L4g1WipprkKksqH8WqgKtOJAFfApD6Cl2psvUxzn3y84XfLFUckzwm0x3ymU4G7Oyqvqjl8npT0c75OYKgXM_sHfgVzWSfwReyVj9MdrJ_NdWqu9ZpoHYtm913FV4yjjrdZaplEEWfnlnlW_YdkSoXIjk6Md2v2DgcDqzHsyUtWax4XnFMdN2MJ8B6rtWW1zoOW4fzbJqmrxVrxGy-_8H9AjjLwCcKjjG5Y24F-RAcqsXXBxCJduuUnQlBptwSEAqPHiWezTQsIX8YgBGcHVBbGQ4bxygQmS81BBJVAicffNRM-qeaY8LnTbf86Eqsys4k4I2loZNBUDTvFfvXV99v6KQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fe22612ce0d2-27655036','','','2025-04-15 09:11:26','2025-04-15 09:11:26','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42935',0,'cd-form-entry','',0),(42936,0,'2025-04-15 09:12:22','0000-00-00 00:00:00','{\"firstname\":\"Wayne\",\"lastname\":\"Farquhardon\",\"email\":\"wayney71@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gbraid=0AAAAA9_dL6ungITnoo2QsVGQYIksXonF6&amp;gclid=Cj0KCQjwh_i_BhCzARIsANimeoH2htT9slLNTItOH33rIoyFCnepma-P-EGvBn-7qwsgrcWcFGVEJ1MaAvbHEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7YibaNuBBuGMQ8a-0lq5xWAHddoMEcMNgnWolVhDTSfMiUye2PoRDwNK4y4HKJzvewelocRmGxgvZndr5Vg4Wtj9CVzp5Pzb4kWqyHXVeFR1jsaMGFkups3aNQ3puxH2VJYbq-BhE4njAqVp_dCzoBgbtZM2QWnNRlnoRAFybPe3SWGb7OmtDVypumkguKAYSKq-b3PY8S17tpq8xv1kybsGNYZA_o_kq6dsS5kaT63UdvJ97BNB3dl5P_0bc8Az6U-jBklvNfW8tOno2o9fj4o1xO3im8fc7v0bbU8tHZAag_v3GJ_omoedVDPtbx5mQmXQzKDIVn5D0Qqpb9tNpMCBFjzinRw4Zf7XFbTJqLfEUwSWkumynb-H9KQn4jtikGMFoZaAh0m6dfKJTUNDMTkEqf0Bo5yWY2lEsKC01UQFTFlcrj6maLC3HDXjf1rtH5sIbqxMDdDzDfXYVIsTjGPRd3SaPq10tg3PH1J7I7nzuIckbpJv_pFLsLrTS6enxCrciNoPkignuM9d5C__Ha73NtD9w6_L1OJOsZjYI0c-TowMkojxSCBbJGv3cyla6gLIAkbma23F37wlY1yHy0frJ-e0cOJuIG3r2kJ9JespWrKUJjj2KgFRBDyJP9aXpR7z_dSgVkOlqBQtuKLT-0kAM_2ZfNsb3qEF6AVyKWe1ZfaHhCHvlK6j9bwaXjFAVGpe8HHuUA9nkWA4GwMlnTsjobyuIPlWEbFWbyfLf1KL58wlmhuRymgIHDMN0_cEfsC4np9TbQlwH0Dx2kY6n8tRhRZgIPr8bCiAM5eVXX8iTrY9Z-QB87XXqUjc756YgXCk15J4vX7XbWxNbB6UXHY1EikTDz7CH10dWDOhy1ZViYKhwGe0ilSSVVafpDPquL4vDXP1oBy9talbcEwHXJCEnmlh4cHUvkT_Qwvj7xsBePYQQXew8h1SbYfdIpmFnqne3MrG3HYC1GqhdHgOFkurTr_s-bu5UUt0enzP_O5wFIZllBqUzD2FsVpK4ASySxCP5MsIBrvqgHfroBROy3tIZwyCLn54MgklcWTuQQiV82o69efNkx910ldxTbgQ1xdzJnfmxh7C1vHyHBv1iLiRR2vSLc53HTj0tS2BqUlSJLyUSfoJGZU8tVOFHHswQ8snU526wjlM51zsBy5YpwkiD_oqkFRciPwjRqBxBZWKK8TgjCb-MYg-S79DgFWoMKazXxyWDgbQ59J_8s6PXmifbqVQrp6d4mi2Qy0hN0PFksrkAyrb-tm4eHcxTEmzbP6OoUDQQW7gsj1RzJnsHYuxxQihk-jnUM9NjD3YSYOhFSZBCwxd6Hvdd7L65OyfxC0XUPHXXELPv6zK8V2Ph8J3l4B12JtfV8EoRY-UYQHFwLyEtUN1riBYqVYJw1GgkDxbI8lXgCtsaYxSfTHd5_WpRyZKtpBo1AgIEntn0XLElGcog8SRVZnK10N4cgw4ZXWVRH448EKoJOWAWpF8PZVECAaWUJucwNAHkptHOUa0gdxXffwztyySHayLCSIoXn_7BzTyTJPEmDtvwS-oBlSERinoxbO1_aczItaWuOPM3zPTvzMYTUBQmDTrSB1nL99UBqK2el5rpaK5LMEyarC3xXePyWFCVFuAMftLqQxP0cm1tGioLAMwa7tKpwMd4EkIY_MBrUc2NRrZSM9S9v1JT-EYriMocDoBGp2Cv2iRAy-wv2jCijU1IogMnANbSUL9ike44ujy1J6qZQJrqBdXShq8A2Uq8JQDTtvvg6dKqApbYs0C0KMhuKctlL3AjpKRzcxcKpDduY1nN1AXWbFYrEQIgmiG0f1BZPjsX-svSWTaxZJzL9m9dYzZ0-8Vd03Q8zHusX07yYr9N-SKUnIh1MxNJiWf4ywPMfeGpTGibUuyOBQ5l3-yR-x_dxZFycbXJnMZ8hV2Y5AMR11NnCx8u_EkYrT9VAPIoQpmSp0pTnNddJIVLRccgAaguU4rlwvJHER2EYVkLBzDOjSJk9UVTQYCxLgbqsH3_3_WcrH23T7Hqw6mTnL9HtUI2KzUTvzDgRikHpT7AKxWMuCHdJbSqyESx80IzwxtLj5GounO_C_kA68m-Ns0nx1X9OUAarFQF7PM9Q5o0nLbgg8YawnTkvY2XNwWz5cDhGYDEUw-2iPqqgVY_vOH9vGOFCL02N6uYcg6iw10c04JGduiMXbZ3FVhDYdG4w13LwnVHXh60sH-iaBKEVtVh1hWLOlpXNmlba9BezMl9W3Ls6lUBGvFrXE5KPB-5O8f8aKxVJLDxwyjSHN5PnzlaAGwnw5IFqr2w4ITC8cWj74TyY7D9XwVDL82DWRMnDWj4_eAocUMa4Hnn5TK143cnvfyWyGM4wEUp6\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67fe22f6c1f6e4-91932093','','','2025-04-15 09:12:22','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42936',0,'cd-form-entry','',0),(42937,0,'2025-04-15 09:40:52','0000-00-00 00:00:00','{\"firstname\":\"Iwona\",\"lastname\":\"Tusinska\",\"email\":\"iwona.tusinska@yahoo.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/success-stories/biomechanics-education-testimonial/\",\"recaptcha_token\":\"03AFcWeA48kzhgyZjBwlrxsACHqdEUmlfopID35DfActyJ0SH-3hMNuFDAe9wkUz_hmmb96mxWuJ0eW2sXbnoUPZ_jexTXQbESyAc8t_HoQMbG5An9bVJbmHVpdb2GC7lk6VoroOF9R43oBZWQLxVy_QqKW6BUh2m9W7YU8jO8X34J8M12o3DN-75mUAMhmDbBNDc_V4HZDD1XveWQFrRfkY_YFA2Tqt8dcR80iV-ZRNla5bl8JHlKit7J4BZ628t-VcYf-YpylND127isYGEVgOc4ivrxMizHlN8bt8BdT3NG4YsUo-YRhAwqvW5Jlv9UHqy4i9KAuoic0bnV0j3p1Bv7-N85EqKZVJBVchiudXTpNkW-vneekA2Fbspmos3-gzAireEWDvbhM4xk3GA-EyTNZTkWMFlD6YzDB55KZvtVbOslbln4u4QWq9OI__fZGIuzZ8_JUElbCkIpKL_YA_4nNoomId3yqLXk07hO-JkokuUUZu-s_1ForuCFahjMBvumSHrmd2peJ3bQnWnsAPhKGsR7uSt3UPBOtRaaq18dKCO9YHh_IA3Zjb5QWUEu0Ywnz8NuMna3-7g_PWj_DZ1RtP-bC9euSD5H_2xmsNd79s7vONZAXUiys37TQO1IyZmOftEjyTVmURsgZXVLVNErNXISNomz_fbHmXWuUhs2ctFhV9uXtbx9qLOg_Q4HklUO05ahou20YJKPGRbcUjD82lKcEzTiiB643MBDiJ7pA8kgqzkVKy_mcF4O4U8S0HnRareQuKVloRPi2nJdepDaPSiF3xBkhnRiIUoLuw9Ly2ZM1SHxZxpSdslGn6SmNFNfzl6t78ELkjdjcB8SjFhs-sYO40GFIDlXsL7jKAHrjts5-zigOVcc85BcJrffg9A388DDf-aS8bR7ZjiANkC-hlVSkzgeM-WGDsL2hFCypfPk0AwhkFeWWEQGePzCmBdlwGDstiUPNsmIov0nmFYiRrqyKD6vd_rAnL6a6qk5t_aZR74gdndYQQT_GIGRIpOSEULFbBlFcqFYg9tYfLeNZ3JDW2N4gOq9SzkeyZpaHrRESVzq0Qreji4Az65y6Ow6IWtcS2-4g_vMd0emvEwELZrLcctREQTZgGP-TCU9_MF3w8InG62WfiuE1gaIc1Z-TZHZvjVTcicS9Q087TPgJd9MPwmpt22fXv7gZxzGuPi4oPkPipTcuxCpy2-He1WG4cLPehTGKBCdLsm8NCjjCB2xDCuz4UoRL6_9moTEa6pnjGPTsVplJGoWAjNB1JWWp7Pq6tKBugyhloc0uxnJ9-IvWIABkQ3c1PutAbGkJ2x0JsxC8uVITzqCTC5F0cx29EnMhaV92uYzviRQGr-h9BOiBU85Sle1GhKdfxsIrhERv0aoyWI-QUJMJFu7lThSgGsurDAdbhAA3ko5XfJsmDqfgvbffQNZ9Wd2cAt1KSyZW9ksPbLdom51FeBcop-PkTkR5QDar4Wi0_eoNmEGVAksIoAcWH7yvMNEznBCWNeWoLwyMCmzUHaGpgv3KRgt2c_tkn03k3k1tJgRj0XYA-eLO6tN1Qz4bfXEf6LvR4KKZDKOMIVK6OIgF-4_UTEXr7Bn6GeCvn5qjPqWpBkPSFmtpAIXRIzs4ryTYHiTA4QzO0-qfly2dEbvZp6R9ipzfydrDfxyLPG63M-Tu5FfJHUnaTgdlngCKB9ykC4h_Bi3GHqyUQ2KniWdUD4ebFEMOMnFXNptFn4kRifBaq3I5DP60ItcF0gnr6Quz26PuVNYxTr8QD0q2GCMh6NPE1Evn4_2C01OXigojVFZUiw_OYAkqp27VSYv_xJGhnLP0bqpQcp5ZQQt9ffL5qm-H_MH0CJAqbstIJY00h77Zup0DHzWQRka3KhZ_9_artQeWJsfTyWM9VSycLSu6dDG8Aqzpc5Q0Hh90x-jioV3xHBuaSNboQdNG6MN4kmauSJ_6MtJDeOtmbQ4jkSKGYnBUjksbyPhj4P0PS5EeoWrwoZsF5BnXlSNR_ruEjXDaKSVIWwDE4nM4XVqtNVKufiQQda5XqdCGRMz\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67fe29a4b58db3-36039977','','','2025-04-15 09:40:52','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42937',0,'cd-form-entry','',0),(42938,0,'2025-04-15 12:43:08','0000-00-00 00:00:00','{\"firstname\":\"Jamie\",\"lastname\":\"Squires\",\"email\":\"jamie220702@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwh_i_BhCzARIsANimeoHyP06-kaf-_BR2X5x2tYiQx5ikEkTi5jbViHaFESTVSN7t8Gn-9jAaAnNQEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5__1qp7nAvSfDz1F9vu1FD2Rhw1r7OKPiO_tIv_lL5nulrMAvBATo40FReXkZyQZFYSB5rs8osQK1bJt_rFjwHBA-4k7mQdeBLFoPbTryAlize3binIrozgI5H0kzYsQLN_6Z1FIdkcRL6yB994w0K8Zer0rPvhNXCu7v64zNGAvbVsy6Z9G3i3GadWIqh3OedZxbS5M_rrQWiLsfP8SiPgvNQD8GNJ2AB3IZ9o-Ri3-D_vrFksU2ogasFb3DOo8kQVOB4_tRRNDll2Nfr1YzDEOBkS-0bN9Z9M7yhURQvtq8OPY3cPePeU6NWGiVZpgdNnsmWLNiGT3JjW0Vl-w0jWnCDDozrTlHbmZrTE8Uxip6K2xT4FGq6W71HPuK5Rij5uAgDV8YhDkt87HJ_rl5WJeU0tauIDg8z3G37xs_6NStOk4zHb_h5yvAzFAGExK4MyjpgDDOo0kQXm2VegXZ29IWZ1TQSmlQUqCte72Bu20lukFFu960o6_s53BcEKYWZ3UDJ9rdcg0BJVqUtKD129J_wTIrh5lxMiV08NpZHxaJeaPRBkfUI1H5l9B92mfdyTlh32QL64Rqj72EjXa5kVCwShUS34kbGgGQ29EkhCUjXSDkd-EDyYB4TqDhkybch_v9UmCealbp48uO1YQO2EsND65RyGr12i1xkfAPhVJnUQO0gHuO77SdD6nucsQP0pT8SYQdv6C8ZVI74jeyJac-t3xCMek3V8sHiqWozpcJPxsa7ok8dYQ8lrTSyXejhlLi8dvuUA8nSqYpc-S0ux-wv7vdc5q14rtsj5Jy-lwIb_yb9_5xVu2YHiPBzcTPgF85b4BxKpmrzWplhnJ_baKj6rvfU8vnt2CRVZEdP1zyc0C4JW9GSdp6Vmtevg6HZcP8OZEBcqe8zv0FmgUIJqJE_yOfhl1S3saJuSbIfBtOpj8zPHQFm8BLLxeRktMUoSJ6r9a5FA2a0RPEsCoMNW94EL9JHAQm8R8Trx78DPtkRN_y95Q4Og-5eEq2zO53-htRJ658v9nuGPJepohl_o85gizkiMTf-jKb5fkNJDX21AOCbzYa7tmT0l9Lh_dLTBPJQla0o3sLem38yw_vk2R9-2vfGx7NqEcy6AaQKRHnZ52rWuy5I1933GnznPqIUxrN08rrXwAtnHBLJQixOn_A8D0AuMhKH2drSrOIhOMk4g-Ih0xKYPGqKOx4U37DJlklVNgEmGQM8EdUKk7bNZY_0sL5TD9lIUTkx_d71UOl9mkM5HY9__TIPl0lHuYGb02bPdvjz88vTsW2hMKL0tnWbWoKKTlMd6VuW5ON-mKiyAiZvnCmqV7br9CEEE0g4DbFji-wIzuDw-mpFL0uAqxW73LWf8mdK8EErHw2ycFKzsFB1S5lxEYBsjTDrHvEqMeIT1DoIgnuCMswu8UGuIXyrM8d4wAdGZGz9_93fPlVpm7Bq8vImxNMy7MhWGhoMnuNxsT66tGkVzBZm9ZThifCX_rookYAtYzxnY7vFgLt84tWQiD5CGD-Btgq6HyfKSQMvhg384GCosyGJPeL95VMLrDUUPerfUwrkiuEF8OwnsUu6YpKYvw57pmnWm5rs-R3piE8aUDI7DCt0dUcN5lGhnwXVYIhk4lNTzfeWOlJw0tD3I1M0I69EeK2ECEHfWvSVJwFn3Ca2IWL0raZzaAOVw0FzhLwHKscs0LqtniYmwTFORc2-gganWGcjmqof7bIJTBYpSY4630vthd02wOiAgTkqfrb-PnJbXKvJqO_rhHmmJxmHmTeybOwDhFL4Ix0oMI5spTVOReo457YJZWDu0OqoHcwaD6h-CyoJPXeUQs6PZgkBrih86_owKOHf2LvSjOC9VRGkcLrIGxqnBLqYF5gtMpDgKxiT1bs0izo98lYfxxh36KFAKT64aL6PPupAFGH0Ii2jLLSZ18nzymWp0BRoKTGI2ac5vjmFx-X94bOR15esYPDOzxqHBNJUqJAS4ZDe3Zefb3tWo5ThA3MTkNaqMLX27RU-Z1aob7vOLkctt1tnbM9RykSVMOKWgxjrF-WnUZE2qO1YliZQBxbxbv-AMBm2VOvftyjAPTLZnNFIxyXcgnhN1fpMgJzj_cnG2-aUBrnm6p5Ev1SUBOfacc3asbmPLpOYXb7Fb2WGZzNCZiQ7WRF4IRB3dKUMuULi1a7Sk6nJp_RyLHUx2pKMNcht2cYRHKQUN8-4P8wPcH4xFZdbsx9Qr-vIhVhbV9GxmhA9XoXuh3MnFhbBTZmhV1gprmXu_AYQi-sDtpWBBqKglvamB7D5QrViN8RwKL_5Pn3xmDlLwhNOp3ZK1uAqoXLpVLoAlwD68wESe_0tyo5lGAJEPU41iOI0uhgDpz_u\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-67fe545ca586a7-03742857','','','2025-04-15 12:43:08','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42938',0,'cd-form-entry','',0),(42939,0,'2025-04-15 15:20:04','2025-04-15 15:20:04','{\"firstname\":\"colin\",\"lastname\":\"wild\",\"email\":\"colin75.wild@gmail.com\",\"contactnumber\":\"N/A\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6QrL6geSelT2LFPxHaAtXfbuWJVGC_GmmOIRCFOtmYl3DFRdMb35fEbKi-OhKN4zTbLtX1maQJM9qrjR59Tpo_-5IVn-6XdVN6btsjQZ-pcPzsqj-__YO9giPtNfKa-kz_z3bciK8ctf9GhxlPWBereW-MpkMtdKt_rSXsUf6tV99yAgaVzRNofd-Rra0rTNtgs_uxiGkCj0OIAdIugYQ2raamqUo7a1FQKgCrivSk11O7qZ4K90qtpgtR31GZu7ULm_WysgRNXQVoHmxAh5ORsj5ocJZmzXOsN5nG1zfeZIePbJrGykNOTScFchGKCuJyE9E2qBKe0n1TRyNDgp7Zfesj7IJ7WVt4X2-w2dxQOFfJ6lrI3dMAIl0w_lIOPRrjoVUpP7-TPzayrfFKDgfqdhIeQqiqHCZc5sWa11m7VY34o0NQzMjgOBtrtBDTjQjOGW9NokiRED8Lzxn2PiRAsfEy6G-bgONQIJQXGCE75fehMILWvH4fuDdIUIJnBhz0lWooev_HLrlmsBWmM3ke-Fjq1vDWdmV4xQ9F3l17dZ7EFn7rtLRVxT3R1hMgbkKLAVo3kYNLatnpEUwWqyGdmPABAtic5KPGI6yIkJBJheDWNBJ9Wmx94wDiIUf8WvbBcDF_-vCKd9DqdVg5KfyloHBAuQhLA30rdUKzqpOhxvqUYcLnkMM-1UGfJC4wfmIgfPv0-K-C4N8ANhecMr9dyNcj85H_VXh7VG3P3BhQ6WY_3yyAI6ZSQmhNy2DCqJm5v-d6w0UF2i_A4JP5fOgFv_34Ytk66fAtyqwVy7fnAbn_MS6Ehjz5PatE3WkXCNlh5uaj_UjQERo7N2gCXoKRzKYPKFM_d7QZK01HN0vtSPtDxX71c7P4FbramzdHjWh2hT-zsbmQGOEO5kvfEWGxpz57Jf2IHE3FuSsRqhtKh3S4dWLvDObmbi0DIuwF2A-QzpkhtG0aWgrAl2kDOIi5_OmRJa3_Vh4EA2nAwomMHVaX9pdSxjDW29gUD5d_RtEooNO09iu_0j6Ls_nqiduY9swXvT-4Iq_iZUgoKZATAgRXCMSo2T5a-jRFNAW9icU5cnrJuTrz5N0XyPoVdf1kSTtgKICUPpnr-g4QJ5jYx0lg4O2OmyK0MaUOTycstO_u3cCjfVgqawJY_hDnFO07S1Dx04lz1xVNsqcVDTjiW63oh_h8zvc26t_hQH11Ik4v2xmSQBq0ajSjWQkBW1zHO0_5ITNHgIZH3oAPpDnDjOU8K1RG2F-DtTL-u0cy4MLRMfT8zYBPWQqkMhhGi7HgZ_j3hjsKt3PY96UkLhp3EosWqsjYTEeWC_Ga_XIDfr8z8iM4XGsnXNLBU4HFnzlPzFo1LVA0Vuk-CdXqngWv_aHcI7JnqAT8N0hwKSIKOo2vlgeJc6HUdIMCt2SiLIhm5yp_nm6aIFy2J_oKaBrZ-NAOan1UnL9dyHSHQEklDmjOjpelOBnx8rZHqabXkge4dA_S96afzo14x1Ag1lha39_Xp0pTpsDMDdrcjVzdQLQDa89N-IajY-jOP9cskEIphXb6rc7A3SfVsmti30BPnRGiru4Z7pHxCkPs886DyIJxMbIclygYukDQJrqsT1_uOwwfwIl_UXL4d0CmBOB0PMzNFKqtBtpS1OfrB7AeAq_ge5QdKFmqEk18ir0BAPMgTy18Cw4TvACY3xCW-jjzT1FSevTrOWetyZ72_0xYprM3YQyWfW7OEhXvaiwc-w-rfd7sc9a-u5JW3RTH2lNdo0xLGMmFZhiyt6bbYgTqdNpWEPaDLk7lX3FP2HM54fMd2LKTv2mIL6MZWFPvd4Af5ZHOuBZ3fxgxfeCZz8MBSgJxW5nRWY_5cbYwp4d-8sz22jo85q04XpR5bQozvVYQ0GL95B7_1UN8bOIsFccPPcZpMjYA6FQBGDldiakKZkp786Kra67uuR6YZn98QB3Gu-djUrPowytzXxJFPauBnQ55Z1uDzSrVcAiIqrTJkSd7EwEVz_SitXQPyrarhu5-oJG_zgCj0PMruHb7p4vvMl2zsigHZPUwYiIbFq1plgHxqRHzhxpu10jHxb4P2TBNm60Wp6m98jqUhJCVYfGzhYA3miH3PN0jszYWCApOehBHhxKwuw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fe78f8b78ef0-29303021','','','2025-04-15 15:20:04','2025-04-15 15:20:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42939',0,'cd-form-entry','',0),(42940,0,'2025-04-15 15:21:22','2025-04-15 15:21:22','{\"email\":\"colin75.wild@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"3\",\"currentpostcode\":\"le131nd\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4Ncsf--Zc1sP4ev0hjeF5rI2HFvCqWytPjpezKrZ1V-NFh6oidFbr2Jlzoo7iBoRMJuASOyaEO3f9RQ6MNnH86oxdUPgUIKiMtdHdPZm-9WHeksAmyj6ZwmkEmqbHkZYzF6ngu1KNfIka4H1_cPJp4RXQB3PmN9yfjK24Dv4DbZQd9OwfwQ65qW-Nz7RuRv58WBrcpkNUeTR2wvlBhI2gSt3IHnY6N2jloVSiemcThu9NhOlbvaljJpa1e6DWQNx9VG-qRLws0Ov8UFp0KP8mEIdRQel0wI4783axWcIsy1gvrkzMuj47KrGtlDz9Rl0Hqn-1R3GHY_fezXhAF6tlBFOW4XLgFD0dH_D_6hKo3SvTEEdArDdmo3mGFh2jmXh0Q4adN36TE1J2s_rIcr0e4WEYZNIr_ut0Qg0ik7hcj3V2la5dCTk2IgMmFS67dfe7vV4R6t02UOcHBF-hZAh0aAAKgJ7qXHI5WJ_h6-hH1Ryr84GW5VjkVJEDeiji7EO_BIh08ggHc3d9YZ-_TEUGH2w8tKWKBwl0KacFg4LLxNplXN16cjfd16dxyDzFom_RxsgRbh_elU_uZQ5jtHcTxMGpZvYx1MAQ7NRNgt0yUV53zrgmKRvdIEQy3W_vuTQW--6FNYBPz0rHB96u7df_7t5yH6c2u5nlUULAN-Q-ipWOq0vLkfhbYsf_oi2lUgKY055s_D2Gl24KqhbnOgJLIVOM-zwrNGPGENdjWqofnXSaHvwbA885S7q0Mk6aq75TKaQZAdBlyqto_r01XXUeBB2bHSrCbiw4wcQqQvGiuWdyMqP8pBgipTfEWhsZXO8Wqo_NJMKnVUfWC5cIdtZJCpFOmFw4_IzdGnakV9RcJHaX4YJy5Vse2tT4EwJmiFHwB9u_BlopiMIr9gcStI9JulJkv05_vg67CjLiIGC2to6GEvpECCrUF8gfjlhEFT_0JqojE4jjVGWdcbBADCzMuPdppAv8T6xGmbiW0XmUsu0IqmEXeibry7dJnhmCbx_Zd5rqccyBXGbSCZzzVamq5Y2fsbq2EkEog8QylqRai0VQ-8eOWv_sIYeQyruRIq05XnVvxtNOIXWqmCqmgD1aIOUveLcQiyeQlPPTot1dTZ1yWxD3qhVEeOTpaxIAMQu_fuyFThqmZvg7Jvu6yfvAEatbvJ98hNPOGaLlR1fE-MMQdyIyvx-xZt4laTmCfvF6JFJav6Mul81DFF0yQCrGcUlLsWjYOwQqFEKdLN0z_SJhjmNAXIj-Zl4Mgje9_CwyiAEm_l9Pgdo_T_DzoFN5YNOobahDqPIi4Xb-jnlYRSyCr-d074n3niWnnOKpBdYW1dOfFsrNS8_p5o6-6BonPI-JHS-AioU86UZYcNkG8kjj_syIvNjUcjO3AIgE_jX_dhqZapSzmRMG56vdIWnc5jTWiQBt0etGFjpGdff-nkCd2KyYPleIpXiRiUkI2dmRXPOhqKpNSXgJHn1NjsKvgIxADt0K4cpQqLfmxvGhLZItfDozZfe1uTOLWfszICcx3QLU_WAaVp73wLQczYX2K13i-mdVXJazN5W9ePwiuBhChg8x3CW2jqR-9Y4oM2Vu55ci3q5micyl1Rj7VoD6U9XsNnzLbrqVn38IMhkWdHEsxiQKnIs-9mKipGyZjj0H5ItDYustYYP9GzLZbZTR9CCEMsbgaovMDQvOUQfjrBi6r8R2tWKW3P2opruTU4Y202PUXdRzGUdYqK8KG-xcrqbGkICNjH_tmIqVsbneLgcECPEKX3OewF3Uf67poTaGY8Wz5_gi2W3N7-NuK9x7ZdtMy7_nlAcV95joOVWCXwe8op_hj3xvGLM3kQ9G-hPod9v4CdYh_Ob3813-0BhHGaVuF0mq92p1c4MVzxX4rRe1amdjOjXswNLgQnafQIsVbu1KFW4yNIeY428-S6S1drkq877SiaaUiE_D-MxskyxsiczruU1AI9_ZziV0iC2qjLxTTHGl40TKrns-014IqKfac2PoIFVpAKXVrzQMLaySNFrwHrnjCuFvtPhGONevlGuKioZbB-FT0btIUiZigQRCWT2d0KgmMA40OaZKnk7vXIleAMovodpX-J2pDXsZ0iiEbGd-9k6t1A7Nu1xSIh9xzwA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"15\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fe7950730e38-73413569','','','2025-04-15 15:21:22','2025-04-15 15:21:22','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42940',0,'cd-form-entry','',0),(42941,0,'2025-04-15 18:51:49','2025-04-15 18:51:49','{\"firstname\":\"Andrew\",\"lastname\":\"Cross\",\"email\":\"andy@crosspt.co.uk\",\"contactnumber\":\"07791781200\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwh_i_BhCzARIsANimeoFi-3eyGR5c441rmkK9v_O6yWEkGhDCMksbpnhASAWvTrW_VPoEQ2UaAgyIEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5KA9Q4niKEyFNF1wKjg1RQEREaMn-Y1tdW5R1bSVj4_vZ1LLK1Fu_a3PtwY1BM_Lyd2AOiGMZ2Gs1IRZiPAJPBVQwMTtbWs8RFkWmeirGmpJrIGVc-G4jmHuZHGQuBduNY3iXx8o_zncHFMFPOuF1OYaHxBAU7G4paFYanvyqYnMUZb7x8cNKxFiXNHQLk1TJd09JCv9rt5XB0BWlwQ8TEPAUo5rc5PFa8K_Pk4vq42QX6FASYbWeTb9QJgqfTTUbuT4-qmnZXYUBOs0Ph1kCNtv_K03mxsWm2aiM7tSUn51eZ9-msfnTUxQ8sa3E6DuqzbgMoREDGKwPvEs-9SrdHo0MERuuOIvu7YexETKoUQw8jMU2GhpvMf418IGDND-cf-b4C41xCvOSBoWU5W1BTvIjdkaWLiECUy3oDydl9M0QW-gNiM2VnmLHHSeRRDwKgDM6gqkNpagPxcr8Vvfvao5D99VveXiRf-lMiqohpSvSw4z8m3hwsXqnIm_rwCcAGll7O25jyYatd-4pmUSMjtP2OJfDUC_rm7OPA6Vt9x4wsVA2Nnn4h9IYusRBP8o3pU9awR6EyHETO8iwn9iYqoYzYUUFL3ETuu_J4ABENDGfJMg4pCi27NVnnUDZOQQBzbiOBKGWhjpWPy9_pZLryzurvrMbqb3ovT_KfZ_Tl3AVI31gmcLBzfWGj-tp_cX9LM9AToh_xWg1We5G3cCe55xa8rN8fOnz6MhylDkQ6F7H9WRHCxojVPlOEnvgUBzxgP38c41z0edML80l4Rf8R71aAIwaxfKg7PEG9dP7xi5bIcgB0hmvooAXulqU3EM302YQh_Es2kJ1kbMmxnKpVUE5x3OGLeLuFyzBk2ZM8afAFuZI0nnRlebZX-NC-dRgRgQ_BpEQ45HO-5OUZy7End37N9I4wfoGJLwbTgU11z7e1b7J9bs3a3ot4BlWwiw0CVed3YhaQ224tv31DzH3AUeUzgf7sAHkBU5RuQ-miLKUzKL1RFP3m7iJxz1pQWJhQ4N2f33H0M-mxieC-Dpm80wDCstgh1py2xieSanjeE0Z5EjRKpjFlPdGOQBKgD8PUimYWgy7fVduK16VN_sDh9-xJt1brfcXKfqYOn1UNl62gvAfrtoGwIlmu7fVQJRZjOn6GoiH7oOHClkOEpS_Gom34cpnQMGyiAqHSIPKCyKOWhS08fF7Ks6GEUM5Rc4c7xQzEhKOAq-jE_e312n9gYt7sw7Gr3a0P0JRac_O91Io3gN_duHvQNg8cwnYVCctfVbbRniDjEto3DkkSnv_0CeU9CvUIA4Ppnymg6r1SeybJM9A5AYokrpPymfCWqnx1M075JCuVai-tYIMdGJ1k52VBcD_lpuYlTMFkCnyFybpQdRBDv6SgMitTOlMlcQX0wJclwqMyk4LS8WqkIOT7fBkEm-ZHPM15NXnnlxygMNco5BIeDSrU8lmFIQ7dIzHqliTXYdziboyYlNXKZx1-PSLjFd90pH8u0ubMRCGumKKvFshfEubTY7IDTvK4NW3h1rlOEQEjils48tgc2pLWIow9-V8uzOHXt_ma5Pd2xkaVHqITG3_D9q4uwUMx5pKWuZ0to1iWIxt6q92Q-_iMhAqfLDYY_u5ruQ70yjtjd2lq808M8B8EnsbbqtoeHRLWWg8eU6pzOi5UVPmZahmXjeKQ2sZf8y5YRX0KwleQbT2GSlFLYlEuIZBDSjlA_j3pSRT8FcahXQNsf1KpHcPIIS4K1ZnPdo1o2WB3Np7ZxqMKRXGSO4IJKoy_Te6OOahe_5SndA26Yb4tFNimtE3cmIjNKu2dNGugBd4_eX8pYaf2Zvjjblh3RAn3y52Qc5SBqL40h7vcBZvot520uvVI4jIrBGGDTnu5EHG4hA3cTz0OAlPKlE7CbAF7Tr2JNY3Y6I2Nx1ihaxKOcDOsgohenKpiv_Q21kCbBtD62_UUyqFdzRtwv6nkd9YpxOg6DrTtIyYEJaU-2fMRzwn3iMnGDkm1A3qL0aa4lvXyRy7kGOEa-bsLCdm2ynNCgGCA1zVV0btMiJw6POFMvdtWty-jnChCaJGjXeXjdzAATNY5TcUbVBGhnNShZGrwUz2nR3RQQie5MAMUQdHsckAGHYAy5vKr1ZV4lJRCvB75lVYkHaxLZN2GfpE9TGYrTySRNxbxJAWv\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67feaaa6c03c52-16073071','','','2025-04-15 18:51:49','2025-04-15 18:51:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42941',0,'cd-form-entry','',0),(42942,0,'2025-04-15 20:35:03','2025-04-15 20:35:03','{\"firstname\":\"San\",\"lastname\":\"T\",\"email\":\"zuzzyzuzet@hotmail.com\",\"contactnumber\":\"0783778306\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6ungITnoo2QsVGQYIksXonF6&amp;gclid=Cj0KCQjwh_i_BhCzARIsANimeoEnNlk6F6gJSaWLaGWvbQIvSlStoNN5fEp4kqzrDnH6zGogYSWQviAaArB7EALw_wcB\",\"recaptcha_token\":\"03AFcWeA7mpcty_B-SeKtsrvUi-V5fnEZi_CWxeU40TEiPKPf80cYvHj_SIFk3OVByOQrSZXBJIMfAukf-cChF3EKsGmWlLoVQXm_-AMqbw8F5nXSTaXTKJqam9KNyLypkFDuboPFO4B7p8-TY2J7Q0bTFiCv7rfH0saaoc_HX0dujLFVC4wfmXxguXaG_np1VCHZju0QU_JowdSm2_BiW1uAT18AJOCf65Ecxrb2ntm-ic0Z6_zobWxKRfFW7y9slHPVYNwT87JppsCihoQklMc2DoOh73TWiQv3MBi4ycADLirPlH6aXY1pevU1ftdGNTqfES6DWQmzXPB-AGNKqVRZm9aA16XDP6SW31ThOC_0t8ZdSI24FCxZ11-8beMbhviV5mwfNi0nXlW6OIDMopsPF-YOCrF7Np6YQ7HgrFIeZCTsftRpQ0MtLiCKqKZDNDZ8ei2zKhI4ErC8yUgwkagcA2jLYmLnBRfeJ1B36BYUHaRVua6BObwvmIwMXLHRR--zv2n1ixxmmx4v8Ez3ACsTGHCU127ERR0-M5VtO6j60n04-GMR4TecnVFtHJ_ObYtYMbICZ5ldl2NJ8yT11S0Hop8IIUjPptvrNDs8KvXNc46b768VC1ahLqPWtVNH58zniTpp4j84p2Y5fnqOxVUxAUIADoDlAlsURfhvqxfRVnxDv5EyKzD2gqvj3bOcn8sSyH4Ha2r6iXXrsX0xrC6VFp_ZvmbclEIoUK0XekMGvNr-d0dAa-iXkNPugmV2tdRjlgFk0EL7tz_d7hm1is3kpIywpo2DCRWbJpTbmHOy4S3t2x599pCfh2M8RwG43I2oYXo_B163EVRnWe-2NfDGCC-GOx-Q9d1vTlpZukQOs8x57XXPybz_8Y3BoOn_-u8Et3MpyDraV9VHJPCpMokxeJ2NAG648OnBfbbLt4e7SExXQ_T9DHy3zfFcm69tC_WZTl5nKC4bNYHr5DbDJoyR5TcWH3P1QomprMDQLoOdQ_t36s5W7i39aM27ZOtzT8tEE0OL7iOi8vLKlJ4znMtyItt42xC6Qfyc9ORmXEDOaD-xws2NIgm-L49MWoQvBMNvh8oG1eScedfkLG4ZhrsEtDuY4cWMXqUxHVzZFtgi33-_eDgb-7dNw3sMGcdoK6r7XRr8Va8t2mAEju-xZH81HGZlO91uiMdy9W75LCKFm0TYD8yINnmrshXEm4CY-psmQjLyO5ogMo5aQBZ2rpR5H3Js7cz4dNtvlH9bMlRo6cW_PVJ-x523bcfnwiweezzIa25TRMsY3Ws3E_V9ZtqbqabiUuQsJGB93sdxD6M8BZa6dTZrHpOB1dka3PrxdAeB0sIdW9Y3lE50W4VSsSMesxl8Vl_zQFAoqS50_tW-ZzJb6D19n2dZWvMPvknRQf_-YvywOToTCSvCoI64mYzKqW6bNW0v_7Ds2w-jnciX04hRPAkkV0WgeT18KKA2nat9t6E4KQQXmcUKxzj1QehWzL5pNJ7SkFP5KBUVWG-bcPH3y9W5y7cnkzANUf0Wvbv7l_pwtueNlld2N3mpCfVPxDOGzGwacIYySCprHs_N0NDdeN6UQvvRJUxICiD31iWhcSJMJfygHF4CV6JbhCbfdXHKxx97wRgVxxJCQvhmPytK8zR_I7DMxEENyAzgS7uTdUo6luWcXrZDk9R4OlMsh9ZDfnlUvWgOoixZWcT7qAMxHCxp85tFL9_exAgeSe1Y9GoO9_VwvUTz4BwRKArRP3sfuD0cIgy6zsmBEhp9wqcaqFuv6x-0CvFLICT18L-SEKJqJwzojOut0r9n9zUlLM6AIhpBLR6K-l-azA4Ip9pUK55LLNHqyRETVZm7ibyRAfTblKdgaibp1z39OLXqXK3CWQL6cQg0MWTlk5tLJEGGwXwetwvGBfDl8kBdta0zdMa8JoeZj8YVMOHdIvY7a9f2TCZARW2LdONPEuWnv05Rc68K6YMZZz8diAfTFwhbSU5aJf45olzia4luaTBCOOAn3LdJAupNTyGTD4VrkdbpDAKyBPLkUFz7YJ3qcTMs3xTJqcXKUhy8yfUnKVLQsZbRPEeHaMFqjLVOj6CJ45UgLTW0cvVFwNg86Ezew3CDyY3OKLFyTmF35cpnvLIqQL9VgurbKnkIAM1FJU58wO9ZDpHgbZFlH-6fv5Q87iGhnfKB15MRXkU3npH5fR1h-zXFgnw0TDy0aaqcBWuGbGKyiOLoQfNnWQ70aNgAI4XoogaPA32h-wCBOWldvThvUTmfeJKr5rTzfXeWUiAqsBFawUop7xt6hj-D_nXNks8TJgewk10I27Tsa-x4KahDuRxDIuj4wZd_r8YygEILVDENpAIluer1Fd2YSC-LtgT6FwTfVO5PacylphBUrrSP4LPxEXdv0Ah1-BoLJsKl5vMLDGCBJJ4oBsKByuK7WZTzrypwL3gfT\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67fec2db70da66-83969805','','','2025-04-15 20:35:03','2025-04-15 20:35:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42942',0,'cd-form-entry','',0),(42943,0,'2025-04-16 12:50:54','2025-04-16 12:50:54','{\"firstname\":\"Sarah\",\"lastname\":\"Kenny\",\"email\":\"sarahkennyphysio@gmail.com\",\"contactnumber\":\"07379029046\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/\",\"recaptcha_token\":\"03AFcWeA5Yvc_z90hiFU5nY4RF9lHzcX5oH1YFobNuBjpW4Eb8TfrgdRdImN2MDLOOXmarzeyYBQYRE8q7rXicRsuf4a6XwnPh51xqmU1GCdNdvkSyI3Ov2KQLsBHMAfTTZ6WRL6-w4ezeClRx5lAvLl81uthlWC6gQnouya8ccoDGI0LyxdxjB1IYl2xpAIVK68bHOqV4Pj-c32CCLeKyR8huflX4sXRJS34SFtLVLwzQMO2dlfe5HpdVOAj85N5gTiZBbpMIKBsAEhXOVkpIpQ3W799rr5hjLjisRGA2YYirdV5yldLFZjlyGZMtCCTvzW_5hGHqEh-6AjA55jnVqXkNWeoc8Km8mHDZ79jQb1WJd8qrCvICpV_-k5f8ptqycNF0ZcaF-uK9CKXIDeAeBUdE-6N7ct0AW060VuXZm3VxFRjqAXqFtWOExwTLy4I9NGBKJji4PQ7SpUir8QF9oMfO28yUHq-u35ypjTF2OJiCe4V-BawChMsP9VmeZZfSNiqGfLCIK0ZqrAN6VxJMsvMb-XACqe9-0XabIJEXAaqRu9T4gc0yIcZkrRdMFMN1wYVGFeplpthRI4J5fAbNRMgxDr8eQgWAPxk7QVOyHfG-dMrDplZXNpJ0G67V8WfE5NkuLrVAjlEUmtiVdmu4iLK1h4TMuEMefYNrH7W_EAG1MRFqci3hRtSP78IF-tR-WnBDXsGTt4xgfiAbJgKMga156GqhNDxUdnc1MpzCTyQX8f4BIN9UYKLGnDqck42bnUxNeOU6WGOXF2JorONXPfU6bMRsm84F_GtjggCynzPyxt27AAL4PQCNyyeRwpUTfHWSyAxHNeVwVvU4JV7jAall3YDdt6MSpVfM-v1HUWME8gGuSdwopx8h3uKCPJ-Xg4zJ4gZqcv5otaUa1-UWBwqVec2XKQSRtIYXDuirwD6ypKKW-hJtk2znHpTv6F2TJXo7XRSpd07_TX7uEI7D82HEQlmW9lVRI8-F-cPbFsVxsVGtsgVqcQdykYanxTshe2wGzowQrf_4ENIj9-dexeMFQR7OBlfl9E-wFcZ-7fFfnY12G1Wt17dY5fiOACAM67qlWEFvz7q9Gf9Sb9Z7WBRz0_0nOeGixu4y0kA_0sNbsuAG4i7WvncCum_89ep3NktKseQamdsLlZCSQTpgmnMlh1c028L_Nljrzwe1_m_zMQ5GlxFiY24iUH1I8Q8FWfvkWJ3gG6J9-mkw-abvd7qdh_K8ASA2Uxu7H8Ge0T673dpPZ60Hk0TRa5qJ253UJx4EPVz2w1zKCeOPuwQKloqYmAeSzLiYh99Slkkm1MVe09-0Ep4f1-gCg56Rkws7JajkmSB6Nn_z1WTwJelXTsb1VeTe8cBO4TV_lavL03hyTd5kBDgYslL-h-XBL0cisDZGZHSaTwbX7W02Xy0iSNH1x8fQzjislnNKkhi7dUCFNdo-s1zYC46I9Y9aya565Oeyrs28zn8XMekC1Arw0lfjoUNPbnMOtuVzesv0BrUyL-WC33i68VtjzzgLWFQH3Br06rLiMW_Bk3Lr-fIH3y2s3HSIxV7cVeeIkQyoaIrF9xZhcNCJqLNjV1muCKrOTB8ha7lMwQfcQzyEYiPUjFM2IkmBOyIevINfJSV7_NY0GcSN68oobo3yvgffmKbH6cU2ERUicnv1q_U9XDenxG4yu-CiKrCbda5D93j4OSfRhi6KPlgbDCdlDnPGSVuchSxru52pYdHSYy3GeiY5pyOiGb83ZNi1cPA5fU5vTjr1N_ei4_glD2iOovv4Okb5ZKDhBwXL74tG4ZtEc6iYV2pk2Ii-IEkTiHLIcIyg96IbH96NVN1vmmaTsIaF0bOooRsSYUqiG3efxjRBxUXCiul1xkYl29yjJbByFQWIJca2SdErbqdpUpXqLv1oUDlUeN-m_bRwFHY8VoLASTUkgW1Wbtdq3mycPPSo0bIpr3jnAdtbke9fBz2NFvJK88JX0l0CnuTBRt4Q4HqlaYOZduuzD9mev8XFvA6z3Y7k9lH7AYoErdLIzATkimoYnpwNaFfGEzuoetnu\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ffa78f7d7726-28426792','','','2025-04-16 12:50:54','2025-04-16 12:50:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42943',0,'cd-form-entry','',0),(42944,0,'2025-04-16 15:03:49','2025-04-16 15:03:49','{\"firstname\":\"Jamie\",\"lastname\":\"Squires\",\"email\":\"jamie220702@gmail.com\",\"contactnumber\":\"07443521337\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwqv2_BhC0ARIsAFb5Ac8WHBPHeQc0tFpZjtBrlgdVOSmKlW-Ev3cypXlmxq3gFxvO6prCu5YaAiWuEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4yqwIkelrg_HMqoxsHlPmA0EfVS3phxHclLLqdAwCmu_FQhiyw_YTSEJXpwfFem9f21ZSA5-KKIvr0zOJx9sAY0Q_UiGqd9V70IVUzNSwBLWoLwM4z6UuL2gD-JJUgRLa1vJvigCytRt1OHEres3a57AaOEMSi8jFrGO2rIpawvNmgSgeDkTKV6LSi_1QbZBGkYwcLIuczI-hEEA8-AyKYDFPj_n8RzaExzPTnjcE8iihmuDhzo71LvKlCepCxV8rBJhbuj6B6AR_flnt_aNph9Vw-LYwNtWnZ6vuRm7Q8tAspuPOrNQfDzIEEcmBA_qiHcs-xJayf4o7j1DsQJENuokBk9a7nyihDtABoV46IB640hz5CoHRkBFWgrA7N1c9Fh8v7eM1zeP-ovvaXp_p2VUvvx5ZPLT707OnScD0I0cOPfcQvsHO-3pBfVZh66lIrZSNVm0hZ-ZxRR23m2ByH3mkJLxFNG2fGRCtWYMrfZeXJyAHzo-KIWBoy-ji-R7Ttb2AZCipntcduK4geZ0caVO5NZBsYEEo0kvyTlzYLJT5DgqXzSDStiWqY61bFwZ90znCOstP7vI1u7he_oYv3Z9rYWUxIGBXzCZkNcC0ku0x4PZb-7gchmPpLkZlsSo-W7lm08Kjia_zZL_cx6tXuDZl5lpqEcOXHZE5LFhjvLZ1_FPLBO_9M82XEWiM1qZWFt-cPftwnjMOlvx2KvP5SQYm-5LoU2f_TOEOM0EAQMu-exgfZzNaJ6xt-6v_SqibPMY2TjZ-aI4LZKZqv5cF0iLIe1VdRMlScKxJiA1QzhrNWW0FjfcOAidCb-M2jYm7Rysg27NoBLnoGjwcs6dATnkVWku9T0dpFnn1ZRqA0ST25NXWcrb6eMnDEJJHv_pHk0NVrJ8AAWIkNqX8H_Q-fk5OsgE4D_c7NydgvvMWzhHN-gjZFAcLIbtnkzmm8TC9oeYsxzzIMNTpy-_n7LzpavO7Nu0kZfRauokYiw897KSC7pQsk0XRx2j1FADRrkydFrVX-5tUZJh3_xqjR77buReidJ47o_cmpCY-1jFYzcK3AHZwaB8iAXuQm_BKrKvNaRV6BAYXRFFT0C1GCFxN60SADuL80yyikFxCPc-ptbDBoeLewnEmuI6OxESLZ2O0I79m1HXWGgCJ37KFIOOAHTWL1ahP4bB0yp6W8FQ1lrekNovkL5GL7uFEkbE-DTH2H5sV4kW7nCxi-WB9jeKRFFM9wTutY_BSB5EEy1APcy0oCRLJFcmfqYBfLx_kFHoDRHD7OvlTZ742CRfb0fRbtBmEgmIcMRRwjTJscE2GQXDBe6bBzSqqV651jACcyZXQkRe66ROcWJCthspUedDmaYTuMQXTEJsFR8xo725cmF6l-LOepyoGIjjMcRPxQy31q2F05Dsw2fYM2BAmxzg8mLSrTO9MmqBvKJCSKWw9TyxKHD_uJCSaz7RZW0tHxaR5MAmifoSmqYW4GNr7kuro9Ku_jB7KiQOh0goEAa3qNIDQw-DI2ZaqWscIFFPXqk1PkwUVg86VOsaIOdq3IW6DUDA_kPodEDXNr2BRZvEl_wNjDq3HTLcKPGCSmi529LPyctUk-PHXBQyvALcQAId8aiTV1CbGD7kdYDS7vihwuxDIdd8K64dCV8PiFpHvnIzPOjiMlKNUNk6fE8T4Y_hJIVjpo5t5v-E4_Hsn6zs8m7QvDYOgdAdo1MgAY6neG-X8EyuE2D7LqHPrankWEN8htY1c2s84exJ5rPIhJLAEq7I3fuWGTW3iq3gLN3t5G8Fa6zDeG3KDy19z7EdZnC_PvNYhAnTHl0L-DS_BTv6dMNtyhzJoojgQ1I5bEcO48vPzUdGaDwFakCDNoNz0powpoTsASsGN41u8LK-K2O8vCnuCQOj7wBi_YrbsoqzvAcR1twATW3Onz1mlklZHsdj8vEEOoFBkEfS80rOU95YckQTu8PGKIIBSW58euMZB2_XiE-V09W4mI4TTyu4FDcIWOrFQpdS4555Z8S8gTquAEr4W855DRPqFjKdltuG-0dlRjCdoEzm7MUT1lpOHJdUxYkbihlFEHtaIv8RneCA2kgaPFhhpYV9RxWWnr6ra5eB2Nqv8r0ni6uo6uQ6tfnNf4i7CWpI3h-6iWa_OmCsl3gsJB4ltojRSYYppKfJImuWsAgJ1l6KP1CqfL6IrGfjAMtpNs161D5X6IsX78EHxKaDTg5ftmeYjuT1LJp6sQsOHhDaETCnjWKX68Al_G-RsaAAv6snlJRuRcl0PRUdI3zebtqX6zxt8soVosWfG7qtNIU_WBXvjobupJyUDcLfI08U_6qmmwUli58MEAmWlL4FQpvBurUhRh_Is0d1kIpte5PZOAXNIcDjOrB-wnogO9tq0UN317EqKV2N9FxXkXJZxFCJc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ffc6b6d27be1-72472838','','','2025-04-16 15:03:49','2025-04-16 15:03:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42944',0,'cd-form-entry','',0),(42945,0,'2025-04-16 15:09:27','2025-04-16 15:09:27','{\"email\":\"jamie220702@gmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"Wd33pf\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwqv2_BhC0ARIsAFb5Ac8WHBPHeQc0tFpZjtBrlgdVOSmKlW-Ev3cypXlmxq3gFxvO6prCu5YaAiWuEALw_wcB\",\"recaptcha_token\":\"03AFcWeA63dBeahZni190GB5kGxQuKoTvZY2k3YkXRGpMhRE6oLqoxYk0n1twmul8vNciY8l9IBkLithKLGaOwPZ5au-tnuX3lySnZa070L_BxVaqGmrAYAHHUjrmfSkZvwlljgyVXJp-9ije_jJ-EcnTj0larwkVCtRgzYLG_r86g7SMl7iwpYlnPEfWJU1LqBVkIEN2nQAmEmSlpyrjN3KicXc8S6sfPQwVIZlp92nMBelTqRLrQf1v0SomJu2P0r89uV7kNANBJYibXMbSyOCmK52Se4BGf9BTrrJGF9_Ece1NnOLJ9Ngg1B3yNFR9PRMIqUCTdkVxkZ7kJvkoBj5b6arPoStXw2dhos7aYOcpyJ43oYoEItTrCWbIgPVAuln-osJjcXLbLTKbEa4Itj9HQRhgAVdY-rH1Ka93xDN-s1gbXyyPdqz2ulWqz3QRwpHr564tSBk7AoI6NzrEA0N_xku-a3io46-TfpzfNGIPEV7mJ9hBbR3f0-UHua-9G1CvPTNaLIkDdUMkQn0BvENIaFqZhgcM-3jIzF_NC_E-4xGAJk6dOkwIkOdHYiEPuFxarZ65BTm28Ex7wtaH03icPiP5ORT_CaJOy7vZSADPPOizlTiZH1_g8bzhTaYbLNT7kWnx5CHz1-rTYIEu90B_YuH4PU0c7pwSUAX2rs3nWNcaIkYvI4hrDUfuki5zqnMtnfX15wtUE9E1LDWfRpazrfiJocZJJM-qd30j7JD8s34duQHRBraFYk_ww902pOeUHSDmJy_WV1An8z22LGskbzC2kPFTP6jy3C7Pa5Ld5bXofdQ7WAYSk90EIe6Un-N2vlbp2iHDmrXtTT1CbZUAtMiyNJlCs0cYpQxrxaoQ9HIo22Vg5GgSuDBwtEIZW5Nxn8Cl2euN-eNYFztS4Bg3cwYF7pby36QjDFjyOVXwRkuWy_qDX6OF94UEoUDXSL5vOjaeSRArOQFOSP68RfDqmJfh10D_M7q82_O_5KarIZpWiWg_PamcEhC9Vrv1C6E1W2rMRN38VpI0Q62A-iUqeeRWH0D1HnmbFoaMBfHMuyVjbG8eIPsax4idJBaTq42KC9Mrda4wgLQ5ghzlgfliJd5C_sX-q53tdDJHW5JiDg3azTdqtshKBPMurRNzbZUYwyUPJWCGmKdm3tdMU7GMHw_jMRUfnpl03nTDmcfVdYOAAdd0gf2BmASXEn9ArZEQwCAxskepEnOfhNGeiVks1q6e2upiolBLqrAOdHStHeO7hfsYoetyBhYYPVtbV-rLuyysYkW2R3fGy1pL8Rad1wGcsLrZSxemHf1Q87mOXIELHWdz1dKu8scsz6jGmW4ceQaDK-sHQAXLMQBTHjPlXnYXejb8MgaKiexAmhCfWR5LClAb7bncCt9NHMVmTvuyVz-K9dCH5lK6jvAu3oL9fciQsmuUAfLclFN1ilVPKQjfHOmJha8akxGuSf3zfRI-hRPc1_QWKAh33n-CgfIy1YoAFRY81-7T-UQHWqC9iUg5opI4866s8IunB3VDy8nIKaMFlyLKRi2wIRi0KHntYwWNDi2tMeCNH1Hdcj8gO55tJFS8oeDMzAIT00SgN8Zz421EAjjxSzaY1uJGrcdijQ4PxP-rxThp5ocTrWWepPqZmMOVJfmAinjWmdx9AGNzMK8j9A9JIVziPXOrYzHn8vGxbVLQ_0ZBrA0xKLOQPkalKgwvj4OfwR58OXSYVVyH0i6o4MZf5BegTDC-cb6ctmfMyrKXyft4Zgt_foKLGhE-P-ZNS7y8vdX6qa0eqaaVPdNeEmSNziUBW9Y3Rw9OBVTxuF1AQqjX-R_R8AUk9IPz_oZRLTDmhDqlrhZTAASQdJNEepaBhbh217NX2GzFi6CIS9dyDw0nshYnOaLev6hz8lUNKyJhUWPbeoStMw19_vC7e1ztu3X0feQ_jDL7FftAnO0XS8WkP2JOychNenjz2e7l7y6NJQP80RLB12bl10o8NyNHkSeZx2cJ2KRBLcgYlRivMAAlYIPbn7nFFEuIeHCrkMQewr3sqSo3g_x5CtC_85e0SKAiFhjj2rRoeGk0d_P0iBXySu20a1qjuSohl3wMJjrVB-imH6ZN5viERFYh67r1lt-pvAj4ZLY4CneTl4NqHIZm0-lTZSzoLVBpHR5IZEbIqkJDSvrQ4LNanke6yVFRqz9bj4KPHuJbktiry41Dzf0Ln-89rRXGPLV2tZgcKwmLeYuMGPKDsMzzpeKYemN6qOXLBkOfdK05oLc0YswMw58rnSzoPfevUIMhN22jFA_DNFVAqzTMCxLpoLHeN9Kru9wIrhC9ZfXP-LtQygklCqD6WsMnnQ7ikQgSkrdafeJle1VrkX9SDoS5pTl96RcrMPdGSS2pvTy-wZYJOOPIhWZ2G7Kpf6t6u_OzkBpkKGUSKf_rWrIZRfYQthxbP0KN8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-67ffc7edecbf00-52533638','','','2025-04-16 15:09:27','2025-04-16 15:09:27','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42945',0,'cd-form-entry','',0),(42947,0,'2025-04-16 21:33:58','2025-04-16 21:33:58','{\"firstname\":\"Arash\",\"lastname\":\"Nasrollahi\",\"email\":\"Arash.asadi137800@gmail.com\",\"contactnumber\":\"00989117101257\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA65rgWOU9CdEexJ01g2uhduKt4js4VMcHxH7zYwTziRzUfEw6MF6AKjSUtqcgG3JRDm8ldvGhGqPxqqu2NeySH2C5dQHoUEdF3TdUcOOY85qA5NsDkBVUQ5TQC3URZdVZKUd9n4iHwjaUO94AbMGtKVYolA3FkAH82qJOCLxpKzgD7frMxPNFxVH7PCCZNWJf0GVkyY7w7pxNahEqic5LZzPxZD02cDP4imCbJ4KhhA5xYJsjjMkV-PlRUOe5smCquGMyY4geW3c4dE6h3pRg8niEVnnDSOUxVCMl9DeuQyybbjtxNpGowPVtj4sakP8m8rO25HDGaxfjGeVRy7g5HVIdoRUgiq15vz9g4k4RuDhkjwwrf3oD1Xf0Vt-k-fw2acOJ5QRz2fy1be5eD0PqYS-teX8X8a3KFPZytFk5j-S72q2w79vUBSgLu4bW6lzfZj1mmszNvw2e4rslNmqdI1cpCabS-AdlGpFW3M1qN6JSQyrLq0A7a4__KaU1JeZPT-KYLRP66gdIZ71P1g2DV9F9t0HcFuwl4z420tL_yMIjeY4zRZsSYw_8IsN3K5muUOjIl_d-ajhl1oOjYd4C-NQz7DIuih0Xc8NIp_dJsYSkjBivriMBNEV31i2epjFozBON87O573-HZCS-Jh9m5kr6A8q2RAFN2WPaPArb0vUl4CzzREIRdex8igDAxZBnK4rHAkVO_GgHKVBFMAVkllX9clun0fimd1zsuywZYKf0nZTErDBwRhhSGMnldKn0A42hj32sEV6B-THawchiXwkcPe1Ny-sGj_UAcCYRqhKUQXmHKQEnwv8Z8FjUyyKE24xnJx7LZElJSpGzj-aTwg3SrjkvOjLSqM7qDSB6lxwXzxda8XZaHNRF-zgebZG2wAjdZT1kv62bOavLjIM-xat5auCI6e71HehzYUmeqnOHu0FVX-DXaDPK-kKycN9iF0Oy77xqFJD3Nk7spJZhRdCPgLcPpGcDhkr753v1TO2ySiaR3_g1q7IeY5ZFVPZj_dXt_73LYfI50HqUdg-Z_DGFRSl8sGtVCaq9ZyURnRrKbVPUKyMJVpYM2SaReJD45HJigHUqL8Gl4Vnk1zQ9bFpn8B5tGmm-VcXd4dSjMLVZytNKZAIeEpsObbU3OFJzas3aeFQg-qSEmZoEY7oYVmKANINkSQ-OxOG3uGhl7CdYo8mIu5kKtIZmqoWxTe37zESr0XbZk0XamogvPIotHYFgeNXkGT2CrrhYSkE8YcXy9Y-as4Tn2FJdQw-7PUVqv6OrwvsFPn6BzZ-Gl_it4Ji74NTrkxLpnYD3UtYgojzz0pnQRcrxxcc2oL7nfrp16b70VQrFzLt53zlFZyr1IO8zIHovDpOh9A7wDxd_TZ2WIrhGONZ4aDp2qx3C3E4rEiYkQ9VNOBBpwXMJYVhoceNHouQWraONVJx-siGuyxDnmvHHc-0gjvrPyAdBRt9BSyypIjE2yuYIOXOtSsVKIcetEce8DQh1GErEY35Rg6pZ6F7tYRgHXLFcnJqsp8XE5_BuWmFPTYEa7u4TjlhsibcpuPx5REBabGfIQ5yE1y6530igwRw4EiRoa7RrB2ZsFmT4nSuiGAgrHdHQoP_0e4DgmV5H3WC_DBzvO_6zT6v9LcMwPCzI4XUJ6WJy1Ej__NBpVgMdPaasNPlLOajLmhnvSehnphJuIel-5rMYYl7nOAuk71g32k8DfmBZ_n80-b9ZKAx9cskZhFmOcYvzfQfXHVezB43604CXxZa4T6wuDVJkySr11cErH-imWtSlu_VxuysulIHyqudI24E9sRhLcfJGIAup0zFSwAvu1BVxLBmGvX2eP-iBpuSEUv9lcXXyoHSY7N9Ke0fZIIdjtE_x5HxTtX9muh1MVwN1S3gxo25vEfKoAwd-BoZxjZgG6SsPGy86Sd8Q02N-mtHc8iS5WCPS1zRqCBy8-d3DGQHCFO_2AgmdEQk9fovbk_1W9NJDL5TNFxAVuJQfzkr0Sp0JqRP9atz1FuRCNvvT3lipdPj3I3QbndPy6CJ6RlJGW6qgr7kRrrjn_tihjNaud8pheHCyAIsl-NrslExSkFbaXilWXjfm0Emxu3aY66etTR2VwRO9pU_lWOoEBDCKnHA9uYr4DKiE5mg6Ebhwvjm48wEkc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6800223245f690-09483430','','','2025-04-16 21:33:58','2025-04-16 21:33:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42947',0,'cd-form-entry','',0),(42948,0,'2025-04-17 07:08:46','2025-04-17 07:08:46','{\"firstname\":\"Kay\",\"lastname\":\"Humberstone\",\"email\":\"kayhumberstone@googlemail.com\",\"contactnumber\":\"07778764430\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/author/bioadmin/\",\"recaptcha_token\":\"03AFcWeA6g8R-3IF6jgYGMOdQKubrqdg9voL5nqp9VxvbyFO8nYW4XmFIYUVxEdGxIU5du2JV-jv2fENKwoMB3tKteCctpqUsUWgVz6pEAab31kJe-EtKxavt28nuZNF63uR-QipVKdB1D7ZHueLtft7pR8a6Mcr_PUAOCYXHvOpc1V3uzdvmJyfB5kaZpEO2pCAxnIztjMtrLTEWMc_kJSGMOAi5QvGAIHxvS7iEyIqwLPRN-eTwCOPviSjwQ_Z_Fg19H56j_jbq6JbS0Xav099DZn-Uznx499TZYp119SUNiqpVBXUrrqlr65b--oXX6JV98xUKXvOb2F9Yy9wKYDICVENAMcvJez4K1svXrzuIF6N5WcliiTSr8KKYC-20IxE2GOBCvUyzX3cLpCkZ9O4-9UDmYEjX5YfIcF7LSTtQbxaR9lwTORvWXWR2xw2AntaaH8clJoq4MeWwxFNFQ2NmXF4CcrfIZ8TNYTiwK5XqI_6cgBflP4jwpJG0XnkaG0GiFIn3arh-tVg3Mcl4HemTcMaCDBV3RfWNlMZHCsbfQiNL9pSTdRsxqd7j3ijaZvPRuI8nYdEvvgYEJXrzA77dZu9EKGofQBXlyv8I58_LiC12Cd6oBNslk8CKFdXoHshQ1GluKZox1l0HI5TcPQeB0FAXpSbZMUTPx3oBEbLxDodpfHZRcqkiiQ7GpTr1G_PN12WUpZHqTIbFHh5MY_QyjcXzkPDdwBIXcoucPLqabe9I8IgZuLDx1JDJXjpvazDuHRkEIGx5g8HG7EGds5bbl13Zgk7igS8ICYty7Bi-2ttbMqCuqXgv4P-GasYEXgPd8F5ACiKwRL26XdiyvS98ye-ZdqEn6erebP4i-dxoYM82q6OXGWCf2wRUDQuLt97Vl3bdrhChqc24Z0dlaDM1Dg8A1DgLJ6HCmwGOvxR60GD_AwfgH0fP4w9IByC8XndQeniHljeAWt-s6c4k0FHOwPrsWwlN0zSmcUH0Uxrlq8mYvl2vnqSDj-RHQSkmypNsdtcxvLt6oiQHA4GDbM_KuXJyCIpm1jWA26IY9g-ikJoliTnJS6hHNuXlH3I_Fqmnnnnz3vkjvJT1jutdmiceafD7DOtliznBS0rAzyrZhHDI2llqAcrouoGur_bxfabdQP3ctWs0rMedCHxydXyddE8GLDVOmJpvAPolZk9BwsolsicqkYHjLUOl38klitzH5bNLbvP1yU8PAT-qKbHVKTOrZEXbiQgSNSyEWNP96el0SEpV0Qk-NKJZM0RVtmedV4afS1imjjOiR-QRlVlwDUy5w8hWgWP8JN62_veNVs1ChSuaRgZbtV8W-mJDLqEZqQ14kZuBO0QXBrCxkHJ9jmR8hon9pe-OGyWaW9E2phigs6SEyHknUL9jFz3EYZvz8WECtCaagksF-JTYQQmkVzw77A-bEc6OtJmNS1iPLXE049JXQENDaY_W_ziKHBUKF61tbU4D1HeIDwTqASP4FusUUr_0SjqSxen1oC0iEGPVPC__atCJczFWAfvBcIFUpqvYfhIAeFV1sl5zLs5B2m-iOuyFLnlUmJLSg6bdztmzHfFRgerC4tXt9fT3FsHI4DmWcPp9l-J_i1wbCtOIedgNfS7JFpzgpfho3_RyNcm9xzmRj8tLYS3yn9Reh7s-QDDORxhmDsHxeB6PZ-aa0Y4bZVnjzhvpB5fYT-l4y58w1D8Zp6Ikuu2ZGQ6ARjNL91wmU0NWu7n6AQFZ6ATkHh0L0041q3LqXPLJLRncD5YSUHg7z9VrjV7Paakn867996v0hE75XlbAfzz8O9KwusCcJrxvVEunXBT8-VGB6RoBwiNIMPdYLIocdGvUiZEB9LjTCR-24t9-yA2NrkpqGEhVdgfELKUA8bVwZyTR3QlTN9TvYztY4IpZgOopX9B7vKmjLw5lqj2Q5UFKvWlFjfbvfJafpQL3DxAoltc8p_zMNzqPEAchjE0dr5cnjdJ2CmHEiNgpbaw2k-G1M9fzepD1qSenba2su_GAOe1gzOU8SHVBquqzlrHc7gTcNzmopRNp2_MCxuTbNBE2qmaVOeVqG535hDxyPjOFkFW-7jT2j7zDDxSE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6800a8e2dab240-47527296','','','2025-04-17 07:08:46','2025-04-17 07:08:46','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42948',0,'cd-form-entry','',0),(42949,0,'2025-04-17 07:10:42','2025-04-17 07:10:42','{\"email\":\"kayhumberstone@googlemail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"TN4 8UX\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/author/bioadmin/\",\"recaptcha_token\":\"03AFcWeA4-OEDnq0QHNDPS_zZv182wipWL8IVk7Rss9KZf1Dj_NCcR0l92O-xUW23Xhg8gbFVkjZUkR3tbVMco6hbJ86OPAyux1csnzpQvjNpGDok8EqcgLgX-xxpRRmDaz0Zyw_x3UZJ5c_BNdSKH24FvGOYEb0YuTAeP7fPRp9Di-18HtA7DImPYYjTyY07C88xJe1PEFsIlvlNhFW-9k2CW8WRiA-OkDBDLS4JzCJLjJtI693RRsqPXnLqK2IICkGsvPD1_Apu4KIxEV_WImsqjNl9GqeYSoCdXDEzsQ3Q7Up2JSFAesTAZb6YKDiX1eYebl3kpNYLcvSQRqRCcxHg4K8IqxG6jDc_VaugUbLrSlIc4lzSV-bBznJgaZxk9s9r-pDM2a5CePohXs8jQFVlhDpDbvWFUMRM_22UuHD1btm-y3l0xnVdPb3RDJ_Mnuod-8ZaYzoj-sRhqO_q9MigN1LdgOi888mlIzCgogJmAZx2jlmE_hrIiR2JqP6ysnvuDhg5uOHNfrVTQJCobXjm9YrOf4XkpncOvTC1cv1MA5PggGrN0PlKwXbRtfECQtLcxEF5GcJSZHa4vhpNzD_ai0nnUoaGUtNEj7AcguVC0EVIgLM1CjB3bTtxyuIS1hMqdvgkA8-7xAc0vxbec0GgIAZ-YGdLL0k-GSZWSHpTjb6TO8rOAG-C3J9ktqC-GXXUHWbDwDc1KWNHTsYK2JccDbAXvIttzcHlGvoJ_TXHmrEqchHc2ikHmry8VfIJ_uT5P9Kc6lA7riJnMKEKHcCJuzjaBKZEpbyOOn31bCTm9590WvrBh6qia73mCGm2GjdxrOlwZC9KSC2cdUOXwSrROuwlwaFAAzmQ38Rk8tSaa17S-K9Kv_TahH4zMnAuAQLr_GUREso0Nxzg6jUHD2r_J6Z3n3AmIghTlanjuwPsRCwFjDZ8mnogOsACyKRwaRcXAhZI4-puDcQF63m5pPtvLyU8AgOqj_fsk7c6zA0P6CGRwf2y_qdsbfB1KSufxJLcfZdH7yAT4sxNZVeSgI5a-eEt6QA-gaPfv2GZCgytb_vRU4gaE7FsJjRwB2XFV_fD3DZ8DkoZfcES8zplpRQU8ee6oN7IOBPSQI87xjEQ7-Q2Q4A85eXN2-_zAcmL_1m7XwZm5P3GCHe-WG7cdVlu-4y2uzW0Gj21g8tD8cfxx9WOz5Hx6SmcnL_z-yWS0GI0Y1OgX2FS7c7k8XLoWG22fD7yvbWx4x-aZCp2RXaaSIELVW_BomT4LgN1NPzZDZWuhHKj0xRX1tEqG6cPEBhWtkaXeHEXU_Un3XfJ1A6gm_TfYcwQDkKfaGeOSx_F2EyntuLyhG7jTfKiFI-ZGmG0gNlCeeLwycXwQZMTvBUDbkCY6S1AD4m2NvoygmQc3DSiUY8rgobeifvtbO6nCWSRfIRcuuE6xn-JXrs5tXScFASgRbjiCDO717OnH9kPu1ZmtxCIOB9TXx4USkbHQEYAQ3QonMyoEi2k-4sfK11oH4pfMEUgnuq83KYErcsm0dNpWqoU82CpHRmsV_Ouj2hnoJgmJwRoB2ykyDZdXiNIj12L_Z5CjlJX7zpXcOTfG7uo8NvgzhVI_8IsC-sSTuk3dA19hl2QsRdMrFMC4MNoivB9R5SA8zqyBtr0MwvdKVwODleZJH2vDzMMSeVw8qUW0zSL3lSFXh6V0QIx299sYLEIlKTalad5SO9agUSN0cfgGp3800jGq5bzPLvzg3_JC6VYT8Mf2Inx7DFrugIvCU6csu_OxVHum3L2BUgZnC3Gur21HlwlE2xRdSHsNY2z5RsrA-O79UoSWN6f5BxXfCdHcgo5JYBcov48-ylyLA0uARcpTTqt4E9DxT6xm8ALIXayUxkLcGi_7NjQltXDmuuY393-LzH5FLBsEPuI2Jk0oiLX6ZD6kfQoHQcx62RdQYyL_-Xf4aIK1jzvHtF_oNPx_qBLOPvuvXWLn4pUA9G2d_hHmgkrZVWYLKL6aA0MjfjcxeIoN8ciBmINwwrlugduVPUBvn1SRmCH06vN5CPNMHJZxfudG5cEF3mwJMvzD8lXMY3tLsoDcTy3dGgIdO6H8Mgd2AOo\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6800a945131aa8-27235404','','','2025-04-17 07:10:42','2025-04-17 07:10:42','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42949',0,'cd-form-entry','',0),(42950,0,'2025-04-17 09:25:07','2025-04-17 09:25:07','{\"firstname\":\"Joel\",\"lastname\":\"Fearon\",\"email\":\"joelfearon6@gmail.com\",\"contactnumber\":\"07400653151\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6U9DwZBxpjdyDMT1wLSDl305gtPMmFcr3R-Bzvz8qqK-8LEbdXlUgRYiWxjf7L1hhgs8v5LitevnfJB4JC_9bHwjznKBoX-0QpydzzpI7hzFJnODa_MxN-ulrfFw5ktxBQ0C9u9SlqnNDPS9KLMJ8YKrCzVUiZA-jPR5xLD3zp6D4Vv3OrUhVNsrGm9W4Udvf8TGG7NF9406hPJ2rYmrbAkYI8HTrE2Z4eB3quPv_HhzFAly-Xp8Zd1pi3lspvhE61_IEB-GY1bN0PYKkWOLOGXYGXEWAKujZh7HbsJyJn_Oqy7Hys2MMXAcWI-KXDcRwTSaaTARKldcHnr-Q5bQDJgyiEX8Wx_QGT1j8RBU08o8Y0kW8ICcg-LjlK9Z3e4F_kk-8JcESJFqUHReGJvB1X16qf-Y4FyNBjALnoX2-bfaTRTRk2Hzv0uub-U3WM4bzik40TEXAwl_q31Ug2eRi0HWRkw0YIsaI_ThPXvcTML40TIEfToHx_0Q9YfGvH4zobwYhErD_HRd6x1J4J5Mnoi9N0Azfqadh5hmcqMn8zO4zxnl_ThPFIKsJOSfU-mhgybjOLBXCWYYArhXhTc5c7NkEZ4UY1tsz0m7esvvqSgxrNza9I4osFVWh1x4xcdAorOhlfyLAa0wx7FuhodnISkS_OWQltgyfYTtgRp3HIAbmfO7a12tFn7hbzXP3UbPKWRAZyqcK5D35hZS1uhzaEwiNZVkrERx4xXu-OCAGM2ozfRuzNPwRTQ9oVSbaG3KtHOKKrSL5cjXJRUex5icW3ieIJzth5Gw0FX-T1vOHjWX4AUGKSl3gedqeMbg1rC5ed-EL9nwZ0_FlpINIR_ACl1iNx7q8owwI3p_RBnnynwiMn7LCcmXlphrJB4G78UjSwXEOFT6pbgyjEJGsvzuMZ-RCUFhLeohzP0WCQjYaITB1zXNDfAl9_3fUMASo4niPyu_JwOEZ6rw5APNc6_7eoUC-rnA6r1Cb12VIlTvPmG_r-bhBHqm5Xecxxd7xiC9nJxOAS02iUJ2WNSmWg2ojrNKzoOtVnze2T5ShHn8M3rNyOXl1Sdk8LlEAW_dB0Iga00sizNg3O2OKD8OXQ75RL6TSuYz9SLmvA3wKCEPZKa3kmkvM7A5VewQkY_5_jk1RAOMA8uoI5WQlaYlQAmIy9QuOPDIZakxP9v1o27RY_m3Me3klVINbu9RBIfDiRJ3Ra2RdUh5jfV6nWMbjPaFmzCxiPsYJ2qZo1Ot6G-o-EY4uzzn8QDz9QazkLu7yLjkoHAxokFyfiDMGCf77wtpir9SH-Obub2tojFNowDXVqJXjR5LDkt5qbr7vFuETIY56sS6_lK3-3azLVkn1HMyj8Dd4UhtmGwUgZSKn6iNdOgxCLWxu9A_gdTWTCu3ZWTOSepVyIqG4udYlsS0MIHfRJuTZzi_i4u89c9-a3rY2ULMaEYlXvVFDMV5806sxMWJ3a4XVu5tTO07vaH6e4IliZd3EowkO0otatb7-bryGr705e0tM4kJDfb248JS-J6qiG26uGLXUUON9YO8VHTbvV8fNsaxxLbZnll1X4NIx08vvlntBc3bb-VlivwvTFF-eAqXEZeQf1sY7XBOb2ZafnMytAYGkIQ3q-064r4EbZvBO5D0df7MilhVXaE4O_stj3hWP-kcCQ9VX7Pwrm2RzmJa9BFTyvk0eE4I76xOsDCvvuPRRTJOh2Y_rgPsJbO4Ii5pMgnPhymWTnn4P5T1NkXTLjo2mLrwk0U0mia52_FrZJQgcxJ8-XDCmRzN3DfGtzKtz-5tWZ2BkNIawacmVEhwKPdCRW-TwQ78m3gMCNBVs3qHIrpq4SktxKfvq0P8G_91pfl_FFbpzjC-ckD_gchcBDxU74Sqjrdt-EgtpMejp2qmJOFY_9X-H5k-4JExBdZ6SMpFOvDwsuMIsb77fzjHLF-h_A7V9c8p-Tny82FqrJs4HiyL9C54zRFpOReHAYKIwSmmO7iKtEiXtaRnAPU9C6a3Mlk8Optd1XtJ6l1soxcxdTh7r_OUKdKYV_XNA1G2rwupxaLlYe89AkN6Rd2CcTVF2upCkh5MCNSz5o75MU7SwWXKO-SiTDPqVeKMrMfwv2R5farABUPP6LtDsI4_9_i5vWyrOL21nHzPznxd7MyYJohipTX7IY-08K990osvZr\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6800c8e1562dd5-28855935','','','2025-04-17 09:25:07','2025-04-17 09:25:07','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42950',0,'cd-form-entry','',0),(42951,0,'2025-04-17 11:22:47','2025-04-17 11:22:47','{\"firstname\":\"Sara\",\"lastname\":\"Baccino\",\"email\":\"sara@topofthecol.cc\",\"contactnumber\":\"07584429505\",\"pageid\":\"41115\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vebx4mNlCJLf250pdJXt8f8\",\"recaptcha_token\":\"03AFcWeA5fKeOz5aMbbBEZcmKNpvuqZk24w6rGGwCsn0kkprxw3760WiJPVIVtv14GZxC7VQPR0uDUGnFYAmv85fE-mE5pjO5DCN3hl_Oh9rxtR2shYo9RQBmMLqbekcmulumfmLb2W42JJQhsdRvPx63f5DAKUTGg04ku7i1QEPY5fDqbJUSDBW7UMXJYrdTN2VEaB0YIbZIUiZw8qWpC5Scm9OLTrPpM8vbbcvxhN5Lxp5c3JDOeq-jUiS0EkeuHsvsgvM9UTeOVVSSVPNLwRyax5ylHe-Y5SNfEaLphidApc2RjE2ChVg7tKPf9XyDcTBXym-SXwFFvBRDFbb_hyX_0Z8Hv6FcR5uCFjZJG7frwAKeQb8G-F2DI2qG96KkX9tJduWUQPSd6Lhknj5urCpkqgXFxTGrmW4uuxj02DIM4HGKqo9ZvxZCRa7Jwp-otphUaxE_lqTK5vp1HXR7gN-IUivilXlSuH1u-s6rlW35lFpHKVOTnbNKW-vxL2dkyACt03W9LPrn8Z4cfi14GFmAqbU8aUyzZMsNnRax-pThK8OAhxRlVNFUxt598WtLNZCxbAHY_al-O2W_TzfOnDYKNk2GbUewDgu9J0cWyzW_yoL6dVMd85UGw-7Ysj8_Y5Xe2uxC8Rlq9jb9A7yx6uAh_14eUAITLLZvfxWHq49dkbWZSw9k1ppfRnqerbMS7_sO1Ppwhv0R-hJL8AYKc7NMtKBDJJJb55AwMguGtSsGkzK9r_Ra_zyqFqh7JOWLd5acbqYrX6e3FiZ7mBU6E6Q4gCCHPaTh67b8tuBJWJuUjvHV-MJAd3od3mItCohqPdI4wYVciaUcjQhm13i7V7KI-aqZytafXpFuBHFMoPCH8US81BYlpsA4xNH13kLz5MdhKQ1v_8vXJdTDn9rZsvK7LUb4v-vXBSv1l49se0dwsslmz99CFEnt1ppMYxoFLe1DttD6w1W-Py3C7FS-v3hW9y7k-4mxiSnDb2fClcqUs-DQ1vjOblyIGHISNfafN685XzIAwCKfZpBg4z9ch78GuGnD36ADZQQOQfobn6QQS-9lMl79Zeh_Ja4qYcTq_V5Hw-kxicQTGnOWPcdZlSro5ZC-IMoa5gnjIdCb_s0NprBlZ4ONo2G9hJpY66vN9nXo5NpfPPCZCGGvD_nrgCdcSrpyNNdVDfrr3g0io4ZEiGSLlo9-5VkdynqEM0XqS7gzb4K3l4yCKrXzJ94SUiiN2lMiNRdbVLKE9PiUtb4-t1zEMrX1Fx-k1Ni3ZeQqx-ZTJKXVjwuV-a_QBcQtNlQQB7OJsX1Y1Qu6fl3Ls4DlFENx3xjX7LxbeZtuqCo5gUocxnYEWk__eVcZ2NRMF_m8Fc19yJx_O1LPKIQCUdo8JLq9DznUVe83nje6t8zy2YELHSnO19f9XCcvvcK47tV4NYgiD6K7dZUeLXTpHVbMXCXExLDqjjXO1zdORpOX1QbhKg2xuTRqZTLXatLzAy-Btm7QUZUgyDQs1XDe7swgc5wpfSaiic0jmF6hT4k7WNW6JMpQB6UPctbDDxE-apYp8b0O1ZH00RkQrGOMKQpxcltcSL3KslMcP0_QVf5TvedAwKU9EiWJ5uJ0gPrd7r6tAmizHYWtt1fBVbf82lzexEUstlKZhsBae-Zkgm_ultyJFshwL8i5yS3SUgVFZBc_Xm-Mvk36s-Twb6ShAJ_kBNe9eAIAeK7zKU36IdPmC81-nGR-OTfFA0FVu-fUqNyOcbcji5KqlzeY_iEW_AlBQQY8xalhz0owktOAGyHclkTW0F1lBusjxADbjd3K-r8O-j_s6XfoFLKWNoyQxRxPt94MyXf4pAvBRLrDxeCwOexyYLEYXKDql2X7hpkptpNnTdbqAU_IPWhyXkOnCgr80ESOR3gc7q6FVmZOkYQYvuj3O6gu6UXd7-L_ni64Cqa-aGfm28kvV1t0gxVDGBhyuZxOV-x4GLJXWIUL532cEKTSn5qFq7BbFxTFvZPKHNjZx0W9rLeJm0P8pwTyxIZP3C9PQm3zc1T_YsQ-9o-2NunRl0PgP-LO4uKaprPmST_8O8nOiVKPraayh7iXBvVI-oOjTmIt76zYvS0_G7I3_led_i5_A7SCuNms4wOg-_SUsuuTA8HjEob64I-6emnT0L36w-Ig5WZLgzXfSwMj8RbXQmwB6_rR0GrN-kx200MdnyQedpUxY6Zjp-MDPELxm84l07mTArEuMbelzcR-VVW0JdASRxLRD78NcHzB8ySpVJA_7swa2QNYs_nlXFKNlrfgKr1ntV5FgkXXJYPU-v5NECgIOGiHeYzEFt14l6fkiNxE6FetqVnC5beu0tcZGLFeGE3lNwmti49ehIYVJyzoCMJbXcwXFFt12FELJGdznTOqsH07Uze8_lrvCz2JexqqWVSmwqow\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6800e4742ce890-49612842','','','2025-04-17 11:22:47','2025-04-17 11:22:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42951',0,'cd-form-entry','',0),(42952,0,'2025-04-17 21:06:38','2025-04-17 21:06:38','{\"firstname\":\"Jaydon\",\"lastname\":\"Ashby\",\"email\":\"jaydonashby18@gmail.com\",\"contactnumber\":\"07510853483\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vebx4mNlCJLf250pdJXt8f8&amp;gclid=Cj0KCQjwzYLABhD4ARIsALySuCQt5ghnk8RPWkoNpv4hPCyS96VY6M9-a-uWd6RMYyB_hF4aZQXGrc4aAtHKEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6Yj5yZl_wzhZz-9GXTvB7id_cZdn6Osdw-EMiGTNxN9hO-x9vXgF4Gi3E4FWk7OKVE9cAShEJBUL0RtfbUjXImchYwuoes4oQ5GNyR_YKfwyjB7BdV1ZD795WywI3A-7N9FrRGRa5NLUg0c6Isf2yvyXDtp9VgEhYhjdMVpS2d8MZNaRea-hd6eI8Uy4gGXCOsapkEUJBJ0Qunzd1VILgxYg3qphXHmFoWc3doX_Y5fp6T91mdFdg3B-XWey5NWtAUkhTSzg5Q1bznKc6-hz4oZtaDjNOk387hhk75uWpLXwNV7LKjes6WHdFY2_TzmdPw-FAyJ9nsDTjjl_r6M7-vZIhKFTIBMMtsjo3itb1ii9vJx5u_NefHFYXdjdomdMFWtw1pt6q1vCgCse4K3l_a6Xd86xA9NWYCiPSuHVna7C55nIss4BRf3SaKqF3LpA_MGpM832ompThtDv7LZDSYcoViPQbM2pFhM5AqWpSsuRtKE_wETG6YwzlLd9rCbIKSWYoAIDEz3fMW9dgkoOGavgj1D53ZgXbTwBt4S9qinkbc_tSrd3Op_4DOQbbEpaaDTyG7ThC6FNkozFuMKAXyKOhtoa5eg4CLhBNgadqGh26DZ7Eqg77pf9wUIZ5Dvxu9VWwAJI9nl9S7-viCr6NAGxaHkCFIyP8dAMYfbE7hyXFgYca2291TkK-5-qXteBFYlCl_x72IYjbXVGdew-hzRtE1LVKkqwCRFULns6Hx30k_Xc23HSN2mcUdno7JUrSUuBbAnnCaW_XZvwyxbclsG0ZX-Jg6Ov4UnL34yk-31rKe9sW26iVFfjWhcLdJckQrwtu3tKwuz5lkmePDbaToGbG5iKovsXcOkB4xWWWXahysT31JdjD9xUV3Ghsph5R2uCtaRFFMrBQpcvrzm_AST72jW9kQb2m7KYEYqHVSo2OBqQHqJDys9RI3mzX2MYyv6rqMN3wzCOuk6d7weDdHbNNqfmmzSlhYMznqhzuZrpXVu-SVCqGTKl5kot9UESqWU7xO46w1Qa8GFyMkPfo27ndnU5lc59ftZUSKxK4L1c8VDcgtV7qEWxHx38E0hWUoIr3P8VaZr_7tfVlDZ6DJ9yaQdcVGZyacf8ec3G4Fr030YeJ8CAlvNSzl3DYawgA4ZLI-WV6tpA4m6lJ3duspVn77aY6H0JoHlNmXR_QFPAUHRFTvOnZbc-i-GVHQC-b44P7YsWKHxl0nlqAtgxuxBRLLkJdeRtInmLI7IaDI7UVnh6ETomFeo0m-8sFZ2rGTzzq3SpRe8_QIsquVNR6WU-W5lI4HVzxO8y0QiYfgQfK_X4Yx5Ib-YPobYYs4HBtgeWWCSCoZyNgDdF_5acZNrVRzrTLRdatZUdWUqwb1RNtSIBh3UimOETxEgQcIM2wa4CuGWNXfszAhyzbgPGxO1CTCuH-wyEFm8bGBXJhiNg_msaysDfnRys65r7kqB4tN_uGRt1Wc4NBlKshQsyh2OBH7YrH685FiylVFKRDrkSzU5tqKoNZBpcJyhoO-6oPWbXWjRQR1vsqunNZwz3k9YWmO-lgP3kFoXQ_E-ACXFG0qKsDlFeb6kMIhejCK4fW2NBI6lMXRYha2pQGP3qYx9FR4tTDnZGO5HMQM7Jf57zJCeSnM1B2dgpllDWCQ7Z5iTDlZh11j1Y7tCm7CzNRNFBR55dEQlL8IoCy2k6_DkgEJOlOWmPvQzKI4ecP5KmlhqJowq8XUVSXFZfvWM2JUDDLOH2TZ63qbBOu4jbC4vTcLo6D2709VM8jtD5c5tpTS7IkYL3tREp538h2vxwBHQN5ys59frsly_NSOePqCF7POmJkKD5YwRyNfNMifHROOV7ICzzC9glwS6fwdUKoWUlqdTr-YjangmO3_nExtRQRytV0Qjs7bs5ewjkLkCLtJ3ieRqCq7C20iAbiXW7TpdqKW7gZ9Nh2__h-QpARx1WGHopNeZLTVkejsXrVOIU-UPOVQYtHEwYGt10_F9LxcKuQ1wkCp8kRuJEg1Rlk2zzKNM6r3hBgpI02uu6zLea5yoEHfWwOxKHuIW92Tv4yUJ-lDBjAavY6bkLvR32Vgk4ocDYQwPWQyzFy7_CDDzxEOvT3JD5JVtApJ36IjhpESbvzmKng90gOZvgFc0ocfEDlUmaSVf5bXlgHAKEJpNyOuKVu-\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68016d49a67737-83643000','','','2025-04-17 21:06:38','2025-04-17 21:06:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42952',0,'cd-form-entry','',0),(42953,0,'2025-04-17 21:07:50','2025-04-17 21:07:50','{\"email\":\"jaydonashby18@gmail.com\",\"interestedbecause\":\"0\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"CM18 6UP\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vebx4mNlCJLf250pdJXt8f8&amp;gclid=Cj0KCQjwzYLABhD4ARIsALySuCQt5ghnk8RPWkoNpv4hPCyS96VY6M9-a-uWd6RMYyB_hF4aZQXGrc4aAtHKEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4PX5E5DPb0AkPUCJPJhbjxqmgoYikJgHMcLD72667iakVx2t-B874Ksal7A8R996_R6PmKA-LarihoFUxKmQAncpFI2OsMLvmAifhzCQyejTFMm_Sdy8pfy4XAqlQa6GePzGPfDZVFJa4GDn_lGodYicdbblXfKP_mgHdE9ezR4CVhaIw8IlLGe00rP-7_Ijzzn_X7kExRVcI0cTH_3ahsPoC0lvxq9_XSiihjXrAihD2fAHxfHk3zpkHkQmPmPQXzAoNOVO6nfVPeOzYGxnyARAdvcHn1UtvH4jzoilUfpM_U7byxUgDSiTaxYQxGXW4bVWCkZdOL5BLaibrb3zewB34CBIpIA1u53jKBV_mqhBX1hzwtr98ZTdiXoi8RbLL78d-Gpn5N1gXrl9y-7eziXVPkCKjJNcJdlLTa45ser6FENbj0I4nk4ehDj0KxQ_OvmtqJypUGNuyERa-wVUuM6hlloKM1wtHgsNBueaZKxXR52eQ0bFmq1Lz_7b11ZnKSNmqXgVQB_nthaGDCHH0w7Whlu0EabVGjj8HCEv6DtRb-eX00zpdeIT4OcfjuOqdvNii0LrjWXDYF9r_JcE0KlGRW4wdhFfueA9o9AuHJgVl3swLkd72sTmrsU6rdNmecB-FI3qLUrtNtxkMCdvcm8wjY_Akg-4UM_Z7PAJx__TMw2OScm9r_SFfdtwy3z4wfZIk7qiTx6lN6fNroJ8FjFNNTq7cVK8uUvzjBe7hbALVeOGq9V02NEP8T9z3idCSIYK8c2QZNb26DLiS9u8XqFXJ2R3pq0Ql_5WLtMiEaJa1ipTc7MigdcI8-moCvsbZjiTMU4S7gsXWCuznZp5-Cr8CUJGug5bb11gCitJnmh6arjTDy_GGrh4YV-NN95H_G2y9aawS06t-TAVK0ODWoFJPHsclB-mPSB34dq3gXIfR92vONgSpsTTEiEjyIjntJIFjyFpvfEqKWzLWU5z8cHtVc-Rz3O164uzVdETZhXzV6S41EGNCvxHFit-ljf0SX7wexpM9gNqq5J6olFj0hvy3481lu9Fn2OabHCAM6RGR9ENA95Cu8NkipdQkhu3FsUA15IhCKw6YTrWgaGJyNbBrLESY9Mt07jGjEfLg2YIoK2YtHDBbemdjKLfKkD-ufjiIjIWsXBzgpiu_avS_y4HKXwuTlnRWEbyzBQevV0HQegEe0p6V22Ad9rS7WxLAZQa5rV-TL2tfbVMfn3k5_5AOcusNzZ3OCI9skJ6IBRdgM7_-3sr5xMC63X3_WbqHbNY732KwWwvN414uIl62lYvHUhluSPQ22cO3-tpM40dlZm1Mm99hAj1sm5RM9pZK9HR1CsBaPBQZG6VtlClKCV-qzuALY1cfj1m8BkkGqAJZdEj15cGTmgFL-KylzOcqMag2KE7VQ1TNIekHs7Keg65ZbbjdU0R-1RK0eja41_f-YzhpXp3KwnN5rcRzj4zfy308WifSzbS1s640CAhx8SuYiezjrtnwXy8NjX2ZmApWb_65a8oR7GroNKQVBQV3heLe2k_mO0FZ930UUEmbPXcFBo1-U3X-LiHxfp-vMO5fA2HWMfqEQUZrEw8hm8uQ9hAl3z_EpaJd2izzKpLPbNRf8TSxBbbOeMJBphpf636vktcU3OTrJ3jtxDmJ2FJa9aY2h-F2jTFUKGx9a0JWpIfx-H1GOqpAXH9fxckqhaZBAnP9-m4BdGGRCMW4p5UK-x3zugm1f9guLMxPbHYAnZc43SnvGVKh46QaC9VVTCNqi74BS_apqZIqdS4NOxWiv7FgxAAEGxIoSwyGepHoHpilMjz9j9SQrx2XH_TJ425-2IvqUBPqQLdQXeki1tOw_x3dyDIcDkIPnQ_clcL2XOTX1nEyRxHiVRrEWKt3MlRHfSrixZ_xkseEs3vnWwMYN8BlunMf6jvQjZtGoHKqrhdli53xSUxagpnbV8-u9qSMXMiSZET_BZ2wEyLzQl63q9wRyEKLhmAroMGnm1tq1NLlw2hK_ccA-QggOL5WK6jJPw52scw_c7otVzIlqs3POPLd6bE3TQwHR4yBaRKI4CfS9wQpwfu80M6ewOxnUBxVJkB1joHTaT1hJq_PLpA7944dVxEqO0qp7HUYBeg87PD5ShqolLUp-0oB4_Cq2Dv_c-Cbl7tuMbbeIlXbkBdn0tzy9\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"agegroup\":\"1\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"4\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68016d83695f58-79491154','','','2025-04-17 21:07:50','2025-04-17 21:07:50','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42953',0,'cd-form-entry','',0),(42954,0,'2025-04-18 12:39:45','2025-04-18 12:39:45','{\"firstname\":\"Lynn\",\"lastname\":\"Hitchcox\",\"email\":\"lynnhitchcox@icloud.com\",\"contactnumber\":\"07967138350\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vob3t9HXPbgMg9id2jt5EDP&amp;gclid=EAIaIQobChMIjcaYmszhjAMVrpNQBh2rxQMVEAAYASAAEgLIjfD_BwE\",\"recaptcha_token\":\"03AFcWeA4pMS35RPXzDwM2Nivhh2Fa2fvmMfmHOaFS7osbLSnJJuiH-Mf1EBIIPFbgfBaQZvQo3nhsg1RFYFmYSYFuFmP89DAy1C4bR5h_77mJ8fhtbY2T86V0xiwnETNQIswAb_K7I9bGKEmYAcK1B8KXWjizXnZUmjYT0VlfWY_eW337I8TCFsWTjq3LWsEgATVfA3NQ9ovebWH-009YAC0ZeIktbNIzrJr7NIO3jGj50Ys_QKw7d2Y1ZlX-1Ukrvp7-nSON-lapd3SSZ4jLs2G9FvNYyicMIQl_AThZ5w2YJ64gPcbxtqxfzSeOBDytxu0IyrE1VeICLisUEFRDZ7ai4-psVg94_m9ShqPtljbjKAi91IDvYSIjtkioKpgBe-h50koUFHed4yOjrjgo3nIorsXodZdcZDzMFYe34O3zXW_VlpD1Lmmty4--FsXJvlNAp0jXSdWun5TK1L2S_Yjypx9cWp_WWiet4gll8TCTPSZ53JDclQ1LIduyEEPCL2YiXq6_Bejd6cPQ_BM3Rw0TwFIICXaB05RMTN8faaadwyBJRf2AIa0w50BTP6lUtd6U0GCdiqhFd1SuXJdJpgzdadWTKcWFnJaERtRNOqw3OOmo2DKxGPnNDsU84RzL5gEoa0Kt-_CeXJ6pP7NxHzIlvsPT9y1MCRlJPwSxag7zqBLChNcdpJ_x1V_TDaMQKzpHDrACrj9uXbrZVyLLz9iH248_P43FsmY1JPgD-RlvAzR8KmHGwQNnLGuFjkI-wybSv4y_oBdgy-zPIvCN74ATrhisXK7EODAuxq1pY6GGkoVG3WZ1BPXl4UrV_6pV7zXf8Q9kn8-F_H9CDHsjVze30K16-P9fcpdB1jxp97dm5zEJeJ-KdUgUHtpJjRSPIyt66xEGi1sMmy3SLfsHr71AGm3QuT-e_52y6Q8xfBvPLd34IW1Vfu5HBjwnFwdgw11vpKpDuRbu-Bp3gWfTOpNFRIhf4KsZBFqTls9r4qR6vqFcHDwT4oHd6dixmKQzu4eGQdq0a1tp5NplwKX95UM39REO52hxiUj4ojuxVys0OvszuveDOBI4TXmLLJP47QruR3y-m_8qm8n913038VhQzfIs0HeGVeV0RLopOtAxWp138oaUGljntrM0rwxu2A5L2nQLwz89RnkZtiiHs4_6lBB0j9McwZK9i68gDTelnGqerrdF7KiustaEJO8ZVReuMSG48ubdZi-H3_vasdgW0g8IOXL4FfAU-K5ab7S2ufwRRfZAQfilYSiviMsQzQMBAkAUBCaQFoeVJqlBqJb_0LdkR6PquxXMkn-SWxUq_o5MTJT7FQmsUvcUvLXdAIdGoFE_-M5XOdw9ptNyomPFgg-Fkc5rAEQxBXuPkfAdqsQalDc3XWfAWF60TCZtX5moa_iL6ZYyF9-WcetxL3sp_JmjTDruEuE3j4tGI0clEAZ_uOyguK55pf5Csu9onectSMqTV52ePo0Lc3X45zigGzc2r6kFzEAyOUiCxftYz1ncqpL5Yzuyzo6WwC0Mvg99sZUpMGVqmV8p7x0Cez2WwrdU_rhORNfkN5b5OBuB-ccig_aEK85WPP9VdGslA8w8KhQcYEw3gYbJWTzAWFLtDGfLs07W9O3SerCb9gL6bnuKxVpuUpxtQuVOLEwEEZ_ZXUOvTN2rp8WYVapqHPPhxvl_l6DYhJRUf0mJM04yDDLRl2KLs2YHYg1eoFMZwaoo7xkCTi4-FXdc_93d_l7KYs7HuTjVpdgT-WQ7itGyF0nIOnq1SlfDlLCVzAu3HPB0e-UdSzwjO9XOPK-epcSVxuTHoTlu1-zQGeskaRMk6YIdNMAjvAo83HXeTEslaquC5YvbwBxxBeaMVg-CpksBHh7DePyKokqHeZIzXVKZyIzhcsA5VVStXLpNpXKpYdnVVZ7PWYE4lrLdE70hOBeok9z1fJbnFpdfo9DrpeXRcNv7mSBjhalHeEJlZUClVHu-sf599eadkR6i3sTyvCdLKLLgNpXUa4Ji3ygVxABEFaFTCaJocuoE3W7IvAtz3JyguoxcHQFdCUWtyZutMl5B0hMN7igzpcUO61sMhEafsGcJcntzRdEFqL0oC9W5FnR8AKKT2E4WFEukbIa6ZTeUT9ULKPkuTp8efY_Jf6fTC2luFNP65VfPSVHvnnKcxr7FzER5VKzS\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"6\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680247ed58a7d0-74186287','','','2025-04-18 12:39:45','2025-04-18 12:39:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42954',0,'cd-form-entry','',0),(42955,0,'2025-04-18 12:40:24','0000-00-00 00:00:00','{\"firstname\":\"Kari\",\"lastname\":\"Sherman\",\"email\":\"karisherman@icloud.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vob3t9HXPbgMg9id2jt5EDP&amp;gclid=CjwKCAjw8IfABhBXEiwAxRHlsIBJ1detg9XKi04ZZW5vv7jFqpJ-tmyUeB9i9-8CZm-XpE8zpsxqZxoCkDgQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6F45_HK-Bp4uf2UHgfNlyzBNZncb7NGyBfcEFHc5krH5rjCUcejkp9Fkx7IsEViGUB16ylxNKTW4JraWt9_H0glOIIPAWKGBlozUua6T8jYcHyw8LdbrH16wBES0gi9qH_uOPo5ZFqsldH8XkV2jfAdgbRZwJ6-r-pQqFfuiZ9CyFwiqjcuVhMHOfj6Adfri1VDMdrhsNFdsDaW-MAyE72-KzPTeq80p3eDIPvQpanXjM2TmkCo98FeXGbEUCmvzdTWqpy3sWbrnoGdPorGr76W2IHdqTsfcWGkhET1FZlG9XNXOFicfUVwjrlWKYnUBLCoARNeaD-hdNjgrMOS6P-UmTMf-W-3xvEmwLJ-lD7OTvglrKYoedXLNtOxOap6zXSBRMz58VnyxEdiQoLjx0UzqJZQkFq2LEFdDIDKDoT-p70K2anXwp08A2m04xv82GV7qIwQRI-GPPn2nOTt3W8CSB_y3n-NMECpi91MJ8HcDuXUSei1l4xsUT-8hlCPbBKXFfCl-F7eNaX2aGmYUDkDQVRtT-u1QzxhtDFVgNkl3SM3troB86ZYMycL7eGCLqqWu6Bp1AUedpbTAs6EbZ1N2w1iH7Ah3c75GQ8RwT0-FQkVwWlVIB4l50RSWctr7S0EhXNqQMbIEaRDBu-7aD3a8wj7ArwoUZ1VeU9uYd9tDtmkhmFYftRfh5HMgrKZgNKICi5YTCONgLQ32tDPOOdWT7rRV5RTPtnOReJD6-PogxKbms6EqoUXoQYUb_0egmnPkDHMn55cNHdwccu652B9iQe5FGNMwSGNsiYl6PtwsObaikzgiO9NLT6WUrnBBqfJUxx7D0E2kk43rfArLp6uSObWwws1KwgU-fQf-dmuh_XDPLPBhcBtLXBjWshu6pe9RfStbXRcWd6_j67NaiN7DReYDxxxDnUueGaRioULCdmc5XTULY44OcNDCk3gnU0zfLhpPujRE6qQAGQHcjHaHrcui5PFXaCzckK0Kuz-nk4c3MvXmhlwtFbQUFOB1_ZsyF51nTn_ZYY86NHIsku8ZVdVBzzZcCNobnk09NkGNVqU-jOQFc93x7-WuilXSh6_Q7LdN4YlppgyKN2YA_bC-PMy6C4Wo9PR-UjHVlrV6oN3Yb-SI8pY7tMk5NN2WU4s79H-vi_CHYEhtyvIjxJ_If-SNHFIn2P36ynP5lq94_8R0vAgPX2EV4pq39fJytl1QnuwQCV0ULjngKNT1cwvjQFbBJ5j6nl9PN0eglFuTFrN7ngsfpArjcLoEIai_B0zrU8BLuvR-qVenIePsWfk7xTh2OCH_QB6s4YwY93VNOe9Pmw-AGGH_xihOWnDNkGTuQ7rlErPzmPBasacrlcnNlVTAfLS3SL29i-FcLLH7t49I4FH10SKYk2E_0DJcT4YcYHMyoOtTErvAfkYuwu_hL_vBG6nvN5NHI1ZTDYolgzcznCYsabtOUx6v9Cwgc_14Dox7nnrlSENL6ieL8E6KXwtYbq47Ib8Ghjz59JNrgMI-MgNhMdCiJDPHSbAPSnr-qtMsDYzeRKnr13V5N-A4qbvH6MVuLBOPxT-ikiET9XT6Fo1cCnh6ZfMngqxQRM5Rku304xB1wlFnrRwAn_WJ0XMQnrNyKR1mwkzPR77Ap7MhglvaACIxsWv7MoU0q22svtd0iI23RIWI-Jd6EPpEPceo0N6-4798iIwlMDwy8X4p8jYdswML-uaeLcIv3LXSsEnu4MKlDUgLs8i3vEGH-SfQBSaifWJLE22lEbQTQCUtPT0cz2Z-qwb2o1AcelxUo6WZFFFfG5Y-MCohRo6ZR1n321V1MX4XFr5dmBTQxUxkIjwm7zBs1xPyoXDhjVRoNQ4Osa5LkfqyFpmS0jJYmbVgUs30kBcQMNu-ZKYOP7XQfVO-IGYnIRAzvxoleG4WOaSuiGN0fkftiwAj2gTKdWshJTbWEYTnI1_qHgBL2evs1ILFnLwEpga0DzumxpNu7hAMFibhyhNcDteXNo-pVgAaC45qWfqFCqVveGsoJD4DhfYXyU8GBL2t_ZnFKDpnCGpPVAWdgt-R5UTAPPpra50INedQV0YY-ijR36qSD69hljvmM-SyFNQ0N5S67raK5wnAkdz3h331CrhDG53kcMpoMM3CS8NnNRsYQ1OvEuvnbpk7cSj_tLuJQzd2VilwcS\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6802483899f2f9-99162446','','','2025-04-18 12:40:24','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42955',0,'cd-form-entry','',0),(42956,0,'2025-04-19 00:31:44','2025-04-19 00:31:44','{\"firstname\":\"Paula\",\"lastname\":\"Isaiah\",\"email\":\"kelepisaiah@gmail.com\",\"contactnumber\":\"07902604983\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vJgRfEdgycoLl-24DO17mjT&amp;gclid=CjwKCAjw8IfABhBXEiwAxRHlsNS72UfbRxYqlmo9zRnuKKzEV0nVxxoIh-4fLOr44bFoXK8ASIVNSBoCe4sQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5FvW3j1q3g-bueM-HHrUYOiYTBumPFat7mMF7sLhdyaHh8M4vAtEshQ9qlAbVZhREPy_b4RpCesEOSvO7w6JL72gG34UYZn5Lzs3nYXP_owhr9D32Vzwh0ldGRADYCiqe0cVYoPaPzTGA81-BWYh1h7GExOoLwwcUQSfZ_UW18gAVTz6Q4IthFzC5ZGn8ClXMVri2trfjy2AKGnONNinKrY6Z57EhxBEWcqs7Cku4HtcDsaQ501n8enUd-R1CuJjCSzFPegJuHfev-s9MExvGJbxOGNDxKNRot0QnGdl6v7hYenrh3nWQZr4qisdR70ZEmuDX7lAeecFzAxulKAjsXlUv2SUYpvWKrnIty1TdQWWR6xZdQqnGBAEcJD4J96GcHPsvk1TPNk2Q8SPfwaa6T7wPQfL0icLm2Bb68HaOrqhxuuhH_ilNabNEX77zs7wleoNeX4mbKqSSLuskKDQrctGjE2vzmnXcFCHUVGQQ44d2kLu5nYmGw6KupjgWanEVZnACCd_kHdwkjYeZrbMetFN8GtKcnjqBgRrrp10eXn9bOYnPRQbxnxcbHs91_1MCAdhfbopdlxzvmq3uC63zQHi758vLw2I3Lszavf7pttA_TF_KvtQubVr-N7QkgA3dQdbg_x9LHx81conzQFqBViPfFraCxUO0KgPnV3PL5yK9ua32zQq23LC_ZVOWqay086XQY5DF6RDvxR0YAQoD5Fv4l6jmxvPZZ2OVeeWL6bZco1PpTBXzc4Gcik5Hzh5cwgY6AzIiHe5uPMF-FRsBiEwJtuEbmZ8s-n6DUOWRl8VTUP_MvKvNWSZJz_EgRL-khodLjp6Yt9bGuTBDdqa4tje6alY30HJ3KPIZP1gYR7TU7oYr1cRUvksL3JuH9s1033mxLKq8EAwOHVZ12GJmxX34IIEeJ1ngszYs3vpDBfjyHTpLJrdjObAjj7RHSIZhaQ3Y8jqltCVFQ-aFXKzVW3HeOJMNW0oeXksP0P58m7RsfgX2cK_7HNv-MBDE0LyibcdRfEzm1PcUMGsRjY1_ttCp809hxI1KLs7dzC5osjQP9VHjKVehy4GWBKZMveAFhfE-P50aM-XMmddlFydwW7Ogw3ENXxfTkPxMPUgmsABaV6g8Pluf91fVnLbdqFvSWcYRgvAL9WHo1uXIc5uPGPbUg2_9BNx80oRo0JYQI6nE21j3RIqB6iTl6E68uqedpAV7tv1eVLCn4oogln92D8GJjZUPIRYM6CTKgPNApMPr3PRzIV_k8hgM5DyED-qa0GigjpHNJgkevmwSkrx7cB1ueAAN14gxSaYwKl188qMytBKHzOBItRBKcXXcDQPqvMNIog-x3-xhmFrrDhd8QbvQei8z1X1-EI2dSHmP1fA9ux8r5B3m3BTVGYJi6aKEgBbZBmopGqYifY_JHftac-1AOEF2uJ1gC60myYsJQEBWFOdCz_d9FJj2er8heTI0L0akKw12LVZVqF0yeUHF6RjaWjeaIZmQ7R04mP6UQkH6w1L4VMDqVVb7q27h4nUqLHNEE6Sw-9FBp-tu4B4rJTNzI0YqN5sPhY7KTHcjdMBry69kzQhVoD0-bRzva1jyNpKW9ptTm_VLRAvVPz1OzDt1H61Ff2jHp-yCzkjhg1Ab8f04GgoGWg1u8JpnFfKKFWra6xLw5ypEw7KnzH5XrGCPgXhDaIfqanHTWlMStaQnCZGpPcHk5Yv5jBS7RTnRBkEL4-i3N8XHR5HH-MPtroQkXsS40lJzSLlneXF7NkpPlxePBR3k9gBr1vojuv73JV6ttZFVpIONNzyM43N0gKxFi9ZUXWjVM7QbMEWc5BpKsWgdO4sr5Ntt3UPIBbilga90ybeanGBAFANsXxuQDdU2lf9oRn-DWxOrOkbf-2fTWuJPG6OdPsJiv4hg9jNvZAbkW8D5VCLCc0XXkwZ8kK9jTzu_W8WgYabC5UWY3UgLN55ZOqKLR9JrhjvX3kIBLlzX94so0OHC9X6IxcovTOPyXXjFBfvvACOpeZUqdsuQ28_6YvWx0YqyZG-7ClJ01yrH-EhcL1LCjWBOLKWn-HTuoLdn_31oMI9DOoc94-f6AgKUK8uZ5OewXaA55F3-Ocr9v9f3IsQh5Ys6VJppEq0HA25pEhzky8Fn_LySNRtvVa4yemOGl82656E5sjEOSm8Sj\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6802eed8a69a62-07266046','','','2025-04-19 00:31:44','2025-04-19 00:31:44','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42956',0,'cd-form-entry','',0),(42957,0,'2025-04-19 00:33:47','2025-04-19 00:33:47','{\"email\":\"kelepisaiah@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"SW9 8FY\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vJgRfEdgycoLl-24DO17mjT&amp;gclid=CjwKCAjw8IfABhBXEiwAxRHlsNS72UfbRxYqlmo9zRnuKKzEV0nVxxoIh-4fLOr44bFoXK8ASIVNSBoCe4sQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6BQs_Ht5b_UuGadtwnV_S3KjZ7jgXlZSDE-wKaJ9C5s3fHX-IT6v8zM_EYIu3zQZ1GAp7VqqL9k6WZfR9oVYUv5nA9HcQlD4q3SQ8JUOQlBYt1pAIO96h0kfTKx3tzNbdXLijrJTXpJbvsTdP-f9yswe6_dVD19RInOQjhJH9duCeT-eejK02F2Bb87d4L_VdI4IsXWy2uLwGsv-CEcehzYTej0hlULihxEukROTSeUiq4I6lD6IWZydw0AiO60ijvZOeKjAFduVOVnr3BlxeG3cT1ga7jOyDjp2Z66sOCIf_IYeHPzRLBd3NcLGrz4crU1_feyPTE7TmStygHvIOe8fPExtwsJhD9A9qIUvyQS7LMg03d7phJLSJMUWZvTZAo_RuKBjVD9LpeOTkfBzu1HNYha6nzz3FPMEi_83UtxUHwucXWQecd44sVRFq8VMUqZXdPmimKYfTu0GJ8y1VOCiNaHJ5pdE5GWGidLhWqltrQDPZxffMkNPqMCbQqHlorMYWJRpNLVZSDyQFISl0Ugw8hNzl6lWTsdwvnjS-7oGaz5M-MI6Ck1WPNfnsE804vxeweG7HRQfM-jM0Y-0_TVH8jSPGyfx94jqQKEo3fvGblPptjmev-t126JWz8MO1vGdWtMYrocxS0E0o8-XmZv5GXtRKglJ3KoCWmg9Ss5lnfeNWJAX4WrK2-TzrA1Yvq52fLkk4ZwQOL_sA1QfGGtyva33YhOxHx-9aWKLI-rRN0sBLcfi6gH33OaEaY5ES6y0Xrd-vywU-VjBo7K_YjGZstFX4cJy0WAxq09W1TZOlVCId6F3sCH2Sg3C-_oDJ582eqyVV2xTCxgY6qnpnLx2xW5k3uCv32jkHLe1cuXcyNT1NUQcDAOD7ABdfwTYUL2XMlXehC5ZgmX79Ffo7RNqFjanbvDB6IfUgZDMbckTUycFxCZdRZw4ld3keeah11BR0DsVtX772ZmE2-xdVe4Z7qZusbc9CiemWDMyYOdZps5KtTDpOxJ4bIsqzOylJJZZb-7YpB_NAfR_kUzh5707tA-FJ5uKRE_bzS7-1XDi2WdQAR7WdQ1MkXZ-qWluIJP1FqvMtBx93JzcR7u82hdlaEIFO3SJJW25qpXibSm96VgoFyLgod5-WbT6vDgf9VViJsOPROoKseltuEB2nBIRkf_WqvkNQ13w-J8G8plqmLOxSt7gcmwUT_WuNqw3WZRm4WepbUeFuxzFGk9OC4LIVjbWu98X5mz73ELiKL1fNw9AAv73L1pOflXMLxCvQKKXWAov4PfsxyBxDqTETrWReEHs1QwRPiaUqwRwFAFYL6iWYqLHZMtGBOKcTalamFCTINb9ICYp5E8osIwCP9b0Fb1oJubp0pFRAaVVYqoc2zmuNn0ObZ0a4ONoUqZxIJvqNZ5U3yDxYlmfxrrXIusAN9UI-U9pdPgNi9tZg3niZd6l_oMc9u8aZ8a-vAuV2rOGmcZ2v9Ghuhbal8uwZx6uZnQcPaFOS3Dm5_X7uDl7gmwYAkITZmHxFCEBewOaZJI6XjR_rnNO1sFY_CY8QvelUV0XiRt4QvhqOfvlm-GjxCWtCsar7YxqgUGcasuzKg0riYAYQ9w_in0rmMceoFs643GW_QtNkbxxpNPUZDAPjMeuYpgeqnRNvqdLOEw6pF2JMYdGX8WguTZ6dfz0PAdOHUHSDhV0hUB5S7nA9l7Yoq6W_0qQStf5f1srvllJ780c5KEjqrLGCU7bXJ-sq3IxwVjPPaAcp7IXdbtT46uuI01RSyT-KA5KBVdihSis02LSO7JtLRTe_VA2Xiun7Ma98UwbOebIvVC1j5Au1moFcpIHfmSOtwN_N7SqcgU-hCuuToFj1qMuqzN7T2nUWIgSnN95lfLKoAYnglfjDL71SqJDf-XBrw70AXyUSBs_ao62H_UVCOlYJa_qpP1q3GJxwYsVr4w-h6jtvaNlnQdKL_h1WQax24z9TqzustN_itKUpDf_96d7J760qwY6ra8SIQVON0Wwte7RufJnfMqAIMZ-kZCD7gWPmCVgz_ifiFkN4mNEsVwCJWF6ME9sueAxgyHyiTonhMH8k-rKqmz3CzwaP9WsLBTUjcnKB4NoDy1l24YULLn9u1hODY1WFIuUat5L6Q65wfH0fFeerXJhheaJXBHm0i_rezYh1Om-3032Su\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"10\",\"livingcircumstances\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6802ef2e127178-24094024','','','2025-04-19 00:33:47','2025-04-19 00:33:47','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42957',0,'cd-form-entry','',0),(42958,0,'2025-04-19 06:22:15','2025-04-19 06:22:15','{\"firstname\":\"mhairi\",\"lastname\":\"robertson\",\"email\":\"mhairirobertson100@hotmail.co.uk\",\"contactnumber\":\"07549014076\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5qnTENg0urpviIaHTzkii2E5X0ylv5cNwhnD9u5AaidpH_I-CYiQJ0gH2Rz8P-yZ-ULSbDe4cuMFH1YPaxBfnuOSaVPKY80d6j0_iXE_PO3ZP32Uz9G9zI_xAquiZUzupiU2ujuAHXab8M4WqHswjnNUs-XHxGZEVlWkLR8IXDLUxwlkzV0-dv8dq-qNmto6dJ73vp_SCpwMahMbymDDSbCjuWIWzhbVVPS3agmD52ERslyFx5Qvus99VHxvuPGSv_DmakQ4xInJcgS2sNmzt3xdAZ7nA41ESsDsPaNE5vLdM7HMr41u5zhsSTEr06MzG_tPXjOANB0twgNTBwF15dmT4Ur3n-hpIk3wdQ1crqvuCmENRhVEE9-8gpVl4aOc9RBjHxhfOfsQ0WxcTJBp0RgFDhvx3nnJtfP8HxebpgBQipkkXFsGra1qZhvJ_cvdlqXUUkIIpL_s3bbKRCQHmEb5H65Biv8RzKh9nPKUhBd0cnZZJffl7OFKcl4a_F7cI5P6tpI3brBhYbjVgWUdZA90TRXCmhiWCWxOnDMOz0uoqKzHoNZ-SRJ84CYG-2HMr-i7m3z0XTSVbo3SD-I3ue02R_T_C1-u1Na8AZxbvh64DrLcK3NTkdQXSDjE_zcHDdEitHOnWf_H_k2MiKjhw502hsQ29CpIiDmvMiEVRYw7qbbOB3AeSAQUG9dr1coXiLxVVk5X_faVPX1bLtyYzOY_CJm53mtVuCor7Nnk7z7H-4bXHVbyuxQ3eM8JK61CYClw2eJ6aLiPtL7JQDnNK73hwgE5lWtmFU1nYh52UAPGY-1NDwiliaIemJYrsDfeiT_xu_ptSbomamLHkTYeKH0-yBy4QxUZpdUM_QU2qfkmtOfH7Q15kV-AF54Jjs1xKP0eTjIQ7rHJJT6aYOjUJ5ImKeLH7hGxQff647h4FaEoiwDomHO1THDSCE1AM5FA030hei1qYKMmCQ9tQNlZNi6II9K9Tpc8fViBzxrQAuQdywg5lrYm897EHPUr-YfKmRNOED4wZNTCzvx-rOcsQ6P4IKthHXGOTSJw5lKvg_H3cwYWnAzwIBJmJKurhvgfrrEeGNOiNKOOwRj2gYWJ8h8oBGk1ZYlhxN9UjSfNSSZSLqM9r0PSvEVw_K_A5cCuWi_PAw6aLBI_PkHDcLJ3tjALGDSFpPSXKnRtSOjfJVIqeND8ulhwRnkP-2qu25kLf1Nw5hn5vQPUYT6cZLHqTDnI8fG6JSAM2cmL6ctk5g04KxhQptCo22k2_Eez38o9ZD37x-tO2pAUaW9jxRWWmVJLO8eCTnTC582ZkE4usY5BxhxZIX4oxv1hiOQKdutc62vLXSWNKG0tH6HhPBqLoOyXmnBTLlDRRMLR_zfXoSAkGPBLHxs4YTTZr99gxU5Cv1X3ygdHx3_6GDyNkITEXTTxi3jnv52A-FAI7fjF5Onxcx4stT6WiVTTNVu4vLQjZxbVry94ZxQ_E7JpED6p3lokVHfaLbN72_fjBZBHLbG-n9zjFQgqLAXbp1M1LZHBoMIZQ9qIcKK1qFOHcMVxcYJ62Mtd0GhMf4n4Sa1fu_re8QGBLapI6Lcyz1E9uIX1qMK1ULa9bhQ-RVYSZ7YabH4tw2Aw-lU6YGYjh81eThG8RPt-O_MOKBv7hq-ZRCzLR8nIViTrdCK7JQTq1douudVLpL_MbQjQCPvHTn0rp_4bSPSnghyD5taD7suTye4o7HtTHc-dZJ4Yxe5NY68O1aDz4EAu2Mzmr-Fnbrz02u2N9u75pneimVsATDE9MydL9zKZtw9eVXwWU5bXaTL_RkKTbG6KJBjoUDEIHdXSy52_kPgEXTpOnMeYWDhCA1qPs5bZ6wcOBWGREnQlDBst6HJXMrWXlC_6kzl3MpEU0zIdXssAR36TKO8bqNyaMuAZ9hPDF7e7RvKBRmnP7pApq7CxRLFWWblgk1tC7u2El68hZuFbTLkI3I_Ciy2FgLwEGKiILvCsTPsM0amNTXDTUysBhhoqdjy-a6HeHEFsDfYiKpsgx5i0wlhdNe5XtSk0hDuybirJkwGJCBiTd-3WUrQWV28z9V720MAPFTOSK0RHks8XDmQImImzotHjpCy2Fwnaan-vZo1h9hyCu9NNg0wZzzvS0HA82gYKeBwEvOyDO2pezBVHqFVmk70zhDC0coSbnmZ6sptFordo5z-B3INNLM_A\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680340fa4183f5-26866384','','','2025-04-19 06:22:15','2025-04-19 06:22:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42958',0,'cd-form-entry','',0),(42959,0,'2025-04-19 06:23:39','2025-04-19 06:23:39','{\"email\":\"mhairirobertson100@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"Ng196hh\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5F5a9Z7XQ7Xbw4P2pLIRFTj1Cnpgky0n97tr0XKHDGjcBhvKiFQtsCGNbPBTkFBN0I0_ocZ_LSbeyRGKUMah5YCrQ2HulKrh-oI-fODDLZmLq_iWZeiTgL_fmNApxxtkkmTEH4H_ZmIUDGFA12DdXDfZJfkIpEaJjG5LZkFEvY0iZfa9rO7Kif9RE1DFZabKk4fRcTOwZt8lbGr1xClkyep-pxRfOD-9kUFdmf-Ycq26AKD5GG8Wsx2SG9VIck1ffj8rRwvaG07fCSsqTst92trXw5xRfFwgbnqDEmp_zDIpSyjrWYHKpQG2EMlXOUANh46_KzIAqjFX2O_TYNNpAX2sZJr5-YD2QZzz425pLbAu2e_9Ze83raRpuVWYvTd29oakOPj5oEm9GcF57B3HqkjlQYQ3xWQSyjE43k4D9RGh1OH0kR3Q57Vi918dH66uIP-kj6nhogAsjjWKM-bKam7-tKIUi37WsMhwRaEvfxM7hfI-G2Sk_Nj0Rwk_uNEPI0KLAQV9QSERFKbutxfMDcrRohZnyP8LBycRHwbEfteRhMIUhjlRh9olMfzxJpTBxRISOLegfCZk3Zdxfwec0QpCaLRUNAMSoJIwwKND87Ty2RVbiyE_R2jbwpJEdfKUvdxqyPzj3a48LMzIlNx1cJS6HO0XVVL73cUV15kEYQ2WHrSgWPEbTP2lylokJrqEXYIaKWK4XcOZ49WLix5tiykaGO5bS6pUYy0BkrYkFP9O2axElS4_qkjVwC590-5dztgKAmWu-dRINEIWhqpgYe81nmjVG9X2amzdRXjNf1U7n-jcyDGkHYe9G_y2E5KIvlgI4213iRJ40uucuTcdMaMy-kNmrM5h2KbwhbazwPlFzl8z-XnaNDFjfv8l1VOZ6Jy9Kq5X5JomtWzXZJu4d66Ofwwvl_gYIvCjbbeXtDFt1Bs2u98o54660-WymcNHyYfxo_eSZvAIUZ4S0TTLkhXTnw9ZHQs9jMEILZytVojACWQT3Jrxn3HMPi7GyaxQYxvgG_xEwkSFJdxZmIznQ53AHJCRx3NcVxQdG-oFNvCYRMj7ODJip7y2m5B-KlUoBiw8Gy_rj1vaZF8iIF06sIDdaqxIbnMStrIJxgFJOcHCG-Bk-6UsNExm0GQ1PcUOt9PM69xUHCJjxxHtUupyaw5ICSUpQHIvLiTbnLz8ESC2xWaxzx24of4zDUPTPF77J6L9fQVWSRXVcowLISFTXgOcbGsy9atFnNESY5UADMS3OXxB1bVylL4bbrmVCuSXhLDLpkbptNYaGNSKPqHZivsZjezsnoWCIkFSKs6BIxJMzU2r4x2BiPGpplQQXrYrNIF2l2vdMcDSLEGzNlQ_zUlSeBIG07itb9I2u5EB5lo4lNkglSIKQEG2FIuDlnGOZscJe74CJ3siOgdYl1_mlBHm_ZmHTKWgel6s8rGOjHXAIJscOCeSoOJxBv1iMBDBjBVFkn05Ye3oJCVVIwnGFi5S9NOFPQXG6NOtuJqWekZnUzmRCmoPnwacO07RqENWNtRZMdboBOEe0Nuh-TZix3-YU3fDnz_HkPZIoS6oPix5BrUt-xKDTVABy4Bn30erOAzY7Vp4n5yX_nzDT5gOk1rp889BXI4X61YobycMknfWlma9-SRlNIvsGIGkqTlpEL3qy_qNRb4uCXIb7HgqZzuNIDgITUBn3kf0aS-H6Ft-6vmVNQqtESFkx4n675tkv4N-8rwodZmUprjpRUQs89qSNWcSCJX37-g3axyYqmS0AgkBMzHstu5oslZzYEa6IxGC3bVj2lPg8Tszuq3gS4avFsy4w9lGgZT6aQXKv6N0INX63aCECLyyLzKUNab_ZeQj2ufz6gAq3LWuUzkVxDqe0sm8-g3ZPUmF5w6NiXHWOjHo3WZMmShjJxh2zS8CFXenoghwYzn-flczJJaqVeJnDv1D6jhXBgaCjb5bzkufNGh3lzBiMdKQlMo-KgXUEEhPRsHUQ0wRqCt-kdfKxCIVuW7mjipgCiJb3U90LbeMyAvzC0furTraLyNPDdXVNtiSN4VJq-jJUmP8c6NkrnFjCXYgV-DofJa9-fiZdlRufeTo5BptcgoJChMhZaflEz6QzkNF_H1DF7St0gKGEkjkOKQWjiCut2NO5IaIVctw3HMIerF4dDkIH1l-Xe_EBZQ_iegQSEK5aEWQuAOn70MxcWDQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6803413b0c4923-12988424','','','2025-04-19 06:23:39','2025-04-19 06:23:39','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42959',0,'cd-form-entry','',0),(42960,0,'2025-04-19 06:27:23','2025-04-19 06:27:23','{\"firstname\":\"James\",\"lastname\":\"O\'Meeghan\",\"email\":\"jpo149@icloud.com\",\"contactnumber\":\"07787888710\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vJgRfEdgycoLl-24DO17mjT&amp;gclid=EAIaIQobChMIt9mWoLvjjAMV34BQBh39chGaEAAYASAAEgKTmvD_BwE\",\"recaptcha_token\":\"03AFcWeA41lqgfDBd20ZTIn1A2cItWWpAktfANfJV05-cPJDhblwcQSAmCEJjL-USJrN90Add3sB5-5MHfYu5uNm5xRYnhQRSZ3dyoTTokta9cLMTMt1u_SiwbEwAG2_nH6C1dNaXbe-M8TJ4HPv6Cas6zeMpHsyJgFMkFj8QFNy9jEr78bZQ0gt-bE6FEiRrp0Rw50wPVmjFP9WZl7awPR2crA9XV_-sBtXNufibt95ZoblmC7qpBkJicxIZYbG9QQCgkRTpFRek54TCexLO_DB6W-jk2a2duaNcEvpH2xNRrSHH12Mv73mdWfpPi_gVRgpU9jYZ6H7kR2cabYA2NQ7QGqoTY5N3XVgXxzxNIJe3rDYdKhgftoMzoc0RfMJnkhcZc-h3rhXc5iA-U0y_qOwHMnXOizdQ7UAWC5ULf1VO7bCRcQTJbhZJwQldeS79tVcUYh-SuR6d_SuCc3kmdrGJiW_Vqbp_uBGWZtR3ZjU8ki65rehibh1A0hVv2B-hmWbgnrmO_xe7Vbs9z9ceiFO3PWSo-ROzpc6HRrMcPJAdhG29eegOYJth1w3ZBNuyUpevRgS6yA3JkIAwzUfA-bmIkLR4EwdO4PWsvTrITdThMjQxT4pzRM1cPeihA9A3WigkyIcxL18hmPjdpvYdy0qCnuw1RlarxVFcK_AI9cIs-ktZxjtJfy-ogeWWR43R9c0t9DwdGt6lh-zdc7zkRDFN0V5lO32vwHTwij_bv9XqxZ1pbVWLgyT6A7ukAkcxXnJwiRtwTY5OdYqoiAxyTvuYBXJqGk8_Gx_tHNcTEfGl8r0xSqVC3GmvGTRz7MCtltEM4y9teqAzZhDhFMicUaCqCzX7Rxp9IU3fObc_razn-XVNCrDWaUx2WqxVRZVKZ9CQcQavncq5dtcWj8eZK31coja2e3bpt3gZEUjVQgLen0hsT5noKXx-0xkuys9GsLsIhjHuIvGn9kRLLGDU-6nOJgac-3ZAUF7LpATdN2T6z2vIQ6z3zkJop9Rsd7Nmi-Y80A4HAnu6po7zy7_q86VYjMGiWcTp3lZqfh-toDSH-pPH2uuvOSokQZU2PKWVY6_ClAq8rgYJry6EddkcRmYxUwrsawShGqyd--nS6RHlpu1pEHnFqwXoyCs6_6_ZeP6p5j5ljSt1y5VZRXDLU79985dO4vjsxJVjPMLafrUdcUQ0WVQrfZqPzlU2h-0qSG6XL_E8XpR_3Fnx6Bc92D-WI3S3nsLufkRp_dtkm5awS6Kihtnz4bjcVx9yYqCy0Qyzb9fSf-yYRILD7i1hQ2mdMaqpdbGUYy_lwhXn_S9FpItNrPQ0QWQ3TG93a5kuFa9BNOTUtJwjvnYT4pt1D1iNCWTugmkTaIyytTQEr_TJ5lGTq_56jJFuRwMwPV4oKu88OGPjmLhmjdsjSSUmdaM2C4BkbtrtIfvmKiRSPXAzEg7dcDYTdBxKeqoi8v_ri_eDra6hdKDzBieWZJbql2Qpxyp7SIwLlQ8f6CN2ej1Zapp04gdBYELMcbFfFS0lz6ownJ9Ep1mO9t-FN5RpfLHsrLkeHUC0nGokIQxYwxWxvoRQLBtZoTqjV8CfFnL9rJk7p_gUdrt6azZpR4bOP4Wtk9dl1TXRzn4FmN38Nu181WJtqz0sNE7nQgO-9AlfpAXlq2terkHqbqsR6W9Z8i5gPYIYZBvoWeNEHq5OQSDdmpLrqytnBJ1I6xcBb90EoyV1qjx91opD1m5PiLLWrrQKcHGzgqOlDVqWFuDkPKkPdtSnfsEmb394kLwdSSctBi5XM6KNhbUPUkUeULqEhHhNlOb8AHI7X_VpOpeB_OWsOJrRPZTMfhOejD4C3gDQ_9JHVTLq010fTkPoIjseLuoG-faQLN3steHQH81TUFKP_kJ7-Ssm-4iS3i4UzW9i870hcR0KUSCT9iHiZ2fG516F5By2izgHfYvJqsBcOv-ckYquVQ7UoJ7FXVtl2CPLPT6A5JA7ApVuU-8R_FmkbqX7AibDxe5Y13TNho7BDkrOEKAfPD2CGv5udj0P6F9Mit1w4B7awSIYXP5Ssji4TAlEFSEftwwogTZEben6FinK1IQWOdi1lqpU\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6803423bcc70f9-75167042','','','2025-04-19 06:27:23','2025-04-19 06:27:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42960',0,'cd-form-entry','',0),(42961,0,'2025-04-19 06:29:02','0000-00-00 00:00:00','{\"email\":\"jpo149@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"8\",\"currentpostcode\":\"Gl530ay\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vJgRfEdgycoLl-24DO17mjT&amp;gclid=EAIaIQobChMIt9mWoLvjjAMV34BQBh39chGaEAAYASAAEgKTmvD_BwE\",\"recaptcha_token\":\"03AFcWeA5sJ76pepF75pCdHVi9QJsbbCdhJRmBruNFVG45BEKTulOkPSSp8u563I6-RGQ-DfLGQK1Cc_Ch8MR3LutrHCXFyQrY_9N9VSvbmaNk_G_m22n2c5se3McxDI8ARz-gCoTMYrCN0VW7WiNORyPQ_9wyqVPsJrbCiWhGw4tx4fsP1UMuvDlwqqZynxRRVFok2tjWVoBbZn0V92KBrrsrSINjvh1dnddGl2GtF8DzVVqxEZOu_19SEupDXRN24nQyRQKOpLCPK4Z6-bfglG37kh3tqYsyfmIZOOaF5kBZSe6w_LElzRSHKgclurimp2RR1SFG9MF0PuYD61ZNuqAtWfydDzT2ojPI8_mSmjd07sxmZdzfeiEOdvY4n214Wb1q30_7k5ivN2591VDbdce2WFqujnVsLrjqQB5WdIlfdpFrPgmuChuLnROSXSXPYTktPPSFWpEsskTdUjXJhoidzY0HPHY0Vohj3wsw-w2SxLXvKq-CzBcAW6-S7pNmFcPoBcTAyDDmZFe8nQoCQ1uezIIcJS4khRjd8jOZG0XXJjQb4M4RIH-W43jXzgEt1_RGnqddp52RVCzqk-0szDBWCb_6h0zjaKuiFzD-ulcPrLCEW4A4PTwx3Ofu_BUmNMXTXrOu9syWURV1Bjb8JJ-jV1fHKwfejp3BuCGRdSQHdu6aFU7zjs6B3XrDOy6gQx1Hg8CVbkMPHCbFio3tSbMbhubXou4_iOn88ivDW2n3_Bo_eZuwvs_nm58dE0hZUGye_Mu7ZNTPrFF0AB409cF8R0mWVTwdCBjBdCf10ZwBAhtSnRQDJfEnoIFuCnZbLlmxstTFi6MFYfp17H6S0nhop-as1N4u7okND_Y-vnhzuR8b7fEdeyKsdP2OB0WLgvhFlHYKuiBazLbVRry4dJl6gmqd6OZ56PJ-RdiUHH-hCx2GMvvp83_iQzu7adNVHtzddI9or-wyH7eFT8lzIHKhJ-dPYZ7Is2DpdwNiLJwzX3mJv1dQGpH2FmWbqA_Sl63Yyo0tX6f5d87enGGJJYxdGVzrhI2kwvWF2W6oMJoE-u-n_gnqmv2_bKqWHk3Ny9VV90rFXOjELUQ-BI1Goos0c8guXf_vcZ3qfxC1XD5M30usLxcXcqqs_a9OvrW2wEOZv9yzqeVR-T6Zo4K5aiHrJmYlbm0k0WZzY6LbsWpDZoGNKjYrB1BdNhL3TaWqGHoqLiAbII86ljkuGUjJuTTV6bQAkkbdNiLCvR7_Mb-wOQU9ZMMeRi9V-ce1Y8t9NznlwDFHNpweKH0SmIFlJVaUs7pVB94YZbcuASJjtJJlV7AGVH3KU3dTHYd1SzsdkWSVGjW7-h9GEl-MzrYasoon95o5Brwep-0Mg9uQ4imIZi-cX0NnCIwx2AxhoboI36I6budKno1UlOtDIIZm_BMkDOP2Xw5KxIzuI9RW4uWiQxtLBFjnX64mIYtbd_8D5mf-ytt7IK5J08qWitgs43LC_FD6etNl4xG7P4B-HZmxTu-ubUxzydkXzq4XvXwl0E55hskUbmYMNEKux2xWCfgd8aN77Ft6oCAAhtZla8Q4dkVGLgfHWo2qbnkMVAYoulzkScJv0ACbdestNClTqmvrzHDXSHAydQoyuaO_D0Ioa2wBzhXjDYq8mtwAI5TN0L0iI39wKH6lz2m311GWFR_Lw7TMkZremsdNfqqqebiQytT1ZUOocSy3QB5hVQUzI6T7pLqDy64kRdqqgGqdrElXri2_3f_s2W6CTlLYXzMc169Nz7QMBMWJugNG2hE1e2GsatSRv8hpqgIA6Y7pYmlAsinvkXfROW76P9CEj7wrrcmLlw8mDaHpVFZzwL40eI-NxDx3mNtOfASBjS31VsbahDfdChcuWn4ZnDXA5_QuOLxVHqOwLPlySvci0bOhz4a6RG9fhGBOhLFLSPmrlq1-HqZe1Y5YKzlwf74ANpouvXlZ2Z2reY3D_HUhdsJaT5659sbJfvMYjvQ7lFR_caZ8O54SAitd37Lbt4icMq7txHZaO_pJuI60-aZS6jNg-ziwaNMAdOLHwCKmiFcylxCNDYUxvs4hFOFrxWS__Sql4-Gfp2Oa8a4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6803427e600b90-91189060','','','2025-04-19 06:29:02','2025-04-19 06:29:02','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42961',0,'cd-form-entry','',0),(42962,0,'2025-04-19 11:22:40','0000-00-00 00:00:00','{\"firstname\":\"Hassan\",\"lastname\":\"Munir\",\"email\":\"hassanmunir78671@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gclid=CjwKCAjwk43ABhBIEiwAvvMEB1gcS2nMHkibl1s-zhRAivsc1p-PuHwYQ157jhqHmBDI9O7j_WKMNRoC-CUQAvD_BwE\",\"recaptcha_token\":\"HFaGg3exETJh1SS3wCRkITRwlfHQRfXztROWtvMiFJYHNFAzd_KxhKd2hWciw-fHEfTQh0GwxEagxBAEcKRmwmHD5AJTYJBGNcQFkyaHxnWCRrOHlyQWopTF4GcEYYB0oZQRdCZ0IzaRQiP2c-PUNnKk8KYW0nNVl5KXwmMUUya0YOSjQSQFkaRkEMAkcCbicWaCwsa34fPWgJQmMzdz4dNn88XHtISHYEUnI1RlwESkxWAWsZXXMyVWgkMjI6VTxFT1U5bGxpFXZBIWpiATxqWksfRkoXRFkXRVUeBAEHSHwCCiVpJlR6KH0OZmI0NEVqf2IBbHQFTFoUTnYbTFo0TEIISUgZby9UOysraU8fNWBOdDF_K20aMTdRbjsJYyZDe14jSFsVQQxBBEgfVkMmVnhzY2FqEhUrBwJrYnpoWSEgYl5CTnkXbH4YbkJCGmg0RHA5ZFs0S08kE0UZZ0JBIWhXRDcMHntcaikuG1EZNkAZfmgveEosSgECW25VRkc_YAsnSVkXHHMoZ3opWiIHfRhhWToceVIxSWkZa14zDBtAQEAJHyhkCDw0LTdqE2M_EHN4NytNRCNuAHNGZmIWbEw8LE4jZEQ-TkI8ZFBmOAt3bENrNRNNYBBdMjYHHVNNPxBxJmogUUkmdSxDH0wcdnsMY2gmcFsvWGgefkFJGTwaUl0McB4YDSpMWRYUPmYDDnhySHhGX2gQQ0k7di4dAWBvVmh2bAlLdHwHanVGBCZdM1MzQVETYHNCKHZCaE0PTUYqTnoPPlMcB0Y-d2o2GmY_VEEJawEoLg4QMF4fYmcpGn0_Sx4Yfx0re35YK0MoRzw1M0E7HiknBEEDUm4JFg9oXDUufkclWGQxcUAheEQhYRgaYCUHDnVmYzV5cBteU1NuXCpvBBIyCDdQUTdxGUcUL14FZxg_S0QZUmEPMnU_FHMOe1FmE20pNXV1DVxqChsdFl0fLlZRHikRcUdbGnUmbmMEJD5LSgYwbSkRZScRfEw1WjwgAgpmNwEDfFA0TmAfWwRGQBkwZlw4YUMzbXs3aEoDaBl_a0YKMnJzCT9qBEVUVmAqHXNLaRgXGxE-ZnhHVwUPe2EWJnhrYEpLMlA7e2lwdkJpEToyFmNlekQRZX8Pc05PXlUmFnkjcnw-eRcOMUYJE3dIBVQXUDQmc2JFVxpPbHkkSRsOdgQMRGUAemczR2YmeERoVEI9ZDZyR0IQZGlhcjJmJX5gcUc6YVIZKXoQHkwjW14IRW10Y00VDHMecUg3IHM4RDw3KVxFGRYuOEYiYX1YdX81fQRHTx5fX2sCRkAOXnMKSykRKxM4SDEKfTooMCA2Sg8_dDQfdhgjbVpGeWohfk0IZ1gTFDVzVik_FyVbTko8THFGaBJPBGlME2AvQFxDdhwmamggemQxTwcke0ola0YLdWs9AkM2MlM3aAJrHwR3CmhkUHlVYHI6QHEBfRo4G3Q6als2NC9uaSAkGhJNUlg3K2I7BxBNTCkMT0ATRU4QcUEeR2sDVWhOV3RjfkZpRikCTjV4UgUWSG1sBgo8YH44QGA6ZUhfbX0zcXo3QAc-W1cKTlAeHXhrchR4aBEoNHV0F1xXOzR2H0E0NGIVRGscUGEHYmkjAmkPV0YHZxFmZUEuJx8XUjEgf2InABBmfAYQWWA1BkcpGEomRGggH2MyBS4GTWBwSlI4TRhsZ2YlX3xAVA5tJl1HQ1oJd2UoYG0zQW0UWFcld0AMMktnbHVrYn5Md1UfW2YyNUNyFmkBKWo8bmURXn9OYXsPYGoPV00GJTpXNAcOV1Q9NQs4ek4YLR4hHBt8ch9LRWEzTR53cV8RTx8mdEwPUHc0SUM0Y3wVEWZ_eEonQy4wVRxRJ3s3cn8EbVcBbmVATkgRSHYcdkctcFYePDkzUnBkImQIcnQqM31WbWEobHEAahlSYVgvZUUMYhQoegwcS0sWR2kuV18mNRUqZFgQcjgeFTM6KQhLS2JBCX4fWFFBHk4ERGNHfG4GSGIxbFEtex0oY0NsZ2NzQC5tCEVTTl0VZQlKUx4xRwQFRXoHTgtxS30xNGg_dmJRChMFbkhzDX9YD2YjPGMXYmEMa3wpbHsnEBQde20nTWMHVGlpbVMSBzYedU4PXQ9YIzM7fCosQE5JCkEASh4BegQSZnATY1IdAFk0cEJ7ViRqVEk3bXA0QgdQO3V7RWolSlQxa2YPeB5CH3EqF10GQ05jBHkTQxRXIEEFT0tzEF9xYzM9c1FkYWMZWUgkbUcmEWNfbGJedkw_Oj0TNnsvKRZKWzIrdAs1CxhvKitPYHceSmQecG44TFADBX0ZbUoBb1dVQ3IHcDxVW3ZwRkAwWyEoFFdGZ0QrRWoiTVEZH2oCXmUZSAUtPFZhaHMoRxRvEEU1VD0kH0ArLmJzH3USQFopXmoXeEs9f0Y1a2sEe35TVS8ufXw7BwpQZDojczUkdCxtdikCXVwjWh0efm8FYVknano4QHgHVlpKUHAueTUoQVI0anJDW3U1Y1tASnhrG3MEVhwuYU0ffAEFRVkoRkFhD1MEZGhnfVosRXIWIloibgM2Gm9gTndTWCoPTHNDdn0pQ1lYSkUufScsTkkrORIkQGApYzAEHB04aBMTSkBHeGkABGYvQEpEdxYqC0MZbX95QTwJRTdLZGMrTW5wWC12I1Q2RVwMWn0eWkpHZB0mH1gJYEM6Y38TNXc-cUlnAEMFVn83A1FgPgB8DUslZ1osWFdCHBA7c0dcRhVZaycEODMtSGpOfB1MWHgXdA9fIxJ9QwRDQlEgaGYuY1oEXEsXUEwUXikzQ2FjcGEWczh1ZXRkRillYQ5oP11uYnRrRVhBaBA_TVxFQ3w5QlklbA82KlcqKFRkDWYdNU0yHHQsMjMNbX4nVmI0YH0Qfko6GHgvbGxYa30cZWYXcUM8CSozU0ZofjYuaDk9e2YjenUIDnI8akQTEUYQYmEyB1g8AHduTVN2GBJ5Z2BuSlRFFXc3dC9F\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68038780a38ca5-97402240','','','2025-04-19 11:22:40','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42962',0,'cd-form-entry','',0),(42963,0,'2025-04-19 19:42:20','0000-00-00 00:00:00','{\"firstname\":\"B\",\"lastname\":\"Vella\",\"email\":\"bethanyjvella@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vJgRfEdgycoLl-24DO17mjT&amp;gclid=CjwKCAjwk43ABhBIEiwAvvMEB7h7CmvwpYh-IM4gva7X414sLAhnRXf2VvwqrimLT26Ja935Tzqr8xoCAD0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4qNTbAqVIOksR_zgQ4LZz7XiUayPs2ZANnLaZUlliD4NbILV6hIAof8PvNdYC7Bme7UCPB6Of3Pcy2-Rk8QJM-lSKPQO22SODo0qPzfOzAAyJa8ZnV9w4U-v9KesCGyDEFMNU-xBq2UCNV32LdYh1Xgc1wfqBvlfonF9L3yMFtp4fKYyriZOpOzKsRR-fk103-37n8T1TB4kWdX0QfFDy0mT1o0GV0hlawrrJXMYtwAYV72UIVsGKuMLeCVwRcIiQZH-497LnlhfshIEPOMrNklR9TXn2kbFQM_x9H6J3W5w8y2PxoaW-q4TA1QRtdCFekphG5qgDpv6vVDj3qGE9hgWcpBiWUA0bcR2PniU0OwTVCR9fRW5nSve6-AcwxxQLzMa6z6ykwL1q7zzyUlbfRE8qagJcwryu0pshAwqW_I7Rdln5hLvMSid0nlWn5DF8i1uvRXekR_bkZSKn58-N6Q9DSBr_xFaJf2yYvMjpnOCRAPtH8ZFIFdQ031VeN-JCJLSFoAeibfW48FMgL1iadFs7lYMPd4djp7DdS2XN97V4jqzSLviIfH2pUIO5-klLZCznys_WPMQNLMpJwp3Y2mLgpzj-0hWeVYvwtkfG3OoWTCxl6aPzHJHv4UwpT2-t_cWV1E9F1XeSro2GqP09kg6iZealfwjrc1btOihcYTx5HnSjOKFktas4S235SXshwG3pKDsO-uRrVkRt8v-hkJvQHV12FOmwYfE3I6QLwyujpIur0nYbjr1tausNihozqJRTNte4FkMk25ZeNY4ynIAL_YtgeQgckly86JGcQSEOHOM6SkhEbHyOOYanJDq81OscMxFLT8_4xLhsekLILZSCnyLkYoLPuHoiI8n-lXoL0Sghy5kYZ0QJ3P81kGiHte1cbvCSqJWSa7qOUuTGjkn0uod-5mTeNOag_Ui_f2udxWYFy9DIGRGd7zhd0tvnCRB6lEXH9jSatwJ5Q6KnRG2sHVR0Po7akn2b2ianvvUn6ox4iHVmoBUYJgipndz_Rh-IT_wuRWnds4jM6EskUMGTzJJggm3yOZF2s88eVTSZiMndDdaqRtO6REaRrP088SPlXvvaGmBU2GUAn6U7rHrYk8_vS1MAsrYYC1tUujFYYMiwDkAx3ml__MKW5SRvV1FN_1N9PTc60nslgS0er8-SXvcGm2fO94bWF56jXMGE9Y_mr5rn2YFlOXypO_UKiWKE0T0rmttA1ju9TgtObD7CCv8JKRSNJzzYK8UvLEGjaG5njKF6J_CH9SGDpL883bSNMXN_5C_x6o1qYhu7nzRdVU8VBT7E8RwZ8_q6UY7Hzcg_Txpr6Knm2nMlUregkiIjFsbfRs9lZn7T4CWq_TYCKuNSPWP7K8DZs1Z47TigRIzIeSuMSrsBvUSZBJwidh9tRy0xqWDImcevlJXjvfwJSsjczN2i0qEUX0buJTD5_GJesP93xSst6JfrnHBLw2dT4qvrmAj37EhIsyi9DpXX94apZYTbrCkdSnVdItW7EeXRc2fQ8rX6HGb7pexvutoxk2Lwt_siQ7LqBTu89CvJTW9XLCor27cz3YHCKpR6XPntqqxDsdADoLh9q09YfoAn7OgJpLp6_H5Na5pLisQL5Z_0V2nbBLjkojYICXH-n-fRJEkIfcyqzDZZdZpqX6i3lBi_iz_MfnEBa3jXCnDRDDOjx8w_06j_-dkp8GfC4XYGyop1fkTYOzTFoE1oimaPhqRg3FyZUHIP8eFCS09UHZ6i_UTpGSMV_QVxhjrMA_uAR8aPydbIiylWDcM2zSQLYKJESjBdfhUOC-xWkJ_yIQKe8T3CTqE0SSysETZ-n7k2wNC3RQRyYS1K7xGxf6GInBwbZwgBxenLmO31ii0yq92uX7CwekfcMpx21lG8_c26SU5Fqr27ZA9Ny7IT4LXVUzQocS3GU-ofMGJeL6-cK1UEZUOVbF1mzTU8MXX5gtkrkDZRvL_BjMV5-IvlMvNSktL1iS5dmf6zgpxkKn7hrXJPjOg60ppn8kp8_DamC9hW0R7A5RZzgSD6cL0ZBA6dyGSLlYUPMDA1EJPbc2NVj3S50p3KlHuzWv4DG-7SqiXzIPz6sZ-HKY_joNihrki9W0IqDtDVMtumNn7RvDaQJCpTm5MIYZXTwBRZL9dO_VEZEqGuZ-UMsEUfrSUtGiLqToYtSvZZWFRUpKJTjj2DPe4YPPVr2i7oxlgqQHfQ84ASBPq_6_31gfP_jbkACzo8Tq1NVhKLn_Oy7QsjzrGsG__cKyZH23FBnIe2hhqRxjVKozqwYwh1yYX44FqP1W2MBaR84BeglD32eAuXJiezQg68UG__gO2SiRqTPx3BropbgKmRh5Yvn466PxYYoAHwhUVt7N2aGZsWaL5VyMjedxUmbGTpHILn1aiEsT9P2Buw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6803fc9c59ba31-00309316','','','2025-04-19 19:42:20','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42963',0,'cd-form-entry','',0),(42964,0,'2025-04-19 21:42:14','2025-04-19 21:42:14','{\"firstname\":\"David\",\"lastname\":\"Stuart\",\"email\":\"ds.podiatry@outlook.com\",\"contactnumber\":\"07748777494\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5cq4PZ1r7J0sy_T48VXJfzxlyGpTWTculQ7g05ZKIhuezwE9PWlR8cBBrtsVgW6yeYMX0Y0Oq9niDtaurQNVeNBDYwBp0IgxGBNNpSHj9dxfFkJieqoegZzQsygckZW_wS3P_mADP_Xdst8WIwAuSW8M2IHToY7Q-tXDfqfl4Nziz5yMzX1gshKyx5QGLwCMkcVTHBQ1TT3tjBwYoQh_QUZAUmFfnmGrrkl3oKiXsxPL8e9GP5XZn25F17hCnTOww09OWO0lxes6IeRFZ-67aK-GorbdP_ITN7FvII4rTo7XjzOUPS7rF62SiVyCBXVjNFagpLwivzK8PdxDx10_RbYR5ICeRflS_UmgS8Mq4klvcWvTUDRzn1WlTnKmH0HhCemDYAfx-jTRKgkxzlj9VSGaBQcW-Ga_tDu1J0VqhaWOHaHIYy-e_g6ZGlWmRCPbIWopPmLNLloFcJFX_yzW_iF9b4m8xJ0oIB4TWSvmyhWbCFkSqQmiZb1bL21Z9pvXETAemye1-FNbAvm59J_3gRmBDxLrODh-odx7eKmp9VqVBX7MUG4bqGqoRnFFpw3ccdP57z9Bw8CjI-PE-eYuw9_o0vZrghdHdoFELtrzihtaKXdtEsDiEh7TSWRwTy3B9XoOeJwHGs43xtDEKdgmWJDKjQkwXaz6WUdFVkWeFMk_LX8Sn3FgJo6CqIOaYMg-Q8ipjw3EVEBs3rGSDrcqPRuOCurTMsdGcAtJYyxEKJpJOT31HP7fxmRxOImBw8iKvHwG3OoZX-ZkgEmUEdjrR5tNGBj0SKujES8MCIjDuxm99nwZJvzTXanWX6auLNLJzuCbuJSU7yUPkFJsI3YaUvtPBVRA4Wa2IQNU00fvUphzxL-a1wDGLdmnrdusBlTcTiKLSO0KrlIOnf-Mh1wzNarwFJ_7Cn62jGNUAm2WN7sHbdRCBLHT7KtQcPCZwgpKQlIWqEIndcN1qhTG9z5K2BNpqpAkNv4v2_q1hjpBkh822VM4LClbIZTtvRHKpsPQRa7eMbbUehO-cE4tsm_1lpuVNLBeloGYvIomohsYrmaIrocnswhkhVWOLl-tmZn3O4fHQBj1WGJA8M-hJYPtfbs0LIjLGE6kzAaGphNi0qyXtGL3EqnKzynKZ3JvDh_bczegwnk72D0QujIEfM8NmdKDDLK6K4TMO_-MV42bA7UooNc-EWXoCsWNgekxViY7WA64n0IPXBrA3fY1_CZvPVOmXdvMIWENKVFdg2cLn1nuuxTuWb8_6aPe_6eg79Xm1bXPoZpsw2XSUFdNn4kVIvgLlzpDBNNY52n6l1H43WQkA8e-S9JREhvVi2ZAQ2wrhFmI42KoHLAzkRLz6HMYOG6ZV6U6FU0FyncLw_YYSOJ-xvrL_-NtuG6QATJI2g6rws-Mc3UM3ypju731K5APLq8mXO7XjlsDACXmB9l9plidGwPTKEuiWOYDtlKesK_MGQbQg_vyP8wac2wf9vmgNudBaZXaPApZMH4BAzhBgVtNlpdBGQ3ODOv7r3MoSaHyTSE6DdU9ah_uBjqqNa2t0gPxas7DpUE8-8w9UXKEakzxrMpjLKQ019r1H61Hcv-UmCDC4Y9WDia2q71udBke-hcVRHwWfS-kgxUkBaqvLqLrUzGYUQQ0nO5Wd_c9ymyei9jEreLwbXBUtEFpwhzX8qfrSW_R3xCGSlMR5GGCecRyAaya7tSrr2k9ihBX5ILqdSeVxwwYKNlV15lurnaRNhiAqcM7uf9jDVVd45cYF48y2cyYhI5dPTykGIh-gSUSJ3W9jQUbLha4HfNH0XMPy1GTTn_EcA3yQ9X712f0mAVdQPJu0pXLTw64EV0STfdlS-lBkT3rRJ-f26pKUZv-WpGvwpMShNAc9S1cDEDq-GNCQtwq6z-AhcPXYOk5kmTiFpDZFWMRJnThh7fexXwEjTS2wrl6xKrY0G4wGT28uBKBEMi4c3Uubteou838JP9tG37ZpjYV0jLKwbWHtp_SyYt26JDGpN4Mbr_noxTLIgxJgMckpyAghSqFue2khXZddpbxl0OiOEs2OStaBsMiKLufSHshiLK1IpwCjKimQM-E0NgcSBceDzAr2qi6X81Wh7J4PJ-ewPbQBXg_2dPTBZ7bMhiV7WneoHxm6lWO_gz945VMvV7P31JNfNRn5vib9kgW3F\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680417910cd866-63887437','','','2025-04-19 21:42:14','2025-04-19 21:42:14','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42964',0,'cd-form-entry','',0),(42965,0,'2025-04-20 10:58:43','2025-04-20 10:58:43','{\"firstname\":\"Louise\",\"lastname\":\"Zaprzala\",\"email\":\"junizap@gmail.com\",\"contactnumber\":\"07702184534\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA52vD3Pzz8H77cgRc5tcnOOg-k6jU3_lo8e6JjBnPR-SCPY4hDWTaogYgTgSxpf4TN0PqUdlhBfSg_sHU97M2NQAoEJSGoMWmsJIPNlmW3zAoZEWj2mRFTPkLxj7xJJLQnV6vSHTR2Gk5z_aGYF4Reus25D13xTD4g9aVA8JqhtVzHvEjNrZ2MGda_XIGI_f1VsDw6DgBF1Z9igO6Itn2nFMe2tkyUkwqRIuFtQord_BR8TgohmpEqeWp83zeui2A-zUoixBXqaoYcIXm77VxJRQIF5E7B8GdEkhq77-59UplaZZ4cMAcmajgkxTlj7ijnVJKwuBGyc0ofbQABGLQpYVRGASEYwj4UKhd7j2HGo2Ew8iXqSe7rJt4_Kh5RK5GmaGvlKJVV8QIYhhkUxEIawRoV0E2A-qC4KBZnxy7uqB5bASOPNKsDGBNrfgYTmOH-11orNy38JtXOqATvU4jh_AhpKhKfmo6MX3mjYjB5qxkqQXXXc-lbfQyzqyFGfQpcvaLmChpUvOtxR89si5950dRwBnGTrv3x3b_atw-tiR7nDEasxotEXLV04HRGOR-XDQyl7J8xY36Se6VS194Tn-dERZvpwwvKN7phRFsYUhxOOHZHC9Ta8G1qt1WZ828lxRDPGIQV0M52EVULibG29sy8Q9r2JXmqFFz6aDPUjV_juNos4nyePUEEXuVlrc9DD0ZEGX1oPHQjRGnpXjtOdGoJDWSazzq1kwWBuaSv6JT2YX4C-QfN_MP3Ba-EFn7bp_IzNcUN5zped0iqQaTGBLYAIsiIcpVurz-j0Muy4UEZeMtC-_43aWVn4K1mdTrypXT_C4brWB21H5QDNCCnA_vowST4HduSg1nMvIn081AYNEjCM-QI7J1js36OfQTQV_770LSyJ8OCgCkKXjBzEayloeV8YzPkV9hj47p-kejZR61h2oAERAg8Es1eJqFiK9vNAKmEGXFgnRMrSLvJcnEjzRLlZdqB2n4ARWqRq-GVj2gP886NvLiWMRxigehYdgUVXkJg_Tv325NhaMEoKjK-lHZXavsrrymrBJgT67gi2cr3v1tDrLLGKGxbdS6nSOgcqI9fjdjRaSdcgf_agiOmIJTHpIoyz4K93h2LFY_na06jLMpVvQlW5RZHy4dHsZS7-o8Xytnznn-srrgsT_YwsXM-MhAxH6mCOb9EYMemeqClKvmF54UANJXLw0RTk3sTuEscib4yI6qVtcaMc229OhWJsp6UwI5yiUd1WttDjtbGL_9iQ4CN4ubvJOp5f42aE6w5Ynuo7PuXJaMjieHruKpwsst7OyXBz8cyAC9W_LLHEhqkyvGRYJHeNLrjUtcb8u21Li5_FG_pdzwX6VNPsnAms-bmLlFVKizP_VQZ5bu6zoludXlih_d8KdvUMCh74dAnK6e6nZQHKd1cRjemsMjRbr5obKEIkpZL7ASBKqg4IzF6IoN7mG3-N0Liy4XWuYDhukjUgd2R5yGuVLrLvg5yi1KH6ZcOsepn6WL_IHyVIWJbcSHSWGZdSAKgIbvGYcjIGvrLjK9chBvL7TcBwJVOZoiP-Ez1Lar4M4jdTpVvRHPXpDslQowbbcPgtRCzhWKr_1H9wXnwabRRT7yNXMoX6gE937fRqVNnUgDhGGv4kBLblkfKb07TK6La7kBqUcOS4vQq8Jz9mz5JeCrtDdvDAqfTbyOvwi5AHqoBZPcCIzElo_5LrC8Hg1E3OAWa6VGkHbbLmLLC9prKYGqFytRL72RdP7UlTNPNKU0SQzkOq7HppKTKCUnzY75kFKR5jIP11NshNfPLWjInpwLxT8rEMCJCPZnq0utooA6B4kziuf5JdFcgR_SmgQPJOnu7lggSXbiRKYz5Px-EdohHg_TUo-x91nUzieZENA2V5R9KgbfZ2StD2Xw4G2njhiPk5imswxAkcUqWTF-aL-l9zXjHqTYAIdWZV7Cd5pu3oJ7PvDHnUQ3TvM5H-Q7h085SWVWbIgCjAOdq-GivqFRHXViRQsjKrTpYGX_yeQZBy57OLYSh-by2XfYjnV0LXEM8OBYdIC9VIGzJTSmycSP-Zlde5rAlCj8VYoFYk53MCYwZCkxedlkJp2B5a2rLBwe5_ZBAsjqfFjtINEjlD4ksHju6oifOjASIQenIYhiKjKNcLAtmzKsx5A_LS8ylWGdmT\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6804d3557fda63-16333830','','','2025-04-20 10:58:43','2025-04-20 10:58:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42965',0,'cd-form-entry','',0),(42966,0,'2025-04-20 11:01:38','2025-04-20 11:01:38','{\"email\":\"junizap@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"Kt7 0ae\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA6UfkuvjLe-94OWzEaBvqbRrHQFxbW30cK7-9W_hNLADdYvEkFS-olBPIPNzuQKj8mw-k2Pfp78CotwQDuYlKmreOQVmUCWV5x3-hJXfQFBBp-4Vp9GFsSn4Njw1DUU3k8YkPBifM9_rri8DcCzxq18dFXHrKWrqv6VHDsg-M377Gz5Fc2lmdfS1Hm8xpsq-QEUKT18o8YXPo18BMT4D5qMUuqgZVW87zLm_BHeK_-OEUANjPGtOliLHwL7_st3JE8Ggzk8svfSyn3eK9E2HA8LZBphnGQ7l9IsRhFoxLRMSKNDXof5CKLsknWzJAACwuysIak8IfJS0-reoRTF_3ooBMltA4lyawniNUqKSuvXolheOnYjNTDZnjP0OOG0R5sphQ0lV11VA0dn_0KgO9HLAE4u-lSU10XV_e6bUTBHh-_rpGQOa2fY_EE5rvr1wEqxTXOioJVtsw-leaUvuDbVfPHBqdkgqEjbmGXO0Bi7aZ7K125NcIJFGoWlH2W2PCCgYZ7ZqzZI5-llioVSAZyFgl4VRkUnCbqolKE8Ytfrp0f0TUCgm16S9fxdu6U1zA9zJ381xheZe4Haz_rcZdOlf6Lf7jmjIs2_tLL8e6I3Z6Kz61xCEDiMh7bwBpa-L7sE_vmil3Nan0RmIOqLrwaDCRWyAZXy12ba65S9P-G2DePw6MSSuplyoHTIu0c3U0G8jsPyNTD_0CsbYBRIz3CHTgbvWtPs9q7HQH9RoaUTaW3P7SruhG2CIRf1pypjVD0oU1g1sBClds5kxLAqrtu8yefkz75wiY3USKNkZIC4CGOuo1PeGqDwKi_aExYpmT87EchRjd3kv_0JSJs_wdtv0P15_pW73h8781SqqjNPZ-bFfsUbcz6rmtATz8qYMZD3d6nV7ZIAQqzDGzI6iAb18CDHQHf8xeZnGNCdENAVhr51i9J4o5sK4Lq856_AG2sCfp8KNyrCS3qFlQVdW0lpf92XmcuKHWRnSwC1Vnvx6Rlsv_VNB0lto9lUKhX_hgeAG9rJTvO2r1iwF2vVxTDSyE3KL4IzRVKmraArqmQWyHMyr9dc16lgZcT5x19ZoTRIPZe7MJ7c8HQzpBB0mQRYh0rAKkVjJH_2PqAfgiaI2PvcEDx8CEQSnUBzTf-Ath-VgZJxsoP864wh6aGmT_AWeCfubYtTNDhvvhUR7Z_URFwmdgV1xj_YSdZtvjh68gDry00mfsOLs79OZrR2XO_6_MSH18mfUJyRIbXL1Bg1NOE7ytZoOjodgrj4sOigQM_f-uQBqDX_oELemT1hqJJMXyg3oBBrKTx2m61bDOidbg2IcG61ZTYprUkQf4jnrgkM2Rm6KSqRrU3eW4mj6r6dcRgruwaH-PJPjsJkKa6tEnFbAla56fb3F5fLDu-h5P3ihSg5hEfL7XvZY__MgOcolW5csbXA3BVXYyoEcVHIj66AxqZtwNpFoxydM_cpk1yqjLh1Un8A-Wqgl7v6IK4SZgzCAB6zKbQ5h_Qp6-jhV6xSMrgfi1VMkCXhnu2Blhv_2-8ehFPpMAKgGQTl7o5UIrs1RZd78m4CP5X2CpPvUPjvpl1M6bwHHXDPJpwAmvpHmo4mB64c1egqSsA_y8ayk-aUJdE8syH3r3gNF91ZGSB0L-m3ENE0y710oQ1rQR-daGFjZS5tZ-50wrAvNkq9M-rlyyP-7Ft4zx8m9809OG6eCNoostwlBFgKMdBQoREU_dn2clSOlipJrZNXJtowQlDJHMxwU2I1tq4Yds4bJ_Fa6ylHDnpInbaa19J2nAFpveuChD60z6nG8D5Us9TUcFyFP-LFvnpeV67l7GTiqPQj2JD1H-QooEdIXRJwD15jZ5DeymvUfcTtbET8CTMdTzGc7aEsVw4FDtge_B1f3x_lYYSFHVN1WXr_Jl3zIz6ISF4NrUXgoxrWYdB3ElF9t8d-tpRTjEJtkbSW6cCCeRkjeSN2pmiP3FjOjQ4e-tSOi3OdqN1_Es9mkLuzWUA3IHP1GURL8ET46hrD5Vo7D744ga-u52myaSNj9kysLbQejTLTOF-GH7kwuqIKIfssbN84Q-YtFRnw_I4zLTwMMYi0SbMfKMKrBWtBW4tZwlwojo5SVqvz_d0aa1CikuCMdOSvO8lGR7sgkAgMhwxhL6ioE8YqqnjU3P1MpRHPAfKEgg_U\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"13\",\"childrenordependants\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6804d3e94a0dd6-05648254','','','2025-04-20 11:01:38','2025-04-20 11:01:38','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42966',0,'cd-form-entry','',0),(42967,0,'2025-04-20 17:19:48','2025-04-20 17:19:48','{\"firstname\":\"Avalyn\",\"lastname\":\"Williams\",\"email\":\"avalynwill@gmail.com\",\"contactnumber\":\"8765765708\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7I5ScxoWxz7AJABSN9srjwnqOvnJGhftOq4t7w8khTUKjZ0bwGPaAOREy1vpDPfNqyCZgjFgEVRAC9wPH8qtXStgHlpC-6UVOcDcd-O6Q0DTgzk6-UHLEkxDsNBL9j4DwpzJg0TdY94jVVJgoxMSjQyAJAt4DDYfyjHO5Rz8fmDTLFdRK8n9lnBU3WV7gCDGS8mvD7hQHu-yVTUrS4XMz0Ce4WgFnVORP-Xg3QQgWf6iz0puOQzg7tALmP3ZbWAMTOgb8MLansvwzB0ihzYf7TzkQCTxozT9_AUQJS5ev8oUtSqsf-Kmt4hUuOp4Ib573R5ApyqZh9s-FfEsdaMcKoTCn70xbjuBBFP_PDsV9HSZ_HJ8jntI1YMN9f1N-oVvvWpWxOuxv5Q3vqnrPXtCwX6eDuwZ8S3TxiEFpkFkkm2W_3ZCqKmcEaqODPInirtcu7ekoXM-aWFf0DCsxYpwj7Xh-mdaxaTeyTlHh1_i2Nt4H2pOq1ymvF_cXX4NQkS-CJrMkyJrftSTDoC_n_z10pPuEPHCBRUImUgOott8xPVTu1bYGG7eceCPDYT-i9EXbBUlPKqd8emtoxRPyQG5aq-8hs2FyTx2m0S8g24iiLMaoVYmqvsXxFLGQ3roTMO55zkww7BNX3cRr-ReeHpcrydDO5rBpq41qMFF1U4rGO1f4Hggi3ioYJSAe9BUehWp3IJHKhGYoxjDCkCw4OWfdZbHu9ZkSGAkhbdcL0oWr2ZhJ3N0Uj_IUlEPmlT_sq2PAUkmSVMjhnCBjdk4tNl4z2UMfVLpWbIK7KjI3NrExBSHbJZefRnwSEm84Ig-ZQeqO-wj9PQNXKvC7iol9XVguZ2JS5kJmpOvKv1IZxUv5cFzC2tY7EfpHxXQq-C0SOJJdYt4KrvC98wPKq6LfXET3PuL_oPA2cnsDfgESgSS2zUGHDNhjr-MRbAk62_goGCp1h2BRn6gtjCXecetgaivZgSc71sS2fSiV8dOKdMAY6Qc-N5H4Qra7MfdrggU0_dS8WzcFWxDHg-gFaY-W6CqibUC-r0vA2PifcrUVsGRRAGv33kP7oObEJUCz3I9SqyDV1qR1Imgvt61dgT2WQmSKPNkM7EYP43Aq5xw4oaPSAIXVRZpUI1JWvWCk5rJz44Fqxta8DArcPjJnW9rKXc5skyQ90GZ_BXKb0Sj4v3m6oX-UeD9XnsLaOVY6gPq6AltROG2bhA2fSMWo5MgkwIUKfitieTZn0JO1LrUETVUc4l6hz0m6ifmsnzOh0bMdJf5mXP7-8egN3WyvNjEc96MxAnZ-cUrNxSkfjvMK-_MEjEd8hnj0q6To4t8D8r5gjy3zJ4OqWSZ6uPR-KK7HvuOUJXWA2Q7HMxpDJ8zQYC4lKhNtdfW2101Q4gUDrg0re_CTSpz5hwl5aX73zrgmCkurUD4U_aoEf6Pqbot77W9DVZMDwOTJRGNZCji7x_dzFFscFMOOLSTCucp4Ld3vb-2R7t4JfDetglO2vKqzOPrI1aSQegH8PJ9tXcbuzEqHJEjtfHsDqGaRFIdhEkZD96ztzJXx7cjrJNMQx-PAbH91m-dq15dpR3uqL8aPqR8R8wA3eCpepi_zCjo8jGBnnV8yuc7VeOZSmmjqQboxn0CH6WX0m_GCCnfXJt2bOw6_4sEWBke89AgDc6bVRpKgpNnwOKySiU1jM472CUvUETQLa1dDzzaFplgdtfiDRWEZgLuI30S_5uYcBKPKbQuSEfYTV8kkFWB6sbe_fK6wjzyV0foSDCCVeoTy_yjZYrgxU3K5R817mRFqPeETX_EX06QH9s-Eukwv-P5H1_sKKI8C1MajbEghxtSgfb7SCDN6vk2LUg0ToS8K4TRmx1AsZeWNnemoFH3V1x1VfarsU6-HY6q7iTSaxMJvLSERETfrOantcPyPXVs9FaO0_o5YlKgIOiAHSpGzur3CoF7Zt2J7LkzkISHwE8afWgtNz6YmyXNN2uClJG8-wFLostDuaZZ0v7uQoSw8bPiLTI4BtXwY8SA1PKS6AzO2s9RX3eJlqVDqNIwjkuJPlMGe2oe9yR0Okvvw6fQMqfz5LghKpWH1glSfm0N38TOki9oLixaX_gqTRyaZmW0X0J1EUxzBxkJeQB_ZeGrgypeHSvG2lISDZzGwYe8IfRaA4Tax4xEip2l1vM565BVheI6xvG-i3c54y-PU-lFzymIiIpM7tCWxpBm4YB_dEkKMnohD1400DVpjCQBJMGLkGVMDhP3ep4mGYBNVgTdw_d2VRRnCBLuZn49PUMuMUZ3Q0A-gvNsYac4NVGcEanVK7EaDAN3bnCOEVjv_AGWV9SvCfqtxmn3wcIciwYrU\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68052c59401815-32409662','','','2025-04-20 17:19:48','2025-04-20 17:19:48','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42967',0,'cd-form-entry','',0),(42968,0,'2025-04-21 10:58:52','0000-00-00 00:00:00','{\"firstname\":\"Maria\",\"lastname\":\"Nolan\",\"email\":\"mariacalvert@btinternet.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vv5qgxgPr7FEX1gLak9l7ZR&amp;gclid=EAIaIQobChMItprT9vvojAMVTKVQBh2y4gpYEAAYASAAEgLD5fD_BwE\",\"recaptcha_token\":\"03AFcWeA42WSLe0bvg0t_R-XXfmGU6MXO6bXjg1Q_DacremTS0zjey_6JSS8n4JWGhizFHKVxOY00gAY-s2gVlBgSxeYBOVEBacaJRm-h29l2yZg0A5YWVB6bfiXJxnp9_wGyowk_MurUIfRQp14-dbCyLe5UV5UP6eF5CeW6rMV2BWbUpuKI0FwE5zqSAgts3EV-ofsSbvnw4ST2AaWaAgUUxFvfiTuMfA69jBWYG8RSDPH3fuI53ZUToL28iwq6tdp2z6-dOMKjgOMgFAfH3jY-28kPXCd6n7dVKNfNaMr6iZ2KqfV6wKS9nZmSoOS3fYdyZlaxS1Z69_rHidn7G6mixXRy8cwKSvbocdpznseRRTDbIjjtBeUt9zTF8EXWMjNarU21AcguZfJl3aHOymtlb7tfCFjD6eCmjwlwg8gj6DVYGuoYDJvXAB2_E7adcaC0_HFGpLoKayLTW-INPUxWDafHnDrruh8CtuUIPZcyQCmfr0ALob_2iVV1fnalw3ES6ULwxKVuVkM2KY7doXSTXxp2U6CSzPSLHcKiKMSuyCooFzZ31exNLPDP4X5SNn5gxurysCgqx-tu0KtLYvGdk1PSb_zmc8kp_XdyfXZQazNfm4tixeTex0wHqMQ-_Af7OSsPzvde3fhfppbVKccArliXTL0o_eZ-rv3g91yLLa3Ow2zgJnwedtztueklIHvgkjFUOG9sZy74-pKHUg61fUsSDxvEXMflk1pLbo35seyM8flh9VQEAHE9mALyBe8yfCLhNBIGtvGaDk3v8BfgsLJOjoyI8LsVaRRwNUsBo9ws45M9qdDdrhYfdegWA8uT3O4yw08rkGj2ckNMdDy_PpOvUv61QnZkXuzKNjD1mujWQOzohDVYIWpBBeh3mBBmxiQs_j7rcHI4daYZUqg7vW3gxAjB9Cqk3BPMScX3ysQVM0iOYUo-WjQOX2Vyu5dLTRn_xSxLWiI7s1bxMlKATTKSo2OU4nJJbV4BR_O0FsAHrL28H5WIZBNlZSL96aH6Hwp0QNuldyS9HU4sGPlJTdsjVaqEM2S8XtBWZ7_ILdSH2quSS5idaPquA8wkr9SSP3KOsVRU_FAS5tdFuOgAnwCQ_h9Rib78_hgxB4LurAFUM2WFtvLQ5Lh9r6e791prBYRlqLiTss4BMP6m1TQ8vE8iejNw3viErfQ2l9qRk9FSNMZ6gIPe3R_3_8VrO6NCayC8O8npRhp3UxYf9Ug1COxwGhtcNP-u8s51hpiG1k4EeUyCCdl6CxWV5wtfXEtf4nUaIR4ENLn81SIL3kLw3hmvmR66lVZ9F7VZ7QTldJgcjINXt01RftRmn1Juhla9vdl2QAunp9NvDZTKrzDyNh_LisYb_xQBN4J6t4goA8UGTxUmy3mfFtbmV4SbYcov4YkyTRqhOoy-m-wsaneYgd6tE6Hobv99b5BzYR-VpEhGQpmA5IP5N0xkYRhD4Ng3Yir8rtzBlfCeKO8zniOIVNW__3Z5YU5gNnXreN-dSrKpYNixs0sJ-VCihmf7-PRqNxF7BndRK28GhTwW56D-9Dt9v9nN4nJeeGuwmi6VvJagoPd9YVSCcmgsFrt7xJGUugqKdNWVwCyKV75Vc2xZLhD6Z3RjZxMp6--kMyh3k3yiLGIhxFPnNoyPz8fR4umMR6L1NCdJEMwShybMfpGgizj-k3SrxNhStKuScgpEiPs05LW2ztpQg3Jm8K-0WHb9eAqou_Aqd4CZUkv0EV2RfpiQA0d0HQYk9ntFsFFtS1AQnTJEFqVGfmtIVgILGY-ZKY4KttTH1-VtIjk1ycTzyOkOjHoleZM9jGp5KnKRqJTKUsqhXW3qV29oemOm8COuUA5uvg-yDQ5L6w0UVZV8BGXzb5kwG5by3J7mI93fBOwlD2cSzTLAu7XMlasFdXgYe4am2tDiKSJyd-SXTI4U_Oar2cfX77CsKG0CJMDY-s-tycYY1TsQShEpUA-FDEKxGIvoh390WnwDPhEcdqoBEMbbfkvhLW_lcKs-O702w7gqB2GzQFHhbn6ARfZaWRVrLr8Oj-tJF2_3h9FSXf2VAvycOGt6rhMxxVAFe7_xoA4VInXkJqbkzfsKP9eLa_46SWHsy7Uxu3aHFPf_WYDZHD86GrUu30jPzIvjB9ZdLcj8p4J0Um2PC8djlecPV7AhALsOlyEHw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-680624ec5a6410-61732651','','','2025-04-21 10:58:52','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42968',0,'cd-form-entry','',0),(42969,0,'2025-04-21 18:03:19','2025-04-21 18:03:19','{\"firstname\":\"Vytaute\",\"lastname\":\"Urbonaite\",\"email\":\"vytaute1026@gmail.com\",\"contactnumber\":\"+37067420828\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7VYK-vffRWq5PD-3A-N_k4bxHD_H5WD_PTN6Fesyph-TupJM6tgVSh5uTgmYi7HUKrwnLJwHmakJ3-MCp2xEbMggT8eLcUnEr2hNrd_kvaZfirkZz9-o03TbuaTfFqYn_RUHeH31kXtOCDQbUwUnZNq2HWbHVhXInDN0EPYfAzjtiz22djyXVPMd4LAeaxjOVRXe7RYYo7hBgr54bUSqtl1R_MSTF66x1azbZXOYRV1unlca0FPmUh9PzsmwOIwXU5o7r_6CLY3BjupVVEjOgILlU50N-Xb8HS2G7T5aczeBZZ_OHSUiCXaFUtbt_aBT2Ul8OE4K5aRy4niUrm7uB23ODObgTGsFz3lCv_m78H8hOxKl_7vgEV7ABvXcT9pIw3_k-ZTMtzbkeatLRrxzJY88tgw9Mnp-HvxlmNRWZuQzoLvkqLtkzvKJgXScdn8djC-l7-o3uaf7ZiOllbYXsizdzfZvArCbJ5uBnz6mrpY0XlqP6TWdeyR1dGICIrmIQTde8eg4bTMLi8444QBmVpncQlj_lNMY6todmp_1pKdL3a496XR3oyCvZkuSDYAQ_p9cWDARv6vR_PIkOQ13SmQjPQ57dOpH2BSxAqSQUbtZJDpWPaaYcfyvkTMOiu1W5JuVNbHReYShlm7rzwDp9Rrpd2ak1UeHI2rz_-jsfGeJiPH_s5MGf1e3APLDxaYO7fJcE4MZDylbxpXbJ31WMy14RC9IuZ--QuGzwXt7qVoRLUAHxi7OfN79ZjGU-KgDlKxJBgDCB4b43DMym5ml95sy5JZfxphH04wrcqN9DWYEZVZiOuKveq1Nco_zeN7ucgja2x_XO4nGIwFB8NSndCA2eoCgHBgSJ3HsCWxv2A74aazRbJ61Zyz0Qe0oIC_HbYQnu_MDceQPv_sy3HQe2xj2priLUpzo8WL4uijP9wYUo_dK1sPfNr9t2t1EOTibiexsjIMtVw-IrFrr9FiYlCqXhXv4pROtf2FslD7tEy_-c_n23yurHE7exXMzvlMJ-cfPHeNBXSC7g4bnj4nsWoBXGjJ_stg8z1CbOSJ4_CFoD15YPZrWnNa3JGrtA-9SylhIC2QIbceMy7Ar9ySmu-W_qjcYwISkaqtCveKV_cmnCY9wEfGvBO4sw4Hk9hd9kjF_Fy6U0dtHjpBijFm2HkjD-6ll8YUMTUi2a1FeNZ4W0cq7wXpab9mshRh0IG2ZVvtJ5qmpc40VtbNVCWu3GUrICoTd1uNvGG0FDa9o1LpU3tQu5K00Ven0AvLSRiPwShYATZKztniTJRk9XDBwz8xrRV1qpzr5dvyz1jvNn7TNiwjVq9GDl4bzxfiPxSYtTpVLE-UQvDSGNWRKE1CqFmYFlE91iKOxhkXn4G_Wuryawu3l8b0KbdT1sd5IQ3FgttWYX98af5C6wc9j6k9I6rTGfs9Wl7smC1C7RwJkPQk9Nhugb5DIJ_CBYkL36LuUAVXCkRPx38MnolMufxOg1dRbxwvjcVjNpfAiDRV3Srg4QL38Es2nYdurP7ZjwrxXB73-HNewcbc_Y_oxTabMkscPOm-BFvYmWzp9OFmwmxI_wmim1eOrUCBFaxBy4PzqEBkpXjQZTLvZi2uUdczw_Hin15augeklxtZqtPdweJy-_5cylPlq88pc7js2ciKSLgM1EuPHlG2uRCChp8ohnrx_jrqg-lNqLijcu-t6ApgekLScHwaCjXfHbYg-scwrU9Fz2U3QkB4JXGhKmkWnNMJcWvqqZYxaGkTJKjj17713CSK_VFfwUfIgHfV65Sw71DE0hP6tCoVCXccs0ptcufcC2ys4gM-ImQGXth9Lt21gS788C-Ua-4OXX04UKZPOE4ngwxTCME77iaZj-TUDRazP6zvgIrZWNSkEVwmpZk3GNBzDRSqB-H8Had8MRxjZvr_w2XkExIp5sI_OBlgSY6Agt5ofwRJ_-fnevZaXudCtRzWcAj9JHKsoUimCE20NDhxom36KE-Od92WKWYs8Fqj8X0PNTn-709xTod3iJFjWeCE1eCdYqe3Ec9wZR0k313_Wc-u9vfrOM0-Lwe3rhw1KwLUFInmXiDwmIk_vaV4p6mbjJmWCKI-IYXFfLwpnjN23nJlP6tASSyEXpOzujucW4Rbv5JsLwf75gzm5nIuVC-CPlX9-SlFxKDgxGyWYex2-7yawRIrAeZdCKJbgpl1BX6SA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6806884cf292a1-37783591','','','2025-04-21 18:03:19','2025-04-21 18:03:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42969',0,'cd-form-entry','',0),(42970,0,'2025-04-21 18:07:36','2025-04-21 18:07:36','{\"firstname\":\"Vytaute\",\"lastname\":\"Urbonaite\",\"email\":\"vytaute1026@gmail.com\",\"contactnumber\":\"+37067420828\",\"jobtitle\":\"Personal trainer - physiotherapist\",\"organisation\":\"Impuls gym / lemon gym\",\"country\":\"Lithuania\",\"pageid\":\"42536\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7b7Gr9SyDffpnm33TkwUWZ8E5YNSe4DpMdHyR9cogYMzfQnaznXP26mAQrmzHz-NFVap7t3MXvAMCuuZeQ_OGp0u5t7m-vI2dINJvUfkTINVCq1iYdMdLL7-dxVnfrWD9lNeLQgFq7fSkhQff38zo1wImK0DZQ1Y2gPyRRIdVqeisV1_m95VFTXOO87DCKuIELOxWwaJ5DO8lYxvIGOkibFK_W0xYISifQ3tORwtI2268DSKuAbwfba5-DfqyAGs4s1xwBa69QuJULGBxbe9GJGuhosiKvJo_DkBjGfNMMCg0qzPlpGCFSVGM5s2sCU1WqO7tBFe4Mnf92l7rEDtuBrTOphpu8ELBo6dtXz4CBotMV99TQDofayo_cyNNG2ciQ9OpQQ65U6yPTHtm48mFgGgFNJsV4dj3-e51OZifc3VNIxEBPHCPelN-zOftyBdzXQi6HmrgA2lR8f3tkpFS-emElKkyx2kSA1kLPcu4gyGzlK_JesvS36uZZGH9VfdSIw2o9yLolie_zsFf76nLpOhYbx88ovOK6IMgTTEB8Cfd6YV6R32sgL_FU08pB1vQNcOCKFDTPaVMg8U-ZJnfRXrhxR1xGvsFQ2OtEzquRsSbx4r4Bc1DejaSapw9UzyI-ZIBYSB-WQPaL7Gzs8II8n1SN3a5t73zO_0IWn0om0Gx2VSPMxyo3GbvSIYgYL2fVXjkh-890Td7PsTl1E-8MtGpyPExTX9jRB_ngmJMFfEzRiwlZfzK1GPfYlRh2IJBodFTblGpg_geTkERLOwJ67FmgWIMtnM_BURPy8jqjFibQu-QrsMy_IAjrMwrPjbstVkOtojCFS_zbVCo0u_0G2NVWqLcq4SJTd5pt2ziSml8I04BDZc-ZkoqoFcw8p2tlbZ7-Tf6t85W5zNkhNmHUf_rsWJ2Jc9FLY6GHyU4rx2HA9bk7vWGdl12ZvH8Gw62Pxr0hatc5tdg0pqJ-7pLNNc2dXj0UJ0w2VqikS8SAvZk9Qr4Gg0o9yWG2Za5AGbcimcb3-RvFT7CgRIvr__OaDD1EcPHnd64Bxukx3a7gXt7LM16Dpune7OsorkdMeGvcMRhbF_BqtD9DHfgwUMtE2Zn2WsaanJ7ASLF9XS8El63aWLQZrH7_x-CAOa9Z_qYc9MYm_3my0YHu3u1MjgCXss-ge0GqgG82bgE6SGvq4LqEqvIlxPBp1eXsEwq8CzowkIQlqq5_ZXZ3m3QCAXKfwaLsG07K2aXIIvClpFGwsaLSgf7P6taaMZ1RWK7Uj0lzd_SCEXeLasQ4QBOfqWsvpRx3ED4Yn8ie8i7Oy2b5KMd3Z1WgBlXMOdpDN6k7C-rczBkTkA4KsCsQeYJncx9ysKY3gvqD1DcLfQrawhmIppwmCBlkiHCTE2X2ZHbhEKExYNMD-ELFb6iR8MkkC6yKrnGcxF7-TCo1_8AobN1kD_ExuoH1izYylUlXFF7YXh06hEhQOdOX6dOlBkESbz8jo8tj_27pjBaa-mcTni4e9QDu6GivtYqLD7p2vhEq4A-Mgymu3NX-v49DQpYf6pYVTedI57uqbK1XdF3xIJajMtWIvme-I8Az6WzvtiIF4Cq4EtC66Wqhod9JLRPFHXURLt_OnuXOBq2ROAMzDfcrvdY5t_BaRBSjLsspIMAZTlvqV7jEym-MTQQto45dSRyTvrdzAS09dxDfUCbT0L-lBK29C40AB9fjBxNVg7Hwgj0_SIdBScpMjm_m2-ObLb_AiBrtrq70yRO4YX5OLP3Cgwh6I2g6oGPInR4F6HNzbVcpn4sn2LKZfnujHjt09rO2ufRWpoiulkZNQOI6FrdyvwgFhqPoTjLZcqxIUsy1SciEBHVeb_uo6gWSyN5KzdaRJ882Im-nuPfKlN54o6TSsIdsWBtbwCkIPA8z0CeuGvLHYYrPUcjq7MmmWxDvptToCXKc9TD-DY994oqUp5Obdkhm7ZTJf-g8GrF3f6nJ8N2-mDXo5LEFLOGrlD4ULTkRX545-CsMbII6D9EFGxSsX55UmoXCNWy1myENkS0m7ooAo93i057mc8wrPCe3cbKSWJPdoArYqBfaNZ1bqwqA9lxIefzoip25Ey1lEnvBYawDrt8A4xFa3NWG4vJ6MrITwPJTRZ9-nhAH6MGPrMKMu2BljSgWkLeFdnp0HHfMGD6gzwau\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_42449\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - International Lead Gen - March 2025 - EP','','publish','closed','closed','','cd-form-entry-6806894dd77cf1-12693641','','','2025-04-21 18:07:36','2025-04-21 18:07:36','',42449,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42970',0,'cd-form-entry','',0),(42971,0,'2025-04-21 22:01:40','2025-04-21 22:01:40','{\"firstname\":\"Katharine\",\"lastname\":\"Simpson\",\"email\":\"kt.simpson2@googlemail.com\",\"contactnumber\":\"07901626532\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7QoDxJW3OyrxhPFnXVZsSTPpYRowjN11UP9_IxdHTX3m0dCnPhmTTB1fnCpbI-MsqwTyXRkcCfNYeXnLkm3o22GGGZzllhebKgaUW6JqYHPkFHnrYl_BnK4ciuLdM91ou9hzIy504-s1yW1TcjYehP9rIW5DZY2nCOXLk2DqU4G82NncylRgC5dWycm_C40muYKv4HVQqrCsZ3pQrcZxRYKUleXBg4JQ_kWAAjSjR2P5B32IjLQMfdFA4IfFibzXKCFVAJ9laK6dRYhWI-qPpVCAzdN4WXKkrUTZzO-_-HW5OTUiPO44jVG_i1qNWl5J67-m4qkqnHpk3w41auAokWX77xQNT1c--IQSleBkefJaLB5KbLgThmI33xSWmKUiXGO3hKOn8oQuMUq7xwuVq5qI_qh2f40xc2B-Mf78M5oYGxLmRy0OaDiym8cfIaktkIxK-2DBSORysV7hb3A1BEiKzYfjryUFJ_J81kUTQ-MyLskXMbPfNYd8WhB6hkmbSODBJhJZgYU2fZdLXMoMAoz7HSi54J_7Br_ulozfm-2Gg04oxP8s55bNAsYvxHOAJuycWXYr5lP7iJn2xUuanqnvQQCGPvfMjW-uK3ZcnAF2vBSg1p8VDM3TAepn_F1krzonFCyJKe_0Iz6SUIxn6Z_JxRFF6OUNu_zLJmd01GRKntdPXDUCpyBydKjJrBHMmyjUq2ibg3K3xj-Bl_nTYJhVevGBCqNk6b7jV-yUq5ZXTfeQb2Te2QInMzS8uMN8IzsX0nr6gv4nVt2a6MmtM0kWRbjiuZSVIj47Kt-GQRbH-FZby-J5_Ms3qsM6JNHfS86uraR0X35CHeRBkhtgxdqD0CquxYT64WSTKFbkYdWXzEzmWL-g9dv3SNceFTRYocGR4r-ymyI6fcjz2bxWVHplL5HMTL0FENYa5yGbA8GrmXjqVPCsRSYK8OZKJq5eSGOetfTPxsenEN4kFcDvLaZYj3AEZSFwcWtvNsObCe0YvSbO7Sqc41uuLQABWYC3vWm9NcoxVOtW_o7O__se97OdCG0SjySP_x6FhEhJLNzQGe7rXjoP2ZZA7uHi0VVMOoHZpau55m0G58xxqRFhSLdVTfvSiAu-RTZIMAcOS5iyR07iQIIO5Y0N4nkgBA_BjjNli_BDHiwomdO_SITf0vQY6YDkd527UOgMGX1zzUPPVBainefWTMxGvTwD4fl7OFp2c7NTQByz0AkmD-3mFvHqw77aEi_gv-kjH0XvikWBGpLuEd-hdLwK7vyUec_ViBlp2jlRgHsBpBbbCB0NSYNLxi6Uprb3uJRBGXQgSCaQHXUACBVUyXrevZtsGna8_ppjMuSUCFF5s7SkDshZgykcR17VUZoj7ZpTfobscrwumvt0QkchOjfmvYNryonD6AwO9fifazCfBaS-me_VQzl13_Smg7zjWoXJz0Zc24LtxeGtNMOIWF5_zz5o3vq_bjJob-KfeCUYJ0JFx_ijs-53H7CPW0h92fk3sToO-1Kd_amYFuqfKywhwZT2I376g2K7HR587nAR-u4m7ELotbHGXkMQvLXaGnSoSGUL4GinvDUpVimmxZZmJAcKcc0EoJ_L0Ykg1fFArR99os4fSw09ngK0qPK1wEhX30VEVH7W56HggmznMsbKtZg9w8Dnsx6Yv8wPS-baIi8uPSaSTvuYwxU2hhKvnDckXGxBTOj1YJq7G8BkuNz8sC60Z70Yf4C93W6hnONUF0n4Jt8zyILCA7u3DplsFdCXwIKdDexM5Tp81sYK4Rl4s2nUdE-obRN99UPlR_qBzeeHoYIvDRREMVBRifOkLMsmLqvYzv6Jrymqdxt97u6tSDgNAcUiYXlOXeaQLZ5-ENRFqB60jZ_WiYoHnI1hamxgn42kk-F4x5uw40kq4jiwDqRpUbWFIDCfMZreYxf0FVxnsmNzj2Vm0m60jExVTWWhit9wX690kFUSSHH9gD_tJN2NB8Z2jKyPOie_I4MMUWp56A2YaFm86z2uHM3329zq-ixXVS6D0e7ktznc2pao5-j544_LRelg0G\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6806c01ebd0a90-80583821','','','2025-04-21 22:01:40','2025-04-21 22:01:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42971',0,'cd-form-entry','',0),(42972,0,'2025-04-22 10:57:31','0000-00-00 00:00:00','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"dave.stead@futurefit.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4E-mjIUrWJcu4vBlf4erFvUkH6gZ106zFXmMvWzMkpQHz63kB5cgdttKc1AVUvIy9hvNC1Tz20cto4uTJJcIBcqFTGh7eIcwVD3na0rKixhZ3GfBFiaPW2f9UcxCTL2Niuau0si1YgY_ocWTrteJOmCi3E-KO3urVuAZp137QM_HghDCdsU2aYpK5RF0lFySvgoAAraL2z654PD6NoK8KwcP9LR6hgbVMu0jX40_V9T3jWLA654fl731ev_tVLnh7-86PALDTfI1pZu77-_Tuv-oqrzouBYuyWkJEJ-HRW6rq80y1RhrSLjTw8nrRA8zvhOD41b1ezkA-CiajERTUv-SAy-TJ1Mkm3yRSLBYqgYKpQQ3c04B4CTRKOs0RaccWEglL41C0te5rSoT9AgKuHig-MuJfqjE4pjtMgUqZnqCdxepaTWx8LG1A3Tokp4T8GHGWnddlZ6_s50BBp6yWp5UHh3Qh6Y9lLoCxeTdxdCjnKVXOaxPbHWwtKsso7qjEYBJ6KvrCU9srn6WMNKvdxe1MfHl5IDgp5OJaXX_3Gdd7JtW59f3nf5WJVIIko55UlRt1lgoRELfI8oLYO9WS-EUmHxJhHc4NfaSaojLwhIWEcU2wxzOm4iJG845Z_DXDkhwMrcRjq81nMZ3T8FUnt_bIn5LG_WPnxZB_XfGO0e8Upy7thmlmFh61cy019NIiRo_ekz-TbWnzg73F7i8VaZ5_wH4iH-CkfJjoqgEV0_aeRtm8o7a0ZHQLUcUIfmvB0W4NM7_uZav21s_N5fGc36U1v0iUW22MkjxvI_F_TmnUKUYw9dLqlNVWs-e9S13iYl42qjv8oj17wQDWknfK-qdql2DhYvHFrFJpZOcyvRV-9E-m9rE35jITidaz1oHquInkopz13HKcjJjrRGt132YLqTtTPrMXTWnorpc8pwORVYSTqc2g7YwiH0npy_oKXO2PZx7kjtgpAR1ko0qk4e4ysrdStaHNcpAaz_TajOgc5-qE1vfBoXHr_z7aFdU39T17INoqkzoGfmDYlvvOt3GMgC11-jeN8BFsBsFtPvTkTZ7UT5UoZAYvH62YGXUm4MhWJsVmr6Sym6FNllCbOHN2zn0vk8Gok1Nec8if3-jKZf-PSZTRmnD-A3tG1nQQtYv_FaGEEiwaDtXFHQu_sIknnoW0eje9OoGwpg75PvFSbxRhuJpvDEJRcYbnqc4F-ngldMDMZ-N27deggmz2u1o0idd3LAorCNRxjcaXHwWKAX8X5-dN1KAeGke8eRI9_KOlojak_KA7NEt8sf81MV-fQMmNUag1gIk3OQS5MieXQ4BdI43opmYGDC1sWKd3L2E0HN6A7tLi8QU-EBY28nK03QNwZbGFLjKt6Nk79OcgANXmNQiagCCp3_wOW8ad_NVTAZJjg7m942BbemIOEbh8eVDXwt4_AfpXALjIBeeRTeubJe14a3VCzL9rPzBik08lYcEAkUGz7OE-d78BAIUkRgPG0T9lfOVp_86Gl_2D1j_vBwiqUlUYmJWLzCp49mc9aMY8GLue-ZqRqJ6p2tfm9BsaacMmZMX8h1oXTJ7skECUq2i9HCF_j0pnSfG11Nl5vvpE1ZMSCEiEmb8pZVtRMQ3uYS9hiP0576P-YKj64HSFlN4fH8gsHnPxNg0IIuQRtH3bEqfPev-C94Le9wEH47Zeae_YT1ondQHHDKJYIlZ4KprTtF3ktYugp8M4FyuC4SKqQ14l3O2_nHrODe58OBKrrTdAogVutDYTf6oLkv1b3yxcLbDJM-eLWxJKxjEttGoloWpeQmyVzUsO9OfRsEtXPhJGOJnvIJmunH1bOBxcFRbSZKC5vY8FuBBr1r-YnXh3vArn2UMSXzO9ExyDJtJ18sEq9tAuxXueKnFPsmhJJatOFTa85Q1wGnjkFZmjkTM5cIY72JzP6GD-O8_gym2LM63tHNLvU0k2z5Y0Oh9p5yfbrvqf9CkpazCcCoYA-uYuXKgquYb25HpPrvGdb_9xQZggxq2MvnrvfEeo22UbmVlxw4Qs1f98vFbaNidEz\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6807761b2ebf94-64626291','','','2025-04-22 10:57:31','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42972',0,'cd-form-entry','',0),(42973,0,'2025-04-22 12:49:09','0000-00-00 00:00:00','{\"firstname\":\"Paula\",\"lastname\":\"Brown\",\"email\":\"peasinapod777@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6u1hvXqrpDxzVIXEcqtvsvTx&amp;gclid=Cj0KCQjw_JzABhC2ARIsAPe3ynrhXGpCYr9ffbwg1V6AWnsoapFmfq5C4mOEBfygXI2evIqGkhTBMfQaAlOLEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5czdHrfPkJgLgZTZ7T-TJVhzW9k_rlTVHZuojxyJjEuEnRbiB1Ic_bZiH7PQQqeOVGhyHol-Iehgfjfnd6YCjjiCiZzGqxP0AukAKsZNcGpRttdXmK44ankcQ8yFrWU7CnpFgCpQAAJ8GnVok55F57wJsTZLgpOnMq9-t7nYamVBSW1OSwPwavLyzN8-FDIBaPyk_ErlsR4Rg4cBVmvsmk3EqVZpwezYDi6mKt2Kw7sWlty2XzFfyuNhi2pj0qxtFQxiVrodWPvny-LOnlFvv5lvMSGpD7ROzZw6fHCRbdK7Z3wA8guD9UqPSYBBRhORZOYkmfvi5Y3NMRRhnotnn3SmvccZ5DncjNKaJVZkQDffBz-Ld0HqRoeEQqJg_Rh_emx3Joha0Whe-TdTEP_zYYjef2TMENiduWaSLro-uvxtRdFA_A9KK3J9cC4i-yAxV0Z5qDhJ48qMke4Yc5IyCjr0o4TDaoH9iXl7ppsS43L8pvpGB7DnevytZpB4Bv4fxilDWkXhGM4Fy7M5OrL6SnWIZFEcR_4NL4yZCKhfhOSDp2QoJFf3Ouag3V4GxBiM6uUDHtuoNq-VZLifPvTjRlnd4OHQESoPTFExeZypMBUbnWyyNaEiKhmAFWUvkCS3lpMl02Inv8_eYLp8syvYCtWNyVzsoTO6U5DvvdwtoF3vqLWHzVTfQEUCUNb1f8WQTAeV3YIFw-gHjtkwkgU-obHxhRnwdaJwC2p8kvYifAsOgYrfF7iRPjnseyiwu19S6P00FNoe2OQb1SASTUIHupKytpmwrcMinDfzjDYvBFdsqFo-45KTeJCQYtIlPEynWHCYF-Rv4cU27NBmgbtxM1PlfV_cjxzIF_9TLUGwsvX_dxkJOjlq2PlTnFd5SzFBXAb8fep_8rMYxeIC8VND9NgOcPfDv1hNJ0XE5w0a5aFbGwOsz7YlibTlLwLux05p7D4Jp_VlIHE1kwZVYm9bQYD4b-CyusEr4XRBXN0SrV1Rg78Ki70sVFRWaXKC_I5vfDS3qJBo7W0iYEbZZyJJwwRm67m9hvmj_xLrTV7qabmwBH9tOrIIKHIa0MrSlgErbC4LCSGitUv8J5DPwQt3TIkcQTE458fD484C3SPtmiGHYs2G-Ss__P5C2xuytufcdokbMq_HXT0qxw--SB97kvfScpBPVZsM6y_VZChO68PNld3MIHD9AHVvRIFi85OnGao_lrsqOVERChYTYCB7UyLIc3SwZ530HF0nIMezAH-UbEFM5s-w-98_b33YcPJEe1pXcpXwmjbpQ2feI93OVc7pr-EHhfIqAa9tMgV-xkKBMtQpnQNTGvCaBO-6Z6rvlMJeto0IHlBrcdmaEgEsVLEB6U23lVT8LlLgmaO3mp6PFU83jrmLAMzR9rXnDPbgg9IS6Uj099zvQvzc7mwkqbH2nNmJ7Sf4qWgi3Sp_FbLrk5eusZ5MsUZIgUlqqKI3MST_M1ODmlmxK9q9-9WqJQksnza3Tc5oGvRd5XHOSKveJk8mBgMtOLhtFE9d0Z3AhdLbp4mI5Zglx0eFY_-mGwpoDHxZ8jWEjhk0y_YutkO3Wf5vaHWRkGJ3BaLop18n2SB8L-U0lr2iiJDt8JYRAcvYiQq4tg-7M0gqcf_jx1ba0nYmfYHNDJQ-f5Ifj-5TLPI7VpjNf8bm1PR7IhjzA_KOl32908S6Eu8NZHLt_l7Nd9L_QZ4KSllFlOfhD7t10nL3wZb_u_0FfFl5Z2YsGmYMuXitgy2NB3RwRNY1ngFkxxkEBGdo5mHNHETaBIYKE3lU1VFQkU6tOjBkoE0QRoT8iaKilrONwqa-7vJ3vzXXeCzauw_mwi-wyr5fLyRpWJX_qNhAmp3G7gbATi66b3ZtUnQFAcHKXa44frLSorKFdT7XgCJhaka3ukU-dUNfs2VVIBMKVHzAs9NegC95qBbuBSeaZALPp3KG03bD9oPHrEqm4HFhZPJM7aicFiiiyD_wQwfg1PVbfpfKvCTQSg1QG-XQfLxD3lIG25giKppRFlphpZN5TIAV-EEvO_VXPPMdiKL7Qmir8bg5X8FeoeXTrFSIMzRfprdugoBsyEGGDDeWCnAwYt7GR9V-XO9VIfUQ3m_6CQbwpyERTzsh_Udn4h9F7EtVZ89eGjYW-EXoscf2KEaz75NJi4Dlcn08Z5LiO0E6A62NDlIHhibTPQbcr5mq7AdwArwhADeH5OUrqVru10JNL8SZCo3avX2ARwCQs7aP2mkt-oOBQXqF98SlhnBbHFlZ47yxxElNIA8dsDK-Z2zXm7RKBVkmZs2kdFvuiYXgREgDThzodi36YxgoEnE5fabdECI7hkcVJqzGRJfiwrS62F9fL6kK2TmSvAIS5KVL_t3czn5Y-H8JrYKSu1Sw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6807904522fe44-39383292','','','2025-04-22 12:49:09','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42973',0,'cd-form-entry','',0),(42974,0,'2025-04-22 14:38:03','0000-00-00 00:00:00','{\"firstname\":\"Zile\",\"lastname\":\"C\",\"email\":\"chuazile@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA6cha8l_XUUQdwtXyvlkUW9-WCKiQGzxXu1O_TGmXhLt67LRt4i26spXrj8s09ZITrSQOulK3cj1Hiqi2Voav7MKXpOjQl7pXStRbgN2aHPSgMxxU3UxNhYxvcSOzAAZT5VyfR3lEVBh-J_kSclH3-nrrvMCsD3Q-CBNAtraDlBFTgRw-4sWuaKnu3QUo1heit_U12PGm4uoMXLUQfyqTcaqMakg7W0PMjpUNPtwzV6OEkXHbvr9ibXhFFMgAX0JBYQuZO9Uxru3q03nVJIOjYN4jMrIlungwpye_mjm1WAG90WqoR9_HiBm-0Un04nS9HS7_gYS6kGk9tNZVd8jaD35BGlbCRM_OmtQtERT5Dg_-Dy5xWqJUxTZlQJkBrAl8rHWIEqLghuRjkxMpqwQcLF05XvRR7AqmiY-2fTRrLg3yJ_CK4YgzU3q_IXRJD5in9G9Gbf_8gbKFcLEHTCnfPcm58u1jQXxgskkcIfoNNEMrrqYJ-9liT_gbk2ee20Pyzq7ZtjHoHBbidUz-Uf67Qp06NZUHLI6mjPi0z3rp7ml5Tdxyn19dmwqZCyPOpzqBzT2nh7UFoHNr87tix-imLN5NkLgdeUiE6OavkQBjz-Caz6sqdwoeI07n42r37woVm66l6KP4Zcih1UlQwhjdtP0aQAP7-_t66H6bvhcmFtosRU4h5nDjj_B6dtqOKP7IZvtGS64Sp4sZ1H1m_KZ2hmOK2v0d1gbkWk717RGm0ENwluLywxYeJIFX0r9vjHBItUX9JPseO0VXU8_2JkB-9c9dspETgJ3lAkq-PZwU4OH9p7zvzjsqe7kdkHRDvmaQG_jcXiMpqmhz-38nOpG4YYCla6QV0h7qzN_WobB3eZmvafbs95sxiCl_d9QRCxmDtrithZr18WepLctiHo9FzKhBLm5r1SskmZRY1f-zsQQ1pmLnpb1hNwMWlyiJydJ1W_QlxfUYZitvh8kNWIKbg8nVB3TDZPldJfh45Uc3HDW-gOVqxcyKLSlsk0aOTSXTWe6a6qi9t8pQZSE1CorNfaMVQJvjaonYrlD3G0zEeIBdkxBJVP4IlqRURdssbjUWRsXQW6ev44FEyxWrNrJb9R5rDLLRyClCUKm-vliC8bLVnFsLmU4rO0mZideT4IhF1vu7ElC41eqJjfCPGBOchpgoanN_MxY65hAifFnPYgWIswG0TFbFjekOD2HBUpKdkdcJUD4wCboyRNmOA7IRw9kVcoxthoIGw4aZWiG3fxvjhXHjDI-iZbiOBL75tggopq1HZ1fU-pw6UBE8kePkkPCMCOioQHuEMruFvx7nc1jH4kwjLtkNS3PGQRWnWLTrHJiqrkDTXY3tCieB05ZMCKE51D_3ftrHps-KOGzKvbmqXnPM_hBiXJ9VgALJuIwLOmQgqmnQKtSRO-aIWr-v-55v1b1HoKeoFktLZcBBvTuMZzqBxwPqKnBVQgO4GGzd_JvnpPo4QNQnyF0v2NSfqg-x0BgsA44F9ts6WzNtYiQXqEHIvWTDdXQDgNId7YNvRWn0kSQtVArgGYrBxiXO3qvIrbB23jDA_w82WuYhq0967UQznDWMVzeDpIatmC1vYygLclMd36x4TNAzwTm_py21dj8o32uxqmTBn20yz2iZrileIQISq1AUVUnHi01th1FY9G-X8nerM1AmXD4nlHWSE5o1g6DZ1aTEWMDXGVmwD8XP2lf-b9ep3fv-Tq0Sl3JlbSGYwcUtCzPn_g4yMHU7B4kPE3w1mET8y_pTa3J0J1aoAu1mpudMT3WGUmiobc8e7VnJ_44SNoLcgtGw76gXvpG0eodZ0uAV9MPDt0kcAQeB8JxHxXeSxeXBi_NmBiis9Aoereq8Fyvac303kI8yM9QWlcy10jzI9WDiLA0VoiQFplXEetrlQ6XXt8IK9-i3TRu3BktrJU6fnOlZEX3__OCYo_d-Mq8g0ZLHsHoR7RvNFAPxFz6CppGy9mGuHU74yud7_tJcw9CRSV08ERGbSDom95tz6_mfHXxZycUFZM8i07hVcuIIL26iewpstjbmLxJCEGT9tA0iQZVoWpQehYzC5xx0SJXofv5R7hB5qs0HiGuwpclIlGv3B-sr-y-_zeISnQTCjhwB1qXvYTHuG8TEog2x2RzD9Y-L7B3183qHnrQoqsnHer-THF8IPISVjCDtkQ34J6yFG22jAvEmhUQEJ1_Aag4ZMEMQkf02LfP0xlUkgcI2hCzXYUrY1XsKG9IEOuT3B9cT3rdvh1GmgOI-aheVM6HmJAjYKYUSpQRJTrGpzmW-o6UVejPs2YAKU82W3WAV7q4dvPK0WaYUYTt_kzn_ySWlXUXE-BMWPkNO22lwREpbTabC5MRqsmY18NnBWm9ftvZApJD_sPXdm2oWHo-XhLxeq0IzRsk-K1EkU\",\"recaptcha_score\":0.6,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6807a9c784edf1-32398075','','','2025-04-22 14:38:03','2025-04-22 14:38:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42974',0,'cd-form-entry','',0),(42975,0,'2025-04-22 20:17:38','0000-00-00 00:00:00','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"dave.stead@futurefit.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6TC7arxliLpkq0sRil7MsYPW7_Ymm70RMk3l6eJBZWGnqb-ns881OBPXGCCNd3ofvjAUinADdnqp2EkU4PVGfkRplGsRvWicbcvoiYhArJbyfjNeaoGRoplO05RVrNmKNoycM_HLOs6XRgUPFWNvJKEEvgSDSvapm0LnyaWB1IRo2Vh-0wvlt1ApZHjXMsA4bt-qFx0AXABJbhJ_zCNxXNwaRpKwgh7_7gehfyuWTnlsOF45sNPcbYE2C7Vp6aCNCozYg0Vv_OCeSFVS9RUbWDkS6sJCx3qB0BtunMBNPb8fDdIg2I0juwrxr7BBWTGT2cBKcmfXKct3Kl5bJ2Nh4O86mFLX4Uh-J3qoJLIU2fVJkAHz8Wvb1Wb0KCWLdnWWvmjsxH7oqE-rvu9YwAvSUPCcB5HOipyHKxj1baR4yRG7zC79amXsDA6OO9CWld3pZxN99WlHbarfXBYzpvsTK7FPudW_Pih8ybxX9pkHAWWsDOC7hRHJo8lzxoZ4EfToLrUkiupOeTwNfvEO4yh4T4dvkwpSd66o-irbQ_-JwkVjS1PHNUgcYwidzGI_8tq1X61JHxh9kaL7F9pNgNA0I2wU4ApcSixvkhZWukW9dZF_g6Xc4RwyXECMRn82VwUwgDn2EiW1GiMb5rhTMsS1J2jN4UXUu8FXKQZUDBPHj0Rn5q5SC5e39TfGTF6S9iPdZqGurmbj4sghnW2EH4eLwYwpeftXgoeZVNBL4Qu2giAPTMHt37tucswVldVx8Usgn67_fthRw7ZTdLP1YT2n9o7wZQYc79RF-vxhGsxjMPIj006KJ0Rq6NDqqz09fQ_Ki24MWMshrCm3AFErCnfnXRoP0K2QAEuVMMrudUN43PDhia1JojdUQMwP6X3senZXAaNJSkhpFFASnX6Ox3AzxGS2W0U8C_9LSlZ8aKztKDTZBOdXz4DtE2bsjV8GnB5R9699zhuDD_AAhH64Vds-nFqiCyFhgAXbWDT_iIR6ypW7eqiecXZO_w73CDIP1ZpvSziWk2t0pFauzf13a9t0l4Xn6BX0Rzfe_U24DA69TUw_yZ8vgeSoCo__z-5GNQrY6Ae7rS2oUPEpoEM2fwrEj2cjnsNj3oAa0kpXn-tvwzYTcp3xhgYBn74uUBEd7pwknEd-MrsJyyy9G5Sq7TbcYKP6u08eih8E4Q51LMMxrKVj_3McXbkduFyXuhk-pxGHtBtqgHBBnwEVpIp_8Scvph8jY_qimso4vUn5pg2TRAWosIcvDEPkstNTC6slejoTwXzTSHzOS_cfzALibbtFyJGgQX_X_6NuDCnjVqEJa0S88lrRCSK1sT3aje1MrnLb52xZbc9wrGC5Cgy2pyXYKbTYQHOnnfUbiKkD8ObtugTciBtYIiBWT8o8PqrnQSwt74KQVo0t_MzdmvmG5ByE1hNwKpw3ytGsgwWKPaSXpExpHkRKAjab9I4dI6VZt016wdFZyQwhpZ6HTDNTrDqctycNMEQdx6holitRFShW0fY-MgSrm0bSeRfxF8s6yN5yzoRclIM4qzYTQWQ1pc4KlaPRNPOLGc92P1BD9xwMSPO1lI9PusFu3p7eDe4L1H5ij2NCBmNHEcD1wctWFshEZb5ilvF2naQLGJePHhOx04RRxLGIHzhpBlPgFSkLVU822a0qgQwxHN6TjPIezVYn7CSCeRLRTVh0WEkEqidTfUHHpOkC0KCf0dLVNs7HMypC7JOGohKIp6ghtkAyPGGXmdr9sgABsPl7jprQauuVsOKEeOttfotdQGygRl5kwarp9syYNXwiJHrHKOwd4BXJCC0u2PKYLa2yG5zca5LmYgfGbKa9cdTOIJaoBljm_207pW97Sp7oU7TX2lcSLIo91weuBfB4ujJQXDo42u8A6pzBNJjltYpkp8F4ZdZfa2GB5HsDONnvx-ozdShqXEWCyBi-3MjIS2tu1fVRSSivX5ecwlwITE3idXQcdUYLTSRAYPcZZEKXMPVzaxvmzyITuZzLSFDfNkTwykHc0eoESEkrfC8ZyOBq8fbTZlRsHM7cYRP1DN\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6807f962a529b8-19875674','','','2025-04-22 20:17:38','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42975',0,'cd-form-entry','',0),(42976,0,'2025-04-22 21:44:36','2025-04-22 21:44:36','{\"firstname\":\"ester\",\"lastname\":\"pasaribu\",\"email\":\"ester@jspo.ac.id\",\"contactnumber\":\"+6281297054300\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6jI6v8b-1dSFNrOUSym-JCJLkxoMJYxymCTOLYwXWd93_f1qPNc4dnKvdrOUNjOeCNhjWlgke6H-oUwpVlu5mKlKW4dZLThbY9WmWy3QEKOCIfHLv_yg3syM75D9dxomxOuD0t_rbNXRPU4LeCxcPGDgNeUEOSNzaWMtuSO0gfgWPxtze3Xs3rtA6Af0FztHEfot0pDynWawN1lyUKxl5NiNxOLdZqZk-yGcvQn2OuiNj3_R7g4PAEmji9F_VOtQFSg3UYSE38-48h9farezMmG0LAUtI7LYtPSCf1lAekEmWcHLRPbFSayPebXGcxXTRG9TcZkHealN6EWOV3YpiDsehNiZmwlwOFmqYDinO3n6QCV33FSOVZAlRAE5AHTmeiaPeiYAA-I-8dW-fSFjT4N22ZgfhxnASdf8u5Tt7xDVBNM1HvrbZkOantoDmYw69orZJ5Gq5NFC8X5USqQou53exRReMhmkKg3KrxiaO1mCe7qZ2qTVi5IKdgL4kdz5W0LCaXapooS4rGWz_o4kAA54JbwSjuBQ4-8Q_mEZZQUvEQNuOv58oTn2jqS7GrAysqUkTtR8YuwsSWvb4oFAyb1swCQrfqZrM_ntZ-OQs2yjllWakvYCzL-RB7jvv1p7HF49rWcKHdVGnonhR2-ZSTAZcIQeDD3O07KXfOAX8m-oVgs70IBpaR2pxA1_O4nDuxdm7-5ZQDFFf1qFYLWIRTg6uS1u27PEVjfRWLR7K510_33q9fDyGm9EwozYTRS_kKrsAFqRz6qveH7d3s7kLZc5E6v7VT2FJHnSOGop0s8_yxseqIuAhdHMCjn2Y7_OozJc3ySnjidHwqJKAcNeK3WSEx6koWN4pbLobJ8t2Z3s75wbQMRRQdxCOmdVIOmkExP9FjQ1R4bCADJdOW-aptUGxCWG8ZvFcGI1KPQOPfii86KfZw6nFykr5vemJYIEjUyAO9A_wskKi98Pg5dyA0NVi4QRs8G7eMxPECvmicuKWWbv1PoTdVUd42DffTQsJOaimSpn00qwmzEW5ANA0WkoJe62L-EJBDBa_SHm5kBKmSxirc8eZ3I4E4THEovG8HJ8g1467myKFN7szeAT8BodL_AxVIDWbr3lh_1HjY9OCbLGOEgYzOozp8EJJQAV2ihFa15GIQrRNa4Gl4baNdb7aS3sB8dTdnATa8K9uuX1iGg67JLuw0i_9lTXpU59SSRlomcuDo4EVyys212BYsGHqClRFOYmeZQ1wWAy8qZBGeuvCfSW9_LOpKIEhBwo7DkTZg-b0irJFxP0vA200XV3CsO_qlIOMAmmBCJwb0q268_aTaNB1f3KeRyc8rC3efzHy9g0cjJM6eAcIHKcKzm11xuqY8FOMqyPVb0WxCWZX6b3WsaHBxTn2p8YXE6SsGJSvWNR5gPYcelpvYxl8tV31PLIl19piFWb0M4gkYFrV9uTO39bJ_pTCAPvywgCEU1S5kXbPP8WBJjCb6MUFK5-G5SWKu1lpddc2lDZ8bwrU5NtK6TdRiWpy3qdHwNZrXxK86StWq004WQ7pqpDvAvqdQiwtFvIuE4VgX4wKYjVJNhRefZmwAl-cWFagkO55X01czgohoMd4KneLcYuxeiE5o9U8u2T_sF7FX0SEQkk7u3eUl4vvlPT19xTo8rrtoQu-ZIB0c3ScrU_bLbv2sbunDnV8rUrLabgfauYnmWIU8ZmVtmu4xvGTztnwQ2PnqIulsHWLmqBblDH66cEKds5etbGiKCEPtdZxcvk0ysfrOj0qGLcwAjJqvQqI5Eror4Y1RuuWG-BiCVDVR8Y7jPfpHXLLGpsNROUF8tQY9NEquag8G5nZD-mwPn8RiJhR35gpuH0-Eov1T4KxER7eOP4u1rYiPEghIc0sMTgDr2YY6uquv6rL5jn7cjYGHdUmmhzKppUZ3h9J8Sk8Cz5Gf-hwUK3ECTY1mihaDPSlJOyH6gJ02bNfPnKRFSXrmYHbseLaRCvp38l07tP72g0YAifYs9AoADDDr9tFVhUZs2pMWyPeK94pP5uUEKPMe_NsWb3OjkExrci8abiaFL3rCDuqtGXTbjl9LyhVlmmL4NNRVY8-OiKShDTGwGxrflY0XUlemIKBt7LJhMVc5fgbVdHt9QLh64eBddn_7zXyLr9j0IEWUzKn4OQrTDOzM3AlWiHoJM3Q2mhrrEO2-uIvOuhF9ICLU0vhMh2jpmaFEfznJpf2QPkzHsqJuIyumf3kqtXG-tPV3qNTsBDQMHfnO5t0eGNjzZerxviay1QWgLigt8XfR_5zaPjEFRIWlZYrVJufIjFM53sNA-4sW3-oD6sT941MS1bigtWTUOjB6Gxfac8WU0xi0mHgmnPsh7V69adYG\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68080d9f4b19f2-67866395','','','2025-04-22 21:44:36','2025-04-22 21:44:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42976',0,'cd-form-entry','',0),(42977,0,'2025-04-23 06:23:41','0000-00-00 00:00:00','{\"firstname\":\"Manu\",\"lastname\":\"Kumar\",\"email\":\"mkcrick.1972@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5F2nZvHVt5uXk0laV-YGPMgkDUuJczOtYfmGiImXJloPm1ajlWS7spGyJZL-JMlJunLhW9xOqquXUYq94s0lke8pATcz9bfXSJMYR9nOTg_ClFjHBdQKTaQF8RyAtLA6U8tCpLfsOm7r2SDDAsTwLMA8gyUCPqZgzRgyzIvRZyQ2A-8MUPXHwGcgLiD07YfF62w4tCMIU2lPYTDFDvWcQHTWKx43Zi8DbAZTrWcPhqlV4A2ICoDpesPIhGhRr5r43na1IYThcmYwXh8GS8zVPTYvSt-prJS1QVs-RxgGl3gfjyzifZcUAT9j8IH8z-2Q8rTdM2NZPR7SznrgmTnc0Va8hzxt6wZJOmVNgQB4pD9T_NT__mxcrdC6xN0u75DgRTBNuH-M7spI9ZlkZ5sQ6yCrCq8D_rlyPhmCF_qDBEinlKB5BhV_oLS5kxbBNA-1QEJ7TSi2kn7dYHGcJVs7Z1rYrF-9ycGp8AaFAiN511UEz9lu5XFomfAHQMamy3wS6EeRoqMFaq51eCTDocMTtNYHse9tJssBkUrpZix9qZXXjuWUl_EkcjJTrjLPw65yHQBHxtk6iPc_V8u5egAO6A5vf4kUwvYxVVcmVEZStuf-PM2WqQObp4lXzHOf6PI6WEEN0Ev07druEc35UbAJDgnPTvINqCM9EJta3JgAXoWRtqQ1gE2Cpbx2C-XF6rcy5UmSthd8CEm_5Yg2iqsAmbeHddxXz2XhJfzYJ-McfutHC4Xiya4Og3eQyzPzhHvtxCYzsPycz8a3KxHfin36W8nXF2QLHco3ZHlvQ_adgUBQJgzspi9xGr3JeMyvt8qG5VfbHxZSaPHvnyfw6c11Y2Hkwu2OE-wZKkHojsKpSQqFGAMi_oUo-X9kS1qtxNXtmx1nyS05ZvCUoy8mp7vrI2MTBQTVModmFjNT3rrEtS3lChgPWXqySBtXdqAuT1-kvadudjEBbwyCAp_4OP4FuNlPtslrTI4qbZvDVRQzSTxAlOmgGLWiaxrXNc5Lg8ER0vTibxU_k8msXzP-wdK523U_DebaJ-K0Ij2WFgTXyOgGvD-j0kjlF4uJ3a6AOv7QYSeI-9OzwnPzHLjH9KLX63gjSn3COiZsWZZta_Vnbv9o2SHUOG9R1QOkk8pVXNhgFcKveb5FTmTJcuPg1REqwnEz51oxFuaRxpXaBIaknWzl0gCsgVc4Nh5v_63APKgFIecxbgmjo4n_ehb-Ze4pRez13v6cg4iS-sUaRP4pMleNmFTsoTJAIAa68UCELVuiqYlB_nC2xRAUrDwVkWJeeYjAyQRimsRh8VizRvuUL3mYlGvKs9zzqW_mWKtXrbkf_21nDKZcE8ZkBSHs-_inzRrezvGPLzsbkCv-t5BcGCet3hgiJsCcGGODRdVZkjhaPPCsXbX1N1LX_T4PKkjAIuAlScHiEF4ok0OxLaESpf38fxDmuMS3CBCUDv8QE71EER62hrNtnjd6RXUJRvhSrqQSoUrYr0PwXyp_fBvSjRcKJgqjglkIVXyEkngu8JZGyeT0eMhNui2IMXZndivF8ABJszcWBWfvEcVJgdEfFQD3yr8MJeeF_Elca-TUtWQlBp6LZMje6SUurKuDqiZX83cxaov8avzj34ekiJ7JMTffMzjg7csUj0gRCcee9EJ08VcOHe5UEtNMSDMe8X47f-bx2SfgQw6Z3e9RvRnQh2u2dBrzOdbJje608xGhoIDD_xzsRiUSMasEg7zQzXMJHFDmYxbl8k7BwBCq5Z98yvGSJ-nS-qB5vAMAExEm9-oc1tSMxaxOyPyMkBoPGGHVSYvhhnYWaShxHE4tnJSaAsJuXMbGJHJYrdGIFORxQy2PupXntkBTn00SIYxy0XpYoR_RRGaIrLPxNEbOWLwyLFbvLvNkSCj4XBmjT72b_yeIvKGDtahIDz6vu1QzodzW94BOL44fcHgSdvOXAVNckEPs3_f-6xyREakm6sBKyR01hqhurkGjX3W3JolghbrhZTvQuzapc5G66XXUaReHZv1ZWuW4g60UAwK94FtZZtGUm0-lJ67qqxgidveSJ6RY68qPbKArupdRmiJW2NQXK67pYYnsYl51V6hQLwBTRpTauiP9Y2tmdHO_yMavNo1qIeuTnSJI_wLX1QfZYWUsvx-dyMrnNlRrc34BeyEvR1bir5dGiP-SYYvyTZSWkp13NKW9mRBiQ1F17hb5mLUYfLPh-3MKmU86P4kG9RrYH8-vBK3-zoXBNRxjyo6tWk4l6DJG5EQYu3JPjKdG3gzM6qTVjmS_lO3v0QB5Pk8HUmZMHXZyeHulQmNJCmsuvINU0Jg0xbjGS28FkpQHdb9YiVUGRkZcs\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6808876d9d7051-72214616','','','2025-04-23 06:23:41','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42977',0,'cd-form-entry','',0),(42978,0,'2025-04-23 06:24:11','0000-00-00 00:00:00','{\"firstname\":\"Manu\",\"lastname\":\"Kumar\",\"email\":\"mkcrick.1972@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4Tl7Ofy3JtNVfmahGGRxeaNyzuEVZlziJlglA0Xb5zFSfGx8_9Lo19iYq1kXeJv09DW80ckUiHAQgmlm8cAeu7MDd0AArMQ-nwltpgDkDYgDMX-uEiZ4-14-E9Judxi7wYHSMkacKcEzZqskFp46_8I3Q-HrnCg3uOu65XvrdOR8UdUkD4iDjj2K_UVRvSDeOZrKuLoGWdl7_W6lnwI9xgKwzpUp-12T7IXsyece0WUX1K3t1eogYc9lcOZ5OFyX36YnUbZB_gxL_shliqM0NJtkMNp5LOuVQCT61AXw73bV7eCC05PD4kfnMp-KY_HXJwfJ8620ReHDdBMZVCA7S0VGECa5vzUIHqxbIYQ4Sv3xiZMFQ1lLhVFjUrsA29XIpEeiiCcRMPsumevTu54mBt3HJW-3Uikyv1PH4DcJddV5LUiRXaYBdP_JzDplJNBXN3LlRnNJUucCZNwxG4W3zGIFiU8o7bvvdl3zUEnkn1WHlUkq5YKhSYs0D4ZGKKlmHqjtdWKbvDDeF4MZGUDpYlnlYaDAb5hRbscb3iUgKC0HTTv5LyfiNjaomCIMS8D20y0pCA_P6ddy8cOH4xoxqekKPtTWKHE85HwJovxam3ZyqjF0ci00g57Ph__qkodvUwTQPmeddGwMiEc6rPnETJWX2IzqKy7kz_iWDXQmIuLhOPmuq8tnWXPK_kTwUNd6gHwnVBN74Flo1k0wnbXRqauGLXWxFw5kPYpp0VATbDnQ1XD7pnF_cMLnkTU9HKbPvmYTW3x2aHCl7zYDpJtFBip4epiWGVdnAwKaAy7JDAZFcs3si8RuQOg_r_JcEdqUIDv554DWL28gq0W30NMeoto0abW1HVr_HM-cXh3T1YoUF1qvsiM92ZFbr3vgorkSidfGglS1kJJJVXn3no0yIz6SlnH2njsQKOLPEf_HX7PiTPaJt4jmF6Tf7sDQFqmrPNAApqyl4bKt85W2-uu7H_WPnRM5nwQkaCviQHS_jCIaqd29ntMcNbPh1QirC7HX3s9_G01gewpaEMhIXSjuymx89FdtEh5oJ5QY03mWU7U2zX77nRkzKly263n8k2Ch2bIMh7So99Gplz2cVUq9v5ogoZxmJzc9mQw9il9XekWkIHrOR1wdUyGgkFku2lrAFN95CcAXd3QLVFChol3uezGDpQ1GQplKZDR4J-E6C0XqYNZnvqj4_-cxIVSN-7hTmN05mKSHUy1qH7svAie9mMhpNYDF0qWJmasIBmQjDiQqde6adwPBxsj923G4dEG-Mw47gBkPu7XahmgeJUZWpt1vhmn9oZ4ZIstB2twvNu2znqxmJ3PzG25eAIavc1wycywOMoOloSAGV6Ycus6ylQ5oc3Xui_HSfeokiwTm5wwbxs3A9UD_C8NqKPd-tCX6lwyDBdsQme0XXtATm-MIbgd2x8cThN4pTBpWO3Un-N0gnnYfjbwFShYHttpRSPI3VhVRxIOioM_Rowyw2YkpE4IwQ5zyGzyohXKzrJKwlVIEcoEbOIhJgJhZlfPoRkMvWV_UOj9B-BoPX6gaiHfKyE6lFaHmg8__MR9t7sdBKVrf2GhhJ8neaJsMOeGb27dgmiF275ddb9d18EyrnIUdi0CgUFIdw3-L7uF-Jb0TctZyodLUR5MmgxfYTtyJu9657PTP6OQe6I2veP808c1jes6jFpsNiiwnhH1fMVtga6A9VQVo2lmx7hvPPl79UFY4rcMYobSQfuDDh74oN29Fl9GBhOPC-nKw1upJ4Pu3bR-1gmT8LLUKRezbZYV4KQyXKolJHgs4b5d3Ss6v4uEOc-CJ0-vSBzkuougGOzUNIOFzUuZXdrr_HQ29QFAXEgJViiFInr4P9DbKjjwN879kZyGSRhhrhUzPpM1ClJ9Hbb-kx1eVdatuTSfEYjTViDlamyB8GDnWlyxQnj4ZcJoziobQk915MBxohzcEBBBIw8Kp6baF0OynTLSU3xmonv9viXL77eCvGxZmNfiRr0s4pJZ3x3KlbMgOHisqvqGJqTJkG-lrWFrjN2kqYOGjH4231iLf7pS1Y22TwZ3_1NJbK8jjO59zsqfiymZIiRDFPue8_I_dkbhTMR9XjZxhRwaa-E3N_LkGumy5h2fmNuRh_O-oMq3dl7LvcBwvlTj9z5KzWG_Y9JeROwLJtREmsJF3VB9mJc9yhV4kEjV1A557YYbsHQAJfb9VzWbUyE7wCanXE-aAu3QNuwu_kfue6l3jqbeLIKaOYqRsn8xvsAce-aElCRURS5xsO3ucsnUoP2tNVIABIuW65Hq3OX8hkyLEvqVJEYYuHU-fUdsXvperajGjsUIDiAtN4TiNT9wxRslRrqseQBlKUQbk0ALtmiTN6ml4KPnlIfChVBxaAWX0fh21PwqQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6808878b408738-04080069','','','2025-04-23 06:24:11','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42978',0,'cd-form-entry','',0),(42979,0,'2025-04-23 07:07:16','0000-00-00 00:00:00','{\"firstname\":\"Yasmin\",\"lastname\":\"Smith\",\"email\":\"yasminsmithpt@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vDQFI4ULZ3z5fgJK6MHp2QI&amp;gclid=CjwKCAjwn6LABhBSEiwAsNJrjsBXxpHDWYPiwJPiWKZ8bn9heywVdqLyr7-bnYLq26XfVtT6nDP-5hoCltkQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5SMKIZheMDRMrC_s4--aznribDVY1NscA2ZCp76QIngrbwS3NqxlTL4RkVd09KPOj6GAkfTwgPAWJ41Oqtl2PC3Fl0bpLSAuCv2KoYhRRDVWpwZL_LcgxFv7wiSG0BvD_eSYZZEZRGfr2sOVeV80KktfuV1mI9SoXAJV7MXC-EZsF7PCVoTcstW45FzEpBsC3h4w_WonwaBPB2kTmfudythacxRzXUm_r6KUhxNH7cA1PnJY6ROK1utMgywR1U3Snky7F9NtL00Az-88p6gx11kM9pDjFaXtX3HaxQMM25zVOYvgr8Q1yuczUkxlWNKaFO7lgP0ouK3vkimvGJmXraq9Hefy539NzqL_tTL6FE0v-4pWwQeRWMH7Gr729CSNGm4x3l8iIIWawxRiPFwQVYZ3fArcIg-ZUiUc2OweFx47gTrFDxljD1NHeSHy7hNpJBE_V5y7yQgrdsTW7odpRO1_qWIUupZzzw5_cryVx8qIPLVIn31opvUWkuThSDzPi4fBTjiGbRI5dEicKqRkkLi__6quUZgRguQbFVVB7ortoVUE5TF7CbPtKY1NrXI9N-yMzXnLu40lmspgf6S8_MSFy9nuhxK69AoHTAVhFRW0hysF71jejd4oMW8_Q6RaJnqDXHtUXyo-n9suvz3iZSvILY9kLvApHmZiC00ziCLtyxr1NLvGi-FaErSWj8qnn7hvOau9VhbSE8VoguMeSloZjM4j-6RlIXF8gobmSIucPJq0SWmFxcssmgdzO8Fvxz_3EeTWJjRnrYZBpVaXAiSfz9TvM6wcNmxCG44Yg-bXdOHhwt-y3sf9831glT27h64IDfxc5qxlVeXp__iBQRS4ZRkTMXuemes6Eb14i1UOullX6rtz1NdpCGUGa46OapvI3aFdqxoFwAVjN0TGpUqnK3nFQoGg8Cy_VXLiWBSvbYmKqWC3H8T9JVLehHa8o7rxH-4cFiZ-Z3rTQLZjp_bjsUrsG5f8PZS_wT8GuEpXq_n1LGv17Lv_Uaf0X9tRhg9uq8XvQ4qZqpVCYAwUS4ZYyy7_zRTm8QiZUGKFJ3zXd65VK-F1p4e-cq80MzMRZt-EUvqfHa_Pz1NowCYc6-5O-3aaUaVOKR3H4vSbsddMDVVh72AO87swsdJK9pW-ycRkTT4F04ZqoZWvWTqqi0y-BiIOBVZi4yTdSjsUZz9l6qmZLLg57SkFMzNDrqGWCDY-Vl-pqKBlRLlUajEzxMCbg8GSGcqetsowPjM1gmfUEq-UxsZVqbY_n28expm23dmNET_QicpRtzDyvc35RFYzNDLZQcnnyi9ZMgF5OTW0lUkFTMWHnvo7eyg5MLFmKYJh-DxpEpG4yiPSmgCN7z-RFknlthTPgUBaQv1ZnSRW0YM7RP9t4xmksUatoQrR-fyAQs7Ag_WaWHSjGBE_AJAcZ9HflkUg8Pc1Cq881roxsJpQZA5EIQbE7-IFNapohhsvZqKjIpTpGtDdpiNR8NlyXqmMCxHbK95qQDz65cWrhiAJs1rvGKteflOxZ9ZhmP24SwFOgKbkbVhsr9u8VN4J3mNt90M9FxlIrVGSmQNPj54csLOO4kdW-qJg5U9NGr_sHRiDmSm4Md8ueqsrpVtCun9L5NmxA3fA_vOi2fl7Sn5MQ7km4PtcrxIlylI8cgv8384itYlCH70I2sLuC6-835axREMwmMa6A5eweWGushS8oCfzo6qujxJuHMcH-ySlzI20Iag45m0bflY5xbPs4YpOkvQ6viamX8XejosHlUo_GuD6rHZ6r0_mvqEn7qBccTL-J1kPZjtYllxp1XStjopmhH5xSiffnQvAPUOV0STlQ_gVthEwY7caCb_AH5ja7rqBWIjN_2mk5bRK6CImpRNLVp6yAAOkBmKp0LxEz8A5YvV2vJvKV0_gokHyPXU8ovOALQ7DykUno1V9EwTJyZDUoq5kmxTxHipuR1uUGLBU0VbgJTszLp86XqlScUqGDQMvLGomjQyARCL4wmSy3g514s9wI984Vd0i6vhbuIxMs7b1y0mFz3kFaOcXadVK_DSm3uXzMod00gFqEqYXA4Jdu-Ub1epTFieYOyi3lhM49GNy5R4zkAla_28tJ4Cp6L7utbtN2M0ii2bGWlzT0voVjWiB59QKH81sm2cNTW7StpoZAvG1teGFDYIm0k1oc7uehhG91xEgy8CG7jtmMhnQM7hB3dETlSBu0iLw1C_5xy3fNTbY3yEANKUmaQz2ZIvI0kTq7EBQkg6XnDD6TLTzBS17G3ZaayILxwUrHDMXsjqWGr7aLea10rQ0smnPMtg1EN6Gc_6etrcC9WRjlwt7v41y7Io0pCpJCAkxXpqbzsRrGdXs1rW4GyRNae1wGH-Amuzd2k8EZ4tE0VKwklZw\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-680891a462bee8-72864111','','','2025-04-23 07:07:16','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42979',0,'cd-form-entry','',0),(42980,0,'2025-04-23 20:51:02','2025-04-23 20:51:02','{\"firstname\":\"Kieron\",\"lastname\":\"Dixon\",\"email\":\"kierondxn@gmail.com\",\"contactnumber\":\"07399001705\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tvSXgsG9cRpLUPWCR5HrEZP&amp;gclid=CjwKCAjwn6LABhBSEiwAsNJrjlCIVc-UndJmEiaY1rrQq7R3r_1ExZyC25GF6z_OEwcRzsL5zkUyWBoCsB8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6hF6RiPC-YzRtORHR1zx4KBcy109P6WRYjELIivxpB4QF-qYN2iwSAtwUWC0rc7iG1yPgvz6AtxWZhc9jrpsh7FPpaY8I9wFNqw3QrycE17_3TqmIWwwhwp-iFAKHcSNHRPxJmNQnBqUDgIzMLyImohEHDZsWFKmMzb9ymAKFnbKtz6Wuo3BhZI1saTTMTGDKXG1U5tXH0oYmfB4uEyXKl7rs0RzEkHMgerZPFOGo33u_fsLZR8s2plLj3kPCbG4DPHxKP6313Tr3bMsN1jwkjbA9Zsbkmb-jfM0eUNBYqMTonRZV0nPSAW0V9_qnwJ8uX0Uoy8C7ijz1XGjjA9GAsheNcUJw2F3BFpquRNocRc-O3scYwHfd6W-xhrdWbrp8X2jI_x5bXgzxoKhWENXbHxjbBe1FA06KrA034mIFfpPNJdnhMU87LvSp48_cKfbHdHg1kD3h-pNykf1zDjErfVGSra_eFAvadDcda-vS6qeI46woq-cxC7INojPbriv1FMsgkg5ed0mB3fCBkiPTdi8AGkLvMsq2OOE4bQUVMS52GrBhlSGcu7XFfX4GjNxxub9LQWqrD-imETONdfI5g1qew7XyX9T_ZABq7NO5ORFzfeteQaZc235PjSEQxbOedw4FcckLpJYJod-a1EpuOW3r1W_8vsBizYoQxKf6twEkqRytCmj5cpbYb_r0-xVJiazUX8KLnFBN5BgdlRs98yLfUaoyzNbp_9pIcua1Do-wBfXFpBWJ-Lym49vXjjU_7xWx1OdndXJ0QhAKM3oxdKRIvihkJO-DOrntnjpjPujhertPiBpglug8wHnn5KvM1m1bwIEBFShl_NcboHSq9yUMCxMlVYRJ-EJZ65KuvoWR6uOAyEYTFsEam967KmWhSxv4JCfCnQdXFr2l02bADe9ocHdBHieTsjFqCX1c6C_NLLWk9VRjcXyaFZ_JlEYITDF2u3yk7G0UYzWkF-TYKK7hWqEpK6zkaWRZuj_kld3oLypeE6MTGEJRLBAM8j5jMftoIwOJdg4WPOQdoX3gLPOsRYl91fU9R1NYAqcL8rd9pI2T-aCjM07zMJWxhcVwC9zhB-1PuraszvDmE4ZKq6OWMZv4UIRZTDJq_JaCmOJ5E-s198sNozGcbizYq6on3TfcYiZ1edITVhwHOxbN7m7S8ARUZIRlAakSYfLj0oZ7r0Epa32Ov3CiVKkWRZCj7sJFAuKD7loLRFoOfm-Gm1e5AGJ2FVpLew1QydnYQr1dhocgVUamgR9C7hsMyrKzrlXk1OuKF0bOuc7Kmm3F6EB-RC-_YclfRR3Dg8RttWOaYh9wHRD2YWpEdy0bzmnITVaWoKK14ElZD7SSdBoJOByWNUU2f-j6nkFsgIA7p41kh5FPMmPsWveXjVGhOEMshLMyahWOS-cGnzUBhPzVwsxrkGMTnMYI3Llz1P0n0Ooi-DcwfroUMatboWOQGBRqzhfeMW7tpv7O1lF-dx-qEqcyMRhzJLEjbGKejSpc0LjVEKzol4Ij-X3JOdm95dsxGsS8G9YoBOdXTPCBJa3QVg7DOhwi8bVzbyzOhntTlAjSyiFF5PFJhbsvMXo4K9lmOwP1fyouq5hCS2wFbfmAnoMiSNMK5zZQbUZiuP4PXTWKp3G3OdDSXmz2JkOULXsAeEtMnuKz43QYE9vlXgQj9qRqjWas1B0j24F7QjrP4xko07erYz4RIAqtd6vqqeU0fCkOcvVxWdARBDi_otmwWSxsligYLe76ltMVQxSIJu_uZ4VxJP7oUh3VP30uyAVX3qw703NS8bDxZQsocLb6cclzA3JeyAmbKnjrJVL2mW-FHkEiJ5Q_uBBbbQiRkUKuW3jA7KL6dE3lS4l4nLlGh-M9FinHWIwI3hh6oT_Cw8bqtkfPMyh7BWx1dptnSkKaASl8mvwQyoXM52RnVA_M8BQIiGa0DrjhHL5naGQ1iVZQ3xwEh3c65IwnDOhNLe7q4us4HIp5FgJ_qAF0TeGQ8-ohAO8OPpeH9_Od5kgnYx4aiA_OlckP-nAhxCkK76ImcaOPG\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680952ad2b8870-93262086','','','2025-04-23 20:51:02','2025-04-23 20:51:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42980',0,'cd-form-entry','',0),(42981,0,'2025-04-23 20:52:20','2025-04-23 20:52:20','{\"email\":\"kierondxn@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"8\",\"currentpostcode\":\"DT96EN\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tvSXgsG9cRpLUPWCR5HrEZP&amp;gclid=CjwKCAjwn6LABhBSEiwAsNJrjlCIVc-UndJmEiaY1rrQq7R3r_1ExZyC25GF6z_OEwcRzsL5zkUyWBoCsB8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA763cte45uo7yBmBvtdmvDB6PbC7_pYdNbSV-a3ueY7CHb9zkX_d5yEsNl0CkcvAvLzw6OMe02B7fcmzTJvi5IYRvmgwEC0M1PYt8T2NF-dYDUxhjKFYhgKwNMYbiegY_KEK_EoqvcuoTiBQpGxo1zKEzwppIQf8hpxCWZ2qJLgkBioTUzfFDS58_oHOTjmlqZZ2DtVAoTOSCIzSjvQ5wuIlaNYQYSQMBXSv25eRwi8ntyhvZM978LLMR1ls8wGdIRtgzuFUhi2ViPTnQXu-EsHbXI54YZCbrT26tlQtSZqrkfzcb7xj1bd3vbo4_2qSQeLdiWOp2CKjfvsIZfBFARQve1KFxm2v78Ai3rQP_grb0xPaI1FmcbIsdofyEcWrLGnp3xVfCB1Ku5l3u06K9V0qXgPqci__iCyIYAPbozBhAoaekvo9avN_eGFnjtQ4Ki5Uxo9hJLwySv6lrjI8PPgbR1iKjrmD1xKCAL6OTVCM54Scm0jrCECLYgRAa1mBbkR3aDi8JrHa6vARGb4qb9llH_x3ioez6n922oZ2mlgHZIfAC_hnsxL6O-5AHlQj7U6MKiszBr2Q-tM-uzLDQLuubF0gPkgiQyI3RbZYYZ5qRutZYDDK1tQaOQoHsO97ZVv0OrrQB-4GMISVMvIQWlhwJT2nm0RwrcJor3N2HA9-BzdKk2J0-b0tPUhLpaVbtrU8WvjR_LU8eV7cnOYlqVOlWj8JjAyVXVQqEEOfavCGw_7i3AOZ3daIAc9ItPYxdOi_HT6o5qgIY8AHrzLLD2Anp6Y0GmIWYdIeQ1p2JFgVKOtTi1zgRo1txNWVKWEcb8xhoDRWAJE9buUyNgmdUi44Rdko_PpND1eNR0wCO9D36CaVVLHGBYimrhBVjAhZ4doXTC1VEtKHeZlUmrCxWXbQ9HVh1b_H_nXwAEGGM-gwIyVlvYa0rw-K5xBSlhWhJkbkxVHCAfAjYtEUAIWIdr8kpEbHXvKlQ97tthHCRf3s8ugbTZPevmy_5lbyBG0l3BjuPrr1OwdLuP9eEhszGq0qFE7ke8tHlh3VIgLNvl_jTDK_47iVwL2LX3Whc00EgoXNG891bbGouzzaPLVUf9b7UGZ981XwvOZhZZjXKoM3OU15cUJB-SooGZVqG9J0uL7pJMkO61GX6z-HNZ_BAgrKGKRgK7HUwsK8BuSvBQ2i7CbZtR4P3Cbz-WWYfylYfadf-bktWKTNxd1r505uxl7-8kdtHbIDO_CvF3RWvec2OXsHA2fOVSKiGsH_Co1iAactbusWJd80yjoomonyQCXqmu105PTU0zU0XvrWQSfhwldlrhVjzybljosVbH_mzfeQsdoAuIU3HQEy63ypioWdek5xXhotZABpHk5fMKAt46AVMR5bDH_46ViTNcAAGDmOQoBckCACouDLVizXP_HciWmINPqZEBfPCC3NtsV4SgqXT1aMrJRrkBRjxG-aK7MESnKp_Qkw6W8JLn9meznsnoIg8aDDd8riPGcGZik_1X7hW4kchNzDQc_cWQgewzcvOPPh6xLwSMzc3aC1KzU6J86llhb2H4Ajfple27oDfCml0HIA6QkQYOYLUcPMpmPMvjdvMW9NsQTGyQ6JIpMoAuFF1JmrWhkTNOWrmWeckUyUhFIcekPoBo2R0aPH5NyOipvOJXrj72ifeyXrwmDIr8UEjcScTE-3zYFGyPGgfFfaEBOgjAGZG1bC939CPXWmEEpi0eAbqW-dhLL2HLGc574qu4Bao2dTeIZZ3n-glI5947Nd2rRAFcPVmF3Zo0h9npBbiXRxNIVmnhCtlZxnUM3X9JDmniDruQgnxxirC8X8kqW2moc5IS0nqcQv3CUeKtOGFXJXVK-vdeXJA3Fa75FbJeZGbv77PJgP0hVKlwTNA-H5PE7DO3F1B6zHS9q-Iu6X_sRuUVB7t4puCBNo-zL-SVMuxwdxeebtcOqg_YwhsTkaPcSkK0DA3ELErAoxTlidmOvM-0xhxpIfvZ53-otinedwhken3OS2ljhwm4KqpstSc94ekkrnlGhHsu3ySKG\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\",\"childrenordependants\":\"1\",\"livingcircumstances\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680952e0872ef5-51032254','','','2025-04-23 20:52:20','2025-04-23 20:52:20','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42981',0,'cd-form-entry','',0),(42982,0,'2025-04-24 09:09:25','0000-00-00 00:00:00','{\"firstname\":\"dave\",\"lastname\":\"stead\",\"email\":\"dave.stead@futurefit.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA78yGaFMT5x07UxT4R6Lf3vRFHc6kCm_T1yeKfozumIZOIUNfbgn-c0umB_FwM3nFhajT4_fKbL-7CYyyZBjQ8ceNuglszgGcnskeQVQcqIiWYILgAADZef5Bt3YkOaKqa1Wjhvu79XrtgvAD-KY5NKlqtE4afMu-aDZJVosgv-19fDwaTbm8N3_wOFP6B7GBgWplh92oSSdeoBjLo7M7LxiOe67TvsvXQmYIvMeTy5l1I6U2otmzvEWpiCgUZHvQblQPSzuTVXZCVWw8fZ7sgAvSyZo5SvPGwzOQv1zq6eSHXHwn9xZZPfayk21WK0Rw0ExYOskjyFdTJG1xyeKoxyJVjzUP6VCSmDjcybvcP2MOKoSFXB3595r6ZQTm1YfpwtboLY5ztmxu0Rh9n3uTdK5XqQ0Ck0hfCMMLuagXn6XH5RPvr12jzHAMLLS9k1gkvCgHBOZaEqXyxGYZE7NTWBBi0YUA8lGZmx1c0aYgvX2UaHJAl2_VeuMSZy1PfNwG7okz0-8g28tMWMcfc1rmtIg81mirBJMZVdG4svSzixP7atKTM-RQmbrK5BRyIH9GI4Yso-lJtWG4zGni2xv0xK1GWvVDwUytngoL5SMG9reN9Sj326MUxNnZmriKmTQryhybw5I1lsMOY0aTJN7cyTg_fK32ent-Z89hIcrD5_eTXhT8j7Gn5xC8RAwP4JJ2OlejQ1sNhZg-Pahtk3fde7jipWI6cHvPFIJigK67mASFuINVF0dMvmErb9TX-mWmTSI9G84Lnq67OxohtWcrNksYPpXzrGSwssRRGvVeqYZchS3nVdwYXkMvDgJ7Ry2heM8XmU2gdncagrKt3It2Rwsn6qWO5uAeznWVDd64fxWPIebGrOLD9FIQzJikBIGAPoTkG1zNfb6nitPoiqjTWW3xpdFKVeJVCXBNgnFox1HMAsDLXZFxnCjPGoBeUkLx3AJyldBeMJKhsg6EL5SM3GaN2SMz9dfR11SxeNj2IQIjWWtCLHXtLKWNw4DFVL9-oFkN5nOJzVXMZkD6RRx7EQG8kbspg_g9ga9YWzb00T7TciEiLoxBLVyEHuuSw5CtxGYGd1S38qHgS4NPND0JU2nri3l6BKz7xqFg5rQFGe0i1vXXj1VuJOnwUtdAfKgQ_UQfl9Nr_CFFN0BaKvdik2vaq8Buf11gA1VwYFhcijSPKhZWoRynkbO6TnBzaq1cGkn3b132oQCXqFjFgCIfkDF2LtJVG2qB4amK-f61hsWpc3_6DU-5KOEhBd0oWKoT0HqG4kr4nGz8f6S6PVJAyyFgg6DHchuruYhCgp4_XtXr6aJ-VXY6eELuUMWH3JyK-3AwuKcnnoLqjMoN8NdN_gLhJqC-3-nVyVnCBqeDjEskHn7rB1iVU5k5HQMa5dlcqoi6R35GQBkbFq3I3bo7kZuTZD_471nMqzp7pBFEEXcY48jmDdSHfYVccnml37IHgETxRPVQYsjA5YHP3pPXJyUVVQKNkV0aCWC2Aml1e_JXRiiRZd_zCvJYRgqlOh1zmK3SiF87sK439LgCV3_IWK6K5YFBOnyNEgFCcXQJBy6EbDu0UUgQw6o5AqF-j1rQHZ6oHHIVZdix4VT2zMHNxUZ-m-UFWlX1VOXiHwekPTOyvhl3oBf_Z-WVhH2WWyzoswmOWTafb9mRNxfCR2N9P2k-VjIKFOHsDDutUF5tIdFTkMTZ9n3ec5NeTNV36O-lE9pnsdoIctsvCiyNtEHt0TgtbtE67xbbQt_bh7kCSyzMwGd7mFtO2ai4TVhcmJdeR6KsNqzxs8aihs4LjK_r8Je0PV2jAH2G-WiOssGEnleVF1lPoPTLM-9gB8oqQ6644NQprPgeNNrranlGYTl99vZ6fffdAiWl1fPm-mWqkwUhWc7d2LiNFUkpjZFoaCi4S3VmbifeANiRDD0C2V8UNsDIwSUCFTgN8G8SzXuqkrJByPzH3tVJ_5Sc4mH8t3p2OU9D9nsMskkS_jHdKhnMi2OPcE1nQyYuCzZwKNBY4Ta02ks6fBBD0EQPrlUW-GMyRg-Vlk_hcZc68SOUCOJW0-fgf2U54-B8se5JDl5twFqhSaUeewqM9oOsL7TF-3Ddw9amJRTJ9RKlbuEiSRnHGQJPkzGjBdaIpvlbGPK_pMWkhhy2EFnS1lFCfMpQ_k8Gg3lxwm\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6809ffc5ac6870-02647799','','','2025-04-24 09:09:25','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42982',0,'cd-form-entry','',0),(42983,0,'2025-04-24 09:20:22','0000-00-00 00:00:00','{\"firstname\":\"dave\",\"lastname\":\"stead\",\"email\":\"dave.stead@futurefit.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA6wOwUbwhTvuaMSqz1WiPwWnaWJ3fTCN4lDOfmWud48_ag6Dl-49fW9G60muKuxRyKt9h3zdV2A8Ky9Kah02xbvEYq6o8wSx7cm8-ZEznYyXIiE467_7JLPdS4i8euH4SiBdNGejtIO1GUfM7dd3hjYXvIZVYD7mUp9T-JGlMzxGRoL_G8kU65yg3NVnwtppWQMyQpHbmE5Df5kG2vAbdEBQ1EMG-YeWBWcEQoKohr5uXG7uY0TknWrj8OqIKng6q_IN1gQqfgCM8CPA9JcJEPw00YgmtlhWwW6q4a2zzMgfxgH4mQVerccTsxbMacWi57rXfOIxRe2WMy2Ir23ZvaduOI8GKBJeb9mDqNtQ6T09fxmmso6j_GkFd5Fu4h8n6gziDy5NWpPGQxGR52ihRIthcKWY3bKT6IxVFypOlssD9mL3Qiwn5HgKypLP7rlSlTCv42-nNf7VIKAJPN7AX0x1Hyh3u-ouBcqL-EWe8CviLPTEqUguA6VGoXYp5E7ie3ALy1ZiNINwMB77deJf2ioM_2mQqeqndemEmAYNAal1lqbIT9g2s7dPPJh2VBJfALEgCXGW8XPCYJ14_VaIoQNgKCyY-VXiAel48wmAd4dsBPJbR1Sn5eETNpFn7DE13CpKGDXuj6A5lk19jjnLde_b8KN5CzQe8LKKqZ2s1ujOOf9RBde9kD61qft2F-ZkiVNaQrUxTKdim0ikCYKDmRf96K2DbQo3TXPuTYq3rauldG_d08nAD2a9vuFJbTJvvgrTlFS2t8xi4IrMlBrTqRlk0g58qI6BUrpEXmpB5Aj_DxdxfYD-3x7dM7LAxiW8o2nAFONuAw01tPIICpA2pkk3DFZe_Y570FO6i7jp3QfH7dF8lFqTDJuBiqUsPXAm-3633bRNsut7wFHaGFoiMz2M_hpINiiCR71Uy93TT6wOZbbyDVEbmaPR3AsMRr-hw04j3z6e3I08KtPXfQT_4JOp_MlxkxqqNodCxaedkDt04xbvMHXf8fP3wy3gArmKxBVGpKwzK3TkYjGcZ7TOrxCZjcsDiNC_qFQex5lPPZI8DEY0WpTs3c2cR11RX7k5MZglJsXnuU-gWYWBvT_AVgZFqrvRMr-s1D9LdM44iKfbgnnhI_nYRf6myMMEBW6jRqYxkcSphxUAu9NIrn6iV_0Ln2ZzlveGABZJ0-3RPyGZ4YJbq_wj7K3zCfg2tTcYaTdTyoVrTi1tPrWbxR5P6sewK6qiVey3Sp11stO4KJ0FnHJTgI_0dYMkdT6iadnkDCOgOW5AwMXKR2RxzMD071iI37zsaoL9pJk2FQsLl8EJjF93xqFnf83INpEg61lv86eU4FjNMMs-P79IZWF5gR-qp3kWUG6D70vY49ryug5y20BSGtKIIesezhY57sHpXI-__PKW7AFYna-JKCKei3T1sLN_G_XYMLiYX8QCHa3lfp1r1yX09SX2lQGXUS83zByvI8XYs8ekKiklfIGL5_tgxtGyXPnrJC2-ABtTaT0MFNlQ1-3bOBW6HyYTFY7YyPBZuq1A_PgAZTDKlHPSYvrPMg2cm_r8qSaSYDM_QCFQsGgzmqw6VMRJygOcxkrPGgy7DnN-PVRrsGmM571j6XqDSAbGL7mF21yxMMJKpctgyG4go_VIMcb48Gbev-0NjZI7tVuLuqO1D3t-5LfsjYfkOzIRJyGbn49vhKPTWghEESLWgdlw2E_wiCOvxBkQ56t0eQTrghUvoI_OjoZ1JPWOfLHIm64L-bUZdmKLjufjNqdEwhRp36PsAMCi6uhlNg4yBOUPUzFG-UnDYueAS8pStigPcUJQFnTlWo9gr1vzxTaYkrc0maaq6iuDkPdMRbJmNshnkFHukShz6VFsq1R3ZnGvQi9VL725z3uS3aJO0AOXcuKs_ZomjAb0ZnMo0nENM0uIYVbxkw25RmucL0J2SY6XZvrt4PmS74ij565YwWVi1dqq4jOd7oCBHpUsVtvhTRE2STQKGvP4AV7jeoRzcer6pZGPrS8fI0sK_6Xk_2FeCPCFdPMzbijI_Nq1jW_5y92yHRmOCeFjgE_E5gP-I4qP6WKGVz_gEaUQjhTwRRX-mo29g36rDIW6FsQfwoBF8WJnr1nqyO7uUQk2wRzimN-cCvwiHv-oSHeCisLJu6c0L8OTEqIXkwUuXnYjG7c6iM1\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-680a02565dd1c5-11408857','','','2025-04-24 09:20:22','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42983',0,'cd-form-entry','',0),(42984,0,'2025-04-24 09:34:23','0000-00-00 00:00:00','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA5gVIJud2oh6Lale4UAOYFK-0OgoAh-vBN43yopE3Ov-9yE4H-w3PwMxARz7vC3zKLRrUglsAPVN5T1kPuCGrr5NxO27uWbLMF3z1DbXxusGCrjNGFw6wifUpDc7Hxd8iHSEiwRB5McLUnQfcR3rrLH6oLOeauxyTVZC5ec6GxcRKOKqxx62bnCSfozWX_qzEA4_osXqYE77vl_EYErybFJpgpcgaJy4UIeGF3yAqqxMFs1p7MqalGsgbe_zSk8pLQUyXBluD8CP1n5btbQ6WpukqN5iccozEuQh11hyOZvmz0M4-1Z0oTaspRUtBKzEnP1nhzgvUhiHVztfy-qBMvIAwxGx-3JiN-u4qtsakBilPnb3IwKkWfqFlAtoqqWv48v4W97vTONVG09K9vhR1F_VzHC2eWYD75ypq2DfMArjzkI_pQbN25R_SZNIVcKvxdFKMU9OAisiRMhSbJQZdiR3aWp27VisSYp-ezLor_UcZ6ogGINMQ_j-Y84OjjXgcTIKluL6MARfVLGiiZ0fNBw62HTVJHOJf6S3_4oqa1u3pOz1V6nY5FBhxDFRFFNFtMG_usCoy0MdKU4p_OyL9A_J9DB6gnDjhwauq-WyVyGsPa0IqbD8kQtLLSLF081qxE9AgCMwvWbhzdjaK3yulzsZaFDaHy77PFVyE8XyrCfBHv-Z8yyFFEP_7au-CtDkKJfcmKctGGr-IklN3Y_pOqCqEiwhU26rEdwu4q3DGnGnKxEGh6VTUPsQWaMQDFtBjK8_elx1W6enJBEEY-4hjl9ngfrWGAx-kDJdEkOOMQcujKZ1qsnm3rzR4FKOVCVPAx9cNuYpfG4lZKsUbV_J_hSgcTZVzeYpCXp4cCH2VBa7eHbbDFYR2vyoacmoFMh3KeKDpIpR-BXHWa5tQoQmgrWlx4RKLh2pswZ3mHnoxNZWaRqFoD8RaniUPoDgAwnZ8RWbTxcQeVufe33z5luhaTBkLaqSQGO_NUXfhcfFxhJeLf_py9N2ho42e-oAle4KDu7elqqB1D26wgg2Qsy82JdpasGKYoX2L8yd839pmfrUnqW3sNJENCDEW0Vg3r9UBqJWuZna93gy1r6qpi62XtWpSDCfSBBH9CsLGKMjNAL07cAsMrWCi47fCYfGLgfxksYGT2rp6BeaGXX8-GkPtu0v4yuMXdB2cVOTKk1aZnXjb1IhFxUuCU3OyQq2FcUKRAeiTlOt8N2cDH2XrDQxgxCMHND99TbOyqjxou0qfDSKKFR9-2YoohZsE5Czh8jO_9_32b1l-q44b8nyHmAtnLJVoxuXKZXoCVNT8i6udNsmxEn4JrPHnchBrIG7S0aant-Ao2_VyJ8ZDdkGf4WA1z_pIlO8wRWCXg0jDUAYjpMIudUy2bPTh2Q9aEziK1cIu4jRnnJ896T5xRrG3S1g-JJoBHthX0U-Ewdecv2tyRHmbigE10FPM51Shh53W900jV7Nnr9GcgEjGqLMJbC2-m39XAUmtnMh2VMSjIyQPN48mlH6bOAIqlkAKEEc6OoCkpYuUkBBZR32AD7OTIOCZzARChVzZAUVQ3znmsmYZEayvZJ1_dksUDxwJt_gV4-nFlX2O72jI0uoVX2NhniBFvJeyAo6rKaxsXQc3IYE926WRL_ISm1IoQEqbXOUrDVsVqjqMW8elZsB3lunxNzjDPVg9poKtiJe0F4yT-fGdK9G0ecSxnScLocjwPjaquXIZgfEZng9mEzG4rZdFnOqnEieZMRUzcxkf8TQDkqt2d1WwQFT8KDNAJnN35YrZthS_mv4ju_tE4qozMWafGrnnNo_5e_nIU4ultnEOjZsbYsWAuD5Fzxxu_oYe9xvS4kFeA4bgMcMTtlYYjg2mUEU3I3oBAsbpWF4UNFP_fmgw4-rif_I0OjNoQMCKD65-s3SuhAexBO6KyuTXuceaZMhuvYP0oienFk4DgFt2GEARoyoFNDm7Lg2m_aYulJKBjLYBH6R5maZMCoOKjCvQ0Rr06v_57-r9VyNBSUTLOeUIvYk40VN7BkKOMy_3hlUmS2gRhcIg1tN5ZJqOGjtnqvxeWeYC2Dns3OYd8ComIDu2eE3GypOwAbh1ebOXVa_rNYyAbuyLpwiY89TRIeg7i-mfqL9WeITc5mfjzmkZUrwaQ2OUyzzwdIy8BI8gyqXp-BOtUCNt1E4CFmWqJi20yi1Vi3kxAlCw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-680a059f887117-98967294','','','2025-04-24 09:34:23','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=42984',0,'cd-form-entry','',0),(42986,3,'2025-04-24 10:56:16','2025-04-24 10:56:16','<h2 data-start=\"264\" data-end=\"548\">Anatomy for Personal Trainers: What Every PT Should Know</h2>\r\n<p class=\"\" data-start=\"264\" data-end=\"548\">Understanding anatomy is a fundamental part of becoming a competent and confident Personal Trainer. Not only does it support the design of more effective workout programmes, but it also helps you identify movement limitations, improve client performance, and reduce the risk of injuries. Whether you\'re starting out or levelling up, this guide explores the key anatomical knowledge that every PT needs to grasp and how to apply it practically in your client sessions.</p>\r\n\r\n<h2>The Importance of Anatomical Knowledge</h2>\r\n<h3>Why Textbook Anatomy Isn’t Always Enough</h3>\r\nWhen personal trainers study anatomy, they gain far more than theoretical insight. They learn to identify and explain the body’s structural organisation, understand how various systems interact, and most importantly, apply this understanding in practical, real-world settings. However, the learning curve can feel steep at first. It\'s one thing to memorise diagrams of skeletons and textbook muscle maps, but another thing entirely to interpret how this knowledge applies to a diverse range of clients, each with unique anatomical variations.\r\n\r\nThis is where the concept of layered learning becomes so important. At Level 2, anatomy education focuses on broader muscle groups, such as the quadriceps and hamstrings. As trainers progress to Level 3, they dive deeper into the specific muscles within these groups, such as the vastus medialis, rectus femoris, and biceps femoris. With continued study and hands-on experience, trainers may learn of even more variations in anatomy, like the occasional presence of a fifth quadricep muscle, like the tensor vastus intermedius, highlighting that anatomy is rarely as fixed or straightforward as it may first appear.\r\n\r\nThese discoveries can cause some trainers to doubt their understanding. They might worry they don’t know enough or fear they’ll harm their clients due to gaps in their knowledge. But this is precisely where deeper learning and coaching support become crucial. Programmes like a Diploma in Biomechanics Coaching help restore confidence by shifting the focus from trying to name every muscle to understanding the actual movements clients perform, and how to support those movements effectively.\r\n<h2>From Muscles to Movement</h2>\r\n<h3>Observing Movement, Not Just Muscles</h3>\r\nRather than fixating on identifying individual muscles during complex movement, it\'s often more beneficial to analyse joint actions and overall movement quality. In fact, even if we knew the exact muscle responsible for a specific movement anomaly, it wouldn’t necessarily change our intervention. What matters more is whether the movement is efficient, safe, and aligned with the client’s goals.\r\n\r\nBy observing how joints move, how muscles coordinate, and where compensations arise, personal trainers can make more meaningful and practical decisions during training sessions. This movement-based approach not only leads to better outcomes but also encourages a more intuitive understanding of anatomy, one that grows through observation, movement improvement, and reflection rather than rote memorisation.\r\n<h2>Major Muscle Groups and Their Functional Role</h2>\r\n<h3>Understanding How Muscle Groups Drive Movement and Performance</h3>\r\nTo effectively coach movement and design smart training programmes, personal trainers must be fluent in how different muscles function. In the upper body, the pectorals are primarily responsible for pushing movements, such as those in a bench press or push-up, involving shoulder flexion, adduction, and internal rotation. The deltoids are involved in most arm movements, particularly overhead presses and lateral raises, contributing to abduction, flexion, and extension.\r\n\r\nPulling movements such as rows and pull-ups rely heavily on the latissimus dorsi, which assists in shoulder adduction and internal rotation. Meanwhile, the trapezius and rhomboids stabilise the upper back and scapula, offering good form and upper body positioning. The biceps and triceps, of course, are essential for elbow flexion and extension, playing key roles in both pushing and pulling actions.\r\n\r\nIn the core, the rectus abdominis supports trunk flexion and, more importantly, stabilisation through co-contraction with the thoracolumbar fascia. The obliques manage rotation and lateral flexion, but they also help resist undesired movement, making them vital in maintaining core control. At the deepest level, the transverse abdominis wraps around the waist like a corset, helping to stabilise the spine and pelvis during movement.\r\n\r\nThe lower body contains some of the most powerful and functional muscle groups. The quadriceps drive knee extension in exercises such as squats and lunges, while the hamstrings manage both knee flexion and hip extension, contributing significantly to movements like deadlifts and sprinting. Interestingly, the adductor magnus often acts like a “fourth hamstring” due to its role in similar movement patterns. The gluteus maximus is one of the most important muscles for hip extension and explosive force, supported by the gluteus medius and minimus, which manage abduction and hip stability. Finally, the calves, particularly the gastrocnemius and soleus, are responsible for plantar flexion, enabling propulsion during walking, running, and jumping.\r\n<h2>Building Smarter Programmes Through Movement Fundamentals</h2>\r\n<h2><span style=\"font-size: 24px; letter-spacing: -0.02em;\">Assessing Movement with Purpose</span></h2>\r\nAn effective training programme goes far beyond simply targeting specific muscles. Personal trainers must evaluate movement quality using objective benchmarks, identifying imbalances, limitations, and compensatory movements that may affect performance or increase injury risk.\r\n\r\nThis might involve using movement screens or assessment tools that highlight where a client may lack movement quality, stability, or strength.\r\n\r\nPreparation is key. Before progressing to complex movements, trainers can use isolated exercises and techniques such as muscle energy techniques (METs), joint mobilisation, and nerve mobilisation to improve movement quality. These preparatory steps lay the foundation for more integrated, functional training later on.\r\n\r\nEqually important is antagonist conditioning, training opposing muscle groups to ensure joint stability and balanced strength development. For example, strengthening the hamstrings and glutes alongside the quadriceps helps maintain knee health. As clients progress, trainers should shift towards integrated, multi-joint, and multi-plane movements that reflect real-life demands and support the specific goals of the individual.\r\n\r\nThis pyramid approach to programming, starting with assessment and isolation, progressing through preparation and integration, ensures a comprehensive, client-centred path to performance and resilience.\r\n\r\n<img class=\"size-full wp-image-43027 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2025/04/System-of-Exercise-Biomechanics-Education-2025.jpg\" alt=\"\" width=\"1200\" height=\"848\" />\r\n\r\n&nbsp;\r\n<h2>Final Thoughts</h2>\r\n<h3>Anatomy as a Lifelong Learning Journey</h3>\r\nAnatomy isn’t just a topic to tick off during your qualifications, it’s the foundation of everything you do as a Personal Trainer. From designing effective programmes and reducing risk of injury to understanding the subtleties of human movement, anatomical knowledge enables you to coach with precision and purpose.\r\n\r\nAs your experience grows, so too will your understanding. Don’t be discouraged by the complexity or the occasional uncertainty. Embrace it as part of the layered learning process. Focus on movement, stay curious, and keep expanding your skills through education and practice.\r\n\r\nIf you’re looking to enhance your understanding further, consider pursuing advanced courses in biomechanics, anatomy, and risk reduction. The more you know, the more confidently you’ll be able to help your clients move, perform, and live better.\r\n\r\nFor more tips and in-depth training insights, follow our blog and join our growing community of fitness professionals committed to lifelong learning and client success.\r\n\r\n&nbsp;','Anatomy for Personal Trainers: What Every PT Should Know','','publish','closed','closed','','anatomy-for-personal-trainers-what-every-pt-should-know','','','2025-07-01 15:53:22','2025-07-01 15:53:22','',0,'https://biomechanicseducation.com/?p=42986',0,'post','',0),(42987,17,'2025-04-24 10:59:40','2025-04-24 10:59:40','','Download Price Guide Validation Test','','publish','closed','closed','','download-price-guide-copy','','','2025-04-24 15:32:43','2025-04-24 15:32:43','',0,'https://biomechanicseducation.com/?page_id=42987',0,'page','',0),(42988,17,'2025-04-24 11:00:48','2025-04-24 11:00:48','','Download Price Guide Copy','','inherit','closed','closed','','42987-revision-v1','','','2025-04-24 11:00:48','2025-04-24 11:00:48','',42987,'https://biomechanicseducation.com/?p=42988',0,'revision','',0),(42989,0,'2025-04-24 11:06:09','2025-04-24 11:06:09','{\"firstname\":\"VALIDATION\",\"lastname\":\"TEST\",\"email\":\"integertest1@futurefit.co.uk\",\"contactnumber\":\"test\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/?gtm_debug=1745492544984\",\"recaptcha_token\":\"03AFcWeA4C1XZm0Uwmnd9qlrqn1pIXXqaUYmhJKt1AoOqceGCH8_pMMA5eozYtLEFvbwpPVw3Q6J7MXgR5QrGTIT5pqdYIP30ib1Ov6wCKlGBEtlBRmK0OXWOY4WVfgEhV3BgRLti5fNTRLT80D4OTG0L9o5skGLqOc8cDoJzW4bb2VHAtHYf4VJpf9sfJlFoWyk9lE8DFOFGUBxOIT9ttjFPpQ75y8E8ViJo56_eFDh_3SAG0ZJohC8CvIgh8A1aatKuwstPP6zyIeWPU_t8GI6JxEszrjg9yHSAXFfwwB04GHfIGOnR5QD9fPizsj3VPJsw6ZAsQXi_Gmw8YN4EGC006oDJk4vcblyes2F75pc2QNEjHxnSKuD9ova9nw2q7GYj9kI9Yp_ZWddQVUKVKCmsD3C3LkjGmLbHLggwSVkm1d8HLlrKdthpRtLaQd5v4fvGklLA9s0QFuFwK86BnZGT-7XJQhpMPEQiyPlbz-yXwdUoPQrbltPohg426MniKWFz0AZxZ4-cvnRdddF7yc8UMqo0k6paYOOlCq0FK7J4Rm8lCvesi0K8axxLjeAibrycEPf4EhPesxEzHJYOJnSQIWd9dtPJC0JaKrSJzx_KbOWvsFi_9cf45QuVDDRx30jpVP9iDe4y1W3EnVXBi4DHUwL2bjDGo3Z4aGrTdRWUfXfIbSPfqb45aIzkInhmeWjfzvIdPqGq2U0XwxMC_s9pq5GwYifPcDD9fmrMtKoFajcnDugswIhNGPpI0ZwAlV-CdS2C-1zZDVOhnSle3eWSH4tc65BHi_hX2A2kDubBgrhNUeJuNxbY_6AoBLkan8rvZkScM4Kup1MdPBhSLqm_efLWDYbZiWLqn70Ik9M9sRgBEt8kBlddCEEU26YDYLeGO4GhxUhVP3ePtcxLsvHhaxN7g896mNuDLTQs49r_D1XNAM1nglHweU79vVjcL7DgAwIAURDU6mozztNS-uC5-b1AhdQNoC3zp2HwacTW3udpXz5b4umQP364aXflPA4sseqI7fWbikaJR63IEjr4SJKAFL15OUeANiSBHJaWa8AU1gjTKVj2sutj4JbA3eJKPlRRZO-w8FW3FLQGg5EY4IkzJFuLTrYxYVgz4opvj1P0bjifKWc7Y_Dz1pc4jt5QcOj-28zE2BHYo15_MNHmVXsugGv2-cS1CmtWuEsD-MTvGDtUYPW8YOdVEsM7zn7NDK9zVelsmACfhHF_DvdRhHG8q2yHEvPkKxIzpE8MzJhSgtWw9IEZy6Hr5IsfUQ_eJvvLWA1p_qYelHtOAImKa4mR60o0e22DXOHAF5BTF5oxs1W74Nz2NGzjgij4rRwOW63zIhJWK8ORfhrP-PrO0PpWGXalJ8RoJ_nj8bNnBaMAipUfvy2V1zROgGb7u_ZfjnU6bdEuaofkaAbW3on4auZxyEHBo2E18yC_F2eQ_GibMGkgLYtX3T-oiLVbakKn0Be2M59i_PYyrjgL3knoODokBHhpV9meq2gUhLx7Be_xfJyIFX1YHOFgyZXUa9yNKGAI1kQx619K8gaSaMC__c_aji47t1gwHDkh-tH4sEXo0nUMNatBtRoGUXT8NbVoYKwn-sMlXd71FmzpB4Z9siirdBtNdkA87YV1GIvTEqil_93cBXyNegFfV2hxb7P7SkcSXl1B9gPvQARIbQd5UAsYMOrIJKLHgfqOAblekGaogbGH3gNsM8XKetymPaU74qOmG9uE_bBkpCUwgteQl2Ow85nPP-K17RqlUc0pogJbRogBW4aT86_KK3v-mf1YN2pd8tRNXroVp8kG4YSuHXFblkHsoaOO50nzW3o0H5jgz--z93s9C1uxKDSV0jOF0J-TFn2urap4O_nSdkh5EZl1n-62gQ9UoZq24PhON7rMK32f9pjlArsB_-4Iegxacecb3VnDWfB3GGN6uOgOEvfX-E-aoKIlxbx16UBHrXzY7hsL4SxxSD8an96fxsH5QOBviWggqBcYsIkS000CiicbU9Ll6D3CQlwiEhp0soWFSdqfd8yzGfWpL3YhpY73wLCyYrvV4TKj_bPkzPRAiGbbunRXhxA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a1b16027247-10280179','','','2025-04-24 11:06:09','2025-04-24 11:06:09','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42989',0,'cd-form-entry','',0),(42990,0,'2025-04-24 11:09:04','2025-04-24 11:09:04','{\"firstname\":\"Validation\",\"lastname\":\"Test\",\"email\":\"integertest2@futurefit.co.uk\",\"contactnumber\":\"test123\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/?gtm_debug=1745492544984\",\"recaptcha_token\":\"03AFcWeA6wq5ZuE4nF7HQJwhXNjNfigqActL4H4iZKssrYufjlzBRNxH57SADtuuqqO-BU2kifeOJTg-Hwy6pb8sEW0rUEqk0B3PrUb3T3cg8bQcWvGy0k3TMPcXWcRheONnsFn61PaJvA3YHI79LganPrJ-1n_FnPprdgB1ZSbPG6C6H-ZJ4GWmwBXGtNGozJwc8ZuaByV3GfUOLZkU4eDC0Td1krZh1_TIkoaY67YVdREQ_3l_993djxcT8g_BXm6UF6xrxP0M9z4NU7Km7qQKkj4_648tvTU6v00a57HgPzYo50qJvqsirg_BRmCgEfC8MOhAHAtjeCKEu9jPjxol2g4ZpcF7686iwqZP_TrQRbHNeoIbnBIESB8ILSM_cHrPlekL3LqGDwUlOlItnCAYW_H9gNf08w7w-1DHTFnP-Tm5a_WlahuQvfw5M381TDniLVN0SBlMFd_9yigni-XsKYxh9UkEQF6F4B-OThV8zc37uhMp2S9mwya3yhj6R3b5M_I_06Hn3seFibnujhMvX6Kx91x9j7w50xaZHsk4ahPILsGod5S12iuk5mYV5NeIMD_qJNmx7s9tJ045hfMXGfFRWF52pvx2usZeomT9D9SG3Vu7bkfivkcaKlpXVxiQYM9fMLdl-J9LapGoJAHpXE7D-P_Mbzok2Ww5COuLV1mGWJwjBRiCucwwtl_gkloYeL-1hZrxjukui46aGygP6gajLrP3gKIh7HuXzSfFzK4Un92q2A-Ii_q0DzEmU44SDuBFWs9JyYfwXBrqQ5FIFVraoz80RTHUJVfo_LSHQA2KQZZogbsmkJD0pgo55uXdbyv_PG10UgiV1O3ULDozxzsvkVA9ZzhugRD1bhAAB14AjFg9kvnsO7FuIXm9gWfMOa0bitCsrhqy-pOcsJQLhEAsmnpBOiyJOkwAj_pv55KvVcPAoBbNyMKSNXp3ypEFuBo4ednN76vQXeWdBAPseZzSqoFbd3-ZH9KsbRuPOXtnyNDWEENkbyNVqDowp0-eWsLrNFdUFBlVi4INNjzOR9wlzAs6cmNF-VQNlCC1bnBnkna50edIxLjmaRYVPgerG5zBVPHO0dnkegYzrWRVwVfi_XXKRh7ZYxui5JtErVwBtUDlopD7KzwHuHHYTLgSMsz9s2u8GBSzv-ZtgsZenn8ntl4vIDlG9GJ72CR11KJRzCvY433ZL7bD3WtrR0N5eCnuWZCY4iBpF__4_c0HdfupdQVBFPpwQZZGhYRApT-6ao4TN5fjb2SKaSjxiDbIhlPtfilpO9U6CiudYiO97Xe714W3d2CkMHicWJFmQkq-EMhhEdtgbWOPVuOpI1WyXWOYZxZYNJOvMkZqRzaoxQSGlZA-lL-iJZaebmSsO3MU5pEAA5OqgnS98mVUIcwmMMpiIMZrmZEbNt-8dxrUUxuTsOjtazlPF0gUhSmbH6YcbqYe_05du2SlYzzR4CLIh7xDUWefc1Dz9GhzIgaT3n9RmrXPgPMOUAtrPJ_376zneV--zBj_n-utZ2Jfp3JBIAQxCIEJ2RQHpEWkTzYiKXse1OgvKzXyFmKBVOaiZh58TPi_SpLTj3eXB1yhj0KASvEU2qbTHZocBbU9wFRJXkqUYfn50uZQUHzWgXHePN7woZtvrVJDDzI7GgtV92gzvWo3TSCCqlBagUn1u-xpZwY62me2-GylxyyQN1kQIr66RLm6excPQtGyWH06QXyH-1qO7im-51Il9DIk9OmNvfd87NzTo8Pinwf7Cq_PLpRgE5J5e1pbF2w18g21EjhtmD3b7tGcOfHBzSJmaLgiA36bwF8iCFpswlNsCnCVt8kAbPRbGFbcLTcXtVIGvafvMjd3-UqW0kX458vaspY949yLbXVdcpzVe5q4U2Ok8fXW6XhyrmgZIarlo3B7aNyLdQPU5UhrWd-xvNiP3_ZVY2JIXTu6sOCNVbdKI3Z8GaHrKi8btFxTdy4aLoK4YXzpm-dwXi_LbwiHmGCHfYhsd99SUR4Rm8vOAtHmMGQ6DFbeIIpJNRQIqT9IxEeEIAfyU8lmKg4rn5GPZRx0yQ3MgoJxj0pQzfww\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a1bc3a3e7a6-62896785','','','2025-04-24 11:09:04','2025-04-24 11:09:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42990',0,'cd-form-entry','',0),(42992,18,'2025-04-24 11:10:42','2025-04-24 11:10:42','<p class=\"\" data-start=\"264\" data-end=\"548\">Understanding anatomy is a fundamental part of becoming a competent and confident Personal Trainer. Not only does it support the design of more effective workout programmes, but it also helps you identify movement patterns, improve client performance, and reduce the risk of injuries. Whether you\'re starting out or levelling up, this guide explores the key anatomical knowledge that every PT needs to grasp—and how to apply it practically in your client sessions.</p>\r\n\r\n<h2>The Importance of Anatomical Knowledge</h2>\r\nWhen personal trainers study anatomy, they gain far more than theoretical insight. They learn to identify and explain the body’s structural organisation, understand how various systems interact, and most importantly, apply this understanding in practical, real-world settings. However, the learning curve can feel steep at first. It\'s one thing to memorise diagrams of skeletons and textbook muscle maps, but another thing entirely to interpret how this knowledge applies to a diverse range of clients, each with unique anatomical variations.\r\n\r\nThis is where the concept of layered learning becomes so important. At Level 2, anatomy education focuses on broader muscle groups, such as the quadriceps and hamstrings. As trainers progress to Level 3, they dive deeper into the specific muscles within these groups, such as the vastus medialis, rectus femoris, and biceps femoris. Yet even this is only the beginning. With continued study and hands-on experience, trainers begin to notice individual differences in clients—like the occasional presence of a fifth quadricep muscle, the tensor vastus intermedius—highlighting that anatomy is rarely as fixed or straightforward as it may first appear.\r\n\r\nThese discoveries can cause some trainers to doubt their understanding. They might worry they don’t know enough or fear they’ll harm their clients due to gaps in their knowledge. But this is precisely where deeper learning and coaching support become crucial. Programmes like a Diploma in Biomechanics Coaching help restore confidence by shifting the focus from trying to name every muscle to understanding the actual movements clients perform—and how to support those movements effectively.\r\n<h2>From Muscles to Movement</h2>\r\nRather than fixating on identifying individual muscles during complex movement, it\'s often more beneficial to analyse joint actions and overall movement quality. In fact, even if we knew the exact muscle responsible for a specific movement anomaly, it wouldn’t necessarily change our intervention. What matters more is whether the movement is efficient, safe, and aligned with the client’s goals.\r\n\r\nBy observing how joints move, how muscles coordinate, and where compensations arise, personal trainers can make more meaningful and practical decisions during training sessions. This movement-based approach not only leads to better outcomes but also encourages a more intuitive understanding of anatomy—one that grows through observation, correction, and reflection rather than rote memorisation.\r\n<h2>Major Muscle Groups and Their Functional Role</h2>\r\nTo effectively coach movement and design smart training programmes, personal trainers must be fluent in how different muscles function. In the upper body, the pectorals are primarily responsible for pushing movements, such as those in a bench press or push-up, involving shoulder flexion, adduction, and internal rotation. The deltoids are involved in almost every arm movement, particularly overhead presses and lateral raises, contributing to abduction, flexion, and extension.\r\n\r\nPulling movements such as rows and pull-ups rely heavily on the latissimus dorsi, which assists in shoulder adduction and internal rotation. Meanwhile, the trapezius and rhomboids stabilise the upper back and scapula, ensuring proper posture and upper body alignment. The biceps and triceps, of course, are essential for elbow flexion and extension, playing key roles in both pushing and pulling actions.\r\n\r\nIn the core, the rectus abdominis supports trunk flexion and, more importantly, stabilisation through co-contraction with the thoracolumbar fascia. The obliques manage rotation and lateral flexion, but they also help resist undesired movement, making them vital in maintaining posture and core control. At the deepest level, the transverse abdominis wraps around the waist like a corset, helping to stabilise the spine and pelvis during movement.\r\n\r\nThe lower body contains some of the most powerful and functional muscle groups. The quadriceps drive knee extension in exercises such as squats and lunges, while the hamstrings manage both knee flexion and hip extension, contributing significantly to movements like deadlifts and sprinting. Interestingly, the adductor magnus often acts like a “fourth hamstring” due to its role in similar movement patterns. The gluteus maximus is one of the most important muscles for hip extension and explosive force, supported by the gluteus medius and minimus, which manage abduction and hip stability. Finally, the calves—particularly the gastrocnemius and soleus—are responsible for plantar flexion, enabling propulsion during walking, running, and jumping.\r\n<h2>Building Smarter Programmes Through Movement Fundamentals</h2>\r\nAn effective training programme goes far beyond simply targeting specific muscles. Personal trainers must evaluate movement quality using objective benchmarks, identifying imbalances, limitations, and compensatory patterns that may affect performance or increase injury risk. This might involve using movement screens or assessment tools that highlight where a client may lack mobility, stability, or strength.\r\n\r\nPreparation is key. Before progressing to complex movements, trainers can use isolated exercises and techniques such as muscle energy techniques (METs), joint mobilisation, and nerve mobilisation to improve movement quality. These preparatory steps lay the foundation for more integrated, functional training later on.\r\n\r\nEqually important is antagonist conditioning—training opposing muscle groups to ensure joint stability and balanced strength development. For example, strengthening the hamstrings and glutes alongside the quadriceps helps maintain proper knee health. As clients progress, trainers should shift towards integrated, multi-joint, and multi-plane movements that reflect real-life demands and support the specific goals of the individual.\r\n\r\nThis pyramid approach to programming—starting with assessment and isolation, progressing through preparation and integration—ensures a comprehensive, client-centred path to performance and resilience.\r\n<h1>Final Thoughts</h1>\r\nAnatomy isn’t just a topic to tick off during your qualifications—it’s the foundation of everything you do as a Personal Trainer. From designing effective programmes and preventing injury to understanding the subtleties of human movement, anatomical knowledge enables you to coach with precision and purpose.\r\n\r\nAs your experience grows, so too will your understanding. Don’t be discouraged by the complexity or the occasional uncertainty. Embrace it as part of the layered learning process. Focus on movement, stay curious, and keep expanding your skills through education and practice.\r\n\r\nIf you’re looking to enhance your understanding further, consider pursuing advanced courses in biomechanics, anatomy, and injury prevention. The more you know, the more confidently you’ll be able to help your clients move, perform, and live better.\r\n\r\nFor more tips and in-depth training insights, follow our blog and join our growing community of fitness professionals committed to lifelong learning and client success.\r\n\r\n&nbsp;','Anatomy for Personal Trainers: What Every PT Should Know','','inherit','closed','closed','','42986-revision-v1','','','2025-04-24 11:10:42','2025-04-24 11:10:42','',42986,'https://biomechanicseducation.com/?p=42992',0,'revision','',0),(42993,17,'2025-04-24 11:10:52','2025-04-24 11:10:52','','Download Price Guide Copy','','inherit','closed','closed','','42987-revision-v1','','','2025-04-24 11:10:52','2025-04-24 11:10:52','',42987,'https://biomechanicseducation.com/?p=42993',0,'revision','',0),(42994,0,'2025-04-24 11:11:36','2025-04-24 11:11:36','{\"firstname\":\"Validation\",\"lastname\":\"Test\",\"email\":\"integertest3@futurefit.co.uk\",\"contactnumber\":\"testtext\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA4BpZ4Vud78QzESfIXc7MFiEBvKEKK0zIpznetMACiGdMnJajB1bjgRkHxE2KzhOVv6QWgohXDuONE86MhjSTjVfAIPvJFJuhL1cl9PXmgcxOBT5EWG1UIzyzjrljOC7NBFYupVXNV_WX163Yes5-Bctnh74VF9EedFrawS3MTBCqV92vpXOtVF3yhFRSHWucYfXLgbHM4ziRUHp5CC6_aKfJk31-hA7BlYOh_ieETcR6B9mMxtKsjoXgP0QMY1_dds1dOC7VoieyuJbrTmwgA4d5HddSQjUNCTnSVbAx4bpA6SZIXQgZn4mz-s_EB97UaDTUpqzTQhqyd-7RbcFYnJjThrbS68i_fKVisooOYpNC7VKewl25_RZzrd-KOVew63kn2ZAKbW3-t0ACDJLMy6pZMprC_7d3THa-IPsOnLLQkQ_UudbAfJ1il6hXg1Jc9MsdS5LMY95nZ7d8LZPGsYszWFlpEwpSeaW7b4ewQuJmJH_E97ShMReGB0Uzfx0sV_Xc0IBm4v5BA-9YJEczu9ysThwIxnMQkcIzaEUAL-p7TKfuBY7LI92tK--KYqt4bfNDdr5CwNDy4ujQpNIJ_ew7u62uR7JI0Ap8lNRTNP006SBF8N-JcZyT3xLqWjGfwuKRI8l0E5vR6DPtp6zTkIlAoDiNKKF4aUWj2dwwN4tNuigqBX3HzGSE_Xx52fHXYh2r1OgOi4gcNirqkG7N6V8P5PFCyP6OmDoqkqSVytMqVxxuBpGqxyKaF3iGMXutntgeST9c5Oq8cJJxIeZRtazaJwGkpnsvTkDpW-0MUsXa6h69WQ_9cULPmlJH6OsV8-WLyi23QYFt69NnshdN6ZxJhpC5Qz_KtFut4RrbWkKJywGbzFIVmSJ2-epvq6X2S-i1P3iVWpypR1hJ6roDNJIqc6K_QE8CL5hwhHpldGHLJlvF_LXOos5gkQ5TWIH4tKbIB8GmzlhSWAegcTySVRtRi-Tep7B3dlUwp5QOyhSixC40OuR-tSydpDoawWLhs6egkIDd9ocFrdRNnEs5T7OvfgZwZgoUqN81a_ViaQ8xo7otrVOTcm0tzZhKrDHoXPUCpqy2Q8YZmrf2dpEwstMrkEb226cHQHdIo6OTuVYOJGvdI3TgbhuHNONhZGBFvorv_fAg7em8h0UB275XuJJ1LmP3EvgqtT9VpEwkVY0wy_UKxbYNLH1CghMwwghdSvcWaJx59nmPX8YmdSJy5_rGeslIGat7T2V3tNSUi3CCdIaZx2KsqQhWyRhieIgKfD6MBOF46zI591ycS1EWvc0jD7Mc7AfIrSFfZxFG_Hz8p6V5kWanE-8yS1zDze8odatFoDIL1nHyajODxwBxLqXvtvy3xjieltUhkKm-NCtiBubEZhwSg85YGPdJkogr_fITTFLcwJIgqg7Le-T3Qmw7im2F582TNtlNhBP6OORdTO4MzRpdDjb61bA4vSw0BNDJqBMzHvzKAYdeU2oAjL0tPzvFnphH0HatFwkSLGfhkk0Yvjlrkw4ynfdlElFd4WLkN-vKWqSxqupxMUQKRFUfhxfzdoJNcadF-dq-de-uqOBqiHewB0dgiY9wkyqtWWhMyQvZ3nBkAzlrHtw9BeZEG-C5AjoQXYrVA5lLc6C1OBQoHQ6Mn_q2px76WDxyZLSfW6BN3fNRUU1wq_3IPlVUQG7F3EP_3EHQoL2tlQve11kE6aS9u9dbK35HnKlzCFeK1P5KDYUgl2A_hkARynQZAdyECHqtaf5WGocn3bb6Ld8Z1HB1ct2td3IwiIxafrmxBHt9NZpb2gFW0830kaY8hBXPqP8A9S1Vhez_QzcZ9rcFgyY_MlBBBcrqPr8qhvMzD19D6aP-gRL45WMOO5OrLIWFo-x5U3jE5Rqk9JXN9OHIxnUa4YMoLsQ5h5ZAtACniIv1mIHFEtfv-NAkwHGWgB1c68KK8EXuxYr4WCzc9tkibWrEm6GIL7LtnJHww3AZGdiCWp2qthPpk20t2XodMJp6GCU4oCe6zBcwO4Ef-M780HtR2RD_z2a-iYb0Z--pmB\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a1c5c06bce0-94922590','','','2025-04-24 11:11:36','2025-04-24 11:11:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=42994',0,'cd-form-entry','',0),(42995,18,'2025-04-24 11:14:29','2025-04-24 11:14:29','<h2 data-start=\"264\" data-end=\"548\">What Every PT Should Know</h2>\r\n<p class=\"\" data-start=\"264\" data-end=\"548\">Understanding anatomy is a fundamental part of becoming a competent and confident Personal Trainer. Not only does it support the design of more effective workout programmes, but it also helps you identify movement patterns, improve client performance, and reduce the risk of injuries. Whether you\'re starting out or levelling up, this guide explores the key anatomical knowledge that every PT needs to grasp—and how to apply it practically in your client sessions.</p>\r\n\r\n<h2>The Importance of Anatomical Knowledge</h2>\r\n<h3>Why Textbook Anatomy Isn’t Always Enough</h3>\r\n<h4 data-start=\"360\" data-end=\"483\">Explore the gap between theoretical learning and real-world application.</h4>\r\nWhen personal trainers study anatomy, they gain far more than theoretical insight. They learn to identify and explain the body’s structural organisation, understand how various systems interact, and most importantly, apply this understanding in practical, real-world settings. However, the learning curve can feel steep at first. It\'s one thing to memorise diagrams of skeletons and textbook muscle maps, but another thing entirely to interpret how this knowledge applies to a diverse range of clients, each with unique anatomical variations.\r\n\r\nThis is where the concept of layered learning becomes so important. At Level 2, anatomy education focuses on broader muscle groups, such as the quadriceps and hamstrings. As trainers progress to Level 3, they dive deeper into the specific muscles within these groups, such as the vastus medialis, rectus femoris, and biceps femoris. Yet even this is only the beginning. With continued study and hands-on experience, trainers begin to notice individual differences in clients—like the occasional presence of a fifth quadricep muscle, the tensor vastus intermedius—highlighting that anatomy is rarely as fixed or straightforward as it may first appear.\r\n\r\nThese discoveries can cause some trainers to doubt their understanding. They might worry they don’t know enough or fear they’ll harm their clients due to gaps in their knowledge. But this is precisely where deeper learning and coaching support become crucial. Programmes like a Diploma in Biomechanics Coaching help restore confidence by shifting the focus from trying to name every muscle to understanding the actual movements clients perform—and how to support those movements effectively.\r\n<h2>From Muscles to Movement</h2>\r\n<h3>Observing Movement, Not Just Muscles</h3>\r\nRather than fixating on identifying individual muscles during complex movement, it\'s often more beneficial to analyse joint actions and overall movement quality. In fact, even if we knew the exact muscle responsible for a specific movement anomaly, it wouldn’t necessarily change our intervention. What matters more is whether the movement is efficient, safe, and aligned with the client’s goals.\r\n\r\nBy observing how joints move, how muscles coordinate, and where compensations arise, personal trainers can make more meaningful and practical decisions during training sessions. This movement-based approach not only leads to better outcomes but also encourages a more intuitive understanding of anatomy—one that grows through observation, correction, and reflection rather than rote memorisation.\r\n<h2>Major Muscle Groups and Their Functional Role</h2>\r\nTo effectively coach movement and design smart training programmes, personal trainers must be fluent in how different muscles function. In the upper body, the pectorals are primarily responsible for pushing movements, such as those in a bench press or push-up, involving shoulder flexion, adduction, and internal rotation. The deltoids are involved in almost every arm movement, particularly overhead presses and lateral raises, contributing to abduction, flexion, and extension.\r\n\r\nPulling movements such as rows and pull-ups rely heavily on the latissimus dorsi, which assists in shoulder adduction and internal rotation. Meanwhile, the trapezius and rhomboids stabilise the upper back and scapula, ensuring proper posture and upper body alignment. The biceps and triceps, of course, are essential for elbow flexion and extension, playing key roles in both pushing and pulling actions.\r\n\r\nIn the core, the rectus abdominis supports trunk flexion and, more importantly, stabilisation through co-contraction with the thoracolumbar fascia. The obliques manage rotation and lateral flexion, but they also help resist undesired movement, making them vital in maintaining posture and core control. At the deepest level, the transverse abdominis wraps around the waist like a corset, helping to stabilise the spine and pelvis during movement.\r\n\r\nThe lower body contains some of the most powerful and functional muscle groups. The quadriceps drive knee extension in exercises such as squats and lunges, while the hamstrings manage both knee flexion and hip extension, contributing significantly to movements like deadlifts and sprinting. Interestingly, the adductor magnus often acts like a “fourth hamstring” due to its role in similar movement patterns. The gluteus maximus is one of the most important muscles for hip extension and explosive force, supported by the gluteus medius and minimus, which manage abduction and hip stability. Finally, the calves—particularly the gastrocnemius and soleus—are responsible for plantar flexion, enabling propulsion during walking, running, and jumping.\r\n<h2>Building Smarter Programmes Through Movement Fundamentals</h2>\r\nAn effective training programme goes far beyond simply targeting specific muscles. Personal trainers must evaluate movement quality using objective benchmarks, identifying imbalances, limitations, and compensatory patterns that may affect performance or increase injury risk. This might involve using movement screens or assessment tools that highlight where a client may lack mobility, stability, or strength.\r\n\r\nPreparation is key. Before progressing to complex movements, trainers can use isolated exercises and techniques such as muscle energy techniques (METs), joint mobilisation, and nerve mobilisation to improve movement quality. These preparatory steps lay the foundation for more integrated, functional training later on.\r\n\r\nEqually important is antagonist conditioning—training opposing muscle groups to ensure joint stability and balanced strength development. For example, strengthening the hamstrings and glutes alongside the quadriceps helps maintain proper knee health. As clients progress, trainers should shift towards integrated, multi-joint, and multi-plane movements that reflect real-life demands and support the specific goals of the individual.\r\n\r\nThis pyramid approach to programming—starting with assessment and isolation, progressing through preparation and integration—ensures a comprehensive, client-centred path to performance and resilience.\r\n<h1>Final Thoughts</h1>\r\nAnatomy isn’t just a topic to tick off during your qualifications—it’s the foundation of everything you do as a Personal Trainer. From designing effective programmes and preventing injury to understanding the subtleties of human movement, anatomical knowledge enables you to coach with precision and purpose.\r\n\r\nAs your experience grows, so too will your understanding. Don’t be discouraged by the complexity or the occasional uncertainty. Embrace it as part of the layered learning process. Focus on movement, stay curious, and keep expanding your skills through education and practice.\r\n\r\nIf you’re looking to enhance your understanding further, consider pursuing advanced courses in biomechanics, anatomy, and injury prevention. The more you know, the more confidently you’ll be able to help your clients move, perform, and live better.\r\n\r\nFor more tips and in-depth training insights, follow our blog and join our growing community of fitness professionals committed to lifelong learning and client success.\r\n\r\n&nbsp;','Anatomy for Personal Trainers: What Every PT Should Know','','inherit','closed','closed','','42986-revision-v1','','','2025-04-24 11:14:29','2025-04-24 11:14:29','',42986,'https://biomechanicseducation.com/?p=42995',0,'revision','',0),(42996,18,'2025-04-24 11:16:47','2025-04-24 11:16:47','<h2 data-start=\"264\" data-end=\"548\">Anatomy for Personal Trainers: What Every PT Should Know</h2>\r\n<p class=\"\" data-start=\"264\" data-end=\"548\">Understanding anatomy is a fundamental part of becoming a competent and confident Personal Trainer. Not only does it support the design of more effective workout programmes, but it also helps you identify movement patterns, improve client performance, and reduce the risk of injuries. Whether you\'re starting out or levelling up, this guide explores the key anatomical knowledge that every PT needs to grasp—and how to apply it practically in your client sessions.</p>\r\n\r\n<h2>The Importance of Anatomical Knowledge</h2>\r\n<h3>Why Textbook Anatomy Isn’t Always Enough</h3>\r\nWhen personal trainers study anatomy, they gain far more than theoretical insight. They learn to identify and explain the body’s structural organisation, understand how various systems interact, and most importantly, apply this understanding in practical, real-world settings. However, the learning curve can feel steep at first. It\'s one thing to memorise diagrams of skeletons and textbook muscle maps, but another thing entirely to interpret how this knowledge applies to a diverse range of clients, each with unique anatomical variations.\r\n\r\nThis is where the concept of layered learning becomes so important. At Level 2, anatomy education focuses on broader muscle groups, such as the quadriceps and hamstrings. As trainers progress to Level 3, they dive deeper into the specific muscles within these groups, such as the vastus medialis, rectus femoris, and biceps femoris. Yet even this is only the beginning. With continued study and hands-on experience, trainers begin to notice individual differences in clients—like the occasional presence of a fifth quadricep muscle, the tensor vastus intermedius—highlighting that anatomy is rarely as fixed or straightforward as it may first appear.\r\n\r\nThese discoveries can cause some trainers to doubt their understanding. They might worry they don’t know enough or fear they’ll harm their clients due to gaps in their knowledge. But this is precisely where deeper learning and coaching support become crucial. Programmes like a Diploma in Biomechanics Coaching help restore confidence by shifting the focus from trying to name every muscle to understanding the actual movements clients perform—and how to support those movements effectively.\r\n<h2>From Muscles to Movement</h2>\r\n<h3>Observing Movement, Not Just Muscles</h3>\r\nRather than fixating on identifying individual muscles during complex movement, it\'s often more beneficial to analyse joint actions and overall movement quality. In fact, even if we knew the exact muscle responsible for a specific movement anomaly, it wouldn’t necessarily change our intervention. What matters more is whether the movement is efficient, safe, and aligned with the client’s goals.\r\n\r\nBy observing how joints move, how muscles coordinate, and where compensations arise, personal trainers can make more meaningful and practical decisions during training sessions. This movement-based approach not only leads to better outcomes but also encourages a more intuitive understanding of anatomy—one that grows through observation, correction, and reflection rather than rote memorisation.\r\n<h2>Major Muscle Groups and Their Functional Role</h2>\r\n<h3>Understanding How Muscle Groups Drive Movement and Performance</h3>\r\nTo effectively coach movement and design smart training programmes, personal trainers must be fluent in how different muscles function. In the upper body, the pectorals are primarily responsible for pushing movements, such as those in a bench press or push-up, involving shoulder flexion, adduction, and internal rotation. The deltoids are involved in almost every arm movement, particularly overhead presses and lateral raises, contributing to abduction, flexion, and extension.\r\n\r\nPulling movements such as rows and pull-ups rely heavily on the latissimus dorsi, which assists in shoulder adduction and internal rotation. Meanwhile, the trapezius and rhomboids stabilise the upper back and scapula, ensuring proper posture and upper body alignment. The biceps and triceps, of course, are essential for elbow flexion and extension, playing key roles in both pushing and pulling actions.\r\n\r\nIn the core, the rectus abdominis supports trunk flexion and, more importantly, stabilisation through co-contraction with the thoracolumbar fascia. The obliques manage rotation and lateral flexion, but they also help resist undesired movement, making them vital in maintaining posture and core control. At the deepest level, the transverse abdominis wraps around the waist like a corset, helping to stabilise the spine and pelvis during movement.\r\n\r\nThe lower body contains some of the most powerful and functional muscle groups. The quadriceps drive knee extension in exercises such as squats and lunges, while the hamstrings manage both knee flexion and hip extension, contributing significantly to movements like deadlifts and sprinting. Interestingly, the adductor magnus often acts like a “fourth hamstring” due to its role in similar movement patterns. The gluteus maximus is one of the most important muscles for hip extension and explosive force, supported by the gluteus medius and minimus, which manage abduction and hip stability. Finally, the calves—particularly the gastrocnemius and soleus—are responsible for plantar flexion, enabling propulsion during walking, running, and jumping.\r\n<h2>Building Smarter Programmes Through Movement Fundamentals</h2>\r\n<h2><span style=\"font-size: 24px; letter-spacing: -0.02em;\">Assessing Movement with Purpose</span></h2>\r\nAn effective training programme goes far beyond simply targeting specific muscles. Personal trainers must evaluate movement quality using objective benchmarks, identifying imbalances, limitations, and compensatory patterns that may affect performance or increase injury risk. This might involve using movement screens or assessment tools that highlight where a client may lack mobility, stability, or strength.\r\n\r\nPreparation is key. Before progressing to complex movements, trainers can use isolated exercises and techniques such as muscle energy techniques (METs), joint mobilisation, and nerve mobilisation to improve movement quality. These preparatory steps lay the foundation for more integrated, functional training later on.\r\n\r\nEqually important is antagonist conditioning—training opposing muscle groups to ensure joint stability and balanced strength development. For example, strengthening the hamstrings and glutes alongside the quadriceps helps maintain proper knee health. As clients progress, trainers should shift towards integrated, multi-joint, and multi-plane movements that reflect real-life demands and support the specific goals of the individual.\r\n\r\nThis pyramid approach to programming—starting with assessment and isolation, progressing through preparation and integration—ensures a comprehensive, client-centred path to performance and resilience.\r\n<h2>Final Thoughts</h2>\r\n<h3>Anatomy as a Lifelong Learning Journey</h3>\r\nAnatomy isn’t just a topic to tick off during your qualifications—it’s the foundation of everything you do as a Personal Trainer. From designing effective programmes and preventing injury to understanding the subtleties of human movement, anatomical knowledge enables you to coach with precision and purpose.\r\n\r\nAs your experience grows, so too will your understanding. Don’t be discouraged by the complexity or the occasional uncertainty. Embrace it as part of the layered learning process. Focus on movement, stay curious, and keep expanding your skills through education and practice.\r\n\r\nIf you’re looking to enhance your understanding further, consider pursuing advanced courses in biomechanics, anatomy, and injury prevention. The more you know, the more confidently you’ll be able to help your clients move, perform, and live better.\r\n\r\nFor more tips and in-depth training insights, follow our blog and join our growing community of fitness professionals committed to lifelong learning and client success.\r\n\r\n&nbsp;','Anatomy for Personal Trainers: What Every PT Should Know','','inherit','closed','closed','','42986-revision-v1','','','2025-04-24 11:16:47','2025-04-24 11:16:47','',42986,'https://biomechanicseducation.com/?p=42996',0,'revision','',0),(42997,17,'2025-04-24 11:16:53','2025-04-24 11:16:53','','Download Price Guide Validation Test','','inherit','closed','closed','','42987-revision-v1','','','2025-04-24 11:16:53','2025-04-24 11:16:53','',42987,'https://biomechanicseducation.com/?p=42997',0,'revision','',0),(42998,18,'2025-04-24 11:22:09','2025-04-24 11:22:09','','BE System of Exercise','','inherit','closed','closed','','be-system-of-exercise','','','2025-04-24 11:22:09','2025-04-24 11:22:09','',42986,'https://biomechanicseducation.com/wp-content/uploads/2025/04/BE-System-of-Exercise.png',0,'attachment','image/png',0),(42999,18,'2025-04-24 11:22:40','2025-04-24 11:22:40','<h2 data-start=\"264\" data-end=\"548\">Anatomy for Personal Trainers: What Every PT Should Know</h2>\r\n<p class=\"\" data-start=\"264\" data-end=\"548\">Understanding anatomy is a fundamental part of becoming a competent and confident Personal Trainer. Not only does it support the design of more effective workout programmes, but it also helps you identify movement patterns, improve client performance, and reduce the risk of injuries. Whether you\'re starting out or levelling up, this guide explores the key anatomical knowledge that every PT needs to grasp—and how to apply it practically in your client sessions.</p>\r\n\r\n<h2>The Importance of Anatomical Knowledge</h2>\r\n<h3>Why Textbook Anatomy Isn’t Always Enough</h3>\r\nWhen personal trainers study anatomy, they gain far more than theoretical insight. They learn to identify and explain the body’s structural organisation, understand how various systems interact, and most importantly, apply this understanding in practical, real-world settings. However, the learning curve can feel steep at first. It\'s one thing to memorise diagrams of skeletons and textbook muscle maps, but another thing entirely to interpret how this knowledge applies to a diverse range of clients, each with unique anatomical variations.\r\n\r\nThis is where the concept of layered learning becomes so important. At Level 2, anatomy education focuses on broader muscle groups, such as the quadriceps and hamstrings. As trainers progress to Level 3, they dive deeper into the specific muscles within these groups, such as the vastus medialis, rectus femoris, and biceps femoris. Yet even this is only the beginning. With continued study and hands-on experience, trainers begin to notice individual differences in clients—like the occasional presence of a fifth quadricep muscle, the tensor vastus intermedius—highlighting that anatomy is rarely as fixed or straightforward as it may first appear.\r\n\r\nThese discoveries can cause some trainers to doubt their understanding. They might worry they don’t know enough or fear they’ll harm their clients due to gaps in their knowledge. But this is precisely where deeper learning and coaching support become crucial. Programmes like a Diploma in Biomechanics Coaching help restore confidence by shifting the focus from trying to name every muscle to understanding the actual movements clients perform—and how to support those movements effectively.\r\n<h2>From Muscles to Movement</h2>\r\n<h3>Observing Movement, Not Just Muscles</h3>\r\nRather than fixating on identifying individual muscles during complex movement, it\'s often more beneficial to analyse joint actions and overall movement quality. In fact, even if we knew the exact muscle responsible for a specific movement anomaly, it wouldn’t necessarily change our intervention. What matters more is whether the movement is efficient, safe, and aligned with the client’s goals.\r\n\r\nBy observing how joints move, how muscles coordinate, and where compensations arise, personal trainers can make more meaningful and practical decisions during training sessions. This movement-based approach not only leads to better outcomes but also encourages a more intuitive understanding of anatomy—one that grows through observation, correction, and reflection rather than rote memorisation.\r\n<h2>Major Muscle Groups and Their Functional Role</h2>\r\n<h3>Understanding How Muscle Groups Drive Movement and Performance</h3>\r\nTo effectively coach movement and design smart training programmes, personal trainers must be fluent in how different muscles function. In the upper body, the pectorals are primarily responsible for pushing movements, such as those in a bench press or push-up, involving shoulder flexion, adduction, and internal rotation. The deltoids are involved in almost every arm movement, particularly overhead presses and lateral raises, contributing to abduction, flexion, and extension.\r\n\r\nPulling movements such as rows and pull-ups rely heavily on the latissimus dorsi, which assists in shoulder adduction and internal rotation. Meanwhile, the trapezius and rhomboids stabilise the upper back and scapula, ensuring proper posture and upper body alignment. The biceps and triceps, of course, are essential for elbow flexion and extension, playing key roles in both pushing and pulling actions.\r\n\r\nIn the core, the rectus abdominis supports trunk flexion and, more importantly, stabilisation through co-contraction with the thoracolumbar fascia. The obliques manage rotation and lateral flexion, but they also help resist undesired movement, making them vital in maintaining posture and core control. At the deepest level, the transverse abdominis wraps around the waist like a corset, helping to stabilise the spine and pelvis during movement.\r\n\r\nThe lower body contains some of the most powerful and functional muscle groups. The quadriceps drive knee extension in exercises such as squats and lunges, while the hamstrings manage both knee flexion and hip extension, contributing significantly to movements like deadlifts and sprinting. Interestingly, the adductor magnus often acts like a “fourth hamstring” due to its role in similar movement patterns. The gluteus maximus is one of the most important muscles for hip extension and explosive force, supported by the gluteus medius and minimus, which manage abduction and hip stability. Finally, the calves—particularly the gastrocnemius and soleus—are responsible for plantar flexion, enabling propulsion during walking, running, and jumping.\r\n<h2>Building Smarter Programmes Through Movement Fundamentals</h2>\r\n<h2><span style=\"font-size: 24px; letter-spacing: -0.02em;\">Assessing Movement with Purpose</span></h2>\r\nAn effective training programme goes far beyond simply targeting specific muscles. Personal trainers must evaluate movement quality using objective benchmarks, identifying imbalances, limitations, and compensatory patterns that may affect performance or increase injury risk. This might involve using movement screens or assessment tools that highlight where a client may lack mobility, stability, or strength.\r\n\r\nPreparation is key. Before progressing to complex movements, trainers can use isolated exercises and techniques such as muscle energy techniques (METs), joint mobilisation, and nerve mobilisation to improve movement quality. These preparatory steps lay the foundation for more integrated, functional training later on.\r\n\r\nEqually important is antagonist conditioning—training opposing muscle groups to ensure joint stability and balanced strength development. For example, strengthening the hamstrings and glutes alongside the quadriceps helps maintain proper knee health. As clients progress, trainers should shift towards integrated, multi-joint, and multi-plane movements that reflect real-life demands and support the specific goals of the individual.\r\n\r\nThis pyramid approach to programming—starting with assessment and isolation, progressing through preparation and integration—ensures a comprehensive, client-centred path to performance and resilience.\r\n\r\n&nbsp;\r\n\r\n<img class=\"size-full wp-image-42998 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2025/04/BE-System-of-Exercise.png\" alt=\"\" width=\"300\" height=\"287\" />\r\n<h2>Final Thoughts</h2>\r\n<h3>Anatomy as a Lifelong Learning Journey</h3>\r\nAnatomy isn’t just a topic to tick off during your qualifications—it’s the foundation of everything you do as a Personal Trainer. From designing effective programmes and preventing injury to understanding the subtleties of human movement, anatomical knowledge enables you to coach with precision and purpose.\r\n\r\nAs your experience grows, so too will your understanding. Don’t be discouraged by the complexity or the occasional uncertainty. Embrace it as part of the layered learning process. Focus on movement, stay curious, and keep expanding your skills through education and practice.\r\n\r\nIf you’re looking to enhance your understanding further, consider pursuing advanced courses in biomechanics, anatomy, and injury prevention. The more you know, the more confidently you’ll be able to help your clients move, perform, and live better.\r\n\r\nFor more tips and in-depth training insights, follow our blog and join our growing community of fitness professionals committed to lifelong learning and client success.\r\n\r\n&nbsp;','Anatomy for Personal Trainers: What Every PT Should Know','','inherit','closed','closed','','42986-revision-v1','','','2025-04-24 11:22:40','2025-04-24 11:22:40','',42986,'https://biomechanicseducation.com/?p=42999',0,'revision','',0),(43000,18,'2025-04-24 11:23:17','2025-04-24 11:23:17','<img class=\"size-medium wp-image-1338 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2016/10/Biomechanics-Coach-CMYK-300dpi-300x100.jpg\" alt=\"\" width=\"300\" height=\"100\" />\n\n&nbsp;\n<h3>Introduction:</h3>\n<span data-contrast=\"auto\">In the dynamic realm of functional movement, our bodies ingeniously adapt to compensate for inherent biomechanical imperfections. Rather than passively accommodating these adaptations, a Biomechanics Coach aims to address the root causes, thereby reducing injury risks and optimising performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n<img class=\" wp-image-28328 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg\" alt=\"\" width=\"366\" height=\"244\" />\n<h3>Philosophy:</h3>\n<span data-contrast=\"auto\">At the heart of our philosophy lies a commitment to challenging conventional training paradigms. We integrate new methodologies like functional training while refining existing practices. By continually evolving, we ensure clients receive comprehensive, effective, and personalised guidance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Understanding Intrinsic Biomechanics:</h3>\n<span data-contrast=\"auto\">Unlike traditional models, our program empowers coaches to evaluate clients\' intrinsic biomechanics. Armed with this knowledge, coaches can tailor interventions that address specific movement patterns and mitigate injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n<img class=\" wp-image-24100 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2020/09/DSC01482-300x200.jpg\" alt=\"\" width=\"384\" height=\"256\" />\n<h3>Challenges in Coaching Movement:</h3>\n<span data-contrast=\"auto\">Distinguishing between poor technique and issues rooted in biomechanics poses a central challenge. Sedentary lifestyles, for instance, can lead to subtle pelvic misalignments, disrupting optimal movement patterns. Incorporating intrinsic biomechanics screening enables coaches to design effective interventions.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>The Role of a Biomechanics Coach:</h3>\n<span data-contrast=\"auto\">Operating at the nexus of evidence-based practice and practical application, Biomechanics Coaches employ systematic screening and prehabilitation programs to optimise performance and minimise injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n&nbsp;\n\n<img class=\" wp-image-33153 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.06.11-300x287.png\" alt=\"\" width=\"419\" height=\"401\" data-wp-editing=\"1\" />\n<h3>The 3-Phase System:</h3>\n<b><span data-contrast=\"auto\">Preparation &amp; Capacity: </span></b><span data-contrast=\"auto\">This phase focuses on restoring functional capacity around key areas like the pelvis, spine, and shoulders. Through targeted exercises, coaches address imbalances and enhance mobility.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Stability &amp; Control: </span></b><span data-contrast=\"auto\">Building upon the foundation established in the preparation phase, this stage emphasizes core stability and neuromuscular control.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<b><span data-contrast=\"auto\">Function &amp; Performance: </span></b><span data-contrast=\"auto\">Coaches shift focus to optimizing functional performance. Through targeted protocols, clients excel in their activities while minimizing injury risks.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n<img class=\"size-medium wp-image-33154 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.07.28-300x213.png\" alt=\"\" width=\"300\" height=\"213\" />\n<h3>Asking the Right Questions:</h3>\n<b><span data-contrast=\"auto\">Questions like:</span></b><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<ul>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">How do I select the most suitable exercises for my clients?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Besides increasing reps and sets, how do I progress exercise programmes?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">Why choose one exercise over another with similar effects?</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n 	<li data-leveltext=\"\" data-font=\"Symbol\" data-listid=\"1\" data-list-defn-props=\"{&quot;335552541&quot;:1,&quot;335559685&quot;:720,&quot;335559991&quot;:360,&quot;469769226&quot;:&quot;Symbol&quot;,&quot;469769242&quot;:[8226],&quot;469777803&quot;:&quot;left&quot;,&quot;469777804&quot;:&quot;&quot;,&quot;469777815&quot;:&quot;hybridMultilevel&quot;}\" aria-setsize=\"-1\" data-aria-posinset=\"1\" data-aria-level=\"1\"><span data-contrast=\"auto\">When should I incorporate gym balls or machines into training? These queries highlight the importance of understanding intrinsic biomechanics for effective exercise prescription.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span></li>\n</ul>\n<h3>Qualifications and Finding a Biomechanics Coach:</h3>\n<span data-contrast=\"auto\">Entry into the Diploma in Biomechanics Coaching requires solid anatomy and physiology knowledge. Biomechanics Coaches, equipped with expertise, can be located using the Biomechanics Coach map locator <a href=\"https://biomechanicseducation.com/find-a-bm-coach/\">here</a>.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Why People Seek Biomechanics Coaching:</h3>\n<span data-contrast=\"auto\">Clients seek Biomechanics Coaching for performance optimisation and injury prevention. By addressing underlying issues, coaches help clients achieve their goals safely and effectively.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n<img class=\" wp-image-30683 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/12/DSC03820-300x200.jpg\" alt=\"\" width=\"353\" height=\"235\" />\n<h3>Conclusion:</h3>\n<span data-contrast=\"auto\">The Diploma in Biomechanics Coaching offers a transformative opportunity for coaches seeking to elevate their practice. Rooted in evidence-based principles, our program equips coaches to make a meaningful impact on their clients\' lives.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n<h3>Ready to Embrace Biomechanics Coaching?</h3>\n<span data-contrast=\"auto\">Reach out to us to explore the possibilities and embark on a journey of discovery and transformation. Together, we can unlock the full potential of human movement and performance.</span><span data-ccp-props=\"{&quot;201341983&quot;:0,&quot;335559739&quot;:160,&quot;335559740&quot;:279}\"> </span>\n\n&nbsp;\n\n<img class=\"size-medium wp-image-30682 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52ea-300x200.jpeg\" alt=\"\" width=\"300\" height=\"200\" />\n\n&nbsp;\n\n<hr />\n\n<h1></h1>\n<h1>Would you like to discuss becoming a Biomechanics Coach?</h1>\nContact us <a href=\"mailto:info@biomechanicseducation\">here</a>\n\n<img class=\" wp-image-28329 aligncenter\" src=\"https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg\" alt=\"\" width=\"464\" height=\"309\" />','What is a Biomechanics Coach?','','inherit','closed','closed','','33066-autosave-v1','','','2025-04-24 11:23:17','2025-04-24 11:23:17','',33066,'https://biomechanicseducation.com/?p=43000',0,'revision','',0),(43001,18,'2025-04-24 11:23:46','2025-04-24 11:23:46','<h2 data-start=\"264\" data-end=\"548\">Anatomy for Personal Trainers: What Every PT Should Know</h2>\r\n<p class=\"\" data-start=\"264\" data-end=\"548\">Understanding anatomy is a fundamental part of becoming a competent and confident Personal Trainer. Not only does it support the design of more effective workout programmes, but it also helps you identify movement patterns, improve client performance, and reduce the risk of injuries. Whether you\'re starting out or levelling up, this guide explores the key anatomical knowledge that every PT needs to grasp—and how to apply it practically in your client sessions.</p>\r\n\r\n<h2>The Importance of Anatomical Knowledge</h2>\r\n<h3>Why Textbook Anatomy Isn’t Always Enough</h3>\r\nWhen personal trainers study anatomy, they gain far more than theoretical insight. They learn to identify and explain the body’s structural organisation, understand how various systems interact, and most importantly, apply this understanding in practical, real-world settings. However, the learning curve can feel steep at first. It\'s one thing to memorise diagrams of skeletons and textbook muscle maps, but another thing entirely to interpret how this knowledge applies to a diverse range of clients, each with unique anatomical variations.\r\n\r\nThis is where the concept of layered learning becomes so important. At Level 2, anatomy education focuses on broader muscle groups, such as the quadriceps and hamstrings. As trainers progress to Level 3, they dive deeper into the specific muscles within these groups, such as the vastus medialis, rectus femoris, and biceps femoris. Yet even this is only the beginning. With continued study and hands-on experience, trainers begin to notice individual differences in clients—like the occasional presence of a fifth quadricep muscle, the tensor vastus intermedius—highlighting that anatomy is rarely as fixed or straightforward as it may first appear.\r\n\r\nThese discoveries can cause some trainers to doubt their understanding. They might worry they don’t know enough or fear they’ll harm their clients due to gaps in their knowledge. But this is precisely where deeper learning and coaching support become crucial. Programmes like a Diploma in Biomechanics Coaching help restore confidence by shifting the focus from trying to name every muscle to understanding the actual movements clients perform—and how to support those movements effectively.\r\n<h2>From Muscles to Movement</h2>\r\n<h3>Observing Movement, Not Just Muscles</h3>\r\nRather than fixating on identifying individual muscles during complex movement, it\'s often more beneficial to analyse joint actions and overall movement quality. In fact, even if we knew the exact muscle responsible for a specific movement anomaly, it wouldn’t necessarily change our intervention. What matters more is whether the movement is efficient, safe, and aligned with the client’s goals.\r\n\r\nBy observing how joints move, how muscles coordinate, and where compensations arise, personal trainers can make more meaningful and practical decisions during training sessions. This movement-based approach not only leads to better outcomes but also encourages a more intuitive understanding of anatomy—one that grows through observation, correction, and reflection rather than rote memorisation.\r\n<h2>Major Muscle Groups and Their Functional Role</h2>\r\n<h3>Understanding How Muscle Groups Drive Movement and Performance</h3>\r\nTo effectively coach movement and design smart training programmes, personal trainers must be fluent in how different muscles function. In the upper body, the pectorals are primarily responsible for pushing movements, such as those in a bench press or push-up, involving shoulder flexion, adduction, and internal rotation. The deltoids are involved in almost every arm movement, particularly overhead presses and lateral raises, contributing to abduction, flexion, and extension.\r\n\r\nPulling movements such as rows and pull-ups rely heavily on the latissimus dorsi, which assists in shoulder adduction and internal rotation. Meanwhile, the trapezius and rhomboids stabilise the upper back and scapula, ensuring proper posture and upper body alignment. The biceps and triceps, of course, are essential for elbow flexion and extension, playing key roles in both pushing and pulling actions.\r\n\r\nIn the core, the rectus abdominis supports trunk flexion and, more importantly, stabilisation through co-contraction with the thoracolumbar fascia. The obliques manage rotation and lateral flexion, but they also help resist undesired movement, making them vital in maintaining posture and core control. At the deepest level, the transverse abdominis wraps around the waist like a corset, helping to stabilise the spine and pelvis during movement.\r\n\r\nThe lower body contains some of the most powerful and functional muscle groups. The quadriceps drive knee extension in exercises such as squats and lunges, while the hamstrings manage both knee flexion and hip extension, contributing significantly to movements like deadlifts and sprinting. Interestingly, the adductor magnus often acts like a “fourth hamstring” due to its role in similar movement patterns. The gluteus maximus is one of the most important muscles for hip extension and explosive force, supported by the gluteus medius and minimus, which manage abduction and hip stability. Finally, the calves—particularly the gastrocnemius and soleus—are responsible for plantar flexion, enabling propulsion during walking, running, and jumping.\r\n<h2>Building Smarter Programmes Through Movement Fundamentals</h2>\r\n<h2><span style=\"font-size: 24px; letter-spacing: -0.02em;\">Assessing Movement with Purpose</span></h2>\r\nAn effective training programme goes far beyond simply targeting specific muscles. Personal trainers must evaluate movement quality using objective benchmarks, identifying imbalances, limitations, and compensatory patterns that may affect performance or increase injury risk. This might involve using movement screens or assessment tools that highlight where a client may lack mobility, stability, or strength.\r\n\r\nPreparation is key. Before progressing to complex movements, trainers can use isolated exercises and techniques such as muscle energy techniques (METs), joint mobilisation, and nerve mobilisation to improve movement quality. These preparatory steps lay the foundation for more integrated, functional training later on.\r\n\r\nEqually important is antagonist conditioning—training opposing muscle groups to ensure joint stability and balanced strength development. For example, strengthening the hamstrings and glutes alongside the quadriceps helps maintain proper knee health. As clients progress, trainers should shift towards integrated, multi-joint, and multi-plane movements that reflect real-life demands and support the specific goals of the individual.\r\n\r\nThis pyramid approach to programming—starting with assessment and isolation, progressing through preparation and integration—ensures a comprehensive, client-centred path to performance and resilience.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-42998\" src=\"https://biomechanicseducation.com/wp-content/uploads/2025/04/BE-System-of-Exercise.png\" alt=\"\" width=\"300\" height=\"287\" />\r\n<h2>Final Thoughts</h2>\r\n<h3>Anatomy as a Lifelong Learning Journey</h3>\r\nAnatomy isn’t just a topic to tick off during your qualifications—it’s the foundation of everything you do as a Personal Trainer. From designing effective programmes and preventing injury to understanding the subtleties of human movement, anatomical knowledge enables you to coach with precision and purpose.\r\n\r\nAs your experience grows, so too will your understanding. Don’t be discouraged by the complexity or the occasional uncertainty. Embrace it as part of the layered learning process. Focus on movement, stay curious, and keep expanding your skills through education and practice.\r\n\r\nIf you’re looking to enhance your understanding further, consider pursuing advanced courses in biomechanics, anatomy, and injury prevention. The more you know, the more confidently you’ll be able to help your clients move, perform, and live better.\r\n\r\nFor more tips and in-depth training insights, follow our blog and join our growing community of fitness professionals committed to lifelong learning and client success.\r\n\r\n&nbsp;','Anatomy for Personal Trainers: What Every PT Should Know','','inherit','closed','closed','','42986-revision-v1','','','2025-04-24 11:23:46','2025-04-24 11:23:46','',42986,'https://biomechanicseducation.com/?p=43001',0,'revision','',0),(43002,18,'2025-04-24 11:24:00','2025-04-24 11:24:00','<h2 data-start=\"264\" data-end=\"548\">Anatomy for Personal Trainers: What Every PT Should Know</h2>\r\n<p class=\"\" data-start=\"264\" data-end=\"548\">Understanding anatomy is a fundamental part of becoming a competent and confident Personal Trainer. Not only does it support the design of more effective workout programmes, but it also helps you identify movement patterns, improve client performance, and reduce the risk of injuries. Whether you\'re starting out or levelling up, this guide explores the key anatomical knowledge that every PT needs to grasp—and how to apply it practically in your client sessions.</p>\r\n\r\n<h2>The Importance of Anatomical Knowledge</h2>\r\n<h3>Why Textbook Anatomy Isn’t Always Enough</h3>\r\nWhen personal trainers study anatomy, they gain far more than theoretical insight. They learn to identify and explain the body’s structural organisation, understand how various systems interact, and most importantly, apply this understanding in practical, real-world settings. However, the learning curve can feel steep at first. It\'s one thing to memorise diagrams of skeletons and textbook muscle maps, but another thing entirely to interpret how this knowledge applies to a diverse range of clients, each with unique anatomical variations.\r\n\r\nThis is where the concept of layered learning becomes so important. At Level 2, anatomy education focuses on broader muscle groups, such as the quadriceps and hamstrings. As trainers progress to Level 3, they dive deeper into the specific muscles within these groups, such as the vastus medialis, rectus femoris, and biceps femoris. Yet even this is only the beginning. With continued study and hands-on experience, trainers begin to notice individual differences in clients—like the occasional presence of a fifth quadricep muscle, the tensor vastus intermedius—highlighting that anatomy is rarely as fixed or straightforward as it may first appear.\r\n\r\nThese discoveries can cause some trainers to doubt their understanding. They might worry they don’t know enough or fear they’ll harm their clients due to gaps in their knowledge. But this is precisely where deeper learning and coaching support become crucial. Programmes like a Diploma in Biomechanics Coaching help restore confidence by shifting the focus from trying to name every muscle to understanding the actual movements clients perform—and how to support those movements effectively.\r\n<h2>From Muscles to Movement</h2>\r\n<h3>Observing Movement, Not Just Muscles</h3>\r\nRather than fixating on identifying individual muscles during complex movement, it\'s often more beneficial to analyse joint actions and overall movement quality. In fact, even if we knew the exact muscle responsible for a specific movement anomaly, it wouldn’t necessarily change our intervention. What matters more is whether the movement is efficient, safe, and aligned with the client’s goals.\r\n\r\nBy observing how joints move, how muscles coordinate, and where compensations arise, personal trainers can make more meaningful and practical decisions during training sessions. This movement-based approach not only leads to better outcomes but also encourages a more intuitive understanding of anatomy—one that grows through observation, correction, and reflection rather than rote memorisation.\r\n<h2>Major Muscle Groups and Their Functional Role</h2>\r\n<h3>Understanding How Muscle Groups Drive Movement and Performance</h3>\r\nTo effectively coach movement and design smart training programmes, personal trainers must be fluent in how different muscles function. In the upper body, the pectorals are primarily responsible for pushing movements, such as those in a bench press or push-up, involving shoulder flexion, adduction, and internal rotation. The deltoids are involved in almost every arm movement, particularly overhead presses and lateral raises, contributing to abduction, flexion, and extension.\r\n\r\nPulling movements such as rows and pull-ups rely heavily on the latissimus dorsi, which assists in shoulder adduction and internal rotation. Meanwhile, the trapezius and rhomboids stabilise the upper back and scapula, ensuring proper posture and upper body alignment. The biceps and triceps, of course, are essential for elbow flexion and extension, playing key roles in both pushing and pulling actions.\r\n\r\nIn the core, the rectus abdominis supports trunk flexion and, more importantly, stabilisation through co-contraction with the thoracolumbar fascia. The obliques manage rotation and lateral flexion, but they also help resist undesired movement, making them vital in maintaining posture and core control. At the deepest level, the transverse abdominis wraps around the waist like a corset, helping to stabilise the spine and pelvis during movement.\r\n\r\nThe lower body contains some of the most powerful and functional muscle groups. The quadriceps drive knee extension in exercises such as squats and lunges, while the hamstrings manage both knee flexion and hip extension, contributing significantly to movements like deadlifts and sprinting. Interestingly, the adductor magnus often acts like a “fourth hamstring” due to its role in similar movement patterns. The gluteus maximus is one of the most important muscles for hip extension and explosive force, supported by the gluteus medius and minimus, which manage abduction and hip stability. Finally, the calves—particularly the gastrocnemius and soleus—are responsible for plantar flexion, enabling propulsion during walking, running, and jumping.\r\n<h2>Building Smarter Programmes Through Movement Fundamentals</h2>\r\n<h2><span style=\"font-size: 24px; letter-spacing: -0.02em;\">Assessing Movement with Purpose</span></h2>\r\nAn effective training programme goes far beyond simply targeting specific muscles. Personal trainers must evaluate movement quality using objective benchmarks, identifying imbalances, limitations, and compensatory patterns that may affect performance or increase injury risk. This might involve using movement screens or assessment tools that highlight where a client may lack mobility, stability, or strength.\r\n\r\nPreparation is key. Before progressing to complex movements, trainers can use isolated exercises and techniques such as muscle energy techniques (METs), joint mobilisation, and nerve mobilisation to improve movement quality. These preparatory steps lay the foundation for more integrated, functional training later on.\r\n\r\nEqually important is antagonist conditioning—training opposing muscle groups to ensure joint stability and balanced strength development. For example, strengthening the hamstrings and glutes alongside the quadriceps helps maintain proper knee health. As clients progress, trainers should shift towards integrated, multi-joint, and multi-plane movements that reflect real-life demands and support the specific goals of the individual.\r\n\r\nThis pyramid approach to programming—starting with assessment and isolation, progressing through preparation and integration—ensures a comprehensive, client-centred path to performance and resilience.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-42998\" src=\"https://biomechanicseducation.com/wp-content/uploads/2025/04/BE-System-of-Exercise.png\" alt=\"\" width=\"300\" height=\"287\" />\r\n<h2>Final Thoughts</h2>\r\n<h3>Anatomy as a Lifelong Learning Journey</h3>\r\nAnatomy isn’t just a topic to tick off during your qualifications—it’s the foundation of everything you do as a Personal Trainer. From designing effective programmes and preventing injury to understanding the subtleties of human movement, anatomical knowledge enables you to coach with precision and purpose.\r\n\r\nAs your experience grows, so too will your understanding. Don’t be discouraged by the complexity or the occasional uncertainty. Embrace it as part of the layered learning process. Focus on movement, stay curious, and keep expanding your skills through education and practice.\r\n\r\nIf you’re looking to enhance your understanding further, consider pursuing advanced courses in biomechanics, anatomy, and injury prevention. The more you know, the more confidently you’ll be able to help your clients move, perform, and live better.\r\n\r\nFor more tips and in-depth training insights, follow our blog and join our growing community of fitness professionals committed to lifelong learning and client success.\r\n\r\n&nbsp;','Anatomy for Personal Trainers: What Every PT Should Know','','inherit','closed','closed','','42986-revision-v1','','','2025-04-24 11:24:00','2025-04-24 11:24:00','',42986,'https://biomechanicseducation.com/?p=43002',0,'revision','',0),(43004,0,'2025-04-24 11:36:46','2025-04-24 11:36:46','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"07551930686\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA7SvtnOqGvtIKJfupehOih6KKaqN9qh-NfB_9RjeylaIP0gldr29KbXkYYFJKeM3AHYh9VS-prlbQqMlZLSXFgiJmsdXX8gqVCmCaLjdGKgLmYmf-jXIK3un43ZH70qiNvFpo-Khj_u-V3zVbyjOelEfLx4UzftFydWiKXk77vvC0TGN2EVWQ0oZYz0DRig94ZsaypeQ0OyNnuRR_bOp1NOv3AlX7ZKHeu-UhDomX2IUe_MVLmHhV9tNJ4uNwyDITni67_iW7OlYVSixsHQZkGWQ0--qRzfqKhpCYsNXpLXDXNuNPnPGv8nTVm9vFz8ovMH93KEjlSihi1mmQwpDVoiDlbx6EWc9wmBlnHcNVwLMHI7kdBhCEASBPLoUaVLcrDF8oRPdpvXr0_-S_F_42nmRxIgd5Nbj1sJwDBjG9dAegM4IoN9k1GkZLo61EcBMTF-ScoA6KahJ-57feCB46nYsl6fdabWh6JnaeKIfs-xLTB-qSSwRZFVcRbAZUvReFO8b0ApNTNI-Xbk9GGhdrjwMlHAvm_bHPmaiVeb37zEIwOHRtqG9qn8YIbleLfjm-TiFDqNWv1jGs-ZEpoR0zE8qfXOxmGJcuKoH0tYUOwnO_y8CH3820_3zNwyui1yLnZBqdFlyTEBeVbKRdzURmR4yOIk5LS566Ltdd-GrSzGP_77HtDfmRvGZsAv4z679Dn9mN5ef7Ma44Aj4bjTDhpLRI3dHraYOfVXHcF-aNJG9x2jeG3YYq6sNj0FpttSkgjU3Rn9tZwm2-LARhfuP2FUqB7QdPL_j4ZSbd2dTZiiIKtsPoZoHqjQIeVZOFZRsGlcztaGaOKq1RzCgKyJcPtgosloRcUDrQ1G3owR6rWwWVtRadVhkczjpClssWG3-PNxq3_hQCO-Zr5s0oTizZsZyuWg3gNTDCV7cjAs_6AnUOL8Q37IKzHLZFsOSN8bmRkU3w9qLECNPKgk6YPs3N07Ok8skykA_ay6BafTquTJsfZUvegrSVXAWinjLRTR_bQ6riFw7aO9CVG4Xpq8d9UcA16lt9qkkVttFN_kz30Q4g-jQcY2g16v5_-YmRME1SjTV7LTsOdCBUv823dNrmTxV_G_HYTevv6WC2NUwZMurnYGDhYjsS6MF7mvVHP_0iOFzSyB9n9tryiYNsHaXCJz6toaZbg5bfy-rvSgRDA73EeBGQoJy4VNsPrCSXmgwKSgKn635E1_-oqk-uFAYJxa52BjQOmYgmGnT0drHUib2nJSZeHjda2XQirlkTj4RtD9gcm_utIggyQtW9PXVuCXxMJI_9Kdv5_ITmdVGaO0_VeChLFicd2-jVFS7ER-5155i0V92Wvj3gXIn5zp3yJ5Eqw4ItEKFZKD-qr7V6GfMiVfLSGttx0LtFnLn8vRBuyO77VM4lubeMGcryQLIhRIuCRAQoaxt-v6eTpr9c_S5PgSdtxV7M62HReWeJRi6qMJUdVMgAna7-XUknHUiFHyKDEsW2aQZ4GI70NcPfbmXrfz_C7fRBEt71PMZiBphaIM6TJYqno4mL-g118uYLctKTpF55OebQSI03NUcYcN_CsNFxVBvuby0l6poxRLXEeukPImiEq-T_PkGEu-PvH8Mt2jAxjc_T8rbrlk1RMJEjuy-G-L9oHJolFTf8rLUzeKepzMDskekYmlqj0xKivt1h1VPxb7AJHsC8OU51Zdta3qJldKHNUQygzvlSdG59bzmFeVrOCnkC0y1EPiJi4C9cQkP8-eNyOAEcywdGTR4nPJloy3IRLMuX-kMdUcX8GXxLe7Zk6dfny91oEnmuCRzRsJEuLxMaDM84TLvVPTLpL6H2R9KPrjUKPac80wdLu0Vphj2HesfPbnR2-glq23ryzL69yFdPoCWcCvqPo9NQgN0yQQa0b7ZUuHo3bPxvbdNTADEgEk442M78iG20Vg2I18dpXnQ6CtUxaBx8TBm87fGnrWtsHxr8HVM0y88NUERZU4zTZLIfFD84QKPJhsI2EqcNoxDzhFeEVVyR5bCU9_5eMG9jK-T4_oezIl3Pw6VMW2OuqfpKLVx3k51r3BOcmUsu3ETJVSQUJUZmJ6OomZZtqKExr0k7L5fRlPqCeyd32J0e7rbIhRu3lrLZNIh4kpSIUULgUIgHAnBs-Xpf2clknLs3oAhSCpZaFAdepe0sOd\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a2231c4e097-18748509','','','2025-04-24 11:36:46','2025-04-24 11:36:46','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43004',0,'cd-form-entry','',0),(43005,0,'2025-04-24 11:36:58','2025-04-24 11:36:58','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"test\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA4cTo8LHTCaVOkBbpzWZ5xQIUkLtqyjE60ERnns4PuDFEstAHNiy2-fpf7ga6USsvlC9yPuXb3VGE397P6DLAaLcM9cg_jWhZVNB3er_0pnZmyYrJORz2kNd_xNOshoRg44iEEqfJg4FxNIlEsKIOCb_ifkFbwtoGOm-2UlPKQNwPX0CTZv7udABrVBVzDY7inTBLeYSioRomvYvn_Z9-JieVcx5X1zUbJrPc2j1aB9XPgdTDpKsy5r4EehrcAEBZEHJH_Q0_H1IXX9YV3x7LTyzDv2_93jOTkm6oUH46sNrI1i6B7I5hLU-cUz3-jhb-cpLCRQEO7_A0mTbMeBO5SPW2Gem2N65d1-d2ee4NwuBiQXJbo1_26Bm6rD5BAfJKRZe6bfSMyCh9jvE3PF7T3VINCRRV38Xq1XLp9BsUjvolubcYG9IQzZIryQ0_8JpASKz9izz3fAtqvLVaUjwKw6Qho87fmd8n6TE6C1rlTCzPl8G-wxVcUQdvdNXueqPpWbGfSHevq8moESOEsAz3Aqoo54zxplUZseiCH3CWtpjjpTs4914rClV-KuHbobSTla-Knb3duMPH2mCt5DYDICuk8hPM5wvXxtXvkOZSclt_noFrA2RNZ0cRJndqZeZ381ntcIJgPXbOfyMgRJVJyeaI7rscfqwNWaJNH218EbOP-Rv5v06QoyQHQPDFgFX-0RP0l6daafcZJjbX-Yo72mOUFIIRkGCUpZI7PhC6cZPvKcBRf591hL1Jepiz1fb0hPO_lZHQYNBXCtr3aICRYTLskqTrhoRidX2QsXLheea-fHdIVVXTqVu4A1PM0xU6G9LBLOYIEvUiHQgGouSE_E6mmgrFfFt9lnU1i1TcBcOjt9ARjIZ_BBC83itfHxUMjiPzTvbVY27nlESgdqg591XDcsXdY26Mqv78HkppBzbLJ6qwRo31tu0yt5ODnVwatidGzFKHjCHtK399ZDjdZUzuJ6ezXdYmT9ZC-YYyoFFE6GTUtpz6eNvl7l7O1i-QB1TtG_56UHMmSIikFv9b__xtPJcikUK-N8XDgEIATooVD2WxbcUlO4Viuf0vlpfGHkxQdS3HEAeSIdEbKKVM52ABk4Z6EF0zIPEe3g2KHzy2YPQCpQ9nua3cmF-nnbzRLx6iihxx-SVOo38P9t3MtcEjEIFXIkEssAiOHng9ZFLBOp-Nau5_qO03cZMmoML7Em2DwknmxRhNNJj8MbHjN18H0OHosZeL6XH4qYpSILfoAjnQepru5ImxjtQNJaiwsdI301zGJfxSAZ74gA8HUIpN85DqAUWsV61zSfblOoRePCnditS_RSKWdNkNcS-ZHRuBuXBm99i19wIUYdLNWBwcACG3Pf7kcliOgFmiT7xEV_j19-ea9iNdizmpljfG1y0IIJpA0hU16cqFKmW2QbFwd_FnIUvMLb785CTcKfYaWMH-ff3w3-3PBBsS6l-nUPAs1WmOp3b8D-bJKjtBBdBs42mAHcfd38ASMlEx50iqwvcM3Emi9LCXiSBGXMLfVdyAFm13VMtx63yw-2WU9KxrJWGDYTX5lylTrJYPtzG8opFyubx9CrwhO894lan2S3nvfkAolMdUcLXnSgMKdOSXDPVIyprzuLBFnL2xrzPUZP-14R8Q2gijhMTNBUjN6DwcFvnyGTqM8NZmKM96ZluGRJd26K2126vAiF-EeFP3w3cxaC4Uo1Lwx0zX7VHf089cS4pWFOtJCPKYAjLJL1Y8MfKRgWIkrFucDU_DE-_HRt749G_wYfHqF45D3SkLETxrK04Wb6PwUEfv51HPFI9B6-y0G55LhXb15irhnjOdxlGgcIS-YLJqLNY_ba19jKnkpvEXJerfXwjoKOteSuUShcnnTxvXtyTsaixuqvS0WxF6UnEe9u4hziCtqgfSdazGvW7TvQYYlm2vmRh34tRWZEp6te0JWIh6VFg5mf3Q7ONRNUS4xwj1URcDrc_1XnABdSjzNWNVsnaWGoxNtMyoLo0OD-Di3B05YFpYdGo7GiHnKKuIMem9dGEh4wBTkj-HI4w1aQHaHZtcsqD_rv1yCGqXm83xHpUfIRaA9K--x1c0wnw6un_PafsnPMXfvARIzWoxy07EnraqxfDX9rTI88s1EffFH9I8gs-dGMe9wkOw9_FQA5k5mcMonKn8T8XCxV\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a225669ce45-68584220','','','2025-04-24 11:36:58','2025-04-24 11:36:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43005',0,'cd-form-entry','',0),(43006,0,'2025-04-24 11:45:43','0000-00-00 00:00:00','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"test\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA5355a1vf5FtDrCblh4c4TnSzaDLQlJRmEJnixqaVDxSTPRblf4q1UR8i4pEJ09ak0ThaPUFUT2WRi6wDmxtNu9lJn-FlTWCbS4vS8szE039KJWfXB_p1HICesNf42l4WMTf98ALjLGxWS_v4TKxE4BbjlHrGYpha19AEAZuISV1eucjTZ5HbVAhQlclVvX3yxD5rjfOxtP8hpRTnNvn85RtZJahqi4KObDOSUWAymoIlaw4jfTHnaJEu7bhpdrHnsF1xw8I5zHdOJufG-Dju5uVgfvLiUCu1lReFl2eCkCGvgXd6Va2IIqslOM6RYsADG_PJFqnsiiwe_yI0unxz7g2lUw2FTTnolW_Ny7o-WIDjKxwoV-KuPnMWcKPMTXpwEVyHiVocdAoN92zVzErITDF8O1IdB2Bu5bKN8vkXB2Eh6oHTwYlcXqM3ccjq0uEfRSnan-Kx11X0G9tlAR6WuoglJDyfPjWGnrP6KZpFT2-9BTnolaGC3BVgVuQD5VnBZmRytdj3UqiIaMIFpHr862UhNWOg6zMBPIyiKgBJWA-5iKSsKSgfJFjVvjNNVXDRX13GzoEnm_UV_BFLM3YZ8UYySKNd45nKZBsn7phiKh_FZ9Gi0fkwJomYOI6I66NYgfFCDCRca5LCwl-bcNLtidF4ETbsPLBoh8ko9xjxGx86HZgYcYmWDvhiqZMzQ1Ji0fqFouJWXG9yqo70Ud1b2c1mNkfb-74jqz-5TFJSHX63NL_nm-Hy1sB7eBJaYP6Uqf_FwLabI5Yxfy7ihQWpgWPdHIhE2uOfRaYF9j3UEcVf7gYt20729XF3LryFSqUSLRLCqLcecPecaol6dakphS1Ej3OAPvK1HY0ixm43NarUdbcinLCOA1rB53MFcRVXevF_A4Gij60FjlXJ9FmIoxqOwGf3fXiJI_PXcQk1DYkUoL7fqzO_CMUHd8OEw8ReBU-pG5DbT4WkDnN2985qgjMBKvkcuzzTSnzNUY9RafWsioHhGsANtfZIWHNMhUAKnW3Akq3nfS8d1aCiIMqtCzKpGMnchcAYcHPN5UswyAqLhchOgIXl65F0jUT4qVSQy7a_U9mnSjNpTo0ywDiGzmyuFBFqpSNMEhNKLxZv2dUCb9msC235ksq04P8mx3n0v_lYd4bEZOqYaPfDH8CYhqHS5lNKWEfFgtJYGQ2vKIyCCuFmKLDP7t6nGxukxaJZDRsHlDbY_UIk2w2wYE0ox8tAUToBFqGh7sDuudJBfMpCGwHqWerin6HGgRYEyokGU0vW_rXHQ-7G0P97MuAZkNHeeRQbsaPU6fM-C-jP1-ei3dcMWVn4-aCbVc3M-UX4tI8RiZysiUk_FWx_FOCJ6omIMED28Y4qzESrtvXRinlpVd8kGSGB3i3ZkPO1EMj1orEcSxFsWbnGWkY4O-6XIl6I3T9SsHNbvUdtdoNqy3tS4Rv1-vUWYF41YLHhNWmXg39YndjxAbgYF2WB0nQ2dtPq5dH06CQxpVazHwiq8JO6bpvNRU0RmvcHQONmzYHDGqY2R5bG0lNVCsXqbQ5un_yMGI97ajstJFc6A6FZcQJsZazBnSoQN7m4AtYhbVtAyQAz6a2ThlZ1Ehhmdb3DtnE_IBgA7ghh14Vl9vsSq3Vf5qYq-6rxwfvbO1kNQPoHmoIe8jNJNW8rkfJrTUmI1K86Gf8KXIT141cZOBoh5be0Vtb6vn8Medh6mY3NWHhfJPnyDK_xsyZJu6pn45AEj3dpWD1RtKs7_4T2XpPybjprIjYumBggaNFns_9nRTYSC_YmpgAaxmISYYhKouV-3sLMYqbtMbLRf_sajZkpqs9GrZRLxp7d-lI8cqMmQfhJMFDxSLEBjMoMcAAQkTaU_vPnz2Y1u7JacV3XmJy7umUsct6T9XsOOHAsIN9PJKzWK7cgWd7y99EYR6kEiTeiUGfZ9YsPKXHpxioDqZI7rT30RYatNOW5gmNLPDyNpEvqBa_ttsAXHZGcfzj9cwzTEbL3JDnb101RMBgXodwYWcD8W0EF4EpKIoENlCwZVp5Lb5eVr4sXFM0G65LZMgpIztF6KF-cwWOWDbeUV2rc8Y3gd48XEmhKWaa4PBusXGLyGvApyZcjHAxYDIkQL7z-P5auT6XNGzXBY-2Qig4thfczqdZ7vm0ndG_ixK-wTwb9Txn0LgOmoFxGb5AJjKtSAiHA6oag\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-680a2467b5d8a6-17551939','','','2025-04-24 11:45:43','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43006',0,'cd-form-entry','',0),(43007,0,'2025-04-24 11:56:59','2025-04-24 11:56:59','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"test\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA5QwgVpch6dNzINW5Ab2aZLJu9KLrnzefPm9m0KcO9HnEKBVSV1nPRtTxsAi9O5Dg7rtX69A7DMCZcWLhtwOcVc7tGSzlJizv2Se-odqFS1putweUmoam_yeH3PjjNBAAW0o29TGEoFESBkCyZluv7ARcg0hiz1F9Im0vtgTDPOily1_2f_3pefQN2fygjf00qZnOwB1A2G9szUch8_aa5n8Vh6S87oRKoATtU5hhNrHKz4EApaSL3ajVlGMXeydBNL91qeboy0DrOy3kGZHu6F1SGtBc26hYJwo_Ft_pYiOaIAjzekl-ga6PxzyL84bkv_Tn6dIxyG1BKE6dsb64DYG2b5iZnAzgPHOFx0q_2vK-PXU9QsAbycUHbsOuvX-5QJoF_U9sgV1vjWb3kqRaeqqR2sQHpS7gSiMgoQHxaEp1ppnr3JBacLPN5kekfxgZAZVKLo7SumQ25UMBWVotUtAYGdgeCkqKy3G-dyw_YOpQkMSljAsdiE-a0ILCEJdyH46-4diuMiuVJUycN4pbRyTTqewrfFvUdAINGDx5E1FUUAvwAwILlQWCoaXHg6MccWukLXbHvA747H4kH7ZtIc76L4AFLWDDd2mGVPYwT8vDwFTKuBO-4OLSTQ2hySD8RKScXAY11jFaFNkzYXq8gpcYystewSRlq2RpKzlY_1Q_tl-pNaBiugDxNkfM5VMwfubVd4uDiXX3fVMNil73fVAZ6pODe9sWuVU1C10yvNw6gBVvV-84MBd65djd-qMvtvDudAD5MbRaT6Vgo8KnxBiTZqNAl8w17kDYGgnXPe8ja9iSeKj_-aLvYLbcrnymtwqw-Jb9mGIcWMaIPycXeV7RQjFWCMfMccbsBnXFakTjozFbaHc4gcG1c2IpbFuHSU-5NqHFbMydAXr-ZhkbdmWxTNp6yZkdgs1JG5517o8WI3Z7kdUmbDIV-pOBGTuQRP4xHD2iwKbqajnvXnLNMtYsCgdizJMPCPlhwzhEEx0Sd87Y_VW8KouZY117OB5dpP2xVyg6hYy5WFBXsPXwP9t-jYlngpIsRzwU8DoLB6Z_sUmtAwtx_JiDpXLgmGT3BuM5OLGSMM6qa1jB8hNSNs6m85fXtKEMFxiFGvK6rOJplkxtqxQMi1Q88jS1QyTo8LI0_iG7tQI1HyrklgyQSfHB251H5EdiIxwnY7Au9W0hqG_cOsaDn3kFPPz0awQMg66uwlS7m_-4kCXjZKL2mp7ElSkJ8sjkwxo4BlxTmh_VXerC2qlunk1uP4kABy8jZR_yqm_fNWcM5yG_afDUeYsce2XDAAbk-6EYgOyJVae2ehdfbl8JTZ1EVXoL7b2KLhiebEqyggvdBD-zQE3YN39RtAo-oZ5UspWKkM6i83Sop9UkPy1BsjZdld0IxiEE5fyb8XU09izCNgZaRlJ87aZSYpkBzcmy-juMqvCnDN_7ONqk9KJOdh5XSM13aAGNoIvBZWYqZfnVmThMm1l2iXksK_IzfEJ6IFeTTATEakJFs1_aaTTTYhFEkAzzACIaXM8Ipsz6AuFDYDbaX9bJK4rHU62mgLH-kNybU6KJE6V_DxseIzaR4wrROgQJK4ymMl-CBjODuB-KlH73-5CJsYAltRdALKF0AMYI193KaW6JLN9wp__0EXHsxVrgohIH-oDMt24XTNyjeDf2yygZbKS1g9-qkjjX6E9spyXs1zaplq6Vp3ZyTV_oQf6cYTMx0LYYameko7X7lF17E3ldIdSIaDGpLz3EAzZZCYGlKlb-mLpbw5olKQYSgk2_HwtecZaWbBL4TIRkjw2DLOtmVJWYEeHevA7rgDKnKJ0uUVnpjxvepLeXttq8fZ-rc7V_Oh2kKzuAEcP96J-Lywn-D217TlHD_VYyJ0GGJ1ZPRzwVMRpN9Yjsz7wnV4IrRx8kCpA_dXOxmsDns-hqCMFYt8lEJs1tBWarjwV5U4YnhY10BT2YQ51Nr5eLf_CCJRRl8-Z_BTx97LRcf4Yy6lLyPwgWJvwwacLWl0Xc04wxQnEL8hreYhjqBD2P5SFYzN0bLMxEsSqPFfXn73PE1EdFOhABPb-Hs97sGEgw9DpS_a23k28Cr1RlHFSBb6jHo5Zqiz-z5ABhPTGDNDUwnI_ottA0m9kwQ_Fzslsv9gYUAlfWzLx0aHkTSS1AGVQKXXP6nDW-Rd\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a270b438b26.97386785','','','2025-04-24 11:56:59','2025-04-24 11:56:59','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a270b438b26.97386785',0,'cd-form-entry','',0),(43008,0,'2025-04-24 12:00:25','2025-04-24 12:00:25','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"test\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA4UIWlde-8Is2kxpk5C0qGAjSgyw_e4Lt6-qjMsRVAVi66odbzC1E7aCvB4R6JIInJnb7PsgOr-jn_h-XnRRlg3g6p-yAT5EBj5dC_M3q630ENl4HEKLl_wg3q9ggrRBogKP91i7EY2nGdpK_7iJzvwZWFdDvPYrmmF7O2G8WBbFv1f0kpZkXf9lyTsl11bBBWDEwJS0_zFmVDr2B9Pa0Qv2V3Qc-c_LbPatt1BU_1udoLGHsdMKKpAFEobdkznEk5IHVfWYvQ7vKlOEkqPS-Xu0Vzk5hA3HKjoeUeI2Vt6k5PzBxa8sdoRG9cD2xSNqqxpRIY1kBwuKSsQzL29Cy6AtQzYwnx_zbrNbqtBQ1Y1NctrnEfuvVZEuFcRbgUPnBpSAqn1FowXZmAz5FFHtQvhlBTbhcRsCmKtjQg7elrAFEkspfsH_nsAa_QD9CXq4Luvrk1DGxIAc-9NywH8t-oMp1nhK7BRGz-cB3l7G2Z0bFF7aiIrT3_ZC_xNxgAHNGDy-rV8jFqwgAlzz--oPcpC1HW9DkKGovZoKi5ox9WEkuyFGhQvoPDcNVHSfjBA7rvWM0EdZkwme5Sa_YX58lj2haPzafpRIqee7NNZs0DM2fCnXnTu1WAGqXAeIXzFPnVwSqTbgeWWeighCQ2RvQzufcDpoF6mjoS40GPSYy6nIW7sZoWVv9bnbEBVnBGfFbA4vhvl75JAAAoUPI6_oupmlZihgvbbVcyCHHt2P_8T2BkRBir22obSygL1j2qX5kEKLhfVauDrGJ4uLjsmcMid14j808ESQc7Zc0GPgEQ1A0KKoeFtwN__-6ivr88f8SAuU2mGblcCJZR-p0nNCERoVFdGJDfzZzcRT4KwlN5OrFqFr8HyMoKnnK23BiIvGGPDdKd73us3ExCjqhjemcDmykMZwPHJf8aC_Bmrg4PhKNj13SC3i8mGSOcJb1tOp32dRV_8mpN5exX4pxyQ0C3hpLt06HibJYXdRW2p5vPI0O5AsmYjWzdkOCiOQVFFiA3wEV7c-LNT-e36srGmY2X5ZWMvVjRy3J69YwRPkGn1rDLQQWBeMHa0dIrIX5znHrVwIpR4wzHOmbPRGEo85bWhOrj74KOwa24di6LsxGjDVQYe9uBktQ-WhMOFAuD5TotxrgTIHJ_5oZ-7tIoG4R6cyvOiFzdxXVsc27gdAVc-vvmp8Oe3iZMJb3EqNoRhvbTo3gPGDT_6PqZ6YTPb0F9J2jqcrhio4qjJKxvLmfjjLNlOlNCaGwA9srAsmc6cHttS3z2bwFpt-6_YjRzs4JwXig3CI2Z7PdRugw_GMwqdGXybT2vqY1GYTYnxMbTOXEg5BEas1aI1uFAp9xf9pHRGeH5WhV5_OFk7jHOtnx9TYzaR6w6rWONpeF3PzxPjP5u_yM-orjkyJ1ONQ0wJj59eyA7MuBYue60hkmQAP3nuGDPV_N18z8G-jzj_6mRf18NOIabMs63B1ZLkapUGBFKXy173TwyppruACdpgJ_7S4fWFq3_ak0TvXJFSifQzQ7VofsogYbjXJ3WABKr-6hKcPVExh-5NrnNyS4_P3_mFDz9A3RNn7MuJIRR3eQggP3OGzs7pPPfdVYQ0AoiaozZNxEBWK3jgpsU5rD6EV8v8Z3fj3aLRM1j57UZmwmP_UDQ7ykL5LtWPTx4DMsFECjD8Bs9KpiBpf8JcAu_s-LDEKDGlJxOaYW1ElglJHFIBR0_DGBad7DvEtlq8fB0A-PjZeOtJZe75VqvY8XtQEWG5du4o_-U0BdqORrnlflb2tAQgbnz0bvndu8fRCsTti8Hb3Fk3a6e4TCMFyfNGcokYAFsN2juQY7WTHtqG417aXU-0oE0ImJQvyAhCcX65wy0vDZmVXdszCyenQSdJwggkUuwRvR798VvDMyCh-_8p65nf1lbZthYyRqgyr87EJuWfKF1fUAPH2D4ObTJXYI0PHE94RSzfLb5TkJSD1z4yWXQGhi_GkuYhh0JsDOTlus8sFBNR7dBNlgRdLLFEmUugpdEZ1XhndxohfsmICb0AfV_-q4Y6-5SwWnjaZlII_HXlcM9sBI9FXqDsKrSH3Y5Ph0fItjtd-q7nyDOvr5LNq81ZhYuV1MJxqMWxdmwRoueepD8Oo7a3H4zZ_HrCxOvUMFrE0gU\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a27cb503414-65921671','','','2025-04-24 12:00:25','2025-04-24 12:00:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43008',0,'cd-form-entry','',0),(43009,0,'2025-04-24 12:01:59','2025-04-24 12:01:59','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"test\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA57cWed8Pbry0c8H19rgazlh1b7gVJtp5LZth0UGmZyXp2HqC0VgWl21hIqnWP9qihk0TVbh2PCHc-I8XJFf05CxW8Ym52yMahDUlDqOkKnG22z9ZHkzHOXvHnkMoV7sW-q4m-DGnhA0uftegTYKYmxiizC_tAAwPymDpMIjkjPqNuP7ZgrpZF6D6xGWoYZTIkURIHxH-jZiECVoQn8_CVthKfOInHUk_-LQrLo6Pa-spmMyv5nP-_0FD6-RhmP701FI6Yima0lqp7K9KV_-8AZk4ufoWmnBBl4zI4RASrmrLgAKkUxdRGWc1G63TPsJvjIw2w42Ytvfrsb1W_HiBowrZMcfb67cOWgW6loONpf5ZiRxSn8cGuM6O-KTl_En8rIHI7mRrEUtE1APQqj1Eny0yJXOBgMOZJzXmxAMKNs5TKL_Jai1cKyKlhbh04skLW2z2KVlVpW8MqrBI61pAOuPlaVNpZ3k6kuQ4NRyQXTPmNjDgnSTdN1smsSfWn84QC6aVdRjOYPG1lbJzyKEZzWeSYLv7XZZgrjkBEhmNG43RsV-d1iqmwdEPfuLKvVOtiVETfYGlN48IT22K2qUgJZIR5fgNNMxzxl5QxBEbAckrVl53uKR8b17uQTsQ6uKNi0QQSRw9dn7T1ypV-H2bRrclYigVLoQ9e2JZVyGWfwGQ83O4-IVHRY4igNF0DvjYojQtoilt3W668G0ZE8d4akC4aVsD6xSAOXhfkqPBnM8pnVgdlEV318dM08cMoKqgVVwpUkUCuzLDJsc_n3N6xKbmlEmQexvaFKS9n9XtXUr7dJoh9p96iDK7BjvZbsh_8pEiTO-ycUFOMcgAevDKez7I07d5zVaFwcPPZ_cvyhzld3jpx8BGwnvdA8E5idZTLxp10thpEFz6KyfUsJ2MVfhYlZi8J8H8PhhTRprF8wtGGXIIw3SmW-SPwxIEigy7otE1IhsKR48p0VzF3XMO_QsT4bCJIxB_3iwayEwedTt9EPtUpA44RvLgj0PFUq2EK1hhRHQji9Mj8psHvCmx4DAr0-hRcPHKib74KYgRXZCK0lxxxwBnT53thCC2oX_J1PA7vSe9dHCwVf5Ezqy5AdsSgmQLgzjk7TZ0aoQHSuiH59eOlmtZZC3wuhEeb7zgcN0_PRHZDCczxDzeC4g0L9H_LOCsM4ez4ENkTPUcnSN-0yPYTUZEjSZimP45bytCGwfEWRj9gWXlAMsJS_ELfdmlxau7sQyfzAAkpbY1P5buIKcwhbs59175wPnDS907vgfd_uGem9NXPQIZx8LUAoHSqEZ6-GEP7lOg-GLPt9P_roJGtgwRkpgeVkLF211XShkBxKGG53zP7mgpX_8jNfoPAMHDIK2gt1nkUdNOUA13ExUH8zbw3EXywC5BGrdSyzDv9pylfcOdpTpR5hqLfIZDenP2IfKMS2HXgsBbXogsJkIfXOyDckAmUFUfNb4ukaMw19xETS8SxR2Lf6sOXZsbx9cZGpSj_psNlQdJ90Rz_R2VYgIsDvWyEUOkZe4JO6qdjL5tutDt4Fe6Dbc8Sgn4Z4iLcpDPbMbgdaxrARFAJzwGjdHnk1pPmdLnzgMN5rWkolXQguW_nI9XqOqwOULc-mUi8rwFD9VIc6ERzGdBIQxeBp4ieQoXQUOiNbxquP9u4NaCzBi6T6xap7ODS0O8p8cawuPxljGb-33fc5P3NZLtNXtIsPxWhcxuBW3lO9yHRxqMYJQjtgFaF4wjBQyU_aaoscA5QWsQOk-Z2UpLjMCWDsF5FpFKF_wf8ymlvTDc1cpUmTiCtfEUOTV6XDBRV1JYeneDEjffSWMWk9T0i57QWBj-OnMYRTy0yeBoATW3f-0hY9Rlpf2S4YmMRuEMBRJxbeb6fFlC54sQ-AlKSWLbQHQ0HiAf2OphxPPaOrQwIliSeX-Gb5pkYZn_bkAVgxKDNwmIxva7th6ZrADmA-XgePRECU_JpdMb62R-BEEeieqn8bBeEnjtDwtbmi9actBknOIlRZQ_6hybWIUkiueIv0_yf2m2lGEFXs3Y_KzsoOKAhpKIEIYpgB0Cutmg_J-GYAD0JFe09OsBpE0bSf_dlZ8iKgWl2NA_MsUrnPWeoGF6DBBdpNR908k-DQ021KLm_MBHskYNX-gtwW_URyvRw4YHrE60fICOPvWXhxiepy\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a282a0bb7a0-99564536','','','2025-04-24 12:01:59','2025-04-24 12:01:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43009',0,'cd-form-entry','',0),(43010,22,'2025-04-24 12:04:58','2025-04-24 12:04:58','','Download Price Guide Validation Test','','inherit','closed','closed','','42987-revision-v1','','','2025-04-24 12:04:58','2025-04-24 12:04:58','',42987,'https://biomechanicseducation.com/?p=43010',0,'revision','',0),(43011,0,'2025-04-24 12:05:40','2025-04-24 12:05:40','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"test\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA7NFxoEWK_b0R-283Ae96k4Tk432oKw39d3tAqbt0fwIbIdTGnGZZPUPtCdN7_wFySMXF6Pb_e_5Sgso1dApXl0VoJaLMFwDPyczmn4NHom2cu9hpKyKBB029HZ_hbC1O54Ga9S8eFwfC4XDqR0hVa7gSDEKKuDt79sjOchjbxZ7N72jyreJqurXH8aneYOSRK8-A0_YV8p_uHY_kjv0WCXFzJ6mOKVOsNBiDaFiqkQwDhAe-H2NGhrMIkMNneabFl4vxXrLM_t4oSgepnt1M2EpApwPT8NSqw3VhxxasYoJbrWNSzpLmm4IeMwBmPuuLuubthNoQVzsHX__CglbHErP4h6q9PzGhPbwHKuB56_zN4oH52jd5RoEDLMycp7TA4P3XoiL9KprWK73qNw7vo1AyXR2fJpvVSayXJhxpUFM9SKwWg0HuylENIkdZuAR4Jd8NdWPMkjZt_qUztGgwSPDRkVl0pF_ARZQr2WlrFlG2o3vB6HtiYNLTzjnDBzByCpt6UG-2rxi-Quxi9UE8OzfLiXxmSPRsUOElsNGwzt3_zFVrSan3_-b6h_zzOt96EAWlr8d6cBa8EnFHuMyxENfdP-qb2rOuSS3HD1vVJLeoA3m83UiZ5GasByThJjYRc3962JIc_nAa8pTKKQYGhCIKSYFidcr8zD-BqAkN5MXieN_Vg6KZV8CoGtT-oavcOrtdjCDXrZ5Gl5R6_Wzt30zaLnutv4vnc2zEASQkyA9CwWBdQu-3ZA7t72GA8RUDtKiN0JhaFAY_QFxaBkMEh4UacTnwwppNMe5EnXtdBI2Jn8EjP0mCY4vX7Bp_gHXmWLIbqX9AEMDdIBBNOEo6QQKEtbnr639kK2AEZvb5BIkmPZbD712X1ZCJAe8egE9dJoVHI56WP9XgiEnrBfTzxsdlUqJgt6vjVvtnRHUrldYDVA392OaU1a31LPaeqodDH3ExrNv9680uCXF82HWqQVwRbueiTXXBDRh7ySQx4RmHmcsmbvnSQoGgJvrnXWwLLVEknjApYLAObuqVSqofW4Lj69oULlhaBr57YMgFgpbEtCMlEuKhBMOIxiACYByPyCFpgK3fxGfQ-EbhJ1qgU2fulEKXkbSTjr57kscqbWlFgned_ZWkeDniGbdzlHi7wEjthRPxIuuk6OiwqD1sEt1uLnLjz3imMvfXfWWvLmRbutsOoyYBeXTgQs3xB6AXWq1_aUYr7dxenV1q1OvRugZ2TTXbhYBKPXge_HYrSaat_91lFeQAT06TISle_fn-fNep51MJcp1qyNLd5YbrVJwaarkojF8y2kT2Gd4lyo0b9c1EdrzSYem7qQfcu8ZP64XukCHjqTJtufSfN47wQf9gNfU1E_oWlcJV9afLpBMHXTR_5wmPNpxRDb-qLW6EVUjQTb7eIHAbJoOTEwV95jpn0D2Ylnzm-VMCLpdbmenMZlZJP0oZmTPnX9gytewah7TImNHNWSbIsOTzJzLSz3yRKDxZ_QKa0uzoeNjtCBLay33gFXJ3Kfqsyu3ON4K9zNlN1Yz-ES2q65QUe-R-kgwXPGqub_TrRb1EaiRxDbLyDttTqbtmb1AouWfPA8xCO-JHAjgcGvp28cXsuswunymB17-eDdXlxIinuFTbZQIecibuv6-SR1vwt1q8bnayxgJ5vFFPIadjpfI844N1APm983dqd3iszBzfbzbWOND8ueZvoQCRrO-kL-6fRjpoMtLHrrCmKy2usqtPPMURDQfs2Kmm3tdEjs9F_hTvz93n-oVH9ghR-bQeMTQ8yBI3UMN8_BaHxPN-6ZdahWYUEIVSFLesFHLYAFCbQjC1e0yxqF6Ou3FS6KcfG6SBgFzr2KKeOkMDcPXCWcB_wQhgjUMcUPeYv58A7GoEjRyZRhOROzJ7nJDFN-rOazW366eF42W-8G4YqhxlF6OXk_J9VB6vOE0Nq7h9Ez5ykjo7sRwsr75ZxRME65CkcbjFuWmejkdeAQMJejmLhhzDCBesP4BeJ0_3CPXaNdwUbLKjgUKpBZmzpm7QYi_322gwWhj_I1bYG1IXBUaISwoXfP9PXHdCJ6jatjQVeNAYmxQp0-qUGRpbw2JhsdPTnHwi_GWshiq4gurY_V7hFNeFwduH4ypA2r4_kwtV8FEXry2KSTb8tnQLB6cRzl8YPkZ63PlKxSFeSI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a290e649971-31868310','','','2025-04-24 12:05:40','2025-04-24 12:05:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43011',0,'cd-form-entry','',0),(43012,0,'2025-04-24 13:10:52','2025-04-24 13:10:52','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"test ignore\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA4-P0vvs78BOrbW9ACNwcyNh5XXmPmjCDC4lYewel8av83qvn4EEwqvRuHdybLK39MJ9ffms5_Q3yP7erWnOYiD8gHIL6txn0t5Qnsrj05wlS6M4hRRfoCRPENC06iDcbAG-2w4JypIWnBMZuptfJAEmu-j0LvKcy8AIkeDiAn0SXlSRscp7F4ji9YRoGlm99K_25FokEuEuVR5x9WFVW1jrmQlxI27z5esUxWIIFcgeldTZGbZviKYCy6VJbJDDUFDtdVaow6m2p2O8EyIDR4nKE8i5kYic8nNdoN4J0Fn8O9ejYSVb9i5MxF09PUI8iOzPjJVOWTFaDL_dytXj5bbe_j_F8YiqRY9ZOsXXwX8a8dIEd0y37haG298HJHJ9znvUAb3dPM0WRPSFrO0zKyn0wiw7eCHiPSIKnyhRQDGnEVb35nCE12pkQ5g7OmHWLUMv8x2eDwNK16qUUQMyB8D14tm9fRQ9TdYegWZhgL-hMdHOi8YA6f8QJPYzmK1EuSPFOCbiGRpb0fbPXrSeG9jJycP_g64OxG_DxkQMldX8cI9MEajrOqH-e09GRdiBEHWFPXBjKdTKVBW6sIPEtVDmbH65_8AxdwIH2not--fp1UXXL410PQtqCk4Gpv1xf4WYVhqx4xenNhjf7LZMAoJeKrdqaOjyMdpYmKsh5GRayQ8gSivMQKklOyYRHCgFGxua5ede1c-0eyybOsLZ5JGxcTVvrZYY2TPiFHq6-ux03eWVsIG8CLH0lQA0T0dD0gLf_gwtqnge4RfDrdJ784S73HpJxozghwzCuTVLWjw21S5v4JmRJfoD1Y4FsyavRBrJKrihNHosSlo4t4QHQDaOClbf865DmBpSehESuLFrllb8-8IPYoc2F-ofKPmNPYwe-XAJQzfdZTIqAU4k_jE2ZcHggCWrSVr_bddhoE6wXiJs1z1_aKRwlxBMgksnuFI8gqda8qir1-1vYn377bnK59eovLWB132QkEIZe052fmYCVGt8MfRuQPqgyDN6Ir5ZrzUUrI6jy-tcklQNWcCd431yRgkGNMyKU780vdnojud1g0lVVztYgSxDTBUwXTyqmIhuV-nK9-dZuSEEKV3GDDk5r0Xsn0dHUokBmsHnIpdp5Gu1uj3Mpd7aLI3IMJ8D2s_VxAkXzv2LzNJImZaSBTshxDLHuFsyoxAveiBExvnMh7CMVvQTDz_rfIxLbxtObRR_IwYdNvheYLp1bvlRlPx5bEH0abXGcE2n1U6axw4vEEzwxucdc3yu4VC2OcHIHumaGIuHeozbDlZWdBBRmUy92-3jV_4_VeuR9IYeBd9cp92yashrnilY1u91JxqPsh7J9MCETlIGpT9_LGDvOgXJF3v24jRSoqZnNz4-rc7abH7hofF4T0nmmSDwO9IdSHbfpqOiCs7-vGozvm6PEg7_c4yuiqi0Dq1SSsFiXYypvMWbmBaH9MjbJFjPLDSgTyOAqHNK7-TnCO5M3G83XDY5_6hn5uR49JhKpttML1BmUuu0WClRz6Jr4Q4J5CYwb4X7oPu8XZMr0EAy9abPVHRJU5eAG6kt5-t3-OlOiPmnHnG7Fc2xzXjNW7QjFSHG_CaNd8zBj0aKh5Ufawbcq-TEyIEwOlt_CuIJLuCGQMO80kaK7p2BP6fBFKseXuh3tBFEXFc_IpHL8gUJMVsjIJbwe3_JziTh8Mc3ZECBwdK_E3szc-qoAmNxF3UZ7Jt-AQyzZUBSWhpa6tsbYwsp-jx-FmQln4GTHnhialFB4Vd_BSTa7jtajoJJ_-35iMjmN7T3yVZqw1jr3X0lkPfuEnU70z9NapGw5MwdVTb-7XCbWi3jHpqCMLJwrjGyegwfpZ4u7DYiUIASmMSu2QW_ExMPHUTbnYG4QBqHdvrkZ_eZsNUaI0KDhAM_EDmz_0F9pqs9S162avLXf9I-j_L-BW9ylxW26T5A6AR32CjLBlcZghA2KsuYej_dl3GZxEu1iOC96DcZu0qOvZ6mL7KsMR9eNENICzl5rqnY5N84lYr3RKDTWpPZXKb-UUxSQzIAX1Co4mToc2GH_AjxYy75F6DIDPcsjfSZ6R6XvTuXB7OEpmjsaKtvuaIprmldCSsezl2yonREVs2tLT24AbI5nF2YMr0bcJTT_3BMT46r-bXPLhKDtsowLWYUgPku_mKpAPA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a385c25b249.14345012','','','2025-04-24 13:10:52','2025-04-24 13:10:52','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a385c25b249.14345012',0,'cd-form-entry','',0),(43013,0,'2025-04-24 13:12:06','2025-04-24 13:12:06','{\"firstname\":\"Louise\",\"lastname\":\"Everett\",\"email\":\"louisejeverett@gmail.com\",\"contactnumber\":\"07855257927\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4tQ7h7JxK8iDmqn2EGcwOod-93R5SpwEDSf8Sir6hMc130YAGQLfVzJ0gR64KbHCPPPl8qIs2e3m6y4QkiP_Wit-phqk357Ytfaak0t8XPB-9jLBe_EH_ZE7LNNJaHFriPLzUkG-nPX4rO_mg_YoM89R-so-ZDfJNRiodECFfUV4TdnY3U1e9rS3d_EtdSdzyR8Z9SQFAWOCenH_awUFFrzz45ulimgK13Sdi1IgEunqy-B-vMug3X0C0P06Jh2tgrOxhI1SKUt_6xGm2jbr7NCE3nA94bX5xBZ1jLPoaXec2kztTGqj3ArhOIMJYR2CLKCFJQctFUtDqSdvzfZx88TPH4Mzm7HIUuhw2Ks116iGmdbl_mkp8SY6UvRp1HUf3UVpjr20MQ-ZKiL3tBqWEUAWnHd4IP6nbd3DqB3hx5bQK46MrzppO-DRz4i1ZSButJ8y6l3a_Kitv9tc8l0fqHwmMvmFx0n4DiriJzW9MCVZEJ19bYdk_HKWeA1UY_HGXq86JbsvH9AHTmMuc0FK-GwrqBIj9NFVYOVTnRHvtfjqoqGZbUJ-3Yd9qyHX6ey4lm4oIGRx7-GgEWugL9sv2KAKoqB9uyfK-1Swb9McOPCNvgz4t3wk1Tuu0HU0A5BBgAgY_HRd1Po0W2HSZh0Q-nC5zVqyoNksa9pwSM6Q7dgWSCX6_6Wi59CvgL7gCTs_pAgJRxjtheloH1GbI6mJ3JvWEmGEVhLHLi8uiPSHGNMpVsfIWo5H-Bu40fENHdHfCjEqjfPCAMoe5McbPA8_3puVwhQlerv53T3G-DNDca3gzWk67iU6gxCK6C4dwvEyQ-6VKHbRKiocyACJcqHcx6kwwgpMGAY75fo53uYEVcfIXfDHqixsTt7RKNrBJWl_1BPCVQrsjVec1RKnB_RyuEQcwrY8_CyJBUUeh4T6DndMlEy6g20qCqvaxiA27LSlMm2CYjY-lGm4oQpakwl8922OuqzpqbD2y-pOWtRo_MIme07HvURH7GZ0asJY1zKUv4fbTaoxmXq3iPtDgMVXipRlClyA1l-0dzHgQjpcojU4-PykI7h917j2GVIwgtHTPR8HPhjfdoQQi7Md_54WynGp0mKQBJ0QkrkkRwecB5UBLLNo7g2_1zEAqyV3JCOq8LI9a817oSbViBDQMF9SUj4uSfVM1jtn20kqNSTXEU8ZSux2NJjx1T1WpWkPIy50dVya1pOxWp8GMo1b8xNgHgowVykXM43NmAs6oGTdU9EAP7P6CEzO_V968P13YC_Q3lopsGR5qncWQwOZoklQdSNqHgfFo6AkrEeSEg5e9R8n4Qf26LN2D_cYKMQxEH1xnR_gY2NQwFPVxS4ywQ9ej5mbZhFqM9T_7R93ujoGdOCkpzRj_Mk2L9oAeKBRKF79LvLcwIpdmhdQz1WOZgLsHeJyQaw2ifkgDTDefjsEdlbOHLyROFv1L2Y9dUA79hGzngefZVGT73m9xUPuo1OVcSLLscJ1GetWh_g6TSUVsS0Yp5bpSSJxjYQkJk3n9TATEQMoQalCxciBcKIhYMg6kcGSdWs48sHATFnG05dclxkJdaMFGFd-nVbDFzN0U1P0bjo8dUVf5S14XZ5M5GTSKpoTi_0pFZ8PzcoDYVPHEDp-wTXNGT6YGApxquB6dJ2c1OUgWFT2eYT4LfWtrHh71pgG5Qe2JStSXc84y4NnXMkE7t9DZ_8QbBao-01Y-FFD7_kupvyXRHVWzNkPrBMMqh0SoxhezxUnHmx4lC_MQ0-IJQef_unHf8kxcWN67qVaPiKPoZGCgfPZopN85YljgzCcMICtg-yRAfVxEdGWwrfv7nukGxn7aHllthm27ga8a2dBrbOiL_wy977wmVHaEhUn1dY9jtc897f-9nI0aq3lC1X-btUtL9BtQ7-RhdCK8DcvEGvqJEWvfJZF5qCZSdRDNb6kmtdD2Q_OHL1D6ut6HQPeHv5LQGVpWQ6cG06hP7HQ_IxA5xFN8V2alHODTbqoiUx47cKAZWni0AyZh5b6AmICDQ5a7gKtPA7_4b7Htghfrim2O21NqgOlWp0tNaLyn2A5E3LVMW-trAETIa2miH7Q94D44BmaZvZHs7cQHQ-8CYkFPlkTgM5U3nOoy6aXaLx6B_Lw9xzLkSJEEgEknj8huIGJkckj1LqBdn0OPJ8TLJ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"1\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a389163f894-86793869','','','2025-04-24 13:12:06','2025-04-24 13:12:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43013',0,'cd-form-entry','',0),(43014,0,'2025-04-24 13:11:54','0000-00-00 00:00:00','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA4VWxh8MZA8YUjMy8RfeXTkCtqaPq7rRpDqVKhpyO9oBssuDeVvfM72I0BN5BBme3PqH0ive7V4kS7f_A49sUviS0NQT8RV1c4IkGEw14tZGha_wj9MB7RGXydyuO3UMqBL5Mxc7fjUZY2I58Y7_Rdmvvx6klyySiuXvcINxsRlaceWam0q0n4MAK4fJXxw7-NwjVg1X7kfX16iv1O5ozPfAYNuoAYLtB_3vHBr2g1dS0fI2Omeh2MQM5E3iG7DVBYQFX2I9jDQCDHBR70WJaY3Wm28HVM7RKARuiJqO9CthbhlpL9y3e1pvSqyOFV0mOSaHM3xPOZIuagfwiqNyq2keO8NTNOaJmbo9WyB5VfnhZEvXeTMTCzNXBecLAam7PsChJfOeeiG-63Yywkq479Iry-O8PRKPh9V2ni1WX1o_UFPjl-m73UG2DaYeQxj-d-eDX8S4fdBiAA8tOQ_eu0d677ZEJrWDiD9rePS7ySlNOr9U0Z_vZlBG2-qw8AuXtl8j38TE5SNQOMa8W20VHz4PWlEopewT6h-gTQXUIyWkv-NZPawI0ad5w8yl-aMjJqTj-pFYQk0UerZLKtihAbUmZOvXrWfLFJsOk1QaNAJqyYlqrthfZdWxkKIl-3fhYSwYCuy6Axlr8rxxwtwBC9AutguQn5owKRNedFPVCb6a1X_VZyjzSbQPGQJ0X2WtU-d4bwBTJqXQ0Q6ZvumQjYWyTi-KEOv72J9dWk7_YSLWDSF39yOY6MY5lFMxNVn0hakR8s34l-bjYYGWG65IaNa27MgAB1r-GCCf5U6QUqeYzEMjIi9b-Pzin--24htOotzqHxjCunDvCoSkaZMU95Wzmc66qL7bT6M76UFnR3TAVMTTdeVqa5LkB1iwBIhmkzInKKaQAfWI04e1oKSkNvPMb9kLY4ITrvcSUOjam0K0SGPWH8oo9vr8qf6rjS8k-80H3n8HzmC4DYlqrVt50bh7qi6-YOUu4aqZp7enYjI29HIPYdarOodHuLmAVmJbQQfAD_Kv3-7yIhviCVVX_OjIutOTMwA63VT03kV9sW8pO_HNtFDmZJGBQKz5VIs5Zy4tyfAs7rOtUxZNV2K4rLgEhfAs1oh-K5jen8iZTbGNxaqsPD44p0vYH2Ax72kZxFH57-dPiRS6tHBDNMwLrNuXJVeMFWRYsJNOS300Z5pFD3iVs6aNoDQi6SzBhfGlwMPKeQAy5f6UzkJ-FL2_eGp8dLIhYqDEGJ1zqtLHFDlrJ0zwW1zR7I4C19RBJtpvHMh7HlzEEUY7SVrH_wyA5Isni-xaEnYoD0nqNBLq-OOKBFnr9R54apvuWiCJvAO5SeZSI0-cwPI8mcK9uv2jwQMlq6b5vMaxs_rGrQ2tt6rGgTq_MfEQfBBcnWbb_JwaD6d_9SKbH-J73SUYQEhpoia4ZncvANsIXcf1Lk6Y3c_3ClyW82C25KRIeeMNBTbmvNECmaF0U06t7B1A6KgAMZ9m57cLUjclFi_eGoFHD_IcA410zEXxjGIkLDMCY4zWQPFDcFU_lgK20eOSHlC41R81-TN-f3zxUqhBZfJkB78fHidDbB276AsiFf73Jq-eT5Ivh1F6GIKBZOmq_3Z8_hWjmhHhy9kS6jLHAzFn7KV6OBnJE16lFNFE4ST9wy3qGfaMk-40LqBHYO2nPk4-lRRwcFyNkHKtydgv-T6z16ER-YBSmxGywWVPbp8pLFjIszeZgtgkCFxspDrqBqLnOJf5Xp5gqHE6n0mKVnb9A8rIAYuzBnd6r_LvUiIKo_5XjAfMoa_Ca10AFZiWoqik1vI0336VEsqtVRn5GNbU3A1SoDPlSzz16ilFLkJorSM0cRVSHAQpoAvnF9HiCJ1zhMEnUnLyyNs5Y0RN9JqYSkbVK3Bm32lIOaGG0JqwH9RjUS4vMpKxe2tOEFuaTPoOPVpVYn-PUcA7xRRke_ThOxdV3LjJDPoJAKF2on-CaBRqjOILxRsaLfPEy79hptqFor9QBgwhwoR0tOJGVJK0KD5VejnZa-9SRqqo7nGCYUK5PhcIY2FN-O6A3XrtYv7o-U8pL_TeZr07NpvXcx9fmzyDr1X0zbXMJKLSHsE3jGlRIMnyhfj-Z83yt3glTCCC3CIJjvbTUCeeMLatLBCcqKToG8cNgP9ObHDAk2CdeQcDfKCJ_Tb\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-680a389abbd3f7-28590502','','','2025-04-24 13:11:54','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43014',0,'cd-form-entry','',0),(43015,0,'2025-04-24 13:17:32','2025-04-24 13:17:32','{\"firstname\":\"Test\",\"lastname\":\"Test\",\"email\":\"integervalidation4@futurefit.co.uk\",\"contactnumber\":\"123456987\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA5CBWAmkUqbaCZ16O8LO0lqJUOAMTTbFgq0LT_70xfd0TInK2W7wHsANrxZ7deWosMqb_vgnzzpPHTZj8TZJ7HLCZEhAy-A8ES8Oi17xJqo_rm7UyIYugtf2wxbu5wcJ-HRcnnYRDjmtVITgKIJ-thpyAQYB7kwwN2IzGQGXrGlfz4nxRE3NgDV8fxdw7396Bva9NX3stvap9NPCaSTxbXmErYNn_8Ym4Cwq42-8d2QC6slVMOYx0DK_9vb3hZN7TiU_uaidU7aiDy_-xR0i2XSCJb2oTac3k6hG6pWTRktGcwF8NGqoTl9vCNLPWXLtlFcfapsKNhZ87ud4wytUpBhJlK9SCKgubi2ZbjgsTaxTIVYukySFit6LVFuwxVz_-Sj47nuK-OtBhN69IytGWJ8r104H6fSUCpd55DaMe6XFB2uhOM8ScQXUXTiGBp5d5JiHSwYkccEqicNnioiPCRjcqmudyJxd5S9MC4XRNrnW8-J59t7WeYPGVRTQ0Yo4jbrS__35I80HhbeHV0Wt_B6igxMoUOlZBYVjyIIQ4Qjq9ISqVn4nKR26bfdSqQvuGjTiMT3BpzRxKWLRUYUyjokuOEJx3BK2f_8QphOrMf6qVVdlAIJV7HhgVFW7C5W8IobTFwV7HdQjPL1-BMMZAcW97FH7DB7I0h3e4oXHnKGiQCkf3pU9QgxW9E5HtA9uQtgAdoAby4ckEDx2Q4Au6331GnJ9RxY7JnzJRhxhOH5d3GvejegDo81XxUxYWKzF_CvA0w6Wm5lmpnMqXHrDlwmQkrwd_BDapT-7mmDCVEQrKDlG7pXpJCCGp7TieMTJ0c8sqK85PtO4-a5ijoE_jqwmtWmMiEhstiFtoGtS3pd9waHphISDuHGJzSSBXNFQtBJN3ULzDfhRBPJTbQNAEb5I7KS6P0nTO0rGt7HtsOU3Et-tEy9KZVfKMncaqJ-XOGjeGqYO4w3bxpMw9Jz9pHaRqdbkLv8gFhUO7BtqNQ2jzTeNQQQ8b8NRp741CWzeg3UCkk3z5yLKlBBzapGg-yLk2ye-m_BU6ScHMN0yOCdQ2je3_PLaPxtnH_nKfyizOE0-iQtVCwhcgdG7KzSW0IZM8fxU-oVlP-5190Jjwx1M6pVIFmJCK-mWSsuedMlhXwgD460cZn3b7f8CHHIS-W2uYLOasCOWmsGi5o4Q3z-EtO89ZeH3hnBMRnE3vEHt_X6qoIogq6Bs0UV8inwtyuGG7OtpvrIH7Kn_baZUw8-qH7BCVfTZbJkFsWEjuxidvgk0oDswXi1MvQ99iQvJ6XB7IOxXTNTia1WANNwpJ7VHolu8i5fJLSd1B81LF4QB7bCsfxklH3OEkeCohWbB6yRA2fJzUlOJpd5Oue-dojQoPWZT590FQwFwTGLnUAlMF56UMFocgW1IOdQj1CgB8UhdA_G10wmCsL6kHsNwLJMlxnnLX07opqyNGpMe1fQf3VAxBQZyC8UoV5R2kjoyOvh_h8xhfrPloHTT5jr_6QYLe8OW1-Akml2MYxRP5ZjH4QTPLhhNhAbdQqhyGJbitcttFsLpLrgaozWSnOaKhvruJFsOaDqWrXNEJohRbkPwUoFwe6V6QfDfvDVykMEiyFGTV_2BaF8pV6XjqzpMdnVDxcHevCBSqsOF-0KdteKdM3FNt9SrbVP-t17xvBNYUlf01w9mkNUldmah3PpNCQieEPUw3LNLX_GcZORu2hkAoSTbvl3Kf2IAkq2GUOZE_fRsxX8Oro6giPUjBojZ5QZvOFg3DXJ0SausgpJPgZz_0mNFUfM_GjLbsOfbuMFeQqrvi2VK70zsFKof8RDaXmF_DMBXPWRKDC9wg3g0T2nKmFLr9McfzdKPWfWAC2B05ycNCIBOzHmgwmCr2yWAbXchAA64_9nOAEZ0ECtICEykYDNhTAoEVyEMgpd0MDWXJHW0nFSJoPUrvD75H_4tJda35bFxx8QcEVwJRPfuCk4235AtFPR_1CmuJlj5zszAbWIA1bwIoVrsfwDm6sImntcDq7e4cDo7-Mvi9zHnfUr7DvF69UJ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a39b372b2b4-03430556','','','2025-04-24 13:17:32','2025-04-24 13:17:32','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43015',0,'cd-form-entry','',0),(43016,18,'2025-04-24 13:18:06','2025-04-24 13:18:06','<h2 data-start=\"264\" data-end=\"548\">Anatomy for Personal Trainers: What Every PT Should Know</h2>\r\n<p class=\"\" data-start=\"264\" data-end=\"548\">Understanding anatomy is a fundamental part of becoming a competent and confident Personal Trainer. Not only does it support the design of more effective workout programmes, but it also helps you identify movement patterns, improve client performance, and reduce the risk of injuries. Whether you\'re starting out or levelling up, this guide explores the key anatomical knowledge that every PT needs to grasp and how to apply it practically in your client sessions.</p>\r\n\r\n<h2>The Importance of Anatomical Knowledge</h2>\r\n<h3>Why Textbook Anatomy Isn’t Always Enough</h3>\r\nWhen personal trainers study anatomy, they gain far more than theoretical insight. They learn to identify and explain the body’s structural organisation, understand how various systems interact, and most importantly, apply this understanding in practical, real-world settings. However, the learning curve can feel steep at first. It\'s one thing to memorise diagrams of skeletons and textbook muscle maps, but another thing entirely to interpret how this knowledge applies to a diverse range of clients, each with unique anatomical variations.\r\n\r\nThis is where the concept of layered learning becomes so important. At Level 2, anatomy education focuses on broader muscle groups, such as the quadriceps and hamstrings. As trainers progress to Level 3, they dive deeper into the specific muscles within these groups, such as the vastus medialis, rectus femoris, and biceps femoris. Yet even this is only the beginning. With continued study and hands-on experience, trainers begin to notice individual differences in clients, like the occasional presence of a fifth quadricep muscle, the tensor vastus intermedius highlighting that anatomy is rarely as fixed or straightforward as it may first appear.\r\n\r\nThese discoveries can cause some trainers to doubt their understanding. They might worry they don’t know enough or fear they’ll harm their clients due to gaps in their knowledge. But this is precisely where deeper learning and coaching support become crucial. Programmes like a Diploma in Biomechanics Coaching help restore confidence by shifting the focus from trying to name every muscle to understanding the actual movements clients perform, and how to support those movements effectively.\r\n<h2>From Muscles to Movement</h2>\r\n<h3>Observing Movement, Not Just Muscles</h3>\r\nRather than fixating on identifying individual muscles during complex movement, it\'s often more beneficial to analyse joint actions and overall movement quality. In fact, even if we knew the exact muscle responsible for a specific movement anomaly, it wouldn’t necessarily change our intervention. What matters more is whether the movement is efficient, safe, and aligned with the client’s goals.\r\n\r\nBy observing how joints move, how muscles coordinate, and where compensations arise, personal trainers can make more meaningful and practical decisions during training sessions. This movement-based approach not only leads to better outcomes but also encourages a more intuitive understanding of anatomy, one that grows through observation, correction, and reflection rather than rote memorisation.\r\n<h2>Major Muscle Groups and Their Functional Role</h2>\r\n<h3>Understanding How Muscle Groups Drive Movement and Performance</h3>\r\nTo effectively coach movement and design smart training programmes, personal trainers must be fluent in how different muscles function. In the upper body, the pectorals are primarily responsible for pushing movements, such as those in a bench press or push-up, involving shoulder flexion, adduction, and internal rotation. The deltoids are involved in almost every arm movement, particularly overhead presses and lateral raises, contributing to abduction, flexion, and extension.\r\n\r\nPulling movements such as rows and pull-ups rely heavily on the latissimus dorsi, which assists in shoulder adduction and internal rotation. Meanwhile, the trapezius and rhomboids stabilise the upper back and scapula, ensuring proper posture and upper body alignment. The biceps and triceps, of course, are essential for elbow flexion and extension, playing key roles in both pushing and pulling actions.\r\n\r\nIn the core, the rectus abdominis supports trunk flexion and, more importantly, stabilisation through co-contraction with the thoracolumbar fascia. The obliques manage rotation and lateral flexion, but they also help resist undesired movement, making them vital in maintaining posture and core control. At the deepest level, the transverse abdominis wraps around the waist like a corset, helping to stabilise the spine and pelvis during movement.\r\n\r\nThe lower body contains some of the most powerful and functional muscle groups. The quadriceps drive knee extension in exercises such as squats and lunges, while the hamstrings manage both knee flexion and hip extension, contributing significantly to movements like deadlifts and sprinting. Interestingly, the adductor magnus often acts like a “fourth hamstring” due to its role in similar movement patterns. The gluteus maximus is one of the most important muscles for hip extension and explosive force, supported by the gluteus medius and minimus, which manage abduction and hip stability. Finally, the calves, particularly the gastrocnemius and soleus, are responsible for plantar flexion, enabling propulsion during walking, running, and jumping.\r\n<h2>Building Smarter Programmes Through Movement Fundamentals</h2>\r\n<h2><span style=\"font-size: 24px; letter-spacing: -0.02em;\">Assessing Movement with Purpose</span></h2>\r\nAn effective training programme goes far beyond simply targeting specific muscles. Personal trainers must evaluate movement quality using objective benchmarks, identifying imbalances, limitations, and compensatory patterns that may affect performance or increase injury risk. This might involve using movement screens or assessment tools that highlight where a client may lack mobility, stability, or strength.\r\n\r\nPreparation is key. Before progressing to complex movements, trainers can use isolated exercises and techniques such as muscle energy techniques (METs), joint mobilisation, and nerve mobilisation to improve movement quality. These preparatory steps lay the foundation for more integrated, functional training later on.\r\n\r\nEqually important is antagonist conditioning, training opposing muscle groups to ensure joint stability and balanced strength development. For example, strengthening the hamstrings and glutes alongside the quadriceps helps maintain proper knee health. As clients progress, trainers should shift towards integrated, multi-joint, and multi-plane movements that reflect real-life demands and support the specific goals of the individual.\r\n\r\nThis pyramid approach to programming, starting with assessment and isolation, progressing through preparation and integration, ensures a comprehensive, client-centred path to performance and resilience.\r\n\r\n&nbsp;\r\n\r\n<img class=\"alignnone size-full wp-image-42998\" src=\"https://biomechanicseducation.com/wp-content/uploads/2025/04/BE-System-of-Exercise.png\" alt=\"\" width=\"300\" height=\"287\" />\r\n<h2>Final Thoughts</h2>\r\n<h3>Anatomy as a Lifelong Learning Journey</h3>\r\nAnatomy isn’t just a topic to tick off during your qualifications, it’s the foundation of everything you do as a Personal Trainer. From designing effective programmes and preventing injury to understanding the subtleties of human movement, anatomical knowledge enables you to coach with precision and purpose.\r\n\r\nAs your experience grows, so too will your understanding. Don’t be discouraged by the complexity or the occasional uncertainty. Embrace it as part of the layered learning process. Focus on movement, stay curious, and keep expanding your skills through education and practice.\r\n\r\nIf you’re looking to enhance your understanding further, consider pursuing advanced courses in biomechanics, anatomy, and injury prevention. The more you know, the more confidently you’ll be able to help your clients move, perform, and live better.\r\n\r\nFor more tips and in-depth training insights, follow our blog and join our growing community of fitness professionals committed to lifelong learning and client success.\r\n\r\n&nbsp;','Anatomy for Personal Trainers: What Every PT Should Know','','inherit','closed','closed','','42986-revision-v1','','','2025-04-24 13:18:06','2025-04-24 13:18:06','',42986,'https://biomechanicseducation.com/?p=43016',0,'revision','',0),(43018,0,'2025-04-24 13:31:18','2025-04-24 13:31:18','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"07551930686\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA4DKUBnG7i2YGjeYcUoeMYFs8QfbQ1VdlitjX01_B5_1ja0bNISBOvYCiNTSKyd4kLu7k5ip5UGWprLl4BpvEHi9fiBAdOWvAeFE142x5bWZ0Wf7slxbPaedHDhgjQlYVw9qPp1BbBZ76kgWof9WNin-htEUZf8stnxF7Hzzm0rPv5nMrywC0n-QGZBg_MKP_A7PTxW3UlIE8GqW8CR283aV2paqE401vi7u83U2i5S8ZSyHVLywY9d-OHFRceAc1CmRMKVpz_nu05du-STpF25oCfXicRKB1Qa1blpwo4l2jX6HsOictxO3XDlWxHvwkjR6LaHXprmTJKSIYI8urxanxKA8FZOIlDJ7jMYxVJkbYJB85kMiI2kw1EdarvxxgaCv6Ou-ltr54j1-Be85mom4j-Qh0kFgP1ErfrKVSjzomOrJO9sfEU66FY2_TY1GvUIJW-TWydEwHfHnKBDSQNHmFLU9eHFL23mabsrKckNKPh4sySesrKZ9Ry3vBA9OHa-WiOQykYb8_CCyj73KSuVh3Kfgo0o36Cu2vBYwzurIsgqKy0_Mix-QZ6uVX-oAhWdE8TXXpmVWQQ4EXrMS-mkSHh2ariX8ECANKyPvpPBlzTi0vMMq3UOKDl-EIF5czK8Oyjwl5brDHSh3zxTbotrffsF0peLCmA1V-6k9kUi2OLlsYnN1d055qJJg3f4ZLPq8z0LThdAHvqklrnBeWqJwa9mhd13dgUkIPdtgLVGu-uxmoNOhlUX--_ugdS-Ikga-CF7FvV5dCdGU3gXS9E7qm9il-Y-tQBMTpHKwogLLsgy6O6GP4dUwk2bMMB52QdUW8PfeR7OM-QloMx60kPKvchnz2UN17d71CL6X2EGmIf6KJq0nw_Yl1MWpd4UEdvv6dzJRJI6chBuP3d8MkacHOEmb2oUQjSrlu_QggyfZpT0_LY_dEnBOmCb1MpsA9OwkHjKgoRvtiFVuZhZvKKFnqOPwRnz0xWJCLbjDDdeKEd4hczD5tFkhnFHMmshw4W1VXwBAQLJqKhkXebOk-r4kPXalcujeqpbRnCzka2cNRD8bMJ1d8GdpNFdwXCXQbUePOhrHC9Mfl6iUqi_vmAVDpsttW8LKYPaxvRAw1dCvtV1nj4Z1GMXfTau8hI2cM6gp_8dDAcdO6B3ZB2REPUtVvrtz8FLNhRjt9r-4QC3WU3RxBzzNZF9iuXhviflfKrmUU39gz9nSg0CU3V2ZPLyxK0KUeow5PNoufoWXJiBN6g5vpUGZHdE0Srj19CLm3kGzNH9pEfdKJRRi7PfeOzUTBGw32Mbs56AaarOhXU11v49SwM0ciJbEEqF123D1BDUulk5euhKeCd3z0_hMRM6e7lnKLL7DOW_hSsLP_xTXhKAhDCZ4orSO2Fmx7AhxMK8EXsQ6ibRa8lVXEZLN0jCIrEwnEo_RXac_W_kT-sSjJegUSmFbuEE72dMBbQY4BYJy_Z9PuH6oXEbFKw8uV7JLd69UOvz2gluD80SH1myGAIymkhWnWaN7B5y_6pyIP1oBEn_ihHAVBzi-QIUik6Zu07PLx1yBED7AJoUsTkCg9xT1vOta07JAQUcTSg4_o0BCpTqXBKKftwnfDj7fNO5PgH_N5nOJy2-1WmwurBWXAcu3P2pV_PSRO0wiF0EsOOIPM_WT6mZwz7hzpgza8N7MNqH_t-9zoSGRmrl_b0xpOHZzQbPLa0s-Ri7yNi0nmLABs31hj5RsGpOvB3lqdeR3FD9aGt8g52ZqP4oj4brnP1F-yCupcN04BYgKBaEEjk-s-tHqqljRw1j7YxtaWzfp_lknwajPzgIzjBjPKc7yMfrs1KYhDv5Ya5Y341odfhY8eNZeA7qUxsmEXc8hXFLVG90CEYThn_bodxCt9gJCoAvgHbQNpKZvBha0ZLXd0AI96PvPfVunnNqgdUfKAh1RCD4i4YlnFs6b_iS4ZIWrSRWqefCPI2OEvto-wLGBZ2Ovhll5AXvbgKN7qzMLT6WQxHvYEz5R9o2MuAntCfT94kg9HhWaSg2gVAyUaj558CdaQYUp8e5MVG2AAOTUKr1-Dh9HGyHpoezaq0WNTY5i3Odraaaika69-nG450tcP12j9V1QWd3ArWL2xGYZYsnKm7gQfUjxtw1KSHq5lGADLCFEi7waG_Ptn0gd1khKJ898Ptr\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a3d1890ee52-23876844','','','2025-04-24 13:31:18','2025-04-24 13:31:18','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43018',0,'cd-form-entry','',0),(43019,3,'2025-07-08 07:00:01','2025-07-08 07:00:01','<h2>Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes</h2>\r\nWhen we hear the word biomechanics, it often conjures images of elite athletes perfecting their movement to gain a competitive edge. While biomechanics is undoubtedly a cornerstone of sports science, its true value extends far beyond the pitch or gym. In fact, intrinsic biomechanics plays a vital role in everyday life, impacting how we move, how we feel, and how well we age.\r\n<h3>What Is Intrinsic Biomechanics?</h3>\r\nAt its core, intrinsic biomechanics refers to the internal mechanics of movement, how the body’s bones, joints, muscles, ligaments, and connective tissues work together under the influence of gravity and physical forces. While commonly associated with athletic performance, the same biomechanical principles apply to everyday actions like walking, lifting, and even sitting at a desk. Whether you\'re an office worker, parent, or retiree, understanding and applying intrinsic biomechanics can dramatically improve your quality of life.\r\n<h3>Biomechanics in Daily Life: Movement that Matters</h3>\r\n<h4>Walking and Everyday Motion</h4>\r\nTake walking, for instance. It may seem like a basic action, but it\'s biomechanically rich. If your pelvis lacks mobility or your feet don’t function optimally, the body begins to compensate elsewhere, leading to inefficient movement, fatigue, or even injury over time.\r\n<h4>Lifting, Carrying and Load Management</h4>\r\nLifting a child or carrying shopping bags becomes more about coordination than brute strength. A well-integrated system of joints and muscles makes these daily movements safer and easier, while poor biomechanics places unnecessary strain on the back and shoulders.\r\n<h4>Posture and Static Positions</h4>\r\nEven the way we sit or stand can have profound implications. Hours spent in static postures, without movement variety, can reduce joint health, weaken trunk muscles, and encourage dysfunction that could eventually lead to problems. Intrinsic biomechanics reminds us that the body craves movement and thrives on variety.\r\n<h4>Household Tasks and Unconscious Patterns</h4>\r\nEveryday tasks like gardening, cleaning, or even hoovering all draw upon the same principles. Using both sides of the body, bending at the hips rather than the spine, and engaging the trunk muscles all help reduce stress on your joints. When you apply biomechanical awareness to these seemingly mundane tasks, you protect your body and keep it functioning efficiently.\r\n<h3>Long-Term Benefits of Good Biomechanics</h3>\r\nThis efficiency brings more than just physical ease, it supports your long-term health. Moving well reduces the wear and tear on your joints and soft tissues, conserving energy and lowering your risk of injury. It helps you maintain mobility into later life, potentially slowing down the natural ageing process that leads to joint stiffness and muscular imbalance. Strong trunk muscles and a mobile spine form the foundation for stable, coordinated movement, helping to prevent overuse patterns and the symptoms they cause.\r\n<h3>Simple Ways to Improve Biomechanics</h3>\r\nImproving your intrinsic biomechanics doesn’t require extreme changes or athletic ability. It starts with being more aware, changing position continuously throughout the day, incorporating regular movement, and strengthening your body.\r\n<h4>Practical Tips for Daily Improvement</h4>\r\n<strong>Be mindful of postural variety:</strong> Adjust your seated or standing posture regularly.\r\n\r\n<strong>Strengthen your trunk:</strong> A mobile yet strong trunk stabilises the body and reduces strain.\r\n\r\n<strong>Stay active:</strong> Include strength, mobility, and flexibility exercises in your routine.\r\n<h3>Why It Matters, for Everyone</h3>\r\nUltimately, intrinsic biomechanics is not just a scientific concept for professionals, it’s a practical toolkit for anyone who wants to move better and live longer, healthier, and more independently. For coaches and personal trainers, this understanding offers a real edge: the ability to help clients not just train harder, but train smarter. It means guiding them toward pain-free movement, preventing recurring issues, and improving how they feel in their body every single day.\r\n\r\nIf you’re passionate about helping others move well and stay well, consider deepening your knowledge through biomechanics coaching. It’s not just a skill, it’s a service that supports lifelong well-being.','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes','','future','closed','closed','','intrinsic-biomechanics-in-everyday-life','','','2025-07-03 09:21:16','2025-07-03 09:21:16','',0,'https://biomechanicseducation.com/?p=43019',0,'post','',0),(43020,17,'2025-04-24 13:35:48','2025-04-24 13:35:48','','Musculoskeletal (MSK) Education Courses Explained','','inherit','closed','closed','','42431-revision-v1','','','2025-04-24 13:35:48','2025-04-24 13:35:48','',42431,'https://biomechanicseducation.com/?p=43020',0,'revision','',0),(43021,18,'2025-04-24 13:36:10','2025-04-24 13:36:10','<h2>Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes</h2>\r\nWhen most people hear the word biomechanics, they imagine elite athletes fine-tuning their movement for peak performance. While this image isn’t wrong, it tells only half the story. In reality, intrinsic biomechanics is not just for athletes—it’s for everyone.\r\n\r\nFrom how we walk, lift, sit, or simply get through a busy day, intrinsic biomechanics plays a fundamental role in everyday movement and long-term health. Understanding these principles can help prevent injury, improve how we move, and enhance quality of life at every age.\r\n<h3>What Is Intrinsic Biomechanics?</h3>\r\nIntrinsic biomechanics refers to the study of how the body moves and how different forces interact with our muscles, bones, joints, ligaments, and connective tissues. It’s about understanding the body\'s internal mechanics—not just for athletic performance, but for movement efficiency, joint longevity, and injury prevention in daily life.\r\n\r\nThis field draws from physiotherapy, sports science, and anatomy, but its applications are far broader than the gym or the pitch.\r\n<h2>The Role of Biomechanics in Daily Movement</h2>\r\nDaily movements may seem small, but they’re biomechanically complex. From walking and sitting to hoovering the floor, every action recruits a series of movements that can either be helpful or harmful over time, depending on how well your body is functioning.\r\n<h3>Walking and Running</h3>\r\nThe biomechanics of walking and running influence how efficiently we move and how much stress we place on our joints. If your foot function, pelvis mobility, or spinal alignment are off, the body has to compensate, often resulting in overuse injuries or fatigue.\r\n\r\nLate supination or ligament dominance, for instance, can cause “energy leaks” in your movement chain, making simple walking feel harder than it should be.\r\n<h3>Lifting and Carrying Objects</h3>\r\nWhether you’re lifting a child, carrying groceries, or moving a suitcase, your body needs a coordinated system of muscles, joints, and connective tissue to handle load safely. Poor biomechanics here may not cause immediate issues, but over time they can contribute to chronic back pain or muscular strain.\r\n<h3>Sitting and Standing</h3>\r\nWe live in a sedentary world. Spending hours sitting at a desk or standing in fixed positions can reduce the movement variety your body craves. This often leads to poor core engagement, muscle imbalances, and eventual discomfort or dysfunction. Biomechanics helps us understand why postural variation and load sharing are key to staying pain-free.\r\n<h3>Household Chores and Activities</h3>\r\nDaily tasks like gardening, washing up, or hoovering are more physically demanding than many realise. Without good biomechanics—bending at the hips, alternating sides, engaging the trunk—you may be unknowingly stressing one side of your body more than the other. Over time, this can lead to symptoms and mobility issues.\r\n<h2>Long-Term Health Benefits of Good Biomechanics</h2>\r\nDeveloping sound biomechanical patterns isn\'t just about feeling better today—it’s about ensuring long-term movement health. When biomechanics are optimised, everyday life gets easier and more enjoyable.\r\n<h3>Risk Reduction</h3>\r\nEfficient movement reduces unnecessary stress on joints and soft tissues, lowering the likelihood of chronic pain, injuries, and repetitive strain.\r\n<h3>Improved Energy Efficiency</h3>\r\nThe less the body compensates, the less energy it wastes. This means you’ll fatigue less easily doing ordinary tasks like walking the dog, cleaning, or even exercising.\r\n<h3>Joint Health and Longevity</h3>\r\nAs we age, the wear and tear on our joints can increase. Poor biomechanics accelerates this, while optimal movement patterns help preserve joint space and function for longer.\r\n<h3>Core Strength and Spinal Mobility</h3>\r\nA mobile spine supported by strong, balanced trunk muscles helps manage load effectively, reduce pressure on vertebrae, and prevent compensation-related injuries.\r\n<h3>Enhanced Quality of Life</h3>\r\nPain-free movement contributes to independence, mental well-being, and the ability to stay active for life. Whether you\'re 35 or 75, how your body moves matters.\r\n<h2>How to Improve Your Intrinsic Biomechanics in Daily Life</h2>\r\nYou don’t need to be an athlete to benefit from better biomechanics. Here are a few practical strategies for improving your daily movement:\r\n<h3>Embrace Postural Variety</h3>\r\nThe body was designed to move, not to stay still. Regularly change positions throughout the day—sit, stand, stretch, shift your weight—to keep your body responsive and well-balanced.\r\n<h3>Strengthen and Mobilise the Trunk</h3>\r\nFocus on core stability and spinal mobility. This helps absorb impact, reduce strain on joints, and improve your overall movement control and balance.\r\n<h3>Stay Active and Aware</h3>\r\nMovement is medicine. Integrate strength training, mobility drills, and daily stretches to support biomechanical function and reduce muscular compensations.\r\n<h2>Final Thoughts</h2>\r\nIntrinsic biomechanics isn’t reserved for elite performers. It’s a vital piece of the puzzle for everyone who wants to move better, live pain-free, and maintain long-term health.\r\n\r\nAs a trainer or coach, understanding how intrinsic biomechanics influences everyday movement equips you to better serve clients of all backgrounds—not just athletes. From posture correction to injury prevention, the ability to assess and improve movement is a powerful, often overlooked tool.\r\n<h3>Want to Help Your Clients Move and Feel Better?</h3>\r\nConsider training to become a Biomechanics Coach. It could be the key to improving your coaching outcomes and transforming your clients’ long-term well-being.','','','inherit','closed','closed','','43019-revision-v1','','','2025-04-24 13:36:10','2025-04-24 13:36:10','',43019,'https://biomechanicseducation.com/?p=43021',0,'revision','',0),(43022,18,'2025-04-24 13:38:13','2025-04-24 13:38:13','<h2>Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes</h2>\r\nWhen most people hear the word biomechanics, they imagine elite athletes fine-tuning their movement for peak performance. While this image isn’t wrong, it tells only half the story. In reality, intrinsic biomechanics is not just for athletes—it’s for everyone.\r\n\r\nFrom how we walk, lift, sit, or simply get through a busy day, intrinsic biomechanics plays a fundamental role in everyday movement and long-term health. Understanding these principles can help prevent injury, improve how we move, and enhance quality of life at every age.\r\n<h3>What Is Intrinsic Biomechanics?</h3>\r\nIntrinsic biomechanics refers to the study of how the body moves and how different forces interact with our muscles, bones, joints, ligaments, and connective tissues. It’s about understanding the body\'s internal mechanics—not just for athletic performance, but for movement efficiency, joint longevity, and injury prevention in daily life.\r\n\r\nThis field draws from physiotherapy, sports science, and anatomy, but its applications are far broader than the gym or the pitch.\r\n<h2>The Role of Biomechanics in Daily Movement</h2>\r\nDaily movements may seem small, but they’re biomechanically complex. From walking and sitting to hoovering the floor, every action recruits a series of movements that can either be helpful or harmful over time, depending on how well your body is functioning.\r\n<h3>Walking and Running</h3>\r\nThe biomechanics of walking and running influence how efficiently we move and how much stress we place on our joints. If your foot function, pelvis mobility, or spinal alignment are off, the body has to compensate, often resulting in overuse injuries or fatigue.\r\n\r\nLate supination or ligament dominance, for instance, can cause “energy leaks” in your movement chain, making simple walking feel harder than it should be.\r\n<h3>Lifting and Carrying Objects</h3>\r\nWhether you’re lifting a child, carrying groceries, or moving a suitcase, your body needs a coordinated system of muscles, joints, and connective tissue to handle load safely. Poor biomechanics here may not cause immediate issues, but over time they can contribute to chronic back pain or muscular strain.\r\n<h3>Sitting and Standing</h3>\r\nWe live in a sedentary world. Spending hours sitting at a desk or standing in fixed positions can reduce the movement variety your body craves. This often leads to poor core engagement, muscle imbalances, and eventual discomfort or dysfunction. Biomechanics helps us understand why postural variation and load sharing are key to staying pain-free.\r\n<h3>Household Chores and Activities</h3>\r\nDaily tasks like gardening, washing up, or hoovering are more physically demanding than many realise. Without good biomechanics—bending at the hips, alternating sides, engaging the trunk—you may be unknowingly stressing one side of your body more than the other. Over time, this can lead to symptoms and mobility issues.\r\n<h2>Long-Term Health Benefits of Good Biomechanics</h2>\r\nDeveloping sound biomechanical patterns isn\'t just about feeling better today—it’s about ensuring long-term movement health. When biomechanics are optimised, everyday life gets easier and more enjoyable.\r\n<h3>Risk Reduction</h3>\r\nEfficient movement reduces unnecessary stress on joints and soft tissues, lowering the likelihood of chronic pain, injuries, and repetitive strain.\r\n<h3>Improved Energy Efficiency</h3>\r\nThe less the body compensates, the less energy it wastes. This means you’ll fatigue less easily doing ordinary tasks like walking the dog, cleaning, or even exercising.\r\n<h3>Joint Health and Longevity</h3>\r\nAs we age, the wear and tear on our joints can increase. Poor biomechanics accelerates this, while optimal movement patterns help preserve joint space and function for longer.\r\n<h3>Core Strength and Spinal Mobility</h3>\r\nA mobile spine supported by strong, balanced trunk muscles helps manage load effectively, reduce pressure on vertebrae, and prevent compensation-related injuries.\r\n<h3>Enhanced Quality of Life</h3>\r\nPain-free movement contributes to independence, mental well-being, and the ability to stay active for life. Whether you\'re 35 or 75, how your body moves matters.\r\n<h2>How to Improve Your Intrinsic Biomechanics in Daily Life</h2>\r\nYou don’t need to be an athlete to benefit from better biomechanics. Here are a few practical strategies for improving your daily movement:\r\n<h3>Embrace Postural Variety</h3>\r\nThe body was designed to move, not to stay still. Regularly change positions throughout the day—sit, stand, stretch, shift your weight—to keep your body responsive and well-balanced.\r\n<h3>Strengthen and Mobilise the Trunk</h3>\r\nFocus on core stability and spinal mobility. This helps absorb impact, reduce strain on joints, and improve your overall movement control and balance.\r\n<h3>Stay Active and Aware</h3>\r\nMovement is medicine. Integrate strength training, mobility drills, and daily stretches to support biomechanical function and reduce muscular compensations.\r\n<h2>Final Thoughts</h2>\r\nIntrinsic biomechanics isn’t reserved for elite performers. It’s a vital piece of the puzzle for everyone who wants to move better, live pain-free, and maintain long-term health.\r\n\r\nAs a trainer or coach, understanding how intrinsic biomechanics influences everyday movement equips you to better serve clients of all backgrounds—not just athletes. From posture correction to injury prevention, the ability to assess and improve movement is a powerful, often overlooked tool.\r\n<h3>Want to Help Your Clients Move and Feel Better?</h3>\r\nConsider training to become a Biomechanics Coach. It could be the key to improving your coaching outcomes and transforming your clients’ long-term well-being.','','','inherit','closed','closed','','43019-revision-v1','','','2025-04-24 13:38:13','2025-04-24 13:38:13','',43019,'https://biomechanicseducation.com/?p=43022',0,'revision','',0),(43023,18,'2025-04-24 13:40:59','2025-04-24 13:40:59','<h2>Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes</h2>\r\nWhen most people hear the word biomechanics, they imagine elite athletes fine-tuning their movement for peak performance. While this image isn’t wrong, it tells only half the story. In reality, intrinsic biomechanics is not just for athletes—it’s for everyone.\r\n\r\nFrom how we walk, lift, sit, or simply get through a busy day, intrinsic biomechanics plays a fundamental role in everyday movement and long-term health. Understanding these principles can help prevent injury, improve how we move, and enhance quality of life at every age.\r\n<h3>What Is Intrinsic Biomechanics?</h3>\r\nIntrinsic biomechanics refers to the study of how the body moves and how different forces interact with our muscles, bones, joints, ligaments, and connective tissues. It’s about understanding the body\'s internal mechanics—not just for athletic performance, but for movement efficiency, joint longevity, and injury prevention in daily life.\r\n\r\nThis field draws from physiotherapy, sports science, and anatomy, but its applications are far broader than the gym or the pitch.\r\n<h2>The Role of Biomechanics in Daily Movement</h2>\r\nDaily movements may seem small, but they’re biomechanically complex. From walking and sitting to hoovering the floor, every action recruits a series of movements that can either be helpful or harmful over time, depending on how well your body is functioning.\r\n<h3>Walking and Running</h3>\r\nThe biomechanics of walking and running influence how efficiently we move and how much stress we place on our joints. If your foot function, pelvis mobility, or spinal alignment are off, the body has to compensate, often resulting in overuse injuries or fatigue.\r\n\r\nLate supination or ligament dominance, for instance, can cause “energy leaks” in your movement chain, making simple walking feel harder than it should be.\r\n<h3>Lifting and Carrying Objects</h3>\r\nWhether you’re lifting a child, carrying groceries, or moving a suitcase, your body needs a coordinated system of muscles, joints, and connective tissue to handle load safely. Poor biomechanics here may not cause immediate issues, but over time they can contribute to chronic back pain or muscular strain.\r\n<h3>Sitting and Standing</h3>\r\nWe live in a sedentary world. Spending hours sitting at a desk or standing in fixed positions can reduce the movement variety your body craves. This often leads to poor core engagement, muscle imbalances, and eventual discomfort or dysfunction. Biomechanics helps us understand why postural variation and load sharing are key to staying pain-free.\r\n<h3>Household Chores and Activities</h3>\r\nDaily tasks like gardening, washing up, or hoovering are more physically demanding than many realise. Without good biomechanics—bending at the hips, alternating sides, engaging the trunk—you may be unknowingly stressing one side of your body more than the other. Over time, this can lead to symptoms and mobility issues.\r\n<h2>Long-Term Health Benefits of Good Biomechanics</h2>\r\nDeveloping sound biomechanical patterns isn\'t just about feeling better today—it’s about ensuring long-term movement health. When biomechanics are optimised, everyday life gets easier and more enjoyable.\r\n<h3>Risk Reduction</h3>\r\nEfficient movement reduces unnecessary stress on joints and soft tissues, lowering the likelihood of chronic pain, injuries, and repetitive strain.\r\n<h3>Improved Energy Efficiency</h3>\r\nThe less the body compensates, the less energy it wastes. This means you’ll fatigue less easily doing ordinary tasks like walking the dog, cleaning, or even exercising.\r\n<h3>Joint Health and Longevity</h3>\r\nAs we age, the wear and tear on our joints can increase. Poor biomechanics accelerates this, while optimal movement patterns help preserve joint space and function for longer.\r\n<h3>Core Strength and Spinal Mobility</h3>\r\nA mobile spine supported by strong, balanced trunk muscles helps manage load effectively, reduce pressure on vertebrae, and prevent compensation-related injuries.\r\n<h3>Enhanced Quality of Life</h3>\r\nPain-free movement contributes to independence, mental well-being, and the ability to stay active for life. Whether you\'re 35 or 75, how your body moves matters.\r\n<h2>How to Improve Your Intrinsic Biomechanics in Daily Life</h2>\r\nYou don’t need to be an athlete to benefit from better biomechanics. Here are a few practical strategies for improving your daily movement:\r\n<h3>Embrace Postural Variety</h3>\r\nThe body was designed to move, not to stay still. Regularly change positions throughout the day—sit, stand, stretch, shift your weight—to keep your body responsive and well-balanced.\r\n<h3>Strengthen and Mobilise the Trunk</h3>\r\nFocus on core stability and spinal mobility. This helps absorb impact, reduce strain on joints, and improve your overall movement control and balance.\r\n<h3>Stay Active and Aware</h3>\r\nMovement is medicine. Integrate strength training, mobility drills, and daily stretches to support biomechanical function and reduce muscular compensations.\r\n<h2>Final Thoughts</h2>\r\nIntrinsic biomechanics isn’t reserved for elite performers. It’s a vital piece of the puzzle for everyone who wants to move better, live pain-free, and maintain long-term health.\r\n\r\nAs a trainer or coach, understanding how intrinsic biomechanics influences everyday movement equips you to better serve clients of all backgrounds—not just athletes. From posture correction to injury prevention, the ability to assess and improve movement is a powerful, often overlooked tool.\r\n<h3>Want to Help Your Clients Move and Feel Better?</h3>\r\nConsider training to become a Biomechanics Coach. It could be the key to improving your coaching outcomes and transforming your clients’ long-term well-being.','','','inherit','closed','closed','','43019-revision-v1','','','2025-04-24 13:40:59','2025-04-24 13:40:59','',43019,'https://biomechanicseducation.com/?p=43023',0,'revision','',0),(43024,0,'2025-04-24 13:47:53','2025-04-24 13:47:53','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"test\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA66QFEcmYvfpCBez6CZAo88xTdh24R0bhwXEd1krF0novD4Dl8TeyGf6bd4UtGiI2I6re2TnRaVoVt_WbHRg2cfP15JrJXudiupj-P7qlbKcrFStaPjKQGE_fWyGfoAOaWdOjgiOV7TZuPXzaEluSrJE-EGSRsupUNOUV094LDG479Pr87et0tsUUH_m2R4OkDSssalQ9JfUI608f6QDsAENOJgqmgX60xxLhIoxWLxlWPJzItoWN43UpRurEtR4PL69LJ4DuGtWO1-qKBSTKHYWumC1BXmHHsgCV9K-q8hbTmyoQ6PhVqY5rcnrVhJgsBz637-vTgAC2_qC6g5fR71cY-wtH8NkHxZIunXf-eaa-0glTd3iAN2fQefT4pwTnkOZ-VyN6AwMwGxSrlnwZpZGP8iNJA7J1AD5JRqgz8Cz0QLQWd_NlKSUD65gt7Inmv3A2B9P4qKjCQf7XcENdeaPn1mnxWnlq-z8VSNnRr2TcyXiLxxEAvlHdphxSQ19Cq1VKVfi4nAWOa81QPEAdqKI5w7DQ-lxg4e9qQFtAdp_0CepsYmEorB2x1GbbgcVGTNWtXKvI0iX7aBJYiry5iP2cW393PRiL18hcaCaorUfS9rQ9DGF46FE9nLiVOF4LgoYTnDqBDdV1VXTDT-GzFiANTQ_ceBWXFefr3y32cuLDnCYDw2Wdg1zeUWhIOgy9dgCR2159DXV_39bcBetwXkDatuxD8J5ZQTfYXdDmQ8uIrWMzi2oYJwUgZ_mLmFLM54g_Nmc8bpX4zJyNhZeeSxYoYcWhl5bXLPn2jUWSbBz0r_n5XTgXozKH2HqPjR3FsnzFQTV-TMjuoZJ-5GrzDIFy3XOub6w-zNm0m05Bt-Mc2-1CFHX_fJGNe6f3_3G2nFkUaLvKCvrMBIJsPY_vxYLGUIfg1zi5rcigiM48SpZN6YK0TFwwMDj2h0Rm1zWwxoDcc0FvIs8i3vhrjfGny6wq27kAPQOsBI1W22n-5Ourw7G3oDQymH5lR4gnPOT_iVGAiUztrNAGjYROqlM17YqkdLn8lWrpokTi5NOaE2gUxvgUGuF0YyBc25QjhDxOnVZAArLyYI-PhF3pKbWqDg6g-BnRZyB0OqcD5bNpxViv-E8a-HfQltmUELLug__GPlbyqYL8eLqOBh-Cy9a5T14PaaXO-PpzI537x3Yy8uN8FlycyF0kV6yZmT3P71l0W2P4Orlbj1mZuXRMSAVMy19tLP1K33G7VGp4_Su9ail9cu7lqOKoaFleGRNvSPoClgZUaJgWRtJbK1Vm4u-JvSEOuIKe_LRDL6CfObHtkZQ07Cl-DZkb4YZ6oofR96CC0rsIVcZVQDLS2HuiWTQtXVu9Wwd5E_KZbyhyphxIUGSqPrsJpeOEU8_IHHSSmYXyrdWjZ-WHqXrIm_UMe9wyzS6HJC8Qp-SDWD5Ep5nhNQLA0ZYAggyZTnVywxxeuvCsAlAUFX74chd6aOj70yV6YkJRPmo11RKYo6dk78R57VqKzzB6BHiIdKNoEJeOMaZ7Vod_54oCAdiUwaOPNu3KwVIXALdvcEPuR48Ee_IeUkkXC4rgMCg4P7661JfTOeDI8_D70HMWv0h6eyDmscx2p-QnzowmaPucNa0TNsId9E4mLJLSrTGCpvTnKJrwUSTlvNFo15qVlrWJdhx29eWdCegkUzcuiGXPZm12wlqWnmohr8cuTlkAB4hBsY4cr_m2vhH0QTeVDRLCYKAuMySFeP1g4bD7xSXjUrVdnUVf0ihqMI4KLwyiObT9SLLW28cOwdmsDTtDkKkYSt0ZzOlrIkDKhd1ZNVugO5F1l4vCW6McY3clIc8jTkfzMbjCQDcMnPhi9S4iUPpqzkqszZ1KfEkSqfr7cMKJYhILz8Nk43-OqBiR_FCOfWP9BcBUtO6LGfELu7NcKLsVSL_wMtW-Zqts1uKANV9ny61-RvS8vKQRvZes5cbi5wLUU9XEBHjTi_SdtBUDihMV8hSbFwoK86eUK_hXAAmIwd590yW4Q8ZZrHymEgdkRlaeEFmVf-m47A0W4yBSfF4ve0YDjRqDRorue1uw7kOY9mxGdzKF6SfZi9kSn8mklKCa_pakOoksVog2qujskxTRL6oyJPPeGp4fUr0MBiJN1nnkhJ-i04qfOKl-Vrh806vKBNPybaiiVzM9qy\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a4102bae955-98404810','','','2025-04-24 13:47:53','2025-04-24 13:47:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43024',0,'cd-form-entry','',0),(43025,0,'2025-04-24 13:50:19','2025-04-24 13:50:19','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"test\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA7XGLApXEa1enmrjPG1Yg2dWf-89QhqImqYVgmAyWEDspFNvFM7Oxn1BvStO81BbLYk1mzk3vU-YwpMz3H5NXbr5hcoYyZZMsUjMEL4ck2OobZWe5AAoV6OaX7bX_AAVOyvtsRWbgmsxx9HhdgdlBpBKkc11s8kMi0IikDKSbRnrKXt-05UoFLOQIpA9hHUtAlsGiXPoewZZIrc5afY3Av3RgR3MNYTnWLPvzMdUJopoiHDJD9jBi9gs4rVMc8lNd0T6ag78L-TK83dBmTsohN9znVB1ji0296jZ4cnuAbDFFoTd3CXBw6ns1w5Fb0juW0cNCbMSUxtt-nZkAfTV9Kns4Np5-bn5d81m2k4vrh4GvY2dXbauKcociULKenJApZysAXl4pWenK5tZyOfwRi8NYmTMHXU_2oMcQUo-VgZH8qAi3cLnOq12_JZbSDIv2jteVzlGImnYvSYVsjbLfn92X1sE_Mavw_8EL0IMzfOsb38FJPDY3Wrx-KsulWuJdZxDgBrYsi6vF1mHWVxtcj8Q0P7amW9ZSMqDzLxD4IhP-I2L9_H4VYkxjorsPfelrRoC8aJSKqB_vyO-T67hBqJJMeD4jMWAIypvGsLrX50oBPfJev8uviSiJVktfv1ee7B-mTkY3pc8R0YulEetnMU9tVNVexeZllu3sQ91lTgXf0ACtEnfHSmD_BEWF73WeXXztU0B63RZwPIFBDK1oA6fdzAKoUmneWp7GqgjOPuR6tcttbM2EUMJV9bscZlGB6hM5VmTY3MLzqmWE8n11NWKoaU451s3bF0ipLhfmPNJzuTCWSbbKLb6NeOVsfRUOtdzsi1wEyMdw4ZuIcTgamF6CMskIxiACiASPqnUyoi5o60SO7v3BQ_w2fbPUEXK_tdKlHY7RvETf52z16sZvRy04rQ7aVlNxU31QtPeeP8pOQ1nHrrdlVAUDhUJ2CO_E8r1IqqXOu2y156JhGl69g6si6ZP7ARU_s_YJ7hmVrc0k7aDWKEJQsOdTBREcpPEdXQQRHPkDZve8Oe4cI1CBqdu_iCQYKWIF5C7c5ZFRe3RpShrKcj6251QnUrj6Ut3P2zjO-7xOxM0ikmH3FCQDT51ltAxGrYtlCMp5hiQjKvGK8Iw4-BL3C-UxugGntQWJ3049iasE4s0o9qrfub1zaSzwQihjK26YRg9nLeVRzd4Ouuj6675THnAtj3Y_AVEk4i6_p4BhErRf92Ypcz2IMwYX7u1T2_XygC-wKz82RNsPrdj0WaFDx6Pe1XHqRc4v6lbqrVQPcCBTBubtEf3upe6f_K9qs7mX5q711ji1CfPkOtv3M9IBxQFNcauvHo7lipOTBDuHruK7DRp5GZVpJPbkQumkF1EnQtZ0AKqdd0Skg3cDXdK9gxvaB0aUXKRxakhQvSzXJaQAxTTGKXW6OcgyFJ0whqdPc8uduzOonBqgh_6zKMdrKVgXxT_j4bo5wE1LNorzkSjlg67b0_1sCcPRl47WXpzlm39bQxIAN2uU5qSxsc_TcP5EQVXk1ObA8MoCd6Z99qwfLDW7FgZ_lM7jRljd3-cgDSBFArgpyXg_Zqc5ibsVx6ZDkhhJ6KgxyoFlHClUDxV-6NCdVX-v4mQJXAkttsBucPH8iXFr_0j7ZnaPgCHZXw1CswyaGFAPDb5cUDRxgEgmEkQOy9CplravWL3BBC0eBivulUD5Wh6UTDPNgXTYPEzIzQV-qVOv2BhpNn6fD9GWHMKc7y_Mf4b9pjbx6ah7UAcOtC4g-lUsC_mSLpAuh5L-ozfl_Qs9TStgV0_C6epzj5IthZ4ZGs_1nYTUmzmMQYH_hhxpSV7sGuYeGkSEhXX2XHy1Dmiin0MYa_qChd6t5tPQHgy9iJbsgO-kG30vAFxaFa42Un0NeVsuDyw5KSqKY1zY-KF9Qi1ERH3pLqi0mAInqzaZPpRc-9yyDvvHJr8VcTf5Grw8oXOi21aD8HZ99fxrj-p_xAqswWyUvdUiqnvdxDYm2GHXYdwIB0v8XO4bJrfCRo7h9c5HbC2cS3otZ9F300fFwD-DzQfa16lcVrSZsqylpULxew0l94ZjDGWj0ySpWZXYdLXMSRJwuiNsiszNDdRCgbOs6xcvKLx0H7uIMdQ0CaxR67Pk8w-8t3hdVhc0lGMfuJGN4TSiQueTd2p7jbHr64YqV6\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a4155e52316-59505275','','','2025-04-24 13:50:19','2025-04-24 13:50:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43025',0,'cd-form-entry','',0),(43026,0,'2025-04-24 13:50:55','2025-04-24 13:50:55','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"test\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA53JCQH0u9ST_IM0uCO08ofCORuxq8PAWoeCCV1pwjdFFdf8bBs9FAYTiJi_wkdEHK6enq-GsXOtkVbaKKZsBeRCnxTr3j1KKFFtncKq2Xnpq_GCd81_yPxuWGzwuNMzc9D5BCXGXNonl-2d5L_45XS6gVNe4qHC_pAW3xt5t4sgDkStIT6gffSWH_NGYlV1B8RdFp24WPXrONm26obBAeTE4FJVRSFxrMG_HKNTuaWtVngz-dFsifFHuMurlwKHkXkPFq5KUuDqMxbsqTRqP-eX-xV3GJr7HJ6b-hnIYpAM6HoYYOCLwsBrCLjETEXTpOatMsBVEZSBXaKyqc7cVTOFW2uOT8skqdJqPdiGGx6pdJLFjSSlGuqFmM9-0xFQxcYq2rsSr4_15QFcwIdl-UlSlte3v3KjzBo89Nrkd3DcH9HJhHDFulIjmJAsC3s069658UTy7tVjFf1nsDbzavZH8x1Dx2e5P0U0KAeYCRhuJoNQxOk1EvoIPKrttHUbxgqjC8Cborj-O0A3FqNiQQbONf6w9maeqgWFYRv0sKR4ymKOKSNW6UIKGKPTRsfk_GZRQ-rXqtPU6T0iAYl4aqjamexTHEz0LS6TuEI7I1uglWdvkT8AQKQs4lpEsbp9_iWx7GCWoNENb51RqrBrX20DhCG9AsPvPSM_shiVCHsdFmzwmOlkuXjRVHmkxuZIqcigLxU7lR021iBodu0LrfSR-r5SUwoBQ40EZNsEm3o012GD5ENN7HzirOgzicM0pXAgQ3Im0JXIafoGrzDuJK6n8WQBgTZaFWs1Hpg6zpKkeIL0XI2rpX4iyRVBe8lRpurRcVN8kFIfE5tNseWdMMnjOtlpCvyIfyiF_NzMtYkgdhi1H_MzVO4Y4983l5yye_7r4YBhXX3Mvil93YAs4sZ4KQZZWTyeYq1R2MUpsfsme7XWWnrvjuHg3qGQXwbs25TP0En0msQQa8DetPyqwVgByQNv_is1a0klhvlc4NNoR484U49P963HTI5BAffGBqX2ZT-dQx4HcD_lTwsVsFU7kBZXYqGZbbweosOdMRamlaVgEmBVFhi5OlNtPG5kNw7O-orKBBLVu-m99OsNGOLdcDsWCS7qczXZwZgGpwqiuzfpKJ6HMb1SkcX7iOluXV7PkoLr_Z53j9RUWLoMwA7lKcLcSmxkyEyBxCbaJ3tM8C85MegmmDZUpbvCwL9oe7xFFYoGY-lUE1SVc7vbiKGNHk7iqtZpjlE9Bgmx3zfJkfwCsoiJcVPtU4G-weaA9F1f1rZjk2QKkXuwoo5RE8ScxshWTMUQFAfOUFBSzUSPkavZ0Ziax5Gj56EvSh6K6uZTxeqQfR-KBS6pWdjby931hzvSjpPz7RkIGA56LoTn0lEuQt0JN-jc3UvFp-nbeYBvy7D_YE9YrnTsN8er3V2ovwf-6hPvjsn5CYeY8h7YvK3rCsJRu9QRh5knWfuYOsVOBTDSdO9_E4lfvoJem5EN-Uic4OL4zqtM_Mzhs2xMVq8RcAImtaJjrpVHWEoCc3iFEFm9--OfaqTWTfCfRgplLApxDNzZlmHEcknh7uEJ2Lh3H8KljA9XAGKNoyD5_qxCUc8nOlV2isgVuIFrVFXVJRVM4yDq6BSl4wnBVRIcoemsyBrCdfhSWqRmRAEZrL1qL4AWd3BUhCKlbsoJeo7py66RyfD0wkB3bFryk3Uo0Qa4quUTkvNY3X1eh25lwxrWSgabrkMIDE1fG0ZTKYSJVx9nhFOIpsVslA4fmih6vzH0Q3r7lrlty2nkxZmmgAV1xYwUu8pBF48yEl7dTrmMcLotxKrawI4XO_CWZjov1z4q2Fz8jF2rlnTG8wuXidGZCTb71IPdbt_I8XsQeikFLRss2BbcC2syUXAvmyHSBk0iFHANyZbsBNqUaXkBwkPLWC_PF-GYTmrrKBUWDQun60HZY9nzYnYUY_cEsasnTUb5JSb3KM6_0F0x-CoGq7Vq6g3wj8pDoRJuP-CU2yY8H4BqoWfSwbGSABY6zXK5w0fywP1jn6ZMcrr8mhybdzhzKQnJ3Osk1VylT-2eY7hlifFT-pHkb8BMgpJ2RghgJhUi6Ba8srtFGg7lCZSkeeVAoKe28oXAto7_FncdflOqD1HsDa29IBxP9ESwRw5LbX8GnSInIj72PyXMnO7pDQ-ozfx\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a41b6e80501-40298101','','','2025-04-24 13:50:55','2025-04-24 13:50:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43026',0,'cd-form-entry','',0),(43027,17,'2025-04-24 13:59:00','2025-04-24 13:59:00','','System of Exercise Biomechanics Education 2025','','inherit','closed','closed','','system-of-exercise-biomechanics-education-2025','','','2025-04-24 13:59:00','2025-04-24 13:59:00','',42986,'https://biomechanicseducation.com/wp-content/uploads/2025/04/System-of-Exercise-Biomechanics-Education-2025.jpg',0,'attachment','image/jpeg',0),(43028,17,'2025-04-24 14:01:16','2025-04-24 14:01:16','<h2 data-start=\"264\" data-end=\"548\">Anatomy for Personal Trainers: What Every PT Should Know</h2>\r\n<p class=\"\" data-start=\"264\" data-end=\"548\">Understanding anatomy is a fundamental part of becoming a competent and confident Personal Trainer. Not only does it support the design of more effective workout programmes, but it also helps you identify movement patterns, improve client performance, and reduce the risk of injuries. Whether you\'re starting out or levelling up, this guide explores the key anatomical knowledge that every PT needs to grasp and how to apply it practically in your client sessions.</p>\r\n\r\n<h2>The Importance of Anatomical Knowledge</h2>\r\n<h3>Why Textbook Anatomy Isn’t Always Enough</h3>\r\nWhen personal trainers study anatomy, they gain far more than theoretical insight. They learn to identify and explain the body’s structural organisation, understand how various systems interact, and most importantly, apply this understanding in practical, real-world settings. However, the learning curve can feel steep at first. It\'s one thing to memorise diagrams of skeletons and textbook muscle maps, but another thing entirely to interpret how this knowledge applies to a diverse range of clients, each with unique anatomical variations.\r\n\r\nThis is where the concept of layered learning becomes so important. At Level 2, anatomy education focuses on broader muscle groups, such as the quadriceps and hamstrings. As trainers progress to Level 3, they dive deeper into the specific muscles within these groups, such as the vastus medialis, rectus femoris, and biceps femoris. Yet even this is only the beginning. With continued study and hands-on experience, trainers begin to notice individual differences in clients, like the occasional presence of a fifth quadricep muscle, the tensor vastus intermedius highlighting that anatomy is rarely as fixed or straightforward as it may first appear.\r\n\r\nThese discoveries can cause some trainers to doubt their understanding. They might worry they don’t know enough or fear they’ll harm their clients due to gaps in their knowledge. But this is precisely where deeper learning and coaching support become crucial. Programmes like a Diploma in Biomechanics Coaching help restore confidence by shifting the focus from trying to name every muscle to understanding the actual movements clients perform, and how to support those movements effectively.\r\n<h2>From Muscles to Movement</h2>\r\n<h3>Observing Movement, Not Just Muscles</h3>\r\nRather than fixating on identifying individual muscles during complex movement, it\'s often more beneficial to analyse joint actions and overall movement quality. In fact, even if we knew the exact muscle responsible for a specific movement anomaly, it wouldn’t necessarily change our intervention. What matters more is whether the movement is efficient, safe, and aligned with the client’s goals.\r\n\r\nBy observing how joints move, how muscles coordinate, and where compensations arise, personal trainers can make more meaningful and practical decisions during training sessions. This movement-based approach not only leads to better outcomes but also encourages a more intuitive understanding of anatomy, one that grows through observation, correction, and reflection rather than rote memorisation.\r\n<h2>Major Muscle Groups and Their Functional Role</h2>\r\n<h3>Understanding How Muscle Groups Drive Movement and Performance</h3>\r\nTo effectively coach movement and design smart training programmes, personal trainers must be fluent in how different muscles function. In the upper body, the pectorals are primarily responsible for pushing movements, such as those in a bench press or push-up, involving shoulder flexion, adduction, and internal rotation. The deltoids are involved in almost every arm movement, particularly overhead presses and lateral raises, contributing to abduction, flexion, and extension.\r\n\r\nPulling movements such as rows and pull-ups rely heavily on the latissimus dorsi, which assists in shoulder adduction and internal rotation. Meanwhile, the trapezius and rhomboids stabilise the upper back and scapula, ensuring proper posture and upper body alignment. The biceps and triceps, of course, are essential for elbow flexion and extension, playing key roles in both pushing and pulling actions.\r\n\r\nIn the core, the rectus abdominis supports trunk flexion and, more importantly, stabilisation through co-contraction with the thoracolumbar fascia. The obliques manage rotation and lateral flexion, but they also help resist undesired movement, making them vital in maintaining posture and core control. At the deepest level, the transverse abdominis wraps around the waist like a corset, helping to stabilise the spine and pelvis during movement.\r\n\r\nThe lower body contains some of the most powerful and functional muscle groups. The quadriceps drive knee extension in exercises such as squats and lunges, while the hamstrings manage both knee flexion and hip extension, contributing significantly to movements like deadlifts and sprinting. Interestingly, the adductor magnus often acts like a “fourth hamstring” due to its role in similar movement patterns. The gluteus maximus is one of the most important muscles for hip extension and explosive force, supported by the gluteus medius and minimus, which manage abduction and hip stability. Finally, the calves, particularly the gastrocnemius and soleus, are responsible for plantar flexion, enabling propulsion during walking, running, and jumping.\r\n<h2>Building Smarter Programmes Through Movement Fundamentals</h2>\r\n<h2><span style=\"font-size: 24px; letter-spacing: -0.02em;\">Assessing Movement with Purpose</span></h2>\r\nAn effective training programme goes far beyond simply targeting specific muscles. Personal trainers must evaluate movement quality using objective benchmarks, identifying imbalances, limitations, and compensatory patterns that may affect performance or increase injury risk. This might involve using movement screens or assessment tools that highlight where a client may lack mobility, stability, or strength.\r\n\r\nPreparation is key. Before progressing to complex movements, trainers can use isolated exercises and techniques such as muscle energy techniques (METs), joint mobilisation, and nerve mobilisation to improve movement quality. These preparatory steps lay the foundation for more integrated, functional training later on.\r\n\r\nEqually important is antagonist conditioning, training opposing muscle groups to ensure joint stability and balanced strength development. For example, strengthening the hamstrings and glutes alongside the quadriceps helps maintain proper knee health. As clients progress, trainers should shift towards integrated, multi-joint, and multi-plane movements that reflect real-life demands and support the specific goals of the individual.\r\n\r\nThis pyramid approach to programming, starting with assessment and isolation, progressing through preparation and integration, ensures a comprehensive, client-centred path to performance and resilience.\r\n\r\n<img class=\"size-full wp-image-43027 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2025/04/System-of-Exercise-Biomechanics-Education-2025.jpg\" alt=\"\" width=\"1200\" height=\"848\" />\r\n\r\n&nbsp;\r\n<h2>Final Thoughts</h2>\r\n<h3>Anatomy as a Lifelong Learning Journey</h3>\r\nAnatomy isn’t just a topic to tick off during your qualifications, it’s the foundation of everything you do as a Personal Trainer. From designing effective programmes and preventing injury to understanding the subtleties of human movement, anatomical knowledge enables you to coach with precision and purpose.\r\n\r\nAs your experience grows, so too will your understanding. Don’t be discouraged by the complexity or the occasional uncertainty. Embrace it as part of the layered learning process. Focus on movement, stay curious, and keep expanding your skills through education and practice.\r\n\r\nIf you’re looking to enhance your understanding further, consider pursuing advanced courses in biomechanics, anatomy, and injury prevention. The more you know, the more confidently you’ll be able to help your clients move, perform, and live better.\r\n\r\nFor more tips and in-depth training insights, follow our blog and join our growing community of fitness professionals committed to lifelong learning and client success.\r\n\r\n&nbsp;','Anatomy for Personal Trainers: What Every PT Should Know','','inherit','closed','closed','','42986-autosave-v1','','','2025-04-24 14:01:16','2025-04-24 14:01:16','',42986,'https://biomechanicseducation.com/?p=43028',0,'revision','',0),(43029,17,'2025-04-24 13:59:31','2025-04-24 13:59:31','<h2 data-start=\"264\" data-end=\"548\">Anatomy for Personal Trainers: What Every PT Should Know</h2>\r\n<p class=\"\" data-start=\"264\" data-end=\"548\">Understanding anatomy is a fundamental part of becoming a competent and confident Personal Trainer. Not only does it support the design of more effective workout programmes, but it also helps you identify movement patterns, improve client performance, and reduce the risk of injuries. Whether you\'re starting out or levelling up, this guide explores the key anatomical knowledge that every PT needs to grasp and how to apply it practically in your client sessions.</p>\r\n\r\n<h2>The Importance of Anatomical Knowledge</h2>\r\n<h3>Why Textbook Anatomy Isn’t Always Enough</h3>\r\nWhen personal trainers study anatomy, they gain far more than theoretical insight. They learn to identify and explain the body’s structural organisation, understand how various systems interact, and most importantly, apply this understanding in practical, real-world settings. However, the learning curve can feel steep at first. It\'s one thing to memorise diagrams of skeletons and textbook muscle maps, but another thing entirely to interpret how this knowledge applies to a diverse range of clients, each with unique anatomical variations.\r\n\r\nThis is where the concept of layered learning becomes so important. At Level 2, anatomy education focuses on broader muscle groups, such as the quadriceps and hamstrings. As trainers progress to Level 3, they dive deeper into the specific muscles within these groups, such as the vastus medialis, rectus femoris, and biceps femoris. Yet even this is only the beginning. With continued study and hands-on experience, trainers begin to notice individual differences in clients, like the occasional presence of a fifth quadricep muscle, the tensor vastus intermedius highlighting that anatomy is rarely as fixed or straightforward as it may first appear.\r\n\r\nThese discoveries can cause some trainers to doubt their understanding. They might worry they don’t know enough or fear they’ll harm their clients due to gaps in their knowledge. But this is precisely where deeper learning and coaching support become crucial. Programmes like a Diploma in Biomechanics Coaching help restore confidence by shifting the focus from trying to name every muscle to understanding the actual movements clients perform, and how to support those movements effectively.\r\n<h2>From Muscles to Movement</h2>\r\n<h3>Observing Movement, Not Just Muscles</h3>\r\nRather than fixating on identifying individual muscles during complex movement, it\'s often more beneficial to analyse joint actions and overall movement quality. In fact, even if we knew the exact muscle responsible for a specific movement anomaly, it wouldn’t necessarily change our intervention. What matters more is whether the movement is efficient, safe, and aligned with the client’s goals.\r\n\r\nBy observing how joints move, how muscles coordinate, and where compensations arise, personal trainers can make more meaningful and practical decisions during training sessions. This movement-based approach not only leads to better outcomes but also encourages a more intuitive understanding of anatomy, one that grows through observation, correction, and reflection rather than rote memorisation.\r\n<h2>Major Muscle Groups and Their Functional Role</h2>\r\n<h3>Understanding How Muscle Groups Drive Movement and Performance</h3>\r\nTo effectively coach movement and design smart training programmes, personal trainers must be fluent in how different muscles function. In the upper body, the pectorals are primarily responsible for pushing movements, such as those in a bench press or push-up, involving shoulder flexion, adduction, and internal rotation. The deltoids are involved in almost every arm movement, particularly overhead presses and lateral raises, contributing to abduction, flexion, and extension.\r\n\r\nPulling movements such as rows and pull-ups rely heavily on the latissimus dorsi, which assists in shoulder adduction and internal rotation. Meanwhile, the trapezius and rhomboids stabilise the upper back and scapula, ensuring proper posture and upper body alignment. The biceps and triceps, of course, are essential for elbow flexion and extension, playing key roles in both pushing and pulling actions.\r\n\r\nIn the core, the rectus abdominis supports trunk flexion and, more importantly, stabilisation through co-contraction with the thoracolumbar fascia. The obliques manage rotation and lateral flexion, but they also help resist undesired movement, making them vital in maintaining posture and core control. At the deepest level, the transverse abdominis wraps around the waist like a corset, helping to stabilise the spine and pelvis during movement.\r\n\r\nThe lower body contains some of the most powerful and functional muscle groups. The quadriceps drive knee extension in exercises such as squats and lunges, while the hamstrings manage both knee flexion and hip extension, contributing significantly to movements like deadlifts and sprinting. Interestingly, the adductor magnus often acts like a “fourth hamstring” due to its role in similar movement patterns. The gluteus maximus is one of the most important muscles for hip extension and explosive force, supported by the gluteus medius and minimus, which manage abduction and hip stability. Finally, the calves, particularly the gastrocnemius and soleus, are responsible for plantar flexion, enabling propulsion during walking, running, and jumping.\r\n<h2>Building Smarter Programmes Through Movement Fundamentals</h2>\r\n<h2><span style=\"font-size: 24px; letter-spacing: -0.02em;\">Assessing Movement with Purpose</span></h2>\r\nAn effective training programme goes far beyond simply targeting specific muscles. Personal trainers must evaluate movement quality using objective benchmarks, identifying imbalances, limitations, and compensatory patterns that may affect performance or increase injury risk. This might involve using movement screens or assessment tools that highlight where a client may lack mobility, stability, or strength.\r\n\r\nPreparation is key. Before progressing to complex movements, trainers can use isolated exercises and techniques such as muscle energy techniques (METs), joint mobilisation, and nerve mobilisation to improve movement quality. These preparatory steps lay the foundation for more integrated, functional training later on.\r\n\r\nEqually important is antagonist conditioning, training opposing muscle groups to ensure joint stability and balanced strength development. For example, strengthening the hamstrings and glutes alongside the quadriceps helps maintain proper knee health. As clients progress, trainers should shift towards integrated, multi-joint, and multi-plane movements that reflect real-life demands and support the specific goals of the individual.\r\n\r\nThis pyramid approach to programming, starting with assessment and isolation, progressing through preparation and integration, ensures a comprehensive, client-centred path to performance and resilience.\r\n\r\n<img class=\"size-full wp-image-43027 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2025/04/System-of-Exercise-Biomechanics-Education-2025.jpg\" alt=\"\" width=\"1200\" height=\"848\" />\r\n\r\n&nbsp;\r\n<h2>Final Thoughts</h2>\r\n<h3>Anatomy as a Lifelong Learning Journey</h3>\r\nAnatomy isn’t just a topic to tick off during your qualifications, it’s the foundation of everything you do as a Personal Trainer. From designing effective programmes and preventing injury to understanding the subtleties of human movement, anatomical knowledge enables you to coach with precision and purpose.\r\n\r\nAs your experience grows, so too will your understanding. Don’t be discouraged by the complexity or the occasional uncertainty. Embrace it as part of the layered learning process. Focus on movement, stay curious, and keep expanding your skills through education and practice.\r\n\r\nIf you’re looking to enhance your understanding further, consider pursuing advanced courses in biomechanics, anatomy, and injury prevention. The more you know, the more confidently you’ll be able to help your clients move, perform, and live better.\r\n\r\nFor more tips and in-depth training insights, follow our blog and join our growing community of fitness professionals committed to lifelong learning and client success.\r\n\r\n&nbsp;','Anatomy for Personal Trainers: What Every PT Should Know','','inherit','closed','closed','','42986-revision-v1','','','2025-04-24 13:59:31','2025-04-24 13:59:31','',42986,'https://biomechanicseducation.com/?p=43029',0,'revision','',0),(43030,18,'2025-04-24 14:00:29','2025-04-24 14:00:29','<h2>Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes</h2>\r\nWhen we hear the word biomechanics, it often conjures images of elite athletes perfecting their movement to gain a competitive edge. While biomechanics is undoubtedly a cornerstone of sports science, its true value extends far beyond the pitch or gym. In fact, intrinsic biomechanics plays a vital role in everyday life—impacting how we move, how we feel, and how well we age.\r\n<h3>What Is Intrinsic Biomechanics?</h3>\r\nAt its core, intrinsic biomechanics refers to the internal mechanics of movement—how the body’s bones, joints, muscles, ligaments, and connective tissues work together under the influence of gravity and physical forces. While commonly associated with athletic performance, the same biomechanical principles apply to everyday actions like walking, lifting, and even sitting at a desk. Whether you\'re an office worker, parent, or retiree, understanding and applying intrinsic biomechanics can dramatically improve your quality of life.\r\n<h3>Biomechanics in Daily Life: Movement that Matters</h3>\r\n<h4>Walking and Everyday Motion</h4>\r\nTake walking, for instance. It may seem like a basic action, but it\'s biomechanically rich. If your pelvis lacks mobility or your feet don’t function optimally, the body begins to compensate elsewhere—leading to inefficient movement, fatigue, or even injury over time.\r\n<h4>Lifting, Carrying and Load Management</h4>\r\nLifting a child or carrying shopping bags becomes more about coordination than brute strength. A well-integrated system of joints and muscles makes these daily movements safer and easier, while poor biomechanics places unnecessary strain on the back and shoulders.\r\n<h4>Posture and Static Positions</h4>\r\nEven the way we sit or stand can have profound implications. Hours spent in static postures—especially without movement variety—can reduce joint health, weaken trunk muscles, and encourage dysfunctional patterns that may eventually lead to pain or dysfunction. Biomechanics reminds us that the body craves movement and thrives on variety.\r\n<h4>Household Tasks and Unconscious Patterns</h4>\r\nEveryday tasks like gardening, cleaning, or even hoovering all draw upon the same principles. Using both sides of the body, bending at the hips rather than the spine, and engaging the trunk muscles all help reduce stress on your joints. When you apply biomechanical awareness to these seemingly mundane tasks, you protect your body and keep it functioning efficiently.\r\n<h3>Long-Term Benefits of Good Biomechanics</h3>\r\nThis efficiency brings more than just physical ease—it supports your long-term health. Moving well reduces the wear and tear on your joints and soft tissues, conserving energy and lowering your risk of injury. It helps you maintain mobility into later life, potentially slowing down the natural ageing process that leads to joint stiffness and muscular imbalance. Strong trunk muscles and a mobile spine form the foundation for stable, coordinated movement—helping to prevent overuse patterns and the symptoms they cause.\r\n<h3>Simple Ways to Improve Biomechanics</h3>\r\nImproving your biomechanics doesn\'t require extreme changes or athletic ability. It starts with being more aware—changing posture throughout the day, incorporating regular movement, and strengthening your core.\r\n<h4>Practical Tips for Daily Improvement</h4>\r\n<strong>Be mindful of postural variety:</strong> Adjust your seated or standing posture regularly.\r\n\r\n<strong>Strengthen your trunk:</strong> A mobile yet strong trunk stabilises the body and reduces strain.\r\n\r\n<strong>Stay active:</strong> Include strength, mobility, and flexibility exercises in your routine.\r\n<h3>Why It Matters—for Everyone</h3>\r\nUltimately, intrinsic biomechanics is not just a scientific concept for professionals—it’s a practical toolkit for anyone who wants to move better and live longer, healthier, and more independently. For coaches and personal trainers, this understanding offers a real edge: the ability to help clients not just train harder, but train smarter. It means guiding them toward pain-free movement, preventing recurring issues, and improving how they feel in their body every single day.\r\n\r\nIf you’re passionate about helping others move well and stay well, consider deepening your knowledge through biomechanics coaching. It’s not just a skill—it’s a service that supports lifelong well-being.','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes','','inherit','closed','closed','','43019-revision-v1','','','2025-04-24 14:00:29','2025-04-24 14:00:29','',43019,'https://biomechanicseducation.com/?p=43030',0,'revision','',0),(43031,0,'2025-04-24 14:00:46','2025-04-24 14:00:46','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"test\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA4shl4BNuVn1qsDKEp4f1zwuqPnTVNypx_5sK62Y6l-YFshS-gIN-d_TM11nYnBHO2Y1I9s5TIDneolcABY_P9Y5YMVusTprrbIWRHAw_IYOE0Nyi7hMa5IMKLgb-gYpL_gNDJaWS607RdT9SazwnRkS186QugGETThjgpsQs50Q6Klahi5MAF0JEbxHJdUgYLQ03zjj3avxl6AzI45vyae2Tob9EGhmIuVpQ4wpC8qFooAIHH6qHEnsehXnKHQO7iZ4IeaLjiJIRzp7WtaOpoGTPqhjI7k9SjC45bOQzRnfRR1Q5924iw5QyrDiCVy6Za8dbWmUFMZPCF0e_uDHOiql6UzR4tpmQ1-Jj6LwE6Wih5M5tnfY7Fc8cVPemmx39KFLC_sm8KPMfRNdNUIug-fuWkafXuhOlWlfpsJaAz-Y1ZtKBYjOZtEJP6UPU-BSZsu8_M2e0Lo4k6B7QCxXkUjunuoTQ2r-xqZy3lCei5TDJ49kNfZACWkFMz4yprVSwTmzSthmPRLf4eYwjXeIZuRq_6eu-AWG-_ijaTlX0_FVLruqa4EADW2blnkc-7mdhBcuhJB4P0GM1C657MrSqLfy1KV--DjbS5_4jvnH5Wy9-EPeoQZG-ro4Wy3Dyl9YgbIMN7IMR-H2SSTbTu1hjagtZKpXYxGNkGkQnHmawy_4W0IMOzdj9-OxquGhl4YGWBieExmCiGNKmnByxoRBuHMuG2Q8NWOg3ua1SvpqzNCAswFKxIQUpB2WRDVii9h0en9oVLFRmSgwPGjEDiuBWL59k1IZydlRgOEPZRHWZfCtFnIRhrFjKv0OOEc0gApa4xnlmt2PTd7qswVAo-j3zbUUcUVBr3N7li5hdgEmhUC6HdNZkoCYqIaEPqycaACDz5P43C2Xd_wknyTL4AZkU2187N_zKDfDXyiTjTM-cqhBsrIyUBNCxaGsU4VGNxKm7z1VCXBGBLn03UdR7-fuS1LwJ-B9kidHVw9cd8ORTkIaov9y8n9ciysz7e8lsO6fdxQzSDRhPPe8nBVZ88qIWEudo00LIk1GHpDrwq35ZlhClogKsp8HVrWDqYuPheMPD8BwfSxQUhRni-VXMh6GxWCz-Fc2CVsRGRL1v3QiqbqVCFciBHO-elqcsWiQ11J0DFbNEGGYvmNEXzp5dcgj26kN5zPrGv08qwkBctTPWjgvp1XjxAL-Ao4Z1pUBL6kVL_QvPAPyBqWV_sGqGxp3Ye7uo2f_8gqHeAspW6ewzpzDu6qrYttR67jKKO2jHKwfYQodrUK69o-BtW6dvGbiJnYAmreAqvTBVqJlTKcp6kLuZ8YQvtbxnEFUk965oWJW2AE3y5pNO-zOOYDq_eghvmxwJGmcF_bOWIXdggFEfEK5MJC80MZpE0ebUqvXZJnnlLNYeYhcVkX99_6gJOLTvsTzr6UCE2zHMFSqV0wA4PufyAcv_8WOjG7QGHVVoz5yIdDU4TH0SBE-XOEfdzltwNTbLt891wadq1ij7cg3DKeERJOPsq2nGyxdjz-b1cUSE_FT8vIEMmT3QNaIyqETeqyRk8fEHixI1BSB1wV75wMGATjxsBL4qVzROFCT2a9VT9jdk8BaYZYobhClo6MhrcVaMk7UutaANROGro55hzX8AuQa7Lo5M-uMY7NGgJJ9tlTCwfOqx4zv2i4h2IL66PTJUCI-AuLj2tLdNVU-m3H7d7GwLPi9EqqrjDJlItn-vZXUt545d4Ipux7-jPN7ejMkaIDhtO9phSUN6JkGrF98G8cJUrE95rjgKMCEp9QhAssRYlYXZxVz8FcFcpoZir70FTc7IbQ1XQR6PfCQEbcG1B9d2eLNKPXbwOV5i0MQR_SVuUqJQoRSP9KfXi0WB4GIHVghpyoVWtVsewKpMD0CtSMHgitbLRbnf5GI4ZZhwDyEdA4-65-QgIpl_1P2JR0mnZZ3UoirorBBRZqOSMMY9WGzBpfPx6LfC5jt2MkKfhPPrGgYhAZwwqFP9nt1nqWI8kFeHDHnLNcbnMciw54ifYHoPbuh-DDDo2xF3TtuVSRMOWMaiI1PXmaP_Ya921uMECZsj0QhMOMVbYDHDyW9DC-89qu5ZyKuTnbokHTurmd2jCtT7UYB1pe5UqqDwpHYtL2O6OrGzbDzbIKYW813dIt2tYecE_myvvsjXTiNf1sBGNI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a4407c342a8-18681078','','','2025-04-24 14:00:46','2025-04-24 14:00:46','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43031',0,'cd-form-entry','',0),(43032,0,'2025-04-24 14:02:06','2025-04-24 14:02:06','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"test\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA5xZK66JuV2chHNROg0QJdBtrPkj4W5vBjX00sCimofK-9LbCvbnke89447T98CPvnb6WPa1qCL6QnR5hpx_3ClSHmVb2578ouCMwHzewi76Y5bU8hM9QgdOtA3g6Z4_ZeeO_9xE956LeJ4oPuULlvuJpkDpBmPAd5Q0g7byUfaEr8UYWjP_zInTdQMxJR8y_3pyH4F0PArkDNyFDuoaNYPRIp9y9rFQ_M9FzR9akyxzXo8212pEtvVejkKe27zwW0XeLKvWK9-hVhY_p0PTBVRgz9xn_PrcafIFsFaCCaImkOjhdS4ehjINnTaOdCatRengniU8DFrH1rNsMhGU9FLGz4GlGG5n-65HP55nQEJp3MqaHAovYxULON2vwqBfmhl5zK_Jvo-dV3QFsvNQB8O3cx78FLpPHh95iNJruXNChcNpXJRZGtUQVcXyrdxRWzRCYQOVR3CNkPY3KvVCTuM_RsM21TFDa71BiHgCGf18K9va_jf7hUwLMz-4uXjOoI9WZRa86yy1XddmK-4kv_30q-0NgvOKQH14aAFwgPMjBU9JzyFrEhLgdpwD1zBEfy1wG2izh_HlntE3QxFIYnZZoM0LPYeIZweKAxNdahE35wEI1k3Yx902rCWlz8J6HsssNBqfMvH6HripPPVyqKrjOhv69pxFOqn4QON17GRis9__2jc30tHzMiKZj3_kIfMzCPNUZ-6K2iNyGEiEPEhBzBfYqkqcv-NDvigVsYBqlU9cmmMPkKQusZHEWeicbEFjsWZJkM73_qT2IxKEbCQLiV8vNoLjKv8NFN2AYQEQXmkp0PXVZYJ_z3mh1B8vhV9TFd39S5DTcUTFfOACMSs8GX37XX6eZ0DQOpXGXmknj8T3LLGLctQJI6wsO3vN6FXOPQ2Qn1bJHZd7J1pLhEqTqICxdh_oXYofJHIoX0R5F7kTVe8mXAfs7g48wnxvF6WsRjrwic8msAzddFY6oC2KCGlp3oaRGBSkaZoeYZP3oQOjpK3fzRvo8c4pJ9_W3JLhbRDRwTLfQWrShVHJnigl1Avb33mMY0vsb87yFxM2Ciig6WzO5IUPPSI9X7-EoSl3vAVwUbDxkH1qVip8JGqZVn9SsHtdvzF5aEJuqUHPi0mdNAppp-zIB6PFBJY5fK5fwqHsTsWJELLVQkPSvOU6rVJqC3WCvBqU37csEdRLQbtez_9G4hu1K72BzOAli3gAQrzGPbKRSjxYAPHff3hDgmzpvkssUIdrwYY_p6LCVx3pQX6Ir1p8LcJIjAUQUCQz6FnwDVwriFX3jf35h2_PRPDTIlO034We6qdl1_d74VUvnuYGy6EOyk6wDdLuefoUPBgbTEs3pXPboCLKUM4KK0tqD34hkKuU9Qgt0P1N38lbyNlaGIIA_UxH1qzwWUaroIhbLMOf39ggwRxkHHQ5Nth8-E-LJ4WydpSOtsnapjxtt_Y-fWRRE8hQPzP7Ztwgrs8WLRK3Fdb36KlkSerbMshtsq0138uj5uFGZaOOQO9QfHPAR7CfnSXrWvsW2iK0v_4AF08X4fSNxwSXJ3TqSajvMetA5EzC3zxciYBUfc1JMbG2O-cjEn4HN3ND63R6BcyQdcAxjtdAB40m2No1X9AB5YTrnYmQkUrge08oHc4HqhD4jMRE2xbnZotkI4XefMzml_MUclSerAaBNBBk2_9FKwDGauUsxM99QccJBzcrWaH_SIgK_SGNW1Tk_7FF1S1XDaOlzteoMU7COE7XW73oDWtS_93uuNb1GT9UjPhcjQBO0OjTAiXiGBOs8Um5G1qMu-EKfy86JdGEKraUx_hWujFrCFjzhScsFf_PaUNbH99i2EpX0EdQOSV4QTyQvKa3hIKOgNJFH4a1cYJboh7SgshEJcLwnhIRxpiL5KfMAfw3pFi1HG9biXbLGCg6okBLvcB6DROOYZU_1IaSYfWe2fXqUS6I6X2GJkEF-X9_jsPSqngmMPhO_m4wAaaPfMhpILR905bknOBFRd1jk6DKgPx5f_nf7v6QU4LRLN5_BEHdBWX8aJlFvjkh12Lq0ivzeGSJZc2YLOLNuBdKyZM5Ughkl9lUqkaEQ1YqgrkzRtFgoCWYoFTqAoB_eLbyIl7f-1S9gB9KHHBje5fOGl4oEz2mj-lJ8esI4beDgDeoY7sYxA8JwwtBosNaJ35S9Yp\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a4458a6bf16-45177565','','','2025-04-24 14:02:06','2025-04-24 14:02:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43032',0,'cd-form-entry','',0),(43033,17,'2025-04-24 14:02:21','2025-04-24 14:02:21','<h2 data-start=\"264\" data-end=\"548\">Anatomy for Personal Trainers: What Every PT Should Know</h2>\r\n<p class=\"\" data-start=\"264\" data-end=\"548\">Understanding anatomy is a fundamental part of becoming a competent and confident Personal Trainer. Not only does it support the design of more effective workout programmes, but it also helps you identify movement patterns, improve client performance, and reduce the risk of injuries. Whether you\'re starting out or levelling up, this guide explores the key anatomical knowledge that every PT needs to grasp and how to apply it practically in your client sessions.</p>\r\n\r\n<h2>The Importance of Anatomical Knowledge</h2>\r\n<h3>Why Textbook Anatomy Isn’t Always Enough</h3>\r\nWhen personal trainers study anatomy, they gain far more than theoretical insight. They learn to identify and explain the body’s structural organisation, understand how various systems interact, and most importantly, apply this understanding in practical, real-world settings. However, the learning curve can feel steep at first. It\'s one thing to memorise diagrams of skeletons and textbook muscle maps, but another thing entirely to interpret how this knowledge applies to a diverse range of clients, each with unique anatomical variations.\r\n\r\nThis is where the concept of layered learning becomes so important. At Level 2, anatomy education focuses on broader muscle groups, such as the quadriceps and hamstrings. As trainers progress to Level 3, they dive deeper into the specific muscles within these groups, such as the vastus medialis, rectus femoris, and biceps femoris. Yet even this is only the beginning. With continued study and hands-on experience, trainers begin to notice individual differences in clients, like the occasional presence of a fifth quadricep muscle, the tensor vastus intermedius highlighting that anatomy is rarely as fixed or straightforward as it may first appear.\r\n\r\nThese discoveries can cause some trainers to doubt their understanding. They might worry they don’t know enough or fear they’ll harm their clients due to gaps in their knowledge. But this is precisely where deeper learning and coaching support become crucial. Programmes like a Diploma in Biomechanics Coaching help restore confidence by shifting the focus from trying to name every muscle to understanding the actual movements clients perform, and how to support those movements effectively.\r\n<h2>From Muscles to Movement</h2>\r\n<h3>Observing Movement, Not Just Muscles</h3>\r\nRather than fixating on identifying individual muscles during complex movement, it\'s often more beneficial to analyse joint actions and overall movement quality. In fact, even if we knew the exact muscle responsible for a specific movement anomaly, it wouldn’t necessarily change our intervention. What matters more is whether the movement is efficient, safe, and aligned with the client’s goals.\r\n\r\nBy observing how joints move, how muscles coordinate, and where compensations arise, personal trainers can make more meaningful and practical decisions during training sessions. This movement-based approach not only leads to better outcomes but also encourages a more intuitive understanding of anatomy, one that grows through observation, correction, and reflection rather than rote memorisation.\r\n<h2>Major Muscle Groups and Their Functional Role</h2>\r\n<h3>Understanding How Muscle Groups Drive Movement and Performance</h3>\r\nTo effectively coach movement and design smart training programmes, personal trainers must be fluent in how different muscles function. In the upper body, the pectorals are primarily responsible for pushing movements, such as those in a bench press or push-up, involving shoulder flexion, adduction, and internal rotation. The deltoids are involved in almost every arm movement, particularly overhead presses and lateral raises, contributing to abduction, flexion, and extension.\r\n\r\nPulling movements such as rows and pull-ups rely heavily on the latissimus dorsi, which assists in shoulder adduction and internal rotation. Meanwhile, the trapezius and rhomboids stabilise the upper back and scapula, ensuring proper posture and upper body alignment. The biceps and triceps, of course, are essential for elbow flexion and extension, playing key roles in both pushing and pulling actions.\r\n\r\nIn the core, the rectus abdominis supports trunk flexion and, more importantly, stabilisation through co-contraction with the thoracolumbar fascia. The obliques manage rotation and lateral flexion, but they also help resist undesired movement, making them vital in maintaining posture and core control. At the deepest level, the transverse abdominis wraps around the waist like a corset, helping to stabilise the spine and pelvis during movement.\r\n\r\nThe lower body contains some of the most powerful and functional muscle groups. The quadriceps drive knee extension in exercises such as squats and lunges, while the hamstrings manage both knee flexion and hip extension, contributing significantly to movements like deadlifts and sprinting. Interestingly, the adductor magnus often acts like a “fourth hamstring” due to its role in similar movement patterns. The gluteus maximus is one of the most important muscles for hip extension and explosive force, supported by the gluteus medius and minimus, which manage abduction and hip stability. Finally, the calves, particularly the gastrocnemius and soleus, are responsible for plantar flexion, enabling propulsion during walking, running, and jumping.\r\n<h2>Building Smarter Programmes Through Movement Fundamentals</h2>\r\n<h2><span style=\"font-size: 24px; letter-spacing: -0.02em;\">Assessing Movement with Purpose</span></h2>\r\nAn effective training programme goes far beyond simply targeting specific muscles. Personal trainers must evaluate movement quality using objective benchmarks, identifying imbalances, limitations, and compensatory patterns that may affect performance or increase injury risk. This might involve using movement screens or assessment tools that highlight where a client may lack mobility, stability, or strength.\r\n\r\nPreparation is key. Before progressing to complex movements, trainers can use isolated exercises and techniques such as muscle energy techniques (METs), joint mobilisation, and nerve mobilisation to improve movement quality. These preparatory steps lay the foundation for more integrated, functional training later on.\r\n\r\nEqually important is antagonist conditioning, training opposing muscle groups to ensure joint stability and balanced strength development. For example, strengthening the hamstrings and glutes alongside the quadriceps helps maintain proper knee health. As clients progress, trainers should shift towards integrated, multi-joint, and multi-plane movements that reflect real-life demands and support the specific goals of the individual.\r\n\r\nThis pyramid approach to programming, starting with assessment and isolation, progressing through preparation and integration, ensures a comprehensive, client-centred path to performance and resilience.\r\n\r\n<img class=\"size-full wp-image-43027 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2025/04/System-of-Exercise-Biomechanics-Education-2025.jpg\" alt=\"\" width=\"1200\" height=\"848\" />\r\n\r\n&nbsp;\r\n<h2>Final Thoughts</h2>\r\n<h3>Anatomy as a Lifelong Learning Journey</h3>\r\nAnatomy isn’t just a topic to tick off during your qualifications, it’s the foundation of everything you do as a Personal Trainer. From designing effective programmes and preventing injury to understanding the subtleties of human movement, anatomical knowledge enables you to coach with precision and purpose.\r\n\r\nAs your experience grows, so too will your understanding. Don’t be discouraged by the complexity or the occasional uncertainty. Embrace it as part of the layered learning process. Focus on movement, stay curious, and keep expanding your skills through education and practice.\r\n\r\nIf you’re looking to enhance your understanding further, consider pursuing advanced courses in biomechanics, anatomy, and injury prevention. The more you know, the more confidently you’ll be able to help your clients move, perform, and live better.\r\n\r\nFor more tips and in-depth training insights, follow our blog and join our growing community of fitness professionals committed to lifelong learning and client success.\r\n\r\n&nbsp;','Anatomy for Personal Trainers: What Every PT Should Know','','inherit','closed','closed','','42986-revision-v1','','','2025-04-24 14:02:21','2025-04-24 14:02:21','',42986,'https://biomechanicseducation.com/?p=43033',0,'revision','',0),(43034,18,'2025-04-24 14:02:40','2025-04-24 14:02:40','<h2>Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes</h2>\r\nWhen we hear the word biomechanics, it often conjures images of elite athletes perfecting their movement to gain a competitive edge. While biomechanics is undoubtedly a cornerstone of sports science, its true value extends far beyond the pitch or gym. In fact, intrinsic biomechanics plays a vital role in everyday life—impacting how we move, how we feel, and how well we age.\r\n<h3>What Is Intrinsic Biomechanics?</h3>\r\nAt its core, intrinsic biomechanics refers to the internal mechanics of movement—how the body’s bones, joints, muscles, ligaments, and connective tissues work together under the influence of gravity and physical forces. While commonly associated with athletic performance, the same biomechanical principles apply to everyday actions like walking, lifting, and even sitting at a desk. Whether you\'re an office worker, parent, or retiree, understanding and applying intrinsic biomechanics can dramatically improve your quality of life.\r\n<h3>Biomechanics in Daily Life: Movement that Matters</h3>\r\n<h4>Walking and Everyday Motion</h4>\r\nTake walking, for instance. It may seem like a basic action, but it\'s biomechanically rich. If your pelvis lacks mobility or your feet don’t function optimally, the body begins to compensate elsewhere—leading to inefficient movement, fatigue, or even injury over time.\r\n<h4>Lifting, Carrying and Load Management</h4>\r\nLifting a child or carrying shopping bags becomes more about coordination than brute strength. A well-integrated system of joints and muscles makes these daily movements safer and easier, while poor biomechanics places unnecessary strain on the back and shoulders.\r\n<h4>Posture and Static Positions</h4>\r\nEven the way we sit or stand can have profound implications. Hours spent in static postures—especially without movement variety—can reduce joint health, weaken trunk muscles, and encourage dysfunctional patterns that may eventually lead to pain or dysfunction. Biomechanics reminds us that the body craves movement and thrives on variety.\r\n<h4>Household Tasks and Unconscious Patterns</h4>\r\nEveryday tasks like gardening, cleaning, or even hoovering all draw upon the same principles. Using both sides of the body, bending at the hips rather than the spine, and engaging the trunk muscles all help reduce stress on your joints. When you apply biomechanical awareness to these seemingly mundane tasks, you protect your body and keep it functioning efficiently.\r\n<h3>Long-Term Benefits of Good Biomechanics</h3>\r\nThis efficiency brings more than just physical ease—it supports your long-term health. Moving well reduces the wear and tear on your joints and soft tissues, conserving energy and lowering your risk of injury. It helps you maintain mobility into later life, potentially slowing down the natural ageing process that leads to joint stiffness and muscular imbalance. Strong trunk muscles and a mobile spine form the foundation for stable, coordinated movement—helping to prevent overuse patterns and the symptoms they cause.\r\n<h3>Simple Ways to Improve Biomechanics</h3>\r\nImproving your biomechanics doesn\'t require extreme changes or athletic ability. It starts with being more aware—changing posture throughout the day, incorporating regular movement, and strengthening your core.\r\n<h4>Practical Tips for Daily Improvement</h4>\r\n<strong>Be mindful of postural variety:</strong> Adjust your seated or standing posture regularly.\r\n\r\n<strong>Strengthen your trunk:</strong> A mobile yet strong trunk stabilises the body and reduces strain.\r\n\r\n<strong>Stay active:</strong> Include strength, mobility, and flexibility exercises in your routine.\r\n<h3>Why It Matters—for Everyone</h3>\r\nUltimately, intrinsic biomechanics is not just a scientific concept for professionals—it’s a practical toolkit for anyone who wants to move better and live longer, healthier, and more independently. For coaches and personal trainers, this understanding offers a real edge: the ability to help clients not just train harder, but train smarter. It means guiding them toward pain-free movement, preventing recurring issues, and improving how they feel in their body every single day.\r\n\r\nIf you’re passionate about helping others move well and stay well, consider deepening your knowledge through biomechanics coaching. It’s not just a skill—it’s a service that supports lifelong well-being.','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes','','inherit','closed','closed','','43019-revision-v1','','','2025-04-24 14:02:40','2025-04-24 14:02:40','',43019,'https://biomechanicseducation.com/?p=43034',0,'revision','',0),(43035,18,'2025-04-24 14:02:59','2025-04-24 14:02:59','<h2>Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes</h2>\r\nWhen we hear the word biomechanics, it often conjures images of elite athletes perfecting their movement to gain a competitive edge. While biomechanics is undoubtedly a cornerstone of sports science, its true value extends far beyond the pitch or gym. In fact, intrinsic biomechanics plays a vital role in everyday life—impacting how we move, how we feel, and how well we age.\r\n<h3>What Is Intrinsic Biomechanics?</h3>\r\nAt its core, intrinsic biomechanics refers to the internal mechanics of movement—how the body’s bones, joints, muscles, ligaments, and connective tissues work together under the influence of gravity and physical forces. While commonly associated with athletic performance, the same biomechanical principles apply to everyday actions like walking, lifting, and even sitting at a desk. Whether you\'re an office worker, parent, or retiree, understanding and applying intrinsic biomechanics can dramatically improve your quality of life.\r\n<h3>Biomechanics in Daily Life: Movement that Matters</h3>\r\n<h4>Walking and Everyday Motion</h4>\r\nTake walking, for instance. It may seem like a basic action, but it\'s biomechanically rich. If your pelvis lacks mobility or your feet don’t function optimally, the body begins to compensate elsewhere—leading to inefficient movement, fatigue, or even injury over time.\r\n<h4>Lifting, Carrying and Load Management</h4>\r\nLifting a child or carrying shopping bags becomes more about coordination than brute strength. A well-integrated system of joints and muscles makes these daily movements safer and easier, while poor biomechanics places unnecessary strain on the back and shoulders.\r\n<h4>Posture and Static Positions</h4>\r\nEven the way we sit or stand can have profound implications. Hours spent in static postures—especially without movement variety—can reduce joint health, weaken trunk muscles, and encourage dysfunctional patterns that may eventually lead to pain or dysfunction. Biomechanics reminds us that the body craves movement and thrives on variety.\r\n<h4>Household Tasks and Unconscious Patterns</h4>\r\nEveryday tasks like gardening, cleaning, or even hoovering all draw upon the same principles. Using both sides of the body, bending at the hips rather than the spine, and engaging the trunk muscles all help reduce stress on your joints. When you apply biomechanical awareness to these seemingly mundane tasks, you protect your body and keep it functioning efficiently.\r\n<h3>Long-Term Benefits of Good Biomechanics</h3>\r\nThis efficiency brings more than just physical ease—it supports your long-term health. Moving well reduces the wear and tear on your joints and soft tissues, conserving energy and lowering your risk of injury. It helps you maintain mobility into later life, potentially slowing down the natural ageing process that leads to joint stiffness and muscular imbalance. Strong trunk muscles and a mobile spine form the foundation for stable, coordinated movement—helping to prevent overuse patterns and the symptoms they cause.\r\n<h3>Simple Ways to Improve Biomechanics</h3>\r\nImproving your biomechanics doesn\'t require extreme changes or athletic ability. It starts with being more aware—changing posture throughout the day, incorporating regular movement, and strengthening your core.\r\n<h4>Practical Tips for Daily Improvement</h4>\r\n<strong>Be mindful of postural variety:</strong> Adjust your seated or standing posture regularly.\r\n\r\n<strong>Strengthen your trunk:</strong> A mobile yet strong trunk stabilises the body and reduces strain.\r\n\r\n<strong>Stay active:</strong> Include strength, mobility, and flexibility exercises in your routine.\r\n<h3>Why It Matters—for Everyone</h3>\r\nUltimately, intrinsic biomechanics is not just a scientific concept for professionals—it’s a practical toolkit for anyone who wants to move better and live longer, healthier, and more independently. For coaches and personal trainers, this understanding offers a real edge: the ability to help clients not just train harder, but train smarter. It means guiding them toward pain-free movement, preventing recurring issues, and improving how they feel in their body every single day.\r\n\r\nIf you’re passionate about helping others move well and stay well, consider deepening your knowledge through biomechanics coaching. It’s not just a skill—it’s a service that supports lifelong well-being.','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes','','inherit','closed','closed','','43019-revision-v1','','','2025-04-24 14:02:59','2025-04-24 14:02:59','',43019,'https://biomechanicseducation.com/?p=43035',0,'revision','',0),(43036,0,'2025-04-24 14:07:42','2025-04-24 14:07:42','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"07551930686\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA7LyW04VHB4xYLkmNa8aKBLgeOEzM-_xN5KxPfJwjxubTWIOtaoqSaXtSrhXxfyu_61-W9LPAaW2p2xo_5_wN6X0rmpphl-cSyM0PajPnG8XQ2MplGde-jr3bnU7GOpkUtlGG6sL9W7KvoaAMNqO7n4M8LzvHJxqUsPz75qG-OqT3bYhSeJfyzgJzbioh5qLPSbvHdeEEpa0f6-E_scP_JEYo5WDnT0ugj69bcdNvwNfCdFlW5kfOwwbaB5AinbGlKJfwpRhrSIyM_5DwnjCB1IBtqSSkRjUuHPOSyHtjVBynWg5lBtrx0ohMtrzEpoe4sc9kJuHAnA-t7HQxYWleIIpSnHjGwpqpQ_5KQSxxZzEUUXs2HJTy9rG7kUcySEUs1N5GveKQznTeVQhfIpp8QvClvLRd0W3Zr4RanirxI13LwB54a4bv9nzh79xeZnfm4a_AJXUykMrZwGt_-2BX9iXawgvGZLqiK2YwZR8NcGY56S2SNaTIz6pbVmGY_gOphJ4RFfboe4JbONFGePh9sjcLn1MMyGKYuKmxY8-yGf-3xdSrY7RZdG7sA96ZVC_TUvBOOB6GmqWbYEppidEVShnE6vYX_LgWt4SzrYBSsD7DljzwRdnHAKQSUEJwR46wzXVTTUwpb82UspvyJA8N-jBCSBVdWf0xy08E0HSjEg51SYquTvvtcSGOfDoAJE6DFmMeCFTGxIstHnQhVGOPyl1HswJGs-1rjO8wKdO8jpAHULl6dhnk64DvTD6eoYe3Bb9rxpLD60XjJzgPcreMgwBxIK_Zxcl_gkxKLEeWaypFiQ4e75_tj_OPZn4xUN4YHwbFKZBg8hPSEzONwxWj43F5s70CvTTVbDx5xR9JaF9Z6G5Bsaea-pYzy5Mltr5GM_7kHnrNmx_6T_ZPDnOCsavovZ1U6VZNvE0NdczAG7EKEKaN6_QUoDc5z3dPIgl0dLi_nvRt2ya5hvu51iAe7gSxyhuW85WBaEN5xSZlSbPpJWEc0nDEdA-Irt9ToyYF9N7-gFlXo7r1qKTJOESHXsebBiJyrGFYJsZLAsx9CrM2qDqPFFRpZq82LYU264P4f15lR49S9lFEaCj5QwN3LTUC1gBOC6xImWvCWYlMx6RSzjYs7J8OWpAP5OiJ390l-O7R6Rbvscb3Xj6Q0Zq-mqL2ExksruGTHd6LYlTZXczxdp31RZAkNAMMYiqS9EfEm0ZRZo1ELR7XjXFXvco99lvuPRq32hKT150N0zotoigFD4-kAqeFnmNXmQSheu1QNAleoajWTEn2XKWVz-PFl4KstBaEgN2cgcL3ZIeu_sVwOLksiIbxQ2v8AB329hVvI0t5NxOHilmSkW_d4pPc7X1RgoVibL232CavqdF5s-ikxJrDsdnCZw956Jo5gD_ROLhz2F7t0xNIHt27hma2hnOYB0O1DPqpoewFqVcUzjUqynZo5t4-StUSO0TQWxMac_pAExdGJiar3QHSMbYRR0OsKkyC5xTRve_U2L-gyJnV7lvYElKmxEIT7aTWjQIydvYAJmvo1u4VLxFM1BXMXWidBE6DbXuBRFtAZI7cgGRH-xfx5ryFwZ0ZXyy35a1vBzAHFqwLAyLiJSYIBXLVRDXg5obrVfe3_g9GjaaQMWTj2oAVDXkwpUJxzP50pLFWEB6EM3HVLPHUEBigLa9yVQAjE5ncPGz3Gpgm70H-_itCewWaxcBTc-4y9KiO3INukJk2oNIxg3dOoMZpyRTPvhZpeVs8BLPW7Pi6RGDezuyg0nWbaGvt-3GyVYVCsw3DZHMdVP_bFl9qjuzq6fNx0jhnqsEavm_4JUHXwW13y_ePBVty2s9cBmlYcjeNDCxeho0JBHQHFVpNBrNa0MZwrhVOyh_tZKjFUizMWscclKAfJQTWNbnPZDgS6CTVau4cA9LpDMkF7_JeEarmrYOiyw5A46bAZ9Y8QsJgLpWwwrBmbl9taS5l221tp1c5_hkwb3rXzqi2yLdYEWCT8ONGkKcGiE6h1yFdt-Cu5YZqDh6ZewVb86HjzqWiwM-k4cohx8iqq0dpdOSGlnmrR-UWbMM6rSskdSbh92QS6ShBwl3VEPeh5TAc5iGNi2t4KeXvBrgNJ2lEQVSGQoEYTMoehOK0MvbjOmNWhFPQeZwOJpPd47O_zJ0XfqwbQRS6M3YukM7vko\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a45aedfce83.65779990','','','2025-04-24 14:07:42','2025-04-24 14:07:42','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a45aedfce83.65779990',0,'cd-form-entry','',0),(43037,18,'2025-04-24 14:09:38','2025-04-24 14:09:38','<h2>Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes</h2>\r\nWhen we hear the word biomechanics, it often conjures images of elite athletes perfecting their movement to gain a competitive edge. While biomechanics is undoubtedly a cornerstone of sports science, its true value extends far beyond the pitch or gym. In fact, intrinsic biomechanics plays a vital role in everyday life, impacting how we move, how we feel, and how well we age.\r\n<h3>What Is Intrinsic Biomechanics?</h3>\r\nAt its core, intrinsic biomechanics refers to the internal mechanics of movement, how the body’s bones, joints, muscles, ligaments, and connective tissues work together under the influence of gravity and physical forces. While commonly associated with athletic performance, the same biomechanical principles apply to everyday actions like walking, lifting, and even sitting at a desk. Whether you\'re an office worker, parent, or retiree, understanding and applying intrinsic biomechanics can dramatically improve your quality of life.\r\n<h3>Biomechanics in Daily Life: Movement that Matters</h3>\r\n<h4>Walking and Everyday Motion</h4>\r\nTake walking, for instance. It may seem like a basic action, but it\'s biomechanically rich. If your pelvis lacks mobility or your feet don’t function optimally, the body begins to compensate elsewhere, leading to inefficient movement, fatigue, or even injury over time.\r\n<h4>Lifting, Carrying and Load Management</h4>\r\nLifting a child or carrying shopping bags becomes more about coordination than brute strength. A well-integrated system of joints and muscles makes these daily movements safer and easier, while poor biomechanics places unnecessary strain on the back and shoulders.\r\n<h4>Posture and Static Positions</h4>\r\nEven the way we sit or stand can have profound implications. Hours spent in static postures, especially without movement variety, can reduce joint health, weaken trunk muscles, and encourage dysfunctional patterns that may eventually lead to pain or dysfunction. Biomechanics reminds us that the body craves movement and thrives on variety.\r\n<h4>Household Tasks and Unconscious Patterns</h4>\r\nEveryday tasks like gardening, cleaning, or even hoovering all draw upon the same principles. Using both sides of the body, bending at the hips rather than the spine, and engaging the trunk muscles all help reduce stress on your joints. When you apply biomechanical awareness to these seemingly mundane tasks, you protect your body and keep it functioning efficiently.\r\n<h3>Long-Term Benefits of Good Biomechanics</h3>\r\nThis efficiency brings more than just physical ease, it supports your long-term health. Moving well reduces the wear and tear on your joints and soft tissues, conserving energy and lowering your risk of injury. It helps you maintain mobility into later life, potentially slowing down the natural ageing process that leads to joint stiffness and muscular imbalance. Strong trunk muscles and a mobile spine form the foundation for stable, coordinated movement—helping to prevent overuse patterns and the symptoms they cause.\r\n<h3>Simple Ways to Improve Biomechanics</h3>\r\nImproving your biomechanics doesn\'t require extreme changes or athletic ability. It starts with being more aware—changing posture throughout the day, incorporating regular movement, and strengthening your core.\r\n<h4>Practical Tips for Daily Improvement</h4>\r\n<strong>Be mindful of postural variety:</strong> Adjust your seated or standing posture regularly.\r\n\r\n<strong>Strengthen your trunk:</strong> A mobile yet strong trunk stabilises the body and reduces strain.\r\n\r\n<strong>Stay active:</strong> Include strength, mobility, and flexibility exercises in your routine.\r\n<h3>Why It Matters—for Everyone</h3>\r\nUltimately, intrinsic biomechanics is not just a scientific concept for professionals—it’s a practical toolkit for anyone who wants to move better and live longer, healthier, and more independently. For coaches and personal trainers, this understanding offers a real edge: the ability to help clients not just train harder, but train smarter. It means guiding them toward pain-free movement, preventing recurring issues, and improving how they feel in their body every single day.\r\n\r\nIf you’re passionate about helping others move well and stay well, consider deepening your knowledge through biomechanics coaching. It’s not just a skill—it’s a service that supports lifelong well-being.','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes','','inherit','closed','closed','','43019-revision-v1','','','2025-04-24 14:09:38','2025-04-24 14:09:38','',43019,'https://biomechanicseducation.com/?p=43037',0,'revision','',0),(43038,0,'2025-04-24 14:12:07','2025-04-24 14:12:07','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"07551930686\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA57xluvpTl8jxVgt3sPvmHxgOo6gUkBHBRf9X8LvFHKFxLH-vfhDxh2g91O_rxg6F_l9MirB_a4nJOyIpNckUm1J7zLiQQXOKd3liOT__hFO51kBnBIKS-BViojpYv1Avyo2QxGowbK4Ub5TYe4BX4_K2ZAdZNl0JykUqGa4ackl54m4S7vOeYQgkz2W_-1B2Ti1tkosSzqPB9sDNC5_aJgnOfrcHCm-Sd8NQ1-9VWEQEfh6bkAC1z_351eTwa4bZmJMLWdqDh-gbHmsWJ0tv9Sf24PIyMJxL7Ymn0ny6Wp9V7gjjy3ESoIeSu0VRHcI-7TjwNQMiR0T7ZpzzjN7ht2DI66Ow7qgpWLFqvYG0Q1ii46PByasEn2JcRs-RgLCyXlbkNq3pBtdocZPydVgM4CEIbHbA3Y5YVm6464g3LtKGOTDsfIxYceXXCDY7rh404dUja6bfb6_Oukp7QOtm49bJ6SnGSp2n9DiJHWszN73S3ZORC79aFvfCPUqyJfLkwcwd7hvmtn_-CgWqgI9NTEWJZBSJmIJU0TZaXD80JA2lCDHIZ2YdDNmpkB_NE6z1CtroUiNug_p3iUAKky6NjJt4Tg3YqdZrx-J8jzSnaWcm3qTbtTTQwxBzc2GCy54SXrqfD93NoyWu53imcN7AsULnWDU971oeix0hKkYWyDRE6gfq579-YEO58_6a8LkMl5GgcNtuahxG1e4DVHrvJsgMwD5aAbfg8sFJeMYBc6PMnpM09c8WIDEWyrvojvktsrAr3CibiVZeOpjdAuWKw9b7JjWsTMZtSM6SUUKPqFlCfybOe3r6_slkI5BObRrjXKRZElH45Lnoa1sF6ee8hFgojBbOpOEASv44ZQlGqlMGDaUYhIRTAX7bzZYQXlqHqIu0BSVIfMdSnupyAH97599j0EOYMDzyJ3GB7eR5_MfeQR0-7si5_osIS4y8ex4G78U1A75j1tlaXvOBbBuhou4eIGoHmi5Ox6DM8KSgUVINgZSb33ijZL2D_29vCAfmy0XXfNcBv9dcCUWede9tNq0G6_NmphAVXqhO7CJ6cWetCzu-1MW3pmUfmfI5Zu4CyzXsE9WyK84Xbr83QqjZVq1sTVrkvP72ctFJq6s_92gVlUh6WFx_-Swg4MNpC1aL01puUj0BvRohz-G84dDy0qp6pxGjdvFJvfH9PuChDh4JEEiE7_qqEuzdAT9bDQml82V4tsTGAFtxbPq3_ssQSLOhUXhNqnD4St_iZ8OE9PcxboXmfkHgp_IN34Cd2wJEjOj6wChXjN6RyKOO-9eZEp8HWkxNUAueYtoefes6pPSuuU8yk9CsBKWgwQw5peeqrf0ilVOu1K8MLf8EtiBh8g51W517rxmzJexSoFQ-ef9YEN73B179BXqwuT3dAcxPxtoCPZ-IABYLeGcKpBc_L5eryP7A4Zp0RRQ_8G-ifyK7JKkVypzKKShvx8UoLpgZ5KI8Cd83t0ofscaqkxm_dWWOrZ__FWTQPacE1YKk5VdEc5XAOO8T8xT-BkAQpDKydRzhTpmMJAn5HTIp_9AntdlZyh-aiOkZSnliWjJKkl3-meNQJzidUUjBdXvLok-HpY8cUURWLUcLQ74ps6cJdQrm-HnJeM9oX0xPwu7YVwD4IhS3J559RKGzGyP52mVZddcvukmHL4CMhL7PwTCmgZSGAGkzgxWDbv7HO3orLWvW6A9zAMroH4CL1P1KmilmNdc4_lXTZ5BnLiH1QTj-OsXL_lgnHmfYKsytrOovhdMCj8nAKg5FfORzBERHRzH4enEceVKpnN0nBHlZ2DeBqFYQZjHQxp25F00ExECrrGH1lCnb_iJlmRUMdPEq-nK00tNYDxXUQn9POngi3B3uxkd7W8LVzgLotckFMBVQvB6FFm2LQeNpRkvmJHphRf8_y0XbukjcY1oA_KMH9pliJlDOWTkb2RDX7BL8fic1Mae-r1qSBZO4lTotInZE2MhmJ6SBtFT5zSir4z7rMD_Wrq4wDZOr4PFeppgi_bISbMdy6g8k2r5e1uz4JH1QgSEY5TGOtPh7aMP9YOctp_-oOYGNKuqGfpiwbzMa17Kp7J2fvo0ggCyzI-nAO3AAwfwi1cdJ_IZZOzCuryXDTiL6ovetpI1Bi6KvZL7O8-C7WKfAkBisNR_Ncu29lyFE6Lz5JYQISb\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a46b75ebc68.55851811','','','2025-04-24 14:12:07','2025-04-24 14:12:07','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a46b75ebc68.55851811',0,'cd-form-entry','',0),(43039,0,'2025-04-24 14:14:47','2025-04-24 14:14:47','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"07551930686\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide-copy/\",\"recaptcha_token\":\"03AFcWeA7SFabYdYN8ZVrWpEJHDrppJzawwerY1it7Zac5gSMtcK4N4OCv9uHpPPlsu6A1RuN-wiKjQr65LqYmeDZKgW1vM3R4A2Jd5ai7lKfDjf9dKST1dijnmtrfT5-qT43wVM_Sc-jD07pWdQSIJzqWiXRBKRSNfDeu_NHMrOrdRAENNsHfGfT412w0SDzcXyTi071ouH2cu8EVfvXKjJZXacB_G34qjNn3SaUhEP77YtjWuPsx79qSWBvcpP1e3hgqsL_2oa1N5WHQ-B3quGzcEsFa0C0feEn-w7cot5Vni9AtXZHAbdXKPpbi9l1QMLohh0wjeG_CEfndoHO6gQOCJOeNQjWl3zHBIPJr5ytCoOsQYfrTOV16k3BdBlsZL3df7HqGRE6IagQDobPGLhWPtd74JS_lvTKsDOxKFimxZMguknFPhl3WEZpiv9Fj7No7xyOlbxNERmkdHgHh_p3aSpB2Qz0jibne6viEvsAWgLarAdbjOT2orUuZSx5RnmKBXkK4yH8GGv0TxAs8g0IhtDjvptMUxZgZ7m5RdguQVMvPwBxOZQfg7OyXslMdG8sxK9ZXKkDyi8IWDBc6AM1f38PY-g-S59860HwJlhODe8OogGgXUgBhd31jecMSnv4NKql0wd1W8f3vePxI814jLyeIIwkGcqmkBkjaYMLchA-UI0rgSdSsQxoCwSqEmuphhI5yQWwRWR8MTHLaRJKnMNBfT1BoqsNTsL2WNVGGIw6YIQHxGi188CTi8GUpJw5K_9BVPDBiRwU_DHJJ4Fr8t__H-2ud2HO7XoK8yK7VA_7wFoXuqUOQInfTnOMm5IugbxalyLmccqa4Wia_1pujfcva3aUW8XWhzXuj0uoBhkZ4NPPOdN5LWU0zZmE0VSHhgLeT0YnvRGGvHYQG80yeXATkSA_JsTdFP22mNjJtjHQlhl33fAAxuluPlcOXvXWlvv71T-hW6s_DzW-cCuuhJoctnGEpFJop0zMirQPFtEgrR4m5686xekCuqTPCzA_DeYsj_HB_0cQ3jkjT4HTgi0yj8ZncqAaxO1UjzGxBm4y4z82FxrGls9Wf6ZAyfQcInCRE3wiDjG9D-dXI_9bMSrFiGW2jSMUK6XIu1Q8A_b96sOsrn9haz9hdrps7KERC4tH3f2QPLi3yDVX7ijDQQzpvQb9rsAkQW1eDxRZK_7p4yR1w3wzhm0dkYjfFQNzAo6RFCs6gd6SgO4ntOoDzBM4x_FN68C376MRwR5pI9IOb8EhHZUdhElu1Z8CE1ZN9J6nDDtGOIS7QmCeWreBuD2dkOOahThOB6XkS1nEnhTdF1GfkMmwmOgxn1CXivTg0Km3gmc1FaHP72T4w6BeGKjbFXfaExz0lRXICvmpSHdaIprIL0pY43j38dnUNqZEC5wW6LzdlyeMi9AQSy-HhEC20uqx7Y6W4NBivt6jNG6fAKiNNrNGDRj6dYIE4LtKKd4quEm4VRWlJ_9-QwjNoyTqMDpCwylaE3b7F2BvIw_I9tqvC5852fY5sxeCmiqdHa8g6qNKk6vfEFhBta4Y8K1N2dKLoGde0_92fgji2GAV69RLFM99grPqF1da920jy6QU-usfLf6CG9N8SJJuE_P9yOmbTOCc3pCb9gqKGwW5kntrQper1sOA0sF1XUqzBRR4Rk2DmG-H4dQ1w4Mk2vZPLfcFMWJf80hRz_E0-Q3PCUtPpoY3_--DyE54e1xz1KJVhLsDN_lcD8XbVsP0yZuce_g9oTMJrYJoJO_U2f26KuNb_ZaP1ZBuz220d8o0eoYBAcs60zIGQSp1ErL2xAOhRsb_BqSQ6_wfJtn0X-wMqa9ijiLQLmKoBPTQISD9pK8a-VuQ_bg2U3NFKDrPYp7rdzd1UxxIevb56Z044GLutphwY3z9Vi3rYkkOE4P8N2hSBWoU8A1Hfx53pckGKDjI7s8YrufGyRInoWC2XOQEftWoBGkl-V9DI-IaRzhPsm8nsLz0KFVfoYvgYGG4ifskUrz6BjAMy_yEB0TIKW09gEIbEYQlpeRxprEm5eHJlI3z0RgjSq5HP1IZ0X4UC0L3Xk5Ettr6iisFuuo6aPX5mqe2QK2mDRYFEoK-KesllDguGP06agVkvtsor0tTMg6_w4JQUSnolJ-d1zS2dDG-Hp88UNOKMzTz7ynPCut4qM6vlx6f9\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a475721af65.20027650','','','2025-04-24 14:14:47','2025-04-24 14:14:47','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a475721af65.20027650',0,'cd-form-entry','',0),(43040,3,'2025-08-19 08:00:32','2025-08-19 08:00:32','<h2>Strength Training for Injury Prevention: Building Resilience and Joint Health</h2>\r\nWhen it comes to reducing the risk of injury, strength training stands out as one of the most effective tools available. It’s not just about developing muscle mass or building aesthetic physiques, strategic strength training offers deep-rooted benefits for joint health, movement quality, and long-term physical resilience. Whether you’re supporting an athlete, a weekend warrior, or an everyday client looking to stay active and pain-free, integrating strength training into their routine can make all the difference.\r\n<h3>Why Strength Training Is Essential for Injury Prevention</h3>\r\nAt its core, strength training reinforces the body\'s ability to withstand daily stressors and sudden impacts. Stronger muscles create a more stable foundation for joints, while improved tendon and ligament resilience contributes to overall movement integrity. It\'s also about coordination, developing the neuromuscular control that helps people move more confidently and efficiently in every context, from sport to daily life.\r\n<h4>The Benefits Go Far Beyond Muscle</h4>\r\nWell-designed strength programmes deliver far-reaching benefits:\r\n\r\n<strong>Greater Muscular Support for Joints:</strong> As muscle strength increases, it enhances joint stability and reduces compensations that lead to injury.\r\n\r\n<strong>Enhanced Range of Motion:</strong> Strength training with a focus on control and depth helps maintain or even improve flexibility and mobility.\r\n\r\n<strong>Shock Absorption:</strong> Strong muscles and tendons absorb impact forces more effectively, protecting vulnerable structures like cartilage and discs.\r\n\r\n<strong>Improved Coordination:</strong> Targeted exercises refine movement quality and strengthen the communication between brain and body.\r\n\r\nBy reinforcing the body’s intrinsic biomechanics, strength training provides a foundational approach to risk reduction that no athlete, or everyday mover, should be without.\r\n<h3>Strategies That Build Resilience</h3>\r\nThe real power of strength training lies not just in what exercises are chosen, but in how they’re applied. Programmes aimed at risk reduction must target both prime movers and stabilisers, focusing on quality of movement.\r\n<h4>Build Fundamental Strength First</h4>\r\nThe foundation begins with improving intrinsic movement. Then those perform movements that mimic daily actions or athletic tasks. Think squats, lunges, and deadlifts, not just for strength, but for improving movement quality, movement confidence, and muscular coordination.\r\n<h4>Don’t Ignore the Stabilising Muscles</h4>\r\nTrue resilience comes from the often-overlooked muscles that stabilise key joints. Around the hips, spine, shoulders, and ankles, these smaller muscles help with joint positioning and control through movement. Incorporating isometric holds, anti-rotation drills, and internal/external rotation movements helps build a body that stays strong under pressure.\r\n<h4>Embrace Eccentric Training</h4>\r\nEccentric work, controlling the lowering phase of a movement, builds tendon strength and supports connective tissue health. Including slow lunges, Nordic hamstring curls, or tempo push-ups creates greater resistance to strain and helps reduce risk of common injuries like strains and tendonitis.\r\n<h4>Improve Balance and Body Awareness</h4>\r\nProprioception is a key player in risk reduction. Single-leg exercises, agility drills, and stability work on uneven surfaces train the nervous system to respond quickly and accurately to unpredictable environments, whether on the field or navigating a slippery pavement.\r\n<h4>Mobility Complements Strength</h4>\r\nStrength alone isn’t enough, mobility and flexibility must be maintained to allow joints to move freely through their full range. This includes muscle energy techniques, pure joint and nerve mobilisations, and dynamic warm-ups. Strength without mobility can lead to compensation and restriction, increasing injury risk.\r\n<h4>Prioritise Recovery as Part of the Programme</h4>\r\nNo strength training programme is complete without recovery. Muscles, tendons, and joints need time to adapt and rebuild. Sleep, nutrition, and active recovery techniques such as swimming or yoga all support long-term progress and risk reduction.\r\n<h3>Train Smarter, Not Just Harder</h3>\r\nUltimately, strength training for risk reduction isn’t just a trend, it’s a necessity. By helping clients build a strong, adaptable, and well-balanced body, you’re not just improving their fitness; you’re investing in their long-term health and freedom of movement.\r\n\r\nProgressive strength development, supported by movement quality and a mindful approach to rest and mobility, creates a protective layer for the entire musculoskeletal system. This not only supports current goals but helps prevent future setbacks, making strength training one of the most valuable components of any health and wellness plan.','Strength Training for Injury Prevention: Building Resilience and Joint Health','','future','closed','closed','','strength-training-for-injury-prevention','','','2025-07-03 09:23:35','2025-07-03 09:23:35','',0,'https://biomechanicseducation.com/?p=43040',0,'post','',0),(43041,18,'2025-04-24 14:25:52','2025-04-24 14:25:52','<h2>Strength Training for Injury Prevention: Building Resilience and Joint Health</h2>\r\nWhen it comes to reducing the risk of injury, strength training stands out as one of the most effective tools available. It’s not just about developing muscle mass or building aesthetic physiques—strategic strength training offers deep-rooted benefits for joint health, movement quality, and long-term physical resilience. Whether you’re supporting an athlete, a weekend warrior, or an everyday client looking to stay active and pain-free, integrating strength training into their routine can make all the difference.\r\n<h3>Why Strength Training Is Essential for Injury Prevention</h3>\r\nAt its core, strength training reinforces the body\'s ability to withstand daily stressors and sudden impacts. Stronger muscles create a more stable foundation for joints, while improved tendon and ligament resilience contributes to overall movement integrity. It\'s also about coordination—developing the neuromuscular control that helps people move more confidently and efficiently in every context, from sport to daily life.\r\n<h4>The Benefits Go Far Beyond Muscle</h4>\r\nWell-designed strength programmes deliver far-reaching benefits:\r\n\r\n<strong>Greater Muscular Support for Joints:</strong> As muscle strength increases, it enhances joint stability and reduces compensations that lead to injury.\r\n\r\n<strong>Enhanced Range of Motion:</strong> Strength training with a focus on control and depth helps maintain or even improve flexibility and mobility.\r\n\r\n<strong>Shock Absorption:</strong> Strong muscles and tendons absorb impact forces more effectively, protecting vulnerable structures like cartilage and discs.\r\n\r\n<strong>Improved Coordination:</strong> Targeted exercises refine movement patterns and strengthen the communication between brain and body.\r\n\r\nBy reinforcing the body’s biomechanics, strength training provides a foundational approach to risk reduction that no athlete—or everyday mover—should be without.\r\n<h3>Strategies That Build Resilience</h3>\r\nThe real power of strength training lies not just in what exercises are chosen, but in how they’re applied. Programmes aimed at injury prevention must target both prime movers and stabilisers, focusing on quality over quantity.\r\n<h4>Build Fundamental Strength First</h4>\r\nThe foundation begins with movements that mimic daily actions or athletic tasks. Think squats, lunges, and deadlifts—not just for strength, but for improving posture, balance, and muscular coordination. Exercises like leg raises or shoulder pressing target the flexor and extensor systems, ensuring the body can move powerfully while remaining supported.\r\n<h4>Don’t Ignore the Stabilising Muscles</h4>\r\nTrue resilience comes from the often-overlooked muscles that stabilise key joints. Around the spine, hips, shoulders, and ankles, these smaller muscles help maintain joint alignment and control through movement. Incorporating isometric holds, anti-rotation drills, and internal/external rotation movements helps build a body that stays strong under pressure.\r\n<h4>Embrace Eccentric Training</h4>\r\nEccentric work—controlling the lowering phase of a movement—builds tendon strength and supports connective tissue health. Including slow lunges, Nordic hamstring curls, or tempo push-ups creates greater resistance to strain and helps prevent common injuries like strains and tendonitis.\r\n<h4>Improve Balance and Body Awareness</h4>\r\nProprioception is a key player in injury prevention. Single-leg exercises, agility drills, and stability work on uneven surfaces all help train the nervous system to respond quickly and accurately to changing environments—vital whether you’re playing sport or walking on a slippery pavement.\r\n<h4>Mobility Complements Strength</h4>\r\nStrength alone isn\'t enough—mobility and flexibility must be maintained to allow joints to move freely through their full range. This includes soft tissue work, foam rolling, and dynamic warm-ups. Strength without mobility can actually increase injury risk, so these elements should go hand-in-hand.\r\n<h4>Prioritise Recovery as Part of the Programme</h4>\r\nNo strength training programme is complete without recovery. Muscles, tendons, and joints need time to adapt and rebuild. Sleep, nutrition, and active recovery techniques such as swimming or yoga all support long-term progress and injury prevention.\r\n<h3>Train Smarter, Not Just Harder</h3>\r\nUltimately, strength training for injury prevention isn’t just a trend—it’s a necessity. By helping clients build a strong, adaptable, and well-balanced body, you’re not just improving their fitness; you’re investing in their long-term health and freedom of movement.\r\n\r\nProgressive strength development, supported by movement quality and a mindful approach to rest and mobility, creates a protective layer for the entire musculoskeletal system. This not only supports current goals but helps prevent future setbacks—making strength training one of the most valuable components of any health and wellness plan.','Strength Training for Injury Prevention: Building Resilience and Joint Health','','inherit','closed','closed','','43040-revision-v1','','','2025-04-24 14:25:52','2025-04-24 14:25:52','',43040,'https://biomechanicseducation.com/?p=43041',0,'revision','',0),(43042,18,'2025-04-24 14:27:49','2025-04-24 14:27:49','<h2>Strength Training for Injury Prevention: Building Resilience and Joint Health</h2>\r\nWhen it comes to reducing the risk of injury, strength training stands out as one of the most effective tools available. It’s not just about developing muscle mass or building aesthetic physiques, strategic strength training offers deep-rooted benefits for joint health, movement quality, and long-term physical resilience. Whether you’re supporting an athlete, a weekend warrior, or an everyday client looking to stay active and pain-free, integrating strength training into their routine can make all the difference.\r\n<h3>Why Strength Training Is Essential for Injury Prevention</h3>\r\nAt its core, strength training reinforces the body\'s ability to withstand daily stressors and sudden impacts. Stronger muscles create a more stable foundation for joints, while improved tendon and ligament resilience contributes to overall movement integrity. It\'s also about coordination, developing the neuromuscular control that helps people move more confidently and efficiently in every context, from sport to daily life.\r\n<h4>The Benefits Go Far Beyond Muscle</h4>\r\nWell-designed strength programmes deliver far-reaching benefits:\r\n\r\n<strong>Greater Muscular Support for Joints:</strong> As muscle strength increases, it enhances joint stability and reduces compensations that lead to injury.\r\n\r\n<strong>Enhanced Range of Motion:</strong> Strength training with a focus on control and depth helps maintain or even improve flexibility and mobility.\r\n\r\n<strong>Shock Absorption:</strong> Strong muscles and tendons absorb impact forces more effectively, protecting vulnerable structures like cartilage and discs.\r\n\r\n<strong>Improved Coordination:</strong> Targeted exercises refine movement patterns and strengthen the communication between brain and body.\r\n\r\nBy reinforcing the body’s biomechanics, strength training provides a foundational approach to risk reduction that no athlete, or everyday mover, should be without.\r\n<h3>Strategies That Build Resilience</h3>\r\nThe real power of strength training lies not just in what exercises are chosen, but in how they’re applied. Programmes aimed at injury prevention must target both prime movers and stabilisers, focusing on quality over quantity.\r\n<h4>Build Fundamental Strength First</h4>\r\nThe foundation begins with movements that mimic daily actions or athletic tasks. Think squats, lunges, and deadlifts, not just for strength, but for improving posture, balance, and muscular coordination. Exercises like leg raises or shoulder pressing target the flexor and extensor systems, ensuring the body can move powerfully while remaining supported.\r\n<h4>Don’t Ignore the Stabilising Muscles</h4>\r\nTrue resilience comes from the often-overlooked muscles that stabilise key joints. Around the spine, hips, shoulders, and ankles, these smaller muscles help maintain joint alignment and control through movement. Incorporating isometric holds, anti-rotation drills, and internal/external rotation movements helps build a body that stays strong under pressure.\r\n<h4>Embrace Eccentric Training</h4>\r\nEccentric work, controlling the lowering phase of a movement, builds tendon strength and supports connective tissue health. Including slow lunges, Nordic hamstring curls, or tempo push-ups creates greater resistance to strain and helps prevent common injuries like strains and tendonitis.\r\n<h4>Improve Balance and Body Awareness</h4>\r\nProprioception is a key player in injury prevention. Single-leg exercises, agility drills, and stability work on uneven surfaces all help train the nervous system to respond quickly and accurately to changing environments, vital whether you’re playing sport or walking on a slippery pavement.\r\n<h4>Mobility Complements Strength</h4>\r\nStrength alone isn\'t enough, mobility and flexibility must be maintained to allow joints to move freely through their full range. This includes soft tissue work, foam rolling, and dynamic warm-ups. Strength without mobility can actually increase injury risk, so these elements should go hand-in-hand.\r\n<h4>Prioritise Recovery as Part of the Programme</h4>\r\nNo strength training programme is complete without recovery. Muscles, tendons, and joints need time to adapt and rebuild. Sleep, nutrition, and active recovery techniques such as swimming or yoga all support long-term progress and injury prevention.\r\n<h3>Train Smarter, Not Just Harder</h3>\r\nUltimately, strength training for injury prevention isn’t just a trend, it’s a necessity. By helping clients build a strong, adaptable, and well-balanced body, you’re not just improving their fitness; you’re investing in their long-term health and freedom of movement.\r\n\r\nProgressive strength development, supported by movement quality and a mindful approach to rest and mobility, creates a protective layer for the entire musculoskeletal system. This not only supports current goals but helps prevent future setbacks, making strength training one of the most valuable components of any health and wellness plan.','Strength Training for Injury Prevention: Building Resilience and Joint Health','','inherit','closed','closed','','43040-revision-v1','','','2025-04-24 14:27:49','2025-04-24 14:27:49','',43040,'https://biomechanicseducation.com/?p=43042',0,'revision','',0),(43043,18,'2025-04-24 14:27:50','2025-04-24 14:27:50','<h2>Strength Training for Injury Prevention: Building Resilience and Joint Health</h2>\r\nWhen it comes to reducing the risk of injury, strength training stands out as one of the most effective tools available. It’s not just about developing muscle mass or building aesthetic physiques, strategic strength training offers deep-rooted benefits for joint health, movement quality, and long-term physical resilience. Whether you’re supporting an athlete, a weekend warrior, or an everyday client looking to stay active and pain-free, integrating strength training into their routine can make all the difference.\r\n<h3>Why Strength Training Is Essential for Injury Prevention</h3>\r\nAt its core, strength training reinforces the body\'s ability to withstand daily stressors and sudden impacts. Stronger muscles create a more stable foundation for joints, while improved tendon and ligament resilience contributes to overall movement integrity. It\'s also about coordination, developing the neuromuscular control that helps people move more confidently and efficiently in every context, from sport to daily life.\r\n<h4>The Benefits Go Far Beyond Muscle</h4>\r\nWell-designed strength programmes deliver far-reaching benefits:\r\n\r\n<strong>Greater Muscular Support for Joints:</strong> As muscle strength increases, it enhances joint stability and reduces compensations that lead to injury.\r\n\r\n<strong>Enhanced Range of Motion:</strong> Strength training with a focus on control and depth helps maintain or even improve flexibility and mobility.\r\n\r\n<strong>Shock Absorption:</strong> Strong muscles and tendons absorb impact forces more effectively, protecting vulnerable structures like cartilage and discs.\r\n\r\n<strong>Improved Coordination:</strong> Targeted exercises refine movement patterns and strengthen the communication between brain and body.\r\n\r\nBy reinforcing the body’s biomechanics, strength training provides a foundational approach to risk reduction that no athlete, or everyday mover, should be without.\r\n<h3>Strategies That Build Resilience</h3>\r\nThe real power of strength training lies not just in what exercises are chosen, but in how they’re applied. Programmes aimed at injury prevention must target both prime movers and stabilisers, focusing on quality over quantity.\r\n<h4>Build Fundamental Strength First</h4>\r\nThe foundation begins with movements that mimic daily actions or athletic tasks. Think squats, lunges, and deadlifts, not just for strength, but for improving posture, balance, and muscular coordination. Exercises like leg raises or shoulder pressing target the flexor and extensor systems, ensuring the body can move powerfully while remaining supported.\r\n<h4>Don’t Ignore the Stabilising Muscles</h4>\r\nTrue resilience comes from the often-overlooked muscles that stabilise key joints. Around the spine, hips, shoulders, and ankles, these smaller muscles help maintain joint alignment and control through movement. Incorporating isometric holds, anti-rotation drills, and internal/external rotation movements helps build a body that stays strong under pressure.\r\n<h4>Embrace Eccentric Training</h4>\r\nEccentric work, controlling the lowering phase of a movement, builds tendon strength and supports connective tissue health. Including slow lunges, Nordic hamstring curls, or tempo push-ups creates greater resistance to strain and helps prevent common injuries like strains and tendonitis.\r\n<h4>Improve Balance and Body Awareness</h4>\r\nProprioception is a key player in injury prevention. Single-leg exercises, agility drills, and stability work on uneven surfaces all help train the nervous system to respond quickly and accurately to changing environments, vital whether you’re playing sport or walking on a slippery pavement.\r\n<h4>Mobility Complements Strength</h4>\r\nStrength alone isn\'t enough, mobility and flexibility must be maintained to allow joints to move freely through their full range. This includes soft tissue work, foam rolling, and dynamic warm-ups. Strength without mobility can actually increase injury risk, so these elements should go hand-in-hand.\r\n<h4>Prioritise Recovery as Part of the Programme</h4>\r\nNo strength training programme is complete without recovery. Muscles, tendons, and joints need time to adapt and rebuild. Sleep, nutrition, and active recovery techniques such as swimming or yoga all support long-term progress and injury prevention.\r\n<h3>Train Smarter, Not Just Harder</h3>\r\nUltimately, strength training for injury prevention isn’t just a trend, it’s a necessity. By helping clients build a strong, adaptable, and well-balanced body, you’re not just improving their fitness; you’re investing in their long-term health and freedom of movement.\r\n\r\nProgressive strength development, supported by movement quality and a mindful approach to rest and mobility, creates a protective layer for the entire musculoskeletal system. This not only supports current goals but helps prevent future setbacks, making strength training one of the most valuable components of any health and wellness plan.','Strength Training for Injury Prevention: Building Resilience and Joint Health','','inherit','closed','closed','','43040-revision-v1','','','2025-04-24 14:27:50','2025-04-24 14:27:50','',43040,'https://biomechanicseducation.com/?p=43043',0,'revision','',0),(43045,17,'2025-04-24 15:13:13','2025-04-24 15:13:13','','Biomechanics Education - Enquiry Form - Lead Gen - April 2025 - SPAM Test','','publish','closed','closed','','biomechanics-education-enquiry-form-lead-gen-september-2024-ep-copy-2','','','2025-04-24 15:49:56','2025-04-24 15:49:56','',0,'https://biomechanicseducation.com/?post_type=cd-form&#038;p=43045',0,'cd-form','',0),(43046,17,'2025-04-24 15:18:34','2025-04-24 15:18:34','','Download Price Guide Validation Test','','inherit','closed','closed','','42987-revision-v1','','','2025-04-24 15:18:34','2025-04-24 15:18:34','',42987,'https://biomechanicseducation.com/?p=43046',0,'revision','',0),(43047,0,'2025-04-24 15:19:35','2025-04-24 15:19:35','{\"firstname\":\"Test\",\"lastname\":\"NoValidation\",\"email\":\"hpcheck1@futurefit.co.uk\",\"contactnumber\":\"03216546987\",\"currentwork\":\"0\",\"interestedin\":\"Biomechanics Coaching\",\"industry_code\":\"123\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4UoyD2XDFdrXP8bKA2ed1p4cPonkDRKt3m6Zzmxp_jmcghA-EpyT4Ay15jVh_F6-nbbtRFQZMg1-k62d7jlf01T4MDtgIma2IqcjPCdxkz7Z2SDQ7sBUEofJYbWvKcqI5IpVOV6zSKG4y4n6OKZGP4ChwYxfZKLoCXTpmBcbxJwxhwVBKUqUMy7OWtihTZgai9KqQMYg6b89wueSm1aHrXPcTzbstLMjhSzG7BjafrFF0rB5S-1Pnl14-UvCe_aOWNhHjeBo1ljREiqc4vWo2GbjRv9N1o3ntMM7_tKlfNbep9UDuF3h8ai__WTvHEbLNNz67A03IuC0GOMaO3CVnziaNdxo8F46J2CAxekzyluK4wMgDYaAmTYzVkjGUvI9kFJNXoE4nQuukUhdwCJ1ffBI4uFlAO_yRbcvIwjKl3BvxeEzjN_w0KcVge0c-32eMwOUcDfU7nnc1ALzyd93KCrrrsOQOhTBYw7pi_rueub7cpQ2-MnhQROBAkqbBwmYKRBBS_c0APdG7EFPvvxqDcRaWcvwmCcSyzllV0PMzzXkDQSlnfmSJs36D5Svw5oHIArxumrjinyYXBBX4yf9ItzGtq6N6VnOn_orCSdcOMu23N1B04pDyNJSb7bXPFiXVaMfxUDSkrildUyPHna-bKB84hpHHxucuJP0wKxyoz4C7TpimcpRmw_QDkxnK8WOxGU29ftzVs5KyMqbilId85dPhVmICpQYJq0FyGI4M_iNxZhSp5nE-ffD82lCwvm2diTbJPTEPSSFYzbMeOKFhorKjJPk5eQHsfUpLEpWnjBrDjEQytQo7Zs60cJeyusT3LDrYo61e_N9SWQV5bgZol925X0nBY7DAa2xe6Wu9ALHA8sUFL1k3B0-ZqvuBIfy_IhhZSIhShbK0lxvOBmBUGMrXrV7n79oNSTBL_1hn2bMa29AFoNL2vv05EcGEyDYbGGSMPxM45PSsByu_bZrEbkjp-ODXB0WTJV7JfGTmo28bzNOlofRXMgwxgXFE18u0rgHowVQVrIRlkbjUmZowOwxOkhiH2HWm1IbIOkn63ErmR_qscK5A17bfZz4_ZjDZVCXS8EYOn5sZ8d3lpQ7JOBsW3MxlgDWpACHZwRhGC-5HKsQdXwlMg-Km6axzdrDnCtZgVE9v5VsWUyfOcViksM4MhowipeXNqidRULbiBoqG7_mUokJDnNpPwJ2WlwMOTzwpOKDbT2CCLUdYj1jQ5pRTBP9xNqd33uDYLy45ttXUVePvR2IjI3E-_WwKOpKhnba6SCWVsGkm0eA53HW4-CKEyPjEvyPj8vvO9gHABi6CVddAPB4D2UREozz5XHNO0mXdQ-_Cu8zV43by8fJacLdRsUYFPengx2OGtMAC76nQRNvi5E78x-P7OaDtrXZWPKgwAnqoDkpqRXG5i6VKcKOaT60srJhQh3xyCHLqMaZrwZryF2QVgB0S7Au0wlClmoysW19giPqOScNwipXc2omCG_amTllxG__io4H7M3TxYGG3OAYNMdzKyq8tk1C7Lan2ituwVRGFzg94w8UuhX3y1eCdv3LedzlNex82tLHjcoDK8wNko4rixtA8sYnmD12bdU1jEzs-1CuNx5y1RhLmHrAY9s9SBZL3xeKm7U6OZz_0FzqyPjxPf0N4T2-pCuZyp7G5TkPkIZVxTsvhFPHwlA6_qzCsP0PyKrFKeKccZ3eDk-bq6JpZ0_6ImEYi8YPEE_F0rdjgI5bqngPK3h7e5GK9BxSRb72I1BGkO8zbZO6sH-EXjzkAvrQgKKbTvbjK9lERVORjdA095osdvZ0RwgNl3bmFq_yuGYLsjcQM9QHnogv-S2OBoYNEYnAkFMe1bHm5e_G_bReMycSt7cLRCkB2I-mjufigBZbvpKIruSMeYIE9KRVtElKAkz5Wa1w-BYg3ZXBB1Tw-tEPkQLWVtkf8abunbagt4lDpgBLaxPAnlJdTYJOMElABpIxXjQn9bKppRowVHYNZ4FEbPd6r1vXT8aAMFBFgUBjXpFPO8LAdYubxW84nWhQwSKjm3hwvYkihO257aHxTLmKqEZIZMCA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_43045\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - April 2025 - SPAM Test','','publish','closed','closed','','cd-form-entry-680a5687cb7db7.92544275','','','2025-04-24 15:19:35','2025-04-24 15:19:35','',43045,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a5687cb7db7.92544275',0,'cd-form-entry','',0),(43048,0,'2025-04-24 15:24:11','2025-04-24 15:24:11','{\"firstname\":\"Test\",\"lastname\":\"Test\",\"email\":\"hpcheck2@futurefit.co.uk\",\"contactnumber\":\"03216549877\",\"currentwork\":\"1\",\"interestedin\":\"Biomechanics Coaching\",\"industry_code\":\"123\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4H21A7o5bZ91Zuo903c8giu_4xmrBpC8Y3Nq2QUtNxSE6ZHvomIoDAAAVimWhd6VmLhwDjdSadv3nP6vw_tWrQHy8o8fUQSJoUl7kTY806UREN92e19odFOkqx9dYBNQVqiZNRQn8A45R8kU6Po9-mP4xrDdmu2vhpIyzChGrDWdQWIEeLsohe1VyDmIGBxIohFZk9FIOgoyhelrMEo65FLIp9OrtoSW_pKEAqLQmMbtJJwK7iFaOgE1e6uGAIYqgbKt9RiE75b30oAHzGtgTvz5L4Ovque2soYG9WcGzc65LvpjQ_nOtQ5U2DE6z8Zpdch7g3wafkVH9tntx2gL0L53yBBz_V1zIhV8TThJcKPkf5YdDs1z2KTc382tn6Upq4PFf3a4Uyq2M_Yhi66wGzbO5imwjLD7KncC-4jZOpehkWgELOAg6KvFRuipEWIFM7La8L2LB2iFpz8HFLCJ2g5EIFl8DRTgNF1hACFSKhp5POtm7AoBPZYnHo9r5ujqSkA3Z7k0GpnLvj5C7dZYhunx7zr3PPWIXtD3srZCinB1ED4z-H56lLG1aUMOTz5-NUW7wj0cXUM_iFFoCT0Mo4J20h4qkrHEc6DcwoksXGr1JzsNbI4jM8sU8PjCSrUMzSuRJKFcVfFKhygEu-rDd4fLgKmHOYOBFEElVMrhK-kBCDuxhmKpPGGh1bmeVdh0lHQVhP_IyAgUJbl6lE9NmjChOCkosKgNnbjBxJqbAixgvcPLlnTadX1BD4o-nGAG1qR7996enztXFc5ewWp32QxcaHGsMY_ewil32B1VHN-AgoCE2UE97jnbnihzDSj9n07KcPVknLiTXf3hymImxVdjTMme8eUhorB3ACrYKFoAO4_hujQqvZoT9j9L-EEPYemtum1PTKermrQqcxDICTCUXZThKWdXUuLK51lP14JE7yccZjRihN_WV-1ZkRq6w4Nu1E2ak3FHKQVF_XUxNBYKVMza5urdLKiHbmdQ7GB5l06hKxaJlZ-gUDvKj05AzIkkNuc4sYg7lZRkhaeCm1N0sXOHG7SK_fy8TF_UiL1nVLsMN-W5BzBezt6FwnCCzqShS_5YpRFwI_Hz13mCE57PvfnuDNEI2J0LmIkY18zLin8E2CqddL0lWCr_TssCoDJ2fwDk6xN6y6fhuQLpvPPWsH3hugL4_cRkcuj_Dab0Da6WrmaiNWgn2gmYnrgW13sAySb2pnOoN6s2mJthOWPFRrCiMnRlD_kEY5VRTk5ibWh7kgQA-shAakgaOnGde1SQasqvE-gcbYrEr352ISkSYQWqv7qHOo4ulKAakfJARb_00f6eceexD1q0WhCFKOB_B2tfa1FT96QRwT4Zg6HtOV-akVLiA9KL3Z7XHr00hABSczjO6SuTwg5eiM0bt8NWeqXf14jIiQZvjd9t569qj592IgKDK6PKO3OpbIFDAn_pSsCPdQv13BMP1LZb_RA-3TZsPfobEs_ostBQkCynC_xOMuCHqBH84uJH6LWW7etRSd8s35mLmdN4vhb7RJHj0YcVfLdAO0_BqtRAJ4I1B-0hh26cp7I9Qo8Kf3o7jVbru90mzvo9tidvpyUBEhAHgIM_Dj23QE1VNL13GGwRfFhLw3oMgWrXmP8Rbkoih9_N8P1ySGGM4HVf2wG6-3ZNY8mr4Y8HUd_XWIUW11xbkaIjMv-T635LWgfHzp7AJwCo54ig99YJ5TPS3R6X079z7W-eduBWcGHVHgyl54_dMaypg49zwekPYpuLutiKsM5bzo4r-oRjJmrcnqescfmZipLCLUAMHAhW6YWWIOqm-z_jWR5sLxikW-hPu03YorWd3k5zb7r1oZ6LM0HSWjepZMt_9fVSrUsXSuRqZ3sE50hPww--M9mLh7dRKd5e0f11TSTQOYzl575ewi4o1eGJPIHo7MPyYbt66bTQBBlizdgD3Zho9Qyoqy7Bvydq5iDhLl-SBTKWidctFVcnVhvRZ3kPUQvFVFm2saHOLdREM1lYekAvpL84k_NJ2Ok_K5Ks5nFrovnaIJJvf-7YR-mRbT\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_43045\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - April 2025 - SPAM Test','','publish','closed','closed','','cd-form-entry-680a579b9dcb37.40408034','','','2025-04-24 15:24:11','2025-04-24 15:24:11','',43045,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a579b9dcb37.40408034',0,'cd-form-entry','',0),(43049,0,'2025-04-24 15:26:05','2025-04-24 15:26:05','{\"firstname\":\"Test\",\"lastname\":\"Script Test\",\"email\":\"hpcheck3@futurefit.co.uk\",\"contactnumber\":\"spamtest\",\"currentwork\":\"3\",\"interestedin\":\"Biomechanics Coaching\",\"industry_code\":\"123\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA63V-oEryBTU_E36RRKu1D3ODkZktsTV_YWm15Pc8eTfNHodotDzZnRYQLwg-CKyYnXYzTc9w590ND5ccOpxwDW20G-nEgOvpWLly6FSbvF34okbGrAnqKvVeh9LjNIoIcnnzOcdDI7Iqmr3JvDKjbnP55wULGhA7H8cFbqx7gxrqBWW1sfFEowiIv461UVjf0kvAWfMKH8naDDbhSh1YrCRjWpkOC_ZAq0EcFN0GTq7-x-xSZfDOV6OmOdUFJ12rMeSarsnv_ZaIkN2vgMrB4UjkvUTx1mp8Lavgd13ac_caB1wqgCBbYWXXktgE2Bm6XF3no-qn7l33e0k1WqxwES_03GKY3aYpU3k9t1mn_b62q_dFBSJl5vdsBRbrw8DEueGJoFmQqxv6mk-Tupz0JVD8tEVuGIiv4AqSbyoxyIqggV1dQ9fo506NTBSS6r786_8Pef9M4q2ObyVQWce0W85O8wc3gT7p6EDH58jUG3OM1aYpOl-0awvtQ2_G0NxdzOhQB8ajhvteAhfBcqJnEYFc2PvbJZnZcH8rdWMJwFrBtgHL84iLKaCqg6Lo5speXCkpIpQqVSt2N8BqxUEfUK8w2471_nA9qmBbOaIiUKQ5M3XSYIC4F5Pov0iZgowDZZOmYgu9rZDiaRFT6EeiUtmmVe0Ekamvjm9e-K_2bF84l61XenDb-Z1v0BIwnb5ZJ06Jf3NWGoXvRVMe_irnz2sYVBiIEv8r6uxkacAnshzZtFJdg-9Q69La3Q-4vkf_YDrn6n7fGc9JaueXG9iU-AhTGz6JLHLmYbHx7Wj9RB7NCUt2vXqd4iO0OPM8Q1js6WRnlrks5DYNTshfJKtwotbpFOBcWHKSL3m8bIQVmqpJE7OyLLjKc8Vwq-dULj2OZY2NwICFeBqvwx_mNT8ZT0nb49MPEpOED3drVw3oqElgKjM17DCIkUI4yV8FLt_IJ1jIRMO0eVPebdAI2JQc0HWd-Kg4u8JQmNwqSrjM-ruuh9DWw8lPtb-nDFwj_xi6KwLqi1QejWBpyOCmsMRJHikn_faKnbZ_mXzLmM7arizJ0lhUToe1GdK44XQHfvyMvagE7cyqIG2CFqoN9m2dui31lTzoFHN4VFiTqYZOH_MljGUMdAWfJcx9YuAHWxFEkH2TwqN30iXHpd3vq0hRXPyHr6gQPrF33Frx4exuruk1XhLHhTeOB28AH_c3VKhvaoikhIt_QxyL5OVp322k_hQOAbcEisYhP72TvYNOIw4BwQqy-t5Ht4TQKTHnAlifLLD0d7jKheIvxL-ErSCHQtFcGi-e81uw7a-Kl_zn4Hwqs80DsDIWwFOWcV-crNQS9J9cwShXKKkwfARd4M5hzy3kIyD7xGC-9gNki4xu5USeCwqKGUq94-93kjJlF0u8b3MiZdLxsAQj_eEtqbtHBXZNAM_zSqbuDLNSCJI_aK_WvOU8_WSPBKYfQY6gNtICz8aavxpQ-N9qTOebZkQ3OpjxfY-8_vobYoSleuEdpYuPg15iRiDXnJ9KzgRMdsMC30FaYeyFP6qWvr_AHF9bRDY5EJwvf2dpSQmo6611YTf9iGSrFJ4_8MqdtAbdfmcN2Kjl26s8LX_mr3jdLMdnnlx-hSQV0U3gi0XVeiCKNU0L6gtqXiVq-0sI1InUWf14Z2bhlTde0AycwKnA9iv4_YehXp60UPrlyXmAGBnOFJyBs338iUqG8TvNBKnCtJORgGSC8taoj3_S43SUvLFPuWwSpHz7GXZsstijmY-ftoOdEhkWCyFfaGskpibuwwttzD_eL37ea_tqh_krkwzBPV7uAboH2y8ILVrK6bepDwLtYyqN25vA2opBU1I3SFlgKBjKjpLQWMy9Tzw2LuIbXLVJqqbqfeY6u9YEANjUdnLgS3-pT5h0o9msI3W1pvTkkBA5SH1ND1ZUqIgT6KKMXqwoO67Hp4KJECNBIBA5gB0Yuqio7VxqATfyCVWhMigMyur3oajeAZwOIiiln776lE9ya_110lP5asauH6UJzuoTzoWLcw38fNQiIjjiXCztYepp0_cWsbdUt_YhDYxKlqb4dI7g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_43045\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - April 2025 - SPAM Test','','publish','closed','closed','','cd-form-entry-680a580d71aa81.79088068','','','2025-04-24 15:26:05','2025-04-24 15:26:05','',43045,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a580d71aa81.79088068',0,'cd-form-entry','',0),(43050,0,'2025-04-24 15:30:27','2025-04-24 15:30:27','{\"firstname\":\"Test\",\"lastname\":\"Test\",\"email\":\"hpcheck4@futurefit.co.uk\",\"contactnumber\":\"ljkhalsdkhla\",\"currentwork\":\"2\",\"interestedin\":\"Biomechanics Coaching\",\"industry_code\":\"123\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA68qerKiBqJxFjp3CH4FfjahCpV3AHz-D4mgsf6AKFIaxh57phCdc_DCWWsniu13QDc5uyg8897z82xXisTAUZOrsYmzOLLqoOTUa9kWT5uBVF8-gVKfGBmzdi1-HrIB3EgGOITZBX3o7XG2vEl__0n0s0z96L-gES5SqmQ4e-xKZS9wYCpD2NpxiepuJqkS0FcLlML1hcAB5wAAaW2oB6jqOMctB-q7wVX3RfGzN9JLLFeqpUEl_DIsMXo8F_bbHDZUYSZxt6tXAn-IpzV8n1ILqglCvdYa2hosKrV_6Mbh-fnFdQ93r8wJXgrJGjjWfhx4vda5WM4kl4bQzdrGOJmcfsjWeoFtBeS4uFeitEhulWNq_K_wRx30Kifv1PYF9tNBUwMNo7nyZ653m5cFBhXpSeQ7ALT8VYNI2Dzu6_reJ9dqhXn0dKZVqj5cVRC1cwAxpio7w6aeN86vLhbEGUEndnRUO8J_-7WUmtXY5sci6yjvRg7oGP_LxyilXWlQhmjOeUIcUq3R0dsSthvpwWtyj2TCye6YcYmetlUUZQwlfYBudsPORMjLgnWLoXpkW6JOJK-75-P8SJ1MLCBzMNJF3T_lRktJmfr3WgkKZLKbgzx9mpAwsFdS0Yw3irzaPY1keUGKUw8HRYAHkTrlnm4KCUHILW9q_8LA47WTyBMJSLSbF2S5YyHm4wDfT8r3ToqXFqG88jW2AxCu_Y4T3tVGOI0hRtSh96asdSYhJkzZi6KBh6Zo-7g1nZoamnQRBS5Y6AoMBiTRw4x_Edk7sSQqpEmRvath8hQqx6XTqnyA6ZTzaddhWqDHi40K4BYUfwzLJEE0ugrSLm9m9biMTY1QjZmfAK59atqcx1RtHRXajAPSPFulV0Ai46p7H0TXrQXJQsYJwZs8kmj9-ngPdyxHEim6h8UJJ8bGkMVId07jwJVBduMEzh1GVgR25xvBd_IWCiYQgNnrENfK9BjTcPHZ8A7uc1iouebQ7uat9Kp5NnGvcd7uas8j4laBbNPRgIhQMyWcuScz8nGlOMU6gMalwPo8iFSsS0dIHK0geVEwX8dDOVYXA8F1EUs9Tc9dKEFyMJdKmlSfMRtIFyBwpq_EpWHnToh0q2ZBOMRsgD5yTpls6mb2FvZL4MmssDLhKZjQ63dfrgyqhOBpYHHC-s7QGXwwq8dfzQ7gqINQtIdQdW3T76vRwvst5ilsOXnpV7gz1YAYIHDsm-x3QrmSeOUebb7lw-NKUP3CDxq-bUjJ9PwmiTqHPqDaGxzEbQEk1JZ8TlsC_bMLF15DErFYwhTf2YYdfAuFbaFtmXrsIW_0Ri-Gi-X1D28masUijNlb12CfGCtF3GBl6HWFE_w2UTgWcZH3DQwFx0Y5_8gE_qGw75YG92dz1oCvxATuQkgB_QUMGheX1KrCzuAEbjTfrnE49DSisXPaTr4uSaBv68O7pIAo-x8c10cVNCIO-ZdJuLUiPF9epRHjNWs3Bv31dFjHAlZ_IXIZoCV5ejJd4EvVFE9sonCdAaRmi5eQ8xzfUw6nFB65A8-khHAdsLidI_DdoyjoT0EYfYFGxsKwQpz2pJ11qgVuodWppq1Mrep4deHkGoXAaHqGVZTLQtda2YYeTFRMB7Vr9iYQk74Pbfez5UEqtW-VjiRV5HwaBQiLMOC2UzjAs3TpuzPPb0ajoM1293aTS3qiPeaQ81240M3jZJcvdwWxibw4zQ0zmZ30e3-HQWewR6QdXT0t4zPvgupEMAvZdrs_R2dj-Zytsbk-K72HM9HNDBVNErZZFd3KgDC1jpDYMFx0O7RXuMfSrapuMjdtpb4xoPYrLgE1Veb8pzW0PWzFtgbEJPn2IGrv6S4BGLhXc_kB9ui2OthaW81qKgE3tLX6rs40QreuvzE6Qg2QUON7hvTAPvbTchuUJ3D1zmsQ9ZsJ_qVhOreOOXvNNLhH7ik2fMskIozRMTAx_c4PYsjKFui3a3Ov8y5ezZO8bxvm0yh3FWjcUz7uBp2xQOyhGIOKvzTMZcEp8z5XFiApuxCRI5t08h88c9NKcX8g05z\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_43045\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - April 2025 - SPAM Test','','publish','closed','closed','','cd-form-entry-680a59130e9c14.58090550','','','2025-04-24 15:30:27','2025-04-24 15:30:27','',43045,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a59130e9c14.58090550',0,'cd-form-entry','',0),(43051,17,'2025-04-24 15:32:43','2025-04-24 15:32:43','','Download Price Guide Validation Test','','inherit','closed','closed','','42987-revision-v1','','','2025-04-24 15:32:43','2025-04-24 15:32:43','',42987,'https://biomechanicseducation.com/?p=43051',0,'revision','',0),(43052,0,'2025-04-24 15:33:09','2025-04-24 15:33:09','{\"firstname\":\"TEST\",\"lastname\":\"TEST\",\"email\":\"hpcheck5@futurefit.co.uk\",\"contactnumber\":\"hlkahdslkjasd\",\"currentwork\":\"6\",\"interestedin\":\"Biomechanics Coaching\",\"industry_code\":\"123\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6M8oIUwNwAAZVXmAIsC2mZq3hxJA02XYoPRbxUJeRcuwlljIRpOaaDLThOvn3PUavDvk7yMl4wGu5dyVIBjqC287dG3HQbsr_WzTC_Kz3d-UvsQqniIks7e5rIZAb3HO8UkpGBTIwmk_XC-OBqjt1Ae-GJlud569TZwhhyKP-RCMy-Rov3vlJCJ5Iqzi1dD82Vm_BPn-p5CwkC0qadJcIz-ijGVrg1TNpV5ZeagwmNH2Trgag6gKBTt8OKrS1E-sz9NovJ1gOT8vXVza0xKni-NPpbOLMS9XWYF19AWdC4n2TSEvVQVcfJXvDwcAMDjy3OHkRt3KxyYh-QCL9U00vcaPUmPus4FG537ikx7UFfujgEqHvkpIJyKg-Qp4Oy3jsAxme43MMh8VrEv9j4K3B92jnrHmrVt1_wssK8aQcw1MgbJVSxezv1xLMQ37aLYWh-xqVDW3ibk9htX0BesoRrzf6jU8xPkqxxCAJwR9m4m02ZNxuD2wgVtzXorcOYdWiQPE0ohtEIjhbvQggXNIKdd_9EhDXVFqQNca5gcJbSWmzqKEF5V4x9-9tQ_ttlypEjo4FmlHOstpm2rUS8OV2p-tsty0tmcNP6UBJZOX7sRYos8C7H7YwSBhMopxBMUwJBxCS-p8bGz9pMEFW3f9xx1XcbgSsGT_O0swIUQDFEAomm6p1cDWNso2RzkmAeFzHoREMnJrPZzd8dwp5yb2M18ICxM1CdP3IlE1al8zVmXviP2k2PwrDFMOpWb4qHZJED46pm_SnYCZFe8lPYvViNDr89oV4iuTVnFCIxFX-0zmbzAgCJVxR6zd3RHFi4ecq8buTRgSjUPG2zGooiFJv5QDWqY8wHkINSWhSrcyjnEjwcYv9CmQx0Z1gajVvcr1FduodlRZ5rSPAfb8nuFBSwZNSMSnkbWCSHjDf72Skw4x-U9bL_86FFwfrRqrGwE0I5VdjrTAXc3ceVWcHzLMGLZMyqjqSAtS7Xsungda23G1AyZD-Wpv5AEVNlNFwVqObHbbE0wzczEaRCAaD4vmqxeuhbgiiY_Dpzf1OSs01WR3nSd1J46EamhdXIFvSxo57rtNLtGnf7zpsdzRmAWlKi2iwQGKQ3J0d9hHg5gy9ISeXPW4pjCGhlV1dMDGWpM0_U17hHu5-ifyIrHSE5Mab_Yyvl4ajLfPesXgR-iUMRvI45cVlhYN3pVpIcczIx4LOLR9JWbGezr1St1TGGwn_D2pS-toR5RaCq8eqgqK9IW488MtEJ3ghCik5y79t3XjbSEtU15Cu_H3BQkxqQ-fJ-XOrS2E5ioA0TaDYIn7BPdnfFKNA6Q6E1MuNFwPJeyLGdkd4X4hauQSqXHNChgSDuKE0U4iaucF8HT4ZY9jzwR99KH-VVRsqc8hK7F2de3hyRzPZap0sjt5sByyf-sx2KJMhQ4AGhSmpX4RqfcDT6gcsaVYY3A3UrrakZmIIwTNKh8Vn7xSmtdDdwLmBsBCS4scJuu4vO7_Tdy8-F32ybddPG9L_Vla332xXWADF5UQfrW1PXN1M6z0lXTS8eA-OIxdaGExaJyKVppvUmpWLsE0aWga59XaHVoJeJCOoDHGNHS7HcilFkN8sYpTnkb9_AIjUlyfoWhr4CdSMw0xLbgEsU2UUzte-qR85oY8OLPz9nJ42nC5kvepWh_XgJ4kM1_-dwmeyA8Tla9aDvkmzezOVAGTA7Cr6jdr_bcbCvSL0aIzIeItDDVoyCaCL5FHarNi5phofkVaNDzERvek9apoAM8-Oy_JBwRmFUR0OEG4QGEpZh9iXr3kO0DLw2PAsCjRc_TKsXz9snseh5ipKM-s8dAR-gHWF_IeY6xSa-uKr-y7f2g6oCZkoCPQYm5Eu1D5I4TKoH4qN3fujOSt7mhJiAnog1HlL9MWhesFCr_wXnB6-bkNTkoJQxVWf525I5FN3Hs_YiS7rP1souXrFBy6GF-yIiDcO95f4F4GCOT0nWB0O4v0nWS6DftC5CtIen2mPCu4GXC3B1qowkqeXqK-mECqvMUy14BbYT3qkumQTVXoPSu9fnhKpbwNae9o2nedOsYQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_43045\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - April 2025 - SPAM Test','','publish','closed','closed','','cd-form-entry-680a59b5abb8f3.38284967','','','2025-04-24 15:33:09','2025-04-24 15:33:09','',43045,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a59b5abb8f3.38284967',0,'cd-form-entry','',0),(43053,0,'2025-04-24 15:40:35','2025-04-24 15:40:35','{\"firstname\":\"TEST\",\"lastname\":\"TEST\",\"email\":\"hpcheck6@futurefit.co.uk\",\"contactnumber\":\"321asd321\",\"currentwork\":\"4\",\"interestedin\":\"Biomechanics Coaching\",\"industry_code\":\"123\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA50xCkXfBk1gaNcfR7W_WaiFVoxJzCezpks5x-PMuve4KzqOE8NdY5-yHW9IQvKFBPUS0vju6m5JaX2ClflMh2bGHgy1V3xeDdpLcpOUZkrFFS4dZslVcvnRRIy2Af5o88gaXwpvCOU4E1JmNhMXY9bI7RZW1Rwg396YViPCTuRj1yZOXjOKBaQl10ivyhNU3J6leZWjHlyUzRGodGpOM9wBdsYckqO6ZAniAYYuDP0pAJAYZUD8mnIAbXYGiaeIwP7uQw8f1z5XGW4cQvzl-k_YQN3GbxD605mHlCtCL1oH484qY6gyz4_Bz8FEVlyL0YLol8VWmwam75WqobHLXVIJI8oAlevLg2zR_qUJYbS4cjswfsPYp0YUa_AUXI9Fik2ZLjJaIspwrtsgWQ116OgoZFkZxGsuhb93DeqmEkHWFJRGYCmUya1JVzXJAESy7k9G9hCd_1-kjbaYF4YiYjQ9DQVDtec8CGs3opyFLnCq3ugZcLnwOxULQmeJBuCAbFFdQggEg1fgDsVnuZB6PLMjQLpxB1FRoGK85QuqUcNrAtHej3O87qWlQbxDs9wnZ0cQANhXxcoJZECDE4M1HD4p4C9EjKbuy2f0Up70zH46mK_OeTaUW3NbkVT_fdtK8qsEynKCC-M_90Uv9M3Y97w8atJbiz6YQVyucOf0Iqmm2yb3gbi64PkbLZCjwm6nY-pHN2UqZ-hmldH4ytFvBWwjr11TQsI--iBGK6ccwdRMl5VSGRwbpGDXJNRb_np8Ft-zTrSsHcVY4f7r4n7gnaGKmYj3s12UxyRdJpsPJuabSDyaq2l6PjZAYQFeVQjwSVRoUAdoVir40KdThQiU3Va6geZghdqkjixDiWrkYaGvEJ5E1_9MHyCQUCuvrqbVNGQDnRj2oO_DZwmrm6alto-2pFDvD7jmLt0y9hShWq2w4kagHMZWlBpChMuRhi4Y_hk9-4ITlFkzqcUgZWXxctLwzQYqbBDS2tNIB9TgjmfQWzoRRkkt0yd8z2Iff0lA9-214n9CM1lisX1PFVJOQaOq6uTu-Dk1bZAgPLof48llzKBJxxuqDDjq0LYURVcpfACkYQbSk7UBv3-n08K2fRru1rI95y6Lt52fBmCMhdkDfRBg5b_c59GKGVu4Plk8jzV22As3D3_-mUixhbHjHCsFdKUIn-PFlV8U81sLjFhnJJfNfKGxqrzOdNEOD8QelQc6L4nDgRyFXAQH0th8WIOhoPh16R1-f490b92HX-S07QDgKKFIXW-OQdkg6Kh482x0n49u0q_jtKEO0Gve7WvmI8n5b54lEh9qXxXfShnkLRr8fbIB9QmaiBX20AExqHXM1PTTuvqSfNdj8rGnIOX-Rwd9T13dGkrfVgA4w3jj8EiOsXLtC2_TOw9j9cRzQyqJ3dPTn7k4Etqqk77Vy0bozFSuz1-D_-VIh5FS9HxPuCQU1nIA10Ptk39fd3Z2ucscDsKhpmCg_dSAXOAqvIN5p4BvgJw1zvQ-VrkfxNy3jsFtFkVuWLlDvq7AsNmTPwQ-W9C5m-ziao1mdZnkNwVv6fk9lGjW_9n9WPXzd4d8_9NFmNIHVsY4QmjUiN5UYYpmXB0OLFLl_vzJL24GoiQJC6LACLjY0qEXsIuRdqZon0uzIYuUDPj-7ZewFs-7xUUqTM4tJgz_nChqsV3T1SMJuRLWX4U9pfF6Z_HayS29X1BdBEX7BWww1rgyPOcE9TFb8aKIvr1ut1M9Mu10lGCKPLgTG6_jV3V1wHptek-C5fd1s-2Q6RS_blp-rhFyT1xXdoHC2E5MaHyzohgbuaM1HI28i-pSQPbQSReqpnRYW-rooHzQkXzubWqDn83ENAK3kalq1P8WYsUIHAGvqDOT19WASn8yeLsJXTq5A0T9SuBulKw9USNeY9c2oGAbLu_UiLKIqiAz1oq9jANSqHY5-dEvNoC4lBvAK6LqgVPhGXz4K0wrQN4FUhOhWRVbv2Lyi4h93zfZGrNBv3xbY3jfAWb_Lglycn6olUHzbscg9yIPonKvI_m6Q9QuCv3jjUXOSHk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_43045\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - April 2025 - SPAM Test','','publish','closed','closed','','cd-form-entry-680a5b739dbef8.69478946','','','2025-04-24 15:40:35','2025-04-24 15:40:35','',43045,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a5b739dbef8.69478946',0,'cd-form-entry','',0),(43054,0,'2025-04-24 15:41:22','2025-04-24 15:41:22','{\"firstname\":\"TEST\",\"lastname\":\"TEST\",\"email\":\"hpcheck6@futurefit.co.uk\",\"contactnumber\":\"321asd321\",\"currentwork\":\"4\",\"interestedin\":\"Biomechanics Coaching\",\"industry_code\":\"123\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6jXhYqENBPcrP8wir4WHybWQEfhu57DgpHS31IEMAum3ohVR_QMo1v5bbGMp3SbJ8siY6ASPEl-_f1xCO4TowVqqCN6nVofk5ysZyGAWEdon1AWShZyd_hpAGQcsRXwZlLkWbwtl-Ad9YxSV5Cub8YM8ea-GAVcbPN26HBIwgiz2dXpRK416o57sqPUkVraar4li25U60xe8r6bAe4TQ91A0N-eflBlmoEE-x14gOkU_-Wfza4ade1dROUBA73KIujWS9jd_FB-BGBb_DV782JJaa1ofKpRuk0Il6gGQcFXWTKVi0cQelghjX9xMUrDfwHLWcl_-hinjTamg0yatm0IFl-rQvUQmRQpryMlVnk6wnO6mCbBiY_1P34d2JTjItDNOFjmlUUqoAR65e5-NeHuKULIDeKqOgPys2DlccqghSO3LMV6kHtb7uhPqdJIiDv8K8hVdA5lAMMqyOwA8ShJBWDv9UHwDqbJJRCbPixor0-8iMVrZRt6V9de50X9xNDYSBJfLyIBjN4pJvHts0UNr0zdSc25c4eQ4jwmE8GZWeqHhnJNZxhZqcXcxeJVMAb6O1JmytmLzMOONaE4KOUcemFasVj3bJKUh0q36PoIlhX-6Ben9Yo8PBbgku4X_DThsVVtjoKfH_tz3W_ixuNRBLvcnvwaR6ZYiswzoOKz6_5nnrUFsch92_NVAm9fVcU80C4zVUM53LWtwIumlSJFRIEsEIk4bbUWiaVZcAhk_5pGxNR4PRd5SLEJXV2BILHbYG9uYKoP_Y1lGSVt7lH4_ibUPmkZzpb_HYTk8yROlkf9Uo3wwFDlonCu2fkvlUyftLcmJSVGmulluWw_8drEdUq6pXoK7m0CVzTwMv2xNczqHuVO_VxkpH_hURL1tq6Cl8tB38ubJXr8ui8PnwR0MVU5b-1WjdHUYysg6gwgjWQ75fLeppidyC6UUZYgDIkI4uIqeqtXDn-GUf1xQlrU7XIl8sygPL97FtgjwshD7bPYxlSJcuQr4BoZwe9KS-Ovw9icECbFehS535rqx31bZg9pM038sfcEsL-APbDg_3IWh0ItBJSpYB5bbPLxEYjUXVNQ0niIvdWQV_J-Ac5d7TnKn7aNp1GOyBWIwlubR0cfxz8V-hwFVjU5QYgw5EbVM7NB5xysOsr9SFYzsB1STwVT7WPywipHLIeeOKeif7Tw7FNi4q-Ho2dui1SjSCcN9uPPHnQmJZIegU-ppZs6v-SL9EjCdtyiTjyleAeV8iwokYLuj4QQa3s5dcL42NGvZjchd7CprfKtIoBKCa0GL-6xUZcnwST4GBbHfdzUXDpDKCsQX_1a5d0Xkn2UBQMMORYFcMfH7zeoJyGb10acqnRxIo4LVArR9DYEwL4u3CGNvIzdt0MPUxmWgwAWfjJnge_fU2Za61ea9O6dSb5yNIyjCeRQx6o4BsO7G3vZEcg_ZIoVL1FtFT4j1V5URMWYRNrxgmGMvkq_3hmaypWT4Q-MoNVNNJALO39v7DsBNboYpkYkljMQn3AKG69InPnkoxLrh1E7iZqltkBiLSrdmdaqjiba7o0tBkSQlh97V6QOTP25DMwpW2WTGD6-iNqSDULgWNbVAe1kDBgKbHsakC7URTn351CzG7rP2x4-qkDD-tUKB9g9_MJhoUpeky_O_fLHoEz6oJYIvb2kuG0CKCUOWCF1LTD1ArDkQ6roo5uDLmzpkPTWrg7E0K6mhp9KmSDtSAoWOppgy34mgBO2_a9PR3y9KTYnIsiActkxNHhqwmoJ7-pRTHOU71KIlv-h6Dg_YPv8zIBjRteRIKq0glRr68gY2_PDgNNqdWnIKXAeu1wB2NNFQoWa3qBzHr9QL7qtDOBX6BcHwIvn10cPkLVWPhv5QR1y5zKGcRqcCZscJpUo5ZAyadQf9c9RYIlTI1EPu3H2Gl8p0CmxmGPWXOTKhmp0c_S3mWi6UP1cdwrtnMH0PrwFbU2q0bbe-BgzL1iwXO5x-tCPI6VOiiuMi7YzD72CEidWrkIZwbma6DnY4hM2pXv-JLd-h3v-3cp3Dm8eIfhZ4-S2tQpMt7N06aKCA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_43045\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - April 2025 - SPAM Test','','publish','closed','closed','','cd-form-entry-680a5ba2532874.88855793','','','2025-04-24 15:41:22','2025-04-24 15:41:22','',43045,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a5ba2532874.88855793',0,'cd-form-entry','',0),(43055,0,'2025-04-24 15:46:42','2025-04-24 15:46:42','{\"firstname\":\"test\",\"lastname\":\"test\",\"email\":\"hpcheck8@futurefit.co.uk\",\"contactnumber\":\"321test123\",\"currentwork\":\"2\",\"industry_code\":\"\",\"interestedin\":\"Biomechanics Coaching\",\"pageid\":\"42987\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7LHvDfuOqJFlgvKfWx6r7EF4ETr2X2-TrNKVTprvCaGRypH5rFdS24Rj0R9RXUa6kUXdRVXPYqD1_LIf7YaUz910r7OqxxydHVpTSGXGlacn3bB2rAcesA9H7dnRWCMOqsXEUP9RJVTpjHZl-M5EfnJYByQtY5yV93rLIP6OYHVLdbD_mNPAuZBY3lxcthlVt28Et8pzNakyu0BCFd9jq33er2AWi-qlrQ2brLtZsDXSqrqoHYghYU74Q3shUdTA_hxlIovxcyj-apuScIyapKhGyPD4oM0-bYp5rZNCyTUhMyoza1aYNyXUaIbPnq5z8Zwjl5joRfdiH_RG2u3sWzIX6X0q8exqwAnWguC3Rg3dXen9ywNJ-sCxeBjKhZD8U6UdT238K9-O3Yv6OEW9-CHNtf5UvUYQmPbexZwTjI4hTys04FIeFsp5xgZh4zdgi8OCW9ky8rkrH1dqh1B4SG-LXYXl2m8erkY3U6AK9FwH3ijFrK-a10huptdds90t9Qq5t7bFQC0LJafe6AlkzFSvre9_uc2A41HJxwgOtHQJrrNCT6n2CL-M9Ze7DL8Uj5PTJJdNzAWPj0CXnxqzjCzL3lEAvtnxL7_c9Euxe0xpf109M6KZzd0_3cP9SJXZxW8X8HNB6Ma_MBaJf5ssOJ8HcHBT571_WoviFgi6rs--7eUjXYCZ9PrPEePdN7vuxlPHoHrbOMnPlV6YTFW1E9ZybZdysBUDsk-QfAD5A4mG34d5rKUoLC-E2Ft2xjy7VLm0YhAgbkty2N8psLSjgE2-mgVOF-Nmb23GrPvrOyJ_UAlhn4LhtdNYznQ6Jw5yKMrnBZIYg1ftOZArzNB9c3enVSdiw-ABViqePmtnkgpydNWXYkZNHZQcim1URzBKgcUHZYCMejBJ5u_SReBSY7ozlx9m632jXd8FGyj04htmtoj9Dn2spn3kpDh5usm6RRfhjrYuMP9sydFL1tBRw1Uy6KVBoMqRbXAf4UfHUqbkwGilibpsNaKgCQiET6zz3qoe6Aer4p57wH-lH5zIKMjr3KOkU-RXUyPlbZiLhhxgjBjlbB9s7OlV86Ing3ZGkQeWyphFp01MubMqIfTHapWt_HhUCEPfPdiIOAGyaE0hdL2787LLtY09HdD63aKh-hhzJUju1KtenUJjvb5CCX9oaiAyzhx1ZzFFdqwM5oQa_CWVgEr533EQRR4GJZD9Cu20PBJciqJ1-_yhk0yG9UEgkG7R-OC4obqgNgsp5ao44qUtX37KWK8qb5kfOuTtHFkhZfJycKxlal2HRH48EwhVV89ailzruWJ1XXO9greyvFbO3kOmTgUgAlCFPTItwEjhYEbzRZr96CjaumJHR6ldbvWVwrmdtcrYbbVo7wa44BxjNVXvWCjRHbuyl_V5uwa5HT0sMUlp-GBXWCTXwbxxcrqT4fsq0asUU55uNREd3lS7S0tokQ5g6WSK3SLQPJ_M9JVdKpkNzwx4z7nmootTbtAL84tVZbCJwCXi9IaDAS1G9vmAxMHs9d9MjI1PT_K1LwALWFpvBG_x-yfdIeUdm6Cj3w8fsrIU0yiJa3B3yzpyVp3OOLxSxuV6v8s04BN4b5TCU38S6uFnxD6guKVEyxkXL7HoCftzVEjd3TTeBnWJ7tvdOxUo0VGbm0_249j6cYzzV-3oX3tYRYGh9N2BiQHAekAfzAF34jRkg0Nolt65PAbD5H6bAYx1YeZw1dQYlSsWKw_VgUuIA2CRYXoAVRFs0LdWzJwY_1U2F4Ro5mAGJ2LL1WLsfTe8_dKGSTKcLrPS8_7zssReGCArNkx_FbqMrVeCv0YI0kZTpV1AuSGRI18jd9nfS2BOcpnpHBqvLxEnNRzKUJjVJsfYM7m24PZB0nBfEsFHXgaY96hIoH2RN55badwUdeJol2GK8fNIIhLz_FZy5tmKStc8UNDsTf4aOuueQ6GutIIX0klE-5gFL73bunRK6HMgKBMTeat1rHMXhX3zvWXRYSnoMBmN8I6WDXjOVPudMlA8I-n37orSWrloPyrCJTe0JuwI8Slw0sV8mssNYSovW2mwqA8x5egg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_43045\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - April 2025 - SPAM Test','','publish','closed','closed','','cd-form-entry-680a5ce2d9c156.13488061','','','2025-04-24 15:46:42','2025-04-24 15:46:42','',43045,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a5ce2d9c156.13488061',0,'cd-form-entry','',0),(43056,0,'2025-04-24 15:52:53','2025-04-24 15:52:53','{\"firstname\":\"Test\",\"lastname\":\"Test\",\"email\":\"hpcheck10@futurefit.co.uk\",\"contactnumber\":\"3216544\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7P0K_Sd3BgJXiXeIA-hEKdoa1bYoFzH07DdFzAUSAafGjkxxDk7lrXcT1GBF1wkKXQwZN0j8Dg0vDfQWCCktA0KBmwzD05EZXYdkk25XysezQdlyQUuFn7Vv2EgcKGGlSnQvr9gLFcRoWiW-XPZW6qEYBeEyfJdqdid7_9q4jU1GIPec_g0pQBpscNiIVJSPmcc-hmyNux20SD1TSQgvGs4mGBCNt7U4XaDW0elrr1QOkDENjp9EJOi4U1A8jW_ytwU5lLA3RCeb2YAejSnss9UIFaFXyDB5ADeQyv6JfkQQ0cESL9SOe3QS3ZXLo1vkKedYltf1pCCsonm3_bsbX_gkYcfI1XGgx__UNAvVWh2xK5sLxGBhd0tbytuUXU8tz1mC2FIj1QpC3vxel5nY1r9JxtttlVs6xTStO31_YZAsh_JdTlQS5BpwzR-ZYir14UswMYnjytVuICgFz5dLKCUyott7dJRQDOyPbz39nWwlN9mfDw2No6qHPg9w8SOILo8tZ-9Vz4Etd4XapxrW1XNb42w99L8EYZ9QJQ4aAMC17MT5WgsPCCibLeJrvJodgZko7TKX-VAFMSUtZ_7vwiJfUJmjP7aL2k3dufDlLA651vf1LD5PTtnCRyyfHY9wSPwAv84g-sEISK4DPTXQgDfS4Futwee5Io-b4gayW1ZNcaZHknNmbyyTAqHby6ATHLPga0qMTOdx2LHmeW8ghbrGOVJQtdueDyptiGs3Qaki3KV_Viz7MGNrcUg952ZMbnOuAoS9S-Z-Wk3HTbLETbrAM33ZMONmIQqpUFaV3ExpnGnbDkPWrIZw0zogvAx8PWGSOrAQwUilyaom-fh7yiblhVxRCQZ0Hv_iWGaYr_IFT0D1fH6vZwjjHU0EWVPc6IDOMTvylwxmwuQ1gCBEzXKrthohJofayF7torJGw_2tHp2dC6BuLtpuGt-lsK_KlvQwR_kCsZi4hg2idLsKaFyNsOj0oOkEwS7T5F-msY4xANT-34r_GYR6AmO60bIu_X20L3UMdTXhojOxf9lz3T31112ZSUU8g9ECQaDqt2yW9NhnAgcE0WWeQGS_5Gw0exbv4Ssdv9HMKY3N1Tv6vbtT-Bfw80dk8uZWb0yv-IRxzokECR8Qh9vVkNO2SwoShgJ4e4w0bsQIEnLStwgVcvVGQxxzLOS_RX6tgSd055sCGypVUqw9lcNzFioRE_0FZfXBB8F0qreYH4f1p1VRVF6DfcwGBqQr2dfGvik0RE6Gt9lLo4hztFEZC3kDK-g5B5nh6nsb4RqqSE_HL9XP2laT7ECqUoBSRi8lGWs943DnGRYv7Iv8DUgAYoYB6B4bjFKbR01LlPNLdNgHttmAU-mFhmcAbP_X3DGIL8A7CSwa5Ch-OYZEyXCRuWXSh7gejj1il6Zguv9tOO6zJMr8pdos_0YqovA7lN-_bsiSES5B-V9Vv94ZDCAsyIE28Bx3ZeD2HjBst_Y5yJk5OWDVxTYK9xdGIf1f8adLFJYjSrOoPRek48wwqi3SuCXZqVPDVMWsWL0Y62j57cDm4yqYV_Zy1gIAtrqz0veuNy-9v0zm4z7dRx-JcREq9zHwQrWL1M0m9TqdXHPbvmfS5vk27wHNcj_nUzJlCrKwY58JaQLj_lqDgnHCzZGAj3RNGGnnDEdEt7PYfSAeysCjYENuK1LL9EH34GvPzxigJVZubpRXvPJZA-dZuxxNm2l52zMhmrGjlJw2ZNgnNyOD0tyefvjP19orNiXwaqksaOV4iCCsU09jirPfE0bMsnl0m-gbqFKKiAwunqFVPFMo8gCnBinDeBYewbqivAPGHDU9zyKKkTdERbdIh-qPigh4POk8K_PO1Q6vdJJ6ahJsCo4fGG_n7t5l29lJbcVAvl78g2_Nv16d_6xIg2hA3ebO-3RAh9IdTM2nHhu9oSaY3E0B2K9wH9ql9B0wCZx39CJTuxi6xU1Om5KX8PdVNTya-YN0cxald_3PDz50INBVBfwrD2J6e5GXPEENDFUFfCW9FUyuPhrd32ZZfVJXFxvRke92J__1mfz_3WbmnwD87VcoQ2q9EDeQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a5e55edf408.51647602','','','2025-04-24 15:52:53','2025-04-24 15:52:53','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a5e55edf408.51647602',0,'cd-form-entry','',0),(43057,0,'2025-04-24 19:52:22','2025-04-24 19:52:22','{\"firstname\":\"Louis\",\"lastname\":\"Piper\",\"email\":\"gwp1969@outlook.com\",\"contactnumber\":\"07960604662\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA40WH21J6lvCqbVggb8ONtKNtlcIkS8lTiuzJqCFtlwlB-AlwyuRNsIEkFvOXoAkgn-bX-mi_7nUkO2lY1W3Z_YEZYfB1GGAduUPbOx9d_nxW-tK0opD_-4U3xBn0_cPE-JuKNxVE_WAo_x16FGPc0MazBoQYIMrc22xdRSEyyXGpNSNXgYq_OtPfNhGuskYgegZUzVFLAjEFHi8EG8dt0mdoBZC0BRrU1FqCzRSUqKcg-jv3_Z49vrTQFxGOWE5IK18H0BU8Q0sRjgKvcHTNK3uUNaIg4uX8kW5J2Q7-ks4_oamGRE19uXCpS159j7PlECyP3gg9u2d-Vtap6PUnWQ6_orNq0bT06kbtQQAhf5Ne2SD-VS_WbgRE_4AGpOtB-aBxwoxcfV0F3M1PsKWC6s8dZzuPocpxbeXJm_ctdEt80lC7gfO0QISCpAdKco8Wv0zG3mXruNhdJN3BpHML2hEOPeYVVR7zLD9jaXjJxEoGHrqG3By82AufFnJeUgk7o4wtuPEl4gzaead9-_5M2_vS85kGwgEPgEogf42lnyjCxqSvK-ncG-gORJAOsG6OBues1g-LR6-rkIySJ_JdbKN0yTbo0FHzdeSJHb8uvuDJ12cwh9j1Z9pPkgnaZ6Gt-6xxNkfmLrcydS_B21yxzHE6hdMwZoRH0MKV7a3CgSUs6dS62PckD038Z1q_Ajz0mbX4aC1yfjDtTSyGUZPNhrVBN_GB50XXIOv9f6SdKbLNp0b7_EF-XrT1yFd9KCzWYg5FB2YediIIXl37Sk37vSzpRX-6bkv6Jq7mVZGJ9xZTClEqN7tF9Sf4sKaJIa3BBdNoma6XhFagCQtceRomykxHrQu-za-dUDf7SiQILQqb3PF6PM7N4FRTqnbOczRqO07zJJCPCHKSH7Taji9rWX4PBX5ImyGjksC0kKDjp7EzsAdca1IDXOB9NrxA2Tfee3moFYoN1hsuYtjPJre1fnhZGYxDg3paL0mIG7VA75I44SPOousQV1Jn2ei5demUt8GWoK97drE_mv0KjznPS6CJxvrTOxDteP9ZZ_hG9OHvKuGLF8dV32-DI1qPR2OUYKUpdU5yGUusXItRq-6-uJRkbmjwmiKMZyP91hb5VP6xj5JWy350XvESyqR7qcc0Xn6Qhe9xsiAmbppde6r4m1JYMQUsu2xGCQd2etp25NswhsrCA6us3Ys9Bvahnuo7wfVMuOAaQuS4H-NiP9qaoUtTzcpsKiMYcXANOw_33kObMEdVo7Ome5gLvkx0rM23mWj4-4kY51Vo95xVkiIOCJZXjlPbQ3ArpLHLkmypd7i3SdrrxSFC5GfJzMi_zGynTp-I9ziCCVrTB2sR1ZIMFaWDUDcEZBqiUuke3LoX_AIuGBiFHhTKIkQ59jgTRyKTAImBABsp6i-FEGgJ0Wb-flZWQSQ7ea6fzdscSPSAgc0XIkcQPEBxy9ZtEAgObSJUY8v4JWAzrmigaOQcV_0T3R_Saw1_HxTmMBG4HIAiHU8iw-vJXbGivzbajKLwDYX2pOlCP7gaM9sukszTzAI7y4rfpuQU2rZxoEtfdDr3JTZtJ5aj-v5xeQBaFiuPTULjVw0XsfLoLFxhN9PwM6CtISAkLhBCb8QPZ6bvXsjP7Johf6WUr0G9oWZIuIwqFQTewW90S8s0ircd26LMA2G4aIAC56-cw8lAFR_4_3mrWKeUagB8dNMYEJwdznDNTPAlbCrhh1mh8snABa7R64N62lFqLy1vjVdJSE_b6ucqEdJFdKAa7r3k9Wt4aCRRLrFuETmW-wQHJ5S3GHd8IU8CZSQO-8GdsRnrL_03OaPOniDC6UbqA7UdnvTwAEA45j-OjRR2b38cUj2jqaPO-EKgNZCQpU5dfnt6pHgMQF3cIM1tiWN4tqcPhgoMkKl3IBSqoXRFvAbD_ohK3UgvMvlayJsFQ2P2bs1AJ5jgz8LsFVIUt4YCTJCxtkjP2NNSmA9N1_YxOpQdYuSmV0mhbjzPncgaPdUu8-Swt8aNyu4kQ_AZtr0wi2Vhx82QVlF_6jP5Z-izZmslGIdYYxHqKTt0qzun1IFW7J4X4fka9H8fu_skjkOAkSsKg3Ry_7z-DTy75a0Xi7Bhc8MfDyCnz3mdKE1yeq1ja7uasfbZFyLVVhdsy8qD1I_XPEgtaqkakxS5sUOKEX0BNZ8TJRMgtslym7LUqYFw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a967646f8b3.85558975','','','2025-04-24 19:52:22','2025-04-24 19:52:22','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680a967646f8b3.85558975',0,'cd-form-entry','',0),(43058,0,'2025-04-24 19:54:01','2025-04-24 19:54:01','{\"email\":\"gwp1969@outlook.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"Cm777qz\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7lLaObe754n4H-zBPQ2IKM6aUtVhLuQ_V5thcS5vsHMU5P-bUQiIKYg_8qErTGE7bSWtx9CfHE90vqF3J2wyP4d77fM-7d8Z2dnm8GSK8OLNQ9154b0h37nTFF_Hom-XZtg6XbfIwNP-fcVvpVYX-mZxQBIyag-OY93wJrA5IrC2CW9ogrnmmyw0K4FxF3lUc03JplWL5l9UHMS9tuvIQQxP_LOyKU-KJ1W381ZHrjTtAtlidLSDysbJBAOLP5NG0lU6G3qmhdRfynMsrirfJEXTu_a_txwmTv2E4V_EY8f08ubp9hgQQ-saOQrPM5Tw41bI1euZ81opt_rpcROiclZCg5HQ4CHlQRHzeUSf65lBajCh7gMg6QcwXbeO2UR4bLoN1l4exRi3tl2CI210oe0_JB_8ndD7En6bno3dw4_xj4F1p6ht5o55SIdF9XayT_J3UvmsGUeSY6mbRHdX5kWIUBwcGKzYmLE86L9mjxD9aVIK8vkZr2UvR2q7SM_rpcmfMA5vSx7el4OIUp4QKvjEjAuEG5bAz7tPWfX3ZVhTpLYRfGS10B124scmgsXnhx8wnsmLuNslyFsYh0fjuc8Xp9-yn51XWB0a5fPr3MYw0QPJjYgto3y2I-2i4wvt8D0y5-5_iKEi48Hn0ylCXK4nb0UK_sK0EXVxEIk2D3kNTDkY4GC6RUZWcuZCg1SlxdklNyRxT0F3xDdz2LjUsuy5kRedDpD7XXbog645oXxdgHNXS4YB4_zJaOUhybCha3UrUbLTABxR9tVB5oIBLc33k4cbiQC5aPT6RnOz8s6tLupJtlNF-dS4xB8SxoAZFz5eVs52yAthYUtecLbneUsWsjVpzULJrlxv3zxGw7CpCd8oEr-Uc2GM1s6ygJQHTV7CF9LAlOj-_j4AVk1XzwsdGaIW0PSNK8ne92dycxR9DkHQ4xV7VKmqEHr4GxSSF9uTm1tzU0AGQp2GvqNubi09i_zC5ZfvHjJYY6Rb50oRKwEureFkBbltDnsG6ssqYenpfBPK175WLBs_RKRoVrORkh7WNC7ZtM3DJ5KMwFrqeFLyYLFZVWnld-WTGizlqcP_8DSDNNOW2skbQNGyI_sB3WO5TemywEqjtiIQa90ABQOGIeHqpXcYp6H7aDG6UDHnH3mh9VuKZNxZ1Wn2KSDe585z05h6XcllcxR2PPON5mq4DOZhIKGqCZOJ85VvM92ll-vgleejl8M1JUGrdWpg1KRt5sFiqhgsz0rAGkCjzEPb44iv55xa1PwgMR8bdYkdl5cMLRJxN5KXblS7CQIaBTaGhwRdEs0wGgtAz6nqtAPWVs7q6seE16c_oPOaXu3_TyzD8g0m10KoYGjt56VdSrfsvSX7QonK3I-9A_tG38BaVZ49Fii0qF47GmYDQomktb587Zzzb7eH0NrH4mWjqD6IjGJF5oELMOzQ58DnaOLyRf5pv0sM_SNQltq_etXuLuH2B6mPt-GHbFrIZSdFTV5S8T0fMjcrc-ujvsNxsVvxobr8SlB2PPrHrc6T4WqtYU3lWEouNJ8oPcCNJ75DaZlfWsdMS_QTj_Gc43zsjN60BeJhT7YoE7OMsvkfx2cFrm7SN1-PiNN2AvgtLY1Qxxt5wGHg0tkGZ6uJu0R4Y9V3ZVL-F2Warzlj9cS_35zjJDHHS_5FxJY3YqlXgBP-t4dH2l8fw2ie5IPngaWW9No9tXYPqrr9b5UXc7FFzrBLGkA2D8nEvH1h0DbXK-OWulme5TnopMkatIaidojnR6w5yzyK3YG2-NgSUrqLnU38PNmxuli4wGg4o3oSBjBMRgi1vbtTAWnD2m2wHXDSyV7BcbjE-Gh08BckO7k6KGRBrSG9iNJgGspM0rxXxjT_YJ4wCz_IyYoqIOEodIhkqYDdd4TNepkNfs8_KU8zEH4Mz6x9eB8pqIviIFrl1MZdbNWOsYyNxmHgD6J0BXOUdJ1KnL5rOiv_IpEpf-VQ9oubgmB5PmAf9pr7bq9SjlDk5vWSWzcL_t5P7tcX84wjd4mqZvPzoJBRZ6qKrUzTdNduxbIFcwPiIcXjDOuwWixjvYpG892G2Jgvqdac1jKp8LvtbxyPmmA7KKf9XSNUDpNqRDZIsDPhi_8QMWZjhx-B_m6WcX1U-OFU-sW36k7vnQ2Jff9LKa--uo0Z-GXxIyOtPQR-Stb0MnsJrXCfUHs0XjSuu1AvGHx7B6KwDkqCpVBw4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"0\",\"employmentstatus\":\"5\",\"workindustry\":\"8\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680a96a0255d19-21134771','','','2025-04-24 19:54:01','2025-04-24 19:54:01','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43058',0,'cd-form-entry','',0),(43059,0,'2025-04-24 22:16:08','2025-04-24 22:16:08','{\"firstname\":\"Rose\",\"lastname\":\"Penfold\",\"email\":\"Rose8648@gmail.com\",\"contactnumber\":\"07701095653\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uZAC80RhZXSWleN5w2Ghw7q&amp;gclid=CjwKCAjwwqfABhBcEiwAZJjC3sya5CcJADucv-DA_lbvkMHsym1HzgKXKogVDh32u_gn1X7cWrYQZRoC2TcQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7amv3J510SXx6T2-NXuTPigZhUv-5mZSqw_iEKdUKN1qajN5_w7j-gjRD92tPZXDYDRftjKdsvL87gzv66pnve7pypR7lv8O9DvZz1qWeH2wnEV7jQ2VKH9b1F_z4LWPO0sgPB7pgpHSu6x4xsx-_8FIpLPKNUy-qnljspu4qahZUrmm6SjAZuY2yRIcIHCzyZre5F_UKwpXohIPx1nihsnBfktKf_XhMEqV8tw95x05p5KGCmjg1StVoB5rnB--MVmk07v18RU7SYBU1N4f2FR-DnUjDGHqIkcnnknEEVXobS1pCBfklFLqimVc24N65AiQvhFP6SjZv5mYoSfB9N2p633p7Ojcnp4RZAzc1-DZJTyqCeNcAjq-O8eBwhJAIRb_t1wFbidlnN8OxcajgsfkJxT8BUJIaz-MDNmtwTtfHnr-x2W-4JqKGa_BBrdo1I5FQxnFlj-lWy_TZvAmT2cOEEotj0wH8jt5_ftx6rRXHoNy4LyVL6BDgDNZAUFa61J0bL8qoGapys61PAwHAkKBsWRCEp_68GomppsgKgPRjGMj91fiSEwaFX1yIN9otSvzROmT941Hau_yBjLy0aN2Zz8P9ftVb3EOqNoh_hV9aRPUIDxem74piPsP2puMedmtsT8UivcPaotcb_-ypmqngcqh41Ee8i-ZEqFGIt8NmC1ugBt3PzlNkcOG8au8FItFzFJSYI7WPJt_WZJP4WGPw6OkRHeRVlIl5YgdX1MYvAAswW3TfFB5SHNAbL-g0sZtXGV2GcVTvTbnBy-fHTvisqucT0wKTH8eeUPXe-nHK_7bNRRr6pQs6vCD3MmypouRMy8xZtuG0akPJKW6GDTWspqXD53EBY4BRURd1IufJ0NqDd6NlBTvFU07SDf_NjBLrif209ruivfrtXgNSmoK1Wj6X-HOHFYfVVUUHNaIx3SCs-Ej0AdWQ2q9flhe6gRqx2wvOsG43yokZ3FeLBWukdaoesbZcrRUi36N6UNZU1WRKh469-VDTq7p5DfGZHK4ZPvVm-XtDaaoVyj1RMP7Gcjt8oCmDKCW7_L3rj-PZTvNEA4EQrewz3pfpmkeo5HDDsP-kF_zPqUX5GeaXqKdyE6sQaWjm3ZtnD6IyCj0oSoxoJ6UCZBsTC8jesjrwZIXiIPU-79f5_nF_YehdzRRccE3qFidVLQmU9oimIW1HnM3eyp5VmPGV8GKDsOyR9zfla6V5MzzVlyE5hI4NQWyA7EBxULDJB-aUTobRv346sjeTYAsxq2DABOxajWHXA7DkclugPyRydY1aqWx5sIcPbQv5uKyHH1WYHmOa-QoR7nUzx_ED-3wvbBJ7k025iaSZjCgnUa6Zj1tiVwT-KlZp-q_rZ2UpieNLZj7jq_zjmY2Y84TSgwlEUq7965ffRXq-2FWtNJEsocG6eN_GQCr-JD8Y9xsAG-b5cDJnwvrebBJnQ_BeLysuVzCxUz8a_40nwrH7Ic-uykqioyuL2-e3T7aUBGgbAeVGlTIv0R2Qqxx9TEPb7VFeXs3I8WclFadBz5vi4gGJahrd-ATLO3Rii0t_OwMI-FvimnlMh4nHc5YuGqziqQMdUsCwUt7EG-alaDOdZ4asVzx2e2ABQyH2SsPxUOvU-O5V1pcXmcphMYS3cp2I41lkVPBdXEt8lr6Atavf0IIWm1iKgGpuT-2E7bvhCW6Cu-4d6chcYcq61gSWpSip8LHyjwej3Ts0ljNNKGXt2jXDNuMfmfkKQEJepXXjzHJfS0O6gHYXbQFxo_NQe5IJ3bGywC3kCN_pjjbe2dbE0ndWFqM9BDMylq_eiUNhsYhTsNddz-vau-JdVE_S_JkJysqMe6ntO0aI_ftdeY-afKgVRo1FuEAVxXQ5BvqGKXQSHXDAMj3wy5iy-L3Ndmha2_bp6wHhT_2BE8BTe3OYk3lCCSyv2WPVTpxOXEyn9NjrnFpfN_kiwUV-VELv_G-g8LiQwgzmcPIGOuKleSh9Gxhqz6rjUgX9FS12p37KCiKCO5IC7s01MLJEAj5LEwvNP6IpXzAGTEB9lK_tos6HflDisqIWI5R1rYZhE8wfzkbS9A8NhFkbiFDBw8Id6uUt5eiqu0BlXGcPgVCqD0KasuoWto-2YDsP-RzdBreKVQffeZd5Xp_MnY6U9Wh4BD4gSb66plnQ0U6X7eZTUHJC73tJBiGPkznRb-U3tj3wIbG7DCRldRs_lDpg8KUAlGpzvUJL73b2T2H335jXGOKcYiyIJK0qVlpDMcQ-o7QKmigIX7gRAVampOPJhPPAm_JAxu8q4zoZABxKMdiL4ixJnRV4jTA4eeVmYzptUxPdqE3U9yDgbw4BZd8p5y3qB4GRRO8A70wPzyNdRUw3T\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680ab82880d6f1.79277417','','','2025-04-24 22:16:08','2025-04-24 22:16:08','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680ab82880d6f1.79277417',0,'cd-form-entry','',0),(43060,0,'2025-04-24 22:17:34','0000-00-00 00:00:00','{\"email\":\"Rose8648@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"W14\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uZAC80RhZXSWleN5w2Ghw7q&amp;gclid=CjwKCAjwwqfABhBcEiwAZJjC3sya5CcJADucv-DA_lbvkMHsym1HzgKXKogVDh32u_gn1X7cWrYQZRoC2TcQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA50REny9cmCbfK_UaX_-losW2Cs6ULX6rNe5bgbW-pTHBMLo9-fwzS5Mz4wegcIGqgHIYo6k95YfVs02V7Mf0hIA4mrVAMMmzc3Vi_0vT4_TWzfqGcMDUmV3z9LhFv7BTrGlKlpe7AZYFJnQGN1Nh2sUaAqmfDKAoRbTVIxMatieVvKM8CwuULNKgyhDS3Hh7LMNge5dRMCBm0u04ZgyokJQqJZ1d4jYtW_cf8GUEpKNS7cY8tIsX927I_q82GmrxLQN2k6JbF0l3zSszq_Q-FT8PR-IzPZMhWU2SaGA5q90bZNDMRHxpRrfVWjCMh-eHlocTSJ4_CKAz2GVh25VnF4sl2q132YWMjXfSRRM3nm-nM2P1VImpnAPsrX878OaIBB5JxUsiEnsYy2HenGgrtf_Hzq3o6T0S6eVfUbUbwx_VamCPiK5tejf71vc-_EU-U6-IZv_KFjDwvI4eNmBuCRTZyh4d45E0EIPbpoPcD8FmrGdkDxmG6gXZyb0-iZPoK1kRpMZikGaBXFDWGMr05RKA_q__a3_v8LKYVY3eTp8T7ZJT5YAHmNEpksjhFIF6l0WKuk0pVyPaBjGG2MeSojhD8Wje65xmaH0aYQIaIcfO5VTj3J2FLcDfMKAaSvsuqgwkS2lglhEellZHccxN_2WMRC1F5nlsMF4oUTp0x-ixkvi29xEy38SJDtnhKgASRgkPYCWf198BraIQf5C89TK-i4knP4UhdCVo_OzDpoMG3deIrCMsFOHHlYISlPPpp3A15CVbHz7PkbpvV9EOjmOuhbVt3QirGCYQSKpLbSO0HD7vTctw3s6S2g8vvGnCmC6M1TnYzxzOqWPuFEdPXjsMozOpEC6p7MYSOe5lIwhPcHHbcIZx4g4NrM3gFPCV7u_m4qAo0XbUcUovS5FRZof8CY_Nrrp4WEXQD_7lPvxJPnGyoa-wLBvzVtu_9_HZ6Ym2lf5UXYpCC9TcGzw3mMec2wRMzz_pGzrQC_zNehZ5Rz9ndsj6mzjnjlf9f-odRgCiSAcXr2npHriIHWQDnjcoloBa8ia2_WKaF8Y7Zfcn13dAKnN8j-bo8Ql8XyrrAMiDKMje8OIu6UnHWYYabq80pQMBRCx46vbnsgDTyNA1VZTRd5BK-0MBPc2KPWbA7esk0tTUXPGxQg11QzXGhOTzXoPJIJ3TDWpb3IS-heGSV5ZCnuj2Hq79irJa23tpbgLctOlHNggDaX20_hHGIuNtLq6H1NSUGx5hMuSVBk-w6vUDvtDkoSmjwkRLzEphJ0DduRzAlJGQBkdyRQXRTZ8x5CGPH2Q3YOp01wzQNQjHSFhZeUN15NSAew5Awt6wg0cg1PxrCeUSkYiAMHitaMy9KWoRfei_auOF61PcuwNQyGYl1W9JJRTrjKSqXUqC8wm293tCD9FeBYI_9cC6be4S_BGOXjA6654-H2LCMwICzp9GCYEBV5-GgZWsDohijp-8_lAwz4hZtFbk4xHtkg-mQxFylUxrKGmDvnQuxgH6lyVc4bQ7PmSf841tfq9YTeoIY32cflNjDbvbVkmNv4fYwpuR-3vh88c1aPrDvtwSDwGjWqWFvFfrQkfQZlDUUfkO88T4TQGCE9Vq_-nh7UIlk0kr5FyrfN9vnPdVCZNIqnVwfEyxvRKuV6W1oNpkDYGweDuIeNmsuMxPCjk3ODsSyxIFSd6yHcwIqm5t5hHwLjkcz90M5Jw_pdxNlWpJmfxaS6Pe-LOIuReEtgu8ErSU2Qepd8RlU-vumyMaQPSIDMhT1aDdMSXdcvRvwvkk1WRH7N3Prd1D21oor24xJugNMnTloBRBSQiNNeMcmoHY24s_-jDDXFulUhFpd_Cwfr9k-a2QB9WEpd05fY6B1GbrxETsugtv3bKMOGIigC0O_nOi58Txwg0U065iEzSBAajVOcWCfrzyL7aOGdPjkctoJSYh9e4SZZQJNFBL5M558LVr1dxHtce6jsmFCnOoSPozZdDTIjQdpVQiPqyamKdbcC69sNq_XCqBxU_kL95EvRlIzE_A5YmWOGvx3JwpUYwIcwwWlE5S-1pcTOKjKGH4CN6ln9dHADY39XAYD-hGmcIO-4Ow53UCovEpVc232l5HYX_ErMm8bFR1Rd-SNJP8C-9D-y9FLEcQElaRtzbBaypNb_4uiYns39DZm3XDIIbJvel68B7W7jpd5PBXJ7I-d7qFi9hu-YHA53YTvL58iOgcZlYCk-fD29ivVmJrTpbvZvHDX0CznDqOIDjwr1SesdpJ8HEw6Tuook5wmCpzhd_bFsHx3HtBIHL3KP7G0IsiuSw_ojGwYbKh6LDZjxmVfS7Xo-jU-ET1OYXhVpSKZTL1LQM1TngHw87SKniKDvxUu9\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-680ab87ea7d9a8-79453736','','','2025-04-24 22:17:34','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43060',0,'cd-form-entry','',0),(43061,0,'2025-04-24 22:32:57','2025-04-24 22:32:57','{\"firstname\":\"Rose\",\"lastname\":\"Penfold\",\"email\":\"rose8648@gmail.com\",\"contactnumber\":\"07701095693\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uZAC80RhZXSWleN5w2Ghw7q&amp;gclid=CjwKCAjwwqfABhBcEiwAZJjC3sya5CcJADucv-DA_lbvkMHsym1HzgKXKogVDh32u_gn1X7cWrYQZRoC2TcQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5t5SCS77CYQ2j3ecZ4c8vp49SqsOJEE4J7lY-nlS6yc1qgxAadGzPopxefeBwhZq4zK_uUvQWOgIOON_L_p9oxbrUn1iag-wMV8Md5DltTw6xxVIHRv7wKmPETDp1uiE1b63jQ2tcwmdr2NbajAJbc_K-qURrtAOLpYcZo9SFBRdVIO8LcrzuU-1MO5dILgiqooocYxsjSZmQkG25QlGvFpSWMFfjE8WU4NUoYyoW6ZNX30jzY-uCjZp6WblGTbK8nVsfKNBCKzgFoKUkKT8IrBAhUZpBvRxd3VlCGAEJRmJxTCP8CFF9lEDxNh-mbBnky8sQIZWajEL18_K4DfBe1Nm0D-P_ZvAoJQCR5skzAQf3VrivSRMR6qtXEDMT4gUCrSWfy1HRnLhBP9on-xMzTjQUFz5w0F_8yTuvFi85pV4crLrLEvdB9gA518vW8qfaormFfcGrMfjhHl6IVhMIlsX96RRVQe6eczZX5_emmCnV-pcuhdKHkghEZdcSp4DAnBoyTQOFw_4NQlh2txClKcoGSJlEcw_DQOs8PeT2yhs9vT8X6may7gfS5oqrNZzb4Ljf12vXPPqk6S7_aJDTik0DMBtbVD1rvoiU42YpWWgFglWswkG1F6GnxYPljfoJe7YyBOkyWn6XAmXKI5KiTbpUpXr4YevhRd5V77NLBJ7Qczboh5ieM9jRk2pCGSwp5EF3atC6DiBvqVO6-YTxvPkgavpjZlHHtt82QbjI7cTNpi9PbJ62y9p3MprqUUQ15nadCxvZO0wS6L7u6EGvw3qC4tM8HvXr2_TBEYvrDaZweY_w7lut_FnI7SWp7uunzYCtCXAu_eFDjZGybqupEuv7l_iOZcuLGlhEdGs1UWWG00vmTwjV2HOpQCUBKo1kGgESwhJXtAGuod4Dcny-S_CJ7NwvVRjwAbUz2m4VYPss3-Qrbgc_TFIRLhRx8Zw8CIaoHiYjxwtCM4v5LLRP31QGrs0NDGoYN8fo7hO9SMco3_Z2AlHcHM_zeT4e330Exy8ApYqITQ1mMfHY19sdj2WRYd8JUBblff2wxW2zPq6uOAFiMWaL7Zx7PSSxEClFej78QWiYDileMYGZ4K6xoS5B6p-AJDg0BcVwQwAIa0qxLzT0uoXNYO-T60kdApMeguzDAYnWMNAhCujlju6OPl8T32gJXIdoKtm_W-rpqR56iJ7-5MvZG2Ep9PySzo97OP5ZFP_karX0mbxnfNjdKzNX0k7xyfB5xET8nPNh2N0cxN_zCpe6ltxF5RvfE70oD_fn0MpAFK8NAURf5ZLFMumu5uPsmDdo5PNiq2_VFIEGNQSEfvYVQ4g7GWIi4q9TWTrxLgVYG8Mk8Z1Fq0ipSDCiuIoFUbuYBzgDhkOl5f1_ngX7InFr0jW5hW9LJNdFb6ji0km7UlZEgWQgabzgNbJv0ADVxx4LIB9ZeSWw1WyyLHg7qznPZr64Gpkx9Xj_WvYe6YQlvGO26X2jTCD8cXYg9NDQOILiN46_MM-bpr-gKuSxPT0WMqgqIF1iLr9m6RjX-59HMGorA1y5pWPWxNOJoWnhxczx3LflcUxArB7mPzPGeuZ3aF93EuxEIAXuezBRoU1q9EMDNxLkeJS0q3H9rtVvwOLxD_I-p063KuwG-yR7jXlnoiKsFy-Qj5oGWC2ydWsWHyaSZU9WaPjWdfHR_RSuyMuDRi1vB4umiXMrUxhrmpPOpmE5i6Rjpd5k4B0ozecV4moEU-qYMaSf1K7yQHYch8tRmOyUPTgVyt0Ips7zmgYWTmlCx8NXqRxTIaS9aLJzu6XXpQx9dua9DenMirtV83Izx53IHBEgXnvFNwT98ddMvdI8Mz8WLILdduY3uNVDQXxr0HBXuP6TU1LkVfyua3AtbOa3XqEtxcSt1kwXmlM1M4n-wmZSGooV3tXIHOVwlse_rm1qNkFtWpH06LAdSSIVxzEIupaakJ8bJ1XgLNlcaFGPi6gnV8ZLAbTd2WYZJDF5p9RafkwQwaVA1VlkkhIBa1rDfojCdiDVqijGfUltNmEaV52INGswtx-6lveNjsVaRjOqMC5XsPQBiNpZ8WMtavaqR-wC_jSKuD1WdrHHDHzX21PuSyTUZLDkK_l34ZMDQ1qsecioVLRJZNEICv6buEGzoaohlE0RCDiUJCKDKjLQOQeReCa53hllqjD6qjcPk1lhHGn11m0G_6dVsxk7SYP9QMhbzlonc0ZTni5sL9U_ZSsMXN1OTA-cdj9TnH64SsM874YzqQDaOFm2XzqpaG42YH4eSNryitkENQpJDMEpOagDLpY1nyY4XzuTkNLlxEf--uhiEcoykTYv_BwVhRtl6diEZsqEaKe_sEDPSnzatCLRy-W7kKcXB\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680abc19d3ece5.74925663','','','2025-04-24 22:32:57','2025-04-24 22:32:57','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680abc19d3ece5.74925663',0,'cd-form-entry','',0),(43062,0,'2025-04-25 00:06:23','2025-04-25 00:06:23','{\"firstname\":\"Qarib\",\"lastname\":\"Khan\",\"email\":\"qakhan30795@gmail.com\",\"contactnumber\":\"07534087990\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/?gad_source=1&amp;gclid=CjwKCAjwwqfABhBcEiwAZJjC3pIq_DcuTlrPORwDAzLMceR1hsReLa04pll1PZHqvUqkLAXGPvwBoRoCCHoQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6x8PmjJHRrBW4ytGwbtkcTUuZhm0LsanEhiTrM8FTnXLYbbTtMoKtWKjQWygVdLMb9Bl9INvmkWeCHV4Apr76qMhE_mnfF0sZhNODZ3wggMJF1vvGzUM-fdl4XClX5KZvd1s3NYERPb2Km0YyowLtyBSooJ2OdhycU_PUb6fopkaaOq5VVZzGdzi8OWRDFMOBV16vfeJ6sY-HHU_ny1XlL7UWWjGgyX5HuZLoqWzH3mYInMFcFjRNbM26Jpm9_zQC4FxXlcMw8zteSOHx6BS8_QyF2XBHP3r7BoAuqtCgl9AeO0AHjXoZTF6k_Ex8Anjv01Tx1zQPmFLzdVGZkNIFCJGtffKqUNLPAhppHPOmXY0T7_YNXDIU1iaThFlw2IEY2UFMefmkJuu1V1IMYzpI6GTdRuh5x4MA_21onBE053GovKV0-stVFzht6NMgUO_otp7K4nh7blVa5wCXTU0Lf2J4XH7UfPc1tmSOlFtUXpgSUejLoMRCz0y-vMS9FRc6aFKnzY1qUfM7QPl9pzTNYfvi8ZA40HLNtp1BWkZ0ftBDqJcgpPm7ygx2m04JV-ox-cdIWqn7wGCPd1M9f4bROxwgqFamIT0AFgTvv2nZ9cWNtDXDp_03It89DvUhYZF-c5Cf6VPd65JPIutqgmoBzsfz3MwwK58IRrElOOva64nIp6JlWA4vIiGEBiNZpjhH4tJO4w3rK7S00PdvAmZr9Qo0CQhWhhQTlIbnXAepAPC45XaAAwbI46QAJNCUnuxNG53855km70rTzGve5qKbf6G--nyWjo9QqzdYHGezZz4u3iAwqH4W0a_TJwtZ_twn0W9IgAmL21oLG_j4sMpdcpk7eNeh8I1DNdHJYJBmL5y35sqC5_KGbv151sutCDsY-81og3mEH-VHMdtag-IbO7S_bKDpkZxszsTJBzNHoT43lT8JdPmojN3A3rseBYFZ7M3AVGt8ttFt6A8q6N9vIiTVwCbdTiagbiSaDwzjvpYxjZJZNL9BXUBTXBd82brHTKXebpxVTUp6N7rhYzHvt_rKbhg7jtPVR9s8EoOGcgekl79eyW1qoIy1vhIDhEbRn8ZRiWaAjF2RWmQcmP-FNMkZffnetrBYQeL9b3SAWKZssM3Md9FaD1HyschZeBgaQzZN_DV_WHEQq0D342KEsKMIgjiqaLd5c_zZ7YhOXer0e8PK50oE5d98jPAnCN4qmUO2mf6c4B2wb8qY-7wK4LeOaKnzwVPy-UPCoufGjH_vdFNM80rPrRrD81qhWKb7PzZYQA5nS-U_SyVC6GW_3KGhvFKxltbd7l9dISGohCmy0XIowi6xhRIxIHJ49oXpv6hZCOKoe35d9814DXokM3Gb0sAoRNfSwWoDr_6s4VEEZZlpY0jsoS38QVSI90wCYmcSkmgu2eNsGtLkwhNmqvjWvG6t38itEsnr8TixWPjhO0iHVr9RGkqe3hFuStytDPhaAiPlf1H--gsZIRc2--YwGZtviJzfvlCH7auDUMf8RWAZuTfLQ7lyel9cht1a_Ft8BBYAHzWRdAPqvX0J0ihDvepu9oPRYXcYLIwiXe-mQsYxv4LVsYF9_oyz0p_b9d36d8UeUdoD-_ppgpk9xOw3Z9hBhqBBsPuWXjoOuC5ONxvclGQzsetGrRR9VcbEwABwAC1R4O0-f_1UVg0sWXtsWa6zBp_r7NUYTKW8VA96-sPG4T_x_SA7Ait8HI_Xf3nSGfnGJ7sjOVWCX9r4o0bbIV3x8X99FNRniTdNcNAx_dO5pnEkORz_rttzrxNhEbCtHxdatg4iBgkxDTOpBhtgsyUx62bTN2hFx-mNsxc3oVfPy35umeXMZMVQhcMdKDz94mrJ1wAo86x5apqwtrgCn3pSjRf0g-NxQD0f1d2gaHItxGfneB6a9c8lkEan7ki_QQPu_nAZLvr4nC7tDOQVPHyzCAU3dC3rVHavDcTnEE2ai5QrRUi0uRlXOILwVszosLcbyCU0WyBcrSPHulOg_klBX-5HqEB8nz8rT8mOJ7LtyqG1C_J-r69a-yiJhwi4h\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680ad1ff0013c5.53694080','','','2025-04-25 00:06:23','2025-04-25 00:06:23','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680ad1ff0013c5.53694080',0,'cd-form-entry','',0),(43063,0,'2025-04-25 01:14:11','2025-04-25 01:14:11','{\"firstname\":\"Christian\",\"lastname\":\"rogers\",\"email\":\"rodge77@hotmail.co.uk\",\"contactnumber\":\"07756753875\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sB8VyCYi-RsZWIwjRJuh8sS&amp;gclid=CjwKCAjwwqfABhBcEiwAZJjC3g5Z-q-SBpys9r3ZbIvP2tbDS1dW00Rzu8y6qT5YXO15pLn9x390zhoCMwYQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA44jdPiwH6UboRcEbQICcA_RR35zSaYxAKifol0Irn-c9XEv9OnfqnobPG8WWGL7PiCwp9Jgf40ieph_ZCk9dABsiIxBKGlgx2P0znsRWHtHILpijHDPgUtgxxysDaXJpWNIzrj83GWYXVYeYBUXlXO4JAwk6Oqj6luacebP8dMmzTjwK7CE3xXnrT42MkaZDNn4nqbrCpUSq8QwVwO6m3tbtEOodx7K5rTl890rAWWcsBdE7NLJjTVR1zk2ae-lSXGIn4qAz01dwuHK0xMKwF_vvUiwANiprdIXYHMqy6IhnAlWQezaPTU9c18KnT9yQhI4zTwmdXF28KPmUmnzri7EitAtRnatM6gk7V3XVtD-O_kPJv7yVLr6zwAdUjQd-eZDNNmSjZK3FRmrr3VMKxkZ-yMUWFkBRpCHfP0W81q1d6egchj-vrR_O-5_RKrIIZJWWEbFOQShnIFP-J_Ur_d_5ARBl7wVbkSsKHCXYspWkrqAIBveucpJc7UK1CbkStm2j3-uh1tw777cn-aQkVNqfskwEouAXmkkS08K5hBHiF2nwVMLf66Ymr40SQHH1CMFYlIA5mrwvBusRxnzJ1dxuHnhMEolncAwxllAWdEN5QNepfzskVk8rH2pBNNYuwoaArQaSC0oTCo_EcTGW0iuat7vu3QUAhH876hkjT0CSIbn_e-tjk8p9p16hjJsA_RkBlnZj3UersQUshUfXJbM1yh1T6XPg9rZQ83t0tCRrsltj3jkQN7WndBImwUpo8Bbp8fHYM4EzOfsjXqPRFwNkU5h2Z4ng8uc2f5pjxBvhCw74KsD0PCrmeNekKK012xWH8sDvwyvKUByl0ck4JBosGKvlM9CrmO5NYlm_659Jgh8xwQUWMXX23uRxhSoGC-fy-wOsTK7j3kxRY4aXYSpczM34A39zPN_SiS0dqNgmY3FFPid1mqbR2fVyT9FcCYCoKNobi_Rs1IYVo0RAHQWTPRfAiFRpTvAJoBa3QpQSWaz_pGbtf-BGvYzE6HI6PG4GqV7446RYfxNlF6AXjA1G-E4KEN1F-RU5tZOChfOGWnzLcAg0ObatSIBQPYsOmHorDW4jgfRI-_NV-KX54LiJ2kgQeqVLs7AU2p2L8UWYBik40cKdrtl_2I1VNpn7BuP3KWFENkPjGhX5w4MJ0kRBZFBCCYvoSHFX3O5BqzMyyiTgAYXdqYzknfasE6BRjbH7HImcaSYZunt-Vam1ZuZo_bVKAb9y0L_1KPpVEPY9T07qJToCiBkdV89sg33PlNhGGO4vuweKV5p5w5167YbKGCyOQC4yCOGGhwTybYuwHiPNW5e9AwX_vW8qYwIuTUXBPTIUl9jxzdkZc68TIu0KBaKnGMXxlqnqtJMZdPsUVFdNPLoO7B7ZXp5yNO_jCiu6xHRlku_q7uALoXZj-xap5Gy3V6qCJdTiwHICMQuHfJbTkoqihrBbVUADTR4b76X5Wvw0dJd1zcc6GNqtHeceyB3RTQDr94vrp0jk07ygMtrncsd5LO1dx6SO6kFuly0D6CUvlo7JCu1Ms4TXNOQrUOM9Gb0TIfWYust0m4i9yehBTk2gsjwkxUl9slv5XA_-g3rby78e7uNKShS_Z06I7jsuuzZ31O2CubtlrV9L4Vkw62iMlheNgZICcPNK9Y2xt8A62vYVeTO0ex9SUIdCCzfvDdyB3DMocicjtEwWOtKx3DWR8URarDUvkO73NYQqbu1Zy8jAu7QV3zfiLeOo9qFTXq4yy0cuEeMGiKfT-2Pb-YN0nq8iEAEvsbbM1C5Em7PbUYRMBHw89PEf9XAcUAxzo5mrI-_Vcxfsv1D1i-auENdaBTe_ZLthNbl8Ofez2Og82bfQWc__hBAYEGERjiOMRTFPy3QQ1pDcopP5nqGV29FUtLAPvlCXwobWN6-qyohSFoesgrUFjdZn5hQie3NddGXlrK7mHvdrFlngIKx4iB6_yHfx3IXq8q9z7IZsBQh8lxv5vSd8HzDWUde9m865bzZtV33TtTTDu5g1gTiQxZo1bU53SGDKVyFZRuIhI5E_NvLWqTNtquA4LCUIoIICSXO8IjkY8YlulYWEA2ijlRpb9qQ4N5hugpH-eOsSfRRod7XdeyfoBHuxaVEB_ltxWXFjxtiopKGsOrd4Q7eaf15gNElo58LIy1Z9NmtoRtfQ4vm3nWppRXZUkaKKqx0xWk40FUVVtpi8IAg6oHM9yqATObBH6HDd2gM7j0HrficR1O2L5jW_Md0_N0siJ9BX-bxszZlHd3Zq022xI-tmwii4gJJ8mzIE-II3xcPZIxbZSVFJsxmL7KHj9NiL5O01JnQcxe8RZ49NN6EzLHAqY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680ae1e3e05240.29724994','','','2025-04-25 01:14:11','2025-04-25 01:14:11','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680ae1e3e05240.29724994',0,'cd-form-entry','',0),(43064,0,'2025-04-25 06:43:33','2025-04-25 06:43:33','{\"firstname\":\"Rose\",\"lastname\":\"Penfold\",\"email\":\"rose8648@gmail.com\",\"contactnumber\":\"07701095693\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sB8VyCYi-RsZWIwjRJuh8sS\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA64NQ4eOkjn4kMyMiIOlI92G3BYnfe8YIibwgUiUtMkGsiXI2r0JSFovxf8DFdTm4EWhKzIdEplFwVCO0zBQkTelenoxN4y3hNJmKKs_gPCrclJRbWvaIpgEo-3cIM8jXzsmmeTjGZgBsri_ow0oaMQwVMuj4ITcm-ZMyr17yljzZY_F7nrMRy_tpy9JLtTTlsx-Q45nVnyt9D5fDR5n5hpNxNA765uGbF344ZYTeMGhm2DtPtrnxfDL8OZnH_2-eFjkSk5WWA33tKNKA5deCbuCcxtSUmhUPa2VRd6p7K-DDc6oGUQK9zdFya7z8fEF2vYAFg0PDbfMiFnLLg-yNyEStuzzi5aP6Nb5jO1FUMFXH0eJUILLvp5R67Axs6RH1_ZmxPpi1M_Gpt2vgMBhALyAius6oYExjfSzOaNt61mVHXA6DL31EFJ2kQNuObmNQI2_9zMe9La-of7cCINr0lMSo5EEs603YZKfpWHPegmM8j1Xs43vumjPVJE3D3YG9oaSUC34SqDbONPSeOEUsL3hPEw4yg3W3RAwLHKu5dwIqxI_exVfb_X1-dja-kQwRD7OA4wSKL-H_EBc4sBNexjJKKOp9x_ij6qesyfpn6Iv-_T6Thp4OcDGrrRlDOTSA9D3-Ahr040_b0JQYSZ5oIFazW_fB0Wly7C_KnnjlVmommAj8UnPeGh4Fwxlohh_9MwpGYW43yvCElXdmVK7GcoHpgctOL2k-wi2KA2TeF6jOP9Q7-Bf40I2Qg9lPf2clv1aVG6MvV84gb8L8IxpHKfBVgde-qYEqLPNuH951p389DHNtntdK0njYa4AUG47dWnJXhJTAJ8kQ3IBl5oN2319b-7Py2Ks97bir4vRt2kQahNvQl9I3eMJJ1r5voNnL8j7WqVUrlvhLDg3EmcXNbKIRkr2AJeWpWKf6fLsXaAwFgUtNzT9hSrXrvTN_OqF3A_RetvKjXQrMRB5gLCmIsCD5jFK52ogSZzmjekg6oxUiaS5R4ZaYSO6iN0HJc5aMwfGW0cvtFB0BBGjaTlOuH0Xh446ggddOKaJMMTe_CvN9zktjc7R_m1Dnrsv8onMQVr0_gKOapE6xDU-ByppmKp_ua8YRYvtqpSAhmNP3ss9DwtZsjSypRNd4R2JxU_yevWCN1XGIhdrqSBDyvcXOFxsQhFS4-Gm0BgumyC2ztfEJyddELGlNGj8rjEeJ5I_g38RGxj10fgsddqDdvaRffvMte2Ui5Yf6eFm7CT7GYdCBDsMyMKbqFW2C120fBDF3qJgfHwwDpLauma_HAbemB_lpog_PWnMfLy86BZjMssZWjPAI-rPntiaVcSvP-_BIrfPC81d0ek6I9wbUjEyNg2SRv3yY81LphmrDa4P56fQRD0t_VNSYLq4W28zM2cbvJ673XdlmhFRocPoKy4ZJKDi9W4Q7pMLE05h478UjqU9v_l8OQ8AyAu7ieCFfyGDrZHW8uoFLE1mU_8bCaiPLmRc3MmLp87JCMQIin490IzZOvGlDGJ20bwmS4T1mQvnu_fS4rClugxIXJ0--D2_kzBnRABXdIqECdr1nKhB3GIaxHYHSyCvMBu4mxEtneQ8dCSkeItgUKQWWdsSeTTIKvDZNubrV4OY4fyvm3Nqu3I5pf1IhwEVOwJH4GDNUzpC1CScR1J5luEkGRDVrs3KUgvO90Fg6agn2ql7MKzJPW4xiQXza0zoD2OJhwm2PZd169sTY7Ld1fIPqgLLQS4A-oM0qFaJvJLLUxhakCl6Fz0Jqvw5Wq51S5BaZSb7EeW0AxuMUE0o0a65vQAHQG5Am48B24525nl2ixUZ42vrGy3yu3PlXXIJ-8fqrx13C6fCtNi3yPQRBnZBSbNVnRARVDCJfLsuJBo1UJGMIXkeX4c_qR_1g2IUTWFLGtWYjx6gl04Pq7EdTNuQ-OqumEIhc2Q59XcFOLbO2pDf7oY1vOqfuVPKPuiXHh3PNTrb7p-xHNyJpl3CxuZW4wNKsBDHt6BADQnK8Y1FdpV5yXD_QnKJlAeACnQG7Kcyln-esL4GawA_BCetOdADMhUPhHoaxgYjb8_GbRwldbnqJ11kFp_JgIqMvdpFYTfXQ2rknr3VYrioOiAf0zF0F75yE3qW266OomY1EPB0cLG55OE0w2pwmvy4-ebzLpP95Xw0QTkKuy_2XyM\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680b2f159dbec7.26616316','','','2025-04-25 06:43:33','2025-04-25 06:43:33','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680b2f159dbec7.26616316',0,'cd-form-entry','',0),(43065,0,'2025-04-25 06:44:38','2025-04-25 06:44:38','{\"email\":\"rose8648@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"W14\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sB8VyCYi-RsZWIwjRJuh8sS\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5-z0OcpU_V4_x3zxgcoIa9EJw9jyfl5DjE1zscFaSCvJYlkSTClysiAUp7zF2uClvBTfc9MmfObh1zj1qFYBfKl4MTFxGJLd73dULRRxnJdkJUh_0-MTr3ODtOBjBl6HMiJNQmqknnkdosF9UQpHf6PE4FrukYJ1y3Y95ccUXmPd3vlngwid-adSmUCDp_cFKWDaKxBGUqxOwJOWPR8xb7Zz8hmHdCNbw-KZbN-uLJGC1IgjfJhemTfKP3Cx90zul1MiB9gRA520HQ3y17Qkc-oAYp1780F1lFnyW03Z4igc7ADuKJB4BWezXgUqgbB9mIPMBwasUZldrnJHqbthbCtVaVnAtUewfh-VdJXRGKODtMnm0-9w2P4CUvRLpjlMkZlC-1lXJQIKhHefYqj9-oYp9hiPZ8dqlSDXz95HMTy3nzDOtxHlBCG2J4BCThb_dIGciZj_GR_I-ueaAr_2kwt5HypZct4b4uK9etyESwlcO-RmEg9EJ-J9UAZFzdsIDQA_iwqop7Owud9GwSaiTGLKumcC1O9fQnB5FNJZBBaP18-ezgqLPGNjd3LNeVx7Avx9UYzJpOf-LILG7KHBYreC0tDcO3LbXq8DEHGyzqHhmy7chL1ydTQzm0IQIO4yAIUyb1kP2ykbaBHCEP6pl6EUUC7lAG2rTVSp5Co4-VJJiKa0KQqvetLaxxOxdAuAHbTSEpmbfMkUaWgpJOXaPdFFrkLMfL0Y_Hnuim9Cx3pmbkjxwHW7ROQn9yUIRlMLg6N0_Fp_8jgrnJ6P4-FkO82ZwPzI_CUxolGOg2C5ISmgO35pgwijhTOA4stq9ipeNfEhRmFhtOiYMJxkjainMjHY65qQfeMbAXkF0KcrrWCGOkygZXWH221T-KQHkWVujh7Al9LUy0uCmUO9vSkhMs8NHanhV6omIoL48fKymWno5iNk-bKK5HJ3YqTggzjLfyCEFZi4mv7IPaPWh48bQ1In-VohHQdpbkljxDitQ9ok58fMfbhjop_I1GpwbEJ55YK8T70oZJqzy-QydEyyWwHZNLxx6epXUk14Oq9kWs0X5OL1TU1zyU1ZoKjiw7MMuHBSHMYk1lchlQNvqAmSYykasUa1aXQ2LVItjtprDLFvpzEvVvKZr6IlxO4gNAL5IqBap8WOcgQVSU5yV1CDVcMGU1IAjaijes3xpEV85MPrs2QG_XBMZXMbs7CEdEOFQdCLvvteP3UPY7ixGU0XzwnixmQnT7vCUsXh_ShUgQW0Bruf2aqaEGOPM8059GxdaEYK-x47GKMTDB8uZhV5eXNFsu5gvn6aX2MW6WC1l5WEX1iGL6Z-r2T4vvJWzaixE16upyXTZT3gmJmpUzVB7Ep0SqBJXtsSYKIL8cTPqnn7ZrHBn0xVxMkYpnRO4VdFImfEHr3c_6qoJ3a6aAKTZEp93K7ArHyqVsLO0MXIcIsA_aNDEz7QF48q1zyrB2OSOHl4m24DwwvnSrkyAnsIS-tvsqua8ie1riJ3R_zre3E76yX6HBI6sRsDnia1Nl2ig8_SP4tcuRMoG2YzdohHwQc5M4PjT3Wu9--q5VbcAKcRBNPZ9mnYZuUjrB1vVB-0AI6i7ltrfjYHt_T9LU4PPWjHlarvAriHgBwXxn9xMKmlNLayxReBBz03mrfn1i7IYtKourJ_hOcDzjWROWI0-d7pk3pH3esso5wpz9_HyVuqFC_1fufdouhDlYusq3uJ66ezyf6kVw8CK4ZiXXq-MlSFS4KPGhOEKrRoAyEQslfiJBT5LYZCoxwzF8SNnw_zkRtpYHn2kr24TPRTTwTC7pUBR40I3DcxLM2EQbxS4QIywZajlNFyOf_7BD5HkcfPRwboelbqT7mhcsRnS5DZdGCH2OWq4pZwLccwgf6LcdZAHPbBvntqBG75zzX8EMDr-dRlGS6QMAlep4hrG1oDGoax2gXgskgCZrGwsJ2JYs-RI3JMeQxMwJ_2UxYGqQs4BgP_JbcqvztW1GiyPU584HYp6ZnCUyZMZz7OdkzcYlDcx3TnZ7dIsAptV0KakfLjXGbbrkuB5GAYwmG8K4JpSDk7eN_Px6DlNurHmtz0Vx0dYK3VRgDCZ5FnPlBvXIQgrv9fExTTe-ayx3FHmkMmN0wxK-Zv0bLnV4AAMfyMzdJHqyM4LinB1TlXRAP9JaIlRMfD3dUWP-Y9gOIRwdSQD3HVOTDA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680b2f3724db92-86674314','','','2025-04-25 06:44:38','2025-04-25 06:44:38','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43065',0,'cd-form-entry','',0),(43066,3,'2025-07-15 08:00:29','2025-07-15 08:00:29','<h2>The Link Between Movement Biomechanics and Risk Reduction</h2>\r\nUnderstanding how the body moves is one of the most powerful ways to reduce injury risk and enhance movement quality. Whether someone is an athlete or simply wants to stay active and pain-free, intrinsic biomechanics offers a framework to improve performance, reduce strain, and support the body’s natural movement quality.\r\n\r\nBy analysing how joints, muscles, and tissues interact during movement, we can identify hidden dysfunctions and apply strategies that not only help reduce risk of injuries but improve overall movement efficiency.\r\n<h3>What Is Intrinsic Biomechanics and Why Does It Matter?</h3>\r\nIntrinsic biomechanics is the science of how the body moves, focusing on the interplay between muscles, bones, tendons, and ligaments. It combines elements of physiotherapy and biology to understand the mechanics of movement and how to optimise it.\r\n\r\nWhen applied correctly, intrinsic biomechanics helps to:\r\n<ul>\r\n 	<li>Reduce unnecessary stress on joints and tissues</li>\r\n 	<li>Improve coordination and movement efficiency</li>\r\n 	<li>Address compensations before they lead to injury</li>\r\n 	<li>Enhance performance across all activity levels</li>\r\n</ul>\r\nThis approach isn’t just for athletes. It benefits anyone who moves, which means everyone.\r\n<h3>Biomechanical Dysfunction and Its Impact on the Body</h3>\r\nWhen the body adapts, it can lead to compensations and dysfunction through the body. Over time, these changes may increase the load on specific joints or tissues, leading to pain or injury.\r\n\r\nTake overpronation during running, for example. Late supination and loose foot or ankle joints can lead to excess stress on the knees or shins, often resulting in issues like shin splints or plantar fasciitis. Or consider someone who spends long hours sitting at a desk. Static postures can contribute to ligament stiffness, nerve inhibition, and reduced blood flow, factors that eventually impact how we move and feel.\r\n\r\nEven repetitive tasks, like swinging a golf club or using one hand to operate machinery, can place excessive strain on specific body parts if left unchecked. Recognising and addressing these issues early through intrinsic biomechanical analysis is key.\r\n<h3>How Intrinsic Biomechanics Helps Prevent Injury</h3>\r\nImproving movement isn’t about guesswork. Intrinsic biomechanics gives us a way to systematically assess and improve how the body functions.\r\n<h4>Identifying Risk Before It Becomes a Problem</h4>\r\nBy carrying out simple assessments, using just a massage table, trainers and coaches can evaluate each joint and soft tissue structure. These assessments reveal movement limitations, restrictions, and compensations that could increase risk.\r\n<h4>Improving How the Body Uses Energy</h4>\r\nBetter movement doesn’t just reduce strain, it also enhances energy efficiency. When muscles and joints are moving the way they’re designed to, there’s less wasted effort. Whether someone wants to run faster or just get through the day without fatigue, improving intrinsic biomechanics helps them get more from every step.\r\n<h4>Promoting Joint Stability and Movement Quality</h4>\r\nStability is about more than strength. It starts with good function. When the underlying mechanics are working well, the body becomes more stable, reducing the chances of overuse injuries. Addressing movement quality at its root lays a strong foundation for future training or physical goals.\r\n<h3>Applying Biomechanics in Everyday Coaching</h3>\r\nSo how can coaches and professionals start applying intrinsic biomechanics with their clients?\r\n<ul>\r\n 	<li><strong>Book or Offer a Biomechanical Assessment:</strong> Movement screenings provide essential information about how a client moves and where their risks lie. Coaches trained in intrinsic biomechanics can integrate these insights into personalised programmes.</li>\r\n 	<li><strong>Focus on Force Production, Not Just Alignment:</strong> Intrinsic Biomechanics teaches us that movement happens in all planes, not just straight lines. Helping clients learn how to manage force production effectively is more beneficial than chasing textbook alignment in every exercise.</li>\r\n 	<li><strong>Strengthen Stabilising Muscles:</strong> Once movement function is optimised, strengthening stabilisers helps to maintain improvements and prevent regressions.</li>\r\n 	<li><strong>Add Movement Moments Into the Day:</strong> Encourage clients to find opportunities to move, whether it’s a few pelvic M.E.Ts between meetings or some spinal mobility work before bed. These small changes build long-term habits.</li>\r\n 	<li><strong>Listen to What the Body Is Saying:</strong> Pain, discomfort, or recurring issues can indicate to underlying dysfunction. Working alongside physiotherapists or regulated professionals when needed ensures both the trainer and client stay safe while progressing.</li>\r\n</ul>\r\n<h3>Why It All Matters</h3>\r\nIntrinsic biomechanics is not just about reducing risk. It’s about helping people move more freely. For some, that might mean running faster or lifting heavier. For others, it could mean getting through the day without back pain.\r\n\r\nWhen coaches and trainers understand how to assess and address the root of movement dysfunctions, they’re able to deliver better results and long-term improvements. This knowledge adds value to every session and builds trust with clients who want to move with confidence.\r\n\r\nIf you\'re ready to take your coaching to the next level, becoming a Biomechanics Coach can help you bridge the gap between movement science and practical training. By applying intrinsic biomechanics, you give your clients the opportunity to stay active, injury-free, and performing at their best, no matter their goals.\r\n\r\n&nbsp;','The Link Between Movement Biomechanics and Risk Reduction','','future','closed','closed','','movement-mechanics-and-risk-reduction','','','2025-07-03 09:15:24','2025-07-03 09:15:24','',0,'https://biomechanicseducation.com/?p=43066',0,'post','',0),(43067,18,'2025-04-25 08:44:31','2025-04-25 08:44:31','<h2>The Link Between Movement Biomechanics and Risk Reduction</h2>\r\nUnderstanding how the body moves is one of the most powerful ways to reduce injury risk and enhance movement quality. Whether someone is an athlete or simply wants to stay active and pain-free, intrinsic biomechanics offers a framework to improve performance, reduce strain, and support the body’s natural movement patterns.\r\n\r\nBy analysing how joints, muscles, and tissues interact during movement, we can identify hidden dysfunctions and apply strategies that not only help prevent injuries but improve overall movement efficiency.\r\n<h3>What Is Intrinsic Biomechanics and Why Does It Matter?</h3>\r\nIntrinsic biomechanics is the science of how the body moves, focusing on the interplay between muscles, bones, tendons, and ligaments. It combines elements of physiotherapy and biology to understand the mechanics of movement and how to optimise it.\r\n\r\nWhen applied correctly, intrinsic biomechanics helps to:\r\n<ul>\r\n 	<li>Reduce unnecessary stress on joints and tissues</li>\r\n 	<li>Improve coordination and movement efficiency</li>\r\n 	<li>Address compensations before they lead to injury</li>\r\n 	<li>Enhance performance across all activity levels</li>\r\n</ul>\r\nThis approach isn’t just for athletes. It benefits anyone who moves, which means everyone.\r\n<h3>Biomechanical Dysfunction and Its Impact on the Body</h3>\r\nWhen the body adapts to certain movement patterns or postures, it can lead to dysfunction. Over time, these changes may increase the load on specific joints or tissues, leading to pain or injury.\r\n\r\nTake overpronation during running, for example. Late supination and loose foot or ankle joints can lead to excess stress on the knees or shins, often resulting in issues like shin splints or plantar fasciitis. Or consider someone who spends long hours sitting at a desk. Static postures can contribute to ligament stiffness, nerve inhibition, and reduced blood flow, factors that eventually impact how we move and feel.\r\n\r\nEven repetitive tasks, like swinging a golf club or using one hand to operate machinery, can place excessive strain on specific body parts if left unchecked. Recognising and addressing these patterns early through intrinsic biomechanical analysis is key.\r\n<h3>How Intrinsic Biomechanics Helps Prevent Injury</h3>\r\nImproving movement isn’t about guesswork. Intrinsic biomechanics gives us a way to systematically assess and improve how the body functions.\r\n<h4>Identifying Risk Before It Becomes a Problem</h4>\r\nBy carrying out simple assessments, often using just a massage table, trainers and coaches can evaluate each joint and soft tissue structure. These assessments reveal movement imbalances, restrictions, and compensation patterns that could put someone at risk.\r\n<h4>Improving How the Body Uses Energy</h4>\r\nBetter movement doesn’t just reduce strain, it also enhances energy efficiency. When muscles and joints are moving the way they’re designed to, there’s less wasted effort. Whether someone wants to run faster or just get through the day without fatigue, improving intrinsic biomechanics helps them get more from every step.\r\n<h4>Promoting Joint Stability and Movement Quality</h4>\r\nStability is about more than strength. It starts with good function. When the underlying mechanics are working well, the body becomes more stable, reducing the chances of overuse injuries. Addressing movement quality at its root lays a strong foundation for future training or physical goals.\r\n<h3>Applying Biomechanics in Everyday Coaching</h3>\r\nSo how can coaches and professionals start applying intrinsic biomechanics with their clients?\r\n<ul>\r\n 	<li><strong>Book or Offer a Biomechanical Assessment:</strong> Movement screenings provide essential information about how a client moves and where their risks lie. Coaches trained in intrinsic biomechanics can integrate these insights into personalised programmes.</li>\r\n 	<li><strong>Focus on Force Production, Not Just Alignment:</strong> Biomechanics teaches us that movement happens in all planes, not just straight lines. Helping clients learn how to manage force production effectively is more beneficial than chasing textbook alignment in every exercise.</li>\r\n 	<li><strong>Strengthen Core and Stabilising Muscles:</strong> Once movement function is optimised, a strong trunk and stable joints are essential to maintain those improvements.</li>\r\n 	<li><strong>Add Movement Moments Into the Day:</strong> Encourage clients to find opportunities to move, whether it\'s a few hip openers between meetings or some gentle spinal mobility work before bed. These small changes build long-term habits.</li>\r\n 	<li><strong>Listen to What the Body Is Saying:</strong> Pain, discomfort, or recurring issues often point to underlying dysfunction. Working alongside physiotherapists or regulated professionals when needed ensures both the trainer and client stay safe while progressing.</li>\r\n</ul>\r\n<h3>Why It All Matters</h3>\r\nIntrinsic biomechanics is not just about preventing injury. It’s about helping people move better and feel better. For some, that might mean running faster or lifting heavier. For others, it could mean getting through the day without back pain.\r\n\r\nWhen coaches and trainers understand how to assess and address the root of movement dysfunctions, they’re able to deliver better results and long-term improvements. This knowledge adds value to every session and builds trust with clients who want to move with confidence.\r\n\r\nIf you\'re ready to take your coaching to the next level, becoming a Biomechanics Coach can help you bridge the gap between movement science and practical training. By applying intrinsic biomechanics, you give your clients the opportunity to stay active, injury-free, and performing at their best, no matter their goals.\r\n\r\n&nbsp;','The Link Between Movement Biomechanics and Risk Reduction','','inherit','closed','closed','','43066-revision-v1','','','2025-04-25 08:44:31','2025-04-25 08:44:31','',43066,'https://biomechanicseducation.com/?p=43067',0,'revision','',0);
INSERT INTO `6m7_posts` VALUES (43068,18,'2025-04-25 08:44:49','2025-04-25 08:44:49','<h2>The Link Between Movement Biomechanics and Risk Reduction</h2>\r\nUnderstanding how the body moves is one of the most powerful ways to reduce injury risk and enhance movement quality. Whether someone is an athlete or simply wants to stay active and pain-free, intrinsic biomechanics offers a framework to improve performance, reduce strain, and support the body’s natural movement patterns.\r\n\r\nBy analysing how joints, muscles, and tissues interact during movement, we can identify hidden dysfunctions and apply strategies that not only help prevent injuries but improve overall movement efficiency.\r\n<h3>What Is Intrinsic Biomechanics and Why Does It Matter?</h3>\r\nIntrinsic biomechanics is the science of how the body moves, focusing on the interplay between muscles, bones, tendons, and ligaments. It combines elements of physiotherapy and biology to understand the mechanics of movement and how to optimise it.\r\n\r\nWhen applied correctly, intrinsic biomechanics helps to:\r\n<ul>\r\n 	<li>Reduce unnecessary stress on joints and tissues</li>\r\n 	<li>Improve coordination and movement efficiency</li>\r\n 	<li>Address compensations before they lead to injury</li>\r\n 	<li>Enhance performance across all activity levels</li>\r\n</ul>\r\nThis approach isn’t just for athletes. It benefits anyone who moves, which means everyone.\r\n<h3>Biomechanical Dysfunction and Its Impact on the Body</h3>\r\nWhen the body adapts to certain movement patterns or postures, it can lead to dysfunction. Over time, these changes may increase the load on specific joints or tissues, leading to pain or injury.\r\n\r\nTake overpronation during running, for example. Late supination and loose foot or ankle joints can lead to excess stress on the knees or shins, often resulting in issues like shin splints or plantar fasciitis. Or consider someone who spends long hours sitting at a desk. Static postures can contribute to ligament stiffness, nerve inhibition, and reduced blood flow, factors that eventually impact how we move and feel.\r\n\r\nEven repetitive tasks, like swinging a golf club or using one hand to operate machinery, can place excessive strain on specific body parts if left unchecked. Recognising and addressing these patterns early through intrinsic biomechanical analysis is key.\r\n<h3>How Intrinsic Biomechanics Helps Prevent Injury</h3>\r\nImproving movement isn’t about guesswork. Intrinsic biomechanics gives us a way to systematically assess and improve how the body functions.\r\n<h4>Identifying Risk Before It Becomes a Problem</h4>\r\nBy carrying out simple assessments, often using just a massage table, trainers and coaches can evaluate each joint and soft tissue structure. These assessments reveal movement imbalances, restrictions, and compensation patterns that could put someone at risk.\r\n<h4>Improving How the Body Uses Energy</h4>\r\nBetter movement doesn’t just reduce strain, it also enhances energy efficiency. When muscles and joints are moving the way they’re designed to, there’s less wasted effort. Whether someone wants to run faster or just get through the day without fatigue, improving intrinsic biomechanics helps them get more from every step.\r\n<h4>Promoting Joint Stability and Movement Quality</h4>\r\nStability is about more than strength. It starts with good function. When the underlying mechanics are working well, the body becomes more stable, reducing the chances of overuse injuries. Addressing movement quality at its root lays a strong foundation for future training or physical goals.\r\n<h3>Applying Biomechanics in Everyday Coaching</h3>\r\nSo how can coaches and professionals start applying intrinsic biomechanics with their clients?\r\n<ul>\r\n 	<li><strong>Book or Offer a Biomechanical Assessment:</strong> Movement screenings provide essential information about how a client moves and where their risks lie. Coaches trained in intrinsic biomechanics can integrate these insights into personalised programmes.</li>\r\n 	<li><strong>Focus on Force Production, Not Just Alignment:</strong> Biomechanics teaches us that movement happens in all planes, not just straight lines. Helping clients learn how to manage force production effectively is more beneficial than chasing textbook alignment in every exercise.</li>\r\n 	<li><strong>Strengthen Core and Stabilising Muscles:</strong> Once movement function is optimised, a strong trunk and stable joints are essential to maintain those improvements.</li>\r\n 	<li><strong>Add Movement Moments Into the Day:</strong> Encourage clients to find opportunities to move, whether it\'s a few hip openers between meetings or some gentle spinal mobility work before bed. These small changes build long-term habits.</li>\r\n 	<li><strong>Listen to What the Body Is Saying:</strong> Pain, discomfort, or recurring issues often point to underlying dysfunction. Working alongside physiotherapists or regulated professionals when needed ensures both the trainer and client stay safe while progressing.</li>\r\n</ul>\r\n<h3>Why It All Matters</h3>\r\nIntrinsic biomechanics is not just about preventing injury. It’s about helping people move better and feel better. For some, that might mean running faster or lifting heavier. For others, it could mean getting through the day without back pain.\r\n\r\nWhen coaches and trainers understand how to assess and address the root of movement dysfunctions, they’re able to deliver better results and long-term improvements. This knowledge adds value to every session and builds trust with clients who want to move with confidence.\r\n\r\nIf you\'re ready to take your coaching to the next level, becoming a Biomechanics Coach can help you bridge the gap between movement science and practical training. By applying intrinsic biomechanics, you give your clients the opportunity to stay active, injury-free, and performing at their best, no matter their goals.\r\n\r\n&nbsp;','The Link Between Movement Biomechanics and Risk Reduction','','inherit','closed','closed','','43066-revision-v1','','','2025-04-25 08:44:49','2025-04-25 08:44:49','',43066,'https://biomechanicseducation.com/?p=43068',0,'revision','',0),(43069,3,'2025-07-22 08:00:28','2025-07-22 08:00:28','<h2>The Role of Joint Health in Reducing Common Injuries</h2>\r\nWhen we think about fitness and performance, strength, flexibility, and endurance often steal the spotlight. But behind every squat, sprint, or stretch is a key player that often goes unnoticed, joint health. Your joints are the hinges of movement. They allow you to bend, twist, reach, and run, all while absorbing stress and helping your body stay aligned and mobile. When joints are healthy, movement feels fluid and pain-free. But when joint care is neglected, it can lead to stiffness, chronic discomfort, and an increased risk of injury.\r\n\r\nUnderstanding the role joints play in risk reduction and overall function is crucial, not only for athletes but for anyone who wants to move well and stay active long-term.\r\n<h3>Why Joint Health Is So Important</h3>\r\nEvery time your client moves, whether lifting a barbell, holding a yoga pose, or going for a jog, their joints are doing a lot of heavy lifting, literally. They carry load, absorb impact, and enable directional change. Over time, if they’re not properly supported, they can become stiff, inflamed, or misaligned. This is when problems like tendonitis, ligament sprains, cartilage degeneration, or even dislocations can arise.\r\n\r\nSmall signs like reduced range of motion, discomfort during specific exercises, or slow recovery can often point to underlying joint health issues. Rather than waiting for pain to appear, focusing on joint care proactively can lead to better performance and fewer setbacks down the line.\r\n<h3>Laying the Foundation With Better Movement</h3>\r\nOne of the most effective ways to protect joint health is to improve how the body moves overall. That means starting with intrinsic preparation, the kind of work that addresses limitations caused by lifestyle factors or muscle imbalances before strength training even begins. Incorporating movement quality-focused warmups, muscle function improvement drills, and pure joint mobility techniques can help restore full-body movement capacity. These elements not only help joints move more freely but also ensure that no single joint is overcompensating for another.\r\n<h3>Balanced Strength Around the Joints</h3>\r\nMuscular strength is essential, but what’s even more important is muscular balance. If one side of a joint is stronger than the other, say, stronger abductors to adductors, it can cause the joint to track improperly, placing strain on ligaments and tendons. Addressing this means strengthening not just the primary movers, but also the antagonists, fixators, and dynamic stabilisers.\r\n\r\nWorking the hips through all ranges, engaging the core to support spinal alignment, and building rotational stability in the shoulders are all examples of smart training that leads to healthy, resilient joints. By developing strength on both sides of a joint, you build symmetry, which is key to joint control and risk reduction.\r\n<h3>Recovery, Hydration, and Nutrition</h3>\r\nJoints don’t just rely on movement, they rely on recovery. Without it, micro-stresses can accumulate, leading to wear and tear. Building in rest days, using low-impact activities like swimming or cycling, and incorporating programmes like iMoveFreely into your clients’ routines can all help maintain healthy movement without overloading the joints.\r\n\r\nHydration plays a critical role too. The cartilage inside your joints is like a sponge that relies on fluid to cushion impact. Staying well-hydrated helps that tissue stay supple. In addition, a diet rich in collagen, omega-3 fatty acids, protein, vitamin D, and calcium supports the repair and integrity of connective tissue. Together, these factors create a strong internal environment where joints can function optimally.\r\n<h3>Don’t Forget the Feet</h3>\r\nIt’s easy to overlook how much our feet influence the rest of our movement, but they play a major role in joint health. Poor foot function, incorrect footwear, or a lack of arch support can cause compensations that travel all the way up to the knees, hips, and even shoulders. Investing in appropriate footwear based on foot type and activity, and checking in with a foot specialist recommended by a Biomechanics Coach, can go a long way in protecting joint integrity during daily life and training.\r\n<h3>Long-Term Impact of Joint-Focused Training</h3>\r\nWhen clients build their training around joint health, they don’t just avoid injuries, they build resilience. With stable, mobile, and well-supported joints, movement becomes easier and more efficient. Clients can lift heavier, run further, and recover faster. More importantly, they can continue progressing without hitting the physical plateaus that often come from joint-related limitations.\r\n<h4>Final Thoughts</h4>\r\nJoint health is a key pillar in long-term fitness success. It’s what allows your clients to move without discomfort, train consistently, and avoid the frustrating cycle of injury and rest. By focusing on intrinsic preparation, balanced strength, recovery, and smart movement, you’re not just improving how your clients perform, you’re investing in how well they’ll move for years to come.\r\n\r\nWhether they’re an athlete, a weekend warrior, or just starting out, making joint care a central part of their fitness journey can make all the difference in helping them stay strong, injury-free, and moving well into the future','The Role of Joint Health in Reducing Common Injuries','','future','closed','closed','','the-role-of-joint-health-in-reducing-common-injuries','','','2025-07-03 09:22:46','2025-07-03 09:22:46','',0,'https://biomechanicseducation.com/?p=43069',0,'post','',0),(43070,18,'2025-04-25 08:56:35','2025-04-25 08:56:35','<h2>The Role of Joint Health in Preventing Common Fitness Injuries</h2>\r\nWhen we think about fitness and performance, strength, flexibility, and endurance often steal the spotlight. But behind every squat, sprint, or stretch is a key player that often goes unnoticed—joint health. Your joints are the hinges of movement. They allow you to bend, twist, reach, and run, all while absorbing stress and helping your body stay aligned and mobile. When joints are healthy, movement feels fluid and pain-free. But when joint care is neglected, it can lead to stiffness, chronic discomfort, and an increased risk of injury.\r\n\r\nUnderstanding the role joints play in injury prevention and overall function is crucial—not only for athletes but for anyone who wants to move well and stay active long-term.\r\n<h3>Why Joint Health Is So Important</h3>\r\nEvery time your client moves, whether lifting a barbell, holding a yoga pose, or going for a jog, their joints are doing a lot of heavy lifting—literally. They carry load, absorb impact, and enable directional change. Over time, if they’re not properly supported, they can become stiff, inflamed, or misaligned. This is when problems like tendonitis, ligament sprains, cartilage degeneration, or even dislocations can arise.\r\n\r\nSmall signs like reduced range of motion, discomfort during specific exercises, or slow recovery can often point to underlying joint health issues. Rather than waiting for pain to appear, focusing on joint care proactively can lead to better performance and fewer setbacks down the line.\r\n<h3>Laying the Foundation With Better Movement</h3>\r\nOne of the most effective ways to protect joint health is to improve how the body moves overall. That means starting with intrinsic preparation—the kind of work that addresses limitations caused by lifestyle factors or muscle imbalances before strength training even begins. Incorporating mobility-focused warmups, muscle activation drills, and nerve mobility techniques can help restore full-body movement capacity. These elements not only help joints move more freely but also ensure that no single joint is overcompensating for another.\r\n<h3>Balanced Strength Around the Joints</h3>\r\nMuscular strength is essential, but what’s even more important is muscular balance. If one side of a joint is stronger than the other—say, stronger quads without hamstring support—it can cause the joint to track improperly, placing strain on ligaments and tendons. Addressing this means strengthening not just the primary movers, but also the stabilisers and antagonists.\r\n\r\nWorking the hips through all ranges, engaging the core to support spinal alignment, and building rotational stability in the shoulders are all examples of smart training that leads to healthy, resilient joints. By developing strength on both sides of a joint, you build symmetry, which is key to joint control and injury prevention.\r\n<h3>Recovery, Hydration, and Nutrition</h3>\r\nJoints don’t just rely on movement—they rely on recovery. Without it, micro-stresses can accumulate, leading to wear and tear. Building in rest days, using low-impact activities like swimming or cycling, and incorporating programmes like iMoveFreely into your clients’ routines can all help maintain healthy movement without overloading the joints.\r\n\r\nHydration plays a critical role too. The cartilage inside your joints is like a sponge that relies on fluid to cushion impact. Staying well-hydrated helps that tissue stay supple. In addition, a diet rich in collagen, omega-3 fatty acids, protein, vitamin D, and calcium supports the repair and integrity of connective tissue. Together, these factors create a strong internal environment where joints can function optimally.\r\n<h3>Don’t Forget the Feet</h3>\r\nIt’s easy to overlook how much our feet influence the rest of our movement, but they play a major role in joint health. Poor foot alignment, incorrect footwear, or a lack of arch support can cause misalignments that travel all the way up to the knees, hips, and even shoulders. Investing in proper footwear based on foot type and movement patterns, and checking in regularly with a foot specialist, can go a long way in protecting joint integrity during daily life and training.\r\n<h3>Long-Term Impact of Joint-Focused Training</h3>\r\nWhen clients build their training around joint health, they don’t just avoid injuries—they build resilience. With stable, mobile, and well-supported joints, movement becomes easier and more efficient. Clients can lift heavier, run further, and recover faster. More importantly, they can continue progressing without hitting the physical plateaus that often come from joint-related limitations.\r\n<h4>Final Thoughts</h4>\r\nJoint health is a key pillar in long-term fitness success. It’s what allows your clients to move without discomfort, train consistently, and avoid the frustrating cycle of injury and rest. By focusing on intrinsic preparation, balanced strength, recovery, and smart movement, you’re not just improving how your clients perform—you’re investing in how well they’ll move for years to come.\r\n\r\nWhether they’re an athlete, a weekend warrior, or just starting out, making joint care a central part of their fitness journey can make all the difference in helping them stay strong, injury-free, and moving well into the future.','The Role of Joint Health in Preventing Common Fitness Injuries','','inherit','closed','closed','','43069-revision-v1','','','2025-04-25 08:56:35','2025-04-25 08:56:35','',43069,'https://biomechanicseducation.com/?p=43070',0,'revision','',0),(43071,0,'2025-04-25 09:00:13','2025-04-25 09:00:13','{\"firstname\":\"David\",\"lastname\":\"Stead\",\"email\":\"david.stead@futurefit.co.uk\",\"contactnumber\":\"07551930686\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4DLbzCaeFM2aRXH4aL5RRhY7Ia3l1R1kuX7WwdPEYQ9-ollEM2QhkcL51otk6OweoMLmekAJg1ijKoa5XG3siF5NzxBm_tsoV5g72wuvSvqPPLG0mSHheQY6mxJM8Jy9SKIiPLy0dDXfjxcuEIhJMEKUukLm7UnYazcwquT651mrqW9aZUEgOzOOHmFSOS_NZTIsZZMqWyRhsTFq68hajKiJdYiBa1k0iB6x69ss7Hru1UzeDwxPmsXtqHt7RFB33bIW9H9Wyi0--JM8HQrdTkSvfg7QHxsfOpWRznb3rF6attSYAcJrh6tImWEPUJpOvUDN6_OM-aUfVAj2hnAJo9NfxPXQEiEQPZVh6nuwBl5OxJPD6k53r21cgnTCSfAW6B2g_icKndUoWSiXgnd_tQ9fvUMgj5SoSX0HCCLrEHQK0hSU-C_bAfDCUjI9gjkkNIOkWVVx8EH3qOpQ4V9xkWvE0ikD0E3sKDgSCXiyxqqHp-7TCgNB8BVAzuqAk86KflS3SCBzqCbzJiTJNOWht9ifEAJrSaAZWkMWUU6FYhYU0vNJ0TXvBWYec5jImKXC8j_XGqJh_GrsJjkfdM4ZV1f_HL2qiCaN_qkktn1qUBRIv6xvss_A4rlRo6Vm0WyBvfk0A2BT-2GaAC-bhScL4fX9B0TxRgIYVr9SNsAPBGr600TusqFazkB-87rsRo6eTVmCuOW2bA-1eMNZfqZ0Pip2WQQIGwXADg8w5BmNHzXJrAKduarQHuwq9jGIvD5PrH2-vdRzp02n9IalOjvvM1IpXkzqE5jGZ_JV9puPacDyJu0GPDPxIf2E7mpwnI35cQW5ijEO4VsyZmr_s7ds53YBXfy2DdFlqk4EBpdOKlmnM6VzumA5v1cOYUpFMNeY1wsLkgmdkuAf7-oum91tHSpugKBdU7Yv6aVxbx8_U_KjwN9KHx5KoV-rc9KTRM89J-EicBD7-16SXieghhsaN9YP1fOC38XrHHvfU9Wtpy9_qLv2eH3COjKnajBJL-ZCKEgy92MIOwVGj1NTkYjFdW7iP0Zj2VPFJvTmSkaQw-8VCpe4NIRgwchs8_vrk3e5EbBAlS-h8NfMszoTOfMHwHs3pE8sbAoTK-A0AZnUDD3a7dgtfSHemaZPObY8NJyaUEed6NzIc2bdIlFggmiZMI0voo_EEfagNm4Ee2ZeCEuyIODap9iFIl9mmEDFIyBt3dhzBYvfFijVkyyi0jNDPYpWBct6_JGWJXHIIZ6rwjf2nbIO80uf-VLlZwCkKOYFn6laFIhKSMPU2QnJIRZGa280PBsPdsZHT37gL21-LPHJOgRY_nflDbSk1rDfK5Z7BMkNl4eRkmAgMAf2xTG7IC1-GKbFkwjRQJ1fsKNHtqf-x8M-RRcscp6ec9Yio5HNTAturKT0McMLfjDDyqKblT1G6qfljKY4XSK1Cfm1U5_C2jPQh7Lc1RuQaT3eTzDYteZZfIJn4kIOPX2Stl8q0inOPEiEUKcFSTlHPmTKwGU1mC6Ss6Zul8GlNyIyVH-yqgd1AbKKJbS2LYOi5fFIiav6yfDG22ztFI83716_vf8BxcrSZg4LnkJHE3NhlfDGjAdNEpGOwpjwFcqL2FCU66iLYnAcs_56EDYnXCScntCcdlRmrjynbkgBDcwira_yrfwrRSAGe6aIhKBGavSXQHmVkXpk8HDzdBeWKK1XZabFyCHLtCxOJg6TTAMRmVCdIDoA_tCVoE6NCdgCgiMzrHrgtfPwFB9-FJ-ahvz_UaG1ipKwAB3uFooQ6PXAr5hVnsfsJ8lGO28nOh86FSP0qwGD3Xc6la9ZKuM-OQt0NGGglZxct8AkH2uQRzTLYegxx9uv8sdf8XT9WVW99ns2w1hxODePtjfYIS374kHqU6SNVHW-SnZQsGzRndEVzOCK0OTcfbQmVgK80XH2StyF-HO2by91oDuLkS6QVLH5PKhHDAU0vbu3Xf13HFmY9rvfuzbeGRmBnUPXAx7A68w98Ta6QLt0pTBGLck9apwYEftqHBjP5Cm0chGnrfLw9PRKZXJyH6vZqz-P8r3eNjku2hoeSTgaRp_rUJ09x6n0ri_HSYhbtpHt3lTTBGdtAiGTDQ8vabn_q5QuIXwf_S5i9ZSog6aXOdOPmFS5bb6yi-JRfzvcQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680b4f1d432659.13576285','','','2025-04-25 09:00:13','2025-04-25 09:00:13','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680b4f1d432659.13576285',0,'cd-form-entry','',0),(43072,18,'2025-04-25 09:11:08','2025-04-25 09:11:08','<h2>The Role of Joint Health in Preventing Common Fitness Injuries</h2>\r\nWhen we think about fitness and performance, strength, flexibility, and endurance often steal the spotlight. But behind every squat, sprint, or stretch is a key player that often goes unnoticed—joint health. Your joints are the hinges of movement. They allow you to bend, twist, reach, and run, all while absorbing stress and helping your body stay aligned and mobile. When joints are healthy, movement feels fluid and pain-free. But when joint care is neglected, it can lead to stiffness, chronic discomfort, and an increased risk of injury.\r\n\r\nUnderstanding the role joints play in injury prevention and overall function is crucial—not only for athletes but for anyone who wants to move well and stay active long-term.\r\n<h3>Why Joint Health Is So Important</h3>\r\nEvery time your client moves, whether lifting a barbell, holding a yoga pose, or going for a jog, their joints are doing a lot of heavy lifting—literally. They carry load, absorb impact, and enable directional change. Over time, if they’re not properly supported, they can become stiff, inflamed, or misaligned. This is when problems like tendonitis, ligament sprains, cartilage degeneration, or even dislocations can arise.\r\n\r\nSmall signs like reduced range of motion, discomfort during specific exercises, or slow recovery can often point to underlying joint health issues. Rather than waiting for pain to appear, focusing on joint care proactively can lead to better performance and fewer setbacks down the line.\r\n<h3>Laying the Foundation With Better Movement</h3>\r\nOne of the most effective ways to protect joint health is to improve how the body moves overall. That means starting with intrinsic preparation—the kind of work that addresses limitations caused by lifestyle factors or muscle imbalances before strength training even begins. Incorporating mobility-focused warmups, muscle activation drills, and nerve mobility techniques can help restore full-body movement capacity. These elements not only help joints move more freely but also ensure that no single joint is overcompensating for another.\r\n<h3>Balanced Strength Around the Joints</h3>\r\nMuscular strength is essential, but what’s even more important is muscular balance. If one side of a joint is stronger than the other—say, stronger quads without hamstring support—it can cause the joint to track improperly, placing strain on ligaments and tendons. Addressing this means strengthening not just the primary movers, but also the stabilisers and antagonists.\r\n\r\nWorking the hips through all ranges, engaging the core to support spinal alignment, and building rotational stability in the shoulders are all examples of smart training that leads to healthy, resilient joints. By developing strength on both sides of a joint, you build symmetry, which is key to joint control and injury prevention.\r\n<h3>Recovery, Hydration, and Nutrition</h3>\r\nJoints don’t just rely on movement—they rely on recovery. Without it, micro-stresses can accumulate, leading to wear and tear. Building in rest days, using low-impact activities like swimming or cycling, and incorporating programmes like iMoveFreely into your clients’ routines can all help maintain healthy movement without overloading the joints.\r\n\r\nHydration plays a critical role too. The cartilage inside your joints is like a sponge that relies on fluid to cushion impact. Staying well-hydrated helps that tissue stay supple. In addition, a diet rich in collagen, omega-3 fatty acids, protein, vitamin D, and calcium supports the repair and integrity of connective tissue. Together, these factors create a strong internal environment where joints can function optimally.\r\n<h3>Don’t Forget the Feet</h3>\r\nIt’s easy to overlook how much our feet influence the rest of our movement, but they play a major role in joint health. Poor foot alignment, incorrect footwear, or a lack of arch support can cause misalignments that travel all the way up to the knees, hips, and even shoulders. Investing in proper footwear based on foot type and movement patterns, and checking in regularly with a foot specialist, can go a long way in protecting joint integrity during daily life and training.\r\n<h3>Long-Term Impact of Joint-Focused Training</h3>\r\nWhen clients build their training around joint health, they don’t just avoid injuries—they build resilience. With stable, mobile, and well-supported joints, movement becomes easier and more efficient. Clients can lift heavier, run further, and recover faster. More importantly, they can continue progressing without hitting the physical plateaus that often come from joint-related limitations.\r\n<h4>Final Thoughts</h4>\r\nJoint health is a key pillar in long-term fitness success. It’s what allows your clients to move without discomfort, train consistently, and avoid the frustrating cycle of injury and rest. By focusing on intrinsic preparation, balanced strength, recovery, and smart movement, you’re not just improving how your clients perform—you’re investing in how well they’ll move for years to come.\r\n\r\nWhether they’re an athlete, a weekend warrior, or just starting out, making joint care a central part of their fitness journey can make all the difference in helping them stay strong, injury-free, and moving well into the future.','The Role of Joint Health in Preventing Common Fitness Injuries','','inherit','closed','closed','','43069-revision-v1','','','2025-04-25 09:11:08','2025-04-25 09:11:08','',43069,'https://biomechanicseducation.com/?p=43072',0,'revision','',0),(43073,3,'2025-07-29 08:00:24','2025-07-29 08:00:24','<h2>The Science Behind Preparation Exercise: Understanding the Connection Between Movement and Symptoms</h2>\r\n&nbsp;\r\n\r\nPreparation exercise has gained increasing attention in the fitness, exercise, prehabilitation, and rehabilitation worlds, and for good reason. As chronic symptoms and movement dysfunctions become more common in active and sedentary populations alike, understanding how the body moves, and why it sometimes doesn’t, has become crucial. Preparation exercise isn’t just about warming up; it’s about preparing the body to move well and improving overall function.\r\n\r\nIn this blog, we’ll explore the science behind preparation exercise and dive into how intrinsic biomechanics and neuromuscular science help manage symptoms and support long-term movement health.\r\n<h3>Why Movement Matters: The Biomechanics of Dysfunction</h3>\r\nThe human body is designed to move in a coordinated, efficient way. But life doesn’t always allow for ideal movement. Long hours sitting at a desk, repetitive daily patterns, muscular imbalances, or previous injuries can create movement limitations and cause excessive stress on joints, ligaments, and muscles. These limitations can gradually lead to symptoms, often subtle at first, but potentially long-lasting.\r\n\r\nFor example, a sedentary lifestyle can reduce the variety of postures and positions our body experiences. Over time, this can create excessive loading in certain areas like the lower back. Nerve tension can further reduce muscular output and alter joint mobility, while poor load management decreases connective tissue resilience, affecting both performance and day-to-day function.\r\n<h3>Understanding Intrinsic Biomechanics</h3>\r\nIntrinsic biomechanics is the science of how our joints, muscles, and nervous system function at a foundational level. When this system is operating optimally, movement is smooth, balanced, and energy-efficient. But when there are disruptions, like stiff joints, inhibited muscles, or nerve tethering, the body compensates. This often results in uneven stress distribution, increased wear on certain tissues, and a greater risk of symptoms.\r\n\r\nBiomechanics Coaching focuses on restoring the body’s blueprint for natural movement. Preparation exercise plays a key role in this by improving joint mobility, reducing muscular tension, and enhancing nerve mobility to create an optimal internal environment for pain-free movement.\r\n<h3>Neuromuscular Science: Reprogramming Movement</h3>\r\nThe nervous system is the command centre for movement. It controls everything from muscle activation and balance to coordination and stability. If the nervous system detects instability, perhaps due to an old injury, it may limit movement in that area and create compensations elsewhere. These adaptations can eventually lead to discomfort and dysfunction.\r\n\r\nPreparation exercises are specifically designed to re-educate the nervous system. Through targeted drills, we can improve proprioception (the body’s sense of position), restore joint control, and encourage balanced muscle function.\r\n\r\nMuscle inhibition is one of the most common contributors to dysfunction. For instance, if the glutes become inhibited due to hip flexor dysfunction (possibly a result of prolonged sitting), other muscles compensate, placing excess strain on the lower back or knees. Similarly, poor control of the scapular muscles can increase the risk of shoulder discomfort. Preparation exercise aims to address these compensations by improving muscle function, restoring movement quality, and improving joint strength ratios.\r\n<h3>The Four Stages of Preparation Exercise</h3>\r\nPreparation exercise is most effective when approached systematically. The first step is a detailed assessment understanding intrinsic biomechanics across joints, muscles, and nerves. This isn’t about guessing, it’s about gathering accurate information on where limitations or imbalances exist.\r\n\r\nNext comes preparation and capacity building. This phase includes techniques like muscle energy techniques (METs) to improve muscular function, joint mobilisations to enhance flexibility, and nerve glides to restore mobility and reduce inhibition.\r\n\r\nThe third stage is stability and control. This includes core progressions, core ratio improvement, and functional stability work to reinforce proper movement from the inside out. When the core is strong and reactive, the body moves with more confidence and efficiency.\r\n\r\nFinally, we integrate these improvements into real-world strength and performance. This stage uses neuromuscular re-education and activity-specific movement training to ensure changes in the gym translate to everyday life or sport.\r\n<h4>Conclusion: Movement Is Medicine</h4>\r\nSymptoms aren’t always a direct result of an injury, they can often be a sign that something within the movement system isn’t functioning as it should. Preparation exercise offers a scientifically supported, holistic way to address these root causes. By improving intrinsic biomechanics and retraining the nervous system, we can support our clients in moving more freely, performing better, and feeling better, without relying solely on passive treatment approaches.\r\n\r\nIf you’re a coach or trainer who wants to go beyond surface-level programming and start solving the deeper causes of movement dysfunction, consider becoming a certified Biomechanics Coach. With the right knowledge, you can help your clients take control of their movement and their symptoms, one well-prepared session at a time.','The Science Behind Preparation Exercise: Understanding the Connection Between Movement and Symptoms','','future','closed','closed','','the-science-behind-preparation-exercise','','','2025-07-03 09:17:38','2025-07-03 09:17:38','',0,'https://biomechanicseducation.com/?p=43073',0,'post','',0),(43074,0,'2025-04-25 09:14:09','2025-04-25 09:14:09','{\"firstname\":\"TEST\",\"lastname\":\"TEST\",\"email\":\"besmaptest1@futurefit.co.uk\",\"contactnumber\":\"035216549877\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6W2rQ3CbfoeuOzc2Q6X2JnWdslqfhiyktyJt4OWsdRutVGxAwsTA0cujqNeH2lhPgwPgUeMhueJwZNLiWqOI6NyO3IxOPCxhQnmPnfb4fgXwPQMLCFCqMiYqX7ykiRX6xAnwdmEujdBkXazxjkBHNLlFkAM5lhNwDA_4jvup2GSFPY9w8IC66sedE0uQUAms3D2kxM6zTh24NYXRe0Fk8gEWT7g-9O-04xQD-PWwcr9XRK2VjhTLzoDOVQkyiEPc1-CQrvAK1RXZzr-Hs2LsL7mKupzVIr0nMLHCxawmLjtQqCjZQfUuIgXngepmfutnBfkJnqNOPqhIhfZeo2KNfWQVuZAQ15c-7lr2g4b2fBP6jZdtdc-WVocp5QiHu00PCsU4XjIb8rfjF-HnGMhbdsfmtWx6vB73yvjil--0pWdf3nU9VON27F0ag9Kr91rxO1g7mPVyWaJ-4aexj_W4YMcJsu0AEwpm9DQERWbjXyc9yKGcTwJzujY72XGDtPiC-UcCyy_Qty73AEnBy4fmyat3hcVkah36w7bZUPPLdubYOffHdyUnsTPDxNtgHJcAmA8AHQLZ7TlTCZ8hpvh6XaSUVdFFvD5wY47ow3ZXeJUC-ic2Cto_pk5FSsIIZYG9EL5Kge8IQ6fVidzJ4W5wZmnYbBy013EnfVdRWK7omw_bKbqA1iSoA_Co4f2RP2balVDP4RZRMRnbvSpT8-vygsLWbrG9zFOkX4Fgnhyj4YX84wJLElYEokz04y4grzeZAWKw9FW2xGin2fTRc0Phy8S_Z6IH4UAf6w7GYls8eCsMHst7L8C7kzlATb1ESbXAjAVlgesK4hme83O7BL0ASrCm6Imbl8Nvs4eKsJNCeChFLOS6WTWQ9cH0wYzMWKF9xG8mbafN37G_J-SMFrMeNF-ZoztYkN-hXe8yv2KbsL8v5CCtn6wWY0BT8F-F2nddwJzH2mdtXC5BktjTGnmF_r-tRdWfLbOEbNB3JsQVZso7U1PIDqrzVxVoULXHrVdl_L1MDAB_y2aMeK8uXRErRrakJ0RwEXz0_ijFsJ3LSucLVvxepK4-Pmd002J2FKRyRbbZfPQ881EMLtDXadBuobC7rbUyt8muomDCR6YeNWzcdeZBq6SLNkz0IPXWMaxfbv2x24LOUJ924dAiKI2LfoD47EWnHz_DXbE8UWyQbY9bpDA6Z_O2DQJUaYBgWbqWYC62BH5pAKQX4rz4ANzwSq71mVG5XWP1r1_fl8vA6qAyLLhzWXJ4YeBExz9gBc7o79qnF55cyToC-gSI2HxMtUymAcP9LYfXqIc0dgtpagNawfpA3WN3S8_fRyDA_Yezwezm3lnnHlIhIeF94PMSupt27ZP06CNat7c2lpRL-fgixbV2tnzDWaPyPJpWoQ4DNh0mySdbO2TYC0hhpluwkbNkTyZW7b7hIAwCHCUHwkkEvL2YL0y0SEQ3Anov9T8JfIYJYCu51Ht2v467Zz2HehrumebsL8jLzBuXMWpDPoreI69E6hPTkFDTgq8dGYU3TJza68PZ-eXY6VHe8RR34WfY-ClWoFrMsEiv137fDFrKXRGCYd36YhX5EYDaujPt7qXFMOgs2-OoxEnoW9Q4yiGGNnE9ibMgHZFKUBBeCnCnicBYqw505d0QlLBmEM9nCWJVcBKh-Vf6trSWqiAB29zeO-UZM8ATMrhkGJIZnepy8VIEFZTOedUIvk0dl5jE_iBmBSlolMnJY4Y8ded2OaIPvv-6iiSeCkva465IQi6AP9PsAYf4Gv8isTsxp0sXop6aHbjLu9fxMrbzcqKcF3iZueMxfBYJcCEHXM6eE7vcIVo82SLIljtd9P0jQTp_6HjVWhkkwV3faQ-9Dl7rkepRh-A7NcxQGAmiz8Kitccz1BPhqyj7kYY9U9z9ezvZbHuTZkRfajlsZTp-SCXyw2vYjrSGO1V9xh_Tjh-RQNWm8p2ykPdDyOJHISmIDa1ftnjCg1JcK42uvI7lMneeQ55FYiYdI2Ur037l-McGP8buEzloE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680b52610aa1b1.26953909','','','2025-04-25 09:14:09','2025-04-25 09:14:09','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680b52610aa1b1.26953909',0,'cd-form-entry','',0),(43075,18,'2025-04-25 09:25:21','2025-04-25 09:25:21','<h2>The Science Behind Preparation Exercise: Understanding the Connection Between Movement and Symptoms</h2>\r\nPreparation exercise has gained increasing attention in the fitness and rehabilitation world, and for good reason. As chronic symptoms and movement dysfunctions become more common in active and sedentary populations alike, understanding how the body moves, and why it sometimes doesn’t, has become crucial. Preparation exercise isn’t just about warming up; it’s about preparing the body to move well, reduce discomfort, and improve overall function.\r\n\r\nIn this blog, we’ll explore the science behind preparation exercise and dive into how intrinsic biomechanics and neuromuscular science help manage symptoms and support long-term movement health.\r\n<h3>Why Movement Matters: The Biomechanics of Dysfunction</h3>\r\nThe human body is designed to move in a coordinated, efficient way. But life doesn’t always allow for ideal movement. Long hours sitting at a desk, repetitive daily patterns, muscular imbalances, or previous injuries can create movement limitations and cause excessive stress on joints, ligaments, and muscles. These limitations can gradually lead to symptoms, often subtle at first, but potentially long-lasting.\r\n\r\nFor example, a sedentary lifestyle can reduce the variety of postures and positions our body experiences. Over time, this can create excessive loading in certain areas like the lower back. Nerve tension can further reduce muscular output and alter joint mobility, while poor load management decreases connective tissue resilience, affecting both performance and day-to-day function.\r\n<h3>Understanding Intrinsic Biomechanics</h3>\r\nIntrinsic biomechanics is the science of how our joints, muscles, and nervous system function at a foundational level. When this system is operating optimally, movement is smooth, balanced, and energy-efficient. But when there are disruptions, like stiff joints, inhibited muscles, or nerve tethering, the body compensates. This often results in uneven stress distribution, increased wear on certain tissues, and a greater risk of symptoms.\r\n\r\nBiomechanics Coaching focuses on restoring the body’s blueprint for natural movement. Preparation exercise plays a key role in this by improving joint mobility, reducing muscular tension, and enhancing nerve mobility to create an optimal internal environment for pain-free movement.\r\n<h3>Neuromuscular Science: Reprogramming Movement</h3>\r\nThe nervous system is the command centre for movement. It controls everything from muscle activation and balance to coordination and stability. If the nervous system detects instability, perhaps due to an old injury, it may limit movement in that area and create compensatory patterns elsewhere. These adaptations can eventually lead to discomfort and dysfunction.\r\n\r\nPreparation exercises are specifically designed to re-educate the nervous system. Through targeted drills, we can improve proprioception (the body’s sense of position), restore joint control, and encourage balanced muscle function.\r\n\r\nMuscle inhibition is one of the most common contributors to dysfunction. For instance, if the glutes aren’t firing properly due to dominant hip flexors (often a result of prolonged sitting), other muscles compensate, placing excess strain on the lower back or knees. Similarly, poor control of the scapular muscles can increase the risk of shoulder discomfort. Preparation exercise aims to address these imbalances by activating underperforming muscles, restoring movement patterns, and improving joint ratios.\r\n<h3>The Four Stages of Preparation Exercise</h3>\r\nPreparation exercise is most effective when approached systematically. The first step is a detailed assessment using biomechanics tools to identify dysfunction across joints, muscles, and nerves. This isn’t about guessing, it’s about gathering accurate information on where limitations or imbalances exist.\r\n\r\nNext comes preparation and capacity building. This phase includes techniques like muscle energy techniques (METs) to improve muscular activation, joint mobilisations to enhance flexibility, and nerve glides to restore mobility and reduce inhibition.\r\n\r\nThe third stage is stability and control. This includes core progressions and functional stability work to reinforce proper movement from the inside out. When the core is strong and reactive, the body moves with more confidence and efficiency.\r\n\r\nFinally, we integrate these improvements into real-world strength and performance. This stage uses neuromuscular re-education and activity-specific movement training to ensure changes in the gym translate to everyday life or sport.\r\n<h4>Conclusion: Movement Is Medicine</h4>\r\nSymptoms aren’t always a direct result of an injury, they can often be a sign that something within the movement system isn’t functioning as it should. Preparation exercise offers a scientifically supported, holistic way to address these root causes. By improving intrinsic biomechanics and retraining the nervous system, we can support our clients in moving better, performing better, and feeling better, without relying solely on passive treatment approaches.\r\n\r\nIf you’re a coach or trainer who wants to go beyond surface-level programming and start solving the deeper causes of movement dysfunction, consider becoming a qualified Biomechanics Coach. With the right knowledge, you can help your clients take control of their movement and their symptoms, one well-prepared session at a time.','The Science Behind Preparation Exercise: Understanding the Connection Between Movement and Symptoms','','inherit','closed','closed','','43073-revision-v1','','','2025-04-25 09:25:21','2025-04-25 09:25:21','',43073,'https://biomechanicseducation.com/?p=43075',0,'revision','',0),(43076,18,'2025-04-25 09:25:36','2025-04-25 09:25:36','<h2>The Science Behind Preparation Exercise: Understanding the Connection Between Movement and Symptoms</h2>\r\nPreparation exercise has gained increasing attention in the fitness and rehabilitation world, and for good reason. As chronic symptoms and movement dysfunctions become more common in active and sedentary populations alike, understanding how the body moves, and why it sometimes doesn’t, has become crucial. Preparation exercise isn’t just about warming up; it’s about preparing the body to move well, reduce discomfort, and improve overall function.\r\n\r\nIn this blog, we’ll explore the science behind preparation exercise and dive into how intrinsic biomechanics and neuromuscular science help manage symptoms and support long-term movement health.\r\n<h3>Why Movement Matters: The Biomechanics of Dysfunction</h3>\r\nThe human body is designed to move in a coordinated, efficient way. But life doesn’t always allow for ideal movement. Long hours sitting at a desk, repetitive daily patterns, muscular imbalances, or previous injuries can create movement limitations and cause excessive stress on joints, ligaments, and muscles. These limitations can gradually lead to symptoms, often subtle at first, but potentially long-lasting.\r\n\r\nFor example, a sedentary lifestyle can reduce the variety of postures and positions our body experiences. Over time, this can create excessive loading in certain areas like the lower back. Nerve tension can further reduce muscular output and alter joint mobility, while poor load management decreases connective tissue resilience, affecting both performance and day-to-day function.\r\n<h3>Understanding Intrinsic Biomechanics</h3>\r\nIntrinsic biomechanics is the science of how our joints, muscles, and nervous system function at a foundational level. When this system is operating optimally, movement is smooth, balanced, and energy-efficient. But when there are disruptions, like stiff joints, inhibited muscles, or nerve tethering, the body compensates. This often results in uneven stress distribution, increased wear on certain tissues, and a greater risk of symptoms.\r\n\r\nBiomechanics Coaching focuses on restoring the body’s blueprint for natural movement. Preparation exercise plays a key role in this by improving joint mobility, reducing muscular tension, and enhancing nerve mobility to create an optimal internal environment for pain-free movement.\r\n<h3>Neuromuscular Science: Reprogramming Movement</h3>\r\nThe nervous system is the command centre for movement. It controls everything from muscle activation and balance to coordination and stability. If the nervous system detects instability, perhaps due to an old injury, it may limit movement in that area and create compensatory patterns elsewhere. These adaptations can eventually lead to discomfort and dysfunction.\r\n\r\nPreparation exercises are specifically designed to re-educate the nervous system. Through targeted drills, we can improve proprioception (the body’s sense of position), restore joint control, and encourage balanced muscle function.\r\n\r\nMuscle inhibition is one of the most common contributors to dysfunction. For instance, if the glutes aren’t firing properly due to dominant hip flexors (often a result of prolonged sitting), other muscles compensate, placing excess strain on the lower back or knees. Similarly, poor control of the scapular muscles can increase the risk of shoulder discomfort. Preparation exercise aims to address these imbalances by activating underperforming muscles, restoring movement patterns, and improving joint ratios.\r\n<h3>The Four Stages of Preparation Exercise</h3>\r\nPreparation exercise is most effective when approached systematically. The first step is a detailed assessment using biomechanics tools to identify dysfunction across joints, muscles, and nerves. This isn’t about guessing, it’s about gathering accurate information on where limitations or imbalances exist.\r\n\r\nNext comes preparation and capacity building. This phase includes techniques like muscle energy techniques (METs) to improve muscular activation, joint mobilisations to enhance flexibility, and nerve glides to restore mobility and reduce inhibition.\r\n\r\nThe third stage is stability and control. This includes core progressions and functional stability work to reinforce proper movement from the inside out. When the core is strong and reactive, the body moves with more confidence and efficiency.\r\n\r\nFinally, we integrate these improvements into real-world strength and performance. This stage uses neuromuscular re-education and activity-specific movement training to ensure changes in the gym translate to everyday life or sport.\r\n<h4>Conclusion: Movement Is Medicine</h4>\r\nSymptoms aren’t always a direct result of an injury, they can often be a sign that something within the movement system isn’t functioning as it should. Preparation exercise offers a scientifically supported, holistic way to address these root causes. By improving intrinsic biomechanics and retraining the nervous system, we can support our clients in moving better, performing better, and feeling better, without relying solely on passive treatment approaches.\r\n\r\nIf you’re a coach or trainer who wants to go beyond surface-level programming and start solving the deeper causes of movement dysfunction, consider becoming a qualified Biomechanics Coach. With the right knowledge, you can help your clients take control of their movement and their symptoms, one well-prepared session at a time.','The Science Behind Preparation Exercise: Understanding the Connection Between Movement and Symptoms','','inherit','closed','closed','','43073-revision-v1','','','2025-04-25 09:25:36','2025-04-25 09:25:36','',43073,'https://biomechanicseducation.com/?p=43076',0,'revision','',0),(43077,18,'2025-04-25 09:25:51','2025-04-25 09:25:51','<h2>The Science Behind Preparation Exercise: Understanding the Connection Between Movement and Symptoms</h2>\r\nPreparation exercise has gained increasing attention in the fitness and rehabilitation world, and for good reason. As chronic symptoms and movement dysfunctions become more common in active and sedentary populations alike, understanding how the body moves, and why it sometimes doesn’t, has become crucial. Preparation exercise isn’t just about warming up; it’s about preparing the body to move well, reduce discomfort, and improve overall function.\r\n\r\nIn this blog, we’ll explore the science behind preparation exercise and dive into how intrinsic biomechanics and neuromuscular science help manage symptoms and support long-term movement health.\r\n<h3>Why Movement Matters: The Biomechanics of Dysfunction</h3>\r\nThe human body is designed to move in a coordinated, efficient way. But life doesn’t always allow for ideal movement. Long hours sitting at a desk, repetitive daily patterns, muscular imbalances, or previous injuries can create movement limitations and cause excessive stress on joints, ligaments, and muscles. These limitations can gradually lead to symptoms, often subtle at first, but potentially long-lasting.\r\n\r\nFor example, a sedentary lifestyle can reduce the variety of postures and positions our body experiences. Over time, this can create excessive loading in certain areas like the lower back. Nerve tension can further reduce muscular output and alter joint mobility, while poor load management decreases connective tissue resilience, affecting both performance and day-to-day function.\r\n<h3>Understanding Intrinsic Biomechanics</h3>\r\nIntrinsic biomechanics is the science of how our joints, muscles, and nervous system function at a foundational level. When this system is operating optimally, movement is smooth, balanced, and energy-efficient. But when there are disruptions, like stiff joints, inhibited muscles, or nerve tethering, the body compensates. This often results in uneven stress distribution, increased wear on certain tissues, and a greater risk of symptoms.\r\n\r\nBiomechanics Coaching focuses on restoring the body’s blueprint for natural movement. Preparation exercise plays a key role in this by improving joint mobility, reducing muscular tension, and enhancing nerve mobility to create an optimal internal environment for pain-free movement.\r\n<h3>Neuromuscular Science: Reprogramming Movement</h3>\r\nThe nervous system is the command centre for movement. It controls everything from muscle activation and balance to coordination and stability. If the nervous system detects instability, perhaps due to an old injury, it may limit movement in that area and create compensatory patterns elsewhere. These adaptations can eventually lead to discomfort and dysfunction.\r\n\r\nPreparation exercises are specifically designed to re-educate the nervous system. Through targeted drills, we can improve proprioception (the body’s sense of position), restore joint control, and encourage balanced muscle function.\r\n\r\nMuscle inhibition is one of the most common contributors to dysfunction. For instance, if the glutes aren’t firing properly due to dominant hip flexors (often a result of prolonged sitting), other muscles compensate, placing excess strain on the lower back or knees. Similarly, poor control of the scapular muscles can increase the risk of shoulder discomfort. Preparation exercise aims to address these imbalances by activating underperforming muscles, restoring movement patterns, and improving joint ratios.\r\n<h3>The Four Stages of Preparation Exercise</h3>\r\nPreparation exercise is most effective when approached systematically. The first step is a detailed assessment using biomechanics tools to identify dysfunction across joints, muscles, and nerves. This isn’t about guessing, it’s about gathering accurate information on where limitations or imbalances exist.\r\n\r\nNext comes preparation and capacity building. This phase includes techniques like muscle energy techniques (METs) to improve muscular activation, joint mobilisations to enhance flexibility, and nerve glides to restore mobility and reduce inhibition.\r\n\r\nThe third stage is stability and control. This includes core progressions and functional stability work to reinforce proper movement from the inside out. When the core is strong and reactive, the body moves with more confidence and efficiency.\r\n\r\nFinally, we integrate these improvements into real-world strength and performance. This stage uses neuromuscular re-education and activity-specific movement training to ensure changes in the gym translate to everyday life or sport.\r\n<h4>Conclusion: Movement Is Medicine</h4>\r\nSymptoms aren’t always a direct result of an injury, they can often be a sign that something within the movement system isn’t functioning as it should. Preparation exercise offers a scientifically supported, holistic way to address these root causes. By improving intrinsic biomechanics and retraining the nervous system, we can support our clients in moving better, performing better, and feeling better, without relying solely on passive treatment approaches.\r\n\r\nIf you’re a coach or trainer who wants to go beyond surface-level programming and start solving the deeper causes of movement dysfunction, consider becoming a qualified Biomechanics Coach. With the right knowledge, you can help your clients take control of their movement and their symptoms, one well-prepared session at a time.','The Science Behind Preparation Exercise: Understanding the Connection Between Movement and Symptoms','','inherit','closed','closed','','43073-revision-v1','','','2025-04-25 09:25:51','2025-04-25 09:25:51','',43073,'https://biomechanicseducation.com/?p=43077',0,'revision','',0),(43078,3,'2025-08-12 08:00:30','2025-08-12 08:00:30','<h2>Top 5 Preparation Exercises Every Trainer Should Know</h2>\r\nPreparation exercises are a game-changer for trainers who want to improve their clients’ movement, reduce injury risk, and boost performance. Beyond just warming up, these exercises are rooted in movement improvement techniques that address the underlying causes of dysfunction, muscular imbalances, and joint limitations. Let’s explore five essential preparation exercises that should be part of every trainer’s toolkit.\r\n<h3>1. Muscle Energy Techniques (M.E.T) for Muscle Function</h3>\r\nMuscle energy techniques are a staple in both rehab and performance settings. They help improve muscle function that often develops due to sedentary habits, like prolonged sitting. These techniques work by using low-grade, isometric (static) muscle contractions to reset tone and optimise muscle performance.\r\n\r\nUsing your hand as a static resistance on the inside of the knee while gently internally rotating the hip generates energy within the muscle, training the muscle to contract more effectively. Over time, this can reduce tension, increase joint stability, and improve movement quality at the pelvis.\r\n<h3>2. Pelvic Tilts for Lumbar Spine Mobility</h3>\r\nThe lumbar spine often becomes stiff due to long hours spent sitting. When spinal joints are restricted, movement is often compensated elsewhere, leading to strain and dysfunction. Pelvic tilts help restore gentle mobility through the lumbar region and also mobilise the nerve roots in the spine, easing neural tension.\r\n\r\nLying on the floor with knees bent, gently tip the pelvis backward and then forward, keeping the motion smooth and relaxed. This movement promotes hydration of spinal ligaments and reduces pressure in the lower back, making it ideal for clients with sedentary lifestyles.\r\n<h3>3. Sciatic Nerve Slump for Nerve Mobility</h3>\r\nNerve mobilisations may sound clinical, but they’re a powerful tool in any trainer’s preparation plan. The sciatic nerve slump mobilisation, for example, helps reduce tension along the nerve pathways, especially useful in clients with stiffness from repetitive movements.\r\n\r\nPerformed slowly while seated, the slump involves slowly rounding the back, tucking the chin, and gently extending the leg until the beginning of tension is felt. The goal isn’t to stretch, but to glide the nerve through its pathway, improving mobility and reducing muscle inhibition. This often results in improved strength and coordination.\r\n\r\nNote: <em>Only use this technique with clients free of current neural symptoms, unless under guidance from a healthcare professional.</em>\r\n<h3>4. Dead Bug for Core Stability and Coordination</h3>\r\nThe dead bug is a foundational movement that trains the anterior trunk to stabilise during movement, key for anterior strength, balance, and risk reduction when combined with posterior strength. It also enhances coordination between upper and lower limbs, crucial for functional tasks like lifting, running, and rotational movement.\r\n\r\nLying on your back with arms and legs in the air, slowly lower the opposite arm and leg while maintaining a neutral spine. Focus on control, not speed. This strengthens the deep core and reinforces postural alignment.\r\n<h3>5. Antagonist Strength Training for Hip Balance</h3>\r\nMost people have strength imbalances around the hips, which can lead to joint instability, dysfunctional gait, or even discomfort. Preparation work here is essential to restore balance and prevent lower-body issues.\r\n\r\nDuring a lunge, for example, adding a resistance band around the inside of the knee allows the front leg to be trained in both the frontal and sagittal planes: the band challenges the inner thigh muscles (adductors), while the hip and knee extensors primarily perform the lunge. Then, the band can be moved to the opposite side of the joint to resist abduction and engage the outer thigh muscles.\r\n\r\nThis method is simple but can be effective in improving pelvic control and reducing lower-body compensations.\r\n<h4>Final Thoughts</h4>\r\nThese five preparation exercises are more than just warm-ups, they’re targeted strategies for improving function, addressing movement restrictions, and building a more resilient body. Whether your client is new to training or returning from injury, integrating these into your sessions can lead to better outcomes in both movement quality and performance.\r\n\r\nAre you using preparation exercises in your client programming? Share your experience in the comments!','Top 5 Preparation Exercises Every Trainer Should Know','','future','closed','closed','','top-5-preparation-exercises-every-trainer-should-know','','','2025-07-03 09:23:18','2025-07-03 09:23:18','',0,'https://biomechanicseducation.com/?p=43078',0,'post','',0),(43079,18,'2025-04-25 09:36:57','2025-04-25 09:36:57','<h2>Top 5 Preparation Exercises Every Trainer Should Know</h2>\r\nPreparation exercises are a game-changer for trainers who want to improve their clients’ movement, reduce injury risk, and boost performance. Beyond just warming up, these exercises are rooted in corrective techniques that address the underlying causes of dysfunction, poor posture, muscular imbalances, and joint limitations. Let’s explore five essential preparation exercises that should be part of every trainer’s toolkit.\r\n<h3>1. Muscle Energy Techniques (M.E.T) for Muscle Function</h3>\r\nMuscle energy techniques are a staple in rehab and performance settings. They help correct muscular adaptations that often develop due to sedentary habits, like prolonged sitting. These techniques work by using gentle, controlled muscle contractions to reset muscle tone and improve function.\r\n\r\nA common method involves lying on your back, knees bent, with one ankle crossed over the opposite knee. Applying light resistance with your hand to the inner knee while gently internally rotating the hip trains the muscle to contract more effectively. Over time, this can reduce tightness, increase joint stability, and improve movement quality, particularly at the hips and pelvis.\r\n<h3>2. Pelvic Tilts for Lumbar Spine Mobility</h3>\r\nThe lumbar spine often becomes stiff due to long hours spent sitting. When spinal joints are restricted, movement has to come from somewhere else, usually resulting in compensations and added strain on surrounding areas. Pelvic tilts help restore gentle mobility through the lumbar region and also mobilise the nerve roots in the spine, easing neural tension.\r\n\r\nLying on the floor with knees bent, gently tip the pelvis backward and then forward, keeping the motion smooth and relaxed. This movement promotes hydration of spinal ligaments and reduces pressure in the lower back, making it an ideal addition for clients who spend time at a desk.\r\n<h3>3. Sciatic Nerve Slump for Nerve Mobility</h3>\r\nNerve mobilisations may sound clinical, but they’re a powerful tool in any trainer’s preparation plan. The sciatic nerve slump, for example, helps reduce tension along the nerve pathways, especially useful in clients with past neural symptoms or stiffness from repetitive movements.\r\n\r\nPerformed slowly and deliberately while seated, the slump involves rounding the back, tucking the chin, and gently extending the leg until light tension is felt. The movement isn’t about stretching, it’s about gliding the nerve through its pathway to improve mobility and reduce muscle inhibition. This can lead to improvements in strength and coordination.\r\n\r\nNote: Trainers should only use this technique with clients free of current neural symptoms, unless under the guidance of a healthcare professional.\r\n<h3>4. Dead Bug for Core Stability and Coordination</h3>\r\nThe dead bug is a foundational movement that trains the anterior trunk to stabilise during movement, key for posture, balance, and injury prevention. It helps improve coordination between upper and lower limbs, which is especially important for dynamic activities like running or lifting.\r\n\r\nLying on your back with arms and legs in the air, slowly lower the opposite arm and leg while maintaining a neutral spine. The goal is control, not speed. When done correctly, it strengthens the deep core and builds the foundation for more complex movement patterns.\r\n<h3>5. Antagonist Strength Training for Hip Balance</h3>\r\nMost people have strength imbalances around the hips, which can lead to joint instability, poor gait, or knee pain. By targeting both sides of the joint, adductors and abductors, you can create better strength ratios and balance.\r\n\r\nUsing a resistance band attached at knee height, one leg is trained in both directions by changing the direction of force: once to challenge the inner thigh muscles (adductors), and again to work the outer hips (abductors). This method is simple but incredibly effective in improving pelvic control and reducing lower-body compensation patterns.\r\n<h4>Final Thoughts</h4>\r\nThese five preparation exercises are more than just warm-ups, they’re targeted strategies for improving function, addressing movement restrictions, and building a more resilient body. Whether your client is new to training or returning from an injury, integrating these into your sessions will create better outcomes in both movement quality and performance.\r\n\r\nAre you using preparation exercises in your client programming? Share your experience in the comments!','Top 5 Preparation Exercises Every Trainer Should Know','','inherit','closed','closed','','43078-revision-v1','','','2025-04-25 09:36:57','2025-04-25 09:36:57','',43078,'https://biomechanicseducation.com/?p=43079',0,'revision','',0),(43080,18,'2025-04-25 09:37:13','2025-04-25 09:37:13','<h2>Top 5 Preparation Exercises Every Trainer Should Know</h2>\r\nPreparation exercises are a game-changer for trainers who want to improve their clients’ movement, reduce injury risk, and boost performance. Beyond just warming up, these exercises are rooted in corrective techniques that address the underlying causes of dysfunction, poor posture, muscular imbalances, and joint limitations. Let’s explore five essential preparation exercises that should be part of every trainer’s toolkit.\r\n<h3>1. Muscle Energy Techniques (M.E.T) for Muscle Function</h3>\r\nMuscle energy techniques are a staple in rehab and performance settings. They help correct muscular adaptations that often develop due to sedentary habits, like prolonged sitting. These techniques work by using gentle, controlled muscle contractions to reset muscle tone and improve function.\r\n\r\nA common method involves lying on your back, knees bent, with one ankle crossed over the opposite knee. Applying light resistance with your hand to the inner knee while gently internally rotating the hip trains the muscle to contract more effectively. Over time, this can reduce tightness, increase joint stability, and improve movement quality, particularly at the hips and pelvis.\r\n<h3>2. Pelvic Tilts for Lumbar Spine Mobility</h3>\r\nThe lumbar spine often becomes stiff due to long hours spent sitting. When spinal joints are restricted, movement has to come from somewhere else, usually resulting in compensations and added strain on surrounding areas. Pelvic tilts help restore gentle mobility through the lumbar region and also mobilise the nerve roots in the spine, easing neural tension.\r\n\r\nLying on the floor with knees bent, gently tip the pelvis backward and then forward, keeping the motion smooth and relaxed. This movement promotes hydration of spinal ligaments and reduces pressure in the lower back, making it an ideal addition for clients who spend time at a desk.\r\n<h3>3. Sciatic Nerve Slump for Nerve Mobility</h3>\r\nNerve mobilisations may sound clinical, but they’re a powerful tool in any trainer’s preparation plan. The sciatic nerve slump, for example, helps reduce tension along the nerve pathways, especially useful in clients with past neural symptoms or stiffness from repetitive movements.\r\n\r\nPerformed slowly and deliberately while seated, the slump involves rounding the back, tucking the chin, and gently extending the leg until light tension is felt. The movement isn’t about stretching, it’s about gliding the nerve through its pathway to improve mobility and reduce muscle inhibition. This can lead to improvements in strength and coordination.\r\n\r\nNote: Trainers should only use this technique with clients free of current neural symptoms, unless under the guidance of a healthcare professional.\r\n<h3>4. Dead Bug for Core Stability and Coordination</h3>\r\nThe dead bug is a foundational movement that trains the anterior trunk to stabilise during movement, key for posture, balance, and injury prevention. It helps improve coordination between upper and lower limbs, which is especially important for dynamic activities like running or lifting.\r\n\r\nLying on your back with arms and legs in the air, slowly lower the opposite arm and leg while maintaining a neutral spine. The goal is control, not speed. When done correctly, it strengthens the deep core and builds the foundation for more complex movement patterns.\r\n<h3>5. Antagonist Strength Training for Hip Balance</h3>\r\nMost people have strength imbalances around the hips, which can lead to joint instability, poor gait, or knee pain. By targeting both sides of the joint, adductors and abductors, you can create better strength ratios and balance.\r\n\r\nUsing a resistance band attached at knee height, one leg is trained in both directions by changing the direction of force: once to challenge the inner thigh muscles (adductors), and again to work the outer hips (abductors). This method is simple but incredibly effective in improving pelvic control and reducing lower-body compensation patterns.\r\n<h4>Final Thoughts</h4>\r\nThese five preparation exercises are more than just warm-ups, they’re targeted strategies for improving function, addressing movement restrictions, and building a more resilient body. Whether your client is new to training or returning from an injury, integrating these into your sessions will create better outcomes in both movement quality and performance.\r\n\r\nAre you using preparation exercises in your client programming? Share your experience in the comments!','Top 5 Preparation Exercises Every Trainer Should Know','','inherit','closed','closed','','43078-revision-v1','','','2025-04-25 09:37:13','2025-04-25 09:37:13','',43078,'https://biomechanicseducation.com/?p=43080',0,'revision','',0),(43081,3,'2025-08-05 08:00:29','2025-08-05 08:00:29','<h2>What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?</h2>\r\n<h3>Understanding Corrective Exercise</h3>\r\nIn today’s evolving fitness landscape, helping clients achieve long-term success means more than just prescribing squats and cardio. It’s about understanding how they move, identifying what might be holding them back, and addressing the root causes of dysfunction. That’s where preparation exercise, formerly known as corrective exercise, comes in.\r\n\r\nPreparation exercise refers to a specialised set of movements and techniques designed to improve movement quality. These exercises help address issues such as muscle inhibition, poor joint mobility, nerve tension, and imbalances, factors that influence how well someone moves, performs, and recovers.\r\n<h3>Why Language Matters</h3>\r\nAlthough “corrective” is the commonly used term, it can carry negative implications. Clients may assume something is wrong, leading to feelings of inadequacy or hesitation. That’s why professionals are shifting towards terms like movement optimisation, preparation exercise, or movement enhancement, language that empowers rather than discourages.\r\n<h3>The Role of Movement Assessments</h3>\r\nA successful movement optimisation programme begins with assessments. This foundational step helps identify dysfunctions such as stiff joints, tight nerves, or inhibited muscles.\r\n\r\nRather than focusing solely on symptoms, the aim is to uncover and address the root causes. These may include compensatory movements developed over time due to lifestyle habits, injury history, or imbalanced training.\r\n<h3>Building a Movement Improvement Programme</h3>\r\nOnce key limitations are identified, a tailored plan can be built around specific goals. This includes improving underactive muscles, restoring flexibility, unlocking joint mobility, and rebuilding strength. But it doesn’t stop there, clients must also integrate those improvements into real-world movement.\r\n<h3>From Isolation to Integration</h3>\r\nAs mobility and control are restored, clients are guided through exercises that reinforce improved movements. These help build confidence, improve proprioception, and ensure that progress is not just temporary but sustainable.\r\n<h3>Why Corrective (Preparation) Exercise Is Essential</h3>\r\n<h4>1. Reduces Injury Risk</h4>\r\nDysfunction in key areas like the pelvis, shoulders, and spine can lead to compensations, overuse issues, and eventually injury. Preparation exercises help rebalance and realign movement, reducing wear and tear on joints and tissues.\r\n<h4>2. Optimises Physical Performance</h4>\r\nWhether working with beginners or elite athletes, improved mobility, stability, and coordination mean more efficient movement and more effective training sessions. Preparation work supports power output, endurance, and recovery.\r\n<h4>3. Accelerates Recovery</h4>\r\nFor clients returning from injury or surgery, these techniques act as a bridge between rehabilitation and performance training. They restore muscular control and reduce the risk of re-injury by targeting the neuromuscular system.\r\n<h4>4. Improves Day-to-Day Function</h4>\r\nEfficient movement means clients expend less energy and experience less strain, whether they’re working out or going about their daily routines. The result? Less fatigue, fewer aches, and greater overall quality of life.\r\n<h3>Implementing Corrective Exercise as a Trainer</h3>\r\nFor exercise professionals, it all begins with a solid assessment process. Tools like Downing’s Sign or the 4 Sign Test can quickly identify movement inefficiencies. From there, a programme can be built with strategic preparation techniques, such as:\r\n<ul>\r\n 	<li>Muscle energy techniques to improve contractile function.</li>\r\n 	<li>Nerve mobilisation drills to reduce neural tension.</li>\r\n 	<li>Foam rolling and soft tissue work to decrease muscular tightness.</li>\r\n 	<li>Joint-specific mobility exercises to open restricted ranges.</li>\r\n 	<li>Trunk control exercises to improve core stiffness and stability.</li>\r\n</ul>\r\nThese methods can be incorporated into warm-ups, cool-downs, or even standalone movement improvement sessions depending on your client’s needs.\r\n<h4>Final Thoughts</h4>\r\nPreparation (or corrective) exercise isn’t about fixing problems, it’s about enhancing movement. It allows clients to train harder, recover faster, and move with more confidence. As a trainer or fitness professional, this knowledge sets you apart. When you address the root causes of dysfunction, you’re not just helping clients feel better, you’re building their long-term success.\r\n\r\nIf you’re ready to elevate your client outcomes and lead with a science-backed approach, start integrating preparation exercise into your programming today. Your clients will feel the difference, and so will you.','What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?','','future','closed','closed','','what-is-corrective-exercise-and-is-it-essential-for-your-clients','','','2025-07-03 09:23:04','2025-07-03 09:23:04','',0,'https://biomechanicseducation.com/?p=43081',0,'post','',0),(43082,18,'2025-04-25 09:46:59','2025-04-25 09:46:59','<h2>What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?</h2>\r\n<h3>Understanding Corrective Exercise</h3>\r\nIn today’s evolving fitness landscape, helping clients achieve long-term success means more than just prescribing squats and cardio. It’s about understanding how they move, identifying what might be holding them back, and addressing the root causes of dysfunction. That’s where corrective exercise—or what many now call preparation exercise—comes in.\r\n\r\nCorrective exercise refers to a specialised set of movements and techniques designed to improve movement quality. These exercises help address issues such as muscle inhibition, poor joint mobility, nerve tension, and imbalances—factors that influence how well someone moves, performs, and recovers.\r\n<h3>Why Language Matters</h3>\r\nAlthough “corrective” is the commonly used term, it can carry negative implications. Clients may assume something is wrong, leading to feelings of inadequacy or hesitation. That’s why professionals are shifting towards terms like movement optimisation, preparation exercise, or movement enhancement—language that empowers rather than discourages.\r\n<h3>The Role of Movement Assessments</h3>\r\nA successful movement optimisation programme begins with assessments. This foundational step helps identify dysfunctions such as stiff joints, tight nerves, or inhibited muscles.\r\n\r\nRather than focusing solely on symptoms, the aim is to uncover and address the root causes. These may include compensatory movement patterns developed over time due to lifestyle habits, injury history, or imbalanced training.\r\n<h3>Building a Movement Improvement Programme</h3>\r\nOnce key limitations are identified, a tailored plan can be built around specific goals. This includes improving underactive muscles, restoring flexibility, unlocking joint mobility, and rebuilding strength. But it doesn’t stop there—clients must also integrate those improvements into real-world movement.\r\n<h3>From Isolation to Integration</h3>\r\nAs mobility and control are restored, clients are guided through exercises that reinforce improved movement patterns. These help build confidence, improve proprioception, and ensure that progress is not just temporary but sustainable.\r\n<h3>Why Corrective (Preparation) Exercise Is Essential</h3>\r\n<h4>1. Reduces Injury Risk</h4>\r\nDysfunction in key areas like the pelvis, shoulders, and spine can lead to compensations, overuse issues, and eventually injury. Preparation exercises help rebalance and realign movement, reducing wear and tear on joints and tissues.\r\n<h4>2. Optimises Physical Performance</h4>\r\nWhether working with beginners or elite athletes, improved mobility, stability, and coordination mean more efficient movement—and more effective training sessions. Preparation work supports power output, endurance, and recovery.\r\n<h4>3. Accelerates Recovery</h4>\r\nFor clients returning from injury or surgery, these techniques act as a bridge between rehabilitation and performance training. They restore muscular control and reduce risk of re-injury by targeting the neuromuscular system.\r\n<h4>4. Improves Day-to-Day Function</h4>\r\nEfficient movement means clients expend less energy and experience less strain, whether they’re working out or going about their daily routines. The result? Less fatigue, fewer aches, and greater overall quality of life.\r\n<h3>Implementing Corrective Exercise as a Trainer</h3>\r\nFor exercise professionals, it all begins with a solid assessment process. Tools like Downing’s Sign or the 4 Sign Test can quickly identify movement inefficiencies. From there, a programme can be built with strategic preparation techniques, such as:\r\n<ul>\r\n 	<li>Muscle energy techniques to improve contractile function.</li>\r\n 	<li>Nerve mobilisation drills to reduce neural tension.</li>\r\n 	<li>Foam rolling and soft tissue work to decrease muscular tightness.</li>\r\n 	<li>Joint-specific mobility exercises to open restricted ranges.</li>\r\n 	<li>Trunk control exercises to improve core stiffness and stability.</li>\r\n</ul>\r\nThese methods can be incorporated into warm-ups, cool-downs, or even standalone corrective sessions depending on your client’s needs.\r\n<h4>Final Thoughts</h4>\r\nCorrective—or preparation—exercise isn’t just about fixing problems; it’s about enhancing movement. It allows clients to train harder, recover faster, and move with more confidence. As a trainer or fitness professional, this knowledge sets you apart. When you address the root causes of dysfunction, you’re not just helping clients feel better—you’re building their long-term success.\r\n\r\nIf you’re ready to elevate your client outcomes and lead with a science-backed approach, start integrating preparation exercise into your programming today. Your clients will feel the difference—and so will you.','What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?','','inherit','closed','closed','','43081-revision-v1','','','2025-04-25 09:46:59','2025-04-25 09:46:59','',43081,'https://biomechanicseducation.com/?p=43082',0,'revision','',0),(43083,18,'2025-04-25 09:48:03','2025-04-25 09:48:03','<h2>What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?</h2>\r\n<h3>Understanding Corrective Exercise</h3>\r\nIn today’s evolving fitness landscape, helping clients achieve long-term success means more than just prescribing squats and cardio. It’s about understanding how they move, identifying what might be holding them back, and addressing the root causes of dysfunction. That’s where corrective exercise—or what many now call preparation exercise, comes in.\r\n\r\nCorrective exercise refers to a specialised set of movements and techniques designed to improve movement quality. These exercises help address issues such as muscle inhibition, poor joint mobility, nerve tension, and imbalances, factors that influence how well someone moves, performs, and recovers.\r\n<h3>Why Language Matters</h3>\r\nAlthough “corrective” is the commonly used term, it can carry negative implications. Clients may assume something is wrong, leading to feelings of inadequacy or hesitation. That’s why professionals are shifting towards terms like movement optimisation, preparation exercise, or movement enhancement, language that empowers rather than discourages.\r\n<h3>The Role of Movement Assessments</h3>\r\nA successful movement optimisation programme begins with assessments. This foundational step helps identify dysfunctions such as stiff joints, tight nerves, or inhibited muscles.\r\n\r\nRather than focusing solely on symptoms, the aim is to uncover and address the root causes. These may include compensatory movement patterns developed over time due to lifestyle habits, injury history, or imbalanced training.\r\n<h3>Building a Movement Improvement Programme</h3>\r\nOnce key limitations are identified, a tailored plan can be built around specific goals. This includes improving underactive muscles, restoring flexibility, unlocking joint mobility, and rebuilding strength. But it doesn’t stop there, clients must also integrate those improvements into real-world movement.\r\n<h3>From Isolation to Integration</h3>\r\nAs mobility and control are restored, clients are guided through exercises that reinforce improved movement patterns. These help build confidence, improve proprioception, and ensure that progress is not just temporary but sustainable.\r\n<h3>Why Corrective (Preparation) Exercise Is Essential</h3>\r\n<h4>1. Reduces Injury Risk</h4>\r\nDysfunction in key areas like the pelvis, shoulders, and spine can lead to compensations, overuse issues, and eventually injury. Preparation exercises help rebalance and realign movement, reducing wear and tear on joints and tissues.\r\n<h4>2. Optimises Physical Performance</h4>\r\nWhether working with beginners or elite athletes, improved mobility, stability, and coordination mean more efficient movement, and more effective training sessions. Preparation work supports power output, endurance, and recovery.\r\n<h4>3. Accelerates Recovery</h4>\r\nFor clients returning from injury or surgery, these techniques act as a bridge between rehabilitation and performance training. They restore muscular control and reduce risk of re-injury by targeting the neuromuscular system.\r\n<h4>4. Improves Day-to-Day Function</h4>\r\nEfficient movement means clients expend less energy and experience less strain, whether they’re working out or going about their daily routines. The result? Less fatigue, fewer aches, and greater overall quality of life.\r\n<h3>Implementing Corrective Exercise as a Trainer</h3>\r\nFor exercise professionals, it all begins with a solid assessment process. Tools like Downing’s Sign or the 4 Sign Test can quickly identify movement inefficiencies. From there, a programme can be built with strategic preparation techniques, such as:\r\n<ul>\r\n 	<li>Muscle energy techniques to improve contractile function.</li>\r\n 	<li>Nerve mobilisation drills to reduce neural tension.</li>\r\n 	<li>Foam rolling and soft tissue work to decrease muscular tightness.</li>\r\n 	<li>Joint-specific mobility exercises to open restricted ranges.</li>\r\n 	<li>Trunk control exercises to improve core stiffness and stability.</li>\r\n</ul>\r\nThese methods can be incorporated into warm-ups, cool-downs, or even standalone corrective sessions depending on your client’s needs.\r\n<h4>Final Thoughts</h4>\r\nCorrective, or preparation exercise isn’t just about fixing problems; it’s about enhancing movement. It allows clients to train harder, recover faster, and move with more confidence. As a trainer or fitness professional, this knowledge sets you apart. When you address the root causes of dysfunction, you’re not just helping clients feel better, you’re building their long-term success.\r\n\r\nIf you’re ready to elevate your client outcomes and lead with a science-backed approach, start integrating preparation exercise into your programming today. Your clients will feel the difference, and so will you.','What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?','','inherit','closed','closed','','43081-revision-v1','','','2025-04-25 09:48:03','2025-04-25 09:48:03','',43081,'https://biomechanicseducation.com/?p=43083',0,'revision','',0),(43085,0,'2025-04-25 10:41:21','2025-04-25 10:41:21','{\"firstname\":\"test\",\"lastname\":\"test\",\"email\":\"recapv2inv1@futurefit.co.uk\",\"contactnumber\":\"32145698700\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680b66d1ae48b3.65131158','','','2025-04-25 10:41:21','2025-04-25 10:41:21','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680b66d1ae48b3.65131158',0,'cd-form-entry','',0),(43086,0,'2025-04-25 14:12:36','2025-04-25 14:12:36','{\"firstname\":\"Paulo\",\"lastname\":\"Alencar\",\"email\":\"Alencar4u@hotmail.com\",\"contactnumber\":\"07514835273\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sB8VyCYi-RsZWIwjRJuh8sS&amp;gclid=Cj0KCQjw5azABhD1ARIsAA0WFUFxdGbe8TFbO9FOEGU9ZWujyd7XGUsjYTqyHmGLOfk9fJEqdQpXCK4aAqHoEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7fcnH34UBSPZFQbQ2b4kYJxBp8bLxhbaXkGszAkn_D1yORyimv0SsTLu60eRjH8KzsTz8FKQE3Fdslx0e-KATxeTVflnSMwRH5jy-iZXnEgmsa6npMfeAZJN90YPxt2S_kKwCmhmaodJM6a_Niw_rZZLQh1FvMqtilFDqz8i0S9vJNh_kniTeOo9axYvlYnQDN1YPPt8tH63rCuLk0b_fK2ur7wTVOptr9L5ofIlSWf0b10H88Wdb80sk1yPD9Espa6qzsSXEgWRSt4v5vjTI3qaxvN0JC3ONnMinDHgCQ43Hi8Hcwf3PNDiYS2f87gJDxOlz_Rm0Nra96vZhJVF_SH1TqL-liUOXN1MAjET0jrRnrxu0khQFmAqg55UeI3RKZZYNgc-HB2ku0j7nrpsyouE_ujWeBFwwnAZW8ZLpUPpthwImogfK2997uaBL-zGVWFQpS6lckv8zVSGxvhasfsOSfRO0EiSmtn-dKet_U5Lv9vSRdVz3lPXx3u_24HHqee-oEcyuwaT3eHoZT8XM2hKcCbTaLAyyW7n6IvG5CB34H3YkTkcokKfaserK6ns9mAgGlvzT_BSWn6RWacaLj0IpsdXMAqcOHVNDzoJY00qDPWkA63yqqc-c_DYbTjf4U1NhDV_lvbGLoJNycDMJSVwgQUWpoda2tck2Gzrycpn6B0BrWPDhu02qYDECAbhSMTGAQaat9tohRuEEu4upCa0JnenpFG5U0EVDmCVn0cXzEDGtZiPP3apgEco-7TRrAGWlPq2N2g2D82iR6w0pU_gh0KPQe3X9SWvtax2gtT1wOjFqJ9SZ_CglNyvafMZIIuuAvrEcxw_VNIsA_rnhUBsPxW2tLPdaFvTU0roFhMmqotYdvmK9xB2q5uqfIdYF2qGTI2i-m_I3JlKjepksFnKqYQbt_RoVhaT_NpyXDjNBmzAqDyNuAOcjjlYwmDjSCDy_WuoweCHm7DeSxrwv_NXCkfiQn-LJCm5VVyL488U5djH96xjgnKaq9iTD0snNzCMjd0A9yj3vA5IcBtGORxxAX446XyZwDOJKfrbSWP3VBNKoTu_I3WtmYAlcwfz1CCaLGyjQvAlOvxjJUoIgDGC9jetpLNT46AOyg_IDRKT2C7E98zf7-SvNUnZFAmzkIFWJvYHxUrm-aXP26npZgdLMTjnZgH3suLoZdV6FxSSXvyjLBRdnsGpUGRAfOrXBGgBLonM6knjdEfNqjXJwVqnovrJ4cf0pa8EBpVlp2F14y6gt5P2fH_vLEcW9BXE-22qNPcg-ET5oo3kPdYW8rH-Xd2uI5GoSODIb9g3SiF7uvfcao90ZflL6dCwfYaSjO_uwMewJfT5G9BThsyCOECw3E5TY_RwbDw4BamLcDQ3QQzOw5e56CE2Nrw4dVhxZfGKag9OFvd430aFps31vBxrM2ZYIyYOWVY2Q1TvvxGSwBSQlq6ExDbgqPIeiY4PSt2jamg1sThUZLNGDE378_kv1EX4nH7Pb-98IqF9utiZVQnGEbyuMJXQePo76GNEXAbBMNzh1P344pD8f4tzAKeIxA_LEE42OvnAUM4MVDHB7tcnKljtMr2cCRkkSje3ZmzKWtWkRteFs7MBK33uVgPO9HlBTckiJQo-Z1_jF8ZZJwsDCgF2Lgr-6F3we6eqN5S-tSUeSjWlMi3aH_aDqwZUc-LDx9MfPHK59o3wNJQsddofrp5ah8CBqVYjmSI-XyrmQKow6BQ76w_bV4crcqqTIODhBl5CIGWMGtUgAKU3JrCU9nm5fMpegZUho83rZROFbqGzl-W2JbM-_YSulHQCaUtYQGN3OQDby4BPB7dCjB3-oz0LFsDv0O47HrPK_NQKpNZEAL-HN813PzZs0MneZzLFa1dwFBhNrmDXxYQzatErPSY87vIJTrdjugjTrkcmLTsCFjsgWUs6TSUAvIQkDMCuPnwFHz8A4e8RTG3uS8evoI81oyAL5Gea43NFHGz1pR6OHZI1rutdUqheUD-C-n4ax8Soug2lpyOufx-c3DDUm4doawykoj-2Fpfnez5OpJ7ZDY3j1mY3xTwo5Jwvf8OwsfiuHGA25Xg5fAd_-bW1J1p82e4Ia1BuFbLTb9UCDPdHbzaQI8qIdr1BqZU2DJedtMmVEF8zYhDIVTwuhyQouT_xISlOJ_wlpv6JirOm2k\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680b9854689167.93074045','','','2025-04-25 14:12:36','2025-04-25 14:12:36','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680b9854689167.93074045',0,'cd-form-entry','',0),(43087,0,'2025-04-25 14:14:15','2025-04-25 14:14:15','{\"email\":\"alencar4u@hotmail.com\",\"interestedbecause\":\"2\",\"agegroup\":\"5\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"N12 7no\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6sB8VyCYi-RsZWIwjRJuh8sS&amp;gclid=Cj0KCQjw5azABhD1ARIsAA0WFUFxdGbe8TFbO9FOEGU9ZWujyd7XGUsjYTqyHmGLOfk9fJEqdQpXCK4aAqHoEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA46UJ3blUH5KmligEPWq5nNKVThwREnACJl2egLmjGY7oyWIy3Adq5d0S9sWxsF0lMgSPfA_pg9H0b5Yllsi-RYXTa51iNCROwA520lRXoAtxEtSUz7MEWJrSBgrvfKdZzcSQYz3dXCmnNBMJZu_oOIQiY0POOTYoqaM_U7dMxs6tMaPPVQSw5XPl5dgSTFyeO93LLKd3uUxD9-YiVh0mo8TG2dXwDZNRQvhbrDWlZ0hs_Lw5-iTFK5jTF92IFIEBe-llMdh1llqXHmXfSzJNv_k1mo-wrtkNZKc3_o9jaWHsvSq1T2SkOt2TsrFU-JYSCzHupAxejTGnjcdPKAMlDHHWvAh-e5SHqr5V-Iyj_s_lgBgm_N5wWfi7FCCXu1kk0sXUzXmup07FUTtzNfFQjengM_Hb9lALgC356-foEs6dsaxyEeENJPEcN0e8hrisu3l7HIKTEiWMJNYIHR9iZUGZpA7wgluKVH9TXO5x2YTRoqKJMcYQgDYVXaZypimRuQtvOXhguNPHkitG85DlPC9BCWzAE7N6TYTbMEc_mWOgm71BloDTgf9FCNCd2HL7OAE-xcKjHCR2Q6TbIY1qMkVvI-b9nbU70PTxYjUDt-KWMho9LyUqmSAFMW6zoXUbulpz4_urVNfHoLW9kAjUOEjvD72Mi6Jg8p6rsgU4MmFHqhLC5PjWUahWAVVkZCBFTUsYU5dYEMzG0IlfkFi4saD5UjWKQyLV99DMyi9SprXtV8UPs5Rf3c5PpqD_mbaJqjXUMoIjLRszYUC-a4tjjRGdlnLGHLs2RXsIwekQXCLyKM1Gk36OYvLWjgNhWwewUqkpNBovGSnmF3S9YHER9AB1Zt-IZJaaYDmSXVXFkqcY10BhJy0ZRMTybtjWVdvFQStgks5OEc-QHCqJDmp2F6v1K_T7551dSfv5lEzSicxxQ0m1AC31chfxxVJQO9AOCi_zwunWzWmVrCM4liNtDJv4J7pheXcwngidDqYNsdBKeThEolglfIUv8dm0Bz6l3tdU8U9lQiI2D3mvGriwZWfpD1OV9Qota0WHOwYHhi5HC4I9p8MU40phFb8mcYc9ODyOcerq-KIoh7EcncXE0pwULW1-S-7xqBJCquzeOfZDUqxY5-zScu_F_OXwrslGLogX3_k_gdIXG5matFykI6xcrCGZlesk3jVvpoFnucRQjpaxjkSQ376dBArfQFiqZGOj_x6Ew1qEA0w-mUJofRaZuyCIfTz71n4vEcylHopqHU10tnKD8w1SneThKX9Zn_15PGPxDMzt-lhShUw6AfIWMaWciy5G4gUlLdCB-FIcASnRXLcqrKjQAAcXmbDacZ5uyP4ZL2PEn0aDUBuZz_5TWTeigKx_-3ED0i3Xpb7yNw16RUq89Jmt9VKpGUSc-bDYFxMX7H1xB8M4jSqwhxkwcY2B7lYNm38B0fHSngx5Xf9S9sSUNavrfDQMmrQPHQgwESMHb-8oeg3wzQKB1510D8_G9MoAywwUI_GHm0MtyvvxQfj4k9EiRm460l4NHBahjxDe0eJ0vcusFe8CciwtHFnDhwYwLdr_iUgTwc2GvNNphZ_gBY5jm9tSBMWhERaXWFcZOzoXyck_bsZV5ryseaB6g2YFcbfZstQEblNn0JYOVEPNFNhug31DdzOqD55WFmg2Om9Q8HR-J-xlXeV0eJ7K4XB6nsP-iCvRPs-OxDdTH6cMNVRePCqpXqQZ48E_BUXAqNoHg4gduBv9xgh5Sumvd4yurnYVZG8KEhUz6V-QM0PRVOrCvvEW7l1ZSboyVUIbb49QjlkjlrnRiF7WfQ7LnMq5W1g04PMRgrFRcIRO4e3A_hyFSnmydvwOMxzx10uPYl9OUQsNIw7TC5hcCyG3aj755Dr8Jqh1tQTr4ewwh5Hi611FsQWzyXo65Ah7yCyuNEO8mQsDeVVK_HP7sXS2yLYQqvDaky5dNsJ2M1KQUTOEojEUwHYQSSMfFoANugiKvo5rvvePWpA6wTxOpYNPOycBzKD9Id0hOtoPCltn3j_rlbnxrISSG7Hk1FDFLscaHLW4dqa01TpCc3o8xuK8_FUw7Pfvg2dXsqOjLAHcZNgyIe3gk28Ux3jZg3f2hQNdV6t3XB0VL24mcAN-UARX4H2fV3MA9CeKt1491UhsxXKcw76SYjhrvRbcnOou2oUQJf2fjULShLYmUzaZkbNA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680b989037a7e6-89428032','','','2025-04-25 14:14:15','2025-04-25 14:14:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43087',0,'cd-form-entry','',0),(43088,0,'2025-04-25 16:40:31','2025-04-25 16:40:31','{\"firstname\":\"Jennifer\",\"lastname\":\"Herbert\",\"email\":\"hello@fulcrum-pilates.com\",\"contactnumber\":\"07450246551\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6v3lMwcmN0nv6eoIyNUgOCXu&amp;gclid=Cj0KCQjw5azABhD1ARIsAA0WFUGDa6DzCc72uAUkbvIKQzUwoDTjp5joFq67WbdRq-WlNyxbf2MevTEaAnxqEALw_wcB\",\"ref_code\":\"\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680bbaffa729f5.42647312','','','2025-04-25 16:40:31','2025-04-25 16:40:31','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680bbaffa729f5.42647312',0,'cd-form-entry','',0),(43089,0,'2025-04-25 19:38:04','2025-04-25 19:38:04','{\"firstname\":\"Mel\",\"lastname\":\"Peake\",\"email\":\"melpeake86@icloud.com\",\"contactnumber\":\"07808047834\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uKrm_Pfq3J_4zVMJB-zexkf&amp;gclid=CjwKCAjwwqfABhBcEiwAZJjC3l8rhEkFyHg4g_6crmyesjwTfZhN9w2UgcQVBNn2XZ4OMzPCNzqRShoC2v8QAvD_BwE\",\"ref_code\":\"\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680be49ccdf712.47247441','','','2025-04-25 19:38:04','2025-04-25 19:38:04','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680be49ccdf712.47247441',0,'cd-form-entry','',0),(43090,0,'2025-04-25 19:39:41','2025-04-25 19:39:41','{\"firstname\":\"Mel\",\"lastname\":\"Peake\",\"email\":\"melpeake86@icloud.com\",\"contactnumber\":\"07808047834\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uKrm_Pfq3J_4zVMJB-zexkf&amp;gclid=CjwKCAjwwqfABhBcEiwAZJjC3l8rhEkFyHg4g_6crmyesjwTfZhN9w2UgcQVBNn2XZ4OMzPCNzqRShoC2v8QAvD_BwE\",\"ref_code\":\"\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680be4efe99902-04373047','','','2025-04-25 19:39:41','2025-04-25 19:39:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43090',0,'cd-form-entry','',0),(43091,0,'2025-04-26 11:55:19','2025-04-26 11:55:19','{\"firstname\":\"Anna\",\"lastname\":\"Zapletalova\",\"email\":\"a.zapletalova@hotmail.com\",\"contactnumber\":\"0838198703\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7bH4-svZA8aAmt0gZvA2RuIU8FlwRJCAoNB031v5gwKHzlBM7TM_3WaCrHF5uU5rb5iIP3aCPLRlkB-7PILLhVT31ldeqcSVkbQbegRX_7rhcYz2fXhyV8zF7ftUdxP_9lIkm5aWr9LpWKfy65cyxkOOMp0HkeL71U1JRxTwxDZjCHRA_QEIETxcmYicCGtmzMhs2aqeDs07z1SRn4RL397bzjtGUP1N63SigabDUbNzwMudc6aYcLl98uiIm7Ni52TZLcmJR5ARXSXDSbJvnSCrQS0Fs5H8Ru89QskaCK5oKnDXABNAZyecTCN7UaKMEUfHe13Vrrj2RoEEcOhc6LsC_5HRgm5LR4hU9gMo6eXTMF3LsIHA42J_y3ViX-K-E9ZOoFsnIrPAO6774gr9vDVX0lH8K12v-RzExC9XBU7smYlF9f-NpRzIWAMgZ-xxNmWSD9LLG0ee9KIKc-wxSdYx_LsfAdvAFX0tKW8NJVzKoqEFFLUECfm8DgWfe94TlWne64gUkxX3mGh8bios6aOsDz9lHSD_K9tdREvIlz1hRaALgAxtewjI56WSaRcEiaXwMJ3rf8iixKJNTjvupaUUYBHSguwCdqH26dhRGwMR__sI8KOwyYGR_rCsP4Wm6kGWaSNfLvqRv2IQE7tJqiOZs__LJ7y7PXVe2pFzqju9DPBm0aq5A5gCIYrEO__fY4rRQ9Hux8u67zxTwJbaAbrt1cTUbJbEWMqiIbYd4iS93DbiDoLfFEtJb2FyruGVMfh25T_YvZOeXjWg5_KoTruDk7TQOzGIHEiyAcJRoZyrsawVL4_a3zV3BKjYL9zXKzv_MvQic9IFpIq6WuGnJ502ZlY6L0auIKLq8sbQZg2n1caSQdsjhzUFiwK0f6Yd3mJL6_ESltDlkqx32M7qZxoqU8O0dX2b8zOQAQ04FmZibHOhE_0P34G8mKDNFh-wVUhMuvQZJkEH77EvZvodYanew0tIbuxot2ZJwXJARTjUHs4lSscj88XbSkIequqsBd7Ql4KJO1KswBEpsHQ80iddqm3l6iuAOg3rVo2-Cbi9DmQXdzdHEq_cygkMXuKx854zWO7xMWweooOBTmzgmbW8YMGbYtOXSFs34Zuu6ylxuRiuxqvnAzahLrDabZzw1CNYphYUXYnE8ezorcGdJTCNBXbKmU9SNuKtmRTT7FDCTNLWQOZhoKuokWJ6a8XZzTXQqsPGBgu_-wf72hUycAI9OnB3jht1D7k54xAApAX6GQg_ip2XSr0gLF6c8q1EES36Y6RGU91FF2k3mGMkhDgfDt0BrOMjEdYvFV4lxk1Yfbj1H8U5VMaDP28qUxzT4Wne0iLzyNcaWnIigfL1emSSCqkwoPR5NNAH0c-9X-NoaEMVEQSwBaf6cX_ppSLjiTSCvtvUOu1eijdzzVS771BGR1eV5NjQOlPIK8SacI6rcPRxDKqpLVarU-k2xlt-UOvgIMFW_GLP__sJohdCUdiZfyvdJoozUwTAUdXTQdqX9DflpGXEVIutiuOsGK16I8SaIYAv2YmN0d6DfMnbhoml-Ocxg-3-9n9Oh0yC5rK_92BHrp5HyNf8wlTNSBJ-1dnNNY2z5VqMPEgCY3jSAmD2ccxUk8IAzW1AOJj-FEb4w-XDtRXiOdPhcC3D97HcXB8IIE5_OoRghHCmyeh-Pa_aUrfWo0MmK-9f8v57RajWY1Xd9JLkS1PSxKFzi_335kHkN0bDFJJGLVIHkePMg4po4Y-YPoBDggwo2OYVNxujT06h-6Aps3tI68twsaINJ0-BYO-vKSiRth_vqwVp5eHMEEMAXKp-ei_1VrwjUTBKgNF1DNyqerwt4yIoJpHoIa2DroqNbjw-uyCjLUH0FFtyFLZjso_w3k0OKdhqebDsfFN29Vc4hhDWqVGMzlYR0kRJIY8kkJBYJcblF-rpN9bAZWoVVnpFSEIxD5U80LV5uhSP57P6kGg7094PfEpWLnVHuixHFcRUOt2ry4SE_nIJGZHdjz7gXlIBoLq06SGVz31EXfqHQDw0fyIYyBZ7dVySmkXEbKt-82_eLdp4dPR_jgZ6Bai74sTqBySdhq2iiipHph8pjntd-d3Dprl3irxBrqjQ3SsIlcI_myHFKuZVcuIPA8_FXi4lrbKcqSmgphdqUKA8-WcP5XQkk4UqczR_WvXwl7ZAbUW94gQ4RqdORCeSF6tIOe6xqHmZtPPSZQzCgtETYSq8U535ajQVZmFBqcmsf950Uuqj-6MABH5YNp2cR4DtY3Xt-F6nV-faah8xGKPAJscfNc_LxYigNc4uTUpPceyaPHarQLSm72Bt_L_h1ELY1V25tvdLWNNJ3Umeg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680cc9a7446af0.49733988','','','2025-04-26 11:55:19','2025-04-26 11:55:19','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680cc9a7446af0.49733988',0,'cd-form-entry','',0),(43092,0,'2025-04-26 12:43:30','0000-00-00 00:00:00','{\"firstname\":\"Sammy\",\"lastname\":\"James\",\"email\":\"sammy@coastaltherapiesdevon.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7ThlNNlS0yK_sgbBGLrho8mYYi7rH66cdJTAFGkKQ_e5z3oayTK5Ah0LspGNtf-vH9P3ygGcIRa867osU1jyQZJ15EE7C_cNtLfeeZWamkvSACzEvduLtYTUpSIjXVlBD6GrtFDgwGHsaETJNdKgxaxd95a4VPqSoYfdRB6GRl54QBmksYKYBrVA0qdIbvMjeeEzumlubMuc0QQ40TFvtE9Fh31C6qm_sj-0c6_6z59nDfzUGHesy1aT0sGEoeAbdumubliOCCUv9L5KOk96u00g2_HP1k3lM3hC6x0e_fB82LjfZcGfbYKGX8xeEplFDsfimb718Hc4ZaUXKDL3SsFlil2Ykl7dmJE_qgVFn0kiu7EMPjdYKJeQDjzRSb4xVBXxnViT7AF_2r8seDj3PFbVa9SiqjbV0j5_zS4VLgmz9EhMCMEyyVCkc9TdT47s2wimbY7dV8F49_U72nIqgSYJXhgSuNW4WxPhuXf6rFBnMfBt1yYcTGf_HAPAAhSagO3kDzD8Pkl78y_cERnZyTHqcfaL_NF4PF6kTvSF2k8XsGaU4dAXGU54UaK3-TYIZdt77NUCHkJ4tfmPAAwXs6Q3zmCSHsOQQTfLKE22GGtaTDd0E4sHk0yZeVD8qO5dnTBTFPSfF1mKFi2XOq5oNv4T02RmL5VpGliHO-8L4TLmRIcTcZZ6ZkEWvweA6VL0NtCj5pwMf4hB0KmpZ1UQIXzlUS9tcxrDaa_ZkcIhzr1g23rx-VQJH2j2reL37_76I966i2FBbkJKb0gGplP_KUCzMObHtySeKRXL6LFpdg-J9snNUI3EnCfiIMIQ0XzgbdQ-tbakSg24m-r8vcVwgsgaZpImlp-bscKiiHnZ4LbGhMSDsBrPdODwvdI9YIxmyIYtYAI9_f5-q0GQ6mTgSiN_uVRLXxNsQIICGCompxkpmednVbfy2ATTkUIp-7Yk5fSSVT7woF089SgMQRXh1SzcuwRDIvCTWnnGRYOdGDxZBZelDmSlQa3CX63eCjw46-_GVgikGM8BRn8wDC1gDzd6B_i6wxNfUKQHLa_IhNx6r-qwzVIocBjenzaOJHSpDiAUHH8DBXKmEXIG_EV0pWHpLwcyh6_HX8eXD5oavVdSdgG5yXFaDyMgteDUM6RbYZZGOLOkJDhCNKs8Y2J3cSEBRPhDqBH5lx4kiXFiz19ADXOk5iMhdzQTHjPWq5pTrX6NQOg0V-H0b1ruhwrj8Ix30hU5Jhh6LmX2R9-3ZSXpUWg7WvhnzwC3rYdCFsYVP0BPGK7_fAItOngPMGOST_RFiDAeZD7ziNyM-l3Ljse9OkpX9bnqBUd_Vwqwm7nQe-oTXwW4khBT0UIgWRR2-iwCzr5IIi-6qoiBT-iz6SHlJhefFO8p6sgtxAwmvTj5HdAc1nPFLtHX4kZfcqwZ7M0JmKLo39kGszBLQM_ovX32cNfGA1trIjj4GIb6zVohLyeiKI4EYvVInQioTa79G9f04UafoCSr5jLBOgAzC3YQIo31MqwZnKEuu_Db9gZitGPwG_QJaraj5sP_EmdnW7KQvcJQ7-eS8Y7ZbL5O5fM48ApzaHT1-mbuL4NLuew5wGhX9Uv9fRv4Y5hlzMhRJN9ZFn75YmOl_ToueXTBGuqNIhJLUBn6bdmoqzVDiKiD-zw33lqiYzQIzZQGeiGz1Q5M4BaF6LYfZveiOorZ8_BkGqtmXu54W0qnTzY9YISj9e4q6ERu-uSs3XWLCR-gOkS3NaKCGBfcr3QWBJjWe6vlJDsaa1WXSQA9P_8AzgUHn8ajcwtaC5kjqwYBTQYUCvaKHZrLqmz-a4RM0Q6V9DeEFQffdFL76bjzyEQw0xZ5_OxaN19Ig_RBJuiK8yGfhWknsTkVAd96cAr9y0wDALy_Z7MAIURB0kaPot-luoZiw7oQwPpuYrRWOHLW7MOVUztOBdp1PWYFypwvQzUngY0M3nKehKg9Bb3xqvjzHe9iLL2TSQjba2UcWC1IwSesMYCRaxHdwrHNQFYEJX7n5gQNw7fj8qdKl6TvcOcz1Ld517nz5ooCPaCA8c6B4FQTb6-lUqVz6Lrvry4IzNf6xsNsEn3Ji0w1CSkzvlx1vb4aLWpL1OK58uTDGnjHW85WVsKYgSA5_D_4vLAAHB91oIY3GDY04jVTHN4lvBqbYCpHQfg5FYmS_eLc43Frg_ytyHdd20Sfr80QtZj2Vc8VSojX1FUaRpmuA40TEllPwvcTSFztr-fAsN4regcyGcrzWHq-EWrdeUDBHiAWqINSf8MnOgknLeqWts3wlQvd__axjPYUjIBoTiz34U_3Y2XUbI0qXjVTt5Kp9dEivpN1eUPiIy9wIdf89eS9SRv0I50jDP4DGRV7sBxLOjElr8IyVY1r3Wngro9E_fI9E6yM06dbvCBZg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-680cd4f26c5b13-57054596','','','2025-04-26 12:43:30','0000-00-00 00:00:00','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43092',0,'cd-form-entry','',0),(43093,0,'2025-04-26 12:44:36','2025-04-26 12:44:36','{\"firstname\":\"Sammy\",\"lastname\":\"James\",\"email\":\"sammy@coastaltherapiesdevon.co.uk\",\"contactnumber\":\"07957535516\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7x-9ejXd8VPz4kd_zYN8P9zpz6zkQS7y3wL-3BjmgvoYhxdqspTGx9Lh3x7g5gEnHetEHzpZ_Nxmyi4LKNr-O6-xSvJ6jh3gfR9TOSehIX11dtli8gZidDdKbOF4B2iNWxllRZzjalit5EjczPH5JnW14ggJM0FgCFlk9A7zNPh3QXyKyLvvw-Xmie7Gsk03pyjagrCB7lkZjPLYMsxXYl6m45Fsw3-sPa8sRLVMNIKZcpl_CoPrWhbfVD4ikka9hefjd9XIe8cAnECRu0xu8RRjBF8yuVwGG8LkGGy_5WCRwqAeh2XgO4OAR_StmUt0HIcq05z_-WZyiRzRbLXr4DbPkoUm03Xyzyqj6zDS0j4OcyFuWWzapevfNZvi4Z_F9IQrpsxU_J8r4-3LD24pf-TZDz4B4Is0MCV37J1vsmtldHe5cPgm1eQ3ZXfSprsi50p_M-_amLamLuOJa5o-Gcn_eMWn300_uzrHZUOSr6KCACrLWgNakm4RzYwI-5bVoA_W5-dnnEU6ni48tg7oow2GvL9OUhuKG3PqvHsayk5u11NDqF2geeOE7ySC3ggIBEGIkg3o2I0QD7BkFxuaLyASOISedq_GurSzRUsznJ5JZceRLCSRDM58_kSKXcyvZQW3_5V4zNGgOWc23cBI3-DyFTF_isA2g5AoVXaf5bX5znwn7kknAf51XMOLlzUS65RtPXS3YOZH127uDUP0SNxOOqf4a3IqxVRS-JlcQUescp3oDWF2aOZ7hNs6vSwStZ-sUb1YxVvxjUb_5wXc46QA3nTz2HiNTTHSMr9CWerTF9i49C6e0ZQzSsuk72Qm0myKhAq-FYut-GAQygRzhrP2qHhQMmKnlGnT2A-edVFPlRsKuYJEqDfC5GP8jjLgolekQJQgqQzaQgjUL0K11pxLtuUuxbven_6AsWE38xIdioD0QcsC9ejOsPKC2-AZRG7jmIgP9Mmz5LSJqig6uBLZbek_MUbQD_Ge1aigENLmJptiL_CqTy7uOH_Q-QYiBa7HdMyZBQqIRQm1bwiT9-UNLmG_1-eXoVnSsBW0ssJ49Yw9LasfgriOCA5yfEkVbTulpTvJGScqBlfSE-Wek8ODICMaPIqaVjzuyCCD5nFy95dc4LEd-1XyHZN9u5v1pn-lsDpUZnIyefv5NrRx-mFFyzVxXl2-kUntTDJ4yJ-Cbl2KsHpZoilceDbR3S5fJ3fBxskVR2P9u2ut7OSAaPold0sESfofJ_oE7tn9fnwOTNxmFn-bT4ZR0ycewKOGveh4k7-iMqbRq3DkEBJS5ShF7B6igatkJERFTOjP_aLIkV2Yh0rb69UyPnDsO-mpdDP-Ec6Da5ZQ7yjBoCk5jl57buybeDaYdXaTObjolaKJ7bGVrXQqnsOkFI5L5TBEwZYCvStq-shnNkQIfpGdccY0SRMYQ9wRKtCg2mrhNUSY2OpYc2czcp6mvu6SKKQnR-xLx-LOA2-aK9fJwr6JyapB5qTjWhlhEwhvOAEuHqfqAn-Bn5wEh6cW6gzQagVaTLiGuzL9JuEhEj4RhweRFFyNmhp8a3N-az-u4IeJr1C7gG1ZFqLZ7friFRQbpDiY65TYug4Bwd8afyF_qfiBvY5v-8015fbQ--roZLYf652KEXM8XjA2zc-aoxgZsD8bU5kiYzydKtA_CJaI5qOKo-E0hf4Y_5b6cNocHnIhBx_pNlfIw6qIM3wH6TJSennBitYw5bmS5A0p1GuaPBCcDetPADuyGQv0beFkq6cnPhLjwMuug2bsECPt4Zpu-ZY7naNU6knQh76hew0v0ZrO306yy7c-NpoumpBWfDAX5Cm098h8XzsiNXebYeSg0vLM3BxdPDtUUfCSQYoNrQzqE_xdoGyxgNQ6MgZtFFxA_hSitjgYTO3HmGqnaQNbOF9PdIeCZVn74ZgpwT0Kr7fMYMvQ8KfcM43E06YrS6oJGaK-jJv_d9mvlj_7JrcxcYVACGTgy77J-ErasL5H0SACZc9GSkW578pt4fR6F4ebHtzjCg5gm4VvH4lNqf-ALdRYI62lek-vabnCutqJ0UK1oAeV8dOVdLRh4XAyct49T3yjMCbgN5b8CKwJieDQM5_SImGvgcdYtKW0NsR4nescpRV2mkTfJrOs1RjfdC6d8RPm3hf2o0JzVSApc0kOjgzMX8l1NcumPhq8TgJrKp9SMKqF_h4VWTzngUhI04mPkAyaj_pVd2MFvQ6ksebzyW-2qmXDmuMeaxZgDxdRqhymQQnrao1QYD2lpC2YJ8ByB3_JQbNxBDL8CRs24YlIq4gv-ZP6FIBKrg_O8-lc5IOp_H72L6BY2WNXlAxxmrJ3tyP_X_HELKNkBebKBOOd4iRSGQAMe4ryXklJOP6d_6LnM2gPx4HQoVqOVpv6PqeOTAWnAr5T8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680cd534cc2ee8.33183327','','','2025-04-26 12:44:36','2025-04-26 12:44:36','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680cd534cc2ee8.33183327',0,'cd-form-entry','',0),(43094,0,'2025-04-27 03:17:07','2025-04-27 03:17:07','{\"firstname\":\"Deanna\",\"lastname\":\"Austin\",\"email\":\"deanna@realignpilates.com.au\",\"contactnumber\":\"0407225753\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7c0wYNvZcmCbVz-9vYt581a63MD2WEKyfwl4xOLnHJhC3soqbTJ7fCDrPNQGR5_-ZVZF_VHghH1z4NQxfwGEAEDMrqIKv7I0kUL7ho-eb-tYhThF1t4A1iKlZ84eZZQrMfJB9nil8UCN3bzJ2B2kn6nmkEDGRdv8FX--hyH5iEnB6CVvtJuktMOA4FXVmxh2ACfEUOFhaECXg3DWpuYqT71IHJYXDzsTZUIBhOT5gEH1w8uV0Y5GrANX8EqseTSYL9vIWtePF8-JC_TmLhPkAn7l_DWi4SZgmzfwL130t8MVUzCmrGPSXpVqpi5ppGVzrC3vN7TdCFV18XHBT-ZBdV-KHJhrDjj_1dW-kibzAQGIK2RK6llnTDEnBvGcHFhEZ4yvoR2hhoSQG_g-UxxJSbhdWOs-SoQ6rrfpakTfLUrwndA5AMOtyME8J9xax3URd2Xac06M1zq0Y-HxWO3uBix4JEKgEOUkfwjCP-Qdvh9pP7Dk5AaXOYlnsHGMzXr0wmwJBcqTHygJv5VXwWo4JB-1TGQYSOMnVxV0g_ET6rKmWq4zo3VmkQzJz5nc_mM2aHHuCSwXrI-EOdwWWfItjcAzghELEP_-SxAm6s04D4EhZW4tJs65o3UHJENUkxWk6-3oA6ThCVcp7QOCSq_QkSONbItNoMueg4ocphw-zR-JLpfn0GCIqhL_0IWCG2kATKAse7ORz9YHUlJ0IMxeoonzk65xSgpoDyeIY9EFTz9z5WfcIu6n-LjAfROKRcVGJUFAOJiX_RRHl0PfzkOPZxNEYVntaV2Cy8p8V3EE8uIAJMmgkNuom7yueJEj3yAi8ibcd-6e5hxRXpsP-kOpzp0oC94AHJz7eAwoOM3Nv6vS-BjIrQ7u1Ivm_6_VWVJMjNx52_omsiO1bRaTFMQ7prMIMvx8PxnnJ6gDqhVPbLQJKc93hTawn2PPRLVoarPBdzg8crVDH1vbqOlV5bHw9175CmybWaid87-CXo3IDbXErlN0MR3lTyYySx8U2XpxbQUZeZTGCjSMdg4EJgvnd-ouctYR5gletk_uMKk0Th0l5Ii8r_CNxkArem1Nzrp9_eKDIPue_Jvk-CVBHJq6Eki-9LdG56lddEipYDIgdAAqgK6ut2zLb-T_Bx3i6GAcankSzCVMUjD7uK3omEGrHNFonoQrjps-iR6crzQZL_16W_Rt5hLNaX1HOtNWDhqAG851uWag_oXIbmt_dW_9lRwbJEvNG2FxOMI76mlFfL6whAU6kgUKOJt2eCjZxSNQIPn2PbDwEvPcUJIUlHCttRtb3TGx6nouu2pyjHC81yZXJvJ04zuhNI8mS0qEgbWQW7-NaT6lnXY8nvzWWd_e-9SIfmYoCIPyEjtKAXR-2H9f9px2y6manP42CjJSuJ7ZAe8veZbgCzBoPfBUGlqh4Fizr7p1IS2xOJQsbA68rJql87LI2aKy3TpBrMMzGNKoiG5PLm6kBpq8qQdV7fj0ZZmBGmzK2_HMqUeGR0vzpghOzfTI7D5o_U_L6xV6D5mpnMlaECB9ctM-miPhhLc06975K8heUJruYPZYUNfO-qsj1eqcbGlXJMiS8mTQXy4YgxJSa5fldQ3NxcofLEdycjt3DryzPwkdGpoI4ouh1n4NxO6DBX629uFwQmZApG8y_86TQ2oOJv4eQTmBUXiEheOunAR9lYLpJEbZg4FhZYhbVGjUFG-5LNfmPzYDMdqyjd2oJob_tgdDq9COhW00Zq122-A7GMHVm_kVcnoGpOhpW7mk8nmcvQJlDwPvMJ8joJkZEMJixeqeRKkTySlaTBoBa5BV5rnA2GeM5u4tAmQ_DR_yva7aXlBlENVjz16gUvOfZav2VK30frWRIErY2QbJTzmLmbYQ-btXVLUHVMLhugwxJqTHFzR_nsjgi6t0Ao5c0n0sgKljUjUMn52YDViFcyurRbgm2DYNkMU7C_gQqN9YPi1NMT1UTbe8hEVJsypRHl92mce2TOq3pEY3rIyJK3Tam1AtEI-Ia-dM5EMmFwtXazQEwvi4l9C4B_0r9C8efI6mgXbfQRN0bCVSATUxoZ4A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680da1b3a17630.00316749','','','2025-04-27 03:17:07','2025-04-27 03:17:07','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680da1b3a17630.00316749',0,'cd-form-entry','',0),(43095,0,'2025-04-27 03:19:24','2025-04-27 03:19:24','{\"email\":\"deanna@realignpilates.com.au\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"2650\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA57y_UnmiQdrlQvPloXVjN4YN8-cXW8jpqjQHUO17fpITL3N_XBghH9jSKLHj5HOSpwFRedv8k_egtn9gJJ1JFQTUi2FveWNdNJ-BGw1WhJiwNgM7bBDQnKywdYf5O_8IyV4QzY-_4Nb5EyhvN298vkFoGPOZV-AKBSjIpKb_yrsOxyi_eqF_h5tAD5Sm3d_ygYW03UHsdJnrvtM9TYruxQ_JR0LnR2NkqdIfWLRmW078dCOL5K5eoxt4WREXX2eilC0JBq28Ools-7EwZRi6byvioigA84oxWEgS5IOgiN3BvRTdwP1OkNxm9x17YXulCLkr-JQEd1HsoCFQ7qsm900-ZhwcBFTYghGV3tAOrJHHeu1hDt7o4PvNOBR9COhl3JZ1J8H2pdg-CHVgb5pAl4OdvBIPxs0-XKVUBUqmGaMQutQYjNUuAUK7GNIVVR03KlAHmb6lKv5kA7zvrY64W-rkDkMV-IsicZbSsq286V-01kdKtczv3SHdBs6FAu7mm-xbOg_G3xq4RwhM6RqIoWnqikyKLmIugS6chiCJJXvufUUhLPpayu5ze_zcWfZloWJtl595Hj3ruTzWYDBMqykPkLRqSXQOz-uLe9b-OiCCLrnbcl4cj5YOVcIHgo5zjeeCSAGcwi7wzePlZY0QG7sMUwOLj1TULIBfnd1NFD2a79FlmzeIVFNFyHqeonD_BRqwhD7LadVQ3f5nDMPBYf2nDHmqOzBWn4mvz-IX4epiGPnE0AUs_g3aIZFSj75ncyW3VvqwfG-jCioyO9wHT8jxniYeVGcPFGkSRdRmYa96RA27YTc4D8UyYrYE7Q7GLNCtN7HRzmZTedknEFnrk2KR5Osz7RTnJ2xYxQynNjn5qAq3ZqJZZEhS5msywhlLdi7NidclB0-npJO_KGgp-YODqqAWjiVO_hXbBjb4glU5ElQsX7g9nBYF7MW29kkjZXESZ01MdACXuZY4Wd56_Jg-Z-dTCEeYFx5cGBygyqitKnD8hyXxS210YZYTWWflfqzu2r6hMChLvYF5bqVle1UmBOoM-wN2zk6XXalAylc3oRiPnUZdtYqNjLMEVWjUc866XpBsljTvAalRkaV-Voe8UmFueN8VTeXyhe5U_MsUvb2PpMa1UWQxJ0RiDb7y9pYn3xjA8MFVmKvD4dGt6rSHFBQC20qVPKxZFM05FONF-8cE06IZJDE-GpPYeM_Bxh0BQytbTkFgxU--LTtOuSrtv4r8he-2XYOk_2753XUEN-RSXUzP0qeZd5VBYARh4aMB_3sMa-L2GMhq-yKKTaEOk59nrgr-iqNlbXjETi5vDaezerYaNEjs8fdmJ4RyrHF09AB_NMvMOaRQERIIwtXGCg5lnb4DxyaTYhAo3TUUmW3_hdybiwSme4EtQDbQk8XbvelybeaEc5aZYAYaSuEUq2xrrgHG5jRA5msNlaDpMuePC5L6-6qmqxyzYsdWLnIFxsC9x3oTTZNqgMdnkXVxuu5afUjf7mFA9fA7vV9MPGbrpov8ORUEFjwAdSktvgV-W6x8VMCZMqxPlFWP-Bob4vyxHvbGnGclV9R96hUNogLsLAj-6dPOp9khvS3Uqc6otp0rxUcxh2DQ1a3o331ZsDw-H72sozSFRLJfgXSyP4vIz1BQ51AUg3iELDzICC_duzH_I3Rb-4Hmhe6LtMlDIPeZcCvSW4--dh8yTla3apc-vcP-XcXgiKfwFfY9BVjZek8yMpz24oEAkOHgwymjkQjh2VqG5JHexmXxDS3YZKKnr7yYHkGwSur2cfzZeuQRGDsrZw2aUpbCKUMGLuGZZpKIpF7doyML1zrA28GCzlabCDaB2TbZB-82mfXT1BjZi95LOZgxF4-guUIHbz-YCQGlZ87dGVxzHWyMP8OvVM7ysyD_Pt_xMjHInI6TFHnasH7hLKFam19ok_c-G2jhVFxeAnPOGwU62WCzZZvbL0laH4VbiDBO9EH58_mUxCWOL9wMNX228RmZb5IhYzKxApRrVzUcCUyVCt6GNmOqomCeex0ETCSmaiDqAMQZGe2VOnm9HafnMNfWcLuZXpMo6izw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680da218937958-51249936','','','2025-04-27 03:19:24','2025-04-27 03:19:24','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43095',0,'cd-form-entry','',0),(43096,0,'2025-04-27 06:44:08','2025-04-27 06:44:08','{\"firstname\":\"Jamie\",\"lastname\":\"Williams\",\"email\":\"jamierosswilliams@gmail.com\",\"contactnumber\":\"07940 788 152\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vOaMdIG4H1OSeFgBmNLOmhE&amp;gclid=Cj0KCQjwiLLABhCEARIsAJYS6umJDtGFqSU57pFa8T7T58zuuZAKrZjJnXoIzp0_gMCLxLPPH_ROTTUaAgeUEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5isPyqEB7GivpKsEnKjwxkE29UBmSlYXOu2a_r-bYW6rqu1P6hKSG5gb6Q3NQGdrdxJVnTCo5xB1Zw60BaD_xzbTJ53Y5ZfBtpUFMQZ9RUSPNzw7Qw9uAtOy2x4HsIQLuabdsCgYnoeYaE5z308zw9EJvEic4BchTXXqfcPl7M7QgJT_Nse_MLvXTemwD-RTnTigTpT4LTn616O3gGYfxdUQGtomtvY7DQrdJtYcLUjXO5qqUPdQSVUTNJBZqYXFL2CbRXQFSwBxtI8UVmnkqW234lWUwJxkL-0HriY6Y0Zpy1GYwUmZglzejKBWlxOoBGLgz9JLphY80TWaxYqcqPB-rxCiZ7XDEcVMPhxBJ3PjNZS9pSvbNyOX9cOOcYOD9taYv4Uv0tgnHsU7pk3-LnqSTaZ5N9HFx2ktDU3NLUnthSA-7sbrqjodI9DGMeC7suoeRDSEeS0ov1H1nKxZUVJ0rdfexOda55Y8qPZSx7qN5cPdp4WpWDhDpUrd_XOx8uOa31tal68y-xAdPFLsftI5KSgvs5enDOF1ehfewq_Cy7ACCWU29_jgNLcl73QEr8pWE14B_3F2lnTiqcC4Kf8Bk26hvU0UvZ98VJT4MI6XN6_MPCxKCYTPSiK3LbjeAX9MhRMcu-2zvMgTVqCCtxpzEE_l4AvAgBo1blv5UL6EmbFWsQi3TepKIkKZ5-Xr0mF_TJb18d74Gcp4zDKiafI-p56kMMUuYLNbqgGjOfXRZz_KCzHuVcr5SqIxQJbaL_cmnR55jy35jEthHs6b7yxcJay8_i1qkW4ZKTFo_ysP7yWpo3XRQS7jff3hsyRZYClI0WO48otaxh1PDBdp9PBnIeYDW4bKONuq0qvugE3PotIQ5M8ogVDDEHlGS-HF3mdH4GJWuC_S8H4sWYQLFFa67MpCA5ypm9lmaTa8VlTYnJn5Qg1XmDl6Jgbvr6IOQ0c82DCDPcd45pK7pj2GSCNX_AeNfzZzEK10hWSW8Vj_x9Sk54qsky3zOUg8KGFUfd7X1V93W3K7VSc37JaV-oCSAjbzZGJgK-YoPyDONv8jc27hPBsc6H7cGLJHnt6bqKRhj2j9mVylwU1PlS6rdGpYqnaljyKtmTqdukUmnq_oMyQtiD7yxxVhfNVreF2GBBAwLQlJBtN5T0g6tJg1mnDnTWv-b9XfHTnc8p0-oIOF1bUgKA9U7jaMRVsBbHHKTuWO1Hs0LRVbAoefht1XDTMcu9KSHoRHagR2rIKFEhQurWYqUTocTCJMUY_P2vehUn4lVPvHKHWaxb6kDvkv6zy9REdDehRYxOlAW4De9UHNffAfBZZ722QWpYCODf0mtxc9ci_QOcbOVo322xRsdLUoTVW6kK8mCZo-lT7k--Xg1xRjKvx27xXm5g9FkJL2TDzC43AKKVuo4iusCmw0MkTMqzKApUoxTKdyV_62jMZJk4pmP-RSMo4Lu3zOEHfYu6EzrTjugKOzocTC0LG1ezytBGMVdRZiR_OtAHXLDtZe0YnHFSGZUT7Gkuj_f-6brJhOzZUXp8mKBtaP0StAgVds6GICAF2pBrQsCgViP4wxY4LrXh_WgLxdjpNgaIOnsa_Rdy8XiF6HTAUjtjHeCqsKq8EzXy6-cEIlqtyimEcT-9yGIGz71HIURnHZUd8-6nja41ZtarWJ1Fuu_h1fxMOTxRAZ8rQOYSQyU_rcB-26Rrmv1q9mAuLl7z-ZRbkGKsL2qxi6xxrkhLajLKdhP9uUooVJBTNNTYEaZ3NtOMREae2YfX_gOkRzGJtkswG9fFnjDEONcURHNdPjHuinZPQBOPjbdv-ZZ4aW8QsGeNnW5lMi7Sm-A7rHAZhIfLwTurloPg3LJiJ7tGKn2Uu8n5aRX77jOlIimSqkWeR11y6t9VOFoEdRaVvEuXqqBNVXY-1PNWZem8baiUvGh_AGnCWQlAaBVZqapO7yOptgZqWCppBT3iZ5ZEKYTHIo2ldwjppYAPYeTeAP_k_50wN3qccKKGWThFX98WBJIPyN_3GaYygInPSBjghMpN7ZGy_2fY9TI2StShHcOJRaHssaX_LP_y_G7K0wzG17IO_2oe6yUanQB_iNDg99GSK1Vumxog0RWMVHckXc5XlJ3g3s6UIXlIzga0SIHSMARYTdFKQ5LN89Y\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680dd238c42529.15807557','','','2025-04-27 06:44:08','2025-04-27 06:44:08','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680dd238c42529.15807557',0,'cd-form-entry','',0),(43097,0,'2025-04-27 10:05:48','2025-04-27 10:05:48','{\"firstname\":\"Aliah\",\"lastname\":\"sagar\",\"email\":\"aliah2005@hotmail.co.uk\",\"contactnumber\":\"07496816152\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7ws7TpubFWuvkKnJsYaTbTleq6zGK_TP0EfxCQQZzRPZFUY6QtsnKAmR1Do15dkeC-2SqkDhkje8UQuAicuUoDddBMK_L8jHd7b4SWZP9RXIuIONjLH5Wdbp0RuGVTuxMtcXW71XnWGbnXOJCH71mFknuK-wMicfwFHihL1arJxvCkWmCppfQh4LY51JkeQsd2Bfkp2q4aeUQfKvSZ3mCh1JIEhOhp3HwwByTmBGr9IlFiD4Xja3NfBJMZduKR-klutu0bn_eIpsD3CVrvqe8hJt6nodKnChTVlIdKBktlfl7BPEBdqFM9L5nLaidkhRCe_E9ZYFjUI3L9gjw2zIaO0upFr9rEnLzpXL9EBrcezMjlAqdLWl9XxvDa6Kx319eXgTVfIJTOEI7dXXtzi8OGVwqfHYJQ-lI6sgX6o2uxLesXcH5Vk3LLuu4cdJK-v7G9xSrQ8aoGj5NrJHb3syZ-rR9kZF9Rk5Fj-cdbXAcOl8mHI-Ql3mHVERpW9Faf7KJyp-q-TyAkzyxVVyI3VK55vbgKahoQY6tKZ8WOyCP_C7zqqXEnIRosaXsIopoKhI_d4M8KT-Dr8YrllW7jG9KzcbplX4Ah1cuIOTsNyd2gP51BQmtW9ZfTmlLkncMLmiI9HhuR68Tc59tKMxLt5lBq7Dezs0wjzdHPNIRc9tACDSed9rWLdHLLpdwCEdaubU2xAL-5g6G6BnHEvqvJmXOGaTMi4B1c75YR30YzMCfqWr-QmXtTmWOAaR-socnklubo7qdfvkQbfU29YiBiVyXFUVqHI1mRzP3ZO_tXXPk_oMylfH_YmbbvbnI5HhDw_hRI8tKA9WT6-rywsxYrk_DPv4gkvTFAV84SdV5WyhNnyhrud3knqkdDgj5u0T-A_ODEHFGnKt_qRJ1Mv_6422HblXqVPLfid4wHiUCnGasHqDODH-XACqYCVMS-8YIKYSJXnjHB94BDnAX_vB5ORWcUUtlI8ZGvVr0PcGWwnghFxUGvdJHCkUye_rH8Iai6LQOnKTo9yqmH0GOEOJtQKN-2yCGAr3CQok21YdieiUHVsVPLIhTM4zDsL4gxu1CsHduAEusFnw2V7WDDHCReu4nw5zY4nXteFOMlEEzqd_mm_vViZsjPJFCCV2ks109z9Rc0bE2SQg1psFWrr5zjYI_9c8EUBKgiYaIleeRw-1ICfgybyE-0tjrkxPKIhG8F9bYMLRTMr43SQh1YrPBKxyP_95ynuAqcajrVIr9PoM-32bek4Ny7wq51ZQ95xv3FR_zPa4opD8yPDvypDBSz-UkHDByTnVQ8tNZYH69Y0nTJAe6iQK_pGX48cb0HbpB7M2g48Q2LQkK_w4CNpBHOf0-T7Aq46JFeSLzgsFdhH96obvtf3D72ARMsFFggs0iaDdQI2w4SwZxBZJkX8MBpG9MQ_qapTzE1PSVLzs4_04oN-aOxkbWe8QtYgnfrgvJ9AqBR4pd4CT6GAR2JRHuK7lvtHCWvHvm_eaBkWXKLQrl6rmA5lRwmslycF_eQN8HG5fgnQQDx3VyZ9EBlSAjhSPUmqS8pYZVE0wx-I6O7nrMiyqYVBIYRRXnDVi3uWNu7NALltmOqCoRExvwMsPeJLbdO7i9KtdOpV0Okc10tHvyzljJc8Z4mJW8s6WZCMBY91HX44HAOK_w7e4WOYDE3MgzpA3eSkXBg_2mraH_qS0TrZXKHuuOVFycxHciWZZtgZ4FcPWL1vosxj8myIufd9hgmr800zdPG1q7-dUucPbXslP3HaCQ_pgsbq3pPtdgzokVxqgpG5weO8lSCgPjuHdRX60A2hYZnSwTrSyFShUa3auK3uDXJS--6ITu6NZHLQ0GdSHPzaPttJc7mU0Utv80XuWjduAWyuwLg1gWxxHmECJ2SXilFm9M_QFhBJN8o_j6XsMKNz5FfCP-BL15frhjEkod0WNniTEQ1jZtoh2N33uL-W6JfZBY7VH3h17zLW05_615kOv0bnrMyWgIfpXDdlz5kNHHA41Pn20DOtNq--22-Jjfv7igr8raIYQhh-MQpCd8VzobFLNQjBluAt9Fg6wSvAA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680e017cd2beb3.49496419','','','2025-04-27 10:05:48','2025-04-27 10:05:48','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680e017cd2beb3.49496419',0,'cd-form-entry','',0),(43098,0,'2025-04-27 10:06:50','2025-04-27 10:06:50','{\"email\":\"aliah2005@hotmail.co.uk\",\"interestedbecause\":\"1\",\"genderidentify\":\"1\",\"regionlive\":\"1\",\"currentpostcode\":\"L15 4LR\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6UppWaomtiNrCwuJE4ISU70fIQOfwHG9qx6mWPRPjU9pRSAxweo38AVMH3pBCOvPgK1tfZen81jnCCRr8TqJH06r1UWNa-fD7IpVy0hkJZ8pp-MzFLAPSzBw1luimnXLc0MmlM1ODhHIG7tza5GzGJCIINluDk4YiyK1t2OURxX7m1yWsu6SNFpuyTj6H4_scZgS0u_oA4HoGZUbinPCs7zNythCBJ6sNgvQqtuoalGxlaY5mLMkMwVMGzjEcntJyYb-q1-GV9FmtQuZpjkvSPeYWlES7FORmjfpkielpN2ItspjuZV4X3ypCK4qlI2paTak4v4AftbFSBKMfD0ceyT1mISagAax-GRIdZvUx-BxzgLvm3dizYO2A6qFP3tbR3GTyDsx1vv0F9q1UooeDsGlD6vbAVFot0yDJbYXt4OXhnSZdvKaWVrV5mLhciX3E9UBVmNBXX4oIVM4GPuYxSou1CDDF9YCYvMkFzU90M_5eELSm8ryRcUfnFMUdelFB1he_8Dwy9KTUH9qWs3xpG48ZxN8L1bQvOnnLKyvqpSDm8py2IEZabS9f9c9aYO6PEnqZAfjsGB3Yr7WsdKaBPUe7c7Cf66IssSnfcGX0GjmJJnGzoauhCTzPD1EuQBEm68S20W_pFooKXWJUC7ifexnUWhMf0Iv7sz6NagRAC_txZwevwe37Hm_xqV2hLY_vuxO5ecNRMQixBz8TCHXQ2c2ROdQpYoBGtyJYLz5hGkaG206kwxvbNeeMI5ELPHzEAidaXPPjbfSDs3Yic0AdP0agAwNEU5RddgYdMyFQw9WG425V4UXy5oxHU1XfpKTDbifuxQrJRKVczhoRPNUSUu00xyQA_ivVqdjNohnR2NL8O-YsNvuu-c6dSCRo7zJY6p0bKXcXUeLcrYHLfYMe12umqqhquZXAVJ2KgNJipy867D5hH6nAPPurUOwbnnNWmRVGdMP8vT10YApGqMvFlgCsTDGo-XMD9I-ig9VYry3lzD6qLTWloSOA13lUZBfXUSPZt-Amp4Gs3upRkZKfUjneI0CS3CDm_veBqAOQwZo8CpL0UjDLdcVByR_MWYgXSojht_fP4OUmhUkSbrI0G_uJnghMbuOURGt8MmVhAdZGYSL8t4nZVMNudhE5jxClxwo65HFjVUsZ9T6sQ0FNuo2ZuV45JpPkesiZacxb98dqDW3CyDgkn6yVs-a_Lg-EnI4QG4GeondijYeGjVgd5VoVml_jj7us2cqgBiMtfDogN_9WY463zhG41YbnCFlQGaZeRTBps-gVDa056AEG4xxPnY5OeKsBTyQC716vkxHnzaR_NfN0oJD2pvmvuqPNO-U9APZs-FlGJKGGnsh3Y3pc_yXjKSHn5NfQ5Rv0EhVHvxIuLPndaRP38mzfCTvGGyoco9rry9prq-amXz5q_taOQRc_GKd8Og4HTZXtS8fWgtWvcyrkWKwEsDIV95kZWF30Odn9CrCvM0ZKBKQv1Yx-YQEFbJMQt3QN_9wJ3982uVXGlGxDPzZoQxUeNnt-NWavx5_E52NQfFFHJKGgOVP9C82O8W6BuTSW1DaLDrOmCJ1DmXM3YJn1ace7FAYysY74w-7intOU4GRDXwZqUNKgIMRRszQQRRzOxPu3uay7wP2OBcNyD4h7uX_xscaeG4o_SzER4eORf4nOnpyMUIE7UvXR6nsw-y7tDjRk8FcqSvo0jqxgi5cqruoEH9CYiHn90nIt4KktboUfc9BNIEK-nRfQhJMBixWBaxFhQNjt5MZVBY_z8GoaXI6KuFQ1gRHZsepdgxtsU6Ivb0Rtr0omvY0-hmHOcLtbLAzxV3BHAVzEx2W1KspGjd25O0MFXFBRI3NB2xN2UzBNDn8-oVHNahn7Ld3zyho-8Vw9ZdCq_Ycm4KM692izjFqh5xzawimDlB_tpxbiDEQRW8yhyhn8YFMp_ieJVPJIe7rVykm_-2BoyMm5PxtbvHlzMFQZ4rcwXwudohgLsCwnXtZ0-zIRLY4HTYU_pRnsNAW0iqv2FoA_y0x9Wsj_CE-HzErunwa75OSKKazzyxk4DmFf7klpiVYSKb-n2Cei8CW13OjF9f9Y\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"agegroup\":\"2\",\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680e019a82ff71-74225354','','','2025-04-27 10:06:50','2025-04-27 10:06:50','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43098',0,'cd-form-entry','',0),(43099,0,'2025-04-27 16:29:25','2025-04-27 16:29:25','{\"firstname\":\"Scarlet\",\"lastname\":\"Preston\",\"email\":\"sp21@btinternet.com\",\"contactnumber\":\"07803044320\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uOrtUVkI7rwiJQXwsoSRnRh&amp;gclid=CjwKCAjwq7fABhB2EiwAwk-YbG2Q2RzRdokPUMZOlcpAGeYaTNT8s1CUrdFDQ1yeoNP6k91fJP1_mBoCcSkQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6PmY-Dys0gRTfJIy_1vsleMdz61ZCkgS71mUIpAWo4e62ZIqWY_EYtCC4-DwJLaqXqXs4HSFhegA9adAwRJXiUB544MJhrk__KUylkgzIq-JRsPz-huUDWynr5cdtHB5QBvsvDbnhfJnSS11bKUOfun3FsRBTmFsfdtMoi8LDEPMVYFFO1yeJ3aRMUC6ilg5ImEmeA64iLfw--FKeBhvkIUMyarMpsmVtxbltd8kPUyRqvxbL7cglyMo_rof1lxz61W-ZUp2cFMP2qsp9k6tHnFTDljMrYyB-dt5xI6q1aUsVGQjxKMjXzYc5OrvbAPBosSGJTc-vcj8Gb8DeLinha2_2Jx50tQzws5SqbzjWa3baLUEUj4Fnfw9s1qupl7t7-nY5Wwfr-S2E9RSqYE2jgSZeyCOjKe5Olp1ztxJ1I2h3WlOf5mjMhgOjHvL-6j8BLQxMG8x82q-UhaXvzejrVyQfc1mHByDfYJqzBAbXlzXMqbdG3JVkEX_1to7nZs1irwHSVi6Ff06SCHL6zt0dwTWRKO0qrR0w0sbnUfiyI_aQxdItdX2zHwKpa9w8p3W-EaNfJdFvUDxNcoOXQW9w0j_n_HaZA6wk2yzhCPqOR3Pidt3vh4qGDpHwebYH3rnrdDE0B-exfufgjXnNqYsULzpI6nBu04zkJeoV2MYC1DUlsZI_GpC0yD6wFxq2wpZVs3GSlHDu7ewbvz1cGKGyU3RHRBrQ5VGg78_4ELKj076w2ZE88LuF9NBm-kpM65YGO9hQay9etjOo0XctgbTzfyECQvqkZbHj2b_ZfMzvF6HfaRZX5yYLylv0dXmPwmLtRZdMZjkIFuvEpcjUGeRgB9J0785bzCGePsiKXx3eoUXXGUwUrwymC6aZK7w-RTyDhesi-YrGK_C3erQwC1LrPJIYIGMUQTT77S9VKdBMg4OyG3dKzKTRqxtKFtZYE5PJkSUKJ4S_t9zJZ3hH1k0nVmFoJc8MqgsmlsxUmNTPZR-YpuVuU6-hbLvBWCSAqZ3Ek0J5QFJ8CcyGJ0uGfGDcqDSwnsnSL6I5xWxuxnBkbULedO8qtBxv3nYyveUJuscbxE0kF8bGEzJyJ1HzKG2Ivdeo08U8JXJBn74jhzgGyutGzBd0Whjwyw5eAPizieAKHtqk5nnS2Qax7zf6sDnDf1A3Ht1iGv3IZYAIpmSrJVMVkyf5CBxpRQ2kjjpNOMu7KIX5BY6F1yg8Koc9-Hyz_hSPFqeiCgoShUohsRtyLs7szHxHAAVmG6aXEzz-_K8ygtlyNHNUiex8YfDvSvMyt8lc2lmMDEzEC4ZCMHpPESGFAtzenWG7jOMJXKiGP3GRZXf8TQf995eZiiBoPkR4Pd86L8RzF-M-Uhk4H-DVrJhrbLms-MJTqYcc3zJimCJaHsyxxqtlJxzeur71sUQhFIv3q5liPAzWGr8GVRrZsj2Jr2q9yldOG2FyMHxzzoO56WBgF7a_3CAuWvvfK0Fx_h-l2-up4X-oTR62l3uCgDC8E6S5X_ScLsmIlyfIbrxD-708N95UldeNmlbk-3ijOEhfZpOq8yDUG3ghLgT_MhK9VJxO8mz4d9F7MtsVt7jTHTN7o0_VrK9_J8weu4GY_TMjydk7O8CzlYG-QLOBBZYfT8NcV5IN0FGXDf6HTTDBKl-L0xDAaxPpgVTOIYga7sb2MuTTFczSxzhEgCHmpOc4mMGCVeZr7Dt-tfjBIsEJmRPNd9M2xsA7fcchgdzxV3R5GQBifhSCNnht7AnFcNtYjPxVwl_PczlrBYg_d-wlwuE5FMPssZ_sr_CYzwFqpMz6UaGZzVD3sUmXGsiERjmo1uP7nhSMbjWtj6xtfWUojApG5wgcOZ4XQIuBnVKnKg49TP63TQaKKCxd-BA-Y9JkGrhSaiFMEU1eLWcQKHiX6D6bXM2HmVXO-tjWrCl2n5yMLjRKZfUcwiDVLY_Wuq4DyfhbOQ-bQSc-kMfNpQ6_HNMPdo5Tlmgpo47dGZgLp3cIUE-Mw1tLNRFNyCtGcDvPj75GBtF-NC0C7vT0OQNghoHCuEkhy0QzgrFB2HXOirI9Vmoz_-mnNhnWTPTp3XThuE8apVgL4fjsgtQeJb_z1STX6KdAX8ewoYn3Wtk8czhZE8nhgKHkJG9dGZeeKbFfa4bu9afhUzv42tQ2FXsjHqeNl\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680e5b658fb838.16927839','','','2025-04-27 16:29:25','2025-04-27 16:29:25','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680e5b658fb838.16927839',0,'cd-form-entry','',0),(43100,0,'2025-04-27 16:33:39','2025-04-27 16:33:39','{\"email\":\"sp21@btinternet.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"1\",\"regionlive\":\"4\",\"currentpostcode\":\"B45 8BZ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6uOrtUVkI7rwiJQXwsoSRnRh&amp;gclid=CjwKCAjwq7fABhB2EiwAwk-YbG2Q2RzRdokPUMZOlcpAGeYaTNT8s1CUrdFDQ1yeoNP6k91fJP1_mBoCcSkQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4oGSKYAjMc7X205Z96lgDyyWySCLz5nLyUNWnjJerjwx2l_g8ckYBEmyvba1ussEynKRBCIGLx82ay-UH6q8BDRxhvD4hZC50xKSP5V6EK2-ifbUqbk3XRp8BpxabUfYRKid1S2UP1ENZULak_c45meDpaEC4x0MhRDMTzqeWZ0m3KdVwOOmB9V_eR56i5Vo95kZ79EDslEhFvA8xoMhvY8DZn9Idde9yz_IlZPkvhFFWPPCWDsb0wp4s81h3fTATyPRy4vm8xhgRX8Zbv1dd5ljWH7HASlSkV6Mu_BeoFhtvk0OOPwWEwKtYWyWw0ZaN-bFJZUvc8gPuVO2y2xL6XuTPXfLHTFs1n72-ERrMF2Sk6QxgxrpK0J4cnq8LVVibfoD_vDPIfJeKtarpwZIDKZIxWkhdI42KJOVAWRQyaWmNSaKfKtgOk0vkTEirKI7cn_CHAdIF6Rmw-hHTOss9i3EdKEKn1m14BEh7i034VgGJzDrqAEOPiLYs8h-AXYLuHB7fn2jwPU_INUnmti7jQ1DlO72oAsKwaBKT_BXX4lFae0BNHF1KySZ7Uq4FuL-1JNuxKyH_FWvUILAFL3FAW5sTraiVRagG00ozTCFE46zUdFPGxmU0Oe3_vQjsaRHzFoS6rt_rPYVf4NsXgsNJ6hK9wKPEH2vn-dtmEPkuC4XddGUBFvxv8Co7IvmVPWrNCU3x4RrRn_WOU-C9gDtYnSbcPs1cpgc_46Uqb4qxi83folJ6fn5VloGdihWyDF67PAL1KKlCmMZFBKEVcweHQbRfLNuE0cXcGYBwenb_ywjAzkPExoTg59-xVn5YuqkqqojPOiiOM7wRUPrz2GJVnNEQ2cFS4OO7ZX5S-Ava6eMi32jF_ovmV6Pxuk-6aE3h83n3NzSNxj1oEmgFc_cKecVh62F94O5WL0JCq7vCLRFYh71r4q3281QsMsJYSbJCQinbow3JT1iEkxyQRne1EVBjE6XVPykpfQdizDPVR7g6D6-jUVZ8NmYnBQlg16kxZ9lCtawvWFHzOKOOj01hkZD1fU5F_7vWsbOghlPeMv_Tj1C4IEdIqZfPQGqtSEx24DbbjnES_bdYhmnyYEn8DGBkAj0V0alkIGMXxKAHVMVtcD82_a7SnzlgSRU0XrGiOwF0F_A2m9AynreYmIgt1xfb5clKaegIxMgIB0Pyh2HYtgOPMIsO5vYY0WW10eqjCKLuKtZoo3plClUlcwl25cCCgxsPDasrydzXmntaKotMw0KwAHuGLF3DoWWI1wKp3qSV2jOQ-V_NdBQjzIs4mMXQ0CyjEsljDQzVGxaEt_AOTmbmMYnDgyN71O2eWM5-XOHaExjPcUmoHx3tZnI53SNQzNS6s2zZG_utqPDoSLfWOXNv4kiBBglYzZlbJZBQpvVMWGFx5sC8f0OwyohMejhUanzlCIQ1BvXwFa-Uw0olRdOtn-vxj7_tR35YTY5CO8JeZmXtneJsJVRBqdFFstNmydN0bXYY43BjWITZznVbJ60cshL4Bf_o0JJz7sJyWa_LqfWPyjKwpakNFmzqtDBE3HCMqTjmo7fzmFP28nfA8F2pwS8RnYx7VC9RyRy0aK-sXGRQGfE4DzRbh8xVqgenrDIjp3KfFhaS6fkic_fiA0ZQQF6bCWhv1Ls9wAVJXY9HKnOD5f_uFn6KpPY27UgHmpiIQ6NSzwuvhe0sXtYdORDLOVTrWdNSbPr8Jhf8Tj8PN6V1yi5Rgs5-zuAOTLeD81tbIAzUMYF47CnACL2V4loFmKN3VAPEDRBEcHcXsOB9Aph309pStCecbqgF0SPlQM_KPBsszumKl28dFKRKjiR09bWEXQbyznOsdAC7fcUTDPc1M8Zu8MrJgR2-cjbkAjKVMtLKJhs0bxYNt16IES6zqy6m3FjXo6sEgpKP0MEdPrgKGhBVLPfBo2lbE7SWrcLPZTN5SELpUGgrtyeqxOcdsHJkjgnsnHScw8WZTGnfL8Vly6pTC7-nPZwaHv43aEBtIZQdJt6DaASdhhFMr0ASA91vVJHJ4v1D20aQiQ_JXr70tnsbH_-J_nGEkbCWEkLacaJu2qo-BajQz7UEdZNcA8_PPezjAh-iOQHQKTXpUE2vHn8a1X2Y0G3T9du8SvL4KOwbvSHihD-N_yvjF3tVFPLLNL3l5gDtSkDAJciolA5uVvNkK64Y9w18sAjQaVQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680e5c38452c83-99201689','','','2025-04-27 16:33:39','2025-04-27 16:33:39','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43100',0,'cd-form-entry','',0),(43101,0,'2025-04-27 18:46:43','2025-04-27 18:46:43','{\"firstname\":\"Petra\",\"lastname\":\"Novak\",\"email\":\"Koliguan@gmail.com\",\"contactnumber\":\"07398336612\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6qh7azP6qs6vewXuMNW76N1vP6JYmyB243XajHw7RqJoTF6YHC6UWfcwsW5gIB5buAWEZ-pbnyn_YRC-CqQBXyOxrTuslVO0w-D71b7nEBeNja9Ensv6c9-yGtiIbzq0EtY_0EUvAMKKjpWBgsItV7pSWMwDbVOHu9ZzKXhOZ1LCuL5ocs1e1l4dM-61Fv9cwVAYshP1vD3zLAjypv_6jPrzaXwAyST7HPpFvLq2cxF4BBrkx8r9Y8_XCCoOxUaHSWZB5rQjRDzyVCyyOMCj6EhkEVD8iJWs_fVJvw8iIsE3bN0jK8QXAIV_M6X4FU33Db0QBks4I1pKpgpQuWA75l2bvbieEP4mNHKeCBPkvCIo13DG9w9A_cgQuEg-HnvCu4AV5zbtk2vGaLmKLHCLtcDpm3dMXVVQ-0W3EyToO4DhwAnEo3TZsbQmxZ4tX-99-LuGR0BoN4Q1jzG-fK1GqM_hgnmt5qdePrXQVmGekNw1gIAK5dGIz_kqS2WB6JU18a_g10HpX_RGfTN7-6bD7l9gQBPbZ2mIKnJidbtPk9BbR5JrEVsTJzLPAN-9111IWuTPf2I3uzwis_VQSrXFIeidS9kYKv8bXiJKGjmyQuDhsdYxw-fNS68WARMN4AWcpeRth3QAkHCz_jU3n9gjq6jMAL6B557-3k16br_LVS3IsY70a42XeehTLcnYJIraU-lrhlXYNUjs21ktXojhifHR62F1J7sXd1VhGC-w_vyehfaCk8DGCs39LQGrDs9GDKN4karz6e9h5n-4wf-Fr67JT-xcyipiFeTsdB7Wse8gVLmvCQTmr33-1MzcErMJWxv150oDRt0TPbqoerlMl9GYMGx433WUbLgDnvvvDADTA1_c7JmJHxYEa1Zb7y4fXd4UZYNyH2bW1cqOwYK6JDNvafSoQbSP8W0OU8OfVMVmrDJi8_8BgaFpPrDyuMbZ_dAhCJ_RsbZNh59vT6MbczOUbVc1karMCMDTAEO8NC10FOFQfqIrCythhBjMwudZb0ZYTikFUYbe9t8bnapL_92eYKw5HMBqkmYG1hxa5B1F7y9Qrb32quXB-xlj3SOfwbfuJvNZ9WUvJqlZxBws1iEf1LbKSMw4ewxc9jdgCWASjCij_6hFXxBdx9tOvsc0-cJn5jwohM2APOlnHeukWmEx8M2H5C3-uIKw7d0bZtYcaTgSimYz-vk-AjWOBtu5lvbs2C-_6EcLhF9vtqNb70N-6Gnt8WsarQ6QT95oNXXVCl5W269e8H0oK5rc9PsWvzBWsSGp7eaLUJ5cBqpM9eiJ7sfC4buD5PnBrAm2S_D-qPMbjgtyGWgy08RrJX3ITk3nDSnJV61eWcc-9nN4lrUmYFUux-Ld7KkjPEvd-bcr53Q-qylWj2e9xl9hka6xsiK69PfmA-EqZhJWrUr7qE6i-Nxgr_jfylYIZfwvzKy6F9gE6NMYQ7tp89gWMF6zimglETss0ejdi5yLNyqLN5noqyeO8bAeCbkikY6zf4BQ50C9PY21t_WibDMarWiiulcMGFz24GzqFAuSfkdIKkhEJxosYn7fD3iaLZsOwYF0kv8xQoH7c0i-88X_C7mLsdNoTlQeYWViAk5SpeQw_Pe1bzMIfoEH5CvXePYHKgU78d8yTI6kKaM_kSOI_sr2zR9Ha1OsUVziywExWh0ZnJORnVNiuyVX32ZgWArg_SWBALBcTuZdgcFc6nWHI9tex05CxRXDxxUDrVmkPutMMPCnFseglULiAA9od_sxCF8za23cDQqS6ZHa9prgZbS7NRswAj8co3zkg_MKd1NKwoeBj1JpBAz7c2k_iRXpWB-XsSJsqy_tM8DSLyfa4C9ZykGk_Y5e2YxI65bikjisR83DsVnwYDUPu5KSoBo8gRU_42ZTGDiqhUKFwtP2IU_w8spPEniG4ppeXbLloyPha9-L66o9UKawRNmIbwALiPmoWR2dKjNfXFMXjtzm8a53g16mygzuJrlhYSs8LEwnGYKKgD6psq0rApt7fs4Mr_SuQWlTQPQDWFAqhEY8ceZKyvhYAH-ewNwAyNPFIFgAuqPPlK9g\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680e7b93ddf8f9.19693901','','','2025-04-27 18:46:43','2025-04-27 18:46:43','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-680e7b93ddf8f9.19693901',0,'cd-form-entry','',0),(43102,0,'2025-04-27 18:47:57','2025-04-27 18:47:57','{\"email\":\"Koliguan@gmail.com\",\"interestedbecause\":\"2\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"SW21EG\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7s8hiRN9lEuvnvllih-gDJ8x2qkh4TL01I7IUoU5sC8RUOKPISaQYQ_dI5RVSh44TRA1mKrwPB5TTRXGrimk1gM8RlelbG3YmZWy0l38gG1FVuVLguKg6489ENfUxCKqiRrm-tFXQjII2wFyeaq6RGGHZ02g7qHl7Wa97bIrCzP0JizZTi8_GY316-WjOEOCEdK8Kk8TnFonJHAa2bXm3vbZR8swhPKDkanb50O8T_VrLCEbTCMVfPHziubPJZrq2DFAM-GKCYjFcbB72kEFDjDD4h4hmBHEIy5lJviQ-jhJWYIF63pY66PFd9WIy9CAHfIXwzVjUEbuG9R-guSdbgb84Dxo3j-X0AL5ZLlP0wSTjLFMn2yGmDAEPUvRTRzoe89qq9F-mOddYl11gv1xSISAloES-LYvP9L3qxgzaKv773aXOHKeb2WqWfLnXQ3yfaxbNXtfbdBFI3JYCt0nDAE6jSiAa3la7kihyMuz2tZULCjC4X_71lRMWciPnDGz5OJ96Q4L8DRmfr3zsOWc9c7M4jn8wn6GpFhguLdsHfB6NjTM7iA9_FjgCEwYlIR2hedpNyxJd1cKvxJ4bcEIEGsSENRw9VMjCn7Qxl0n5OXw1uAkUsocq68AzrCsDcgftSNjp6hjATyezBRcLM8ueSZx7ua7Pd_E7Vf_U6PM9livkTd8Yu3AzHynGBOfibs1IuBd_LgAh2dlVK3eKaggCxwNTuV670SFfVbniMtdw9C9_PTW0DUyc7_Ze5RU5VRbexjJ2Q1jjM4f0A51OLjGfkaiF8kE_Snbr1IbuI8SqGb8_-Z5w4-qRwhM8H5XuehYKQgIzFinhrcDk2gD2rXFsMLZcjE5ziqkpnAJC-_Us39RWkdFcdlYo-4HpB10xPEmJ2dv1YE25PWlaEqEUY8I7ouCU4GAp7jOD-eLuxVH2pBtICzwWdgPRN9UxDH_abvorXz1yBl95mbshfYpuemAiJ8-McFKo5uWpsWmoBb3B4-uuYji9hKb3ZGsGnUUjYLvQMSVkvxO9jehlVotm2dP-EpnwVBHMDDYlKysyO6ub5xKih4Zlcq04Lm1LlMMfw6j_XQ_VGjiAoNJzffwf0_FSUL67q9fq1AXY3KZUVR5WCioDCsyB49aznR9DuM4pRzZjrip3F4RaaYHRvH7iWHOMRFaAqITBWNcqqY3GHc2mDhRsYHPUQ7meEdTOoKtSXOHoAT4wGQGiLgySaJTSyQeM8E4XsIZoB2w445oQwZI8VV8mi2V3NLVJuF80KSjjnxA7Rqjz4F18OHg6tO5aC2k2RtcQuBUdxxAKBtixkzzIwtGTGD9x07gPuZeHswY1hZH9Gl7F7B8vC5wuKlt-qS1aUbE9A0Zpsn6YscHDoaegfwApF_Q75tSYNlx0y9lFUr4HxFWR6qtIjBUqERRdriuymI06jqsci-DhS929PoXWlxRdk-lx4vyjWKKMZ93-uvvPv4PykjQwztvXBOom3FNj_iQ5hAY0Bfz-rWEH1DcrnQdtmF_CI83bSzZryt01cFYaMMnthB4uxS_uT7Zbs4rzuCxTCf2-FHyeVU7CaBBQZ6Lxohm4vbtfw5WMB7WeEMGjQrrO1PBxubXvDE9AXO-XFoklfPOQIvhup_0cSYNd-rWWh0KrNMtkq6Wdzt77fwxqan0j0nwA5Nm3Md0rcgO5xOfWz3Sqc8DlKHgNFb8kxaYfwjg4zVlKThzmDpR1avP3GgBsu-1SiUsAA6PJp4nzp43CDjTUmAxei70mewg0UdZE9mHAN5mUruWwt_W4elINg4K8mhJBfjWcLGas3EfU_ypN0dN_wp2pg3FwYIYqax7bSlBMjEJvmnCgIm_FzYqsdqU1dcjRtIxTqRF8aUeOIHvfjN4FzmRC2R8Oop394enIh6pAybTsM4niGm8A31H55Q_KJhwRvOutiSCXmiyluC10uBUesO6cdpwe8up8aZTvFPUxr5Bwpiz2fOmbGgK6MGsAaLsH2otrALyMdcZhnIHSxjIU0g0sg_ESTKWw-JL-zqou7qw8qip7DTJTa_8VXMRaKb4hfooyz4fWI3JLNG086Qw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-680e7bc09171a6-13136882','','','2025-04-27 18:47:57','2025-04-27 18:47:57','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43102',0,'cd-form-entry','',0),(43103,0,'2025-04-29 07:31:48','2025-04-29 07:31:48','{\"firstname\":\"Kirsty\",\"lastname\":\"McLean\",\"email\":\"pilateslaurencekirk@gmail.com\",\"contactnumber\":\"07866428322\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5dJ9E9x2SkzsEn5zFKktW-AO6-5sAAIEHlH4UJYPxuClmZsmVpZkHe8aclflKAGzvf5AIwTMEKRQ_JrakqPgFcpJnlnLrDTAjFRxpCAsexdUO1yts6UiLhsfdedwFpEVG1Wdk8h0gl7iXAGXF3rhTOb7jTy8JckP_sQqNPMI7pH1mxzdsFEr9dNwQ-RGKj1nmoxvZCfxlQWzjXAwSG_PHIIebkAjtHBSe0B4JZMZq76KaFIdqyQWU4HHlK5AFM654JWVk5EG4RMwHUzu9MyQrMtYoNb5CxsmIsnLwQRBKMiBsExSB0EEAF9miNcM3JUJ-qDhwmYiW1HlfUL9GWAgVi5S67QFmnSeI9d4s5wkvqir4z0Y3XiYaQvacU-mOH8y_wl-QRxwgZjBDPSafIpTYqSPqNzCgHclwZGirQCLr2szEXbAUR9EhFuof7SYkpczmDI4GeOi89BLeG_a317ukqoBca2_Rnl2ZNkLXQG3xkHyaNyIyCA6Mq92cF58rPLsl0fn0iif0F_NAUwMlQDeI5QdqFDBEbM8VnMj3I2eueGAvcKW4PtItuEvIqLdaNjLRD1AjO1kXq8SgxKt84xVvLyZPUOLXxA-thk75miN7h_nk4tOog3E3mijFrdhK4CI44n-wR_DmTNFBjoco6uNrzSoyxE9bwVu09K7pnyYdLb0b7GCqzaUBb_JbQZ7pe-HvfckU-1BBLgeO7SKar5qUoSJIz0ePI_YcW-1JCgBalO4xsA3kkMWLxzs0v9DrwarQ-7qwwXQ-rSmmsFTJ93yzFq_TlYGGtRtcGvoZREW3HJrNpXwAYXEl5voEiGZmbyMj95U2xE9I3HRlz4JezVcbKeAfBOzlcnySPHX6sKdPPIFPrfh1ZQGcCoHFYiVKbree6PGeeSN94XmbO3ZnWvfMs9rioveYr25zRLs7_E9eQuIQoHpxey14ZTCMcxjXhlBIxtNQxJC-nw41UrT1MfjgVOcNxYB9Eg7KpWJh2H_sSZIR5sIqvfhrdTZxrO_htSogHJvoIyfOnmVtloEEtjjQk0bY8sJqemu_U3-Q4xqyElwxdMsgTACOUqnGz5Xj90e6701I8nxTe70Xv_F9iic4X95G-zE01yVkX8LaNeHp4DyoX2OHYfuq1ssjzoWOn2-sWQ1Hgt_YoJsWs_O78_SJvM74p5wKpaQUjluGj_txV1yq5jK_P0iaci0vbwUn8v0soedSiRAD-AbHVvjHDpQKmCcfpbwMzmixcekKzSJKYfgyBC6Q362PH7bfTF9QbyUVih-iEk8PQ86ni8fjvqW1SVFlYCheASudA38tKfjVJ5azPGLle-6FPWYLLAKblMVNM3YXgbiPN8Y7hBfdFdVfbqE4Ao9ihCn-aCoKg27jbzab6_RkeBPxXlSjDTo_NDNHYBncVKw0kYLZdSutu4d6i1l1R4Zjxa1tSTFNdmytUfWDBAGB4YHWStlBvIAIUR-QRkJe1SaMEVIbCJCX7Lbs334g1QPfXanjRvNL3oM5gcsCSR4jEXiUYx68wpoVDEY9dSAKmC2lxzBqDxlzrOGZVVySWQPJPUnpqPdiDWsXG2SbDOXON2hM_AlE5szHvNtF3ch1bY4_aW9pNhOqFwVlRwfC78IK6pEL2nVxr_UwtGb_oLfYSMmNc1QKcwcmSznpA4Ssgi0oPoRofVKDy-sDej5dnBLvTZ7T4G36iutsWocjSonZ9_TisHbOjj-Bf3oC0aTSWL2IZwD3SaD1QF-54Xbhg8VJ4EfLZpTtk3I7ah2zc0iF9GDMusRCl9YQiyuTUt-8pngIthZcl61QAkUvRPolkQUDQW76mqXh7ngggUEBV0ouf7qJAJpF5v9AA4jylxpUSumgG6q6w3ZuNhhmFYekzk-NErMVQ17aqor9CMmMG3qB_s0I-BTHORuIIBBeGxCu_MUBQrwSgSqfqrLF0ShzYgpWiVBH-eIqz-W5PmIZcbMWPITY7ZKpSFYnpP5KyYhRKNBbd6DYbiZQVZQouvqDVvOx0z-KG6zOr81ZGgaRk5dZvZBFp9N9hZlMxPO0386_qJNxNukdvnBwd99ZKIm84a0hcRDhKovKDU2kquywFPj5gu9HvW41BNG4bHLeYIqH0smTD4Y6Symx1IFJNfvgGMm8ixFyjOlt0rNEGXA_R9pCo-DQMcCRyzC2mnuYF5k_I\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68108064a84cf3.61317628','','','2025-04-29 07:31:48','2025-04-29 07:31:48','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68108064a84cf3.61317628',0,'cd-form-entry','',0),(43104,0,'2025-04-29 09:22:12','2025-04-29 09:22:12','{\"firstname\":\"Emma\",\"lastname\":\"Wall\",\"email\":\"oceanflowtherapies@gmail.com\",\"contactnumber\":\"07480939652\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7pT54BSFnDCoXEMocpYKLBKKDaFQKu7anps4YWDqGoylFPcMMVY0m-QvH1oyLWiw5L13rEkNZPHmacfvI2R2mgLKvQSLlWsuVO1rSHhWzw1omko7VvILS81pcEIVDbDeXVXe9-bNKvNrIf9WB-WURvGLKxAP2KtZjbeN_V9VNKLai321Qr2s4CqFWlCsQf1Qw4gFR7SYKwoVhu9J8nKaUwMxMmvyRb3KOodj-XTlEebc1GyJseCIpRrRa9VCN7Rl37pldgqVjJCuURbHiZYQk7RIi7vx5dTMsMuWNGqom7G_xXCKBFhZIs-uGfZ6umR3fHwPbDO9AvLf-fS4JUBvASDISk0hba7Nue369OyumsR5cNdHVTSfasWN76zTdAythv6vWg4a2FDXwKjb1DSFuc9K6Fu6MwJGD1UAIsmcBmlgeJLjj0GgwTsRtBnWQvw1AKVfHcyRH_rhM38OjkWOo3wtIlqrGLjs9uzdCdcvgerJQAto2vYyKbcqyjTC0hyf554xmZdALA_VLGEOJUh7mmPwaDpQwdI_tbvEE707BRwi8ekM1_lReBLGqDjaptVg5vZas7WsXKgqVlsUcltMIZbFP6pvxOltSbDnZ6IAHcATKVvBtqgUjWop_yiP1Yzw4ctE1h9DOzyeFyp_KPZVz0tFO8b7WAsM6U_DJBRNNxd4LsUcwqIybNSqLfE66bAmpfTW5L8E6cBnRJoocgqF17SFQtEd0I797Tj8ziZ9TENtpC9xelduxLdSUe6wWlDdsIFOGINs3yB3J1GP6RzWm18ORxMyygoUu_9VTpBX7wQExDo210CS3nexPuRsmtDYVx88TLJjmEm5GNitrWeELymp-Jtrml_fU-96o_4F-ZBIvf1zU0rrWZK0GhgHJNRtX9GM8NrY1XeoaL2_bKndMYxFJrqAQvugafPqavYZfwmjvqOoxQ7ltltdcGUIsAK3ueqdmdt3nM3p5WXuvsgKK66uTDcHQKjZHoZSpZ-feprjwbRj0o_0GdUepjPgoFERKiCLK80ZBr2ZQjc2WzYSPZUct9qvz2j7dHPPpog9wpLKsE5eMymPpIfxB8rQfMgQcskw7LXClVAYUx3dC_U-cWHsyg1fq1DkvPoFd5n4NOndZTXoCWCBo40ncqp30QMSAm4YETuVPAAeCXoQ0VVr-pZz1mUWasAKegbJO0YcFCd-057v1KSqLtEwJ5Secd1FP54SUhHjjbl2p27f_7YjGr2h0bxaO_TNryl13yVPEeLfToHM11Qe8Bms3tp16JJeRX3RVAUiHoJ4oHXHJOPcVPad9KxWvxOhnuNf2wAe3RyPJneEdUNfWu9xDBpV07IpasC0oavapinw1uEbkIJZAO0P02aPNxWtd9UOrnRlBPRUZhjPC-xg33ioSL1VJOVUWRvsese99U2Kl5A5AR55GsTYHITydjokW_EPMhJR2mhqriMCb16vhWL7o67C68OXZIi8SXJAZp8kX5OmAmNAXaWLo3EMYkPeUpUZY6aG0fInlZZ-Xj7jc3ggJh5FB0Je_xvP-FMHKS15I1kjXjDqQ-z-KUpS2MN5pSm1MEl7G-CKbRSvUb0Dj1n7-ON03PgggELhsmMc2jFKVpmIc0AGemVZyfTWXkextKihGJyfw5vIV2VfHSrj9wgfgbcXp2DCSlc9X9PbIdd3rcHxKe0jkGWswcCYW2nsup0y1TPy0S5yzJS8vw7JKWqkHFjZDL7aZLlG-q39jx-X6MpyMmyCZNSOkF3cHe755Wu76oo9GWZ888stIyKA8sWsvxjygHGmjI76W8xtiRmvLMSQV3qCGpvBEBAvx5AiwQQxOPFzh5kmKYG8hiGJ4rOaDPwrYD2LnFEEx-EA6IVhfwCQBmx0xLBTCuvjbrPckd2o0VOPIQ5L5AtIL4wTcfeXoM_gZgqlm2x86xyf0YZLMKMjtuTJd8Zr8MhAiJPLdtqLHyNFyOPE-EWlXnnT91IkqAPPPSAW7fQIYCpm6kb4E9C6mf987Nbh6BjyhSm_wYGdVUeAu6aAWGgIHfVfer_wuHzN-WnMI7o1i_TDFn7ayqK3yECxrdYkkrIbCkVlgcwggnfrsfjjDdtb41rKgV6zbgTICVw4sCxEcJ-iHYLsTeX4ElhV4kXDxuSgpTvQN3f3TK-0fb1PT-yWdid4UCqqwHgWxWmLXzwmKFcDaSYwzdUKmXIFu_8T97HA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68109a4455cf35.52483478','','','2025-04-29 09:22:12','2025-04-29 09:22:12','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68109a4455cf35.52483478',0,'cd-form-entry','',0),(43105,0,'2025-04-29 14:15:33','2025-04-29 14:15:33','{\"firstname\":\"Ben\",\"lastname\":\"Kelly\",\"email\":\"benhughkelly03@gmail.com\",\"contactnumber\":\"07950501424\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7hIQ0-caF1AiASvhdVXhOXezqLx4n0VSbY7AhZb74mgo3y4FFga1tnAkELVvtK22coubxac5IJ1HEaDDAgj3LpelivHYIIq8J-YPXrbDH_WlwGe6VFMeWA8J7NvelN1RI2DE9G0F4LdT3WYiUsI6pOfSW-qdmGYTTXZSYZEIUHomQYZhZYQC53LrSAeOdmSOHQTvZ2mEL0zUm1X-upDGKCVS1siexbSw0r3rSP8TDgdnmar3rwT-pybxs1LqbNh23saCEPDNiIjxkjyu1U2USTJEB_qL3H8WSDY5BD3z6aXmsI7AoHjGHl5_HZXVtyV_IQZMIltPMU7HWYQOCWxdqIWLReU2kuJRDOhAR87nFFkG5aQcw37RvTuVBNhuEK5FBdz0XycAeXhxtzufaYm-olxVo4PFQeQ-Ji0zN44HGREQdJ7Uh3ccdM8lpadb6UxFoX2drjI78sLLn6A7uNC-jLY6t58xHSTGNcPE3pFeC7oDVWdUG79ZgnhV9SNEekCkTl8lF-p69enbEfkyZQa17Qh2x_9mgdapCW0Fb5uWlRX2JFPm7B0FAJI67I2PuM6XddAHeLuMsA1vcEmPFVbyHlph289X8uQ7h_nsRAHwtep4yWGYR3WGmYrShTdTqIfQL4nnoG0EhvCcF72VjJlALp_D5vvTDfERabFd2ukLgB0uk0g9M4YV261BDVwzfIfxa2DsdOJ7CjeaWjKp11Lfus1u-mGQ5VToQqobQidjfl59i3h4KKpjdeXPbPzcfsH31gCbWQEkbQjwhWsDo9CuLMMmAr6ME5c3iaaYVSWVCpkZaozaejubTGjSaPuoiSYcKkQPy4Bo6dinxTaAL-UTZVaJdezow8OfEl9QMhAPgnqnkE8pTwbi-Wpyl_rJTD9tT6Pqq68Hw5Vv0WPFPPJtcAj_8r7BggVJpKPXvVmassoN1yQo8B1YWiz4MEaNDtqY2KqYlrAdW7y8cZgbnc9T1UPZVretdhBDZmqcAjHjNSaUemooUPc_2yHwtunhO1qHpiWNA98aFAZjKr_ohL6Pa83a6HuG6N4kZHmtAAdBn0s5GbUvG46KlWztJuiKBwE6cRi_cot5ldgYGn4cdjW9O1G25t2MJeraMQNm6-EbMpzF7chElzUkKs2DdZarVtlanx5mKJ5dx5x0OeRnGjQ0jbZPpke9jAexGAO2o47iT0C5LFQP8afx_4bhldf4XmmWj1MSRYtrlPUPOqfgqZokBrSnpKR57_rF3IUEy7CRJibqOhB9wBn8l15dXSH5gn5krB6akda7Zt9p2AhtUEEiqQbhKLvlNjVpnblaB6hzdtb68jlmFnZ8UAlGKrsayqSSvEr_ZHlVrMIpwjeD6Zst0v34s8Hgbl4R0TD760p8cUNtJLXdwYntfS3ouGs3yfKPIRCZJMDN4G6zQZSCNI6QXOMp8j3Oc62njX-1WP_XMmOZch_xJhI4Svb-pnLO0mk7H4W6_-4TO5pUiQPr5hKEZk5kIFAcZmZokGZOqei7E1s0Mw1ts35OSmZXza-_LFEnFOD3VMI-fR1BEHfJ2FO-hGT826XVVUX87CNzbQ6_HPAWGyXw3HHk0NYBW-1dbzuxG60Pyg_smXBB-ea6rzHqRt4aAZpkE1znuYzX4Lb0FuGay7PgBl1ZhSaDdzCvP_34b79675xbFotevoReUu-cpgtHNktD3sTkFQiuYOi9nFkryflWFMCKI6dx4DBo1xjeJiODus4AH76R4oj2lkFxkx533s1hbVnuL89O2aDAOWd81-X2IL6Q--66UCqJYOrElKQsPKl2lanI4EtUEmYgdq4nxpWXlKdz1HbZ83wLDfgXj1PDMDlA1nhOU0ijw7kTCrbyKQAFbDDAFgGfgB_QggOF9BDy_F7WM8ZS3WICvp0StJ16x-GiTVyVyKgj6cLs0p4YyCkTwTQXIvWL5qb-hh8YQo0wzkp1z4kpDcKyp8tKwvNPUnBBEoMZQcffNXQIKF0733_s8dbbbE_oeGwtIuHnuNIrYkuYzFZkB7v0t5fMYsDNOzZi0FwGV8eKhb-EZLjXTVZDD0CmAIt1WyFn6elN5V8jJue12OIxcBY8B0OGYcdYl8SAai5q7X9YHM1gD3Ac4geldDUhR3WuPNPKXT55HdqFxEDIKYYotqU0gYbUsv3iQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6810df05277a05.90337813','','','2025-04-29 14:15:33','2025-04-29 14:15:33','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6810df05277a05.90337813',0,'cd-form-entry','',0),(43106,0,'2025-04-29 14:16:26','2025-04-29 14:16:26','{\"email\":\"benhughkelly03@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"GU85ND\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5RyiSjWoJDa9YOy0jdOr0d9cJWRe9fmmAyrGXaWJuYAOF4H8d3uvoxPhUmplxZf89goApvJWGOxfrV5IHWfDl646vOnxGzC-6LgxC2yQ8bpAQB4awGbvP23We9p5otiq8xXTbOblrPVZMFxU8imeTArgSjONk3NhN1QYxmWy3YWOQBFSq3YkaVz6Q8nFIuyXQWUSvpfHZUXjLIyktQg7Giu_6ecCplQXZjvG3NFhmkRUKquMd6R7CB7fN_3v-ra43sO3iN354AT-89olh_QoRtsBQw5LATCnoKtZjhIH1O7i3iDv1jGkBR-Ob-r9HTAmgPwtkJFz7451RKXTHiR6rIMH9xPXCSNaHEkhNslLwz4ZaNaN1YuxeyVUUn15A5SB6kW_CfnQAKnrEyji2SwErKpdlNQYHboPnEZUfmqqR2iIuKpLsSUQaduzsn3ldeWvyhy84J9kqA5fn-305AerK3-yaNCT8OSLcRFRoIv2JDlPnRWOXOR8Ub5n5GMyWF3kqdNkugifJAm0vGEelokLyCKfOf4gArhV3RFPngaXk7jN1G0UsQEvqMigYrrnmhdVyGOI2NwUqxxM3xShSR16qEMAi2mDExNXBRwRJMJWipWLbVXUEyj03xnPlPdz8NzNvHdLLAMS2L_ly6ojE4eJw53_gULwEXAaFJWOzFj-TEI6acheeC0CIxgut7T-WOMwSFxYfgcHS6a9Xxb91P5OGkYeqBDzXGu2cystm5E19gXr-f8gK4pMWUC2QJ5LUDyKkHqbopnD6BAMR6cUKSE7DjCk7bqYkzQAZHC1Cz3j-NPRxF93OzvBESOPPJFf1qYHiotQTi-8Zu-TBBgynAMOLtrkTOluTjUqSGf4RW2eZ1uCVPgmrUBDX0IUStWEF8q5Cw0CKH6HH-dpeZux3d2572X3nkP_ssBU8ir6Opqxqjmyij-MhrCUDbU4G1onXHywmXDG7ZpV6BMBotRhT68RjGgKp_9UURmsTqgnFo0T91Z1EbVzdCKOuOmjiULvW_a1pd7nH5fRDhDcSAKdOJDyHKSnN4m-YNtdPdBHYrBUqbgArEqp0yxeIg-ZsJ6wesfRBY9Cy4MPyCN06l3ConKXFUwF4_w-02rvo7eX3Vc2UzjJ03u82wkd5eY4oc_c48r62PylW3IBSPTywgORJvy6GLu1SQZ1KKNyIy6n9soLtdS9vAgRcPLJWllfAw66nmoUpLTL5g0xjM5egw_w7Qw-0z8GPaq5eJO_PHFfnsKY2ybyVq3zGjLDZGonWnZh7h7XFg-FSZcxYcJYDZU1Mpr1lqkJ9uTMQH5GUbcULZ8hGBMeyvcGvS15K5vG-I_QjGcugQqvMzkU0BS8xKwHMGjGheZbYqfbUxj4DUKyyoejZYBP_yLTbPLuwO0-ctgJ7R_ntybUPWWt1i3XqQoWYFbpgAhvECq6WnHU7rEl902b2whDmRRnN3dqPc67IL7-7B7Wnb08SbNtKbs7FVGy3EohkmWRfoHSB80FLmvPqqY9QqknNfBVYWp-emo6K8PI-XeMq2g4hDnSIUpe8K9g3qUwiQGT-gzf6OZcTizth78TJZqPrGrZn_LVugYMrFAgT6_PHezoy7GHJRl377weyfi1Uw_jguLu-nbj1-f5dLSOvRC0qEYwQxLEzVfM0mpxdx7Ou-Cy_-Sl1TM_tPXZ8Wzd8DPyP0UJUp7kuM_Pb4gMqRxPqJIb0kua5kNHErMTsXRX4swH92gPxJ7q7lcnXhEpxC1gKvwKvIyOulyTHRooes1AykDlSppiXgpAc1_XbeZtCqSSehCpTLb8udW0_O5GWdERczzaHho3HQrWMatwwUS5483B6okLDn0NH_hVSL6m3Nou9WFPeYW_ERvVHh5kahT6rwSFSf5Z2g7YJoB_c2l1PrrnojOF-Z2Sq-gVymrXUwm5CJOzJ0N-0_-FNNofXfp1H4xTAR_OQSlNZMhq-xqknOUAvNV2XUxtBWOqh1IXNTVC5HuGirdAwh-2JYeo_r2pudI4c0sHm_8a7KvirdFZeni54x0g7GnjrtsZnA24kvq4o7raS-MVFF_PRZ095PKk5bJvt_3mhq4d2h1UlsXt7oWgjQoMihZokq_6JrzGF-XfFnEmA66GljmR56QZASAxBMXwBVlbu6haLdhCMOnoUJqseL4bZP2NO7U8foBLBsIL1w\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\",\"livingcircumstances\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6810df1bea9e60-67190605','','','2025-04-29 14:16:26','2025-04-29 14:16:26','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43106',0,'cd-form-entry','',0),(43107,0,'2025-04-29 19:05:03','2025-04-29 19:05:03','{\"firstname\":\"Emma\",\"lastname\":\"Wall\",\"email\":\"oceanflowtherapies@gmail.com\",\"contactnumber\":\"07480939652\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5gz_uMDIvqOuQbrRnKqCJnYm2z3tWiZQr0BJm6aYrYMghjCJAz6WhdcB2yGD9R9wuDxjuQlz2s1mOO5pdWWx62VJCchTNZWBQF_VQiKcKbgeLK-WmbgRrinTn-T1TtNI47-_HIh-2kp2Uo5UKsRd932tK8MwUMMjhEaWfa4S-AoPcl7BNlbMneLq8TrV_OM6lytbNDGCRV_zdMhfNJ7hnUEgmsIUi37tT8TFjN8yGnqxhvao62NV_Vxek2Ug7nAuGXmbGsAX9Fdeuh4Tb4MFq9czXSeV0oZkVqXHffQi0epgZ79yc2HqBITdbt7zVd4qt3Gl6DhI5Wi20xgqmSbOYrfabPXe5DVH_ryrm68IsXUH6UoImTgqU3daYRKtRvHboiWCt2__v-yWuyBEtr5QAayrg2n-2jQ3mJb81Cr-zy45g_kEE3fkDLpJX4E1oOO6KBbvFa72j8U_htu88G5uakOaGZbMsdfri0lbU1OtU-dX3-mHVFGFfJ87uX9ziYNPK4cWijNPG3aujNs529YP_BPReyenR_S8hZ-a69GCYgv7JRTQ_nZ1kyUe7sgYQdUVxuPCwqGMeTQXm4E4bTL_OB1nCaLvqmUYKAAi2h4JyT6pEioDoIbt6qXtjjXo4yGeE-EhLl_HQ9V06HIcnwnvm0X3DCtsrdbvvA47-j4IrI-aFleGUY5g0S1qUMrwltqytLH7M4RWV5-_LHHXFsY32ooNLaUlMG2TXaVU2eLg-rStQ3mHlFUiorRKMnE3lwbYMWZKv8ISaJ_-bijYx1koSAx38wL7tMvmA7QIFYqCoISNPydJHdQfbevInPJXiFcKBnJwZEEhhdCjp9fIWtSLuGrzP7dRfKo9Vt0CTruvwqVB2e1dSZXfeFIsCxebbMuupexmUDChHCW50YNRwhzpy-_aeFRtbXECv2PhH7bsP2-fx3XN1vJBhTs9Otpn4hsfqsG6d-_ukkRPgY9ZtH6rvp_W1lXBqQ4g8f158AqtcCQFIR_VAcVo8Wlux0UQh8DNHtX9OHNX534QhaxecjJfl7NMxCETjiTVsbPhL-DLPCFcpXRnKoBEX3HiAMavy2ndkay2G2ppHaTJmEanVhNEapYzWZLHPK_CXioA-GOcgeiVx2UcL-_LmGGEGcr6Jfe09ll18rOVRPBAv0yEk2OtJf9nlNUXnoH101sR7idorJ8YwECcEALBDgfNHkEQ3FRKeufGX9Dr84676yTXVCSXjB8Qg7SZZ4TwZZF48oV2t7kbGcwXF_AMYi4V3vTZpryiWCx3KAZcfZQ_uedXJJCyMmtkoxmjEO-EuLMAByKXagAPLsUnLiPFB9CVhz5KdQVWF9iRdgC7K9rfsiNy1S-Sx9_XfF5QL2IqpEiLMP5lqcXuwgK-f7tZGpvMRTxTh6QBn2Yl8rCmztwCfVbRC4fMkWXKxYRnvgWODnLmYnKy_WCCpzomvQdltdM5MkPYb_aaTNsT552ShQyg0dAbDxLngHYggI0ot39TymZEowHyusPBWcgCj-PvAOGpJ7_oVgZp5iVm8udpsvjxba3NRzPFvSAUhuBjocLdNBoUIBr-NC-IsPZmHo4o27PQjkuNF6Wh_t26z6KqHzlQtpINLZ6D_FtV70ddiW9sOHY5zbKDMx7trbWH73lpJgKOfCsl4WtFSd-O6OD_GDdGbjIDbk-ZQVM9z1c1tFWPCrCMZh4T2kORBSB264Js3cAAo3RU1Kqf99tv5lWY9BaBbV_UGo4kmyoIDlqf6g-epd9Ieb_utNn0dRkHnXFaboKL8tnWDkC9GSNu3YEk4M1FHztd4oy9tR78IKosV39UnnBC_ZRcwf8NyuANSnK7CtAVCQLEuQKOoijslxn09g0jWxxXNDjVBRU7vBd7PiSvM_sT4BT2uDs8lYwjALS_-eooZ6kywled_uBNoN5dASMC-aRGf4Mxaxyqh7TwIezREe0BJTJl0wNQSVaqv6KF97qn8sergDEopjKTrfocWlhllCg4rbqYLLMkcoQ-ouDXj6-SndLtplSkj3XTLv3iuZvXbpWXMBPJia4wi1kIQBaC9o337ftqrsHrryoyjpSrSvWxoj004MMs5B5XlHMdprQ_29Jp_F6xWd_aWpOuGGWduDFMdL11LgiAEeJBqUH8hKRjLdGXDXj4LBbEGlEfFbLPsxXKD0By_FeyY17NE34dXC_1i02AeIY4qyP6X8FUlVHa9l8YkRwikqqmBHkryRwygURmmxGOZd-JI8rfLJzXVkZR9JMVI8iotjY38ZKx1qLz-Zdc7KX0gQIgFO6ua5NKMtZVtCf5u7hSyVCNOY-DtKHG2tggP8avSNDA-9KppwyKNPc5ni1LrqmWS1FbWFcyIIrijeEazaylslb08qcXD0LO6VhPctBirv7pCGZWA8QNb4yj-Q6cocEj8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681122df10df16.19575709','','','2025-04-29 19:05:03','2025-04-29 19:05:03','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681122df10df16.19575709',0,'cd-form-entry','',0),(43108,0,'2025-04-29 19:06:57','2025-04-29 19:06:57','{\"email\":\"oceanflowtherapies@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"PO28AT\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4Y3eD45Gzf42HdtIWTY4JRWohp72ZxHWQHHY6n3WU_yDSEiJVsTbrcd-ALYOy4QtfKY6tDavIb_zHb0dbNvHT8CS-YUxMWQa8zqw6Q8isX7_urv7GDniyHlWrfGVG8j3evmg6a8bqDlQxLW6_J4GEudr9fauWOhcBYS8sRrCD7RBgHC5Uxcv3RdMDaOn9ggtaHH56tWtxFEVLwU4fIEjEIp8KPigpM6S6yJxMCdAIefM8EyLEVsdVfbMKCYjQaqriOw5ttozG0p85PYFraCcHQo1y3TIGAWaMihPOFDHVavIaA25pgNSj2w_UCL9Q92WZEjScbIffk5sqsw9Gf50GgiSKTfK6hNG9W6a82LiqchwFQvHVe5g9o_vvFS801YSIgbcwkLs7heXBD1241jXKGS8q_lS0Kn_LZxph05iYF6SkMLEqz8YMTYJjGJJdF-6J2JS2SU2dNak68K8LZWEuHVoTDBYR1J3e8GZ-E-Ojqcpd2_cRNwZWKf_vI2Ih_tYZmaKldkV1JYDojym-vBinJ1eIJUmF90WdXF0K2saAwD-1JiXy0X7kfadoEecqhRsHTqW8jkbkM174jEDuFrE4nQrVLjV9WvsGhWz5ehFP-10EeaAOt_cvHR1CjoIoS52MAoENMWhurgOAdkUBJYoLKlSg6lgb9cGoaD2MZeL_dVVnhUsVbfP8DQApm8VNSSg4840hfOol4Zif9SQ7FqbqHCqvWnBADUEGsJ1Zt_wGGUqc4nT_V40446QEw7IWY0zRb2r0QoCem2zbEnrSXqMhwj2AmgvYelrIsbVDW-zn71u4BoYEDsJO8_cpwSqTxHNxGI4RU76ZFj27eFeRjSY3luCFMYZHkQNql-zAqBKZAI9M1VClTni9FCnBfazVifOHFe1zSLYLJlekvxycL_X3oU-PARi9HG2wQU4DZ6Pq6Juc0YvdMfO15p6ZWG7JjF1vVBuazZinmqk0zifpzWcqAkBhIkSz5K1YihUSLQVnpxONhkMOSYQ9hMB6xQK0vs8CDLO87vb62X_HLOeUyv06ShacQPRoMRfg_VDEXnCkRyVye97GXtJGWDVxFeFyAYKfyYyWlFWZGG7CedOBxPXXMKW81cXbm-6yFSgMsJRU_9tRISgYvTPFcZJYf0JbjghkaM2MCUpuA09jfGpCupb2PbGE-1Yvc862W085YCNLQIUl9AQq_mUHPCn06jBhFq8ViT70qHbBqrlyzyLPQhr3Y4muaxz4Ywb9_7s5B7_fctH0lK8t7UeyjBaSku225UnHiB5Hjjzw_Dql17l-RtwH-WIZZ3ksky2VKmNGKOA0rwTz6tJkgEfNDD9n9vQhzZIcntQUto7w7Gy2P7BPrIzXjGMite5zKYQ3GhhEQnSlSr2YnMQbhdbwAT4HqH8Mad0PEt95Dq1M6l4YVepmSK4fST_YBBCtjNeibh53ZUXrugVgwie_nllkQ8U_VgOgBaqqgBQXfinFgF9tVN2D6AGo-D8eYnfj60HDsNF9XRtD2Lz0aSo2yQd1xFTjnqbWY9jYTn9dHFy4YhmgSQVlcSIAcZyv6ClSGtSZhhQYC8DQhbZez4dDW2WRmokynkPUv-jOsDA89MxV1RqsXI97RyonOlFLnmdWBIV2YTq_96HpOQsssqke3eJzK3ElgSUbQAXeFxKln312JvdClCWe0bI4VrQZQIeMJW40NbX8AteSyZsRF49YzfAtQNoixf2tNPEYuTJ2bgERDkkxLY0Uoh9QD3F4PXjw9pp_GHu9Dfnu7sVeTSJySKJLgz9y5bAqCINK3hD9dkhlQ23PCVtzCuXjQnr7oYz8N8eZhM0itnFq1zXYLntjzrssydoMPX62Ufr3NXUxHnJWRsLRCIc8MPloqUVoLKC14HbJAe-ZvhUacyVZShT7pqtZa78Bts9hhziVCw_--5QgyGU3d5rJruktYqhYAfkXCKOzLiJ3vl4OiMtNsYHqhxinmrQHow_IMwtXOv6Yx8q57sH5z_YpMTJxj8xN77OSXvR8O12s7Gqn__sH6SuDZ1qvqcu_Az594Q38mGTsc-ZGT_DAd17nU1HJMnhjtfcgkkK8LYvVM5Y-0dHR85MaQpm1SHwXCUNCRKrsY_0u9qHHipf99pFtb01FwbYbFg4JczP92w055R4s0KRyJh699cqWiwkO5_vlpNnqLsqw3sl3go_BVjQ2JZM1QbPeMkuhqJXJPyNB4v1h3bd84b1_mzktt5jIc5W43xQoeo-oCXMqEasuUXTWkpVzZ8qGFmSxK5-R6L4qMwwPcVFUZD7Y8lOTBDxmVpJ0hE9vC1E8SFJ5-wUXluLCO4rmYSIXVCjGdiJ9Xgn4keVvuu0tFDC34ZNuWCXtSYm47225CoTpBaWTLxPRnKMXvBrxaEdv0C3s3XuugReN2bDA8AbLSNT4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68112319a267e3-72974519','','','2025-04-29 19:06:57','2025-04-29 19:06:57','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43108',0,'cd-form-entry','',0),(43109,0,'2025-04-30 05:18:38','2025-04-30 05:18:38','{\"firstname\":\"Joseph\",\"lastname\":\"Webb\",\"email\":\"joseph@coachjosephwebb.co.uk\",\"contactnumber\":\"07716755012\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6ueXNjTblW9Wd5Qly4IY3ic-&amp;gclid=Cj0KCQjw8cHABhC-ARIsAJnY12wAIv-602UBzvYETP_aPaV3bLKXfhJv3twI7-W2H_XGD2eSZq6Wb6gaAqdBEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4sFffzggvCPU8rEhq0wAfqaMXiGQTIX0uR9gtZ2GRTDfD7h25R-raoRsXSH5hvVCJ_c7s1WxiziVt3nKsEN6khg77Lz8yCuoPKLzO-R1kJHom7cHGpqS8foEHSou4IkuTmLl7SYx6f8nDMJJOhecTkHXGekmcHySF8mxGCjrjPZblR7wAaPnNf_kn6EnRWqTI9oJafJx67aYrowLCsIaHiskni6urc7S4tdio4xYOfdQcdaEwqXwwBneF02fzBjbGb2HpKr0c7UdTPRgEdhgeAYF1pVbo3W6pO67nj9z8ThoG2vUR4RrVZwemDA-aKV0WdqqXoUO1TUt8BwN4Pn2CVXpmwWcoCzNdcU8WN9nyayRsnEAp1P18dDkyjbarp8WskUvIxSmD39uTSwAD5mILa_G2UhcfwOxwZjKaKENbTP9Sj7xYHi4I3u72KB-gETNhG_BgTNvl-6BoDX93lGfsh_9PbUo5Xf1fRh3ihsxUKB2fT4k0Lcmf6x8HVbObszhzolP5Yt5hMMpMe8biZ7EYKb09qPrEZ0XkOw4xVCzraWJzOaV-OiHn53pUD0yM-0DNFLDKE455LOH4QfFJD25zQGBW5Uup47yCuICzG7OSNFYS98AwbFIgKsDRGqFiVJ36sNc_J58vGN7efNN91VSFn5y6KHYr9WCkRAsQMfzcL7K_SNgq1hYp1piSMNgEp20HG8mbp2zOaskvRmzRgwjnHq-ZW4bi7bJzmUmCwFbdaskZIw43G5je0SznWc_vK3kxjSzZS4FdflasfW-r1HBMGtFO4w4-MEaCVgCo3jN2tNBEeLtfbOFjxKp0_0hLyDw02FPlPzgJ6cphHkxnjhTQh_OR_ZdrUxsBX0ofDcmAkSLja36Lc23XkMbs2dLOtdl8cgMabOEV7TOIKuZ5ODLqgVp1M0u7yPA7TmyqaZDoEKj7frl_WzY_hEKNd0CsDyqvWCQ1AzDlmmZaaQ2kqgCZYgPs3rZevo9uMvhZegWihZ8z1JyplxCdQhlOyLSJgyHHbjRBOaYyhovJssGGwmEEawNK4epsAq90m6z6fakDxH9XFTnQVdjeelVws1I3DhNx3699L9W9Tm3RwrRBXljYZsozlfJFX1y1wEMeEgRwSVj27D5_e0e5bnePx8zxK0O_Lbw-2HEG-KwMLslUzZ8M3kKbe1_rpjdJoOj69hHobZs1z29N_JFRy46BobbT-HVM7a6fotc54a4qlRL1xejCUxwQlH5Uiqve8_eiORWlK8sN2ZDsACmG0Pd2sD8Q5lL4D5jSNGj_Tl5lY7--bmLe3u-CXG1JHwluIcWPPZEns9nrFjkwnSphYC7J_BAA2Ta_6sMZy8TPVE2_b_vs2RndHTQZ6rJBDGCc5IbLpRYO429c3XLvXtsDsYmidYqbzoHgnYGN1KLBANrdyGHqYQLdSA89AM61v6osTwAh6EiOHelpsJeFbupyRE9xVzBddu3UFf-aAEIfeUyijA9Dju8d-RkH-Cwce79kecb6VCvPKZbyPx-UagHBwxGuFS4N3i0oqjW62B90gjItIkyZvMMytG2RftNBl4Ja-ou5i6isVEnM4NHjLAP0n65wDWr0-qdblmAkpmXjJbZi1apVEnhp6l73MSt-PCcccrf8-lV51zrQhfV94AWsiMjkrIZaoabOEdKzHElcpTjI8S8aQMhSQDilk9Y32QegDGtGU6DrDukrdXRvSivS2rJpgjs_Njph7hYAJxNY002yM3VnhAR5xq4Wz1Fmnlo4hZRUVniJK_L1872ru8e7njNtdQUi9JWIApzodKfo-k65v9qDONCdIOhkXSRR3PVFMq3TFXAJnlgFO82uXGrvB4FFP62nAoX0tGkP0ji_deReZTptU25rwN47FdraJRz0J2WYvAJxQQRngdhRSVtzKugp7ZbTf_YJQZRQB79cxlL_7ZQIM76UsCgxSPhoF8mm_y5TRZRQJk6xFXrbLFsSF7U7Skz6TukfJzN1dhqM622MkX4hcbR6llmH_qzFv8yDDX_NbUxtFOGI5a2ye1zZoG7ItUpamPIbSOvLCN_uIeDIkGlr6eJKAjw26a8o7X7qN6-BDHoBrOo_vbizPazI2HoGHFg4ahZ9ybyOCVdihg1RpzeW5o5LLPtC2ff7ujA4IAO3eN_grwsjmw-s6t_Br_OAyWkRHpMcWdmLXt6nmkvfQob5uiSSloxWyQIMSLkHp2vjnJyy9Zmhx5sFfZiA5ez9IFF2uK9RhRRn-FOGbyxwtS6YzOuAI9-CshP7ooUKsiAlki3e8EonXlw6wZAZeNSxe4QsIQbytwROFwU1HHI0QoOW0fIEBjKl-uw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6811b2ae52de70.71053237','','','2025-04-30 05:18:38','2025-04-30 05:18:38','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6811b2ae52de70.71053237',0,'cd-form-entry','',0),(43110,0,'2025-04-30 06:41:28','2025-04-30 06:41:28','{\"firstname\":\"Angela\",\"lastname\":\"Sanchez\",\"email\":\"angelasanchezyoga@gmail.com\",\"contactnumber\":\"07851253327\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6vKhnz7QAynmHYC485EOS_pr&amp;gclid=CjwKCAjwq7fABhB2EiwAwk-YbDPegy1ZWpfdcwyf5iB4CaiRdrgV3n66sfQ561P3jIiYQcpRPmu1PxoCbjYQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7HgcZYXH9EZPHZbS_VGBL5URRAYTbOb0X6b4LVgVexN0VkdebZPmlUbWkh59TCL-tfMmRfwbf24Z66AN9fTqhR3VvSrvI3NuyDycgiphILSLrNMjsxz4ve76kggoiOii2ICKbwJklcI_71pihnJuSrp5M8Ley7PuGvBISh9jZWvQFL2odWzadBzUKz3hnDcBGka0C4c6bhfqCKLbS8DaOoIXYuu-p54YDOwp0W_bDgyC66lA9Lbzu88Je3mac5YsbeO-Syt1TEPX2FRX7NHe55ZBqUgEtaFmvvZhDx-mtn3NK_TdcfwBpGJqIkB5FnxbUiZCvmAOK8AHcxX2mKSKApgegBpQYgnTRSmlHooLE4ULqllLs-tauHQv1ixj5PCWMborzTm1ebCQYvYkxkoAZ4cQMaEkMEjxLOXHTWS5A-sq7vGUCWX3TT7LpVI1kobr0yTYcF0kGHBm3jaA02-wkuqX1WWNApYe6yAiozSdeSU2iv2VSAPupZimi_R2N4-uFibcoEPpsmkFUZEiX6fSJ6k2Mbj82jrx00p7G69GaAoHQpzDtKIGlDeH2B8dou7qHtlGBsHMAv5tNggHQfEbG0eFtnLBY0mbHg0H19RlnYxTznaGGYAz4_v2ju8mdCkl1cEcZVIkPafxZTT3yEwtKQWQbRU6Mah9lfKZWipFr12XHPVVhuZaDxGxkXNwO2o-nRJy-98mX3jy93KYWbFbEtr8A6XVLLmnGM-GtXgxeHvDXO5zjwnz-t3qJvAbjbGGsGezxP-Yh7KKwDoqjm5Q39-5bfFRGjRON0pVOt3nZgdATsjAkdim3CHanfuBZ8SDoXrs3_6QdNAJOqtHzaoJumN1-XXSSze9Is-LJoBhUOLykfVgYnbDgiF2VRHmf4Umw2CBFifpkYzAg89gNxOFHyw41Oyrn_61kZ1fCEO8BZjAliM2HrhBglVsdP9oVv372GV8ksCYWXxnmjCcueNxhqTK8LrbrQ5XECt5-FoJOgftzh4HZ1ANs6PcPxTy1O61ZGxgRjLYozsIbkzvXzvWm-2rLzCvfYfB2m4EbdBhE5v7AHk6xAmCtO6BdBA1cAGZ1XfE_cp6bwWg8IW7qJ7Trc6g46FX6NTdpT0IxskfsBFJS5hLFsNQ8w2HiD1NiavBXyDCg5-JY4_6oF3m-laoYBNIk9t6v7gbVyEY0o1pmduuhf4C5w3A-vdf1c4OfnYHHAQ1nUmT8qtb1GsQVKYxJpSB5FiVyWqy7LSppotMl6f_DBUI43n9Yj5DCF2Uayq3bQE-1Lh_tn9nN6xfb3QhF-qveZtVssu_BUSWLQi2qNObbdCVzn0HQejc-X2d2jfX7Dt6QWDLm87vX95yy7ASnF3ote1m1swTolUDPTAOGFn-lxG6exj18WzVarrhz1uHtvEEjLvnAcpgypO71fE34d9rdVqkf0hxchHX3Usu8s8aAKOKx_EKNjeQlxWxH9xey3MHtokAFEb4Gy_Z6a_RvwWaZ7TtiXAJ_UWvD08y8XaOtK0HhOI8eCvFM2-WxYUR3owJD6xfim-hNLCNLeu8f7_x2y3mLNOXAaJdhSSFSQPJHYWr-uLdzTi7siKD51H2tYshH0AITVqWD8khMA8U8vG2-9VQzY-fz7W-6QJ1k5uwfW1WW9hcvTLY6-lzIql6HainOmnQx0lPZY32YvaB1eZIwKc5yTXErmoGtU7gLGeqx-LAsKdGlq4EhXtZwk_d2LRyMbrU9mSCLWlIxF1NCJLpI-AvXVpu1sMN-6cpHsuePlPz94sSmqE6vyPU-H4l-WqQ9v2-EsS-49inLznh1C130oXLvaNejOguzTNVzh-AwE7NQ1mhlsStlFQRRShhOBqkD32zOYbJ1DEbfXh7X0REVOsX8FI9QWavaT8Gb8NGzjT8sdOISZ-05VrO5LSBx-ejncmEnbVUUrqVyFOwO8lJhIt7rQVrYoc6t-SACwD4eE7lcw4o2jyqwvV0VfxKOc4vBuH-l79eUwBv-MmCZ1GZP6uXZsilJwNXn3Wzas6tAIuqohhsSDb0hKZQCzRUPsiWS91MF6ZhMsU_S7PLrqh6BmTsJx-Hpa5sjqkJGTx2Q2xTL8tCx1A-In_a7wQ8D90KKamMl7phjO8KCJb2g2fsxsy6rTqFaY5DOOE971r-nC9GA4BBy2MLWJap3GEy-TiQVH\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6811c618e62c15.33048788','','','2025-04-30 06:41:28','2025-04-30 06:41:28','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6811c618e62c15.33048788',0,'cd-form-entry','',0),(43111,0,'2025-04-30 12:50:45','2025-04-30 12:50:45','{\"firstname\":\"Jasmine\",\"lastname\":\"Graham\",\"email\":\"jasminegraham2004@gmail.com\",\"contactnumber\":\"07484640926\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6v79LoHjrbYMdBacYrBpVMa8&amp;gclid=Cj0KCQjwlMfABhCWARIsADGXdy8eZm2qEvmhcZTbNc968S8at6Fmi80SDOkyQOPXX3HI9Gu_HWANVvkaAsVkEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5JussbYtl85AK7dv1RPYLyAO_sK0wZE3WpBu4W8uaoJf7zsYMtxQPhGdMOK7-sPAG9efd1nmZFLUpGeJfVrL6oldJYY-a9l4rnqrzeXGInlqDA_R4lyfh_4GhuOF6aFGFf-JonR5HFOqt3YY4HEnCe1SSz-yzsTSd3Tvo8g1SH6d4lPn9HNvUTJt7cplbxE2OTnFlHqHmSqUduubjzYb3NojpXBdyYKeT9o0F4Zn8um4peEBbWDMMZlabQZvAS6f5We7Xk_bky9Xo1JFI6FLno86juSd8b1UFvY1CJkzr_EHudpf7Q51e6Ud2OHk_SzwzYRYOEQm6juRU5M_1mWER03jEdIcFBVPXdthVOQwgzbPCAtXTJB1TyDkcKsT-iby6TKykYZx6nD8pQ3W8PLA35O4G0-bMrHGcfsEPP1dl2hU4z_Cbfy005VLCHT0UaumTMDPykiTpx7gCtkbv5SVkmHKd5s6g0QDXi9thzV9E4alb-7-HLbhPnSUfYammaz-fwHvas3upeyNZELdkv5fr9ysMozAyixJQaCPrW2Vhh1ArK3Bw2NiUvodBoIVogLEtM4sj-gPZw3nuED0a84IBDS7O31mYjCdAC2gJBVdCpr8_g4Kkvc4uME-1urxRleNoYL_cYJZiEhfYAG_vO5bz4z0zAjz3unDyse0QmwmHXrA8Q8vcQVX-Al4zVMAAD7ydEvaCCVdNO2FCBJHrSq4JuZlXTOSkVItwLTiovWssOfJl730mhsat5_YD_3yx-fVDx7VbwkP_faIyE8TLiWBcdtZBHiOa4aynR36HVsnX_xd7zHek3ZugJDuu7IGuK9JssDITz7YHs7KUeKiJ5eJIF_hHVJs5DC3A0x8XN56bQk9kpfKL6ihIXUsodrELrxf8Rtq0Sf3GBOuIWdoOodualCgmap3UkRgJg3piTTLjs58D_dYQEFFU68ccZw_H9so71FTfa_BxBz8qi8vPO56GVXPwxoNpmRrOH521fBNp1Bcuege_mJdcHwGeJA_iVYzENpjNhXgdc7jhf2jseg2W5HU0yo6GGi3hTOXsWDgLmJrL_fEAYbfFyvAxukWtSqItHFNmYhxScmOinqYarTVjFHyV5YrOZCnJk3DIo-yCA0GX3gNmEBX1Gy-jVV_ha9sBNBahpzcr65d72XrKRgVikcoQ_OepiPy7ZUacH62CdCAlz97sQAvMUnrQXVo7UbKBzjFqzSlHxo_HQgf3Gu5FbYSj-BSp5NAhRAfIzn0utmfWV_Mt5NXW9RXsTT1AZYjUK95iUrbx9BVxoMCwNZKCX2-Gy89xq_snMsPhQXIUOLUXgAHARLPbs6HnhIafSIzUpf8QO30dtwQVcU5eNMORROncbVhJI8vrKap0CnTD4-vLtOW7SdF2IFawvdtU5xInbWNQ7bgh5W-H0MOE-oEbeZtU33tjm90Ci7Ovsna5c1QGZ6dkqGs7bw7hHYdKTyILmjybnmUhUUmahNPSlUeWXoJOwIc0usXNuiqpgSDXRnSkBetEerX9E3yPPiwNQgHB8BHFFoKsKXL7Y46wWDKqcwotOaJ8vxGazQHNIf2j3H4d1j9RZJ8HmrelCJTkbJt5moqILxEtqZh669yivyx0QNe4sFmfD-S-YyTL3NwTxCFi0_BBgPkNmi2HOZy2k6jvJVoeuvvpMx4oq94T3I60pa72Q-wBa-pLVet4xMHRrYLUvtuoIFEprEJ7iVy_3-Lhu5530nJjsCUUmBuOUszEwZAyXaha1fsmJpfHuuj42q8exldFJLnHZeZx0FimXz4FA4Ot3ldMTdLU9e4EzN9jt_Gl4MVrTaeJxiqjoDW4PE7P1VZGPt1dsIPaPmEyXt3FOnq4XF2pUV6jnFOvFaI1Cdv8o1e0NrFlj3IkaaDDTi8GnZTrmOUf34C2bWZz-Ldgs7wd2MWyEC5ezP1XXkD9lu945cpIYdJTx-c6kRXGV1iDRiXbJ2gdC0xGiGB45PzOCtIYQMXt1sx-cegK-T4G8RiClwtD8rEFbWqcJXISmHRX28MIDRJXw6QC8NuYT9YK5Vpb-5Tn_xkvkVK-Z-7DgfaHuHWq1jEfVLC1qiJkgopn6YlszLJQb7IkuzdKXSpfrBERxkO99HuSLwAucM2jeHthxPoX3SOXTY2hSpNIu8-fO3St4BC1fn02Xj595-ijMIrrrSGdB6tDewCEGkp1vJpHoT_rTVzZBKB6kjr9WPHJYUgxO9H8IZs8-Zmf0_aJh3jHp9exUKr0TqE1nWEl1iRYbT-COE0YN1Wvv5Fjbe4jshJzmV_PIdqkRivgX_PuylIvsm4oSmy47VXHqZEHwX4Mhez4QHITEAT7GLVXfC2--wb1U0GwMJIJRDTbowi6MwrLeDs1gDuG77nn6mcbJlGHziA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68121ca5eed931.45835556','','','2025-04-30 12:50:45','2025-04-30 12:50:45','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68121ca5eed931.45835556',0,'cd-form-entry','',0),(43112,0,'2025-04-30 14:55:56','2025-04-30 14:55:56','{\"firstname\":\"Sergiu\",\"lastname\":\"Paul\",\"email\":\"sergiupaul@icloud.com\",\"contactnumber\":\"074796866\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v79LoHjrbYMdBacYrBpVMa8&amp;gclid=EAIaIQobChMInp3Ay4GAjQMVyIlQBh00ayYdEAAYASAAEgKFoPD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5F5W81aB1A2jLSfU7dWLVVB-Yvd-5QEEmGrGOy64OWtIQRXVMh_ZneBTR8FdS0fXJ7oucSA5Cc_FgJ3WfszCTLQYY3BT8mYPnnumhxGyHkysTyCgBjQwF8e1MctK-5gwy9yfghf7I7wgtywDSsQwVfovEWbnSvK4HxnuLK8Ait9t-Zfjn5-jeIQg3NYziwy6XO95-UdhazX0SEUjkQbt5_6hNruabrSgfRiey7Al0LeNZLrwkeFnK1IXf9LyPlRmDChDsdXZhtzndCKZId3bqpyZLmlj_w_RUbe3gPxh_FrkK9-4iZhqe0iKjaGcA698GcI7Y0hFbHKgO9jGQr22_YQNY_HIbjLfsPmZ5jTHoLhNS9frvA48ZIYMvsAK2aIljAn_4ah5cSJ4lVuChKRS2p7oMihzmzwIZSNcUYjDn2YA555RvurIjlRDVn-tmwPfRLOF2E6W8_s76IcVqwz3heXWeoDVlBFefIC5WfyYZnooyIdxf8NnnvvpGHIcl__QPLr4GcmPGrO4jRot7dwBH5fcYqnxOz_LozsEI_1XEv3OD3orEgJeUS6icS2IlZXv8ViPkWMQjTGxgrT9U1zXCacXo0Um5jsWsYtxv9wrmFjB7BNh77Eod4WdqhhHXbTgivWC-TUu8yTes34lCoNfnppDoFRVO5ufMjF-E-Cnhnwbhccv6bRVSaqjvngW941GWv87toHN3GhVUTaHKDrwKeUJxnCqKwlNEM732-9wVbqtiGyfojn53LEfOh0qja0v8ADaAgqu-KrChzO6bIv2sK037Sge_KkAaXsm5MEMg4Nk5f6GKyYnk1CGxvI9xOOZunumi_Nr9xZ_VnAJBQCJlfODuIrmicjeQhKY0ymGVptGxwHRwDTn4RJe_QdMUbu1DDCW6h4Ok6pFPewOwHN4jX4a3L6wo9q-dMkYrhofwzemCDidyngF_TNG3ro1Cr9xKNYD4stdomKDQ87QdE28mPQ062zb0LFa2XNP-hr_P2Td9ICjLYTg4S9McONoGQmgVfTcfOEpK5Oga85aaQLwdRAV6mapE4tgKjwjHHDpEutuGRD2r_OnqjOP9nlK6ZE68kAgOe8ZnaMdmjHBODzAQLeUockTswyB_85dBSjLy-jHE60Co9dNQs5CpiD1FaIXbix9Ct9mVUCwNGImKFIl-F-lMQHHTrJQMjHkiQCwCTFpwRdLxOOiUx1z8ULhWiHOem03FgkiRi6gjhwN2AqdcWWzcMX9nVKAfbbOHoMIAthSS7fHoyoAzs97oaHJhgEuN-1uGOo3QSU0TPbhpeo_BoetW5Ebk5hCAs3mHZVBQ8MLcJcSuxW3tqM1kU2ZkP3TEfnRtagPZ_8Z9zp8nY7_-ZystOmMSdPw0Ent2JIkR4_sZWnnFqhzJh04XpxrB1vJa7e1vxAZgZkJMCwFsBeB2s4cG93MPgQTsyG8XA6FUdvYIq1WwjlgYzsTwJSPw6UxxRbKuUtPeXe6i4gW74Pr5_6e1T0PXzsth_VKRYaeks6nlXAC_1vF859y-K--Vl-7E-cIFpJJkF2h4CN4OCqdLZRaO_cbadrUQw8DLGTvNqg7g7kl6aZfFq9U9MluxDoDLJGhtnnkS4rWbwkMMqf79EtViP5qzjDEb7K3S-06KVTD3VBDlvVDp9QLPzAIu88_XOU5tQWCKBSpAIuLyEU8xWr2TJ8bFDKLdkjpYaclp1bGBiVea4f0ZC5KKTyVXnuU43vTZE2emehXdQrUG79yYJMOi1djIjiTjs4L10I3VxhfZGJRQ7AizBRkWR95UhwncA5Nk_TIhon57dyFWR6b4IGfHfPrT7sqRGqTM5590BkLHOpVhmKT3h-QwrdAkuCckU9Msb6mbR3Qzf-ZC6gib5DjpOHQyc_XZiyT6vy4Qraw-lNRA6b_oo8QVw9y0-7Z_oJvHeRH16I-LJ_G4sQ7EVyqqyE-pp3w2VrGvlhiSmgRTty5G_hdrA0HbsJoK0dPzVlstJI5PuWsBsvQgXbcvE0HDMLF4CI2yFgwNeWQxPWVZgDo3xIeIMnPqAgqVXI4Ui2gqKqTXPPN8QVcV3MJkxJDqxCoQVQm16c_-gPe6PL41Fz3xIl8P9ZnwwyRyYylwtqqCA-UvgcUsaEgs6r-TxWkiX3eL6ZbYgb8D4PDAESyoXhG3OPe1Xa7AqZspBDmF4oJuzXgmkNuGNJD4kDK_nCWbxP2OxE2bHZFB-MEdsCDL_pjqIcLlt10Lf5DA8vwjPfDQj5qvGL0yFdrL1kDhIh0MeuBFuRx9v34fACBJNJgcjqR1Ks_RXewIeaWymBNGdkv5bG4pGNQJtUERDCC1li3oW2dENgMDVb4aC0ncq-Pi-3V4Rg9CicJVjnxKyeJJf-phTldhmeTrO4ktApB2QWAGzMg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681239fcebc200.44013014','','','2025-04-30 14:55:56','2025-04-30 14:55:56','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681239fcebc200.44013014',0,'cd-form-entry','',0),(43113,0,'2025-04-30 15:12:00','0000-00-00 00:00:00','{\"email\":\"sergiupaul@icloud.com\",\"currentpostcode\":\"\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v79LoHjrbYMdBacYrBpVMa8&amp;gclid=EAIaIQobChMInp3Ay4GAjQMVyIlQBh00ayYdEAAYASAAEgKFoPD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5fygbcMkAR8ddjbMr_mtH9a2FagzQ8HBHGqT3nEjJXBzgjMlVtdAySyXXva9_N8LuAFMhJiZv72al_lKde1dbgqAnJJ8ddLZiRCaTHlhnfOeqGnDKdaFTJY2IJ6HrKrU5rdMannyUxafJbigkzSIfTplwNO9Cu3tQFbyLkLYH4fcELQ3mCm-27Ll_cWpg07PUdniWeBAOADQlGknAyjP6MLuhal788y2hagaUxlIW6E8rL1H5gDpH6sM2vqTUZPhi8MLE3uKB3U5ruSGq3UN23vVoZ58JlYow5cE0-IVNFIAWGiyl3otGD6fmdkMpcv5Pp0Z3YqZOE6FpF9dpfNDUtd4agcxIpIC0V_0e6xIZdC4jMDaIWPtbqjTA5TraP_JyPAFqJ6IQp0MTLE7SIIV2jXKLF9l37feV9AMg55zuQmRccBCS9ypzLZDBikAFCJnBSR2q630gnl8I0lbC_QWr3PVJyWuTCTo5IaoG5_OyWRHRAkBsNk4huFx_cQBTaQ1_l1h9T9SJPRitGxrKN-caGJda4Czj-sg-KOTJqVxv31P-jLlLSs94mrj8by1FgmRhwrV88JgCxR1ztBV71JUoxh6A8Faeri2iXX1ocioUazko1j4dpXT9xkp4AwILX4eGyIZNN0df6kRkJjOxPZGLE3zOZ6RZFGOuKerVH4XyMyyFwEwV0wZoGxRbZtcSK5uflCNHs0u_sLraKjPgX08rajnKNO0PSWO0U51TK4gbshA5E49rcWAm829Kv5Hw0X0jJbUH2STXh1KU9aZqinYPWFEfkvceVaptWK7gTPpgjLPSuRnFJsDSc1yAUukCmycAIalyomaT_qFxONOSwhLnAIg2wYETcjRkDF0740BZm97bDeoc_sywr-T7SEQazr4xA57HnXeXgOOJnRt-ndP7WSI9FHJFDjscdgjJaVXrMhMKE-RPQrNynL0zJ1Ej9YpfN8WXDORw7JIU9cTwSCgwvQ7863dG28GXvYz3gR890xnBvTb5fmZ34rOnPOWalOu2J4Inj1D6OETYBTIlXqqNh5PP1rYKkSKo4h-sh-5aFltC2uOLe8hkomWYqExg5htWwwE49V0tO_dKBZNPAcQMxJgL9j1pm8KYidU3xqaAibdnn9LmkNT_VBVCSoWYDHPTW5shgqmUDTeREsTMdKmGTbKe9TtoNRAiNigu0tfDXM9FdtKgYyO92kxkIdwlxKTqjay5e1Qls7sv1ZHSXQST3_M6mZmYTtOJ2nrtDR5ZkkQ4-uVfMvWac2zJaZFrQJEp4QuY5ZxS45uihNcdlnyEoS_jH3gJEpzjyCtvHGf5VGYqvvgHKV9Y-YoTbnHaGhE_PJLbVjiLsj_X_ndEC9AMn5yAFsS_2ieqayiXT6tjapwEBx4PmDo4YdDUVfT7c3wS8RmoGr34lN-3nLFnOvetWf2mCeuVF4pFiB-o2y-VCulZQp5gq025QGhRFcdOkJGMr4cW0isM90E4laL6zlZyvZJwj3VV_U9NpU3xTuwwET1EdyonYNHQdRAqH7_wZpQfSNaSsbmA4EhvkamnYDWD5JkwN1N0AGcuH2eJ-sR_6ocvUhUHeyy-DCkX_t8QQfLX0yIFQwhXvOy6SPrHueUqbgBPVBtBBXm-m1aLhZxdhbwgOU1VhHkbzrhbuZRknn0Kufed4Gxd7yyuUWlIDVgQxIhfqhsfAPhRN9Szc1N_15SNyFHzoLHBG4kLAwakvqbfcsEpfsaqpDlh655udlowDQQ87NazViI3Mops4ecF30SZkduLEvWRZcjG1knv6GvFRMPwhwKoH6qo9WalQ0bCrpek13XzK-iEIPXrFumvXMJvUoqrOfgKDBxA9iNxZZnfpTkkMny3qccU9zrMfYq90MbEtTRjIfb8EbbT6-j_LAhP_MyDeq07d6LvBlluPsVcq4DgTa9Kjt7Sqbi1HoO2SajiqtA-KPpS_4p7LoKmoYfLiKMhjIT_M5fQ9RWOWk2oq0DyUPvQf5lsuXocP-54dB5wRildf6eBiOZXpI7o4aqp5KDa-Xy60YIvD87v89--t6YXd4DCGngP5LiK7ZkQkkGUK2--XLuxpBNk7ivyCb2lBFatFfQSjhop9oGNeWEcRoeb5M1m-bQBBhvk4pV-HFYb7GWlwmyHOFUM2kiJUV15FBc_mi_jHQuklp6_BGXkiuV_T\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68123dc0f1c029-96046150','','','2025-04-30 15:12:00','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43113',0,'cd-form-entry','',0),(43114,0,'2025-04-30 20:36:55','2025-04-30 20:36:55','{\"firstname\":\"Magdalena\",\"lastname\":\"Torres\",\"email\":\"girolatino@hotmail.com\",\"contactnumber\":\"07854816388\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v79LoHjrbYMdBacYrBpVMa8&amp;gclid=Cj0KCQjwlMfABhCWARIsADGXdy-FzhYFILTgkTKcaXjE-ouHMRvjpuCQOh-1YXYPXnrMrFWXTUqjd60aAuItEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA52Y3LiUKhVWlEpclnd28nwi8W9sK_ZfxfF4tq6fBgTds16lLJbOXjb9bzgX_mVcwkPe0XTh-6omxLf8PFxDw41I2n2j6ZuuskABbpFqpfLsYskGEyiYCojhH6kWJHmMV-tiUuSIIytzSbVQ-aOEEXnHxhkxei6MX2jAoEXcgu3JtMIriLPdBi_mBGFycrYcZdsS33f-LhV_E4Ppdqq6HJl5qqKU8Cznxihj1GkltuSUBJHLpueYlPWR-WRMrqMoz521BAjTGPOGCxM-JO13FYslCWZba0m1VS6DFuuplhuFTH_hK1aXb-pl38aXIIAY2FKNK2cruV6s2rX7dN6XontrxEDazbVnR_FmLlHxQqeOSjqed25NobiamG_nJIMxa0091Hpal8GKI17_FNUk0kP-SRE7p8byTC9iEgp-o42DzpIn6Tj1VaZrpaqCB2QFL5QIuZ6_TxU-h8FaJb7DImUlgtN7160nTTvTlPSO3xmi4Wpd9YfM-mw5uJPfUtExOU9mUcZ8snFD4mcjx-vPag41IzwVCuXSaFNRyR6-u4-vWbMwdY7obohQdOyBU_5BxDquDy_k5sD-MvqEOAGcQHf0wy2fK_tSuLjGoxD1NoSEcPnHRtnbwILM-g_dpMl4taseDlze68XFYQsRU9suW-JfKu9SbjlSydP03RE91-9nfYDQqjjvUqOwtQ3zmZ2Vk4AOb8VKlVHz7ToyfkZN4ZukQvGXut6LskppWKHUrl3KWEyV6OwTNcwVnYPXYa3xD8GEmSCFW5ckO1BQv-B1ZFjyyplW_4GSm5JVk6OEwEMjuk5D0XGNmijvOqrzspYueAYA71Ar2FiPsINRlTSVq0J2K3eO7N6Uwd7pffz4F9buQ_5B4S8pOjHkKqsS7LEDPbZNifw0-AfkeDKzblgi0IWWXnbGEinCu8hOZVrWUO_QMTtXzgj4kbAbKPBrx81HqZqtWd38P7dObZgBekkn7vKtqBJuAoz4WEUnMCFeCmUhIcSZ3GjF1g3mr-59VYBBP-B81HziU76KwzlEFjtKgcUQZbNdC-O5vduguA3azcyOPxINau3fi3cofrxOK51wDWttksrEgkFZdvSu6rpg5MZpuDIK5ThBS3bcjlKsRn7cm3-omRPebiGGkgFmGD-NJ7iRBoBeW-xRfaT750mt-kqNRTPvZXjSYz27M8Q-UYfMJwCcV0ltw9lGkYZDydQsRMebboHSmJNAjM-sYTX2jATuDDHOxDriT_zDgd7qv7r2vOvKrZv_iICPK7EjjgM9cqdvCchY2avQs0dXClEKwxbye3QgJifUX-44GBVN9LG--PyZqEFITH089NInVdQENFdhvy3-V7qUA_Jv7bA5fDvekoAJCrFAgj4wfPTlo-W2e4_7kX1GH78Rn4Js0S7xMv139yocg7l-ic-2avKWnHjwzolIdKYYEZo11bLI06kHvh2DlqPmRrWiW9S0m8Ir60b06ED-7IPpqf7IsjOd_6aJ9L1hcDAQIz9lafcHQIb0TUza0trEyvTpGsyhE9S4-ez1FpX68W7OLZZvM2ZsmYSKuMhTfJKirKy0Rt16UbZhgENmXhDDqkaPr21tX9OT7DjP3RxGve87VVZwQWErNEkkc4nw-FcATibSZ48OvY0ZlVuJj-WwwjrJFlkjbB0i9qZs_sTrvJKW86mE6O7oPQg1r3CABo6QHIggwsAXVXBylG6C8c0a8-mPHf-okJrxC-7lW6p67Evrx0LdJPoz4tQ3Z7xqmZyguBEjnzXU_Q2Ojl8VCYo2maGHzRvEIbd1cansFhEHDYG14F-qJi8H_aqHhK3tvCGZvb4Clp92BLVNtKzk6pBdv8Qay0Jl2cfCQA_xU-PxZWjx2biaOU6xVxP0OM-0JfXkD4PuAVRk4vHCqFMwCpmmAFGytQbs2jMrDXlrfhjHvFCP89E0YV8b3RBf7Z8P4PawFnBKf7iX4vSIiShQGF2YOEP3HHuoW4wBeEfeqX4iH8Tm_r87UScVy4v4xJICbUkUgbFieQYN2VSWAiXQ-yABqLjvSbiImXkWb_3xdJYnVdmXw0bZSLFHu3QwgmpeIbWXiFFyozCXpuTc133mTHnzg_WiwDu3jpM6rYfHxyvLlBSGrsiysDlMvd0k9P8h1OLJtCM3TuWzJO2cvKo6QJBayOiE0_oj9bAEPzvbiaL\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681289e783a991.30457660','','','2025-04-30 20:36:55','2025-04-30 20:36:55','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681289e783a991.30457660',0,'cd-form-entry','',0),(43115,0,'2025-04-30 20:38:12','0000-00-00 00:00:00','{\"email\":\"girolatino@hotmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"0\",\"currentpostcode\":\"Yo10 3sa\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v79LoHjrbYMdBacYrBpVMa8&amp;gclid=Cj0KCQjwlMfABhCWARIsADGXdy-FzhYFILTgkTKcaXjE-ouHMRvjpuCQOh-1YXYPXnrMrFWXTUqjd60aAuItEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA647PDE-H-eLfmTdN0kyYQT0zScDrLeQeeQjytigcm5bzKM5p3XHpkBfJUZxI2QbjRRYvV-DWLx_cCwAe9-jnP2QNwcBgB646FSEkMl0EvcdHRARtNZ4NT24cSRYrFGcenIddN4NLyBkyPIJrE_oqoFyGYDI-rHyApSHD_X9-JnUVo_dcpsYYrkMslq3ARCT7Ynku7sbHzQQAZTNwZbjYZIJs8dVCLO7UGe1JvxEfNKFRCdpCMtGXOGD9zcspAOPOIWmKi1HYf585vj5d8yO28zn3mgWAZiWaWwLTE8lU4hHL_lu08S4D65Dx_xKNUzkdCGeaOS5qJDDDVXpxC0uV8f2DDeOrQhCi6Lg81HV6tqq4cdnqet_HF_MUMCrierZkr7IB0xWvXkeAklh47JHaFh6ag3ELOSNuydanxUod-iVifTZY1QTYXKSy-xIG_0pnAmBYzh8csUbKAsBZvEQSNjpQIginisEdA8lEH4VIx_KsVLzFA1r4qawMJlKc09v2YHltzeeotlOP49PaVt3duIInXsWWEFKO5ku_pMS56dO33W7xgIyLytLRd4a1V3xYHVIu1bHgwd3l4yKhgt_XuiWI1-pq83QjtWGWU7w3h-P9XAxtTu5NVczUKV_Opzfv_HyE87tylnnHnkbzeOu9fU00zs2Z9oLL2-Rl1wVWnvoSgPvLfILYfMz_LwoqTWXJojfDrUfHgSpn-Kh1vB-ykzl9E4bRD9mJcu1DWkxMfnYLcqxmJfiU3QcoTTtGig_My7mnrbnvIuZAtGlj2Ft2PUCFPLK6rWP9g43FTXgOMaIcyW0_N1rdL6FWkb6Vz3pvWkhYZAp-boxnIH0BZtJv4UiVFNk5gmvDE8eJI0DapZJk6dQk0h5A4CBVU973EXrtfpuXhAUqjr49_xTLL0mewYdLfNLDhwRoPEeFdCMpAKIU9ERLhVHrvkctnoHeiRXZlNszE1316g_XRl0Ln2g1ZoaONwlamlfsUfDsw6DcnBK2exR-2VYqvswc-iw9UejJuspN1h80RxqxqvZpDyWWV8NmUeiY3U1tug_0-Z5OrTJ_tBaczakxoNS1zOnWPBwY7lCR-pNizzZwC6QbwysnHsVsUrtlVQG4j3b_pEUP8uKUPdo9mxWqQOn7sQ66NuUZbvio5gKZHzTn5CH9jI-p2iDPqOrcb9_pZzD_iK3TS-kYxixahfgV5i85D5XGUND86yVHpTCgGmh4wSLvNfpZl90FHA6EI50vJwt4BF2RIHLOxlbDITiJRUcJ3ZMnQQI8VyFk8gR_CgrZbDHew6noaB-CjLityA7QX-EtTipP5uyywgzEjzIEdaogNW_aialRzYAJxVMR15niPLFwc0EP24a1LYW891LAV9EmD8pCB4q_T-Dj9RQdHyWb_sVI0Ibu1OfnjbLjQrWIEFIZL5DF43oyxCkwfjejAJdemQhVD_cTtTemH9Qk81n9AUYewEgDZVk1lckxWXxxgvLYyBVC8goCHqudH-Vd2AXqaij45_3i90OvqUJ3qZiYam57WGEZLmMgw7P7GEdoS15hnRjZsPYbvWFx35eeS_6LdviM4POysjICwDuaGDNVCa-QkRZLKTAVmDtXpWmgN20dpGzAqTmF92pjdakUP5zgzyN5HYLIoUSeMKGVE3ObpoygnF02o-iAMrOIxrJdNrg-t-Lw8Yr6PrTD4ZAiDg0j6NsRq_Whtd282CvzhgZhG5aIsVM_CxgoyZuPWDpWBj1J_l3eKH8U0PcMCZjaIXn2-dLO_o28K6W5vwfAyQRCLibXL1ZV5lf3s3CPMvSDLxDBkUGvub81s3iJPOfE9oF3NNC4uFfP-_ru6IztrGqi3cBA5NOWnroz75OU6gosKG8thl_i1XNYBaMGTuHVEHEv-4DQeyXqpjTPnaxBn55sWiXR9U9W7utrb8CMVNZjcjFu8wHZskriv9zW9mVwLofCMACODjEbb7PR7IWcn987h5GcMUrOJkEaR6k2OzPmBhXjEs5OMsCUUYvNiwFvWzstVznz7LFAp4KC2wlZ5pxhgtsRMDVJPKRnhkIpRPceTOanv0L93FggWwDgXPB3wxsFeqsRW-tWJaJv6QFebXYIQGwUYGNOQmT96dQj_50mxpeM6NbFc7CJm-EegPeKW0pxIqwCF-aCwz_CzbN5bvM-6a8XpAt_595V_i\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68128a34188583-10678476','','','2025-04-30 20:38:12','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43115',0,'cd-form-entry','',0),(43116,0,'2025-05-01 11:28:21','2025-05-01 11:28:21','{\"firstname\":\"Adam\",\"lastname\":\"Baxter\",\"email\":\"adam.baxterpt@hotmail.com\",\"contactnumber\":\"0776018601\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwt8zABhDKARIsAHXuD7YeVbFlgrzfcZYdXdGmRaOID1-iZwUU76s3fgCLR4BqTeVLkpIzKicaAr7_EALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7KiUVk360wZdlDbTgd8Se3IqvnjbejhW-6-xQoZ15r26fRxUUpP7DgdjrvRtCJlf9Yyk9wNrtYhcyktsPl-_3PTvIRpUlHS7ijPSwMXbxyqeyVfCc3AvbbosFUg9QuqCZmQkgM6tRqYRxNmLY3MlVdlVZJFqRj5pexLOmlRYehtYV1T1WI1eQ7kBB5vNUiXNPa0k4luvYLER9r_ZZ8RxhY7vih5RnI2HAwtqZi9c48BLe3JvOoL2aa9TVm7Yi0MRICsreRO-MqkSAAb8zzVIyM7OsXuMjCFpJyyn_PK5m-JohR9OJavbKCMSxtNRX64K078lXUN59_Ummo8mlIXJSp_hg8rR8isubvCDft7famWgcY33c4UH5wflTEUAG55uPgVpiQOyzAADYsoIsUvIv1v4x6UHnH5cN-4MCjuiKC-ABbGESgZnUcRFqb_4jDrM1khUj93I8ATFrhODUDENFaeHIMPZGYM93HrL3S1y2zTJ55TdGbfJS1y2n0qpOihWiCAlFkibdRTtkFYAQXgb7Yf-BNcMzwaIBBRfLUniJs2t5NonRy1tIyBQ2EQeFoYBNwg576_xytc9QiVA1ge9rZ_OwRMcP2zkwDUFoaKuA8nExlOsl1_RYKVV-HW9wCUqr-RJyeIqRdLQeB7TA9vdLvUiTLcHTe1zLrq41xQ8N8aUIFuXCs773n8WFpmF-ii6-u4SKPj5EBwzQCq8NVOgVuWvc6_FnkCM2GxGaKYssb0RXeXeWD91yRXulct6_3ArCdGz1eRnJ1gBDin6U5thNilpovN728GKWOi7QrlKT2wPvgUo1r4y88ALDMYf5Uye1oqQWpog_9EXLaci0WkSxyYzmm6GRk6oaNZTPT7pSC0lLgX1z8lbYr_68lAi3whkjusx8BvCiXich5a-cC2VmgltKVE1PVQjCpVSMre28H4srbAPpcKPtnnClPU2ii7aAL6cy4UqONe5qs05jzpjjNwWCBaP8LxWyaemLD17u1vvWCPuAKWS7_oDnQKHymIOZxf_R34nT9SOjmJJOpOJXEjvlWeqFCgOenaFbQ58wo3TYR7FU6drtA2p2OR7ei7ZXDJ_OH8kzlh335FznzttWcVyLw0jTlrwLI6iiiz8zoSv6w-iy9ru6kvgIqdS7DXxiQIROGmwBBEXVjbZdVxxGb_7_h5sGFbxhc4yE4RGCKByahevoQo_PArUznzqM7EB3EJzGsay7kH35b6AhyIn9QOOmZ9Vlt48EuAzO0FzoSBAdUatgFkk83WhldkLiVjyowdnK5k9voAI1khQdnHruTc-4njGL5lGiVHX4HVAK9-GcNIbyPPX-_R4Bex3q4OqDFG7lNCQlEfCbL_-ZyE9EQ-Wkh2Br9jwW5PbeVQ6Hhfhj6kT_AHITG1HwIHK6it44D1bYOHVomDBougsEJrmwV6suWfiwr_db93NE6X20vCaCZ_JOZNHsoBxTmQ3pMOlYcVog60uf0e3LUZomgtWTuzNZio_VtX-Xg7aQAJZVRt1oX_jPIFj7XoHF6V5qP88ny_A-PY8aEIu1aRyjI9kIPI_u9NzLiNbjoldn5bL3ssTg_ByYCPW0MBXgRYFlTn3tyrBH9qj7xOZe1o-eC_XLsm0ir_oZnP2iH4NooNm08V3WmGOj7ehoViDz80gwkFTcc-C88VY0_dlRrK5qTyc6etrbACVajCBzyinC6UDIshxCI2vYzJRCLGApJvZftF1OTzzeuBCeX2GPHXIo274ilpnwbpU7gMj7mLehAQMWNyZu76tiltyNt3f7A3jL17JNgtsjKpswGIyxh1TDqh9PTfaDufN_KmWvI7R4gswAGtY2s1xfhKb1sjC557ZKsjlxd4sOrZ-tZPu_Of4Zwak-Oog6HYv9yVyAD3AcKATKIAwuLaAJniMr2mtuvdYHYgU4p9MKPIX67t8SUT-uw1K1dtbYvcVBo8ZSc2fnYQQJB3kDQrSVYfYBxm_BSKpPPwyN_F8ty5jBLbRJrLJ8yKNS6_IjEkDzsrLwl5F_YjvxhEd4Eluvzrbnr7eJKPP_GhXU9CLJerp4Bs-dK4jcsDuu1kHMxFw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68135ad5416878.27927980','','','2025-05-01 11:28:21','2025-05-01 11:28:21','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68135ad5416878.27927980',0,'cd-form-entry','',0),(43117,0,'2025-05-01 17:14:14','2025-05-01 17:14:14','{\"firstname\":\"Laurence\",\"lastname\":\"Dawson\",\"email\":\"laurence.r.dawson@gmail.com\",\"contactnumber\":\"0123456789\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vUNQQ6wz7vHl5OZy1o2hRDy&amp;gclid=Cj0KCQjwt8zABhDKARIsAHXuD7YGeiySVAIGVkd3bDjdvNp-hfT91kcf0qxd6ELh5ey2CX3RdzSBELgaAup8EALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6P9tpdbw1xjxBMbdYFwKMJrepyWBYxThcgpNv9lo7b3vBMOJnkzGGt10WqkZBeBQP5c_duAkZQQGmbBoI2SkGbrrkTCZoNWLWTnuua1EgJrE1c9FAHyYzuxTEsqPZKt9hoAsK5bYhOhRqMn2ApFyfj5J80YvZVWvTmJnoYlROrFrlvkzTxfzCCIg28SoJYRRCnJFjAvRyZEtFAJV27u9j5w7NWtUiC4rBJy37eZCjBC55Iwu3oIxwsiaH6C8ei6YF3q2vXZH-bYFLLmQ6Eos0TQnTQvSf4YoSFyeL-jvAzwf63ydPvrMKaigop73iOwsJ060fx-jdUePA-nBsjfEaevEjJjq4S_kRMXgno7ez3YOEzW1lYdTLBfeLG7ZiTTDBB2Dcga1HV75afYg72gnd973NDViEOySaOuYUbuLLl6cvfMPcx_DF8-jxFRhUjhwNQ0CYfXo174syaXFp-XC6iOJc3bUcpm6lzvKSIDNRv9Q-rCCOqBDvhNhy98l_cDY4eVxvjYK90NaofUpftjOo2EVO0IFpyghaWyl_53leq_JEUpmNsikOgkQHi5sm9KIAq9AtMlXZnQoue_6lSCvsElvjl8E2LqKAly0r6Y0Stqe_mwsKaGvvQndHh2UhvJzztoZxMUKsziL-NdA-crYzyXJuf1H4OW_ROmdKFVyWXFy1HbthrF6BUiKDXGIYzejxBZcf3ODbGv1zv0rTNTaaS5tEIRcXDMgZ6RAOgxOQzIdKr-EFFiC6qg9gRzOSqCh5qaeNg1e8Efu13j6XhfT2Vwh7hpKh_H6d8aw8RyAIc-JS7QajUhy1UHvNSng6fENiIdkoMCDHtwZOIPf87YTt2S-tcNNDybhcZ0nLTsG-swbvsyjwBRKPC3BrJTsREcBflw0aTXSjXyA7o2SdhJU7p5px0Hdvk4L15MDl4dmpCzAXrfcVk9kP0V05X5NAq1Nhbk1LyzKWby0vLETz0Tsjl5D4ye6YVcwKqDtxXqVq2qgKpJpRCEaFdH44m6oQ_YmSNYh58E5sMlu8u0M6WGVfTGH6kEpQ216eORAkTT0pIjhVwALy3OjBT8LnW9OuLOxIaj7buyPQibly61Qk8bNVvk4iWL5FgedWklf7Y55DC9hsaDyBP8fEpiWluQ_MNQ0qyVomSwCOr75RvZmTanp_gDKxi6Iwg_XFRb17iVuSC_bp9WOgSgrBKggub9AVLqRS2-B4mn9128Ry-POfooeGZE_Bi4U8aIWykumO7Pb82fhoiu5eeMl20jg_tU3VzMZcfYFVOozgHmXVj997t7aLkNovUsZyyzjKDY4sXNERFU_Jb6hAk95CKKJtqLLu9AlGvXWjYDsU5dg0nlqVMREkl3dxIt4F8l8_-1UPevXl7EYZXhluFjQKU0-_btAUBkyhLFLtn1LL8U9as42aIYv6-w31-tkmvbao-hEsTOr1aygyQaOURbxHB34aDOfugvEZDfqU3B-6zZZzURB0Wihzb7UmJeHSAQvqXNrpGd622a_GnXD3XksJfLskRi2St0zwaUKI2UFXxH6YTEKhtKOVJY_rCnTEccsZ3976TBmLkW6OfqnwRc5-0Tclu6n6PrgTdTe7puMM9qMJWWixYa4BZHFoL1nBrsX2v3MAfE1Oc15oMC9IsetEhp3kkP8jKB07dntzfatkNKoIdoNDakAdZY5bxbiyiSVWCtCj4eD6JVMHgJEYnpuyjeg3mf4Z4wBr1cg48HXpgZqMWKka1uxtHWx4QSeyU5f2pNffwvwFg_i2VNo2HbwzV0GIugnlWMXXkPsKfIowNiWmp5oO1PDNsFTj9YsvLIvs57M8JvgCHCnglgiPjWt3uJdED6I-z0vUFxH18GMyEt1WiA02Qx3ns2_nFGKvIfr_G4DvSrSDTFO2H5HK3QQtTefcfdNGvT_iTXGfuyFIvvtaD3OynfXeyuWVU7W9FXIQ7PWTkdRArUdYvH99jf3dbcw6Zh_6osBixwFJwQg6ZPWsrvEnEsgacnqllrqsE8ip32fTHSyv-zrYiUEiBhOmJmbW2TqF-Qa4XqHxe8x9cqp-_xmKM1LpSaSEVTjTI6TMyRDB2O37Aj7XoMsvuxtHI-q1EsNIaRfocIr8u4PRv4gDcuPEHX3coh3Dtqw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6813abe6eaafc6.12769879','','','2025-05-01 17:14:14','2025-05-01 17:14:14','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6813abe6eaafc6.12769879',0,'cd-form-entry','',0),(43118,0,'2025-05-02 05:09:36','2025-05-02 05:09:36','{\"firstname\":\"u0410u043du0430u0441u0442u0430u0441u0438u044f\",\"lastname\":\"u041au043du044fu0437u0435u0432u0430\",\"email\":\"k.a.1091@mail.ru\",\"contactnumber\":\"89500822555\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation-com.translate.goog/courses/biomechanics/biomechanics-coach-course/?_x_tr_sl=en&amp;_x_tr_tl=ru&amp;_x_tr_hl=ru&amp;_x_tr_pto=rq\",\"ref_code\":\"\",\"recaptcha_token\":\"HFYXgycgEVNgZ5Vm8HT1IWThQtAy1FZGRgOBdMHwE1AhgtZDpGNXxTIi4XeyISIThMPRsDBQtBSE0PPFtnF386NlNOHHYbOkUHKSouUXAcRnozTmJnTGkpQm9OcFYeDk0BSTsRfVwAKTM4V1gdD3gmXTp0e0U7R1hudUE0NFF6dEEiVG9WEn9WE3dASVcDVQokYARObVZuFhIpD3Q8c00pZHBcPQoMcS9MLnY4f00Bf1EXaRsGVks6NiM0Vm8NIXUaOCZjA1oHVCxkGDI2bjhyH0kKK2wecnQdQDEtU3BHBWgJUWMRSzo1aXAxJwxmZQxmMHc\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68145390c97898.12223958','','','2025-05-02 05:09:36','2025-05-02 05:09:36','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68145390c97898.12223958',0,'cd-form-entry','',0),(43119,0,'2025-05-02 08:26:00','2025-05-02 08:26:00','{\"firstname\":\"Aswath\",\"lastname\":\"Kanna\",\"email\":\"vasunthrasenthilvel@gmail.com\",\"contactnumber\":\"9159899605\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"ref_code\":\"\",\"recaptcha_token\":\"HFMmQyIR0VZRp5BXMHHE4WHQgtUDFFN3hgawtMTRszUgQnNiNGZmBTcTItND8bOGMKbgdwW0taVhdJOgYBUhAtP30fDV9cM3dPLRNjUUQXH3o7HGhsH28pHW4GJFAQElEaFCdMIU4ZOjMZD0QNFzoPCy0uNkc9FkVuMVo0YE1ycm5uUSRWQWZWQR9oUksGGRMBDFkSGFprOE5ddEkHbUciBTdcb2BbZVVObgcDVhdBQxY6WVcVEmMrL0MNRHpLQkEoTjoQDm0PHU0QNEExTkgMG21bdG4dPXEJATgFdH4GeHsyWls_Mj4_JgNpfk0tO2EQEHkpPVgjbUY6EHEeBm4mB0tmEERGEzthNGc_MU1iGVhddFYnI2wpB0lUMzMZYlQUAwEMF0wJC0I3bWM3RVhMEHwTJGBNN0VZLiATFXQ5PGQMSzxXM3JxMUgLC3EsPl82AyYlIGghbF4vA2JPQSIoHS1VMmY2PUoZLBotKUwIEWY7VFIAPnIiQERYAVcGInswEXAXFkxpIV1NcnMaJxVAAEIsahdJJUIWLnAXS0oxCno1RUYjJ0RpFFMzDW5BdxsufQQSCXY_RFpkDkF8LnMaCiwvbVUfOkQVKA47NmMMRkkUMmkXTjIuGCJPC2c3B1QNBhscdGkHLEYhN3kZPxQnJUZKO0YZRBY-aFIrPGN4BG5GUEI6E0oaO007KWEEGicte3k3FU4SXmAcLQcTI1VHBVEDGAETSH0gSAwtL1JMPHA-LD1lLWMYNFguFnwmFXIBST0XDWlMbGsxJ2MtGh0_Ry9cJW9lHBkaZUsaNUIBdUoYLmc2JHA-QG9dNG08PCM6NnAeKRsxUkZ-OiILFRcvDW9JHzMSLX4wO20qJmwREmQ5fHoyA3ZyDmoMN30qbnsoVWB_CnJDJkcnDltGK2shFU5OFggJHGkJIQEqEBIeLUgRIUQwCwU4Wg9ZH1gXE1QRAXcybVFgc1ovFEwaC3EnNGAoJ1k8WSBiGXUxKUJRIU1-a3wzDFYcblUJKDgIO1UMO3I6OBADCR0sfRl7Q3VWMX8IM1goY2U_dXghNk0eOUQDFUNBSVISMUQ1LBAdJRNBOQ0AGFgdbXEnWkZPEBIzDz1ZcAMFPmcVY3ofYEouFWYSNG4qJRc2EEJxMCQTOQAGLXxPEUVGMA1mYmMBJ3lAK0NIOAMTYXs4c1Q3AG8CGGJMXXlxMhNnEX8cNHUVb0AoamwvNV1EDlogClxQTWUyEnYHEkYgRlcDTzsbJk8eU0YJE2UiCgcZW3FWJ09tDHMIZhY2Uk8vIhkyL3xKF3cFCXp9FUMDQBk-bkceTWlBBklTU0QpNUYSCm41PAEwJUQnHnIYBxYVSktOTVV3Q0BpOH0gCXs3TFc9Wj40VTNCNCc9Cn1uElApJ3JScxcWF0cbThAmd2sNc204HxozFmMpBCZKP0ZmDEYAN0wXYXsBKWt6UFs2EGkGRXdHN2MkLhMtKllNHXpMD0V7RnUMPxsfAmYRaDAoPyQwLHQmB0k0G1QXdFc3RHd5FFMtPB8ocnFdXiwXJVoQM19uFVFURmQZLHVTEwghFHwEKw8uK34FMlUpIkQuFTMpCQB1AkwEIFE6ZWMYbGwmcWYsNlcUG207C2xOE3s4HzMCa1VFLVlsE3hbZGgsJkEkBDMIKSoNLiAsAkILB0gFClILdHYmEA9yHzAxOFQpY349KRw2LGM-GEAZM1NKLVQhF2lTJXYGPGs7CH8ncGkMXEIMRhgTNRNTWCx0KUw4P0YmNFcSSlAhd00nIlcDBm4-FEYtWmJPLCEPN08pLFZYLAR2YCkNDEsOM1gmCzMSGEQ1KmMOG30aCUI6Z1dyJnN5JzACDHodMXskb2J3BWQADH0hCnhAGEoTSH8GNXckF0kYPTwGJxkDLFkZW2YPGg9QAA1BLFYLQBEPIXwCMx4cGBoPNVI7Gk4VGBh7MlcVHAgfMmpJLEN5JQRNNVMaEVc9OV8UaRAGLUk5J2cSPV9eJmhIU0NyT3tmLmgpCmowZ3QPVmQtE2BNO0F7MiZcPUlzESkOKGkrAHQfAjBPHRcDejEvMV4oGhICMxZsA0BlI1oFAXwPSVEaE1AsB14QEXIyN0MyDV4wLSRnFFUuLxdSLAkvVScWAm8lAFMfHxk8BFMwZnYHPwgQPUM1SgIhPkhSGiQiCX4PMmAodAoXNFEkNVIjS1JsTUUvEndbE3ImQE5ELBM6LRJFRTQYX3kZLmYuHxNuP0Y4TG0xAGouZ3IlBXdzJnNAR1UkFkBtJF4NLSQEHgQVI1hzEXBIV3QHOGo0J0sDNTEdGGcuKVJxNBESGRQCd3IHOW1YJ0ImPBtLSH8rLxskUHgbPy1uIDI3Ljd1GX4HJnRFKmM7NS0wNk8hXmcHBXIfDRoVDiEyPwASIGRzCUxlbB1iNhsjACY9QGkQEBVzKWEfGBFnJWg4SExRCXpnbXghIVkdK3g0DSssYU9OAwEYN3IRP3YzZgAYWkx8BFscJ3waUm4dZjx3DU46GX5nFzxUTmUMMU8qNX1AG0cHECMIDWMcRUpqCWNLMBoaRwIxMgwnORgINEkUS2AiNREEDHdEKks1Gh5ZNCdHRS8eHlUxK0pxEHdxbl4KBHtOdTQ3bxoNHUQaJ2IjRGA5H3Ied2sAAEBOM1wlLV8VcQ4FVQY1GXUbJXAzEEJdM0oMEGU5NhNHAxIRTQEpLhQXVUIvX1kRLQFZJgNyI20OB1EtYHBqW3JgF3sGDGEFSxU-IHpzO1YxIgd6FlxNS3tjLndeWl8uAkACG2ghCigOGUkHGEZyF10HGlc2J1knQk5rJlYEBR9cMgRPKhE\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68148198b87f89.88492932','','','2025-05-02 08:26:00','2025-05-02 08:26:00','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68148198b87f89.88492932',0,'cd-form-entry','',0),(43120,0,'2025-05-02 08:28:23','2025-05-02 08:28:23','{\"firstname\":\"Danny\",\"lastname\":\"Gibson\",\"email\":\"DannyG510@hotmail.com\",\"contactnumber\":\"07801595554\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjw2tHABhCiARIsANZzDWomRTkUYiykE99X_A8KXC6TjpG3TAVyMyf-FsmVXwAyjM-o5QaCO-IaAtkhEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA46hV_162Cc_D3m1WIsn5Q_E21xKcY6KkMpkOXASmGT7hoGR54VbVE7bTw82sLUzk0yBDlgvr-5yRK_Gof0rZ034AMb9V8KJYiQ_ffEtvTgcmpApJWwo5OSUgJa10hkdjXNZkL0pw6y1STI28mr-WfqqWmrs4XopFBcb0dY135RfZTeiBUERlmIrX2Cg2KOhy4NC1mCO5LI4lFCmy2YKDU4TzxWy-d1O-Cftgx_9coG3uvw5HRBMUH2vcozK4kids-ElItVXip6ok7-dAkb0COafYBwnni3ZPaI0poVgWscR120qHMlspbOUGAOA41hVovOuEzDcdWX0mGhRtB22sU0B9t5zjiKJtcN7jF25UBsnr5L38WfQqZsh7pulBL-1Rtr8FvvA3hht6CJRGGMxhWBgSiZcemB95-zpHvPoC2-WlfNAmubdcrCYi2GgIbYql6bvE5WG29CTkTmla8IdYvpnzzeL-MA9utnr41VQKBfiUPTcugbk7MWaQ5i3LWQtgibyjPHWvP121V3sfPFcmU-hHo_-2pkuazgs3nR8gk3N6vPFXkP_VUF-G1eAZ7kNOrGqFDinNf_Onb_tyZ4Ht4T9UlYv2WPqpfEvjIsjXaFUDzbXSW1-vKiyqTU5DbW6GI9MssWsK0c_CUmBUuKi5EPeU2KTP4cJtxBXpZ1sGNM_HHQ3g8g65IUe1msW48EmXX-FUzMatERouDaWari6AQnwWp9dSAZ15N2So6KcMe9cwE_lT_dIVPTNYo-lIOtSNo8aJ31hoX8FOj12XP6O7fchvrhjEbUUHG-8R6Dp5K1ogb6NlmTEHE9cdcsbw9trDKe3SDDbbMKV299IBAt4czTDJm_-d0rsnQICC0gAp6jrMMehaJqIaOHko7BOeMOjCtbLFt9c-BfrQm8aKAbbrwXExfe7p-PLxDVRbo1JFokW4kvXgQKcbFDarjMi9_3RdnOfzxZGP-0Zh3aCRGBzesrBs1OZW_pa4nDz8TncyJTprlDgdbOjghfC1J5RwPWQCes1LHDi8LbmSyAMA7m-AbIaL9U4Hri6onZao2W-bzKuzLEAA40YBqGEVtCi-9JJF3_2n1Ew4kzqjeM3DJN0F6Je-XInLViZSCmsSmv8mqLcrYUi6awicDTOqoKGRMUXtixjcUZBRIR02-L8-qJaEBHWeZFk-zEUTMRHCZG0t3QrA-OCSFjRCAKO7DSCwLnW5YNl7aNWqAy5PXmLa6hqT3y_hOx2_Na9ZKbOHYrdz6-LjUPPbqzja88YchjgRkP3LT8uEgj6-Q5cmku1MRd_lb0WEC7CCc41EjfiQ59hLSOBRL0zGeBEJscsvCqUB5NqpVaXCHYPMfJk5fR0YC70GxDXsBGC-J4GHfI_BEblITcxHcsrnBZv40SZZeAFW9cXsOzlDbQ5U9qtUZR_os7ekYPdq0gPkQSOdUPc3KqWEQMfm8yUj_fYBoAZMPAQR6_kMogqiUKkPSxp3OjhkqkSTkHnGLZHBPNFRqiE6BlA5omhOt5yPQ8AcxDP_i_8VybaI12ulO_xSw_zxu8vOSa6c-B0PGUAjTx7wapEjkS0FWK5uGWMFFkMx2Amt9CJmyLhDFveYItX-dWaOMT-cB92VUv_ZwxeHaJTSQHfrT5m7pHe8QvDxB9jhs9dyuTkCC1eD-LYJjrgoaZT8KV4IyB6vJ9PBZCHT76suuWkAc8X9FikscLWSQo8r9aZGHc9CxNjs82nAwFwPqqW0X1icmdKHHSvpPDUaOcUPZDjMhiOEj2i16ojmobwSZvaGFToq2ORV0qTvZAsnZGFA7naRyFdQjbX8jyTBoASbnv9KGP68DnoNwJJYkcoibA2W94Ed25BWuDUppQnsKy2s4oDTSUiGlmzOE0FodJTDZIx9StxnxrXJCEwV0EK92uuBgrZOmX8nCuO6KN1mTWWP5pnIBlnYYt2fJVgHdl9M4CoaalRWlRpFjcjjXJs52zFYo6kq2EwhYToWmL0mlJF5QXon7p6Da-nO5-6QjrzcIXtHs1eUAJmk90q75-LNLpbQnNiExk2iffuU4Qc2eNvAfomJwf7XKU8uQBsl14gH9d4YPPQqV20nwNMcRQDLB-8ktcPiy9Aiz9bJ_3jzEcjObNgcooYMHSgifMJfTqyDXDFBBjSpZvsjlthf3C6pXyH5RUCy6RQzJWvrovAFDKXV-dNBnr6YJXGe-QQy663rqHdiKqDqEekXrFkBKppr_5_HrrG3K4Ml3miyEz61tP55oPAQigMRu9hVHlokfXHB_EF-QJWiDgQLsQfrBZKiQUx8idAbvXA-845PVoMhN93SIkPjV6MMiEfKj1o1kjrKaz9qs_pWdQVYrFX9PvLHyW1L_zKNDdoNQ5v6lMNpX1cP7NshD4z5iT0HC3QUyOFEVIL_u449seLbs2wTNJkI6CJe-HhyrtKhRM3_ay\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68148227866f27.52796498','','','2025-05-02 08:28:23','2025-05-02 08:28:23','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68148227866f27.52796498',0,'cd-form-entry','',0),(43122,0,'2025-05-02 18:43:06','2025-05-02 18:43:06','{\"firstname\":\"Harry\",\"lastname\":\"Jowett\",\"email\":\"harry.primept@icloud.com\",\"contactnumber\":\"07487847580\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjw2tHABhCiARIsANZzDWrKM_DHQlGhZdNhQuJIcMHJYUrX6Eg3Q6hw65imzDJApGzUHBAF7z0aApRbEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6LQg9g3fKo2tSUxfOu7FKlpSYlk73o-od662jAknR2DbqvLtRl1wdgrfH-nuPkYy_PCQpOhRUO65OKMUbrxZ8HdxqnBAdKMYw1ch5ZLvIy6I32VhuRhczkKew6RpUzUtQlew53pyCJAJGdmW51aMTmiFwHQCs4dyDHo_DGpM8eSD--UET5PQUANq0mbI5PHP3MdyhlgIcfnuec0J1G-2e8aNJv1PvJkSRsUg1pQ2tOugR846Uuax3InhW1Jw6cU-U6pPcSivztBV5wxGCJvgCeHuSXYQ8bULm0fHG8ntds5UZrLwISbWq89ruNWF5NW97KjugnV3km87b5TJvpxmW-IxvRdmMLrAouEdvCgvzJtfX3nWS5aNs60YwYnd_fXvCbt8nPwAmzTC1E30moMZxuZtJSiCIN6rcELQqg6pjRZuiekBhgZ6zZKom9gi2uGQol45JYbVH-Df8b5ZH5V1-IucOZosMpPjs6rzj2KkKf6AQ-ZNbgsRtPfCEv3nVAI2tpCNd5jcRFrUDwctsZok1Hk1Vlt3jqDghpaOwkxl70WmHQe3uuNAue6i2KQLbASwcOuSyjtgz1RuyXHtlO7W_NJ-wJFHYKRBcQskXtRZcik72BcvItkNpEYgKLRyX2_AAmEMNOCAbna6y1Rq6E2nnOcvo2JHDPaa-Jz7z8n_a0fbi96ZKsBujG4wb-HERyygQuSDqUyVUnjYGtuQlirv96x6X06G8WbqBKFOZyl9XaPcQT8w0-c5pp0kHidMRADo_p25Uxanux9A8YtmSd2HJIJTay11k4kZ7x1acjjC9WSnaZM2kCqdWwNQXch_ZjBC0tR2xpx8FLB1tJFCNN7RHHpiZ8NypqiaWPgmG-5NAsJWRKOOrI944pTuMZpJHrj0-cg7SgLSTR9FKLll7PWS19MzQxCk4IYtebUcJiyS8NbNK-jYKTVJRLlNKg-pcxkTlNzhJsgncR1J_ER1q9a0p6DCm2-8JINiLFVTQZqylm1h8fVLQUzlVs9OsMvLSSp9y-JfSAuhqvDTBfTnSctP2qWvsgMjjyQfJgTUvqdvOVMJgUqgwoTFnag8A7qpHL9JimaDdhA9Cbd-LiO-itNsPcLTyCaBDAKoL_Sl3YdNkZXxrT6RdYp-3V_fYqS9u7QhiHwHdU5WP22SHIh4oaNtDbazjBkTwF4H-Y0LHaLYL0DmIzgselnhe1FWBwialMPKGWlnM9U-a7CG_kwgNmhmz0PxR95k0sJAHE6nzc0NbjvSsTr-VdyygZN8oWCbFZZNlRgSFbc-DGH-N9n8W8PMlQ7f9Varzi2ncOueDERk8yG8xCpgYK4CdBlLkIzvfuR3XALE0Iy3jYRm8Ke4S58Kdyoj0zOebaVXtIUx01XkMKD9Aygk2N6NX-J34Tj67hVq0C1erp8uF0YCfvhd1cnHAr-XvXZduW3-GfAcTHzr8rvfyQPctqD7Lab9oEfg7lLDYia0gjflDbKUITwyQ6QAy7nLYJzOOvAgzquRNppE5mE7rjU3kf-g9McJSNysN5zlUf5YF3ddXUs1c0HbSjWu6-XMMQY3C7C5exNFKvrpMPMAizfxuxvFV0hFSyHxSYG2r1VHaSz-xFRIfdp34gzmsdj_RywPGCkN5HAC5PKwlQGQRnA8I1ndNNnuGtpDj3oSuIjXXLlrIEBDTpxb83myDYj3VHeIMICp6HZbjS61JTw_RzflEFsAlJ4M_kls6Du8MA4_sfxtzGnNhAlsKrbwDkDAiCulhw1gCIjSLFRjmNS1ZRveIzeZD1Au3azbzsl_YdXlKsPMSbiiQkTGUwdzVRgmI9tX14IfTA21BBlTuySFHrbodM9jrKDgE70auIlCeVUNt_IE7uxEZyuNjE58gOM0W3PcdEWwmZfi5FMMxLyNHNaB5eI5JAaxrT3wYObPTgaOzbx1jAi0Q50NTgSjgAuoIgoP-WHJhIQRFZ0mmsnCx8y1uy6iWOoahXYxrmjRJ2lCOwvJjqMYkyZ1Q0PSlvkRzU9JK9psukvKpmafFn1XFyD-uI2q3asXWNTtTuuCMjxHTAKFKNWXGRe1fbHQ4SAcvPrNA_bH6pB35icjP4bM1QByI6AmyQXVHf9ldyHyKmwuZowioxikw-vMG-cfwolPrQfC3wuJA9E2r4DolYI9fHy9p1XNzpkxjcwQpm-5j-iTBSBSqIxaNLzLNlCBxyyPA9ZA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6815123a32c2f0.99127400','','','2025-05-02 18:43:06','2025-05-02 18:43:06','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6815123a32c2f0.99127400',0,'cd-form-entry','',0),(43123,0,'2025-05-02 18:45:03','2025-05-02 18:45:03','{\"email\":\"harry.primept@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"Cm3 4je\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjw2tHABhCiARIsANZzDWrKM_DHQlGhZdNhQuJIcMHJYUrX6Eg3Q6hw65imzDJApGzUHBAF7z0aApRbEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA54Up6BzesrqOrIYvR7OE5U8g6KOx8oNBrFpPOWQ4JvQZSCEP9zOm8g7RHnDF9l9Tc71AhipGydg2cBVz3EQaucnfjcY48iqTeXQK4p3pbAMlG6GAyKLPqrMFEuGOpwaYNdpwAjw0lZXBEz16SD2tofHlO6-oiV4snDArlcRMDdBmraQ1UVQbkllp9q6HIgPcfvlv_fqSC1EQ6PbdLV_Xe2mVy7QH0B3sAQ9ufslSjipAfw73nw0Fww9qofMsk3S0iVrcXG9qvRCSE_UxZglKVoAKhlGOrIPdBWxr3n2gyVyzWSYkNRour6WnjCCXt4S2Ee5ckYLhzANbagR6xzeGDGRVA3iIpMb7Wigm0zjZtxsYdK34EOn4zzZzLLaDvNqujs7pebZV7rkvFwHPpgs6d_bJijfdMK4YJG7cXH-iASRjDrzf4hLHCSmslZWQpphuRJM3d-R311YQAFasNWzWG_Htra6U6DnCoOrCNhHfbOFy8MEpafsf3gPXUKKhkTNx_j5Mctclm5pZhvXKSbS2nwT8xBCiYV0dAs0bTtL5uVDGeAAoIZUe9zfe25fnTr45BL0u0hggIB10TH0iii5ZEFu0TryjR1waJ6hugL-MbEaqP6sKEFcsUgnK_xbpmhkng5UGepkIAbkJABaDdMN4DWjtBSqX1_zFQdPw0Fts82FSO3aySN13AhpKDttnoyu-uAynh0P4wSpuUObI9YwssmmYCsHT-CzCXuA1FemqyK8pWTVQV-RgUSkkWXiaKwgQEQW7JB_lYdYd3c2YT3Fl-XwBwDIc-AM1oz9elCZqMm1yFsR2CFeDtdHekh7Oc9nja-qIVrAU7xWdrMsOoV3YoTkLAhmWh_oqE9DoWhYs0_qycvbIYlTwkmg8jJojR0e4limsDL_Q6k1M_N22vOrICM5QilLv4ETdLKI-94RggQQvRV98ERtBAaGnZR-bHURzzfzfWOx-eL6FTMyre7CBHJgX2dot7IGRAGzs8AumyS639PRtGb-8OZhAMtuKTqfy-X6Zo4eUrwoXxHeGTvC6ga-glSVLlsA9bljTOKbVkSVHvv2UTQ147b-3sTVzOTsxwtlEJsloWlyraZZzPokQdTZKKrkam5WytZYcrniR_4n7GyYUVRdM09BRQ5S-57e25_uElPYucEKDzmaBioCANmWRReBTENWGUM_uyiZiquK2rFBgqwIQgT6kYAKc7G0e5NKZKbiPfYRXLDkjNlXedKHsXo-E5RQHST8D_IPKtmTbe4vVb8K1n6L9GMJRHVkmiNnduWmmvEffAqMkWUo7nSzZDSYbruyxWHPqLvHTsN_TYHYYkvPkV_xEhxhp6srgdWqpfGOV39m3OfiuiL2y6c2Kcne1VW8agGIWWExLH7yM5dqtUxOwvNkkEbOtKKUF2eJPwPN31_r8kaEoE7iG5aBr6xBJppr4tPO0i0JIJKIfwtBvrcg2FNuF59f8fChs_eSOhM44JlgVhO2nZmoN1uDoHBW4QgMgWXb6pqfFSyLjnFZOb85uJ8gb1vt4nR78gi63RTHCqCcs_FDpIsM4chvHSMi1HrMxIKgYWX9tszeTvTTqrRGjCkNrKgUy_EvBAqzKrTezGjyHaaUkqq5pKxeBu9OC0-1a3vwaRRlmn5mKHpfprYS7xycFNKV7XMjEqgMF7OhG3OBkfuVXhg2G7R6Kfh7bu6rh_XT1lOK3ctOA5jwbaHyUBg4JcPOxpKQ9dkmdRNnjIzf5Qke4nmL42OWRKVIKdfOGFDq80FVLOO6QaxP7_jCbUSD3b0rMbG3DYm0n5-xjiFzCao3FO0q_9OX4y7KeO_d0iN8y1PTbL5pJpuOdsHrT8z87uFq9zZtaR8OEniQIm4XHaXmdNunhXsBkA3sTLCN3XssUVf0QTK5tVbd7ymbgNKVKe6Ynt5GG9aLVxydTxbXk1xOtITFdIHWMNA9wnrn9LnaqfVba6cZ1S-Jr5dMJ0NEdVf_TY23zHG_ewDNUsnjYmX2O41Enu5DjcIYnLytNJY8L8X2jtvUNotCJIlLRJcLtA8zHixiCRYqWqCbqADTB4ktyvsQbAUtHRDb06JnVkGQEZIMWjiHUGY0gLfIcSKOcMRdQjjLcEj7Xd3KMXS8DFSHZEqSlU2e-xexj7kw6bY7llncohHELR5XOkw7OCJPi6sZWXiUkEIqdfNcY8_c-FVnxMt2z_qcpaulryzxV-9quZP4mY7OpQs9Wo\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68151260779b86-92726449','','','2025-05-02 18:45:03','2025-05-02 18:45:03','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43123',0,'cd-form-entry','',0),(43124,0,'2025-05-02 22:41:43','2025-05-02 22:41:43','{\"firstname\":\"James\",\"lastname\":\"Burnett\",\"email\":\"jamesburnett81@hotmail.com\",\"contactnumber\":\"07482601378\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5fXfe_0UJILA9YgxQeNJlGPLkwGCggeGxrqhR9msePCCeNzSyke4AnOys9aRj4gDcVUIXqxZ2iierIDcDJ4BX_1CBgMhmVkZxu6Jvj6_zDe7lQAsYyb7gBttzKI85Q03ZCfsknbHW7nVdDkgynYej4KshRrPFP06HDhxqGHv2ZZkgos5AkBhKVfr2GmeMuHC4qQpP9_IoTSMw9cWgUDQKjGk5WyH8D-eVCg5TrO-pMfmVRp1fwxnPgNhbraVfzhOsEGLlTdkaXHtdsbjwdYLAJHH-G9uokh8cysHHRYRxo2xkakvje3t491fYaTLK2SRNRcn_B6UZOuAm4lpmQtIL2OMHP06J86199ipEqFdGhSacJhuAlMsiTH6smAtsw0A3zXk6vTmYJ9q5Vi_1jI2OEmeWOb10fsOCQVusYMYPxPgNT5dAFv2SnwTfrUy7MuTvID6h4OT0RvXSK-aQcSO4b-rrMb7jUM9KU0UPPm69WZe_bfK08q0xoUqtqvbDx_yCi47XIYye80muPRpGrnNd2C7Jq-cSup1G1gLN2GigCZfB5CbqIgPUqiZlHBS-FZN5GaIphaPa5tiTSsSr7oUtjigm-mOSyeMBj62Q6akaBWSdTDqvV5ueqkgvmPGqopyvum-StpPTyexERAlGub89Mpc2yTulsxALBic1VKQI7MQVghR9JYcyT2T7ugFVcGJpoB6ehjSqnAapg-tFFmIvt6S0z4rgPCCYH4RK5zCuWG1B8NBA45QYmcbRkIhKgg3fB9T2gadoAu3GThxB2QyAZYWyyxFS-C7xBPCDQrdN6OVzU5V0xaL5VAbohUUz_w-Z2SSKOXMsCjq_W0EYFsj1Vf-Dh4zJG7pi7etl-6u-OmAB9C2dESwSNd9XlTSVvWkjIyUUzHyPHhoO_BWbsL7t0sp7KCiDcTyrHrf-sbYX6IFJ61Fpb-0593E-189rjy6NSlBeDS1MM_Tu7gLX-gJvfM0VYfLw_QMcHsUmhwj8o4lCJsigRQ4qIOoSYwddwR1r6cl3TkiXO_mbAL8O-Y4fkWXOuyVoQV7ojK_REnLMwaY5QsqQGLzUWrVkNSsJbUe9LHd2UyWZEiw1CQDqAjrkilse3cQDP1SIKhM07kR-ZbOyeSTohrosURFCqZihGa7unukt0Plv2H5emxZZUXPfcwpjGqFDpOmN6_NMiPqeeu1iaNF6JK6Rtr54WwSZxmRsYRlrCq63NnvTECugRQnRCU5E70pBASCeJ3H1HdKVoKF95pPjHN7yIBaWpMRyJ-OUvfxMtyx82UDxHJZ_uAsmMDb7SrtgAm5sFX5AYhtHiGwmOvfMEcVNNIdBqGRo4MUFmOb-AyWqdl9TkmnZCZqOyrL2O0dKm2pHnoB6BXE8TxEwu02VHddu1kdRsrhp0vMahArYM6zes9DIhcFjPedoWiJQsurQyRzoVIQVBBJqIRaGEjIRrEQ0Xju3eOy7BqK4ht977AewgUOEzPZruuPGQtpw80RlgZVgs7a2_uro3WyDazq9yn-AyKrTr3YSGtkxSJdK9eUx_eLVEBbc-Ac7BOSvdw_ZUa7Odd1jONj9H0duYFNEFzIOQRv7NhhK1HgUdRKVUqVDmSro1a5GMJhJ6O1I9qDflP0am6c_gdGR0IyJhzwxuMwI4xyekL2GRgbTqBbpc-it_EtMwVu-r5zy3j40awuJ6SKZGTFzJGdpEVSij_dAD2nPRThZnfhUWalrxk1wC_w2xosshlJ48EfMlIMWqp6oXs8f7AysiFhYy-W9uLEoI9ZNzbEp0M94TvGZq0sp8CyVFJjeSit3Xtwad5eu4SAkXg7A5kxLOdbK7mTREWj4BqhdsME27OjyhcKQfd67jBp_biBT4ZaW2RjxP4Jk7BCstIOdT_b3hGWfr-KoASuUwXiDfYBE9Q8jD85Eap9A8bNtlODJsi5gC9RBXhnKDqYd4kqCV_ordzCmDoKn4MLKVbGJeAkIcMkCnmJA6Cj0kVjYuZ0cNUpd0g4IkSr89LFf7hRFUVCrhb4yUrgF1hqExj8EJvGvuGPsxA9Px-XDRW1qiL7_9yHxV-OvxcYJIp2ByUnzfe6UTIGCVaGK9RcrBmRAowDoxM-kIb1vowGTIx7fEp11MnmUSPXl9URefenpVh6n4m6-EQxJ0MxiBQXE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68154a278c3035.46407502','','','2025-05-02 22:41:43','2025-05-02 22:41:43','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68154a278c3035.46407502',0,'cd-form-entry','',0),(43125,0,'2025-05-03 01:24:16','2025-05-03 01:24:16','{\"firstname\":\"Khalid\",\"lastname\":\"Essam\",\"email\":\"khalidessam140@gmail.com\",\"contactnumber\":\"774753344\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-personal-trainers/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5HNuR_7HOeq11xe5SvdqUb-rL9T5BdJq6YTw-GhIp4s71WakMK04R-26Q294bDp9_U3gYwzv1tLSU2UI-szTJ-6xivniNK33Rh7kDo-AnSPdEKO8FEDSAHTg8RHg6Hp2JNROSj8lKNMl2SVwgZncXFsKGzFMWVk-z3pyKOv783WKzlO3B3PYAis-EfodAkb968yWWlgbCk-_agTABkuAfmftrG9SqI5c0-wiST9OvkiRPie7RklxJrjX6o1lQA043Qf6_8dNpVgqnOwxX_gddhC4ced0eBNb75B7z9JSHxyYtF4Hh3J572mzIj-6LLx6qFJh0bRVByMl-BESy7zNSZaHmSMG8rSH4tnNcsCvlnVgX2Nqa_zzmM1lDgxlXCukhHiSmP9yjVwAwLmZZTJ-fITxRmw5REtJGo4WkQdqVKo-NfhqtlrDMB2LUZemy5WyJQaNHYKzMBJ3ZHQJ9zcJwRt2LDDHbBt7iS2_r1ozCfIu6jw2rQEqZdUXtlWAEWoogQROFWtAmGe1t1eQANmnSOs_frC5LvKbiadypWCYA9IyR7FQyBauWClIbXWcQ6eh8ry3VdJ-HZPF51qB_uzJv5sgtzF6RPO9FVV8J-QIEukdoEeIAxwDrxjrDRCJHNQMykSvrqYfM5of5xO8_7uida-UxnDY6vEDWH7AtZ9fakg7q2j-K-3kWdJkW_lMrLPz7iZsQKZmQtlFGB1sqJdPTUry8DbNXdziTrbLnSsHIomyEMiOej9Oi8KwajyfBxFuZvQPGMmyQ2sDcyBLm8TsUY8nVo_goGAg9ID7fWmCTIbW2HkQj0GqqEnHu3ajT_VT8sVpA41ra_kapZ7FjELmTXguzTGUWVVB84ZIFW6dOoZxYxxsZ1SG7f9MLMm20ORrORHpwL0HiHHJXmhr0K5hNyIoiaYmpfHLE9Qt0CAQogd3IPp31EJ16H-kIsRiBx9yOCBVJFsbokv3Xk3CeecDOY5o9KlOfnQtiH6FdbnvcpL3_aCaLWuX9UzGHALCImS_Pty0L4aJArOcbFZm5rJhsd86aSLDbsfwFfE9IkZKZf6pYl49VfV0Z7Zc8MGWWMCjAKOXzXTYXLQKt3oYicFchdaEdL1UH9khdC0jGTHhB4paFGYa_aGz9bnJ6GmPqGvTpgmN-eu9btZ97YLNK8_zvx5jao2U5u0cq6XRc7aOdOrteXqdciWdCZIiko36tX-KLSHfGtRk97vVJJwbv8l6mcCGTG1PFe2YM92jOzY_-X8lBQl97ThE7uT5eTQatQ-OkDkXsuwmX8LLFPUoJehMWkbFiPJXbaPZG1zLnTvrFPEAYCltHK1ECgBIrYw9n3oLA95gqdQ6IMGfEK0-wLmJ4osNoPT_G-SrRyAs7BiIjCqS16GTlsRbglQ0owGx0l3dscSsd7ZU968yK1qf75NVcRNYQ3jxmtgifetQ3K6NwG41vtKkRWmk3AsK3WcIMaQ87IgMcEtzfXll-dE3t8wLVJyLl8lp66c5WNpiDkUoKoX142i8jCrHb8nWil-BF19IGvBwdS2aMUBbm92Pyv70v9TYT14xuEzIO94FqvzTVJdkJW2vL0Kljp8Pk7Mi6ghg7U4qQa1Tlu7w08s1wxp7x7x8L2n5RkWDnTECEKBMYtVi7hfIv9WskIccRtKMBx61w8bOlagx5tCUmhe5omaPLdB5SOuQohTwf5CXGqfUS7mDTRSx2olRNn5mC-6ez6NXs1VUU_0g8jnnm3HBq-RkQ_w0L6WwsBluPkfWMW-Y80mEk_72HV0kuuS4xB02OEBIm2yusr_QlXDIHTF8pSEuvo8E50tkHy2XfKGFil9oN-am8cj1UZ4hE5EBN03YYzch1RuvdH40LoWyhxaC6CujVMEJ1nabMUAtS9xUM2ZOA2UqJNMgWWn_vv9Sm22v8fze3MPeaV6SNFS5AG5xf5Vxe-0FQdBRfyu42_-hPgqjCiPzQht66-6A59w9ReLg1qwqLWL7uZkEXUJXXreShMGcGPcWQo4VNkdCz4p-yIWT80MyuEsXi8Vs-aWw9PkcJS67PCVQNYh3fVyhi5AWjuAoUpJhFtaA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681570405b57a3.49543515','','','2025-05-03 01:24:16','2025-05-03 01:24:16','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681570405b57a3.49543515',0,'cd-form-entry','',0),(43126,0,'2025-05-03 01:26:13','2025-05-03 01:26:13','{\"email\":\"khalidessam140@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"00000\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-personal-trainers/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA542SHLpvfRXsxlG7lLBTM1fNkgxlyXWn9fYmLMJWxwyCFcv8AFB-SBhZ4RN5Kqxd1R01vS6GDOPBSQROh3HBXFhBK2SjlCCiCNFoXlFyOBKgjoe9s2I14eZ3Bm23moUAGKWFONjOikvHPvj20tLPG0PAee25mpotl87wvrWNSxGLxW31oimaNkXa1KeOy7WNecVTSV9y-0Pr5AoHqA2gAmGoJV6Q1M8YHV-0rb9tBU4kTjq2HUT2mQ2c5BR8ztq5pNsSGS144XULNHBLSMr8iYvgEhQSfFy-stxd1Gapl8cWik7dcNzt9qvIyppBNPaRgy48RbAD5AoKJm7OOR7CJveLsN3qlTS55-4-tXIJBL3Nl3eX5ygGsU-DbKRm7h6BhyyLMIlh0LFHe57h_o5qeK-pC1bBF9CoBHQ5S4T0rslzrHaHuLy1TIaofC6vXiqXBBkfucSbZMGrVClWpBrt_S1YzF_MY62wVEJPDVcrcihpUhT4g_xuVlQyEZfCrTNjW0P7sLPXE2Tc2HhooR6F4SrOgcz17fgULx6g9xfkLKCBYDeNwYg4YIaC8orDr1tKvVAONpv2xfJoyYhzj4SL6F80OhRNIpwN8WmzsGOYPwJ495GC84hZoM_EP3lSj5jrnSteEoVgk6FkA-GaPM3a3wuL__2T2PqCURa0KjSCmqkkVFejOuy8XpHF9E89lyyP67IgPfhjkDegtY7EJQd8U5fbxtUta0ALTkIvChygMW_cN5v7U8w4CvSelkMJ93hmxR0Vj6fGYK76BtoooGnUJ2Nq4jukftVOoehfcfC0HIAYc9M_0FS1VR-LQPMkJW9JupUl3KJvMbEOV2FLKVSvpcAxfY7wM8m9ya7llpcHX3_r-mJOmSN6rRqmnY9x6e36u_jvV4iluQnP7ZNC0fmMJMr9Zr29_t0Dbp9jQOdOJlq1KMfHCMjx5HTf9eDcijcEmiDHVMNMcakYGUOshtOH19khFO9qGiD_1FApqE8x36WHOmMnj5fBMr1h0QWVc-s9SMpfGozVZN0qJYWleTF_WNo6GJVgXa3PZ1JkfCAtYwNhU6Jle8qJ2sQtkFTRiXIS0XLNSxqsSdqpctLGhOUKij7gWnPlq7NdGBnRermmDgXC1fKJK-0k3DkGe5wwheCCTpoAZn-Kcdr-NW9hLD4atiegVmt5iYYYqrOI11Ug_heFFMocQCmwyCE7azSTEt4RcTqgIw17W3yd245C273E3u1uiiZhgceaFyuXiig5nP9Ggoe3s0YY39AybZkta0XUelDmrcYO-jjY5VvlZsOcLI002y1hU_EAj3eaic3mWEoS29IPkmmpO2mCBm788Pjp8MzNFCug5YlsQd6S2FKijdJr1yZvkZhSwtp5Oijqzd1N2YOwdNtsxVutGNWzjEssBWYbuWLACOefeyzIbV_EHlQMfJ8-V1AoozBIiHEH8XWMDd6QUh8Kvo40N28yR6CxRbqkAFVPLp4k_lKNwLrxE3o9koBn-fzoe_DUpalCFAU2sb2MsiKo-Qp9Vp6rjju3OaCXicgpZJOWGF6YPwo-q7fSko5YEasS_7l3JGoEvZH_gKdOM7BPApQ_5-xVXKm1gq4ZbPTCaxezyupeQGE5dpCiy2ET2PoNJzB1I6vDbxBUBf8JWYzHCwtV41hTE8HMvhAciAjir-8jOBcBAHZFngzk0npdbkoGyk9_hsZyUoVcwweu0aeOdewJXAg4VHldLyFo2Aekb8wz6nY1JJUlrrSBudjf04QpRd-yvI0dK-I2rGE8gEDU9otXNkgHUIcpn9GDsEFspSgKCfjCVPs0SrqYqM4kdPjTA5iJZzTVJYDpf1Ns8OLpKMpEQBmng3V2y8FvlRDq5aQsHiQPGQAJ-nSzeSZ4tfRkWheUOExRjaD5M79UC6T48ewETT-eG6IGclEQebDf1TKsQFAzRuPEf4aJOpOItNJLf4PtEAV-3SShuluFrC8nGmhzHwIl0ygvT2nO4A0iLER4bunIM27rpNMxaZMQGrw31d_AFVAOfuWCro0Ur0un73WYM14KcDGky2ctlWrA5gX9iKpkfvxI-3R1Y1Gg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68157073e522c0-70538981','','','2025-05-03 01:26:13','2025-05-03 01:26:13','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43126',0,'cd-form-entry','',0),(43127,0,'2025-05-03 05:38:36','2025-05-03 05:38:36','{\"firstname\":\"Callum\",\"lastname\":\"Thomwon\",\"email\":\"tommo8532@outlook.com\",\"contactnumber\":\"07557344670\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6trCAwrX7Rpo7xBlfvKuVL6l&amp;gclid=Cj0KCQjw2tHABhCiARIsANZzDWomBPEUs1oKyQ397yT9BZCxyhyuHogmV3v-VC2hVPYiAzZWBKX51K0aAukhEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA502r1--bDG4L41l2EGLIWysMLvP8KjBO0FztGXhs0rhJRJWLKIdt0xVvZVNeoi-UZ9hPYS1DP7yBfvcaLaz7sPPX70yIUJ0te9CalZAGGyRwZvBG_mSXc6QklqrMY0qJM_xuhyfaH_WFfYlBf2fenNC_eRz93wZuzYu99SdT1OTH5UMeogcHM15vCwc2CTFkPo_eDa59sOKWdPPfIlT0mJgL3ZkaaXTAHH0J_1AsLctsn_lQcZc7rQPEhsPMU_eLpWHeQj3WFp_P6LpZe-WvsuA4Dp5aqFZssb94TFY01MZ62RfDpARJP_DWuVjTpEtllLf6bW_tuHg8T9Sex8qf0Rm53Iv90Hpc3c7cM_Du9h2Zx_tFtLjxe6O76k7xsH1s6zREIMaKJG14AFgloan7y2Nz48nmGmIXhL2P6WbOprh1pImGdM9oCnewg5nUoQZXsFk0dNBWg5K0OZmIciueSmr5jUprgotbCgdPa6VQN5eZ5y6A5unilaFnsSHyXyHBoXycrBkdsPkVWcouQkRN7mSUiRukWE4Xzd238ahz-GMBUj85x2za-kJsw0SrkuchJG4e2LVN51oz4swpDrAJakdE3FavRhA9XypBfq09BJZWlQHRu0J3TwIvtymYeLrDHgwq6Fd8JsYSxfohWLKZQcH18seKsXXd9cZDl7qyCPtzhiisy0oJ4I-yqDwe9nt1tY0mcnuiCJYwp5BTtc0A8WHLrtT6pTmDAsDIB7_ecZ5lAKNhhPrYQO49nKqz7YT1RmvrCWsuNuD4nSUh2y-Mm5NHlfkirb0UqJvrnsF6i9_z5zhQ1SV-HeRBWicnrCUC35dOXNeAfEGGVe89Wi1LT57CADgVGFL_APStcQEvCUiaQ7Vkeadv0fIBZJCwnYUa6lBJUEfA7p8I_ChZilcZWGiCTFWwhIUqUJWtcARX_Jw1MYAl584vq9JwnU0HFGQh43-sJl5-vvXzbchUdKCewr3z0J-0EFFGppfiC2w5vQKkSjV6JkCcFbY03Dm7trKZqikwIJyPAMbixWdZjq_Vz_LPRTdjtH0RA47O5J7SHMDf0eUN3Vyxw6Ywal9OVPmfTtzXY0othdqYBaV782pDhX3225QHIZ7GI7M2-Fq7NCKUkwxJZSCJYEEOSLsuqN0bW5XQjt_mvYnlGWKxdJAR8J84R4QGYDozTk_jrT3P6qimJT14FkCNWngbIXncFRb49SZf4qZk_MMoENSW_v1YTNGHUD9p3fbeF3vwKip0teWMa5nFAPE1lrP-sWhSW2u2sW_nju0FN03u8VrCF3CEeXORtexIhdP2wkh2X1gEcARrQkRj2qthscOBZtk6rynhP-v9FZbcdXC0EtYwoqKRSV_itzr4vr1u8Oh77C-F4KNCznU-hZHMMu5BSbcndkcau6HWW6pdEWgESFIdZ9CPXwSIrG-pIxQ5R2fCpUor9sdkN6wcFtn4oK_u7aJOsGGd8t-Bu0FJhXcnB7wjtvSMSuYDw5GW9fEQwCLzkS3ZJsjQUs0ZdjZXdaBfMoCa8nWmahnkcE2RqeAEEXnwhduVlTxRhYy_FAkb6Ser6AsRyJ6M8L4_BM93ye501PvvBeBw3sd_YkaJge6THYzzgzY0ETUn2H0CcUvEVpti3pO1tA8iY1VIK-7NSygOhFiafOJxVp_DYDLGeJNVtQILYXD7UefqmF4zaEuoZzaxrvIo0zwMWpNFnFml_uapQRgOwO7OlyKvELJi2W-T2i_Pb1E6Pqxj-NpSTMuuNYF3uE7EAipBZF8WRbkQBdbxyFIEPROWBs2gyPOf2CJSWQmr_shfyGHlye3PTu-rg-kf0rn0wDNUoA1sHdqKvtFXyDpXPFj-6M5il_g2qv-9geePuLYPOYPmOgSrRTza3MvWgggnldhbqWA8Nw4ReQ0fRweyCaahHTS6A1k8tJ7nxTaopSi6H743Q21PekrKu8hOHo-EXX2jNyUWm4gcL1lARTN-n6x1-ejxebB0DyIDn-n8NnpsCiyi7ZDuBP3VnV8FexyIhsyFfViUBetadgMQFnjHKy0tFMAtD8l0BRWYv7YaA2EWJJmoysKT9u_g0TcazWCAgrzNxvkYgo-_ZCHWEC-EDSzKo1SyLln8jc_mq0Hbd1-rqjoNZXd9qvJACq8NLzoVIoOShZ2tM\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6815abdc811189.28912486','','','2025-05-03 05:38:36','2025-05-03 05:38:36','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6815abdc811189.28912486',0,'cd-form-entry','',0),(43128,0,'2025-05-03 05:40:34','2025-05-03 05:40:34','{\"email\":\"tommo8532@outlook.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"9\",\"currentpostcode\":\"Eh222al\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6trCAwrX7Rpo7xBlfvKuVL6l&amp;gclid=Cj0KCQjw2tHABhCiARIsANZzDWomBPEUs1oKyQ397yT9BZCxyhyuHogmV3v-VC2hVPYiAzZWBKX51K0aAukhEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4C3dBgbSTMiK6D_Os_Gbpfe_bnFMhcrTiquaidNCudv9n5OZFGo4PyUAKbgkNRKfPLFFOqcFk2wblU4hOx6l86_89JdeBYxKZKS5cj-NslUGnmIuUiYvj_SxZBe3xyOAGck_yujnOvVz24DynTLVYXO0fvC9UYRrICb1myCr9wM7M7HawpDmwjj_TxWl9i2y4jjLV19RfKML3deb35iyNTzwzv4XNIAUnZ6qQ_mxTCekfTIdxZUSSPTXu3CwOZdO0QearfiOWAv6rzvGU0Z1AVEccidyzxhyPCOYulLvfurL0v89iFmpjWZ1b8UaaYDtBULR3N1YCXqV1EFUPfnt4SPVvpnVqKQXNIlpLUyFlLXaOnxl3wuVO5AXB70WrXIIQbEgjYBWpuqFIjLBkdUHJA1OGk7G-InoqNx2o5dCSZaTPlj1lSrd4HFUoBaWlJhJeC-sx4T5XmRwj-JPX_yqGRtuyD5USFhp2PRjl7zcIPkw9O7jQ_rU-yiw6gZ-vWEOh8OUAbUG8ZXpYZ7GIUwaZWyhzVQx0DkYKEqjclyMvnmdFg1LkRP81PAoIX5r8lCdxJikuRqCnaGUzpKNKOHF85gNA70dU9lzRlYUKHuHCRvmoVMOk_zbDnXf_6S-HbXGfdsFzUdCOkQ0Ijr8Am0rJ4lP69BFirbkKKcnQUz4tc_86L1EqyOjh30jESecw2Mqz5_ZXrJUo-guJ73rgLp1iMeQWZzcaTo6cQ9AUGkq8fxKWZYTMiB_grmZvY-0JbhsD5EtWyJbQ6QofFAhlKtF9t_AlgQHVvYNyTwlAQNS-FrywxIu-MMV3M3wzhd8y2bvMlzfhc0m3mcSn3y1mJc9XjcG8QQHUoRrP_ErdAKSwMAid8fFZYarHdDNNPts_NZEVteKzk6gqBSuLzg7Zm9SquguwtU1kZc9LY4cmgYmVr2WEooNrAD8NIu4-628fBrXYVS2G1h2LYTIzLN7B6CaylgsLqH4mFORmZtmreynZ4UnQknIFddWpxHYx9Zd3uLONDMtDcGdbSiI6wtpnXoU1oLXW6jJbZleANU97vl0NIoevygjdgpicr2pM6jvUKC2X-QO0qfb4zVEvwmDYZUrsH2XhP2wYd1ixBJrVv6n0zP348eF-QfwCxHDuU_LfcDHGw6-W6FyANwlpDG8Q9CQG2hQVUYDcyGcWKb49aOa3f7fZCuR1felXPQR1hABbOvlIAF2JzMvdJNZtzOFYweU4_UFjiywIrCZhlhKwAa_X7-0igGzEIo7yzW7wHs9aJkA7OJ32V5VupjQ5q4U_5gfQp33Yjoly7gf214Gx7jyUNpRFsmlNDDbZM7F3XfehkBIS4Fr-KAgIwX5fGzXBwBaLU3Ujr9g8TzagE7N2O7zMsHUPN3pK5t9YM5AYVu89jooGA5fm0G77o2BsgjLR9LUat0vTm6zZJxacEeZrjNwt3awF1_-c1GbUWL9SML4rzVlDrLNfnrixlpNpQaD750athzpY31LfNVPl9oq-hrZYf3JEcrWmzRq6abRZFJTbwnlBEzjigiIJMiW04K24dpf0EhyIrhnMFqEHERJHsYBL39CNQdTLKC5ZYM5rOuhiSnjjfJh2LNCpbGReIuZH8_zPpR7FN6nV4uyIj123qSX-HXqZdK7UN944cLv7heycxK2admLThpwhwHKLDGhKxWt2B3jTvM7HP4L3N5_vKOQc0151E-6EyPn6AOacTNIFH1sXkvDAKCYjC7s5Ugprr7ndemjB88j2BKLgqeqhyn6D_atKhU7lfIuPhVtZ4d3OzqVgxLSJ6xdPLMwDG9CnCUkrWS6M1EujIySsz1rNdihbOiftcc7KbNol5KXb-XdCMANvXPGpYj4E2TT1Iwut00ycUwrLu3PHkSyXrxrdTt4v3fAktiSGG59XY1k1zDIjMGfiyLtHqcXbFdlDwhfVJj4zAC_hMLq6xBkKJj6gcQsESYVHAXHYrQBBy3WHT5GVaBj2NUIw6h3eSfEjPlTQjLvSalpC9tZmZehWd-syoS7rJeE-4qFGKwnhFjnouPvkGdbVXdIrUY-SwDXAceduaSa9A5exn0vpC6GUGJuvH4R_AkVHW_VTdT8DsOH32tWNErFG2tk9GMZcobpFnj1e3Q0_Alb07ipBTnWqwQkY9nnDA2i_m-uvzfwB819pUQc__bNzYH10K\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6815ac0dc435f6-64323511','','','2025-05-03 05:40:34','2025-05-03 05:40:34','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43128',0,'cd-form-entry','',0),(43129,0,'2025-05-03 06:15:36','2025-05-03 06:15:36','{\"firstname\":\"Hayley\",\"lastname\":\"Vincent\",\"email\":\"hay_liz_v@msn.com\",\"contactnumber\":\"07340252254\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7dCuRdudYkxFKA7-RWkSQw7_1DZexkk1aRd9sjtCSuum4IXm7ngHEMUY-wHI4kOUxlE5x-vrm1Sb19CGJFnLzXE9yfi1aiWzToIenzgBdL43FCTrquucn8pheUYb-adDVsgjvdxMTjXpOmIel127VjwG25Y8mnVmlos5FAqGGUBR2stBD4y4r1W7uqR8HwJc05Dt4gWkAnSXLL5g60FXWoZq7CLF6oE8ZVzKS0ROmy5yepaNuSqdrK3xT_pEDkITQ_gQvOBzQp7VYL6bOWt8EEQ_CDW9AD8yBMVs7E5PW55Nwi75nCxBLRohCMEcEVJG3MDNu33F_yl2cDnA-t14sBVBWO6VYqSqbYg59WfVJZIJZ1UOIPi13m-xssmSnPiCbCIoIitasn73QmitSg83gU1zn4HTWlxpfvo3B6A_2k41kijR85zsufaPo_d6Cb6I3YNANz5xjRZmP4vNkh87Vwgr6LY9mWIReEgU6MgCCa59ZGUjTwn_NAmxet7iuD4FyKOjy3hKwhEGZmp-2kPdv7jxYaOdiqkk_gghHOO3UGP2lY6VEJEPz02TYwWVcB8Rl2YxmI6OreuaBghWhbFPTecta1MXF3wLRPGTw404vRDX-zm6vWyBNVs5BZ_hN7rf5ttqO2wok5SLuOqjqXkaaUIEODG7zDLy5deRyNaX6i7K4xMTVnuHIMG3wotItRHMmkzHlmalCfMIjsCMPHN7H19G7szH28-dWMIud3NP0JF3sD8fYq69IX_yNcFHGWNVaFLTEkOu2sDRClmTF-MtKx6EeHvXu4JrZXsBPEioWG3vQ91uyjPBdBfjkAEzn_46d4dBOCN5n3Lk-souMiqw5yT4yLYjIE1rDGrPuwCsdJUZyHhlmSpy8i5JtKGL233pG9epiaT5I-FkatUp9QKHz_d5VMINvh65ov7BwiQJ8PJrbGKfKPrafrj4ciSi4G53L-A23PnSO-iX13dFgL29H0r2eQSKi0ZM-w3ow3RGOLdK5V-ncQdZl8vD70_kQhAxmkOVGXFzPxuiFYtokGxz9PN5Jun89pqQjsXrAaCS4gOVRgrCiKwZ9EhDLIfhIUwGArfIzKP94iw5DtwaCeEgmKcgp3J_dezgyh3v7P-hmR5j5mWpgwNtyjDmgJvXGPOpuxu365Nsj5OVG0id6I04wYSkG4529ke7pdetahDgtYYA_v5Ch-6tF-B3UnW0bkWSCHxf9hIyy2Ay1QKgss-Y9owFOyPmOXYk8iuSQxj1T4ZA8jhVn4eK-rwmfgDtc9Dh6uKNvv1LYIfrSp8nSd1JsBc1oRsT1KOCPNqWFQqgExrppWH0pzQNv5oNGYiPY8sZ6IO5AN78aMjmiSgTZfW4W5RAEoEimxwTI641182_bCTU0SkJDJ44Uu_dGLx-Tv3i9OiQhagjkc3NfYmRt65I8QZLOnU_UiM1WGG-aCe1qgAek2fEv4Mj-SYzM4Vcu68PNm3cScUOSsgQTxylgH0y8v0S70IRZf8Sl5H9_0DfOzGF8lYCpN37ky2AVkGW_JwTj4DtTgvcZ6hllWCKhi1w9ppSXSAG2GYUmySFeapxIgYwgZ6j4EtoZzxUa1ngdNzEHBakp_BEg8SK5U9sjsxuElzouUFn2XZRXt0IgmXhx8OtHFim8LnkuxbxbKHfk_btUHsdUhg4eQSHxpVUaESvdqFZcl6UBqebTCDxOscUNgRJYeuklpAIkKDGx2TsxsvibS4g_trj15l2uNTXcpBrt0f-lGK0CfDXyRFuGExZkB2VYF8kDan29gaGF9Te97bHXgoWHStZ-sntpDw-W4wUDjfJAdn9Tm0B6dZdpDxSwIBgxYDX_S_p0yA9g44TdYRTIqT38Mybw-xd6w49gmJczR2R9aUNocMV4iHvJnfj0LnPgNcM3hcI0hNTrNPjJFpLTWgo5A6JYIMm4u6G79qlItww0v49IRwTVNE-av_4dxGAGnONaI6U4lEtK_DuN9t7qC1fhTe8RuIbz81RuPgQsECMC_edgv7wLJwipYfa0bd0ROmy3l1Sc8_PvYISdvTCpE591w6QeKKt3RsZTasBxNAYCck6fk1jRz5PnDv7PBPlIVR2g-if_KKyT_Trn59coG9VKxe5Jg0rZ1DlXxne6lVXL_0BVYaVViEC-3PmwPhDJPhPDPxFYKaRzfM5Vnjg61JR_QKqgb4Hh23fxbGYM5liHticmpxUSZYsCppoeq5vfk7l2MSDglCarzH7GsB0ERTq_seyjKOATNrYmVMJXI_qr7gT9l2BsZ2HE8pwLu5l9917IzXoUZKJvDDSYuh0y5mk75NJw3ECBXbhbSTudALjv4CybbsSxsvy2n8crfT016s__QkCjLD6mmLQT6v5p38rM3BE6FdB1_biDinBpvHANw2pUKk6szxpiQbOQuH7Mci67v6UfVfpHv5zMplE08gyLxtBn3UlQHUvszzwMM1fN1xQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6815b48894b485.27521920','','','2025-05-03 06:15:36','2025-05-03 06:15:36','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6815b48894b485.27521920',0,'cd-form-entry','',0),(43130,0,'2025-05-03 06:16:47','2025-05-03 06:16:47','{\"email\":\"hay_liz_v@msn.com\",\"interestedbecause\":\"2\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"1\",\"currentpostcode\":\"Wn7 2ep\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7OHT_ASLQpoTmholurDiuNFv43mcEjXaWobkz1bt97vMzjx9jsZ2FpC_BY1LmsrE3jyYqtkE1ZV8K6bhOc-I8ZR7q4LMRgnfudAba93GeurpaqeCIUduHIRzkloLTgtqMTB8ftdFeahD6ahJMxjrjS7g007xhK0TQg-H9CEyAtZPgKFgKkVwDQ_FUthtAtO2sdO0pdj8RUU_e_dHTJLqgTWgect7_zT2RtOxRJe4DHTXU8JLGveBrtWrIErrLe59gYO7hqM1DAfzloJtmpbwxKU2roZqAXXuI5xq8fIKP7KWPpo-5z_GrQmbOC0oY1jTYfXFaUDArMZNmjHDoiVgS2bUTLX5jGQCwU9v8fVZCEDWAWeoDnnBMIT2spH8eE0vOT_Le4ZNmYB5mxGsZlHn5rgCHDcZ8zyPpuETLxYCQ11ITACAoz6AyWbz5GFTpup9n01FqT0-yZ9lWkPe0ko919-NxgcoSMazJxbxHWu_iDOjo-6OdIjbT_ok_51Z8efFPfPaZqGF-DzWtQY2CSTpYlF68MGANkjLPIKRKmcELG6Iw_oeWr0zCfuC0TIylq3JtCnBiMfKT6lRb4bX3I4DLjekgtAMri5Q8WEj2XTAZJFCvGJRjw6vrX6gXUsTX84aiD_8ds9CO5mRCQAdddjgXC99UiDLEKaOLIY6QHam5ZVD3WSz4-KdNkTdb8a8MQPaalzgwlLfxnW79kmbrCsPd2Mkt1pXYY-oNDcTRaaIuz3RHQMbtN04UAy3treopBV744SWuJ7ID1ErR16qheUOw4VAs-xFmCmi-dZd0t8dF208-DemjKoAV4KBV6WIwf6WpFuDPKFvcv-roPJihG3F9DzA7Zm6ApAhjqkaIW1TeLG4ii3H1U8fKYIV1xtRcIQgbT3ErEqx9vyec37fyzeBcSLcN5hE5vEP7cPCzePm9deMg5vT4PHWkrwbRSUVQWGu02WTAjvgDJqF_dK_UKU71aXZ3I3TXctZFDM1iIBo5mMdXs1eg4SuO9y_hSDlN2Xm_eqzTJiPlJzly8wIPcAs4qhf-D9FKEwcju7RShAkee0EKHWuugHztjR5Te8OuQtMDbyjARadp1KfPzJJ0pJZcV_xVawEHJVzNmpHuOL9Pr8PDYzx2xosDGjNaht1gyS9mJKCofnwH0J0idCw18jeBlUN12t7dW7SOpKktwRr-KNAPOJTSfrrePzgVRlfdCrh7TKPW5qu4ibJbcMW-mWn2F7DfWWu4GaePZxoSKfSTsCboVFn_GqY7v3CZpreZxO_geLDNbkFUBrb_PKi0o1a8j1FYOjkeyQtJYSauwufqPtAh-KaeZ6QmAJparSu6fKPrkAKkwwmpbazTOI9kyXlsPnCzMg7-nvOCZiDCbmswyWcFZWU9XU0rREHJ6iWNC7Ew73EgcRR_XLbil5PeefjeUKtKb-VetHaEeIuXqYdOYqCInnHo3tAfQcUuF4RO8YWj4vpML1gShJ0SPmW7jpY7-ud78wHkIP1rV6z0vQ5qrkdqEW44ZVj_QJo3ZlQI3397MFdfd3uyxMkWvbkULitkYXMDjUcyMunpFS7nbbS0sLl5ivYoZaUzGhD-Jl3TBJho0yzDVtDDmB05CogtjdUeRXh1GGbK-FHdmZDKnHx_EMHYEijdqc1_3JSaNe9BVJRY44Fd0KnIDewvcFvc6watU1oa4xj2sYzTqQIovj5omQPFhrd9pBVEJRi8aVf5GA9pisgBpuiPPgfAlPxvotv9Mh7-gazHZGgjJsxMdvRryaCwkpWovLnsQ-qlh7tJ30eLIlHxsr3S4xYhuSYUT5eVfiy3IZi2VWpN7llZpkPc3Jt141mEbrgEH8jjquG0EC0MAYBmYT5H-6y5i2TvMhc7arjjPtihEsUV6l5zqjo5434bihDUgbj_iZeJcU4t31bunHVQkY7zoiQMlIYuqGVm0InyiRMXRJ0aL0a7fn5xpXtH5R8b84aMfnkSFCY3n1iaiVYqCBs0MSXj6Y52A_2SEqrxVxW6SCNrWKSqzH6aiLoQkjcNDYqXFNFEh7tqg3zMUjzJK8sTz_UqveImxXyiWEoHBzd4AoS_6B0oo9JkdpfmgEzMnFkwhT6f84WkKt9NeWUCyGVaG4-_3TDsrLvmcTSevDv5bzU7a6Jq9erIGxtw2zBm293g_mVoLX-IVnoto4GtZauOYFBhoNIwcWtTML_Y4AGW9TXqxLbajlrKXq3TEL7gwIOYwzP_WmqVt9ElnSVIFG2Cmju36-Cn4FGeAJ-UWStqzEgD2O0rke624VLJCAqmlQsRm-gg1TbonmpcGXDBdhbEmoKitF8MVZME255VlcjozCR4AaGi3m439sk11oSkuD37TwHQzuAK2_eN8DeJ0xfGHzK_PuxHLtEL4D7YSohmvhVA1F3OT49KzgDm3o6Aoi0saUXbr9Z2coKMhFD3w6vgBouXnVcHpTfgl8Gi-8w\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"4\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6815b4b3e25397-65600717','','','2025-05-03 06:16:47','2025-05-03 06:16:47','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43130',0,'cd-form-entry','',0),(43131,0,'2025-05-03 19:57:43','2025-05-03 19:57:43','{\"firstname\":\"Nathan\",\"lastname\":\"Pilkington\",\"email\":\"nathanpilks@gmail.com\",\"contactnumber\":\"07310282415\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6trCAwrX7Rpo7xBlfvKuVL6l&amp;gclid=Cj0KCQjw_dbABhC5ARIsAAh2Z-R6_DPcuK7JsJu3pv1kvRBW9UymIhpks7orCalx_oIUUFq1yrqgc-gaAjuHEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4k28Qyj9BCNkX3YWsSk90x2y1R65QiQPzSKz2tQA-wUIY5E8Wzib7cjG5sAeZb1Mi75uHv_BhkM9b30fxLNs6yE3UYbWRva0rCdP_ihjUNVVli09iFzmjd6KbwyBy7O8EIv74_l53WygIYZwD0xaB2YsggbKMViUR5ShujTsf34AkhGh-eAGeazLXeZ2sKraWIsQxFBn80IB1FE9Dl_mKMsn-NNUwRUN0B9jYWbdUZ2Y3H3iDJWhl7zV-LPKDhi3akDzifQ-Y9LSIgIlmkNmaa2rzLvCotN1rM1tIsV-te8pvvZAQSa775Zb2G9Jmn3IG8utmeG7eKALWiEdv0RFWSJmPTHBhB28BwrXAm9FtWMTVjIU20ECp0qeeiv8uQ3QTebSw8zGQ74HlnXMy5FnZ7310P1M4VaN1gPVGLQn_51Z-b90GKqXURr_7DdwJyUdPXlflS7eI_MNSYYynCET5L96zrkAj6AT9vFIcm5IhHyjHEWRU8s7It_PRnoDhxhtCY0Mm5ihrIALo2zyYT3SQWyKBCcuIurPy3QOvJ523OAYOOkiyBCioIKMPxz2eBiYFUOhycXZrkDTZ8hOtCrX9riZRSyEgOr_hO5KMkmsK1iKTvagFjimCoXbN_pu77i29hbaPD7H4Xzp-3gh-P0tNVcwJjEfX34HBTI_PSQDkwEb_AnuWx0SnSUsez-RFowlZYte_f-oIKZqpyA04g7nYNp0pInO8spx5EK9ZLAUZJGwm4i8quLIKJZiKPsaLUZL3yPRvz1YlA5U6qOmAPwRhx1a9vQvP9lLRY75DxOX0uDwUICiSChQZVQ2cvH2LcRkdBp7serL7NZ7keE8dzDDqgGrr13aGljuCcBQb7EugjfJp-4fFama_-fItQyY7kvnJdrx9_eNaWPTX49oCoOxs7OySuVtqIIO4lxGHKnLjF-qTEmuvZbokQDmLaXxn6E5fPcndB_8iV1GLzY2k9R8OUqdQfTEDxf-QtyVIbpDoprl1c9lqZC2qut-RE9FazJMDs9YuHn2KapuCOIBW74iaw7VhR6Que9ODLeO-c20tGqOAs9tUULTwQAUj3HArlo66H87It1XCRiN2uGnoUj6OISskBbSD7g40zDIInwurjh4UKewHcozAI246LOBSrTZoQEL3HYKMvnD24dszVrleSI8r1VZ6iVBQYAg4xbVj0Unkd1nvoegbGeaZ9iKv2c-BAbKcXkS36kYNpJj3F6v2boQxcXCq9BlJKc1vFD55z9hX7vRD5UtCromVZqP2xa-wKgSFcpSV1BEIIm4Phwy-_l5tPOssobW4UXgw0gKWu7DbO2zH6AdlFATeg8QBy94xymrHx34KzLyXKAg9ilQ1Iku5qzN4e-aMCuN49K8hSYO9mE-olEnzYT97gNdNMCQbeDgJpVhf1BLeGXmqe1zB4Wh9wL2mZGV5Na9cy_J9CKdlqJXtWWkBI-dPHjBTqtoHZBIHUyCXHr2PZb4j84-2fa4ohFXC_6SBIasQn37ZIzg4v6xso23fmJjPtdbrpoIHLMsEmcq_-ZPz2dcF0icLtNt69VxX1LzdIFwdgNbrWD_R3Mhi_Gd_4J0QrE_m0iP-g9xWId-DkVF5ONMn414klJ7DVYqMef0JziqlY8HMxaguH78XBnfNkzrbh4ee8I2edNHlCKE7yzFlPUdg6Ot8wZcJ285VQ6K56E_qyXGi9w7MTk4HGpWc6Sw9VwEXN6nmW3lbNv6ldOBN9AXJvxlfybKM977Dur4u_LtYkdlgXJ7SpZewJAzb9QDGyX2WN8AnY6Xa59dSTIQ6-illgtgKd7Xxpv51Qfvh4oO-szv7zSzh9P4Srjf4qbZ1CSO9wmlD2X5Z1CqUvNvBn3e0KZUSmontp7ZCVtaYxcs0ZP1W7eN72J0H5fQss0ogYmTTYDJGGtj92iligV0dRZSTXiToUXkdH_X2mykkV01lpITgo5CVPTS61OOPN71580lThPCsQaqcCIAdUtjiUWW9QhxIJeBmwF69ZFNoKqY62yhIi4bQzpwTON_Jg1HY7I5V74KNTAKWL6ZC9NYUOEyLPvhh0o_mMbKhNOG7wyJSHVzh31Sr5vSFfAL9Ip--yDNsav64CRccwS751feXyKyyQGfsz1IpngY49ffKMx0uv7badHrEqxlI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6816753734d219.37165831','','','2025-05-03 19:57:43','2025-05-03 19:57:43','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6816753734d219.37165831',0,'cd-form-entry','',0),(43132,0,'2025-05-04 06:06:31','2025-05-04 06:06:31','{\"firstname\":\"Tameka\",\"lastname\":\"Small\",\"email\":\"tamekasmall@hotmail.com\",\"contactnumber\":\"07904233112\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjw_dbABhC5ARIsAAh2Z-RlLV2JPvbEhyCoAp8taQITcexDnD-HtLMc34A-tpe0novEH62QgpIaAsCeEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6VdWkbX9ndXhF94zIHplojDKH8Mpe2-_F3GVBJ71WCW8qZLR8kQUjzhHh9ZIVEi95qYM5iAOV32ihKzZPv8MLA1aPGMCiW01q6jv9CQJnJfTEWo_brMunn3HLu9RfGUSh3nDJr-YemkSuCpyjuGL1cqNrDTYaOVVgpHptk3Rq6DRTABgIFKE-ZFdhNMGXdYJD3tyM0_WPTHnKi0iRijD8bvetVLD6SlXPeePFjFRTwiaQU0YXdA1G3gqhDw3Ss9Rwa7ksxXpXC6d6xiMWkiPLyVjTHyMfwGv4rlqYuTxrjeA0AE4TtN3cPlHJUQWdUgCcBehh0GZx-iFhmdmoFXNOiypHi6iX6UVfRzoff4AkOkwcWRI1lNF96rmdx-PwPeMnk_SR2fhKZxkyop4mW7fSWU0q5QMQM_bD1c6hrGEimyT2LpJyg_-DnpLjTKfFKZK_zvg08DapOuZEE23hFe2K4blqYO6irZadEms6Y-xHACKZNoC1EK-yhlTU4KdXX2kiLqZ72kDqdH1ShYfaGJuWIamMmrhjJ2xW1IoalZfRg21ms92087xcVeF18pclIsGgfvxcMqPMbyWbzm5ngjQG5MwFjxHnnvKHiEZFrKzlYyVfas1M-FiNK5DI-WDzWt1pMD2HxC_Uk4NNy8m5RxN2402ZmSji3CKnqks-9W8rb4Xvtf9PDpxSjNe-4wfqqdL6Kjw-aavNgVRUXd3X6NyCEL6gRFx51ZOzxVC04W1hV__le5rSYVyKyywTOAUqt3zMmn7aEy8Wc_AuFDY60gjrFwTxeQc-VdghcJLFaK2J_YTiQxYFHkmTWliuBLpbqWU0cGKk1bC68VXQ72MYbLBe2Hs414tQZynKUCUfcFXDI857vTa6MoJLTgZhZl9OUQDc8ECVpyJbF0OSRQl7Gmz4IDTASW9X3rDEv84BlXPTxkQsTVqedOWfUflA_n5dV5DR0dsLyFHocPfrcXN-nx9_U8iFgo72rgTxop5TvIVDVm-hk2qerSpqd5mO9HCkng05AIMDyKb1eOA0Lh9CY9u9JFOrn4SGZ0Xd4lGSyH1cV1O6hFaLVQ1qzYrfoohi8fM2Yp6I2Wdwz6gwsGWL4uYZ9zgMxYUvP_0QAgCC-gNA0Yz4xNTh3SxcT5eBgB1fOdj-nQAD4igF-81imj7ucrp9ba4crdO0KpxxDZ1xB-1MCUUMT1iHvshqd5cIRIblnG5N8l8QPS45QlAYnJd0jrM8Q6QF-leFZd2aHkZsuh3U5KDUt6PM-vYdBsue4chjrAho0Vc7Nl5x4K4hNpbhG8ycEDzxOME_7wfZNs9AlzdKOO75uQqbT7wpwfTyOCkChLveySF7nGxiDvwAIDcFnS0Ornjghprfw0FsoF--LTxvkzUAXxIBH7YrCGVUHWx8MQKDlzIiYm3MMtmCqhvVN_LqxmWkfYTPiXwK0vDjB0QXZiuhd-s4CiegwAc4rf6zYpCqNMDu6ryNuM9oZpqcqmV9levqD8BOTwt0F_l-OgpbyP7ZngssnrEULYg1L400NlVYzLUPkZLtKzpRebYyeW8xpgAVw63ENOIbzi7_bJlqDXVOLIfvcdBFbvSkANuEwX80nkhsMaRFI4xfBu2tCZ9tTVUyQMo9VJufUebVU6nxALgdRR_FT4BB_EGjJPEBeCwwLZnq_A6ENeKzRRGLSP-f2PHDP9emnGsceDRtS1N2E5cX3lD4wLKrnITN1sFGafmbQpjMSvKynSvndbOJMof9oTUpUsQCQHPrDuMpyaT5CM-tJOrOER9tgNK2UwUhnm84ksRqqfH7cIHCu_WWtE6lGZGy6PPsreLRRzKKFhHIM-WoBn9lGQ21junss0A2VI3fRZtDkN5fmpFtTH5M0Yy-KBn17-Wg5khVXeN9U0lVig2xKSGw9M9BQn_K_yjG2474jRM2NQAvdMJAawJ3TBC3_t6qLmQQorj9lERvTAUAHN29LP6AKzjtYmIhSgO6pQzFoZkFAXEJO_gJHURXd_IYcE_uNOEkTk3Y6JZwwNMAJS2B_YSvh7xJS7M075YaihL9L20kpaL6j9gjl4KfxG6qJoBZU1LC8bBwJ9c5IcnDL0psQ1foeCD__Y789OKLm-_JLPubl\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681703de78bd02-63149154','','','2025-05-04 06:06:31','2025-05-04 06:06:31','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43132',0,'cd-form-entry','',0),(43133,0,'2025-05-04 11:33:46','2025-05-04 11:33:46','{\"firstname\":\"Arran\",\"lastname\":\"Tomlnson\",\"email\":\"arrran@musclemender.co.uk\",\"contactnumber\":\"0\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6te9erF1r_370Ta8ZSgd8OEy&amp;gclid=Cj0KCQjwoNzABhDbARIsALfY8VNL0wwjGmNDuXH1-UBedhv-D1qedRdi0jsH7hcXdQ0mmv1o4hm85jcaAk0ZEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4PsUMqAWyUiwWFHfttn1e2HvMWXSbPuZlFUM55ZvHRWnUlzW5cLjG99fy8YoXxWobRwgtnlypHzXSfS_s77F-uzJoclk1DGQaPmjUpcRIA35dzTMR33c3jIn6zyKvM4vKaeiRg9X5kryD7ErHG4Seyk_HrXqvrQtOSr05LM8CDJCKBWVI5dNgWYPms24DxdguAaom52xUCXzcbnivjtEK4vcovn1a1BtsGdee-fbA5uMUQSozPUH1MMo1CGLG7OaY8xO8QZn3E4EXW94nmel7qQsi3f59ncjhhad4Gwun9YeoixauAhooDFZTtsVTWZhBLlq-nRe8g2_Xgh_2-SCCJhTCJ0-4Txa_2yHvbDVX2HxuID2TDvm2CICrL7t3wr6-QAPJxmujvv2-CPm2oav3g6Q9p4jzAx9kvxy-xL2NBGpxCtMCUsq3S6x7ecMaV7dqLFwJy-wMNiVQgGR64XENloNmpuwLVGszu1eHk3guvZmVqY9CIXNweaciHMH3s9MFOFVIgUPgBoOWwpc8tE_OG_LwXBPhnl63PwtRMD7-m-CtF0K3jy3FC38u5LHIToFEOVnjhxmz3G1XzEJ3GINzsSWAqwi0rUHfh8CPPS56qJXjFIioMb70YAlurK8xXdTA2f8rOnKgyd1ifrAnY-duHW9rBop3BuCeNFJwm2PID-vR8Vn7WxO5dfeguJd_BOa5ai4u5fajIvPv1vB3H90-L4Q_vIDzaVY5pAJMk79AhKWFIHUfqcjlHgwvmHcqV3roelADRXo189PewN-OwfE-5n2sCPusu9BoKLS-PxyX20FuTaIlKctSyjyDIUVNLVol51OOCsMKmqKsr9MDz9LIxVJUBggPR3zq7i-S1QRtQrSubQTM5ay8ruJQVlFQViNi7cQiI4CIIi5PyGbN2uvjb-F1IWDYV4MzLt9QBPCGjqbyG0BFWwHhlVsDuJofeugpWGBDdSvw26YCmvaIJCc1kLVEbZKNhaHC7g6PzQH2KaasRh1P2kAIgQNKcKM0MWJsdhBKVNggX0SFMmyOjKdGyj89-FD9eg1obL3DaxLuFFitW_ZbNgroN5PMDdm1fo5Jj6R5PIfsi1-zsV555Z79lBwpJv94XdHAz70no5nnPCkLtzZ7hCYCAyb4rzQ_fJUvo-dEZlKm334ermdSrCoVirvGuOUh4socJ7v566Gdtbx47h_2c9ip3I9JNmN7b5wwZTDzNBB_RTgbwIat6IDWDcNjojUcBlYNCIaj1sF3mBTJR3xNOnj9jyuDPHzMWpWPhEzGOTT-Ls01p9-cV1Pjvem-7uc4bkwvQiIJ94CeSBhSv2rsCkBSzj5lX09aAbiYTU9f9FZL8jYQLeXEDLLUQidwUYv4f3grXrovjLc_ibAgwfcKoYcVLsNCGAcxmmhMtnICx_3tZlMPnlbjF7LzUEV9TUQs82JWb_UkBayiNCNtZ-A9xDFKXZ86x8BXuEj1gN5wuPNHzO-LZXRlUGHGJiWhGfaKVDpHiFD1DPD3YKDYKmvWYkKBwzp4mbon6rvmrrHXj5gCApAvPJeyX2mLVLFRlMAG2pkdoNlEH4P5dhLCGG77slATRdkEaSweCy1CkwbdFBipfdpFKLfFTIe2QGtOtGx0ahK3Stci7N-xKYzqdn4CPO7QpXEu88Qoqjy-OF9kayXB46vnYTMy5Ec6L-BUQ14fbpwaYrYr_XS8qbPSJRXCv60UHRMXLO5__h41khFXmT17upkyAOK712NrKhzF5p46pYoiq7vW_XlesvTVaQatUblfH7-WeIkK-A9Xnakr66VmDxy2x0GJTbXjubFVP2Q6g09VUCipRqvTPH5DIeGXI9EWPf1YYMl0LOZh13VfWNo1Mg27tIwKVQJAPmUyOcA6WwxFnHxVI3MVj5MblvkbBcU8AyVX1khrZjtCiz0ykNgbAT4_ILn6c7rw2gmuIdIzPijeh7BnuAYxftQIf3vTtIw19egP94X4JlTyn_5n0jFdDOQ-xYWm0R7ul0EBL8gh4wzor4n6v1tGAe8QAm38AucxJXJSLwISaqAspFhAhI71xYNWVwr1QTq4DLKjXM0g6aR3jdK9szCElVNtassQujA-UNCLaNMglzoEgFTqEAbfaTGzGabP4qx47ydhKRb18A8a6BOgQtjCGThP35tmJk-_pAoQnwxPaWzDJ1K8H292APxL1EE6i56FzkyYaBoQHaFtoNLvD10dmHQ2vvNfOP-Gh9DypmT5K2jiWBTlcrvjbEFqHIDuq5HOHVqJtqE1lkAHZij6UnzslHx7OOH_9nnfbGIOLwBfrVH2skY7gphHF8Do-kHTzZEFf46TVCF5GLCltqsG0nA6aO5gxt3vlgcP81q57rPaHyEgqdcZI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6817509a9140b6.03328195','','','2025-05-04 11:33:46','2025-05-04 11:33:46','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6817509a9140b6.03328195',0,'cd-form-entry','',0),(43134,0,'2025-05-04 12:00:58','2025-05-04 12:00:58','{\"firstname\":\"Dylan\",\"lastname\":\"Greenwood\",\"email\":\"dylangreenwood85@gmail.com\",\"contactnumber\":\"07807437289\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwoNzABhDbARIsALfY8VN3zpROVttlWRiaUI5p1_rzKGRo44je25DFKHutSvhsRvQA58yuLIoaAlwHEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6nDLysmZGntdHFY-qXJcQJvFOOQ_JYroMPHrmznAlnt1cNsPXEb1wkFMJU8bGjc4mAXtIdNicSFccuih00KBS6dAQlIbDCaoLxYodTpb3u79iqmJwfmbHqFi8elmOehaFNYYy7za3TNvHZq8bKEp1TE1-D4VKPBQNAWKReOLaBY0mHbdTn47jKEQDObPnIithtN6lNOVATefRPCpw1CNOy3FS3fXtFSHAa54MwEzdcM2iEwOK_smPPa3VZHAKjNj6g0_iO7b91Xn2PzeFPdOagxgxbc3ARUdHcEcq059imicf5zd4QI4SuC79UZ2W8Cq_xGH6N-vR4hiFRhCysT_IatrJjosQGGIEnkNre8NzIVZQ2aInQDjCovzMTox6-ZWwVHOyKJ-4Av_QWmwvcBbIzI9h_ApxOB9pzLygRvZW5ATjj56gJ8wKYeKOLbdMGSzCVsIvx6Co70avXbQiKWNFaWYkJKUKm7ovRQoBCyHPm8DXdMPh9WM9-_9rhorJGVWclh2sTVuCxzscORGZZxspcIk1fZgvRGmco4c5eRPwdY6yt7y9RGjtQcObm3YdXZO02Xlb-jMzWNh-CUrmuXF63eIToV3K2UhHI8RPL7cSNn2bXlrxuJl2mROGK7g0DFGENp-0TC_oXhmnz_IOd_6rC9tPpBe0Z8kqHVaKpXlZS54Q_ZnYSPgtugD0VGLu_QVIaoqqX8zDV1iq8XlrxmmOPzbSgtaek-o8ZcR6ypf-X4ivV01nwf3zVMH7pnaUhqOJQ_wEtuflK3ajFB36Fn7vN3UDdAwNqpY2XCypkm3keI0knlGUlhlQFZ4cP8IZwWiIC0SGgCdI9Rx2QVxSbR7ZnPV4F6T1RwFYkWzCKy1AtuwBGQNMXB-wNwPc9U9_M_Irzevhfb7NHpUJK_8nBEi3SmZDkL9YuhwIfVj7no2KrPNuSubQPc0iEJJOtZTKihl12MHsEuy2raEmMDgfGstZj2xv1Lrq489gGpSuDvZ6C2Abk2TBJ5DqF33bzzHAYAFTgz-JuvTyvIboIY9GngN3uZj2_H5zb9dIPUSisYUszPqkH3IcLO0OLN96H5IA5KnOSbuuN6Z2QPci6DxTxh8ipTG5MKi5IvmrIlZm7KPmYGDeY9lhcBx_iM6v1N0bne1FXd-Ul8Ti1wfVyX6m0c_LAMBB3BpERCAqx5ExsN6nU4bh6z6sSRPUf9ylBZLGfUWo1rJom6Tz2KZRs92gpX3D7SK4yRFAsmAmHb9wZfXqoHXtXC0G0QrbwS0GC6Nn5VYnyFoS2V_aezoxLXhemjQqx-mpgRMKlpOg2T7IqNF_AcmDV8EV9TRKf-QcUy7kp8bkVzpx7Hfo22s8nIr8RqNGmbuzfLZvlcLhwovkXftCWzBQYHNLDnrfkNvXsdLJp92HqOJgD6yBzILZDQBo-5wNlj5O9EiGSRXufBxhPfUjDMW0rvheSm69BA9Ar3oLy_JKi7QsOR-EDVif81GdNKMQIvwKM0wovVCDGhNuqgQbyAbry155thP6lZg0RythEtGF9y7pJ12WCxlK8NwwCLpvSJtxxjG0plCwvOTa_bIrYaPtJzs0YwTJSyK_Da3LArAawVX0nHoZJAS2d74RGBjTHiu--TluyKSRZHznmpNUBao3KS3qKRkf4I6tzeIAjsop-LVAOeDPehnSZey9Ky8xNu5MNPoWI55VLyOS4LsFSYtyQFWewkk4RsmObHtNBx08Th_eY5intgLaPKIzoTC_QWedy1OJRFn2nyGAGucjES5RLKnVZGo_4WmTIqvTWgoJlCT_-IUYgFlISHMan6GJjHJzaVrAmdIpGqUM4kmpzHttIC0-QKz6bwwk1062DHvokXFLvBHYR4ksMT5ikM8ebHv4Bsm-VAZf6jrsa6nYMBUs6h5U0dTBmEnTU7pUpi0HjPIERxvB-NLKROmCYWXQ9TZIT37odiY7HECrrGBm57DmoAsDpYZdB4g8DB6CocZdX1mH3jWRI3SsA6MLBt-WGPmL5Fbxax_K1_9Dw6e1cWBtpoUV4oyBvTHFJPKkBF89i6DpmK0rtrxN46WWiCYiKqAHJP0_InyxnYnLdeqC8hUKl_ek\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681756fadb4250.63634155','','','2025-05-04 12:00:58','2025-05-04 12:00:58','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681756fadb4250.63634155',0,'cd-form-entry','',0),(43135,0,'2025-05-04 12:02:22','2025-05-04 12:02:22','{\"email\":\"Dylangreenwood85@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"1\",\"currentpostcode\":\"Sk8 7nh\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gclid=Cj0KCQjwoNzABhDbARIsALfY8VN3zpROVttlWRiaUI5p1_rzKGRo44je25DFKHutSvhsRvQA58yuLIoaAlwHEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4PoY4kfOyZAa0YSIBWmkUcjNPHJVqJcXwfEYtEIJV8dPU1AzTnyypCy9AVbYZP2Q_xvQOij8_wqYDPoJOuz9FOfNLeMNAlcmxngiaLlb_8bwcAVznWYO1QaR5_sTGKiPzb7_aAik3IqBf-g-D96Z-qMSqVCr4zoeBQ9tYjcSgxMbtU4Kurw8nivXkPJneSNN6g3QQxXiO5pAkASMscWYoI7hCU2YcU-LPFWoH1vTEewzEsui94OqGLYc-N5oo2nm64MbtbywsIOX6K3ZfPCTK-MaEpIFAtYyoQ07VadJ7vgK8ti09vt47geQ_gNLEzX3Lzxh4jBJgGp3Il0ryL7OuO8zWr3OhcaIQ84k0GaCMSl1bH3oGqMzVi8iYbbixZdASsDscMSliPBCVfwxckNW61avJdfTWwAMT8zYXRu2Y3fC5kDDeERQwT-3NfLihpaiYAIeoEHa3r6p_pt_QDxlEQtKAJKzavTYo4jW112v8a4WHPQ5Lm_KM2hbI-70NK3YZE5wLPDU9nZJ99NsZ9M9HHCe6iCPmgbp3sfitiUbi7dA_KDTHofE3AJv5SuZVq36aJi0Zd8JPQxga1zqy-LGqgYcXO3ZclgtR-tEoskbYEutTJD62ZpglmQCnOj53qEsRLHQsVI3pkZFYf9_yUgCqKzRFyxRtvJymLiiO-KX3mNv4higJGb_IKhh3OrnNA15bkrLNiiaWLksskRWiUHYfXBwZBKGgGwJk1ShjMJdZ7O-dcYjNSe7KOBlCsHeWf6FQRSlyGzmHNsE7gY9ClXuZdwhKOrjBVOahMpRBp6gO5MuT3A5BjYwE7Vp6CoZglXICVW5kqORrRRNE6xPKv4lCp8EOblxTYn_AwXu4NH2iXJ0L3RtcGb-akOK0HrcKViHSpHASBvmg2BUifrrU-asTwCmHWFfaK4BO628fSMbhxT9lWTuOl8bH_XgTMkBBXGiTfziGtnvmbFRt6051DboGCLyaNl2zva4w9-8gPt2PS_ZUSlduv536dt7sXnVYnJXmOKrtozJzpM4ZWM5zQDBvC1ZkCllvuLRbFQVEbq5MAAheA_Ha3bgu4cGF5BMRoveTurIGOJYtuJbe_GUoQ5fHT0eQiXXUU3dSNlj1NmRXgQs4jzbKgJdPSV2alUayG4dFWxh-pROLWXVpAGA_Tw3ibfeywxZxnnMIolsnJS2OLguwHGYgzHJTnkiPUtjtDZd0h2NJAr0iF9FRluq3-MRQqfQUwby57YKlxO9DIdif1ZIOBYSBNU8zmV2dX3WnDDTxqL8edLR66Ngy708PeQMyVPwvcQ-20BtbUClPjslQViVJ8gJ4UeAw6CSqKc2qOgFRx4msWOy6CUmSlvN7UW8gXQEMTJ13oJ9zInf-_ZH8_R7FZmUUBWTEsuZuZmU3IlWqZgJabi3B-dpoNXfVouc4_uj-yINeA-hTVdr-7orXFD8YMZbqUczaZBitwdYGNoHKKYlrDGn3218quELmWvP_mFHXavuRW8UrIAerdV0DzDF5-v4K-HqGKoHUuNVUJiFYFnwXEosjzGLAxaLH-ZcufBEtPmo7fars-2NVD2wqKYLDJiA-XTlUbBNOrusLfJ4-J8rmlLv3_rUxXTQIVt0FOdCoEMIrYjS8katqto-lFUZJhnqfxj0FBburx9X-rN7OyOdDtQZ_yqhHGNkWK9IEVSn5pMFthCZ_jsp8O0A5KarwphJgfdZcMdS7N0WCezXoSYPoAOOtzN4-bMTBqEjeKh1EVvxw1w4oWNFRQLmkowOWR39l_1_2BsbNCKIcO48DFoEUuPXimpbUF9dHuU34xEBdlYKxhlwWhi6rUj0-2fqprEsPpyx3S1Ahn7uppgcsUShJaM_oXTH3_MVKttFyHnhyDjhVqyKP6mQIPi560-8eGl0Ly1CtcN1wn3uy-ndMHi4NYJgU-aE8jgNLVEDDAYGNds11t0DgNj1gq2ZtpaF46eog4eH-XpZ833WEb47e3cO7PpbUrpqXzUzYoK75Af8rVuANFj5F7C08VG8iDBrby8ab_gyFFep8S9IdwXdpzcxq-Xyxi5AEOhL8mszOBlkvXW6RaPNP47OWY7MdQvopK1m8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68175725b676f7-42735957','','','2025-05-04 12:02:22','2025-05-04 12:02:22','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43135',0,'cd-form-entry','',0),(43136,0,'2025-05-04 15:02:08','2025-05-04 15:02:08','{\"firstname\":\"Sofiia\",\"lastname\":\"Pavlovska\",\"email\":\"sofiya.pavlovska@gmail.com\",\"contactnumber\":\"447880535883\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6v6yPdnOFczVV11q9joz_TsX&amp;gclid=Cj0KCQjwoNzABhDbARIsALfY8VP2wkcuWd1t1wGslTrz6RCUA3vnLN7P5gGKJWF0WHt3UVKhje0l3uwaAjk3EALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4lNL2X8mqUl787z3leX1eVDaZM3QQ7zMk7Dn6uDpn8Z7BAWiJJ5MBkF_o1QhjIKSa4mxQKctR_ihn0xXMi1CCI4pOotFyEDJXDrsoc0gD5gXYP_7oQ6LE0o5PE0KUwARxkmfeGV--UDrPRrncIaT_NQX0IHrR5AFaGnITcl1zVpPhj81cKU1CEJehWbvZWvCFq7aB3FcPxfJQs_T7xU_UevXsl44ZvfAnut756KJjYihss5NKa9RyKPhty24BtJrF11PwrrJT17JQTNCHDqnob95u5pLAc0hm8jMZR5hhzmBsPu2GI6u3DICQqIa2lAQmZ9DqK4TNMrnZUpcWC2hAMw-LLmMdWJ5p5vEoEu68kzFagjcbDTu6-lJ0_uoDuuFvHUpTY5MtFJh9dA9yBD2tbHE3zL1EY1IVMVXc-79F-kahcYDYsV97SSiSug2pULqNHRq1zdYmHkdjEeI1m_jWvHTxRXhD00jHKm1uM2nfhNQW0NCti-DwGIKitm7BKE78B8-piqwJj4BgZKKd5OjvH0FyBf8PHaho0CufnlVWw8tRJ5RY_JbmnTFjg9OlZh8z3PAY5MWkYbe5zkkgqh-lxZcEharmAw7MvwCgO6qXIArckueL-R4CqYkoKQWV3qvN5pUZikdizfcYwf48liPJqQii-QgvPmVJxKNfwbCD1eG0A78sp3y9YzdtQwF4osDGIKb7JlQRvpBXIjBb5J4SEuCF4zTtHbzSdb3PR_UZTTc7hEmccHOKRftD2n2PFKKUfICZTCo8fg1cg3vt9wlhkcpJuNwF7BMny-ZgcMJtLI708jnOAVu4Ey84IIQ0NrqoLxiaiJR0GPB9jGRmBnm-UvKMXKGm8h7fag7y_a3jL-la2GUjjtB0d14E9XAajcVxRpjiEKRbaZKyhVGugwRW_P-VFFBwUMTrmWfkGE4U0pG0ucqX4zLufnuOUWvF_oKMoO9Skhx1Qmbv8Z5eBXvLvTsvY-vPOjeoZOXxVcg4PWMr-EFFwgDJBGT8kugZVKa65oBdmj3xWq9DfiiGVKNI7oxCTeeaZaFq2Bo62LER890c8cs50z87oyRqkzQHV6BJHzU7EktP10towou6Emoe_4zv6t6BX-4yTXc5RotWbAtC1Xr1oOh_xDoWuoAhBGk8fJpER1LY1C_FZDKQWK6lsKI-pecEuYR3h8NvfP10pA4kyoPTgQSilDBnzk4rvHPAkE603_PLmEoSW04Q9AQQsRHVcMe_esZXok4aIq8ar8XAlA2O35haic8ULu31vqZateW4kGGqqkYs7hY1KenthHWW7Qaj30bt3DNa4XvC2Yvpb9WoBpRTMIfvQTEmHK04zJG8ERmzcqwGJpMWU47YVxXI46dNAOxEuc4M20txq35jBk2dWG40Edj4zgG3kJ5Ipk944Xonse5RET9QxdSXBio6cF9Nc5JFs0RDpKrVA1h9UlvyKcEXmYTds2-UW7_bvcfRSPFIASRWt5CQchCjAXPsnFZsX9HGFkDlOirzxLk7kkiNK03jtb1LGqZjUIBOLParKE3oi5ZIH5pQbAJYfEau2JrMB8lhfRgw5ThW_wlcxXF-vBw5BPFmzmckqjSmM2E2MbO_vqvPHaUJyRPIOFYcJ0CKZafEZ0kJRrE33WfYUY-Ci8IdeOWAkv1UG6-gYC8sk7RM3b2OUmfph4nup5rNKycv_CoW3VqUOjBeSCf-Fzem1xduFRNOhNxP008Vgmra_uNJ3-YAveGir6CflQ53_bxrD5EZqlhXEJ9eqcUwYqGATCJxEQL9qoUece9htmjcbRa9080-A2FRaF2cLMQLLt6X9qMfBJmLC05XBErkeJGOV-Zf_Ccm0YfPEuGYyji1lKhpqsAqVghZk4IlfgcV66TOBAgX6N0bjXXzMIcx5JGLYAroyAEdeICFz1Dh_J4fjD-qDTYJGJ93Kg7z0w-1UVNm9ksY_sah5lF2EFgFepLO4afiv5zVT8IGLzjXb1BQViBAHftXduz65Pqrb7KZY_M4ignjGQcoGcIF_siG8I_l9bBp5poSO0x0Q1zvddvRvDErEmLi3Fi9ntrnvJt44LHgJt9fCxbfttkzYm8oerCGrQ6xuq4sOheivWjBuQR6EeiQ-3hctNBR1ulK-32Eog9t2frPoItH4SV4cMfId8-3isaH979MzasxGCAH8lK6B\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6817817052b593.23504473','','','2025-05-04 15:02:08','2025-05-04 15:02:08','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6817817052b593.23504473',0,'cd-form-entry','',0),(43137,0,'2025-05-05 10:24:46','2025-05-05 10:24:46','{\"firstname\":\"Alice\",\"lastname\":\"Mockridge\",\"email\":\"alicem4000@gmail.com\",\"contactnumber\":\"00000000009\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39231\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6t12zUR9I-hvCQ23HmnGaonp\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7byFPfad8h7vFOMm1Mk4nuJ_WEKfl2yDHWnecRo5yUAFnrkyP_XH0mnAom1SqVed_sKMdZHWNU5tHRg95OFOUX4JbNA5axzuV9_mC6skFKm4q-VnSo21URMC_cVw6yYHBqEsOW_tYsKmaFrBa4krPb0cexFGHrf5TVeFg3wxPMkefLql2HHRC8C1_2ZyqsKWg5BtzMyL9h_JFHAC7EqPSlxoGckKCQfaJKheEvAEUIEpuVQ3_hinRaX3cStNImgBSKePoeWJ2YyrOGtXwpJ5gpTwM0HGfGQiq5cMRqqI42bzFfA7f1Ae_0mQiyk6cxUUuklfGYb-mV6P_1-NdKszISORiscH3B79q9OodCuWk0UA1Ef8BfiPQl_CZDFvQaenNUpKM2l4_eAt7f1Jm0AEXgq795Y7J0M4Un1-4lB7lzT2AFVkrRCmbsqY9dV3ylFieNwLZqcffZapUHFsEl7x1Lh1JvyGnDudXCZd1j-C4eLuw-Kq_o7uwhoOYmdd-s7X1AiC5rtoROOyvnAPFGsYIEjHsJfSvX3SAXCci8TZETZmz2aTZmh9w6W4WkemO-K6PXSrpIXYvIwi-8v4Q2y2KEW5C7SNZt-2IE9w4W8ZR9KspHCX63SzTKEZcKB_dZK_Mh8a692d8BS1g79SOeKYso9_Eobw33ExWSOx6MC8Q4jx1a_RdCV4pkYd4pCHTrgytk3yuKu4y-8w9cwd3RNt5ocby4RR53OWuVf0TUlTaoIn0MM3WKug7odJlRJk7gJg-BSy3MlFhNKi8yq7doLe0Iwb-VzkJZXPnMC6frmgL_sdbgkVaPauZO9lnewN7kUx1KmsftORrRdRku5OOrThqeGtjrHUkAKoMd5eJLOJVXgH58axam0eevBh5CQ5SXG0fcoBxjDHEqtU6uR73pYuQVsBEOhMgg_NMr0DBl-P9ayEicE7qVpmDkSvr4Vd0GwTvRJPpD_LScnFSLlAFz7tlgdohuU65jNJCryocyUn_uf_RhEDZc5Ky8hv_JPFA-E5go7TYBLQ_CT71g2N1ptzl-JV-gCIbbC1pfjuqr8qquDtofmBl_GI8o5BsFVwNoVmNqsf7d7bD7_o5EgRrSZ2HANLOm5hotYozgtUf10Ay_a45QrDwOIQ7UvMV7v8dfjyCLE9WNmJ1HLVhwdZ-DtXov1-jXfhp8WUHTeCMU-05RH2FwLYVrzHY_4OETvmLxG0TdAAq1ruHxEIgoM8acBCuYL3eckjrTm_HD2bUCZnaGZ4m-QXFj1swr7wc8eYZUJ6dD-V9xjVXQsCpeWoIan0Cc_BjgigElbW2Cq9uUuWOtXF19Up6arw6CNw9GilXyUcxWVHWmKUhtG4xsmbC_oQ07zXV8j3pcvP68DK5jPHR88lQKajdJsqCUw0E3FcBnnY2ksQqqNJb7AP9O9Hc3hQNNCHparM5oUeOy76ciMOgIADYZfnLomHEtho2idCmztav-WYTkj5nLkHcGMQA8EtVL9FZiu3RtEMAt0gC2zb-sJlgmtGHVwWW_YDURJ10UIKAxOoVLjibVElH1aLZIryFcG-aawm4o0mtaqq3Hvr7inj2yYnKtMVmwNuOI2Wr3XnMg8rR5N73zkMY-BbEANHX5evt9Xcv4I51rYK4YwvzwR1uUcmyH5KVsYc-zEU1znRXe_cGJltM2iav26adc10prYDI_d30QPzCDcnmlisIPw4q5Q3aG9qU9nuEHBqzKorouTIeyRUsoP9qkRk_DFf7u8bwWp3xRqbzoFyLGy2yXnREUe7p7-bEwGqGLrB7nbd66GNa6MeKYrQYMVEBEucF5uBQZAM3s6mYjZMZ_hUCVGnaVhg1DInQ8Y0w2ShOQ69VFnl6wTiaL2-smrp1mssSbXfE5PKNYP0FmIRv7op8FcHrUfqCzFSg7GJQFI0ap7oVkv0XTM-m2WSYwve8hbih7ZO419A4ipkmIkW4sQXG8Z6P67imJEyCE6fNfUQXEZwP3M5yy7Wwobml1UflgVXKecPJ4WyNEV9B_uywuNit5Cxch2U0TuECAkMD_4uVI-FbPijRMjRwngfZKZ3DfPs789SMxYrMCf7ZPC9oJYI7xU7JuMf-0mKCFgjCqCRs1covUGiFkjLIsxnTOGxgAMmelTHCabO5wjmC1SxGZ1E-CYwJBHhz9HdQ92K7QpffPhsBL-LDzVHo7UwrSB5bafTIT6xokMXS0_Q6MdBZ3EgFRBm0xUv2Gv8Az5-2thQneNGaZowaISD1dHmmuIhaTg1CMNqePUTGpT6Jqn3M8SBYTvMVXQf3LaFt8XYm9c01Tj_WQx9ocXYYPgGT_3B3VhrzfX3B-hcld0UMB28CAtuTvl2_dCmuvY0NQtsIzQA3xrpmh7qp9TEUdgCWDG1nZKZHdHSI4T8MYQ5BGiIrUchnfzfeZM6c\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681891ee6ddba3.77801083','','','2025-05-05 10:24:46','2025-05-05 10:24:46','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681891ee6ddba3.77801083',0,'cd-form-entry','',0),(43138,0,'2025-05-05 10:25:58','2025-05-05 10:25:58','{\"email\":\"alicem4000@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"E3\",\"pageid\":\"40321\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6t12zUR9I-hvCQ23HmnGaonp\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5XYZxG5RW9dWH1sHryX0d6UUUSExrJ_iOknCUf5lbEZeWDxC_sWVfUT8aFLJFOcUIBJjweKQku5MGo14CZED-PY4R-hiH3xCxqtgaj7i74fYF_aCbyKNbWVgSvQli86B8VyzQThnQzKI1D-QhUA_izaqZcbr7LvF-veW6NpZl_7wGxXbfdE0L4SVvNuXSxiPlYGFg0IF22vFxZtw5IehI52-kDNXz71qWW2T0luY3G-gMThHG3389KWwmTBmTs_AQjQfeIg1VREmZH9SDN35AU0QyhaYoG4D1cd6hJzv2h4WYhx1ke8xRuYjp43tyqbgGsBQ1c1m3O3mNzCmMCvhjRE-3nQrYKYC67LfPGfCNcCZx0Z5YohCKSITznTd7GUrmzl6kj4dlfMy1MLRlM-TkhYQQhJBO5FKwvCMLHeyK1L7hCeis9gJQfPczcy36d_OCKnBtf5mMj0kCx3K0S-_XR-_MNsD5m9Q-wFcCPCqBrYnmtWYG9hPGf2QgJ5XhzXzoyziPUOs_oOAx2xa8nFrK4oiaHJ88vAOhnU-gxrSeFnDSPRyiHqzYxe1zDuRpQnNA0Xg802b1guMbKjVdT7rsCJWVIEv91CDXAlavqrCjAB3tOikfMw2eozKP6u9iASDNrx39_yzAPsxLxyOY6xyPjiH2zTxT7bo7I6bsBhl6fdg-bDXeU8lYrrR1CPXitFth_SLe_EKJlVJGwdRilx0T7HRHG38pXvO3R_L7a7jbreLOS3YhgKS0TbHHCGEdqp6Azk50XmsjwF4OArdEg-t5b1g4OhOv759wRbKx6s-m9g91gxivD6ROHE1rul-sFKyLl0QR-CPI2neQbbPdnqoDQGY8aGGbL0uDaWLDAK11zREGE04KQajwihK-LYy4ndRz5bWVKMLb56hx-IekpL2DdNfmSdc99rZ4KhG9iRCxAyQM1j3kncJA2cBR_rOo9VhW48PIaczLkQEHENyf7-1tTs-ivdama7ekoQ3l5L4j8tn2ytLHYDZakVKJW5Pq7TGChr2w5b2lJhpW5dIha7tjhpL14F0ufQDyInahpmDWhlauFgEvyaFYi5gcFMuerA73XHScl6DMDGL-9M5AEzVsfAjrDqQ2OyDFP2ve-nqpY72tAa9XQ538PM6aZI7gMJVgJjnYzrgwR-_DslIyjSdC2o3VPLKwAX5BbBBeBZYcEx3CKSHXCaqtJvwA1MDWQ5qMZ0Awhsef4zyNw_77wGuy4UDEJRReXrtx_d7yJ7uZZgRTQFfL_Zl0hnYEbrrnubCtcAEGoz8CErJ-WPLanv3s24Fs3uqxPCkNsmbNGymEYIjTnsQXa9wKND_zgXj5BsozhiOR0QL_NajthDAGZiIEjYmr3LziEhmYzJZLBKSVGseIcTfcKU197M6vbz-ZLivm2MXmc2tlboIdWazf2-oMLFa31Plkf9a5PnHBVi9w7XJU0fGPMx45yf0vAjwo4_HKXw54hmHDZ3hydfpxxEjIKyMrBYBAMcE8tCZ5Ylo8S3JQL7S6fAWTxRmRqJqdcbFW8wOA56aB6fBC5b8WDTqinNYWhYxpgoHEVHxrZoHyAjUxbKMS-AxCr11piEKBvhIDAjP0sJerpYDW3G_WhO0-2S2AG7BZE9IZoWUBq6cxXVWQZQa8iMfTFpR9toFiEMF87Nv_UybJl6b0sBUr2x613t1Td_ApKCTjzr-e3oEFA7K0i9ok1vpXivpPJ3OaROXtPqlpFgwXf84KxeQi575QzTQs3VYix1hm5PtehEr2S6ShdLvbtAgm43c9W8csqLiKJjzGBKCp4_vNMkkSkmAcPLqJ5Ku8aF0wXh_MJKPsVE3PnHLBSCVeeWP40IBfaZJFLVcwWZZqcWhUSmoR92BYdRjAMoVTxs0DSAQZHpKChTIDFnLWJnvkUOEWCXpWmM2L42a6Fo1LGud0DkvzqxH0BfvJMKFlr-MtWQMUG-ZR3WvvFFGpWh7K8D1DfaKEnvBrjryH8_kmqnKYyEdMWoQFFWvW8QijpI5kOXjiUdRDVNcZfWt_xWc_BgIOGh0O3SzoN_pxeGP4NIzO2hTleDHpupsr2B2uUCZJJgxa8X19o2qZAIe3xQXvvzujxMyd6e7gMt5x-fUgVyfgtWmuaySXSB3eAzcYJM9_s73XQtPsZaJJQbexZB-ahOSNpMnp-scWcaua1VTC47ziMqWYuLAo0PttTZpuNKlNg3LLXHQbFmgHrkQk8wPqd684qJ5M5lwUDXcSMrE45aCK70DFdVRavWjMDwnbt9Xve0FrBXpa60zG2yXGF4hGX17oYKDTbSLcEooH2i9EJcWm4F3LjyVVGpNXIY3B9isrHKgVb_BKbyxFGmCGVDOM-AiUR7TrIjprccmMo8dr9W8QV4NQOW8093YqllvJer3_pJenKqtbTrCnH9MmkrYR7fACo_A7aHEMe23AK\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6818921ad0dc91-06487765','','','2025-05-05 10:25:58','2025-05-05 10:25:58','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43138',0,'cd-form-entry','',0),(43139,0,'2025-05-05 13:31:45','2025-05-05 13:31:45','{\"firstname\":\"alessandra\",\"lastname\":\"martina\",\"email\":\"alessandramartina98@gmail.com\",\"contactnumber\":\"07424298930\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tYvxV5YupDzFQaFY7hJ-fQ0&amp;gclid=Cj0KCQjww-HABhCGARIsALLO6Xxt2fnC4foo7Kl-hmEIC3LWebT1RkpRYnbsu-2-pLvlYfHaO_IeTfUaAsJfEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA73MnWTD6OqFwpVPX2A1xvjWZVkAmFk3TwzzChzM1PZmiR3zMLqN-JWoPBURnMVyM8-dPwcEHSoK1TRwDFHudwkTe6zyunJ4t3wZOmtSDQH4SHHBBwFFGiGErFTbwu1hDIn_vD8IZerqDtUlg-oKvcQiVud12zm8jIrW8BmhrwicieTvfCGjacNDB9rdBEv61mLgxz8v1YygncfNT-vkX0luQBsNIss-gRVkehMaeMxFqIiTZICLQAAibWj8AQZJYJwU1WT5JwYdI5ZteINE2zXoHfRMxIPkgZ9TeKsZ96n8PAvXFc8Gn71ECMFAyNAJHDklpfqjcDFJllHXZYqWKmM15vSZNIobeE2zJT8t4XeHoZg0lB1SKt9fmfCrEKK_AIQy1vauIJYarbGtVtWu83mtSLloRAlmiL6QsFSHIX41izWmu3OUo5zTDzMc5dYAA6W1DaA2LrK6jAi6HwlMcRjvmHy4RBIQjNzKcp_4pxXEvusA1RmCrOzjxXxnUoQFy5oZ5s-GGeAtOKj6cqWbYbgvbiijYq66Rw92WFmt_-TmdfP-RjISBbLu8d-F019h5nAMuJd3vQXnZb0rS3EYTPgF4_5oA2pkRAP_sqTfsdi__yufuPms-IgRinqMu5UEukfMlvpaiJcWf-bTxiMs5Mzs8RJV0nVX4YRcqnn_Jo2X3tmXQxAmf0qLCSbEQqrDveZ0ahbmZN67AsutqVJ3rociBpWktsaZ-3aZMXkcFsZP1UWJDM4Sy7621nwj63RWhKHgl33cc86PxU6rxKswG-raxjOofVNR4dfFkFYg3elIGZ-Qacw2Uhvp6MNhWeu7AAesG3ZDFYbS5X9h_lzhi3vuZRF--_LBx6HtvvJ-5uLo3Bzw1fKqLBSfwyCkhDHqQUIY76vS-Pk4Jp1WKSqTWM3zVWcXoAYYn1irDuWEKs2pMiJ3XRpyOMPdVQuIWIPHFha-InxTQ9M2HEkqKctbm--JXiEsBcnlQsIEndFUnaD--2Kp7pOwE37zb8Ct5Ty0TeWCL-dRVUsTtZgrE5KY2izGDWtdIzBefAjjYlQbecx_4tPc1oD_TWZKsotv7IeuVA3xxhj3TKviJivC_UcjcEdY13g4rWAEHfveRKepsDZMr0oBVEEgnQx6-No3pj-NyeRWf1auG3cAOPBv2Gp8gHiSd4pM3QxcYdCJleOBNgNiiKLfwD2NYNIvKTi_t8P7Bd0UfgzW9bKwjUVs12iFejVLgmsp0v92HsNoAbgOJwO24TB-r1NLmjBBcx4etib4sVm6_jUKCp8eLDA3PQv_UJBilnxlhQvdxoGHadXp8RCPHn0bF9PuXx3RtxC83hpJISvYkkmBegxFxDn6Kgkkq9BooXZJ3oVk6OfaVOlLm_twf71bgXGVpsU2mQPSvDKaMPlALjbQipfTpxSUo44hlVzlE0WcPGKg7pgv5Bs3_Io_n0_RaG12OUOzy1Otgy8tkxESJw0wDF0H2YeTSKms8KbnLnP93tgDtjdw4JW8PtSNfy9vI5fwlUItkTKgXxmf8QJ3OYKlF1vm10au4lQWghRjWWNdBJ0gdVEmdK8CHcjmNc9wB3orxhzrLGOlz4WMwThlpRs_fBoWHAi0zDktoRXw8PHJK1txDRTaLPQJm2vB7sOMZXnKx0EfJzswZUDLmy-YfSOOfThA2OHJYG8TMsfmabYTAriXj47Q1EIA67dsVrZgkBVCrPszY1MBJMTEtqudSEO0fwE1VGEbSVwUibBg3W8oFBKtlV1GNCFgxn-HywcpnGpIeIIF-xU2j3wappofYNh2XGsg2u2wuigKFSeQRoxuFTiJ_5I2M8hbbopr5INiznshF2baC04F-Bf7OUvsFvJXC3U7EWEq-pWrC_3FvFxnSV78DeHs1eS28l3qrIny1Ku8K81GeubJwZHd2we3Gk3rqypGnFWA1UHXIY1ZHc7gFXWCWnZ3N5B2e2JnErJ-l75lnRChS8iohOBt4upeEeqHHT2RswBEEJnL6qWFrHegluN7iKK2e7Z__VDP7Ub-mQV3shwieWWSiounkKatXUDXEx7sh8zprS2uy1VX2cMnFcGxm6uYs0o2pp6FgEy67315ZR_kRninvaLj-qOE04cNb2I26RQwqxjHcDU8HpyI9U-ovWYjb9aFgya_ulrcKPdp6JTHf_4c8UIf4Zu7OgTsMlTpI38bsjltkN0C8h7K44BrQpBZsDH9n1dKu4zG8oSsNtsjEHWLhQgCzocaztiLic2cAvhhgvfzUEAf8F26nQ4aDSoo8hg6lC1z_CDFPm-QmHrtt6v_9JQxlkVEBCN_qzXS7CzH71jLmMKKEr0mW5BprnPg_chmQhCCNKe4LCwweHj8pznV6cc52judeZN7-F5kUS-56tymgzLAYPbMQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6818bdc1021879.50458747','','','2025-05-05 13:31:45','2025-05-05 13:31:45','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6818bdc1021879.50458747',0,'cd-form-entry','',0),(43140,0,'2025-05-05 13:33:55','2025-05-05 13:33:55','{\"email\":\"alessandramartina98@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"sw11\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gbraid=0AAAAA9_dL6tYvxV5YupDzFQaFY7hJ-fQ0&amp;gclid=Cj0KCQjww-HABhCGARIsALLO6Xxt2fnC4foo7Kl-hmEIC3LWebT1RkpRYnbsu-2-pLvlYfHaO_IeTfUaAsJfEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7VkEC7k82V1_4txEOAdhGvVqHeh7bvBI7nkK8jE9uep4MhIxH8sFBnH8Z6Rc_nI_DFez0K0IJkL83K18-uq4_7rCvAA4nG-8Fq_6JwJJqMN_cwAWGFFaTYgVGc4LQAhQm0kyLH7spKXgdhurTsfP6UAFZoy53BuL6WnBp6sE3M7mi_fTE3ZI0lJfKFbaWa9VELu1fAr5UVKZRazUt-_3SlUDwYopS8MWeAhW7HTEiQwETrK6lVnJ5zke50PbqmAqNPE1apPKnurcMd2OUaLZH3ZWzT0ttDywakYa5e89qx3PNiC1fROqiN7BtoKocTZrvmRSjrtwBZ4OXd1nT0BNfpiwYypFZoSm9hobS7XK754oxgyppFMEyXCogfPh7hfanBjcxf85SZ4SzdHn7fog6XqsB50kk6Npsbz4a6c-A-mK7QDcW96-STIyPHIdISzrNBRdKqwrhNkma1hBYJqirOT0oml7q34wuM1p1wY5xSCaJcMh6XcIEwGCJW2wECdjTbuzNLIY_aQmleqGYpotsmadJMtPD5XJQG2Cj1aOGcCHFOj7AsEyxioc2HAA9mrHVJ1N_ZT5yz_zM9Ot3T2ZCNQBSReb_PRU2ZfS7P44ZIBEckwkDjhDShJL39_JZBg7Tmijcd6-UXHKTWPdWHC6j27mfX7ORYVax6mJyOBZB-qk0mKpK9FilHWbPsm7K7wRBUvWGcgyz8fPkg6gz_Ft_9cq-vT9CQ6z9o8X35ubP95HEqoC9Ic7lCblQmgMVxR0nd9CVQ2o7mpcwXWHcc46UqyPXXY8QQ3nG1b2ZI12GDy4XcnAbUGbGSOjX4S8ut2EWtnwtdbH4F3gPWRsDFgTOUTHzVYHUJuq4nKDMV9W_4ayZqFALKPuk5JPdXu_9S5wyogIpouBZOGJZ8CIFKM1wqBUxSmMvffacuUZhxVcxyf1PrLMJOnUaFOeyNAqTxCgukB7OI9NnH9VRaG6LwYm58fq5lnrE59GhQJLb652Bm71zDqDGUNZndbluviTeK7KrwxavaRPSroX4hbfs0J-KpnAby6p7HmTMYT6bX9-x4D3I90zdq806ctOhWbcVJWvNBPYn0-bacLPd-FN6DpZNjD42EELGqn-3lr3izBb5TdNCeDsCbZv_eIja41ka9zWPNTmE0ve3ixBg2Wn8x0rAVgL52IUVRzV_HdtKt_YBLNYEezbF9VDdrkjhB9dhCyw_kEc4Bod1XIsqPuGMyiRfCTgQJDZHnSPzIeXQYEsPla8Pz0aoT6JwdgvFtgm_hSrdZ6tYKw8-5yg8G53-7ONTpbgEVjhIbUBsN1KES6jUj8cA0q7xuupoX7eVxg3UBn_hQ2JWEbQaY6D-7Ikn_b4klT0qMTIn6NpDoUou2OJ81VJElJJZY3MPzzKDEcUg2PzLIKv9ocFAXx28PbZFr5TtJbYt7CJ79aU0hNEYgksYTlZaUqL0C5z9vbGAyod6z9u0dvvx6VafCM6LPCHTqoj7eMTjycvJd4B_XhrekZgbsNte_DB__kk5pkCK8XVPiekWNYUEHUMGsQ8YSbnqpGw22NdgeIh1sazqgIiHRr3QX2rfMaM8WzleiKavZluwzmBNk_Q3DBo_P-UjsF05ojzx6VnGxISovDTboQdc94TvhcFbWkzQdxfdF6-d3ahANvBoTGn63nopRcK87nhHslpv_HF8T-E8BRgi50HzuniD3iBoReNEKpHvtl6WNiU2YbG79U937F72LwR3v9PZCTdwOZczGOifkcfI-BeMyiDhUodNuEfV8BhgbJycIg0jPjMA-D2JOuvm9s2OfoAGSUmctHI3dbQ8vdjvDTAWn42LRyoze4Vh3jdjJo4av5sQPIJpjusqjKmbAtjRLJM0zH1kDuq6m6z_UjReWwVwuEg5nV_vSjLnJEmt1jIrgN-EtVy7dp766rZbMBpbHCx_PDczRGULSlKBvj3s31zaZKQWGRZb3xYF7A5KfMLDMrln7zU8Yj5W0ZHZx0xoONOYkqHn91OyVvzj0OAJzxgsvQrBe2FK4-pc1ccSzpTeocLZdxeGuffChhXRvcKloReRSnb7y2lkQf2RGkFVnSZ1o32-fxM94ooOcaQh-uRKiNUTQr-Om0JYmJop9v_nUvKWGjv35M1tdnX39HR_eIwCdrBXauOC7b-Dr8zsdHTYI-jXFiwSnpzYm8X7fDnXNCtayepHAtNYgN12aYbevRvvgZtAvoHUO7DsAVLW5HOFHm92P2k4qimpAEO3uNWIAo4cYjBiHeBAcBKRws2tzfXsNSDeMdfhbs-k8hVLZ7VRuV4437xGhyC8-oeKB5ayKhGEZSebT70trV3zktCVNadhjrsdFyXL06lJFCFW0PQ9JO6ID7PhsgwPy0XY7DkMoBiO3HZIQ-NWc5g\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6818be1f38dbb7-03716282','','','2025-05-05 13:33:55','2025-05-05 13:33:55','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43140',0,'cd-form-entry','',0),(43141,0,'2025-05-05 19:35:11','2025-05-05 19:35:11','{\"firstname\":\"catherine\",\"lastname\":\"west\",\"email\":\"katowest@gmail.com\",\"contactnumber\":\"07796615590\",\"currentwork\":\"5\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sports-massage-diploma-in-biomechanics-coaching/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4DJ1dJLGoJDDy2zhHU7onIXETZ-Qq4Z3mLW9nFtKV_xBbR-OGjYYz4a8tma1fUr9lN0Lv9vWNmUBVj1g74bQ4621ki3pHcuBKkjlsyUDxiAg6WdKC4F0enIzb78rBw90W3B_yO0WXJMrBH4fNOYYoBEpzPbaUNFEZWYeY8MFDzAkG9C_jSH8DUsCLpWQHE2GAxA8TDLpoXGUpQgKzm3BhKE8Ymy4FcDU-1Mn2XB3SX6M7Tzg0dT5BKjQmWpscXICrMmFMIlemwFWH5QBdVlVioo_mb6yTIymrQg-42zQKzHCYLDAYgmIoQnw17X0uhPEQDHVoeAnx99Z7nGP1Ibf18CF2fmyRekivCzmlRKrbWhFf-8W50BDTXe6F1QjHztF_OLQOOGKuOAav0UMSgXgIZ4rois-CFMW4SSzVB7YKP-OZHisLAjTag6c5IjMOW_HEdKHgC1MzMrzrzhqVkfvIezRJULEA4abaGzKED6YB9m8K9ofrgme247-ycY2G4jdrEM3-uxHn7DQB36_FCjJIVy-hmoDQL-rFPKF1R3GytmDIvPA_5vJ2UX5IQrNkB1orQ37ENLPzdwh30y9yk3kz0nf7MsglDweT-AaMxOP4z8GnkGsl076nnS_oClxgI2KXbSmR39RWLQBgmwFrzlofzlqY7AvTPU7wjhb__JiBWVZzRzLX2HJwq2ifWbiByH3Ji_xjm3Mo-QXut0YGbYnbavauQKq4iE14Ojb33vajTDpwFPb0glSSOTt5TRKoRgnT06MdYL-qg3B4TL3JehwzP6lDXwbyILn2Sp2TKZ0Jtp02WiaM9YV1UbBrEwwP-FxGwH1lLQMk0POZErcJk2ywrF0s-xzA2lTVtKHsudqf7bYsf9-MCu83gbAMsNMy1W44DJa5TmMFLSsFNCApheMiM3j4WxqJurgaiila2Dl3uY1G4HH8FFFQmQxItxDpMMmQBBhNGnrfpVQDSaUz51PTVTgx8c4-KazTEI8Bbo3gzLAldJ-LItu9RX6w4z9pmGeZGfLvVcADzaStLOlGO0eeMnJTlvFLZ7geeEdP3tpWkDukkW7JngSc8wCAMYp1qBwfbNIn8hwjKz0G-59O-E0EXaEtG3IN3gDZ9J5uGOOYxIgb3eVtWz7RaOS2VtUIbG2gozAPixs1l5uKKqeXgX1ZhbXUAqpv-FBzV93ocvbECrFxaW6tE29jub55dWq-8Fqb8wsMnm9JcNa2gafSD4k20biwTBX0Z-y9hmeI3Do7Ube61gWJhgTpKotkbXoW1qhGWasgsgt7mOhkwrnnHmwTtJCMr8yJ7pmRPW6aJjkpQIWyOHVe1ZykS-TEIwzfkqwm79OjGX8HBftfuWB6MXidfz0YNVap9saSeMbCPcBue8AcMG5ooEgG8libfDmoAGTdQqckzZozxvzBEUVSLE32vU112kOsFA4HJqBP1Rn8uw7DyOYu8YjVUvBRW_4H9VdiioL28W-K5L43qdQg_o2poyrKpJl6DkpaxdYNZWm-0_EpL_7BL6SaY3qbOuWs8GdJnv87UBTR5wJTnf557FKGqWBi7p-C4H63eX1vBto7D2QSK00hxAuaMsfCgecroXJVWlfitu7m6-i9GJaDKN5lZUN2cSZGbDVHDmr1xry6X5VAXoUB6pJJB1sVnNKDdEy1ZSnsWfg2jZpMtexRq-Zh_OHoXZ_UXJZFuYXXjQf65vLOJWVi5g2BSiwzR_FIn2eX72DDGkrgtBHCBxRa0iNmQjiaWlrCo_3ORh6iR8GzwwCeBeEc8z4ays8OTBnIHREUAXyyd6e3KECEobww-tAGfruiCtfR3UiDLzaknmDQY96HGQ1aXRf87fwVVnqdHstE_oZfsbPb2YK-a_nspTzYwZZTY-U61qWrr3SsIErRIbhDa7P3YnEv_cV9LasEYxfGRnaSPCxTwnhD41sOAnlkOXaaMVw8iP1WVDFLvwfabRUpLpV0BgHmZVE4WcxQHTcXbO8SjLrrIXjUOeoz6AWBp_Zd3SBpVZBhzrrKwxMxiiy3JSRf1hOTVFsQwKsLztoxnazKQFK9WydNcd9rL-2OXcGvRpSdMLmoKMYj8NFJeJ6KpM-knLiiKkBsTJZxTpenPB5SdQDZID_b1GgPi1ife8x-tnD6FhYvjqWXulmRym0JqfPEyz3iiWZDyFcIBaGrElmTz6UYbK1oC9Ig4BDrwUbHpVgRIN1vS9G5MYjDy3GqrFG0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681912ea930615-04103511','','','2025-05-05 19:35:11','2025-05-05 19:35:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43141',0,'cd-form-entry','',0),(43142,0,'2025-05-05 19:39:51','2025-05-05 19:39:51','{\"firstname\":\"Kirsty\",\"lastname\":\"Birrell\",\"email\":\"fitness.inspire@yahoo.co.uk\",\"contactnumber\":\"07716 293766\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjww-HABhCGARIsALLO6XwLu4g39lSM1SrEoEjVR5Zau6w-6r0giIVL-cxNS-5ZgUCwqh_JOE0aAmECEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA532YSX_aGvbW3z1L5WQaCdvXhvhccnSk9-w0g7GzVkTX2eJvRBAMQPv_SGHGdcfD_cog96Tkk7ff5ghevHJtneC2iYyikhWJ-SVPUjUQjZ1lzuGvVWkhpNmh0QSlnI2htY6pdQe9Jt0kuDFOGvPAUERsVTfpEfATAeqAbUOYe9LbpUKhoi_HO6qaUIC_JQW5NGFROkvgUeso6OZnacFglVxtITUpJZeRsoclYUYvFuo0e7oP1Rj709Di18Du-wbf7yaSpsg3gIq72cMnaQYCajuVz-1BBq32tvozKgWtXcZT9uZzOUcnfrGG1tX-DQUCvMUbW4jSRy5IBEaidUH9Y8poFxPAUOF8exeOv9F5Sz9Vz7kKuqAkJkpt5MRY8okZWV0v8ktC6KPGP7rM3alxgOPFu31BGOGYyQ2tS8lwSogUxJ4eqtFboiGAtkT0n9wJ2MJ5lHmgR8Xq-lVn4cctEMVLjO8sj9nxvpjgvyE_IF6CgGTtRdRocH1fPmXSddyBcpzI3oPhRtHDBBhGr5t-wVAlTLZ7iQ0eFVMQ_l86ic1Tuf98C1fNSbSbRhq3W9lNvAqpDtMNjeRwvJPpMCY9_cnOw3Ts8fBy7o7vzPeaP6N07HEuuEUNnjRdQaGXw4u1teix6_tEzGQRE5AGp-q6BoG0dfjNE0-1PkL_9DqwSkcuy5j-UUmjY_czKIMlfCFPoww29f0fI-QnaARsvRAXXlmEOUXdS3gCHDu4DTv6POMezeHCAO76P0CT1zk-AeaTdaSqE3sdddxvhZW-isC_gSHJJDwN4PHSCt6ojLNVFEooqIqs6QgI9uuYtmN6lj835DG1_RoXUtzepbkLAp1y2l8Wb27mg_ZUAbHFKVy5QRM6TSKlnpcfguf72a6tLMkvPT19fQGO-fhUFG4vobyIsyp5ceox7YBQipNNxYtPLF4zyBPXGbMDgLOp9G3bpEphuWXBTx3O-8UeOeAxSLtT0TFwa7y_EY7fLuuWsFMPF8sEmL2UlUOiSwHsoZWg1kwDTcs43eB3_D15HLhfaEIKnsMS5aSm3UYqDBgvdhWZLNWd50Jh-RrJ8LUPauUblNCfNUULE5FlR40clDSP_4WZ4fA5stXWIpNKMnmApopDQYsgo0jAO20S5l60IHFAoY2dpkSCl3mu0mTg5Tu2DzARaLB2-fe1pl-kWuDer4odAfZo--YX2dy_OnNLuDUgOmnPoOIg_-hVF_vnowsq9XoAcCWPB4z3O5zYmMeQxavqJfLM4B8eYUUoNJJv1YwQNDnWsZuq75SuHxLfXhsu4lfyhBYm5nlEprnE3fR2UCgh0EUrRFlDvMAUsA044rdlWE_gtpBv5kZ7Sz1-K7LEz_cnIB01ffIJd5fZZ158iGqMQeb2btLS3e7NeoB7xgmPOe-JMQywN2g_z9znR4SANt0SkVc_gX83DKoY2xklQCrTjoi8Wffxcmqpw82xufFH3errQaUvvevOiC5uQrgiofMevirkg-Fjo-b8aufNMwrcy_xfyuT50Ffv8zT7UOJDeOnKibCPvYggteAt3v63kSNQ8gc-IiRnvNuFzMpxzzMytVYYWmy-rQDLeeh47I0OeFxnutqwbx76mrCl4u-aQCH6w6A7l_sGlSAP28SxjmMGkA_IHz2HtdQL79Q-tG5OFc8tj5iLYzWPoFlt1SVgyDWrWND0b7Oo_JEC_WUbOYxUg3defTITU1CbpO_bR2jRtltMn_jYSOAcBOpIo5u1MurjlGTTvJlThoI5rnPualQZKcSqF7pcpDrEVciC0GQRPw4r-TJH9L5SGbC3toO3idhsy1VK0VzE2FQbE-Yn0YHHIeKMwSu-hEHhSjrLQa3YDi2RnjgUxbP98Gzka_gfd3QmUXVbtybLo-NnabxrhCL13zt_GP7y7REaVUt88D63_bJfcrNR-rJn6mBplHlLnvnAAH2WV_s_JwcqqHgWI7f5pwTqE5XW77JJO-fRCidHGOLlk1uXCEZn8R_LY3YzKLyCTEPO0fIsghzOJOysZNzwl9NTQVZ4nn0EYsToNdzbDg4iSOIGn5idMM-H-2dCfgj9-V60MrTOdStEykRjzOIl3CGPRw-La17HYhPTZNhJCk0eQjtxGFIUhGLlTWE_UafkA4mq7Mz4AwEUrs6rQziFb1i5jJPF_-W4tQselVtXbHXwREWoh8Iz8vHu31D3o6BL_F1msHvmBnE8eA9AWvhLbuTKhXZVRHepg1H5B1NdyGK4r9dA04NBUrRLzryDCSRXGwes-HjxTlbG8Jz2Ap_0nr2FDoVmutuhHOcu8Nij99Vt1FafOqhQDqXSx5l8006Yqcb3yR_oYn-8w8xSbZZxYFUIoMmHc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681914079cc951.77159620','','','2025-05-05 19:39:51','2025-05-05 19:39:51','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681914079cc951.77159620',0,'cd-form-entry','',0),(43143,0,'2025-05-05 19:40:22','0000-00-00 00:00:00','{\"email\":\"fitness.inspire@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"9\",\"currentpostcode\":\"Ky25qe\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjww-HABhCGARIsALLO6XwLu4g39lSM1SrEoEjVR5Zau6w-6r0giIVL-cxNS-5ZgUCwqh_JOE0aAmECEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4ht4dIVHs2XYMQZgBgPtNFvvHAFeOdVJAawh6rzn4-oedqxPY6_R3A7XGNpB6Ct9jhA7KiG4O3tR__gth5c22_l3Nvi5nxvxCMxTBI-vu2mgIzuaBq5hd3-E_1I6Aa_broXjz4T5jsz9kjutPP6AYNEgx9RzZOeCSVneTP69UC5S_BP8Kh-lnGEcdLVG3oXdmMiEfh4dLIWcG69bO5AD4Enri9DPi1uxMnHhhRtwIPf-RK2-Hfqr3kXC92_tf45MTE7LQIgMG9TtxG05OcOxeK1F2dWN6P-ZmaNWADz7e5pPCkUJjOoPP32Iadbj466Wn9jBrD_I7y1sHnV4gFF5MWBF7y98HG60Kiw3NAvMSJDlDb4Qpg3Iwg1fyC_xcC2BIkW5d44gHFXLQOaLzb7PHcs7D2uflHy4Tsz2Iaov7xGWL1cGhBwBbG39wETLhrRdm0Q20JQw8kS3aA0ItCcGQzsTvAG8dnqScVdLDxDdPZBIsbQaWzFxBTWTREvxRg75VOo407VuhYB73b1ThxQ-qyVBQoqJHidPS41p82kZva2XZB-cuXeKm4YbSgFq4ItxPauIQAmG5KjvP7xR3JUWpe9-LHqcf2fxDpWsPblIfjtOx5KaGXZk_SasPsg7ktxPRtalyDXrMMJttaHtKC88HrUHBoyP5K1U1TwOobZjf3Jbq3HSAsC3lXoL1T81q6QowD1GJ_J7XmhfZ_weRcZNKjxMvP0ji9O2prObxPlW9ZX4uwV8fU6gUGmaC2BRGkYPNAdX-UAVSXno7vVN4OtOUq2pzuRZqP59fq3SZr9PZwxODaHLC7lC2ZU9bJoM8sXU8ErfQLPkjUjouQL1C5Ax5jupeNyzzbo2LyZfmxFiwYdMS_LRqs5e7pLy0cV8oZNmdh7oD2noUc3DrGmOBz0cyVfGV1bhg4zIrV11vRE9yHle2wCm47TYK_HlGVad3nAVORelWAjCDW9R0JFRSA64Rh7PNHAWH_99uAiFzgPxvP95it80ibKp87VfNUa7a7Imxi3o5Qht3UC6rX8pAempCbPQcakhUrPoTVob7MxJyQjpKrLOmOpKcwWmYge7ePw6GuFQ5489gTLKO1TL8Jpn6Pw9BKmO3_c3exd-Nyr0j5LSyOWHPdouE_8z7M2-lNoIzrN7nadyYt12gi4E1kvzo2eQoGSFerXaDEVW6XO1ymKLOA9HLF2GEJvX5ht3j-ye0_N62d-g1h3uhTAqO8x4Jj7jKspbrbrKJUZUHO3OyJX4Rott8dFxAxcc61hwsb2AS_L9bhoERRD3KoLocd70OKi9KQXF2qHfT4rYehzc7y5caTCTVm_tcj6IYX2QtvX4O_BiLwt4yGDPMjNoiAO7ULA0gKOuzIV7F-W49vt4pdhVithGZGgVZhJc7v8H7ARusrQdilt5fXWpylpo5FuOnRYLDCfzSIBYQnN5fsK1DAZoxRC8H0NfiYQ8X8slLykWSXE2tKYYwXulGTt_tDkfjN04_79uKaO1LbAnKF5u9Qw6RY7g7hIsrtnPf2xQFktu_UZKTQoBzwazIXkEBNQloLA2q8Dc2wyfLLdPF-A0N0Ym3aWaAQvntwUxEWgzmdN-NXeBvMh8plxIK8zEtDolr8xP9bpqhoi2U9_cTF0RBhRzyfcjKxDJBcGLhncN0yomU1Xdg9JFdCCE1cc2KtU57NZJ9_gk8KEPEYsITHrdVsHaP5XZ4ILvBLPI8CED93tws2WojUV56u6zccslKIqiLu1jjnbmqluROZzehwe0enBKSZbRlL48OJkMGKf5Gw3xJxYzBgVs4k8AICZ6Agk3810e3h0xvI6K0vH1e5zzbeSb4U_YwcQhooKH0fFNSIV7J_NKGsgejqLzfbn33iYdCC8hW8Ad_G6p3K7by6v3JLnUkv_PTjZHTY8kGTMc7EMTmceRX_AuVDDPUDuVxW0AvJUhSanYnoI-5h6-kJ2wK6985io2DFUed5QmOQB1IKRLKemf0NT49LmhvjjKJymTzYsvWm2Ifi8QIAMlc3RKBWO5DpL3vfmnJ8MoqVYJDrVALjpqpNB0y5UhghbaOhSJyEG-g8Rg-7fBvZ_zhmeCeXmci5UumDNpChDu-J9cX_eC0KyyJycAVh3eUp_2o8ZdHjiHywNSpW4HOg3zqYz9wcqJKnkoZlmxbTVCJFnWFBS8MIMn2cy9ZdNzkqm4n0hb7Tq1FKbIKSXzOCtE1UzqtmufRNST_8pZeSo0oZZXTiCm1TDhJ9dPvRHm7VrzMxRbPnCy_1OhY2dXPoFFG9jI3n10CFzyOHkXJ-56tpnebeBcYercTimz8B9xzowkspy69wLp7om1-fmcdJ_AqOlq5n2yruo7E\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-681914266e1df3-06195209','','','2025-05-05 19:40:22','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43143',0,'cd-form-entry','',0),(43144,0,'2025-05-06 05:31:54','2025-05-06 05:31:54','{\"firstname\":\"Dia\",\"lastname\":\"Giles\",\"email\":\"dia.giles@gmx.com\",\"contactnumber\":\"07842190364\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7lrebadfrI43SIr6ukGWuVLCPvzmS_wGycZ6wKaBaA387lL28DMuR7xlXudMZThy-SatfYM3voXfSHnN26aDz1OsrjTUkG9q3ccCDSiZWfLpg9IY6SBUFlmNQpn_J_rOFZdWKLEfPfsTvlBhiFGJGq-8WXuSiMCKE_sPaGsUmmOotV3hDVOWJbOywTjTinCsqwzqJFGPiHmV3u5SjhuTXVQLf38z575_jx-BC-rUOWaZr6atlvgdZBiaCYHIM_ozQxff2EfzJL-EykvYAluTxryoCqBm1IBY8BlZKveysRQSpz_uBEeIoeUTlnx7TGNSFLNlXIzbBnmiEZnVxS0zKr66caNa8oK2oRlydqwhbVOT4LCiddCVp53_8wClpxyUd2H2YaQQFvJYkLluJciaMPiYfRCj-u688U6pvCXzM_y1wFyLvmV16AFMBVgCB2XNZHEEt9HJ0sEKJd_VUO_gMfG1zaHTzqPZso1__TVOrr3CM7TDJa1RUZtAYvdatHtfnxtb3us41aCh0E0MFNRgVi6iEkLBgnkfUWoMHFKRlzMCVoPC0h2C5Qyk9fq71Cq8VEdwEyJKvt1TwW33jWYgYENDgc8QUXtZ9jO8uAsW-9wJ6XZoZY07W1QXPodVNiPobk77PtdM-YjVegroiFUvbV3xl-0vFCbXvrnbLjIBlFQm09FuwjDcXQ42itiF3BhJHPQnKC-71mrTPBbEY426_Wg1Fe1qWHHDa8-NAUi297s1hDIIYicFOsaO8iHI83bj0X77gMvv3Ti_yhRVupjWiWF0r_DLf2qFCzLm0t6FqEm1n9XNRMWOMwwooOQ1IiGpazPlMZ4vyw0hb6WkvWRRJaRXE96vEBJT26S1ofQTsX_-dZbd1YVryEBfkTF0pz1KzmWNIoA_pMFRbuBLKt4o0fEMRgFWVUfX6kQXnsAEUckMLcQV7d3Nc8J29WuwCzDTsSPkoGvwK0gYF1-fBLHMbfj7XG-M7bG269PhrvVJgUbB5mInfAq0WleToqTgOcBl3s7MptcsqUFN-rjWDog2e474tdtMlIfbAZFenk0HUIybGYQK0xWyUdEHcL2dI-8S63f6k4icwJ3pvxH46DhiN7q7GEXN972d_GQsiR4IxopnY6Z2D1Pk2KiOWHEDpWQPBLq6BfCWkvUu-NmTbDMz6qINRyPESjQFW8sjNS41UOer41lAblPZ9jVlFvQjw8sjEJD5ZNGLvhcdqJRcsUkWgZCltkZWnuFV48gWGS1gnko1ki1wRdUnwF-O5JVcJwrjJKMR6LUm2tzCpl7Qro6SQebySHkKF-SSSH2ZRavtBqz0OkEU3cJBh24LMFxNszRo0ejBXSXVyRqMmt5a6KlzNPn0ASbEv1Tai0HckHsPXjI24WQ4WCJOirn6WaRIZGRlAaowHJr0u_w-QstRIuMFIiy7U4KV1eLFGwEm6gmmhuFKq2eQom-d1gA0HIVkmCcC9H88OSq50V-tEIlqLHJDZpUaOHqGhlGEy_85wHOzkqgjiJPDquLqLbwA6dOJWkxZuIjP6YGUfD3u2OgycHXPVLTrzenT_ze_MvmjnlENEExMrejJMfRSEfKdHgcbkWnWI0j1XM8uEQ8Hc9NGvfVUTBNa--3MAP6lRUh9eWlpBdrEM8y9_Z1grsfBo5n1SwQTzaXn9_CB30CP8x1e9mTxeRON14J_MkJimx5mKEgCgRgaSYvEKhkPwy8eNDDkNFo8xxqV2NR-x5v407CN-q-RRGxkJeBiFK5BgCtmfGNENtG769V2t0QudtXnA5c0yOFzhbFn0SyhKwkk59CVnIYNQ3Z_uXsjqKSzL6Zz5Pk3Ohbm5j8h9RWHUNMAIHRRNlIeyFCvMulsdAhjzMcg0UvkGAgH3mlKoEnOVWjgfZ6ZP7ue0oxPAb6t-jJ5x05HkQqTcegQSDxPPNfGtmnTU3w8rBwxlhkpzkhmgrQr-uIugo55MwG93zBYGSR5y6Bl3xcMQQHcjoDA20QDFlB6S2YiMB2xvbesCLuEa-q44Y-kYTjU505Pax2tmDnFsUo2VqCeHfAf-xoLfLU3e0z0xSKAaAyl9XQvFSiBCx6549MHoD4W1uRPU6g_JEOK_xBdOJFbcdpzpXFvgmnp1HlwbTpqoTDprTB-EojGGWgCn55qS5Jjttun-VrF_QbCXhYJqGA7l1lO6X\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68199eca25c3e2.28460596','','','2025-05-06 05:31:54','2025-05-06 05:31:54','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68199eca25c3e2.28460596',0,'cd-form-entry','',0),(43145,0,'2025-05-06 05:33:49','2025-05-06 05:33:49','{\"email\":\"dia.giles@gmx.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"TN13 3NU\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7WXh4s1x47db5eUchzNy5bf4bUkWMqyrW4GKztT8qoCpeZ3cH6GyTwz0bsTGy2XLFQDUwuvrQ3FlXjBPa29teuY_U48sN-NJYVespM-a5PPonVC25ICjp3d2mVR6FeDIYpRWlX42SkQYdoX12B0IY3tzOESu6fPpPqQZUtiArJc1S4jQTRIF30FsFRLWNUMCk_TkKBl4blxVF8Q-EkeaFKE1q9dJmyleYSyfOuBMoaQGt7zuR_oauZE4nNLtDl4EB92zCW_sHr04APleIBI9ASCHRAU6ZJ_K68onvRWgdTHPpzEIDRaahwGtAHM0i3sz5auAsrMutfPeT1QUrAx2bl7eCjU6wg6iTLMXiDqyWYQZAR20hIuzUXFXJVmFkWmyvy1Sxv6kQ62ZwfAMVKnCcQKrbnAPo8iPr8l4Ron7I5Lg1AqsRffGexH4CMaSO31BzG_jm096cdrxy5EnRJxoOY-KdlSs8cUE3-Qz5pYxOPkRoKIv_CTIP6cG7jbdVz4ampk0XZ38dD3i80H_7eFOIxpkJz8Ks4d4UtB0_EwwkxzzVReqIxtKkhfU5uCppwYuP7aE5xSp0bvvI9MWicH6sYxTapyLVGmKCze2umq7x88P01TCJGxaIWHpDnRBn5oKp8OFqfrZi8__xC4crRb8hLZh5ujYDoRjOcnrw0-zFJoGOhl4gEfVe6j8lZSIPZmr_XZA22Czhs9jimcZ7j-h95Cdh9UtPtfDJzNacsrEK42KCPFq7_y_3pnezG1UMEfZo_G3ZtVqoQXuP6t09ZK98jBUU_LygNbmG-DGpoKzmYsrvRZqypCHiz3L5Sx7QDyORA6_WpGuQNcKOPSqSIeYyasw1-CrBERLoZXSMfMuyW5wpTMNff3rh6_ZdaCegsXYZy9RXoTAWNi74NdZUZNTbph76nuyEU-D0xM86-NSItoRtVOiu0NlaWSgGJ6zfxrgeYsWcUVhqs3S2sUD-sTDVl7wYunMF0Cf9DwExu48t8PagtkgLRpw_cz4IZDLPlTFIoTqjOF4aVzfNwOgUnz6VI4mmLZiD9tJNaRUkcSzRGobCQ0osCs2NtpY6tIk3PBjfZhmR_n7ml9C2q4DYdcke3wThF324J-gfPBz2YXH8LvjSY66gSqcj1IMuPcnfZ7Ra5KdE_jEdQZbAj41FsHlX2r23KXGXYI9VQ7w8yZZPbtdtSUuvUcXt5Wlu9an8fNhpNkw9ATMRT6weICoVzvEPWA4Do0ZPKk5P-V9-Qkb7RlWOTEbNkaEg0GfrjsUa4Ev9GLPXsPQ-REdpIkhPSfxPxCJbj5QQGuleqfJ3pDhCjGxXRhCfR9Q_VaF0rIlp-eRAJCJ7EFiVnllLUnb_A1EEbVc_W9HQV-ArCQZOMYXKkXI4wlR2DRpAX2ZUEpBc1qIYQiIKBaEkP77xpRK5v05tBYnj5HlKw1SC-hV8oCu5w2vFc6WJ4DMwaLMvzfggakCL4M2ZG00HHHl8vsy7g2QkVomfVQVnTVhvhFC6TdXZBo-4XZN5IOwhsodLj-34VMhZcIbOl9628Brbb--2OleN0Qli5_-7lcqCpNGcHLMfxLBCUU1y9WC8U1UTikR6ea4Gz1dCaVF08TNia1M-t9Uf4wWPA4fKcvp5sq-TQPT8a9_vdpRkAunDd1u_KUROpfgFs81anvMFAK3A5kohnA-Q_vGzcJh-op0xLiEWQWbswkzWgsj48CMyhd_Uyn7sOlyMQWwz8KQS1sLTYuguYbHlGxY7iCb6PlTqGegaEXPj-U_sujkGq53GtKT0YriaOcrMyhjuaXuNoKB3yNDzE44W0I7HtwPB5BK7LviUJ4fccS72EwKsXp7J3MNoEDARC6ik2ruqK40FG9NP_tLm0gqhJyJoz8saU4pjz0bBaS6ANFKxIgBHBoldFza7mWJfF51lnPRwT5cWxqhvzdM3EA4fARIfoiHH4b8paKZ2gmcnILYOddXfIvHDnbrvaowxTw2ZGkcBNW88_r8EN3X3Aen2UKMfghwlieI8VbAQR3NknPI51y92YjH-_8af4InGspvLn54RWENuR-4X3gkba3CGyfcyuVsy48bJHQZIiY-SWdarmZ1sMT8eA-dHsiD-hGkZj9qDww6tOxldkepu2bgWTU2PzKpI5XY8lUor56gk4m91yN6xOF4-ge10oUrdhCGAfn_-E8QHYgBNL7uvLATZWJAKYBw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\",\"childrenordependants\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68199f01586268-74315353','','','2025-05-06 05:33:49','2025-05-06 05:33:49','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43145',0,'cd-form-entry','',0),(43146,0,'2025-05-06 05:34:37','2025-05-06 05:34:37','{\"firstname\":\"Dia\",\"lastname\":\"Giles\",\"email\":\"dia.giles@gmx.com\",\"contactnumber\":\"07842190364\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6klW2jHwq-Itj3iS_crBPN9sZLR7u8uMtv3djRQUeCUh7ZZ843kW3i91HViXqmIC7E8reA-CJJ8nOQiMlJYay_ug9KULz60xdLNz2MO3fhSGfppVv_-K_j-iiGtO2ZRoP1ydg1foTJs2eJ03Cpu2GbmA0z__qm0izjRCNVPFnSJp3biITNV3AbVoegGkXImuv9KI5YgffVTxdxuT8wwjMW1R1hOfypL05K2l8pBvRYszQbMRGqmaRr7PmMInF5RTTGa-XvjbgEiUjCRL3eURSlEPBPa_L1y_pyXK7BDDN1iwQ5lXdIc76ocS6U2hsotObAhwtgM4pwGEkIDlSYc2tQ_ad8RwgR8Nr0iLjBY2hlkNAG7BmdaWYyCV4GS36w6EkbdTvpt6V90NHxypijhDQlWAipsQEmaKtVU5ZVipU-_oLcCk-hBGtZGCQmgqpZpIaf8COGgNxmsLsVGOYGkeIHcXSviFFMrgSCMnALhTIrrlw9MxfXMQT7ik5Iq9Qakk6qvLSwWv3SGCa9kKK99-Fky93shkK_wz04KsFmhPYfcX-Ky5eGprRthqfSnkznCeJefEpiZgKbBD8woebcqDiOaf05zCPOePkbtTj7dOe5wKaVQs9oqxKqlg6VTN9xFhhDMG7l33YYZJXokzSgx0l63u5-Py8jRyqREE1wIZ7ty_was5x7ymdnIebRbfe8eLb6McORBkwb5TNqcVk-dvJD18N2WdyasEaNIdO6sdpqEICOWpKY2bGXLWQNK5bLXjpIcgN4dw510iVi5NL0E6YMDyC_TG-zzFSDAWyNySFFkSuGF4_necSO-cicMMgOroZZhM_3eTYsuzs-UOTkGu8Lsqo6SlX60aKVnmbB96UB5SO93bySskxI74mdHfR4shWRmaUQtpOdaneiqPc8UP5I4qZ4me-Rj_BiqDZ-VAiwVXBW5wRRIkxfIip7o_CvcZqIucT9tWnrOluQ7fVq38tf_ZPw_g_tD7MteqtBb0CQuvaX7wp0oT8HDO7JXuKG4QR3b0haB7eFTiZUXwGUJglEWwm0A3Wci0-eRULpOUMDdPvsBuy-esYl99qSQMDG2mK9apH3Nz2OT6JRt5r3kcgHyC9NzICo8_Jlq86hV7Adl5vR-QRkzVHNbKythAg8Oyu76PglUDA9k3wC4E8kMyRJppZ9HdH56bP_Ds4Rop4AH1MEjHCTAONu0XOy5xElXqprWlNGtQcKTicd6Pt3edolnFB0VACYQiEUg5eZZq6ScMiEQi3rx8C155FKSXKpulr2tGQnVCztnD3-D3mLVsfuvcFGL58O6bkVAPRe92LvWBUbHfsuv8W0dl4tiYL2ccAjPt2YYOOhfn0VkrdkteS1ev6JOShVJx9SKhKUEq9psqPTySV7oCizfpaywGoecoRs7m-FNSlSuxPyNVkJKw96ikQ5Nw2D6niWNEpp6_FsvCL4s_FJV2XJPq8T7xGYB2k2yKKQFl4boPTdGKWaZLG2hbbM2YHYSsuaBf820REkIGfSsw6GYTkHORN2cfckgK4htllJqg-WFnLxOswHxx16u_upq6M9k_ZEC-lKhpM_3Gt6F9T-oVoj7gD_w53FuvA_qAayuXsIrmRr6LUwRWeJ4-qQG0yiNZAMlp0fk0EJhm6h-ljO2Ayb2GysPPp5OSm952ujo2uLq2AsU7a7fwhSbQOSqmLpykMV6MyMyyw-NhDYciB7hdlmtxIJKN28hMzYrKATZccLLtUoN_KRNlS27dZO_owr1M6j68z3sUH2UWbZBQYzGUjt3HI5zMMYeFF6risvmB-6GfUqD7hebLlwpcu2DEv8TSp2R-FpHvsFmGu-181UiBSUgDO4VtySGcJyfd9yfX8QC5NscpZ-HOFAxjBKJ1a8JvywruelY9NkxNlpEKX2LgDHygRlCqYVQ-S1ru5_SJDYzGZVbMIDOT5N2AkeWI7zkiSe_G0QTirAhZKancgJQwG7AKtBBlwrFM_GpkXtvUZzmoajm-c3Um7cHt2MjPeF7RB4fPGwa_xHeuf6PJrx5NNmeWp8H7E_RVMxhiBX6UPGK61A77PoP_XPJSZdWnUJlVIrnveliOQynqqjxtrFAaT2YOIzTGHirwfPR3kTAdMdf8_LvgSBaIveT5IzaeAGvKtos1npvIen0TSrgOU9AycFfWmFJoGjiXQaEZ3R35ZYDPxyCElVp5is4D2eXw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68199f6dea1da3.82044674','','','2025-05-06 05:34:37','2025-05-06 05:34:37','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68199f6dea1da3.82044674',0,'cd-form-entry','',0),(43147,0,'2025-05-06 09:48:37','2025-05-06 09:48:37','{\"firstname\":\"Laura\",\"lastname\":\"Bailey\",\"email\":\"topdog@bogdogrunning.co.uk\",\"contactnumber\":\"07710957018\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/in-person-cpd-courses/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6QeBU6oJ3klkohoc6-nqnOZkdVKjawTgR7Fkt6q9AcXueJJJM5CJj1-TbUQqIKFxKHqaWJi7lLKfEQWByg8VLDeroD9CcUFca3TfOh2bQwC3hLETJtqeser-sWXxUopn7F9AenAoxr1QhVD5A53UVK77LOqYgovwpcO2XSrYzniUiABiZcI86TGxUfo57wTv0vS0cWi0532lgz72qnP6_LG0uhKQ2D-bCUXieo95V1QXyu0RP5Yg7-ySxRkoDnr4JRfu2A9BX6BYTR09xUfhVkWhbl22SZiIayEsxIgiDAXCpZIXK5-G7e7_EmIGkzHRNfQMBm4XBgRw0mMDQApYPUGbHercgrQsnesxHh_SjBxXBYJJZjvUaCDlDQW8Su481Er-2JPV5hp02hnOH9XZLsXSt2ucPl-AHYY2EDM6VlR2v_epvGbvCar4ZbmV4wOCnD3SKlZogWBAAf4YwQplmAdyL47DPCjtrlsSsdlQzjOq0vo9YIPyODjhYTI83AqMPBQ4OfGjSIq0PF3ZGAlB2EXwMyTufJAqMR-XudmiwuxlC-FRyCsBdQb_gp06o06WV5XqYQde1VuZFb7lC_bjOAadauBKSPi55IYWjxzCw8f1ppsQzfBg7z-Z9F5ccT4gCGuq1LkJ3VBb8WQzWFwVBLxhBahFnVPkEzzjuA-kCEJ83ZP2nMpAjunboTBnH4L--tTaS0MP9XdKDX288r-lAAbEr6z0K90T3IGdGCynjDFUdOmg6mJOzCUbZeyYg2CcdAy6sdNlXP4-rhdAnXqrqVBDLyxbAAGEIRVJreBltw56OdruSBe8g-SScS5PM2pCVn54K3aozCdSCkHWb1s_VXRxH-hIpqoqG58Ql_TknV35ttc0kaGk9Ao3a43FZ2a64D7yQ4kIHEsA8psBgFKFtfEhXO7xmlo3fxdsQkrZgRSuI1v99N6GpUfKS12_4gYJYyk0jTmAMo_hswc4CPFx_S6tTSzFU6kpSM1iua4b8COPBZe7BHBY_81fRSblRT5_1aCn492J1vgTlmrFzKhirUP5FcNNkUBPJ8J6XSU-vui4m_Tp5ZMXrKX7SpFWJpbB4Hy5QU2XY-NQn2oIWvtHhN8t04kUQC96G3oNRI4_nQZKAB0-3d0iWEu3Td6FFJ-bmEHAp1JgaLPXSgDLrsR4PcL2y9hhXKN-sNiBVtzI8ZMazEX1AS9LJ3_gg1yfqsV-Sm3T8I1GD9nbWE2_1MAXW3htbuTRNG0rwKV7XqqVNL0FGkxeGhiCSQKW0uEklCdmAqt14R2sMS8zmTTT26rsa4SO7A4ml8_AuKQa2JEcKUlUyTPiTh1SQNuRgOc3_lBcHKrNSo_H7EFxXHAVk-Ffbal1MeGcxUXieeSFr7cJdqXoTTtHbbTLXc43YoRY7uXP4N3MW_sptWeifJJ4vff2c4FtLHqapM9qyJslXdyuiSzBhVYXDfgX4Q2rF73Hvf3o0wxfQahd8XtzaiQWsWiRU9nJdoqsSORKQQj9cNEFk4ULLKnV38TnIiONwkshqdc3dG5JgUUefWYWyK-IrwN4uXn_qdhbz7ETbHw0z9uoU8PefglRN_9ot3NJF_8dluBdahDoN-hibt4US_53joBjqyOucbWb263X8hADws_JLzDxdvx_gTkrkwYmvAUcAX0DPBY1oVea04u8P95dClv_ik6G-TRf9o0bviJp6V-6uBPnRwnmIxh3Y2oGtrYa6uxZMJkarSFKgK8_8rHAIlpgyJ-BrrPAv7BVcf-ly3Ln87guyRvMjIDEroNgfwHedCSUKbi14APwI0jPSLt2trNrNN6AF4oxUdIWXuczTapwmm5HsVV3Alr9LWJ754KcgrYU5rGe4fQPWkNiJ7m-aEKXJtxrt-65-N9Bpgbm5PdMqK_JiT4llbKlv9l_WKu4fHlupZX0b-mNmAaFjW5mYErNxVmYo6-FsS0FORpj5mBO7BW4gp_z5RG38C2JphwUDV2b_zBTNx16H3jxouTGAqCnhzQJGqul8c0iWmsSAMY3WarFrvjbBfwlRVGvJRfLPo_fs7YJ4YQlWjdt2UcR0XXeDZoS69U-1GDHKGAZMxNWeMf0ZcjIk6CYhIn04fdeZtQSk58h28mdy-srHju7k4fzqM-NXj7-AgyC5NaKiFVvvazx0_R64\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6819daf5de2cb8.91823928','','','2025-05-06 09:48:37','2025-05-06 09:48:37','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6819daf5de2cb8.91823928',0,'cd-form-entry','',0),(43148,0,'2025-05-06 19:59:00','2025-05-06 19:59:00','{\"firstname\":\"Isabel\",\"lastname\":\"Benjamin\",\"email\":\"isabelbenjamin97@gmail.com\",\"contactnumber\":\"07785538484\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6u8HVBoKMMPWCQTpfEY71qvN&amp;gclid=Cj0KCQjw5ubABhDIARIsAHMighY3bpNmewT2A-D8uX6gXkY_YDtVH42k4cbdmFD7ygbpls1SQQpgkOIaAtN0EALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5weH6rbQeiF6O1V338-weM1b7mg0sADi5ZhYqyuKl9qBLdk4SnTchKxJBfM2zJKjm_QOgv6lngA3NOiHpI-vylmRJ6clT5bbuPpP3dutut13fa3Zk9XLx4_Q9yDKcaMn9QwpJ3SDHOKuaQAbBn-rb8HEDSYUVKUiuN0qfk95h6IfqFVo98vaW4hhrrU5Ydyd3OFTe4VuHkJ1JerdCrpans8oCRoY0KmKzgbXEXW1cPU0Crc_Grl28YQ-zvUHA14qHSOekpp21BQfp_I0dRGCjERA1qV455raELS3wcXrK4X2ldnklQYaSVoMNVvqpIs1ODMkMuKz1X6wcZUP9SqS36BDvlQRVPIHtPU_3L34HwD3N3JdbsAwewR7ivVxkIMSWnX7nf8K8llSCt6IwaMKG5Lk6daf_GIY4u_i9jAwgbWa3BUdzbcQ6doxUayTdfi_TeB-bh_RGPQ6iuPV8LTtKpVV_lp1C4K50KcC7fOOuOnexgafkc2nmVhPhjtJ88Pn-bW-FIJjZd7SRRA59pA5tspbsRU6HrMuu1tlNHu5hRcpv15VJnEHU_S2IDWsJDHYl_ZNJNWEGjcwAUjbx5ZbAMawqIrLeDNiTc1uBv6tTqsx3Hqx2cW7BtvWLJwYLX7HcEd1WCxyFFDoNlzkOqpAE9qqi3XYXiCIvfPhuAkznxVAsm3DaSLDTt0E-CxDwmq1rw6gIC2TWR8jGoX3O_t9646YNDURc7assJ-NiulAjjx8LGZ8GqNQsr7xHIE8Gu_IxfExGwBLqj52oMToHlsSn6ND80zkfmdvRZyKiHPyDfMjud4ZTMoC8xZf5VX7p3FM3r5m7jNbwfglw3z6flU8UjnudcvVwWziyyFoMGOk_8V_pop5-HTMIibN6HNe1H6xOghBg04drZygYZIy6vlahEOJSMo1nedquSUBku9JxdyPsvS9JUA0evEUozWGmoMjZVZs5itmeObBqNCA47bSQcHcQmmKVadqIPC8VnZoabfIQLo5TLdjO51GICC1qoIA433ajh2A4-4GEbeC8Ok6TGjjz_6yirzTLT_aJ3_QN4pTfONHmhG3t3aSdE-URXRHTsTRE9DvV4ekpJAZU6jEy236y15PTKPiPR_17rRwlp7j_6LfdsrNOWNnXnalNJdFGPtgzaeAN6la9AVETCVqvS-SeEvmiBFDlFqdfobXlCP0HMbp4mnlB04IkNDLYz-_NYZXLqUALIRWgOLm8j_YSm0MXPlQTahNYO8pwj6YZyDwyg8Q6vAmtH_8obxxqBmZSp1mbUueu5pNca14_EdWCZhag9WCBNK_4lSULviMPY6KP_4xCUYz9fKRLTA_yH2vKQZUfMGDYuoV_koH0GAVt8aW8lNJ4ysO9ZfPvWF-7rIhxI0E4lBip82Dq3S3jWHxXIZIhcxAEbJ84nLhLxpvgG5mq_ZoYW2jX9HozAUObKmThoka7uzgIHVKxOqXM9NOVWRmIPAxg1KaX_a1C7lLhnkPSskqoM_scliNqbeXPIOxxA08QLsNJiRBv7Xl7mbSmw37M3n10xXFNSJPOcmT8hKviO56m9rQqMUmQRMtBfUS_v393TFCu_2YFFi8mnsrzsZ9UyzDv4y4-qPmEPjb4SGarW7ACzyOi2oin5Dmuu6jtlmPRRfSZVd-7fAXIB1NMAOOR6sARRezvW95QkUEZuMZACq-PjS8sucOKdVkGaM_M7SFD76gObwtLop3hULY5rM5OVhMMlUIDne5JdsAzAEVu1b42KJSda0rZZBLIxtU8GrRrIu9ZAshWiZRgF_c2rQJpMj8C6pRuJ3EE9B3KBcFB38G00yiY5T_r-sNSL8A_c-477HOYsig1FlYSKa3VxsyJQ6nxQcr_KeG5TiFGp3QRgGTO9CL7FbU7aBydgnr0LHiojjY_SOUi_V0Q23UWlPAP05fG9NIE5EvPFENW0iKO8l0OktbqX5soEQKw3aMmibPuGmCzYl-vdKu-Mzs0jegwSwxiq4ZHy__CVLnVV2gG1bbObypxP36DXvWfd8gTYJKjfodsF5KZvdrnFoLtltjNY_244qWWS9rH34Py4iSgBQVFnXz36UBdDuNdsUGjTmuDV_Ca-KrCa6sPMgT5LsbiC5HZjCfyfBNTvwcUiF3toSuKYMorE8hmUHFLo6hFTVJExecM7EUXdPbf6sbe1aippfRVyZ23yjm1KCD6yk91Wjwm4cb6pzdx2IIppeCx3VAhW04vpZkgi1EMmrX9ZCOREB7nVL3dSrUsqQghl3xYTvhqXdNXtbczstI-iuerDSrHOf_-F3zA4zlBli_fXEV-Y2j_eou36rOubG4mFpqXGBe12g52L2Si8_gJji0urvKLXv1FRFXDZjdHUXu_pmZzW\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681a6a04d635a6.19882492','','','2025-05-06 19:59:00','2025-05-06 19:59:00','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681a6a04d635a6.19882492',0,'cd-form-entry','',0),(43149,0,'2025-05-07 11:09:27','2025-05-07 11:09:27','{\"firstname\":\"Evie\",\"lastname\":\"Anderson\",\"email\":\"vasquoy@hotmail.com\",\"contactnumber\":\"07759843884\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMI-O6E6JuRjQMVGZlQBh2BNDlOEAAYASAAEgLTxvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7iGkRQmIEVx7cEPuIXrVK49v8QHCmrQoE1Sq-DZFBu3vQ6RjvI3eYYFJ5pnrJljAEk5AN1d8eQsOA1W56bH-Y-unxr17FFkuvHxfzPyk96xXUS5c7pOq88UDkBV359aXmvjrxSwmHJIY0G_d30dJ66wO-P42UdrH-j-8Wcml1aPm8f0aUQ4Kw2EYqG1vGt0XyK2n-3Em8NFec0spizPg8L6MCwb1uozugGYEe0m0GRuFyESutcXmQvWhkr4tLZjFmjoJtARJ3aJiN43NofSOQUyWNBDXwhfylJ9uB_p6kB8v4aZ19kLeDTrKUriPHTUIZ1e3H0oaOG_8JA_vOac9J_9vTgGdcvOO3kvJncYYi1HamfnDN9yrZg5EZrjRS4kGIknkl-fmxpBoEsZtmQCKifMovnGWTE6NejCymC6LY8unD5LJrQhUcsIKh0kvQ1V7NqzWB_XUV0W5rWH6HfKwC23XUMFVgXglMgkyS9insUDSygm2CL1Jv9w23JwcEvCZNWprU-hT2DYn9AY98E6Gfw3lWwcGLKaPBXVhveH4NmAN8grIfJfiaWOg-w9dULjmyojWnJKY7pgAIS7Vjqmv-4Di-vvoGBf3eEE_Ml-EVATGLzaBgy4cNm5PYGKcbOYRO-BjVsAW7We75PfP4FYNGN1cy41T9aoIHxtYBW7JgkDA7qjxGi4d22OOIuAvRqv4LIHUNtQLyYuoxhgcPtGMvrs71liGVqpZhG3IB7tVfdun4zn2vpftVJ7XVL0F3QdP9B2GaQE-nNJewy5ahlRjwa2QxN6bec2UfhGp92BqsKdNy3CHdWt8OxpA9bUpzJ_TZcHjB4AhBOGvBLD64dIzsVmKlfHVzqi-WEyPAiCDVqk9OXnF8iM0JaFGghLG2NMfr-4jrcWsWZBW5pS_TVZOWLWLyre4g2wvzu87YP38CVU4WH5I9dKSI7fhcSeE7RxwB_QWvfo4iDQ8MeA6ZtbfzPmGeynBNN6FDSHhDoD6kgf1rnlKTNBdJb4qcJLIUCRuHZTrfvkfmyPBenJ0LBL8z_K8kPEhPX-Ks-Xc3IpMEkOae0RHgyzFSt5GMv_dsoqcvzAtQqOBbubl8Gf0Uk9uk0o0DJeE7UuNjROBBZYTzk-idd3zFEHfqrkgGDqZieXqJM-heBra_GFFatxgTvh05J8r0rlywgAtsygcGlDcJKWPmmt3mSpQMhXYgcNGXOHU_taKsGAluqeBNI5xN_E12JIUQPCDvewdF3oqzRrc91kCaLUkJyak1F5avhZWPyGKMohVjkAbqOeVffvHBjVjCTqJlChTHWWnkt_KyG5ZvkNquIn07SEJCEmEJynng818iTnRdldoCU4yjuoXPMKbU4EWTGDOtga_19hIaISUf5ozjaqmWgSL0Fs5-eeBfjTJ9iUqZ6S7_rbHHli-7oCtZxvJZMeuvxGBJsEP84Mm7BjgMLPX0AxSqR0NlVdFstybdV7N4Y7a_cXCY4m0G_HbEWSuGch_Obx9vn6P2NlXqKrUONWIuGEY0jvzww7Yeo44h_ib5MBqBBLyLAYSA_rRoNqTtYlRBdpKY1KsehqKLSMpJ8owUjB4HS8POsYT5ZE3sVf1b-vCibDHRHUtmQGKtFEDfUD-0enn57jg73m9aH6AtVI7-GF-M7albsoVcOYgvEls1-IfD8D5x32Cdo3jpPTq6sWJ3B4OMf1W1LEjUIrdxiFpNrxoc94nev9lCCZK0OI8b76sXIvCEtbVsrNnmysgBRHNykd_0FI3oE-Ve5GUkT6JCnWKiCjsaCMT0hzQddyx4mC8gJ5ZOWHWcbqO4pQZQ9GKv_0KCf4nLL7XimyEg4Yn4KyXDFvyzeYt4SBdWGgdeQdPlqJOrYJsV_mH1MgFEgYnucZhC75_oSoeSvrPyi7JhWiXDLi8FI9p8Xp7fAm7c5Y8wfCP-KJfY4mUzsEK5_PST301j5eevQIBmAZuOmZi3V5YrtfFC-HvCt3NBDKanaYr2Ys5s2EYOOQOfIHhABKt_iXsJe2apZGO5pCtR6mAwbwenMJ9EriNhivFMoubgC\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681b3f67692054.22774740','','','2025-05-07 11:09:27','2025-05-07 11:09:27','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681b3f67692054.22774740',0,'cd-form-entry','',0),(43151,0,'2025-05-07 12:46:58','2025-05-07 12:46:58','{\"firstname\":\"Charlotte\",\"lastname\":\"Manners\",\"email\":\"charlotte_manners@hotmail.com\",\"contactnumber\":\"07759774575\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6viKMGzJDhKoHHDl1AmdDI9-&amp;gclid=CjwKCAjwiezABhBZEiwAEbTPGDVqPG3z9FOvsTwfWOlE8-9XbEhX2J_ASrvuvih087aokUzt8JyeWxoCL78QAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7esRUuB83xtJPpnj9v6BvaSfOPY8ZLMG3tH943BhkL_NefcPUEkrIpx_oDu4dWaHctY2oOjTrRBvph93L9oy_e8niUjXtbi0uACL7ADgg7okEc0ouzTmyshaQMCxH_KV8rwrZdfkJ2fycEjp-DNficujjBAQ4vkQ04I82W5q2gLULmixlFQ0hcegEotX2sCb0eDlNGTfigTOvRXZ7U8ciAhuQMnSA31Qx2BVDFmMw8n-f86qv0hk14F3mmnVoLfH-Mg97xJoYMjP17W4ThPTHSy3lfthP41BHxYBOuOwRFw8lzODopMXROZU-8Bm3LSbuSRnbx1Rz6RaNAp537bAfw_T9C3SgyNiKt1i7irDTt2IwLSovj2uJFe3OIqTshHJi3qvia2VKFblRPV_diEzqIQTup0r0zrPpnMlGdK8v1Flho8xec8kgdMvUqQ8bVO-QtmeCzvtcBVJWw3WU15dyaMvEHsxzfel-PxA5JqkY5zXpm0ePMeBm6i8mFLbbbB0HRqnyItH6w4uQ9BpUBBDWycRzh1t7hCO5S6D6AUbn91QEX6umKdchhyIPWeVcgUZRuODDOXj6gDLFQifKXmZwy8Oya7F0KyVm1XLMHWyCcyqC0qjItZ-6rtB7006hf8WmBC7N8LNp9fsogwl9odAtTnMOTgfJUUokgoYxlbJ5-F0w6BeREW00g8JDGrOTJvYDqglxoZdPl35aYxgg_E7T_FtsYmsDwE9et9qyy0cYkGlNrNiSynAky-886SteI3VVlTSmcyWqP8toGK6hTkNwpl3lcUi0disjtLOl2u8BvEL2_BkWvrg0WZjL_JEF2hqGSkpwvteJmbq_jOAfAUK-c2_dCrcEcbUfxxVBXNuIMO61daMbIunadletJXgiRR2_KR7p_IxfU2xe6f5lUFflAkIqm_FUXHj_6RY0rA8gLl7RvNSZFjku0YDVdVn5jXKLwPLUUvxrAO4pZuiwFp6a9HcfY5o1cjz3GaXYYoV1q1s3TEUW0tpQ_bn0vwMvFlGlosXOQtVUQc7UoqowxeRjlYu_gohHfsm3_JUdspkxC3p9OS1JFegyG_XkS6y7LC9PTpOPP_LR5XLDU-bom8gaaM5ifI-jGy74aXtKY18souboQR0QtCX6j452XgZnAwPc0MCbKSkYHvVHRuoPEi7fRsoFF2Dh-1kiwcL_x16d2I4_EkSLIB25p4ljU81xPPl20XLe0xvf_P2hegJ1xu1k9G7UhsEjoG5aYkuOtn3eB_bLcCZ4-yA8YQppeElHPDbFF3JSUrr3pA3I-3IaW_cUxqidX0PsslKqnHGgUj_cnaZUVJxzyS7amRscGoC2BMXFlNugmSYxXA0iUKqeN4cDbaJBPjo9hcfZC8vl0dkGfU1sNZI78KR0ybTk2jykvVnbIU4UfuO7IpYw-A7M1k-g9mumhYZexyIwqL-jmuif93aT9vvN-yWA8kLpUTQ0uuQBx1Qty3cI1Zjm3Oggfzdv0NNQKPLqYcJMbCVp0_20UZDwa1fiBVssvCduH0ryeCvgG7sJ8OjxKzAxOYE1lLGdXa19zpqElW8PxIoYjN8m-EzrWBmo9Xminn_USmgGXcDlihNeRtHa7LhXdekhwwMbMFmdxUh6JahF4pFo3nPwpOKCvNXP8-0aprfyQByHB0qxFOTCFh_mLiqJWEDW2OM94BU4JCPZpSne3JYmdqBadGMZH50TGGEPvaUJuG7lVzvkfjW6tjJEEPI2EWITfq8d9ChmwSgvTrFWoyptIKRC2VdLjDiWcXpZ_U0TrYBaOEaccC-cJcPu4P6kX2zk5JN2D8727EY8XaENUqyzdKYKraVVXxTleXeUfIIn7T6Wxn_r_XUJ6MlMdjN64rD4gtJgK7eZ0baHv7cG5d8LYXYdQVpn9sGr029M7R-uCXGQlgcvWRUx8J-2Xw-aKp1bCEj89ataUgg3Wz1Pqi4bxsJqQOgBNML_G8EIPe-Kjw75f2Gzj04c-IMlZ_nm9SHr3Z6IvHrie_cWEiPG378u1By6bSQh3bK0_AyesGOtfSCtC48GTwMWCB87Gx_8lV6hUilxur2lrx4rXXaKimvbN6ksOKFcGCFs\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681b56421287c7.17249801','','','2025-05-07 12:46:58','2025-05-07 12:46:58','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681b56421287c7.17249801',0,'cd-form-entry','',0),(43152,0,'2025-05-07 12:48:25','2025-05-07 12:48:25','{\"firstname\":\"Karin\",\"lastname\":\"Viljoen\",\"email\":\"basilk@zsd.co.za\",\"contactnumber\":\"07386904902\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sv4HAT9RqOcvjd03SYcoy1u&amp;gclid=CjwKCAjwiezABhBZEiwAEbTPGCf-iRczHuBxYaUC3gdr-TqX4Ve1Rdc_U0GsOK3tOQwPMczEamfiWRoC3SMQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7GxjE5-qoiv75wr69qqNhg_NU6qR4O_0nno7KOHLjHljG3bimRrLOGTB1V9u-x0mS4NwRfhMbnIynhJpSeCoFKxDZe6r5Blc7Kb6iQJwhfKDC087a-yGHRWDD4qzgU_8Ail9i-rOpfdFfUjZ5dx4aXwF-dLpfx6oY0sRj4peSdDRx-rPTb5fGAo6wJC2SZzIdV52BRV4QnHVwMRw2hbdc5gfdkEHfoPu1HQ3h3Hl9BLo_EiQI47UB7DTRQ1ezOv5xYW4RZxQNjwS53eItHSreHKjbnO9R7gSASXLH0OeW-zfl8lcRJF791ldXg2B9BrkCQnEaESYOKIjbZJsExHmoRmA092EJ3xiNyBcsL-Alzp0ndFcJ3p-Jp2-ujK2wDojDJfYX6ptOUAcpBPFHZCuUFlaT2YdhfKHSbLX9FtemM54JDGBtgBWsNwNaP8Bn60XoCpOFLFhvYekZb0i9K8CIS3vNT6qqmOZN3ResnbAaIvrLxSwc6FHm1u1Jxp0MRzMLiWL3hgI3fQkHibUw-nqjdVa5yiCtlmfA5I31mRdzMb095oni3Kbi8wwczOc6hzZA-aWlJIzFYPiUI4QmPgzSpNvd-nKrPY7GQknGdY0HN38UVJM0Ay0VCAm7nAplQqw_Vis_33ZsRcKjjVZ2OxbVgcXKpp-IqYWBwAZdPO_6DCCEsL6-7gDrKOKVw2zuE3qlTASDtjtRMBN-NUwqsKb5T2AoawtQcHyJr7cmkEmCPPTqaGLKiFghigi_ghfjfNIHC-DHiDagLAm0dpPSgVqg1YPwgfy44mR28eoHvUiiHp0sQQp0wvixXyMnvIn5HdhUtFs34hOQeEoGH0FJMdfJHQnva3yYoEPa3y_sZ46pf9aor55xivz8A6tMCZwRu5jrF0EHv-yRx5u9D7nJyQeaVydOi4KGLOpWSH7u65DpZy0lXuYDVXwKbOd-j7V4RzPplwrxT1ZQv4QTAnglBAh00Ct7wpzJrI0bwhukj2kLWx6LA5Jj2v8qUCN8dTZGj9RcgIg8GRXNjtV796EQUfVlHptrSCADCtW6n9LPeBmLJhLNCa3V6iaNQlElIpDCCkhIaisJK1iHCB1EtSbskuTsoCn4Dw3CfE4Td7fNxy8yBJuDO594p1xNJu2RxK5t2eKQ2l7FjBib6AF9WDjBWHyx5uce9UIuX2oPiBKmehKVy7bpYTjkXRs_l5eDTWrggHUXZBMHlpANpE5on99ezeXQ2bt96GLfhyutEoT8IFhWBB_MjB8hj_ywAfhdmgHOM4xNpkFPYHiLeCNoj46v0qrgssJhbCAuzochyZ4V8Ztc9vSuRQGWo92-7gEBbLLYrtG-rHOj-fqEEQDxrXPEbfmykGJDfM-wt6KTNCgCM1F9obycAc3RexmKj3dRA3No-Dtib2yyOSLrRYGVHE4Jxdox1v0zM4FN6bhXTX7Dox8SqXppPLCpb2O4PAUmRigHGijDvb0MCZOOORVpsV_dcz9ekzEoif2-GwSSlH4jwSByhzeF7KHjMYmh5gtyBAR_VpKe0e2MhsbCcioMFm7N1RXLhyUP31oNG28mVRo6ATaINzpw29MznhYMjAb7eHhnN2OVBia5NnCxDV8BnXYF3Lefg4TB959N1p30UL7VNg5404-tW5xJwS1HZXl-thT5IkocXYnwqU9f3gWrCR4Skrc1KCOTJStsaR-TNbZxqtH2OdmI9eOQ4cXvYjz7KR39rURikPIH_4g5eV0dT-XUCk06uQpFyyJTTDoe5khKjEHJ2VhKp3W3zx5xkOeTAxGywceZfeZKhDQP74OCyh0sY8GPpgGWwFntxKQJrlj41gTCQKAubHHuyKM89rTGblroN1-yc6zvVzlBc4cCb2BciTSYh3jA55gmPQYBIxNofkJoTznPVz3zH41FtDJStRYUExW1pfMVVyNFW9lmY9bfhyJu52Hqgl1IuTTRR-uf7Kr1qe589MqZy8vxR8Hl3sx3s0Q1PmZssXW87S7k2GoQVWZiSnvprnKIi4OeK65_jJaqOeh7s3hCSTczsofsQtka6S-EiFhfm0INI8ft7T9aNqm-ct3I0t3poLFeqjpD8aGlNyorfsB_tgO6rSjDlopH7uUmbtpCEHTYQanD5bmqeLa_VNR7Rlw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681b569924e8e5.34674265','','','2025-05-07 12:48:25','2025-05-07 12:48:25','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681b569924e8e5.34674265',0,'cd-form-entry','',0),(43153,18,'2025-05-07 14:01:20','2025-05-07 14:01:20','','co branded logos - BE and Tom Waldren-adjacent for dark background','','inherit','closed','closed','','co-branded-logos-be-and-tom-waldren-adjacent-for-dark-background','','','2025-05-07 14:01:20','2025-05-07 14:01:20','',42536,'https://biomechanicseducation.com/wp-content/uploads/2025/05/co-branded-logos-BE-and-Tom-Waldren-adjacent-for-dark-background.png',0,'attachment','image/png',0),(43154,18,'2025-05-07 14:02:08','2025-05-07 14:02:08','','co branded logos - BE and Tom Waldren-Stacked for dark background','','inherit','closed','closed','','co-branded-logos-be-and-tom-waldren-stacked-for-dark-background','','','2025-05-07 14:02:08','2025-05-07 14:02:08','',42536,'https://biomechanicseducation.com/wp-content/uploads/2025/05/co-branded-logos-BE-and-Tom-Waldren-Stacked-for-dark-background.png',0,'attachment','image/png',0),(43156,18,'2025-05-07 14:07:09','2025-05-07 14:07:09','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-05-07 14:07:09','2025-05-07 14:07:09','',42536,'https://biomechanicseducation.com/?p=43156',0,'revision','',0),(43157,18,'2025-05-07 14:13:47','2025-05-07 14:13:47','','International Training & Education','','inherit','closed','closed','','42536-revision-v1','','','2025-05-07 14:13:47','2025-05-07 14:13:47','',42536,'https://biomechanicseducation.com/?p=43157',0,'revision','',0),(43158,0,'2025-05-07 19:54:50','2025-05-07 19:54:50','{\"firstname\":\"Steph\",\"lastname\":\"Fitzpatrick\",\"email\":\"theposturepractice@outlook.com\",\"contactnumber\":\"07806 931664\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7Q33pbMEfBVSYeUn3TMLu7HfOC5E8N81t77YBv0cmXHmH216Absl39xoRcbRnfA3cPmOtFFr8TgWw-JcG3WEFYksY81FehLWVMMLdOZ-JyZKG3RSD-i6xZ9OqOqVaXzj4ZvJE9oYGDGV7tQYIEzr-wvfyNY1motEcI715_sl6HwcMjfff8BdyjL98gqvtanuUv2qPLrVy4VNL0zOd2dwxlhamEZMll1v__Yw5ZBUG5y7drntgrddzbSHIaPpednzXEZgr7PB1R5Q61HFbXu5UHvyRWEF9PJlHhKvng-6aoP17vZCYl5qNDEuvTQe7CpDVHLvEAL1zJsRtQm1OfGu8oR10qBkmzSV4u4hJRobf9Ko_hAl3CeeOLkIZvpRHyYjIbVybpmr5e_Cf_VZz19wWX0Z9RCwWT9TdnRhnJakS9gFBJQQQpBIRqWGMMGAYWOIC9LYQDtpNDZpwlcybbsxKbY-MxA9dj31kROs921iqOejW1CJY_fYlXFDoJjUODZA5P8yDI3ZeeerGaFf2CuqfujJVQFh8jTQfxPuH6jtnmlgJIBv9fActSWqIqxKjZx-6Sx_3oXMhlMv1nhATkVSWllzsyizYsHOcpARhc3e8FHfP2SYuZjSjdFubREjGjJ0Cv3skbYdXsjRLEGnbaONlNbxEOzsZ5cdKi_H57Sso07-oGNSvZCiRmV7GGZmoAjiUTpK1uVrLCP5OxGGX1TdYQFYyVKH07vzRfKA4orBYhHmeqOq7y50653Fhi3ttwszc0R6vu_d2z-kPanA2gzAWfk-s1fhCLkpTP-vtov17I51ZCFnhjmVQ_FHNh4wUrMRbGbUqbwpq5J2jFdt4mABwaXnrPzLDlyZdIdUOG-ROjdn7XSstOs2VdT-aI5JF4IBPjc71PwSris6hwtYPbP59GLw7R1v8gTxMLDTKTTmPOUID8-EmfMee9C-D7eOhRm2O0z5q2Pjz1Ca4UWbm4b5IKm_pU0zYvSvKANPZhmXgNEBZeyVVj7A7SjJHNDAVsGjIMtQCE5wGBMqtpN4HcgOErRQVkNa8uObCiuDvSCu26MJ4X4Lv5WNfv1TO_MNJ8pv1xTI-Td2JDcgofQdJFrtorip-cMBazlrxC18P0-6D3fYwWjEt4CF-gHd2_UuEILhumGYUz8N-mZCl5MMx3TMChduFUzGlyyq0fv8UMHZCEsDQ8_bw1UUJCsdncVS8WpaPeed6xEKxGfSVNgQWWm7vET0i-CQu-04vDR04bvg7t3mrgof_Sy_SzxraGDrdVT48JrzCajXBVmVrnhrgaG3gDnXAAqQBc5M7nDQBrLU64FzHB5Jq-daEt3YynGL-wT3_JI4229zr3gOZ8VAGtmk2M_mSqVq56VWtbZ3W7_Wji_bDdP2ETfGTIyZ4Rb2GjQDKqRL30PB4aah4-8o7VADzo8o54pS67HoKpzHqgkCbEDfL-beFGRV2SmeoEWHY3Eefrcr_Q9TAxKNV5LZRLcAjTo0auWYjiABKj-cCPbLHhR75nufyG-esEt7ZVFqXtayvoLxKcdY0gqj8zYouS55GGlnuFK7IUbdacmdFa0_Ok1kHrAXRDUqzxk4ah1lBWqdIyz7ITZ2mPydOUAWtw5FOB2A9ZjOkGaxHrGSvRlCIPBkKgw2GNEPm1dmP2SmW1JDk2vCfsk4KB1sNsXOMwLmqG277GnwayJkoCaO6qEn_rXiB5hU9WurRjt8xOjqDHmF5go1Hr4co1enK2O43H09xtkxHoqCxtHeVDiIcPjuAHReDXrqmARGLEl-xP0R5j0cwNh07C4kWJq_Up1-hkbL1glCa5nMhq_yi7n0bWOVAWxJNfYBgu0zxvE45CcgZGbUEqOQpiPbPwLrD5RXDy4omiGhSffl3xW3VJ6sEEOTZTHcAFQ1LOcLE9y3ID7aHGXiVjpOetNo2NlDrmsTLrErkDj9Y7OAvpMy7oFeooDb8EqNQ-ElPfUz2DqAcgwxnuphXEkjIRfue7JgnI9Kaa06PEle8xkiuYwXrK3GCde__sdy8B1GCLMd8jZGdXBFJgj_dnMBIrHMAswTlRlQp-ScNcJQvLc7MfTDXq3PvxM-TWd03oscYGINB3dLMvtuAZsQtJ0wENRGZ-7BhLmkBLW9ZWNNezS9SyRBgUxSsJbbAADsMUVIc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681bba8adcbfa7.13057354','','','2025-05-07 19:54:50','2025-05-07 19:54:50','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681bba8adcbfa7.13057354',0,'cd-form-entry','',0),(43159,0,'2025-05-08 02:57:15','2025-05-08 02:57:15','{\"firstname\":\"George\",\"lastname\":\"Nicol\",\"email\":\"georgearmstrongnicol@gmail.com\",\"contactnumber\":\"07765986084\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/?gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMI9Pn78u6SjQMVsJdQBh0ArhhwEAAYASADEgLUDfD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7PT4UdUD8jrVNNXvRruTHf1dEMp2uB7W5b4LRND0gC7MYxaHTkU5a3KB7IV3ytnKLt3HIeJWgIBegixClbrRBhHD28SYafP4AqF6xe-CjWKKGjti5wEsDK0-bkpVjTQSyUrufku2YoEqe7tums3SCV_3R6ENusGkOyRNfn7-dkKAOJiWaNtjbHCX4SpIzNagu5XQTdxAlz_9r_7RO81eHztELZn5BemHQq9pHo4oCWssHeHmq-incOgxmWagLKffcbbY1acqT8lB5i9AHofIBNhokjDiy7MrfYzENA-VZn_gxbH7gEqgcJm8poHFPXzVGhs01_0iQ6XbGOMkZJPfAdGaIb8V6Q1KfHJKapl1egPBQ-Ok8qhIzNyMdVUqoCMaZiI55916HPbAFxClHRBx-A8lMMRi-OwWUO-9F3hEwfYQt-zjQm49CHzRF6tUF0gsO4xjLsed8VTcQJ5uJF1wjpYXTkm_u73nnXxX9i7bHXyJn_AnjF5_p7hTRDevKQlTlDU8Qx5nT9A8vjo5aJFBkNxw61pTvrHacap6gyXdVnpMsJwgPcx9iOoGGBpdF9W2bfxSwQjtLb33KndvF1Nl9LrUa5hMQ14ZCMrfMCTHdgusbMEBf_4U46-hAwTJxqWoQAJ570i4gfpebqZVdbT73sS__qWisVpWAmjHxN-cKNfk03IrbrUjJ-a0dxYkGIMBt4fmCUSeonQImFZkJjCcNS6DOz2OfgKV2G_AvtuPU7A6IfEZTa2f6yek8Ut4kIx8vUNP4xHNsJTPGOmzTawX3vseEe0pHGPo1V4vTBRgG02U-shFgJTh3QHWIUFBVqM1_FSlxz1qKMnXJSXWT_Oo9oy_LrT6EPY8fMcwII_nRt8apc7f3Qp0pt0Qtv-cQhrjwkqjfZqBE1icb-85aVK2UiEO54ds7wl5v037V9Ph7mB3SQQCqKI5K4gMgZn9vWxHu5GyAAQQCr7Nj4D5bVurxlOQC2ujZWJNp7L8DgaaLQ287d2vhtfrlMv8Zjz55mUFvAzg75CNzaVEneclHKtNyQJQd5ceU_CiFOtaWNJZ8h7_xVtfgejz_kqE8eA9XhXir8iOZp_tAzZ8utn_B7H_WCrgnSEjGeAu72ly6RsZlhPoDt6x0e2r07aYV2Ksny5rVYxUJcYF1kNIg1-1yNx9B6U6gIB7SNBOA2j0STtRZEUdmsCz3E0Yo9P8RwZQ6X1aJTEwkYOgEMJbzwycz0CGtaVQhw9JD7TvgA8EgyPbes2N0d_6QlGThK_faiy9bzyC1wo_1uo5EMj1b27l3cQfRzkwCpa_mc-F3wplGJJ7-H3WL4lLpow-Q3l8OVZYoh84BcDqWyHOEsFWGQav57aWrGw05HwKmc-JFlm9vyG8sqmO0P6dXxOOMzv_jav_LzBjFTnTqUZJK6wTrOg6cTpa93T3GcIdy2b26oPNGljHD5A4pRQy1KSZzPVIsEBIlL9mEOLNJVGve-JKzolmeUUb1C4UdebFpvZNUa-QepiUQ5eef96ItBvI3Xf4tQJL0sq7n6mqcrlpVNFH8XEMH4zvr6g7kaT1WSG4mftoJTDTNzhysIDxPa8v_Yuzg5z33cPc06vhpNx_sX8BMjnr0ZM_hCkJM40diPQoTeu3hXOCBKk0-l8IaxpP39TT_A8yOwx-A2Z7Q_HcoTwOmeTPcjgmzzt7mcFj7y0lqiy7JC4zHFHekmsZXYjZnEW0oM5_OgYYEn5hwrDEIYu2yciPhbPO7VE52L-PcL-J248Y3IGldnf0_-sGIdspmpLcPE7-WOpgW6S-zhTditAJXwlbFAhQSIaOpjyVA6I7173O43Kjv_oR0_53NwsFQMuHrrx5-spehP3zQKwBnGZG6VVyCwW-ftMiukh5qAlyh1lSmZliHqIV82EPtXFarR-7tQm_gFV_DI-LDBH0GPWXdmVyAtUcJ71fO7MEnPmynBJABuiKnJitPHXGXTDeVsBl_v4HVH5Oq68G2OaZXRttBCDZN-bgPhMH9I4B05iLqXsDXHoPnbhCNl1y0ro0Cans09iXd99U9-fhS9IWhhQzX2NluXIhTTF0IwAA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681c1d8b8c4651.95406915','','','2025-05-08 02:57:15','2025-05-08 02:57:15','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681c1d8b8c4651.95406915',0,'cd-form-entry','',0),(43160,0,'2025-05-08 06:44:47','2025-05-08 06:44:47','{\"firstname\":\"Lee\",\"lastname\":\"Watts\",\"email\":\"lwfitness4all@outlook.com\",\"contactnumber\":\"07737214291\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwiezABhBZEiwAEbTPGN7RqW5VWbBAtqIa4VeUWA8rZKkg-PtfU9tawGSsS2SQpvJAN9SvwBoCa0cQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6MIKNpomc7iUt6lQtOI8XT5V9JvIfT5p_foE1Iprpx9JdP_oLVXHslAjQ6M40_51CdaQLPBfp0lpR9v5OMMops2RhrKq3GK2x6LJ6MbLjkYG3i9WYoUDikcwiD_tj5W87VHzw1l1wTCH40LfhUcYyqT8ktHuFWlFfDWANDF-0eXVsxX4WobxvuUzg21L8CTpQvt868dOa-_KRwOBRdZvwrHCgHcb7wqq4W34Zf1Ocb13Yt3rYIms5FjMlujIb7ac_87led83a6IlM_j5n5p-BLa3Q0cMic0twb7_j0vIHU2Zw_Aej790bLwsTFqGPG5ACp0Y_yMg01bOhb2es3OfuENfSvqOp2xNKLrGGSX6L4Zse0eCKD2t66Y5lDukds5e8t0VdCgczCFjFAP8fmCamaFxMxsD6AdfWisCVIezqaU5KLgTzi052ALBvU9gTs86znKSQjvUk8tv0VguBb9aYLdzajm1ot357y9aLyQbsRwydrXZuyIOOIlxhTDr4sHVapAU7iLxb_tC1chASegpavDAsHCtsVWaA2_ZXCCS4x0IGGP6hDhYtFN98-y7VOerqVpjByhHhm3lu2NPqbk92x1e1iNhL9j_GKrCm5YSQHTwmcyW9FlVaeODkYDi7Bzqh8uW6SucKAoaqo8w2zl-scIx1GvCsNdwY5RMfeTGYesCvrPy2CINfFWN1MzEAEHf0INNohk7xDQGdnST8T6XGHxemxJ_hy29kJL3MD-HfcY8CGJP5Ywgh4IjeI0Q4wphOjLE9LHf_wYCPn0dO6QrIqEU8RZCa5_qVaiuKS3cIRyuIVOJDy9Oqaqjhp7Us2tYn6fBYXRwRo3Pwk021b5-KEP4T-JZgUmLMxhVbVrFsFFKzrCLmcso0iFqasJVAbyqjzEd9k4mIwLkWxKZb7MNFtwN6W8qsYuYAhlOG5dKPF8RA4jwe32hts6wFtIHTFe1BJ7nsNVY4_GJECZ02vjI4LjR2rAs4rG7oiAa5Pdfih5dhygIJ9Of1ysHqxOs7zhup0kekZ9yeUDMzb1xHtfILNTNVy6Mq5g8CNme-WIQB0MQ9Dlo_DzkqnRafHVBh3KjYxpDiQUXZXub2DwhqzI9AZ2nEAfJjUUWwawO5Y559eZohaJK9_dhnf3DXeNkO0Jz7CdcZULSZJb05icsBLU1CWhgBokOl1NPiKGCOJNBf-yTsH0PhrG3yNnhSJHPvrcGecOhjaaYEEBczZSvczlbUShmlceGkVkzdFr5qeUzXbprrIIcRAxu4qWd517TozJkG16uGV5GBdl1X12hCzZJ9C5p0yCeizP-qW2HIi-NLaYUXSKgIkJ5Ti05fUEqtW-_m3OOartPSed2OjquvejnHMWDu_fY1HLtYKaPJ1Ae0C55NF7pIKRmsASnOK1qzf_VnHTAREQmRtALuUYcahKDD3vqoV-XW2xXeucMgRzQzJlt-ZH0AtG_eFrAl6sqKo66CVy-oM_yr3rvr48udb8eTDkwIZOS3FFmEbCB3LP_XaYX9uuDxW3GqecDb0-C1AuQGWZ2OUzi88WFjwqEnGKWkLAX8x0ipQQRtlZVH4xdIb7TV2L3RgqAgrXa6JLdDVWCBz9hBHpKRweJ7pyoGc2UHruYiYa2NcrdwUeEv-qGSnO4kWXiOj3O5PdSDdUKTLCflOUvCXxsbV6vm-mKoZluE3wZZ4HUijoRVknoUf9rIGJ7V1jfvkPI8OVibjwYAsB8DsV-NYdDgxfEUFAnM4D1PURvkplHoBU-dYBxdnrpmTEsafHOfEpvmRvn1oF0BpZ1upogdAQFOGSjAZKjwsRBuRICkxzuZk_w7tUc-SK2fApnnk6cDEVEMvtJNVx-ZDlt9NP-26t85NpvWGZ_ggnIcUolBNdQOL6cOXIgiD7fRLbb4-geAav3nSxc-nX2rRFZKr0f1DHjfLw500megblT5n4hcWWJgVhQHLNL-pyOYC_YD2BHWPHR-4Fj6WMDLk83Y_rE8F_DqIOwb2QR8iN74r8385mPVI3ScdSxYkeWXnvz1BUQXQaZy84KEtE6LNpOPwdMullXFA2ggn8O2wpm0nxR1KIA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681c52dfd67e82.72715220','','','2025-05-08 06:44:47','2025-05-08 06:44:47','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681c52dfd67e82.72715220',0,'cd-form-entry','',0),(43161,0,'2025-05-08 12:18:17','2025-05-08 12:18:17','{\"firstname\":\"Emmanuel\",\"lastname\":\"Osagie\",\"email\":\"mannyosagie@gmail.com\",\"contactnumber\":\"07421437958\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sl6jqSD7zjDlwZDRkKD5KkK&amp;gclid=Cj0KCQjwrPHABhCIARIsAFW2XBMzHOZm3U1esrpFO7jRqrtCzRa7ejAJKzYPowUmj4l7dFbvbpKIEe4aAu3vEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5hpI1R2YBgXnVxDBM1lEXG0Kiwieh-cooMJYtK2tjKHvPjUGxKYUO7cYxd4jPWX9Vl26FZAwbhTIbnFGMC68hiITAyd2jPHPpZOEq9yMopYjtcov5naZbWmeM4HlMz-jiV6eozZW8ioJksNzhTikIy7HdtliuGD4uOtWY4qSSKMCEQUXtXF3PqqUxnUaVcKJCewUoKRkfYsdtp5Axu4bsnqvGDHrs-UDPYoprNQo7k2YaiMHM311LnXrXcuVhOEptaKgR4AvMrXu4Smo2mdvIRgDLTHFDutk0iUQJbr7d8X6Fjy0u4P0YkxykznJ4IukZNy72n9NAMrHfVw0sH2e_3-efdTZKFuXtbf8F2TG4Yla-6jnT6gx8mv26mbSSWzxuqlfnL57BpFlDADF6voVK3aTlTTJJcXojJCjNQ_LJgQ7F8nFcqOpNV8ZN6ze0aJm-N6uu9UOWpZRoo9mf3gOyRh-GSQCeaZ6KKcyzkWnE2bYzNckaFqnk-4-QF_8ySgp-fa4VbqR7CwEa3FQCk8uSOzrBleCBaxEAsRR5MzXFQUew3aiXkuyiF5i5VYgpbR3PCdBHfJ5Xcea012IMEkoK1bC0iP0CUameObSxFa89X0eHq_cRLuErr6esnW6hEhjaW3dqt0sDkOCpgW3LWpleKj9Q1ti4lX9XrYSx839EDC0bJoss6WX05dfEnNo1xWyAK8T1R4nSpAmDUxDOSGu20T-iMKooU8jWqoabRAgiJOc_wjHzk2oLZFLY2pJM99zrp82W3DaTH3SqT7WogeQD-2vKa-pUhF37Ni-IqQJiXMI7PqCIjkqueJ0NKXxcD8iw7V9NjYlMtMnCz8SbrvMiWy_BYYsUuUa5DLCyVSTlPnRPpGqHZsYS5of2tcDL7r1OX4HDTq1rkgGEYc6O32GTIMtGktQtUx8Kp4i9V_7e2s6tHFudzr-FbgDR_nT90HcK_u6K_Tn17Qkhaj5pidWDS3xrHJMEsOan3lRNdvR-4UqI5k4fDOMbbQj0YM0higHQXkL58faQifN62m5NH7K6eP70DWuwgt5JY_egN4vfBf31ABBHF3UBnl7lhG8NeLE2yMaG00aDNziFNDKUiWhPyR-cWvPr42NjOHfa2no6oEu7a9nt7U1pkBI7feZs9Ng9RP5j_IdJF3GJ7WknP7OkPMYMFEf3MkLd73oZSV3OJhpbku60izchwLkjrlcpUyk08zZhR9iu5-eu4UmFtadPw8NKE2coDkt9c3x4N5zpbTni2LNxHqiChmB_DEGd9DtfAbq7Dhgksn74UTMMimkOBJz1srXy0MJlS57ufFr-qSwTxcHSpZPqhC16TrRyiUgC5L8leTt0p9hvaoFBDKJT6DthcQdCJDPETijQucqVFY-3BafZppOKt4lyrnbxJsEUz4FgwKl17m5x7gUPAIGPRHd6faYu9FIR4HMZKOd-1Rr9Ztroa7UF5P-HhjFMmZUe4VQ2JnZox0wCaYEdbsl3NBjxoMk37wY9W2_8DaWRm_9NRCysaOewpUATEw2RVvZ96p0Ei6vmk0v6_vDSR70iStvxQfZQxLx1mm5ujCasxF5yuSMNPFp6hcSgMrr-BOHUi35MJ1h5fII0XvL8jsswuFdrFiSRxqeuml-gku4pxVLr5l1VwTWS_ssF3UkSTWmm69vxHw2MfuvimLsk-SkUETf81WJynHG7gVbLJZ10Q6f6sh_xVqXKKoW-3BybbazplLOo7R2M8UBauANSKmJhnzsBqNRPIAfekC-dX0nMV5YuqFCXNgb4iVC8t9XBtkIA-73Zvpun2M4-Ua1o-g13R4FnqK1YUOyE4OVOu3LdcofxX-5bKgEYILxoJ5ZSc7pPrTuEZ6JZ5rRvlqITeJd2Jgg5hLKBWvcGLZYJmpVGPtcaW7ZGhOPHXNeSinB_xc6Rx3BxsIOBZWjVQLSjbaOwXxBSsNcQuXxjr91C2hr2NgXXS90xtGG76X3J2fwlFOKhH-CpFJNSFK3LX0V2q4z5Hydai3u-tmaxwvEz5remQl_bVuUK0eC1JSgeH7ae6pgD3ecO5N3jMw0ZvPoVRJ3XybJSknY0D9UQ7DvhdcFJ0qmPur8CtiE80XdGm6zFf7_Kwb12xxaGCRt9Tt54oxG4V_wVKHCovmjcv0BQSgVSn-Y6w9SFuZgR3jfkyion-WLSF96g2hFYjZP2yz2e6ba9vH0zKyhWqRJdY9bn2kHi2XzOj6Oag4hVIjhUZ3SDie8QbZnGldJZ8eAosldop2XZJW-UETLboFp3cNUzxBlkodTaUKnsmwbMoe7sVPW2AC2pk-6lcTPtrHI9N_LVrdF4PEDoC-psNzwlLcioWPxFOpdwIGqpXedUycrCuRMsBM26rN6mOpjEHW6FqvGmLSdY1zpnLJA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681ca1094703c6.10372855','','','2025-05-08 12:18:17','2025-05-08 12:18:17','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681ca1094703c6.10372855',0,'cd-form-entry','',0),(43162,0,'2025-05-09 19:42:52','2025-05-09 19:42:52','{\"firstname\":\"Paul\",\"lastname\":\"Bentley\",\"email\":\"paulpjbentley@gmail.com\",\"contactnumber\":\"07865213240\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwz_bABhAGEiwAm-P8YfCcUhM0d_3lF40hzSIXxpUpqWGtfOgWKKaa--KaGn21J28q2JF8uxoCh8kQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6Jv0NLkwmn7sGHwcrcRlNGgtyayDvvjQbejyCI_lrzK-nPoRBOFDpWt37nBC0ZHv6ghvWx0HeN-bsTtEEoJ0VdOk1wlV5pf75SwGN6WKmuMbYiZOTN9swTRjGmN69ylQGftd3k9XHiEvnEZ6ZMVC99oBRpSt5_BxEQKl4Bz8sRwjcqUiAZHYv4E9AClzvUItsuGwX4y3tYcLEFvGaqDHJlLXMD8FeK5n98xA_aCj7LdjaVJCvSbunD6y6wmvfP-eUc5h69rA_3EIFRlIb7KAPBeukP4V7rT74P0NkqYH-hfT9323DFiGFC7qlb4OYmuatNwRETZy_f1RHcAjr7mpYsCLvf3JV27EYstje31pv63OtzLEXE34HPM90cqi3CfO2O-hVleqUql1VutdBLVqEp42l_ax51acCLNKMOPyD2SOjrSqfdMArDaZGiTcwWKo8SuoRP8fCLERV6I3vSNegP42eVhoroH1qcn24MrOZjzxO32FcEjBJEcvfVFe_wxxzHHLp6kfjodnFFhkYI0RpAeTYUZDxzGvAG2CktLic49k2BHiTHdn-zh6vEp1BzxBLeQh4Qt1MRiD9wvbHZ4yXb1slezjNMS0F4_VbbLAOQ1BvK0jeM561p5zI5KQumMgasmXKenfiPBzvIMV1KBDnmP008bX0us2zVdNLkA8hmj6kJoCYK5NVP2ckY5G7AAFLBIDs5k7lVhhin5-7vTNs1JY47gNQi4AV1A9eTGgqug_gCa4mCowzO5hn6_lDDNw2zUaXsqPL8Q23RqpbCdkfeJ7Xj5NYNXynpGtJHXpbh8uUsNKk3oT4rq4Tg9RufwjphaYBS_b1EGnLM4W_AROOPe4Ux6csV87HBeYTRYi21xyoYi2C3eP2QyBbYYCV8RVLw4LcJd-gcGL6m632s_n_0RINkFZ10AKi4voXNiVCo2MhUbRAIjqP-E_colTibek4xd3AdPU4QS1PQRI3IR4PbrgPCZc9Rmg3rHSZHh-KOHNg5FIb6C_AvWUQDBZvQ2yBq9SH2T7SyX41ZPCVqwB9EHPR89t5iCoNeK3D5rbVLu_QXHiUkzhuh4RedK0aXFjPrjIQAtnN45NE8G4jNdtifSmk31s_YGy2ao58TrrWg4SIoxJdKF13wbaaJZ5bMd2Epg13swn0K9J5jIAab-WwKN2qog2rGZAx_xd0aNfAD1nrLNIf7GBtSlJm_JaRcyQ_scRVoKnXJzS0_9-jv7N6ygCBz46qHajA9TVh-whEkNRtPKXrbLL9koKa6cAK0arDuzfh8aRUmvkUOsGQ8y2gLnU2DJjWh9Do74ZGVPT6hQKVfdlO-xG6A20xUQr1ZdOomUUvQtPnaCw30BpJOxuURE2urIlzSuergtBIniuOgubi3Db11ZpmE8YVOzoDWnwH66lf5XYDNDRFhf9gfig36teSaHFEM8Q5sTMRMVB12f2C-KDwVcRbiGtvFxYoIzD_bzo5ugscgJTj4jhmUqAY6BD_rxEbHRiJcCLJ2PXmpq0kkKf0XgAzi88u0DcvULNHOQ8asIbc2gRIrhx3vmZfaMHHPolP0p4BA1wc5FIVh7batgH2akw9ROq__15ADAmxZK60DY2apVCEJlLcRWDaHLlXwXplPpO5NAUefHLHhZ0TJUWU4Vj9pDHbYZ_b4DJxzQONidyK1CliXktH4Sw82FfQ55GwLJBkg7ozOS1XbgDknK88OYXlGZvI2jJiuey6Dv34gY6Rda459gbsXFhmUyJBIFCUeswn4maCtLh8eZkaTZRu5VUiGzcYfW-K0oUnZJqNLLdsVQT9GeBDi2H-0UfNWoPoYM4jYBGxSZpgNe_LvPvZK5Kz8DP9jygscLhEdZqRRd5A36zNj6YmEQ1Fyp4jOP8UK3gLVST6U-QX27h7Gg9IC-lepTCglD1VzsaLpbLqYOHGyW-KzvUvxzxhwgxh5XDs_FZrsNTbibd3r-dIbP69yrXKLLe7Y6cgFesrwrU7jxT3quStiEqFmQ9lDvTCxkOQPCn1XQzcXRgHawRGP1_R6-OQNPX23eJnM4Wq8KkVoppkTDg5G-HcMAV9bc6x6dw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681e5abc9d0d50.53953525','','','2025-05-09 19:42:52','2025-05-09 19:42:52','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681e5abc9d0d50.53953525',0,'cd-form-entry','',0),(43163,0,'2025-05-10 05:07:39','2025-05-10 05:07:39','{\"firstname\":\"Maureen\",\"lastname\":\"Lim\",\"email\":\"maureenlims@yahoo.com\",\"contactnumber\":\"628111977769\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/biomechanical-assessment-everything-you-need-to-know/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5NI61jpCBjsYzdYZpVMrBsc0IbnnlqxiXkKlCbJGj0emqm9wKQcQWTjwb0tFdxcUyQYEXNVZS9j-NGwsguYuHQoV14JSRhfNPlt_lekapm2xq5GyWFFAMC7BM-Ax2o4yJ5XJFskb9p3_nO273Cfqscr4LRZ8PVsKYQ5vaeESEycY4u35srWV6XWq98Bj6rjzZb-w5veQCeR5i85_9z-ZHGRixOSCaNMYAPcVe8hSNzx_8unSKCHSzINa6zwGy24YLv3qu_O6ZS8OrxAwUSjwzFKLojkTCiQK4o1lF4dUu6bHFL_TzWPe0iK0wAZjgAbIBoDgxrk5ojGRUhYOAEUQqlW9DurJM4qBLnNKev94kWKe82zSfP9ThtyAFVs-zhGZF-HWrrWtQsKWMwUkL-tc7lr_4I2vR_DPf8VSthYg3ei6EeJ4xzAk7zIYu5YpKsqro9mk9RQMw5NieuJLhseh8AWJM0_DwYUBNh4vOW0GKXyv1TTgFxa0kQF9BtPGBOmM3Fbnh20tO6axWXpaPTO4K-GDFV8NWlF5EX5WHNVO06XuU_a3E2Ct41HAr4uK3MtdGN5FyIUG6zaFu1ODj2XwFNoOdigxADj6diyxe97I21YV62MOGK7gWE20otxaPYUJEzVtEKGerSxOQbm3ulmrtdohE7jiDhSewpsG7aeiKlsiKPXKkQlR5dPwQ0lFaGLwlX5F-R3B7uNyDiEZ22xDkpSMGNlRZJ2g1wSrouCuVCBo1wTwDFvbLyESVXR2Ymf4Z0LZ-NAwL-YJ9RSbLmPXQhXz0jjJeb01_WAtESPyWbW0NNyaA11DkxdmqnLS4u4HylhXYQyZBSt4AYZDmymwXV71hFZQyt4c9Aj_JkcIGCLgcz_assOphpUf7wf3r5Pf6V9SqM2T3t9nL7uNgQ2Fr6Wz6kWr7hPaRVhbbQCLQkgYtaaTQcq01ZMnpSma24iOqG_UrBlE56fK-fUh5MG37hnJIzxOPr2CdMoBc-uie4iNWTmZnYIDv_PrI7gFxulUG2lw_YrUc7nKA9oplB38EQL67YQMVNy1xkQeHAchsYqsfsW7IsTwKpyPOUHmEutSivcyQeocoGbqKAYsdAL9v1EfqVWIpgwgW15L34uI2mzaDJHUkR-YGYgLWswYY0IXAc84Kwl4VoWnkx3Oi-t0hwo2gBT4VSNqPyYPs9M_Df5OT44ISYHUGYq1MHpfkJGkX3sdQrD0rMYShMMNm3gBV8EeMG9REyb2LSOycRvf-4HYyoIMqr1MTolBBfZwmhzJBlIiiYowR6emCU6hL19XNaO7TJKDdT9MEIeSeXbNAKK1xanuiMfLbn-pOTB7aGipSi75TBnwO91bufd5H2f_0RIiL3p5Yt0XTBuWhJe6LxFhIX3d_s0LzisIKn9-pScXYOpByO3yVAGeWke0OLqYQO_XdxwP2aQiRbhWWeqtiJu5O4UsOsfV4v7-EdSJ474A_MKLTsQzFWQDqB7kwTDi0ltaOKcOJ6My_yhwJsWGU8VgNibye5ahVA7MZFjrju_ShG3UZHEJlLQJscuPlWgOX29Lf1AH01iEJSERYGzf4Zw1jfFdwralfAU2sR--c96xhtoA868kzLVxuxLaupf2fSGbM1CXvbhVgQZtHbukDoGxjOgJLIX2iHcxdrQjf1ljA_pBMrazg-Ch4DSJWu-N9P54I2v8TA1vkTfRPsFq2P-__CX3HwdFUCSoxuPHXSqf84FY0y5FDJBPoOxl7V6zYHk36UGQbncmYGeh8ugNtBT3xubmLfygHsV_Z0lRCtt-oiRu0HNQqzU1LyAsFyxrtJaGCZN4Mv7jaefozBYDvt7h8EddPVWFvpDX3J2dEVWtJQLdrEoa67AQsrZa9kImVvdOiEd6TVKm-rtFd0JVuCk2_HlaFnfsdt_BFcrWA3hcvZnrsWWKxoNDKOUJujqeLq2fiu0G4Wi-rI77hf8HDmhdXhgJ60NTv7jxCO2s7H5WLNhJfxO-ORq66OhelzHZrK98x8hxC1aWeen2ypv3b2P01uVRgWitnRDO3TtSGyrti-4QouJ8ZH5U6v2wRpsj60sV-4E61ltOEuagi6RiyqQNbYbdjYQkGp8D-rGpyVERv28A7UlnntxLkZZGtg6ZkNJ86Ry9r_cjtmE1v9osbBzjwWddWP_y8eqeDay7MKLA8j-gRf\",\"recaptcha_score\":0.1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681edf1bbb5931.44942227','','','2025-05-10 05:07:39','2025-05-10 05:07:39','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681edf1bbb5931.44942227',0,'cd-form-entry','',0),(43164,0,'2025-05-10 05:11:11','2025-05-10 05:11:11','{\"firstname\":\"Leigh\",\"lastname\":\"Evans\",\"email\":\"leighbrianevs@gmail.com\",\"contactnumber\":\"07935413480\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwz_bABhAGEiwAm-P8Yeu581BB2gYhLU3EjbXqGBYTsoZkYUIyZULq2JjdmZx8RiPCB1TtLBoCBNUQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7yt1QBKJmEYeEWjDLltOnVqwiFZ448igU6l_P8PuaeC0Uz-ZuWovXS-m_PzxZnok0NJpi-mSPbQxEcdLR-tVwT7qCIPiETd0IyRC_q5EmYjAEWPKLEJrK_GtjCP6HCde4QsvBlAT1xfkZDj_3I1HlwkYiddRnKyJoljyTYOCo7SD1bj5n09pmyeBZCQXTXFKoBptv9w-2iyzRAkQa02nFqfMnnN8C9mhHGbkkNK-bp4IWlTqqkS1OFTcMJNt8rtL2q-B33eRnT2iBrIFfBIO87G0VhumeCM5C7rcqKMyPwfOhci5dC9FKWbLLna3a44UrfhPpUF3ukbOhAXQQrQqqdpmb_xQzPPPI5m-CCrx2eWV1ALeCTQ8UwehuWqMhQ7kqGh9TOEoCdf2VR9jPeMsnTIU1t_1HevPTlG5yG2YPz0PE3GNemCTUEW0ra2veOeH92XMa8UrlVa5d76F1SItqXyNhK_FsV2qFADM8ZxwYHnyAkBN4OR-BRyaIY0yG9maECpMxl_zqXz8O5oO_2hSuG8IFT09iQ71gzECCwYPUw4RccJBE0tAlcjxau1yQ4TDIgtfEk95Qseb9N77ieiqQjX6EsV3W-zlILoTIJIwJgOhHsgrdpHtTEV6CGQ_Uaui8W-VXVSiglbGzpJ7FVy2AMZfh5DwsaWPtObrEcetPrtbwGOZnDU54zjACH7Fd88jI-zAPn4M7wrllf2XkFXcdcM1YZH79yY2LzKQdypDmXzODB3xCKOkmDAhJWC1ghQqyqDlwY-uw7VYg5-Pn0pIsYew5h1_ioJMYiEqYfXZNkO7-q7RWgbhskCPSm0oIcDZymYvuoy346biwV6vxfeblRhynetAgN5BzTv2kylTDXd4aw4MRxHU46FTAkq8hOclhIuuvPpTkg6_E4AbeBaYQkQuzfFNuNh_77Rp30YUhVdo2ScoeaqPc3lbmaDxFoNZFr1H7Rh6neA5t9UZvDZty3VS6FHtBjH7zwI4_aJGTCt_aI74_HnETbFFjrG3IEZKe6w5C4SjiWQ1ahhdBwVcn_tFjCZyaP1r2m0cMGZ3g5GficFRDekCliiva-VnEYJ3nZpx1jCBYNVeL5Y-aXumHQ_XHKsZ4Zk2r2LrZsfnhIYNYm90uUB8oIlFQbGwWj0u1vZHSM85nyOvuWeUX-lM6Az1rd0OG-1nwbujf_16CE_MbQxrJPu1OghIA9jjEmStqP_b-_pW5SLifO5Cpzut49B0AOLNZ2Ep-CW01NAJImsSzGOTCIGXbjviWMBo--6aIK9O162875ZaqUNJgW0xgIxjy4RdI6J6kVdHs8Xz-YbyhMEbxuPjypD4vgVlZRreXJ-6YUpy8n-L_nHYfkwGFdNYUssHl01WT1Q-opnWx5wuFhlH2TamUwk_L2V60EEH5-CNmrFJGEMNk2tvucAARB-SAqJeqrZlk6_m0dPfMw49-L4fSZQgnnL3wdRFO1gp3boQ6q5sNkat5xHhax5yH8U_lVtdskxeiqERyeYkRCgH_yvZIb4a_bTuoAYpJdmu8FZ9jBbkIPuXxtH3y5qOCXy0lJyioGlBOj_cVV6sTjqVYgcADFh0n7hAT8_xe7_BO_6JZcJGfgIG9PVI-vnpoO2zZdsaj77LLzfhbkb8VJgzm6LozHqU23iPC4y3PMY0lRmJO0F5wKFaYmoSzovppB5igONTuFaz-AhVxd2ZdajU1M6Xq7yQc1FSEHsox_iJMjM3X-Hp7dADFOgGb5N50_yxNrtD-SJVsiFKI609J0sG--zl2dfWyfMwZ0nHSG1UySN25ID5G6Bnysop_OFA7aS5IrOw_WHUDajaXVqujcmwRUhsop2wjtOvPeEBtbcBVWFO9zJJXcRJxavnT4wuCN7c8gtLu7E3cV3ha2cgUfsFal7Hkf5R8saqJOubSlWQCpkcAYu2WoFWB32N5cPqoRH9pyWDvCtgqggpwiVeJ92c7CebgAVBsrEy9uPpDQgE5gBX03oYik_R36Mb9_syExZTNQG2R-iSNWp_0PyHhK7l07tuFy4f6eHzLOyTLHIsCBVwgG\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681edfef530078.73858026','','','2025-05-10 05:11:11','2025-05-10 05:11:11','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681edfef530078.73858026',0,'cd-form-entry','',0),(43165,0,'2025-05-10 05:12:25','2025-05-10 05:12:25','{\"email\":\"leighbrianevs@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"10\",\"currentpostcode\":\"SA131TH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwz_bABhAGEiwAm-P8Yeu581BB2gYhLU3EjbXqGBYTsoZkYUIyZULq2JjdmZx8RiPCB1TtLBoCBNUQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6ec519kECtXPAE4tGjbexAqIlZYKEavzdS1HyAba5f38-mLKyzS1moeAZxvWACuHCsEPGQOIqAVOz-qXyqWGWg8EjyxagKWOxP6ieLemVZHMf8oHJNEvZCfzH31A6lChnvyjlhbTiYJS6OrSofZR3qJkrH72UB-hRuSay7wGoekl5U9VGVAMkQgCRyeSbJEg7R7LBjYndzLnzUxOBGgbTwWml5VyEx3js5S62B9h-a-QR2ZhfMZQAF7qi36CYYTW8Bkz7oO3_vYp0s3Ov_w54nKdhHWe28q_b-cKxVFek5W2Q-J_U1PX1WGNPW_g2LHsuTH_31QTPvUVE_pUQM9Zdtp2X4cSOdn6VdlO9Lx0V_oOvkiL7-EgQF9EGBGfzn6RMZPESg3FGK2QnF3JodC0V7yAo_x6IeTiWIsLm5IFviukgMG_j_Zt4Mk1kZu0g5lozwddm1yKrAtErw6z-K8f-Hei36k-6kvzDNsprWB5MfzGfmhufIAel2ZDsHP20CelgCfAUMG_mpBiKMhECEKoPp4eEXQr_mXk4Bv3KeL0fd2TgzrUncpZusMQSsthXNN_COStyT0TE_UJQ824UZ8iLIKGbPICuv-uf5OIiPfAKJtHCl7V_02A6KbTaNIaPgHU5iKpzrlU7zWz0hnDm1ytxoPHYHk0VzUg0_gYWRL2f0JKrD7W5vyLcJscy-tk2iLlIJ7znD8py5Xnq_P6ZsOCfe7Le0fIjosTo5-s4Ya1tsInpcvZVlbVJynrn9a1Yb68f0avMhJzAAuPqXswbqN2cPxDEOroMcrtvO3o9ftubLq0ziBDxc7EeOKqIJj5GKYrdXNf4wVIlPUxJxmj1IUROz3DGT_3i41DDMQVVpDQHVsjrqxvt7QvTSV79UDb1TYrizdsuG5zS-CcrG9aBSc8Jx_dS_KqCNxshvVuiByeNWv4DRZrN3trGbwGyVa9ZiPTOAsR1FGSyqVNT7Pa0oUPSVZPgNiJ4o-oMtv28ydFdLJwIG_rsy3WAfBKu0LtLUJDpiNNlb0a1pSw-XLe63wijHBeq4p6llyaRKs8B8xbUJIk9BkElw7QFfAbsrtFZtpk86SJvfQdGT49WgqEdavUpG1G871XTZdNBXmwSgjUbraQ5_Iwj_eL32qWoXULrYd3KpqLnIbz7hQMqi1PtY4cfc5sDBkfmOLSzstUdaHxpKtgEXCuYtVxcFdZWfhdUu4dhK8gTNHcOsvLSW5_zWvwwZSaOziiGaVYTgO769RHkfipMW3yPdMqv2v1IXI9_Hb5ArifjLFadjl1yDZofB8-4K2udhsyyz379YuEAubgM_AgKTj9zo0YP7VzE9WBK3qXvlTBcAWO5_2nlrvNXj8YLPa6FXFw6mfTKu3rkTFhjNCGCBM7_g1NND2cAzDSTuxXIC5JhOFKjeWwMoAs5pKPfYTPNHLQjlrzfGpGs7zOx8BPHtQF-VqIF2QwJsdlcYVZ_0OMLMOgRFkkDDFy2zHUY4UTPNwbnJxznRbWbGbQ6z_ZdwCd-zbTw5hw2FVWwWsD9cfulnbObiFufYvPSXeAGnZc3Q6o3AY--uMwQLBBlFCZwQ1VwBmbylBEpf8Xd8-tmvdkNEgCg0bdTF2cx-Di1WtPRDK2QuRnRWowOP2XPpQm_RaFNiZRZWJLu0_SpNZvCVDOjJdbAkI8VdF66exVhSlqaxzFRsCXdNjGdlbPBJAojYscbwSyLmay27vSarEfhde14YQwFizNsIr2Gv0bMpwdk_xCOQ9ccBzTdYDSuZd6mJ8sBD8xcKzZFDRdKKnfvePRrRELfAPYLh0lfCtnlHDlABFfHYeeQeF-GSAei1fPM1O3u13yvO0GIn-CoMPkvwpMuzHq19TEmWwBTJEq2nJjuYV5WiMxwg9CBjTwnLn5VxSFnVSvjglI-3CMBIDPPcmoAvc7x7PJFK2YWmr6G6q50_7T15z-Avxok_dK2v3q8-wynpZ0b91-IUIVGB1Zwvunc-1ImQXKMip0nPn1b6R7sFJSHmNR6ecdmtFPuHG_LKRBuXygXx2Q8eqDAxQ9bmI7Yr6PgAnvGFUlrSwec928ksEGkavG2uGGpMvNL3tU3i4-M\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"3\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681ee00b90f718-59423817','','','2025-05-10 05:12:25','2025-05-10 05:12:25','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43165',0,'cd-form-entry','',0),(43166,0,'2025-05-10 07:49:43','2025-05-10 07:49:43','{\"firstname\":\"Marcus\",\"lastname\":\"Stevens\",\"email\":\"marcusstevens314@hotmail.co.uk\",\"contactnumber\":\"07415334030\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/?utm_source=chatgpt.com\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4t8O553vxQg1gxePJLY7U0iHDMxoHz3FfwyYiH29Kf2D2D4zqQBl0FmxKXmlh9VXK2RKM5cKFK_Qg9Ijy-c12xXwS44sp1kZ5YE3jF0x3-utIkamSUyyXBLn_SJ022nLoZWClsNeiGnYFHOeQ_QhrKSmiagNqjlzVp-knnBltz48YqulcrNUde_jzkg3lZgqeIm0jZXNgH-FNOEVHznQI5tyfKCmhbpcJaxB6GRHk8BFE5LgPWlvdq8QUx-6EHvS3Pz84hYOnoSM1EFgEFh_GyAMqAPtMDFaz7xqzSfAtwAetJjumi1wJdTJRM0z_E2kpmAIrPCytw9ZwyZeve8YxgYDACnSOKmqXREsfZa__HnYOV6Sn44piFr3HVd1ke-4tRYJJO5opgM394WSXoWKmaCIvBu8Oc5OnFPHwF9xkfXnX_65HO2HT5qAPdZk9NtkKomBJP4ZvQWDstJJBVa-BvPF9iOO2llDAIK_KHIOMJzGmgryFT0EbJnEIDQW54D5336WeyYSGAJstaACXcQ7JGt8UfE_mzH-1pt1zWN8Wxjd5u3WUTJSMurNEihdz_Pf7g-RBt-kPf-UEUrcQdZoxh2ZnOMkg3NgLAA2waAbcptqMlYDMnUNQpRfPdTAZvHuRwThd5uOCHUSLuX7zSmCn5PuoNhrKeVYUa3pLfcIzHjEAa_ZdM0-g0z1RDueIXdsHWP0DPa97kkfeeyEMcCE5Lb1hmiqu_z94qMbiE3Hsg5zOJbgtW9EkSfmk3JuNaBKf3KTSD1hW9wgHSBGBt7f0GQjld2bzGGS5AJnEhkg1eIfkLaQSDRfMV1_MhQ8YLqnN_hvmtdK6GVcnE28mizwAdEz9qLRGj0cdcpQ8Y9CED5SiIdlODN6zC06JqmznB9ylk88nwgLtawvHEgO_V4lYcFFcFjWCSjc4B2k9bJm_hyTSiq7D9FA1CTOeB4r677LEXoPfzKSsTdHJkh7m6hiwHBycfINqyraKeR3BgZu2MgUANXHfPY2hJFJr3BN2nubdRHSlifJLAsjrNekChFSpu8U0VUqMuUOEnNrCJZDErI2pBiXm-wyzCtEDN1KwduD0p7v6PYSLe3iO-x-OwNatyVhMh0KXa_EH3UfHQAOCQW9ywKBNOi1ogL6uc1KTxzYT19DgFEZsL8Rh49eDSlhXd7p3IBbaHWOwCHn6pKMjqBTm17i9iZ9zaYkHWAWH31SdxoHQmhng6RORF4l88ojOQz918GspmvlSOCbHvePk7i5WsdNIHHzTVI0ViHXiy_9gpiL74rU0k5uSgfGFeB7WJnsNaCtVvgY8DG8H4qxH2-b36Yi4NeRf07TheP9sZ13Nru0EZpIWTnbHnt4Av6mPH9kCzQt4YZZLLizG6_K66zj2fkz1p-qHGrtrHEPU_UL3C6kVNTm8khGpV5dNrNm-tEYNHCY3QNJPwotcemmxil_vDLnQTMyfSPHDclSRNV66gaNM__DOdLWodVQ0pVtx4ScjxWJ5aEgSGbK57ie84GImrNHYD_o7eVzGK426TtelfezoEP8JnFKdGV9c0Y_ru11ZpUUKHxnbjBxjOxulRY_qVCFy1mxCh64ahSdIE_uxG_o5aJV1rbM66cxW6Kp-c5lpvIWj2yy0BErm39tGiIN5RrpGezoreacfwbKsO1oCqnmbTqMah2xZ5HCFk95IsdxSMsZHAVAhPbBpKARxIZDlu8Qhu8hfxqzeLOTMb2uk3MADo0bhysN518jrl9zp7QM3hJX0iVE-998TKy_CuwdYLTIawaehUBykRo5YUy2eiBbnCBuNMZSs4ORoVwiyh4n0-o-tASWnsGr5dQGtByb7JOvsLAoDE6c1qZMdrOaBRNIO3Uk6vv2GyLOpih4UbAQrRmLQwhOkuogO1VlgFd2bNQT_MGnq00ywFVEt31-7NBJBWWcQQ3EwnrJ-5ov10LQaQH5ybfVZf4tRPgULt2Tm65vu3GEA_Cfb8u8tK0XZ-YZcqrRhVMSvjc6i5oLxdFU7xKWHkkiWW4wvDHBFP9gSJ5RR6gXnuphUtBDTlSasrhrCBzqmCSvAxFpoxMJ_IhEHtTV92skrxkfwuXFl8unTeRC9_jk0Voh7KRYouNwGbTWX7yzmgG-bi1F7OfNiMVGq8C1Na7YbowiiFOBwAfqB0m8f4JXXLDu61GP2pOA5pQ_tK\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681f0517eacbf2.14041393','','','2025-05-10 07:49:43','2025-05-10 07:49:43','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681f0517eacbf2.14041393',0,'cd-form-entry','',0),(43167,0,'2025-05-10 07:50:55','2025-05-10 07:50:55','{\"email\":\"marcusstevens314@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"E46PU\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/?utm_source=chatgpt.com\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5WKj9zsGDGbZiZaZlFp6B7qPbNUah6RYsshRvWppI4bTPqA3N9NpGxYSlLk27zZcmnjKwdQoe8iplstDp8z9r2GaH6yWyCIQZQ7CN9JlQb1OWhtB2bvRmXNOyCdyaKoT6uKJYoTNi51xLeF688Kl1nmVvLcLJhVpY1EzpvRMI7Yl83RMXnA9WAzEFzHxPuuiDWZ3MPvLXK94UCHq4jJ36v5FyAMokQruxjYsqFkeAqeO2EzCuSTdMB-BYC2KJEFwa9krYLcZXQ56bBE4kRCJ59MreIzt0IcMiVHouu75ScylnOUgVe3z4t-DEhTunB0iyJ1sIfDEtuw967_9lSvGGiyJcxw2i61vCXhxYciRoCpa4BfDmauRjCR-SoCveCET5DEFMPAHxsz-qaTwP8e1IOx-Qro3yU5aaPD4rQDm3Uh7ZARcjcWNJ9V7V11Emuh6wKHVoVNqSAIDo__CKK8eDCF0MPJwqxlRwTJlZEU_-YwVhXHheo-30rXUSBtQBrO-V-2JvuctArXJC8DFqc5TlOFgyvBGUshbzx9ej0rKyW1AsokwAGa50T4PEnCjHEpAUkx-Bp78Ba_Yd32q3ZSb2_-v4v2Q6Pnznpa1Ty7g9m_gbgJj2U6bghM3VbXa9_F5Mmp4vSOR2lZMf3C7z1Q6WW9GHosun9FHssodFGKXH4w9AoU9cHg8B3elXYi11vSSNKJFqTWBFVOakNyTTSuwbPg93JAaZLwTSUufdoNOXXRc-X_XlIsi8Im2SlcQlOu2dNBRLcIkTHR8STbHrsdfJq_iiKQMKj7IkJXHpbSS1nWveE_Ru7KLhP2pdpEgZQouZN1QN-VmK676Jqz6qe0Gg3XYZZIK44IMTKQ0no9BxeKS2CLVEBPSQ0kb8YHmQ737DhIvoY6Zy3PMZn579t-cRsTdFg3FT0hWHyFXFS0VKs_yfOIrjI2nnnwkreR2H2IhfULyryd_oXKVD4JE09yjSqJ6eIXvSZ7z24imlYmHjq9wZqj5KKjyaWi5nc_URxHZuTDVaHsSCbEAMEwSY95KpdbhMGxfJlqKh4Mpdv4arCW26fq-EdLXDTIfbDt5mDE3YdZe3tVX0AyTQD08zgFiweX5zk4E-mESHBpGfFyUbjv7a13jYXhRnTsMr7eUJfFecXF9NbVAsiXtiJGwSzkr2u9QTUXkZsHe8dK_RQfx3dzlKpcZbJ-CshW1Y2MGOhtPdZmcITc0wpyzMDM6fjORAfCm05RdBSRu9RKjdcr2P3Rf_JlZ7JBWiRUNje7G5o7cLBpJ1dudCvLjkMvDoX3ZKpNsAxpVQtzgDF56sIqxI0rAQyPIRGdTvvyDZ2JbtsPUOGua1bSaFk9BwQ2ySi3j9oGpDjvbu3DxrR3uDjOdqU8B481psiJeQAFHfut1uWjImuiHH4NKwAP1SFzoLXmesyL6GswWMRs3llIKDtddKaQAe2PFUMNKfvus23pANtu-43W-PH_Xv0ERl173Btz2f1jamo42UszNsf8S5aDOogaukWRPQqAJXdFX5n2adKd2ssgJNi2anynr3z274Ok2H41kKwgjLM_wqYojD-vhrZCA8JSH0TrHNxyR2JLWIrbltA5dGbv5gG5dYnTcOQn7CLLgVQ4LokfeXi0hRtr_EKF6x6Ra2hXLt--iLYxYnmeN2xBdrAMqJ1smz85Hqk7BlN7MTMxy2a1MG8J9OUV3o6fpH17MMoDyxpmZF_Jh8XKz9r4ezFUQ7_HLdhYh41Ll87rIXMmLyCYx7-Ttj5sHGxTO1tg-sErjKDTCo-7S_AZhs2rBFntaYqVtsg71aJt4-j_NKjwA01_ZPgu-PrJZvuDupwj7nHOIzEs6sVV8Ou5DMEeRjZbEb20PlcFUT0S_fiR0yuUElqoI-sTUSG8yt1BLlTJfLYwWPLKJUJ3TOgBnrygT_-ExQM-MvJCIfQrnuin0BdXJdN8k2ykKDEoQqto9U2gFhyuok7fvRMKr6BXCpIsTnGxTuTRb2Ieit0MVek-ecS0ulSPD2LR4vs1JcBxG8l0JLrEJ2a3t6mHw7VR2xNDJ3_ecHK0XQHu_xeHNXacLyqGAjYEj0DwdHyRiKlr6Rew_UmkQUJeYYIRwKiNvPOU7P2eAgxFPe68-zUSmkYFOzkc11MS5HLO1mG1w3WCE3jbGEalmxyWwQUFozTr7BinlSBjus2gUMT5S5AFQ9nxEh_fmz9kaQUXrHkF5GbglDzFUA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681f053a905e36-53114790','','','2025-05-10 07:50:55','2025-05-10 07:50:55','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43167',0,'cd-form-entry','',0),(43168,0,'2025-05-10 10:49:29','2025-05-10 10:49:29','{\"firstname\":\"Carl\",\"lastname\":\"Perry\",\"email\":\"Carlperry12345@icloud.com\",\"contactnumber\":\"07897586322\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjw8vvABhCcARIsAOCfwwqIOo16HE0TWkox4gCBrA7GXweIijvuJXC1LnXrYlAhin-VIPn-PfUaAuHOEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7xn6AZDVh8ZpArLyStYUspJAL5xQiifwQBsZH5_dq7aFQg4FhCMWNa20CbyZX-RUq6kRwonoEcrfNR2-FPFZ5AunEJZEYWmBLsnRYMpymQPAuHFYYIcWhOF7pTBWdgTn2S0XHELbXBfbrrjd12U0VVPrCUnfJ4YJs1w0kwIiYX23Du2ENnUANAuINUzrQJgy2-byOhzXEDe9wHNKygsl_XgreSDrU1DtfZEzLeGDR0vjVuaZltz8TTDLiS5oIvsaYsebdFTytLeTLQc-hT5uwEW9TbzaAMIT8utvsTmN6PjU_D4AvQmflvBuWfwj28D8muRimYyUL53cgMwCnb8xM8Y6UKTCrolk7vHdm_0fENELGoekD60ttD54phDvbSWP2HCvFD8dpYvy_-EKb1pFf3mGcqcg6JSrKDms-3RzsrhEIeaoucJm_5H2rtkEdBzxtTkucxNYX1V4EYKaX8jjHxqecChT7Dc7xelQdHOZQZAl6JklTbEIyVSq_x3VpWi5coVRwUaADhG7ZvD1lYeP54PJCg7KRozg4czyZMpxk1yXpIc1Cs5_kp1-fphRe99p-XzwLG79dGM5kWDXsIfxE_1qLGfVzMGWENW1Hava_gTJWSvSQFtMGmnzCbnrwmxCfYN4hfJ2dco5Qznzaq7uRy27y8FsFKmqkn-2t21_Yf-PxcFYlS1diFfRVclGQw_WTXh_5zv78TVs2ai6RVLWHOJ75mNR-crkMMGtq4QRVZENQTjCbLrM-egRA5YY4ntHDqbGPN_1u7Xtw9qnxbrD0Zdt0bx10ubQSU61Gzmi4uZGv28YI7ermMIqIWTMuMcEOU9NkmI8fF1TXEC-1Wg1G5fDAf9DEseWbp9CenrVzPrtHjq6M4uWwP5kQOT29hULjH8dYfAbiGNnXQii6-o-8yr9S1RgfvZLSHPc59a-YK47Z8uag3mQ0VzOHKN3KJHFb8_ILqTSOuVNqQk4UVyw7Bd_MPQjDZiVWXeYTIvRe8upnapsGGk-c73vahm088iRWJJ3NNq7MrjXQEuZ4hbEUX5WDqCwxxOJAwdmf2GX4w5o51mJjToRCukydeXiE3lOKGVtk7gDyZwSyh_HexYL9zD7GwhyxfXaV4YxHOvwKJLRnB5xO2BpXhtS1HtRI8KduhQTNXqBOFYiEkyMizEBE8ci6tWv3gyxTidb14H2kX-Uu6LjECBvjw4qzRHHI1Hq5DTebvr0PRMl5I7-It4n_QxMroxxLmgkYIrtp29VcESDfjiawmjAO8GDMksl2pYMxMXMrPnES6yrkUHGcFRLPDH9GjNbJ7LPK_15MuEQcxNnw16xmJH-YveRDZf7OqJi0CecRpPR8WDBx_cc-xvZZMqdQNZTFMY5xWrom-MJCsdCNVshcdMyamo1eo4LfPrF1Dbpf7euA_SZUTLQ_kFdUD4fxOAaoX57A4tLaUpcxFZvtZ7tiejY4KpMa03zO1OcE-lu_1DHYuPenc04T--3f3FOhaqNfjzY0RAy_T0l1WXqYq8_8WmpeDeC6GY3-TORpWMHR3nF__-Rf1vEXGZLKGyFP9xzMhF05kzsBw_WkcDpKeokdhLI1JdxBs-rki9McNk5_7cT_fGuCuXa9vBqi7GszxmsH88TIbJgswBK8PxNCqC2egxjdc3SyOVTGBn90hsjSW7OP4CHUeGgkSwCbS-5FMnF0sf7xUiM4U1JY4wWgQSxmD2jql2mUiGHepZ2vraVGiGzOPBdJ6obw3WC8L_1GLIS2V0000aYG6GvEWCd6LIer_i_s2ubNxsviOzGYxcRAG5JG6Gx_nCOteXCcVvCuOqEsY5N3oshEC_hxIODGi5-eRXHKkm22mOjh0sDgZWLGSbSGZhZZjTWP2_s6OaLhWTRjrFxqLz6bhfphO8A7NokvFb1QzmQaEKTGm38c1YuTxkMW_rcCcf9z0X5Tf_83Meh6AGaO6mmnvQ1hnNvT994Jt6h7SiimFNx6e6pgQZfKI-FiQl8FU4FY3aNN7sg8o2eVFawOiIGKyN19jI3kTbR7eFLKKRiLSH7FerJqekv84xIkVKYhdhtBYGMCpwjjmLbGS5wDLmnsFZNAy6sbWg6_4LhsMVvWPP4BfRMTRUzM7NVSEkXEwpCmEUrEa_0Ul7cXziww2QD5UfLYBZ5etx-Nf0KXoArP7WNemgXaHaR7s1zrFXPKCUd2zoV2viMms5Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681f2f394af5f6.46850547','','','2025-05-10 10:49:29','2025-05-10 10:49:29','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-681f2f394af5f6.46850547',0,'cd-form-entry','',0),(43169,0,'2025-05-10 19:15:49','2025-05-10 19:15:49','{\"firstname\":\"Deb\",\"lastname\":\"Pearce\",\"email\":\"dwbepearce@oitlook.com\",\"contactnumber\":\"07803480796\",\"interestedinbiomechanics\":\"0\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sjM5tWp_n6FdJgx5hoGKip2&amp;gclid=Cj0KCQjw8vvABhCcARIsAOCfwwoubhKPGps8M8FTUfkcJENy2LNmbNsrpTdrBnrrn3e1Q3m-OSQy6MUaAiKcEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7La7AM6F5HPUYNdfsjI56AFmlZCb85Hc2TIZgomSipuqWnarnmpQI_6Xqho1ePguPp49CjtON95GBWfT8lbeLOoqhR_VrSPjC_kofixMH8_qUSEn74AgHVhx5Ou3CGbHF5sfVYQ3pl6-45yjUwXM53Qghx6QW3IjBEI8c76vtTilSMbBVE2S_hqsZfSfv8Kooyp54VWavDQgepzD6QGobB8n8oZbptchcl-zvLnlCY4MJInsC60RhEt3S2cATHmFzfhp2jrzoDwJ0bi11aHXV_MSbZvJ0F4zDMQNZneXA3-SgcidycXSDW0Xd6uWIcP-b8zw-WGxRa1hchM_yzABbt5UNQ8Yl-xtzt6v0JAwrCRCKCwsFjdInqoaVUOrtkTFtEVhzruMICFhHKRUO8qfVlALKjXiz4O1LtlabQ9oiEbyR2remGMd20yH8yzSMuKuDM-kGsoTZdJVLbs1pvJEXcnF3yHAyLt-lJKAb1JLcVODr6oEZQQyr7Vce3N4tSS1MpFa1Iq5Mvwi1TsVjrWI1ZKAb8ytBXQ4UuTberBR9BYfA4E58ZsFemaH8WPQjNHD4sMnYa0_OPyoGEx-5Fr-MrAhu1ZtSrjRfqs7dZAkv6A7sU6QcxnbAF5WU2q9l4Ngi8QjSwOe18Wc8DoSM0iH82Dc3uF5dfU5uTHEzeU55Ltoi-wkzv-ShmUEm5t-MIaGLxscrwgCeJMJlo9jkUl3_ArdJqKBeUrcMjOvDFB2FzNx6rcT8KbcToViB7Ex8qOeiO8904XkfkV22QkPYBaqw673H8axty3DDn4DpLw-CNAEBNbd8acqH77wn3Kxwhc457TPhd_BO77AkuaO9zkio1HB96s8uDDzgTpLhyMHwJ_EqNZF3SGR2ubOdY_VjgxLtSWvZ1tlW0-e_zvU0iMEXYwje2T8LSCSOCQcf9-XI1NLnOWkdr47WuGtzcNT9c82ZnKjR8ws7bwdByTghwJ3vv-CxjpabF4jg-SKksrwkbU0-4SQAjcq_oOYX7j0oJa0MhD2X7bor0vLzCHueWLLC_aeDSMiz3drRifyA7wCKncIN0oDEkI_EPgUG9FzZrrzk09igLuVvbY12B3W3HUF6TD7fHuyWPVtp27f9Q4TQ-NXuxoXTFEpjG-rEc-ppEfqdDhaAoTvwqcYhUtnPQybqO00otRCDXPlL7dKHOdW5zZGXzEXZwH50Sz0yXHztdN6z8xjP5kx9f4LYA_DwMuMkwlh_RhCbf8kCg6FBxesszra3QgYZsUOt7p-UyL98SOfD8tkmClBE6NCEnPPGQyrGVgR_sSTj6TR2bFey8H4ilT2_cRFvnhfZ4_tIu79iAgOUUxua6e3lu1hQsdFiV82IlNt1s4QJySuRNDRX0oACJFdRwY-AjABCfOIo2rweEHq8cbUV-gdhF4alUaFtA4xDXcA17NXbiVjlIV7ymJRlIGqx7EpQDyVEL34rbCsaAc0vFhdm4V09ZUOQc8HJaQ9erZ85T6YlL5RVFktoBD0SCjHCkR6bJciOi6Atfn0rLhVVDIIOOLJEyLfkH8z3W30YLNgzZrXtb08r-fZMvHXRQUvUNpVVD04sh2g9YPvggxJijBLnicp-M8oViSj_XEwlibvoB7aD-bKfGFBK0adutrDlyy4Y8z6UPnUNJnnt7jZvvlP2iDOqes2aBwzycRvuqQZbuoNUKUj13dO7LRZa70lF6tHjX44-osjnoonkUTZC8bScxnMnZjuyTdU6O3eNQjuktbfS1W9tN2c8APygqxx18vs6UGTt-9dSWbisSfUr-OfcleQ1biYUmIRempsLvsGNG7i7P9kctqmivd3-ES0HqnR9nNnUWjGk7dgII77qid5qddcb_y-5TYqA_zXKnOUBe5haZgu8bEd6HXtHuFwFCykH65dHPVg95vSAXgyEiXdmjbfo_kb0LhPsPghTja40FUwogiQaMkbjuS8rMJ9uYCvStZze5AcJCsnNWJnFZP8gGnf4LUxYjwqVdNtKnnpbxj2MdRLCF_OH5gurOj42bCAYQveNe-Z2WyrWCaa4Jn9nmiLjY6eJjuWy8Bt02Rt9jYNcE-vbPGdNCcIOVtY_yRYkKYiyduw7ieWcNxVB81mx9ZoQBKikjaEuyUkk6cD62Nu-ywZhX7r6l-uBIJ9KFXV_UADM1hMOhlXZbVDDikQy3IY8vtpp_YrlLcXSoq1tLHQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-681fa5dbf2d015-02378040','','','2025-05-10 19:15:49','2025-05-10 19:15:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43169',0,'cd-form-entry','',0),(43170,0,'2025-05-11 08:42:04','2025-05-11 08:42:04','{\"firstname\":\"Claire\",\"lastname\":\"Phippen\",\"email\":\"clairephippen.fitness@gmail.com\",\"contactnumber\":\"07964763741\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4x19XTtmZyYVUDenuz--V0nf_eiG1u6H7v3ggIMrQx604S_MNI2mP-7obNXUcr2fclDKJvZOxgSzO2kDk9KfwwsAMhTTfeimsqWca7iMbGVoXWCMkkrvb2eG9kMDXuVCj1lRIexqt5SshSu5ckKT6wEtvd-vVdj_cv3cr_NgB9tRmW8yD9CWzGcJcluB9dHW4z3g4xgchhAnwAYHITeqauk-pQ7ggUrZzbAJSKYf0C-2WmTzjlfkCEislbi09MrY3wgJSZggzj_PRusdIj4AnunzRzsinaH21yEyWZo04Jn_k6FecCmhx3GtHrEHBtOR9AYWaGd39p1nIphYzQ8nGFA5uMKo4PMEGWvAh_o5yRZ-iJ92GUNJDald-LZGUWCb2OaEoGXoiA7I1xtRlc1yC8OrTAtSwITBIiTF_4l1orx7Gx2-nyziHyt-FN7c9w8WixQMQrHQHJramOMPoMq18B-wHi2c9WA4UYaEBUuWvXO_7mq-k36-agN8-HLx_1lJzy0XamXfhfmTvVCRDiUevXamBBvAOluVfKmYLskvnNQ9zT35rzw72WGIcwOMxucWDhMnt9IS6gSslHm57ultNPxInZh3y5Ass_liO_DYbFBOHHcUCfMWSm_XhmHiajcGLymAH7EpALgRMq2R-iC1Rj_7WNWh3kxGjCOoPFWQD41uvdbF_R83DacU7fVTwBiYsRQWKILbWVJPMMiNGAi__qNr-ccYGF45a5ELmxYVG9lIMeiL_Oqo8UVu4xILTuXeF3QwzjhAzNdfd2QF9DT_t25UtiFOx8jQKLhNNjucEIQ0GqNugaCFkaLwJ_gpKjIHrxRfqaDSjdcAkOyp9FUXKc8l2P2zhheadpYyW6AkFlzTec0yv2Ak7NFIlVEjpji5xF0enHbIoiRpx0CR3mbZPoW_Ki2SLnWd4Xmtjef0owklZ4bJT0nR29-viiGylch3NynIO_QFaIIg2b-hch0FXes1c-pAKmGW-V0OyfP-BFsB9yfmw4Wctnt_7bNF-UDXRBN0pKKfrPbsyOcbe9EyOyr-EFuaHsqPDWEwj9IdVW6-3SwEbfnDxXVDNpTe_Jn0Lli2klO0f9XSUzKI9XjYVLQsSmVhdiOA2Ak7iGE9-RyZaRTdV2Nd9Hg4XcDur8hQ26ppSwfrfMCNtzEIomuvG4aC_x3LOZyVgmDMfNbzFXr08Ylo4WDTyIHCOdP6i31JFaHCO2E0qAGmsxD0dkNkQDnlO-if41eJEBBX9WFt9HBIIQaeFVd20YrsKJgZdPDq0bmLtj8hs3_lTuhd1JW76EhQ_DLSZpJqp0whCZtf7jIUUlrRnOj0iMO5xmamtcQXS__EmY6PLHmoFpAt77oHJiveL9GxNZLp_trzW_FvhJ3Qeg6N5whSeJc1k0QQDqfFRvkEhPO2bWZcbXiNMJIw5cfcQmL_eCUQDgMceyd21hX7F5VJ4B4YiEl3JfAD9KTXyYVD3qxIlm2lXJrAUg28y728qh3PcpUhR4znXL_AHQFK4myjj-ZBoohyc52KEMVZutPMg_rVvg1f2OWZ6exHN2F39qmpYSypRynD3TfZPAV8KtziRmlcpSDEAHCuksRGi8qiGi-k8n8f9tsCO_CEExIt_6VVg0RsPSgFZFycpBT4sAQdEpHr4IKaUV19K73JfYtni6wXdh3vWX2eZCDeWWtwgv_n9TUxLoSR36jb_qQTOD0p0G19OvZ-F69Rk5EOTa9KvBklxalyKSwee0uw9ffst6fef0nyR0w6Woswye2Kh9PqS0bw6N8Bib106F82BBrNDq6T2tg0fl4r2HdCpPxIGvaYXqxP341hx-mJ0ebBPxHXVy7CX9Ypbp4RAWclpZBtvQkPlVJMvhk993eb_PcwwY2KNgDGaJfVym4vxUR7cKO5sjNRWL-2K_YnuVU2yYmkc5h6uTOOPGkQ7J1qqQPDOSQoE3-aVHVlsIzBS-kJEShfiPRmTDyuUaPqH0WBbSxX8_OZSoNtDVmS4hROGZWObmtWrMg7FSm9-hdIds2Kbtrwdmj7odRnZdWz2P1iEdWvH2\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682062dca30660.37740806','','','2025-05-11 08:42:04','2025-05-11 08:42:04','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682062dca30660.37740806',0,'cd-form-entry','',0),(43171,0,'2025-05-11 14:28:55','2025-05-11 14:28:55','{\"firstname\":\"Aldrian\",\"lastname\":\"Reyes\",\"email\":\"aldrian.swimtechschool@gmail.com\",\"contactnumber\":\"09613698994\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\",\"pageid\":\"39196\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6nab0-GYDd8CE_M0yLjCRs0iPHRUz__A1Y2hMUKPObhxrTiEak7V2wJA8lIXi86zWccqnbZlsSqhA3PHAmfschVwFPJJXUFFsITF00eIvZRo1uMx8XIT2CcqXcGWiIjdEQTRfNROjaw8krE7rBJzC2Z9nxN0IvD7yXE1eGLeRQ7-FNfyGQTa3mvHYX8Dl-26EbcRnit10tj9YewVdNK9aOTd_BVZpdUEnFopZbW_WHHorgT4bkhT9IcQEuuEJO3GsEho-go-83XcHE9I58w_Eb00zI8kxxLwf8gkdh-gNTJPCs9KGFJT1GF5UM_YrKkkuvGrpoCPBJlM6LJZK68JWY_vMPbXjacXrQZSNeP-VD9a-jIKuCHtVMoPFOjlGr5JGejd_eGudrk2gyI_LZmNpsNHaD57YOoUrZTD9zOHYUPbk8ji4Kscfq1qpHbdznXAT-RzlpJHj82K4gjvoek4UssDyq7A4ncaesz4OSpsDnAOLia5n_cZSGIYOAZ7kGQXIToUXPeOqvprCVHVSXLDLKY5enYomMyLe--YAh62fRR43CIbabhL6C7ZGFbdcyQ9LVY36ugrwpx4_GC07oGllDfwee0j6OTELbE6h_CAtn8U46ut5vRkWXzqL56OrSaBZ_1uARAu5_5smUiLrYl6jJdM91HbXMVOJGp4tYos2eOmaz1F58eBg7uYGqC10vfQmM5HEJ_hm3tHyuSaovYbETRAFLedpsLthvmABWf2tR78SJLH4kx6jEzFQMlbFKZqXL9BTGSiMTk7W_RcRG6TI514SEJa61BWzdfWIBeJ3wIk2V_JJRjnRehTRaJ8DFy47on4KSgMOxS_0VCLzpZizZc7HGoDSZvcQxjMd0Q9IZBzGgLmtJ-cqr1NJm-vrhchnYeTnaIMF0YJKQ8JhgT0eZBcW_4bwEnXXOfcwZzrT1y3rzKI3TVeQFI_r0aXJo1JasW6w5BQgL_lvTdM0cBiLYErvpHci7xqaCueyOdfdrN5RnL60J_Mvk425GmFvUPrgWodDGxs4KX-MzA1zxr5IaDhAVsmK3i0LjB_ngFx6jIA36H4Cskz41j2hivBVW3fFIVG6dOfkxmqdmdmn_f1qqrti-Gbka1GgMcVBsV7xbdV4ERCOgMyzyMUdqFb6be1mA061C9Mk_hydoRzxxFbmb2u69WIhd5afdHfLb9ZVGbuAU2kWYFm3MyKSi3l_pfmbwOYWsi8upgvlMKu8rks6OVMnQSSWVgiqUYgyUOLvPh4o89xgUqYKqfzm31LK-MwLbsTiw1JWOxRMCTCfRNEwJcIvDZTQYWTtou-BvXqA3cbInQc30JZJOwDKcwLX-354UBFyclTqAx3bsjZqqfnO5padzI5jVwpGkXnCBcqG7AjKMaLVek3Fya9z9-1vu94lFFO2NhYTVlAI4kJDbQma8eTRLs2aOLFIN_GAhsNkbatJIZUakkEMqVINb1JoT-I9csdNyxTHDqtlLn174GMd-Na7_5GJgWo7SE8njs5n3Aa8KfCSPPvMkbXRxCD9Eo9aaJ0yq1-ex7FO7tFEQo_j5PPFb-wbinsTVLmMeefooDAI1snN9elsDy1tgpiuKrirehcau2VolMlZ2TTG3rqxAM-tsvpj4rpcJKwb-odCaHmoXtyFztxK5sW3vaTFLtmnh60Enb5btlAjaabVCWOAmtmazedB-aKYecwWT6MJ_pHcqz-HU2oWoTHI3agD7D-q5TTphdmxJY7X9l_NNb2y9UhnkaO6nj75_lNeQz1YqVkZR_JgjYgDXaM6qZIzumGyNIjLTKgt891DMn4D7ZMysVUSebWLt9Cc5jG0tX-WQ8PdvYJw77XDQysMOqKvi-o1Ln-I2xLzDdQ9lJmegPZfZ6riOOoYjadeCvJxL_h1YGFwzGavtVEF5tiIRBfm_BULOeMkPlwvJOk-iBVidWwosswRZDIHZj2OG-EuM8-XuFDNWi7xZGrx7AXarsz-8OuBgxpvSkVAXduW7wc_4urEijivuXkEjbqDyzSdGgPUIyj62cS3XVhib9eplgmpMHAR22N6Z-MsUDCfkXb56HBLYyh-LVuJVIprEwdIxEgLSmdWCtJcZTnTlaIzc_VqkmQ9piBylSwVFwVAoooHm3wjd0rSh-ZxNpeXU9pRl0aRSaruFLrEEefMTcrpZk9ufNtJXSlqyg5Nqh33rPyzBxGrmu8f21JZD_tL55LpNe_GGRsk7QggO2cidCHg-T6Tc-rThK1tpg2dfJ5GiczckkmCIirz9-4DomWXuZCgSYzxJsswWlAeOcZKo8p4ScN9-2Fi5FBw1pubs42J9OhbbPSyryXbeTQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6820b427d22a10.75430687','','','2025-05-11 14:28:55','2025-05-11 14:28:55','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6820b427d22a10.75430687',0,'cd-form-entry','',0),(43172,0,'2025-05-11 18:29:39','2025-05-11 18:29:39','{\"firstname\":\"Claire\",\"lastname\":\"Phippen\",\"email\":\"clairephippen.fitness@gmail.com\",\"contactnumber\":\"07964763741\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5n4BX2RolJ_5IIcgOpo7sE6Bn3hJZJrTcPR2vUdtuQaqp6tTXc3to7rb_SSDNQrohnnPLrgrgjgxuHzvJ-S0NBRyncmlapfJcDAFUKD2lWxh7W0CDqvO9xqz3f6_CVmcRn7qGa9mSYslO92ybc1fFpMgUzJ-3ztqHAXizrqbLqbaEkmKANKB6R-ReLDbzL1pp2P7so_00Khfyj_wdrJKE8Wih8ZofdeLAmS8naYLvIt7Ql3sP8wrru-meVgzJLeqOePja8GnX2Bh4BTk4O8I-q1f2vtTh4_6zaz79ipcxbvTDBLhgQsW94Y8PaGd_KML3XfjiZ5zWRXubcV72FfGsCZ8pwDmbNVLbpHvlGU5Sp9RB91sfKOWSnRPMr8fUDeqnvdyc6LJeRgPIco-zLvtf30BvS3kVdZlbFmrx4aIC5iSj2HJDnGjxl7yBVBKwXTWYcypbbH3BG_cHmSxIYLywV6KFw1b4Ul1EBUdrapv5X2QSyDjOMDf-g__bWoWeVotj44oIZUy7UdR6rxjTVsGIKgoB-AnPbcDfK6P7neMZozEmjvMNXXqjASRswLyFfUvQV7nMbBXvBqsCSB55LLuLl_1J7jEu-J1eQVlF6ijx4L_PdDgb4dJcWcv-KJ9btKA_s3GZnPXRoKMztdQxs1riNZegmqVYqc3q9aLYex4tkFH-waBKKy4ojbeERGMJj5qw0pX1jeFpA_2ppZ1CegFKFmsyiO_y5Wy6dfpiXehsGXMwUDYY32Zc1RIuR4KApsnPf8Un2xezBo4su1iV7iHtHxOTM2DjRjZgYzAeOkVtFabVzNEa_djmkzXCR26P2-3Cz6HYFcKWra0S-_MZuPCTlfplrs9qmV8MWBENtDDkE3Z05AFmCXc_IFxr5iCgJMKu4oHn8Df1ydqTOm5nSDMX6ePonYZUW99NSWLj-lBjqSPfASPAPuLEQ7LXmE-Aw7j_ey-6lFKM9sGvvi3QWscvfXQFr-zOzC-1114BwRFwYaeurYoRw3ZJYqe097x0X745Zkdb30I2QPZck6BTbHiNueDTKjRL-NduXdpuFEWKEF3-OZiQsRa9_ffPFgrn9ywegJL67xQg6yQMU1Xbk8yuTNeqN3dqAownMNbV6sBxeoagp08Y12IZFPkMA7F5eQBrikIsbsTKMJik_4QqDdCh4MJtn0hHhcHbbOv30rfPlDR8-a8FIMU9mOrcr-Jvv0qBRznL-K1gtOaDly0hDhn9-neGpW0hRTsE3sWJv1qYe6lR9azc0UKj8ICadopoA8eX80QwlqUDbzesr14Y1aPIojYTAOVIWV_HCzqiVJWiGXEKQaEmga_vLKu2q4O1qeAdNA8dXq50qNdm0xIYGVzju0s4HmQN9twe9b9--K8kv0QsiF6Gvr1KHEOFn_CO2VzLRT3MY5hYOkvqEj9qTGYUH6PhG4bHTfQYkss2rQ8XD9bT8D9HscVnCEb83G6T2_PElbV9OeDXQi0dkFg5VluiMdAHFGboX81SEcCgjqYKz_tdPv2EwSDetsYTFZQ1BIRaE2yzG_SwlUaSdfYHEWhlwIDQPnNFCIdLfztx4haDwD0gP-lKaWj5X2BOmXUUaCyYzafMtWzwoKcwT4dDiizBBDwCUJ3RjOAfa0EqSJViNhIUxXfSuaxd4_bSSpL9Y26JaRKp41_9Fgo1pPzHPXTUvFBcd1dkpOiBGbCCUqyqp49C9HulhdNSWtzRaQ-M9uvbjq6hFGXCwP04i5AlA5jGxpYNG5NEe4V-MPdMzI6FwcVlQYgsEhIRRghJiuTEMljwuS_n6SKL2JCbIscxHyRGeNyud8ITgW7VpmOzsjLPpR2kq2mz6rW4aHI5gBHLNmyRQQoIvpbhT8gQEllFZ0ay6CkG9pgoxqy0XM-xB6ZiNzJc7QjLXOHpQP2kwKig1dmdSU7K00kpxZqOY73XpD4BqZmZ4e59UP6AuM7XQuUAQueCIvE0SU8YvCQrMP4Vb9QUa6U_dsJPRqDvQN4C89rvDRSw-r_b_r5ATY67ENW7ZkOiF7fcapJyqd7RqUENzQ6XO8SQg4IRDOZ8ZwtkAgLxTuV4-SRdT0LryThcnkmzLnp82HCr43-yZUMk-PHYgSRGXJtoa-34GFF-BAB3eoASW4zlJRFUMpwYco1CGfgPWmSQMxjI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6820ec93ba4da8.19195989','','','2025-05-11 18:29:39','2025-05-11 18:29:39','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6820ec93ba4da8.19195989',0,'cd-form-entry','',0),(43173,0,'2025-05-11 18:30:26','2025-05-11 18:30:26','{\"email\":\"clairephippen.fitness@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"5\",\"currentpostcode\":\"Nr78gh\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6oUel9xNuIY3bm9d1sJpm-BqpPrsJtv_Pr-XdRRjBsj8kxoSTtsOUlyqlmvM7aoljg6Uj7bOvVgiejWPolc7o1uaefmiU_qHIttxLdayri0gpQNTSMHthe4dWx2u6lYnn3rn_imTPLXYjOHIIfkYGXi9WZQsPG3sFOLHLEZiVvVScQt5QO2u7nI6rgWd2lJn3GJplq0__dwP5hAHmL1x6ESp2dELtmWPTXwd7iSiMMZmB2_L18ZHDeK_TFvgIHMPhsAx4cwrTae7RKPr4W4A9vSyQSNAnzQZSiVuGTTbfiSyKwOBCTBK_HEuWOj0utJ9SW8V_FUZBHljYPvJt414iIowf6kerEUf0p6pzO-nr14IXin4PLw0Qx3Mbq2c1JVSmke8M_4SAJNpmiRCgd5HI5W_ozzDaX-HtXXbp8v1fmip9wv9CH1WVxPz4SjkAExRDi-zEA0Ne47kma4IVxGfvLOw1kBmGiMuyLidhSyU5gnKsgOLpazC37AOrLXqm9R5OUJ34qs3Hm0yuQsYZNuyecLQXBggPHk7wgBEWANBrNXrPmEv52D2lhW2MHWt0hHgxJihl6MA61kzqDD46rY_n5xqG8Bpg_V7SYU2-oB_Fqu5DOAiVNNZrUmApLsOSGEtZgN-YOupCCuU8TsFWRijhFNvBs1HbI9Q2iU9nnc2fVEkwrH4qT_VaquH17Qf6dWaFI746IPZdhnAsrnbGo8zbjN3dCbitE24suBNEkbQ8gV0lBD1vm_8OHlI9EPxZNOE9ooNovQpggznzvLMWITKY2EpQkUuhKp2h-kVn7RHiOhip7dyHtzHcVXlYIB9L380c6RENhe_y0-8EhsscG04bOeU-eECvGtpgXq3sBZg8_Dv4EyyZ9vICVtrD-roVjMDSqyTMt-vsIARpr0qFf09FUhb8mwe3fWh4FHKDPB_opUx5vRY3AIOGXaMJuI3znW6SNbTNLMOKSg3F4gmjmh3JmMHItk4GUtXSG1R-QuK5rv_Ndyx4GFTpCo4cAtojmNoyXn47Adip5NIN_6stAQs2gymwSdQaJebTx4MN_QK2Hk_u9sRdwCa-r4t-_viMjbfjHuK9cGKkPK1nrrcpqwjytwAkrZbFhiDpqQCLQye7_qJ9Tfbw6K1mEnbwb-8FAKcwZAb5QqtUHpm7K3nIUlW_hgs-hzWwOEUoXRhUos54NED9o9xb5cEut9C4M6BsSFYbspmr8WGd04ySqYEzLk8PYpmm-6tJWv-n3cQmuBgVOhRGmW6MH5E1tG1q6KeueKaAFV8tpaVYtT4YYg6S7YT5XJW0EuWi1IsixDRAeSjd1ZczY4t8cWW8-t9cJ243xyCKRuwazDbUAYdu4i50CwSLEfUL7QjGjZxxIApR1kQYKxW2i87Zh8AEkFtyW1SEff6E-GO3VwKIzkc2ggJ14RowkjZBXrRaQSBEzPVRcHlqUP5pWySBJd4Bb15CJtoJmY4hyYUVF34UBjNfDVWPhO02aNkrSVAXVc9Gm4POHqRsKKize_hi9yJJAOR3PNZvJMfGqhaQUlRWpHvIaminpj3nzsAnCTYL_UIst8Mho4YWZbmIVgZDLua9hKRZYZZHIupQ5y5s951D1dFB4RmgaxmYWxP8BfXWPzLSfTZvbeq19q1AzIlLze_MYv68vaiasMCYYu_uis97LjlblJYysFYeJXoPTpLaJEuugKOas-nIV5uhMI8GeBRPo4_tqwmknD8ihsqh2QtUZONwFAlvf9QKoBTe4n_2ZdVFt-JZiMhulvGLBZuiPFbWZshDiz33roMHuLQ7BMleHqA3-kwc1j9vGo3aFxJ8YuSQtcUwNr92US7g_2d7o2ZLDt8exo8grskd-YFpObPmtt2e2nhJTYGI30sWi7c89SE_tKWaCSzmakxCsyqGxa9J0JcUoVHinKWyXdoTPQn5gdv9nGFSPRmr5i6KHbHpGGuTQjKq6HCqXrQMrU3QA8S8s5Yq-HHmBr7J6HsS2sVBt1xx94OGY1NZEq4M2KCPiHj7ABy_qw_8GEjgEu98MnfqG3kceH1HMGVcqulLdw8McHiLqqmWr8x1Qf36uou-WXBddGIDCCJICSswn4y8DMVkIisrns8I-ewyULri5y1uTD1qEeo3fQBGPBGYl4qfAgHk4i_XxQEkeD7QEwGd2cGOHWhy8yq5FGe4UkfSv\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6820ecb1b80120-29272139','','','2025-05-11 18:30:26','2025-05-11 18:30:26','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43173',0,'cd-form-entry','',0),(43174,0,'2025-05-11 19:08:06','2025-05-11 19:08:06','{\"firstname\":\"Jacqui\",\"lastname\":\"Addison\",\"email\":\"jacqui.addison@gmail.com\",\"contactnumber\":\"07402965057\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uIUSTIhA45eQlZipI9QVpJg&amp;gclid=Cj0KCQjwlYHBBhD9ARIsALRu09olDHdGL8pXnuyNPsG4HDbw-zt_ip8qRK0YQ_6_1cRGZ_Z-Lb7FesgaAo4TEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4uAe_DbxX8xA_EKWReY1HWL0s7XPHJVVl2zvsElh2RzG7nm3X2sW9al3CNmTorKlx1rDspBkK3KSwHKx4Nwo2U0e0lystPRie4wxQG8XcDJN8joHUlbNRogcr6yHTwCVNhterR7uKJShAVYvAbem1z98-JKebeFUhw9y3rReDaXirkD2kF0qdnEDyiycz5i5ppBCX4PiWijdosmIJX321ziak8LIWFk5fZ1bwYgq7UXStIbmHN61DeurT5OtKcX25XUMv3R_4rO6suxc70d6Tun7Eaxy1smgtvGnin_-wxRoOCqgQ2fPC8b1tiFtnWdhItqG8Y59XhmNj5VLFUSu2gNNkmOzJKgf3H4QecrEhrhWTv17FL-JgUo4MKOGnTpBxY-lk-R6NgaQrU-Z1bXtrwg3wdlBnO3w-7Jh34O1TjPPYGaC7CYqeDjXMNb_ZRMsVNG_QQCVLoZKUTPLWhl2EaKn-PnJjUQXHr4dvm764okjTWIW-GBomi4e0fY0ZVisq4iFvZrg5133mUumEcFWPv5mYbwWaelHi9kbebIRwj6UkDzQQ7aSvYv-9kq-hRdgvZKHTn4YWi65cp3htt6RSBxWljxPf6M63xcvuduGYx_HVB_JYws9Jv0t_4q5rNarj7Bdo2maIsRoqKO7RO9FXUzqr1MMUfWE5gd_2Yp3hPAWgNImDumFWqZCf_IZOpHpNnnNXMU1jAXbcmUfaSfm5VsGNoXnr9cde7SuvhmfRWIkmKWi07-4sHjPM9a3eDE3NY5uVjuJ_LQ2IzZ1NnzU84tvxTJb7AM2roYgedQvmnXVhlAfs4Q2MhKyNLN_lKMR8OM6N7Hrxocjgb8Pm9YOuBOto4KdO3pyvUVIUEOWX6nNj2dKU2ToigZ94nWfznDxxFb1j3HIyrd0aJPR1uScDfbE7S80xN1D-T5iAnJD0RVexIfJk_5BIKeWMZGpME3HX2ET-F79vHZrx3eBMLb2JK5VRaN2n2Ccl2MjiUDDgeKwrEFdCgPelkcQVxVreaEjpuhSzC3P99CixqRssHMrrutopesROOvZL8CT7eZMEvRVELc8QkWRDS_ZpbmmNnaC_adBsWwEvPGKY_FUPr9BiOjWSsfn_nb7VpSP55vwaK1N9rYdx68_2TdfNTuV2jWnyMB0BHtS36AcUX6YJbQSJktrdJbL-XVm8TITwJ01xwKAH8vk-uc2BDGcyRLQQ-SMNYqluwuqHclXHVbyImvRLfcLv9J-UPiIYgLxCqNreVh40arjpEQ_-UGMJKmpBRt56rgY7bmCyor8Z5zyGBS1XZwS4mVfsbATwYRn5PSGPyPgl-HNIv7aCRFpqOgwFb1rLMCmcr0U-w4ZAq5vqkPjVI1qIsjEs14IUj7TJMxMMwJ8508CrzYBy24sAbrugmoKku3NuRMGBSSNJS7uDAd_OhBo0A4S38KD9eEWd1rPLpwhYRiHcMlwJUSAYhGjnwR_Jh-sxsGCgDh5mWCEUaykggNP351xemZIFx6PY-DHjxZkaao_su4RNE6f4q6I8tY0tluAx2-0Df2w6MoaMaL5Wmj59dOcu22_rByH-3rvmZzlCBboHpZEk6Dh8Vq9AjB86L2Tyc_1oowHf6cHaYH_yfqBp3itX4EcCORkcOUUdiimPmTByPDlHXPjPDcWk1cXUaJKA12IyIOuaaoa4Xytz3VA4YIClasDcjcvM5luckxwyfeKXvzTQDELDPg4IlbcFCpZp0TPFryzfDhA5_BjW8zxt9ea1yjKTFs_H05y-tvoh2JFScxuf48l6J8g6VcYGiohAeHLsn9M6FGtzk4QkJAkoKhbBGXV1qt8Sc7d2462ZWIh3lMpcEtbtXbJs74D8EB0JO4nmNJziltEPsr_WYs2oQk2MKh0UABwx1QWy2Rko-k0DSTMqKjqTmTq03GAC0PyLxsOhFpk3ftE2EoAEC1mUCYCW2TKAFRB6FX9C6D_LcZLbSrg2Kxvad04_m6XIRNKtEQTpReTdEkqFz7Z37CvXQ69lrDhhKwB88eIw9GtdGGrPzACST83CUDTH1IB8FqwZ6mSA6gTlll-oRafEb7cgJ6bqCxtrda0CodKHXsfI5OgCaYTy79yk43UHJ5s2LS_-khfDmasP-gUJAZAJzoecTaXKOLxBQ27sH9qLHvJvC83Iyhkv9yIjVA9SO7UReRijR\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6820f5967bb477.75888903','','','2025-05-11 19:08:06','2025-05-11 19:08:06','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6820f5967bb477.75888903',0,'cd-form-entry','',0),(43175,0,'2025-05-12 04:54:49','2025-05-12 04:54:49','{\"firstname\":\"Eugene\",\"lastname\":\"Churkin\",\"email\":\"churkin.eugene@gmail.com\",\"contactnumber\":\"07766209902\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5QK6u8ZE5tJhNf4xbVclVT03HRv8rdmHsjR8NAWqcjZ5T0udfF6UxR04pxdvtF1h5E8kE2kf4Y0Q7SEXX901GdmP2OvUWI85An47v7rZA4hEj4l2pzWTCSsWSZCPOGUmy5EO8tsaPG1weu0TZ4BSupJxzsevVyrfoCFGkG1lqQw1xaIEg6LFBhFjRZTYWJrHPMoENTGZFHYfr_4fVT-pYfxDWD1PQmH6GDGfpUTkEJlTOMGp_Zy0KlWbPR_tz9dOmKyLCymoQ9htsii771uB0FU1axyWR7JeoCXFXr00Y7hq339iHfcEZImgZxaVEiEVkgE8d9guao4pWzj0nV8cpl__PlRsgIBfkoQPhFV9LxK-khV2BRjgOozxyUYdQ8o6_i9cTuZubIDK3jzi063ZdTkwqb3nR0t51S4pI4YUbu2vLSkv8Bu7372aVOTFRr3ukfbQiPNhJt8-0lJ2PwCh7sAgWbkpxUIhYu9fAgVIHPUhqn2azYI8F3seM78D6i1E_tEuP9Pxaq6aHUl9od04RnkWUs7w8LC7WPCDb4XL2qBn0A468KS3BNdikUAVdCKa71md656kyWgwrcFwQUY3aZakRSEBdE5_vUWxeb_WmmNlSFe6wxgex4Z8Mz-gtdpOd-edOhKWHbZwgJRdKTendJ9shJairW63EYbw0ZIKf1ppG6zo-ymCxDyyLRFas9W-1mEhSeZZIB1tB34frKP5JxzkCFeSFyT0Gn43atQknyfWXlQ1jOgvRQ0LxPWXH-fSY99yQlZHV1QOx9p7ojQpMgkHRgRvBL5ZNZvZi2WeBSOfTOU-YeYy9o7oLOCe36N_wP88IjdTqBDsv-52x3VEtTulRQRFbh3FABl3NXWWmmFlbgvHAduP7isFV8Nwr6VTFh1n2wmVm4DDfHjSPGxqBDZVGKldtbtbY2gkAsptdWx_9TfH_dYHqrRK0WuoMupcS5hQHT2m_Bfb9DEDsJqqnZ-F7jj7qGfDt22ROSfiDb0J9CUr-Xm0LZPhAuvvmUD4VsEBEn9vVFkNJ2s9AELWFXnbk4rWEOhxz-aVEe6zLM-y8Qt7qmI2ht8WKO79HU-Y-ruXbkeinKAqz46fXNBKAGB81EwpTcMSKHXbcd5WkcM2h-mncPxuyMdEWZPYQErXAAVqOPbzNHLThot3A5Dh4zSsW_sIlVDgH-wYVkUZq1JBV6msyMsabl0uzQEb9ov4xQ9J6cUzygW2Vtweq3pShskiOnvijSBJZFRqSkwzS_8DrBTGs4JDMUxe4rg_ck-vQAyVC_goOSSj7MjEUPBwe64iFlLwy-CMkzBzSDtCTOXFP9hfIfpuF0RjI6EEGdqmgmwquCCkKDs2isg4yUVBlxOkNv_TeLoQbJa6HA0aVqyGd7m9PToT-AQpMXrAfWhOwV4LILO8kfZbU6cEXmXwhLATTXpEYLicrfdvKa26CQsbjEZ_jk0VFMEv-q0S0aCOSg9HJbwfbXJ0h0pLN7CvasVG01okHyY1DSPK-Df-G715Hq5RKx_PDUOcREg2Ixsz-p2oHM9sWeioLRN62ddEsfnBjew7gYjOQeyAC1Dx-7CXNuGcRyfDSrmmhggHRtBlxMm-m03FGSXn8fupGcG5jk9Is88ePKrVctZqb0mqcHMiqY0ALb2srzTQPX2kru6U04sf4KiihNlnJaGwR-C8iMN9MaAW80AnFexAB2jpw3BaaQC8JCkqqfyKkdWOG6D60ZtwjF3LtLpbx8oFwoELL3sA4ywLTP9hsUCAXNAGbr2x-M8RxOzb5ZoWmJdgSuBZ3Ywlkb4_ygPL-AmEp5zRupHvHLsfe1-y3kSmvNnyyn7uZdGR9P9VEZz2fvaGzMdx2tChvsgsM2pHlPhuN-ZPK6B0l4ToUpX2VYvZdjykUqvdmnU0n0uceNBiQha0gdSwmjYxPGv2yISFsa4JCViXeyD9CJ5oFD0CnQQRfsAiioIbU6ePB4Yc0j-V5d5bpFImT2uN0o9d7xGXlLwLsFntryrMcfefmTA6_CserAeOioOcy9kLfkiYbXJARv05nV7CdVx24TRyhoyYy3pkaLg-yfJ36lLtdh9tlpM6JQGe8inEBybSjS6vxFhOPo8YlbRg5d2C-3G-ER6v7Sp3H1WgZNy3dMlMapSPZotPwXXuKOMo-pIFPGDa3iOPt-5U54Os4Vc-_k\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68217f198cdbf7.01513360','','','2025-05-12 04:54:49','2025-05-12 04:54:49','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68217f198cdbf7.01513360',0,'cd-form-entry','',0),(43176,0,'2025-05-12 04:55:44','0000-00-00 00:00:00','{\"email\":\"churkin.eugene@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"E14 4AN\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7Ur5tVqOut0hxXFHMkLA-1uLT5-iqyQJkv4yDE4Xt7eJEy57ML4JFEESLL2GQB-QX_QdyzTYQZGcz1lzqh7_Ng7RvZ_rdUs0ljfxp4v938gX70s4Lg-l6w4Dot0sl5ty09Y7p0nHcaEeaLhbD8fZXZZy-HGQjuWvWN11C7GLPTWpnLZuLyBlwdcI4JHrQpbjDFnPjxNkHcPvWv1kzoPH3S0VvGwbYzlLAvJazfBY1ZqFrI-C2iSh9qknghYECABWI7Hf6v5Z1Y4Hkh4W6uSU2L6NybsL37NtjaH7qSFtCRtbGz_zsOocQ9voNFFUVE5pd9lyaVFpGCryOOEP9LEjMgvsq7UeYs_fsSZO5MpPL9xaU0P4cyecVCpPigOLSM2HrGj4kMEE7o4OLOJkceILpZs-H1JnvP_CvUHLxLJw74Vbm3Wy5QThapJRlo_jMbuhqRrjCFqktrS7O0iUVnvUxHmK1P7dKWP3w7eGEsjwkBWGTkit2MVKX_OLJea_i6B1bLPD5WSxjcBEjOezojd1laQsMrDxQPVg-rz6frjx8R_s_q1Uw7w3UOJMq0O4OF8MZ-NsRgjVN583Q2YIspTbcsbRJ6BMUltX7-6GCmXZOrh_pAwtsK2B2Rglz02pvFfMaUPrD4EjbSp7qSTyvjH0zByhvU_BSE9AuLKpXBlWbpxpD5NzmNXbqamcvAPKSZ-odcrUXlDyIQPLDbPTVr18MF7wQHTbfM9f1AVo4XkHjffbUEwOEpgvY50G0n1B3YolRHao87TAhGvE8V0sPH7VoKCPz5WAhJBNgl2DAw5zHKUylgVnVuv4gtYhqGvFNpVsNKthy4vFgkXlMQ5guvnJ-fz9zpExF6ZfpJP0axHH4GdhTfY7DgcJo9efoufx27XrCwPWBr-5kxcecPQjprAH7cO1j-C8DiN6dBOpFMuPFHFUkbQUqQtj_8rKacEtISnW2JVZ-OZZMg617_OM67UQ2weYhlh0y_SEFbrqfriThg4ABnbMtZTamSKc621ZvU4Xx4vO54DC5sGZCtROwz8z9bPM-g06A6a-NWAXfLqSsU8Y7K1HWh6dsq-FAYgzSXDbRKlJ1prwx2llPigv8DYDCXkHKKFBYXMlYNssPPPXL7wbbbJh6cnCBRv4b2et9OMHEmzuy6FBfsByos7FVCA9h_miDna1kWtDr-3xWUfBXO1ftuUuma6DShVzj1kWTsY2oQlxDuynKORtTgNYx5gAmLeoC4_P2c_Uz8TDjNkldsiGRjzD73dp6cwVOgt0dG-888S3YU35z9gE72DAo5lZTu2UXoqXgceO24VH9Q4OERxcW7tWsB6eR5h4QEaiasrO5Mk39vB4JVcOjDlXB0rlEpciPZ7K168GcnCTNPj1_YTELaHaNLEiAb4epGQdpmSso2-7NxObkF7ljFTaSZnhF738EcH5548n_unm6CxT63pnGOmu1NuLaovH20fahCykkBVt8Mqm-ffSJWL_hBfdurJDmFmcYN9J12avU7vvWpEoW_p6QT0UMhR9gXJJx_iAoUAJSkmHeJ9BiYOMOWoDPlhn_XdKbRxAadGlEZWP9SqJaijVUwZfQVvWLlTXpjqA14riFueLR-8pGLJJb-Xe0vYI-76BUm9nsqRmZ-fly7dRxd36NxwEyDnhacd0u5UKr-sQMgm3DFu6K0fOSWSowpyRR0MOHt9WMd-kuL3bs9fN8KVTpRnFtIwWUJb1Zeay6HR3lG6uO6s1CwQVDrNViZN6qVBZOIipe-3lKaiekWWeEW_vYzWE4ceymmh_p9PDMxLSJyQWuEKbgxQ-JoI6ow0kZW_us-53-hhMaM-ac8eMkYMvUfc4tgxt__1Y-4HcpFDp2VsqZKlxmGC0uCvWl8iofzVAeTYLIRyAx2bP2feBYia-N4K8g0sf7vkJGpXnzbu2RYehhid9TOPfqDq1IOibCmCVWqD-t1dbaPv3SSDuII1C8D3NflucstqJnvTSl1vDbEFfugTYrT98NUmHy__X49lGVTNNusjQtVeibk7gIVN-taf-mXqUChnolBIZRCi8A6KsvpDad71Z41rUBkO5MLTSVXwXGIIwk52_ONYDhb5TZiXAvziVOBdFeBAruXvxDqq9nD4d5STpHhTYBj9GSf2uRG1jzKJauWTihG1F5Zq3nWfxpQ9pGhgARRo5fIHiyC77vplSv9MNuRmYDqje4G2Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68217f508cb4d2-15330181','','','2025-05-12 04:55:44','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43176',0,'cd-form-entry','',0),(43177,0,'2025-05-12 23:10:37','2025-05-12 23:10:37','{\"firstname\":\"Liezel\",\"lastname\":\"Kooyman\",\"email\":\"liezel.pilates@gmail.com\",\"contactnumber\":\"07748037805\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6ViYwwa5SP4jWoL6b895X-32MuSCDlaezN2Bb1thmHAukeNcK_g8T8OGU_Ac9sVC9V9GT5Wb4FbjSwa8v63cnBzaH1gqguKiaYsENiSZuxbyuIHS7q8rpkVGK1hzBANCigDBXv2OB5jeWLeP6xBXeM2u23S50_v32dxvDs84tgVL15aYjBVw6MR_c_C0mFeFr_Ci96v8ylRaptLzIOzhY9mQH_Ydzp0flb0AfLb1jXBL5Wjbiw8PeCxRkwStava1x8ooVJiDJJ2yGUIB_YxepQn7-6P-OVYf8CYwe0AYTMkB91YKmNZqT-JEPxNHSIXmII1tbVG3KxZbpmgXEH9Bq6zfiiEeRG2r5NhTjHk-IHN5ZTnUj4RTAH4hUx09uovNBvgPEPxFK-OF-OBbweiZvc1373ti4UwB3VOHZn7HGBTfBKY2Srtplm8IuUA2zlmuhKRjO2GrwWu0qwsrsEHZ8FghxR5b8cVMmRttkV3XulBQCncyvIX8yf9nU26wXMOU3gUgbXX_url-HaDbkVCjU0ftdOf-z5kiGGooOHp11Epq6wVgFJH-KPLaySjG-HJ41zxfa6YluRWNaUJxfApk1NSLDQL4ecbiOkFF4ep_QQf1F9q32si2d9sXbdb27qwVtUQtiFA8FtKWpYIPA87lOr-ITMNBLVfrouocrD8nh4PazhrMnarid9QsGJ0Kshh1q28HRHMSH9g3szE9bb_drgBruBV1MOFxAQsDHmYLEDi8dAzynNXlAL84Ucb8CSsC2_xmORsOLJWBn2l3j3njU6LUD9w-nPaEvNF3zt8OsLAO5u9vl2CxBMIHUAvWIaP7aB4bjOwdcLo-2pD6D018IagKXo9y6A5zcLReRbJAukDLZ9BC7ig4rLOT6rPBr-Id1AylYVy4-awAeQOLLFrZVvkVKQCoNji0ipDOXgKJ5FBIs_TU-uxpl09Z4ez4EaY-w6O2QS0DeM0AOW0LXv-KoPgpkZTzJR3DiwolytyyislPuAVSwI3zKtZXtarlHeO3fIwBw77S0oQmLYp8ZaJnbCSqYS88DnM_G0MUim4ZEYl2FgbkNws_te_ldHihxlT5pNsDNYcOGAonSq_o7to-41uvX6rgug7Kk-xGV6XNfQKKy2qVLRY958ZFFoQ7PHnBPhsPdAHtUhvvtg6FqXLCRLECuLaHqYOfML0Twy4tdft0LFS3mrGaow0WH-0ZXA70f0v9YXO2mEerudRUP716ScLTg2adnqDkh209aqoFOfXpCwP1rWX7gJTrxaRDRInK7NUuWL9uXIFjJA2IiuBMV-ydYpfTl88SEHcydzxYrRPyBH6z1Tn0q7RGUDgb1628CqD8nrYGonExbo6An8h8TA5dgL8xsEUUTcp0l4VWLboA7rOBnroxYrteMgyCc4qKyeZyKdkiIGsZdA0-SF7ps0uCkaeRc9w_nN6v8DJW375Np7z78gBVq9WRZyiZBoy19jmNte9WteYR9fgO8W-S12pkNgFvHc31knl_6svasUKc4CeDp1HiLNAlKyX4oQkcW-qksWQ8XelW1FexIJXftJTA-0MQn5Dbu5SPzzFMLVvw-yqk_4lRzjcvVFYCb8Vw1tLv4oUDu_7wpmRAF0wnbtEpgxjtQLw3QICzB0q_lWg5zssXC5uR_jJUCcDQ01Ma6uJSW1i8VlVsSgYO9PgAIfPn8Lxcx3nk3WzLFek45OI2HYC8Je76lkD_Wwwpa4zx_umKrR54LbBLPEB60MoaUs4EBqhesq0ZUcJa8pZwJ_SVhwILyler6rTa8lwX-F_VnOIRjX5oV3OsAU3GmK9oypw422CazTq36zP8_HDlB1cpDkfjdr6_YJzTi-dQhpn04n79_OQHELZGggLlGDcXYxmUrjHDhB0cWxynFBtFNYI6diye8mqjF_E9KFyWoVQvUaYhZEfPNjG7nNWcBiE-aTsspHcfMWUlw-ao6oZWXOChtVXQ6yt0-nNVYRK-uCSzs5sNxiqC8PLyiNlWVAXVY4cZ9Xj26kFMjks93mKrVFmI2zetl93VNR9g1RWJwfnhUNmd9lsW2009l36OKBzXoPv62h1ahLwS2tmRWbclWfsiS7365R8aO8m_Bj7WIiSlwUsrTZPCqbQLzUw4s4uDKMaR0seAFN3tKthp4HXM_JRAQURrO7jb8wbY5zAPr0bZ9pFQvF\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68227feddad249.64531191','','','2025-05-12 23:10:37','2025-05-12 23:10:37','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68227feddad249.64531191',0,'cd-form-entry','',0),(43178,0,'2025-05-12 23:12:29','2025-05-12 23:12:29','{\"email\":\"liezel.pilates@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"RG7 1XF\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA57J3yUEGpQTVfzUTsf_SLz-BhbZ6gMJsURrHUg7cSO7vU1mVLJrn3nvXigDJtPjBfDV4_sKawcSQMbz-kdr-r7kHpOzUFI6nqOoT2WKcyZiTMtG5tQr4KftkjXK6Lng0km46hajyoSWiyZWfxXiXDHF0R0oHSc-M4kn3Dy3rd5u8HHilsteUyINWHVaMlXiQtg0RST_Jj_TEixXe-czk9AyM2INcPUd31h51NhWFcKjI9g3833e3gmxCqG8QCl32xJ4RWxQYuJmAtovadWLNEcGfyUTa17JFQ4k8TGiXxOnd1LMomrKAE8JNhejspQApyj6gkSb0B0Us-YsOY2s_yf3WS3V8Kk85FFrs9Hly5CZLXlbfg7H6CEPoUHs-LLY994mMeC_5YoDlvM_Am44BKS6iFOtGjC-wdfXSFFHKpRZmKT7eqG3pbj9enz-fNErDL78E2Qec46wAapNKQ6ffqmjAXWxG3_W3G8DA8CmbPLXBfAZOCO5_WBp0V7ECQErK9ZzFKDgskwbcm3l7f6PAmSxcp-Vm3ZASkSYd3Jv3NiS8jBpj7lnSCB5f93oIDfgz87SeDvZjFD9MPMm_V5eT-KN3W5l6wZQmwXJWTc7DuFopu4qUzrcMxadHX4SixTAToAdaQ0HYjF1IWz7_pyWVj98vCTL-B5R63Oe4pqOfYg91zH66LJ7T9dpOKcQadNqmULS0TDvWYCanevwjAOs0hahWRT2Vwxh3GpDOMsK6Fi8xEde1WLncahBPNPBH6mZJWRiCEO7XDrmlZMAvK8A3o64tIwbqzu5F2OZ4CKYNdsTfZfGtcdLeYsozTM29HcQ0kuhXkK3sqPZuHVrkk12C3ihBWNUhUb8SQ74Lf2BQEG3VZj5TvQQ8qZ0y_-muhtTNOAMJkzCBneAMttwV5xwjn_asAJQ-CEkwhz3wHG5ru8xzI9-tFWk9KqChRhv4ArLtUPd438oAto_y-0u66ntgA6dnbz5P9ebqSw2ztxHVzAz0jbOTmDRdEgvLwra2VKzNs7rl837Nfc0cAodV8OFT-aihrPyuwyuXfY__Rog7uf4xKjc-Jeo94DfTjUaNqfXoSbMPBBUT0RSKaiwqa7r9aKzz5I9E6rhnkgPby7AjPiD4xeEJh64lEd8AByJgugs-5WaHrJb-eswxXNZgg6PANziiQQ7D06cG8MO6v6ggcs6CD49Cfrvjnhuvy7LPjvu8txX_9IaQRlXubA57iOD4KfiiUv5GA_FnbgDZ3XnLjtk85BoVg5h3WeiwaVRNSyvYja2LurEGpsr8tZ-A5PJ3lwwUV3ELmYAEcX-MGs18GTyTA09DBwkRBjVIu-vll9esaTPJdwm4lNs6_7pQ9IgjaYvGP5E3NuHnlydoqOHmzSToCbBExZY2lwA5xzwPwggmMtuDfWMLHIZpCxJZG_M2YEWBxs2O4l7pGtI09BEFEbGA5nVUGOn8CvlVsJdHuHPUy_1j-dlBMpZCTrZc5QpBP5mwDZFAY-11bP_GYHmuS70PDgPQRXPU-xqo6i9UUKxJsevtSI8ZPD-oxSCwgbiaN2MNFkmzLiVnJT-rUkr9X6MNR3xJHv5ePwhu-SivuuLll6LLia_y7OiNptxOIwTijZzZdOumiV6siIptNGQcScZOlDTJJ6upH6EtCmg90F0LTlKFi3eKBBn2ysxOYcysCmYynlZfskw4wT4GWM-rG-VuLFGUsv9VPPNLQTHDmELcrP21nCky_I1gouPFf5N6Yjubj2t9js4QO76bs1nGleQn7hVPttVhOOaYYtnIs4n2Vt4XBu5Uf6ANmrsKiR14i-WOhCoU9YpuRKC9uxflX7MzwCRx9Sz3PAONBKIBtsRiHVVF8Vi9hVLyjFV9vjNBTbqzLAXsYKYlDvpuS6O1yo7B5DKiEkuPzZU62SUhLgxDq7FKy0Esyx4To6LJHrNZwXcyil4lDTjvHwmXmytBTgJ0zV2_-qrW3ewQykCwJYwX1GxCIsCx9sqCN77RikC9We_PGLKGQfFW5GvJ9q-5IjtSN90uuGR4UIAvg5yicBtjOGmTAkfG6WzGuKvma4hr0CUC0OTSw8XFOk1JXd3VmmbAEy9HrSUutRSlvwQJyxPy9xJ9ufQj8AAzpi7rGgm0DGlwX1ggPdUpN1cMOJYnUPnCvBMyWtfCU8oOra4j5ty8uoDrGJBtJejOlzJTgH0HESY9sy3Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6822803055b4d6-08613667','','','2025-05-12 23:12:29','2025-05-12 23:12:29','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43178',0,'cd-form-entry','',0),(43179,0,'2025-05-13 02:27:23','2025-05-13 02:27:23','{\"firstname\":\"Shajra\",\"lastname\":\"Tul Islam\",\"email\":\"shajratulislam6@gmail.com\",\"contactnumber\":\"03464746848\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uKw7b7HToDjEQ2w-tc7Tlgk&amp;gclid=CjwKCAjwuIbBBhBvEiwAsNypvaMf-hp1Lx2Li9PYKwvPUq6iwIKB6YS63sBUVuTgSHdEXuBrA7JGwhoCUvEQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5oCfZ-LxZXE4LeciADUeXRistJiLot_qBB3DHnQjixjL0oFTS2zPHbZmRYGY6D0-8uqZPg7cGxK2IAW58ODutzJizXgIJqlAByjsYd6iegvPp-j5ijD8FnQ0BrHPCyquoKaU1uq51FcjBokVCFNEEy46xjVrXIYrA8KAl8v7BA409bAwSEHnSrzKhtyMK4F_mgGvcZYRfxyBDg8ZWQqcKpxaWov4HnmVtetn3xHhTwv4psSusoWSM8JyC-u0177pIllHUgr6gneu2uJ-do7z9WS-OOk3fb76RLabufa_Rf45i94u6PFFi-Xkv9NoEH8Z1FY-BpXURXlCJ6-AZsTJln73rykzNiAF9TW9L3DOuKz2vWP9dxhuC8xV7bhkWLCUC2FMaD9UIDAJ8oTRYvqehuqE8qzQF9oBAyy4MX_t2L9awOnymkAGT2Jzo8uLaCbuuCiZqxMo7y6ea_XcZy5MkbD7Qm__HxnZAACVktZkIZKD_i7vRdDTu3U69YoBrxhYAKN-n3Toibm5oCt1IfOErVyLDJeVcRtAD_37rrCNYF2wAv1EALXAk51zXI-r99s1067yZHbIVrBYcgqgz-R-SdlPeddrNbnQprgWmPNYpeBFkfuLJJqPFv4AoSUDlACGGHPaogWu60UjP0TbOvi6f8sVhQcYpto4o6SSfvDA7CKoPmfPtH7_e4PtxqVYoSs6-eOHgcIPxx9HgudHPKZdxfU_r3mq2c8Z-6Vh6yyGLiImrC7eo50YX3BcqacSnSogxfAXEkRJMxcBnEVAzDly7pHYjeBqvfST4BfTLrDAHGuC6RrhT3JMJr8TcigtSMkcIGHT5QCcMX7hg5qk6pjHPr1lejCE-0TI93xPQPH8SnF-VYbzeXBFIsdvgKnZqMHee4nU28QPAPJyqreVJfPQJtfB-Dj6qusC33LhjVLw0byqiBox-mhEoKwbqlIF2GGQlODtHwEBR1ldxMjIN9-TE4CJY-P1cjx4jx3BlZ4TCgipwGa4hiuzkZNTd2nU0Bx1esC0urDtTA1E1cTrZEp0zunSl6UMhLmZfuPDVVfHV1RIKUH7agDsco25j-TbrPgbNuoZpnTVbfp40t7kwbvq1ZLgQRiOhgdq8b6_pkGyRefo4TZMesLe5NYgdHg8sXTzKXiZ11nwJDObGv3HQCMf9jHTsuCfCD0lU-twmHgfr1lU-R04jfKuXTpfnNc5dslk1itXlgRW77Elx6qyICZJolkSvTTEz-FGGP06dD549Vdsm8jpAUAg3q8rE5bsU5Gb5HUSXmtcEkPPmJFCb9Zf-tu7yoR8y9ii2Zb0_59uWHDNAQOfSKzf5RMcTP9t0uiOIIG662bw4kfb4T0LjDuyPEu-yqPa-yWLgkOCLE6I4i82Gp8BnCfQPy1DXmTXGenoq-jOfAWfR3YeerL5wzf-jeeJy9irow4YttZ6cihpBzegG7jJNIeKRCuopfg8Q_9haXAgiGMHe1av1AxXYBbDRnUBI2V2vCnhR8eb1dH-cgA3hsDwq18vW8gPJ6nNmcTw5yCE1_i7cwqql516OS7709rU6OWkNCurvemUVHy712WoSoI7vWga3Athp17-80qt2OTmQBIopa_J1Vqi5Uuv-5SfFCLVMad1lwwudhOS-v_j1sBNzsHqpRe4HNa0TXs6O8F71F6QcaSjgHsP1RFu5GqSlJ_1I6RJWtO81R89mg_mtbXCsjy0BuMJEKEKy67P0Dc_H8l6-cpgnKzLfwlcjK5qhNW2VKFa7WzOGM_BIS8wyENPU_R_OTIDtKFZZJOdDilruEAxfTpSrqKPAArfkzdQ0v872gEqs1_yj9_L0p9N8EOZS-Tae7rb_eCK-6_bqC7VN19Onde-w3kXt0SN0kzxBZAOaxG4ad0IvKCb2HlA-ZQeLGzJwR4FzXzvMc-Yy1J2l6Lrs0bFLwgOZxmfAHwhB-3doTyadYWF2cfU2-InYCpIf7cjIJ7IaSTy19WrEhsj8rOLC36fF40BIFwdVJSov5PQ1jDxaJz1cE_EeflonPrWy3QwpOu6GoYHMYl3C3hIe3jYXboOwa_Avjnz8iGuZShQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6822ae0b7dd618.70035836','','','2025-05-13 02:27:23','2025-05-13 02:27:23','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6822ae0b7dd618.70035836',0,'cd-form-entry','',0),(43180,0,'2025-05-13 02:29:42','2025-05-13 02:29:42','{\"email\":\"shajratulislam6@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"1\",\"regionlive\":\"0\",\"currentpostcode\":\"Psrfscmm2001403\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uKw7b7HToDjEQ2w-tc7Tlgk&amp;gclid=CjwKCAjwuIbBBhBvEiwAsNypvaMf-hp1Lx2Li9PYKwvPUq6iwIKB6YS63sBUVuTgSHdEXuBrA7JGwhoCUvEQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6flro8SfW8UBKzbOOL48QC-Pybj6qa2b8VrRBW-1ADCo3OCBSL97Q3kIBDlYovddq_I3bj42VkvToCR5wiPLuFoMq4isJ4h6yb-yZotaLjFvn5Ys4kdbeTkkLs4VtWBgKRj6AwZ7MxwWn-EXua2Cedt7a_C37Gavkf0CMOoMhNlPLzspvFAA1vD9eWgQE9yH_5dm7FIVKhsEIkgoKxUjn6cNgZRUvcZjxIOta2gMNFVdgLdT5uKxOzbBfyewem4mpDjT_0x8hZfBqspyMi2Cj2IV7s1yH3f0MFO107f1N3RAsYzSekEi-ZtnFvlzMc48v4Ke6i-D1ZGBXjAdQN5SzyB_5R4XOtUt4CykGVIM1LWm4t7X5HJYt47AR5Mfn6BUIGg-kWbC6AGSsowvmxK6EdpcwaT8XqJukYT4Tj75weWohbn2RSoxB4yUlR-WosSDbRx3U0lUMflJoGysaQbXWvBId801fHS7vjKgnnZ7XY9WhMYXVz6jA35ZV3PY6XjIETiP24y9PzelYKOitXWpY_U_UyJDpW1FJSSaHoCYvinm6YqxraoqH8OzLfgI-4YPmoJ2FvJ1Wz7EFgj3EtA5og3TMiI0rJulvnTCtGJXm0TZG6hRRYplCnbzlzuQ4sP4hVsulnZEaAXGOLpWhIJ_aFkfwh9Zit6d1G9GVekpslgdHqqw0VpUpbPqbQQYdE70ZGmvqXKUuNlqhmaqLiCYvhg9ACTH500IJLLHhaI4Udl3IJujNuX-b4gUFsVq0GchJqLjOTRo9TD9s5a8_cme4rRgcR00okuSpoQbEjDTwJU4VkdWFsxglv9dRDhaXdKDMrmHAEUM0BYkjNi3McxqRgesQ2Sm2eX4uBJMkA2iIsZP930n36xpdoYxXmHKuZgvve4DAkLaJfru4bAdP5cjJrsMRbvW7fX1EKtCLXCcjBs2P3Gy_8WTRX2HPg4S4l8WUbVs_4c_bt_N5RFkc6uec7Gf5OND-zuydnkRwsgCphcnDNDjVLMzYtVEhhkcBtI5NjU_P3SkJTVJ1bsQDTmNzxq0FSrMReZQv39e7xhQX3sB8iDm6fMjC90BKVWNcbGg7MjG-eBwZNCx1xWmSUCM7Y8A-ePWPlJThxPKm3s8IqaCet7hUBiifz8fwwYddpItkxsjEw4QCJKdmdFz90WDg79A9t-Ewafta8nQO33W0thiQsUtYkeJuY_bFP_VIbnxrVTNs7RHbAFRlkW2C8os04vMaa6ePDi9MnH88J8NrP1YM5-kTxt1qOt0an5QrhMcs_WgCg6SV1GvA-EDaPdwOHclZIXJTxyazIOVC7HlYmE2laKFI5Bh5DvIvPejbOE8kG0Ezg8CninJpLNxipW926ULpj-IAPFIkHAEiQi2no877T2JKjxSUoPo-_WUtAfgRXGzp7fjpjZHJZ6zG-Ky1Q8jdleMCJVG48RwLWZmv1A0mDrWt7urmavfuDNTdP-IVHNVeyV6BfAhwJz3JEZMyha8UaeEEJ6N8awiiQp5Fg3Yl78r-uiZHTxueJ1nLm7NJU3ssEJR6Cxgxzvda15OCWg2epe4aUbLmb8K4-v74X7UI7-SYlO3VaGpe4c0z_abUsVh60DD8fMhS8emfg_pkGmAytLq0_41bp-VKYysD95cS_v1Ep-oGPbvPokfQejjciUlRoYpW6jdpaTYqZNV3PDIQsok4cDSHEmlZac7_OXpLv1i1fUaH0icFw30kBz7QV04doCyA4GeZlMLQT9a8vxOEvZQ8tSM-tD2YikLfkNHReVqhu03jdzKPAsQ07ocZh8rAKhJdr7C19vBeQwqdakflyEqfANadkrfM4S1uYPevkijIwpknoAXlnVdu7gh4hv8VjYelMZzd2Qh8aPhD5M811X7snqoUeYm-EuUBW34daxtO0N44rnDIjy5NUleqkh5X-R2taEwwXJFJYVq0jGQ9NUk-LcdrMlN49grPC1D4AkUttgSZfOuL8LOy0FOKioQoUOW79PoC8ZjZDbZQ5euy9SobzQ8P6SdopfKbq_wy5rqkUJI5bET8edBGMN7TXP3fupenp2el9cJc0C3zLsERIWxZQzFHPzZpzqqoJy7DNUuY\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"4\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6822ae50818985-14634160','','','2025-05-13 02:29:42','2025-05-13 02:29:42','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43180',0,'cd-form-entry','',0),(43181,0,'2025-05-13 06:28:20','2025-05-13 06:28:20','{\"firstname\":\"Clare\",\"lastname\":\"Sargent\",\"email\":\"silverfoxclare@hotmail.co.uk\",\"contactnumber\":\"07837983164\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sACyEQWSanUM9-THyIlDgCY&amp;gclid=CjwKCAjwuIbBBhBvEiwAsNypvVMSvJNg1tAKpjsK862PQbFTp4cQ_xvFtlujbA9qR_jnJxt-XtRZTBoCIrAQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA78_Sin41bi5xh0oYfX10uguU0BkUmqaDnWj8uWPzDlZrXnu1jBkgvlOrSyt84LCQT3HFczCv3KBaVN4R2iGOOjjHGyW4705klne3UhwpPh2eTzkLYGJ9eaVJ5Wj_PAxQtId-lSkE0J4dEZ2iyDXUCi_lb-_W9e1cxmrMBMvsfim90UT8VkLP-uv04bzw0yeEWMN66Z1onwrzTGWIAyAC-p5PDJSGMr9KlNZRHnvuvBH5shZQqUj5BsoC6mc9gFCUKa_ye-1cm3qfHaXytxu-crG8IsXFKlwHxB6rDcb2XCxWavphke_D2KKlU5yQwNB6mXcSIqNxTWO1I6vSzEKQ9BDoE-1WLpJTMtgKHbJWsNU_kOfwvTwA6Puta3mdW5UyGiNNocuyEY5t1bZ1QuPBvYe_C0P6GFbyYB1icLnTd_6OgNnsjANkE1bAPCb6U_ze2iVSKbtJ5iX-eBPYG_IQ60bfHt3yaXYB5UsCM2F8WCJT1rkOSmEabLL-NT89pOeb6DBH1WX2WzyYlI34tXhTLnpclR4YsofDQ3N8pIOzI-GDB0Th5gIt0R9TN4dyUQc_ljN7zzUsWZUFsb22wze7UXK7J7p70yQT5etjvdiSYMCMXl_fQLpllT_LsKb1u6aycWNi6eSFg48zY0AVjHBHnGAgsbVxphU1gmf3rVx2VrJ89kGQrkrIdoVnQb0BaIGz8rVdDrCwZat9v_f-p7XtsrfYR4aC_S5Fj_0NgYefYYPKnxgoC30NgpXrOe2AeniADn-aesiBPjo5dY9svXgpLLC9q9-kUz35uNHsgenow59K-eWtztW-ESezJ-dJpLpqcOTZLCzWf5DSbqzMaLmltYUJTAwN2or2D3p0xmfYIqmQ12s5ApSfVhEn3Ilo3Ni0bF9dHDFtufQJef-8SofqmDkFd4E-N1tio-cjhFn9vOtZ4r89HyBuDFqgLcssVSGbrEj4WkRBmS97e2yp-zocjiaCa0eAQ9o86SdDFg_NULGUO7e5StCclu_oJJ7EC0B85p0FHQ6NuWO1dCdBbLI2tro8LQ83nbcC1qIW8GwdwgKJOGmKNd4AZzLk1QMcqz2Bq3lSHszhGyP1ceYSdPzuEuQiYZtmtGfaP4Ck_AzVV9uUhXtIx9rdj1ewSASXT-P8zrWLo4TQoKVR9vlnohgiHL3YTdleqsq2ZPGpE7W4CoZV9KAk2PMEGKjKNr8twuI3GwhMNrxM0rbrxuAE3df4xexSfOvRkOGXfBH3JiOCZHbUXzwePEDhLAQRctdkImZC_H_A9gXOeHjfYtkZqnI1rXIuOvd16swj9yTfIwcY7pd84qLQR5t6VKdyVoHD7Rrl_663zjIVVG0stCmC21t2AwOACdmdNyzEja7P1hUuC-i-fqKmD8MY5MN_hDP-aWzsTlbcpTdNv843tbT9CKXEoTlTmEYZIYPOsES-RbjPqLoG6VUsJpSsu7IV3ebfoyGObWomfBue8dONj0Qvp08Xfj8Yy_85taY23WXMtHf08O_THMXiRogdxVsg3AzZPcTD6pUhjvzjPGMNSqha1Fk5wgQxBNhu4Ii4h7WE8SBTFKnPQpRHof78Nk1SAQfduJG43bLpY5LZUkkZ9YoWnhRxPOURzdifc5Kk_GjhP7Bw2yHdeXkgcpjg5rAJDctN8yIdz42LaspFndbIaR4DbqfRYiW_oTL54QZCSnaWiBxxanJYZ_07t_nDneMi7cADOg5iT_YiBP2Jje_TZJOYJy_FiPbiU9gcsnYkgCHr21s6cbXEKFBIQkXT3YvGdJGr4fVDsfgfQg_EmhkON68hF5Tj1AXIUpJX_-_gBj9LiFpYNZItvu9u5Wx9FNRnahY_6Jpl9Lh_OA94eNFcxtp1CsxCl7MK_7qYc5arwXUu9EAd2P3Q3YRXS8MGerVINmKFH5912kpBX_XxFd2FTVR9_kA3U_G259-8f_x3ywxsn-dpf8-P-I4WSnxAy-_9FWksgaszXrrQAEsQ_PMhafUkkMKYBXSQaidRIg9jIi-sD5pVZkSvENJroWhpgftqt-xqws1PrRwoC-KOTE9ujBPRKRVfMLLJALEmGBDqzSP47uGsYePQ-lceEs6fxwZRCY75c7imMEc0kILk7rLbmPLngS33bmskivMHuyfCsOtsLzz9Q-UVMofBHlo3SkA8fSvGaogevca-5E\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6822e684e510d2.51383739','','','2025-05-13 06:28:20','2025-05-13 06:28:20','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6822e684e510d2.51383739',0,'cd-form-entry','',0),(43182,0,'2025-05-13 06:31:15','2025-05-13 06:31:15','{\"email\":\"silverfoxclare@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"0\",\"currentpostcode\":\"S81 7TB\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sACyEQWSanUM9-THyIlDgCY&amp;gclid=CjwKCAjwuIbBBhBvEiwAsNypvVMSvJNg1tAKpjsK862PQbFTp4cQ_xvFtlujbA9qR_jnJxt-XtRZTBoCIrAQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4zuqsAVaRNUM_14EZ1Shk6UQWr5kSd4Vn28O1gJUIr7bTvq79xir0k1X82-slzTnCSyj5yHclUeKFsKSVV_yvfpS-cLch4qKn0L1OaAKvu9X738KMefDBOMIAD3tWguAjejLyXGi30trjztBO3X2tEZj8wCwOc7iV7Jw6ZyP1gPev5dARQtdQclViEJPILrSQb3SjhwenvsFTRgb1OXfmPNPSztELBpXis-SvOgTCwjZqgoc3lSCka4C-WIuIVYLzC_cLDOa0kaUX604oT_eEgwE3vjwsOdHRAA9DaED88is9naiy_-biKldBU4s7iHxwgZj7txqXVtJ3LZ2Px075jmxuxBN_sa-8V8WrIAyHaihM-FoJPeK8fqveBmhHjUZeFP1oLJONJtSpbVOa11kJRQsn8kYyAIF9ATJvLZBDRf7Y0n9u_KhYfiGT94cW0u3w0BVrwUpm9QcyqPcv72AKEf-Dw0Xm2nNiR_bzyQN9iJMwOK3c4ibS4fbosN6TwOTFgZ_x-tDFZfS9X36IIuOfX3B87c5J1hgLTroKBv4xLiG-t56bafHAqnRnbqmxgcOFMqfcJIhQb5UDs6pDOqZ1qQOX3W0ZgYkTcM5EBserIGJ5EhfcclUldFY39Ylou9bhurg2xfdZQGrs58G5CPLjCfF3LLcBwJBj_89TtC2nej0EBQnDbG8--ThYBA9_5ozgzVAt8j2uUllU_OSjG5lZYCOb3OqJQt5LXvLy3B8vTwz1u-NpzSHBhF6xODCxDoBeDEdgkaU70yNZByU6oldnFfG7mb3-3H-OfprPy4Cohpxsi8X2TxFei_2JjqwKZ_BlxfpQ_1_JTIpTeqGb9q-TcYOkmv_Af2YuobOa641m7qnG22OndnkBPDY1nFK-L9s8kcxnG7D_9qFH8vVHDJ0UJl35vzxW-N3aq0pgtWcYp-oPaRzVJEpD6Z-MqCx-jpOxDEDxJgsVzik_0hbUszSiwt3HUNb7hnP03A-O90cMaXuvCFqo-uayqARRD1-l2dYXrMBIMzPF3kaWhw16MEMUsk8JnbjwF5Kcry2uSDYWCvAzB_42FSvzY5TxsnAoixWUzLx3Btt3kr7mr9yK3R2MHJflN7ZH311_cRTtn3hBmRP13pBzbqrGo4WJALySHmG6SfTIa7f90OkxZsiIoJF5U_nckTbljBqMImf_TDY6aC7YjAy4ZNJs0ujCOkig2UlCPyVYcSRu5xjvpXI1ygTfLdxL-E8hsdW7vTJQEmkXj2fiq5fSZ7i8B8I-Qd7RbHltnhGgZXupiulmweW7JtgYg6F5VV04x4q_Pezh99Rz3I9QSdoQYqvyMJmjn_dbh99N3SSYiYGljy-eThN-frCzd7-oJeuVIS3JZ6D8LMDrIY7lsGYB-mB44Yr4Pehraeiw-XSSJIvBBP5Dyej6IsLmQqepFO2dVfquwqnVU0g2zZeNmXjczAOCbd1h7wU0cNPv-JEc-AG5r57K0csGERmAxybfGdGC08PAbzRIICw2Zm5rXHDTQgDIlll_hg5qKhSujmzLI07mVDYqf2A1ZbBUBaAYtFOfW8NrqKuaS1negu-2S32dhduFP-XWG2FEZbUCk9l_2q1fEgGde44Qk1RG73thmVwDNvq2YT6AJi8jPml1lzQ93QTAMukZ_ch7l66-19bVOMIgtu1Md7v5110NBzJa4FjsBPB_uRrJgqtdVa6u5Vt3l7PfiOH8EqHw0mZOPTMa3G9_HLZSD5H0B48dhB9MQ7ZbwNgrCoTDsaXY5og2Pua6ymtqyyb7l-dQGwuxa7t85BU8jRjUWIenvYtMYw3KlhEb0cfyq_vtFBy-Sg8tMFnBQgHj_3rjOIQUz5KxcSz4-0782OWpqut6cU7dYpPCeolmaYVyhP2kG2iBnTlpnZ0aRThhQyejhVeWMXiUBbQbFuUdLIySn95-9-c6i-k0KDwj7POGMtY83cZ_d3h8Tb-VLTLVbQHz63C6DiGmjMWP8yE6vb8AvoAfg42NA89F-3MWLXDmw7fIo6iMVnUquvjCM9yAt3TvGKZxOkjYOlhCcySRrwE3Q1vmg_IG_O9vl1AAzQIvPnY9H4Yjqt721_NqAWfOmevn5Q_gkhYBcGulPVB4yrNgE3QA92IVv28_9-rY7z7cLkvgkGVa8OjfgER54Zd90YMycNHP12b95lL0u6BKKOINKcHHWAJK5cpRzMw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6822e6da055032-00203613','','','2025-05-13 06:31:15','2025-05-13 06:31:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43182',0,'cd-form-entry','',0),(43183,0,'2025-05-13 09:37:28','2025-05-13 09:37:28','{\"firstname\":\"Caroline\",\"lastname\":\"Ridgway\",\"email\":\"cridgwaymackenzie@yahoo.co.uk\",\"contactnumber\":\"07799895754\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uKw7b7HToDjEQ2w-tc7Tlgk&amp;gclid=CjwKCAjw24vBBhABEiwANFG7y7DulgpOqNv5DGryRn5I9EnLKaB32ADye9l9RogoVxuBpJtZrVsHGhoC6aIQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6io87qRsF81KDr43oEbWc-BcfGgcw73XxZ_dyBLoY7yGXoEvK6kfAPyJ5y6mL5mhQP0NKEJQoDpLqMla79_LTTjgxffWBW2TOhLXig35P3i9Tb__mQkGfuUIS9I729aqbXD0xpM5NDGV4m7AX8rU2UOVWEY4yvDcfkJAN99SeBjX7rTerku30i_lCl3OusVMKsqIjSxMRTHggfi5x9L8B6MiTNVBBiRoBw_oNFeFKYSNrCWVjZJrXZ5Sdh2w7RHVR91OyMj1SWYo6tyk4DqOkGmok76AyR7waki0Pr0wrJrGzhRDpWctOr_MqLfoxhFY3z8kj7NA6eou30JVjN2BULtlFkx7chYZf-Ad1ibm9bW_eHB_YsWp5Qa33omU_Wnm-XNB_7cb_OdOosSt0gh4ePdJXzHGvrKj87qcH1ooVmeuHhXwr1crmRGXskqKSWZt4Ots2-xmkJCRlgMExBcEpstZBG0BIXd03_Rz0q3nxsYx5TjBEIakrQzUlxPHJ2WvaHPDOwitKbiN10J9ObHsuA0R5Qx2McHu4tYTx_hWPRbbLwqoMbdfaHYcS9UsjY-y_gv1JA4VQsZSIAIupwcDw8q7g4SOcNldKDUuj74yfH3GO9VBuu-gYC7PUgT2RQd-kxkJYaLsg4lDcAtnBgrhxmoYTqE7I2GiwTSbfKIR8t6-QH7tVeOGwQh6C-dIJIIcTGRObbIeVoAy6VrD5fdzUQqbcWCEGSlGD-4KbcQwxY_PfJyiUgsVrRW4A3D-z-B5ncwaoum8uGhlFILPBNqC4aWlVoXPtwONB6oA-15USZbHVhOhW4hLjyzN3oM0jDNjx-3vVDr24qYsDmVZxrhRnU_1R_Y6GnUWhXxhO_yTrojWDmRbeqhdHXWG8Z55ZdfSynbSq2eVr8R5bt8SVn9jZBEjgzAHdFKhGmiqIYYkMst40km3w7FZJs9vhB6nf9UYRUdiWHDgKCsfEHfrr4sYTDtRAg--6F5ti9SYi5n1zgHij05DmyGE1mBhsCjfulykud2tL7WiUllxEzMy6K0S6aRjIvCGlSMEcWZwsIpLYjjI_VYYiOgwl2hMD4YG-8R_tLx9XBm8u8h6a2VGDDnQP0OkDWodeA-nK0tQa_-9iFRwsyVG7cVF0dKbH7YxqAQxblERSD6z1RlIlxIudDBAoKXbImiNhEl6pkCk9yl_0ClAZ2J33oY4ZaXyiIZixPDj9hUOJClseeEE52JEeAJz_rTdDETLeqGpZg0qCOzs35f0S2fwjgKxp3qnH75K88Ks88e3_WgsWt_sa3TPQg394KlrwduGaamcaZ0XhsF50ReCKN5E2YeB5vKAeHcZ6bEZehQV0rrLeHHQZd_h5mebl8Im2LHdwwBe5HTJLFw2LNRk6WGJny6T4DwM9pt1mceOMfPzGIJmjpZ74sJNpfnMlWUnr-JXC8hkFF4OC6uwZ7zawy7-6LVJGdPuDat7iTHYhlgrPwpLedFBI3g8yYcfeNucIWeuzLhLkFVIQhk0vCeNPj_pXP69lMoI2fRelS0MDkGQPBOPDE0SuGQ1XV_p33DUzE3Nia1LWIj1f4rI_PcfL8cYWOvBv3XXk45kI-xwHM037kJef5WehtjG5uNydfPSCFVmJGgmTnl-SMUW8kkYcxWMEadYVGiWtvERrsjf3DfdUKct2veLOAXgJMd11Zcx85SY1U2gsP7_bxruDAfpr9GCk8DIpSEXVdOIOBt_nVb79DJFPl9jjTM9_3pa9IEJ9uiHeMdG1GoVoWcKs3qL6BOQST28N2OmoKb1G6wfdP4sGcLJaeSBxHLmIZxGBlLhVigTwbMYkaJpKPExPRMhN2COSfxFqu8AKhLND-ITMvkmERRInyRSwXN-vJFh3jdYqZ3_6pNT8RY-bqB8AleJzi9Q3dnWHo50sGHA0Dt8Nens7_KLkLCSGlNXg7bJYGRZ7Un_TSenPDrVcvAuLRl3kOjChFv-U8y5AQ-r2HJg9Ie5hbgd13f2FW6TzJZnUsO4QernsdF1IBFl9yxk8usKBKO4ksL09CpzMdi5VFNeAZN-xBQei2eeF7HRcm4XbU_7DeNHSiAEIWIK4aBO4DG8Cvj1n0V9y0j50em-bzdcnMdhqSm-F8Ae2UP_UhWuzblKTNZFO9kDAl115JtUrbXE-DAOMe1O9_pEYk-5OFAg8-vTZqE4B38G3XkoxxsIUY4dxBHOMPCkeXT72aUP6K8a7DVDi7jTm7PpjFh61YGR8jINOpqmU7vOKQwZ5QAEcSHpMiJfibMiIWvFu1LxD0IW78Wi3YHB0jPdSHstmHruPMah-tpAcsQAPn7n_MzISnj3CGN9DOPjGOEH1mqHV9oHUpOU2O6Mk4YKWSneJxQxaxS2ji6StslfYvNC7_xvY5iqHEHQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682312d8b1dbe8.86233588','','','2025-05-13 09:37:28','2025-05-13 09:37:28','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682312d8b1dbe8.86233588',0,'cd-form-entry','',0),(43184,0,'2025-05-13 09:40:36','0000-00-00 00:00:00','{\"email\":\"cridgwaymackenzie@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"5\",\"currentpostcode\":\"GU25 4EP\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uKw7b7HToDjEQ2w-tc7Tlgk&amp;gclid=CjwKCAjw24vBBhABEiwANFG7y7DulgpOqNv5DGryRn5I9EnLKaB32ADye9l9RogoVxuBpJtZrVsHGhoC6aIQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4vyylP498AQjx1a6qm7fbmJs8ktpVoDn3-c0r9AywgAGvjSfPoXlHO_i4rawsuVLVkuerU8JGijqjSwuAg71rD_7BJNpsv-20Co3a4nliiWbpjjHePCHmzUbF68sHf4EggttiGUSAHna4AOZI-4cg4_27w4OMN2Q-E36GgcMITrzVB29Lwogw3HrTt8R6WQZVJgHVbkXeueZot_4e9Hl8t_8dlDlOYdl40TA1RCyTHaPXevzScvqGRTV4ieSINyxvWaqyVCOY1KEw2ep2CAGWRwzwG-eitrpdK9NADs4YFiuHPzf57phIpmEDRU_SzfjvqoWZEGT0PKpn0ZaGzo--xXFaUx7VKq-FztoaaMsF57N5q8W8TJ7rqVkj1I8GaXZsv21DXaPW336EUhyM5U9BS_ipY4BkLjqqcRDMKEnrb-pkLdjyhI5YokLaldqGGvrUahx8_G2ayYNerzATZO_z9T6tmSYIEyzzMAaW2BiwkzJdQhnrVxLmwBvzHiYCgiZgzLRKN689GkKQQkchIK71CLggYIuu8xjBjoF_6RlocDfxR2E1_umB6d051WF3_rB9xHE1FgtkAVK6rzt1-nBsyigZbT0I9b2qXe6RlGvJf9n-UEC7T5C2taBROb_kVVXUaTJyZ1RDWo7fK0G4MQ9gtSJQMPETy5VzAK1NlyXLjb3XaiSv3O-Gt7gI6tsyVkThAn0yPqcIGpNlMdhJYCClgq47X2ELpVzDEopSjM9WQSfIUvYqlbQkIzfunPKbd7OAXAgDmGFJAnt2Cr3nOyoG4V9lGCJBFiXoMvMXVeKhIm4KGrY_O8WO3Mq3AT9znMtaxYxv2zaM_IcjatV1WL-ZiGw-19cbnDp_toy7jpYc3BnkAKeMYu3zfzRpfS8YuPLFuXMt3KGQhLtiVWv2lE2Uyr_2LmCXJmajpyN3SqFlhI1TzwtkCQ1xwMDKku_Exg7EKEqQ_LpQR35LGy8VqDv_saykkLuLNElwmn4qUNT9Gzz1fPdd8Qr8p1LGdaE-Ty5WUqeiKGVPMuY58f2kS_FnYgQ8KDq2mQJpdCm8gJROcan_VZPOwjhLFfedinb5aKF7mXgnMKqKZt4tFlaTuiAOfC5wT6p90B1HkIxRY-Fa7p-cbqMExowwnVG2beHT3S6zI-De8qoOhZTauJn5n_uNJp4lkPozZ0DKNIPHjM5khhtnWuGjgQKAIJCh2qeEpU1Pz4r8XkTCG6oHJV1_eJDkvAel9I1R5PUMbQx0b0riDHNw84ANmoyMRXi-5uFqdnFt25P1Xj3rZwtg8GbV_IaCcYJ8t32u_5Me3jFhBJ0WRrff7pZ-psghUNV-R9sAdSGVyM1Wwuq9CoEPJ8a98uMsA1Jq9TPWifLWobkK_V85mgECRdc7LiAynYyd-q4T_ww3F96G4MXq5RzjtjOh2-dFz8rdAIz6SzII4kkf37SWUsgNw_c4LHA-9amLpFSdID4LQBh8R0sn7Dn-_TfpnKJD_oCsfB-tlUFtAiTFz1GLfZ2HECFutCXRera3FdDueT4-EkGOuRwVc3iRjgO73nsO4AowG8vSiqZyq-eL-3lgGmnYawNw9c8iV_Pb1sFLvDEdIceXng7hIPMJ1018dBb1mO2T8tGPCTO2CdD_WHA8UK_hywkoxtFPFLFGmfwUKovRZPEqGfJxcDJV8cAss_WtCEErVlt2eVZkPC8bMWRaej_XlyuRxcexgSUQ0OXp9ae9BkiKpuCpqy5TL-pl8JyApYxdVGDiW02WU273oa1sDT0mlELVb4BDfxM9AGtrNeXHt9dPMdOep4rEeeoV_JDtZ6l1KypNykqTnMXss-tj3eIovaebW1TRcg0kOT4boalkcRs682fYy2bVhyIL5jTaPCseOH42qhknj_MTelVkNrYKQZgS7wkANn4nrXbcnEhr3gdQYNOBeyii5m0NiBLOR9pdqv_EtfQeXzTdlq2cM5s1pkIK4qTnucToKsYFCAPLuSf0ua-yR_2b7Ln87tDGZWgbJS-HsKM0Xky0OojzscZl1lwoT3K93Z_8SiOEikPZvHXWZI0lYhnsiwQcM-B1X6i9Cfhmhpio17mSwDxP3w_82VxgJwcSP94MDiGsH58O06LjfkLqwzgsf0KV9V7Xn9Bq4e0qHmtkuSQuSO68YvExoY0M\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-682313942840e0-36253960','','','2025-05-13 09:40:36','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43184',0,'cd-form-entry','',0),(43185,17,'2025-05-13 09:41:06','2025-05-13 09:41:06','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2025-05-13 09:41:06','2025-05-13 09:41:06','',39196,'https://biomechanicseducation.com/?p=43185',0,'revision','',0),(43186,17,'2025-05-13 09:41:43','2025-05-13 09:41:43','','Contact Us','','inherit','closed','closed','','39196-autosave-v1','','','2025-05-13 09:41:43','2025-05-13 09:41:43','',39196,'https://biomechanicseducation.com/?p=43186',0,'revision','',0),(43187,17,'2025-05-13 09:42:05','2025-05-13 09:42:05','','Contact Us','','inherit','closed','closed','','39196-revision-v1','','','2025-05-13 09:42:05','2025-05-13 09:42:05','',39196,'https://biomechanicseducation.com/?p=43187',0,'revision','',0),(43189,0,'2025-05-13 16:37:04','2025-05-13 16:37:04','{\"firstname\":\"Ryan\",\"lastname\":\"Cutajar\",\"email\":\"ryancutajar@gmail.com\",\"contactnumber\":\"0035679960825\",\"interestedinbiomechanics\":\"0\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4RtKZ9czQ1cm3ytZJpK8SLXONty8cm9zri4DrISdJVCh6h-9Lf32-x15l_U8XlQA0nEgd7akDjt5ZsxHlMU-BGOA5VKy6hANB-ED5-ZY5spEIPEum6YvNLabjFzXf256iRCsPMTbHyFUpoh10OoIXnC5Mqxn804ANdN_pKV6_TMdAbXUHxWFmetBnDQg9HK9cPuFcc-A7QGwr95Mqc9k2bLmF99qyrMPpQ95iWIgTJ_Zmu4WheZv_t-Ga2D4B6wlx_vHG4YOTQfNQecRnHFzjv2tHCQy1eoQ7-cWx17ILmMDZDBYM8mChgAXyzxyk1N_89lk5Ge5Wv7Eb0Xl9m-pNC6LXQplcImL8SXp4Hc-5HjdCza5D_ASL7XmswLkpHZkDyrJhDJG1hfa9f2kh81Dh0JRUCiGrjhf2xEhl9nN-GyiNTXV_vaZ-SCM_2ZfFqledjtFOLvqPxvY1AoVB6zxJbZkM29xlg-j8kAzVraD4RTtHhytsP2apndadgVq_uVp6wagww3SIUkPMooeiSLF5oMW_iWKvkflISkX-w9EsAhro_nxkL2MlcdhsuiEgzNtMKsECfewFO1Uc8d4MmLiCMlH0yubXiQpxIzIR8GTferg4gtJ1mK_rc3UcdXC_xm3lYmqxKroGQdaAjGC8z9TBw3CcHshCkJ40IQxGuIh468a-MaIIIniUPKVun5q3Kt-yyeQ4l3E2YiUCjokMKy_A9WcXBIlcYq5QFW5F9dPWFwX8lE8bcKO073GE44dr9lnJT19eQYX5FehJnOukkfdb0jri8c-MZklpYZdte_KvaYt5sAWSaSlmZkJ97pR2ADRCSX25V96FyTDFthaogg9FcFnSA-S_Lhv5hLV66Mlq_YHLRQB1RINyhzApyJeBbGAIz5oUE8bStlltE7v-CjW0TDm3q-V5cVxjkJWgvPt2fpxdk8vmYaVDUZbU04K-afEk7twIWMHatdOtMFxnYrZGAIk-sBJIaufT9khqzm_3jTrUJTKxLDMYxk6tS4mYhJSJEU000I77Q7M9c6vBP69G-bu4xA8fm_Y_QgAAeFgIRTtQuIe8mfFhG_F1QBTg6kduAO23lxsmjUJxTMKRGo0jOT8TygQ5zJOuH64MXA-gu45MYwLcCyOmeTOK5FZAD1ll0YHCOpUVYupF6aQ3BP5WDhZCrseBS0uxD9HaG219_--HyzSnmSJDbdtrUc95Ekwu0YpiE-oBqw0i3so5w8HDHf7CwkCmr5MWG1RtDObXbLGU_QPq8MHaY80t6zNYKdGhuITJX8BTpRaChVrutl_9mrQrhoXIKTBa3WXnNeRcgofZeciEcl4r05m70-NBG7u2ucvCDgpvHXsqEWrJ_-orHx8LJOYWk1aV-FWRg7Q4kj5sxdZjJbe1gQsIS5ARXIcoWKEXyxErLvLmbqT7RR5omo9w2grt3w041IVDXTcuDBYhFjcOiL_cAwlsyQFOL1I8vFkZufe5peLwqiVXV4G2l3NK0EUdbdwGIvs21lxnF1WzwCdLeTiUcUKJRxF5fIbEIcgp-Y45jTfaNHBQjSqJ4IBJc-NeMSoxh4CtxNUtEhC11HZYXo04mpSFMHzVyB9dBSV1eb-W_YMX1N8BlpCAovHQwriXV3pGF7NUfMK_glKDDOQf_ML8_Fw-oYtPDszLXpmyq5tw7YdQmSNakPnv6FKTIJP5kvKToxMlKGioluHJvABAwUC3R-GeAwjKHRaqdytF-bsmBiD01Ea7wrmnpUZBOXDO0y4l9Wtig7_Ddjdsxvt3c4agA31CVYK7ArzFc2EJcc3oPhFDo36unX63Tdc2JKzQo-H7Y0QpViznuhVNMAeqvatcoBObF8D3AwvdSckoSrmusOzOZq-zQNKFDUOzMnIKiJ3QURq5H_uAU45sWETZkBiaHK2mpipoDIf5XDopY3hWlOWtMfc0UlQtio5UEu255ygHlQbcn2F_GValGundkrF4tBc7njE8I5SODUofCFbOgvDuClOGbbhdat2B8dg5sILTkGzMU6VFdiHvQ7yw6R1MA2ZJkMzPi2c-yX1QzOzFhf5at53OMQlca2Si3Sy7ongA_kbdg3g-WgcMNP8aFqtaj9QRLRPmq5Ij4Ib7kl2ReJIWbKI0Fha3IoTkWSo2yu7lw9nSr7NHHSW0_lgd2SlgM2GC2B2zFrggIfJtWqaOrbYiXm5gyeJuMgJCCB7iD7NoCJYa4SmhxmrhXEhgU3yXDVHcKKwW2Sc-WJPeOr2NrhsOXgCDX3OZLIaQ5OTQMPFvJSQuA8G_abluyvQtJD-ERzs3upqfZ1d6fwG_QQgyaystEnaBbFEzwTQETmq1RwFZnmLH1gyh3H1GULxrdpz0qOXcsSRAHW5etImmbJTLbre6j-6yYQVFXxvVWq9ipchPE5Y9jyjOkqIv0Fj8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6823752bd222a1-46618822','','','2025-05-13 16:37:04','2025-05-13 16:37:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43189',0,'cd-form-entry','',0),(43190,0,'2025-05-13 21:41:38','2025-05-13 21:41:38','{\"firstname\":\"Timea\",\"lastname\":\"Juhasz\",\"email\":\"juhasztimeaa@gmail.com\",\"contactnumber\":\"567867\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw24vBBhABEiwANFG7yy14H7VX9GPkKce9XUfRTSQS45WW390VXu9eTy8sdJ2XCzS_8rw3jRoCXF4QAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5cJUzsKkU5oWpNNUU4EYhw9EkqfPAqhGhBGdErCVs_mAqJiCGur49yqyEg012VPvMsOv6iQjwLOFVbrIkvCGbkvzlwt0NYt9BINn5pHK1N0ncMGkBGEDpivY3lp5eqq8flgB2wdzz21pkbjGk8R-qhfhbVqDeyDlYiK3kPFLYwoRp1xgGqf1fdr5Vjj-zuFFq4V9fdLZj_7HymVAdR_SLQYbeTk62iffwa1GitLWpmmTgafMycYCc8WTpy3VXxWC2RjG0MhpUSjaetX-TiohbmI97tIdF8Dg1S33P3LZ-qUlfOKDt85jMxPpmmblsBc6uEAmKNCoFeB0QMN6k5YBTcgwmAXSaeMOH7jFB6zfwzb_3mPZ8933PhcN-CvCMjR5k4SCpou_6xwQCj31RfneQpchm8hrgPsUKMdEQEiF7HUwOAR21x47ACtBxm_GIxhxKZ7t33IXFRp32s6lTpjaWO3TB4aVleHaKUkr3n4WgDQcjIs7pU6L3pEk6KmcDKC6EeqQFnTRvkeh2DVpnBF8CJ-elgrxKSCOsb2qDYZIeY0kyrdSwu-tbiwSqT--TuMO75j8U400N-J_3V0VSTk-YbLEVuZz_rRBGsWVbNtvtdPRf6Z8THVH1EmBWOd_OsEbL_SUs5kc4SiwL0ctc6ni9ov1-O2XEdQinNGn43gUTK_tUM5iRFNyvUI1mQyQIgnSDXRSdisvIzfQGCkAqPEyILZey_gKbYhUMTgGP1N6jwDoQeF8gm_HO-Oh6WR5Ycm6MdBJ1Ih6okWUPoiOEFajrlep38J7cLTm1s1AqOfE-43-1eUxBYprpeFVpvv_woM3svAMLUPYTSyplMHNPid0SlMDJM82mcPxVaPycAMHksYE7pqsMCKnGwRfpJv4repO5fmTNMUPVn-556ppxvM744OUNiLaxDEp7cApttK5cVO9qj-DCiaxGrIwpsHTC0liuy5ZAY8DSO8JG6R7zVEb0PwOWfGHL8b26k_xd9De_CkI6VoHvKqJYSJqpkSaxywX_Z8Cz2IVmNyFRZ5cTwrp3RsPqxnQ-5f5JttJo62LMcVtTVjR_vwTcCywh5qJ2nMXrpovIgW1qUL8gquSnE3gyAMq4XDRetnbFXVGrFVU0QwVWruStk4xggsMDTruDPMRhdu_saNBuO70EEypJiCNqa6QdjUXoebU42AWCAnewLbhbllE1JXMz6ba3h8M8qZx-dOuwSGF4QyV9tLnLy6k7CAjkJ8g0xD2f-ln5mKpev5jOxgTo9953JP_KiZ6xijj57iXN-JDD_0romTsQLUhORNoPMICkccuaWUofFYA60QI1ZJIqRGhFLt9TQw2z8Tiq3ZaTZkvPJ_WnlYNpRM52z3tbRo2i2wVVwEZoxG-PamLsLDu-W933vhprC_t33bjzphzeH282lNgpO6MJ_QxS5-C9N5cqnWDL-p_tugF5A26f7KvS7_YTCgubMvK6KUVoG8BPrcDOj7xqpj-7d-4YFXJECttswREUYs6uIZFD5vz-1OQaZg0MTNIBFM0ZKjZadoFcw0j8cpP5uTQ9EcKCnFmEiee7LFcASaCMWyEL4_a5Wf8rf227WiG41mEIrUwj9uuTs5sTdJEmE4APzBM6zuTe_AjH2_-4A7rnM0VKRRLT4h3OV934vQFzIT5vqMyFUw9IQbSWze9r4pSZbnfyLvELLytDzibzH8DNcHptABMTYXd6sNVoRJMQE2qcvCYB6D7aByiCDGLwA6BnJSLUtH8MK4xrM08oOoTOp54_kC4RrUh4gQ1v2PxJM4fmXFB9T_m_LCnO_F6IcQQt_BEbTgfPlAbCRQHXVjAt0LnOcaoS7z_wzufemRxuc5HBT2O7gj8Izv_lSnNti7oPLv0b6hCo-SFQ_ntnnbrvx7h-3hIO8bo7--O2oGgN-I6-XJz82PgF7E7N7i2xz7_iFA76Mc--J_NoV0DIbPDHt-RX_PMfYtOXkiPd9Xn6hQ5WgJOGyR9_e2ypASHlwHD0ncXIyCgHb_KhjpOO_qalQ3HIeRSyyRv1moqpnXKOOqTZIZ-0xfqzUXlFrr0S-GmZYaisZ3sczL6bZp04cwdZJtmO_B3GHjkzqQ6DdWTrtMDedfVSPggdFivcTSk59sHpKq3_WeGHNzwuELD9J7zwCOQQFJWeYJhrJl8E912XM7KHM5cH93nlkthSSAVfiEdJLQHZFAoqviw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6823bc92950ae6.29249000','','','2025-05-13 21:41:38','2025-05-13 21:41:38','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6823bc92950ae6.29249000',0,'cd-form-entry','',0),(43191,0,'2025-05-14 09:44:02','2025-05-14 09:44:02','{\"firstname\":\"Kerry\",\"lastname\":\"Rees\",\"email\":\"kerryrees@hotmail.com\",\"contactnumber\":\"0041764893850\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5hHb8bwL1-70GBXv0-QOetLApF31wZmGXEm30kxWHbsuXKfJUwUvLnDvaaOPubH0A6LXqTaQXeFqMAGtxknYs7r8670iYT6ypuDnd4_WWQRxhuRKUEFoFEB3ox6th3m8su41v0ho52wY33Z0MczPRJ5u9m3ai7DdwC46F88HcWgFnoygTbV2JUMPAvyQdYfH8R0kU1GhPDaOVrXDAnqnQuK2pCRxJM0FsR7I43uADOJ1b0fhP5qYCfbTKn3pRqjrTsDWWa8nocx1N4AZua6U39U4IA-htzpyYbqa0eCiTPxWQi2zPwR5dP4jVc3YghRCtdmw-BkTASy3l15fjSJOvEHEVL3D67jTIsmBJE8sAZI9N20Hu0MGFRFGfUwQYKod_rhZNg-QpSrktSY9QWROEfVxPseWEw45vq4mNcKVPBk-Nw2b3xwHrc7V68MoTgBFjcU8yIZyjn16rG0bWH6foT7khO-W-6ynkUzPXlpu1p9qx7-BRoc8yfZqukB-TmUnAuONT76w5MAC3T9rgZJMBlhNTaboOcuH2M80WmPUKiClFByJIgmaxQmX2J_5NlLOHLQnaUDov7ceMHf1_8f85gIs-EQamhSy9O58btShLkAGWtyQ_ylONRi47bKTUvayU9znULZvrYHaw871Os6cg7hslyPbhggAKwg9NVQxtQExju8PNYL9vBlIfD92xSKFqKaGYCJ_myl_cpJEHZyBJSHCsfvGsLXJNqu1sEf-y_47b5zW6QwIXTp8FJdx3hZnrqmU8ex--ED-KOukTJLKZK5A1WRob2HBqRt2FzWMwrZyP-QRQDCAEYf_cpHAqWvocY7uNR1H_HmrEtFR3_FgsM3iTt54SxWeUoJPPnBntNebHg6RvWvQBqhJri5GU8L61hvDWJzLCtOA9iH85eRWC0ddZnIVhrttwAYxvWJaU0anasbrO3hnhztqkytG0D9I3dgw629bOe7Bvpwe8B-ivzDjHRHLkBPpPJBuxIMzXiZBG6zGYlWioFmLom2_mLW9pm2gDG25UseFAWEzxNkrL22DYV8vtW1xcXwvoffvO2h4j3hY9plaEaR1TPU1TtNKM8U8VKJnOoiWzB7Elv2rHb9JkOoLtEqynMm8sFLAFE9x1hbpL4sfyTMGb31sqx9GapM4QEr0Gf_SZyEvwNVq0I0aeGZuXSq0BvGLIi4ncUtmDMA8a7nvaAQU4izrc5y415Jk8Nji1qyzbuAJ8zazeb5G4OoymN_s1W_PtIbbS8pERgF-D0i09XQbMr5II4N2DSxpzCtmPRM9AgouXLQx-Yy_VDV1GJ9DHA-Q-htbeOsP8e-hH3eEtfA7gda8zMpBEtK_WEDHSLD3PaWcaOTVVzur2MY6HEv_ZbC0l1Gu2fUzsWLPhtClTXfW4DVOnzDt5CcYG0p9PpVpaON8goDiYESW5fv6bVGtS7QAv81owbmJ_txhO34ZZKp-tjNEPskizOdsPzOUJcZKLBJoQxeRX7YbSvEehxve_QfS-ELPDVPWmWCbo6HW02Riq_6VlECft44pIwn-xZbwzKD6OwtCXFRElPJlLTWxd33DRiaplYy-8-dv0nQzj6rgZBl33fd-2tHqTdWv871IK-_Ard3RVeyKHWHYWnLqdXUm2j1-nLX410UyAxfECttQ7Eq4rtgggEgRLNDTQKkNcbCFBnQtqSnjhrsmVcYRZ_nfTmeCPrR_II6dEghH5vgWG7zIM6rNFUdiiQuviGufUJPSBCfVgeNoJKstc-JSazFQXheD_5KehWsTleYU4oLPGypI1aAlQPnJR9GJvyA3yTLb5mBxZMSSBWSQ0Gw2Uf_eVL6QwZR0WIZWhfzA5cyp4ML6jmxWOuwwkNe1gPIAsfywggWKitcrVVetfTKC-pQ03Yd-YOoYo9ZElu8yl2hshhq6nMLzcGwaS7ha156bDUMhj2Exg8qagZix9KtmoBGc-QQ-71zwqxsMjgRsKlz3enCgELL6tSCuf3vveF1OkDrNn4INvUvmOZ90tJPhf2ZHmpBQzmypOBvpOSoNXYXeccBmoZwM-lLq76FrJjZ0Kh7WblgRlVBMHEXuG4tenYdFOGEKZNFD4vWCKUlR-RLMn_Z22-pYUM6Uo2HyctmiqNKDqqZvCOFGxXiQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682465e25a5bd8.26240991','','','2025-05-14 09:44:02','2025-05-14 09:44:02','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682465e25a5bd8.26240991',0,'cd-form-entry','',0),(43192,0,'2025-05-14 09:45:47','2025-05-14 09:45:47','{\"email\":\"kerryrees@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"8700\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5xDE86eV0JGSL4V3ZLGx_knEB08EiX438AxMpSMRV0l4cN5SHJ77XfDwtuWnSsCXHOaPVAZKt3uV2tS7gRxACNqAc-etN_3dc2GY32ImUPWZPlR5r75dTc2gpg6KhwRVOcMWcqR1LgeMO2JJQmnX9jj5VuaTi8ClgdGC9sTkg5biy1h1rWeFIhY0o47f1NQYkLZ2jILeA4qHrvowlPR30tPgMa716czgVQTib-do83pOYSnHdqsqn-vM65fzPmqhMCtoQHahZkcv2cArGG5Lm9QZpqQ5ppJYXcdmADg2Ufh7M7e24A6uMZ1lCTlaniWTgyuuXtwTLwPDHcyOXwNfZTTd-pf8clnduzXhrE0LOWaGYy8_DG7WWlid5bJ7Bp4tLb0pH_Qdbf7vLX40kLhcnxb_ZCqYq_w-qXcxQ9S_-YgjCOoCasqzQuVRToTgg1hK9b4zPRGTm8bRwT2J6iHoGpFngO7Ix4uUH_B_Ax8k8ESdGC65IfYfbrQ3t3w2JYT9Y8J53qs6VGmy-V6l2Z8M8gcfxHukkGRVr2m7W2Xgf14NmrwKdHZwr0bSZwJ1_eyPb9GJHakIRQ9LLRB-UVYrAJ4Dy0aOQwVO5wAThPtof9XMSsefW3femRCz1SJeQt4M8KAPQGizIfHCdFcVN9TscyTh5pF8AhcCg5vijoL9OrUwZkDIVk6UMnd3jdOhuvDV-rR2iCvayjg6eT8y5YKZmJSXyJeXaSAILdFzZl7rBKy8xoSf6yTJBmAcKGJ4kUOgXUel3eldUOk1hfK0-M55a2tC0cntXa3eWa7gS-FBYqz8Q3z3yNhiSqd0BptvdHHO3ILsdn5wPfXMh49dG0IN2k6v5g94lR70KuDlj6ltyCYKNY-ltBc5c3YbEdPYUW-se9Bx5OoG2MhrQG5t8KDQ09nbf7EmtPitZcINXOF9Bp8Hea4sgYWxXxIjIMWzs3TBTH1EQIs6sTDnLIWqCpYa8-QXlgjLFNxXw4S3ks8s6bauPwk78JJE8n-Qp4Q-SKqKuxzs2bhauTTgHHiJYwqgi9zFcKCc79gtX_B_Bg9HbArtV7nca-ZM-8WeBTun2eDzNF69MkoKxqmP4swXyDMfRvdU1-kbaW3ynQe_R9iyxyOfaOuEcobTss8ml3cGTnCMk3KtB1I7eGPEp7Kq2K9lEAa2JrSSih4GXZwrSI3DK-ukDgiO0NBLvLb7mEmozIrW2sfx_tc6LTrSA6l5rEVd7Yq1NeZsJZqU3-7qHtH6lft-83DreWdf9ARdhWnsk8TrwDlorL_p3H95YQgfXJFOJ7xkIzIvuwb6lIL-C9kxboW_pEI1nHwA99nDheWP-Zf6Vn31aTuGqGo1Dq3c7AN4H1D2APlUjdg4oaeaFhERqHy4UiQA5GWryu7kHA1SxzsPqrqe7NZrp6qvPwd3AB_s1jOq3tYcZUY0YdWnbFHxrdt-x2CW5bUdv_Gjq6sNq0ba8SHRhFvyLnf9FNSlxDv2VkL0N4LuFyDMxZ0uNekj0e7k-sasLUVIqM1H0BP9O2oBt33mZ8rBR1s5nMmPLkj6iUe0YDu3HV6sIKnumacnCHkfUBxikSeJua3e5QwAbFTelq9E9HI6HjJVknFp1cNPNS1OuO5rxfcLIknFUjfh4hIAauma0Ip1k04x5uxenA-U9nCjTvV0GoCnO4DjCopIfz_O1-irDGUZvSm9Gkt6cngB4STWJ2kKUiQFNfBzStEJu7pbqiWsUJQnS7UD8GU87mLMqp3dCmjezJcFC2wwmhYKbCHZ6EFTmus28BirdMJrk2OI8AjCWE_s0q-42duDwMJEJKLy85Hz_Y_8TGsgngpNhS_JEpulz8M1_MmT8_EAhV6YPkqYDFyFqd6EyyQWVfeN4DlHvX3OEe8lo0lG6SShbjXCzPzDtehb4St2zXvEujcpZH4UqIMleEkoBtBBYT7R0MY4Z_FOeFWSwRpWhlVPmayI2b-dOEZs_mX8QUMwu0s72aIRpHIjV-U70LX-ExhVi-z7O7qt8gEd87EjVbSJ0t-qCDp3u-75tjzrul7XYHDqUHpB9L6h0XcXgIHHomOmzs3tPDycP835KbHTJ7c6LaSX33piJ0fdXyNzncYaxZezDmz5CvA5blrmCEHjIXGZT4dA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68246612d91413-23187155','','','2025-05-14 09:45:47','2025-05-14 09:45:47','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43192',0,'cd-form-entry','',0),(43193,0,'2025-05-14 20:44:38','2025-05-14 20:44:38','{\"firstname\":\"Ana\",\"lastname\":\"Ionas\",\"email\":\"posticanna@gmail.com\",\"contactnumber\":\"07845007814\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sjB01LDPr4TF-Z_rR4DE7T_&amp;gclid=CjwKCAjw_pDBBhBMEiwAmY02NoIfBSYn0V65rkrU8weAkS2IU_9hfn7QppDL4zUvew-4LmVTVEC38BoCBaoQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4QCvNyvRjWrEWNiVcJxlQbWuY7LqQSWJvzoMGon8zLVJKsXronKRla5LlyvcD2okviODePrsiMgZhRxcc7p9ENgrPF6DZ1tzIJI5S_ik8B9mcJCzdxpx7i2xqrq-aTS1nnlj5LINexAlgPxX0Fc6puN3P9ywNmP2M37schPZVm89Jvxm7fdR7Rd6SZS7zSMDSB_4JuzkhE-7goWSrp2Wi_4beTfYIM0HkWMVO-eOslRLX4hcuX0B5qi5PmsTFIuuvGNqmVMqOXMQ63BeTa5AkGqJbCS74_SteFbR3rKMP1vFc-X_hCi3HxaXhfgYDIJ4KARxypYEtHUrWOLiR9LKTR4ITavp005HGX5LZ53xJYA8hYmHTR2Afh65z8aMtENubAJWptJoE0qw2D8igNJgPfXXdAdKn8JbO8sY_b7DhpRy1BPeokxPsJgJmZLFjDkPmB4Pp6KDyZu4r9oqTzHbbl5BChN35mc_TRSDa-UMKJnq9DJTyt9FhaIZQVqtcxzLMi0rrOQJfnu38H71y2s6Zp3bbiHw6qF3tA-TcTNu_EjzB42OEdyvZPgWxTgk6XfQo_uMV5HAG2eyKAFtkgE7Yp6-88rQaIwxuaL95c00YyPctjxghPXX5-6uP0SMl7_ZBPf5Ym1YFibClgJJDRQebORuwB9rQskf85hYRLjg8ZdjTld9uw6YZhXv2GH2ltLrsTknll5R4308Rvkw_eIjGx5539TZ1stVmAaW-L-AqqvW0s5euzV4BbsTMHz2ZpNwRdcyFkizo2aS-CSOlLbwoEsg5ib4LUXK-C7b3XE6m_PQ8HV9uduWVqKYGgBEJ0s2bcI6iuW45AK5RlX_VrrRaFrunP0Qsw9Us4WpzMTgF_eIHaWrvKE1sZTgPqk4cs8Lsqvr8HwBAl2BsdH29bvP4hHhAsoDXYrhAUYZ6BeRi24wvUGzkH5kCrdUhxk521HErJlNQYz9p5_RXIjvjSogN-N3aFUV_SQpr7Gedk1Dh6aol7s-8NEDfJqgl6y-jGzPsQHN47qlCPEgeEHKtxq5YaqJrxWa0PqSsdY-Gi-Mcqd3ptpZmCm_PnFvtSSycvLkEOOXgFXmjXiGezrBgS3k3kD-nsYqc2tbG7UoC99acfmOBvjuc8LOA1IDZsUviu9YhviTxIIonltncv5hKi0WLwqeyTb1uvW3qeZAunq58t4ZWcfdHVg2cEDcL0_8PNDxvBf_DUQblORztDr_3ZhOIZpXNjb5HKYYK65YCej1xUe2zi6tae48hr-D6ccBOatv6mrU5nrayNQLOiAyxJDWGr-b4O8BOpZlcpkEZ7R3vYwdS9xHlYBdyDUjPXs94A2yghVklLbgwEkXbF4nT-4c-1xfggi1QzChLJ7_Z5jdpQv8bUpWmm1PbDHKXIV8AMUnOZTfItX1p7vVBK4l_En-7GxxKv88BHVIRQB37MPZPDv8fIg1ORRfzpbNH3wa2YjIHVdy-UuqFBQSk4f3louxHjHn7obK-kMsslAkgKkLtR8EmH_VVU_WPirpfA7hULXcFeq0BqnxpfaXcU-8Q0S-lt3Rg0MxYaLkRqPtvdlqn7ZAOHpGe-CxfpKYDrzIa3HIn--CwZbPA3TneXTD1B896VNV3YXCcjJ5thfw1hpYHuCtID519ozFAZxdwOpgaC-w873QOdS0_9Ybs4dk002iUIQDq-Z972_4aSLD3dS5k-tBFPT4ToG1q4lRgMvdCIoetGRf4FtXb0vUAWz637hQwZErQ1NF11LSYr9-1vNnyqY71bQU8xoCUXHBqNsrloEJE-pFS7cKElrLOMjS4D8v0yjh--6ng0yGfQw67T_yeVRkmOzYK88rz7vtnF6uuHKzLIPYViF92JGUBzN8PkizxCAjKvyou8cpK7Oqda1zyS1ObJ2PO8qlNS2VOjOUCnbzS4XyK0pg50vR5f9ULMCPxT-NuXTT5fNQDxlkzS3UsYu8Sx2zJwCJfhItiBj95tP5iwLWVUBBSYhDlCr2XeeFmZbBMQdr90sRjKRcxkcE9yy-r4FfA-4k1K39lsOAhsRZ11gHarjViGYlC8UktuJ7JDTNy5G2FMFxVYINm4uNA5_AfPZU81pcZoWcULnLIGnTrdtG_ZJ4wvnbgYTtHc-NwniOY5DpYomfsiw8sQ27iAxkbOvSAuI59SOi7Wvc2c737vNqXVTb3M186RKIwHFmS_BlgAUN9NPeDmOZnJ0ktnsivWSxP48DPaaz3jtPMBxmVKXSckO7sx_JOUF2_nDbXwXiHkRHQg8PX62qQHLUeO6NYD1oWg1Lb0SjYx2PHN_tXbf6-jULrjsqaGbGQACFVHL8vbNue-79Bdc7LusE4pka41kzHmNjwVCSMTwv6UkwORt8euD8p5siK7cKSMTy0Zf7_j8f6FShilF32yqFTc7Fs8vAI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682500b6840802.50510244','','','2025-05-14 20:44:38','2025-05-14 20:44:38','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682500b6840802.50510244',0,'cd-form-entry','',0),(43194,0,'2025-05-14 23:35:36','2025-05-14 23:35:36','{\"firstname\":\"Victoria\",\"lastname\":\"Hodges\",\"email\":\"victoriagunning16@gmail.com\",\"contactnumber\":\"90870304\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/neuromuscular-exercise/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7m-Edq45wKf3VCDkAVs_e76ZMu7tx7m-zkDWXkFMkfkXIBiBWLENOBE5eBNdKOSeQ6yU0qd8_PJJhTiJwEo_GBkkJU18MW85o6hmpJM2_l1HQPoJGmCGJLKKzPVdqOwZBOV9RR8vLnsgCQhEwyzsj5ReMpe-OddYv5HLhGWA_O0jX9x5eUoY0e4_57S19zrAQNGTdAMMhv0nyoG14UhXNE6HPPD6xCwG_bG-4Pqr1BVBd6muaUEqvNH69WL71NSHVhT4vpDwqfWsPBuujmbFCA--kKhYQNbxJEs54CP29JE7GvpVEpBIIrs7J3qmwoBjzTegWDqRKHcFfCFf-APvnHMOzqNfI1D2JVVdNh522FIH_wRv5Ckp5S-IWQ-ex48nIPXtnTE94FC0lADMAxMCy4_EjXYa8gly3F6AjSYi32slDEZPm7OZ6Qf9OW0byOoXS0oJVVRSonbhK3LmueSm7q9dP5xtjb6YdRjxSgFChv5zON1F9rlZHEusV_UxpBlV585KnUryCmzAltlcBPXEztKraEosfDcff7VndwcXniFwEt7bGKI-7dg_bViZMaBluh1oVmW_342i-TMkoMOyGZczyzL2lMME3ThfRU6a4BM3BAMLCaPD7u8T8kq3ZAGe2fk_8clPHPZkp_N8_iXHBtA9GcMseiphw64yunszBJfEbxIdEbOaF67lOEYD2L6rEm1ri1Fa5IN-xOiHn6_oGimTT72VtRa7AWB4ohQWXZUSiVc1BIGG7AEtv4TlxbN0bIzhB-tO7xUeK7D6LFDhCgmZjvHt2uYc1bTYdGZTipdlO0bMFp-dJpJq0V-8xxiv6QqBxKXuFd9oKRFqumzdz8ixGfJZUOezNUxFu2kfovESaQs190P-sgvaZ_EsfBf1RpmQ30vJvOLbaXikJ3q8yyYMa_vYvk16eleBLTSc7C4qxagfoMFa4guWrYDzOzHQme44RLID-fSJfrdL2yr3zb7jQrPnb8xeBj6Bqq9GapWEDRO0MC6wcaMH0mlCHW927x9o67Kr0ru1k3B9Q801K_Yhc50XrBJ5DeOO23yKa5v3Szaz63zo4PvV3GJ-eRBPGTD_I_mYiNnSa_4gjHdrAvLbHe_XT86gAlR7jA-IVRryheiwqYgLe6aed_jCPdt9cx6QeyyVtndkSzH-rrnMMbl706UF1dFXqOepL8LGvMOep00ziZHT3anQk-k755ZNarsRwP2QG0CqMzT_qjXN1zg9GsvcSJEv28JlAhT9B5UY64Us7ir1If3MbuX7IwzBC35EgI1fqGDW_SBhB_lk48V5cbllsUFMtEVITH3qp2vuqoYa36_4ACOuTv3wZsTFnFoUD_2X8zD1xJdBfnZnrqd-Th2NL7n_H573kp7WeoAVtudT37WptqVckEm5d_x3VttNEf_HpbHwA3MM5v_O_tK_b_5Rf_VUrGPsomhC3mhhbTwpqbQb1QmCZjq1OTVzhFmpwBUqVCTtWlLST-M8Gtnh6JMlb1NRM8IMHMU_TVYxfuFKd3OwKMEhBuKaszrGJNMu_h7v8R7D4EMnOUVlYyoPc3VeU9jhxNa93uk5JdyNj4jWdJjqxin-ZmfmpM7Ce0Zl0BuDCPGiHsbLmQwKDBx4D31JLBDKOoAf3yegIrJw5YuZBzN1GmQ5JGalRocbQGEWujt6gk8Ylvp1UYDErlwaYc8KPkDZ7IdUklOtGVIAXOdH5ar77x30GpySOhuHEz_5M7J_4MnRTDGhB_wVa-cZgrkVjC1fQrnq93ygyMr4Qrfw-2tWOd40Gsv21SbYn79n4B9etDAltPP-ge-GdiYoLfE2tllggFm2LUNq9Ew7sR-FpK-OamFp1UQyWma9Uq6irS46rEUMXUqvvr4WvH2NAYVR4_KdoYaq3BFz7J23m1RvRSnvz0ccC2KxcFMNbb4UWFxq37qa-tcns-O10IJlK4FW5QVTiMHqqdX3kR1BTAdEVxlfZ7lZ5tr587QY_IHEimuHApg7hs5efJ8yPOK8GqPjYUWAoQQse4-CWPT7ejwZY628wGruLu4Gc0NP_RImu7XObL5-Ho4_tk__Dvglht4T84we5vc0sDBT27qSR9cJfP7PWT8hMr3tNJRAwaxWj3jS5Gs_2ZDxpSst6SlOKAC8XY5cpfZI563ohJTtwpvYg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682528c848e318.61136096','','','2025-05-14 23:35:36','2025-05-14 23:35:36','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682528c848e318.61136096',0,'cd-form-entry','',0),(43195,0,'2025-05-15 14:25:11','2025-05-15 14:25:11','{\"firstname\":\"Claire\",\"lastname\":\"Phippen\",\"email\":\"clairephippen.fitness@gmail.com\",\"contactnumber\":\"07964763741\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v3Wan9SB-OJql59xNhrZi6g&amp;gclid=Cj0KCQjwoZbBBhDCARIsAOqMEZUfgIRoubMV4hnGzSe_bjeajoEHPYa-bMkrcxRQqi4O285yOqS-jeYaAqg5EALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA55V7qw83WKeQ9EItizux-0WiBmbdv-1s9EQO09qoXc5atoWnJP0AQ2Td_8LfDCs8Bz-IAz5VOXS53-UpcDOgAe2-ByE1QWh8CoPahXOKiA0719lrMXgPm99BXRKrVadqqOAHB-elszUAcCXLnpSu2T_s5X5TnmQfEDvySjyTAOxyxYP6-xYC2ffvaPCSJXl1UXeUdlHbcF7eH-eHD4pYDc6SLsihsc9YZBZZAlGmbnaiyxLZuuPjkxSq1jl-sdZHAPb1HSM6z-57FKmxSvqGfNtJIYjSoaT9rxCXVjPJ48PFBQjFTV6WDvJ0j1rzoaAp0CBIeTDh_22Z4yeIJHGcX40SxTghMJ0AHO1gAL02NvjqwXB0jee5QBqwP8tR7kC2MDDhwPpqjKNFmbTgLn6Y0vvSI-7BltPWiEULc-eWFCp-Azp4w5aFbERSoNZjwEpUdm3YMuuSVlnbTB4OC44RLcYcqtxgZMkhYh6ejtmDGPGb92GXa07h2zqLt4PmUUNS-igqjiB7ZGDWawaOCK3g8NsWQHX7zb7qjU0vv7-wxOJS6LKiUqq0DR8Q9dFD3HeYKRJdh_bwM9c5c90fWakk1lF-TKMPCNjBW5KZEBRCxdztLRv_lYmVHPgqoMEPXPLafMvPoWDJrjgXZLpLytCRV0GcAUUhSyqYlrdw_Y12cxcQELuHB_6OX8Kyhp7VxGaLwnm1N6lZT6cfoRPyIIRb0b7hjAvriqYGe_DNaE4zAxY8ErNHoaih361qUTYtq4_7UYNIFQbr8LcHRTDc42gjU6ehT5avq3zSJPs0EaRuqawf1dIa4703MkakNFV5uiYtvyZZU9t9WrIw9zEF4h4p3HcfA0lamYifBjdhHP2zdwazxo5Hdi7uLofdAo3lneCyx1SKy7omW_PpEl0FiIib6ni1vTyE0nVNVUY8eBEwXBUZzklrR4T9gejGGcjSNJgcpoPbTYVApqP3LPBXFywpLO3U5LFtjxaqXJi-f_gcuGrsA21xt80sP3_sx_XovdmFO6UCiTh_eH-U0XDVx5kdrSy-lC7OBGBfKRIhgJ2yssXggIEWJOPGrfwezTdn1zk4cGoxXYkAW2WWjIBLvC2HDnierUlHnBccnefnggzQxQ7LDCjeQTU88KP01FLNYDZimaTprtN74AfjkQO9vv31MNVYJVtqgTOVGHzoDaRs18Jhh_ztxwXBreulDVp4sXZyQNoqKGy-pS0G-fr2MSG6fCm_FwSQRLDfjnwffPG1Xk7KRu659w7TEhLZG7h47zlKByhFlW1nhJ2oDw77bwd1ZqGeRAvrDkO-MHqaVcowqtCVhPP7oqHG9NE8Ft43Vt7doJXKdYBaxvmzf0ygoIUju4-170dfVKTzW5HWWWwk3NmMfnEHU_ypyClOjouLabsNbOcb2aer5V0dHOqIDk8Va-SA4T5lL54SPYtkSNOcb2DN8Mu_JrbLpFdD3yz8BskFXebufp-mBaMM_CN9FEuTb4pgQ9a_S3LhUpTrPpgFc4JUxYNLxDcQPdMmtLSCv4whWhnBlcWtAevbyi3PsihI5CgQsywamJuKSgF1R8gR8EQC1L2sIJ8EdxUCqqFmVwuasWu3nQeG8xGjesSTtnM4R6mewUhIFFebLMVi71Enm_DMs4MrbKVuUgslohevVF0LYdQeeKeALcAeYVG3IBl4IdKldCHxuCAvO0WHMsZOr16dEKBLRH_Bzf1MNv0wlAA_EeUAyQ3lxGzAjpPO5vLHnEqacwv6RGo0dK8YHAymxtj2gdfL91hqAV8XFhI7mR2FjpipmDdMt4wz4T3IvGWQdG4osYZ8U09JDIpTbLdwCMdMiCKP25FPuXLZJ-ATWT_JXKw9S6tSK557OO5TmkpMod4-qzeemSnye0ThwE79uYzzCp8lnFi7WURkq5w6sA6B6Ot2wnIWCUDfs_kUPFO-TYeGb5_3v28a1ojeIvWzptAhszwqfLdc6J1ovjR5lS3KDUy5TQ8-rE2RnkD5zHZCb7sDA7NN4ENhkN2Rq94T_9AtzwqsQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6825f9470bd754.49749868','','','2025-05-15 14:25:11','2025-05-15 14:25:11','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6825f9470bd754.49749868',0,'cd-form-entry','',0),(43196,0,'2025-05-15 14:25:47','2025-05-15 14:25:47','{\"email\":\"clairephippen.fitness@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"5\",\"currentpostcode\":\"NR78GH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v3Wan9SB-OJql59xNhrZi6g&amp;gclid=Cj0KCQjwoZbBBhDCARIsAOqMEZUfgIRoubMV4hnGzSe_bjeajoEHPYa-bMkrcxRQqi4O285yOqS-jeYaAqg5EALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6VHebK46A2Kk9gw4BS1y0lcJOHHDEkDLVpRKSsXOHcSC8g1uiQiJuHzzvN2HABHlytkEqZggLdXpRn6XWbNxJOfhLiRSz7rKdNbJ42MG6Z-X_zLL3Hc2N1-VZ6DKv94R__Luie1vsrIMb6-XkKqGAuXy26UTMw-7RHwWIMYJPjQP_PGqc3svKAK22s2W0cOsEw2_qQomUakhxVNN8gf99HzHWY6chTVEDzuFaCAupWodFSygAa28hUzvJCNrvZirN_3J5_eBJiFPEoDnr411FRHvL195ly3mg35r4SudSVtHu4ULOOsBelHz-hkAkW4wk0kVq73xScLCeTCAHS0paVj0LNHEFwURwIYj3ES8dJOevMKsI4Ri8X5S5RkVcUmB4JZUnTziWXxsd4bRPKAqduMfZgTo3rwY8pkUx0-Ko37gyYD_kE4b0KqPvJBmi6kxxZBjF2aFCjIP5v8T-pRcMLk1LL00YwLlYsVt6-sdJaVUVqXHOuR_CcqPB5OCQ1eSJwO0D2QyRoN0H4BBbWwup9cGxD86jbEpTWizPrXUi9SaJvFTk2-dQtruP01mqDj2x2WjEwk0m92tG2y7B-LTdHdUSPxIFrIBXVp_KhyKHVNJ_rn8j_iyDhXa_Kz8TAZj8AF7gX62o8ugXrWzN4cnZJOAosyaCoqjo_tqRPcegphnIGwQkWsFe6jIE9vfq3n96TaYA0s_YhnMCyiU7lnBUtzekQKr5UbvYXanTksDHSakRCjR0e6R91Wfyo3rK5jzTgm808sxJeb4VMmqBS9VMpMsefn75F_3b1UeWp4iusfosQV2vLwv_SOH-whahsE_sZM51n04wXIRQuVCceD-5flE3XsO-7hMgL_rNevbLXA5r4Fo0RkT7VFkMT_28w3YpT2UOBDWSJ3GXJtazJa6pzqfz06OjIta6zKbByZ0cQcG4pboK6Kr3eGLExULj8a473gQGA-VcbwrY0oyJ1Sr4sYYINVGrAbtSOL1VLZyQloMyIlT-dOUYLKbcQn9M16_igJrUpCJeZ2mbJzTrQNUyPh-YA4shDwT3tIpHaBlpDdYlMwbg_RzHscN7gKM5J_6DGpr_Wixmp_SbhgmbknvCHYM4Adyp6du-UACLMUL3wNlkfmKWe0e2RiOCidybwpfVNs3QsASJFBWKdVQ6oUPec0x_iaKp9hutQq1nSLpSTRM3IBNJGFD1Qya9ainzO8vKArT9j16Cmu9R0SKh3iOHdU91Z3ZN9PaVD0yJwcUhWMWqhOHkjmHfTxFZnC4ka49NmOBxD--hw181ll8tlFWLdVUoWED8btSYEggoX7rxmA-8g53odKV10UoCauztboV-0DzgX4S50agEWOfTL-_zplBbzxZMAfORKek3Ah-F5gd4Zlbb-F4Vs4qudhlCcGr8sOSb9Rrf42saZXPEAHiGoQo0cfOT7eeftYjkf-Kb2mwXgzTZuYJo6-YxzoJASyD8GfniT0HBmUBG1UsvoraLf916xyLrUGIr_fWofUJ2qU_YWX3c58O24vfdkzXuXGKU5FOK0xxd8K6qqqBwdhG9YTkKudbMv0Wi-sv768JhwUyp6Q3EhLR5rlWTcihC5jeee9ssmRSCrbUgu3YSktnpclTgUZPzyeEkv-zZOANHk7w0qDJUTmaVvKNXb6KC_4mYxCiFTSA4zTf3N5luNQDL_v8RzXjxggghj9Evc0kC17CT6SKhBwl619oOXc2EPgQ9XHCqMV4f7ysTeulhHRfiiUdG8L9w7OoKCTAyOFDadwyvVOlgJeVSWqRqyH4fDlmUM8Al82JdtFm8h7OPoKx27fFjDI-PnTBcum6NGd5rKfwUeNpVaPzjz223zLjSGtHbZPIK27hIirfJpDk0ZHaBu5_Dtll1qxPFP7iuYYWBZL8tNh4hdJ1YuhZlQwJP0UrhJTRQchHD2UzvGZQ2bgMTSVGrW6bxcwjFtx4srqYtGdhNcrOALZjKpfAYWWNv7xvrUgKmVltPAZgwIouu14fNRm-n35rxOaAJ4tdMbsv74NOctI1gM5kPXXgkEaoS8vH61x6-_\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6825f95c350c23-81547329','','','2025-05-15 14:25:47','2025-05-15 14:25:47','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43196',0,'cd-form-entry','',0),(43197,0,'2025-05-15 15:19:21','2025-05-15 15:19:21','{\"firstname\":\"Liv\",\"lastname\":\"Anderson\",\"email\":\"livandersoncoaching@outlook.com\",\"contactnumber\":\"07783470229\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sDiIuuzwWE-RP4at0JGL95Q&amp;gclid=Cj0KCQjwoZbBBhDCARIsAOqMEZUAUYgTZ1awVdB-EJa95RKTsgE8z760NVA_HjiUrlyRLhkJm7UykuEaAipDEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6lqWfpwMz5GBFnPUNU1SenYrqS_zXW5q-dJzdrqTGYUngp4VqYAvbQxSKL1-0tTVvAAQu43i_tm8MILNyfHlKH2x_CliV2IxhhZrIhWbEJXre7Cy_ryJDvaF6auVs20rbT1rHgdrnSA_x82pc4CbvjBHq2x2pcKKFoAINVtCxWCIvdO1L_-v5d5FdbMZB9gOqyI9TQMofunzwupp0WJSr0gqh0xLT-NHcNpq2nSwOtk5RTQD-WDrGqKzCx_r-LW1HZgKn1BnxDJA4zsnHunu4nRDveuST3rk1s2ANogcf0sFkbB7kdfNTdWD3FOzxpRcoauCUq1Zaao7xhGXIBw3OrrEDLLzt4cJHeo6Ut4G83_Svrb12Knu2xAIyn4S8xE1Qaij9tltEzY_LNelzLii22yl_P70YNsPpOA8is7iUCDxAU1A9wrZGXjxQGjbtNs9NMWOju8lRgZ2wPzKeJpRv3kewSIJP9yq7BpGMaRmPgIXugXC27VD_Q3L6sIwrVXKPh2j8A2XAwAmD3pWngwvk6dKGLp2d8xVESRBs1K1eAqPGYzn3zXhvRCoTYELcQ8DQGO7GPWIoYJUIyUtSMZTSlTZiGt-1izF0SGUOvnodmPS3Dw4XIhdDnsBWSdyyhP6WK0ARbQYCK_EFxHzC4-suZFaY241yJSqse_hOy34nEHtpXmdoTAHKSpcQITZYMWaYkzi8XjB5HoMbj1uXkQF0tcHy8f1qP0MvhpgrvVVC6LDbF4iD1ji2bpI3M6oX40c231e_Ehbwm2hcy1wEYYf0pvmxc4orxiEZetCXuEOpDltd1CvtMWHzJqdfuJ6AppIYp3gvgujZumgC_b0KaemrwSW9rSw9XySQuLekmRhj1Un2x_TrRFRJtaSJ4KL1QYjOeHtHB8UPEsHjQi7EGmilY_-q_SLIQ0rw44353hg0BdZn26W81dwmpUUaBsgubXzxmPbs0IIdimbHzgPuMAxRmxYatW4GdB5kNnoDlHRymJrhqWrqwg369YCvxPUVvngKYfEZTI5GejgtZzFZbT3ePUoKF9UpijmopMJjt-zCYW64A5pfLIHNIvV4PDKT4JJhMH4j_w470WiXWHadRoTl7TFSilH6YBajHaRcH0X_4nnkY-_LHqbYnAGJvrJdIsg-t_LBmYFY71XxMwsLqB19b5g8I39UOWQ_Rz2cn_y-z3_Fn58ex5lvypJxqAfXK2fVDnh0upkJVJSFUKbzfh66hx20q9Gkp0Lg5CuACJhBZBepnquaMoKvlg5-r9jMWFMoDfqhNTXEbUjIoHdzHqTTpej-vxXobVW965FEXxLzGs9SgyYjqJRedWeV5So6xfbaEzd3jt9AE4BI7o_mT0l02Sztf3FRg0Ma96nV1pCLhMdwztc8lsKrg-18NM1QeX3d_MlbPvpvosndjYhlAZTOEcEqBUnzdUIL69AYh8Qj_jqaNwrXJ1sdMvskVyQfJVw9vKphu6BNChGmLoxodRweFdmy-OYn5mluzAwSJXIAyqOAhFURd3NS9hmTB1Soq13dxxALkgngycDAg_Yz-jwu08iSnCJ4GuxxCjVpGE5V--66IfsgGeHppz_IKF2b4wpDU6gJxZEW2PnytAygcHhd5D9qduebccpmK8X7qgHFkPtFB5QAYTl6VfCEWjKKl3Xn6nA7K9lPDYKoNbekh9-jIOdwA-W-7-FLNvr4OSf9ijbmJFsPMhd_cmi40gmUBlzth6ObBcqLQCkvxzqe40S3nJsZiKmp1nuR8f5rkOOjGNmTYrjY06JJUfB4-PZW832PDhNwDWzeydeUOrsyxfHLHZSlQNgEr1NYCdJ55gJqf7lUNuilw14NCq90WcfwRO_LFHNvOme5JgahPQVbjQbeELCQMWoR8qcUh7Xvsvfi8NcYMRlXJJuhNw_TD5cWkQT-lFBRBLL0znOm82mYSx76Dlk5hj9dY9AOFifWobGauoBcb52wD82XwGewN4Pl6uB2bva3F5c5sCdiT2bETh_HrN9rA664vd5xmNovnX-3mDoNv5v04i2uZqNRl2HVRL_5g19tKXdP9y5f14a4zAjnt_FjQ0WE6voKfqq1Xc_sbB89U5DKwKeK8aIngRGelh5qjN2mDGqimix6Q9i74aukxIpGLWD7guKnfBYHkeDCZSlYOd9Gq43zRmmO4NGSqsxMciFp_\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682605f9e4ffc8.37604086','','','2025-05-15 15:19:21','2025-05-15 15:19:21','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682605f9e4ffc8.37604086',0,'cd-form-entry','',0),(43198,0,'2025-05-16 03:21:37','2025-05-16 03:21:37','{\"firstname\":\"Liza\",\"lastname\":\"Lim\",\"email\":\"lizalim07@yahoo.com\",\"contactnumber\":\"07703467448\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/about-us/fees-and-funding/?utm_source=chatgpt.com\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4HBeaGoxWa2oxUaHA0OZ5iTa5aDBlr0QRblUWk9fU--xw9_ldDkunKAF139IankiE7v6WToijDrMokVpto3pP0ZJGe-I-W3cqzUIeM02zVxqRf7kgNaRmvUc2F2zxf1-x_LW7H3gZKD3TuCiL_7KsBSSqqZZxQcOTtJxIbSu8biHGhhtWSlOV2SjeK6SKsqVDiEmFf4n8VnFkg98_f2XQYoMaJVatOS-iOfC3zzouXl3n42b0406yi8x7B_mdOP-tqxqrV1NxV3HjmAbueK0wThNa6X8oK4cGavnfOKo_ANb1LpXLXhMR6mqomMK5pY3q2NsCa9UH1JYyfet9AGTe3wMKWCAEIWepRPfIHkjjmroAai5XmSAqMetmRkt8Y-uDsTKIk08aOT3A_hWO5A_IJ1PjxjXjH4HYn1SB6sFeadCEOvQ7cYk0EHYej2RG9B1iVOlvw0usdjAYjRNC20sH98tGw-ouQ3838oqbVcgKf0lXlBUr1zph7i9BPq-_jcTBk5fxvEUJFzk1v8xp4O_TiugEwZtni9Ma0V3gxIaO70LtS9U0JW84luPe3pAIB4ivkIlnTw4B0gTGAsz23CmbnTK9AAgv1_x0QqAJONkoNYzLFdRafcLXbLGBt6ovHSPpFghZRWWBgeIjfLRrN93ZxaCPbnAEj2HUAZFEijphonl44KySO3JMsTZeQQcqXrn2UOjRj9Fv0CXMCv8Z9u8jPS46fKjqg02i1rzdB7ziIwM5g6eDiWGj3br9EemYxv-mlTkoNmVTl5yUGGcOYXopw3GKMPZfxMVN4PPKWbAZAs5rT5nErP1Cxr6RAd8IVisT1k3o3jiF7iSvICsUUIPC1XofrOE0W4HHYG7vIRRxgxx2yKqiodzMAaOPw5mYHLLkx5Ag_bvIcKiAET45-sVSn69q_Uj8p88Elzylg_B4C19nG1dyOSVF7p5Wr-JAgnrmRSESrg1bL7AqHdWp2LE_mA6XZYaEx-6e3-RF-vHEeUw0RGAikVXXN-8TUdos2FC34QOvw_OS_i_1_-5I7ZOjUOdoxckGFsrTo2dFwMgN0odM0D7tTHaVRLt0JKJNLfQMW3Wc7BvfCVXj394QdIq9fggadmXKfMZ7kH-pa0Tt-1Repx3mqzjgCkCDIRGo1M5GXlZAA2g-QzPy0XuiWfHsy_gCh5Hr3_c0gv4jowp3MPqJ69bRmQYlfrnrToMOlbXlBqTj4PAygLhUfwvMYHgCDswpNEUmHIKdQNCZnTYMCYDlppMsXxMGJQS2lDDjrwzKL1CyclhMsWexPmfQPHcKFWoqssQTb_yXi5DSIZtLpFM5yrn_D2vcd5WBQ-oIulxzO15UQVo5d2BUYp9CZe1cRnopMbGU714KqZ3QAsfxJ0gLvdk7Ax6fHH-5eIgL5-6eO6tyP6FSw36E9wMM2GFli2sHAhpmq9ovsGPYgyQfimFpjRryB36jzaWwmxTVDqv2XU1Qf7t5QT9-97CTklwM-y_KRTPcbxZ4WAbBhNNCira_68U798f_F_nW9Ej_a16VQiicK9a2DND045edHbTtOk_dUEf410OAmh732BWQIDGTBHg01lCO6pK1WWjO17pMEIGrZeUJ4z4T8lM-qRHxBjXv-VBTtluICMpLoxODbYUMpCH_l8VRTZDbHQ4fkKNRnMrErbXmosXk9NBWWrTjlmYlJ1mZ0qaHYkVeBj9-sHNTV2gxvNDBWhJQpZ5FNzQ3PyHkffFi68VPJeTAeiwEiOJw0D5TnVPFzzNJH06z5SiCLq0pjob_VGckR0C8uMlX8FCHBBqggHDtP7M9B82D8LthUlSkNPHP5R6znFkWjkIKyB-_KQ8Vx5PzQBt3HXC0Vk-RfDZlkIiOwKzOVnrxX0X4GGiYHWfUD_yjWXQshd4qX9wNW4CT4obfMEo3aJQSyJ1EGmAXhU5LjlTMUcJ8amOhkvNABoRipeLcDszEALjAdIgYyOzpfL_UOpQkxPaclw83r_9-fUVQrJunYU1ZVgl0Tuc6dcAzYEGPwimCuGTU4-FT9qtNRA41wUSVqrEZedQ5W\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6826af411e8972.59562351','','','2025-05-16 03:21:37','2025-05-16 03:21:37','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6826af411e8972.59562351',0,'cd-form-entry','',0),(43199,0,'2025-05-16 06:36:22','2025-05-16 06:36:22','{\"firstname\":\"Samreen\",\"lastname\":\"Sayeed\",\"email\":\"samreensayeed97@gmail.com\",\"contactnumber\":\"07833367610\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vDJy5OdJQGAN7CvL-WMceRW&amp;gclid=Cj0KCQjwoZbBBhDCARIsAOqMEZW_eY-3JtjeCyN_rg-l9ntKhRXUMoMkaDK93AZmAHJ7k2oQ6GTezV8aAi2DEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA53ZkoEbpY8l8Slb0X4r1OMx07ViaglIYmhTcaQghlp3tXI0jUpELL972iw_W5y_1LmkJfn1wZgxdPBS7CpJmKNgqg_7EDG2XXwLAchZqtFYv5u2WDyiM7u0H5AjxQimUo6xMKgIDblRPRCRpSwMDobMK-_eL7v5BFUJuoSuwhyArDtfgbzi-Mpp6ImI518WAaECcM5fIx5EJraVghau9KtOW-2cA-toq_v0e65KW4MVAmRhGK2hl7_krAHJ4_8l4if0YFr8bolHMoCHK5m9VzDuEgcKEmlyRVqBGOG0mr-5Gv08fj1LSYys_bQ4NNHibbeQeMCJKVvXrsW2JQpJxvg7RsG_RCuyaQEI0lqTm9t_-8-j6huSZHaT8hw_VN_LeV_iEA_Ssy81FlbQs1RTMRUA6Xi3IRdFzdkMDJ9wD2_R9M2o9XlnxzlH6gUG5oTdzFxnYs7MIvO_gf_qKWW934htMWBCYNaaeuvOnuyT9HGRsoGgayQQPOFfwkYR7I3wjnOTwKOI0XQDPZOgfS7wFi914hpav2ZeRAi29l5URiOC1I_Qj7l_-LzvWDHjV1kHJ9NC-88bWXS_kNjoGlBzv7bNp6MJuhtriAJjyq2VJxFdVG9-_A0v8POH6ed6gcmX1s8ZLMAq57gTrbnp3uhVpbNp0ljQNC73l2-LWoHONh7RUSn8HuI6kCb7bi7kG51rD9Dy2FVPS6hxmj7s716FPJJRdKg-1OCJRJyvqBsU68Nyq7SLG63oCJkdVXvFt44om3poKI4ADiQMnZTAxab5Ef-U4NMZjuN8V2mlq1lzcrBEeTVT4zd6oQkWrqmW5_kBIydzDI-pioznpitmLXQeCa4PEsq6GWDwLbhTNq7VMucPxs7VhvdJj_CCZ0K_EX47BKRHTlr2nl6smIHo4HQMzWgf8zEK6hIE4ExKDiKhlBKrWOS6n1VV1pPSZrVm0kalMyAUfkrK2TdcIsCtacHT8FELjgLtvKQUNDEONkzmMUfNz-VAMxnsboJyfvKuLrou3yy-2npTs5Nu1N4OeVbP5MJGcwJ7yimN8auvXa5FCbtu8VBRXQLlIkW_L5P4YJh7ncBn0P8LOEZnz2dNVdmXT8JlXzqneqfgTa0nWY6fxPCyvAc5ftFLkyRxEeM9UqG46-s3ucnwUHLP9GShUyHIOmoNnxl5BwYZJiJkeHNpC9aVXi1AP7KtxFajtiqTBB59YTdIULdWHNwjk3M6ud3t3D8hArNgLZC6BwakzQ1XviFx4kObJyk4v6Nq5XAxP3qjJdYgQ4snZnlKSrei5te0DaAqey7-5LakooboRw1gf18hSCoxlTVyg2jHx5MKYbP88sCMImkCGOzEGjboSBvAOLEQ8PHlxE3bW9pP_iMNmN6EmyibNOlNJyQ6dhxfPL73yHlP1E3R27_6FcxbhcfbO0xCYLazqk_wRDbEoQ-I2aSTgl90e6uyr5lghbY5jw77gcIs8-s8U3x_GdRZQT21iuhdc3Sipr-kPFvokW0mz5NuYgfarURaSc5CMTlypYMYyf9vouG2Ww2XBwWuUGTfqGaSH8LK6xbRofgfOdWYALXyqAC3bBU3VKRF7M8ZJ0_EIabDvo_k720pQEG2LjiZFudtC_XPEsWx_0izriL0aTGykWlm9HgP0JyQ7oKZNEUYve8YLgTYlpSEs9DDXfGzWlGhVrQMHGxaYURCRy3ZJrkIlyRPlZvfPAtjfYF16ypawGeHhuza5vZPgLtXFomIpAXKLzm2E9YtxZbiMVS-tv8Fcu6-C2NS9uDeABciSvasEsCmmNkNVEEXLH3Pp5UAzsIJOxJfRz8Op8fFqEYdA6Q-5beIbTqCgSyyrKucvLMDUGgSXzGlAgVA8GHmuU-KbtzmDoVkmSgY58krW8ygc4jogwyXMFXkdC8OqHCSp0Ez6LBrdZKKmD3avgAAR2ihF_Jtlqss7iqzHQL3_j_LI419fUGJTfK8MNvIE1WNVdlOTDrZ4KdpOFh5yhnDicczXLnnPFlz9KAi-W-ow7u2fLqZlYY2WI5M37jbO2DSL7jzU0LB3ZTQtt05NVeW7xQbu9k1xXiPXxdnoSveYe9b4HSUEn-V0YxbvPvstMCnJtOZ8ssvCfwd4SDZkXZsuoQBMxOO0xDTDUP1-PlPs9Lp7TyxYV2vZtcqqS5koSQOY87lsb1b0yi\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6826dce6e7ed48.60703832','','','2025-05-16 06:36:22','2025-05-16 06:36:22','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6826dce6e7ed48.60703832',0,'cd-form-entry','',0),(43200,0,'2025-05-16 10:52:17','2025-05-16 10:52:17','{\"firstname\":\"Emma\",\"lastname\":\"Robson\",\"email\":\"emma@essportscare.co.uk\",\"contactnumber\":\"07793046665\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7jU_bWpV9MNDgOlXUoccR0i_XbJG4AYcg8YEW1NitqjO8goQNVKIfVVfSnm_cf8ZszdoD_72xNd6GK0Z44vWHfO7x_eeTO1Dl2Y2ABMuuOy4f5Ioo5v5GpXmLcbrPZASzPMZ0iHmKLokgu0U_kH7XVX_bgpXBaS40Mg0Uk0WC1G4Y20ufTllow6y7xBMkgoW2HhtmKgIlhIo60F-IP8MuSfazt7wkfV_eJTQGULUW4Ggv4UsPmCLSResZFc4dAMd5C09Qf_Dzt6l25h6gz156bdgKb4y4LumxtBYmuS8rkqY-E-lAHwsNXk8zs5jiq5JsubT-Jj2BZW2CTyI5fprBLmFAiTwTCcrTJI4qCH3Cp5mXyUy_Shr1Io8ZA_hM1o-KSKrce0NQ880PEg9WZWlrrdP0PbBHwYy87_6mXQqf1G-1LGb8Uiyxzfs7N08kDm81Sa_wRJ1SoIOXMuaCE93ZNrK784JwTWNaVSgoIhkRiWS7uOusLRY-Hvw1TOIR8lGZ-CepsTLbCYEeP2sCxKxMXbrDI9_Gk7knKvh5aKQC9qxLUpnYx3a-mtbVgDKUKCmQgUAz0ZbBGSnkzrOwUYItC-gO1qA3V4WEC7ZFAT_aCSMvmB9kCWGTmutpz5Kp7lz2ITG-fOfF7Dz1yKCw1Tlyqs82VMPRGk2sg0jbsxdQWzAKdgpjxxHuTp93aaRTmT4u7R79fHj7t1bHv42IPB6Ijuqq3dhjk51ibApU5hn5OiPuH6fO1-_kKNNOxyxvY81U4seGfmVs_ha73REvxO0hahjTmnNVAelRhwUXyZTpyjQa9BkKm0Had6sjqDtAgsit4Vfmhm9Gt3FrovYxqziOLwcB1iIOrtSUVjx_jDifsK2gFy4oP-ZquGp7gHw8bKsj3DdXBNoDsgbL6Tc6JmIdhnTSC1_-1ROKTavetc-X1S55SsRrxvPz0j-UFl3Ib7UKrAj59zKtFNlFF_BZqC6IfbHnAyKsx9UdEW70wuM7COE1RJnlDAMJB6fIJ5m3GD5dUA5_IRo1TV4kNl6dwwEUEHn4aPiV8LmJvYpPrabBsUuteJvn6rxLtHfHU12pU8o96wzSC2zddPikoh7nuNnF4E_i1llDrjyfR1C2kKPsyFPocbaWsAVoMH5BqpubYL54lMzAzba1Vl_Ouf9Do1sAzYSfvRhHErPwGK1WkpgNS1sJy5PuiVWUdY2ZPPevfRAIPQO2QLEOGLtG76DMw1d1Fk_UNIggH6GFqrfgsMxmE4IGbQiFCtgkNB6lUpd-i-NplFkRExnMHQdx3lf7b685-OM-eChkoJndIdE45Vj_bNct_BEcqw3VTnv_Fzr0jeGtqyf9AQDqR9JGLyCpouO3k5Cc2tv-6diPZpFXRP05zLgb1xX_uWtAyAYrNqfhw7i6dlAAtYD1v5GRRfm0LWmLSv7q8DZjE6RYf69PtRezeMT2MZp1emVPH2vtuMXtPoKL1A780rQzrR7e09tvcQQ_s7Eo8R_BRb6ZcEhbGwhZUpY1ak2yKAGW7Hnb2lQgDZBpcr3Yubp9ItEqnwZp3rmXLzKra9uF8ABJ8_X2yik5JTDXJy0D7vLSqiPtUw6QeFts_BQjuhZ_1lYLCySab_GFl_TQH4MnPn79aldKHMhzrp5bbKbP4DK2x1oTplyzE-uYVNiba-6P_gIHfGkjgxwu0kHUa5EbT2SJLDe11zalsf8x8yW0jg-dK3MNQBx32KBHGgMHpxtyRRTW0mj-0DUawuYXIjS98P2VfukhmlV5JXgZa_yshzj1eDXMyB7pRbSZE0_BcK1ZlwW-5SX-MZ5gKu3NhjjwZF__fTu4wXvkNGhlU5FOSP82w8shpF_MZ-_ggSQht6nZfigntEEBnOaOmRZZ41bBiT8RS2pk_PKBqzNtttwoRXpmqv80d8Hm7qbKKiDtU1D4E2Meofepl9iWmh4p8PvdWIyGX9uNRw82rjoFJuGJPmU-ZKvZ0AGCzsid-_xw6GO9rIxLCYgu31h8q3ZRRrfG7zImPPfIRFZ7bi-xBmGwH11N-TUs7QwCajDKdWsTyp2Dps-gZQ1sAT2pDZl8Wu9aEi8bwrSfnp2r4cDJthkQhe5M8jp0TbeK7XIWcCjPgfsZe43Lcn0s7kz3R6WsFmhnRAwn4IxBNCwC6gQKZHwynBN5T7hFyTe4xAhyoWMAX\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682718e1c928a1.34905886','','','2025-05-16 10:52:17','2025-05-16 10:52:17','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682718e1c928a1.34905886',0,'cd-form-entry','',0),(43201,0,'2025-05-16 13:13:20','2025-05-16 13:13:20','{\"firstname\":\"Alfio Daniele\",\"lastname\":\"Bella\",\"email\":\"danielebella80@gmail.com\",\"contactnumber\":\"07414859233\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tDkXQRAlrg0QTi97nQRvzMM&amp;gclid=EAIaIQobChMIge3Cj7iTjQMVvplQBh3bTR-HEAAYAiAAEgKYS_D_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7uy9jSrOZIvjAmHpDo0QftLZlqJAnO-yFzXm38jUXVqOBWGLn26vyFaC0m2b4M0ynyyw1_6bvd0jSqRYCxFjO_XyffL6axsYNoJ1u5Sx5FeOlUE6YS80sVOQOtlniO2CIn3p7Dw2f3emQkLgkRgdwxtYIHCPWJf8LvoCZDBVs5vRxBBwgUk-c_6RjB2ozK2RIPycE1ka-tuP3Y0_S9iU5p0ScSzgJyZjRhKJI_wRyeih-xYuSaB2PUmFpNCvezAgH1SvW4D0KelFN3xZJltKReIFYg1tXGf5WgO5O-oRESUfQ0IxnN6SwULucDw03ozMZxEUd6ktjM-eWGGa1Ej-EpLVs7yyCr5VMxsKCIYXBAqwgnDiUNUZcGdknMSHU7JJZb0iGcnIRXSuNsN4JzctqxRpVPR7WjisaKhOSfGewt_I3XaT2Tiew0BwFC-z1w0tlcyidO3s_FYg5c_-ooxOGXGLCiCBLswWSw8O4SA_nQ0fCgcGryXyc94F2tbfJeEAZjzTXd1oi1qoJkU1YdBpuE3inUneRyUXP3ofJfGBd1PZw_k6HKscSv1kOEukR3EM7YeQaaAvozsuoqhgZdyvAkonxH0I28mf4e0uiPWJ4Z2OwjMoA-SWvCdzPonk9o6APzSlKIeAgJetEH0GzKBKVOVyK4xbjasWoRGYswEzetcToVu_PjZfbI76MtcWNjDKIe2VH6WUhWztOoVIzqdQmolahMJQodMLbFgxgrnaiRFccln1pSriyEbgCEnmhGm7gbl-XQM4pBaJqCLIW_1k_YMGm2JlqmcoUSN9qJJoayJr8Sv9HAmAffpEQQhGgZPwodfAv17r4EfrlFKb7wrsKyyryYnsJw9wLEkoKDAcMGPEDzCZCa1UZrCClyVz2M1O5y8iJqEaz_RUQXMSrsKOq3ytx0_wC6BB5u2QQYZ1KNonefs-w2oioINtnzz1geLspvwX3o5W4RqK6uFF-AWgROFdVjok6BkMMhP_kpmqW2mVVsa67IPBgOdUjzG2t3eUM3eQJqSXzOQgQsKIAL1ZrKAl8BDZ6OXpKjFgnx9MhFUQ8YBqk9LD3d5dmpU6kVv0xHAyusi5paQA_WNv7HRDRV6S7YOUBAEHAN2FVu4b4MyCPhaT0n9faBhcAoK_A2nnwR78t393j69aJdQ98jYEAF6OBk39IIJPbYKvx5roFmSzosY28LL1xDBd8Q3gzFEtq2I86rzbBLi_mIooChPvQDH24am7AOMuMPAhSZwIcIHj1nASNAcARmad7c69GjHmqRkEnpu0xSlWsEBzEnkjXXZXSn6RpqEe0iTYVlXrljX6a51iHv8QvU_P1lCCt6R855-32zkLq4PRTsrDavHGd4DK7eDzxQX3r8VpKblys7zYSobjvvbQg0DTYsxFqgi469ns_u166Pwq9qsXmCymeVV_wkKxPQ1vGJE90RPb1YwF_DRxh1BI62iZmnIBipwwtKKgFkYJIGuv2GZQ2TrruRuFcso_e4aDJxiwad9OO0FtkXEG73g3k0ctWM0Pd3n8TuMoH97n61Yrsgg68m-TjLxtpAgDwhe5Zr7_rAj42DcIL3Aq_cp7MMhyNUV5zjO9sibAq8ke8xzztQj84jW5M1Nif13mTrkkjpE_-XYr9jIlpgcPRbcRyzMtg3XgPLuCrxd9-CgV2vlVDa5vRJnP0jo4d9HqqSy-yTcRPgAz7cfakGrvF8BAjrXTvXvVjQriZ3YcfwkHmJl1yJVelCmB4qVOWM4jYgEwfDyo3QxIAvbilVIlQJA5Fy_vdTq5CZYiFtjLI8W4_Up3ql3edPzXLrV3xDuswgtk94ks4kCszLAmXHlTKy-sN54MtrYAQKccruC9WkcCbCp_IphFkrj4trknXIAHFRtAD2DgL_O83B7ZAUjTJtu_pFON19bmE1u1pMQ1yMcaYrLua-D3QMlL6g5pW4T7BqOd61huJ7kFfOeG8Uz7wGGr92deni2UEqcq1t6ttaekVCbj8ozz7w0HYqHyjlCbYxgeLWpAuGsPUTNxEyoJDte8ANbDJ5dusKM20Asq-KwAfKSgZQVp-fKzhILWUvauaXSeqKz_1KYrXdkccyuRD9XUPane3Sk4kYPzBKxnMuVpj4dwFmBq2XNhFu9Lm2vdlmvlV8ytEsYSBQrfWXBgEeAkj99ZwfsiJ29b7dmObv4AhL8Y29_MyXGFiMLtYIJYk5Jbl6_ZcwqU7Uyw5gpOMnSqx-LshoCihv1WvOJrnJC-hJLXpZROpyew_OUKOVPt8vj4zzvCNvl3222mWjH0I\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682739f06f7300.04976249','','','2025-05-16 13:13:20','2025-05-16 13:13:20','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682739f06f7300.04976249',0,'cd-form-entry','',0),(43202,0,'2025-05-16 14:04:32','2025-05-16 14:04:32','{\"firstname\":\"Craig\",\"lastname\":\"Hollyoake\",\"email\":\"c.hollyoake@outlook.com\",\"contactnumber\":\"07936209528\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwxJvBBhDuARIsAGUgNfgSxQPvcNzg3dM3Tkm400v_WvKcyFNf3TKXzUDOZdo-LisRTaxjg5gaAnU6EALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA47ZwmKZU6d0oE7b59Z8pK1evcIG849K3zwTYV08cIL705CtVWOlo3l_Iu5v3ypGQpfrewB24_Xh2Pv0Mdt9eiOC3FOsjWseWmzHf9sR7CYB1RbdLECoDtd3WuYEmsZw9DlnC7ydNzTHrUKAOzZjUz-XC3PMTLrB6FfjVV6fuSp7-MNmgB0DbWdHISRZerUnhjw6PjQCqW-ud7UdVby_cfBKy8oYwXPhJr03spY_mruvp1sZ36MAtEvkQoiJIwEvyHTYCmuojZQPeYvAAKriOkvu2nk0QQbHezLdsz4v9-aHQKMW7UW_4d4ThwtY527vnr7wjFj3VVZSopmCtxi59bs4btD521xJwBKFOAUnYiO5Z58jP1ywSmFIYWu5VKRoRCWgNp-HCkOVElN1rWo4DLF9xsKKbNtbPcW77U4WmmdawUCJcIHMMmaog-_036iM7pmC5_cKtHbIoB9uw_vmIknjAwAhK1dE28E_Z_R0CDCKrnRUQ11wdlLBeTwbuer-zz__bqjGLI1YzYHUO4JL8oFZbFxOFbClt85ZRkl_BrL3WLTR1lsnmUOlhfZLedZ8c8DrH6yY2n8oXNA3VfZjfTfEy2w1OT7-S-rXNwl_oFblASOOyd8P0_aPQcT1LAXAZjC7x6w-QQKZgzPe-8Sk5KsucPzO5iSTnrIXFXOG1VbPyNZBzIjSTVSJaO98nGv_iU_ModMJ31Z4HP8TuYRY2SjmzVRtSZ7eHJb-xIB3Wx35E_QpVMdKRM7bE4BuZs5xvsDUsY_ybwTnC45bJzYOdBzfP_qWdMLxge1AI7vWJtH5s4i8RoweIJ1m5UCrOGVspTz2kvXchcvlpWWM45xUYIDYQPaxjS83JOi0MHWX8LfsPfG2diMT2dgebe2izWiGiHzAsvMzKuQaBs25sEdGiUvK8erjmXXoV2wSJlP1W0QLbjbSNkEU-eJCyeEWLnyxO6YBpIyTp6veiOeQKnT1-4Z8XJufVEt600Op-91UhH4CDV4WZ5ZUZOMBq_eH0Vbjlcr2pfvN1pFbc4ee0PvUmMrYPGnFymHTi9xYtqNhyecNwWkO4ckClWisowkAu4UOQsQFYRfDb2hsVFO9iNpgu3O3m8YXoitsdp_Qr9qin8RhCaipnQEw7CAuBi4JxHWOy8h7_HSWAg923uRhQEFh52C7QK7NlhEAM6wvGnNDJlba-jrq170nzSUHnB1di4Dk9rCST1KwQlGQwnREO7CNU8CDDhgGGXh-DuU8v9Y1FrLC7g21CtaNrNoO96a76EeAeBfdybx-GUSuo1XQztQm5K0ee4h1GbA9_4zxC3yj6Z_OlEpsN_K5xVvfTIrzlEoMRXUbHtkoMJOpcsr-rgW-q2IyRYn-q1zi1ZJIWNeIuqCH_3Ifqc7jRVa_UjhKE5JoRSC2PswEq2WLSSlLgFusK13Qey1nJ0k4LdKDUgodhyNWeL1yyNoLvPfmTtLMr3Vk7ZdtoJ8FHeOkoqZEDkr2tFEZ0cR76zxctBYYyuZTUtWDJbutFg7N8w7Szj08Qx5uepvjxhgRTfeW8OSGoR4cL2pfBHLvVG6I8dF-3-8dDIfc9m8xccz9Lsjdz2PU-WXeXn-J3CdYb0Nldsxtl9sY6LicneetdGyHNQaMLQ40mwVAopoLOUBvCyfvftoye1bh7YgcviN4Kn63y3sEW9OROO2j-Q7Y69o5nJPEJmd7ow6CtGxOAiD1Vyz2I9xXUQXCuAra4F5plr7k6rMkK5V8G0KMvJ5DYqnaWLXPpYPdpVTRR6pWExi75fBomwvcdlEQf4Go6umLA0WgT1-nH0DZ7nxB9n0z_jM0gP9AL01E_Y3_zIS3-BN9Z2KdUkAWy4GZ2pqzr_2zlK7hV9Ss2g9Yueggyk92zpwbYwXPNy7Iey3faSTXe7sgU5Y7_Pv4X6luHj_mqeSSk413WfGay4h61rbUhDLyo8ITCVADgfjKPJ5YaKLZvEcnxm-orA43a4Gnw_K6v_Tj9ZzO9P_zzuzgiy3SX0KgqJpb3CkeQHDuTrG96xidGfvIRUIJnvt202uuZJbf2HS5dxDwzt6MrjQVWMi0O0uuyaNu6kIzR5BXkm7lKXo3avtz2RHAj_QBr0Dp8chRyVn\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682745f060a6e4.28543792','','','2025-05-16 14:04:32','2025-05-16 14:04:32','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682745f060a6e4.28543792',0,'cd-form-entry','',0),(43203,0,'2025-05-16 19:00:28','2025-05-16 19:00:28','{\"firstname\":\"Carla\",\"lastname\":\"Rossiter\",\"email\":\"rossitercarla@yahoo.co.uk\",\"contactnumber\":\"07446858779\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vDJy5OdJQGAN7CvL-WMceRW&amp;gclid=Cj0KCQjwxJvBBhDuARIsAGUgNfimiWhxGo3N1aubf2HNscdjUZi2W3ZrUCG4q3ldfnatVirYRxLwPvQaArOUEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5lREGn55Yn39eeXIAoWnkIAjnYGkHSsOll-qrFa0AkQHtk5ovW7QnP8Ky9mBhM0PTLstSJyGRC-wmbuJ36zxIB4QZHTkEDWOH-nndKdjW6O62cvg2AGe9BI2jwKgLjtIwFG1vTJaNP5T7W2sasA0vGRoYAlSCCf-Pg1RvfQWEhAzOhFKaWAjhA3h6qI-rBYIzgC9QKL0kmPj1x48H2R_iT9nhFuIN1fvhV1Bnns6Z96vr25bafWpoSt9-lysQJJueGnKWsA66d_O4aDpJ8Yrsp6j3VGji9VXFhWaBEnNK_iY9YB69BwKON810xBfSlXglr6AIvy-GXlOt8H7fukQimTrYicPFGGFyLOg8AeY1mafeq0tRZ8cyRD97jzBwvMiiI4daOXPMTZob-ptc8G10LCKGRTXbWE48dJFZxQT-NLw4BhkxKVNvlNSh6kWsZExYhYsVuufkw3ZcmNQy1eeMsAOBkYmKjcNqXTVU17TmHlPVY7jsFzvL9d8kqLk0-IwIaWHNCErg9zE670795h9rgBu7YuHCfeH7AtUoEyAK2VXkQwywbs5DRB_Yr86_JOCf5mdfmqICAY8GW8CMgEsunLqJKjJHVjd7clL19HBayp8rYl9ScHJqoD0z2FZ1qBO0_AMOvKG_OTwRI7ncW8i8n6f7Pnv-cfntQKRNV6cuuKinl7j0oD13YVuozMpd0Z9k2XD80dxIoRdVrwpr_DwJRwePNnRNHObLvm5OxCGv2JJGxFmwdlVN2-oLGRPG_5HOIq8qItlywLc9Etflfofyc4z92jcXqz2LM9xikIkShDQHZFw5s4bqvWXOo4RNSRIDOIPCDiVTbJE9ohwrFzdEJFpHGVN7W59VpVXA3Uce1Ghmnx-E-MnJumo4e7yaaeC6meNz-p9y9kjS4PHTJpA0S7vGWRQe6ME9S2JWrYgYva8iVyvYCHtkyHLzryllUVVvI2OgJQArIiJdsk6xVF7m5F_bQ3_kl_b9tsd7j0Bfy6qRg6sopPhC05h4osgqySJi8eKec5Y5jsecMEiqrPEYnu1oOeNu3Cm6Ys0hMlLE4riuvzdso6mn6zTfGMee8wZyIxy8wI5AImuMr2H1RciP9g6lBy4sDU_WG5n2lNCyrFv6aLlMOsp_o7BpyXGRpupDmpvVpEJEWTmMpC6gTLC_-VXGTlxXs0moL1yhM44QGzFNOTfdxaWaT5X72XvHjA0V5n1SKvNNiWx2MY2x-DL4iqV-4tLKdActrwPkK35the1uQG8WvaeC4IxAJNCBaMqFx34USnGn5-kAcA3OHN7dyJOz4EX74C-Bqw3hQbM8o9AWMFTtJfoZ8P1NnxLIs8bKBUQhdh9sjGp_qMpyze8mSFmj2uPME8gTeWzXKSGqJpG_YiaSn1am5eRh4X_UmTxe5frQlj6A_XcTOa5qwDXAXn5zfOmG8klRwjJpvKIWAOrtodR8VOCUBAypPtej2n5gmO1TvfRL60qh7_LXkI049wtHzn6J5JlTHp7GtIgRxxqJu93IP1RLT7cttxLzycRq2JTu5Fazl6BhvUux3WIMSYIG_YzMK4WAXRJLVhMueXFCm25OZZy_rEC67mRj7-1c-_Q5gaMmIdSz-X5wobwgtO92SGfmXWVuCFtIFHhiBwEJu6XR12y1YjNUyCaIDHa18VB1zf-A2mGTnzFxlRunazoiKVHDb9MOJGZWDMJihdVMydI8tMgibNs-WVUoesMklwVY9rnyHdplE_Pj3ZRKKiKD34-EinrX2lO2BYvhZ0HqUL6CEaH3cN8VCWdJqRfdb0xfjfLjjXTGknGc2pq-oQ64i7NF6ZJfUyElps6gN4w-xEPW5vsg_3TNX4hpLd9pahR2BjwCBBmtpPsEjQkrUcqWcaQR47bZY2FGuy9w644haNcWkzYkesTnbOZIvHE-cG7395BgChGMAaRb8l1smIBb0WF77eujrOx60Gqm_jrS2g1EdQkivESMVjM-hdOB_xAAH_plaaMAJqor3k9mHLxQTC25MBP22dv80CUOfMPAYWR5xpVZKUy5aaUoYj4aEhDm25dmI66lCyUXHFhXe7Ebr7_50xc6mzXL3yXy54UcEWcpgqgkj0ajWcJNDuVXIPF7l1U8jQ2iMuZuznvZIq7Mp0NE5fjR2KjmNA6E4Jovlf7E02tSsAGJZnq9mK4HRTAnd\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68278b4cc9dc71.73635491','','','2025-05-16 19:00:28','2025-05-16 19:00:28','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68278b4cc9dc71.73635491',0,'cd-form-entry','',0),(43204,0,'2025-05-16 19:02:40','2025-05-16 19:02:40','{\"email\":\"rossitercarla@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"currentpostcode\":\"L37 4BL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vDJy5OdJQGAN7CvL-WMceRW&amp;gclid=Cj0KCQjwxJvBBhDuARIsAGUgNfimiWhxGo3N1aubf2HNscdjUZi2W3ZrUCG4q3ldfnatVirYRxLwPvQaArOUEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5rdlYMU8GY7n7884fdpFqFCmqm5bD-N_4iKvG1QbIMWZ8mhuxzVkt5IQBt6mC5KoGGrDORpzrB2SHddqwwnkEhJ--gS0ZNhEUTR2QSN0vBRsjHNNQDL2_jM7ANYvwC4c6V5w9v2AKH7D9hFzuf6474o2_w4QZbKzPW61_x4PQQ5u11sitO9ZBE2_Za7yC1YJdFillo11yKC9SN3wmka9x39X25P2608Vf05dFanMyQrWDDJ4RJQ9T_HhF1XIhXJYcmEWL5D5Fid-FOXJf3Pr1loInE278gRVmHvgcvG0TTgrVBgwP-njKG4fzPjU697wOisNNk-oqpJO9VDacOcM-1jTsab08BhBALgSqxZWmT1BAEGBODYpUunm_xYuPw-mn6q8ZwjP1pgQ27Omf5JTOuYP5DUlJKChB2fwNi2O0xWBEdfYCQUn7g-NWbrKxyQjwLanL2Y5Jmb8vZXIwThSJLmAqCeeaIv68oj9dW_fEora8gUDmRAHo2mk5X6Iz5W-TaFwsa6mMvokr0jK0WjOOpgLT1lMOjY8fPKegL46X6NXY-fqv6XlN1TxVmBvN1TLmmYiD5LGvtxbdURv28lkjK0OV_fJ3BFRGv1ixBvkSeGlC81IA0bG9pg1LEAX621YbsspEXqW3phFyiCB00a44_ECdimp0xB20GIVwDVASs9GOfNdbf0ikq2qUXTcme1J2HnLms8qhiXcXNKDw34xxIuOrZx2GGaddo2LULLkyRcOJEpWwyk7_PoeZaGcOimtv97baA47qtPq_ETchoEfAx0xgLO_lzil0RtxwXtlCrc5dZu7Ew6OsPPDjBEsjmLotkTgKkk74XcrB5TII4WPo5m0clQavqVULIXP0pFYPHcNhui50nmpyjTvd9dZEZZ4A92D_l4N9g3muqhBVuzeKg72-PpwbkMZMTtz3rX6KR4DtlA14vgQy5NLQyVyZdRjXyrlOziydHuZL4RLwyD5os6eAhkpvZQxJMh2MgwWy81sY5Tv8KzxjXzD5hs5Q_9Iz2PBUB1KZmaUlulBDHkU7xuGe3a5CaFO_Ns976eeJ-4Xal4YZPKhoe5bsJnwNJMappPDtYS_jnYAE2uOqO_RhCAvIkOy786GMuu9COxjoIT8oXbV_ehdbRzbOGe-anJPFG6y24uWaDtzyp8xVcyCHMYVAkZulyKYJEzfz8Yy9QRKwT4SqTXusNgRIqr6A-7-R5Cw-I8TCjXQTlp81YYcw63wbHRFUa9SlLRFHl869RBqdRjEERzT5UfF_dCK12AQrJx690BqH-Xa9fpIlzxou35IOgmQUje2nMJ3R4RwS5fAtLu5AXi6Pn3pg1zbbmIUCzouK335m27uUb-Z9k2Y5J2dnejBjqj-J8uOdR-YHE3v0fovot0pGLguBd9ZCqRcQUADQzelncgoOSHFUexgQv66ziGB9nZ8lGbrmnEAi425M4shHp722pajy-FPku1dmJvDVGJeHv_RfMh6kKPfASotvafCw86J0TF3WCeBOAQoRErCf50WyBp5e4Nc4xsEcLuy7RRKOkkaF_xSRdV5A0Mm9Os1Sz4DtUXbNPAX-To7rLHx9iDIaFZffdkpLRIhu6KEh2zR8mC1-RI-e8h6JDNysqSdc8m0Dmp5ePmpr3c-7d2ocXxLxJcCivFEsUNaLDiq8PvxMmTP-MkwSzPCtYWTenwI1tu4dkphzUS_AzWDV6vXpiwHOSuiM8aCotPvvhq5vhUaIlTAelPSMAyrlVCZK2unbaBuQFPmLigWqrxfPHO_8jIIqvZNT5d6ZrSq3KcSRbxCv_3Z5CMclGZcvd35kDPPtmUFgLk8scBDoOEWBhjCewfoRIiepUzae2JbRCOP-1iZyKKtzUkngts0bOAzlK6BS7TWhH2dsUSbCUoq0KnDmyn946AXiXrV0DC7k0ru_R3JlfWL5PviLhP_XpB8ewrj2dFJ7c8QWe42pwoO4rZQ_E25qYpbkPQy0Dz_h9pN6whBocdgSMaiW8flkgq64rmB4wpEWt7WqqPkoSTtbxGOj-O-iffu489l0hgsW3nIszGkeYhm6paHI1WxYORDmRyg80IQ5vJQ4IDgHWFSPN669EmOrTZoFpYiHTd8345MXs1lEczoDqs_MCiQ7Fqt4alv1gooUGIrKWMA1g57akPglQWGQdfld-6E_NKaDKrOgs\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"regionlive\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"0\",\"employmentstatus\":\"2\",\"workindustry\":\"12\",\"livingcircumstances\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68278b77242db1-31070722','','','2025-05-16 19:02:40','2025-05-16 19:02:40','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43204',0,'cd-form-entry','',0),(43205,0,'2025-05-17 13:38:23','2025-05-17 13:38:23','{\"firstname\":\"Bavlina\",\"lastname\":\"Shafkalis\",\"email\":\"BavlingDay@yahoo.co.uk\",\"contactnumber\":\"07960719199\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6ufIo8T1r03hPq6DCbieftvr&amp;gclid=CjwKCAjw56DBBhAkEiwAaFsG-pDOwK3-QlKHB1YnUU_ldeKRg2wOZeg84JxXpDnPDT_8iOlDvu2PXhoCejkQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7StFPNfiqSmrViKc-eNcfJYqgAnrzq6YaRwsmgTKGcDFWENxFsLLgWn2Wa8pDJbDA_Dr4Xv5w03sdXtn02yceyctUl-i5F7xE4myxYLrKpcSTpU6EJjZ63CF-HV5B4UkUuursu4vCOCnaPfjWcS9t7gkmGXTbv6eJLXZb1HRh0xYit5qV9sFxO6X0TxIz7eBwE3doZv6XaWUMLC55ThsUzXvSn7ji45O0yv92_b12AJw5vpnclDAuDq25Pnfy4MkRGM_g7sXmSHXwMY7gL7hT4fqr6N1Sr07XYu4k7gfc-l33Ui-_CfF8jtqjTL0nLI9zDQbntoW0gHSzRJGadHw11VmdqBdWX9Y1RT6qUxUUtmYQBcrN32VbkU5VfhK-rqnBIU5IvM5iCpF6dRo5wHqbllNensVmCRiFquNw9dwVBzUlklGUsW_WIKhyKhfRZ5hQWW_SpfDSPIVS7IGOhi0-ANVxLqB8EqT4-yp1eZmHJNXawk2SwN9A91tSjj6F8NHq4trYSWU6q7_AaRrhk-5lzp-Ikvn09CtCyhc-vNcoESk811Ed9ou-W-sIRzmma_m0tdHyzI6158M7gZtA9P4CNcgovZnMkTy1iCuKUVDC6CPnAkJHrWd4t0rOp9DNQVBKoumwTkMm5vutv_chjWVAYbothncdt0sHuqKHyCcc5UQNGn41y8KwNC3xuJegsGGHGZRPRACX1ebP1BenX-IAwAYKY--MaLZ_-9-dYaG8PJwwn-CGqX5u_z5jjtl9TflqMZDSRzgDKKozoFM0J4-Tl6CoWAXAiGaO4YNPpMCwPexKIX2u4sbHJGma128NVNLot_pYBVxPszBaPsrK5H3w4S6SjPLqAsCQeAcsjGpfx5ptnxnrmvPrDcG6P9iTZ7neeIQ4Lbt-At8OBYBvxbLLd1xRI9zLU940l7UOlHJ4tznd5mf-huZRvRsnxRfzubeBn-2XVx38OWuKUWQSxa_NSaFEjv2WQFvbqkv2-sAdof0KkwEaXQ8MjsLooB4Vb7O4dZ1kWsnzJOi-F0_wqwzsGhV3zvvVe3QcTJf-gY0zuWXAKSZeEH8Lvcg8falJqwMO7O51FxwYVMq7h3NnZF4EItSn2PTOd5biJJ2JyyHmQW3cSw0LQMQT0TGljFX9ZXPqkqnKlXyRiB0m98Udpsyd63bDBarbY9r9TKBgdyWVGz9NTWhrHP3x1hlioxmFh7PvdXq8HT-0k1XpiZgeqKO1fabnp3mDlfk7nWe2odrymLxPbhuxajWB0YyCouPRx9HxOttEVcC314SOeXs-tZy6IlJXKMsvoWwTHvlcrCzWVGZy-F7Fw9W2aJI5748ssklwQOBfM5evc_47fObQMS-w7ZXL0fXN4h30_JvIF4cO0C4OHKmQOArHacL1m9ZLIvdh5GzsNrSO8PEr09vAcIslCj0SwRrW9Xo97Csnj8t3OvZWPtn4b2ESvjDMvuqntLcddsAGZdmhrAzglzhzqhjcAxRPMmv_-RMJM2GuhKzNTfErUmYtl4daNyCOV891n5BAr4TDKehwn1qBo9qwqU4JqesegXSAhxHp3jyGMLzlZyyOLreDDv4NJ6HW0EWV4OFFpBOs66sesmzNTEsuXFrd4LTI3VkN_x3XncmcjNB-nqjP9RnfNZ0du8oouspzv450S3LLh2Rocps1JxT1l9pdxqj1y8jPME8o6K3Y8rLxQ9lhmDScZnriUGvLXLoDTkuSDW-h-IOvm8Wp4-tSNNW4urna5tNEhUQPMaXEpz3ZdBCRSFBZdrLu90RKEfB9EDvH-qDirT41P_zhC2_LOgx4oim8nlMtxm8iehe5uKcn3FlaG9c-S4QrDeGsePm8Bv8mstcSwERSWYkZWiwOEXALoKWmGqQQRHe5_wuNaIvZQqg2Hjua2SOIxJhGyt7Tv1oOLk1Ubnj4wf3cSVMYoevlLkNX2fZcEpgkCM3WMi0qfdA-Iquvhep4x51n2OSLJVH5PFj8Jfso7IR17V1Qbh1EU_F8giM-jDoj8eCCGlv-uRi-0WtMPnBgUvBuUEog-EURiTKXV4sEC-c6_H95TbMxh_cpV_shdJqNcD3iNscJBI0MuNRy1w9nbPehL7yURfxYrs4zgFl4P2AeXG_Fo3utSuo2foNSiHY3oE1gYDDtMtA26x3CC7e4RIsyXqk7a_K5g9I1j_Rs2ZAyUymSMikPEBm6uY5K_pj6kimb3zIxzKdE6fhTadkJdaukfGKeJsSx2Y7bW1hCnHIlA87VlZfpbfC2UjhKrJK_ikt_8X2R76dVpGQukKy-z7rzg_3gVEAWKBP1gon3O2DmEWTngziczaePTa0rfSENGLr_IEBcCXqIG4n8u20B9rBn1554-eF1NblzYrHbuBoTQcm_j7bUHIHuCs-WspUflpJFguJxN7AWfTrU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6828912feb4e69-03272012','','','2025-05-17 13:38:23','2025-05-17 13:38:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43205',0,'cd-form-entry','',0),(43206,0,'2025-05-17 15:32:20','2025-05-17 15:32:20','{\"firstname\":\"Catherine\",\"lastname\":\"Lawrence\",\"email\":\"Lawrenc@hotmail.co.uk\",\"contactnumber\":\"01214321081\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMI7ov9nemqjQMVK5VQBh30QBBnEAMYASAAEgI7kvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4EHGAMILcOpHoatRUdFn0MiB3sObYlcz0gnakL-h-1-8nAcs-_tuKvIcOI5o9S2BW8YVDeRmxLop5E_BbVVW0_nWgy655DE684aEFoekktgzZTVF_1-vjRwGPX8RRoOuH1MwIW3vClxeec3dnsZd-UHYeloyKhBd-h6geDP6h4BAZU4Wtx2eSP1yWKz1lD4wb906gDgfIPpYsGHkEfbK4MN8uQW4JL6gJgiEs1IU1jl8fZQ29-nU2b8OXSVw-SfNtfAaJHi4xh8Sc-pi8RC75CETULjLVT7bmGJ3cREZPsqTeQpslDjgctMBUjb7C1JJg-1reSQe3qyA9VRaRjoq5sInZnOfVTl596IZG3bhtNzKBSFNbxaKbAAouMEyFV_g0jI6XSagfYFYcJkB1fLj5Ih8TgEUXUhb-t67pnxgh5Fay2lUPkJeALhReHbCI5dP4HMyiszbOIXpn7Hob6fXANHllcSUwf6HoBGRYWGDH1Kfcjug4mfaOZ1Jo1dZawP0r_IyWUdiI0TkXBImg8f980FuvQZGt_MmCjlXf77IxxNg-PgPbYWFBIol-ox5sR81gQ6ACDxP5gGHlLsnKeEA0IOQfXEi_G3ICs4iVp9bAEjou0z6eMjj1avtEFr-1IoebvHSTb-4swyLfZ7cdOWvccqTZOa2FXGT-OQ1AUXPgyyJudPeXPuP7A2iiAoZR8uGvyDwn-BuoSOsBQ2c7d0HkubezXjritGTQkdH1mxaJjkiKOMT3H5Gh9WPaSsXYz_IkOiMg88VEnj0tQfhmJYZtMH9eK-sGi-qLMXb48E3iRGvxQ4V7Z5hfIkFHV7LdHyPeYxV0NOV9BWTiijhDreGvCcfjvhycGwcIuk5ZVY_qmkQranoy6EYUyUkx2rLlyrw7N7HLBRgqeohv03TZOSBrAMZ2-cCBUTclEq8-_lzHimMuPBHODNDnSjFxDoJ3JMP4YhoCm1BvuqCZwyuE9rJoP0xStZy5KK7k174GmbjDay6LH7jLrLJbq0mPnUPdkJIocGZDy_hqgONjydqlsZGAfvd6p6EnJ37PIvLM4iFlUtpJ7fhshoPVV20xBfLX_eVeVN6xg35Eqs8BCiaoQ-Wu4CTlRydOcKdv1ObgNqMUzz1cLXqEvALVMzCaOif1rGQaVMKVP-vATiyMZixkTrqofaUNU9PcDeGO20GprXT5jPi-S-RYG3XQEiNXlCBz5emm2q0QJCnvE6dldBKp8OJViyrHvzyfMTbAlImD4Kjacjh6gi1GtCyPfZEKF261PwfUSrXPzkYzZJiXcAYselciYPJ5L4zOyXgfo7q6JHMNz_EOusZQIMEqvV6ECM6HG3s792-GWtOhB2lzCX6MgxpE1vETjF0BxqfJnXSB5dPmj76F8vmjEor5dwlvytSOpak3GFuN8pDTup4fPPBv3FIw5TgJaAylw0qZNJ_faGFjz1IYgGp2oqN9XdDqg0zhA_djaaQoVr2M0aewZS0mLqZU3DhpPz-SH_UUCo374MhUOkqKdE5VobUvCpNcVAqLUUxFkem_pKq9zVGFba7508yabex1DIWEH4EK7z5MU67glj88T__uzwI7JQFEMv7gJfLpxCe52BR7S_qDm63qSCwb4e2RpXN-WeYn4nvDDyYrn6vNqbdADriqLFjC8wisbW183Tqr0dct1ABZxr23HC5ScEm8sIs6bXuY_xhC75MD-cOnNKCFJkLrptOmd7aSyAK4ORTDFBLXXAzRSJvwrQfs0zhebhF0GY5vm3CXdgnGTbCtXRPcUBY7zfxBcj-rUwFTY_zza_jBeeixeV_ZzO5By5irX7cEGgE61fWNjiFq7Y_QvoUvyUOYRgbMlpgxp7g3G0_XWNdfrmWDU3MbxKr4bRGSRIRYfRaymY1xGU2S9u35A-1eouaOv3Gcskkvkt4Uosi84z_Rn4qDnZbSpllVtKbrtATRUZXuBRt9rKnwFTqws0TyY7EGq3rzsHvTOl-V1nl9GtcN_wQ9Hdlo5x1gMJq4KY0kqSKFUKsIC5LAAWUd1TokPebBDQZe9dQn4fxbQdD9wuCrFHNXhQyRXpeuQsjLVrSsNRmBbKbfJhF4Iyrz5N0E\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6828ac04dea940.78536785','','','2025-05-17 15:32:20','2025-05-17 15:32:20','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6828ac04dea940.78536785',0,'cd-form-entry','',0),(43207,0,'2025-05-17 15:41:22','2025-05-17 15:41:22','{\"firstname\":\"Anum\",\"lastname\":\"Saeed\",\"email\":\"anumqureshi609@gmail.com\",\"contactnumber\":\"07487369523\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw56DBBhAkEiwAaFsG-vRuZcBjVcb3BZWyRp_QJrWrd3EQYPIjP6MffFtU6dVJzE5WxgkedxoCpr0QAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7sa4gnQHa6PKK_xqwGvhbHxT1O-eD3A0Kq5f7BocE8Y8VB_XqBPLZPkfn3SgweARc1Ox_EaYigoH5gfuzFsEHOymqFFzNcyJAgTpq3KHmFcdDm5P8tpz0zKgQfuEnHDGpyZ4By8DlZWgosleOVaAfu9CD3k-pjkijCcKGrVRAbroFBifPPASe_xyJI9vMXjQF0gMWVE54_ccEO-iDBBH8356J3wOkVND7PpTPvY9xDWn6fKZ1QKo9VhSg3mFyMWAo3ZtF2q-iarW_NYpfKyeAwa2MG665kNXi1j44YMUBB-RwcbVYDRunoWKqggc7DtjzRmle9mo8iP1aXqVE5XVO5aYgKJUm6fO4YAjCDFbmeIBNOJh_99l9t80efOQZMGUXI4ZQfKlMLLmfoBVTmrYgAoH54ezPGpJUSP4es0JuNlSjHmF8yBrphcR6M6sxHVzF0_HeyOgW4DSUWV5Yj9PzQ1_s_gC7vOAA9QSl76zL66mOlS8qfeTAIpWl3cj0BfECN-oGG_zd-J51Kn5LBzgkiBwEVXgnp6cMaQvA0Wig_KZf4yzPhXWzk4xhjnrcIFMfrK6ICXt8LSGdT8ZT5f-QrTRVh_ZpCtGmvVqjokkzDXoPSh-Yzmjw4XSQkRoVhbvFWx62KvzqITtEwMwc_IH6L2dsoFGsPIf0aEhbOtgFh_AsjhxkqnSy-D2oqipF3ARVx4nd1z-sT-DingzhoENz-mrpMJ-v2QG60li2VvYKQuP0bzsRejMqSwpY33T2436sYgVM5Ci_XYqZLv60iVIBupYSAcBdSBO53Z6P8xtNY7z6d0oz_0UoeR788UVPqbBcyUGyFJ9mhCNWYLFdLHN9D68eGvuGBQXYt_phOIH-Gd_tKVzhA475FOmd7Li6DKA-hXkyDRD_MdBc2G9Uyoprsf-GuGDNQtljhSbmXl70NNpHYarhD7Z0p14s7sX2iQvPowVBqI6KsDYwtA_pQq8VIZ6Gvx_yS463Pfooo3fZzETkEErHJRD9V5JS52pLQ3qy_dKbKON1l9sk_gdwC_yTIwXeivtrBckLX_Daqbyq3_dX-nKBaJEKY1XqCBnfwjqxBbKF2s9wipMeHhPUdNZ0hRL3aCUJ5W2XnHr3YZZXUtDWR4zCCqmB8CFWq_vxl404FU2ksyaISeiEwHwCCdPodvpdehjW60qtfPH0B-K6vQW-Gb3fuPLvPZfBaO2D04VWglsSaTIfrS68UZF49mWVA4M0WGdWSiLINe1GOtX5tmvAFa2ZkHDb-QtKcNKviDZYYCxy-3uEjUON064fLTwj6cPFK2cXYtWGt0jJLD2AKXGDxR321IDmgwzhpEzZOFpzEospYU6To9iRbHRzeDzn2D0PcRzxZoO7TVHGDnsM8JRSgszC5URSVZN09CWsOBHSznfVoz7eiITJ-1qvMrwFzfx9OVftkmGtJqafiT3F8X86g1sCDRR3OBhAa34coRjeWV-SwBAxPCpFj0SX04H6fpgNE-1NZIeZ4kVKssUZyZycY6apwYPd2wlp07FzuN1W45o_cTLNlfSovNp9tXOee5iO87qXK_ApPpjHeYSO6hFxapIpTx8JOb0NbJoCsRUh_kQyoVm-kPCOVAeBbf7mq_4y_HT3T80iUAI9DbSSBYrz2KmHCkCmze6fef8SGNN2MeBQ78StHgGPsv-ZQalBwwyOWhgAovKrea7RBfmIY7JRnyZYWvOeG93sMSnVN5lXb7DM3JjzpchdSIN5L5ulIuG24RFUczal9_6rjN7_TzTQPfn-zVP5oOO3GYJKlg3x8q2VFKhsMGE9ldBZQf_8jUWQNj7LeuFp4qfUXtD79TORzTMz_xVmSpDMviexW1VhImSpg50jb7RTWBANmiXFmSoRNODJ28ZqA-XxsFfVJjWnlfWLMfpe2DY3ONFobqdiGQ0BsD_pTy7k0oXR4xJ-lecKQt5jB2Wc46cMc8kXl_kJtvuHfkrhJoi5NFpYFaTT91Qg1rHc3t4t0Bp5BCn4IEonz8ZhlRieBLV2TeQ67m_qMri-q6XBqDoZv0q1QMyG3DSdPCS7CPJdTPLZMVlyLgKgy3cHtWYZeeJJc1FWmQN8smA2esQ6FkuYJdgam90MMHolZ1YQ-lnhW3DEo5z2dKy1L9MV9FRAztc0ZpA6sj0AeWp0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6828ae222f9e96.03352491','','','2025-05-17 15:41:22','2025-05-17 15:41:22','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6828ae222f9e96.03352491',0,'cd-form-entry','',0),(43208,0,'2025-05-17 23:09:19','2025-05-17 23:09:19','{\"firstname\":\"Carys\",\"lastname\":\"Turner\",\"email\":\"carys_anne-ox@hotmail.co.uk\",\"contactnumber\":\"07769123456\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw56DBBhAkEiwAaFsG-vsf0AM1vmbZcm2jXi6d3AoByY_OMSRB9nHwPvLBymaP_BoPJT3-JhoCV18QAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6n5Ptl448RXujZ-lS69Pmtx69waDzGbO2OYeApLI7HaEEX7T6X094L-2pR2NwfW2s_JrH4DcHwM0mDddOZqVbftep8LjGiGMxGB73XlrzMBfZUxQ_ccbmBaTRfgw7gYlkDc3mNvkwHeU_zsJxLL1-FIxB1H6kfPw4jp78eyovu7OfbKV2Tze3PQRZ6prsR1rYvjvDb7dMPec9w229SJdU6w-pJlih2RBm2EF9H7btvVQaKpMTDyLvq6MV7h1Vcj5Ssg3KUgWvtSf9if3t1QEhYPifaD80n4OF7bUv99vxDvAnOFaP1jWiX6LvEnJcnJuAYowxyki8XYRn78oGN7vpYJZiJu6j9_R4YGEuL5DLTRN42tiS9dTs42dNotamINMbYPhRVsjs3AQnqyD8LEHY-Bn1Czoi2X6pL_zwG5WIHtXbCF21KXu0BRaME-Mzyfo3XsVpq0efD5LBg6GZQNQo6StP2RTrVPyWsdPxKhAiSuEw_H7lLSvfRMp1usDWg9UOlqVVBC-0Td7jk6CllE2mPFya0kWivxdIOdT2nNFbzSI27A67-7cuJyK19AGDWMvkgokqlQBRb53HrQ2rdzbbLp1DogOhQOatz7DUrE--TJ1FNv9YPfg--dlwZsgpR2DqqIyn7rukbhPkP4oenNgKW8XaRHM7kkYG99AMhzLXo4I3sx65nqXGY_bVvr7vcFHsgr8EC1ZzO70q4rk5NdHDiHZKiM-0etKKgzfTMsGGh8qIuP8SlVEYGhf0NoLclI73vZ-Tm4CLezysbakrkym_oLV9aIbeZhJNl1m0WUkJVN6C-lFzuU2vDhWADtGIRhXudJd355K_YPGLSUr27GIvzsnJyqEELAdStQRd-F8dV-WyfYlGT-cioU9kHKGR70Mkspdj5YOtXF3gp2IqjdNMmNTL0DwM4AI_2xSmyKFxEeoLxfKlxqv2qzd1_TpldGe5Ms7MD5dqz7-H3LAC7jm6OjOQS6zaP3_OVtTE8UVJKHlqslMlGF4O6jxI3qg_pVRmkKrxxyf5NrgrwnwCaYMS9mi1nkO_yuMwtpYC-XoW_Itf0xymRXigSKvy-EuCB1adCHMdZcpzM23bZElfoWDtKADytax34Bqd83EZv6ddxUCmf4DHPv3MMQS9va1GHoqaN4R-yFyIl5BkFew3D4e-Uh3M4FtxjAWwUeB_StxSsCvrIQGypkvjmt-lJksX_20nR8kmjNRNTdIn7DaeQYPy2-e8i1vQ1ipTaqFa9qw0CwmKeHoENrQxsr1bPcVJ-yG7y-JCsTZB1dd-OZaydIM1tifxZjarNipbvl8DNZMODhtP7p0BUOgWdxmlNrVnIs5ajcHCnqVqgEWp-dpAcLke7NHrdkfBIvCB8IY8g5MhsTeZ8HyyZqeMHzX4eGUA6cgQEmNVLHwl6fxVGtRXBJKBCO1FqA7cIQg25_G20boP1QSQXoqtmz1iCkouZzWipf0gjvKSflMPZP9cyEcYSFpFMmkbG51XYTj8pOAWgHnEGG8H0wqHKx7-NAxpoSIMN3Foo-o4u5b9YpKKAm7DlrHqf6SIFdPJyWP8wXoMDZ2CWWMCBYUfj5iVdEpXdlNZpyOSi836tAGAtuk8LRAZClA8dJBcMS8-nKiM67HWA6RYvZtWTcs0W9K3WcmeVHOyW9CnX2Gthnv8J7GTb7Bp3tM2lrBZGSM0a8wjvI2m_kdq1vTQCJQILZcU6VyuQxbAG6kFqLwR5Yy0uD1cghPgNF0EIJ7lq_Akjuf3YbGGDmg4OAi3cn1qkkcMJsfWslTNz0y7vORghTxgLLEZoEnyzOIN1EM5bLf9mrx0QyetU_gpSkvS-JfH5W4A59xvvCuncy4F1R6gpex2Q3KifbA7bD2ZjwDjDwLcS5hxb_5U6hI5rLHAzU8bUo9HsAxUhw-yWtqoesB__pdqCg72MRlOD9Ie19z30s3iagcLg46glN3JpHkAEw_Zd4juzoogkHDwJJ1NtVoOh8cm4OW26YLaOuzFhVv0PZOzhbFfBmMrUp9gGS3Gsv0H6Nsqr6F0rAg_DiF12rsHlGzI2TnhxvF0j5Rvy7XOoJh_SP-1DTMJ-7POoK9Nr_8Jq19I3r560KrXfLeRR5Pf6qVXFwzO4i9yCZiimmPyC2RrlRbUuPPrkKtC6E9XeLT83n9qPrrPQwGYGNd4nZ_b1EkNpUSGnzcYVoKw4MaDjYw\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6829171f80a811.42270227','','','2025-05-17 23:09:19','2025-05-17 23:09:19','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6829171f80a811.42270227',0,'cd-form-entry','',0),(43209,0,'2025-05-18 08:50:21','2025-05-18 08:50:21','{\"firstname\":\"Natty\",\"lastname\":\"HIGHAM\",\"email\":\"nattihigham@hotmail.com\",\"contactnumber\":\"07734931849\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6nz8kOnlemz-mYfKMHVBRYsRUhFsQ01-FN8Z2yxNfX8OsDBrMsnTEIdvP28Fmw8xJi8NMubcEYQ4PhSV_G_IE8iexCk-XQ0DtHdeShyaGwmEsexABRnYcmqX3tE39DkmCypKwBIQRF7HU2tgEPcfdseLXov0ECT0eoEW_nzqHcKsH_vjXnIduVhaysDfG58QuZAPMcxgItk6dcdc473MyDYXs23mYgn9Aj9OkCcOAF0rtczJV9i4oo3WHGMHxiQw3o0p0QJC7wRFLWqRaE6s30y6wUFqR2rIMdFKM03hQokCx6Uh0dAfzifh6F43ysYPxESUDi0Y3JRUnAByzOGh8Oc68Fog9PqE2Nhwc0-csxP86evLPD3nSQgqLVA9l_pYWZX1cN-fnnIrtZ6KUjPUwCMpwUF7JS29RRhhi81G7SJAxwXW3pe_4oqq2xbQV__CFpFva4D5Ka1Ge9PfiXj3Fcc62wzkL32Oia1r7MzDobJHhxGpUqjJtcqvCDkUKLtBtQtfBM2s1pO4fqSvh-QTda75ZlJMHQWe_dH_y-Ke2k8j5qf3VU805dNtDYgbX2N3nT76nV6PmG7VqFneW6A90GdbZckG1zhR4aYpAqrRL88P4JBLdG75bVQqSbRjz2nHUj7eb2sbmxDBtDl4HhHIc_xv_nU5PCWC0569JN3SEmNL3cChAMnObYPOhn1mrk_umQ2YPaMnd72ZhErV-VlG7ayo7dl47TRIRJNKQiHEnyzi2SvTwSHZAmgc9fLsY1XWL0vhV16kA-RTRevVZhubD-tNa4CmMWFhnqQdZKERlEQhL227tFgLBtgGQ5hFyHHqguXvZ-BiMaQ1tgIzqBnytqINVMa-xLsTBfutReAE1KEpsRIYNYHZjKpTpX3B3VajIvEeR7uv46oe0yI70A76uVPi9h3uNT47og9PULcoryGSW0ayJ9X5-edXl23M7CJNxySGy1gQpf5HZjalm3tMeEnz2wFh2Sd79GpJKwqvxuTszQXvAtyA-gWh_imw5mTJxcnSKyic5dZBG9M5_yB2zvek0OAz1jdFPvV76R_GdZUocH2tnApgSMhqXqKwsykTWR_KDeWsv64jxSp_JDc57-p0fRhrFyCABUiRUbx4kAFmUTs0xGO9oDE160sXph-GuHdePXdvd6mK-W_TL-W9zX7Y89fnKKIKwMCGm517ap8NtTvPeWynbapWk4JoXC-BD9r1UgRNEHaFNsrsvAON63W7uZDoUgY6yIQsPnRQjhtAZfsWSuJZyCWRRmiIxgv4NaPEAfTz85FXKxcjNSvzLMzNv5V4KG3WNxMMcDWVH4FxBOkz-cAgOQjfPsUSN-5XG7JCEry_1rns3kkXwwiyrMQ5AW2MqCAKFlAd5v9NoSlFM6ZOwl1W_E50AfI_mp2_eEX8DbMAuR6VdMlBOOQAbPH3GmE5NJfh21g3DY51yc7Ddp1jRpFP2WFswhkx089nKky5_W4KbFdoT4TR9qRLXnP5regfXh3GeL8encynE6eLXcZtBOfQsM5nj-0y55bEEQBIaM8CPPhJs__Y0tRjoh7ZFiTYo4Xt7T77tGlP3xDiESYWcClLk3EoIPiC8wdM05Vufv9KQrMLmz-wpq7hiEfruSZFftRtaqRIi06YuIf1DdFdMOjP5v7maIFBYHtgG9zm42k-QSY01bIZ-oKUfsxZlub2OlgTSjmcoWqS-YJN4QIu82ioAysOTQlsmTXATMbDuYo0EDw_0V4Lk5j4ibFCGdqkeerR_I1gpVeuaSWS0L6CW898iXqfXXn-Yy3AGyD6OKJPWnP_CnrKMvKhe0H3qPqyN2tVCb5xbrSoOz7USsGfiT8lKZyHh6bhmPUHOv0FhJFIUC6Du68IPRopoSXd_GbbKEAGBv1vgFmq39wmIxRWXTMSxJ8L0AUZ47x43TFbLOfV5QDioP6QQm14iessTT4N7_1pEcoSO8Gab4r8cBFXUhAhp_0_wyWRZ1F-gndeTy3ilvQyMac4MFC3FiHGJ-BWDUXW6_wxpOLVxBFwKU8uw1PoheJb5Q50QxJDLnL6cOmLumjWDHsCPfRULcqt4b_PScBal6y2v9O0FNL5i5IsafHTcu3LiJa_Ha-Zjv2gB4UwuOdS0XXxz0k1kwwiF_qgX8Oac38xGdJXtM6FLKfsiuSSr9SGD4tQ1t1IWy0A9XHjtswdv3pa3U_Wd5preRp016LHDHx0vvc7NnfVwUD8ETe35btIcLVqwHxSlzhVTyhMGnpx4kg9oPBN68MlbqW1Tx8f6pm6jw19b858mL9NlXW1t9Qx6wrC4TSR43jtFo0ILxi9Zj_OsD__-VgEn_-yfqz9n6FVM5H4TsXSQKCGY9gGUWII2papV0vwmddzOVHVc4WAdGxhgwTGH6fMIQhO9MajMXd2joo1qgHCHNe_c\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68299f4d7a8888.59464331','','','2025-05-18 08:50:21','2025-05-18 08:50:21','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68299f4d7a8888.59464331',0,'cd-form-entry','',0),(43210,0,'2025-05-18 08:56:41','2025-05-18 08:56:41','{\"email\":\"nattihigham@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"1\",\"currentpostcode\":\"SY14 8AE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6oyZLd5yRPKmkRyrjxsWokEB5euKW1ZTZW_t41GQB-dsHiHqhYz0saTPSQ4vd5jgVOIhr5Carlv8YJbAtrIjQGIfIPLhOf6dfOoJfE1Y_bEOSaT1PTaqfweTnoP4Qt72jTWRhZ_2Idl9WmJUbz5qqKMC88TaGG3HEt4uuXrvPmp-Wt-XJ-I99EDj5w_6qjphv1gY4yjPkAAWphYq4oFoB96VLOUaceovoS-s32W28LTuF7TxzEBFD7DJgE9jetsM1kvGTDsuoDfcccOEgV6JwSmq2Er_tJAZAC78gCEQNfW1vbkeR8a8-LZrxsEPXm7ko2GBAatqqn4mep2NE2ImQuL_z00H1I9eVBGE7paiMkOUWPPcqprgTg-U0U1Wz62KBG9Z9Xp531r_DF5VGuzolHM5J_GhjuV0BpIDC3IK3zZfzJJGi4TWHS4V7lPlzptBKb7GLYVkBvNjYa1YYUSV9e13onBjWmPeTqtzuPeKzyokei5939_Srwxvo3SwIQp6tnJ0rC-qghf8xjpdUX4-VirE5dtnG1zXyUKcKED0D8Up0d13S9QOWstoz3fSIy-mWg4Xog7IVNatmnOPRfs11pn_U6Ao4WpmxyLyg3N9-gMBmV55VnNzEkPsgQWHedbMqKft-itCJYzUn4w92tS8wUZzUftKWD6AKbtdD7BoLGc2NztVrImHtH_HVjcii8a1_6-ilitLlp0eHhaSVYmsZCNt7-cvI5COIstEx1eIhkaIuRMy0i6rkZNzj-1PilMSjCYBlHTc7lbwrynf1CeFoXuEKA8rYNbpgoJx0DpdO60Z6wVylrr3GpaL72hTI0Y16gu3_1LLiZ7QT6rNCVvCyR33Y9iCQ4f4dqLUJP1URtoT_pdtX4ovl3Ug8KdVBb-2jhg-5jbRt2Qv43916CBv_PVy47Kq5EmvYidZh3ADuo6ynbnI9rqxJ0FdY3UVblLyBnkX8suiWfFurNER1Tt-JTkzdev-4fmNfxtjMPS5H_CTpLGL_PyRPZjv736HxDksm_-X83XzqciRikjAHKzkF3_M188U1oca1eUnwiQskiXra-oR4Xg_SbyqCMNr1i_Snamwb0vjT8hDBZZhi5AC-hZm8g42Ri_a94fSkhZnhJdCsp1tuuCvq7NeJ_5bVgi908rqFU0TTQZIOpP0hGyssUgymQSsPZhyzdtR62DW9kOOe0N50SL6AZqlpPWd8zjZvz9iJQsnQfBOmzigUNZWX8N6QegRKf5yHPPF31gYfsJxFFBgaHmOoOaZ-Ro8w3IH-oTFLPiElN4ysvkvSmpc83NVWcLZg27GUy3-kP7VqIL7H4LwS4SbVcmsyLsh-vxNL7Ne8OzwCV-KCEzhcd_pvYHUQVjNRLeAiWdqfHW-WYvHBfo_h3-WupWDkIMRUSnkzUV1YwkJYZgjehhUTk8h-TJLY6qxzShmCtnjyWcgEdTZ_yorDWeJvGt0tlVkntBFzy567zkc6pLKxFr0FgSbZSNkWvyRPTbhG_1WTRASKkFweKS2gljdMzcVIqqnWg3fDHD-fcjykmYNAYfJ4si4smYEdHmzc0FndLaVFuRTGbdXzeFZ157hanqslLhYZf3s6gmWuiMdzVqIl19PDFFbzLLR9pd9LB9nYuo366U89oaovQj75DOkQquFklHf1TZ_gilDzbx1qTX8Zgi2s2uyUBFfxzIF0nrwsleEeWoexfQmeG6ivJJVu4LAZ0ss68HeVhrCZJnFd6dxj6j-um73OUPY8KyQjGNcVUeffdEMFveArzpqdx4PNDMnksxiIwtOMC5xyj1Fgzg4yH0LSi0u27HFI0qfNqPCjMtK64JUyszpGv9mLRZUfJfe6pywwxFFVRMBRlDvYQjXl5vtcnyqUM7om9NDJ302Aeuct8DYSa-N0og2ighcsIPAsbvdkoXtbj8OiyEhuDtvsqiaR7-wCp73vHqHQo0K-gA4oXDXSqDzPp-mkEjRan2-AndBJikXxR3PkkvSqjLxw7xoyY2N7kkfBdyWEDtjyGHNdhjEA-x05rSs076JsZEySJRV_jWqY9RyMlxF_x3CE44dbiuCynSw4lJIgg__EYBU_teDpvrtq52iB7n2mcnl2abwdYMaBuMZlBcW1jR8VVL2CPfAZgh22ONfn-DOb1jdr4MupRxlDklEIR1NfwGCtJeHPdutauaRkpAshM2kI1ka60hD2_dVwOuhAZNlEvecyd67Iv6uCkb_d4O29w6T4vM_WQOcUjyn8_bKMcvz9Mjyc6SxIWlkxbLSYdL4XbLGegXv-lj584-QZbHEYfrO8HFr_zGZ1Gu-EV1Rrq4x7LU00Qh8mmqofN-dc-Csa7BX-eEKk-NRD4qNtNhSLqtPss-cHSfExyMB1zh9akCGVjpFXhL2JmCpbUsHNjtVm0eIcthInlqJo88OQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6829a0abeb3660-30574827','','','2025-05-18 08:56:41','2025-05-18 08:56:41','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43210',0,'cd-form-entry','',0),(43211,0,'2025-05-18 12:59:32','2025-05-18 12:59:32','{\"firstname\":\"Mohammadreza\",\"lastname\":\"Ghafari\",\"email\":\"mrtnz.gh291@gmail.com\",\"contactnumber\":\"07787934699\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6ueQEeGBo6Q3PvrDP-XnxvsI&amp;gclid=Cj0KCQjwiqbBBhCAARIsAJSfZkZVaVAnqXH6w0yS8XAV1KBMsUGfqDC0jMYmJWvNfdyOFwRD1Y3wZ1waAg-0EALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6xgDdbdUy6Faz1MmuWMxfJYR28nKc0qAuMBTtfk6e9lmuejt3ZvaPFVLBgFB3JHQYdy2DlsuWjhvFnPVcu9vhySMxuVOoTe-_ckV-RIU1gKc96_utT24cSPIEJg-LEPez0FmUpR4vwB_2qrMVoMfPtxtnBBQT0zZ56uz9ThC0iAd4WmwrAFrbjKwyRMdegnkRTadXNxOnm2ek0AfmgEz0PTjIRvu7Bl_7ABrf5xGLzwrMA_AjqbVYDaSOQtNlvS2bBxYWyUz_oulu_nCraUTCnfKZwSG29a2X1nlHtsYc8CSexJxy-_TodTs-FUkDULU9hj0VvdF1Rv35_kRYW56F69x5xxQCIJP3g_NWQwj2QwdC-C1ReQ5ElrNWbchzNskmPUXc58i2God-6pyywQdfA36ILHaw6fVrZoAZwV77v148OHH6Z6e9PFk-nsmR48kIVVNG6w-K_10wCOmWgqd0rK8UsLUo7tesB1baf9wuJyTeNqdnGUaNhKyTkIXrIT5E316UWsD3UA6SyTEZpydDZvfBiBUsSMLNwtHQzuNbqhaEhWtZ1Lfnb-i-MK9sbRd2n4KusB1VgqqjddhosLeC6vfoBXJ3cUsDVmIKLsNNqljqbcuXgM5_wigZLMFjI_0ZCThCOFhW9OBmv1Q15ERmYAfZ6Clu2PRiHrBEJXhxxnIig93yScQ8HIZrZqhie8gzK9EyzChInspM1vdPH5ZQBDtAbL7ewvhi0ljDEdD-2dJl4pZmSMVl5AG4Z5z-1DPKVbwo2ZJNJP9-L8iT0Q3qmF_Ky2T1r3_lvDfuX4d3xp_ic91EiSnk07iaMAPmnmLs0NTPuU8ydcyQGmugrtKxYQO5whHHX9EGKrBcit-3Houn0x1qO2oVc101dVeFQUxPpTpbUuE5-fnV9C005w8TBXIDnbNkQoHgUFCj1ckB5b0-yWB4cDvPLsG_oXT2EIxNMO93etLIuMhTy1B16c24ovqJ9GqO4G-1gSgSkCvfvrOE6u-ICYpyLx4gj6Vki5oZo-qxEL-fhIp5oxBiClm9BDikCIh_F3sn97kzll1wpRxp_5p2JwSHbL4uOaKW3cFdKFMC0XKkAjo9rCEmk_6v2ye4XGjoDbl3Q_t9gIbbwKrVdyN7wLPPA0NPT6j6nws_KewHKQZe65p1Dyezdt7MsncSfDdMipJYwMbNClc4UOKrt3OPOhDM6LMsc1kTZkGYh2GhPccYteYIBkbYEz-c3U-VPej0DV80zNyFtiJ6Erb_kXWsl7T9_hwVhKPkQsiK3vTo0aVNm6TUBs0-Og1UZf_BW2BO5nwMex9UeWz58Ru-nvoax5n9784WLo-7pY3QTCFh-iTOKp1WzAHFmgJ6qmNkbW5Hos7vsWAecrCqti8EJPC9yC-lLBiZqHzkrnBthHZoWOdcVJaoOeoxUETGASBEdYzsqktsAJqWyrh53gXUWTYIehF6IcxXBkp3WwqUCu8bkPxt7ZrN-m1emTlzfjdc4pVx9qJfEbT1zkU22N5jbSsu9WWpwUcKtKjRoElnoZh5DMGD_YZzghPua1xKAL-kiF8r3BtTlruOmdTF3b_YDbnE6QOqxJ1OAx8tEJTppynzS97T41TJ7o_VYbfmOvYDnjd_vkaZCNZdzktIuf9DGLVsLpWhOYAowttkD1z6BOEPwW0ctWHAYjQcsI31tegtLWDzugjR9uHVRx49sL6QsaUBBAGurNhdJKwKEKsiJ6WB9_GboAvBtHjZp9zsQJZgVLLaxRBZw_n2BVQQI81aiT5udt27krZfRTyGFlviKiFgX_tY0TdPGndTiwh7K123YYRt6fzi-pRR0vijUs3KnDjhF9xpzuM8sfEJ0KdKLdlALtxaE3pUQCnGf3IGo2VRM66xXk7rtO-DiUPc_Afh9Ha1BahwOw3DQtbKMLUuzyeEmRjlCqwXS61yuMlOiR2MasZC9mqGFPlci74p3GCNsxFyBgs7_dNoRcMtHJ57xnMUh-HTS_lr2LIEsKqhj9YUES_S3xf1AYLD4BgXeBEOoG1w9ac8E01Wr2tZA3HnhjDa6vFvDb6_HZ1Jaok3ZtKPqY26ia_48kyuDMOIjDH1TwNpk6x-daS2ZMC02c2xe82HHLAEjRETRJVYhdRitVz3dgnJcHnJI54F7O2z_iHbCHKMKRjFgBZjv1YB5SkVPwQJP\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6829d9b4a3a1e4.63449349','','','2025-05-18 12:59:32','2025-05-18 12:59:32','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6829d9b4a3a1e4.63449349',0,'cd-form-entry','',0),(43212,0,'2025-05-18 13:02:01','2025-05-18 13:02:01','{\"email\":\"mrtnz.gh291@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"N12 9TP\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6ueQEeGBo6Q3PvrDP-XnxvsI&amp;gclid=Cj0KCQjwiqbBBhCAARIsAJSfZkZVaVAnqXH6w0yS8XAV1KBMsUGfqDC0jMYmJWvNfdyOFwRD1Y3wZ1waAg-0EALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7XbxJuV44rWr48_9vIQN5jJBfXhunqo5K3hJvtWEHKOxkYHVan5uJWWbZVmrWWSPvL5RlS45-fitt0Rb3S6RFv7PIP19g4170l_ph7YyFrUY6pS5c1HFF2f4EFSyTnmjFH1r2XlCNK6YtHBoNARFj7cy_dspw2QvbUOoNjos6BMa5c47XPvsJGLGI7DrlDp4DcXaCvtdMpCyCg-fbvCLW-rGKp-RKjN7ItTzfGdt836NuUBxWDuc2M-YPvSsVpf-vSP2wb_c2d1qzYAGwwJJb-gIzZZFBU9W-jnyUquw-vzQZ_j1E4E_9T1KAvYTc1kDMQr8dwkrRpC1YqC5eBrYwHEBuR95OwD6E1XBb8CL_V_zRZ3iey0dUQlDABNrOre84MiRkDnPrsWWP7rKadcatWNT8dqFhVjx0BbMaPQj6zrOlsO4jSu9ktJ90SmwXRB8gSpBdJ_SUVw-nb5GFC6cpEK6uP5v7qDVgHDFLntTvO6ICa5KwYwfwMe3s_9QMRe3fRwo8-VAAAi3NhUYRBa5KlApjQj7Z_LsGiF-tuNI46wDhXJ79DuwqksWzJ0DismQKtnWnf6l4udDS6V88IS3Wp2hqH7fi8ld-rz0DeDFc1_1G3GAXvnDWtprjCz5zP9-JZUQOzKxulOkstfuUHvx-ZA5sSRImLIISsUXdQ9BgmfWdcUdDXBVTgrWpFy_w44ia4RM1PZKvTGe_wKhCR_z1PpKR9DqoVA2kZQWuqGIM55Ih6SLWSqAniW_37CqA8QyvnTsOdAymqqYlXtEPvSQH-8nPFLHFg7v0ojHYS-mKyujTftH4Aeuz26zqVQ5qnWdxGj0MthmFTSAxAlqI429NZJDiVbzCBw-OTXW6WoS6c0eskeVjSJ1T45UncmrP2BNgeKi_wx92rp5Ghzv9txHPmXA1tlibDpux4R0hrr1MIQu371BePD4UCvaqAG3YjBXyKb3LOGaICcDZB6hje27lFlpWhcT2QAO26OZxeAAciAD5VbkqVczmY5t5QiZYh1SjCsO7umQSw0_Xh1xwp_1key_AV8FucQFEtQ95XpStGOYl7YzmyEtPsFtN9r0VveQxxkX3xq7dsV5LjJTljbhm8tt2vdMA2utwQeOxtMrRuMT_PT9EZKWdnzGwJwKh5zpfVcpSjwbNHvPDuelVanc0o_Xk5-nkbKn5hUWftnaMdhf46k4ix7fHdp7rlsUZVrmdgmR2SK-iPogYi5lvUJzbiaEUK_RXQjvi3XAV9YMRutvJFGkXAt_A7T3TAWZGif6oiho6BjhUoF_5hPQGZNeBxW3wjdE4hTrilAB85WSSyULg1iGe_YO3zX39PHYw-0W4J68qxOeGosVdjexhxbsdbcKlkKZuiIKHW7S3qVhDOI4574QrEJR-NSDHLsLqeWzV7OvfpebjL_VwO28LK7snvZ_f8GTMMROAkRW_3tKta1OwA8Dl1Y0W5w7MsmIjdxO8Ixh9gfxc3kBchE2jzx-xuubmMkcu_9QOC6opaCxFQdOzdgopmBxUKUYLfPgADqSGrR2oXqxxMctahaAoh-7ZkA9G4UlN5FRDHJXLRKM0RWefeNlzzqstG4KGWkMvoyRH1lKS9qLgxLBf_N7Pp_s5e4HeRQx_X5Cvj_Kwl0wC1eRDt3yEas_l40pYFD0Gvc6o8op8LyGTB2SyIaAeyhZ0i9__5iW3cygB33zl1n4G86_i-AAlXi0ZT1Bs_b-yPGrcj4Skoj4HngPpvh6rJCCxBVnzZuQnD15uMU8nHycUTxiGL6F6HbVdnVY4bEL5Zjz6JE7S9QPevcWxjt7UBzz_74DpVVLqiFBmVaxOfustsTXm__g7h7DNQb0XX6_ijLoDl0tnSsbPWqAOrBF5_ImuGGuktw1eE1LSPBk0uxLyN-rLWI1H_any4Lv1gAEBOtTtlWWCK6mQ1cE9yGW0BxLxuoMEKeuSOXG3Z5z71VMUJwM1Y_lMYShj3sf5Fvkhn2etn2tB6a-poh-dfNHl7VhRvAWvVmsEz2zKzfCeDCo3lNj2C9aZqrAIDo2jNGRQVKR-ixUTmSZg_f_adTrDqhf3PoJDZ6NTeQgfV32OB2CzObf9HIUSiWMOoab18r0yPX_DoVw5WBZVmqeG8xf9fl52gliyG5bwV2u1c7obK61txCBDKNBEZFhkScTsUDNevqZMLlZ_a\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6829da1cadfaa2-52563633','','','2025-05-18 13:02:01','2025-05-18 13:02:01','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43212',0,'cd-form-entry','',0),(43213,0,'2025-05-18 13:03:13','2025-05-18 13:03:13','{\"firstname\":\"Mohammadreza\",\"lastname\":\"Ghafari\",\"email\":\"mrtnz.gh291@gmail.com\",\"contactnumber\":\"00447787934699\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6ueQEeGBo6Q3PvrDP-XnxvsI&amp;gclid=Cj0KCQjwiqbBBhCAARIsAJSfZkZVaVAnqXH6w0yS8XAV1KBMsUGfqDC0jMYmJWvNfdyOFwRD1Y3wZ1waAg-0EALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6aoKgEfaRrTMqw5TXSaDpu9IwliKGY6Lo7NRJvY4UeicYTk313xHS0064e5CX-YM-ExONczSRTij5wvpss9Sn8TTsQs7dLu2XoqQOmKtbFXucTJAl88tBYqUGWfvhWQ4ce_vQQCg70nQC-fz9a1PM9b80Lf9vmWXHtHbif0f9H6D5LkRIlPKIgC6HUA-NpKAeTu9GKylEhOBBMGMQSXNtRMgTjc4KO8ZPBAPlVjhFIMEV80rs_aNRZcesxXFDXL_ZCvmAtzSI_X5DPgM0IN9AlyNf6Qgi8cY-kqzDAwjSlQ47uTkZigzM_0x3cvnczeGP06R46BDDFA8Z92qCf-7dFZksSONTegFTwpvAErDxNYEPSHkSWbdvOBDV5rRESlBjVzwxfa9m_fSwBeMBa4jRIy86SJeQSISgxdEGvkIQDkGcfghj-4EleOfyXob-75pIONd-wAdD8iGxJBP2W-1PcM536KMO6riCUpg9N_xDtw56afnW1_4k_bOrHmBAIW6cMlN_l3OrWC2ahfiTm9mdukNCiKQz2-uKRbUnRRxusNSfs-irDCKVwpctMwPwuccxaUrDNlDppkAzqm8XbfPGrfj_m8yFMKYSabGNPio5CSrm3cptIU1ARFzrCDsIYgHT2tVYQuYTsnbgFCq4MNw_l_Sb3iMLUfw79ApuQQ5DQuhy1X4x9NYU00KFWbXdZrp_wMZuz9zXVYhRD0Gsc5Fiu992C5GFqKE205Tj2z5r2CL11B6dQnXLXKpk63e9nPvH0Tr5HI019KcBjBbEc5IQ1TFadfGwFFOOluVFCd9BKCnDvAo76wamOlLbxECS2R3FnIIsHFInpZl56l5T8v2irh8CtCbvlq8LAxNY_dvoYizvI0UzMgon_8QoneJDos-7dr2rnC_gS5zdB9xve0WEOm9icvzUjfwMQDm9XtuXSgdHMldyVQtuf8lBRH1fNDoCRyl4zd0QQrryPklJIDfZhjJMPGRvu8dclWoAbgsTjipDzmG78iPRbCDmwolgQ0ZZEfZZ_4IQin-dkgZkYTQijFht5KFnipoSL2BnRXqhvDaHKsjEjLOaLWPNGQtUYfQnYGFu7e6-wpbn_Z2oIl2EeNlxV1CFC76LPdiCmFYHl7wcXPX6Rez9_DBo_g9ORW49JwtjzFPJgyYjNZZBz7yU0gR-4Xp-97GJ6ugRttL7ppeQIMTSJWUg6uWHXsYreYZJUwLzCBbrw0JDIeMTfDdBoF8bJkBOutqYuqYWz7PQyGrFArGYnKrxA1YhUCuxfs97sN1VNrMsVQN7PSBuNahlh1ZdmjBC7itXgdgE5FPn338MQXgwMacN0tJDy70Kf5661YjkzsclEiadU4kHPHMsE5gPy5aM2Y2_rT_XWZbaCEh43PAPhvC2ceIs3wtqi3uyNoutmjFvIQBRmbxHdWWmPlLO66zjXVsIuTTVMvAMqxVFVBWMILpu-UsqOE4X-X6y6-4DQuVGiW_wbzBCe5TuX3MwQnk95eFEtblHQ3ZI405zP6iw8L57Bpsq7Cvw4BHbjf4K1RaoW8WJAd6T403J2OkujQbZbrw5CTtBt-IeDKL26E2DGuZemSq7YjEGNFSSV4kHq6OJFp_tge3iNG5JNeTbJRWq08f38WCzJoh028NBHIpcBdm3ADpkWBigtGH6eek01_UnF44lKr8-riJj4019fg6RwRME2xxtyYF_mf9e7lx3046uxafy1YP8wgRMcDXSle6LSMX1PzM53mVd5Ry-T5AQjCaWh1mIPI5SneAm52YyGncP-LBNQIisIo9AUQJrK28EW6ItOCnRDxTHUD4kCfbd_yInMyylDyCWI0x71hNim-ahgFnx6wT5rVQtdTf4tcfELzxuMumIB8vlSyIlncpq8ZFpqagUtkGPgpLVI-igPlIazfaGbCpCBURE6tQ0vdzAgNJT6DFe1CYt-9dHX4XemRTFKyUrRcqS9H6hKIp4g6F45udh8iH7GZWKeFF2-MpYcCLwbBzpUj-dSPLwsgT7MGgKg5eikR0u1jtCVjT_nKl_Kur6mW1xCYadSo-YdqSrk9JNgFtqDaXUwul5yS2DEJ_VcmdDGQMZWqGGJ8sbwGFI976BQMBroBrk_YA6VwWF21JnlNBklCsDA2FvB4BB0jjxaeSH9dbOMfvbMyD4A7J5epGxEbmI45lDqBkpF\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6829da919e7a48.84374594','','','2025-05-18 13:03:13','2025-05-18 13:03:13','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6829da919e7a48.84374594',0,'cd-form-entry','',0),(43214,0,'2025-05-18 17:56:52','2025-05-18 17:56:52','{\"firstname\":\"Abdallah\",\"lastname\":\"Farooq\",\"email\":\"abdallah.farooq.99@gmail.com\",\"contactnumber\":\"07415411298\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwiqbBBhCAARIsAJSfZkbrxamXPZ2N330ZAiM0h-wUe4K1y9V0H2wJ494wcYv9ByrgrTxkB38aAg1cEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7J_T_tpjri5q0H20xQjM9VgvpetN1-XhekFkaRukwwWfUB79XvanLSC4JbyP5sY97ABVTDJ2gF8z7IghU27DOeCYVGZkkgXvF6iPmMW2A9rzOnMjA3UveCYbXo0WQfagy1UxEcUxZN3tN9vLLiZMSAAhCQtbgAIVyC4Qndi36Dg5-5Bbd3mHxg2vTJvkpscBw0nxo0zEppxtyuPp7wfW-ZyorthvfRa0CDSmmlfqOyR5ORvLUoTFZ-_SUCvuvH-NvPlfdPsX-GRi81ZzWpjRIqt0UDoCIi0H0YBj6fSwt-bck4_g9h-kvbt6g_2pUdlWsxhuBRvBE6hB6TBJxJRlUL_T_RjtOYSgZKKFgCunpO54GJw41hf-jrnLqDrv0vQU6-g2nv70xfb65vsJp8dqzuy4szoKWPd601A_U5SHVQoZG5a0w7bfBQHAXcIDe-P35F0z4AK8nQPb6TkdyOeMg01huMoHlsI-uaokdY1Zb-VdfG78rjg4ogxdbFWGJZWAR86yZud3QAGpmU6bJ0giU28g9rBiWbYhxAIn4bIwkCLuzTkThwJYwmbkv9pLyZvRWX-CXgeliwWd4lS3dmv0OlPabgljGMBCcNhtcy5sdUyTzlEpN2HyADbPnkL6mCjzYsfwtEWCHYMhhmvaJY5OKNR7S8DKJvdDNneYlzfbNu-YmbotnmYkXUvRhnPJ-71-ACzHsstaaPV76v_Fm8sgRVDDceibdKzLfZ1buINqGyc9Lv_yO1nyu-tG5-hhEcUxF1m0u071qGDUJzAv35Ux_zAGOoo50ghaed28gs-uBnxtIq-Vywp9q8VGWMLJ0ls3DRKpyvlbeF3Eo6mXl4SBMbM7B5G1dCVuTisJJjQ_EPY_4-g05hWtnoorR3W6mh2E7FQKI2COqcTER_PDxna-dgyY49bcHRYfgctq8mISXW4rZBkfSKjBtedKeAvN87yun_76XCFu91tPwHTT_birF9KNlln-azJjj5u627iZmcFyPhQGR7p6tdbW4Jt_z3_5Lhnn-SWlu6I-XlKBWDCp_YSBOynb_jlc81N5o4_tL5imIy7wql1LVPdmlS_2L-Lfj0rYI0exZCuwx-5x-axKe2w6wcT2hWZ1rpM2kNi0odeX9M52pE4Zz8deipVumY6jFsIySoVuOrw5_JkqsRSYNtK5QxhlJBXQIuiDMgkZkSIM6c_9eA-RowBrN8naEqSUCH7-jN7pWGcPTmwTPicc3-xmftunD-VmRnA6MHKwJtRgYPjKLTFBO9BhMdhb1KR7AZrammrAnD7P82Mey7g7EpTcLOj_zqeecIY2oZBvCoAJj9HQIhFlyop3Nx9V2JFIDf9og9hvy6drGP64G9fNzqeHLt1UUZE0vwHnXFdDo6VzEsMO4hB5O7S4Pk5WeE6IJeCkVFrxTbWKl0mnHD2i3NIIJasatcsjnbd4C3Kbo4ZpXqTBRNgtUKY9laZ0MDvokMzm60DnlSYA-8Q2jkKMnH7zB5HUFZUQfTVYLcoObXeyvlmqSe37JFA1il8NyKr-aj9S2MPr4ctZsP53A7_oeLWxGGpB9MHRWseKseSch-SFBZMWhwJRXZWRdb8y5FyLREqClbucsi-Addxk83_r7Th4JZucGRC17jxzfhJCjuCUvD5XwgqhxNairq5FN7_s48O60_xnmd4PxALivtVpn3ZDF3O1u8BVzkmSTbwHnXF5JIqRLhLTYFs20uaFGhFPnjet0JwBSt0KU0CeYRY4eaMPsWy28MlhcyXoB4cq5lPXd_JD7Xq0Dw8pbL1Enj4g9DCp11xxGfrfK1odaU3zFS2n26Dex7eT8yTdIrTILQ2J1JXL13w3v6UY8bett8eWH5Zok_35NBZQTpnkQ2tT98ckGHOZhYwbeyWpJOoXftn7eB3S0zJvogT0toh7lggZqqPkNmOHiGn9WnLV8ckPIRV1EUeUM29VRStFX7duAES4BwwAezY-onDnAlrEY8kscBaTIM8hT7O5NlO_67BPHLH-QjyYBtXKmW9WQsuUJbQv0vV5QRpM-YJs3EkNCWQjFDpt2kszaOwvEVGP6Je8IVVW9zVW2grX1eLkJkbynuMOIAqx4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682a1f644317e8.79635936','','','2025-05-18 17:56:52','2025-05-18 17:56:52','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682a1f644317e8.79635936',0,'cd-form-entry','',0),(43215,0,'2025-05-18 17:59:05','2025-05-18 17:59:05','{\"email\":\"abdallah.farooq.99@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"1\",\"currentpostcode\":\"S5\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwiqbBBhCAARIsAJSfZkbrxamXPZ2N330ZAiM0h-wUe4K1y9V0H2wJ494wcYv9ByrgrTxkB38aAg1cEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6ahGJtfWGSIHbTXqbwj12wSKBkeu6zz3GTn92Bxua6i74reff9vxLOY3CBeR3JQMVMpVzvXUk_9CoQKdKsUqzjrgrjC4A_v2Q6miZxaMAxhwPH_CkaDvserOUZ2np5OSIaPid12OFXHQtcxFviS-f0HC4LNoik4pLYO_HlsC9X3ktn3bZfuA7i7V4W4udzRdXXxgnLfyY9fS3yjmPmi12-ySIVPLW0Ccts6TniFAp-pgPXfp_SO1ftZobCZcPXl-nqtvQZ1Ze51wZnxcfLhOGMCCZV_2nl1pwsR9fht7WaApyUiAIS1TUAfK8Ze7kKj9z0miril86I24Jcm-6xhSOI1PVwDHckgmhbgFjshtsKSrh-QZktSIfnead7GJHuYdtWX1qkOxrql0eG3SD3y1hEf7TdgD9-ogTImctDVJPq4RKQeMQQ0cWwWHQx35_pvAv1yTGz2sL488_c83N0PqZ3gbFLF5KRTli_P9m0vmXdpNubANrHjqyYvlQ3LZeL33aP8RXKKUE51XBimDDcFXr1Joq_r084MSR02QfD5nR4Y8L2egHSqGfYlQU-ByV-7l2_3L8F4uK6W5Kg7Eboc99SLDQVgsNjlImIP0V3RLPSOG--5rqGLySrHHcEEExqWiJnxt6KB75VyGhwaSXH4F4DyEewKRFhoc_7ZOE1W_Q_YPakcsAkLNY0PBAT6QstZUcronaeG89i-0thlllRntBo6P8uSTNjxAidXM1EOyYsHa6UCuZBmpG7bVeY8HBE_VuWkVrS5OGEBnifqhSe2IHChVdXILEY_jQT92ebYVkhbTygQy7eosOeNmChZQ5VbFs4WsaOPXYuIFE34CkaU5D8BQGUnkS6rD3GXIIRCzvSW2msZ5dqVCSr95KMWqGHzTKnPyqmJhbgffFkrUX8TFCZIfJhrh0coBhOx5zoJaJocVIzp5_pqNZvsnxjJ-UMCod1g7gjPpabBRu_ON-Ufxqw5W37uPG99jVOkwxQ0K5FBBXIj0OHvfsj-vfrqBv79_EtdvpWv98m48645nNpG2eRBfwQStxu7W-E5ehDoCuoZZuozCf2QOk_R0fZnrjpLkjnBjq3ZS_C-4TZE5v76Uy6_Nk-hl9VPxUtmHFUxihI_LpOnXP0p0FjaucJ5lT9cYoQbevK6vEQuta1HePoE5601xersxUNX2-MnAaWPMIlGWalWYwwednL3mVA0LWTMFt2cxsNvAyv7qZkSh4SdYotMI-0g9yH7qz4yiD2fH8a3nZvX-V2XBXTkPjyakyAEgXyWS12un6yKIdMHBqWNPWWFFf0aJFB7bUIecXiqa1FZ4kzz_CwhJKEO3jht1nRS3eOZZrqwkiLUuc86JdQLb-e2_G5mhVdDntszMVhqBKbCL8bDlmCk9Lb9J_QU_ngFxIA6O5eriORJM0D0Km7iEE00khNPZKUBoix_1pa0K_QPIbGj2d-doSw9Hx3DtEXUoIpIhj-mylPpfyjqRxw9u1KoQab0B9uxOtaTxzCnK7YcP2kc5VMVdUKaPTIok-UaJfyZ1PROPPhytA4ltyyXc8s-V6KOL_4P8A2RFLXVg649HbiZyTJNU6ICfX-6bwtCHJRR0YNXTfO19gOzmF557FVjnuVlDJMM_eyksX7F18i5Dwrt5DNw2VdqExwUa5u8RdRXyzlJodhk2szl4nTI4gnnCV73ZZJIGAebsIdu8pUSn9bio7VYIT9bzaBVfjbbZVquBfq9SCciRKTdanYqRJhNfw_-xLnedCyicX-PoZ-buLCSFgT4AjKKM2tic6MiGhBvvjxrIYdg3QGSUoBpcTciWlM-Hr4moFgidv6U9vOIXjfYBTBtlQNJHi_UslOutEpfPTU8rQPtoA20W9e8IoSWsESLZrep9X2-a95RjIyoBTsWFRAHen87wHvsvUQ-ehrD-PRlndtiQK9Db9vWuyIYiriG7OkCcOh-DZEQicboYiHL1w-uSbJQFLDZXXA16tjlrfC5_JYX6SU7T36y2QPC-klDEm_JjALZdp5b0c5a9gmjmxW3bTc5CzlwimCvD992lkM6rXoZ54VSmMAV8eTCNpNnvHzs0XO2T_MBh9h74YHX8I\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682a1fcb97c6d4-73275011','','','2025-05-18 17:59:05','2025-05-18 17:59:05','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43215',0,'cd-form-entry','',0),(43216,0,'2025-05-18 18:05:02','2025-05-18 18:05:02','{\"firstname\":\"Abdallah.Farooq.99@gmail.com\",\"lastname\":\"Farooq\",\"email\":\"abdallah.farooq.99@gmail.com\",\"contactnumber\":\"07415411298\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwiqbBBhCAARIsAJSfZkbrxamXPZ2N330ZAiM0h-wUe4K1y9V0H2wJ494wcYv9ByrgrTxkB38aAg1cEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA58k5raZhl5dNntcDgmvIWc_9OT9dC3HPQ3bex1mUCkao-aA5Z2EcrWGTZpzGow_Im_YhY5C2FtT5Y0SUp2fe99VXNQkAmz4SE_RLu7TpV1QdpfdZH0a-jNXxZCEze3P-CBnctFD4L50BuIWg-3_d2bYyHpIVIb5y_q562cyrWvB6eSI1d6Qhns8AfYojWU9BhalHpStQ7xZnE1IFE9Z4wcwCZ1C5h1cWFnWKND3tkvMnbVUpGsioqGBYzp8kzoRjv7kiC9powx42bC0nvyCR5m85ndoCr6Q41f0cSwtkbcne4hXBi_KLQ1qYsCdxH5TH71OVkcFMjvKouvVeqdRH_QG9f_4cSqisSnk8HTlbGJFIWPH9z0SXGiTMt1VGczaVGCihSGdriVZyjN_a0MGmrbaDV7kxwvK4Y6RW9eOQDy7SXaiTmRYnMshdcjVQo8RNx4Em3IU7NX3-hiGX_D2Mo3fQkAeUn33mNbEfZm7mt06VlgcssPwgDG_3IsEJJfSzp7PdxVLmYxJpNaY1wJNaHVHCwX3TTkABKtyBy3disAah7yrjqMiLSG50kcgYz_WAR_LuOMrDBLJBA7QqTp2kMXkg_3_2BsFOIEg0px-3LN2vUDQ-Bf4ulTfCZWYGlVjx6EcZqw8gCdZ3ZvohSjkhWUf3kRScfTmbbO_ciKCnLr04-QNcS3HdViKmHNA8X4u2Ez3GfoKOHE985kY1OAsYaxsdnr0a9OO_i8-dI-LrIiWSVZfcuA_MabNeK7s4vAP5Wj8YpiwAJB3EBRDjyncW6PIlv8HlmHBxagjX4UW8FiLraCCJ3FZ736ebGRw1mIItqrh-xXUTWRRllkDTNUnWpjlLHTCWjM46BMHPeAztGmqZwQQ9IKLn25rlTmIEPIkhZE5cueD7brNoTpVGzkQG2sCxvBFxRlLZdcQtqn_oNRt5IkP3jgsl-TAmXk-tLZ6bZkjYMXXOM-tZzJY9muhFPyp2kg2uEpEElBBwU6fRAH5giCf_NqhO2Ai2i2bze6ULALNKBeZKrcS9pxSDF-TlmRB0jemTPFC1Yjh3QwjLlkZF8K69yONtNE9sTrYHxlTzgVJPVZctaedkYfW-FhgDp4YZ_Q8Q27NStUKWFNK8ckeM6BK0Xo14rEJtMzum3v8tH9HbMdfrRRfJ1H2TqaomVcUDzGdQvVfTO-vrJ5lgAZUDgGoOy3Ozs2dK-ojkhHAm4mkLpGaQ43XwNOWHB7HOlN0QWELrD8L_243A2dAAtE1bHBz_Zi7E0P78pVndg905axIGrMHjhEWmG5zhJThBCi6JK8roDn5lAokflWRhL83nGah7Nvr40x4PBaAoo3OUbGYcm64GTcsO7Lxvn468i3UqL_aj5ukEUgB2ti9965MenH_XRPhUD19EW-NrcycapbdIUCxUfFGwmP2DGk4YPCmYYGgq0CygEmMmg0fJYKTPLq-hXbgGe2AcBvelMv23PUsjBX1KmfO7bQvbGfs9VVaGjSchDECPQ-l_4vb2zyoCn76oCWTDJn2cE4ytCntq7_6C-r1RCAWEAjlWYex4j-z4LeC80PVr2ey9iDvHImrgoEmbQQNcbaLTvxWSJbfSmwU7_gksiFhU304cRu3JTuu0Kdfu3SUOI2ffCaL1jgDkOzem1lmoN4jPCJQ99inxwEElRFV9O8hKC3aqSODuII8gfCW8sdsJRgfdNzERJWIOtEeU7F70cUy67b6DVB4bzi23xvCOLZtpQxctL81ZaOREx51Nmxguivbem3e_opirWI5kOYUdOrQOb5xmzJyVn6C87aezGKsVSS5vs7Uwlm7I-YchKfXvD5pLT-QiAlrkBYvcF8BzMdYc8o6QGis5FbjfRP9Xk_eGtRBgxj379t9wqVPA9d7b8hvcM8KGZhkVUQmBFkwUGG9J_PldcQ-2KN3dKmt0ysWOwBFpTAIZ08_muGq3O2AqhihDaD-3guw9IGpQh4uFF10FqJurfroofo-2XSfhJvm_mlUm_NeljggOLUgnfEE_OjUrtITucy9e1bL-YdF7rtGUu3RDHL9leHIo0OQSByQFYs3V-hPQ3MghqSg9-qbxwo2w_6FmblEFLgQNE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682a214eca9ca0.36734189','','','2025-05-18 18:05:02','2025-05-18 18:05:02','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682a214eca9ca0.36734189',0,'cd-form-entry','',0),(43217,0,'2025-05-18 23:23:30','2025-05-18 23:23:30','{\"firstname\":\"Caio\",\"lastname\":\"Rodrigues\",\"email\":\"caiopadeiro123@gmail.com\",\"contactnumber\":\"13991483319\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-strength-and-conditioning-coaches/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6ShkOzXBUmeMLY44QouVI4Qi4Y3RCQYnPT9vhUUnxql-qhvCNvzzxOWZ3SVZ9gu4Os8Ur4whjivRc1fYDMp__tzJ0VaUkXNo7BR8w0RoayfUQu66xo3cNUYOvQb2OLzL9TQIVk6fJ5Nd8vvATU1hF6TiDnXN5lgzIYhroI7bMR4CSABnw3HAWoVYHWD4qRMeByPQpdx4DJ-xjA19DeHAe_TgUdKa7Hdw3S5KhDDXZRRmOz4JopwHihOlKiM2qKBV-OFrRxpsoK6z1oVMThRBvj3mWTRn0mprv68ZE-M6NyDlnOf_UwqcHFcXmOPQiB-s53T1F3dCkL115O9EcAsU7FxdVFdrWE1RSIRlJqi8Vkkzn4QojyVspwTDLlidiljjwCXDV68kxgjs_RyQ4M3YL8G4NU_xXxp4t1lW87DNh_5cJPwTVXn0ikuGtCETcuFt7vJn2y-7tnu5oSNmeld13F-LYfED-wGec_qifq8m7MaB0yCE6SMQb8kBptMjbqchfXCpw9hFshyMyG3Y5BTxRX1R7DKBLp-ENweo968CQ2Ms6RZe-GMM1uSCwCSruud7Yh6vgTEvMGjWyLaxDTX7YD_kIs_aOWILmSUX_cMrqGFLAJYwMGBJ03bSrNjRQbSJJjSONBSuEMAF63U5biAHtg8bUxutUiBWdUQXcDYITX0glIFIAdQO_C38afxCsoKDsB1qVTY1tj2FhvcTiPx2kfMCIyUNz4Ph-Y0Y6Iql1WNq_LvKl6b1lr-Evnqdlutne9kZrXQeV7M7l0X1Aji192Lc-3XisFBpi1NvfTWZibg0Iu6zlb9gtFpj3ZoGU055npjkuxgdWVVLCwSD3EylO1yLbNP4IZimQ3MDF8buomYnGopfbFjN6aMDnK3XnlNZwSyNB9gwJPYRaLmjtyvXyNKiyaaQo_QhekitmngXVrYG3J6EBq75K4dmA6tWPYS1kDm2lbhzWlONHmMc6XmO-_sqIOIISciBSaQ3LDQyQ6a7BddvwZna3ILsdjYUIXtMgEO0vQ4HCRK4cJc4d9EA1o98SmSaarbh28v5gGyhdDK8T5KptlRTXMy9nFbRuNVKbMOuv9ilSQDdzCQZjmUYwvFCFJJz7da_hLksnIjqycj6cH51mRuM3Nue8m4Z_O-MbY570gV5-DlQK6X9KJioc3qcZitFnDXdTLELbSHaxqPtz2SYm6edEASLjYiPDLalVLqW50jA_uQ_WiNWotqytd7eTn_wogkjghpEZEpv1u69-A2w6olYl4bd23OLpZnEZRbMPVJmunWoZrGat3-3eoRSkuzUC3bry6MDWR2Pew8DUQDaUPP_GpzI7phnT5U4azsKSHWFQQDDeDoNUmpjdNBLHUfTSgvcftuff04k20zHWO1RFAuwV11K0z4XQJME7vMB42-Pd1sz-fy6VN9dRRnJSO7nowCia50MSY-gDcB87An6ahtdDHls1fqJFYG0TB_AVYcuiwgZDeZNhaVLLdJRytc32wB6NAtz2XbO-DcDgyJafBbl6FeT7aWKzBOcb0ml0sYwLvAKUsfSapxQepuh8MFms1zGU2L2Q2iAN75qxYtFrBjVeqILZlR4ik3HbS_C5r3LxXiHYeTC-50clg_fWhTHHw7gOJtvhFM_26yYBlsDY3X6eFsg7c2Ka6jJfJBO4INJtEBOSJjGypwP1UubV1B8GsoRiOGZ7uVEjO6w6kAJri-K5bLgIxaNPVARxseKPr1GRS7Xaggpknk_a7pSyjBKyc_uakiy9ktuZPdKTCrXKs8pFQpsPpVRzsi3u83XuiI5y-_CkMUO2cdfK9LIJSYVDktjcxHBS-ROz6nCan5LGpKIlOwctpwSbTKyJHC2_txEcBazQoKV2QJWloq0qbyriW1fQuFwWUL9zjzNC2Yojffm6JU5vZhgb5ztrEbnMrP8b1nwUU2SsrN_tUP2ZX-ZhYLAyTRyH4_w5TTiTgG8FVjnqE4lysTYK5MGnInPeDTTrI90jd_kvmgH76NCNBYkZUV8qRhfVEgDBXipzW1u6u4CYJMDfdw1wbvfbL5fJSHEkbE5_X12sFSBawp8UUqJIZJ0SsbYU9fD6YwUUOq93DDyQHa941lsUwcqnQCZM9aVbwoO_4nw-aJKwOdiVm5D9Pd7v1yUDoddvixBeRm9b2sv8HnUXij61Vi83vCZms\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682a6bf269dec3.17512703','','','2025-05-18 23:23:30','2025-05-18 23:23:30','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682a6bf269dec3.17512703',0,'cd-form-entry','',0),(43218,0,'2025-05-18 23:27:03','2025-05-18 23:27:03','{\"email\":\"caiopadeiro123@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"11065-430\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-strength-and-conditioning-coaches/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5L_rVbPpIuktQrZVxaxMfu7blUb1fVYy_N06IwBjF7jS__Mm4B62csxZMTn3IWSN0FBBu5RinxOFr3GWkngEGEyBzPtyx-wOD1-6hEDml2rvjKZ1mRKAJczPL8KEF0FNml-DN4kqEsDPvDTwowlt_ZQ1kxBsgBgfgpTYdH97DR8ACH7X9T_CMVtMbRtJmzAoWjrNRt3k_3GoOgSAMiJa-L4V7_wilPuuYjNswssAcSc6hakmrI6qM6yu3f3UtKADsrld5xZrl8I74OJiNTUzZOcHxRNDLABNljN9HyYopyXVOpC1oPAdx7HL1fDZJnRtlup2pXd6wFi5SZapyx4bFWsm-lTwJc7E-iGkCFs3Ld_redpuNkvUu1_AxATdF4QkUmVnVVnuoig-Am1uXOmi3X1nYMFN-nvsu_gSYAaMi2agRMLyGJsSKJVrM1AcyYQB43XlPTIIWmDNRccK41KfPzr-6w4NAVt5XH8CCGMp3vc9MvzLEzmL6KbVsXCjQvO8TY_xfYCIYxNS9tkQJRfM9xY3vm0HKVeedg5ow6MALuXCkUi3BK-03yZ-SkV7gO-TFFb6uclSkCnCvpyvNMzky8GrkUVhz8QWCZj1u0mPta-bpLqPhRrpqmwvLMPBu7WJTljXeJNUK61m7_IWeMV6FgRNDfY0aYgkhP2CP5muMNLbEDlQ4QBUw0IV7uQ0ncWmMscDAhD3i93XPxZ3smxPuX966X_uIrhgOxWcws-Lz2s_VqBrs-Vb-vQI4RG1jQ6HKj3UHaO-QJ6Yq-4cSjr01B3vAV6ZiOaosOonySY-NqIFfXybgjUX8PoURBVwY-nE2uRiczRbf4eyPE-30cV70VE2jIY3fz_5zK2r7Oa14tKEfIkT8dhWgXlcXLZxSvTKoGHvdcPL_dQZYe4GBlLwUNMqe8F-t6eetPFK5DSmEOhhlmaCUQVW9Iy6Ct_7IdsGXO-vtQkJVNvIfXFRiSKXCBJi1p7pKFrhZSnTqNrKkpn0wDEOl83VD4bnTCgRLlXbmiDREgLe8hSiJ1MNQgyvpolBMKh-RONrit0qV2zxPoAhmEg_e4IjfwGV_zlJ9NI6igX4ETOwMAQfxwn-uU-OScj7wNxE9xzDt3Zc2lAQV-6eKfZDzc63kCgiJt_LrwCXl0ageAh6v5LL493v6V2IcylgEN5oOMI2nxtT-sY45U4Nd4HkL-MZLNdsjX925PeDvUKwxkHotLv2_nANjk54DPk8_YQ3RyVgh7SmCZP07Gvx3QYCHBMwRIj_RUuUYFxDPK2_M1DyJIU97RoiQ5VGpXBKB3YUEYouyzlnQLXoTWL8FDsOs-sk3TyAUMv3ZM99_56UYDFoiKMeFmdqYYLicTQM3x0D01byPo-XAj8kdASLvL0VdRqu8VO-I3duUfP9ovgC9M_AAPnJ9g6fNKvJCvBlB2elUMsJqtbIJ-LEb4TYtVTlG9HwM9OIvCTlpHxQn-UXpixryk20Q_ffJE3bjnCdKlPyNFU3mmibwU5BrU6FbomhLnCfTzlgyDIjclCUfPw2qfI0Si05Nz-w7UpUbNPnKi5J9bgMJHsac7D65arQqlVIfP6lOR3E3lZiWnyD-uEgAy2wG-Q2Wbn10C2Ubajuube1jqr3zDwIobdsUFMaTvbX8TLgbJAeyMYAl6dbyder15NqVF7RThylTD9_oxFrVJWmD4vvwgk2aHqYKuMTkFVDXo60ZhFWRTiVtDYX4cuPU8kpHCVY0UiRH25OoHS1xNo2-cgXVLJO_6iyvUaf_8Dx49fTVD6tS9em-ycnSk08h-j3HgU1kBbnVhEob1LSQgY9bdkhY0ir2wGk-_teIrWRbAEXiO0MD2qsjkjQVjINnSA2NFclYlTXvl2ku8-13SGEO212s3cWGBoJt3FxsghVrTA0r6XTSTtIHiqRu6yLOg7D8LiITcbubgRsEvi9H1TwE7I4P0pQf5JQCJURl8ZrKkh9Oae1jr37gkRgi4MGLX9cOryh338evFXaUoDzas0UtBY8lua57f6DbgyYpKlYQFxgKJV36cZgNrHTught4gTlQO2SJhA4zKWYwvbO6iZ3b-oZJkeIkrB1Q3m1O8r1bhswcgjBTC6R0353QhQX_mAjDH5fnQA_MHLhITto8SkTjJZndUL__wr0sCvMhG25PO3JwveRr4SdcnYzXfomUd\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"0\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682a6c9badfff4-55578152','','','2025-05-18 23:27:03','2025-05-18 23:27:03','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43218',0,'cd-form-entry','',0),(43220,0,'2025-05-19 19:26:21','2025-05-19 19:26:21','{\"firstname\":\"Jamie\",\"lastname\":\"Williams\",\"email\":\"jamierosswilliams@gmail.com\",\"contactnumber\":\"07940 788 152\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uIj-76PhukUGC5DTlpZWcmM&amp;gclid=CjwKCAjwravBBhBjEiwAIr30VIRulZTOHeyQc2OWZfUaWzQVSSBre8DC3_eQeScKJeOkz9V31PZw6hoCTi8QAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7oktuthgdP-sE49OnoyHzuflXS4vrwBhRPdhTRrfZkTeGaiyz1cyWlRU-7jN-4HYpMMr9Nnrk4i--MHwsJyduO2AmkhdJ1zMW9L2uBEJXlJP7dSP2JmEM6vjSId7Fd-0386Lx8qSXduWEb5TQoizEtB6N06mR-S-1V6ElGi8wCAb29Mxa0CdwaeJSJGJGYo8f4A0taGzIsgs3u8mUAAiTmOIx2APjIrsNCDvwJAxoyoABG_MQ6Pt10OIKUT-b1JX4emgCrhZFNiQAwHGHMiSTsleMMkE1JIS1pYQZ31BBejV2LDgZEvE7fGoSMHyM9KIj16XyYiYuvFCrgDKCEoI8cs7y2HHkJWW52jna-NMaiL950qpwcIxHVRtOPKbl_Wl15SVYNVYUlVgx5f36kSZtFkQSULhusPwN7EC8GHh9DgcWlBFmaRIrR0jxO3uqfYmv185eDNcbS1-IcmipnXOog-847V3Asp_uIfuhwAdY3a6q2scX59soJm8mzeiqX-aq-nb9WPBBSFSkMKfStBjzKgEAx46_Y3xDhNBIRvdXH8j5n6_LiE8vr7wvrOey75uETQmlPG8eXRxg1rtEj31kTwHD-jKD7fD-dHP2rxcZoux1X0FDZhmr6y_OCD-Tb2nND8rwDhWGtrDKQonYthXqojr3uQUI9G7PPOa0h73qBKEYypiKk9DO989iEIsGQhL4yVvvR7LP5ICwzfTfSpZ0ZPF-VnxvwVRSgOJDBnbUSpqk6kP51f_a27y16BuiES3e5FYUkqyeplRITHQyGuTZux1j_s-TFsrkA99EjQdlEP5Deqh7YYu6JX9uMD5ZkbtgMbasJ5AZA2NDLNaNDUkjnz4NmyzqLQNCZwP3Bw0_ADa2GHHkSW-5Xm1VSiBaBEB9pvfon1tk6qNarEwJqy0Ee1pKEtjVeKWqA5rewBYsRZkXrkCGFnI1808BO-iGcsfthujSV6V8s0Stz3uHxOdkYOQqJ7-nwEF0gupKndRxIUImkN0L0L55LjyqtJUZ4yZB0PtN6Fmh7IQi8xji3SGeVNiVqfQPeU9RSPsnzytyIkmFpnDUVH3jkqr7qrbfQrlthR1ZxS24PPeM9UneMSSCWzUITgzZrIOj10O3IQBd0tATgIS1jtpHmjG7l-kpcYin8XAnFiZx3iNZ66H752pDrrTIE__r_N9wO4f_2CAVnijaHSrzAtanSU8aqUFEim83Ov8yJ9eXT6e-zQtW8OI8kwzVr8dM81VJON8j0JEtCGS_aqiDZcYabBObiGIy5AxQJYMcEDH4f1K2XV43SNL-fLKJO5As13Y_9o4eVdj2NdK7ypKpShkR_pEYojPpiNh9FJy0Hp95cWm22XlBg9bkrqeCzMWH6QLqQr41UISEWqkVsu0Ma7quEVIo-bNrQwsBbkM7_nGF9rCKRvc3wxodrwJN7aOYu-3QUo94nvu-pm26d-vv67oy6F57-Pp3gfvRcsuYFK5WXM6qSnGNj4nmObOo_Ql1fA-4PzhADagnsUWKap8bH7hPggJNj8FTjFfFSkLb_Gv26-rJRuaov-F-u6sYE0hPZmxtCaC1lFgW62ajFhyURk8E7INDwJfgQZPQT7FLWclN1NyWZuzTq1XLo1MUYwFClLNGoJvGGloVhcZANYxp9ehu0Y7s4ZVpD4QgPzD7jfN31S9mYZapx9qqzlGVWzSc6wyopEftFU8VH5T-GJusutNf06vfpUdmq3t4ex9KtH6D9SlSleXcEKeG-W5eWFLIdCuqeIL29sdVdaDLVOXfLuq9LpbLYRixPSmborlvA5uztyEhyJoy_God07s1e1_dVGqvYcFdVjwS6TVsKpR0UnvyZOFIfn7IikbqeP2IJRUIHN3A7xBSAMOq7wKhcJgSa6GMLep5kVSbsX0pGYiYUM8VIIf54mG2Ecxfoi-ghGmRJ4638dZZxeL8bwtbLYQOWHrNrVheEwNR6Fn8uEDW4sk0ZcheoRwa8I04fypyaq2Z3pXHnlld7L9fEpLWuc6KguOfiWw5FY9M17aKGx3gXro0XA386AZpskcq597GJq1y2HBYEEc2dpSZJRAeT9l02hl_N44gqyDOcW9UBWxx1PuyNnj1X0o9eeF063k1XrVcYC0FPtlvjeEz-7hPOGE4ABfhMMt361PlHEKwv_TU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682b85dd6d2c18.95010995','','','2025-05-19 19:26:21','2025-05-19 19:26:21','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682b85dd6d2c18.95010995',0,'cd-form-entry','',0),(43221,0,'2025-05-20 02:45:59','2025-05-20 02:45:59','{\"firstname\":\"shazad\",\"lastname\":\"khan\",\"email\":\"shaz-ksw@hotmail.co.uk\",\"contactnumber\":\"077854307501\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwravBBhBjEiwAIr30VH2kcpjekc8mQPowGWKrBeyqSszwA5K7tn_h3y9SILVBTGF7cbAwJBoCcVgQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA40QMVTMheh44ilFwYwG97NBLY1FkHXYRlvOCDEqz34-mdWhBw4PggTy6kTkHydFId2fcK1gkzNlUIley50x1mYUt-MYkADbBPzWbdXKoCyKfU6E53lBOS6BpdcCcgGlTNQIAL2O3YC8LKnnejdbigl4x8YWB1kMkISmzBXIERvI2G7AXVlJrYRwIx_TYP3O897psC7P__0y6ylpLaOX9s_cxieXpRSSAVVRsI4KmVqFiVFOhqqA5lsJq4aHRVn4zeJziJuKq4fA4KyYDyMN9VCV4TVpWg5U5_6w6DvXdkRVoxFfQWZHOYr--c7wLGHlEZDA2tacAsVjLDi3elcQuCI4abV39Vp4gZ-OzFBDG_UI8jsuIVzf_ZjB6wagOWfJzVAHTRVoPXayx2e3oCRTROF0oN0GPtJsT1Ddh19s_yJ7VOP6ZegMPOiijuefEGuQwZwYwL9hgr1o_hHPkYl0k9_8RXokd26YVuURYdE1TFgyiHLNTT327Q484H2aAwP-TNCnhtpeD3KAsKjpjpN-Yh8BNYrEEB69pNVfkKNaknCqqRWl1Ve__SXQ9osZtRIWjxrEtfOFRVdcBMnMcvovcIj955fs1AJ_O2-cA2cW87nPcMr3jM7OmmtyzjHpU682ijOE8EAvb0pv1vSPiQf28wmOmhfdxhYXy6WJSTWq7_wofsjv55z7UCqiOAS5-SJ0X3QUDE9uqZfxsslCB98YC9yE981m807B65vEGCIVf1BvUUM86iybYF2HWpidax9U5lrNoOUzZRDAC28ZQq80kvqSnwM5wCE5CfTmsCnHyRqqkjKnIHEwlH3_0IAX0jyP8f-4cxwCCY3rQcXD9Md-0H7ipVvzGjnhxelH0HK2gH1u8_vYF2d2YnZi_SS2MIMf7gDsOgTQLrBxYW4Z2isRoccPnlG2WDQLyjJWSjIhJd9t67_fOYUxurE2_c0Ccby37ZWRglZApgSTvzrsD5p2Vdm1iKMLr1bybL7q8elUMGrSWP4mlKze9t072vXFVuU_L4SS1OmqJk1LAD65mreqSSYzRsOKkDJhsjFUg3ABYgsY3U79cZ0bIIFDxpD09kqwN-GrbRjFqNc7ZSYE75pATtUFrvCqR0dM5v0WHXt3CQoUjn4ePKTFfdOqkLBWGmO4Q12rGOzQzCwAFvBLzGtDT6kKbpMJhqJqtgIdE2ivG68npk_hZgWlefkwyOEiCUK3GHCMei8JpijecE5U3vv2XI_Gq5SlToldDA_5rwzEz8IOdsjaUgUk50iMG0ZSlMob2o3WIh96XDhoa4K2h9CAh0ualENGe9_aBPOFlFiSqdDDuRfKP4ZY-tu_TrQ0SwWkwThuLF40ULW3RDw5iuOIuVj2eq6LM63lAEJR6r9UHGdIyXl3dqkE3e2N7lDhuS8vPqJdILgqZo-EVahBjIJhmZi0CNidn7nz9bbv2kEB4B9Ckp-ovTgIvjQTOvZ4e0fFBp-MWrmdGvPWAEgvQ2iQ18kWBYQ3nW3HNoe7LWBSmfTunfszRL5OXfnWbF6Rrc8_T_B7lU3aHYfrskOvhp3FTD1VnqerrWMHF-FyarB9eFtG5p6WMQj0IHBpN-9_gGpZzn9GWQcBIql68RPZuWshTKQNJwMAEHImc0eoUFRtC9sBPgogNrJ2C3Zto-FprEDzVKOkP6-RrcZrfTwtn_sPeJZEnJQdnFdr3MR2BTu5gBB9AVBCUYgXDxPQZ4glOhjRHFVgoRGjLC1hksY93rqRSSxaKog52K9ZcKQWWCC3SXg9Y0QWGbICcqu1qS_SCJ0vE8x-dbKDGCJAiGhwg9Bv_xE7lkDnvZRV5PCyuzknzXUInxHu8VOTbUo-1VTez-FQud8DN0RMx8kEJRbGILJn7kFSJc_yk-Gz3VdYSwFez_QQiKgE35w8W7GyYVP8rFOQNL2GnK0RCaaUjJobTWIYxEAiF8YCKJuDwWg-6RB5e81oQGrBpPxFGdeqWgOzdFPj_B5dsCmue6zno81Q-Hx5op9rs6AlvdxoJYQ9QMTS0vd0lBZaS_iCqoo8TKitKrNl3ejRlxrdNuY6aFXdzdkKt7qtYbWtxHMJytFsVldgxDt9x1JU3DrHA72rcD7Y8DT1xNoz5tgOTbVM_4Rog0w6prdZ8jC509w9uupJy9qRUJ5Fan15pQOwio_0z-FAw-bxYaF35VxcDfBlwim-6JXrF5lN7XRouPJ9jKT75Kyw8Zz-nvVD4HaWpldWZ1yAgXuRnETGHjQcc9ivBDMPJ6Y4vMvd9gClvqPFjALonDMxgK2z_7VQCrsi6c3No4pHiAVHfCUaSPuHCbTnEt6JbL1ZblO4jEZXA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682bece7edf923.93166766','','','2025-05-20 02:45:59','2025-05-20 02:45:59','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682bece7edf923.93166766',0,'cd-form-entry','',0),(43222,0,'2025-05-20 13:16:03','2025-05-20 13:16:03','{\"firstname\":\"Adam\",\"lastname\":\"Dowsett\",\"email\":\"fortitudeperformance4@gmail.com\",\"contactnumber\":\"07920171011\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7khc3IXJQKADsn8hA71SWm7DMZVA0dfSWLIfmmHYswbgavJbELIGTdMCbywsR7y6rohMz_icIZt5C7Z24uN0Q4xmOABMcPohTFbGANWC_y3fF9yVUOTzUi29VCVqpBJOBf5soFpeAxTZCiFYS5AApIptFK6-Sbd8UhrQFmu9ChqxMWsnFaS0UGNXr0VtcmPxsNjpVUU56s6Zrcm_QRxEI8EFGZunpCYzuajiovSmSJ24hQlGlDKl-yZ3ErUe2XM1AoV6sPh-H4fLXdCterWbjxZ_1j0azWxuaHCZMs-zgyqcv8LMxU5DdEMv-T99YyrWCsJMY8LqVLXLtgiYBNuXA9pHtbBFZ2E074MOT_n_9Yk8LScZlaJ80e8PTBY4Y8TB-QLMrrTUOkUuTZCfP0OQxOOyjFXmOmPuGY_avHux8vscTj1xReLzI9emlDbMFwkKcPPoDTulcaak-jWuCEPdrJbtgi2IHZsC-43fYJv20AqTRzFuljuTEYNL6LexdFJY16akcLK3fCIWgwtT_hM-xkHSProR4_GdeQxNhZ540Kurf7BBN-uss7DHTtzk4lYN8qUQKjl9zHWOWd0fXWx77cUIsHC39o_C010CWNGhqzm4Gor5JKVbcKZRCq-udB-EyFhpr6HsML-ibHUTbuBb_MtmrSYsFNrZvk_Cu3VYrhbrhpHRUpjYfkGv4s8ROAm-KLmwWCXliI7ka6m0LuTmzFvUdX3mXSu6KEnx6C4TornTMjNebcbA2Fq1oWdZz3wHNUiKlKBnnAfduzWQ6ARtuAjwdAwcVXR9QsESST338OV6J5bcfnespxFIt-HbqdMB6tv5kI6Pu-k7gJcVq2DR8N6kUZIqrxAKVYEbZG4ZNZ9Y5OftkB2O2lEpFGgiq-YWx_jg0sbMjmtsWDDi10h4idN4uePuZLNOaK25bzEk-6VVC_OMG5pSV2Yc_T8UDlxsSUjY2dFR4Q570JHu0lYrheLpLIPsRl6eX_8XBfw7L4wgOD9FXJrC9GOkVo86zVgVglJkQjHF3vN0_eDXBi-mj1d6yhfHrROF_LdFgIju8L7mZupdYr397X_Qb0d4a7DDK9JW6C5tRrY5n2RkUnOZ_YzE3XY7kQcG_AYg_aXbw-O6WcW8DVV2aYp9HZaLgHdmcbwMNOBKFPlW5vsmuMdG-NWIfCViifjtkTj-VoKDOXJZVIlAj7BDgEgWRv40yIhdeQ2UocSlXLWGbSXrP-_2jEk-uGhZBGFalwpX691_Rg6NtHSOd2p3oW_0OZK6gZ1_euRrEsp6pRiaPOkEK8mmxDnwdeiAZgA_JVC4arNm_5KoPcl6zFX_UKKZ-zHNuPLy-BLZtxsqSLAYtVDiItkQLm6UNSA5nT5yLD1rtLLQ0zdFODZeBQBZ7VXJLhxfJrQy3rU6ZtLUMmhzZwbGJ_aU_1naqVdY_xwGqQ4PXvp6Yi1RWzuXj7mX0jDHbIycMHiwvefULzinTwkgWOttuopLjFmZdD2MtlWjJhg__LA9ZC7HldUdeqt63NumJQHDx_uy74EKhh3ojF-Sth1JA5jVF-PWB9IJWElQi-pFks9vHbI0Qf6HeCBCjRoBLyCZmvp0QA6uC4r35Eh-vN790VVmJ1cWE5vl8F06tnXbzQMhAkNQkkjVH5rHFi9E2zZsNVZ_w4gWAUD4CZclW_iArk37lo-TaU9NEYG2WSGCyocBD-ymFJPj4sAn77DjggyXXGMLpX2HwNVNC6sRCmk1eBEEvTOnvTuELEYXxv33uxCoitrSWlby_gSTf4pXP8VEmaO8GU3k9DB2msb8FgNoq3byS_emSmRn9_kQz4ySldDyE6zbLhMPvvlKX9HyrWxTpk08plITHzg__oTgEMCUugr-xbHK0IZBzRbj9v2GL4I2n88OZR6SaalP1oP9oSel4ddREieARbwGnGVzcr3O3CWERrCt46Z5ORWsGCzAnGIIDb-4955a3GRjPdB7FkupEjx32XfDAOqm3LISCJfZRXPB_WpQngoigKWGQFZR2Rj_7QoVcotubHVnOQ7yDCV70QMI0qMj06\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682c807c3397a7-30348878','','','2025-05-20 13:16:03','2025-05-20 13:16:03','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43222',0,'cd-form-entry','',0),(43223,0,'2025-05-20 16:37:01','2025-05-20 16:37:01','{\"firstname\":\"Kim\",\"lastname\":\"Parker\",\"email\":\"kim.p333@hotmail.com\",\"contactnumber\":\"07894715974\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tB-inXx2g6dB1yoPM3tVYII&amp;gclid=Cj0KCQjw0LDBBhCnARIsAMpYlAoAm9cQxsPQ-brRab66FNBXCTU0UalyD--SHvGjXNGKH3QYsqWAeOgaArfeEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4VulZDUjypmYL9NordrX2uDuPDx7r0wbaSBClepyF4TJF_Gca4hpRMQdw38UXpsUIQkE8EApi4jKEJurQU_t2fqiv8iLh4EZm8pApNVK7LuMuN-0ad0w-TsHwq8efPhRPUVH_QXqPJPAzk-QhaTpXUqGh1UgfClRx2mOGdARRHKxAsBliwQG1nnsm_FVCwhxk9jnEIaXTTy6PcgPL78fC7JwZe_a8rdaAPX_4ButBWJKiS5oizP_c8y0LAI9PNI7gjICIJ0O_kxz2RDmpUoQHr-ycT4iP_8q6etXbmsikcc_7aCA2r1YEepGNSnrmooDksY6ecZ6MyYbb12OjxYfR3jbJkPGZ09p3fFhSLOvXQwlpcxwaj2dHCQmt4bzmSGHkA7e30u0kc6eLLekz5xmuo9sGldiIW2x_EuHKtYCcT-z9VzHdUFjTSjqk6rPcD_nKEDcVDmmJybjinYya3couAvbct3fL1URlpRJZMNclsJOLsK3tzy1gQgedKKGH87INq9dtq444-mxVf2uEiCbodKJA1iBNfrnRE8aF3MXVyd5L6P90UpEHNeRO26G-UOMHvkKsz6QCUJlOznJY0wePtSuzcUjrDx8SPhePeqn30v21K3U784igv88qBcHEtWwV_cZ4m5pNhN78bxSi65H3Rw1lJNXOjW3ZN1CqcdTtZ5sTDjRGFWUVGvFakFp1WKVlI6STNB5zZ0LgS0DYzKE6HglEDZuMzO59H-god8m31geQhyDBPlY_0GnfO1zhHfgTAIigNAwYgKJbcNsQMk57WCaCFKEKfFVvGn5T-WPN4OqtpX-QkjAGSbCUa9oMGJaXhN8t1ZVQRwFUAAT5oj9zB3OqezDcemLTod_kxND9MMBYvs6HN5a8t7HSk_YzV_f1EJUVwzu_hAfOb2R1u1lDAnLvMaNUNBxGlbKL2OiBcC1F6ABWpcjgZfVBYNPm6S8YIp76kklXRJSK-J2tbn10M1-3yFqCySq1cgYM7IIWLYuD2KNAe9F-RvPN45m6SrQ3bEUnWHJVsgyks7HEw2nUwGU7RB85HRIc6wIU0vA2gmUAWYjq59ZXyLxTAj0qLWvKDYS3KlRQUtTPCMNzZefjgYGa1j07zr20T0xLkrmtaSTMHa-bCuazP6ghQnwkkkekJaZO7Brppp1XnU4eg1e1XxWphea6QWKGZS0jx0-sWWLikmtVp717C_A5eXGRMlGKytD6m4dHDus90uWroiffs8RBqYHLrQlrE9GShylkjkOu7ARhDdBSeujZZUYuGlNz3TGS1CcvKBIfPy9JC3YagkJrv9B1gIpRjnoxwBsbJr6V-w1aHyM98DKuna2YXmkx-mDFFgZZp8d0MyZSJIO34NVtj6bQrO4IdTPRX8kLOQm8D5im9-gucEZBPYFM49sR54UXm9voQFq4bdehC5POoqM6k5rRXH8uyV4oBzHIYv_38vf4lOjWWYobsPzlxDLjOdvV5QFz4KG2Pje7f4mrsaKXDHLW_PTVG2GkT4xvpTM--SF9UBor9sc3k-0wZvTDR3yVhSjXumiub8MsVe7SrwCigXpReDhoa3B6l1rcxfOC-EyehqSx-93WkleovrtvqDsUopK6xPitH0ecV9HaWMT90LcYU7H0dOkaopKJ75u0N4crRnrk2rTgZy9R_D52lAq1xky7zgDJXbv3-tzIc5RtYRpXvLZNRJlID3DMZyTiS6sCwebqWkzWSg3Xjvt8UfDDxEMLsuk8LuZQ7RM1eDeFAIQIUsYQBIuybH1H9mFdeTneYUIKpvfQd1KNqHvE-ZsmVchwfvRrMUrDBA96EYcpfXP33qcqyagdWUXa-JOrpYGdH3B8zZJ8bF6RgiC0sAewp7083Q4N37qOXCdCKP3fGCA-lk9qiTp9R5A1O3gVU6IILDQ5k7cnuuhLkZnRh860_hOlO_OVdpVqNiCNqLea1j7-FNMjeoI_cZ4yD8E77zCqW5HEcJRYCH6QTyFugJPmsyJzbn_dOjAK37yH6ZV16WRMH2v7ifsnOGpnx5LNnCpRZlW11RL8nmWpMcEwH53oIFVwRAoRhr5cngJuKM6o0Ix2S-zJZlxs1DvJ5zMd3dnkTJNWHlKV5P5DnnWCebJRmlBIGWWhu351oMsHswlgmfDQRVDSKN_BzZAzvlABb35zSqotLxPoKsHPbM5_mEgIq\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682cafad1da1f7.47270015','','','2025-05-20 16:37:01','2025-05-20 16:37:01','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682cafad1da1f7.47270015',0,'cd-form-entry','',0),(43224,0,'2025-05-20 18:35:59','2025-05-20 18:35:59','{\"firstname\":\"Akeal\",\"lastname\":\"Isaac\",\"email\":\"Akealisaac@gmail.com\",\"contactnumber\":\"07535507546\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tVrltnJXHqZlUPJybTgdyAP\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4o3fvQTt5l4Lzgc7kDNGcq8ulWsDG8c-8gyTUHWqMJ0B_7eiNLq3CPIPALmNtoFvim-ynMJTK900R5VKPLwNA1WoNS3hUSHv2O_Lz8SIc2U31FkV3gnHr3At1RyCuyaJPABjOPG2NZ4Vdnw8ziUIL5jJ-bU1Lkr8SurNPuRJOLGKC-l6cSmUPjaGi3-_lzpUTCzj8oQrBje-OxDynvWl4Gnc6SAxDpWCPGKK5P3yPZCRQ6sMlRB9Dq8GGRNfFZPvT3BTXVDMhy69S49skQzwEBqkRskJtUIIwRn1vveDgLoIs8Hyg1xhvVHuoUrOffeE3wYyN_ffGlDdCtFm62NlOLlqvBc4hiVEYRI6dl7QeUUR9nG76JLRFru1IzPm8SGUx974w_Vn3QxVQPTymwNeyM9-6hkaRXGbvC51rXLVeX4zRKK2Zer-2b_OjQj1oAZP-v9FBMluB46LSXP2gfthKu7DtnQjSjArW5fALSUDgSvlyFvjOX_qUrDnaFeBbWe6eHeH1Aa4yxDjtF4GPiuRFhdd0AOQoRopgeTA_sjuJbSs6T2mpGfEyc4HBg4TskQem3X31UsXGBk_lOFg0_zV7F_oaVGSEWf8U1GeIl7ddcgY0YKvAbcWHNqklsXzm78uFWD1eiMJ6lUFU9mcySHzWWryYOJlYycxUneFPTXPJdrYOFDBpKGHN3TLwm_L2ULYK9-8BE4dorzseHe_VKPDSv8MLWiZbvNg2TlxDAsEne0uCBZgTOeB2L28cZ-Xg4iHIz3OP30MdlBz6olOZ0bO-jC-6vEWFvLpOhXHIPDRkwhBIojo7EWo3RsSsfr08Ob1kE7_orgD8LzNqltIPjLzCtteI24Hk_evcnb5KrWkun7BmaWjMWJvIqvWBqrXIjEug-OvVFxTNYRDA26_0qFwLXmqSTQSdRjoh5xiGe4XdCrrLroZabpsHFaiwPSWmqrM-pq3i78JUezsuM6pxWC5Sj2chTxgOuceR2kmInF83g6rrmKRnpPMjJMqLK84PSOsKST1xIG9Atc_ub7FhomjTE_OPKlpjOyKIRf2P6hGIRuc8ByfXnd1LQNKheKB3DYOaJ0yUnWGi7WQYsHJuRTqGEOQQr1uXb-tOjGdxAvJ8C43nsNY6Kl6-CcAEZrVZi5hNVUkTy4LZ3ylFds92YTRYS5j6k6LVtpHAa4nHmegPbyWLlpvk0Py7zLDMRCI4vA088dJck77pF1sjnsdBBukl2La_sJcLYmErPOpxHIjgKWslWsdnQ9x8Nvmi1IGlmfJzhUOpmrORI7pIm7RHssdKQedtjZYSPYPJJ-r9tf6WucA36PIQqMse10lXB3W8sl8dEytpPiooYqOEhBigiUJWtQgQyMRML7T_fEGFAz4KTARBl_d9MLM89StqoXdm8-pDBuKeavcch4N2o63djrm1Z9rDwg_DvAF02ToTiOO2egiiW9io6HwcEXn57uCASq7BXzruyDKnm1A36ASmYPpO6wkF_pl-ZKI1MS904IB1g0p6lLZ8C3uV8Jf2YnbXpT7Y_AKkgsMHFaI6hKPIj-ea3BNENvB5PSyT3g8b2FVlaxkCp_VyJFknMWZo_N31W5o8tYpVvoYcsX12sHI_zH0rg6dRmgnfWe5MqN_-lA12FWPq1nwbLcO2-BJAlONwAmVT0jgakVOy6kNIQtwgeDKT4yxguHVgYBQTS08aGANGqqHscvWPEmS9KtM2TKTdgSvIjrMDEV9EqTPCioUqOWz4HszcXqdBNZtjFd65XE24NaThocmXYlycpobe9ssX5vCMXgWi7VYAQ418BiCZAfZTZwv2yu-d8YmesBivzXsBVluYImXyz_lJU1HTAsa3sVGWlyiRlG3zQjkQxp0rpzj74sH5gDEGqLI3Bm-1ZbXNbnajcb2SBqXPXHq0Y1ZEFG4NwvneZ9OJ7Ul0Fj_hAJTzIdEbxPx9qF9QbvNguwMGdn1vc0L3_3IpveXPZb-SE2CO1URkQL2WMQBE43K__qluiuxWMJ5dDlHQcLLDhrICVOnCZCg_erA1sCZZN7KthlSAOLmJvNJnn8rNY8JfFaW_eiqm41LevLNVfwHuwN0G8pzQkD9v4TwjCTN_1CqkCpql9d1NXDeCqcbE1dJnT2k2HFbwGt07LwCTvt8t8FtFq0GVTnmlpelhXPBhzZJ9XXkk14swRdxqUEOMjVWXqjRIN80PghR5H8e0WOCLXfrwUmNJ1GFJZkk0JkZwgnUJ1wMvwNcaMv5SmsH6TV798-yS75bivQ_KzEElX6AqLEOo90tJcsd9hw2wT10CC_48VDsyrwP6CjMaqqeXKI0jnGHS8lwaNw6FOx-vcz0i7bZTDXGBqAUOmAYJqEgDVzZSlTAF-ZUbi_E_9HFCxk0dr7Okcnq_ehw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682ccb8f8992b9.62926717','','','2025-05-20 18:35:59','2025-05-20 18:35:59','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682ccb8f8992b9.62926717',0,'cd-form-entry','',0),(43225,0,'2025-05-20 21:56:37','2025-05-20 21:56:37','{\"firstname\":\"Amylouise\",\"lastname\":\"McIntyre\",\"email\":\"peak_recovery@outlook.com\",\"contactnumber\":\"07496509892\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tB-inXx2g6dB1yoPM3tVYII&amp;gclid=Cj0KCQjw0LDBBhCnARIsAMpYlAqz36UxCKg2WNfeZAMj8wFc9iOLZ-RfsJfywsTZb4_GjTJzTmnpBdYaAiFyEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7JWi-bsKaW6E53PoicCbpY0nSmaJtUvUEhDlXYVeqXgxHh4LCYLi3GIpIfzXmQ1exYdYZLX0DxOebQ36tA2lMj3Nhq2SBkQ0aeK3LBbYHWPpBRe5rbXuFf_c2Vaqvj0OpQuZiv1lyY05STFD0pgk2xfa9yPlQoG3y8JhZ5yxaeZG7qZUR5G0p5sc__KWIMtmeBZEkzIGEr4GVXSTlLp5NcqYITXFZLaUuLu119RNI6krSdPUPRfP08HGCdPzVdVVCOV0DmUUIyb4xFqEcGwU9vdicQpyDQA-D9pQoX1cl_YhdqUnUitl5d1KVrRhLiCGOzdOlylpHdo4grNlCVCr0CEZ4UCvyj_qt1v9rOaRshSZnJCRq2q_j15N_Pmn2-aefdP_ttR31L1OT-8wI7jUc-80L9YoZUuhAgVNXlhKhV1i48jFqS8Rs_oNDpnH_rlGjUO_NKIuQSymbXL8n5RMmLWp9ep8BZHpCSVE681ckcv9Ju52RDtBCIMvpqRA8Rag8zWBLa8DAvLDON2OLIGV-nMkZiQiAPhaSdFSxglBgTcWxAuhUrsucRrNLcnRSue1v5lTVnqieIbnX_Aq5l0bMvVR9l1YHzR3TusteirAvyRZymTUiqsI1iz_vqdWUZkF0b3InOp0KPZXO_1yjZoyTf27I7imewYcximfZ1yod1j8OeQbg7DlLHHgIYb_A4F9EIx7bxpr9E02BS-IPPD9dpAJGVIuMQnSL6HbriXjX5BThEBl7HkgnMxJ7CJZVIzNA6JbGphSmts5bxoyl4NtsZnFmHJmD6v_v60t4-lP1I1iI53eLRxFqtDR7Szd-jxyU0IxTFu--IAvG8S7bCpRUTjJuHP333rjRaXa1q6sTfsWBo7gRFRo5CHF1QG6REkNCOWsNt2N1o8t_wGeuQLWC3xFbY0bhmuDsqzQUw2BZI4oBrQD8Y5lQfGoUSt_Sp1gQS83dNqhNUG6TSpTtYEnKFVZcWHPbhamtnRXkN7FtB31gXy1EJUFaRvrrmJkMxoUgCxtFkawy9cXm8Uz6R4biX1NK1u_HW9x79QtP95_I3OmEuHox6iSfPn-Oqp5nGEeSuNTjazaoJzM0FbI1wVyn7qR1TM8tZFyH1wSYoiMpF83xoKXW-r0ePevJlgSmJmc-yZF5deeQJ5BWTS0OuQyc6QOx6TxQyJZxpGSZuDBdPaBMQ7xef8ICJjYeN4efg_CeOIHp9Z8qMtgn-X58Duf5YUdc2Z3gpd2QZOe7HLJ8W8kCQi7ZfxDiSWI5A9TDht9kgjADvYzPcpySsL9qrY9D7A8NHA_PlAFwRxZ7lMmfjM8v9sulPSWRkG-gJjT2L8YjmWIqDMt6DFFP5lXCmA5vb7ECSf2VZ0G-dUOQDVn6ef2UTaLdgjdSYsNVsBLwgVbbXC0f4eUFUNoOx2RJXcR3091NZvJgXlTrxhHMYNqgY5-94QO7U_WNgg2r-rPItFRgWl-SluTNYFdChyAricw9Nx8w2zskxvjHira4kg-pK99jk2IQmtuuL2VU5qMYXAC4kb3rW8CTr_9q-CFaMahpjF39UqGRx3oYRPlBy8DkNreoVPEjKhaTvqaIFlqAJMo3iiznovusATtz7wHvRHvFmS1CxhPygpcCtuXduso76aq0ly-W1qXVZrkPtkiBotRXXbtu9b3JY76NS_CV014s9rPSPgHdzz-neDR29azbZWv3S4M1H9lRU_jC6EY_dfYtbhQIsk568myjDzb-b-JOi7w5U3PEcjMTc41Kgc4KfGP7YDVOa_tsEirZ5-6hfOtcD3NfrjsSEJHZc0RilKh2Ynw_uL82vMJT5p28DijhVsJmwZiBM5nrsylM_BIGNe0rYHR_Ir_1I_m5eLYfkuwkF-G61RMvf6wAlqlPZj7RO26SspnvBkDSvVDYwD8MYeN9uKNfDxr2vlmC1rVe789wT5xbI2SqPwfw42ayaPzZJOBJyKhaHl1bZvwFWQ48sYsmaRjPQkNwO7FSFwMWz19Zy1d-zRS9w3XMCohjYZVs_HTILFvuiq7vw1pusgsVmDwu3B7HaOqiRQ4XWyikDsci4IDpNWSJjkVGLpw9beBkjhmqDePGqn-a8XXADZjUS3HpHpceuLtKhfaTZNHH1lRDaRCjnsodndZJGfVFdlWBbR_bQ39m-eSiu7BMYWyjPMLowcvhSiwrgncfUNgzRnfUQgHc1HIgCME_cvk0C4HJ25RwaGfMAyNpmmcbvmZtR5yzjzHMT8YLKUe8On3VoeHZCRjZkZNuK7uBia-ki9PYG_FqueC8kIkQ93r9l9UbQuYPTmXwGpJCGlIGtvor4XwjOJR9x9Dsu6UM9ImfbF6PPy-vM0xFPlZ41NUY88o0HsiNCPE3TbqXeGE_fcLc1nvhVWLNxP4p0_tTnogUReo_3qibjEJo\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682cfa95361938.48260994','','','2025-05-20 21:56:37','2025-05-20 21:56:37','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682cfa95361938.48260994',0,'cd-form-entry','',0),(43226,0,'2025-05-20 21:57:48','2025-05-20 21:57:48','{\"email\":\"peak_recovery@outlook.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"3\",\"currentpostcode\":\"NN18 8GP\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tB-inXx2g6dB1yoPM3tVYII&amp;gclid=Cj0KCQjw0LDBBhCnARIsAMpYlAqz36UxCKg2WNfeZAMj8wFc9iOLZ-RfsJfywsTZb4_GjTJzTmnpBdYaAiFyEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4SQpfrEgw8z8qf96OJEg4CVXPXfM7ZbEhN4eqdJq2gMz9Jdv2qJFO7j_K2SJKaetqqTehm53f2lIf3mCWTPowqJ18GwQfES5mmIAE6WG_pikNHtd31gpf9lr_BiLsJcUc8eZgYM5pL_t6H5w2vOmq1Hcr8yrBI2AVmSVGwEdrw-yBbay4cUB6xjW-JiX959ix9gpWa3oKAki2EafYnfRqQVKm3yVFtQgYJog_p0GJ-cJ4psd5FXThCiFb3DESAMEZW8cyTIASu4OhF92crlxrNX-JgWfVcRAbpklKU9a3Tm9VD8avi84r0v8d2yUNHcSCXehWJz4fnAz8gyXctMfRpxBgbRv76QLKXGUxC309UGq6Nsn9IENZeOyABeSJaC4VXpUUghEVi4SgYgPcSH-GlDLhOAw8VxfMJnlHAgp8Q_4wIOEYDPUCCV1QwfXbMjbhpP2Ts-X20Nu_6vpIs7eHVaJH-xoMb6Tx1Hr4F4sHXTfhFmnbP8-h-5j_u10VcgrbXBfK8iblPkyQelCrWZfsihZKxSeaM4snvvmuA0bOaSh47ZAPkLkkIg1yizr7Su2sD2Dnm6zwWlfCzpChcdzOQ4Dccc4D2Yinkovv8za-3wcwRFI8u3dr3C9q5q0Yj1s-OQwxQCl9Cl-8pc6UhpTvw2cSLGKsC1QqSWVnULgAFu7lxV8h7du0Q7hFvnGPr7ILtu08JmHTPK1jI3fRrNsjZhckfQT7dTnat8xTYvq4E6rx9S2cFhXKZScFX_GfmyNw0bV_SrcDGIClaR0fLnBnomMywlQSn8JVa-46RaRsfr0SfpqX4dAq0Ec2wX-WOTP-AcJfXsUYfrax2JV3iiCYun9hKQ7-qe2wYoC5P-Imo5nQnImX2fgkVCtfB3ZvcWHD5fv2nr-hp9PMz7CXjZeRdk5DpJsmRQHUNbz14xMhUa1CK-d_MldcWXSh17M-pth9FDQd8nadqOUCdqlk6kpFxGDLeYKfi6526cLzRm46lsIFCZ-ChSSZooNblMwkfRFZ09pcMV7RWO6gxEd4mWS6y35R4YQvAUPh2TFFy7fY7rKxkEJNpeSNX5Xe3OT4oTr0bpa82CGwLKuomuxUlORTmgvapy19wnp7QOLYe09NX1O5jUV4vm2UEmzJmnd9Yi52hc7XyPA5cvcxgJjt-s51sGKU7JMgiPI9hCr3GjOB1A7T0PfDbmdd4T4qJ94cjSz9pGFOrJkZd1UFyjfDvnNXV1VnpCttF2V4IEKJ5ElUdE1E3J364LzvsJxdBg-y8O0U0x_TuroQ50jFoWjqUeCz-JiAv5pgqMvNRHXkS5TxqNJk0Ng4kx8y0T8M7IpVCq5lFxDQhYnvu_00d3OOHCH_zYOCA9J8YcxOfu14ZbmXzg8lUgDIIEycgJJfKZs3YU-1DnQLS6JywPoo30b2tmAwNdwLX2fYJ2L66x50YTWBBOlKpv499qo1NJ_5b3ftMJlYMLiRcgBnFJEnV4HcoMWe9Tt7rketyXFYeFz7etH_U_TwsX5Z3NPlPY-0wbXX-5K9KXnzW37CY0eUEZLj-9DLGI1a9LAZsaQjH7p1CwbzmWaHmwYIb0pR2Ylmxu9U-OufjYS1dvxkfsC2Q1Z8LuoTb56CVC96H26hRct3LO6ziba9KTS-Lx95koahAMUr_ChwTmuNdQR3pYpaoIVP5B3Rt7VDkAH2oW1MMV0gpWyFghRkjufdjx2nI4UrUwaMFU_i_Urm8tP0vVTKxH8bD1Wp3L9TWRLbmwbsyWVImBf3qyuvq7gs7CJ6mSjB7zWErFRAu6qsZlXkabEbLm8loTCKcTowU95L-mssjXWV7g2LUNJysFuv4MJ3AHxrPctDZQFHG-3jx80V2YcDy_rKY87ib11pAWeK1EoyeqdCvh4iEA9xUtne1LbrYyPfF28KYPhO10weyvzNQLm5HNaDX3ZFELFONrgYe83mDLekqNo0M5D2eUBPNu4dehr7MCFdm2Wt9JKeLz3R48tpRJjcUc3zrqUiV6BNQA3eNLUPZLzVv3uiW-XWOYHHWLDTaUI8qXXLvtlQOs2Quu3rPlxWWPKv7cJvW38nui1e4NuO2lRpDvX-H94Ug3j6wJXqImUcl6jgTlGwm8emx866MPlKtSY-Icxy-UmVndV5Fe39Ra0SohjxsNXQ6NiQdPtUwIP9p62yPgKfnwLBFc-jeIe1C4s3Llk-euA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682cfac953e754-20611437','','','2025-05-20 21:57:48','2025-05-20 21:57:48','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43226',0,'cd-form-entry','',0),(43227,0,'2025-05-20 22:02:38','2025-05-20 22:02:38','{\"firstname\":\"Amylouise\",\"lastname\":\"McIntyre\",\"email\":\"peak_recovery@outlook.com\",\"contactnumber\":\"07496509892\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/thank-you/#row-40321-2\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA40IJUIrFeNtR5FVpbnsmMosb0-CeZA4S8gAoNsneTGyiht92Wh5ETDBYcB0LRwDCUQ9FQ69BqmXxlo6kT5r5PUZqHDMVLPVYt9RVf8ivHccNG5X_4fFvrJomEzXh2MRuxR3MmD3hwvKeXbg80theXudkwPlcfr5avDc9Zrk0d0cVtpIomrmPT4mVC5Qeru2ljezObc9pYA7dyAL66B-4JhxRQHWiW1iPZr-bNzmdxi7kke1atl2NbZZxFXWgCxmzcz-oOIhYutVpq2AtM7-wDv7oJgijl0Pr8azf_QFvF3Hav1mhm6pHx2kNCBY7i7dhPAzbi9PqTj34vkRBRi-1mUNMXuzqwXHLZxsNOzyx4n-knQ18CR7HpgJIyS-B8AjRmefM_VO3E4BOyB_G-Oso9p8u_q4792RXWpaaUKknFRxZumacWdmTkqjOw4YlbQwlyQs2Uy-dEWFRhScE7y0AZ_ZxuNwQabc1cu29QUqprpSA_fh87E0nVHSukYnzIaMLOmBoCeetrKlRK3szLlLjKIbyPp4kZQT6dNPe_CQyboAfACJVWDQ5463AQNsdUNZoYcURHWv61MhxN-dOJJMXMzUKuKhAIYSe3uSkr-10hra1bLnQZADzzHpKAvZr9CItTSEMCp8H3A86D1OnUlOYNCxq9TzUkj0XTfgOhcDFpiq3JOcORWYgz1ZAVw3HZnLBFcdIVEiQxI5zKWewZIgjFfzFKLVvzBC2_CvpadwH_iTem36qsQnO0QPYCMEYdiblrI6Wkoy4Ru5Bd3SEspbWdm-RrZtfT0lrN9nLjyMZBYalQnWchQ6uQG4NKDGZY1Nbqw3Nle8BzMgugERaPMV7GKogvLRLYWbr7rOO7tf7S6F2SIyic4nT3B_C9wUJV-ybDhyC9hjgcrtuEp_4Ygl7A0lwQOP1Y4ETyS42W_j_JJsyrOlF6ajTH7FS0EEP8_6hW7v8MIJBRptazg-rc_LGLM__6NIEd9r5iKy7BtYRTL_A9mF6j7jJfJM6PvDBe56o4lPz1rD3oE2JdWPijqDr_In4mUlK1XXDozpCh9khWIg2m6oag-j4kursQAAUbf7CiPDNaD_x1hc1oVQhmPWxEeox5S_zLV5RweFlF8t6iJafHVxz4NAi2vC8jP4VFjmQhHaw0ZPubv9nDYfohV9lvfnXUjirMlIxafdYLad7IXzYZd4gBHz06CwMXJVfLAc8w9U1vtKeCqFvIOi8iNBaZkcHJEW6QAJ_6ZAWnzxe0WUfU3Wt4ZUdN8Gi4P58UVF92XhRCfXHJuM3155BOyRW60RKFO4rjyg8MASkOr_PGEp2aGzik7QEz0kJhCxNe-6QIZSK9jQm8zUw69cFIidnHTykb_Vt5TUOLDRdBU3n6sHDNt7rPtFkWN5eI__blVBY6jUpPTAbk-4guEOcK8ADpcLRyzX1WFZkadYkvnYZzBI7UOG9qOWvhzNxYFVB77dV_rSlZF2uQkk9jM7FR-nUdBvjmvSLrUMpBNt5igm7hO-Rw-KjX3FZsIuAme-fK1v_ex3mEpzx0YIRG0Lu_c_pmq6pdbe7bSozU8kYyVA9XvUnarqVcVFVYw51MdBuG9i-N8R3MSOsA9un1u-8IaJY_4YrAVnWUFhvH1F8sYtcdbWqWZJLf4rMp4mFS44na0gfD06ejrdmU4xFt8a1m5I25ljL-q2y4M7MHDbKCSiJvcThC37EiWhnWV78A6yxctsHh7eYMaqFhgmIKQYG6ojqkNApNlMN_6snnrYODAhvJwcwoa4NPBqcQ1M4MSFCsBIF9Zm_XMCRoVZPArBkCmCxBGFDHhQXZ1FmiCtggUxvry8NKgNMi0J-s0vpO0i5NI3fmH5pxRaAkIGwBCRTKQAJug3QA4EB76FrUEdCBK0YX6F1Y8I0U55dfZwfT5kCzsPR5S95dEpvjF5gM1Ch3jIP62RgQB6Ux_5lr8tmHRhMXL_vJIJfuC0T-8ogtKRLtb2XlELz-QjXGbL3zMDh7-sWHgQ4UcsIAsfaCZiiONtdNx9kmXAh_qPsyk52fhAzGFIKQXIfDy_tFqDSexvOzklxnlpWqXB90mIsb8eQKmBcRYRQNAs96q_TBYYHo-vSq4Mmzk-kjQFqj_HiBPFqXFNuMbL8lJsgTYqg3A41jRQH7H5WJIniFCxmvcDw8-SQ9YkQ64n-PY\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682cfbfe812e95.01884763','','','2025-05-20 22:02:38','2025-05-20 22:02:38','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682cfbfe812e95.01884763',0,'cd-form-entry','',0),(43228,0,'2025-05-21 08:39:22','2025-05-21 08:39:22','{\"firstname\":\"Lynette\",\"lastname\":\"Macleod\",\"email\":\"lynette.macleod@icloud.com\",\"contactnumber\":\"07710030193\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/when-stretching-a-tight-muscle-doesnt-work-a-look-at-the-gastrocnemius-soleus/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4caK1ERbqfHkO_aKTwmc_jSkwbStdBXxmtdPVksUo-Wu905dKi8iw-jWN-k_7hFym5x8QMIo9fnTSAZtLK9szSkLhC8wW7qbzkpEcsmTIBWb9dWQAP49I2CAV-Xf-mkDDMutAuRUP5ayvACz_1PdYasG6q5SVTZOIG2snzj82C2k4T0oH3CuIFtySuyL3QhVFEQPZPfVT84lQ0VHk5Yxk0_g2DcfSpq7woXMjxH2Ev4eKEC1qAVbmL778jYG2e4PIIBhDaNId_k3pVrImqVHwEzImuzSE32FjNaPriml_40cqm_dsxWNaia_-A4Quw8pBgpGKo5qUmiId0KW0mq2BhZaoB7rO4tgLyzhaYjoxx5UhoJCkKhO4XygfGltpSZd8WKJVW4T79L-ubWAnaUCWNV3tdLK-2oqLmAxtXLuEoJ5NKR1EmY-ETdvxNsoDGG9oWEYOiFOU5bgUtpnr8feLnkTUOci-rxukvOfmTg7ufRzDX3VdEF6pOkzKxLklk66Ca7VpqXLTn3WoQZvRUQeqIFH9wr30VXWPQ6TWmZ5wcbho0yw5uNtqU89Nwn7nIrHBqPsj4OpCLt0mrcL-V_0kPR4CRVL7cDvByADRUharC55yJkUlqXn8i1WsCUwcGR_gH598T51ae_d8YoWobgunmr7ee9GEUhtVxCZ2mmFYwzDMuv51lEptyeB-j-mO6jV05KxKGdhI_rds0q3Ewjom2zjbMbc6WYTerVvJ2hHv6tQrWugIzGGgTAykV_lSAjUbsm_rW55dxu10SYMc8MP71HS6dYcNCVtbjzZc2x43-3BYLIZm1toQeMrEAIMzRm4yqYBvrsS9H__QJ0ohDQHbkTyhwsE01gAh_igPOV7sZnaAnhzXbQo1n4q1oMLo0Zmf8rbhLihm2ZjCuqoDUQxaMGGGklB6yil5fdNDxDdEBLgiNBerkCqmG857y1XFQaspCMGfpS7WXoQqu8YG-nkjbJAfjeQwahlXyJCayjOLy9vB53oAOVinxWFVDi94l6x9w1qnjPG_hQGjEiAqjhVjsbanWHhFdnWnAEhZtNTsBpkOjKPxtyaYYQZ2CSIkVAyDStq_OklnJ8SwAGMbQkcxkX3MfwA_Vl1q1Y0p_Hq0XeAj3wBz67v7sf0Zhw4uMegdjC4abTgJux0a_04eH2ctDaXc3CQUpD60sO39YMGzYkbjozqIHe1NYG2hQcSrBwAOvqnx5xewn75KQPM2unzl7g4sKBR-lctf537-IQczJFPtXJPTFARANYf66yRoS-gTkiBMxYpXa_dC0spvZBipU3TAA2rlQcDNrJyCI1T2s4cfHnrMiTzIh22Ii0CJnhnW3fRhAyAW_sAAq_-kz39e7Ed9bHdgFjsZawA_BtvwyO3jOSUMh_LpdB6_9yltkaNC9uxNf2Nymcc30oP_2Sh_z_XEKBI2OQlwOk1tp0DzR0WEes-Z_Co0ePtRZVm6T39tASW5iY3pEsA1prR2rAsw-wpLAp4ikt_UYSl8Y0-NYP0q5kEjqynkxWeFENqCjOeIuXnyUeOoE370tu1pAHii5PUw1a3EPLsCVH-qu3US6el6X2itp-WU5k1B9S92xQkNGygalS67PZveiRltrlXWXJpSJzRopcOLVLQv9IuvLHsdLXo9xMObNh7DB4KdxRNaLu6DdLYBeeAlSFFBAQ_7W4Xy5AQsCOnSxlBQlfHwq_oxR2_5_9Eu3HlKdOtq7CdEjpnVwiIcZ49wjOhoKkllTUYsDBFk_OxNdehhLIvTxJIuxT3tylrLjIduwXmUHBAx-2A8hgVO6Vta-55UPY3X4ZDhWsw6bTaHao3W1GRf7vsJnqpkxHEzN_IiwhFvZt985fVM5kB60HJyQeJvCmsQ0q4s63RCsVMt7d7bSS-BMEbQRY3C3vKflvdvrSI6LbNBP5wU32f6gb5DVHYOSEdeEUj_VWibf4svhnMi-BERZboVzySPF2ugTq9hN0r1Dprj3ha0U5Y9HY5do2qfWL2TbReSWkUFScEfVPvBtO3BjICpb47NaRpWyayLnVa-o75ZHxebktmZO_X3aFYJUW_mRDaZxNrcG5BmUuZNpTROt-jGTXDwvbRE_VxsE7q7mROLEbqAN8DjGePU2D-cnIMKl5zH-Vgzt5DOK6PG5P25pJRYmBR4fMzrX0t64GomMkJf_LKinFS6t89n-VB5TMbbrffhGuiVDu-C7Eg7QuTnoJCWMJ45urywGLN142_xvH_b_UTVkzeMiHPzz8czNtmrP4euTAatRthYh1wPpGdxk1VRTNXAQ97yJqaxD6hNuPb_ao1blOtghGnfWHd2Aq-A8bUg70jytFVRGX9ph_geGVhjjt7g0b9ytWdgY2RoS0Xlt2KskpZfQgNnYbIHQtkh28ptgUXTzMyZdjad0IEPxrNCDoMu5rSyTvy5m4vELbr-emLIgIxUEZnxNSNzHVKI-JNU2rqgs0iN0Lz9kvz3xaNnExcg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682d913a506980.25111817','','','2025-05-21 08:39:22','2025-05-21 08:39:22','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682d913a506980.25111817',0,'cd-form-entry','',0),(43229,0,'2025-05-21 11:31:03','2025-05-21 11:31:03','{\"firstname\":\"Sara\",\"lastname\":\"Silva\",\"email\":\"sarabarros.fisioterapeuta@gmail.com\",\"contactnumber\":\"31999154771\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/the-evolution-of-functional-training/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA42fKnHk9Elbct98mWx2nnc6_pLC-pxXUCJiK-MDSntHThwwzGNm9WQlZ0OCoTcQsIdBEDimz8ysx21OskjW_LICvzyhZX9eFoyqE92t0TnsYlcEZ4rZyeKbfREXDQNdn6wsJtn0WHuwmcRyrN67cv3QYUxa6GB_9dj7FUrjci2-mzbUANpF9_Zx4lN5T2SblCLnetDza-nouCVh4WisqLcXuoyCnM5uEu2oyzi831LHaIyf1FztEXtXAMsfHtzIeiIAatIb6z_H5jQXIoAX0eXdjZpvxSM5xRBFmURc1REXIvDKoZPjKfZuafGHOiB6hXhA8W5AkenIcriyjEiaCJ5I41sRShhyzv3zHMriYdV4EeHE8OaiVaU0EBMewmjQHhLGN25Al0-V1v0UKwa3MT7Ac-G6DNI8K7bkhLeyFHb0CFGXaR1erlBTWo5omsiQoHe4F5GKOf7Pn-PSd61zgb2Fgn4CA3PvmQ9mLhK_3rjCrItOnUn6OCw1_aF-CrrwL-ddRj2ssbwf-zZpv6_kzAjyjIUWATyZrMa7JmDK3r5931S5xvLxznTUA8AvVcoPKSn6MJFTvO6JgHbNIyxXPF_iq8F0cjRts5kHXA2DwPf32e9iF3yXSZjxkFIVsG_WVbOPdaP-Jd6LUB9PXb09Lh-wmgzfF3zlcAIqURZzW4qjq1kZdAdynQaeKOs5RRmziWX6E6wtg4uFH2KgZIZNlY9Wesw-QgbvTtCOlAccpKfIE9V5vF910IuzqOzZSYAiVMQ08HnkRzaYOQODih7hd3j9NweQz0x8xhftOon1MURkRKjczXxyuyc0t1wCE7nT03M6oMUnKNpvjtOYsSoIcVp2iVQB3ElTLnXVLzVKtuDsJKGeOAmiBXkus3BWpc_S2_9wCBbia44XGNNQCD6j2XoHOyUH18aZURxnol0lQmNFfdJwXrfpNzpdNYlq70c0wyu25VNySK_KKDQns1yptkXFzs-H0-RO_BASW0gt92XBaVLx5BQijBb2-UlSIRRs9XB1C3Jad441HdoMGHFPEkEpj8wdOnfJHvlPu3bdOHhv0R2419HjS3e8r_ZUbcHy-2IawfC821OMn-wRuGD-hc6PCkDwgcJfw-XbPNPONPCZGFyNBljC3w-f0TU9p71Obfny4raRa9eqIDSS79o-neovB6vcD2gSo9W3U1WPH6PMmFc1CISO8dG8qVYWU8fNMBr9AFkVs826QAqvuXHKlDaYgwhC7ea5svsO0foOYtzh85-LJuwZjTkQWVVZrpv5QlG5QGuYe0Y-9WdlYummmR86iknWXl2wIW9ZHjl6qxc6rumbMshF5OxEp84tC9O0oVqToY3syv0Z8ibZLIbSI65aZJcuXwpyrI0rK722tlzK4R6o8-mKITbVzPONj8UUOvJO4vXTjKpDjgH7cc6DKyQLlzOMIA88Glzxiy5XO54QWdCkCbzeZHZyFplZLvXB_SZNPQh5-a1Wc79A8FEPL4k4Y940Bm5uloG0fuOxYDxyoXrsqviVJ_tzoSYDC57LJVvD2XTkMpWmqNpakFYyjJ7Llu6dZccFoU3eF35wICpqenGcSu2DX2_TpXcmqNB2LZJ0OYOBB37iMzxjCsb0m-YaMu0rqHkzRCcB8Vvy9GYmHX_uhphdDJhwgShUtQ5A1uJBw55Q-at06kPTPyWo6EXmywxMamGTRufIzInWt9OB-RL4f2LubMAby-A13p48RyaopfFDjLxXpVBu2RuzvovkVig1HYMfuBqL9ZonUKJp0OYsbVCdjpwuJbdhbd8TcTBqNL9xCjtVBlSgKJvjnaig0dLmAVIpWcMbzo_OA8ek24h74KB363P4e7T5WL_nQx1glU2uWB-oofSr1n3tnQ8pTT7aOmVOV7haWCwXV6O3puYPEid8HBS9vM4QMH1jnl8hVYSpi4VgvgximViT5jZ0s0dUatLdxaDX39uzQxknt1hppKu4P4wEnK984fWoYBKfSnvzgGqUzOfGUTGqXaBmg1Dl7kSRNdr81H9s64x5J1WGv_JIDQ-wt_QJz_XqEdpZ6b1YiYPWbaLGO9eKqsCBDaQs-sInnHFNt9X22LlyUWmNRknv4koFWt0p5F0d4hK0rm2P3-QvJg3WQ0vwZdA_kJLlKeHGk9s1Y8ME9EuP2IGHLw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682db977b51f83.13184599','','','2025-05-21 11:31:03','2025-05-21 11:31:03','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682db977b51f83.13184599',0,'cd-form-entry','',0),(43230,0,'2025-05-21 11:33:51','2025-05-21 11:33:51','{\"email\":\"sarabarros.fisioterapeuta@gmail.com\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"WC2E 7HQ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/the-evolution-of-functional-training/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6-Qt4SI6NWveUyg8_GVgspP_UwaX848NEPokSLpvGedhGY1_I71G9BuAN90aO8NIs3i_AjiSeegNbb8jxefRXqitIptkDiUzDNyVyyGzzifrABC9te_xVm6lieMS8OOn9quS1f7ewhNHDeM1U4WWWa_90I7iq15pLryv11IXjW73fW67VAurqAOiQx44ywUpT8nGUO2Feh9e7HrwjKMvXOX7UfvC-ublVYTxFc_M_vXC9U-7HOwkFObQk-KDn80xsr15HgdWGaiDohzQwZk2P5BWW681dvsqeg8DK-FWaTPVwd8-X0r1qHWD6xpvXPy6OF28bK6MM1E0aI_GCV19axgoRsSSfMIiel7jES4dewbprnTwNx4RfbCcLUwjG88y_Iq6F2D3JEwbCtm2Ai6CwCwhjd6io3hd0ff3ZeV92eefJU2kkASXwfAfzTzekNWtA0hyBnn_hVbtMXuzm9Dasi5tYNsvmeZww-DyU0uMztW7UZjJZ3wBfK5MT6zHzM48GSO-HB7iIFWM-lLCmUKvKy26etunaqs37O5HGJi07bBCnp3Ca1XcdPjQ_pQ3e5yjLlUdd1dZtRK4mwdLX9ru1CnrQfcD_wUptaTP7aVorE114SqFGOiRFoZjDt5H41mVOa_ZQ6kIEdu_JwLXVFWpq3NwguQQTqJ2C1ufXOf_X04WvJVt8HtsE1BqXkO9IVQHtbmnUcgWBO556ee7iD2zzbpm52U6llMcLpt-vVj0aqXziadNqU4G_CZuc8xskE8bbXzqtiTGNwJ7nLk9Vp8W830eVO1V7hOpzhj05dYqYOFK4tUxs2vpwU3TfimxTc6MrDg6CIFFmZg0zr5qbLp-tJeaXSAsdb3ds6a4_Oz1ypyp3PweuTeea-DYx0lQsg1NFWvGGEt7rPk8PKn05asM5vD5AnLpoqL-hQH5v4MT-9qLSaOMXjbdZre5LFxwezbfDAEM6hIEfrtX1lstdFatMabR-CfquHCVhAl9SfPZ50ZiIfABzNIYAM92YHSZ8-pwdbx7bGQda2J0FUF6tBM_Ln3IkAp6xNro2EHanJgFEIWQvwaNLzBYgmn-Kqgm-7GeJWuon4lkzAbmsjTu3vUoY0QmuSa0Aoy7KKXBbNamIyG8ikTL1sPFTwuW2Kf6F63tv3GFwQ-9PnEj_AfF-Y4xQ-p6_NOAvnjslJq8MN5WDqNkWRaSsFVtvv3tDKxvcKdkc1CxY8wIlAIfLMPiUG2DaHDlm07QKt2wLezShjLqidH7fDKchZucaEODqIAwU8AoHiy6xw8TkuSQVt8UdSlb-dphis2Uxxg9oIAvZgePQf6hm_LsLvXgWX9cUIX1KdLwkmUBVIVOlMN-L00AOzQ6Vc8i8pX_EDrB7QqgvZsxxazBjKisG4P_LIwAaWU3JIckV60LOKC2YJRpsGWoabpFcnfgiOj60Y6louPlcNEhM2rsTVIPIEjcK4R-wwADY__f1deJCnUiwP-eOE3yOGKy8Ype2HKZyQg2wnuwlDovngNDrYKWrEtZSseqzqsBIAA7AGHuCBgyLo_Ebg415wiZPbbuRbw_trM3yH0myOO4i26mdRKOhXrcaZcElDugAsCk3L0t4dJBGtGWo1nB92zstVLk9v5_Pvg7ZIuESsi-6s-cr0u5iookUIXCFvWNEx89SIrLgF8uG7chHJN7P8vAvX1gEbRs8PUxcgAOfZ9iWVbxLz-eIrLM2revR-ArgWL6Xef5Ar4p3A9dQo_e8heyCrmPp2KekEvOL6w5u51DSzIJ4HyAQLtYYeHn5Qna7Ot_oWNRxRVeonSDPt94D3FouctDvrNLQO7duKJMKSkeT5_6jN6g5qwWuMP58rk2e6RvJcmXTLip9imOGyZ4kRfgQS_PdEKLrscWAg_0PiGTMj_vG2KcD6y4eNSBbk5zGbFHrq3b6P7kS2fQxGkd1caZFhEOqnvDrlBGaXuTr5Tkq5gI-vR8N8mkGc301GsAcRVR4vKr6_uazGuiZDp6Jpul2N86AP6RCkjyfo0v87puiPeMIuWBzvSrK6QlR4W6WdaCtQCmRCdYIgiNZRDYU8h9bvNNdyTqTNY-ISM5WY9GnXfOGUdUszW8KAQ10jTOZjMXKu2qtT6rmSiCbjozJTkqaQyvZ8TWwOg9TSQuoWdmfgWTiMz4sP355Vizm4hBpt21Uzz0Cr\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"interestedbecause\":\"1\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682db99f3e24e8-77803254','','','2025-05-21 11:33:51','2025-05-21 11:33:51','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43230',0,'cd-form-entry','',0),(43231,0,'2025-05-21 15:07:19','2025-05-21 15:07:19','{\"firstname\":\"Polly\",\"lastname\":\"Mc\",\"email\":\"pawz3@hotmail.com\",\"contactnumber\":\"0752584323\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4TZqFTSPi4SomnkEMKnzwfQJ1mLc0kdGB8XDo_zkAUAgGQ0aY2hpMhVxdGfcXII3AhKEy3EyhC666-WPRUeOP3Sm9zeP99KqVG_-AYLLQrwgtyz8kTClKtbI4BrgIUlbTlaqr88973ygSB3AdcGz4nJ5CVNLb02XqKYH5KC2Ial1UdjFRAakaYvjlLY8yctZutDQITEHu-U1UOzhiQaMlpJl7nyLBvA1L8GoA4b7lq3VmMnDbxVBn4EqH7ZzhGzcb_xzrhulB_9dbk7wEYX5VM7too2WCN5WiHi2cIeN7_JcHajHsui_XqRoCbJtT9Z1HknpayP80qNMVbKWQL-c8LhGQE7kkpTqhmjqqF5OFVPwzPMd1V9VOFAwQw28F49_B6xhMuzeUxm1iTx6APKMfudoqLtzEoxjSiY3IroLuzdMwnE2GObEj_6o1meWlI2dT1Er0Z1_I-q8jXgFXnKtSazg9ckI9SbYT6apGDA8zBYcj3qjTX3HFkclWsCiYgCEBL2DnZegEresLifTyfOYlCpIBlF9WxmaolYcRPPelEpnP8z4awS0uWYGFQbQI84gLAZ9lTBz2vVLLqeXBaqX9zA-Pu9-PMWfJHjOtQMBFMD6GgYHwnm7qjU6hUBXl0AU9Xdct0bwpCpQ7GTOUP0h3c7dCQ-Y-pmjVR_sdD0tgLGB0r0kF3N8CGLJq-RUJIaBW-uhDcbVIhyx_61rTP_V3Q_ZSB6ki7iU2PeDwuVv_xM5KO77MNKRWyMXYnO-fQKCGkkbRgBr29pl8TszlR_kuD_SobSTFEtuI589x3CDHlCm8_wdE2-7w6KXSF7LkrQYtaIvdFapztbY0zGGYlHXEAGXwnQ4yoTntu8pZ7WicvWa9rFAnLeWPSe71nldvy2dCoWfMTS9jrijLY5WHYQOu3OTaZY8kwCtcNtGkN3_FIargy9RANopDcjLQOYGHYD49BqFcXzeYeoFIaG-pf5OvkT9OBCKsqqJNX3YrJVjCcl0UU7pAnu0vrQNY6bGbx4klDtezy161ln4nDmqi_t-E3wTWlHjy4Mz7o8411ctfx-tJzmrwSSeGFn7C_2B5Hy15UOrUbzDblcYN0PCQADA1cyr9el0t46PGXNPoLjCzecTFwf7ZmnU3fj0rKqvurLYvO_CNhPlo7twFl9mzTaCjCtNTU8DWo9jyFcr59DSFdk9AIscAzsQ37B8hdOtIQDda2wleyKlLxFkTW14laUcRnkf1zr8LDebFAxU1CyI9phfkES1Sla7eYJOw_chWzfnhmhjEqMqJJmD6iF5Nw2EW_dGKHOkuJRaWXr34w92G0thu_dZUIqfYdbsNyy0Xt0m-DUJyLOFRo7g2iOFqubNcCB4I3BSUx9pC9aP7NZ_s9JRXhVndLENRgybwXfHbCWTMIf0n8HcAC3AVOTqsGYSToW0uTksoNH0GVX0vBxNk8NgyjXxIDQryRxX5a_hagzuO33xI_Hi-ebIMNkF7XbKnddYIBzmkgrgVUmPggp0qL8lk65x-A7TAl3ooHmzzo34ohCCMzQ-EliEQ4-wZU7_095X70Ayvq4Et06w5ntNQFxeSPFIYD34zwT76Yr2wLlR1bQBIkpCj1wll5WukFkFDWhrsgmZ0Jqu7wipMyf-tOfAQQ92NleVmEEINprM9J5I6es-7rp8WETuaHiRl9VCN2tLOfO8B1-IgM5HhtbZ12eSzYJZT5yUeFtND_8UfnDlpe2pw3RI706o1IJLbg7J4Ljf2KvVJ15s08ngqeNHv4PcX8ArupVJ6cFreNjjuQdGUMdwhdJzZli3_b1wxI-4C5sEm0oIaL5RMkmiRcX6DnOnmCxuL-pwsSlHjdOXOt2qGs-gjVuIxwB6XLrggieNV0vorRN9pbOjWfYRE8eCNYyLz7L_pP4objYzSnTNpS-8au4lnSMv-KoA7pk2MZX4ow18xhcuU2R8UIXg8KncIrjVFKexWzZ9SAesYkrQPmD2AqqCDwxqhDti-uAa7ckWFew6HpfcT7rNWq6c7rUsHBQf1Hb6O5s5L8dk0i29aEoUHXV5sjx45D5KYXJXdKaTfO8A8ZUvvNMhboqHj-6EAy9IFW5Qh8sQAp-MmOxEPNeFFGKfMsuVcyAsNn1ij70-PPCPTY1WHZa58RCAIotDyzBYe-AZ8qJorCUgFnyDRIgNBBAphgsPyXwKQWP15P7uo2laj6QAXqt2slW-__XYubh7XFf44\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682dec278d5316.34108836','','','2025-05-21 15:07:19','2025-05-21 15:07:19','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682dec278d5316.34108836',0,'cd-form-entry','',0),(43232,0,'2025-05-21 20:05:17','2025-05-21 20:05:17','{\"firstname\":\"lucy\",\"lastname\":\"witty\",\"email\":\"lucywitty@hotmail.com\",\"contactnumber\":\"07961751435\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6s34SU47RoeLpIqjE4Y6kWc8&amp;gclid=CjwKCAjw87XBBhBIEiwAxP3_A7gcTXeZpTyFqlLiSeE_3EUYGG-emn-LPuIxUf7-2-aQVN4Zw99z0hoC-bQQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5hrjMFY6Q_teiGmsbUs3Hg0VJ55_2E8ut1hoNfpipAkUi4wtHtL4tVWtiwbB8qp3Ko3xCJOc0ysjaEwughk3sbwnlsSaRKXhiyKJH7iKejZRtYYYOC5Is_1-19JbAb-Hsj66kFhJgsrY1kiaTlf0XgtnQNdKq7diTSvIYlI6Q9opmYhzmqh0NM4h1D_FRHlxtrNGioO4p7-Tdbk5KG4fMpqDRn4NXSp56VGBY6BMNUI3aX1THxVgBd-e3F2swD-I7l8UdOjC-762doXCavaE25ZkXIOLSStW7mC2jG4LYZlVZF3bqdNhmZSTwq6Tc4-d9o5Dlnat-XVjoW3oiIZ8BmWHRIOIEEOy60EfXjZDmb84fE9QvSoLiMIW6nWKsNHawEnOcRy_74-ua_inoFKo-GFE4ZnZp9VVeDzkosXG0uxVs_HMWF46UA4kCmHno-U7kjROuYWc7axYJEohuugQi7OkAN8BaTaQvagCc9hXC-CUkz7yghAY4aokbrna055yfrrthdYb_qIDxxgHH02mCRX0Vcx1dsUrAc2oxcJlbRCNAJcu6gerzNH2np-ZyrytgE8Vfum6OI-YR6uil4AbxzsqmDDayy7pF-ngtCnkqCdIT6CslLNlXDvCHexChotd5VW4rvqi7F4OtJieG4fU0vfJDwjQd2vP2bvCJQUw0TwrE2dSeytJgELAnXmG7YI_I_TIt6HogRKTOd3G3IoU8WNrrB36-cbvg7Kj31YuZqfMaV6sPXCUEmuTfQXLOaxX002SbMClb4_pQVsoPk8MWOHEQf3m8zckX87oyakNM4ZZHgRaYzvYL8qiqKGc3xSynA2DCFwtl06b7CQX6wnDmova5zgFpnvH5zuB0SiQIDLbvSEZGx_k2fNXzNNksU1YOsczyC9IeF4lly4Q-nbzWSZnTIgRR6hMjd-LvF9Ug1eYWg0s2Ek02edTnykhe4myBSGGiUvmtldGAwYKKTeeK7mZQCSl8lhA0SXsAjAUvukswMWy4jpxkZCNIE1N8IXSo7dSz_Hgh73f2UCdXSZuoaUhuCB0W5wko9Onr0dduDclGG1yuDkbSea4LyggE6wYgHrgLxc9Zie2HMeE7agMj5Le5RatH68ym77F9V2EP-noy2o2XtZmXsOem9KgtWHbH_kINiBGweHOE7q_vRXU4EOHbhCDbrDDCxu8PePE-IgwVvhWjOf31V2DHEWYY7IVotepfE-4AXHQ-jcod-pZDJ9K7h1qzD3hPInoEOTTiuiYvXdvWJ19sxafaGCudsgqGmuR3NZIt8SZwnAJH8op1Yudgmz1GCYznvmaojrS8ipVVoyFlVDzdiVIoqSbBS4olbUc9tT8a_WsLBToZ35AyAxnaOukwhutxaBZB7a87qniK7woDWckRoX3PTwGgO9jbWarWFkZk7Zg3thdCpgd8o_XqpzPeUegbwe7dOVqY73NFX3xTkeN_LbUFNKH0gwFa3o7QZ_5DiwC_KsgbrAUcMdtc94d6X0uZtvtshpiRow4tBTybLsuLCEjvogrcVUVBBQ7P-UHyUO81zmem2ZxPJgibGbPmwAovplCh7sxkOhG2D---t4TCHB-PZf4xEjRLGcique4R6FoF3ibhpxhYOuu9gg2THxH1q6Q0qHF1IEZCQxiKHiXRaBJCVBfdHSjhQJcMmlRK_W_6sNwQ_ROKmxp1UlIcUXZPzQvD8ThXHW_DgicDMmX1rUPOcLZyI0GoJSsfNfeGX9I4IBeOEyPkMrl3RWV20imhIDgpyXphpBcpLyIk13tUnV22O-O-zH2QIH9KMEFPVN1D4hiS9AMnzLQgYcW1YuEXd-fqhSOcpe4DgYzeM0EytLv_SiqxzhHJUzcT7YFf-vuG3TA7QPQhpkYnxwTxOV9-mmTpUkWNVtJ-7o7n2pj96T38s2KlN35Yp51CU0nTdVcdbpCFlXgFJ7rNsVR4wSsd41-QMNYWn4rTNw1u44weL-Qp39B-8xZwPo-wyc6G_MlaJ4EKKu7Wrj1hRxzvs9qlZtjAKUdW3t_gVw0w\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682e31fdbd8d64.72094213','','','2025-05-21 20:05:17','2025-05-21 20:05:17','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682e31fdbd8d64.72094213',0,'cd-form-entry','',0),(43233,0,'2025-05-21 20:11:25','2025-05-21 20:11:25','{\"firstname\":\"max\",\"lastname\":\"trofimov\",\"email\":\"maxtrofimov14@gmail.com\",\"contactnumber\":\"3470509333494\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6s34SU47RoeLpIqjE4Y6kWc8&amp;gclid=CjwKCAjw87XBBhBIEiwAxP3_A4ugbp8CsACXZvBosj4IXFmmB1pdTl5l8nGpbe8uajfzhwEdGavrrRoCgxgQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6Tg0ZSa12oRsQJwQhnCToCqzDFtDK1RM6krBGtPU_fRCaSNExTX5zBHS16TCEM7ZjsxcNAHBgw1YDQNweW5OcNvrlpeaO3AjbPkwGEmdWGc5_pU-OHLXAuAfSM2pWWa6glkJPV0Lvhq6CyoIRLFP2J2me13n38fpUgfaje7RtXeUcsaHrW_FxdbrePt9G_vvioLtYxSh3Ff3T1D8w24F-mFdaLEUe84VpOUOGVqaCtZNDXpIyREtpqM5FxPpIn9yHl-QgiSlqjQBEGCSfwjHWpM_m8gPGhTiR7LzC2r1bjKE0JVR_GSN24pR1aq5CKq1PZJUAODyeDLEIzpwPUzP8dOTmDiotynih7a3TuJSzkwJnKaOtCDmnjt3QuamzuL2ltD8c5LPO3LzGQc0eVp87T1Fljwnr08Mpz3Wq9MYVKQO6IUkWagFt4qvDD4elkre4_QLIuwgu5fgyYw2xCm2aVshaDmxNWU38NacTSrXigENRTzaDJTb6qnUPd9uCbYTNGuchO6ryRXK4Rgg37EK967gacxr1HyScGN_iHfNA7eGDcksJZHkuNELhBtFqoWtSl-Yv_qSzpDWtj5Ukx2J4Fe6LLG-qBp9Wbq4D12gmKNsWKFmakk9lZyA1P91ueVP7iHreNErPKZsw-fmmJDqzzVTPHANXsJdrPhUj83pp6_tyDir943rivvkq2uGPTOiQk_PwXfqWZNIhwet8wv42mX7Uy4Ot_RivQP8ZBOlALuDJ_cW2ZT9L-mpvPsp6Cwvg2D5BhRS7DerXA8BkpTZxKkN22CsB4vnj5p2s7c7y1-aNWHDvoLnt3dckzO485dgbGbvzl2ZFfEpxSt4yw-_Ig_-n4mW9XjXd5fJG8Ec2mIu3m0J6-3aHBLsuGTM7tCnPz8_FBs6OtTDY_31R3fk9Ty07p31tVOEyzZ4ikVsjfRzyPv4If30Wd3OxaYxaT7vAK7HMSVdPaIVjcKB1jo8koxkCz5dAlfQvEXGQacS7Qb_7hQKokWCrr8kczVyLuwrtptMemsDvR3_fO3bBTSjuFB3fhiFewOemQBFzFtBKVrAfWRCkUKOmAYfu5otIcHOCfr81mTYZEt3IhUdzhhwkKZDY0F1VPdnkS46riU5qumbCYybg783NcHt1ISUmT1EwZIIjiVmnaqluX9m8r-w0hHioNMPo4lNmfe-mu9VT1H58VAHmKSvpDnNplZPQ8UpkCVhaZkYTBdherJsSQjbr-m5B60s5IHBN-hL701Y_nATwYF8uifWkfYstO57B30hy4ljUQBrTTP9aZRgf5TI2bEmv4Jr0ISF13S1FADjN6F9xrwG120pL6a7m0mdBo-hQrWLF9ZJZ8u8gfX_bxrWe1E12jl-R60Xxv1x4O0pAkJ-FAJCfixs5bQaClkdKeWU8sjYaEwN5gTQ5kePPIfZ3xTCvaxzvLZ_T_UNHEd9hJmO1xyxo6QtL8CusD3QOlaOChWxEDRM-upJHw_LrSTO5TuQFNdHnpgIajf0f4tbhlq7Vb7AjflVCA5rnHYvw7NzBU4ogPDOR2cra48TKGO1R-VlRRZq4Me5zq_fa9pJdNAx48ZQDugyQOKg3b9ZhnxkRX1Nh_L9Kt62FuNwZtKj0uif-1L5nSgvdR45J_nn6MlupS2sIa9Mw2Ci4qIK0U673pXVt9jX-2U83ehhRBtYnkDenR068VjU0w3_z9UkVMprhZQceVqQWqneqekAEAwluhg7i1PfkksHsz5-tCWRZjbVwzjOHpjfpWktlkE9U9MRXeIq36NdkXE6qi8if47wUKkG9Lsh8CemMY8GrWUiADzpoPC23sGRKhmm8yjCq2zVTYn4RVppDhD7_xnRj_eW1A_gyUCivrVYZVbPzFToOHrBnz7bLvjQvbCytgh1kKjV8JmvrF2Rle_18so5kK8YxUcsCP_s7gBYrWqsJW1c7vuPEU5Qo4DSj9_oOgj3yqRdIhBQyhiwF6ZZKxCR6OgJxo9UseHLg-xA6vDtEpsnYYTe8JtSKcrnu5XcWcTOuBSmY0i1ohiO3RYXEPy64WlHD169mR6PxBX1BoQmk1bh2RZDUJ0PRvt1GJVNcxOQU95YeZ0dxLnGPM4bPD0b_xzgJMb9i36LQFGJWrdmhKTaea47Ka_w\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682e336d0f4906.31376642','','','2025-05-21 20:11:25','2025-05-21 20:11:25','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682e336d0f4906.31376642',0,'cd-form-entry','',0),(43234,0,'2025-05-21 21:50:12','2025-05-21 21:50:12','{\"firstname\":\"Sarah\",\"lastname\":\"Macey\",\"email\":\"sarahfootmatters@gmail.com\",\"contactnumber\":\"07920475748\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw87XBBhBIEiwAxP3_A75R7oQnzknji5Xlb2i_w4eOTiRmUOnmTJbWG7k5M17tWYKHHpLgtRoClfYQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4ZZA41237B5V9liVSJN874aYSej_XuhgWCINBTFoCRKnEw6yI4IxzIghmN18T1lISKHtYvdfG3MZJApTL9u6o0nuDGS537zF2cApyJ_lByRC28V7SiYNV5ErGfQ9GLWATja355A3-jfFdMmp4NZDHzt-FS7FpDEgjAwViFv6uv0AbyaYaW4Q-O_h4gP_NceAXkENk8mauLnwx55T7igZCaLnw6g9R2WsWd9osx3eT-0vg5J-KYhpb1r3WmjL0FrDElZiwspfTYhrSf4nMCyxUXAhr49xIp873IU9lRQhSSEFSyEd0xopJM5ldVq7fiBYqiaSzFuSwHIUM7DTz1_Yoym59PfvJP6RDXAb5w0XQvJ-vnnvmwrOaM3Q3Kgk7QzzG--G2GJn-eKfWvgOKz3dgnuQuy2R19id_CPmvbkOkQ72WnB4NDytfyHgpWjPImIRPrfjrFf3Zwq1iNLkdAfbCq_Yh7ovYZx0jJXM1mwqOj3i5yAWWkZ5hogFVI93s3-EaiPnb3dpMlFQFC4zsnHl-v5bYOKq7Xzl_Yqd8YQCKUjkWT3kyrDmIXryQj9QrpY0U8rk4lk0iF1YFfeJps42-pb3keAgC9u4ag7ytk2jD_W2geTla8WDIaqLFbWSQwUkzOi7ReXrGN12jdwJlho82iXt06BWEJAVRPPMq1NP4X0CTIfdP2m9xJrvGtyXSbpwt7oUNVLWwB3b4oSG5N1HaOAcOOg3W1lxDApUl1x-yBJNeEsWbSFoN4-kR4-tRygby1_dSjN6TSxb9L95P6t59xFemIvHwXCleGu83EZdNAyy9SdkJQJmaGbL6O901MHN6j7L9UbiBsnGnhQBW8GHqvY8D4Wry_D_ext1fuh4-BMHAcxF0ceHInyi6yHC98XQOG7b65V2PKo_AKtKUgZvEP3s6GshtxPFFVznSyhr2QBJlBuiQUEiKCw4PpAr3sbDTBRanaHLCHsschaVla75z0Zny7cFFwGOeyhZXWaXVUJfcVuJ6LWQpYi7I1rimPoyll6jlKk9-H3R4aIxL-HvolgJvtyJRY2ul_RGJ7HgpfyaqC6ldpMcQK15bCn-GWW3G1eFpPEVlfEdQ4hJL2xYvQZZAn-Br0t3uizh83hnT7W1V3ErWK5wfb4a008EEMm4vqtuIxevXHMc9_EbMF2ATTXytWd4e2TPTDxHn4IXQl87P5zp3TQ8d6VJPXJDwoApaWsIn7H9gQmk1k5dfZophdm7DgMfY524vWqD5i36mRLLLZg6uSo5dV9AkNBCN930inZCIhliE4hOoT7z8MUOh7eprw-su2LCkiT_jTmvLbZ09_y2uTaOhBLJp1yuOy7wCbjHoqyCAI-lsh1HkAagIevpjIDsLMPM6OqzUtLLgsBLPqBawM78rEa4FGBE8IIc9fS8E-DNNXJzlU-MGo_PHe3CxjP5sonpQbh3u-yRrcuEfk5LCqJ6aNTVtqYdxEcpFgn6i4mGII_Vp-HHfmA37H6kwGVT6IbF9hLL3GrOLELKBw81CgwEw6Ok3D9ElKP2ljlmMnT-KdBenFdLG-cbWP_s_pDTNS1UmT4yfuHKchGgnh2-bbAoDRCAT1BikEVcwWpXsGIJqeJrPucOq6UliUj7q1ADi8dp11pREc9wH_xfnb9JUDtt2dIm9etyMPao2VSsoUxkI6jaye7s-9tGz4HOxQkM6xfru4Dx28VN2Y39Ra9M0aoMIqeHnvd-LKV0xCcAxE5UAxiFM7EsP5oBmJZJ-el_nHXvx6XtPZQy0QzxsXrbKnC510p5-MIglOJwwr9I9ATx1rGp5uY6aVRIYAdnfz5djjWUEChaci1c1N10r_AgMJP2fD33Dfx9fGaI2gXFDaDgWWL6GmmISxeBCf6ukZBB-7MGOy0QUfLTZqz22vX8yQgqnDoSgBuSzPEiIsWFYNFyaAIOAW3eqFUBYknG-nF_AME6zP-6zQ0IGjhPRoFjTjyO7EW52xCZ84f-ZC3YLTfqWzwDuO-nikmIRq049jl9ltHUbBwVReSPmNTk11nTyvSY5Mt2Dl1cKl7-Slk8sEqZs6bUilZnfynOi7n9JQxBhY54AtTdPGGnpB1JJbn-FXK41I8MzsnNPxRC6jDJVjAELDSknmq6j3bM6DCgqbRLujm4y2Rf7FPmzCa9wQsTY\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682e4a94a03bc4.84946841','','','2025-05-21 21:50:12','2025-05-21 21:50:12','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682e4a94a03bc4.84946841',0,'cd-form-entry','',0),(43235,0,'2025-05-21 21:51:49','2025-05-21 21:51:49','{\"email\":\"sarahfootmatters@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"SO18 6PP\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw87XBBhBIEiwAxP3_A75R7oQnzknji5Xlb2i_w4eOTiRmUOnmTJbWG7k5M17tWYKHHpLgtRoClfYQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4sGm4bXZ4Hf2Vh7uKWtD3DHZ9y2-EeXVtYm3X9Lf45a9Wdh2JEIJWwVopREJ4JEVB3u0MCmF7Lq6SIDyguISPfuOY4n4PKBr8KlG5mIRUb7Ztck2rqjJzXVTIjTU9kfpSMX6fpcSgEQi-oiPUqK51-F9nlnililm-2GRry9QrydtNRi_tS33E3xCggpkeysvuE4AqUJg3DwIC1QkK0rmAP6ayhRd9PffE8KJWrAAG0ZGsZb4fapdBvK8WxrHq8NVL0cZC3swhG93aQS8MwhgNLZ5XmOAPfCPHeDavmBvizVRNOcIPMRMZqmQrIueK7QajAib-Rw-9wWMsWXaRUw-2dzVroWGRWznrGTbukj_CvzU9Z0BqdjJ06XRpZ2Upt_jox5O82LyBvoWd3HCOtnPdN6f11YBfUFgOzbn90oS1KoXsNSkAs1cjQauJYVF60Cz9stT8DsEbqwb-Dq6stF7yyI6Q8f5MZwEt4dawGQWKToTPLeOebpOYb5x3CB6lYGZtO3QgaTU8IyPcwNzCACcMK3V8LZlKmYlSg-bYFMqvZ-gKcVKFLev1FyEfSBE3oy5tc_MZGhsN91SFUNjJCa582bPJEwShZ43aG0gFp8szwE6VFcfWcAy13goMlxa9VxGCElQP8CAhAWBp3A2K8Hf899Yrgfy7yrzxegmhTry-QdACrb3qBcMGWCGfua_F3o5kYR89MYrZOCOjuQKccU032HDFzQritgwWvcM8F9PaKOd1Ujjlle9k5_w1Iuk7uRIbRMkrnq-r3cgs-O5TWDl0K3tpVQM0oMxfS5cwUYdcqrpUGZieNnKt94PehxYaJXXYB2iNE3CCWg2Qvda9s8gzImgFSdvDRuyEmqrtbzAsaLGFjmaQlV03nJv87GWZCjDJFawQbRvfaKPdXc79RmJUztwbWIA47FT0D9D4Om-6jJKjDFsrpxJ8jyMtKZ3901-RdkfMXLXeEB1ohDrnypoQJlwXS8NuY8LxTR8GK9NKt5QNn1F7HzK8vFikzS7B4TJMcEYAv-makz-mQMV8XFlf2UhLFrZLC37gUKnzNqZ5udws044pDUHo4WuQejNYBuPleYc1AUGqyIVeG8F5ATQnP5czUsuXA60xSBU9192Z47fB4QWlStG_k8TGNMKugYtl-FwadPdC_h3ntp2NJxiwC7v0QNbfNX5cPOHNsT9Ejmw96_beccrgqUxg9T-lwlbVk9KUDIxhB0icdoSpUhbf3rQXobdRpDPRoH9XLrBr5XTzbdYYc_zq9b2e2luz2i3L8Lejt3E3zdDacbU-JhOJAw9tzCc97WBjrZVFw_52WKcRA11eyAlNMkduSO1PF_dK4SFXP93U2LDlFcnHvuLmcxlIhMCHvRm-wwyg7IeZvBqpIwzH-n6ncwE4DOyOkcYIsV-6Gsi_w267OGtpo6hviBwm6cnRnREbtVp5i6NTTdAu59G5Oh-l33m-vs7aAUe-Ft_Gvkv736ihPCw5_daFxbFWOJmHjumUr1Ivxb8HGYel1tbRF1DBk2zl9MFXyaU1mQPYuN6gkEcyA2yj7roAf2XbGSZzObdIySsFBPHRTcwf9GrPXYizcEECdPPXjMW-u80PU4DBBFT4-SaLwq6dcZV1Jn_jwcNF7Mi1pd_pLxwAq_vi088wIqEoAqV_muuWVXjjksPc6CfFAAFHQodOxXx5RckfnXv_07MtLNC7f5cEHm0zMhr2-eWYjgkaVLEgjFZh5duGUxC178J-b93S-Bwunv05Jr_KjmO-Z3TOoD10u1ZsIIZ2EtqhQJuEkLMZ0K7jKvUm63pNUBPxs3YBpe8U7FvMYcS2XDu6omdQs36jk_XlwTrPEkzvG2GN2powzrfnJlqEF4w_PNPHy9SuGaoSKRKxKjYHXaTBquGbMDByb9ZRs1Tn_ApTfjoiQnzNx6cAp6VDbccnM6GjWEYbQi-Baje-xsqV8h51HXd9Tnx5erZ2SyuFziM3nqpMVY8EQT11uY7Nyy_T_1UoCXlMi9M221s3MvQrxsZIMzIoar4k57n1fQ16n6I56X35kK45xT_PGT0QBowvk1e3oNW4Z1GeqAoPhiopmJhapX22UDsw8M9dy5xkOKZ539ikHdggcZPjZBRyw5gBzao49TUmsOA09fZNB3aoRBfsX-FRkMDG93c3UgJe9dJdvcn7WcSEvO087VOmu3drZ-HPF691b6mrl5Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"3\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682e4abbe92283-02163739','','','2025-05-21 21:51:49','2025-05-21 21:51:49','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43235',0,'cd-form-entry','',0),(43236,0,'2025-05-22 02:08:08','2025-05-22 02:08:08','{\"firstname\":\"Khalid\",\"lastname\":\"Essam\",\"email\":\"khalidessam140@gmail.com\",\"contactnumber\":\"967774753344\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5moQQgYn0hqGOTPpgjwz-Jw0a5hAjY8NIhb1c_K_1saa_W-0zJEeqX_Z4ijHeSDYkcxUh44aBJdsv-lwdkFdM9NYX4wlXsbhtcEU7pP1Tn85T-qDiYjo6atDEXdS9QFIImb_LW-caY7QV2btpYcd0dZt6p2nDNuidcfUHDs15V_VGOvGj5MTzBjlAja9qXM2-pqmCb7CXWx4wUCCRHAJQ-t-83vBzcLLFRhMESbBRp6PLXUZ1fV5AW0bHh6YIg_-FiLwb04jqLimfaTlXLpFQj0BX4TWPRTfwmrC9W1K_8SdDFdeK1nW-M1DPJ_gly2fCFQ9wGkga4eKsGXSyWRp8zdc6K6V22pcGBlUZcRF37P92GmwZOfc6LU8oNJSFVT4PezlRZtWlxNIAnoyWHT8Se1j4fMXHpyfO5uR2nugix2OD4hK_feaalJO14cExEwQNpHVNH_Cm51z3AraLIsD_CkkLB_akbh1vkSZaKgphrJWKPclO25DxrMhABg1HmCb1HTSTNtfA3fW-Ouei84buWTHWyDbd2NZIw9Z2AyPy9LsN6aOaRjgcbCedJjT2F7SyqTEkJl3WmGERXtVKK2HOnT4b06H7NrFsH-1dh7YtvtB2_f6BU25C_mvxP1XQK-QBta-etBS6_o0iTEGnB7kMH49lL2wH6vbd7Pyxw-qhJDSq6C5Djt95YQucsWFUavAew0Vw2KjvmLZ6_i9---mikViROzomRSk_lTsVkqpOvJm9dWsFjAGf_NmP-BZ-kBhAUJZJFubI87Y6UC7VIAbpcNNiW5Surm51azkL3VSGpYj3lHZG5AEnoPWQDuXu-XSOc2Se87YTreWKwWQDNxf5eZxejjZglhYuN3St7DDAKHWOzp8zPEtf9GRSvg3uIICCGr3dMhS3WUnENqgLj8bA_oLdWq1EekByqCKnB8e575pm50IvGe5z4UrzYFd6LDGzMrsvmkA6XwCUCjoGnIZPwSG0-lXjiQqTLcsUEJfktwPUgyPHJdb43IJZotQPeE1-7nYuAA782v76AThBDxgRsASv9COYcwxpitBBTwDbSO2lfIb8_rXzVI5sloS2mljm6p0shEFGtaN0_SPW8CS6uj4tYIc9Tg9IOXAvq4DMxGpVVNcaxG0eLmUMuj0eJluZPl0f5QPDX0KiBmTq0MC20ysiBC3wCVYEXq35pgPeYzE7RPgY3bCIDdTTI7B_BPF1DBPkjK1_qVFFJ3-fBHKapI2Z0n_tq37jH8j2r2Kln4_RVUqw5iTHo_0ZQTWvmHArGbGtxaFJs8ciwe0_-Dmnu6puw9KXwYsnff6xdWaeWpghce0I_Yngj-5go53jCDLYvIAlh0L7CouxkN6msP2WLvNs_qyKgxaWgx-NK2Ood-tZH9H_CZyxsNTEGaog6yV2MA5mge0zs52A_SXC2m6C4VfnzQobY6ZuLwSR9aNRFC-5D4PEQPJ61960ctMH67bF_1fHLeIHEo8-9Bs9hna9ya596wUW70RwU64OtMhPqPa0ITpzWuL4bflp098-hE-UVkRh7j2IN2Fzavfyab8a_CbGal9yF7Z_9OFQDWaEAuXw2r3_IdxmLRwiWDxTW16sOsZryhoI_jxymhYwTjHTH-zmXCycCLdsmptGt14oAdatp2JjyRY3J-Avfj6fB9hBujFHwmLhxYv2KoQzrhAA95_CX5XQrNwtjKpdn-FyHq2M1W-QpzFn5I6aaJcqFODjNyqxHRLkTslqeRaRBs-3wVyHOasb5lSiDKfcAfTlnWY0pZrmcLiogNleWH6G5x_6QWi_VBL7pkhLfokvAgA9WTdXkG4J_PD3_jgGb1pWiKcPVS0ZnJ9YVtSe7czTI5qnRAFgJB4ptCUt5mQDxNzSwS6ehM0GeDrSExGq04X8s7f9DgpC2Ot_d6OC39nQs5ENnDZ9v-MtrbotqS0XZ1j7z-QuRnOqeUVWntGfnHRtYZh5wonhMxZ5-Tx6kAoQxJRjLVMRzmXveg1bWBHxouH7wqKhS7sCCNG6SpPJf-4Qa-0BgsyaE40sOxaoDhNdiyS_26dpp\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682e87088d3b86.36372841','','','2025-05-22 02:08:08','2025-05-22 02:08:08','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682e87088d3b86.36372841',0,'cd-form-entry','',0),(43237,0,'2025-05-22 04:46:05','2025-05-22 04:46:05','{\"firstname\":\"Paul\",\"lastname\":\"Verri\",\"email\":\"paul.verri@outlook.com\",\"contactnumber\":\"0429935971\",\"interestedinbiomechanics\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4BQhdDnoldWo0FxvjmqxyNESpQfC1WQVF8j7oIAK7Havv-lWABKXmZTfSPe4bF7FnMMgSlMMDvAWNybmpUoz9zDN_N9YaTmd3K1B4i6bZrMwmOqDLmTOH0OECaD7EAKELs1pBRyw6E2wcK0TnhwBHb3pIus8Q9SB_29YpmjQthPOECt5_b-xIfH_u4K-vn7SHW3JmQvjsuIy3WSRJQjZb913NOB3v5MixMVfk1fU1mcP_tlkGp7OWTGmbDor3CqcSTAr-w5M0tTMesqw9SyIdW1UOtQ033jd2LMFRnxw1LpnK4lhxblyZ_WhQhPH80Bdizq3T22Lxa_lei_HpRSrLbEDD3m6nFpamsB_Mlbpa7BS1-vslPA0EEv0OEHSyr_prKUcW0nOZZCdFlW_vafzBYpvDau4mPPbk2vAvxrVzTFj9ZJFWd5hZe0UeBRPNpSKtjteXge1D3vFMyf8_aSq2eej9hVL7Cl76lhQnnzt674q-J0sXNc6dbpSGB8OyNbXikpp-VMzcUwyg0qvw5FVAKjJiMs8bKXLUzu09yrYhNaOA9CMkTCQAhpex4egk62xtN3TMBNSq93Ebo59z03w68vtXNCO8ohcPQFMhpyRUn4O6Obudwaw9KxLdocv038OzScLfRYsVOtxz5wFFpgWZlxbb7cChYf0Xuuueygpi1PCUU_2xT2rLYr7-8JPoIDEaVXhaA0uwpY_KpHmSdGB6alRy2ToxFRG7h3gZEF_R8tnzUEOgUkHZKYoOcn4H1YYUm1obF2cG8Oaw5nDPQ8NRoMJFauINJmKyD8yqY9rOI3s9xzz4pArr0nKF0PGiyk4GNpOP7_uzO7dMMOVA_150RRJ5Re3S6RtmUwWyqiiutQJTafFkmWbWF2cG3XcsFPZIL4hXJUww-qLCBzpWiwaA7oyuV5h7GLBYMrbkTzUDy8NSR_PdTa3v6fvHleYPanYym-XoXHE8DuSFMJcpB1q14xCxhAw08FhE95VkDRF-K9T-8Up04OYNJUiacXKLVh2BKz8w01cfxKvUClePyw3Ur39_QTley-TB9SVC8gxrvyikXyOTBolcxFXWrr3h9AHPkNBtZT09dFppEeb174LKjgCs3uwheJCn6EwdYzNPFORA9ynFLp0v5EABk6hP5hOtRBCqTJ-Dv2k295XWWznQXuVw3G8pyv9gty9mmZ6p0J-TxgbeK8XlxTdPD0Srat_kecQIjOFIUBvMcd10CvEtaejq2yy8v3Wns-TqfZ39CiiTedBQjBYTYq9SF6vQw9RQIh5muAN0Q2CWgxQdNcgh4XAa6DvJRYOczuIBxeiVeiJwQ9u7foDze-IGy29gLctv1qcNfgnW4pBsI-kFb8XBv9QlXjSOLLIB0bvbS-zYTI1PhZc7h2rXNWSgFKkJ8QHth1Zlp2h8IfB6OxfKdBW7q1uBrrkjQXpzTLVRla61jYASB8bojX5uCgASPigq_loJGkXzTgZqi3p854-bIuFojWZGhw4VltStni13AjDUKeYQ7ipGcvqyDpymD53XpD_nKF2KwZ3FkVZIgrayyWALzRk6Bg7ZJk5OqGz4Z3bdfwZ9FzjhVYYVNVu_70RBprcPcmkSv2nFrz2R1MExQW1t8jcvD4ERY21r4XLlpKHZBjAS9ehrMHPw6DZMG3tLXCV7LmdCSFSvdNpTX4W-W4yI5m6F5kdqS4funWz85m3CYWVr2lqot8zgE-tPhNCsK8e5BKuKGOEvi2nIcWcOin1lzpWBaqtio-U-K5pwJs9ukm3Cy5hUB7nwOVZsEDwKNj1FnPFOXo_XDMsNQPLTGiJ13LLkVAqFN3OFRunXlpRgL5SstNpI_Zcrf-HtRs9tZhOZqCabETVsy6QgPgEl73KiE2yykxpXWb1IoFq-7uzoKU4xlGA9mo1GgMXuzUxIk1GrtCf7nayKvLFgUNdNT08zgQVBk_bnRyPaIsIl7XQ1yu3Z3v7E7XnXSadsWacw6JDhUzaQBbskEiih54mOllxypcu9UbWtvBxTtkkJQfheAzggEJMFaGwbrM3N2t0tcN_b06fkgrqIXcUXXLFIuzRvNqsryAg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682eac00eb65d8-54089268','','','2025-05-22 04:46:05','2025-05-22 04:46:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43237',0,'cd-form-entry','',0),(43238,0,'2025-05-22 04:48:53','2025-05-22 04:48:53','{\"email\":\"paul.verri@outlook.com\",\"interestedbecause\":\"4\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"2372\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5KGWVGMSJh8_F30XybgKRmMZzXziKCsW8Jc4UnBURUbo64M5ih6DtBog_9-MG3baTu1dPwznf8k1ZCCAwYEKDHpg8syGLhakQdCQW5anQhcX7j3EyDGwwZ8dLG5Bwls83jJhgtq4jam9vwUg_CSpOrNN8vzmjKchZcGVwA8NNvGwmfLMPccIe3MqLIziNZBtS4AXYGf6nGtiU1rPyYsPtk8fKw6InvdD8rVpCjyiws-eAFK3RmuJmrywv66Zx3BNLVacJRSmLmzTgeL53rcE3kn9dgQMqSktj6qmta83M7r8wYfdWRsMUTXAZ37k4jMZveO1L2tx-3oEx7McKSe4mZR1n2C5r6epdDLjJvHPJO-GCd1UGysye-iIQfJFcq9uAcDj_gQU_Uf3vxUKN4WR5HgvaC74PUC-1jbL-8ulN3hD9coMHT8usKHdvv3heEarph_Qzbb2xcPopwyUBlIi-xUyNqi_viCgLDyeQZi6o11A7zZOcF6tE0YTXT4DLy71XrrhaFB7ukpLn3sim2y279eVgayJFNAXlJCISy6fBFAUrhaWGN589gjn8ie9M-MPKYwsRkCml7Ykgtw5ccTwPK7WMTbUEv-Sc-4NOfQiTbyepmM_BaMlcGCk7ITSabXTJvhhF4slDjdPq4V0ds1-okDWILwk2AfW-cV-tsGbFpTlkB3ANirPpmSDoMvLSmMSPaiJbFKy1c-KfXghbQF7pV06Gqd1_5Cq-bTzIsFMD7DTBoBrspRtO6X6srW_4260wS2r16HtYyRC2UuJX80IRthDTTSaPNd8oY8dZYxBOu7qLJSUawM7zdnvZuY6K7G4Qe7qUfZ7OVWhLlKLdAV7wAIydwB30p5E2J4bKMHy5RUdri5cIF2sNqLDgntyYGpfQbQzWs5gXlp5Aybot4ipJ_CG4lVRp2wbKZ0RaObB42yS_DSO1gawFmnkBgvuGYml5_an2NIge5U8hozhJcBUDFi9sSx2jDqzqfJm8nu9-TTL-b7vxzRzkBfVLXXPwC5qtOa_wDDi99E8rnwJTsRWstbv6HcnR-Dh-6cZfD44E4AzYmwsa6PtI_LF4vgb4-c1OFUlVb7BAb_Me2nEF7XbS8tcjDXWvSCjMdzqD6kbnBJ1a4WlW9bE_nJVNQdleZj10_8TxcxQ_iS2UM5EH02sF6bKnyQRzh8mIt1iWo5BPvb8hOHWtfw8HYr-zCr7C_nAXSKHniBHJwwwwJdTQ3kvQwHDOyFJ0CmJHsw55uxyjlyi3ayBVXkYq4XECcLqGOb8m577RRorg6uB0349b5BLOqcOFd-p8IevTev5tEe41V4vLnSBZ6Fs-KXXgaQI-gG72prNhWoXxpwR_Qwy-zLw9tH7GpHo5WWCfBYljTewUHQFlecTTFa1k_oiuTLp1xSCca0Q0XvMFUQToewpB9KKjpykmj0x_jLF-4HFT5bObPv2Ki6aLQukKUeL1RI9iXQbcrx9EeuUu0LegQzcR3fYYsORs-j42fvPeBaJAHwFFyB6M5ZT22U45TIWgW-ZKMZyqv9qmW2Z2jOdGJyZuEvzd58JH4mamVu_FtqQ4AU8OgyK3WR8lKoWyyiTPZwoNj3Bb56qYaJnZrGFP_ROi2G1tZ3a_ympTdOoaaKWssUEbiNmrMHuFN6E1GBLFtlF6V-oqXdfw8J4mpkzeEpSLriMTVQoEOit0jRrr4SvXRDzFFyz_XM5avQSejlmaCO1ifL-DL97LojfnShm8h-p1knetgL5thLWTUWqGke81gxo8ZNi1CDofijWPQTK1_wHWGd9hoc29Bsx8H8zi3-2IHCI1Jah-KVYxGWBaFSidcTlTD2xKMrDVxHQbWPxrujSpO5xSSF44M7gpUBWKGTYF31FAOHI7IEKKQcZSt562VJVLBd5rNeMbIQebLZy2XFJaCAurIounjrgXRMNsMAHw-IRW8DvyQcs-abwLcRgAON0HQoAYbWZFA85L7SbXaxm7eAGY9WOVIMHi1d_RFAvpYjlKPMJ7xG2714Vh-3vvNX-Z0fEE_QR4x-lUxgMz7zjV1CpemGp-dzbMG0E4htHVasirGDIhCnw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"0\",\"employmentstatus\":\"2\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682eac7f4f4bf4-26134969','','','2025-05-22 04:48:53','2025-05-22 04:48:53','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43238',0,'cd-form-entry','',0),(43239,0,'2025-05-22 05:54:02','2025-05-22 05:54:02','{\"firstname\":\"Veronica\",\"lastname\":\"Scott\",\"email\":\"veromx75@hotmail.com\",\"contactnumber\":\"07917104113\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6YiCHS2tnGPpbMIDNwYrUybVr9BhYzUpuUeCsvmOP0nn3KHFkDI38Cozy7fHeM8ZmhSGPfc9sZZbyR1wWElLJ8MOeZjkp0uIsE-QYG7nrsHXzdek_Vm3TH_PtVf2TLcWu6b4wQtnamTYOpLtH9lkun83Ewg1SkhAenQPf6LD9YvGNZmyvTJDWnzFtO2618AgKK0pVgNlONcDARdAWMTPc9RW23Hz5zf8e2AgF6zxQCngb8TKZBEnvn8vrz0-5lnvjG5SujIN36ldPkZI9OTDadAvbF0mQF5ezeSEUm2cLbYt0e9DPPXtaGaOlVuSYUVn0NYf9L0cb1dhcY4i_qMnoZV4V7X5gliHEmziGbPG6DvjWNbNHvVDbwdPip1G1FYbXoCDrmDjeuBOSobk3jWlUruSkklUO-FYvNk7sAPEE6BI5vbE_sVhXKcJR7tm0_AAVaTR1oh6fuBgw86DMYUJbTh6zzx5CG8ym8z4wDlWRCS1CMLxzY_NUP7FhjHT-l-5tgZkyiZKuClq5lKCXyTgwO-C1-m_ulsLEAC4-9WcKyVL46YBOOg642NwzfGITi3HNfztgP9flKUdLDRM7Utrah2q1InZwMdmjMUTJ8A8ulni72e7lA6aH65Zw2dYYJk_ymj7XCxeER347z-tz-7MKkN2EKTcrvcJY5__S7ZdCqvqt6xzBdo5axVwGDTTwigR0vE8vFJQV6nMGgrMbvWNECMtxgpx0-84CJry7ppoHmk4fQENLEieZ45PTeXayYahJD06ZjEQzuFBnoAr9fhwpmpAlp2-KxLdhwxeZPid4285E67aHJtmtrxS_DP1QXtWGCD5MWjvYnPSmWlhyDMOGXzXO-JNp8-0ujK6U55eIVzjV18OXk5a2wrrwI4yYLHVhlNuqJYKZ38Jku8NKMb-h5sgKPsijA4PnMZPzdvCSN-HHS_UBgCQPq35eH3cqlT6XNp6fcPfvxPuCcagGAkhkmCzBsY-nz4wx6L4rj8R7CC-QT6SKORANX6yrAobrcNr2ylPxZwAmRJmeTbhHUCjRY7zR5UwEs_BBCGRBh42K4QOo9vbkx3UykQ1-qO_D1e-0x_BWtDXErZK_u1niwaSXSpY0Ov8YAEWvKGrsBSfp4UTZ2ZjDlgOex6UD2XHMHL1bOgHw4w-BgcRzKaB1CH2TuFigwrDiT9jtJPe2BZ3k7uDGhvMEGkFieUXIKfANX9_P4vIqathgS3A6uVJVKu7wVmw30eg9k19-gl4DU4Gd1G51IvgMe5JMJXrBAKnSSC3V_vxhx47erRctrf5-7KWbnP0Wm-DMIPYD_VSf_EBfAcJHnuN4ht_aywwH5d9oH7X76vdpP2H5E_dT3MwaYnOUoWX291VNGz5Q65SVFRtNE9QC65Om0w4Mi3265eUcEo-T9-KII6ZrBytV5cAgD0IPG1MUcFrlJO30ZiU5TPYbM8pjIiDW4e5uy-U6iqTGnVqlY5kMYS4ji7W9bbSt015Su7ZsfwoUAtcrDpLcdkMQq8f81ffVg-iIOrZaYorVcO_3FMJ01lpA690PpPmQUCm--CQYeslM0gW6Wox0mTvdH8PAHJpF-1rOa-3O4vPhTwV2acyLPIeOpMgA8pHu0rpnPbWmDs-IMCXj_xaui8tSPgJDVfDVUnC6XYRhvwOhyDFRYSZb_YZ8Q-f2cyoaYrbE1NyfHBDrY3fZB2nujH04Z6qbh3QDUMQjNvLHc-OoJ9GVPA7J1rYnSjJj7tZrCggb87S54FOa9BIpXOIL21WF9bBAhSW9x8fEZOdKFiCWsIsDeKAJTwUu90gNqSXVPm-XsHV42uyu6CFFITcE_bizCZBeWCtd20GxWPHtoLa5OCfKtnyrLkP0X7Q5i5F-8jZ3JsDi4zvn7RXMiRbialY9UTUCVsBLVqey8AKsOvukQnm_Pu2I0gWxwrZnw381hwPd80TpH6Al83V7nVOXKofyLktAhY0xPOdg_AM6M6-EjQycjLvA-5lxKqZ2Uaa2r7RrXWeK7tmL1Ea3ITYOhDdp4zcxMYNam2miHGdZyJj2hXKZlsSFaepM5egrYcJr1UOK00qh946VAAkt-fZucAPHVCC22Km9wryIsK7IaM2OWBCpExSnP4WFNv9dlI4bKiMYTkegDcge_atnAnr2djXy38h8bJc_F69cOlVp1jTkdsE9lATfYC7t5Hfge6FiGKR7gI7PLVw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682ebbfacaa350.21395064','','','2025-05-22 05:54:02','2025-05-22 05:54:02','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682ebbfacaa350.21395064',0,'cd-form-entry','',0),(43240,0,'2025-05-22 14:09:37','2025-05-22 14:09:37','{\"firstname\":\"georgia\",\"lastname\":\"bowen\",\"email\":\"georgiaabowenn@gmail.com\",\"contactnumber\":\"07872185894\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sLZqn8p18k_aGhzgl8LPSuH&amp;gclid=Cj0KCQjwlrvBBhDnARIsAHEQgOTAwanHRdrYvPTF2TTcal1kqw_uAk4Tfof46ClG2E5ppAJ1smYrPBAaAuMTEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4A_sDq3iUbiIoGJItEcI1-0vyo64r6oJ3Va2-ndmJvjxX7uM8hWgn2EMu6_odbefHMf-CumfyPYHkeJkrCmxmCdoR3-eR4CC-EqyufWeUpAsNlBbcGNw0jwdXiYJ0ABFcog3PPjcrhnpwK5BuCs9WNYP9Jjsfce42WX1tGtlcLYHnci20po5HfS2LcNZbXAS2Xcf2YrrNBsDWaDWt2WRdRzSVGPYjSkYKKHJsUesIRIK2er9A5Nu-Po54hawNGpBwZWCVOL5TBul0CWjpk1Zu-qmbM9YKzsM1-HU3LMwFVm8SQbRcgST4sxcdcEhno-cSJ_Ti4gkkXGk6HPrzTlEXU70XKg5g6IVFEpwcd3NKURoTDQGgEFti1_HS5M4WnztMU2MTmzH_C6z5Fu9JmXelAy1Et9VLCFvrM0jwMXp4lGVKB8vJhUmt7O_i5Jr0XuHGbgywVdIm12TCGognRArrLwYs8nlhvid_cThSLvaXVbJntvVML7IJOViK9hxe0_sR8-UNKkdXTWQu49l3z576grLxEN2TdKOZ6XZb558k-LboW8vb7TXkefXdFUGpUsbMx3tnoDA_9aK5JDPxl00YpFuuJ_bJ4Hu8ZAtbyT6tcyDsqtgmYrnya-yUv8YFthQq7ehQkvk0YHk5DeIP0UsLOp91mtD8G5P_ZwbPF74zln0IsDBgZbYqoFeIstTUWxhlwDqCxd5gLR9PvAVbOPeb8MSQlAzpi9DVvNoQl0fpPOezfoeOmX9iU81S6PhP2Ew3zsRBEqrcmOT-jqeRvX3_RZfRASJEMZMb_bwRZRJz52oJdyacGmFlmW8VO5KFxsIcepiizqBsVHNl04Kz07pzDHZx2ro8-n-QwKjBBfIXdTSRimkHRVG4ArXJmO9ZRwV2mN6jDOB5OKSRy37Z12ZbYY-83S-CXXILaZn3_J556JHPvAbz4g_CIsyrkJ_1YBuwPtbmSIzvJbLmBGeE0xKopIfLmZ86e3fm5hcSlrcRoQgE6AA1vTY2FXFP10KhO-1YlzYO97-vuFBS6zLx3Hf9HQDSmmcp3RUhriMI75EUU4QcY7_jXG63uo_ThuwfyKT6Ut9xcj6B06SxRg8L7Zfn3pDUZF16ITHGs6rGrI8JSQKOSKd3rwhuKeiQlEiB1Rtp1-fvf9GFOfVOnL9XdktYfdQaGlwrc5ni1p7_dAZ8m-zS-ukf-eXrlcyoU8hyacm2jNcdP1gfVSUmdYC9foSQYBgKKWl5vsjFYNPnKe0BWUy1e4pI5E6QQ4jV_edFTWw4wDisLfFng8piMNeSbsJeHwA-zjpNf4Nlyvzz63zVDopWGp8JCzwX_dXSpMLto-p_VkB936EcwXYbxInc8SpwTWuaYxje91AzBB3JNvZOixk1dnu8pd80hvXvTO4iLa-QVomZMED7Jjv3PubppWFkeJWmur4faw-NlQm7TqNE1iuOi0NDq8R4qYtFd6c9JQ-ViYFiJvxQbJ1r8E9j3cYcMn74s6JMGMBtBXsXDt_Tahg4BtskWFg7MyeHEIXm1VuQgW2XcBFKF9BMRLF9lhiK5zL67FXWafKWIBGAc_d33hp3nVw-BifZJRM5cb7fuQsAITjv67FMKub680-Niica89aCwLvECNEegQYDKNCL67x5H3vNZU7lUKGWjEvyO80rQtnJc8Ywur9FnWtRNhn6tWRSOxpdBDNd4YlEgnf-Jg69TweWySyIGFtPArPIsmigJ38wI082_PMoFUlp7zprmYuCTVuMuuWKXqC3Tlp1EcgM-N1d3PkS5a5rzEQCx4IYIuBG-sPltRxZSFxF7scSGiNTYoMkY-Q8nUefUotw1E5HBDhzEqMT2tTbfNgkL45FfGyFPOFAsSgL3Yamgraq7A0rPkwiv01tyFVenoQGn7BUNWuwkzj0o4MNsDg4LA65_LlkYJ93gSf81aGuKqlIeupeQujIA_YepErxRdsVmHp8OCLUMr0-641tUPzYD1j_tzUB4ZOYtdW8hO1pb3XyQOPCWCcaScTjv55HAiuGgXkocUiB8eHS2Go9bZWzsjs5jhUSW\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682f3021118759.54286325','','','2025-05-22 14:09:37','2025-05-22 14:09:37','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682f3021118759.54286325',0,'cd-form-entry','',0),(43241,0,'2025-05-22 16:43:11','2025-05-22 16:43:11','{\"firstname\":\"Natalie\",\"lastname\":\"Chambers\",\"email\":\"nataliechambers2004@gmail.com\",\"contactnumber\":\"07851729785\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/tom-waldron/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6bzCW16JLkyK6-pgho94oaNOUbnbwWsW4AHqRksey-12f12gtmauP9oGq_zxnM9oDGPYmJRt2B9qvNPAfzmXOABw6nWkZnlz8ktvxiC9lCPpsZRQ2SpR3Sy_NYeaj62jAUibll4JfedP2xMnfyD6lkrVntsot36r25za7epbq05l6lqY75f7qaff_O6p96CnWTSp_U8nE8fWodpCppvDUM5bfcs9gIAA6O5DjyqUGKA6yunTIt8-jiyoYdC-1URkuqKFpxPjUraGmX6CRcbbxkLYeNu0xLtMIAxF7uBVzxPpESSi_e6yBdpjI82OQCFZrxJg4hpFOFeAWzMw1McGI5dviRz6Kzjk0_B_kEs_P3iAYWP7gpeeG7n6bVjwTxFmczVQkf__ebOgR0_JzLtkNLcx3e2shHrQVUM3kQQUE2OQ57YY57CV8LCKaN70KiQgpzJJh9HYvSFKZHkrA-OJSzeu6WDINTeSmUa49zRTk4YuUdMI3uVVeywrlKtQpb9TNPQN9mYG-wSX4qUCmNjjJXcDJqKUPD94WVl7ewvXd2Xp7TnR4sf7uJi3i5Bw26sh5tOxRev5Tc-j8VOOD3rWV1bps5kp81JieQbFYxjjc1owLp9koTrFoHQY14l_rPJwY9gYCRyynuoHE4Ju9-Pd33ZVMJZcXRW0bnc33ewEYUTafkdZ16aZurONpiYb1AifUbQCAmQUQvyWets9y-53VqN7_sKXU1JR6u7xVP8i1Yepw1IUTcuYjImRcB836ItCqiWT4Y9UbDEI-7z06pgwng8QNdPLDHkET7j6pOI88296TrrtsIxvnSwu9tWqrzomjn8ajdTNCkr6VqTEEs1XMS6XSJI0yXAzcZGYwoThzP7YLDprRO8Jkp2O-kB5A8w9cRgN_ip07PEh1hUfZeIB2IRgA5bNyFXm_zQYct9QR60sQUQXei6q-QPEL_r79oMmMiFv7Sx5Vn6OI_twZVi5gKJkgUPGrkO-Y3ZVCilOdNnYEaH8RtZOYteMaUB48gtcj4rZCg4FoUK9CpTbJIDuBsnSUIlCpQloOyTbUk1AOZjGEd5vOsl57WhyEBW0CanKuQ_E7CpWSlUksspS8a02wVqf-v_UR6cBxYcKxcutBRXTqa-4zAp8A_Y3oBByEQCLBEsdj-Bb9lDzA6TAGOFsb--3LszYtMkUxeObIVkWvofpWkmQXTZN2LXj7BL-VbPCVX1do3L5f78Vw_2S_bhLIG37-SD13iyM8aTAEhk3fVonezFXf4qmNVGJaopdPiUNO0PSgP0f1CGmoDqY21JndXz2pyhplVjNcKMurWAIARZPvHUsf_r8Tp0I-PkPDzH45wZgcuCy4ffVgZGKZ6lVdxntz-8r6JWewmzm3DWDTMgxKEhoAG-ofmK4bR-_Ub4vx7srbuvqI2N6GVrbCwi64d5oPTJsFR2aMl1dL-8H8nVVEQDjnV8X8QV28606Zb6sl7qk-UIY7F1Np2yBCmhup7Qcg48IX-BZLXCLrRMImIR7Ct59bDEOKCtYXAkpBYSaSObMsHa50TGD3xGBLqscSU0RBLFw1sSKzcX4bxFb-T-9v8IGR9ITxWPBE_3nNjKEtX7Q3NBhZqD-SoadCCTXS6OFpODlX7u2c1tZ8OgAWnmM2eJHzK2Dodrxidn6hE6-tkWDmJAvyzNn82GWVS9iAAKJtgvsRwzj58gBaCODDSetfQDxsyyW5Xwq1SSjFlijiQsbDg9vSQMuddMSoIzdulW9dqPXa-mLGsnl2kCGH-k23znOjJwVawlJa4nncTO87OQJKXC1Mfsi2jL6NxsvZWUuhFT9SJkmlAGP6hfuYf28k7-XS0bxXN80n870fkuqDsrR7YH42R8uOUq-AL4W5v5ThvOrd-V_fMbtAuHtplj-u02RYn6ei8hoUO_-PpSHu2EjfJe2VHBe39jNwfjuf8IkY2HxEFXRs8wPUKkdehRqdF2m9wpneAbfZWa8GyuVE09X2kQcG6oW2n6-I8tLl1UfHnBXpOjFLQ3AI-U4_haMu8J3-lcTeYAiok2BcbRLf1gwhwhuCjJl3PqUXvYs1_gTdCktgtzCumhYAWBeTrUi_1Jc4sc8UIOYd8TQXPPsfHEWFStK_ZKh6_glEa1abDVw0sMxu-bssaEJWUz3z_SuIkZvc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682f541fbbfd50.49891617','','','2025-05-22 16:43:11','2025-05-22 16:43:11','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682f541fbbfd50.49891617',0,'cd-form-entry','',0),(43242,0,'2025-05-22 22:22:16','2025-05-22 22:22:16','{\"firstname\":\"James\",\"lastname\":\"Morgan\",\"email\":\"jamesmogzpt@gmail.com\",\"contactnumber\":\"07948246127\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sLZqn8p18k_aGhzgl8LPSuH&amp;gclid=Cj0KCQjwlrvBBhDnARIsAHEQgOSzE5P8r7TxFDVX3f484yBmoJdBeoXjkzMw3zK5ueSMVt-ZfA6h65kaAltwEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6veWxKMRD_7aTjF2RsefKEgt3lG_mBPkcY3q67H6O8OhlvldebKrkzfhxZ1KerDIWX_4CckqoTzPeesJdvWIN98ttJ56TpjI7oEk376UjQVCQTE94C_GIiXzJxXHuy0pPTRPVwpwZ67Pv8E8FpR7eeIIqlWdcH42kqlQYxYfAx-vt-Mu79yU08S_oh8DrhP0C5IG4axKD7kyEqVMC8VcEJ37gkIQEh0K3BODBCkqkZSQfGTcu5m3Ul8aPKmUHN__ObHFxYf7nZXCpzGM_D6EOCSxvYZF1R-bQVw8xEagjSck9EoZ9XJpx-tdPj1jwON2KMBuVAW6Aaq50xTE10fJMMzs2VDK7p21KvXCsJmbuLQlUgEtDCChjfOiLz-F4IGjpcn9mHwknYh48R3qQm7IWDw6t6ey-SYu9xZG8x7gXjuxIhLWYVaWPJDCF3gD6y6IgjjoiLzWMPkja2c7NjLrtO5tPUMKeEq3I0ep5IVnziGW9TRhnOMFC-1asO8e5nZxF2NxVKjrv0AYQ-e7e5r11x17ikdtZ9deAzlbiZWhYSIT2uQm1N8A0ibULiRVc3KQi-wDnwkTL9wHTDgKkmFCNmMvYQ4TXVkpEqt55GuNBG42h-I4UkUD_j4S48KqUbPsVfUpSwPb4MHm4iWRVx41F6zGQ7A4Ub8KAVZ_XA6k-5FEL4J2qY20XYcjXbsey37EdwAp2uGBGhv8R-d8LbqKEvQ9mhnoCKwvvtwDKd5si3E05XQQRfnko_4-xlWWiOVuEMQgm7Z_hcgYnW2T20np9U_YmCks6rothC0s387GsKK7WJ-ID5W6Gc5lZ_4jpGWsycGcT5UMmGLyFMfnJmpUbsJt6LDT7cCD4TepFPpJijgJr4c6OrqPw5ToDzAJ4wtFYVCO1vkxICT0qvYR7IWOFqxmOig5KqkRbHyM62M992igJVQ3OOA4yRAX5knalkd9Sh_jkCFrxbINHbnKHsxjiR_62-wBcnfdJ6LMmSCbviRw-1k6wG7p7gzOx6mmSbi7I90IhD-qFmYghJ9Qlq40UMAmP_vYMuT8nixjHMoT4RHcrdUS_uqPnH2A4X6VW_zi3DVm7RXJ3JExJVgq-d1zp-kfq7nNtDyDAacSINjIrlGJv6wtdP1aUzLr6VvNb-NRh_tG8wMaTPw0WgJYVjd1pXmcYOderDHaZSwDInJ5zRPUQ8pXOJB8Kfw_z6THAFj18dIAmh-Nk-L9gKZKaugl5p7VShzYbBHTWZJEbO1NGDPcRF3lLtH5bq0liwgJvcPq4NNMPL0bpao81YSXh7K-4a9lInCud1RXtuZQPUiBVSH3isUUZaxMy0BLefQDRD6D9eP7VkM4wIG9hBEKMgyDIqLUmTmCC5DsimJ1dgEqtGRcha4ODfRA6VYESH9Mkmee4fbCkhRsowcdgwUBAyuqbr3LwxedRsBhqhKDBALLmacHMsJEkvNfWYgwPz9UmNFrCePC7hyGhUnh_4lhoU8fSJhmiWmIB_nUWwLuj3Z07KIRlz0HK7yrJ3GzCCXT9LkteCeN_RzmwbNpHpIOH2whpCf7HwUAvkHW8lRCa3b7YVJkqzl00MMAtY3ujgTDL9th8RTDlV6Y9_1BEqvlgN7QRnoY7OzoFikloYRh2lN3QOJMmK2Z9gNTND5GxDk199IpT0zWLcvB6F7CT7kIiBoPOwq3Rd9tmhk7enwbRzP5gCOxz-XbW7yS3S6F-14Mt4_vBBpgxks2ddOekDx7ZI_EmzWfWEiX9_q9CEw4ijUiUwCol8CQr_xIHDelSEhxZX97RMgTAkvor0R0ld7ZXQkFOiMjFm9fddzQJDqrCY0-RI7Np9W7Y44JUt_CYeah-QeYg_pJTXF2PD_DsFH1swKraNfvBpkxFsaaHQYu1YCdg4eZ5Uh9jglOgQmY-M7gkDSGS0LMasuk1JqyBpuKrcBPyDOnVFYi1w3tfiYLkugFDwqEIb2xUj_R_gbU_VAAwcjJKp5Aesdr7BtSSk-SSQ8AQXNi9Z0lQR2fl_7U3Cf8VtZOHINauP-qH2V7ZjI8as-f2cmXjX\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-682fa398cd0b02.69881796','','','2025-05-22 22:22:16','2025-05-22 22:22:16','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-682fa398cd0b02.69881796',0,'cd-form-entry','',0),(43243,0,'2025-05-23 06:45:33','2025-05-23 06:45:33','{\"firstname\":\"Hannah\",\"lastname\":\"Taylor\",\"email\":\"hantaylor@live.co.uk\",\"contactnumber\":\"07546220993\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sl1tF7GOAF0Bssmi-6kxBe7&amp;gclid=EAIaIQobChMImdGC7v64jQMV0ZhQBh3eojJ8EAAYASAAEgIpNPD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6rjWRA7RZaWKu0-GYD2TE2cNoy68NAFg6qzWEeql-RG90dbGr4Xzd7j0tm6Y0C7CU8jPVAc7TLewnp8AFvPMNacY5agB6-O3l7wBRSroAF6hXMF1-Ttu5chFqFfzcTwEeuVAj1ZeNCsbPbQ2hjHkaQExpQG__9jBpQZrGjTSBhKM9FmHpAV7xruP0adybyZ0kw0Nt3pOG206k447Eabuwtumsa6UGZDySjStYxWUJjuvZeUGLFrwHw4MIKtiQygwbRsCifonEcvzHFxXWhOZbZaDjczZA3A2vZa7KcHJvgP7ylBxA5oxHlDL3VjHZ7mXYhdniG_Bhc9XReC5SqWtBzMi6U4XoArb7Jn49duyO8ylB0oOzJlCfXz3ThmeHdC0xgnVSruIOeUVNVRMN4XLzZqAyJchIxP9gkPkYi26PnySK7thS3Pod9s-aiWY92Zm8MP5GJJkCykKaQwfZAT7dnX1LhAKc9qzOhk2b5erx9KvDrIK1d9EyBRQkTvVdhb_L1P97JMIu7FzI_7AV5yglmT2f42xwI7JNMyj4TSFDnzHL7rdO9LEi2hpABD-yaIYDtg9Xevp9rb_aYoTejP0EVdEs_4_iKWh7kltDx_eWpNuBIk-iH3ImnGuGH1QBaS13WurRv5iGlmeq-2e853bLhJkyVChjZ2wNIpdAehVjS06943_WnpPFrLKGXjTOlsiZb2j7gxqjcrWqVZX2AldRovsQv1AZjvr46oWTggIzUqnxu5yvcQuYXdUjFDXOzCCiVssfBK2DH8MUF3jjLJHV0LG9dLHimhU6Fh8EwKlRZhFmg8DAdMIMOo8pWE4ynIX-gnbSpFv6B_OOfOu_1QewSg4TTaPf38Q9_DSz8FAGEXU5F9mPwwnkWtgppcI7vPEGfHVjOeMN3-IVwCDp8FPW8FEOnIi4nw32LE7JIDXfQq6HqhrQYruZ4eH7HM3bsd3Gz_tM0oxlPD0Y-IPeip4cheBMk_fQAbqZCB7QiYYHX1F_kh4MnbiXoixrKpiQS6mflYxytU1npHS0aIY5OE9bu1W3ZPec9K5MaPkioE7rZUama31W_n_Yo05anxEeJFW_Ab5YqqfRx9W9bZTzBr9W2DvDHQz-dP8rkZo5Me5n_xQ-67V39YsoJmqGbzQTUqWrt02gQFC7OQJxXkxn6gKUTzzRQkWHxtrZwMuJx8qroWhoudCFQDUOEkDPsm33ac8oq53pCRfP7AKWI1QLg0xJS3jzsxmc3XzWTv9RhJoiUsap4bD1kYzn55s5dgcRX38V0v_zA-NWUjZwrcZnZqkaNeYzJ7_HzRQeJv3ZC1U-EY8SdGq5v8EzQ203iknNvfRG_LVKP5hFaMbydW8YeClovPV40GTVsZumgBB8froTYUxmAvb1pSkGh5C5C8qC-ZFUTTR2FnyAFJXkgRex0KVDITbkcsOGXhlkUb_ZxSfPW5IcsdwHyy5CslzpRU6-Fe6wodrr_nGFNvGYlzuVdelPdz0ArSUBBrW2-sx4ACwxe9dRdjDAVIEjb0pi-tbwoea1STLRJQgXhrrZcwymF9gsdzIE4HWGu4HZ9aovgLG-V03HanDy8pz0S33Wa2cpvN1LQGFtbYz0dJWUVZKAfYJFgZ3-T3FPOjyl9yYsdtV8gwG6Auln-uVb_Eq4jqp8R8DRdVtokG8ZDTTYfnRGXknUNNEDkkZAISbJfxD8JyoR5sUyx2_TcRnqHBJECCCM-Np-MOagAY9xFtdWyBUyZk1spMv_NH8z9HcwGp7miGCp55g6I7ZsasjVCtS5r_l-vwuaARC4duMbYvw8nn-DhBco5OMg2pkLVUlMsN5kybC4o_-g-L3NfvYNvJzjdarEqy-9PdcC3xGwLZ8jERqA_kSOUZoWdjvTOT4egvkO-KJh0ae9HBSrc7hRLpqxzVPXh0YvaPuYmko3bkrwDW4Oit4_0owNJSSyVpeAC5khCAtzTv-8M2HgNadsrvCwrERtcBHG7XMlKVTmuAkaiCGlLm6h9vgfeBXZf_YCwPDYiIHmeB1JKJxqXkXi5Y5H4KNatFZLCkgZtPq3Iq1aQ4B4m3YE57Z_iMRitu6OQBbczTJaCvJuipxI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6830198db6d929.89014805','','','2025-05-23 06:45:33','2025-05-23 06:45:33','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6830198db6d929.89014805',0,'cd-form-entry','',0),(43244,0,'2025-05-23 07:42:58','2025-05-23 07:42:58','{\"firstname\":\"Sadie\",\"lastname\":\"Tattersall\",\"email\":\"sadiemctatt@yahoo.co.uk\",\"contactnumber\":\"07783509046\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"41455\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vKD33Skca9lHmoXLDO8-6X-&amp;gclid=Cj0KCQjwucDBBhDxARIsANqFdr3QI9h39eIWWCFLOtL9l2M4U5zKJSnXcrcTVlHmwKrNR92nC-ch9zIaAvDWEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7dCKXKgjEn0CiTesv0e7rJkcv_s-LMZMJ0DPVz9vHfO8E5YfBP3spZJyrOXFlT8qJ3c0SJi9GBIDy84RMA5MytAwYgUnqCph4GbY-uHnj_jKY8joFUBM3tXsQetW1nA7ep1YjrDiM0lBvFUsgHk2XmubvfK9Izm6BeJSyyEN5Ju0k3N8E8wI52V9eyzNVRL796AvGPgggzbtVKFWibPzhBowc5uuQP9OSa4nXlBt5UgEPkFj4hySF1VpYgtZZKrYoLrvOVy3S0k6VDY6PtVzxc7k4O1q14s2nwJDzVhhp9IC2NkDcK9xcaLrWrmU8CobO-TUkjr9WKK46wITFq80ZYCMtZzfw4WWiX8zjMBkXjdRhpG35F36lSFi_qbxlPwbn9DiUczyD-TmvpO8aj-Q7yUpBCKuPg69m4K8JL8bsAiCpWC31VTyt_9E40htNNz3QP8VvoKuP3VBMH59Z6XOw8kYGdhJrcaqn6Vmv3bWXfPHhKK1zFnlZ_K4LgqxB_qwZQwhIXNYWrExiK0-yKC1JKRrAv9ta2qQmS2pa2okvaYKFDFkhJ0diGD3a847gMFvEIHzjTVT7ETMUu8z7bpvuAcsyIZz7rrIQtlxw7SKvvzHF9QBQb8RpiDWU5Xb6zr6OZxvDIZzICJXR8bPOmlxqoLCU-sGBiWQ8Vm0hLoKB4KWf17MoWc1v8MVaesHYQZR5aGgYBQ0RpuzKPox9C2V1dwg4T6VM_hvfL5vKhry4cyMvP5fmhUTPM1Ww5Ah60-YAX7-dnUglppxdBTM3pRN98Tj8ItbOilvDOwHCJ5hXWCoungDrZYzLQ06YOmJc2pZjHE4astTmfxYw-jTR0LsGBrKVznJuyXpe6wxz6yyZjF6aldz9OfP3GKXr1KX6Ww_jgXFGQADZxmY1oxRWbeMhdFJXFHLaiVv1HUVH5Kd39ZmpZXhRiHZc6s2UuzfpnD9X0O73AeN8auOARj6B6PtdCQQ2taZUdskXTTQ4IoxvE2miOog9x8x_lvzrAtX4OoVJDagiY9t0dzHZxrjrIs44aTNMOArPxdk3FrxYWQXjQQ-a02ARu07Zn1DCaWlSvF0QWg0RolRd6zXM06QRKb_Io5I0_qv19M4qm4-HkHM-xHRijEMUGVhQekb3efPW8hefdOo_q2mxTdIUvRVIfmSisjmQJ5qP9_MMvoNDa7RlmgBwDthxKHBL8TRggk9c24LI3FprbrbJ2i8dHmBHsGhMLwYOjTsv6gwal9RR8mL1Q44jOTS21uXThH23BTd8KGg70szAr5Dm-EXou72BhHVaI-kY_AktgzUW8ZP3MP-1OUPPKmmJkBlErclwf0igA19FWnaDv9BBVtH31NaMdnDL__IGX6MTwDZt1fRiT_ENHUwdGlMmzC8B1ObKl9P70qqzYifBN7qz8URzd3t7mBfwnHQzpuD6mTLyopbaMxDNQh18lBpp_hrTKkY-1Qv_RKY6GpoA5uJSwBfpiGyQJKz78BZOyNF94JYwMT40HOF-rwcGeEMaGcKURmOIfIs0YwSy2elGkb7aUDayA6xW0LHMtSos5eBwlP7bfauzoPgaq2myzsfW4tOTG1_50U5uRUMcmpdxOV4cVkON_oexSXlW9-ebnvqgPyxq69xkXnJKMDUWe5EqRZJbf2HoZ5IsH28tVcXHbGQD34rpEGWw7L86s9LpKLZZunGkdl1q7JwQQtDe1wJCTQJlNXg4GirY-nT979fNw-933J9WPo4izl3OCDloj0gGkNTx-_o0EQ98hFp3hKwgnbk5cQy1ThEd4QHRj5sOI9R2ZYFGWLS6OWYfm60H2FD0fG_SDVwHlF7etfNzUhgGZsXIO9-ONnTVm_YFvwQK8rfAXpBHPjPONQJU34HOo2EgcCwPTv4iGJpMoWjq6iyMMJG1JC2WmSVSG7MgSrqsfr6Lqr8G5WynIp8DvJ4D85X9BMFeRtxgJLTUWV7OU341bVIwGij_D-SKl0VilOsYFkawxXLFfAwRSchTVBDAnbzYZcKZNInveUCMfsKDXSN-03EOhSTL-W44s0btEyZFw9zY_9iPWezJsJLlFivpHiw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68302702859130.45766277','','','2025-05-23 07:42:58','2025-05-23 07:42:58','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68302702859130.45766277',0,'cd-form-entry','',0),(43246,0,'2025-05-23 19:21:37','2025-05-23 19:21:37','{\"firstname\":\"Claire\",\"lastname\":\"Giblin\",\"email\":\"claire.giblin@nuffieldhealth.com\",\"contactnumber\":\"07530079048\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/sports-massage-therapy/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sl1tF7GOAF0Bssmi-6kxBe7&amp;gclid=Cj0KCQjwucDBBhDxARIsANqFdr0zkl-C1vsVNzvvAiuhCTBm30rcT7Wtx76OByKhJ706L37mdy_eKfwaAqwdEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA45ckalPRkfVkBSdiOtFRwZ8-y2CsEJMbBoIFz4PmeSo3-e6Qzq1kgs7z3Tu8xKFaL56194K05ES1rwl3P4Bs5kPg6pdYQIIf8k-gwOYGtHvgeFHrqT6nemp6J-GPFVgKklrwdDzHjDn6DkMCMDxFkmaTFuWP9-wjpQO8CFXu3Qf9vgdsMgAdziWr1B-FEOoFwfM2qagpflrc11zyA4tNC0wpdje0eSiNFKMBsY-VIOiR8H-Jauib-s-rakvfvtyGQlTYRqXQwO9ABXdq_4DE4pxi1Da0qNripD-ufpOH2u7TQodTbz8_PssmaOrLJUsVguKJ3j9UcBCA8jYRGXowefFFAlS_jMj5MdVZXTNTjNeen9ySxmepMUfHuTqpsfjdvlXsPlRpFn9oW1eFmIouChecn78d71oJuTfgaC-wSidlpeTxGKaCnXvEzd4scaSIJeqnt7ap7GNt_mNSZBshAIWm9_p11tFzfrljS65cxZM7QPJd0kru1v-lDqTKfJl4pjIIkyEQrrsq0AgPdeskBAFTvCZl5P8gC_jwo7bUDkSt7kJLoDMeMvczAHrm_ewg6NUOiunZ_EqQ_DeqwXlyuqLCmd9ShGj9dU4uZUA_eNY16HeYYP-P5SEWsN4kFavQ6WFyij8ALepYOCSWJGmNjXapcWiqTLb0a4e6iqVMbEXCdU7RWnvt4fAdqoxaDn8da77ftlZRMT2sqVJMWaHjIStwo4T3TfxBQA2ABwwgadh8qqg3RcwkejSp_KY1OCg_6kyZj4oY6UncCOQhBp2SdusbWlCeGwy8etTo-di-qDXk3Y3Xw2UhhP76focUWV5ug1b64VWHhRyb1QrETIzOfPMQFkdDtRNP9aGq-nAdkzPnGZ9Q8W2DeF0ylrGEUFlcMliKMokWgld7eEb5RlTScspfThy6GDooRB0xV6-etlWYM5KsqaPof11oZKc93CJuVCoTlK51dFBlSoDeQCeUfBRGLi-3gsh5x26iyo8i339eE03vxkXm0J-ZejzOGSZvhb1vQiw9RuphEpbCj-3vHFBSeHzhsgLxlieS4rcNSX_OxzR935F_UYVt_VP4J5ZyVE2eq4JTklYWvnvYEUI7j0ilp0XoDt7EHOskV5tuUkPSKN0T1sHyZkc3SLL7NTHzW4op05_Ksq74nxod0okq3ac631MROwSDKPPU69nVlfPQXy0gpqNk9ge6DfuSjUE54JHVB9bX9Mdm2Cv4hav-VRBAjb9UZ84xmagezbaA6hlVvRIQSEFxNTuuEDOpptHdqf16miRyizrfGWLMML4MPyEvzH5z0bwvvpRs_2jsuu6WlnXuzmOUZcpafwqZb9xo_NK-6PlJwoOix7ginZMqw4vIWeSkvaBpAEgsSK-YhymVRBDl3wO2T06tIQVO-JzoUgQ6416ZbMn4IzQZbYKUGznFhBTpYrjjpr9Z7wqqNulhSdcqArsSo8fvnaGsy4Q0eDyeJnuYTIBQgBXlNIHeytUtD5n-UPEn6iRg-vixx1Gh1PrScWxThvy3FOA23ehXGSYd329wEa32XFZTH_E3mbYOOnD8DjmVtVifBl7zWfPEUjtmAdo_d8tH3QtLzwgFsCuZCfCHhWQUiZR46l7K7yeVtR0Pr4AdQXY8gWLHGPvB_JaSEvPLpVTyBEOJ-opOup0JMHHrI1UizDjtwVTUt3VVf_xkFcYYQq1RyhmSabxG_C2f7wqPUOFeRYD84z_h6NfSiNp7NbnQBDoXkT7EAJqcsT1CXchDz5ACdlZpbG6PCnqJyJCD3zafDIyAQktOnaJPjLx7AlxXVANsJbOzkN9LTJBNyJ_H9nMZQhACtls_gKP00p6w81oAWV8ldXB9T19FKT_3hjoQgOaS83lRv-QzFFvn8ktkvqhtWZehHLIbiUT8x1oTBcPyCQeXFlZUrEQkjNacxmnsQK8fgnpxQjINh-6RHWoMty8ifY1l9a9W3PJxqmSMGsBMn82ToFQcXziRu7YaG530BBgufhzyA-s_kUdqyC4xrLV0AcPvinXRrmLl2Xxl4EZI2_d2W6rErlWNX6Or8lgq4AaIewRLKHhyInzDAz4mBvRww_xkeV68gfIdh6MYmPqmvkk9kRIrDvB3OEt4IDi2SWRBY1teDwkSmXtBzwU38bGFzyw9mMjePR6O0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6830cac1da5eb3.65604044','','','2025-05-23 19:21:37','2025-05-23 19:21:37','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6830cac1da5eb3.65604044',0,'cd-form-entry','',0),(43247,0,'2025-05-23 20:27:21','2025-05-23 20:27:21','{\"firstname\":\"L\",\"lastname\":\"Duarte\",\"email\":\"londrina-nat@hotmail.co.uk\",\"contactnumber\":\"07484678048\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/cpd-courses/imovefreely-instructor-programme-workshop/#tab-description\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7KtsDTul_yCSWQVOxW9oWpNOm56xKmIIxI20ncG7ZqB0w2LmMC2PU3FpnXv00GyGuNHwqBw4yY8vsAcejLrm2D7nZx7CNDIKB_HN0vGVxQShH4pgXmQWRi7FtRw25w9i8F6W_9LbJTUBdyNWLQmCO50_STkOJFcChtEDuk6bWK6hZVllAZ15LsAnWXDDQ2bPf58HLuBdcXPMAtws-mCJYxngADe5o-6hnWDG2Dq0SLAeV3pivWShnKPtwUfsPd-Qp_qNcMaB1MerihSxD2hqLxTgGl-yhGNWC44D8OIN1tD8KFFyvaBqs3p29LyzNihe5wynPfVAms5CG4Hqa_FqtmeWZkMIFvrvGk_erggZYzHgFmKoQRfhjNMbHLi1ZVtPZ54o10WfjQH6G3b931-rfADzzO6jbUI_Suq2S3xEskW_O9lV0lDpB74cYldaQbXUKsSglNVAyMcRVLW4ajPpYUehAtaVKx8DcvFay81rL5oXSIOucIFp8sQZGpMNjmF94XX3oGRhkWPxQTjhqHemNbxZmwWS3mxGCZoNzjfbxGjyKjsztUjZbmeXOBsLMkncI7r6Qv3E-GVTguMl_6IqxMLXmKOWtl5AmsDxti495mDVOlmXSfP80Q1hwyKMUXBaogHSuyIugShDrOv4tTFIa20luuDOO5KeAE25bRbQ4vr_gQeoX1ScOFHS8unldZVm0WzajD56RuazxKOlwIU9g9BJyZD_6kSS2l-0HZWjuD02fW2cy5qhkpkaaXWBg15eJVnjUf4pBFmSqLiBlA0r2Oc5qcRtNihwNVC6rYin8lkuyBznWOGO8-Apl8KGrkr05gJiggVUspgj8n3qAjcHUVD7MRXz2lMaGahvLPgaPfNkqn9k21ZihyoTUXWWUm8y0ZPMvGfWG5PZQHpRecZPcqyBPH-l3wNcPYhoMIiqjVyqJXQDEsxB7rjES6mgcMAgTwllnNHHUSzH6iJrWLT_XdPOd22K5M-UGseaQJBOTfWXDgQ0wmlPReLdIjrWo3r7LbLU1B81nmTyCwEcQI86ltv6W4KWcsDfUkYhjhV-0iKt_bjDiJWLJ3dnPhSdbTzyHbsl7GfoVFYg5ASUoOw1ShpaaNUbgKJxmuwK0TIj1ruPbw7ywQKze---OwJgxMA-uL0vbYxredxy0BDw0M3bHqlxA5zM8iJIbIQYlwuXY2lkbLhL-p_77j1azox3ACo8kRk1xzu1E9ADxeT8-vWLjHUASXGCjMFuDBonfZzoOQN1pKmJ5Yl9YRfGTSbhGHRcdS_iQ0N_GE3bsKN5LWRJGEElW--eu5g7eB35UCz1HrYE5PHHdzMZORd2p90AwA94xYHifdUAIRrPkh0IBxzqfaItjoVjzinl2CNnaabveOZaDBQb_Qa8vC9dk5grGzcVVMLxI0_JiDNbyyozHR5tSfk6u9R0tGCwqgYxHe92wZ0s2RkmCqP2DOS8ZMYvD-WPRAhkoOafQMIKampfmeZ_RnafYCqjlGQfoZ3_gyn7v80OUAS1IGpSRKTJ1_Uw4pSh5BHOeSYz7zzJhoiL5H7pY3b3H6hx4gBOXi1RgmPF7RbZHlRlivwIupU0eXkl2FFtO7BpxJspPaiT0PROmRlzVVGcBmsgQ7e_6G1-vbs5TkkDl9RsUoakztqlIJ18ka6ztEjs0w7YYybRTcLuZOCEe7-TNvKYh0d4bujHQPu0Vzshemv3IAcH8Ww1mrB_FoMvAc4rK--PNkcPGA8bEeUt54QxLdn5glYLJeJaB_qcfBbo7pjMqabM1Djq8wyIBZ_rbRtqZtEH1VFZB7vEDS2-IM61Pw_nycq614Ac08C_2yLcixd_02_UdhwR0NMUaLHZUNc2aY-0dNz3-nJ1qCRPdR8rXUpcWkAVkEbsj_0hniIZnVo7ZJJYCjSMCpRE4n9bd2yuz0Jt4C-MBKMd8yEt3UHpZdnyFRaecoUwDKe3Sz_EBMjlrbg8XGLjAwSO0CEN_G-QAB8m3pe5ZlQPgX7NdfxCsVVWeNNN8wN62m3VfWHAIxin0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6830da29af34d5.04392454','','','2025-05-23 20:27:21','2025-05-23 20:27:21','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6830da29af34d5.04392454',0,'cd-form-entry','',0),(43248,0,'2025-05-24 11:01:29','2025-05-24 11:01:29','{\"firstname\":\"Tom\",\"lastname\":\"Collins\",\"email\":\"thomas.collins054@gmail.com\",\"contactnumber\":\"07491952632\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tK2sq_t4_3DwWpUdC3h2vIT\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7sclmgi0hXTqNStt8j7YC5EzvBBztO0GSDB92xK3jA44ncshXMQ_r6j6CiZyvIpGnsx70BwDsBM952E6yTl_vth7B_Rgz0JBVM_VgTmJ4R8kY4Y6_2d1EdBqSZue3fXb46PKZ0kuQaI3ua83vgPbv-JHzxV9-621A6WkmTrQ0n_25pYRbAIiONDQOcpZiDdDecsuZiWrZJ_l35vD7jW9k8_tQHxJXHu9GMXFlLPb7Ev2K1oUcMmSAmUxs_P7M2GbjOcnldfy-jgwBFq0UdGZ-7vsEBo2pdQEIZsm2Kuy56a2FnP2ECD7C5rbJAliMWUV000vg4wnSg3WFhm4aIMQaxY_Gp_7_bo2_11EgpaN9eWu9lbCh0rjy7F7aKnyW0EnnSf8Fau_JSZNXxEPIM6wrYZkyh_WF4TwEcl_JAVbCcLw0gwwze7oIbi4kc65aJ8t23cPjiR8874mJkndroQqAMAw30M1MdYPRKfivGPmpCqCxXCRN9t9hy5B6T4OcA6y2GO4RpZWnznHikos7Y0INxzgFYMoMeXt4F_th0Ni02z2JGZHYneBHxqxquDEY6eZ5C-8LHfnaW7ypqN98wFEuOaJp75QDIJrTa2FMgxOO31h_7W5ci4sLwBHL7P9CC-TiaZr5TpIaydGD2sbD0rmH2MDUwkgCx1b_XSjDFHtirJLic-OKGaJi8eb6SB08kuZ_B60sENe_PMOUim5YvM9LHgeq-yfEGXmCTwFCY680sywnRysTpEaTYXZ21JuM_FYxg8z_TuVb5IrzCJ_cinuIE6KuVuf-SK0b9GkF9eowKIL6IwZlUQ6LppkC1Xr300WrMiP679x3EZQRVQhZ_s_aXfaFQdyP-lNjPAnML9cJ5qgg6nGrDZoZCwLYXxH2b3n017M3LTwshk7IvnuVx58hc8AGLTr4oGttDxsu0itqP6aZr_1r_g0Z00Lox2J38ObSU3FkTZd7-vMIpUczStWP2l8KNC0rg_KCp034iTtbwBzpcQNgQVjx9xT67fzrfKK-4ITYCOnEuB0lIb9t4Yy6aG66J_39s47KMR5uiUcI_7-2a1MPFFWDu5DatWS4lv02mkPB2R0r4Gn-RlmzbKqzCNA7ACS2Q52x8u2RSdyKzbAVFUPaRd2W-WpgzL4PPkhVaFFzpoKFyRteGU6f4NeKhOjsxNofeM2XEvhhA1vFaiVHtOJt2wWly2imlocauTBnBCnyAUUQPGyuyKxuRDPHs2AzWXEI_RecnVTkp305Elh_AChKZa_Y8Os-Y0mZDaUTy3S_H-VgMYEi9eYi-QEh8EoFnhMIOLfxRgL4P0pGZT_KYzxxUlg0Bo--Ehk4pH0eynkKQj1PvFmzPIeQk2V82O6Kricygar1HqQYOJTkpsDb35MMYMtu5PLk9BqN9pOxIrn7wfzzj_bOeaQI5x1Fhe0N_kxxnQGVlUXMzUn8iFENUt52rsyKlgA0mkpCVkVuhHx1UHyO9_HgcgQ8B3rtMO4PN340Ka-rRCQA0UAqQfxuk_s6iC-IyebQhtao3b6IaxATNAiR1VJNH__xKpUV5DKBKaWnR51weZUTsV9kHpK9AGSAbJM-7hrfUb36pT19nQPxleQ9lajpNxLDL0CkT6rR1k1PZv2XVMaU273It-NaIgoIw72f_1-wH0ahXTHgqVgVi9AsG033UEC8YG2CD1X_OTKpo9OBf-zP37Ew1CL60AF5a0Cqi5PUpPCspk9Xm04-NsVhR0LAuxET4Sr9ALoYvMyJ7dgUn2Kz9bFjiQF1B_dzQ-sI_sQExvhWV1KerYIApFyTeEF20fZeVudOE4ae4suKQRzBo7rvrekV24tKAms-n7izYOC7EhaEYLzmSCsh9ZCszfFdodO4PqTSiunogX8uYCp3D8NRST_7E1_Ib9ufBTmQMPxDwLIvSJpleqylgQNmGOloXygnxOQ-eYRR6X8K0E__RdqWJLnVGgq1sxOiuK5wI5Kh2vgAXv6NW-xXe6PlPRNViyzAal3ZDgZGGoq8egy8XnCKjyhvSXBqsJe4N4Q2kofxNcVB6XGkdASkYi8mLrGXNgLzYWtzB_MZT3re9t205x_lXF1k9QGImVz13uOk91YJqkfAlKecuU92r6KevtSwAD4WRmwLvzPmx4xb_R9CuAp5lm3uokD-kZ74\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6831a709355c39.00664564','','','2025-05-24 11:01:29','2025-05-24 11:01:29','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6831a709355c39.00664564',0,'cd-form-entry','',0),(43249,0,'2025-05-25 07:21:51','2025-05-25 07:21:51','{\"firstname\":\"Tasnim\",\"lastname\":\"Tudor\",\"email\":\"tasnim.tudor@googlemail.com\",\"contactnumber\":\"07850098219\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vaGkJP_cJnpuky4bCbmdlyT&amp;gclid=Cj0KCQjw_8rBBhCFARIsAJrc9yDdKk2PFRxVR_9Ny_CDcGoLvFfOxgx18S_Dpo_HhLYANTJiLZA9tyEaAnmhEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6l8hqF9G3pwpSUp94yjSiCHKFrFGvWJMQLTMQAUZQXusGqEwd9VNTuToF5yL3aBmxbum31cd2Br6EhU_cb8mL7oVslTB2wIYsR3P3yLwBgITi6-e2jjPDLXvkLzKMEfikrWnow2gYtGBgq8iLpBWIJSQbnA6KblXB2rL8psT5sziJ6A5T9uJNrkm7_Hb5IxeTD6CJndfOSrAhM5cktT5qMxHOvJP-o93kBc4oG8QymRVMIRW_CuZX3-RZU-wjAW9g12G1NGN_qymzbke5kE46-jCe5jcGURL3yJZLpNdIJSoF7QO_6bLb2hqjHEiorlDNuHrVfSsuVsVuEwvCy0Fv_nmn1d5umkM9fIHjQHcMeOZKZihLDfYOdNBq__4VqWiUSxtaWqRs9hgRi9QpNrL952O_eNTlUwjFKNDf3SzZxbEhk2CcfR0jkikcSDj4HkwMK-9pIoNYmE89ejEEYRmh3OrEEw6vGL_gZ7YP0hH_6lyAs7G7T9Kdin6tsQqkLuReZTbEovWW2KpZdsaviaQbBCihBji16SW0MGanWDxpQjOl82UfSkeJf4fDHhK2qmH0i8dvaFUMc5A1QwCJy58Lo4tq1Ndhv2G5Ie0d8XMssvt2Vr8A1scsA7vHxpUDzN-q6cSisEb4xDL5zSTIeE79ChgRRLKylFsfn1nmXnCX5ClCOJibOm8q5koM1-tu8YuiStDsnTFDTHkeb_MjdXbwSUKSvubdEZCVvZPX-xO3tmArv0wMU6iu1EHVLqpYNTjNjKiF-PEd99L-jEfSBtwFN7la_xvcVzJuyoMmY44tQPt_SoFurzpyPKq5RaGyKpkupt8utC2DUDTyqcMDclTEj7-kgQpJXLEg0rqz89tss5cJdOFh2N1eaVIsj5Jn7ej_LzXs15ZjQo3QAW3LwLfFkhXY1v2nlQSyJZSPT9fWaI_oEvc8t1I8cZMCRQRNdYzg6FGQm9Rwep2MUBDhLhfpRP28dVc5MvVyv70UiFWSAk3VWDA1NuLw9RyPrhlAIbbmxbqfQVCiBousVoSaxe806_gxJBJlwjF8ixq_3R5ODiEKNJ5TA7FV82CsgMNiixDHqLxl0BxgCurHtPOMZjq4uvR5rrKWSQx-EwNvBNi0Ybjnf9YvGDnsdpUxiyprEu-hBUH-qOPK84plfBJ2EWb6STzg3wkln2MAoNvV3GauXCQgEsxPSqkP-rpiSmOphAbFKzcaqEUWz8LQ5LybRG2HjaTQjdyuK_9nzfXZU4_BdDC540IWlATw8Y9ZSkUx1r1QGujmGGN2oabMHsamGJq9nEpeVDmEXY8Q_6EOMh64_D-GmiERh07v6o2rpt9T6I_xLy2OMoveavsPkGkpmvnl9GOzedKz_rETI1wVJKTg3cLkKT15bmgb4P7xjBIkOoq9KVzNi0DZbNQhyWiUmol4K_kNibihui46mU7ZWnbX2jYOYDKBIkitVj6vVMcIGSBtNLzwCt7icXVoV_MYWNmxBq4C0yAvmLOPXRCeBiEH3cvPPNvZKKz3st6tp2OMqQeuwxYwGs-EHFG5IBqbEKeWtjDGXWnxpXIOESUcfzNtLHty2O-wKHv0enDROjv3sozI3h3HWZ3_lwC3MD6thEJ8-e0AWOk3OVDHglFpb1imp0l7ZW2TPHNrBj0oQcF3ShQFDTR6csgTei_EHPt-g5vUDBngxcC3FUt8Xqg0TwfMPwjyHByq8eSENGIHj2fPI6eflxDrJlwGr_xfc4t2DmqrUg8AyN5BzYwBwLXW7cO4R01Fj_ahF79oIeRokEyaXdiRpiHv4yZyACIZLa9ts3U5LgbalXrUAnqoaWboRz303dEsl2yJOfg_dXy-0_9lSK0X_yYG_12mqvom2XrpyhkyCShfnxHdqKAQ3phsXnbXqIi3Vnl2GvP9SNzB15vATLbc29EhnQ_JMnRSY5kJSMOCDpod6LtDy4HFrEadE_Ly57L80DdDiqDTinnZ5UWS2eMvxz58PDDY-7GaNXscvJoaziNTPzS70MAWstX2QIzT4l2NhGBWfxS4LIJBXT-2wev7b-ofj6NpKUIH8FAd4L5XRIlwvfBDbNz90SsNf_RqlotVXyJGhb9A7BiGgpC9G8fpffT5ZcrRAm7qpyyTYM1eT90ei0IJyUf-3e3X6tf_A_BWAULDCtHVYgFtAU_samJIR6MHi\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6832c50f781e04.05974635','','','2025-05-25 07:21:51','2025-05-25 07:21:51','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6832c50f781e04.05974635',0,'cd-form-entry','',0),(43250,0,'2025-05-25 07:22:44','2025-05-25 07:22:44','{\"email\":\"tasnim.tudor@googlemail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"HA9 6RZ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vaGkJP_cJnpuky4bCbmdlyT&amp;gclid=Cj0KCQjw_8rBBhCFARIsAJrc9yDdKk2PFRxVR_9Ny_CDcGoLvFfOxgx18S_Dpo_HhLYANTJiLZA9tyEaAnmhEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7Y-XS1qFLuO66rtwrQh63tbqYqHSzpqkCX-7GOG4F-Lov-k6tYBYT7flyo7T4TKcm5iMz1WEkvIGEKpqjUwzKPkm3Zg-cK1vNkvtxIx70tUk8ijP38rEs5satEHarEuAryF6mXWJKdHM5A7BCSDj5_EgEZDxAkUMDlpE3VdszFenY-2v72TlDWwyOrGBANyvJoIBAZaWHEN6-ZPaZOuX40IDCJONbEf4MD20DXa4V_FcKVqVPZUTbZ9bY9ulFenriP20R7Rn9U3EknFThMnY7YI11VICVgjVByi1Ok2Yejxgpu869EmlWHWYQTkkhUDIXDnlJUjqc37Sb_mQL1gx5v5LTR0ZIVKXAS91QrZnj1wCkmouoPwIh7J3tUE92fNP69qSb0YPd3PzGSrUrRMCuKqP_rFamOQTynU6w5C76Hq6ywXdA0m2Qigq1_nRiMnXo8CTJgCxZRUqC0fWT0x7fG7ubIkXQblkKVtJTtW581-8-BusCpLyFT7Bp73o2bS31zD7fT_4Blku6XRYVNscH6TwhwRWh6TUdDPwY4nVkvnfruLaWRDpwGow_-ifsjRBLhnGxVXR6ZVg067_c_7PFiUYakT1Oq018E_xXZLKotlyanStN_H5khSiD4WpzBp5zrO-r4cxyfSyEJtV-HnLWqMW8R9lggjCiNGzUJj5eu1w1LF0imAJAwkdyCFToGMOG7CAXrTQJhEKi3tEaGPqHy7zBup_GguaZcT4LYTXhkh7rmbmf4kzyIxSbwYZPzZciUDyRG6iGQPuFxmR8QZLox2OU-7_dpbAXKPNqBL_A5puLP4QKjwEvOuxy-fuEPOpekF4NZJda9JBsqRccSV4LtDeawyT_JS4ZQOB0QqlPho81zvyzOysjYk0gdRsrcxn1656jqa2lGdwKlEbKPrP7izWbFglpBWxPRuTb16kluJjiyVxcGS0xIaAOyAy2DlkahLbvydQuPVhAQ91qepUO6r66JL-tHHnVxv7FKdgOVPw2E5Md9eXFFZ1eHQxT5HaxfyMSdyz00jIy1Ag6OZEBZ8GdKJkFaZtEjWQ2ycrXu5sfrA1ZMgew4112AQkXjBMdY8WMGJSV3buQKO2nQj2o9TvDUHpTdsdCy93VYwvp0iEwp0SD0WZuMpbneRjqiXNpStUj7vbILwaPQMXjuMajG1FxQLwh-oQbk0baTWuUYVDRStADq20ercscMlskB409cm-psmGjPymqWKe39UWE7fUAZQU-E3DS7SqqGPtwj_RtmDtl3XuangTruC7y4DdbLjQ2jw4jmypyQLh4dLxAOFWadNgtoGHYJD7AlFBulg90VNS_qpTPq0_h9NIoFXItgVuS3TqQy1m_Kj17TMiTgTkHXZs0jfEPD4L2P2GpXIP2CxkA_UjXYkS0Nas_FxwtPL8jcf2XVOXjAl371prtzVNBpS1jnB8ZuOdvDLgM9hvZc9h8XD4XPvBGx6JFKZCNFXPyz229vpceWF274SKUvJwF2y1Qru1QYQNsXXObsmSTNUtEASlaLKsiQqz-Uap857O6GjoLjwSdGRW6fNN6e8fRR-9h_UTd2S1JBVGQHVZeSq9U2XHZW83BJwikp6Yet4ualhrHHoz6lgN1r6KkEduIrAFQl4Q1gU7KF_2TkxBiZbdZoPl_M9VX3hDTDQhzaaRmZY_cA_tdykS6S5swrnzJlVCoZ-g2erD_mFYvhViP3qmHszdYKs36Wj3DCTrTsC4Jn3ZoVDCLBrcRS_dUB10PT6CkzToxI6mnUgejauGksb2XyheVl2o8VZnTRMTAKKUiuYCiCa3laI4e0R1ltdGdyV5rlxbPF-TbNpLwzHXe3v04VBXxsOBL8O0UFf5IRT7cv052QmF7P7NedBi0ybGAN8i8I7pgFTpvDZ9_TfnHMcbQea1p6WElmN_ajabxIm7xWMD2OLqucfKhUabufPy1GvRzpcCPPA8yo2IVLDxu5ejK7Z1xzww4Ytax4K8_SF1Yxiac3_vTmhShIri_KtrHapkgItyw6x9FDimrbBiWW_xWi25YvjCH2ryQfMUXyca1RneZIUbDLddraTo51j3NOMGOyEuevPXkAj13MnMuyIKIGvxh_JpIb8GgtsPPo3_W9IFN2lZpHuHUxYOzREzC2pWxL1hsvxaICiSyz9dILF_270NKhQBu3BvpWvCqm8lMTX6PMLuq_LNxW6HQni15SmA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6832c52bc76cf4-74835764','','','2025-05-25 07:22:44','2025-05-25 07:22:44','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43250',0,'cd-form-entry','',0),(43251,0,'2025-05-25 08:48:31','2025-05-25 08:48:31','{\"firstname\":\"Agnieszka\",\"lastname\":\"Butter\",\"email\":\"adbutter@gmail.com\",\"contactnumber\":\"7920761184\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vaGkJP_cJnpuky4bCbmdlyT&amp;gclid=Cj0KCQjw_8rBBhCFARIsAJrc9yC3aMUI6moGZ5EOZm58nJR9KLwEdXhgvG61XfrpvIj-gQgfg0boIZ4aAkvEEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4n62XzwvprvRUX8Ry2cZB5ikm7NQH5Gff29ctJV1BB_POdXwTmmsf-pyK-YGvu4Ka3lF8TuSV3W6fHhkKkP5UesFHnOy4eGGFU7CMIehM2P8VJPO80tZlZi_0_AeqAArI2P8XFniV_aFmNeCvWcejidr5JHiNfDstCg0jHUzK7e5dekV56iQj2mDPOlUyQbDW_7hvTjaSb838v0XT01HhTCjGWLdYd9ZjwlM1hAONwm6Yq87WBphExe920sXhoD7D3lJq6w5750Rom6Avw2JQM8dJ63Pl9FKSF54Nl7ouPJTbBcDNQrc_DYlN6GrlwKKx_THfaGYTjQUsCCkJRSkbp7HD2RWTq22LfKnJIDuI5CDHvbPN_l2N0T5moe1uO_ZBraAh00QeoTFk33GSi4j51BTlc6WvGbBk_kHTeJr4AmmbsyJGWSECR_A1z1oF_mSiFL6Vk8iCRLmONQdEO6Bg0-vmlM6AGTPPI5tV-mgwulibH4snXD1-oiGrbGm7FVXbqJP8D10DjK3olC3jHzcLX1HgnY_5XCmfyl7een9Xyh0yXnhuiGs6ByggvklkRUmnTgF4CaZRfHYPEqbGEjkA0yLanyYdm0CMoHANqvFM1_D1u0Bc2i3bwkgaEo3VYl65TUcrigczQHFwjLDKmMps46QiWKWINFNjPYp54G9BC1ixiB9YLRoi1AZnahRvH62U4ZUpKM_Z1Gwc2N4tEk5JNueWCgpB11L4RIAIx9Z3asUU-3sUiWBJxR3uPkPzwl8nssMsqiVLBIbXxGT5_CEq6PdpX_AiF6wBcwOcEqqFbxFPBF1Ymv44oQzE5LyZPDGnxSoxokCM8YnMfQfxTIaHkpc6ST2Q3mvgnb1D1aoDw4-GImFS-VBQFWv3LSkHbzzjGRj7WyN_M5fRrERqzE5Y0rMu6r_bs4Vg67GW6QNZsUx_wMNEi3jqOfqP5tgBKDDYLiYp49QHj4JzA7SvUgr_Nd1cSVpnyJ_gkvk0EoApUPHfz8QBaZaLmI1Anms70OA2sz0b4LPRl9jqEWU8s7FCauIvTNk17V8oeuxrBfr25YBY-fcecqB7WyfEGHEXZPwpWw9PX0i-jYrl65cXYRdiLR-FqSZLDtkazyGC6LTdSkqjR_i__UdX_5Fc8mbisHjgNvE3XqubqDyE7LcU3eIKj8ei_LAFdig8UIgOCd01qKefXbHuUeBlAsqondOrIvh8YFmMSyqs5c6MiCs-IURag5US15nsldpg29QHCxChSLpQK1ERm8FAEjHpBKAS8Rvad6id_1lGkEtAh6mBi-SscK9Bc_L0KP4MRiqsQzlICJX8BB7hhn8292p2fEv_iecIApbK-qsxq-ybRZ7NAJop8AXhxhPIHyln0dDGXqQU1Mf4ydk-okaALATCnpzeOmIiIsAR15FitpjF2t7aGC-twpnUZjbS1oBHcn_YWlPM0Dp7sskM75Y2kMSilaPVTv6KzEj10QvAWOXLQjixd6UxGEXWQVraTikd6VU_ryqMAux6wG8Am3Ijyj9JXDyRnfjJxZA57Rf9k75WMY0LhMbnk2RLLVLHu5gNX2MI3nuJzibTOXy1Fa7dw_jboNBLfBf2HFZoAJ2iVgWy1eKN8YUOFtdST_lyeYCA9u5ZyQ7kFjkDkqWZEGDrWfmpetJqFGap7bZKDkiWdMG75pe-KWC7MV2VzrpyuwAHkcZNWMIySMzFHLbHIm5htPj_iRMhVA_8FwWK0mY_FlXyGPMdH4wcXGUA0RJIReZNy-4gUw1p4Jd-DRYwn6H33G7ouqk9oWxMPGItEUrF3LEm3lhxJsn9u49fXp6w5NQ-SjKjyRtkiDZo8N8LaETcG81ISf0DNPTD7yKCRoHhARu7Zx3i674dzfnrOz_l72MUVVeBzv0bLsKhnFYI7hUWw0sdB195e7DumF8jsokUm3tJLlBXFa221SnB59DbSdBGDW8NBu5yAONi3HP9LxVt0vZkm7obETSz-gg3AWNg8ZFODOz1o8mcdRiBSCZ-oKBJZG7_RjHSqv4rdc3MtFpgffz6gT021-FgjDEhO_dL89V43ewFJ8Qq5jCsR5430NO5GRWGFSC74bs5bFdYf9-yTb_9K-ZU05NTUNd8An-C9q4fUy1zqyOtlf2gtfEuDCR6m4Vadtr4MeAm9PyVmBqQuevmmLpBWQQ2utlTD\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6832d95f809827.14252017','','','2025-05-25 08:48:31','2025-05-25 08:48:31','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6832d95f809827.14252017',0,'cd-form-entry','',0),(43252,0,'2025-05-25 08:49:31','2025-05-25 08:49:31','{\"firstname\":\"Agnieszka\",\"lastname\":\"Butter\",\"email\":\"adbutter@gmail.com\",\"contactnumber\":\"7920761184\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vaGkJP_cJnpuky4bCbmdlyT&amp;gclid=Cj0KCQjw_8rBBhCFARIsAJrc9yC3aMUI6moGZ5EOZm58nJR9KLwEdXhgvG61XfrpvIj-gQgfg0boIZ4aAkvEEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6z_ACiELmSY3ZD1iJ2AU5-Ss_Z740LxfFtLA0yDVQOkuC7ejsKHFRO5jUu1HRrEFVScxlzxlqj1yPwopVZ5TZHdwolhiAiKMrYdepKRZJiwABoo7r1gNksN5byrr54GqUExVqaFlNXdbmidYniywqFQkZWPmGv3Vtyra3uam_UxlxHPZ_sAhi7kn0UOPRQ_LbJc0r3Xn2-R-1vtcqUBfH0_rmnJ6Csjz2YVeEUPWdnpZcvIM9gCDBgWsDh6EfR2G-C5JZrlqTaMKGBmaQD_RmUftgy7-WI5_wbdeou8d6v5EPcrbuPrR3oQWhOjlD6Ix_D8VdE5ksDeAkjRYiGrg08fchjWTCl0Z3D1ZWYRtECgF1Wx4qFbDxk7g_NhdCrlWZu96uFnUi2dKX0IMD4sdqOdKFeksx1UejNYcgGT9uAtvUA2Qqz13fLH-3D8a2VesZg26RAVW_oVgLdLU2gkSvdq99zLTnhdpYncWC_c1kATW7JELy4GfIvk-msgfhGkz96sn5lLimVPFboOYaN85cQRGJo3ImtVzKYnem1obgmnB8qVhzzmu9MXWSQCqqi0fWao_D5HN9EMNQApyajlDFmudvTfqgIQJxKMBsNTdJF8rDCTtA-JZ9qI0rF3Ft4kRyGdKVC8PUvJJaJt6mXfcUn-R-PGZYtc6YTEsuMd1bnXW_V3ZGOpu89zCPFvhVf0M9syKwElZTqWWubT9-BarPZ2wpYGvdcMDU4zZKHnmByv1qNjoQJfuYa5jMflggYBbPG93eHFbrlwBdEuNWrbwe85FcqC1puido4F_advN2DJuic0xGKazD1H3fm5MjTL8CaDUCbaCjAKcnbZq1_xxUrvmEk6iaF0rYS5029PieN2kLYzQv9dcuYiyhiBbtHzssuRKK8BT9yNBIXaIfJv1S1OcSuvzmwQuQONtrjIV31BqCGwQ70cy9PkHSdGOxRIbq6dmoWm7-0vtfPKAdp7xJCY6sppoltnXIeNvE4Zfn5alMjmwjE7WMc-_7rtJFLZAoLgW9RfC5kjgO3kBoYh2C-H2XcY5VJ3auhBTfyeQFZDHyNAxfGJmmSQeJ4tUZb8RfNiQAR4tqgDx9JA4sM8qIVZOsR78frWywwgJcOXta-smbQX5NNr8n2Es8y8Wv8Dd0k2WRZk84e7eG14ZCt1gZuDbrIqub0oxLnsEdoU2WWycxX9_yDNwXUHSP3isb2apy9Dy6lTTzIbk1qilbeu4p7m9uigBA8JePK3EJbO1W9fNGtZF3wjZXMbpDrHfbqhCTm604d8GPFbJMLQ_JIG1U9uX5rG0LFyky8GylTHqE0AOtCYGev_FU_Zu7klSS4n6lkKGpXVV0rbdgmZNay6o6yYIXwpxdZyyZejFx65athOVYw_bqPaZ56Vi5BMKZUY0-TNu8HAhTtqMZPCSukqZqIPcrtuBMUM2RvZN8gN87FzDgIpAT5yWG4Jfh8ENGv1s_-3v8O_tjJf1Q5eM7KWs9r7V4QUiMaa24X66xndu4IXOVLWAIXqd6bj_kLIWthuuXgQKsa85pvLka3J9_MhPc8kAvQek5DHhIovlwm7t7gV11FZwSl4qrZFDFTRDfftEdaMkUanfzQrjmKIgS9uGOfWzvO0Fi7XjdhTIB_vHxFlA-IZeuFpywdPG7plsqb5idZGy6v1-TdLuoHRPqtTeilGFiSOpNHKXaTjKC3b-_xgD4P2jgKcjC38bToIC1VCHRpq8MVubVOcE-L8o3qNaXwl5Z8hq2KxNP8QFlCYrk4tQzff2qLEAo_Auu-KvjpN9QRYd03fNbsIvoUwG5nBLPbxF6g8xf7IZ_iNahgFe2mp_jhOo7ESpFzMoh527YJWK5ruzGmfy9gUH8dr3mbVAB1e6DWd30RaAT7HlTLZZPB1XgO4hCLbMrPS_WXwZSFKopVB3V-CzBFB7SjFoQwKzDmNWBdOCh5CmnOe_e47vts-6uWOeyjOkJ56SnwnUWfoeL2NLLr1CS2e7z6JjvNUdMtebngorTKPqDE4Nr1Sn8BbTvh5PFA6Ry6U4ctZZUDitqc0M074gS2M9i_2lZg8SuuuSN7LiRuXRAlpEJb9I0vz-e15ieowEVp8wCfh1gwLoY-w2smozz1VSwecpBwfCNfmIYFDr6pBQG0SwDkXMgm0_52TSFZz-59bYRM3r_2dxy1YBEEaytF-cGeep4R1mbF9tOYGQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6832d99b558a71.54519746','','','2025-05-25 08:49:31','2025-05-25 08:49:31','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6832d99b558a71.54519746',0,'cd-form-entry','',0),(43253,0,'2025-05-25 08:50:29','0000-00-00 00:00:00','{\"firstname\":\"Agnieszka\",\"lastname\":\"Butter\",\"email\":\"adbutter@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vaGkJP_cJnpuky4bCbmdlyT&amp;gclid=Cj0KCQjw_8rBBhCFARIsAJrc9yC3aMUI6moGZ5EOZm58nJR9KLwEdXhgvG61XfrpvIj-gQgfg0boIZ4aAkvEEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5y-ZZ8vVTs8YVrq4h2flQZAtSx2ak6KQAcL89SbZgBohi_8ZMTbMtlsAwTZepNwczKYzO9eXOo1d41MZ8E1oLVvK0aQY3NYGJeA6qOtnOv9eV-Qr9NriM9qVzphBNlYCE-eyYk8mg4dT1B7Y2cexVUrtvSVUh0x8NXcWd3TfI521PimyzbUIt2oLuki3PauoI6ny0C5oXS0rz9Wm4rK6-BxS0m1GqSmIk6uMlXBTjuRl6eQbfGXrQIwJBlTz03i5zXjhpjuVTDGoKscohCuiA5HYMxLG_HoUKsvppDQyNuynxWkN3FddE_rjnGJGa-Ju34vOuf3tz9nsrtvNvGaX7prflpycsrtDsC6892QoO9KbHt89d1SmeuP2YkMYJ3iJmjaRfgjqqQxBLySfERfLoOasKnzCM-5fgqwy7s_5sVnG4yi5PVL_FVoyVRtW7R2mBJXi9Pq3mzSfztBrCJHYuhIVvBiannqC6mbYIRqX23VzGWxIYw5jCwtmZvO6mKdPwvceZYT29I8xS4ALeY72ies2ExDo3PKlnwpJTlWdfP0FGF-dbyo_W9hdrNYsxVtLYI1DDh2YknOdLiyPSVgbVYnSpI3N2VPqJCD3IMI9xq9CbI0hpjkLRClakfw1XZoxTzypENWgxKDrcr9y2kbqN1JOfZ1jcPAz3BBVeDM1lc-vVBXxcCyo8_YwsgAq2oY1AnwcBBKthOjUTsuDY4tYClJ5HAKkFcC_vUj49dPXL6524UnwGW6KvzFj1aPlKL2yH8UOZ4IlBW4MHN4ceBTIBPGYZDl7PhbxaUWn-hoUj0XBptJr8IwNWOer-ilrcwmE-A1RjIk0FtQ13hfOtWFd0Et8XMIttFKMXIvviBYK3QCDxu9C2H7mA8IEJjTsLJ1M63kgLz0JR7TPF9HKrFCBWtpD8pvKpIT-zgB6e3F-2Vcuenexz8VFj6nTIcJCxJbjAJuiT8SZoKmrpjnc34vsycBPwjv6fG3y2sm1Ml0Cma8Obhdt6ACAZTqe14mhmNPq4IHrckZ2QlYQjAtQD6fx3Gdc00UlkhnhuDDRnprnMT6nXCyNGdVyoeQ7M4g-Dyo7NwzinoJd3Nv965mWeUtXJQgIbJ6d9PUnkjaNeH2fuD8Oz-DgmMCQXYD__I2tzlrOX4FR84VhkseH4zvg8ahGV238NYWQLJdXowTtHwLkTOP6n70ZeXhMQmHVxXnY6TqN3ML7AggVtrqpHW51KpODjanXmO6NftBHEliXRQKEEiD5OcYcG4AP5A58i31C9YQc1RbCHZbELZmIJ93X4J-rkd2fid1zuRSOR_VogmYTuFcHUhd95RcQdV8L76kdFpltgrZUsoJ6GmGSNhsRqOdEOcGf4oxIg0IgGblnjrvgrk4VFjBXcP57NlRFQWr5FgLe-KXOnnzjIaTguyMy7IvGhweYZfqCe0rXQngkU31SYJnJBqHclfrN3zert7rVS_uPupdRUAbqLXOycKER9vzuocqPGbMDXfrRtaqITrveT59naWr-OcKy9p-cndOG0bSv6C4degkpyc4729ftBLpo0Jg99da2N06g5Oqwsc0WP_dJQ0CxjCH1FWZKqOGTz0uKzuUWHzPBn5nfrJM8rn36NAB_N4IhuaGx5UjisEJYik5YDhqAH1SqXmjTNxnmHREewpRxOUZw5CCPSFIK1sp6aS9tZIlfOyUcW35xrcFvtD4tTCTX62AymxnHdFq4NIPjRaYaBrbjhxH7ekt5DO4KTD9qlhIOALuysQwJXrB_lgDCaM7e7ufgzLsm2g1RXm2X5AAlAt_cDaZFtjBMMk0z-75U-75HHZBSvVjler7kzNOa4HNCvpsLNXm6wDV3NAdS-oIYZOMJoCKDdXdqZN1jFnZHI2nluTxOESsEBkLPNaS7CyfUZ5eUNi9GKYCe_OxTqfA8yX48S1MXBdseFvHmuRJe6k3QT9xOXB-G1kWpYxOXJn0qvtDq-u9dJSs-wKpvRX2vD7EVbUIh5qbOGO-Y4nko0efl6GxojsoXV94tnxeMDVcUaMYiknZQDVMsI-BwUlOzk4t0irR2yj3HGxN-M57o27SvJDeKH19KEvvxDUyYPivViwYrF5okt0fxuE7aTIFxmgjsjeZIbYdvb9arEetmgKYLA22faN9BwUA91p5MBWeJvOkHDNy_5CUSLbX6VUzR2imIMve_uTjZ3GL-HWbCOzAQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6832d9d5423671-53817405','','','2025-05-25 08:50:29','0000-00-00 00:00:00','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43253',0,'cd-form-entry','',0),(43254,0,'2025-05-25 10:41:00','2025-05-25 10:41:00','{\"firstname\":\"Kairo\",\"lastname\":\"Georgantopoulos\",\"email\":\"jimmykairo1@gmail.com\",\"contactnumber\":\"6944466185\",\"currentwork\":\"4\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA73IENxA1Hx-MWEfJ4Pa-58NGyO7EHXyGH83UvE3JlVacMENuGN7Q9WdcjvAaOHhyL7ikyEeo-OqhljSpK6WDAcfEnPK7r4JGoccQOGTVzF0ZdpmsGKpeB4WtTcgIPx5WpGMrEneQhuzX9BHx4aOIq5zeE_NxcbqmIZwWbTDNI0sDdAoQ8Bx0x2a5L0Z5ccZWvF9vtMlHpSSAyg-6fq8E4nzdidntyiPuFWD6_woDjkTYSViXx_e6-L1p1H8N58vA8ZYTy_2wUuu7lejQLwfvcAc_L5sprwIMM5SY6tl18tXEOwBEEY8tLhX4AZFxe9s1jHZTtE65P0PyacOQzcLSnrQSJ0KcZ0r4MuOav9QPETovWWZY8hUiTc15LFBQWNvin83ML_eigA9JEAAToXNJaMhA06jGMoA7dALMJSB3e4o4YYaiQZBsWu6Xt3q5DjIAv-FwWmNTQdojxVbw6MHgYMW1qyOi0OFpsBJTGVeA1q2T0PhLvX-vjaulp_xf0LsVQzfec-aYtrGhpFRWOG-HyHQ4Fw02Ea3Mte78km8RLjDAsGpxkz4OdMWwvfzsF2vtV-jXQAGwfiRIEkOXnKSn_1nTtJYak1yFIpOvHQ2MKBScRQ0Yn23M8C0axgdSSNp6qDHAhqcvl86_k3geWUv_rZEMpgOSwUiEKmUzf5EMnKGK7H4iaIhYYTSSgP_W6AVEwAuZczv9GGQ4JhchrBybOJjkHORGjtjG4X_fjNRNiZt_z6wyv30wO3TL3I2TBbNBFqqbWSHGBc5Wb2otXS2Mo5n809pzoEIc42AzRpaDjugoLab0VsD0f_Vx9e3ih3utarev0cFXtqhKrQbTUayv6r9Iep4wteMvgcXvABmFwqf0LXCPiUVRahZjfUnfJ-UWVJ21iEaLEKCed9T2Qiw0KS9iu73enK0mtH3dNHTubpPNzMgyNcetbjnSY-nscvHnnv4mFgVkuMTowodfjzyHyeefEk6CWqiiMhdqbvUxyrZN3L60tTpzZemTTPI1TSV3ingnZ8gXSl49OsqG0R_U39F5P79inWBbKrpfIw5yFGl5nHUMreROMWpDt0-WvS8NzMX7MViPDcf1pqNtDGCEdtmcToHudjEkmj-T81IoOpSTr3eIImzjqFayti1bjLDdSzQFGL2eEG69w_3oxUcM4ubzwL2k11r6qO1qnMjI8GcDtBhS1aGsydQIAQDe7aibZVJ5NsEPEhTjJFDuGPZUKCdY9B3E9n8Ll4H16rArr4-HVvbTB49LBGTtoL0ci0St6F_NA7xokH3O7MDXpFX0wzaJLekEUYclvBeszmzNKEEp7y4IhfnFx2wYkJ6jgDon4GxduyhAedJZ5sSfgv4V31S-Lj7EPg21INUd-x2ViJcQ4FhTw6OIDTpQtrziOrmlxVV8Qmhzd6grjGdXU7FoN6PBjvN9x2_qJOb1dfn0h070u_vWxNKINYqInbMyYJD96dx2XWYTgumoCxqrmxlA2J-D4sckkN3m5pY7tqwUlELujpq5kgIIP1iJd8MQQy3NhE7dN9WCfsfxUZ73UZz7KC-IDeiOBpk8Ehk4JZwoq9dyaKgwoXeZX3RoX3Ao_kmJjCCCLooU4pJQmohOtNTlzam5apt2mRjvu5bL83Ee2CZjkTtwhb0eW6xa0rnaK60H6NWNMVcxLuOY1-tdE1evL1R3Ll8NW7lMp17EuLoHg-1k_qjsBquZzrOwB5meVafo4JdNYV5jx6CFfPTomCAexGUcKf4XG1sSs9zy3hh5X6TJlChqti_mLLPsv7XjvSZ-0dP7x0MDJpSuP8ZjU9afP7CdwE8-lRRrLQvi1nztwpI5QAL1jRZIxi_zjVEM2KmwbWNeuScD0oHcj6dwYtPsX6f9lLL_-yoA63PPwZIdSHaUIpGss8M-l92SUlhV3lfwyxtpvtVXnIcDRizbetWzsZs3OzX97n49H2IFfKXtLqZGTPf_FJ9Geb802IGnyIQzYXs4fAtjgDSENWbtZdLguvfbTQqzbsgYO5i34KBnMk-kVZF7rBSEVmUlqzZ_HC-nxdNhBdK_RoxNTbLOWpnwhL-Ub8WPar2wVSd6KVUFzk2AzxO5x6XNk40n1scdbrP-qklseqfFbJ1_3GkuEsBnp_kAe-E4CM3Ss-tg57L1GoZ08663pu-F43tiXebQVSNtfuj3Iy\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6832f3b9b2b626-96479022','','','2025-05-25 10:41:00','2025-05-25 10:41:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43254',0,'cd-form-entry','',0),(43255,0,'2025-05-25 13:46:02','2025-05-25 13:46:02','{\"firstname\":\"Doroftei\",\"lastname\":\"Arnautu\",\"email\":\"salimaxun15@gmail.com\",\"contactnumber\":\"07405261324\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjw_8rBBhCFARIsAJrc9yA9puOh4EM0KRkIbgdAzNZZuw1yrx9ndbrH12l826omH4KSUqOfgecaApF4EALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4OcYfcSYpPa2PtS8P_7dr0qB04S7wP3_3QnMgtnP5ol_MhQIcGOsoCZf8PkdVCpFq7JkoOmn8Y74525TSkdBzIkOQ7Nl1GHCKW2zNGo7mJTGmn8F8l_70VhnOZUOYY6xqfD1516Pi8PTdtBYnJiGBfvXpEOaYovLHg-G26lY1BC8f6JtZPtXVOqslequYJvPG1OQGte0TcigFzO31opPqbrPbGnf6ijX2SRHQha146Nzb8JH2-ADvh6e22TruBRgxVG-bO2_nyYMU-wgZ-ssjfx33nvditz2ogqJYgrWLT3oGyyNDo4MmAIbpkWnjV_i7EJbIM4QlPuNAjgYs19l0D1q8GFQQ9p69tYbOAJ2mDMxUh0g2PbttAQpWEnmAwQqa3M0FsL75-xwMFKvZyXvr7VpxioO1T5nqWZ3ukMoOqaCb0YWk-5eIAokcLzfL3XwEB-og6BxuVVw6z4EPBgR6eYlrEXVOLeiIcgM9MLdnXBQ15TAtGNbW60LrN6XyZbZ9Xa-_JxtPqvEIn_k5P4SLrUBKfLJHKbv4nl2pzDFlv795NiJ2IlgVi-_lJtYjOb091vgSt7OFxZW8xO1Fmv148gnAmu2rsGhbbgHQZBwRkj5EHiKgyUjiV3skfKYrGKcSBYGzVoQkMN0M43itqM2i5TjAnNMOzwPzJ8EUA29L0kH7lsmEYk_hv4LHE43_1FjMHKY0Gnn4MPMloM90pOB_cw1C8zJ7ewU6BBcCXlvgYLFbIrPdl0TyotvqnFwZk89iLNjuhevzN2o8Xu3Nlk8vRVKJj2cz6S-TK-79KKrfY1ond0t_0QHIkJjuYLCwgWvRxye0LV2mbajdvkGNQqehXafZE3iy0Okenh8yp8UCkoSQgAZqbG0RZ_vEo-0IJG1lgZJgrW56CPAr1XFDnxDk1CM8uZjAhWDj0JD2ewXrT86r3XI9YP-AkMpnfZ2p58yHQ9xRSd-yTbWDAVEFozjAfPFQ-kcgV2MVkbcfVpdK7X_wNF-1tvFvFOvnOub-Yq5gCckb1imNV-pRUobqHQjPG7H0AlEL_RX_3QFKIxFCL2NUTYL5yEmytLVONfi7SDTV_IBH8XKgS88cp13fLj7HoTpkEtyZdpVAh5AcYhTYdFMp7AOMncFT-wjtInKWLr9VxCEowk5GfwR2uy9NAEt2y99Zx_YiM3pjCLv3H0a6s1ncHUxlTmF1gmTgzPTuf58NmOVKrHIQCdbgV-Qt2oRbHGuJA3aaWEoEDyfQFDxvYZSDc6tg-943DEqinLMChPsLjCwiBEO9_If_bGFKZiZpLNLzuBd6Y8Wg0yoISZriEhjtydbNtyFualJXQlq9qlQbzgpok0-Vef610gh2DFER7AZii1j8OBCmR7uxSM2QYYLSuugY_WOiK4O7zF6FcrrlwATOgj4h_dZ1EdlIZywN9_l6P02T_scjKSjDLRZlrdpselKB3ng7RLaQtLFqCUBy1_WltwrPiHavpuF9lIIOvFHgUD73lOY-JE7Ks5YsMe0ZBkmB07iz6sh5am9gRaLegTJwszgpjpBuWVwB1PR8shpBWB7fKYvMjDwwoKSQcsTJ1K1dcC9JxXCi1NI63dLnrN5eD9i_HiZZRut2fWZKJj8aWUbr3ERdMio-msxqhXdCWjqmzRdoI0qX-auokgiZ7Ha8ryCP-gRAM1MQVuiGCfh1dgsklQ3SjHsDibbjoKfz3thYehMKbdng6cMatCANGKWiuenqkYF-gvUHiM9OwBOHtk0SvIeqRcmL_2fKGA9qe7cjZdgcAZX2loLKXhREKGA_s_jh-MUxk3zsuEeaOrt8je2HFtpnytJg7qD3qGt9Cj9QS0Xp_Vfz2Xo21Rwn390fwTRXMMmns0ji_YB63Vu8OgGKid4iZGdoLxb96lICPycIY7FQKPRChTeGGLV3NjgaIYovRHvscF_QwSvjkLaGGTQ_D7YI0Hq56-NqH30i9Ob3z_mKQhTDBp9a8PeUC3v8754kBfyoA6s6Cl0nVcG38dGLYwP1PYUrnRXX-iq81pxXDvMNmvpydgWAZ5-0bVTABM64bobm4YS-EnYBS1ULECHmPfYSzr4Ky6XHJPU3ABZfSPqJ_ar7uuVEhegcIWwUjCpYHnxERkX3HsZOLEFiECvpR87hey6zaYK7AshZ3Aj05HO9A4Kb_EfEw7fsTFuD6w1RBT03ESg-xO7k6Qdj2UqtWjtbV-fZAreEY-ZJVwYDkcVAy9F_h13mhcsTfElBcATqrj-JlFdbuBaKysifwtUk7xr1Zr_ti0GB6f62SCVmLsNKW9DnAzVyT58SdL_1qddim21e5EmXoUnrny_-5TD0oZn7PFxX-l6UkmfO33MoUmCi-h5RyBhIeywiC-qZa\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68331f1aa79e27.38361259','','','2025-05-25 13:46:02','2025-05-25 13:46:02','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68331f1aa79e27.38361259',0,'cd-form-entry','',0),(43256,0,'2025-05-26 19:08:23','2025-05-26 19:08:23','{\"firstname\":\"Martin\",\"lastname\":\"Lawson\",\"email\":\"mlawson10@hotmail.com\",\"contactnumber\":\"07810263683\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/iba-membership-info/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5xO6eSawrMmods7MhDpS-SIzN9VOgDiCWQcUAfuD444BzBO8oB2XzNw8HeWiL8TZArTngttj_e_8EcgyNxy4gpjEVacmgV1mX1OezMhvq8Z1QKyAc_Y3V6rUgumzP3AKovclT3l3A-CWlxCM3tin9L90pdnNCpLcR3Kt_zoeM_c-2lMkGiKMkTl0RStC8LM1bRsjwl5oTrPgR5TxLPGXL28W_uxadBDWs2-y5gTjUvSCxDO9lK2PjziOq1PmaFfXq9Eyhp12qTY9TCiohuJ6Oi-F6NgilrAmEQCO1YlV60fJCF5bDzOfveUlOnew-YG8vcIAhAjasp4d_dw1158ki9dH4w4v5IvknqhEbYh9oDg3D1REDJfra1ZgKXI-nIdYgN7wFxZHfHKRhNApk7MFhCNg_BRBX0QNKQhH4JAu8IGN3-2YxvbQg1qVGd0DpZzUbIfI3P2ZEUNQmIKzf7J-8WlT70w_hjdQSNi1TuwIykxEuazpreOesoWR0ONcMQ8xuA9BJpvrO2T_RBRsXPhnrqIWsY-5YHqk_SNLQbRdoHK6e0RTr7k1EFSOmH-cM8QeICwGMWAkBQ8xthPCs2a5VT87NF13-7PbzLKVp2vSdURjgf60h7P3gSz6mTGDYYp4EXA5D7Qkzexh5d8UErd9pRwx0kpQu9WX5GlSHVDHeUrqP8-J-VHIInNO7OxdTG2yD8v6KU020w2GeyA0Le1kGrtuPeYOWxsdkMIS3ryjog2L5yuojlqSRWyqn077AThXIN9Ne6-22bat5FGqrlRghlBxNE1Y3-hWwUS3Nw8-RZmGUGDu0jj8Q61ZzFXRmdjFU4S8sM_t5ehJmzUu4sWZ85frskWEsTn8rZBhlT6fTHav0A8AdMpAAb7MSpd4MUxj2ZZMXvhVWbomZFRDrGpHk6QuIpzPPEzwKEkPClQes9hEVNzvmjTZhThA23AgGLllpFA_qyXEhOJvnk_g2drgcRmFk5nLjxHOSH5_rym_r0tFA7ur8p2481VFCZVc6HqvWOe_75aftnTP5qBEsDGaaAQnXVTMXmLTHYtZSdfYUXCXZxp1ONMs6c5qZK9gs98oCjMwF6zZg8_ro9wCm9wbfAjOyfBRqTlKHeZ6UpZebwVRZGjvNDaKA_sNo_nfM78jpqyI46eb94Zf9pVyVYoTr2-PG5_WiOgQhKIiOvpsLvm9og5wAEm_vixXPrdnheiq-FdI3Au1YcJrhKBq2pUMj6FhpZlx4j0so__e7eFut36OWPyVEB36iOHMvN7DA5Rv-4Hepj1D08z0wvF9b0OTl90sHNP4Pz_95xNq47zyjH_XtALsGRruzFuz-DWtki8MEE84buJZC7VztqyipL_Rko3BEefm8xZyVK30rdQ476-OEUf0Ei-UPe-rjX445TF-sX50RZfU-JvW0zuGRitbp9Adhduo_2fPm93Nk7J5wqCr3OfnoGecSlD1Lbw3tq_Q5wVkb-6BZkRGZelcpCyqzj_ZfozK3VA73XRC4Wu2_Cl9y33EFdHjJ2PkVLvQXxxY_WRqbYJ8amXalXE8dZL_brprpy5RMpM1RPR3RPgH792P8JqWoTdlCSLmnhmceGPuwX-N1Lmnz9_EZT6uizKaM4AmaR6L7W5IoFucEudslYff_vhSZELmJEuZiblolFjln9Wlpbgi4UdIbzfuakOTcZoX0w0baCEPvg5IgNMJv4OxxDC3YcmNYvycbTds9KU2DHUiyKr5g_0euOwse5q6NdiBlmzp1DiAiQ5yNp8aVjipBdufhEfm6NnLL7g2KE5-d9-Pt_lGkA4VxEyk04Hdf3ZsFGgdJS8ZCkidLYhzVJ22LIjsw2gIpyQFyJoSquistNVvK2p3_YlSEnQ9O0fZFhdv8CjCFthbxip5zlRbhpNZJyw3x3conoCqB2-o_JNcmHlX3fFFvAwrhYjs9EOphxfPPdaPjGlm1-Esy0vVxWXE8fCiusw2OIqfuwLRJZbwK1je8lTy5pJoRdMywzx6S3n3YTjSj3s2k9gaBuoIuva1ob34M4I0x29K8ZbRS0t3ERv5CQPg-pxm8iqVNEcaLDiCw2w5aOrgR32Vra9PmslzzMhRUve3jrB8Duozq26Qpji0jRgG6WsQZ6i0rymdiwv_kx93jLKWWDp1QfDQ2CjV0Cuc_LGm0Q6zpPpnjMpVRcAH2USNQHMRUm6sw8phiEEen6gA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6834bc27184c25.19400178','','','2025-05-26 19:08:23','2025-05-26 19:08:23','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6834bc27184c25.19400178',0,'cd-form-entry','',0),(43257,0,'2025-05-27 05:46:32','2025-05-27 05:46:32','{\"firstname\":\"Karen\",\"lastname\":\"Nobes\",\"email\":\"karen_nobes@msn.com\",\"contactnumber\":\"07540388751\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6t6sDry03r_ABd8duDUB7j1i&amp;gclid=Cj0KCQjwotDBBhCQARIsAG5pinOh_Jw_FasZa_6UKNez3z59WgkpJifAzTCsqmKsGlvIaAOYe819K6QaAiTjEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7i41pv2B0PqENCwPr2ouHYGvoQZnu_EHABuAJpLREyJ0y1z5lTr84ChURsJfJVeJYGkfrp6OhCBilaHG8vk_3Chsrqalsw2QzVU-oNRvzGKbIUaGguYmQK7fR_qvAjYn-1vmBZF3iS1EwT7bIvYEIVglbZHoU1zwql_M9iAMqxn4Hu2xZ19fibofxsHfj95ie7LWsz0clxxSTRheH6NADvIgEBwQCIZAtP9DLypz4pYjmp4NOSXSd1GxtGXLQuu54DqvJqjnI43L1hvFw--n9AwHWxfSEd6Ti1BgYiH7s2C06GyGpnSkUoV_vmai4Fl0EBYCLAUVbYzLLFQyTjCrA_Z9g4V9DoHSWKDNK_Cf3mhXAdYSrFXJkYISUCg2Y6i6QpVWfSc9ek2jt9KwUH3EAwdo9yyytXRGmfvS6hWM7tBzOj-xL0wSi6UUOw03A05fvDV3uE9Z0plnswlILNJDxLVr1VDj_2mAuhaFZEcCJ1kPsaiTufVnX_YgRHAEZ98ef2tcBm0HYDObBU_WREm7IqLI9Rj8FucL69qKmvI91q8kshLPBJtTPgIPhXrtyw7mg2u7Ow0_a6lbwMj9NbPOeoLSWALzD3U4MM0Q4uw7MLadtDReEzzXhemug_ZjglJ1XBECR49H64y2dbF_mEVKnABkFmY6A4qFtmHWWtiK8a6FoKlRemFZT9BESWmvAxkZsu8PWKgRTLpQwF3r3JbcT2q6IFoXEkjip8nyz7aiKZslv2BXIeKvLKn_GZQFVAH4Ux_fLI_X-rzwYmLOMu0ZS3gotMgjMqgOsXtee7PXOlU3FgIHBgnHQy-TyiwKgnxD_B419isFKlrReL5whJ7sGIVhWYjIZKrmYVHYkI-_3-csPdKy_CtXy9yMpfara8oFCytMTjF2c7lLm69se61s_YyhmN_PLraBpf3ZRqTuv-IBc5hwu-4ljM_-uaP5kN7z499HkUDW5HdLMxZAL-2aFmhQU5ev_v-wHuYmNPXWiCbIMLYcXvvKGThphfsQ3XJyfatlvtVqqGxhmCNsXeU6pfhO11escCdgC99wMJv98JzKCiLwyEwXtz3OIgcuNWb2d6sWcIHv0b3YPxPRtigY4saRgfdLS_7UE02seBA2uExwEVnFudA9AJUUHJeFTKxUkjzcEeoIwAlkHSKOnps65R5kbbNuQ7F26Ro7_DTtRfY2j_E15q-yuUg2APk_6D881cj920ERh-GGgapop9aD79EB95qutrPrdvBt6xKK62bkQ2Yn_ZlJGUcs9c64a3dKniQdoBoxyPJTQ8hzJht_7GPdKY1bNU0PjilPe6OjtUhWcB27pW8iT_awDxO2MFW2YBQzncVQ_TXW3puCDjmIAump9ifTv04qqQUEPaTZEMRvkXzTk4VD_vHg87LIsdfQfIHL1x2cVqTS3CieUWrfRM2qdqcdSxNYToB0Co9xtSEYMDc7_q1f1NxkLNowVbiodLQRCCyUgqUg8k2oAYb7c_acJOKUwIjdi1l6oXU6RqfngeCsyMqwIr8dqx0L1PsReWv4rtURw3ZIDoQaZC4iZ9KAcRz5vN0oCKoe0L_AcYYCzyGyzYVAxGCLs4Fn1px8uob4Z8VmUzRrtIv3thRF47Bq0oTKuLqkz3eC12uGlwYACdMvp-cTl4kYMowbHFxDqsqasHj5xdaV7W9s8R526Z_UBoN2AnDfhIIPNhupa-zlZ9uAc1mWZtgFcQIzYHliBQtP7EsVgrFGjfAxV2xZiBZb4-tKovbmZ7Pc3clI5FvFsIsUL2vImOBmIJJuwct_-77DyHRtWo3FRjF6XThie5RORza-v6hw71JOE6_LOINyKGLIDHKkNIEyJM7D4YvVL9Hi8nvwBQcncvR0o-1zS460K_9J5fzCvPJhSv6ot6-5igx8QkxRsHHFaAeodwOTeeqwOfcN5kQlgUNvMRxYFh4-fwHQU5EIhZ97_mRtmd4tNah8lUxFVBLa0TTJ2-AxJfcSHwvwEgc7CCRAHCpFYbqrZ-91YrCOv8ZdFQPpltwpDG82Zcy-sNeRHU_h0s7nV_fFvz_FW49fTc0x9nZpyE-1u2XBzulsXn_RLmUkARIYE5267d6_Hy7bhJAXPEZYyYOlYnLNm-BDqLOIlGeiw25KkKew\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683551b84895b0.95069798','','','2025-05-27 05:46:32','2025-05-27 05:46:32','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683551b84895b0.95069798',0,'cd-form-entry','',0),(43258,0,'2025-05-27 12:58:16','2025-05-27 12:58:16','{\"firstname\":\"Kylie\",\"lastname\":\"Benadie\",\"email\":\"kbenadie@icloud.com\",\"contactnumber\":\"07792708615\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uo0FDQ7kT8TvhT6m5fd9xCI&amp;gclid=EAIaIQobChMI4quuodnDjQMVbZSDBx1fPyF9EAAYAiAAEgKg6vD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6ueEfLj_XUSykpRb20EZvdgdGbdKWhGBmClMhtDU2qnB3heE7SnfRIJu8s3uSAGCCBSxQmO_Pe-SLz6nfkyLM9n0qNjt1sd4YxuDmbABJBljsJyLAsEA88AtdR7Cv-U3iOxwObsZ-TcXGcEseyzgntvVUIjGb7JoOoOdSVuemtFcVf9mKne_K6GecpFiQlhkzqNDuyAaIjuB4sVhZ1gydiwYMWIl1NtV4Oc0h3KkVidF8fV536mOVSW5DF1RphjzGpJ60Eqyuzf585eAv1LqXY93ZwWnTD6d140Nm497v6TOz1YgbPIwEB0xhjrl1b_Si2X8GyQfpmxE0_SNkqFQTBPsfaQ89khZXaDMT1zPRqdUcBbCaaZ5VCNOTs8lKMrOtadevXixwrk0Ljkeo_AvQ5ZxHneuiYa5smK3bjTYs_Jo8VpidPfZfgSGSMOcftKbpqlxeYhS8OVto4nlu-KV3t2kDvaSb3kEh-fv2uV4TdrYeP905q__lm1loze6hRcGvXjq1JfylcEtkSLwXcjTswR-tO0p6ruuZW96g_lD2gn1IxXxncJkEPNXG7XbqDZ8s_TYmEW06O6vRDykoeMfwoRihZGsW5ywRZUm9Zu0rxsMUqi7PW1XcmeTbc9z3f37A8Gx0r0SeriqFuI6TIlLblAV-nEQXdxwDb3FCHu2jXqlHzsDzxxmZ9Nds1THJ6B3r7er894R-FdIuHFonMM9m_QcGpCreV3l4KdnD9piznG1_Wui5589XxeEtfCjml4JZNUViATRL62HdXCxC7ZbTLaaZ9rre9cy4YHt7lSMVUWcXe5HKpZ9g8C_48bxk7mXw731TmtRdQEG8JOn13G3PhG96VwEqeJh_9frKLf85wsnlR-fhQMAPOnwKuLhLT46xntsbX07vrMd52HJqJ9dKx25_Gw7HyXEqR_rFErLjZ3edapkNYJhq4YNONFGCW9KJPPax5zeqV_bAlV42zi8Od2z-t3hhCVo92L6YSrAn-nyy85Twz8CvRzQ4tQhCK0RDdinpJXRNIc0ZQ0Q3gu6LFkMFcKEAuZ06DpfXvUGBAhvO6tNhzvOkdsc4d96AD2HlKooGO5yRyilFx5vp1qa8TvrrzYtZUH69CU0gwbDZehkIJQlFpJHuR0dfmfjFEDvzGpis1u6jpogogJjVtwUkUvNlBABQ_BNHAEg1uMaN_3GAvZXfhEm9IcnI4eOcx16kmOknwrh-oPA1vfk3P1uF7PDoNJqqRcqGPNB52jrh0YyF7lmZVnjhPHkU26RSqvSvMCBKZjXKacECxzcp9ifS6AEFKR-ya_dWq1NJiueJ1W6qFK9TacFTOrZepKoG58m0r-F7X1ZjrUq41rwZGwKaQ_vimSNJPXZkAVFdcs-k9Lg6d1Lw2w61tzKZBx1TfFgBeiBErKCI9NaoDC660Y2b_dMG31DAwxpPK_o2ruIv2k_Ffikny4af1s7mT9ERvCSmeuUvDCVSR3hSENCL2A1cF6UgbyQSuZTA8TSFTJQQ59EGGO9NwZ3S2ZQIocS9f45ESVvDtDK9OiFmM2b8hsviUjh16eiuOYXy5A1IOFxDqBjeSmXiYUbN8jyK37iyTC94m4PWm9v87ljOjLjyuDBooTaLGeHfCh-I_ewZtf8hHMYmI5Br4iuJ7cv8tUdpylnyp6N_3rq50Yd0WlW_H6a8QW344kGhNTH5Gfs5H5f2d2E1k9WdfZmcysVER1YS7NGF88n7Ts60sNAD2xHZRP8Fnq6hVDBNAY97bAkN6JVFU2Er4lyjbSpNbw3UmacbE2PC0Qj-4gPGOVyOW1DIkd8LxUSmHu-BCJVylSLMu8AVE0qVLYe86bmB-oNSIVyEuw1UpxJ8CCFYBM1uQri8auE5nNhDJnhVEs7tWpB_Q4BPQ9yxr0XnR4c1GQxQSmObv3Cu7e-1JIPLH-PKLrK514WDnIpXjh-qtBwKxnzgD1HDK9WLcC_yauk4cmMTgZHqi7GZhTQ7248MgiX3V9blnl-KsStN1vEkG4b6WHgeGaev0lAEmBJuvfpQdp6WfJHCeKu9W3I9wpjPEkcyxeWBV07DoYoqaKirdYlwetvUwgwtR9FIykpqOUQb9cm1rGFp2nMfRzXD9YQDcgei9iM4OpiGb2UYp62NOW1jmjCHzfcJnN14rD1I\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6835b6e81e8b55.18837030','','','2025-05-27 12:58:16','2025-05-27 12:58:16','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6835b6e81e8b55.18837030',0,'cd-form-entry','',0),(43259,0,'2025-05-27 13:02:03','2025-05-27 13:02:03','{\"email\":\"kbenadie@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"GL51 9PL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uo0FDQ7kT8TvhT6m5fd9xCI&amp;gclid=EAIaIQobChMI4quuodnDjQMVbZSDBx1fPyF9EAAYAiAAEgKg6vD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5X4fy3uYpadHpziiZV5xVn2Fao_mLHLMKZZcv1_T_AVlrO2SSHn37eQHSFUzTtKgxkpZAPzcjrt8PVwYHtE7avNEk1plCRs-3KMexU2pSSKXhvH8kOBo-jIB2ZNgxnmb2Xkc180leYY_X1E850oOFvH4J59OarpysdOf91N4RFgqjsgo1DDKlC7Mpy_JRDRXL-gaRURSM7d8ULVxBU60OI8dGWNVLNP7WkYA66M83lS3DfwjaxP0HqaFrNWB43rwmHK2W5sbb_PVEA_bDenkOQCRTa1xJFWq-edXDL32aOE2WTfI9Zwhejj06LJR7kSwChcc1QsfUYFlGQccSEj-vUwHXbBwswJvMw2Uj7pTS0KluFcVRDL33Gj2tRX49nDgWKSOndWMsPGP2w-S4vwDjC4hxhSj9dNd9JxwPLqgr_eU78CY5QTZOahkFjMJKnn_tjvkoSvDetA1SYZx2sw1lnxDlxqJGL5TUFaoEr5Ioko7e974MXEk9Er8nPpcbL3ZN5PYrqDtAN8foSRiDDSVxoWiQHRT74iJ5NFRhn0LDb6yDjB770JH_kv7J2Ce3fRh-5-SF69zoa-J4eOQ4qB5NZdAICRN9_4DKR6bV7JZQpjGTuBPWXU7YbZh-7FFlfABlRKHwu4_1gS7Yq953P3ai3U93UY82KERxbgHO0NPzDfTnqmqpD_QtA5FXO4CfRtElHSHQWiARcK1fDS2Diaw-DtkWwe0Y6riETK3Tdgi5irDfXqk0_rV3RkPD_RvEDPQtTaEMNFkn2PjFmgjrkF5k1HzrrRpxQ1pkKmVMXLKn5tPDUzpm9EmcACtfTRD3AHcBN_gaGEqHjR2cxY1VTwPncy5q2U-sTx3w2wsiaoLSH7sHGDDVRFhiqGtOFROidiU8SqWVm1jjABEmVkWSYbGF5PJr2enwGaLXrh4x2IZpZnhPOUQWb1O0MTyXo9XtcRntxmy-hyMNKzFZN_ywiTnOUjVQAj8sREkT9hhJ-jWCjdhPlb-XTSPVASsnXFSItGP432SAY3Yb4LtsMTWCV89Sh9Tix3_Q7J6E6IXpgekM1e0J4aRT4_RQji32XoEJxcRdxTE5y2QByJaBxukGOQy__Dvv8TGCLEV4fEksr5o9U631eiYJbmZA_S8NH5doRvKvsfPRXsj-fqUawREyv23Tur1PZP1RfeRrzDusVySjMWzHsWfZUQnqLyhrBEFu0T8jf2nxgT1G5MnYwiGzYd3Fagv0mZGvhLebdCYrSYCw_OiyHu43qlEg-10Tls_r2p6KIlcqnsYmZy5b6KT_3PxO7s5n_EyeclpkieRFJD-pGEtutRdJq_WMcvVfLuB38gg5cZ5p5fFpqKCKdAMR0kMwxreqEYrhrFsfvvfS_U199YWFQpxZkd8XltZ6RdoclRxAjf-Vzvvt7udrBY_WUL97L78gW-Mv-Te0i8s7lyVfC5g1e-Nrc2vwEHEqprcBJaV2mipCM0bc6ZGiJnb8XV8hLSjXpb6Mt7U_VvARIERYZXT_OL7EuJ6cRbrtSIsvUVosyGdTRoSew62kS8SMZ5pVffAfCoQJP70kmMF6D7otBzt8grpHFQ7impmtbuRFocqDWQjl6OXoTXH-ZG_8jlPpDyloLS1WhUDz-56jpSorUChSJRuQ6prJjatqLtLyeYlQ8Sr3a338Wfvy6KSijIrgN2EmxQwNz2I_DXzStNhrJ2B4NxdZ0dx17x91fdyecM5LnI7raWYRkmt4DLwaG_HrqT3pAYJSRlgpQhwNWLWw-XEK8wjoWDReTZnLeIEcgqhnbDG0Ys6I4qj6_CQOB66p-sShped6Nxi0gmZwaOH3c7rVRjedZ2xgHArLPrK80fNApbbiHpVGIhY4xkj-wl11cjck7GJb30XT-KXza2VrwwIfL-BBw_QeHYnvkoL54k__TpHD6yOzMRgNVcrS3qV1y_oyRbVwjO9Tn4WhJITwSNy6D-GgSnPBV_BTrSNpTE5BwD2HrYqzpBQuZKnzsGso63CPTs04xqa7R5dPQhMG1S8dEej_BhkL0awMNilbhoU1OlZh1eZzyvR-UhuJMlC5PBkivHek4WHaPSuGr_qb8yh4B-b0h_8zfi7WhgcW8Au0T10F1AhPpMuPL9aUgL33kRgCdl9wmbQ2n5_eSpT0FCR1ahHgtjchEbnsUpxdhCgvwx39h\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6835b7a01073b8-84872023','','','2025-05-27 13:02:03','2025-05-27 13:02:03','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43259',0,'cd-form-entry','',0),(43260,0,'2025-05-27 13:06:36','2025-05-27 13:06:36','{\"firstname\":\"Kylie\",\"lastname\":\"Benadie\",\"email\":\"kbenadie@icloud.com\",\"contactnumber\":\"07792708615\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uo0FDQ7kT8TvhT6m5fd9xCI&amp;gclid=EAIaIQobChMI4quuodnDjQMVbZSDBx1fPyF9EAAYAiAAEgKg6vD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4mWgQwBzCbkVXAgf-SVM6W-_7M-zGyQXDczOR7diWVgN920AoAgsPecSBOnkgRl12CQ3X0GHqWhSVch8Fvsh-RSYmyfP7QSxp-ZrjxkKEYlYRQBa4ZpDyLLqh1HYwPAx0ap3iW7qfBqrrLFO8JzWp8OclRA-oVDzlDdtjW6Cah_o4TZHnxZtuTjOohLWli90bv-njUJ_Gla7O-skgu9E3ghZGHvJ96Y986sizmKfiApt1FCNYJZa9EIPRhqNguQGVS2ZqpaX1UJoekxTzbRW9T8CZo__NAhnFuNYA3K9EmFnO4K-EU-ztHTbnLHkwIdQ-SMYGIxC8yN190-D4T2Kn2BiHea8UBukbmrroxNjbDGVGCRNWfsLU1Awglg5TpXcdeIzCjPOYOvb-DE5iUbPwJq-_RhZ5gOGaWWQPgm2jhSNwJrxwyUBGc1ReqYxCvOEcv5vU5dsZql9lRpw4wjxMAtWqqJPQjDqUSxSlb-yo8bxwiTVgo_g4eTXi_OUnJUTJPpdo-djRDrf6jDKXCgL3GDYg1hj-LSfeIA39nruaIGldrlg-_P7iYOM71x0DpKq-WpxfmOfCAToU3bgnemrjzrYkIXSUoTs3zylUyhs0yOeHtFCRDWzQUCHkryW1OvT2ldqLWbueViQGMy-0LUcwZZuiA_Qw4oqHI3KxB9Xj6jecwHkm-siTTdicTAsZOmZVybz0UuwLs8925khj6HLGruUW_V-OG44CDwnVP76ixbDx29sRYWTkJsfZXvnCO8YnkkCPkN6oBHEWwpTAunUump9r42LBxWDgaEqvgt-LQcHbAcLAtiUzP42TiW-9cKDbxm4NupGcHpuK8WZ6ZdaPKcB3DzaZth-P8zAP0NPanJUcvh7gUx6e1Q2HToDFUlu0DmrevKeNCPB7_KggnEks_uob_V4X8xhkJjtvgOzbDVulCE7ZgwOBunzGP1fj9-0e0W6_xx7NHI9yzFeEAS5FSrlDGfFsqsHqZJkc4S4ywjlQdFty-sATcQYMxAW19s6YXGRMAgyhtck5m9-Asb3eVtOwMpiKM8q9GYpVHZ2EAOpIRsvGSREKLlbP-kmTSuGiGGQ3VNEDYU0loojxUfVczj72Gyl1QJPA06JIn7YDERF6JX8Uir2K6ImmJEqcZU9_BaZ2QMDE1qAech8hYlvLHXuPbvQXdAu_LLNImwfRJzSaZxTum80cMxvlKn6h2cCnzaKVXXV5g_hrFQXQqgUisV3rscpOtcxJFmKdcdWLA2c2JbueNqVT7JY42sUYuf02P8R80xQfvvO2c5IKMsWehNl5NpcvRJwk2acyificxKWtfewr9ZcBq6-u12dCCXeIdudvd00EP5__c3Ji6DzZpJ-PFLp1r9RyUsITa3S88Et16PvD9DRBkzutfkkXmnOlzZpXuDIOVckLxozehXJNbbAv2XjFPfcqcp-EopF564t8gyCzOa7_8X0O07xG665vc2ljDECBwjZBs5oFTSOMvZFCNR2Al1_hesW8-tH76YFcc36TanqGBV7fMOjJSqFgOm_E1YYkBT54JyMSe-zj7gTmuWUk12NWAcXuo1mvsNxA0YYyJPgLLv35MwLEGPvRyYF7uAvWBW-IC2nLpBV1z37m3SahhpJv-SiAOQAdAcqXyA_Lwx8q6KOrhtxQejBD-R0CHhwth8c24YHnkbYftGbchp8K6R__Svfrp5ShH5DfGzRw4F9lu93rh5r5-qPGZca6LhS5PZvtmbwKtMLZwxgBSica4Eb4gf-vddai0Bs2p5u_wnppLmd-DGr0ZGWCJLd-VCrc7soFWBkpFN7VU_u2aM7bg_jv23Xdy16_5ffVEf-qjzQu9Bn-4CFlqyzaq98jORrQWw7PrwY3pLrwvtHCx4Ov-8amyAQYPIVeyeM7k9o7V3uszz3115k2Pr0CazTjhnzyxU5KgAIDEIbIsLrUut0z1kTpjaO0WzOpE2Q-iLkC8E4TuPx-MNb2eDdxpGhnRV7vZOzelHmfYb0pjr0zCY9aDXOXRS6HW80IPw1bL5cg1xMtYUIDZWq2N2dN9e6YrP1bqAZENafF9CdL_qp7Qz2bytzWw8iNSwmHVJM-4b86a0lLCyJ9o-ow1xFZ8m8fgnIcIczSi7fEpWHn2IsIlRkFnLTK-nNhlhogj2vHSWAH0OzHlAc2Zl0OywU-2BtvY\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6835b8dcaf1849.21618349','','','2025-05-27 13:06:36','2025-05-27 13:06:36','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6835b8dcaf1849.21618349',0,'cd-form-entry','',0),(43261,0,'2025-05-27 13:07:22','2025-05-27 13:07:22','{\"firstname\":\"Roma\",\"lastname\":\"Buczkowska\",\"email\":\"roma.buczkowska@gmail.com\",\"contactnumber\":\"07885526262\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vvXfCNy8rJ7hE4sv7wDJa3X&amp;gclid=Cj0KCQjwxdXBBhDEARIsAAUkP6gkbIMKQkU2YxgkZDcNFuC8pqz3YIXOSfxQH9Gs5ebSHmRAH7QrujgaAgVmEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5cILuAeR4bj0Ny1uSaJ9fDA5UVAPDO3kms2dBgR4awErNCAgZ-i5mxxG7lVZ1EEEOyubQD1VSM7g2hTigNEpccqNeZoD3vSNNWQFR9Cd-mgJarnMeJxIiBy1yEX5wLRJ4c-6kz2RGMEQWx8wsV0rkBCqfrLXH5aHx1sYVUfUtLk-y9NRd4tKjXcysKauoWVHbDwJS21x_1KC7TXovspp7BHZ2zH2Wh_wWypgKHFODWg69G3k3a2UoadnTYnaScN0YZ03Z7KrrhpG2ArmUmPcQu1UwoGrd5XpmHPPN6Mi2L7aLdPsfLtU-lwdvd6KbLUI6KTuLfl911W5eB8pjxa6OBd7lwqfeuUBMbY6YQGIC7f7ywXXIYb55TrVDRWGSWmxnyBoSY4CVIflqfmTfwKvl4sjo7LG-7VsYTP3GQtdtlkh7NAz_e8wMvbPC5Jz7a4Rd21YeFTEvulzwEX4PYiFa7yrQirzdmPWFXUyxNUBLM6USDeDdm1GM3_FHTefFD79j6DgO7hzXCvmrroJdySR5778ewiLyP5H8teN5ANAKLFh6nJpHtzNS6DKxk4-G7zzqsgcx-2wLtf2bSKze7iuixnUFHnfMvzklF2b6JwQEh4UdkeZ4qDiDkgD0pHQ59gpq9rZc3mtRlsdD-2FSzVXmNjqGzE-cpCYCLgcqE2Fy4TJbZPJ4ypRk5a6o7cJyTMWhfmsqB3zZwaINq4N4YT49GAkD50insQ6y3XQAtTlLN0ZwnbV8cbjwuDD08B7JN46y7W-A-91pKZsMRagepgNUsKoZGLQ34pAGg4N9khg5JLFOVX94AFLsv5N19t87iHwEq5Chof1-xCO6O9DQYKu3uz7VJftc3bZMCskc7uh7n_u2L8NhTdAPpjWG4jtN3DhFSTpEiPEFbPpb6BD6hybGxSIKM5hj1Iy0amfk-oasd8VlAFxXXAUwZ_Si-ANwlGOgFhf6WvqpIL3681_I_cvSv3u8UNXLDLNa2f4vPh1USm3wR-8OifIzFLwYE0T0WWwDgAoEZzlruGc1M02BavCGajZCsJPvS6hbtkoHmw8nZhWFY3dzYPBqDLUz7F0mItbEhqQVRNkj9-GPeaEq4uHDnl9oQpQ209F47pA9KoYFhQ40QQT__BbILd9__TznkFyhREafLGHk2IvJI-ziPiz6meQb_hi-1RentvoLv68rWBUNvqgxw6iYHoC4YQ2zvnygaBmpVIyQaZ1TXp5HiK9PaDt4pT5Dv6cFoySZ2uR5yzBQuKyzEerrk2ex7D_x_gFjToboOBGsogj3ZFNpprYqvXAUG2ot2KWEG7Ren1d2Qgt7nDe9L74JEZXPL_wliRcDvpIY26k5XqQPPLkoUNyYBvFF_NEtkI8Vszj3k3bkbZbiAYwqepogD0TvUj1tT0KV46ggMPePOsvEhns1eaWgVCWYfBNVSA6fqYnF5zP7BUrKVStMSrYtDt-ok-V3xSGQeG5ycJmL5KnP_trb9uIE3h9IwCHfXag7BOZylsDO4tYfQrnXoSpPKDgunFCSH_8N5zI4yz1maRgpwI659LdTXzHsVgws2Dh1wTmtzjVfCiF-DZulSt-LLCJh0uBEgpguqNnK0qA77YFK1GgIyjozxFgTi1Q3XaUnbcITmZGtdjQtWnkYnLPFU6s5JKc0EVPZ_QWpjh2H2dAfw_qBK6Jiy9ANYhQ0DiqvRgpjrcTezdeNepPbqeM667ucOH_mpaR9fIwHBsu2PfXyq-NM0HyVAFJ2HlYUzeZkVZLXiT2yf2kVABymOZXDYT1YNywje8ArdDP-Yyx9PldyaSf6eJEdNVCTvMAWmuJ_lbReYksE6r7P0FCpmloyaH-w06XN6ZthUfcn7iape-FKWr4p8Il4CBBxwlUIvL2PaKd489G9yaQqOnrvnO_4ufJ-cpfC-IztMY3G7YaxLz6KZhomJpjy13wBbfdi5OpCKYkxz0Qtk7L5iIIaNe22w_euR4VRKgLyylZK-nVTF3HzRDNRjmFvE3E8D98258nDFdgHtH1GbPpGQLF75SdblCxm0T6jBSjnuIz0yov5ovOcKE4GozrbXD5-R9JO5EfZRWEFA_Kdwvfm1QRMvo7UiINdshq7H1E4-laGGtDUcsl0hpR7vhbAozU-DK5WBELDo3Tb5GFrM2vWt_c6wdIpi7ZH16RVNc_ny2AsB\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6835b90a5e8185.91860307','','','2025-05-27 13:07:22','2025-05-27 13:07:22','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6835b90a5e8185.91860307',0,'cd-form-entry','',0),(43262,0,'2025-05-27 13:09:41','2025-05-27 13:09:41','{\"email\":\"roma.buczkowska@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"2\",\"currentpostcode\":\"YO19 5QU\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vvXfCNy8rJ7hE4sv7wDJa3X&amp;gclid=Cj0KCQjwxdXBBhDEARIsAAUkP6gkbIMKQkU2YxgkZDcNFuC8pqz3YIXOSfxQH9Gs5ebSHmRAH7QrujgaAgVmEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4YqLC0hRr4z2BKYkTEZHO1pRY4wQPl-v_2ouwn9e4kzjetfVkv390qCbMNNvhKEe5S7UPvUQy-ar8RM-QGu5vBGxi1sL_qGGYSdzEtKA36ZdxklXlcsq6XZO7W7b7QTD2HBCcZUozXEJKwxnTGs4aRt59N5F6M1hG0ijcKDvkz409zk_xu2t6krlEjNgmQcjll6E26TlL1K-cPPkmeWpi_AIuhLzrjRIcy2IzNSQr2mFfnYYtLafAvVJz7gmDPZekwZ1vo6X6PzXxOcwX9xAqUtxl3TspVv9SXSetpkiY7D2zPwRvPULv3aad2EIGJ55kgMgkR6_h7yGiRiEy7pvSb60V5hikD051MkvqG5gioNAUu4jSgRdVS1tt6VSRgYJl0FenfUaa-Zz8uo6OLs7Tc1RDt0Sqhu9UGrXuASOP6IrNA-qNsnb9JOkUgy_8cXcVJTnZvw24oAFg6X8GRCQhzR4WizrqucPRNWkVfTueZJzaAzulxmKy1CyKbC7_vwSUi_VUOklipbDpVPJFI4LzP-JzZH41nN6y95DZcNco1NMGSKJnLqMH_QU7wq_rIyeJUoclwp0fjhcbWc8Lb4AxJ4rHY9GVgdVu7bHYF9SPDpgYxxZ3eLfseeuesd6pA0pQh6GhEcPxih5BjSBvoGtYvZQCnz03akWbt5KIab2VDue30lsfpb4R5Yrdll6dEhy4cn_CdJndAn_KMdmsJ9NxFz2b32ApzxND6H75PiRmUEVN6RdbAWWkuHu7GdC9X4xpFHnJmMr-lyFu_TEXqVAE3m5hxgkTLphF9S8fJ5wS3wXTaxazcArF5CDzqVjulbfJ_O2s4wvlhp7ZTORb3RkYXuqsvi5meIi75YOAUj2586XPtv_JFXOeizDNO-xbGFX8CV0fh3zZ6QONetLeIua5P6NwJ47oTbYTwBnMigJhFapOfeolD4jkotqSwczysrNZghFU1HmW7fkc8NyRdB28CJoupqAAZqXAXqwVKEP5bmdv1eVijBxDsVttMcgYU1HdaWR97NMZIbLSwa1My7u4HsuxqafNhEwQtixeKoUa8GB60v7feuoJxcY4NtKvvDEsLTGJy_U-go13UbBgBWkMX_-MxCJF4D4NfJSOpja0ymdpQGqTMVowM8NDoMmGFYSaMyC4-7RPcQuvZDmsJ5LS93ROElvpBwn04KmaglxNw1b5OYeLjWEn_PjCCRAhaFADYYVuYS3akz_2XxHKLBjtD-vsFHRnZ94mNiWKgVC7HbgTF0coJ8XZO44dwClA3MP-4IovPp_6w-VkgfBPcIcYJYXJwUHOILEaAf6Ps8K6N0V2EcDZTsHCWT1dJoSpqIVsufFwYgjIFD733ROHa0ghpR0oqg_3TJ-KYiLZmpaGgPmOPv_i7Th95YGINBPNU7J_-iptoaLRj75_e_4rzZws948LS9tZ_8SNo-HU-PU2O2OZpzfaTXk772WE96kEUAc5UAWKIh60KCycmkFlmbgM6l2E6Ne0eCZd1gg0O4xZQOXzQ_lsIolxeSyumd_UqVDNqqC26eMzVAD8xSWK7ae2Mg0zK9Guv2H35_MSrLJPdh5nT2_-alS6Q-1GN59rw5fZFCtYX3WUZZJp06YP3cBHTSu58nZfoNMC3I-ErbyX35X9g9dg4k1FnEcQzW9HAE__Bgl8lEibvl2ij-xYie7CZ8nXuAZMHy5__YMT8EUiCvFjnrhaqHeE--1aSk0tPcfWQMnRoZXpSbi8W0vrHtwnbiRv5KWOjyZDus9SUXWjjb9roOqRZilZue48BjPm4nMMUF9Oy70Rwyqp2fF3zVSkopKNquOF8QojOVGkGy36F8yqOWvQH9xx9dy3o9mf-OR11O3F3xSCwJ6j5B-Ym4ycPJQkFNAYqYYNPuo7fGYZth-Xm3OwdIF4xhovwdYnJi62fOsIkUFSQJkVs2QxkpFilabohk-PLvFGkdV1B7pJRtak3zCAF1IIzUzIm-QLZQjkEK30euui3zJPS8K53wyENZ-YmBx6J_A9zJS0Eu8O0w6fhmUIySx_AphBjRhm3ZAtJOctPstwl3SdXwUhobmgmERIASrThJKzPYguSo2mbgcNjwrvDw-aJq_vJRlPEtwwmEhTSOYrKd_JMYtxK8JprJ5fJgTYVk_5yHNXE96L_RquB1RHlclDtu5HCDkW_8sB3TMrC\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6835b93a4b60b5-82604499','','','2025-05-27 13:09:41','2025-05-27 13:09:41','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43262',0,'cd-form-entry','',0),(43263,0,'2025-05-27 14:35:46','2025-05-27 14:35:46','{\"firstname\":\"Saravanan\",\"lastname\":\"Sankaranarayanan\",\"email\":\"saravanansankar98@gmail.com\",\"contactnumber\":\"07776692367\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMIoZqKne7DjQMVTo5QBh2swDp8EAAYAyAAEgKE7vD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5LSxU9PU8lvAY7nl8RnHFLXi-7RMvox1CzIqz1Cs07HM2ae9F6TvQ9ZehYH6oMQAbUT9KHkpAqcLi9HVP4KZCf05NIlZcoYBG1msqWZFOesyvIpKQItcjXxXfq4k2YnhSmIOVRnaXoD0kt7woIqsDTLHbFtvKM2VaAbH8L75hnbPBn89gd9FtyqUB3aWV1OSthspKQf0NsRpnImqUR6u1aa8fIU8gskE5zdketij3jEHY4818frjn8nuTED9kZTumPJ7EtGeQVsJoEEtP_lfRS7d0x9QzLBa3ZNpnfllrZPyVoAprtvDwPiw2KqmWHMjJFOrvkuOn1UbdkzVCscjqSY1bRNJz_TXcfMnC0JZfeaI6wE81F-t7Q6RQEtMZxTJUoveeKj3eJum2QfFNxfE8iqy4DCVVA2mKqGzsHcZwRuL5S6LufDMQxfn9IvNxcKwCwzvDoDvaDmv3339QQ3rv4YysiblqZtU2b--Rk6_eyGSNMTLapN7TitctsyHBtonnq3HSpXltYsJaj6efhP1ntoG33vDdRXiLQwRkHmGRDdRuW37dF-VPOXnmOr4URtKgKSDr19H21L1SQ1xmrBcsTsZhxHKi8T09avtsl_xa_AsF9xR6KleiA8L2oI3jumOLN42xx9MU1swgP416Hge4eJpnI4WNNyih8dH1IGicAyrTUj5r0PWXiqHkRQtUN6VCxK2UDLHhqmcnObC4YOnQT2nb6-8o6vAbHByBEEXRzRoTDvnANrgllZl3sfuB6PH6C57zz7kKDB3Q1ytR8eKZWkgPn9DXsG5ZaSVrQ3nLOVeLhkdrDbgWjIbkZ86R52ZDwCobnucthsLyNzBxIP2f7v-rOhBl938aodZyp6wQjXJ4CdYQ6kgA1FhKpAeUrXlcJbWxeUbYwh7-h_DYwt0YzO6bnihmIU-W4S-PQk0cr4_Hyw8ujBvM5xK16IlIWeSCXvPUiofKBzzHCJ7hG9eNXVPTAOH1r9fW4dEPP8ffE0i6l-R96KezOMQFX4aKnQWkn32atoarjsfOVgnbyZXq2tsxoKFObTpJGI2M3Eeoq3K7PnFv8B7WYweeuVbzzrC9Jd-QlvmHRkJ4QnwOOjJahZhiE6PTvx9wev_kD9LUXtfFdgeXgDTDZtBPrHNa1bqyG9SZ_vBtpU2eS0i8dztAWJtg1gHlIrqjfcvoytNOOipUT-v-oTDW0OBPxmHdxYOZkkdaoCuYsWeECqCa9MRkdbmrCF9KPoDg35LE_gcVYZBiZ-fkgosebzcG3WEvVyUy6Se7xc-FwKdi9Z2xc4m5ViYGs9yWV0ZYUTMRGgT0riWGQqfhLe4bYWOQMP26_oOjKGUtbxRjYr883B9R0GPX-OO2Yi3rN9QvVRMQesrMn19_gCry75lB3182XAQzEFoHphbru71BSPl0jzZFZWY6HFw-Rll3mOW29jtyscIHr0aWM6l5Dxjn63g5VG8rryzOFaJYDyD3-bZmB4jrX_hrXwWbIj51R-UNK4dUpbTQGl9qtw44CVN3sGhSGxlmgFNlY21ogxoj6YR5E2QwZQnw8E4Q7H4pEHeUarOXHl9MUKTiYdQ5DSvwvYC_zbRljBZcm-OVcedA7Ku5NgNwpQOOIjQxNmJb41dJKQ8_hRh0_HLRpqGhFGnr5TQjIXYwd2AO_vdlyfPcpqdDKJhLOCibwMtaj2KBXw63zHsPXvh-xob-6CUzqQvcmQcj0-C9vfUqcl367_cAdZs5kqUU2A_YUeex-c9YDSK08v3kFmwCoIm4Ncpa7dI-4jayM3qRiTjSAcStCxtueotmK5gu-Mg3brxmiWN03WTPDcTMujp9_msQwFTtYCcVG2MeKr_3If5EMeYWmmj-Zt1KUo_2mdJVhsKCbeyf_xu_eBe81YkDiGzG9mdxCGrtdXnbgj7BeN6eLKwgHo8-VaPn7ChS6lJulLBytgWQcdWG7pmFIuDbaIY1TfsFwh1lB2uDtX6nrwQCivYn3AyqVZDPNpNjRGbKBt_OQM__7MEzHYG2AvwWW4QvII7syzdbHu-tqV32f98AOE2yfac80Stu4t4Jdy1-owWrWs6SK-Qd8j57mwMzDBmzot6qt58Mi79q6mAu9ZAicNpSTlEmB2tozsT085v_eaQQK_88H5twtYbEVC6T76LOMaRKGCkXJ6IPOpoq3LgPpN4hSpSlFpuvxrl8nr5uIAdlP8-P73PR9YFoe76-26x2BEOUU7Tpy5t3n6EBL3AcepIsiaKEB2-OWU0WdtFW0yoNcv8fquNnyuwfxf3vdV58R5dMTXT4usojzGvl9Q9DliyNdASvvQt3Osbpx60AfomGDqA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6835cdc2af45f2.65773617','','','2025-05-27 14:35:46','2025-05-27 14:35:46','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6835cdc2af45f2.65773617',0,'cd-form-entry','',0),(43264,0,'2025-05-27 17:00:54','2025-05-27 17:00:54','{\"firstname\":\"Karolina\",\"lastname\":\"Grzadziel\",\"email\":\"kforkarolina@gmail.com\",\"contactnumber\":\"07946431048\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwxdXBBhDEARIsAAUkP6gxESl-Bl0mD8d7-8bLMs7RRS4OKNvh5rVZKkD32DHBR6_I1yjymV4aAg1SEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6SLZDUtC-FwU9DzLGE3pD1FViDfN1EHa9ZvYIbcjpWp5fWoJcOa22WwzodeaLR2KyxdE-7PgyH2mbSm_ZywAM-Wjr-Wq4Q7bpvxtV_mbuhkRXhD7rESxskA14hs2j5bd102De2wUh7tcaiKhZyy6YbUEocMbxYOsWEPHqkHjl1M4ZG-OL9UXoZZ9IVXA00Lw3xk5m2TEnd5fmqUvF4yqYS7_IjY2szVulNBnOPRrgP2Ks_1Pr22tIXffaT_kl112J9PyrOArwcS9C461u_QlrZz-bCRVp95d5oj0cUsoRnnGgLcP4eqSYg_a3IsTd0R4C2_h6Cf6G4O1ER7dbviHeDvJaJebbSz7qCghuMIvBMFRQ7dy7W6Q9YWOlKbGldQB5AZDIMVEH73bZv_fbLAn40uVZfCf_7EOHxAyeRoudfczuLms6CT6IxdGVW96ovNzxNSBcudO_RJbKslzx94CHxtBpBCQIz74L2ukNrNCKh-29iDxS2v4s0xKO9Bwt5Fg_AfgbBnbIFsl03aLwJvMKz1DtUZYwj_eIv62PDLgNWcT8mfZ-S7poSTrEeX4aNRLpZ3Mtsl-lEDX4JVK77gHYBubP_Uj0KPsof2vEwHppV16kIAPWGlAokERf92Wlyp2EQ5BZ1EPRm88ArLQh3iXaXxbOFNe1136gXqpVXWlFN3pIs97OBH4cwhnI_rH7j4CShw17nBiYcjUb5AIM0VTybwH565CnlU-GC656y-91IxlX7ronDtnLLogpHRGt7UQVy9K6KDfpEFO9fOQv3repX5aIv7zGYdIg1QbWDxi-Jbsmh7RKkaMk_PsQN9B78IrfbVFQwBEvlw2khFqwN8CS472rBLWEYrLsJsSjiN9KrHO3zSRiGXelNESZa_RJ5ZyLHJIfQX-VBj4s3Mi05lhvvGGuUP7MYudvHInlVOwiOLiy3UJtNJRCVj4fdJasOMYUsJz_HXRxd_7L3yQybKiPif8DuMvKvL0wueIJkW3R9EqmCm0OezdFw_jITzF-3BDUbSWVxpdMg3TWV5xngKu9ca4IrF2p0MoGqiSDVlMgKVdIUfSB9dQkvYnOMXQe4Cbn6Z4V_IlYE-jX8RwI5FN6hsbfRxnJMrnGVqo2DKnaG1b4B_o9ynBoOX--wv56GxO1usfUrcG_G4CAFWDQlVuWswlPACpW24S02CtI5w4XakYJOfqpoxI1Mt1F-BxxdfU8FMJXan3Uj7oSTyfx7W5wJF6NMkIDqlj0j2O9Fg9bSHoxmOx5Rd-7CYJvakXj_hxwkWtiVxHYCcHziZ8l1QXhCpOAZbBOKOGhRx8yONEMC-pEemPjBeJmPN8v7oQfe6utbuvyZODv_C4uBEVbaF-12-uCDTLPF03PPFAflQRQN_zfbLgP-MESO_7qcSl3pMx_7uz1oG2-XhvloIGbcYinYAlHWjkbqt6oI4ExGzQGY54FyJT-UoDFRyKL9HwdCjeZDCFnW2OAMhmiZLNP9z7HP0aALfUwjGVoobsceWIxcojohGj57-OHo3zrIBYWb9qzbC5UeHuw5zNBkMmOF8te1eEzA6VeYX0jRTi9qdJRfKqykt5YkuVu50ULLhZHmUp1ngD3dpCFhCUX5oE5kdcWy38-x9zkqPQwSaTK0L2knFgUcZUWRN7ij0A43EadvP8jkYQK6qFQOpXtqsIB7cyLrGTyRlkVrkLdrhdNTRARGc9k0MKWXs5OUK52mDcoA9R2SoV8uhOTg8BC6HCYl1kZ-LsfufcT3BD1c0H9HgRZveOc6gmYY3XvTXiy6fU8wZYmYJenoeyRth550QWkkXxjoxJ1GqFxUrjl3kOgeb8plrCvtZez5D6SvVYniLo6JrXOIzePtoFgZoIeaH7YZuXgek3VzoF4mr3cuV-qlRlcwvGMKZzSHjEWE69_MPtobeOgJKTg5IcFLawqzzu8z50AfKxFcBPTemhiCVQnpvxe6BJDrtGVaU4p2fRovOSMu9waM1_fv_zVxFPnm7LV8BPZRxahQy_Vir0S8wmnWO4b5pg4ehwGlIiCajCXtBVdlR_IhLoNlo97ha4AoLLz627ctXFk-RQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6835efc6e81ef6.96616193','','','2025-05-27 17:00:54','2025-05-27 17:00:54','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6835efc6e81ef6.96616193',0,'cd-form-entry','',0),(43265,0,'2025-05-27 17:38:25','2025-05-27 17:38:25','{\"firstname\":\"Stephen\",\"lastname\":\"Papp\",\"email\":\"papp.stephen@gmail.com\",\"contactnumber\":\"07584375647\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwxdXBBhDEARIsAAUkP6iHEG_ZYEQejle45tVVhIQhaS76Ll2Uru4ZYjAu9_QcssM8DHeKWzUaAt7jEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7UQCRk-OvGc5iftJumAgPnkUTf5sSpC7lvAf9Ip04D3n4YE4NmupPR0GySd4IKeFUGLMbCe7cO0zqqAb76v45QhL9zqOZnD5a2qn6buMCSjRTXuJ0XWYb6UnuPM3yB7QaXQ7TBp5Iib5LKcYlmUHvr5h0-KT61rYFQsxuy6kaPjA0TtPazxqrN-AR2VV_1Lya2ZWIarnaQ3b-GoaV-MCdDojAohKmLqPxR6YiFtcOOS_uTNAp5YVCukxIjzcM9YdpJ0MUbJte4OFC57B5r-eECGF6Ou1g699LMIPgwII-NSp0lGLFvodY69aEf-ugcqJzxa81EyeKXo8clWYLMUPlVvko77VVZggup2G8jmu-tCAs_DmqiwbunwzOAUO5IVNUn44338cRTLjIq_rsI7QuWiudAh4rZVHakMmquDJom_OzwxenorPSeoqEkeG2_PCdlfkWcpLVAPa9pPsI75gktvbB-bUU8ttfFoTehbndSgFhDRrbHEv3i9YtKfYCAdgugNAYLzgC6KcMattltYT3kT2Zx_E3xdbpQBNjEEFvptuUgZ8kJFq64_eKH6bdep1A1b_jsG9RgmfHRjqEG6NzhcJlEC4RhF49HGi5pWC_kzWQtlMP81pr_s7dq8xD4muTqQnANsb8GV8UTifxqOXqYfxOgAT7VadYaHv0GnNMU5znxlSVzc4kM93A36iNnsvdu3Stdi81Vx5U32MzgT7Dt6ySr0dS1JbouSlifHt9bKZX8hJFtbOX2AXmqMRbGeB2i7LKHgobyx1w1g1ZN7GsEMh9xWSdJmELe3b19dJMUoT8ZP-1FJ3GDFFcfaoK0WA42xiTexDZSgQAUSFYFOFl37wZ2KPTQD_cRFndD2jENCVka_Qy78HwFF8rXVu2N2o2s1QvWy2hqDwT5IYgpxkauvAAcmzeB2u4xdFJfKp36Q_zyDyUVqSm8I9AL2UtPoqZQhE9mTL_tM5vnCZA7M-feFNo5vpOIPlMxzpg7-HH0x4uLFAebHN78XkqLOR7DWnwnAmF_W5uuCAIowZllJj_E1NQ2V22jYW_UD2lYNA0ePGSMM8mGltL_kdx25k6MNYdqpI-zSZjiSiQtEmH4o74KpFctErtU47bkdbleDctSc2tS-tekMlIjztCGfkoN9gMUIN6dEhfzYND1xMsoLmx3IYmqKUvGFLOqUa_gk0O-Ll4peIsIMnJXKo-FjoHaGdlQzn9ALAeDCLQapunds5eGG5tZ5rDx1bwNKb_saeijTe0Kc9njQWUUUN4Iri4KzecCgBHa-tQVy_jPTG02_mPtUe7QAqy23xtybXZEOISpBECnPO2rk2_DEIsm-EMgvBR28O_LS-95uQ7SBZtUS7LYuxF7ivqCYQ6pJMkAjJGMFSh1JS9bYHtHIrobA7Z41zRhMTTEMuy-k53SOnXeENK-24R8GEcpoHsC5pnU3Ya6i6lJo2yflz8_3Rb2EaYuwcADLtBfkByNmgymsmRB4BEwVcoTKppi3CEj0V7o3aUAzGhQAva5iXkhUiX9GtzsejN-oX6eTMMWNdreysmq1x9wJytP9tMGrfgn3CXSY-tcR24EfnxDbAU-UyPI-O8R7Kw85xCp-ZWGwgiSJDUxg8qhb-g5APIKLtkzrab45GKswjzjdDkGqsWrphqiq3Vpo7ZtxmYwvFFijQv4Pc18f7OJXSs4oF4l2md49DV489AZ9EvEWWPiU1BQaL57nD-XjOBkfbYQACv_sJ3zQemRn8s-fIQDTd7OJkoNFyo-WJPVpdgGVZnePxWHPMn44_UK_Mghbn8hpOgPYzU1OBB7bN1vEp6UxIstb8KbjHFoLcaIZi3rwBwXQnHQHQ8pm7s45ftRhjpAkdi9abfKMnPeygS6B4KoexgVxPavPV3m4J0SJ6p4UqqHi-coC81NWuHFzIJ4ckA3BPHvYCw8pI-kQRbDoz1X83jp1bSxbg-0QdP624MytzLuwNZJCNxrFfEXr9ZuE5XtodPN0OXWwmazxEEvdPMqYXVOIQp6eOpgNCYi2LKuIxKStrimocPeEWpUk2OgkgFWGn9fSVtLpHE1lh8LgWlEqbgILciXGVpSIOH-S7jsX5M\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6835f891d980f6.52777932','','','2025-05-27 17:38:25','2025-05-27 17:38:25','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6835f891d980f6.52777932',0,'cd-form-entry','',0),(43266,0,'2025-05-28 08:47:20','2025-05-28 08:47:20','{\"firstname\":\"Adrienne\",\"lastname\":\"Bentley\",\"email\":\"bentleypilatesandwellbeing@gmail.com\",\"contactnumber\":\"07971959402\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/biomechanical-assessment-everything-you-need-to-know/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5wW2d9mbnh46rDwNqvB8codpNYkSn74OrMaZpccTCTG8HHLglAbVJvBPzHBNnFxiNPH5MC-WhvaAsQwbz1HPoMsUzHg3XGLsshpnhPPjhDx4BjFowOBoLK3dbdfzEspeK0L0cz7I0vNMdEJb1k6Ai6XBSQnExXOvNTdvXb6-8mrnK9SkJ3ahvv8BvHDmobaSyNTLRz4NpdO7aEhBMDQUkk4FfoK8QUYKE1dxrABSkNDNbcV_MA28jP-OottPLrzoQafXbJ6vqpIyckyJpfDaX2kLdiftz0Uk2unzbkyFs-Rvh3HXN1AwQ5lSvOKwJ590VS9fwRcmth1kBqcwL5FlO-ZPr_OxDslDQYOZbCcHN_-cutT0dWql9tr5Q05VZ5jwTO1NyX1bkqTPcIG9fJV1djUL1Ny2cpuu7ElXEEuDItZoYvXHFr-XdHopRLdTTFx3i5Jl2D_CZWgXgNT0C0bpZeMah6rXLnWFr5soJrz04wzOJR-OI_a7xoqtMWqEPN9CTJUDOyenWZHzVsYojy5LA_O7hF1TWy_QpMTgzKG8frLwEdwqjAdaZ27Te1l5U7Ctkt9Psl6-REgA4GIfk3Ph4DjbM8runauCBKiGwojQbJAu7gqtKxycLRtuV_inmFgbiCfKYNIvHvmnRDLfLdpBgLHSZTulGGCydcpR7VLpQZkWP5qFHkS-0vh54yc5JlofaqP8qXzkfaoe1n7P34-oA633YJ7T2XuY9e-r6XJbZace2ebKgRMI-0qQhfPd4ABoYuefMsWGCNZssaQlCreoE7C9pXYS2j0WznM3ni406V05Fpfea4RQQ783W1Glk_R5YJj8B-QNJA24FCRLLIpMCFk8DoJ1VtVCAGFIYIAu_iD5SE-5EogSZij33YOdi55zwuNrEq98QqI4ejH7wUXwnCfiPEp7tsxPfdmHnZJm4hnu4XTIrBBUNrZphUNwpXveiv6LCx11-fS7baBH8qTWGYACKpE_V40kjvIfoCk11dl62zFVqDOg4zgDW1K1GBc20aMMn3qjlMTmFFzoqJgiP8atPigY0XMCA4bjdHuUDuO3L6ibhdGRgcN3tAgOspdZ1Z5sfZGSaNPqFLIPAq06GsspAImI1GqQP8lYJj6LJhEvOVetzfGxbyW4H0luSUPCVfahx05rlr0RfJgcE6mw7cxD7cbod5Hp-7270bo8-msIqJWuZJ0gmp6RgKy-_1KvJDzqU3_51SaNEFcjzsqZ0_O3a6brVHdvpsSmbJLS_hBeAZ89yFnuosiSWEzIBzrrW1b1wkQygVU9m_DzR8PDTx0z19woD_Iyg3DN5w3dTBj3IjgBViGJnJ2GRqBezOm1yC3RCaAZwip9kMEKll_NL8tqvR5P9ka-zr2-mPxonN9_S8sVGLLJKnP9BBjSHeopt3UJMLoHHGzOg9KBiwh21TpHxyF9r9kSvsU5QHdoNv3-PuEssj4lnNqB2GIp9QUsNPXTTQ_m8TBOp5q597yxolVa1dL7yGtUHk3_RCcFeTWHXplx5n43ob9O0voI-Y-2HljSSs0aEjiKkWyzteVr_-ZOayHt06_etF3eizjPumnJc7f8peTNaa7CWFea7LLBE8cfml4IqUdp1odItMk2qrkK4qNKf0JP9ECug_BSuBdwYBHscTTwa72YHidvjA5-n-B6DOjclIAW3lytVUkp3-P7h5tL7EynREwswtHJrp0j_WculiXxWu7Ku0mJhrT2RhlIwBOemAe1czYKnUQ7uTTM5VHZWjM34lYLCpw6no1qL5UUShqXvtGYG6i416aQstio1hD9gJfk-Rrf7gzrH9Yxpoxa7NE9LYj-V4jEsi9fYrUIFhfQEqLQPTCUDPnV01JN8myIAr4bCav0CZGc3qFfY1LbWNTZzR2U5yrL-U2S31zY3f6IVgaLbRsm8Si7wm3b0z8aU8ocuvZ76ckh5n-uu-REm9GZORjqoIvIGa1XU81w2KOmsxfmaIikaq5EbyQJC9NkiPmDF7HSbBm_Lvf9VvI8WKLEm8S6l61ZcqGDmbEEzUjn79qxr1N8AGI-3z9PuTe6fNDBslEp0fgN01PhQV4iaWx9_xAmcES--PM9U5v56HvvKm5-HwbDKHPV5H0GvmosvGkkcDVbTlznG2lSfSaSBcyGRl0QYxjVQkEEuGtdN2NqDr65AyLTVXwR26hCSb\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6836cd98f24956.46821093','','','2025-05-28 08:47:20','2025-05-28 08:47:20','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6836cd98f24956.46821093',0,'cd-form-entry','',0),(43267,0,'2025-05-28 09:22:21','2025-05-28 09:22:21','{\"firstname\":\"Fred\",\"lastname\":\"Burgess\",\"email\":\"fred.burgess@ickoud.com\",\"contactnumber\":\"07855368950\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA75K5toCGVRPaFLZslzVaRhwbgLcXC42gCknO2LUt2Qp2uudwVcmGVmZWxBggHZf77Xg2QQfewuNt5UtIvTSTjXs9XkdcNdApMsV3EP5IDOp7MyErEOH_fok6mnZIMUcpDeDUeGngoALGbZ_7E0icUfOn98vOyHHV3uxOfmhhfdfxLOlri4mXR0sF2icDy2ODDZ1vfljqhDVBPg_RjOtAGPtxyWOw59CaZqKpBhkk95nNKLu17Gid-9z7zL4ajHylrO_bVo6Rz73hLxKpQuCR0zu4dLNC8xz9JChAf99eLAzVilYKVaMxbsDJ6JNEsJJWmcD_MtzPujMa5plRmULqnTmkiu-x0UHMFggT4uQwVSXm1xZw2JbMaxOtmfbAnke3TEbYin-I0cWG8HljGfaySJ78oFEz1KZW0sqCPlpO0Jly3fbY1qtv5MS6qr7NUMZvaoW4BvwEZeIPi5nv8WetjmQyShX6fhelDF1t5d9FCjoGNNjKfscU2138DRjNTcDSiQuvMj_bGnPStWCNOZS6Y5LvbUtZBR0Zv8c2OmjUDf5rytpz3dXkM9IrD1QJAZ6GpZI3qe3n58OxqbQmsWaqt3SrX549QHCxFhRQd2N4TbP9NXFU9gQ939wzDUNq9W30VbFLzxeDe911qNhxdggdxgHct9EsUUivsrGH8mRQkLZ-iFWd0Fit5vASzyn2fEWZSuJT_HhGcByEu1TX3rv-qMPVqKHnir7S2kjumf8gGQlGqb9Kqem8WYrqxzr6vMWdQQwSzcjx9D2QGIqhP1KE22Ame_MallEJAXfJb-L-L_rhDCrkRzV2hHtQ13MF4GWwpLX82SYIV7S_zTV0KFmDZIhTEPlu9lrb1lMN2lPwkETBtIx5jSUxxK8OsfWwEy5eVBvq9decy3WTF-ZyFb-1vMG6m_8z4yVNz8ngF8xZ0eDsgL6OKHUqUfk70vs7Z1TyDF5BlipqD0X6WB7oA3BC6Jh4daQ8t9RnIeoxe6hxvSA0Y1sGRg2REkAQkIYSr0nzKFGED-unbpKBvIPjHJDMamBT5PegV5r_tG4Wk9VAuwNc7pHmoVhQ5WDZSHVJOc5KQHJXe6uO8PuISLAXOZECRKKVLAYRKyaJ9eura6AH2Kv0NQqef4d7RsQDg3FidygzzZeAC5ru-RANPo3mttV2Z8D2gjTG_di8BJ-p5wqt-CU5g9Eng_ay6xMlzrAj-AjTAkd1zOGP0_b1yzJYrS7piSrgS1QbkNcUPK1qmqd6zQLjO0xxsx5O8sSleZjGHnXm9wXouxD_EF26Ryr_P2Su6rfRz6VdKbQSr9gMFxgkUwy2z8p8js30jWGmBidLlXMGpwXqeaQ6gD8ixBwlTG3Oef7Bv3EsxYXM9wfRclzTwyOvE-yfoZ8t7f1e6p_UwgQBGGI1rMSbynPi1EeA2rcCWUxX5F6jSovfvxCcqBBfpZp0yNH8qJp1bhhZO7Kek1w8tix6XcZE7zD78lnQFvXa8RnVrkKeMCRljxZBAWHf2mCFEsJRXCahDyLVu5Y39tUaV8fsFOqfn0pwftcLmQM56PwfUhJ9G8VsTW2mgm-WktP7DySdYj82EfhbjkETcp1RrgNRd8uvtZNbFahbGcoAylHRXkfVJ4BCUHa71s9xTS4ko8Lnj7M_9xfAM-8L4oPo4F2m4ruvIjAKYSZi1GxcrPj4cXesWexxXr7DNW4XvdTD7m4jvsxfZICPDDe64weTd7CjW2sAbumqcQgzG-ZC3g0B3dIr0I4Eat5ZccZ4gtlhhv5hVrr-vtTrGM7ss7q_kpboclpGPCAHy805tZIo_jvJBggN_9GYY4YIW8ELAG_LYnyhlr2TnsmnxNFzi_PAKJDbPTaRlkPRMt1IKNxUEvDynMEC4L3sFtHVKM6d2jSyQlXp1tuv8KqY5ebN4pOp36ZTxPMmmXaGnpxd_Pyl7XuPwrAZdOvXUUnVN4re6qxrGyo1PYczqIbN529GgQtXNByBYEuNpLvIZ7_xueZGD9cWvqPGAdJ8w6kHlO0W8iJ4MmgpPhkXYrSpedrvedW4AoeDZZJ_8kVx80YdREZxWS7gY59A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6836d5cd0f1962.96604683','','','2025-05-28 09:22:21','2025-05-28 09:22:21','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6836d5cd0f1962.96604683',0,'cd-form-entry','',0),(43268,0,'2025-05-28 09:23:46','0000-00-00 00:00:00','{\"email\":\"fred.burgess@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"3\",\"currentpostcode\":\"S404QQ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"HFaWZieh9FPhgpXnFXR0xGRgp9CzMVbHowMAcZExlhDwx-byQWPWIDKjBxbiJrfmZBYhIiGgIRawIZdl5mWFA8KTh6AxxvfgZ8Jj55VWVGRXZoS2onQGdlRn5HckhNBkRMTW4AX0dLM21jX0hODyRCWCg2MFBxR0Z2KB9LK0JmdUE2QXtWDRVlDR18S3lQAn83Nw0cDB91CQxqalEWPRNMbDpmbmIDWXEfZQB-bUVpeXJiIFlxVURqPjkeFG0ZfgZ5YWUkCDNka3RRR0hjfXVBFFcCWlVJTRJ7FBQBTGpgFUprSEoZQxdXcgk1aAF-YGd5NGh_FFpGL2JxYW5CZk9oGGp4f0EKfidfXExKGXwlCmkhF0AHaBdIT2BtXiEZXH9PdgRPRx93WUx6D1pIXHIgOmBUZWxuOVJSNBlYVlREV2Z3SHpkTjImdW4FKlFhandJSHNLf2EJcEdaeGNyTxpDRSMydgVRWGB6bEk5aUZ1ah4oan1OZ15ubRgKV05vGgZBb0VvEm4kbVcjCkMBaBAXcGRNaBtdamIcJXhaS2JtGlZgDFF6S0wfYH4KRWleHk1qFW9kcTIRb2ZxVWY1HXB-HCxsI1dlZ0hnbzpYVEoJEGVCeHEbSSEGHGYDbk5LWWojIHxOOltubWJiaEJWRmh5QEQaUlhPfT5VN0cZcmVkVgsDK1gHWUVKLE9jZBxDSHJoXwNcR0BxTgobclt8fkZ5dj9Ma3R5KGZvFCZfXGcIYXZ2QHw9CEljCElQIwppfU9RSxNjSnRddWJrXGxYcj5zfwA-RAJ3SxYhemJcCRNWSxMobnx6fEtbHmckdyVsQwxRMVhIUUY9YWYLaF8DPmVpfjZ9NwJBOHtUXWVcbGhREWUZA3tRTm92SnJ-FEMEPE0LfBp_FVNndHQzUH5kEjZ-Qy0DT3Vach5bciB5UnlBB2A8SktNbCN1VwofRFVFG1I-Xh5uDR43XXtTdW1yTl5XX24QDlBhHmZvS2pLFmd9fkQdAltcWkhNc3tNXCEDZFxhaUVEXGtsXGhIFHRcVVAieVsOHl5mOEJNcj9bCW1UZ1JiFXo1cztcFS9UKFdoTlJgazgDW0VXcWFrQ0B_SCBmcngZSU8zdm5eYUQ-NlA1Sxx2fkISakpzZhd5a0ERfBhfSAZ5dH9kWXktLX90ahdlUHVbZWdASCJxRFtnXRNrf2F4DQVCVkoeOz9qTm1jK2FAKG8kQGVhYEZ-b0QhaHBZbGlrclVmT0UVRyhdLxNzaUhWc0hTVyQHQTMWZVtLYnUgWGs8PBtySHl1VGFUekZLfX4VeztXRghXb1lcRmwXf0oMLHxmSlARd2tPPx58b1lCUlp_WmxHGRRxEHcnb2wHfl1ybV9LOk59CwYmc3JTV0dyEzg1bzB3CExVUWZOQ3JoTiNRKxJWCEFbW31fEmdlZCcASmdTGHtkaBxUGkMqU3lfdUESaUwOUE4oDXQQYSBrXkt9UVUVaW4IHWtjXUBUTlJHMilKPWFXfFxBUn9ge2BAHEZKQGgrNTpNV0FsNQFDMhBcbWx6T1ZKQzk3UTRhdXZYY3ISe0FlaT4Lb2xQA2JhaF5EEzhhXwEEWl99HFdQNBlZL0hPaV9jQmBqWmxtEUtiQCQWQChxc3Zha0slWgc4MkVFOWJzSVBuXDx4ZCNZUllgYkBKb08acWAjGVoaPjxIf0dNPEd_JRFDUUlhXVBPZkQWVVpZETJFL05THl1CEhxfSHlsdmY8d1t8ZhJ8Y3I5RWZdX2NSfUhBFmh3TltZTEFpR0ZhX1kjcnMRHj9TNUh3Vx4aU3QsdSFhWUNDSXR-U2VnYld0IwImamhVcWMbMGUiG0IWbz5YXF8EDkNqEgRjAXYdbkhTFnwmHGtff2VJXWROcFVyZBFrLhVzFXdLVH9bexEdXQcbcWFldk16PW9HJmBkNktzeXB7bm15TXw3fmVWfwB0N1lrYBwJXG4MECtjeXQWanYcVh5pZEB3WQFaRXV2eU1ZFlMrYFg7T2pPH0RdAwN1FRJbUkhQa1lhbnodVEgpbVlVen90WGEaRSdlfxpjG0g4YHBPYx9yYggecHswRBVDYhV8B05pVE9pfmxaSkRLH2V5XHNld3xNdmBFFXg4VFMZalNKS3llK1ZOd2B0YHFLKH1PeX55bBNbNkFwHmwkeEZ9dRlwLGsOMjVbbFdsTH1PG0EiVXZfZE10f2wQQB8aE3J7fGBMNnBVSgRJbyxWASBlZWZve05geUdpKGNEWVlRd2FyGApyGx8bdVARXT5sQlYaa2thdwwsdXp6QFVNUUVDQDMLPiYLJXM\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6836d62289e1b5-17966512','','','2025-05-28 09:23:46','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43268',0,'cd-form-entry','',0),(43269,0,'2025-05-28 09:24:41','2025-05-28 09:24:41','{\"firstname\":\"Fred\",\"lastname\":\"Burgess\",\"email\":\"fred.burgess@icloud.com\",\"contactnumber\":\"07855368950\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4vrOAIFDlaWcYPmqzHRDt7mSGcgCtbIf10tOBIGiadMCRmcECSnTuXydpnvZXFfkWx6ZlR5L2FEesQI__EAO5Eihse9b6_2mYMPqNW0H_eSxGgI89jawiXydyvB5nAuwjdpPi4fiwfxeNtl0PrXnKqsSQL84LR1XhVBzgAFnmemWjdIJVYRFyLj9KpsnyeDOY_rnLzqXMNZSF7KEF3eix1rCejURbIPourwfAeitJPBvjV8eQmcuJx2bUWwVCp8syNDqSqyzjVwQbsPxruRmM7chnGefKjt9SfiRLM2PZtdWpns6MdJZFhT5ca3gWsh2FL5M6FGW9nJVSIRd7MNg-1SxA1EbrA9dDlVpTFN8jBZ3XJULaAYUJ5g-ZfD47LEozTCdzMDr4CFlJD8hk-W88hqmoU-QatFAvldtxLrCHCiaDffLvEfXuERv7spK7lGMFSIoD8Sq6LZsdKxORFijxKqxcl9-2-h4kyFisLVZtg_QiDdwo8xdicNy2HATlqCn6XUM4_FM4hMzAZpTJBENxt5uLWNK5uMGg-zOnoNCQcOlwCLz2f4F7lhff28Or8kzAFouvgtBUwe98zS7e0maPs_bn69zktIeOYEr1TzoFVEpu_QCMdIDA6M8LQ4_xlzpWGJzXTbEtVz5O5j3-hnkYdzsaVqsBfg7irTgmx4_VXRB_L11PcGGypIMtQE9fQiEQznj10mddHL53lpzM5dFr-Tssq7r5l62Ck6_5lspp-2vOsvXJifKK0d2EsoRIKT6QuwPePSPLlNUB5l7jgh2ZYf1WBXJVYW3Pk_cAnrI7SD3ovqvEBM6SxIFzZ_4-4SI8pty2V_54ANy7OMMuxQKWBMXGRNMXAcsGOUdO04cUoXMnts2NAiwfg7ifucyZJtwFOhQgm4AtBCdPreGloCVJMGoZlyuR3mta74kZyEgKhGX5P_6jgaRfTvvnaGPNyJSqwfP-xM7uoAU1NssWG9CF8SLUu4XZecAUJb7KmPzuqX4k8J_dEalKMsYehilPTCAoVyQbeXAdvWwOFmfDkUpQ9RKcTGmJTD19wu03NKyu_wnVctzofFvYG8p1fXGTam1ra-NQ3zvNXaSO80rLXbfQftIpuOtTZindJoru0Z9_7gdgYU2TwSR-ZSCjJQuV1dy6aF-CJvVX-dlqirle-jx_d2In-s9QIDppwRMN0JHfe4Uzw7rhQ-m34xAr4qLnrjxIi77TIXfkNDJi1yIIyyUNenpK11pyeQuGzlG5UawLTtroiiJi8oKeHdID4-_Zc1CT---1HAQzrxQlmkbETcn0gHTif8oBH8dOwtW7pAX6x5OXv5oKaAawOgX5am_Aw_OAIbFnzJS9bvZJpJeYCJzwVJoWnH9mMrK2FDJukOoFyRLC4C4Ue7TrXfGPTMBw9JA2clJAIZOOPdu8BkZynzvbC0h8FD5fqA4UeeRkPkX7nonmVmabxzahClxd2Yl-u9WKb7W6mWYd_9w7fSt1-PJMie-mm_e800vWb9TBk1_TLErEKOA-Do968cNWlbVTDFhIH0M5_0iYPnNtvBRQY920ZNR7JMFJDPQJOqmxrx772RNgHWM8jeZiwvhUjXbMYj80C3nkqGQ6cq-N3u9Lld9aQIiV_pnw4pZQcchj3RnKJT6dCKuA6tSX3CawPzejML8wdEr0-5ZP16mXIktX2A32C8jXzR3CwMOFX3DLoFc-Orqw7lRZGmd0HdL0hmaWYOStwwoERdRcFeJ3rz7NIoNa7kEfFuSdedOjfu74_fSxxUHQ2iQNcxhtyO3R4_43EF28Z8eMrl6_irV7Sf3vn9t88RpNdeHyq94UDNBl6M6WmTw-kF8H3J93UeKMBBfb_a4Y1j6fVOBAjEumvLg0rJgWhltyY7ZGFA8RHVXPu0-ZjPUq6v-dcnQe3JJdV5exkovpz9F9ucRHWohMREH8N5krCpd3pDRO7tIjXC_y5yUXPtD3brxtWNW0RaZwp5y7XMNEEaM7vDFJFC9H6-9xFOu90uKwMt7D-SU29fs4VKqQ96Roh66Qy4myyWcsIrh42yMPzqKNs3AF_OcautK5ulVNQsgR0tmhk78yyw6sisYy8GlyXbrk\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6836d6596de033.73234968','','','2025-05-28 09:24:41','2025-05-28 09:24:41','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6836d6596de033.73234968',0,'cd-form-entry','',0),(43270,0,'2025-05-28 13:47:14','2025-05-28 13:47:14','{\"firstname\":\"Curtis\",\"lastname\":\"Mathews\",\"email\":\"c.mathews@zohomail.eu\",\"contactnumber\":\"07714731705\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw6NrBBhB6EiwAvnT_rtRcz8usEi1XC9wYvfANLY8ZEkC5Q8CbD5VAFxGu5_QHnGLEA6e8oxoCTt0QAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6zXJQE_RaLLvMnZBSSXquUdxnibfZXMNpj52Px5zCb5Elc-7lK9anLlYcveMwD3xzeeFBSqmputoNpMnKnOrio8HiRfIRLbbrsTlLAfSy6qROuTC4ynatKocMDmgXQ1mmGiOBjsd52Apo8Bcwy7zkus4NxBg5MYiHAz-_1QS6tgi2Y-7_2deAABFiRerDrePRiTmjtmpF2Rfm84SWEBHhGkDjtJI-yT14f2i1tFt7JetBqCRWi3LpS_xYxiyNfUCqPvCExQie-npx7NguBG_FplCKD0BSN1MZ-al0dcGkfIQq0MeGz0KlsO8Jp8L-KGxJy_I_2pWpdADp5ik_fZYPiprBGNWJijFrDiu0s_9AkyUmfqqWDXjBXd9_-Ntbu8gSsp-CtMJ8acr0WtpKxjM8TyTRatHFT8C2xqt8THPqZtP8g_AzkNEezgKM2Mv3Da1X89Fss0aCAJXs8F2eJWgK4UA1ST9KOyfPdl1W20Kx0zFvQ-sdiVSUL_6lTYAOuzLHrBJIlBUs9Eugc07HzhD0TvAjmmLD9JhCzWR7C2WVuJixxpVJH74c7HB8aYgdEqjctkWYqNBa7KSIFbX1RSf4_KZuC2ZaIQZsRLDoSWozZO0IuvuR6VRr32XtuMfRpEDWqroTDzjNB-70UPA4fEhtnNBuFEhSmrfADaFTyU0Q4viExenmveveHRDR-SCWLdsytcDSTL8K8pXLvWBFKsxvxf4ZvqEWxzQE60Axm1PUtYx7JF8OsMdbFgxNnnpIHvasFkT4xSKY7Z90XGz-R1S4qb5DZvwAXwF2c81AugqYAjFJw5hfhtqSWhpG57aqMfYhY9sPXzD4jvaUYh63Gil9PMGSKClT5v4dxExVsRgaP-EyNMGnWcBFuCkl9N828MxsAwDdDCTmTRO0HBtRzjTv6KToLhT2Ne1c8Wq0oFy0uvK9-tH-Ckud8-SGkt-4b8BfMECmpswwONn5F4GFNj84deI3vtrHsqtPiji7shv2-mIX5GYsB9B9YRceEKK86C2i1puFtfqyZkd79T_vTokyOmnJkmLVaGLOB-MTW1TZQ3WTQmZrbbuqwzaAfOX_WFlI6h1HniR6ZnnOBSkCsvtOfjfcVHuLKAYpe2EvlnVpsdXvQkWIp_x-hHoS0BBHIeilhms9fUhmPIjhkVrJE-A7BrYHiWytIfivhv3XMSVwfboBsGaQ4VyetDe1kCrP7EFv4ME9Bmnef7bMyss03xLrKlRqYyASM-O-2YTrqBBIIZAUxMNlRHcrn1rtW76hSJnVxsGvRDvsczDb8pMYvJj3bpXAgwButYcYdde8y9WbERo2b9PupQ0d1WZWxS2vZxvNUKnwGCpNp883TEWBGgvMxx-plwqCtM5pZEcd3FZUJVoO3aLUXk_uG-xNXOsZwNMMR73N3ZJpt_NZgLUoLd61ubDf5FpBpttiRm2Yfk17ZB3z4vuvYyox9qcJSBrTLz67WaiQIuO_-6002bsnR7Yb-kcGV7MFohhYaFKtYcdyW1PqMzaUmakemB4GbzreO2c8zhLSjO0CAHL8BKOqJADX9WDDC5O8nU5V33qi_0S2p3kaCpArrJvfZG3q4BnOKP1Opi9Yo9-OcgOJgNOMWga17rQbwoIfmhnKunQkPMTkEjOb-UEHvrsiBzR2-0WDKs7nBDmUe0dIoZvFm33GDiVD8Ri6M9QtfTeej33ul9ldkxpGAlR2l8ptEwwOCNnbEU4e_Y_3W5alNkGGnJwArb9NzHMBFsSiwykyrFpqm-We6Q7w1NTQPp4rvYJIH6iwkyekTdpez_pUClFVENyy-d9YaLvbMrzgsm8QX9M_EQE46sisZfxdCcGd1K12f3OfRBcii9qCiDXb-KQZiHOYAk3_JOYgddsSBNeRcCRh3EupvRc6GnL_1qGxZocJVIHUx3aF7rFdyqOW39roxUsOBvmlmqRbDoGjnXBm_raNmOn3mea4OeczS5dPkiDAlWJ-9FQsWR67_W_BfTzKF_tX9w3dFwcg3o1fMkrLBgJTbSbPH0JahmIjKGqCgkm9RJupZi_n67mALperQXRRDqDx2nCftQT78arHcDNlp4K3P-v5sITBxC3_IHgzNLQDzQlVAoRyBjuit6Drt_vYfXdZfEaLgJ6ZCiZAGX3fWVGc-r0K1p5FHxxYqS9A-dvo6levOJHHLK1mGZ0i5wZPAC0yUAUN54m02cPGdymHtJYfNsmyVUDGrSh2xCDbMRbMK2-M_lAS4OY_kHQiy8NDP67VeRRdsENrWgX2Q2uDh0muxHaonhtrPkdOIyE-a_L5fa_6kvV4Dpe5B0FRfMJ0MWwDfpSAWOaIeWclPzyVM_BEGbskiyzrVWz8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683713e2401ae0.69192120','','','2025-05-28 13:47:14','2025-05-28 13:47:14','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683713e2401ae0.69192120',0,'cd-form-entry','',0),(43271,0,'2025-05-28 13:49:52','2025-05-28 13:49:52','{\"email\":\"c.mathews@zohomail.eu\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"10\",\"currentpostcode\":\"CF3 4AQ\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw6NrBBhB6EiwAvnT_rtRcz8usEi1XC9wYvfANLY8ZEkC5Q8CbD5VAFxGu5_QHnGLEA6e8oxoCTt0QAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6KlJ9WStI7g_UJjO3IFx6G0WbLt5Eux7lvyUsC_8MLA2OkKGqwFJnBhrdovcbF5VkEQyTaJLDhUA2tzM1qHF4f1xErqijMvsWQlBOAv8chxM6IO0GklfrkxjekGk720SvtKcESFRXeFEPRMRcreobU5Mu8W3puHXxyCmjmxiuB1qB71fooI-KbtBl3T94GuCQrdMnQvI-y4t2yyLYSsJhoexqCuM0PZEIVMV-Y_jEudFp8MatC3NQtoLwHNHusI_mhnraL_kCpxdTeYWgUttMTcSz0ynnd1Pm4UkI6LIp9l_hA8ji1poCuTguJJknm_QPL7mkiQsXsd-YPs9BWfLpavcAUCDzoI2xKypZwIE5jRy5FWuFaIbOnwpusqMyu9miTESvqxKFLKkHjYQ_cvTvug2Qy8Agfr5B6h3IwAgVUN1aSJh8sJ4pgJyGe-Bw7wgj0YcdaQ4K0yVdMG-mRA6Amf6PoYpt109JnJzpZ7Fq-N5zR-5mmxUYg8WJMRNDTNT9wbKUHS9hJhhFrDqptHw60N9CEXuADOS0Iu23BQUMN4uEqmjwbgVPW2ZvdqSQDDuRUaI9QlzpQFVLVa7cF4FnwCbAJEUOrG8hdTdqy1MuNFF9ej0Qtsy5whaxxqY5WM6w_rLi5BlD5EzkZ8u47hiKaXJnZfs2c3YiMJ4s6FjO_d1EbChkiKEntlF3I8zoWYfuTqIW3uvu6cV5qacT-hyvKj-1mJ1g_GRX3oP4M2s_ooHIJjLNZTqSb-WbDPtcmAG1unoaBZS1GSGYOoqXHWwGGrXlIVkC-BVD4RkFmZU349VKxhkEa1nCnqOdAO7-fGNKLdymTw16ZG8Ns0DZ2tz-EawcyTp85MfV-2kyy7nhmt3qFfTgs0wSQdJgoiBvW6wU3qnXj2ygBvW0eQ4orZ-xJLHxDGJnvbHha3z4bYBziIgCMrUrvdYN4oTxAUk0s7GDUGnoipHmGeYBWx0kr98dQlQOtXxYpwHPs8EZ0vfJfvfi8NYVKvZ3tCzdSHp67W9xfnTepGqf9G1f0KZBp1vWyFb9g1JBkUsgP0fxYgvSvyCN_VyC-NZl1q9sOSLvUAAs6idA-2SS34Sd33QABm8eJt5y-HY43BWw9afE2zEVSN6Yv9VY6K3hhrQIyz6CBqMffeqjx-JzdfCDAjPI9Aip-BZs0BYgYBDJ3cfOLmb5KZqn5v4tLl5ioOJKzbwxRU8GRrQ_cSRYwMUAWvhDK6tURnQ8bXEIBNAYCwCfUpQTHLfKciDeaBpDNaFkio31VC0_bLR5AtvM0d8j1s7OTqYGgH0ppddbT4oQFrIJmltK487uYgWQSzGjvnxTsTTE7P_fKgih2lKz2jYzSu5H3uGhXJJ0ziY3-IaDfTmGeTlU-p9gUYDTjlJwiiSGottPc3G-dNvsKP_NMhBRmhwlL-euuDsxfrV8UDjQeQCKWmcG9OcodDSJ94ZkjodyrAoFndCu3Llv65PLmQuXTOAXaImnuSiqHIeC1hXotpL412WMNyd5HwgNPIipmVCessLIUCTN1w0pIrLZSWYCZhrAYjpjF3tuQ1brdJ3INfcQ96rLJeeROnwQekjr9AgoHXWS5fX_h4oMFvr4MF8PlgCqWFMlg4BvOzEW3ANDJPC2DdD2MNNZVgdt2WEWvtXXsw2apo50m0hklurBzjXRvc3MHWMf0OuKy_Z2ZJ-Wc-LWuiACniXK1E0SIoRqvLzu_OFRmZO9BSpB3J0HAVkr9pKSkHxXbDr-vpLVYlzC9qBq89WUM6A3bAR4MT63RA81mDQaJrVjfhVFLHmke4deOfbEakFb6dB9ONZlhjrobyV05SmGn5vgVrSWmicpj1ROryhTxot9Cs9lkr8bu8-A9ExlfQ9OGG1Dq8H3RROXLz7okY9kC08H-2ZxlMglMOxdv-NLyZGxSYxcGxDCmg_ekM4j_HXBtAFX5MWMbA9xqQvEOsBUMNkxDIM22l8ecnmW_1gZmvgew4oQlsaSMdWgvoEWZXP7WF4_uwvd8cOwJZtJhoEsl_xesCuIUMegZf6tQOC8zKlwfv86ondWEgdx-JSqkL5cqM3O_Q1Lxh59TEB8QRLwCKB0d3v_Pmro4R4thMgNlujGMRYR3V8ocNJlNDUwyU8u7n9ZyrjJdaUpCr6_nRsRvdgv8mWqgbCX9u3ZxY9QQK_N1P5oi4gaFlASk9kNzpIKxFkf4ehfpssfl7pcG9Y25BtQLTkicIptPep-UCONMI9cBbkrdiK4uGNa_4vtEJo7t-yX_vD0lBhgTra7blQmcTBs1j4OGavsfT6_ooJclCTak3sCBekLzSVXq4m3gmoLsjpmf1Hi0dLRcEdNCDhcxm9GDrCYr2eP7wtW1OjEfLjyEL559\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6837144c1b0108-33327706','','','2025-05-28 13:49:52','2025-05-28 13:49:52','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43271',0,'cd-form-entry','',0),(43272,0,'2025-05-28 16:25:49','2025-05-28 16:25:49','{\"firstname\":\"Prema\",\"lastname\":\"Sandy\",\"email\":\"prema.sandy@gmail.com\",\"contactnumber\":\"07962990084\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw6NrBBhB6EiwAvnT_riS5oExMZm0aW6sSPItEfifNukguJgo1FekkWQL6_8Z-k41FD2FqXhoC94YQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7tjlLOhp5kRmzwzNmsco2_MCIo_kvrm3FFZXdj8A-nazGvqJkot12IuoEs7OxSJ75f81Z3SBzpNGjIQDoy9JmAqLTS370P7oUE2b7NyQ_DNPng5_-JvOlIPVE8f2leksCLjjpjehFkp-umlyP3rKlxNNxwxriiNaL-F9iQ8w3pgMonhTBNh_R0Fyb1vhArJNQsf3YT3MVZlru2peZHw-k9ewqX-3TaWjsjiW3-eWI7AaxIXL8AEJHb4lFikN9_wUS-TZQyg_qyEiiWLocnsfpOUWvU8oaIE1VKJlmUIG049tEiIDmeyOa0vjuxA1yCFCdud6Z-DCEof2t1n7p2Evgffv97ZTxjB6goct0Et6f1kx1ep_X19loQj9iyBOcIbAjiwI0DdY8j2yF1RJh7lmdGazhn_a6TAOmT2yiEinbg43f4NJNN5tGS1F-BDxC9UQ626huFpUNq7JdvPCUE06ds8x97ONkw9NdQKXItS9jjfRWF5O-p28TMuAAIte2rGeiuDRBzZiBtShb9YNiJddvm0BJ4awufOEz2Uc3VgABA54rPLs7Dal-aJ68YDX5EdiH4qi8W9Jzk_Dn1cux6cQN25xMlJzZID7DpmbtoBPZpV4laQ0teh5EBMxVa9aRA2fmtNb44OcVVHo84NXIMi-YtVEjbWyeWw1bx9-xJFL8mg_uFvAMI70Dp7TnbgjFNxdqh01t9vvQDVVMsNu7lhmF-4DCnSCnCT83VTWO9AefDG-XqsD3JTSvc23S8kiZVYodeENQkPfr0ewUAwDP1sDVteZYFBuXarbQd80rloYxWFBcHkwObqpSYnaSYxKuS_sN_AnRnvwPf6CoR62uauqyeN9w89XBAw1HD4JBPqdB0A3EgTKbPacVCIjzhGbNrs3ajQ_TotyY_ElvtA-sXAce5f07LPYUaJjIpF3qWcEnlYpmbpHAsbn0330qY-hNZL0OazfJKuC5AuiuMmAiS8RS2qVnr26LnVYrMegzqEA4LaxUo7nEflYSrTJAVlLW2thDIeaZzJsFzQbITshS4xyNuIy9UTup6Mayo8Y3UZYgkTaZzLyFSJimVNRxN3UAgVCRt7f6hEfEb6uSRLH77ZN49RGmTP7bCBrw1sdIj-lW-AytlO0ikY6Oik5X9YwpcUC5q5zkiIiwHk7soQxLcs_EPTFTZWO3NRViwcr9z0_eN7Nt5wEl2N-Whu77IImvEQ7UCdDUbqgFEvJgKqHKspcZGTZ8yWbJntoxkTtoVFQ494je61eVsel2ewYghuZlrbpTlMsx-wYXSWWJfxxCyRu2zFq-R9MfkNsyReMKqfWgNgTrBNykDsjMlMilsE6HvwDJWJMUEmA9X-Z-53ySAq-_Am64Mq6v-NKcae3UU0YkJ8zunlu-Kg-pJ1bhf_2FUnS23LeL1FqIzp_wJcE4qd1nHiYVz6ibpYU4zWSd4hMRMJ8F-yIT8O5f_4RLKEnJYfBCJtDtt0fK7025iz-QpfoaXz2-XFXk3zhep5Kf6KhagW-aQq-b_gZ8mXgt27r172uxeH0jTNvzTErip3nb28KV60sVJhL4GupcrMAr8SGbO_h6cCZ5dpiJ0fHJBNBNGtrPmesOqRBKXjYuCoh_3XpPKVvGTl3MRTd8YxyO3fFnWmADlnB5N1b3SzGCiSwMilmASs1pKDMMH26BDAkVUhZ33C3gUVMWmNSDxav9BU7yRjKS2Okwlj5WZndgLjUUvzQ8aQSyoW_P-ygVA1s469gll-Sa9fcTTcCJK8p25unkNX-jKkmyVdnTDx7N1_t7nm64EnNZsn4XhECn6X9IF7nISI_4IZpKYqEykrgf32-IvUGtrwxgh4y5ULLCycr67UDf-PHWZy0WnXusSdx7HoALv0iqImUIGBYcXzPkTeP1ncio3x-5AQTmk22CUUH7oZY0k1z6swphFjX1hVN8mcj8CywJnrepa6zTMFa608pNjh3jnkiQB8xZg5b5RKI-bnRMkan-sEdjw1qXrIvoFqg3K5zJSKdabZX8KaBnLUv4B7SPkf62dfyYenzcUrbGyXsAkTj_jZJKQsTGrENzjX0Pz5k9pYfbTy8GZEYfMOGH8lw5PxyLxwfQ-wKYLCZVfOKw2GjBSwLjoKqYIJf3Qw85BVC3L5Nerz4B7arQf5cx929-wvwtMpsI7fceJ3doJn7eiwZxmgbb4UFYW9o7Nxhu6dES204VMcjO3zhi19krbyUOo7Ig2N7ZbBrbqowi13Z8oI7rcfVkp9KfKL1ZTfK4Zkjx6V38ryam5eLvCgib-swxix79FInHNxEImT_Ohqnzqd99p\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6837390d9790e9.38941320','','','2025-05-28 16:25:49','2025-05-28 16:25:49','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6837390d9790e9.38941320',0,'cd-form-entry','',0),(43273,0,'2025-05-28 19:54:03','2025-05-28 19:54:03','{\"firstname\":\"Emma\",\"lastname\":\"Gilbert\",\"email\":\"eggpt@hotmail.co.uk\",\"contactnumber\":\"07941227802\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6ukXhPfkZe4IgDEnF-dX5U3N&amp;gclid=EAIaIQobChMIiInwx_fGjQMVZ5tQBh29NDEEEAAYAiAAEgJ34vD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA65l7pZco08AiX014vsNJWF9Y0a5Hqdq4jwuqsoRIB_Seia4K3xIVRdg8dA2EMcT4ShLd5i9cQHM5uOzVeEM5HuHSwJhpgbfNp0Htqtem1YpdHsFavkRIwodm4oW0ZwvEXadunvZFFFNuJ9XQeTkwZCPOfcG8QPFo18i-Gj94kYCAcZlVjmB0NtGvPuRduUmwi1f_CTXHR3zm9ePlC5AZYVckjE3OPmTlKF_oBIlK2_k7Fqku_7S5lIXhDc0I6ru1ReUTMy3HjlZnYs1iiz9U50yjDN55cuqg7sFdfQ2zd2_FN69uOv0RBKH8R8bdpMo2fCn0VNehdqy2Uno7mkEAIU_4a4iuVkoRX34I7XCBKMdkc0KwuuWAk8n9Bs4mARtWsKSPtO5fa_fV8PN-m7BAvonCW1-2hWpAb95B2wYyV3bMOTdVXSKWhYtX2RL3_vXltQgG04KB8fzsfHsePiHlHHzwx9zPVp3Xuyjyu7ndTaCS3bQL67Azo396CQDdz-nW-0Nuh4WuT_r-3bAu7NW4K-CplpXjE8arRvrbfl6QeijQnZsB089yqsdGqBvcAkNf8LumRaFcgOrfdT5APebFVvv0-w7dppwEtVJmjopmdInZa8x5Jr6mnf1nuZVuU4EBBREpBf6CA1lWx5FghY9vnuX4sWDH9Nkhlhw8fO1PLUd3NerphIQ-nssS4I8vY0g_R21OLhgqiaGWcEwHrqsQWo3d3R3wBMMhq-3cTL_K7fC9cDuklnJb3nf-rjrv-czaZQ48KjHNMP6WB1AqcJ4WpsbFN2OThMwkYLwMUg3ptKw5v1vVOcMVNtN2Uo9BJSGr3GaHpCZaVkMt_tGa46jWUwkD6Z9m0I9WEwt8Q8xxq8MPerjD5gAPR1Knm8o4wJvUm_hJmmjwADslV_puwhLpPX6Ps-PQZIXiZB3gccr3Q9ZC6_ox4VSQKC1ZXloWyE0hpu1XHPBYy9lSdmJ44Tkw4NaUR_59Y_v0jPOuFDn5ew9-DzH6E1DW4eKI73QqMSJOHvgPtv7h3oj_UE89IveYQMNPZ9bT0Xo2rqexeCB_aLJgQBbrnu4PnYJIF05jrVrE6JVuwMEyeRL0bhs71qvSHCi-6mn78WHAyV5ncIPPo1LrG0GchFOZLmEhCN1WGe2n3DYQ8T0qJyWuHNpT-aY9p0MXNLo7Ff8dDwIqgLM1js5tG8m2TN1eSxbqvlf3vi_NKuSp-X3H-VBr4o4XW9pMcfcjzhZ8NBRq7i_DdYXkws7xWtW4Ul8pP-ur67m4EysFq7gzHi-DlxLOY55YelyiC2UWFOg4u1fxQAnrXKgpHPD1DIAbzP-Dix0FFQcsXYfTWfh289cmt-f-0Vyvk8PlcnhAiKaPHQTlFP3DxPK7IY9-OTNq7LRTXrA55PsGTUPGEC93GfrkAfXKJFvib6OO2iimcJacEG0kzz1h02xdMYQ5M9eRrsok29D0yWBZQOAk8j7TE1y1x4fhU0qqt1PfZvdvoV9Sv9Juyd8OaECWIwXjc_Y5bBqqoQJkgaVyAToUgG4sKk9SNZEFiu23-BO3cArE-KWdv25joqJ4SGLggmCUbRhGbxAuky7lqs9AwbooUxEMCwP1L6EQtFZjt9F1wi4lEcz5ZscfFLBcBD2RJDFcyu4FfQQq3P4SGBtYVzNE5S7s_CYCU82c4S6bJbGFYhVgGWsldLbolyNXw4earZEqPicOVHcAcE1ch48klREbhLCtet0w86l8xETgN-TyaMo-9zOHejpspUUjqBlDs1Da1jWHWbRbaLiMIsGtYTHG10Xza9vKKjuzGmsEcj38gP51EShvGhvCscOnKGQ8Y1vfkSnng2zonYA9zIb0Bv0WIrZvi1z12tKjtducKVWKc4kHfdD5DrDjP6ItcZCDo04otm6zjB-ZbzUihTQ7v8--ATrmBCr_fIy7wfx1XQS1fIKUcwVnCUlThesfqQOmKlmn_FKaj_E_lOlS0nQJy_kUQcJt6dLhRB0ubIZH0LHcVcCd8eRPPWYdf1FTKJzFLZIPuTPbG5tqO92fn1IohtiJ9bcru5URwLCCpl8FzSXVOJ_YD6YPRTQdCsXGGHs2lZFpHkQXHooWp0JYTy1cGSfDHitXTdRiLiuPFVTYythE8uFySO5rPoS63tZDwdeEY1VWHo2xhFTA_MWNMzCfuy87iyGyUqZ9fJs86oCBURdMXUbGmZJnEROkidAWb-0YjWgB9nvQ3R9tcsQYZsUmYlTQSJqeqp90uEcM7t1JmVqLfY5niLu5q0pyLi5upH9TcNRWIApmOxNQjD2af9iruLOhpMpwc0GHqbwk_RqcGq1QL2gUpv19OyzmW0GThMP0yU_z7xLknnd7flEEHnh0_icApvldr95D2q8-Wx6vxR8HqVOfAfSSBnoEZsp19ZvvsAkFm3Ygg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683769db1b96b3.19607054','','','2025-05-28 19:54:03','2025-05-28 19:54:03','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683769db1b96b3.19607054',0,'cd-form-entry','',0),(43274,0,'2025-05-28 19:55:42','2025-05-28 19:55:42','{\"email\":\"eggpt@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"Rh18 5bs\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6ukXhPfkZe4IgDEnF-dX5U3N&amp;gclid=EAIaIQobChMIiInwx_fGjQMVZ5tQBh29NDEEEAAYAiAAEgJ34vD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7GmavK1V1ZLe-EPm2yMstB04u2b3puVueUy3FuzwLyDma8xnCLr6hiKLbAr0JSMcCuz9-9as9H6IZPTpXUgmdPk_WmVedmhOutDUb8B-v59nHq3XX9EayDkk7hErrJ0nbUvkdXRyTcNpT3_LNEtoUaVZacacXyVtHVNNczE3L4DRWwIx4fyOmpmqtt6y38V4OGqhWHhjKUxoQvb6cPjJZOLLxoYMYcIyiOyRSIC2vuwDmb_pTjvgdwQl0g_fHiSC1Y8GV3inuv_hm1bmCChPyrN0VVKw7wM4bSWduCAVt7IyzmBmLDK7JRqXs4k8ZpygB1wzQkvvO5KiYlEvLqYv9oHg8WXG-bJ84oV2L-6st6BY_qHxFVdVRNt8EJxzoO6XEz1VDBzdItxMrpUpr-80QGNBWcImudSvqy5unJ81694q5pZyHpGo4aEben8yP2-y7r-KkNQB3c_neATGIXY3e0xdonrlAXeLBmXmtlDmv1ZtEDc4YVdvoQBvloLGUzGJC0OZQGV69bOLB80ua15Gv34Av-L9G4po8BwfRPjAr8KP6GOLVtHDDnESOLiL6uRt6j7abDlunAGKqqXWpvlCWFRVMVWMkjyHyLENcLYHqsgWXz_4uDMoUNY4KNeY-yBZ7aymdi6AH9qtaD8bFKFWK-XNF0y8QbQe7l8a-6UV0iwJTb8cD7PcfimirKjs60-16skZznmMtcLdTVv5gioTsW5V97BZCzwvVe5TPO4N5oU3maivCmJlLSm7uQGItw4De9zAH8ogHoLCFEa9AeWWNXLyfEVpxA9ud7If6Ds80woBRkL6Zs6z49t67qVuAULLwdWbBKbxLtjfeDXfIIm4iStoseK-2kL0hp3M8zj4tpdCWHpu-UTaMCnai7_nIzgzjj5Y0CoQAzZZdGGxExoOCklOimtVMMRoOPB4MnNySNImoC_nKxkfG-FsRflSy4wrfnDv8FRYRxs8NXXvLj4QIP6DQTGFDk0MMQ0vfSPLuxOrSZI2VlTP411jHKqrtLfR9hEQnAqPmAaV1LITcDDm5JJ2kCIWUNYBtQ1pAIh-ibJw7RKH3MUSdTjNd6gD9AVjDVFYZ-FDQMCs82vJTlcJnwFaRUQ0PSwsG8XWo3WsuEBa0wS-iI_Dpr-pTsvHBO-v8H-8vq2YiAdeaENdm0-_Fu5YwUVqqO-bIvM21krckXglqN4V4qJWlYEWMXzOgtOYlXsf1x6CnZ2krr-SuJ0Pcvtww5pY56HVOwpnvX3lRM8eWtW-PPnSjUQc0QINkkwWXmHSymVUgq-mdOUcx-KnGIrt6iBL1Yn6QTQpqOj5xudhpnK9CmjhjtBMtj-KbI1Fkdv3nCSLa100OjTKsPZ1FU4PvTnctWY9eRTGpRTqxG3TmbKBY2grGi97MmnVmb74e1D12g4OQqdJQELQi8PqpTAKS5v9ulQGwvq3u9b2Jl-w5WHT2IzPrEmWfampkAam9M0qKEAzyvngf1GgWyiRSIMMkKkpymHp3zO8EOLZpBnYswtXh1u2rKXwrTee4no4pYfp3yeKpkXuTUBGZwxGxOooFAD0SmiaIKiQE09hImG9i3ECJ_ed55_ETSthb4oibaxQCHKiAFatqw27EDl0XZELgVKYMzTFTHCXbiqTwiHpL8oV-W6kGRRd8C8P-tggGqVg3D6SAfMW09-HOk1XaZIT3Tn1Ada6Pj-BjTw02jKlJpiIQUX_yoISTTWgtN2RfBWoDa_yyYCa6LAdycdbdq1ciBNxcWG7-35M88c_-jaGp74Ysf_zp7VEDvvBg89oqz15nXdXPf8QKTYqPXgXr_7haMk8eYWCrW05nCQ_HSnw2HbXe2zrGTXBrhKcx_lNgddWM1Fg8LRScYM0oYnjokeNAIQdI2qyt3Qdb6hlCup7MosSElKYj81wqUgakLF170GMJ1o4OWO4wbokeANDruIYmt42_R5WBiXvEkZwXDK3j911Cku99ub34M1X9XjAKaJX08GN5U1MNuU4t_cQ-UodUVbqvO54qbenDIZ4RkWBlNB2F5OYQVbGEeyYsVHjIRadIIOupSqoWBtQ6JCzjiAddHsT670vOC31Ad-0ZnjOmzqlG8j9Bie-7kcscgCWmB2h4j4goD71k895M_G8A5SDAF3rJN7LtbEDpDPsnFMOYFrrZENbVmMhDXihKyozbqFMG5soacBtm-2DN2__6i1gh5RapuRKnqxIRx0lX-buEBqHHTrrnq9t6CjIEEaqiVuLS6cmQ_tzMy09oQo6MtOM84ZlCLPa02FoWlEBVqlbA4GUYM28eotktAbcMJ8JKAeupuT1maYegqzxdK6g47iyMegvIuvwyhQh1GtNu_TAZwq_CU06yk5zoUkwu1d8fT97RpV7iMv1f8s-9DlEdo9FcI4E1rAszjrYrB-Wg43ci6SXM\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"3\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68376a08b72f78-93572811','','','2025-05-28 19:55:42','2025-05-28 19:55:42','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43274',0,'cd-form-entry','',0),(43275,0,'2025-05-28 20:46:10','2025-05-28 20:46:10','{\"firstname\":\"Gemma\",\"lastname\":\"Avignone\",\"email\":\"avignone.g@gmail.com\",\"contactnumber\":\"07815750883\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tjiv2Nih5egyTLSCRwZ0vok&amp;gclid=CjwKCAjw6NrBBhB6EiwAvnT_rroeoPLhEfbsqpkB-kuErankdM54MM5DRTmARvJ-YbE-VkDgrnh-PRoChWIQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5nEoh0v8jCLeS-3X5Umtl_GVyi4FRNtWnn1hmzJpj-YSrAzRdg2d-sYyJ7KTq3cuhMQGCvJwwKvrkhhk3b8GNb-AZhNp67NHMMSH9suNk4uobHgz2hte9mpQhjJ3WCrWYdTb8LgJoE4FfyNUZRHCt8wpyOUbd2oxv_G08BVsPLjcp5HdtKp6OiagiayJ6JacJFt5oDyfSRez0ATpoT_ytd6nTEx7tM21EdOTppFdIiH84kfQv-ws0AlPeE1YofOGPImCGD1MllBc4j-27CxkWScYJLKx1D_o6WvBgWMT9VQLeNfpRreXvPLUjl2cBIUi5W1GkLpIpm6S0IaTq7oeus7I48DZXAsQSsETT9nPIlQtuBWk8aZip51w3eiZos7YjmLdviMHcb2gKp4PcKIY_BYUekSIZYocfWpbR4h8e2bvzSgzsx0EQFQZJJ1ocyAU0apx8rhO_ucmd5wsQvpYVx5WabRzGj6irUCNB31w52KiIkj_uLKX24cOTwnsMCbqqqy0ey_JN59dLZd1GfLI9bha9zTdJmkxGiGWj_vmiDqMF9lRhYGgzsUjBGIJOEUd8or3uvFwFoESM9BbbKfA4JcDpa3VEEeAjLVRss4pySJe9vvzB3MFC1FcORtB7ljTKC7GO88FggwDWUANqT_qFutnFuCMGiuxjioay7Psoh5v9RRWa63HMpGcxCOebyrWniF6SxHN0qAs18tWeCiP1MT9hWIVnXtNoIXty1Vbxg-eBgQ_vf_ObChzOt7n_Lm3kWV9IqjI195-dbTNuHBR5dluu9e7oNclZ_43irTRdyNP8BchKh9cdjp2h6BH7sdO4mXsWor2iGaU7VvfhNpIe6FfrdAbPZBg0wPpwZYge6BvA6uJz3Utb5yh_yIrqY9IElZBtFfnOBssUi04BJ89fGtL-iO2aftMyaIju8IaaD34lo4KBZIx4oISWjJO3q-rvgNkBACmwPEEWCEZFcrzfXg7AfQcNKT3PI-6V1rczL7ztIS7NMQTK5x9dNbNteAPwmR5f_jcHrdCQ5cUBzc_dCUpuB3DvVXz0NT9vZC_nlCCBdALFekXvwLX98G1daevLzGySagHn4F3vqDqJVMW0dnWQAKoHuH5mOxZx687j0IETh34h9ih8QVjm-vZEF7Rf-s2N1ZKakgT0Xpui7daXMsIZA6ncV5MaguMOEeomNg0oduMC_U1IuJ-2UMVHrgYhtQMoNvRQLRayMp3PGfaMbWqkgMDQEv25ZkBYhVp14BszG-ahzAM4T_6zOPT2y57nPSi_PzoO8CSyVdZS2WaSKsHAJRxoX2jTS-4ipVUynMEf0X1rwJtNdc5EEVnx1OmxIu5zlujh_Y4T7PGvll9HFPl_t4_PeORgA-SdqPDHxCFFyxJ1C71z2tiKKu56EpRtiU4sn_wnm60Jket10O4dLE3HhWkvrZ2dE07RCcCAls6oxlvWsXb9B4M8xE-GESt-AR64gF2snYhKx_TMfhjpIL4619sfhDkVX9cgRF57cm0LcuQzomvZ6_qgwxmgEZ9VbGHCLB_2AejNHMinU9uCIr6BihMT0eOZk3FbQebK_YSzHhcrMX7ElYofJG087ue4vxbXKJwTEKSo56WTRqjJuIo32jKT2MACxggLeab5ubuvHiqYJyofdkgp5PisMP36XYeUAkRRHgiuuLFsMkwqpzYsSKus7F6EodhsMGBS9jA0XHE7IZ_2n_BDikhTmmftuokHAvWCJoATLA8Lgs7Z7B51qt85Ar9amAtBd4ULXqFg0ocWvXu3nYLNdaUTlqP7tjRnknSDd2i-JP0ROk3gmZQ2UvfcKPmQRxOt5w7oZfKnFTQIXOHxbr8q2zbXmE97le4_IiMEyhFZvZQyRY2juyq6WQT4hEhomsufg2l4oJr7eSF_ad_1li_26k1D8eyA_PTo1q3zpWbmhOQJkCmYuVAitKx3R4riC49Hypws_i2coCwYO0KD_pa49YN25L82JWfeOamyhkwaYTAXhgxD8eCzwrRWm3e8oNFTYzHALWP3wdQY2R3Ssh34rqPNB6sBTIKHKBpyrl3LJ0Xusd3Z_i2Sznk6kvCRanpSn1rWcUNoCdEiN5yxtqXKX6Q9MojNwUfhXGa4cbYewyzvyE_fl1KYTxfDFbgHKBXiFWiE_1CpEjUFT0bXi8SncBvqLbJvnbcDD\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68377612955ea4.90890478','','','2025-05-28 20:46:10','2025-05-28 20:46:10','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68377612955ea4.90890478',0,'cd-form-entry','',0),(43276,0,'2025-05-28 20:57:24','2025-05-28 20:57:24','{\"firstname\":\"Tawfiq\",\"lastname\":\"Alsulami\",\"email\":\"t.b.a.alsulami@keele.ac.uk\",\"contactnumber\":\"07300586087\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tjiv2Nih5egyTLSCRwZ0vok&amp;gclid=CjwKCAjw6NrBBhB6EiwAvnT_rtexhxmTKqmSTVu2mCqzYByvB8HE1gnt39jZsmgv1mvjdR0s59JSvxoCHfwQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7-R-ObYnxkk3ttYd1HzALpUPn97QYb86Hn7mgShEjMNyIKrsTjnTaMmb3_F2HQKOmz7d1qdBOiXbZ7BbkwMagyuaS1L49PL0YRUp4M-neQdB4J70e8o7rUDkUSoslf-j4iTjBuUFHbrEIciynME_hC_f8f1AcHpJkviLuciGrgmsGBjRK5mQcOF1VC5f2Fi-dKuiFHwsuYc6MiTaKgyBFZydLGrI8UsSQBLHJFHGvnsXjSaJqvhLc6kWwxFi09rJG_RLYLndhzXOoab4JUvl9P-X6bie_91LCnIx87t7J_tWyiW_2cV3he3N2eHpN0TKmw56v8D9RandQxBjFOdU44cfeThRKA9sofW5-W9AYimJ901c_os4-HiCRra_Rd6DgIOKBjIv6swBW6_V3j225jeCvYiIek1XOYXXFrmn_T3L_XgmVOJDYCbG-VovQu7q1FMZl8iayiats8Y6aYYl5PQZOqKn_Bwyf5P0xRHqY1cV-oYdAOoszq96VWyBLriSMP3rLptEIuppiNE25dhFCtTxYukbs4g74_mnvXPaKDAqE4UtV8ytL_jsmuBEwyaZaKq3ynyZb5zrZEd2ih-4uZZJ-5knNmSmD2fH2MMgFFvwBIxXqJZs8pmHImXlX4lbt3_xGARoY3IJ2RkxYN88xygLcBy8ijNmlDUdoPdhavrk0MOkZXqVl3W7KFOWtcsO7jgjy76mKydianxzwetSAW3FBR5qDSaqt3ZJ6Uw0Jc81gOLnCXojszgQ_5qRWjiqy5XZOjUy-ketLp_eAdX0BYLOasplRI8kTQyoYP09xBRa77viIDIK0B9r6FHhG704cF39xgqR6stpJZ3ul2xStwdahjsRPlLgYkjXjt37AelZe2tuxAKBBnet58JrGFTAHbkI8ikPbnA65_9ZwwVzzkvYEiwLLqX3g4YM68JQq0mqSvzudc5oGJWCNFSDc_0u8V1nX3ozgzbiGoFsWYn3wWgfKRl3GIsGN7HKBQgnnqxuVuHLJWl5vyZcwTAjNN173Jkp147SdtrKN1qtBpy4eRKYYhXEL3Dw-L_uwErdTANBmjc3PrA4ePAlYL3yi52RYR6DBu8rEBQufazW8a3Hk4Bm-xVtBUXclzssLsdgeE8Oy8GFpa7rmCPWg_LqCaIKvzgbDVKoFu9g7R_2oACfWUpFuyVlXBJ0HIANQBpy6Uhb0-OetbAPtZVKjf3GHXlXhiSDPKvpkfUnRrURsLu_iFFZpfG8_OOLP2OpYQlF9KNwcYHr0uRVpRxLWzRj2w8UZ2jgK6IhaF3yeZFnsptOm-G3r1D09jYdDQ3oK9tsgZf01TrI3qcar2MDT0v2j_0YEkBNok1ywldkSuhUzbFpe5aOQbwn8wSr5auT9viG11eAdkW9itpaPb7DFFcipHi90Anq0dSXq4xzx62KA_46XRFe2HMGOg5Q3P4Akw2Ccjkiq5bvuVCq8XnHKDZ9NkklylTonQd77odJN9D_14trTh7vSnSx9pYqgKAYNrDO90zOFeDCoL0j3F1BN-p0k_i6_MI5bsGHq-aV8RYS6BEfEE70Ltk8gxoAaz8qXcsjt8cpJRt10Yn7mWSFSAFijTBVjW78Bq541UgPhkx5w71iL_A0W7chVut4d0cDmkypmWjj1TRtsLPOytVGrO6VhydkloUImaIRSYmix18ineAFSzLgPIbGLT4U-HqDrGNv2FAzWx3xCZK93NA-TsCTS_H8KLHydotVdaJhY2UyRARqzkbwi1Z6LK0PjYK8mDET4XDZRYJFZDC3VwcyHIhQ5tNZ6BUtwxT8PKugrOzHcBJhgwmvpsC6PAwhVidZXwEAxV7lOsQcf6MqAYpKBiGrSJ1bNwBN_ccNdFNWqTIDZokw4ts4eGCd7la3sJma7qALOVlvLVmEiLpY6aP82vWA4F69pdcEaFjdTi3z0dxkl2PWyHXi7qVptzwFjLyZAhy2o0YwLJiLqo8vj0Mkj0bZ7YI-fm-PBuWFz6uQHZABwt-KCxeBeQ1-11x_4zeUrrDC_nncZQJQ7lp6M4R8tKdcwNvEgSuZDGlmK3GBYdlkBm2Srcgjbb7wV1ZU9nvWFLgk044FFNvGPANUY1DohdxEdFRZHEDF0IWLRw5SQDbVKzMPpmlHcfBUy9D3fGmLmmL5m8JsIUDNB5Vpi2rd1VdUrpqdbWA930OFLTvzXZr9jDh2wdwEgwN6xVk8t3N_aF6RWQgvwfyoW6bwhfAfRnCqLNrxyS6B79mZbYzHDBskzwfaYZiqFmZtaSN95LYfa9KZc3Og5J4hw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683778b49a7b04.92144420','','','2025-05-28 20:57:24','2025-05-28 20:57:24','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683778b49a7b04.92144420',0,'cd-form-entry','',0),(43277,0,'2025-05-29 14:08:08','2025-05-29 14:08:08','{\"firstname\":\"Nagasatya Haripriya\",\"lastname\":\"Chennuru\",\"email\":\"drharipriyachennuru@gmail.com\",\"contactnumber\":\"07747258557\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwi-DBBhA5EiwAXOHsGfXkf0X8XcYmGzLwaZ1BNG8h8WEAfiHY-wQ4nfPeJ2q7bkCyUrn_MRoC7YAQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6EE-41w_alkOs_gO0dJpKfBSkkUN-BLc3Y_cgwgXtvCXzyprVWIEgE3W-sUQeWh6DE4wiYr9OXCQmx_F0-zdairzztesjtOoHp5CL6_20km5p3BNh7HXqcuLZgr2XwyJ0G67nxc59WM1R_jtotxO2L5NovKVEJWg4MJ3VuiCT9kUAqkq8DCe3rKWczsTeZnR-d-0hsY6h13ru2WGkGcecJTfkcivczx5uMFTx4ZM2VKzbWGqRKac1i67vGDls802YDjG2HmlBRr4_wX3ptY-_HlF_Cv54HZjyDs0Ar8CT84UXw0W24IKXaiQLDYBxw8J-Ejoowryw302xeBLX-0Uh_gVCarBlHegXe9zAFNvXJn2DznpemzjxD9rdK443qf-sSe4ibmTMwkveyy3q_umu_kpYn769ONTcAETBFjDAqjXVbJVuLToCaRSCOVP9Tb_Iq1u2ebV1WyE1Y92tFtKKzP3yEnCYJ2VfzM-YpzNETT_IdjsDQETm3nZKEzvIFjiw80YDNxt_SBxRYSgGzHLf96AB_JTStHNzezSXKRe4OtW4WC0kZyxLouaMY7oyjaln6YiCEUzU8AhNINWedgoKzh0QNanxFaMspKWnILPcVg9KZD29Vm9qR-iQAam6GAzw7kuRbCYHRbBg7prz4X4tXvXn6H8KaUoWTk2bsHk6Nd5ub21gOIoSJbuZkFqzgZrxalN_Wynu7YiZeZETGYC011yo1SCDJ7PLUJcqh4nvm1Sx2r0eNjkfJvhApwU7k8iYjgj3yb7e8owwb-4OTuxnAiUFxgo-Kmg1ZpxBs3dgney5Fdg41bhx8E5NwWTx6llzO4NPdDkRTW3pQy51TATe44N-Ii8Qq98VFT-ds3MmUoblKxU2TJp7xMYnu5OPdzfCsncYJhdjvjh8up0UkoE2aYI4QqoLX9r6ZnGbacQ0dRGe77enUANf_2l16CAI_GKF0Pto3gyP8zdrh-Zw47uHxw8H-7UDKLyc-pzsmlVkgj4asdqKsyPpd7o29-t87q34VZIycdO6nw6PhHgAhQ55jXqdiHkC16uqIm0yDrXqmfg2h2SSpgUEFl4uGQ3UA6dVGmk-DUy0mjvtDOJRHdZmHpomfx1cWW-N1XnqU5GpoDVIR7HQnt3Zu6Z-msddDON9EWsrsOzLr5axv68ocJVDBn_5ApfOiOW9qDWICeYG2FutmnOTNdidNGY2xTR5js3spQv3SHMi8CiYpVNKNnY6K-ow6CGzryW0s34RGLZEWowrbqSdFxNEIBMa4sryb7MBkgksuw69oPayBCA4jUgA2sgfI8xMJHskY7dmoB5irnURvr9SZVxo3C_hNBaywvhNb-Zdqud8bY6xZf00OUHUC1aR7ZbsQAfjSnsZg4mT4eIRMTTaAgbrcoe3fpenDn0H4hVVgUjQzMsUek-z13B-kYmoUE3XT82Onn4wGFNUWUvphSQtP086QNhCYZ2SxwaTMzkono1tDZYGfJcGpG6JWm-1KZS39h3izFv2jxYspxsDfZ3jMvLgdNu9o92UacZzPsQWAlYX_TBx5OJLlSBZQxaO6CRYOe2ltnn59nknm1GEhUOqgtmZZiJZl81Ok0Zm0uv_mMqFRwapBrVZm3_rL1rvFE6aEz5-qnG_ose2LABgAfCqcYN3zbQCsqWFvGyiinAFzGXb40JA0XZ2GbVYw5eJT7IkywCufEFj-YzJTSSLcNUslCbwjtW7pcMsWyeVd_hOBmIPUQ3PWbcj7TLU1U12No8d7UN2JSAVDL4Cb3oPoH3277BlIs2h6ZMwVmUrNcbMIcb1kP1D7vp-HO5lpJJ0iqR8805ZE-QIOZVAMV5UD17ti5JFl1qKAfis8Nq1NLXzWrMGfNsHyybnEDOY6lyid4LSTt7KLak1F_hnF-iLLdsZ0So6rkIxlavKngFQlZ2lqd3myXcqOuI7llEnry5Zb4K-vk3otIDZz6CyJf8veiZ5jyBKVL3A8LVTp2Q-ilsz_Z6D4zg9_HLqmNCi1UuvjCfU0s4TK9lzlQjmJAqrSdwo3tRRAK5_RlAQZrjXyuppgGbl_9-_NHs7jLaKqqY6yOhra8YmXe3_p-RId06C-X9HYnCFpHvIYytFF5BZCAds11Jn-iEMoxKvSh979g6D1fW5Qsn0FuTJ5wGE7nj-0mEI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68386a4826c2b8.19361360','','','2025-05-29 14:08:08','2025-05-29 14:08:08','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68386a4826c2b8.19361360',0,'cd-form-entry','',0),(43278,0,'2025-05-29 14:09:30','2025-05-29 14:09:30','{\"email\":\"drharipriyachennuru@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"CM20DY\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwi-DBBhA5EiwAXOHsGfXkf0X8XcYmGzLwaZ1BNG8h8WEAfiHY-wQ4nfPeJ2q7bkCyUrn_MRoC7YAQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7OXnCUjhue5bJ2t6oylHQUg-z68BOsK1AqGuU0wynDjf6PvS-jX7lwpLKYgQt5t7O4DQzWPj4KjRlZgoFu7nD7wWOBJLx50z3v6MiAcw4GVwpAVwt68-StWHjsMbiY57jCbGNVModpSPjOIGtHY8FEkrmo2TkfKWjlWrYml3ghVHxKcngsY78SIO9yTN-d5r99i3L3h1Uu829PsvpoFAxw4Y4MrNuK-SA_okvQIlyH9qCmFr2HRvuQG3FR1N6BQGdtA37PG_aMDmz9Yw6Psae4Xs_vCqz9PiInepRa8649H8ObAdukWD3_kUbGBWQ3fVwyYyvSptxNx1fdO-am2eegA0oMI-pTdSvLngkt0nyeWKlx-8Nv2Wif7VrQf3sXFQKg67u10iAgfGXfm8A9MTWhKJGMiH7oN4ksp1NXMKTIFwgVwDxVdZidESqSkv5JItnacmMiESXfAh0iAWL2sobsaGvMwXo9xNuxre4ufwhWes7cTTJzm6isANrSGTkSvBR_s7C7jH_FOUpvSbHsPRdRpVbeR5rPevZf_VWkojOGmQUufT_LHM8XYQrnZE4O0_GX4K1K3b0QdTKW43EvKD-dLyLcH3um5fiOWmMvQl_V75uB0U5t4Q8F_YwG1GtKa9B8IypGxGSk2RBSU9U61gYOmr_s7f1ZwDPHjggtFunOB0tHgf2jvIPL1wvNOzM3lGA-tadpElxy6vYfOWDFl5_o_6znxbT99imG1nOIFIhPAUri6reAcyX0b4okWxwFTGBmfhE3ZuXJdsnowiMlz6lilzmh-Ao8X7I9SxYInNcpQ5JhIV804VPALg3u7TfIwfLstR9XyZuqAGxNEuc1g6zOcpA0ALR1fwIFtls9MG-o31pvqQf_hG7Ifqz7P5QXExPqPzuuuABKkXQZTxh0x_uz1IhRSQndXwpufPtxGGbgWCORVtrf4BrKtQHySpi0_JSjBvRh_cl2SdmTeIF34QVB9DZsnekoWjPa6O0XbcIfTtsS3SHGKwLtthpAqZT0InQ-8aTeABsGUIipJKUk_r8I3cpRer_tNTp5o0jarcRISTQRQ74FdVcLxbZfUECEos8Rmkuc4r0kT8z7qZWrTLCHrahv9lwkqUYIlazNIWT-b3dKa0HW-LHAY7ETHdLLFhvkc--xUOi8QnVN-dTr3CHS7lpTHlkjkpy6P3tdpeDmTKEzKRNLejURhn9d4xZGXKgjaZ3rsToFzDX-G3FEYX1Pt1_cFkXRGN2YLPaYZSPqmdixsv48kh7avqJ3R4XKbTSb_JpvzZ3VrBoLQ47PKN_uKSoif676Jo76uX7Uon8s1895wCZw5DxcW4YGnvOW9ok1KxzOsuWg8VBVCxaOU0n3kQaEPe4KyL4lj3wtEN4Auc7o6tmoiT5QFOI3_OZOrmcrHclfF4PV-Kand2QnmKiT-rAVMSUf-B__auuP_oBzgfxZqYYM3AByahCV2Kgx1OJBEypTuA_xa5q79oO_b86pjhm6itU2_2_LDTWouLZr0VkP9Og0j0kx9TW3UA9LNb6Nz1L3DEwdt_rA832nBGEWXMKNTNVhh-zT-XJxD5FWpWA1rrYBTDKJgFd9cspV8uFXFwqFkJ1XEN7TOMecr9y5lRspwKXL6q1nFWSg2WhLwpwdBfUl-l9-3MboMwR6p_Djljrl_xvYYtQmFyYalZZGHTSAfK6t51GPEocIVVosWaeMicYqI-GQk8ONUlN18BZnQG1Y_u1U3PnjuowJ7BHQG4E0JEgbkOnMw3rh6Z0rTpiOMfaAIulTP7n6m_dTCbhZcB1N_yK8uiI32LVXYK8mYtlbL__wvObMb-sFAyMq7PywBuKxHu1ZmF6Ps0Zg0ifkV9XEG29VlPnkuSzw4Ugc50TJK-v2PGuYc-24eCEulb4nX3YxkGfGmEPVAiOiK7sA4n7a_6nYVZgmpAOqYM85TuxDpT9LCDOMzrL59IOqGJ47ruFMd67fO9d2pngApQFGzet3ZNgkVFqJnlJ9S78crJm6JGamKU6PcIayL7poEErIon9xCTFmqoHq_4KchXN0ZXmE-8mD7dJ7aoReOFYfylZe6etq4ECf9mzMdkjMMB-hkoOFrwyPiwtUOOeWxEO5INHJ-kejfObqqgoD7Q3INohOPFwjdK4g91-7_vrLyuWQ8MkyvRw4rK33rUAc02p8zejN9Rnl04Lp8NdO30T_k_w6kg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68386a71884c65-92080987','','','2025-05-29 14:09:30','2025-05-29 14:09:30','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43278',0,'cd-form-entry','',0),(43279,0,'2025-05-29 16:16:50','2025-05-29 16:16:50','{\"firstname\":\"James\",\"lastname\":\"Milan\",\"email\":\"jamesmilan1050@gmail.com\",\"contactnumber\":\"07757446563\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6U9fgJf08_fw5qz61m9qom6G2hohIAmQ53NkbxA8YaWyNFdhZFiHHBHvP5JtK5feWcXPgB2D6j9oVclM7wwIcm2XFwIFtuMNkWjOgDqGnhgqZIX8np66s9j9q2eG0pfe2VzUBXlMPL4RgaSakqK0_pf3iMFn8rHDpmAsRpKw-tWOS44vWMP8GznoK9JEecdj8DBeCAkD1uD9rAQbCDb6HGG7UC6SmijA8ftCeQ5CWpI07NiqA68KFueE2LB7fVB6VyoeUJiH9ia2A535ukHQjW_U8HVK5mkj9fnjwdG8tdexOR0YpVNPfQfGty1JCwftMEVZyqKD7JBvOPmYNxLSayybD4srpbVammHocCVPMXxVtdLDNFGNHKT0EY_WmiGnC1tDhjDSDeRegPWtLvSpJaQ4JRNr44CBZrig3BNkRiuRvKOpP3eNhEMH6LWhD6f4S3R9YIQ9DXLY6s94b_QFY3oH5qUr9vQdFVwapVYPZC3UY638zgNetDXKNPnt9l842Y0tqPTZ0qnD6Ke9YB6PrarWNl2n0t-RLjTTBi57nOyqKs-tGtkLc5qxsT_WB9V1gitouK-1tpnzRbb9JcfA3NzoBSLXMWxa85tjIWMwmwi9ygyO_tUySO_1tM-VfFGQFrCHPXLYRgBD0IGeJ6WQpycOEX8cXLmZV3Q-b60rCh84SZTuMn2uj_qGOl5reTzlJJ45zHAdIWV_BnDj1CkVJ1ElWwV1kc9ewbEkwhBJfv81q8wAWX09ThyZpTmyndZ8gpEuiizd7hHg49IUhTNmrzxfM2Fh7Aj4SpXY7ci6P3051hCgVv28Lvv-LOGtMLXpN4BFWVVym8HYu8Qf-I_g1-pu3N59CW6rgwPimquDy_zpzv34ojlYRAFowuSJl_8UhrLLB4rbDzdZgwGBeL3qY0K6hlbHnv1IL8LBFlZ85TB-Dfri_c51SS_Vi3-gp0_jRLnTLtINOMhnfwvtS4HXDlx7fDoXEhQByTqKDxwdi9quJg0FDNqBsZa04Wq0noj6t_BGkPidIeqlM2k6uXoxuwnYKLfuufTyMTBLmAT8a617iEjjIoxz0OaCR5lzk9k53wHMqUKZbjcgTG4gwlnoyvZa_28_qv51E0X6Ci0O2NluDXr_8xer_ot0xF8wAOxsn6cw74T-kVv4QK9HDjRJorzdx62DJodLEm6n2uOh2o4-F0alFCm_mdfYojC02cKDIg2Q_OcSmcYm7eZuJ2di9CuM6EfFXHuohUK3RpwOEtVmfZttF7fBxHPf-EkxScPVUwNSehOOlBOpxaW0pcXLwWCINjxuZZJPPudaVNbqhF2dl5RgtQe99jqATGy1nSm60-qVGbzC7uly5rZ0g4O6KaDxQd3-DPreeUJlRnK0lfN4quujEf-g2Z6MrKYQriuPJz_o6GP6-iyazgpPBFLvdaw0c-kqZcln3yfakzgrUf7tvpCHBZoWue0RXp1vWd8dNOQPbyHA71blo_5nLzhSlJOYTUm_dDrFrb4hGOxRHRN009iPkLwvwrzQW8BlKhuHWy_7dtlJYBhv6kUnX-sASTj9plSEM4B2XWUrzSqUe6LYejXwXDRX-D5qEa6m_vznpxV6jwgSA05wXh31SdkvblLDn8ulJ8d-omPXC656SIEM9zDfaUt4FsKvoLB4dyBk3tRNcTAaY803s2bOC501_Yx8-jKrmwsRa8SHN2Ynn-uDEK_JF_oiQ6wkk8RWDN51GB-kBEGuAWkDXdewgDP0YISWhvZ0_PMQEL9iTzPJLqIO3ZyzkEL8teRcTlKXmkhz7lTL98DrIAHRq52sMMmqTYig_BHsCZsl1vwbCOLi7P_3p4iIQDn6v2DqlkxnDCbNRbRu_maLnBVI5ijyZespR-BtnbJ5t-ClZ_nFlVbJj5KYZ4iIKqbzWnj4QZsr0Fx098wkaxnx9RZTaQZ0LzbDrDnWzItITuz00on5kKaJGbYEo6inzn1ZoHKzZC160yJr2iyAdFEaymUW6YyLL6DAHJnUE0ZYXPpO3nKQFoWgTco7VNjlwPaRyO1FSg5AsrCrxYSySy\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683888727ee368.01522327','','','2025-05-29 16:16:50','2025-05-29 16:16:50','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683888727ee368.01522327',0,'cd-form-entry','',0),(43280,0,'2025-05-29 16:21:31','0000-00-00 00:00:00','{\"email\":\"jamesmilan1050@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"4\",\"currentpostcode\":\"ST174LP\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5XDrA_8m05HugpHZHmJCnW_ANXcA7rj36EvqO6c-CW6cHBc6Imfeg5UNtYNxDsPmGJ9MlS82yPlm1Pn6Buk2v1BV4XztXHSygqgNUEEkvAprr16Fqx9SPPW0M9oedDHflpLMgU4kI4jYun747jSToeb5UKWgO3m4MFZ9z5BuY5hQVHgy5KQ1WsTC7VvK7FjHdY7Z5kabMMRYvTsyAhl2OHfX33jTyDJXt79fLaE1SBleI4u9G3BYCKFq0GuI-7Ia-EJOwsM4r2IdN8WjJ6Gs8YWDvUAfQuywAMJcFvzOu6jMuZorbFPyOZFT0X5ltlaX__ZqlGYtZ1-NK_CQwFQP-deaLRYOw3EMEPV6Eu5tsNYM_28-NUdbzc1VbTntVpmP_LwvT8K3WCm7rKzgPjfb1a0b8juO-p66CKqBHHvPi-TE-YrZKHDnl6ZY6n7r_Dcuram9JKi-snqYHmXnL4EOtRVSVOoho3_cM3vrfkKCXeosga9U9SyoLLt8KFUPjE0B_dqewMVvb02r2UiYqBlGfSO4--asZcxVHVyAGGAvD8ZMbUzSsuAG1_zOjPO0_QYRrAxquaBKnaNwvE9X_VSJwdkpNkOXZnY7BjkU8pftgQ0e0wlJ-7LiebFII6Udz2McjOVC1ONjDbFg_AA-nTPKZyNUHKmjxBO76uLbFwA7fGobn2srhZLoZc3cIgb10r_G68aE8ibfblgBHcXwN8pgGoEr04EJCQSGTLWDcI0OhAFgKOwHLFJQSpKHSPoYaUIlg9PrpEpEEC_71Apkyph2iuRdvkQ8qXAsdON6NkPoJttyUBVnxWB5Zjv6xezCTAzwF8vL-eoJFGJPZW-t6QEr9mynzUofvFofB_9lM13Bp5XPl-jyYaj4t26ByfYOwTdR3E4EyEYAzzdk43xDSue-mJHmFY-xk9HG30_ExWsZdyifxPl40PnJ9ys6sUuUg2LNDW-fTqUIOHpNqeDtzFxFBH_VYaoB_3ujkZkH88ENpWNIhYXVsIyrm8r8nx6WwpVqqH6OfNpgWJA8xtQQS0YDsnD8i_Ag5QYCe3udqc9cher_TYX9HStgWS0T7rv_2oVuPbxMQnFAOcfdEKin_2V0UJ7ExDNIbk9nvo0gGZ007lkQtVIL4TuNqLAtqfLGUNgADMzi63A9rojwyAoaSnejq6Rkp53eab5ZDS7KqRqxj5cmBCmLY7vXgMN6f9rnerz_M2vFO8FfrzC-yJq_NaQrbdcV-7IoKmXP7et-QADb-RrjI5s7iFKIxOUXVCzG0Yhx7ML41exaSjhYE3NYIrX3JzvLMqksaZH2xdvWIZXrUwQ45y3MPURV3dChR_PMfk1vxTuIJ37Q0niL4zPut0LsMd1Ha0ypP8MKnTWOMGa9-kMOVB-u6NK_PTX9DyAzd_jEOcYtGYjvrsv0bzQM_w1hO6IpGoU2EX9tRFOLUs-_K18vNb2_kSCtnEUa58t5FSKBR-zPkBKHIsI-QrekQC5pH49l6XamJdMhBfpvYBvy0YCfP7vgaKLbny1SIfShgwDFxe0koRxBrsY6bqxUIXeaKYPnYbdnj-JnCXWSGhSNEhSwx9BEoLtNQPydjf74yWkWS4-BYs5_pnDNzIq_RDY2ORtRkYrQ4hU6zL01dnE4Qky40PG-OrUIlQd7ao_4H3ysI6__p_8GUrfv_fi9TB2V0IbPgmezsMsfRjuPJgfwH00Wk_mFxfqPQGId8IhfDo4OvlqNI7A1PsydN4Q9kaxi_cNfPoJWLMI1tIoDfcCHwdPB3fGuLUO9PUvDI1NYiMEi-J1l4yMkZ2MCQWE5SnFESnU6nuRsAr3IZislCTV9YjLwsIbNggyQYMorzbgu6Z5w_xAVNbetrW1XeX0q-fWg5_wBBArEpi0MDKUxU1Kp6s1GUkC5ULjOaYav8vHIf7-uZD9q3EeziQZDISo902lcIa9cxtJjVzme_jFa8jQ_qU5b_KLp34fMkF7IkK8HRGeAi0yL9jeFWQJLcFwHVbvyzXXZri2iqP5y_nwjnJ2PfHDcvRCaOD8d_bClhu_xIKOvTsxwIb2jRaMRtSdSfT6oJO-uhlAA\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68388987203dc1-16577577','','','2025-05-29 16:21:31','2025-05-29 16:21:31','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43280',0,'cd-form-entry','',0),(43281,0,'2025-05-29 18:14:11','2025-05-29 18:14:11','{\"firstname\":\"Jacques\",\"lastname\":\"Sayegh\",\"email\":\"jack.sayegh@hotmail.com\",\"contactnumber\":\"5148820825\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"41533\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7-YqBqzVa3WqmVcy8aPmQCQtaBM3HJVK6NAdHM0C7ajze3J9T7agC4wWdj88dqIJ12ErsI-UE6C8-ibwC2BbhdJVrusnZR1gMrwMlUIn97Opbi6xqZ0sY0OgbniOdWzF2N3eByjqSqGGO7rPr2Hu9QrSsGa8v8pgzFNN7nICFMv7hx-FcEa8XLtUzlzDEBMGUtNSmBXxXsf_5OxC4SKRuEdV4Wp89IAGqefJAPXyvu88aBNYYvCfStEPWRs0SlN1HIOzoT9TBsVDsBbKTs8OBrBPlquhYkoKDezmi2X8uRgEWYlWJWBKo6zb7AGq9HmxhntmLq3SCAn9ywZuqXqXpjBWijxhGiOJ4gSzeH71v5UkwOk3tP84jRSKVb5cuWLu3jR8C7XI_JxPTM7EOUmhDkjM54Ie12fWhFYnl7W-c1kr438N0QcVgKwNAEoZ6LXxdddVtQgfWkUDYRUdfBM36MUeqz66-qdJ1hhjxNiacjTmfq6x8plCQ9N1WR0of2YPfvivCPsmTMVI48_46FAATcp1o1sz-67DBb_JEOEIZTa0_w3dcZBPtxm6By6QrK2DG43zug7vhfopJpJnaI86SSJ8ZClClNqB-mznpx5uNv9Hiyf5vIsKV9LbU3sHlFVX3BccU72I9Qj01SRsFVw7qMLTLJcwsUfXNINnraNn-or7NfErT_dPm85-xyMak8ODQ-uC9THw9iz66uukg_aZQVeWZr17HlfRME71haRr8oN-iXALcodyDOguLy2zEkNZkHY9pTnenjtfRwRvTtN32WUd7hr_tEhOVrG9nBgsF-aiyxIy_4gJfDxImJEXbc2h5iAoTZVd0AhLBmbGYtte2fk34d-0CdG2MyxDBSUMm_evGHZdlzBbn6EvzuWqgx5p7JEvkA-oQ1MlEL8YEanqYeHGH0t_v5dvB7b3Vydo9HfJsavBOULFQr9EPgpWKr69t7LpldbxQFjPFmfJ64pMgT6mUeBLO5QZhXDac1PXE-W63D40NyGR9tmtvLFoXUWvVzNnFhxVb56i0_Qsy72q--4_fXUuZZzBozIjhhOqhJAFpNQNo3V_ihnoHq6bp3skOUfr0BoB704yvnQiCqUzBiLtvijH3H_vsEmIy-AOgylX3YRv66wsVoB_FNHIhLxFVUDCQkYpby6w7x7qHS-hTvDTWv9UpbiLiC4bjT0OyFw5rOrhvtZ3J9_o6zWiYHG2fTsKKtFpt4ckhEdFJT-w5FZ0iV8UbqnRgAJ3H5YsnTQfnJ90ste24224oi6HtrvPzA7ghHVoB11wuctwrUL8KvI4g_LpHN1YC6WdNQkinQojxylEu95hav2K0TrWiApX41sIpGBCJMwiNFoDoBtNXLPbFcIfSJwz5WOCPixXagScnbv8cJx4DsMm4GuoZM03FIP8KbCkIXIFNJ5Ssq13lc7cCt6ymf9HCwX67rEJ2w0hnjv8uRl0fDFPnOIuTPRzE6pS-kLjZ-rrygLti9Ac380OYdGUMJnM8IAx3jEuZSHLlVnXAK5UnRbPB7BHrDCYFzd8_yda3QEEwJHGltZH9HruGMKkNbrFi-j1CXTQDESjLolJoCyBWq1QlSGYBg-VIOGLGFciILk75dmVq5RympMFglTW4BiLAztCZ3lLUdPXfHa48OF-Yt9c8a6c8blfLLm7zs6xirDjk-T7OXrMk2AOTYCu8fu97r0vnw3vvEvVDg29dE7OHjexlEKWPEJEEBJbmCwJYUb8CQomxW4RyG6wNjrXja9oZ48sjhbD4S7_4qM-kWbaFsWIzjoVdN7onOzyRA5AAWriZvY0iMiJ-l3vZU31xjVQUnRtk5wvu_-s--168fMNykAbUzrbVEiatd6Y2FgiVXNehzu5Rbm2HPP7ozUIWmqX7Q456GnA-x5Wy4XgkwjskKnS9VKXeeG7bmu1uVhmzy0bZX2Mv7SCc77rjEwgSqCMGP_QCnRQZOwiMejTmPDQyNnkQWQKqQZG-w0lIIOaie42wHBKwihBWU6_25t_ayhQd9oP9WgOC49_-9BxohU3IhPgb1ZwFsjXHj_hN1jQCXG60lVeFoMdJsLuCYsg\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6838a3f3357777.38877401','','','2025-05-29 18:14:11','2025-05-29 18:14:11','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6838a3f3357777.38877401',0,'cd-form-entry','',0),(43282,0,'2025-05-29 18:15:12','0000-00-00 00:00:00','{\"email\":\"jack.sayegh@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"H4R2H5\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7bW807uAeDnLSa2Rt3-0o131zcuMh-vELApTtWP6tNgCLpv4aE6hTUWbthfdxRy9gELrkpHy_oDJpfiUEKp__I1u_MwMzZO11IfLQJNRYp1Tswq_2Q7xHas-dlsW9m1pJ2SrAlmFz03AZ7Gv7SzPXf_F2MM-aMs0YKaDXOp7MB7S3A4kydHZ0y7x5NTvYDHjXuzH2Cl7UCoA_A5v32o9w6cI1-GdWxqWfDPbJu9avM_nL6QuwipYMXbua2ZRO1Q_9F2AkNRYz9NIPuSGHJGqoc4cHDeurcnO1_vo7dcDy98L-DFmsOlkGZeh8K9QLgSM5cOI2aQ8dmoirpKn1nhu8AmiVE7E34lNf_lfMyhdBAA_QqGSWG6oC0zD9iZjalVRPk2fDGQHKrDjzmkgpmr_NNdt6sgCoz83XSo4lhzU2KAjhQHczRuyubBc2m-xjC75neyb7bkDCjqltnDGXFf-N-qgEyfIOKxM4xLlR4pTjYAARP5sLZ1ZfIaGHPvWtZtL19KLwIV9kre_Qk-jO92bLkL_hgG0uKU5VHPVh9oDOf_76LCg1S_inxXLaxpCkwWXUmccfSUkUqOykZf5Fp7jt1o9jXtZaYKRM8qzt-TmwGIxDMt6UVuRldH1e9wuOzD9m8ocay6MVhv8J29eXzzGa-Phvi1uv7a5YEXrdeUUKKISHxRNBtSfouWdy-HpvHXuNtKezGWldQWyYFdfOo7_dpCVzFP68w9qXMGDL-pJIcsr4a9kX4bT4kS7gad9ekuFtnj1J-JKbC6KOPq9V83IZOQmlJEr00TCiIyZnAESU7T2D3MkbmZJiANi9bY43PHF3i6oeKXVymMIJPWmIS6fl-o8O5seAtvgWPbS3odMGfTZNUJWbPLPjsqAo7E_N0uQrpTmP1M_tVatIZCrL16lj9lGJENWcqoowza4mI27WOHn-BmzF80fyW3mZBvMm5j38bXu9Vj9HGwPnkzzdywlmNHLtikdka3aEr1sm5X2jWIgXnEFCOYR54qPKdkPYu6FCrXnya7hHMOX6FU7NjdtWz88al2Ox1ufbZ5IzzwPWwDMAI-fm1nYnEty8uqGvIckfTZGOdfRJecR7ek7blvw3c9N-dawOQj7NScO3D5JiuaX0g0Nh_8lMnsehmHKeX9DKjwbMRP4jXJ1XHiaQTcgRa7zUqsVtUHQolPo_9a_EzNg5mGYAcRPc7Mc7PkIaLtPYCLRmGqvZbJ-qkpzEQ25EivToO3w0M_eAlENjx9w0XYgahF-J99_mUjbJ5-svM6Ezwrf0exJK4Zu60Hgr37Z7opVO4W2C7BU0BvT_6UU1QoD9pJwBSWdMFKo6xsEgEVOT0UoguY_QOKoiqZK7ldRASfr0QJoLwVJaykU3xxyDrVBwKREMm8jXz89uU5rRlnAEdvKVHrEkXCZf721_p-qFBpc_4empn7TNSOtaw0NWP1akicrKq3vEnOdBcFkWsUcwVRLVI-1CT7ZTasfp72byYlCcgyy8RVCy1CS28GYIjsK15K88FI82Ref4B3L9ymQqvMQCXKRNd5R5yccjOF8yREdi3CMsnp_R57GDwkvcU-Fhdgft1GaYQcfytVbClxugjoNOBnH_mgAULZKkwfcgVR9X3a8jQcw7SgXDNFIylXntwX1PAoMyDH_Fz0M4MVadxd-8-MpTJe1Ij-Vwwr6q7Uk4xe33ObSesOrGhokdbVhS-IQ97QUwOLQSa7jtSZqB7uoQOGEjHJjVuGcX26GxwB2KjIh3xdAkXS-tsHR63q2k8CF4q_dQIOt_O50vhP0LOhCM99hw4vFpFrzG6Y5kMDPGFKVMuk_ISlsUcgtiO9COK3S0jhZbKa03yE7T54sbKubidM1EzY9HJIS-JabbkTxoHq6lg8ytPSBlGphtx6Vw1iq29ATPgBE8Om6GfnBZOjp3zsfGFI6YRIbxI2-7dxlx1y8zGTBoH7rGBSu15VEuOG5wBO2j1GMXsFkAiVPR7orwCCCy9na0Ch6L-qECt8a8LVGwa2eIF-WDZ6bBmEyeOoHhlOhlfvQ4fNUUTz1d7TLdWATuyyaf6Y6eZiPZcr-UMIUjwzmc1OX1gJ1RLORFIwHY\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6838a42c2aa511-88255779','','','2025-05-29 18:15:12','2025-05-29 18:15:12','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43282',0,'cd-form-entry','',0),(43283,0,'2025-05-30 06:00:23','2025-05-30 06:00:23','{\"firstname\":\"Martyna\",\"lastname\":\"Sopa\",\"email\":\"martyna.sopa@doctorate.put.poznan.pl\",\"contactnumber\":\"616652719\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5lRgis6PlBx4aGjF2Erc3ENtGGPuTNvB8a8R_cWpM6dVBUticnhBdOsmrElBnvN82ISw60yaLdYnY_nYFieaZ2T8VZP3fBqn40R9X-ajQdtxKQzgt8x7_T7GnDm3lroYAqSrXnTNtXnr-18z20I5_lCnoTZFEB7xBtp7iaw5a5YXsue_YkhTYbVwysTkrOC41yivqxNlJdapPP8ZsSVHR3F6WJlQGpj5VTahkcK0JxSDsei1SONd5IYHlARwnKW3fo6CYwMWhs-muBKTtUWfV1z2SujP1FRSdsGKN9TsSEAHvJgofnujfPQwwlohMTTjJ9-ULbf3QveZBi6ysbQryKyZajmEnAG0oKkqoDZ08cjJTL3oo1dbE4hdhJRCLc5R4T1ZDRdcbw0kiTDBCqX8PFoY3-Mf4GpK-PRjdKHygdsYCtA5nTuL8WsnhyQlxNx8OyrROtD2bnsLCudO1y0z9t293yGvdUwFcrHxWuU9JmemHHJI7PS9Ei6evS4zDk-Onil9cLLv0VkKpUxbZC0JVg8LFzJ-D6yo5DnV3goXLB71nQJ7EUzbJ6HH29tYr2zrURl0sZ1xkaNOSWBlpcgPjDOXZjmX9nSbNH0CEjgpg-oX5fpXyQ4hZtH7x4AUmCZE3qoX4cirlJYteV-iYV_mt_UxBBLwvqxq9pSeKNifv4vK-6TcKjAMQJ5bYHZDHbNDBhfmZydGpYpwusIQBpdPgW9cNCjBwOH19mVwnNyjaq2s9kQc8LKxvD5BjBqEgIOY-WPG-sMA9iPpk82t5qoPSk7ZyVmaxMn_ZSeJtRLt1n8y7V7wybKRvP7f9WjxMuR3k2y3M7S0ZKr_MLqnZsRtPEQ0Af4ISwZRG7nIB8o0hefJaTt19Qx3QAkZ9NPxMVBCNg7HTiH_NXDqwCfLaFo2BRc4rTtAnoWQ2BDbEok9xE160kYT1j7KQK-N3KxjTZy3qd3kgKQn0NpJFnR4fiWOBng3vzxKuvWlkf2c5HlqCWB1-DUFmrHhXJwNvK6dQUgiyAFYtJZEjxXwVH0Pdu1bX_bgto5nQvwYkJopPgvhc4rzcsCQj9zBxDNSbzAGg-vGuuZsZZK5LpUkDphTGuMtF0nmmQPF-kjTaHjXq4Zy-8OXlGUpPkXboFSnZBjcETFp3omQQBinFt5GjlOx9qsT0DSm068TMoURgiJmQYuhf803IMJVkgO5qRgsqRLjJaiCWBqVa_d4hUIMQpkpav0wZSdQaaId2I22Du_h24KuW_xjyFV2QzocjltWCEEI_UqrFfsp22SFezASNewuHvh-CmcnKG_lr2WR-xXHu_dzrxQPQuoyPgCk4MFANWw_15iSrNTDIobfHa2I7onkTSfPEnPHcCXDkf0Gab76noYd2Z42tDWP-2A1l50T5Iv0OTUe7P3u5ieUc4QNSzsqe1PLfagkydvKf6_kMdRnMd5piIez8_vHt2h4jvH_2LtrnCIQ8jizpPdhu5b4yXGrtO7mtv9ekIeV5gLqVJyfgjcXpuZWwW1iCNV3bb0HOAVqX_OwSTyoSs3NOxsMSVulxtBNfQGID9t4YyHC09waPTMvUz1Q1ivnDZdh18QuZfTXx0sn8fBUPN5UU68-Vw2ZL3dRvP2exhxh6ya_ZMuEIvfRuFtv6i5NnQLbN0vc5dcLkjxgF4L_nfSwjaDlq8f23KjJBHTA-bXo51_Oa16kLXYzRh356CnS96R8xIdf4HKI_TcDKJPdLH9FVFhCgcha_GS8f6jaWlHJiThtFpfEubon4q_HxWztx9w68znlMioaMTc97PodoJqKHqRxAHO3XOuCdNaJHH8_4CghqKad8-cDUput3zXwKvoLdO883Y1CMTau8-NX-l0hsQVHi1g2zHyt7cwrC3Rts4Wk3H7I8sy_vWaKPdriW1EHa-ugIRo6z7-kXEb3y8NAlnYzgs9SX_BX9Kkz5B1boRonhXKrgxHyBTQhcDp7nvK8NMuIJnhJCVypDYU7JDXDokNBHkcwyoLcOB9ChIuYTEcYKdPdQXNplD03m78f_qTA3m2WbCqIjpnTmguK9DGq2bzWs9o-GsVJm8BJgPMOb5uHnJUkOcnMdkm8dBQKcsDvTESsPHYvL9eg6zC9GGZ23ngB6Y4OJY6YncCo0kh_lkeCKQ9PLiJ8cMTTdqWUela3ZK2uxUUNNn3g7TrBjn8XzsZ3p0NCBhS-0F-8t4yEb4qI7iCidUpLVD62_KLR-MtLB78o7-83XYeKqXU2KCYJHdZdnzmKgnvFg6CuZRYJZSvZFyVWKH_a792cKAOZ0bUP4Xr1ewk62zQp6akTP4\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6839497777c6f9.73340276','','','2025-05-30 06:00:23','2025-05-30 06:00:23','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6839497777c6f9.73340276',0,'cd-form-entry','',0),(43284,0,'2025-05-30 06:00:59','2025-05-30 06:00:59','{\"firstname\":\"Martyna\",\"lastname\":\"Sopa\",\"email\":\"martyna.sopa@doctorate.put.poznan.pl\",\"contactnumber\":\"616652719\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5iUv-mrfTR-vRiJG-myly7QMiJjLVfFgRDU_sYrN0O1Y7loWRyJebPXVu924QbP8yOXISpWhOaVnqnH6e-ezJ8NMtN2G3nR_vd11ai0TAohFylMam86kBiCZECgtkGwbeoYejvLiJxCQuCDX1gJaan4oAMHjK8gUwi7tUJ96h8bF_dWGxF_aySLJ5dcIEeMZpDJ38yddHdV_rbJhHcun8SjD3kqnXJ7MuxTXKiQMjoNdai2jXMukTAO-wo9Snt1kVJQxhQIvgj9rfngzI0oQU7dine_TqnPqPF8WKLW6NnNW6UL5YzuuFdZpl8qS_-CZCsK0v3AQdZGuVtyN9JSe4dN3a4xIc-riVvhkDkkcHSRZgiRhKpcP1GB6BsmZykLXaksruOPpF8yI1Xin2WstnImeXAoAMsfSK91ilHCfyzfhAUD43n3STc9S-khk33yUYdEWeBF9BDLCCjc856oeVGVLSjcNHBLgMr_m8M32QIkPUVXwBfzw1f_cZj-YGq7rxUyi9IazvmDUkFc11veQuDsJTzKf55AJLZ5f5_bLcmiHNY72iZKhFs-0QB-6kFnCIf0qGLIgn1ADbCvV0yNpovx8c05xpjoWTgP1szNEdn8un7mey4LVowYBw2u-4Nslc9Coo2pl-JKiPawcVPy4O8mb-dEE8GReo14WsSSMiO1XaiLS0vevnsfKig8P36HQl_ERhVg-XK3LidmSkN68Ec-m1wYUMUF4xkld3GIK9qxwbHeEq7P2TuR0wQQUNp-fH1I9HEyfnigRwGl4N5ZssWmuDz2NqXwCo38P6zJkqZ3r71k8ngw7X8XYKrIz3CgVjf-U6QUMSIPRkRSMnRSCfvm0GWM_TlWY3DELhY5pF5wMp2ELYjr0Qs_IB0TDYWfNJlhN8Wk9ftj4fXGMGbpDDcXwv3jjVAaqYh2uONAOFCzvZSTh3uWNPjCORLdTfkkZX7Qx72eh-ewLbZP_BcQozMmBe88RZcSusnu80behm18Y9zezcZXu5x6QIBOrblTX2UJZKF27FJLS5h_aqLegkGbq9IDWvrsR5lAQVv0V7mcvA_3IpfUShb_Stekdtd3IEJ90zf30yNT9F0leduLxxEbDznSBpDoP0xPeQSeurkyQgO3Fpk2mtfzu5sIyJQVzKjg03WwLSsyXBhkDsiRtuY_k8p8_ORgq_78zQviN0qWQW4XAuABCMiRe-1CP_Q9EDMYDgzCEwDNM2wZ-Y_EPKGeLSC_3-PH1AFqgZm-EqEGzNLLl-G0a2cLZ7dwvkHz_H2pCu5Han8CiRL_UGU9-S1z7LCb6zK9gAdfs9zHje7ArN20AF_MyymypvIa0uDwD6hAyKwA3f-qV52CeBumxuRv-khloL8h4rUf-5-bn6HpXd_zIMZkG0Ya9fY_86pYMLNS5WDr8rDkKXzMkhCm2PfaaOaEHIXmIsvp-aYsngg2LOmzfjP_MDnMKNexvPZxjP6zzzNhPKvskIWBGaKcyzJfVjOL5o0hwgxRO_iwigbi9-l41xssMTjE1GvRy6dVZagPWz7d4Vsx0-ol_fiRfFccbxhvtjmW-9tWL_9ldjUxg5neIg11nctUXpvmlvNL41I0w8zIJoucvaMSRuYUI-UFcIGXtho60nrxPhRKlNj4e3rT-BfIhVjuT7IW8He5jTtVMafWxUQkXdoHwhIgrSUwtFvg0J0ohPwoHyHFK8Ex_wrXJyuk3WAoMv07kvBGHibkOIcSHQcuR23ViMJWEEYEvw_KCkNJ-UUD_IvsvH8UsVkEx_Rb-fzqc29hleKsann3DiLFKzqnzbG3PmuIccI-MGZyzk0Ns2crBhQTF2jq_e5oHPBj_wUcIn5gUCQCgaCxefIZKvS1YiQwBjuaa5IRXNGwueCXiQA1UIxZxCcfDsqc1RmFYNoid0078LQq6MLMXfpjedxBvktxN_oAvMCuwpJtuAm4I3gMWlghVp7GVSWBubskTywQpU82BQoTAQuEBcKr8m6QEigyvM4F5zjY7ncdQvjdftsrs8hrDg1blI42pusXIi5s4xUHbvB4Ux9JCPHAWcVq5p1S9fsp91BeGZY6gpK9U3FN8IW3DZs0XTKIEXC7ySamELWqAxZ9SfBtYRyyt_wjVQMDJOcoI_W1QEsv6Ty_fXrtO3pZDEqVba90lkQBm0uQRa3_VCAoRUDL3oiDbcHT5s7xprbF4QIv9_6FOksxuoDOA-70UGV4Gdj2BQiebwhBXO1LEFI5dpoypZRhtmePfOz78MgpiinG-FJ-N_r2KwnMZchdN7YGEBw6COF_f-KofN48DEEIJIDSjMZRlnsjDDFdvGPL9-1QDmJXQ\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6839499b37fe31.06280892','','','2025-05-30 06:00:59','2025-05-30 06:00:59','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6839499b37fe31.06280892',0,'cd-form-entry','',0),(43286,0,'2025-05-30 20:48:46','2025-05-30 20:48:46','{\"firstname\":\"Suzana\",\"lastname\":\"Ceican\",\"email\":\"suzana.ceican@gmail.com\",\"contactnumber\":\"0753548227\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwruXBBhArEiwACBRtHTk0mMDxojZKeYWHIO0OGbrIoN2bn2ogXpIz1m_ffPPi0i61f61XjRoCbPIQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5-JbZxtvxRd9unY_rc91bT8vjeK_3NKDDiC4yPVMi555a2pfcpy9Wiwc0cX7xKhFv4iFqHddl8Q2bEK9bR9n4GpJDtOgHpdC142grEdLcsgQbtbbJAekx8qU3cnvc9tk4boL9Gz7ZLG01vhVuOGUg993Y35tmE0H_aF8XthkBXkL74TBJX6UgtXyIABB31CqRcABfGLitduXyCwz_41cTMmU0r6q1-2bVgQxPMZZHi4vYqqZjqM89gCoJb3Kp1lRmgumNNfHJH_oY0epThuIcN6cdwUPxs-7JIWN290jZg4yDgJUXAt4tZUVgcJTV6JUArTBsiHWJl2dYTKP25tWVRm0D4UQrPmAN1if1qH3zVM8VjPpD1pI1__SXiTyhVt-aont1dp1SCF48wbLgAoQOCj5z1SZTDDrP-ZspLNMhEA3sot9Wsn_rhl8L3NCSRqjpHgT7nYJHutY-XL37_jXjy2XY0QBLCi4xQJYoQ-eO5GCnmA5YywIktRII2lB098Z1a1QxfHOgtO_3CJkY60k759QjwyG54xXTCWcBF4672_17iZR3otem9u20jYqwI7p2M11IPlyWbZBYgZ0TuOtFS-LHCUq0nxuTkbVewcoPI_I6i4W7_FyhsqpzBqiqqDCEDKe6hjwSqhs0eayJw8T9gtG39_KCBAHyMLoS2OODWRbKsC9qqvB4QT4cc1WW2axlFVgN7hnpyVJe9gnFkO-43F6XvQCTSCrhbX4CcU1dskVhVwh1pguc9akekdF75fRYAY4fIPmADsNwRPQW7D92sNQx6Nvvtv29iE3fKq4kUCsA30rLV2_euP8RrKP6eudKa-OBBckKOtvcS8esDP2P1YRz-7gzxeSSaCtSlxIQ9cX4qbCqJ7pvabOii-fOgLsTOCBuSN9J31tDrA9gDKNyekRhkuK2yt-F2rkJBQrIWk7Sssofd5f65MQTzOLPha22F_puetXek-c0aC0l-5exhN4LA5FhVSWaXueLcG7y1dEvXCih5GdrCP7vrAQkGP1GPO6QRVRK_BkUl-3jgBUa9ieU0UU8vcyHB8ybOOiFO9Kx3NcVnflEo2lTYSnVDGkAfEVcz0bsMz4qojBRjoPOsg80c9HVmUUjyXo2evZ6-zksO-VfWUdntWeNu-Y92GN9upW9LjPW-zHGWSFRH5k75NU8j5dZXi2WGSB2rgc7Eyv_18siPIV86QHs9SbDCDhBHyZC3BSpKKAwkEsjNYG_P6xI_GeJmpDPgIm1iyYSZIjJ8Zf0Imt26JAlsREKjWnL6fFwYbjNMNEZhVnP0H5PBMmo8byOWWxZrkubzYdOi7EUPJK6JXOAaOd9k0PKrgN6ZW-4MiKowtaZqsEpWHiW6FXbx9OBh4UsLvaBPGIn38to9O5UQRgD3GStZk4EbrWoGe_xYdqPARYnC4tjA6lcZjwxcida0JW9LubUAwlDGa7amv9-usZODZ46jEJwqRwW_91Df5k93KWMA7gnuizmtV0fNuQieqJdJJ7MKrQGXyxzaX8-HLP_lJJUKGLFG1YW7I68j0OzHItD0vunpEncVA4moUz6eFjp6N3uPzq0i6bUfLCn_Sm3H4ko-F-TM6wAdqtCpPqUiGfcGjBROn3m3QVVqMYp23JDpdgQFKMY3vKDCKRWsIij860fUpP9_J4DgqsPBWk3Shp4xFfH9m-jIaQ4cebYO_PD27GKDTi_YnK50WtTCPzXS3gOOlFTSRzTGVYK9J1sOxyDR7kSYVaHj9dWFsEZ1lMlO5sPF6SdV9-wPq7bzhUPKAHxy-1N6_rrXsTBdznXS-WKtH6VPXsYgzfhWXjvFNqlyhY0wNHgGZLIgg731yIB7vnIwoC1s1dh6kdWWP-VDlxqpVhbsx9ISd0foFRG9daxVZxx976QEbO3QKsnSnIIt4Re4TaBgYoEBqNTZNm5LVbGATIdwbuEexcTre-pu37m-bO7BO7oUIKqibmiu0JHeD78-T1buK8cguoJCAt7uerG9lBWV17uFa539DS_0P_cq0gr0RcmgL-4e2xCSmEYqN9yBCMScTmE4EQyrm0Iq_i-LlKYHKPLFZat43deplBZVsIkaad-DsJMihB4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683a19aebeb9f6.60037940','','','2025-05-30 20:48:46','2025-05-30 20:48:46','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683a19aebeb9f6.60037940',0,'cd-form-entry','',0),(43287,0,'2025-05-30 20:48:52','2025-05-30 20:48:52','{\"firstname\":\"Chris\",\"lastname\":\"Langham\",\"email\":\"1clashclash1@gmail.com\",\"contactnumber\":\"07779140369\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?utm_source=chatgpt.com\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7I4xMynqwoKKFsz6GwsY27S_csL9Bw98N0CfMzZltzdJUpmzaluw00hLxh09ujG8IVzt3714Cs7fFNDWHkk7bJYH9EWABVRkIH9lEAJ-dz5jMKV2w2uqm-AHoDx00dkfKP3GGg6PCsLxVInHt3S6kl44hFz5Wc40u1jZY0bIJa-CSaA5vj00lSysC0c3dAC0Fd56opL4vgnCDyq2ZZ7D61OBnngl-vfoReaNrM0cIEZlIhMx7ohRF4tBcnWtZgsyHBkHsIctbHuquygJqlyHhB3nceMFmAfNm_sTuagP2hL7NJsxvx6eLINStRH-yOmx1hHjBFEqYFWNl295z2QBlH0ur-B_kIx9n3JI4ea0ep0_9iEK6E7nk9HvZvaa23tUp-u7BCl57U-MyeYmxHYUi2AI_3jXwjlQtQxQ69uy28GVTR3ZY7xWas9EDzLIs7XZ5cnl0PM3SjeTBPVu3896MEnaAN8DXGWxMKBqZa8pLR1XPAttW0hQ18KcpKu150MVTACd9otZQq1OsRVaZttFOp8lwSM4TROdVINXCf9BOdkJWDNif_QWCiGfT0H1J_xCxbyy9QoSDStu85Pe7SXaaxdXXopykrHhlJGgExF1DqhNaN6AjH7MK6bMuVb_14gWaUhWczribyYSPCNt2xbBDp6_0kDC0abxV-htF8OG-a03t2KveathPeB0zzbvDrBHljCHDv8L-Dmf1naSs4cmQOlV74LZXwnNyxmLC8tVoryP_w-OrDCaopIKmdha2R0BKrB6nUPYTGsI52Ic0E2BKjJPfRH0kvPivYMqyz8vvGkwChpBnQYcA015XfJVgYfj3Rp3KptiItTm2izCFD-ZXl9q8kNHhjuSnW768vZuhmNowiNdBKniT0lVjhyAo5Mxu57C_Mu6uJzT_t4iEwGAbn0RNWsngbWb3C6MY01eZdAlzTc9dzKTQ5UyOfj8SMrm6JMU7KmH_ryVBkcpnd-YA6CwVwCcGexc2lyt8G-eZH1QBSYnMkpZZ0f0OORmBweLYNmImMuR7qGSuNRDD_K6tQeSQREEUYNdH_B8zFy_hntHBDu4__NinpxVihvXIXDb__S_gGAghi_KtKollXRLR9_czRetLa1vFmh82zL1HrncBr7uIOdCMxfJvi6zeCoDwPYJwVCRCOYMobSawrMmonzpzweacUNby3tzSyGR79DqiOTG8BT9CgByN67EgDXwFTHSQ1THXrm4FMIohU6b0e-aHpkI98IOtkVlsQ4_h8jrRqpEh0hLxNNs3wiryULrcQWNc0b-tkpUma5OByrDUlUHgdWUfMpY93PwkCQEvzpqkHeIgPlu0Z7JLXSLdPeM9Wl2BJ9n7j1Wlj85K8i1gL80hX6YYgT0RvyrFY2b_x1z1BEXpnuehsM5H4sgNwM8_ooyIg382EHf4o0UDBam9xHZyzI-u7vAactW62xgNn2phaKqpc_f69-KUNFzMgrO2qLH1FDxGTsKyD14KysjRdBvuWR7IR_aiA0TG1mJTLQ_mZxZ4jwLflvflc3WpHFc-6OVOYKbn2FeqfPK_gpA3aST-vHnd7iU3EdUytA2QHDvfnf-aovcPYVRviQEelHEw4utgGUl_LPDoEAmHA75BeTmCIqUpow-C6qH2y2N3Li1nj1bmMAVgF3kD9XAT4JBKb_qkeKEHmxnVDO6u5ikYBkz1kJa160Sd6Ivctha7QeZWUBnsDmWP6nojvAkJ-BIJFJcSZssuEo0azsGIxbi5iWU7NF9AVFXlGrBaQH-Q2__ddbrkDODtvkzEp4e4UDM7Au2cwtSH0-7gV0iWcPPOnUE-DnHk3-9tsXiQ3cAv9k8bc6W8ESskJl7_otKPqVVqR7__Dc330DQ4uJ8un5DTNXDX85skgBg3Ipgzl3x_DNk51rjxfDIQFLfKXnpq0Axj35etPvMNh6MwmCRKNb1xr2lu_nCKufwDp-wzZzADXlLCaH4W76_nUiuuIZLoZiMOq9Fr3kdyCpQW3Q4aWLEpotTrw-Jz6uNSP62skS62tgZoCfv_A9cIpNiadsAA7iM7CipBke_8N6O2CXJCgiOe-_jjVUNuB0U22iMw-eJsba5j9aY78tmSqb16TshPnmlSpbcj3xVksWih8EEP0QtpANbHuwLHE7ZjO9N0B92rMfy-6c7txTr1DhiQ4-rAqQPWC-RMnF6aeGdyH5qx4SiwTsnMdoaRRI2ZtEaKT85ucPHuhVI2YmV3Sb7cXjrhxBi_n_ASmOnxGFafH6etzZgCnidS3JR5dTaTpofxHbhfvWzNB03EH4Cx9AOqON5oP13odj5vV\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683a19b4b612b4.48733291','','','2025-05-30 20:48:52','2025-05-30 20:48:52','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683a19b4b612b4.48733291',0,'cd-form-entry','',0),(43288,0,'2025-05-30 20:51:17','2025-05-30 20:51:17','{\"firstname\":\"Chris\",\"lastname\":\"Langham\",\"email\":\"1clashclash1@gmail.com\",\"contactnumber\":\"07779140369\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/in-person-cpd-courses/?utm_source=chatgpt.com\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6WpZ3pOfrsXaH1yV2qWDtMSk9N3mi4UOx6KgfYvJWgsWiWjHo5HxdUK307rT-lkcLlwTFAzkkXEXBxZnxFTxO8YEgtQMrZk9Ex5XEEE_CU9LL8N6utEOoh2JZk6_5kD-L2BEUqa8H6ER-r1sAbxN721lT4JjAWToUhv-xWr7Xqnuwy7FOt9hx0_7nOIq1iZNdN6uGyi84DnWo6INxzmVLjzD_5WVEHkUW0Ww2iDFS8xi2pKFrq7NF2YGjPwlkSuWEkLokarpE0IuZlHP71wEP0CrNqYcdF5GNIu1OSga9PVNCG98IqQ8wht7wGEBoJu0loUnwGZujcJ-0gGSlLE0FMc57ft0AZAzDPLuktl6_MYOiIMlOpckBqMCCoyJsvmTlK-2y2aN0J7gKZzbuUsiS6rj-sZqK_-QATXJfnHfjBLQNEIsjLL1KfBdBXKLq-amIbld67qKKp_DpdbNVMn9kLqmoSeG1CxPjvLyo5cj6fkBsl8H_Hm4iQa2BxKL-bNYZB8MCAtDx1x5nw08neqQscns1p-_9azV35WxCQHSqJVdBEYunBt9Pzx17tBMVWvAVXO61tct14UbaChzvJagKBml7uApysoDw3MZlyMfH8upJUtQwdq8xDbt77c0XUURdnuYRZ3eybOnc3YIhjEHRk0IVU37w-9aJvR2ukCgAJDL3bvea-vmhE3KxVz6Xp-rOjmRVBlgHedjmzsc85z6lxXvK3YhwSQE04zQ2g_8gQiQVkZwo-uxbN_iIaeXR3FGnIFCvFk34Tba8H6HiSuseLnKwYAuhHiQe4xBkfymofK8h_VZGlX3nCIvyR6Wnr8qWb1tNB1_5dhAkEr-ab6XOhVXTm7RXaa_8p7uyFh06STSrYaBS9q8mqxPeyMxwzMOiopkDGYGbDEGZ--GasN9x5NwS75heaoR2ao9fH9krGm0z5nEjc6mLvNHPHlU_bxYU0SBJhTiDAZQA4RH1U0GTYSnMnpNggv6EEVr2iV3bPh8C8benldVdE5FuKfR6Io_MMIsHDhcvBXLmwK6fugucv6_4DlJr74crpc7W5SIyuK73YsvEGwturASf4pDqbZswCPwii4z9RCk8WH_dDGlFmT56kI8PC5E3XqVKImZh3F3c9gk-CP5O2L0FoGxGH776V_stoWUB8IArRS158jh3Aii_qaWBnuNL-kxudiRuqltwdht3tE3cjDlhL73RZeTQkMgNwDBXdVvKxkL-MUI34JQqMvFet9XERAGB5tDfzHIoXDltZCl4jeTQJkDM9bzuhIVPsmdv__5vc1IHAeJ4edEgcvhUZNPoG8FJJbinlBPU30vzmdnvRpy0VPYHE1nqsnfc8w_WOcpfMyoRxN1HIFaCfnIEXXtefBiwwGJRaZy2CQdP9rmoK4mpNYUwwxq7kAtzikScFpKSAwY2Dbqa01rWLQsYSbo9bP1GoebOohzEiDU2_HDT9tlhtyWzm2oUXkS-aYxnwKwYwQjtiIOkqrTmhUjWFMXgj-So6sXonDHg0bb27qUfcGsbw-94tYLeIHkRKVeP2IquwnC3_02Fxw_yyeB1A0a5ihYeUPmhuDQGTnT6l2Bgip-yKqPt-LlqXMVVQ-oMWoktZ3bqa_0ul1zjANcUKYuvG1G9SGba75eYiP7NA9bMhbrnUvuhSe4ncY0IIKX_4ctccMOuz0Gpt9a0zYKFsk4YEPLcN8zxTBKWbTxnqk8gqCGLB-pNOfXjO3aDxSCIX3hxyLQrpXfk_mEC8uxnhIqws282KhydP5oGU0XtgZjY8JY_KgY726T03coBkTWQzAyOsCY8AyPSn58dAPKyv2eQiae13yoEcioqXYgN4xRl4qwQts3z1X_SMg-0nO9ZdrHYSB1cgZ_fX9ZK2OjhVD4tcWTEVCVMkkMrE5K5_ntdi95YH1UQsf0Db5gwGdeXQFnyd9I0Ts4QrMIDCvprckBa9-30B0mOY0T0PhIN_STGXgjganC22j4me4G-U-4ApOSUf5Pld0JHRlzZLf2udMJr174YvBj9zM2MlKXLOlTVdFaiRqqVZlf7SigiaMWmPpgieyN7bk8K9U105fKqwJazFlftxldAbd0aTlEZvzrpH7kx6GwjjmF1t4ehUr0yRIO9zZxqoyvIhX9qAn9KFPuBdwH2OA_eUF_ft1zEdhrsn1MgLCHt6LGgcWLXHeo-BQ30lFlkDfwajIcNRJauLjhKalNf4MrSO1NtuCJrZVSBXt3ftLCzN7dQoihEHrIQcnH6HnQlkyHuook8S6_R5C-HOE_uhLwM4uCR_DBQXngEfrXgI-evlBKxq1mXDxos6_pYEU2clOAXfbb_M5g\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683a1a45681764.55671427','','','2025-05-30 20:51:17','2025-05-30 20:51:17','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683a1a45681764.55671427',0,'cd-form-entry','',0),(43289,0,'2025-05-30 20:53:41','2025-05-30 20:53:41','{\"email\":\"1clashclash1@gmail.com\",\"interestedbecause\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"5\",\"currentpostcode\":\"SG5 1ST\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/in-person-cpd-courses/?utm_source=chatgpt.com\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4dLVgn5wkqZS1kTMgdtOT1VfZfMQ116EF2_CDrCJk5fArfFzk3dKR2N8U26Hnc9eUPwDTzIpL2vFBGXEfFP1w2dTd_chRyAixohCk5LIsKj3sCGqX_BqdweArjOxk-8N3EllWOh2nYfClRTbqwGiCWefU03g6Cf8kwfobJAoEkZt6svBXnnKonZExzjWLS-45wZ9gXog9wL-3qJC-IKsk9WxQWcHr_zhVnFEn1mWQ2Ysa_EFc9GDaVvCwRI1gk_N0qL1Y625g7GSXBcMrnk77_iXeDArijQOVgGERiQOM0wX-q7wjBS4E0wKdK-AtpHG8_4K6Su_rFDTT9u-48q9clTn-kYUpnjgTHXZne6SB16lmIYg-gwSeWWQ8qwp_xhXhAiHS4HkV-tVktmM8qwohb77lQBWBbTzgELNsTswPEs1qE6TvUx5hDqLzw3w3r-vg-Q3bhe4Szz82_tSUh4zp2e33zC87XSuDD_Svad9Vd6p4Mvvh_NScWODyqw-qdzl8qnDPxg70Zu252mqSVNCzPet8dPtGwCHF4Bmw8issQ-FFZ5zn6dfzmTKOuxq_tdPiolsX_eR6DpNbMO_IVw7peAu0JGfHX_13fIuaipPo-h_xytKHRLpby3vH_jAf10rdCxz1E_Dp0aQ6bXJBgsses_fAlNVY83lewQ9VeErERRPHSk-0GUp1aq77cHEDO1kl-2TBqXEc2ISVSrVkwBuMKcsxFxg3Pz6JeE4fVc6ol7HJ-ffFe4jmq-apx2NPw4raoizokjDlZfMQFBJy6FQTK9dF2ZmKZVD9yPQI3VI0fGfmawNmIx-mcq-1HrK9wa_VHp6M0d25BtAogU3tQFxdZ7TyPTHC-4xWiyFBRbYnzdmCsv5_Q_As620gq43gSdW42PjKLsWLSXi6fKgJwuA45PA-9-u0eJKLw825t-y2YR4Mnlro4wkireFlsK4xDP48RR-ROFCTvUIYRqdg2-45RMSEYIVD-zisOYDJBIwUaIn59jgpOBmzIfM_ejHhXU4xDjzh6FFWgXOJmwctrXD5bBJ5T3SZIwo5U0RZcwz_Y4JNQWgOrjPD7WcrxSmZ4UiyJFuVGOciQ0U2WI1wCek1FbXNqfEGbl43NPcZ7rS6WLmIdG3pBADM5pTB8FATH6n0l59MfVXX8g4eJZR1iwZehSCYYHOOR75cJb7it0JqEzxbg19VkGuv6k-0slr33RasBKt4jeYs6bDMs9ReZo-4jWSacwKx0FoKhMTZayGu3K8INsy1NNiuToEJKy8FDhripJ8XHYBMeNEqRP9XFwGAkYNSMxRc3q9oEhJ8aBCMmJ6zWChmM1BW27QWisAPF8yFauWvu3pLRR96YkGnJYCQJM1srF7p2B2nM7XexUDOkRacO6iR4gS7pYo7OynaNx3ak26hHRijVeXODLndcG-dUWpLkBcyzogWj9zU5tTwIiZDyr2fAHwDJ1mXmKHhJBi4z-CB7VG16LYUORlZ18NPsiNNyLBM5uEqPQHTrbHBBzVG8d-7meZKqqS0fV2C6ZcW66MXtEOFi1lXmx8xBxufmG5ak8m4LWqx2Y2VYC1d8OveUunN64WXk0-86dUmHqmDa8Jeo918Z3wK7-zpCwn_-6r0v-sPT3tlUyXMyXZacVtOvOQDfnDPn-xeFEJHk9nlFTQ4c7S0WhsBVdHGAPXXIcqNI9Zfeakg5txkUqlmp3cs4OdS6Ho889_er3ZKiVKYJvInU_QYFvUDVSRl3mC1YBb40i951ytF7oCZs1byqb1TXfVTKDgjK37v_xLPI2O-jEhyTf4tEEgpCeCrJmUKPzi9XuJM48hUPtLCjWEIZBSQm_UtYKYdURzkHOJVtdcjTmx-O9xf8r3ATc3_kl5qFHOAzNkYG5-s2CzFhDgFrdY346i-b_ZZdJVZi8Tt8jLevPgvLl6AdO2jDgYLvm_gknzZo-8MN8__42l13MgBTX9z-5Tu1P5EOZOMPTuED_b8YG0mITmRrKz_5Mnb4eOAUiPPpvTHvXRBM85CoXAf0zJYe5RjR4Gricla_mEtlT3iy8s8h8n5k9LR6tWMUagl9QAR7WRIAyX5NVa5nCdZE5XyFHUV53NAED4bdMp6w5yWE7-EBXiF6BrmhZY5CH9vEI28DPrHyKJ1JrMC43WkNX845isu8oI8Uj1G6azZZcOaFb78Y-ugrN56uWDDYYutPiBZ04abVDwH4iaSTbeIW5PP2uypcjnwuqdOgUo5IYreOBuIWBV9DsUybEWp2vS2sG_9zLUlrpyHmM48Kifu-VPCMcPokvX3iBXlBHsg_kmd02j0wiqtO7gEhijtaR8xSKPmYIg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"agegroup\":\"4\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683a1a867dc5d2-10187651','','','2025-05-30 20:53:41','2025-05-30 20:53:41','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43289',0,'cd-form-entry','',0),(43290,0,'2025-05-30 20:56:16','2025-05-30 20:56:16','{\"firstname\":\"David\",\"lastname\":\"Sheppard\",\"email\":\"massagereflexuk@gmail.com\",\"contactnumber\":\"07776 230327\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/in-person-cpd-courses/?utm_source=chatgpt.com\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7yQPK848I73BUBU1APOBYIGzIyAYLEVyhNhfv05QSf8xm6OIAzKeLt4Owvor_hXWEXQNs1mWuvCwoa2O3j8Xf0-_LXqmXYPJAUNuBfoiF9Ubf4GmPZDe_Pg2R95W1hwS8dse7ZkdLWRU2PAFHTQlk0XW1EJJE_IE0AoNWUuAR6CVn-0QWKTi85wP8wQG1flkRMG8THQwAK2Qsx_fjXkZZ4EoxRj68PbpFs5uo9Ql68WHB-NuZ9CNqO8Y7ub_Foq6sUI3yfR3rtRsX6romrfr0LSMcFNbjFLdTjKIkwuT3TqMw2-gqhYWCEux4Unui7iHRj4A-dfElvEPf3Z7H5XtuQ0E8Bfs1209fTZLVL9bu7tp8zQ0h0NvliLSXov6O4z7FLGuax3Jrwz2UV4oWYLyGZWXa_kW2rFFYSLGEfgBQCW09kSWknRtO7OHQzsz6HnSv_1mQVdiYMB_rCZz0EMySHzylwPKkWP2I60hMP-na_ZC6Ky8cqql6MLmYO7t2pBRrCm23wg_2HYI9SsEaRgOIgsJJK6p5VazO3KY-QwqK3RjFXUK3z-fooH0Ix31m4w-43B-aiHRWePGZDlIqyVjNOLAZmwwUaDoT3RSDNf9e9u2GrJQdTU9rMKHJ80mX8SxR6c_Fw336xwam0aetzf11uNK_OcW_NhclV9H0Y0-AhsKhVgobJNF2S2hue9AuQSdoUfSJmmEFkTj1xW8YL3pRJnih2AKRl_SVZf6KIganJxo7NrFRoyBdQJYNoS0RXcPfCd006guGBEjfZ94TDIenRhxqcefvmhcnKZ9T1qXd97WPmmnI4otqtG5GKzw3mwvpqkMwnlp_7vQmlyxFGMhdF30dW5gZeN3x8OlYVSq6SjIkT_f19uLqKFdCLhvOWCVllykfTjNpsiUl5PyV1Q0Hnl6L_58c2MyfGq-kj6wXyq-Gp_wru8zCIOXQFTOnS0R2HGO63EUwnocDlZQ7L0AjQRetGsnd5fhAcKvPMl69lyYlfz8j2FoyxNE9cN3e5PMTQ5QEZ1-aGmSRhmph34LAV-JACYXLfsdbWuA3UNgHZGiGDnqAhr_p1KHuHTOlsKUfAxmi5udZNACmtAlBWOX1CmWza74I7ujFNgRQYfr5o7GeQPv3jkvL_Mtm7eWSaWYXtlbhylx7LD52OVBdohygCAownUvzk0IaMr_JgUwRJSqnTgyIActh62oONG6HrUx6VrVdWbaqiV3_CD5QdxZ39vutZoLgOZhbbBoKCx_QwwZLyJCWB3vR-A59AD4wXuluyiNpBQARkYNQrJNBAJXOJLN2WfiJ_kZuX_fwZbM-grQK6_jHCKlhrDRfxv6ZFys2_yeon4Ai8zHoBSWTF_bSff-gP0RDkMJagH1EBp1VO64bcorCc1pZjn7Qtwt0HyhQuMXi5LM4fedQpTME3PKsrxVMH76R0Fd_JCGjTvm4U-t50q94OuVXhTut0GtlS_isBd8CzyUhCd7SHqxqb1R9PpvAAlcoURNioQqwei2R4nG9SaXwINC4FNFOvI9m-W-Z3r93qvqyTZFYmA2BDdmyb_1OvOTBOq20C1X3bo4oc8ipRxqz57DtXRP4W1dZrTnqVCqLq7PZ_S-IBTkcvn5U6E04j_vfPcAt4VRHuzlMdtSqoJnjLralrzoO1axlCeJj_w4wK_xTvBSWyWNt6JVB635tNMZQdaXRGu9veB4-bIKvo7J-TF6Yp8332cExOjCVtomZjfz9KW1V4Otay9G_zC-1xd2iy_LSj9es0adRt-ngVTJ9ebDbZoLWPeBqEzcItwkGmypkFlyYzMEE9uoUJzwFQ77WrOyidKu2y2eI8-Yff0lbclfVP3MV3LyfW8rv-JFlOeGrShzmsG98xDYfj9YWbU2mxoBhF1D-cNPYRL-Q5gW--3xbts-IMZ9JUgZUwDLVI9375GwbXdsAM-Oul6Eyw-IGiVDSB4HkaDIwEXIFO_lHIA5oZOUH32ANlnzVZYy-NyG4BkTEEIhujpmjot6v-0y2748hi6FaX4pmzMYnb3KcBAThUcRwoN6xWPG2lR6OjlXgFer15tjldhyXJxe-onsMrPAimoJVwHQcUe-NqHUX3Ulx5vrp5bMPw4MVvx_pp6aUXO0mjU4qry-nhGFbsQWB5tMOiQtaJWAshYqfhr6Wu5x4tU1zoXtKmhUujDL2WQqGtkzDfHl3iVoJz89-PTEOTH0IHhPNx5cbDTle4bUgjNC1XA_HaIFgs2eWzmERFW7nrDSnGWpI9e8MMPSisGRo5yfN6SarT2Cr1K2Xd4F1LXnPj1vqRkyg_23WmctkB32a5WryP0pt7uG_fHAoLMw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683a1b70ccb487.72680436','','','2025-05-30 20:56:16','2025-05-30 20:56:16','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683a1b70ccb487.72680436',0,'cd-form-entry','',0),(43291,0,'2025-05-31 09:08:27','2025-05-31 09:08:27','{\"firstname\":\"William\",\"lastname\":\"Minto\",\"email\":\"wpm198704@gmail.com\",\"contactnumber\":\"07880998474\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tA9Hj7eV51AC1bHdIJszHZ_&amp;gclid=Cj0KCQjw0erBBhDTARIsAKO8iqQOi02mmPuYwxmAxnMmOp0h1DgcsusemeWC6CIeCiVgcEPEFfWVEY0aArNlEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5lwAMKjBHFM_pijntxQG_QvXOW0JrsyldQl15xLyTqX5q2dTxDm2o75z2hsFP0dWVwLXHaDuB3Y6VBxb-3MXTNaxotZLbj61uo_MXu1oumaR3csEetA-GYzHkAvOoi7K4oVi7Y0FMLGDHY1adqduXQqxNDtjYGb-AJ0Iw2r3Pb0JKnEG20EgSu5YiZwIAnFFLcNqSK7QVE4pu1RwC5pY6KOmq9MPehCH59GE7jmaVAxKqmMl0psQXcZMbW7PKQreCBI4yr78tFHcCfaXolwEG9NpxjzY9hiroB1ImsLy8q6IX4j8eN2QVZPyNzxcNHYmTPn3oqq7StHyPui90QOOkn5fE1UBsaomifFhL0Avnkxl7BmBlVll5L3h_nZDH7rMK0WQKyEP-m57CLvXnfi8nO8e0YOZLxoNrdchLEEhvqkfB0Dcbv-FqnKZjPjqQbv9Wbo6T8kr7tv5kP3_b4ujxtk0J4JEbGxNMzHOjrENrB1T8R8Vj3XvTgzjGW8y0-OAkduqeh0TZzxqH9SbOtIA0-vT3G9FGvpQ9ce3Mal_xpj9I5TGZPG6YnPF8svY6-uYOiN0fQrJz127tvfogK_KjmaEmyJ7JyrhIZ4Hr-O6x9UniEW2FV0CuKk8dxHhUXKLFe7hR4Z7UwSzyiNamms2EAcwUk2f12H9_V0mxCqAZa9FBD7_ijZ0S5znS7yoMaGXdMif_vuDAGd4swOJhkDiMJHGYDwzzySLwDolQPzf59okXiIaKQIN4RYRKkcNuAYLDcxhZVe8DRgR27JNlXNyuvmWiQV7X2hBEtZ6PYN41ToNY9LflusWLhbmvlwqWrzmyR4l-CXZgFBlX7_PZoyGW2y7HCPVHGoF5OTcGHXJWd6x31wFDO-2D0H5LLSikuc4IQNctQhhLziKNGiIkbn4XfYKeRmVRM9FmjIOEZbImOxE3DPG3nDNbpvlZjrhv_faeHk7sd163ZNwlE7zK-I9KNWtBIBMMOpxYfsHsUCpYjFsrVHRZ8nLuiZF-MSRpliULy9rf-HHigEtKQDq4c5dQ6oA8TfuDkJWtgb-7VKyuO8OXMBV89y97v-q8mmGuGw7TuizyfAGpNIlGBBV73cZfwXCBUlzC-lTZC92ykgfwLcbiCfnhkycGh8eYvLmd7v5GWeYsZ2mmzf4w6AYvMN9KQIHsobImu25ZGb97V3reoa4SJvku4Pkwj_Po_vWFIVvRlDAGRb6JhrZ3WPf_mGMNYZ66Z8LBc8IEOJEmrClU2bLmi1Gonc5jVR4HbVaO0qb4CyBZc7L-JkcvC5aJsCRIFkJVH0fuq9WX-e6I9QygXxCT-NrFD616sm2j9A2V2HD5iRRYnPeFzrjkG5bdN6hfl6mhXlCvZl-Xoj9TbRzDGSBuUEDG8QE7fFLf5s1_jgL2foxuw2HvZXkt1ysjS71ScuhmBxrTkRStxtAdnIlTDlt0CXGfT3NcPmmmcU3ybc1koi9KOt3cgDkgNdmrqAs0q4k7XHlAFDBNwpJuWJlQHmdAZCRoqlwao58w3UL_cU5qR7zeSATtYDCMqGSDODE25QrV79-0mj-WVYvBk6rHdJV_IXl7APvqd1FvCE5g4UUIgELGCCQqh925x9XT1oYLzu2Q6Lcy5y8d8VeW_QkGw5CJLzgY4rU_Uz37wc6LJy-tPvOAD32uNjp5jlIP8VIq-WVxh8bPtNRdAYObPVA1zaXVl0jY4I4kE1tNsVU1S-gFkfWEakuW-b-WMuy3201eIzJRpSwOPQQF3TlGdzDpk9x1WRjf1UBS4O7daDWJZxHDN69_uct-YWWplYxoFZ-xLY5lx2WUlWXXpibTXT6LsTil9M9x8mjNwFmOrEh064a1H8fPUY0gVlXhXyjQAPDdMwrHvgDzISpLhF2ovq6WJitEawf4V__y1eBmsf2qCRjmEezcmGAYx8RsbmjOHNPptIj_wlT9MY7OUwMo1p3qSHYsfZvXnaTmwMhI1r1htrfVzbl3o-jnbrJEkpCjtJu7g_hTYt5-24qwuhukfBrzOcuHxkDgm6h2n0O6J8ZDZAMiuz3MXt8Ktvlt0G2jyH6JOdk_8fgn9MLFtsPvWJC94DbCHBa9duzV6OII_QMBO-xb925bqQEmXH3qAnNcF2U4wOu8wsCAYNlt3kOmgrsevtvDijP2QrkgjAf3cjJUN0m9oo9SUjAGnjR3IfxSvwsE7s_IAsYFeie4fdVeZQaWlJOTZilNO4PA3JJn9shadAhA-1hDP2c7T2vQIM-Ph0Qa2Iycrl9fxyVzo4CwvMMmwJJ_yuRAM4iDZsNrlEdtq199vjyBKC8DcpQOfJ0IE-STg9G5Qy3RWQKdgCgwRWHxulC5WhDrceCE3VRacmqj0IGbjLIna8Ozj9d_tFc581P2JRG3CrSPINnYaeMAO15aqzRY0Wbw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683ac70bb37a35.35670795','','','2025-05-31 09:08:27','2025-05-31 09:08:27','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683ac70bb37a35.35670795',0,'cd-form-entry','',0),(43292,0,'2025-05-31 11:20:04','2025-05-31 11:20:04','{\"firstname\":\"Natalie\",\"lastname\":\"Hughes\",\"email\":\"hamiltonfootclinic@icloud.com\",\"contactnumber\":\"07943876947\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA68uIeE5ex_xqRNtKKU5l4WrFMZOv0i-xEGLof2k9uo22aAEqUJ-UlCGdWRVzp7gyrkRGPmyM5TIF7R8RI2nXWFbB_jqHuDdXtpaeNywUWwXChTa622D2dmGlTWaZiDPGllPMprIhBfnrbcFH8Attfb3NCzxLBw4sULJ9UEOGhDGS2HoB_j40FzK3nteEDrCL9zFCP0lk7gi2iVA1zW2bfwNMIZ4Zkci9EKyzKPZ1DYSfbnsxIF4pufQR4e4LyNB_eCjZHblmjHyLOqK5lFX1QFy72Z-xGfI9oXea2lbtmjV45aSWIhQ_C69f0ZSZ8xz-CSvo5uR0ytuP7hwlwi8713h97tJxJO0MVuzOSZFBeh_hMo9vddaFced3Kp3WAj2VAuMOGRvvTSeOF28YHgU5caMsUvvgJa6VORF5wXCW3d2q7RCCsjglB8gLzWPdOuwHVm8x615uT4EEpFGmdCJ6f7Qrlm_GxV30FUz00UoPDUjgN5vKxxHMyeH22Hj-XLC31e1GVbo-HLVxUVS5oMsQxBwFwqv3U60hQ-RaHjVg_DrfOhuj4PNnrL6sCQtj6RNYBIynGIP4iyZDWwIAqtDg0uaZIRPhS0awvFJ-CDe8rrKq9htsbBo0bW5Yd8utUoO2OZMtDX04Bu-KWDWs0gPYF6VbnmqvPRYcTpG2OzDmoS7NC_mgEwoc4JLcLMcHqPPQzZUc6N2rqSFQoqckjSy0Xen0G79m73JXJaSkxU8EKpUy2JVsnGtmqk0OcI5u1hczcVjJOE9uHComay-5U0hUCvbX-l7ABdgXkJEpS5vDSwUYVIimCA-GwpSlvEOHJ0f0qM1LAsFmr7VzzcABhm5VeR-EICZgmoWbEtdH3vUT28RIsy0BfqoeYHUawKoi3SyPrA_gTwZYN01vvSgYTHKYNYBFAjmq39OlwvIQo9FrD122EDzS8ld9-DPE9vdOiMSGjnag4Il7rMeMp_A9QgXDge87oeilckXLz9m86KVhz0faY2SVN3Pgt1kypwmpqoi-0G8irbfQRKTVntH8kJwdU_QdO1nX1ZRF8ID92rY4nmdiZDFeDwmPdzfdP9y3xQd264FwNefFKJQDjfk8pPNFbmUiplFV9xo1jZs0YTve46pKVaTed8b1hBNKHbB2Qkg_I5x5C0sMvMnP6mnXoyGEmYkJnsU_oQQbV2q291RTp8Q-VrFESz3mWlvFslftCuZI8q-WJ1sYvGebTGlmp1Mt-hYD6BCn5l-bmbCfv28-hpmBKMWVQPuA4zm1SrHcW_OEygvCu5xEMEKnXcJQMaW8P0CvqWq4NjW6PPf3rUF_Hoc_DJOA6O0cUMFTJCAiyBsJUliKmsGiTyenaKGAKUQhY99jorx8uQEQmIUYkGcqBMB9pkimy9minFYyPkRWI45ZSpfMin7hfQqZh43wcfcP5ukPoIhnJH4a6RwxKNQat3CTOM17rPzgo_0NXuMeAGJ74SfIunMH6_mVovcTvUyBNGZ2QX4vnofIY0Uv4_9-RbdP32GlxhACp16Xj7sTJBS2L_1aVigdMUe7UcaKNaG5yi_BE4md5Ab57oniff8Fdq78kmqn7nx5Ho0ahj4pJDGT2SQxYfSPM4hVywgnGCvvTv_qr3eCc56A88DLRTfhA5Cuc_73c38-vMnigCoChejGCglzUMhc8i8R-rfx8fe0Wpw_zYUH66b-e_VWkgOYH-jWj9V1sKK7iWugDsNEH9Ta2MQaMzO6G6kVgzq-dvOJ06kZtxuzp57hEbPJJwDec8MgwslMme5g6qWX_Y3TN9fQY43SCfncnypacavG_3FTRAt5LDiYo6GIT7J4Ar6PTMbCRy9s2CVMyX229P7Ue-Uu9xroamtB5_HzVx2oFjqe3BdLi9AVonFx7HWpGvIX0jAyH1nnXgn-CpUER9_H-ul-jwiz4F4jQDNkwAzPncovNGg69H_E3h-aHDBQjqq_abeMQ41S-GJSMgT-0tsamKH85L2--gOZ9I_yx7hXiIyglH5IFxNc0uLtAxQEftSnRAZkDpOVbYfAoWBd5lxf-MTiOMmfsS38uFl42_NJrOAIzUbbpNYEZtbOq7G8t2WnpZDWN58yqeSIPw_YBxHudUGs0BvvwjhCx7rSuTiahFXX_FMWik3zi-2_5i33zKyixLqE3Nni-sb8zS-MSgFk6CAKyN_Znu\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683ae5e4ce5119.83159821','','','2025-05-31 11:20:04','2025-05-31 11:20:04','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683ae5e4ce5119.83159821',0,'cd-form-entry','',0),(43293,0,'2025-05-31 11:21:53','2025-05-31 11:21:53','{\"email\":\"hamiltonfootclinic@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"9\",\"currentpostcode\":\"ML3 6as\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5fFbSdpzqzm5cPGKoiZ8XrnKLG5jL6kEDKcJYGx3QLQVorJB7F_l8BY9eTUPLvDek4HI3dRtscldTbz03dO7j_C-v2-GuLvIJANmKM06q8PUZQ-d5F3ggMPuKo2Cvg9JQ-8C43HqU3ik7M9AeGwypNRHz38SxJ9usnEdpDh1mnHb3T3d8T5JzcwSYgJXjOfXat_MgMIPnafpnL8tAW1b222dm-DI3wu39JyKCFL27DclPg4oHKxBr1FQUtxCvlHPDyzdEfdRv8BzrpXAuedwQpyAyo4yhjA8e5GBChDnOKxoGKfz16cjR1WrIz98tgECqKN-ACopyjNUkqpvy7NpyEoiAvHWk3ZonQSvaZaV6-uov20TDwfZZZhodvJnw8XlTikSU0p0MtZQTdPqRCC0n2ad0EN2XMJ2NU-67UPmYtH9T5Jzdp3OmNKlE3HYH168e-uUNq_OHEhn0R4kvi53gVjZQ6LFYRfJ7IGIEQl34s-h9isrboul7vjUzwb794gZro2iVJ8DpgdkV8nmBgVryLluWUPXumS9KSY_zEFE7hY9wcimbxdC2w5AFMp3cVhOPewPHP5va41uM6zxjLh9RuoJkttNArqiBoLfH64krMzz9FOpN2oi3tjNXq-9htXcfI-3ipFvjI8vGkxWRy9tmZw4JCCAqyez5qexhrO-5HhXVsZfhcz_x-PGq7JGpWQKRJWlVNWRT00Q2KAafoTNrDewGjVe_Kuo20JG1SogLDwW1FzCQKyuOqTTezqOjQYG6PwUPTrJewzfh7a7S1Xtbo6bo3nVcbimASiA6wvuNl1u3uoKiXRDHZfAjAGryJnp8RsJnRj9uu7-4EGORf8rdU1R02SCLTlR10irrZqvcZROWgCHgWlAtfK4ufTBpdchOFbZI6hcR-xuV5hv5t0_hJ96ZDvlFE-yrBdxNz4DepKHzwCAl3yp41HC7Acwe1HIz_kaLAjcovWRkz1CC0FgMgoDnrHBQZ7icO9qGp4wcrOhe0cHzh8IPz8ZUIEUVr0JXZsM97aD_iCRhROFr_12Ghn76BR3RejjxnrldSDbwQXHh1nca21f31CEWzyjdKxX9qp6QKTOLNoQTJJRieP93rv4Ci3oM1Pc5RwlrXKKut6TEqiuPiWrBpIQ2asMmCFlKVIb2Lk9fzOfCH8J-HY0wJXgPdoUWyZEPXpyUedbs-er_oMl9xpOyKNXYclkq6ysgeEaReVisQatPzIec9TbkBs297SVeq1s3WMhsmy71lNX6QixmJmsSNSK2bgvvn2QMCOst79vJ8l322nYM4P67XBz8nGaDhX-ikK-bGTsGldBSMjiasff6E4m7ER_fzt6tBMG7oGh3NDONsqlarWyheDdPC-Krkbtg19JbfaX5w6Z7KWpm06FrM20RlqhTcUj7WFVgUCNbssR-0lPBAHEmg4jPPoaO1QqH4oxXzxTCKUeL1WEyboo1KEwUAme3Vrswz6N_8Xxwbuy9gDTmI8K_Bveyn5HISYV5IFZ0qbJE-E6T-L-lvn3wGsCM_a3Kltue4Wc5U5c2Oh92uOjpLbSGmoEeja-Hd67B7uh2bk1A4C1JOuhJFlezHaQKgW4LYeTifHitDFxraIeflRY92LxHgUV-T0iMt1_qPXwuVCjFqRjxRi9CUJuupqNtwh5bEf-GqgXjGiF2bQ89atG8mxSvVbKHOJAX8rO7yHwdmgNu9ZkPRZWvVqY70BC_lLd_K1OydBN6-Elwlst7AeQ-JyDc3U-1R2RmQCMyXNigTHmjxCdN9x8hOQJK9D62GqHZNYG9201N2L__FgZtjJvi8mWX5VaZpH-fihTpxZX5GVrgKGVyNXnFE1kz8tBnnts4ebY4S72i0ixzMxfDOI2u2x78MnajtfqeNMa5Cuxw5CSrSuEapyZQcGpQMMXaKiXkDbbPWvEggC36Fwl1hF_YvozeF0wHZY4kvIRJt0d3sS3PLYrXagW-ZORNR3sOCOJUJLCBJt-9Mz9leAAZkQ-01NW4ILIOD4nbtTpMY67NGNOF1K3CqkYgYMY1reBaUKDYoRbzXmO4CViq2dVLmTRce21RsYzJ7swKjaJ5jwc3Ra_UExnnJVMOysK8uMJYWsppNmlM2X0n62hQCruvsOgOuHLf9Id6xLSObxdBXqaDAaxUpbx62kzfkgoGBaP8IwY4VomSOETEl\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"2\",\"workindustry\":\"10\",\"childrenordependants\":\"1\",\"livingcircumstances\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683ae6116c85d6-55331714','','','2025-05-31 11:21:53','2025-05-31 11:21:53','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43293',0,'cd-form-entry','',0),(43294,0,'2025-06-02 03:07:27','2025-06-02 03:07:27','{\"firstname\":\"Melissa\",\"lastname\":\"Flint\",\"email\":\"melissa@flintpt.ca\",\"contactnumber\":\"6474776152\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/how-to-choose-the-right-biomechanics-course-for-your-career-goals/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5WlFkYQXKLSQ479_pAv3YyNEvLvrZGwhUYGzA96ZxohAHsPDqShco3--jSqWfCi5B87-NuMujCe9sCrg8Vbrn4mTtG05HVebriuEYIJyKG-m7yayLINDBjcT-KbFLiP1mcBuw_ouzvY88wOIG6GJvMx7_inhuqVF_4dxPjnaK8ZuVdxOS_FY3K_WhIzJP3r5fXnff8qWnipNCKuFyVIiXgOxHrKoilLjeO3WcKaQQJlFdGghMMThxH6eJV8RxjicA71PLqZnfYqIVT0bte0MYhsnk6RglLp0CoRNCE-cG6HylpU6O6biGyHSE9wxwPUEkSpnPKE19rImyelBWvLWDzvAbb2cPAZqcae8CSWDJUcr2nIUh5vtaEvUgM9eE8qHsi0wKKXBCjZn5tA81v1i52eAl5TFEkD-vp4D-kMqoAi20dku_uo4rInkmssok5EVw-A3_amCGQe-XCm4d82YJYSIjBUUYsrbfSmQF-H7H1CepZg2NZqzKvxyDuLDZN8aqvmi18S1jmBWDrQFxzvD6GO5dUnV5uyypPP3sOxfu-HCFmU0MO6QIjAFxqe-Ip_SUxiYu-CS4-L_Zbs7mJirCRzpoYZEA0TVTo0-si1uNhiZx1Gm17myjFRd1Q5tEV8CXX_yFdivyQuXsqYUOfUPLcLdnD9nKyx2t5KWiEFUktP_0ESB2DvOZRDkO6rvfW2rLzYiOK3h9cB31zE5V90GlRBZn1Xf5IgaX08lQ9BiYdfzMomeTdmiHcm2YEpIWGts1e0w3PTSXyomo_KFplOiZ9WI5WjprLRoN7S5Gdcus1YGMXGnG2Q_1usDUxc4h-l0h-71cltlbwYb9IJdVwV8XkCFnbMbdq8dojxHT-ggIJQoKYlOLvYI-vAfyzPJHBFwsNvwszieW7jNAQnZodQCXNNT-KRMK73gBxIlqZRlqq0xkFdDDScUjzi4Wx4F7lFLrO2tjDfdpDKy5DTJ8ZAEUfFhG70ZcKD62e9i5YsgjnEoBRGK4fFENw9DIBbQhDDpRX_D2ZEkdk40Cejhzf7yDaZ6MX3T0sN-6lJHdZEnstvffRtbbho-wYGf_y4nPqWqaOl_z3jK3abxOxXisbsUDOP4IqTJlNzMsZGwi0sz_Aw3LCq3fzOg1a6NJkX7uaQSTLBdo_gGtxQBFSEv1PE-yyCya8bEpgfEZSTJnQEB7a4PaOuLvI1uTJrgpeKrvtDCfbUHeWCDqovF9tzlLjn4oTMpkq5ohWHeiotOpsRhw-S5t7xZJ1sPbTB25ksh0CzM2KiMv1fVn68sXtOFn5zTvdbCmpMYr3zyIAxuPiyOUjTfTfFbSfL03AM8Qi0JYZOzhDA3edNHgBcCZ6BNzc4RjNr_LLryG_lgy4uuVgPcMeSH9D_K2ImaM8gObkKGpO510-iLjU9BkN2egL5Q27t_vO3oBg4krpXin5466vbekjlc6q-FGQlOWQo85nVeJAy57Fy5bWOxRsCA9-_fQJVGcjX-c2DuKN6b-GzsB4GmLoXHm_hQb8PsLWH6izySSAY-zbiJgyGSPOcnFu56fDg80C-TCDr_HgZZZCeH-WhqWFGNTE8-Ae5x_WsIBv7wjBK1NkmbuAoqF4T2IMw92MxfnI68yThdexBLWvEqla9OduCaIafSYgvQ3fPSyBKf72KF7F0KQg0hry5oK2oshPVkkqI-VbmchjNDV2NAtz35BRLpew5oGbYcbUKZSXvdfwuknmaArtknlF1uxt2-WZy_fbyML54uqMQi9CeR9JpNd2d_m-gOxSPEiOdNn1Tjp3BwmCZqQ7qTCz2LhLClOqev7s9EVrC8MQzStK0vxDzs2z46aGREHdRrO8_hVhw8JTXTHc6YhRaqKB2SzQWm3ppsvmeE9bjCW1W-EfkFnIC1kAnfcq3KsxTfzce4FNbppWii0Es_-iFJsZomqjFlCGUJMsEYFL72xrwVJdsZ4IemcvrggjYWW_kzw2GQWNb5nWu658pRZRTGkxwLXRG4uml6_6YOsHgKewZ-G8wzt8i1taR3mNoSLqhoE4lrPGUv8YXWjhulQ5C5CON9YF3Cg2Unku6HLZJw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683d156fb719e7.94667146','','','2025-06-02 03:07:27','2025-06-02 03:07:27','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683d156fb719e7.94667146',0,'cd-form-entry','',0),(43295,0,'2025-06-02 11:11:31','2025-06-02 11:11:31','{\"firstname\":\"biba\",\"lastname\":\"mills\",\"email\":\"bibamills15@gmail.com\",\"contactnumber\":\"07947154181\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uqP6243-C62jvpGbrks7ONJ&amp;gclid=CjwKCAjwl_XBBhAUEiwAWK2hzgpY75bgYFUZyW08iPg7gdhLOrHPYdQy8oyuRt88Hqsv_3RgCMcSQxoCERoQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7FGzTswjPsG4AryTOPCC-MjJmEwHovaRXTAYTTNzIPe4es3G3X5S5wLdQXt8TxiT2rQvYINWeje_JFo3djNNqw3h-skhcphcFcmzq7FeRO_qRyCwGG7WTGpI2BEj1JTQ-R4H9VBWKvmMUV7hPOKhuZ1-wTCU7NYw4y3oGVdOa2QcdvW1wGFsRxOfw5CxGfpKs2Qbtdgy2NE6Co9HtXSvvuC7vq3iQVWXBJdIrQT86s4v52FhiF8JI9YItY2kCNNLFLZxBwfj5J6S2u6QI8qXdDlt0A61cB0JRjQ6D5WcxCRDxN5yqN0fqygDziVPVgFgX0EGyxB9Gc6_0wfWJbHRelBzmuLIETFw-wuvWa3vN019TYM_2lxFCxHLrwKD3VRlfW2UIUhY6GRgznv-AX_DwrFqGhdM3V8vQtgQ7ui4y5_eVngc7jUIQgTliqqFEbOHkwOqlkXrwcEdshgQ8M9MKGgNfkdW8bG7vFI5gRj92gARHoU-0eefc4gKaUwRCMladiDFodsgYhQfgmrxgHLlmdA9OFcdOInGOoWLEy1-qn2NY-exY4sKCh9ENk_bQOEohGCJsfub17PIoa6TOPYqslRREIV-s2CT9UlweA_D2fGITggNOwLS_jspfClisZudU9GlCjPQvtOr2Vqlu-8PqA4QBm9g_zwXhIDjLXHIBXrIa-Qe-BJzpjOioOs_rB3Aaits3KspchVDRu4yIexQOarL6Ks1NmGic3f9WS1I7srL4-Q0Txn0E_ZTqmSU1gpkFyjaUlRl0V83hQAasuUEUCxXB5zbcbzE5ZtQz-0zxsaXG6cHRQ-0pUckOjRcosl7eCeNAcLQGXf-bDDnKRNdjwiGz9gi-l0eO22RwPJ80ducqqXr1wnLMOGoNTIZMYMwwe9oimButmhKH1sPhLVutPTD4obtGiTm1MBbd2kV_CiTbqh3qnAFTa7A1CIQBom18wyZySgBu0o-XURL2tbe5Yjcot8Y5PDquTIE0NuP0v2opEdRFNWVaVhCa6Rgsvg7vZQfFvNpVjJXt9sOLtuFRX86KjUzoQFCRhnYwTKvdeoxAOj1Y_p4IP-Rjq-L9RUOG4rLbb5sg3Vixqf_3j7tsYyok_oSK_EKEIJfn7R0LG8ZXT4xBvtm0s0QhIf3txwKgJ-beBtnvCmDTgwTJt_GkW-JIHqCvi7cnR_ZNYdLTwg_8qy_ilotZLSA3x7zt-4bvRswig3CWiWlTkRLHZ2alDQ4IWCb_sE_oi9ut3p5kkUn9uPOPnNWvbo7lIoaw9dzkpSEBOaZwdGdixomwwo0O8kMnfnoID0NuhveIpXyAt9IdlSnXDdh6kj7loPsqn19TvrAv1bkKEq9Td8PI2NgJ5VDmcr52PmcPFWaZUG9SKcK_k6OAbDNXHLTvR0P_gHrgfTCSGIQELn_UoWzrCf2sZkxbaMF0_FABsemhkLOLGo34qWef8Un3RtR-EIzap4d8X-ukI3Ozm7_-uscQS5WaSKLLbMq0JTmrxkd703tC6l7TOoUvkdAVDeJ5OdrMX-UDJehwV-oWOwMXV4Uv6ElPpwM25Qjkjcjs3tA9mlY4AxwKuPfmeE82HRSTbFT_-4490oguQejci0Y61DF_xtArEWExsl5G8M9ZHEsxyq_Z1Wo7tfL9Z6uOqGyIoiYnYYZRRSOcXb_j1Tqu7T7Y8itLnGWQaXKdz2THBEGSlaMwOkCGYb7Y79uKjQhcpTIWhVZ3QVvPnppwPpINQyzVDSn9N0-crddDsFG_vwuapOLLH4NF6JDJ09BpaYkY03MGs1HQ2pW8jksTmROBX9DMjGFYFyL8yEW5cNGUO7NlG_visIXPtGI8ZEIjHKUujTRdf7QBjgUxebVkwTMaZjf0uD9b44KCteFlThhI6zMwEcWodlA5q1KcMFu9fjxfUpQvSbgBRoV1LoZqcy9k03z3UGCi7fONUteysnzCD41UtImIjnItEHEk9GeUpu-GhDD9leTY12icnootorR4WudUiDbJQMTH8ZThaKQmjn1dKb_gN1x4wTEUSQan_B4-uHg1HoxNOdjWUP6utJjODndZF8WBzJt1Hm8x0AYgTR2P0D2DNmPGZsW_OiUWUh4Y-XcnswiSvGswWjpR_g5evSbpomTxTlinatXdAIE4zTEbYANUrWO8bCHgimt3F6hOFeloDGQdIJvcyB8-7giQhy6DroIGUP1TXCC2TXK8rn9hHKEu5bR8byJEO65rfVlvVDZWtzMi3hrvMQP-8WJgMFp4Vk4132rWjwQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683d86e3bfbdc0.53722486','','','2025-06-02 11:11:31','2025-06-02 11:11:31','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683d86e3bfbdc0.53722486',0,'cd-form-entry','',0),(43296,0,'2025-06-03 07:31:12','2025-06-03 07:31:12','{\"firstname\":\"Bogdan\",\"lastname\":\"Suciu\",\"email\":\"bogdansuciu@rocketmail.com\",\"contactnumber\":\"07761815427\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\",\"pageid\":\"41533\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4y11I4BESUS1ZzDUXD_442SbA_ewCHj2W7emx5OHm_ZOxUGrn3W2cJADAkToBXntra4fGSCQLUvVkTNVymrfAXk8LAn96MRsfTXiVXQvi26mmCswic1tW7yV3-emZITFosKmwYuFGWOgT10_VYLbVW5VgFWYjyzuXhTZ7vJEplQaQpeGGp_BE2SH02C1r_7MyIE__cpmd0P0TDsNLHSyGRX6bSLx_BvXofx64D5gftyuCSApQlFJHGfU9u0E5OSCloDR8F6RvJDFlfVjLhOMuefL5ZYbq-MKUMokA0-1o-N3sNQL79fq3eXRBVCgVjCCUEPys8CRGtSytCE8zXvApkkiIF_Q1kiaEAZSQB0_zX_ozvE1eOsTq-0Ds_R8h0ULBSu3AMRyt-hwGLO9PC97Nyo3rPIb0r57m2dZiYNvu8bqTQLMi5Ty3IK4pkZPyWDRbaVrIp9OVJArOEuA5RuG3xaGWF_W3_cISKNG60T9tVEFdkpgW2T0xuLAlzwC1YfLep0EGgntwt6ZnpPdY_QZdW9Zo_bAIiQLFFsV_hG6VNUYZ2tEIc85IXao2NdS13pxT5ufEeKQANcAexvcoUrMEXuySx8r9T01-w5aUDX6AU19wuI2uJR7qQ3xKXYt4fOmYVNwNBG1X167DXYuxAmiEa3VdFiKaoYr4hnHhZ40IBh7JBObn568NMc4AdBp6L79VpENcS1IpvdpnguwG4w8Wu34_Bt7UharHZeATco5GOshkyvsTami8hmhaRN9NkSO5H6Puu3iMpvSqWNRuybCqQiZANiMPhFdJXlbGAEAbg658qc2bwmeEQ3wgkHiWuUqU7zM2-V9nWTZuF2ZvyRliaDhtJGR709vGRl9bKFr9-gFfs-k_BHYl8FQZx4Wowxid9y0dZKXEZ25KGELa3Xjl_6JVvml1uRheFLVyxCxf7tkrR41F0i6IMpn1SSg9mpMloc4BzxXj-O1KNZl6MjGje37pWp7kVYpko4FJrEuQC3EVo7IfmrfnKnKQDmfK_EBCGG_Gl2f5lE7fuPOo4Dp6YAwuLa3W3UmmhO50I9Iec2a0IIUC2p1xPI9Yf2OHCWoTIeCzGixHa5PSZxSJPYH9rrNbBfHcGhqUfUCu3M_8tvPO2EdjkbREDxCMx3iUh8YP23ZH6qBdaHaLkIuywlkhnwjqNOTPrmdMQcl_OyeveyRlDQiFsfzlewO70sB5m3r-hT0QvZGcPjHU9891efPOsaOyWE_Wun6f2Qeeu2CPhWHsYkYdBtAkWjrC6qzQjJD_czbQCBPPlQkyThSdGSrdK9_nWawc16_2AIqaNOXdzRWSmYQvQcjxd0Ef5ZcnkxQMWbfYeVRB9sUWSYiN4hLpIQABkIlnS9xnzorWOQpF7nJoTjYLdIpQLeMWk-Gf8jy5gpe2yzIy7bDW1iZVIYk-V2J8lFUULrCx9xhm17QxLS1CxXsWSNH8jKVLw__fP4ymgtSnT1Lavhl4yoOebESci2QR0xlk3Ez1Ze3v2JzAhywmoJC1p8IQwE6NiK_uhwOg6E4AXbLg2OasH_1PBfbQm72sRryI_nkzITEDaIiblloP0ZUuE23Cononz61eBKLD0q0u-B4K_MAWHoyVRP0vsR4Dg4f-FNHSl6Q5KkQX8RwoVbGQsShmKTACKfUZqmbVO4etzzLCG3pLsca4qTaZX6l9rSkKUUXuzop6sMSXo-7W6m1Wcp7r9tbzRDhLO4bj8ZCPGtOIOk_kz0XZA0ePG5bcFOCY1vynEEMn-JVJlkkk07L6yLefZFhvDizsz3NHGNJ262ZmJmF6l-SdML3YI-Mau72esTWa5H74WjX4XtvWLDp5eXjM74sZxwaEqGd3yyJqQGWTqHDumtNzJXELBusk24_fNVq462OGD22N_0sXT-rSArOnbcRn0JII_U-UQ9RppQjIvjOGhwmOZrbY30_iihQ3_-AN2hFeF3K3z9p5AOUIWGNnojzhOfs423u18bk1eGeK8c8b8GRvAR0WOnl5WBVe-f4V0tUzhqLyUNtGPDsrcsYGW1civ1oneyBDlYy7O\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683ea4c0c9e542.63500248','','','2025-06-03 07:31:12','2025-06-03 07:31:12','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683ea4c0c9e542.63500248',0,'cd-form-entry','',0),(43297,0,'2025-06-03 13:36:09','2025-06-03 13:36:09','{\"firstname\":\"Sarah\",\"lastname\":\"Wheeler\",\"email\":\"wheelersarah66@gmail.com\",\"contactnumber\":\"07841459233\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwuvrBBhDcARIsAKRrkjd3H4kDtk5gHJRaua9VAuAIUXJjSbMGOupeTYZd6bwEzQoCy-6GUD8aApZ9EALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4o0ZmVV8tgVybSJjt3fYBuL9d4pyJLdohNCf-Z__wS1lKq-umMeSKXsYd7tzgcG7XmR2WUFX2j9omtmEM5r9R7drxJR_WAIo8X-AMU6fuxhl3jOC9KxhKoBwRDxbOIwdFC1PTMixKePkdDZ_Jn7EXXEDslbB9ejIWuziHXmfRrJJT6OlunSzfn7OE-l8N3EbENZqV9grU9-l2BXXbzEL3RPj8hryKtGkbKcmAgqbH9eu7W3pyhP6wy2MJZCIq06P1BJtMU4WeVDPWNyVxvzNS6iZ0S16UOSPCsLBpsUVDoBlcWH9_iZGdQhkvhADJw78OKyFJ0_vKv2vxG1R8gf5HwwZy6z1nVF2nteH4ENt3yGY-vwp0appjEW9Jt15hFErEnVcam0PieaGTYTwucva8oCFxf4UljAE5fI6JxJB9OJIO4L-NAPoJmoKBJ8Xqq7A785pgyh3fNU-9TLyv0z_h_LPnbIYOOoe1lv9wqUsRSrq7l9DrUNVK0IJNq-N2DemIXH8UH8T_AWwQqcMvAac5AImAuEUbsF_OjZcSLlIbMfnNVTzbSNE8bYMvAYJpi7DqfRB4Dk4GcnM-skf9JjDQGh0BFLUuDKOE99jUEqBUxQcfj_znBv5RfEzpxn9h_Gw3FYWziDM--TWpT4VAZUiLZ2QTeRWrFOg-sgfeGP-9coARr8b2l7XDPEk0PuvbIcsdIzS12R0UyOOY8IzAAOR4YiRUZySPqzVrlrb7UONHXMPlnh7S5xlngmpP5iXDkx4s5VGm-DJZaVp_oLEJqt5-NMWE2vU4iosF_wwCj_W_G3zRQ-SdbFrLdjQ3-F-1aoMsrauDsMsUV98xwaktCToSkl5O2bGnI_W9vzOhbUh7UtK0X3IYVmFgl4C_X-hRXzEjKEXkD8gDiou3FsEW4rGuG6mAu4fuRQO_EwsuOPq3RoEJw4UvpfRm4Dqx5aq0WhyYpgMcu9jdH6DidYC1jPTIlVHHL8fakmdKyPAotABDGeYmQZVRkwBj4Pyp_myioj3V0iAalObuhwjib45J_zfbn3SZFyZt77ivhEkUld7oJr9YRVcSBJwb624Cas0Yk98ZHsRzd_l0J0wOVd1m1iiII6NesaezVBGy7AzGlIOFD8odbN6AWp5HWFT6cL1xDePTPy-DaJHfRGEidwZuDBcyiYBbse5nImXGFTlfK-Cxx7tC_Wnu8JdaaIrkSMy8ANKvz5FyMYmWGOODlLpFDJE_o3b2z-r0S-fvCHVllUGhr8i3CEbYm3qRNqbxlPqRMQGq5Ju-a1RP0-rTkKn39B168AZKtxKxTurAmzLzUraEhl4Eh_aytSta88RSXLJPiAP0ZKfVgqgA65F2DS13RXbOKNHLLBU3L-vHDoMK_M_j7xlbEqcYEsaUyANj8oaZRHSR0J7z-neSGTBNiEwW2Mw_Dn7UUtWaXxM2A4gpGWqUpBZzv6druSa3jETmGfEYAdlfqABf8paIN0F3sAY_2_qzJ_2HPUyvBihOkDyD5HyTO4cJNH1KTWdBFNc-SDpNTtC2GkJf0qtM8iawv7LJbSNTprbAjvRw1F-sIJcnPRrcI8A8VVxyYw0dx59vHmRYLkd_DMtPvPbnUnEUKCC9P0gHDPpldEOQkNymNE79KFJ2dpOjjBDZyJFAjIrz3SAI21clgOQOrpRWB2EzOPrTu7QVuicjbBlKOoYYGVQUS1bmGZjT_ckRmvraESMUCc_aAY3UU_uFHA1-ubfa652LqT_iusT6XMHJddMjlCUr6QVA_eqsjX4hvvXp-PXVCSr9ZgmKs1QGnagXUSkFSaTxVGO9Dauc2QNPd0e2FdqstolYYESPMmyNFARP2eKSnnSemjAFr4R7pKHVrriv8j2QmZyL6Xq7Csd7X1rc7Zw4Gqw2TlFnF7qzNey6sqGkwQOcJiRcO1kaQorFKEwKTOoOim7CPfmmsPBYw1_ky_JyVdqbSRM_ONQSczuJm0DQTzdSLwAKorLC8_TJBwG0cuxkLLcZLLKYITL3chSwA6AARsqeEMoyFQ-elQPrQwGsJAlZrU_C3XPf79jPguwU-Yntb2JYyPZznnbDKXiKm7QlIjY-NVcKSF4w\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683efa49ba3597.88364032','','','2025-06-03 13:36:09','2025-06-03 13:36:09','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683efa49ba3597.88364032',0,'cd-form-entry','',0),(43298,0,'2025-06-03 14:21:13','2025-06-03 14:21:13','{\"firstname\":\"Cathy\",\"lastname\":\"Pearce\",\"email\":\"zetafitness@outlook.com\",\"contactnumber\":\"07784133602\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v3-Tal4HswflHIdmejaauTz&amp;gclid=EAIaIQobChMI68qvhLnVjQMVAItQBh0ZdA8zEAAYASABEgJR-vD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6-5nb2-2XtB4i1OgcoeSz2ltVXgBQ-mnuw_bomEgWk3pSn251hnhxhc33VjXy6wAOM045bUPgTsK1OU3J32gLHek1S1czmIolPh9y3Gqy-9pfcaQmaFcmt_dicnlcvargY7C8t6-liM83npDi4djTNt6TB6Ux-3NRlk53eKG4CzRS_pS5NCRE4oyiqncjkh926XbYhBN5dekvJa0p1xkjrkQhroc1XT0deF2p12t4Zv1EcaaxYsWHN9YPjWf5f0ROgocrn9CGZRDMBMh6ljXThnDghFcWbs6gT_VPNKvyueO4NRrrXJFQW2EoFo4ajaMGscgT1JpOK8qTajbk9f9FZt-_944Z4iOWfcHb5z1UZTVp6dZ8FhUGcWa_ld8y_E6ojQsIGOb5Axj47XkJy9ndQhEb_q4pzoWN4trZKnks3I3u0ytoCPnJPtidnWLOoVQLr4V0uC-IYVdqcy8oYZasphLETxNJgienzUv6kJR5-XzHnN1vPtWulQpg5q8JctuwRFYwaW6O3rrV1NBrPF3HwDZltVB5rMkhtb6qSpgtBlb-DhfiOXDVb_lyDvfjtC9pLhVThQ1KpQ8Ru0xmi0-mjxC-vdI9HJG4zD5Feh-_EnJp6dPO-N2Y_WZFflmizI0YkniIZt_dpxxfVMXqndnNybjYEF6LMf2oE9fR7hbAgxfkdgXaLUIH8CHIl2RdFzJYIhasHp1P6rCaXGEMo6m1Mbtrm8WNgh_r2biPSTqdoNxD2Mgw23FkjhOW8qY1RLdPNyAkv6Ob1T7cPowkzkml4uAtefS4-r2XWbc9QJOKsCxgPXQjP-TFRT3hCsooDMS4SGfwzYVMUMrGlyIwLwnrED2jzwDncnFR4M4t_BLPDvwWhBuZEExPloKFosmjTZNejJe3EUCiXC89NlrvygjGbhdXUOFDKKc6CVZMBKOb1-IGA53cBK_cJrWtC_RBviYbcWZp8Xq7xpf46Fh8gdU2ZrU0clzALFaxyUHwurd1E98wUy-BeUFctqRAeBUmk1Tq6BfVMyDIrhTuyLgXQtcnDoyjXQvq8UGUxd60EF2e78d7oHrdNt78a1A20j3SaffzjwwBKvThXeKQTdKVg80ZzjxKQeFZO2k8ej4FQ5m6DZo_EN0-fONVYAv6PfzIh8BhGvnXBB6D24xIghHBx-BjOhVj5R8gWpG0Sa_yB0-HzLzfD6qfaJ8dn5EPkq8il0S2d-3io8dALwQ6QhxiDLHnZsKVEY2W2br7vcP4Dngi3Y9L-ZZ_XHG7WA_vuVIQEgOlkie9OtbjQL7CXRqEzgItb_NBj8VR9w5_VBhauaG0-p8WjPu5Qoaz1BlIjGMCH_VJtCiI4YK8Sgz0oVrelgl12fj08FGwN7c3n-Wc6wXvYHDhLPT7CZq5nuQ_QKGK_iYGCrkitu3E_evL5g9kl-v4TJswTuj0v_05Fh2zIYJQhVxJxZA48pZJ8lh8PdZddZ1MCEsmzbjeTMP0oKtUgR5IVMcXvvFQThA7SI45TEfYIa3-qRq84-zHw5xlEab4Q4Z4ZLd87DNYQEIiL327XorHv5A9Sz4voS6vrMqkiStAKkbN0pUh9H-5QCyi0YQgm9WMoF8frn5QzfPcwBKp4gH6Z64-oi619sppWig04LeKr8HwIEl4UIQZrNXPdqfOVMU4nBBe14oo7_lNwkJna-E0v10_duMYoYAHtafUJfKv9MpsVlZwISgNx6Ga-9pe4rvwMJvo_B9W3c-LbsdeMo8l2KgfO18he-1ceZPONKDzvNxFseEu4YqxsPSYDYudhiXMZQ2jGen-HikFb86A9OsY_IIAFlvp34h1zmGcFfPPtvbftTzSvUED7VU--BuR9kdoxGVewHKJ7sVEza1bca1zzfk7B_9sH5-aHMetV-w7fos8Jz14RaP5BlI7Ck0FzH_HQFeCLFtrAx7vrrjRd-19zv6okgJURF4BRAehzJquv5vtYy9D2hUYLPg7rf5IFyBKfR4ryRI_4EyjoC8C0ev8jIX6xvk8hsgzmYoObogdDPgUrBUhYtr3Aui0XaqDziLSbQ_BRdGojk376XumeJti_JoOsfm06tZ9NcDdfpCBqJHZA5SBup2uUYjpYkgL0Wz7Odd6Xd2SmYZx5j1s2kvEL9smkncedrsy8F86O4dTEBpYmhVMFp_I_Kx9G9PgzYviGz-Vf\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683f04d9ae2094.35700809','','','2025-06-03 14:21:13','2025-06-03 14:21:13','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683f04d9ae2094.35700809',0,'cd-form-entry','',0),(43299,0,'2025-06-03 14:24:14','2025-06-03 14:24:14','{\"email\":\"zetafitness@outlook.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"So30 0hu\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v3-Tal4HswflHIdmejaauTz&amp;gclid=EAIaIQobChMI68qvhLnVjQMVAItQBh0ZdA8zEAAYASABEgJR-vD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4ZNLhsN-FqEIeB5GzZ3jTZDD5CFnWygXcTZ-SuglfxBsUskBxJ6X-4vwpdMeFhfCVQlLyScHHonbiHTTRBpw8eNgEH67U-MI7NZq0r8WI4Ae0MC0fnp_l1OYxRz5eAQpLYCPhXYLTRdGzA_GV5ek-FajgrC3DHCcyLw1rSNi3cxo-SFM5bAZYgRJqDGHvkdR9uXlYafxgkl03Bwuf4GDXt3ZSHmpfQ6Ze7uWtDxYeR288Ansh7ZtTHp3o4ypedGt7vrv6vvE2kwWbcCDgGmboNA55lq3OBM8rc55QMENHCijJ7SuksoYLp2NwFdMoJ91zCgjbGy7bSan0e94cuN8PHLoryw5FKME2bF4wJYBXQSQqMjn4qqHYdjgRVyTeih8k6fOaq4-NnszglXRxtD8Iajvsr03NAse9_yJe1g3Rth-gxjSex1_ifIUgBnjhm4DKt6RnUR7_Q797w2WsBVTGtK65-JhKlDBAUhaTYYgDJruM0QJefRpCODZEIsuyuMe70lUA_kVdMVXicXymHC7xYoT09zmy2sBl77DkNChw2zM-_CCoyiXCn7SW3ng40NOkqWvQT3JT64FwSSqrg-EpGf-viwrPW4MNv6R-b3voTQGVHEsleZ2nAxUgL2GW43ftw9eyrYCfYXE96k0Ej0n6fKc9F1zgEEoXiolDjhZhKaUyRGmgOZ9lXxsVLe6Eb0BgHr5R_sdSsmxkL62ztselP-prUvdQigtYF6QJOnOC4rla8Zjhg9vE-4qI4CVLsu-547ud7JeBDsw_BSYI7In4ddn_-0dXitrgWgTtuu5X4rVwFZZDJeroJLXUEpv2VPmVOrkG0TM7UOJ7WkaonFyKkQRH8fvkrSTT8hG3iSZouA6cW4dXFOWwIbBWoVzuzDyrOB0jZCUGx-BxkreflawRfBorj79XQQ2Cw9s2LjI2KfTuT2_LnDXODJpPyFkADTwjCt4_pjP4-f8dau3tUpHiM4Q7dXdqIlW1WUhqkJ003it3w2SBJ5pjzeT8TxFFd65bd8KVtiHrWUpfLkeYmzvAYhsue7yyiAJlfldrLsNEyzsTLptqw8wo35O3ubqiDV7BOxUZI52mAXYoTNCgv3O2uyxeUFovZ5tniF7PF1rdeJ3XVeOTHuJ2nWZvPd8AZ97Q__WuzCHWKn2NZXXZ0CukTPrJTjPgT4uQdEE6zXIPuUgDPt3y_sA9o2y1Yp-z3JPf5ZuG58ugsJlt3zetungX5q7BYuEGM3F867ht9osbjf8bgHkokIDQM-GR8L8QUIsmVTmQMPDj5q0vL-2YXv5u9FLNC_jM9E2WqyCobsKVjgU4M44JYtsoKmZsYJ2LVWuONMe6kHDBCs_9XaiTAKqucSgi4ymln2sV58tWKBXJu4p_TJjZbSLGniTE7gOStQTZDGevjdi-SMZuWmoBvcivj8-eHnK5UCsaxmV6SAS_fMiRkYpCBPgT8ATiyPCpnCTLwEHVDa9zcqjUKZrj61w7hZbYWVL6AY2-r5_GrAsW91FAA4P_SqnYGUQLlEHIuCl6_TCRkUpXFq00kCQ0X0_4qUlSYnSDHLE8vpvOQufzmy0SVxWO8oLV6N1uq5Du-GEOlb-XE4pADxJW48u9fVlAIbcKDqsM0T5NAK4OmpCDtCg7IEej7TBJoX5NE_7YFVgV3kFZ0P8BtdGEw2QRJmnRbdv87jLsWD2N5iYQPfCOCbOpGm3VvTKZ852GMUr4QQ2nW_mWNnC6u6lCloGzjn6kKfEGiDnz5wK3TdhZJgl5v7w7TAtg0FqwK-eOAUh-otb03obKiIS26L0CH6vjBqMDqeaKAsF0Ef1-bmqGkSkMwkVxptcrBUEdGXBVx-02hayFpaK7tLFRRRoSGq78nnY68XQPIQqv_hNhHckWIecNHETKe-tne0lRWhqjEoDDApiTLLu8iwter7wPBZ6I6_yF48Q6dVGMHNUfV5CREXNjCeuKCSv2a2Q0A2mYhREKGqrsysZZ3GT5Ys3bljbKt0ShWTUUzz-YXX1PkeSu7k7hyOxGCSiisA6Q-PAUlHjz-r3IyT0miQ4MEHgroL0b8fZVTeUso5yHJqQb5ddORm3Shbx2rJUA_TcUVa3UdwP_hnlM1xZvAujdfu-l9mo9PYk5vfi7qPjVNGoU59JDBJvBWOukWSWnt_j2uPw8GwaMGUnybcBjN\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683f0572e8af68-39507683','','','2025-06-03 14:24:14','2025-06-03 14:24:14','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43299',0,'cd-form-entry','',0),(43300,0,'2025-06-03 18:45:48','2025-06-03 18:45:48','{\"firstname\":\"Bethan\",\"lastname\":\"Probert\",\"email\":\"booplar@gmail.com\",\"contactnumber\":\"07799088405\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v3-Tal4HswflHIdmejaauTz&amp;gclid=Cj0KCQjwuvrBBhDcARIsAKRrkjeKTh6ogmmlJ49r8IgLAfBqG2IMkj6nE61E-n-c7uZXV70TTMGDXXMaAmAVEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6uQctkO7d_o3Lk05_6D6U65W8yU-8Ghpm5qx2Hw5tAEAmNAerwavzLthG_KKsouydnZLmBNyyG6Lk1z49ErVJxHYLwhrfTSUeKjp4SCgeDcCyDOJhh32HT0XFogsIklnxo9MZ48EtVEvTkOHiD-LFMIodSvN_DVnA5pb9JawtqaHYX22kydxJCibmckeyl3PPQsiKu3kNgrMGqEEiRTH-MOWSL3WBxVjGsyZazDmRbVH4d51gIRSVO_CtO0EyVtI3_wDEGu3y48edxIFSV5A7sQwbDOXk25KYYiTQi7B-YvURCvvL5RY0RJ4zZvzbLdmwzF1ce2lq5bDCxwYoHxQwBfNFWxw1gBnpu9XIOFGkv80aciRRInYWcPwLi4t8Fa6IeoRFp5ASKJ1rVgucFIwdeOd9vBUubuMEaORLL5xQcibF3txwNSKbDPnhg9CGKcBp2XwB0pAJsVTXasLsNVbqrPgJyhCtgZdKD2IHyVQ3hpKgGfANkIO4VAAZdAFclJoW1ij5yjpxnSpcbravM03g7l0g1Ym6nezpIMbfq00sNeHQoTqvFlfyQbcajfqmFFdEVqFsw9kGFlSoaiBXhrlqB4WCIDt1Xpu1qXtuel6rImkwTXNtk55BHWywJHqfNnnzRDq4Qj02XrJYv-oysfxij90ccXc5aEiqAaXfpwFKOvRvJ-UYqT4S5Ytd2_T6LHhGHRXZ9uZ8mcQ_Z6FZVRamPfnt4OU498jtgCs02n523jlAogUCzrQNQn7Z6v2tThE-RKXIfoIJCsfyxFFsDCvNR0s_amMi6UinAFoRCqvUKu_6x7-cLDLmcjwsOvfj1uKAN6h4J5B-BdpzOqPZxO5QWvpZjVb7sMlnw1m7QzIZw3mRFyBtfxawP6idU5VPFOvGmfpjvB201z2L-F3p3CFLUSNP8naY8xWG3tULbHM0EAtWDXxJHooPIKMEvmFHaW3uQbDC-f8oZlT-7BDyDcPvgr67SOyy-oR_ddk3-1-UapDexIKY7d0nk3EAt1OnweeNo-awBFrd03WkEMrKTN8IfuQKMVq33Lbu-mtlgE9s5cUKLcarJUFYkxW1Dt20OAhV-GEhVRSWXPM1aXdAbal8UES1WkO8loBjnyoCq5ClCov9MTtzfAXT7FlqNbPptjIirqv6q-Qbe2g1KEgVO14DaWNK5LNIoHqytkLpxZwpFIBHxZPtKgyXM25KuXQLmAcYwF_5awLnuIHR3EMdMWc-6_vtLXdifEc-UY0HuYEw16CkYZH-3N5m_w0LFRNUJc4T_F0Fqy-Cld_xUEi1VEHEBDViGExOxwDz9Sze54UHxdJYGjvpRPmjvlFRlXe2D8XRBR4CANGyKZBjZ1EyZkJlbOe6BZ77vDHNRGTmeSvs14-voEwbKSU7MwXRE1HG7Ge6_dmGEcL5Ox4u94TwJl8igGgUnOfsIJ_eU587W3CEKoMUmgA5VhQpsDYrZU1qIdHEvdTr9CcEudKggKjNIl58ZWkf8o8U7dSNbXOAyz65-XJXMjT1FKieUiiqeW07utRVfkm_3cGACBRNucmrCOiXR4i70-ve7TvL6tHm7GdcQ9gS9HomiGJFQTdyO9yGQfVzYcJw9sds6oZWjzO9Tica8qmbyobhW8icgk9_xt3Z7gZYKxZ1Z2WqtTAsHyEtYFQPGPP687xGRv0fmJnMheE1IVN_zHwYyB9UqKlpiIWhOtqLaUYov8Dn3DFg7OeAWbchUg1VqKt26HlMbghwxoyBW_UUoSIzBhg3xQEBN-qOdjc5rSWPrY4mqIRqtLEWJ-DgASF3fuSFaQG6i7vCpL7734ZkVI-3ggnppB7SRwr1FcNfv4pjCfRx4rP6UFerHhPuHMyog6dOKjXLcdCc3Klwx--HJfPQWXvTZK4284qdOFSgTNUhqU0VOLyNFORNaDwrenX_WWhP1J-JZyR4SaQgSQllG3autoc9tBQ7bM0lImbgzv-1SyrMwDNKOrChll3jfbtffvXpmGVXrW6Nm87NcTCV9-I96x0POwKrkuUP3_4vsF48tGlwB1ku-WglM9Szx0i3NnPV7PI3FmxAv4Ik3wrrfABaGWHbMrCLeF1Z9jVtJcQU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683f42dca9ada0.66522131','','','2025-06-03 18:45:48','2025-06-03 18:45:48','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683f42dca9ada0.66522131',0,'cd-form-entry','',0),(43301,0,'2025-06-03 19:59:55','2025-06-03 19:59:55','{\"firstname\":\"Jenna\",\"lastname\":\"Knott\",\"email\":\"jenknottpt@gmail.com\",\"contactnumber\":\"07984024966\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sIlhGsPv5akkSfmKek_5qud&amp;gclid=Cj0KCQjwuvrBBhDcARIsAKRrkjcPSiFv_P1R9-_HWM0DAZJ2QTT0_VHtkWlU0-EKEKAI-mfreIwz1XgaArhfEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA63CHZ8i2wxwBXCFSTIzgnQwdiREmIwjLKtvTioNsgwKfCc-GhfDnqbTDKkLWEpYsd00Zg3lmKZhU6auh9h4Uaw2LtNML05RdqJEUjleuxOOFZhDWLpexvgEMx_xyZOwgacopbTVamVTavefVTvypexcX3EaVqErVBnHSYLO155Sdu6NVuMSrgFduVL6T8BEcGvG5VXMzoFCBxuxDp0kego0N9nGTBjwr02W_uFZO0OagytJSPIFvrR1WQgnIqCOqfH5oUzmBU5QdBCHSFU9i1-QzyXeL3uaocJJkcK1GwIRd1XW3YHG8sLhb9VNWDeyvef-L4pj6rD3Vl3IIOX3iZ8xvJzq8iNPrOlZtfmsTjpzN5ci_eUnH1U1ajRJa3r7nwvWuWjY6tlpHfvpoOxbMOEr_yQvGOZtCUcM7qh-GjjQH2Id1s4UY_0FFzeRBjeFzPV7ZbHSGOm2jU-RwrN6bH5OFGl6b3Hd2i0xrTDATsn-qxFeK67eytltmmmnQEjdki20XveRsaNT7eNRSViN7hufxXQ_HghUy0LR_m2e2S1M-BQncNPqmnQsAbSqtnTvto_64TkceVznUK_hVUX2DcJiXmoIqHMzEeB42uehln_FlgfAg0f4nyAaEC9ks6dEx8EFetjw16k6f_SRidq6qeb7v0heXnOXrUspqLu11GbXefVdwt5gP3FhqnOheRJv5X-ogaXOkN9XJv2d-sitOjdu0lAwEjR7ndrQ3zjyLqyo0PmYEdR3gMe8MJiQslKbL4UFGyQGWCej6-77c6eGdcjNcT_RJ03gUeS-DM9y9I39R3ghONpy8F25_x8pNaekk7GdZAsxLhviljdltrtDAk6q3nqSfnfcTjGpqwdqtrEjdbcUUF4VMdSPilAbpPo8W6w87LK_qg2KzX9AVprmG9bFc8M1y2kJudVUddhJZls8p9YLLP_RkUntvnAjZRrUAMBqyEg-IzzSnLvEXJ73C9BzhodSh6T9u5uxjNOdZUwhd5uL1sKx7T6khLoWb2d8NwvoBRBtn3T7MyamxzASOx8hgkiubZd7OSC2m-7P11K3R0JlUPJ4YqRka83SoPajMjbcy0uH5j6Xb0gq4LBtOdqOFnxHCpDU91Xiey3iWaf_4BKo5Myi2qJDOfttYpTAnM4S5a-5TMx1hcCbLEYX9jowwIR8QxmT56RxkBd0TsaGoe7RjfU0snCAcvQGB4hjE4-ZrwTjuGjqTBg5sB2IMRMgbCm4nKaC8C7T1Ql-xN8PFJt3RVx8qsLl6-Y7Dz9JI8NevTQ0NtPa3WbsIzPkc8dLWoFPlV3LEEV6i5Nm6TGWbRZvxOwxlmKLI79zDLhlo9fKhZ0ZfEmIvzBmLAnYS8RWlHvhwde1BVMmMXQfEheZCP4WgyUVA5SP0MUzlnUF5Rtfn8V8H3YSTQBtPfYatxQnGLeeqInWN-M7VBr0Eeh2l0HOr-FoQazy6Kzj2l2Yyp7N9hOj5y2cMXrlFD2TekKs6UZ43WjwuR0NjW9IaQzy3AXWzCrdaJKg7IYEN0ygDXvzBD3PyLOp_9nhK-A7KFPCyj_i5DMdjg0mhSm7zpYu0IaXY3yoz231Xv3dOK7rTwKeRzqlv3IolZ9e4TxQ0U0VE5mJEB4Ohtg3rCrHr8SZfvrUUaaW2fGHq7D1Us-1Rc8q8H0G3hMbHj9KAPC2ErLVc61nubMv86eIftuww_9SIGclhd1Wq8eg3ETZbn6KQSkIuDVyMLzTlVYT_U_QYQ4QCzKqUwPZct2P6flRqkFg86Uq0ZQeoZgjBYoFV_z3PyaxxZAO-vKx0hDFJ-Tmr2lb8p8hL9sWnmazYCacfTud_JVaiz_TnA27LLSzM80sUwc5aO8zyKMwotbsaRiVq6qP0rUjNad8XZa0kWopPO27VnYRM02-Z-l3jcrVjW-u91R2u-JZf5DvT3A_YN6wSgiz9Pg294e4_sZKShPzo1FQUtzq4f3VDjmwlJ5-x_3404BRpCpN7EagzCYscn20_R26TtSN5P5500uc5KM8GoghvKPTcuJNxZwfsJLJwsnkOSOmoWYPs-IawX_Cuk2eVxCKCkY5YzZNpGFYIfea0zOfjvX-rZ9oOrHw8GZ8Jkskde6XzCkG5LbJF6dqsxP1O4qKAB_7g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683f543b19c012.14013802','','','2025-06-03 19:59:55','2025-06-03 19:59:55','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683f543b19c012.14013802',0,'cd-form-entry','',0),(43302,0,'2025-06-04 07:23:45','2025-06-04 07:23:45','{\"firstname\":\"Anita\",\"lastname\":\"Stockman\",\"email\":\"anitastockman@googlemail.com\",\"contactnumber\":\"07733226274\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMI1ffM9pzXjQMVYJRQBh2xnRjcEAAYASACEgI3afD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA46uY9Z97QP6VRAe5zHmvPrtJ_TxxMG6jM3xpROlmynRDfryo0rProtn9_3ijl6pNdjbXrnXW3t4tmK0NHsr4KP1hvWLgq2ZK3Zkm0ZygucNmR3NPNKh7-RIZ9kPlZBa23nt5DUh34W8mWmGkcp4hsj66DQ2D6LImJDAOMvWoNH_o9PK0TDDUxSb9BUCYLs6kPyU3WTU3R-37_ADfPp9lhlGfjiXv_7B0_VpC70LgaiEj1p-JAz317g0kFwViAfVmxVOUu_6wtBY4VwtgeQ3SvyLoDN_EXYpyIuqD_fy072WNuD7eBF233ApZCAqTQYuIXAxz4fu4VFnJmd883k92Dp2puA7KbRljICRZ_LT7QUCwyWMBggW0qvKuzbE9kV934xfUgHuMYsFAOViWrerCMiJDxkIl-U9s6Wm4EF_nFhpzz8hwRBkssyAJe2yPL2EPPq-GmMEPR_vQF0fMPMw1JjQ2zys8wYOWIT-dK_hqkAfRgj_lbndyKBRREUnCYtZEx76jZWqMxLtzWK_cFkDn5oTswgOnsENzD3N2lbpQS0F7d0WTferwG_Hly33dUvSbENEiwIjbgAivA20UtISAiK70edAEja3U5pINYMprd8lY7dYS4r34rcBjAvXOoVNnt9j-f9PiM7_Lr9N7NAuiI5EwnQUvlBjr8kMav8nWQuvhK4HqUxihAsZU7M-jkS8VnpM5vxCYr8RFCdfFt-A487m0yROowP7qI5FTQyz3I1a2_u2zRFKvkmczu_bX8hfS3rpNiXbGz5XgzqjmfoeazIB47UiZFCikWun2MeUWa585QrsVm_3Jah8gOYWU9fmDM1h31xZ8esqbgk-qh6X8RGykRTHXICKjppSUZTeN4h2qxp_D_ehS_moY8EzCwuoMkaidrxVAh1RUJG11H2yryNZLto_YXCbDFaEuF2no86bLBx2gqzlZ_2iSALRoE-Af2AAgI-uKY_nfCfkvyNC-X66EUKuqn0C7tb1NbQ2dJnP_WisQJ2WtjXcuhDfjGvU_B-trZ5n4zKlLmRW0we60L5wjGSozGOhNMGi5xAljvEZWMHNPN9-hBkr5IRf4FZxFOE_VMsfIoAQNaqmwv81lb_1MsscTDW5CX8wMu8yPI09K28Oe1arZx1iRO8n16_cljrb_RG2p5JlpVF_fMujAbC-CLKKjaOARseIBX0tuyEGBMJU0neTUd9wRlflC25hQcuTb2exeyLvbeDgQ0hxzV4PTi7VTok4XJlEjUs0ZGjrjmEeYZRTqoIAioh13zwJ8Xw86nz2MiFmbT5gdfnlOerUIZ-ojdlJpSnDZEj8hVtQVzyhkZAK_uKglB6S9XioQQ8mAe46kvqM73pisnYBXJs8wSXSmswhRZ7yy-LHeDMiLajheURP1h15XErG5LkkIE5qwMMRpwrN6UeSvAUE4BS0bBGSQDhkbnYpLJTY31IuBwQWzvb8VvBcl5alYyd8IcpJ0QaIVhbuADiH4S9r0WH0TZrzN-AiKXtPPDwn--jWcn7TmzEtxx6_yCBsE8wPgyViXDadblHR_BzN2HGaVrDqLRkrEooH0dcgDc5U-C0DOWkjiiUs4AEQiFBGT5QlZKCUeO9eLE3Ub0Vxp8rYB2E4Jb4molrTfwpMls9lyhUd19ry3oQRA89MnprbWuMTGq4hXOC-KzWV7DZh5J5xARihHT5qnbJjzXSU6j5Tvcc3ha5nigjqCF1jcFtx7k6-O72hoyzOxB2YqRbzpd2gaatS58rjwpg50fpDm4Q0n7RLnbFMOvZOYI0j1GiSfCYowJmIPAe8X4drDWxWxxi-VHBwtF1WUFVcEMlQQTtSDr3H3uox181usidW-x02TcE5o7BcP77lyg3zrkJhia6Uhny9yM8ZDhyoW-5j0RjgC3SzyqBwRJwRdsl4r9EPWkwoPLJJq4nlUs-gSWzdDTuXpMvzlXP8RcTsXfYBEGrTyEU0Uq_hpDh8EOnVgPFgvWnOC0v_M0ydNLgS3Qg57NkZIAUliGffm9y7AVQZJ4yRHWBaXLZ1KR5kZIn1qnLrUMHb_TkHQANhtupgxOnATU8GuTixJNRjw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683ff481c28216.14172409','','','2025-06-04 07:23:45','2025-06-04 07:23:45','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-683ff481c28216.14172409',0,'cd-form-entry','',0),(43303,0,'2025-06-04 07:26:20','2025-06-04 07:26:20','{\"email\":\"anitastockman@googlemail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"5\",\"genderidentify\":\"1\",\"regionlive\":\"5\",\"currentpostcode\":\"Nr3 4PF\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMI1ffM9pzXjQMVYJRQBh2xnRjcEAAYASACEgI3afD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA7Fzu6lUibsPGc1TaWgvgN6qy0ufTpoYKVpztRjv5d-PKIHXaIgScsPuPpBviW9YgBwa46RhU8sLbpXBNGJPSUsjTTM8J_7XmL9G24DuenqrW6qJ5PFH8_PR-ZC_d3V5mG_zXczgOPcdY-63xeaTnm9qPKJKKcfyjLEu60487jQl4TdDJTTACI14sK__Jt2h2p-7lr9l-JoDMYFX9ltS0f3l-3h9BXl9_8Z0jf5bajUIlgFkVvIITOzG7L9KsFBlldUgtT_upBhYdRHHZwwgi9xUJPg131SGLhj2r0Bg0C4EPJKZwXRJCnTG4Rn6zzoHlrbbQWmNgDAg0u_e5C5lsc7d5CaS2MIIx3uKfeUIFCmNRWbLtnUw-ZdCQxlKVfDwlv-EUu81DHYjlRmkPNGZRGtSpr28faQSD8wI8sk4XvVx5O68MjT01rsgZXs7dc0dIZKtICGSLGKS1Dt9qgkn35E1Fa0gEH--RVEAJT-PyvGi1zaDCksu995B2E7DhMXFIbZMF-g8stzgV2X62lm4h2uUZKSQiSb1J8xsCyME4JW19ppzxZXL4-xjcciNX0cLHxU6x_KW1QgeKkmVFbo7d0bNhpaWeEdxW_1HMJo3WpZLlEq8yOEzguZASXItFQa-xADjbN5oggcwrVVu4lhPzlBTP7nnPqhnKUZ2ihvI8Q_PxjhDT59-ajvlLz-2C0w0jfjBVCc4gFRIi-jLHcdxk1XExIL9QO6lDPB70wxd0WqL7HuX1eaL5vQu5kd3BeedQqROuKzh-EfBNq4p0GjG0eZe593rR6sZmF6IWjf2s7oYet_lYr4XWImCP-ufXGJHdjLycfdju-lvoviS_olLDjWpszKl-PF4nQchR7VHCCa_W0U2YbyhLXdkWVbfmm3DImQE948yqkomX8G6TMjWh_CXcSzUyE5YSu6p7qQArle2oH4JOIWdc9w8hYk4uYMegiuwdRDn3fJhW6PMK-DSNZMaKqkUpyy4Om8nL1gplZ5z8AkotTx3wiVrAZOj2Hwk-wqLH3qudSdCbXUJ7fhO4Vpsv43pDCNXhYJ2FM7cBgJcHM-PNC21DwL4cWEZgQJNCGzyhGA88AnX63fF0zUXTlDRqTUxK6mNeHjsGfL6ugIy2q6ruCmibdItZ8abmdu9pi8nJUbSe8k676SK9JddDtkdEdNr2ESTIAmp45e5otPWTgxGvLMD06kdBAKG24zBgqNCxTYRvu33mSVZmMqJcHcMOGNiE0l-BX68N1BFTluKTfJBA5FhkZ8tpJNN_xi5Zt5hwHdTjONh8I2ddEL7PB2wjGpRTvlxXOh3H2zsmPLOoOIuDO2M-Vgf26MXOHe5b_xPYKx0CKazucnuN8kKuP65u5dcrrkorlmac0BWBR1kV5VjTLb4PTbitkx3LOjROk54-Y-I4s0Xg0qb_owg3hpltd5hm_HSAt1R3chANUMJRpyFxZnuwJRZ6kVETAHX-KyTrJ0QnBK8mVsCs1x0nfuPNCFnFrAA_BbPm0iOnbgdCbLycjr2RqNYFo8h7zS8sW14CQtFF8ncSuuCHDIbUJ9xP1Kc2q7OPm0_lqPrOn_YUcSr1RkJZEsZdvgcEUz9bdG5xVKnoOddBk35cbJLXS42IEQdDtDmKQrgdtcEIs8kHTDOmNuazvi-YWrGYzFUcO3UVaXwkZPSsXN2YtUko93mu0kEe0QwTtJSj684eiytDpvFX4_5aDwjgYuZLJe3xq2n8oscwEQWD8BKBxglURj6D8f7v9UQIZD86WPhLIi-6Y3uXJi0pTLPyhLBVsi9o4g3VRPkbgEeq-ZJuHEqCZ8B7b1LJjQTzpoRvxyW7I85dmr28KRaPPG-hDAfwo8oWifnxVZi0NQI9U3zfb5cVMpXxDE1I8ablYxPsYpGMdsYYwXv5gfbwVr3IQw_q8adeEDW_rTe1SP6OGLGiJlRcWqjipLX6mkFUvas0N0cNL_aSYBnPMufqq7C_u9WEVI7OQo1Y9u8jitpcbz1JRcxpXl3A8yWBSlrtJeF5k_DCdYd9ktoPQe5v1joEsbCgdzcNP-cr6W5ILoscZl6lr1E2MvmwrhnA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"3\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-683ff4f577e308-69080742','','','2025-06-04 07:26:20','2025-06-04 07:26:20','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43303',0,'cd-form-entry','',0),(43305,18,'2025-06-04 08:51:21','2025-06-04 08:51:21','<h2 data-start=\"264\" data-end=\"548\">Anatomy for Personal Trainers: What Every PT Should Know</h2>\n<p class=\"\" data-start=\"264\" data-end=\"548\">Understanding anatomy is a fundamental part of becoming a competent and confident Personal Trainer. Not only does it support the design of more effective workout programmes, but it also helps you identify movement limitations, improve client performance, and reduce the risk of injuries. Whether you\'re starting out or levelling up, this guide explores the key anatomical knowledge that every PT needs to grasp and how to apply it practically in your client sessions.</p>\n\n<h2>The Importance of Anatomical Knowledge</h2>\n<h3>Why Textbook Anatomy Isn’t Always Enough</h3>\nWhen personal trainers study anatomy, they gain far more than theoretical insight. They learn to identify and explain the body’s structural organisation, understand how various systems interact, and most importantly, apply this understanding in practical, real-world settings. However, the learning curve can feel steep at first. It\'s one thing to memorise diagrams of skeletons and textbook muscle maps, but another thing entirely to interpret how this knowledge applies to a diverse range of clients, each with unique anatomical variations.\n\nThis is where the concept of layered learning becomes so important. At Level 2, anatomy education focuses on broader muscle groups, such as the quadriceps and hamstrings. As trainers progress to Level 3, they dive deeper into the specific muscles within these groups, such as the vastus medialis, rectus femoris, and biceps femoris. With continued study and hands-on experience, trainers may learn of even more variations in anatomy, like the occasional presence of a fifth quadricep muscle, like the tensor vastus intermedius, highlighting that anatomy is rarely as fixed or straightforward as it may first appear.\n\nThese discoveries can cause some trainers to doubt their understanding. They might worry they don’t know enough or fear they’ll harm their clients due to gaps in their knowledge. But this is precisely where deeper learning and coaching support become crucial. Programmes like a Diploma in Biomechanics Coaching help restore confidence by shifting the focus from trying to name every muscle to understanding the actual movements clients perform, and how to support those movements effectively.\n<h2>From Muscles to Movement</h2>\n<h3>Observing Movement, Not Just Muscles</h3>\nRather than fixating on identifying individual muscles during complex movement, it\'s often more beneficial to analyse joint actions and overall movement quality. In fact, even if we knew the exact muscle responsible for a specific movement anomaly, it wouldn’t necessarily change our intervention. What matters more is whether the movement is efficient, safe, and aligned with the client’s goals.\n\nBy observing how joints move, how muscles coordinate, and where compensations arise, personal trainers can make more meaningful and practical decisions during training sessions. This movement-based approach not only leads to better outcomes but also encourages a more intuitive understanding of anatomy, one that grows through observation, movement improvement, and reflection rather than rote memorisation.\n<h2>Major Muscle Groups and Their Functional Role</h2>\n<h3>Understanding How Muscle Groups Drive Movement and Performance</h3>\nTo effectively coach movement and design smart training programmes, personal trainers must be fluent in how different muscles function. In the upper body, the pectorals are primarily responsible for pushing movements, such as those in a bench press or push-up, involving shoulder flexion, adduction, and internal rotation. The deltoids are involved in most arm movements, particularly overhead presses and lateral raises, contributing to abduction, flexion, and extension.\n\nPulling movements such as rows and pull-ups rely heavily on the latissimus dorsi, which assists in shoulder adduction and internal rotation. Meanwhile, the trapezius and rhomboids stabilise the upper back and scapula, offering good form and upper body positioning. The biceps and triceps, of course, are essential for elbow flexion and extension, playing key roles in both pushing and pulling actions.\n\nIn the core, the rectus abdominis supports trunk flexion and, more importantly, stabilisation through co-contraction with the thoracolumbar fascia. The obliques manage rotation and lateral flexion, but they also help resist undesired movement, making them vital in maintaining core control. At the deepest level, the transverse abdominis wraps around the waist like a corset, helping to stabilise the spine and pelvis during movement.\n\nThe lower body contains some of the most powerful and functional muscle groups. The quadriceps drive knee extension in exercises such as squats and lunges, while the hamstrings manage both knee flexion and hip extension, contributing significantly to movements like deadlifts and sprinting. Interestingly, the adductor magnus often acts like a “fourth hamstring” due to its role in similar movement patterns. The gluteus maximus is one of the most important muscles for hip extension and explosive force, supported by the gluteus medius and minimus, which manage abduction and hip stability. Finally, the calves, particularly the gastrocnemius and soleus, are responsible for plantar flexion, enabling propulsion during walking, running, and jumping.\n<h2>Building Smarter Programmes Through Movement Fundamentals</h2>\n<h2><span style=\"font-size: 24px; letter-spacing: -0.02em;\">Assessing Movement with Purpose</span></h2>\nAn effective training programme goes far beyond simply targeting specific muscles. Personal trainers must evaluate movement quality using objective benchmarks, identifying imbalances, limitations, and compensatory patterns that may affect performance or increase injury risk. This might involve using movement screens or assessment tools that highlight where a client may lack mobility, stability, or strength.\n\nPreparation is key. Before progressing to complex movements, trainers can use isolated exercises and techniques such as muscle energy techniques (METs), joint mobilisation, and nerve mobilisation to improve movement quality. These preparatory steps lay the foundation for more integrated, functional training later on.\n\nEqually important is antagonist conditioning, training opposing muscle groups to ensure joint stability and balanced strength development. For example, strengthening the hamstrings and glutes alongside the quadriceps helps maintain proper knee health. As clients progress, trainers should shift towards integrated, multi-joint, and multi-plane movements that reflect real-life demands and support the specific goals of the individual.\n\nThis pyramid approach to programming, starting with assessment and isolation, progressing through preparation and integration, ensures a comprehensive, client-centred path to performance and resilience.\n\n<img class=\"size-full wp-image-43027 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2025/04/System-of-Exercise-Biomechanics-Education-2025.jpg\" alt=\"\" width=\"1200\" height=\"848\" />\n\n&nbsp;\n<h2>Final Thoughts</h2>\n<h3>Anatomy as a Lifelong Learning Journey</h3>\nAnatomy isn’t just a topic to tick off during your qualifications, it’s the foundation of everything you do as a Personal Trainer. From designing effective programmes and preventing injury to understanding the subtleties of human movement, anatomical knowledge enables you to coach with precision and purpose.\n\nAs your experience grows, so too will your understanding. Don’t be discouraged by the complexity or the occasional uncertainty. Embrace it as part of the layered learning process. Focus on movement, stay curious, and keep expanding your skills through education and practice.\n\nIf you’re looking to enhance your understanding further, consider pursuing advanced courses in biomechanics, anatomy, and injury prevention. The more you know, the more confidently you’ll be able to help your clients move, perform, and live better.\n\nFor more tips and in-depth training insights, follow our blog and join our growing community of fitness professionals committed to lifelong learning and client success.\n\n&nbsp;','Anatomy for Personal Trainers: What Every PT Should Know','','inherit','closed','closed','','42986-autosave-v1','','','2025-06-04 08:51:21','2025-06-04 08:51:21','',42986,'https://biomechanicseducation.com/?p=43305',0,'revision','',0),(43306,18,'2025-06-04 08:51:43','2025-06-04 08:51:43','<h2 data-start=\"264\" data-end=\"548\">Anatomy for Personal Trainers: What Every PT Should Know</h2>\r\n<p class=\"\" data-start=\"264\" data-end=\"548\">Understanding anatomy is a fundamental part of becoming a competent and confident Personal Trainer. Not only does it support the design of more effective workout programmes, but it also helps you identify movement limitations, improve client performance, and reduce the risk of injuries. Whether you\'re starting out or levelling up, this guide explores the key anatomical knowledge that every PT needs to grasp and how to apply it practically in your client sessions.</p>\r\n\r\n<h2>The Importance of Anatomical Knowledge</h2>\r\n<h3>Why Textbook Anatomy Isn’t Always Enough</h3>\r\nWhen personal trainers study anatomy, they gain far more than theoretical insight. They learn to identify and explain the body’s structural organisation, understand how various systems interact, and most importantly, apply this understanding in practical, real-world settings. However, the learning curve can feel steep at first. It\'s one thing to memorise diagrams of skeletons and textbook muscle maps, but another thing entirely to interpret how this knowledge applies to a diverse range of clients, each with unique anatomical variations.\r\n\r\nThis is where the concept of layered learning becomes so important. At Level 2, anatomy education focuses on broader muscle groups, such as the quadriceps and hamstrings. As trainers progress to Level 3, they dive deeper into the specific muscles within these groups, such as the vastus medialis, rectus femoris, and biceps femoris. With continued study and hands-on experience, trainers may learn of even more variations in anatomy, like the occasional presence of a fifth quadricep muscle, like the tensor vastus intermedius, highlighting that anatomy is rarely as fixed or straightforward as it may first appear.\r\n\r\nThese discoveries can cause some trainers to doubt their understanding. They might worry they don’t know enough or fear they’ll harm their clients due to gaps in their knowledge. But this is precisely where deeper learning and coaching support become crucial. Programmes like a Diploma in Biomechanics Coaching help restore confidence by shifting the focus from trying to name every muscle to understanding the actual movements clients perform, and how to support those movements effectively.\r\n<h2>From Muscles to Movement</h2>\r\n<h3>Observing Movement, Not Just Muscles</h3>\r\nRather than fixating on identifying individual muscles during complex movement, it\'s often more beneficial to analyse joint actions and overall movement quality. In fact, even if we knew the exact muscle responsible for a specific movement anomaly, it wouldn’t necessarily change our intervention. What matters more is whether the movement is efficient, safe, and aligned with the client’s goals.\r\n\r\nBy observing how joints move, how muscles coordinate, and where compensations arise, personal trainers can make more meaningful and practical decisions during training sessions. This movement-based approach not only leads to better outcomes but also encourages a more intuitive understanding of anatomy, one that grows through observation, movement improvement, and reflection rather than rote memorisation.\r\n<h2>Major Muscle Groups and Their Functional Role</h2>\r\n<h3>Understanding How Muscle Groups Drive Movement and Performance</h3>\r\nTo effectively coach movement and design smart training programmes, personal trainers must be fluent in how different muscles function. In the upper body, the pectorals are primarily responsible for pushing movements, such as those in a bench press or push-up, involving shoulder flexion, adduction, and internal rotation. The deltoids are involved in most arm movements, particularly overhead presses and lateral raises, contributing to abduction, flexion, and extension.\r\n\r\nPulling movements such as rows and pull-ups rely heavily on the latissimus dorsi, which assists in shoulder adduction and internal rotation. Meanwhile, the trapezius and rhomboids stabilise the upper back and scapula, offering good form and upper body positioning. The biceps and triceps, of course, are essential for elbow flexion and extension, playing key roles in both pushing and pulling actions.\r\n\r\nIn the core, the rectus abdominis supports trunk flexion and, more importantly, stabilisation through co-contraction with the thoracolumbar fascia. The obliques manage rotation and lateral flexion, but they also help resist undesired movement, making them vital in maintaining core control. At the deepest level, the transverse abdominis wraps around the waist like a corset, helping to stabilise the spine and pelvis during movement.\r\n\r\nThe lower body contains some of the most powerful and functional muscle groups. The quadriceps drive knee extension in exercises such as squats and lunges, while the hamstrings manage both knee flexion and hip extension, contributing significantly to movements like deadlifts and sprinting. Interestingly, the adductor magnus often acts like a “fourth hamstring” due to its role in similar movement patterns. The gluteus maximus is one of the most important muscles for hip extension and explosive force, supported by the gluteus medius and minimus, which manage abduction and hip stability. Finally, the calves, particularly the gastrocnemius and soleus, are responsible for plantar flexion, enabling propulsion during walking, running, and jumping.\r\n<h2>Building Smarter Programmes Through Movement Fundamentals</h2>\r\n<h2><span style=\"font-size: 24px; letter-spacing: -0.02em;\">Assessing Movement with Purpose</span></h2>\r\nAn effective training programme goes far beyond simply targeting specific muscles. Personal trainers must evaluate movement quality using objective benchmarks, identifying imbalances, limitations, and compensatory movements that may affect performance or increase injury risk.\r\n\r\nThis might involve using movement screens or assessment tools that highlight where a client may lack movement quality, stability, or strength.\r\n\r\nPreparation is key. Before progressing to complex movements, trainers can use isolated exercises and techniques such as muscle energy techniques (METs), joint mobilisation, and nerve mobilisation to improve movement quality. These preparatory steps lay the foundation for more integrated, functional training later on.\r\n\r\nEqually important is antagonist conditioning, training opposing muscle groups to ensure joint stability and balanced strength development. For example, strengthening the hamstrings and glutes alongside the quadriceps helps maintain knee health. As clients progress, trainers should shift towards integrated, multi-joint, and multi-plane movements that reflect real-life demands and support the specific goals of the individual.\r\n\r\nThis pyramid approach to programming, starting with assessment and isolation, progressing through preparation and integration, ensures a comprehensive, client-centred path to performance and resilience.\r\n\r\n<img class=\"size-full wp-image-43027 aligncenter\" src=\"https://biomechanicseducation.com/wp-content/uploads/2025/04/System-of-Exercise-Biomechanics-Education-2025.jpg\" alt=\"\" width=\"1200\" height=\"848\" />\r\n\r\n&nbsp;\r\n<h2>Final Thoughts</h2>\r\n<h3>Anatomy as a Lifelong Learning Journey</h3>\r\nAnatomy isn’t just a topic to tick off during your qualifications, it’s the foundation of everything you do as a Personal Trainer. From designing effective programmes and reducing risk of injury to understanding the subtleties of human movement, anatomical knowledge enables you to coach with precision and purpose.\r\n\r\nAs your experience grows, so too will your understanding. Don’t be discouraged by the complexity or the occasional uncertainty. Embrace it as part of the layered learning process. Focus on movement, stay curious, and keep expanding your skills through education and practice.\r\n\r\nIf you’re looking to enhance your understanding further, consider pursuing advanced courses in biomechanics, anatomy, and risk reduction. The more you know, the more confidently you’ll be able to help your clients move, perform, and live better.\r\n\r\nFor more tips and in-depth training insights, follow our blog and join our growing community of fitness professionals committed to lifelong learning and client success.\r\n\r\n&nbsp;','Anatomy for Personal Trainers: What Every PT Should Know','','inherit','closed','closed','','42986-revision-v1','','','2025-06-04 08:51:43','2025-06-04 08:51:43','',42986,'https://biomechanicseducation.com/?p=43306',0,'revision','',0),(43307,18,'2025-06-04 09:04:53','2025-06-04 09:04:53','<h2>Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes</h2>\nWhen we hear the word biomechanics, it often conjures images of elite athletes perfecting their movement to gain a competitive edge. While biomechanics is undoubtedly a cornerstone of sports science, its true value extends far beyond the pitch or gym. In fact, intrinsic biomechanics plays a vital role in everyday life, impacting how we move, how we feel, and how well we age.\n<h3>What Is Intrinsic Biomechanics?</h3>\nAt its core, intrinsic biomechanics refers to the internal mechanics of movement, how the body’s bones, joints, muscles, ligaments, and connective tissues work together under the influence of gravity and physical forces. While commonly associated with athletic performance, the same biomechanical principles apply to everyday actions like walking, lifting, and even sitting at a desk. Whether you\'re an office worker, parent, or retiree, understanding and applying intrinsic biomechanics can dramatically improve your quality of life.\n<h3>Biomechanics in Daily Life: Movement that Matters</h3>\n<h4>Walking and Everyday Motion</h4>\nTake walking, for instance. It may seem like a basic action, but it\'s biomechanically rich. If your pelvis lacks mobility or your feet don’t function optimally, the body begins to compensate elsewhere, leading to inefficient movement, fatigue, or even injury over time.\n<h4>Lifting, Carrying and Load Management</h4>\nLifting a child or carrying shopping bags becomes more about coordination than brute strength. A well-integrated system of joints and muscles makes these daily movements safer and easier, while poor biomechanics places unnecessary strain on the back and shoulders.\n<h4>Posture and Static Positions</h4>\nEven the way we sit or stand can have profound implications. Hours spent in static postures, without movement variety, can reduce joint health, weaken trunk muscles, and encourage dysfunction that could eventually lead to problems. Intrinsic biomechanics reminds us that the body craves movement and thrives on variety.\n<h4>Household Tasks and Unconscious Patterns</h4>\nEveryday tasks like gardening, cleaning, or even hoovering all draw upon the same principles. Using both sides of the body, bending at the hips rather than the spine, and engaging the trunk muscles all help reduce stress on your joints. When you apply biomechanical awareness to these seemingly mundane tasks, you protect your body and keep it functioning efficiently.\n<h3>Long-Term Benefits of Good Biomechanics</h3>\nThis efficiency brings more than just physical ease, it supports your long-term health. Moving well reduces the wear and tear on your joints and soft tissues, conserving energy and lowering your risk of injury. It helps you maintain mobility into later life, potentially slowing down the natural ageing process that leads to joint stiffness and muscular imbalance. Strong trunk muscles and a mobile spine form the foundation for stable, coordinated movement, helping to prevent overuse patterns and the symptoms they cause.\n<h3>Simple Ways to Improve Biomechanics</h3>\nImproving your intrinsic biomechanics doesn’t require extreme changes or athletic ability. It starts with being more aware, changing position continuously throughout the day, incorporating regular movement, and strengthening your body.\n<h4>Practical Tips for Daily Improvement</h4>\n<strong>Be mindful of postural variety:</strong> Adjust your seated or standing posture regularly.\n\n<strong>Strengthen your trunk:</strong> A mobile yet strong trunk stabilises the body and reduces strain.\n\n<strong>Stay active:</strong> Include strength, mobility, and flexibility exercises in your routine.\n<h3>Why It Matters—for Everyone</h3>\nUltimately, intrinsic biomechanics is not just a scientific concept for professionals—it’s a practical toolkit for anyone who wants to move better and live longer, healthier, and more independently. For coaches and personal trainers, this understanding offers a real edge: the ability to help clients not just train harder, but train smarter. It means guiding them toward pain-free movement, preventing recurring issues, and improving how they feel in their body every single day.\n\nIf you’re passionate about helping others move well and stay well, consider deepening your knowledge through biomechanics coaching. It’s not just a skill—it’s a service that supports lifelong well-being.','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes','','inherit','closed','closed','','43019-autosave-v1','','','2025-06-04 09:04:53','2025-06-04 09:04:53','',43019,'https://biomechanicseducation.com/?p=43307',0,'revision','',0),(43308,18,'2025-06-04 09:05:38','2025-06-04 09:05:38','<h2>Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes</h2>\r\nWhen we hear the word biomechanics, it often conjures images of elite athletes perfecting their movement to gain a competitive edge. While biomechanics is undoubtedly a cornerstone of sports science, its true value extends far beyond the pitch or gym. In fact, intrinsic biomechanics plays a vital role in everyday life, impacting how we move, how we feel, and how well we age.\r\n<h3>What Is Intrinsic Biomechanics?</h3>\r\nAt its core, intrinsic biomechanics refers to the internal mechanics of movement, how the body’s bones, joints, muscles, ligaments, and connective tissues work together under the influence of gravity and physical forces. While commonly associated with athletic performance, the same biomechanical principles apply to everyday actions like walking, lifting, and even sitting at a desk. Whether you\'re an office worker, parent, or retiree, understanding and applying intrinsic biomechanics can dramatically improve your quality of life.\r\n<h3>Biomechanics in Daily Life: Movement that Matters</h3>\r\n<h4>Walking and Everyday Motion</h4>\r\nTake walking, for instance. It may seem like a basic action, but it\'s biomechanically rich. If your pelvis lacks mobility or your feet don’t function optimally, the body begins to compensate elsewhere, leading to inefficient movement, fatigue, or even injury over time.\r\n<h4>Lifting, Carrying and Load Management</h4>\r\nLifting a child or carrying shopping bags becomes more about coordination than brute strength. A well-integrated system of joints and muscles makes these daily movements safer and easier, while poor biomechanics places unnecessary strain on the back and shoulders.\r\n<h4>Posture and Static Positions</h4>\r\nEven the way we sit or stand can have profound implications. Hours spent in static postures, without movement variety, can reduce joint health, weaken trunk muscles, and encourage dysfunction that could eventually lead to problems. Intrinsic biomechanics reminds us that the body craves movement and thrives on variety.\r\n<h4>Household Tasks and Unconscious Patterns</h4>\r\nEveryday tasks like gardening, cleaning, or even hoovering all draw upon the same principles. Using both sides of the body, bending at the hips rather than the spine, and engaging the trunk muscles all help reduce stress on your joints. When you apply biomechanical awareness to these seemingly mundane tasks, you protect your body and keep it functioning efficiently.\r\n<h3>Long-Term Benefits of Good Biomechanics</h3>\r\nThis efficiency brings more than just physical ease, it supports your long-term health. Moving well reduces the wear and tear on your joints and soft tissues, conserving energy and lowering your risk of injury. It helps you maintain mobility into later life, potentially slowing down the natural ageing process that leads to joint stiffness and muscular imbalance. Strong trunk muscles and a mobile spine form the foundation for stable, coordinated movement, helping to prevent overuse patterns and the symptoms they cause.\r\n<h3>Simple Ways to Improve Biomechanics</h3>\r\nImproving your intrinsic biomechanics doesn’t require extreme changes or athletic ability. It starts with being more aware, changing position continuously throughout the day, incorporating regular movement, and strengthening your body.\r\n<h4>Practical Tips for Daily Improvement</h4>\r\n<strong>Be mindful of postural variety:</strong> Adjust your seated or standing posture regularly.\r\n\r\n<strong>Strengthen your trunk:</strong> A mobile yet strong trunk stabilises the body and reduces strain.\r\n\r\n<strong>Stay active:</strong> Include strength, mobility, and flexibility exercises in your routine.\r\n<h3>Why It Matters, for Everyone</h3>\r\nUltimately, intrinsic biomechanics is not just a scientific concept for professionals, it’s a practical toolkit for anyone who wants to move better and live longer, healthier, and more independently. For coaches and personal trainers, this understanding offers a real edge: the ability to help clients not just train harder, but train smarter. It means guiding them toward pain-free movement, preventing recurring issues, and improving how they feel in their body every single day.\r\n\r\nIf you’re passionate about helping others move well and stay well, consider deepening your knowledge through biomechanics coaching. It’s not just a skill, it’s a service that supports lifelong well-being.','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes','','inherit','closed','closed','','43019-revision-v1','','','2025-06-04 09:05:38','2025-06-04 09:05:38','',43019,'https://biomechanicseducation.com/?p=43308',0,'revision','',0),(43309,18,'2025-06-04 09:19:00','2025-06-04 09:19:00','<h2>The Link Between Movement Biomechanics and Risk Reduction</h2>\nUnderstanding how the body moves is one of the most powerful ways to reduce injury risk and enhance movement quality. Whether someone is an athlete or simply wants to stay active and pain-free, intrinsic biomechanics offers a framework to improve performance, reduce strain, and support the body’s natural movement quality.\n\nBy analysing how joints, muscles, and tissues interact during movement, we can identify hidden dysfunctions and apply strategies that not only help reduce risk of injuries but improve overall movement efficiency.\n<h3>What Is Intrinsic Biomechanics and Why Does It Matter?</h3>\nIntrinsic biomechanics is the science of how the body moves, focusing on the interplay between muscles, bones, tendons, and ligaments. It combines elements of physiotherapy and biology to understand the mechanics of movement and how to optimise it.\n\nWhen applied correctly, intrinsic biomechanics helps to:\n<ul>\n 	<li>Reduce unnecessary stress on joints and tissues</li>\n 	<li>Improve coordination and movement efficiency</li>\n 	<li>Address compensations before they lead to injury</li>\n 	<li>Enhance performance across all activity levels</li>\n</ul>\nThis approach isn’t just for athletes. It benefits anyone who moves, which means everyone.\n\n&nbsp;\n<h3>Biomechanical Dysfunction and Its Impact on the Body</h3>\nWhen the body adapts, it can lead to compensations and dysfunction through the body. Over time, these changes may increase the load on specific joints or tissues, leading to pain or injury.\n\nTake overpronation during running, for example. Late supination and loose foot or ankle joints can lead to excess stress on the knees or shins, often resulting in issues like shin splints or plantar fasciitis. Or consider someone who spends long hours sitting at a desk. Static postures can contribute to ligament stiffness, nerve inhibition, and reduced blood flow, factors that eventually impact how we move and feel.\n\nEven repetitive tasks, like swinging a golf club or using one hand to operate machinery, can place excessive strain on specific body parts if left unchecked. Recognising and addressing these issues early through intrinsic biomechanical analysis is key.\n<h3>How Intrinsic Biomechanics Helps Prevent Injury</h3>\nImproving movement isn’t about guesswork. Intrinsic biomechanics gives us a way to systematically assess and improve how the body functions.\n<h4>Identifying Risk Before It Becomes a Problem</h4>\nBy carrying out simple assessments, using just a massage table, trainers and coaches can evaluate each joint and soft tissue structure. These assessments reveal movement limitations, restrictions, and compensations that could increase risk.\n<h4>Improving How the Body Uses Energy</h4>\nBetter movement doesn’t just reduce strain, it also enhances energy efficiency. When muscles and joints are moving the way they’re designed to, there’s less wasted effort. Whether someone wants to run faster or just get through the day without fatigue, improving intrinsic biomechanics helps them get more from every step.\n<h4>Promoting Joint Stability and Movement Quality</h4>\nStability is about more than strength. It starts with good function. When the underlying mechanics are working well, the body becomes more stable, reducing the chances of overuse injuries. Addressing movement quality at its root lays a strong foundation for future training or physical goals.\n<h3>Applying Biomechanics in Everyday Coaching</h3>\nSo how can coaches and professionals start applying intrinsic biomechanics with their clients?\n\nBook or Offer a Biomechanical Assessment: Movement screenings provide essential information about how a client moves and where their risks lie. Coaches trained in intrinsic biomechanics can integrate these insights into personalised programmes.\n\nFocus on Force Production, Not Just Alignment: Intrinsic Biomechanics teaches us that movement happens in all planes, not just straight lines. Helping clients learn how to manage force production effectively is more beneficial than chasing textbook alignment in every exercise.\n\nStrengthen Stabilising Muscles: Once movement function is optimised, strengthening stabilisers helps to maintain improvements and prevent regressions.\n\nAdd Movement Moments Into the Day: Encourage clients to find opportunities to move, whether it’s a few pelvic M.E.Ts between meetings or some spinal mobility work before bed. These small changes build long-term habits.\n\nListen to What the Body Is Saying: Pain, discomfort, or recurring issues can indicate to underlying dysfunction. Working alongside physiotherapists or regulated professionals when needed ensures both the trainer and client stay safe while progressing.\n<h3>Why It All Matters</h3>\nIntrinsic biomechanics is not just about preventing injury. It’s about helping people move better and feel better. For some, that might mean running faster or lifting heavier. For others, it could mean getting through the day without back pain.\n\nWhen coaches and trainers understand how to assess and address the root of movement dysfunctions, they’re able to deliver better results and long-term improvements. This knowledge adds value to every session and builds trust with clients who want to move with confidence.\n\nIf you\'re ready to take your coaching to the next level, becoming a Biomechanics Coach can help you bridge the gap between movement science and practical training. By applying intrinsic biomechanics, you give your clients the opportunity to stay active, injury-free, and performing at their best, no matter their goals.\n\n&nbsp;','The Link Between Movement Biomechanics and Risk Reduction','','inherit','closed','closed','','43066-autosave-v1','','','2025-06-04 09:19:00','2025-06-04 09:19:00','',43066,'https://biomechanicseducation.com/?p=43309',0,'revision','',0),(43310,18,'2025-06-04 09:20:03','2025-06-04 09:20:03','<h2>The Link Between Movement Biomechanics and Risk Reduction</h2>\r\nUnderstanding how the body moves is one of the most powerful ways to reduce injury risk and enhance movement quality. Whether someone is an athlete or simply wants to stay active and pain-free, intrinsic biomechanics offers a framework to improve performance, reduce strain, and support the body’s natural movement quality.\r\n\r\nBy analysing how joints, muscles, and tissues interact during movement, we can identify hidden dysfunctions and apply strategies that not only help reduce risk of injuries but improve overall movement efficiency.\r\n<h3>What Is Intrinsic Biomechanics and Why Does It Matter?</h3>\r\nIntrinsic biomechanics is the science of how the body moves, focusing on the interplay between muscles, bones, tendons, and ligaments. It combines elements of physiotherapy and biology to understand the mechanics of movement and how to optimise it.\r\n\r\nWhen applied correctly, intrinsic biomechanics helps to:\r\n<ul>\r\n 	<li>Reduce unnecessary stress on joints and tissues</li>\r\n 	<li>Improve coordination and movement efficiency</li>\r\n 	<li>Address compensations before they lead to injury</li>\r\n 	<li>Enhance performance across all activity levels</li>\r\n</ul>\r\nThis approach isn’t just for athletes. It benefits anyone who moves, which means everyone.\r\n<h3>Biomechanical Dysfunction and Its Impact on the Body</h3>\r\nWhen the body adapts, it can lead to compensations and dysfunction through the body. Over time, these changes may increase the load on specific joints or tissues, leading to pain or injury.\r\n\r\nTake overpronation during running, for example. Late supination and loose foot or ankle joints can lead to excess stress on the knees or shins, often resulting in issues like shin splints or plantar fasciitis. Or consider someone who spends long hours sitting at a desk. Static postures can contribute to ligament stiffness, nerve inhibition, and reduced blood flow, factors that eventually impact how we move and feel.\r\n\r\nEven repetitive tasks, like swinging a golf club or using one hand to operate machinery, can place excessive strain on specific body parts if left unchecked. Recognising and addressing these issues early through intrinsic biomechanical analysis is key.\r\n<h3>How Intrinsic Biomechanics Helps Prevent Injury</h3>\r\nImproving movement isn’t about guesswork. Intrinsic biomechanics gives us a way to systematically assess and improve how the body functions.\r\n<h4>Identifying Risk Before It Becomes a Problem</h4>\r\nBy carrying out simple assessments, using just a massage table, trainers and coaches can evaluate each joint and soft tissue structure. These assessments reveal movement limitations, restrictions, and compensations that could increase risk.\r\n<h4>Improving How the Body Uses Energy</h4>\r\nBetter movement doesn’t just reduce strain, it also enhances energy efficiency. When muscles and joints are moving the way they’re designed to, there’s less wasted effort. Whether someone wants to run faster or just get through the day without fatigue, improving intrinsic biomechanics helps them get more from every step.\r\n<h4>Promoting Joint Stability and Movement Quality</h4>\r\nStability is about more than strength. It starts with good function. When the underlying mechanics are working well, the body becomes more stable, reducing the chances of overuse injuries. Addressing movement quality at its root lays a strong foundation for future training or physical goals.\r\n<h3>Applying Biomechanics in Everyday Coaching</h3>\r\nSo how can coaches and professionals start applying intrinsic biomechanics with their clients?\r\n<ul>\r\n 	<li><strong>Book or Offer a Biomechanical Assessment:</strong> Movement screenings provide essential information about how a client moves and where their risks lie. Coaches trained in intrinsic biomechanics can integrate these insights into personalised programmes.</li>\r\n 	<li><strong>Focus on Force Production, Not Just Alignment:</strong> Intrinsic Biomechanics teaches us that movement happens in all planes, not just straight lines. Helping clients learn how to manage force production effectively is more beneficial than chasing textbook alignment in every exercise.</li>\r\n 	<li><strong>Strengthen Stabilising Muscles:</strong> Once movement function is optimised, strengthening stabilisers helps to maintain improvements and prevent regressions.</li>\r\n 	<li><strong>Add Movement Moments Into the Day:</strong> Encourage clients to find opportunities to move, whether it’s a few pelvic M.E.Ts between meetings or some spinal mobility work before bed. These small changes build long-term habits.</li>\r\n 	<li><strong>Listen to What the Body Is Saying:</strong> Pain, discomfort, or recurring issues can indicate to underlying dysfunction. Working alongside physiotherapists or regulated professionals when needed ensures both the trainer and client stay safe while progressing.</li>\r\n</ul>\r\n<h3>Why It All Matters</h3>\r\nIntrinsic biomechanics is not just about reducing risk. It’s about helping people move more freely. For some, that might mean running faster or lifting heavier. For others, it could mean getting through the day without back pain.\r\n\r\nWhen coaches and trainers understand how to assess and address the root of movement dysfunctions, they’re able to deliver better results and long-term improvements. This knowledge adds value to every session and builds trust with clients who want to move with confidence.\r\n\r\nIf you\'re ready to take your coaching to the next level, becoming a Biomechanics Coach can help you bridge the gap between movement science and practical training. By applying intrinsic biomechanics, you give your clients the opportunity to stay active, injury-free, and performing at their best, no matter their goals.\r\n\r\n&nbsp;','The Link Between Movement Biomechanics and Risk Reduction','','inherit','closed','closed','','43066-revision-v1','','','2025-06-04 09:20:03','2025-06-04 09:20:03','',43066,'https://biomechanicseducation.com/?p=43310',0,'revision','',0),(43311,18,'2025-06-04 09:33:10','2025-06-04 09:33:10','<h2>The Role of Joint Health in Reducing Common Injuries</h2>\nWhen we think about fitness and performance, strength, flexibility, and endurance often steal the spotlight. But behind every squat, sprint, or stretch is a key player that often goes unnoticed, joint health. Your joints are the hinges of movement. They allow you to bend, twist, reach, and run, all while absorbing stress and helping your body stay aligned and mobile. When joints are healthy, movement feels fluid and pain-free. But when joint care is neglected, it can lead to stiffness, chronic discomfort, and an increased risk of injury.\n\nUnderstanding the role joints play in risk reduction and overall function is crucial, not only for athletes but for anyone who wants to move well and stay active long-term.\n<h3>Why Joint Health Is So Important</h3>\nEvery time your client moves, whether lifting a barbell, holding a yoga pose, or going for a jog, their joints are doing a lot of heavy lifting, literally. They carry load, absorb impact, and enable directional change. Over time, if they’re not properly supported, they can become stiff, inflamed, or misaligned. This is when problems like tendonitis, ligament sprains, cartilage degeneration, or even dislocations can arise.\n\nSmall signs like reduced range of motion, discomfort during specific exercises, or slow recovery can often point to underlying joint health issues. Rather than waiting for pain to appear, focusing on joint care proactively can lead to better performance and fewer setbacks down the line.\n<h3>Laying the Foundation With Better Movement</h3>\nOne of the most effective ways to protect joint health is to improve how the body moves overall. That means starting with intrinsic preparation, the kind of work that addresses limitations caused by lifestyle factors or muscle imbalances before strength training even begins. Incorporating movement quality-focused warmups, muscle function improvement drills, and pure joint mobility techniques can help restore full-body movement capacity. These elements not only help joints move more freely but also ensure that no single joint is overcompensating for another.\n<h3>Balanced Strength Around the Joints</h3>\nMuscular strength is essential, but what’s even more important is muscular balance. If one side of a joint is stronger than the other, say, stronger abductors to adductors, it can cause the joint to track improperly, placing strain on ligaments and tendons. Addressing this means strengthening not just the primary movers, but also the antagonists, fixators, and dynamic stabilisers.\n\nWorking the hips through all ranges, engaging the core to support spinal alignment, and building rotational stability in the shoulders are all examples of smart training that leads to healthy, resilient joints. By developing strength on both sides of a joint, you build symmetry, which is key to joint control and risk reduction.\n<h3>Recovery, Hydration, and Nutrition</h3>\nJoints don’t just rely on movement, they rely on recovery. Without it, micro-stresses can accumulate, leading to wear and tear. Building in rest days, using low-impact activities like swimming or cycling, and incorporating programmes like iMoveFreely into your clients’ routines can all help maintain healthy movement without overloading the joints.\n\nHydration plays a critical role too. The cartilage inside your joints is like a sponge that relies on fluid to cushion impact. Staying well-hydrated helps that tissue stay supple. In addition, a diet rich in collagen, omega-3 fatty acids, protein, vitamin D, and calcium supports the repair and integrity of connective tissue. Together, these factors create a strong internal environment where joints can function optimally.\n<h3>Don’t Forget the Feet</h3>\nIt’s easy to overlook how much our feet influence the rest of our movement, but they play a major role in joint health. Poor foot function, incorrect footwear, or a lack of arch support can cause compensations that travel all the way up to the knees, hips, and even shoulders. Investing in appropriate footwear based on foot type and activity, and checking in with a foot specialist recommended by a Biomechanics Coach, can go a long way in protecting joint integrity during daily life and training.\n<h3>Long-Term Impact of Joint-Focused Training</h3>\nWhen clients build their training around joint health, they don’t just avoid injuries, they build resilience. With stable, mobile, and well-supported joints, movement becomes easier and more efficient. Clients can lift heavier, run further, and recover faster. More importantly, they can continue progressing without hitting the physical plateaus that often come from joint-related limitations.\n<h4>Final Thoughts</h4>\nJoint health is a key pillar in long-term fitness success. It’s what allows your clients to move without discomfort, train consistently, and avoid the frustrating cycle of injury and rest. By focusing on intrinsic preparation, balanced strength, recovery, and smart movement, you’re not just improving how your clients perform—you’re investing in how well they’ll move for years to come.\n\nWhether they’re an athlete, a weekend warrior, or just starting out, making joint care a central part of their fitness journey can make all the difference in helping them stay strong, injury-free, and moving well into the future','The Role of Joint Health in Preventing Common Fitness Injuries','','inherit','closed','closed','','43069-autosave-v1','','','2025-06-04 09:33:10','2025-06-04 09:33:10','',43069,'https://biomechanicseducation.com/?p=43311',0,'revision','',0),(43312,18,'2025-06-04 09:34:13','2025-06-04 09:34:13','<h2>The Role of Joint Health in Reducing Common Injuries</h2>\r\nWhen we think about fitness and performance, strength, flexibility, and endurance often steal the spotlight. But behind every squat, sprint, or stretch is a key player that often goes unnoticed, joint health. Your joints are the hinges of movement. They allow you to bend, twist, reach, and run, all while absorbing stress and helping your body stay aligned and mobile. When joints are healthy, movement feels fluid and pain-free. But when joint care is neglected, it can lead to stiffness, chronic discomfort, and an increased risk of injury.\r\n\r\nUnderstanding the role joints play in risk reduction and overall function is crucial, not only for athletes but for anyone who wants to move well and stay active long-term.\r\n<h3>Why Joint Health Is So Important</h3>\r\nEvery time your client moves, whether lifting a barbell, holding a yoga pose, or going for a jog, their joints are doing a lot of heavy lifting, literally. They carry load, absorb impact, and enable directional change. Over time, if they’re not properly supported, they can become stiff, inflamed, or misaligned. This is when problems like tendonitis, ligament sprains, cartilage degeneration, or even dislocations can arise.\r\n\r\nSmall signs like reduced range of motion, discomfort during specific exercises, or slow recovery can often point to underlying joint health issues. Rather than waiting for pain to appear, focusing on joint care proactively can lead to better performance and fewer setbacks down the line.\r\n<h3>Laying the Foundation With Better Movement</h3>\r\nOne of the most effective ways to protect joint health is to improve how the body moves overall. That means starting with intrinsic preparation, the kind of work that addresses limitations caused by lifestyle factors or muscle imbalances before strength training even begins. Incorporating movement quality-focused warmups, muscle function improvement drills, and pure joint mobility techniques can help restore full-body movement capacity. These elements not only help joints move more freely but also ensure that no single joint is overcompensating for another.\r\n<h3>Balanced Strength Around the Joints</h3>\r\nMuscular strength is essential, but what’s even more important is muscular balance. If one side of a joint is stronger than the other, say, stronger abductors to adductors, it can cause the joint to track improperly, placing strain on ligaments and tendons. Addressing this means strengthening not just the primary movers, but also the antagonists, fixators, and dynamic stabilisers.\r\n\r\nWorking the hips through all ranges, engaging the core to support spinal alignment, and building rotational stability in the shoulders are all examples of smart training that leads to healthy, resilient joints. By developing strength on both sides of a joint, you build symmetry, which is key to joint control and risk reduction.\r\n<h3>Recovery, Hydration, and Nutrition</h3>\r\nJoints don’t just rely on movement, they rely on recovery. Without it, micro-stresses can accumulate, leading to wear and tear. Building in rest days, using low-impact activities like swimming or cycling, and incorporating programmes like iMoveFreely into your clients’ routines can all help maintain healthy movement without overloading the joints.\r\n\r\nHydration plays a critical role too. The cartilage inside your joints is like a sponge that relies on fluid to cushion impact. Staying well-hydrated helps that tissue stay supple. In addition, a diet rich in collagen, omega-3 fatty acids, protein, vitamin D, and calcium supports the repair and integrity of connective tissue. Together, these factors create a strong internal environment where joints can function optimally.\r\n<h3>Don’t Forget the Feet</h3>\r\nIt’s easy to overlook how much our feet influence the rest of our movement, but they play a major role in joint health. Poor foot function, incorrect footwear, or a lack of arch support can cause compensations that travel all the way up to the knees, hips, and even shoulders. Investing in appropriate footwear based on foot type and activity, and checking in with a foot specialist recommended by a Biomechanics Coach, can go a long way in protecting joint integrity during daily life and training.\r\n<h3>Long-Term Impact of Joint-Focused Training</h3>\r\nWhen clients build their training around joint health, they don’t just avoid injuries, they build resilience. With stable, mobile, and well-supported joints, movement becomes easier and more efficient. Clients can lift heavier, run further, and recover faster. More importantly, they can continue progressing without hitting the physical plateaus that often come from joint-related limitations.\r\n<h4>Final Thoughts</h4>\r\nJoint health is a key pillar in long-term fitness success. It’s what allows your clients to move without discomfort, train consistently, and avoid the frustrating cycle of injury and rest. By focusing on intrinsic preparation, balanced strength, recovery, and smart movement, you’re not just improving how your clients perform, you’re investing in how well they’ll move for years to come.\r\n\r\nWhether they’re an athlete, a weekend warrior, or just starting out, making joint care a central part of their fitness journey can make all the difference in helping them stay strong, injury-free, and moving well into the future','The Role of Joint Health in Reducing Common Injuries','','inherit','closed','closed','','43069-revision-v1','','','2025-06-04 09:34:13','2025-06-04 09:34:13','',43069,'https://biomechanicseducation.com/?p=43312',0,'revision','',0),(43313,18,'2025-06-04 09:48:12','2025-06-04 09:48:12','<h2>The Science Behind Preparation Exercise: Understanding the Connection Between Movement and Symptoms</h2>\n&nbsp;\n\nPreparation exercise has gained increasing attention in the fitness, exercise, prehabilitation, and rehabilitation worlds, and for good reason. As chronic symptoms and movement dysfunctions become more common in active and sedentary populations alike, understanding how the body moves, and why it sometimes doesn’t, has become crucial. Preparation exercise isn’t just about warming up; it’s about preparing the body to move well and improving overall function.\n\nIn this blog, we’ll explore the science behind preparation exercise and dive into how intrinsic biomechanics and neuromuscular science help manage symptoms and support long-term movement health.\n<h3>Why Movement Matters: The Biomechanics of Dysfunction</h3>\nThe human body is designed to move in a coordinated, efficient way. But life doesn’t always allow for ideal movement. Long hours sitting at a desk, repetitive daily patterns, muscular imbalances, or previous injuries can create movement limitations and cause excessive stress on joints, ligaments, and muscles. These limitations can gradually lead to symptoms, often subtle at first, but potentially long-lasting.\n\nFor example, a sedentary lifestyle can reduce the variety of postures and positions our body experiences. Over time, this can create excessive loading in certain areas like the lower back. Nerve tension can further reduce muscular output and alter joint mobility, while poor load management decreases connective tissue resilience, affecting both performance and day-to-day function.\n<h3>Understanding Intrinsic Biomechanics</h3>\nIntrinsic biomechanics is the science of how our joints, muscles, and nervous system function at a foundational level. When this system is operating optimally, movement is smooth, balanced, and energy-efficient. But when there are disruptions, like stiff joints, inhibited muscles, or nerve tethering, the body compensates. This often results in uneven stress distribution, increased wear on certain tissues, and a greater risk of symptoms.\n\nBiomechanics Coaching focuses on restoring the body’s blueprint for natural movement. Preparation exercise plays a key role in this by improving joint mobility, reducing muscular tension, and enhancing nerve mobility to create an optimal internal environment for pain-free movement.\n<h3>Neuromuscular Science: Reprogramming Movement</h3>\nThe nervous system is the command centre for movement. It controls everything from muscle activation and balance to coordination and stability. If the nervous system detects instability, perhaps due to an old injury, it may limit movement in that area and create compensations elsewhere. These adaptations can eventually lead to discomfort and dysfunction.\n\nPreparation exercises are specifically designed to re-educate the nervous system. Through targeted drills, we can improve proprioception (the body’s sense of position), restore joint control, and encourage balanced muscle function.\n\nMuscle inhibition is one of the most common contributors to dysfunction. For instance, if the glutes become inhibited due to hip flexor dysfunction (possibly a result of prolonged sitting), other muscles compensate, placing excess strain on the lower back or knees. Similarly, poor control of the scapular muscles can increase the risk of shoulder discomfort. Preparation exercise aims to address these compensations by improving muscle function, restoring movement quality, and improving joint strength ratios.\n<h3>The Four Stages of Preparation Exercise</h3>\nPreparation exercise is most effective when approached systematically. The first step is a detailed assessment using biomechanics tools to identify dysfunction across joints, muscles, and nerves. This isn’t about guessing, it’s about gathering accurate information on where limitations or imbalances exist.\n\nNext comes preparation and capacity building. This phase includes techniques like muscle energy techniques (METs) to improve muscular activation, joint mobilisations to enhance flexibility, and nerve glides to restore mobility and reduce inhibition.\n\nThe third stage is stability and control. This includes core progressions and functional stability work to reinforce proper movement from the inside out. When the core is strong and reactive, the body moves with more confidence and efficiency.\n\nFinally, we integrate these improvements into real-world strength and performance. This stage uses neuromuscular re-education and activity-specific movement training to ensure changes in the gym translate to everyday life or sport.\n<h4>Conclusion: Movement Is Medicine</h4>\nSymptoms aren’t always a direct result of an injury, they can often be a sign that something within the movement system isn’t functioning as it should. Preparation exercise offers a scientifically supported, holistic way to address these root causes. By improving intrinsic biomechanics and retraining the nervous system, we can support our clients in moving better, performing better, and feeling better, without relying solely on passive treatment approaches.\n\nIf you’re a coach or trainer who wants to go beyond surface-level programming and start solving the deeper causes of movement dysfunction, consider becoming a qualified Biomechanics Coach. With the right knowledge, you can help your clients take control of their movement and their symptoms, one well-prepared session at a time.','The Science Behind Preparation Exercise: Understanding the Connection Between Movement and Symptoms','','inherit','closed','closed','','43073-autosave-v1','','','2025-06-04 09:48:12','2025-06-04 09:48:12','',43073,'https://biomechanicseducation.com/?p=43313',0,'revision','',0),(43314,18,'2025-06-04 09:49:18','2025-06-04 09:49:18','<h2>The Science Behind Preparation Exercise: Understanding the Connection Between Movement and Symptoms</h2>\r\n&nbsp;\r\n\r\nPreparation exercise has gained increasing attention in the fitness, exercise, prehabilitation, and rehabilitation worlds, and for good reason. As chronic symptoms and movement dysfunctions become more common in active and sedentary populations alike, understanding how the body moves, and why it sometimes doesn’t, has become crucial. Preparation exercise isn’t just about warming up; it’s about preparing the body to move well and improving overall function.\r\n\r\nIn this blog, we’ll explore the science behind preparation exercise and dive into how intrinsic biomechanics and neuromuscular science help manage symptoms and support long-term movement health.\r\n<h3>Why Movement Matters: The Biomechanics of Dysfunction</h3>\r\nThe human body is designed to move in a coordinated, efficient way. But life doesn’t always allow for ideal movement. Long hours sitting at a desk, repetitive daily patterns, muscular imbalances, or previous injuries can create movement limitations and cause excessive stress on joints, ligaments, and muscles. These limitations can gradually lead to symptoms, often subtle at first, but potentially long-lasting.\r\n\r\nFor example, a sedentary lifestyle can reduce the variety of postures and positions our body experiences. Over time, this can create excessive loading in certain areas like the lower back. Nerve tension can further reduce muscular output and alter joint mobility, while poor load management decreases connective tissue resilience, affecting both performance and day-to-day function.\r\n<h3>Understanding Intrinsic Biomechanics</h3>\r\nIntrinsic biomechanics is the science of how our joints, muscles, and nervous system function at a foundational level. When this system is operating optimally, movement is smooth, balanced, and energy-efficient. But when there are disruptions, like stiff joints, inhibited muscles, or nerve tethering, the body compensates. This often results in uneven stress distribution, increased wear on certain tissues, and a greater risk of symptoms.\r\n\r\nBiomechanics Coaching focuses on restoring the body’s blueprint for natural movement. Preparation exercise plays a key role in this by improving joint mobility, reducing muscular tension, and enhancing nerve mobility to create an optimal internal environment for pain-free movement.\r\n<h3>Neuromuscular Science: Reprogramming Movement</h3>\r\nThe nervous system is the command centre for movement. It controls everything from muscle activation and balance to coordination and stability. If the nervous system detects instability, perhaps due to an old injury, it may limit movement in that area and create compensations elsewhere. These adaptations can eventually lead to discomfort and dysfunction.\r\n\r\nPreparation exercises are specifically designed to re-educate the nervous system. Through targeted drills, we can improve proprioception (the body’s sense of position), restore joint control, and encourage balanced muscle function.\r\n\r\nMuscle inhibition is one of the most common contributors to dysfunction. For instance, if the glutes become inhibited due to hip flexor dysfunction (possibly a result of prolonged sitting), other muscles compensate, placing excess strain on the lower back or knees. Similarly, poor control of the scapular muscles can increase the risk of shoulder discomfort. Preparation exercise aims to address these compensations by improving muscle function, restoring movement quality, and improving joint strength ratios.\r\n<h3>The Four Stages of Preparation Exercise</h3>\r\nPreparation exercise is most effective when approached systematically. The first step is a detailed assessment understanding intrinsic biomechanics across joints, muscles, and nerves. This isn’t about guessing, it’s about gathering accurate information on where limitations or imbalances exist.\r\n\r\nNext comes preparation and capacity building. This phase includes techniques like muscle energy techniques (METs) to improve muscular function, joint mobilisations to enhance flexibility, and nerve glides to restore mobility and reduce inhibition.\r\n\r\nThe third stage is stability and control. This includes core progressions, core ratio improvement, and functional stability work to reinforce proper movement from the inside out. When the core is strong and reactive, the body moves with more confidence and efficiency.\r\n\r\nFinally, we integrate these improvements into real-world strength and performance. This stage uses neuromuscular re-education and activity-specific movement training to ensure changes in the gym translate to everyday life or sport.\r\n<h4>Conclusion: Movement Is Medicine</h4>\r\nSymptoms aren’t always a direct result of an injury, they can often be a sign that something within the movement system isn’t functioning as it should. Preparation exercise offers a scientifically supported, holistic way to address these root causes. By improving intrinsic biomechanics and retraining the nervous system, we can support our clients in moving more freely, performing better, and feeling better, without relying solely on passive treatment approaches.\r\n\r\nIf you’re a coach or trainer who wants to go beyond surface-level programming and start solving the deeper causes of movement dysfunction, consider becoming a certified Biomechanics Coach. With the right knowledge, you can help your clients take control of their movement and their symptoms, one well-prepared session at a time.','The Science Behind Preparation Exercise: Understanding the Connection Between Movement and Symptoms','','inherit','closed','closed','','43073-revision-v1','','','2025-06-04 09:49:18','2025-06-04 09:49:18','',43073,'https://biomechanicseducation.com/?p=43314',0,'revision','',0),(43315,18,'2025-06-04 09:56:50','2025-06-04 09:56:50','<h2>What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?</h2>\n<h3>Understanding Corrective Exercise</h3>\nIn today’s evolving fitness landscape, helping clients achieve long-term success means more than just prescribing squats and cardio. It’s about understanding how they move, identifying what might be holding them back, and addressing the root causes of dysfunction. That’s where preparation exercise, formerly known as corrective exercise, comes in.\n\nPreparation exercise refers to a specialised set of movements and techniques designed to improve movement quality. These exercises help address issues such as muscle inhibition, poor joint mobility, nerve tension, and imbalances, factors that influence how well someone moves, performs, and recovers.\n<h3>Why Language Matters</h3>\nAlthough “corrective” is the commonly used term, it can carry negative implications. Clients may assume something is wrong, leading to feelings of inadequacy or hesitation. That’s why professionals are shifting towards terms like movement optimisation, preparation exercise, or movement enhancement, language that empowers rather than discourages.\n<h3>The Role of Movement Assessments</h3>\nA successful movement optimisation programme begins with assessments. This foundational step helps identify dysfunctions such as stiff joints, tight nerves, or inhibited muscles.\n\nRather than focusing solely on symptoms, the aim is to uncover and address the root causes. These may include compensatory movements developed over time due to lifestyle habits, injury history, or imbalanced training.\n<h3>Building a Movement Improvement Programme</h3>\nOnce key limitations are identified, a tailored plan can be built around specific goals. This includes improving underactive muscles, restoring flexibility, unlocking joint mobility, and rebuilding strength. But it doesn’t stop there, clients must also integrate those improvements into real-world movement.\n<h3>From Isolation to Integration</h3>\nAs mobility and control are restored, clients are guided through exercises that reinforce improved movements. These help build confidence, improve proprioception, and ensure that progress is not just temporary but sustainable.\n<h3>Why Corrective (Preparation) Exercise Is Essential</h3>\n<h4>1. Reduces Injury Risk</h4>\nDysfunction in key areas like the pelvis, shoulders, and spine can lead to compensations, overuse issues, and eventually injury. Preparation exercises help rebalance and realign movement, reducing wear and tear on joints and tissues.\n<h4>2. Optimises Physical Performance</h4>\nWhether working with beginners or elite athletes, improved mobility, stability, and coordination mean more efficient movement and more effective training sessions. Preparation work supports power output, endurance, and recovery.\n<h4>3. Accelerates Recovery</h4>\nFor clients returning from injury or surgery, these techniques act as a bridge between rehabilitation and performance training. They restore muscular control and reduce the risk of re-injury by targeting the neuromuscular system.\n<h4>4. Improves Day-to-Day Function</h4>\nEfficient movement means clients expend less energy and experience less strain, whether they’re working out or going about their daily routines. The result? Less fatigue, fewer aches, and greater overall quality of life.\n<h3>Implementing Corrective Exercise as a Trainer</h3>\nFor exercise professionals, it all begins with a solid assessment process. Tools like Downing’s Sign or the 4 Sign Test can quickly identify movement inefficiencies. From there, a programme can be built with strategic preparation techniques, such as:\n<ul>\n 	<li>Muscle energy techniques to improve contractile function.</li>\n 	<li>Nerve mobilisation drills to reduce neural tension.</li>\n 	<li>Foam rolling and soft tissue work to decrease muscular tightness.</li>\n 	<li>Joint-specific mobility exercises to open restricted ranges.</li>\n 	<li>Trunk control exercises to improve core stiffness and stability.</li>\n</ul>\nThese methods can be incorporated into warm-ups, cool-downs, or even standalone movement improvement sessions depending on your client’s needs.\n<h4>Final Thoughts</h4>\nPreparation (or corrective) exercise isn’t about fixing problems, it’s about enhancing movement. It allows clients to train harder, recover faster, and move with more confidence. As a trainer or fitness professional, this knowledge sets you apart. When you address the root causes of dysfunction, you’re not just helping clients feel better, you’re building their long-term success.\n\nIf you’re ready to elevate your client outcomes and lead with a science-backed approach, start integrating preparation exercise into your programming today. Your clients will feel the difference, and so will you.','What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?','','inherit','closed','closed','','43081-autosave-v1','','','2025-06-04 09:56:50','2025-06-04 09:56:50','',43081,'https://biomechanicseducation.com/?p=43315',0,'revision','',0),(43316,18,'2025-06-04 09:58:59','2025-06-04 09:58:59','<h2>What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?</h2>\r\n<h3>Understanding Corrective Exercise</h3>\r\nIn today’s evolving fitness landscape, helping clients achieve long-term success means more than just prescribing squats and cardio. It’s about understanding how they move, identifying what might be holding them back, and addressing the root causes of dysfunction. That’s where preparation exercise, formerly known as corrective exercise, comes in.\r\n\r\nPreparation exercise refers to a specialised set of movements and techniques designed to improve movement quality. These exercises help address issues such as muscle inhibition, poor joint mobility, nerve tension, and imbalances, factors that influence how well someone moves, performs, and recovers.\r\n<h3>Why Language Matters</h3>\r\nAlthough “corrective” is the commonly used term, it can carry negative implications. Clients may assume something is wrong, leading to feelings of inadequacy or hesitation. That’s why professionals are shifting towards terms like movement optimisation, preparation exercise, or movement enhancement, language that empowers rather than discourages.\r\n<h3>The Role of Movement Assessments</h3>\r\nA successful movement optimisation programme begins with assessments. This foundational step helps identify dysfunctions such as stiff joints, tight nerves, or inhibited muscles.\r\n\r\nRather than focusing solely on symptoms, the aim is to uncover and address the root causes. These may include compensatory movements developed over time due to lifestyle habits, injury history, or imbalanced training.\r\n<h3>Building a Movement Improvement Programme</h3>\r\nOnce key limitations are identified, a tailored plan can be built around specific goals. This includes improving underactive muscles, restoring flexibility, unlocking joint mobility, and rebuilding strength. But it doesn’t stop there, clients must also integrate those improvements into real-world movement.\r\n<h3>From Isolation to Integration</h3>\r\nAs mobility and control are restored, clients are guided through exercises that reinforce improved movements. These help build confidence, improve proprioception, and ensure that progress is not just temporary but sustainable.\r\n<h3>Why Corrective (Preparation) Exercise Is Essential</h3>\r\n<h4>1. Reduces Injury Risk</h4>\r\nDysfunction in key areas like the pelvis, shoulders, and spine can lead to compensations, overuse issues, and eventually injury. Preparation exercises help rebalance and realign movement, reducing wear and tear on joints and tissues.\r\n<h4>2. Optimises Physical Performance</h4>\r\nWhether working with beginners or elite athletes, improved mobility, stability, and coordination mean more efficient movement and more effective training sessions. Preparation work supports power output, endurance, and recovery.\r\n<h4>3. Accelerates Recovery</h4>\r\nFor clients returning from injury or surgery, these techniques act as a bridge between rehabilitation and performance training. They restore muscular control and reduce the risk of re-injury by targeting the neuromuscular system.\r\n<h4>4. Improves Day-to-Day Function</h4>\r\nEfficient movement means clients expend less energy and experience less strain, whether they’re working out or going about their daily routines. The result? Less fatigue, fewer aches, and greater overall quality of life.\r\n<h3>Implementing Corrective Exercise as a Trainer</h3>\r\nFor exercise professionals, it all begins with a solid assessment process. Tools like Downing’s Sign or the 4 Sign Test can quickly identify movement inefficiencies. From there, a programme can be built with strategic preparation techniques, such as:\r\n<ul>\r\n 	<li>Muscle energy techniques to improve contractile function.</li>\r\n 	<li>Nerve mobilisation drills to reduce neural tension.</li>\r\n 	<li>Foam rolling and soft tissue work to decrease muscular tightness.</li>\r\n 	<li>Joint-specific mobility exercises to open restricted ranges.</li>\r\n 	<li>Trunk control exercises to improve core stiffness and stability.</li>\r\n</ul>\r\nThese methods can be incorporated into warm-ups, cool-downs, or even standalone movement improvement sessions depending on your client’s needs.\r\n<h4>Final Thoughts</h4>\r\nPreparation (or corrective) exercise isn’t about fixing problems, it’s about enhancing movement. It allows clients to train harder, recover faster, and move with more confidence. As a trainer or fitness professional, this knowledge sets you apart. When you address the root causes of dysfunction, you’re not just helping clients feel better, you’re building their long-term success.\r\n\r\nIf you’re ready to elevate your client outcomes and lead with a science-backed approach, start integrating preparation exercise into your programming today. Your clients will feel the difference, and so will you.','What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?','','inherit','closed','closed','','43081-revision-v1','','','2025-06-04 09:58:59','2025-06-04 09:58:59','',43081,'https://biomechanicseducation.com/?p=43316',0,'revision','',0),(43317,18,'2025-06-04 10:01:39','2025-06-04 10:01:39','<h2>Top 5 Preparation Exercises Every Trainer Should Know</h2>\nPreparation exercises are a game-changer for trainers who want to improve their clients’ movement, reduce injury risk, and boost performance. Beyond just warming up, these exercises are rooted in movement improvement techniques that address the underlying causes of dysfunction, muscular imbalances, and joint limitations. Let’s explore five essential preparation exercises that should be part of every trainer’s toolkit.\n<h3>1. Muscle Energy Techniques (M.E.T) for Muscle Function</h3>\nMuscle energy techniques are a staple in both rehab and performance settings. They help improve muscle function that often develops due to sedentary habits, like prolonged sitting. These techniques work by using low-grade, isometric (static) muscle contractions to reset tone and optimise muscle performance.\n\nUsing your hand as a static resistance on the inside of the knee while gently internally rotating the hip generates energy within the muscle, training the muscle to contract more effectively. Over time, this can reduce tension, increase joint stability, and improve movement quality at the pelvis.\n<h3>2. Pelvic Tilts for Lumbar Spine Mobility</h3>\nThe lumbar spine often becomes stiff due to long hours spent sitting. When spinal joints are restricted, movement is often compensated elsewhere, leading to strain and dysfunction. Pelvic tilts help restore gentle mobility through the lumbar region and also mobilise the nerve roots in the spine, easing neural tension.\n\nLying on the floor with knees bent, gently tip the pelvis backward and then forward, keeping the motion smooth and relaxed. This movement promotes hydration of spinal ligaments and reduces pressure in the lower back, making it ideal for clients with sedentary lifestyles.\n<h3>3. Sciatic Nerve Slump for Nerve Mobility</h3>\nNerve mobilisations may sound clinical, but they’re a powerful tool in any trainer’s preparation plan. The sciatic nerve slump mobilisation, for example, helps reduce tension along the nerve pathways, especially useful in clients with stiffness from repetitive movements.\n\nPerformed slowly while seated, the slump involves slowly rounding the back, tucking the chin, and gently extending the leg until the beginning of tension is felt. The goal isn’t to stretch, but to glide the nerve through its pathway, improving mobility and reducing muscle inhibition. This often results in improved strength and coordination.\n\nNote: <em>Only use this technique with clients free of current neural symptoms, unless under guidance from a healthcare professional.</em>\n<h3>4. Dead Bug for Core Stability and Coordination</h3>\nThe dead bug is a foundational movement that trains the anterior trunk to stabilise during movement, key for anterior strength, balance, and risk reduction when combined with posterior strength. It also enhances coordination between upper and lower limbs, crucial for functional tasks like lifting, running, and rotational movement.\n\nLying on your back with arms and legs in the air, slowly lower the opposite arm and leg while maintaining a neutral spine. Focus on control, not speed. This strengthens the deep core and reinforces postural alignment.\n<h3>5. Antagonist Strength Training for Hip Balance</h3>\nMost people have strength imbalances around the hips, which can lead to joint instability, poor gait, or knee pain. By targeting both sides of the joint, adductors and abductors, you can create better strength ratios and balance.\n\nUsing a resistance band attached at knee height, one leg is trained in both directions by changing the direction of force: once to challenge the inner thigh muscles (adductors), and again to work the outer hips (abductors). This method is simple but incredibly effective in improving pelvic control and reducing lower-body compensation patterns.\n<h4>Final Thoughts</h4>\nThese five preparation exercises are more than just warm-ups, they’re targeted strategies for improving function, addressing movement restrictions, and building a more resilient body. Whether your client is new to training or returning from an injury, integrating these into your sessions will create better outcomes in both movement quality and performance.\n\nAre you using preparation exercises in your client programming? Share your experience in the comments!','Top 5 Preparation Exercises Every Trainer Should Know','','inherit','closed','closed','','43078-autosave-v1','','','2025-06-04 10:01:39','2025-06-04 10:01:39','',43078,'https://biomechanicseducation.com/?p=43317',0,'revision','',0),(43318,18,'2025-06-04 10:02:28','2025-06-04 10:02:28','<h2>Top 5 Preparation Exercises Every Trainer Should Know</h2>\r\nPreparation exercises are a game-changer for trainers who want to improve their clients’ movement, reduce injury risk, and boost performance. Beyond just warming up, these exercises are rooted in movement improvement techniques that address the underlying causes of dysfunction, muscular imbalances, and joint limitations. Let’s explore five essential preparation exercises that should be part of every trainer’s toolkit.\r\n<h3>1. Muscle Energy Techniques (M.E.T) for Muscle Function</h3>\r\nMuscle energy techniques are a staple in both rehab and performance settings. They help improve muscle function that often develops due to sedentary habits, like prolonged sitting. These techniques work by using low-grade, isometric (static) muscle contractions to reset tone and optimise muscle performance.\r\n\r\nUsing your hand as a static resistance on the inside of the knee while gently internally rotating the hip generates energy within the muscle, training the muscle to contract more effectively. Over time, this can reduce tension, increase joint stability, and improve movement quality at the pelvis.\r\n<h3>2. Pelvic Tilts for Lumbar Spine Mobility</h3>\r\nThe lumbar spine often becomes stiff due to long hours spent sitting. When spinal joints are restricted, movement is often compensated elsewhere, leading to strain and dysfunction. Pelvic tilts help restore gentle mobility through the lumbar region and also mobilise the nerve roots in the spine, easing neural tension.\r\n\r\nLying on the floor with knees bent, gently tip the pelvis backward and then forward, keeping the motion smooth and relaxed. This movement promotes hydration of spinal ligaments and reduces pressure in the lower back, making it ideal for clients with sedentary lifestyles.\r\n<h3>3. Sciatic Nerve Slump for Nerve Mobility</h3>\r\nNerve mobilisations may sound clinical, but they’re a powerful tool in any trainer’s preparation plan. The sciatic nerve slump mobilisation, for example, helps reduce tension along the nerve pathways, especially useful in clients with stiffness from repetitive movements.\r\n\r\nPerformed slowly while seated, the slump involves slowly rounding the back, tucking the chin, and gently extending the leg until the beginning of tension is felt. The goal isn’t to stretch, but to glide the nerve through its pathway, improving mobility and reducing muscle inhibition. This often results in improved strength and coordination.\r\n\r\nNote: <em>Only use this technique with clients free of current neural symptoms, unless under guidance from a healthcare professional.</em>\r\n<h3>4. Dead Bug for Core Stability and Coordination</h3>\r\nThe dead bug is a foundational movement that trains the anterior trunk to stabilise during movement, key for anterior strength, balance, and risk reduction when combined with posterior strength. It also enhances coordination between upper and lower limbs, crucial for functional tasks like lifting, running, and rotational movement.\r\n\r\nLying on your back with arms and legs in the air, slowly lower the opposite arm and leg while maintaining a neutral spine. Focus on control, not speed. This strengthens the deep core and reinforces postural alignment.\r\n<h3>5. Antagonist Strength Training for Hip Balance</h3>\r\nMost people have strength imbalances around the hips, which can lead to joint instability, dysfunctional gait, or even discomfort. Preparation work here is essential to restore balance and prevent lower-body issues.\r\n\r\nDuring a lunge, for example, adding a resistance band around the inside of the knee allows the front leg to be trained in both the frontal and sagittal planes: the band challenges the inner thigh muscles (adductors), while the hip and knee extensors primarily perform the lunge. Then, the band can be moved to the opposite side of the joint to resist abduction and engage the outer thigh muscles.\r\n\r\nThis method is simple but can be effective in improving pelvic control and reducing lower-body compensations.\r\n<h4>Final Thoughts</h4>\r\nThese five preparation exercises are more than just warm-ups, they’re targeted strategies for improving function, addressing movement restrictions, and building a more resilient body. Whether your client is new to training or returning from injury, integrating these into your sessions can lead to better outcomes in both movement quality and performance.\r\n\r\nAre you using preparation exercises in your client programming? Share your experience in the comments!','Top 5 Preparation Exercises Every Trainer Should Know','','inherit','closed','closed','','43078-revision-v1','','','2025-06-04 10:02:28','2025-06-04 10:02:28','',43078,'https://biomechanicseducation.com/?p=43318',0,'revision','',0),(43319,18,'2025-06-04 10:05:47','2025-06-04 10:05:47','<h2>Strength Training for Injury Prevention: Building Resilience and Joint Health</h2>\nWhen it comes to reducing the risk of injury, strength training stands out as one of the most effective tools available. It’s not just about developing muscle mass or building aesthetic physiques, strategic strength training offers deep-rooted benefits for joint health, movement quality, and long-term physical resilience. Whether you’re supporting an athlete, a weekend warrior, or an everyday client looking to stay active and pain-free, integrating strength training into their routine can make all the difference.\n<h3>Why Strength Training Is Essential for Injury Prevention</h3>\nAt its core, strength training reinforces the body\'s ability to withstand daily stressors and sudden impacts. Stronger muscles create a more stable foundation for joints, while improved tendon and ligament resilience contributes to overall movement integrity. It\'s also about coordination, developing the neuromuscular control that helps people move more confidently and efficiently in every context, from sport to daily life.\n<h4>The Benefits Go Far Beyond Muscle</h4>\nWell-designed strength programmes deliver far-reaching benefits:\n\n<strong>Greater Muscular Support for Joints:</strong> As muscle strength increases, it enhances joint stability and reduces compensations that lead to injury.\n\n<strong>Enhanced Range of Motion:</strong> Strength training with a focus on control and depth helps maintain or even improve flexibility and mobility.\n\n<strong>Shock Absorption:</strong> Strong muscles and tendons absorb impact forces more effectively, protecting vulnerable structures like cartilage and discs.\n\n<strong>Improved Coordination:</strong> Targeted exercises refine movement quality and strengthen the communication between brain and body.\n\nBy reinforcing the body’s intrinsic biomechanics, strength training provides a foundational approach to risk reduction that no athlete, or everyday mover, should be without.\n<h3>Strategies That Build Resilience</h3>\nThe real power of strength training lies not just in what exercises are chosen, but in how they’re applied. Programmes aimed at risk reduction must target both prime movers and stabilisers, focusing on quality of movement.\n<h4>Build Fundamental Strength First</h4>\nThe foundation begins with improving intrinsic movement. Then those perform movements that mimic daily actions or athletic tasks. Think squats, lunges, and deadlifts, not just for strength, but for improving movement quality, movement confidence, and muscular coordination.\n<h4>Don’t Ignore the Stabilising Muscles</h4>\nTrue resilience comes from the often-overlooked muscles that stabilise key joints. Around the hips, spine, shoulders, and ankles, these smaller muscles help with joint positioning and control through movement. Incorporating isometric holds, anti-rotation drills, and internal/external rotation movements helps build a body that stays strong under pressure.\n<h4>Embrace Eccentric Training</h4>\nEccentric work, controlling the lowering phase of a movement, builds tendon strength and supports connective tissue health. Including slow lunges, Nordic hamstring curls, or tempo push-ups creates greater resistance to strain and helps reduce risk of common injuries like strains and tendonitis.\n<h4>Improve Balance and Body Awareness</h4>\nProprioception is a key player in risk reduction. Single-leg exercises, agility drills, and stability work on uneven surfaces train the nervous system to respond quickly and accurately to unpredictable environments, whether on the field or navigating a slippery pavement.\n<h4>Mobility Complements Strength</h4>\nStrength alone isn’t enough, mobility and flexibility must be maintained to allow joints to move freely through their full range. This includes muscle energy techniques, pure joint and nerve mobilisations, and dynamic warm-ups. Strength without mobility can lead to compensation and restriction, increasing injury risk.\n<h4>Prioritise Recovery as Part of the Programme</h4>\nNo strength training programme is complete without recovery. Muscles, tendons, and joints need time to adapt and rebuild. Sleep, nutrition, and active recovery techniques such as swimming or yoga all support long-term progress and risk reduction.\n<h3>Train Smarter, Not Just Harder</h3>\nUltimately, strength training for injury prevention isn’t just a trend, it’s a necessity. By helping clients build a strong, adaptable, and well-balanced body, you’re not just improving their fitness; you’re investing in their long-term health and freedom of movement.\n\nProgressive strength development, supported by movement quality and a mindful approach to rest and mobility, creates a protective layer for the entire musculoskeletal system. This not only supports current goals but helps prevent future setbacks, making strength training one of the most valuable components of any health and wellness plan.','Strength Training for Injury Prevention: Building Resilience and Joint Health','','inherit','closed','closed','','43040-autosave-v1','','','2025-06-04 10:05:47','2025-06-04 10:05:47','',43040,'https://biomechanicseducation.com/?p=43319',0,'revision','',0),(43320,18,'2025-06-04 10:06:11','2025-06-04 10:06:11','<h2>Strength Training for Injury Prevention: Building Resilience and Joint Health</h2>\r\nWhen it comes to reducing the risk of injury, strength training stands out as one of the most effective tools available. It’s not just about developing muscle mass or building aesthetic physiques, strategic strength training offers deep-rooted benefits for joint health, movement quality, and long-term physical resilience. Whether you’re supporting an athlete, a weekend warrior, or an everyday client looking to stay active and pain-free, integrating strength training into their routine can make all the difference.\r\n<h3>Why Strength Training Is Essential for Injury Prevention</h3>\r\nAt its core, strength training reinforces the body\'s ability to withstand daily stressors and sudden impacts. Stronger muscles create a more stable foundation for joints, while improved tendon and ligament resilience contributes to overall movement integrity. It\'s also about coordination, developing the neuromuscular control that helps people move more confidently and efficiently in every context, from sport to daily life.\r\n<h4>The Benefits Go Far Beyond Muscle</h4>\r\nWell-designed strength programmes deliver far-reaching benefits:\r\n\r\n<strong>Greater Muscular Support for Joints:</strong> As muscle strength increases, it enhances joint stability and reduces compensations that lead to injury.\r\n\r\n<strong>Enhanced Range of Motion:</strong> Strength training with a focus on control and depth helps maintain or even improve flexibility and mobility.\r\n\r\n<strong>Shock Absorption:</strong> Strong muscles and tendons absorb impact forces more effectively, protecting vulnerable structures like cartilage and discs.\r\n\r\n<strong>Improved Coordination:</strong> Targeted exercises refine movement quality and strengthen the communication between brain and body.\r\n\r\nBy reinforcing the body’s intrinsic biomechanics, strength training provides a foundational approach to risk reduction that no athlete, or everyday mover, should be without.\r\n<h3>Strategies That Build Resilience</h3>\r\nThe real power of strength training lies not just in what exercises are chosen, but in how they’re applied. Programmes aimed at risk reduction must target both prime movers and stabilisers, focusing on quality of movement.\r\n<h4>Build Fundamental Strength First</h4>\r\nThe foundation begins with improving intrinsic movement. Then those perform movements that mimic daily actions or athletic tasks. Think squats, lunges, and deadlifts, not just for strength, but for improving movement quality, movement confidence, and muscular coordination.\r\n<h4>Don’t Ignore the Stabilising Muscles</h4>\r\nTrue resilience comes from the often-overlooked muscles that stabilise key joints. Around the hips, spine, shoulders, and ankles, these smaller muscles help with joint positioning and control through movement. Incorporating isometric holds, anti-rotation drills, and internal/external rotation movements helps build a body that stays strong under pressure.\r\n<h4>Embrace Eccentric Training</h4>\r\nEccentric work, controlling the lowering phase of a movement, builds tendon strength and supports connective tissue health. Including slow lunges, Nordic hamstring curls, or tempo push-ups creates greater resistance to strain and helps reduce risk of common injuries like strains and tendonitis.\r\n<h4>Improve Balance and Body Awareness</h4>\r\nProprioception is a key player in risk reduction. Single-leg exercises, agility drills, and stability work on uneven surfaces train the nervous system to respond quickly and accurately to unpredictable environments, whether on the field or navigating a slippery pavement.\r\n<h4>Mobility Complements Strength</h4>\r\nStrength alone isn’t enough, mobility and flexibility must be maintained to allow joints to move freely through their full range. This includes muscle energy techniques, pure joint and nerve mobilisations, and dynamic warm-ups. Strength without mobility can lead to compensation and restriction, increasing injury risk.\r\n<h4>Prioritise Recovery as Part of the Programme</h4>\r\nNo strength training programme is complete without recovery. Muscles, tendons, and joints need time to adapt and rebuild. Sleep, nutrition, and active recovery techniques such as swimming or yoga all support long-term progress and risk reduction.\r\n<h3>Train Smarter, Not Just Harder</h3>\r\nUltimately, strength training for risk reduction isn’t just a trend, it’s a necessity. By helping clients build a strong, adaptable, and well-balanced body, you’re not just improving their fitness; you’re investing in their long-term health and freedom of movement.\r\n\r\nProgressive strength development, supported by movement quality and a mindful approach to rest and mobility, creates a protective layer for the entire musculoskeletal system. This not only supports current goals but helps prevent future setbacks, making strength training one of the most valuable components of any health and wellness plan.','Strength Training for Injury Prevention: Building Resilience and Joint Health','','inherit','closed','closed','','43040-revision-v1','','','2025-06-04 10:06:11','2025-06-04 10:06:11','',43040,'https://biomechanicseducation.com/?p=43320',0,'revision','',0),(43321,0,'2025-06-04 13:11:50','2025-06-04 13:11:50','{\"firstname\":\"Marika\",\"lastname\":\"Mossman\",\"email\":\"marika.mossman@hotmail.com\",\"contactnumber\":\"07749058602\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uE6IPbXvmTXqO_uvchKTBSZ&amp;gclid=CjwKCAjw3f_BBhAPEiwAaA3K5HOUiEJzCTuXmStkdZEiU_G41SWYOdYdTwcnoyL7WiWAnW533UwSgRoChHoQAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5hkEZrL4R-_8hD8l-w1YawH8qRYGeElYSbITyfAjgEhv-A7UpAu2I40QHBkXEYyz2XCqBwQS_7yLXjPBgcaBujGfQ91xncoswNkJUs1S885CW774XReSxBvBX88hnZk8fb2SEDrp9dyz_5_o3WPN7FxHh-F6YoWs_ZJUatQ3-1IifT6p9v4W49RNm3W9-N5Ux_jL3xz0o_lj5o6xvOAA1QxioIhezgiMmjbJHsbVjcrINw_A56WhwG9WMBa6Z6ZIt60CGrswkBiry1SYSwLAjs256ySTRNipKb9IHJYKyvaPN3GQmOtwynsfGLwFoDhw2WNYJShQA4WwP9nxuQXfgYZ67hUVz8JBTq9ucJBJwWZF9D_AHMuuY32q1hvo9nTbogAUPgBkH4YE9JGFCFMwgj1mpHIq9s6fAKfnyzYhZN9tR27j5i-J8XzeGJKRi1YVtZQ3mkIYNBkL4TBEKd7VJaM6Ix0ZXvOqK9oOgL9stcD2hJ3Ngsy38D4waTj5ZqgHmjx3BBzr3k8ixNQxcknD3DVnFmbYaVykeDofA1mTCvOKu6AFzt-BtD_VFplowIV2Qdk8yKs27-PdR0HnUGTRs5jMqRXQ5sQKDxr3Pg0sBlDuq-b8aVpSOtwL77_o-cXtxW5nUIsIwl8mAw65lEhpD_bbNZbiE-WfKNJ8LU2uOFo4tK_BcrLsfaWM_5v2lEQIHUDAluv0rnWbH9qg3-lwvIKxp4aW4qK2R8J0w4srMLo6raDwfk_MZq7M78z4lvajFgL-aSPjzV3fGUwhQZ7gcHmb8Mo3ITjNsZuZNSjrIDik3zWEaydmBm9DRqiF335iR4Ao1QPnOWaRBe4HTNAblkkPHzz0Iuxz9_n49boSapVmGWPEK8Jqpc82SishEDnFJyNwdMU_yt7SGsRvkC3gXLRhPOAQhrYKbF2v6Ry5H9TRWznvryP3hBPM6COU8iVFqCwBbcRd7c5-oJHquARkq3LbDel8In5le3zum3FMydlNnlMbvNKRNhwNwPjulT_wti-3UPjlQ1oMl_bHbJliD6wNDBJNUqp4bnSIcY_a1br3cIyhEab2Goz_LOmE8UmvdeffOytZl7otITSdutjfWbwiRj88OHhXahUfpx5xU6OWTIvA76CfYyLi7pB8T3mj8FRMdma78ybjlpeaHGRfLXE4-G-9dM-4BIvjORyDltSjt7yx3KS0aC5seDd_f8fepInZpzPnwAl0VFISQRAhDMTQNBVFIcaPI18pK-w-8oC7vQxpQAR2Yor6kUB-CU22R7k85icfkQFnN9fkGKQYRFAZkiZnKECv_Qw1WdGMWpM4MF3U2pC5MjAwsgR2sVh4gp4AJyFCQhiHoCk6htUyuJTE-NP3rHnPrtnddqkklNvtKIiYT0dn2pTNIgSs8LcWR_mxpVXwu_cza724-A3-S3iYFkkHXw9RaHEYNOCRM5B8TRs_kTnUHKmkofSf1NVcD47Un7CdAk4NzFhZOWEhmDnHvkOdGY5-bmhVKNx7qlNC_GHyKR7kHffwILVuw8fBy6vWOrbgA0_j4e9T91fqNN4PG7ZEO8SzPYUaSG_kEurwoDvYEDIvTY6LG_MosMjgmZeSqbWECoZbkBnwdj_2iLo5JnYvc3qCkdyYkprNfHSbhrenJOO7vIPtgz2oYdADsWvDbzdGXSxrZFAypX9FgVns-mt6O6NMvxpJpEGnyp_PpYJK0yUgRvCF4gMryYQIUAo7DXXOZzx09Gkz9I1qyPlSCTIu8qL-bNCgq80EVXJSgJ5eWpazFNzSeP4EN4ND-w8G_iEnaERV01nuE75N85a2kG8iPHO101TSLrNWRNndvLc68atQQpBdRnJFG7hIXyDeB_wtCvlixt9BCYmOJS29IMyz6sYP4VsM3WcbJrvb8BC9qT5F8CUBgUW7jWHjXMpQHqe4L1Ma8dLJ_fM6cFihf83IsBopta6B4smb55R8KblIDASoz3hkagnOfsk2078hJHjbjQ-SRCUekTIrxPrvFLLaFIfeiUyRYLTzV_CDtHDSfhMeZYlutIMMhK7McbhKV1YlswEu6USB54r9VkJjgiMNKY3g-dWqsv9_EMASESyhmAG09RvPGccUhA7kO9TFWxhiAQrg6hY5qnRanyQ9p08wWE1c79OZ3O-zHFEs8vhMBZ3ow2_6tjsAZS8FssnbE0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68404616132be5.13320610','','','2025-06-04 13:11:50','2025-06-04 13:11:50','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68404616132be5.13320610',0,'cd-form-entry','',0),(43322,0,'2025-06-04 13:12:29','2025-06-04 13:12:29','{\"firstname\":\"Sam\",\"lastname\":\"Norton\",\"email\":\"s.norton115@gmail.com\",\"contactnumber\":\"7835105022\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6mCD9l61qbjvE3wXU3bQdI-ccyLkYBiOpigA0DrXLFIoXRFqUjTSXFmzy8MFeZXoGVH2fSH363-uweCFO9CaP23IS9vbvL-4YzpAMsNoi-i7dcaSfGiEufTn7AMXAy7u0jDbfsz0moX8evts6M9D69etnfv_Ma65FzOEsag0axx-K2XiUf0DHl9UBzFFR_CuciXSZeBTJfx3hMpiTjfBbPrAIDKVXWBWRu2u1dMtN2l8mgYCjGF3QMev5cfn3wdlYK9ctLVtZ0_xoRUzxig3ixb-v6pVgd1GUXn5y_nJC-kRgDkL02fHZTZKZlXBhp-fu1CnQO2qzurpf8KKEXFGP0lOmzlWvmc-f0pqE27ZkNdcaIh6G1JC_T946i9iJfCowRVD5QuPbS1xvkfGQ8lq85ZFmN1zh6b2v2KWdKX46p86CJ-FTNyAopJVULLcq4zRaDp_dcHvxCtkVlgScHeVSUi5mJaCY33-cEdHsFwPyZDYHqkfKwYfWuhvcrPRctDl0Lvo39hE4PMxYnEm74R5PoGxW2zhbYLjHabici32cnBMdQOaHL6aqnawKoOH1Eb0l28LynaCgOhVwtZ619kvtBVIraqZqTArSCOUlJM1Yd55EG05nl9BxVn8Em6EbWbo2agIBIAPkVPRSZWGDv77fwNgX6LEEE2k7GM7vSdYl59-xYvu10SQ2mTWI_SxSRSDMRw7pQw34HML8WQjZhf4bMD-dEoqIqhKpuMnbFAoOQOGY49jdq2o6RjpYu5nLeE28Wq9lsj_rCy4Iy979lh7vRSGuZtp3-AB4OTdzBpXdRKKgkpeXaiFFSJp8Qiio4DR0PnwwiLeZd2jv7INfFxdfYYrMn9gxAFTCoI0keJDF7fWv0zWwfTiP7abiG0BfxKzD9zOnwlGv6ROb9skhQ3KFyfmj8_J8rpkcbvj0cR6oq4ncPmg4Ww6LePhAIKhK_qc443MeFMTXzd4iisJzMZ4oOPA0H4h6NC_YjiUehso4cuJfOe_KFHw54umPwWyuu0UdLxy6b1biTNAfIx_Tp1p1TFNPUDdTy6fKMx-Zx7mAB3YlEb6aVpvyGR3e3NpGv59Ms66Ws2JwyNSnMLjhs_l7BR7gYCn9sOA5INBF4xLPZnx9G4cMt-RhHRvBnPv3PYOclgJNYZzN5L4vdX5XRP-RivmyfcjO2DNViTHnH7aTAWhTi-7xt9tU3IpIxhuqLTVG8D_DZ_qILtZmQjDApRtct9i90v_KbubLJgm-uLYs1nalRVULivRXAiufFidVk_3fCM_uSvqrClez5O6V3UiRA37kHp4U_r057qVtgKYQrhabLrbglPZ1AIZbdCHWoonBRZGuD3QNl0E5TZN0dQDuWYM5E0FpZ8w5TGNT4HLFkLvV9dHSYdC8sZ87Rn8O9roZoDLQG4tfHiLcIw8wY3zE_Aw0MhEWdUpLjtRnOB1yb_zr9oZHoUxOjAwhJoPX2tofiA91rPYnEu2efDHZyD7eEWQFnRLP6iJQVLJwOSUKVbsekSJPk84UIRcrNUtfdMgs4otUUGC5KNoSUGhnIXjperhQl6pqpjQ6HQbntq5hXeyL8aKyHMBcLqm4q15V53sY5XUH3QfXpEJfdj9IYevwSh2n26SYe8oC9ueSFSlyvOXeFeDv0ao0Ygy75guzGQyHjNFGL_6klaVDhMeU1UXsGQysXXCMnkZzKXXTmOnBYsgkPWUaNryrxsL48MHFgQ7DRlqOJ7krRpEfPlehOqgFN4T7MdYImmGCeTl5jcoXOiSW-E9MZ76f_fLbU7NGdN9ixj5B-dCm4YZnX9_3qhujGBPJhZF2jjU9LJorBmPVrK6ZaUK7OZFPj5gHmh-1uwlpSp2Xyl0Vr1L3qldY_db3iPX5omiXzmnjB5HIfgDqSu8xM6OAkSVoFts4ZqEp97qwyr0E_4r0rmel9J8zWmN0_LpzRDeuJ0ycYJ2GskH21OZ3tz3Ldk0K_9xJpznq9ihbjeeKqG81zqkNiSlh8Tez0bDGy53cnrm9bF9gC96lcFjPCMNfcinO2t83Y1UXs4aemycFHZ7WPm9EoK_LYNpsZjWrdh3w6kMNnn6QoIoMzB5F965MMsPeJL2rBR-fI30lAebrVtHzzXGUAgp8ZPldzEPI2uWLsV8I3XrQ_3SVW7Ge-iFY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6840463906c705-19890418','','','2025-06-04 13:12:29','2025-06-04 13:12:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43322',0,'cd-form-entry','',0),(43323,0,'2025-06-04 19:37:46','2025-06-04 19:37:46','{\"firstname\":\"Andrew\",\"lastname\":\"patton\",\"email\":\"pattonandrew26@gmail.com\",\"contactnumber\":\"16582175001\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tcxE45UaRlJRXES8p5ygqgO&amp;gclid=CjwKCAjw3f_BBhAPEiwAaA3K5AGeFRHcJDq_v12-0SaDDWMtF7VpSAlnbShelkcF3Wh56Xs4g9xnTxoCAs0QAvD_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6OR3zFje6dG7mKDjRiz6iH7EJKtGGUIPsWM3ii-PTRFtwM_WTq7MHs3L8Aqqrrccbh4vVYFMC0HSAF451tubUGYa44Vu7eMXLQ6T_UdL-nFZIllTXpz06FPCbsnHUzxJk_7ZqaMkELLq-NAgkCu74tLeXVg5EDJ57VH_OaD2P4xdTlnsPv3Nu6I4UAZ86nmFzQ11jl4IgzkmVrklw42LtkUmDYQAhRl0f8QxQmaZG4aZ282g3rWzY9w-kN6uwndTlLTZnRGN_afDiS7fzP-pWo9POs0MV6O6gRASAV9bqI0PeZQwgbzm7sQD4V54VluVTwI7K84c0lWx0qISdxorTs49AyqbFF8t5w7F3k9HAUOmfyWfzJzu45PAxfqrVFClpA3Kv2abzfPL7YBP3H6p3mN44Cx87mg6PzSLtea6LwUESv0dJJ3X2V_zHuZ0u9eq37ZK6j5YQJxtECCnNIPy3CIiobVIjr0wlcMFoHAJy4Dqpt4w2vCQWXH0wl0Z4NsV2G8flLBEadujsesKBj4woP2lWcUFizyutJB20tKuFL0BRnlTIUrHh1Vj_J6yrejjB5XGKBii4qCMfI7lN3eEflrXZ64WOf8fqPrtYDyo92WsA2AwnndVExIidq3zJFFnxIPzh43DdAmb4fHrpafOQDahDavlRxLfW2gyX8FUfO_J2IRDqHU42VULLf_6JG_KKXZcddKyPIjfEGouvJYRNxINnazM_MYtAFludRg9k3m1Jw1qw84ikWoH7aYtqUyxruCJx2cQ5Lai2VVQnVIqFFFZGBBNZoCOTKZHGHfPJbR-cmgOqEPj4TsDEJaQEF6nSVtuSfjC9fPaYFVojJAMg8kjydxx686D8w-RYjWdTgeRrdwqTz8RzCGhoNZ6wlM1PRjOWCkJUR5M5vxybiL37l-nZ_lqRhCoZ95hGyXFUQZagOeSnZuHqY9Oy1CHmur2eMbJkbkEaBHWzyTiELN8unk4vtmuD0Gpb59TgZSw9ecpZKq9tnibf0NuYX5m6s_RLXYLUqNGRMIuCQrIwwRduXnDwLC-9fTCpugLYqS9fLdFWMiO7LwzjeWqtmSqR7heqsjhgoCu_ucWVvIoQA311dE0-oqqWTvh44LR1VLsfwndMysTmNCzB4xhJvGrBI_PLYbVih8qZpIXJvZLc5vuX7roQyldXxFSc9N9abE25y4RGRR5Oe-a_8WzTCXyrarr6d5DoIG5JbnjFUnU7tZZ7FRvWuUcEAnXiPx8ks45nsqyGH2yTQFxXLAd7S1_mdZsyyi07Xg_nxsab_mey2T4coV9oZPvawK25ekW4z09y3Sg1mzpgYJeA4C5nmv-geqEZ4lLQK9C-TI5g5V-tgGVht0rJPeR3tdP923lj1pANiwnnfjjGHA_cmapqIj32C_gCAJrbfFRHS2ZmBLwncxB2CANuGyLV1S4JOojIqXh7kxEYoQpcdKvIp93eFwVhThlUUYibqcihwB5mXyA-RREEQ-eBR8oEf4fqNS18soY6Qd7VNtfFTzoxb2zyLALN9o3XRr3XmLJbGeZwH6qeaPXuz6RmWy0dbQoD9gPtQPSXhHGCQuJfZxHi_PK0kVJFgt8XTP5uVB0rfcKnRKcbCDrdtprm3hxFbhb34TjIwxv6AI8zHOwECdeQ-DP24Wbx-HCr7XFn6YlKBis5oEU_94QjxQQPjEXx-ipUQ3he8WLdK9ZjHVHqK61LgcnFU74rQBADCUp2snkW2Pz-IbHIJTqzLcgRoonLR5WG2ZynO53Ym42iqkpsDLjr365qyuT4mahcqgeLZvCfMMYfhybuEM7pIo6IcaKiqNdsL8pwtj3CbsiOWTb3xfHCQr5iRg7-ZOeyawmmxki6JmlM53f11Hio3VMAdTKb2n71U14BDFk2QeuGbDMHTDDSNXmE4mSRwzfW83eIvvhal_5xbhR0ZQCLMx31xki2YijzJ3HauK8RugLwOvli32ZAi9ydFV8F3uykYDnUPysr0augmi_fhkBOYm9IzWp9cuaxUzVMdVsN5PONUA6OBZmRdfv9GexH9ldPwW1y2ePiAxBeI6JQ5F0nQErVaVA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6840a08ae45d48.09408484','','','2025-06-04 19:37:46','2025-06-04 19:37:46','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6840a08ae45d48.09408484',0,'cd-form-entry','',0),(43324,0,'2025-06-05 02:12:14','2025-06-05 02:12:14','{\"firstname\":\"Samarth\",\"lastname\":\"Vhanangade\",\"email\":\"sanjayvhanangade957@gmail.com\",\"contactnumber\":\"9763829639\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\",\"pageid\":\"39254\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/sc-coaches/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5ohdCUrU89UDfrAc7d6_RnsV0mOaInPK7PEJJLOcFX-HvjOtRov8H5QO8jQoItLt7uNSxWywsCL8tKXhYVA-UWTPwYR3N-r7CtzRIQfEbIGtMWd3f19K9OwUe5PS-I_tGzNtyCUbeagPXSHlmdJlSAaUvtuSZPDxPu0JICwecmGSJFAL_kmQsFzpHAEOabeXSq90YTGHM5m4pCKmk6hQaDIc23mJc1RCRx-p_rtgYl6INRU1T64lBTJK8bbmRxjid7OBvijQftmd90LtXNEXBEJIJQe7PRv6CNRfU-mBOPzVrTkzdziSs8duK-DP9b-X_TSONdm38HKQIB2wHRikcLPPQp2JSAY-pSpigrLbxSHqlnfSIqxLcv1GRdcdyD_cYu8howo2aDrSwSS_2A-2d_P_ScL-bPLuM_ifD-HG2O6l1i28R-S0QyA4UrFWTlJlSRYtOF9yETe3nU9hBsGqaZJ7JtD4-Bxf7ioG5BNdmXmJwfaWjv2mY97qYR8r9yPrp2iXuNnyA1A46tsiK-OcvrsSlFmRg38AQp-JjhVHafs3m7DhCsM5RDcD4FqRjn8TTcyF08hMwo63G02eaIjDA2wqmQDe3znL6s_p4dp8_VxaIpkBHLkKXvodFsVebByTMaMVJb2Jxh_9JgA3CIEjE9gkktQECrQ50F0q8FiWue85QfVNeaRQLJmoCNIDzAcybV8BD6Jwu-lBJsnftHUqmaRRtJ6VUtze0Q6NidO_RqZ4WC0Qkv0H07Q7NW2qpAyYLk0-UkUYm4NKAsBNggL2b-D9ZbYLAyXFyss4NAVtbmyaA01_kvbeqtJ3sURS8_nV4TkGH1Z8z1vUFP_1zZmcJOUh2M8Spp0qITdM7rB8-aOR4MNJzgHN0oYH0CSCj6W4i8waB6-P7UQaBwt6ruFzP-XsP4NR9nt-Oe3l7xO3sLiQr580kXa5RZYFI1TSHOC0Xlq5Zyp4w3dkwzRPCjfljFS8JfILn1pmcBkhEasy__eGzQQaBiQXAlloZfqFW_IMAZSuLxU75QEdoAvLdkTmpNCB4BmhWTxrAj2spbv-DHFfEbjo1Cm2GsV9YLr6lYU7X9PGOk7Pb2ZpXYCD-wstgPkJprKV79_I78PFEius9ir6Sjr4DBRWPaL6viD3Weu7VGhcBZ5uqqmpXC4vlxN_F1Qfp1u6mM9zGTkT-G5HNntcZglck0klTimZsErKgn6nvXCLXn4Mh1Vtm1xAb2jfEuc1FKcPlezh8gzqMpsHdOYlpzcvgVevml3Wc2B1tYrTQQlQe5Eko08aRASu4Pa3FMEVERJfqq_49F-qmDuoTbnWEjIHEkZ32G_qHdF14tcR-CI4DmgiOBxE1cICB8N87VGtBf7IFdO8C61nnZib_QNcp20tE2eFQwaNau-92tFMaF8tZVFVnk5GgHK1pcJZqnvV7XyF-hArAswauOGv9lNtAqqOC3150mCebi6KNyAhOHtaL9-zcAhowWTBaBXBSKA0IxsOkUET6c1F889FOOUy9fX-Z8jvUequzYf_lbJqYtfnnXtk9Hhf04R_FJhq0n_G0zpEZLTUaVzGArRcz1x_nWOwm6VC9PxC521ALV_K4YlfbDWKZb_XrGpor5bP8vuzm_GWaJW4Q2hFVeamO1j5jAor4Ud0xWvMX4B3kIgjD0i04GC_oJx32o8JsIh5x0OnqNFSLcd6gjjEj2PiViCR5lLLCszTMfD5uIPpcdHF89rG2JQpAPheHl0385e_jbrgUTiIpSHu8iIIThgFEw5ihVCUdj_sqanyMaebzKrmKLeu1LnEP_3G9urqwPGE4YK_AHGlInPonPVlQmsUAEEbUNbp4stlkGtI-lLAEriLCMBl1Z_fcgt-oLK43VNsLq19zFOEKd5xNwOCQpT0ycTd9a7Z9Yw0c9QKTwmDH2b86yOZk79Y9Uhkd1N1ScPGRQAqAO8m1wBxS50FffS-DKIHk2aGG-mwRm0F2YSV9jdUhZEB41WadpcBrSYx212CYBn1Oc6qfbQajfx13v7trE6pUqSiR13rGwZZn9FeabDMmIaxKleiOI519CIsJuogin9b1VINcw226wwitFCaK9jHMOL7U9WNHR2pylKgUXRZV_-RDzemtON6f63DTRUGGl_bGYcCp6gxreG1khh39AFhpRib4\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6840fcfea94bf0.50743614','','','2025-06-05 02:12:14','2025-06-05 02:12:14','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-6840fcfea94bf0.50743614',0,'cd-form-entry','',0),(43325,0,'2025-06-05 03:19:34','2025-06-05 03:19:34','{\"firstname\":\"Dr. Ashley\",\"lastname\":\"Lewis\",\"email\":\"lewis.ash.p@gmail.com\",\"contactnumber\":\"18684740617\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/author/bioadmin/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4_E4ATjcl6WMjs1Co6d4w7m-jYkzhCsXfZQkL0JjKevkrw0lw790NrHd93c8QF2qEhTXCoBOnOS_IXvnF6lJVFNUt_a-PfG5AP7XSwX8KKB4EQEbKAJjS8OTlZ_6O5xKvdJkNWVL1FK5cQ7K4G9e5txqS0VgSzQCUrONv--zn_NHfD5xMDPCJwj0CPi7Kq6slJmrfHHcQOEf1HVmzeynjy2gf4nlgJMzS3Q0iNKB3nPy5PDdlU0A9Ot6dTi8GYwV7csfvjybMCj95T9cTsdPh7pxaPhItT6T4msPxIGarpVrJA0DfdZ29P83VkFOjQqnlSvYDK942GibFs8z0dRJVySN8s_5nAlMK-5ZHnMM5Wwff8cfn5v07BRpP3PU4oZs0tgZQZyVZuJDsdA0wGfSKL_AaNh7DAH6Bsv5Lap7bRh-KSly5fJ_H_srV0OX_tAs0ll9CaYMwa1VkQpOSSlW3ggCWa_2C-6CrxKwqBFSIxGGpJq59Lf4ODeriWlv6Lab2oay_idRVDQ95_KIzor4TkxfooericbOQ8WDuO1XJXcN4Q9cPDS-w-MhklPdCEKqPmQ9n2G6N94NfGImX5wgpry82HtWPj8R-kIw0oy22FApkE4SD-ct6SqOEdj_EyelrZTMyehH15qGcnnhSS_lm3UUQJzIb12GLBlGs9inbZdmNC4VnLinAVBmAQYXj3iJ-7muSQn5H96GzNl4QltoiAiEViW-Q_anSlgFIByI0PBMVL3-E4XhKK-sPuivOTCUf8JjXq5V3KdWCvjitgRVinlVffXbn0ZT0yBeaeYtl6tU2VGRRXJT3Ix4ioFryFpJyb_fcg8P_NhbsKmC5hJ0M_qmoq0HaTtPPh7K5I6Fl01q_lY4uwZ30BFoMUjiz8Wp5MidC3AR0Sfooy5buJR6jg6i6gnqdjWRpohnOoo1HQTNFZWJWICJiKMxZAcarZzCI2LRiVpv-MFfCeCfzQ-n60rrcoeTUNBPZsgYHo2AX79gcUj17PPU1ktSdb3vpUj0payxVkLK-s4PSwwgNoAQ1QP-WUmWcIW3-EQY0OSvkCBcK_bIsKgBPKw0Qr9K9puGZz1pE7jIJslfroarvQ_jwW6dM80PZ_3YPjLJLhFaZ1uzalOOXG0js-u_nBWuCdAuHi1upR8xJfGOHBqnGaqD61IVdVxTXKA4HivfNneB7jJCKu_UQehFfLvzPIR7Ekom2d0AHY9JEdXvSMD441XaYGei5JxS6wUZJLDK24fN0GmNxdNKAv4u5VuMjqlmD21ahmyxGVY_wjn-ymu-y1TP3zLVLebfBX86oiLmnlZXZ7iiEDP26m1bMVRN61cTqYVrvROqoPtSVAyra52XGYKjvf54wpiZFlWfd1S3DkL8-ypeoA0dzTqYJaiBU4sAyvkO3if3LjtKnPNjIERZcuJyLBEKGJAvZ4egB8iSWkzntP_WvkS922ixpyTcQMpG5oyrchK7r2XSFhtpr5iU7Kihb5IKB2Qg3TrLcYOqDBTXI6HKUCdXLwJqUmHNgQ4HUh8XSN7-mv8V3_kCqFYTsJ0NqysnOuKp2lMNoAHwbdfNlznVDrUdJOvej920hzuyTZ1CmwxvbHdSd4H1ha1aDH5ykATcPq4pNL6TlnpbwTmqDHT_6amAOr_YvzU30ZmMeXr8ci89z77YCGI3KSTRG0oQGNsygj7K-xqU-OkOyoKMgemh7AeQheIUq_w1UlCBo-AKBpRmHW30AHYYm4hfxysNYO4apJ0VRR-kUgTM5a2Ss150rthkpxTu6J5fiC6bH8oKmmTDcIiUCvrMQm7zxAaH2DY59wKCqtIZP84xL2l_RkNMdgshnvyfrO-6wDPBAHrxHdIdPfv967vZMkTxsDWo3SIxT2C2Jd3eolWAdCdyQ28DjNdrd3FNF40d6htrYkl6v_mTuVojULdK_JjKIXj0B2vsh42H19Jvg1lxaAIb6hcZ4MM69Cr-v3v0J2u-dAX-kzr_aZs8UDDALwIbuaDH09Vc-lAJB0RigsX66ZpJiwPB4bAeGFjd8i3ztEWL3BqrO3-MrAqqjy961NyxTi0HB6R3tfTg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68410cc6dc6574.01239620','','','2025-06-05 03:19:34','2025-06-05 03:19:34','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68410cc6dc6574.01239620',0,'cd-form-entry','',0),(43326,0,'2025-06-05 03:21:22','2025-06-05 03:21:22','{\"email\":\"lewis.ash.p@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"12\",\"currentpostcode\":\"00000\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/author/bioadmin/\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5P9d-P9s_StO3gjPIeRrWzvkLgZKP4JcQhTiVe6fZKP5Ajh8Mhj1A5ytFQOOsN5mObPAqqpFKj9Gv3duT-BkfFYk4AXlKMwi8iY9ZamXAZ0J_3qshFzM0xO4fHGTlcCVRW98oKRuCZcDvMCTx4gZw4G9QtGY7uGardfsrEpz60ylnC6rg2aDVLWi3wHscbjTduQVhJ-90zfugqyPLEQXiqhgfDfy9DM-Kbm9hybFZs7zuVURmQXeDiBbL1SIecyZvyMuhF2PAF-0_GQomO-9rvaOIJMvVN45g8L4377bVfwzhNRLKrjnrksZnXK_oIW_UOqGaoe1b0s51BfPZ23ns8dNwRY8GB8M-wszPxztqelTmxacipPiIZ2VnjpEIBKSg-jBXrEzxvmAo3rUq1lmJ_19mTqS-mSmT6PdCL0ks6qoh-_CaqHAHb302vWBAf9UI_Dwn6bg4AOBlS4L03WN5yqvIheGZ92NtvR8OOb42SJld77sNnp2yUsUkVCD4xPalk7AFLZSun2q23xd43idQg49gKz2TKkaw7TWtPXFjfGOHcuYrF-8p4VVii5f0HfkomCJtAxq0SphtsXbBlwgYbmCYDoVa6URzZ86e7Ip8loruFHvoakrgyGpKk6TEbUfx_NL9G7MC5WP71D9WdVqX8BrLMOQjQJjswt9xUjNnSZh_00LkVQfjJCC2MPuwqvsAWiKchPZXeT44eKkM91SgxN5hHsxhfyqgCHQurHpgTrIxB11DwQapr7rbgNzmsPJFt_gB6r-bTPAhBfe8WrAFDRdSjTt_O1R4lAQMLR3zAjGhSp4e5X_Flg2s68A0k_toIOVR3l2tGLfxrElkDvAJAn28voWTXuxht1d0clwBhQ4mhNBk4thqytqCYiPX_IGh9j9V4sZYy2q0U7ng67lcApX-jcusVUWFO3n3sQI6q5Z2Y3LtPzhxKDUhIfhaNqCTY9SZieF6msQ23XPTAGG-wLQz2HDHlgA2PCKMB2FJu0EOetCrZ8uZrv69lD1g_2Ps5Ftc7qQrLMc5A5PcYvHvOXocMOo8wxZtAa1p_skUi61303oyGtP_f_2UpnDR5CpUgd-VmN6PH3kdn0IZk9QTASKs-QR4FlRKnLtuCSfqAiYlyefqSL2WlQiHqZI6fI_SsGCNGZ1CiKpprEIj7mgKIszjjQ6KYtJHiPrhfFif_7hNScu8njl0ztfRh2XZBoNt_79FW5SbMDB2Te3DRPut4CJvNbAUJ1VdRRgoJSkPil6ZIKf2GSMt4Ic1wNsEcRsfiQhW8fQgdDdCXJp54WfnHo4G3KmHZ9bR4L600G63bhkxYl8sliba-UYlMHG0VA3Ke7K2v2UwJA4UEcvLwFM1-roIVREGGiDnEcfIRwgPB2ln9O4sjpEycSFpD-BWcLoUEfc_60zWPnIUp5eDYnWLAq3dIjHqXFnSSQ8YKJutQGqmjdyY9KTCOQs2j_9qyWcECijoYcWS3uqvmdwqChQ3YTKNUTdKWTQz91MEuQ8x79Ky-75DVtRxt_zx53JqdnSVZLxtEO3EdNm4JEVOoLiFirNa3ifAd7O5mYPHVnDYmKPsHS2Jlt9WulTjUToW7eT-fUKZsB9xBcIQJ68XVC4N-cpg84ld07LqdyqhrkfL0lYe5stuMNO9HkTBnE8ApLCI80_X_pdNZlEiPNIVGnB1iuFPNEpikfYQ1VZpN-u_9C-4rILyErYI6WAkm10f6NAcZY9jho1bkkdfCVEW12LrhR4woulegeRdoT-7pqoiv1KNH6pCDVOzw1G2H8rfwnjrTh9-1CoEcn0urJaRoiu7la7vGFZy8Q7NMya8nNnhBHmGqxZy-2_5sh0soNPZhBB00R3XtErtzOQdlc39gcgaGUfdsREuPhCV2Guv11uopxYE1OKqgR9Rup5O5MMemyl0WQRR7DpF-I11wkFjIW7ZCcWWOXH0UXVoER37A7DMEk3zbT609e-tagT-4oq4RHiYYoLlGzLthjI29acivfY8oSS6J0LOw-y-qNeTNAYEQ5V6jOyaoSkBQVRlAaFNncKF3hBIULMyy0fIsfln4QG2FxjhZfRDC04at8cGBMLZZF5UHbFY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68410d0b01afb0-36213912','','','2025-06-05 03:21:22','2025-06-05 03:21:22','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43326',0,'cd-form-entry','',0),(43327,0,'2025-06-05 09:06:28','2025-06-05 09:06:28','{\"firstname\":\"Becca\",\"lastname\":\"Stewart\",\"email\":\"rebeccastewart2909@gmail.com\",\"contactnumber\":\"07999425889\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vFct5pdAzctUFBsq8UFA9JN&amp;gclid=Cj0KCQjwgIXCBhDBARIsAELC9ZjO2ngGQioV-CKuNh0ALLx7QWx466Mq_4QRN_Y9aRpsyxu5MQ77BtAaAhcnEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA6qFi_fUPGz2QvoH8yMmPVyn-LLjszHTh5lWTMWwaePGihWID8M2foa4Jq2k9GtfkJidU9_xaU0k6fD4BjZPMzxmBI7bODruv1Se8Dzqs8G8Qeu28HshLoG69CsdP7SqOlhjH73ust0kDFmmjokq7eVN4_iGWmn-GQqZelkfD-xmadCstgdMqdB5IVU8JDSsV6xb4KAq6n90oIJKdvOs_lDj_FXSwiRCz9n7_mQGj9nvxmV3KeW8lF-DHQU_TAiGZGO3sqO4BeTDiLlsCIHdY1O6LAsv9Q-S9_ml9KyboTRA_UzWWlS_nRC-MKXL4jthRhmcnJcBFoUpP47R4Mn3JorKT6R1SgLuUuhTDT-e-Hy2ahNCHpKX30DkT2aRIYpicSz6lI_5Y5Z81wKB0i0qfCWWYyCeX8Er5JD7QFBBvV0q59Yg0vv_q-BEEeKpsrBseZX4VX4UYetMM5xgZJ1I8i8XmicvvuKU8BxbEZKrr0cRDEy37FPvfjAzuwvt6Qn3RSDjgZ-9tTrLP5semPiNCUp7xblj4q9oEq2tc1I09AmG9x_NGsa9qNI_ffwTlHQjAQnPSaTO1SY0CtIyyHNrPFgGMiTioGMinTaCVGHU-9pQfWmbUDhYmi1dA_lLBtF9HDDQkveIteokomcXhKIDMK1nPLzEnlo3gfTnR7ubuk17k7eqWzINfc_anpUynG0HcwkoJWagIyrzOCvOpQzRcbt8sp5UhSJ0c23KEGJXoWu8q7lrI6CwiGFIDg62acx9VX4xV30CWnqS6_1iSJ7JcmiTbmESeb19rhywlYVKpWDp9OYQ-40ycrRga4yAurw4p6lrDsoyGbrq0aFwnEbgykTzagYcUqNtvZWOHN7Y3V2yvQnrwJiXbLrQJH-17r1Kw3YOBvV3mz7uT7L1IvTNIhrjTVf1idn11DOpiZTk-NHxK5SEyVSPEA-OGK6Mhg6DGIfVcm2w0G8we-RTAjEUUUVifL0XPKK9xFhPQ9RkhwJXBeVTn8kvq-5gJor0ApexdDMgYQDvL-WmV8R0zQvRQBAM4EqiVOAYqTeY0WJQPr9re-mB9XxNq2uABWPSJx5aZOHhqI59y5soFEphFGHqcJPrGaDRIKY3dBVIrIZPGQE8EQ1zJEJ_n3mMwpz2uDJbwm1Lg7g9O70RGvOhQjtqDZUMXds5ICVM2gOKh_bMUbmLoxh2fuORZwZ9D7WdxtI21bCY2h8eGsAB8v5-raqZRg7C9_gzvslkfSOQcUA-6LSvXHmB33LkSLYDvEvIBwJbAgGkr2fIzHKxx82QhcqwGhILsjacggQJY5F0j4ZE2wJEs0dDeUoKnidjgsCjn3V7B_Oa7DxhyUo-S2NACNYDEhDufA4JOAmazQlhQjJYx5uEi7hanCcWWxLkmKN_9Hd5VG4WpHNd1FEDpZoIMnSoQMz-wuCKRzYfvKzBika2J0YsWlkMThG6DsqnSN-mhfqih77BWTZNi2doZC_dhOAgnqy8O36V58KU9qApMoXYB4saQrHr4XEKY1XweTGE43J_n7IJ7X0mc0SEPWxd7PA7K6QvuUaMukFsAnhQi92JR6cJGN6axDF75pz0_gD1dZ4JjUhpITnZIwm4g8g69SVbZ_ZWBA15aZd5GLLs7DYBcKw2hEiLRb5HjlwIzvjfUY0O5hgfEIQ--qkHU5wwo31tFjIejCa0wDI0Af-_m85Bx03a6FRaRMPT_d4_LaDAy36Gh9Qa5DjQ5PDjaHm1bhBBN7D3Cr3vbWHNKYqT9xH6X0ldbDCUjldOZTRsf0GciCwVszj_90z6_XJPAuO0mwaBot2tkm12thKWDoOxGKHKf5n5xDjuFZv4gYj3YHtYsKzrIxAbAu8TcVQdV8YAESf46dhbZdBWbZs5sca5ifMntMw6InblzT_olVvqkAmEX_UvJPmTLZBm8uTvrOHw4s8WQb_nFg9hRpvPWBxnPfg5CoUt7B7SM4091_1P7NqtYnG43dsvPH3hz5MXwCMh3TxbboVWDI6FxAo_HAFL2Xen1VqNEjmty0caChw_IHovdgOUf50z8Cb\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68415e14c9fc96.23397079','','','2025-06-05 09:06:28','2025-06-05 09:06:28','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68415e14c9fc96.23397079',0,'cd-form-entry','',0),(43328,0,'2025-06-05 09:44:54','2025-06-05 09:44:54','{\"firstname\":\"Nora\",\"lastname\":\"Gunning\",\"email\":\"nora.gunning@icloud.com\",\"contactnumber\":\"07519263224\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMIso-48f7ZjQMVJ5VQBh0eKj0IEAAYAiAAEgKAI_D_BwE\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5DuzaS0Rcl9SoygBWMmcpMXY_gbGR818d-OzpU5CwUkJdFJb1mAIFyl2La-3vcxC093oeBwKQmO618CBO0Z8xosZitjFFIFBezp6lPrzg_K3MEq_VbUpVU4ezVGsCGI2D7UOWTSBWaUR1Imm2vq-WD_9pT8T6uE9iviEp5zFE7NyTVqu7Di-ZGn-y1ddUAMn0L5d-rynrIEOTWG33SuUzOf76Eypp0lybS02oFM8O9A_m5Btz3dwvsjYgc_28c5tLH77MuGP0MBRyXbjvUf9kZW5zE3lmolGsT3W-s1DYnkh1fFMJvZ4_RhthgMy2zCpmnrrqZr55k_pkF66Gj8uhuGdeLL_76qA4h6gAED59zrU7UaHFOJ9Qmx5wkmkHtOTByXOpN2e_DDQe1Apd4IkfpI9gba9qEVqTCFz1_bqpYuHlnTPTWepk1KEfVNsY16wNDnmBlWrBEg93dy1j9zgFDnXRp1YUWBqGl48k6gAmRZ9cRYj3Uc0l9pVmkPUXo9zruuGHppWDTW9cMbw2MDvCRK2GvkOLbqEjGx_58XVB_6UQE5E8MPW0t-riaX98oKmjScs-L6nIF-aPovLX5goIoxmnXzHRYO9Yc4a9Y79HcUpl73iaHSKvT1ztoF37hhLdVI9RwQ0DT4XxFiliqC3XvXM5bpqZbEXJZtcdoVXp2ab86l_58a7F-5i7hEfoOkM1vWOb8hQME_o-xA5GltuNccdxj9R5-UXaLu7cjWfskxBZKvZjiN6AfXO4Xmi4-t3BmvNjUjlWhBE-39Y2S2RubDPdH3WxpClFLZtJIBN7Mgx5Mx9E6TNBFl3dcZRQ9EE9MTU6XGna0U76AhgFXAY5Q5hp7QMNmij7JtckS_Tzrt_ZrXZ3yljeepApbYQjbQneuJi440iwpUQlGmdreQMad1PNgFBe3RQSBVN_qNynfBorlqMVIPDvIPeKUU0vrEvkbRwtUwmRHqFipJlCpGK6fqDepzbzUQh-5W3tCf9mQJnKQmql1799BcgMgTFaGwy--hShh1uraEAIHEEjG_yqWvq-mGR9MvqaxN_Lh0CJpeIJbwvgjw6O4Brwhe_n-7JPmmd6UN3LnV2Am-aEsRqqMHZsNgqNQUAubZLUHDqvZewf357hMx-wMwi0ZcJJgXGUfp4s4_olyQNdM9CodNOS-atg3e8ID9FkeGO8YrPGUxhJn1aaghauVe0ylfFAqopadKDAEuQ8S3Ut-qrUysls7mlVy4mwn-r5HxHE-DLF1GXEt8OiP56iJn9wf12651Ko95s_pJ9kFJ-thKH3RlyfMcCDoQc1mM_MRrR9NHwuKbL8nl2zJihu4Y1JDJt2QG9eQR42uHfjtjtV9LnEwLIXbiDvhxYYW1w6iVI_6578WpnXyUXReGWEauim7M4M34emNE5XS556gQJIApE-b51aetxbZRL0js2ZMzQp4qYgOeVqONB1Zh-eT5mA55fdLdWrpvz0r4fCrNdFWgLFHVqQdreE8X37R77apYjEgAdbj7a0dGMqMt9JQdmryYQ29LaVrnKuCPhRRRZ7069yYc1oqrNkm3FQQJD4t3hhM9oXRhlesd0gt-Th5_Yy3e-y5u30e4LqvdmOqlJw2hlFKJIFg3Jk33A2yKBWpeX16TSW5AvYBLeIIWSnDEWHI-xlE9We4SM3HlAhKedSDAK3y4HxtixcO4LOLHGyry6j2mdgDcB-1ZR3JpMwHM9zccv2g3e1ZDTVDFbWvHIUsrmkYztTvMO6WoSAaKTp9Nvxfe6hkByu-PmbEj0aI7bxSGuGg0WTZeqNSWCmq0R0RpSfT3zQYQfGIhHbgFmVemtDsRE2bRHo_BvYD3akzt4wEPLx5m-BfHrB89CzeNqkqsx9vEgG9VojYC3DP86uv_xcvqSZRkGkCJgAk6mtyjPKdk1EYba-a8B_ZiAcy_SHGbfSc4ZuYiFFc_5Vs0XBE7q-StDUDiKC5DD48CX2LqtcIVmj8_mwnEdfy2LDpRZz2sVUg8PlH9gg1uAzAWdoUYbIQ36S0QqMb8nhOr1ERy67H9sBh78wy-suKcPdu6O8ncHm4EbbCfbgTlSPC35AlUXawDvWpwB1TJlZrcVQHLoW_GKPGpqNSodPe1f8LW82yRERHX8yU0GZ9NNS7poMTTuPzECYgtGb_nZbve0-NghaTDeoVis7iDMAzAvOJqkRPIKu-5FyLQQxtUA\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684167164b9697.27461353','','','2025-06-05 09:44:54','2025-06-05 09:44:54','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-684167164b9697.27461353',0,'cd-form-entry','',0),(43329,0,'2025-06-05 13:21:32','2025-06-05 13:21:32','{\"firstname\":\"georgia\",\"lastname\":\"bixley\",\"email\":\"georgiabixley@outlook.com\",\"contactnumber\":\"07807985253\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vFct5pdAzctUFBsq8UFA9JN&amp;gclid=Cj0KCQjwgIXCBhDBARIsAELC9ZjHc4ZRaL8bmlfPzdOpYuSjP58CxX5fxugMVpOnKkIX9xUQEEE88NgaAiMQEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA4eUyJ5vu4zV9kDN0g2M4lr7I2PVlDX4sZHbuUgeUIrr4LNLN6M_R6sMapbt02nIB0FrW4mZP19_ZJL727Mcu7ni9aTJm47ESbBO1X670EuIhDA21qPgVvvf1la6pSujj9wPUWFOnmkOW73-frwFUD8Tq3UOwQb10JoHJZ16xYtt38Mq-NKcEBxo9E6tMt86wTJsPx0OlowdISwNVcfRHNRppb7xj0nq4_Vm_ehk0A5ZVrlmjssR94P7XaOLSUWuy8s5bTGbXHDdycuijTGN0aXVeRo8EIe3bbvMxuq6GvCH5uy18NNex-7SYsxBlrhEI94NN4-gZEvPRCLEo5rPuqb3H0XP0J_sGR1PS7ip9nsUffVL-uKez1K8d7DTGva8m7F_wZo5ZfTqFRh1yUm803KVhAy9e3Ub4LjAnyWB3F8mC5wkIOOtGstyucoUyzQqNF54_CFGcBu2STNTZH0dSXZxSAkvaxY1dS83vI83AxS9uvUJDFD3gDJpOgR4K27xVjDuYjC6DDZnVqVivMqN3985jZ97L0du6cqaL2LJBQPqWNyWD5xMsVb26-chtzqmWx1Sel9JNlu1TQ8HUt9LV6SSm283Op1kJomJh2SqDSqq-QdWPZFaDL_tzb0jyMTz7RAimDMUZvgKT064YdbK7HzggK4e1hX8dOmLq-s_siUBXS9ClyotOWlaYoFVtKkSENqgwlVRPU_4_1V-muwC9RVln5ZtbqzG98HOhuhtfEsO2X0AneVtX58pzNySAk5leS_YfRc0H3lBJx2wHbWjywUPaLjekEdxBy5LflpPfZHi2yRKRCrJOeT5N6tHxemgBZPCvIWhVwe1zLmas24pP0vUAz3FS1TSB6Vit77_ZoQAz8SL3zmhwSwOncfDTKu7JyQxPSjt18YsdOOYQAeF_f-xFV3jWBO04q_OhPAjzCZUEie5HGoHV0CZxYaFSH9i-8NSPp_LgP8sH2-yUHzldnJE8_puW9O_BIKizHzM6BSdHWGJjxFBOXlZDCqYq980leUnjZPyPLp_F8zmqYAgiluaHiZ7Cb00gsVKbjWM7fiqL_7QJ0IM5XUG4ubNlnC9n5p_y2ScX05V-eX9TztUIvncfJxRwmS8jIRfAMwCiJkdC7jTeh3Y2afQDsb5ZoocciTre7pGCDomoh5OfzBxqnihj0FlnrZvUuDc1P811GAN83AdgR-XiH_HMbt0U48oxW8SSDW-JxTNTaWjblI28G4xDq77lCqI9Vq9CXoLYBwZLuDNELFtCM-OlZ0XUJZWZ26qTHfHASLDURGwvzpFurfPm_fFUrICcLLG9Bq5_AVy4028quXCPTOjZnbslYtoXZ4_Xt6Z2YLDDhNUgrR2VVToSrsAUW9Mrmk38YtAU4ildaNTfFeLT0UwT_kRBQ-NVzjUAHn6TqCvmIg_G6p4JRPnEyBRwe8Hlry6GGjbDPWVdg7PuPNUlXjtJ4079eZfl2pX6hOnMsQy0szGtCEtNDQsXkVAnj897vaWjxAntFPhd5UhgG63YJll06BSeUlsoJ7Nt-2WtrULDqYEdhJDuF6vB70VLIQWa0_e0dNEp11_Y9UVjZfR6t5RcxIv--LOm5K5L1ELMp8kgh3g3tKXja2SkjRo0eF4EHXVc-36T7MMQ5b90YTgbePU2wvvpDYXU2C0ffMxhCnzzMMVmEOIXblF1h1dorB5iRyedJJWhnBbzyzRxaz_7BGFkc1BTtOW7-GCZc2doFC51kgoHnhM7CMPtYL5iaxUDH6Fo-uWctAV7iSBmSN-aacbvB9LvNIgtmj_PU4C266QWyEJ05ytUleOCC-U7OA3HIO65Q-a19hP1L_-fHTu4blqkpaV25GZOOAOSaoOsUBwQPl6ZoboNSq7MqtRBOEYg-KghEZW-8UD9MdRsR5i_j2D0TTABKM7RbQoRxg5U74y0LSt6B1DOt1P8h7pBqpzXWiEGrBNdhj9vZ4eWzhhgl7AHoK1kdvNZF2a5GSbk9do85EFm2KmTQQp-dnuAaxp8UFlFM3_emcbOE0rhIpam9ARWz67cLoFH_kow7NZyv_4Cwq1TkfXkTntBP_dzVGpJ42iAFs0J4PE59W45ehiZHxBzStewyrWyuSjpYe7z1xFb_2kavoqONv76MV9w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684199dcc7d174.49223721','','','2025-06-05 13:21:32','2025-06-05 13:21:32','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-684199dcc7d174.49223721',0,'cd-form-entry','',0),(43330,0,'2025-06-05 13:23:07','2025-06-05 13:23:07','{\"email\":\"georgiabixley@outlook.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"6\",\"currentpostcode\":\"kt10 9ba\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vFct5pdAzctUFBsq8UFA9JN&amp;gclid=Cj0KCQjwgIXCBhDBARIsAELC9ZjHc4ZRaL8bmlfPzdOpYuSjP58CxX5fxugMVpOnKkIX9xUQEEE88NgaAiMQEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5xm3j-SUezBgzrlOMKvBPQD3zajykRZwFialcFdOeRJrO5JnJn-lnQJkn3qqhY9ny3STLg5YVoZ-x_MaJI8N1nAfbOssV5XFsYH0DRcPr8wa5S9FeEPSwmSH30PHpduVOKsANu_gNjI030cvmSyXz4wb3ry-5mIDMnulzLryEuLlm_EVw9xRj7f9wadPqEK78ptc1zccWb1bYDMfojGGcngSeqpl0xOwro9lAdJSLNLbDHjJFltRK2ajldv3La4d21v4_Wc50aR4bv6JRpXbjiqs_OI6e_aUw42X8UujmdD_1mFbriJYPkXwzrfhuaXt_pd0L2GCsLRW3cqWg8Y8YOMft5YHaZz_UAhoBLdzG2cpeZ6KyyQj9_RVmiYz3V8SYub9QFOT0dY_kePCieEqwPBE2vd7o93HhbXPNYwnQLoMAIIYuWPbnSJZSiRf_2ipkOpgpDUexO_Tn49-idHqCcTz4lu1g51OYQNYnL7zqfMvbj4Gdh5HbiTOAnmcjL1XcTdqzjkMzQgZwLvJNMmecwjAqSRLkpqikV0GYiROb4plbfBA-SWCZ1ADKmcJwU5nag1gouyAmAj2qLPc3afysRoD6FaL6kD7SQt-bWnG-Y9lOJXba6p0HO_NGqqvV2B5-yhpyZQfikcoSdXBCt1pFOFRjImU5wwSkYqQxe73gSIgebrsLPFLU3yiPZivipXYT_phVenQvHWAqxBSIqi_B8U744F0lD46bjTrRlVZaBFaxt62Pw2broCxT9TZfQ-SweBPUJCzFtx34NMXYCjWpuqzkByoUvLyEZMaRoXoN8Q7QJYHjzc8C-rti78JtXjK7KjgMYYh2LY_D2zenQPvGfMv8uW0706eLTuNf5R7nJS2ioDFohhuIhFfMet5-NBNbJZHhYYocMXwe2Rulew56QA8UDySnwopUZaJGDndrNLfdvEy28q1t6qVGBOCH-J5dc5HcxFqZBi5Ga2bc72sJUCouvFQu5Xz4E06-MlTc1H_R31VXQoetCFsn8vVqlXv4WG_ZLDeVZ3_xQ8LUrJuyATx6D3Q27wiSLIT-s-j12NRDpD3P7VSaM407cKpIP422dVLjL6I9-B3HxU0SFlhzgyvU_E_6XAzsfJVBeu3RwyUnzm101aRr5P9QircwvyBYKggs_IJZd_7TSAr5H8HU-7vVqo7_BvWyGFsOQKG9d5ARtJyug8DqPuWJ4wbgZ1q2G7jtpQ0vVTZrVEAVxR52vycgdv34lMvx1f8Aktyc5dSthDH7Rwh7xmHIIABv6lAzcMjBOtlde43sgo_oRmWRfuIzOiG7LZlUHg3dDzeH3GXY0xJ7JTiD0nuQ7JQvfwVAw8GAXFHtKxcfTl8LfU--QhhI2G91XP0-Cf9DkiJOvbuUCHzc0qLZp4iUwU_jYcesuz6HeAliNaEW7wsumDsFKfWhDs6AxTmy8PzDHKNGIFcx3B5I2DRIw_dfZeQsjtRf0oMSSjdWna-BJzJAIZlpOMfHs43DH9C4kb9jaQLsLd9hOrnR3qjantei0bwqZI0roGendzgRXglMGboLIdqVw0fNd5EtneVSY7HiR07XCfjB36USwa_uDcbYs2M72Tan1v1ahQ0SHeUCb-ADHJG9QWB2A9X7lsgMXOlLp8NFALMK9ZONXOLfTpZJ1wBZ35LPSdXe2NXIN3UTIkA3-nakV_-rENWF6BRFJYO_Fr8_Ua6Bb0yc6SdjK__oVHcJ7qy4zQ4TEDGNEamGdHgf2HDAs3asRCqMm0l31AuxfxtGHn0D8-42HcaQrmgzgu2O3d929-BKLBNlFQi9GmtrZGQGVxpjrsqSSzTN9i5st3FsP8eIM4om5Q_iqtM8cIymDnCxZr1aULQj7yO6WvOpAt5_K4P8J1DJ0Rodoynl1YWd9ZxZ6HLmDFv5aWQzfldwdMPdUrx16ypRolbLyzuqdwmO-uVWSQxbvpDUvpogRQMc5DKosKiqa0BBtG15qNscTvR-Bve29qumtVqPY37tprAsVgG4GCUZuRGZV2x8cS0myrCBhJbInh1zhBNalpJdFEjYHcEIg2aC8IEQsfcgeWM_u7tdpdr4-4kcq8F8owsFctIwt32uRmR4zdG9TH8ftBpcqHHHNlHZtyh7i302LizCqbgubfQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"1\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68419a1e62c6b8-71990374','','','2025-06-05 13:23:07','2025-06-05 13:23:07','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43330',0,'cd-form-entry','',0),(43331,0,'2025-06-05 15:14:55','2025-06-05 15:14:55','{\"firstname\":\"Tom\",\"lastname\":\"Sibthorpe\",\"email\":\"tomsibby94@hotmail.co.uk\",\"contactnumber\":\"07468578082\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vFct5pdAzctUFBsq8UFA9JN&amp;gclid=Cj0KCQjwgIXCBhDBARIsAELC9Zg_5G9Qqs_bP2I4oDvjSp81ReuS9DiiL5TFu5tWo6y8ECdiZFowT0oaAi6OEALw_wcB\",\"recaptcha_token\":\"03AFcWeA49h7MM93DtEXNXMcoCSGF5VC0d9Y1sMaDZ4VfRdCQ2VLWNR4aWnfsg4J6QeqRnyjXUAirJ5b8qCIVEghj5v88AczJlG61I7Mfna1VNbOeQjXTSd4MJTRO0_n9RdBi8vizgEhTMC8S8-z3-gmoOAFVxyQr7gBwOnx_cjBsDm-SQU1qZa679RCRrXVcBNrp87nONIrGM0oRjlQdSJecYtj3W12y9fl4tvsOWAFm5Vv8sWZ8LCTDtRUMQX_gxSSdNgBkjdAQg0_1PF8sfTDSQqsgz5o_ua44Djluq9U7W2Zwtj4rQRoBen-axlra9S_NRWu3f5rObrf1nY6PZX2zx-60GDF3h475g5oPLI2Q8pivdHSesgJ-_eauGHdQ8SWDHDyE-Fu6tHJ11Iu4yuza3xkdeEq0WYBEaQpqPwqegX4Oq_yLHg8LTywkCFVJQJ8rIqm4GMR7-OC86VGrOHW0B_P0fnQPiGDt1Z-3UISS8vq_kGsy0krOwfnc5emsXAirx2GiL0N7mgxQzS57Yvd4nKe2Bpxh-VqZPWyc41gop0rLqYJm7TR2xf0zp6BD0pvukv8nM3TFOy86iLe9X-8uwf9lg8iwhlrRGbPe7N6C-aH7PxKqKc-BcAlpbC4bu1PR0iQd3rGeiZI2Kv7iZpxVP41WJRY3JdYLEm663hw9neMMazki3rtTsl2CQS8aAsoGLvDOg4bgwXJ3qVoZzUDmFwlikI47Tok8qJ92M4IHC8B9MqDNBLB49S4yd5zWdj6rcGxBARAoCSM9iVToK3poXi9Y_HM-5nW75uHOlKb6cCcX9FPYmJfj_QzRkR7Bnhnsx3y_X6YfvIzm8QQmNrPu88O2F1G05ef9x0lXhf1ycFd_brogKHhcNb2O98Vu6Un9GWy0bcZZDRGNzxDzvvRDyaD2H5Iz_zXgGNLEBcFECGHIFQv6M0NudWAL0y7hOF-Ra0nVyUHSmpUwuYsNVzkasl78PwkCn3b61-xSlsKZ48ZM9fH6FidxhD5r-Hz7qPG5TYvOWf0HtuVvHoN_ngLj-l_lErmMT0fHy5aK3GQ4y9bqYBvRHoV4YW6sRmokbY1z9X1cGJXcHdht9z6IRSDC6zCtnL5aMZWnvQ3gBtvigMT_I3MDpehhatxnUHesu1L884jDTpsbgw7LWEKOkjVgNp_lRPMRnu5Vz3-x99fZvJ_tXlfJyCXWndmYvVeGX6rwBZ59oJap2oEdQyopErM_yzGkbywA44Gi7skN4Ksq0jVkxrsd2jadi4BsDrPVCke-EqUclaNQpm4eT2YtfoO9BWlpsGblnTdHU09o0vfrUtB9C02KPDzbUebsEJlF6g4R-QZPaMEmjY4C4nDoa43ZI-9BgJricVTAfygiNdwc-6oQhfGqWlesBFF9ZMdwlTX83Efzi8PuTPDwEfgOLUx8SZcaoMrLeqXozrlCa-JKfpqaTvTdouXZmDSFfYPTq9ZJx8Psoz0X50-CLu_TSWhYiGAJKqkhn4cB74VDOkSkZT1r60-wVSiROKQzxKHNlNF818wHD1LAT9XRvp0_YB00XP3nocX93H-woLVDfdEurUe-nrfvHebPqZfRjj550QmxTiW5v7x5vW9X5iqRfptU-ikYc5m-J3MDUhKGT6Ab9721OhWfUWtEnG5lpisofOyvqMfACs0OWs087mFQ9qTvz-BAT__0E9Hv2FSay3D8nkOtURwGexxVkqOdynzWrPZkarjn0i5cpbxRr7eo9xC45pEO8J0yd3sV9pVgwTFRbHSPd4AZRT157SFQDdsgGsOosEo6nT381_DTLR-PunumnEIVrPm6bZYkBbrfO4euwYgXLemtEt6gQrqThLCA5ph1zyz9kr7nSsMY9eFbFfemGxqr5lKpsPOVM0KxSVgkUir4HdHvErv0HKI7U34g8zvdvktiWET2F_AV9XyAdwdtRUIeAD8bAuTCuBaXq6jIJlafEvwaJ8JLCrzBFVA5HWjiUKFqYpuHVGK5fYc8FWKSxVhMKogpd9Gp14BSvdUL8_xaT63DlXlkgBkdWxjiYbLOnItd6uVbjR09h3er0y-LEsywZFuKY35v49qV4gcT9uf6uvA8SlFwUx2UAn2dKD3Djc006XcIu_6sHQUtfYmjHQAuALb3seGr8f7GV7_9tynKtxCWd3gw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6841b4641ce030-56155077','','','2025-06-05 15:14:55','2025-06-05 15:14:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43331',0,'cd-form-entry','',0),(43332,0,'2025-06-05 15:16:50','2025-06-05 15:16:50','{\"email\":\"tomsibby94@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"5\",\"currentpostcode\":\"Nr171qn\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vFct5pdAzctUFBsq8UFA9JN&amp;gclid=Cj0KCQjwgIXCBhDBARIsAELC9Zg_5G9Qqs_bP2I4oDvjSp81ReuS9DiiL5TFu5tWo6y8ECdiZFowT0oaAi6OEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7uEXT-PDBe_FSamdLCK0kOMXH5tO67p20IAIKVnhyIQThsZMnuNF_zaZkUT4XbXJvE0jH3z_whr0E7SCyhQ9XkEIGiJGKPx_XSCUxja3_EySRnF-DEpqC-WXXondULW_OUYtX9JPyCNOSjAfhzxwume_HIsBoLjVvEzt1aGb9BVbBsZ3SWkj-DvePchjKkgMkz16sTpImcZ9l8rTfUl9lk8Ok7oz3PXnLzUC-e5ZU3gG8fT2n9pUPlX6LnLveMRuZQ7DDdsHBfJTseT_lZ76CQrnMijVc2PcrUvwCz8B0DAsTy8s9ftx_7-wOBvMjVkijl-or9U-mjwYUkusLEe5r0B9LF5UlfUTVcKd_octWn4071hTHQVW6G35YVnrkYzExNL7EjdXGKavWXzNVhbWAhddDOsJR125ut4bDv0jeh0Jh3dXuN7LfsK7Zp3HnTNUGznpHW0uJElTJ7J98U2gJGlkZ3Ak4oan0m1R8EuIXkjZpEjHT8IALvJdgLCuMMM6b0VCr23l7vLenOs40Q-RVTdTDwrDALeTrAXSQuuhJtdvK4D5UyqLi0fDkb-pCloh55rl1sIQLXZtn9wlxiUQ3VXf2GHdKGRATK-_1lY80zWrHQ-BK7seQm9o5Zmmb3l6GrTxVySnkf3YBzOWsaxcfKwEuLORqKYSlMuTw8T5RQr0noMtHrS7pZ1jnprMctyxLHhGZCYBxohq8_UdhNpJ9IDiRnfA_QSu9Mfe5ykvW7zaFbmrU0Mz7hn1krANYbDzHJHdtI-adhRiq4-sw7z3R3joNdJHLPNUU9e2Jj_7SB41GphX8py0trOfxmyHfwYC76IaS-C6Jj7ZSF3ONo0arWwm0N2VLEh6KIsauXGv7Bie97fC-IRBC64Q23UqYciqW29ckVjIWhr-G5byFNfrVVV2_ZZUFZs1zYzC4yVTvUZSpLpe24HQJlx1yvjUDBo7-xF1Ab0cWKzEvC5D9Su2APTaeduKBSmPWW2R8_vhRL7b3h-itPDxKPIhYTu142QRC0NCCZ7r_8YBvCnLmgiFZPZ_uBDor-W3IzNwx-NN8-L4_Y6uAObu9-g9QTzvjskwZdFj96JtJRSrJPyzIvac7xxPBe9Qv265Fsx7tr-y1673v0W8QuNgvpAuGu4EahhBH7TveEv_o5PJ17Z_Z9UBVeFEnQitHRp3t_ZHXuxWU9-c0WGsWoUYDo1J-dJgoI1vDcKQ89v-nnVGrG5lFzmDU2mlnqy2uGaQgPG1ATkQyjNhFGeKbyaufNtgCby4MZuhZdgN8Qa5_WRaSlC3-KkThvgcHfOxdjIIxtj5tZuVeK0Sz0YMwMLfIoD-Q_ndRsaP487iLSUSX-ZbGagIcuKQndI4TkMcHqpmilonG9ayKuI8xtghF8iV-2A1LBHDAToKPdgwl-KBBYl1Jzq4avNToKxxkQx0pQdf1L2L91S2S5RyxV-jfXoqe3jmoAJTquZiEkFAv1_WtkttGAjo0xeyd8AFaIpta-z-k-IvzSJjM4HhZV5ReyanZgm4jpYdBhXYM95kQBR55l9NsXHvdWVnanOOGIjzgQbv7R2PkyB9xUZfL9G_DDMu-LEypV97kBhzW9r-wAuCjo8k4RCY-3mL2clcJganIT7xanwk-hT8Tv8EoHajNfy9-H3CBSY9QT4KuWWgRMp4ZBeh1Tj9WFN7eyAbPLMjux5Q2_iwdTcSTODauH3iMkIX178nDgEsb23fsxcTOt42hzQP-7RfmxH2pQnJhoIkVCpAoWNzEE6YgZwN6u7qkQ9xq8bXaBOR4bry6lst--JIVloEg5HWy__ADwsm56Pqp752Wv5TnWn74APi33j4Q-6cDrKGu5rMszmKBmJi6t6ttgEWutiRAM4LtSWKuagRILFmfFTGf3D6X6g-QxrIboWprhOO2ZlgDho6BcP47CxYcj_QFf1AB1YD05--0TQMyEcwyvdmTOYRTdjcVu35S5zEwqrFcT5qOQZ2HDjU8UIEKaWRQGiv35eSdWc4q-2tulkjwqxj-lh__7kuBMyO3q9LW5umeVUyijXwy3DSL8rNh_bqfGgORl61JRrLgfOAMPckE5DewKXbaifjk9IQrdGEbq3rLpUhRxTWhg9ZiC10m8y0mqksCDAnfVmbuCGyp937MZFjNgU8qulHnyXHxnMTyOAcdhfbNB37bfWS7w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6841b4c64f6999-03547362','','','2025-06-05 15:16:50','2025-06-05 15:16:50','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43332',0,'cd-form-entry','',0),(43333,0,'2025-06-05 23:29:40','2025-06-05 23:29:40','{\"firstname\":\"Iona\",\"lastname\":\"Cameron\",\"email\":\"cameron.iona@gmail.com\",\"contactnumber\":\"06852468985\",\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwgIXCBhDBARIsAELC9ZhskQ6Aj15cfkl6bOFRvy9rffpxQhDn4AWee-Uwj9PjguzaHQsWyfMaAqyzEALw_wcB\",\"ref_code\":\"\",\"recaptcha_token\":\"03AFcWeA5GP0Hwhe6Gsr6ncajbesoFdXjTpZgpr-s04iMpdUI6_3-ILwREisbHznvIdR33rKTNnqSAPbv58UIaSSrzyUE6B2wEMTXLROJ7vIsuimyOm0kVInAiNUdcadY6hiCXcjJlAi5mci2zkrc8MA9Ozp_UGSXZSyvZ0Z6PwaMvMsIM18Gk31Bv-6Ig9JHmqf25YfWiliD-BP7oV80Bn4M-8QofDVX1A0tG7M4hxaqZ3sRd_v_HCRjCpycFBfVWFQTdXoVrhp7EqFRk318LM3l_4Aiy4YoF-mgsV4zelAnO0aKRPX3JOdxdriMto9jGs4buMIH_RVj0jZ3MhkVgp-BJ6W42UCfNih9DXZh8Hj9gv9epsw_kgKn6hqg6RP7oK0PW2vQUkdfsVInyTYWDyutBxLwKcUyPd9q1NQNkJ8PzMXYK2JWDXI_3Lw-x-3LuZ3fsohToXF97ipm0mbYaO8-YaweVyDx0goO6y4RHv2H-ygVN7W_csSJV2DWrEQ_u7Jl_uZKvViHo8_iS-vWkyPtiBYhG_ufL4gNKxJ5EmU7Y4iUWbTCBT83jVEWg-lcFXnxQUu0PpMqZTCj3v4cCiDxsYwQ4Rql7DNRjKb2xXsGURJO5Tb2qrJQGPNr2jwZfCAf4y2ghAm-mZpc-VgSaNx4oaeafAhb8tFEbSVhhrPRvTNkPyWmyjadEGYCAio6bHUMkBhawp9DU6y49jeU8EvNt6Rr_htcTF5ZWjO44vxeQkfUrfADoZopnWv_XV9YIRc2hRpGuHuWiwtJWFQkg3uqXQBo5CAY_CuBCJIEHqNl3McHXJxOoAOSjJMXocTPBoyLlZOSHRVXX-4lI45oNBL3ezefLhdzufpfx-ud1v0jabwFGswF2wHd_GEBmuQNuZVapsSLZKKlBKjlvEo5gGqqEEWpSXgP_3XBKC74tyRTEqh-PlzoLSCVdAwPMXi64kqVCrxRX1cNNqnEy0OD36A3dvZBSs4dYYam1GqXdk9NrDuKerDwbt3fm0Czw5tR5v9Bvvbt8iGXtBLeAns9sqoObiV77uJdipVFdFJpwKUR2EeoqvNEOpx44DvMAS_we8HSeRJUbaL7KJY8hIrjgKkedom1OjZpJ802xv2JHhf-awCXiLRHLWEhcHN5slpCA41VLAH-eW_rkQyLNX0EnwcXNl4STB3YrfB_smvXUC5hguZyHAoUMSpVHy_Hl9kFnDrLZC1sPDObj6daFF6M1_CwwtfK0lnY6qiUePQ14V-DQ-x1NW4SSYHeRJg4Rq9W9uhLs1f2qoAfN8Tg33NHk7TXiz5vTQGVula5dXoMoViuL-HiNMChho8-0Qbw1BUEKAm581a_ilxVWQug9feXwFCZAqnWEWjYjz3iygiWuHjFdCh7RFx3aDZlZcxOKbKgUrLcRYaAe5ytblaDBa7uVNzmiBMDZIy_0HFPyL8luHf7_OL6_6ZIh7jhS3crRcaNaySvahy0E82R3LKfJMF9YqCVIAQO7CqkIE5pquUW8cs6pt7dcYeRL0BDY855EvzO6CqKGMOi7EPe77UxI8kz6UBvjUcQbw_r8aXP4N2gNRUcxS1ewOCwvXoHXsXyWh4MF0uDn7Z_J7XEhB8jF9QrFpk477mHHPk9EwCW9zlkn3CMuW4zT1Cwd9AqP5g7EGmxwYd857XCzwCnmLOeJrNsgd1twvw6nnj1mTTvORCnEy_MFIWXnPLRAf9qTyjSxZnO5bwp4iGk8fWeK3S4GiGTKWFcwEpA86tapsWVIo_4vXZWfk0tda1-JOBCfcAcuUBkA7RBnKLVQzuCgvnrMhsoCtbgPiYNh1QIrST9Lay6VEAaV_UFvfnbgF_NAcS-kUFoqKb2DLshGxbojJ0GSWHfAVYSG1CSE8Kgr34uLCyyOKmOW0RwU8pACmFj5FsG0LqqmQ4rK669rH6wr5P99xatz2j1sWEYWwb9e-TyPXWYywxac5NvqEL_Lc5hy7dFYjTXQY56m8Rqh17g1n-VLSaKamFMXYReBKiUZb7Xmf956IA6TPRo7AnUdKb3Pym4HjQIkhtLrrdqymp1IV5pbRE3mebI9w_LVhMSElRFygZcEInAj2nq1ecC-TiDy_GefJc1aYy4Qt1jqSJu3xkwRy1XAyaP_AYW2ZQivvn4jqk3qiaft9x-0dk7-5dEZg_CQesFh2jnPe9h5P7cqiqOhudkpDS3XaSRgBeiTuw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68422864ebcc55.97858506','','','2025-06-05 23:29:40','2025-06-05 23:29:40','',40394,'https://biomechanicseducation.com/?cd-form-entry=cd-form-entry-68422864ebcc55.97858506',0,'cd-form-entry','',0),(43334,0,'2025-06-06 01:05:49','2025-06-06 01:05:49','{\"firstname\":\"Elina\",\"lastname\":\"Purfield\",\"email\":\"elinaxd719@googlemail.com\",\"contactnumber\":\"07301043225\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vas4tJgvlkfGvwq3ToaGIGm&amp;gclid=Cj0KCQjwgIXCBhDBARIsAELC9Zidv-tc12yoAeFjBU8JeTI_rYA1eHP-XVXAtoW-UxTo4brN7q4Ot6waAjj_EALw_wcB\",\"recaptcha_token\":\"03AFcWeA7cp8vLwcsJCxWyqQFyIPPYxjIApi6hb0MNW9W4DoZX1Ntn-VVIeDTATB8uCPvijlc2kPS53s39JNfwkjrhysTpB-b5-fKVG3HNIh1mJKBCmLM594Lpbi_83P7IqtBp0Vvf1TwB1RE0jm26gNz0wkR-cTZPqQnyJwHHf8oFtx43tRBl8LgokvW9ZcW_naV7YlmJ_9kaXcNq6k4p3g1WctkWnLXSr7oidqB80BD1mF3ASQ9x6x-0bExbo6-O5YZx674u05Qi2pS7GOb8reoqA-ptvqoSmN8gSMzbUj24e1bFOsCAdCckhtK0eRrmIv30zP0xB1xig_4aIzETlqto2uA4aufHCTpTDOG6GnlK4K0Pv4nFqAdzG8flIky9EHqo0hlv6qlDphmc9KcVSS3wYCVZ3Bsg757vL-Zi6pqM4XC4f9q3Ola_v9bHEO3Da-Sh7uoig0W4Rjl8kO1TcSGPYwTdDnGV1cNxwc6IIiKqf61PhneNh2VdzmXx3o7XB-yBAFXFbtCwqbHb9bThDYMItCWNeOuTI04cOIy8b_IxgaprSPQN_pifcfHX9jIDo9amN3_fUV35c5VobVjTBpMvfOH4a8O5eVvmNkVQfRSe1LPd-mm_7lrUmoda1gLy6kGQx6Rpis-yqEBPalRBw4HYp5gGNRanwKOlfZ2m6b3AxcsCgcxf8xeBeJuLQNocoSIL3_PTmf1lI0FS1mnzQYZXTTJk6SfeOEZ5vdEPOcUS5wd9f_-zusjx4C_9iQPPBkQvT86-x1IlTknCRJ0riNVGpul0ot79e3qt8X8p_BFHKyF6jKqET8esF9I6z_yXQJihskb-AhxEIHOelDciRYKiq_vJhwy43pegbvxNwC8AoQEQSg4igY0r1xZV2kjKCSxfP1y6B_WCTRhSvRjfDZh43BzZr2h4QNs8NBfljA1swOwhCyu3ugp4KjuwjzkOM8RDZJPFxnyYs2rGhZs2TaI-qLIqDoGUWdOPSBjRezEup0Ah4qd3fZeo0VABibYnf4Udr-4dA8HLL4Nv6i6PMr4IwZ0uec1HL2h7G2Yi2-s1CoXAncLhhuoCcSsBkhELIOfF3coxejwe1fkm1LLt70sN2-fMNjLlWGGKjwDJZ07MQeLmPmZzK9DIF3JCINJOSgIVvPKJH3eyZkFmPt5hYSPzvoKTAS3eYhiNloIFXU71pkCtjL_ZVveAOvgdCLAOH_eoyGkEAe7DexcGjLDz0sj2yJ9cbdRFW2v4M0qnus7nvVrpxVB2tWSUxBR6tzF4OL0JYEhszpQbXoGRxYal2zRYKzjR3elLZ4DZBoDclcndQuBCvqHVRS2m8S-qS6-Ld7qLfv2DUNZ-ifFBgDQpJ1IsFJSClEXjK1xe5bLSyr-srksB7L4h4nCXy2pVMsuiWdWPTbokKFVXxOFmAnHG38266RidL6kvIdi6SlyTSvZW5Lei_2xB4PQyYJCr38Y3OrRtL0Lxkpa9v4sSYcqVo-FaVh4FQLtaovjaIpXh3CFV0C9C8lHsTtYHkAxXtqWpxLntoGrx7A90TEOgEbP9QVeY_eWhiSNFC-QMBEtAGq8iXpkxRMn9--PQ73UZ7akHVCr-7lwqUHHnZBj6pN-ej1p3aNRz_yR-Dnmt5OoRED5jbVogXJxybK2asGMtIgDJe--SY62soW07gmiXq06ZHZyfM1ufvsjwCyOM5bZE_A9IMVIxz80FldA5zAPsboEVJN76192Z_bUJ63fuRUSJa-vuohGWRTIu2AiCz_IzibAbrVLSmBXh37fGSo9KeEYyDlPl7NtWNPgN75UlFJHdaLdmyeOF2_BK9Qyy9-tjw7K1e30JRueIIMHEQb80D_BtgCUgD5aHy7FRISyt0NmCIsz1WhN6bn9F980yOpmTEJK8L_gZXle9uRIHRVmaLACIYJVasc0zgBkKbVddrHSBPhFGtNLRMWWiMrcZdD-m3hz0srBNSYbcB0sCQQrD7x9GYwsSqdSUiwwISEjMFF7vTNcMDsCksEu2Uc26x2v9CTt9UbBSFbuY5pohKY1uX0B4gSNdAqfjzSZh\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68423ebed5b8c8-24053623','','','2025-06-06 01:05:49','2025-06-06 01:05:49','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43334',0,'cd-form-entry','',0),(43335,0,'2025-06-06 01:07:37','2025-06-06 01:07:37','{\"email\":\"elinaxd719@googlemail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"10\",\"currentpostcode\":\"SA15 2EG\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vas4tJgvlkfGvwq3ToaGIGm&amp;gclid=Cj0KCQjwgIXCBhDBARIsAELC9Zidv-tc12yoAeFjBU8JeTI_rYA1eHP-XVXAtoW-UxTo4brN7q4Ot6waAjj_EALw_wcB\",\"recaptcha_token\":\"03AFcWeA7b3dWUR2vLeMvfCSI-LDUays66ET-iTM_9ZIq-JSzG7Knaq2xbsMNiphET5QAm-qfuyyhKc2HX-pRNCdsNxImiXRv9gmq3AUPWRtSOpqMPSAxnL7hndeRQQhlcw1ii4Je0CO3FCdwNIbBy56eCox0ehfU1NOj8S2-5uepNKCZ4preWzh0fe13BXysNNaDHBXSalvjZ6nz4QNBn7UlArpkK0_GQ8OUHSzUQLXeSfzGikJSR5q6BGFhwq8vaGhT082oy9nC3qX4qYXx45ZtlxZ8gZHiz-FUvghPiKrYbbvG9INZvGFpG2iVusdmj8cd4nFem3nlmtsXomgjviqceLcU_LFL9tWA4TmzbdT-20OKwnd9w23fGumA2J0AqzSnUoa71lxoVrqCRk6RaA5eJnr8kwMlHhanEQAXd058S0HDpqXE6N-cKHWRnaeS33pfHqC8fjHv7G5LLez-MRAEooThestWC-nAEmVqdwRMM3gt5g6irE5vBu1S9AjKd_notDh-ADzTc_62EO82rhsKNDzITZtqdvkTDacEXgQZy-spanuEMfSJc8dwWwAiguvi8UMt_Jp9eSDmFYeax81KVQCgoCKmNC8jkOBlefI3mJU02HklWLjB-qJaL1saImSX_yWg7OgdVEoqs-JX2j5oJiSAdkArhquY53-Ppp6YZ_QWp4APTxDgRMBJk221a3JsqPgvNWvBPfplTDxAJiR_Gyty_YfSDOP38d8Z6KjYNwh7J_JyZ-7ovH7v15v6n5dpo_3TezhJso7rjAd9DFGA6n8kbObt4lRxN7wcNIQzMk4B4gmDBpXjcUvWOe0v77ZTtOHxV2w6JnRytLlQUh837zNuK4BlqEkCJWX-j1jg1f4Mbh39xVgjU7D5M1vLm7YGQ-9HhKEZ1gNEGqNFvt_0zocg5SUU63e37FmxzyzhkA2mD7LlyMuMZC0XDMpHRVvctV2p8es2wSyhT56-XnHtXXphhrzpw2P-TdS7UKOnfdITJ_bgEXIi6TD-Qg9-965yWeRHKmgGub7GampGbSvmus-84VmlRpVIkx87vJnSTmWvXJaFeMERSCvsfqcNq_QEZ8zfNeHDcpFAf29nCOINFfbSOA-JVFVZyS6MaWm7ud0OLxQEIJGQ_kBVZ_6KheW6Scu-jA0e4t3wepntqzP7wrGiTyXNR_FcCp-jmlQgAEu2WQ-23rrxSXSaTpkky7kN3cmrz2dlyJ3zXhhiLybsnGWGsc_GiBdjnQWUpBKCOdNv5NO5qluLBJ345Yw0lRSbxIBl0P5EMVtuz3WrhaBpR_R2iiKmlfG-AhHRmmw1K4IkAoeWd2BY-NUCSgBrCgW_4_r2hJKQ7ziKjtKnvzfizyW7jmnCK96MCdKa3NFFiJv8o96cvIiYssmERSoYelWn7VH6RNHxLxLwVYttKZQIJUQ0n8oZmz3GnpTdv9aRjdZfIS1R8Z_bWF1C9ouK4whsb9m50KCxcGr1GAGCqrXz-xg2fdhKN8Mg4ul-NUjvUE5ld95uh6QBzxlqi1Ao_pqFy3rJrmJoEU7FLpY3S94E5LYUJtEPVG2Z9hqmDwpKXgSR1JD8EkVe7It2ykHGpuC2oW_guOLt8KwtbePyBf5ZiNnRMawA3rwDTesKOAYIiShvef8Q_D_Sx4jyr-vODhu8dMvpzVqIdVfT2TLCCi3MGK922nRvgG8GMZ_6zBLXRMQ--UVNrKJxrDsk5GZz_1flBffhusYo8B5bGTruwF0_91XnUp8_ZyGvF3U1DFtvvIXvQTv4gviAeseTtrvaMQQdG6DZ5fQc7v44h6fub_xDZIvwCjPc0hHb99ihjWlvpVtwmpMk2XmQ85c-afz3WTn-43XUcHvFX4GZoINbSdVAtMUZ_rUQ7JZOXeFk7wgUwfaogAydddUCVWQXH_0LksOhjNZ1D9ATMLZK_89AheY8J7BBuvA9Sq8UGPoHRUG40ovyNzY6Aga6SWrX_C_peqPdZRNJdDZETOelu0nVf07I9k4p-Vv4acfzXAKs0BoiTUU-YsZo-khJMYm6mgI8pPhuB8alOWJuT\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"11\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68423f24ae3930-72738556','','','2025-06-06 01:07:37','2025-06-06 01:07:37','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43335',0,'cd-form-entry','',0),(43336,0,'2025-06-06 18:41:07','2025-06-06 18:41:07','{\"firstname\":\"Aaron\",\"lastname\":\"Pashley\",\"email\":\"pashley87@icloud.com\",\"contactnumber\":\"07908732508\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sBADTxmCsq8Be26qfAb4Koz&amp;gclid=EAIaIQobChMIua3x5rjdjQMVD5aDBx0AVh9PEAMYAiAAEgKHmfD_BwE\",\"recaptcha_token\":\"03AFcWeA4IJ7U-CEEBxm3r8zZLP7g5cSskDQiXWMkwX3iR5-6CH0RG1uNVNj2KojJDxEp2zhUroOsYgD3I-KqVFikNuUYF7YybmPb0DVglAIfIBDXxoXB3Fta5FLGAZYBqrOIDE51kDmRsMMEDaLrEDfgpChw9rtRPSdoN5NtidqDFORjHD4aXIliw4j75Wm2wgb7vgVyKCP-Y-Bhb7cMiVXpf4j9bYqewe7UoxyQBVc-MNO9VEA27OO_0MaRfMHZWy0CG0VYEhGkseWojiONX3Yl8jmKzh_kcoC5bP9nFLiF-dmyfAU7MCmv3xvcgEOOdm7K-HSb9pIx1o2fXvUl-yneO3Pz5yCckLyDfqOVRashe7ioainTJtEnILbCOMvwlV9jdtHBEChBg-gCLPezo27y5ol86FPncOd-Tnc5fI2Zcl3e-Ni9JrThkyoRmEoexfBblyG27_wK3HrDCtOcbdPhmv-9INjm_jmrVC9LNXuo9kO6vaL47ywXw6-qtpgBYt6G6Wct-l9j79goyD41tW_hz3Tg4FfjrjM-4SITQyrTYGIYj6_9gdytR9zPjXc7xlOZ0RoY2iF__aRCbyX3ob5d3Ht9S9limmkSpXX6VcGBYeQBVNTnuiLzIsXtwziCLLj7nq8UUGBvzdvk0Yd7_tUIIEbspZnx32tCJU8NinUijVHpeu5CASPvH1yZVKhytP7wNcgAgQ3omYE8yZ7PJ_7zlPXbtHeSpbBYAX65l1rkvzhs4wHor7ykqH6mSCNngQuHxZQDUN63XH4J_V614Dxn9RtPGEacNxf8DwrQu69RWfYERJEMEJ4cGEpVLTzbNpaIAg7gg_Fo06X1unzUgYBiqCzZxiIRHEl37I39ZYzLqhFMcc01CjcSiFDzFMIZAmFIZmjzgZz_54ABhp0QQ2vEKC3uteIh8FiphR_VhQgH6peHLByML_5kTCxVJ2XtfdSzJ3GEH3S-jmEfybaq9vR59e7NyX-Ehu8DHydM5h8LIFF_qa8BEqFsDMMfZenxYG-Dsk8Mi-QSIW7R7dAty0iAqnVwr1e0PJVyLQX9ei7XGHHFh272GvgJtFXmd0OEoRt4okvXkLe2p5DTZ9h44f5e4KUJ7pgonWgDU63a1vuji6CX8ywqy7zeBObu3e61SAuhAZXaN-kubOTBBMxfownuWf9Co1-QZwdLzApwSYlAoo8cj8DnFCXVogG2_CFTueZcXdk-VypSfEy8DheZsWw38CPGadmBlRsRTQZtlqLn6tD4cHa9KO8y-ojzkQNJjEysj-iYrPDv0Zq3GLgjvKJVRHV66y9D2sK36Az1elaoLrGqMRoPxAkkCYtKTG9dYMg7-Mgei57_NTW45Uaa9mQWNzP0cb8mAfH2dFIIs9Yr0rh6hHPWEY8APyLbm3anx5ud4F07Oa1lz_eTqC-Ejqzq-G7U22XqzQzApAiE_-H9baV8DlXjxwF6P4UgtfEEUsLzjz79tywOw9Of8Yt9OyTvdOojggi_5nMdH2f1l2mnOEtTlGa0SlbP5TjmTVOiZz3ocyHz1jMqOjs2zH2Iq1Uc6bM_XCoAAAlf7ZN1dG8bOPsZVuM67D4lgV01viiD-ma6vhGGQ6bTEUdMQW5LwJf7IMuJs3vzCKBAZuh_7fGcu7UjS-5yluR5oP2xXereD0ix_JRayWYxZ_l-kryun4JcdHGQxnCaf1tArs0ZfOpxsaorGIvQsyQ_E4Tme0N2adByO5ovBWXeICa5IbGm1O29ANmXp31xlFsJ7AqDwsR6_-kBszObqWgRfp89TmZm8P-tmnHe5MGrOxMMCwjY-AqE4qiS33HqcXHihYDAvOnq26ETaD5tGT1f2jg__NR9c1aB3KS1nlfLT8oY_LGzNpv-T_7-joTRCPg7cWBvsxI5CpRM3mM-4mdliyyESowrhBB5-rECPbGdRpP6NbCri3WsX3GjyXfVqFx1uiI2CjpCCD9VpkW2gczTLAd-djgCu6a5sE4bpYloWhKUqMeComDLxzSoL9DwnwZ2hM1SaNQBtICguAsTwelTBvLipfSJG_LIk_lMsc141PthBsLEER-heFEN6cfgvp7dUKqEUSNtfvEoaOkp_ztk\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684336351aefd6-58118289','','','2025-06-06 18:41:07','2025-06-06 18:41:07','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43336',0,'cd-form-entry','',0),(43337,0,'2025-06-06 18:42:23','2025-06-06 18:42:23','{\"email\":\"pashley87@icloud.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"BN1 3PD\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sBADTxmCsq8Be26qfAb4Koz&amp;gclid=EAIaIQobChMIua3x5rjdjQMVD5aDBx0AVh9PEAMYAiAAEgKHmfD_BwE\",\"recaptcha_token\":\"03AFcWeA7ay1vxo5H8FJ_sbSjeUbwoDnDGlKNIirZKxZqyGHSWHGN2c9QWhktsgjkyXoQGcHka9uDkOYnrx5oqddJ5ZoNwk9jkszx2r7XmHGa5NOrf9ODCBQp5l1C3n0KfJZQBeP-vYckFWzbBZ5B-d74EoiOvqiph2wWOnOcIoju1F-hW9FpymcexJJ9ooCm_yVWN-n2fKRS19uCicQvqKYGH6QOx4w-HRnB4_QR4aYD7ALycO3d6dEu3ZtRiZtvsonHDkDwBLYd56tRmeWPWLQw3kDZvKdXmKlK8sl6y2dIDywK-TtIEaIoaYQaAZCFwV9Y5FQM0e7ViTp_WSoOciuqH4nvY595uTJ1XeZ7KOj-Bnf4456NIFHVEdj5kuki2WaEzlyeRxPE8vNCi7JeSF46TtLuiLyIkW5jOJ68-NF2zCu2elh27YMRfVgvur_8oasmf__eex7fH927Pthgja91rxRXyoDHBN_cIR-pO7frM2m-2LX2r1kBtuPGM51jvOJ8eGF6ebNuyNFMhbs4C28TqPchKXG5MFVVjmlpiJum3Mo0ExQrFX9MIaZ_murM9S9QVi5IX99nWRa0YEjc-OSuE3W-PArMWRcXMclL-TeugaRBIPHptilmdBSeAcXdbGlRCAIf48XoZtCudHqdWiz2iONseyuLeYMJmushIO2eqlD3nxn2uZ-bePoXFFfmgmSY3bxq4_q1S0DYH1GJJZucWPkeJvcDcGC6TWT0-jCIANI6Ox_HTbhMQNKnxcUwbKVns0vbMtiwbZic2kqa0sJXw-yTodwTWeXsTNIeQZRInpIdTfqaahgY8TKiWPiqbu45vktUEg5gAuleqfYqisqt2byD7WPKPHxdSMFdTWsTNdy0w4WX8QFeC26Ff2jwrEFIRsw-y6fJ8wAqq3aHTGq3qN5WIwyZjC8kxUPoc_3mtnIGr79iDDbGj3i8gE1oLUUwwwNZ8-tLWB0KaOWA0IBiwfTXIA9WN_UZt1M0zaU8hmSUfJRQwKvm93dWUqIfh9pysoz3Btetd9IQiTrLp2M63s9B7AZqZpwE3qNRk2_mSpvL1uyTdCsiOBL1wrr7RHVz1frIWSw4pc8vUEeXGu3uQZtoEvjPlxP0o_D4FJOI74Gz8IvHIh7UowOMHmQ4I8dEtR6rKgfuJafgt-9-5wJHoHhc5cKk33WG4bgl-591E1kIuZ0jsqin6qccjrXnedoWJSo3Wvze5_3Y4OoqNLcibBYieRp2iOsCfGGjS3YMJUKLGlaBzhxdqM55wvv--2x5q2meOweBHge5SmEJTSEu1tV6PqCzAd4Q6oTpozj9_tdmSMHcOb7d8_sCCaKi-CQSZz6CMCqJzcVz4gb1F8UDaJn3Psuxm-B-slJMEjko7UFQuzkEMvyqXCLVm7JkK10Nmzbs8FTBvQ6XV8BEvvxzkrcG4zx7v6dLAIX7RDBWPkU9VTBIfbaJ939ZVPvy3EL0a41LnjfTmPGbDMO45XLPLnwQRPczSzYZYb1CvsLvP0TZb1Llhj3wLYT9A4zqBFvLQTtm1oIGWphSyfWhoiYSxBEYB7Koo_ZfIs2IK4uZx3xH6khcAOAqvbmjPI5tMQqzBPxGdJp3pBmHgy6e8WC1pKOSVloKDxd0JDBeNGwnaU3snFPQC88iD7b3Rs0hiVHZm5mqjCZQov1ML-1sqPjX7Hvuv7gNmFifuBuiO2--Gm7qX2mRPKeKKB5s6TQ_xrHdW1mA-QnfraTRCtLAFtD3SWYVpbRrs8XV45GoBma-15ypKTiz-7bu6sTtJxMFuKMfPVQVbtJVfHrcciB-FtlmX9PvuNOVVmOQbsPe7eVUrGOou6Sfklqez8M6IQTdrvmL3TuH4ibhFG61XqbB-oqFrqEwAIK8IgndqasOJHOlGVX7Rp0YYIPW0ncJuyPhVejHdh04-i99yEDi1BOntFuu9tSDnVflcbdpdqRjjChcDb0VrwL6Mh-iaRYWONstEYmtvzQZjcK5SqcSV2PyxsxgLpB7UKeA1fP_1uQoU2AjVrMtkdwvultoWV-HqmalTWJe70UFpDo6g32qXD30_v83Vr_IpKLIKGVJHwK8Hf1rF2dX5LQaNykU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68433669934c69-09053755','','','2025-06-06 18:42:23','2025-06-06 18:42:23','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43337',0,'cd-form-entry','',0),(43338,0,'2025-06-06 21:36:54','2025-06-06 21:36:54','{\"firstname\":\"Dargham\",\"lastname\":\"Hammad\",\"email\":\"hammadhaloom@hotmail.co.uk\",\"contactnumber\":\"07378181891\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwo4rCBhAbEiwAxhJlCcy1sruXmIGWrgZx2fqa53wPUYQC-xaY-AKkeynyoKc9WrmMq3h8gxoC3NwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7zCanD0im8OcbE4S3AmIOmVrw55VStPZADZa9_lHT8rwSZ9efCJ3Kt8XDQur_dxINIa1dWCs7EgXrY0bLQ2idIGscQ2g0zWPAUzKGVD-lca2INXB9VO57iNFoV7LfIkeo4n2antCrltN-w0Vwn3of0l4g-uW1l51236eWpUdemw_h7XxxwYA_L88HapjNS5FQ6Q2-YGa4iG1h2AUWZt0bRZ-sfKBGyvhPxyouujDAYYApyrouKNEyS2mdT5lzwwUynbk5rVGdWzVBecn1teBJ2IlnyscX93tuf6SISCYHPC2CFPQPDtySOMuzl-dZHCMKFe6z78v3sUaxY2RZ1wnvuKJtsQNe3ToFUqi06ajWkL6VPa_d_AhUqo65NzqnZjYd1SgsP8wNgLuduyRFqwnoF3I2qWjKSqbQLavl2aTTvw0VL3WXa0McUnnGQNGbre22dNpcgAdQ7bz7IZnAzmwiPoIc2w8Fcnqr2BQTWjbjKIW-IcQSHPXl8kZjl_4YsfzfN_MyT24soH-mijwLxEMIAhlc2yFfTOpprN5bxKzaC7ZM6eKZZl1Hv25xju49aL72Yf_YkMalWzqOMfx67heR_koQRGPBjVT5Ahn-XSbcLVvqM2gX5V-60ZzdUE3ehLgt3nQXe62kHp4shth93AB3kvc-iLJoh01Jq3gD3Pifvpy_qktJks9lx_GTZXLNfoZ4-q841McQ8-r-X18sqcjaH3bzZQ9zalknMBqg-ZVi-DY1CZekT2siicBlWCHWTChsVQcG8cyafSnNEF0tYRnNEE4qqGT35DjuTlhIWZ85nrd_F0t0B2SXsHRwhSCt4FTxGIpqoF0-Jn8RdTSuywKrGR891YU-gsybX7m8TGNLq74obyunOdWTnw4LTl6F7LwdfTGbvdHpWNNa7jVbHnyaogjjVFbrM8lCIRWt23OqjJzSW2MEAnxzJlGSlY2cMl389ApDgaz7ZLoCEM4eORVVnlwY1ih2ro2WqSQD2nDGWUnsmwz_0CBxoK-i9w95hIUCgRn5efnT9AzQEw_CmootSKR8RAy8xU4fRMDp4uyMVOWzuTSgYRWFasReBMrLbD8EqDLbpDUIR-GFuT1HKDEgFyQ79Eed1tvau9aKyZUacXAxgQSbm98qXWKywTOTvBp9ug_WutbLW_aM8O8p8_531z3Tyb2ycuQSOHBqQ35Dl-dhBzFApHNB3zqY8ixQXMdUwa3bnTjTiBL3i_QmrR2VHMvBZK0kndE7YmW61DAzvrk0Yx70y4r1Z1yN-OJbSFV65UvAD5l3f22ZL7E1NiTl6ZpZrPw6RyLdWYWuUYI6_wG1JRWJlgLSmj0bKi93MQ3rQmddLYZUrZDm4CToFaaU9RhT4JmFrHUsrchFfVgKmVHie5P_PWJ6DPLhSzcLGWfQjTKe9qV9OHupBhgXi8xp_8J2fkCWkgzrBYnzFQcu6vNBzVQNuZPt7P47MALTZkcx3qgpZOMdYUqqhp2DAmBtqe4zW1D-A1p-NhRqIgRfyvZWNwpnAJCjiqMLP_ZwO9qSAcSH1WAESPJNGvRlSooK8B7Cizso9WRNyuvis8nPMoLAMv4uWTdyeZSIrXQNqUucRdixQUt2X62ASAIU8ShgOlmLpDq7gHodal0wtw98-rrgT4RZ7Iw6LtzSdUTRpSEk_6tBdF8m8ZKyY7yQPYufEuDeqNqvF4lb_Vfym0L08xpfqhPxkUZOJXimi46A1LkvqPZxp_pltvcyk9LUDY_C3Qum-gbDMm8evIZQQElcIZ6RnbHI1LqkAIzqmSeGpmplLhKnQH7DsO3nYMR0h7828-eYb66SY7MoLbF4u2iBs7MsiGtDq7o7J3EgFHmO4VUzdpq4XzZ--s1Z7VTiO6nePk4ID1orJqS4WRbxYI-XORQ5Hgd4GwZnnGE2f2OgqWXSKLAZT9-amzPPd-FOszxOD9pcsG3_FhJ-TbVqm4Q_debfjQTfS6RZndgTYNXxT_4HskX5FfFaoNOFfnATCg-Q4jqbIFJp8NibQXXAam3Nt3QOQap7i1M1M2EhV74dAeCXAWaroxRu7Lg2cBl4BQRZOQb8yqAnmLhCTTO8qCJz8817GJzRVXsqxs2CZmcZqfiIoS0UXL6kZrzjpu1tTUUJFFxqvQ2IdmVo0j6f_NR1O531KOkKvZSxmAqJ4TMQDVgdjt-ibdLRmTa2jKUjvnRrkLQS6GzyfeGBk18wISqLKFbp2Lsoq33m6GU1zBmhArRZknz8fV4k3Wn7BecstbabegrRctrcBiOoM59-_RzwoQ88OxwYUryvraUEnuVTyZGqynQvVUf858xh3MaZBcheCr9uS3w\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68435f278be014-12070942','','','2025-06-06 21:36:54','2025-06-06 21:36:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43338',0,'cd-form-entry','',0),(43339,0,'2025-06-06 21:39:33','2025-06-06 21:39:33','{\"email\":\"hammadhaloom@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"0\",\"currentpostcode\":\"NE8 3SL\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwo4rCBhAbEiwAxhJlCcy1sruXmIGWrgZx2fqa53wPUYQC-xaY-AKkeynyoKc9WrmMq3h8gxoC3NwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7cM2U4ae51AnAjgb609OXf20ReX3udM_H_Cr4FrZ_qXEuJ1IEc4lFI8epmzFs1Mvu1qK-3zST0jxpDE-YwY0qzcXwuHoYDLk4ILr2o75jVWhk07eiEBKKnzG24_UIeZHH5NmxRty1isaXd_5Xs5t63HmOrxAJKo_KrRQjGOLPbtNCWs2DARmHPUgoyPDdJtJGkJNRJeeC4oWAZ_uNOOdLANR4OD0nyZ6EBMGkEDG0wz-u_NiNXcyw0P9dihdiVNhcavoYvQVk9Cn4D0lFNka59mXeAfwauPL_SRZqrUWqfHgLtKwQOhEr_PRAhYdagDqsfr3f8ti2My00RSZaKHq2OSXPVaLR3OfuGiM-diyizmp_VYT2ofKu-oXf42sMCukQYF3F6iInKudsT_7buDPtPMn6LxjRDCx123rGlL8n7Y7Xd35jvpAPgzC86uKFJA5uMYL4HcIPFc-AuN9GCFV7Y-R6E-xQa9N-bytx7T0LbdHK7LKMgmVEB2OIxIvruef5nIv46WsFHvLsCtDB7TOkdPxGZgA4J97vu8nkrPfxpUCYWnxIINhTf9zsmfI4ZshGgmL7Ib4eLLsByEr2KrxP_GB_HBWIzO2dZ7y-A_5G1YIGVneVpNNjp-bomEa-_hFGhae6yWx90Hf1vXAOJtL1xilOEdT8Hnabqtsh8Ddv4h_z51HEHrBlRzP-RSZepfVmJwum7eFfZeHauPpn8qtlG96PRlfs_fQyCT1dOPyWtchiLty-c8dltj7yjJoJbTfekbjh5SjADIT9ZeM1C_ZTTDywEAFw3rG80WSUFKErjlSrhP67FbK_RM04ffU0262Y1hJBfGhu4zyVLJxYHPhz5q0EMgmTSfHXCtiFW2LTuq2_6yc3bRoYU0K1wEOP4AvqecIsG-t0Ki3j-rr9k3pmyEz_dKbjs_UHq_8lsu3Kt0Z2IN_Pa1b71uFwRuIeeESk8iCG8sOiOLOQ0kvaDdwm8TkTz4XxGpD5qAlw-Lr5MyDMfBnf_b6Ue57fL2GMxx8Pa9MB5-NIAkNFqkWx1xhM1C4Jp4Ss5wAH-Kak1ZZ1THprVXX_ZgaJIIfGBrj2BM1lsD6TaoNWJw-O9dtZwsOjZlzszzlezPdjkyXq2ks2EV_N88N58tW7j_NJMbbbCBO400UQuWflQ2TYTiRhsTO6lA-BorBUKO_mvstfMQcYGKDUhK1FyMSebs_J7m0DC80ABIda60iHCNsKq5l7bUAJzSj4IO1Fm8jT1gqEkt1IZSkwOaV5P5DsyP3VgXS37AEWW55xIXStEeWn6563i1DnA4wWME8K4xLj0Syfnq1MsEU6ilQoQzqxplFSWHhybUiEqx3oPnNUu4BNmlVqY6_MlmIrxrXVOLrokUGrwY1ByXQJi28dXcCjepQ8fZy1UnaabtiKHwMAF5BMHuTg3ebBqwhweTLXhC42cZlwhfJiA67OrMABwiQzF8Oj1fK34ZO_Hge8JxmA5zdlBuc549ZP62BSfxhghs5f1jNglh0y28bp8QmmJjzAkXubGKbOrFoSVI8xSEHQb0jTASzdfH-xikm2TH2lxLnmLDr19kPRtM2ZpCL_pE9JCIwYezO2uJ6YS7i89xpLvRjK-l4dHPJwFGS458uLnVIloM75MdLVlnkksIrSnA-3RJrG9KfRHvMSMn1N5izvU1FQqnc5HRNb6ZXR4aM7SjwzIW9wJQX0VshvjVGcrMbUiT_v9A11IHFnQwQZKdf_Gl6fDajY28MGTjONOvaluqkQqkJRl55paw3rfWH8IpD-ruoaSA4T4CMU_TJo9WAK8-fjdAY9e4Z8nSH2TzSkRhRJ3t2Rz2a6pBiXj7Hps2kH8elwobgXuvJBDxyQ77RJZEfqDJj2fWrdabD0VQ9LQ46OAeZ5fXsWXxczKAD_3I9KysQfP5uipJSatnPS3KF5JQHfwJn5D9hs7H-kCsg6Vs9ZCKzkf3K9DYQfEEW7_E6lyyX8CTF1VWWsH7fKekFJ90Ppq2TdIJ_W3xWPMACvzdghd_goIVEwgmALd7VqZCYqs96ZaLzEYf0P-v3Zdvb4D3O7gtDX-j1447nkHyvnMZRyiSgW35Us8rapxzHKHm9WCUB_BpxH1peKuWPBkpZcmZJAgulOKXH_Zsvar0SaRn1IMPEaFHE7SvMB5NSV_JB8S_foUe7mud4HMpp0gQixRU4Z3--pjCUi2kMMF1eKiXbq-qtShcg7pT-wlytj87VnZPeVGF4Eks9h1XmZVBG_9kymarLCZfrYplbYmRANoZdNuGvKP3MHwxZsIs3dPt4g3075HmgJZ1Pu5c-8PB4iews_h6FveLHz96eksmw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"10\",\"livingcircumstances\":\"0\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68435fc9138400-05625135','','','2025-06-06 21:39:33','2025-06-06 21:39:33','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43339',0,'cd-form-entry','',0),(43340,0,'2025-06-07 07:49:19','2025-06-07 07:49:19','{\"firstname\":\"Kelly\",\"lastname\":\"Green\",\"email\":\"kelly.seberry@hotmail.co.uk\",\"contactnumber\":\"07792401430\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwxo_CBhDbARIsADWpDH54RyTbdYq5KChZ0iSICSZTd7gF9Cczc_jHTN-rp2LlL-k2zaNlD98aAlzbEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4yILPfr1TmAfkaMyLR3_p2KvIBqifrMN88f9ghPaS692A00I3wbpN1j_NnGBwuz0Hs2LmJPz1pgH9018nTEBpBcuyJ-N-NKY5fMVLC_HL6zXshu_5Pd-Z-aAVZ-8zDNbkXMghrIFLbiVe2qfz1iFByvDkdvc2pjvV7TVrdOYqFca6o62pRKo0CXiYPh0F3XMruQG3hvDPDTFJ1qiw0DAFHGX5pvourtFXI88-yE_ilfmBFh_QuHrjvCnm_B5Ds6tsbd9EFjtQyH3iA9fo-Up5shGvQK5YpCX5jsWZ7MSqa_rk9fhiOuVSIGxK8p7kGqggxoD4srrQ5uFJ8IEB0iyU-OBEEcJ2YMy1EooP9djERdSiX3iV6h1h7omOqiKm2BZJzKI3dzDzcOWOovJwJqva7JzPZSkEW7SFrtkwkXaDGwrkUXdCrWGfGHoe54Y7cquoXTPaP7bn_RBfLSKHDrYUuXWWCWF3ot4uLTnZAvbMVesVYwT2gRISitgcWPSM1SK6ZIvoIu9iqiFaZYqzoFKY9Max_tzpJmo3PbSKlAMP6sFd_s52DVM8Gtu8I-NJoBjUlXmcjkhIdvX_y_I2_kZcA1wJyZdL6JFdvJKQ03QbNwj0Cap2ndY_p5E6-EixWNg-By1Zi3oqt7D6g3ToZJuteS8VG0PfshHsltDiLovRMa_gmEHA3OBSPMGqCGKmQKNdkLlP5iP-Fwu1MkRI06scqoXKEEhUHOOjbyWfkjUL8aDv7nFxs32MSoaUC68dTynsfRf5gt9vpHQzzWwL3IAFkia-Cp6SviE4xYYp6_u07s4Cz6q5KpxgytdMeCvOKeXPHSgerPXHVG-wj3ukVYu_HdSFRD3hXSkWo96UmM2D8piW1tHz2d6r1YGNwoqFd3IaHFKdi-yog0ayoL6PXUuNzJStOaNHTR9J4omw6tTWybajOvCx-SM96ifD3h_YA8FF4bJq0sS9iZZ7OsuXInZ-X5y1TR08Bht8_qqqhwNtKPbuOzAFid4jz7wXF8nEO1s5wyPvHFdrfBDjAH3ECfvpiOLGzSGIicAU7186Nm2eFsHRyTvqS2WHROhcE4gATuFUdhuMnJjjeVRrqp0cZ7JZcm-gI9QPz4MAFqhkRG2hAtPACJl2dS0aFfNaJezlQeSzQl-gt7sSFXrc0l0fVkWmuZeKzI9NpF0nQ-Tqm-RBQwXBf8gP4CWeZWXBysqmWmnA_58uS5P03tQWQ0DkE0WUQL_6ydIj1KL3zaflRIH196W2ib67D2X-bOm4qCaLCkNDBY0bMCgwxA0MFoEAL7GUHPhFoN3nZXG5ekyHPXaoS5QWPPoOjPpygYre5iti-z7RslOCoxwTOhOfTR4apsrMtUuFkztmtSnVpu2UQPt-hrkP3RoOVZ3epkG3xDAXt5Tu6phDCCzCtY8HMZvFEWc-dMw4uhUSHqYQ5WTZJJ3ftJqJyt4B5Wuf6GIK502y8USDxt7gAHJbJjIEAsKh0X9Tbj8bcihHCFQ1iPG8CPpkLIhJeL6KFnzBDon4xDMV3CsXxFSZ22L-35YWilVgAOqVP2NnA3-3tXsTruB2F1SfhqKZh9QUJEt-w40Wqv040ysmqFvqzWGLukU1zybAFldvTgwgcCL0BcrbnEWcAjB4qfDYTGiKiXgBgxCMUlIhzXrXnCW6Bv3p4EaonpFUh6wslbizP3zztp6d7e3luYlrT-lJMkNWbMSnhm91PPXLKXrTW2SpgkOp__MmaQDta3CJ4WOqY7qzH1YXEpKM4dxNd6JU0FajRtEPOY_eF9TVsxuZ7H9EedVNyVawotoA9r8RD0m15qP47c4LVmXtqgZe58i7TTlAdFN409Q7WpmJ7w2nCi9744qw73omM_YLJwXmwoZ1Xh_qfRB8XCy5Irckl7h9g1nM4AkTGCfeEwGXHtfkeXFRjQMjrTHr8JpaNUly8904VuK2EZ_pq_GRHsy_fMNX11hNQQ1H-ByLtfw_jxb_9ZGOwCzd4q74NcHl4AUuIMlr81twgVWZwFoGQSNue2eO3D92bZi5W_SQMhvpxF6Fur7OrYNjBNdaeDoAwC10aHSm-WaC-mtk5AsAcn1-sVEuZkSM\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6843eeee7093b7-16933879','','','2025-06-07 07:49:19','2025-06-07 07:49:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43340',0,'cd-form-entry','',0),(43341,0,'2025-06-07 07:50:55','2025-06-07 07:50:55','{\"email\":\"kelly.seberry@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"Pl24 2aw\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwxo_CBhDbARIsADWpDH54RyTbdYq5KChZ0iSICSZTd7gF9Cczc_jHTN-rp2LlL-k2zaNlD98aAlzbEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5Q-1U81l_GFA4rSJhPGQw7P86G1nVF-GKHLtKbGyX7WeDliOZ-GSx9aKuOBMWapoU5PV92vf54SyXIX_0u1ItLEgs79ImSCpL4pS_nFOcJXp9qk48ZoQ60sjO2qeHIfqh9SyP_hI1eMJBEaNbcplspKI47EMP2NZW7wwm1Y9IIh9yBpReItGS7CV0ELhQ9ucp7CMYSZgmTyfoIJjRVxtXAZzfs7cPhmZEHeGMeQoKaRQFlg0jmbLkqfiHWOE1x_-s3AZz9pINCAksgfc-8R6x88UII4Rp6qgV_e0joowkTSlOYgKZrhlS2je_pU6uM8eu6mTotiUUkt1RAsk7vDKvTWfvNHwJh_fV0LR3yBCUaY4rvZ4RKf7BBwY4Zlr2ysUd7t2oc-NdUHxkXqMdYx0zpCHKR37m4tRH4YVlsYy9KMRsMrcWKzYziXSxm-3EtE4lgWsZ89QtOgAuOrFscLr2IxK3dHQ0FeuRLw7TTuXJA8EP9_cla7yqlCVZFPO_cUdh7B_s2oqtaJX3z1EmSTcH3zv4DJuvYBk-S8chjK_oOi8-0SKQKtVe7ZpnyeN-O9cUF-t4IVtGPQmthxpTWPkInjzfOdwXfW7QR7OYWzd3b2-b6kl2NheEaSy07IYbEg5_GYLmqdGCJ2bbNacRX2RyZglKy7QDRb1lQ_479SIULk5skDmX0djhbDYp6Fe96--vKWeTX0mrkm6Zxqz46zQ69OMrbwsDC-sJHDMiRodLPyi_hgHfs4ANiw7tvg_sUU7QhlQUShuBx6V0kJo5IK4SNg_fabJGbAGc_PBJ53let3qMJ_gMESSuzptev9yc3JwpFirJyB6TQDVxSRfLSfUGvH6wKLecTH-d_C_pwHFrDW9AuBn63xoVjeJRgO67gQvM825EwWpn82gcWJc4kmeic-98w4E0eERfE48LzKQp_u5QOFxPuc3F45SXZLJeKiYM0X-yy3mGpmsWmTVvNg3_haT5n0og5_fpY0gEzGWBdElRkJhLPhlIuL-ppTJMRCdFkY2dPribOMxumeHMHHGGFLU7ZG7DDgQNNgxs2-o_bsBJCpWn7zlLAo1S_b8_Lg3itqb8YVW_CKVoJnknlqgSy2moHzeAgqtLavGShA3IyfjmfpucU6ge784dbp0O9Q3c9YxN6HeiRt7mjHCpuOOwRt5cB5_6ddP27wmLZnQQ4uCETJhaHn_KFK2ng-b8w-gffhiiU-vw_XJE3DJD12waTSkIfvBqNZ8V3aS0UyESjsTQ23N8zOECW588JSfb2Xd1WuBGTGwzStnK60H3FR-oojNnSMX6qEpMSbqIsWM_PajDKeITz5XV1OB4z2owfEkEYACM9mJ_X6aDI9ITyKNUQ2VLcu9Yp1Q1imZ3CtxaYPE6kYD0apS9oCr05-NO6xj5IbrcLebSb-20hwrIDPZFL6w5csAah2bz23f9OEjZvC8w6MvYX9LkL4TyjHD4fqb3TnPYisjo8TYbVCLYOiowMGSlA7iLruX1g9d7BhZh7ZgXjDy15555zphsFEnnclhTAEfBwlig5aLMqEMwUR-nE1p0FGCUZmzBntxLRNteafuLhJIRtsa--3wx49f0LVvC08jUelPowkpjQAkXoorhDhs5EwRgwK0hW-DcHOyHK_lt14Scv8t25U0ft8q-pQhFPEJh4Zvtrh1dn0fscHpToZt8rKMXEixj7QS1_d7nRile1ocgOPC62DcTW8pxJktnbZKBuxkZ7FvoCN4yeK_yOFpaP3J2WQ421omOS609ps-p48i3Z8aL04Okz3InV32TO_1fLy60eAE5xDk6xKC_e3CJnUa1-JLYp3HG1wlURyo6-H7VhnyeZxhAvrtXjViJJ2s0UjAycZlQKJhBwL3MYuwXrHmNwJtl11IldrH90dNS2FVIZ63aTmC162sGL_d2HKFP5hiSv6SiQsMracUeCH0yU5MDtfmx8M_HwVY-XaLR-xdbQeVHaR02_ITpIRQRBopWnqUh0QyStKYH9JScjk0H5P9pAgaK1Ii7LpqsVNBs1G1uDcmVwWEZFQIgsHPELBnx96jB-pIR1_w_aN7taGbZVLI2kZcPrVtXoeZQc1pwd8BbpAu4Jf_kQybgaLFJOvnLT\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6843ef40064b28-95806221','','','2025-06-07 07:50:55','2025-06-07 07:50:55','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43341',0,'cd-form-entry','',0),(43342,0,'2025-06-07 07:55:30','2025-06-07 07:55:30','{\"firstname\":\"Kelly\",\"lastname\":\"Green\",\"email\":\"kelly.seberry@hotmail.co.uk\",\"contactnumber\":\"07792401430\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwxo_CBhDbARIsADWpDH5ZHv1ZmGz3vKHiI2RWto8-Y6M_Hqc39k8Pt_N3Jd1Ad16KjwgZihgaAiEMEALw_wcB\",\"recaptcha_token\":\"03AFcWeA73N0-I-ugW32f58G8cLKjVpJZapMVmsHHmPgCxh7LUy5expwkN9jjj93CR2PsQYc-eY0SuEpvLMXv5Ldiz2cDnQ1R7P5a9e-izoJazpG9va-sXHltMuYytlamFf_GuiE2Tc1cnEG-hhm1Jr-4BPZHneoPjys6MfhTEtl5ihoh5TgOYRb_bO0s2AwKj6Um2NaliaF7Wsxf7w6UiMDY2ueDhA5c2vcVtt3mpVzgiPmAZ-NO3QtfIqO2uJKl7Ag7YBCeh_Af3iuooI8rH36MuP1oa3AtPJmGZ8ppecVz3r_PfBg-upcC6lA6x4fdXtPzULbd5BfpCPCtQrRf3gTDOr0dDKAN0oZUoqvPGJa3VxDU3uLBKtwQsjtHOUQ0b6suIFnwsoi-vfX85c1ZFcAlGkFfYaYQkDsEIauFWExVQHr-yflq0Z-IAfPLzgubWGfXatqhROVz40ff6Rc60rHiQlVhei2BEWG2wmWVcuDDcwqvsah751G4Vhf3ZX6AUJ60Lz50CPdD4lCfgjicQ3NyAEkMAIyupk9D_iRWNHov-cHBgpJNwQPG919H5bnQ8VYH6fWUojskgm2HkUOk4Ig04t--Qok4tNhy6B7UNhrgc8hOCyrHhdVp_85_q2aJMIKD2Q-jZP5LDn9WouFe_1USECr3JINdX1LmP-BKd-UTIZPAC9HYFUL1EyE3Z7v4O0lY1w3iBmdBcgWJosD5zYEcKCyBw63u_GaKI_-mn9qaUvehU7sa84pwPWj8hU9fv259wdhgCz37nEcK1C-lh7Ol-VzmEwmdAloIEqcAYmGbY8qOitL90B9EgPQ0od5CUUd8KjaJjkPIb7jOtFl7bNP3HMqJirK5R36E2BQfsTXY2ssz0qWFY_2YuokOzv3k7SmRJFE9khoWtypgKMkGX19yi-9AySFDea1HYfOfvHnB0NVpaYt3ZeU5QjziqV03UU-YGmusm9Y-cJnwuj73CkNXJnZvSwAlkb_6F6wa3JiTl6iig80JKNg2YNl8tHPv3el_WuC62_M58e4TujpJzwzlaKd-5ItSqydIx3XJ_10tBWbJh1pJcWSCSDHsEzbZ6hdc3eryTJ-AWLsAQERUt7K1KTPVRQInhawJJPtsWWvKMdsFax6Tf_wnF-6ntllq9GfW4ug73E7oJ_Qg0rq8O3Sk1YeU50t1KEE6xZruqvBzWqz6iVMfLNagENNY9gUwBMKGinAEzho2GDyiCYHW3f_jFl56AF3VRXQ4fOtNzAhWc0wD57S1w0BHLdzXiiE19g9dXkRGl1WIhvFeVVpALUyIEhyGGfATucAGE-ctlB21mtpdgCx0DtI-hHMedn3EUHa-l_QgrOf55NKavoD7jNuXLVDC6sCY_w2gjRPKv5GJra6RHUuvzr0AsaAe0lkoe6MKX9QA375CUJOiBOmYiNdIeeTXc9nWCTjWQ3DkPRIwcs-0qU8LvpOfgTzlmPEhpOsxX9H30WZMuI6ztbFZM3uhKR3BxVWKeinBPf7i0W45ZHoE5PTjEt75mCj0Xuh3saIH4FupocQZ2g1CoDhkIUq9SFi5j03paO9_ci2lLayzAvr1iMLnsxKkFJbGJ7bSmqUClvKKOiErWDAuCJCu3WEP7OfKzWunkPyRbLr1WhC_b0zR6K_9OZ5UP64XBthjt-AHfowmA85svPjuUmumsBelgmpE_UojZ2il_aD2HXrmIwUWZSuZSQjnTr1T4IC1zlXNaojQpKLwwGJVCSHZC9SYBl03ASNKTt_xGT5zVSor_ismk-FUgaNi3mLlovvhkCeYWSkrusB34DIpUi_UDozYt7QhSB6VmuZLiIMxR1a8SzTv9Am8GI2PfuSZ1oBk4NRuTbzovyTWj_489M2lTJ2y7-mt9u0PR3lUII_diPKUrbM8E9P4wE6Zn-hYcvuuoJ17AO6vvdgGhx87VHyNbQ6aXQabN2zcUzx63FEnavkmfnz3X5uAug99xBT3wfN2ZHiQcHAZ7MSLqijU2D5UhHlkbv0MB-DcdVneFERDR_59XL9WMdUwXOUzTtJeyGAdsrm6_clqS2K7y9DJlTib2Y7Q5MLvqLWfzh16WkMuJSnk6epDqRN0CFoE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6843f0690e1e57-69539751','','','2025-06-07 07:55:30','2025-06-07 07:55:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43342',0,'cd-form-entry','',0),(43343,0,'2025-06-07 08:57:20','0000-00-00 00:00:00','{\"firstname\":\"Elena\",\"lastname\":\"Mitova\",\"email\":\"elimitova.bg@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uIUSTIhA45eQlZipI9QVpJg&amp;gclid=Cj0KCQjwlYHBBhD9ARIsALRu09rRGl_Rqm8Y009tL9lz1_yqCrHptUtqkqqXunWdjsQ3fyPl581uCRcaAnBBEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4H3G2ixgs6xYXc-X4o_pyz5m-KXz4bih-FmIG6CHAjk7FihZNf2r17w4SU16mztrwelxcSH4M40dFElX2kxciS23X9Rm1blIojb86e95h7q6rxEwZB0fa1zZ6U3C5HTrNSXQztTpfwJFtKx8roY1NqcFDdkHAzFTuGCfVOBH-sjZPy2mK5HAZ3r2kqiJIZLDCvq0UIT2klME3HGSM8Aaf0_mlkVK9DuHiBv1wewYwKKkG--7AlqKo2qwjpKcs-T04pluJIM1HJxTxMmJGtp-4yJhOiW_QGSpu-yeVmNrqHoTmWTo_hVaGOMYHHgCfY3xnB5tZj8d_gruFH0Wo4jZ0PEJ9Jmy5cIeDJ0g4qNCi64Xb6_Vg7Rm2d4ltRxz3gbcClhKsg3tCJ5WlypNYhGxohFoMzKDqXao6SQEC8ZgoXEv5nP00C_P5vdZfu5PBPMza52IfrMHuyd913ylhNkVi16BL_Qoz3NL8hTcuOGHzCYZnv1YIEGZdh4L5S9Q51CEnOQF-rQbI3-8KHmmVxe9ch5jYEVzQNpdvVQfrVXIG5wSjYghWWkWClfKIuOrLTIWl93LptmE-Dy3Z8DIBMSI87Q8GC1ktf83qkx5dCj8YDtSa_csE25h6kEMXmhsfrsewAF-qOKfRDZjsXJx2vbR0YBiBCl9xiNR7FVYE5DgmeWEs8vnOTZPF3idJFOmn3iz_CC2dqJtsCbjLjAKE1gNbJe7PSnmBEOYDe8KUl0_q2tcDzwsu34OKGUWB6txkyXOAETxRjT0Ypiz_TfoVD-VfU9WED0GB47_aUzURmnECljwtwCB4lhVHeOqlLBhUHETThFpQd9HVBEXG74eu3ZGIGNVC-S87HK9E4RQ9vBcRhO9f3XvO-gjaCiXEfySevOrMIA0DAr4mJ9lW0AK0jpkvlp1a4IV2Jtfdcl3BwLSYMNadgpOkO1Ui5-KtBU_Z6UIwTe-XQflv_r-uk-0qe39gaubPF_7qdJTi3qFDvI5n8zl_ZXqR_AIMNwQjoMvKuGougGAfScSXOON04zIGiUhskP9S4r-v66NdlzaxOKdDdY8ASCQ6Zhc42oTp1kaUuTS0DoGoBNto5mpc_fG1CgS4HaskXicYjFZAQcyqV-fl-gGshc32CjqUlfn1bK0ubxIUQ2JmA5v-5LAZKRTTEMedpYhcWuUWdZWQTnBFzKnNLRa-VsotAdxqoem3MAKoXEVNDRKo50kQDatkvsPLx7pW1fUXoT0KULzHxv_GMXH43c2YimdnTonLLOiFqUfs0KfaseQrgx8AMTszG8ai5FBKU3AWdh7geOsiF9FL3Z-dDtVyRXpDP74JucL2YsvFBbd803tGdDq6NNe35xBx5rR2WPN9rMpTq7u5OXUf-9KZ2X7zUcWJkJIILXiuiHflxAjW0PGvtUYdU6avW3C9soz9oG-QT_dtJ4YjS4KdKW5xnYQ-Y5WqTkV-JEnykxs4TkYlH9HWCv38xOP3N3Wdqlj2_P8XSm0cFqmyUy3rqeWQiOU_C6wes2BMTpmAp-hEZH8IgAR33v5lDUedYsX1fch9bMbrPxN9C5kiiKBmC_jGj_pNGxyo-Cqvap184oUiFmX7ijfwmkEhEX4PAiUGG2p0GowZgVspYMw0W_I9wbcvd8Z2hJFVY5-MF5-kih2KgfDY04eVlENytt8Tgt1pDzi6SAEUA1rZ4SxCOQx7qpwtqKYorJdynM5vO0Z4lQ32DmnFxzjiqg3e_2_U3vVvH8EOXaP4HN05DbZoIz0lPJGWKIMUlkYQejegs2qL-2b8EyJdvypYtivgKdouF8AWYg56X4AhMSY4l3fUoRkRSrSssUmI8nru5ecxg6075RBBuxdTsncJb1eUmlT-sAssPr8uC3Xpstcz_Ac9-zMZv4ni8bJb9ENjMiLddPi5_lXod54yBdK1J417JGkEsTZlJYHZtXNgItuKVbtNUq-HUWuW9ZELtrpt9se9f_9I65juT69XxN63Bgn19lwZ9P4Wzk2M9umdhypolCdy7MQh_gcZmT-rPrOjQJsdjOtavDJDudObv5-N1_GUmXoHGyjpF7g-lrSPEKQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6843fef0e432c5-07667319','','','2025-06-07 08:57:20','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43343',0,'cd-form-entry','',0),(43344,0,'2025-06-07 15:01:17','2025-06-07 15:01:17','{\"firstname\":\"Ellie\",\"lastname\":\"Pearson\",\"email\":\"ellie.pearson10@outlook.com\",\"contactnumber\":\"07972847330\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sm_qoCXkmsjZ7iDtgZXEqg7&amp;gclid=EAIaIQobChMIm7GAy8nfjQMVhKVQBh1BFRqcEAAYASAAEgLEKfD_BwE\",\"recaptcha_token\":\"03AFcWeA7EmsFwCENm2_rlWRlocinUJwDQGCrIoVnXhAkPDGu6bb__Jd4swN0zh6jZoUqZs9rqgn2tjokZ2YDcD7jg2BH5Ij6BBI1q5P4Vs_HwDjmWH6K6S0JsGKbYWjN-lIQckXwqNaCvGv0hLCi-ZouNx2YyXDi47Z4GA7B86GFiaBIJtJmdVN124ltE2txmqlLuj4R-i-EzM7J1K5aDHqQSN5IoQfKqH2XIc9NhoSc3sQf_6yMBKGInfiM1_nXGqRD9ClgzUZyKAuD0dZyEhk3ZHt-UzhenhwVO1MfB7Qv-MOh2gYdEBmKwBl6-4DGfIc-0qSw30qxHr3CFLKMOY6eHifeoQORbOB_a0C2thcQAWve0D5mFZ8-uWGJ-4qMG3hheQ_QbXr_xXGvyBqhF8xIveBnaY3TvSeX8mpwYlRhF87KX1D_I0kYTHbbZj0XuGQ_lMeclct7p-UFUK_jqNU5TjmLwi5KB_qnwjnNHc8Zng0q34mCrUbNAuhHX1L-zg83K8swDnpOFrHI81oojucB9syWxcd9QN5bpnysu28RcffA0GZTMYZruSjkOCJTk4i2lo-jJRsMgoNG7LHJNQepQbp0-wPMfoqkFBIvikp2dOSKZe7LW0GO5cfuraQfI_3e0DlGBEa7zETrJ13yt93nI07JUGqqqb7DIu_tpnCxrdvZUdEq3Ph43GSklY4NBl0_aOfFsAtjQhgk3Xe7a8PlemtY5jHyQWvHyc7qbjTE0khAFJtFmDqgsAWTguk6tuOfkUkosYWu0Fz2GBu4mURSpigTDBspky6Az2Ck_T_s-k4bY1GKK3IxbUdnMGpyFThDUS5LSiphl_wgnQG1Uy7XRdoaNUb5-Z79HdZMnNUvVT0eDBAvA2OzioxKADYkbVPAzc2PP3MXCtpZRo9S3dGVPd1_W8PFEz2wVRzyketM3unBMY4AJOpsCDAguxQeF4SubTba56sdeI2DiPMAPYMJnAsrPkeEiRuPDBn0ZXcoB8J8d8SxfWXrMwjbp7-bWiDNvAhqrtjRCfLitsbiOZ7XC9Ur_sDNL298hRPJgTeFq0SFsBOUgO1rY9b1bnCskiwMa0Tz89qKtUdr5KD5MRZCVMnuNa2a7KaVvrGLX62KZFZG8gbSVlNKPTSHZaPQALDRdrKlIYWzayXOPqBbQWuZrX9Uu6zDrJ0rh06WGD-HSkU6DZzlsE1xkRcpG-LhIwoVXdiVAQYcyPOJQGh6_iDXtMfJYgpZy1J7G0SMc47YJpGubqxt774XSJl7z9Uk8jnbuvrsgrfe3NwjIgq9TTjFn3GruwWM2fE9Ym9wiXttltL5ohXdfox_e4pPbkS-cdviyWtRJ5QgM7rf_nsOqVQXUikRMkTenzDPwEMwvsSnp5IedQw61fisMIk4WOfx3VFpj-Mot-R4j4K4kx8bFdazR_uKiiLutd_da1jNDwgldtKPKAgYby4InRZKWCA0a9TRkk7EsoVr0aKLoATDCoqxc-mm4rZUCzyB7Qi89lN-2_tSCjwaDyu3R8letwnKDlguifOvDH1B90l3PyHB1gMRSnpVy_xSVDChBooZ5xNPwh7CiUuvz8ZyPtFCiB8BxgdVlw0cRG3hdcTZw_lKy2TkLFfE67nxCqdKVy707C0GURgbD4CGkcUEeqA9bYAwck9_4ZDPJ98oNJabN-roohaq6H27Mh1QCpso44fgQCsG8idGFKHrGBeefIU9nx53pWsWSPgy35CCg_ojveA_p_oWRVEu7KAy3Y_zOuYacRa51CNeb3axthivEhUkqi3zrXSPf1SEoEQ-djJRKVm5bWXVsjb4OX7vYBXulJiFi5BOn6YvMQetVOWs703ZKhSRQv9e3JJtdnYAZj9t8rpDHOyGQiiVCEioM7jytwyNSRqn_-w5nPXqaKnaYUbhvR_QbuEXmc-OaluMvVBfzB4JDHLYvKmtvgTzwcuN3HQ3XmC6pQnl-c9IWDgH73nhJI2PsL7ta-hQoJ_aCuApVLsbcrL3an_w0CAZ-NAc5-m0EsemmRp4Mrulbpe4IlHuCCJIJJZw1koIjVvQNdvByfm-q7zTQ8oPk8sZlgDK99ndi5-q2vBAfsSDoBT7HitrBDZn3vTcT1_97aXnwtvkkpaviPAR6tM_KU5OK303ixVFz1buuueNb7xisgb8-umG55DStOBiTF0t6XYB8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6844542f89d7a8-64053869','','','2025-06-07 15:01:17','2025-06-07 15:01:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43344',0,'cd-form-entry','',0),(43345,0,'2025-06-07 15:09:57','2025-06-07 15:09:57','{\"firstname\":\"Liv\",\"lastname\":\"Richardson\",\"email\":\"livrichardsonpt@gmail.com\",\"contactnumber\":\"07957401746\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy/\",\"recaptcha_token\":\"03AFcWeA4IpZSauZVsQDZJ_Z0yrIKWI2dJl2oNVHg_g7GaXebUjO1lPGUXLpwuX7a-TfA60WJNqLBjw-CRXalwP6SQ4umijEC2UOBTIkk35xSfNMHNqm9k9ggjN_4eB_9H3wr5tWT2OY5yZpW2OMLgm0Qx9cxwmdhinKhV0yExLdYLJgwIUEkhrDDvZAQCQayu8zQd0aJ9fUJft_85Z9EDSjfY_1AJE7i7CMLrnXiY4DQood_HbCEmafgz8O4jTeRGEzr5P_GTWZPrEj6UQHxAKmDSKTyTxnqM0kN65uhhhX46xBN7me1_XXRVjKDJSpK3S7NGvOon3Y83SC6QILBv4U5N6Z6x3_ZgS4I3EbjN-fkEBQ2Lav3tPJwIiCdI1jrvVGxIrpUv6ARVxrn8AvPiTu_MtRrRhDRkFBuTRBkg6svDkFbPmoDQaqzLoAZ88e75WWyz7gP0uOk7W58iOz9Esoahpj2eoFTKI91Oc-yVZbD3ETu-WUxfij9zSdJCagfiZWrlskuEuP_iJubgW9MFVNYQePaKI2IElFFgEX9UGOUxiVBW1qxW12LB7HuWdQ12zAvxXWeWgwhNwHTVI6xbG3W8C7nGrjvOLPliGqK530BMcDps1gZ0FivzJ2Lmj6GPKrkMbFPdXRuL3LAwi7JFlSe88mBzx3oLFwOW3qzw7RDFMe46xU-On1Z3HTy85jkq0cghKt0ZJouhfICi5VAtqdrljxzpowPWP-T557nyNsdWfuFKLGHiqZMT_5N-jFcszRsHXjNLTpOYNi9thS-6f81k0R6uQ5IbkXcj8F42NhfA5tTPBAHZ_VY27VQGSbTAHl1nL1xElv9w3216TvNIMUnS6aNojDQEKZT46pYG-RVida8VoeftX3J_ykOon9u0lZvV2EhMHC9Uvw4MkmNplyOam3rZflEzpwOOY5geLh-OhmPNd6mf_2OLkLlZp0ibj5o9g2ELkYDEaoxQSmP6BLciL9Qu56IWtAYhvfMiADrfz22YeXEps3PfnabuiLIx6mAl679Lppx56Rl8YsTRgpsX0sVI4wthZYikcCxzvflkWJ2PA6Ui9BGNrvU5sOc1IJMck1X6g-Fx7fDgHW9ZAe8dCG_uB7_4D9vxylKEfdndQdtam3A9rS7jsb7UyKlqJohhfbW4M2S9mcqgpgN06KSFdHG72696tmhIWVSVxdhiCBHRJuAMenxY8XavalahBkPhfzAFFB8P5oagGkm8isvpy8sQLvDRhjTW6QFQpO9cFjp3VM4cdk-oFC2fPPjhJ4QBC18eqWunZLhjIVTzVNwBBvSc_Y6k5dVQt4V_puE-hrDynmZhxq2Hx8hjgBQ4HijMeWUFAed4PaIe9HV41xMpD-eto2zcP8PsPH1MYqnzL45Npj_pWmEIPoauC3sr8S_w-6dhUS8XMZ78Y92T92QHoWw_fzvhHsnkajYXu66vPF8Pp5D5iBNd55SBC2nXoKOl6rSJGLkyVdDxT-E4RU6y2LHM5XfLciUZsRLon0SLojV2TSJWIhi5irDIM8f3agyeHCeSPPo2XuFztCJLwnaNiOgXHUzMN9kHpDb-F78vqhSeuXdyqEstF0Pt54JJD_J_DqefQueCMheKtejZT24ZLxHohJK6wCq5r8SlstI4EgfrC_9VJqS4bJpVQkX3-kcqeB0CO9bsLKx5XJmVyVJqpdQKMKjlfJm-urf9xS7guQ8vHUQ-6O9dhee6spOadrAV84_sk_9vviaNsdl9w7NM50shy72iunA-k2ePclZzsKQrbyD0Vj46wZ2oQslwpHrdxpMCOvMwGiEFHmrUj8JtcQclMepeWXFbPF2SA2-rp3B-qxuCOlzfEmRpsZv1XAkNMPYdvOI04qV9GJdko2Uh3I3GM1A9UEPmFenQqjVGgAufG-_3NNcpcU40JZnwqS-IJTFRwzNaGY7LqkmGcFoCQmdLhQnsakhfyAEq70LqUON-IwMoUE7_ms8eiJYvyPAwDsKTLHgW75FR1wpx8mWRsnlyw_LSwVTDWs9iS5MI6mjgeY51KfimJT9HQ7T56VEiwAufSAPo1hrW1OLk3EWTgiv5svzSKQWT6pjimpafMDkkjaz-IWZxL4rUx_yfFCPSiHj5wNON5tDDiVOCijlUwsCNI2Nn77_0J37YD7EVwpqt2ouj_FD-v6czzsNhJ-4YhORl34AP\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6844563a020716-08031623','','','2025-06-07 15:09:57','2025-06-07 15:09:57','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43345',0,'cd-form-entry','',0),(43346,0,'2025-06-07 15:10:57','2025-06-07 15:10:57','{\"email\":\"livrichardsonpt@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"1\",\"regionlive\":\"1\",\"currentpostcode\":\"SK10 5PR\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy/\",\"recaptcha_token\":\"03AFcWeA5T8o0yUgVDEauQ_hSv0v7tkW9JN_KXdYvlJChRJBrvHmTHgk1aWYeTX_VjwbvxHl7TcIqiPr6TThU4nw_PGf6t5-KhE8igrGyzTGxfWB7q8LINEw_WEqjzWSiD7_zpGyIbjS969TgYuDPqMetHiHPJA868ZjJ2xRMMBU-A0iStuqM92G5i6eIDQNKi8UXnQ7BK_fxkMuC9LcFY6tC5z1ZPIyjECXXdy70kfJVemiZVZBOvUOE-qw2fyHOY90rf-cF5ZByn8fg8pLTMJYddc0xf0I0b91icnsnHKgRzEx3664Tvz3JGUjAi43S4Z_neiftdienI0vinsjuVBragDjyBkKkrzLrmZ4nrqLUYUCrigBIYZB-rSZwXtemOIqV4OFryW_QQIhqCbYik6JeL35jm1JF_6Rs7RshFZEZNo3T-SorchuCyO07XY18M-0a3cByfrajL4rb6rXMS-L9wNKiWbufVb7QqPjto4dT37sTlx87qQUZREuAQMkFaG0hYFzN6_EuzAqEmdpGL8bSztgQIdTCBn-Utbcr4nvW5WcPIOMHQc4O7V4OqxclxPo5deWHqjwOVQhkTjR14zvg8UlscOIETrHGDHkhWWp4ym_r0wxcK79mVVOZ4abH-_hVxu259PCX7d-w5mo1wlXNCkcSAgSjQiRlnlFBHa7hZ28veyvdZJr4Iaj2pfGicLZlRFDrJrjWcX3fX11p76YU--3ERsnK0Xk54HyhjHur7DuRBnL87gB3-1fSnug9_rnKo_vM6-qSwy90FGMtTDxJ0-a64UDaCcZjLx1B1WBxi_qqyFzzAfwHGviz7MRxAaoGFG3ASCLrpsvFb-LZvupYN6WZNgLGaSQcSFpeExA404sSrpxWbRtc3MngMX1vJ0EH4r2ZQBD-jDZWnCl7IEPiSpSaDNAMxFqU-1llx7D99Fc-67T10qx7sfHPKsL5fn9enhdaHJVwx7gxBkgzQ8TOULKM2GcsRzJVImeC4QrsYeFFL5woER1H4V_O5AdZ6qeSwK-pFuz4dDojRzC_siDfIQl1QcZ-DTCcZwOMYvjVIvBIy5_rcHow_FwrSWih92lo6TNZ-3fB__gBEKKOh0GwO6TwQnEZfUULa7-tNctfFksC7XzAxjo0cGHFUJNH6jvrFiq7fFqUKBQlIHp4QKfydCUDoUL0Qs2-FTj_lCrNevA-2QnLI_uLpGlYwsZnCDHdM1-L9XrSpuvpJqytJUATHkn4WXTZo9oViihR7X0E33qlBTpkUv4mNSbNcJ_Zq3qICs7NUki8RRyTlHAuEkVnK2uZPtQnTKDX-c7cwvMG8078n192XBD0tLmvb6ivaiBt2r9o7AWvyLCK1Hnv4U249PPtwLc4PWYWEXtkqevIRc4L7to4ik3gUejb0nbSyjVGk-26Qkf_t8ngJ7NW1m3Y7mUeCfaDdsYZi-XXj6VoRpQpAxiNbifRQN3tfRNMSA9QFFdTphClQHsBcPT5M9E0EETZk3F1KwvvdFjXVBT9iPfwrtTI-s2u0BDTkznBmzXy_l3y24LXWAXXRf3m7Fhk1jG010ZAWVYLdueKvbXrCTJvl-ZwNMHbjaGFz7wr2F0iEYCnLgc5NRFg5sByYVzWn3Ey3fcAHuBYaOHL_1B8F0hYg_qnfR8NkJ1_vpFfF94hK9RTbTLrsJqGA2Yq5CglAjUchSLarNtZ1qNmMQfzdxXaBHC9zP0_orx6HRGt66oiR5LywfKWI7iVPfreAmJ8wQV1NOD2X5pXTbLZJhljVIKdHJD5TGmpstNJXy8WNaYvPzJD9Bf_VcTGzH80uGsNV3FulJqsYjnU4BcFlNbm6lTDp8R9nfFgv2R1OSkkDky2JtVA78TOUExKPB8kmfzLAtSbe0Aiaw7WhjZK57uPblz5wYzvc6dA4DzdrmNNjFHTE7yQGj_vb6jJ6Pr4JC72j74epht7FC7TdLX8-jeDL1tGpbvdzu58HC801Y8Po2RyL5cIHxqNJ4CX-3eDQXqNiHf2HunDuLpMbh8aL1HeQKbfPbC9QJUBmYvZqwMwxWIrU_S_OMz82tLn8K_pqI7R_exLhbjoooP6v0Yq93LHY74UWDeAcPEI7xyNF_zz1cXd-vRKNZz3o-2hkVRxONINFAJABj-DSnkP0NHi5lHkEPkB0shGxQaYNCmvbyQlWvFIMHgMBWiIR\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\",\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68445658e48423-60945904','','','2025-06-07 15:10:57','2025-06-07 15:10:57','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43346',0,'cd-form-entry','',0),(43347,0,'2025-06-07 17:22:22','2025-06-07 17:22:22','{\"firstname\":\"Steffan\",\"lastname\":\"Lewis\",\"email\":\"steffan1lewis@gmail.com\",\"contactnumber\":\"07808111111\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA4J5AFKCLcEh-y9uONEu7ncgaR4uUvuD-kg0-sgSkJ0tt9dzibh-azCDFRZ6aFfgOgEhI6OHOFa2W7oM2x_If3kS7jGMo_6gipuVr-CRaTVTn4NOfDrMVj8uXzUICWDuXVoShzI2U2yMWZYfFgVirzI0i8cixKh4_fUMkM7LgHSANWL6tvOmoWpsq5rrAm3IhRWDr6IxDVePAgUctYIdI2xFciYf7xteEjnqm8TxRhA3jxBL06sHexN_gQjVt7YfKCbZlkHQQ-mdpGI5akED2ChgkPQbJUOMHHjFUhdnRfDfbFWLIvmlB4LoUFUadtubbcp8PRQz0QSyd7fHKuPnALi62d6eFd1WXeF-p2ooJVg0NIO3CwvCx8ssDOvPQ5mTv0lnJ-6-mVCEZ7QwUxsD5FTq5G4AudFYUc_hAxHHO-_EHZr02WVVc5jdwYvR4sMNpI1B2pYMqQA1Z7OLtmXI1ZTayDhyiPgPQ9Dp7wit7n5Og5txv2xC6xl6EheGr74S5WLiolTdFVTxaRJkWRpSwzA5daaNERPsrm1zeqTiuTyT6nUuoHSYXYFaQo487zHL31JnZjP8Cm4Oulkdq44BkPRDR-kw9zSau6AQLyJfWkpL6lOynKYqHYty61ltnDUB9dGY7HAIVY26-sUdDR-JGUBwI9UeMjvTqkyD_iUuDm8Z7PG39_6StkWJbtCYBzZ45k789vNFJQRXvbGqIQs0NkdgeVizs4rX3i-tr_19uNcgnYLwuG3F9_shJ2qELEexF2En541kBb696end6C0ufshKllYvPZHCejUsscEHwtmtcWGOuL4gyPvj6_evfvhiUVcUBLLb1hMdXKhljRzTvIaAGcubEOWn42LQqYyJfUnUvUTxhvSakaSXdJdyDru0yNcfdRGihWeXBbmnxEKN4mt4lajssoyIyRfAU19MDq1BVn0aQOeI2VJwU8ujrgst-SSOtHRnNXAWr1Sh4S4LgPCfX8COt7x5hr458hygggTsR72eXygCpMJc2EhpbUBvAC3sxbT47rDnfxoE2E_G1TnIPiGkzEUpFN5H1NJ7L62Ag7oggvtSrlHrfsDfAs81W0Kyru-IuD63U-3O2-ickKFOjB0ogeT3DgAc5h8T1FlWQd_JWkV4qGDw5X322zfAFJ0bgOe3XIJVQFtMN_67Z3w3ti2oXEHRJsAyyidzlMZNxr64muOCDDwTpDRGKK3k9gcENbidIpGP5HBBY80EJY5E3hI0Cqu4BB_ekgQNur5VEVg83-uU3ZhEoz8OwDX6tyDgXY4oWekl5Eln6bqO0jyi2GPBtJKuSIqWQwJUgpxDsbiAO5dI-au_kyZf9io3FezXfiNQ4zMdRs7ADjxx79Gc-ogb17wSL79KTBKH0Px7fyhGsX2QFn2aaHF1XBeiCkvxGcYcP4XyvEmxoK0f_7pzi6m-0ORmL_cMGfAZEsgwkEr1Ws-tjyvJCJrnQJJn9CTMvx2K8NgpZM2eILqPD8DVvyQfUDhw-raAqwzRoh5J16FIcH-NqDdlQUeIdlx8NLhal9yUoCCeJUM8SJuLU2pyI61QORyqr1xUhrzCkf5u5tC2y9rpvwJa90PSTdF0lqEPyRiH0rUSEzu4JD7oB8ul5ojo55Z7viNe0SI1L-2ok0kgtljkqWdQmAwza9hIJ1z4yfNV5HCQ8NranTZJMTfn9A4JfgK41Sz-TsH9KtvOfQpakhQeSJ1EVrE36Qe8FUS6unptGC-8MMTcmGBEiWiugPVB5FetkPswGQQjLGx214rC6R17WT5Ew4B0rLLPG9FXmZniQKdqRuW_mjMZICEpsxoV-PojTqXgKwW4wjThFlON3qf6CLAwzy4zgeEc358ys9BvUgQsIwAAZhT6SnBHq0HXaP7ZeKK8eUoA2QfLx3I-ZkygMZJZ3XLqlpl-CNXAb1zagAYRSk3hOfLM3pJ4HRTPmCOMdNK1e2obo8qQJfxOXOA17N4jFqTvXU9Ak7-c89hw9peIS5fih4KKOoGhxM3T_s-GgmPja6dHI7HIpgVYZxbBh_mWUOe5DGQnRNYdHUOpPD4Zi4LHUkZAeQDqrfIPnC0T_6PuID25fdfMtGwvp0y7S318XOaLIU1MJIu7S3g8u4uOdy1qmjAgNbP8XnzU1hjPiXPY2ReeuCHOOd1O7dml1zGVx3PcKTGpKk4X3Bj\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68447533adaa04-00532991','','','2025-06-07 17:22:22','2025-06-07 17:22:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43347',0,'cd-form-entry','',0),(43348,0,'2025-06-07 17:23:25','2025-06-07 17:23:25','{\"email\":\"steffan1lewis@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"SW11\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA7f9TLgoJDor1D6ysenB-zMJgjt5UvIyco5w3d_eFoftzVBuLUMD3UFjoc70MVFvF-xQDTWyTVkYWiHrjswaM-xuSbIHro_EVF75tcGzPBPFFDQuRqQhI9b_zXPv0YyxV7FYrCWWhAU2Uv3u2Vu9HWg66xqvJw3sLRo6Z9qvB_joZV2dmtXg-kReNwud8ODA7toJbVj76hoIw3UMKj1ORry1rXv_3o_BeUI3ugWJa77Up2oBzCq3coIhREjL-lmtpsL9snnDqOCWb0dcZGd1nnu9bONOt8DI7wpyq01zGcdrC_C-D5uq-6vQ0nzdBB6ZDzcV4uHVyauH15Fq9cIwEUAwZAoNJVuFGRTiA6RbiGF5go2LdsRE8ts7-3slyLF-uPoAUsmVwG6FZ_svWL68z9K9Z5zBohCXxcKJXP5q5HCES2WEV0mPKzTPVMOuQx6K1_2B9Hx_ydjP0WMYfA666qG5Gi7fcWhFMQWdPyC0kdO9EyZVx1_oMKpK5k2eUenJV1zLRe0RgglwD-qkxwIeNjDoTEbX_L1tuwxlYqkOyMduW57ADbSWLcysCbSEH1oMMc027uNj-HZDMtFkDZwckUKrWRl8aIReEYarFbaOaBqVGq-DzbNOE0nTDuZ6bXljcqJFRlEUHunHMJ1A8H1nMAufBL2HHAwIyAcFxmN00kWFvOIEpeEN4zLY-s7YHh3tnsbIRO38vfGGjZBH56-hl1VFg2uREAHUdTkKoljjs9s7oJZTIKlsMhqajZ5U9GxTsB4Dmwwd4xz5DIE214u8yAomWcbSSGZrLtAXkqssfo3XdsxL-DAXmFdFIr6OlqaN1rBGPkERF4DhTNQRWLO9Yj3W7vD4xfi_wI6zpkaVWwsMPkpZmaNFM0NIy1eabbhGFLIauIJJoZNDJ2Qwqt2HGfy8mbDYlbDUh5qPYaAxUwXeb6A1Gcu9KJyo1fFXJ4yZi9j5Fc4Gb7M5pB6Tu_zfFt9527OGFjfJo8O6qwTZeYKZinPeCbBDkNLkHVksfQshNHGWgqTxpP7hlEs2FNYGEeEZZM04sNzzphQ1iJ1GqH4050VlYjl2obnNdzurF1hvSDHRB4D0qk7vrrIBHztk4SPc25IjEQRg6Yc2kFxE0Tlndovmy6azYJpO5R1nGTVhyDE9fhjAmAIhXzr3uG-2qlD5oOtMkaMke9qSYkvl1hZjvhSuEb_6iqvvlbo421R-5dZQEjXE_F8ndLgVRglhTP-zgvS3Pqog3MhpWPU40PO8yulvqeq5IRPxiVpz6YQmOdiqf-1TyRpkIl49a9PR1xhhiJ7esnPqiop4okBR0w1ed6pu6wKHa0k1JPt2v3K25pncAvBBADRxLgYRv-4z3E3Q5e-OBhdtwh2-YgP-cO1TPh8fyIPgKSX-QMUJcaZpKiCvDMlD4Xt6nZ4CfK5SIxwsuLVlQ3YY1ibfJtwJ5mk-fnPFnVgOEgi_31EjhaUAtyOvDxz9t7GUCvZep31OKg6X-Wzm9csVohRkdLcKB5CRMcy1eFH5mUiy21AK25RXJx7Z0Blzpf_GIxBMGQ-23mzbj3yyPipZmX-yUPtZuBRzaxXyDPMBlcrDVP_HI05Gv4XxsX_o_eqtTIEVC-VMNHKjkYXDSs6ekseeh11rECGVQfHNJFUCsEXWdSu-QNNgOSyNvIw04lt5SxafRQrPui0x4_KJqIAniD8qYinkrEkE5dpy_hkyqg5jnIklnIsjcaoTOnK_Pfy9bVZXNimM3bjovceD88MG9vgr-OIn6rk0BQgJiqM4kb3XtcMlq0G9REkUaOvJRBY-2-qsH8cEyAlWN6rcVZ6kXef-_mzUfGJEkPAD3OmGErj6Aft1wxGGz1G19t6X9Znn0cg4gU2ik6URNa7qy3Eoi7kqRAfgOSRpxj7PQSwzMI8gdPWGXzfilh9t2_9Ma1neH-Kn74sGDMVdFur0g7uB26Lsj0hsBaCRv61Zbcbi5qbUrSPF9jMPCgisHkP-WtaIspK_TRKvE7icD6F7WoZ52YbRgjNJnNyFwlmWs4eFUCwR25dv1o0s7qIFVOaxcDeL3NsXEsshNDZX0Mjw53ohQmhaVOKg_DG-zmdz4OVjd6vPgCvlpmMEjihH3wKt5ROWnnSAlNEoOBtqV260oLFvizRstuG8bTKXBGG_dUoPkbZnDGyWeYhsqVHubacJZfCFvtL36RNlqvPRpyORg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68447572d631e9-65935934','','','2025-06-07 17:23:25','2025-06-07 17:23:25','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43348',0,'cd-form-entry','',0),(43349,0,'2025-06-07 18:50:13','2025-06-07 18:50:13','{\"firstname\":\"Siobhan\",\"lastname\":\"Scothern\",\"email\":\"shabz.xx@icloud.com\",\"contactnumber\":\"07368879249\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sm_qoCXkmsjZ7iDtgZXEqg7&amp;gclid=Cj0KCQjwxo_CBhDbARIsADWpDH56LsrRO7oHaZ1iT1bh7dIha2DCkz7wRryuIXN-QtvqMvNePwbHaAUaAnxoEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5psuvSaOWqEt_nSIgaSrDFCdrXjsntPfGoyzE5f649c3e3b-XcrLCvoP16ETBj08hCvtfyvH4_kyUiSNX8p7rkzrW2alRectJNoM-fniw2OmuHP-tfJuLYQhugsA0PqaSISrC0CqWubAWqCuXUU8yJ606HzC13Bqppykqn4LM12BV8NpjRBOwaInu9DZX5mqSIZzGyuGxz2d5K-kL7fb54KKzRcacd9_T7lladF1k5I8ZqDhG54qL4goxSwgN-u3_-BKiMDVAzAcgmrLQbXz_b22nEOwsjX524pxCEJxhHnkoiGMcgscu2RGIF00sTKcDUxcX3KBpThw7EUC2RBSb770uVB7E5UHK3RDO6D2BLlOeoUW9XL83zdTVsAcw1NPFwCCFcn-VICyv26L4qRQoqwDzh9Fbmdh9egOqB75FoCQOEQeMFpu-28W7vNXWfjLHXszSY6gynPqtnwM3m-hpOeP7Ci4GgS6owkN87VL_V5l_cKsB1zch3Gfpmt-kSatMNQvWTzN18d640jbfLsBL3uhDwjgTHqnKyIL4uepbILGhV1Gwml_VMdDVtCsD0O6IsQFDOfwjJEonltNJx498oiyDa_CiFzOUZ6jQEK5WuMjiBD97awdBseggt7eZa-qbg4i2oEewP6oydM87DoIQ0qnhAwaXfJLcAxLE-X5L3mZ5gqoOfqKixk_p-Nibc2W6H3LGtvL4Uet1Z0ed9USj-JoLacT8jInprgf826nh2Z4Esc352R8zQsgWw5pj9a5DF44mZn7a33BOpToDLsN-xUgLlPyx5EAIIQDjzyCbYLxrzRzZnnjTpfyieQDweLqwuD7YA1Urbr6rdMKARwsGyHc6THcGpohKyxAdknWzK398vi_T2JIadENjABG9CEB9MXu6rlmm9-rqSmgaGczFH4KFLywO2pjp-HSfbXLPwPzoQWw5sfpR2Fu-o04Fg_q-yuECNNrCkxB5BN5hszImeXWBKoGZOw0ot94YTgpyBniWL4UNAi5d4-AJdTetWmX6_B4x-X8IWLmZrRRBFj3Cofpol-RcwHH-qCnp_bMCq99rbYw3UZ51YXv6XGXafvWRetDsHPwHIvlBYQzFeuMX2cr0WZHX-Ltf5MjfVAnFSNivScFa5JQ7953MaXAgUj99zkin6fI6JhGbcWlubTee-MdeLKEbGZZzM4u-d98sgu8v3oZh9nYhGAiXMVkQV7V5EqN8k4pdp_wUKTLTt206VC57qCoW13fA9IOmbTSUSaSVqs2NRB5hkaeTJ8Dm2LznISSbdBcb_3cg9skUQkx2sW0QbfLGrceiih2W2j1ClCRSGHjco5jO0FR6_Ang4FQTHGLUFLB6fXMhnWYQezgv_vUI6JE89Qtx1x09jeKNKUGTQSok_Hq9ybfJcMekGnsgFGlq2O6U_2dXzDR84x0XzN0M8jTX9BYMn3OmWSACXon99lg51Bg6IigIL8v3-MyDvRmTdVrKaDU0umGQ-oBg5n2QQfrqe1CZ3NMeZNwSkA1xdwNGVI4Djql21742aSYAnm976JxIkNWbp_OIGlraLa_MZaSrta3O2UHdigbc2mpQO0DIxsUBBX9MeZkCrpyuNT642rIX5sbhRhYcgbbsX_-vzTCXFDCDVGmbwQ-HgiB8TfJlmEJgvFeMdxUOYp9Eknade16y6X9pHWIKERUjr-vrpkACqhFORAtexf03nBLV8jk6WqWAO1lsRoW2OG2HP5nadODRlgTkY9lIEWd49qSyVskHlJhPRy5EtevvvTpbKD9300HH3r57Lpok5VEtk3DGokwVZpP58mIKvv7MiPWUzPgeQOoq-8hDVN-adlJ1mOr3LTGonXjGcEUdvxCS-Rit5ZUg0aXlL1WtQJ3iG8-6FPUXgPI3mfT_rzS4vTuvVgU301ri8e8HhNdbRMosrzW2ADV63tCiXVNHyvSYiI4rqgyEqM8seIDMAPBuMA6K4zg4cowHI3UpDtfHfOEhgLUsEkviRwGnjm8m6rQNxzKCFUK2EoWPdoSCF9s6675RudNDWGNKIpUHfSGJcw_taS3gVoNO-UNSxkWqllqlUduFiKyseeJWY-TH9eN1fVWNEgfbRoLRJf2hVMACaw-CxUupctgmRzbZO_MCUPTceVJHlPWLY9UJhMJ-cd6zAReluraDSwEk1dJIBkok8Abift2E0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684489b68623f0-47898854','','','2025-06-07 18:50:13','2025-06-07 18:50:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43349',0,'cd-form-entry','',0),(43350,0,'2025-06-07 20:33:34','2025-06-07 20:33:34','{\"firstname\":\"Lisa\",\"lastname\":\"Hampton\",\"email\":\"elisa1ost@yahoo.co.uk\",\"contactnumber\":\"0734173732\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/tom-waldron/\",\"recaptcha_token\":\"03AFcWeA79QiVoZw7ye6QgWzumViTU4Dhr--gFQJf4BCsXfc4T4bPMuwcHkLLgA_8k1cnTOODOtTiDPX7x511B3g10AC5PdvNFBY0tPASMQaKV3K-uMYmS2q-VUv5Hds_rqm_QiCxhpraqaEQevL-fKHiTZwEwbifozgMzBR8T_sxN7dyn2lxgrWxFj-3xe1Ac1q9unr4ugvUkQzXqWnokYyODo85uQOzqfzGjGZqkb3EfNKQeDgqHT33oaexu-T2sPTKj2_OqK5O5pBIJKNZZBeZq4DnsCDddonMNph3pkpoJRvu2M3Ea52sckYxGKjBnUVeeYTMRaN-Ga5qqTpq71lEGO8PHiE1qbXnxz8DatQZ1768gkc-fJZmFg2E9h6Jo2i0JGtspBZuHTIrgScB4ckkRWKdiodXN7T0VnJQWFITC4T-d92tCY4rKG7xv4qnUkN7dNxuTTf5gQGPrFF2N80oNiO6JbNb1St1f84Uow9ADiwswAZdGmq__eGN6n125JQqDFQXgXR6B-xRVptU_eiSH-u41OqhWH36ggbsdZ312GACInKkdbVtyyoE_wwWJxMKvp-ajeelzj-C9Ae7HXijTLPDV_-IvP5zLMEO-7MkaVHErA4OTBYKQCnSo0pjzwjL5wwosXpzUKYvxYrwIToxzE9CRX-ZMtqUdXVrhhDewb-QSSG1PQTSVNT9nJm96Z64icPcqxIggnys3pG8VlwIgxrZlkUOgwee9_GyZOLDbfQO9VpygWIGIQszgMZrNU6x7hJsuRxEbSEx0yabdBTpdW_-0LyWrTuB7LomR5LTwk0vd6UEQOBOzjKtC9x1pWfaa9hsryDExUQo9A5tLyOpwVfhgoT_QOHNWaPREynjzuioWAHK5gbBFxjSe_8BQa4WDJ3qi-cFPfzQ42BdY2OCaH42tAbCqUBCCiI_PMsBuwWciWOpuMwEBtFgqwh6h8SBBG_Ws3kUU2jcRqNWmDJLZQ9htSHbQklyAuG6mgMLzdw-ZOHJdEbhlO5928SOhDgx8up3rO-UBI9EJf0FhBX2jlthCopKT1QHZyY4_fhHauLvSdN2CKOu_Vk7TlPMWDqokPg5ykf1zdyx4U1Ig4a-tfaDDUTpYpwnzonnGX7AZR15Nv8S_SZqo2X3HFNuqyX3RAPOk6_aclIC4Bacfe0Y8ppjwm90XgWeKEnBZmgS4ca9U_9eyHIcN1Zvehizxv8DhpvMQ9tXp6PhscSvFynFSxVYEw7fRFmQzaWyfpzqij8azO7_e1zh1ycs4FQ_gBuIXy_KVRI6QJNPOMMUIJoQd7mptn3xuaEMC1yy2wK5A1YlZVvoVSz2moh0_kyJ6BpI7UB_bt-VpJXr8m_wssafhwVnGcvVpIRfNf31rfimYJL0i5z6CulAd48xipJPympIQEfBzX1WrLrNU-Ofvp9gnVS6rRabjZA_LgyRQoQP3RvnaOx9E27kgMC9-MxkDALxlwIi3xf2rltl1lyHYiIwLljkHk2sgc8nUyxJrYhvjuerKkfYji_gypSWujITsGmpU72pczR5VsekmpPmHrRuf1pZU9Y21FCLH9d_CxhoNhNIGs19Xa2CaBPCJgIKsZtsTmcnMPYdN5gVr_uqyRIWs2zZpOe-BX65ucM39AIAug8ueqcZPN5-5eQTsIcX_VxHHC3F0XHlwfeviRRYFvQT0kc7SXJFJw_H0oF6xAuuhpG_VVXcWCwZxqC46UCLUjwKMTNssJ-KONvxP9Sh_8jKQIJqHRVDHBI__RvSvdSrcBhJdvpoesMJWYz7PGdCIlvgpXfjmedVjE-e6jimQVYZVjdbh9dV4TGHGnQLqqYpHyVT2D45yVRZd6KNduEiBH69vW-WyplyCFnI1cpIgJ1o0KDz6hm1ldqwDTHbiWTb9akD80msAXrAB32DfwidkwdxRYTyR7S7609yxhYOAfMbxyKIyQIPtzBNolHJ_07AzkoWjKpVdHk8nXKA3qN-4ZkMXug6Ju5-DawR7lS9iMz6U4EJInFH43wLId5i9ol5uBrPeMTesWn0JUSd-4hpTezGW31sZJnDmn5xtkWIfkuqxxJwzteoQzLffCBqOOd9ovi4wD6dPym_ErbSaLzYZtcsv4zgw6rMVDiHxb5G8nU6OE8zoIoCPhQrDoU3nj1H1dqQ7f8rpqRptEyHGE1vrqyoxLnxv2u-3\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6844a1eedda7d2-62496155','','','2025-06-07 20:33:34','2025-06-07 20:33:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43350',0,'cd-form-entry','',0),(43351,0,'2025-06-07 20:36:54','2025-06-07 20:36:54','{\"firstname\":\"Lisa\",\"lastname\":\"Hampton\",\"email\":\"elisa1ost@yahoo.co.uk\",\"contactnumber\":\"07341733732\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/tom-waldron/\",\"recaptcha_token\":\"03AFcWeA7Ow-2H3MSpByd-2a-XFcOzJOBtESoEK-NUdq7h4BdNJWQ0_noigpUOAG4o_1XtLta-q4ceE08yzMXTrrMlLQeWZbfA--VipEjLK7S4LSGFwW-9RuhC6aPzKF4DxlAI78WWdteWzNfGSpgXvMjWSd-8h9knR0YdcwNBVhiojFAEHAbves4X-qlTxzYnCvGQgKeXqkoHXn5D4ZJAa4ESnjnEFqIn3uY-bXVxMdh3x8pGjyvD7a7yGdEI_AoAJ4A511ORU3tdxxZmz7NUjJZ5MO0VikeGgeVlNSAlRoAtTPmzro3mk_FIiDzzwoQzUu4B6Te8rS_QU7Fr0DEiMygrfyiFMxHiRiEJaKI9QRXrkDZZ5EsbcTsWFho0LTJ5L0xUxnddasCQFR2plYu2nH5B60h2L8jXT7fj86RfWJSADisTPV-a2jhPxOWT4DKN0FQ49Rab0dvLwlEkJYTKksJr-RX5UT4fUJD6VopEOqz8TJwVr6C8BA77i92Lm4zfx8yNP9fi3tCZ6Ym7aBWU6t5sS_Zy5nGQWcThCmZeJzOK9ywRVzACMeYQOMLOJCGO5Om48s8IZmYZr_uZ8AkpqAi7OfzWyQSfU-x73B429EzSBpXrEwYoAclqv1kH-7rjrC801W8BQrd_qrcmRpbeerWU0_8sJhsumRo3B9xiFgU_u4zWfLEjWuURSPI-683uuYnNKRC50KG4u-623Zyrzt2VQEW2VvDBGiTjvn8OLdTIBHcWMokjmcCHUqOPZCJZYQGxWzBq4YFpkBi2FlcRwXs3egBsbMg99G36wyIveSwoR5LbLEM78LCI6e5-gkwFBu2YqW5opsrDZjHGQXpyPcHIWlx3Dbl67QdSbmx3xk6FyNZRusnScpc787yc7mwv9m86zjnkCIbwOIVD3ADL8xBAdNbBkySm2aNDAx7YDB2YkgGLFlZNN2VEgtj5qu_Bj3gi776MfhxGasRrNMDJdZmiH-CEuYAw2hdFXVtUz8ESQTIHyC6v1s-edsOjKBFiG_CajnejQjPLUQUavDxseVJIZASnnqxNXnk2j2WB-8OSforTnXWFPWDvnEdTN0VAaSGjptAbSoM-dr7oAqaf2a-XoQYN57ZAXX-BfekL9oordDH10tTeDas1XTMPoUgFq2EOH1jAeamntqERnI3nSHbIfEX_4mEFNSysT32eYOjipfi3klTL317zaeJBdrc92z9RqDP6UW3YrE9gvOMfpw1iXztRrVFG5ymCyz_tiPbeQIpRQn0ARmOK6eVBTZUCTVNSFuLta5QyjKk26MKMUltg73x-3he6C3CTYGxiCXwrvYvCMYuvzNk6DtGK91xBC_VjU5vaRo8dHjG9OYezkq8X8nHUMxlcskRvv2C5uv5gmNzo9xw94ctyl1vVfqm0c6fc2t8uv7TFHNFCDxKm7xcrTToj1xo0751jT3DqNOTWVZn1WiLUGNPUrFPuR5M2y-KsBV47b_mwbvgiSVs8mznXzZA2-d6yWKsvzQ8qK7f9NRTBTW-xhJlypdJdIsFddifvzp4qVkGTUgx7aKquMzNho41BJ93xCZ6wagLyomdzfGpTYSPDvL1j4ySUeUC9-znWkmhwuh1tLJZiA3thv1IVvHfFdlmA20KRWM2e7_NasYHkGYQxdm3_3aFcHpV-0hlxF07LtTtKjbmiVP5VZBWh5-PDzydNrWn8bNCXwMvUDN6FsuW_eoJrjmUfdR-77ag9Gw702N9wOW9ZChxK70hpSuqLxp_GCXTdLRzWKnOiUDh_3pjWDL1CawuFXhvVENZadetLk_vwNoJyWszmlg1GvW75r7nCZTBxUgGElsf0SaFuxABMEBvnbxtOwJT6gNdhSOd9YuTxT_jVXfhFFsP4JhJk1Ld2iPD7zNVYm8oqHqz8vjj01IYpWS7vW9WLHcWEd6v1oZI89fxjqmFG-39E6Q7kFZ4KfrRAsvVMgad30G-UyqFqioclCpMba5BuahsYMQXwwWzYStVTzDKecn7syPXMAUmzN4VPgLcwN7IQu20vJnRMrccZZG7DYZor4MgY541FsSthFZwVkCjwm_apGwspu-go4HIYuEAywIep16xXxQVWdU5tUJNz-WYEnq_TRE247hRMVCRE6rR7VLBnvELTnci130pywFgUS-8mzW_r1pQJ5ASagQoNO8U69p0nLP-vEfsOpUUAfA_d2o94fncKz8Bim_hP63nDPATlDVks9YxiyTzu5MUPkfOCy6j7xAVvq2_42luEkwzS4qTnylRx-Avd5AmmPk-q3NOLAGbtuCqDALAVk3SYnTxXKn9qaYM3LWJpucCv0B60pEmrhtghtg4rzXq5_iDiJ1xX7PCDIO6Xa2W890y4YsAI0Im0Ud4wkpN64XTzPdutf_Iut9IYTHqR-225oYHZwl4ejAyxyF1WIsY\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6844a2d1b31b92-72109480','','','2025-06-07 20:36:54','2025-06-07 20:36:54','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43351',0,'cd-form-entry','',0),(43352,0,'2025-06-07 20:39:15','2025-06-07 20:39:15','{\"email\":\"elisa1ost@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"5\",\"regionlive\":\"12\",\"currentpostcode\":\"m300gt\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/tom-waldron/\",\"recaptcha_token\":\"03AFcWeA4LPvYGqObevzK7-Bk-0Fv9dB02-Nb6V4rBJ3IV880vUN0VtXJeG6CZ9fvtBttMU64kFgJCWfRBEbE4DWq4LNTgq1zP2huJ2kPe0KF_QKvnM3MBoQO1HR5toL_zsRoD_upsiSbihmhqd-x32K_Yodw0f_HUMNJCvURPAD8V40goASjlCkyTJlw4yB6VLkgJGD3LhvTDXBGA_n1aRUqlkrWfXBw0UOSz8i96AHitRswT2wyCdY5AGLmx-a3EAj9GcYL3nEbs3Febdu2BkrECHcP-Ym3MaoIiyfD4vjlkuqDsgot9DpCIaOlN8xSzaSKSXgeMaFWZlzmaU5rr_TsUAf6Z3oE90sP0TsxTxfx-v7G8b2KzisHPMt1-39pceltU7nRxlK3tjYXQ1AMauSzu0h_vJeC13-lsLCqRmiBRHU85v_p2ToI2E37yqSEnh-CKA0gsVsE6tEA28AEVpGaTHMkRw9x1qYyL8J0hHBKcwMKFEto-M4te8oHsgjo12EOFw5KwaRfJwYlnhHwGVHCFRqnhPUdA9dvofFvrTmK0pbEEFsnkMu7o-JvKok8Hcv6BMc1YPsma467efdjkEedPF0uUz-Vf2mxFTxAyhU3hA3bwznnPt9A7Hvk8AVTjd5o7OTHYtQAkF2Uh55aj7hEVeLkBG2waHxiCant7XwXPMHS59dKN_DA6jryD0kQyHTRirFSfeTAHC6cLKsC66T7I2_kA0BBXFQT3qeGrJNV9D2fccrVugNCDclU_2UbYeZjsG-e_aPtp39cKj33w1KNY1o_QHEkpaJkvJLoj6vnQJuGwgk2Ff883SKUSIgVXrsp5lg7s5oGXNy3aQQHCgKGqhJH07ws-xPerF4mRKSnCcOjsWvm8z_i-x9hu_k0UZkyU8Zg6F2jy1ogzmEQSL3l8zDLVHlq8zhwB_yqEakAH81ZB2o9X-uUVw_wKQ2Wku7fc-h_v47ok9p1ZztyBbEmemhHbHZZYcOxtK0idyKQd9JYOmreZ3TmgQzrO6rSUjzphU0aRaLa7UEIKZvlCUE7ixxqAN9GCGcv6Qkw5K1yMPCRjwD-WrtLY58thod3k2xQT1Y0IhQoKcOTdfH7wowTIRFrR6wiUWOledVzM3SOwc0WY-mlPMWPRhxs2wZLHX0mZgA87UHebxiKrXrOVo6dQH0s9qQ-PNOITL99YLfNeBfYmSSDY9cOVDvqCnQ3Hk8jdUgGK-lEKrRywvEMIYEUtmk59zcXJe2c7KkktSbRBp6EVibbhZTNORoj3PrXdjZZ_8V1Vn_g9aePqYCeI7dAjy9WG8WT0Oz4h4BUg3Uj7vrI9HWgBHkI_q6BajbbnDe5alqV8kzGGXlBAMQie1zKwT-rHQ6BkER05e-3soAAWogPRz3hCJiqIcUHJbRItQtz5M-2Z2hg8aYLh73KmZLCb2isdwlQmO8qgWcsXm02q7toEgpQMfNEAJe2PS2lt1NeSJt9Yl53bKpw-4DTMpxejhrUmpDuxpT6g6uuXomZNLpoMfVeb2H5NqWWRR0-ITB_IMg3teOoi9rBarNPRez41NNI4HVZBwUnaWKMJS1xmQesjGuiQHS1WBThN73I5aN1hVYNujY6qsETy8NlwhryBKsfHyiVJYn8XjZDifPnM_NiX1cLagV-4Vyvk4kK4fP2rCqAFbKgifzvGpeu98u0UeH2hSORR4FdLfzlMk0GXyTw7Ou4QWbKV4fVR9krc5aAmRoBvaz1QADspf6JPwL10Q4jOKsxH57siYXNSqyGBaqw7DlLrugwDU9eRRHfK8_j5oBVRmtMF3poL8r2wmMtbgT0b4aib5jZ9dKHUDY2fnYyp65q5pjxkFmj77W7M268PJx79dInoK7aRW8IhGQhVybgWWX5sv-2Leeg0YssyOp3fHbAkQ0UN9lXUdX4bgnrjqGnjts1XCOKp_rVJs-tO530ek28nZKBsjYNYoaIyLkC8Bmer1J3cme8OWFo7SqRt1R6lKFtBYdill7Qyh7lxVY52z-jS-8G2bRK1GzhpMfR8bM4pLRN3THfZFgxWlrrNaLp0mrytKuirMQi5LcYrP8O_tH-Qu0NuHDm9DTKB-X-msgvVHMauvq-AZTOwxfTV7Znd79paFCKrjjH65wKZIPfCRlwRACMNHSGpl4WbatOfwLKesdd9mR4e7RnHFnp_3DpTgjweJwBuUKB5i-wOg4lrtoHUSqykFJA6J8a2dZAMeSCsYqRwmulSKRwusDziOCkGgkLe31OmUfsfi3SmSPoI7-i9zHyKiAwrjljemDwuap8gvqV8FnGst9cg6adaXeS18chsAa1RKXpWsrXOh-UJu6zeE3Rc-khH95NmY32qLepXdmFuRXT6DF-9Kww_pOpu5yIgm2DTmp687tmkVOnwxOWrzJZb70d17jpff3txIf_0C0c\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"1\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6844a339db4173-41675663','','','2025-06-07 20:39:15','2025-06-07 20:39:15','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43352',0,'cd-form-entry','',0),(43353,0,'2025-06-08 07:50:19','2025-06-08 07:50:19','{\"firstname\":\"Leah\",\"lastname\":\"Wainwright\",\"email\":\"leah.wainwright@hotmail.co.uk\",\"contactnumber\":\"07979535408\",\"pageid\":\"41115\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uhIECWgseO3cZA8ZLQ-nrVt\",\"recaptcha_token\":\"03AFcWeA6MWt3XQoL7IE0YfcCb0533Pfbo5FUS41TvO4rhCbxgve-svqK0SPs0W9nDqX1QRRrBvUDGHQoLwwZ3eeMskwbJU1Vj8n55mI0LU6mDQoCMgpux-tPnfEMn7wzOAy5bR_eDsRzROklev0KP5Z9TLXJ4ZaE_4MViUQur5z7YSYP1KKPpGk-HaGxhLTz2ANhw_qBoy6pEPHS91323tHZqM7NSFFKZAnIlHp57I3B1pqWGDvgUj6cu-JTmp5IxcS2c5g3GRyiaxezl2wtOmsEEfzQZWh5P5kzNHJ-3KdyB__k1OvPzJ3woYjju4TZEBkRNWqM2IAjpGCQ_0eODoM_BbzzzXzfYsx1xh7al2fLUwLzMqsPIrOsC9sOpeKIst3OqDqp_OjRkTlqsRi55wFznMbSYrbajMZWrLiPm7RhdKTrffi0NK1t-OTPnLeLdOaSKEANThhJ4l7TJqTNpQ8fF8cchyQxdiSqcSxlYn4HpUipseS_LJjozY9oiqPywlH_Xry7XzX4Oj6T74QD4y8TZbQTt9sBE0o17jsm9tzgpv37wN3WLgw9RvlmTxta97oc0LLUQMIGGDdKbpgkLQ6hVqdjo6gDzIuQknYg0ryYb2ROA8l0hxIM_0u_4xQRhgzagf8SQsFzcTIfgHmxfnyBNoUJdUxbB4r2LL_em3yQzqls2mXDFcqPVnx6pVhLR39yOTpCSQid_0ESIKWTsmV_51dB0lZe_DYYiFhnqBEvFja57dP3nehlyiOyslUHCVQ3h8W3bFafaR8CF1BTRX89Z20tpf1FkfIjhwoahDKFSJpKR5_wNC0otxIa_nKTW6cVmtlvxzhWwUjSURdGzVU1BIxLzSlWe5z9mxhHMehQ5z_SVJgkRDB_q0SW_rPvI_OVORIF9hB9YahVUazuEuEbk7FlyASox2PVR7Qw9w_mJsPzps5CIjWs-21uCE6HEq1-8lIMEDkHTNOrm6ESLMdmcMEUibf9GwDfiZ-Jb5mb0DOmL3QRqRN7y3aL4JJJcZ7PwnA-4gQ3ky_9vZO2kVguvU8my9ibHOWXQJhAlKiqxkVQ8TGcYxy5pvn_5_NYMJsk35mVbBLs0DEfNFXMTlo7KbkeND7O8zqpZjrpJYR9NSiXmW7EVUCrAwUXSWQ72-g0ZgJcXoDBU8CrLuG9ir5EgIaTJel7kJgh5tElJimXExuAa4Dqt8qB3XUEt7hqkpTkpx-YRw2_T-UPFjSn6jk3ikCGcpt-rVP-b7od85cGAxX3LaNe9AnxV3cAbn6Sg-WW9Lghlv3J2KwBcRTHGWs-b28EefdNDqSVZlC5_tWkgcUdcqR-MKJg54V7lQh7SPjC90NoybDu0ApBdNg-rp09KY-35YJJXf9hGhaOlOHvvgnv0M1jWHd64lVWSlnf4X2eir3akyxRgeT-dQILhJMbaG-9MEE0quxQ-J3buqd1zhNFwfPC5EOkWTB4gUU8Mf5Kyd7mVCgC5VqFck7Q2jEjH3tBWvsOEPVJZ0msUdvJ8BUttLUvegLjsDB9eF3wuGQgxPxUa6GcL-YSep6ioamXXHK3OJmES1AuIUIsO07OlZwFmePkH_Jubarnx726mgjIUIv6z2T8wjoVcM7I6589_Q9GuMxBp9MR-aQoNfTC2O9Pn7yBnwy8-z43wxlvOYSIzfAFYWHqCO-yij2o-Sw6IdoYbzeQCQdjx2eyr16oyFVahTLiS0O95Lys7bs4iCJOfrU5mo4huTOdrnV2ewDrJdaPBVpsShxTiqubJwwgn6Vt9aQfPuY8XEU9e3pbMmqKlxwCkR_p8C0qcYraJ_jW616n5K3ac1KUS0u2gG_ljvO3XWWKLVhJuYPuBQKzHeZQQ7UbFFSn0smmT3Vd5hsbpb15c-SXy5E6yoNsJXxGxTfVPTuoc7rYWA5fnUzwPAnP2tlBgWSKG3f7IZ-GaTn4HEJ-dnZ1_1eSZZBA0aECTuqjcA1LVsWPHWjOK2mOpZU-YdFcTGV51_AqGaJ2WEKv4wCmjcq2opj4dU-7lXHtT3tAXzaXEX0KbUe8e8EhiUe9KfXCnSZIdbOdF_jMPVbOlSqAMv4I_8VdewVrfoyluUGivwP948vvbO0vWEhWgVDqdKE_sMrPtDy2x3V1wDVpKVr0LN_qJwfpbSAA0Qr7nVduNnZ-IiDQWuRndVQ9m1zrbgJtqyyosprDqZ3iSmCM7cf0n90S_0MSd6t8H8xREg7cjJG23vKVNZKcvKFQ2-UCwKcl3inT45aGLlpT8J10gjj9h0OrG1iifD6gb4L2gdA-_R5yPKx6prTvjwfW42yMnAK2eNNuCENrNAfhDN_WeDW6rd3hAcSW9BX_V5gdyn9mEWel4hVpZss2jS4MBv41Pe2ljiKb39g5He9iItOKihtTJ9NZSlMKqymNF5cFn20TS4o1sRQMY_5AWuTqSp6ov927VpMSo\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6845409b09a7b5-11558508','','','2025-06-08 07:50:19','2025-06-08 07:50:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43353',0,'cd-form-entry','',0),(43354,0,'2025-06-08 07:52:05','2025-06-08 07:52:05','{\"firstname\":\"Will\",\"lastname\":\"Kirkby\",\"email\":\"willkfitness@gmail.com\",\"contactnumber\":\"07920770244\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uhIECWgseO3cZA8ZLQ-nrVt&amp;gclid=CjwKCAjw6ZTCBhBOEiwAqfwJd_hWj9TRN8i__lS2WxtyXPeuVi09bBaIdscMOdFDR3US-84PlSdebhoC_v0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4uD11U6c3_KtxfHH0ohihyHwjTbnIPhq6MEPVrRfPfCO7fKS8sBfvWOOARXaoHORMeeR-B8gPXkLgLKFJNpLBGy61GYoM2iIHHaR7WokxJgMvetS9R3q3yTSi8ElEdE8s_JAQ8Rgv1EFaPogODzIvYZ_wyxXFIR1lMg5wgumAjPdAlrXa-J3Xo4q4Y4bNOlgTxw89NcuiJj2YXyMEmLB3eHWX0jhY7Jx-wji0bqRYuIIerbrDMBFHADuJsorFFnB8yiFc_GNuH_eQ1zoUjU6zfSpLyj9T9Y21ogEPuyIVHB6u-UZUcBs04R0IkIdmSNrzhNKMEoHJjrzwpVF4-W1tyGOnWtCy6oNsG2_YrmWy2sMo48adpWGiuGFOMQ0mm5O7XvH-cesI2VinMVEPvoztowYsZ8bBkJpEAOymezjg9nTCrkINWs_qoTVirzOlJRMcsxeE_6tuLLrwkT0dErfuOlJCTj5hzWAYxrdwxRWJkS5Nbe0r669j2rZI3oVSzoePagghaELtBrV2dQkkuYG5jQmbn0OE0Wse6V3nmORJ8hswwTh0Ilg2KGzR_gXw8-ljVhIWfHuBqED77K28ZVT4uFtu05BPQSuYpMdpk_mNGXgdlJJ9GX5i-cHSG-_jAcZYUjo2vNA0aDsAn4wNaM3zBsboeQjKlQTyR_sx7jM_RGThaLBeNpfDIvG0AVhhGngjamc7jKcuzZdd7TqiNjY1Ab8bVIG9krrZzuEOpKvN2AiKWu9ZLB_LTXpzZwKuNdsnV6t48svnNZBsbhaAiWQvWK1W85JI3x2ZyqXCjn-cFv_PBhzlqzoorlWDLYDITOjz1e5kX9P9QJavutZre8HtNvN-r-rJocZtpw0RCJT2a3uhuh01ZwtFgz14PPVPFGvyd7UlSVR4ddYDEmmMwgxIt7iO5yMIErF3TsdH8L89Y_3Q6lJb0AYt5KzmPrz-UOWKhK1olx6kB3J6M6WSq1C_bqbTyC6qxq9XRczGx0g_BPOG9VPThqseVfRC03og3fOA3h0VsXtlrW-CJrGZFTceyxQdwCTDjhIzUjZA9AD_5OmfXc1kzXRzGrR_QHEavQz_kxaGfmRGLkBf3hRrR9-MoolfiBfLKmya7Flz9D_NUnoRLk23YYrcfaSQ57tI4ZwsQSSZegvv_4djr4lOhWgIS6Q0ERbdmPVRJxHiK8gS7cthHgi8Wf_zbPbisrzqjMzvaz8odrFgG6LnFaLvCxqN4rhNrnRKPRYoOyoix5vkpc_-YT5X7dS6EdKygqZZCdy3D47avx5sH87LtJU58ioJ1mBv5kEB6as2cUWB-uIZO65DzCKruVpW8oDtmTsr_1FKAtcDwf9D78u0qig3SnDoWj0_bYkCBSiP6sXD1SpynwdT00RwOmqd8d5Qmc8fIRsXLDe1SmhFMxleG7zjHddqZYEuQQqb9OVRnFFuVlx2NJyd1BWs2nwcm1LRq3Bkv-22pUmd6iefixUtB8tDK9JO_mPKAcJjQFe6ECUleoN9qWm09-ciQ0tqF4nkSumF3qSySin01_HRzSiB4Zyr8fZJ5rAgyyUVdYZ-uJ7j34tI0m2UBXDdf405Kbc-0e4Lm5uxxIE5tRBKMAXQVSCfSoEsSVHh8RCCrXkw-4CHICD5Me8F0djaHtwB0S1ODq4l0j1mUhn9Bx42-XqlyrOLgLgE7x9UbPp3qS8hWSTatxUsHzdv1TRfQUKWyzqwKaf1-cJpFQfygEARMas6HExY8Aa63oKaxssaALFMFfuNFbDmVWDTxskyQKoq0g0MTLjqMA-DVBAVrlQTpnkjvf2QeifUR0BEA2neGdEdiPq6Xc35ruI8sqME9pOSNRBCKwCB4TQUQIzPK69BlYtrNa9P3KLrtzxBla93fn53A2c4Bfb3dJf16haM_kP7y4psBVvVfRfkWKsxZZ301MpGxKjArT6QmNVL9mVsSA8Cm77-Bn3FaDOgyuKjk5o8QUATlVFf0PHECb7090-L0duO7tEulYYHgcz8lDJk7Z7e-eaR-ppo8OjohptiYdM4KCOfVv-EYdpQiqk-Orcwrcrx_hSyyk_CHxv4xzxceA0vuyVEcGdz3Pvzx5PCk9D2Ne7_kMRgj-JqNkWXsIRZ1pbk7kpw4ik3tTdXlcANaVoSQ0o1dy7qHZ-yPo7o0jWPsOYx66_s1iOsYjnEy\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684540c40eed07-88777075','','','2025-06-08 07:52:05','2025-06-08 07:52:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43354',0,'cd-form-entry','',0),(43355,0,'2025-06-08 07:55:03','2025-06-08 07:55:03','{\"email\":\"willkfitness@gmail.com\",\"interestedbecause\":\"0\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"10\",\"currentpostcode\":\"LL22 9YH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uhIECWgseO3cZA8ZLQ-nrVt&amp;gclid=CjwKCAjw6ZTCBhBOEiwAqfwJd_hWj9TRN8i__lS2WxtyXPeuVi09bBaIdscMOdFDR3US-84PlSdebhoC_v0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6ShzCGz8NqCPbIaQjAASwniLF749UfIdQLVAVsmFY57oaUP6eZiVt_YaUHLdnskq_nzQdsHZm7v38Qzt1vhHKNZTlmzBzMzsPbdi65flNRvkk2boIlZqRG43kRRl9st6PL7Rkh83EHwF04t2O5Q7FTcIm6f2I5ij6YdVLx3rAvpePliFjd-OJqEPUTFZKfJFHKLSsQeUFzqbu0O4CC1rK0KV4xtNkkIjqylvy5N6_ra5FuVJJ5B0LRi1f2ulkyx7au9t2wn7blFm54zrwdzBiMe4ipThFhYGM-7Yr80edck3n_F1RBSrDEXr0piArxmzP8zGTRBgRZPsq3XERHRksDgQy8Aub7PNLLXarJKVfnBLmCuId26IQoCxlKb1k4PJdr8jxMS66Je5qR3mUOZ4fRmNqNDuaiS1eKKtW4W7UVCeFsSCB5SjKwcgQvz3hhdMr0Eg2r2QJnN416lSDk5bGI7oKU186DMNILaPAS2Uf6dTD_ni5tRYwyx3uo9AU0FRbV6vi_k0TdCzYPPUFzCIw3R8vISkAwFpWAsTGXXokdETIP_RWZ7ra1kZBu1ceYsNcvtxR-Yi_gw0yYhOP32oJ6veJWsLAvB8JMCmh_2oZ0s_S_A-EEvsgj-tTcqzadre0Edbwqf5fAc6mJXstvIMyYMphXH0_H4fg9EsgZ9I4buWwo7fwDWeaVZHnvT8JAYihUwXN3xuYvBaJTWBqdlZNzSKwbaNB5qSkqou2d5vtT8gEP6LQlD2TxFaFR4bTivuJtY39zQWHGeb1IOP1Xm1CbdZBfb26Eb739ZyDs9pP1zJzb165EaprOGTI1pMxt07GMhzy6hkOSgIWS8guFEaUsZ6ifyYvoTJrCqXTbMhTRLP9bO41Ov27iFTWQVj2_nboNGvLaFLUuedLGfFFz6ei8Iv-28XlBTwSogAm41AgonQUKVbtUN_zHqUSnnpv7xy5tlQzg2ylCp7QHr-dta3UHCu7gCPf7x49uMYehzw_s-it-1K7-Ia1A0DsYgKN67OMZE3LIsHaOfG9d8suzkV33Ypaz_VPP7LkVO38kWlBOn1DuSQT9yxqF4K9PbAj4lI3zDhvdKT7PC9Kyv_-2aPri6gbvd9E8naqmiscPXs9UROSxTd7IOxNbwspWhv3ttzvhP1ggd2UBA0h_0odQPdbjtBz7o2cFmxLszEw653OncmHD59LPHpZLae6cS5uv4JJWKbfE5NSEYjsVTry_q0C0MkTxpf6CIyNoYc91HmtUztGn-m4vQpuhjykMwdFIKLZYCuDSJBabFuyIsUueFpDPh77ic_irtVyJQAaxr-8ocOANICFzyc5y-PmdJgTeVL9pp0_GPGHCSCr9bw3QUL2ELtJIX6Tp8T9jgQsn_HiP7_fnOeCryiqYvAjEul-mAkQbIal0IU3EoHmdmvR6A89LfR-lWSWl6zXJJSb9GR1DQysWOCciIDzkz9ZikTYCl1EQEiZ9Jz8TOHmTUHuWOGi-MK73WTxwrN1Yg3DSscXeRoIvS_-0CXmZ9097Ycl0-eXFpE4v4OuMZVpLuGIR6iAoTQ7WX6Uhtsp2iqQ36Ff4oe2tvuGdmZUjIlWY0SYk18Syf-8ATWhUD_9xef779U7pdwBUQMML-_cc0hTS6udsxtbgffZCWMpRUnoBO29iX97SYKJubiqaJ2GvHQVBr503R6J-_ejsTD4P-X3GYgqvJhxkpLMhQM1wyUxRAXmDW1VCUGnuRbKAl0Syvi4NFRnmC9YEnvFKWkQJUFgSVhDa4XPmt2wUVUGHXQ7Z4QBIfmkcpGev2Sc_YovAgO-JyQs0rIVyYbJ8htqOsB8gF3_QDCgvicii_KRfCR8DV-Tj-4Fp4UaozIOYhi5MGspLKhT9e5Fi1AkWdynVPhjXqmHkCx4GDsWqyGECkpKlSMVcUn2PpxlaO_pP7iGnA9NFubhuttBlITc3DTvyIS9gmiiMXWDzYXeJcZWb_DZuGNm4l1Or73nqrqLsJg1G6nIpI5n7TfYzCMVJstuaBkc11JJAoBgFsJe4CHz3LbYK-GszILCQE8l_1EeLp0TrO3cDX3sn71u7zSSjEXaI0qABeOS2O7ZNhhfXVFxTaEubAxdQoDrv3szLsArH9_gHABHTCeyHZtKEumIJYPipOOIAXTESf2q6V_4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"2\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"2\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68454196920af7-79601602','','','2025-06-08 07:55:03','2025-06-08 07:55:03','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43355',0,'cd-form-entry','',0),(43356,0,'2025-06-08 11:11:34','2025-06-08 11:11:34','{\"firstname\":\"Paulo Cezar\",\"lastname\":\"de Alencar\",\"email\":\"alencar4u2@googlemail.com\",\"contactnumber\":\"07514835273\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tVMjw9qGCom5bkDDJ16fyso&amp;gclid=CjwKCAjw6ZTCBhBOEiwAqfwJd1uFwjc4EBBSe1MlLDoJdiY_75S_2ykIXwEdK_z9dd4CQa196z6GXxoCokwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6V07z7WVoGmuPHsZ5K7q3RIW3nvEFcpjo-tUB90wxFZCEtJMQd9dzoPlV80JBJ0EA7fYWqZfZpZJeF5Seolct1toAGyPlf7JEnq0ZYufHTxn8l_3Sc7e05jWDy4B7u_-tsD8s56LZvYFp--HwBMFufuRJC88pkCrhofb5b6iOJx9F0OT1UPMqcbZevlb9zQfzGfjY7fsTcJSvleuSJ95kLz_O1gTKu_4gyQc5lYCoSfuEtrDI4kqfq_c4Ug-3g2aULK2kpAr4pDntdApGfAjgz0lddP6CPQH3hkraDhYmZK2O2l5mjlDBNkkE4g0G74jCgnvsFdIxSTGhmpospYWYOsDubutjrASbPtvvzg0qSbTrb_ECqHCDvVraXq9pBYeSCrDpl3m5mmJqMYS4qSY5XHbjv_4O9Z5nsJ0mk0yUyFot5KsoashKIl9NOTADkzP6hpbs5gLNm-g-Z6vxzcfMte7IJEWLBY7wLEb8sUmmB4KL9Nd5oNAatxEhNpDmoZcyr_wrsAE48ne3IYfc_Rwvm878CzBVtiVPJi5rFQcwd-KPU227dMYfHprj8oGBWoG425B4uvszI-KQsMeveHu3mIy-8qMS0RzL-KPA7b05ogHEAlXNPeU_y880MkkYPXoRh32FXPEsv-wd4lt4MS-duedBA_Bigl1x5YStZkj5hAOifHCOkzZXYhPVGBjteKvSyGwnltpJryK6Z0YdeDNubgyHqFwYtvTetlWroW5c_uuBa4gc0Z59iTdR1rwhjTgOps9WpTznhYYxHurMt4eUku0FxESKZj1o3Vllj-5lFVfrV4TnZlr-0qSgqGMPKaLFoXqCBKICARPShaiHD1dmwy5cbUEthPQNIOq2i-R8IzzWZ3djJWmrcSCmeadeeMrOtY3F0u37JypNm0H8RT7XXuD178ewX1gXSOYF0cZ8kaCS1tax30tO7EbfGanFD_UKVZPXxgjM21nm4KOLmycd8ZRkZuq8HTOFIIHoPY-xTAUO6_fIQgVzvgpyKDQd8cp9_DNrwpm1gHK8VSoiuIL-XdN5VGuev5zb30MCj5pj41mAtJFdObpJh8xWfjeE8SCXxgzOpLNL9DFhfZWZDkEzZ_HcI6TiafYUwt8ZuQgHhK_RLSLRpWGWFMVsdiZk5YtHEM4noMZK-YcbajMLvOAXeu508Xze4uuh_VQISHDbfxtwriI7REgf5wblJVUEsan_-YQWCFfYfiC9VSzvvWfS9_wkQpXlOFCnjW0YpU1QvS2Uuln-BL5UEDI5TW8C2gMpNBnBDCZNd7ncEbXoiPt8W3h1YCNA5gR6UsjEnIyjujYe8IN487Db3ZYTh54Pht4x9ddHj0weRMIFOabisFca_Q-G5niT1xDhrxYFY4gQl9XVoGxKEc_btZu6sK1U9vse0s-8QttiwSIjBjKi6I2OlUaKyXOiFEJ6jJzdJJm-7bVpaAPpxUVQ1RbzpMOpXxOFVBkDsHKDpnFMJha12LzDw3CKliVlQvUBEe7GVmdlfyoTD38eORTeiMxtQm9ah7whohgZg0rx-ZD5yQbajM1XbqLWkKlcqwkvFBweI9B7yR_J45IhkRd3uE_8jw3QZwoKVZokKHeKpIhsN2T7Cmp316ne-vUIFzwiQmwPgPGq6EwEcD1GzEEEhXC47BUqfn8kmHsqcx2j_vcgUj4S-r1n-DHC6XUKDKIt1kpk7G5tPH7-sZkKLOk6MuJoNmxoN51PIEv6m7mvnM5SX4mTJ3eX99tprZGlvRfxQc6riTmDNNxroHX4Lz-zeI9X9ugtdKum4r7l9OGYoA9WnB1o4VK-SRxmPi-SsQ6iLX0g0FtfrqFFUyMPYW8_zHL9gkRC_pJJkhE_VmNsBA-iRVYggbhnudnHKFU_U0CwA3I9oKwv6wY_3muHnkBegJ4c3oRqAcKwSDc1Fu9SpWLlRWUQJ0-O7tdUp2eG3-nOiFCBVPle8ScO38-PCEcxJHU6FIHvrw6ttcJ431gO_pbjorWJnrejgrq7lD2PNyTSDXE2XGkdhkwnqxTWo1NItWZ5eRyOhPlqipKtFwnPW56trGAlsCSdSOlQpMXpT_RCfkwqtW2-ddpBOVrFX-bnJAYonSfy7pTNFwoXjJrrMbA9deNFkpKdVblK0Ifz-tI3WxTi8kFMk73_2CkM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68456fd0d51ee7-40206933','','','2025-06-08 11:11:34','2025-06-08 11:11:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43356',0,'cd-form-entry','',0),(43357,0,'2025-06-08 12:59:39','2025-06-08 12:59:39','{\"firstname\":\"Tom\",\"lastname\":\"Summers\",\"email\":\"summers-body@outlook.com\",\"contactnumber\":\"07917842944\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tVMjw9qGCom5bkDDJ16fyso&amp;gclid=CjwKCAjw6ZTCBhBOEiwAqfwJd_zv8at2IU4Q73wMHpBqZveXLUFo_JmKRWy0dWmO0cZ4FT0iW9b9ixoCzgUQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4epB0SfLWORh6SUrAXvRdsSVfX5faxkmHIdmNVHHFXDhkBBF8-61ONty275LRKew2EJAxxC98mL7K8lLSk2m-L8w6iMQZcEjXnVDMTj_JxtSlUTmqnxtG1yfbMiWsiLFyfAPBQyN3Lkc0Qo1-BOehQtl9RLExTGk-Q5hDgV-fbENOFx9TpBS61WK3QQZ3qYUdsAvvG-x-IzcMZO-hsUf9sisPElJROZo2PBIxB-BUa2P_CMCep9Yps80cEVnSbD2hAf_Kh-o75yCxLjUP87u6ff1ZVeG78RofQR_TvB2KB3FwcGcJMKOdd_FMWdJCVptge2kNNuemEJndRqQptc0uLwXFUIQUvCvhzb5SlodMNYdkDD0akrR4kF_PIagks4nI5hpbaRL88Ai6984ii0Wh32sm0n-DommkftR9hJVXDyjJM8TzRBkwYta_t_7rl-SNocUoel4A933JW1tcNFvOwX4pd6zKB9d0ypKx9waQwHK02E8yTsvKS9b1pbyu8U1kS5nquEfemcRF6-MojdvN9SPMTGidSNcLgYyQ4zaY9__oyVTl1W1RZXa0ZvalLJVEZg3olqjgXn2Sk-NZ-eMTptDqIxp_qdD1w4BOFA5CZf5zpwpeu5SKyWcnPm0vSccdbTVrg-S3ZfJDxSazLR9KTGBCNtR8lv0DZeN7WRSxMqkjjoceeqvQSe6b6UIf23gtpSl-phyfHrABCu7PzEZ5ITZJP9MRsYq-y0vfMNH4YP8AiXmDwb83j8Z6J7VA58GsMjwR2Qa1jpOHsE7PzYBRxLyR4Tj4uRK6B4V1O7pGgSqCxYOluC_Ao9IyDNvmRyM6kuaE4aC7CF-VJ2PqAe8RJsCOiGUkYXtlEKYMqx2-uZ10S8xmALeM37euoLdCAn-7LQpk5mFgptPNrs5BpYdg4WtvfpnzrKjLSOmpQI1I4ibb4UkhT5RlHTibMImKkC_uWBdpApY4i8ogdVd4-Tlm0kO4aQlc3hnXz9noTJqwwaLBske_422Lwdq9bIsUubZCNRYc_rSj44FDnRa9155ZOf2l_eGgiupz7WxCSuKGiPy-ztxxDBv8c0C5_6ivgGRRznZuk7iXA2YZ12v4FLccFXV0VFG2lzp6CSV2YggOr6c4vRAvlodh7RoLLFy4Eii90ajCU__ObLMU3G52JszPjPVMpwRaa99WJ23sgUrRs9CNywrEs-GiI0o-_xTD7wEAzEZG2wPMtUFnOmid5ys8YY7Ahfw-m29ykIaxL03KMK2CmMTgrioahixDmTfB0ri9v2vyxdwp6LVFE2r6UZK5s_RUu92YwubZlW35bDv7Ji78KTruWglB8HTeONlOXf4npX2HTRD2VTz-WE2jFeUeTTB0BDaqh_ZSk8qcM4qQZ7iXGiTVyt1eVp7v9ilU17D7VJOIIf9Jz_v6ht0ts4MQ_ohzXoiMLy3Q4gmK0e89tPHs2YNsRIG7hAKPu7Z90UKI9_zqxJIXGC3pXR5aDMjlinznOnBRV9adT_2Km_PXs5QFXHjia25Q91wN9QRIkI1wiJpwqqh-XJj-vgomBsKcBsJ9m8oADPfUOqHKOqo6ynPBzNopI1k8xSYFZRsv1D3_DjLmWmaDeW-MEPMALq1L1gGmRW-nS-5zAu2nKOiMYKa_uGE54ubRIivO7SWKnRAJ9mJkH84vFUM39RP_J-4pnZRezHQRx_4i79LI5dBqAgUNExFSx2Le8Sg4Zm-ZJpJF4uky7KAeqj9BcPWaWTzxzmwCmiuUQb3uCHTJtOVsnSsPNslWj2wye7GSNWXmYVBRWZPmPyD6lS_UxWSBWBxILUi0gMUxoxeNMYYR3QuKwxaTiYHmvpUS0_3Lhd4bd5I4D2Oemx7xQfH5MjMsCB8trRQyGhBYrzlQkoDIabGYw_hlsY-kEpMtwdH61YUO7s0khoz9FKSslcQ-7a1D6n6oFmwMrBTBdLn9NWtdrQ3HW__wGvJk6AbqFfSPxz4rc7qF-i8lBQQMxHPujbjaMBbGG8T42qVFAsYKwZNyTf-iQRTnnpDDMQARXrY4BXS4-xRZhKyqxOAvR2XWP3ZdJOC3GlFdB0B7WL31F0J3tn_aqifWNrOHChvKTCA50DBtMlSt3oZnQuISz4oT_iBNh1Qkh-rtTIXAsRY2g_VNUYX3Wv8_jM6d16FzeWHI5yQ8MUw-Crq0SycR2JJSbGBZvv5MiN3N8cehpBr2hhbpzdB1CkK6jYumlIkp7Yy8na1vzayxl5CUCcv2K_r17V9noaeGgiLLH5L8YdwTbMfECrxSAHBn5Yoi2ihJITFdzKUQLJbsVTAK7a-thCMyYXxSj3H8xdjOa-IgNc8p1jqNNeC7VgfpFKoA\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684589263aebb1-30656083','','','2025-06-08 12:59:39','2025-06-08 12:59:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43357',0,'cd-form-entry','',0),(43358,0,'2025-06-08 13:01:25','2025-06-08 13:01:25','{\"firstname\":\"To,\",\"lastname\":\"Summers\",\"email\":\"summers-body@outlook.com\",\"contactnumber\":\"07917842944\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tVMjw9qGCom5bkDDJ16fyso&amp;gclid=CjwKCAjw6ZTCBhBOEiwAqfwJd_zv8at2IU4Q73wMHpBqZveXLUFo_JmKRWy0dWmO0cZ4FT0iW9b9ixoCzgUQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4LWLg_N_sf6xC4ro8GVgLsKOpr5by91UVzvpNJ5LlrlAArGaOAh8Z3QwNr4mAM6zVsoMTokDkbyCDuODwwm5aYT4D2JaQNIr-ZatgFM30OkMVPmHTN2E__GK1QZFFFqW2xNW85TjgqLTlZwCY_IS-_Sc7WHLsc60cj9cxZnnfUyaIQ2-m919NQwiRdZ7qHQ4Tjj5Aef2eK3TFp9_8PmeQmUeE-Savh4onBw7QcXm4VV3MUH1SLzLElV8lR-6EEZ-mBK210T7vB4qEOzpM5Lp1AIZVuqBavtx1sfsBUOjNDlEXr4p8251TMlD2Y1530s1VxpGQXFtLo7QzIOk4rxCc2E2Sqj4FeGOwdp7rW5PInjmCSk5jy5xs3HY3e5vNM-Mj1cL0dViS-q3rsrkmGiQ-3Wo9NusDaB0uDD1gLkEFWf_vUuw8q_c_cmQKmWjVtmMKoK9jmxNHpTrN0LHt32_htXk3wYrcQ6GyQOqWGBRUSrNw5UerEFJBzLXN5EFCCTClqfcje2s8EEfAEOIqGg1rMifJOYW0a1739rmOacjQJAlhwuUPay8AQ7L2eOEraX_V3HZr4WnTS8MPSbSmcyIElEeS3YrmJW8nTG3lgG0xv2LkIk6M_AQ0cQ4xnpkoejdr2tRVsI5d_hdU1vsIf9vIAlM7AqdDNwb8RAUbp36y_HmrAUk8_5ZZUUGKxAv0TZIbbxhtTrYo_lpqKHInIrb7As1nhcTS9YKxvbwtBh2tF0lBZkYbOnEFol9XYe0BPl9JYLdZIvREo2i63vWDLO3s7TgThJmjEZEo9JshHuISp_S9TOoSXaauBuf0_zuPLJACSkMQNQM9n0MRhivKxgD1aYFijKMN-j2cf72pY-ozl-WVytpoG6TKUN8Uq50zDSEOqEN9zYWODcOMrdHpdMk1-cRDRst5NDNFNsicxAM_976RM_HsfvmvVaDXVD_uC_28yPDaJp0jmt2LZvBYLVhj3P-w_0wroQguWZLkZOn5K46L8ZJK1QNzhnm_pi0ZEW2yfag8jrLoVE_r_05BC6TVn5FuBsFU1p_vxWK_LuFlPDk0WtdPXH8eRuH0cZIDPwVGaNMOyEhx4Y9XJAJgEexSO17Qtoyo1cptmaUXRkNLwYugRuaNFCN4Uh8mj5dVBaJELRy__mxe7RZ4nILJfA1hjIEr3jfwBjh5tLSKiraJaqV0BKqdZpfRgXD3tQOqyU28sLp6vyIf4uDdeXP6P7KcE1F392fFWzUOPpm2e47VEFg8iC-wJzh9bmK6vkRXytJ3c_MIoAIKaNsJCK6Q3sNem2-l_WznpyqCf0MWrLV6V-Yi9yRMLhu4pIx3TBKQvQI8rQTB36Gf50wb_SLZpiLI2_0GoXv-qNhwM8_N7-WigqM569-uZoaZsnxAuCeiz8ovdRycSY8aklj9R1R9TXZi2u86aIEg4xfU5FrOSwlvTOn6BI19-hy5ou6kQoRS9HiKnnP9ZfE5f9uHj72MlzA6Ge17sdaJlb-yeCCI35vbPr_Ks9g-0M2MkdcOddWF-PFxdr7ZYws1P83PqHTRp6cPZnwnPyLiV4g4XZKKHalrfInxjg1fOhAth_SkoXlnA_o7fEhJQF1CgSK1lYB4Oin4MKDMAuH6uMFTZ8Cinsyoq0PS3WWc7TsK-tbvejWLZ8ZOJiV09XLqwUF7NIfaP1iU-ivoNqykJ9XHbqUTd88cYD5sz6iDmx5vw0Gpm1pHHRDiTLtQWpD-pbOgVmOyY5QaUnjMqrX3nGw-mIFWmxyYAo0h0ws3JfPQ_BWw2rwNUMAEevvB4hU8lvXt4krLcrKoU87-kYd0sNhhx7NTW1AJt4R4d93nYdWHWwVU-FSRVyrf1YpoFzTcCuPVR7R770_fqcAcugtTIfWieAGT6IFU9AxjZJADyiQpgpjLrtLl7Z6uALOTD250Mw-eL1wlGhWn315K_MIV76Pifg2WFfY5rLtSaF9lSHvzCSva_wLX3GTBlCbVSTQYPoPyruoFGLl5PYRbPNDfoM-fEEYfBD-B3SgJ4-dIzoPjxV2ZPDlgpfqzIdcNccGdrCOP1b64NmwEv9L59D6dYYGu6vbFjqqeHxmNrPo94tUn7L4il-wM2Jk5oG1NL8k17YlbffNMb2XbMZ_FnSzHsvJo70REBs7CIZNZIuS7JS4vdLAnTYsonJLO5YCoezkF3mbXUc6_jDSBZa_7oRsX0YwwQ4sCdb06h0Ng1LqNFRHKmxQPvk3QFeMyFJYb7XS4_Eodxrtj_FIxx3zxQUS6s1Y_tzKIicdJ4D77zrWg6G_fFl-9QXomAXRKROlK5Ul-1g1NRnC9hVVFGL5iycGsJM7d1UNdqyvX2fhLsqBo\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684589979f53d5-63980953','','','2025-06-08 13:01:25','2025-06-08 13:01:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43358',0,'cd-form-entry','',0),(43359,0,'2025-06-08 22:27:55','2025-06-08 22:27:55','{\"firstname\":\"Thadd\",\"lastname\":\"Dudrey\",\"email\":\"tdudrey@yahoo.com\",\"contactnumber\":\"+1 303 8752429\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6M8s_w79s3aLlm0e1YpVd_vQxZj5HMDr1CoxqCI6cBy6E6VLS06zpIq7Zk7ZR3v0-NcMMG6nn39fT_gmkZtEbdCit-9Tu80If-Z2QtWkx_LCqbLXMl6Ufvjj57BWYRRDJsXKRaNV0CFUbRgtg12oJCLF6fzBhjeHdOaxuYWTiEjl5Ade88qc_Iu_oz9ygoAjRETTHdvRdlTqfqs9OgJIX7kSv8OtBRD2DxXvylNZjGfoWyZsvksMJYeq_JfO9EBCTxUpXsv3Wn-KhnCeM4b8G2KoTOoGw6tfgVEzGHUbxSyt6LYbTjBigw78tt0l2Z-jUCxFh5waWx9dD1BoXLY2mjXmelhqlOOKw5HkJENogYouaGtdG0EGmuyrPKOnKgf5tAXNVJm-azs7dL4P-koq1B7_s9p5kk9WYDLcLsghtRskatr5CO6vApfaAXdfbqiys6pIarbBU841flNT95OlW8wodkmpiV5JUf3lZfaae9IBzK99SIpavpYDxg-XrT6AsorgwMjc14yTYAzrN7gQGAv2xd2jyE3GHpCIiOTCCcwOWSwlRSuOlzt1WAAQO11_6K7kmBxJ3_gFecgu-xFmB4d9O8OTIn5GAjWadoxmHy-qmqWwFc-wP6D4RVIAFM3WYmyv6Z-dDUUrA4jakBsxAtV_LnZFqZfbhVodVi0JDrBAyB3UzCXhA3BLSTBcIKgCPE50A5dFEIzHIZDMvT2ncCMsuk6rWhgKerGe9Sz4vNxs_typFw0recnJwdGRd_dVQtNJV_bJziQlCVsD9HpF5GK10Hj7rE0iBzQKuTmgFneds-MdoVngqQsa6aX9onhxePkNJRLkvXfo6hEzBYhDYgzzWZOHbkdE9M3x1OOmnTIzg2SBMNIKxr4nfXwnckEN72XG1Rux9p3lN7llhmRPmqFWFLZ3s4ZDXcXAUiHiquarjAdAqOJjldmjI_79ZwWPhen_ff_ZPC2-19YwpJ5_evG9FgUoXwK1XPbsRjq9MGkxRPUllxnTqXVocFim1dY35BylM4oDAl6eKnhLR2Her-v1a7kUL6E4J27_NLVMTFmz1b2zzGwfmdMd_HImuSndNidSSER7MPT3XeGI4o9sr2h866YoKva2kt_gstbGEn82eR5uXNNhjviGyhQiLw43ZWoLTtb-f0Q63SuYtQEcoB730AlNlHyWHZHXJeQRNnylfqigClq9dwYeEqwN2X9z6DHQWcUfHnHX1Z9-80nuwfedxPdsB4A_bSBLQJ5LtMdU6G3H3MyWSUpCHSubH4oMvhHPWaJKtuTfWdiQS57Ln8I2uxjOJDN84TEAwxaxlHTb56gBvog-sgHm7RmjxaGZpab8ij_IGPi2W3LGi9F8XpHScuBII08mqM_t87UXCTrAx1I-VTOPYfVVk8VAXQmvfpZpL6KVoz8lf1rxiAhVQSdMAnVxt3MhOpk5TPX8xeCbXmvAQ0KuYf5IXcNo101IxBYYEJ22OWz_nVe2RWVk7xREjXKva0ljzadIZcGXPsq0saE58n8GtU1kEi-uS59c-zNsbNEdcyF5ohvh73zv0l1Of7BJi7DbHrRcgqhczHdSvD3N3ma2Q0TJ9G7OoOjx94FMRvBbp3TVvkes7fBSTQo_z4ks-Uw7p_rSyeuETyRogbnxV-XBKkysKK4GFUUWpQym2IWXXLedTH7eYISRIXGxZ6S2kEKgbecNdpBG27SS-Dc_I005OdTlTDMQBbAzPikZ5KLLZ9yExI0d7El-OxLO7RW5UD_lT2ioy7h6ApjMqebwIWxwgSC2_TuvYSJl5Ns9r_wNRam_oNg9If1NdjAxXytrmDgILey0203mFH_SA969tib4tDNhOnZ5IME3xTIP1d1tUijGDb_hEiEFAVuPgVFNoxR79J03uOjtraO3z8twTHcL0rYOodqHsn_fu5ZEGgR1nQs_7hs3seKPjP2gbffi6faLiTPSAqEB9o16aA8g-_UJjbDQOADfLXJfg34YinNvLhh89Pkw4h_EVwgtgQJgNnCTbfeoXVxmRaL9xkISctnG53ObcaaO_EZR2SXnxWynz16F4f9ttv2_4oh03eg4_KCu8tL8CcjtBZ8d3UpXP8iA29Uc3HMozuPd21PiQ6rSAvtUKcK-kAHC9aDE1wdqDM2frb3YrwB-KNpnW3pFAhVYIwzS2YSbP_2WEXTuzrQNrWiIO0gdszZ0RAMhQnINBmEHWqggO0JJKds93V0FYKp2bG4j7E0w-RxZcSX2bVkdPGOvtaVYsZnoxMucVGw8bJJYQmpshr1BIdpTnUVs2LTlzJtUbn63Xs-4k9rHDtLU5KSKQyicyJQjH5IJ3Gfr1NI4GZsOS01PAFuGuWKQ4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68460e4b83b6a5-93787075','','','2025-06-08 22:27:55','2025-06-08 22:27:55','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43359',0,'cd-form-entry','',0),(43360,0,'2025-06-09 06:03:53','0000-00-00 00:00:00','{\"firstname\":\"Martha\",\"lastname\":\"Woollard\",\"email\":\"marthawoollard1@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw6ZTCBhBOEiwAqfwJd7be4CZNzufYopES2xpliewKJNjba6qsaUWoehfnEVYRubcyuuvI9BoCproQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6KgyWSgvoJShNLXGBlvyI35UlcPZNLVCrwMfmVco_1QhThQ2PEatXJiZxpgEEBdRFidJHa2HLQrR8YIGeamuwvdgSPSk2pdLEIZaZ4RdZ5vpaNChB8pa_pEe4sFzaT7o0WEFvQTiDuA92EwMEg4Ame-wlYfXU0zZMJR6vb9xPnCxo5ll3SSdMx7TtUDA5b4DRd5PeDwkfoZ_fsv0TvX9Vgx5ZYnh9q-I9Ll6uw_JdYoxRQQWyJcisFifDM5zq1k1UaM71rPIQN5mDA7FMqVZIrFTqN4uetsQFIJeJroNIdEom5WxuzV0basSX7EVQMzWqjTrmMgiynTznGKU4VPD482d0BNITP2uSOk0xdHVG1n6UT47tC8V0Yr2GLber_STzt12sM0c2m9TLLhq4Giwgb8PB0tvUTnDIt6IGRweK7q1GZmkef0kaFo6O4txy-uQa1lTwg-SZptbNidNvOxBcRNKBV6ywiMehPluMPKzeIwiVbqLsjAeUGESOJIT4GlIfYCq2rhYZl4BGAZELKrk31Q2xBFo7bxAqejqynaH8SmcEB2mXM64raNLX66EsdeiRCISwfPqZ2RMdx760-bukFjXhHJp0u4xibaShyl7xgOfchVJIA5spHHKUX_5ZChkJy5EN_FDMdHDOzLDE0cksM28UvernNkym48vBQXZ5UU69AaI1hPpHdVEEPPvs489OLCcMSgpfKVahz71eAXFP0donymmUVzfumZeZOHTQpxH43RdhtR-raW0694TRzhKaGabwRAZRVJ-Bpny9vIcecwCShldFd6ikv9q2U7kZRJqcFnMoHgFo9MACTtNFTjOwDAzIWOPQ4GrPi53HLmwX1LO5BLAOQrLkgCm0l8MoPkj2ZJUkSP4FZGufigZL8zSxuIR12YDZMDbAHRRCLds7laVIIVbohXSgGp_gtnzzFnsrgvMULuyBtfqwPmpq3fnkEoIbuiLIsGcvcjtn_joCoO3MaxqyvEqyqXaGdqBI35nIMa1WqmArYqBG-F3iyv4q01nqSK-sFJGnZMXoM7n2YtD3B3ZAb93NcYlp0ztNVnlAbzyq2_pvRVHpaCCCJkr1dwQWgzqLXQeQFivi3UQ1DtvRlCJNIHmqxEgT59cHEuNxG8KCOZ40GHrBPCRr5PPFcXYc9R0gyN7pra7Z4YWjpH8ZcTtQk-F02s68R8R0ykAkTNmZ5NgqKDMdE7Knjb33nBKh5gHkiNl6SXw8gM-segF_bIzdi9dNMEfW-s7H09cqDeJVD19gXHZBIVl9yVl0p83rNuOIA2AM86M-x0hCxsK6BvxDYcqleLE02i_Kta6-hB-vnooRl9gzIbmw_HvM6SKJQ4yitMF7ztoZ2RLLrTWh3WOd8dW3HEBvUhHFcvS6D07N_Pn3_uHHUHapYHB7YZNyiKg2GRn-mgFHaB1bycEIBl6xHx93DiX-Gyvwh4aQobJLVqwCD0xeCwYc_Sa7C4jCeMb1W-M8vQBP2loVL4dR2HhQLAZgaaoFGncRzFkULEbQ8TGABcB9bK7Kr1DMmcbhYwfc7FuTWMg3Dn7JwkaGUX0SYFm3ym7VDLZy0XQWuCZkPi9LGqj-jBbUJxIky1NMz0Hf2fytaVLb9JUaLA5G-ZZVrxofH-R8lP0CCr5vyKVWeEdG0d7_eyip7Yr0aY0_6uNexS2LgrGHVC6lB-TMLkPxkmkJsfNQbkgRDM6DgB2_9Sn4SvRuCKL69KegUc0Ech6eE1OIbDXSvX798tG5rFyVAUy4xUHNRhXIjeJ-AoS8YHgBLOlCuolcKrW3RIGcYnsPThfxgEVF7JstaCFiWwocYK-3eNtBpC_Fj-y0WYuqA5Xjjz9a9wEUTucB1rUoLnAhzJEGftnpAlhU1ooPgJ_KUkNNiqWXn4u_GvJLh1op9VvwiI0L-RCtbmGUuQI44aCJHTi99lSEd5XFt-b6NBoM1Ox8B0yofH8v0UzoQW8InEuDtJnFTgu5gcy-0xfQF16x3MMtxWlkHrt25NB6JsQUNSLUJ28pzVFV_BWKqYp9w92PBaESfVlFeGc_3Vok-WNFCUtqn-cAdf2wA-7bnoiou1aJxvbxQ_U4Y92neyLj21_xf3cIJBlKGokJyn91olrieUAXG0Uj85JYApBxAy934tO11yJ5QMBvfk2eko8ewhEypnY9VekwWi0_NGWe1k3sDQ9FMZX9hvYSgIR7flMcgCcM-yIKa0Y3mVPQj6MY\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68467949e31070-63391637','','','2025-06-09 06:03:53','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43360',0,'cd-form-entry','',0),(43361,0,'2025-06-09 06:58:28','0000-00-00 00:00:00','{\"firstname\":\"Marta\",\"lastname\":\"Zaghi\",\"email\":\"marta.zaghi9@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uhIECWgseO3cZA8ZLQ-nrVt&amp;gclid=CjwKCAjw6ZTCBhBOEiwAqfwJd6fzyeKzKS2pFfx-Oi5iciQ_aZqc682KNccuWKa1UULxH9wFYwQxcBoCi8YQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7olnkpbmFelAhqNrmaMhjcPhFauEoC6Es-4Qap7MfQ87znpcnxX_VY15V6Mlxn7M-SAQaN_23fSyUz2OJpzZ96jirO4ikzbXBi84rr0PQIgcXfw6wzmNqHtdQ-MH3L3dBK6T-2cQoiArkacQCPIEm0GCOd_qD_iotK8HCAO5m4xRnNvpJ0PerdpUeZZIxL90uy5C53ytYeA4DK-unbIju_OYVgHtSIUGzQ039-knavuAfikUW2LSf_GGD7sTC2-pGOneSlljfKJiU1J7Pgv26vj7wxrIrnhY0QHy5uoYogj7GNnGwM-CUoOl9LLCkSfGre8n1Idq-y8DinXqQ3m9RLORd57AbHkfj3e-pllPGk2Qo_T5dtSHFtc1iwK-I2yFQ5VrZiZBrZq2NG0N82lxqAzgA1rM9P9Uy3FMATjeJ5xoY7S_6kiE5YAh9dz45ZE3sVW9XuMzbgJWqnOAS371_7HUa8bS3apa-nWixqpfZFfSsX_kzzBvCFaPvD9X6kOcnFfpzUJLIyKqUwBfhAUSt7ZqjDnGXtHsgDuk9NpsiyVQLpeAkRN8z1QMioPY6Ufo-7_cUhRw5JqJELqgAcv-ioS23KeRS1qLsgD97JEL84YkRvHSVWh2OXYomv0r-_MC-3E5IjXfruqu9lVnYWrE_U4-WritntpHQRYqFOYKuTYBnb4gN0an0Pffj_EbvvtFo2BHUGJQktgLHvuZZdhzKhzst11S36HXmPBErU66aFZzckHdAtoR-AdAMkA4XrRiy05O_sVQfLOBL_LXMc1fskim7oy_QtXAsY9shnBhku0I2P5uk_yD5duoYMpnVFmZVM9uSBX02k_Fb5fOMVnneeofFxQ1jPuiFbHsnagIGGf33uryDnBw3-zyRnfiwwitwHj3BtJUQ77UhfSVvI8LaTn_SOxl_g8khZFvLs64jfcXyU_e-bFVKunbFcybSaF0Of5iAx3jpLTPTrpyDnsgN95yhQOHNhIivEDlX4gqVJU7EASUlz4GId44LZRaARCgw6h4MfNeqKCvJ7jCXtVX50n66XxOLcnNrrp42_H5bq_gwzlYbySniNwHdzBsgOr7y0hE35NO-chC9heGMABAh4ZlszTmyK42w3sD1AYoO_nOBm0gMkM-YFV4hka1DU9_S94ff5P99dmpV2D9T4Vn96NLS-ZkXd6ageShKhwY0hXGfzhEuGeAgDJ4IOFUmsQlcxGz3wzvW4spd4-vBBJP2fmd_1c5xhRjn9N7R-RuK6WlnxRfPd3EYoZoIVGm_hWJ0kNm1dMgEqLgSV11yjriWKB6yiP3MX4vH98CWtn9rxZ3cwdpZURDJTR1-uAl-qYSdJOXCRYgQXVFV9fGZmk_5pi4DSCNNx5_x6fwBPv9H6kISWOjn7Jo26GgsMf81YV31unN7eQ3fXfUT1iq4OUER7EjsbFkFv_vHowq7FIcL3z0V2fuQSvCsw-3iVzxC0esJkrVGNRMy3PpGocO5KaWrYObUMiVFDFYg-fr4f4ynOc2zehyqaHBa1VFyAtyuZ2zzKv4TmivX9MM7EMAPCbixVZ4m58lPkm-k82hnaz3SRvOg3Kq_-zr1Wbf5mjwU3IXG2x_i2_h1IhogWxATioUTwg1O1xvQlVdpf0wUFpx6E4Ff0gKvbYTL6gyCB1Ar1621_zOjq8brrcSztOqr4MtYfLuzOWWAGvkel3JwzHfR4GkVREGcxZSFhrEPcjgG49otOJUE_Eozyf_TS4aGT-zWe-fIGOJ1poxiMGfb7y91uqmuhjSmEd0JDlADRcDMBnALpkiZFPtkMbXe1c2ztdUTwSd3sfxQDvOLDHNGmDvMN5zVlTLkrMVjuWbR-FcYpaHsUNH35iaEMsoiOvZCwmLpenJ4wVY5TEbyhSKApeUPWywJuNoqTpPH9ZDKqZjEVw8yzXuxhmDdCUpQgSUisXy9qTgf1A1Zd3zKiOVCelptESNI3WciMpWXH71CkyCuHyBPCmCMp842-QR9QG7R5cPF-dbt9r4RO-jiA9MWgmYb9Pai3hN7sxtvS65h_RcfJCkGX51DBR1TFlkjGxpZ_aXl08SzyTIlGeCNqXv-KDcMpDouo7uQ-9al82Lx-uzZbXAGdd-A7oGbvQx6qyELD4S6tz1XTFsqUCvKHgzQ-zgJK7d_EJ1CmfVRI7zUgp1wbBjtMfOBqp6Ry-Ir9zd0c5aUuyvhbMnY3Txpy-fkHGu6xiQ13xCf0nqiYKPvIWyQsxZ_4arnxmC4INzMh_ckil8UdATdOjCeWlAWnpepw-KO9WtBJw3xck1p5R853J52vb2RaX9kIPJJQI9KXUABtJ5A8eobG5iBMJtBgITx5cYjETAD-fg16XJQ5jI5QuwI14ijueTbHxQ7_h-0HosGmyrKbT38m0w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68468614039953-07023585','','','2025-06-09 06:58:28','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43361',0,'cd-form-entry','',0),(43362,0,'2025-06-09 07:49:58','0000-00-00 00:00:00','{\"firstname\":\"jenny\",\"lastname\":\"burns\",\"email\":\"jennybpodiatry@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/about-us/\",\"recaptcha_token\":\"03AFcWeA4WKQkGOG1I2iWOq7ryuxgC28HXD6y00XsSiIh_syb8_R1DG9eq8d8y4SjgOu0fDurXTL4Kv_IpA69lDkZZ06fXiXAXG4oWkDi6ytBx694ijuUM6UEdqBeslYgQof5c18Q6AOtZHUg97C9LK_8lhlR3-g9qKB0UfmalPlSnIGX7aE1VyU2HkDS95h5CmWBELkDj744HNuOb2MS7HGKsUoKuOCqJJLNKsbPkSjY0Q8HR-PJozLFpOcx89Uy3LVdPdGf4ZctKxsnFyUAgjGblzt08d8GZ2MKSPHva_n6h2OmV5Ql0l6PVF4hPvDqodKynP08U1CWuMPz9rzO9NwfA4AAJt7eaXqRUTxu90R9NrbPKCRmlD0iKwPjG8YXqf5zF80oq3JwlXvsacI0MiTE6Uip-bPcWR9wyaTrPUMP5whoL3Z0J1hUx5Ut_YCg8_3mMOHDXE-js4wWOG0ihcd9osCEh93fjmcEfltGXoYMIdHQATAUQwR9nsqLVUp69RRDVxRNwZzZoMuG9q1XzbhzbI2CcTR3I5la5Oarmm1Ex_hZ4HIYzOBhMhzdgLT-CXAhWMAd8Rd9VzDcUo1cRDh2KAlzZXn1wvOoouxDpkVrp2nBH150LRBFxaUAfQdR4UYmkWZ6uX5IDnb7b3qdsWDs_Xxv8NtxrHP1c-GObPzPPeGSy6QNKSpHSPI64i-MwKK6FHw5gdjii8-CriqvRNp8yNrJB2CAFLfNpsyV83vJEfClxXmexa-zY-7HGaXwZ3Qt_slfpR2zbF_z1YSnspqtUmIUwi5Ue3IXk4yEBE0ng-1yWY5p1UV9TA3bHQNKLzSXC0GelXrxPlqO1GRvF3JZshDJbGkJ4m1zPAHLV-Re_ft-x2uvJI6mMFL7UveGIsHIpOa33n9-wNddDONKtc9TrJ3OiQ5BVg_uKZfKGTYr6D6RBsmca4bYhCJEBjKm_DS6YukH5NLA_4NOLtQymAPKfA7iaenQ_qvrxXOpuS2tpOcfybUHdF4frVNHmmgM4gIw8A3We1EzpnVAJXq4I4xYzYOOEPw98Rq3uCLQB-1fhRrjRGrjmufYS1fxVYBDF3bvOtkLcyHSHn7qDZ5qHaYEu5T6JPpmJ45cpmdHRDv56yC4ZOiB1y7i1UkFBE_KRcDojML2xQJq70ASgVjN5yVUL4NIP34ePDuq_AEXVQnX9prpux-5VACHIvYe3qRsuOm5Q-xeFSscMIzXmkLKgyl6KLo2nnZoqcPmcSjE3v4CWNDGypqbPsUagw86X5Cy2VQ-Kck3rrOj2SwxZWVVB7YEhLsAtSkwchJmId0l_cJnQFxdKSm4jvZas85Sxi48Mi2or1fcMkJB5rhzeLqouCfgC06yqwQIcCC1Lu9PlGaiwkCQ_n8wnl_Uw7xSKkJ9RSDN9Je5TwhKw-i1jgIp02neUH35r4sEwEMv1ubAI6sDKSCWG3TSIhZfo71iJBCw58DuqGiUiCtucIVvmvOrFt_-ARLU9JpDg03-0hGYF2AMmqOgecNf3fB2aD90Qwx6Aew4Lr7MIr9UeVzakGoa6YQPcJGnQeokrWshuFSB2EAC40wciRn74uBxg76QxHNAQ90DsAggR4JGAQ5x2lcePs622-0l94j0qIAqYUC1cFulHyv3u_w6bi_5SxOpLA4XjIxfEb7SIRw7tnrQNWNUcwAiUMw3O2uZBtljQXHCqDy8CDxxeaC549KLuDwyL_lEZqHazq4Zo9LMmIHHNzRhTj_5ozZqIF1Cff1Zhc1pLew-7EiIO44ya5pLJhE-8vhpkiRvn0TrcSrZzUPU1_qlNcI2LuS9l3jRDKD2XsLeqfhVIsv65eNYLvIvmjfrjloKjyqORfn9XazXZ0bYkDzooeEcs6Vpw5KtHs0EJJ6Ya2Q2UYmENlM9-jGtcbzkiteuIGLTtS2j5_Ih5hzVfQBrg3QFOOT1rRfgOEwNwAnV2tlx_0YgyWwqKONke99D9IQHtXVHBtnOhsmXPpIlqSEBnTlg6mRFs0Bn9CrMrFzCve1HJ74psGMQ0dSSWcU4L90jW65rEz7aBfEv14QDsZZbnXxIjk8jYMe85N0roksHxSBTnsClCzsF-lro7mfWeeFGsbjLcBpDBJWo0MCvRItcK5JaJ8zEQHPNZp7a8UMu9h0iP5J6AYI-EaVSGmOL8VRuOIWijWQXVOmf-\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-684692260e6ed9-76631156','','','2025-06-09 07:49:58','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43362',0,'cd-form-entry','',0),(43363,0,'2025-06-09 08:58:41','2025-06-09 08:58:41','{\"firstname\":\"Daniel\",\"lastname\":\"Cleal\",\"email\":\"daniel.cleal@move3.co.uk\",\"contactnumber\":\"07793607909\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMInO20lvzjjQMV8o1QBh2rfAx8EAMYASAAEgLq3PD_BwE\",\"recaptcha_token\":\"03AFcWeA6adD_m2Z9qd3VHsc59Bo4BFUfxb_U9-A2A6hjQn_OIxE_fpwTyC9g38gXmwrQbYnJViOv6sDYXX6TaGaZqJyjCSRKot5oY2DmPHIBafVJjjPTQtch0AXZH4o91jcmGyv4ICRMda_CTXpw_oJbZFtMKrdyYS4YRlji5UgP1utZ-js9PoUvk-q6HnDRHUxVI6rgEErHv435qHkQ3Tv7N6Ow40XR0xHbaOxCWYptyeZYteaMEscrz4Ko_uJ_fwDBfq5K-KMMyNRAaMflAX2drKVFI5kmD1u7t2iSOrs75WdpA7-482u4FvJ-UyIE3gEYUAWdBDAqekSDxYmo7U9CXlDmnAADAasSJSHYhhreoTbt7KvfDOTJdo6QVFy-6coLerzFuWJFrEbqlL2U2DcLDrrHvsgOAnH3ZFMq_YhNoSQUtYFPLYcteYUrXGZ0cDEpVzwQoaZDGwWxmjHfeJO5Sgi8V6ohzTTroS5wptlJ5UtmosCcK3MCANYckjXimATu8z9ZNs7fOrkJvWltjSmFSWHOnnPPKvnnMRx2dGP5cKqhh-sHyi9JjI3Am-B0KryvzMTPAGUA78-z37xD_axgZf_JoCFg4N-fPTm0cGELhqTBUYOiBSwhnQ5JlylzfVnV1FPn9u8H9bPoMxnmKP50wXVj92TQ5iCP5OUA7BFRzts3HxwLTZoLwGAo4XLqQb-HEbLl55kzUjfRCAcr5LddaMW64L5RZ5eY6NAGxuFb2ccKel2WMsA3i6vmFeN9YnNsAloMAh0bTEJoWDF8HFPHa8SvFyernl_ChCLr1cYi1PeaVPwc6x3ETJNDZqmWe1naYgT449KsNwGHgYteVOmFqLJMBzDjnp596kuz6OZfSu1W_sqpVDidsmUYB3ZIom0rWRaG_b0k8YEfxTeVeejbLDguoxdgW6LFkf_TeaTD_sK9nZPOxx7ms8qV71ReOwNwVR0E_fF9hefrOlL4Xty4LyiXu9E9CnvaM4MQB0pWMA3CbqKED2UgOPKD3ZcBLv-tLEhHS5pnZkfjLxOGga2qwLAViMzN_fia35q1HAv-mkVrOdFUcwivM29bZe8FU6gmSOAVuAR4rPXOm16f5JZkZaYMMuX0zJfSF-nf4lfdZ_HRHa_1t6z4B2n7bx1ZqTVSeP7OcU5Tieqevmi-pVfReUp27FceBgVMiEYNsgxr8fd-kdfOgyS99fjk7GRKel3iM1y1ryfHLrp33G5o1wrJOvHYFYbxzLkRCokvNiM_box-DH6F7DSj8QTXhxA4R0XpZI6FYpaznVJx43kLXzlg1FQ_uz78gE309LBcPC5n3BrZUdn0YuVFSWJgOxaJoI95JtajuyKniIhOEV93ERr0OdlDXrYAl55ZbEGpyaAYkvm71dBeZFGpgMpyksPcdmqwF-jc8ezxNH2iCqh_oCqJq_Ygy1ECyH51-UftZut_BC_Y17cNXKDccSAn_SJJsHSpBEJwEQtLwl8_rsJI0I2E6o8_dH8evf4hEmO002Aax7OS61sbZU7Jbt1qrkv5ZJolLUKUNR6xLERMb11P6_5OxCTZLChsi8RKvxAh0tEqH0-XBmqzdsdNHQWmaX2wCJk1JImV1zxF5Vsf0unxZDKkdVUcrZCDhuLAoAD743c2BMthRfRL0mu8rbsrxJnTUrOSJbxuo1dsjfP722GpXyCuqKjviw3J3oP3A3cEKnwFGY36DEl-xWTNtVLu8ZoLmM8Nbm0-kHPtNvgHD2fVIC-ZPyVAebiMYUXloQBNTK4uoIxH1F13KB2KUSU1tJaC9gStMrNGVnmCy14xH0dCcVqwKpn1-b6FO6FLFFssgPGgt5IvZsa-XZwXc9FchWt1xTOY7X9_JOx8KP_Vksv3SsStHrRDMAyjlxUn2LbW9NTdJoqvw5NPnAIvZeOosiyskkMi7D1S4gYVj8sYEwzHmx_9dOzvAVTT3vfWpP-qgSdjl1NgBoelw13SxUeqlrdE2ploJORwhite0bS4doQEOOMhKl7QV3fYma_DavqizDwtCmkk09rxUuR72b1LJdViqP7-JgqM9PXA_azbEN195PVmLtlIi2iXbKg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6846a23206ab66-58162059','','','2025-06-09 08:58:41','2025-06-09 08:58:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43363',0,'cd-form-entry','',0),(43364,0,'2025-06-09 14:49:45','2025-06-09 14:49:45','{\"firstname\":\"Megan\",\"lastname\":\"Baker\",\"email\":\"megan12baker@icloud.com\",\"contactnumber\":\"07342677820\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sEAHZ4kg7CrJLidjjWn8_kx&amp;gclid=Cj0KCQjwjJrCBhCXARIsAI5x66Wfnim0MkbMPPAXwAXrLYxuPAeEP4xUPZrD-BwsCKz-1lfrA2EjzicaAhgTEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5-BCdrr_4l9mrb9v0B22MeJB5g0NWMUycLPS4JRfneZlD1XCrSQAmuYy8fJGvTesBQwuiYpDMj26qtzcT9o-Z0iSGNgKYM_leLwKtmowcGoN8IA-2XL_1c9kooJvkdSfmPSHPnTbRJcY-uD_U9ff-0fQeFDOPDg1jn_YtzcpoNEJwyN0nXTY8qJbVhvY7Sn64ARmwP4f48A46R2C_A9XRQdEcu01a6hxRCnVR0oGUtaZRdcNNrWcFY80BZl5ZcgHdSxdI1Q_qNcka1N4zs-LInV1wLCg_6yBypIv_UXpsU4SYyr6DQ6f_7R0baQl4bMz5rZZgz-Fz8X7d6IJop9UC6pUKzy34Fe9QsBFj46K7ZvD-UOVTVR61m9fHN7ltgs715ETEENt118TBxNI5pjCiQwKEXhfWf7kdC4mBQVvTonPKkUwfzXPowa8sN2nM7OOV7Jjsice1lZRvR8oaSDFFLXbyjGf93mJL_qmpbSulJdoMzVgWGLtxaSkCLvj4tvc0QrJjL-HDr4I45ByAjqPAYvIP2fglawYnvgzMC14OQ2iDdRJ26N7dWpqQKKjVpw91scJ882usv5f8HBW99qMNxP6sak9SraE-tC0kzYq5oqqTPR2hmfnGDQy9gdY6tw2edySI-sq3t4lvJ1BMijPDlYXwLchzNN-TOlb-6L45SdE1qyXY1IaUdV1a1CJvft24aHyRXcQ0r-QUW3KOHVIlvnuSauD066ewwbhFO9Q5yeyi0DuoFFDAWE1MhIEIftN7StoEKpWmNC5S3wPB25Cjl1TAR_jH-rUxBj4F63blrUta1ViCmWk6cJVE-9-zPgEhqnoonyj4oxdy2cY5lxHVRC4DqmuAjNP4ZtlxyHjgv1x82-B7jHY9tNS2_taLmRn80v2UvAXFUC7PMwfj6it72aDVmwAaMjuKL4eM8Lxm3oBU16QpRv7lQnJfSDXCMZuwqTXf82cDxupdy5EAtz38Gv7LYp8jkYsLo0zKCnOsYi_jyfMRzYwwo002MMjmdjiazM_nsFxsTnJVqoiLGU75woqqSQC8pxh0PGjvKBC0ezk3ohuXVLMGEWWL8cUYX0_A9PnhuiE_jrE229-do-SO_iqtRyI39FPKiL-DFx2qB-BrYRXFpk2f4g_yIyY8K0AN-bF_OXlMjqujyHd6BatdQaqoX_88fZT1U1Bveyr4503_F-lVrhytKLS1zY9paCx4d1v8D4spe70vQb3aqhQRJr004fcZ5R1KhTha7rnSS3nnvv1cGIgsmnC3_Uq2qkQv6VelhcDOviQQRp1PI2Akk_Y4tIqktVhqXtJDGXDbbIBq32AaLaxKjjpfzIRIgaXFan5KFkipLLYs2osXVF8fVT0TmdlTjjJLFrdjlbomNdk0DFWd4bQE6eqhr-gcYsgYn2BwiGGgXzJGTq9YTEA00WBFadB2FHy0dUwQP8T1_p4iicisYLq2l38ey3wGymB_CJtFI-sUPOSO-PLUgdvDNLS0xyQS5tcKr573kZl9FIEFlDuRpY31NOtSGbCkhUMPIN-TrQ9OW5ACzEJWlFzUIQUj1_QQCwjdXv84ZRm9Ue6okAWrzFcUFbMNtM6gytFCGZ07gKHNXXQUlr0Ej5lgemHOe3RdAvScm94-lTRduQquhySwdi6yGCjrZgFU_LJq31EzUrI-QMniwrMO9BAmZxoeEd-JkhvnWqgh5TTjOMlhTunEAv-xnMM1EWKvJ5uVRA1JIUGoeCDf5kCPbaYCPb5NhQs2NB_oTFqHPFN5G1Xm4wqoEhh9ZitAIUc6QDPCnm6S7FuEBcCpsk8abGNIEZIj7s67D4D1QFu-uSaNpMu6qIXJdhBRVPrTFDDaAhET_wTxOBCmW2mAhKlClLyD2SkA0kbSxvPj3_T9X6499v14nZhN2rX4RBHZVDskW0WMrTt9YwYh-hEAE87mzArZ2Y5xPXd025RRnn_mmcC_6-7fjzr6zxI_PbZCtga5Qir3gwKxgBypckdgeUCiY_6XcDMBHqEEZiPNJnT9hqTgK1zweDEe-58Ytg0Bah-oLy1XRnjInp4aKk44yXmTzPfMK0A3bFDcLXNAYo4-iquTOprEgIEhm9LBNMLHhKHDU1db8D8Z6VRByFZqh1zRkSjf_ps1IvQ6wqW72qxiUNzsNa48nZ3ZJM6M_nKQHAj0wqurAXA3w\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6846f4634cc233-18071320','','','2025-06-09 14:49:45','2025-06-09 14:49:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43364',0,'cd-form-entry','',0),(43365,0,'2025-06-10 09:07:50','2025-06-10 09:07:50','{\"firstname\":\"Arkadius\",\"lastname\":\"Gok\",\"email\":\"arkgok@gmail.com\",\"contactnumber\":\"07445000233\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vS7D5sMWntC7DPZqCzQr_pa&amp;gclid=CjwKCAjwr5_CBhBlEiwAzfwYuB_YWrScet0LMgJUXfUgPbL6xqPjGVKD5IGBkuPXRZv17d4LdTu9iRoCYWEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5SDGoSur_d6Pl9SJQkv-oPNp9pZfH3fAa8C8Jb0zMPpDvNMuVQbP491BXLVzAR63xnsji83PpZdN_wGVujmTyHLwcqkoSknsoHpjpv4vR9taof0BFbp9CyG82_g21LCTIOzujSl2m_rSbtMWkvdIsXz2Tv2R854dUHEDsI4kK2I4j7vM-XkySmXWPE1eJEA52NEJy0p2w5LFGB7WKoEOtlIOgh0Ec1ElzdLEViWKzAR0sJ7dM1dVIQKVj2JNuVwqodnznXqrBltc_rT5krsoJl-j9p8mK6CgJgloNTx_KnKERHY75a_bBVANoE0TkCReYDoyEVSttsgowik7G0t1SX-b-o7aWJWZvH8dWsv-tFW7kWfgRkbnZUU8WrcYQ5KT4X2MSEYYF5ma4jqBY3Mr2W-Yvx2id2MGnN8V3F8TTBHSOC1DslX3wXTaXw4wMQxxo9wNlAZ6eXkAD85KEGB9YTECpf65eQUvJxQMYIZ00OcD0FuyQBL2qKjDXs7Vcqa2fabWEG2-LdJjM-FABp77r7bIOxvADG2VB0NAunmLzOMu4lPZViXqueTtes-abxFK9uQfZGJVNv2A-4gdI62ph23axLQ1Eo6o1JleP_5xnctpTm9CG4ijn0CUF3AN_4rWdZ_pjvNs5SFHaBuQEyvj9r-53mptNGDiwrGMLvltvwtSRvvuvt254kCO5bqIu7tLJ0_J3al1rh5QFH4UKJr-DGnLnOrtMPz7QB_QZldzpHqXhufRkfJiCeoXq0RONdQ8MfvYXI4WsnlWhmbCBKHWxvzIV6D3i8ZlMTZcN8cw5Uhk92WQZcPHJ3WKECBRQDjSJlZAVYMeLajvn-N418KEedo43aTFt0vNlHi75wW8A7Vu9LxCFoeS-tI75WCc5zsHvabp0RannMsHkeqX5w3Jn0YcrQ-lWBQ2ctwEGzKJBZW5iQg1lNVFIwJgQhcQBRpFMZGPh1_Uv5zCpLAXhmwRNJOG4OMw-776I5qlTRZRV4lnAvyuT0fBBo9GYPci5HwEsD3fkW5zjKN-VUG51fIUqvLHAvpxIDOdkYWzjFsWAUSLctUuz_CFtRawiRUgngALuErQvaZq4jXZC6NWj7yFkRFfHhGhYKX6xPM2NnuzhtLpijpmbnkPUZlO0iFdsHVv_uQd0Xn5vFXEFmLjQ4LjrUnaUWhwCF9pwQ_PGTUCG_VlSdb6jVc3NxuuC-MVR_EDb45t3PO23wbxf_Fryf0TE0T7uZv9rKxb30mJ083kQ5-8_A5kBQcWvfl3v_eWZc72j0Al8RqxVmv3Qpy7rXVszXvoa1lwqUNEGq8qcEShdOcpBNUHFP-X-IL3__yEJLUf494eabbsa-RBcN-j1m2xDJ2fP30xHfND5Nk6_M5RvKk0jQqnNtJ9i0_N9Gm7lule5kpzjGSmHZ0jk8ZugpQfq_N1brazx-Pnao35dF2xjE0-P-jrr4TaSBIPHwIsbnZXaWYUB4UkKxVmLf5Nm5HlH5vH69_r2OFJVcZO438DK3l-FxXiPFL6aJv79EWBkzUUyBBYLFMCLK64huHdX8KZal7k3GhGYQ_zOXVEl7WelKv8-lZsSWKb1hsYuIchqtky5R9KiK7tfUa7w_mBZx5QDhPcXpiRq6zvQ1Jfj5Ot3X6bJsGruqqJEKsv7DNpC7gDV7Uhxv31ce0rWFg-R62avli28vU48dSe9ilkmzlUoEqwOF2Y_mz9L1fuYzEHpP2oGsbC3LlN1O-1xXJTPW8LKJGrHGSt-UJRzElelbFqKaENOvyy5ChFb0zl4nK3EYKvWX4GZ9TCVLeXzMBhg1ZccUhbmKvlGudcwqcwpAFxi5M0jp0BI6Ds4Ke-m8VR2cC223Sr5Jgwwi1vSdxidokjE8qPERCRghYOSDlniuJBy5H_BjZIweSSYumechX4qMntu4fE5C3_vBeqHJclQ7n2ZbBiONlXQR3vR2AQiQsQITTIUFM2IACfo2qkriW-eseKhr81l3OndRWsmqXBJAXE1hd7J9Qizyu8dXNBufDcP1g96qZT5pbqeKrTHeQwonftUaIOb-9A8-uqwxXchY4IVcSH2kHKl_Ds-ePj-h19pu3TJ_q2CuEF5NdvTNrDwmIr657a3NBX2o07-uEVzl1sMv7Uabo3h8jszINtdRKmNFyGhVdQPKtCvP2_xJ_IhfmzEQv6j8xAtkTKm7gJDF_ZeQsTySzp2fsKBVBtVEJMIP6V1VJyRnCegDvAefq1lItTmiGe7IMrKd-0T24_zgjweMMLgRJL7ZYG3IGR4bgqRvz0ZJf4xRKKbRUx0CO9D7c6EIFqP8Q1gJF8U-zXxzzOpOvqWZQNFzhpDeZWDQtLAtHI2fEtU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6847f5ce133c54-69697869','','','2025-06-10 09:07:50','2025-06-10 09:07:50','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43365',0,'cd-form-entry','',0),(43366,0,'2025-06-10 09:08:46','0000-00-00 00:00:00','{\"firstname\":\"arkadius\",\"lastname\":\"gok\",\"email\":\"arkgok@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vS7D5sMWntC7DPZqCzQr_pa&amp;gclid=CjwKCAjwr5_CBhBlEiwAzfwYuB_YWrScet0LMgJUXfUgPbL6xqPjGVKD5IGBkuPXRZv17d4LdTu9iRoCYWEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA69gT_XNUsO3up250FBMF97XtTJlZS2f--NGb198V3K2ntWEVYTRzf0hBuPtf1ohK1WnEaxV4Y2HMufzfO38C0vNBNEmhjlhN5IzdxQpcW4l_6KCDCha4amWs3fzzFbI6KRVkpWJfm_ysUHbXMBCkdm_urCj8d70XpWn5QWzAELFQXH6v_n5cOUwaQ556jcMwdZTgvZIfJj1zcPkqiLoHtLW8A1jImweCsBVImubRvAgvWF8__j5uU_yzQLg-uzkNjYKuqtLyDHeACEp2Cskm629fTfQxiF0WlsSer59god30lFS3-vPHe8_mFOkofkcZnwx_GsPVf0btLqVJC5p7seA8DAOiZQm-TRpaP27eHrQuqaSHilF4g2szwql3zwyM3oAkWzSfhS1vw1NnUqKET9xRpv2MtrEmjV0q5pkjLYk5S65MOstAPAXp-5qEtZpqjyiSXn7BAtfhQwGX0CfaYRiSMIyCipH-Z1134iYSj8EA2L2l9aLxMAYoQTsMS7K3vo804gBD4tvjvmgGCKgcxfvMvm8HlWuUHCO0p7wHKF9alui0uhEoTuAJc7mGmLClS7Cs8CYimuuZNR_wjZswBRE15JH39GfllnpbnXc9k17s6N5ThzO3GmNorysXnruHGTIPUeHuSITl8xVVvmZGy17I25JGzjWc5IhesfRoOptVlUOUf-1VNlCKKt2bpAKLrKYTynsPFEWMQjBjHUrcd1liwoi24GCxhAQmL2N6Q8745eQ4dxWYRZ92h9QSaioJhFnBhigCA89aukHoxRsy1orQoqAqrLZ9elwzoitBQ1oozKisrfGoX9cztmuAhyhaRpcs45gDazegscg6AuDzdlYQcT5YkGmSUvKsr_u3bWTb7D6vznVQ0ahjOVK8VBoY_nNdPqL9K9QQtgbLTxrIB_3K7yeazWtfJnCKknezkX91KIcL4nUlqC4xUWi2p-p4BIzXPbs3UPfFbeYNUfMwzvtfMhMwSewBPdKRa2s8HF_4GM4btXpwwk_dKXikQbEVnr0QdOJPxcKHaDjRXoQEm17p7zLIO9_rrDM6WX6buWecZlDlWtW6BH0wsr8o3CrQsYM1Jgt9vx8qY7qoXjwz8_d6Dwa_eCx_8EsHB34VxqQ-E8j1JNAhPWAFDAR1xJE1QeCX-_-RDbCXVPQUzktljVI0ba3HjwbutAjkLCTksol5D8r_uXj7cZoK-KjbOtyAHkcHNKB99SeSlh_JPtbNDuiEUbPf5HyBZaif0fzTHVcLgacp2KjxqdCwSvGsoxKxZpeqpOmE4G6Jx6g5S6m5q9UHhi-M7ygCfwKCt3Jm1mS24K1NjbrOAWIhqXlq5PxDo9hO8RAdQ5RNJbkLKsD3A_MLarXGoo8qlfSK9Ij7Yv_heHh5im6tlrxRLB5mbEbT5OPjqXwDr72Z-EwJGYDUqZN9VkOWjO4L2zZCMWWqjfiePNo3u9wZ6h2YFMUs5j-UJKS7hBgLhY0vIisGNl7gqVwGwOTZb5Kjw5TIdSzMS_PVqR2i4QiDf8GtaeNqZRLeGQ6zwiGyGVhjD6u0VjUReSRsiulNBXvEAJUM4zY1z7LXybyf-6E4famjn5J1BnwViyu5Uv4U4LG9705WPWEvcbnN7heIiVE-LlRQzrbf-WJWBNHN9xbiuxEblHnBXbLcomoFqVmsXtMieoGMnMubrBEMKeNM63Fv3kc8PQ6NmEOYkS6TnWQkRlshCkZifkOBWnXcTJ4H6oa_tvABVorujRXYWktqZIUukQ3Dbn08mGgviplXSav1WrjSZ8ps5RsKoBqtkddv_gLPPceVJwkvf8ronoqwSHJAlN9ep1Z46Hn0mKhW9b1YN4Pt1MsIYAs6rmhJvB3RqtZJ16UBMmTnaauNoEEybVqaro4UqRc7O1CE1PgGWxjJ2tiI6sJWHINhvBKh-H2EwBZuPnnUVN8ll7C9XpfxIy47j2yTcM-cwBuMe5T32soOF3Hgg18vvBkHQDS1sm6SNrxreHtyhfWIbfXLh7pmrQYSMKHUHSTrUz-oOZc_Vft4bwRjuc7lNvrjR1nZsx3tcI2xS_i6x0F7BPAU7JLSqWt6ubEqnAxww1VEkaREdBbS9O6paaYo67WowcjxhLmzdGryOK9yf9fP-vSHdCYMvNvhts1wRcbBz87_eT5GUSdOeqGwF7VoMTSQT8DaNZNdwKOSo1bMGLQkaAQeuf1LHuqjw913ERPxSg2ZuFzN1sep1sfxcQesnCI11eTSB-LLv0EPr2DVV2E4YurkZ44T4Vz1ACUFigUM5XXZDSBhth4TV9EGnLjHG4c1V8oLDKwN6D9_HPUymUb8ZIgNti9ojYwQNIUCSqu8gdje0tnTQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6847f61e94fbc3-27526117','','','2025-06-10 09:08:46','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43366',0,'cd-form-entry','',0),(43367,0,'2025-06-10 11:16:18','2025-06-10 11:16:18','{\"firstname\":\"Shannon\",\"lastname\":\"beck\",\"email\":\"shannonn.b@hotmail.co.uk\",\"contactnumber\":\"07803560094\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6ttyT3J2ZMk0TrqBpC5Z3WWr&amp;gclid=CjwKCAjwr5_CBhBlEiwAzfwYuNl89vFohzfCx-INejVYgxo-i_1hBrwVaZ6hZ2QA6uz3ecF_Wn3hfxoCRVIQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4E_Q6n6HcPcPUHCC9_fe7r8_TbHWlFHPZ9k3cuX0vxJ2n44TIp6s43g2H0XUi01jOWWHwl0wo9EV5Xuv4KxV4yiVomlimOVGbuBPyX86H95EueU6HOJUKi5uTKRaheXFW81hdlUF_RMJ9zdYjURegfA_aRgJMViDpdqZIFz6RlqUoUtdm6-iy5iJbfjNRGUrjEnMvjde1d481FTnU9wKLQtKOaDJjtGNLaazoFPgxUF8tpVQsCewHq0I2aio7BN4n95lz_c_UgzhMQoSXXFfGXCfqEVIhpMCP3EcLidGTeuVjeCl7FglRfSA5QHQlABPkwIO-9q798S2Nw0LUos_VMd6_YxBN-CInf04OBRSdtQSmMAHDJGzHjGzxG4UH6dLSNySGMoZ-ZsMlz49v10wBnVwQC2Zs3BYMihG6ItJzqynadP7AEnu5Bbjta9NQgS3-z4um5GeFu5mjRjGvH4lmqK-3eQjc9PAUVWx1My_nh5FjV63OrDA3zAubChEIpXHUvh0phojC2uv3EParb6a48Y5ntP__mVcZDdRdSGrUhkI9B5TOs0mwnl-podvBTIxeZH7jc6K3w-s3taLxP0gNS8Sfgkivn7IVQDNtXkEfLd4uyzBhj5_-7P4A_vcXMBqdNbd6qXJ66Lb1HPN96KqJfzelZADAeGdxL_V8aFJq5-2J6y0-iwEErNsFU8XH5Uwl8Os-r23gPSb2Jp5VFAuGkoGxCITdKcrGZ7mZ7X4rTllTpoCHxS8woeH8kzdNG5gyPjtBley0hxJemzNy8kL9YRcus5ZFiEgpjZ8JUG1W1XQo-jdqII_O7HZlxUzpDGfa_CpBRbWacK_WbERzTyyxG-12LxdSWoQ-LZqQ1DxNxUNXi794IgG413V9jwx6lK4MpiZlJd0MQQecCtAdJJvQ-PHpAjjYcyExjR7JAezw9nO1ZTb1H6XGLpOU2ZL7em0JaMlMM4hkPuRtx44mIA-xDF-4U5gofFjAg6eNq28lE5gYZ_c6W60uTPReCq7qT_8R0jTeSr9_qnvDP_ewYzvw6eQ6Y6QwRaOGUdgm1MJa4SacsHq0p6Bf-ZMDykWH3zUueG9T7xwgtgnY-_sA_4pgp9x4Q-7npRAL2DhBfZaNNFDJi1CF8Ebjc5wCT_12KHDd5ddmXjMn0GI2CYNSZXh_Oh8hcLA_rKNQ8oVUwQJq4uFnpDP2nFuX-GiA9X-d8jF7s-96nr54FJEg2tBft9yIZW3AMX4grAQRXmufBkBydTAQUwu-nUIt5bbaZz7obXh2vEWPmHoWoDwEzjcRzPNmfvUEBe9A39KPOomf9gzvXUepbrhTBVxEm6u0pKdeqHfs3WDF03GOzUe35YhKrLGi8ksf-eFHsi9PpZvOp2mwtwPTabO_5BPP4FpIyOpWMaLq-lQJTDxPlXJCZLIe4lSWiOP5MrzRxr32TcdADfZOyukTfWVbbJa5R5rwnColqDknK3_Ott1LuyMBGv7fYk6zblF6Ka_DZxR9Os2ZNYPUnr2lKWLiDu0fN4u97TQKqulzhKE8qnz3kwiNNUC1x0UPqyxUSXispu0LY7oBsuH70H6DkTdoXajoYKooGssWwlWORPdoZavkzO_qpnRy7UDA-MANOEKpsBDJPNtiFv6Z-d0GXl_2ZYNAOy6rAYEh4xZUEUw6KsVd3Z_GpyUV0gkaC1p376ES2x5xDvFH1xb68wSLMdZv4ZbzKcO_eysELZD0zwXEOp3DiwKbvMpqyCi7-e3xA0ixnhqpduSn0bOAq_LfYIcXQKu895pt3tYH3Iszc6fCEbQsbYJl0Nlfvl7uFj2Ajuns5bKRL26ED0gzFGMTWoyHS10AE0H8wyksLHCRMjAxzlZa6dw2Li0gZedaldU3vHvFVkYONcsYPa_D6-t6sxoC-5q2vS8bAp3SW-2ky3gV5-sel8fYYqFZ2MvSDN4b0H-_6FkKQ0-havw3E7FexfLpL3UG_HCen3IlPTgEJFI_UK_-8U189DLV36lVBvcQCFlINghi21DDo-QHm9EmezrtOt68OL7iBsCUvS8tlcUuTbwVZQneKewSlJnzQcjJPFQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684813f45db4c3-51811655','','','2025-06-10 11:16:18','2025-06-10 11:16:18','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43367',0,'cd-form-entry','',0),(43368,0,'2025-06-10 12:08:36','2025-06-10 12:08:36','{\"firstname\":\"Jamie\",\"lastname\":\"Gough\",\"email\":\"jamie.a.gough1@gmail.com\",\"contactnumber\":\"07747002413\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vS7D5sMWntC7DPZqCzQr_pa&amp;gclid=CjwKCAjwr5_CBhBlEiwAzfwYuOc8cxvmiSQGs3LxaOBA25YR3ev518ZRI81sWfCcTjX-2NTOeZ0TehoC_6oQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA54qkkdZvrx497TeiLk1HGJA1h78R6ygGNpKC7dsRJ9-hGfxn3xn1bu7H5HmZsCiSucZ0aznED7N-niqHYZjcxzW9zJzsCkrvi11mjLL5hzofxtDnRbY9J0WymJWm23rWkw4fD3qBUiAOmbvoCnH5PADFPQJ7F3n8gCvObHHUy7diWhMfLbC5eVKag2FIWyxYqsMs7kg6wbclMvL6TI3pA0oHfFwlOk7DTjWAZAJyOrFfhiTO2YWlnemkzDNS4hSHHtZUcCuDp5a-YLyBjjVC0Co5U7pzc7tjDQsXYImpHburvTGNFxNAbo1th-aXrwDAZqokueyuY-IKPZuzytIE-o-0r5xT53F27mF0Ag2RRuNJZd-4rZ_z88ArTCrFTV0ti081Cj23QfsA7qSDXr9ZJwTiZhmsFYCnquB-oBb65QigMftAxoqDdyAcJUFdCtXWRlzJdkEpkB0YraT_JOuKYqwSSyM5g3_W6IlGzYW-qGANzA_2daoNkIH4puaOGXG-XRt3UB8Q8OxW8igBqZmjXgHSOs1sw-_ZEa6FbYsX2ttPVpDYU4afOV04mO1vnH8SGPkAQLH9Ipbx_o0qzuJ95mvoQEjqCPJ05q2EHZIpZOmTcXRe8P2c7V9Ou8IWXYj4Mxd5AbGO9fCiE4r9gGPfHF07-HyzOn1opPLRt6-gKr8T_v7CeXb-lzV_Dq-e-tpq4HNweUH6qR45PdTIPoJt8tmGOnRaxjlCnbWMUGLyND2dCkRmV9VFiYVmkcXGo3zI9CsCAPSXTMdHhOEHxZmh-GM6d6gYnJTf9y5ctCY8vbqfI4P4y6KWGHqWqCtybuus1Ry8M9DCAVfhiw2BdUEkkpmIVoaUcDP3MkPnlClS4paNef9yD7861T2B61rtP4XUVHfFwY227BWhAtPmAEDJOg3xyacWUxzo4Mf686ezO2zDkdoTV9kROqTAjLficiah9u7WC0L-0Du7hESQKzZjARWutperiRYrQ_ydeBz2bY0XoZim4EpdNdBwVAMEHlHAIFqqQ_57XQbXUKsfRacCPsj6iHxV4YiUnlxcrCUigtUtFcZtzIxTGOPsCKCEvm7wazY604KXCW1N-6v6PbgwF_2Hu_Ep3uuMIsEWUrYWcmiBlXTJvnvP3qzrEWNfsp2gAmKbDF0SBKXLPwb7UScB70uARFtc1ZkJYA1yHfIoDWEDsRHcrag-Kk0L_cvPWUBs7lBuoSCPumvs8ZRZP7lq1RHnlh7LC6qvHWcgLXBIsmKTpM6YICHVy0PMOx6KWf5irFsBPOflKMiExqFT55gQyyJB1YWNXpH-6_-1YfpBAk0x4dYT6XUtucgqWCQpK15kqa9gXNee9pm-KyfRR76LLQGRUXEB9X4erlFGNadtlVh84ItfnDctDHjaA2Q-mLUv3L4ujF03gRiVVNiVyk1u_CR5Cbgu_gDXFBtm-5y_jPCq58D40lNVdN-2gE08Pj_cmC40zKsS_0cZMazNo9uilsKRl9y1eAo51JCMojGenfF9yJmXJZXBlqLh06fHtuqsSmxrthddddI3WQyD6BMz8WzTrHgdzdQrxDdGL3DuPLvpfm8NZN7Z7mE5hOv2giJkc8Ep_epaHO886QoSLwkwAE4BdyfIfXxJjWWkB6WStTJ3I1Rnd3tRSyU-4zVye121lonKmQgt9p4CGC_Ga_goxsIUbOS_h1zOCBBqO5R2dOkLdSKdrg5iixLg3C1Ljv4TzBbqNeyPdIMMETQ1MR-Pwk3E3KQGAHOXcnA9pNOV1IG4r6f--zAKK9rCr4RcBW8ObRwG5RZxffJENyOIAs0uBUtEpyeDXFKa5cUcHKHXOymykcx8FfXtWIaHu4kBG-FrLV5Y8KWTVy0ajbU-1LdHwLn8f8fMGkDH96fkj6WPZvZPezRhUrBRK2MXSXi8plraioKbAWZTk01y88TepzFeMNSSaN40N5hykoRNbc1gS2ikV232T2IZYb8H_lnN-wAhG9MmCQfn8AIX3z_4aHp6028_Pj6ZzHOJ03zKaXQu25hr9JIsP-JRCVfAKPkVSwg1ghxRb7\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68482036a11f29-23553665','','','2025-06-10 12:08:36','2025-06-10 12:08:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43368',0,'cd-form-entry','',0),(43369,0,'2025-06-10 12:24:47','0000-00-00 00:00:00','{\"email\":\"jamie.a.gough1@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"SO23 8SH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vS7D5sMWntC7DPZqCzQr_pa&amp;gclid=CjwKCAjwr5_CBhBlEiwAzfwYuOc8cxvmiSQGs3LxaOBA25YR3ev518ZRI81sWfCcTjX-2NTOeZ0TehoC_6oQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7yg8W4kterdSs2jg5ySeCpIr_PgufEFSlHxSQ3PXa_-n7gWeRofB8WFQD97Lw_P65tbyzTaGUBRIb60Bi6i6UFY0ZCro5ekUwFAJt_IhvEBPcTAzqb7vqcuZ-LmcbZ9UOoinAaJNsGYrZX5T7z03xnqZWptGT7wtrLDmZ6seGkrLZNIQRwbKTFECOucO5LyxQcYUZ6WPrGuGkGtdwdtgN7f6rl2RQDjlLrjKwhKKio0pOD8UHdAXTt7b-RgdP96jmXIsNyz6iEdf9QFM4e2t8tNt0yjeq2-KTgVzCsIEJPl_KfCwt50kATzuNDFJJuQ7EXzI9FL9mgicDzN2Bq3wJ1ifuCCH6CL001zjPbUJw_IQ2kND_Bdk4mROqB4dcHMjNLdUmGRZOmR3NcpnQad7kICxC2hPFgSgXtJUeWIJ4VbvkuvBUm-3KFFc3fS-tqxrPArXnQ78ffku5dJ4pgo0gKkC6hpxNSXTLmg2wv3ImAIuqA3zP3qvU4sHOCf8JhJr7pqJ1Rn67vqgIzp0I6QUs_xoyvNzBD7wCSJAHRX61BpyPNGaVpArWcK0rvVZ0f2uHwxjwf1mHDsr4RE-6Pbru2KFaryKc-soKjWUgbC0hSUBJY7sUTrK9-qiCmPo3ELWbEP-zUUG9M_hGTSKM5QCHT9W7khFi24TWu8lYCOmkGmeECYbg9i0867Net8ru3fzOjQIMEkEgw7KMDKQfOwVJqNhnInwPrwf4rXRI-wL-ti1r6NvUT9AVFxoVSGm0DVy-rsewCxNgOKJ989Vdvbn9MthGycoT2kmkmL3mUecAQsUU6DjOhDRWw96dv-SQ109xVHjx0v-f6SsNFEWiT7hCpZrxmP3t-I0fXXksa5NciHDpe96eZ0fz2xzfUwRJc4oEJXVWPPLi2hmQum_PPMi1c3GMaIVeIdHV751PsOX4WMgFnGvB4f7Qm1HG7USNBD596_vdOgut7rJ5Nyt392ytg-tzHSdVV1rEi1LUW7HyQHENGGlLAo4LsfM1fmmbAzsol9K2H1-9keSTFAVpg1M6YddBDmtzIoHP_b-OPd6NhBkrkqdMREF4ISFwnPmSd9eZMASAxqWZu4sQQvqjO5C2VvV7AJpewfEG66VZ6vChOTfGt76qBsUBqC4IBc-E_ODbO6YNbjdYHQ671GaZHSytt3sD0yNyE2orarTIK1bD4ln0wVFs4AWIy0R0Hg8lA16G4KeQmmIjtW0ODly4e6qgz0dUlw7PyH4pHEDxpORO8stCORy3IQ4EXTgnYgDangqS0x_jgBVTZUoSPOsr_TXidK08aiEiBgi9aTCG0sIRyG9Z8GZCLUW0-LDSi3HbSDheNS31Fi7uP_QFjmAxvqBFI_28lC9uQeEOjdJ9LXTQg5RRePnXZIhaBAJPTJ0Qv4W90LiQWJOK_aXPzmW5KtD9x_cfUVj4DCT-uAHWksSYQ4X7tLWVr7ucvddMwOvE3IL--hAWFeP9vTYhVH6TA-m7lRCSxhRsjwx2tXDRiRJAq9cOjc-7dKm7TjBl3fN98UzksmMPweB88IzTZu5MGb3_4HWfYBNKBUXt7OsmtoesrPokb7gszbQk0kH61o7fNhpTxcGKf8nZFBl_Xxwt2zso3gS6RoZY0eER117F55yZ_5nbkzEBm_aONVEFHdqpJMlWAvZW41hfrEChzdrMLwbCOx5UjjVZIEIFWD4OFD91K3H0sJxYK8NO9ejD6u69ypbp1aqiLOvzqvWhBjZk6k_6un7CDXYlfro89RjsvwGwNPWnlcpmyO8pLYia7Au_JhzyFicmc-yqSJvIGCBiKOD03JtDscar_rUJulWN99n8MkRAG0NlJhmYivUIhxIyKTOfP3dwq1_11z_4rTxdCLN0JO3Mlk-dGEM4exVuF5MHEm4uuUH4hswORqRLKvqtoDzELQONq7LEbono4wBOuS0UWQoK1wCLvI4KI4kafyb2Vjw_X3_saEhvt3yKCeaKK8vgjY1zL_zlWIWlfxTewjtUaggPaEr0dh3ij0yeuiH2RZoCmYoapx8l2xXLf91PY0EK-n9N9EKLwfyZth5owoHYot5a03Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6848240f234f89-33782292','','','2025-06-10 12:24:47','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43369',0,'cd-form-entry','',0),(43370,0,'2025-06-10 15:13:13','2025-06-10 15:13:13','{\"firstname\":\"Ellie\",\"lastname\":\"Test\",\"email\":\"epformtestcoaching@maildrop.cc\",\"contactnumber\":\"01234543546\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/resources/\",\"recaptcha_token\":\"03AFcWeA6hHec7V6kvmX3-95yWhCS6hKcdboYpHqIY-RqXJqFLhGxrYD7Sv6-tnEXOIIoDMN13xheFPTnsn6hiaCRWShb7N348HtG9pK-0BE6p8CirPkX7cUWJRysXvcsYatTTOgD939-shAMKl0g1LZVmRmfDCPqxN42Jxy4xauZddD-oX3-Gq-10AMYmA5VQ0BLE1X0Y7Pl6asG5UuWup5IXxTmy0-krkggNqYElL_dQYmODYIafvhxvkypDJO-Nbr-zQapDyVyIGhq_Ha6Udd3x1Xv2u_2EAxJDs6TAG8MJ7KLY6ePmciwAft-zzy82EXwumZES5Kg6jKQ5ZWBTzS7nIiVnvlRzuMHIEo8-kHp0y0DOd1DdsTU8NJNMWVOnk-KFsKgpwfoBDACkO_W5M5VqGWaLN1hoi-iwgN-QaDi_YbMpfTxEY749S62QoiZv8yZ8teCmoRBHAra9vfGA-zqMLhPOiYOpQycdbx3TJxMM5VyYwg3MndmcP1WB3YecRDhoBI0U8sDAjTlpCpeQtymzi4YeuwQT7KtRZw9RYa52J-UKOyl_24XegMVjCWQHNNyLeyHksuTNV4MPiQM57FX97YiCC8mRJbdyBlZWYyQojK3BXgTRvOt6qIv0ZEw7JlEYjFVocGVRyhz_ioivekZ_RMHVU_CANgCiZTo0T0lnyjYx80a0albuRORmYWgjrrd3hNYzZPxAySvJsBOkuX4d4quM5wkUaz5hwSUQI3PfCTygstk-yXLTVc5aPR9cbzMoGYA0PU0F7NGC9ejZd-v1xbt96mTyBoF_KqmyUJpG0I3a5_IqkC2Tpy9K7W1ewWLGSinpx-_kJ2duhyM186_Zov0MQhMkA4vUy3Om0727tPHlRsPCOtE9pT4d-tWXXsloMSNw0WQSHuXCaeds_Ixv1gvuLiZZi2bCwz-IX5reGkne0iQh6axfM4sPusvXS-mHbr9av_yJ8ufvmchszopFPxdCVmCxUmualEjNgNBmRkDHgrdmmeZTLMGmLXrnwm7-a1m58TpQ-_OYt71RT3XulXhqw1d1Toqvn35uLk0HfgAEy-oX94dFzFv4XMHKEXM2bY50wr6wfkCqTjifQM391Nve9fT6JLeJ5ioe3_GtUNKNqAsCKi4HRNl7w0r4YVlgNRcinExeXCSoQl7-GmvhEqF-B60mCDdXJP5Axkaj6NI6iFD4xtf3skqb1PykWky6kHWKAZJdqbZ3pnjrWf1UzQSHr066wpoVj0daMCbCu4PgFXvo49cviZPMEJh_zqN7BYC0pttdM1HZx_utT9jmj2u_61LC43Epg67ZYBAfpe7jiITYNo2Mgi1hd5IYNxgP5pYXvBwOwIrFrUB98EoWXwhj1zHhnezRoeP7xVR9v4crZVmNjzSFSSY7rdlcqizM7Y--DH1_gmmizDkB1Fe_3Cik3GxA87bFdhaOIWPITuT4poS2f8YgXOfiyHxG5dg969xcFzdOUSPziNLUoHAD-HjGWz0KbM-f7ju7_xlJPRpCSNCP2F2QGM0J46ThCPnRJQpmCd35KqBtd3gVvj14jWhXIP55E3dgDLg_rA2RcK5NW7y9Eqt7nX08y5re2cqgk1nsJ_j435CHBbvZQEny1vdxeZyTdcGUa8VYpCbJ92aksZoRDZ4GOBWPi3gS_HJWBA_xq4DoG2lb_G9CP_2pKRPNpdg2hYTIukNvnHe3rFaBrFuT8iMq-1Fp3078jjj8oiKxeszd0HpoMdrioGV-bp3HE8XVquWCXHvKHLARMr1Fj8Py1n1odK7nN5enHp4EHLaNgt2VzlePwbvEK8_j5UqaM0WwsVbBeTB6f1ovzrzBKAfrxBffbRb8b090YBSJj78OgZctZE0N5-QpDgko159OyDSTCrYXf2mc7lmjGTkGt2EsII8azo0qaxd-88ThCj2VCT5luu90UKdc1auJHR6iGXpSCf3v5S8wUfU8K2wcEyPv1vqIwXd_u2exYoLx22P1TLtECpubomBFl_xhj65iyDztDF_ySVtqceE4SeudZ7KRJNUnzT_nNONwcaBQ5gXic7xr6iSWdLqFNbHsD2A4k657BNd4DRwKMDWpSFl-uEdFHAfhUPIcrhOI8PffVxXGv5bRdR_tCnwVy7Ie7NROkm12XEVZ7jSzGy9suFyRsW6IhqSoUk-wnGDueEdy8StfQRvGgqfWNFQCpkP5xHazAvlbKvUpiQbpmtXApc_JGfOp8nM6HhiPdl4WSJYyiaG_wFAM3h44nVfXFnjloA_m1W_l4DRX2Ecb93SXupnSsKf_EofHY76RVBFcuv4ObFhWD7eaY8pYXZgaku3mxO0lB4esWFFrjgPYy8vZGyOxUGD0gxS0zPe5aryJwW5vjkGYvtKI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68484b7a2d4663-03484197','','','2025-06-10 15:13:13','2025-06-10 15:13:13','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43370',0,'cd-form-entry','',0),(43371,0,'2025-06-10 15:15:00','2025-06-10 15:15:00','{\"firstname\":\"Eleanor\",\"lastname\":\"Test\",\"email\":\"epformtestfeet@maildrop.cc\",\"contactnumber\":\"074635286361\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/resources/\",\"recaptcha_token\":\"03AFcWeA6XqjKQX7dus-EKpgACQsmukgI9_q3RwXVgWONZE94MPwcFoEjzt-QpJe8zO6kZjC1nbNsscH_Ny_ytnxKCAT-Zl8cr77TFiaQcze8HYo2Hqc4fcZ2xxxtGgYojwRnVdQxoWpFvxUZ-Ew1Tis4XzExYQYpzCxjbJQCLyY6_1hBIf7h5ZQjYUdEb7j7vw4tFUMcpSnRWumarPuNZszqkDhqsSoZ8rzyIGUwcMFSCt4LadUGnGdSNYDUQZruHFM8p8PKvrlcJKrIOUZnSD9sIK4Cju6S8q0C32y8uNWQNU4zsOwZfy6ZXPJF7o835t4NspIG5qClFzpFVlrwmDFEPrkhdRXRpBkobw9igKLGGe1o4qpByBPKuhjm0-i2sgeNp3HW4L2h724egsSKRa0N0E7mnUJnHHVFMJGfD2tyIEyK5e0KCvLbNGo2Bn9MMYWUt5tOX4TooiStYvs66yF9x4t0kY_PNGgFBjXyh79JS6-46JkzCxOzfzhcIARYITi_lgke7noVUiNlk_Zstzk2mB20nKUqrkvM7Ohs9pnt8juup9UuDprDkERxsmFQOGxkS1MtoyKyxo4WCTraY3sLk90kSBZ8Dl9yZdaSg5g9p4N2Elc-ogAQkAl0dD5kiBEkUlm2MM8lK0QrMDC3trvmcgAbutIZp1DZujqLdiMBGtcF6C6LKRAEcIqXSkmxUsX3_ju9864B_DVcx3tYyWJINLpnXhva8tB1PxLjwlmENREt69Ru3bFiSub0IXalQ3Aa_C5IQPqor6hIEk_Lrt200O3r-CCrsRgrF4PDHp-KGi_9uTlmgXAc1R2DcOnXP2xUpKaPFSqJdmPDi3iRUopMa-jM7vFWsLmzEJnV9H-rnb0SPOtDbMPFPoj96eAx8aLlvFG3-s0K8vIbw63G5-SMztK6gH4Ck2wSEk2tiQ2IVaLKzkTNotXeKRX3MhCPtjroq045MIuH7EOJ-5IrfLedvYZbGTSI5ha75woTs1RIcO_xsAT-y0tnRg-oytX4yUUuldWHtasSXpWECnwWLJEwhPtB2XQPAWMVn7RrC0kah_jkwOE6ne8Yd4Ax0e7g4nsiT5o-t9JEPDYUYMoUS8wdb8wyUKQHX5XacxzAehtJdQCDRfmALQo8HQeq5fPZapAQ_2esXtc1RrtDtHrduPaa9jS3vugqrlaLCfi9SlMuc8ho4oeoSuh57VtgMkNYikmlNXijgKU1JaOhqViznFW0Fl-CyVlK8kzzrduysAq20cQk56M9m8ggVk2blQohh2c2Bjum7qDlykIDL507T6p7rZEg4eqQRd1DvAZ9BSvIigL_2A0y4G_5GRnpc_e39IpwRqUdSN__vTdJ6mOfjlWMRXSZ5qe2hijJIvzJYOFOh0blTxBYbTscy1TOr-w1d9NRIPxFKfHsaFsaFmMib-TSirrJtUnvB4HbS9S0GUFp8BWdE9pAzamSAfwK1eWzQ61udbqdEl3kOa9OKr5z3LN00HHkzo4mesbuyzHChAXRLde708pqBLE9Y8YCvvlUBRG1pshnxv-x2Zjx2307UL09Rb3qsIXKgqR0c34SVRKz8kyKgBCNAChKVSdM0Gu1cIP_turc58ZsUMIYp3noTNZzf1ikZ1XANgEAayeIo8bCLmC80GDfw7mZWuROu8WxPhLJ6D5vxrbEJ54PpjWFkNRPsPi3HD435abLldzLfGkAe30UaoKgzlgiy_3tCVYHVjtqKsTY0D5QcFjUB_jGrbhTwDOeaBVbnNh6dA6_xJ-aF50pzJtqlBOIC4zTbVfnWFFZSSL7Ch2e0Gch98hQQ2WppKVOkDK1o15QleiT0oojtY4lssE3MjI9ZF49fo3Ai1LJbHZ-hAQfX3XrKyZm16xywxBcQQywYXHA8LQspVmwYm614RjG8uwzPnlQ5Uv2snib7NlHhjP5skzt8r1ZFVZ-Qn3K_z5k0JYu0mxe3Q3krfEXiXb3UgcZLSUtGzate5rtD9hjkemd5wf2bZvac0Og_aPlvdiCTHaCwWy7rWqgbjTH69KS0hDku799CLqfTRwZkO9fU-dj6qrw9eQQQ4wG2lqUIMZqiGGtxy0QIjY4iCe8qQYKE4Uo0TaXds5OQ4-GviSkjkEjmYZu8XTAKMZvyBQllHs4_OKbhtGvMY24Fwj73lsiJCNBFGfaDNo7KdtHRwr6nwZCwkVLREb7RQyHvvg0FkrkaKvVPcrsVW-Z4UkL3xWi2j4txoBd6bgFmT_6c8DvbNZtCodl-qD4ot5AomBGjjUUAHJswoUnPI_UFEvTz7kgBR-DKtCSkn_ZX0Ia4QALGoO7oe0LZjxcnHNZ-WRZHRfnrRbicfCt_Je8bM5VU94VmiPIPR9TcB23zsfCAzDott0y3\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"3\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68484be85a5f90-30312326','','','2025-06-10 15:15:00','2025-06-10 15:15:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43371',0,'cd-form-entry','',0),(43373,15,'2025-06-10 15:18:57','2025-06-10 15:18:57','','Thank You','','inherit','closed','closed','','40321-revision-v1','','','2025-06-10 15:18:57','2025-06-10 15:18:57','',40321,'https://biomechanicseducation.com/?p=43373',0,'revision','',0),(43374,0,'2025-06-10 17:54:03','2025-06-10 17:54:03','{\"firstname\":\"Sally\",\"lastname\":\"Nash\",\"email\":\"sallylaney@icloud.com\",\"contactnumber\":\"07876550312\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vz1S-acVvfWnIhTCRefPtL3&amp;gclid=CjwKCAjwr5_CBhBlEiwAzfwYuDWZxy-alsjy8n-Sv9gQtyxCmmDnUY1EY1RrQq1kqS_ecg5gY6uUwRoCc5IQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6Epzl4G275DCkIy4bkIYYytoLatOCfIsRQL58RCv0noYY7L6Y8nCRN4SO8RcAJqqGO-GJFsB8_RujdZcXnJvaWlvgcd53-VQsAkpeXVtu1_xviTznjzkbvzEwldWKkFOl7ltwpfEXz5N19VsIJmT-Epjeq1OvSZfkIQlR3mCACxp_89Y6mgb9cG3NQUddZylxH2Gp4uR-e9s4eHK1rPDHTVJ_iAHBA0c1osLuSn4Q6c99XDJBkiZQzp5DE7_LUSjlimeJ1Vg_CuOP7eMEiGmvFYtqF7QSivrKCiHPbAiGOMpFH1t1t8x8qQNUGJ6CKCfljl-SfHbkgFkrYrthjGJ2P-ku2d8u8X1VZIqYi1jPAxdoKY4JN1QFLjFLAXqb5f5PljTvqihm_3duM2X-QVkHQL41Je4Vvcxtqlai_09mp4h5QuOkxtHGKTnifg5u_3ODVN-muzSpprD5G0XbldpTvoTs6Pt2XBOdWMprII2QNtnGdUZRLXizi1ELUNEFaqv3KdWoh8lgCnYERwn265IjZ5JG9ugfkOE5Lg-CSLfMBmeWsl-OYYRUHHkqsRUIlytz46kZLOZA09eq3sdxSQ0nSNCUkHYzNqhvrcydPf9W4yD6Q4qQ19CwmXTjGHd7Wia1qr0Qf300X1AmONITthdcvqLAhUNu3T0OioG0pyMUPWGAkeSLPHnZxhCZ2jsfXktVmwXZdYL_WnHAg7OyC198gBekd5nOdkEjH-yP1Pr8HvTQoX2173F5d7Fv8F1b1qile9QUTvZrIaH_PIVpdnzZWz4Bz2Gih-RssZeh9swpLSgLPOm6RzcV-Si8PIUmxKmySgQAsETPVOPfcX1OonA7d05CxlVl8UkGvpRPdZZlHA3qXa6ZTI6ysgowXxg_CZZrKlrVreVyMpSS8ATQoexnDkrrSR7BvuUhW_dzr0mbFlA5fb220YF4D5vse1hl16lTj1ePSocboMXRhbC8Zgt2vybMWO-zd0JB_079nYDc1Vo-k5b-8QCPrtPe6BzFR667tND3fsfglZJlnH6fG1c4guXPtq29ZbxkRWMSsSlP3U6XjJtfGs7D7BS0gTXFa_CD5InP3g-9s6l_quVegVzkrHg4MXSQVqDEjqnhWcMxYf5NvOgZwRkxUUZeV3tilxdG67vroyZqDSu3D3McFJG06ufEI_5olCPUkF1dopr5_jxz0OhmUTGeglDJQCUL6NOWmxcsrgZjqEX803dlrtCwL8eNJmD2I7O1egqc0Qw1DoHlthvhGjUjuizf8zXQretx2FZlHGTueVZ6-659ascdhBmHyqfLbl9HUudPojf6k1r84fY0grHP6OuMDcaR9cqiZOrcFPYKEpTAClGv-updxG1Pny9oZpgLfqPW7G8bokVhdPu8SZ4u_Gu4wVzc-YegNAdWz9HK1G0UeRxC-fud2cwHiw4Q_SFmfCjEgfcEsVXDrTDVtGuinvqXkHF4GzpGvmSB0JE1NClbPBCOuAjASw-AZYZnHt5eHVT14YodokxTL3SHc-Xv8zntB6E2H9JhZoDglFXQVjm_COGMdyjEQ5qfH2sULyAX8vaHfQjPNbH_1lZAdhSdih5dH_98p0uXzOWIsEApRskh7p5kEjrUm5wZPXTCk9iGFjlOrpru-wXJNv5-4NdEdrtg0RyUhMd0eUMKmjQjdGr_1npuReM9LlszYwpGpbqjbNzX_kY4COoReA5rxhRVwN_6KoGVNbcdc8mQa9x6RPGdr_RUaoLta2NPgvClnU3NHxuUP2_UtLmC78QYS_9oi6HkQtoN6SoEFiQyK6Uro4hxOGLOYV0d4QTQeT5yhPrmpRJGMSULbaAemQMwUMeM-k76spvEYBuq2O2pLJP2lTEyMisd6KOIW10f0gtEpMip4RhznvpmSs73IUAmN3OzI6gjHb1dSdm8yGVhZMWM50r4TyktgYPe3pNA1TefPIbZvxPXZHUJ9-0U5cN6kCXxk2WhU3yCcj3moZNdIaFMwoOP72qsuQoMijWuSiw_7KgyOhOt2qU6v39ITHvERIP59Iy6xKXVPzGXvERXROSwUpMyb7nMrQ_-w_cN-JXdhkktuHJUU305ig8OQniI8SyyDJw5g9DzbCG6aeEOmdobdrqOS2NziAilLFysrQ31lAPwmcn9thqAsHKT3hpCMguu_ndgFRR-MPSUzE7a76PfQaUBCudcm-ezHDhV9XTceDRF-3kzwqPP4rPgc-9uooRU_I9VEZCSApYjwIz49Caxb9cVSvt4wjPQNYSn6Mp9K77BeSEeyUqDx9Zkl9aMqz6Gz4JMOLIuwFyOf7gWE7xuol8oozqkNBZ7Lb9CCUTncauFXbRxqBy7U7V9OTgaojisiPHRw8KaGLjJdekjxRT4XAI4hkv-vlvVgIbFVqlTHJkMZmvP2IGeU4oK_XVg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6848711b882b30-73729984','','','2025-06-10 17:54:03','2025-06-10 17:54:03','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43374',0,'cd-form-entry','',0),(43375,0,'2025-06-10 18:32:01','2025-06-10 18:32:01','{\"firstname\":\"Darryl\",\"lastname\":\"Campbell\",\"email\":\"Dc@dcfitnessbirmingham.com\",\"contactnumber\":\"07722351496\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vz1S-acVvfWnIhTCRefPtL3&amp;gclid=EAIaIQobChMIvrvG073njQMVz45QBh3erDqSEAAYAiAAEgLFhPD_BwE\",\"recaptcha_token\":\"03AFcWeA7AU0-Kd-SMyFCO2ati4-CxSz_dNJnuO5Hr4XxXcAounDoMn6LoIxqv3PnjlO-l0rpsv-0t6SLD7qEa90fguF1vWR0-lYExskuJC9n9uGtUhSK6y9RUyr8Ni-KbsasuE_6D5_XVk7Ng_7chyZEe7aGfW4PE-Wf6UUlDTbZGK4fMt6eOriNvwD4hP295pT_xEw82goPWi1LuFqWsj7iXfH59SQSlt5qiTpYMUejWj3Pb2lyI_fF1KuWfikcJoC5-S_lz2v8OTiJ4CArYdQMCMWeLGbTqs9m97udDkxqoZZBqrRZTGE2qGsvpmrYp0bGwtFq0eNDu4_deLmj5joqHHrSV_Pt5DWQ9msWT80CPz8fVmTwAswaSj-tpIVyvWCVS4DfsURUCjVy0po6zFxscgRhb84CiCujMBj6K6BtuvN5iWKYSgFi4YrJG64mwk7w2VfWP6z6AtWGzHf9sIrBTvMw3JldCsBlusAUvrzrJZBwp3FqQ0ppB3uIlLLmN6GHJUfL15bqhCbFzeZzUcZmpfizkuiASaA4iLY8gNlWj1beYe9p2JcIzaqU-K4a3fAwuP9hKCmoahHhRCDWq6PnoO1Ha1K3u5-l7eL_9oQtoOLKsi3YQD_IPOS9fuPkOW7LNBdbgjypOgK26npSUxOA4vckZprZk4bn_4ECsebZ-m0ZJz_uGCZqptU92aO_MN96vIFMnuV1iK47h17NalbfQUbaHG7_jE8F8hCAVS3mHhsRSDEwZIwcu8554ZH7AF9hjbk7dT1RBFhk3l2IIosH4PpAUqx1sioWHeudJV9qWgeV0ZY13-5wmhKNBg0BqiraVbkrYQy7WRPxPBqgwoP5ublBwhY9VF2nNpa_BbscBw_k9VhFKTGbl462liNZ-_BTDSwcKS06sK06suPP-ppAN9CwMjNE-XelrwmVZXw10U3LBIB0rTxbdCxg4ma2b6bGvq1J3C-l8S0drUt0hGCCTGAtxLZsGPq99AY6k4hlPrWIV0jQW8uPji2fSw8E6XmRZacJbGkie138jKhshTt3crtQvABpLPy8OMh_CbKNKs739lzvDTuUNDd2ylpcF9DwqdrdX4URRXmOxw1FHN4zGe_nykrn1SK4Gg9a20DneqlpGjMvmVVdvUr-Tov1CRqvNKsufL1IsgNGgRLXpsLCM4ORZ1FVsZsTIJY3tWlP7CNHkTOTe52jJxc8iS_wP8B2F7vu0ItLljrtObLjPZk5GhkAklEjdnFdJDJvCA9dt02rvZLIRaEfz8nTZKQxhCbjs-3NPJuT5r8VT6y8LrC10jSbBad2uBetWKC62r_RZsfMeGZSdNDsklXMWkzU6hr2s5cokQSBgXbLFn-XFtXx4DVjjgFHSDGoQyL2FJ-dl-wS-coZNw6lVmQ1wRVKvf5XfrQ3yU7AiCgFQs3TvEayO-LgmMPIQFfpsnZjEgQ8-U8wrGBiYcnlm4kw9PadsMVhCediE_d4G-PRHRZpVjxsT8b9g_8QOPrUyD8tkFVA3Ni04juUWeomJhIugmPsDuSXAycBlsjTv6vkURmaGsBrMioYAGsxoyTRJ3YlgjQ2pfHDk6ksrJkNWNWo49YH14ur5l6St-9e9x_FCY5I2IXKhAU5zSY6J7cMXcVCMQP0eaz-7uN8Ft_CrtmjOJKvLhACgHx2PR3OqL0XgK7fCGFmaKpvdM6t7yQ5nc-vlo6hspt9fRLz72PzU7FmHM76VTDNnWMxb4Uxxl3uDVnP8PSorrpAx6kbOnljbtf98VB3CrTLiMKVheEyLO6H6jnnCB-YWItqKWjHU_7uMhGPaB02Q6zccCoN0GGhJ7HZy4jIcCkpT-modLM2OcTyGgQJu9dPw1pHIUKweDz-azWZA1teJ79WQ9kK8g-IObeNRP0uJ1y50oqXhR3AGOHYfPN75mg8MSblWFJ9nVz9o8Ui4Jby1ZhN-j-66dpjDPhuS54Sns3176PUBmc8z6czgJtobM7Lfl3DahRofD8U4YivfB3I742gsjGdYBJqJ3WgEaChXibDbuVOFDNfSRzvHxXyFhvHwhkmoI5IgBwv0srhs9hpBVLqTvLsnBtsP6RG5LN1LQeIb4RmMPBtsWfcTX7k7_MH9dMFeYNahl6aKGTg4ojCi4zmL4B27Kpp8nAPX4MQ-uu4SAohu1NzAxMSHOxowZd51dEEKeGktMwKoiykm0B32h3ofRVMb1Z1ovaI92E-L7vb2T2N3G61Re4bKDEQtviz4WfrocmEIwLEcHzoBC2nDgsVmQ8RMGKdu8ks2wNhStZbNoqC_NeygjqQfpGcA8PafRJeBbE2bLAj6lwEbLmy2koShRDOPjamPjSlzusap86M-qvm0oHZXs2QT9quXrCfp9T30jMjN6HjuywcYfHlY3EmzqM-FXcH4yoGCwycEatMu_S_RTQc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68487a0c69c107-19364779','','','2025-06-10 18:32:01','2025-06-10 18:32:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43375',0,'cd-form-entry','',0),(43376,0,'2025-06-10 18:33:57','2025-06-10 18:33:57','{\"email\":\"dc@dcfitnessbirmingham.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"4\",\"currentpostcode\":\"B9 4hb\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vz1S-acVvfWnIhTCRefPtL3&amp;gclid=EAIaIQobChMIvrvG073njQMVz45QBh3erDqSEAAYAiAAEgLFhPD_BwE\",\"recaptcha_token\":\"03AFcWeA6dTMdhUBMV2BSfLTH8St3E-q4oKnIZ4D7JsF7QR2ZIvghFlxbGJ33yFU7_TLmM7QVfenU9A59QaaJvCKAMxp_8VyGmXm0oqkH7synV6cF-OSTJiBnvpXHDo1DbyteNv2yOBG_FyQ782Ttz-n1jtnuAsdOuTK0o3abxY-4sRd338mxWtL-PuiArvVtBI1H2JbqA-pJUGOHTxlx2VJR1xLRYw3kYnHLDxYb9aFk-VAdBDmuvYkNQBKkTDOkZ0xz2qnIPdVybzEdvv99oZOeVIF9aBcEsQPamiD-EpXO7GNVJYpyoCmwjxJAdPljeFohkwV75q8Fb64-RdpT9P8xRm0Vpv0kHNBw7IEUn1c2LrbthErkOUMGu92hM2g2w7SFtMO1QAbbxK8VUTnNDGdyoncp6LoeWw8Xbv_JysL3AAbwFFNg34qU2xIS-xEeud1Oeh9FkPyELdczVsCN2MXLMsozHeugiE_tUddHVDB0P4edyOWtX18fgCwJvXjf2L4ADJnnD46vir4oJtPbJYDlkvXkg1vMw4nNPEX2aRi2cI8CE4EbvOnWa43q4WzUorrkWGFGH9Z1No2_sdSaoe4C1MgoLCy3YIexlJKj9Oy5PorNa76Zv1FdhfAOuHQTkFxGTZNgBnnjFsCJFF9tpEN1AJuP2Xil_BePZHmaIXRv3ACStxwlwPliP4WqrNZEaJgmzsIsPfi7WiucQJHIbKzaMLCPNAJB4qm1q5yYAMf7ShnLb5FoaBevyRzrlN1awzXTqyAinhV7vYsTyBkhZHplnRgCVu5D9Tk5Nv06TDmGZcTAhVINSzUw9ttPA3c4Nyy9_BdgPWXLrqS8pvKgU-p1K-Lrh-VjtVtDwDDEuxNL8lh7VskRe0mwEWb3I66cfgZe0KsrAQNBrSv5QPBYG99BegGjImlecKmGa-BDMGUMjX5FapMdz68zC3-zoUmiDtWqfFMXGGdwio8wnTUxXIRbltP-i1GrhnjZ1e6R8S_3LxsjtbWvWHwhDlwlJj1AQUJfz7egLJOHtmcuT4RNevLQtDnMJw7du-brrM2f4EwT5jrLvTsf6SEp9caRSjR4mk-k8i4dtM3yzp5aP7A3XA-pNw1AlJTxiMphmf42vZ2CpAbVQO2ZCKXTlYr5bMRVrajgmko1zYbrlaMaYL9Yvf95G5AJxABje-ZH0stjd-LGm-2qHRsnbmmYUpG_uUYf27mno72RVJr8J_4Zf6K8HdWghTFXwqFU3AznMk_pBllIoTR4evE1czV6B-Ux_s99PTYcvmalCxicZZVvUh5mBA_OdZ3gZq2AIUTuQU4y8KJit0WMd0IwmbJEYG15i5rJmRBi2hHn-tyOZ98Dgas9V3DgjIoXGhxjmTd7vOMop2pODhSHIqFwB1E5yDkghFAyYXQz2XtYRF__DGkCsm5isg0Ztsf8pRbguYTHabNLZP9P37o-HcY6MJYxhRD2VFMGtAToMG3zJTHyWEex5DzYqr6PY7-WPRu1xC9mYI8B2ZBMHZQpbf6p3QxGjYWjWdmef_iCZGjMMlYiWZleIB00nqHMqADrCXLoQrzVxoxdK1BIJAfguE4TkB_MzVP8VKmtuNp2SDGzph6GsIrRWEVsidABMM_HNpkPpDvdES6EC4SMVEQRvXdl9afMJvgQgx8defYNFxwg88thsghRaJfsa6-_HjjBeJP-EpfmK_p6PXIyKOZ90vyZ7QeF9T5KbesEalA3hmZatbJFKgCKVDAPJKn_kSGAsIfmCQ2Zpu5D19HPJXTjWSzEKwBa9gOqi5syaEU6vs4HEVY_UJH-xzpNZWtvaSuHKgWRWXuJWrxnD94RNqilFibjuDVZ6bF1GHICNFTrZRcROVy1f8pJuU-E8BtS969l0P6wpFZ1S_4mGRfrR6jeOUpI4mH3b7CO0mTIi6LMlVkJPAyT8JCI1XNF61HAm98O7rFfB46inHZIEKIisaSaRJpplkPv-F9G8X8CzmK-U2qUw-a1CF8EKpRVkPGejwEIHcmUi-bOBSLmIZZr0cm8v9uD52zdjNMBurGU-dCUvyCBrGjA71C-mczsBweEpGIf9kcC2qiO7w9Evt69w9fqZ3Hu_c53myau5MykBbg4d-XRZfo8sbAWZLFCuUstpJ3e_B9Tuj_4pE0YclZcHjd6Pqm1NanrjO0ogjpUyi81J3OSShM5eK2GYaehO69w2iPOonG9EyD2HSjIw--1zBDTUkqKBufAJF68RFDH3j2ZMOUWS8tfV_KqE7vJf9cv4agkw-2Ha-7q8CmSwtWJTkFDXMBQl0avgQiVsnnHWHhtpbW8vdxBU8LaYBOnr3K2-Efivha_086WLWBCl2tqe2gZRFaJiOOcU-Z0kFTHOGzppUES7HY6VLpHExyjz8ieMw93nNIy-9Q-mCve5WnTyY8uIWrJrrWM\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"8\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68487a5fe7caf1-15534283','','','2025-06-10 18:33:57','2025-06-10 18:33:57','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43376',0,'cd-form-entry','',0),(43377,0,'2025-06-10 23:11:40','2025-06-10 23:11:40','{\"firstname\":\"Ed\",\"lastname\":\"Andrew\",\"email\":\"edandrewpt@gmail.com\",\"contactnumber\":\"07777777777\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4YyOJiRcwtEGAOEm6WXms5ejd2CuJkOZx0r7znGKYa0-WOI01EwE-TpyK7TAgc3XRCiYoEKgaV5VeCqf8uAKC3E6kJUCsrnjyCUiBdSI3S1tBkVUNFn_VRfAOxsNeHt0cFnlITDewqGw4Jll0KCKWtn5CBF9WpyPOHtCA9w6-gaWYFSgImaz1BiHUSxUYI_V7_ggMSnpiMYMbE66BTvdFw3pNogkqrm9_I8m0AAgOfLPJs6n59S3xhhsBEYGDkvz7MzQlwu0v2ybJB9traweeRdL5xFMqrN5vbuuG0JTo51HLol7_jCwZyxZua74WWIB_4ZYyIFjRcQ5OnWvOKsEnOoPWxKYsLnLIm86q4C-WtDNvO-GoSt3S2sErhHysapTGgzm77Vear-_zKs6Cls44T_RyyytrjYbxs87AHCB1OBDG7je0UIigC9yH5Tzo5D5QP9utEk7naBaxXFDwMsXa7EXZHkAhYSkAxaE1xQ0i7iV1qGKxpOrLke5gEcKCtU1A2in0U8O2czJmeYt23eWszeosb5ITx6V59uL-_zD72_r_Y68xRvsMhgLhEFcotVJkTS46uODmz6O5WstZrFT5EGZ4qHJ7I0uGAgO1IA-AYBkzGrqjJl9-Mqrwxhltz_CWZ3b5M1U1yQm2cIygDjtzWcj3AkdBxMqJTgfcllweJSTxZSN6xJwsuJC4QbuE0XbBWsTl-_f_IpR2VyJW2zxGiyOvq4vcc1PtIEV7BNisZAVHmaTPYlGQWK4-t45S5laVCeZ5VfKvqSyy6qmZnc_-Ea5QIEi726jci7BH80Algs_BlUHOzSihzxgDDw1rluVi3X7hXjUMYCc1wd-1qnbJGs3Ezn2hU3jlOofnFdJsrEycrizGa0lLW9BhM8_g-jk96u0mOjb1_M8-OjkqbQQpSG96D2zu_mN36oHb84vKyyoUXRoNbBz6O3kSIU76KEZkux8liiVWsSHI_4z-VfMAvCUUNg4UveSoeRnpP77Hv6oyOxfwgsl8ucZQrms1Rjbbo2Kcnd9uX4TOuaklt6nuirpIRkEGWePDjnoSUS-_hSURIcO059ynknMdJXGm3gBLFu7_ox6GKuqCnB9BcsccBEAwc8APNpLZyscZaiIj0OY7fCIQxaKGG5b9T3fgTOb7AZyDzqZeTY-WQAhAJYzWiCWpgkqQHZVpruZE8ABU30BvJxFU3yV54_sFjITIjnLc6UUxG0fh82pAYdJlm1oAteBgx0vHmjuAinkH7xNfxr0LF7oXoZt3Js4V2n_Pf-yBVyC6Fbc_9ukqkbEX0swqr4YbIGdyKnX4Y9gnoCowLduhton485-1ZpTSzHvi_Q8aWBrQhFO4Qa9Vb4lk6ZMdnR3pVEvE2E20qxHLhBZHmsqXb6VDNt77tmVoIk8FbPMreCD3YHxaLcU1EXJ30VibTd3ilXnoJBdYjTsE2nynApkONolqkE0VFvRAxM7kviM4CJTnFWG1bQxVmPbxjMPaDn7O52ZzPvu0obLyWKlrknXAbAOJtGCr0pO_uxubcg91YrYpNVA1LubZ6BFhj9T_Eed5sQ8HR9BvwQijKRaWmzTi_OFKYMDGKUYfuXS19jGYFZoPp3GzyfFoXyFTOJgleqKqbiIft1BFGEI4uLgYF5QbUqg1OEAFF73hytyT00VJpPh9sk5dylgNe1l-hg0925y_XXlbPvPQX8vLMeriPoXUpqugkAk94VkUN2XoscufGKym9FFHx8_Az71Brv0ZaIummIm1Vg-GLn5MRaX4xbZ9xyhP-tw9eVEpzoCqSXvZXIHFxlD9i5Fs9hS92tx4cN4SDQXW0pBhjRk2ymOJNX5xhQIm8fNWouOxPz7SloTZXd7FXRdVIBPJ7cn3UYfQ1yVbtCw8Owg3Jx_kmtPGry8dXo7uS0nzRm6ftSXHkhfB9JkcVB9Ittdf4ep2g0vgsszQLoWtr7VGUrm7Y-nRnxiRlMbrIYkKR4MSZCWbxD_zyoviJRer-0ivAbJFboY8_KLgav85zA30N2FtjVvikB61Q3gdz6V2AdUgpa8DOf0q3QRiRnNClXO_d8FM4XXR0yHiIdaJN-NfO4O0UCPmV7yf_eGmv3c7zJPvVbV27KP-EJXii\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6848bb9e5906b5-89072643','','','2025-06-10 23:11:40','2025-06-10 23:11:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43377',0,'cd-form-entry','',0),(43378,0,'2025-06-11 12:51:20','2025-06-11 12:51:20','{\"firstname\":\"Leah\",\"lastname\":\"Rodgers\",\"email\":\"leahtennyson@live.com\",\"contactnumber\":\"2282192788\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5BebvYpdwGQ21j830vxSoc8ULGH5FY82FGU0MDKfgSQk8wjvEaWPpKdMXzMawmodmYaNAB-T1BGWKtz_KjKR-uPLe9BJ6ba7IsAGXPTBsK8LLgSThQB1ogoZpLfIZsHTiJHt85DQAP7eW0kPyEhtlj_bMS5Dxx_Ca3mgfDIPbq4qGqm3HuO6MbVSQhFSCObViWIivPh119_c217W-v3RvechbUQF26xEkbg2W5xrd8mb0RVyUOp6U9ri1mZ_wvpYltpwALgqO0EpeA43SJoPpubUtje0tZT5mcfPxs1mWoNYgfZy39te8UPkPSFzV3-n65DMQV2xO208dW0tbKyugaZouwNCnJsFGTvyTcoH8o1TuR6Ra-zvAUNzAo9Hy-bwYmmMC5Qr5FKRzzfZLgdAkfvrSdXasRYugYuCVmtEfn4jaaJPMbgiFf1ZQlGSrXr17HkLfMvcIzBWD2zFiIBi8Xi0tNMTBATB1oMMat7iOGMMfBX24O6sF2d-cd1hbhxbGALe0RJIN1MC5fOeXgRpbYLbuVua9tn04fPxwcA6dd5MvueMUFrMuEsfAGEjQT01si5jRo-e1-lNAsVOMX5kuCnvgb8HlOywf5lJiaFNMl2vZsAHtkUBcMXI6aekp-5k9B7aOwo42O315ZVVaU_rAkEnHc8STvzHwwnPfZYklRkGP4esSLryHZY8EPurpuIU40zUsXc8XLQtoeFGb55Vkm8bIvuaZ53JoLN9hkxhLGNrR8JhAXN1DazTWplIyFIHW8CkTto92GCDTB7bsErY6U4NTmNqF76v3NHi3SquMH44T3hS9VlYVhKHS_n9I7SBaGyDtTHj8wT9VmtpFmumQgLUCwA8NxwIE8QUns9AZGU3lPISO5WdeoVXg20zf_40hNuCi6RwLBb9Z8W7KtxCBakrWLNd1K9IA9zugFvy2slsCakHWrLB3ierTmmpjlYdqdKf_spVwOWAwIH4x8FNVDLDWznWMcqkfXGdGf881_SOn0p8W56_1W6qxSIePgCN5d8aFCbJMCHeHoUOma_IL7W873rFRX1gN3Q7JlwJU9WPjNO-dCKm4MprHK5OZ0RKcOLRcBaou6Xm8Wf9iV2EZR-R2QV0gb15mL3FRyMSIfZfVy0kY06-OjxKfsgxfdQk70NQeBlfPJRgbG6c9ksd5AOcmU4CYZFnEen5CM4-7GOo2su7EugDyJdVPhSjn1KUr2krA_Gbbbjv8mmHtW9_P7BPetQVgVHQkN-msy3MSe_Zxpjvya_PhRmvUict8SuZt-hJ0jKX43LbkvDAzWKnruz8txFwmK4c93tyfq57g27GaPzq7ricKLNYktF-qpj2x3VZXC9gs4xZa0SIIvQA4pd-oM_iIffusxlA_C-cbDgUchjNYfR1-h53cL7UvLBsJRSk3_RNQ1IUpUMXVubchQ2RXJT7_sJfVjI4-RuAHE7_TzZy8Kc7J3bXN1TB1Q6mlnBO-hQUG0E3imAC11SPq1EeeQOFwxeM7BrnMIHFsRnehUrWtfm397fF5ElFItvHGVBNsJH_jwgHCm9hHerqACiJPqUZgGFneDh7lYTRYzdw-q_1zEXe66yfz2oR6-T5FH5n221c2TRdUwuFAjO66WXQImZ1izA1v6uQJ3nYS6D3vuwmXfZjJs0IZfaFNZJtHffjsfLF0_RH5JzzFdexir9C4GLuzjW1TuWuEv2ZwUjIvTMihRl5QX5vyJoR7dc-LkJVVaLvG19ohasvNXXfVkGPBKOMUzIEcvydReN43k0RIOO6vBJHC2OQsuXxxeDFiF_5r--fe62pyXIqQ_ejgm7bRjBPFAMnB3dutJPjXIVo-fpBRhiiMjYU9HCGzx5Oj1MXBENSDuBoM7pujbFmzJxIlCrQ14IPyBc-s9Pj3L6E0KVscvbEU1KEVs8436Q5JuA3wEPJAvrn1_YOQTNgk2jxF0luxjzMKygWplUAHTZZ41-W822bu1gOBge10ql4e39qabyg4C7K2Gw4_XkvJIXlqXWU7ORlmhtpAPxmTyA7TnJulrJQLzDVP2FFgs8jr46PEChU0pfQjV_0pBCxvoZ19EOG7-AkaSFvLIOpUEJB19MUwkr47ErXzXJRL7iRY8F85ESd2DGCWHsetQS5_xX05A-iImfUKV3SmpUlkIxQAovh5MGavwARSYmqj6YyscwAdH\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68497bb712ed65-20749850','','','2025-06-11 12:51:20','2025-06-11 12:51:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43378',0,'cd-form-entry','',0),(43379,0,'2025-06-11 15:50:34','2025-06-11 15:50:34','{\"firstname\":\"Sam\",\"lastname\":\"Hickey\",\"email\":\"sammfitnesss@gmail.com\",\"contactnumber\":\"0851184731\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6leQepBzPgW567b0fyYuw_jgOtsb3nQCoZSg4aTj7bJC-as1A0UriM9BvR9ltBIXsnjb16jfyQU5zsN2vrxbcy5fYl6fx7F6efE89dNAQDrv-hSEIU3nr8w1sTukVbRntR6ZEcrJ9cT4RLEYgEox3v7vsqDrkbLVBNUmJAWDrK9ljLAWqpKdeAX08r3UQPTpDj-bEQLKtle3dCaMW15Hk1ru0wJMBcuEKKQ3FK-vTodfm55YQYbn-6Ign_kaG1GbKjOdl7oowf_JE0-jCT508IyHcWBBY9F9s6R0XYFyCYhv80D6cpFHPTEcXA3XPiub_TAxL3YQk7Z_e9dWVX2CcaGgTXE8IziOEDBlGNW19Ajet6ZW--Wtmv7fpytPFvyY2n2CpemNQEjY6UPz7Xh-OX6ffOLudnxTlTFfA4SZ5NnXDBeuwwV7QWTcQEfda7Fg2wlKhIsunYMZmKn0m2YX_qhhT-wLnOpxmtOR75DodnyEFz_lBA4zF7tqPWZm9d0d_LfOdNv8gP8XyvmNVlIAhX2t1ygFLp6lcx6bp0t5ACTn3PX_7ru9H-zADCtaDV7nL_jCVLCpNLjBLaPatS4tbP_HzuAhMXmLUBlltzgQhY1qVnPCm83873NkMFMOZEwVFhFeRtuPhKd1f0esyceCzVgMKYNrjcp1XUlCP-4wSMQ1pYumpAo15MUMbEBftAayfrq7pZt7hs98NTyoalZvCTJRKV2OjFsSfxxKeWV3wOySw9Lt7sVwwxn7ysIXffNeqneBqQNJGUthtQt5gDvUDN3immKd0nWlBY5sX-3iamFDNB4qnSvKhe10P8x7dkNYkR8rzpkiql9i55S745uvux26IQ1tEw8V75D8Uxccr_dJrn06F8RRgJr6Tznp87ZMdVINezt-I3Wm1IwEurY3mAQtN_Jf1KHzq69WEcM5WVywbwYqiIrMffLqJGrZnX7xIh4-PnkbhKcHKu4CI3AzlT99UOb_wQjru1mgsqJ7womdJ4bUuTKAMYpa19mRU29-QE4PVi0tymM_rGcNB8u2qUlzgo2-Aqkj8a-d133FZWZSwsrku86gkm-pe11WDKIkJhI19zfayQmVfRzt-PARZX7hC0-vLGEeL-rrjcNgm1zN-_B0zQenE-5jOWf0BeMqfFVhWTvfYnLhnUUzKKbVszmtiCK_iUFZZGYL25J0dcYlQg38VwDaSFU4eS1lGDn2UjEzem2zQ3pvMo0Mo8aECfdeoeOurz2lccIpjFFLGsCfq-0cIEp-MD6tq3ORNspaM7JyCDgI7aSzxt2rmTooot8yu3q93q-dvVZ_8s-cQd23637dCfoZ3pPH7ps9jpmzgS1TfqJnDZUtXbSxAAmeAnFDzJLdfbov0AA4BssWgQFXOa80bG_bsYb8n51klYlwd5KZ0lxTU4zWQxvOl1UwBcAZklBmcXXhiMMT-lOZMFDHMrW0UH1X5Dq0N32yqWV9gaEaqTEMyCcMGgulOxT4oPFvGDdWBj4HB0x9uQGtG3KmuXNUF-6nl3JVxn2QE73r2OXN30Vl9v-uFnkrtC9K8hW3Ya-SuMbPpnj7ECQf55U0IbKDlAg-dMs8PD3dm6M20L3jZSQPjUm86DcanIGvqmPbw-umuVIC8Z99cnL8gGlQW_XVnqNay-yarfY3w5tFep2_6giEUrNlRM4zCf4P6JbVRAYKMQq5tjtfnLG9mSwepuHw-nntIQQNRsB_7T-jbeq-XuLsr0LeKCeozokB9Hoxckdc81qHqgiaQ3nW2DPjzTwIHvrCJ8Z_vztJJIsN82I4s-FqtoMeUzP9v-orG93JzrifUv0cw8ujiYXsLGfjKhkq-trozuTJ9sLD-kFSN2s-NDGtojtumRqwtl7CbndDcSutioUwQlP97XrgGg13N7ohVTBMPCJf9YRFxyolFaipMML5sUjP4kkdy8RjK0k54h4Dzt0DZTExQ4_oB5jacNsRiuFD66LXC1Xdy7lAWtplOmXNnwPJPEVeykffwDy1cfCQFDsH4K48Sa-D3u2RYvLWF8wHRmA2cushiUKWV7RzI_\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6849a5bea4b272-65816966','','','2025-06-11 15:50:34','2025-06-11 15:50:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43379',0,'cd-form-entry','',0),(43380,0,'2025-06-11 16:44:31','0000-00-00 00:00:00','{\"firstname\":\"Grace\",\"lastname\":\"Collins\",\"email\":\"gracecollins2012@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uaX0Jcr6aFZKmrzI7w_BjX0&amp;gclid=Cj0KCQjw0qTCBhCmARIsAAj8C4bf4twQz84rqSTlHYmD63RVpzH0AA2X_9CGq0CW9YiN29rYuHQmTrQaAkW1EALw_wcB\",\"recaptcha_token\":\"03AFcWeA6VDaQDdtacPfCusZ1_aDxyCV2-mt7tlf3pMdcHcwBd_dFyUXHVhJsrgTq1Bc0KyZ302KbmcUUmSGDUDqh7m7NGHNoxEWNWQduZbAV5ZBJU6IB5jTgSoth7vZaiGpwafKOJGTND-5H4z2PzYixCjivjTkObhPMU8rY1EaIeIR1z7wxR19Rwy-G17XiVm4QK0lHUWas5knt-2mAVGBCwoOWdIOhdWgU6jyMEqOoaNNIXnxNePQLIHRAYV3hdrmpJcKJklqB6C5duodJprqEFKHG6bfgastdO1ZAykMsarxptgapd4887DDq9ZPkHmUs05DOPjhYMYAVZ4zyblAz70rtl519E5o_Oq_VigPR2jNL1FluQvF0tVsYBS4qujFMDqK2lT7WiHFGMnidQTUbFgFAEOsrR2jQ2N8VvjcuMBJRkvBRB_zUUgSutQ_9b_jguhEtnScw2ro6_gJDm99X_4-CsjjQrDOCWTb5uD2PyVAYbMv0b2b86k18KvVG6119zuoasrXxg94OOXH_X3s_P7aHwbdEV7v-L5WH96KfjySNGX8DodnigloOVWQdppTd8DTlt_DY6Pvvm-ULd9UOo0x8S4RFCSzj1O_pa5I9XaWxhEeA1ZdtoMrlFtmVsSRgRyoFqsxpxFQdlDhJ_TRTOpdJM43D4BMY2mXqPVtdK48ssGaNz_UMTJGJI0t_wRHUQKNgAhorVKoVlXhfZDnRdiv8LRtIBCU631QYvYH52b0LEROfM2N67kuR_DiZlHHCD8TmbgQCCAhNr9uMe9sEE1ZPRNZFY2d5SH8_WXbW48ZAEZV-QEXQI6Lf_bKgqBYpATv4SIu-IDMhnzH0PS8Hy4zauqF3D3JApDyZ1dBnNSmQppWvRw4B2jUokdWswqph1Aw0RnAN7hnaBfDQ3crhcArHOWPX6ceWCQcnfdNuvpefu0iUejTKi-NSkYbnTalYT2y7V_1IH3v-1dT0Nwh1LDPnhfHL4tJeO7mBArmF9nkbF0IuZfUbd2wFUxqPrZYMzYf4xhoB8NKXhHXuWuRVpn_bAwMJyAqpnCB3gynLW1sGki40A1Pmw1OlBcpdH1_v4IhxddrK5kuXECjHRnmx_VhB9_iP1V0CwMYw81q-5VcTyBRmk5eJkHRXagp8cZsq8adUc0dHtLzn_-dY2jqR406rzGfdlWRDopPqx3DpTT8sBExdZa0tRPVGQUKoZ-7R1wBQEU7quxZ0XKp2XzYjkrNZQUceTk2-2ciOcACBpWIBYw75sIrpCLtdYrcbR49dxuB6Xxy73RaayCUzQrUYGzcMV8jsQCI2CIvz8P66cc8Va5Q1-kLlN0zvzPlNkBqz9aUNSvfBWf4zJfE_8wEps-iRn3FuiDPH8QPbQFyoCF4CIeqKPjD6du2Pv5nWEvsEUjSUjhItuq56Lq6b4Nwj1WSTlSfzRYZNCX7Zg-hqcumnWfB8O8Gq4_VU_vKwmbV80mJyVUj79QVGcdutcC-texVQV78d1jmWvShMuO2pO2OkWDbud-vXnfBkHp1O33ZxNJHEm8KK-FzEC86ir_1IpidjMweWCThgRUBRQ-9qU2Hg87gbzDFJam9e6xsNz9zlbDTErKCx5gWVvPP1KW8wEvxaxvl3qhrb2_oKk5H3FlpZIBzYvsB6jpMCI-fGRjmA-F1b-eT9OZsHSHZU9OWG53WpNiJSoFis8sscS-RaQuyaHQuAdGAJrWjJuLjKWzV5wcuFV6TdkUOXYBfxDm8aot5J1TH6WPW-1uIgy9W8DjgBovGgTTLBHQo8hkgFxXDhNd_SzbTFnoDoVBOZgr-KnBPdY5ZZCdPc7hyhXqw1T3quVqYgiXG8mR13n2ALj-XwNTN_q_NT0wc4h4UGUrIW4laL_kVAAiTtRTiZl22L_3-VASDvJf-nmYYb0k_hy0MtA9caygG4ZsVCFMUr4kJ1K_n-gyGlrjDkULeWYuE0cwWQ_97ZzAs0kxnmHa7ahja-aokdFrYA9kbHrNKcV209VVUKYvPfO70aLrb-mC5t2VeLdBywraPvAPtI8suOfJ87ROpvM7ijWLYApltEVbtroi5H9u6-btWwwlItWvNZ1C7gEIHsdf_ezOwBQCRzBm3dsJe8_hPP9Bg09LwE1EWJIKlM1xeg4I_O5UUFFl7tqDMXJqlj5FKXqyIGrZeHFb5ipqySkyFb8\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6849b26f3bf703-72722758','','','2025-06-11 16:44:31','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43380',0,'cd-form-entry','',0);
INSERT INTO `6m7_posts` VALUES (43381,0,'2025-06-11 19:46:28','2025-06-11 19:46:28','{\"firstname\":\"drew\",\"lastname\":\"ALEXANDER\",\"email\":\"drew@3-1-5.co.uk\",\"contactnumber\":\"07842737385\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uFZOrzRs_0RwVBM7YdDg6S1&amp;gclid=Cj0KCQjw0qTCBhCmARIsAAj8C4ZJLHpcmJvS3QiPLrQf_rxsvT53A5AXTj-HBwRY3EaKBETbu5CJvKoaAswNEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6kKx5Dkckcha0ln2F1aaGxAVcdipYcC-_5DC1h1G4UPuDoxm6DGWtlximVmIQy4LomRM9UBF04Ty3TaH8xzdFBSI7Ais0dCQLqR2B6EqIMtn-oDNjyr-aROtxd_2HkU0c3PUZ2vjSa1EgjKjs1xHSy9ZxVQML_B2K5gixzIdt0AJLVbw1CrNk2N2Yo1gPlvBZdz6KVE_k3aQ_05skyxv6Fyv9_8zkZiF_0JA8aU-T_AjNfn5q6RO0ALhb9bbh1N2-nKIoapOgcdNDe0oHwp1-3RxeKJU4r5Q8AjNEFPl5zKb7oNNcw0r93D9CnFXQMS24k9GVc76_JjR2vruQP3mkQBg06etvcWmWAr01BD3C48Fk3jlIWZrBRC3fugmzgv_dKvscVRlA_atQGm34Kbj1LYh_fhaFRH23Mr5vMjgIQ7x6FcGc89ykFKmr4BE7SonfuULGpdwX-vRjy7kF8ORoM7u6dMcJi35tqY-0mLH1Xq2aqIDnNgnYI7ZXXfmjkrlvgzlkgtVpJByU60d44KzG7PeHHlDaU_FFOl3chx7CTwuH9ZhPhhhjZFDPS8huLrgQvocQboNVFrP1KAVlpY20_1QJ-nxp7oNfGqxYvWigr3ntaHbeqUFZuZu5h0nivP6pnUs7uLCPz5LeDPbDQ_N0QiRf8A4lzxcRtNlkpeQWiEvURDGzanTHB5pS8M29cKLokSNNUDURnpbHNwXSSezDAp_sn9F2OOfhm42tR-Ds20M7d-0HCTC4VP55vM8ihSMShTBJ_kJW-LJrePHR2aLN65GVWNHLwfg-wX00LwXRTVjyTvEo6lWGx8XR-yeewT1gpfhkqTlr4myXw7gj_6MgUseZMTnD9BpQ__ugKNgUxkpynVQSnyKmGY3MhgzPSp8QfmdgcE_l8x7GoeH23glgXsvtsSYWLg-x4l6SunNXnxqsuKvtk-88RXkPUCFeEOniqjY2E39XSGP9CqExDhjaH23pwaFIIBl5RB2C_fXTtRhWE4R5pyzpyu5_X4wMe9OiVv8CBqVUu_pMSrQAVnZuLoWkNalBjCjVxuCQlaiNLguiyYmeQwchASSG_vEmqFbC6lKar6VgF8qvsk8d4pQHd1-WtfeCHINLlRTyXvdUno3s9fX4VsWfUy4pIf_9HUMnXXN_9OUqpSlG93HXX2Uz1pcdqwRP9LCuqMV7jY77mjIiraadElWzh60qV7wIGCs1GCpEn_8v5SPS8b04dTtK75kfi7AHyo4QcM-7H-rO_pmYJnUDyxxP6RXuFZOQktxGvamO4axce86cFld0yXYqVGjNIxxIrdqSieUTVFIh5_d7Ujgpun3nqACfwJ-D9jUbk73rPOMNQN08Ufec41o7socxO-LhwD_FIG5x3f3rRN0KYxtjNv5BckksFUPvWQaeuk-8CKifcD00b3eijNvZyp8VEaNXyOIk_FmZGZ0xJykiINVyQfGhbtrbsN0O0l2FQ6zJVv5HsvESEPb-A1PyBcImrbnhGMDYoRlmhVyvHUhtGZIDUfPNQmgoGLXYzAtgU-67j-FlQkquN3AB7xYlWTdYEAyj24OPcZg2I-I2ICBAVDas1quNl43LFTIEVtSHuW21ioAw-_HSpfMweCBw_hYpzEsmder5EsjtPo62jVcngzeLM6OzTl3xkpXl1QbFYjqyiXKiXZZ9aCG08pgrd4f1qqMhfzEjgiZMNF8muimZwNrr68c-sJ8t1wD3gBrPpYs53DKcFVq--eP1v2dR3ldgf8-mgPNvyXqFLXmfXwRd6tsUvmFRVLI578VKndpEzdT-0tWO5oUcamdxVNZgq2D3U79fbenwiRegRkXnFkaS7OvnZY-h_zcOugVsy5DXODsh5MotyJV1gX1GNBKKP6NOL_xgWlCcdglWbu9YIHYu6gEfgcKlwFeLZDMg0hYQRHQacrzcz3MWqp80zJtbVGA_pLvOsdIKCxqeiUbmqfzq1qqYT_iEUw5c1yCdT-hSjCzCJZ_ZbuIzxU99KdL9OGXCcA4yvHlqycL3iNHtjbBCnnJxr5lzNGxDxVFQqYPT9sIHk3Rmd88rZBNEMSf_YQ8CtIg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6849dcecb64b82-08774161','','','2025-06-11 19:46:28','2025-06-11 19:46:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43381',0,'cd-form-entry','',0),(43382,0,'2025-06-11 22:17:25','2025-06-11 22:17:25','{\"firstname\":\"Joe\",\"lastname\":\"Bob\",\"email\":\"operationsinfo6@gmail.com\",\"contactnumber\":\"8054401214\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4kfuj3I6XQ2DWtTmP3ggA2lnKbGxRWQ22fjeLrJdEYvlaeTXY7zxeYm3ELKEnXJOEDo88OTonq69AuZhAS35MUkUjVl8q75xaVBinA41SowOwypwAmkjiwODWmMIRiM18lYLORJC8CQYiXopRQHaWBdd2zg93h1cHUFCAQkVhGqsQ_E8McOaQgsO1UA1UMAnEoJllso3Ed_6LfliP1xahqqrBBkxDrBANW1jXcNo5XNyUO774fg1PllNDkhGw2JfOubX72R4OPgSNQ9T5ywZgCZbffEpXhcwMbdhS4Y3n0gisZxf8pxpwbRoZeb-EdLixcrU-nHeVp1wBQ-76ioAw6NsPivf7mP9qOOMRwA8O8WWCNwyQUisUWnJcdgL0OSJyo7DCaEZ3_hgE6bQc1XjfG_MCSA-5wLrxR28kjp3FWbd5Zv_UAt2WdnG9iJqrhIYbzQQ3kixeCND8kFTw_Kyed7QGRURkotEMtCH6-My7WRQlvdVRriAHwCvkKIPoLBJYcjb03F7g8_vaeGXR2KKgEV253qw6kIzApX9rw43STW4KBQETc6QUOMRJRbuz3kjJqtQlIhkxCarjUBhPEno7kzOvjW0p3l57cLhIOvhEGnym_KQffs5tIfWP5lZvyfUKD1oWjA4uuvorFtHdmnyr5Q1zrgpHvlC_VS2i3OY9PXCc9Fb0uVUaYKV1atQewSuu-lUP02XyaLcj_u2C8TWCDEEg6r-EXYt8TPxUXquUUuznodaZ-PyxEdwhzRuWp9uRECyhsW2Ajb5CBfiRcv5RjDgJzjqwelvanjQ3-ZzGJnD3PGLf_-GaLoiGZi9D2CD1LRfpHOEQ9AwPGhD-betwQPFE94cVpQKXj5nc3a4G-gzZKZzkRpNod65dxqcR3IyAHRIcUqJmAJf6Fv4_fSjhUxJ4DDpPhNQKy-I3MBqFmOC3D4zX-9rhRMGJ6R20UbdmX1HQXKMTiDzBAD3_hL2W0YlEXjIXpceeE7c1WT09ZnBfEh_TJx4ybsr8jDTiHmWftxsed09eNWGNuuDWsLrRUDsSZz7FIo3PWDfILIjw534_HLNfkOpArnKZrhUlXVdg94NCweIw6qcWoGazN-eeR5jzDNgZ19NSaHXv_Np1wN1AkOv_tg0PZ7OB2vNmvOSnNLcmG8iHmZMAq9gng-BT4UP3STSUfdy43tjwCcBMcQ4H8uAppHk6JiseCAZxwbt20-7FABV6dZWGJHavj5vBsUUicmzIe6_snP64tXqLzTssW-KL7QfvHiITnB450cx31AhJsmOHQ_0D-G_3czeNZHyO_-E5eftQsFZPnSzttMVK8irHN_X5NSbbB5jVPuusftq8sL0dexZgrh5NJw5nJDqjDU5w1wTOjz4RfzixPpaFHh01798Tvui5-R09HknI1tUrkOBYzKE0_nsQY6Ky_Ix4Zg-m1ir2XDTa_rv17uD-BAkqvPEhBMjzTBV10bc1axbJr4fz3XGtTAIQRaNtsjuJHazCD9qH9qIQ1nNqt4kszob1nWKxlvzTfBG1sf5xHF13rY5GgySv0fWczhy3YI4xAJahAEQQP7JDmLPSr77PHmOiZ4yItTCalb2QzRid12QynPRi18hE2_4JG2p0KXdM9TQzZrxyuGAw2rSX-16qYLlJo26utTpkE4iU3cfKq48yrXrCMBOOP8BSRrINQarplFJBvzdsoGjeOYAtt13eeyjbC9dsVFtj6ZErSH1nsRrwnUWYuldxmiUnI72dGnquT2D33qeQlao58J51B_fCFuDbuC4Ch9I7PMIOpIJ2ze7u_yvgk9irPPXxYi5XpWreC5T0XfFGd0E9eqJFW8_x370ByqWkkTbgv7cYQhbSecqztwgaGZ7yfWug_aLXGEG8zgFtgSb64f-5r7G6K0NLSKEgXiNliBhXYV3wU2X_zzBR7w-IpJJ6O9o5SOizubhw0kxwcWTppY38cvHQwUWiGxnw3bFn9EFv-894aFIlkp3PkOeGaKG5cSn2fsYoxSHhtPGED_NfKLNbo-D21MBxIlxj8x-6Qf9vCupwzcd8ow3V-1dstAFqGSo9py4qwQy9CaoLcD6oqfeHd6noi6D-eIQSNQPxzWE6nSuFr7itZYobPlcjXO-1jnA-I09LoY-CKBjzBOnMm5PGSvWZIeY_8GA20g5qJUD1WlBMkoaYDX6sP\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684a00616e8961-28232483','','','2025-06-11 22:17:25','2025-06-11 22:17:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43382',0,'cd-form-entry','',0),(43383,0,'2025-06-12 04:51:29','2025-06-12 04:51:29','{\"firstname\":\"Siara\",\"lastname\":\"Simanova\",\"email\":\"siarasimanova.work@gmail.com\",\"contactnumber\":\"+7 7783135927\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6SQ82H0a1_AI6l8xp5znlSKWEjwM_-MTud18wCEtQJkmA8IaJmbL_wIzBrAXvHQl9uh8ae3Xnn5t9_uVLDR-GvqNwC1VybqJLn2B6vSkLcfIyeV16Zk70mbHgJKLuC8ERqwrsw0qvZaVYaOsZd-CqBc_wud25JyvAZH3Sii01Vbm-dzTVBQWfB0mci5UzupK_T94y-nh4P1wc8KxGZU8m9rwTInPY08IWwmzRLFmugGjbM1bApkraSRuVyxM-V0m0BWF_WGCvfMxeR9YkYFcbzYUI_kgHkZCxNBAnyXFmJKvPZtPWLQikIDWYvPxJK3kOcg1gCc5jMJNUlL4oHq2ykiJqgJYqFKr_nwYHdM5LFVqLpeof_wTapZxz5bhBGYR94RIHTy0WtgM8JWa7K2RkocoMkqHpJ-CKqwbmTtHa_NQNVgsC6G6reHJM77aMGGCRCHq-uCGjOkYTb3c-IY9tVog2TJxZ_-BZw9UHxrmPNM6VXBz1jA0K_h52ntMo-yUvpq6oCCt-0-_Un4yUjRrqPTzip7Ey0SXrEOJLN26oMcODtUB4olMddDzAXFXlL6cygdh-hH_Yo2vrVwUAoAd6febd6Q_KZvwAD8dHfmldlfXJXuuhbYsZJvV1GdcwLbXImDqWAtHIVNENqgnL43KUSQ-hcqJ2HETSi1PKgFz_wJ5CuuBQPNCuIh1oCDaJJ6UppnbGIJ-I3sth47qvQ_jNzezCazxflkbs611hkfuMKPrz6aYeM7EY3W8yDZkb9ZYo0_Oz-MPv1-CZA-Nhowl4PXcedpsZc-JpErLYUD2LFBpiwlDbbYS9wvU3WoFsesIruXZruG8emuuKRFRMDXv-fxMsUM_02VOKYHaXLBhZSsOeMfyABhDtUAtNqTaOl2HFf8zwHN9g5ONXMPDiopj2A7JodiKoGLdT52XJaEcuNb9Gn2h4sOFbzqZ-DW8DhN7kzHzcGTZen57UBBYWbYVdrwpnjxReqRYnU6Lnxm740SO72v-33DkNcWz3N0gCFhdJC8dedyBApFAnY59EerJVpikDlKEGPdimGxAJkP-HZsnLKyyY9_cOfUeuRNDP-ORULxhw-IwKpE7K__jfP6kQDs3h3FBr_Yc-eF-R2SXpZtAkY7NiMhfj0iRTQbvEBVL0ICAk8FMi0vWX1BiXgR6DQGLUD3UPcqqZlJCOjGW873yVEWb9HsUGWfx3J33eIuBpJ-5jjOzJQNqvPeVXNdC_3dFt6ycKsblMvHLJaZ7_nskDbheOKxQizPTmcxHZCgmj9K61AhIINQqqCHkc5zwGsbgadSxcWY_lrY0KPa7GNqtl3kscg_ZZzdqW0hrgBhIBimjzNMos0so6FUcgVnQnNORP-QMhk_sJgRxOA_rl5vAeyXuwondOGTab1Jkkb-bmgxu83O-GepNqwPhwvXyYiJWykOZfX8PGipMf4CJIhlGLgjEx1snYMeE_UEfs99wOp5_MvhQmQqVCxKUNWq_1v3FqH0-8i9oWPJVQKormMVkKbFrwulgBERbOmq-6Da5AWGJSNhgwkJXFi6vyIRPFvpsAMVo_pr-k7s_J24jkFpmmuyY0YIQpZOpqSHIvEWQL7KZc7P3bfPC_w2uo5FswnU1Rb2u4GBEn-LX5X6kSy239prgA3ejhisoAUcCzkmJXx7PaxXq81FbeNHKaZ6Mf-OrpD5HwR8nkcVmsbgLfimebDDcBclFekeKznx7pWNPaiwByG1SedadSNN3ExqRn0YgpgycIFfvxQHKimcbOaGQGEVyHx_YH-2VOQgoq82JAHgOu6dZuY6KHYNzAplV3SfAVuYq3vV8Wzy4qVrozNjXxHFgUR_6klk8_CEz9ImmeghtJZ1Q1YRfncZ5jK5L7BkZopsn4vv65MJGgJNBliPf-RebmAeSEl8QCzX9nsGogqMjXIGSerztVuD-wNht2Ni_xUC4P5JP2_Q5ltIW6khMZPQcCNyLWdXgo2uaQnz2yGzlW8sv-ed0mh7OqFVkCP-HNVEM_kXMn9tuuziD_ZeiFIaYV6ZQOgfH63GVe4Wil0igKT7ONXfg5x43Fk4zMKlnGTm5apqZ1Zi4DSbxpLD6t0EO7tfJTZohpciOaqSJ2EioYRcMZU8C9-_CtYA99w_Vx0UWUevJuzokqB6ra_FPIt8oE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684a5cb123ba65-86384376','','','2025-06-12 04:51:29','2025-06-12 04:51:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43383',0,'cd-form-entry','',0),(43384,0,'2025-06-12 05:01:40','0000-00-00 00:00:00','{\"firstname\":\"Gemma\",\"lastname\":\"Staples\",\"email\":\"gemstaples86@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjw0qTCBhCmARIsAAj8C4af-o4Oirqq7NmBP-sCxR-NAU9orHHCb5WejkSEDVe-Et7LYpNXhxcaAulcEALw_wcB\",\"recaptcha_token\":\"03AFcWeA610HvM_jPHwtvCWyAaVTZz8EZ_uOxdDVCPAeHZiWvvbS83gFv4vy3PbmwOY54Tu9WXLoOerqnNJJ-YZpdCWuzbnLI41fxkJfqcdCXJB8B1_LPwlRLiRhtOHUAoapS0sE_EpqeAUD6uOXVWRrEmVgoz9NPN5OlIRtd6adN6S0Vt24pY7kXjIOfxAzT0ibu942yMalYN265q93mQCfJ0UIQSi0GPjiNdfuLEgGIIJy0Pcp4umTWz8-vBwbglW-BJ32rtAUt82g1nJPV6WR6O5trCNzHdrJbq7Ma1Stn5M2srdnPijed5SzEXxN9btKzaIjX0hFi7JIOP3NPV0odN9BS93rTSfZ0cr-RHwVxLAszZ6BVIuEzuZiJKnw06Z1s8oSh-9y1Old5vnOgT9x-jkPNyGLe1hdeiMeV45GcwAOXjIzF0EOO0aTduFfbztL8fK8Nge__4DuBDYol5W_NreT9ofUZJ94aNUA-yae7U_v7dUSw5ySe5kKmQ0_dj5fa4HYqW3PVZ4Qy_5qz-4KFyzGKq7aLkMILu93gSfd9hyP6AfljVGVQGbiwEzAXIVeUfns6OO634B9Rvshwa3nzICTN_ua2p0Gl_5sgYGaitqFkf3bH_uSeP3U5CyBmh1f2M-XPD5lCYcB9WTaYVXcw0v7SOwzaBktjPQ-vNB1MzrQDyuxjARNNAHRwfChu7YT4AVk5bSxkR9QTJUyPx4XwyqJaLuRfs-z62hGJjvqRwp9HjW38pmUaYXOMss90MhenfSzM6pdzjtdG72-gFSme2B5V2Bmt4F6UBIpCb_-NMGnmPpn_w3GG3ZA_LJI7VU7jzTLRsR3UQYpCK0ysyOa5iwxwwDlWPs_stP77LHXxGqsjZQer2tRwIfuYLNOnxXKctrsx33p_1cAprVLyCx2iQj89KfT-Er0qOE-b_UmvaRcusL6trRvC7LRyn4KNUPNGVnGy-25LsxFYcxVaAe0hUdoGajQmpzstBZiQAttTbg35izaxXlfHtAsA8yHmXNjwZIN4S1mm6DzsRJ_axFWQ0CMCH0pfNjDPAMAGeL9x14VfJlkDNpYJbMqhzJDYOc4FGUZsEEhJYB99X54gl6hm5rWNHJNwXAWx6OQCLvaPmdkazxOXExZOkAhoCt23vEPuEwfzPMa1QLjv8QhMhFAhL3gZixge4zxNETyKCTWUJj9aStEfZvfrUPUL4AjAqzV3UAePs0yh15Fas_DMscKmaxbTGJlO672zOsegpBOUPauhQd3krEOqzOQcGAk0B9QPGtadFuRGMmX2v51XZcWW9yay9uCHQyDBk_DhbcqfFCqMTApyMkLYBcj_GPkt6d2Xs7H5ojNCzn2NiacQSMo6lg2znhYWQC8L1Mo9DyAlXLne3it68D-vigfOIeProSa7ooVl2v59Zh7Zyrq_HTOfAoQDbFNhLhv3hFexz64Q6pzpP4WniZUZkkOkyCTiIupZo5aJYqQoEqnwXuagpBaegXWTYcaPdl_U9eSRgThzj9oAk_AWRZ2Qk3FBL0ltJPa9xw2AQRVGvLrTz6vZyJ4oTZlCMjIbHJLmdk2bvfw8uVXqi4FxbfDpi-dEpwi8Lc8uO38U1_Ivrr8bb25aH81OTum6G3q0OSychrEnV4ww5q046h61CjIAIFdCI4O5hvHBVIGlxZObVbQS2gwfIFtQuLv1s6dmMVm5VqVaXw5PO9zuxtGXUKqTyIqBzr6kTzIXmTQykhhG-50CFc-UYyPoqkFKAJdyqFWjnGhjg5Td7khPmpyBRGwRZWJJ18tUDp82_4Y-cr7qm9vQ66GpASYX9acF6AqjHLXa4B1UXQNGDigT-7z7RJWWlNuxnv_ca6fjxE5-kqZkOGL5L-LqQrY72ZQiTVLyqea7tKmUrZR3PxKkLCUrHYQrIhcM2Qhti0tbvADO5yNKHKwxmXeXvirxk5I4qkhBPEvFNSbvXGIyuOaSQrDRIjvA0X0i8NnznVSRiZXkTrcTp_j5GV1PG92PPR0jWaFNh_eRGqxc5u_ZXvjnrOWrAdBJD6GD11PgXMS5zrk31SIV-2f6Yn2Z1ACXJ1h_MPODCt12WWf80wDDPuUWIhrllsaHZZoJFSf8wdgf5ClHDYHTekobrWhwR6Ou5sISzcDGaf9valil1O5GL3HdHFnWD88sNciXVUyLvEb28GNSjKzZ1\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-684a5f165bde92-39290653','','','2025-06-12 05:01:40','2025-06-12 05:01:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43384',0,'cd-form-entry','',0),(43385,0,'2025-06-12 05:25:57','2025-06-12 05:25:57','{\"firstname\":\"Prasanth\",\"lastname\":\"Rajendran\",\"email\":\"prasanth.r20@gmail.com\",\"contactnumber\":\"09790424202\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7RQAQvdTOk4WRifucKaYFf1dBw4zAfZIQT8jZWpf_qyFQ6Vq7oTrBp9K35ANoJzgmqrkZb7CoaumUZeQQDq-i09HrPxx0EzCoka4FzSRQMWoDMoW2BtRQjY51VgYZUP192nD4f7eHvd5Ovuyu-LvpKIYI-ca9wMzHoFkJxbzK2ujGEqGoYxrxTgJzWd1XA8BAKMlGKRi--KlhCqenfRbtXQEywVDuRJdhcN_z0V6xojnMMOeMLCJlHCyXh7L8p-djXYV4d7quiAKpYmHPMKESO8yzwnpb0lHrFD4HfF-7obidx5v9On4_0msyzzZ-v4ZXWa0p8h5pAvzcwTJqD5Ueko-AmXktQfbllnmFFQZpwL2wQ23hKXc4_FU-cI0QlikbmDlAdicwnaI9f8SXN9KezT8i4fqcSXg9D1FEtUvrtL8a61C_YXT1woxO4LGL2hzry-OhkbgGTZjakXis8QdMiJjh1t9fzgJodc6qVL9QROfOE2GhOXY-33g2sErh3glVfislgf9NGEPL3As_b3vEErPfNqkvY98sFf2OmqQblNvKIXTSdXFNdKU142y2nyHmRTdnlAdm1ydaHJZjWjUWH9UqlXFzsYgtZocc-YUaoK-mBwdNOl3hg2WegSrygjCRejituKOLWLLzFQSaMhaoMNVePkHPiF_PrqeaeLNfdZYh9wtyFOTkdLvITrPKJUY-EXk2iwXJRahLg5VBbJJiG-Fp1mdF9w4HpxdJCxWxS_RiUng8VCmnFxddr5cUlPyNGbYIJL5S7P5GPJV35TpofQLqDSNDKbJpiFITa_r87xUq1A2S9kJAYMd4waK1ugR0FiH-iJ-p8whrpODsz6qarAkz3OsSJ0LRk1U_6KZnX0Zh7AWBGJUvSevIl0vHT9BIUT0KCwJfO0m9_x1qjM2QvRsf_7TdsyuNHAR9VBSX65xdfWrDoXBCHLfufJUze2q4ybVF8Kksjkx4afXcAJioEA2fOmFGv42sQ0fNwTOoUcJeBQ-ZTo7cT3k1aDVYzNFKohBzRLOQmlyhVNkeYZguJz-2p-SZciMOghdGc2t8zPSWuG-vjV4cd-AySMyseb6RuEW6yhqjX-qxknwn4oTqT9HxSlq0Z0ekSgQKIY_Fi8Mvxhr1n9RIUa-LIFbgXGrWzkdlwIT-1KTZrVS4k3PyzurngpjUsF3M5-2Fx8NtVY2N0skwmGIRXwW1O6_p2SZdb5qq7DmxyHTCfMqYBvSVrmpCQWH8d6icl70NEKHFtED3thlvoTUCCGghRqOqZ2MUQtEzt5X9VaiDJYv2GDkWPj4B8SDkk8d-o6OVwAXdpl68LqP43IktpKCyLfDbepOLhBNg1hRsTc__pt0ESulCiySE56QP5qcFeunvKH9GoGian7rm0Ca3QoXXTzqu83Xqtl_Mr6Axy6C1IanAfwbtWRw--jIiVra0F3GZJ9L1HjtsKXh88Kx8wkoildRv_VarCT5Yq-yuEwK1D2zR1lnD3wHzrhQuI-BAIwC9qK6zP6rDBzcAHBkj3m0lxx97WvXsLksWiQXUDGTTSJqd3OLIxItk7SczmLk_czylzbtqnJ0d0J1T0k56g75XDZqEJtRUPuN6ZWp2P0WTGsJgK2qN7-xM4E-1lhh4d-xsaW1SLDNZBsTGa9pPNoZsIN86a3YdbWzuG0xr6wb4aN1vyppncWhTGc3_xQkwFJxFqnrcGz8sYDgL1LvU7uSZs3n_bBAalA5jiChl9lVS8RAzBdn1akiBE7RB147L1D5L8UaR6XM3cPDjNRiDnKJoWq2lgz0sJBvn04v8Oz6dkaraUZe5yoXDmSxB-9o4NxFbya1nr3e3PQSLWAgZmg-M13DalMyotx7k1dY5sLMOY4TblJIe0If9mlUa7x1h3pZsC7GG05E-FPvXa1J7BwhLolEw9P7_1S6ppCd98aLrgZSoUJllV-dxclVLZ2BIcYDPUjU-ClGl8K-8PJSKAlCjxv8HD11Xok0AlhBqPwdcWt_zQXYghmqs3dXsvXhnHu2p4_ixyC37x-EiF3g5SeToKim0PW04QGGLhMCAe7RjJrjU7PjeT2quKBx3jKlwYPFFv8jPxiu2H76rVarv0O9NLd0nAmORu9XiaAOyl242z7EYtTfvhEKYMFJPjKkP2_4CSZukac3Gkf8yOf76JUREpxCGxJV2t2_Gb\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684a64d88d8318-91615682','','','2025-06-12 05:25:57','2025-06-12 05:25:57','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43385',0,'cd-form-entry','',0),(43386,0,'2025-06-12 10:28:22','2025-06-12 10:28:22','{\"firstname\":\"Simone\",\"lastname\":\"Solomon-Stubbings\",\"email\":\"wellandfit@outlook.com\",\"contactnumber\":\"07759205976\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw9anCBhAWEiwAqBJ-cxUa5l6A462Xc3FlfhT85QztP7Rc_Ct_UcYS3WA50zG6C7wQewdgvRoCWz8QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5bI2PZPMYd-X4cGXiJJaEF8G0V9u0hNtJum7cKYgI2znJ8NTJqLAUIHm-gg_lZUwra6yBpC_KdpS4W3g3asWYrP08GtTdP6YqiIP-0aK_d7U36611Eh4JU3Nwo_A2tNcbE4JFx_DmDworD6pCy_Iypg2O3ZdSlX7654HpdmMYyxESrOlu3lcR-rAUDphiQzzSO9RtWPn_l-hWNuBsMV61OKqX128AHIODyWAxBSkuYzalIipbLXlGxzzUbREeGmA1cfkYBstBbkMpSYpL48IhVYaH_J08o108me1x4rz2zDEDpXm3o8f1Omzp-N1D93Bg2mJNDvnwWkH_A6onPn2DM3WGLhAL5_gy50bH-cqtqXDwSn_XM9t6qkID4uqjBEekJx8AyO7hmlix0PTSEog1EQMF3M9YS4VF7e13VHiOywZruNOiynO9zTtrAhvpzsGyv4N6S5YNm5aZcApPXy3UhcYZwOBgHLP_Mo-ZvaROSel9lqBFD_NxRjPzY31B1rw7hTytIhXKjeBkXBGupNSn9LBbrotdsUgr-_sjZVrvYDgcZuACs6ni6j2wveKQjsMdtqslL4N0psnWzYq7yuJaCagcBGjPM51XLcpaUXvOIqt_zbLLA3Qa4nqC8X_rvXcsTdjj8ib3lSexqaHdMGjFZmwKSOGIACn2KFVbTuuxROMJs9Pgg9q7LL0TLKxFL-8I0Qvk60FvmESgkLJ_LTY6MnifEgsAgwUGkwjzXMq7mVK4TEUUMjoLitP_epnx4rCqDvQ_XakeRiDHMFrMgILaVAOX4-meRPLoJzJVdUiTnCY8ts1jVlAxrkRJMRp4U4f_DkIg-Pl3FR7facFLT-M0Syv6NpKL6zAIJJ1vqQsgKIs5c7mMMQRNQULaFcvLWH7PgCNXUdh62JUWyXwZG7o_iqGe7SB7EcbCfdcTPnsjQe3inlZS-1mQENR24v55YPl9mPnhLYqy3yuzD5LksHv5o6FicqWBhAT1P3wuDZ6E_oogxf8BevVcrkwAyvpJU1tVgMGHmni1akZlwH_zU8bMK1bTTTaOsAxOgb_FER68HeQCm8Em27lKY810oS-geAaGmOG142xcPsHhDYU99l9kvBd03A53-wWE4sqNnPWn3F4Mie1-K69Ot6TSrf7DiBbwvNutprosV0OvVslo6glUoATM_w9uS94KZfROSqxVO_98c542ZWTepTU7ntDJCGf_qC8X5sa17GMihexLS_8p0Vepq7zRlP5b7pXRqgB-E_zYRlEDQ9xX_qtmnrL-YJ5yip2rAnlHfhvOrTxLUK_JGJRe9IHMkeZaoLpiHGGJ5QJh2StSnfpA_zTPyfd4ye7GMxHdFRByqd8ZZ8wBv27c0oIg_qOKSEkajkpJFrJ5KTdLj8t3dYYQIU05PafhC934WTcV7pfurnrXFC-p1pUzcJScGA7mmmXoqVbbMKhZ84h9nW2U0cbp5fFy0naWsQULRqKnjZ7toBkxOwlJvd1erRC8ASCnv8uDZmga75pdIUmBbeAu9ubxu90c-xIWVSTdCP4bjFxds2taisnSAU27jQAuntmUrUmLPMXBvsTjVwO0ExTaFwXDb6JjvbqpEbe1CkKi7htNg4D1GuTAFVcMeFypWczHXMHSdA4oxO2mTAAyR8D4JS4ImVMyG79TolBp_gaxQAi8XsFwmX9UK-b3_0wkjETU-gOy90wh6bVjcMAH0EGI1te4XnWyljgrWd_oIK8yTN2LeCfMl-f26BMcdtZsOsBiMa4aRvxVN4v-n1jW-QmxCGhaqy_XB8da77DP7HTl4VR3HdA1_WCIvRCICjzUtNNOhLDnZmMW6DqhHkludIP16UAsA4G8VfRZYWPmBtRPbCWtwTh3EgIc2BuBkineghsRXyjlOvlyy2uSsfrBGSw63fTrOobWOIeMD8-sXfIIQIRiFQNn-0CQbkwVYbH4mJxVG3ZBFo4b4ZUPj7CDUuvP1htsTDi67GsAf5x-MwRCg-jAVRgFNm4gdIO9vHGaC-b38Kqy6bd1skoHrQMD3Zo6VUA6WS46qfizRKhvQJtClfqnMmN9D6v7oK6MLN5LL0ap12g9eKCfZhpqdqdErhLM5t_1U6Q4g6K49azaTkypzwMGI2c7vIEZLD_Bg-srSYBCd8lkrNBqBSxvhe9QekgA8euuzjtI_SZEajuD2M3xvRhrXMFT-5ICA_RSFr15N81M_qL8zugfjrxkhqDTed74\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684aab87c8e062-96666891','','','2025-06-12 10:28:22','2025-06-12 10:28:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43386',0,'cd-form-entry','',0),(43387,0,'2025-06-12 12:24:17','0000-00-00 00:00:00','{\"firstname\":\"Catherine\",\"lastname\":\"McKay\",\"email\":\"mckayc729@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw9anCBhAWEiwAqBJ-cwvit1yQWcz5fIANhQHdTI-FBr7OL_M4PUDIgWgfawcWwI60T9oJzxoCM24QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4NEcW3JWiShMqOwv8YROxljmHk8d1T0Ygakx1XuINZ_HO6lOcJsiHGIgWDDg9syHJg-EM9d11BbBd73Yrul45ZT1_4J2gmyYoRH7PumNlrEMAVnN7OEJ9osn0Bb1WTAh-dgof_gG1vu3fItzMSiiQHm_Q7EX4S66Klwx9ReIYTm-qhmrM8Y3-iuNZ_8F47-J1aO_biG_VK-gfIL8paRSIK2fmmLgZjxStE0RbVTuqUPOq_LmxoTodnKyTmzcIDDjjdo7kw70c2WhK2KOT1yAoEhkuT381PFdez2dWVIT6YVrPM2oLch22kQS_BBSTF7vVCaaVGFIv5djmLSuADQJuitFEPnMZ8Hf5lMMY2RytIbYtFoFmCZ-1-QJJxqXvNORb7cdn0LxAZf5ASknmlGpOXI6wBreo1r_cZqcn4P8BT6NbxY3incGyOWX1lWvDz5dsEYeJ5FRZJ-1EFoTmMijBiRzxXNIHyVbXuSkXNqaKeiFqJX7CPB8v_36shCw3wPdcgCw3PoOjYOYmNfpZYver_vbUYi6V_ntVSwDthJSNdOI44fQoGPGrm26jbPZ0TfJWja7uLPKjV-ppPyZVt-usAfnJ9MXKbbwYONDMdOlR9FGN-GoZd1kZcsGTXdigXPodgLX4dpZY7yLbKg4BjqSHthpTapyFYekWS_rxOpbHGaKet6OvMlmOVcVDLdsphqFPejXekAkyo7gEtmd_bu8MHvel2qNAjSQHjL5bNB9_vmSKKDyP5rStYqi3fLkZDBXPIRg8ZR0jpfUV-0hLxF7LxuhrGoyHrtTp1N76H2zn_xQ82g3PTYqVtwDvDuk-CALs_e3XlfllEeer7f8hZDrl4xEezEKLePMz6WJPaSNuXqhCsEnHygqJzu2nTAAdf9KN6Eat4nZunc4yPZzD3LkvHA-6lkld3ycOZozE53_iGkyzv-ln5cyvExdCJmSCTMDwRXNphA74tHuBqe4kgN-_TkVCc5lobuK6eezgw4iM0-J6sX9UkdOmGxUwjMK6r0YHKI3iUQAza0Lj5unDqBdaQtgfT3m0Yt_pLjlVn_KgCdJR51O3HX27QaA8YI3wq7vlfuT7wgIZSpTSxdye-zbzGtnRMCS23SBaQqErf1U-3iIbDa0ydGLfBixZBfqoEh5BcvUdzvhgFFUPVhHDhW1B3SUL9IPK7H-cEVHNhwufErINxUm03d127SKFIeG3SXbaYN6Kg4M4C_uGZHRPkNqfnmlcbHfMm9WqbiOH_w-CFWKdaOf0q_YC_vAq9yYeHxnaV5gkMznB52rGf0T3L2KHHKVnvEiLeEL7lVpjm8qSXmx7LYl2vquSIxHDRsrMXU0Z2icAbXElQrlDkgpkAb00zaMotm4_HeiyYATh0-EgJeCYZ2ohUacbi2wgq3AHm87_Uo2N9UFF3DiHT1AklmNVBKDLzv-QSS8446Q9gdK9M1AW_3iPAyMN7y1WktFHRmXg9OiZG3vB4FW_JqcQAMmOSIFyrzs5dYsP19H83HpXwDcbq6Dyg1KCfWb1g6eBh8EecgwWomnaUjrL3nBgbaE4O8UB-QPba37PdZdJb82FQ6iPdkHYUrIUPOVKIqDj7ZkAIBdsQoabWVUS7FhEM3aW8Zbnz3RG8k_F2vMjcVUNXu03Usha0DHFbxyEax81CJUbY6DoRqH0tc_AgQzJcDBSl3UIdtm_tOCBl7SwdJnvx5E_-jTPkiCIN1oB5x_NrW-5VbLRw1EsDptAj7KF7-ywWtoGpWynTcdbHTgtWNfqzoGPmPhWRRx-mah1xdOMaqdC_ASmnh6XUTTIDeDLQ_IiNX-hQTrLGbr-CEEqS2teLCAAX7QPDlOnUHlg4JxeEyes0BgYdCLRYkZUGw3dKgspKA93TltZkWparfWVCXg9p803y87fK4Wq8dlqIYC1HPHAx0CWYVaEvvvgbZnZhgKfInE1ryXhs8_eavmgx2nC67XOmDFhVY5m2dc9bTDPrbAhuV5qIghxPdexNL_QFvl29-IvPnlbAGO-KYlApO4eZzzzLjFEaCsm62xxTpzwT0qDx2g1z__DMPWCSh1EFFdcSWqHxgOIt5ybh4pbLVwKK17OGwC0v4B0ZJ9x77swU-1dZ3SNJ\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-684ac64d78cc87-52005923','','','2025-06-12 12:24:17','2025-06-12 12:24:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43387',0,'cd-form-entry','',0),(43389,18,'2025-06-12 13:41:44','2025-06-12 13:41:44','','Elevate referral page','','publish','closed','closed','','elevate-referral-page','','','2025-06-16 15:06:19','2025-06-16 15:06:19','',0,'https://biomechanicseducation.com/?page_id=43389',0,'page','',0),(43390,18,'2025-06-12 13:14:54','2025-06-12 13:14:54','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-12 13:14:54','2025-06-12 13:14:54','',43389,'https://biomechanicseducation.com/?p=43390',0,'revision','',0),(43391,18,'2025-06-12 13:29:17','2025-06-12 13:29:17','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-12 13:29:17','2025-06-12 13:29:17','',43389,'https://biomechanicseducation.com/?p=43391',0,'revision','',0),(43392,0,'2025-06-12 13:30:22','2025-06-12 13:30:22','{\"firstname\":\"Catherine\",\"lastname\":\"McKay\",\"email\":\"mckayc729@gmail.com\",\"contactnumber\":\"07472512690\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA4qBUI7FbljtRVYeaFv_pmEWIlRKQUssE3LSX782Z3jvAwoq1beoCHiU9vfXTdOyhtDPGlDCUt39FbkHW39E9g-_OydTuaL4GPK_pAI5e3s8_s19wYpv1IJQ5rNzVVv50WXCXFebGJNay1jOyl1lKMS6xwolzvPOQVCtrPUKfv0JHFxwRPJuEcj9uZHirn0d5_Ipsro0azRuXW-mXfPiYdUkkcOQDfhRMPZnya3iiaTE9t6Myi2L01bdQHnSyb9c_ot5v5YBF64Wy-fh86y3tblL6ngr4J4o1zRaHmp87q_Y70EcH5ElDgQ3YEtYLab8DtOGPyA-58IeTRt3qkgrdJo7G5O_HD-Fq0PoCS2ix-2lQPF3WseKYjJs_x5EzmU8PBeflQ9Z536HxxWuV-RnenRM9mzMvgXQyhdmenmxHJlE0Mrax1_wZEoy02QWHed_fk6-iQ1j2HrG93ZIyfHwB8epO7djuMB579zHHb2C7dDZvnJG1b5f_RfP45ffFYbEO4REN25kEE5xgEf_EruN2zK9VG49I205iHd4GvvK9wAPvf0gf2R9JE8PPge5N1Lp8_XnyFJm6FFczLzhb5aiLZDL486Wp2mMT3ZdwP7NJtfje9WAh_orBY_3xKamzxWLjLSR2FLFAd88a9YW_TPDTkHT7odkattkGS5hGsy0wSHnLqrtf_Ht94SydxSl973ab77ebdkfPyIVhYrJVv_LL_qDgmBoJFlYQJfInkrhVxlAi9CWIS1rHvqf-K9SZlwsHkakPJ4-94mL4CmI9IHwQmDAj0Ugm16KiUgsHaAASDvo7GCQjVkyCuXzTQVlICwmLVWgq1fgmyFNgP16_Lf1--GGaqeCob9zR42f_JUMO2cfjbodH52rz7ccs9thZSVonW19VrbAnuwWnY1pX_KXbLBpFearaLP65Wjfz7WegtcQJKHF4woQUIe4AqBtxLiE9v0HC7P8Qmuh3j9wTS-TBShY19Z9TOsI2eHd9BUrP7E-mt5lF2N3bcOil6JNVAA0NQuYTUYQHve6BuoooVo_8iLTnMw99mluT1-zJX8V3sBmAxciKteAtEkdqsd3TqLCjhu2C6c9_Xn1-fpf9JUpiSaxHKwPh7WievDAwDP1QB2DHwZxEyyxhelftTXX3x9-5Y4XgNOELqDoCTHiHJZkPJrvvmLtJmvnTm3CT7HzelDopQ6CDPQP4pA6-NmxqJBqYQnHskQAq748ku3KBnk4xoxxp4xi5b6_m96x-zOFRitkkxY_hUo-pITrSdFH2cqHCbvH3deQEF0WA4wECbZhb1hHMglqVdgbr2PBr5ltYQOFh3kHg_DgIldfGXqetCWJ5H3A-xJ0xgTL6HrP10hX3tQYpal-9_4ZMjkruLhDtzl4zJqX4en3nfPpvs8JSvTIJX_NaZwqU6HpqFJU90ta1cy7wR9nF-OWW2aHi6RP80tSDp4WNPymyj9WGi8E-Y5D5loXpsyeBPK2KloJYV5PZoQaJaMubyZ1FdllX3LvhPOv442eaOtbNZ0GogSj5ZSHwR9AXrcQP8SGoSWN6LdPVLSWxaVGf3iPk6oHPzsUlLsA0uThNGSk3vgJxMrY8Sl5YJHWShvcdTOas2ggTkk5PIUFy4RW2FfxixHRNC6wXxH7GBwS4opk4HPeSj7fLcvwWupfmUGGQzbaJ1qTv--xguLOdqVRqSLhCJlp7d4eDBhmW0fqM4x-331gd0DVH81X30HCmGI0d9n5vfpSeAUzBZuI3WxAis_T_2qzMBcPAQSdi0eO37gS5SWniqIQ6P6DTpGkjfv95EHHTl_92iEX0ErEFZ2ZCrPFfwfGVp4SynhqOq1YtNRXIlTkGT26neNK3AsCcgyqZNnNdPhhjcSbOuEyYfUa1Of48xZAg07kZWooolm6_lGqmKTs7AveZ3rXMqJaTcQMiqpn8c0lMJuNgewAcCcCeoA-kUKDpYH09y4BGCIcR9tI3xRjZ69PXEK0FdSv2BTDh3IZBJX8-IbLmFP4leFf81l7kZ1SwSUk5cBamdZCFPNPjiuSXpWkBuAyyS8V_FN\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684ad64d963c21-46706783','','','2025-06-12 13:30:22','2025-06-12 13:30:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43392',0,'cd-form-entry','',0),(43393,18,'2025-06-12 13:35:39','2025-06-12 13:35:39','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-12 13:35:39','2025-06-12 13:35:39','',43389,'https://biomechanicseducation.com/?p=43393',0,'revision','',0),(43394,18,'2025-06-12 13:39:24','2025-06-12 13:39:24','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-12 13:39:24','2025-06-12 13:39:24','',43389,'https://biomechanicseducation.com/?p=43394',0,'revision','',0),(43395,18,'2025-06-12 13:41:31','2025-06-12 13:41:31','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-12 13:41:31','2025-06-12 13:41:31','',43389,'https://biomechanicseducation.com/?p=43395',0,'revision','',0),(43397,18,'2025-06-12 13:44:12','2025-06-12 13:44:12','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-12 13:44:12','2025-06-12 13:44:12','',43389,'https://biomechanicseducation.com/?p=43397',0,'revision','',0),(43398,18,'2025-06-12 13:45:57','2025-06-12 13:45:57','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-12 13:45:57','2025-06-12 13:45:57','',43389,'https://biomechanicseducation.com/?p=43398',0,'revision','',0),(43399,18,'2025-06-12 13:46:42','2025-06-12 13:46:42','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-12 13:46:42','2025-06-12 13:46:42','',43389,'https://biomechanicseducation.com/?p=43399',0,'revision','',0),(43402,18,'2025-06-12 13:55:50','2025-06-12 13:55:50','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-12 13:55:50','2025-06-12 13:55:50','',43389,'https://biomechanicseducation.com/?p=43402',0,'revision','',0),(43403,0,'2025-06-13 05:32:02','2025-06-13 05:32:02','{\"firstname\":\"Marion\",\"lastname\":\"Saunders\",\"email\":\"marionsaunders1973@gmail.com\",\"contactnumber\":\"08588608366\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tTeeNOSU4btPtT3JLpyFgJU&amp;gclid=CjwKCAjw9anCBhAWEiwAqBJ-c4wAuusSgqsyO5kOZaVBhlOgk010-5D5CtCTLrZTO99JrRFlBiOihBoCYnUQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4ypaSIjLcrqtqf3ROg1OZtmuayMaN0A7Msp2sgXzipSuhSAm3430Vx4ZPIBO0ex3DiQBgOfB2ui8yjHiKcstinu_Ec8bIBPNNUNQ_XCW1WEK3dKAeCQSO33QF9EpgXw1yoxkORug28tZWajTcxk29214pLeLTgcsvasM5-38GgSqtahr1vVHrW-tSx36X6AB0zRC1rznWHv5Qh0eAE-8iabf-stBLOpKPClVIQC-m-i6eLfR3lRufShHYYU7u6DswGJpwyNzVTHmX7L4hHey9oVe2qeVRZBmc8xCOAuNT3HTItIl-ebQ7qeKYjL8kHMKxtABrDPa6S4614oQninRLdjEldqT1GuOX4Pd1gZx__HcXSqdo_AQBeITVTaqGnehTr0ibwwKCjnjR_ozql3Y26DxArm8TEKYkCof_I40Fxjb_IaiPmBMcuL8CO8tMKCKaYn6l7mHcsbV5IFNBqqyUS_BBvGRIR7A71LK1jkfGpqM7hCYC7ospTSeAANmacvx1tu-k6ffTiyDl_ZBoFCaDSPw-GchcqiwnzdUodmT8MlOR2frmI3rxenKrikwYEAohMOPDbNTFheJ5fsF7fsKfW3IbRL-96Mu3KdSorMtU961rR5tRXSog5EjMDS3gPFWgE7zCiueN9I5gJppMfhHnQSP7kCWoLG7DmWS3oi1N4cNNNxVfBbNsfLlfqftQRYqmwn8ijNibfsO6jPLQ36fDYi8OgXDFcoJAoVps5JCYRbzbwmCWtKDeExUfMCOTcxicXPixrImK6TB9rT0epzFZwTDXQ5UsFCc5AYwSo6DiNyktP5iyrP9j-i59yUvn1hBafupz0vXPeDHPf1QbvcU_TPztdzqZzed2w-WiHJNvUDCHvZRj95e_MZd_YIZe4dlseiumd_xfyCSoOWx-zq16v0sLJFlyFZdxiUZ5ATGr5MK8tvYYOrJp68dv5c8KxD8DesX_ZE90_R5umPLo0baPmquH8FJ4mzi9-uEBl-tNZQOpHh-G0uOGHBMzes_n1HgNsrhXJuItWX6xwKLT75_EURwkuKymhqzjdkYNnXQo2dmLhzutW30hhRVpBL5P0sv7348kuRKvAxr5Ht2CUifwkGh5gErTtLyKnKnjl09J-i36zL6b3i4rASiQjGMA0QwcTOiwHbXOM-GeqvZMcl8IkV41eAt7pv8DMX1zy62xx2JXJQadCRUPiWjegtqjTjteE3tMXNFOtyIIoGKliaBDIxjTsEPYfEfrFsYEIr9o80fPrSNJ4SF9zUm9cCNWLd2sPdjz1x3MzpwrYo3CqZmFZU6ntSFue5e7fGpj797S8q49VILboe4aC-86ZXLqykYPiYZRJzo2L8_dZL-WDbH65kdEneIFF3rPSpsqm6YYp0K4CkPQ677mzV9jhM3-wQkkpf9hxQOzkquoeJ_Ye80Kybp_kHzD9KzHOWmeOmndnI1B_YtAoF7mEzz6LizOHsYUM1irPGxeqc0f-0iXyXAuNvoEzlZ9VUo_jOns5vOXgj6BM1cFBoXefKY0jRVmzOUa11GkvWRvMD_XPOBztkF9r14HN3gzTNfSeSaawwtcIbTdCPj0mzMZF9BVK5ld_fm8Qc9mXuFfZKl-E1edNf665gNS3SWOKcwe1a04gS0qvIbw2qILsLafvypcQGmhuZPbKfpKd2J9m0yBC5yiPo2YQTVf_sb3ZW-F7jJCV4APVA1_ZqtFFIaBf9rE85_sawVd1YCoqLH7B2qgAg_mG5OpirXnXjBZbYlNoaRf7tyqoGE83Ytj3b7tJQu1Y2_KEXsW02mu4wX0ecXFEzgenzJ9Cf7yEZktDXnmh02P6t0JEuaINSFtlu4ztPg9lyWUjK8SAQgZjUK5taweMxZNT1ffWr4a1VrVSAUyR6stNDTNI_WBWyvXmamJdB8Q5PhiuCI-OtmLsl2h9swIOE6_baqrZ0VVYmsYrbJ5-LGFlpvQW7Pdh272sZ7YOo_mAnfHlkO-Xkjl_KCNgDVy9D23v-CrIdpk7hPWMDo9BzWgUOEmp_3jysM8L269sNozKNls77t_2zV_GdSBI9DVhmtZHTyL_dJEW7mxq7Iwg3C8Y3S-I4V8lCwRx-fUd66mlf7AhQKl4Q9yxbIpW7okJQ9vvVs2XbSyQPbafHfG2gNY_bLNp9vWPsBHuSWJTqxmJIWmnXad2Ugvw2ahLqG-r_skRHRDfLK2-5vOYclmIUORF3goE32OJaH6hTZvf9k33GCZMWAdJqlXgL0EnR_CAUpb95_SsKtKANZE0eji9jbjl8IIz4sEFeortxQYVfi3UqNKZ-2O7TpbHZQajxAHmVTlmkawkhxvpN3lmExYhJo8S1X6jgzGoZoQqrdzD7tydyIkGOeziuceWyNVdB1mZ0xZ3FR3Z78eNyA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684bb7af4d55c2-32341734','','','2025-06-13 05:32:02','2025-06-13 05:32:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43403',0,'cd-form-entry','',0),(43404,0,'2025-06-13 07:26:58','2025-06-13 07:26:58','{\"firstname\":\"Sergio\",\"lastname\":\"Garcia\",\"email\":\"sergio.dgn99@gmail.com\",\"contactnumber\":\"07785707648\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/international-training-education/\",\"recaptcha_token\":\"03AFcWeA4eLBjYGtFLdvpoigy_QN3SNXQV5i_hsVS6C7hhLxz6ckjtCt214Sbb8EihPMkvf_2L9J_JnoikgknFnmkns3P8ouCEqkzzBNrbt64t_FDzbq9xcCasaWbGuXIAV-SOyGlJkgrSNWN-_79jwvx9WCVZXs1sz6gZi140f9GXqzq7T3CDckyk1mD-ohgrHtTy1BA50tFqhqqzTQp91ZEWndHxsup0uEHNa_pPCKDk21zfSek_0rN1AgveS_4cYBHDfnavKC91hMMe9-2dQoIpHvKuL6k51zz5nWpGnoGbF1WcQ40YMm9r_RrdJAhjoZdb8dLCqD4gPbFNDGzje3mzU4iulcuu7VwIdoKgWdH5meN_aylN99Kw07X_NBBLyzc9JNkiKCFarU3HJsYEjneVkBur3hoj1IbMIWXcRjmJlWu-v02oqpZA5mJhrh-xakw_dG511xUwfNaz9UspPrjLTIMP78woycLPv4Jxe2BlAl5dnuWh8rmU9kwB1WAL2CP3tUedoZ6b_fVghgr9Fr1ugcWKy7rl2i89kH-KAWI4h69ceI_HweD5LIcmHeH6-nQdbqveqg_RhcqS035b9qygJlJjR9MUrclux5A-fwXdinRur30vmCfAO4gqvp5e6Vyp09sZCPHBEhTbjVoh9FT7m-IB6L2XOMYHcttFl_Q7wD7dGjQbiSfqnG9WnJLw44w-zirj8rp5ptSQKaQCK-O_-sRQyAkh8k_TuXMS56Xv-9IylZBUahcSTBUkblpifEJBye99qYethfjKY4uk5o3DNWo6k1Dcy5iAi87EjovVhCQiKMz2yz01Wrj7KJ9yn53stVGxLq7-ielB-cqBeZGBHp5j_SaPA6WO3vsEcm_1KHSS4wOyn6y1LR7a29ZHRaHBocqQuYGHCZf9P2_p_cAzMH3JAaK9oSEUJy_Wjm1KeMAgqtC2FuSij6sJlRTws6s1GHh9ztMijx5DDkPZzV6duIl2_2f-29v5gacCKYs1d_t-oph12o-SLWOgDA6_nVrluzKaVCk8SVdU2ElEHLQSQ2aMnX9A5jqnHq-HmdXJSS4gPXwFLgDSA2zY9z82gXbFu15rqW2UHZHqrGTcZLDr_ZrAV7HbTNxXejcHt2ZG_xfLnNOunDpe1oGRWKtgt6bAaxaPxhDyovYPbAcysUWhOhafqIn_D5utDmVOvmTxAIrftx6_Objkd9TAG4f79cnpNIQL37DA_0Ov5pw0hzna90rPaMaXAnDFBzFLC5r8PopVvkrjq9h3AgjzUOrstHhDCu7-DYTiZHllIWhFv1mH-hEV59bsYqe9JPRjon_Z6Bf6gohdQy7Q0Mp5u5xRCjx5d8DtjMKRQnJG2bSz5-lMfr45x8-fD8wvcdWV49MFqOtH9HaEbOYaQ3vaAEqTgKcYGVFTZf0oHVaizoZ3FtANKAoIJnyQLvbdYLhtSg5zkWKW6tjjwMp_nVyCpoVxGWaatP-uBlYo4BILZBySlGotE44mqVgkErFa_soXWZVGhGZWxb0whmav0R2CSvSvEY0RAiObjYc3o_xl8xApzTsYBAxHphPROchD5gnS0aq0lZEuzbLhrI8Hr6nOpJymyUf-MY7yhHynB-OWrsK2Oeambu4t-cLLmYt1Yl1rkk55-z4cTaP7Kj4qAyg7ebplksHX0fCWPNihipueWYBCVY0KkVIyRKrqDRWHsEocjKHt5UH4k_CkUURYUX9RnyX5aFHBO2sh_cmhx05X7n547Sx9bZEIAcp_DnUaZfzZMJW332iP0hNkDx23u-s2vIk5wfZvdd7YT1nh-XmrYwYunxp_LoIuaCbojGvLhzLo_hJfOdrRbwGZJx6q8LB21pX6oqM5OKQI946Tuvuw0OXxESGG6NR9zdo2MmPbCcIFl6hgGhLWH9clz1EWLesSd8BwFr0d3kv2Lw8t3IKVzSmck2YAQD4g3KntXyIZgzBYZJ9bg74_KQNX0QgePJZQOIlz-5iaFmgMOUVE0oyoIGEFpvH7caNXmWE5gyrzyYjQEsjCl6bi1KS31Kg1jpLUDcZWkO1REDGy3KfxkVRnAXpIn85zdFXaDfyz0oh-wuJ6vq8wnLnkc1-3KZnICMmsuT1qt11V8eHjpUSvsZY0ckix-aSw9IAtfEI56hs_C4CIZXeXd81oaa8Ckw7mItyQ8L08ypJWeQ9U0qqUoEtNkZqbOVN8WTV1ocfCYk4WfN99SU6Got1iisSuqA8nQsQ4juMSGZYzpfATV3ZiHSt5VnHhu-NGJSOAIF-3tDJPGIeYmlrEizsP1IN26IbC5OE7Y4ngAecA_rg0-t-Kyx37SFaa_3Ij1tOUqOpOqFWIRBAvZD3SNHl3nIfgK7NOCClKEd1QAKn6mYM9k3XBQ2uSPfTs6TkLlutWX-3NdGSL-3hyHbXIVegYX7X1azo\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684bd2a80050a9-06659465','','','2025-06-13 07:26:58','2025-06-13 07:26:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43404',0,'cd-form-entry','',0),(43405,0,'2025-06-13 07:28:55','2025-06-13 07:28:55','{\"email\":\"sergio.dgn99@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"6\",\"currentpostcode\":\"Kt109rq\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/international-training-education/\",\"recaptcha_token\":\"03AFcWeA4tH0kw4dVlaxwz-TQT6h6a_YdcFxIdZscu8bOE-eV9oHtuS6K1PEFpQEQAea0eB9mamvC_joN7yTCBJlvuc9HsW-6T6ah_jPFQjJW4E2SZLL75MT6G6gBXhrBdPwDkaI0gVGczKWpDOxl4NnkOlcW6W9mwol_NtVggDvp9cMc5HgoQJwlzy2Cciswpe2YqgfUveO6CGj9tkhzCaiUhQT6mw-38NMQ0YeM0ywdDMzVHJTSPn3y6CD7CAqblplQ9mY0b46TNAimBbSeOVhoD1G_m4toYX_ms8ZHWkhkY4H9c61CRojY8FOIwzsE1Qmc85LUha5DrKD1cSeVI3dA1-QJ6Ce-tXQ6_hoR8k8vOR1MCa4h2Z4y4hUJfBe8OIHrsbXl2v6WK3aNRhgPJKFLexY9HGrYEI-QuiO9c_joZAIyyrl18zYm7M-ps9wpu3qMHYHUnKCHlL9eQSJP0xAyvWKjKLb7vvxtfd9Piug2ZdRms_uNHfmqYr7-rO_0wclZnvXtq3AxLy6Wdf3P9JD9oWKc2Q_oXzDfsTEhLGr3eoZDp_olfy9kV0zhJQOTEalVVWFXJNIvbxFE8FcuaE6RKbXo6csBALCfjALmwBsVZZnTO1_kJm6di8EB63-CRprYVpW7v_I8-E7N2I43UJBnI273V-NcKVrA2DdLrHJ-Om9FBV5TVy3ettKEVUv4UUybHC9muRLqu-fJg50wR0ZGObtRkiyOcOvpK6Od5xcHuDzBy--NYTAFTHI0AxN2JDvOI_AZ2C93yp5kyyO2gSd5qJsBpon6AsCkF4kGS_Te3Omw0F7WzYwx1pr4VCT0-Sb2lbVjJsRMHpNMxuJpzixz-PJPTBSjHcqXNB275IuIRE9jMIh-mICzdX4BlrGSv1vEs-jZEn-c388rJ0g2bhIWkSBznVy6-rJUd3ReXEJenVA4g6wbj1JLI0JNJzbfFgC3oqcd9XXKaCI9rLc3IkDVzA_hjSNZ6nNsJqPWLD5fGURYz1-agXRUYJl9o3he_jGUXLedBIT5zyxjyWM00X3DZepUtx0h8mxQbzpfAf2CMx_kH6FI7D5DbxwvipIlGq4JNkxKs0du3rWpVUfPEheIS18gmYsdNrTxr5zCI32k3B3w1vfsruZwEEH7UmiAtn6PXPUuWDiBSMdIf1mfdycl-nJU_XlICCHZb-OjX01feAvfEEShrGlZ5lgaJ2QZ_lJbH5a90Hd6pJXQ-jBgvTfFaGy26oZAudXKxaqzym3ylcZWnNpBjRJJaNhsNHMfBdfvvwB7yLcpBKNuNuyW2_Y76CgW5vSJ0OhkYMyLiZKmb78lEEGSt5uDzXRKqq9HSq0KwTuAWAe9K7LtyRnJHLuF0_lRgno7qPOITZKSaEK7ktisLEDjKmPbWQiDzdowxqoAuLQfQ_xCwOP2OB8T0OESEHp60tr0Cnh49amE1__Lw3VFS2qXW28T8jlySmXfKGs6gPKPwkz_fP_hVni--R5PliVqGUrtXihAIhCaUDIHH5Vbs6RKVQSIcbJ60pqhKh5tD39OiqPwYPKQZ2I3GYdtCyk6diciLwceI4UBNTWQ8LECa1e0p7Pw-p9_mq9ONtEx0albuUu8y1IvTyA-LcuBb4Ww6wA29QAfeK1NeOj3fX3aaEolskKRBZUocZaUsjoXTcPbVAucakj_aoAG9oaoOVtEBrSd8D5kbI5NM0FWe9GztPvoki1ZHRCfdaFIZZjDyxjlhuO5-NUN9S6q37L2F3IOzMuu5-8r6M3PINUwMpeQHbmgZTgtwfJIFQa8LrP0rg0HoA7np4SfjNImhFPGfyy055VJdwd3aYhJLTJSW3zeKO5z0jM0qAPRg-EoHLJzq5Ps9e9sMPwjsWUMfcqwWIQXs4GDGPkBd67lpFLvGQx_puBToYUEcm4JX-0_4Cxq-Z0330wAfy1AvtsLcowgUMAnpkVODpnmV5gQ0DFhe1FeXA0ElAHNLuwxcIGPSm09c_BBCgo4g1bhfIku_lhGttYvGymvoUU23ix4C5aM7es_CciYm0JgkKLOoiuPKDdDB6n4MSyTEpBGT2zeWL7CtxcON2ynzp0N0IMAEbWTlU0y-nWcRAkV65e7hfk8hL11r4kzVJheKI4_BPdvwA7PXY_hc1_zK_KJJggOeNT8Ew-NsbDZUgy7AeSyEbtu1FxCf1DRQoNcqJxYGskCFndl-JHbZFzqwC7y4H5ZCMJF2ZxvWtsRe5Zd07bn9m0M5-fCjiHvjBq3Eo89YwuOM4GnpLN3cVPG_AKCdG82byVfGjWyyAWJlvoEpI8xkJ7_r3uiMtWXOXQgoZiIKqXPiie9ORNLY-Iz7liTM_6S_pmdUiFWGuaO7kJYMWHem3vLJFfCCoX4c4jC1U1iRpB89eB07BCOSNWA9rBtOYvlZ9_S8awuJg6GjFNhSeQKvdHJlRWqe9rRthqeU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684bd3005a2879-51080119','','','2025-06-13 07:28:55','2025-06-13 07:28:55','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43405',0,'cd-form-entry','',0),(43406,0,'2025-06-13 18:28:42','2025-06-13 18:28:42','{\"firstname\":\"Kirstie\",\"lastname\":\"Wibberley\",\"email\":\"kirstiewakefield@live.com\",\"contactnumber\":\"07947718080\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/\",\"recaptcha_token\":\"03AFcWeA419nFuAPFA1N-Uns-K2cz6KvszPQiqKtYOM2np4nJ8rR1-Po_X6YRlDI-Tx6GNwH6eu1tbtrbchKvjECVEZYp5WRreKbg8yOd3VaVOKflz-K5McTY89SHBgxqq9BBNNCH4V3wQaXhyF5svGDc328hF3zh9o2WPkXXC6WDqoyvDupFziwZE3AsCXKyJ4oy46J-Jy_H8LhMtA5vs3fgl1XLpF0tTeBRoO7uub4YTGUOGAeM01IHW-Wu3lnABDVni-JyJr9Sm8113tOu-aegqrxg8Hg4atiepoO5yoyzrV0Y2G7JuV47bAqksiUFHezNHAyrTUepu25B3D00EmJpEW6PMGpQQsrjtnEorIQJ_WDqUNLStjcQvz_XYbSCPWhm9txHvg_6vYIWHbPGt0ZXXiVwWbGfPM74nKd2vF3TPNGOGFSMhybiDvXHTlM_NlOMQWHm4RMOd3dUOLXYs_Pl3Kn7h_MKtrM5pZxR-5raqk-piONIe1bNwpVL9HJefkwanNElmQzkCNh69JFyeMWd6GRIFRCaQDXa19UyI8rjOJqIGHfn6HFSM0yjhYOMDR9CICYugstIJ3zaNlA6TUtMNHdfTbgu9n4kDQzoiVcR1c_km-RncjzVRyjFAK8pkDMG2h2ToT-JSnl3kwVPIjZXPIdYKLGex2Prv7wbdxVsb125KdK2l2UQF7BfrpX4IFoCGq0npoSUw9jH5RisA4VWB2prWqTYhfUEMJt52cVrDEBAJPAQifs_SjpYM8xiwXOnKyBX-70t3XUfUayn_MvBN7nBk5By443QQTbpFpUDXxfphgyv0zL2uM-UHUk1QCVWw7qVs4AOJCAznC2nfBTqDFUk8CK9C7ojL7AF4VpQpFlwPYLxSEELHEY2gz3roQVX_DaVLwvVrU2M_lj5oMPzEO8934IIHeNIyAPYyTGlV2VkZunZhm0eeq34IPz1Fz7AtN9kQBPKWcovJBWuPgqC-HkUpjn_MrXuIElkPeTaMPdVw3GBdsQuND_ijERcu3o1Y8Y0IrbPRYy1KoLaBLA6Cn56ziV9uwZz0ZTaKqpjqqtsw0tKR9FupvoCy7k6lUW4nxgxyzRLfo2rS89R9Q34WfCUjISM1W8E5tZsXmXYlIh0ceBrDHsT1okdsz8iA7dwch-nPK0Pn2Nh8xgfunQp1Bmuha7MuKxez6FFbDsOEWlBNnmd264T1nRS4fRgFJyeH9-uJzOkln30TFf1nuGqjuL-Z7SKco6240NDncV6sfdBpqu_KOcdGfg1lcDat4MIoJF7L1KjWRQZT-jAR-qAtUExL0aZspfkAZr0n9en5UQa2ICtNYInJPyZbkyOv1by8G3ZRHkG9beKc_ATuJazMv-k_4wnOMp9G3ZbaQ0nUeij_n8DZ1b0xKiA_QwceVwt5pjqBkQC9cFCzrlu45lhudVfyxtVERIHk6SheSwFtfs6g-yOUwALasKR5epZlOsyaV2e9VeKHxhpoIRmju_Jv_kjKhoBPwsxDC93GrP8JcaP3UDwnv2EaSfLmBYOTHu9vLLYMPS9kXPVNd4myFNxbq96y4MaoEUOtF21L0AaF5ww9Xife35nKGPtlwl-3QdYOLrOdKhEegBJYruqDpP9GdVeb9q0Hdcqk273EUjKvhfJnCSirPzxtCfIcVXGOotvHniG9B7vmzAvoTHqc1mzRsSPxb4o-X-uxWuy5IivbCZnzuA91xuUuNQ1Y9QlFXfWrcEDPScSZMa8tyIr69bsgU-Tg3yogawCoXpvon5nFbJBUdqcJNPv06UYekFHi_2YH9ab0OF-GzylYNXJsC7Sx6m-q7cDKJLSZ1umKVVtVdJutIJSosg1QwYkkOOQiR2YJ_HSfd5rrrXv6CqspjLuwDF5Jsrt6TRWcpn3SXK1NgplZ-hVVerNiYWRp_rtJv_l7s3Wg2vPErQ1bGMc6PBB38IviezV16cdSRCyKsFGQeUPnxQ9m70TJUOMWAQoHop5wDwSta1YZEyOKluc471bgV1MygXEaCvcjojlVwFbtn6m_-1siWWZMRs0hcnZ-uvn4CyGS5L2hic2U7rzCjd0GBxD2lkuRLLTHgcQxUkUEiBRuK5Njmc_mVAfqrCrptU6md8-aWlafJy4EpV8UEWKy9vApgj_ggrNAzG6LjRTtHmPJ58RN1soeLxkxrTbT4onbqSs2R9u_6M9cQi6Q0zMa9iF_V2IsMdY33sqfqLn1tPaauVBI7r2f1G0RR1rM4dtfSC6qZ6hV1cFZbb8uTXvSzLFFXWrIyAxQYtuYqsccX37UHhAQluGRev9uqAnLL3SPpdbqMtSoqhJbPyTunB6QOaEcJwjUhkIxTkotFIJ-Y52mXvupIie1eYYRokqBxsflMm18p1bJDacWPxmRcwG-dnTv0R32qbfDP2KW4bHRfip-Syd7k8Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684c6dbf060e01-77480713','','','2025-06-13 18:28:42','2025-06-13 18:28:42','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43406',0,'cd-form-entry','',0),(43407,0,'2025-06-13 19:39:00','2025-06-13 19:39:00','{\"firstname\":\"karen\",\"lastname\":\"knapp\",\"email\":\"karenknapp87@gmail.com\",\"contactnumber\":\"07463717103\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwmK_CBhCEARIsAMKwcD7PyCB1ZDPwi_o4V6phi1oA6f748U1edsFyNNdIxaz5LAwgxqjt2OoaAnhYEALw_wcB\",\"recaptcha_token\":\"03AFcWeA674d-5nFtH5sXcSNb0mCKVnVCCMIy6gq7nkF8tUR2lgQDGd4t6fAAfGV1L_3k1fHmM_AU-v4H0e-xW54HiVboafoytH19w3dcno7REZKpmlVN4Hh5FmXfbzCwfBWNSLgucs5nk-Yf_Z3WevhSpXnOqj439MjK_ExSaZXOjmE7NlwwtshisZZpsdFQNccBkDEPNPG9EC5OhftX1B6PlBfXNZhPrz5JTjFuuRT4FfqqfybLIb9wdNLWBQ_j7gFpmSKK_fBX9oHS4F4462boaJdh7dLbR_tyT7smOQ3EENt8bFB3sw-pMn0AFkHVy0zL-kj3F4EOj67gyLiUi941guMsEBEQ9DurEgEyZhYMyEuH_Qh8OgnmcsH2lbNcsXl2KujQ_ruf3DVR18gK6jQDrTQfFWzaCgLBJuN-oteFo-ndlzOhxEFtPQZTbvtu4hmhBM57zl_U1vK33083U-6saXnzIJrmE4Ma03N60rRe-PivfOhrmC6bg7AYk9mhZBgRSLYPdedRWV-Iz8ua3VGPULhnCHFvzQC9XR8sMKUGyz16IPQOPYtbLJ9B0eHVRx1V1Yyfo-XCb4-kMbsAObutXuB81ApllSRlP-oNfbaq9_S-6UH-r_4XPXCujU3qBwkHfncIpvwZGUHAiqrOHn2oo4eHA_JBN6mOdp9wZCOhdPnBN27-kAX4TX_xp3deXrA8iVqQA2OrH5jXS2rAhkV0WGw-U37fFSuVPcHbV6iAyvmz7xfq3qt04IZ0IQWbrAOMI475wDmb8bhBDkAD2cNmlAcTKWbDoLfWArWMDI-9XdJ1yybzYNNcEJhQTXBS2ZnPKMiVg7CHMRTP9Q11-WrhdsPEXpp8tD4xMf1G9tHPB5pO9eqnt5YJgy7Y5JQ20AYumL22rSGf5YergrssyqnXKzpgiZtAbeRZ7ikCZvUsl9Qnh4YEDmj1Ub0SQL8cGwcCFB_aIJ78thUWXG3rZyoP3mWhqrryjWFQ9r5OW2lbQP-Hqsn7swKSqC1nu5jgkfLZvM4-WNARyjQnlz2DbJ-QQkPjvVaxQsRgembX_yNjtwVtDCCgo7-fhLnab5r6NscubL_D8seBFsM97vuMJR2I7KzggBed32AyiAaKJFY5CgwQ5n2q8AV7LA7hvNVkXmKXjMkGEG-9Vh9a9CIZ_VHZxRUEHS2AzOaSpBXIQgy4TGAstlBLD30n4rqOuknsyY9b1GHHkd8_VP3K-ZXinratSqMMzwmBea3fwBGbazOgIT0Y0EqSxEoO5ZD7fDTAgshjk4r0ewIq4h1qvjf2Ui1GIngg3yF9M6W5AnfP6SgaJ1CwBjYLQ1tO2KBtQcipaIGWt5uk7z_UgmOFx1LTYXeZwJpqUk-ESJXwhHhvSylmo1UxNAu_WI_IkIgVxbuA0iz-u2VD-aucDqm9b4tfWHIqW_-_cnCbduA2lasNxhmul8ZMqU5LRlVUsQDOm8UFnGzIM9yt5OsLG0YS-sNhoV2xJXdy_a1USsXFMN9T44gKmOwepqSxaRVdgXeOn7pg9PtX9q-pSk49R2tyfZkpbxK-OWdRmtWhMdqxAamDBP5-eIOX-NPcSo2IGcowiEQpoeSCQd4U41gq-vPAUJSW4Akq_svnn1YusGI0safxFcQQRHN1IcsxSo2_KN095eqU13-bHpOi3SndUTQ-DeHkra9bFHY-IG9Qfra3sPJZD0R40wZJQO-9vxEvIqrRGopcJKUAvv3WPys-icQ9lKy411YR1KcSIDRqSKETzP0-QZjEpAqV3axEW0WPXY5FsUHE2VlNDaqxA6IUnPDQ1Q5pkCJuFrTa1VHXhC2pCNngugyoQNBkJpoyg8hIBegsUWs8eIpKQkj9CIRDy_SJF-a_WKwnjzhxP7-9CcPBknm31w7pXCNF5pfULHSQhZVM3IKrh6UF5YaaOt4IrA2yLVQ698D5Ph7Fhg_N8rHH1eQgkd6xw9SLSEM3Yew4AwK36PY5vIlXM_mdA9YJ7E7QCejLSgmObQlIpbXrmg1MLIvpPdIIMPadV5z5i5oxBAc6FtDhXEhJEPF_yIpvNVp38h2xsMYPwMZ8of_WMjW4yDh1BJOyeB3gqWI_nrUWu_G6wb1AMbRj0Xga2s8iD\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684c7e486d2503-03534448','','','2025-06-13 19:39:00','2025-06-13 19:39:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43407',0,'cd-form-entry','',0),(43408,0,'2025-06-14 06:33:50','0000-00-00 00:00:00','{\"firstname\":\"Munfa\",\"lastname\":\"Illip\",\"email\":\"munfa24@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA59mA5vyej1l9ChgibEA_hGXHtU1GPlIYU_yodhRysGO8AOTx-oLi9Qg0U-uVuIKdXhNsfVXep2adhcdCfr_4uEXaVPi3_kxoXTdimXs7FvaXBWZngxxpiYiYw5mir8QXBrYQ_KFV2OUnw2JZDS1eoY0utgO196YR3vR73w-tsJtC7W7c-Sm0RNMXafRSVXhccS5EOsm0qC60goBDXYqq1Y0xFqxZEZpW7ITDBq5UbeQFHF3-SqZO7SnfQbi4vaNaxYCMcasjFc-GmrbrUdZm9PipJ_9xg71BNhWeCESKn2xl1XPbUNqwWyny0-Xqv2evKHLt51jlogh6h6W5y3IWvvs-LBi9Gda5PNqWGNYM1EXZDh1I14ngptA8QAWBtTIoNx7fNiHz0Duw9mfyboXWhFKjlrw9-W4jEY7-CotXSotrs5jRgSG3_z-rZeHommVSbyFvwW4AG8spFGhlJYEpYGcl0QagldltMg768Avj7v4hlEsTO1xatU20T2McZLSNcyd4OHXtpws3CC9gLZ0omrLcGzt9adYxqLFXGGimbSio3YxABRFvXYY9vwsiLA8llLramlVWEZx3tv9PCYpVoaNEfnKhugMrQH3DGySoet6A3Dxumc29DMJ4Khu1vwuw622bK1zjgO_G6quzjjMDqHg31HPsWVYJ6JbtYhRHsIbBOKMtQnRKqc0DD-wxKfGFVP2dnwMGbawWvko_oFV1_YvfwpLi-xNZZl8ZDOkVDUtj-HZF5obfYEvqwe6vcH7VtZX_ALfWYVrhykaNY0CjBD9R4ohb9ha5hNK9byPWwVpRQrfbjdJte5gJsui_XGawSblzUycqS2aAgal5IILQihF3uNhGM5_prK9F73mHIfGoPcmHVTvvPbzGk6ht0xsQTQAj_mFVZm7PNQ-tb5QWvMVTuZLlkuRFPx4cU7J6YcHCQhxwEb7lh6RobhLZSje08cxKcVgi-jJYPLA3RxCS9_KbErK6GiTOZNgCPEdll0kVoPyTCTNyB6808nIk3AIX_dy_A3Uzm3JBFJemidcA0daW9X7cUPlCyTUVYRVIVLd5o3KSHceIcbDGWqTc5-I6qfEOSx44FZ55ECOGR8ciL6GeJXRT8H-6AXASnUlOKCz46OIRg-auGR89T6DK01UR1BqSUm11GWGd-fR7dvyEAk2eFw8NAL25XzYuIEoPANXQqH4C06VlSQRPDcXD8YN1VOBQUHyKSzSGTPbLbH_qD4W0IptXpvvdO72rH1ySKUfzhYpgijTMm4cHL2uf1vlUUu-xz7Dz1YwdnAutL-NdvQlvAPhebNCVxrvddz1QP6W3krkIPBdT0nqeju9cKCGmfKLYx_TfjdfKuThYLvRSUzmFwEfwoQYS6nPC0K0f-TMhTTy8TE8HYBYUWdIxChkSP36H-4NIl_8kEPixsvnu7bmxy3kEFHYNEV2Sa5tDr9LXtCAWK6b00V7jRMLyry21pei5qIIQVUjdah6Je1Z9dZfTna4R0U5XNKn2cZyX9752AUbWxA4e8owhQwE829LXnjyjah9E4F_xrv0U_70Hc_zEMzkpMyHozqzWHw_Sj_TXhS8nXbBsDVmAHSSyAYmHguNcqsYVlgV3LQPae20Nd--UIA0iXxfC078BMdNo8LA87yEMwriodMnW61PYlY6ARNi-P35rEM0YKRmoEvsYX8fy_mopkWw3LOlAmvk515QIjl65Y6wukdvqDzcQATXEmFWbql8O2zMV84gkRF5dPM_4BOUNaOQ7CeJ6aJ9gw8wbf3N4GDHBlI4-tIhBzdf_Ake60Gd0Sb7SvvFOAn01NkvtSrVL2iREclNvWkmh8F3rbs-z7lnukySxQjRR_EugLAmAcmW4Al9OvZl65njLFzMcLJ_qOdOzdbSswEgdd-HWua2G8xthweeEIzd3GEvW5IREEMd7_PH4ooSjTW3U2suxUtqht05jcnksZIjjsVOZfDZoycvrUJ_gEz5U4g-9swCTFwiScS5waDMZ_z5CiDhltgBdGkz7ALyPe-m6I9kTavZq3aSg7x-oNb52QUxnxFtZ8sgpBqSkaheUbIaQSOfVTEuUq4RIXPYF90mdVNIBIf-awshR5PxzLvmoKGKJxofvITn2d6fnlbF3egFRJWuVOlMGXPhi5jrdm5bbMz-TNRJ0MrXeC5MRZeRmqEyfsHh02Dwd7arSHMJXyg11IdL_0AfLtsm96WVpvOTuwFp6ef1WEsjMTrDWTRNQxeEvj-EqYvE9mY9WdvJw2L1AlAHWbCQhzHhU8lpShTGVIIqepdksY\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-684d17ceaf0fa3-08807425','','','2025-06-14 06:33:50','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43408',0,'cd-form-entry','',0),(43409,0,'2025-06-14 06:36:51','2025-06-14 06:36:51','{\"firstname\":\"Munfa\",\"lastname\":\"Illip\",\"email\":\"munfa24@gmail.com\",\"contactnumber\":\"+6281212572053\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA6kgUXcYGB_4LvK3_AU_CSpVIblXamFgBuCHFIpmWjHhnSR-HNTbNm2ZKhdBcD6l8XeJQ_VExzvIS174vkaSrymo34clkNiw_-U3WusPAuar8i5MmBnF81LwIBsBtNwG8rLVY_TJD3wJxmKcJ4SjW6QDi1mcRdgSPC3C26I51Y84CSMqICoXFATwCx6RePam7w277-KNh_FiskDgWDgitMInaa1NDGHcYY85_28CDsUhCykjgA5uVHiCOHWEXEjuHicDk3dCRpw5UAt5nBq9G9b_EceWuXeLeS3i1nGh1lHBAlJB1eWlYXIj4HGEouxCPthz6kR1ghdmjcnNd1p6Jgn8oouZwk0VIVZpA8Ru6LjVFd-nPK4RQfpUVJQeHV0EASskWqomaDOKZvM2Jk_RRMbdMmV-5VjsWvCq8nFc-61DZuSF71nt_wzBQiZs_0CIiPECIA5YzTaGPImADeSHoeqfPLDBY5ely--kaVXD0KGZk62Ipl7aBt1bnV0ZFoxl8dzTdkEUzeQaEEqfUjIDV48pmcAgzdvEAIKHs6Gup5X-vLdZT-29iPrfJuFUPrkS0TOTkH8PAy4jeLBdoIYqM9BZ0VSKOFZKFjUDP9phrEid1JdVvEAoBvWrjiJK92Nk0LfvPfkm05zu168uJUnIl0foay2rGNsLpj4tnInhdI2wmQhe6Y6bydvqlN-ERJq42HCYMFCStI7PlXe3puo43oxSHaJXmNtwClwweAooIJr7at1R4SJsTHgFpNCqPt4hHLKzl0J3HMkjfO2lNj7cFPdFhs-0gmM0YQ_JW_gKgLJ8j-2A47d5Fg3R68AHIOCWEfOTknwGxU5hPP5IXB3Gimd1r-SWpIhhGJyd1jJ4MdI3L81wCdziAKrqzVJsYWEKKxsKkaLFtk9OCnCcm-4o-S3h9b_Vw6xKexQWK2_vQfpagPmIuJwVG3TGXc2dJcTwNc0tuqFg0ux_eIiQQ5cdqVJTgNzTTbjNxYtoeD5Ov1WTGYsRmynwqjyZPyWjUSTB8KPAKEcH8lwCKnMRwleAnHDfg8rCvk_FjU9YJPZ5dwwegZoQKrby9GFpEXpLvOMGBflNfXUvFpUf7WqhBu9KAj-xH56DNBjjsJ1KRwbU5NsABqPOYwEeRrjCLPqVeLSvcUo6wA0wom7WRgkM4fwynV-7J4coUraHEpq1vKJJQ-avc2G5XnsFrsVzhc7fhcfsN7u2zlEfJiwkwo1zbBytfUxCcU_UHE02VoJjws95Q0U1rMGAfeoRfTCBUzEI9gtOpt50GpR_EA_i61JDm093lClQ6Jgqqkmjg41w2U-nzFcBVR9h0U-lbbKOP32U7F1Mu2vzbY6ZQNTfJ2QGoxaTtOaWratRp53J5dnZxKJFXvUxfjhllARs6BcmFI3RJD6Wsd0BxEwc-tVk4I0o-TMgheUOOd6Fq2VoNicTdIyJWkxenSR5-ceTISuJyCkDb8HogC4BoD5q7t4CpjstDWwdt5BG2a3aOwCUXNdk_LvtLmqZRM3X5f7I7NDE6Si-qdNwkaqWCtvZ5w-25MoGZB_OW6JArkYrFbSqrgWWvBFgDUVjQnEQNltzjw6PvZt7BGFfhhxPrxNJl6ZQOBM19YumoMTBtQsbSbkUej3NDsk8di07A9_NTMi59kU4TmhDTx7IUFGLIVV49eozi43XjCrel_f7WeF8-YffIoh4trXtUi608aLS4dR_wZ3M_k7mpTA3Zk-22Uy_H0D_Cu79HCaKD08Ffs2A9eYfvWjSI1MQya_nrDmnSpiN6HrJVreCssb67GXgD8lzoj-wt6iNw1efhT0iW3AbnoObeJyLaIqvF8nQz89nUJPVM2QoeXpLmj9yFzitsGHcawt6Op0tbYspLa0wydN_L9iKUcl4cSMScKHEh9cnFcDmkFyOyV9ePJqsiQv69EC8LBEq--N7SMp6lb5AF47irRTtMpik46FA7R1JE8GGFsMoZz4-hccUW9sW_7xBqiH8SshiJocqJkZ1YJgyOGwfVMeHUp4R7VLTFOUZp3DPErrKk-RZYQcV88ceoe5EmJnXDOEuQNm9NBjSoBQo3a5M6GBU84aDcNVSbEf6m1i1sV8YYbTG7go-lBCeudgSB9r6jXgosqkyieGsRRLYsMRovZleF6q_pFP9vEVH-wFq9dcbHx8BUa8MKaD4sTvU2nu_wL0PFG3_o8k01Qo89EldWZTihAivmKg73ON7A_WnKRB4YW1yai3-b-b5R0eUdrw8d0YUGWzg6F-Om5KSFDBdYYRXSkpD2kxGhCKuSxbHyo\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684d18661db5d9-49507245','','','2025-06-14 06:36:51','2025-06-14 06:36:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43409',0,'cd-form-entry','',0),(43410,0,'2025-06-14 08:39:16','0000-00-00 00:00:00','{\"firstname\":\"Lyndsey\",\"lastname\":\"Campbell\",\"email\":\"xlyndseyx@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39263\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5y0-cLfw7PgmUP4PcLab-eeSqX0nw2BmHRu66F9dvTTQhHgkvlLsJueG4ga0dsAcGzFy7aTjATSbXezp98Mq_Kvkuo_XNLwNPJnb9sdRxnbAbXT0nusQOnWDovU3TxTkKLDY2-b7nm1BTDszGv6IoxVIXkjmWE_paVIySBBvEpax0j55xMVtf0symXeU3h1zN_jhz-XN_w2-I3FLWs--KNpb37ZYfIRgyXaQ-oR6wlExhnrUtMFXSo37M74TJRcAEe46lKZfz9vg4qAsnvQe9DyJPxpCaABF8b7iqXiqNF-GdfBEhBKRQr_BNdtlRPGzGDHX3FEaBXpdWmpQk5PJ478ClYEHp8Hj1bRMLA13K14IoQ6MHgci5nMHS1gnrUlI76D1XkgYN6HKLQPx0Wbh8eWXd2v8cDVTz2oX83EqaS2mY8MPwZ5XMgE19V6AoIundlb-L4QvDmpBv9sA1RCn7oFCBRe0G4l-CaOINft25wi_4wW6SVMO5Mg_r7AkTKZt4NPx7vYh6We8ofHEYaF0hsgO5EY9qNBuHqGNu4tMW5eD6dsd8eku2AD3RFbLzAwSO3dZiv2ZiwTjRtoI9J_9r5yDv4akwSSzxoEYtcnemaVe06FvTcTKdhmxx2PpOHOV2LiRUNeXMA7vIWnS1-Gc9_F3uD8C9AoDRxJrvHQcV7dnj1UAtYf_RuQWkizw1tMRhChbuf4JtJn4tpovzIrDi-yYl8TwijODrz3Gv_6Qt7GGLpKUOR6sbKgZC3LipoSThJpVA5aWS97ZWJw1KCVA_5cWHlQRyepkLhD-5Vyfxdv5SDKB9f_yVGU-cD9YjWPsqilUCN5ufYdHOf7p0U5-R_SG2FONa1Rgzr8zZ9zGpzX15pU9NwqcXhjbFJivJevsKo8Pcgp9rGmix70SFLHgc3-6pyFWTrsXiU4cyCALdSqkEqJu9XfaeFxx2XAS1zQU-x8RMBxFVBBWf0_1k7hB1-W23m26k5woPAmCkEP94WrnuWXsKKANLKXoiOJluKKZo_v-ZDlXOKoQ97ir_Z-2-U6LFL96HD6uRBVVkOAytot3edn1WIITzA-exeF_jCFHYWfMEi0BLA_LPZKhyKpC_FJUX1h1G2wD_DWtS7riCElDGKXc7SuX4k8wQ3RyWgIkKuiix6l1lkPOuHphF6gW0RTd1xITpW9kaOzhf_04TFryVGDJT_a48Qhe7fRSrcJi3p071QROE62h8sNEnX5ZwfOEfhIMjADtySwVKRcYz_9XcYxpxhxZa54P55Rh4KumJ3j5Y0mYA9-Yej1p2qHKCJ86diKXZtY-0yZu8qofHLLGmMYVRl1eKMvFDxFGIfa1XHhEBR7qUWmiK5wXRc_8UGRfVhISL1f-_ruvXjlWccIP1TXZQ4nVcdO4isPATUKIexrCcygfdOssFCY2rdXZ_JVQjpO4vj7IU9LUYPfYxm-XMvwIMVT58vT_ZvEDhyv0RDbzJPRKGyeKbuNMgTBaVuK7MGu24SS3JIqD9_Jy5yBL45PxHWAlmGPYpyB-AexZlq8uTSSajure5A3j7xX1jB3ipcvmcyZ_LksWEEZv9EDe_OHUuzmFfOz_59c9MGbSgv3PWRKeE6jtE993mCYBXRgeSjvydSIcyEyxM0Wn5rtgReqbiCaOpiuomXxGqXA-K9F-xiLj0oDrzb8IEkskpinR2XeYBYE0iiHX1DWnSNIe66iQHuk1ZIIoO059nEcuqfGlZPzL4RXoR55yZH6LjQaifV_qfiGNjHl_UUqRi0p0GVy75JZT453fU_NJtwWoq7WV-R6NPnzjePPvBgq2Wf2ZttHoeg3SrLaO9PR1oN0w5a02A2g8iQSd1KWT_FEl1hPQetLX-elk92XtxlOnOrWIkVBkBwHTUnXFQkvnMNVPtGTkqcQpxHGfO_1EuXX4RiCr9YY6LqaHnySGKTnCfDZphLAy3Pc_UM4C3HZ09evwfM7oJzk6_XPksubKolNeTfaSDNINetxLo8d0P2TR4aJKqeqIaDH4hS5C5WZftz10ylU1b4mb5HpK03xJtrr2DiXaQ283gMp0tmc6lJUb2vyz-wSYmcmOszfhvBCv7RE8qqbTBl0zX2VVic4YNxk278nSuE\",\"recaptcha_score\":0.6,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-684d352b0f5298-77758264','','','2025-06-14 08:39:16','2025-06-14 08:39:16','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43410',0,'cd-form-entry','',0),(43411,0,'2025-06-14 12:38:19','2025-06-14 12:38:19','{\"firstname\":\"Munfa\",\"lastname\":\"Illip\",\"email\":\"munfa24@gmail.com\",\"contactnumber\":\"+6281212572053\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6UEiZEyJgrEgkjFlPrKeDgLei-n1A2UGcVsN3vIvxooEIDU47HIHOk04_-VQdfq7gLBKvGYmBqJa2InD2Nqe7OIXRwhzG31aIz1UDug0X44Jz7DGlHBnESnr_cl0GRpC1uty92n6_ePH0Fottq1zqvwQhsVSQgPe-K0nIQYgdcuz5XQYemUM-3wka0X92nxXBWzegBP_G6kLXmveLxnUOmJeiX3Zm-wJiw9aP_h5usmKpUqVBPIgGtqC87NPrPbil44H2tq6WyGhRoCiDwHndd3B3wPfLGY3g98PRLCAA_crJbXx59YXR_nRXl7jcEmgoN1b9VBHuDdK3zPN3IOKWVFuwv2vwuSYiF9YAynkIcAONvYWgRmn7-h9P5PbhrSeNitvd35wS_A1ax9-AQKatWL9Z-kI4qiT6J9yHn0q1K1yrbTZ1_mpDllUp8OXn2K7X_DNmMmRH6rtee-mZTiW8QteKCXHUAVb8MKeiv3qQdCLEf-xFzuTMUwZJd_Sxpr2LBUKtcR3hd4ifBPOzsdTCQyonnRxx67EqcZn94rBOFuMi3Q3-pIBdEMRylGzHziqw7_9xbJsrKZ18F1eee0-lz200uku8Kvg8WnaqFMLKd41bbz-j67vjbe4q82kuTm53A3brH3piV4IavirLf7_wqa8JSUF8QrtqHT8iY6hFp7BRPYExk_sIlU4MxrOoYYIW1Y_rlOpNWU4dFXT2H1JK11NU8tSjDL01COLPz7VXnyS6n32I5-nGE-HvIDwaY32tam-h5YrbJcXr-3dQ4It6Lu6kTWTGRiHhuhINcvpCzBTVx_EflyBjHZVYlWMkAgnKobb7AZVhdX7JIVm4Q3KwtS9XCXJzUXKaMgbUSvwNaV44W8xUYP4htbSRavly7Qixuy39Vozu2AJoIUftD8VyMbmxpYAx0xhQpCQYRVGQUQEGL6fL0jqIX7JYKzlc_DfwD6L4J_7apaSypSeH4qahsLXI4QKB6zOhzZnTPjj5TUKYssW09UFJe-OW2xgvfeca58zMAK6IEuqDG4du1CiHlE4SwloV3KAsvJ1sjhhbIBKlk4uOeZyuhhb6I5rh_qUqEt7y1vb39AfguaC8KtVzgZK4XyJ3bRLG0YGeUaTlVlhYeBfby7BsIZltesp9Ef_7q85b1CxtGZJUZbjfq3_GyC25CIWUZ8zTtoHVjKN8QjKH0ZGATHfvx7WwS1bUkFeoGUHpBrHUyH_tKSIQZBjjempch7WMOCMRufENBbJGvgotdDPWyWHftql4dLQACSKtVUKcweYaq5F8aly7PdFLO9mGfs5Q42WA_VOekBRfZM0uvTlQ7jYcQCTqplHXHxOeBrNwAj-s3VxUqnvcrEPCBG8aOYwB5SlQNBqFcKGWDDmg7j_SjFkAlet7BbyRvKP64FHh5zwVTXFrgT8hAEMymC1MssHfQq6VX_ucU_aHO1AHL11bFaFFjdS4afZ5NsGRVijhQ-GrPn9QPHQw79MrcJ2LkaEeIoKcK--cWmr-DnJvuQPVHeF9iIKUVRF0WL96Plg8hqHRO7rHat7Y69f_HyoX9uVFjV_6DXMkzDM8YVmV8jbcMouDyLtX3PYKYcC9ah9KRhyJ_RGKw9amSaezeuaGsS9PUlf0zhXypXYPm_mfQIabWEf-U-vp6KjGwcxG6Boq5BEcBHSHt3-W4fEELeBiVzD77LZTnw74WW6JHw-0E1mMXD-sZXctgDWrMWyTO_J4ALNIqtzJggjgfflI56mZYYyMTK7TXu-PBzoGevuV6_FyqHv8q41KAmwQ7AaUY2zXWkvexAbgRpLcbD3Kj2jOoU01lgU08pUetBhccsFosx3IRuXVjt2C3NXjuVlrbtjCtJO8gmUQQuYx9WWLhP--jbo-bxRTu-SEAsIFGnjsgPGYxktq35jDU9NK5RVduZrxrwyiMGxYlfUpERAwasS-m1N4Jrjat4tbM3HCLmyccgAa55uSJvmBkuwSLlkBEND_MLC3qmII-IMk485FjmzqPBjv9IO7FbBgAFkWJJbqlG33s73Unw3jdPY0KZHePD-G8UUVAvCKSGcZ4d798JRveHxVhpyrJVJMy0qyI9R9-hJoogBg1XVHUWolSyddfBOTZ2Z1-TghoG2Ti46qsGWliRGY70nyOTs2eD1N6DaOFd6Fnq1mq8qCFUyPHwGIAiGPKlR9ytR0sh2Idta3sEZSE0NdQ9j735u6SrWQ3jY5QTvmw5N2cyk1EyR_yP4wRk4yDGmniH9fscViOi4jkExWRGz67irtA-nhtnEUSYNVJ-TU\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684d6d254c33e3-73420332','','','2025-06-14 12:38:19','2025-06-14 12:38:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43411',0,'cd-form-entry','',0),(43412,0,'2025-06-14 12:45:10','2025-06-14 12:45:10','{\"firstname\":\"Hailee\",\"lastname\":\"Richard\",\"email\":\"richardhailee23@gmail.com\",\"contactnumber\":\"6179803157\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7_ZQoWFheBSbqpB8yDaLQ8RlaghLSNebIRWCgKoZ5fpaSXNj2TbeaOfoN-6oQscAKsS0eTzO5CQHQ_46VHRJHAAsQOKlTgMZluAnotVLXOHPw6uzGyoK9NozKLNPGqzNaVyM5tieLyFebN9TUZ0VEgKtZAW6snHsT84D5UUNzCXwxeFbAgC7iQEDkFPmMSFJRMvMW6xVLKIhlpolFMPT3fWm7PlIlhGPCzUWkRou19ZqpetjX4DX5Sq8to-GuNbl1l6JU-gXvF0hXuWpEFewdEZV-5IqJNfzEY8VBQ4BmWj-mxGOK1VfWs7vnf3hLGUXNIlhRwVCjcJrpCs7tdMrb31MxT4wUXkERVipXbQlw-6S-PqZqIzqC-YK4yQN0Yaaq4Tlfo5gUNOXeYHzLC4oL8khUFmOKV054iFGrW-f0QwjwmNaChpUonzx8lyFtEBy25lLuY1-1sC3ZrPn-mz9ueHR0cpMMo5mzMyFHO9cV-P7RV1W5bOB8xcdFM3ghbsZg9Ue8NwIlWRtBWxQ7qjwln_xpSZdNqZ5SiW12IuFQdsZgQhrDxlFvtc0ZJUbAsUIR8RPDD-5psMYoXq8VYNUKxk2BszFBpgOHaUY0zUJy9vUFH3mN6YsPIWwRb_dxZwuL0NzKdqJp_VSGZrVUZX_OhZFOalRRdqHWS7bZVP08uOe2F1bngxcHMsnp-_MvUx1LcLvvxKXbBf5DSBMBAPIUz0KNL7D5Vweg1adnvwa8JoH9ZZDgTUPiEt4mjCJMlwigI1m8cDfiAsygp9dMf6QFTimp43QYXMyOIxobBIq-hb_iQA0-y9a5OqUz3M7vTnL9KfyK7c0gx8V0jjyaGuZod1mBioPTJV9JXKr0JtUj0A5OQmW3aeXmNIAkrWjas9xF80TY7IgaZ5d1nYkI1uCUbkhJK1wfN4rPqYoL8bxdnUOVh5RADUBmnJfCZ9tl7H3QgCH6ULwBsK-2-3xFon9FVRly3mffE44ZuWP3n_5y7xfhBiRb685TQwpYkaxlETLzNDQxOtLNW1RlCu-b8UkKrKaiygNcULPJC3YDXQ8IST9uJzUlC0C3uQQJGUKohAptSKAjpqXB0lFs4h-1lJ9ziz_A89nH_RxtOgM1IUUpIUWvaBtzuNcJVQeY-BXrr3FXPY0la62JLLpJ2QG0wV48zDxEMJ4N3oAGs41x1-4rURy3wso5i3qHaPlH1nyGY8sj3khhigxYOJOe2vDhaG6_oRosPL_HLdIcY2rCGBbpJ9Cw93hg-Dixn7ULeBnQpShnJJCgxqjcQ79UHpT5CODb5evtgwYB1KIlpdsI3rksvl-R1z33kCCL80TX-1CYWsgc6pvdyp7oaSljrHQg2u5eh1NoD8WqTkRKbcm8QRj3Zbjj1p-HSuvBSCX-TXdLaiSIlrqd9Sxpoh35nCTW227JdmFMxBxKQCK7alQWydKjjaMXg7E_R6uhu48Zw_qwK5wxrA1dnSOAuoroQSGxLWqjvhNJDMhu-CtxQKhW7UVxADKQ6Z1aR_X3KnrpnQAEeQP0HDBtCGd4f7Y52-ATj_hc-RMYSo4LZGIvzFsWvYN9eHsrfc9crLX6ZEMSH2IioFmUcvy7pKjg926mZB7Gn2yy_X2MyWuo_LCYDQ2X0SguD6Fta2m2YZ9kudBO9OFLHz81lNoiY4fCHo834sIc8JO2AG0XF-niwY4MIGHbHw8nrNSGfqYQ4poyRwhakbxEPfrZAcp_TSJqnpEgGF6RvHlO2JgwdgbDO5B98Z0xrBJh5dc2uff7qNIrl78gHrawAzNBvRedW0vnFj3M6gzEA0LNVbUVrydZKajIQ9gMlfQ5LGxd0tHfX-8d3uah7p8RmqXeepTZaUWL3K6uPCWygs8Z_SShVeHDdEjUpYJKQXBmBmyUKCHNVHl1_WGOQEWzUNtHka9Yxfv2hyKzmtFGFtZgFy4h_aeKVMjENoczEjRxeWH3gBhFN9x_M0x4wyi_tmxycPlI6-JhTcDZL_wLSiB-ZokcATN9MxVFX10I4RYLNtohH3cAkxuJnw8fjt0nmAWTRpNNQSuPO8r8qLljgUAZz1OVd9v1wZ2VSfFSFpsFxGxOEOKlGZh8em26PFQZ_NVnEmjtb9InzCAuLJxJaEertqA_epC6OLDly8QDeBEc31fW-GVU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684d6ec9353208-56722339','','','2025-06-14 12:45:10','2025-06-14 12:45:10','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43412',0,'cd-form-entry','',0),(43413,0,'2025-06-14 14:18:02','0000-00-00 00:00:00','{\"firstname\":\"Linda\",\"lastname\":\"Tolland\",\"email\":\"linda@bootyfit.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v5ISJ9eZEbmCg9RJ3mR9JSV&amp;gclid=Cj0KCQjwu7TCBhCYARIsAM_S3NhF9sj4LR7OuHF37JcGhNKWTPoVpeq-dtdaPQZDTleslkn9ySSMox8aAtSFEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4ezY8VBYlxzzdj2tACSMYDHM_0eC1Y9UPJqU4HZyhF9es145dQRJZ_t-QqdOd5vczHcpu41w0OW8rNFP7mVnSBotznLl_n4b9o0HS2JIOV3XqA4i6OfKx1JaTpeNbu-w1u9LgsWo1S4T0-4tZ1RqxMM1uw7MMQDxrU1dIH4NslSlZY5DtIkMU7zEM3xwA1RiCf-06dhrGMnACuWIkTAZA47Zlk2PhRtWd2YugiT9bb6etYfosOyMP60aGBdqszejsH6fleYPs7QxLhkiRCBQi7Kuh4p35Ua_vxBqDZtKVMiEBDBFgtJVFELVaGa_rzKmfdrt0bPxzds-egymejdmxuIpNDVO5qI9_QkE3vTsGDKTb4ohKPCHBF3cwq_hNLwV9GuxMh-kjZJWtNmCscubBWcs8l0ITrYOmdcEE1WVvPIOuw4epB3k09h_dVcKG5di-1h5iY1dM9UE_nThGoIflYWGoNVb5I61nCZ77miLWl3I-vQje8NOi3nL9253YACnt28ZoZfU3h8RGpNQCi8tegkDL00g7B2LCgHnvJKG7d2-TzxG692aJ-N7Opr_stsIp21OE0IPxqcl3zd-gLNOzCsYzr-xJ49NqFgvZSl17pzozQCd0sTveJztSgvau90JrZ0k80b0kfnZy_lqUGm0J9sWBa_AmvoGw3WlNPqzEIqqIJAeGPPhqFZ9bDH-HkOL-A3VRXdlFx-TwQFw1P-d3NDQhYfuzgVCW4NczNR9p4MRIihkYbKwriqQqMoSDe30B2YV5P4bAs1RUUobKk_oZ8ve0WDQ1Ks82vM9zUj2D2BmzDRhYkhGazZkv40ETWFUnvxWWZ7WcUstlNxruk_qY4SznxloH2eSS1v46Hrd7GInZHN2yic5UFjuk-dmq3t40TGIOdboxmHi1SfjbYErRvpLW7ZfyRSzvrcqZFRwtv3VShH9TFPzy86nVfzohXGKoOsinQc98rnpFjtbQVizwcPjJvTE6p-mDixCvLTJGw0wbsygjA306LuYzxLnP1YWgkDWyEI475vSKUsKTc1f5yvIqMvQesTUfxVfgsvrTZCwTp-zlRMx_56mMINKnKNxCa0Slm3kfMT52F1MIz3lRT0w9JcbEAfNPpWlJZnFO3QFx3E6ZYY4zQA9-oHlqClfnd-wfxUA5eiioa6n6_EHgbf4PhVsQhgZ7-p3EAcHMr0-7w9dLuIa0aMYVSJ3Nds9oRy7wnBFS3qXQB0KV8DYB-zdD4ugCbLELOQkWNHtIX9Suv5a9kh2AP6lfNE170eSdHZ3ifRU26gYZ7CgOtySYKf56aF1la_vpgxDUqrMhPaKQ9cmajmFmFx9X8GMc-Eo8JXHn1dCSe0mnoVznj10KiP3W150KeWE-E_0Vx24ZwF-K3MViQXqYRwJiS-G9y1qFt-n3hdnUrVtskd2MzkAES5pQl-G1S92FiWNGIjRhfMTw8vmcsttu1loIij_yfPNqSmBOrm4vvadOo1oN9_X-eDkhyPUH_YAa6hDsSJhwGlspcKAWANE8RQsPFGUzm9AX1DZYuRERm6zyX4Yc42ZPzS4LbKy5sU9UukyGqPu1u2y-yG2SXvtc0vWRh6iORGJ3TDrdy5ZKnpoR6QrokNg1N5RPXbL7hbKAma25z5y7fWjLE9KckxPoZO2B-aVs74fiZyzOXVA7hHqASu8vDs7hNOtGI-2QJtwRy5W1n76wQyK7xOQtOhGL_isosgaaqVNMpBlzX4x-p04Es16m9u8kDXRgBtdMCzIJTFz-oi8HZJC6yOfXd1rbDDIVMu3ytsUAxLIoOB-8ghYWG2SToeA65S1JK3XiZB3MvhaXLsFHBIxnpwEdFXY-zKHLZuWIBN1wiVU6dUAQpBM4OG0JXvujQsThW98zTseJ9voCn5zMqe8MKMQ09oDLqN9sew9o4HFyks_CCUMwQsbqqr3Pzh-J1kZfgLoHEe3KMybOteGV76t_3biYfevzc9U1koqYhVzwjx9-P8eEQu8hlYCc5rywoBynWbhuEZyNjY8y553I2XYRb-xeUqTI3oU1htEVkHVjg-n-duK2MZ__-YNRk3HN6q-7mNvylf0NomnV2K1GriyRRWG9Ztg3YCIi4x5A3CtfNZOlL1t8Ru8CjQyDP4ZT458oBU1pYyGm3MVTzMW9ofPniQ_w\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-684d849aa7f410-19496559','','','2025-06-14 14:18:02','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43413',0,'cd-form-entry','',0),(43414,0,'2025-06-14 17:33:58','0000-00-00 00:00:00','{\"firstname\":\"Connie\",\"lastname\":\"Doyle\",\"email\":\"conniedoyle1216@outlook.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v0zIQK_yow0rtrrMUHho-9u&amp;gclid=Cj0KCQjwu7TCBhCYARIsAM_S3NiQgSEI6hZOvJNzYPsJ9_AM1DliVBjedv1u9PhnG_GO6X22Rqk0J0EaApJxEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5llrqPrYT5YWe-u6Uh1qVyc_5fnVYT1baNLab6WJjU5uTsHmxCABKoEMyJF_EmbXKSvNd09k32imXBHSrmn3-tCMChglvhIPtkbgW1uQngcZ3332weKON5R-CsIQYsLr1msSfRcK1KQ6T2egHQFNyXRXoX1WyTohOvpkSQFVJQYy8B_oYfIKRtlSFnhLmtHYWegd3iZGe1cHfeSIU2jcXZRnp8i2uMaKk5LNzMzA7GfuAUq_nxa7jpqGeKWOUYpwkIlE9vQcQRoxEZum_YzI-7rt_kklgAIWfW224LYHhAjGuNx4mCCYFrlgx0hS7x-ntTiB4Od3VkQD8it0FU-Gmm-ZwPbIfzz-_yXDclLeaXTDQ9rDApMdKotEv7SIZhSmbt9uqWV22w8cKNe8lpA-5AYqAp6H8GXo-3Olj0FuXkWzQYuHnrU2-jdB7R2PELow-GdmBkID59pL6cWELTdV84SFz8iLgMOka-tI4sXUiTGC1vTx3Dhwsvy4iPzNh2Nb2X9ptGnFjryjyZpf-eiWYhR0c6kdKftQRBUWMhZVgUixkJcfkYaEhl81WMnIumU4wAwHrRA2SA9tyF1ru3ATQlWKbv15ohzsOGGCXtbr0G8rzB0rGaPZDbp-jkbiHsWUMBpHyLEKw24ERnfx2MfJOKHCssdfz7p3WJxvFlGWqlJS10nedZ4jVdsrZaRIx_WfhWsWMDfKglUtV9C6xl2IUf-6CovrfKEgAMBZVn-S40lWJelALAPJy15E6Ezp-I87h7zmrQi1w9nwwlM6mZU8c9OVRCdPfs92DbGA-_vlSz-K6xbpwJt4X-kfIpMHABcuiesle9wMoR267GUAOcM3zg-YDmnqqjOs_v5hDAnps4Ck2cBw_wFmVt0zGeXdTTi-M4zXgnRg_M75c1gzB2FT-Eltku8ueJjsm1M1G1iRpSu8NTLPHDYuJjyD5-1CDoDV0kzuarkJ9vBUy7RlPzsNeYpzIq2WEnHpaCeBUq-SroEnegrhBYFe34H0Yc4ZEkFhT9Yd_vIu8pOQATmX6OzsN0Hh7lOWJyz9GFOp9YA6LbDPpLcsWlepuSkQ_jJqfqmGnQuKOaVQugYXgG8nMvrx8W4QyUcq0T75eTr-MTsr-bozfDSOXmwUnO9eaUuVka668e8yy2JloKCYZT6EiR_M1N3JLZwwDSaFQFQqMgOVt8gM843-3wk6qMZhmHIZlZuEjX5ZmSmakJGcIdjnPJwsEnBaHaQ8YY-FzWjVI4S5dUp-XZE-UFpN8og9vq1AWoM5DvdsR5_ONNQqeKF3WAov9loF-biGUdS32Cpthj-K9l-cfkJVmUec1saDMupF3C5qQK1iMcdHmjV5JeRIDlOfvg-z3JB9kbX5ml2mHOL4pe20p09kms6FMr9rwBxW9gY9q_MgiDmM1KE7TxI4u2aTVzMMRW2q5lqbf-t1ngBubtKGWothwQ23v8TDtlKZbRNQZrD3EhIQB2owTv408DOuG3TDfvYTgYCLiD2JhZQTwtXRIg9Ozp2vxcxPrWlHsOy_9k9S-A4o3t6cuAQ2GOcODfo6CX0xrL0Ty4glIuUwpM-lHL4shNGorW9fb-z0ID93CpWuNt_Um9xVRt9dKhwiAmSHUBUE_I8sh1nSFRUDqSNNxIdkbr1tjHUdjqfpOvvefWNu0c9OPEiGd81yVuiHNxxEWWrZ6a6mXAkzf95ad4G4Yqthr6QfJaSeTZuWEVwdlOGDyqiTs4RISYK7ZjAZaUj-nFGyTjolsaoL-bRc5kql4OX9SACyDx2gIu6RLV0sNff-rYXLBB6SxUthZT8eKAGETmL-ErTjNcc7mIbIlpG8OBvBaODFEZbSh9Ew3YoG9y71hgPwPYUqBaAKv_sQHtTZ7bNlJ0k2sGC6sBJByowsJNbkPD_QhTXLNHwldMg6XUE1miSOeSo5d6v6tx0KoaFyuyYTvglDXsnNGR3pSK-CWOflYRH20dX4SpUSXuXgYP_bsYhBjL1LtmcbxbVzDg6Ap8bmfP-BlmyTeQn67pJwTbpje6LqHHbbq3Gizh_4DtcBJpc_DXCd213g0HGA9nu72ulnnn0YY_en-Mv8kvAO923QCX4ZIYo_tQk8p-dh9jQ7gWpxBz7u1rpzEAqg7QMM6iVYvPxNWhn-LN__rqW2GYYCc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-684db286ec95d6-07479802','','','2025-06-14 17:33:58','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43414',0,'cd-form-entry','',0),(43415,0,'2025-06-14 17:35:00','2025-06-14 17:35:00','{\"firstname\":\"Connie\",\"lastname\":\"Doyle\",\"email\":\"conniedoyle1216@outlook.com\",\"contactnumber\":\"07810863152\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v0zIQK_yow0rtrrMUHho-9u&amp;gclid=Cj0KCQjwu7TCBhCYARIsAM_S3NiQgSEI6hZOvJNzYPsJ9_AM1DliVBjedv1u9PhnG_GO6X22Rqk0J0EaApJxEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6cehgi95I08ZeaG2fe7wT4Wr1T5Lmvx9UEQVQN6AvvLkociFqUNOjLCd5IqQAhl0Sdf7PvZ60D1EBtt29aeZzcJevkCrwNBYW6pzVQuijtX378933I1T5E8wlDfvQ3KZZFkXJeD5M6tB3w44DhMMgSjMmKI4IJB4IXoSkKazWjzNtNwIczmyb-OnQ_TtZ0lH34H3RD4AvYg2d6NkHSrO0O6NyB11Ep57crMSGNVPRruSe1qGQBmyyknuY2F0FbCI4m12Vd-Vd4uczpG4R2tIaL3zw17BAdTfE0pfVWLt2tlO0tyvj_UNNy4OjKjIKG5T1BL7OO4BTcmd9oM5ruAGuK7y4VSd5fqPrSFZkw6fWnzQ39pLOsBI8ZiEV8cXSswkD3dOwpU9hdvBXtyfOM9xFvmmWkWkrL5-tUTPoGJgVMcKh6S2TcAVdJUIyNv232E415Z7VMeHiqLZXtp7YoBrMoizvMFNxxOIjw0o4Za4lmBdcQ-3KqinQCT4rAAqS5cSM0tkQQpfCN_8-6eeOhb4Qh1ymNVt4tQPKHwIIeDdYlop2ZMZxR6_PngJm7Xan2Y5hxoTGERo7OFtP_HlSc1kHc4tReTyhNKbbyh-h1LibirG3LsDP7DjCec4QIj9_lK19pC4GzkGN4kh1qw-NAquleRNgEeNjTPgiGDZOF5l5Lh3QwuXyGoKT5gR-OnmEESt197UruysdorBOfwsbv2XE_ap_7GXb6nLrhx7TWmdGKscbPKYEE_nMS1h0Qq2gwtYRZHcLy02NePcsWjCMRFPQllCSmwrsAvRcoeS4HVBZor5JFuPfuKhB9sKM16IDmM9fNGcrcs5PdgbA4DLL4LnhEN3mT7PywYi8xDJK_alwk95tamOYERILFBYqfKypXrLWVVoVG3tWBhBSGgwsf3ak289Nf5jv24PJi9-kcOvHJO-d1P9lj4UCI6n4hKA0TGKlYMc3Hu8gJh9E7rct8vXsniAiSX9KaWnUqHGzmQ-ajLxJd7qFFnK56M599IbHAO_AEArAqFnTZ23rWP5EP_a4ld3_VjhfSnFX7z-kTtYC4kHbjpjQyxXYVR8QKIcXkqreHfXcKyCKpLtrLiuST1Fx4OpWdHBcWCcXGE_1XUrQvzEPZGM8AVeQM9ZbQn50jd0APWeJ69y8EGZdQqfbjkVZdgS7JVBb6BFCpwfBw-PmZPcuCVuLPmduZ3-442iyn-vCVThXGtlQMULo1bEIbOx2fztDnR8oE3uvgYpYnNZwNhirgvOajcsnZt4ErvhjpotDhbN0hm0K8o5ybqu4vc6bZZ7r3-Zza_nBt3CLxShIXNdC-JKFkEkwicvURECqAqzI2H1QNHslskRSG64EQ6XcEiN7QyijLboXlxrApPGvWHOCrmKRO6kgD9WLeVxPpWHSNl7C13Un5Vc-egNe_EkMhTuzXUdI928PbPp2jAjH6vQzEJ7YNV3Wd6-2lHwYolnfPF3mAOEJ4Eul25ciPjOaJtwE4SGAbU80Sty3-L-17jnMidEG0MU4Ow3AqjRXN3Au6bVm5wCdRTsZzTS9-tS2e1jAoFaki65jaVJD3Z0YFDK3ErBouj1s4mkC7qStVNiv9WVxuimFfmpfJLXUJDlMzcXVy3p6X21B1bVtpfadKCYVtByDn5bXNfXEbulfrhowed68BsF8QAnYYS7l4bVptqJWrDSa6MJtno2n7fT2WcXLF-t__onFeBfxl7ZU-3so42LmaPoHDWLKI550M_u2GnFCo1x7_0YPUSA2QaHIKhyC9Anga6J1rOp5kA-jXUjUHoRVe1SElIjvTdWTMXNAGBK8weBoOXOnjf9ApjwUhIetvNJuGJM4GO3HpdYGdaZVH8OCMrTAiojvQoCvDCIIFSG3ldsvhsI5gUW-c6oQGKg6YR-qXJOFJSVfKTuAaQ7f9slgzQXFqmLXk8gP4T58-TQYTLws-v1iaUjVuyAMElxGNHEtwgTKudnOn3PbxPnEHMUXwLCJI3mYnFHc58EbIJjR9nqGJ2PSJR-dFoSLx_Bll2EsHOBp6ZXjKGwbOb1IxYoAy9loBqlr3oE8GCSauCtEJ67jAxhKeLWT3DwdgL0nyfXcWVEIf7uyRM1yUW53xEqStN_QIBULkGPvV22GvXlS9dVgL5PjHbSJY0rjT9mCfvz0\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"6\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684db2b5224339-07331823','','','2025-06-14 17:35:00','2025-06-14 17:35:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43415',0,'cd-form-entry','',0),(43416,0,'2025-06-14 18:23:58','2025-06-14 18:23:58','{\"firstname\":\"Rosie\",\"lastname\":\"Collier\",\"email\":\"philandrosie@outlook.com\",\"contactnumber\":\"07718537078\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sf-MfkxxUspQHU2n43iEfMF&amp;gclid=EAIaIQobChMI2siu4sPxjQMVVpdQBh12XwWeEAAYAiAAEgJmuPD_BwE\",\"recaptcha_token\":\"03AFcWeA76KcJigYLcA0WmEMGnDownfx066LsypgMC5Pv9jjDv1hcw5Tj6coP-W8tiwv7JBiyLKyW-ztr62h23DW3_WuvetV58S1UECKpI9i91MAq4hA1jzqtXJNAvicgSKpcs0aTahPt6RvYqxYjIRsNNDrRNe6GDuV5qim0YLjW4y1Dcpg4LepfKDmmmbnQkx61MjlhNNYq7a7Zp-5w3AfrmS9s1nAyP9EboukmCHBw_dAepdl0b7wPvYqOkE3glITPH2PPfJc9i_1r953N5SNcLYJOOI_854fzstNkg6CP1oc_V6HTFm1WLrmafg-utx-S-A10MFiIKpS_ygEkwaDoGRTa-222Kwfh3xp0mzjvEHVyg0CsSL5s0h2IGsVSTePHlzO-Ttnk89vQcd_0MHQUXxxD-APZEQJXAGWjkUPRbFwkQJFFhczGrZ2pF-TtnVgDQFgf_DSH3IvbVV0QQhjj7Rvl3QUQmFInEUX9wYZnzzxOqb9umv86js9cp5a3CohTa2uP1jsvetcWTGIxALzTLNVN84FVw9EyXHX2XkzIcKnJP1G8y_nWGTnV0e9ucC8gAA6ma2noXpJuCK_HTVyeTGRtuURx0H19QP54Z2JK4qUpnK12HV2IiVt6OPUsfOHZIblAnsocrQ_IoO9FrIueW3NhVdIOcQlwdQ6xeWj2QANTj19b0cTnn8ZkW0nHzuBZ8_nLYFqP2WhFosY2D6-VmxzDbu5L77cZ9HMVGion1Es6CZIdLBXd_EIwrt5se8MpkrZT8shvQ3qsvRUwIWSrHIPTkmSgbaJinHxmYNHCgOI54BHATVod0opua0zfusQeqbj9QSp1cdZEskMmfUF3Mjm8Ijc-BEYhDPzjMRJKM6i8ODlJPJ27EeXqK4wArmL4GXEcbofQoW3wrG31omLlh9f8dkPDUoYBnFu31Wxc7q4C_RAN0bzzIEYVsbgYhukfg9DCwMHQkF7MZ0m5kINTyNoyP4ceE5rkp9wIHlT4OkxP2eriSeX9PiuqOPychshEnBpd1nyZnIZ7BhdSuwtAlFqwwryv35kMQXf-AjcNhVDotFm90rR98owGmHFKDlvYoVtaAmwqk1fJa4FsLvGTh9OiEyC9vzZNhv7LU0YJzdNGQiN1eAB0daSTPtlVvFBnvAX-19p9qi0zx6SNq2947fyESIsCtyQ9nG_eXxL8rfMgNtMVASU9adpYfD3Jz2KXJJaYct6Ukd1LTwPXKBzZvI7cForUvcYQhbhsJUMbgrltT6o52hmZOvfXwFJw9a_MJ7mBcl3X60Us8BIrvmry9hKIoFzwKVGl-OVlMm7Vvj2RJj74ATmbG_Ic_xZcC-qBuwtFKZLjm33oFetdWrxYQW6GSMQibuCwPUwz1L_2mJW7WYgXcOl57vwnn7p9746v1-FAqBb2CWom65xPTO5vkOlk3CM-z8htGIC8sZ1I7nodIPfftKoW7RzNwDLL6ODBmr8VgCzymIcTQXuyR8o7O7cmTVOAmsjjRCr3CpRSj9bwd3h022axWCBmSc5Zhu-ibTR1fa44ccXrAjf8opaLn5wxABZoHPOz6gCvCbKCs_JoF9-dN4XTdDk49tcVIS2a6GMNEZvv0EI-bTFKYOiRy7kOBcip18UHA3jaUNvf50tyYCY_XUzZB3YZrGJoFqilOxoFZEn3Pele2ZKKgfyRBvSwTsWK017pd_9o76La3Ks_b4_HEFJoEBizNpryUKpX-VUrFNpTtTIJFBHqgRzMs7RJkIZiKvKuvqhGdL4j2g_8THUJM3DEkkZ7QG_9AV0lePTLoglfDRTxE1s_WlupzPD7zrzBIshflsojZijzGrvIFcACJXzKa6xHM1Il8aCsYXaaTV_gnD8a5hLWcyEGjYBc2OQIJr8auf6VI6BiCDpPpXH_baGbXwicQhmMf6SylqVVZBgQ_wATKi1Z5VCuAba_f0fg45AyZdOJhk6_40gr53BBUAcWUwktRJM736_rIh1FlLRtwwN4kulqALhrjd9exV3cAVBtqOFpaj4Nhi_C4YLum4jpnxZfPVjiZq7BYPl4bf3F-\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684dbe24ba4939-26306554','','','2025-06-14 18:23:58','2025-06-14 18:23:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43416',0,'cd-form-entry','',0),(43417,0,'2025-06-15 01:34:16','2025-06-15 01:34:16','{\"firstname\":\"Joel\",\"lastname\":\"Amoako-Gyapong\",\"email\":\"Joel_279@hotmail.co.uk\",\"contactnumber\":\"07455926442\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMIhZSPjKTyjQMVUZZQBh1bqAU0EAAYAyAAEgJFtPD_BwE\",\"recaptcha_token\":\"03AFcWeA57q1rVvTF3qFqoi1GD8ROXUDBVug250SgW8MMKrMp-Tx87thl1QCE4o9Ih_2Trrv4oW27wPfYRNU3deofKxWH7PBjCo7HuaqaeGySU5Vehujabjlwo3m5BYwLCHdR_FxlnTblQ6nkNKJNA3HPh2TrlaHXIDXtyrjoEZU7xc19R6JdNy6E1Qx9Ep8VNUm4npwKLHrJwG81ZXBJ4RvRvvv0--gh454U0oeiL_uGdtpJ5KoLawpN8xSj0L99oZfJcrZCZjnP_N7PYv--J5_BdEJ-85rAvl3-cUELI880BT7nlDveXQE26ylHygekQdeQz43c73F0MMHXORuK3qFTzjhsxS54LkVkpuJbOzavWUj-zb-bdHcbQh-nXyE-if-K1yWtepubrGmIzu7LHh_YGrwLVFVfzgpTwCo6fFo6HP__C4eCoKpkp1K0ylkK7-aU1YajsPx4H8hhDBQJk-kdvJuMzjgGiiEafZ01ti2D7h7c_y07bpVki-X7fwz3l8T_ykn0RQDInLwCPPDL_AHcjx3zczTS8tspI1f1z6yDdFmhwCNuIgaAa7BJ9ev8EsbOyaKrAkb-uUp7mIbeDXIzuYrHxaSvS2Onrz4pQzwDHmzzlmLQt02qEhYxQzfr4EkJwqKkcVlIwHF-OmN4pviH1iFwL7--Pc4GikrhmwFzWn5NdjbPVl5wFhOKMhNGpLOLqvd0VVCxF6EmRafWN4ypAWy-b9SCuLE9Pv4MFA3RLnCrcMXx2UbxVVkZOy5hZl9dtSeD7mlfPKbFCLPYVFkJFibTMSNVeKpHdNY-pV9E-2JrqSgID2xj1SydEwBf91R5pkkwxmMt_ifzxV2tiVwt58eEFDB244aKWmJ9XMcur-XNS9dQyBfYhjQPLVv-o3flyleESiPZyna_hbjB1UWRlYzuZSM6C-3UDCFLDgNN9xCW7jUxOL8hoW_tX_a9r99lD3MGkD07xWZ4zbev779mowFocqhWXZUL5o-MbZe_yjOEH9JsTEz4rVN11CLFuTRcLaXdoFCBQsCcrXvJSaSVkKw0-DsCWL6OksXEvJ3gHaBvC9dXOZ9OZsa5vltttWgP5rKqGT8b34Yk3YeiIRJXf-geOuEqCtm3JHc6Tk65cJYWI4r8QgYdB7hWbGGhw4AVWq_DpwGuodzQzKugVDaUI1pX8NnPEH30BNJyhtOvLzPb6hfdB_ed9EB3mWhe6BfcKGTMSQCXVRPfiBd5MtLhOy9k9xjeVEy23__WZRuSXyeG11RYxjp9FFz4WiulohtWe1RRFPmj_o2ADvaF6jBGWPuXQ4aDledStDJMzGVgsT44kjf1nN1kj8UwD3BC52jr4uHuwbc-19kVQhXju8hX-14n7WlgmD8FAHYA9ZYRobwOtSOkgLTV7d_UL9bNEsSc5ikbab0KBS9jQLDPG8iio7-ErEfnifVu4cSdxK___gSrK6R1R6Xhq0G3LFVPBrGVpiKnZasJAPQhvfYRlaf6tKTKHR9c9KH2FP6mNLJuPbhsggUd-y-1ZLZ6kZ91xJD3a7pZ8Z3e4Wa-Vjj5hXcpMIJOKW-fWoqpn62XF-0R82Xoe4y8yHutNmkRsbU_B5kXbm7kTtmBMBFzIZOrjy93Yy9o60KXhjL8WKJ9GuGLdwkIGbrCMk9Di1-o_p8wOgqZjTbe98svPdvNBYVdsqNVSE8YEx1AGvnHdcplZe9fhogc7KDCB8v6kgqn-lgQb8PLWfR5tvtyqpKhoUPn4jJucr1fZuMSPYbAAICyiGzWEwASywlGLQVOBs9wOxHSsUA3Uz59tKtFvLvl9S-toDT28F198qfVT0iopE_EcDv-_gfP3nLstuRRcJzEFf84K7uX670mZ_RO5Co8d4YiMoYPP6HGfzwBcsc_77WDOvzRMvoS5f0GrMJiubvaocTeNudnxIddaH0zNeXa4iAxOMwAVBEFNkMM9EnlqMBS2vfUJ3jP7JpqB1AG15i-Nr2I7c_1B0AbJur2FzJVpIumWXhIfJ70UluOiS4gNWkcB9vWCsfeX86Z_h2P4HxSLGRQwrF5P6Ab76bqshj59kCdfhUOrel3ZmQ3FL66rFAdZ3WaCRwWxgVtrnTYdXf5_z5sr4_wp_DNDqBtMKLQ3nIOB9BMCm2Sn3_0kZ3nqh-2FX1I7N9w2Eo1IXIHVenCzDqFoTjdYIFTytM9kEqRRMTPAZ_wYTR8aGhfKutTVybaU13ts4J8llq0fMVeql7PgX7DfuzkA9cOrEGX8-INP7nmECUDgh39mSWsDmpCX1GJ-NmxL4334z8rQP_1U_2fPez6vUkG8BMme6sg1GyiiUyKCP0LkrVGUlnJaBhk4zBPu5gUvS-Efx8b8U00\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684e22f5072859-46160212','','','2025-06-15 01:34:16','2025-06-15 01:34:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43417',0,'cd-form-entry','',0),(43418,0,'2025-06-15 06:59:11','2025-06-15 06:59:11','{\"firstname\":\"Isaac\",\"lastname\":\"Del valle\",\"email\":\"isaacdelvalle3@gmai.com\",\"contactnumber\":\"5549516715\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy/\",\"recaptcha_token\":\"03AFcWeA7FRAbAwdg5WaaJ9JUdp1JIMf33YDM_eLcQbz-joIWeZULDvxSGeONDGMAH-t_53lgnmrLiaxx9QqfoOwhaydmrbEdqOOfH-8AnCifV3RuGL5GM-La8gRaUZyzHTTa6ZSf8pg0tJzK5cclsKAbFAA8yE7PgA03AfLAGUiCSn8xZ8AdtveK2l1Yt8CRsfUCS25OYlv6RxE4NHVV5kCijSZAZtWNsf9kfmwtjDQ999_qZlUrbd_NjnnkW6DuxiD2yOG3iNf861sBXM2a4BHsC1MkhG-XQAiteezuz7bvwZlAvbho1UGOhlZVDMt748LpJlqmCU3U9LQ-4dp3eAVmtRXz8YNZEAsDBPwHQNP8pnlC50S15xmDzfKfJ-EZySq6uz42sBQd5qDxBf-a7NqOPmphLaHozwEVEePhQNN70_297lpRRy365HSMoJO2dPKXRK3XekqeYKcN7refKr97H-Oiuiwp6Orz7eyOT_sJoy8_5P_Mqg1cvv3CWry_v4DxVwJ4INxxfDpUNIhoRg3JNxIA1MKm4aBNMGvRNscHDjM02k0JTGDTgRpBzqW3i-q9BD6wAsmG04p9XqHIXQeawfIYv3C7WaNtqSX-V5d-jrjEQ-3EHn_2hmoCuUbADUcGBm9y31yapZzKG_U1nfgWd_PJtnPYfcfBekcf_jqOC5OBVf47p5LZ1hufHT1ewTvkmaCanJkJHuDxhzOKC_30p__CT93qgD2iVtvxXxKbp15hpx1e8pHcvzcNkmI_p1sayq0LsT60iv49ceF6dvQM34U0lwKbzN08fZu02kcQuQOxh8rEpTmP0KJXGsaAPjT7P4PvxHfHCICmLxx4Ez7gZjZuPRS1gK3HVqugrljXqjgGGkM-IcUF5HJ9TOnpFS-5I-tWsx8MWu_v4V0qfdkPwdLVqB2qqPtM8_AwSjtyseGGLAUD7C4ronLIzPkbz7torwmKM1jXFVTGiVRA5OYYud58i4OPlok5MmcGEePGcTio8hG72WrLcDkPVVmAkL3mqhZgP58gdk_ESrlYPaaIPij4eYclGkEpRh6q3WhdRHAMgwPCtQkby9YoU8POA68lykPtGZMdKYQbqiIDCRWYSNo1loWBxxL_4ZoeSeAOh2ABsPGntDiiAUj9-nslNBeHNOk3Pkfzjfkvcr4T2YERK8XhKjGoJZHC8CLMpTNd4z5C9ZbMrlPTtj_sAU3YtSP5yoJBbl8xlSYfcy6t5ZxwU1tI94boQ3LxwISI3xGASG8ZazhkWTsI_D048sKE2_3Dho4ij-zmTMeOgfMDocCoX6WLYvYBNJfHFAdrOazjDhZxjcnQp5wYNx3UpcOtGHej71_deXCe3PBafYGLL0OCzmPPNheznktLiHZjT9yxfauBiChxEWi2LzV1_iLUWzjU-rAC67rRC6hjr3xPvoSLQLzg13Doknm7Wpac89Ky0roZr9SFfa4YxSf6MO4587XdSXU_X5eO2ppOA8ctA-ZGvn3pnemGRnmTpVGudDdGBMmEDXu88SxvEjyc8DAGLaIUncoe5Fvd5lQIhXckAfI3wzdFp7AJzHe1Zn-Z6ITK5GoxD0ur0oD1f1w6s5PH3JUVLL5_tPrnL5jhb_0qQMEvMceCI1JqPOJgNY40WYlzcoj2N6Z5lOG1b8mfRcdebKk4yWcG94DGGXEyEZVch4a0r3oHS21evNqqTf4QGMS3-zXCF4OmrTcFGml48QypqHbtRj5nGe1zOZdUE8TfUlSilKBUW3Poo4IpaCqFIQuC41ZAl1OgzEt7ynyYBwzCNz5Hx4_i1gc-hhzBoly62cpxgHJW3sNAM-Lq-SVgiyPl5QHL7t8QoCswKIdhlbgQmhqLzB6r-BF7Di1GjKRMlyo9ic48mjcTZotE_t00UJCNmC_pmlQL4Vmh9uPG0lnzdoAYsB4zvtk8xJLL3reSHTgPbc5EIj2Kex0fM5TMNpvEi6gL7TgUv6GqHwBnOxJDOfSd9Lux31wcdwsKnHyZ2TG0Q5bkhnatETSIDiQQ9LWgmqOw4XlmyU1As2XSrvduEG2iESeQ24BLsco9q35XYWY-wXqiGZmmu7p77YwZ8Kvqg2gtkrlFIWg6KZ-nTrC4k8k7OX-ck3K-aQC6FevsHCFPpMlL62sZbu_ecCsDxUejI7ntLA0CU2i9h4_z5XI_ZlwU9QjzFTSYn\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684e6f03cb5925-56569747','','','2025-06-15 06:59:11','2025-06-15 06:59:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43418',0,'cd-form-entry','',0),(43419,0,'2025-06-15 12:04:06','0000-00-00 00:00:00','{\"firstname\":\"shaima\",\"lastname\":\"al washahi\",\"email\":\"shimasalim59353@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39245\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/podiatrists/\",\"recaptcha_token\":\"03AFcWeA5osYvGTGaSMsYkt58dPmd52cUR-GVUn0mb2B6FsOMwkLMS6fxVQMNYor9DcEz5--NR1Hfgc-2uB3cInfncQsmsSWwRbjpGLnV0Vay_mtvZkhmUG2pqhMm1RVr5any4gcoOq4X9NDoNoCHu2e4rW6tDa68UZMLZD3I2qELapfOAhZCSsfIIwl25mzpjs9fNqnQchyN2o2L5JEIvSh2kVEH2qUIgxbwYLqIh86N_hY7wCOcBP8goHqNNOeuToIcdHqG8MoyiVdaoHxEccyCrh4CQArisQyl1oAIguKN8ck9Dv51Dm5n6lPxGmOo_c3EH-Bhj00Oo71xy5FAhTTYQEFM0IfPsr1tUAdU5xAKqlG6gTnyImlcG3sTiGPCcSAwPkJlMD9eVrBsX2ndyjuQjhFUVZ-_SH5du9wbQFpWLRtTONjcpU4vNpL7079Diw0dbh0qMTl5TWy0cEgyZpNsbuta_vlShm2kl2nbeNX5caswHNbW1iqEtYbjZWT6T1AlriMkKY4dWcJ4DNEDFOZxWjuJOHZVdsMMeuWGpo9MZAO73ENIfLfa5X9OQIVbahgbi-gclfbjbYDjG4-kZqDNXrdCbtEw0SX6nF6M-lb39ECq0x1zm6xfArqRL6FTss4gMnepxSUDKV7dnmkgWAPMJZ11SnVJNSc4PmuOdYv0UwC6GIgU1lTB1yuucktFbztAcMy1FwVN3EFg2IDenoTIaT6MoL1sJRSJ_0xHhFjzNCxMoq6XCsRiUG8SCEzr722RbcHQuyMI-axhvntuiFEStcIy9VXnSDxwiMFRb5LsWni3qDWZPNQi6koMP7CBkq6f147dKjz-zb8LY8bTyheflTDqpzxDdTsh2pG-2wAkq2w28YLzzdgvx2prmJKMxvKm9kXrYPYRHxG2x8X9GxBIT9tAyeIMc4NmD9zpRFM_8QRgT_3MNM8MGYeafWuiyDpAWtU7bgLVu3SEZn9GGBxAEFVqpUTdUQHE6xNcxaa0EpjbxOVtn_NARu6KM5jQmmoQiefeq5B5QkXXIwKSgKJnq5u_BChHayo3a1Jgqk7UPAv1A08SEIdxOGL6hojkeGBE4DHhNzsUXt2uLH-OeRB2nYMDScx6N8pWQuiwQk3meh55_1qlo8PKf1cjoc6QCYCJldp834r80inXup51dLxEvQ48LtABicqzbHOlJV6fL7BgeP88p-gUbofAE-apY2OP3ev09LSGXOMVGQ53_Y0FMVokYGaEfcImCoBYKNdu4CeuKRBLNmcDwklrnxBWhprCXdspJs1V2qASh2qFTNfJkRMzy9dtC0RVkR2-Vu_L2WUau7Pnta2qoRmkqbTfKUK8hlm1sRXC5i47DntiqsmCEiC0gIGvAeb4ohC0W7hZc3A7oPMmR_QMDXpx9R5uDpf6CDCHdQcK8KPiEFJ-teyNcFlB-fPFnpJCvJS-SD6rxS4jisFxpaYkgxaVp4hB4Z3EMwRQJ5tvTnz3zuFpSM4qY2jHb0kIcSH1o0HBBzOg-cGU6RRLIupx2Tf0i7SH1fbh5UCnlbJyxDubjY6twnFCS6as_1T4lieIuLWvB0x9Ev05rvr1SX-J3KmT3obBTZX8S9vGbC4RJ1fDIsEqUwrPHkdrnt2P_d_8CYHDri1FfemFOPXi6kV74tU9iLnVn8rzRLjO_-KdW8PviP1RZXnzbw9P_CovXP4oDjjcbRYoS-Ryi-69H09Wksq4pHA6NEmoUyRGv_t_jDlm9Jl1F_AUjh1UpHMkHjcAwmuJ-iI5aVF0CD8aL1OsPmx6JtmDMgXdsDQ9WcTATSM5c5716H7wjeLOkGktx2CZuyzOfwTDEVOW4HuktSl28yag_MFHCDw3dGwD7TK-xF4RVNYJYVncAsFoOF4immD2EFe5z5YXNAnnQMAyhsk4Ce__HH0b5SPRj4fUKxuN8rzYGEahF4Gjx47iXlOerypyCdt_bSE9tURse6DuafJvaTS73zBYIDBPpLYMmhJPdPypfp1Gq4Dt0ZqMhRG7XLuSs6Bct4-GneNup_VeRqYVxBQC6u9OZpDJfP7sNPT4j\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-684eb6b6aacee6-95851041','','','2025-06-15 12:04:06','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43419',0,'cd-form-entry','',0),(43421,0,'2025-06-16 08:48:19','2025-06-16 08:48:19','{\"firstname\":\"Kotryna\",\"lastname\":\"Kuosaite\",\"email\":\"kotrynakuosaite@gmail.com\",\"contactnumber\":\"07935467827\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA4I4gmfJv8w8xIuaT4GfhNC4Ec5HGy3VTJkxLYiQm6rx1vgfhQL0UCBf8pzJbxIhVSPOEx8A2iG8YLxp91MD6OLSWofN0y6YZXPddZ7dCpOLXA3Ke1EB3KDqcGWVKTDqQ1iKMBX70V5OrKG0jqNidVbzHCdJO1VRJumKUx8xBZZ8_cc94oWdaDzyTWJCOb5DOXWH28dGIbhR-HXH5gIaf2Y5ZuuU-tQTphlWIHpF0ypf4ei_J8h5zKALReF-qDR1A1xzODi2F9Iha55H2qv9GFskSC8ujG035ErYlcD-jNWDNrhMC-Sqou03LnBQI4xfjjHNKDlL2LILddOxCUxj46eJ89za07Pz4lEdriCu7Jxr-UdsHAmh7sB8m8C1Ipj7RaY8PfzJHrd3DmkpzMDawm3JwP3DHc_rGSB216KdbKGuVchOeOVnrWNgqo-yJtFTRW_hy7IkNsEaUQe8zGmvKlg_POyLh3rcpKAb9YQaJkQ_JK1amitXLsJWfowqciyTA_YDsRC-X82uQ7vhwCqLtWjJP3h4ThnIC4o4mdSTzG0rd20ZyizKWJO62ZY6-g9Rf3gkwDD4L_i0pGXbsVEmOPjzrMRPFYGR6mW5GGe0L1iPXfYI31N0PTNgBa0ollGcvbe95ObguxmCHdiplVVmMxPMinjg__fK_foJ9LcFcu31OJrRkrQV94jrwOF0kj0_RyJBoSGQOy8bmE9081nZTZAbPMtOivjoVsPVSwqiNztiK63s0h94wczHw8GdcB5a-wDQSqgPQG5m5mok9lBsu08xn9VLsnHtuB0yQg6i_PwgFNgPnVertfxXd1vZaoOErDJ7St0y6Abtve1BM00d9SdYlWlNoSFpLMYJ9KulZkeriHrThQKtMj0enESDU18iPjxc9Jk-uOnVRU9fh5J8s1DAf8j44gIaOpLWqeVjysb9Dc9s9YYNbKIDC8QtMAMTpQMFLTftSRfRbmPwyJ8TLFya_osu8njSrry8Ht0SRZzkDz1C4nNxlAgSpCFpebkktN62Zedos9u1C8U6uFac6u1WNlmQuU4eFeIUQFFfE1yZP8IV0dlyA2NRLycwnS2wzqIeR36pcG4CG0_G8tTt33IFVoc9okI1b38uui_XBUbiji4nioElRt3kQ4Rb6RCIf7TSyZKtF55Z-XlXWbHseVZfjnL6BLmxCL4sPzoQD2pIcj_qu8VdTw6Q5n4SK0Rkzw9zLDPZAAkQthHUBJq81m5HhJMAV2PXggIX_T3CE1HoEjxhbCYKrBzcm8f29zDEEwrtCn425yaKhZKDtq9ETZkkowE3DjeVeyp3c3Ys0XVrCOHhxQC3t2Z_Aq5LzUNZVL0kuIh4XkLZvwRkAY1uF1EnKQaaLHZQxmkRPJbNujVj5E0wszMkunbkjiKEhAByIJUgkRB09zg7uyI0nS4aGKyc7tMz0VwhJzETxMySfKnVW7AEZJ0MsUNAjSnHEjdLuNeEnq6KOXEIRXf2Ohw8U4UYvXy_cuKaRC283EDZd_5GfJd63ZRXzvGFeBFeotDMBFhrj6qj8_Bm2EwksAmt8QSx9Cd-9RFfRRTpkNv4NMZ9roL-NFwMdsdyXBpTYl78owcjvANylZw3d4RQLxcGVbf1o1nIWP4csWboXnO4gfngdWJQEwYsmqTA6WsVYFfUCRJRfplYbL1DZBQKgQ0rYodarDcnWivpcnmxJeKXffe1Ywnud9H3V4_XZppEb0dgmQeC6RXJ_tHJBpjgq-Xc-JTLCqbMVQOp9zJyoG3W-5qTNbV60pkyR5vJLQi4iT2A-ML24UspD5CUJ3R8mWbOfTgAQ0U2GfCydN1cCyYRgZzTGVYGhRMNunr2AzZZ4eZpQVuf5RXMeGsyTdk-c8J91sN3uWRW44IDijP5A6GStTBdkcsJMeAhYuI0dnaJbxwizYnworWAa4sC1yu1wzDWEWtJLkQlJzjSyQXDy2FApqyvh0DppBqF8k1V580QZweTAZ5Idinc8XPWWHyiL42Mxs3jDt6MaOlAPpjJ4rmrMAFYwFE3awCZhem_uuG5sc1E5tBPRXB_J7WA1xFt8uaZzm4tkigSu041O2tYA3pu0lW_5LC339nAUdvlSqWanbGjq1rTVzzADGL8PBqpCgGx24UNrbJIbUX9toF_EGNPV0hizNP5T5gn_8jXoI7Hcm8yVGVCm4JJdNwV2YbPMp38Vv_amh9H2ks5QnvY9VkmTcGANBAz6rg_TBMfZcwE3O0RuB3Stzupqu4x4TZsl_grgmtyQg6yGmMYZ8FcA8xtyVSxcE9Dd0NBkmWACeaxwL9JhMUBLXjLxpUZYTuwE8clbnrXeNu5g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684fda38b29a27-57411421','','','2025-06-16 08:48:19','2025-06-16 08:48:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43421',0,'cd-form-entry','',0),(43422,0,'2025-06-16 10:19:25','2025-06-16 10:19:25','{\"firstname\":\"jo\",\"lastname\":\"kerrigan\",\"email\":\"jkerrigan@hotmail.co.uk\",\"contactnumber\":\"07907566577\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMIhsqm79r1jQMVAJpQBh14ZBi_EAAYASAAEgK5D_D_BwE\",\"recaptcha_token\":\"03AFcWeA71_6eWogpyh6IkV85p2j-L6KBDC2YTq-S_vFNvKKHjZ_uhcl6TU85_o0zSHNZW_wvuqpxkMFboVpfb5jgk0CsHYv4SkWjqcf_45GZEBhiionYe6VaIzVIKl-8vNQLkCK9qArEQbyIw6p7NA7GQADpeJd-sXF7l2O7rND-PTIGkY5rENopgiYCyM6tO44xB4HvQ5kprBiQ6yCE-ELOFddf35MoLbd17zK_DOC1O3zmrVCxSe3r9zq25z2Wnj4_aP6yJj0J3mqwSghT7NqKQ6_t68GrqGT7RAW9CHeE7ZA2u6bcHL2pv0VyQ62Vqs0i5TrbAa6V8loUzmaMz74x-D-wMXRrHOeuw3E2Rae757iL74DLdcCyC-705vIFKdTRbO9xyJxxTx3pHv-fbFiSsQi-AjUdCg0x5_kr4w2tr3ZdbbXFqWPf1pkXZ8xy3cNUJLt428lSkU_1eLhxXgdtPge1pvV9EXayQhufKwryhrPtOpr6qBgFQFyPSy7yZ6DAIOaMRNst-cj4auGQqeLzGYBmiTc7hYYvPne0uOStpwAFUgtbrvYCFTnbO2aV84odAJR7l9iIYI9x0LKVqDucCIY2QQzM-25J3UR_1l8I10QRSkJXMIi-dsydddbkC-Cn0aGcSu8EqvVaolLeN4TARmRI9yZJaNLptzcwhqzuJOdyUPnjVAcJllrW3Z6Lyt9hVNhDbtQAfDySDpZS6AQbE70hqitzcs98ewrHwh4nU0VuoR04Dd4XB_gZ81KjienaZS46EsZMoziBbBh94S78TQBNAK5zK7du534KZwVB7LZvbvN62_FtbVkI_r9MgLbkqpKAR8kY2tmYObSF-QFtoffqug0-p61EXa0Ney7W4M0YEfZgggHsaIM9bj3KxczhMJUIdlYORfRK-SXcu-yTaf5f9cPIYqZjDGDtIbVb-3mwWRH9PzEqsbMUSWn0Itu7VEq2nnFE_PoGYejLBeOTgHQ8UL4oOCR2803xSHvLtlwTJKBUuUTltvcYCJP0bdnjUPDvDnDnMH0o1kRCN6d5TcMtGFYKkLLPHHH8Z3dnaX-krdPvbh4Kp_rYmYtqLdBTLtevzXnlmjtaNXPrrDDGb-2a5aBXI7XNx9rfuJkwe7W9pzFTNZ3R8siJvzcOfJCPcONxnS0vYCo2Q8Kv8udUsfftgPqI8yQNsY8L2KFR-OoBA3Rs3fjkY6-mi8FrsXKUiVIdPjqsqfT9UDew96dcZbfJIqIqM-_Sz2pYfUpNVG398yHQKSVxxWy_jHpmywikIiNQCreLuMsw9WccZLSZrruk3wF6mzWJHcmIANV-GKr2sqplrYQzfFwNhQhvzEPElsGgSz-MLDKkkpQOYHd2zkamX5elF88FjUNba5RXCeqDopUDpnOxy3Zj-mO3f9d7VpE9QlAICpaJ3tygQrTFW8GsIgYrJYiqr1mdlbbkKs8egswNOnXPs0TMSltbmhXebfMkqYbhVACnAN5K-tvXpDIr8RY4bO1AkZ_kDNY2Xc-TAOlzvWRQyHqdN6-iWYT5UtcstyTm2c798JohoCsGRolM2bkAB9N_XBZuDkT8coNJ3QaMbNtQkGap-6wp8_Ko1Y-7gIAGGTUxc1Tux2B64wcjAWSHVG_ycKJBNIcmOQKxV3MnVh7hbWZOJrFZmEoQ1cXOf1Fwov1plXgJ1MAbvgGIbcBTyJ7SiDY83N-Q35hxanbCdEtK-TK3F2KbPnY6wkQFjg601S4BMiIDjcnB_aMBNDmUs1vh8XQrXhLDDk8ul-LvHXWovEYquPmS_5aJ99BBDPw-r5CtAuT8R4YsvPcyeDKjr-q4QQXjN_vjGGc4zeEZ7XIP6mQFGmTQxZu-FCAS_kZvLXiS-6Umdl83A0dvnv0aw_S8dJVxrWgPbz6EL2OqfY0ogxR3VOUWB4QCNZJcZPpuRkIpUrrAcOCKi4COeyRp7UmWzmROUllmKmql5i0hkANc1bbLgFma78QLtwuFSeILuOXEHHY-V_vKaDKEgubnQEALVnIJetpjmnRfdSEgigqD1uumtQ8kGhiyllVOFkZC2\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684fef9cb1bce3-98228827','','','2025-06-16 10:19:25','2025-06-16 10:19:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43422',0,'cd-form-entry','',0),(43424,0,'2025-06-16 10:20:24','2025-06-16 10:20:24','{\"email\":\"jkerrigan@hotmail.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"mk451hw\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMIhsqm79r1jQMVAJpQBh14ZBi_EAAYASAAEgK5D_D_BwE\",\"recaptcha_token\":\"03AFcWeA6zQHQ0OxMV1G2uqQcSd4q7IfReA5MX7t9CWmw_OPYqdvCtI6uckwg9AXdlUYeX6aqcbN_Eliae_lMLvTATD3FbX56g2Z-w8G-fOn0-BvFwlVmDJKNiiMIu7TRB9Ka50AFTn4lLNw7d7roaxdPq36BtQ5HkrWbQwHn2UazhDG8_8Hbw9hKL3vmiPWoF5oT9S0Gjb0iTV9fUEo7L-DpyYyNZtP4VlMd1NCriajJFhIt233bmsfeiQoDLl1lYyZMCyP-b7AET_JH2vzxMHWg2ySxFf2fuCAXGK9WAZAv36QCrT-a0ZJfhJP6Dkgw_akQMCZV04BPVHeEPcswJrUu7Q8Cc5LOTybXXoawtIiLu6qIyTojXuuztkUxtskyQFasBCMPhYBlOmGrj9OQuRA-WadmG6LL0l400GCj1F-w22XY8eV1UWqFd7E2xRNG-TZIE6cK5kB3NFZ9luXvadNvQ3U1ZWmMdw4r_yioAyRLPAvHMXWP8hVaEESsMT2GOwi8w3ls4zi1H0MVgD8Hbvi_lc1xfBvwm1qSMAnMz5i-4n_ivRghi1kuDPyQjmsD7r5gD9ROB-9ktqLjcLZO-3iTA_yzzpeV0UXOsdYVkVj4GDqcOMdFqwrbu6Ry0VnvziXxkCKuEE7E0J0mGwOY9bVaLtqf3MndqCweXzgiUoHCNy6ftiryXNWjlgRFnsI21a06Cgg4BJcJkwv9KHmnZuY9dPPnqK7pscoYZ8Ws7XSw0vZHJXJF0ZmHa5U0zB_KxiA83j9XgmlUBrMBNTaiMT9ivtz6YgFiII6GymnvmNxpA6x9TAwWIHtlgOGKY-cJ3UHg5RiMdosl3y-r-RBiR-xKvm4WjjIUGulNYn7WIwEBthPx16r4Ev-2lDQg6sBInt5JXAFeORe70XqhV1Kx0vVcxXYS9LPYTvz7UFUx-E1ffcUAc3nU5dtiyxZRdmUj1mc9ULc0jSlHGQBGeYUUCmh79_FKveS926h5CNv1T9xgcoEL8NoX1holM2u1VUmZblNZL7ITHVUA23OR9sfc--blv4kICCJB1Hta8yNG2KvKDzMzm7eowqHb8XrBhtZ_ZZNexkIl3R5KtzL5CJ1pG7pQMh-kx3u_ZldMGo1MOQbFDSmAgzYlJr_yKrokFB_2_OffiA4bSJgrN-KIiueIOyzvpXdWfWlTP_asiNE1DsQ3CgXvwASAIJxfQlBmLxJxm7eCioYZ8tFAkFLKGin6X2ku8tJZY-bL7AtB54Vxp9l8I78FsXGtm1ba3xxwxp_6rmK4YYD_2mhaHpk5DkQbt5KIWV6qkQoZuDGiqgXH35DEgtzcot2iqFy_WEqo1xLoixP0c0Es6IbAUyE77YgDnoUSwKT5emGaBsU9H0mz1kYvvFLvdktdjX0k8y0VVO26RIZFZKWEB8JnyhnzhavdCZQyvETjUAyoPrOF8qh8hBmMToHAMYd45N66M5szAAUW46ecujdjYPwfL9reMhtc6kcaItEcESCpLWOFA7u5iKpotxxzMmRyJSXd4tcrTmM9V54OSx20ZBIaDbcd08AgYAVucZd22NppsAGEnEUr6giQRikHOBpjPGj9cir8iCoNm-nKcwNMhkReydBvNHLu6Jwvb-u3F_k3NjuqFI0hh-2YHmxQtMJrLbIz7Txu-VFUAKrgzbJI-0dRse5GhMqWHm6QJuQ4p8TjJUJR_eb7tBTzQh1zHtHuTMBJOZ2jSu6Z-WV65AViyNTEMzkrXz9F3GPdOunG8UYwL5KztyLS_hjRwUCJEXwUuTAt0YLkvVrcnyknHIH5dINgr-SYd-fk2UoJiZ02igDYVW6iWTKGGgELj9U0FZVPAM0J1FPpHV-49VOTp8fNunEKDkKKZWETjmYlV-dqp4VaouLcNDWoX2JSAlFRKoYzT7GC9EiL78h_I-r4YxZfPJUSBIO3dV9bsAoVpUIwUr5_-HhjrAP6SzdLidtRUwIs7nhQQOHX5WUgyRtWeambwPzpCWkBE1REHj4xDlHfeoUEPtBATg1iZFx4h_b7fkg6Xn0SIUiApR5c650_hSUcELU4FCxHzlXM2ufXVD8NgYl5WUA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-684fefcfce0f55-85954196','','','2025-06-16 10:20:24','2025-06-16 10:20:24','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43424',0,'cd-form-entry','',0),(43425,18,'2025-06-16 12:13:05','2025-06-16 12:13:05','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-16 12:13:05','2025-06-16 12:13:05','',43389,'https://biomechanicseducation.com/?p=43425',0,'revision','',0),(43426,18,'2025-06-16 12:14:33','2025-06-16 12:14:33','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-16 12:14:33','2025-06-16 12:14:33','',43389,'https://biomechanicseducation.com/?p=43426',0,'revision','',0),(43427,18,'2025-06-16 13:21:52','2025-06-16 13:21:52','','DSC_6118','','inherit','closed','closed','','dsc_6118','','','2025-06-16 13:21:52','2025-06-16 13:21:52','',43389,'https://biomechanicseducation.com/wp-content/uploads/2025/06/DSC_6118.jpg',0,'attachment','image/jpeg',0),(43428,18,'2025-06-16 13:23:33','2025-06-16 13:23:33','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-16 13:23:33','2025-06-16 13:23:33','',43389,'https://biomechanicseducation.com/?p=43428',0,'revision','',0),(43429,18,'2025-06-16 14:40:35','2025-06-16 14:40:35','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-16 14:40:35','2025-06-16 14:40:35','',43389,'https://biomechanicseducation.com/?p=43429',0,'revision','',0),(43430,18,'2025-06-16 14:41:50','2025-06-16 14:41:50','','Elevate referral page','','inherit','closed','closed','','43389-autosave-v1','','','2025-06-16 14:41:50','2025-06-16 14:41:50','',43389,'https://biomechanicseducation.com/?p=43430',0,'revision','',0),(43431,0,'2025-06-16 15:02:58','2025-06-16 15:02:58','{\"firstname\":\"Ellie\",\"lastname\":\"Test\",\"email\":\"elevate2025testbe@maildrop.cc\",\"contactnumber\":\"01827261718\",\"pageid\":\"43389\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/elevate-referral-page/\",\"recaptcha_token\":\"03AFcWeA6rjF0Z9mQIp1ghxmiI7TTrEtZ9cBk6Gdivj8125AeMvi35eUU4Ghxe9D0kcqMu1BIpxuiaMXUIZaoHVRBldvq-E7OA47jo0nPQLkCw9XGq4oLu90dx7hLODhhIUb0nsuQiSbH78abJ-Q5fc0rMAn5j7Ux0HKtuMyzfI3vhvk75JkbZ5vKTZlOeijiH6asmGMPUJsb8AP1LZA6-6eKEw_YectYW-PfHkqb5T7heMwdB0Hb6QVzJ-nnKe-7KHjyne8Kk7CMJ7lRCSYJSsnUQ_VGcxFX93vfJp9ccvOk7JSsZRrPmM83D8lRHlJCDcizvnl9dn1GWXOA1kA5tUiYeJXtkFvm2SsbbsO-bhveLw1KbXZX0wEuKb0rpuDLITqeIidOYgWd-FsLdG-PEmL6XsAV4MPq8qJp5yQJBgD_LAua8Wje7Srla9SNgKPe4QnFCopLA-JjHKRZuKpjnbLuATXWIKjbgrFIVTYmRVCoAIn2fnku5US9nSuC2KQ123HOJgzIaNdFK7JPocGXeHxY0JyZbF1w-kdyU1kfe4yW2tFF77pb7vDCS8bFo5wzbjEQRLk7CRxHzh7v-oB0QnUORBYipPdRpgip-oaeiNYsvJ2iq8VncL3y-Ms2PkB1Hrae3_LEfCA_FQ9M9tNBInIVaZwQFiscD48oly61prVNU8rqUNb8pDukPEUe7XN2XAZywYj5ecHaOIsgPT4iv_nvc_NfrNmsLAyLP5ID_KV9FrqR073OnLANzkHjKNXD3Nu9f6WPyinUXD_Kw0ZKh8Z40xaR1P78A6Gthe3EP3mKJOhEAWZQelvVPCPG4w_lz_uwA_IjtGHoAvGiGnYL82uaX7LsoFGZ3d2qpzno8dtbHhnMHZHRePMP3fOqlg8Zwcod9T_xw9xbiB9Ij0qQyNNW9i3khctDU6CZ4j-maiBrE9fkGXsfe2R5eLUpM7TBijAk5tpOvVn0eki2pKCRPUNMZxpHqkt2A6dX0bmVRmi-56bQ95KlSKB_jJzFzqCaQ6gYgaM4nmM5eTMnTr2DoJi9F_v1DIU-1QRyZmxBLKmlLLoYWWjaXmw3ef-IXV37xKgzS0NJ_kUMPh3Y6NTbqVGmhFWZs22psDWjczjnpBct9F2doOpnqJ1OdNy8CQklJSL9GQ1eilEnLcM6rY2f90gg08m4UPH-qHfQho_TStrnFx4u68ZIAYZTzfXBq-5-QNUkcEpnGqGFAHXclKOLyK_pRW_hJQTNJfwbtqzLE8zhirpSjmZ20nGQgw2QcyVkOgyEvyTEkYuJkxqwCv0FAlyfFoANRamgdd9kBurKVrP8mAkrs7hyPfZYjGH6pwk7aeMMaL9VsoYFZPBNtm1wTIQmnZyQhTG-ddbpsPoV8aqwchAG0jazAcS80fUS_QW6PdT9lAcfSepkvX12H0JRfGwuD_xANagPvzrM7sF5BG5B4p0EhWKSVI7bxKEFK5oAuROtC9SdZqlbpTpUpCHOy6VOweqbOVV_T5HezBysami74o1W3KwaYT6wV7W39Wb2K_thzFwq1fnoaY6e6N5XKmtCUnkiZAFqGznM5LVrzZdEw0xvpY6v4PccpCcZv8aqBLj4CwXtUh_fFBFnfHhsi6Vi2IqumVEyd6WuahY7j38MJ41tNd-6RWmYolZaGQJ61CGhoTNTs9pxjCy4jCGQ2QF1lOBRYDiKTCywRwyaDZW_3nCVbMbCw8k2pZSDmcEqfR-No1L_XeHOygUPt7J-0r_3-jZXf3WautAas8pl1sCMZXa1qW0sRK8Iw_EeKFpUfIz3Ba-SB7WucOBtIvXWdkCrN9wQ3F55IWod-G2SfAUC40H_GnySCOkJ6PwQOAJxvvnIWOXoTbFViuyEL_wC94zy7SBKaEfotujF0TmtyTQ1OIpLIb84b3mn5YDzq8JQi2pfLKc4_40c9F0Ngx_leZx1f8cYGMyM8odwb-bTf_xCpoQrEq9U5M1RlbZP3eLBhAQICbMRI-WKmA2yJ7o1PUPLGIRi5P8VRsTmqZz7WITlT3ztyM2Ebv7KDfTte4t04URqFf0ZzlAM_dxwsq1D7FFLoW7ry99qW5658URniJdE1nmZ3IIAwKQZUGaw91ZngCA8-5xmh9eTr-rnTdn4Z-LEVzMtYzbUxI68zcCZdg9NlzOrRSYVCV1u-9nvdxpP3HRG1toNSwk4XDXbQSwWlS3OTZFRdvfByaWVf85eLGUwmk9m1iuaFCaPSUV0F-Ln7aSWsJk_deb38yganqHBRdytVXW6G2371xLitPDaO7dA_aGIUk2hCMgKfLzx2PLq2b5vM8OKhQxRx\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68503218b68d42-06437314','','','2025-06-16 15:02:58','2025-06-16 15:02:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43431',0,'cd-form-entry','',0),(43432,18,'2025-06-16 15:06:19','2025-06-16 15:06:19','','Elevate referral page','','inherit','closed','closed','','43389-revision-v1','','','2025-06-16 15:06:19','2025-06-16 15:06:19','',43389,'https://biomechanicseducation.com/?p=43432',0,'revision','',0),(43433,0,'2025-06-16 15:15:40','2025-06-16 15:15:40','{\"firstname\":\"Mike\",\"lastname\":\"Longrigg\",\"email\":\"mlongrigg@aol.com\",\"contactnumber\":\"07769902666\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwgb_CBhBMEiwA0p3oOK6AK0MhyC34xkLDyXDhrVEWKQqP_1LUBmjyUVlvVftcHDCJaICvnxoCaUwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6oBpknbUnPqkOdKobM3Pw0z2dpcDHDr1F2ph1pbRfnK0SCnpVi-1Is4MaMAMN8rapgFIaqG63Ezpiy5zr04YBqCVikQKpTcSkUAeKtMqpGeKwN7-3ffystlGnPMxt2-4jnCy1X3TJvPdtwTYdV2cTDwqRDcPQMCMJxGCzBhZLHubVWLiX4jdNMzot9lVNnpNIrzNC0m4fw5KK9lnMt1qv7caNgc8dDHg1JqgIKbcyZamNTzn9Qs9s2s6FFG5-LJapdorBqMyRiKTecn6fQCGhfiJOuidZRsEcx3OE8-tEXeZjoRGzYyLjrIvrftjl4z50duHM_I-Ut0FytF_XE2iA5y0CaZWkXCfCZjvyBbKDR3cqsQidMVGU51IDRs6n3T3TfsmgJXapxK7Rxi53Zl5xjeaGK28nsTxv3zKtSnic1llPNWN-AmeLLcmfXD23aamP8Im_-VTaC-pk3mQGRckWD0cySIjG98Y5pc4Aau58hvcWQ1n0jEs7PPPJR_Q-t7NYcz-6CsS64ZLEpMDQjGysXhmFG_JEYVr9WSP53kvHHzR14bIMJ0ilUnL7XKViX6OifcKkzqljpwr8ot7nzc7mtj2hKxxj9C2QYhhDoNEGXwil9qquwy8WEE_GfoxfDLnypPH_HuhBdod_ZZodbilrnSWMKCzLP0U-Uf9y9LF3QOJSb1Af0T1ISD62S_Ze46goNprlTENcXd-t0BhGu61FNtAwkrb6w4_ONis4FigFcT8pS6FceMF9S8UggpScce5u11E_Uk3cQvaNX7KrYQTtL4SpTIEIdQAqotm5bqbGYiGbTLoQRUczne_I6N3nFowcHUzDqV1QgqbdOfN884cgUjSjhXAUj00XB_oNaldYz5Ro4A3Yem2ZVvfPDMztk_dipfxuOA8Vrb101hiX7QErZfEjCUlFWoGZ3wY8b-6CHxXpXnmo3yMoJAL1gIxEUO8EXMrAWxP5qCtZxtA8Tjr8-8gBSjNeW-upzmTz9yBQ4I2wTSAC1PnMUpZd1mjS2cTbL76Cu4xy6fjR8pQoU66qNkOvX4FXICdZxdZABhp5zs6Xthb1IG-rG71dq6auOgQwC7KN7Rz45d64AvXTsUL3OEgMasv0GVaqp16RpAcn3nFSM12KIbvsaYduIj5zJiwMtL3350SSUjk9S22IP0UbsL844oeqwuEHLO1vl2lfe6Lv0YDWIb4hDGga7mEGkVF4eE2FZqtzn0eJGX9mRHYcq_iLKLTZK9MABlI_wQ06mH_IWYtW2Vzcoo21K6BOmJA0Rvk_1u1MTCTss6aikbi0X9qQPLG0LSsk1_wDmgW7C9Rn_MWlGfqI-6tJKVEaSKh66kLj-oyYF86fOGBoH6EvRvdZP7_6EjIn6TTM71c8fFAx_OTfbeED_VIZDmvFBIPSeCg1HpWo5yE4V1bnfe7PDCf_1kjxSh-aJgNLbGR6cTJw5unnAGRvpSbxyLpYT-0yACdZRbUJZSd8ArOhq4zN_jko9dz3FeD9uWqkjrlTbtrnsGvQXieyokXVckxYDtEkEN182V-R-uySFx9kko7ye6W-auMLY1uOLzD6QofVn0Z31wvjrvYkCNtDuKavzwUy-iXpEYE-qQCnAXIYTi1ilz8ShpQunr-fO7tIPsMvy8HYwCkjXCO1tJNcrVGOXFgCJv7ycau5X1x9QXfy-YiDxbqtPYhRfLu-PGFZDM48NhdAiBl_mDfie0KfcWAbxA6cqJHE2ld8yDoRVYRFj-vOoAMPubteSp_nsWXgAckF6wrh0fkNskZcaDKB_gStMklwHMwTg0LXVElPosxclu5tZaF8TSQ2zF-oiiS7rluHdOqkg4lskm533DIE9yr5fDshfRWtVt5ZFOzL5Dw-33vS-UE5-WLeM1M7VJ8wI740U-lCYZwla83CCW02bG2_AaP43EaWgfNyF0BtTVdQbEYQaKmGe6cOjn1MFbqycTec49c9XgP5W72QmHXe0WDjiOEHqB0EM3KaWftVEIGmO_xLApHQVt8oelyupGsIGOHeSx6MQbBhYHscZZUbxTktXq3nZYte04Z27dVH0Vpofzq-yyvJjBHNusjxF8LNKdGmSvu47onVwb_w824CaaGipaIohkXINCxttk1ErT2Y2tElJxSahE1LHYylgEjT6gc5fecB46CI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6850350bf15296-31161022','','','2025-06-16 15:15:40','2025-06-16 15:15:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43433',0,'cd-form-entry','',0),(43434,0,'2025-06-16 15:18:02','2025-06-16 15:18:02','{\"firstname\":\"Martin\",\"lastname\":\"Cherrie\",\"email\":\"mcherrie@live.com\",\"contactnumber\":\"07805972064\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwgb_CBhBMEiwA0p3oOPP7hV8j9Sl633DmqoobQ7TYRCTu1PIjXyXvu5xXs__nrZSb6WUL_BoC-nsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6sfqwC2C0ZmCv5z5pZgbOgzH0mUaLVwOjYsBxAtjZpRBYHklxdNRqwSTYKugMo02Q5eGu4V2JZ04GREusOJprWKWf-PvHA44btPrQWeRreRIGYF_kdY9TiSizR4fMLExwSjRhaRqyOqve5PEw2UFqH8sJCUXclzjwQKzLZLMOKdmOt_9_YczK2nOz3FayL28vAjBHsaECCtXjymnjr4pJ4Ji9qhiJPzJSouzsNkEsOLP22d8u9gmZksN-CFJcjH9Mq6sjSqq6XE6SQ30djOr8W7YxtgbNnZ4K8GcDWRqiyzKnCnlB__MteKFeEbfIPu21GHVqzrtuwcW82DH_RP6CysMPGfUmbp7gI1EUrY1yXWaU-hsdckyibbuK5zQxb1GJ3Gl7_nVZAx_vpiteW6_KWAAQn8M9BzrpqsKoEdLnmcwW8lhbwA4pwiYe7BGMbYzHrejzKUV4vNLL-draWdinjFbO7TkZu6PG76QXwbylr84WMHe_xBiVYQRJqO92maP18-TdWTnUdR8pq7ocW6RxfinKNlU2PW1h8XC5IDPraYZs_CBHbD03-QdEX-FmBBtgo-baXkNGO47bKCdkWv4iv0Dqyx8BK8hZEjifYUtCgxgmoV3ArMNRT4oZaN1m97JHh20O4f787-vIOYrtetdujhLHPVYO-X2pWx4ebcRrxd5DQ0NRDumi1gGiunq3Qc1nBFw07-9CHf5Cat1pJd9eDEw-g8XocMcQVrN7613Nl9rfedy9_3yBEFiAYUXC3y2KoUIZMME_lz8b9-BVTSjH3XWqz0MdmVVdxFQJD8oTBJa1jDajnJ_OZ8evPNMkUhfw9GnJ_cfgWgwnzwgvQ-8b3oTlCh_6V5Q0RHeYmGhK8OJ_tBqhg8urhr5QOKr9doqVhShuJy8FeVECJ2JKa-_ZVeaGuqhSTe8s6bP4NvAWpkXG4qukojIMcUrsx5276ucYMyRES9Suq8uQZBmhOA0j7il7nooQNWPGCU6eUI6PjBjf-DGu9lRNF1g8U6hLc_pG8vOt05dbj11o_pAqt0yTjk_c-hqJi8DxbnKEz3HscXBpfK5rW3ugkkdqEdHJAJ-xI_ZtZti8z8iLZD48PqMIjHf759wGxWfPKiz5OmCXV8vxSTf8eh0a_yCbOEtCiinsYBvsfzNcAJi_jkhb8f2XwcU7_0sxvlmB4FvdMBXTgbnJdt5PfQx_dKX_e3BA03-d7-K3iWlcS2o7lQ2RdyKQ2mLIJqrvBOdQ0ZRg93-wFRMjCw0aMjw8Xu_1FIK9ZoLgriP3zxLeUOOCSiADXp-CTbK-A7Aep9XMPe-egmqSp0KhtwRKCg9Mstc9SyzAAoq36gtSVcJo4RIIwgZCA8JlEXrzdEnx4sD3vfTrR41lXzw96bAIzDwpvBaEM6LXz32H9VbELjZRXk4HaZwxpmg1A6CJWGfV-3_nZ0gKVCQPCgnS5fhOIaQWrTqQHVZB0YpMiXxSnR2bcPS5zBMJLVN5VlxcFl1ZAyZsYR6dtZPiZnxlHWR2m8e1CmxBVElFYJ84X9DYlQ3048FVKPsTC-W70cMEhX24i7gfNdGwvccM9HgGpBAHBE4VSy0h4d4A8HwZ99K44fnEKWoWmDckaWbXZhqK1y9soxsOOQBx2QnkT9xJzy3xwqKPK_eI74Wp8dCjarITD6jshkcbGByuFsrFZVhXGdjMR8ircRmzekQsgxLOGxx4m3VawfX0NM0AtsvMc-VYlcbuQNvQxb2OqXXjUL3_4InGGyIiCYmKjGp6YcbEY5xRal60KttN6RhkPof1uE5_9WIGyqtMJpToPRyhVOiCpgBYprWZTbOoSJ-hD9Mm7LocR0UFl4RS5-ov9Zz9YGGKDPCI3bfI4_bsQo8eSkLvEP1ZUL8NPFM5HoRJNGslWvih_XDWmI48yFbnqVmkdatUeQ2GoMl0G85LZ_X5rgP0W4ec_0oD-VMXAibwlwTIZBKmiOCYGvGDww1db7qnkBDtynBCQjnT3ph6Og_2cAzjnvLLqbkZwzrLKgPzcptPhjRWpz0NjCiJlwgT-hEiE2Q7QAlIubMml4ZtKN-1y6UzXSaIQaGcjVwJxs7qdHZid8dc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685035827169d4-83151878','','','2025-06-16 15:18:02','2025-06-16 15:18:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43434',0,'cd-form-entry','',0),(43435,0,'2025-06-16 15:23:02','0000-00-00 00:00:00','{\"firstname\":\"Martin\",\"lastname\":\"Cherrie\",\"email\":\"mcherrie@live.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwgb_CBhBMEiwA0p3oOPP7hV8j9Sl633DmqoobQ7TYRCTu1PIjXyXvu5xXs__nrZSb6WUL_BoC-nsQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA78m0DScC6OeeJhOw-Dc_qP9qOWc6n0y_OdqyQ8tA0d61Tpu7fkRzvlnbskdJi7qnmoTNCsP5qNC-mitwMODwXv58Gfo3VsdQHW90cE6RhRz-yWnMdnAAqYICnQEdDe_OieavANzBrgrlXi5ASLwNSAgNkSxBbecQSbYGbtbnl9C8LGm87Ch_JTBoo2Rok_oSpDRRYzfnqmdj038hSmivz1ovEB-tiIfPW63NtTvCwOQNEKEUE2avBH1yDrW6p6XiJBcfDRZvig7xXY6Mc7qxhNJp_HF3vLhikl5cZToyOaipf0Y3kOKXmeVeHkd53y5eVjX53_xRqs74VKEV9wk-KTq8zibREWZcRq-7-X_B6-b_Q1ImgtjO8u4oifkeTO7HryAPy48c5furnbTZY6dR4YnzDNtkld7CIgtaaKzZaCF92MqEj5jjaiKfQPls3HA-MVRHf0pnBBUisy_wHgRYWPpR9PmAiIpWuYhLLLcg7bGQfKgYgEpPQcuBt21tG-SOn67XfJdrco8JOv1puI2VPp9vFVMEdXv38zn9O9ai6cVR6gFyOX4rKIPonAu5ur-_x7xi-vH87uIBYPHz8Pkywu7GPBCzK7mR9AfcRYMeLhb-2dQzQwWXBfZ8hYpWU7NUg2mrrZZ2pT7BOQYwbQ9WCvdrUke0dm0gDGrKcACjLG91dtFru33TwcTVRVA9INGl4vi0iObt6nUi5wjpxXiffOHjds2w4cM8Xc6aYaRv2rhTwK9GeJSWLxRxA6jtU8eRHUyPt2ffy-4NZtwWJHS4HDyGNc55KW4DGhvlc0xld1mMnuSE8AXRQp85bHHeEeRqpV2jIC-x7M79uTecb8Yy9f9K_Ow5d7q3KjIlSPK81DAkoZ3izkTZ6A4Sl6t99x2EMMTtqBvQkAVE68QZE0r4nmC3wPMJFMCtCcFacwxZPP4XSWLXH08lkCdQR5VrjXYgn4AsFRpQmONs4MBKACp8uiNCkHpTgdMp9zEl87hbSG8bxlAgRmSVNbit9nRiYbeEaExPlCgFIu22V_f9B5MEJY81ablK5OxF3pcfdSRnA9_5phwwjnOwlolOAkHzn6GIc8B25QfrFNI-09w77qqYEyeN9Wa8RSfEvVhjW2PZbvlBCOLf88KI1GMmcgIAiBYboU39vma-ZZ72cJeoO1r0tFydK6DhTd2xLUbgcq3dMI__YTVO5IyJYE-ZIsZrfJ5-r943-5KLixT6DWrckUFVQjb1pWrOJqFCb7DZJs2-9ulUEpt4qKY4D4p3B3_giCnOKzMS5AglNOv2l6msyyLRv1HWC82rGQykTBP7c-MZ8W3Np3uwjHNU8-vXKBUCbydeGx1oBsQxn9FQaOwaAwE4yphwid1ecxc4M3TnwYbQIOQ5pjO5t9IX8TuVwCF0pTj22Fg2rY9FhjfGw0obpYOeuy4WlCQIl4dn3EmS2n0eK3KMTWV0H8eV8KPZHoG4Plj19bO6FWHzlTlSQ3KERWbhVXKXLPac79OrGYXZS2P7QIklgw4Lf3j3LNifmMiFdxFUcF3e47b9i_Vi7wY7Fy8zIagIJ0M4eXg444L554fafXhksKYvIVU_nXdiS9AhqQznVhbiIg3KshboBlGt40_wc5YW4BUEgpR-bkoUDu-Kxu0i6NgZ9sGzN3Lt38dHq0vFT-M8GDHnFPciied4974ZcgVe0JyCZHox8Jh1xYAffLVelynEFrFHOMp58ohXBUURVZ7tVpS0idpS-SVOLJyH1hGP529I1vWFMIZXlA8ASFAsEMvpGGHP24noZVpU3exc2mFMci4jQwO150RGfrLtu6-0JvVyZTBSt4AX_uPphD2Wjq_JY_vrADyjvXisCh-JHivrzo6k6b77XnczBDxNTDC5Fr3PgNTpIS_I8Idlk-XXrrRzy062VS3QL_zu9cCcYZHmDKEIGF_DM3m_vu-M5zbkxZewwTvhFroMBp4_oKluUAwcIvLU8KmvL2rq5Cei4s6uoDXhgdZ02AZX7BTCN_ksawuob0evmUL_h1fAeYd3uG_GW14hDQEqGxZ0nykxJ9uXqlmrxTxN7kUuM6UD_e14IYyKI0pRnVvvDPkLWOlI_BQLA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-685036d6f0f325-78151921','','','2025-06-16 15:23:02','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43435',0,'cd-form-entry','',0),(43436,0,'2025-06-16 21:38:33','0000-00-00 00:00:00','{\"firstname\":\"Leah\",\"lastname\":\"Wainwright\",\"email\":\"beeper.phyla57@icloud.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6H-iAXGWqdYOxR9reUEGBLoUrevuG_rP8zAVH-5ew2Czs9W2jvGi6n_MomTHQvyKH_WBDK-WSjCOxw_wf_tgbhl9xT5jttrJnPxYdWuJtih-zewU5vBiJAQCdwuRp2hJOi3lWhzxkHncZs6IfL7fBnekxuTyQakhIbSQpefdIDvmzea_SPQ5bZbCh_RUuFmxh25H-C43-_vmY_fWlB53nD9vfDhr_Ao1t40ZtygljgEKkJdQvo4BAVSxVu_xgFcfgsOydotT-0AIlzQwrz4t_tHASpyVXBTAnnPLlAG3k-ZA9MDiTROotcHmFoBjbsYGWWgVykqqwhDx_03kFH7P26CIpN1Lziu8QRJoJq9GWel1TsF-n6b5vhjYBJ1LanZIp6hdYG9pBrGaIGH-2YMwVBOPNXZ1Xk69a-FeYKEORQDXZckqucp_3iFEmgDonoXzDZIIF7ZuOTzEAtkWhePOnhrbU18B60saEfmrYZRYGXVZGglNZxiHxO4BVK-Jdv-2w14F_2gtHKXPvW5rJV-R03HKCR2VWnnOHgbsdd5VpGGK5WoqiBcsdBA0rQclSUp1JJ8ITk68MWwyjNP19e-cDPf7MYA_cbdXpoPwrhs_6rWGUdMC0NACY8IqlEpr30L61z4XKqTdUHh-dDJp2DEY4TNeNF5Bj2nsYEqZsfTanl8iqidgFnVFSkIAFt43LIxZkapiKaexT-eq5nnQSzXyi13wwIzeUI9tHouTInMoi_7krRQ0HcImJSr6TB2zHZQihZTWTw2RP_3jDZptwU9Btu3pt3SfHGsVqvys597Ybp5IdkxS9WnACDqCIWt9lWufDj30lOrdvdsJufT8CXu2qzazSJVnN1zpYTPCp0Brd_tCgfrZK_DBkXVGsmPHZWbJt8k-MxAXcwx23LHrWWxWXy5H6C8MZTWKWVZ37G7_Kamf1iJ6_WxZgayHPmQn64W0mdNY8bFr0a3MJujjOttRl82X7cUph8U_FtXj8i5iMK9bX1Uld908Lxau51XTyZZWRtTU7no4U6I69j3LFWNHMyvgsZwtEIyN23GUmpvCaJK62xj-VZhfZrBydHbeaFPgygTkPX8c8ti4rP6Dyk8hDi4_aZyYnWb9himVcUgQ6gL-4RM7BrvHCgtTb0UYt4eQJ8vbGqzf-5pwl0hYHyVjmJJ1fuEVbgT1jc2Pvs0O7Ab1WHCn9lfO94c1QibVxbtZ5HYC2yI7wxMjnV6A1Ggo1jZIwxKFv9ZKfN3jUfWDwmRytJr1OAOy9n8AWwcNPceL3R6sFyioXlOQMO62pCULvIOIQl4nfa7heflWEkJYK7QcrSxeuP4l5inOjryMI142FxNYFkUM7R6yklD8xWIxeAMAd0sz1CzVJ4b0DjV8wjt-zp8Kl76UdxPgW8pB8vctbzTAuX4QKbqJOPXadfcQ_IqiRm-75PiBLrkwsZRbJCZwk1GExdgi_XgnFa5DMZHlsbm6xONa_XAEt4ZhJhRjhERZIHAnxEzb0h-h9jSar5tV49c-kvnEcIP1n2LGw9P1k1NfAoYMsHuOZE6BtMladm4sIxRry_5cKargBAhkOu5THFuPXyF-pmMXz2InrgAxcwvHVXOm6fV5YTHICOC_eAvt6G1nrHZ3DP3kf_pGTzi-gZSKv0W6gWN9QzO--qmF3c7y1Ttw5cvMKRMbmCqwAznWol4s6bgdGwB7sRM87uRNOnSGTseq-od_xH6gCNEEWwcLYjndpurURGSkmMpBwPVKJWvLPpPv4X4niX3hr_rQl1ogiubmJQFBl-evVU0sfo44VimJ1rODDSMNsKqMqBJHLIAul7zVKzOaP6ux8K_14FCxb7m97uSs7UT6KQ79rSi8fejpfidvydXWeTUo84qOQRGB-TCNGWPOaFDNkWCajds1ZybSzk1Vv6mTQ_yx7BaSikIp6baXAhz8DCFvB2Hq-7EAHwA3AVfdMXjNXLyvt3egchwSVOPga-UdLtXHwR5fst4kxo-quds6LLv4K31hY1eLD8Fs-JfiCx0MJ-keOZy5stU-lXVu1A0YFFe9uOBUoK1oWr4Je6Vefaxp0dO-BV0qzW79G-j8moUKwuqm3_2EoSdGXYuiQ9XYmBV9KBXsbnvgb2TJhzfq7LN8fRPz1lqlLFNyKzrYlxgZrtLlK3dos\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68508ed936c326-03903621','','','2025-06-16 21:38:33','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43436',0,'cd-form-entry','',0),(43437,0,'2025-06-17 06:40:17','2025-06-17 06:40:17','{\"firstname\":\"Dan\",\"lastname\":\"Roach\",\"email\":\"accounts@pporthotics.co.uk\",\"contactnumber\":\"07540724146\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA4CHbj62QGsDvs80CAY10FpNMIRp2_QwGJgv4QiooGKBgvthdjVpBUKk4ixSViseuMjydLY4rTiE7wF8jeNn_KdT0_H1Etvof3KPZpVsKXpoYMyNURUwDKbqOrszyo17Buomc4coj5jNrZezcROvhmsGOa1oGjrU37TOdzzgIVhNn_fZ2HoNkqqXv-PEEFwD7LMGnxZ4L78BjzeyX4L0ZofkTXlNJef77JS_2WZ_vHTiC9V93SDVTcDcAewTsqn0stX5eisflwYOEFWgUhaQ3xWCyrtiyZiRv_ZZGKBPboPcP7h8BEwn73piZL_z7nowbGK10SWhqk9xs8sbfa4yoaOHT3N_AsbPgTEl0Syz7L3w7QrHOuAcZQqjyxK3W8H_E-kcEUlezQDIbaDjWIr1hVaDrbtIaOrBZczrAp-0PLGv6QAMZede7LY_uZ9iX8uO6gn7nnR-P3cCEmHo7dI6Pc0ehUPwkEiLRx4bIIZBsxcJo3yHY6zxdtIEVAlT6BG2cmFiLfg-F_pv5ONhOiLZPRhW0uXld6-9It8UT5bdRvwJD5peqFzwrH-yColecumQf-Fh7qfgHkhdrYD0mn2_hTsPZbw64FNgxI73rgbXtvAAltSwbWsDPELnGDUVyjFFZa949uwtLtQtGBYNhXmOzfETTFnpOi3WANOpxSaL_SuAfu2RP2n9YE2ICnkdk79X0zr_KIHOY3T6G5BFLaWhwukB3Mc2ZSb5RirdZLqTCAcJf4hDUToAhLcdd1zdbl1m-13eKp06P36c6YWyoNk5t9MP4sUYnQcex94xeoDpoDuAXW2YjDdFYjA8IeabkBzjtM-ywF5fLxny_R98i57PLxvQim7YreDGb9gtUQeKLlackrrFTcjwIEK-yPYSlKz6OgiP4H0y649tv7idB04u_6aqqbuz6PZmFgyPY9y9Rgmo6hqj8SK7oNLER8rt4J_ERoUKhmVlqFq86-FqiXskghZmzTID2vN17-_JI8FrFCYrnOkFiGkoSioyDBg4RrC0wCfQniu-dZ7kgMnOLrV7CAiU9o5CyMNV06c85RDbHFnLqztHGdJxEdIsdnA9oOel3QRDZ2EUoOVB7ZexKrffMwbzmRUMVt_Ol90X5_Ep6A7fZQK-gKXSTkngqQNrQ2h3TBA5xBjnG2Iu4i9xcB3mCpyMzBX7G3hWIxii4vxd1qyGXBhHDQJZ8_nhhOCUWZx8qznrAqTxAzfWhJiT9LLanvwcUUiIl07mKbJa5nlkCnDToh07NBwO1KypNeZI9KhwqDxH6w1GWIO9p-XJtpiiG91muRq_x-SLREKv4Avl9HOWcZnbuPv-bcgUWKIYhp11wSZW-7Ts4ORNRPUyt5ouuFu2V-rYp1jUkuyOYnCdhORH0gui0XN3ZnFG5K3AgN478qc_KtlEk15Lib1I1fK1pqJEG3iWLkEtUvalIz9TweLCss7PJctuQPkGJFqM8x5jIeZE79eHIWPG_DxYpgXxKCymocH_13-ADe--YRJM06BYCyQd7fsdhrpoQGW2oIhdQBr8rU0tpZDMrJXFs5bJ01FCOtnKdq_ESmSeAFIqLG81Gwq9APOyfqoONA5Zef8TQqw4cWUPpHyYZ8Gyki_pi4A2cisKKvsTdi2tjPjqIDHlfB3oeXSOvU5Ee_LFvpyVPQkdq6q3UWloEaWq1jN4_UDk_Gs3T3YsJdfD9F12P2a8i6yIAtVsr-zTyMd9MZXM-PbbDbtRMiZTghMpLqdir2BaputsjXupequKLhodobBr76yteCxYiOGfZQ4NNajHe1LbjQJUnnJsCD5kyc51BbCVnH9QnAc-Icp6l-uRqo4tpixV1qzWMxjpUkY7btJWsbVD89MbWi6QEB7dxvJ6GGBW5_kIVdjwHrziv_eofFhz0NFVT7Sm8G71JtVNNCzgcHyDweg5dttIOzt61sdca8JsVuv8UJE-p145-bv8FlsU2Jv2p4j8hpjhXJcKhk3ML686iIiIryCufFgr8SKk8E2nPZGFde8x6n5H8xAafK_9vkOdgD8GlRhBHpYbFcbQE5P22MJqE27_kBK3vs3WrPmgVp4zD5TJAivNAFv7hpltCr1XesmtvpZIxBYXZnnZw2BOpeC1VpsN04Yys_4nu5MalsRU4xL_9D28GWLWxpTXMFQQaOSOOYx5XDByf3CixKpzY4K\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68510db9ba27e6-64965595','','','2025-06-17 06:40:17','2025-06-17 06:40:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43437',0,'cd-form-entry','',0),(43438,0,'2025-06-17 14:42:38','0000-00-00 00:00:00','{\"firstname\":\"Matthew\",\"lastname\":\"Plane\",\"email\":\"mattyplane92@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v-Gj0k05BGtS8DoZsZKeDhy&amp;gclid=EAIaIQobChMIqP3MwNb4jQMVpqJQBh2RXgF0EAAYASACEgJry_D_BwE\",\"recaptcha_token\":\"03AFcWeA6PAibaV3rodjyiYntrrL_Q2zh4IO_wxmYlJpgNcExVt9Eog-z1RjWtmINTPVYoN-6ngVj9yunbgcbWTPS8zNtXA91zfvP016cZ_Ed3x10BPy1IkojtBYB3P9m9uPgAQoVZirWdm_6ZVBg3m0ig98EmfrINnrXJY42SAR3oTZRo5Q6qR4Yug9RF9fughwKrh1aCi-FWjx5nnLdVkJP0qfJeMb-Ob0q0lQqhaKXJ6ydAp0kU2sAvcB7QGVoHGkcTlu4fHqZaJNtSmv6mtZhufkoqcMYSLn6OcUqRRVjP5_dePDJhP4OuHejqz0bdlxOVwYz5Ka5ntHZRfPWBLoVIz3aTUKV0u4fHffkRGuV7NEl2MFNmRSLkTiLqRU6kv2IiPw7SSaxKX-wTo6QtbfdcIv_6vSVM00JhrP7jQ3QszEF0Q3RrYgqAq-naBchf6NuqihTWI9Tu7i27JKEuqLQ-w1Soqqe8-ECrQ5lV7JLA4CiwBgHoOhSwNxVQuwRD9kUaASAbG2ypZ96kS2bzr35PE6tNE5CZgxNMbJBzHsdbH0DykGZT4QG9z3jCpKg_uuJQcCfs1t-oZWArH20lwHmpMC9N92YGbauiegtASnTCkcUo0Ac2yplgVebxtnKlcQTxqsleRb12roKFC5VK5MPogEndvvVTNXVtQqNfn72oZ-71V5Y3twB9IcJEERG3xQXItc_smSYGje57PZOaftBhnikqlgQPnM4xzFjO57Dn9MeRaTDhw-DAJXNhRFP0ZzjWsdM7bSQtuhxRPnQSoTTo4J_6PMhNPQ_Yeu_LYd6jcPJVdyHQjwthZmyBnC4q0TcEoxU7LyLij6-ZHBK6ZPUsFaeOIVYVDQGuwEIcfoMA8jQ89TCiLfJY0RCt93d-Z6Q8dgvX9jB6wtS4r2F1FndLb_t0htM7egVVwjpVeyw3wm5z4pPjMSrYgmeu84Va-jUH3Xt6o3NuxGrpkPYOngD2JRWEAwbMUU21-idRFsDEf0gLwK74ncLEFLci7O7pKIer1oX44h69kQkWlbdj_pfmLXHkUyQyttUH0rFNAgqkOOKCi8EvihIFxfbSpEEcMM8Sysaoda8r0x8CQSa97mJcR57FZuQf7laNDDIGJKD22ajkRZTqsCz5zm9iRITEOsEvjZ9oYaACnitZ_B_kq4ItBNau92BeoR0XpLE07OFjZdlGKzcCglg0UVSyGCIb-KqKW-d03pe9Bjr7QXVm8erWmccDZPFk85skwMn9xJNURGxJ5pyGh-VfVoFvj6faDUzmYS-BCZaMkBTFYym1jawr56gkbpie97fHTl-GVXkCJTlzKT8JUC7kCax3dTyi0o2kbLrwvCB8Jkf1d6MRRjmeZ5lzjlbZXDvjVlIXWxxUxRS_t8KAmxbUiauwr23A8jBxeRy5nMKd-5rIOLJ7BNLOU1MvWUgScQSR_uHu7Rr2-sHIcOR5sMzHceNc0O2O0xBO2q811cWGzukntCEw9b6-tog4rvykKGBetcC3AV4zBfjLdxW7tJClZ5Pem2aZXUPzO_p4KVjylJIZ-ew3DTNbGBfAJ_7TGhUSVow2mLALUErpoTbahtI-ksFL6lxiIp81ITv1ph-cN8pJWKwfcrK3V3rQ3yw9reaAoQ4kh91B6Keg6hINxFpOJq3nA2isI5trSq-REpc81NBqijUrkgPQ0yETES6k--HY-T3RWjM807asxN4Raj1yYsPskKSWziQhB6ikXUXCnRMJk-u-uPM5IzDwrpkXJvYtANpQoRQ9gWullKkMKYbGf5-y-QmBaIkxwu__xAVOD0IhWL6OFtUuwP-kZuQiK1z98URMoQ86Dq4530tZnhpA9TimSJVoTAtbBylr-uWsLlrZIcR-AZx7ijhFhUundbRUJvVJM6uQaSI-tgVSHXO7UyQG3iOrDZT3s-sKLXBynJqaWmULHpgD4pm3IMrZ_krLSxqOUmWA5I4VGEn09-vZcR2U-WZHs_CET4AnPbRjK5UT6qmDXGLSVXxWUq1Aheruy_7caHa6pp_5Zat6_rN5mRHwIXcgxPyhm7Ey2nFx1RE28HcsAp41gNaCs28yPDvnHfMlz2MOE0WByDZkC83qAJX8GC8nUVfEw2vpOft3BikmFdb1kva2pxCbj0D4k87r53sJqIvWdz9pr1v_WFg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68517ede38e0d1-24306548','','','2025-06-17 14:42:38','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43438',0,'cd-form-entry','',0),(43439,0,'2025-06-17 14:47:19','2025-06-17 14:47:19','{\"firstname\":\"Magdalena\",\"lastname\":\"Torres\",\"email\":\"girolatino@hotmail.com\",\"contactnumber\":\"07855816387\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v4rr-Q1AuvHyJoqq0GhCi2g&amp;gclid=CjwKCAjwpMTCBhA-EiwA_-MsmaMGLl-t676vUuDPuouUJ4xEtGeqxJW-lBTROXqeHScrwaUHrIqJLhoChXgQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4V56-8XyRMkUbO9AO8FPbkLpKzJ8wIqFBVoCt_lO2-XvgCMbcXSnshgdKi1A2xtJ4Ix1ZF40ZxQFbwU-MCkUFbGOyveQzb7fESCy08XYzeataLl2P8sUKscEaZF_I9Ri36d1xhGDPlaS2MBWjlVumrp2zBULVHzn5k7oBd6UT8pt8Uha4FeU4Isshu3avXEMV4BFl8u9ltLrF9LxfuH1qwXftPLKubywOxSfv6lh4Q3QMJbeXx1aZmSViZcUBakCnDDoh6UaqtZG00TLcSLqGJlPJOArnybI3mOu_xdvT4TXEBUre0LytIO4da8J_0sStinNr1r6bB_39DtyGuinAep3t0gqDXzj7wT-2uYX0dLq1SycKm8Qf7MMzzvfIxSL8fkDapBqs76Inkrsqe38w6DEzE8NETrFtSLPyZebGDTHOooJdWktlb8N4zOXPxixtMLvvGy-5pVuDehb4RFt-6wUoVYA0RHcy3sxB8Hsrc5h3G2LPsbG1K5OgnrNFC8FNYdI41fSsrfkrd-VLLURxTwdfCkkjBGaAzfOvljSSLJUtDyjhOLzmsha0-FWe7qcAgrL8w3OMkYutbB10IRvJ35CRxlM2i6TrZJrdyVjQRaj1TVhpfVH7UKXvn7YzjWdciffxsBeQmJTdMdzMK-YUiHjFEEYMpO_ARnvp08glr5xxFrSeNI7OsNRCp2vje6Rw3D50Qt-RNkbOJSM0XleG0mTRRJIVU5QzHeDmhwA9lDSU8UXeNha1oxgOX3NKyb8bRUqa-91UzpDF4k_sf9uI59IiFMV9fyFNLDcBIkwErjvUpBushYgPZaQeInFDoWF1eLpuT7lh7GkWzFGVbPWVH0A_JNVGqSxRg9LUPLvBxcVrt5I8o-EBUn-n5iQF-By2JcCei1CsfYHygYtQqsht1qvcG2IhmTbuWQcDPv-UkBVhh_m5qZrK-I580mPuRK-_4rZkFKcC9685bNcpV2oetX4v9BkxGnhil1EvkpUW6SUS-_mxnYKdo0Xju9l1EKskoP4UNgbhjOvaExx-2LDmeJ8NAjH6zIvPrTw4vU_ZmCsYyDrNwOh3Gy7ZZZV5avrRZFfjacAHBs4qM3LuQT3pGrnmyZ7yUWWllSeLrLXikC-7J8jOEzDtkROc6ybDUecOBWFQO13uvbAFwJda3vJ4IzPjrrNB7nWQkzvtpLNQRxGnj1Zc8758YY7TInPw4zoWeFoMPx1nnY57Yl4L7wymo7sMqBelFcTKqxEK5KhzsLbW-8Mn0kUwia6Ja7A6Ml8v6eVfxabTHXL9VpNy3Il67aBa_rCv54_Kqoml_1kQqpSmoUGswUG8vp-by5OGRvecJ18XjTakI_u_EwpBcPKnooY7ts3W3nVsKzlI_LFDO9wkGyTT1d0wy6_FQNawb8wKcIuF_7rhh0H5MjX1F807q528aPSt9kxJq9qmH6g6uLMF5VGJdKCeXbiWtCtGqYPF7xXRr-0gYAMQ1cyvUVXmSxguE7d2FfSMnBYYs6W7psedJNKDrtLdzu5Ct0BTyk5-pwbpDkLvhNeqpb7nrY46FzitqXBjgjYovgWD6Pvlvs7ITHsJyrWQ4N_S8iUxp6W0j_2reuSSYLjR67Ap1QRsU2Up7zoeL0Hqt_5LnvR1c4oCwOVZXI07kSixkM0gdEKrZtWfR5eQlYP1OgqB8_Ve5vee_-xucBngIGv59Ze2b9F6-8rx2MBO4pLdAVLFKHBGccMY3AjkvDNRiK04U452x2h7tg52brPEmr3bHp53MNd8LLkXUDiVBjN7tbhDc-Qo7QBfQo5FEjAQYNtljd_DITTKUvtjbwm3IjCCjnZvVrIfja3OLuDbHN2UehayRy-I1_cj0QY5_y443XIZOgGhVH95uhgJrlQyKE0hH_7wuszNXJdW26Ob7V8Pj7_hKrSiHHGk0lGObjIBrih3Ozigsij6EuiNqXGOxQzhZsZk8jMDaE5QO1jH9L0Zcan4m5m5X6VGr-4hvRyPRT1SQMgdvLn3Fui3wmc8vriZqriGFM7a2A473ILSPZz70aarT0EfiWVeLALAIlSjsgiMTQFeum7Vo5HlPhHgB534yers9tj6KL6cX7LxGwpKrqBQnmKVYEbceydSQsosmlImrn_fZZ6kI5chkm8tHKU3bXypiBmhyFF9MHgvPAIOXCwVYPPo0d-sfpPYSS9Ra4oYVbr39CTojI-vn9rpchjF2Xvazm2T1VV3wn4m4zJxh5ZkjVJTJ8KUlzV4AxSLWZdu4a9rPaScZ0vMJIDfdWTC8VFOrcmEwjhjYHygBoMbnOQEyef0sBgF0h9eMFi7RpQOYsYiphTkTbCZlyHOxrq9WLurNeM75cBjj6mZ5uulR6JZNdzHnF0Nfi9k3gjEB-038uPDvpdzI2ia8pbVoKxNfUtowDeMZ7BQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68517fc557c8c3-44154379','','','2025-06-17 14:47:19','2025-06-17 14:47:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43439',0,'cd-form-entry','',0),(43440,0,'2025-06-17 21:04:52','2025-06-17 21:04:52','{\"firstname\":\"Ella\",\"lastname\":\"Jones\",\"email\":\"ella.jones1993@gmail.com\",\"contactnumber\":\"07905326516\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5vqs3tPSDP03FVZiRhA6unkjgdLgdJ2Qb6LonLgUBwgoZae3_GVNo6EmNiZ6Mb-__pFAuXSlEzJm1Oz2PlBw-fciPEsCPtgYtvLTv6ipLarKPrJgSXRwUWyWwo4nsTY0mz5IAfIFlkAOfR5iDhI2w6SAep8ndY5UbC58pz8Y71E06XutGcOQOvpqk98jD7MQwfiqvzt6lbiv8M3DRwFMn24gyyZq2EDlQQ1sNy3BiavnlREhOTbJo8NCix06NOxfb1K4zqGwlfH74Dfbm6_fW8WwypvyZJFdauALUiPKwb0t87aTljJyOc-70DvuAM2VLIEUSBjvOcM5VaTQyZz8DUfcrM1ZkSpmidpaa0q5XdKStZ-9UxGb39iZ3fP-onwflvWgM5C4wT0Drua-uXZMdr-1MsHiStToQ45oNyg_HKtIwU3uxzweep4pAdntz2HcL7Njg8_qmbcvsbrj5duG_9L5cug3CjGSycL4ufzlH_39w_FGI37r95nIooCVUUbe1GH7H6oZsz533KWZhsYDD5qJQI9vNyExAJm6Q3FZKgF7Lrp5J_KTCnena7vv_FvoDt-FX5S_cywGtv-qAGl1pGVKVPdSVNQpSNLdxQ73_1ph-G7Llv2mvlQH4nTDB29Jq2NOxpdTyjvUL-x4AUTep4oNRFz5sYa5SBnUUO8GDZKmV7qOw5VKqAbpK5co1Afvudi8yMbA-DL8hdtaKuWicN7FHBJaDKopuEJW0lZ10enUSTzBkKrRfvYAEJFnggeW6cONiXhO9pW2s_MX7Y2g73adeYwGzPyqJ430tgBEa9pFeGQc1jfA10xjT_3xXY2VeC5EDnJ8Xfa-afDM7CNziIJtat-bJPxUjnNCD2KHUNWkwYMjlhcwHkp9n-yyQ2SqYeKefROCPdgLlIxvYzv3WCdDf29WZQ049uhkXeeRPDZ0xayby341hTvbDGH0qfScroxfdesKvs488iUU_JF_mUjENry2BhyiivcRA11CUX7apFOlPcOh0YkCQOGrllGXUgoJBt8QA4CLRPoG86NAqYMrudGJWYpH0RrDU8DU-TYmVyAw_tpvzc3hLG8a3KoqDeuizzibaNO8BGQzE7k7SuDQ6ZH7xHIoD23VKREEblOXnA1Twvh4ZHXEsaKQb5H_8AYk6-QCqmVEW_rndkzGFCuGzpcmJMXilzF1wsHgHYA_lj2wEsxP-VKrvGvaFyDMnf67nZINAFBeMinqlqyyuzTs8R-Z73926o_RMbAjRzOwfLObmIbqLnTKeF44TlOdjQq423qaS6Kt1uz_aup8C5nCuObUy7JonqtyygFH80yLtCPJWTeSakAa_V8q7FkA3ljKq5OvmlStGSX1f1RKTcNSTw4-aMRv4V4DdWBEtl0eix2BwudkYt5kMlsQ9NqjyjTtGXE7IHAACC_UWH2i-AcQ0wv04dJ9S9DvrVlxi3gYeFMMN0H_Igw8tTjpAuEW9aLUGMn6sogOGjsfOIBNktgX8XwHd6SQVMTNgPBZbrwS2hBq4ILRd3wt3hHeFIkxGSKB1yJeOeByi2tXaGw0h-Q9m6K0-AhyXfNbyPqPa4JkyUP9PuvwF1eVxU57KbvJdEuy6MV5iGGSEsNSg-s-qRHMk1-eMsMApUDh5hl24nrlyaI_4FnaTJGQBHNyYYGYsChoj_m_uj02D9nYdo9STgx2t1KbG28DTE0ex0a3xLdRNGLqQ2GiHbfn290pG650FQc8rkTcYJGQ0-B9mcVU_oDxU9UoLLauqoS0dB3V1boWBa5_8BPgUQXO6TKc3ogd1doBErBPBqd3-avSgqoJSFNc57758yvCWgVEJiqMcO6jhtIeKNUe26dDDYxnfHT-wdfbl4VrwZtNqaUxOlClJPIBXpwsCw02pm5KvdgBpm7xHQy2ftxMFJ_8vwARbyA0fS7dzlVm3qgGF4w8XrKtbrP7gCk9YnFkfN87lJ3sG6nAiJkSRvSUqtDVH6AYAXljT163Y73zVYDLK8KH3K0t4VGY0V1nSafVBbEebazgScYsAHGAuTlNC_nC_AAn4OdlwX45bvomO5AewiOrROZHXzSpAK8Sos8lT5hnqBEKlhUknkTCMVrAl0k5S8HouBWk-hPEPP\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6851d863bbd524-16570990','','','2025-06-17 21:04:52','2025-06-17 21:04:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43440',0,'cd-form-entry','',0),(43441,0,'2025-06-18 01:32:53','2025-06-18 01:32:53','{\"firstname\":\"Kiera\",\"lastname\":\"Husky\",\"email\":\"2kieragrace@gmail.com\",\"contactnumber\":\"7807182333\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA6od33llNwH6gSwG3xpPNj0QRIaKxIWj2epiuV6AH9VfC9gLn3RYhUQt_9DXR2z5e67PQ-BgrNk8v44KhzuEGsH40yIrDGB1D9l_wgw1AJGfDNxajkC_tlq3HGAQi3nUGOEaeI8s6DMaenGgg72TFsQSCP2-Uw8YcdN4Z8viMHAUfd_QHrttu9QCSiwXEhbxdjJ1CD9ncfkG43AtT1RAzqsCQWWeOMPDHgbxpO5ilq6-5c2sjtnULw54RDkftTMnfF0eX0VD08woUD-mK2HErUxXhUG8keNCwIIdEdmHLWm6Ny5nfqn0FF14cxZZ7YrTGWdcyx5tABniBgnx3VxhPLREFqsKJ1H0r-6J6GYZR4XcN8rMcX1q5odmnBtNyltZi0kOCLXMbuY30I8N3exTIi4HKqSrn-p_tdIKFUYeryrV-Z13UMjSIlsCgIAMO-qqvXFM_vzS-TbdY1RZ4jJvMUV-o4MT92Oa30VechHzPIVJg7Fw6ro8I6WFzhKcnjVfkvb0fWQ1736LraoJ_YABWfToOb4cMe9YveNC6zmuGKdkAn_t19KEz37Kr8mUNqmjdo7Hk8wElOnppaWgJcIhwTNZ8vXvmCa6TCZCDz91B-8QK86cyXdIAuVRDubZL8DbPEyriObdEa2TsNn9A2bSLJnSjzCsKnck6ivmb0_Ou4qMKv4F76uO7NLAhb-gFSJvKcbrbzb7DO5tT5kTgLbu1vAOQmWyHpdnSwrl9wSBn5C34ypS5bEYhLnZizVR-eSRem2PSc7J0YPRE10i6xSJqXDbiaYkV3F1l6fMCwuybfwddgfUkpbF5yL8OqRtb3n0JwoWsZVLaiMdNUP5d-23S4WzvjD-PsNTl3hZoEm94VbhZmO8SW1hdCUnyZrBZdXbeleN3rGQTA14lRFTUkOdQHZTgRPGuZi73HwxRxVDT4j7Pj6ljlVgQqQOh3OsPNrdZllGxr1_1p9y3R01ynLCT0gab-B8i_Ai1qy65Ci6PGQDnkbbIedEbrWnrnErqIf9KWLrRNnZcbq18SUH31JMUdcYV5GVS6JWFp_cUMRGJrifAIFqedlmVXsgEFQhtfp5BpsmLPoUjqeKI_Nh-X96dppvDes34NrVScB2Oi58Ww42hSJGx3dLuJkArV2QPF5Ee_NS5ro1uK5xD0elzDwdFLhBoE27w7GmkYFaFj33H-d2W1j6fyzpBz3mspEB9TJYUUTNi0qfi7YFRnlHlkq2kUYtmv6ruJRdHiJR4qem-3FwotGkoDaLZPrznl0Fw8QjCe9ul4sQAdai505JRYdmGim2ReFfStI3-2RvhS4878nnTSzjpf-RON2PfOmCIrOVgdP5fpmc7lXpNgS44Gbj19ogeS0ZYMp3UKkXc39lJNa1E-sa9B7mIevOonWFb8_S6ecwxspBNnIle2qBkiA-WZGwCiVvd47OwOr7JPl2KrMnAf4BRXAM6UcLZNYVh_mEcd4r-6otUpwrlcTWeTp5s8ytezmDCMg6ZidfgjbzmGnA5qOBpZqvIgV3H84wodM8RW8XwhdDmoY5sUEzsNHVolcr__J6kmkquSft_yniBTHqR-S8o9XngKSGt5YZEtNMpmZB5wGAgXUmBlRTjB0Cb-WXQVk6Q4LBo3yMwzuVolPHNhyRQ4GgTLbLkfMz6HJ3PDfxd_ug47bFV4VWsoDF6-7emoOKWiTg2DNqGbrytRsQ-8PqdSh1W4C7QqCNMZA8LveREDML6G5OHw4KzEoD7S6HuSrtDXhz2Qku77lqFcccfA1It6ZQo2OKsgpeQv1oAf4TDkTL2exS1jWUBZQZTTR3AZugLZNd1vc2Z2vz-JbFqW_8rmGIUxiUvt4MOg4gqY-ZXksAEHZpwbdcCX7y-oTFaBiw-ZGrYXuqAOwYRaE9sTaHpDZuUXs62TvjOIC4usXG803VdaZ-e3g5qy5HJSbuBpWok1st0crCgsd6Az7Kj-G4VrHnHUpUIVy5hW7VZmSM9lRCbGSbh1pQjbLQXwPy1ZkeylqhRZqqPgL9Sn4bcfNffV-zc8XaEsOv0-pT7fdyDSaZDEZEGt4okrxvSS-zT4vSKMjdykrxk12os_Ixx1P2tjYUwtozQInD20BmH_fFYXAD7KVdRTldD6hPgKUqIgGDacGOxO9WSym29LqtjnkEnTRm219a4KFyRwCptavU01dNhdoi8t_ch9MyJi1q-lzApuT6BZIhdY-_EGdsn2DWIGQgZjAtrZZlitB7emf8x7MqDxW3aYcG65rY2QsjhM55H2_2IUlQ65_95iNam7UuKKxNjFnOKjxJL8LO0PqwxRXgieXNH75QEj0yTT4YL9XIp5HyhLHkDnVpPBzglRowdgNpQ0KVZCMz-GR8N_r-mrM6SsvJc0zrucvdqsi-JLiouD3mubWhtdswpTbbJf42s0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6852172e2598b4-65038043','','','2025-06-18 01:32:53','2025-06-18 01:32:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43441',0,'cd-form-entry','',0),(43442,0,'2025-06-18 11:39:34','2025-06-18 11:39:34','{\"firstname\":\"Samantha\",\"lastname\":\"Fletcher\",\"email\":\"sam@totalfitnessmix.co.uk\",\"contactnumber\":\"07834465956\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6ue0sOknDLBzGqkHtqHD1tQe&amp;gclid=CjwKCAjwx8nCBhAwEiwA_z__09XNVmQ2oreqxIXNZZPI093m4rJDsiMCQCKbTJEKyvDvEBLqw5H3HRoC_2wQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA54CuKeuCemEI_363rCYRJOTCXGyHyMjbMVzso5rBjt1wDNFFQrkZXdhc58SAB2eyET4WmxzpTjDTTqVMbMf4USSllx0b8xpmJUdXAYgTSY8eY8TGzzK_9wb2GdWSaOy0Wbmsu0X7TcMHH2nuJ7Z8DTyxI_m6mWadoqfqRExgau-gC_hqntJFGAXhYmcvTLA4Zjr90Zmc4W72uCT8n4Py6v9OAYjJtAyUhRFvqkrhsh_N1Le3Bn2ZmQCzNmIKh5STFKV7Qroot-a5hkT5sUjfWVUFmM22thVP-ql7Y3cXS2QBvHNeXHyBEIULO1TuKtYi1P9lrMxEHt4dXEcmOYhDut9cLsGsPtjcIiUgVUrg_aieasTUkF3xrcIdpS1KL_K9IM2jwU4e_zc3yWpV7uPinqMjW_OuTL4WH3HDzE93BaxumPpvuHGo5xul6w469FTnPIqWfCjUu8RF8G0-CKVuHRJFx9BgeEl8OBex6ctl5YE7C8T0WyVrxXFQN30kWVBh9pe7EUEOnNDNHKivdQ3SsNC2jGGlisPOteimaROGMvHRhooNbosV3s3SPs6WGq9ToHciUh-SsllCu6BYDHVCh5n7-J80T5GsE9HMwGgGrOrq_L08Hd211dr53RMLUniDugNI0U7dfM5cCD9Gjm0nUPeqFC0-3oecHkN1M_wuXPsl1Z8jjR9FREM1ho0b1CR2_qicXxvaGc6uKvlNqC0cObR6QtkpXruiY7w9g0XTvnDKd4UJWmcOrI3HPcd_eOlHKWtHGanPUX4ebrI-9BIVmDXIbewlfFlrx8Di__Sm3kRXZ0gOmOn5VCupbRucl1j0Ck9W0aFbGvn6KEvSQ3zaPfnuFTz15D3h16HJdEj5Kp2PJ_igS3VUpuGhS_Ao-zTqCqmY5dSDuL5POWQ3AzdNvqfNfrjnsCAoJdb_zRBo-4A8N_qFOsgZNUgpzrZyQSDWsTZF6KmBS_ZgE6zELUki1n3hBYCxw664-t1uQw7J2CVUzpQkxB_ZSvwdmKkc_JLWH5DWkKtb6RkFjhWeWoH6eUeJMK_S06VYWrAGbwwMSkWJhySIzSy4i37dGPInxKMrmFCU5er4x-uGTztFkBqiFbTkzdciS73ooLpqIDPt21cM0z9BgpcneE0nK-Es7bKeZoglbJkOY7r_2d9Hg8ekQh8jdxmToGJ6cNkky2re60GphnOxwQzYCQ-u5wbqFW59JcjLIaQEBCBLq1CiWazsSyYGvthpNAXi-jbyP3f0ZBugeFCayhsxirRr-kd3HFOpkTBeN6m9IHgQfdnWDj6WIyVRXDk_Tk6P1rucUjd2azSAMNl92fmHoMn05qh8kUSPPQjetbNw0ZCjncwZSLTIo13ioY71r_CbrYQyT7mHn1PUd_-4vcuqvZxAVzTNJ45_ypKdRWQ4ipjj1YVz3evhg2WhYYoi2GMeAnfw6lfQ1K10BXJ4L2HwgqqMt4vC7dKacYafy9u9hBBlt4GmYobegbaKXoiPUMgqf6H7OCYlmBQDG3xB50bCbkQJs2yMBw9F0yY82uDsj4LRmvFYRAS5nrdtOvWtZ_e3_jZxTHsa4qOZnJ8hdckhWMpygfdCBN0PaGri1vS8CWixMyaJY6wMw-xGRGlcVIEeITNAqtgBe2zhbOqutEgT9mXbvI1zWhDG83fZ1DM3QAm90tpXPeY1ldm2D0oWZBlDa1bu0CYhi60sMbF_WP5HNLfYQYYXkwdXzp18KjpGDOYw66O54BdPh1ATzJZnqOYie9WEHSX2OsnHOPXzgjnav4c2SOxILqNgdUG3s543GClT-BnHGyxQq6rlDTurpaDh2LnDY7WpXra-HIV8lOXCx1epZSy2FbQyAeLRy6GGse83TS7hi5PDgN5ov9hQRNg8GDyQyQrHIfp73mulRmdi4xVLwVdy7eaqpRzSuKCwDy59Djf_ndJQ_UOfxy0MKBwK3BjTARZHjMC7kkWCvLn9i8oZlB2jFRFnGfDHBuoTpLV5Qwo6V6ImWKWg_U8cmeNhgsFEdZ_oC5SPV-wPrFvPjRtfEDNGMhuGxpBSKn2QSuGU1R77wG7srg1sHoMXS2Xc81-n9HpGwg4BaqLN13YmMVI4LbEL1Tmw3eGmNdl6Ivd4gwX03NKP_dVuChWMx6j-Qyudi1odNy1jxw7q7DVQFEm4DAeUzbcsw8m54e\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6852a56196b876-83123917','','','2025-06-18 11:39:34','2025-06-18 11:39:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43442',0,'cd-form-entry','',0),(43443,0,'2025-06-18 14:03:01','2025-06-18 14:03:01','{\"firstname\":\"Joseph\",\"lastname\":\"rutter\",\"email\":\"josephjrutter@gmail.com\",\"contactnumber\":\"7446155514\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6v64dik82IDCK2qXR3ONs3tY&amp;gclid=CjwKCAjwx8nCBhAwEiwA_z__0_mp4WbfqDM097biCNCk0CxdPVZ8Vu6W4w8PZNZGgUNacY1OYDZKOxoCqOMQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7QiUFSB6Oq117dASM388VnJsIvri3ajPxaovwEuwXxHrlR3AvsFPmgDDs6QfKRUG5I8sNEPXMAPmo6t5LJQ3RwGQcMIPgve-R4BANmp3Snrq-05o8R2Eyysw1E484eekPCUSIKPg5ItFeSD5H3-kLXhG3THJ46IMT9St4qc1JUpv4a6KbN3K_9jhH5hGMWhGGWj4LwRaZNaKJAM24lNIcCNekGLyQ7qejACoqVGEffmcT88qR_PRRFCdS73Ejl5f9BlEy1WuTWODxPbvAJ5rN4tdlTeasXI26isZBL59u7m9vbQBI7Z_YcCSxfgpevM3dy1iU8x5xgNMtq5okehhBX3M4ZJoj1tGu1f6QQeflqmde1h8xmaB5A3rIeFmdMlepZ6RIXmN6ijYDL-rr84SAugvOk0c1BOI7rlzSregjKV2zabxzR_BMB-nUxuLkuP2y0QyZXlIsW29Va0F0dpQhohoL5INfo3xicLmX6fapEoCQXplujQGLAuQfXTAi8F6W6-DneByGENfseNFG0Aad7ieRpscFw3NJl6GW7qn8tzFPo8DoGeaUig0mbkLiTiFXhArd8ZsOKTEY3r9s3oWrnEJbRPoxjZksEEvDFtB7Bul5rG8ye7TrDmKhuWqccBbaP7xa_LNP_ogi_Hmd3swe-AfG_4jx4pvb-riHwQDChL0lqjxjgXjjSxYebEJxNgtw3JzG5xp6LAVXakntYC09-iP358kbEDsbRiNyRyj-7nsdRN9j00-7BG5ICejPgd2eGgQs_ccBq38Q3kqa14SVjyTIRCKT1v0DjNBieRZqX6LQVQ8oB_qtl-A_xJ4OuZ9UmaggaJrPajoAy5XOzcNNm-zowrefMTc0bCPvMyWGnxF8WDGT6KedcxsKmUCqQv9qi8_bsNvX-zh4VWY6T06jTLTBgvkA7wymkU7t4BTilBv4l3enOrdTPXV4VEL9xbKP2E60BZhc0dN6FfhTrB7FyKkJXYBQZv7Xglhsnnu_-nSBP9TUsF60YEaFe5UbrEfgBYEqo7LTujhdirvdBe_KGY8BQmH7joOeQggNBc7j8gWW_LXRO00pebfxHle739orH1krOX1PstC3vulX4maDl4SeiEDRtOOKJOcwJ4iVMBQoDnRGnJFa3ssSQa_M6i0LESq0Y-KcDMFf6J7q9NOXJNgX0OOS2joAIIXWCVVf9H4JOztr3M4D1QUIEsDOMC0tP-EXqHaB2wsFZOhCP8IFqKU_M1NkL0rTv_ZbJ78vJL4FNK4WCCW31jcU-XwoibFi4sgVM-HiwBdvU22_An4tVfcl4YYT4VBDah-2hrndmdXCC6u7cKEILYtuZmzq0xCPmIAeS1zBeI-N_VzoN_h8qcqmhjLWeMLXxaCHxTsWeJhhWy6NidRiNI8-IcPLOhppBUQhNZ0niGq6tdMYug9QiR9EO-6srNK-AJmwpOw-Uj2EBQ2LWKfNHWKSsh8AkCsqgF4LgirmXLMHT3q2JL-7q8pxeUYceKzwWDP0K889zyJ6m9J2cKLsDOeB8IIxhl_oAwRyu7fUhBXKX6q8HHFXBuG6J7t-YkiJZOUDwuEAanCpS6dmjPWiZAlpcQq0Rb71tS0Zr7lhoRuK2GDSS6VIlceuZu_9hKoYopmUO0JexOc_p1NzM9aGFNN1B4_dKcVzQrjC9IhNPSANvyGr9cZMhvfLcv5BPy3qVgCEicRnfd8OZXeV3Dq5daDTHX6PTu5JUE4fIhabwmGZDa5k80FlP91QNmKbs43Bi5wvjE819rGWgM2C9YAjcPlJW3L6G-hvmZFRb_XA4MGCxUaLf9qgW_B2l8xd9Yp1xVCWy_IW51ejQGwHyhUh7mJvZM8YoLcpSso1UppCqTmNYgK2cZAE2rxa_1wHRnvNYa7UxtvKAsNSRVHvv0RNtZ-bLF2NZknITZTPyzQrpLJ-B5yd5_OdmOTo_AB9nDCoxpWmGqiKZ00SSvkrg842GbAHMoIAK6_4GTci_iU0pO2mGdw6vnEbv5Ys9Fz9ZlyhIaUC8z44RvK-S_srHGjPb5Utpg2ko6yzOpajZ8kP47kv0LmMz7RasHRkn7sUfVUiu054Qycwx85CmHxtv1o3tuPhhdFyjOo25MHk158qjViF-w6dTig8hIehSC4P_lTPUf9I55EEr6tWHjr-GrGaNLxgmkejK-laAlRCW2_-ELJ5r18CuEOyQvpKx8oVpX1KWf5diFLYgdfb0TWT2b-iG-_fjPnR9HK_ApQbzGI2m5U-Tb0KmSt1vcygNUsURT73ZdJQ4NYGpiEPdxQyNLMjnaYRa2Yu59q2yGp_WXUjXUZeuV1VCIidq5kuQmEdjmomXjDt9t_7xF4_aAgdIX2iFBAL4ZxbeBel03S-Y3-sfG__pcGta8P7jnyJG_g\",\"recaptcha_score\":0.6,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6852c7010815c9-17550008','','','2025-06-18 14:03:01','2025-06-18 14:03:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43443',0,'cd-form-entry','',0),(43444,0,'2025-06-19 05:55:29','2025-06-19 05:55:29','{\"firstname\":\"Michael\",\"lastname\":\"Massawe\",\"email\":\"michaelmassawe4286@gmail.com\",\"contactnumber\":\"+971558088162\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7VcH_pRYs46UtnCeAp-SJihom6-M-hnYbafj3Kn4675JMNjUwH7eo9AbYd11AvyZDyGFYr0vwuT53ZIMlD4ndIQ5afwmDmkFE8oe4fZZ9XGFt15eb2uPd_bu4eaoofSvfgoGvoMBSRBUXEHA2IvEC1HK-m19dpeJL-mQ1nxAxGI6CecojdM92DdU_VMflySpLNEiTEBfvjmFSjP89gRALMRss9ITxxnHOy9x0eg7m_1NK07fVYD6VnUVZcdXmhS6GEekAferVZ9hvtgUoNj3svyZh7TFDWPfaP2ZdEIiVY9Ywjylp2YYbrRAScJ9GnhmahzyhwJx-boNxFbTZnOa5ILLdpW7iDAjw-oZqJWr1gWJAYI9pNlrWZ2ey9oaxbLGXFRtXfsFM_Q7frshRA8oVvd3KSlZt8MwCkDO9FgbCRFVAFWgGKTW036YW4aEj0ObPtHwpqolD9mEQ_thsn42SPPQsiacSBjYbtAf5vg5H6SJeAJbKvn6cR9vsxsY-_5SoTn1MSjtdnygbLsz5gSkfNTeZeTRmeZqTJ75lyqDyPVSUMxeWBdRex12qFR_v2M-5Y6clgEbUu6k7tEPFAT8Fkdp6N2KSr4ofPCeBNt7jSvfzVSMh1NUdlebtkSG-2lPAJu_DtsEvUAkaDKL1Eaz_bmqIFhwvM2Q1jpCJ5vnWR4P38aXr25VU5zYj-ZJJ7L4l2fru9cSmEBksnYmE-2uBMCfrkze1S71CYncMnsHtgv5d4rHrIIiL7WRZmR3JOt0lvzTwx6S0C1GcE3LfUPmsCLAWJRs6qj4dq1KV1sBR8z9cRR8RRZ14e31cg7gcjMAXYnOnCdgyFFYTsoyXq8qvp2x1VTYRpXiw93b6VWqEgb1-HugEQierXMVjz-snoBN2_pc54J0wADDpbhNwVThTUp0gnaT59Y8dCuljVfttf6Nme4b1el1ilL7SqgKRgDei1fpNnQyT3_ji-Ybb5KcJCaI3RMpMEPA4YY2gcNv99kiHnzXaNQsu15LzTXB5iQ3KM_s9Pkz3iYKVV5TVxErZt-TZ5H7dWMXNTadwVrO6Sw9ndBa0hP5ngGA1ruHEOQn-1fNnC4vPV0JtfVBFj2HFLIbooIHbrZcr5Y7oxuusSj6v3Ao9gyfIi-VYVLbZVE8okfrfqcmEW8vNcVM6euOoUJcB4w9MLWwl_uYMcGypYE1liZNS4TXK77HALtfFP0G63zEnizZNGEXaHhBnjAlC8udS0XRWZChrjM8wcMgdKYhF6oJM5DTP1hfTtdWEydIF5FBScLnE67aVV2XDb7_I0hjE3nciYdGls6RV6-fIQhbA4CjTdzkz0QSWSJFzn0noFEO2DlDIH5u7rlBUVmfIKkB15yCHUDBmQAd96-Dc1MZ-oISvd_MeD1AHqGhQ6R8JQCxuXYB5g-HOnYsEjk4Am6W1R7ysgabN2GUuNZzF11vYZvtui_JX4BzOleG3taCe2zqGT7QmJti_duIsFRWoa6MnWAr_MokJrfeBJZ_G54RDoeVnnSpC1j8YghIX_W7wM0_PK06hJGR6ColyHWP5AwBNzoWtSFNvsB672c18xvOGP9MAj78RhKNmrtm9kvYqfdpgI3Bjo9hVU1XXobXba9ZBo3k5O6igmuEA0hfmkVoOJ_nN_yi2Xru4SIZNx1mV3iVVRdhwpCFbfwPHn8Dd7s1TIx5d9pwMseyRyiEk8smwGia0giOX99oU_sGtICHAiR7zp_Pl9Lui0N3XB6SNsMPyKMk_6LycmxYhDl0gX46s7o-dSa7LGMsC_QIdJAC6eFmdTOjnyiHVjwEDxxAzq9Dv16vmhjIWemyNJGe3mBG2EtECtV2cqPoXUqYRzpdGSUpx9gFvskbKaHPTaTr4MELtSBYm3qRX5wFfWbWSTQ2qreJSd1S_Em4oy86NmnULn5g4GNlme9Jby_p226U8XKtD_fUiUihyRO5X_ebV4RkAAYrI0OiU98uOOEwl4NGkx9jd_Y5EvKGxRxLG_DxFljUkJ2XUynV1RSTqPOCQowcHtLT7YLKdd7R143A510mm6piLP\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6853a62a62b8c1-95862844','','','2025-06-19 05:55:29','2025-06-19 05:55:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43444',0,'cd-form-entry','',0),(43445,0,'2025-06-19 05:56:19','2025-06-19 05:56:19','{\"firstname\":\"Michael\",\"lastname\":\"Massawe\",\"email\":\"michaelmassawe4286@gmail.com\",\"contactnumber\":\"0545463620\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA5EY7EInXNE9cgedik7y0FbaEalQoZd4UNuMVKxIudZSyJUXz93eWyc9-u2SHU38Bvu985s3SExauhHWosRZbaJU31_DJQNzXIt3hGX2BpxZxVXfvlKGJpp8Y5-WwNriuRzTokVugu4k79_sLugKjWBax4_efc48kwcqA50-GNGQCuYJtzdD5fhZTByYs059JjG0vSx7SFfVjCEdoiSlgCJWBjMEt3hHWw68RMAbjEuUldyiYAk-iqjcm319G6N80weDuufxw5ICDkueMniAegtDmLpVfAK4RDtJfpwjr90GMt8MsTvspD4LgeiLR5200s3tuROETsnc_DaA0hO2YG63ZVsFHDxEko17DGKIK8Afgf66gkcpZBX5Zs3pMm-F6bg7VSkQeL2H7u5I8a14bVK2vNvnIaaq673aEUvAgTUDSh1H3SOHgvf_cnX5lGRS7jBaqA7Fh0DmamqIUkAoyNuhPjjsk_aw7jIqdEV_bwjcBga_649uiWLHGyIHt0zUjWtRqtaYnf2m0WqXV1GKEDR4iAp4Ito3oTStmMDmXul72FoLOTVKSjmsHdp-h4Uswaog5NXMS6gdv56VdPJ1wVajSq8b32MilzfVVtkMnnkh-1wj_a-8sz57-aaVAzqHLoRU3eFg37XXBBVkoe7tc9RxnwHEi5iBio2JHEhaGiZPYOtBYugn2z2I3qZKrE9rgaSXJ9RolL6L9JL71oiQAcFCdEn1E-Y_QlJGjVdhi2hkMkUSt1Yq5eV9ZwY32T_OuR1KOsAknT0yAcRgcnl1L0sMl_gPfcPEsDfQgxPAx4wFihYN9TU6VctoFi0psIDcIXOMEzOcl1ex4yIwVc2Wu2mOKvcOETVTSLOwsjUqo2Fc3siV0VQpy_DjbOB2YAWPa8Ef907UbZoW2KE69OUVLiVNrweh0UFrnGsyZFiGxvkom3CaBHRcWDIRixzzcIPotU-3FcWfL3F2H3E7OuPebhWOOfPycNgsIDypD85z7s9jAuD5YRDf8LkfYaSgk9CvhQ0itHJJtggLUDE7ajqACQSpCSm1eRPS6IQ0i0dXnxeXOIXoJqBkp9Vvjghk1btu-J6lBIeYUp6iMvZT2M1SJvrmrY5UC8VqXny5G5Qcxxmh1h8klp5aMU5uzIO6wiTu5tkmJx0nbk5dwLMbbhAjR67S4ExpBs08vAJ8PX6RXT-Jx26Ac1r2_20ZgzAh_VUC29NC8sI9mbxQGOTa-blwHoUaximxdJXpocNo_xe43y30NiQITycAvtINAWtENCdKWalOpcIRVOVunGyRzJglr-KHT_F3eMirzMiU80JG0MovQvauqUmmIHXN7W4jYwyZaEfoOssO8OpZBDl6Dn5XZtmeUmsr0_TQFHR17l5gm5YcycQNaTp2-DTEDO3D6PRWR2tyRkjeM8UacdfBtsbDSekmbQMOJbbHR1Ui61_irqP0lTllxEtWkQ0A_qIvK8pv8HtLCs6dCaRuFHDlGmGEpNZlP8CdglZ2pOLD7w_hc_OPUXKl0JOxAefX4SthXwUWPe9zbwP3pPsWgMz2sE9vKpXlQCOwIImCwEOxFIP9iwmI59js_YylVQ_JacB3gab6tEUs1KVCA7fuvENgE4l0pE8ytOPbWgp3mugzpzYxw-hxvktjQve7tnIvfFhOc1TdAqrBExCCXp5Vf8wZU3juXzmbI7bt52FsGfilOtOAxmDlWLUNBlnzu6kp0rcwGcETuRfcjGbPlt1Aofd7MUam8DR1bih_9S_C5YoiVqyqLmDj0pwyLoFOPag4IXpfccemoGkElr-kZ5DB_tzozEE0TnJPBGadhLQVnu-XnUd94FKHG4SCWauek37FgLiM0V-yaZK1fUl-V-1PDXvSSdvmryVsHyBkfBJO4iBUty-LY7TVjWH92U6lF8OoiqsmSDbVbmtGmRc5IpHBAza5ABSpPIFVmD_nNPjfNC5rVn57w9rpx8O28kOsVdXwS2TgDQ96UClvZEJ0X9HCDjjSs3SaISvwSxxy2mefZJ_thW1vKoVpPE1e06RNBE5jifTF1dTTN1Jhyuo\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6853a679906084-45634804','','','2025-06-19 05:56:19','2025-06-19 05:56:19','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43445',0,'cd-form-entry','',0),(43446,0,'2025-06-19 07:46:15','0000-00-00 00:00:00','{\"firstname\":\"Amy\",\"lastname\":\"Sharpe\",\"email\":\"acsharpe12@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/hip-hitching/\",\"recaptcha_token\":\"03AFcWeA55HoahPlBUMR5FFC4JXvXqF3QF1ixE5lpmk8oLQjq57-fO0mrG7QZ-9zmVUCOYO-Vavxeny0EYNkS71vEIEMpsV9IfC4LG6Ycte-Q64oRKpceyX5oqCgx_Hzpl9TXBdEnAKST7tqzMs5kwwkkt2AM76VjfeaI8rHS7lGPjwbHMM42Et6bh3uIkccAyT1mW3edCfamOw_S3xu1nlFamjpMHGMdhxAbLYYSIzdO84m8Kd-WpiWlGGQAZPI3vRFU36lzOajwcG-s7NmKvSlHTQHSZ0t1ykCGd0qj2ZXBQe3IfKZoVxlJn76mj7t0BkqqGi9KmQf67O0fBkGaTdgUVHL_3YlRvDZ1zNxYbBm3CmGGDQnupCJA1yjEQM_sigKzRv1tfCjHB8rRftceoFqwwzGmZ5ewCQWhwv3qX-cbbTHJ67SKaTvUryweiH8VamJnwzhgcvhsQnBBMZIYDPx4PVrRlf9FB4Cn7Grn6TMeHURDT5TDbo67bbHA53gWQ6omkOjSFiCudQo1oeZJHcQFgzD1kwC1E5bZFhlDp6XyGjaBM5ZC64qL0Ohk3LJ0HtIzIfcDLdgGb_DYD8YkYqAFGzzoQuprd8tua_4NrziHc-BsRQB5A8vUSHpSi8ghZcgj5iVqKV7iD0xDezKGq8tl0QI1nTsbdmRmApssUi8HGg_FswXscypox9YP6S26PjDoZfEFBjaXrFB18FU25jt5E90Zx30wnJoRI8_0jnG-BNBXPu4UuJ-9yjmlvPT2WBSk-CsB6LZcpW62xiUweJvUsvLn0OFyVuDV-XJyf8oUe6TeiyKXCX9GYNIs190RvP4YnYpXau25GDDEoo1O_kC-Zp7HRJ96tFK0WLUV9K8P0Z06Mpiuu3Do9zxZ9itjsY6WnTT3ruMsgfeftw1NprkJPwzNYPXPXbQFGdT0g0Rlxm0bD48-OWn02lYvHNfrL-AUpSsdt526_WLIb2-hWD3zY4-ufWkJSYGRwMzexqqzlEUYRqntCtrsg-M3QJwxfAVJF5nfBCqdxnIBazJmcFLbMjkF3uzTSNyRmHXz_tcXmmf7sGOqv2P-ClLZZkqF7HLu2XGwGEziSA--no-ZqzByx2yB8g886F9OczF9lE_oyl7CR23vJ4kijGd-e68AujXQOTmQQaDV5eXbTG6VFQNCWzoDmcYRNVBEoEdX6eyXYKiKjhFfvAwbrBEoTaQegrJ2y-79JtSAUJCVwi0rd1Kes__4F2vdP5r_BNLcsz__rGS4NCOzooUPEEwHSS3QvxAcDyc-n3whYgD1HjHGgYtmBYuFixY41Y8lhd716wRtb8qZTPUT0ddIgQ_9PXFfbCH_831hwXjuF4WZ5Xzrkf8QsUi4FvxzIt2NQKKG06OKh8KmKoGSmBYo4ALn22G4DK80V1XYHqJSZkwViAiCSS6ihBhvipEWD84Fzdls5CPJYrr5VudOcuF8pyvQ0jj7gSIn4ovfxtjeEzVf4iZhEQu2qTOBriNsz43QMUo-OiPfNIYzh5lpoJ0QZ_QXFGI-amC5bkb63l056hU_kmevcwXK8B3uRIf_UtuuTBlo_HByBSlw7ruhL6SA8cqix12PD8iMDDXdhWvtM4BS8_rTx9Vghr4WtH33BhMLwO1zxeg2PcpO772Pr4s9sXtcgJfjJ518y04htYn7A39C39Htcv9Z0mmGMD1tGQXTRHORaxw7ZlKcWcpIpoRHoWXU_RTbVnlA3ohzmbBoHQK_dC_9EO82ny6odWRwYjoolqlqXmwBg8FMx1wUINBjJrZ4cWTZv89dO9sJS-L-cvpIeB-XTitaEd6jGxZm7Ngp0K1ZDmf6YkopDCMIEXATQp-2f35BdYc5wOdK63_te7Q8MvIcnTnrMTPWvn9G-WPq2ItXBFqJp-aFr3-w1Ku4Pvw83T-NTh7mMXPERzhvj0OTem4Vp-wDruddKovayav9hLrhfQTFkWTAo98dokUwEjAdrJZRm3TyCHrlrCNkmQpEw0qPDHpMH0W-LqupGIJovhoaQvGyJCr2tsRF3hjXugfHkDISsOfuni5jTZu_Lew5zaK2xtUzfsnDcxsHTiQtZc_zljhpOeOo7s8R2MqMvzH_PVmNBLXIDPgz5uRR8Ds2nlLWuc4RPZmLu4PsVpsYDcwotDlc3rOKPDYejirq6dTgPZsbiVDBG2b7W04Du\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6853c0470bacb3-27948609','','','2025-06-19 07:46:15','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43446',0,'cd-form-entry','',0),(43447,0,'2025-06-19 08:02:16','2025-06-19 08:02:16','{\"firstname\":\"Steven\",\"lastname\":\"Hall\",\"email\":\"stevenhall266@hotmail.com\",\"contactnumber\":\"07881345228\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw6s7CBhACEiwAuHQckhbhFMCmOmfoocOiHdYfj0AnMU6wI_Hc8RwD67qq5weD9xcMI9T8FRoCE1gQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7MnP2KfowGtyfhCSXq4eCPKsvTy0HetI5GVTDMylN6Y_qggwgfRTOekcR4iz6KHgdGDMgHZiok0U_1Kee18pZjbPtjFroGOT1jBoN2pVZ4kkY_MGTAk6S56dpNvthIA_Yo6H48zIWgfNMP73qj99zuxlq2V8Xsov1xzLdvH0ElTonL0QafnfyEmFGyrfecTG3Q7LT3x6OwlQm3KjSdHQkDKeZLGr2mlNf0pt_rCQVR9STXprATdKMjt3i01lmSbQPjQN-JopP9rYSOOhKMk-a4hbIwx98N6yJpn0GFsO08_GJqLpws3tzchnipx7FA8zn8ZsrRwRc6WG74NYB3k0MGVCpUYeo3ZGllLfgJ0_QiUkr-eEnlHhpnmRnraU7ycoeoFU3kPLvkZhn2KeOIpJCYnN0NHx6xjynvN6k7TiBLP0qm-uvinzn-LTFaXb8MmUOBT5jcYaQiCvwmgwGmM7VH6KzRT-96ERRSZ-NKUkPp-TNVZzOdLu_GTH7qUpLOMyfJIu9rTCPQz_9PtMjaN21HNagQH54Z0Tyrwah6PPpxvXFQB5rKqLWAjyqeHiOnR70-QCJu1H_SYmyWtZJiQSj3zr6oekMDc0f3jBdB6E1TKUrHXVLiAGzYqMNc6yZDwlc9raGzJdZXDLN295zJLIXyZuVPovMz-3kD1tMcaQSQIqLgI8nn2o0bmHF5aKvw9AuJGOdZKXq__Rxc1rsDHx2f4YbAfPuZpEMuW9HqhL7nk1Byc1xKsNX4KS640glqnqwcXpXnTHHva8z-pjBAhROR2Cc-YoQZefpLq_x2OQpETfGqF--AuOSHwyRro6tlPRHSi5De6UxKbiVAoPfoCU_vTvhxJe33F1ER0FEMg-9iRNI9yQhfmZKppAEdAmtfHgP_kteczI7esYbuovBJZtwWQoPZWvbMS_xziZRZN6ld7ieO68CBbFxWy9fXY_GPSpDfEaD1Tkq1ey24RRFJUWQBeOw5qbSvk2wBI-ci1rD9dXGv1hrdM-31dhtNHGK4CjqSr5qRlMtRjVuSmoVCGGdNUteBL5pTLsnr9EDLlakvJFsgOZtFFLazNVzQ8m4h2N-r-LefFljlj1ul3ObomFT9OxHZ6YM9XcV-xKaDcUvcP0WeRdeJHfAKc0lE6b0ZsiiMvDqvjkmGyaqQ782U1ySOEsRq3rrMEl34KlIfFeJOlxKK6r5d1Q93el42O27BeEFsg0YufukvNzwdPWIU2tg8s44G9zIOQ_Dt28_MOPXcyK27cxMDPCzjUUmdjrEkfiWQ3jn73fhbmJBFjQ2F4a5wOmubBVmh9i-c5NSy-Uu9AnH1MUW-XUAVp9fOj_NNnKqLDlobxHfoWn08OMrHNF2zZvbFNbdwDXrT_ABT7kNriqL7z04zVUNrmniEC_P2qro_CWGstaMwVCqLO9itaH3qpdAlLfAOoWhsg8_UgPH0eV5T6gW6ledKnbry5Gvfs7-C8HOtDrxUPTtuYGkclS3p0LcLrHKiFiMWsUU9Ax8kj03bTxeV7bU5IVsyTlqFrANISv1clmx6M2qhSt6IMC0LEeGLjxyynNHedNjzHNzOZVyQpFwTgZ1gOyc7-EsR6y9S3LxetTVt5qFxZ6XxfwUSCbXHUMbWCcy0ymjN8ZBOVNWMLU4gaUngXprK-OX6vTeL76koGGdT0DtTbAhItw3nkqMwQ923LT3sz59309xSTHrjtop56Iq8h6EYsZFXgd2Vm52wdZtyi_KfibDC1tRCW6_EuR5WGtxGBngrbM1LlxEQrcPoKwPQZMkpkSlwZiCtNJD1rLsPDR4S4FwrfBDDsCb6AWmtYK6tY2GYDTAsBXfDdNZ0FN0xoFRhLJ6hXMUjZCjd7zks10rg-CE4lVPxJbYJ2L6anhViaLt730eUrCHMaf7Ttmx555jWsohtIhceFJlvaVMIPhotbGhTCvdkCNgNaqFYIUYl4QhAdt6wneN_Bd80klllxZiFYqgKVajKRypu6Tl0Djp5nNXPLrHm-UdVIsK9cLUHjoN1Z79XH2yR_1FGrv8thajlJGkiwZx50DI9LpuLhGD5d5Pvjb46FyE1JENvUTUXrH8t9mJsbRs4kOODzttuAv2ZKzJQzCixgodh6HZfxxfB_a_WRlXXjnnSNLWdCTRRgPAljDojg7rBfu8FmRw1RaEEC8VfNRjd9TixSHYjwg1taFrX9eVf0pa52w9VhUKE9I8t4e0HSEVXuNc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6853c3eb977a77-75276888','','','2025-06-19 08:02:16','2025-06-19 08:02:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43447',0,'cd-form-entry','',0),(43448,0,'2025-06-19 10:51:36','0000-00-00 00:00:00','{\"firstname\":\"dan\",\"lastname\":\"ford\",\"email\":\"dan4rd@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6-zxb9GyXwCp2NSgdS3YFqi_jQGwH9GWpQ11Uy4NryINJcM2n7pFAn6hAbRD35qomvsOBZDsRm82X327NjoR4W9O2xLessxay2RGwmuQuDE69u6LBdfsONj7Biv17O_cz232WwagpF7-dNY9jCDLiAsf-18-ZfUgtV33XeAPqEavVJqep9oj22gYklOrGNlghQIdEzl3l5QBQ546_zLVChdGO0qwxBmyQIUFeNy4AIExrnWsnytrBGrjaJ2G-1NfECV6vNo_BRbQzJHfs4DRLeLwpBdX1i3Uqrve3mDaq6uIlqyVv5SDeW88WQ8ZQO4EnMUnmLQaNt__ftPxt9RqC-3pgDvdOSK68FbijTSHhhORKC-sxgc-Gem48QvsObHdupkrDYy6ny0h6y8tN2AESxi2WrR9bbWxFlBEW2CxCtLQ4wGeT2OXJkdg6f6EBymO6XHYFSozqpaLnjXwWIqqxoxmFrvjB6VUuKu1gXxTCHNaZmGAMWcjWYY62jzfvG8PcQZVMySSQSC7Oy9QMik3KoxR9cWriHZ73GhUTCSQg1nlljSsHKVChVp8Y9Y9JJcyeZSihCSc7lBR8MYt1Ui7LLpsucrJBANyMUzMSDwsA2ocYdAkd36zwVJhJ1sR5-MdCWaGtVT9MYk4w--fnO0Qh6SLdpaUfLA1qXWFNZSeE8rM79On1qwO7UmIlazRCUa-7AK_E0cp_dGuMGlzUGXd3xbNJMIUKGGYOEqM1MsTAYj-eVoS7che_98oMrEDz3Vkrcs9ER2GxqTyjk509iYoBz0OnX3s4gan84iGdyeg_wrFABjsy7ttf4v-jalFm7BLH5tgQkbj456P1awFx3jzjPGIIqco_7mmKW51GxOHQtMGzh-vyG7i1s5-1_LwmOXDB-09AMeUJMc3ZqDhKzv5vVX5rMFrsln8ffTd0MxsiMrisrgtLVLha_AakcmNyMKjKNjgEaNVOJvFJhK_yDmDidS580HUzDU7EwHpScFoBI4yvoUC4JuCcWpKYvM6twnvQrfTw2CynknTpW7TaTaQpVhgLDGuhabz6CVP9FPPX--kgJZiKYQDXW_QFQ4zXQjO1hJkuDT2jok0svTjVX7AOkrlg514wtVE_gbuGsAdolWrau7iJ6Kl8YGyGxEFAUWdk8iR9NdzQmv8PLm6XAodfovMp9rTtbVAx3TFMpDDEJ0q3o3vZEkz6EtxkBbnlXm42WQLM93EtBMd0smgoqc3qVn4V8-PvVQ9xrTPH-zaMHfHxInP4fz8ZQnpfX5k06pr-u7mgMW477ZG8YR_bNB29sYrtCQV6PE0vyWkSfAuGXw_m003ZsTSX5jdHXrzZbMF2WXw_3yGnMpU3ZSrS1PHOgIOLWhQfH_vIx8IY-smKQYs36u2i4VVzBSBOa2z80dK-ulfXpfKAmnizmVxx4twnGuCQKGBkmdrB17yw7edqZE47Nb6JQWipWRwqG6VIgObwCn3gbqMSWoRcK56aJiu5J-raeIkvg1defLVjmNp4GSJtk8Xxc9abYF6aFlHiex5dzlq3W74zWmzUt-PakEFx5zYHytzpEnDLqhiwyWwyx5km6bMKRho9nzIAc0WKHDqFZNCll-MmFaIuq2YobXvlm8-PMJCqBbdQBzb08OxEDf7Qai0VGqiN5nFBm-0UYPOJB3HCH588zvNfrXGsbo1N120MD02rxKzm21GS0QVq-ShY2ljkVfzvvwUIpKJfCa_dtT_dYvgKocnS6Y8fjfT9FL8ZhwuTec_7147Zn3sIUSRGA4tB8E2YH8hFkumA5lnJgCkNBm1BXd2P_343IFMYZMhTOaem2Ib66HoyuQz41f75vJkvIy8q4APf7BF5xk1QpbBnCCDXGQLDqABJ8RIONRR6k0mfTWh9iodBjZvVSomcvA0DRzgE8CXWXkuN4f-__GvY4-WZBNjJDP5NC-Znprh1CueTKPFgkDncTFeYZSE-91v6nM9bkqX7eOu56YuR_iGu4UVKD3kbi0kk6lzuPLp-HyQBFZyqJdQL5NSeDv8MulqEz3AIKwFo5sfOCAASsj7qa\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6853ebaa7fdf86-08003352','','','2025-06-19 10:51:36','2025-06-19 10:51:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43448',0,'cd-form-entry','',0),(43449,0,'2025-06-19 11:02:49','0000-00-00 00:00:00','{\"firstname\":\"dan\",\"lastname\":\"ford\",\"email\":\"dan4rd@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA70SuuhRUP_a8cCEq3S8RQf8HD7aiSwhUHUdnJuD5y0nPE3uSBdUgzJXubKI9i56_mVQKxUVJexykabKJvOShEv3PSeeaAHtH48Bz7Jp9spjwJq1t2E1VKKrQK46JUX-nisy0kfgUs0Q5rIFnplwzL6c-Dx1JqvELypdRTcmNXWFtevRp7I2pVjfBXSJR0iCDW5Hrg8_PvzkYjNtsjO3gvMYw66g0BjR1Ae2qF8BkRHnNVR4WLi3K2gY5-5dTAFuFAD0A3lflbuUW-3CUNYjyaIm6vT_L_Y7yiGPmVeE4xtzIusbtB5W6-0aVqlLt0oSLlvpR_UzS5kZG9yuaVMD6MXp01q5E8D-VygGdZc2hM-quCYtl6ytEf8sDYjRH2l7lNtce2YySm9PB1NjpWQzqj_VpAAp5YuMbgWmq35-Sgtf-MtvJiz2DfGh45hav9zuaB2MmMwVIWhTDqUth-HP4HN5UQfz8P7pWLM_pUduBCOQ_34Hvj-oPADGYZ1pr30PL1n3r45p12PDx5C6EiI9U8Fz68cJcNea_0Yrt0ovV-Csa8zszjqGJXzhGn1oZvjE1g2fWNZmB2c58-mgFhHS1GRMdKYHvPJY0JLaKnMwdciIeYX4PwlIoAsTndMQ9CMw2zm74qLmjI_p30aRmitWKQuicu2mZQLigJAXrV1KvBo2DnL3n9gsZyOViEBHfdfiUVwsDRpaqvGQxsOTgOVCYECiZKhZ7muYU-7PRNS01aXbJGZCJd0P7Ns1qYc_mwvfvu3xpk4MCtz7-8FtvHhChixQ5AKQSafHsxJ1_Lg8T7eVBSYancOpa1YCrvJsWxeslgcD0jy3xlMO_4OUQpiRriwLxAtt5dNqM8dTb813zrMNo3d9Yl_zGQsyarJsaqBWe59z7diChU49tAxpxYko7Vyop2QDGhQ9r5U10o-f7_pqHeIoz2UZ8h9wAYm-GBm8rFm_iqBoWK7_RqZAoeJJj0sDUl0GgMXdlSL2J4B0Lolp4UwIow-y_FCF9z9RO0f4XEW4eTYYWme3zgzCzXMcPyhCWtpB03tVIm-ffeHJ3xeojrQSA6KvQOpGaQKYYI3Wo6-Nm-D37uo1ZtSi5JWDDEtz-zWgapw3_K_1LScv_kHN0rMUx6YLFPkhw7NSEhPzMA2bXmsaNGhATFHvU_64oqesrJ5pHJg04MdPo4ISsBjpOcpylnM5u08fmguKFt5gVQshpLY09B1xw_9fRKQmq_cXwzJWeM08nYOqe07oxw7Ll7olx223aRToxdheiqbY_K24O99NtV5EBlXmtQUbLlWbG3mtYhJDNFkLfA1W53L9H-1VzTalMowjIUZuzp2ZoC5brY7HmTeSqNebWOm11XUWqw9ODLN2hFo4JI1jX6vme8gpBaWpgcG8CWMivTBqlCqhDXW8Ku89tkmEDp6L5xOpsa5cDjyvjk-QGcN2p79neCCDZOiR2X5SkfdZFh8_NnqlC2iC_GSasaF9Fo3YCFiJrJIoduSKG_MJsxcBYcwX-oh7i7FNyRVbzhIIIOSoRvlQNWlZ1Okw5e0OKxHNeDVd8vwcv299YVL0HYm_plSaCt777LkOzpH0e4NWkgppcpVK2aDpGD0pipZbWmT017GtRmlVYbNmuP2OLYQlyjFnGa_Pvo_95Obv7Tg3mAkqN0WnkSJFq_x0puzZOjFF9n_eD_NeWUdt3FeVA1WVY55PekEcFdPw-z3kxEUPg5w6IMxqwi6TOHgDAARl544np05fXFpG_ngtulAvYH-JmlR7I_te2uUY-eh9g5pX3EtF-TKa78eaZLkSeazPD8aeFx0sKP_uDeeXhPIGvKlpMAT8rwc8bHzRCmOpVMSv27Mi-BQntDfRagAhZDkKxEBc7XMMHr6jmhrvMuu74XzzzT0H4T544146m9dgNf5lACl7sL3vakh3ob8yS0a8WSqpV9AJ5iks8F5nNumoh4He-SsTx-TtsRxJa_8rffzqtOjquT86Lt86fb7QRXe8My58rVmk8y7YMvozHN_9JlDLwhTfFYkkxvH67Cx08plspT6r8GEZOdO\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6853ee599da412-82231936','','','2025-06-19 11:02:49','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43449',0,'cd-form-entry','',0),(43450,0,'2025-06-19 15:18:26','2025-06-19 15:18:26','{\"firstname\":\"Dominik\",\"lastname\":\"Kaczor\",\"email\":\"dominik.rhhc@gmail.com\",\"contactnumber\":\"07538189418\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tWkn5d30pOkkKjWlJ9A0YUz&amp;gclid=CjwKCAjw6s7CBhACEiwAuHQckny-NdOgX8aOeZss3KsiSv3SGxDbVOhjtRZJIBm-9MEk-eyhE-INvxoC2C4QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6sghEmUnn4HzUYmvI229v21gWepVmPL-5WWVJyvz8u9kcnXqlICkClydjTXJupQXSllUbpKaIdKino_4HStqbYK6qeWK1zLugmq5gKsBBYU3KrXPQ4c__lYeYm_aXb-3kDgmyfeq0cQjT2Lm5aWKW5cM1L_TlAr3Q86Jrb-P4Oyh8l0LUiqoQVV8iSsW0G-39-953uyOZVs9l3lk7g64ZRDI1Ho2Mx6vGciDN08oZidphCUAxSF9Tz1PPj0mNv1vTC0S0oW_J9bIOQi4hKRlJ--hNlQnYBPIuavW5TTG3JWDLzpUgYt1GVs2aSSOS6uAxGEqHv5IeqN0R-8V5KpDP2jWxM7QkKIq1YBEtyr8Ga_bC2HUEQm6uuDYNsGuCdOHQzF3-x5IcGoFlSf2BJ1xaCOApSo0khmJt1fP6Dodrp4kw6OjDGR9PBOdp1SuGlVVwRwmeJOtqZ5VC4zIkm0Q4RSzETr5WxXKPSnnl2vJhe5X9AeHYcLRmPlW33BUl2N5GB_fRBTPPlTA7kCKmIdYw7ktCpjiEWUzo3MGpnCJjw-uMML-6gXqBXpjATphbVFZFYHniK_flcGlFwpBkwv_uGC7vO3lnSfZrKs6PUhAKCx2Adbv2vz6NlyvCIEkNW88PuNVwn1_r0WAbojJe-5LpLta1lJeQTPIATLk_8iSf_VLiv-KEunwjtDcCinIUw4WWmaGdav0Do2fc_8-Hw2iJxFYZmAAWAI-zmBFxJabgjAqpd8XDRACSz3vcyPV_qGMfLa9fTotpVwnpv6Y1a4xk9E4fi33G-0Buf37lHh_JQD_tlunwrh0HJdWjGImW28vfTGGlYYmwJalw6jL54pY5LM_TdCu7yNaYss-vMVQjM7H5lT0ZajMHuwhJ0cP1cz0auCPXwjxccgRxanNukTE9q9NOe_9heqIIzRVzZgT-qQds8txDq8Pl8zyj5QCA6Zi1tv9Kj2LXE3dGDRUPZGvPWYcgyPTIFoD1WknLcvJ1KLlK19olKVX-fPDdEvZxSUJ_ayK-N3fuxa-H85LnMDoaqYUqf6KoX2eATVUyqv7c8KNUirVfbZWnyt_63NhkicKz3cv4ylzlzNdhP3A8E7x3lTBv_VvHbkaalmJqEN85u4dMoVNwaOTzoVA_db_V6OjXvZoN3OZp2V96_NkPLID857CIbM5djKJQqDP85saCo7nvIn8GLwkBsI4CT_fr-EhidMRxYrT-etlQxV9Xq9WfqqCoKM3WqzVUBBlQNkyQ16afjDxwm_TU35-HYG8pQ3jqM-WJ18O8eJTKu8ej_1d3vDp3qGGhpDZcvBEipqKjJifXlbQGyOELhKDQsSStn4_c7ub_Buo2onsbutmdyXnbder0n6D9nuzYch7za1dddOnc4ZFbtbN7q8euD8n5tYetTZIJ8hCTbP9sF5WDUoadXWqzx_gJN0PahdYV2KyOpigoc4nF3KCeaBTrqs07eRTngU48bl1wtrMEFOVCt4-ZZEYfZZ69Y5cOz8Ee_mnz_WQRUsewtN3DjIucpM-fc0MXDhCzxZzGJga11v7AusvLX2M68NrjusX8KV6o-PcKvrMw_e5PmXt7pFx6AsgU4XPg7AQrB97uUMF_dzJtgO1xI-IiwYtxL9jQLGE11XNvgfUPnDGY-LaHZsA0i4_qE8Jisp2aluN8GVdsRACI-VHJghZCUfedfvsT8Ah2jHngLf4Mu0NeCMJU4AMySssAYW57-myMAWP0C_WzuvR-yhhe4ED1fh_m7fdE9d8nUMtqD9_Vp26TlqbfgPXLd6_s23dOjGqCyknHotPpeltXuTa8xek_zVBscM4fQ7NlMT82MYYbJu1AD3mz06rWSWTEA9mI2-wqJ4toFuWw0cSkhtiMFOvI1EDMvcNEpCdZKzM7JPDnuJ8lZ65EzrATB0xSCNYll-lTQRSJYBoKLwsp12f2e2ZbvwqFsvjjxni1NsHriP0OnC69AiZP7ypYqnrtGRmNdqDYOpphvgIQro1762RWZaR-lZeAiJhdlORXcAzmfhXEOZ3nuHX0vaFrc96xqcqZcbl6g3qA1Q4VE30QNRto-E4IdhdftUacOZNAFn0GeRjTt8a8XqujPxABwaoA9CAzUbzgJD2800JUc3z3lgot9lTl74Kr-SGjstT53Cflm3t7muxcXwaiKJ9yOYhFR-vp7ajZkoWEG1MR0E_q0wKXKSvOutCxbYZ0Ivfbwiz8KdoXNQU9c_a4bNzi1xinlcfi9rLpy6dXHVeCeVkW0qYJZ6UTgdx6zWQmdlngMskdhCJqUl3YmLeu0KaLZQao2iWI5PnYRl91L3lpgu3H1xRLIrmU9b_B32cVP3MkO-2pLCleBZWXVNc621IAEN1KRK0CukM_iz84AEGHIm4ZJrcJbzu90Prsg1Uq1wA_7wXIbrrMzyrWXO_dSmewm18xH52CzYpWf\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68542a2c0d2478-57004303','','','2025-06-19 15:18:26','2025-06-19 15:18:26','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43450',0,'cd-form-entry','',0),(43451,0,'2025-06-19 15:36:33','0000-00-00 00:00:00','{\"firstname\":\"Naomi\",\"lastname\":\"Cahill\",\"email\":\"naomicahill14@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tWkn5d30pOkkKjWlJ9A0YUz&amp;gclid=CjwKCAjw6s7CBhACEiwAuHQckvcBkSsmO4XgXGaVpHqV-kcIZ4v4-3Y5MIaSjhoDthYJ2MngPxzuaxoClW0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5rYn9D97hj6nwX7tZ4hwTUs2gY2r3ywHk2SZqKKJpfSABkZr6gbAoNfm77m6Q_qH6AqmBfHZtZcbruBfeGl_0-0lpgOw07wKFHki0b8inL73vqVBEHtyu6W-i2hgEfgtxexYVdworrjbqQ_U9N0keTAwb6RLN-9MosQWuamRmapoedyjEf1QvAoMigi99kuydP8WOPBSKTmFh48ltmYJjzC-rNw20eK9h8XT6Uq1dGhJpGaGqqgYWHtk6SIcva2sLnH_hweinlrsYLlIdObawsoBOcwrxOfE7LPHm99hX1nDmbVhwLwt2dykB4AvsSNiS7IrS4PgxfeJfoXyvLlACx_YBUF_hSBQ9cPvQj70jYCKmZ3SvyN_NCFsaVhZdiafMYYM4-Be45euhZ_vwqcuSP0ZzxqiRZakoOJCcN0GMAYrfSE0qblZGRrbwVTGb5n1WTHn2EvmyI_rdS5IbAYIyPVRHNSP-cM6vSsCr5hkCP4sUSGo7cWPSFpN8Xk3hMMyeEcJcVTNG9NCiRt6c68r3-mL64pP6kCWBvSJezPQpN6XdAK4WyG5WNBp8NEzXsUIE08ZXCvAmnWNt_NI6DkwZaXUMH1OpVUtDUvGakz-QXQtrQgw_8bv06TSvMlE4mGPy8UaMc36xvlLdM-hUio7HX3RsOdzqpDeSjywpAd1gFerAi2p81Gw-y9cMIx9BOTH3-Kqke8KRZ_bq3w0m4YnLCwe-M8gqSEF2Tqr8eyf_MMA4AjfFAQfdNQ9UNDyaEJpnKthfmCMwnZ4apkclmySkNOigFTmpSa9mWLdgggTU6Kcau07bAMJ-572woY2JlC1ZRZXqLVdqTh8jt5ABsm49YNJOM8yl8WhQ4MBDbogJbwFxYXKJS65kYyIQTSP7AktVOOuCcxRKVdZJ7Q6SwDrI76rnm1-NbtZ0XjnJ-lH58GIGKXmOcbVpoh2rtEQMHTuBSWba6reXlmMswvwAxZxslIgl_DGsZcM93rDVAtx35eknV0CsYwy-mfCx6KXoOlbiWIY2yPXd1T3J5-YakDt7ofvFp94YOx-SUYnqoqGZ6hI7NDnxlWamsUmAcBBqDR4bi9HAx93QLCkQn8jvK72A9jO1qvbHBO_jz04GB99xwXkMKdL9HGHl2HHzAIa9v7KkDjukvLHi5QTfSay_N_D8QVt8XXcztGOTZixWVmTil__pj8TdGp7S_8ZxQYytRFCyi4I8K-OypQauZSXR_PrewKgaM5Xqb6kbq9W7_UyUOA_TnF_a4_LjjZ-urIxum_hrfd1ULlnkKPxisb8IAIuC1F3-8cDcAvj-w98IQ6IFLmOxTGx0ZvvX48e3f94l74w8J7LaJae62Yw-TYHGDxdugHnw9pw7oFXTD7X5s4Uo4dqlIW1Z8DDVYZx1g9NTT8G9SJJ4h1-fWQUKMtqUMiwMO0Y_frBt4XWqrW7tfhxWcfiRl23vU4dxoy__orb8JhZ8YmNPC4Di2XCXLlPeiWuY4SNURoLdr1MaFZkiY5hQ3Tw3nyiVu1fxN34zXB6lroTjHgp-GyUhWYQkqj6eimZSTcJqctZleMQ2DTr63f06s-dBDofY5CZ-RsjVwXgb34PdRrPmiHnH9BgsiRoWRSmo45wiyTbws_GH5zaTZOad6QlPuhIOTgvp-ochBTw-0kTDocVbskqv8Kt9UV7RsIFo3ezw9bDlESJ5M3XkCCeTP8lpDgxM2AjTirMPs4HfL4UfQ3UUm59B4x1fB-CQl-sjFOzbHbk5bnJegeYRSHGFX1rQmnI_PZqSqv_0VVm2GXPXIFbf1fl_VD_tYQ7FZKkLBhMmu78RFA1jCWfHyWVwoifHjTOfY0QsZKuXP0zFtGHBihEjcJ9ihPIwxVIdlQ08FG2TRt0IBxW4sLohB8UfSMjUol6MiS9T9kVjXQeEwr3F4pGgKFlegKDTE1sNUoihV40mQog7kjLUCy9Ff_EWxYIrVDvgrVcRuC181GcgLEEm7NEbaNNUJv64Qd34w_4ng8MXpKvqJw496-3haXb6rnRP5muSh1mjKI3BOrE0vhLY_Sa2_EHNY0_ASDzJ71DoamdGowoB7FeqnITKsLGL6hmsyaa-VXHU9qCU4-ezz_PF5U0bwWBlNmNoRIQHjlcOiVDbduZ62n9Ct3AhtaS0RQDWCyN-IfLmAblxx5p5vHHLPuSfD4U1DTnT92ybXHsVapQ_bGPvt8Wnk3RuInEazH-FcQ78J5M5yqvUH3hdqBpzco7tuMU_GJC3qoiX4W8R7CkoaO7YemFqKPHxbw-V-ncS76L2kE31NqTMqyoNlsBlnSWYztQQjuRZ9T1WGtTrqGpBwGpQ37ejsBGB0WxoV5PiOm5UnP2rRkS_6tHpEWBkf8azMDYi4o6I3ts8497666BhBN14cPrr9iyMQubX2PNuQSUM\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68542e75576ba4-28326510','','','2025-06-19 15:36:33','2025-06-19 15:36:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43451',0,'cd-form-entry','',0),(43452,0,'2025-06-19 15:38:05','2025-06-19 15:38:05','{\"firstname\":\"Naomi\",\"lastname\":\"Reading\",\"email\":\"naomicahill14@gmail.com\",\"contactnumber\":\"07562343781\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tWkn5d30pOkkKjWlJ9A0YUz&amp;gclid=CjwKCAjw6s7CBhACEiwAuHQckvcBkSsmO4XgXGaVpHqV-kcIZ4v4-3Y5MIaSjhoDthYJ2MngPxzuaxoClW0QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6O1xlPE3kMZU8G6vCXj2H6kB87RCbfhsnC2Nfjtbvm9QULjRwk7AWOBykeE0ss8VbZLZSetoE2jLsqjHp6jTn23I11EY2VJp1dDl3S6-GRp-IDGH8mJe-wNLlh5n7TL666hL5zyx5YD08i1bsSo8kU1-vHSDIP3MLt9dQoxgCWOy6F6vN9ULcpl7bbNoOpWxNbpWQLKOMPOESJTaBNLV6uw57SJmGaekCMYoSgwY7uOKo2pBgPdyBcWSw2_L8v6GHBmeUHLonbAIFxrsD_jBvtzZfnDQPoBXjCT_NuG_hLlTc7X_TMz-0_x50qXwogJm5JRrkiwm19oJRhAJp3zcEqOhA93k9abhy2GpVPUljN8Nsyb7_ZmflrkJOYwbpnGdg8EQeU2NwWX_dDmDIC1QsfIwaAB_D0gXtmcb37cvF4-Yhs8GCXIwrPq9fOpKRxDl7wMaroGKDaQMeZYB_7hNFO0PddDGTXjUvOsJ8qNiP_oDJuujL7Dw3LgSL6TzLpAReMUugK8QT0XzJ2hO37MyF865hGk7sUyBMScwxiAYISQiPS9Vp-CMiv6lYJxswK6iuAlBJXLIFKYP-oSKMacWmksyP0gptpummqkOp5pdfDnIJ_hCqvXohZCIuhH3fwhpU83A5uIJ6lc3fmGcENqYN_yly4FWNmih2fsFXzUHVArj9AFYi-d30anMHQV_8JiGWGwVKRfLvTBJqXWJ4ymHECrD16WF2UpQnRJ3n2gHINFwrI5CqbT6dx8fgYK8Nl0hcUPCONasTspHhQ_XWr7R7-xsYCoCnD1806zbSzi6xAGWfPduv18ZrkguspkGaztjwRNS1iqHQu7oS_IfZ9QeVg3I2fvjAckqKDigOntyIKxiKtOMgqZ2KSvA6gtDpVXxK9opv0s6q5x87pZOKQecbacCnQXiTrVDpdrid-plcH88BW9dX2mh5MiGOIhCRXGk6eRZkYx1jlC3d6zhRVtRj-fkgYrXEjIlOqf-dlAk6UEbMYyew82sRVPwv_NrbZuNKwflKSMM3CLQiPGEqfvxJDOfzgaUgk-ZURcRxtvlAFKpUK_eOiCPf-BajVf7poki0lTM6AkzbtbXcxTL2NwPBXTd71ZwCN_Zmv3ikqrglVaTzrrB-IMDPrcdQdVqPWyyiZTgNuF2ctpcxqh5A1GgpX1VJ8ug1TA6R2qgPRasUUZ3SvvVzsWBegslgEsZgFrzzCOOcl69aFC5TtYf-sqSKN9YPX6u3vQugNMgu5gC6OEr9c0D9ZBhJgaASNHH9ULwIJHP9w8sxWtl6Uztf6C8iCm3e2pr-ooC9zNK3PzjuR1I5k0y9R-zjqc-eNiyyZlbtuPfg5F53pY4mHGpvMjZvhK9-ELFFF-JRnvmPITlMDIxSAztdojvJmOcBGnoYhCYSF3jriOs-1DXtnK1bKN6-zXVLNu9KsV4Pxbv8Jj_PAo91yYmETh_ZmY2XtrX5JvKuDhXvvureZcI3rZmbEmX6nTWLEk0JSRMeNAkJJ0g1sIIJrO7X8LifPbQZOA8PksAHh6sjfTAL0B12XDh7315Qys3igPPTH5pGiz0HGUi8sGr8V2zafHYFiHiGqyLZe9JlgDXJlWzryxftuF43vopwAJArLwJNqVwNKfoxVycbx5e6xpEWxb9TGsx7UH0qR5rK5vmoS6vQcXNLVrofnrE8Xk36X4gG45nkwjIu8CwPtlu5UeBJfz4OnslCwwBBHCDJDUf1DDVb4_jWel90HrCQODiRLPP_KRGyx8kQs9UpVxy-gYNaXfHcUs5GaUizcmxZsaQFWBpMUGRsCaPmmOROv3jWBV6Nkqy7nK8KFnXWolN5eTBcs5xdMdRA0puKNK7hdu3xHdcPNQOjwDBo6vUj-kNvwTXaYPuVHZGBZbeJCwL3QxOyHuQbaTZFzydkXiDXpBcaHCAbRv2dz8c1ppv8PfHBHIYB9o55oigUmpCiULNUw3JmHpQ-3hiNxcfvYKLyVNXJr5pCgKrL6daffQMqpSFWFYEDpkE6p2aNcRSwZNyy-kFrAj2p1Li9a_b6AI9Md_tzCto78RWEURm_sExAN1XbgMfC7K8dFqUAFRoWygv2fcIiWsKueuCyd8iTsW-9LlolqwPQgMfUdOEUEEHJbIcb9wKyBMSQ67KUU8BJX8O49RffJ6WC-xebqhHS2ZuTiaZ_ibBDLysWQWSs7s0jhaX0pC9rUxj_uspdIdLhd6W94aT9mgEwqQVuxQEC0nphlvqFeitOODJVtk6UgijBhuoezSuotYlnweYdRQfdo9mTbdO0FccFIrjYxyAzvLImqm1SOnT7HQZ5_W0b1wz2A0LZMKnmFp10Ody9qVXpEO5k6fA0LsO0QMjZabuzYdhnFy8oKAJ9iPxDpIQNmYihjpaxiiFGcTylMgpqIDqd6B8D6dO0\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68542ec0830a33-63795931','','','2025-06-19 15:38:05','2025-06-19 15:38:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43452',0,'cd-form-entry','',0),(43453,0,'2025-06-19 16:53:16','2025-06-19 16:53:16','{\"firstname\":\"Fiona\",\"lastname\":\"Trei\",\"email\":\"fiona.harbor@outlook.com\",\"contactnumber\":\"07\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sJx2UKgglv--FlJGRAhTgCE&amp;gclid=CjwKCAjw6s7CBhACEiwAuHQckiw-8BsSrTlJlgt71K3aDwr4KyEoaU711T8fYeIWSqcap9EwIqdPHRoCcZoQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5IpWIxJOImNd48WUNbo1pKtY042v8w_hNPseaHCwWFiW_SFqfVI9ZzPHjXdY3b1BYI2HuvlRqwHqgl11HGHFFWqVkiqtTTNPkHseHlR0d6NDEvFJ4XSDn0pmXs6jaJ4PD-Rj6tF-mt-iauER_ManaWMYk4XQpD9Dc4uXnM84YFM3FPbGXMWo5nHf4JLShAeTzFk7i09kR1UBHk-EoIuiYd_Fq37cye9L6nXlD5h64HZMWMn6u3HI0gR-gQ13Nhhwv1QjiM73zITCHYzGBiVjzlDKyn3TzkOcU6zZFUBhYd3laXba3tPXIaUImvdlvUT1YgHznFd8PTRebmFXW2UhQAv1q7GyU1ACV4MpRlsPirgRSjgEt6LWKAKWOgH0UY0GifeXpbQPAUogrv1NjWK8yFukYoMZaoIcqz_L5XHoJuU4EhAyffKRt6NX9SZ8Kf2TVI-_zAXhcMd3-lYoVZTwNUFlpW9mcC4Alz2AODSEJ4x_wiGMCz2zkaTmXw6is8mho3ON6-a-0bJIw6oGRhN2kIvRP80_r9IT8lEI_2CKKFdVdigGMR7MbukwYBC_h9rbroeGLM9LvADlGuxd6wbW22zjVCaZEz46EbiSSYnDHC3c_OdMSRzeJmYvwtVkN6U59Yjpecvr-T82eday7ZKKvzmG59rUP4MZcfKHGTvAI2ZOAFdNVp_-pbiks-K5fP-Xyb2f3hjk7Ij1R80kKIVhUaTowCkX7nrckXY7izmzqWnnPOT5B7nO-gNOnPqUXXRMn4Rv0-2_4cDzaP4x02l7V92GPGH4k-90NLIiW5c4bROTB0fKUAw6C8vncj0lTuI2-lHOIDDk8MNTFBgJoVDsTq0HkpQi40mF244dtCfwEmN6x14dh9CAoYoDPLa_JSNDSbvLDg0ZQRYa3xTIIB78cBJI_vkiSA2usLWinUq9bMBcB0EcbY5bl2SszUEEEJpW_pAPePnTzGsciFnu9sbE0Clw0cdZ16ER4veb7tePf2Z6q5gyI8h1g03_mr1o_SnGc6M_EGWV1fJ2TIl50GxjwVceH86xFqkESZJnzBx2n3nmgh7Fvwhl0cHKvUrC9KD5NlJSvVeP0-KlFMI6mPH_ziYYXAYsONrRJD3gCsYqxGQKbmh0pGY3BbgogoLXTYxcUnvirT6cwibcPCvq10ZiuzQW2wVsbR54ZGy5gfj3Ow1-Pur9qJwAy9tOoHWodwWlCcTY4gfmUUziRfb5Xw2PuF-Hxqza-I7Szgj9cgKJVMwmyTS28y2CKoOjB4tKpVjBxufZ2P3bqmCdzuz5sxagQtkkR2dNluqxsTYzw_1dzEFLxTzU2ps2uDannPt8tGQnefZTUXfERBU0yjAqhEGcl4uTwKPdHXCOVmEEUEraanSA6OlArNP5cdGnvMOJtyNa0wtDl8dJDwzWjNQxZZCUHjH94FPH9neSrg7Kcy1k4TOBg3EZukumhZFpOEP-Cg8zgRc_HP4DiWWZz-w2boGKLtXbtn9yuFkgAR0_9q15Ydl01O6ldQJ9_xskxMjPr9q0mjkijCEProNoyzGe-h4OlyYqcVAig247UYwvQ_IZZBGiO4SqgYBGCZSM3Ca_GidWPSNz7LpROHqCRihuBvGvtvJwit__6xWPXI1t0WoQ5Yj9p4kAswP23WB7uaOb-cSqS-_pWPTpEmbsrN7Zp0UYPpheHx_bNnECkMusq174y0kEHRBT2g-Erwq2FbidD7cBi837lKONZAU5vAsJIg8ZBZoT_AOLvAhsXS3FJFOzswRiC_vyMk0V1ZLuOzd_yGYf0iPuETzHYw9_p1RGDawN-rAXa-zGK2RAQgovMy5hdnueVqcdbBht1uQWqH8Hfd8IUx97hX2w6Jp-mndSByzaO05BrDb6VyxP9mzNX8m1Ju6PEbmYIwwrLlXLIJ7bwGsXsx5fvghndVvkm6Kzrw08MT802uPTMoXfQxTwE0UUJ761JHribvsonwJ1QdCZUa_fwhSYUguikcwis4SB99msOoPg1G2dvJo2Y_YAvNirUwyBQQ-8OGwHCYYl40fU0nJoZKoGtRUvSyv6M9eylM82ynVSjOHqe5WILvT4WVgQP4GsCYrO9Sjo8KCg8Z3wui3Ir7Vyubv_s9Jn1lIxnWqYCuHdzfiBMgIVmBrLn6neX1w5TKclNUtUwwNgZCFJzjgsydCwVF\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68544063ddf603-42355779','','','2025-06-19 16:53:16','2025-06-19 16:53:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43453',0,'cd-form-entry','',0),(43454,0,'2025-06-19 19:25:19','0000-00-00 00:00:00','{\"firstname\":\"Abdelrahman\",\"lastname\":\"Sawan\",\"email\":\"stonecold.boda@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA5mpyfcKf5qSP5P7Cso3yKoZZP5xO3E_RHH-bAkwTyVG4k3ZHVJtp7qCCh_e4CFDFZeYqtGSavwCkzSs73m5nHc5XTPwcAA_Hj2Vxn5zdlf3ZA6i4JOa9vacGdUPgCOaSQTKk6bf3a99r2tz6t3CkLB5eHUdObHClOSUKCj3dKu0ywzQhWBR1EI1dfcqRnbk4mKgU-UYd1etqKD3TEQlwD_H7ENua71q9JiXFSfmj91LDJz5dg8Y6qhuTrLiK4cz5qvEBbcWFtFaVo6CJFLPRGfOSTuQCPS0AXXS3vp_bWHsXTQ33OEXIj0LlLuPv2s4WtNRsKRpvm2AZ1SjitZTlfg0w3i4DUv-obwkmL8LU6o3LlmxuMD3AfpQ1Xc_An-9TxtdraK3Fn5SZMAZHGuKfu4bBfghgS_Co2g6lrsXRk6guS-6ZcZ_nU_Rk-LOgi2aM5aXrWSrM1Iui48Jx-glDdSoAH859pfx9bXmDDttaWs-d9mt-Qvc1P1KODYksU4xStg8QVEyqwgQRN7dszq4tYOPMg4w5iHdRm5hhtNx9e1QvYutJvwBxV5Mfm4DnHitHnhJmUpNU2P8QQGhSBpu4YA1Q_uvSK_zXx0LVtRET53TKDrHIuwYrvu5wSEuB6Aab54Ernf-hwHQNsXpdNBto2YpmecOeXlKGub3ccaxCxAVs9FyHKSNQ3cUf56PGynGBJRXNjbyl4xA9zBWIjgFfcNjBHnl70FjQxq0TtwKUi6BE0caGbyTI8Hgrm20vq27IKg7V8di1inSOIhpD2WmbYA08bEkjdTjudxabvixkocDbFgOwlGzdxxdfiyOeYsgVZ1YFc3PBx7yLqAdG7GKAgIvl_--ppbHzaTcu_ddEi470tcbTx_-w9_JIKHkfyS8R9VPPItfAiP928etrQCSJB464Jbr3q25_WQ6h2I7RCq58uyLR8cAQkX-SW4Gsyf-5YfciYRHjuHOgTJgQLOCnRBm25J1tVi9AeyXmsJYR6kbyAsMZgFJWtmX2eQvEcB1NBZXXaGhrZB5K1CGAQfWDckMQQPYdLL8j7JO3oY7QUo5mPrQ_ve19uWSAP-NjL1QUWuiEShIJSybQ0dc8YQitQ2EPtmuxpEujQqEyOpQG7WX_Bv2XvAuoGEipJwkq1jmQbVCBfIk6N0G0cmjYM9ENyW9a3A6gLopAhNiZ5AanllBn_92RdUc98UKOYcx_G5bvoIVqfOeGg7fs28-IQxGYoOBTI6AIJ5vU9An3BX8K821kEgohwA-cmoYZLxUgb8Dokmmz2rA9o5xULpn4bNqjnr1Sc_bT3Al3OLD7knusYuKkBRsCuY5UFBpovbz1mZ68oAsMGb-wVfJ0HkrG3Fem7krFCMlqpawlxJ2PDwSzXLYHM3Wynafrhx_J3uwef9uek-1uiv4bWAevcqS5z_pb13BCjrKbAzAOgl3twRZ004hxNItl11ArpqU4HzSlO23-Cp0Oly9M7Ug1SitPlBxNK3yc3hHrnfwHmIHwvA84oynr5476y50-yCktJhhE_6elFZGhWSgGij_BPiGkwBJ9D7X5vbYo33t7IckseHrsdDXYCLQCDcwRiAfjDBNBSQKpcR36fpGSfv1_taj2fFetTBVS1h-_GkKhXNKJHS4bkHw5KyhOBGT5u5CH8IB6Uv_1wqZ4WfE2rGolFz_PfOkg8MkoKQXRBWrZx-0QPrTa6fc7n3uxqrUji2HxmS4F7wCHQBbMKx7WZCnUYdJP9qd5_J1EgGNXpH5fuyyz1WAHv0hbwMqtNsks9Fw1BzYbW2T2kUA5RXmzP-1pOUlE7l7sbh1sfikHijtiSiT9BYDhcwKlZ6SkDyZSsW0FuZd6mu1RbLR113xYjYXmJlaeOYs01mCxFtrvYyQTsctE3TY6m-QbzoEi3xBfVVsniVjGPJmFItc06GE6W5CYFqDkg_149AMEWvrr9PfBsMNm0TD_aVUa0Oa5DoVu94W9596WZ_KmYm99ndTlZFEkW3wRJcqNjPSqCGKKTFLZtyJ1B5pAuasB6zqzexTdXW1W7_WztQxn_KeMWAYqdSH-RS_LqlzNt_cfHVbA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6854641f96dac4-09694201','','','2025-06-19 19:25:19','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43454',0,'cd-form-entry','',0),(43455,0,'2025-06-19 19:47:45','0000-00-00 00:00:00','{\"firstname\":\"Alison\",\"lastname\":\"Lidyard\",\"email\":\"alidyard@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4bv-c0-xD1YwZuCGbmgBD6EQABbaWKqo0HzMXGhDuSHdHnQs6wQhCkH8eaozhV6-duonIFK2g7X0eNfIjdOoaVZZBtq9Umpi8EzT75gMysmPMxJRIjiLn8p1z1O-oGdL3Gr695cdF7frG1NTNqgCTGPye1nYZ9SKimuKEMVEL_BF7k5fzJJaCcAZSdihwvcR3Ql8FDvIyV_kyLRk5adGaDGdlu5DXy8h9TtFYMsCAOhSU5FtZsBJ32HcKz7yBvfk8QugH5cdh33yZqqIVFbifzsQ6bXZIwHywTdO63vwV4oS1bIr4yyEGNVvjgWU1bM_q_r0EgfwjGQNnFaDVv8oD4zClIRmXQOcXOF-xu1xOlwS-Xk34a054D4iOytb1C2ztvrl8kAr6dk-CYsIcseD9spKbeo_JA8e5DjK7EQi6bp0ipkuKQSzXRPZU3aAlsAqUCc4Wq5QvoAPcnDRZ7tpm2YDm7u2mL5fSTN2jHNH67PTZCh7L49aqr44nKj2s5pbN7WUqTM2lyhSriy8vxOroldWHZa0TXy2KbHpTmLMQzUgUNe1huQ0u6bcn7d517jxh3Fsa_pAiGTcVJeuI6LsFld8oQeJgxpeEYbfEHJwhr6hB5FWf0TAZcNADtHAejpvPiqHlgQFt-4ldhjXGHGdYUDDQOtsrAFE8ksPV8FEr6TABKpmWFgOPhf3Llj8ZW6DbbSNFPr7J9KgirM8CKDj3rH1yv_pWL0BFDpI-nx_iLhTYjGwkEygr2Qgy_vY4pBvqrHm9hjRc7tt5lXJRpDa-YscrTKUSTAVgDiv1g2iBk0EbWLqtq3OAlnmQ0dGqWaiZjJtQ24vaXlvMWYhxybO6jI2gVwPVHNr6jOG8PO1nEuKP_g49qbxHNtNscQw3MV8Rv2kem7YrCOkOBEADuBtn9p29K1TybdAOlMsAvMm0mXokYpl7VQGTTATQ6RMJGm-rN7avv8Nypz-9LjEQMpxfC0Jp4GqOxodmxZJcKM-gIP2Vbi_a0BHUSe7QrwE6-bKPpRmZiCKIXvP8rHRN8Bi1lboUUhwFYImGx7hx1bxT7G43d-cYOP1a8-NZeLp7Ag81VAzItrBErAU4z5tXi6lk5RBzcnOK8iFUasD2OqZ9V9dUCrxrO8O_T_AgBS98aG-hXsqIm6M-CgCGaty1iYU2mQCu6VU3enwLMoVSJ-LJ_-UcrbGyGsOkkPwkim_ttXE_k46EPI4YLormXyHh0iTAPEfgF3sKyfDEdL5yVzMrjLH6MwR68c-58GXEtV_8e6xNMgHkuIIKOmgS2AcvHnBmu-02blSFQmsOWkAQpjOOGRPtA1nt40iEGTOh62zqSMS0ZzJZ9SGR305_eK-YO8izeF1zhkke60MBcxzlhzFI47-eKRsdFP0hr_lXE0_B4tqYTpJ7aKX5EqUuRxg1HGuLJFsltoG-w97JpA7mauzil7HZECzXIyav_Zh5XZlEnCm61dK1dHsS9Ijv6D6LcjegVsOTRxaQA0EnGmYPNOaDNIMtMLqOzRGvjhZt93fT4mA15XmJ6NHGVbSDw3nbRJON4vSVr5TzY595TODXcPHd4yRL_NXWPo6czIZSoHGvRLhPm-y_ocTzVyzXibzwwe9PJdiz9D8hOEQlBWNmfhSfVIA2_QNNFKMsqjGL4hQJBNWspVxuCwcd6h-gAYsbzMOvxLK2yJv6EeATRAzrDQOAHKRllPkEBvpsE9XrP2-qaAXQFlNOQVSJG7nKTqRAWww_1yYc_cwoFfcBM6YV7tslY9HJeo5wRaq0m10pknU91OUd-kHWnHAy2b55eP3mKAFQi99mVh31e3rZDHj69jDoBtQdkNj5IPjuqu9dmz_OLlGDTW-5W2PhnUAtQIwC5DMbKhQ8VKgSaSlUUiM6VND39N2bRkl8_otyggHHF0I2rmKzRQmHsmrAB6TyfFY59aowPsiOzbwBM4GJ-N7KwNnMJTNuU1PFa_QHQrDRpupbhpYQ6718sQL-1d0IInEQVy-VrFgesqV2GSt04t_5-Irjoksw91zJO-qzw0t54N2WgLRMaySB_tXzD00YshYWYG5Nb2ejW8CD_LGzXop4nq6V5GoA8R6cjHTwRMax_EQkBgoq04J8rhcoLbfYP-7fehZzhxLVzJKE4PJvhUTqEuiKQxqoWTXuQnnj5FLyJPNlxiN9eRc4h\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68546959c021a2-86131847','','','2025-06-19 19:47:45','2025-06-19 19:47:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43455',0,'cd-form-entry','',0),(43456,0,'2025-06-19 19:48:33','0000-00-00 00:00:00','{\"firstname\":\"Alison\",\"lastname\":\"Lidyard\",\"email\":\"alidyard@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39238\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7cI17fAdU-r8gnh9siW1rScIFfMlH0nx_xdZllLRz_klTyN8mmYjkZMkJvm2UcR3L1ogZoOQZxOMNN7s1v01mCIEIT542SYtaZvXAG8_K2Q-V-zYe0Vbhe350A3b8_IXIuTGbrN44fGtwnJ2lCFkXiJ3CNYD2G5QY1wI_ukKdp9oiIkANQ0ArXzSKMw06CYMq-YzIgaPMdVEr-RTofFEF8eYp2qkZCXkPipWhC20Z2UhqpAfIBEW3Se6qKu1_UGVEDOH3TiWmaQYgUPsNZD-QHJ1lod9EH9hD27Y-yeCkKvrk_KAj3jY59Yi7UEXbAfpVEsc58gsYj3t4Itd1b6e0vbGeThWyFKpatD1JD051Ok4f0V89PLp7N7HqFssjipKvPBtN3WhzC_skCxVCI2qY8Z4i95o3OrDUbhrRKMgs1t-QEQSUUFN_GzO6aAjDhQasRWA5ewPp99SAUzJeK59U9N9gZ7ojAkbJusbryEt9bw76nEWPJuIPrzAAqzZh_HCYDdTKjTASFy9vBNDclSNNQTqNHECwPMBSmrVqHsCFJ8OG1x3XMTkQ5qiEFmOG2W-cstehN0547VVyUtkhTyI32IRExs9f3I80lURw4xyyi9l70d_CoPddhPIwPg-Z8bkEs8iaSQdotrE7SC2hSn9kiH4poJluL4rcGIb4IWxnpMT_bESoRSOJ9ByxZBzyTX5OihbFtNmQzlqojKr5D1mLu8oozgPybF8Zz2-tjzIwZr7BeEFSnLdlNQbAvXhQw9jVQEVVkNYhCF8v8wUByAX1u8x5xMcueefhFPwAIyr0kYSzKaLvHrJHlph0vWTwpNSyZ76GrjOYzTgbYCnGfl4-RnIdpuH40aNFr_nQYi9vdFo48ACcwjTU41QXf0X1xnJamUkbCifeshHV00Qbn3UQ-wGUmsHbQrJVqsAHjE7s5BL9CS426H8mmNBOplZq0FSUiUQUiWKPDLqZAu0RZKjHXwJEeStP0R_jtmN3EdN5sa5-5XhMb9tVFdGwMmFuEhOJ7KvWC3tspN1nq2t31N9Gozdme2Xt7AXR7h2qvcsKyXvWqEHdkXPqnmjDJP6Crh--elwOaXZPoIeh40LhKh4sFG0F0YP73vMF7FVW8GwY93T6yFsyghKflw2jJ2e1oXIVgbJBfVFamlqXiT3_r_3ND27HU4QSYj0jFqLx9iYmSKBtjaLDJt0folChmEtah6Rw-hdlW70i7rbNce9Pj-hobFBx5pECWJEWXrL88T-8R7TFsO1UeVvIYKbAh91RFvPZmzQTH5cfBRgbYiGpH5aRax_CgBPB5RxsDDOVmTy7qCmgVLEuBtEFtZMJbWvv1bjq__pMVQ7M2vDy7IB80pM3zy6QZZd6hOZAFyAIi8t45f-Imi0nbiKPQSyCNVj8BZDnUkUo9Ij4RZl8diogO0QyOFJT6utPZzVK-l-TwI5XCjXGWcA0MSAN_gHsDzno05JvJAdVXfNsDJ7vokU1dZVG9fJEPlmclrJNdsDflpiDJk0HeYguBYOkNPb83egjEC2uYrYWfOVCgv82n2Zn39aqgPFrX60qOuA_H_ggRoRv3pNuPzgaedxMZNnF60yq89kqDowTyZGpgcKjb5ZvyAv1izB4gYk5JUV-tnlGJ7NqFJUSxQhcvh6JHbTTJPcj7ugcPRy6e2XCPhe_ylg7q1wSdQ0kl4eX-R1KcXvsnA0LqnwsLI4m23Bgf2hzCi9K8p__EQ6tBzdNWzj5WMpZ57dDIm8eM2QkUXVPdUHK6G2rFJlOwKXkcbkidhrrZMxiHSGcQ-TjZVo_zzUtPlvTZyRWXYxdTKf09tR90cAFV_nBbBHZ-DMs4NeIgParM84Oau1E3NhnE3gYyvAcr_PX0HXCC86dQ4vkQm5qm2ZLHnb1a8Q1bLVKoNiWuLzPEB4PDpPyaUo0Vn4Rw_wcg3pf-zEN9uhJvNgM3NQ0YacvJc_je2Cb0p3nZt0oPX_eq5LLz43IxlXKzB7eIf4bbg1R37v0n4x5vm5DB3F4i7ivaMK-Eto6qmov1zmWYXfAeTvZ5hMWL3-JbomZWhSfX4R33pLfInOClGcpQsvopZPzQKeWnmWN_656-6uw-nAZVhsCfpAq1TE5OHt6f5uawvJhsCWPeZq3dxL9FFzSRBjhpywZ4A59SiStwerFcFoh2HdWx1yFcQjGX09egjUT-gk5zshwk7v6aAw\",\"recaptcha_score\":0.5,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6854699135fed8-84509527','','','2025-06-19 19:48:33','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43456',0,'cd-form-entry','',0),(43457,0,'2025-06-19 21:07:25','0000-00-00 00:00:00','{\"firstname\":\"Sarah May\",\"lastname\":\"woollard\",\"email\":\"sasiesas@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"41425\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA4v2LYuNdOkJrhiaykBU5loLCkVdJFuNp8k_s2t0R7pp0Qq4q-VyH_ly79zEu_RQ5OoYtaEynGmS0TbPLhtoTNzGPSa-N-FDu3IR7l9UJAgsSa8FYi7T41NcsYS8P8w6rXxICWBOVyDrEoDKEY8E9qKNZSrVcC08n98eoh3xEJW1YfYxVsfw5eeNhDxfJbF0Yk0BYxCQECJmgpHI6Hfe__4VWuKqeYqEamQBORSAcsfbSc9GLEZ6blKh0fXAxIljhc5GMWtM3TOF0qYZ4r3KKnkOelr_zQ3L7J8HZb5ucmSbMPviVQqWwLKJbLaoknSq7prGs43_PhbsVJDvCuceOB5l9bdadqbiB_BPfzjYrNTeCU60eV6fum5BQ24ooYYMiPZrKxDExyCzke1WjQdyENHMCiPNLHjLNjDM-sv1cGvZsC-ecNMOeUZlIt40gdf_NIRlnBdpOsxMKxAuaBBuus75TApnPdA2KdNJL9O6upLGG_c7fqT5-4PaV7T1ovW5y0phF3lygtN9voOT-giQgrIlhrH-FHkcsvWcP-5dHPrp9KMQdtxW_tNLBkJCwHiaRjqSgd2hK-vUKryoEBIJIvDvtrWaf7nD1gtQOx7KCfdqNWdLJGuPNBK_TONKJ0UvfOtKP-KMkILXGrzbFF39ffRXNSVL5QKYRW5utVJQxn7spfQE3_fQJoTGLOlQ2crem0tZ3STp_h3bO054jn25APQmMK6UYgZuaPDu46FXpfHG8fxgt9yNC9iLRT0dUsUjdRynI_GakUsUw_RbBQpLOpIkvcsmrnUYQEwY-YrfydmJscQvk1cLmdg0M5-c0MYod1e-sjx0lvQx3NhsUOgskFapXM5UcGCuIIAQv2yPf5aPY9oDVGRhpRz5-dE_OzLLELV2UZfXpdZXwhxVUQ2E-Nwtp07dTRVgyqKr9tO0EqWsFtS4fuplPa_rpyWY-w4axuc6FUdMgLInGIPAS45m3BavwFDuO1RX6Nc-f3NRU2BzhD8J9IS2-Unm3irXGtLUhh-a-5sMSdztR6Cew1Q0tyLItdJZ9rohgbosInRMqvsi7awVnIHJKGcTzxB0uorpQOXxYW1xNdoZBHbXH0H2yto-75n0AnPNZwKdscPPACAB6IPEXZLRenkU934Byj-DTJh0dKSYWaUFFoj3Th6vcUdY_9XLAApPBVfx1l02Hw93P-xD99w1yba4Q6rZuk_8B6TUy1w5J1a9w-_syu8U_zFbmFUVo1g5GNxXC5_EBAEQYbWI014XhJDYbFcs-_vVDQeAoafiGZPFmMNvRjUZGUbYUp0x3TiyiNBod4FpyWGCMsfJ49PZ-YrnZaw9Jf3WpiflQaEDwF6CqInISD_ap91BVWnrNy2MFUI681gzfe0R6GNjCKwEuDbFN4NGeoCWKvspulgA32DH-ceOod6ED78pJhErPv3hF0EmvhP2iBqsBd1Nn72dDm3Ky1IXje82bhqq6iJgX6wRVzvAHshs9H_npOFLI-EWVjr6Rs5kMEEVquWPo_eaGmYN4XpKSchErzyF42v9kNPx3T0P5BL__c_DuUwf3sc6awW3v3bQB6wOVd6x8jMt_EPNteq4iTK8iPI-V8WWLY2cwdLthK1smbo29pk3y89yR5ITGJuopJ4d6uuPnRWkseJP-FGaygnlWAxKjl0X_SaAvc4fCKK7fSZY3Wl-x7rWFBDxVX38N-OnGxTV5lGoQWyBQdZLRTF8S8VXyiLpvl-XMHhN9ULUYxaDgZDkHpUtIAJls4iFwitkGNMmuXGtqyE4f_SZW2w3IP_ggQpCuWzF7u-YViZfckInfj_1Eum4OPXBk8qcZKuSWdRMNhXA3r8u7ZmwkIJUsAihQokNLymdGBr2nB3ZJp6x8MfdBFTVDGt8Aha2Xuzilc8fqbuqEW-9Ql9JCIOzSuGLNt2-N-0UEP5_GcLiIjht5flPsBBCB7zKdErwavuuFEvXLlY4044ndmF8eVQgh5O4PXks_MBUABQJ62dbvwQVWmcAVvyF7aKAy6_jTtGy7G33m9xRlqfljL6Cfyw80yNlETNmL9kqSKSCdMqyJYzjgnM336HdQ8EcSFUrclltEeaPGPQg1F7HK9fjqniM1BlCGlPK2kwHE4I85piMtYhZAKm7SA80pRi591vqETLoUaZ9zo\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68547c0d97c5c8-86525550','','','2025-06-19 21:07:25','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43457',0,'cd-form-entry','',0),(43458,0,'2025-06-19 21:58:09','0000-00-00 00:00:00','{\"firstname\":\"Nehemiah\",\"lastname\":\"Houslin\",\"email\":\"npchouslin@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw6s7CBhACEiwAuHQckqGqns9udpdd_90FfHRp1xtyrpJu-BYb4qMPUeUGV039mTHdrY4eERoC2gAQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA77u2X17_BBYg9YA1i5HlhHnpreQ9t-Jgkvo23JN4ornjhpp7M2rLQBwkLTDQxs_LmupRXiLX4V0VMjDQ8k1Pwgy0SLkQ-u93rUNVbRMnsvFEAOG96FvwcstKY9UzvGJ9zHjlwqqGXt1qoZpz2N6Uv3iFizDewvQhctMgdUh2TyPrpSPtg4o4msBgyTf06C5gqUB5ArXiO1MaJMQ7TeB6O8i3AJACZ-fLhr-NoZgf1ZBAbM8dobrbr-OxvrAv_UTEbIVeZVWJAMO_3KxOaeApyF5J-x0USmI1xODoaqiuCJ6yWZ767Ukb0ceXfh-E8Xn8YDOIOToQ_bQ_MF310Q5sBW01EyQiNgT_QjkWvLxdVh14Jxxie2igWhTq8S0O1fqY2SnZ__VMssJ20dvdfROWcyAFtdmI5ADHgva8Kd6FZ8SGkySPzltDV5Gx77LDG0kjef6CXrKrQ2qvGBI3dVv24qUNSXFiayKnQbVQKt2qwOmR3Zn5DNEDafOJMVuOf2KpPsvOAQsHDo4Y5vO_3SM-REddIkVbAb1aetjEi-f3tB73QTqX_G_p7SbiVW2X_22WVrW593yfou-3VbnkvaWtgpmm6HoyfSARK73UJ8qWbwmScZx50zZ9n_Oixv-An6U6ljrxLVwkxuUoNFgexnrif4_jO2KeRMEDUdZuoNwr6s9nCuB2HhBWkSDCfFtG09Xj7w-VLqtj4KAK-3J-hUTdigaa0rLiW9eyW1FcWhmUhJRsAlnHYl3Yx881Lg8IRRhlZ5KHVvKeYqjr2Lrq3N1TfJZvKDiAR5k808ZjSIcPqBmpqZlDG3rIH52TvIQ1Ks9K48EFo2jNKhow3sNktN9qzfmQ2x2NslyqbvmoG92FstW2MBAAvdhVyqS4CVNICB0y5NNvONBy-w1_L7yeofcTa-d-P57HMEPApUhLtEpGYPs9ZbOxjkv4nDE0ZjVJjxq-HdfqrnSVpqXhDGnd9MOzv7BNTc_SLW59L4xgEbtbMWI1540M-IcibJQeFzBSNcZSs9DIbDghl1BNlTo36fUSMU4kiobiAWdyAJsKKre-hsm78JSPJWoXCUkg5hOjVEoB6MKaQmqGeXvxuHJ_rebqFPsVVvycBRT4Iz_hClrCE85R1fETpUGvAmn2gb5wQ2VkyUFe3qQb73ZAapbbpXPajBNAQwDy9VgP3naVopYiXDp-REV-lqRDGOPDmFxchG0Lakj6kZUgNZi7uK7I6zRz-2YjCNtocx1yes4L4_aMbFpurx14sQpwziRtyFPU9Sf2Hu7_cvPXqMAi2D-kAwXac6s-8kpdyGSvZH6qx-oANr7nnk89ZJFVABdNtsNQBHbgA487l9eUUitrh_i06CsKp6wRMwJBvvwHPg8lk7ZbquwUkSUOzRT8xB0cyqoJFuOZaNBN758ej3ZCUsoE_iJZA3IxvMU5n8l33LF3Cpq9-MDjffHjgcghHFuIT8LYyjFk_yeUdqiXA5f3nGQikCq3rD25e1Nvn1pMzDlqILDuc9LEb4EsBvlv7Bz4Cn1HZOnecEf3fFKQ6k2fijTAV_NoF_sqkusfGR6LlUfBDYSFf81AAxMtDJI0eqLS9VDOl3iVB07nRMQLHeyFLIWoo7op9MQtHMtF6BAAp4yOTaSU2dJluJTQP6E_0Y-ZDmZRH5--Sc81leHh1ftcciHml4R_DyHnw8JTibMrdx3AZIHUmUv-grg_7zhv1PDiJOpsc2Sg3yQ2ZP5_bnVB5KZ84PA4aId-yjxoAFAslVt6tkGTX9UqozVloijSGlWRw5C4gN4vIf495V-6AQ9E6Yds-3xJT92z82rZ1P-bLQoFx1QYQ4oZxXPEYTASnScf8njtpl4DLElqwhabnc8bsI_8rVElPz0caG4ZGLr2guTZ3YqkJdbONdVXd9RRN3F82Xnx0JGX3q0Mc-dVhpKiFRAMjqcO6yusSy2dbHraXDTfSw4RoxQJ3LPxtUlWVnvzBBb2rmwAnaizWWJZJEVRjbaSs6kKjSPHHI-sdghhuW3wqexe0FnO0Szw5ZbFgqsHuImicEAx8GE-dCNMVC-S9jAdaNQ8rKiVDBX0bvDX4w8w8P6PNqpL81g9ygw2qo0bC-riyRVHvjGCO-BK_mJQr-6TMoGpIPGq2IjSOvdy7B1quViz39OAOdUoNjaR_wO0tIUjIHCD3saDClkvoHA-GfO2kXMEkyF4vNQeOZtO8pajwlYGXeMrDo3ZgeSt8_W5mdXQK4JSNp5RSIcZszCDxglT8AJ16m47IvCMEc8tiwQQLCTfA9XyQlya1VCzlNMVNihCpp9XKNduatQySGd7GbZc6IE1xjfTbYHA\",\"recaptcha_score\":0.2,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-685487f12f4b67-03499717','','','2025-06-19 21:58:09','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43458',0,'cd-form-entry','',0),(43459,0,'2025-06-20 03:40:55','2025-06-20 03:40:55','{\"firstname\":\"Scott\",\"lastname\":\"Maxwell\",\"email\":\"scottmacindoe1808@icloud.com\",\"contactnumber\":\"+44 7723 289363\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uS13Gc_MBqIe7BJURnGNdtF&amp;gclid=EAIaIQobChMI4_SPtYn_jQMVVYBQBh1-ByJlEAAYAyAAEgJlIfD_BwE\",\"recaptcha_token\":\"03AFcWeA4EOQUoz8qhH1PqS0WYsvM3th3j35j40SKHFXG2YFUYAk1hHYC_suSSViWlzLUze-cKu--C7e6trgBdknN0L7ueejU8BSe9BCVz7soeKp39XfylrS6j8eC6LjECM_0PFErVCuURpOfGrIyShj-17J06odNHJWVF9llC0RGRWxYrDmG8Q0GR627QLAYKEbtEU0TpBzdGq2HNwia-H6DPfRJ33-9B-Re4_Ip_gFo8QjWCX7wo-fTAByjYxc5S-A78lr6Vp32gExVx6TRhcWWBJLlhDqifPO-IjhBi9KOCmLTHUiaxS9m3aKNg4cEQ3YDUQyKQZFe93Ihp9hFpyuI81HWWQ_dKgfcwcN36_514w_b1DOIxXbzn6H3aJWmqLcy5yIbDGFu8OuuTVZd3zLxegVkovLWW8Uyi0v1Nrd4TCrH1CHUzcT73y3HewYZr0NZCFVER7e7y_6syijcvPtsKk2PLxGk1CVDqHXn8fymPHwVRN-fWcOU6qa20nCcawULC2ymf9XtvyCs4qUwhltnZc-GSUQZyFecTuNQ1UKjitUrx9BE1Ze0XmEuuc--mXKj4LM8tUYVxjoetf4_Grg-HZWYQ_Jee58XCZENcrNs0nh_8-EIwTyf-zFwLjsaI_Lfpkvk8bKsNSMNtf_5_oPgDyE3iDGSC-bD6WnSl-FgfeY1sA39r7uyF4sxYuusT45hZ8c3nOFJn8TBOyCg1G1s5hUw0hh78CezNovuonzm8ORdmr5dVKWJwEn-ZHkr1-RQ-DFf1gNi-y8-PfD4yVBHZZ5BjCcJDygHh9jFBEEicvBVtuGent-ZAbQwsH3c0ShmmJIi8KqRGG80HW2DKxB5-Rj2R5wvjBcXcXHUUuL4-zQSEpLL00QxmCnxiR2t5KcLoc1jpk393xqhXankMVkQvto-RyA48uhZ7oefa_IED3tyDC0GfczmVtnQUrRY6PRYpvCoV28MbiW5ZvMI7wiwjhRdkbdY2b4CEbVmW_pG9fj0cK9HpAoMC-Oc7Aa1sZbWcjRLNv9iehjHvU5oJuwyY4eEt_KqA8zjZaJu9pCQ3ACwsAIFEKFop1QmDyphdpiU2XWw_-aDTbWseMEYry5h4JvScRGbd9CF9XfuIhWYJSRTNT-84QBYUJILiV1kpjpUC2lNYwYoa_UcYAQ1DHWxxrK-RkEKAQlpmvSfgURKd5BAiFaE39YpMK-KlTEHGc---x4ZQYGcoD0Umomx1mIBznfM47vY3i3MO3C5sLW7h2IfGERO01jHn1P4w-H_4Pjx1NqDRBq-lSiIRd0apN5i01fBrSLwhkF_fxIocJGAP8bUDvLfEzmT8OhQjFj-bRcGBzOxoG6p0sQHNVdSi5NH41M3fSwGmKjy8pHlYzAR_iH78db0welogY0a9KXa8koNa9en66UgJBf0zrVwmY4qlvFuJDSz5v88MKR6KbAHXVvWREy2pgGqc2-5cJN_o7M3DE3v4IHIzHdJTY6iTFHeLVdNWNwIwj6YcFGNMgtpAEC3VLExE-Ox2ZB5SOaPgEhPCl2GhbN3IdnwJP8pMbIuLnkCEh87_PPk6KGfACB7YnWIEmUbT71FJQ_mrHyi6OZSt7Z6va8_VqXBZmax0kQ_pvOyCxFqcsOXfqlIlSZXi2wQ2nTJ7eyCxIB1esybtAZ1h-tzotgI4Dp1IrP9p0GlmsXTcTJAvz5yOK47w6PPxQpfmQmjZXKrlvYjnuULwKMbdgfbWS-w89KtXuBd_TGhfm9sgnqpoY0eqhV10Kn2Lk-9QiCEWjTuZQ91jjXIjbwGjCJG0lX8ZZdSX7GWmlnmiZ8lXHy9TjFjWXuFCQID_84bu3Tp2gPkAv7XtQaA4GAWFv8aHmb_e8GVhtoZLRYDFmbaPePIAnYhV_sZErq41CfowYZ8U4IBauyZ0-0lJOWHPyV5hS4-lvXHhX_ZpqAiwdKnqUBm0UfMHM7cuQQ3Wpa7t5JRzsQWzj6gdERmw10F_7xTVNVJlnmnEaf_Mqc9SJzbZuVFI4YmwW_yx2fvjnEsnZ_Iewqu45YF7ytdLcifa58lf9obD_Utpo2RKa-WQkLOTPHAuQUpvWrQHV5sy4BDwqMHk2oO6j7cakG56jNo-_7QPJ4YQmTd-vKmDmH9shRNxQEpkK9IajTzfyxRGV4wqbrtfwXh0KWJSmJUKPizA44_llLHI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6854d81c65b8a1-38594043','','','2025-06-20 03:40:55','2025-06-20 03:40:55','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43459',0,'cd-form-entry','',0),(43460,0,'2025-06-20 06:35:56','0000-00-00 00:00:00','{\"firstname\":\"Sarah\",\"lastname\":\"Grantham\",\"email\":\"sarahgranthan@btinternet.com\",\"contactnumber\":\"\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA6Dss-aLv10HEq33b-k0AzT13v49TezPDmrfn3ZfdET2D2E2L-B5s3Bp2W47Q-nToJrsj4uV0I67WiVRnwUOuy4i284kHn1RugZGuCN-_VzzWN2kuvLUIe8trvI57--_wVdrARV3oGqj9X5Y9otMKprnsESZB7-VANUG_mVNxnCO6jbaDj36Qf-NLaFv9uTlZ2elE-R4tiLBdDh5YGLesHqWEz98vnj8nF8LrCEwVvoEpZ9xb-DZNDfsTrhAHiso90ZSByKKUqRThg3O1OCPlFEUHdmv7IGutI8lHYRyke66Iwsm8klgOQCr18fKdw5b8Pox_cHAKX_J5e3ldv6SeF7jTJ4tVlXPfGMtxT2b3--05SfD3mwX4kHE6ldlXmFtDfMcuDdJaeeTQlk_Y6B7WTNOLhSQvi8aPrIuJCFuuHyBJCvZMAIgAFTWlRauUpevZRtWELtOQjoyEpNapafT0cHtq1QWPAtZuBrjFFHOU8pIQsH5m34Edq8Hdqsu9_piXErGSlWzcuT7iR_gbFUG8M2Zc98HesFbjz6-oY_Xpj996g5EgLr0ndPXiUBvBHdU3fAl8AoB0PvyT8kBmYi5BEhVjVjYoTCCbXW07GDymkRISuVjIT6qqb_1OWQBw5ZhSfNLf9zxLW-ffkD7XLBNFGhR-IEf0NXj45FMJ_t-igIxOWNjnfI_pywTGUsLf8rFSZEqblA7_JNGI1Miksvd-tl4owz8a7y9yyXlK9EKSIK5zY7tossLoJ09HWbfsCROHCSw0eyJxTIiJlwEMNx0Yw6hDsPvaabKHd9dT76wwdmb5vGbyFHP_9GCCU3m9K8IwnKFptjNJaIHLLCU3PAURWCmALj1T9N6MDywcebQeC6L08Xi3HR00XqXowLvvpMOP-LBVkl5cbFg9VLC9awA56IKdfk1xpkjusPXhWlsnBkL9yYihSHwJp3WNHTgwsOxm-_MSRHMbTTVPYJ70Bz667lJRQYVzyiiXp2bysy3qeLm-aKwjY6bgZsrDFy6I7Koc_xxIRkzYDJnoNxfCAvy-j3E6_qsQl5vYHu86dRNiNNatYVfZamA6bcMd4nrPO5VMDCha6MDirN4hJJ3--WLtoYvLkzXZeuSfK7I9maJsc6fh6w3c1meZ_928_K44694Hsl2yeB1BL-AvVornDdCeb0jfnQTamVBvnNOM-BKwGzW6CwobPhDEHqNSWMnNcrRLxr75Yk5CdXaWVLCbrEkrfa4hWXzJU9VckK59PeOV_gsPR6vo3kucuXmSpBTSN2JQQSxwzWJtZg2tYEP3_L6kx1ffvpf-JshC2-ICiYWkGfo2ZR7xMXM5f-rY8rNhxtxO4OfVowhOUAM1pKyHgZYawVmS0E5eupIlx2i_sIPMQQ8d09SHyygAa64sSF_jEVcsknt0MRv45hkmbhEFTJy-xUD8IyuQW5zmdarO0j7SkxeYAw_NrbnXIAelR7Ti-oX2kfSRvpRtwUiuixmNAIxSpzbK7r0T-mjp6gAvgSEaJn2hCXdbNsAUGm-pUq2bz2SJMPEz6Dl0_1Z06b3AB5Lt-aa4qWcKSiw3UAWQFyh16hkbYJwakKSo7WXto54ogiHYKVeQPucxQEJld28PM8dlYeXFnPoaGZwwCsJCCupKtHW3AGHKuafBdLaMPv8YieeXyaTd0MQtHAwZ-aASC6iYJMwyy3IPmG58DOINSOlb47qPnVhjnXwbRepaYMIGW84LvuAkauSBiuMA6xLDFKFo_YdmQEjsy-GNHFwFJ72eF7Hbf47i9r9UwinZ4iAff4znqaxQQri6cRNeYliq-Pqqm92bxYLYLXBI3dl5O8Yhu2LohubTkxUPvdO84rZ4kMtmhwty9lpWGJPjrOYJb288HeTPXZi2pIo3osO4dYrWkC72IJtb96DFMez7njxyEMUAHgZ_UPCyS4bHbTlTos0phbXb32jboUYsNnYvzJ0Hr65QQbWkpYkYjbx5PTgbDpuYrzWy4DLSWg6fmuO6jQLMbZJQwIOYtDML-aeytufXOavPX2for1pbHRL1Vi3aJa35qm5Wd6rrz_zfWrotYK0PGCVDE3sj0rSXW7GlqNnhcS2psoQOHXIU8WeQjEfix26GPs7mjLPW7J-6JFhXEf1IMBEa5M9F2j1K0OG69pMp-SEKnQKu8\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6855014c820a68-10383262','','','2025-06-20 06:35:56','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43460',0,'cd-form-entry','',0),(43461,0,'2025-06-20 06:36:30','0000-00-00 00:00:00','{\"firstname\":\"Sarah\",\"lastname\":\"Grantham\",\"email\":\"sarahgranthan@btinternet.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/\",\"recaptcha_token\":\"03AFcWeA49z56LZhwyB9AWCUekLD2E5EBgRxPWKF_p8FVeIZVAUxmVhBqKeiMxlYWJqiYb6CHo809vXLXer-sRLyOaBIGhftzssuyzLPNyHLwNR7-fR054acNYQPifrVSW9FEJm1FIlPRplMVWSaYM_dXbTEBhST8UPTWY1Qh-ngFhpwhUROMcFoi82MYCcK6V4WarzatnEg6jxrSfKjwn8Wl2VPEGlPpQq8mcrgxSQMUdn_SV3ahvjhTaBrbmMN0D2Iul9DZMnVujqUx82dBXlSvxQd8laa7ew787rdATUOUfA9ZM8AXq-1kHY--dHMidSmLzCbVoIwlMyLDLgtS3mpTurmR4UWBalbBlxXv6RlDfCj_fw425xgNp9BaSmE5v-W3Hfjd56VUcFz-Uoex6F4wWWS5HGvmc9QLUblhoNqTKH10SxJkFuOeGlTDytQCar0gd49hnGqRYOySIaZVAgeFQmlszWVD4VFEL27ZoRTXy0KO6m3tKJCT5WAyMtLBYigMEYy9vt4yyPZPGH9F_uQuD1O7LD7K5ffFWXcqBcNP0JdbUbaP4nPH27sEtPqNClz2Wl_f4VwTv2lsYjsrFyIRVnljzYDVaDcXCVSGvTbs70sSPIasfqMYed13Dxuu9Cic2iPKyqmHz2TRaoxTlD2C81EQSWTLJ5NB3XXLArIZMU7G3XsshfWTWJ33eMC_3ymTy2I8SXaG1knceTy594Wzjj80t1eg7ptVZcC2pHDRVb51cyTopYRugfNj5Ik7z1d3pPunzrJYk6DVk9jdcqhAD5HczO51WtqhYx1Nectt9TSd_M9JWMY7Z6PiMkW-WlmrX1PO2g9hjxkHpukroHyhFNQOlkd4ahe6VXl-lmdRRrSasoEmAfv6G5xVCGqok0xZNgJ_g3sZJQLI57AFQOgzeeWNq7XrShH8Ywh7wAd63PC5hG0QVErN0vcJAOwUuoe-1AIhaHZ9r-9wcty5TthuRtZde-1Mw5j4DbJiS5K6q7SsvlJCqy0i_eXqHfScCf25l7ekwfzRG8Psg7WzUSp9FBLDw2u96xRcA0_pReDprKVL7zm4PzozBzNzzaUauGuCch5KGmEKXjjKqF5e_t_rZC6sa_OG0kA8alFaC1jYZipC-gy2WxWyr4QbI0BYi7Xt5dDCI8l1EylUQ9lE0FTtxegx-4cd3I3QpfmNOlAtvNg_J52XsbQQAWj1bmgCbQkg-VTjadbKrRxpt05IfoDMLA1xKKxlWnUYysY59vPCCISAIUgUYXrtZdQ3g0MJcLgg51Q2PTrue2e-ZZaTDJTMUCOXcdeL5PDTaPlSqSGgqXrGLbg8MeZhve_r4cPpGgxTYYLjC1aiIXAkTRhAQy4-PwRqIDEPi-kIfEGdQxwaS9F0FWsXZ0Z93Fk7WkI9XH0zqWmqUBINtohm5tTfUGRmfgfMn-xlrVzw7IoQHuA3d1s3hRz7kaftUDwiMG3oQJUJoBWh8AQ_jYlSl4NugIWmNTXWKDV4enksdbxCfXmmzQzZCRypfG_jw-UsKAqmxIyRrqJ2Zcb1XOrT6gD_s6djuwmOPYp-nuviJuQpLx8zSxByUojxwXKqcWeBaB2IVUKM-cml93_2ejkyp0YwWI3uFc5amodSafkpVtxvx1OA15cXTsuzdeFde2wNhbIkKs_jQ8Q7A0tqB7W7cpeN-ry3egEzsTy5ruNzcfWRaZmuQRS_oYpA6f3bAu5yPsS_1tT0TjDAiLUC_VBv_fhdRQ9t9V4aBvmLVLCZCk-ES0EW4_4v5RcfNPRqHFatmb7jIXThecdyPLJnwO3YBhvEr6OcV4l5j3OBvsCKWpicJuXmFbHhoreQakkvm-TRskAMUNKlYHhS3z1GexWw5FL4IiKbeAzq2cbRdNrExjI0JKB96nrX9v3RAHYoW4tEf7q_ZmAow6Oz2PvDW3KaH9NYGgQlJPXHV0TtVl0dlV6Q7jAi7TSnjO5mJWzD4Wq7nhyvS1iiTcUtMawB-1skj4Cv1vXTu__FQxYpOdw5MkKs7PQrevVDFfXs-OigHGH9UTQ2iKPX4UQtVAmqJHlJLBmdChwzjRskE4a5iVeND82KIcA4mlhv8tBVzmulpqTm6gXd0gEl4PCP4LkOoLTERGyyrAatABmSFGdkSvyJhyjjZ6XmSy7hNbORkrXI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6855016edd5460-41212093','','','2025-06-20 06:36:30','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43461',0,'cd-form-entry','',0),(43462,0,'2025-06-21 07:29:10','0000-00-00 00:00:00','{\"firstname\":\"Julian\",\"lastname\":\"Crooknorth\",\"email\":\"jcrooknorth@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vjfx1x_mU2nJ3fCw2Ar7NcR&amp;gclid=Cj0KCQjwsNnCBhDRARIsAEzia4DBvaFdXIUAVMWiSNRT6n2rbI32AoxjoC6DX2ZiAb3yT-Fqt6UhL04aAiUmEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6xgu7P1zIznjvZbie5dH-PM2KXH4-y2d88b-yZJkISvvEEBzfS2zw6_iajL_oycV_OlsKBdmyk-vfdb5yz58NVuLeVl-O-EdIYZVXyyZcX8yk4cksULl269HxbfEyQ31dmKHIrMtYy1by4lWAB2c6zO-C9DAXbHuYcHGBFFth7JPRsV2tGNgfNSEYwhC-G-MIAJVa2m1-bPYxLp6CLZLLgoeJi0E1K4sorqLF2mMfB1s5CAL6VqiJrIc3Bh0Kmse3Yizmr5CgOsQBxct5nytQsIRIDxiJSFl4URCCKDr73fMmIPhrMxXdgeI9xFqJ-Hymc2Ei1dUC6tPZ8S-BrmAvDENbc-H0WQgxr_wzptX3VWFN64capiHVKTWJrNIln9UN5jr77mHaNL0rhS1db6NdQejgsauY9kXrnauMMtDGQS5bOaYWpMlpsw9TwfB3wNjSsBqxPyeBNIMeMOKA8ECMpoiy71X8xP_7QlePCBLAFcaXoSACIr99yDBPjuSgg8fILv6bNm_EZ3xvubYO6iZTu-ho-hAKvyueJVjQ-YXQE0yO2G_QUWsRHCM-MLbWbbvOU5VqGnZSQZK948w8LRuGHAX0gkXc_UxmyLccSvK4eKj-MjqLIWczHQuxhEYmMOncGF2PzPsE77tTS9IFER_u4gh8_sbovPh0VBt7xP6D0OOOHJ4FjD8SXmeT6xwkMg2-GYEj2DSzVlxucCxKib86BPVKg2b2Sbl_0cXySJQPMX_c8268XE0R3vgs4Ji3bmqkc-Dh9TawJgC8Bo1YKmQOWkf1gxwiObfRBuzCGNI1riIjKDJeZL-9N3mTZ3lD3Zg4oHBb3ICFWMsr_qOrQuWPN3AMO3ZBG6YZINq-zoeS_wxhcOy9J-KwFUHENAHvK6REwl41Nnuh0IBus_slhujUr40G8Ip29K4BOhnWKX0MhqwSaIE_zR519WiXFE8M8iJKoQwMvKd-nGz2Igr9QJcYr7ktfgiyWQhWpWEtAiMsB0K9c__MAwgBST8DV-fXAWx0BdqG3IQz4dPZRVnN-4t0bfFcqNmmelVB-vho2tY71b_A8P0ylhwglB81UeIlpSjt-L-hLDFsMX4vH3OaW8NRFKSdasGyMAG8AlA4ZBukR1guJ-47oVhhrsQ0HWk-YyKk60xZ7yTrgB5TTkEGNcdFhlvikQZEdDRQQKzSawMpXalxGbrazWoHzZl_-EDgHeE7tp2O5_zLtKr8IT94i_FF93cfG9-ycFgVdXujWqUbel5NfzLmst4wCtmJmDlLdGNPkvXTpplHt-JFJPw1uJnSXPcYl15QWzcZcckTan8z6BGFHeQkp36lVl82MxwhoYTxUPRoxLD4PW3ZJDELJmff7-5b6S4K4zSzAG8srX1RXe5dlDASFbQyM72MMa7YoS4HuiHDNm03hSLaabMap-oIe2-BnhBqpPNzuM9-0Ek4wj_44WZOolqH_q355-_-bE8EwH4633pz4a6UNbVXj_QKTWAG0eMhuRnQLx16DIzQDpOxhofwb5z_J1zh42w5xpYAd0fHOOyriATj9sGLCNvu5txvap8kO3HEzYrxrKO-zJLEpGrlqa4p2Fxa6xcpvGjmnF54oOvXtrP6FhRpyPsQQfdindgtHZR5QQ9qTXQBPjXDpOHIIwPmH2tnOPln49huPHsUuP8q1hSlSTIGlGnqR3zrzRhz0mBTtZQQ2lClxrexKBYsSVe5cksbRk6MRTX9G-3BpaMwvsT6GQyBp2Up3TlhY_Ap9C-MDNtiFaRLCLj5rJu7FtjUp6v6rnnVm4WlXDfsHaEIqs1EIq45tIFC2em6fB3T9rXzZi6QzmuRp2i-OgqglQFnplhAxgOYGoJR0N03pdbydMI-XgEwv8KGuEA6bmN5VctQ2Rb1aCzU_zeEAnCvv-LW2v4C9EdPCsdu1LqFfkkYOgtufbaL1yGpx0K-bwmT44SRepz8CsRmaQ9E1pq1HfBQCk6DaM5tPAeXFRQc8OuFzxhlrr3ZQFGVBAcHJ44UGI4Z7a5fdyl2uaOyW6FQ16n5v-NL8KTz-Uqom5afA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68565f46619b17-81569837','','','2025-06-21 07:29:10','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43462',0,'cd-form-entry','',0),(43463,0,'2025-06-21 09:25:29','2025-06-21 09:25:29','{\"firstname\":\"Liv\",\"lastname\":\"Ellis\",\"email\":\"liv.ellis90@gmail.com\",\"contactnumber\":\"07584248426\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwsNnCBhDRARIsAEzia4BNf9ib81lQiw8QvhqA-Ap7aR-O1N2CtFd5oFvyy9xHckhwCcLnlIcaAocJEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6GUtvVwf-H8UNcOwLDszkEwwM4zWx4ROLiCdHe1PHSuFccIWFXqrW2HfS7hg8QXG0Kn4kVeCt8o6dIbfcn5X6lxEhct1JBOIR2cXqMj4IuHlmluzk2-PWXWarvPAw2nHh_OES2HWmgmATvy8Ee0yOfNOImIW6ZUh0t_9CWA6_AGEF9QfPFEltA1ipBVH6xjrH2sAVCGhQnZZfZcVMzUMF-GepjvKZAaY-LP5Pz7Fz3v4OJX1Ecg9ad9nSUNDIm5XITha1FX1zreTEqIlieiP9SBnieUNGJFobW2rFbPjtDshDFqMhk-GN-hMGAtACSCzfEb4J4Iu9e4nuq0roYxt3jTeSDsYcQbE29TPa13iYUMoxAeXEgl0HKgIjBnux6jAWCPCS-FaeNrkykYiowY2yxFEwvf_yh8x_r6ziCoWGiFBux_a4RZ94-aGW_u8toXvVj0kof5Vc5Gds9UMiRg2WQObHtS_ROW_DvAqnu_sZOUwZE2I1O9Bbm7SSWTrSSGLGZe2hbGx3h8h1k0h_bF7cG4PosGm908Qg_JYiGbbCjR0ZPwD3LK_1FEgids9HpM7RNnvl6TwK5TmeNpvKn6v7VdyohXpTEmjZ7SfKnoDZNx-zTZwoP8j-thFzg7j0Na4OK0W2MqkqEEqdidODdO9LeQMOxhMM_ZX-ykO7vQvEnib2XwowLFVUP44q1SVVw5ed6Uvt9ca7OTzi2iebBBwG6IUri-DbSzDT__CkzW4aITau_cKt2erofFqdPEcx5w8UjW_S5IXaN1Qe3w_VsyFQKd3V5bSryb9mflvBG3msge8tiT42WrVU1S1Dv9vHjTewre-grMHaCXouXNzlM7JN8xiPfohpmRMcx8jNBBJ0Vu-lf27UcqdpHHNqjlzABpIk2zZDl8XklLrSnlkXxR6_JFof99Vnfp_zZI8jO-JEH77pCG6QmYHF60Mr_nRCwJxHG6j_XvvqVAtcuWwjzBPoId4JAvNtdzTzIDh2e7cpybljC2IBA_3aLE0CNQb-yIehCVpZwrn5gyOPDDVsV00nZmxzZE_4UdRNdDykj-ynkvG-Hnmrljj9vWRZtDsuZwECKtzNB5Y6UDrM9nqzxoRiicMh58tQC-Bm_-LJR5_oio9o54ng91SNNQPgqNT1LhZs4yu9pQr2AzXF_-HCk_MLQ5LkjF1MKyhdrphdmxRjB-4NHn8hPVwYOu3TXHhTtScFI4JftGAjEAZpuCs6ew_olSlyCiLbLOAlx5A9SaQOOFa6TWrK8gWlXzmdzzjzGcWFz-86s_IdkaVYWtjfupm0r5NJDmcylCZ38YjV7fbHfFz-Tkd4n2a180vscd7co8ttqZML_Qaz_P7pdxxGN1eYicIeMt3lpjKkwdfrW1uXtKdofRHkIlsLVxbKrhabDJBxzeT9b_2q2jnj6neZI5TGhWo4qcHdG-3YwitPxfoGlzWhI-9_6aTDqEMgt71RTyQN7FlPWOEvvRF5bB_uY5lAMEjeifO63uwTc3hgHdavSgo9AcVDcnkP7nJeiQ4bUDbW5RA1hDbnzV0ZUR4fHeKijTU-d6vuAYwXOpdeQwjGTSPIAiPOaFGI72B39SyD6jK56lElUPhFiZloj9KxifO388aeObMMtWygGqyWckIXIN1Q08CucAz_lLWvjIUydXmAsOSBJjdArbZX8Be-b4I_gzcwqAC5AINmwjXYPG3SOfz9DGhk5XHmBgXJmWxsSPVbFdfUiu6qf9RrFDLmdv5kVxfksInQSqrTfePAwv1BGw7gpvJDGdYWFMxL1JT_mAavQp0rd9aUALc-rDhCWebrFcNK6VhWDD_L06dFkunkLQ-0zPLQdTKcCuUsRgFMuxoPWViBMaYXSfEjQZee-4K7eS-I3VyGoirsGfx5s9NamfhysrCM6zfwknxa50k2mWEgRbtda9LnK7wif5ieVeOFil7D1a3SVT7NUMowpuiHWNA29QAZDZ1Aop-8odkdhD_9IqlA1lbK88rgOR_Y5wzYnRRBR1S9nFcZtupw47UimnVWUNIh0U2EIlW4gQ6Q6aUUSDi3vnXbuieTj9NGQ7uEOSnnGsJlJ8djnw9xTmNoLUHWum5EKebJo1ZiewVdkXAmRLYOI\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68567a71dfe909-64374874','','','2025-06-21 09:25:29','2025-06-21 09:25:29','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43463',0,'cd-form-entry','',0),(43464,0,'2025-06-21 13:14:53','2025-06-21 13:14:53','{\"firstname\":\"Ebs\",\"lastname\":\"Hepton\",\"email\":\"ebshepton@gmail.com\",\"contactnumber\":\"0\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6s5AlCmM57nZZrvOu6e--qJ-&amp;gclid=EAIaIQobChMI5KyCtMuCjgMVz45QBh3KzDpxEAAYAyAAEgIXtvD_BwE\",\"recaptcha_token\":\"03AFcWeA4MHL__J_zKpxWVLzP7KxAFARnlnOylAuJgn9YA3WmNDoATGlU9jYdJogaGpQrK4pxB_SI8A2BdLlf3rjtiFI9oZ80nADn5HA8zD1nD7FDzlhDs9B5vQNEWy0jAlP9srHfaDMmFJ59HPSB70KHuDo8C2MFPnOGPGFSty5Jl2PjJdzg1qKGiBt4MaZlrsoWZUbw6KprwOACqunb7-W72wA86q-fIdDS46MUkFAX9C5dYwi_79NjpwvO3-sDo7Dd_3rNpJeOYqnS4qW63b4dVhjpetAmjJueKsgHP2ESa3Q61hhsEcwNMgyNo2URYhF9WRAg5_ptkSEo33b1vHdj3QhNpyHaC2ADdurFSt1E6sako5NRAS7BYOv5ucCnORk3cM2Rs5sWsXaGqRG5g91d9R5ZF8jWq7PGFPS43isY6NW_AMS9QvRX6dAz6AM5g2jYMpNq1r2qMJ8oysYnsGsooAmeEULYySkOVS8uyE93078gOyriSv_m_F6ga-aLaClGzkQ5626qGZAS3yhHCPXe95YtFSViLErfxzNilYejq9gJ-qHItJ7IXFx2BEeLdw6_pRxaJSPLxBZeQkM6ZmqOUl6gHHDwIYcM9vnuZEhz5pPJE-JI6mcf1INuUqUJqpOYBZ2x398-Q8AHBJSPYdVPkBo1nrVgQjiHJZJEtbglltvXp8X5wL_03dDX2_rYDmDB-kRZPRElOiR3RNBx-yC2CKkVL-pvoPEyJwQ_QZfz1OnnjhyLkm7mlHof_L6upWY3cco-EHSECi2kL900NanoAHSPSJOHNW5TH2e2l_vlPeD-MFsGMyLc4yKwxmwPGy32xWKgkmFjxXvIi3hwHFvxx9-y_7TGAoKkatZsRK10oigHsl-Q_5nlox2_56FWl-nRyLqNBMdUv7HarmIbFY_kNY5ag0CcsnPL_JME0o3a5neuQOT9PgKztkzrNkkq8-gepetym8U9dshYJOYhtLOKJeWEYxrKNoesG1LKFINE1dwygVVZ9WFMCcMS89uOs6R9SQp4hEwSURaIdIE0fFV6a2MeCFzCPD4SkE4gKCp63EhQTMVCGgHqdfMtwZzqefL2F9zf6S2Zogpz1-BZj8KoJ0CqYMyrhAZc4GCzCwZe-NNBFW3qkVYKelOCjNo4xEYDUNOipdSCW29SYrQeZVPZey6LFakDjayC2rrR-yzoH7aPlrJ74xhLBCbmJ6SGSEVbrWK35rgfp697i4EaMM9acOHg12rxCA-H7ylGCDjrqIm_p7TLVZ_J_JWAkJNnHulhdeZKj_A-cSLxkrjhtTyLTW0gcNrh7LpZjlTz8Ir9FDS5R_5f2b5I6Nig4SLiP2pSIJzM1ulHGhR07eZe_LyTy0PNRXuQ98T0QpEc73KTMrkhEPonu8TvMzs9GRrhvqcCyNTXCvvP38M8AW3upzZl2RdgTe4F0cBEvfG6BPy_HMONZir-8XELnQ1wzgtGciNPgzF55QIKixJdSFIH0cIfoyBvKADs59RqCnvTRThUn0wlYs2Jgl001BYn9CvE2VGhHez4lvf0DePj9zp4n5kOFpIBxZ2ShPUyMkrnY7taM06KOviiZ_tMvOmIcVW0M-POTz8-XjP_yXKwW90VPZwxobtk9gHlX7vU_tdpm2OSiNvJwPqMJYv6Vr-kJJlEiD1SwX2aR12JAcOQ6UhYAmqt73xAfmwSdgQMQ3zaAWRVtbTol4cs4IozwD1KhaeIuzwDwhLC2mr7-FoPzQQNyBvDJL8syRS3kSaMXcc-iwfimAuf2mGKliVC64tPQ8konNoXIM7BqUwB6KMHVAYXaU8xRphxQ4rNudnPP9Z6jXDOIxNVroTKmpS-bRVsALi5m8A0Z8jl-4gVRNUMiRfWu7oKJTHP4jV-PSYqXaBiwjUqkWXiILBOeXiPpmAO_XepBBLMT6JFHCvKn2VqN55_0T1dQ4OVFRZtLdX24LU3roNY1MdK5FCy9fYCB6SmxelEIWqTapdSo7mTrpnfDUuKNuCKrKqccV_xr9oH-IAAVz8Hr75EczP2o2VBrmlMBlBuLeQ5mdxjBKExLhq31pJLXzs8JNvH6dgE0RFLVf-ipMug2Tsl79q0Xp6PmpNeCa-he30rI1SjNyIw8peVXxUXYAZbUe_7198_17grhk8yqnTEHhAMNOAWJ50clBVxFxrId5PEnp57Cu14pZviPIAgP_TTEPXE2_ICkbQEHsjIfFWxqgNZ_0rxYC5Fu-99ULzLXsfgbbGppMjiTr-mT6DJJf8Ivf14wYiIfk-NlHNurZd_8hbMlH7O0rp5d5De3lLpDrKSkL4MTymFSwkSSajfeDfk5D3phZcoAFg7CcqSZwBQvZnzAPPR0oJ19vXuPzK0OXX2eeAYt6BOewL_4dI8ZtguRyCpsbc0uw2Q6Xrm2MRv6VwnP6QJj76E\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6856b039d46626-83651889','','','2025-06-21 13:14:53','2025-06-21 13:14:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43464',0,'cd-form-entry','',0),(43465,0,'2025-06-21 13:15:31','0000-00-00 00:00:00','{\"email\":\"ebshepton@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"2\",\"genderidentify\":\"0\",\"regionlive\":\"7\",\"currentpostcode\":\"NA\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6s5AlCmM57nZZrvOu6e--qJ-&amp;gclid=EAIaIQobChMI5KyCtMuCjgMVz45QBh3KzDpxEAAYAyAAEgIXtvD_BwE\",\"recaptcha_token\":\"03AFcWeA6ukm0h7oxQ2sGQ3yX_klAi0Svqx2vR_eLjErzL1VJuSkCdkde5mgR9EQSkETn0QnAjLUOHYWICS6csXOopy7RsuMPrjHtT1EKauCXAFvncsz-Ui28NHSB7F6UTBHd3XFdNwoAnF-gjffZMN6_3bm_bHmPmbqC5udakZAU-qMwkEC2p57jq9GBX4guiI5ai5JgXVFETb3Bq6913RGbq-7TTj5c5WWZ5OVAv8gvlXHq5wnfIBI55QF9ipH3UHoVT6Wxn3ttrV7KoeboIBmNoEKNQC2j0jHWbc2y-fnqmX1q3EauSQSLAzwGEANnGXitFxO7Pbrz6gGw2EqtOe9khlQAVBAkWbiqq3SfLYdVIw_CEgnMFOMS-1NZy0sYey-kCNbsvmor26w_GdYcgsG8eJmt4-T4XnMtV9oDDJFvCvpRuVjZnFEIAWmR0IJAJ0H1SuGaNIUTjJx28lkE5DMJoFAeaecV7TAPUJB4xzuXlLQygJMArCBweH81uw1_6-A6oLQPB3MVsILYDiby_jAw4IK1kDsF_u6uruvSY8GtVXblASeT_C-tah5SKgNjW-JkWMoVlLD004VN0xMqttus-j_GQvvrHNhJaynym6VjNSkljJ1ZyWAMFdLMVPQa157lzn2ZbT5VFos8BSZONSpPec2tnbDogu43jsa-bhaU2yVwIbcb5RnmRMNckakZ_Qb1PYiwuipx0FHpA4IuGzcmwtbCdMXzavcDONiHHf2aHq-habwzcTDNPQe4NwS2oJQNTbT5YVcmSv_Sv0yh9H9yQJgZpsizaCmqdSdIRyQRZhpJUJvY1niKRknH6wdmoYj7vyNNPDN4QTjwaz-wwBvwsFGxBZL9AJBj7tTMbQP8NK7OlnNDZAU57oh3zOWmzRAwvX0WxKPfbkgFefPGNYvJhfsw44zdjecEhBAj5XahRK6NCStO0-YQMNBcDZrYN2b5U58tSGbhlaToxnTwafezwLRhYJRcx1GnRQoY2dxIcsZnNwtty7ekX0doB_jlq1SXCumyHkYCBqwULVFHNDOGUKBLU-oYy3Ri63PqTVhFjCdFcaVJ-h8QWEeAi-gL4VH-Z2Hc4R3OG2YLH1VFCGfDqf5gWNbc9_mwlmBVqx3BncRFCiKpM_tW2yFDiv1yXw30Whmw2xD_YF3mKHcOOkm6rkevNwaU63muB_E4JajAT42Am-f7TN3HtlBhpNno7bfwNR_PIIyNwVLixKoXy60e0m8QT7OKQWLdDRNhQc05k6tWukOSEJdAt-vE5FS8FEuAHNVexiGZFZKAArbvaAo5yDj_dCUtmi0YzguZGiUa77jwvNgcOJFYf5OffaQAf0jH43VtAnveN-foo0bZKJqVCSLGhMEMiDPR2rXmcbqch8twbBuL9kqJazbi7bWXKreHZl_HVpHvOipUV1q1Ss6mxVtfXzNqKOuOn93aDN5ymWRw_5UDE1RHGFSEb2ciIu8e0A1t7Dj0HoRhhC_ojDlmHSOZH5_zaNp7ai48P8OT0ldyAEL85DQX2S9kMOPrFfJCaVKVQt78gLEqjMI0nz-5kfGEzS6kECvztNYr5xWidTSolxJKxRWbuM0_W5uSfdY-YoH8xb-0P5JpyxTvEQMzm1MN-mFV_znXMpTvg-0DayK_-pvHTVVI1RiPB0lNyQMA0NjhvosFcgC3eik5hbVikf3lxZRNu_pM2vJ4hj-uLwXYqckEb_1175iseZvLSseAfGByU8ktIdcetGxobEyoY6qwW219IfMlTCFca3ZtHPO8ahT7-8tv8Kv71Vy7MVhW-KVLXI4-eCf4Cys0L34ol0PUOsgePQyJsIFV6VPRdUw1Vkp-0jRvd0W_9jWCgcZMZW-0GKg7YYs5ilXHi1yEBeJgCHKIFKstGlAiZnLykTCX5f8_ecjUb2e53-5Zpi9GUFDotiBwbFzdrsgr5B9vFM36wPWzWEdbw8GyKhysw315eBXFCQah92zEGhyPXjLZvwOteYCCUs3QFfwlkjUV_fwik9pnYYvALb9ZX5TFdcxklqrnZTjEmIwypjkLPcACWf5JcksOjfFNQix4EDMOmbMSeDsQ3sAxw9lBuC72VkK9reTSEQctN6rCkmOJMMDv9wv-0hYhSgnI5mO5_9ZWbXqDKpWPY2E4xSlrxf_j6XlVAGQbpLM5dQWNdkLK9mIfyQgWlZBwAtHZUysIrw6HUraiHHc5h8BKgSkZiAOVJay5JvwrfvOhZFaJlt-OSpicdSaBf_7bXpPuIwHq0Io-zQIk-7GRnG5V0WX-H_IzxPPXNfzVDPg5ucyv3dqz-noX_FmzktRDA36ugydSpBI4inRJ9PkL8g66pELFpPY3NmANEUvXyWy0dPD2a76TzHOIeAVY02UTtVKKTbOjSMdyTq1Grcy-0jie_DTif8ZMrW0rj5f0oScc\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6856b073b28717-72816032','','','2025-06-21 13:15:31','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43465',0,'cd-form-entry','',0),(43466,0,'2025-06-21 18:27:43','2025-06-21 18:27:43','{\"firstname\":\"Emily\",\"lastname\":\"Hindell\",\"email\":\"emily_hindell@hotmail.co.uk\",\"contactnumber\":\"07834362243\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6s5AlCmM57nZZrvOu6e--qJ-&amp;gclid=Cj0KCQjwsNnCBhDRARIsAEzia4Bmn973V66IKXPephV9trLdPE6lBQAUCqHzVTy_L8PtNoQtonYwat4aAjTZEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7P4TDHMjtc8VNVf4_HNH9V_FDWkL_zN_3TzJeCUTE4dIfDcyZH0HeQcH3OAUKDXnK4q-JpToCjYqxRCehw8kCNpbrKYmbgSeYgHSN3SwFIuhP8qsHQxkzZCTvU_hLwJ-dpBaEYO4BoB_CZ1SxPR2p6kLSkHwpIRqmr8d_zLXhK4FXqIqG4ubLv1oJMX_oIGLuFwhSRiLVp7CyOuycv3FAqQdiu8XVTdnxIFDx660HkjhVg2NNpD0fMeSow5UNFWmWpNhA1ucJ-h6cQeQNE8CEZcoSafHC0PNAYep3wEunqNcOMKSzrE3URttzVrzjuTXxBx2tr8W7dXX1ySJ219lI1zCom55_UO8s3uRDpcfCMaYfYIUk4hYemJPvLUpC-dFt8XTuOnHquNCl-g37B015NP4X1ec0UCsHL8l5w3GOEpgZHKoGpJVYZUFZWu28GZw1KWIng3efHO2Pf9SZ4gXjhpoor0QcQhX1WcdMtT-aqDVKd2BufCT7j5s2-wHKjdD7legp_vRcxwmUQ9fzQdMDuHCesVd3aRLzJTYWptlAWgPFHp4ksMkWq2VkOrhjgzseci1VvV6MQl6q2kRZW14tFIdPYaLtFc-cftcSbcUFk5wa4ze7GSC4iJTPLbI9GCXqezJ3SiEvHIIjOgapmDDjlPxkSOiYA56MmfSycaoTT61OnN9DMOWVW5Wc-1-iguYDVHF7gynRvkE5M_Fj2fEfECEyikz54H4qzbhs3gfkU1lfDTh17gb9Mv1s-FiEbPZK6BCZK7_1_EY7zAn7jC4Zxv4uY7ZWX5eXh4giyPvoOTlyO0WZ_yFFTgoBnXWQsDWrm4usQfU-IRd__kRoGzLc5XfEzwenmIwekmUh9UQpB25SC5wR2O0PnrK_ZJYi-Y4BJM3BUtTdEysufL4GIU2c5ILx1AEtGhavIuk8YydK6DahmukBmKYH2x93uADVuaCZ01OrtKYkdNl3ccXprCuqmYJofrorHk0FavH4-JJp62-hFnjBQI6gx-wUc7vB4U6Po2cb7Mlcm18YlgIQwukbL_qoMLgaT5kFz_oaMlj9vCs8ichPaMz4wAC8cvTfWOEyAicVGBvXLZgfOdqiG3TeWfU35BrzYL7tBeM7TcnlZU_jk7TBKCuAXtt2YI0w08_iXlGykcxUcJbxBGM5EDFEfa8OTGRVrBbCTXgKi5mS9jhbZg-O_ylXSTcqB6s7JZzU4nySrO3QO1b2gq9Lhdk1A2qPSJ4k6iYtO6U03qrmk5_n_NBh4sEjegRcH3yel3Bw28TdoQcVDtnpaOFjYgpHVPx_rGGR5-VYBC6GkWnOphL7anTmngXb0SF8kUWDbJYRn3OzjFyRs6vHcMYUdq9fkG9vLI1Uw39EXjLLrL2xuokna1uRVeEjnqLwcpJ_4_r-XQF0wusNXRmLQEJPDAj6W_y39_cLbSTtjOsaGROmv-AdBpsto4OdXC03hOgbs-n2KhXD_hxM2x9ix-Vqtru5362PjOhy2BdlG6JpWlhY_ouVq91I7FwQkpRWCMtnath4NsL9DwU0_1PV8J1tQrlnDkQwJhUL4MAAeadHOnQ5rPC4eLhYMUVJuDNS4ZxV6w7ppyIMWYEFkc6W_8uHNnWcnLNRvtDXkrX9KgMQVtc-kaMxTj-Rrlevpgrd0nA8lM1t0x0EHEi_Wnym0O54nNcM5Wvw2WlQ9_8CEYZHldtH0BTUvtrJwBs9hdePXa4ycoFSSeaaaLjPMLzSlAisEi78k9u3MPkdYAmJyoIrq00BBa8HSm74PgWXkwNltoBUaFplFl7IzLw05SXpedZsATz59L4A71PBWkG3gO1i03RZkpZ_czvzaAP3KTG_k5fZKNaiAnsWMGu2qjoLdTPvAMTsOpt6vYm_afyKOM2nKFL547_UpGQy_o4fX_qYDlvYGqunVSFlscGsyvCtzbYikmzKTulAL3xhzcgUTQ_EyV4LQr4V4XUdijP8FKJaN1e3v7gFRRbnrWAVQ6Y2qV8hHMgTFOw3SEBNKMUhrTJmO9toI2RWRGbfgkcWcV_nJ25gDgIcO8y3lD_f_P75pOpJAHFqE_-LlLqlhpSBCt3zEK3_UGZvC5ghfC5PJGvGJORLI6KHFPeLJfR9Z7305a9ZaaYaYE71iJK2fM3-CTzoDiq9EemxhlHtFYBgd9RVFVoLkZ6CE5-3RtVKQ_zXhvpdQA2jvro_5sEkQ-rDl1FqoaoY5e-Am_WXVUFdfJnCY72YtLsRJvQdSEZlGL4-RoDnw-tK8xJjyz7BwsZk0FHJrw26n5YIDWVyb6u61K42mKcgQnVUG5OxKnMIzWixWevJllnErEt-vYgc5J9ED18W78t8q92upZZIsXYbH97xgdr8TXXibOf2mUsR64VuqBO5KxKjwt4hvJonCN3PJvy6PFstt8H2y4WY\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6856f97f6ace57-27109532','','','2025-06-21 18:27:43','2025-06-21 18:27:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43466',0,'cd-form-entry','',0),(43467,0,'2025-06-21 19:06:52','2025-06-21 19:06:52','{\"firstname\":\"Eve\",\"lastname\":\"Gould\",\"email\":\"evemasters@gmail.com\",\"contactnumber\":\"07973228189\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6viu7wr7Z8nY6AO_p26VL2fc&amp;gclid=Cj0KCQjwsNnCBhDRARIsAEzia4DztpHBGPdpjtGCeG25lCr98lSgUrV1dqxcR726x5dYSPfMRrMvrVkaAoxAEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4kgmNn6aai2ldUNfA1TBLwSzLulcnW8WTwc0S-K9fn4HA3MkJdj9SHSojBix2ew7Sv29k1Usg2MNsDRopqY2jIP4Cr5HYDYn6RV8Gxh1dLMh8CxJsKh-InxNLbZp20VsLAwA1CsFVUSuiG-Map7yVYE8irXPpE3GgAhSmCzLXcAB0GBJ-uMj9urdCLe0iC4NQmbjoh_rl5nqbUtHPk14yWE8SymEQ673TJ5aR_nrDV17d5xnOlla_aEQxnKN-EayWFxvmOVIC0l9We59UyvOePBWa6XQqTtyKjYbXfF9DNMmAmrewsEpQJYlpAatxFC-IsrLF8Q9Q8xSorLXU_QdM9SYI2hwtwP6mmHjSiItxejVIEtnSV3Pd3T8Tmcis7lAPNr1iJarZdvN1VzMYFH5XlCtVuWNII3DgARjXzQWA1N-rp9Viv9gLcxDvchT7mx4YQn6Vz357PoIv-D4lDYaZAYHvqJLW-kxdUX66bAhESDLCdu_SRvKBaSEmp50H1hi-qn6c5NN85x7_vKBn4lMDd6jD-CQxolCNLWo2r3Ov6uv9SZyv9a3EczLETWgV1ngaP1VmjBzJGsp2sowvuUGrnYgHzF0viRpAY_onlsox6QZYxvYQE2bhbGy4ZFwlkH5HStfd5FbgLMOAadOPY3RUw3pmk9LDcaOXAWWPBjRCuYZA4jeLadwuKWqAAdCgPuRurhFx_xszSGf8bSY97XzaJCP4yA-_PITa0TdZnRLX0j2iefiWO064q9Xji60Tvdhc8kghs9zuF1kTmOIiIARj9Wab5qtlkyfV4-IolRnIC5zxXPVoJb-oifZl1GBp-xfJEPSukIt-2Mt7piqy9ng1aCYvX_HQOVBxAtTHhBxLA1k7-3SnLAhIC-Fqq4I3ETB99fZ252XdoAyOuSgAaONZqii36Xux0VsH64A1bXV7GJzZYnepjeLiUrKPSuAaUrl0tT03P1biJ1s-OIIKjKN1P6e70VeKeFKIXZnzCJpNof76h1ulCzKubDOrrsrZsA6A6IKtgxJ_Y7b5SgefysPVtvMD6e4NQpxK7xpi-H1sDXlk27m4jQAppt4pet6fG5eORNeL7tjpeFk3_0KW8Gr0khsCYG92-bVFmsVe_9OunYiufAqrQBJDgQtEhlmrM3FiJQWyxesLi5gXq1fGkPLSx-sOwGqyOj_kqZtdPksu1RDasGffhRz4amldvtuFDhKcCAYZRlK8rfMAbcoWdTSoq23btRzKdkqHem7ce27sgl-DgRZp4cqSumYvJBaRjA0bmFl132SAjBxOOoRdoeia15n1_JuOd7qsPNJMxJtxUGsxQhdWqDh7Aiyc3c0FC0xandxSTPlZE1QPvERty4ZaUspRGrQxy4DEOZV9iQSLXTK4aKs94lzDy7mTzTiyQMwf11U172g242X7JWwTtJeJEWpgJUQLH5dwN1otcb7AjnhAvTPULSbbjpghEG9t4xrB83pJJ0b9hmDQDnwdG_Dg5RLbnaqfa-VB6Iimm39h6_sruxnpXw45j2xyYWjUG9YB4Sn2hi1xAuEfZw8-RT_626MSv5QGcQzGsT3rZhx3aY-5Y--3AREdAweOp7WmOihNVY8uefb77r4M2ZQgX1k_X87oMj8zNq_MERkaKg8ZJqepGCBxxU-R0IrRyvoETIdd9Gr52Oopm4iDoZR3QjOW-ZPTHZupFjTL9QK0nwVzd8KbE6nXqAKwzypyKx7mpuMhVavxIL3HpiBtyzVdDkvYD02SJqH8eNqQ2kNg0GvKHugstfg5NymvuEfJnr8kHG-U37Vq09GMz59ejOn2jWDapKx64Vh9EE8DZ8ah8imoiCfveNlAVs3ifc552NrIqvOw8GKeuH83TnkljdBoEVcw_IX-iUQfqCSZoXdE78kMxswUMLPqkx5bnGW8uvGubYHaP1WCm7PNgeEaS5natfb0Nvc9wwNHCZ-9boMAMFy1hRj_Kemp2zz6S3rykCyk94FR_FtMCKKAbAB6eMFhqPKygmWyNOJe_fXMZIx0bbaw-h5vrmXvBBpyRRUbfzZy7aNairWGAtAYhC6v4PBpOa3RdRSRKIpeW_SDNhe6OTLfpRbtvCdhlD3ccTf9NSB958VPWniAlcBXK0CrZKqObjah9DKwKooZ0jE7IriAvbTLrMjLpz2pPpgZG-PrzQ5JLWbzupp0wu7N1yk4yH2TxM0QiVq9HcbbdMkFUYzSfJao3Hsxgf_bFbcGQ0Nc_CpMSKuTY5Kla_rt2yjjgW1bwx9i-srhAKcop7J2svjTXFznjvKln_Vsvx5Ixrxq1bbc3AWZ1jvjcAUiBoQq7_2vhiC0hchOxaQlr-R5mdE1I21RH2VSOzTI2MR8RKSj99IVDqsVMLEQJ4J__YuXvBn4aqoIHglFToQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685702b9b923b3-25828550','','','2025-06-21 19:06:52','2025-06-21 19:06:52','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43467',0,'cd-form-entry','',0),(43468,0,'2025-06-22 01:20:38','2025-06-22 01:20:38','{\"firstname\":\"Maria\",\"lastname\":\"Rachmawati\",\"email\":\"rachmawatidr@gmail.com\",\"contactnumber\":\"0816775548\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4gEAyUhHM3y6kBH2TkHLxjEzvdyeb9l-YC6dZXli5J0a4z_GLtE8SnL3o_dYJi07Ork4X6SiNtVzacka3YVV3lT2fUrTyTU5vN1WFvuK05xfl5PGXa74FV0aGmHWXv9t8rcLdkXSUyuHxti8DHiYcuSFLQtIcGzIvKrD_H97LQIwtJvR1AwcPtYHSMhzQFGWvCwIBYGwaEWdUqIp0pF5zhiODOGmNnlSURaU_c7c0441QjHMUpoqkFstNn5diNub4Gc13QwlLBkhGF7gzPQD3aZTiOz812VtKlrnIKDXdrb8x1JYrfX7-oZGLoC5gq2JZvFAcW6zVpNh2BDdpEsQQs7FQpZNKsRbXzO3VEgBBIRsruHj5sKFzNfE9RFC1RdLcoF5ToA2TWvO8NkOVeMDjpl8U5mB20MI3UiJ6BpDS-MdIDNlPi-x3lxSFIggHP59-zIPngz15s3kuQ7G1JVE1M-neIdXNRbMdcepgXiL4OqIWHEu-bWlSu6132I_cGawITFBH3qfRe1cfYgdK3KOCGZLlhdKJB_HfT-PWGeXzqL9fx2WGAjlmyyjO8WBC12EItL5eRL3zaGbrm8_-85sev7KP82n05h8Xm_XcZlUqYOvaB5Q6MOr5HxrjMxICGyJ1opxVAdmOOiDaG0kyElnW6WCt-wnlTeqm4tPt5s3V5pX8yCdCVsxVikbybO9fgqG-hHZqgXAoRwGXhDJnhDCIS_8a8uL_xnu7QtngNZFskgJ3ZFNbOvJ4ZOoMH1Qhn7NrpcpS4sOUi1ezWZ6XhVWumClt7wKB-eOPV6Xg8WXwcdWSQiVyB9fSXXJy1nXW67t4Owg0pItjJtspPlxoZgG80-W8OfyMVehnumH9KB74ZGonJZFGf4qnwqfK_ziA37gKrUUVneEC6J-Hn9MDM4mFPtlTA-XVrP2FjyVPAJkn3l-7PHvti3MkR1yEUlFuZzQw-uhQ-IcfVQ_ARJQ9ethvBSpZqslcKgScw6IioMk-aSqoodvkWOhgKaxmoIn8SzBQbPw7NC-Ho9TpFbJoGKAb8vH_BollYwZ7Pp1XlcTs1lKOf_TFGTGEry8GRZDHdrZzwT6D4N2I3-NDr8adnSRTXyY7MpoUrLVShU2zHj-bCBPoZvhCjr6ZnMNHOkfwKveUJxJzmba36M4Ii-CrZqDtIhO6_KT5hUDD8y1aOHjDKzdWSDb6jY_hDSZ7KXFu_NK101uS1FXtCeRg1PeqS8GJ2clzooKVx0AtpPvAmbv8hBWeMb9c6z45tg7-decnKZPXiAi9DzhYjKNehPN7LKmoJR90YwA4JznXytrgRDsD47oTrEh1M5Xkqw5QecoYkcNj5KGdMMkOYkxtqlg4_17ItA2C6m1aAWppJ6Mp-3dITkhUvdbA6f1TzU7C8ac9UCkFJFGSxdh7jsVIFoNk5cmVQgWN70i9VvQBqMU54EPXR6fvjvw20BUz0PZ8ymabs2Z1u7qL9J-ATCYqUZB1NIaXOfYAnuLbMQ3DUXFUSYqFoRwVnBtL7BTmHPpS9XYwhCOMAUor3fm9kGJ8e0ZPSnNYo_yYdyTPpCvyt1T2T_xQIP7oU1GNGaH-BwGlDEU7Lu7A1EbI0B3b3Qim7i4RNFjzBwuztjB8piTFMitLgtlB4s4BIR-jB-Ok-XQwj89HsKOwHoXEmI4bVpxSYEXKmyRSQvudO2J0YnXWKR8mJhgz8hapQXuV4BYr-AIxyboKvzyuCLOqhSAYRc5udEFk18m5O1Mz7w9pAu1OC1nv4CmuuHxc0yT_XK5iM2yxNc3nJqNRHzSH3ELzWEceH63t1oHPwKSyHZw6xzeP8Z78egYqhbJ4orndckzppfgqK3ECzustaA6E3WMKtd8_WXJE5xifvyGd5l32UAvNRrYTPhmZkv5YmlvrnCIYo886u71MY1u1KPqabW8CU2dvcgSNO_e-ivrIx0_mhvsgKeSk2jKxUnyeBQfFAAWmcweWdqhwpXqDQsyALEgoBsHUOG_WhMOpkAHCIVexL9pkyCejJTLKqFfJBfXBDcgluFI40oafjD-A9O1o1\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"currentwork\":\"3\",\"interestedinbiomechanics\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68575a3b6ec234-89005716','','','2025-06-22 01:20:38','2025-06-22 01:20:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43468',0,'cd-form-entry','',0),(43469,0,'2025-06-22 07:21:15','2025-06-22 07:21:15','{\"firstname\":\"alexandra\",\"lastname\":\"richards\",\"email\":\"alexmrich@yahoo.co.uk\",\"contactnumber\":\"97974406535\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6t9bWZUMKkLwR5RTfl1EAEJT&amp;gclid=Cj0KCQjw097CBhDIARIsAJ3-nxdKaXkWOOkhDNU9q_qbYNs3HXmselbTouAsiw9BdEowriItP9ALwX8aApdREALw_wcB\",\"recaptcha_token\":\"03AFcWeA4I9klFnG64IBbt-ovY8-h_cxj3fwU-9sqHmyvqyt2HCclONf1RSJk1wlkbYaq5wDNekygh3ZrDazE3_PSLDcNQrv7uMEOe70kBNkjp9LuvpJg2MBxdKjL9a5j_BqiTMto8JqLTBYoOAfIoVFU0-fQX-FeC9cxTSMqetz7VyzpNY7isgzyMxA6r-_iUKaVE0nWxZyO8ay451sdEmQjpRS9PzvJz6FRjqtnIByYOMcGRxO-TlWDWRKbfuuZ09RDs0uLM2W1H0wnc2o9lclQsL9I5UBVEzw84oph_sW_dmodbcEkPyZtsErfm9C8K--MjoDw3TUso4PWGykx14dl69VJbN4RVOyxJu1GnZKH4h3w-WvZy8GpvypwTpwWhKEGFsSK7Eupts7aifrhUlJ8BKxewWqJDXwfKidDGzXu-1rvW7QBW3m_WLCPY90djECkbJ6FFHMYCr5a_jjrCz_JK7jLKlrChl1HC-ADfmx6d3dIBkAkHJTpcX-FbrRUYrKlDJqIPE_493DTpjjdkOk71lYacSmBslUhBMreu46B5UGIDYqx8-CGYX8KR8aMp_GhRyBuY2_Uon7x279Wtg8sSf1E_sVIdVdFtd_kmUaa15wTCW4qVpcVPN66tbtAw0kATQtDgq62BhxNNX2aP6Wa6xTylDFXMAimGOHoMhzsWhYIBERm4ShxLZqCmmgWLDp82AKNkzo-opdtz9FefG7NnH0yO57uzdBZFz7yggYTDBrjpBBF6qcMvZEE7fWl0ugJ1bmKfRMBODub6c1lzMeBHzSzjR8muuJ76fWMkRUKw5cUvViuFZJ-WRw3tnUnD0Wnc7E5UsN1ABZGrbUzVvMyDkD2FVkjG_KMuoY-w56_Uc7s-K7gdNP6zHvZQzfEhVS26jIhFwpFcJ7IaMgWIW0teKq4YsG-XZLbNkKmRP-_IAcOm2Ns-kIZp6iF6a4UufCE_-P_S5qusw_BfZrzDitZ6b5qmqkqGqEmi68YRHs6TAwhCX33d6JN8I9PhFMxJF6fuJ2xN99F7cdtRBbSUyZHsyRaUoMeUiEMuAGK0tGEMxv71yFb43esFGwlyJJKey4vm_U-ZIV-R-da7P4AOWUAOTR-J4_3yERW6bTYddOdHa-SuHdZs3zgquxk9OA4ng4M0t0kXTmv07dit26-Aj9gmd0B9b7rTd13tUPtDRhJVPji0qztFcrIyvWhOO8-eps0vW5n8wR2_hyQ1nDt6-bSAy6K2zq2XbkI2xpNKF-8woIHeP26F-GniHN7vihCB8kuXhhZPNnW9irRd9BKlGEVmVCjmYinxV0okTbw_DzcCCQAZdrrxl8gGMdV2jqSmrDgm2Nkuu_8zMb6ozUSq1_oQyGy3hqdVINz5CRRntcbjWx-NNKuOP5RjqWUpUxReAT28Dd5uhQBLXS74nXlHL5MJH78xvVsuEgbYFtY7XJIwOZUq5XmP_abV9fcZwZ3O_mepCxkEOjaY5koO2J_pfw_w-w-4Vh_Vy1sVc1EJCLkmGx9sVw1Jv8fca7VxrffwlGE1tI8j1IEy_Rp1tSBXzYDntf1ooGy-mQaBPPRvlNOQ6TD5TElRFlQ3sE922xUyHbFhw-a-bN747r9AutqUQiOxQ1CZSQNta1x-tsWXW5y4tolH1BedElKkU0Zh6MsebthNPUMz9_Wa-48tmHhaFPkg061jvSMpioy0fr7TGqlBSLt5CPJYSl0M5UNmruXa5fI-gwY8xTmTel7dTwG5q5hwRtIyo2--C5XiXUYKkHcGBx6vp1jROgkxhC0GOTbm2DZW7MpdC4SlB6xWbq1ZVWHiHfi6bD_s_sQkHUyW4ga-951PMO6P5_xvyrZAA6-uUwHSpSPApR2T9b4YZoglAsAxk94KB9PyQ_CykdsiTRysyhuTd4oiHaWXenmZvedTsJ_BynGT2TMsKhOeDr4MkYUOrWYCKbuyGa7mGqg7TeSou2WZYYaFIrpmUV7DKRnqfNAjBKZvPTjS8Q3-5p_bA-Cc9qpU0Dnv_PBH-4C051zjFDtyrmuz6LHeHFKoWPS5iarDCvgU0ZFXqnPkTnLIkd0YjALsDFO4TgnI1phOtHz4H6Cz48Y1kNLL_e0KJ_E3tci9-7N2NuMPf1gmCBgWGF_hYRNSnMrML9Xea4koM1BeNmwvEjwdU8U\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6857adc3023213-80624255','','','2025-06-22 07:21:15','2025-06-22 07:21:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43469',0,'cd-form-entry','',0),(43470,0,'2025-06-22 11:31:28','2025-06-22 11:31:28','{\"firstname\":\"Lisa\",\"lastname\":\"Bourke\",\"email\":\"lisaabourke@yahoo.co.uk\",\"contactnumber\":\"07756964323\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7qTLzRXin_f8PZGL06tRg3Z0xEa5AUJk819hSRtdFWB0e_fc6p-86hDJiE8qlX-usY8waHPH6exOJhfrSADS938kf5GzXjWWrLcYRWkyXmZ3zH4Ek9BhOBJ1-9QrxxH7moW20PReJs6GgLg2LOVx3QROm_iZ8ucBXNc7Fza9ymRyLCi8AnpwLThLbg_vRaWIVneHVbXZrcIgQ9JbXSU-npSH_1zg9oAtc5zBBA-h4YByIu0zilUFlDhp0W5TrABwm6SO2rjGPeh4yttJKgMmX4GRQL7ARMl_Lde0O0UOo1RSu_xPapm3RTYDxPIxxk9naSv6bzdjZ9LaJtxGLky3DqCwHIzRG5QSJ1YmC0PdsU0RB2B2kbS0kjDx1WapiwdZyuV-8At7n41Kz7eMwcHPAEYCGB1todud2Yh_HAkUpHw7gI-jKpXuzimTeXXpOQgcWePbCDXCOH8isPZlh-lczz9gkOjQnLRz6oqIXUz5qA1gFOHZPIuma9dzSBtQm3S2ezsgP7KiiacnM6iKlpM_78GJDoDNB6vGkfuvbuzvH2NaZMh33mAb18E05dICqlOhIL3pK1rmPymZVxPfCwp-mJNRV6UwaywIjQ5rc3G8f8tGxOSq2KB2uDqI9LkXrE1teoZ8oCt3zSMcwDc2O5gGG-xt-7mGehEpLsoj1fR9hu2VF3LBJ15j1LsbFr_5oaNcW1hNTQtqy7JqZsAw3IPrGxo0tit3xtcKBzC-29QxJ7mv0GJru1R-YPP2dY3g0Hx1rM5WLNwRryhrad4R3OGAooxzgG0nCuVEkBoesTMdmoWL4xToxQtmRV_r-dXQl7YBhV6YKnWRc1OxlvJ4pf6kIJLc_XEhQAkI8W4O369Uew6bWie3xBsH4m0oxGoJ-2IlcgelOiDXAl7oO6jQSf593wfdsA4aeAiN4W0wa3qdBZGHrCtDqNF25lxn832ov9ZHcxU2J1M7xaNi-UWIqR7Czf0W7mHEGY3JLsgrzoUJMqyyCAbrJhZ_m2sPPsplLnEfEGKmcm85UulZuO2LLsvNlI6j3BnpOZD1-krO4lIrz7lSs0GUmloWuoGSdw51f11b6zPteYMuTX10YwCxvW2tJcX3OO1HW4YQlPrgdG_3OWxME-smos0EOYD3P-GWZM9udJBHicefvoqq2PTe4_DxoSUiQ208mQO4M3ZrfxISlmaD7Q0A94G4jCWKoO4NEEJ4hycwWzo1UhyMR3dM2NOO0bNkS_C1Xbp25nftkNgJDHtoaGG1uEPPzp-sJFNT4xbni0AFAuWB1NtjB3rAvmerugvbliYbH9NCbOVOqptHYeWXoubMetDKePOEmvuo1ZvzmIde_0IJC5SSwm_sbA_XxDUV2qFspGm1rZPpHpi8QHE4GKdHEWVj6htBHybJxiyZTUD9uf-UaZYwjQ5IgO0tc35Idf9_cqPj-e0pjY7EDp1Hl1TplZAxgOTax-dFmgpXQdWP3hFxLUZqbciIBb95bdWLNUZEA56POXcYBPvvwguyvyuQfXUbDKTPX_kercykRst5iM5qquRS0R72bMZY1L2XAYmIF7l1boq9uygznNAon2Y9s6P-FKFG40rK86ZhgJY5fSvQR5XAJFgZ77xAn_PaAll1uC1yHjHJSBtOc8QTIbHmCJj8wG2RyEO778TubG_ME1P3sV0CK1nRKfIMhjy1QWdBCQe_PYlE2uOxnqpFJJfcW9gyDVLIdJ9BF0r20nCnu48N-DK9jRHhpH1HeJrbm5JheM904yHP_27l4-Jk_FiIvH6ip-P_o4EaWi5Y3Dmq7I98F9bhiiDOxhlVoU4gSTesdcDOR3EA8zTwIS6ojfEX83S2fEa0VFvefXKHh-1SNDYUCUy1kkH9ESyaq-A78IkedBBFCgdL8E4cckQOEd0ZC0WaKu8DzdCVSIA8N_iWJ3iZqpr9bQvuM0i1Gn9xgDi48dqPfkI3nHobiRAEnmq5ZRDuvyXH0A_13T1Eus9FMhXfhoEB3igVJxgSLG-5IElC7ESkrM-SYKqsosPbNBjdYTHCnMfxTyY7tOSyz4McjDGkXQ2HZh4pkSg0l1sWyGTAPjNFynxFPSZiazgxw5wQk7Q-KKvVPVQGmg8PlB3yTG_grDstbv1X94dS6tDUtimyW7U8CX99ewCMpo-Xtk3dopHLCm_TiYTpgwC3wfUwDT\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6857e976e62373-32626429','','','2025-06-22 11:31:28','2025-06-22 11:31:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43470',0,'cd-form-entry','',0),(43471,0,'2025-06-22 11:32:16','0000-00-00 00:00:00','{\"email\":\"lisaabourke@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"LU2 7JS\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA6mbWLQiDRIAiUQTUS4iWDZ6x9p69BZMdvzri2uZXoOesDK0fTphl3m70Eczq0DwlwqMP8o-EmXcJzhS5uy6wUNZl6nLrRKBuCl6_R1tXjU89xE_sI2aO_GxTfJbFMiFTegIf-ve7aBC98E4KSUFYP-FDipvhm-9wPGULIaudXAu_SXmDo6CnEj_pXyGCuSUP412pRCa5eMZp_XblBsF82DniS3Ab5G4aVtArfsYXEhVZ1lTl-TJf8nB6IE4YOjoIE6xypjFlNfyjtq5mUG7peZJt4ivFf6v4Fjapw8Ubhyfd7YbhkukvzER_-LNUZ5ZTWfRQK-vcdua_am5ZJQ9obeErqgABbqidbM11mOzskX2dhV5NlB9kA529rp-oiwb8JfXCPfzfwa0okxWQhsFx9NbQHAcJ-bJ9kez1vSXedOjdT36QsKrTW-zNCdwtsIpK-ZlXl9Sqbuheso_lMAihOVW-sAvHZ7yP9vIZh4waszjy-cdvrmbNaO1w7pWFMPOMPRCe9IFIDpAholUYn1AcsXoNcEerZBvtA6RZv_PQsxhcCuO2SlLp6SMfYtb9tIW70xzUTiAs5OWsCywMrS1D1XyLOTM7Av8M7yy3KAZcg_FzM19gO-uKKwyal6CPvECq1hFRchODc_HKLWnF2f4aCXG6vhbRBYf-RqCyOFD2CcGzA1Aw6dUYK-_H8bA8s5HinbOm49WtUR7SE0yGnfosR0n4Tz9IcSfzCY77Px84xvUwqHfZawfaDcC1X1crzSqv1uiR2tbCdQ1a-rVY_svnYFyymarCKskbB7ZnMoF7e3oyCjQr5Ry1K_2rZmRV8y9ilHqiStMDly-eVKMr8aY30R2W54Yn4IseJvaPFjQAAHknmfgHBcA8xGwkNY5whXiMs07BM_3rDxoxWSW10Y5BK2JO6Jx5RR1rVy-VkHsM25EhO2KnYBh0izGfDStHxakM-8jTqcu2TPLYmMhD9W1aO3HNzTcp3yL3o99DM7C0goIKsRQC8j0j-qsjGGEdYxl8q5b5-RoPP12Gkq0M-cqY7bwjlldTv0aH3y2nIwJhLXABSW8sdRMOjcgp1bJrcZtBlG1UYUWSnYUcRr3akkk7Hy0Sny0pkfFjQnz1T8WMW2QyHwH8wBUuz5V1e-K1v25B72xobkdeM5GDSlhCDCP_Q0Ydqdq5_78sfm2mpOLQ9Pk0o6-HQNIu3yeJAVnTHks6n6Ky4d_oji3Vj4Y6gxt7WhiRscYPx8_TChK35ynSvvyohFkDkIW2fEHB0sy7DYQeKaWAagkTVMIVpcvUgOUCbyEq4NTFuPzFOvHNt2BR1TaiyKLjPujcq8txCFO5Nv68Cpv0sF4rTnSwNyuEP0gcYwfhbSgX-GDFalhp3bjMxjoL5Nm2BcEWs8cMYqMW9TLAQ_1DYrkknd3DiYaW31rz9veWGy1AeYG8AvpFsQMSw0oknW-_zH7-Thlyy_bgeh7VuC91SA8M5MzEFwN6FGyeRt2Ztyrb8_uYVPfCDhsi7CV3cCDmVJ3nrLL_yGnKBE8g73-79LfYcUgBDK5zZtHNPN6IsyXhgK8H3nM0szxcobdd9rvCQQr4jAJ9jdLB7d9ezNHaDyejfhix-4uvbm43Zimrw8IZO-OefTC5XbUDzJjB_8j3yCM7jzAO6g3_8GFtwvucUkedSBF9iaH6Au2W6QZoVHJRCyz8Eds-1S9ui0o1lCa-JAg4ryT_BFhyxuwNc5UDqUDPbEJcXiJcdCmidBKNcBmNjGphVQl8CPQitnslD-kPc6psbKxIe7pdzpLpVjkISwgOdiib5kwYEX_Swa1-x5CYay_uzTV2oHktjWzOd-ibP-_9dexsu-rWLgoCbIq1XULrON88IAvOfsT1vgooPSVw-gt-A4_TClDTiX60qthT39YISlYME2z4UXEwxi0mGSwr1C8aF9Ndk48RZy0S0m46oF0qh2dvmXxnwiLLf5sdpvXetBjM-MfwW7W8dRyXjnRPvWw9-ZaU0v4ghRGGPX19oHvo-MTV-XhqiacIq91fIFNbMdq32JZ2bLi2J3-6rLbtchWoKmFRpKJqyffTZKS5AXap7m5jEFzfH9CFUlNgTSkE_sU75EUqvCfJpPOXBGo-EcKliCslvBStj8VdzZE1l17TdCMmPMO_1R5hdeqCA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6857e9c031fee9-69670632','','','2025-06-22 11:32:16','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43471',0,'cd-form-entry','',0),(43472,0,'2025-06-22 12:41:44','0000-00-00 00:00:00','{\"firstname\":\"Sheng\",\"lastname\":\"Mehr\",\"email\":\"shengrnd@yahoo.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/imovefreely-3/?utm_source=facebook&amp;utm_medium=organic&amp;utm_campaign=iMoveFreely\",\"recaptcha_token\":\"03AFcWeA6mNSqUS1LjOZcADKYGTWcp0ksP1Pxap6Tyk7Rksu7EFg572lNnuDFE4cWt2r147CuEtE3WGAcPhdvEJa6ASMbx2x1GAMBXPitt2kZIeFSTbmODBCA83GK3f8snkQ-n-ln2wmBf0Fft70oO9vX_Su0rJl2_YAOU9cUHyX-SWItJdPafl6B0GLlY3_LgKNeSwkCAHr6Rp3broCbd5CJgRSeql6sIZdUs4N2HAmd0zeNs6Pur8hk2jACFuv3LZXCn3GwO61k91d79yaZjuEJbRqG3Xk7y6IQt_abo0jw1VDo_o0d9N9Hdup3g-5X5I3U2_KocWaeHFL-gZ_jOEMFuBgp2rxKeMUjD0T95xKGH9IQ0VNQ-XQhtGXPwk4Q1bsxmIOhLvCKmLCP9dB8eEcPyyX7igTVLSs5AIIk3f0-z4jLw0YAw2VU0-0GBYHZHCFbag7vCbvHgG-uJnB01exIWsv2LKUHAhfWf6Zc3YO_-ZF7SzcGFVrmXHMb2QPcVDhNXAdDeo_hIyh6OKwUOzG6ZiFz7PJy_33cIxcGMJGEoDV5icIjg01qTYauoOKdbfHaFIvPv3MRXphdOqLqFH4ZLrhpr5qLyHBTKoEszYq4yPJZhuNsDSXOtrbwb3UKGrKSb8MlxEzM572_8i6Di32tciQbNu-epwA5RBz6JEk3mrhMnmyMFE_oMMn-a64S6C-ZxKL7aPZQQOT02Kj0mwBfZTsdJC_pDRuAyhIpFOF-6Jmh_TuB75857YNpqz_elLZPEnsizPhdR-PJ1LBWI4bol00XYfswGMfPv__vvfP7uuHjczjq-hDY03bSiMBQKt_25D6S0gqfoYS7hmSXPjHkWlTyhmuuMcLpGcmszBzdWY-NbPucSAN7ecvMPXdizIl86KFo2O9sPCnH5_PX2FYZAgkVpRhCH0hS5vUIcQmhxPcWwxHxcojhZMhKHg6uPkitH-wSkBUrH4MwOdwo3X-hd_ZrSA7nYT3WPwNw1X01NQV8inFSxZbNz8y--Da-6nWcByZRXa23u6LRTS16LsQdm23gJfMjrztouMVaduNvk_UwIaKTN3LKpxmnmu_3en248OKDjdmO4Z_Z0-ZjZb3gayM2b_QshmWr5sLIIw5JrC7XNyDzYLKWfo2kg61HvFCBNFBAEuvLq0P3076BfR3MFgeIXdpZGd4_k9tI-AAGZxTUjvILvzDoCox3TMUMyYb-XkW70zHR9SlPoeaXmcF5pkBQZ_qoZs3eHs2a6X0I_5RMIryv_Xwj5DMtGHAtDyDYEb4IMKpAVzl_5shZXXRD0xHnUUqi499xyTKheXj19yoyeaa4oIIse_aBpm8vbgLi0gpQdK2iy_AFoPKME0zMlFHlbDMBy1jVl1AP7xdqBiOAfnBd9RJumYjOvQLtHtRfs-I4frTkBDENC88deVMJUgHcdJZjd_sW5tmw_OUDOJww6vVL17BL4jToOEO9lSGpAS5v5jByuLu357sp9y_bWZll6ZYcRi6ZA3gXjMsAEmCdChL59JSwjmX0Jrxe_LVtSlYt0GxUOkWxK5M-5iD6FRiqFEW2oL1k5oOOisOhopnEsqUU06RZrC900sYdxWQEHhL-mHL_m7bQiLVbLNhhu5jYFW8Jn7r27u04IWwHiOJ_HqZWJanPshfbG3_KNBHvLuNWpPWK8LfvZ7kFOmrl1EGJmeHdcQlChhVpO3AVpMvAJBQ0wzFujG5wi9x327og3J2dmA1_cMYhLvHcazFMoj3HiuL9Iw46eGZvyBXb09dTsX3_8IJedPPQeqKupTtHLnEDv-9HKU0XyFtC94CTk1_Vh0w90xN-FyMMOyQZEKWD2KldFQsJa8PFvzxiQOqHs6qiHEY-74f55vF-JGFNeDgvF0XqrWU0dGlNJN34B-40wGWMNx5ge0U9wzaWIpqKlRo8Jnd__OsevBOAlJtMPoqljObtXAdvmcO1HenTLMFl8lXKbfQ3MTKLTbLqUZFkTE9RK9aIDl1knJsSXHPhHxd-SzBzRQk6R09-MK2cQleeIou9oJPcVS5CduyjSaWZtCOtdf4UEZ-ZgYNwt7pcWzattfca9f8pOKPxvPuuXKXcXPc9M7pENsiw6DAtsm4IKACri48xzv3KtGArFyvypzWk7aAw5EX0sVCQPjok2fcaxpQOpCi4G7JB3GdOTNR_l_L7i8HMAEXuuQJCswT1vAGstknS45FENo7xqcq5ICcabjjGJpwmCnn6xRff5F8-lZHt-SjakQE1LnSUCeYYoz2mjbMHh0ilnyfGpiaYkhxG1dGgerNE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6857fa0893c614-83272061','','','2025-06-22 12:41:44','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43472',0,'cd-form-entry','',0),(43473,0,'2025-06-22 13:36:27','0000-00-00 00:00:00','{\"firstname\":\"Leonie\",\"lastname\":\"West\",\"email\":\"contact@leoniewest.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjw097CBhDIARIsAJ3-nxe68GSpX4DWGTcQcnWy7sGeKQMpDGVRzWBnm4xxG3sjgG1Td1BJsd4aAic0EALw_wcB\",\"recaptcha_token\":\"03AFcWeA59CYDDQBu0qIT__6KpfSWI3kyaIXhAW8qC5IxbOXmAdjPMqJ_pnSwUCLqnm7pTtcDg7o4tqXXw8Ee3NWRdgUq8D37c8jc9X4uJZaVWE2cwAxrkasToDkzk3RO9mFhEJ2aJF66wb6hJEn55a38TPvrJtRrNkfCjyCht8gnFdAKAbRQItXp5ihS7nk_aRAdWXjv2Sh3w220l2rPeX1hA2217Da4ANiLxNijEHU1cFC_S9iIR1WulIcfTocFZnHwzG0PN-XkWSRBAhMA7W1d9Mexk6d65_pm08ANBbUyk_gXZCpCiCtTufovw4C-BXWvhJ0pCsVrH4vpK56IRA-7sb1IbRG-VVXrTigqyXhzHtRReMhK7667hahtC9_wSyYlPtYMwxKqkrp0HZr6bof3omGye8UzlweO0p_IzzxnW0gwuoqhnHJPfmS5hOSOfp4an1fsqgpW_Y6HP61x8JSA7AJYsqb0KBlNmNKH4py-iqW_TgSHqQlmBO0GeFLRH98Oy85ibJGU_rBSpmdNJPlv8NrWGJ5cY4iPDq4lTQLovk8SNw856ejKxNSQkeSDvdW5XHz8yfw7oeqQ6NimW9u0VCFy-WqUqRTD0LPLLP0QeIkcdCakXKAqJ8ciJPE21Uz9pnz3cZhVGpnw6YEaL67rBO-exWtI7qmmcUGprtmPsyZ9xW3slffKtYDYp0YB7_7mpvIr90JStv6F-frM_FbcEA3XY4LScWoVvEWecXdU6SPccCAKmivk_7Wz-aWlVW8Qs6yfEozSQpgX4KA0OTy68CLoBO3yU9zNHOzGq7ZKwCoPmEl7zkE3_ZMio2IdQeOGlWtRlylfthWxu7NHaEUil49F3MfU1akv5StRuZ70M5aC7DnbEEcbJcCY596sFf_L5a7xB73NiRqt-uM3sQsXMnvEbw1jXL7jQm7pBmvPg2Fhxd2MRn1I3zBatbybUNTjTfqooqmp10Y2L59gKWR7EgDyaiqw29w1DWPRxkVLjXgoz6lX5hrBK3CqpYJmCEhZKBhqAZxmj68pR-7nGNYktZ7IZGNeTAQxd7zObEnxY81AmENL0pvcBPudKmtaDsPWpw2_qRX1cbdBel-eFakhZbmE1-ajwguZkMGs27IAYe40nk2Q1vKfgpzlL0PUt2lEAYpDoC4ynBSV0ZZGo3RD3JK2UdEOCmuNukijaFKMExPhI-RhnPoJz1UBHMH4AhWfiSWclxzT1N_Dr2b5vcWxXt8r3QCZgWO4fwaJJp1MInmzhKkiSJ5D2pdsMOkdUH4xsuZnsbL89MLjNcPX1j915jwiwWiE4qSOmgV4VKkgFaLJamj6RAixxi3oG3cdCdu3CegmzpQPNyIQ_A6TEkFeaVGrmRSjIWbDqso_Ck8sPAfdz035JhL2v3TY44gHRCR9Zm_qwIz4dDatPvxM_4tQOx3GaK9PRo2f0kSKDHFEEDKRh5wtxazdzvRpuDDbG9Ne6Zfub2hdA00yGzRJoJOJgEN1qZngvRhpb30ow6IL3FTrPMUdJRncqOvbtIb_ozLKQVbtTsGzvtFDrPW64jFeryRhJXcgK8dBBKvRdINOpPfF3-rSheLw33BHtVGlyXrl-onEXcRtALGcn8-8dgnvTiytVGYpWgNM2RNLpg34HNnHibX6qSb1Hdz3CMcPSSm7LjlCAZirS_K-tmXP1gxnX4_X0P5BJsZH6MC3O0-70qKCee_THmOjdkDPxPxkpoxnDDDgRVT6ucKsCUfPer5XOUfNgMiem9wGktWr2Tf3CtReuRj5FHNECFoioCHqE4eHokoPVJkLBs7LVG9JDy01yPv3WWSfcn8sVjUmyIep1BTBRCaASBRmDcadQjHCJP20AG8RS2Gke5YYRwM-f2h32P_n7YJ---O6eu6QIqfJM2h3PPUeJGLOs2jeepHSaF_PoKK9DrtzCTUrTdMJgWepLVEQR7pLxyceOgtRY6hraeKBvINusK9XCU5SVe28OidjBDtlO4msBXifqz1uMwFlo8QwmHMf67SBytOH902nCoYk4qSX_oQDW_sOgAcnhprldo03bJHUOnUT8GDfRiOqJ3tedlvO1cIhrkbkwjjyRVj4k-c8TGeZ9p9pCBqqZqTh1ZmHzC4uxKmmBntfQSEg6GZBmc-zh2VIK8HHMgSxC7lNkw6c_9nGyyXgu61rmmiiXWcVCVDVbxd0qhoKaEZUH__itnD4gydQr48ijqdguprWFsxQLdBQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-685806d0326573-00060136','','','2025-06-22 13:36:27','2025-06-22 13:36:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43473',0,'cd-form-entry','',0),(43474,0,'2025-06-22 15:34:38','2025-06-22 15:34:38','{\"firstname\":\"Mita\",\"lastname\":\"Nesi\",\"email\":\"mitabez@gmail.com\",\"contactnumber\":\"07967180211\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6ueRAcvaScjC_9-vNUGs8Zu6&amp;gclid=Cj0KCQjw097CBhDIARIsAJ3-nxfE1l9r1XV0mGej1wIKl6iyXlcmeVbC9olmWJ_isWaY-HKCCWdClb4aAv20EALw_wcB\",\"recaptcha_token\":\"03AFcWeA5xz5lW-WM9SLbIpqVSH23UuxAjtbWFUwdJKYoNHspHBxkPMcwiRqRv2rBkyh-8CUb3_BOHgkz1dheWzf8UG_5FIK7m-KpEk6rkHg-24ugBHGn7bniXe7E8wsUAyguxfsR6ZIggN2OrhDMw_h8N0Tliysa3gp-pzQ8ONMAgwR5VTDnHhb90OahG92KcdUkiar-xd_nQAQ6TC-2YsK-NdET2Cuh0t1LkRmco3GdJo9dYsfYQWmddGA3ArLrimR0aNC-kxVtW9dVDNYElgVyxyeaqQC60YnkFE0EohzQwXSCDpUxj4b9O4-3dE1pfR0FQV2OUvzc19YxhmQlexGobydAO9GKbOhBWzljHhT0Rzuyx0KTgJ_HYycSC--dKV8yr4ZbpH7QMjNrFjzAIBDhjwEr7mYDbY3JDVXzQnuGo82GMVTlSGpwxPW5gAy77P5NagFSRXJIQSm-5kCNK-vk0bGwsBgpODStVylv8j8kvqulLRXOIc2iteKNxYdOGmXNY0xfizkETjOjwAfl_MUK6RQk1EDE_yLQMxumQPHb_7sqmvexJmWkmYdKaA4EKIOqiiDWWR-4TC62yR-4UvijhklRSELHRqYBCssKSzO-uqS44X2McywprKYTNPL9xEJh6Uaq3H0Y7lrIszP7wKSdZ6fDm2_0zLuXtSMSClK07he4m0wICiYsbYI6OGhw8ZYTS1AoQ93wLiF6WfiBBKHCBW-6wNWEiAJndvYYCRf5fkeV9Vd-Oal8KUbK459Fz7Nm137O9XSwqePRS4-JFu2o7CMnYc7JZvkTjdhecz5qw2Io20lfAs8XhXHReopbnfb5sdRiPljZWGRbbl2hq-8jp-WfWE1HonYxM3ehNyP31ai3pjTWdOEjWyEXFDAC3qK0Dm0Tty1SVLs3xWTC5tlouNRtURHtzVs5qixHIXBOtzDhk7BoRXNwbtyAgGkosENzB3lXNFrUbo21Tkr_fXHKvV6vkfmL6JNiSggnr3IINfRnpacyAwEgEdkoFISfutCfs8cuzrtbg8f9kh3E0mf5r-Vo-Z0zaeTD7bNOXBUiE3TxHk2A6MA6HpGcxjTqF-vZm0pezARBN0SAAwfphJykJb_c-B2uI5OV_LQhv44_a35WMHEuEn6cUDGpw3-dc08FPT-RHKBc7U5oEhcv8INeN333yDM2zN157XRrWjLe6WJ3GhVvIOSlGT46-FMy8O6hn_3NkhBi0ZcGCxr7YxW3lLk5-PqWmCL0QnuASXV4EAhd9Jj1yXGbeywYDB0VL6PCXXmTGNwaDz8FmPCphY-gLBGvY32cs0iqjG2TJwyw3nURktrU_L9rARtFWmPArCiZFFd6fNFpVUK5RK4Fl3bGhRRJ74YPTg5c1MgNqjT96QcQBoAknd6cvIYO2uf_sgv2jCYBBnJXJf1deL_nuWvYFTFMNbhicO2BuBZYLyCJ_pZg9qNRa59LO9K3F9edsMrPDQP_mk7T70vtI9WsUsNmbADXKgm6z9h2R5GH3h4CTauEk_VSk-VArmfSr0G8wglrVEdd1q_QPFEg4Ktmd2J5iIyJutYbemyIJK0ZqT-pIiWJkcxjGQyq2oLph5UqP0ruVbP-7Ftg2ZGOZbXUrhcHJR1KJ3hqwgb2xpVWo6PkGvkanf_JAUQC_6Wg1M0as5YIpPn7LASfapkQYmArl9RESpTCE7MLyHYJoeoayoQay3gpXLyI1kxt2kaImuhTwH1m-EJ0nREz4UxfgTrmAMB-RqRiQykutcB8IRsfJzksfD97YU86ACe5qRuE3wxcrzx4Di3z0mtb8jk8ops-VgyloYHbRKI3HNBB2ABWIGTYGSH0H_UGaFbveH2_j9JCmyE0OOlEIT97tlKWoGsf__7u3AAZXXblprgvPay5I7miYNlkJWtjwvCCpj2SpbQ1091yVXC6aI3t8brm-r1f7mgBzDA0S916zXGPqPuD91bFV3kz6PVg5FwZ0teC7SoA6j-PFXvG6TTyDsj782iRQjtzI3Ld5Dk5ve53cY2XI-9UbMR9wD3kAmo_WawI0bhaEDeNxvtFs5mUdPpImwv8lyaXkzT0TmAShULZDbmrSV8wJSHtc4nNFRMeH4ETttmNo_wqknklkSEEykrjRsqFVVqCF9dtIqyGDpwJDdVNHjJNdqvNRPUWdCteLs4jLCweDf-VaCk188g4MBxkNaNHJMhRdQ4tXoKqo3ih3ogql-19l1mNxw6rJfezlZBEFpT25INVJFXeayhT28HX4vrI6jXUW1-eDres08ycb_RDHlAG2lXy-Z89vQ7u3-TaxdnSOfREP1ImnixRWIIfic_Bl479ydgaRYRxXnyxlziIHfRqBEiDRYRdRplMel79CfcLRxE7j4oHADufw\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6858225d41c912-52325229','','','2025-06-22 15:34:38','2025-06-22 15:34:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43474',0,'cd-form-entry','',0),(43475,0,'2025-06-23 09:29:58','0000-00-00 00:00:00','{\"firstname\":\"Sagrika\",\"lastname\":\"Pathak\",\"email\":\"sagrikapathak571@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/how-to-choose-the-right-biomechanics-course-for-your-career-goals/\",\"recaptcha_token\":\"HFdm15ZRRdHg8nUXpMWEddWRgSAgwuAxAeMwUoJSktOzl-PT9lLl8JAGx1eTZQf1VdPx47H0IREh4bChl-NmkHTmlVYXooKFY6dlI6fUFqSkYnS2gnW2VdRXJdYFlbVlhRSVoRUWciHw9PSmVqbGxscTstYCZ6ZF0QIkB2JEQ6CXswBS0dBW8dBQ9IB1hocll8QU8saGhfSWMYbDMEWCROUwQEImkQImMZPx5IEh4KBx9oaUhqdhoCC15-enlARFF8BnhyPHJNG3AhaXw4SHlyV05BNx9VQB9gFVlSejkoDF9gd2tYOndMajlEXWJqbkl-D3F7eXV0dFFdZE1Re0INBw9XAmpkCFVNMmcrdHsnQkgOSEYTcnNlRQt2QGJWfGtxVkNFc09fcgFtSBx1QmgEX0gXa0M1fjpcNU4uF1BOaHMgbF4iC1Jtf2cIS35vXBlsXAEHeDohWVhBZWMrUUU2QDNjYxFgbVULMWZUB2NKbQhncV5eRxxieE9wb1hJFnNqaGx2JyhLb0okemB0UC5tXzdXZDRdX0J7V19MYFhtQEMQZ1lNfC1XS3tHI3B3d35VNywyBG4lTnEEYXoIe05RTDMMdhhxD2NWSAdpB2k8bUtldEV1Om1GeA1pUx9nMkplc3lwBGNsS3Yify9OYR9tBA9SWl1ZNBRsdW18InN2XH0AR0AnWkR0BzBYI258YEZEIkN_BEttXm5PcENtdy5QcVJxdUBfK25ZNUVyfXJEdWoBe3gBeGACYVd9Q2dgRhpnH31Ga08kT1Nie0wuMmFqfxtJXQJ6Pnx-FEQqARIpclp-dX0JYU5NBVpHcmooIVtQTkFvcFFSZzMPXUB5LClpbQZ0VCgFZE1gY218Rxl1RGN6f1l0WAhfH2lReFhJXUZSB2xWJW9-WUIZF0U6CVR_f3BaZkFwY116d2YNdj0_cgpqQV97Y3ZWUxVPZAJWTFNKH3grBhFuDUxsRilXb2sAc156Xl5bJxh4aWxJQ25jYFszYzwSakZIajNmdRV7InkeIhVmcmNPZWFhQVNbcR5Ac1sMI0RkL2FOCm0oK2FyUnlnXFk9cWFlHkRLU3taBnl_V31eZW58aGpYeHhIV3RtYTM1JmVxdHVodHFpbRRXSwhTVUd3XBp-f3d0QWtsKHF2U21YP1JXfmpyfU8wRnd0BSRUQwF_XkUaY3RCVRQLBH1abgZwcThBC3VPdmtBcFtydmBmAlM9e0MtGDolbGZ-XEZMNB1Uc2FxcBl0Qn0IdW1fa0VJZmwweihPZgV8QA1pMHpVGltcAlZjb3pTdF9PUF53VRhPB2BRX2RRR0FAU2gTdjk4TFcUdQ15JTkAUxZzKWBmT0oPVGdAdVgQYTgGTHdzd0pSWEBmc0ZVFW9jTVN7bG4DTGFnZ3lQQXt8fwFIdXgLYUcgd2RxfEhtN2lXQi9CaRl3a2htHUEvdxAsDUR0TXVPf1RRBHFiWmBtbVlNRX1UTVxQfU0vTUIHekZPYjFlRjEBQmUcaEdibkpTQkd6fFhVRSJydmtuI2w_dXJJDkdtGnRrG1AeeGUKUjpHRDRnQm5TWWBqQXd7WW4keXM_dn4ocEtgdBE2WiZZa2p1cn1yEUhFaHNAVU1TRmVnTnVPcltpFX5Lc38rR1UjSWR5TEcpU1RaU2l2eQN0VnRMeBpCdEV3W19sf3hTcnZsSFZXf0h8LyB1HF1cYkVFSX5ybFskSU9nH0kIXUByBXlzZXF3QXo8cU54XEVPMk5QfBtPQT9xSHl0BgFIBGJLeWhQeHJ1W3wAb25NclxFM2NRK0JJfy0nVmMqNj0KKERKdjlpZm1YSX9ceVZBehl9W0gReEdWJxwYaW9AZnN8L05lCyRmKz5XWW4CR342YERlFDdUckNuUWJ3SVsMdUA2a185ZnNUbHY1cyludiF6ck1pCwFmOVNQD2dARH4KdFZrf3p2RllqCG8Rb2ovJXB1QEcHR34WSlBNSA9HSQp2I0JTWH9AAUdRe1VeH3h3aWx8Ql5qJVpjSU5KA3x0CnRMchgTHnoOT11NC3RcZX9qblx9agAKfUI3dnhPbW5be1FiWwB4dhdFNkF4LXl8CHRRClVGe3tyTnlibn8RUmxxBGNwaW9nYEw5eXMyRGkGf35oCxtGYTZCXWZaXB5sfU9VW05nd1J0UQ8NdClCe09reW9McFMnKDVRYH47b2gLdn1BFHQJdxwBXmt1SGFUY1c4WHJeAzpFOkV6YzNvQRhFcVZ_cVpPNUhycxBTBk5rZn5JAgRUZVNkdmcffGYra2EmeGYJa0gJaGV9SD0VewpzelRDS15CdV5SUnN4SwZvRTh5FGtjSF91bkJnKXt9LW1tdGMyRD07bEYZfm1IallIfBoKY0FpbT8cS3NfG2UuSEY3WBp5KBtwPmEFBEVpMFJZQ35iDlpfAkZJR2tPe250BUtdVQZIJStVNWQ-R2RtMS5-AhNlVS5kVUZ9Sls9YXlsaHxNcGVfSjJYQ0RgTmVIK1tyF0J3G0ZlUBELF1Q8bzJRY3d_SUJSYVZzak1OXmA6DnE-fHBzelJFZCxNZTFiM3YKMAQuOXdpaEomdkxxVUUBBG0SYHZsD05fbkR8eipWOXJ4QWkWdGV5Sy0WcSIEdG99W2pfRn9XU2gcWR9YNmkHAyhl\",\"recaptcha_score\":null,\"recaptcha_action\":null,\"recaptcha_success\":false}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68591e969aefc7-72643590','','','2025-06-23 09:29:58','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43475',0,'cd-form-entry','',0),(43476,0,'2025-06-23 09:30:23','2025-06-23 09:30:23','{\"firstname\":\"Sagrika\",\"lastname\":\"Pathak\",\"email\":\"sagrikapathak571@gmail.com\",\"contactnumber\":\"9657330551\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/download-price-guide/\",\"recaptcha_token\":\"03AFcWeA7XceVfIh6m4Q_aclHGyEkJIj1w6uHRsygvajzkTyr_62-CHZGRCSnwvz3wxOVFlphsque1_9u308PRiYzEsfiyua4PYRKAg-SFnf5DqodXHvWSlTozUwgupi8oWEzuoV5G36_QA-Wavr4kC1Nn1cOSr2B6T87Wd8kV5a927Uz96AWCg3VA5Mb7Pv31EH7lGt-9VHwT-DCH4IUe24jAQjs6KlRyh0_gHLjwrePPcso9wh7ny4NkrgWg5MdlnUDRJzj5yIT0kOFi1YW4ePOvd0j66aqK-IMPt_OB_KSf5wvBuuOvQ1bHsYwtAQfyE9cuWVbJxmpajQb_dmi6bIS5J23FXGt92EG_lHCWnJncchNMkqWVio1OpYtctlTmiZYCycB479tnhOXI1uWSgaREJ54xpQsZjhluqJ9Jcf6P-h5IdkA0Kx3FM7a5wK5Y9ZX-jhwYvOL6dt2YxOSz5XjaJK1gHsIvcdzyOxaduAN0kaGM4-9cNXHncg2bwzmARTUax7xmUReYQ-uMH_osal4D5AbvKAiSvoaWg--wEn-r0GK2sPmBz1P_K3AcyBULWXN-h-jft4UQ7sAv9c6TfkkXmR3sbgUYVFH7lHTmDZYjpBUgquv_g03xcQKtL5AbAJYJcsutxwsmThHEd3iMwzHprTX9rOhBnATvdaleBL16A-2uoRh3KsV-RLGRzEo8ZJ2SUPgMPrBzZAWpSF7DWdWr3_-rDWK1NVzRW5ZFbDkEBLhFFtMIpwAaqT8e5KlM-fFfI0XhQtaIwbclrYZoFZpBLULeZcMG6X4HDPj-K1OF_mg3sy_E_DmomjksMX-8y93f5sU6qd4_m6SNZVfPXclhUv0C2NTQMVLMBthkDt2MCGSumpQcgn92Q757lP7HL4cp3PE_WKpO7OEGrXdGgxppI_uXhvuidfyb_QK-q4BokDQ-xM0teGR0vy67KbqCTRXyC-pqZhSjdzjg28jkm9T4inGgrCGUjUsrx3HCizg6Ck0eQkIYN_PlO3hZOndVpIJZ1VUadz8glXuKVxvAjWe823e_R7btaneiyCBzKZ9FbtTrW_eey7WW5GglAPI1vyegnWPUhMYc-BZy3R2kb4iKIvHYRWivVFLJiOyQHMYGsQPBvABM3CDCpxwNQGg4InXOnxIVzk6Fi3VXCtPbszxJWVvx3ZAaS7mQRb4fFUvPSKcyBEL27_rl5aOOEO3PDEmaivO2qcgvz2qMedWGkKlbN7i3I7cy-Vd7jCFCqdNDerSwoJyMMyUl9-hJXZEctRXP3r5N6M6PlVx9StL1I5OalM2C9p9BgOAp017RUv5tLWGUtV58TGJSJhoB2yhYdJf6cW_qfATxNokqXvaSQJwDnaFpYlQgVChXIrunE--f7W-s725RxUtNhFkAIOm7EaJzG3mSHY0_NKezouC9qrwOZVGxnGD5ibVN4aZPNbn0dgYbuchbpt7Yvl9atua87oD91ikwWXoRGxQRqVgHxIF79VhH_OwZR04G70jpqF1vidDTYAEUgj03adq7CgM4srfccxiKRAJO3_QoYRLPxGH2-N19WfXcyLomVyGE6aI4kLZX-ALdPTPLhuLEWocDx-qt56htHlPe2FVtfXsdSxUi2VhTTA0e0X_eRjLcSy3elrrecuoeTPC-_PeAxHFHclvgASJUWqzKXKnP8fWH7ao4eehzVdsjyq_w8oOXKN3PbBw4d38EMvEfPoi1cCc_nV43rlCEfrX2C9Ah0STXG9Oc1qovw1PgWPTrOXueqtbJ2zBwuJPqTrv6zI5rmwj5I417lAOE5qQPznIRIsgFGsGEUzHbCqnfz8KIN6Oupp4bZjpV7SBmwdxC7xh6Xto0BuKxChqx8-XrIq_6l6aVyADKf232JR7zGpQr39QgJWeyDOh2oWU40ASOgAmHEuD705UKZ5arncwBjCnynXaTROBFdcdobmrNPES4c48TlKuV-T4vayt_OTfXnSMjbdYevZuvoMD2LN3j13GxGmWoubWm5Y1Qw_S8sRtoBNBME7ISl7B6Fn6PuM8iERKCGQhqf_2QKg13Lm0hh8FDnEHSYKsVdnllMLOwLA6MfYHT-iIN-A3zJz_nTaemZeik6mWsDL_FwBoASml5quCr-sbOJRlqmG-QjcPWOGqXKGNgTLkSPqSVKQMAgLXbxqi5Sv0BfkHYPG9FtY8tltoIMm9QU0m5wRpaljvo8U3TMhQPhOC0Y1n38upZZoci-oDSx6-boSDbPzjA7jrKnt1glZWVSt4IIKRr_n3rHC5PGu193T5nUIk3TlaGRImKcUwiaJLhTfZIaCzoCoPNSU2QcqdO3yAaANJTZUa8tQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68591ea106c045-93623354','','','2025-06-23 09:30:23','2025-06-23 09:30:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43476',0,'cd-form-entry','',0),(43477,0,'2025-06-23 14:54:59','2025-06-23 14:54:59','{\"firstname\":\"Aoife\",\"lastname\":\"McCaffrey\",\"email\":\"aoifemccaffrey@hotmail.co.uk\",\"contactnumber\":\"07912652095\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjw9uPCBhATEiwABHN9K-jsPAughdtk4rfW2Wrzv6m9ucdvy7MNP3cN5q0HEjuWgFlh1hBLghoCtRYQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5c0u5Bc_OyXz9j-yyNZZXguOXmX-bzSCIzFP8-AixcQ3Gm2UEQPjkT-yRl_snGM2A9NjkujrPnpF3SM84dFzlUZHsMpB3h7CwP3tuq5lyN8MVONNUF4a57oHQyRoC_K2kOd5QNKcS9I8kzPIrXsFFWX8AN2G6UhZbFZAW0J0FS2ORqTKI6sFFMDXjH33XVKj6vR1_Hi9jIJSVbpHkmqi0MyIdEQW7q6eegLb9FIcm2viijUL0bfUA6oVv249DPQda7UjH9AXX7iuUz7mZnucz_7l8wIjq_Cek2oe9GMtSqI2S0pNTgbzxFNVokUgFBxbvm3Ckd3ImMIY7srVbnz8id3hL1PXH1QRVssEK9YktxuPXr1GQ3bysWvmQHuJA04JjLiVT-9a5AMvvWt6C-Kg3Y-a1ffrv4tHdJDq8YJRHuH87iPhzeIV7-aMGqpFXDi0s8lDSEh1WyIcu5kT0DHJ0BSrq77awqt80-EAaqQiiSqBbwlfj926F1NWm0KkoZDozyNPMQ2w_9RrTV5nkoRN4liBm7dXEmAr_5RfyDjNobx_E7SdTd1z4mCHtIoKdZIamTptXeoziAHwnxz2YoLxVRDgx2QF7MYKopnJ3JRVVFtqJ2y8xltTBe9JZW_RRSpVQfszx_Mr8VutqZByDs3bdq67Pr-m3o-9XtlmvwgBvpWUpwiyfa5b-v12s4KJ0EFndIO4hEmvQ4-b4reZzOKraaFXakk6wvVB7j4wv3eNIgOkXGjLv2TrIiq_Hi0nN_CC0eOZJnUOTrxBXImcKWaBaAzdaltW4Ito6xh62Px7LRWoVyrAoeR5-1EXTABOec0eTUDZmVDWjbHfw3FqI3bTmRlG_2TLyU2y3xrchsEH29LDXD-wSseI2zhzspPRkhKMh-zKMayyuVcYHdl0TKnuSv_gAG6Viq387b844EwYVWPQYvKEsB_H_XGKpx9guSb1nPjvcssxxAF__S35pIys27kcKHRsoyRmhOgQ7ktR-WfHUyinNih4H3qgHnU89UCxu54GE2TBLE0zpVf_eVj2X4lck1VP7hN6oz0JpRd7sTZ9WIgIsd4Bmp9pUS3g-C4iAD9s7CKpxz6GJDXEZr2d0XIGmZIWwOJ-Ry6LkNL4aMI1Xcv87xPomiiIM33dNkb1FcCGlclOPLKwwPWgU4edDmxc5T3dXUCRUXwkJyyZN54BU9WM6I2mrN0ZlaUsR-RuaKUjU3Pb0q-pGgJUevDIvrQD6jOT4mF63w6FJC25fftLiNtUcDfQXcuYvCQZv2CwDadmDuzeSIINZQ8ruX-T9ePiJxhGIkXKxuSHnfs5m1PJrjCELdJkxQ6z4KYfHSusSOUqB0rG5xKeY56yB9LOunOIxGv8IduWT2VhcMbEQ6CbQogyxoOR_7Qnbny0jcePxRMBYTswimUEaXhouffTYFWb6yVzT1NQxQFx39JCYGsLZrpItzzKXc0PDv99-qj4h937aeUE4Wzq2KVsjeg7qHyL75m8a6yD4h9Rv8yuZaXp6G_HqXdXbIcv79ok0yfexyyARlYzfTFYKHi2cu0Y7VVD9X1IAcWOWm9ShGK9gls9Ek5yTUyr540VdlCuV6VmihxZ2u6yegsgrR6J2H_keKqzP_vfmQXHheCM6FYEHfdr3Cs4TynDpvdeqErgGPGQ8lPhmbLQCYlzUZUAts3m8z4L0dxl-Du1I8apT-PRA0tSuTr9O_snwJ6sig2KUx1U2NGYeWzZt8LTdOPxbUGLjbOmmGc1tLxvvL82t1pPLj9Cdse2Y6mA1GZ-aksfrp1E2KOTkmv7yHofth-3ssCEpMjV5ViIMgmFlujPMmL3f-ahW-3KIsrR6GADeMFjB-tQ30qIxp1B7REflH23BiLQaLBwmB0tL3J9rE0oCtVlM9wf7aW4tbp9UV4JSeThkYL97jbj8wHJIExD1C45FXYBkOQOtHiOiIpvDj3UNqyHl9tD5KHOFMWizLTOmhE_sCHhtWzVUZ-_Mg5TUZUtr0OibVe8hf_q20spdANup8BldVXyEgaLEIyFZRgtzX4pMnAVMkB8xiYIAOfSFpDqWUxBgQ-o0qGntQLiF59wzktOMA6qEMTi5GQDyTfeVVc7SBqxqJOUNLwlnIatvK2lnaUecO8cEGyhMZuRiapFcyYuWkVz2iKrc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68596ab8615143-12306136','','','2025-06-23 14:54:59','2025-06-23 14:54:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43477',0,'cd-form-entry','',0),(43478,0,'2025-06-23 16:44:02','2025-06-23 16:44:02','{\"firstname\":\"Mark\",\"lastname\":\"Colwill\",\"email\":\"mark.a.colwill@gmail.com\",\"contactnumber\":\"07917710511\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5T95vwxdPGs0J_GUJjQ1tUXhRuB29dOQJSXsy8EB7xTV__urryCkKeR2z7c3eaYgvOoNXjwoeS7Llm_Fct9KHMCYva654lsvomqX-FU0LrKGuubqwooF1PL0Is5SlcF7WJhk-lqaUgB_y20-8jiLbUXzIlR8QgYrjPL57ZdbGPEbyAnjr68bHyVczGs4dv4vyDm-fitLEYW0bbOXGFl19XfQHONcC4QLoINFsKfZqqVI2Iv1k-Gd-JbtTljugLmVAmljWiYLzjs-QVmh_VoegXem7FA8FkcWLSQ5fcNFO5B4wxbS4Dg5xD7umi1nsEIgw1BWhSaR6I5jXRc1Z9BANR5l-aNTEUZIjqjRJJUPZmoA1STgeNbvMYpetfohKWbM_03POdjDrouW2E7Wiu2LEWUA98h1-n8StJeIVYEkw2WfP3276KwxWxhbSmG77qvhAYOm6Dwg223OiZSeeVFml2F3DreJ58qYksWsoDLh4oZTPveXwcCJ-XVk_kzZBs2ygPdiedrci1sib25lAGUDrV3564DfFnPN5ugnIwwO8PuWP0Ie3CXwpzluKXqfGBEtEaFPy_-bkexRhUJcVVszVcPTJ1t2ZF4XdZpgnvuMiq3B8leKMM7GDfC5Y1YhNR3AVogQBbGAGtOXMZm81G4YYII1JSCUQ50_j7Qz7BNZOeh_BgYcxZkFuP18_mCuy4QnnmGzgu6RahErlDqY6YDAYYAof5xUKA5JGcwL0lJgm2qm7hvHB_5nTJz_4-GL0rlBQWeE4oYrVPwzqBzQKaOBJkDHq347woCPeh9VuJYh3J6fryqPUkRXTFVsHpdQlD4lBdFFQuLv5YKSw60876CwRAHvWLJ_Se2tRVvvjwAT2sg9x2ZdsS8LJUsHsv6RyopdX5AsarfnjqEm8MswnQR3dilWDTO-tJuhZpbucRAplNqjmslj0OqtrSKgZa_Ca54PHCtFfdkgCcdUtZ0qloNQSqhNVDOvfxHZA7kL0_k8164DPcekdZd0MQXIadWEKXEQMvEEnvXbTzfnfhxy17BzEg_so0fQSQRnfKThZQA_pa51BpLW6IWO0R8IhW95LVz7LJUAYROCoyDQI9OErRPVyHZJD8Pb1ZAcRU0Fbq7ihX34vge9bOu6Q0E0U1LC_fG-OjSwtshbVlcwIAvwW6NVHp1wCDRXuGcn_if4RCDuvM_PV2O0medje-757faJjo0WhmOKQrIv6hYTqKaryOjGz8i2olspsnxxCz3zBK2fqcecP-4g01QvachUuZP4BzywcuDT4ZnYwdis2wZtT3FakRueHXhsw1310jVpuzWmP-0O-lG2t6aZUWsy9UdTW_QYwm9gyy3aa-zeueE4yRXrxTRT5cWIhsDspEzZqn4IEM_WgZnCegSJN_D6VJkJRC4fjZkON95oq1ekG520bKg9TF5fPLFSVr_z9ra8i9tZ7HB2fnsMyeikP-jBsmdh4ozmWaZUcVCsS7SP2JeqeArssplpXliygki71wnyr4ozDZs6i5ZQZ1xBHvlzoCjsreTY_R-39oW8PNx4Uvtsmv4o_crZocKfcWjYXPMLQDoVPgQ99ecqyA6A3BG7VB2lFzSp-UZh226isjolPFEZwSA-q-2-X0mhqS-UFcfe_9Rw1tSROAfFpMCCSDwP9cdY4AVoz9uC48yS9CgUlHHkcX6zs_5f5QI8fsY_24P0COq6hXbEP1uVWv5SzQfemKADmocllF5i9jdbEXCs34FQXG3j7lYdlJL9AHo5WsJhr6MLIus2mFonDcepUH428hSyVPlAf55XL3Fc-q2Y045CbgVB0Q7NXa8BIO7svPrBpifeeMhNFcX66WHAz0SRI5aQPcQHVdGn5rD7WyqDfHnH9cQg57KW-mTlCa3aAds5Rm5_5BRC-fIPY3v7souDum5XcIIYyj6yJrpzes8iO__7zyhNGr9AumVCaVWFueGW4ouprbpz_WtQNRW7EpjEYvd1lmW3T4GZxm-FUS2wMXjZ7SZr2mawV4vzvpDH-kl-d24xoWQGSwIxPkMh9h_6CIQcOKfz-oW1hjcorXZi9MW-zwyAEHjZpdWnIe69b6O31-WIxX6VkLW2g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6859843434a193-59373878','','','2025-06-23 16:44:02','2025-06-23 16:44:02','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43478',0,'cd-form-entry','',0),(43479,0,'2025-06-23 21:47:41','2025-06-23 21:47:41','{\"firstname\":\"Nina\",\"lastname\":\"Hoff\",\"email\":\"1yoganina@gmail.com\",\"contactnumber\":\"07789435925\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMIgOeasMCIjgMVCIpQBh0B6iHFEAAYBCAAEgINXfD_BwE\",\"recaptcha_token\":\"03AFcWeA69kV75slCD_3vjrvbkXZy-ZBvAT77AdjqxOMBOQdM_Z6uyX3fzIHWrEkUoaKKdky92JpFmjFyw8KKDkkJ-0iDwDtQnuLH5h7D3qfkzhbXsR40M1sP4nDhcojGnhOC89Kk4VhsI00vmGKTyW10T0CS_IEM5VdRDG7FRHjelpfxXZfejZE3lGIjYBaqERPQ5DE6-gFgVDtgcf_8BuHBHgYr_ScKIj3Clpk5_09M8OtZ0vKO_7ZzQYYYdFvCWe1KxLPykdLkXgRLKJJ8qmh7WfxsEgtzaPgTWKTKLq73NEXBI3m-gIBedS2x73OZFUK4a8aC8cKBFSh9SBlwVvmzMvii-2-b4JbxrYM6jkh04GgnBnp0iGcsR_rKF3b5M-8FyHTHO2BD1YT58VIazt7V0_W6Xldeia9vaiB29MQ2cO8eD0fdxn_LH1f7fbX9MPhSI5SrSbkoPZMKZMJoiB_rSDIF7CzgNC6fGkb1oGy-T9ogN8TSdi3WRyvrVoKK8_HWhX9jlF_yBLTLwItuay5I06LyPD9zQ0_V6YxkjRsLKpOrOcE2KVvusqKfsG5SvoFkPJ-JnGYCy_l1LEWk-oQT35XwPFPaQJQE7aiNn97CEKxxPjoEjvA13uzLA0i5dadK-xn9S9Q5VkX-0jhjQyJwJSboRSZ5jc4aDWsqsgnvTo1w0xJVQPdCj_mEVh-04hv9_7sYkiPoEg_QiB3tM2WWdFPSUQPmq7Mz2DkuodLwEoQTlqG2nJJjpXArNOow_pKqeh1WQusHZqWk5ys-9pdriYkOl2cJV0-ppkKgw3HcmrR-6_thiMNiv6YNUr7UiFyApWq0GDLt4-1_NQHWQLe9itpJF7AjAvEXZO0Mo9wi3MfPfQJL-t2z70faurQIAiUgxOd3Cfvvkq3b_r0Du5LAj5VV4udp1UnzD3ISUcm9AQrMyVZHAqiIv6DExwG1874kEyjiCVAqhwIVSyCT7XTPe4dILz_dSWTacb6DxvGX_hqBuxs18Tn1A-39fF2nPZe7m7SzGpG6gkMWExSs7XH385yYeHK3vLHp6MeMEiwA7gHSFYCLoa2dsOjoa8jsFRf0JEPmVKM3qroFdWxOaW1jmeOUh4IAZKzSiC-tDRE_pZ_ICoSAgbQNJelvksVH3rd_v-vaSVukSAumlRy8mOrtiw4hBkuQBrohLsU3J66ZMfCZW-qhi6Rkut3kDGimtHYrQyau53BvRzeAqaTgSR_hFKzozg86xS2fvHIlTlXQeUiQxQQpgkqpyYy_THb85osZ637vHI0CMO7B4lobn33iehDtHCSh4Yx2L8n3XjQGwp9yUfYIH4xVJ4k6SQSPGg_VE1nUp_RQEPHvmx0d8E6VVa33yfXVWX95AdmKVdtPa1ovAPtXoXVURbEgpQFiFJBN0nDqvdrsfpnXnNN_GxOTt8PVVDS9su8vGp8tdaF-GHW780lNqtBHw6fEN0xMKhT6xtHfJusCeLWkdLB8aGNCT9KwJharslbpB4V3GjTRFzJYQfhGbNJcAocxZyWm6eBp6aYi__h3bcCZj0uGkSMcvYmBqeGtIQEJIyub2ozRcYTZXQ8lyFgGoNe4c1ph0jpKfHSEL4sw9G5iLvNPpLnoWiqOMlQQTldTPi2m9EdxCvQ8CE5zgtAIvb-EOMt_cyK0NH1VulR0kdo94BgtgmxBwyEc-M-OCN02WPu_Uvzt8RHtofrdRttJRVZtfbX3Gk56Edu_YU4nAiiZlghCTJqBhJB0v6f0sPzDEEtjZjDMgu_hWSQrk7TDQ2O4fZXtp2m4KYs1F97MYsrZ0K-DD2c1NWNwfTDYV6XQ-tG2wC9LT7YjBBOyHG8FA60t3-jh1NpvVGBP9c2uWJM_dFJk9_CC5ZTooYD-5npfT3N_JU6aDUqqCh6A-wdqFilVY0TrWNl9bVzCzFxSyYFKj0g9U2DJVKBFVECZ_pCRK1BnWhjqN7xUozYFIk6kPnEYd4-YBpsezUaiglcxTnwqWAw5LPKfrTdRWGR7bS53Vis1sX8g-Loky1pqmawgucrhtLJvPAJ7sM_zqCw6oJ3Lix1s0_fHowQosVwihTs5TylFiRsZaNBhui_x4vXqme-nxMoXprGrBHWkuT-tE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6859cb50264423-36809655','','','2025-06-23 21:47:41','2025-06-23 21:47:41','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43479',0,'cd-form-entry','',0),(43480,0,'2025-06-23 21:49:41','2025-06-23 21:49:41','{\"email\":\"1yoganina@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"BN3 5DE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMIgOeasMCIjgMVCIpQBh0B6iHFEAAYBCAAEgINXfD_BwE\",\"recaptcha_token\":\"03AFcWeA5T1JPcY5X8y_1nJiJP-kJpFX7RRbDB1iOq0KM8x1lDvbu0ew9xxgqSCwhP-CcJwjnjtWLR08VH__Nz7q7h2Ry6_M4IPdztYzB30fb2vcCImMackziEj78HArasOLsW5gz8DIqEGiZGudar6zuQsHI61Ch1eoo90EK3OGyEhZ7lICUyXwER6cIUAEV2_7o2IfTqyumHiDXRQvjahisqPSU54x1yRssdf3n3MX9TUMZ7AvMD2admNhpcjdYR0l8svTgPtOIaRTcjvTZ0Gwljb3SxQu17ltYdzTA0fn_itRMbKFsXW9e9EuJQ93hLuML7Lu7RIeMBSCJ_2St9S6QA8NRcNkd8Wn1qXw3_Ys5pWM0G9DKl8j22Bi9PQGXFWu1NguDlDF-hiKWT2gPyDikNkdol0dQtErHrr2XYyDrLtEwciysciUFnlH8dF_Fp5pkADQ0wrcJCki38-vAsE5CKKaTASJEcH1d_xPJ3svFTwNBNheHvZRTcJWUFAF_v5q5QstlMDBO24-S4fWj5ibj9hRWynbGnsJNeluB5MRBbk4umbcOkJlK2sCokQI3Z1-3hILCxLmOEOXqYMl0-dzJz6Iq2nQKEpm4jafmDJBd52NbjlmlBLvcujsx5kozb1L5Pt6Ng9Fj_Ur4pRKyxkxjSnuy7mvMqcJcDOxlGqlIO3QJQMBebToaepOTll2NA7sUVsWWJohrevAckrlA9-dyoDxxQWKQGi2dKRyNzyMWPsSdpeTHLE3oUFhjeo77Jfc3m_xeuqtWW829ry1WaHE8EXAGIeeNyUfuSPX0wwUvBFBP4KGx2aLzEiG6jp5jS8RazRD1wYGGPiy2g8MGKuFgEaJRIE0aQwZH62PSCDgmb1_N-9SWNMpHnxCckm1jlftnCjqZFhqXB4N_KBb3EOIvZ-0rgEdjH82ywViobdU8ZeSIQjHb_5G1u9iBMS9rvqwRqScd6Xej4zs2nokX_J6n2H3e5lZbB031-ye6qiUVVrY2YZLYNF5574hkkxoZSQfIq-guKquGiEvg88KKbh814IDcT_FLNcm_JRucMJWpgCgd-pVZfkhBsbSjR25vdknjLgZK_Ni6A60qNGe8xRvR52b5EUNlgF1_4zqKPBNASb7Iij75ugjzlz4CQcMEa16yw-NffLUVSvTWgjGYvUmXpQM7ZYX-FUOLcCJXivqrFMxOJ5xsccAbWecaDQv2I3mFEhD1zb2VeAWtLmqC-T2fZGHeFRfFvJIO0-FTnU3oe6U1f3H-EzMxOYbNyLxhwBfv-26soKm4aepV5qvUArF3o0_C5dVa4qEN6WA_OOT05He0TMwfYxzCQuds6ipw3qGXd0zE2To5QyIHvQQdoYFvVYY2esWMJrvtNRPuCiSOoDIzSnfGAQ-9UTxKXdnWdq3rT-bctT2JiN-tNTaNQWti9etN_XJfFIhDburowlBjStYp1G2CQaMJtSZpXZr_VUToriJgN_9UUDCDfSbKUDQPStXCh0DgHWziuUGrz1xfXuxwJ1NaynqKG1DSBKv3UrPhu90_okeLZDg49BFxQRRtBF4LeYtSIspxEglsXUDDdsX_IfnNAdylWg1oDptdxqoQHF7OlSYgDMYvXknR7H8HnAkT-Um1KuD-usPHNrk8NT-XVz7-W-A87nTbJdP3xLamwpPipkNIa8NruX7LjxybMZLf8tcomtu_8TtvRuzkXBZHOA7O8VkDX22-KRmYfLd0WKYIGcHhfK1U2NrC737EmibyoRvpJ-sFDmSI4tmX_s5wecmhdD4EwtwGB0OkL3GYS5VKXtn1nfJmqAFiWulrz58Y5px2NoE82Im5G5qDymZTU6reTaoMrQ36XAIfFUSqygmNTC5l_7iUGwCxmoZTMvagbdF_XQyz9kuFZ_QXr_Xud2bx39VJyeZn79BEHb8n_CIfwoJj-hF4falNdn7o2K_diJDv5O5fFAoUFXaMgfQex5e8-DfNFALLxXgnswpKqnKc6QXN6eEpLyTTdfZXnYrWC1lXSTz6mbcr0ZIXEtG9Ztn_KaT2HPp9RdyRoMlMfx7GRg9ELKvX2wwNoolU-9AXnSHObxvNVb_CCwh0mtUtFdQ8_8XAX9Dnf9wOKedlkOu94fOvM\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"2\",\"qualification\":\"1\",\"employmentstatus\":\"3\",\"workindustry\":\"13\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6859cbb91b9b61-63438380','','','2025-06-23 21:49:41','2025-06-23 21:49:41','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43480',0,'cd-form-entry','',0),(43481,0,'2025-06-23 21:53:28','2025-06-23 21:53:28','{\"firstname\":\"Amy\",\"lastname\":\"Coulsoj\",\"email\":\"amy.coulson14@gmail.com\",\"contactnumber\":\"07895155095\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sLaSpoFJ79JzmmUI1ceGjiH&amp;gclid=EAIaIQobChMIqub5xcOIjgMV5IBQBh1UkTKgEAAYASAAEgIWf_D_BwE\",\"recaptcha_token\":\"03AFcWeA6O1aHmYS8cCCM_6a2drGIe6Ndux_KVYugw8r6HMLLyy7dPhB1Y-aBKEt1OENwK_8JuQdJW928HUFB_magBVepzIMm9cWxngoWfRFoI9PwDEVoVcLMO4TjycZa2ZWBBKHoha8VnMxxeCa33aD_2uSblP9vEYIA3rYUk4UONU_7KYDC0dpXvmXp_j4OjYKnfQpNoRZXBXUjy7hflSJbXizO5-PPTEpmEgAxbfzWp8v7dF3HjiI78fOhw9ZnrxVjZ28D2NRhq6ufQ0aLJ6VDmz4IGYuDn-fUt3-VkSFszeAwrvLr6spPqFYDaomEGUDTMCjK-x71xuO5QmmmR_ULrEeTDzipQVNadnxtcSiuj-bAGL0aowU0GfM707pHDi8lkSbov2lPCs7clJl-wpRzkXEkrcbOGad1bn49mQBMcLE-Fh8TNddYvEW-aAxLXsTmxtbazJJt2jzdKz1Y9ZUoBLWxG2u76XnxBrJPOqW63i4vLusTfuxyMwQGJB8-LHpXncXG5_ae4urMerTyRtL3qsxphz_f6WnVyTvaFWa-nqtsBPZFB2QQcv4brTgrigy9C84SqTTqRlLimy1MegKEm4SDIi7duRm2zc4BpGtPkAEmEcMVqTnxiI8g9ZAOwqKyJMqZ3-DsY1SMDlZIR-wXHzs-I0vMIxqKgywZI51_3TWkbR41TYSiowXNL3TtE8axduUqc6CiFzw0KQ3otFjyxRFIV1p-jEK2k-TvQA824PlgWnmkNAlAe8rImaBEmu6dsSVjiZWXdkZmBE4W_Ro7RaOYJDp6WZc6eiBtoSJTges3PST3gW0WwAvaj-z9VrcOGTcPXiUT-ef5AoXeWMCeKFgGTQsUNujzL9zl8fKymfHWxc4cvAnyEDuSe8gcUv9ZBG36Lp4sNKQcOIKNFCP59zPkj1NHCUXBOqQq3WXq236oAK9Bnogfvjlhs24ilbgeb0xNwrp3NDofQnUDwQpkiP5IcsCO8XWCEt5fqE5QDWL_-TVBYW0KwwusT1InOKOrc_DfSeCYj8IbdedTbklnRrVgHfHLLeJ1RFtThP1yLX5vckcx47JjMJWrI8kjLoLXtPyeqHTRpQOe3p0Ta7VLSVlQlz-RBy7smU3aj1awfktDEOzUlCZDTpig972LzR8TxLD0wXcwapEnE3OuDe9tjhJzebK49jHsHVMmQCWrh73UgFJ3GT9R2hrXwob_7taiROvyzGF76ALe2iAkphg8LiiSBAE21jSvvp112x5Mdcdb7PQDnuARNOeYRIplDFoGgD8Q9fEoP4oFg1u-VSOqgv-QgVBQvhDoE8JIJ6e_XgRKsNozHGv_GAf8i2lUOmY6GQJl6Jg6sESY2iTX0Hdir1_eWMTzXZ4vgJRUtWkQO1iXZbtR2L08aCEZtLF_rBGUQnFkd7PIYtg1WqHMKIgzyUxe1PS4GH98T2wzO9giyXM43nr3uDwqd3jlrjR8Ok6NvRmXlkFrxPuOaKC5UaXWNKmz-TwCeoWdtEDUqkliIn58YHrAF5G76GhL8-6yALGx1oFuIvhQRJlYArFofgWVccuwk0sGBBaz3fXwIVWzkbMzFaEgkqVEoqiYf4k6_AGqmYb9FuF8Szm3Me-cf8um9P4PjBWi5S46yLcA606wg1ZSbUPK6FXFjOAjT8QbGfiY1vLdQZCGd7pxNtP68FuunExs4AoWHNyL09A_q2h_F3sMp9V4L9FnO_f8BfI1x-dexFw8cFMD70JkTc29nV0hmJ8zA6zINY1rZY-rK4wiaMuiXVBmvpwMHQHVIOaOggPZSw0Tx3wLyN7aQmc6zAJYovb1R2YrIeaOj00VsNCKqEjfTu5FOmhWvwg3jsAMhvqvvgphG0DkIypuFAcJZwoKj-tDvwgTwLwW60Nr46S-37_y1U1sE0Gr3CKhrYrrU_xzT9SBQ4asuNv2qQC_NS0lolSKDDFVfdGzoMjgJLaCSKPqJLh-Q__aeLn_i1gp1RSCV9H79kaMN4hrZrYT3o3lMFBjMjEYCXWzGEU8SxBKcm8wKb8DxkR6QOzlCmQ2dUXqItky-sximE0RlMhfEawhacz6T5s6J5aJW0OEd9m2CLjF-fS3LFysWZtd_xdjtDwfX4jfvijGaKf3RUCjWUHbEMmKWCauuNxT5FfzbmsUOoTIhAsLHyxI\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6859ccc30edcc2-21716086','','','2025-06-23 21:53:28','2025-06-23 21:53:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43481',0,'cd-form-entry','',0),(43482,0,'2025-06-24 09:13:01','2025-06-24 09:13:01','{\"firstname\":\"Abdullah\",\"lastname\":\"Mohamed\",\"email\":\"Abdullah.mrgh1@gmail.com\",\"contactnumber\":\"01069186577\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5B9STeP2_MULwQuzEYK0dd2Z_jjSrrFGF3FfjqVFK6TgmfOCJ2d-BcVZTDXN4TJ89hd7f8M-KI9uSFGuPFYAz40RidUYk1OQmQOSu_FGSJC8DB1Ja0NIk11I5wjPAGKFnJ0faMUW_lFM7nod9GGAZs7lofKD7yJ5tE7Bsloegc3x4WNmpUzHkOYkx75JeclLpE47YuA23YATrxfDPPxwS1bajQc-x5TQu4B2UQxC6oHQIiVjQ04d8IDzWdxnjyOHafNqTZ0FjNCv90IgxJ-GTQLIk0fHF7gQC93cRjkTbvZBPSQ5ykDwv9Dx1b7Gf6AjRc5Vgy5g7pVgRdhC8Ts527VwWS6WGPnHqcEXa1NMl5cUokukjo8Ba6Hm0KPEDG3aHtXeBLyduFHP2LiuwdZYY0Ao9WAnmCThTHXFEI620ZV-s2SigkGN-R_Q4ldH2e8Lv9GSJBJ-6oNpQCJQioTz4H4u8MWrBYFAtqPExjiOVJ_RVAikLBqS7hqJDCRhprKuVSIEVHNKC73OEdqTNsFRPRYZuQydD42zwHkRB8uu-JOJDrqN4rPmU50ZzhipG4hAzOBWSTYfp0QCakytvWDcjmS620VYlHIK-uXRCCy-E-8ZGfnXqtBpW6ciLIHnMMMjh-I3uVNwbsQmRExkPBowbWT4qmJSbBx2ICVGcqb1O0BonDW9gL6fP-Vug8xVw85EBgsEJDSENKjtKIneksPu6m0ofY1xy-ff5mQuBO2-r91WFCC8d__ieNKjD7lmwBQEr30nEJaUI7G6-HI_z3_CIHAcWXI8VL96_A2QLpl8DBVReaBiCz4PTtNhsfHl8C42WCIc6mjPTkHBu6io5R2FqmuF5WFewLgdiutfC4JYVAL2RfiLNKzWZUMccwy80_y4EpApdo29KoSsiZfwbBUNh4oJZBUxnlLjZfJhaRphDi1D-RODeAbUZ3nr986QZ3FToKj6EogotODxOVWhLMQv3kUUjQWzlIbfxjuaz2y3rq4xbRqE3tjp1USJH4AwCKoiSDRQTtyj9eShDvAtymfM8-c23thGbtFSP707zkWJ1FYhqZWplASZNugN2suEAZiUZOQ4tXKz9Y5S1zdvM2rERHpTY0mlZXe32gs9Qzmw_jqXMlswlbdU1Bn1lM65QWjI_DmSUXBD4AzaEiEKF6WR5RthC8xfHAQAady7akc2wYbMeDIWLJNia1q9xZHAEkxTTUSIUemWir7uxvbpEh5qYJtwnZi1VROtNl5x4XiveMeAbgnSpQHq8VQQUDn6RTCGe0NttNoHIrzBVljTiFcWgrFl51TRe0rQ1XM6-kvL_zo7vMBlwdkHpkYQnep-F2RvoSSY-vymOjIlQQo6Z0YZZYnwTCb2Fdy0DSx7LYP-GhnZXLKIT5zZ6JKa1iSJx77WSShZG_eoXJjaa6B517typZ1jVZ3bjrf6aEpKQ1Zy_-5dMjR3ksA8s58XGHhoCbn91E2ThMEMs6Q9oMk2t0xx7RVOCywdPsGUmzlstl--pWQcajaefuMk4j2bLw4QL3KmYBIMkMiZL1udcVSxjuBtZXu1NY79I7a-rfsVk9gbEk3mA49_w4GNIYFFbzY36Yf2SFpg1udWyZUd-0kaspCBM20ZhgG0KccKz0kVvgxW_B8AfOeQXPb8I21vr19E8zjiDAHjDnn42kV2EH5aNMq0c9ngTVmCkf2XPN325PqnAVCiX6m5_BMV03MVBE4Yffx4rs23vLnJZIrcWA7BIHXP0bfoYL9Yl0cZZqzGoIwXlOo9zntuQ4zyDoUfL_4bmfsBfAE7HKm5vvNFwSVjMqPc-1LVR9XiBgWT4JscQeT1FN1OKnDDcbDzxSGElWa_eFoSfSwcNzl6ulNAudfYxH3ygtn3jCWRGpEDmvd3RrTyLFGZpkEGyDXEUu5XqTquNrioDgg1zPXa2k5V9CM6WQNBkAbe64Wsmh0OfaogyaRwlMzBATpj9jYkF6NL7SpzXJ07Un9rOLBKmdLCjE49MgvLYTborgl9nxkq7bVEj4Nbl9OHp3Yn9rD18ODZT_bR8Aat1hP3hRJugOe-3b5ncrBX6pAz-m7Q\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"5\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685a6bf73fd172-05511377','','','2025-06-24 09:13:01','2025-06-24 09:13:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43482',0,'cd-form-entry','',0),(43483,0,'2025-06-24 09:16:32','2025-06-24 09:16:32','{\"email\":\"Abdullah.mrgh1@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"12511\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5EWm6kk2eUH4Cv2HijYWumIGmuy1amt_r6VwXUhFl2a33symE8kruFISIQMGY_vZKwjHv2xLJZ10SEM5Fqvr1tK0EqxwyJjO8BeIDwu_N_iydaL4PLXbVeh0DVN-91m7xC08aVpfxMQ8TLBqAX6XJQTL60ehtH-Tsg0kG7TfnIZ-4P4ZDtAjplDtmfOXv6aU2-aWCFks1HfdVtj6pAYxfOPFEW2HLfhOkH6Q7fkZ6WpnGktJINiezpYfF-6A7bfuWjIZwemqZYBQobPemeuthqT0OS_QTTAfqZC20ARO3wb-aZsedbNwjGYEjUSS6IFiO5-77yVH9dYKUwNcJbjOojO8UZUi8s4Z_aOPc9VQqtLO7428qi3ExqzEsdTaDgIUkBQ1q4SOCP_GyuJcdy4jJ2C4YEKDs3paFJQ8JjXMhTl6bBQuxchwjLAvOr9LB99a7fddPj77mOv5ACOZm-jEZkXZk9x1eA4-DkHaH0k3p7uHQfJ_ynkXkkIR3tJLrPN4apA5V2zTOkk-5r2VyidJEZmxxqmvHCd7vAf5YYEfAqXBZ9HDCRIQBGr33Bj4RD_jJ0inpsaip0FXrr1FGLZjZeig6J6DHBcptULTQksSyksG_6fpIudgbr2n3AGqQwq9ERhOx60TLD7U_oZIO8Uou8-nysBSCh4QhWSK5ytDJFRvgHwoX7IJHYGdLJdmKFC8DdBBB628QqrJREDU_fWMm-bNSiFFfCYXy2SNJCk6emwRqE3Ogmge9FoymDVCBacwad2fWDeNtZu8dOG977dwO2CzTlydR5TPtjd9TNGav0iSaCa1EEhKi1rsn5Qu6EGi3_UXjBYZ77MAkxYNP0_XNhy_tKJjxlilfG963yxYXA-qxHb6nIVWXeC5SwRKy7w5EDJJ1SPV5Xc9nS_kzUvaK9M1ehp_a1pXHsdi5Nzr6egkQ_y0V6pykknrebN6z0c6rL7l1fyprzQPKeTzr_3VYD4wc8YzjUDESAPfYQtKocy5f6J3sLUdXo006l-cyzCIoLdiYCP4cYTeuwJpHLEIJ7NmZe0jzZWEBAkM_EDi154mp3NTloL-s0aGbHvN0rX27opbdTr3B9_A_zre0Eb23_9z8r1lXw8fPtc_aHxTbHy494Iv4oNDLGYJwBFJlFwdBWmWBfiG5wuRtuN1X4W1XzSW0f90APDyyJLIEX5fb89MNxggYpiRIyGYHEihRmE3hVENMGrxYkuYZF-VjiXxE7y-2oDdfK546PO7kHrpDqlH7uwqvI0Z8t8A5ceM-ye-PzSaK5T3m3bBEfdNDoBtN0knXcWNIq5oslD_5c9v3JrAs8YBmDQdh36tokOnW4Q7QIZRdBliJ4J1OguM8nNgu3aCtxlCGn2TPvSP9H05rvDLTzWGO4xGTIh3-XUz-gxVJMZ3P7qlQWohL7kb7FasPws93EaxZ4PMkiSY7VSOs5Q1IBTCes_2tBuLnY_7aNYp5Nfs140pB_Xg183FmrACVHSwfXVxIdP8jrtQiq_4Ld4XhkKMnyPmEcAjNz4zIaCf2CEG95-IZw9Q7JXxIf_i54GedD0M4gleAIVN7wTIP2LKQ3N95jUgeM9JRHmBLAhP57EIuDBEke5WcCy5kV2e7hJSVMVugTFGB--jdcL3vATjG878If8tbM2cn6MHdgfSyWCU8cRXzG8wdi6VRx_p-CopYcpS5Tsn-GtxHq_6hslU05eQ4YGbTrZmf6_qCasZHBNG2U1n4x39gFu5-0najdueOsYtcKvyTBatnFaaIRAyw73RTsoOLNimqPEeczuCe8py2KBR7KkCOOkc6LEx5wlVyn-R6eZzabmmDHjbJwrbB2HQhr6ZTCUAkkQeqjDtctoBSe2zjEr04c5hGRITOtPWPIeKz5YahwEJM96sQ4zSUIuxQBuojDZ642O5XZjPlf-FTTXZD4lhIeQzrXSMyq9pB6rvwiHuSpGsZih8lxFSZ4xuZqbL8gyOn28Ms4L92EHpdI0enRLfDtrLHrnWySBeW6TrpNo3vKnnyB301txvxsqmQnYcE8eCu5XVQe7XZfj4M_gPXTXGvRjROiZ7lGuIJlXg\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"5\",\"workindustry\":\"4\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685a6ca8583787-22006605','','','2025-06-24 09:16:32','2025-06-24 09:16:32','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43483',0,'cd-form-entry','',0),(43484,0,'2025-06-24 09:37:30','0000-00-00 00:00:00','{\"firstname\":\"Magda\",\"lastname\":\"Kalfas-Gaca\",\"email\":\"magda.kalfas@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/author/bioadmin/\",\"recaptcha_token\":\"03AFcWeA4KjocfvCPxHGINVYJvO6fk9MkdCH84Rn-mDZ1QkkvG9h0LRUilZPpAxTkbQSWMItNGCm4aMN1BPMMCDAowSZ_9AEdRVSTTWFzZgg4kn_NMLlLoI_gfDrnqR5RBINvON0XUl84iblHENQQOyzT0NPl7Zc42nYBDEkm6ZKos08rY8aN4ZlPjpDAlN1Apj0y8-6g7RzOYSWXXqYRis_uGh3Zp-TMjw06xt5Wz6yhrPZSVb5hYg6xkz5JAkordz993H6dTokT5zOVwz3IjD8x2S0S8MZSgQnpjbvC7kOu_nj3A75b7v-VKI1_SKTaLPSlII44PYDu8ryIrchVNpz1AqdyfAlG_g-peFWC8DfSLiv2yKGPHL7IvAsEnl4-KsHAvZs-04jtIEpQQ-W2Yz6zr30MSv1w9QErSuHnLO57kBs8q0rvDO0PQPfZA231AYCEAuXE35Wavp730RSNszvA6VZpgQ2mlQxt1pbtU3JISNYoITlQy_GInkHY-AzjtvwITAWT3BNSuK1kk8vI192_uNi1NuMs-zMgmbUG6fikXElkjg3a4uApw1yCeN93V4IGohuh_umcHBxGoQozNBg4BGExJ4Y8ZKyxMPGoc614CSI_VZEj2gxbEJ8Vi0N_0T8t0nQcekW4cvIJeK0Nf1rPhGbKtbwlhp5tncd7f61VOAxLmjvIUGhTgseLbw_jkIfOXvZJL1g1qIC9jHLUS_zvmh0kCynqwVQhp0YvK78Pu5kG2NZ7DELMrDvPAEASsCe07WRtpkQT3Pp3nqqnFmTBIgZqMFSalUmOMVLZIpy7bjlTGlzgMkZJkyvWs77dJ7DApjwq1FHdbIk8Vghu7TBpnvQLBDmsTcj8zX3vCYltoIUdrdNZgCnkw1qC_XwB5gc0gHzOhbeNmHaSOwu7rsTEAOSHLzis4Nh42qcZSX0GXuV0eNG6Dv1HCgkhsSRr_ejNG6NN2U2TrRfzdg2ltaneqlJQYbbGKFlqPyHxpa3-J1uK1IrHiCPpZTrymTFq5IbDDiZwAtFEEbhnh16_milQ7dQw_tC5lg2bZ_hemn8H8K8JEPYsnT4hvZijS17-4P4YA-7j6F-Qwir4OtUjmLOhMEm3mj6oDnct0ar0xGPV2yO1i6dYDnF-E-ivTLPs0pD7IBgDJckuQ55k2cLHRpyNf1STigHlZD7QsiGt8zfjg1AdzeQUgQhjvKbJpBfsmrLFHVsfECYVk0hUi39fSDbgrd6PyNcvZ8ynQFPIb0GrcfPSoQG7pR_zvDb3OkJwrxzLUlgvLR-tYVai7AkwFQGzvwzCaqYMrk-puvUXTYavxMCzfjcYgw0i8yi7zVVn2-vOLFHorQByb7hQo9HDqxSZP7Y5fHR8LEKPPbYSQy7n0iC2OmvvJD5hMkcnYaCoDk_ueLNZvZS-TtBohBIJGexPrel4QRWzPwmvTbpwDOE6WWPwtB4OcpzVCehpPUIK1S37O85jp5u1hhpOr4Gxfi_yMYPJaFHkJzUlKLJi9Zdbvf4aeh0m0YB670jPz9gDlsUOb8cmekVv2OK7DlRDI7w4hkv1b6QkdLg6cw6STOviOdrqU5wvt9TsRqrzLxZcgQ7x6jCmFdc745fSjlXhywWQUSODJc7c_A99OPoI_mX2rq7AylDRDq1koON2KzFAY2Mt8w_LtzscpddESY1vlzcA1erXlPDfGS9yrlhnZXtqCtOuNwxnROZgOwwoBJx5WnMX0gvGjiWzX1WAEPFT1Q2uuCjbl-Q4RVxapKL2G5wxtqGAB8LsGE8AZ3qh996fdzxlLvRzONTg1mHdkOadOSRhsMdQ1iNmm0ZeAJ04f1qoU4S5G393eX5-Ko4bvPRqJwGrd16BA7vS-kl0cdd6NRa_QPK6c4QUaS_DrN1tX1m12AXVi_cMxw-aki_kXi7mY6-4DuFqERxZdqENSB3MgEG9joEgxcIW6qJpXfiph6XDaKYaBRUsjUKL1NtSljERbIvTke70rtOvj46FNZi7ZuuGLFcowFSiL6JDLi9L73lAQEaWZR7WN6wGLbKVIGhgg6yOD1iPcf0if\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-685a71cbf2e7f7-21928461','','','2025-06-24 09:37:30','2025-06-24 09:37:30','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43484',0,'cd-form-entry','',0),(43485,0,'2025-06-24 09:55:00','2025-06-24 09:55:00','{\"firstname\":\"Magda\",\"lastname\":\"Kalfas-Gaca\",\"email\":\"magda.kalfas@gmail.com\",\"contactnumber\":\"07969985583\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/author/bioadmin/\",\"recaptcha_token\":\"03AFcWeA6P21hWmQTHRhneDChVmqtOtq9Kp8W4xeO8Te_bvivyGfxjH6kQhoxknzFCasybOlsFqLBjdCjTdoRM1wA9QqE8rbGqXy7cJnwCKm5G--w7oQ2Mx8BxfRg6SlqDbg6aGUjk85ctdzdcYeVNqisdBlkUWztWex1WiWnTKBpFrELxh3-jbsRdqnBFxqPUkv0VBs6cwu5mUZ8s6xcScprN8f-jfj4qNyPA1wJFfZqKNeDVZXJbFy5nxnMRVtp-1wOmN_8bPDbJP9gw7iASIbUnqHuVkV4qiTUL6rAsYZ5nN8jQyeRh8Tp2ufmNZHjsxnzChYr_P1J08MNAngKFe40pRGisRFAGDsozcQe-R_2jhqx7V9XBLwHQEsNP1V_TAPzm48RYWU9aStot4Sdjos2qYOBau78jbBBqcHocKzZ6nUh1imTZWfxzcuTAjqwaHgDy_yjuVgRDExaWUC3mib9uOtFOZaGXh5w40GU3TjZMBjlokQS2SxK2h-R_zBFg7WOfJcb4RXYpw-JID6QxQJ9b8vSNdIJwrOA87XqrA_v4bB4sTYAFsQNbwKqr0qJ-zVZbifqsl3rc3iW8jmvkgYJgt0-bWYioJN1-h7_uNTA9PKtFRywqVboso_sf8RWtZAUDDH7wqbuCyB9cdMowenUjQ3hlQR8XvtdTs9dIjfturjZ3Fj8ezcYomHyiQM9bEYiAARF7S2-xJYhBpBSou9bF0_0xDqTck5QSO0YHdkIG_ba-qBpZPukKbt34JA184SRTWNU1ahCdGZu8y7E_wkGSWZmK6japHa6X-G-PQJU_0OusYjSErxU3ENvBUwh3xnpCJMiHjsKeD4t_VWKQZWDStDVz7hFkrjRe_5A54W0shcPmGYXC-_dR2XyYPRnyCSyvj5LObFKO7K8LRTvD95dLmSM-SYODRDvZ8Osf72hOogQ83hldHZiG2Kx-V8VgjBUQyHWB64oVJPj7qaHJDml1YSrvQdEpf0rKC97jVNQbOLhW_Ue_F-PTPo1CB1LRDTHcKvDNOs3OHpIzdDOy-NW3HM1-r4OVduHC3Wpr9DOImeyXPgasgTUbtiaAq4HS4z5bbhkwAC5xyr2aVwK2fkBEV7jV5bvhHXx1hh1SdEow6RsF4VOcZENMbjE2xNuyE2pgAXSTfsi-NO5Ij-LY1s5E_DV021mrG-jnSN3NFXRRoo_LU1Fj6apuRFpk3HEWMtPhD3k-copGxD2UU4XQ2WORcJO6btdZ_bpqmWhdwukP_iW4DGHumJzzGYCAF9BRjiaRqBEX4yWfee5yT0bA3HL8Ut80Pi9dOeFfFH5thGQ0ZqkYyqrgO1rKzKgkXwP3Spnel1Xv-ZmVNoQZkjd-1WPnoAjIoyvXz-0R5gTZxE_bavaTlH4hzHvAPdf2qMd9S2qM54N0dLgWH8pA9JpeA-hmNaxw_w0Yx22tjMrFwvPjby-bp_034hYVzuuZVVX6fJEOyIGrur57V4ZVFHEQYhfFLNdEj6H39t0AOasHo19VGl-Eaa2p8Wg4Zie9FIAFBGRi0bELTpajhFckGm4c3DpL96YlkS2bHnXmJjDAehFI2-fRWXmeo5ccWNK0sVA7gfq8iBkja071kUYO20E6XpPt92Bvbf6SWMEeU1PN_Ytf-yXry8hL4Y2ZzpdYDltP5QO5qtvPcWyibapTZpOxBqO_IqvWot0xindbI8cA4vmvM41xaF1UorFNv3a10JvrySiq5IhGdMRK2Z6XG2Cdht48eKs-NbGw1-Zt2O0mLpUbdo1amLV7dEcvTHz92XZLCTsMut4hTukkKud1B46M06gmWNG_nHkjrrjckUslQ6xlK-zjXe2tOJk0yJpCCUjf9ewL5X0CFU_jeXyfEmJpLtlWrl3lndpnCfJIpaMiF_HJJdcWBzMSCvCch9C1H9prp7wpJxN9X7lmOdyp5pOnSj3n14RwMZF2X3FmKBGb7bW8J43rHZjoYhnupxvuVlzuHAJIJifgLC3sUT-hvvsJewqT2753S1J5rKZoagAsnXGzAIGBqVorp6HHCM-d2tGg47hhoTr0a3e99dI8SPXmWrvYr1iPKFNqQg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685a75ecca4d88-74935879','','','2025-06-24 09:55:00','2025-06-24 09:55:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43485',0,'cd-form-entry','',0),(43486,0,'2025-06-24 09:55:59','2025-06-24 09:55:59','{\"email\":\"magda.kalfas@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"bh11 8er\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/author/bioadmin/\",\"recaptcha_token\":\"03AFcWeA7rsCco-Nn0GDgILTV0kdoK4rpsF9cpeXAXqwB0ZF2WCSNtX0ruZYH5IWOJrdJqtHX9VAoyJzkZXhO7U5RJjC7FJAHPQY9aWMd_lkTSHOLzFjPWHhgsTwMWcCWbiK12zoTpMppImnHqc7yddluJzUgIgeJhX7FmwPgh63gsJJXjYzmcFS3jVGytDjgxyu9SXtEcb0N1ihlh_DrEo9qR1uB-948vvalTnoAyki0IZztDjz07oowxHz4_DdYWGIdOU_u1XbJujphi_66rxsqbpXMHAmyfNUy1G_t1fl1VuRC0DxmSIT-7WukNPrkpi4-d6NhIF3qpcnveQYDI1cntKbrTjH_ta-fbi5k90fW_Z7g7drVgh04uYzeWE0wcDsAQ0lCZ6Ha1GUl1XEb8L54QgUhIFvQZ6cWJll1XoQicAkAnhp-ohuMvnz3aBN_muFSM1fWQf6Qvur6v6qX3W9EwrVpoFwIeqQRl2xfDbS_eBodcFt86iSqyQVrZ4FD4fBGoBNVVbtsvPCA5J2w1dyLUeh1W05TQF2eUXKG8Fn3YKLyZHqbJgSYHp9QrG8cAC7ibUsJmT0gL7Qh-2enKt7vux9iZpSatgCkViNqu20jGivkOVxvHIlmQP_Zi8JnI88gHTMm4Bcq9FkFvr6W4f1Ua4t6m9dio9xizP7DtP8GcjUhpZEVcl2e1Yw1pBeJLxSrSMQbq77GfFkcDD2J0Thl3brbx8pA03F3W21Srn85YsTx_wi7AcWv84CsRmw7NaFW_3FrJfW3X4ELLVgno7n6-nQRMQ-_l1EHHXBt7sjVnCR8dtlEQVmlG48KiljorgSJh6G2OatgIH7SnVB2lJ3hO0PDnU1LB-BmQD60qKFZAjGRODF3P1gW_6XPRd3uCf6zWdZmTks83dALWazW3i4zBOPf-hPZenoF6PYbpBbwzlSHkEXIWKu6mtkU8RXH246uagNqeNjaB6-Fcv_3GZKvYh_hxPmCvSLSMfnilDeoKsD-lKd69BT0m9OXeTV6xYKf6_hrf28RB65F9v0qz5QchTsCzPn0j5dhAL7sqBe2GbXtKm3_QcMkQuIGE-mK2QVdkDcPCEqGBClXEd4IfgitrCe0Wkp0DTCLsXscraLi79yg2CPASqu378tNsPyaHD0euSJHqnsR5PmZBzLoXYR0141ksSWSmgnJgVI7qCJG8ux3cNM83DCd4AZvBi5-Ar2d-ZNOS1qS1ZVwnE6CJjOB0PgeGjLTzY40ztW23pBWsDGCOLAgeVdHyqraY5awH0j6m8CZryhceYSWxxpye6_O9A1bTwDQA-yo33ddUU-L_CqF0AMWLiszVcXyBv53KsBvYhLlvjO0OKKaU2TMphacrqUdMLpvhaHlXen3HADr8xW44phM9xo-tzObd79hs_ep_M6eM7d5RxutBfUNvLRCkYlh3DJjv3EgYIGUAge4V4uwV2XhWwAT-d8sugy__W5Ovnj7ZqypB9KAUmy46FFj2pNuNVLCrJ1xHoZ2p34XBRC9DIiETPtm6IM4NJWLDeOf96IlQH6AOJlOMc9PfR75fhLyHyKNULK3z0WsXtf-ndxvjU8pOuEEYcZGoF8yhY0-iIWVzACWnfNTzH8W0lCztluX1wbVm_MXy2I2pQBlwcoE08jcYZYQKHB6cl2YHy-ZtM4KgNb7laSRBGI0pmbtPrJ3sQh-5tflGmJfjAslTkafnjjo4SfWhVuotboipBqVf8a88EHebhbudram7kofFes6L8p-_4L3sOiLSJeIiBRWXubYs6mkcvfDZel924oiXRVeKvS2mKhAJsPcx7p5OyqEGjtwcnKJweCUzV46rKZpToQjNMPI0ivsgAMWKprHg9zImOgvYTEgwUQlwRVP8zrbispb1puw1e2--BccY1S_YdODJ21eyN-rtgEwDEkcyqlXvnJnv29pnMbMHGbSf9QUrqRVaasBDqN0ueBwVlWPajU1SzEuwJaIfK00KqW0SZMQQjBF0yxLizemG_02j0KboT-wYDKZwQwK876IFyHbuIjpeAQ-V8LM7lYhUlQjszsZ-kVcE_oaSfcUPmsCYpXQ4JTmmgQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"0\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"8\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685a760e613f46-55736575','','','2025-06-24 09:55:59','2025-06-24 09:55:59','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43486',0,'cd-form-entry','',0),(43487,0,'2025-06-24 13:54:42','2025-06-24 13:54:42','{\"firstname\":\"Kali\",\"lastname\":\"Chandrasegaram\",\"email\":\"kalidancemaker@gmail.com\",\"contactnumber\":\"07876210174\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tJqUcv3TF-yGv92ibEliEcF&amp;gclid=CjwKCAjwmenCBhA4EiwAtVjzmkFnw4q1oRr2umcJtAqcxBn59_UmOFmX8UD3OqqWO7lS1ABS6RAhBhoCh4EQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5J8ly6HJksHcAf24vN7-iG6iqf30SHRFg44uoC9wKjWG0j6bCrBLDUQNUfYxEYIeGD390LCrVmkxXgtNdsjTQi7cNDUlTavbvy2snZuHDg5P08joGtZ64Zdf05k7eqZoM2H6jtcbzFkU-CkkV5fn9EZzvTaQ8u0IUBk5dvKmW8gvzopEPzUPnTJxMLp2xs0HFxfhJU-hvFGeLKL1kmw6lwLVWJLBsXhzSafa8LDPL9ybBY_BsZhPD0lSXfBK1JQDEYv6XdXPJ5e7bNb3ODX0WAyMjGWNB49qA_AMt1c_u4URwC6vzahZhTEs0J7nSPL_dzVhZdYEcvf7ROEIBHKNYGH306He96WoJC2fapMHCOeNNt_USOBkEpMNd4lsbx_4wB1OYeWhoxlbZZCG_ksu0EBj9bsAcDjPn3544Rike0u2xcfUT6b1qsxcwDsIlACE9YxCU2dU6HNgyOVOU9cEXYjyQiF7w7mLw5AgPNRFCjq-DX4Z4usrAROPU9bMNn0CqSmU23WXaEFwj9yjyElPXzDsIjmZmte6NNhmET3mvetahuLX31QH2lQmVNyjtmfrrie78UG2pbSuhOTS3uh3YQS-BPqeQpSpP7sGMbBoIQzcRRz_igNRCjdoqQj24bCEH0WKvreq_L8bhYPGNq3dnF7SQ9H5fpCDdHFPmM4tRmpLlBVZNLT7smSt4nNJjL6RKystXnRB6LQLOnG_WizUKK5N12OMxGWDej-pjW1xhlL_KE4RLnJV3xGc5O_sdtCBRhsHmnVvxYpmfBUO3Ely6tWdDOa3-2pkwPxY7Kdp-sxNnbXVyJcNJEPpcaNLBKpyLtGgKnnmmLJy8xOP-2MJZQ4NzlGbFZEEBvWyykqVQ2etm2N7pOAyl-mSRu1q7BW1M1LUvAsE-02j5OQrlT3f5ptT2WLDViHKEEMfnNcRKRYbgFr-sYpdLWj5qoucVusqqIZ-J71t0DbPFmuspNOqjeSHji74cGg89ZRRFbgY3SeU8ghq1iBd-TJOyLx7KD8xiBUm47s0lmgA4fMeUmOTkdRXqkTidfkxcFvAqmN2_qBFLbTXb0dkhzf7-jHGlyyAfyA5GYCQwL6F50wbHIeqoSY4AYeUlcy_FImQpRjdcO1BH05zYEOSGVQIurdUYKMeI8AuSffFN6kn-FxiNdxSQS2SQoLbW7x59JUVJEi-O9tuHd82yLo7JbrOOsPN5KyiwIW_tG0uSp1wPZQ_M9W2h34kY1vN11EnuiC5o-7kr6plga_85Tdmva7LQw00xok00_UlWGad2hssXW1wrkc0JIT4Jzlr_7-vHme32n2-EdNrKuAQvK7pRYWe-PeTxutSfiI99AU4cx97WwGo4UEmjVnDN4uhWhqXLz5XsP8l-FQWTjiNT5keM9IKmig4U189i2gWf_kNBb_amRzBHSUkyGH_MEH_O0FabGpIgYdytsaZFZESJICbVWUjyB-60TYvcXXhqPQZBPbFIXqnIiMpjl4KK5H_xe7P0LrNWJovp5iKekT18SRn_wxq7UYRwEB59d06H40BpzZjN9qcg3--CO6wvWV61iVOjMYnetnVYHs60JFn0njW4oT2OvDXelmh6U7OXnjn5dReg7WgwSgTIIQWY-Atlf-uv8GiwQKJi5UHzn_WwqxcrpQKT8HHqWZoRkXblVh926y-Nm81FhvbofdA3-0JrlYaTwF7GKmX6k2f2joK8KNCpQTxAld3w0kExI154-pyZUOMhVhIqPIQ86tlTnG833Ep5UDHXBVUxpJ4La7VMsIVYCmXhfSEgxEGR5fTkVgr7p01pZwnF0JNUMpOTOBEwsUB7JtQGOXZ6HfVtMxyyUSUJZ9yiG70TYVBuzaQFTKOjXg2w6-jocKiHOla3UMfCr298d0ywENz_DICCwXSExwjSLI-CKs_S3ECTTaG2RqVz2E_Jx_M3yqoEtslxzL_tipfCbGjNiU0vyPeQYs4TnCM7cUPx0la6Kf40L7XgVS-FBr7r7ln88gXUkJKugCsTKtvxDUieDAZAO9ywM2U6QOfitr50UdyK5gWWfXlSGnfqWhIrZ1kkHmX-bjkDpp_zhzDXORO-HBkRrNlTE7l_iSdsOdZx4F3SukojmFAIPrOTsuhAB6OEdMd_Me_K60Mt6sp7vesJLB8h7t3oCoAb90qZTymJ3rFvxTO-IAqyiqK3Jz-ei-bdOg5LYAeLp6onwok8nkGqQ0imUDTmoaG1jylaTcG3TkNjb_BLGVngnN3PcPPrcrVZgHEB4II-Phcmeewp5omhgNq917Xgif7P6d1f5ckthQqoz7AJRgH_RuRhPjZVRBWo138zSVBOPdhs1vR5rC4LKgAqfdW6cPgdJgwyCoROwzCWqAVStWIChNIYfBEX_2RVmP25z7NxHag\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685aac3548d859-64901088','','','2025-06-24 13:54:42','2025-06-24 13:54:42','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43487',0,'cd-form-entry','',0),(43488,0,'2025-06-24 20:11:12','0000-00-00 00:00:00','{\"firstname\":\"Jessica\",\"lastname\":\"Hucknall\",\"email\":\"jesshucknall@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7LDgeeOuhPZlO7fDa1nuGUebKvZfkPXs5LI1PXoGVE_3m0OTcdn6NFrlb4Oz-oEFdRUnVGDCcfNUek8njjxGwCVrg1euI5UPdbc4Ri8Q4PpbFylUP2w5nb9mMJ6txiFpC_AJ0WqMBjrRaSvFcgconZZuMtIZOyUtbtlMh42m8hQXF0IfWrSjOwpQ2sXUAOU0pDSiFAm_RZIP5sI2ZtevElFACz6__nRF5I9jUBaq5megA6Kiqwyg6O5IBTnu4-T8t9A89KKwa_oURqecT5onfr8cvAk1xHB233K213iNR0XDO9_7fCRGrjQbZIQKqftVoacwaq_06M8c8MiyPcueHQ0oAcOzV9cN49uJyHkSdppZZpwQ1_JmOgBa20j0hMPIow0x8baOaElkKSOLI6zss06CWANzZigQpVqop4BODyKyaenPa4QUqFUkaQStjHN0FhljGa-lSH9ms7hca3MifXNAcGI35yOhM0eaWQ96eWel8DC4JxSdnLNqOiT2kevLqx9P8QduZoQePLOKFf9CmF7SmOBjVAskqjnDonKfRxdM-YKxo_awQAO-0jyDKPVw1p-eLjmSiXhcW48upizLYUtQs7S1Z_A7OvOwMQEz1ZevFePLpYJQJcbVjbiKRKqGloXTGnbf0GY-XEgYC0X-U0AYtm8GLEJMvP3nRuJLUwVLTLtLCfVSoXiZNckBwghBgJZV6C8wf-ABb3NGbT5rhRjLD8k0hK-2iGtawvlRJ8S9aPQtRj2QGaJVGSKZUUIDlvBeukOmPiPrp_8KnrLJ9kkRxuNg1V35xNcM1H4UXFj8dXy6KT3-AsjN8n4Cpjod7S8p8f6ytLrsounq7BtFxsLSEmFyjF7g9Oyfwmp6_V9yrhxUSrwO6Zx_Mo6wPq3LgsgjCB5d6lXNtAZzQX61lXSS4q1uX-J-4TLI87tGRj7MIeugqsxjIaA98EkpjC85XSU_qsJoUIn164ASR9EMOid7lDu1Qn9MlM1DdF0U8rf_HSNJsPjMtDQ6hEoSwwGfONsXGyxpD5eDnQvWBa_d0AvIaD4fGL0ddSVlCzA4LmJmjV3iYry2W2muKGH0zDyowRxjtmDqdrvRyOPCi0bt4-BKkbABZQ6lE9aFrOatL00adQM6-ELpnkhdUr61gLzdnluRo5kvw-rCCrUhSsa6jcZzJRuGkBL1Y008-rCWZhd-283-sMuFDf9e8YHwptUXrHAU7tYwoTzd6O-Qxio1nEQJMFeZ_ctjuYTwq4lpHUFBnfl8omPaMVbuWwpY-1b28F8jZWhTerEs7cFWNtqIohwf7cg5-s_QshqWnW_bOgZ80mfQ3Q9XQxYW1vDK-xekI7mJ2D9Wf8yMI9Xj1HO1mIgymNnuKjK4dY3j53XgK7u_Wt7C1m7lBqC7UxNEC9zuAKRhtZFCoWn5aLp15alZueObsuT1hQSgXf7e5UOca9gKIYCYaXraz07D68QBn7KQkl0t-cW6Q-x1lfk1lqOjortCRVd2MxVqsrPJzR7h1FPSjtcysDLTx2cgkXGw7GC-uQkTj-UuE07GFQ1B4vvan5-qBvwSkIGmGzNVIvqLKWJO9rv7tZzNxcDazDSWi3ezZ2cv6jiCMauX5Cbdf2j66OEYANnFaZQFnMwjrrieF_qljxCX4xmHcTIRl0gWeCf55826KEyarPbNXiY7jLXnS8GDkJzl014bMaqoJrbP_COylnSvunB8SupNo7qS-28aHRV2KIA4B2JojrmnaHirngkqc7kjfnR9IJI2dXBOPp2IScCuFdBeL_vnmm1WiwLDQyyPndbOoxPNyPjeWO87cRdjq6hsRY3PzUA3WCmkZ6jfC8-RSHPID9oWxOMOYW3QYOt66fYTtHbSRdaUN39AwAgA07cmLCQyh6U-mCd2FFSw8S42Oe1LZQzCnzWmWjKfyPzWSPFQFWYujzIeD39KFVT9IIfy28haz3ehMowgQmJLDzs5g8bq8_Y0O4kYD2Cmwf_L4STouQZveC7D9PkCP3C7pBbVa5NxOptxPNjuhgJgT6inM9sU5YIwhiPac-IgwlA1d1F3ZMXROKSfsG4HnNbB9cKQ\",\"recaptcha_score\":0.6,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-685b0660620581-49861826','','','2025-06-24 20:11:12','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43488',0,'cd-form-entry','',0),(43489,0,'2025-06-25 02:18:50','0000-00-00 00:00:00','{\"firstname\":\"Maria Regina\",\"lastname\":\"Rachmawati\",\"email\":\"rachmawatidr@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/how-does-understanding-intrinsic-biomechanics-improve-overall-health-wellbeing/\",\"recaptcha_token\":\"03AFcWeA4shslSROhXLPZ8IAMQjZFUKFeBc3YuIXjJPQB-oxhZkrd5_g_3dnKuQPlXFlYCWSK090Q4Qz4zp5DGrxkE9DeCP7Dsgr1GN4wWjkReqc3GDHk9HJRuCF38pW_uBk1-Je9E5TNrpWxs5DHBJw33WWK7II5Ujy2BCN5-fYOJNxTlitEKVfhEXkbMreYpsHPo0hQxk88NbsVfq9zTXyi1pSJPH_pVC5qEDNQ6pqwcQ0jZqA7zXqaw82TQaGxzGsZ90tCtJE1XDxpDY83OKeq9ZbT0fktHGFpuUW5RwgRkQtP916KU-TYcL1mB08sLqPfvTrmbqm0H9dvbKuIhkkXsha5RwTcsFqdTtdTlislBQsa8UPJzwiZKfARtQom-9FwQSclcE-t6FxUsWIjgFs1BTz663P0v6DnrOlxwUJcpmQZiMEvAN71mNbIu8hFOo6SBFk1IkRDre_jhEI-7Dye9FVu79xj0DsatD8WbNkpo8YoA61i8I2UYoNwCXinNeHbkxcesGh76hIBNN0kVkJQgvuVMg_lgEnNCfzvVgoeTvY-pJwy8TuIA9xPLpnZ4BS9_gXkHvAmTTKZbZ4fkn8W0w_rCd-VYudnJr4bT6ha5n-rri2IkIatAPX7A3douN_2L-5lCAw-kIctTozrHDmnne1nN4JYucv9t_pUBoEBOXOfBwpJIV4Ve6Wnm4SzzuSveWlqkNDbxXHx2No9A-rMfcBSYM1qmALLpLXqNJM2_0cuQODliZbNq55yMa2Dbl9FPNL2-Tg54eUJYa0wwEiL7kHa5l0qZpTuj4v8X6Z_m9_72OgfbT58nLxflqye-u_iEmDQVOeL2C5Ep8YGg2W-eLhpzvup7bZbhQGlKcJgNDy9WPAHxsK0Gddutk61ro4NZrLlqcvLSn20m47GLf4hX3-9PoHNCy-QAvammA_gZAA70ayYh32VPM2-TL9JKDacfEtcEbc5wYlQZyFX6MEKxBCNxJRnoGRkw3Eb_oyw1jNE82G7biSK5uIv9DBqswPrE6sbyQb-fGEGc6QnOLkwmnJKIYohUh60IDWMNW12WEz_vchlpqjTzW7lB58X3leE04Iy3bIm9aU2h8nOx1A0vWd-lolY5w4bLKHaNQOwLS2JFAgLAfKWejmLqBtYiXv7IgIlMV4FEuf19pPA8gxcJ5UgQ6bxsnS3slqfxxN2E3qI78p4nT0c-Mb26SYUTgzAu9xkF4ZhFkCcUPaxV2xMEvImtXRlcZl2omeSbMGbPN1X8S7BJzM601U4rFmSIMwBQWJlP0sOJRXLZ6oxAGyXHDH18AoZbaYM0byJMSS-3XR9poFjqLELwzRyRKTe67sCnJu6KuS_0m7ipGVzp3DXS8tDdj82Lz-6eYTO5ZqbsRjNxmGDpIQQN5qjKOf9160_c1GbmFXnPCCxSN_7qQ4PFcm4HVv0pf5Z-J1J0QXitda9ApSytWkz1nVF3rm0KL5XrX-6ELphI3uoY4BlR3VaDzt0x_XnggQWkhSWQQGe-RxoN-vHrJXac8bKILBTQwXWb5go5knHETNWMCXCPvuzZrqKRy9HNpO2Vuqa0SbNsZ7i6FbEU3wuHrp1r--w7CclCm-zl0xwWzCRtOZfdryqcIc2WllFr2vWDfqWc6KTvTKaEP0cC5E6GF6kuDpr6FpB4zLdoNLBV16Rz1LY7vknKxBR0yKkIqlEGAVV8TaUQZ--1oCo2cwwC3yXCt09REpDnQCQHtrtmcW37eylsimfL5zcwlMlGi9Ts5SXPtIKqgZp_MAE6vMWN9cox-uARyRxUeq7-qPkQnrhfPGdQmE2avr8KrVNakfzKrYUB68Uvjy-Wf2RsKB0hODlXWUrQBgzME9z_Awvp4DlrWzrtBw96x5EhBumyRNk5Eqgz5bB7KEqQEq0n7Vlnejwldpa2w298H32882fP2tHieDRbml4pmM3neqew9O2dkpDO96EvCom_PVnrojHrVhJ-IjltGN4PBtJR06edySyfdXc0w0-NMqcQvzBgVqY0ld0gFZ6StF8ntxdsDCIC8y1NS-hfDH_cUf9UZ17zA_W-AovejhNlEuxJPPrFEZXSxqWzwNx9uVBms8Zj6i4pKMp27G_RnZIXCXm3UL1gV6PT2CPuqaCZStT49dWM9g-qcxERYBRVZvxN6BeMFMvYAUy-ekZGx2M8vNLGxoo651QbffR9HV-_TvIqu-NxA9_C7tYLlIMlYihlpILlg8DDTowJUldc6trk8qr3yzZP3IfB4GcoiyR_HDgGPbWsPJdkoDF-DVSdaE0Xw_8DcFGdYCHFHsUt1aghDabcszLFMbF5GH-OX8-oia0RfKGFDrefY6SuD5q3i3uOt1Frg10\",\"recaptcha_score\":0.2,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-685b5c8ac83ec2-84509285','','','2025-06-25 02:18:50','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43489',0,'cd-form-entry','',0),(43490,0,'2025-06-25 02:19:27','0000-00-00 00:00:00','{\"firstname\":\"Maria Regina\",\"lastname\":\"Rachmawati\",\"email\":\"rachmawatidr@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/how-does-understanding-intrinsic-biomechanics-improve-overall-health-wellbeing/\",\"recaptcha_token\":\"03AFcWeA41bbGvXrnqZJ5rKsmsZdkTwENdb8XFL_WTjysVwyt9K506kXRu_TL7p4xibxPklnI4nUlHUFphkxFmpBwG2amqmyaWLpKlUuEH6QPyd0byzRqyzDmf2g1Xcr6JMfziGjhVyVyjHLveFhWqttP8sBiGECpNEV3VaMriHQ_NC6pf1SaQcJYddAPi75l94kwxLTiS0nzHgCxl-d0eWvSw0wE0TYRBiGurZshm4MgFhdGhe4ZaHRYyOab5Yi61Cc0FHrH1GK8jXi4bZ35fUoRPnw6nv8dedyyAk5KuSI4i80IHrcNpUTrI9iepwFiIID5ahi1qPEwp0mI8Qjd_N_J_IajTRAbrwnyz7bK8DdFYMJmuinHXgo_SokpgkjPWILTiNzqAmVl6d-8YqP3sz8vOQ8qkWAwfL4SM3TwpVpS7Z-RfVxuvCK7H8BZ_gFxMh7ZdcBCKSGMicNlTV6OoYHexb8gaTu02MeYfEg95O--2ZKNfOnHA4FQntmUpFru5tMm6QoM4mTlaBkYzx8o2guR2Yu--j9J2VBn4YgRdouoYNbPZ7BkrY1nKMshZ3Bd-RkF_WAH59JYt8NUUdBrZPzV2Gsi9ig65Rvj4HeHqSdiH9zs0JRS0Yd5jeKlvztsLwaq7H-cexg28DnKvrUAZdon2B_S1ZGUb2KWnbG1qBhbw1HlSCby2KOx3DsM595xhT-8m1mTxf3PjSlUjefNLQiiRIA_hSWQ4vPaCKhd9Zn3mKO8y1hihEg6ItWqudJCsveD-Q1x3LCJfeC44wwrlMbx1wN5RevG3d1CCTTq4zHAnHs-7CglaDW7-u1fYr1Mjlbl5ueOJJf8QG2ALb5B5OGFCcmfCGWfu7e4KWddoy0NObV9spKRbfIhiQzSRo634egTMrjqw6PSJjM0J2hPFpKpHlNt2AGsE6lo7A-FCnKGWDnqMd6tbTn910P8dkfZuLY61dVVFGic6Cv8BtPJ9HKlE2c7GfvSG4ahWwp4zY0SV0WCm_jBcKSFEwIeQAxXoihX8YqoHlm0Hw1sAC9qgpUHQzigE2_3g4k_JMcCck7s2gQbGzCtWi9yfGgtEVcqMJ3Ly8YLl2J9y-v9iKaPemdTCtL0fnYjIjLGV3e56m-67SKiPQJVovQi-DVObeQXy4derFUg7QWOz-Rmwo2t_-uepGyr9Ex-KqvNDlE2GX07dBYrvuHUhX2KGiHs8cIsruozegB9Y3zh8BwOH1gC0n6fHcociHqtXPwaT4inW0C_e0Z75HvM3hsV9o4p9B-EQe9_2x0ArT4CokksbjlgTBJdUshD_RFI5DSJSbXIxJYhYiFs28wBz94Stn2ixADgCrIL4furI0L-Z-dg2PevpZkuATZ6Yu0Ul_21VTFMUqrMYfu5Jjek3sL_VAvAhxxu0R8tddkZGLC-0yUCjHWVgCJzXUMnyfBGq_xaLqz0i02rVU75HDTmUGaGh6KFsyx4H50PcD-28i4ZZ0RpFrhVq7bniSsC5tPdT8ozCizOM77ubdv6dooBYkG31DA8EwbovlYZidBjByspNBgnKUcLLVLIT34j5le8SQYVdaulSze34NczuLmGo-Y21f_Nbnm_BGf8tUobERFRuzsgmkqb231wo6GquKMbdvRLSCLiGkBKu4TBR_kbkfavRF1qrJrpmMXTeNdV3kikjLdc3vpEKvPkoQRK38pFTASZHl-TBPE6-zOaTGsEsvTo2dMA7py9J4kOEwIv4_eiDfquzJ8aYwiiRoRTCAImvCwrQtUhvEs6dTaCIT4Q-d4El_6WVr3OD1-NWsZuqsEm8250G_givFd4Luv37NYZxad-TBz-RgSzBX5w3SxKHHVTZwuGvybyaaKz1PnIJ5cq5pQ7mluUaa9JsNrWZsYKTmae4oUEne3fJYQI0mH5Y752QiPjconAknsxPP4FHYRkxH78d_QjqdFV9ME8BaqtXf4Mp9sks8GKUZKqlqvW4wBEkD4a5jxgikycIYszEr2GQHI2nvNq4R_dhpwzaDO01jjk7iUGZf31Z3ACuiv3HbBltPXw0uAZZ8k6a2rG3H7bpvH9__bJWT_AXNxH4CIzHHL2vcaHAI-kDWygc__IGT7eAh_aJqMF_o_lB9axETKu6NIMKbtIFgPxLNKBv1MSMKjBBLUOboQKMpNRsb9ByziecO4Mq21jvuW9PJGg4SMUIGv2MQa9xs9cCC6-gSgEmk1aFgb2qt4U1qFTKoPgXjAWMC72dJ4dJBCL3pl3HxZwBDxWwHwhDBUSMzk9Jzaypt6JHSQrJQsEq54RVRtIbTF--9DAIrcQJVYbWQQh7MRlhz1QUp6Qn0v1cp1QsYxZrgatWwmvBAsb5I8Vj2TYL3Bc\",\"recaptcha_score\":0.4,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-685b5cafb75a02-47028903','','','2025-06-25 02:19:27','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43490',0,'cd-form-entry','',0),(43491,0,'2025-06-25 06:13:17','2025-06-25 06:13:17','{\"firstname\":\"Alejandra\",\"lastname\":\"Perez Fernandez\",\"email\":\"alejandra.perezfer@gmail.com\",\"contactnumber\":\"07846102872\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uq9H2Gv9uIiiwO6Ngvi7X8G&amp;gclid=CjwKCAjwmenCBhA4EiwAtVjzmvjIriKdjEXNETCo1wGW1mLFhJsAFpbkPMq-YfANJ1LgWYsqwoh-8xoCO9AQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5C7wdiWnyMEs8HTmX7YzD5s2gsj3onyb3sAKuM2SVrzXYpZp-qjjweaw01c6j9X1F7TpRtQv8c1ORsagSme5M3-erVGJp55sW149NyVa4aB8jGcT91THfafJRAlH1UqRDCnGfLIQ-UrvPnvkpt0bCrwpQr9QcUyaCbNCjkQv-naWMcFZFfpsMOvuiUf6CSLLP1G2tX4rU80d_UF2aPl8CACd3OuQXkij-OLMPrC0usY6sGi7XuD6DVj1X-fmU5HLnjdozhL7p5RelVetUXU1ycKUiqK4eCysLSIK4i4tcUelrOjzgbnZX0PS9Pigk-iYyWS-SmACMRtvOWF5wnwRD5P5ihIsUtuy6Ijr8pfsH09C-4_YX8tXGVC10kZPDLDfthqJaOeqEBXRR_aOK-PGq1We8V0FpKGqTfZ4E4qw9a1_murV9tC1ZHuTVPCwtsLZD3DTKpQqc-yP-lcXy03wiPjX4u-MyJSOpNJAMp-e_jlqFz5_9GLzK74bsTxjKxfr8v-t1A0oByWiHXEZrUdNIT-5apmBn8NQfcMwd92fM8KI0vIncIJPLV99vzxmNUQTeRUHBRvWAADh6KbsyKqxjh-b-6qnFzv5l_xaCFX4yjj3YUmtGfQZypC3pFrF_MTVkxpk0FkM7iwfvenUQC8KxbcfXfR_frNVJuMYbvhIkDcN9yqrLI4UpCGjPyK48XKszoBadj6DliONFU3zbJzCpq1XQl_Fk3ugtMqLQ6at25_-apHh5dt-jFGNg_C8CVO0ojEXmKOKZd0F_FxMBaQiiXRNGvad7rXqD9oKZq8KJDq1gG0iDerhkq0NpWbC3_MZQyu-qWSB3R7pgJ_XOkTBnrPVkpfvhumykM7IOiNNQ5eohNvxaDVW7XXm-yda7UKkEAaFsjCCHtn1rUDMVobtLl9qhnhbVRgbRAvX53wjUHesHBrt-idGjU4-LITYa6ZPZZW7NH4VBGaiKsqC0TJT1SCqaUhJpy6dKGsXFeIhMOKaO6fIHJU0mhbu0_9ifDYP4uv8zFRRnBv6QYWv3ngQEGFFEEDeyD0U_5eGBrBMrop9fOwY7PgPSgzu57mq_ORXqywurGeKeKjvad8CgWgPrdueoSSg7JvDrCuXNxgqynKlCvxizCHJ7H2-S-3hkJAjd81WB4nkjnZVkaTWoqDC0CRqhWuopkyTxVPYALXJ4dpR8L4E1I8F8GqcVHmpdu2yc1t3c4EKu6QAKLs1fvWvuHWbS9Wkhz37fAzPLvgzLPXdAANfq2iaocU4LJ9byKRpIYksmH6ud8mi48hOVj2K_jNPUpwYsj-u3aEmuxwxUnXg7SJWi3TyGeQSYowka2emrODaAclvA6Kz4eVdvWWeL8qL8mpty4ZmDXqPZYKItLYTLTHbskxNFVl7UwXqy0u8ldsXCy4CbnrZtRph_c1tCGdI77NOr_wVHcL-83Owx4ej3izM8mwNEJdRXHF40TF4b_kUT5Ln4PBY0eST6rXyVH588yYfz8yqCOh5YgLUZUIDN-ULFR8y98xWxQTBvabYbFnORsloJ4huWItu-2r8Gt-j1eSsgbFqPEVylrxyYesvZPMXllzsu1Qpv-Wk9BRzz7fun0h-HufMw__P5K_qCT_CAsU37QeYF58ayI3XU3ZORdojE4iYAsr3rhC9zL7Dgpn0uoZ6kU8B6QpCEUMUwg7pRYZF80sjj77Z077y6A4jtNC8X6P6uTeGAUc7Y7KX7zXcA_gTPpYUonys7FRV0ozkdfHM77X7cY4hm9d9VW-Z2TEdkRp6gf1cNYoKqjFCfICtldeave4F83btOTm3GVV44Ceq3T2YoontSJ-TRR6MDxxYlZv9LDEXaABb6voYGivAdyucH2sRQMh7CT8KO11woW2ERWJhXWT5sVlPL2QzsFX8m0uLsrVBcSTdRuiQnM9UbEQ4gjPlFctG1MREuUXfysslV-eJ9so2VYBQHZT_lkhzEDVHTB2EPe-Lwta_d_bfmHSoYVL0WmTdZzHunvqwz1MvFytxg-Vr5fMEeoqKcDDevR6tgHZcdRKT4N84eGuYsil0_1fPI7EdU6FpBO_vOAa4WA1DohMxJmzN3MWOx4Abg5y06dKSKGoKQBuY6Cl5LpEj2YZbr_XuADwtCUoNAKhCyul-C3MbhVamP-qSQdYwJPuhr24NZ1_VojsgA8EEbs\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685b936961d365-58961105','','','2025-06-25 06:13:17','2025-06-25 06:13:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43491',0,'cd-form-entry','',0),(43492,0,'2025-06-25 09:24:42','0000-00-00 00:00:00','{\"firstname\":\"Zoe\",\"lastname\":\"Salim\",\"email\":\"zoetesalim@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/\",\"recaptcha_token\":\"03AFcWeA6zdVtTNHQB-XGVowoftL7875Ebb4JPzJw4OXlmgZUiHgJ-Lyg5Fy-MRT2tuWiIWdyC6UnhgP0PMcS3aAO3e5xM6BIE0KsZDpQOpMbZNDCOaiW0FdytNuJdUONcme3gFMcgxEsNQMFMkH_5vb6KWSjeJFbAkWLHj7RbyJh0bCJrQHmbwiepfSIoD-reeAP20kobYMaMos2qRYckPHDGcoOpxd0zO2B6A2nfG6N7AurdQW-4DWtnQEt9_0zLBv3Brdhfv4_AQ9fb4pxW_pEx-FpK1eJuWi5Y5kWcDHNYNFzIpuMgSPxH9ehN2QUNUyqFYEi4RKjdxPjlrN9YTbxGCi_gGN9cYV1jPGtTPNx2yP4fBfRVzu5-t11ZShFe0ttYVRSnuK0rYiVmWi_Ym2GKx-q3iRyRFrrRzRHAjHLT_LUF6hGlsiXe_yfOeDZv2aUHiM9paitC3T2rspLQUOSXm0Hb1elLhH294u011y0bBp-vk9onDSz3D4BKS0fdsd-VUmiiaVgF53rBOLndQ5WbYnZcjYREr9UPo4MBmrfKXWCz372-HuOFRzMrscCsXmQ52dj65DO4ntc5yL531lx_g03jIPwR5Js384NG7-rymLnfxwI_v-c8g3fg0i5ryBubfhklrbXc7KII3yMigXdKltsjHn86IxgIl094dE4cE7aL5YN3jFRmoRmEVHX7lxp8a98md3QYNg3HlBQ1WrnPmhv-Xw0g7OWiG8SnbMGNg7mNUcRzmpatl0mJVo_A617H7IBggZDLaHDjCZ7AQ3FcrYSw0waSDar3cpYm_YafkGT2bJFjBKdS94pqljDv-jERiHf14_BLHDoWUPPooTx7_2xxPTmRPoBQrOyYkJQSL3dYlUiaBVoq67neqiOdhbluOSDgDQRQNRsevL0A1ZVu4zr3UGkbHvOw51DWzDdlTAYxqyQhmcdHmo0I0c4xYytWKe681az5o63jqH62qC2kQ4c8mdyN0aJQelRYb45C7ugnRpxVQpT_yoMx6fqc7-aK99-LAPQVFL-hPCqKOLF6aVrltK5QHcjcwBfSqBFVwaD70VW1X4asrZZ7RfUkiLyKhQEqKh__dJ28boktp7rWUT44zH4V_wspXkOjUsn4yBFJNJFhvKBcPqcv_GMd_PLpIgBEJ2jzCjQw4hYZf3bDfPsfes185wU46pkNx8a3KK8z0XFq69R9Vk_mepp4NEvoafaSkLftAW9oClRzpJfsZ5pTyg3ZK6ZPA4_A_rW2eGnJOIHF3nOhb1wXHKc41XxdiNQvN15xIUN-7ZODo3ozuqIUrLv0cj6eYUvEGslb7BVHFpoeRI_gE7RRBWUbjWK2RvS9SfrcEQbLV6vYXEfXeNn4CQX84bxHcdGS2YZa11lVTfBWj0Q_UT1WjTI86n3DJjfWXjfF1JDYqenSsGWHk0xoCKd-4UQhYXdpn9qXdPGQaK7JhbpiYXJ5FfitYEfYwD-kfLy1Nwg5b68zC4uCgLuNXuktvPkWpgCC21LBG1VrMril96zzaEqmBOfkcBE-f-D2vj7-0mPARNRYoN0hxstNx9A6b6vY-WT3KsmysXkKu3uDRxAbYLTmZScTq8N5-77nUXqCxhZj3t0Ex3i-I2pQSQVTY-SAOA0xYq2YCAeIpLuEZexZM_tlXCjbcsCtILLvzz0n1rI07CEuHbOH6EJ0OxJvqSh6IKEt0yD7ozhcxLK92lA6oOL7GdMzSiS3yiM0b5mDzALFnicg-XfTHTkLBrO1fDZZGJ6zBpcGNZ1Z49oKqyTh3wrzZbOr-UzAMQV2waWkEH2UctS0PcyWsOJGMxc7avox-h1c-wgifjtEJsO090JKQDpj5YlweAGGu7Hw6SNhorQMOi0bVNOMUCZvKCVzwSbUsyjxxt7uVaNgrPPuf_qyhqsobX-_EIMVtFZ5Uy2uKOvKjCZ3P16_RGt4B-HrzF51AkPa_rX8Plg8-QLQoSlFBcgNwKvjW5u2VKhU8uz0TdKklK3LuK059cuydzvM8hwLeBrGJbAPrcOBc3wqOJGaYpZCDXjFRdFTVbo1I0TQlHRHWco_szob2Ele-2mDIh-cQ9aGClHadrdwCG3E1wEVEBt2m4z7Xy1SAjMYzVrvHefVJmwheSmOVsGYlomN9AxAAIT2mbwkOU4xh_Wc8ljoXl3wbUuLq53sKQzfieuJ\",\"recaptcha_score\":0.3,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-685bc05a534814-14514819','','','2025-06-25 09:24:42','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43492',0,'cd-form-entry','',0),(43493,0,'2025-06-25 11:12:17','2025-06-25 11:12:17','{\"firstname\":\"Dale\",\"lastname\":\"Hooper\",\"email\":\"dale.hooper@hotmail.co.uk\",\"contactnumber\":\"07947634755\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwvO7CBhAqEiwA9q2YJS6BZhURFr4bdFIegIJFvYfbDRfAHbUP4-zGIml1aum5v-u5YBgwTRoCtpEQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7MnC-fAIHRmig796wLbnEzgVhqVa1fcUBbgmsYcJ9ztbsWm5R-4Saaw4x1iiFLJdN9qRPJjoAvlf19d2NXhtUrCwXm00iqVhbEZYUUI757w3lts6ZESUWoue6CxxmmcGtoDhJMCKzcRkxqKhmWY7c9f5sd0XPZiiM-wJQTqZB9pyRihj0r-uDm4UHIbHJAK9hP7sRLxikwy6EnApNz0wfuarI8n73tzVBxzgJvZau_K7agHx7Y3OZ7WjW2gSbZYhBBStFhBt38VwDW0BkvuU3XNAS7FBDU-qpIVlMjkCR-83tESmDll14QT-0ioJkec-djQz9D_nkEjVbmZPT_iw4L1QKzEQi4sI9PfuwJSfy_c8svAhY0Bjlll5Xj2iVDV7Ao9wz2ZFQydUmuXCYHhdUIJcleXpLTzXF5yCCZ0mDQz9w3ZbPD0zYEUiye8BxsNSPfU4I-exFJC5WpaY22LIlLW4ZiQk2SXV49XfuS5dWLmKDhwX1DiWdV8Os-8ydJJup6HnpHmIhHyOB4zYbUQ23G3jzOymk9pNVUCim7oZsAtrSpfq_qRToi-g328lr3FZ6umagVdUgNCyeBI4aXQGr_F-IwJCSmsYL1lV3t98IaSa6BMSjgz6-ryg-slwtQBhjtub-rGBkC0Y8p3O9D4cMI0P5cEJzbpBXAW021685cZBWfZ8cmWWezeFlWv_rb2qctiCQBgGRtlcRB5oHDDCmBKI6PpaZ6LZq8BYHIBtgabo7PmcKECUbJL3-ZGykB4M8tcCBWG1TdDqsq2IaLTdPILxNkJTeiYcvCEvv9ct2mb8UwCiIrpIuy2V-SskcqAdRLQOnn0IR4xefiayXG2RSzc-MrVye8nq9rU7ZwzbtBkR5zVLuMPUBDvUFfTPuwcDzLmufDRwQZn4NhwAnfJJVgGtvtkcp9VBkvpsRKk9raAlplMCJr_3eg7psfOclRmYYgCopet49lSSPkOWVDoRtR2zb7ARHTs5t9Ok11meAbM8zQVtqonFpfFUJZxKzoOhRDGD8JIxRiIYIxabx4BQbFP3PAPXZi2sYf5rF5ckY8BTpVLTSaE7pVS1SbJ-k_JXjiw9nBtoYsROsmu_vlsk0ywNCjhAiVY0kIoS4250tlIxjIj9smPBB_7sBTFeUvxgpKgKk6YOPc45bjSXzXFYzW_TQSFOxsiQtYlsnOlGLy-sc75jxAViNM93_IPSsc0qiwdrmkMjtiR_c6d-aNneq9RnVp3DribbgPZMQztD5810sSTB9Rmp0h7vruIfMFS77WCI7obMibInrqrMQ624iqUo0tHS6iS4XSGVtSwfZ8zqqwubK_hN6m-x9IE-hfhD6-z5SOTQrnyJS-lMJTLVQAHmuFUJCbhMBz6C3fToly4yVNSUw9B3580NruDrL15dFTuXylSVQWueQvAgpbHqjFmKJVss1GMlrQCN0TYZIH51PCCi-hHp9GOtDEnflOSBh1ZkpMOa8FHUI1AZKpWhHZdO6tZWrXWDkHLW_QKb8oxQVH3gRRr7V2rGHR9O9z0qTUhMk7CkIEoTwqzlazY5xhH2B3DmDz8B9gTM5JYuEqmwY0kbd33Xiq2d8mgN4iLANZJExn2RB6yuYQpNvjbkRakww2bnP2iTEGgtZ5XPoAuWm7tvMuHvOfZp8OVbZppyD2WRD9URaGL4t54eni7S5VsJ6JTW4ZhKHStNqHvAM_j3OQgQ_uf9uRD_tucGoA6gaA9l-R124bYl9cmKbmBXvcMT2VGlI6vRMduiXEaq89k9PsgZBTykrqoSbYQMkN66OPzrmQJiH4NCOeJ02fsL7GnhhNyA4It6U9svvRB4aa7gfmudfv9X8egnDcbQGB0Wp5ol4gqr3eXRSwMQ5FHZHWOyw2Z82NCOsKBFB136kzkpyj0gPmg5OTmt2V4IJe7R4O7YpSdJ8hrxv-9ePbdV8tBtrSMCtODQlNdhpzkhUgViCBROl4qnQ2KDUbctgjM41inZrpGTIkiS9quyUGoVWH1Z0FbA9kOGarUZA8orYMD73r08FnYI9xY5XDGTWGex5jHIpHOaM7hzIshUO8nGOq8oiQOkYhEAVYgDrL4lYxraLNrJ6ycCetx58N6BgwYbIeCoLr\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685bd980b35359-61202038','','','2025-06-25 11:12:17','2025-06-25 11:12:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43493',0,'cd-form-entry','',0),(43494,0,'2025-06-25 12:35:58','2025-06-25 12:35:58','{\"firstname\":\"Sadie\",\"lastname\":\"Tattersall\",\"email\":\"sadiemctatt@yahoo.co.uk\",\"contactnumber\":\"07783509046\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vr-pn-qTOiNk-27podlYU4C&amp;gclid=CjwKCAjwvO7CBhAqEiwA9q2YJch7aZunznCSeOjXJ15b27YPS6gBwR3ImKBVZPgl5eeAn25tHgY0aRoCtPMQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6eCdX-8caxC-JMdriRfP_tikFMfn0AVMxP5nvTnlUiipVhfNzIcEE49LPJnVqiqF2G6q0heJKEYCzK22nkUFgovVbTSZy3sC4WsHJr45ZyE_76iXiQC26Wrt6XVYK9dxLCEABQ0Jvsntu01WXG9g6V3An-_DMF3r01S0C1a3aYpRqMAdqTPt3a-viU7-kPCvoO4f0PF9vkm291LSvdGM0M2QNw2Veta5b-xUUu2NRnz_np9qaqt73bzZQWGt98XaGK65BDCTN3CZnhqWbi3b-wfR9AC7WRBFtIV4JTH6I1i4YPoEdhaOrYRyuB8ih0e9TV_htMODGcLcKwaMdNGKrd7veS8p9tkbv3hMhkGJD8MmslKvcoQB213Y4NlvSZ79oBEES9vhFm8semY7qyKGG280LdcvrlqxGcoNl5UbjrZpat7VQA6Lj53FN0SKttUv6fYtlOD2YJQVjuZOLuMqXnPkD79WH2hTwCcxW6Q4lzftVwrOWne6olDX22niBEXYowUluQkOkGWuMG7nuuH71GgHdC6TTP3PKS99pVXlucNfOPUJ4Gj8lm2I1bpO_dWw6iUz9IMhtRL93rX3Jm7Z5mrgNKCDwxnf2wzLrs288pSNyFq6R500E3jEVgBoDQACBw3xDxSzNKGEYUEVlUaboSykz9DByJ0Iqjakjpg2ffsuAei-LwKlAMWlgWU3pM7zZNGWqj5z19Z8BkuoO2jIIEOHDdTrXyq2l8Zvlez0hq0sb0PZB8J8SIox2lbT3jmdsqh5EZCxHgxURnqEguVWYhqKqJKZvy69LLP2PoH0Dl32GifXWbFfoTxEkyo9DgQejeSCECnPIuTODtxQd4lfbXgK3MJdWMYAy8eH3vOaXll4V3Jg_5SERZqB__fFp6Fn8bUG6bbbICo-YQIvTl_nx2BW_pQoQfbMAf7sOEezWKMKMzokZ0eemALteSqQlFds_Qa0I9eWi9_2LBZ69Tt1rGvuk8CcCJ9aygDsJAt7bxQ2yJbyrLZqnMltu7Kbs2s0FQfy-5bJ0g4qqkcAQyHcQUUkV1Yxc5Y2vjzuB_S9tBEVC02hKHFkhtqRxRz3dXUyKWzUkVV_0XXIa-UPbFuaJNRi42V39_BfLmSauwJs9LGR2GJm0qDLAHx8vJBlAHIDoNHVfnttvgS617D7aYot6RCH_4zugREaXuZFf2rt1WOluOAiSS7VOJWQwm3p5gbjSDAB9tBfXLWBvWnbDod9A8FvBmx9QvyYSE7WJy5OA_VFOZzIEsJFpvvX8a8XZbhMkGYKSgIYplTVbxvFN9xfdmx0f1Ta_Bon-HsvwZBqRi1g22nFypoKDJ2irzt18bxKTWQlxAyvXL4zphSePSJESHFLzWUn1rQfMdy5yY3WVXoFc6V-vW8dXho1CweYMytC7JTw6jZO9cssDm1CDHMj9hmEMLNFI1i4CwMHYdZ_CkKp0-6YR-ivm0N2aePiYKbj2rVO-5MUE6fgP30zrVQW_Ejhs6yRJJL6bcNiQEOKgin6AsmcQ8i54WEklXExBVsiozw3t9e0m7GXvGakfsvrrIp0tUiQcwAT70UIfTFpsbrMeyqT7GKQ0h_B_c0MmJlFvmgSnZUQ3VWwow4hdXI0Geaid8aM4zCdJGzIrim0iG80lcQuGik4Pt1koWF_1ewMNBx681pifNUf6APLzODGi-T9zEeSAJfpXvBZwxKBrzzEj6GE3puOCqzNUz7ocTf7rISL9FGzpCr7O4y-9KyVLPRHKAnJswNj4JymOzFUVLDo68DDg8jW4fukEJA4re5tAnJM6rYPl1578yd3TzncxI6pa-tFjpZcwlpixSIcJFiVtchiS-KrpCjH1jNlTdlPFO1Ba_ApD6D-miEuM13njd4kJZf9zcP3nMYVAPDZrLu-nzT5fCLiBEMnEGaIHG2u0iajquY7oJ8r844xUnFPigRqBQWBfZudYP9Z_kPJTmAdSrLnAqrWiEyxQwM-HifJttNvpIk6WERpYGD13KzvGwLZNwUknjBOExVbbqrD948G1ue2cMKhhTrdoIK-UKQErGfHeAQeDFBpGpLXca4rvJeQj0cQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685bed21a13616-37007263','','','2025-06-25 12:35:58','2025-06-25 12:35:58','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43494',0,'cd-form-entry','',0),(43495,0,'2025-06-25 12:37:38','2025-06-25 12:37:38','{\"email\":\"sadiemctatt@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"1\",\"currentpostcode\":\"BB3 3PH\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vr-pn-qTOiNk-27podlYU4C&amp;gclid=CjwKCAjwvO7CBhAqEiwA9q2YJch7aZunznCSeOjXJ15b27YPS6gBwR3ImKBVZPgl5eeAn25tHgY0aRoCtPMQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4iLFGojXaqDfq-cPAg_mdsYLd-TQiE1xTkzhZj57TUwd_CLLXJUJgHeZY3PqVuM5eqcFrOHKlqSqN8cWgYF6rg2NuIrFaZNSajQjudfTjvebWFy44xIoewOWR4tVV80CGkK92eUYgWAONwuxWt1Dh-JvHDXKGAjTn0K6an_LgDm69EXL0p6u8v8bGziNqHTv6stY4kbj8BVnbZfKpIxQuHO-Ely45BEAyCLIwiywi4GU3fXn4dVj4EAz7pCCMmJy2kxOzYYcFeRi4tWOEO9Kvup0RXyogg1ADg7nEaEtmqODanvCpsglwaVGtzZEt9NZsAjq8EdvZtzWoWwGvu4cBlvKx5OZVNgkieaKhw4QU8urKQ7yuePHEo0ERtFx6lmrXQOr2l_spt9fmNFB47VL200HVQboWbb2nNywjYP0h5Ny17tDC1xrh0cxMKwINgAEnCG0SoeTO0XDay-sdo6QosgU4MCEzUjFJMiLUzvIjSICXUHx4QKbqRvetwz5hDGdrpytQGzbUSLmi5lq90Hu_7crONo3jx4xOQ5UaeIHqw5yFjxux_N5TdKWbSU21FQNvCF_vqHXYgbXlMvyVYj76My5W4RO-DIi7yhJS6FMguqnHYBPpLp8WQBsWO58xqrsvZwpRUmkkXwVZR2oB-SgIUg97IQzjKHccq2KXS3DX3K-JoPfbkmZHIJCZIs6rod_ek7qOL0uLtoZLWFy2bIPGV2Ddcc9qVs-0quMgsUiCIKkKZNIA9d9UlzEY11WahRMnHxjAbOYNxj4vY5PtHG2UC7q8wYcnD5ivD6qUitr7V5Ols7UqnAL5fsh8ifGU--gdJoXroQauHZIA-vVTKoGubdM7gu97JMZ40445P01noX4slvP_ChSK1X2MkZscpSC5bn7y-_LACw7A3-w4aVIZYMNmAdJnhA4tuzuqg2vk8JsbAZxWQH01tcIZarKx_wQdjF1tjsRhwCPYeFXNALyFtig47MlYCVf5wmMA4btRVtoP27eaiE3zHhwiW1Zg_IoADfmACQzMQtPvGL53l_mN8O-iSK0H-VzDe7xl313SopjXvUYQLZEdqTckg7QEtffHFAZzZgyULxqBJYxhPZHIa8DacWndfhUhopwZQWRCkm0xqIUPF-HEoTgrgXYswZLo-PKhNDVf-Rx8v1yHZs_q6BG11a_ur72-rHcyR1ePWIycm_JyXjP2xHHJ-MYEGKfJNkq7ecT_87DLGp-28Z1ZY-w5d8WL3HXCqZXF6ISDp8CSBTs_x5hEfKfzV1FlVxYjQF-I1cOeZqYZVg7zGGMEdkl9Xj4QKPBzemVo6No64rJK6xli_qwyMOc2klJ6FsUoc9jz7aWGu1Y0BJG7O7nRrgrYol3BO_qwtCyQi80Ta065mY8AyTbYGn5wDH4l-g-V2tW12hRPMLGHirYWEdBOtbJ559Y_hPFmS_g1OR2n6AcSk695JdAQ3SCxpkcFjbx6XgUf1izpbmPp7XGGW7BGJPZgthx6XUEm2gE2CFX50p0R3-N1v4waAtHuORKHdKaqz0wahzqsZCFQwS_rrcRCkgpVkwNVu9sHz24RjLA1NsM1JsvOcKZQ4sF8G0yQTpoxLfeus6V0qkYuKPNWSNE37OVUwFqJyP3lfXX9diLyO4HTBy-_pxuFMZPHyqL8BHulc1_WzSU6kPuwkMbybyBuPxcTJcVeOUzdokB2GySPRy752IuGOMYcpLpwz4fKf1MUpLwEHEN9_7Ynla3s3m2K7eQ-BjY3cy-97g8uoMR1NajhnNvCFfS91v6mkVrTHrD6cot2iwcDMK8RYtI64aWXtNIfDdayy_FJRE8HRr82V8pJUnLQoWqemm7pdIIL59v2uRY9OoG4CEdHjsWL9nn8rnfnUmATyrdhoftrTgqB3zvphmih-s9GgA59q7urVs9zObXboi_MUu5lWer2ZUtyfE2Nq_wJrWp88skBAPtzID_cqlJMl8C5PmT5TfZBG6jUuNWTKGOhl0cvTEtrOJkXL1sn4ALhVcYUz9Una-sgcoaI01BNb_DutXl5dcryBoRM-EkLD\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\",\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685bed67b21790-92609594','','','2025-06-25 12:37:38','2025-06-25 12:37:38','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43495',0,'cd-form-entry','',0),(43496,0,'2025-06-25 14:39:25','2025-06-25 14:39:25','{\"firstname\":\"Callum\",\"lastname\":\"Whitton\",\"email\":\"callumwhitton@gmail.com\",\"contactnumber\":\"07946309739\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7W4hRTwQh3G4SXqIpzINjwEkjibGertFxFDmxctXqu6TthaJkDB7uwZFumJfuXUvjpOVhM_SLOzZxj470Hx42OPJjwweGevx1GZbNxbVuWT53UmHErkNecLFuKQb42hpCLaL3k12osfcanttw9zxWlprZLbcv1K-mcR0GzS3FMpIZd9smVsB-2KYzHa97zY9a-K2rabUrQ9t5QI4BMRokykqML3YcLJEB66seHICNYAH1od6GNHNThVqATnwE2BoVs6mG0sVjlosaKlFZB-ENTGkZqMKcn8GvL5u_ezZEvozfDV8vDKkTyVxw0I2kl_RtZ2sEQ8U2RdovSWpARRxRI8FRWvQoNUtJhzBQkQuXJetdty02WvjX_-L6FAApSblvq8PIeg2S3-uksAPqhf3L0VNvrH1KXGldsxuxlWYegShljjlG-sZzkZSNkpdXamC6tEtuj1gi1G1tD7yXh_LZ_1G0qP-YwocxTFQ21xSbcgM3IpWSayILUwdf05KxdtK74ugUfSM3XLoAFOr9QBWQHGe9Mw6_E5JOz0PGuIwWpq8zLm45-Xz9l6w1-jeuc4zW4cqoTG1s07euTVZDi1pDWLQ-pxT0876g5fZOGD6nJYYMoS4mFC26pmt-nP2wf-mwnDAW48XNvbGDh5ctffgDClhEMPr45po26rnIujohj_qfHEK0-4EC8gUCe2JwFxDKN-PKYjcT_uRTkEUuVInNAJnWOXdYs1qa9w90z5EQdxHexZ7MS8Sbd76ZJb9-Pn4TnenhYlIzg_L938hJY2MdJPwCFEuveaXzVuw4o1Emt-7xBdij0GjRD8cSBLWsS8pktYf8ukC_Kf4jIPrbkrGJUBuTscRowbplw2ZVmlldQPfv53AeYOaW3fzPv0gxp4euI9f5kI3Usv6V5OEVcgXk7nA4wJye5H4RPgwDmqFKPbVNovj4jKo7CWJXQamlMbSe5cMaFcAbkn2EqG9_yaUbgf1t0pZhuEdcg1NTGr3MV6OmqIVf8ZGGpGqVDzd7WcVt4bKM_DppypNgyVFiibHNGUx_YYBrp-NtgA0u3_OfrfLQl_mK1Um2n7ePJHD7j4be0VDKsL1iGw3gDFPurpJGGpMaGSq6GXlLUBW1Rxe3lLM7BuupC_oJ3d1QwUxqNnY92vRAzfwEWxHW85QYkeR_AoMXZLGIrGXfhEzwuyT9E8qq-FzGGY2JRlckQMm2PLFm-orXPjOiW4s5iOZhu1Knzoxt-oq6pVTtmfyMAylad1x785MtwB_J5dbaAL2BMIWWpHIpUn3-oH094gnnYoObIgz4bcsXugDH9NAe4Y6s-bqAv2g_xeoa9v96CYxYGrtuBUoJo8iV-_p8A6e7C3PxJ81JOgBJfc9kVqM6EiSkkE8WjKVEsoEvlmOlFfACrIu-xx0pghfK81taMdm2Uy4xjzv1xeDgqzzFw1F1aK2GiJJ70TsB6JSahBcN1zLXcbbhLT6RjQeRtch70nGy2-2CCvyPA1mNW66_ms10YII-c1VU61rNrptoxV-cs8sI2vNRobCEQyaDd8orS067OPk9dyGgeOU_Wb6jjt0pVRLoh9MzmTtugquWDmftlG__tduO_t0CfdAhY10wb486JCyd5dU8tsxPzCNRtsoxxYcUC1jYENqRT8bH397kuvUzQmScRP3bNdZyE8eFrrpWXfzmd57A8iArLG87KOSWC8l1euQQSUT1KhJCjJku5JzWysjQTFa7ARGMpfz_vzLZ0d_EcLd51RGMkX6ZAk1A7iTRywAp0ObDNdDVjJKJgnQdsmyBd6rgBGSXHCQTxewP-YH71vBw2A1bONVZAg9Cj5zliqJgKHNj1kiUx24cD6i6oidvCiffsLkpJKJ0fXGw_IEoIPRyYrC0dv6yq1RzCVTG4nDLqiTlP2BLOZ7t3WGeqvehNXzRWdR5hCHTdCjBR754mEGdZa4SBZ9i2rHuSD9f1prKHQg7_IHtnjlg_tnrlAqxunu__Zpsh2CJ56v_3O5OQwMYTdqTzKPmj6vI6NsvTAregyL7xGTFAFdORsAz45Pgpz8TjvxHP4Ic29IK7FyKnmHDVYA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685c0a128ab1d1-21172168','','','2025-06-25 14:39:25','2025-06-25 14:39:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43496',0,'cd-form-entry','',0),(43497,0,'2025-06-26 16:12:48','2025-06-26 16:12:48','{\"firstname\":\"Michael\",\"lastname\":\"Bent\",\"email\":\"michaelbent7@googlemail.com\",\"contactnumber\":\"07966714824\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6up-IHwk75ggQFvk0LeCMkMm&amp;gclid=CjwKCAjw3_PCBhA2EiwAkH_j4olAuljO4ctazI8tj-UJo8Xq5TkO2-2Lt5KzJqN84kY08RUIx3IBahoCmIcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4YlD9iNlGJxSRqwWPZTFamdhKuJT5l3ygA74q4h_caGN6_ybTV8XVgmLFjsZjvTWuJ9ru9OFISnLLzxamgoI7zm2H97v233p_jA-fYQ-Sv9YBT6fO7xG5iW36ZoA5e8hZovssauC0VCFk6eR8dsz7Ut_gqbYVPA3p5zo-KhrLijb02b5HB4MgEOpwTK7iNj3y7hvOhicVP2lxIsq9aoOGXT-rDo0_45-ONh38cMey8Ve6tPFsf631WMnRgBHn-AwzHQT8fQG72et94mwuzky0ept1U2hKN2NWuN4kES5_c7vCoowABNZIkVG5CTSAdmUjv3RAW7tppJZNP7rYs5FWY_jlVQqsxDRs1piSl7sY6BgZc8vHVwnsaTHhOhUZ3kUpf8evySLobBJrIdg5Gp7D6InXqZOogWBE61qg-Iy4wlC1KLPzkUNEd4V0f6DsO6QDlqOa5sIHbRg7Yyh_NV10h8qPz8z-uwCq0ofQX9570YDGdE2cnRP7ufXV77ku4WGl2hhAf60hyMiVPJ9AZhAlHNQQdr99AUy7ZJVOuj-k2t5Pau9Dw7P9dqBub4J33u_ZI7QGil4FflO4qFjRj9G40LAhId04OdTQm9cGrwXjhZk3z3jHBCqcm_tk6KHJG3HAhNy6l8dsS8QUii_6fb_-nFyVZbdKRbNicOuf0N4Yt76tWn5s1gtXiSowVkgZCvmuvCun9kBehfZyzPoaqx2b0bIOd9rYL-NW9MD98PW8UIY4W4PVnUVOXmpDxaQWFZjrZXz_3XsTdQWpsS_D9Vm5wDuMHpvy1K3TsNIgRx9b56kHcSMNrh9vO99w5jo2cn9KiMCWUetJCzUF3iUwa4mzNG33wHZsDYG2mp5j-DzuvEqo4ieH1DqOV6fB1l2zYBqckXOL5ZzkmIwp96XJvxFf6afS4CA2vzTEaMvFl-pJ2VLfaaXpy4izWD_m4DEUn3XYHAzSmbENIzssJcg9124ZZG8FgD6M_QM89ooRa-Q02fSAxkYeONgCmbRoMHrd-R2gYnvl82uR9LCX-yVcBg8pP7VJDWYrOciFX__hx_e8HkuXOxb-UvM83YCJ-TXN2psiAJudYv15XRrcebHtv6u4kLUlRw4GMfdc8EdcgB00vCQ1HVPLZQP1JlOxbQUHTZFOcGOnlQjSejwr0DsOV-qHAKMMQhVddqm8-ltdxaXqFBpBCGmPZonODjxx44utqqIOSlFZHMyZoeE4F_LC-EU07KO2fHG-s8VLVGzvtixvshL1sie3R4E4XLw9lQ1RmNiRIB0POSduKebWasTHGgo6Jy3Qrus3J2vLlgKJRDlQpIEUyPA1W-GCVJc7rhLg_1pfKGCblLIjuVvP5i5a2RYVmlJSJBv1EPpH0IRAvDDXoZ2VXZrm7zCC-3LgLsTj0QC3s3PMmozhToycr1tqD4iOmuq4Y-Z0ZNTxaK3YcewnVqz1lhxKIHAZWwyMTUhG3x2qUUoPCw5fhz0hZ7Syj655VVYdDd_EBioEC9YvwyEOc5vJ_m5bRZLuQ80a_9oceYOijPfpQ_wkEjpIF2Zj811Jr87OqpgzBZ8vh68ZfaDwInsbmqLJMj9sz4rSRrk4D6P6GMRg-HGWkcClehK5trAF_jY6YinBDdXC-f5LfJbxgXTqBRwC9slZsMqxvvDY4sR9StXESex3F88xh6Kpk4vJgODtURC4UxD3ANwiWEBE-p4lt2H1UmWRS51ExE9nXypK_ryaDaBsCgvkDGIIZ04sw5DWQXHPRtS0uV5mxg7p7waAUXbeHAot5CEX2qWfD-NdwXcMKTE_wHm7H1zwdBsMMH7H98IDL3_SalHlDwbCcvHW9qa0zQg6BsaH4SjYiJfx3D4xZpMIAHCgpx1m4yVSsypE5U_UCWmAlnJZuRl-wAO3tG0-dKPudaYviUJH3MRbyBN37QKz6uEf27eh0oxc5LuvdOe_fbkuNlt-8vBAh3MguEs07o9sQlRYaJJffBmXiIp_GxmpdYVz338UF9dBeWKtTCja34NXDUBewiy-87-Qq9AoqxomrByhBMldFBWBV2Kya\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685d717272c154-03010606','','','2025-06-26 16:12:48','2025-06-26 16:12:48','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43497',0,'cd-form-entry','',0),(43498,0,'2025-06-26 16:15:31','2025-06-26 16:15:31','{\"email\":\"michaelbent7@googlemail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"3\",\"currentpostcode\":\"le17 6pl\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6up-IHwk75ggQFvk0LeCMkMm&amp;gclid=CjwKCAjw3_PCBhA2EiwAkH_j4olAuljO4ctazI8tj-UJo8Xq5TkO2-2Lt5KzJqN84kY08RUIx3IBahoCmIcQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7Az0P5XVU6DyC-fxNIz8mxf4vusW2mrSeGIztyDybg9o7JYlJodKEYa1rE03vuLRmQ202S1VYDiZwrqKea1z6PR8D699RUfF6XAB-AcwkEq-0F4DVCxAaDP14M4pdSXk-lyVWKjx2cyp4MUzSwCAmWmuSwYufx8dOAELmbmfwBL40V_VHnvQ3csnr8OstSIa14Oocl8drFebZqg1Ht4lIDEOst7M7ruLO40PlrYl1BKahx2AD7r8Rp52hVuKz8L3pCFONVe7DJ3K0GGeGbnPppmeMbIYgQLPtB58lblEBdSdWSi3w4uBoOKio4Nbn62WyRIEWHvcYAGDOCTDMPRQvPmNEdoMh0L-UfG_1GTc4x0gq879CUPgl--xNPSQcTnc2z3ZPJPG-vmDUNfIf_mPtjYeO2j79Ara1hrV9IVmRztyXBAAlJ8FV_yIzFIXAfWN73P54jrCwZitpiSCnVl-rznRxGUfQhnaYctdflQ-FeJvD3BWmXasv6y3lybrl7Rg_k0XK7Um2CpY2mx6aaoDGHdfz70Tmc8AYGIVZgh-8eZbCb1Ey6e7fmqcxWqI0-XwrGL1zdYxwfML2dK27iaoE5lEqSKGKn1dWh4nmqIAsPDDM8tk4Wfahe3MekKjnkayLPoXcpdqaPpCxxi-ug5m4TiSpWPYBhWYuE2aB54A1FjB24ZFceI896C8nWA6g5becBm2UbHGHToSSlBVXdaoW1ZBqrd4G6vsysjWSHtB18hVOdk6Pn90aMv9ifGfOIElmC7k-HKcxo2Pe--29x__bCe6DnoiVg2qreuQM4vBCYuJ7xzjVSJjeJGCbzWBTWkoEJpjraB0nxDdFH9OMJfe--WoxH93n34vKZq36WtBWeSMyzSPt-fTbVRBz-_83RMrl-V3QWgQIpDeIHMrc8t3aTN2FG30vC12vLCLgRSrz4KUPEwvexBlRwej9Eu5PHjGHl26PYYpRM76BmIw4xj8t6OI87PmUe8l_YWq06FPrXPB-kt15Wf8_To84nGw9Lm_nTUtzVBUo7CF32-BVfS5gNgMxO3YEI5PKGQjqYmLq5mq-qUb6P3lMKvjAo5YAF4YIBA6hNqTGSZB1m6A_tJFXj3aYKSX-CyevW0welfRujuYHyLmA5MOaJpxRCfV3_afQ-awYvV8fYtOu8PGUMftVarWkOHwbJ90tUk6rWSvHB727TLmB-agjr9UGirHnpkrGHwJeSu4IzQ3u7j5owNwQj_GsclAG_6jwlzogeBSqO5OMPfU6_QqDGlVfRlGuW9DQu4irGrwY7ECh5zE1gLKpqKzWE310lgswWB_tovWgijmrmWDIPqI4SPOAYltjurGeBEnUL4QLotoPLFcnRbwyb9lP_ZicPZfZ4uSce-2wFLYf8FbLVruNGCeTSEbbnaf1knLQvudYJ0h8zXSHygSfEf-DvPAjHfqg8TIqYiAFua19Z_AzMWLP9ix7Q8p7ZA8tCZrHDtLFViU1DpMTWsy56idTcfO2Q0DG4aiPB0CtkuHS1z7a51A0Fd5gzQuzkaBg3883MInDO0us1Km3qSS8cadTfQEPu3z-pdPjfrdZ5Z9iqprY_PuYgTb6y96iY37nZ6OoRROuHq4xdQyLsQhXr42jJIpqnN9T_rP_beWn-B6RNh_SWfmPaczET78dx0ntiVcPc10uX31ElXysidBVXrprlxyuX5KaiyCzTurM81NVZDWKWaWFeyzIR4kuB1WEj9TNYh5H35ZzOHMvLtk_0Xlvs9eBkuTNtQdC83FDlc-fukQlzEgOLLn5IE15iFP0WLaYStIziBUWhww__icyagKl9WLM9a9MRR9Li42YeBpmHoE61FaiiK0h-b-YZzIQnKilB2w1i_xAv7CeyKvJv_t_hxcIQuiv4okznyo82KVRbhTwzSxzAT2geTCWmHo3dRmFVigQjatohtV1r4jUeVCxK3FGzgepDq9_Up3Z2lT2ZGAMqOwY0G3837MlB0s_LS_XVSGh0SAgHBHj00MyQezgnopmPtrwB_ha05xohQHSrGhXW217-gct2jGEHLNNRq_jR\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"0\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"0\",\"workindustry\":\"12\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685d71f8985724-77756703','','','2025-06-26 16:15:31','2025-06-26 16:15:31','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43498',0,'cd-form-entry','',0),(43499,0,'2025-06-26 21:05:43','0000-00-00 00:00:00','{\"firstname\":\"savita\",\"lastname\":\"patel\",\"email\":\"savitapatel@talktalk.net\",\"contactnumber\":\"\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6sdbsTQ2QCFu2htc-Ztc9yi6&amp;gclid=CjwKCAjw3_PCBhA2EiwAkH_j4uUj5esjSuE_VqhQJL54tkiwOZP2RcKppwITJO_xTqYJOXys0X_WFBoCBtwQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA6sFxIrxSD2_O6kYt_BuG-l7aihGOyXb02KvcjDOS6muqzu4-OcAU8xXcHJgmotNjYdSsc7WG7DM1Dm-k2pb7IVaOpXTww_xGquX_mBPZj2_T00NMOmXVV5SBSV79TvLK70cBxS7vzuI0ip9FdPgQC1rbgZXUPk9WftS9NqUQuLN-sUK_xORe8aI-OgYGkQd-uNvgHCTqXSSfCnxfvzP3bt3k7Dzmo9Yj0nOKxTn43uG_WiVvH-EmXmZFEIUcI3FJue1918Z9hpymo6unkE1se0GqH7DL_NHbSX7usFJJdi-UylwqVEnaFtO7ct_EWnhJRT_ldiWkM52P6Znp7K1t3X6BEQ3EDbAeJk1c5gEzji9xJoUUapn-tZ2GFU3EsylhFfnD2po0VOmUk95xnv2yn4hAWNigcqW937VgChAKYm1pymfWVRT-AGDv7Abd4fGAoYJsqLIuuH870agajh7aYvg9JJkHn35ftsJ424h4jw5cW1JkYjSF8dsiyid7cBzs-P_TndWvA2zuZsX9_Xu1JIHGOsVVNmSmvhMwZ-5FL3TrjlEpOL0V0N2iLJ3Z1TtgE56BNMVY5YCYrRZ1G6FD8QaIPaMZBPmskSupF4qchp1lKLcY8ZXxY5IEJyAQtxHMBJ93kAMhUOycVeAF6xQ2-x6XOre14DBChHUbw4yzmThB0GYd4uxwkRo6tJOlaSOFZP5bk5em1djfjKDkt3eWHZt4JXysju56BGIGlX7B1VrAiuwFYzZu3jxkaAlVxc6heqO0Rzz4bcaTToYhHSe_IAm63gfyKszwLLbMjeGmh_xc7L6Mqfw4Wvh_szb1R9C8Pe3qQe7qKOyBsEBpFCKkqXiv5izrCGiOeVCaOxDEKKVlYDIOLTqkCgI06atM4r7lMJJjjv39VtzbbXhHnYlWAJ0MkznJBWjheTK5UWiVlKHxxmU8AmXQxMTf5zNFcy7CQ6sQmA3Ao46KdfPH_BCG8LLwdanKAKOwh2z210U84mvujIwi-1Wm3NvkbdE1Ul_0eWToTKgWR0o-TKzbzUtcVopQUvuc_6rtlu-E_uoKzcNp7ZruvHJHQHYd-D7GvzBZah1wDZKzV8InYxGX7TIKlUDc4jJKJzpQloaD4C-wOUpEHyPp8TnG3llV8uGYg5wjNjx-fFHTEt5xhBqht-ondHQm4E8CFyM4fnzENQFa4Z7MvkHrFZJzkCpppYBmCQ9kHuHXmEzaHhMbVlzyKVSXcPgZI9wLGNshFCghulxXSUNhlIRcLAkzsudQZYTEeJYEH5ykhR3euMNCA65rU4Di9pFkPMCHLvBzsFylIWiFoeStYBDOpqDB1HR6A4pvBfzyH7JukbcN2yLfFIbxC0n4YZn_EguaanKM5zyeJ0XO6UY7e3sP5_g4bQF_uFQuJp3LY3Io4l315iWD219fy-V_CDD3eGWaly_k0Zf3sT8H8V2pf-_UR2yn9L5SQc471MzksFLb1X0h_chNyNgu3JBNHhdInX7XhpvO5UO1B1sy5zohF29QJ45vl8st62TKUoTaLB6QMZIHNim4YJd8xcihoipG-Ytt0Gykjwg90_Hbljt730GvPH-m4At6twrG6Q6JCDWW8xzOVxXVcG-arL6wLuk5nCus1yGu6wMOKilbBit-aKI_2xsSxOJFRuEOmLwJDUx_S8YUqKbZhcFzBJpqrCZ-2Y4U-JNUgyw1vp0b0oltqAjoyr0e6mDJQkHL_vH_JCJubgMsIrCBJsLv_ykT45SLQu302JPnTqVHSaT5-5oZ2GKjcAiy_7NhYjyKKRFx8EekV45pj_zdXDEXa40wrEbnjK8pacNUEhTxupxT88SFOmKu5lDTBTFGkaI3ZqV9DAWo7vPiGcW1rGpYPZvj8TmWaZVyPNM6o19yRqRG9Ccz5CwWbbIjHhwukvdO8xully940PTEtyeeuYQnnmj8FIR81ZbAw6U27itL-rRTD2GtOdnKpOXhdLlbkm1VzUCjXGOruq6aEptB8786jxnDdKmuL7jfYVIdhjsTw9LKJiNDTbOaHqXVCeyZs3JIUFI7fW5TZ2f9QMa49C_8NvQVIkG8ESfWLw8hzkEKmifSxLRIlnXM7M0KGlNj1g1MeTdSWtiZUS1gjE7iarzvAXSscU_EcbQp73XLQrNnXO6joQ_g7v6MZKmPWz9rj_hBfTRM8hi1eWKPiQuiEC8bYq3Rumzp4GIA\",\"recaptcha_score\":0.4,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-685db627864690-03296387','','','2025-06-26 21:05:43','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43499',0,'cd-form-entry','',0),(43500,0,'2025-06-27 13:49:04','0000-00-00 00:00:00','{\"firstname\":\"Marie\",\"lastname\":\"A\",\"email\":\"iadeyelure@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6uq9H2Gv9uIiiwO6Ngvi7X8G\",\"recaptcha_token\":\"03AFcWeA7IFdWTIBfNJfiajo8I1810zTyMInNtzEKkr4A8_OvaVV25wuEAbCWeLJm8C8fQO6mSixDV6vJYHoaqaeI2bpQB_0zJjaX7RJwQjFyyPCq0SOSUBX68Epx1lj3-Uj3s6shIsUyxwOJbSon_tOI8G3sIBG-MwfpkSnH_FU1bwm3_hyWcke2Hzd1Z2t_3jNlnWJBOsEnGDgBWhJRwoSOw-frJk8UhZSpWVPivUxF8hvFhfIgDddrZtBwQvncOlLGykUwwORVAuy_R2ag-XGq56TefipBvdagIMUNWmopts2yBAcI6NOu4ixsSFMBXc9iK4KI2XQlxkYT1gtakY8kA6rUdNZ19KdfotzTKTOh3VOePAwy5EzK7q9AfTSXuZTCeF_vBtOZx34G3iMm6oyjaNiyMgweOYS6RNimVghaFR6SBZn7D3zDHUqS8QIHepVMc_F8W16TZV0L8gKX0vlzyEAaRN7pnCxx_jkwxxA1PDc0CseSmc-1v1xCiBrNWA4rPDkocbe8mL1dbNO3g8qCEITWaZgPfnft0Xpe1M26S7ywnVdq3x0Glg_eO-lyCJBuaxGlkojS54BecX0UNpy7Qq-UTT9pEGK22PArU0YcFZL1hv-K0N48rDbr8--d3tmtDp5NUbMEh5Cx-e_SshWF_LdeaqbGJvbElnDJmWcR-Ct-GlstRpp1ZttBNlM5831MEOQy0J0C16k2mGq56x0FVJhtXe2ikFKFrnFyxw9EZklXhLfhE14zBeJussyuJBf9E6iR3FQvLGMtVzXGwOtj8VQuBhkSvx1cgngk4QsR2vxEN8HyZQwEh0ZZ10mcWtqPATtBCVeebegfgeDW5mfFOEbcONnJE4OrI2ig-eiJhl1WN9OaiNXQb4bky3nuSnY5L4BlTUpUgL5ADQTC1tYBXa7iR-MueQBMs3pL_XOdp-VXCQDu9QtNU1GyMlOpQjUGtkoEcM5lWEI4NXlA7CiZa4FA1U48j5Ay8nMdbbHBAXZlJ93NO1ChVJi9fk-B4HY06QMC27S366ncxbV5woMAY_KWnKxvJFAaQV5-rnC2pHKyoAaBv05y29E5zFjgDr8ATE_w4KU5OapHjZKvZhknzP9dlcgCEYyoeACGI8y2itzfeQA1O3rLUxT9yumtDAiiSiTOgdxWVIXXf5pj2UoBCXHA2V6OqgRfVgwVwXgY9_Qs6zcBGbU-JO4l8NLlEy5vYmnyBmECl9nQdeCiHJCoTmiz1jD1D9MfEcgHYfEtdZuJPKn3JAYPX8T3YB3wDvQK7wPJ66VuR48X9moQ6dCfCgEwZtZvct3n6Ci_TiKWHZfUu240Ga8dU0JHQH0-LzHdsHoJKA5s4WlqSf1xZCEWZSAXuEIcWQg-TWIUsHUuiXiDyt69kirN2x4nKGSZju8Fx4c5OiSF1F5RimgbGEPfaUkgVTpHd5SpHvVQZaQiRe8Obyc5MjHGxsuEZJ5lhuDZRM0mB4xfAg3HbDlC45IfyZjt343SWztBfgte8xtJL8J4dlv6QyTGmeqIDbIEslVx3K3qXEPDSd89s4ic9P3VxBA1LBHU84nAcXWoo9eX7Vofwr3UWyyBPAr0-yvaR4ulXxhY3BC8Kcc7tNsr2wh4YCew41i13UDVBtBpWHR4qKiKZgFDpmcxxjhtAFDc2rptywEZ6-fFq3j6Qee50Cuu90J2sQ4i9ab98Z0ARz6NMGfxxw-1MPapJHKh9eyMDvNGRbLqLYTOYyWXVvWb_Jc2KrdR-c2vvcO4uRk1yLbTa7JBSWodIrg2HVWMH-H7kWBA-d0bbpK8PP44D3kZph3ATTSokEGgnKKPq2hbRjmHneSAzxD5mY22ANhkQmM5AN3TObszTpJZiLRIbw4EwfitoDAvfaQDVcaDr6qCua1ClYTDgstcD30tuqET4USb_gfEZE-Sfa6IO2NHR907uzQXW9eeeIfvA3YG9nckjPTk0UoVZSyyZeFqzxgtcnzCSimhDPZNPIbVLRau7pSf4_6DxhyVaPBBN9f6FnRW5vQ-BQQVWh6fZlyd5DPHdRZHu104pXcz5LkQyhlMf7A-R7g3S52RTVEoLN1gLnmyC35C9qqeWXJrDBwo-IEVNRiRDvMXkR5wnX4usI5uH2KtIO_58aF-GH3HNAMGE5hEFM23zBj4IIagaQw9Yewk9u-aP4evl0MuFYJEYiKU7EldfkvXneCwuRLuLb4LRtS3LK6zEzI-V8xxl-auVHMbYp-IFmGE-N1cffD6DeQQuC8ZdSj4G7TbYL2gnvrNLa31t2joFJKbrxA4sk9PIT4ITv9WgxAb-GXSMFgGXB7YiKYM0EQhKHUqP_QkoEyhB36IUAYgVGALDXnTIUTXUo9I6HcwiRrU3avxeE7pw\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-685ea150764f13-37184376','','','2025-06-27 13:49:04','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43500',0,'cd-form-entry','',0),(43501,0,'2025-06-27 15:34:28','2025-06-27 15:34:28','{\"firstname\":\"Anthony\",\"lastname\":\"Mulligan-Downs\",\"email\":\"antmdowns@gmail.com\",\"contactnumber\":\"07525480679\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/iba-membership-info/\",\"recaptcha_token\":\"03AFcWeA4ixs676vvtGiM-K2oVKoJeB71Z1C2Q2U8QwKMBKvdNxhf5DFEZMBshlUrqXPnRkJQjQT8WHjOnMYtLK_dKsfMyqmmuvKrp1JHWfjyoZqIBQmoTakDFWBkTxq2CT0ej8UZfyuDbONmd00YZPqLW3Lfloq56VqWD4IygJcWFAFFhE5Wyg0ciGSiNRQ1TZJ-JZZ4AF5oGWLWHtthaIDTlHCV8_rsMM2BK8Vx3QkBmhxLANOoDOSFOgjamE_EwhW2SmN8bpS5pxU9VCC2rtKlMvzGc9z3HB82TAdKuwoAU7wB3vDat5i-ocHRhMvdUboHvEzKRSfhjk1O2dZc29i4QWF-K9welK3SeYrgE26FEVKh8pCdw5223cud3rCIqV--z8Ffb4Zpf_I_dM4xnf4uF0PRhyt-TJu83FUqkWieIVkGyIe4QwZ-Bl4ywUpFgWzqioo2fukSIlGwF6RqsPcX3Gwfrv2-SwOTJfrSZc2-uyuEvDK6jVN2ihufkf6WbUym8XZirmOqha3xSRW35e3A04pWFQLeqoqLF02PGjDn4Fq6cHNcWMEKD9bS_wb3BkhbzvPTWx-_ziAxgDynfGjFD9nxGzG-Urg9L7-kEJmaEnTQDPKZrrqNr9BhDpScLBv6JdiN9Ie0x1_GRC2fc5khJdqZ2YvYouUsMCotjCiKLakS7ITWbkXFFiPiyvOG31QdIqiCyPrcfkyIZFKz00hC0VE3Mqn1snZRb97qOvTg_6xJumxU0OUq_IU1cAoJmBf-I4yB6speRfmR4FNPuxmzTZIi8jiUaLHjxmj55NSsPsgWl6KJ66c2X0ERl4Puu3nCV5n9itRisTXalcEyeIWvHOyx68833tbbtWMjVoBfbkDnJeHTruOJxX7QrxWyRLqqbnk9lQVlRKgg9_sIzCbi_Q2BtaSuf5EoVbWtOjP56EBcvS269bkHhSECQfTJ0raQd3rNcEbDULmfJzv-quWjkHZ6wb_VDbsDjk-KxwhzWXTTS9m8ZhbKCjLwegWf07iatLoTiEwMGK1_weAibWM9koHAaM0R_Lb7pzetJgfNwu_aD92e_lXG6uQm8-QtbIGxzg2vh2uJ_ow-rolxhjvexwsPPQwNvNpcxuJzgpbhSRIDqybVVzbVWahd1pvYwY-0Ix95WWtHJpAXpB3TcXULwb_MyRXWiAAS_7zC8JoA0DKpLsUHaDI2nlKILZoqZK1cOOlfI1XUM4_B_ISFrPyVqYX3-uTx2eb-Ua8Sh6BTMktvJ_wT-fyGboUZwIw3YdaFSOxALUviLwXmKATP7GLwYBrvcygkoKfa7sq8S97rvjPJj52-bxfHcnWAn_7E7eAZcfDt-rECPZ-gd8VUjrYxsZMp1i9xk7mJHUClpLyMafbWkEKLPKHbC4a8gRW0bXKbZH6MSqefuD4x62ICCa1-ImJfXUisw4VTbnoQGb56kBW9GcEyOB0aRGcRVDJ-de7-a0WUjGCVdo_1x8c1iaBgN0EOeO1XYsU72TCkHPj3xRGt2HbAm8UCoEx2OIcaShYR5TiZZmpVapqbvhQiS7f3EmaaDascLbmRC--KRqpxTzFZwMSZa_x6FvcE-063snIUrKSgk6AAmBAhrNB2zOtplNO-i6R8-Vaj3Xa-sOZvGTZDgyPzM2jFYEtQ7X7x9u4Xpt2OsABWEFFKMzgBMj7xVOfrXpoozNS2DfQkNNcDgZlAT_X7QM9Q2DWwDszea-23LMM7rv_lymAVqbj4n8m0r0c8ZGEay5EjuW7p4hzicrat9I-sXE0NEhqnL5lhoWyfj1MwFWDiZBF2WSduOJInTNtGD184O0ruIQRCTNpqpAikox0H5KMF37p5_rjg_rhZ-j18gm2HD0d2XOEV9YuvBQAFUt02k0SSqJ5O8EhSkbR9YiR_WCv-FUFEZEO9XtAFwaiu_Ths9LfwsNK2qNPyrpIu9IRcWh7XlZCFePxYm-whNnDGQmt-DpeWyhTu0uZEhgD6vymr-ngNSY7NoRjVo-iRlonu_eluSfuICmRdfX1HhoP7IsKJipVsi9iRtCorXvQ6parpS0Fpywqts8nVZsysvk-cqFyklM32cRGVSMDowbIySXKfVoBdQynGeuaNoozdiPLb09s-ukLQF70CC3dVVz1RtXqw176DxpNIEoBiS1RHTpSNek-sd0HT2anKWYSU5B4IE_n27Sa-xaquS-Col33a4bR9nsHNWYHOeIq3iFAOQT6CA1KBJggZ22-ww5zXxwxFOdOKdYai2ZUMPEUQxgxAVWCAhd0w3nPd_fSKibs9SSQBJzeEIVkCZMaKW0EVxByrtRSokNqP3rPd-aVofGWtJ5GiqFypfeVYulb6qEoA4E2Lyqb_Sw52dPE5RrVq0vN7LwQfZ_OXxcudOrqSrNLlRpQ\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685eb9e178e4e8-15232805','','','2025-06-27 15:34:28','2025-06-27 15:34:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43501',0,'cd-form-entry','',0),(43502,0,'2025-06-28 08:10:43','2025-06-28 08:10:43','{\"firstname\":\"James\",\"lastname\":\"Jerram\",\"email\":\"jamesrjerram@gmail.com\",\"contactnumber\":\"7311812321\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vuFOJq3_ur-uwy7v3mo9_PU&amp;gclid=Cj0KCQjwpf7CBhCfARIsANIETVoFKs3oV2ODk-9vkmkZ1ii8km2ESjOknZil6GcVJKzDheMkHqRq41caAjU7EALw_wcB\",\"recaptcha_token\":\"03AFcWeA5OrK5O4e4ixCMOp4i_NuFLS8IvZwDjgWl4ZOLc92_SFRt0Q4lbWH3leM7QlWztreKaY_Ax9NUB-hhAlQ0ICEbLkLHb7xt8_qs6oLEvf4IDayV55OLsDh9pBF4j0G8nI6ZlGz3xFI8dyHsjDJGVUxgBTKsXxCWAkYlZu1034r2wbZM9Yhd2ZbQoEkZ9EuekJu-SN9yESQqzTrarwF5njHe849bGp1okqiM_BUMwjon4sP7kd4yMSO6oypF6UKCI0fQbUp4k8cGikaTGWLd0m95puLH-pE_lgk1t6eNqGFW_m7BwzkaLq8hdj-VvjCHtZZ4Lrors2JaH7aKJA1tmEGnqgXZpeCPfDd-6UFk973tahc2HYdhDbkCJ3Z11hUu0nMW0TjIPEjP-X5kO4IqcpLZHrVhd2TXBBYySjpVRVq4t2T7r3aw7UIRC-b7gdpUXsx8oZ1oshDls8yxZFHwCMFvovF2PGsA56tD-4k_9jR14u8_at5esXH4zQ_CzpqBgQjSty6K1EkzLQCjZt_23IpA53tnVlOHm-Ho4s34apWxqoWKYHKTELsTakoOJaZsQafl0VMsxeaqcPY8WAP0x_xh7tlaDIeokmRSXd-v5E0Y1Lm0_zzs6apOwPvS_KHrQkhxE7-gvUgVpjvF49HutPqYlHjkh6SGpooVugNhnGt7hZ5q9WxqsxDX9cE69ZftFdU_zfGUu0dEbrz7FZiViCfh8Q3Q61F_EIcXBm6fYAaqEhGJ4Vy8-We5tc3ZT3p9heQ0fZUus8xhP7Mnrkxc3MRp6h3NDhCi-uXNR8yZ_Ol5M_5PBty7boWK_eM3IrkWR9ssnvMkcBLCiFffWhyKR3PnWGj6k66uX5lcq1k1FsSdHovwvy0YtRu7RV2L7gKeTnuCDr-7t1sN_PmqTy1it2wB8lgAsVT3k0iuNn6LHF6qbf09g78XUI-3MfuDu--Zrof_Ckljf0xbly5gGzzbFH43TBalQOg6HBtCfZi8cFxVEfYtt_2Xfk599Xx4TDMl8aaRZjGocbqsuaVfHR-sGbTR6AEUTItEb_3rNNW_W9zMXaaDLx_EPioxV42SrJON4RI1638q-nHhqpQ0886RoCUL_Zooefb_p1goFA3JQ_m4gWmsixx5nJ6rguXJF5KgLR9XM7B5mlcAMQW-71UalCf5RLe-KOgiuZ3Yl65AAfASeTP18k6ndqVtmlzXzEmd0RKnQhANe6PR8N3Upt4SDy_5Wp9ROHdMs0WAfJFwM0oKP3goggR-sGtZYByCrR0fW0_J5QE13vUR5ScFOlDIrZ_HH54OLU6FUAodYJfeaCDoOdkq8vwC2Yrr5i0oKw9sIsQEOLtB8B5nrFwgEOzmyw2br5tW3V28lO_uiqbbUcrSmRw3BxL5sIuPau9tAc77pmFTWN7pdKEy12aijl1ANs3wiIexxqbSdYoNmoSOarT5TGj80fC37xk8kD41tbTzp9-r4T0289mXlEKQ8ItVjd0jlbyU6y8qHTYUYGTqUIgWgHFImR9JRHg3c_9i0yxqnWca8EuM2w0tZcMTr3oavxlPZSwgQIKt1xUDkaMzVEhbXXw8_kfbKovgaRH7SiwxmV4VtmskGIYsJKkz63vyq8LzZ2wEKApbG1kORaNoIbVqBKQgI_TKU2twhoHgyegRzCgnxnbpufmrnhJYUFT48fM_4LzVlanjrIDNeheTScgdhwaJJbiewb3qJIEEnB8HOmyPC-Nd6OXOIxlEaDhzuVc6nACeQEllOEJFUbHLgdZ0ouxoBx5Q10IsuFb0IG7vAC-oJhwmyScMl6mn4zJq9FSCM92DEpIjbwEUzpGWeO3wh5pBcFyXlOhz_pRwwGfZR551UQ1swFsjy7PWGPKvEvfVWFcKHfer1Z5qmRVHfwUVk6lv7wgEixw91bP8xfhP8_oJ6LJgO3-55_mVAYXyrXRz5mic720lJGvWNeuZ4nM5ukWxPMUHCenjNx1bZlkgBpqrIVA0BfVgVNztwJoMfaffo291ymaq-UvBilP3aawp1PF-pMAb0rSzWOWHqptQoKdDM1XwJQadYRyx4Rzs1rTo6qio_4Kid1ziIyT-cazXGvYNmNg0sgWzAe2wYbGRgI8R2t5gFimZFfIoVSrtp416pgOhtQNblNKT0LijMfU17Z1W5fr6R8jJ67Q0EThubK1sqywO3\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685fa378559f16-67576478','','','2025-06-28 08:10:43','2025-06-28 08:10:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43502',0,'cd-form-entry','',0),(43503,0,'2025-06-28 13:28:43','2025-06-28 13:28:43','{\"firstname\":\"Liam\",\"lastname\":\"Fuller\",\"email\":\"liamryanfuller@gmail.com\",\"contactnumber\":\"07399910965\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vsZAcP7J-_dCN7WHGw06dJ3&amp;gclid=Cj0KCQjwpf7CBhCfARIsANIETVpZuxlKIK4ciWKxc-nJlO3fgdAuregGlXq-HxioWGBIYROCnP0St-MaAgBFEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4HNPCd0L0pFxtzEa55FJpdU7NJYJphCJ0Lxd9X_-fXaYY5WbkNZhzRLyF5CAgXCDyezXXv7vdg2XOIeqoPu7e2-EYhdDG1suw13FtN0OiwgizAU2g62pjL2mKs0MDsD4gAkA9y0npBH0m9qzx14Is38KLWmaJomxbInrlidIgaVb8YJAhY9lOPJdxHJvmGAI5J8EvmAAINS_zuWBW3sIg9cfkAzIOudTJbgNZD2EpiwRCho9fFAZ21GhzAfxF0sn84r-fmdrj9Shb9HEOp2Z-D2x_DXN618fdRcqD0TH0o1lF4D8Skz4TC0HbzgL25rDk3danZIGR5aTL9ZCXmMvsGqf6diEzugLDAeUnz5Vaw8KP_Un4f8bUeiRGMbk13OPARFFfj9GgFzPzuWvPpjQpXI5kFicuSmNDwOyOgFMO1MowA7oHobU5n_H0nTU4MZf2-WaqtvorhB01U4sZwYtNMnOg22Aylua8Csd_5T1MW63fmJ0g2pV54-wodiXQ_D9FOW83jvsmjWcPpwmMjB4RSyrHES-gA8zR1zJ9wgTlsjmm2LqK_2XyibYmWFzqa3cjtzWubPLUbFYxr8hcn_hHqdjZYL_-V3BFoD0di_3FF7q5i0IrYYf-za0WUO2uMpWDziovNekUrKFHJAJ9Jadc1DV5vkCXd4zvzl9C7Nxfl7hWM5v8zw6-IxEbKqRqUHf5FNatI12zGQRtC9YDmgdR7pc3eGju5mExNXaZW3e6GvGkMwGUtgXJtDgDCG4xoRG991c0ZDRghgt-PpeB8q8AA0wrkAvBxX100nskIbwNEm-mMFYbM4ZfnpYbvXOA82zFe1i5KyPqXqj2JvpQ8m1Z9sbsg3TfSvzaSTHYz5p_xnkbxc3UpP-q8175AMRew1IQib8u8fy48GhUI-5mPjbcgR5N759oCSWbFnZaRs9vBidkndG0hItyHcuJjJqKaP4MscNjxGhyyC8A3Lbse9Xp3uUUwZqwS8Qx9Rcqc3NJybT1vUgfnLc7wbDrd-WMQagjm686PWqfWxaBSn-fKd_RWjwUEaVDKARdskcd-oLb7IegNGG0H--0M9cWrABVpmuPQ8syq_BQOUucMpFwozbPO2GqbhtAEIMDtR418nGuSAlaijBnXl2485oKYFE8GqeI3i_myOeapR0-WBL6wDeCH4XhNJoZLvQg3yWvZz4jVdbKYmzAMin2TLyD6BjxPWwjHXunfH06JNuoHG2VXuBRHtuUvjsIX0Y-hROvIyf0FDrnAtP_fgCdbsqRE6Tsf-DbS3adYFXyRhrtFtgGt5wyNSL0c4h2a-WUGgfpYidp3WgVnCUY4PANSY5U1NJ5WjaJKMnSl9tGVq2-UpQwR2aju_WmEzy0p8eA_rlMQmlC1asXYoIfbdG3zPMW96tbnz6_BgmIi_aX6yCPrlQ7TxtJIcTSTq4Nk08yrrW5fFU5VbSbo83HPC3moNFGB7DjsHMjn3aJns9xQnJcru4QenKIK8r7Fv1sZ4K35-veW8x0GvkTAUGsGrqOZpU_GjVJmGURQQsD2r2VU4Z05TKVUbhlwuGr5RLZbYeO8IGjlemihIoNxIOsM1xQf_OO-o8LKN2P6cIKbZZh0jcAIjDa6F2kPyxLWEXKeKKkMY3qTRyixjtSxIPVvkCe0aYrjg4eQIbIjxa52d4uq1aCl7OONacx8FHgNIm2jcHUnQDDz3RgDfIL7d45jIu2BzQ8yBQIqzMQ_0qSbrfh1GmzmEF82p86aqzf0kXoFONkjJv4GmBkLaBhzIj6tCKjGdRqgFAOeMtRgwvucRJM_05LI6hRNWS3ZyiRdsoZ2ML-BR7pA07cIeETjxNET8o2aHffN_1tWAlYmGcLjCV1Rfr6CsgNumPeB_Nmixr9bupXDyKgYvkq-EuBO9cWvME2G0UND7rQra9jLsbVQWLrihrCJo5bAVzDTJyMNmYb6DqcUfV6kHGf75SMy0oNs0JxfJxG2QfcmzejdqJVlWmjFtvUjUsASIHi5ahsQVED75lGhMIHOgQO8CQl6u7_q5i0gO2MiOyF8-60z-_y2\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685fedfd45eaf8-35709152','','','2025-06-28 13:28:43','2025-06-28 13:28:43','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43503',0,'cd-form-entry','',0),(43504,0,'2025-06-28 14:15:20','2025-06-28 14:15:20','{\"firstname\":\"Andrew\",\"lastname\":\"Dadzie\",\"email\":\"akdadzie12@gmail.com\",\"contactnumber\":\"07851788415\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vuFOJq3_ur-uwy7v3mo9_PU&amp;gclid=Cj0KCQjwpf7CBhCfARIsANIETVolKTsc7ZUlQVkJhIfqsj5cUU0sls7ax2NNmiT2Pg5kESNQvcn6fUkaAu-tEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5N94vhM4LqDCIhdlvWKXKu2vMYtl5ezRA7y064Prva4KqgrpNK1IPF73iml4GiYgYmWH2RUzdXXFIGvY-GMLFrr_i_hN5O9whnkKAjC0mVhVGRAvf5Rk75_HvyB_hpGysPbVocJafN9oVOI5Rl6ZRpd9R93Z7GZgLNDy-bMySGDw3132bWpxgyDXtQDjb83lKju_dMPww9u11W_byncDXgIGFpCxD2gMUcGYg1Tz4l0MLjsdGurjYr3K_bHyDw90hMl8uGeVS5dSO7ROOjuNc9V-bSAutwiZBkv4TIjBk_-vcP44NHDPCbD-5P1PNAp_L02l0gXU5Q1FqQ96H9ckVRLhatzuPD3olL3gu6muBc_BLWM14iDQqF_a47UnxQV9hVYR4l8ZBKLdf_bajb2R4VGTcsp3awRj3S06aaPgDEbD_0ZTo_aFxMLmtWDZ96bub2tGzfP_R0q8MjjEwWpE0asgzU9R2nCnmFxavQZScZHytDuBQW-1R_i_GcI-WzkqxPiC0dRCFSuHcxGdWEVvhgBQP5hTrjY8xNz7SeJWzDE9k53WKPFr7rUasWPiwbHk0hJ2Pj_7ESHrCYpyB-_LvKKhvfofdXJliUGu3Z9qmBXo9LvhbMkp2-DrPKWSugrd36HF56ZBxzLDyiSLb_m6Po2hL566zSPpHGgWWb9X0JrObjl99VQcrNWVQkx8-B1aigmieoU2YxQjbcNR3LTtF12imAAKlfTtYWnb0m3JfBZLoEYWmzlix-8w39cgLprMq1bzgjUJfT0_2iQDkMhp8_ejgWqUqAu-p02k9d8bSmE-RugyXKsPb2vQpqr93SD1jVZoV8kA4BtROWSRvVgcAQgPOPdkQCyMS9gDRA5SgkWMV_e5bNbXQ3GzG0tPlhrz5mYHZw2ofjGsTIzECWuewoBuoH2h84P-IWVuAgSRm1NeBq4lbrQJKKuZTKXJZeeqjqVRLjmi7CvASQNNDFjrNaxXeN4yTAHZwaNJklbArdil3cmiF9EieKEFoUbUTiktV6AQkolPW50BqBC5i0GxnXHSA0vsu9NLfgmUgOEr1zzW9cvrXI_QGAEO3rJt8M_pPK3FVAv_dnjRljGAgjWX1_YKjUqF__yrWILN_xBumP6EUlu3jqFS35qdnJ2nYCHbtneVfuIKUCh5jiIT4KbMJmKeV7Ru-Z-_x1MrC3tU1kY1tjvpzjGR16LCIOqFNBuxJDwTjz6wMigY-pp3PVODxWt1oMcflYunUkxtMmhyC4udaHFO0H6N274I3vGGzs8Vcq8le-xpC6b26bDAYRdmBtnCmlxGc8MEvTE2s2WEQu6EzAOkI3wWueDxt4iONUIjyInFIi6-lVW87evDLsCxlMjkdwjQUmyJyMO2SWFbcLTqsvu-rZ6ej8LgdR_-L9qt5MB3JjgjdQVvN6F8DBrJvwbvf8dxGafwBJv22qjG5jbvtuUw8CygPjImB4x1OK0nRd-CgqSHWoV40LIL2uk5J9xVgR5AtLXwDP3HKU8UqXKvZnAvaqZLaVQTyRw8BWQ3obD6ZwJakTmMbiMJw5YHavgO2NbPazA3fil5EGyhRfdoHmq4a6eNjb-BimxYOTJpMvsI1CUamB1M-I2hIwvd3SdkWjM1n8eIliNw7tal6_OKJ-kfLLOVWEqIHJe_NVQUsu_V0gaBZMsRzy8oCx6hR-9LARbGE50WlafmgRXkLNCaF03r2TceEEOhqlMrmZ2OyGcMiW8qm0HcZ61J6KyNnwyXXLYhyXGgl8YootlIj1i-FoOUO5NTj3lNjATcCzzPhTaYMh_-szXchC8MqSiz1GegdW51t8QXCmxxEX-0G4blZYTrbB0ks7Ygm8ciLTM1HoTCrqpxyzuKgzcEEV7jnR0eVXt9Luk-FTuX2ENnk3StcKQjH5UwGnVZCHHGdn2YxrM7-2Xe35cZqFKCie0JgVhr295iCTle5mdrPY3c0YDPYk7Moap9fnGwFJ7_U12sx9ZdkjCNwm30WalLuolteO_k2pgcgqdI3pOYd_ous-8vEg7xb6lFAtSM6goaQOHVBPMyOqYO1rkbcBhLH-NvfwYO0bSIh6nc4G_Wz66hH5SrP7qx20V3Jo_b4kkCC92J6xiJVfX1v9-7qQZPZ178cL4gRh7KNHc4f4pVlNIEmeKovzw_VjUGRebUqdMxqWWKL2rghLF5an-7zMri3oI4-9q-aZ8OMF7AqkXBbIIX0FQa7f6_x2JVenOSlSj_-DKzR2gI6ROrJV07qAGmyA6jjnD5vzlswg2kY6MNtgJFcXOdS8wRn3FIlUY9EfKwRcO1Z5WQxPqqIYp91-mN0kptcm-KU9pnlr_ApteAuv9hRffFUWinlPEuZqHZJG_kVZa7DN44j3LzDkBJgKTQ4Uv1pzxWU4MlMAWrlewgemtS9gYPQUqXU\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-685ff8eb16bc99-89589243','','','2025-06-28 14:15:20','2025-06-28 14:15:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43504',0,'cd-form-entry','',0),(43505,0,'2025-06-28 20:26:00','0000-00-00 00:00:00','{\"firstname\":\"Adam\",\"lastname\":\"John\",\"email\":\"adamcjohn79@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vuFOJq3_ur-uwy7v3mo9_PU&amp;gclid=EAIaIQobChMIyLqrpveUjgMVCZJQBh1RJwF6EAAYAiAAEgIwpvD_BwE\",\"recaptcha_token\":\"03AFcWeA4KIz73Jll8bcuNQ40GV72SypeGU_FE-dm5EXmZPfG9BJhwTf_0eQ0x3mdmiUOtzKmN41gD8BAJw9EAVJfSdnHy1EvnhM7EjZ1gG6lDrsKqfk-9CwE6mRtm8x8UXI_8hFzRVFkV7x8rBVMLDy_kgpVzyqjyQ9GMYGiJZELvYNXmxCPUcq47lSpQE4Qv35zLok8NJbfO-LYmHkeiqk_cOui7XFIY-mjbdYMYRyTnbiCeAmKcPzXmzUBIKuEbSP0_KK_ishneShhsFvreh_ez2T46kFlKZ4oSZ4Z10sxXGLPN5cMIr4bmIRkQSzsRA97o8e9k0q3qcN_TeGwkR4ghDrz-pbGEzCm6HlmbUoR5N51h_ahbRZ14UMUjOfX9I3vp00uBlJUEYrVd2vLCq-DJVNCf5-u5HvdzIiGzHsAHs-mEHwzrB1gganb3wflmT-q6F0vgKhQIVbA3sH2HsQD8lhQNGAWVk4m2JiMq1CdA7ODZS948XAEl03CIDheVoUoPRlIlaMLD80x8iUDBVjhAMcCsrraI5YCBztjwZlDZiKZZyV-o5-M6cjow5C16qkwfSxRCtYyJJhDd-AWHzcLm7qt3OYofJ3PgYby7tR8J9vFsmWI41vBCa-oC7G8Ypx6DJ3OC1RkiM-k8APqijJughoCHjdI25iPKabwhP51-R9W1YA1g1RyHHj8bIf5wU3ss6gy9kVRrN8vciqwiZofoA4Q8usvBMCnHfR_K0crGRgjwWbWUCdGUHGplLKWiL93VRQgsR70JoSjjxFx1i9Q-OjP92NsA-sgRVkU0deza09JnPG9-hEdw2dRSxcWr_rGhKQNqke_a1hnEFSmobgTXhGxglMnCjrYkGaJROw56XSpMbBoIgAAqHo6D7BANdXia7TuZBP7VfLGZdRJ074pS_QQPz7H_pozSHpP7srpIIWyHvc0QHF_6D0BfvzYRNpTKReU5b23P96afyOrVRcGoQcIn23Chat-TubaOY6SRUt50QdSHdTsEtJD7cBKGw2Izoc2BSIvmPl4E-l5ig72-6y2BngkTdjrLWydUsWd8djzH3E7oTSM_cUmXspHejv0vSeXY5FLhlB7tWRnwwD_dmR-ezmknrp4xnKbFBC-ddyYvf37VYG_j6hZa4056bligqcDrxn3AgsDOvr-oapB308JKxVheWIDTR355tpKxxnpbj6OF811eHOpneS4-2M067LPVQWGTOsDHV6h8CtpyXXsDum_6mdR9j-tdY2htBCB3GBUKRCxSCKb_pj4ws89bEWj81zTKx6k21vJNVF-8oBHI9excDLXdFfpRVwGy1j8_guJewbtqv09CsKp-kY6soSTu6gGUfZP9HbhR8p_sZBdjCYgQN1xeFS995o7AV1aS_qrhtanGC1g_9FtKCIX4aVjZ2gq7du8uagapPZRWMHdiirBLvRiuc6PMao0fUE2_a7jtOJfpml6RaNoZ_nnNMx8vVZJAVIyfE_P7RfiTNIJYs2BkENRz9G0mz0gn_g2qCTZxr9EcQGIjnbwGBcD8W3qOgFKOgS-cv1FhsYZdXvC07nMLaEiy_EupHyJWiSXt0rdXVeXV3behbsiRSDXMU0LIt2VQT9LwrC0sZPZd9FCf3fre40CfJu8W-GxGFN3XZor7GYKklx52OTbiAmFC_Q-N8-9TQClR3eMQW-9EWjRaWy4Em7N5FEQoqy9W2DOmvuZ_EiIgKE52v3OJqqCCQZ3ZtRu5cW1CFoSxUvoTs4_H7tzg3S2H4amnOTyqJMBPuhULJUv6089pWVyUkuO9yiZTFhIAe_rY8kNnlg5l3Kz96rHdd0I8T27eC8fDEqKohsjOb-ANbbKJUnZCFK4Y5DEK-R2r-DGbjQYq_nQ87u7u_n9BiIs4s--eeCAYcpWFJgzDHd9YVqQ3U3Bu6_5z_WrIcN1ynUYJF5n0OpQxJ9vqR278EaUZ8_NNGk9rOKa-y4UqSgCJpUpxtAPQtrr37P7SWS5YP3ysAyi1R5SgXPJBjxT5soPULMtEsG-y9vDcKBou01JrRCdJe33f0ge4S_QvCOP2WylvdmIfI6obHHgkkxqSe7JcDopEFHvUmgoUHvuJPYY\",\"recaptcha_score\":0.1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68604fc8974704-63400513','','','2025-06-28 20:26:00','2025-06-28 20:26:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43505',0,'cd-form-entry','',0),(43506,0,'2025-06-29 10:14:06','2025-06-29 10:14:06','{\"firstname\":\"Melanie\",\"lastname\":\"Cornes\",\"email\":\"melaniecornes@rocketmail.com\",\"contactnumber\":\"07789333380\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwyIPDBhDBARIsAHJyyVhlC26UqPvhz-Lb97xXuXBxWi7FulyqlCLJkzqtX4ItT59MFb-FNiIaAokWEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4v64Cp5z6pw2s18Gr0uyMLVKm9N4dZl16OH_M0lKgXtU9Vtaijq1djqW-agMFvvMVK1jQbvv2a2SCNGPMK1RRdKSeuvnFFwn0FV_9a5Clr0pU_nRJecBA1C2Im0iRm0KKi-z36z6NWKqoFoaEe8h-8zqJqbdcgYZZCLSr7cA0OjgDoquDLfGOFiKLQ3rd50SGdRs2LEKeTndEDwTZiaYnF690pCx4jjF3gqOYdv4pKCJs_YuY9spQbl4w9TlKBC6jv6TQxBLOvTLQQNsxjRXiq4tFUDvvISCxaZauZOUm2L36_b1wTVo47t-tD2uE_5n1n-kGBNxgWTLG4uGmEV-2o9VUN0khsybzsU-p63QG_d3c4vLfSgY27Lu3jKh9yF5YPpiarf0cq5SSchSnuUrac-RVsNsaoWewE4L4mQjPnDrTHt1P4BR-9XyDE4E8K8l3j20ucsBLt3t6JyxS-_5UF8jJaYIYsUqvHT8aLencHr9tto9qqSXLFUkqsomQs0MS7oR4XM9-s2RtgGpZlbz6_f_cPHU1QaNOZyB9T3uyETELtWs75Wx3bTboW71XWX4v2SQt6qfuUlOzkNaHMlEV3NAatRbYxC_DT4UDGiPKAOMa8ARGbTXWF2QqtUw2zkFazBC8-WdKu_9kVXXXmdL2a-2n2awTpVTF838w9ZgYbCXhQJNtWsIGxWD_2eWI5hCkp3mOvVftEluCSTYntSqL0wvnhdpeCv2pqxadCMxr4SfjfR5dNv64FMUw6Whlz0PVpbFcXAzgqnoGaTO539plP2J-D6eqMDIVDnmaNwGLieNs3i33aCfmC9gaI_QIwnym-AfWSfVPEq7wWPJGOfvVn6Llb984b859Mord7ZHLAOr6KtpLzWlm5C61z890_8SajElrlvVFxA4f6ITNy7_9aM0RdL_QUpZQu5FoK3kXgbzhN5L3HyH3V5T78OKihBxodYZNAUkP37VxPHQwgLL_qCKEU4TzaXS43pgHVUkaPhlp0pAzF0FNc_Jdo3UP-KZtzRxkC4xois_n5WhNYkfiweyiVxYhGMKs9xwjNz-a1hIlDS5ufxQ5B_xhi_wIOiVNfto0uhcwRrhMOwMYHovyq8uQAMJW4ymySYl2Lp3MaM6J4oP0ksmMQvr_xTfKGtvzWcU-QYx1PZmp7WosXl28s6HhsDaWkrSmcNfIRxej6EG5FfzPp9tF96vQGRshLQ4RK9GvCW3HWmY1KGeV0Brr04z_n-Romc6kvuqW6_7AzjJPYPxikfIyt1EjFcddYe1RwVCcPm6zmnuCXsNseNr4eHYBNxfjcbKc2F0Ob7aP65oW5KIc_lXR79DVE6Reeynvi0CVJ4mGEEnUeouPZp99FgtmiRON2VWynT4DC_pm3VEiUUi88rSUp2sep13fOCMsMEF51Z7ZXtcGbCPYVQp59z8agRSc3oPoNXuNSBayJznyRaWGQf6g3BgXbdAZpXfIq7W1DlQYlt3AJyZgQRwmImncXb_DUr2jZdUtFeVuHbNCKpCFmDuxDIM8GNA8PCpPDDmuqzpt4fqlS5KCtuB6e7EOJ4He8XLfzuB-mwePKQXHcSBxfCL7KHE68CxFbw-z1UntJGwEzSk6vyU-qiHoseSoFpTk_jyJbrikZdwQFHhfPSL0l2LMCLshTGAZ_TldyMSKBsFF3o2St9SG_HjlI_8UsdSeHvomA8K_l7YXmCLzmA5UpYPvseQ58oIf7ZXkZW8Ipbi8RzHZAOElSsUhuxlKDjv2a2eiRQDZH6uJvUAoogW3Rwp_4GTQ9r9nNqS_vJmnrEPny54p8qlvBfJeDsZr4k1wehkTkGajgLINxTi_Ijl5n47Tq-Ed7GmBYA_aH8rqV1PL1koynLrYtBBOW5oMv5pJ2AQksIBnmT5PobzyDIqJKJVPmZB0YP1sl0oedJyxcKr7etQXoFZTIlwcutSOQBxWN8p-85k99OVfpf0hloXHvCYCa-WU1mDJnfktfBLOSdkISoc1aLsLYQ9T8QfqBvm6oIhM1izBenCMnYsTxe7r-pQipwXKHm6NUBN75E3IRqFpbdbH4JKrO3LIBJDJ1iB12y7id2_lT94HiLNJgZyfWqeqC3iWochHjR9v3H0qnenXdMLttVJzX4m6NGljz3UW3W7SnHEYyAAS-Upx2t_K4JzBFR7-jfx4ZVLjrAs_S2ybErqokt3jysRSAn6lQGr_JWW44PvwAGeFC_DfxBzli3zb21eXCHurzeYFQdx1k8wlo_lknE6vqJ2FHJfQ4LbI3xBhfou_bWtQhfODWhVnyqyKYMB4CW9gKgeUldZZ6KevLNj6eBFDQfCewCqwJqA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-686111c334c234-33593860','','','2025-06-29 10:14:06','2025-06-29 10:14:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43506',0,'cd-form-entry','',0),(43507,0,'2025-06-29 12:13:00','0000-00-00 00:00:00','{\"firstname\":\"Emma\",\"lastname\":\"Bray\",\"email\":\"emma.bray.24@um.edu.mt\",\"contactnumber\":\"\",\"pageid\":\"39245\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7suOm1MDfWn9GsXZ8JY_A4W41B-dATF2rU7pszOP9Uldf_Y_3K4235hfJQJNRZCov7PeefZ6Ae0yTlb0nn0xHllJvapViAoHqAiez-E7jqRkPQKaaTctwwJJJ8AbPO5hmvZg00SCzUobuAnu1mvsV7VI8WKr5g550NNGAxf8685EFIXp0XRcvZlBJzIPXC2AGUMu8fclTmdyF4hcpguQBEFZDQMktYp1JicAIGnaNCkF0B_kMY22eVnpzvmL9RlX4WRU21TwFpILaKk7RLbrBas75EeAZGj_PphujkNNT5O3mhQd6XaUqz-c9RvUl-pNUyu3C_9AqGZzyN2R9SBZKqcJg1v2r_hlWlg3cSrv0cZ5V2v_aygPhw4n9iOg3ypdhldC-U1ne9lXrZb7GgOJhFaYWL80CbNpf7wq-ZGQP0dEcWJdMdJJaour6ehA_WmSkzPtkb5fE4uoW6s_Ee4zm2z7YGECcPTVki8n9ZCDFTlxdHhgWdukk2Jy22WEZaNm5E6JAMLIy7_zwmz7b8yEoe5EzMV_7GJ_bl2lTTCZZ5qVuHWLJnpXmtPdHffqYU9u7b4_-FItLtiwIoicSzZbcXJvwSgVhEYP1tia_ThaU2axe2tF8KYsl43Z2pZWhrsvbE2pnzt4mZ8Bt6b2vvMIp7_8ERcxiZGlj_ItrC8zQJNK7o7EdGyc7BWHS36_dYlgWrHCu6OBR4zGYPjxICbmwkkx7stE1PJQR0ZcBO5bGr4kQQ57mq4wv9l8AK9rT53QEjTfvKFE3B_VhNUkha92V2CohDtTHh1UCduRmHgxojDzl_SEyvmTzZT69VIBe-jBQo6dfz6-rZeR0nzMoEIN3XrV7Xi82yt2Hy4SQY3LC-2B_wMpSUZR693tlYX_lL2EEZy4MSFoAh2zR6CFKq5_XmmsNTqdZDeQ9cRPkiNirh6yrghdS5DVrgcNn9p_PyovXRXaANuw1SgYAZL54UnIzHRP2ba49aF3kWMRLzqqG2cCYyZoFWWzDmBsoyK1GQqI-wpcpMIjvb0F45DRpCQ0CiBNp8DsgSngS2w0RbEEoH8Neq4CM7FCelDMyCL9RDxrtdf9nmovKg__PNzZl3t4rx0X4az9ReVNm77FD8wtnNtxkcWzkWHl0xMe7cLCQ6Hmr9ep_omG3hRJhZ45j77wJdsRkiTLl-gRP14yzcg2S49ccLhynnzbkHDgbUrbe2iML3yziijn2Btsgw2YwyphXG5EgUr94Okn4pgFXwyLMCFZiBgGLa0ck4vvkCTic9XBDHp6Ea_VbLJ3e8rNW1oBl6b_YJrYFcn3Cq3I45Ql8t1qtSnWRSN1FDPM61FktY1h7TJmAb71Xi4_3f76a-PVfJcmm-FLyvMx6VU0foiBJSQFusrdZEzdS0575vDiX3JMEBCB8iZ0MlSm8qbDcn0FG7f3aCphWWgOiitGtGu7i0cv6aQ1LBlr7PRwjXdvqjlIoFPlROIPqPmnSsmOypfdl8kDgn91lf82TInijxtDpHuqR7foyIpj_1Ifm0A-J96ye5l3L6pQCcbkKJaoJ_gUXxw_LdNk5csI4TE968c2k86g70Bff8Oj6DG3pesShwTRRHhgvVJGNXPWP_zhQph1dK-L-PTiREWn3Wqy6TPcjRpc4kZDO-BBhDtvy0mW7QtacY7ENY0Pg_vpl2elm0nKuwmThXWyMZCUx4UEpZ57P9PSDuYjUjU-hJfPk7sOTPo-vYSufa7xIrCcsKKXJ-2kfr9WV-uNPwac5mAOufrBRPZsQgns0FMIhxO5pWc_Og07HpmCJhcTgw7Vkzt6OP6o4zduU5xP-MbVPviGN58lFZGW1mLNByg5RXoNgvunSARBbcubUnmVQwNzvLgb1_t41NgCXQ2__eM56kk2xGJrAfe8ER_9HlhYvUMh-NOgsOzYGSvVE9dJBoTMr_5PgVZXOVtJFy3b0XG7Sjck-Pqy0hyKHVIuq_yEiaAeNtTQXPRL8LGTHo5ClIM94AQlujqdqfNOgqFJAbfGW89QoEjc_oTcOiY8sgCFKeuD7EWV2KRCqJISkx0U0KOQ8tpJjnwk14POaLPHlx-TBy7xu2rgHubnThKXe1g1lZ-8J06weQYSgQw_NqY7ZNP2VMNFLwPbrduO92CvnIcvm6JNsHiTea4laMCPbT74gEfBbq7JUvUSyivzGfwSl_cn8qHaFTxi4FKbb6LpTDAe04LhQQrLY-yfISLPVrzyHJYaIk5Ow0REivrbpFDYsKz9VUhXTt2m8rLHn26Ik2HlFszZVA70VWTOT60IliGKpTVgoM1cTln62BOiiiH7lDEYAmXe3vZpSghqDym02OCrsBAM8IuNuhT2-5SPDQOfA0yHokfQGJf2_vlt6eUf397ZHVlUP3fS-i9annEbFAn6R_FM9kHW2kVTxyJVU\",\"recaptcha_score\":0.6,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68612db45dbef7-39059636','','','2025-06-29 12:13:00','2025-06-29 12:13:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43507',0,'cd-form-entry','',0),(43508,0,'2025-06-29 12:13:23','0000-00-00 00:00:00','{\"firstname\":\"Emma\",\"lastname\":\"Bray\",\"email\":\"emmabray@ymail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4fM2oP40oD893B5-TFMGrII9YquIJ4FaE3wYIF1dcHOvVjL7bpAOV84j2yomTShdRHVGrWdEkY27Wlyq4bmMVcgELOmsqJOvUwRMJNUXusefw1BZr5aa-QEgLa-Acg8stRwnyIBZxi_za9Bi3anygND8q21VhYJ3Mz8JjAyNQFDi9PoZKSPOJLLcDvmbDd9P_7RlGUm9SEUuul4VPyTSr0rTVaEwtGl0vjhElhBHVHpui_5WJJChIO4MbnYId1K02GXXsNPTGvCkeBYpsLZzOuzov3YcKKcdmR5uCFQKWHxsMdwpkQLIs966l2825hmvfbR20JBvvF1HhMlr5AVATVRjCTM7le8VPpR_ldQUym6c3TlhNaQx0v-Fkm2F4F3ONIZLIQw8yTQ8FMOhukaiJHyVZVUba_ZjbuqlIgKrubM9nID-A1N-5OTW9MbRcrGqFTwxxUWW9OVv-zMgLZujm0JBwjcmJrHvYneFM_rBd786vZ8x8cJBuVNrrSe45L2q19d3675lYc12ErZ7-QDo5MKXzsj4lK-9YapOWkY9Vt2qsVj9cypBhVKkkj8LT2iCo2s3uwbPlm9mFCtegspWvYnyqkneT7aaPaY98b_fUPwp4M3jJ9T7gBAY7_2ztS0tLkGJ_EtPDwhFT8EP07Af3DuUnOaD2Tl3fMbKdO-EyJpgpry25FB5-LK_uzIDkX1tAR_OY_RXOqf7djofBWAIjRoYhq-g6Ps_fFoCwe4uKJ8nuwAAHtGTMqZcG_GQ2jgM6Su34lP6LQZFowjzp-q8apdeqibxIN6heIBn9w8--lUw9HXKKURFYQli_MHYIzlgLttjl-p2dFjzt9fACJ1ZiEII3UNMFjJlfyBZWEtoeJnDduxjbjyR_Syd_CNhrLr-ibjOJSzr30ts24kN_pzp1hHxI8rAveXJY-XDF-Kgu_h-gTPQq58lycy8r6zw4s1w6MjIE8vTbo3GSlJJ6c-srNKCPHa_E6RWa78zg7s1JJj-7kKXb_HyFb7w1f9x4GedmFjP99KeXWLnsLJfjOUtqzGIVVBvW4XG-tZn_SNaa2Z5wLR7LNjgqXlnQbkUwXP7X-9qgHigyKEm7SvBH6AuEDdwdXl8a6-utQpJVDLZyVa8PIgbaxVNISxdQyreQ8UukDPVTtuDPifwWirC4WuqPJDt-Q51O36fiW7m0hzADXR8ZJXStQr15ZlkHLWGKLKNclvkbE_GNDm33-iyLGVC9ahZgV7BSPKo7DIf6xTZ3EjR-Fh5h7-uJPMbOUctubBknbJzmYVUgKk4PjbkVASj8FbGoHFNGdbDDLJQnrf-wRrshBzc6mBFyHuJt7Cn99zlTi8pCn6DkdnPznCvPOJokVeTuYuIdTZY2-PkMsZhEYdtqiJL03i1pmBmnlLWfRE43SDB0bMjPU6IswdsMismBU_No_NGThuQj13e_eI0WiIB_MQgnv3VbZbco7PQfP6SoHB03v2bVNPOZV6u3MjAzLguC8vIOvJkJZAOiJcP0EBD2Lt4m3K9RI1ccARsvm1xDRvodP7ZPsqFg2hR49_rCKCD5LMOi2PWZKmGnJfO8dkamdE7bDphIRr_CcMqXagdJIUUP2rYCA1JMsScEcN7q1lXS15-jiUf3C91hg-YTSbsplJJrye-3CVVfA2zCGJ50T6IXZo3mw470zj-bUFS9MA92Z0nAoEf0he7RJdFQATzOynptsAWb0wTz8L0Ilg2tSBTjS81iWg_gAZFSPO3KTK0IBG9Om6PpfzHszOGDUNXW1HwRzBxHyTnYwqyOo7cM9E9zBcIkBROezabV82HoPBeHyPHI5IxHp2vTmLqtp1GIj1gSg9hxGGvw6RsFJfbTVJWDiYHQhOELTwzOUOoMU8OE-zBtRMyFd2mFuL0S57cud3t2J1Rl8I3ID6MfpFIvjeQ9iXlMDTPTQBMWu1gr-2HNGuWQBmgVrweZ7BQS8RrJLYDXxi73uG2s7DD8DPsXPpAKiCG8AYL6S3zMsea8Pc-FWmj4BaZCugZ8FZXu5i9X7A8uFVT1OTf-bkSwAaKlQNKgqhZCRGW9TGTgOzjK4Lihv3PDcw8GI7AGeXkTZgPUWDUkST5w5yzlu8Af-JJoNZZs-iw0KKMsMEq_icYKV0261AnG58ffGYda0GFhwgGv3GdYTSdQM6c0vDCWYc3JUqM0TFhymy6Mthucbp8tt-L4snW7EC-6hDsXQYl9GjoO6zXCOEHFbMw_F5U3tpJ9HEsq9f3bFay7YSldGfEiTXRo17ZzunrHjqXVgW8_Mkfah_DYvQbQ_vDPDoMpMlI_ElQ-7JQA_3XewLpVNZnDuS5YJ7PLyvo99q5eKf4C7bTqTEEMS9rzI0afjRYU82OCePlkiJPbK74TooCRdKOMg3Mqk0R-Qavv76L9J_S3i_Es_LCw\",\"recaptcha_score\":0.2,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68612de310af53-24117199','','','2025-06-29 12:13:23','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43508',0,'cd-form-entry','',0),(43509,0,'2025-06-29 12:51:00','2025-06-29 12:51:00','{\"firstname\":\"Zoe\",\"lastname\":\"Chapman\",\"email\":\"zchapman@hotmail.co.uk\",\"contactnumber\":\"07415456777\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjwyIPDBhDBARIsAHJyyVjPTFBMJrlQPLa52OlqkiSUGbheQPWFirVKZrxgWDQzIDXV3grwPikaAjS9EALw_wcB\",\"recaptcha_token\":\"03AFcWeA41EGUwSySLfMxMhpaC0_umlNp4NI7r4fuTyOJgkfHJIkQ_pcBVs2gXW9N8-hxP3MuPiyTh-AJCsKARE-w12HtXytxryffR7dB5cSAy_KEAXKuh8A50BUNmiMa3I5RFr7HGporPo7x-kuE64VJxnCZYvH3NyRlJDRYv2IRGwj3pcFPu-92J8vDXEXvwTqX2ZstTWQ987JPBLlDAXoE2RC5OeCf2ZXXWakaQTFzeiOBgSIOccWwslcCGpGui_cXUC0pC8-SpAOO8c1aJpYrrAYmKtJ_ZbF5ea9nFnKq0mv8TF_sB-ttFK6MGDtksPWjeVewvV7ZDf_7RlDgKQPnXvPExZM5j9spGfV5aO_0RWn8Wr8e7HJDtsZjcxadajFbMv95eRKYJ7jyIEQOLlXLQ_YuMb42SternYQ6eEE233doFnIPJWykv8Bn7sJbwbMcABa928cYdVKyc_-Eg5grHSXIzCCCcRqXcrhI180ojSq2reVF20jE3rsD5ZhbPSi47h0Ih7lUEjtUciPmmfiZFd7NgJ_wgPeqmn1AKpZbURD-lmn4rW6EDaiUmd1bZGszjb9tTWjYAtAI2yXNudypWtAswurBQWcMM8aQQbpGMWmmS5XDyoOu3U5c9sFBkyGJEE-3q-9RjRYraRzhp-E66oxOOHiyvglb3xdfxrxYMrhUWBl2soDZAlrrYi8cYC90ae81rsePFqcAFIkcXqu-1W3656g3-tiy2vz8otYzhSecjBWiIJj3-vrGtqCploPqjsiXBW5wktShYJBzwUc3mhvToEGvDMJcts238yqtiTLsQeCGyqsESxMMdY0YXl4rEtYEp_rPfVdgPdtTcjCOuY4IOBPHLgwWCrCLixn-esbjgiw1kpPf5AuZmxi79z1a94PJX5MdmQHKTl4ftiE2TAmgGVtysdYlgAVoncqxfEYb4gL6IeSfCJAaDdsJENr1qFUH0JXgXOwqowcJBTYPVZwCZhNTXPdSznvRwyYY1uVDbrmlTKGQucE3qVOXJM5acM-8qaXNsI3HucPqjb6DF_ZP9596TpwOSSfuo6WsaZj1kqNDbgrtdOI8TwuoG5Sa6lRLshE5c-Qc-DHTCszm6RCwl_QaBKqeD7n9fdRWsjHYg_1bjX7crgqROW_VQ5R3fP52k54ETQMt8YNtL4Nvko8HROTUIgu1JR2vhzblib96og60A_NfObY4i-mOvzfy1VI4Z0EeG3No0JIzMUZO6E9eCAjsTBcbwSIQn_honZsr65JxdWRdpk64o8cZG-nromVDYMgBeaWqlbUIpfpH3Jqav03doQC5umxxIVVzUkDgofaUGbAJULK_jBxVS_kkG2QuZbxpVNVNiBCpFvzUTBJa1MX1BNspFseo3xC4LMzudCxmhoxNxsv7r1iM-GN2A16ZjNvNIS70GTTnPPDroqE_MzwACOXExKvwqlZPUMbbiOFR2sa7kLXlGyuoycA0vROpDfz4uEBIoJz0Vy0HeiOoMPlaweicNTZg2dMEi0fSMPM7UYe2Refl6BI8MAno1wBPTWkqc-PY8FZFmotYU6kpg6IFBVpjCVs4EP0DGoDw9cF-c4LO-GGrVVn71Ojue0zjjyVoxPqDiSPWdAmOD46uSeuWnTbxyUgCkOQCn9IA996671aDrjSjUnIQeCKS2_xy5LbLJtlb8gFDTjGYQblg6Y2sQmhMBeBNIXdWfveEg-z9Lk3UwBA0lX8P0V6kgUN-cfg_Aah1Tv38gzxi942TMYS3LaLeeIEdhavRRPIpCs4Px3rlwjI2wJ1bCIJu3Nv1Tj1sVM22EAgcMAgSbpZrWwBoBEjYOcGAEBAY22757O3aej0lE7pidugxJU17gjgMtgwZ8kVAnGJXitJWfalpmnInE1LXDnfOsYNxu3WK_a0ZVHOtYNSa7UTGGD3fvIswh2nH_fPWGG9AbevCQrvDbgHJziXfFh7gDqmxSKTIQDAhleAPA4Mn9em1059bhqwftRFcxEEmFxE2TP59FEbqnYO_5dS7WKN2j-SDBwzFatFpbSARermiaKWnjbBaiGQr7sEyfXrQEZ9ypJeOSKXLA1v0JwHMkFmwb9IKG6f3ae1k2mTMbIRdTQVIJpZot5w-EtmLsGA_cOtZnzUTL5gEpgG0m6htJVY4ibbPFCuueDM_ht7yOz7JwQlbQlXbAM_Yk9MtzUHr0mezulBPG_Wb00Y1Q8oTD356dx2QX7KNGmX7CcUiYieLyHL0zx1jaGouPB3tVia56Iq0F5B3iPgDBVk5ZDsQe0jd-b1-lH8GAUE5lbJ7cErwKQ-hlgWQVs447r4hw9JjFfhKIVs-tsYMdibfBKwVq5-BHTCJNqH-CrLDqFqY1s9PLNL7GY1pZGnq0MJ1lfJ9L4_S6uzdnhaSL7wUD4_5AJYDaMLwm0lNhMOktoML0cx78Ibjfi5A_R0taYasutNPgTtTHYU4Azx64VtXTnw\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68613687afc156-45928027','','','2025-06-29 12:51:00','2025-06-29 12:51:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43509',0,'cd-form-entry','',0),(43510,0,'2025-06-30 04:11:47','2025-06-30 04:11:47','{\"firstname\":\"Pat\",\"lastname\":\"Cheong\",\"email\":\"patrixiacheong@gmail.com\",\"contactnumber\":\"94562548\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/tom-waldron/\",\"recaptcha_token\":\"03AFcWeA6UGh7NPrcqD50SLwVQ_y79KkN9J_t_TdLQnbh5t8aY3AMC675eldwtL4jbHi7K8sosBszaznilc2nKKjAji3mb4bNVSuJW3OGb6kT2U7zbNyXhROLRfG2QZ4pjU61trvL7CDAJV4cqHHD9FxuxSaFEWpTp4CCzuamJNdbcoRh1gDwtpBk89tmFYr4nBgOH9_aSgfhkFwqA_RzM0ePwqvQi7kD1OS2NTMBCb6T8AgqaVUBZ60wRHPGj5Qp4R1CqV3J8hrpzFMfE6gW6Wa6kRLisNAkZFP9B2VxsJgf6Djxpmn24OmRVFNmdDUQbP7nDAtIE7d2dkp34FL1Agswo9Mu-nUgcSnchCDehzXIcIiZWvDWyI7F4fvQfSOECQQpCI-PuGwZHRhptfC5mTsSWr6xH92KPj3IA65zxo9m3CKbKYuUb7tTxHDVQ3hbGOHb55dU2iEikLkSHTDQTdQfms05FQga6W3LaU1BtW2dVspIVe8ssip1UTHjiMb4lDmOOPSmo3DR96aXKTDQnL_Sl7Urf3GvsnWPIxDY8Btgvdjxv9LydOkgI0IXJYQeLLY7vPZrDIm3Z-y1UaVPycowwAOkS8HxGsTzVXS5wcSl_ke_IKrP35RbUAbwfszXdWxXKOcgnWdnJupQpquGZBBe1Dd_x-1-95sVECnoA_EBM5ohQ-aNmJ4ZfKOrqYJKWY7WzebPVhFg7a19e7aAfTDVNmGW_5R5ZR-UZA3TRRxXiJhkg5RIrvrkN9anGfXE_Yz0igEUOquGk-9zkGBi_MVboLbIgiWwg6iOn3q-C6Q8HhtGQOZrz0j8aD-2eHQZrvNcCc-JQiYGgPr9HzzQ6UTubyC3JxDt-FAKidVm6S6RHj1MKgWkKImor8uNT2mm2C0Zs7dXZP2wNpdMOQXGW9YRFQUM29w0ImrV33aj4Txa77xARf-OGSO_NXt2TRYdpyM7r6rsdt6sjQkKSwOW3UJGbebjqatM11W5g8scbi1MM1YIslqLOcgNTFp38TgFKj2s-YEkFNRP7W61ag0rr1CK6BBfJD1yNqNuD9sNsippKxWZ6TkutdN622_g2szLkrSbbw1RrKH06w-qjlC9TttrWAWG5zQLqHt6Va7kkY8QGVF0tYn9M67LKdXRyB3wEqeRieoJWZaegCwLZd-BAHKsRgLyMpwiwcEUp0yQuvI6avBKuU12b0vN8Lpcgw18Z5l0Ocsmz_wBVdfgvkorB1QVIeN3knkjIqlVnc8dKsQB2cRIy6iH1q5D2bZpRXSsNmxpcCsIfbM7IZY4k4D6ov0QrWisyRbz5nx5afTF-M_2dK8OtE0_tu1fRnMyxHaOUfs4PCfZHBbofntMqMJjF7Q8Em7h6o_rLCyaXPAlsEKj8JNqwfB_VhTjCXSAsfbeHN5v_sRps57l0Yxa02NVoSKpUEoJZk0LYUa9YqL0y_YURo9HMJiUoSZ4uHqAg6nzx-B9Jgw5SMpWY5huPslKUY8N0A5vi1cnMvj6rHDzsiKI--EpuyRpjo4IFvcxVY8CF9XhcwFnxoue5C0hApH4fYPPkFXi5JB9xcWak9PQug6T4jGvICxtKy4DGpSHaJ1v0iQovis9s8w9HjAb45SMIMRKC4GNvjw_3GppHqZzgHvMH6RIAVfj4UkAkR2OiVDklMzHblowzwHqJMu5XYED4a6S3L0mDvFo9jQ0oSwe3udTVD5GFzxCCtBbb43vBbzHJkq_XsKfa-X-5PrmoSMckfLf-xOZO_YPPFRK7AZnwdE502x7tZfAZWDMOsIcSrTHBZjI-r1j7jNUfi65DRPl0sVobkSq8T4zp5TBDZVaG7X8O5-XU_legpZ6x4Lc-GZQpzfv9x5-s4GAMDkvxIe0BqIlA3hZmS_acPIYxgSdaDwO-gEQdMQ3uui6VpCzUH6HScmbZ0s1V0YCj2wiTLFnWb8ORkVxBtu2smWzwu6SwASp5LSuzrX-FgnOmtI4ohWU0NzJTH_OwuijtVnjvMvoEfTLHZt0k7C-tMk8fGhUO3uSvd8MvakZNGLCvIn5fjpvGWPHrPo5yy-62h1un4buyXVBRmC070DUXdg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68620e73f017c6-19088632','','','2025-06-30 04:11:47','2025-06-30 04:11:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43510',0,'cd-form-entry','',0),(43511,0,'2025-06-30 08:46:28','2025-06-30 08:46:28','{\"firstname\":\"Eleonora\",\"lastname\":\"Nikolova\",\"email\":\"ellnews13@gmail.com\",\"contactnumber\":\"07737965936\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vfzDSiMlzxihA682u6Tlo3I&amp;gclid=Cj0KCQjw64jDBhDXARIsABkk8J4wv9hRcYm6yOrqJ_sHu6WJSlrd46NMVPElZLz_C3VsGrENuepbapgaArpIEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4AyZImEzhCeTjR-EPIaJlKh-dGpMewVcayTLlqSqq6oJ2x8_LrHrFHUdXl3mjGNTLIKvySdssI1P7oz4QFdZwpBUh4YNV7YPpIDllAteTAXVbkStClUFM4TZKDVr4eGqkSb73VbFNuddGiPPL8mZOVP1y_nVQ5bw9IkuI4fNO-86kYnNBZ_OPGYW4ulEE64857-YvuLd_1e-XS41yYvHx0rIlA9RaA-HBfEIT4mmOCGOHf4_AShmEOlZYm9ZS-fiwOAj8wJHRyHoC73uwDRYUFbPe3dkyC-jeOjtRbTZ98vj5K_7oCeRqzphr13s57qTg3GLf7rjzKFLpU5pqpyWKpRQ19vr5vxYuU7gkEYI4eJsxxBV9ma-WRZ1s7CXx7gKq8oyiIOcWAhH_ds9e0WcqBJ1EkR0sH39sAMin2sHqJDgVtO61wELvmtsxc42DUBx72BkHffOfl52HHC41jQI4ENktpqaSr3e9kxbq5eDmmrEu0N9SR1D8sa-g4qk6RcFZxk3bfXNV310IMukX8gzeMGmRzVMs0-ZPfYXXD5bJxuZ7vta-uZTJn_TUZQqBpvlXGMJDwQEtTdxwOpbqAG83eBw3g5z_Fflaaooc5tm7OCeOzNbplVUOi1QnqGUphTyBrv8qzxFrJ8olYVuWCYgR2tQ6CX8ig3EFacDlb5HbZtexVlFdtZee0jUqNZptKsTzUsowSokxc7VhehUpBbvP1vfZmA19caAQ4iQsTxVxqpA76RHtDH_OWZ8cjs5LZLjBpujThio7_bohVPJyF_1NsK-zCmD1uNXP_pnf-m3Amt_Ys1wpHmlAKd9u9VIYTDvUOtdV30RyM6u0zb4WQwXeup7G-XQ0teAFUkFA6PcNPfsNRCrR9n4QcyIxNLY27tKapTQ7RW6leimALwHbaZ14I3To9lK54u1fjIt5HLad5uN1f4N7chndA5XU78ruu67AF9ZeFkNOfhztKA15nBzCfmUUlFKmf4CMiU6f-xV2QhrcRYu3VTd1vHu7lb_SKO_eZPcERu5Onqpv5h2Z70pDwAuv4nmaMjxBIBap3InQ5rqKTeWzAiqGGO0L_2fPPlMAD2o5nAFDcnCIiPpduEjMaRFQBKaavrcXascF8nz0Rs61-b0LxFJokq4fKhgEfHAjK7lt5WcMHxDfV3c6amqu02Adb0NBdA_g8P9R25CSi0h_BL4mRVs9FzdoGgueskF0U7NTtu5adaik-Q6yBPd2vmbOzDBocZn_zhs0YcocQHEewBcnyNetDn4oebxGz8cWtB-OWhj0YTf35LZETLoH8UjO5Ryjch9NmJyKWTGuGy5WUjzEJT5HtpEuTyCmb3_iYbCnhUWzN5LLk5uOVB5eJfveI3CHHvkfWOuI6rkp2kWEdUOnKQWRD8tEnXaic4qU5dOrQ1EoSI0hWIMIj-QnsREhJJknnw0LLW_BjTBC3-skIxmAqK2CC5UYx1_XNcZ_7WAifDPgdKDHyhNjcp0JHMyx9nr99YqbV3X-Sm-4gKDcy3rdMRhrgqQocUlI9LqsTBNuDbhsvPg-Xh_Pg4HVUg4UJHN_1DJc_RxKlITOjoOL81r3vpsYOGTEo1AWZSG8UxNAdzK6Eposv6PFN4jWhN2hFCF5gkSMrY_M2QBIe6-PeGa73PafGhVa9yLDFKzyJ4pc3RukY6WcrzXz8MZn4IDzxlezglVrfiVDaAQPhS0ryvqLAHK4aod1xPnuOdYTKb8hJBpNjZgyUId63yLa_rG5AX1nOqJJ0gbuLl0DY9LlUkJXaSNn3BkrZIfEtwo-nCHCfD6hzV4eGnQZz1in2fcfppEz4at0t_Y5ddywyAyDrLuApcM43AaScsmwpIK4paYR9NHL2Dtwnjl2NU0_2UTN1As8eb8iPyzGipzb2VpD45KuS7tShB1Gt3HNcGMf7Yomd2rnU1Fsd00tbeEfbqBfPaXC2quWBi2KA-CZMg5Hak7a5CsetPIEC3NR3yqEFppJE-NDA79nOvlbc0_Zeer7BnVYcBJ9f02ZmFF4n4VVAFR5_YRdFMkOMsrjUMusR8psqpVWXV6UtAxatJJVZRKPN2g\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68624eb50cc765-04481307','','','2025-06-30 08:46:28','2025-06-30 08:46:28','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43511',0,'cd-form-entry','',0),(43512,17,'2025-06-30 10:54:17','0000-00-00 00:00:00','','Auto Draft','','auto-draft','closed','closed','','','','','2025-06-30 10:54:17','0000-00-00 00:00:00','',0,'https://biomechanicseducation.com/?p=43512',0,'post','',0),(43513,0,'2025-06-30 11:26:40','2025-06-30 11:26:40','{\"firstname\":\"Isobel\",\"lastname\":\"Moloney\",\"email\":\"isobelmoloney@live.com\",\"contactnumber\":\"07781153088\",\"pageid\":\"40780\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5GIBZpsWeNpwMsE9MjE4yCM3hzxnguPdxbJR5Tlrp5Exm87saZAfEnzj3cqLJqAQOPuk8D3HqCk-_BL1CJc0JCrAb_IFeTtYxhobnRtFmsnsDoR7BybFoTkW7Op0BkxyDr3XDjB6CcJxBmAFSx73cR-baEmTMwD3zv6NF3751ItyOg5C0qMPHwpKH9dCI3_N_X-5exNboPEjCjKY4wv44T5y5N8XEIHCFTYMWCSGfDvtZ4gd6RTb59u9ZuqPFY4Sw9z7_DHja2r5vAr4ntbg-BzzO8yW1IS6x9xCsqt8oLq-ENERIw0_eVVEDw-_O84vUGLsGb4QkAxJ79404iCb_gADESUNZdxS34h7UxMNZtYzXSPGjb2vPLw_TFp-twudxlGvmxrOPX_I1TM7YTuOZM4uzMRXKRGGlPW_MrnULYLBUMR6B6qJwqLp-7Q4P9LUUykq0kv8JzW8QhGpbvwiggluaIEijLN063V2jXmG2-BBljPNHC6WZEuhx78_a690wLi4ruzfeY_AHutqA8xdRslVpPy5RPiWAT7ws9_rzKFQ8XmrmcVGaYyX_W1YXgyP_pbVOLUzzzw5JkFX12BEKXAMuP8k7nAYljJXWTQhuMZ4ax3U5BeQO2Zzmi5KtAPEDkRMvGbomnQ1JSQ0sdiMLEDfeC5RYEZnMt-FVomV-PCVFZG1nod-w3x-bE3r5Ek6CdqJl3bct_Fkg9XYuCkEBMv4mOOhaPoJmF6wm_i6qgmJ24r43vo0fwZ0BcuK9NqI6fNw9L_i6MHch7LXqFecd4Qugv6bAc06874A1j5DbCgJzAMvAP99e0grHYLGWqdxAbl6lFHLOtHxW8i1X3PcsquMwsfl5KpWUsEqRKVGDd-p6htlebUjB2Ar4w05yxumzPuBOnJSyt1Cv6b6NvR3X86OXm1_VL4O9jkEsEQVao2QzPQNhrAc3iZ2YkbjFCXyjC2gCr2qi6moedn66ljNqnThbMV_YEUk8wsDbCwNgpI2sLSJ3Oy_2qqb1BSAUetd-zR2b3mk-Buqy12Z88Fi5WUeZrFzOaDisocEUKGK1l_89smXr5OpwmKnY1sw23-f-l26w5eKExk15RxyXAPsLBUTf5l-h2xGB0s53c9_khRxwLpcDZ4gMtANViOY7kM0MYvRD1-j7a1cMyQcN1BXpt0hu9QHfZMu-rDAZd8lvm_NZtwWAASdn6ShdxgR0df7Y2zuYHQLaJ_FzQVGoXkjB23K7AL2KO7shbYGrCXdIzIQ_JhoUDx7T0o3aGBvBdZ0yGGzo3vc5-C68aCbzA0zU6cZNuApsLOggaQHLimrVJIF56NZVH-qV55md24_gKumxXQQguy6O30MZZIrmlBzfTgfglViVyjRemKvL0QwOGbCr7kCIJ-w9dyyiB88O63hcVKAixzJ_GMstmzNIDGoh34E8KSSGSxtmeFOz3JI35-oE91iQ96-0xATENK1iC81Sv6zQwI5f1WR3HQPljotPNSaMoK-KospQ0BiDFEKw0wel23tkEp4MmUTlKPir-4tdEP9yKpLeGNG-f0JI0LvAHx1zQG1Nzz4ggQdJK72Mp7TstaLAxdwV6qyG9wDZpNcs9GnAbjydjuXpIXXPbQW9Pjqj1i-OxIwjYAlLA9RTaHRigtUq8XCZjyaUL6upJp718otwt_pKNmycKF5mLJ2xafHjI2tZizVh-e2pZrwJARGzqwcdv7cq8Lu6t6BQkQQEk0JWhVO1bhkDrpF2woGIajQJ7--ZHz_kv0a3Cmc_Xg-GDb9HRzv5-kD9npU22PKq6Zrp4C6PJPryMDQ-VevTSF5Uf4nqP2nufVeQkvJO--UHE9KA1k27Ns5EanSuk6s5DbYIzWtJxp2v5Y_lCTUlpCj7iShf6qYfa75ZSRphoaB43Tj__DN1t1esbrEwGVQQkzM8HXBQujcqvPsbq9YNrdfDN9d8XYVG58UQZ_AjfCv7tuzqfCw_tHVl9lnZsIAARqH1g9go5XoZphgc5p6dVhxqYgtrJKdWG8Knhg2CIswmOzUCrnqrLDClW5w5dzKK8UZd7UyPuFiRU1u73HeZFtnBp5WrcVVAMnAkUcXZDyxHLUAs9MMY6sOKWQXTgYkCqRqAcNYG1c06HooNA760xA8TYmKP4gyTC9AduDEcCGDpDCWG3ewIBNbSgw67Sg5jZHr4vNnK1oYMROCP7LrG96LXCaq_ZpsCCIvhL445ezk0l_BQ424uwqMBnNr-PvrHxmQ7yqz_OOa0d99huqO1AS1FX1wF4SPKVC6OqV9YzVBcb2fIE76wjDv5xQsNmkLWu0FxdhhPl82Xe6pVQXECt8blZpA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-686274637b1184-96110890','','','2025-06-30 11:26:40','2025-06-30 11:26:40','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43513',0,'cd-form-entry','',0),(43514,0,'2025-06-30 11:31:25','0000-00-00 00:00:00','{\"firstname\":\"Pippa\",\"lastname\":\"Pilkington\",\"email\":\"bonewisepilates@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/iba-membership/\",\"recaptcha_token\":\"03AFcWeA40NFHig3ZPjHHUWHQLYF9YCK8t4LyGDQxrSJVtlAq3kM9aQUmKV6vrbRquhmVxDGDUTUmXwiJy7hPsVwMTusncH3BhYUbrlDml8YPe778JXkIEq3Rik_BiZcFoouZ_TM8-cPqqXy_ufgWR9YiVkz4N6khK7li79Dc7vo2Ku9DJ4pwx5mVWZQ3G4es_FMM26bI2is6jEOTk_5e-y1Q9Vj_cDr653x_pftwUAnaW9n9eMp3ZqE8HeJK_yuFZYw5yRJvT8pVtPknpU1bCkXOwpINpSBLHVGbmpkiw1VBW_KdgnSvgz-35toxY2M7GAeQqmIONSpSw5KfLUdI8173YjkSepTqy7VNE4k5k1bOjlL21iUxeX54Yt31Yz5c1xh1wb5hGS9a5ILsmZ_qUrwMTEHB-6OxvJKZ2o2qdn5eLvVb3G-z2zLSeMsKeN_q-Rqm75e13iTLQpmG2OcHaZ3_NBFaD5O0FyCXHgqByIAKdJ0TlznMhiGWDb7UORYSI7dRswXepn4-3v8Y75-PYoU5ODSes7vCNa7yytIVXi8QTcncyjEOaNmDSObo4G4NEBE04TzyH3oj4CIDB0TS5n1-b7z0U9uMUltEshYohPvqxFH3xjIKKTbfu6Qrahv1jBLhmS3XpOwKHOJMAldLLsueBY_hnfzzxgAl5OZCv8S2z4uWW7nBu7oEs52cl5pzAO3V0H1yfSOK6oCzGiPc_FhF0-fKtr1pWN8hVxAmqyUEa-cRg14mheKSJqigQCF-l3a0nRz0ZHA7GIn3GzOhvkX5j0U3lEMLZBV-MCFYMEDLTgZNisGwu8JqZKyPPqJU3697fMOXxw3EJ3X0OBb6bnlTRV-SYlY1a4U1LXPns3_u4pD46FI283GZWxvV1EK6tWscvkRjKkMZ-RIAxiZ60BzVkCgq-wyJa0x9EW8Jv4FXASZNbVrr89TZlB0joOLNITxX2b6VyeFcAtUKNs7HP24Zo8xrHf11BNuQNe6dN_4FB9FuyYvFc_29NEB8-00gxhzshLAZ708IAzQALGjrGrU2J4K45QCjm_Uib_ggE2gIDhEKGSkFF4b5bVD_sTsKUg72Qz3G21SuSxhtXRqTzM9Xjj4t6cN4nPgNTB6MG9WYeyfTL6pZw3Vof4sIDzlpNhKgZrKT-dU3poFOH7dtlBJl6D1rxXlCPxvDj8aff4AYDyGd2SaYiQ4iMlW-PBl2Fe9jWCAn0Foyu8p_jD1ai7uG4HzARzrP-jANdGlEKgxbc06QLJOjjlhcLdZXuBzhyQPNvGe-HOGJrwry3IJnnRCxMhsZD0_GW2stw7jaUb60E-e7-YEY31aDwDWRssdQQhbOEvvpBkGGyp03Kmw30vBbKx0c2LlYNn2fNucYBJUELwsg32FCG7lgIlaLlIZuKxRS5zK67DSWZGFALwbfJx-Vi5pte_B6OaSn14BJHbKqwHHdmObj1pqFpcXAxMXwlTxE3myeObQRvVqteUB_PqHxGtrxZNObEkZweOmv0r5ofxFlSVfP8azPl3OJHJNFquQSftL4a-CWvx9dpwqNjGJnjs6gMCpurusUYRaY_jJBF0otf6v78YM0_Xd1r09pQUFrYwEa64rQYZz10DZW3KPAe8AiEsVk2AOFxvcxr_3PB5Ig7CFW5WB39gxfzo34ig62DfbZ4Tx5d0q18GRYqq1VMXgPDdxQCHV3zmrwbELuvOMclSnyHHmaozKVMy7SYSPdWtwePmNU3AwThxAcdElEadANK2Aqfkxaxknw3HC57F5BiI-gC6JV-woU-okkVAuDirtJGskfKulw3HCUaX0ExBuSBVet0oTZiduULmNP1NgiRsx_b4VS5M7cN9PJ59LOpuD5_3QouZWUoxK9bTe6QYodkbeXvKiruIWbPTnt33k0QXebmrBAvv6A6lnbZ5WVASrSLEC_24vyZoblnPr8WtI-tIVVcXhtq5KG9ytdTd6kvm4PSqnM2Qc8nO-bSrV2jOXws0fu9YF-Be7IwPDsbsI_LUXudkdrzcK_trzZmyuZ1eRZqyyOkgg-FJQAid2y0tOHf2n690yCsDrmKJqOCg-8IjYiD4p8240po3RUpBAD4LL041jtW61qChxfm6-l4uRpiZxhIjNPzQ4eNjiv617GySYUGfMu6ZJdkVqBfD1P5WXPtH9GGkrl6eJeSo5USFwhYRUh-JAufEqyorELUK7lwoSXnKTWwElvfqyeWcKTeNt0IPmYaYXTN-By862iR3ENyX61u-mGg3hs5wO7_F5Rzl4_tHNMZb6URzhw1XvPQhY647Q-JIkmOafzQlLFNQh_seszLbGAelUx1W0-4Bc1Kyj4sKlf8AI3Ybo1I6xCkFHPp7ZXFwIH86ErGKb8TsIjmN7l4t3rnhOi4hpADZmwltqiF9FrEmwFDOudooHfwYS4yjJk\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6862758db34245-36691983','','','2025-06-30 11:31:25','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43514',0,'cd-form-entry','',0),(43515,0,'2025-06-30 11:57:53','2025-06-30 11:57:53','{\"firstname\":\"Vipan\",\"lastname\":\"Rana\",\"email\":\"vipan.rana44@ymail.com\",\"contactnumber\":\"0466349629\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/author/bioadmin/\",\"recaptcha_token\":\"03AFcWeA7ywHQ-Lrs8gzHwE3BwwS8JG6ohUoNn64Xv0nwRYNVD3gAR-Uo-tSfVeGTw00sVtLJOgDA2nEL4gQypRiu2EvyrBxPfzWHaj0_xsLGbruxIZdie0_ZGmdfBfkMot6qxLxZ9Gf6zj9pLT31HQd4GfgJXgvbyozApcDb7BRDJNJSmX1KcIqHTkH67SiwO5d7K1KnJ4vjxh7PWdkFeb2EzZ_-VvS3qS4BsRu8JaPaAv5fgxA1vzwRA-PpgSMiDrvbm_29GM68Pw3JFB4jy0qit0vcqLnLvL2JV7Afvl1ynY4acVawKVVyqzHqdOtlyqnHcXVnCgBq8zWJZb-UoQbnNvuQiiGjz55JSpeYXciX2eIt5L0ZMolUz3AF2mH3tnccLQ3UaPr0obGnn7imf3tWtbi1GFHVsjJLjYcn9i0TIB2U2ZHSVttbsGy8q1jCvv3ufp0lFNupsfLC4EFdVkJ55OnR7TSjKzkewu3Br1zWacD_O6AiYRPwR6qY_Pgl3KiJZbjfySW0J7fXDShlWWNPdR3-y4M0TP7OPux9xIW346LtOzpdCh0B8v7Ia3oGPjA6a6mbJbW8nHQmHxlFXZJ8Gbm-f0jBmq3VSpDctv_RentwBAqdxlZdsKUz__ORnThJSHa2xOt4cGPBIxXLB8b3TzhpNw1Du7Vh_rNQ_HX8Wnl6W6HNyrpR6zLxlFNdhRo1vGLYr8bHcsPMXh18IOihfG_cFU0TytCS6F9PtRABdIKT6vKDGF2816qB1jMH3vgNvbmnLBNgFJ-Tmusbgt6Eeq0Y3tkEzDkmdEjsbyXwvC9vbK5Liw8-YUGlw7vppif8OB_NYWUh6Q8F4ELGqv783dnPlinYYDIcQk03qufkhIvIYP9F_xfcp7SdGpGQjmSnwIZd-tIdukkWriQTLsq2vFs6_Avo1aeWCjKbZ2rX_1YQqtEHrtMujJHcnKOmUwT6_mJHec4KYe0V-BU9d2IWRKfHy-8Z39MXn6-a9jn3NhEPdXo6piC6xTqoo2qjSPg1S3Q3OOUsieUxcnGQ5s3v5PMFeHm5oiD2px5o133XMkuCUrJz9GlzBfAy3KFJtXxv7adPPpbjbXAu9TTC1hJMRJPUXvRvHB6fcGDVQVHp_kR3_lZtq8rNlqPRtQaBL5-_I0soFP90b37sfNd3YUSs65UkuZ0Cg4pGYW0T4B1OuGjpn3gpz_hYiXnFySUZfvqDL-pinoq_GJV00Mi_0n0h1d2EHdU6TXeEcJfbTjiQX7HM32hIPsE0Uc2jiT0MSyGXxLKfHspUeDsq0zX-v_q2wKViuH-7TAZZehBJQ8f0PG6XSwkfwbQQW5ummoEfPMF87I6TrKIlK_3vXUHFLhlgesxH5DjxD4h1mZ1D0tiUaNXpuQRrxJshobRc_XIhGKMPWS8aR_JBjeR2rqGQfxzca_LHExS2AmNoxUOH1lQQsau1TreWaivLSKet8GZdf1acBaErjMOr7cBd7DdWsWIarDcvrdsU4YrFTi6XJvUJRbe1q4vDuxbmGnTbNHx0kEOt0B_y1VAYPvL3nCqlXti_onvF0dZnH5jGdIMQ9zvodwCx9yuE5w50M22ys63hQ46jaZ2aQpXGQsZgS507QtwgRODRM482MZWseKs3XeOLwKSpdCrI65LcI3TdKspdnUtzmpxPQzGsOcNS63vn1T7k2ofhq1khbxh-vIS7xGfVV6dzqjNkbpQCSdsitNF4niwi6S_VC_9wIpZFmiN0zJAP40hp3QwpDcKLGR4aNDeH31ENcIh8u__oA6czY26un05BhznUGNHJVhAVYaR3f9Mg54MAhmM619Kw-4mAMhPyYTVhCDP-LPrX4FEwbsRkGaFEKdGBYy5mkcwnVOPoGPIi92DtyX5VDKN9tJrVkRXGtQBQX-Ej0r1D3fyEZvGCdkTrclNrwkpkEj7atOd-hn7ThHyl_ImlPlXtrEXmR8-QaTyn8dxYeFy2XPplkwF-5B_wVO5CT5-sr6k_sYn1N6fQmkmpdc83J8De7wlc4CTipRBVd_S9kv_Z86W8g8BSpxRgqNcvnJifNsd2rA7EGNbUaY5oOp5xxultSBqU3CAHJgr01z4p9TW3_O9fde-ihwNgksHTPauWz0XeyaE8W9JL88RRvP7w7ITflAJHVUd1_iPYv8GuNTQDdImEzo0d49a-Xreb5XvPb\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"4\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68627b9c9e4892-95652235','','','2025-06-30 11:57:53','2025-06-30 11:57:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43515',0,'cd-form-entry','',0),(43516,0,'2025-06-30 14:44:22','2025-06-30 14:44:22','{\"firstname\":\"Furqan\",\"lastname\":\"Sattar\",\"email\":\"frqn93@hotmail.com\",\"contactnumber\":\"07943108074\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6u-G1qId9a1CFaqy6GeO8RhJ&amp;gclid=Cj0KCQjw64jDBhDXARIsABkk8J5Ok4DYPruhJ0GPH8iC6SVduMt6X05010hzzEFGeoWPq-bi_cVNSSwaAjq3EALw_wcB\",\"recaptcha_token\":\"03AFcWeA7cOHsnHOQqAd4oIDR5aQvTpObXRZRhUIKG_tp0SlCy1C2ydY_QWaYUBlBeBvBBzA_-U0FCCdZj4DKMUcO1iumCQWSsjJ_y_nSryxKLvhk0z-l7Iax-2ISl0DlANptBflqVxzkwn2DkNgh703Qxf4VwCtLecd1cZ_TwL2t3jqXI2TzB96THQrB35rbxhOjumFZHyFt05CMUrCLPrpenmyjnPQQE00isJ19G2BZfO6SpU-m2LnUEB3BNww9brwsncdRFahE6SpyPnof4zUOsTP9s3odBsih8ANbLz4kG3Y73H9Tt7Vtu9e-lwoVfXHI7Do2DGUqUhC33IZ6S2NdVM6iDMvncoF9raTvh3TuWNZPFJ4hcRBJDNTaqK62hAoPyxNzN1E86cUdGEFkWZuIOhnqxyLqQ19R0CL84QVGpkCPky787nVoOIeNe-rGnjFQ5uYCW6plKVE39hlahEQfHsOV6N9iVrVXaRv4VRnZ76ZukYDerT2a3t7cQovXEsWWoZtiDh-omTkwwxXoENbpRh1kAL1g7baUUDnfRcVZk2Oi_JsjD_cpoXX7dwm3686u3oD3eo8u5vJINDibqR90ObUuboA2yNdEXapfjtUVXrD9_JVvchmMODLhiwhLfZ1l89qaxV2WcAfywf_PQVvwlz_pIXbkEIpUuLm46_OaL8ae9_LohAGkpQ_R2po4Vxopi4pGReaB0FxpXnYSPIub6nz0Il9RVzfAZIO_zJ69Z1BfaKeAiNyyczr2QVuzRf6rPZxJXjfrCS98v1HrjraMOdmHWdR9i2by_fT_2Eh280riVyHTyaBWUMuiypgRqzTIPX1-M7FRld4NU-AaAdPGQ5uzQCpq1KN_xmah6SlRn3VfncF9U4wb4fDI9WLnJKnpPGpYNvSi8hDTQJ3s5UgfVzKLHseGjbGVYpD-N7PVQB3h8W20zufdBWQRtEYc1cZveqc8SQqmFhkCkiiajHclx93j6QCDVMBRUzftCWbaGIlg7ljIEmry8LrdFcZa1c2w4-dtCTEZ4qfa7smB7k_PrWswicveH9UKIC5jSB4vWpu0xD76j3_tAqToHt7b6p1kXXOPAFHrWX6DUkL9FPD5iMdT1SVc1I2DKt3tkmo7K0FOe2R0cH51vPY8X_hxxWbIyMd0pcBQwWanAv9JdsVhwZv8RrGqFwPrO_TEUgNJw_6cxqupSK7uUgHMxVxjfl44S5b-E47zR35pABnpc12MgKF2mOPlDkY2eKQ7nTDKMFe_GHvrG0zLOZ1FhaVqWPJzySXE3L8sWXp8AeTq--WKyvjOo-kFIdIZQ0w5yCOZ4k640xQkQwM6hseWUu0t6m_OilA-Mdye7pP-G4aSUrE5_ExwxL8wZhaGVr0VA9mhTucOufh9Hrm9sUkYRt0u-KOXJ2_n33NMmsaZOrb4z_g0FY6wELpeOx2UJe8Y5jfqppm_CLPFKdlw9OmEELHWZEk2w5sIe0KYVUwNSEDbwF-YhzSLTS9kCfe2rIX48ROClDEWmNiBYRlCzsWdaCF9bpIGqucS86-gaMYTWYwJ0kiL3egMDl0U8wuqB_gWboqDj3OsEMLmdFcUELpiPxRIROBhwC7ccBBNiyDgP6pIVLexZxK-_sx5CfOyhXW9XNtzNJ1eUHXBZSyg75hOO-B5emvhnyFkJkRhlYpCsWg9jKCCvqFQRNyrU6jv67hTiVk6dKj_AHku5uOxDeqStyXjacpSEf0aP2C7ZT_6Omxp77gUBrvx_nuj8hqPFOkiB8EnlRyiFeK10UU8h7vZDLYBqszdoX7YxMl2vSndLcqSDMue5LAOZuukvTcDUHe_9MSh2oeQuOxXy26ZvNkZbc7pOj_luFgoAESG1dicYXGGLtPY-bs7R-jRIN8oMZ0hzZ-AAWfkSMwxgipF18BXxcDiWiToD9vuRM1SzIMrBy-Q8pgBs9Dimq4l29CvgRzuVyofWI6bth1MLj-zALgSP3HDRsqIN_EbHYBJhpKUK_MsHHsKygSKVy-psArFjBumeVb3ttIjbYMrnyx5GlV7iw3DyBJ_pTklsna85jalVF0FRGoQQ9MObju-lBKWXLrrob-byGPeqnfTfQG7T0xvSZWtq6ilnxl2tjgxwK1M2OYX8iO3ee3_Js0kujjTwcCw6TFCAmE9FSuayvmUEYYTDJnFlh4lNaEEYG8VE\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6862a2ad996cc7-62990621','','','2025-06-30 14:44:22','2025-06-30 14:44:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43516',0,'cd-form-entry','',0),(43517,0,'2025-06-30 15:14:38','0000-00-00 00:00:00','{\"firstname\":\"Ahtesham Ali\",\"lastname\":\"Bokhari\",\"email\":\"aab.fitness86@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4_FVnsu4TjTijlLebWk0o5M5wcpOK_pfkBgeHGXgDI5EggyNWtDyULuA8VTcpyC1YMIlntuEXxwxmn-_Qqfu-3-yT2LetPf0g4IZ_Yhrd0nSp9uotJtae3JomIfpq4nBiV3SiscAKk1Kplppjy275ASM-URKMRYHiPE1BPysYfGKYudsWRRyt2wBokyl-lMs7vz-MO7lqDVleDyaUyCES1eRnMOUAwKOGuif4bVpjFpHIl8kOFcgindcvVWAVCL0mObUz-V4FvWYg2LPR2kRBAbi3E4f8tpcSyCfh8x9-to34vUMbVmJGGNF7EnUojfThdGXi8JsB0igP8Zs7p-_QSpkos3RnGjg4d83BIKtDeLiDxDsCEMVGa7BrV8Nshl-081UbnkMd7bYdce27YqR_QdBJpdKGk8638zNtnKnL6ti6gpG5ERhflvJx0RYMLH9TXHNlqZHV5ZSnvVLbGlh5utugU-TmHyz0L47587VuuddvUI5qU9P2dOyD-su86ccKI6UF8EpTHtMLTlFTRsVqxdgY3U98W1SeSzzZ_Kpc0Th1KoT4WnOlQ3z50hYHR0AxJ7rRol3TVkJphNU5DO6mFWDg8Fbpgy5RkcNFUmjNJ8Iwond1RYGAQ1q7Px_I5EI5reA82Cpxq4HRlSJBsV4AGtu6iHU4QUnJ9RjxYNsxd9wbuOTeAat_Wat1GeSUiyhqk5barpa_yIWPABLKbF1lyGYTUf3JQCdq9A9JCAdnv8Tae70qXGiOS5MyiOmiqSpQdC1nOUkZ8qUFZYAZAlilz_5UOxoD9vG9PnnOimskYjIq0N5l3o8-xjo8_kRsxPHDcB0mHbre10GaEY1OLzrw7wV30rVONPGzO8x5ma_HuAaO4ZJuoKGxoovu-Gxv3qJwkFmesPKmQp0KfFBrcVTWmX9fifjhZPhAogqpmxyDpxoJY5SWpdk6pDZeUtj_ZKjIir_emodgwFM4P-4Uqr41qMhoO0uxLkJ7qNxGe6d2SmY06ti9qCo5tFmfNtKE_gkr-CNjctH4he7BF8G856SA5U0GqcDnl9pu5fcsp9MzQOUaHBEtzX4dsro4XisTQRQVPy78UEfRSwbut1lwFhb4x5zz0m_Jo0Y5t4ayuLBWwjzVd_1KWAJPNlhjagLfRgYpp56rBxGklYiVk4LkEcsbUA9VvtCbJJEhJSl7Nug1KCcbSBkgGjrIiZpaJeXJBsxLoIPyUOI9CnAQzi8S0rKnC_zJl9-528VbJGDqftZlKHWddgy7XfHmNlbFADOf_tKkzZi2A2J1zjVXT9AFVw059T6Z5gYY5JnB6MaJiiLyqqcyUQC8GJujw9JNPzDIsuBHNyhkLdPq9Kva7FCDYSAsN_aU1aFcWh5YEx4JtTEmdSMSVJQwlCvC5VgOE6IXDTIQPQd7bTniqqhb0OeW7dSZzlrip5dHYl_d0zhT1IlAWUHntUSRYDjJ3QPbJ4XZfMMxlzUQgcfsSW6sQVmW1vOZDbbW3DKesRFr3kR_rbdU9SsA27HM_3Qp-lCwSzARJfncbNrfOQ_YBxG2k5Kffh1QHeS9_XDki1ysDlXy5NGdnf1Pqa-6_afjJer4Ju90UbZPIqfD160hIQ4EWgqydgPCPSs5Ajf7Gsa6kg4X4TSV1AezVSocm1IjNHcz9VQiOj-isS9SNL_BUYMkN8-ZCiLH8PLFxYeJXinqkBlbMX81ByAeHr7M5c4Dc0CYDA-yO4STkow5XCJowBIaMlhIVrM7pVU-RkTvWfEokvEX4argWd__yFtMTqk86AZBhIzBRpOrtJpUrba7cEROUwhPVoRN8gUrW5V_DxiQLR0yH0tex_H3Jvhm8LNkUg43SVfwKuxUjNrGC5e5WKgzFHLDq5xlS0SCuT05SW2yrdWHC75t_VcDfkuLN9BMgd6Eo66XXn4_c7hdhj7aNARG97CjVvgImSMdmZTLzkoBqt4Jpdp28v8SRpS9g0ldfQDWSbmvRXxw85m9seRRojDo7Mp7c93XGuLSLUVEWshtWNk-OQGkqbbkeUCfkneuwLRxnIBzNRxK0VzWfJWThcTuZipi6y6cyuIb0HPGp_f2mfL1YRM1H-KKFA0p7PWXBGgSz1rYl72I-iUz5ObHb689lzUtW8_But8fCrDunkQPAEMhI071A6S0vtHAWym0Mgga67MMXbhTNQc4ycyprmRqRd-1wuJNvB2ONbA\",\"recaptcha_score\":0.1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6862a9cd52d4a6-88080177','','','2025-06-30 15:14:38','2025-06-30 15:14:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43517',0,'cd-form-entry','',0),(43518,0,'2025-06-30 15:59:16','0000-00-00 00:00:00','{\"firstname\":\"Clare\",\"lastname\":\"Gilmore\",\"email\":\"cgpilates@yahoo.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6u-G1qId9a1CFaqy6GeO8RhJ&amp;gclid=EAIaIQobChMInoqZ1cCZjgMVgJBQBh1CcSyLEAAYASAAEgLSAvD_BwE\",\"recaptcha_token\":\"03AFcWeA45TXPRMugLVIzf4Q5pGwVJgFZGTgX2QaVpBUegQa6IncIGkXLoF77ov_zXbaa0VQJQW3Z2zidji2b3UVZ7Xcxi_Q6EgPcKnJ85TOPdf0M56Y-Z1seaZ5Kq6PcINk5UaTj4Ser-XWxAF6lzK_V4u2zdk3pLD9m80H4nBLaXxB4-8nte_U6WS3yBUUOOGYJj89jDXFFTMLy5m6-Wt1oQ0QaM99noYzi6FFv8TUGsNp877c1LWX91Zlp5seiGXfek7rxwrkwKa7ScxhJo4YhwJ9Yo4XVbxmaGCC8KLS5TJ2qabaMpO4liQdXmjGDln9EqTzhNP73_8YmoWCkVZfW7mTGf84xHH6Diou_hLq8Jk1eDlsYm-Xn79F_MNhu-egladgeQ_M4zEcOlFjap9WkLIvNIubYwCd5OrkVTWjD9VV1RPtQ4b_aMhO99IYVHH2qflV2v45BKsp0ZBFzqKrPjo4WgKHG493abhi06RxzqKUJZEP16XZU8mSTbftCUYkYnEe0o5Hf_ZK2wy7_p4gfaaExW46VubRYK2YtJzp5g9d632MUMq6EkgZiXLBJf8p7EPrlI23v7C-1g4kPL7aWrnfMSNfj-UGpHGcLgNFgbJJm-8hCEU43cIXhBbpLCuQOIaSZ3O8gazbq4AtuDsSerCS49ZMJjuE_jn9QtPMd0uzQPMMCgGGaXGhOrKWre6aOQwMFpfag4gUuAlz2P4Mh-NWhnuGNlj0tbCafuUOogPWIlE9SDucZbcTFU34DlrJ-gDAVtntN7GvOgDekU_1ZwtKUQZijYXLNIG9Ry60P3yAcKWsUU_fe6s36jt_OhI_4yDENzhTGUx0Xssl-ZFFgLxOh_d9IHQoGm7JvUDP0Ua6WTe5zAdTp_B7givuNbkpk2H4yDBr9gH2CFeauGQIRiJbGl-DUuourkL2C1yBl-SuCXRCRVBNeBKgCLSrZjbqIP1OzqHxoj2gyRi42Y-KGaZvsbWhZkx7PCyXBOC2Di_itAQ3P42q0lDYG4uG-zVIIdzZZqZeteiHmckR7Z9twiwTdhh2kETsBxe1fp6DNR0QEo9SDUJSeVHQMvvxeEmWHIBbb0Kh7B_xNgnpIi_qmAIWseyJ2IsVUW2GJ8fXc-RTur5yHnZn8eIEUnuQvvu8BgzTwBriVGR8fso-_0Kk2z5EoqeoTAm2NwEv8KGyaforw8KAE72v36lP--8UY75m0yAn6byekyfc9FXnf8ZtYdR0ObfCT-d5R4Lm3iKNPNRPMdSLhRqDvXhCpDznZvu4HXKJA3FtN1TCW4obvAuZUjruvuF5mOHxExtPwM2sHxY90BCwchMtah4Nrb83avYkucQ56mKFuHC2rrQWHwnOxOYlz3d-jtkbELXipwvlEVXZTvyYFct9DtPxx_e41oxP4y8ZjehS5H2CRvZ-3pPWlUpLT5A50862qO2oobLA7kpp4_PtrifkXzMJGSuDQWgwJSImBhhVpyC6usr4rHKuzj8mFrIsJXobQ0HqTEK7205ZYoerwjXTbBecUER5ZCo-41cFGOYG1E4U5jhqOKLm5a3BfShJ46wH4OTkVCYoaxUM5apVtpswMhuC_PyvvoNrMek2RRKteVJLAx9hXiVWIOAtlF4hHMTqAOaJCKQ1SFr49hiOAwAMh9qRjqENE-PiWhUuIuBJwZ_DASwnzdklsc2yZhailcJjzrw_1fPjOq_OGdX5J4PhXugaDLLylvbNnbTzSWlk5qT2K0bxeVqfsGpUF5rhkIIxsmEshgf-5T1lOr4sLbTqEwwjgI1OMH-Dn6BUHwujVRo3b1Pqh5pKd3ypgxWVqqizoNg-RpEhaM9_AgMl8b2DOnlzJayaRWXbeswlnaB3gMPNe2T7KKcwXbGJ723dwZBC_TkpAp6_3_ogfBre-QuyI1VNaWfarcbeoP-NaE5a2HW0lCjsw8Z8f4luFdIGlWJ6MoFR4LAKqmzsiKzrxa9BbxHfGna2Ayh1NY3rBfnxYGPM-rLjS0YcIxpyuKO1RSYGTEOfQMLX3Y82N8UuG2tATTEc7jhuxq0uZl8F1kRT0A3Dpwf5AUvvKGOD8yOsdVzg41R6zwFPMWd3t75Mtrn6LwK1R9N0d7SCy957K7duR8DZRbaLfLJZaAwMDTYU98GAg0jfMHlfnaMeQLNWYHYEwuP17N487DtM9d7IIAH3xjkywUr-D_Wdfkk7wKbwrzDfMs98NwxaEhhOshT1IGG4e8mqHNI2cYkO285Rd9V6uUG51i1NP9x0kMXFNPYG3yxrpGEnDwY5NmwmSoryLAHoeXRoK9K7SwR9RKEniRQeiHzGRS9G_z2wvpEkaVtycSip4-mk1yhkPTXL6_8Rlm7ZuHALGXepc-qe0pipPXHLOQuSB1WW3ccAnh0boazjVP4hhLdvFzZDKl1gxG_79T689AZ_fPqNtsIcQ0CNCVT7Zz\",\"recaptcha_score\":0.1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6862b442f23070-55600112','','','2025-06-30 15:59:16','2025-06-30 15:59:16','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43518',0,'cd-form-entry','',0),(43519,0,'2025-06-30 16:01:27','0000-00-00 00:00:00','{\"firstname\":\"Clare\",\"lastname\":\"Gilmore\",\"email\":\"cgpilates@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6u-G1qId9a1CFaqy6GeO8RhJ&amp;gclid=EAIaIQobChMInoqZ1cCZjgMVgJBQBh1CcSyLEAAYASAAEgLSAvD_BwE\",\"recaptcha_token\":\"03AFcWeA43UG4JZR0mzENYbV9UxpzqFAuz_nF97B5wHLTgQuP92zTWVmpjgocx_wm5q9ZFdA8wPENc5TPwoGzEdDnJ7bIQBE7ZmCB-QmLKpKaETTsI-pTVauNBaLEKsq8lWFcrM0B2ipwMNzz3yDX1Cow2TW0Rz8AOrupLnwcohi_dZZW8tMS7vpVKG0XVp3UAWKO1V1qOWUq350Spb0ZrYwcxIRKUdHdtu7EDTPCplviLdm9FHsU1mNOfdtIiy3e3Llo4CFv2gV6yU_mM0WSsccDvYwEwPt5rpHarWrMLdMCLnjCXo6SVQCY7GjHMjIMa-0-0XWy3UoZdU1xVim7OtsB2ff6AYsjbu_a4Eb-g1vC9gJqwwd1g3tDk-biGWiZfYuo8UHsiS0wKFLPMYuE0lAOjjHt2l0B2hfemCHl-jKz-RI6Bk8Jc6QtzowAAgji6GanchOd0dHWTO7yj9Zfp6qCwiD6N1SmZC08m11Fw_uIVvpqdWBFghjvqfWsZdIyiALKnr9qSl-mj2rtJ5gFg1VXH5pKb-Vv0cXVAik1ANgfuwLjDdm5UtR39GVsUfQQVAfcihBa0zRzvJkUgH2xBb8jLK6qgc-UFy5B2wtj174VdNl9J_AP_vdoiI4OAPszw8Kypm5Z62RUnhvIDesXUA-w7MCIXDvkT3Uu6APkOV21KsJ5HiOAo0YvYJ7Bih4zW3WJ5kwE24n4EJ0Ik7mYMmi10WcWFPCv4THffKWwTD-Wxd9z6Ha8cjz8GtLLL5cbdx8Un_bjbZ1q5PWxDCkYAVz15eZDX9E5gTF3QxNo-0nWVDQgf7z618nN6mb4poyMDXtC7P4L1CrJjQdZUVtzNBqszXrresZE2a73Z8N2MHTZlwaLJ3OlUnlzRJzStfabZChVJ5mDgvjxu4v0C50sPi4clwjcis9WJJ-zVsrKknT2J380pDLiPPi1HrVNNwA6E8bwKHI0ZVCCIZPg34a_Iyg6yPje4zTEaQUuyGoA5QRmkCcV1xfsrmRRa14KGpZr2ck_Ye398kX5RetShYCgf2OnU1cc-v1kAR8x78ZfG5j5jgr_i3hTlnfXqDuInN5Plxig9G6kcauSXUkiznWvL1DCWPHkftUNitAL4YKqpml_ciL0pogvP5crBSbH278IXK3O_uYU9i01pvLBU0SYiFTvtaQLW0Tbm5nQH3usbahQig3y9M9TemOn_Wza3FPuGhj0-5qoRqKL1J4sqCJpdhimqCI1VEm7A4MfYi4YtGa99BxJiEx2e4Mm0V9zpPEUgEbChR_64wVfqERlKUgvzzLW4Ch7rG_MS0hs58Chx7eF6DF8QhdBKDh7ack8nxMp4VE8Ph5DPYkMfYyXIhfqTEoAFZF6p7pohvR3Ds0TWQEy7xXPPuE9k5d8aI-y85zwZR0h412dp72cjee7ezy79xhSDgHTce8WVxsqQ_xDh7w7ZB6eIrFkFuFpP2w_y_ESpU9vqAK6JdZt8UaPKbUUnyF93vdYyHCshct4S_v3WfDlQw3allz84ABIDRetOfQtT1QBd3JNHPY0rZoTCLKEIcFoQnWa8Osyq9ejIyZGrdDc9UwvudJ5Nj5XGKwiGDsjLTWApu6Qk1gUSjHTD73-146E8a-bW5ASAQmSWvT1wy7zsfJnjzU8l2LCQ-AFs0USXPHEXebZdMssbcsFAj5g6SYnNhUIQhg7OjwMxXLk_OQTsPqGbEFNB8ujlfOaN6njXUS4uPYnm3eBxsPJm8sr8-mx_ujhA6ojyjNt_iWTsXBWs1FIuAPVrDiJ6VI4VRDjtvl80xzLzyobsv3PsNkkbXP7Ya1lrg4_x147JLhMD8GTJjJ6FQjO28I-uFYMqHU3GSUcBHZ8mixmdL7ro3jzeBYVvwNqk7A2kASIsvrTXTb-FpagCofZwqMZCCKyleom6dYXtJ9fQ642ncIRrdKWwZM21GuJd4_pl00XfZ1pYufWW963tFqCnXwUkzTRISMV71x_9jm_143Niag27bS8o3-Wr_S9rBmAbVI3SkVmfaOGuc4lXIfbzQ8FrcEWhKn4WKKjQ3jIDDrGk8jrfmzPAh4SIkqI8LgLSCLiEUkZcGvchTab0VVf64zvR7zKS8netSCatmMAGRGwPnSFNL-HxaoVdPffWpgqMwKMZOjn0-H4INQ1r4d8iSpDt0GjJsC1NqxtoLo0YLXZ58r3I2HH6doxrVeY1sXAu2Q\",\"recaptcha_score\":0.5,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6862b4d79cbee6-71581165','','','2025-06-30 16:01:27','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43519',0,'cd-form-entry','',0),(43520,0,'2025-06-30 18:36:06','2025-06-30 18:36:06','{\"firstname\":\"Ahtesham Ali\",\"lastname\":\"Bokhari\",\"email\":\"aab.fitness86@gmail.com\",\"contactnumber\":\"07387737818\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA6XkafgeB4rtKq1Ci1ObSwXoMJvVlfqrhRnfhf6Qu5hMNk7WhXqd7FOJG8DpesyDr_leAzoKmoICgnn4-slrHpDkDDXs0eS2JqaOGcVeF6vQPgxJH_yaQPVGRqf6WD-a59mwMWRYO2R6TFzzwaC9UX0kTYl6ZKChjg3y8HFBIW8fEwNuvfoazdzP1n_UlED9I47WGrgjJpABF67-PEsQhNEcp7Mq0cPDOSISPsk0_n31-xMGCRiQLNHYW2SDcishSxQJuAi-0K_5CyX3p2HtNi5_LFzN3Qmr2TN90iHAJT8Xe-vQj4pPVuoMUlXczKsVtsmJiNyGzkYrU8BQEV_AEZMezOe9l6_IP79-FU7dN_h9MXCPW-fnwjpcqzvBH6rz_4xEUvIJu7as8yTHioDvMRAOM4T1ePdSlx2JrAtQcAXUKc3IO9VHAWfgMLUyFT09JkqSKGqZ_Ph3sx4vwGoc_xHB_QqcZZ6yTRrEIB-lCo40k6KHF232utipq1Q7P-1cjAoWlXNTT2pQ_Z28BI4738HrWKKou744jFPKUn2lMJTxCM3rjepfFsLNwvMb6ZOmtrg5VhKTPOGQ58WUPPA9O8KTEOxnf2azGzX6d_cqXZ_EImZIZMGwtVkIjAsi2unnv2pUW31qHRX5CQxwY7lPKmH3CIFT7fLS8owqxoHx0S_tKKKG1pZV_lYFZR2WoCO4u7UBq2pUFYLudGr3mng23ApimhTRUGd4meTiQ44kaLs72QFapJXDclXhVFiwcqLI-SftgfZIUPwhdjknWDI_Ec0JAw85Hh2dXNdSWil7o4NOHo7o5_Opjt7WFFGTdPPi_3tH70Gc2YiBj7Ju2nKMRxK8rSYx9UaiV1LNVNRCD8xIJnGoBiXsjGqWVxXE4CVZoDdPvgi1owRkYnB5sAWN9_9TZKjXg66mV-0u0xlYx9cG_c0DaK_fuZ1-_RCg417xTo7NYgiAMiB9cl7IvIsS79f2tYGSA006hHPpF6IFpFsTThPlD-veh8cTXWZlKGEjSvCVT1IoO7zF9JkHAQRYYpAZ6aMrq9JW_-kz72mK4RfkY2lDHw-6HmfGwFoORKp08tnS187ILpr3P7scWwdmfPj8ChQXAb9IUpQy48DHm4iKDET2gcyjLA-A5_ZNpimQTquA0JarN8FoMDdAK0g_srNbCklAYVXku3E4hNRNZP1iBsk47rcc0BRl13q1NsPyeNnqiKs_6bOMWNiTjY6eVsShZaY-r47DAjBhbe3Ma33khuuLZCxC9U7XoxYWaa4I51V7GaRM7AGn03ZmSfTl-rNHTDqI-Xpv02wN6e0m_cF40EW4Cws2rzRJymZ_42Tv_NuIiCR8LZJ7nQlhYYuoV1WPXINofrow7L4kEXuqICx21GEDa6fVDj1BlAwrxXQWXBiYFA6nLvwhN8kLiT4ijr-C3eYcN3l9IbNzUxxOxtvTZj63p7DQskpmhmkMARtPN--VBkX5Bm9n4ZpFFEfWm9TwJ5bWOX6c9X4S9V5P0aijdaFxSJ8zc9W1ys2X-1AjeK8kJ7sCN67peyiNOKBpjm5l4Uz9KjsV02JtU7-NAcBbYKh-KzuwZLJUvifPgVnC1_OorDvp5Yim68MHoST92b53svefcpHzrvQdBQqrZVRjIzO_ogOtGzKnWrIKhAR8-5AcCD2Q1OEvR_w6P9UEtIYCQG8e7_HxTvwn3cKWxHooX58pNqfbdQtecrzs-aBfKqteoIMc0u-VFi42vCc18BLSZwRgJM4mtR5otkzo4VFFHNHFEav0KmFJRK576f4r_y6S_8wRDfRcTvqhrBDxjTMTYyAnbEAfPgmbhlKqEHEbT4Z1gBqXFL5V0323mE5-IdZBKSnS4KiOwkdOt_Tzs4Rmtqe6THL4kviRXF77gdpyyGHlFLO6o4Nbj-kMYNnHng81NAYUBYWtjx-Pd4T9cHYOA9oTqmo1zPC3cjV_MEOFuD7pTmaAXXD8_SuD79LlZoHdICuz1HOhaLhRc_c2EfHIi4LISnY3Qb38NBWvFs_SESF4RreC10beqjMAbLPvr106p-y6Nm0kPRekXeORyX5Cec3rcX5TKvMqhGvNoRaFQ_t3zsdheoUeoE5Tj7jgqcCYu6GoKCS-ldwdZtsRP0CAv1y9bgE1nhP8tNC5cxMjazJRVOUN6VYGGxtspG2JFCCm966_pNnLoHZwuGtYtOUo9gv3A\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6862d8f46103b3-13297873','','','2025-06-30 18:36:06','2025-06-30 18:36:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43520',0,'cd-form-entry','',0),(43521,0,'2025-06-30 18:53:45','2025-06-30 18:53:45','{\"firstname\":\"Lucia\",\"lastname\":\"Tutty\",\"email\":\"luciatutty@icloud.com\",\"contactnumber\":\"07764729113\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vn800eKt7GRtRji-3GyngEV&amp;gclid=Cj0KCQjw64jDBhDXARIsABkk8J5UcPgpii9xtT0dN6XAu9H5lXxjknKT9mm3Zty3qGj784fqY7AI15gaAgbkEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4VpU2NhN71HOdh_yBE7gIVwCo62s8CGxduxH2wdt_XXjZh6UurzE86hJDZKcDxgnMo5Pa2QcvvgYoMoHM0i72B1jHHGH35rxl0DBulLjceplH8PAYzwW19i--pjSO_qCCx_uzxM42XReGysrzAHDTQJ5vhs8x_cJFiDByyOBdvKYmbdjvhBwNaZ4gFe4O6jcyn7070qxuFaoI87RNUyPvOwoJ0id-5J5VhNDGQ_bop2zGvF8NheFdBkm3InX2aSPGCZMFrQpBQHEBlTqJ1l0IGHIh1PfM20LKKOmZ_Jyfqk_P_a9CbPXcZkraBQ_1s1eL_mO1uEuuV65KTSEJCSsMYVxB2tvr-KOj3-59znRjrPEZKvTwTrInUVZrgZwj_XVLpVj3zwNMCUnMtOOtNrzl02RA66hXhxekHCX0Dlsuh9H3ol9P9tVzdcKS7I10brdKFezmK-xGMdlqh1AAqlB4IliTsPHsQqbY_1y8CgB1DBU9ZQdTlC1I75kSbrRC77nR_XNIzj5cPA4XTgxAK7xJt-pGq062bFAYnMtFYNr6g1yEuuH_xrdpAR7yeIWOCRtDvvE_hWgqZYQUueTcTHCoW90_BMobP9_Cn1FahSYV-J7wvqxgSq2PMrGncY2gkarkH5EmInk0yv1m0WizEXV4aFTFsMbuR65EvaYjhs4QD6YcmO9s2e8I0yWO4OBgRh9BrtAfI8sKct0rhroropi987UzkLAoYKU5Iy77i1QufBa2e5I58N7cBhAjg1oXoP7laFBhY3ZPAo_La48PWLwYuM4HixGB4-Y5qIvrBj6yrLnysbH_rDpFvrTr11v_Kn16jfc1OgCNp7D_RZhf9PSzXaNqGxgkHhmwbXxpdBjZIIBasuz2YTTuUspLXKwKTW608W1Ydq_vLcQ_Xt83-5qne7HMbnQDdMhg5eYlnWUDn8crll1NpBGeZdentKeiB0mTkrpe71iWJj_u8_Y0JPiTOmpDrMYLaxuuSKIVuSqYRHDR4QbuqGXu5kL0xrzbjRMMJ9O0iNhDeaDAKQIFMZRbC_j6hzF9nVqQlYRi09FlU4eg8EBNztpat9X76P9J4ST5OeY5Q49YAArji50YwvX46hlGiwuKPi8hxqPGMFv7iNcaTe-6NfO3ETQ55SVUlutYVG5jTwF2STdU8rWrv2eeqedZF3aM0t6Uak5eRttIDNYMr9n6mROJJ866QGbMrXN9Ua9DEecczk--dJwY5Da-0krc-3nYt8HpDNP1NZKjvBrSH1xm0VBhSGr-U6udUu65H92ZQkkyMAQyVyYgJPjw2vx0M9DiuoQtJghJ2bKA1OKLgvfM-ki_jHatezFIDPQYTlqNal3FqExJ6MlT9qhlUHay_MOgLVaQ7YWNuLcO1WIM7fbw6U1drGC6YM4qHgcIAdICFi_82Ao4CW8YdqsAN_vTI2O-81-S8NqESrsrxWnyHomJMOdujyhFPFveIsW9KLcOOsJoZ5ekBqtNfSNqWmVdW-CoUeJXsRMicfe6k7piwvParQdYuICGmYQRTqo73okMTBf_U76vrxp8BR17mzDoAcXxV-7St9NdW21H_XDv_6N1jtFChzA1_PpcgqQ1desQ10THsbkjtQuPpiZlt28HLy1nZdmuazLEAq1v7CHK60di6v6CDane5lB8vL7S_U359PkfAq9zF-MqMGocYW3qS0945IZv3BLXJCpaygRbeCqQhaH2wIzBmCisyRyYtgRY5aFLmE_9AOmrKU6xtDdsruyNDD9EojJxytwPnhCRgAlNrbpPVIezIUV4h9kNCbR-PwkXqbYWgiusMpxplVzCbHhGm5jNuxR7rQvVzyzXG3mQ20Haeh30C4PUX_n3mPjgDYuIV38uKk1unZQiF0beSyCFTUdqXzU9kQQO8NQWh7PZOVkWZpk4xJrKyPDvYbI0e1eakCZEe4Kyt8jeGrlQ7NK554z-e1v4bfl3lLE0x6UKIfzKMN9yEkzpOtiGPmen9A1449ra33wQ7J5NAq2uGHk0ZHQBOCUj6EDp7ATusYp4\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6862dd2d3fe414-27830592','','','2025-06-30 18:53:45','2025-06-30 18:53:45','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43521',0,'cd-form-entry','',0),(43522,0,'2025-06-30 19:52:53','2025-06-30 19:52:53','{\"firstname\":\"Rhia\",\"lastname\":\"Macauley\",\"email\":\"rhia.macauley@gmail.com\",\"contactnumber\":\"07867424614\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA6DmSZnvNQt4LFaDEVw3hRmC-QCOKRfSxR5cWVuTGGYgT0zjBnCtWAtSL3RA-cJIaPPA8vEEs6uiS71-D5l_iabjMHviX4eCdpfQIsB17DflItA8Dabep8ZmsPgCKa_gukqpDPZB_IzT7nWhvUwJVrNE9JOlOYZggK8OVqpej1KGy8fXifrLLd9_n4U3axtJYR7KJraZgtdXGScI8kClf9v4KQLlLy_lXmNhfQ8eQIfGt9QGyJPgq2DTLJOuN-n2hOvf0eyWJ1m58g4PpY_1vOKNy3GsAfDlkChTOo2ED2Tsh_idfqq6iN3M-3YMKhnA5Q_l1Md9aJw10liRYuQHGk9gv-OpEGJuivR8kHO6ECJ3rDlMf8l6LjkfeFYTzjbPwTrCKvuPm-oAj9NNTrCjf9rndjjgytOyRnkduslCDsq3yEy3cVIgyLSxzKDDVPA6_9tPFUuc_ftZkb3JupKnJK2vXd9LrgB4kETtaqSS9s15aOkYBydKL8ix7Gmr9Q3qG5Uae9Vz9m6eqHtvX9WEoyHsEKfU32eswI2OIlC1V-Qv_QOwh25da013ZyNlQm3hWqf4FtO-TVo9rs3_LnpEUmJHKxQxu4IghGfnMygUQQ2RuM88zyrUth7Oo6br_4H0A6VGZv_yPy8Tzm0UlopCLp54jLDz6m2fn2m2HaEdeEnA52U7KVWaG0fEbs3fNp7Hw6dogddPw4Zd1iHcMqS4bQ1xs8Hpo9dsu8Is4t0MwKnmzKneqL5snOFOHBqGtg0InC40bkkamz8PYphGOnWtCeesobYwdqEmSHvvVAKkl3eWweU6jC6IADMDt928aVTLfbiIUpjS-EN_NCZcU21p-He3umB99u0Pr5O-Ql0a4NDwkFNzQVJH79LeWbPG5SkVbXV_w8mMjYJq7-DRp_sBk7SzTF_isKJzedo_znrmxwAXlwhXKG4WoOeJatd5JSWI7ZhgZKC319R__4hgCiv2IUVeS-ZqIYQOdJcIrjbuqeJIhPH0Pk9vRofN2YBE2ciIuSuES1NyHwVsjAky6zUsZOMww3J1VXFItZKYSnIuZPIOzy-_8IqKJa46KKNzWiNs0NfDVzKv6jMV1-Q-_CpEEPHoc5CtVudgJ9dy14l3gQhlvvSb1b4laGwFoiV0_E44DvWPow-spArX4MBJabZ3QH-vexayZlgO8bRJdW0S2FLwLHhcjUfKUZHkGHsExtLbH1qsre_ZGbG9YI4iBh1YVdLlmAGa9C7kkOAIhWIyyIusflAeZQ_x9csp_XRAH0GHt-tbUJpR1moqy3Dp_Fq8vf7mNZmUZmKGHnARGvWul0YvvFZ_vRcwiWJZW3A9_jWuYStXCKijg_jQuf4R0h7GOWkqXzZq5064x4O0PoLGIsnRZOXKwbhWAW9pdnXgPXabgVBfTiXSDd5hoxYd4DpcIzl2tFMTGuqaED2wTUW2YhZSZ15jknQXtC6Hzmz3nChF-OnzyxIRoz5sEwL9by2jzjmtDiIkNGogaB-heSGAtjeS_2s4fnijRCoXfz6Lr4XVlNIirKqr2xl5lfVVeD2VWGrpHktf_aBRcwexdq-6_RQAUg0S4RjFqnoo3wm8sweBkyhWkF2rmlTg6E9k9nkn31sPzLyRa6f6Wxf9khIHaqXDoTb7PFRKM9aLnwCBMO4_bNlxoVXPoftmr3VXBZ6VQm-KLjsq7FxZZTUVkEb3-6qtUaLiTkkYfwXNXgdIPjc3ly5bEa2iFqJFC-jOjHPgvh6K-Rjwc94tITByfSPgZxPudO3OvHG1ffFfHpVd6hwP10_Q0rlHeb4kj6IRokdwpPc45kxfet3DdPi-Qoi0w7mAhZgnhoXSYFS3sEEWGqz-pOKVt-KrymZf4LpJbm1gJ1b7djYpf24WnQpphyjYPOwOxNLOnWux31I5I21PvJXkiUKiQDXCE1vfAvk3-QMCFoD-M0LhzaxJet8ljXDdo2wa3nIECBG3RMnoKVll2pe7DBWuokgCmcn3HDgEJ9JvIOSldme24MZqcsStPKtAFdGcmA7dcKcaLPDkEtgvokfDV5GfY-rTWQluIygstgy4h800fyeV264QUcO5takXpNLONBtNydfAzgrUsugzFusWoToQ8ZLnwdiF8c72YbM2rnZipvzcz6D4wg5KmN4Zidm84AzPK1QO83uiB7_cr6EuJNkEJwBNzQS-BAmKojUlH0DkDVeI7obcGrGzgoc9MBA4_a-S6NOUcW9Nl-XNsMIgYuTuxF4sPfweG6-nVQppV2HyPMAjA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6862eb04131998-82883762','','','2025-06-30 19:52:53','2025-06-30 19:52:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43522',0,'cd-form-entry','',0),(43523,0,'2025-07-01 04:42:25','2025-07-01 04:42:25','{\"firstname\":\"Kamran\",\"lastname\":\"Hussain\",\"email\":\"kamran123hussain@hotmail.com\",\"contactnumber\":\"0771395077/\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7BwxDh0IkOzROo7dBb3BTwReOq8YrPMenJO9a8qkj5KuGuKknq2_2D0t_jMkrL95jGAcqrV2wpa0cDt3DaS0KXCAUKFtidGvN0JGgcyDafQge-IwKDeeI1poJYoWxxFQ54TfPQitpv_KiWEuJzKnUPBoBFg8j5JeQSXiK8DnVuM9brwzH7SIqNNXzzTPV4WyWZYJsZMHuqj6ceDuEIy5BNWeaJD3igz69AM-g_V_tbhdeFxW05KNsImTEWjfVCAwDeHW5QPCvq-LSd34R_DQgzhw8630pF61whDb2KPs-xGaeNf5zUGH5g5ynhvsIkWFqsW6rpogcLSTiMtECcRfkTSDokBBvQ2b93Za7cmqv6TQGRx2rGmjjylBShN3Nhd4rCq06CjmmbABU0Q0JzXk2P3lr9hW7ea59MqWlsRgBmPl4h_f5pz_9zYp_3ZdIUpkrv-L8A3GhSJ-IFUwE3H8E0vYvkonG1OEFpmElrGltm0fe0l0FZrLzzbUvmI9xfmQG9UReEWy2G5_cSErzUPyMD-nyjyLBrfd91JCX_N7YDykay_xPaZ17_VkT5EoN5mLysqCYLni5eLTrpaaWfd3oLucqvEa1CtAIux3enEF86VGka0bAN0qlMAsSL2IR30matVzzwMCYcNQpT3qK4hXFqU7sUK66JJW1rcnV4-mbpVGGIs3ghjpbqFKfJYDMiznAHI7Rz3k173dPXgKsIysBFDTmKL7dRPVjuPYUIxerZqqctz9g33PBdoeqoSTs244qd52bwlThd0U78nvQWIDj3Zes1_eBC9qczb8pc2xQUc8MjLLZgkolPKBhi9O7-DrSRd93NPHoTjjqtr1hRWX4tLJ-cbWrglTg7t4u5I6f6NqA9nzDtVkobeoUQwhSqtxHScyU1y29qgMXG8IxS-0XlW1WOof-SzJwmrn3vO1n5shVmoj_0jszNdlV64T7pvpDTLS_ZcXHFKOZCQvHP-24vZXY-EO4aXOKiLPM-zJ0VHDGKB7gGc8EdccUI-N9jOgHtX5W6oUAjMkB57uxA4yTAFKgi-DDqzd2jY4YKMWoqP5hFDiPb2xy5fH_MIIwNWEl2y6x4crDitUYrBaQ-1SWQyFDNjIO75qaiqHOwrumjJtpWOLuZPHQSwh7iwwMcTkUK5iZULEqcsIM10zLcbYeYWoT7t3tY2_Lo0XWEQ_MeqKdEPHAbQraNfwhw_0LAS1cgyPgXrYLS2km6sdWj8OMUfWedhJPq9V5tE4ABsgowlGb3f3t7QrCyaSMjrwdKfyXRF020OxewSinUbmNtpdNr4Q-VCi4PpEPlvi7YSuWQedlGL6X9X44kAP20loYLHWw8RHVIjndQUrOUeScMpW9z7hMu7O2Xq7jojcYy-EuDe3vJwlGHvOHivH3Zj5tot9yvnJXLSUxB2p940BGZVenNjZY4RzXRrtFig3USoKcymRIai7GBUImqcf1G-EruY1RdU8Uv6B3fnIVgzHVX8Mi61blzQ_M58x3yoR9cUcyYCBsVqRQ-xhS2OkZjKmBkHsitgEM_qOzgwRO1LH_1wLxnOP7yNqEhEBrJk0YFm9hniYt55QmmIWFS98EpSBTkxj0TZqeTgrFF0v1y062UZOVaQl5Zk58WPuSbsLVBZR8_WJ4C63kKTrcyy4A5_YuTG_S9qmlFWBLIxBxcQvh9XyBb9OtObc_foK8_Mlg8PmmU8fP6UHFXLSteRqQNoIMjzzuHS0K5vbhh7zG-p-NfL-wJ2qTyh_9gKkiaiUxhWnqEvSWnHq8X8GrcywhyNVwvmbZgk2ar4R4ZVBMGCTC46QjjhsksDwjVq2dFKVGhE4lIVTQhbO1ya8ptIzbDhh4pTAazcWoFJlz5ng0BfP6BKkwDLLPR5Z-f1i4t5zP23j4EaLJrEJZONoMyjkF3IiBF_fFrsFUyL5qTSJza9GhpzHusgu5nPMalASMkYQF0cPUuO6lGnWvWrjGtfOSOz3WUM_JUgcexhyN5yPrH3HYTUc1xYhj1Xy3gUSY4IA5yU5TLA5uEdHRmOLGnpubQz6Dj8UVItZ4RtFESntEoTN0rKDw5XNlu5A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-686367230cc6b7-56592007','','','2025-07-01 04:42:25','2025-07-01 04:42:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43523',0,'cd-form-entry','',0),(43524,0,'2025-07-01 10:09:08','0000-00-00 00:00:00','{\"firstname\":\"Petra\",\"lastname\":\"Rodova\",\"email\":\"petra_rodova@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"40780\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\",\"recaptcha_token\":\"03AFcWeA7R_kQXzdU_0uCU0yFDBt2oHhqx5vn71UEYmnK38tiG6syDrrbuuTmfbbsOOU7iudNABnAV7eTBuOyX3CZBh9MUjvnZUgVgTSbdmxhNxzT3FcWakItVbHLNRoA12cXTOnBfdjcbbS03sySEuDQ7pBMZ5i4tt-zwoLWajPUMV_PzMd5D995mAldIgkxInJybSuXZxbLPFdNRnSCTo4q1ZbvdGy5v8_CDFI2TN0hCRrcg_ussqGB_2RuMP9P8TFS1MGb4eszeJKV-KKWUcDwLbqc2ylw47a16JMgpKvDy2XGoi-JK73rJn91jsFA__3ywrwQIiMKeKp2TlgfkdvBqcL4NMrgVTpF1X-DApcJ2Ju4J16c59h8Xgyv6lwWUJtzPKZUVaYtYW70jCimsuKe6cIuK1OVngbMpan5ZHQObYU_PSkyWVb2vxNp4XXsFsgnC27ywJ7E-cTBew5MEfmmtMHurmCEwo1il1xbwiGzURC7AkiAvXXdX75i-Ed-ZxG0GPiBh5Qd3fJhHtRTu5fXvoeHRvpa1v5IkzPwzQDAeH50ywxOB0hjjsF42SG2EJUzqcBr5g0K2VSJe_MnXFnbR25Q0s3GREg2meL8DvIn4mVTvmgQNMZn7BApRPRiR__UyokOwJc-FZnJ6GyGDrpYTY5IPuAACJbIbC4bRo-6HqVmjoLLjshXablsE1Pig5FaVgaSIJJLgYJGh6m1I_2q60onUUa2XJBcBW02tkoCx-QaAZ7P8odOa1zU3cF2yUuidmp011MXVdbo-W_PpvoaiXqMAahk2yIsyD0Uc_a8oSChyymf5iBPZbjPF6PgoILANQ6FXS-aAjhUCDS4GUyhNqRo8fSPOyN7hxu8qDPe7rYdc49v_leW-2LaWuh-vTOWacV7SFzAB3cW8cpJEBJ_zhKv46kErR7sHLGvu3Rr61m9ZwghvUaHaF1OhaegXx4LHbwEKLptsBroPUomMM2n5XKxEzU8CPlyDlH8qn0GuJAcXWM-0Rj9iOQ8EXVWJow2WeNG_ChJg94509JfLSuzexc-GAgaT6j9TYyPZFJmL74sel7UB1kAlEvxKfvjTFnVhATw0ZL2k_g_5qzlGtaxpTL2K1sbrPzVIX5vDfjjRq_GKThehi0XXZ6GBxSRNaFoX5JBmFo3FLH78Gp5lm1kIn1kMR6WmYbOODaaP0ysGB910jwK487Y6tX7BoaHnUz6aQj0z3rBzmv3s8swE02U12_YQaYd2zY39Ir_v_4IxaGTVpAjxmpvkIpT1AmmivYcZCsrf9EPMyC220wO_OuwQ1xeq9L5gjv2WMkaJQfGpzXQtysy9o4y6rBwPzrPLBjNJrkT63OhWucLUAOVtVl_rzNscq2r5ZdPdDYxXOfJnpfWT0zjYPnBSTnHv4Gr2dRRwWVmUh9ZdMMVOfdx7y1TSMmkTePoXhalf0ypJVG4-Z-Tv2SCO0Z_glqWwM962NN5V5fBKMOr5xTE01N8DNHwLrk2gF29lhGiYUBrs3xwgMu_7EghMCqyarinYe2-O3MAhujUGT8nBeTqSG4Pjmri5nl-uLjyN57qiOqZeUOezhhNXnGGB4X5TeUdf2bg048WxsH5GJbfCWcQJItfMpCiqkmBy0y0QHo7nSSR_jPSCUi4NqtzkL3FYLQedwpm6A8qdYbLo9XZlTxce581FA0AlKS2oYilo-_aQ6s8IrT_AFAgpP6BmHcz1fEjGPMjkqHcFWgwbsHkOrdnoK6npay-pubGQgDXpH7PvGr7cR0fuc5JNT-5VwozSRS_NjkyIFLPAcCLpY7Q01dj_ByBcmsUQNuJHNQ0du-IUxI2oXe5Por5JkobCwi7CHX10-BdBtiYJCtns4OMamYf8A_tfVYqaiwPllAWqaQRyd2fr-3Nca8WH5DSaAaT8GjjuzR9f2VlPKMc4_PV3d5w24ZAXDJOmFcOtlvyaR1ld1yNoyom-X7VTYxJDkev94kAP7_ECSjm3IQaRHBVem98DemNU6AWsv2ZInb6EYACz3yK11hg7LUYZKsNET9gGkaht51QUkGnWOWRO_QuoEHbNsBW08zLkEuTaIolOHAMgO5a4ISrtTAxcUphF15DI2CtKmkC_ZfGmC9q2ssXBprTK38zgtQ6qEzTbh0BN2wBNU90tm5Qd7dX7mgzpt6OzZou8H0N3DVxkr1pMtR65I1fXNoLkLcqshrsPeap4YmmJ5pydn6IdU9dyhnLQaB5rhGqzF3jOLOQQEEgpq3NXScuVwmExhgImy0pucGND7Nlf2LTyg4Bh77ZeijdWjgrdKrr2gRjCg9c2rgsGs1eY_OIx_vmObMJt641HCKiS3HovlhBePIO72e6qIgwEuLw\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6863b3b6a52324-93548076','','','2025-07-01 10:09:08','2025-07-01 10:09:08','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43524',0,'cd-form-entry','',0),(43525,0,'2025-07-01 10:10:27','2025-07-01 10:10:27','{\"firstname\":\"Lucas\",\"lastname\":\"Brauner\",\"email\":\"lucasbrauner@hotmail.com\",\"contactnumber\":\"07802554351\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA5y_HlPeSgUwQ8VpOcQzhtYJUEiKhQEk26R5lMa2cGjITYQ3w1Cq2Gog8q1ArO3VZZkt8T5z3iQLZ9CMzWXWE2S46mjoBR8RxYLLhF8yhAWIxpznfH_TXEjrCqzb6q5xlANeQJXIqNFvWQb4G9z_Z-Ev2GI1pBi0lO1GbLcKCkHho2z_c0FQ_O9y6T1V-8JyNzYAl-E4heBqx4vHcGXdXPXYbuMzk5HBJB0xZzNapzwrK6WSi4nQyfjPw9Qd9DEMu3q-Oz5kxZdU1O44CZ49yuA_ZkWO2f8camyJ1-YzMQ2QvHZRFhPK9XI0t11hZLWVP7YGU_PgZCvpOlTdbPCMmmBYxZKNiVIW9qO0mbGTG2IdEEDuskPdGOMbwaYhjAD1MWR10vgLDGhsQz4EHo-Pcfysd6BVCpKuD9cpGpgfcGV4TGQRGuwX8GGSz8Q8bSmq96my0q7c6EGHTok0pBPXygPAqKbfXFMAmi9Wi8QOY0E5ydm8AWz14cLS8YfRm4HO5rlbE2p2LIXIKy2IDmwozV1wUQAZVRIg2X2kzfjpjibzjSpzcSwU-QLP3x02_4IIHcQViE_rDGTjRZzElAUmuqG5Vpz6IholLZbOAYXgHwevhljT94719M_qHpOT7NZHH-4G5OIlWard-sQBHiYvHY1qK8mADVRfcTOmvehALUY3QCJCE13diTm5nX7_xWM15TZQEupefQssGBrM_hQ3iCpoD0pPnMjHhhtSPnV9s4Jt7mwUs2kTttQwO0QN9qKQCV6jEmbKW-O4mEMtRoriJX50Ck3ppWqBYrkZfhgF0KUnKLja9cGV07UDwDG0rLsDBLiFRYJQDXaT-RaGCEuMbYZkikbNgigGv0yBV3TRjlle6AYIkG-3qDwvoww520nit2mwwzhevCb5S7aUN19eIezTi2ePv6O2O35eSczDlQWTuMtC0QI0dGrkfXzabrOIqAu7ApkvuTyT3FFPa4YnEHUSDISve-HHliGsIP1MKTBssXLwwyE1bfHujs3rtszj6_b1Yl8rugdF7psDUmXY3rW0I5bfD-R1zNaz7MIrWvj8hfT0Y9FWBl-i14vF1LYEIBRV044HXLEBbGr3Oy_BwI_Roc0COsW7ur8pKa7fSgd0HsRAD60hvS0_BecdZ1n0wFFUJmGw7WFdULyICmSUjNhl1bFQb33SaVNE5lWcV-SPoUeU2EyY77YV013Rt27jFA8SNZkhHFEHCyPJgat1x2Dy7QTuyb80shHYlzsLqSUb6aoGOaRvs_oBj-g60lnGiEuR_tU2ZZFRUGQssdqWwO6q_AJloMMiBzZSZUlvSUK0OU1GyLgULH_1k5-IO9YUvW1MX8K-QKJYy5pz8IuHem9pp46_44c5ej9AHJU3DtBpPHhXCPsYz-WgnceeB7eGKZZ1uWFeFyOVk_Thn3oD_wdSO4hZUmsLF9sV1W7tHv54sRyJ4Sd8mCDrrWMoOWYJZI2WyNXriaVD48TtwLdul_LIwl1GHbjAceq9u7SMZl7zTQd__ru3sYn-CQJvgEKzzA7twn7MLb7JAVUrbhkF0eXiQ_4TsMJe8nPjfCCKWXBjsyqL0Vab6eDLE5sRZ1XDGSUynyoAQO3uCrvyA5hfJZBXC4ecDvCqiNQ-XFghmEoZl0Qjq7c2FxueHbZ0fW2jHXd9OzY3c9c97oxqI52U_DVi7yudz0xJi9BCyFxbgKRnxnbxMMuymxVpFMIMI5aCnLzjQQ_pTcdgZov9Bt0sEFqy835MWiAvPMfnWXPtIsPdCYr3avnVFVbLbnGJqSHyH1S6yqv1kRudirtp4W37B9OWfksmvWQOXeCZXtLsiRBwEIZsW3n0F_sSupqSSYZSxSfNSUQoSdROMftOW8AjrWaalISm7EFhPprImNfJIhRIs_LnHtxrnjVH6_bAkaOAzVvMmjBza5hjYUFM4hX-zuXxZRYlfijWz3JBIqsNZ66tZIzxj4FbmgJ1m-OLmoSuOD6D45ueAPAkVdQX2gsuJIX5MQOpExviwNzsuzqXRvvF9zc2jmE0kdTVnzpDM22Cdct1IhlgzwIlLWgIvhAc2r8SbOjaU67B2kyKAodiaoO41uecitrgm2tHiBzAbLaxYSK7AKWuJwfJDZ7Dp2VKOl3aj_oT2kZWaqtaN5uYWMBnKJxwWiOwIj5p-sx1hiX_DpYmGSBxVpW59BjaVYq9Y5uRw1YcQ\",\"recaptcha_score\":0.3,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6863b3f67a1e46-96538491','','','2025-07-01 10:10:27','2025-07-01 10:10:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43525',0,'cd-form-entry','',0),(43526,0,'2025-07-01 11:06:35','0000-00-00 00:00:00','{\"firstname\":\"simone\",\"lastname\":\"leandro\",\"email\":\"simoneleandro-br@hotmail.com\",\"contactnumber\":\"\",\"pageid\":\"39249\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/\",\"recaptcha_token\":\"03AFcWeA4dklbsqqfJGfc0aTd1R5jDGaCZGl-byjyIx5JxAWkohatB81Shgs4wMFDHnmUd_U9Xl_b_ZEU7Lmv1A2aHJhe42g7mc3CQv1DahDbBD8USEYLqpqk43iMqxCdtvG27wqkOcKm0mpCkuTGSSzzQ-OxKoptM75f5cnGaRCwK2LilwZNl8y56zgLnSjhvfyiRMe7_oadIIq_qgIH6IAPDkCwvsTivM1mj2DbCZtoN73WAO8C0gRN2t4a_dUk8PqVO6fgzXl5bnqww34hF8FkwWhwhC2Xwpxa83VuempqNU4kpBeKRfPkA-lSUuf-p9cnyIhgn80wUUMjKtbiOJFB2CTUIbqNPyJFlMljA3uQ0Fm1dGCGHsXGJIeJP3KPQNcBO20-6-5s4rbWcRYsy-ClaNlkSgPLmOVYgelTKOg921N_k5vwJOqxnBn-yKB_XM_YAy7r1YB6fbKZQ7wAnt3DetwsCutpH6L6TQ2jPpDnwXhKUk5d2eDOXkJmF9gKmgiUjBpqjI6979o5vG2KW6qPx880Ns45DJLAQI3J-tvCDsptaTJ7HPbJFPxnNQa97vw-N_M-l97YJD1tdTEHubPPbGIAZnqKeONFIM2OxC0r7sY-SS_AkPf4s8fJ0IoXCc8z_ZvMHsusgABGiHnVk1oP-BVFxOtCuF0ySIQEsF_LWSLTSe4B3p6cBZ7B2yDgxreEsNED8Rtlbsd0_uJuLMXbzeuw0ImH-vekUrQ0wy92R6LVhpzJd08JerF5sI-F8Ieo8PUqXqLaWtRSEge6vV2mL1u04x7MaKk1Go4-0OusKsq8LaD5JU_gKkAdTy6T-5hLqf7YynA_TpU6XivA7MdeXeH04p1A3qXrXTkwPeYmiRVchH9Nn0gfJ2r5ESToGUfwzVvaStQbzxBGd3XpHMOkKakS0OirjyVZbDyKGCmQiDx4cMJ9rF7H-70PAW97aC1l8fD3ydlBQddWb8nEcAw2jmzrdRkEbjAyCbiwmyma8JYkjS-U0DpH-oKRru5eMx6xBiE_Yzwd02Zo-he4AFmsx5JZLGB3ZzBR596G25bng3j4VFOixferH3w-B1lRSa2cm3NP_3QPzinx923o4D3VgoL3gSxvKQvmFhO6I2gXBNztOr9AgHnY8LK3GSQjkMSn51ihM-hW8mr2sxJUaPUiC-GT9SCGB-inqZX0_4HzCAGYIpq-ws_MxS4rrkhxzMcYqXJ_thaPYoc9h1rs-RLgu9Ko-KFGv358ji5rmGn7u8AmvO3V2TuWM94BWP61mLkaQP4sY5Nugm694l2dRb-n8bjou1b3KDQPrUnfNWQ6A7rHZkP1ezWdqNKe_PXG3Pvsq9oNf6TK1n51AjqtUcRnqq89D3hTxWrEbAdGpGYlmX9kM_utKVKAZHTf39EFWvmZl8yu5TkpLJlsZog0Fqw4_KddAcTq0iVqQvazEOxhtrrN3-AcXddmD-vTXN9LlBZy7TuU5I3HBMNAPg6982Sg7ILgyFBBz2KPfUYAQa-Uj5d4xpipA1hyeAD69jmNTR_eZt8VL89_hYjYbav_HHDJfIsPRppSSL8xKlqkeJGdcvtDucbrDAKhg-EVFis1BuV31alQcBQw1EWAmm1MDCJjpVO-N8gu6bHuFVzjLmHbCPrKqH90HFL2jrqL3xFUqBdk-kjoGZq-BZlV_qJmKTvBvU_WEfcvrcPYoBB13LPP2v777SC05ccTdB_W_4X85uqfRkocU817QuY3yGJUFFH087t3kgs5Zk6m28jw7__hsro2ayclmCRjT0sWQeOpCMe4jaBkwfJueiDLJHnODyF9Xgz_VEQ2YqoxpHMJEyJW15Qgeo_1FK3-3ilSAKv9YUKPfRqyoaDK5Sjy-toC1EgUA9T1IC69-BZRvGOxKSQNc5eqKVxm-lxPWuZGgU1PghDud7sA5PWCuOH6mGta6oD-RaqCIp1_kTkMtRYacR2L_qG5IHitqoWs_BwVqOKrwcCRFdv8LcnNcmiHtuHkUFeEJbUWqFU7YOAbl9ZsNs7_dwZN-mXxoG_AhF5Ov4RuUE9z3J1N9Ih5M\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6863c13b948d48-88318283','','','2025-07-01 11:06:35','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43526',0,'cd-form-entry','',0),(43527,0,'2025-07-01 12:12:25','2025-07-01 12:12:25','{\"firstname\":\"Mabel\",\"lastname\":\"Barreto\",\"email\":\"barretomabel@outlook.com\",\"contactnumber\":\"07487640808\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/?utm_source=linkedin&amp;utm_medium=video&amp;utm_campaign=gobeyond&amp;utm_content=becoachv1\",\"recaptcha_token\":\"03AFcWeA5JDufl2hZhC1aVTPV68LVNTYnrzyVGoYu8gQc3byfUwLW-kGW7W9GobMJ77DJY4DHcyGltaYDWXIs-SxYNY-T1HtDHUcBTsljnK_YcPubE-C6xOMAODNJZ6AlJW5QxJPJSRPzk2B4FPEs4T8P5oevm5qAVulUgKMdsHz_TLTPtbg7cwIA6-IHODGrGZbWAw2vqmr5ZXkXHM-6thZ56YGZUNRtvykSO0Z37zyQoGmENs55A-PbQBJfkpKlH3rSxPtJx72yPcdhyHJvMKIG6BLA8EQZ4nb8qkN4bPWmK9LwbZHNR5qPtYnAkle2UEeGL2w2MxBo87H3qZB35f3uxotFaFuAz9yjn7RE0EiAgckeEaEIntbJeck1KKetiLHdOLOHeP9gWVkXpxeYDdbG0I4jkGCXIFDGvCjWET1NfJc8_5hOWH1hFAPiK915nkck11a18ueC_foz_tZdAbWHTw8D7YLU43GSAivyc0_xLTHCGGOz5AhrnNBT-ECBAkKyGmTu6IXZid22wZWopajK97sRbBo8RLTFWa_YeT8XBgsazlIKDI-2EGKKDpLHu5NQZCapI98hbqqoM8IqXpnjTRm3m6PL2HPcBqS0ALR551Sff1JQ-ZcSVomjTCVjd2B8Upz281BlpJmeJb-2dXsz6IGaZ8WC3nKcqsN5e-Um4q7O3Hztgs2z96MUXN-1QNLxfe1xoTZe0PY6jXEpGg4OhvngXPv1o974Oc-w9Jq5sbaSmyad_RYUxrS9T2E08QgnGhf49GunLTQydn2tx37d0RJI9g3YuvCQZBhROCBaSEUaCw2_c3vxALoFhXrpPslZZXMl_xnsxKNr3VvAoM0ZXLBmbkGLT95uOCjqbMIQpnOyZP4_dv4ZFhYsQ2iVhw9xwAS95Ky4RLiEpZGH0MlPh8tfMstQfKFXcazIwfUwIg6oZDwMDe5DgcPAwLUk0bj8yCRn1CROg09suGSiY4kuMDfamMPwkdU3iAYAxE_mDa9aJ0QIuEhCnU0B0Ub02gMv0CqXxu1k7078ujIKgtKuH3Y2aAFYC7IPN-JNU7CQaBosojZmTgOWivWb1luiu0slaPaY6HV5JlxJ-z6oMnDNzakKnDAbste0Lte4Unua5goJxnonC_D6nKluqbKbkuVt_iNA1TQ6CJkXhh5Vp-kQgmx7U7JvjPiob86ySq-tJ_zlN-lQ42yxTNHoUtRPj3-ezNlHoDEaWdqMXLv4UysY4tCuXSM5mW4-mT3TtykUfaWl1iBiUSQv-49jP9YoHz7bz_JrJWcWN3L_hHiC5kCut-D6ZnwTEFqxe5GWSP6X_38aSmwg8A1BPE_G5xSA5FVyG6I1HAt2Mt9DqwnnxEEHo9vdWu0M-sHghao6Q546k0zvKOeU6uXudEw9kwnISp0nHwFaVrc5vWUI_L0R4SEF5hNXj9qh8OjHFLn-EEjt3Gs7tk9GTequHO5AxV25L9fq2oipGRzfjJjYiocwmMAQC4xYiFUh5cEMhG7N4U4yb1l2kCX0Eef3-1PdsPkvKoL6IWMcXOpNvYeJ4PMMVmc-3tyhRXtlu_C6BO1S45Nng3MSnmaPjTLw5cbHur6PaEIm3GyjOm0owo0XnGyRzS0NC4CX6ZPhAZU1CY64BzdfLoQxI1j4quN9_ojUCDI2GDF63CDgoY4cnW6Ay-iDIoo6CFtus6QkDvzoxtoAlyN_SviH5Pk_W5Wh-h-59hGteDBBlItMKa5Z4UE4H-3a3qVIgFg8LsEQtjVTrbwCgE2Iy0Y0G7TlYfswNLth882fQtxZFT_iMl56fdrIEuXRgwiWMrslLAdfiKu0zGDYYY34nCqpytVrWV9D4-rpM47bQWjLbT3IPII8ynWdQ9oRC90PY1wbFUr9-XxsFp-jS9qOqg3RXLigvuCcVPUwDmujsus_c0Wo8n7UcHBWU5ppz1uDtJHEwzg3kxM9dpG5oApn6z77f7r3BYcpMUSR2C4K8gH3JPdGj9ysG86dYmo37447FjGVQbKd1rp08dWS_P42ZdbHeDzLyOzvUH_wG0JnPZatddDsUUv1ZbvPN5IR_vXGzXzT3V75BAQ\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6863d09386d008-92383023','','','2025-07-01 12:12:25','2025-07-01 12:12:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43527',0,'cd-form-entry','',0),(43528,0,'2025-07-01 15:56:11','0000-00-00 00:00:00','{\"firstname\":\"Jaco\",\"lastname\":\"Lam\",\"email\":\"jaco.naturalifter@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tVR_a4_C_I8XJQ6PDWhagEc&amp;gclid=Cj0KCQjwjo7DBhCrARIsACWauSkZ8wv3RS1wklc_bY5wHzpkNSVQX_i6HSc-Nd5koYFSze6AvLNteqwaAoqvEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7B63iCgkgvGxyGQqU_03dr7Hoau5VbNudjtdIBLvP_FiioqTOy2q4kkCgoov6DVU9ePtarWmFABzNA4nyQxJrBRuoAFIrSOWPGCwK147BDxKIFyG7TaeN5BPUOS6je-l863KCAnWFwtpbqNbm8tWC_UaOxyw3_EnXtbZFGP9fGwENFbPdJ4JDN51CmYe7EvyJXWr8RmQAA4ZjnZpwpFXJKCBHrpi2Bl13MulvcjFPBygAFz1zY4iIY4ZqIXvwXFrEosmU9C0sOeOpuiCbsPpK8Zf-26n8IaPE47js2Bpm7LMgOkKHbyNFNvPvvH5MjuZ0cQCYizxM-sP00Ra1M4-zGbqTjHFC5w-XMFDWvDXBnbOnBH1Tbf5TSxlzcJFKdGR4qzCMt8EAQvYkJj8t1McSJBY3fvJLImY4CLB5PFDviZmyPHZFsVOHRGT6Lrszw8dKuuNzpjdmJRf3XpofSWavwiNxVx6P2Z9GXXjCdTfcuogyevBq8f6NC-1rYDoIiaAyhTyUkqNSnHoDzsSVeZXAKjLaUZBZJT-2g4yn5XuG882mqXKgR3mVgMKuvH7D-MwX7P5936mKglb7tizKr0SftiSNf6203BAEapz57ngA00LbstDAkadD8v1zcIF7Bu8iYwSgIVZ-8h7ZcJ1OiqGgS4P-7yoderIASAPBka2cMcjqG7_H5wvxwcRlOgC_YuSh7bujwsqRCFUaujHT9nIrhR4stvV4rwcP5sRRCDLkJVu786ZkxX2Fwl3i-bQPWkT_vz6FxhERGQs4DHIcDKzJzaLxpd5-rXZhmI3cqJvbFerDhedF2cZ_8u336lqtfyoxL7aFqWWZqiy_ENyQh8VfijHPlkEIm7J7W22yxIw8sszlKQ0mBA6QeRYJFAeDlbPidC8p2-A-V31QiKahiOj61Z6aFDpii2JG7r-8aFiidD0rAQiJ1cKCl7v7GB0z2dcuqWFhYWNYl6nz7CY0EE7G37OGWfrmJ5F6hsacA7bRh1eo5ZSWs55VeaJpBQuEVnZ75-q1A_sqiUAKhxvu0dNtCTzTtBTFNrKFa58DBn-c0xKhx6tN2eyBo5QzdbUCBmxscPV5SPusfUZOiXPez83MF9Bos5U_3FL9wuHU64-8bq2C6nATwtcNf-idIFe7L2a6Em6lg9bUao1x7WRmG12XKdcf5a0UHxZCm7pnUd9JNdc9wWFsOYlKuhKucCDKj-16I77qhGVu_LB6jktacwNgYOGFBtKsUtpsUQfk4UJ0Q64qD-ph_HWbjLciZN6sXNeB4ya8wnvUS4FixotKZ1JmfbTMzIjVjVZcqUSvp-SVmrNmir9tyJit23K2OzXFG3--3QMXrTVLYxd03ddRkhBJlZ_N64pSeYlq6jtS66UY5TPStPnS7Th5--IVPEkiPYI8PyjdmnWytx68nECurI1ZTEr3Y1uFrpTYWX7VD1bI24sYlwp4FVaf5aM96cZPlSDaLdHpF8ibKHrsdxPNXdy8SHDyGTt7UArCtD5vhVkINKuZUBQ5DTPVRWy4YOL3kOWu78VS2Sj8FXmrR1AEfRGxKNsbBqKOgCEXLuRBEQdsIroSZZZBdWxzCOvUq_Rgv3aR3COc0zYik4myxGpvXPjHznvRFsHA1RtKlHLt9CwzNdK-RCDK9A_UYczJiQQG39Nuhi7MFQGHn8wbrJgFHFTsrjzXLZRINJoMK0qH-ldStHnVZmGxWeOehuO0IpbRAje4EWSB8mfoX5jdYDbyS7okuzGMnxO0FdEpE0u9Ku6OwgWvvki4YNZ6a4A0EdtrGgHn9OWsTappM43yupi0LN7BunHN-hoOj2xwNjlV9fctBqD2palqLTUrqNZs9EwzrDM3nNWwqyPUhWFQ9lcpgxPoSaOGWWBN9yDF4zQsWrXApVSkFpipupRUdKcT2qXvag5oCcO9YsFR8jC8ULz-iTaCd-GKlobKVA3tMO-ehO4uBbUumlsdlom4MM_T1-DQ9AqWxrTqeR5MKdN2VhLMRFaNX_6dBTPK1PIpcjvOgF9DoprNY5YSbo0ohVs_kIKZUXN9b6VBRRLP68XeidL7UttSyfSUMiNsItXNZBXptePrDKAOBnLg\",\"recaptcha_score\":0.3,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6864051259c8c7-29731876','','','2025-07-01 15:56:11','2025-07-01 15:56:11','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43528',0,'cd-form-entry','',0),(43529,0,'2025-07-01 16:01:06','0000-00-00 00:00:00','{\"firstname\":\"Jaco\",\"lastname\":\"Lam\",\"email\":\"jaco.naturalifter@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/how-can-biomechanics-affect-mobility/\",\"recaptcha_token\":\"03AFcWeA6_dysCz_ChhwGaP15Ykwt8WMrgbAGoELb9iHMMnRRJ1ysJ4pcqSzaifDT8WGhY_peM1pQqJwVj0oJgrZBEUVubX_SqblP6SUspiCA4IlmMaVa5tj-VrdQXbh0KdKSmZQTprpxVOFnBFD3kOCj0SCEgdQrDHxaCquW_UjIx-yVCsrwu64M2GqCo-AgTTFrx3UkDic-9PNC3VOeqAk28uZY5CbHRkQ6cBN0vWtcWe9tQecw70obFuL1VnZLelIyF2Zup6tyF1D2NFp-eriSYUmRZDQrBoeKloaT5yJRBWUm6kXjqX6E_-FtzvERh7lMWSxM8Y8thLooJ7b6K59DGsdGIxgl9N-yqt269kNjlLZOV3mx3sET4H-sQrxESWe1vhbs8m-SK7QhZDv-EEQQitkyedIRSuwp71r-tSW8vV5zKRCOLqGx0ipKdwjmW03ZaH2lQcPiAd1N9jY-DHi8UeZUUPhLjz_XPle20fhL_TBekI2X5wYpyzxKNnnJ4UGUB-fzwSt7VNC9grCt9ObJXlSXkDZh0h2pMBhbd5UpUz-y3NKhh8OkCRa_oqznTd8V1JI3qu4SAxPVy2P_hmRMWJ2VdGL-ewW4OAlccGGAFV8MT_WwG0CT_OZ3Z0ia8MF8Cjf5tj-UngBZsyrZuse5KykGiomq4bIB3uBv-CeYOwrjlSXvXB_Z7xhLJ12qnaTxcQvOnUaABs0TxQY-m5jMx8R3mfle3kdj7hYFDAkXQrLV7KgsQHDISj7hyCAo5zAHAaSJwt7CdUicUnkehwW-GRc36tTOO67Yqp8e-dD7Y5pOnt1uDUKw7WewhWezLhZI2Ke8D-jAa9I3YA7_NxQA6e_AG49ClzA9XLKjLIJXQJo64FhuTQdAZ12hW3UKn92Uodrca2ljDGSmXj9EufouXuJhieDIxe2EvCZkCVTiFcSsPKZ1w0YtgM4mORtkt98UMqGa1qb4ANs9StT41rUqbTzUmQ5aSXe1LFcantzqky9MsO28Nt1g1TCDjLch_pGkO_XTqWZOvlZC5ylMXN8FkAGdVFU2I4qrpciF3_cBgafPmlojZWI00TvdUPxF-ykFRkKL2td26AXc-smFzpVy-jmUFAwHhv5BmlGVkI-CEZbA5pAC8RPSVVJDR2jvVY1rbaUx02U7kn2GnnHiq8fkO3qgITSc4ds8_td-0fArpnxrEwzPf5e9ygmp36Fm6dpbC3hcks_dMUipoA9JGrTyndVnhnH9AJiTJ6tEKx7l7F7V36e8mtAE1YBc4oL0SIqz2ps7lJ8vs4aKpX9VGXTvgnOTbtYt34VWvWGZhhbCfgq7CkxOlf76NAiOuILPAqoNdYt5Yae_N2Wt73ovaQEG71w1VKJIPdx2yxKQhWh1gWVUy6nD02UVrDmo0W5TRj3qwis-1YmN-9ry8A3P_sgbDDBDL9sobLdult7D2_DW4CtQAOxCllAXAg69J2lgoGB4nB1m0OZnUztIPt1cEMKnTL-K8H8s-bIoN0CH_ppGfVMg01xNrGNhYTlM0CoK4AqcGiuk75SZvfVu6HgA5-Hm64sKHDIyyqc3mWfIcFXAolDDi3iIQ_py0wE1HJWeOLTZ9e5VddZ4p3Z90rOQKrusTtocIprsp0OC_2tlVubHifHD714IBGIj2dRi8SPvgZz4IT5_q75TOrBPjxf_NPlocSWAkXfw_gVgo4J8ZCrXprcsevRucYAOCdYgnMy66Pl0NkEycSQxVw8TOAi5u3lBGXyPfIk2D-BJE4UmFfsdHmnV95NDZ9ndD4Ah5c-Ty2caprWqMe3NVqO2upwZio0IDRWaKlyAUHphUpICM-meu7C64hEbBx43jyRtxurlRIxrwoJCwcq6soqQxiC6JOUAsrewwl3OCEcHTioHm6HIrcrPeZ0TJnO97HMbLnsb-GKHsv7HbxEaDe3TxZV-D33O_YDuJyVgZZgHsg9V4AT9lflyn4zjuywn1nVrr2LPDrzPJ4DcYW4SJMbwQfK7_rTnVkQDx8GProDLYB0VFj9UHjKfJM24sL-Ps6V4uFfLwnRBYqrJh3Xm8gIiclxs9uLUlsvTF3v4Z4t8eq_xgD0pVDRXPEq79cCValpk8Va7Ez483MrYy39k-jck13Sk0XPXnd-Sws0BD5LfYusYqaMSMnDHoNVdnlhe459uk6q2t1Ob-5gPIeioSQAoCsq3CIeghVnQYykRnPvGGValZztQfT4O9cF2C1XI0BnpMDx15fwDMDp7EQEAeu8ZpASntHZfiuVaEPmsRVnjt79XPftfUrlSbTiiLrQfx-2hLMw-9OsfR3IZHXcgDSGLbnYOsjehuSw5MdS7Pbw\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68640639f3d463-97095710','','','2025-07-01 16:01:06','2025-07-01 16:01:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43529',0,'cd-form-entry','',0),(43530,0,'2025-07-01 16:02:36','0000-00-00 00:00:00','{\"firstname\":\"Jaco\",\"lastname\":\"Lam\",\"email\":\"jaco.naturalifter@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/how-can-biomechanics-affect-mobility/\",\"recaptcha_token\":\"03AFcWeA6dHdqn1UMMaGtxxAywU96cJvEfutOMpGyfm5ZBlBIq-rCAgqw0O_e8kRRZ5jWVk81kEyBFD4DZyHf85xD7CWgXcJt_77fTKinVdUgiLO5oNsuWuupNLJuBUiZI592Z_QGELaV4VyUKpVbRUBtJK2QYczwt4hKvhsZAiHcxPk49-Ki7AEeIplhj-XmAMG5GwqPRrciSKl1iGzIjNxbCd8LSKvcb1pP0A_b4a9Hh8uoeouhFH_ANURvA9gVZCPcN6rhI9m5B2bNbWLKRxE7y3aLz8CQfbziKLeNEzBXxB0TwY2DVNlV8LFC7Bso4i_nx-aE2xPSJR3TVHXCqXE5mzB09zX8SVFrwScVuufm7vOOpW2GehhdRuXuuKcfSMyZHGAt132uu58dHuKwVTGtMLCd_E6Bx0DMicgq53w4VoYzpm4e3KVPkkTbqfmCgSdocGndkrpguL5OINkr-T3Xlw7zHQe4nCR3QXGPUNeN83rVvh6Nweyx-NVFG_SmNYNyVWy162ZhRun-0LLxv0dPOf21mRWVah5JoxeXAkkYkJzQReO_DLEZvPBUMOfpjlYsix7GdLOsUnhjeOK8hLtfjilOLA37xQeJXFWjoPTYKLH7_-EQQ8rmwabGsJ2gefD2D6p9cQrA-3fNC9WzE9P1j3vtN9oPJnQUFt7g-94Rm3vUw3j9j1Tme0gjgANc-cx_QEQlesIEsyc5Hw4B6vBjMWBgVZgxkJZ6aVJW3XJdIaxUZE79ng3iQq3uwnRUnuoYMhPabFyt1arq87jh4l4_9HZ0sbLYp4l8nHPNyeNg5oFoFSnos5vKkLYsc5db32tMwuj8WLAl2vg416k045pvneonjszEnH6BNtYj-jCAjLpgAgT974o-QqgQT2Svr6yF5FOPNf2vl9XrWaehH7LJVV6T-xZ4Eg_WEm06eOZbZL42bz6YPfW-jI9qw9cO5IeECNNKJIrNKna721FwCe7EbRlRzorXl817FdkWj27cvu2mywkr2eph44fdyR1tGDs2_m3bDRPGhVpjwWqnILZsTdMqiAHvYgEiI25oodC78LbZ8kCBwQeatHcvODAdKUER0EZpDxrUkIhTG6cZbC06KSMlKuvQpbXHwmp_uYH45XXMRBgx2DG3c5lU3gClpDn4rColAtexrxokEM2yT4Vw-ZgeYQYWo38lymc1Jh91Eun1BxrQWcx__0OKM61PCbYXT0eq6T77rmNpigyk-D05uVfjZOTwDiaGT4e3GyMwmCWuGtbWiiSMLfb7fwbsRr1Jf-AoBHxX07sv7R2Hsua9A85wN73FxaICt0CwL3kV6twsHjra8IJerajZ1pDPRLNbmLg9DWO9bp44X9hXftDVkwnV-byjY3d5BCXoGeJdSxnhAK_o-jBJYMO9313uMetT87o6Lu4e8LG_lp8hlakObkPgrLF71ZQF1eSeYav7eeYwIwWSj1skkVLpSJvT8ekxwLvVeQwbFUtJ3JjYKZMo4hLJhMZB4hJ-Moq6u5L12PBkrz6gZgmNXGpt_RU9i4fT3KaRm646wl-UX23zS4GQypRbf-2kCULFnLo5Pw_yeiC2-tBBMMbSXxQKVDgGxyCBFHx8tDrQOjfF9WAlmEyxR5kteOWXKmfJejMrVQy7W3yC3pAgVecZecVapUeZ7nAQIeFxV1PW8g1SPnHBl_cR_KsclV1NfL7CUmYQezpPCsMfxU3RRm495YRHtITbY1_qBXCNm8kqQ-SbdgOBtrjhciDvhDZ3rrWUT1d1XPNrS4vynXDvL8m_1QKT1qfgaqFPhGE1DahFGcV50Uwzv4lFRlDsbk8UgVtarIJnuauElkvobhbP9rE8kSVgPazJDvDCV-2Z_xLR4y0skg6LCnwYX9DHD3MC92CnYXgW4r3VjvBed_jM55vcUlvFIVYFgAUwc_EWzuSThOri4GQAKTkRVHbfetSwhxy1VbWhYmoUUmgwksyyCL4Y1oRruydHaJVIjVIpADThoLEWvrdAXz7G97rgDTa2vqBdpLoMZfsI1QBOilOTSBqbyhhUXv0-SS6zCiK1XhlgWU0Uc3ck52S9CnQqKQnOPXHgZVPW5KRlgCFZEk5kQBGSPVYSqfUKwYJ9hfuGw9m4JnUcuAZ0_Lt8GybJlAIPrBKwxVuMKdQC5jK_jCQ2kaKVB_QonzbAI399IEtoHW2Hf6rrT2Rfot_H3vfBNddAQ8EgPAQwxBkjde_tGDYsAhOm3cXD9AdTzrGFz40tSydwg4tg-U2LarBDIrCLYO_7gyuPTh3pBDyEWGekp7yLDiOsCAp4n-RKha2I3oLDYj3amSgEBzdcapBYQfs-HcIcjTw\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68640692450b72-33121020','','','2025-07-01 16:02:36','2025-07-01 16:02:36','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43530',0,'cd-form-entry','',0),(43531,0,'2025-07-01 16:07:05','0000-00-00 00:00:00','{\"firstname\":\"Jaco\",\"lastname\":\"Lam\",\"email\":\"jaco.naturalifter@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/how-does-understanding-intrinsic-biomechanics-improve-overall-health-wellbeing/\",\"recaptcha_token\":\"03AFcWeA7l_COGdjBoO5Yv7mL30TaN-2_E0LIPrB3EXM1pbd535-r1okFq0rTCx5BpkaTDWvjD7HA-I5-aJ_VsY-hpE_eVHOo-njuBDI7bSqY8f5s-LY_YJtUBnwWkxtqebnjzpovcpkp_q_ReMrEY2zFKAmPyQTtNF5uQNpNPec0jwBoFl-F4e9vr4LnYbVnn86CVJhahlQgCaqKOf0Dr24x8WIpttBZu4aRtu4LfH27akpDcG9kTc_mdLwj9tMoFdX1D1JVjYEtvfdn5ydgIxQj6tNWgOdTLiTx7u-dLuJFktmJFfLfMq2XBkkcYCx285ojFWPP0C1t8E6UYcC5nuGkHQiuu9K_o0jnF2yIRp6PjU0UpO6HIyU7q-lRNbjNMiQb4_H9G3z9WhjkSvQFrh7WyXTZ8VbrP0_t14aJJZKDvVFzwCaM75z7A3ObSVpfKBAUic-3R8ZcnZ2b1XYmbkUppxdrho3uUiQTJIbciaY14yUyfySLlWheO0pH0INUNyd1-zU9yiBVjbTcsmGBItrq_clP6GXFNH1RkabR6jtYMYqZzP6-sPK7mZoYKd_puKLPBxXeFTVkgEZXOLH83-8OqgYNn6aswsaWBxEEX6hrGfFg4sjHCWiJskPF4kolOJPpOMsis_Of4OCs6DPDBaOKWxmOq3MQQRzCVwkF5jVn2sNJUQQNCEOd5LwImCwKWBdXMaVa3FUcSPqFk7fX_bb7LZzspjq_cb370U1b8d6B2R5CCjnbT6KiQxAwTUjjihcGXXq6HYOszQOgLE3bPBSo8_Wmf7vl0zlxadG4H_ea64lPs7eioLrrfJ_eM1Q7BKRJDUC3mw5cABLTMZhCUFeOznlDEAWlCHo_cyd4HPNOdIl6_WswAM0HjV7_ABqmC-ze_uH1j2L2VZEv55ubsF0iPadArcwjQh3l2mRonU6F7NJ0Q8V4eoa7Jn2g4WA4NiK5ebpceKOKSffDExsBCtXUOkkL2uvBZg_8P9yAr6Z0gHPqFDVCYDc4vnVcuNA9hF2L1cbd40Q5evzCCd8lJFQ5wzWApc4wL1OgME5p6g7ag0fRRaFUupsXeqSinhQtjUx_fUjiQVFVS8wKjdf_5wC0dbRR8MVt1b0XwfMl16rpgACLIRHLq0RzbXibb17gy_Rydi3IJOEWdBaC_5qMYI8UtoZAY-buqK13-2WTgDQ82ajNEN3-xOXF-FJSJmmYrWTcPwmkATarGvAbwqmT14o4GoHYnhNzI9XJKHXRLxtDXOZLTYBkoqMiHmZ52jP2aA7xYEcfctgaeyOfkCuV1RrEuLkbN6BLHNmn-9GPy93Nq5uJIojQn7QTP7GgsezqerOVm04hGdbNchTlKeUh4bn7ClD1i7ZFB0VaLlpGmwBBNwtih2N4zZ813atv-afMH50aBNm3xS5QwzQ9kQlN2Qk7s7dZwPyhMWBiZlsqqvJkyptnIEhNnxHv2NIqsvaWpxmJLAcCBwj4wv87N8oYXSXNEudEXtxuKrYvRECU3zGOjAVjVCfUrmLqTi3QnnHdKjMSo1CqBF26eF_B86U5MOUvTUySapCsHBZfy5BJ49SYwd3Dfv04quI3M96YqE2x9t-uFf_HVrq-eBwWLaIV1toxgt4KTFogGjSJ0fQLp7Hz4fokNJm15MWpEZrjwzbvGg2D-v3eERl4gSEGGEc9qjb3lsKED5y-vmiOd_Vlhbq_KymYZGdy3cr2UVwwplVVRNieLv3tcK4faYVZG8XTbvIZ5VycgUFFzT7ifLMPEfH4vCAS48lopmbrsJRAnrACuoHZggWYdP-rWlBz75VisqLujO_gUzFYRCO5gbWiDazs9MqNca7sRZgHMvJMS1ZOo4sU7Z7EiMCxKuh11Ll5vNK1uQUnV2PfR2HbpVpEnkykCFHYAorjDm8DsHiKNg_WvP6Nifr_BrMXlQV9P_j-p-jT_oJXNUiiuqlv_bIIl9COzaNLXP5rs5Qr--FAyJCCMXs53ywz7ZoqVCYDK7WnZPA8pTUroXYgo_n0GpQfILsHKnbVtRVsqjWDiJxk0saNvOcK9zC05TNlnTSP2dZAC88i4GlTnQyvqo67QGIOFu4bbNtZ9Y48yEf53yQRRC2ev6_I085JmxlysIuspBy1U9JmSgMXDHYF7vw62aDJjab_Dzf_hdg3QjY7ZCwkw6GF94AkyiMni4j69hASOHkmsao7znLZmr4HWGJ-2QVKu6gdw1bSeltSGlMY753bg5jwS_nZog6_aVz2zdgcN7gLmVk1flvaVQ99jf4DkmzssrxWeAVS1dwGwN437ZjowzjyiokCbKx8jRLAE-QkoFq7_kyrRukQHcVQVOA\",\"recaptcha_score\":0.3,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-686407a96b2730-70767674','','','2025-07-01 16:07:05','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43531',0,'cd-form-entry','',0),(43532,0,'2025-07-01 17:30:51','2025-07-01 17:30:51','{\"firstname\":\"Spela\",\"lastname\":\"Mrse\",\"email\":\"mrse.spela@gmail.com\",\"contactnumber\":\"07079127424\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/?utm_source=linkedin&amp;utm_medium=video&amp;utm_campaign=gobeyond&amp;utm_content=becoachv1\",\"recaptcha_token\":\"03AFcWeA5zNey9-HNe8DqzpSGlBIHgELwXWvh7WA3rKNQKK2vuymixGMk919-g0_x-XLLBuzyFwoG-B76W_SJ_8MH7zivECOR_r4IFoqjDcT35wHmLmLo3Ow503U6lsuOGf-gnzrDctfrj7DAtetUUqF1bkmvKarws_S4SSHatLEf7XO2g2mioP4_m3C2fGyt5nz0k2Bj-851okAdmW6uQRNB6MoaxCKeKcic8hGDWR6_C7W77pRrlNIDFQY31ylh9SmIuRiaZAG66tc07a6qDRvY5zZlqbq8f8UdQkQuMPVGwOD4U3xDY3sGTdFgTRwk6_vq_K8Lvo0vEKsqQrUrSU5oH62eNCwSdeR8BLGviQSj-iTkHeiAESyVcfK_tFOzWE_yFj1t7baCP4ckD8ZRcFqb0QMuKQ0BWBA3PN8NpKV_RmTB5o0u32vhgcQMtmS6mHmwZTnrfw4p9Q7c4mNX2n4QrIT3sppdXfhlkH8dnjOn7Pj-1ocLkWtxOsufX0ncO96kr-00sqrx74JIJGQUuKByR-C7sWe34gJL4vesJhqvazkpWH-itzdGNq1KQTG2ZoKF2NdnOmyTSySvU3XO2bXOI3RecZ-gN1Br4Kya6L34r7mjhyIjY4fWfF7HdryidljTxC2aMvc8DgSMwPTRTo0ZIZsxDUcpCG9YyRGAh8FK-OkznfKThaZMREvyvA14xmZizbOLFYAy3XmcVdBktUlMKA_FO5LswPHu_AdCnYWkabZE5M3ibB1ESXgWlVPbyu6Dqv3l5CqYVXXLO_9XhSd5ly2mLjGzVF9WACjWX-cd-p-ilqXz6d6OaiNTF-FbO2vwD3-CkOSbwX4YfKyrwQLPSfPoweqaSQgWQjYz3XwYkU7n4Cy7k-KOXt6BXoQU7gxIbdA4tMBoPNCQlg2LW1d_9uUwb95q4YedOaLROY2ntThG_PkWDdssNKHgAIbGG2lfnkI8-8zxPDP6OUrI1xdEANFsrYdSbg-7D45XDv-nhlkH2vhQ5eJ_xTFn5vmwMiYARSW0cDv3g6vhpPwF8ACJBu79UDKA407_yt9s0kF3sqa_VtPXj71LLtcyrsiulO5iU1bcbR0atcKATrNya_otCqvhxAQKrZ1Yw8cI6DaIhC5GDIsig9U4iDPOVGxlPrF_hrkt_t7i5hUyMwkM9n5ZeC3W4x0TCdw7gLOKgYtnPVr_45-rkmOK1B53ciAj2EjMmoWQXlJSooxFANxueywojuJplJSB6-vj9XRVnA_xK7S-X3tz5IQelI2Jhtipov-LOkyFcjtnSiVtHmxsNE1T7OdRUmaMuT_nRoGq54i8gnAkPxCYFTO_bs4F63BhCIEmltpLOVNJAxXF0BcJgvvkP2jwwqmEKFUlsUaPqID_-p3w0N2RZW4vNBlpRndLbQO6s48xkSZ55lTCAuZO247LD0eq7Gx4o659nm80Q4fRn59jws-Vi3Us9LoJOQ7vusZ0Xrd_CCxFLnyKYOnUrJthDfWj1AFksRakNfSE2vpJfB3mOhvqXGujGY23Q2vX51TTQi43G1vqpCrgOYufx_xyYDjbUNZ87KYcnuFkGvL165VhR-ikzPIbkZ9ZLL5B1szegiIbL1BcdtqTvOENstNxoeAIK_q_0KK-8-AsB1ZdHqGBKD-4xrj49moXD71T3f25NQBDBeggvbw-67FfPliy2cJHRHTG2KSUwW52mqcXiFS05ER3cWH9_H8YvFUUk85qrlvufx11OQwCMy5V40e7kROVGiN0EF7vZe0AbzASrqgp7aWNfebEFTAgEtWaik6L5ScE83RCiIby5TA9YBpMSZDTZrAyzi3OhUbvIC5vW8axf-lWc598SyRZ4NoBh3O6NGtdG1OHDkYIYgpcI1rit9hbRMwrHE40aBygEv6zgORYnS11cgNtr9Zo41DAovOunXdp8-YzuxZpo88rihcVxhXr1YrY8W0FSxugtGiC5wwoss-P42Xk46hWdoGyIqT2WJVmXfhBir3apYdrFFlRimCmljMtpHybIJv33bFvA1F6hA3XI3KUKz22huHD22hiIwwt-OwWBCDTMIvGB2WIUbIE7MIG6TRcqgWfpDO5HnEEoXMgW-2KOSlh3dQ5F0xIk_PS2nsbZ_Eh97_GHYqY7v_z1iuhgXkiefaVV0sedyyMw3KYDeKDvFku2gt8yns0AhQrLOdQR1zoSaPiYko7vb7ztPsbgM9EczmNSTzw4chL7d2W0LLJsDZDQKLrFEZiQOm_iZnyfQXVK02pt-TYlzBKW-z-bXm8nLdjrigOYubdSLxu0xCkK_WX0stNoKKZ8z2unQc8vjkpsecocbYimV1C8c-ecIq49flSsg6H9IbLL7isFh845jib-p9WZY2G0t4j7H70uRBXVCh8DgZ_J6JgEHwfLqf5eitFDkI6gJh2dMJAXnNn5VceeH2ShKNGaqaDs64u_3-SxzzQcTqcYqD2rkeco2moMrBCc9LSPRKCwrBtetwE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68641b331b9200-28245824','','','2025-07-01 17:30:51','2025-07-01 17:30:51','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43532',0,'cd-form-entry','',0),(43533,0,'2025-07-01 19:30:33','0000-00-00 00:00:00','{\"firstname\":\"James\",\"lastname\":\"Chandler\",\"email\":\"james@eatwellandworkout.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/?utm_source=linkedin&amp;utm_medium=video&amp;utm_campaign=gobeyond&amp;utm_content=becoachv1\",\"recaptcha_token\":\"03AFcWeA6AXd8EOLuFM8FMGb7m0h8epdzP94lLpPNlHOpYl42B49ke5_71fgWXLLqVoH6S_ProEGexDpaXoY5ZyWwax_VZBbxNtX4XwPEiKYF2-ipOlH_HEzLPBuN8koT-s6bPHVx1Oc13CygiShoqsllT8CE4HbRJ80CSDVEYZp80SXXcpYwVjc4Sf_TKuNIOyyh8CsIqlmAAYiR2id7qVTv4T-TOgTfiUvOiL_69mhvxlU_sLd6WVh9Rs4OlWI8Ewg4Ov81thR3Clzot562dqNdK_0wCBMQUUD1raXxtDORcDx3jsh6Bv1S7XdFQjCPHG_u24wkH7UiGs50ZKKF67Y3FGNU5AXwbngyUaVIebLtgqwP-Yp691KU-XdOVeuaD4CkPQLO6zAibotNNaikh80er0tbYzKQ-2JDBgV-wppjbSxsahsuMw-szmWSFvKXh2UncQBprH2DLyzqAZ2TeoJtEeTDQaYwS87FosiuE8-SC-rSS8aA_PO6nAPJFhKwezUHdVSMQbYz8DxgcDyRGGt-23aqFnnVg4vwhJHjRemhD2YvcqpSIf9JTWOO_4iMCyDhdl6PZ1HjhEB_7Wn9sXzU4DHLoKcRWXBUK4kzwz9eoC77OloYG9mFAOoLfLx8vjIHIazUlk8NhqUeGPqptiYVbx6v4-ysSu4e0nySTyQ1XP9DQcGFhPYnh0puJA4PDlLWYGF2LXFZEXOBdo48H1GCZyGfWh3GDfobLzFU5ZQKwU8jnVHPmbwhwTu2PqeuRmuxJDaz1-2GJhDlRqlR_YH-h0yWmSzOKon_pzt2jQquAh6A2aAWQBEcs9HDiAxEnpQz1BS70nFd8hx34jPzGSWmArAv6d6kOqPh3_oRY-Hdrcf16CGBG5lQjZvsjDmtahJ3yzv6QJFcXjV9bcK93QidYN4bCMZEIcGmlfdNrOf2h_q_fiYMSPT8QAK1kop3eRBRD11Dz-hNoHK6HMKyfCywsSgXXpTBUs4ZcZ8Gq9WO-B9X8jKOk0PfgHamH5pCeDwyFLHkxNFXOm6eXZBpt65Rrb7Fm9xMHY-0QqANPAC6ZVuyq8B09IjCPrgLM0SdtAW1H9BpJVHCI6kigrtzHMC82iXaWZtKSOBH-gcRiXRmAmVeQQnyYxSRBTL_w77wVX5mgSwGc1HnYTldl8TZx_71wURoTLgiUlN6P8N6qrVQvf-nF8w8vSi1Pn1QmAjWEHWxW0Lk77vgTcX6O-jJxQZHOZ_l-_ja4VrE-YvKBy0TzFLJDUC_zPo4W4VkT3_P98axZEuZxXdVH4dmSyDP_ShakPUnQX-SQ-Rty2uzcc2R1q13oAyBizU8ly0Iv0jRVdhEZheO1ReOBS9FrFOsATLSoYBDz3tNgwQgfZbv_aSaexFLTUiVLqZta3aBgRTnYRJEOEafE3IcwndTf_RN0yvkctOkYXxi3cYhBHRil3s69U6CGcYTUs4m0z9Uw_H_aar1fTjneu3TL41hoA4rB7OOf6sSot2ntbJSGRM2SwDAaVHV5Qba3UnVU2n48ai2HUBd2sDD-t0GQMTiQzq8y6V7ksVpeO3wKqnn_JVcn-EkDJf2OD0qcHusCsO0Dj9N2QTd4Wb2AvZ3chiv4C0mJTIcHZh7Md6CDMUiqk7X4ff-bb2u6WMvNyV0u6sJ_73q8Dod53TVaobUvKXRuKobRrYvsO9UFmf3hBCspAZDFv-Ufxq7eUzoaYXjxAIWkP-oyUNgZktYFhBOJmihTqvnCU_-fcMP4ZTz3VKXD6RXSAaSzK9VYl7iypxvf8_xPuoAOgX-ocrfnYk7_XezXRHzaU5Qyg_5m75tpdJJCJcW-e_T3_fj4HtY2Uv-xG_EZIY0tkMd0jHl-jpw_09MO7TmEXew-gScis6lIBzJ50X9fnlmTXY96GetaA4d2xh8ZtpIOA8ob2xYnk-NBWzLkpgG3O4nl8U9GGrXlCCvHKteBHvU4vfeeQMvflxT3lERDe2rJpEggimOB2bfs8HDdtvsSZ5ITVZWwFh8l7dkB9NldZ3FY2cbY_Q2irC68A6f7d_1SnkDLomTEWe0UFbVCTHPV2Hjr6WQE980dJcisOVR2SuQ96ls2JmbPOKFSxV8ObRFSm_f0_ReCq5xzSmvXL1JqhJEEGkQQp7rv2yCNxnmhXIwSNRDki2CnZIByKNP8xPeIafJ4RBx-oanDB5MhCgp2BPmwU1ENxQI20Q\",\"recaptcha_score\":0.6,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-686437452a3c12-11364708','','','2025-07-01 19:30:33','2025-07-01 19:30:33','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43533',0,'cd-form-entry','',0),(43534,0,'2025-07-01 19:31:15','0000-00-00 00:00:00','{\"firstname\":\"James\",\"lastname\":\"Chandler\",\"email\":\"james@eateellandworkout.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/?utm_source=linkedin&amp;utm_medium=video&amp;utm_campaign=gobeyond&amp;utm_content=becoachv1\",\"recaptcha_token\":\"03AFcWeA7xzusC2i6Cr7Xic9j4qehfRThs4V71tu2rDGzx7f24X4rbMMNn7674YbdbaVWjP1kjqwVv2hymmZhYXcLkjHex_n2W2p9Qdeyti2l-_fl96W8GUH16P-V-VnXdCeudyv2ytUDbbAYqElyrUqSzMNFPe0z5agYxZCYR52c5ZLf-eyAce6d4CSdsKR4nzgUnD5Igq0bSAVaGmxTZ6GC2Aw5vg9Va277vMqSarDbYI6sotdnjS4-JJC4oqSqofklagt2NIlbky9lWpATzCqzJvFkoE4dPW6Z_3wdA8W03wVMXvHcdsc8n5XB9q7lS7h0rSaKhsnAAzq0T6Ako6V62Bu9YS_nt6RuK3cVv4siT480FiPwTcHvZ8x430BaRvjpJ_1zbkSOnEU8mgY8maFCIrOoyeZilW88UNnafjyD1hBuFuqG4H-Uny_VNl3RrRp0eSOc6Bg6kVWy1aL1kS8u-YOOJzzaqKpJV9B9mdJuTGrASC0Tp0F4P1v6kocJwwtpquVNPgR3axFeSTo0Juw-HydCXpCSENhrFCG6PdXRh7-BNNLz2ZvaFm9y4dfSYvtoqKMhPcIxjpHEbQvQWJXsz3F1hoso6PvPXEG3RwmGAwHe8XycQS-2Hs94X4de3dr0jl61zPjL2lOgIzL_NqnbV-32xOeY5ZIFi8HMLg2ystgflexDFNX17w0_p4-0vcnq-e4ptPca1iXxFvKIhjgUB7rNu6rN4VbGyqFM_Mf7vVy5bCDL1XknUy2Q8-O0D0Mjw0NNVYo9XKai72CEJ-gygA7Hrx9umFki7xDM4j_zWdTtu5PkAhBQi4kZ9jvHlV6QaLho0cYqy1ZWnKzq4ESTDTmtYCXOFYho8hhE4Yff7_WqESv8mX54mdbAc5YUsX1Vs1oIuQA3aRrDS_vDs0aogMu6pHaPTV-KHLif26C3iRkP4JuRYQP0tnS2wS36NDsEoQRsTOtS3dUDOin-ZutRumGu48NZwzxJ1lU0JPdScotELRnCRqVJqcV6dGKMd_wdHK7CQfFwbuEkRdY1IY4YCW9b-N2oEsZ7jRJtUeUNdLcIYRYvSKQZaelwmfkVB7E4NrtBM6u1ZaSQugkU-zRMuIgbYTv3DbeZtVVi1r2z1YOMiaOsDQgOKQWpNSfuDorvmgBx9i8jyzcw8zCg83kynS9q4-UFPUD19mZqsLdzCaOLlrl_5wngjJyuL37qmICuSlEGVZ1LDRrdJeXohovQ6QnqReQsMpsmRxLXO4gRD_pwVL_CRhwaNIfUA0_6rLWfAO-FJHqhl-ZGgm1GL4lx3_CWFUwPeIbsOfDTQI04_Ko3lhBNzuvSSOpPhsjtQszHi1wLxNPDjlFjjxOvJWghbc9urRMgI8idV_awj_zb3YUBc3RmGJfWPaDbNZ1YnTbYOTcqjfi2Sl8mi29zN6Dzgyccxsfkb7hgoE0VouxbY4BVSVsJ0EIoJtPROkqyJ8wrwZg7uNxh4xjnkGmoYgGapIRHz-l9Crl0VkRtYchyUXoRPAkggbtgiG9pAKAxCjL9C9RQjpisIj5TGKcEYXSdwSrC9CCu2TC2Goo_WT1Tfk7KviH0SsWCkru0g5FI4dQkXA35HLOGQqYSJewSItjyBAXFP97eH0Hbi98ZySW-WV2REpacCbHA4xLXmzqAjgm8UU0DH9oIns8hk_cQ6Uxj6QF7-NYevVpQ6Y9Uew0KUv3-rjVuII1g9vDW01rchsj4dAA8ctKveiGoJKe-_CtDwUyNdngu08bnFM8AI8-nfunS49qp3b9VKJa7suYsmSPuLCgEiyGBK2q-rwr01wWwGR7D_G2mELytxKKVQPnyUkAK3or6S9raPGbOap5B0pJ8yja_6tTFal2XadqAB2obNQIm6F5IIahxu4Ub_hbu7_e6mfQBUgiz-OcZOPZttbALlqrrV0NLyLIGmIV9pHq8jy-qTzOzaDt5gTogp9qypBrVJvJJofgBEkPWKlafcyZ4jLZp4qi-VJ8NiUYggtXOCVQpidJbqyiiZvwssIA2LA5jGGhCs-fu58_e8ue8sbbVkFfVJZb461NAP0olU2pbhWuAVPlPx0dWdmcTvteXKTXFcIpLfSK4cymL1Iak0r5gmn4-0kNFPUg3XkgPeXQMIvgSzTRXIbo8gzd5Dn7BYAwuf2X1bZshoUlUxa8d-3pplHDIZjYHL\",\"recaptcha_score\":0.6,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6864377d128992-51046327','','','2025-07-01 19:31:15','2025-07-01 19:31:15','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43534',0,'cd-form-entry','',0),(43535,0,'2025-07-01 19:31:56','0000-00-00 00:00:00','{\"firstname\":\"James\",\"lastname\":\"Chandler\",\"email\":\"james@eatwellandworkout.com\",\"contactnumber\":\"\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/?utm_source=linkedin&amp;utm_medium=video&amp;utm_campaign=gobeyond&amp;utm_content=becoachv1\",\"recaptcha_token\":\"03AFcWeA44IesnhHk19fm26eTLLyk-mVbKYczG2eD0I69pylZrwrdlp0q_fN3USQkkr6xEhnHKQK3leD-KWrt4J0eO5bpjzs0ljkeq8lH8GjCwrdIAHiwR3rFA1iASOGcPDeKrnyyESMJLVZXTEO86oAUMcbZA89GRor3dnhTdVKOi5Y6qI2qk8invcbPtOW7FElPGMFs9Wk_0pHliNR27Ut8Tw0xVszJlt20NknVTm-KM9l8WPJYYdRr6dx3_Ta99RTnuco0j1aqCdhe1s_ZJjXig6Lxp0jO6xWumwdtX3oLnxAJzdjc2HU967FpDEVBi8mYmlQd3q1z6b33p6XaTCnrWOGkOMAD6j8cbE5Rk21uipHUZTVDPgA2lOwiTuVZIxrhRRb027d-G2QlHdCJI1RoO8iExJQ5qG52HOEWzeQYSsyT-cFT4_WM9nasHeBxaOtixU2XT6rulEZluV28YQ63V4cEf4-bcTgpci_HEggFFSTE9lU5MZUfOWRfVxtpgYy6CQwUoZPZ3IerQUkm3ccXWyEH3WDwII5EZXYijr5oBiWTtyAmsdo0SFYGnMC3DoRYyVujs9wKhnTqLc83oVL3jscW4V3YvaPb2apkeyITZJmev9-wUBTU501k-_DhFGk-BVEtDOEiUM3S58doE38_LicmaLt-DcZhpqA29sW99GfpBr-_0uMWFU-N1M_w-fdHwbFFHEd8fzJ8dgx-1GHQcrypBKXAIRZaxCBPOyhPO9w1EEEDvSOlT4Gv36Dt7HbB6Wq7rpM7Ycc8HfR6hefBNh1W2JobgPSj6q2gI9yJgO9HpUCMUZRrhkv90Abqb8Rh9vZEiPeJVKUeK2E7_upf8cna05oig4CO0R08HzlJkdKeysTuEKUYY-lxnIR2CXtsNz31cSjcmMOVPeAFkJYL-DxTTdzdheJUHd-1RwHNVd8mYIhwRYky0_vDg10bPH_J14_RLqxDlSVh8qnILhC-zXvmhFpb1ofCVYt6kX5IbChdoskgFsDECRi1ZCvZvH1j8OfmkxRtCWmsKbPL74ZoJw7Fx-TsGWXs3vhVu6yp_Nv5CAQqWYUPh778UQcqBcULd7dXgLQ6LJpH8qEfHNugOzkbIlVZNXtQS15AVbxXDaHGfw23XTetX78EUPsBQE3xGZDIgSHgEMBLccj4UYOkGqCi_C3j_XrS94TtnH7bnKpbL81D5R6eDdfjavMf9Md5UrL4f06hr6gGAqBjx7FD5o9YZA1FWTij0FocB0x8TtfqR6MDSISMlELZbJZD8KEjtB-HK-sqMGzqjm27Ea-eVNQh_HWEhfr4CsaqsM6-_VLLKh-zyU3pogUrpAgtKvEcSqJaxoj2jZkY_gFIYunVIN6TRzkioeh8yksrN4x5ZyH6fHev5ODmU48Nib8xTkcwDEWR7fqQCq-2qlU8D159M-Bc1jDbQaqx6zzKiinfbh3_Q1fYtETwM9f0h0GEbykzFY7rrokRWoR-FBM74t8jkfMwwQb2QmTR_CZ9MhRQX-5EwhRifyqSGgif7MTRsWL7d5YalZDdmB-1lUZgyactkhjqs4P2q9U6RQBCH0SiDkR7MYYiDBTAuCq2iW9zRPc-TwC8tjKBao2I055rA7NtgzDM3N4lOYM6RsrJueECJlDp0L4bV8Y4Ei-GC-kz1eIgvWXIcd2Y24znrvinXVkli6j1RgqkzyPNvS6ThuRlA5tAIGqAjjiahv3425ia3ltiXOa04Rym1Bs0wGqfVrEYO7Sk_V1FDCcZPC7YR7J7hf8awOv3gLZZR5xU5wzJrBDNpw06n1N1M_kxIsUNiG-A6H5S7aRq-oFT88pASzBufVwc9xT4ODBqRqmRZoW-N-6pNhD2nSnI2Ms0irLHZ7C-rD59Na6JHVfURmCA0K6c5JfFQGbm9nycRhbHJGy13OiZFApb9751tV25qp5g5zBQlWN5hGByBbunkpGBEKcfemPWaAm1kzZGAUqwmaTIxA8_igOaQ4WK9P8US45T6CB4cmocpIzeD037Y9VwbVRixGi3nQSPHP6BfGZnZ6IUaMZhpxvXXgx_LKHq4C_zblJCRggjj6efgFQWpMTK4enHp9Fp5fyqvxZaZU-Jqz8WSDd1ZRM4_kPVUh5LQm2BltHmHbr-se8H23eQ1rvcOrZ0kmjW821r6gevng5BgNboOUBf7LnmZBJd0chSNT7nGS5NVNHYdRO0iRA\",\"recaptcha_score\":0.2,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-686437a8a892c2-14032195','','','2025-07-01 19:31:56','2025-07-01 19:31:56','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43535',0,'cd-form-entry','',0),(43536,0,'2025-07-01 20:28:26','2025-07-01 20:28:26','{\"firstname\":\"Jaco\",\"lastname\":\"Lam\",\"email\":\"jaco.naturalifter@gmail.com\",\"contactnumber\":\"07882958053\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tVR_a4_C_I8XJQ6PDWhagEc&amp;gclid=Cj0KCQjwjo7DBhCrARIsACWauSlYtcF1QH23aC8r7vJnul266lq4lcYCnl8fDHFZPgq1QrEgQeZbBbwaAm2bEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5YlDmNsVN_EGO30ThlnKfZwus0TmJqkap9nezTO1nFoi6AbijncmfSncQoux_HjPh_fiZ8_uZYC0ueVlRO7-L1GWetwKMxMCximq029jPNF7kuGetC61rO6Lfv41E0OOkS5j-5-Ol7AsRPDVElYyFPTR5ey-dR0vXQbJa7-H5cnAuW2Vu3nRgcZuFQT76ZzpVUap8Nzf9nx3sJ7p8Z7e3QDHdWFfALp4XaWh5EojPZvKQc4-F3qA8lDPGhXr52W9Xr_FvPD4yyHgFgMwbW6AfzC6CRihAYRKrVB64mxRwyqNsRjXM7RxvO__cchPZuI4VbLymKlsCUlfaa0umg1aPLCIU0kGp2zP-97h0E_9mHRRMYyDcJPctkt6c1-87Add-5FR9N5n0pvBrkDb1lZXz6WqP294M7y8m09rhnCb3GSinLA6TEyyS1FPeE6BSodeCXy2K2nQlM7Wlfw68J9hi_iM5s6G6uJF88W0D_TylaIWweN7uEhpg--yjFJs8-BYvk38Y2L33utDEdSjLNfC8Y0_SIOyZxpjF-q0qrjWi3IOCB8WuJH2hwCGinV-m6arjcFpJrkPQv3zxmBQREkyJXLHdPI1g62dGtK9kCAIBGJJ1nlCyU-ZIBeTmlrQY5IqXbdQj--GzmSBydlRSu-mijPN8IQ7b3UBKr8C3IbqoUdfG9LL2_tMaKyF0I-YAga_G1ljZBkgNBWwQqlcJVOpC5H5Bm2RN3AHcryvcXssy2BrvYgAJsu42At6mQKNkvxj-WI-hJ10L0sbf4Ryj_twOFkStVgbNDigf_0raJHtoMwIrl8Hd-K-R2WqIrjLfkdMtrD0yKlhEyW9QRN8wnIDvqRyA0r-S7a1XOi3BnGZ2yawaPIPVEFo-_jXKFJqj0J4rMzThaJK1YdYsxSfSolQMlQqq6QDuXLBpIvVTs_COJp2tEE-j3aDPX37UVr0L_x3sLnbnP2SBrMfQx9msxWlM9FLCI70B5jDk5GttDEo_bE0ebYhmx2M9UxDvYTF4LNDn0lSTVML0NjA-3IUYrgdenWDH_VrU6JsbDz___AjYFIViHNHjSeR9aZAjgGcmdzY1K3UMQ3gqfXELc6I9XK4Pq095i7ofPoyEnd3WmusqOmsXMPRJcMNwBfwySDDpiS2z3GaRL8sUGpSkvlBEcK5XtIkAtdn27mdf86IABlda5w2vur_gnr1WVaI01pxfV7eIlgAXNonX9PgjinhuxEsHklAnLa7y4j7iMGRULulsuTJ9qkbHNSHOfKuvVn9S-TRwNprWspIseI1AYsjxcIyNQ19HsIxDjhz_Ge1hEiMtzc6JSUCOtNMCyZ3GDdZd_US-VLjEQHJHvU3vG_tlK-28y4_Wau80HPOI9wYHUsQlusLJnNnpNWzeLfgL4TrG6Z_iWK-5Ua5RxMkh6JGaZVsnc1iaMRrRaRhJVMyWaTNuXJyOkUTmwv24zSpeuUgBynYuTOjZJEwbqu4WkmRzhQm9im1jUALw6l9IFH897Ayd8HlzwCXSHuSqBsnGE4bgrqEoeoB3Zm17V1g8jv4L-iMqeDmHyvEamJgSTBPoAg_Ly_g8ai-KiGhUjiUruGgwZ044AIXlkaIa9lv8LqYmDhOFCFPxiQrYkUefCYbBnmvuZGi0ly9UiNH7nKlIxCwE0DxJ4HE9j3hbhS1R2a8UhM1hkesjZAuZRrRpkGr6MdjPaoQlTBjYgbSvdBnjYDA0LBpxkxwszll79FJNHUstkZHxymED5ygUKU0_8_WELSzq9HWyiNMWVcUVDjLiFUpI_s9ZhYnYAFwIK1ehvjiuQOYeNCSU5LhZff65NvKWnd2eoI5zy7-Rm91hVlc0KV0oyPjyyFRld-Co35ivdlyVDZfovPm1H9OIiYLCKy2NaBU1fQlGugFmZ9Z8kuDDhfQ91L_7I42EX_nav9VBF6cD1zwY_ibDM5GzaFIo1SxYupV_CcnOvbr4ekBtyDwsgOvdoOEvBbpt-keDBzgb_5eVIW4p4e6mcdum6_lIUysMHyr-QXeNi1TUiprxOvU9bgz2siGRE96sYCf4lScEGv3H6dC0RukJ1Lw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-686444d9158024-17716918','','','2025-07-01 20:28:26','2025-07-01 20:28:26','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43536',0,'cd-form-entry','',0),(43537,0,'2025-07-01 20:30:21','2025-07-01 20:30:21','{\"email\":\"jaco.naturalifter@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"3\",\"genderidentify\":\"0\",\"regionlive\":\"1\",\"currentpostcode\":\"BL8\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tVR_a4_C_I8XJQ6PDWhagEc&amp;gclid=Cj0KCQjwjo7DBhCrARIsACWauSlYtcF1QH23aC8r7vJnul266lq4lcYCnl8fDHFZPgq1QrEgQeZbBbwaAm2bEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4HXmsZm0AYuDTF4Tqo2SS8wzOmaFQv73-3efh5jGPw1KHbzBg4eY0VimdWHeoNCncIKThJDhQIy--E_X0oO1W43dTQ1LLS30j4pQlka2aNyq80itX7bOowQ45ZFM2ResYyqaOm6IJzK6X52QIjlfLNi1bqESK4r9dAFqtjSAq-wssS6NZ_fmEJH1SEj2Xj8FKmn1Cp8hQQO8oL_R-yUY5HKBgYDGwczCwcIMkpsog6zhL0k6l6vOUhcHE8qMdz4whSRw-QZXQZlkuAMGakIU5LqnsQcI39CKGUUHARs47gB94alMnlH1bcuSmpc3w13F2widk4TsavFSlkCH8E34oA1foPM2-KbBTtTtTMBI2HfxOIw8uliSlnbVZj13LeILxJpYOfcdWDjFyxRNIkNgqaaSKSCPMtUTOXQgA49li66v8mRcXMTXYTP__FZIiesvQrs0-7f_-Ghk5pEed2veBXS1CEskubYUlMALVuXa8TRVSoPQkDtbYFR1A-qjpeZGNtKTxaXxSUwmi_fbXDnXlk13dmIBC-Xn6J4gN-ZHKRhYVu4c7UQsbfxWmkinNa3Uj4geFK90VwFuxnq5RS6trx7irdA65XRh-bo8rxLcvoqxQ5sfsa06BMYI690kyF6Tqh-KV7Xb0MfhNMv4yfgQGGW4jEWH8DIOMioUg4F2SLyCwX7A9dIXsCOL8u7RVkjjle0fI28j6QEIfAHiRvFekq_xmVe8qCc_eZ1TZlM8cwJ6PNo8ZA6PuzE29uplvCjKQsEvi16IjBw14njkzj7plsnpj9K8Sw1Neusj6MH3Pe2Tqhu0ogHJf-qMP54SY7nsJuPhdAmbClKl8GWfT7BnJjWu6ZL8tCjF4Ow2Z6qW0o0z3opT2BuTb4HSGYcMY62j57i4p0_W6qKECpyVQq9jxIeMvz_KNbWvAg01yIu5gTZZ4RXWdBTPtoCEDjQUNqxwI6zy9tgT9h3Qla0m5qUThahI-854IKS0NYhJQeA_zqfhHd1s1Ku0Ak8WbSuz860C03cMipdBZTH_oxoEYvIhOLrXcykwrli8Zd6R2qnjmyZxOhnFCt-cVhelT5WEfl7JqqRWNQXlaM5QN_IA26bOzE5ebzOQW2yp-rOQyuIhttlu3sF7m8l30vBbdM9CqVn4JkynkKL_w9fKin-J-ST61VfCDT-gqswx2XGdgM8dGO0YvzA6vhVLbDRUIgIpVv1ZkXmzAg5FI3x8Kc9fTg6kRz56dlC1XuANZwDDolnGpiqFYfGCEeFmvALJgIW-gIFS8I-RtmcxFaeZOvC7kJmdrual-fMWI0V5LXd8j_DzLbygcBKAx_1H8l4iM7VzdC59jq8hgqo3K45ePmhswwri2E4_cObmGdQQ228zYjd_xM78d5ukZ4S9HQO3syIFo9omGkjc4qajUw1-Vf_bL1krZOlykJ94esszNoi5qHhqE2qRNbb3Z2NfDqij5o1uLFRe5MWH-je38tqvJDUiFcm_fNx1vU2glLHhsfFRwh432mch9CtJ-wanh61L9j4EQJd99u4ig_fH89H-HTCjDttr_U4Z02lXBm5TOt9KaW-HUnmZWPhBXOWTn2IdvzgM-7LcP0bdFsczJREC3LN2fKwNpqhNWTVU6mi8PymoMJrcYx1Ua2p3wIZF1XWA-2ADqhsYGQMztIovWeHaDbz7N8gbnwcRWfBOAsQsiDEIqNokAWtMXEwTYhH_IS_OyDPza5F2V6c9AAYr08ZxLn5cmxdUDqcsB7e3BQSnc_rtPQFSwzOLOe721ayW8yWoCvAr82D0sDOl6KMvwMtHdOutwF2LOcIEnyiPt26e3OPqfge7c8JjDlvnYggcZpq3ccYddhEG540iQHB1tjY5HbtFjN2geRd4uxwA2jHE9bJIL-vNTvkiwLaRVt02fLpOawWVVBeSriSA1W45eIoyHQFyUHsyljbw8mu_Q7uA_99xr4SYtwY199GBzzK6ByPObmcn5b0BFnA2c9eO_C3ZOHvaPzwWCuZsPlNwnzxdZh6o0w1P9PO7SmGE-P4cbUJa9ryqo-QgRxLFp25FG1uvMNYWOmyY0TzE8GfA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"1\",\"employmentstatus\":\"2\",\"workindustry\":\"5\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68644513dccc12-37115007','','','2025-07-01 20:30:21','2025-07-01 20:30:21','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43537',0,'cd-form-entry','',0),(43538,0,'2025-07-01 20:55:25','2025-07-01 20:55:25','{\"firstname\":\"Jaco\",\"lastname\":\"Lam\",\"email\":\"jaco.naturalifter@gmail.com\",\"contactnumber\":\"07882958053\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tVR_a4_C_I8XJQ6PDWhagEc&amp;gclid=Cj0KCQjwjo7DBhCrARIsACWauSkZ8wv3RS1wklc_bY5wHzpkNSVQX_i6HSc-Nd5koYFSze6AvLNteqwaAoqvEALw_wcB\",\"recaptcha_token\":\"03AFcWeA64BWxq1ePq_kRdftmbqdZGPuCRLk8R_uO6OEqLulp1i1D9y9R8XGx1tY4olhpLGQXhRxldrBO9g93FoAMyO9eL9g4Y-6pl1ut9JvwAvvMwq_L3bxYDb35QLZxJT_vitsbCTrpJ17GcI9QOC17e3Q2yf0Kn8FZJs6VZmnghSJ_Bc5iiGAA3c5YsMt-ijCcnvpo3I2o_muY_b95x7UwIpCCDj41DF-0gQ-QaMgvVNFC0ILhTNirkdqDXbk7uljrFcepbtSQ-q8SDX-VyRBZmNHb5_TDWwT8zj6_PT8v7o8n3ThD5dXqbMbuNV1vRqD-K2ERoFfa1wYZWUUT7HGY_qY1GH1_VsEpGuSLVDBbD9DjgSh9ZLhJQnEtUQRIOvTUhOMAoPS3A8HZz3EbxbgC2pbQGDr4xzX67tUXtG6Uz0PRe0YVBfTR7jVDLP_uXz0qwGSud57gBIgH7pE1n51UrxOuwELW-Q5WSXUKLTZF5dMPdLi2yUrxU164ihB90_Kuz2foRHJTiT41MUeKuQ3zJyuMdaR1E2baeexDWz1N80I89Wset3-__KlOp5aSQKwEa6hW2oYUCMhW97Wlc2BER2PayRxnc4sPxTulRJMALeof1okFBYhfWo3bHjX_9NR8dUJAHAHozTSivRPTqw5-oWV2KGLpluOssaLRomx0qfyjBAl_mXqXL2odq9s5d2XgAMlpqUIVf0m7yk5MV1VyeGZRjm2EAuB_LFbtuLkOB8qE4VjUm7W8NjHxDigYJ5JNT4b_i4UWqIhnbepKdtAHE-HZmcDjXIYcJwLUF1g4m4HWzyZ_fBAGxMEIqMdoiD6az8-YRhpETXs3IKRb7zhBEZpDwm8fs0uxZaBoVrlwTAs7WaXbiiKtyYugf6DyCV-_rr5YqhGSXSMomSLOjOvrUfi65MkJgvHOnKFT1McE2R3s9kkO4h0qa4oSarMeKfffzBk1MjJ5-Az2VCFkqHhC38T6LPFGkFreTHT4dpSXeH3GTsgfWDDM-QdwTdAsfLUVb74oONnkMWA9JxxaUujc5mXcpGlIO4haJ_DZ6v1F2iYUtUD-42_il6cUXd1FO6m5rC_rXXnA5fB5iMMxhUd7WuvgHrWmtfSAZ5TsB5hsogxmQ6HTEeHKfYkdQxMVggDP3zl_sDoKl5HGv7mu_RpK615muiaci8OKM2iRjJJDEnrAL9TYNW99KOFy_T2RXZa1IVsA4bEBhQRGe5L7qoR9gjM_BNiTFDUzkncHA5Jndf_56mKrWlZE6oOcd3iQa-gRpjfD_ztq6JEHIPGjQmODEHXvc2eVgZ9uItkRT_sA0emf_p_YQNNOsTi2GXJIaR55zjJIBKP-8kALs4fECywndUFhH_J5l0zPFjGzJ315SXZw1sPvttEVrSTamJJVH8itKFqZigkHcDUlyUEWBxJ2U2rRfyF5jnz8fHr3a5J1pBku4vhl6aSRhS3LW3NleiR3bWfFNIxrYAFan7tlO7rbSHVvWbE1yGvIAnSOobsPjQyfHYulFZnNhabEUWF5X-CaUqel-UtstSXOhBRl-5dUnywtEXR6gArimaUow2mYHE4KACoGGwmWd953YVn14I7AchUa5e7eoCY5p6Su87vfKeKFBnePFWRqKI-aI63g3KbIVG4sIXO0HXzCZlSVh_puxxc7bkEBgKZVJYlvirQ8bLNlqEQyNdPhQymlJsqv0ItD-9DRp1UO-L_BTICk_3GK8lTjWF4o6DvNwIrkVVW-j8s2eLxbqAYCgcKTY22BKlzLW1VjFc3NIzj_K-ynAO6uaXT-L0eXQcXplMlNnHFdWp4yd9uGf_vW1-KdHi2Bas5Ev3aL5flf536Z9jCxM8RM7ZIHj_BDQxclX7CjTmy5OxKj4OssbkI9v-KwGn1c798kHtky_AfZtpeCm9RqLOwWhK15l99gzy4ils4Zsg6dQVSo37IVbq_jAI6LZ2FgFwd52hT0wK7AG4_4NW5gH-K0Uu_dMI--B13AOuhEr12TkcuaDRjGTpvyFoCqOnlwUS6bn-RWlStko_pnP0gAOeJEWuZQ-aq9B\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68644b30638929-87014928','','','2025-07-01 20:55:25','2025-07-01 20:55:25','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43538',0,'cd-form-entry','',0),(43539,0,'2025-07-01 21:08:27','0000-00-00 00:00:00','{\"firstname\":\"Mia\",\"lastname\":\"Ambrose\",\"email\":\"mia.ambrose4@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vJThU8Vr8L4hvMO4dT-JQD3&amp;gclid=Cj0KCQjwjo7DBhCrARIsACWauSlIAQ0y_0uJN9wI_JPCOUz76X0Um1wdn75uYP6V1DCmB3376q9YBDIaAkhHEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7-PREOUGvR0JEYziCW-Lo6EfK0ubqKG5V3iNSv_dxWAtIv1u6yXxDzTRxbF33SB9hC4HCEgMrtgewX5EFd4v4bfDwIaWgI27uemI1PikByDOy7fJ6cHWNahXVMTmonNmifjyF3kuYujTwkS8ArBAyeErQuN-MATkCFxPecXbP62hsNCdTka82w23pYGAZqoB6uoKDyN7sltf5p21AZYsXdvq0GjRa5INwrAZdTwRQmOKMFaqUx94nivDA-Zjtu6XvUmBROpc5j9_B1GCw07VHv7YK5A9vr-Xx6F2Sr5WgVwNZq7Fb-kWP9pULeoBGBWt_zdWHP9Cg3-CprOi5pr0xfOR9yuwuT_jwtrYdRfdvWYsCksNjKnMOveCxZYvvgzTOQkSuwCd4sBu0aWrodOqZz9EsQD69YghDw7Ng54gnq5xNMa0hqW-FTkZFhGxHtrq8doWuXI8udOpAOh6f5sp50WLtN1i-3hW67pcVomwS1y6mic3vQHnfMBCTJg85JTRuXct0DjqUs_9t2FJuKFTvDJ7j1IumMXt4DViEn4lfN_57NxeivamaG2XLbSrETYBoUZQFAOn3XZ4D7-9SRg4kmV0VGSQTVEx1Hh7pE039-afHAFOWxom6fJR4gYd-aukpgI0afsZbVUdQRT58zq8gTmXI6iqnGmf0CH7xmNU4Ylh--UMwPWZpOEZkiGXvVFJQI927_LrUZGO_geY1RCCdN8JaKvKqaIEK_EhQG4kDloYfH4MLaWoZWiUjeCzzIBs7ayjGkiCK8n1riLHvXc94Hz2aAVkH_SuWlXKdWm4K9Adogu6FtwKSIG8HTE4tiG05KHqdytD-uwQs1uhjRnO6GtwRXsC734yW37ThSyuomfpmz3iih4LBqiAiC_4lFCrdcbzgxOkqYdoDbPcUEhHm5FYUaFYv1FpxiQxjGD0l8gr8a382Sxuq6h8rTOGTFz26ycGXZBqZ9Sp8DxDvZ6YJWN5BWZPNRtMEEeoDsNKcC8ojq8147wBRJ38cstPoC68qkJURgmQIKe01-N80O3EknpL4Eg5HyoCibW03qle08ZWmcwvA_fJyavWT0r-lWRTjjLZ47CesD9zzDEu11RFBQvuHt5nk9wKVRlPnp4uCfHYr5AX_dPEHRSZ7ScImZl3xQRETeF4BqUWutoQtmsq0xuM-EOoPidy1nUpJAqDpyE02NSp6PjhGuTqDqSfztPDh8LFj4vny_lj_DcYMY2IFHkfnV9UtfrVxIyZEpRe5WJo5AqoIntouEeZl7-veF_pgFqtKmxIw8e-D4ABAsZWbCWArC85BHFXea-WX7E5BtaJ4HdZgfJ3k37e37nTynsUNfpKyAVfWYJUU6y4onXYQY6FmnUVSCjUjmHJKWZyuCtN4O_lFMX7AWQF2C9LgRgYoj-baGyQZ-YnDldB4Vwm1JryfLq7fB-W2GrcoRLh8y8blTi56FV0yD5AdK5aIPPLIu2mZvlSR1OxfjLVKiIX6Tw_3ShA9E0N8kxBbQPbjBdZ9u3i6AI3i07Xo5k4yW1sccWpfGfc8Q3_3IKmlCkHRD-mK_9tFc1WPWTZKHF0OqHHbYWko51Ca_FZE_glF8TKvj8tQYOV6Kja4Sc4Xp15DDi7eTaw6A4ZqoBhaTYgVWOHBrsQYHIoNRDZGwn4ONRsb0wpwN1QGzHqWQeha5v1kyGq1rG9NLK2n99w0Q-pPieoxEl6JPvZmHJ_59W7fJ-pCJezkNejRvM5HsJ9B6Up3SYvMInXseb7R2z3D0Ao7FN2e5s6ko6gd8XMD-2lz6jZ7DkDjmKi31cmQ8ZvTw6czyRHLiXNfJl6-Tf2etTfBNwRN_hcTrg8Bf__KpZuZD-2VZomQBroFEvDnI-9kErKAyaQFHl2q2rl4Rm2SvmRNZ0R0bqTTKCU3Nl5mGS-sB4LwsPUzHfvoUs1uhHvfe08XUfdlp-dqv9ac3l71Gt141NuU653Z4srGgMDcb7AH1EEbAMtt9NWHz-U-euA8WgkRPoRh9VchUkzdeBT4roXzh5k9MU5cQWEHPt-DwHP-MLoR6WVFiOD1R10aii17JoLbC0DeZ53Zbdjw1NmhHLTK5sj0tmgvD043KbhahIXnRrFCLOongFrrxZKmjkGnP-MFJnEyEZ9xGctOKHJ5lupemwLINTRZQR6hHb5Zw98q0WQ76T2uK\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68644e3b5d4125-81107704','','','2025-07-01 21:08:27','2025-07-01 21:08:27','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43539',0,'cd-form-entry','',0),(43540,0,'2025-07-01 21:09:08','0000-00-00 00:00:00','{\"firstname\":\"Mia\",\"lastname\":\"Ambrose\",\"email\":\"mia.ambrose4@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39238\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=1&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vJThU8Vr8L4hvMO4dT-JQD3&amp;gclid=Cj0KCQjwjo7DBhCrARIsACWauSlIAQ0y_0uJN9wI_JPCOUz76X0Um1wdn75uYP6V1DCmB3376q9YBDIaAkhHEALw_wcB\",\"recaptcha_token\":\"03AFcWeA4Fa0ubnuFqzOdzq4AWN2e0ScaQYMqyMAOOwXv8emyei2TFPvJBbg8h3AAcK3n73lDJfOZY8JUO_FSQYvX8CdBZoc3pbtAxEgOoV_WrVi0pELag1TlwZmaHmvQn8aTUueLXevUgwEO04PdsYoJYyXRSleucs1LDllGl6dtfibeBqZsYfZydidDeQZYQ8PthrAq4WHdkYefywe2jM0jb4Z4JYMUt5mslb3G3IcwTkst7PHQdgzxjZUSEQUy_C8MOZXS5dWRm4KZwCoN8dyi20CikgCH2AS0jy-sWu1hUxdstrXPdi20nP6t4QVV-GaGTd5uKCxMGBnB4ebI7mYoVDK8c75l9E68OyKOmEs1THIZ91mr82aYberIn2E3Nwlirb0_BtoL737bK_FbVQXYSbAyG6n6t6kxRNm86jrPA1mlMHbFoSUOqBAngLG8EWauGGyCIg9qUAAg49SnKmdDozZixCBuiacvHVTM2GHvN0KL4YdyV33bdAl0BMF-AXuApYs_Di7yiJ0V5XBPi178TGUV4R2I7WV850C8UZ0l7b_t_ZRFujIh7TrFkBac9hdiGOSZMhtox4GtYpV0Mk6ZlGsnjdGV5m3xKm1Kk461n7nbbS3xGDL9LMx9g2zBUOSDZbBpB3lPPeAct9xbupv6xWJdrgUDHNh1wxGFbfwsx9rit1rHjEh9-Lq83knfBdhQonX6UU29pfO8cwyutg4Ga9hZhHQhu7WC-ulUaffhXl3_pxS0lUPexHgEQcWy5AsfaiO5nFUyJR9FU5Au96du2looFVohVI3_MFj4XIcIDn1LMEUPoyTgavrr93by0mt6XY0zNfNQQzzUB9-0lCkLW9WK16qSZTWBMcnCif15VLg1O_MaDg2Lw5qFTYug2FFZra4W0u8kwlHfDetTmsX-j5fswEm4IQEcyJGLiwiBMnVfJebXN62bM6yBHFenEO5yCzFOo1kEAfZm-tUSlYTH_8cgRE_is4K5JQ-oPkufU9ilhIom7TiepvwhTaYFWkBKnBGXozXD0u30zHB5edVzJ_912xMKvSe3xan3meLmq2UwQN-clczusrz81Wxut6jOMAsE4NZYmHCq-bboYbOSJEB98xKUYLbJPeJys-D5TlVruDI3dbM_1C8oMccc6jNkUJ77fYhvcBclsXLnyjiUx3PuC3KlBBPucpNkvr5dHIWshWocYddBvenFADuVjwXAGCXsxHdKlVDrCiG6bXsupIa5IPDcPsTGpG4ClMgAwy6eqUfXbOCYo97RavyJIGDwcet-fCqKdpe3ShJxINFtiHBjdtQa2F6HQ4eAI8729YOGeyMEe6c9lFbXL0hWWMFhlsbubMgH1MJWH9n5_R6no7DD4Im-ZpRaWtAMA_bMrbRbVFfrE-MuzoL_exyKcempn5MWw9R2hPxb5WwKCMw0fyfX7lABRSXos3wZudg70HO87f9EJueW2_qGWKT7Ul7BCnT0AKtQAqhqR7ASqDxaUcFR4dJUABYich55-S2kjjvxJKm2q1EHH6PX-IIPJvRq96uSmXHaEMLwo0OUUQ38rBdZdF-JxnDynhnov16zIS8sgXHu3OKPyuHDyu8xwC0jp8SZXoKZzcTnh6F44HkS7rqW5CcRwjmv72U624fpArid4k_tAXugp9JzRiXNOB1QhagF1lYXxhxNcYnyB_YQxfu4BzHei_CrnyivHkp9kSaj04WD8XHzlkewPxZtXid1BFoaL6kpVWYrvF7qmX6p_kNbigJ7s_Ze38sys2_AY2NmRbAp06snUbw5hhFPHN_J2T8M-HMUWR2OYfJ3YUMu2DltYnXgZQpiH3_zmd6XattIqHN28Drs9jLWsvccWrvufkMRRXPINezfMqxLn7MPdVtqSz5Q1EIZD9lfHCdWD-rd0CFAkjBoG3H13IsUeLyyB0VR_d4zNEO-2q54qIWgoeWG7hvanyda2q6ZikujbEDWmJnxlAhYtfXO5BVRDLLy263aODZBEQS10bF1Eh3RKoeMLPKcuGmXSMHdmDoUGJf7wiEQO9owMvsTcsqsIoWRi-_0N0tBGZrPoZRwrQmCC1MVIJHdXn-qa32JilkoDY25fonff8biJCQboQ5VpN6ZSSXhsoNTQDry5WzZ71wKTqwz7IUs788KexaPKnZj5CX8ZwGRXJqrJiBIkdgB8NxJQnmP0NqGO\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68644e74d5baa7-14865405','','','2025-07-01 21:09:08','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43540',0,'cd-form-entry','',0),(43541,0,'2025-07-01 22:08:20','0000-00-00 00:00:00','{\"firstname\":\"Ben\",\"lastname\":\"Trembling\",\"email\":\"bentrembling1997@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA4XXzO4ls7YERKXC2m8iHfscw8O5lvBDOoWqasDOl4cmKcS848R9bV9PWJcbrochSXvf-hGCApyR3y29x4nCacdJDyxqQhRaDpslGdA_1jUFhx2b8K_WP78yeedOlWGty0a2OHQ-77qrd8g4TxvAB5phsWSq7pG2TnwrR1UhDD3Dtq8bwTI3JNC0RDFZ9_SUzcQrqJ7ln6-KiKO6DceFQLppJ1941gqw6EgzIuzL06G_5WOEekfGwJRNXyGdPnCoM36tFhSV-zqr65J9EAZ7n-S0TVsI24sdG3ZkzD6nfAc-WfPSqAAnb0SyoA5Ur2kaAA7aPrTBmVc301sFlzNUaECILNgudPOIdG_chGttiXBadqIY5S1uTO3m4bHM9OmzBzSBzuYl71uUbdvL5gvjdHIUG_i4f9iFqMUhaLlsQ_bX9MUroXpSyeYNvvUTNJZuzpurE6ha5pZxBmD4WxnYVpsj3v-2gRfba7L7SHJAl4TqR5eQbyZTjftRfwoTtK4OYoak3hF1hNtLsWw9KPE2DJH6xoVNuLNyCKbJ7iOL5teSZn8OKll_TcO3VPeVYT0eVfO3LEvczoFkVFniwt9VKrwuzarRjmiDQw3LcUlY-9qDOm-m4kdBC1fZQUHmoHRUddAUs4y8h4tcFxRaQnk16h1vZVhVqftCXqQbz28VlCFR7nnS_XO2x3fUklowtvNI6igSRIBzfHPO5-Vd2yvv4vkngoYQ6y-oYmGF6YYHwBedI86rRt1QJMfeeEykqwRyqJ0yTXx02kudMbRXJjYubCngxE7WUBoQCusb9Pm_RCuh-AHrof7hR_lfPylgl_mC8bYFhXNkgXaDZ_peQS_bS2NFS-gI0IUMTa2B7e-uIKLH1GfsWaFB9KwFcWUOmuOtNKJk7o0MWfkurAQkipuUxcaz9ICLsk3TbEol4wyhQlXTv8qMvSC0OQRV2h9sren2hKtqfkVhTCkHG6EZW9rg4ZH451rH5-DVC5r8cMbRJjQt8Q9-29VORhcuJc1thPpANMMuEc7yqws8p4Qsu4_c8mczHAQtzQfyelOE6T2m2pTDzadxH0MWwy3rs2e1yu015XUuZCMC4PQPkfmIU1cK6QLQMvWZ8BiGW7bLwy8EY3Og9opcXpq42MbnFN3Zax-rhVIFwO5-VD43x__4a2_w8VTjOjcio0eewiJCmXl9Wdrmyi3C0bY6h_33zxO07b0MQokimptNj60UaYT_NEk2jWj4x9H41fxNK-iJ2_0wcfNS6ofSMXJrG4UK7I5zo-Ps97fpFCch-KAtZOLBQNvej-fBT6Gj1MCidcTC17L07rBNHz_gv6tsES6VzV-_UkZn0rX8d6GjxUsdl_pKAlnr3TSdh3rrwBypcH0KTbz69mT6V1kDT4eHCMA-qGwe6zsaD9VmvBuNz7RuLcfZkW-g8Zw4KxQNzKlwn_va5xhmMSa1X30gS3wvvN4wqXnWOSmmSdXIn_OF5dBCXZhpTu-MTA6vgZMsPjSfiLw0xUN5oLpatNl7Y2vi32qMpNbsOAwzCuPQBEnMOhfd3SlD5tGR3JCc_HujKXDnwYs-HkNxSmJUzjz9uuWRJ928NyAQJ3KJZblTVfOii3zrK57PoSPwBZHvdnxuPZc_J5j0E0kWdWHNUngmkYnURFfmQAcVvyZgqB7geGMcl_eoH7OY0kmJBrPp13wNjjPwQcWX6Ol9kmzz-lY_YsB5MJbNkNlGCeyZfh3bXLuk7YNWPZOdsrDmoAS6xPJP33VxnmeLnVcgoEax5P2gLEG7rDO_s7beon7NIyD3S1r-204azDhZsYP8t63_9SblcJWLLDRz_96fVenPb9eCH2w4vJdE7LGKvbXVkGWP-Tsh0Bjtrd-UMBe2qGFBldCsnBAjxh-kyKEsO9kTUOBgNfmMnQifiIRc6NFRh4DRCSskqfkoZL-S2Sj3anPWJS6ph1VVe8kftuGVGg4lgngGq9PJF1LxzgY0bdY2mrax_NS36eXrdaONSpHcR27-3Din0drYWTIUtTF-6KS-iVSnoccvKLcYPuB792yeUm5f4kbdbE2fdnkV6i6EPaqBSz4fNVM5Wp3US5d7MDzFJjLo7yEgkFnHCfr8nqeT9BAtKMFk8eo0Bhr1kXBc2orcr3byyaAG4HYP3dDyozEoJGmohzmEyxhn-SrFYC8alDQcU5xa9EFH9STx5u9LSe5H37KuEJd_6bLkWBLGDmjtAak05Ku4RmrTJj8e0slPcIh3zHdbzcsGYUC4mkhWAxdcnR2NiScTSf8KEOLFVT-plMfV6iSFqDnRcbh_99Smv55y3rjmKcOr1XEGX1KhwmAC22qloAtf00Scv63cQFI_qvryNPG6aqCjvbjNUCSTELqdtUdod20aOV4PXZwBAEw0xrG2g\",\"recaptcha_score\":0.3,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68645c4e3dee08-98215329','','','2025-07-01 22:08:20','2025-07-01 22:08:20','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43541',0,'cd-form-entry','',0),(43542,0,'2025-07-01 22:12:51','0000-00-00 00:00:00','{\"firstname\":\"Ben\",\"lastname\":\"Trembling\",\"email\":\"bentrembling1997@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\",\"recaptcha_token\":\"03AFcWeA7wEq0pJjpCtgQxToDMH9RweRx7EWZmEYgN3S0r7dFiZZMXJQCugNug0SMTv1slUXoz6ikXMiIYVBlnnOUDnLzXUUEvTZVR9WjLdeJzbasjXC9lPq7oyuj4qCQPJRRj2sreirrZTWuRRAlR3istNtGRVIs9P-ncx5jMPkkvWTKKescSQXOH10rRxhOn1vVTVM5N4Mwd1VXQJcLVuNiLh2G87Sjh-qPUs-B9I1HewNXy11FT8JVjSEwSajIM_m8flS4f9nV_DaduSUlJ56GTBU_e4ZoW5WLAhy2-Q9WWsb0HXTrUJ_ENxNADvAIRWNeMlkA8tMmBL2ek2bO_82HhqLfg0hkd5b_caXBwR71x1bqFrUW8nkR8T43sTjqHxyeuxU8sUnnjclpo8cXUoVfYTs4SPHVyU_QItU5clFjDqZdQjZiaZ3lvYK6moOYrSfOificuDSInUTj4KLw40fhwKq4eNViFTy1O72I8UCV7Jx9Q2Y9NjMCQFmTWXc8ZXRMBpAg3d6hIu2_E2VEV4A4NhmYmQ4VUUOLYUGiLyK4wjRqb6r6MPgbLywzrMnqoh8jNBLuybGDTDByCZQ19b9_skljlu-0I6uq6a2uRYzYBQixnEQkySfgkI-Ni-lAEHIjG3cEcGHL1eVx5filpIKl4QaI8pcHLEJdKLQrty3_NRaY-M6BaNobxEz_Oo6342EH5XkQfLP0soDJEG32M7j15rWoU3-66Xq-F6PYOnJKIFI17om5-Bmh4d4BehyljWsFbJEAz0FxrPF4y7zYFZ90wh4Trz4z_RgkO3DdzaJHqVLJqRlGu1bmHdarv5l2lTzaK7My3uV9Q1sGdxvLe46ezQkW_El4hP0Qdv1KVng80_1s6PK0UQPXLFvyKnIrj0avQ9EcCzki1HtbEfmTjMUIXr8W1bNnb1Tos-WUUSRQkCln1uJYi59hknNroaJN85PMDRlws37DKkFuliDIQxZ0TDmNMkbLD-xiOrANoLfhGp3AZAGtqGWFcNA32-6Ln6VlMjfKBs1YLJrOCcuViNRtQrF8RCUrSvrOAAF2Qw-Ft9Cvfxm1w4hjxsmk4PKIdDnYMxmT_qvkj1nSAnFgXp8aKFzJuL3qXYFJiiEUuU0m0Ivskj5YkEn1jMVelByosYy2Mhd4H5lHFtq2iqzG1ea2sOQev49FtHaQQUKuRaQGNlufPinncvWu5tRqB1LaXmYwOTbobzS2Vduhxikof9eFp5aHqSzEEACpQ-UAelpE8T6ghrquOQ7ICG7UW60-7tjyKV_tEbZggpMb_l3Cjph4Ii5UO024oxzKRdt2Y3RRgcFWg8Tc6rk-B81mG04GpVFzw2ra351NG-HFOV_g-WgKdKixo5YCRA2vlzaR4pc8cz_d6nBGDC2b_Qumxvm0Qo-FN5cRtlEsMNheF02L7_cDf06BSdyLZADjYRcyZQ3NdnAsZn9mFMjBj0U7_r8iBoYmTZDOuwrCDGp1m9TFXnJtSCjSmG2BETmu9SteTcoSnlJPibxwEwDDSCO9BD13x1dY6pnH_mRLEG6kgvRmGZ1Y1Bn_-CmGihCWBgOe6dxs9YfGb53vSeTW0Uwf00H6t4pvdfRrwUFOKm4Y4hI56YEiiecTO6elL5LjrDw-Be2Exd55VP_gkE6pDf7IsfVJp5b9EdDc2PUEHFbS-sRTAQ54dhsAUskdWj5ycOvAkt22RSCjmIgy_LWF-vNAd84w6Pyx47nkmqNU7JkqWPeF_aqIuc_Gmi7qhVYSjGiJlL3Ax2VsxNI3LRx_rS7k1tpPLy0qO2YbFW5INiKeIlIxCR9NkAi6TbKKZwPQ0QoOlSRMx38vBFHbevLsblQIFFcBjnSlXDpH087dzT_p6vPrczMTE-Oxe-NEDjTzD-5vF2A28lTepMtXolrhtz9PIhXFOzEv9_jmP0l-4R9IJ21_UdOM5WAL9dET8n_ja1szeXLQedec-tJQHDTWfj3iZCB35Fq5dgO1rsvWUgRQ85689OWL2xmx0wGjrY8aAuIoliCwvTYWR7rDOfCcIYKOeu2jQtI8VfCx-5MShmtZE6NExKUYGtjCSLJtMbQhh6jKJtdajvaVBX0_BfhphH-FAiBPTOMAUaHGFwg7DLROAVRyjj2pBR5niZAIt2Nr6eVEzy3ugWOM6J92qPOW5zvC3AMkUm-8DN47xX9KnIREeTSH8EhsqLLniE2lF5X7Td8f5C0waw8KOyR-vjtJVXrKW3B-4mxypNu_H5PRSMdEbCrgiWOPOyLr1T6M-noyekv92NoUUNdOT_5-zyaVic8kV9qe_gaH4LH8WC9hTN8OFQXE5AeyoCiK-XwhAcYEUqgm0xKBZ4cLnvw2qUhvjy0z-DI1NxsfmdTHJUGg4oUgxJa-Yvchy9LGyJRB2pA\",\"recaptcha_score\":0.1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68645d632d73a0-33946979','','','2025-07-01 22:12:51','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43542',0,'cd-form-entry','',0),(43543,0,'2025-07-02 09:35:53','2025-07-02 09:35:53','{\"firstname\":\"Christopher\",\"lastname\":\"Griffiths\",\"email\":\"chrisgriffiths1979@hotmail.com\",\"contactnumber\":\"07896315768\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMIuNjBve-djgMVPZFQBh3nawJFEAAYASAAEgJ1FvD_BwE\",\"recaptcha_token\":\"03AFcWeA6gNts_eE2oIVQ3-kEx46XOq2ZX8TF1uz0BPJGA5P7YoZxGUcHrCnZe2WFpXavKSzQEkuCJZKmNBRWy35sbVqE-MEEZOX3nouN_2Wo6N-yGsp92PReASJrqclRDiy5yRRRhCcIziuKnFxsxKyx7ItUcvRcCox2DF02Gi3CiYBvGozJpyokX_Q_awsveYABDDgcawrBjuwZ09kzOn8BYYHPdeiWYlZOusbw8EPM66perufSOTUOk79Ucds3AETTGRp7OUQIFy8pSwAdNRHAZAWMWkR112s_bAw4kMumrpJd0TB0nVtAImjtns265-6UfCA4phum3HiBK8vYA5o0VhriRynfZgSOHlkbdpBnlJLTIZdTJV048D2OOOLVtmhm6-LoTZPX8jFxfBu5KruNSwvyZBLyt15YXT3ULleulIS7put32Z1m_QAuMi_PEo6sx337dxA6MdKfbA4llUhD_K1IdvhOKsLZeQm9qqtzs3ik6n7jDigsZUR98ZOKMJdUZ5F_WuJLlSk8e7Le231P99LWLXMLCLlUym7kt_4lefqad75Le-XA3TG2_5DdKrABHEcmUu8f9SGdebsPheqnzyy6b0HVyWT1R5U2CA4pvMCMgliBAbNOv3zKRYiElshMDadQ2-G-DF-7gXJ9_o3DjMjrxuPFBFoK9YnPG3DF7ZqVuAAjD7KNIX8Y4G_awB6MmA0Anxm8QtudoxI4Ge1OhBAudjomHmlwBPoyt8lZB4KlIrui2Ubi4d3Rv1MfRRytXr-8ssAF0S0e_op7d886XlWiG_QZvRdZ2Wh_MTNNaje31LcD3PGFSYt2tkUUf7QC-ZuJDsMxXND2IwvYEcTDUQXe9hCLnlAJ-U8q-5uRT6bnUdecQGuBUnY19TenZEBMVj0aBz2rHLApJZV_k2A7PHzFryJ-4Aac7NbfIifb3OCbIaRsje6UNy6tnJp_ib5QWdm6103A2XSSFUsZoJbyC73v0fycKY0ADLf3V5dxKpjCTnR5Sjuxe1ZNnl5DFVVxmVKIDl7RbIsGLcgnm8IqtTwkxpiEiuNpCFlAs_I2iiaebqTxvBPSWUUT2Lk6Rwj3ehC-452VPTp6v9mUPvUnimYYhN27eQnt8ApMimEHkyKOSkhxq6oa_RnMtsR9r99bh0kUwUthLDqKBQMuSBk5ZvwpyFvOiT1btGtiFE6VDVQL6cXdwQigeX-R1K7gTZ1GWdpg30hDePhoydr79PF8PPvCxKzli3FFW5cqRZLN8ksZmLxB_M71v3F_NnCVyy1OqBilOsuh1Xe-2G7XdMz5ZuAyi2AVts4dvfq3raJTsGEb8uw_YfZZE1fE6GyBHmum-GhMbzQqn66MjPTg_0uEb98Qvnik_XPM5ZoQqDP1cGUuJKQCqYncWn3bwkZ2w0U-gK-G1gx0y6066GLdTxuGj-vf2HPUTiatF5Qa6irLdNqaNNyKN4GV6JKUSokWC56ML1mk119Pr9DVou2bhMgkjO7DdfoZ_b3O76UbaBbl64uqBtjH1DLFbZFss6CH1OnGTUiNuCistJ9hHsv6XANHVxAF2Upda6OmwJaNHLtt9ky4dOO-MgwsyrigcLnJ5AT_l3dInAtSkwKiZQP-XBpUjsew2w3wKnRqD2ps5Kc3y7a2RMy9K47V5EIwD9OWGaOgHX8tFK3fyCDFeJn-EKtDqXIpMvFsWhvY20SYGExtvVrHNUspmyVYU30mfzwnDHBLQP_fcoP5AEF3-SzxSpzjHCrD0IxXY6Z4_REFvN3cth2IHNEjV__-P4F79Vvt90aHNV_Sf4a8UBvnn36iPgUCHJZminLuty4xhqqkFfcbDy3sjScIhxZwPeO7IYVuFo6EgVS8RsraGerAF2EzAB-nuRYChpDm9lBk1pWCE7WrYJLdnre9R-JwOp1nljgHZI5bkhMzFzSbI4KeRSJiTX1Blptx0h9U5lhEmAxmMi0OOoa6OV_UsGJIGT9t-rcC-R1ofuRNMfVZJ8FlmlbcRU8wtgvPJPtxobOmhyCaFpb5G1grrALwxiOKqpvYHh_3qI2GBJN4EL_LjxUpv_s65kymlYKz0oOn9-p2U1fE06MibtCpIJZ3io1O-qmJPblEoPU9kW4rrmt1roTUurnZ75C__XHcSj8Xquun5eCnrH_D4ETrx1kDvTgO-8p_Gpas2OgLQ2fDoLRZ28xiIeONqtxqioq3zW-__EHCE96PwmRZEpqZ-az5UlTVsDWtvvINfxNTdp6zrdySTurRKqOOwovEnG1oAc5go-Q\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"2\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6864fd541a9707-13427446','','','2025-07-02 09:35:53','2025-07-02 09:35:53','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43543',0,'cd-form-entry','',0),(43544,0,'2025-07-02 09:37:14','2025-07-02 09:37:14','{\"email\":\"chrisgriffiths1979@hotmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"4\",\"genderidentify\":\"0\",\"regionlive\":\"10\",\"currentpostcode\":\"SA12 6AE\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=EAIaIQobChMIuNjBve-djgMVPZFQBh3nawJFEAAYASAAEgJ1FvD_BwE\",\"recaptcha_token\":\"03AFcWeA69XGTe4cCyMH0B7hsxJLzuIBEnrA5KDeMgGYe4YEoFbWZrWhQvqrexf7MLMGTVjF4AUr0mmAnH6yERtpkJvDa36Z9QkWK7OqF8jqrl5cFUPfphhRR97fGgwaNKLiwCBY7OCBxoPHdy01RGAaJyI36L2Y8VLz5tqdeeUEvJfk8QcJzXYfofvGWqZ38zXQC34Ryscs4iL-EAZV4oyVRFWm4jpPAqR7dWAk0HF2pB59c0MkPGkFY-TusUikFPGCvAMCZipMsvxlrZ_B95-i0dNcAaP2hcBKeUI4KtYC9O6rOoyLuIfo1WmVNU7CCp-RIwSB3dnJo07RzJduFw5AWGcNbSWzZ0wqnNXYhhXpCjz6kCh46wWJbJQ-0CCIitaLGhBIMBjEd8leGKXpXM1cU0dSzE7eWAhaF8G0zjhVKbAQ9F6Px0Kd_k7XUSMY7sFGCV71WeFYxkEpOH52dh571s2gB_97YHKD8GMAUgVqqjrNt7Ad8eAgzPkbOkTJKqHy2ABfHTihhdE5bxRpVuArelHNTQ-09z95smUBFpjw2snAU9bh8AnyIrBZxLR3XKneNO8W7ocD96rI8tmEoDajSdvTczSdq4zpJDTuNy-LJ_OBoY71pZlI2g0QYPVuiFQ1AS455SQED_TBnaAO9Tx1oUMA7VmxcCeBNB8lycdMRu6tursD1dG155X9OL-8nr5h1kFqbsd1X8Z-1oL3PaNVwmLssweBq_27d1L_a7sks1aNXgLEH3S2R-9kGNgEWPvMU-BJ_Zqk6NWj0hjOGK6ZAlcAoP2zEkoR9m4Yl6dXEHlao2v3D7Sk7VgiuCg7sRpkFfJyW9H0bBS_JsblRhZnmlYUftQ-EB2Nc5yl7Eilym2EfqDaD8D_8qahgT0aP2UrDXvcCl8nXJSQ2ud350EYoTXJEkiAUqM699r1exj84Jm9PauPB8A307oykkL9l41sr2_MbIVFoVtR967CGyOKJ2F3IAw8mPW_hL9IoVJmMOjBIXalzqOZKw58DvVApQrawwzNapbQMPMBUIKUmjJXEpTkpG1quSD5T91fZztiJe6DlADvr-oLiBEWbWg1uGXYwYd2SuNb4K9a8KmczK2Xi11lJVFVmOwdnM9qMGLzQY4Jp2iSCFeT-X_9FJTCza3nGKMeYfr2C_yF53QHWOIw-X3Y7gPgpqEQxOLCE83lYuIp2DN_ZV6qDaXGBp6qfesiGnn1r08W_SJntrUyilXbUcM94k_Gh7JZAD9gvVawuuZgxx-RuE2VQ-OcQavZqpWoqm14rLsTaeWg0OlyOP4e0bY9gsryRxVDWQKKg0yVZ5b_jHq0YsXPBF0QD0xS9Li-znpjii1WPbSg3F31hPAcLBp9o2KP2N6cRWFBINTe3KhhcBJjZ8iBHVvmZWa3s_wqnMrssVTl7PF4h-ZeaLMAJ4LgsBwFRX-W9uGIvTXcdwMgwvl3NJKHIytpVtbXa7pBSbVasKPH-4QMVYZy-rrpfryQf4daa9Gp0HOoj7YjSjVAyrdNtzGQDQ3o5C-fksAHDX2XMyZX6FTc2Bn3-yOuTgOCKg9tpFTgUT6hZFHM_xRrCrbYgNVKsEKaj7XG471NW01Q5PToAUANcGiINimsrnOSumcLpZzXnDXS6uBQ7HhwC3N9wFM964ZimJFDxZ4e4WeCggWbxCB_wNSIoLAiOfXRXVjg-IHIvVl0UZN_x8LTfRgwzod4JEDbW6Zyw_X73LTZCnduuNA12sy1ddpgwJJOW6H2poZKgHJ8F2kFi1sjGErdIN9E__lHBJ_FY3mwwpmKM87mGXVP7GGadUqjhU8wg7qz3vLiJ_6pn0MgC8SvUUykA0l2KV-ZImuaetQJVrSDUxccef9E95IIyRS7Y9NbPYPqRwnTCpQ3QQjV0MylAjD8EEBkAiZ-hsXiDFgdtxjdUAFfvBr6xtwNgC9NcOzA0eeFsBlxo-ugwdK6PO6Ltcq5KGUJNVe8k9Xlj16WA8zYIUwV_y_aOwf0mBwBmLH72-Rx9Q54XIDfsWsuUCvXn9dij_KD6SwHgjQ6AgbAuf0AmLZ8juR5E29j1lQ7wiA3YUpQ1RHj9SobAQOWqoh7W7QIoySP_ROUQBlP1TO5TXPq5qJV2IMtNuoyMymMkt_0APdHbpXYyQReqqwzgDG2ZJ-6a64zCJUqf8eOWnCw3R6vPAfQRg5BftmZXDdgxaffBWq166Wp7J8OrNc4UaGJ08w8CEpAynf6p0Sgf7TZuit7t3nqqRKsJM7ZyQmwCtiUAYD8rGcw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"1\",\"childrenordependants\":\"1\",\"levelofeducation\":\"0\",\"qualification\":\"0\",\"employmentstatus\":\"0\",\"workindustry\":\"10\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6864fd98129a78-13802098','','','2025-07-02 09:37:14','2025-07-02 09:37:14','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43544',0,'cd-form-entry','',0),(43545,0,'2025-07-02 10:42:38','2025-07-02 10:42:38','{\"firstname\":\"Gita Ayu\",\"lastname\":\"Pitaloka\",\"email\":\"gita.ayupitaloka@gmail.com\",\"contactnumber\":\"+6281991065057\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy/\",\"recaptcha_token\":\"03AFcWeA51BFS3kRdRD_0FdgFT2ohf4wbAnrfSU0qDG9mp9OeUoTJDtpfU827u1HPW7nzLj68iwZK4EHKF4INOntu0u3IXG8AJrXNKnu_NzDXAYLJbWaU8X438FJFeEmzw8UAeJw-ysT1Mw7NlNaYg1_J5vLwcv6oJcF_lG1dSzo4Wh_rjrk18bAKAe2NYNAosj0hFr9qbr_ElMdw36bvD1fKf84uWcQDrJ04wcoCNIhjxc3vjaBGJg5k7dl7m5PQUuk2JeHOO6LFrHibLytHBtDvmB8qOmzXnCPUtU0Ix6yZo5PZpgpXg1xTrrK5UN7g8FUahzQKWwY7JwaCMxm9xmeTQSMlCS1S3fHSkyxLBtWY3HMcq5tvyU9Z_anY_tt01KPMuv_hjmbS13khssbvxYExP56ZzG2srFrN7V4KAx6ertiGx5fIBbsph9LS2CcwNTkfXlBpOS7VGqJFmMCdfWiCtTMtW4DJ2Z6OP0P-szRiEPXQko5mzn28FYoJkymW6-WoRT20WEO3F2cShYckcDSWS6_MFKarmiKCZVmWcoabhbYC7oAQJXXl0uuM0TOMLK71qjeGrmuM5WKKitWqYJB-3H4NbLKEpKdjW0veMRC6j3hxs3a-1q-zQ1UEz3SEZFSJoMXD_Ntmnkjws2o2XTOJgQC9uSe2bPFTlgB9lttdw0rwJFBMHKtxCbNE65-JMH5FXsqoq_t6kRSvh7qhhY3bc7igKwyoc22jcMw6M-TaToQnEmC7H65_-gnnyhPGFjWMw29khg2bAsQcARdFh4qrWcWcM2ZT4OcLThGCbtzvd8MwDxq9Q_0OPDbPTUV305Q-vKLEDIsCckTT2AE2RmjpBeZ_TEefAAaiac9mmvdYHvTUnZtWMKrO_230up3IkxKSW8LxQwNGQRoyWgr8ilLr7_SKRoC0QV7EBLVdKDHXm5Qc4mnz2jo6ULw7lMP5LG19uqNprnSOiPyasxnbXe7X-FfDICV4Y9pFgiw1cS9Bz48SIYk0Y-h32-BUkcHNjA1Osot2GRHFy9DaUtKdBpMfrBevyRKZgCC9ZiO1tKOsV97S7YuYFSTeMxuTM6WrCFeelCgPYdVpJx9X7oHH9RVIKoYicK4URknBU6VYfUAvuusKNJd2Xv1eBn-msz0egdgty874sK6zFQGUj_ZOC0T1FlFDIfwS4z1JCFYG15txuLo3IYAH5WcaNsVII4Ej0ksFePhtcWIrLV-sVpVBZ932xp18PaOc_HuKlZ-5M9hPua8W1O1RouE5u_siS6dADv16pJr2XBXhS4_s0NvWAhJAf_nRst85uszvGnW0mvAt3A-zFeYcbSjmu1Bh1PSW74guQEoZZFAn0UvSOlW4VSXDfpFqevHkA3HVj8I58cROGiTbL86YAI7NaOMoCu0sHlcnuVzP7KDUSR_PNAyMhS7hICK3F81KWAkt9XK59hui6rqmzgI3i8Bd4AOUCBQgeBz0V-QMRYTFB8-MKEfz2Zy5Sd9QmyWmVqSwTIH05lmTR5Ox2Be7umY_AMfeEq_RbjdgS1zDO3pNtTfja-gCgVDVFGw0g0FATy5aw5E-KAYw2oReTQvZaTit6_6F--USHq3Hey17rNdBIv5uNdXfrNKHWevr_GgksdSfpzUHpQOr4sb3yZe-8V4Cwku-kk72vN-6zLBV6a8PMI1Kfra_jfcmO64FxibcNuhZ3xoScrwQOibNvJIhspAlO1KRBxRghJiuAKoTsELBWBwZ52u5WTtgd6pyzS8dKyfSldZ8UOoP2001WUhL9TZQEU2CJe7CprzeUHb3BbMVSyh3A8uGFhUY9x7GtkXheQ2QUzyo6Ul85llI-Xa1YA21cj4ivVXnG9bzT7wq-ULWMkgf805nmNdaIpX2SPSpU0jYPAX9gZ7OSZ7fQHYfti60neKCtgwQcQtxvZa9yazrIwUBu18ovVYz5arQmxLGxgbheQslg1SKHXIa4MWNTnd5UwgBVcWEyQOAfnADpFgrJCt4t5iRaLIU0UCEQF9qYn98x7M4r1iZT0cBWdf7y04X0uxWTBRpvz7F5gD61J7FsaUovuupn33Jbh2hC-0t6OMNL5pnduRRQAKmNue819Als0JyoYEb5zlCRPfjYmiDUTGltWm_uHh709jbTGT4xD_aMshYba7n7-aEbFSDbL3Eu89D8mej5DRD0pP-IId1jLkfb0rcbTBgsUy60eim10rfLlUEJx1IqCLPwJIcy8EO5KWPJHemXPE4kWKgdD4VfP1FhzYMboApVs3sRHvXEI12ZRfn7LCVWsim23dFCgioYNeH_-grXEzbqrhKrjbKIHr1owhsqUrUdUITYQYsFAw9dDIJlHF2mfL7b54P_F3lff7o4PqGtwG5hxviNUo9u\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68650cb4cf5090-88658749','','','2025-07-02 10:42:38','2025-07-02 10:42:38','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43545',0,'cd-form-entry','',0),(43546,0,'2025-07-02 12:57:22','0000-00-00 00:00:00','{\"firstname\":\"Garth\",\"lastname\":\"Watford\",\"email\":\"gw.fitness15@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/#row-40780-3\",\"recaptcha_token\":\"03AFcWeA728MWyTmywKK1luId_NrwF0kTFxLBlhxtL7Slr5n9AVFA7pLyNZRzoSAiJ70bHyTg7xUw5fm4yeA9lJqh-FvVV6atSejzvt4mVfYjD1tL4QTXy5mR_uZWqWFDxGZRXhx72OibFt5LmofmSrg4K4KeTtjyUjJ36-AIlGawlVJS4zQXRtwICpLKzlOKMQPfuLej1DVeoVbF0YqsvFWQbpU1jyrIxFFcVojylvSHI1kKJCpk3Xvc9cGqfdoCAPvHovISItTNNL0huwjEAgC_Iw25tRYzKmIuDRVBecgHoUmF5Aoi8BsLAHjK8W2OrooYR2z5UAjtgRsPe9kjZkthGDMGi7JCb3U4dxgzc2dP7nWQUXQO_XAgHundN1OFZ71igK8zuOKPnOmFO3LGmq1b5OdfXX3BztHxs-3UhEMOpBQdOUp04Dcpr7g1giJ8RkHx9cgIUYTCkOraaq9Akz4CRBLM78Xxi3F9C7jpUc161MqbeQdev3u5EyGl2YIY98qEszPYGvU83QG2SASYqufSn1GRA-gbfDaumqWvmosknnFBEZWl3K0sbgwin__WsVz5hvImH4QJNOS0lA0o57f9p-bG6UIlopkkBzV6-TTvi0VYNVEVb3pC6dx-U6v3Ikh8TG_SFD2PnKeVCZ9gP23V889ePjHMbs3srKIDY1xFMmzY7lDR8w6Z9wNOk_XLU5H-TWufmbwFa2mVILiwikzTvT6lVH5FWIHnuNmBEUm9GFoJo746ytdkY25ojpJ3xXhTpjhGqldofTGD6pIck1I-n9GdviwKEAVDaPm0J18hSrb_DxzZ9QbYZtGwPjxKq7nJ0JtV5UYl-0N3AFvyFCj1phuL4W_yRq5QTVA08VhQN-ozpakZD9NmeUViD3cnhG_RAJWUBWXokuvr8h56AjznfWFP_Gdoj6iiP2UM1Qa-A6vUXm04CK1movHySsE2b7Y6b6CJ6koiIsKLRzVaNFivecwnJZ9t-n8xRyO7SlAhgq1is-6mMZaT-BAHNvWpXiAn-wcA3ZClYDfUH0m6m3Me3tWlzo5taEtzZ29NJKmgxSMezKTS4iJlWjeoeunUNCpWjmdab4a3pjYMbaN0Sb4h7JevINwLLeZtcboYj6gJkGsYC4hOGovtn9mcrmqOtbRIGvKrjyKT-kHH5UqAR6dJ-nz_BUopuM2C9-UCTqwcr36iHUglqIHxgp63niv6OtGRxoRbrcZhecJOn9fB0e8yxa5Lq5C-Urt4C-gLIj7gRfHIn5ZML3aU4r8bG1O2f1j2KJD_H6_f3ZcFgSDvcByGhdPbKUi_8jrpwqbpkwiqNNYcnEwI1GLnTN5kOnT2opyLjbWo1dSBzT7bswdKtcWrB3rrvU7LkxgQDrtW-n3c0GYt3IvT-474QC4HXNs8yimsJ_AMaUAGOLft_Kh3XbBIiQ1c6x64fgXmilTIM4bnPioq_oKUTl-n0UIzdcOgsO4VAcJC7AgAEGxI08t828MzFmsbaMx7RO0jcCJcecgqQJniCqtkCrW1bmmc1Eq_d9QDa_tGZ-zVVyPEZOXZQsHjVYGk3yzP9_vA9RwTQ7fGDl4w4mzDB8_HZPR6iBfWum9LMArJVbAnwvP_ykdQWfRGvc3-cgNFOKiJTu2yfn1XexyfaN6xot4qX65IsNah7fDF5OkDttcxV9tFcGeeDfXYrjyupjnoSI5y4BS6YSI0nYJjU1ReJXDzNgVNUkzNmVa-tchj2BIZBcv6Lyi0C28INYi6hJTaLiCkeZ7Su2KsO1nl-w4Bvd0Fqc7ceb_zDQ0-1KSgq8c0n3ivnnQWQcwMwenT-NiKkjVi5o1gQQHZS2k9GW-eYVAKp_gs09RSVJMkYyiX8gkuRz3Zy-yWBRSicqoDlDdaXraZmKLSOozGeCMvqC0wbNG0MGqalwPVWll88GY7yMhAzXVkOPIiwpMnvivuqFCo6GTNtaUd3eIGDYmC8tZTxjyHSHNvivwFxneVoCxkX_uGpJVOWYCPKi22m4gfz4wCHKu8uE7mRLjiNVi5vXWbf_T48cTxuk5vqsOLy3vHBcAKrZvZOlRlMi5nheP1f4sTEWuLBy9uFZUDMCeLTfROTK8284U4ZeZGyAEYXiCwSSK-ytJt4_bcjTqaao7H_0xNBTF03vYwW3B7fvHKeORvECCHOFWR6vbOiRpNR6zpzVFOo\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68652ca8e4fcd0-95547207','','','2025-07-02 12:57:22','2025-07-02 12:57:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43546',0,'cd-form-entry','',0),(43547,0,'2025-07-02 14:49:12','2025-07-02 14:49:12','{\"firstname\":\"Hai\",\"lastname\":\"Anker\",\"email\":\"haiankers@aol.com\",\"contactnumber\":\"07771241246\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6tTd0ElBcdYA_uglKWxZctRZ&amp;gclid=CjwKCAjwsZPDBhBWEiwADuO6y-FObVzSCEC5ldiy0XHI99Us3Ii_hlKWgNXsXH42ufa5Nl7B01YvchoCwuUQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA5Jx6xdl_sFEdhMeRgsuKdBtAXunhEEHqeKXiCFKZfx8sJlCJROULHAP7F7Vsv9OQaFjNUyM89G9NJ_n6AftjpewH05KiM2SVB4i-DDKthZAItyj0inDu8F0IrrIy_1IJ0_iDnVObyhRPUI67BVCKlgcnWGPqkC3B1DdJku_tTO9IhgstCjiy8qH_OdzTLb5AAVLKpVLyMBVirTzcrdAPSVn4tFmOVMjptFeO_4CvRt6rPnsitcftBUsaju6XogH-brOEgXsSpfbkmGy64rOu9io879PQ2OiGnZI3dzgc8ctkYgVVuFTb3S2AJP2NAexDXMZOr8Rhkggpz9z6XuhDxBrow1Yg_E6EqdxnHZhrg3NZUuBTbDTJ5KrPsFeSHOPfAYxog5UWFtOBh97CWCEYz3qfkccMILXqA-xiT-l86kXyIbRdWj6mysOvd1jNAU6cEPhRxJ92DO9CJL5pM2nSLzVD3aisStBRJ6HPF1fLNyQKuGo4MERy5NmJxc3LQN9zwN4kHG_IWzBwULXzxImX_xc-u7tjCWPdQ4LnaMB6gLN6Hyf2iH5NsgWU2JV7hQ-SG1uKzXKkELq-CvLyywgQkbEqXA9KLwByxWnOgU4RmPbg3ioEe5MDX_HvAyyUCSgTMp-uXLZVcYIZunhor-W8qI3Ut--ldPTaaoi8IGRXYd-_VZXCNw5NYZbg7ARtwqiY0FWW4KannjyCbJ5liQwPoOupOP0JHpJIRcI-kDlq202fQqQnPwoyYXIkIk80dEOYEs7aZRrpW4J2xmrwhR_dWzkTRlP1tZu1I3i5qWlRrRuO-xRha-gRCNQxyNE_U4JkZQG5ZjO2US2pKdRul41nP0yvcQPHAOJwvWs9Stz8MzAJgwgeCgpmtwQV0D52Owhv2lrrS2Mop5SqRBCBoZElYxPbSCVhALiulMDDz3zpT2PI51AGXQLPDmXwt46nEaSxVBiyt0LdE8SjQc6WK5FKu-pZv8dPaIhxuoYB5Q_k0DZipEPrX3T47K3pqpYTlZxfcZbXHu6G3ruLmHylzk9h1kqik3YEiIzmOuFzoeIP5wGZZjj1xggwuF-d8jZ8VX2SN_049gTuWMnyDuT32UHG--cKD7Id-olzMTXuiVC1eT8swrrN8Ti858ufj_dvgO17yiO6KO3N8tql8p6RkuQrw2I-4neK5Gvn5JqRk6A6Iiqh2RXgbUnJ7oBe-S41qz4wAJcZArOOSktGERm0djGOnmg8vT7yLRZ9eta8oJbMhHVa4sXCjfILtQlaICPbYmD1pUhV793iFl5ssQlVcwwOcL8WQzbSiUfFh_kUtBru-i2kFGqBvMJYB3OO98WWf_dIXbrkJVRM76iltBJlcN_PkJQO8LuyQuCVv0mhzIljh3hP0ESHyXxy831zqX3pTP0ICf4qkZV0yiS_x_BT5UWwqr3qMNJ2ih1RTXt-UQqG0VDc3XrB5X-72Qy1hKpOQLqjNLF6TzOgUkTQr9VTuUHxa5hGKo2KHgocbaj7sp2OkhQPvDeWaNX7IdZMzPp47p-q6X3478Rtgv6Oqs0k-JLGh_nTKJhFnaJMee6sSU8nP3NHNKiEmyujLD9ictIcam8_WqbFQDVmB6y6zaOJIUA7mqNiUx6mj1F_XqAZOy6lM-GajxGlOojXfNaRFcfk_ZOgGLptl_Iy6y5nFgpHrQnEZjTGnul6nx8STxq6zsYLRr33DX2idy_5ZgDy4bVenVo3CSt-O-AJkS33iTpYnGeXojhru8AoVl5oFH-nWDVqXoMHmKb4js84rQMFbHk8O_Chx6XcioNoQ248PRpzJY56wSFjnrzuU5qvQuX4uJu1OdS_awowaMcCWFm1swtYBdptvVzXhEuj38Zi5np_2CTRFSQE6_AAISmHkOHvsaA2_FbIUuiafxOlrevBdDUUsRmz7YTsXP67NDsWPELsWfGbOaU9sn-wNysySuXa_jDUJUPXdwfKZEvuBg574tj53k7p_fNvM6YVhYrdYT6LEPmJMwAaZm3smmPt2X3VLpvwz2Iif4kSaD_BrLTHP7M-6yKzmLA96Rg3uaxDtidUe0vSSVp9fuFBtta_FKpJrmzb0aHuE7Z_2MLSyQKgmuVbIdc9fyZ08eqqcM2oEtBfctznEWIpnT25_rbIvZhEHwwOItB0-aobauUWi9VRjFKO_OlEcYOgRTU8I0P3IykcV8dosadf_D9He7kZuUR9ELkCBptb98vKVR2MKSw4WzbHSe9xMxohCATiljZG5T6u3G-Vw20wmVwYbPa1yTgMxcEmrACquYh0Vv-YNlI41KWD1V-bQkNL1HcxOMiIgnTUCuh2OV9mtrNWFOmnbcJL7xVfFikal3e3fuvHnSVCoQBLPtII7CorR9cG9FA-hRbBgw7KD2UoupxQ\",\"recaptcha_score\":0.7,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-686546bff3f920-67482989','','','2025-07-02 14:49:12','2025-07-02 14:49:12','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43547',0,'cd-form-entry','',0),(43548,0,'2025-07-02 15:16:18','2025-07-02 15:16:18','{\"firstname\":\"Jane\",\"lastname\":\"Mansley\",\"email\":\"info@easepilates.co.uk\",\"contactnumber\":\"07527156564\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/rachel-frances-thompson/\",\"recaptcha_token\":\"03AFcWeA4DXkuIGC52VAxGM99be23Jpv9nkqzak3JaBdqh7pcLQDrTKnx_nAc04OxOw_P_k1p_wCJL51fRGa070OyAmwBXRTQ6V5H_c3F1Xj0prI1ZvUs_mUL8FaMIJDnv8_0m3yTTrnB8wPuhN2P2uuSwlxeM-b-NdAho_WefpfGIjzkW343SXiB-JdSLLqfKQ0yl2MxE2A6_qWJnW19lyQoUmXQyTMH5sRvC6kJQQWmui7fHNvwlWRIYBebNVOdC68ISyby8-LErgg71-7pSObGzghBDEcRQNCY7qwQXsFWFBaJQK6rtiW15azuV8ZFX_9RAwvuO1jDbJc8hjajoNltKaLTDXgGeMPQduCI3ubT8Qw8pcSGGFiC-RsdwuUzvRt9iE_SXF9RBbWs0iDVry_BwEoP1Gsdfd0PbowxNplpuhPS_LM3zytk8b0TnA7MDc4_AUkqRhfEaQy4r_b0O3tdeR-mN6DRSRp2Pgmo9gh6LnrUx9nc2_8IG6kWcZMFq-TMbjpvZpExWhzPEKar4a0ufeN-KlhZoOR1gqg4MGag5F7oMouVjuE3ubs75jDPEKeOpdxAJMHx-DeiiGTBhmN5tGe_QlOqE4EV_FIwGd5JvWo8AuRPiqZZpjv8fXWJwTcMeeXu-LlPrKISBPqXRssX1SuQwA3JuyU4We1HlW5uuOrf_pQxFoNWfxZ39x2ZQR90I2NH_h_deb2nEkVVz2L3xawd3ouAJV79AO5Z12GtzcycWWPTf9hGvCLUkFI5OBsDgOWG00cfrlt-rj9xHhS4i9Kmi8yoMx4zAZnuQRiR-cu6i3n-vrR5BFRQXZu-CNMfzgOvsT_3G8rHiMEXDVC4CgKoHdb6mm7v6BM5JFXfyLcrAOEvA_T1HMzVrE_DXuA5SNx7FUNEFKbKnu359QlOihPmnDVHwXNzRtnmM3TinnS9MFl7tQm1FP2UCH7fzIL7iK3DA1ZKahIqU5EFaqGjKaixhwKgUm7fHGT9OoTMm02OmmYoYv_5bm5N5esb4LHRvDRfFvU2hNEZgSkbROaZMMYkg9n1hdymG2CGRQzLuocQ7Rwm-lI3yz0XwrxyFgLMKE_oPnL9ddRTpIsrhS5l0PXMXDPpb-pePv1bOI6jmOGPEkhOAxUTdRwhYoDDSsfZRqGmEbvTULkQHZUlCi2sgx1Fab9dHzWdDR_cChgw-LBSayPS02QxctIwFi3M1mBka7JkdiW-uW8MHNmcRcl2QzPNFj2sRjphsojcuowXQN-7LkyHagKDn5VRINiuwOWoKnc1DbcGp-vyrwWYEWniCZG1iLlO03QfrCCf3YwcruQl4j8sYqSxxwETLzRkeC-HZCDkLmKQm6OMi9cmOsBnrjMDcNpuIX9z8tH8CdMfLP5d2ofrlk4cFF18C_yruswD7AOP2kYKdzDoX-WN4SM8L4MDVv40aJ1t3ZQrx6VRAuWHt9AtbvYjLkQNYqwBqd6CNqhd3oopq2zTOYR3VK08DuR3Mv5ZpwEvIW9M9KmfIoWUAJk1UI53XIvYMJQd_Qv4WjRvgBjVaMztEDiGIyWP1bAEAmSHnNRq0oCyXC8cltaA5VORShRCqViYFDb7OM6mGMIkJCidkpq4MfvGZF26_VboSd86phdMobT-pX6PbZxgx7PX5TE0ogxaNpTF_QCu3sePJxu206VwSwTy7C2SHzeC5hslzpaXN5G3K9-Ls2lhJdm_xIOGkDcrDE4D9F2MMCOj7J5ho0nDIdpHOfturkJv-tGYXcDUILRXxeUUiGpi6Xu_bu8piVvO5QCYkOVUcdOA_gHIWzL-Hl0gwUMjPo_5xzsGGcMZtisPu9lj41GNheha8U50jkO3Ivnr3a82EyefWR1LSSbXACY-st_tzhtl2W2bdUbNnObvn3B9tzMuWwHVplbNReO8p-7o51Cf4M3b3ivyYUyqBs-lRkB3JU9NpJJsjzJ4y_OBCVtH5KYQplJ0h92FNcCVqmwm8uKot9X7IV3gRaNC0tqZonO0fh5oH-Xh5xqEdeEfBriwNmS2TNUngx1FBAtmcPeIe9EPHbF_Kd4PTT7xOQyIFf-Ae6IUQrBRNnQ\",\"recaptcha_score\":0.6,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68654ac2d34a79-28200851','','','2025-07-02 15:16:18','2025-07-02 15:16:18','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43548',0,'cd-form-entry','',0),(43549,0,'2025-07-02 15:27:42','0000-00-00 00:00:00','{\"firstname\":\"A\",\"lastname\":\"R\",\"email\":\"arunr8197@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"40778\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7_8_rYtlQQjoq8vYvOIMUoyJlkQIYYmrgWaQ4zIfEHxdWlX_2wTHOArC_mgBBIgvq2OnocLHbC3_TUCbnnysASF4fthCRU7EV7sUSJXHagD5xCq5onoSP9q53-IUoFZD6GnxcBNw9jOLqP3551OJ--8ctR_OL_9gT1gCVTTfkO0NeXcVno4GXUPUTf-SiuDK8pao2y4BP3wcu0BUMomuZEeICo63a-zUUUoqR8NC6d2fG0EXVpfVx9f9rLx7Y4mZ-y2SXKLEXXw3r7yQkiNf4cjstNMTU3Pr3jR7ce04oiLvayvyxbehg6Wlw3V0_86w5IvjlfvM-FygIu-GQf21PZSMLffOQOFINeQe11rAn5j2u2nIWccJcnNBLDmJpQhj_H86Uo5xUiHE7R0RiGL5N250MwZz_RYUwWiRJBfxcAHUkM24IWEHI0H4XqIi-ukaMlqQJzbS9QmqG600ZMmI3D6r6SN9iIxlWCZHI_Ka14pOeeM0ktDpZ0ZVCYGaH_HW5plRbAik2zYyQshXzyGzj7ZLxPKgxlg4n8_402srWRoRa3w7RNK0H-8q4MFAivAqTvbLqFJJDba71RutbQA-x6E8oQPJ6BguUXq9zMgm35gSg6RQ0InTkOcNDF3zGpz7uSrowP3YPQBfdEUXez3zny-dKWBZ1QdL1o3Hqct3rScHZpAHwpjcQGFrWxNZjiRGDGFN4Tlm0kVugnUtYUKvpI-Awn8xVsn7KZ5uHydLray87B185vsJOKf5P4_ymq4dF0kWdpeK4lnL-w5GNGPI6daOj2JhPK1PUG_vrAkvalpZvTcJGGn22Rwr6WNhEFOIkt9Xwl_CeEDRpQWi3oFtdGAcBRI0MWxnd-xKBlBpkeWpABL57VdiEkB_hVtz-HI_bhiZwKGOSMcYMfgU_v0whINJtPjZ43-ifo0N_an7OXh6w61mXTI0b2M5P7rQOnX_8SywHygBx6ESrb84oNthiRzwrh28c17-T3GbCsl5qqb1rD4QF1ce448UCeJyPmHn33MfntjIzCraW2N7oMlwoyiqvbbnJhBQZwqNT1xtZQC3wnjg-nYZAGAhKj_T-lr9USCEcxwKl8PbdN0R1Iin8CEpLXo1GKL1e_cxEftppzaNh6Q1zcslGoqnr90mBEWwvdHf67v48aH_90Ntt1H4JxRgUyyjxGL2mJUGNSysLuWQpQsj9FkwRCzalZgTwWlRGOmqFdjYSPQOFDdmSSn16Si1LhAtwRaUJsV8xYi0gsLnF9hfjhUths_5E-xM11I8XhbA91t8Vujxr_mZKJ_lP_qiK03cpHPlvg-YUnY8AvBtyqD4NV8DfC57848hCrjgjgfqNiFnat6XDQk-0f_8Xbd3YgmyYCvjRYOcbbsSov1Ec26Nk7KDT758nOSTaoDQZf9TExR7I8CuuKfsuxYDcJhZc-6u8PG0IGMGeYVAoQBeqCW_WNYI_vmiJ27IAH_tAn-thhEUlNSyUuconkkhGpDBZJw4kHzVxnXMRLdxduVAHjk8bzuHT-o6ILPb-Fs5_5dXus6sR-9a63WrpKTQl-_HsXB8CI_6N2zPvMh3F2-Udy4-9SYDg-D41Ii9r8ZJPKWizyQTWKmoPcWP7iVAYZsl89tJyttKJiLTNTwHYLcp187k41tS1Y5wZ0ZOfP8UJFd4rkiI0pkbH3MJWcTOc-cT3GxmNcWcR98_Z49Kjg_8rZLtfnD1kabg-Q6Vn8PoBwkkXCYUeYOVa3Y9EHAaDxR9eWcV68jNh3286J49-Hb_C73gbMZT5Rr3cRI531O1UwIHJi4rtNCADIIsi0OX8wyuD5CasIEHUlaPhAherQk__4A7WmSiTQ5C5CdhTtuMj_8zkQ5N9Lruq0R_g2_V_8p1iTY2tLdZHXEFVJ6wX3FP6uXSEEhkSBdFlPkL1a6_6Lk47eIqjN-F11yYT8Fe92ujhz35bSZHjnKzGycrcecNW5nQ26SQcxdNAFhB7RVE9tYQNN6mZzKodglmTrA-wtr6ZmSqNR__wF6oVHDEniRi-djqUBAHmmy13l6UTHE09PVvTBzWl0abXsY020zXa_Ir_mIMnJBFbykQnp3Mb3A_t8xByyATMAE_4-2p3egLFoLAdfjWhmLW5gfaUjbCMfR4C3iagh1v8MKM2rMbXO_3mgpfE\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68654fee178355-99004590','','','2025-07-02 15:27:42','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43549',0,'cd-form-entry','',0),(43550,0,'2025-07-02 15:28:23','2025-07-02 15:28:23','{\"firstname\":\"A\",\"lastname\":\"R\",\"email\":\"arunr8197@gmail.com\",\"contactnumber\":\"8136955521\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7rrqQRusx_h4WHS_faDwT3WuQ4H7PjVbWFR0gcRxbJqcOZ3SLEK5BfHnnT-P59RQelNDId8s5EQpT50TeReTXwAH6iGp65IoHrZU0PmuE8oYKXlkluNWZVALnL5uBOyv_21f_YRPj-nDXaTykiaYL2ydUyESX2lxx4CBfSsfC3iSBk9td-7z4yB1P0zznclGTI6CCcSvxpBK6SrbNMOj0sfvlOx4tvTdUr-lI13qSecqSPSZ1mLEc99-dm6MGgw8P8ayesrvJ3RSRHF-IPlMlJxzhE3plwT_H52yydF4wezxM9YlP29hIWfZ5L-kpPlT6uETFQ3lwgKCHEJ3ujQ_Qs7nROqi4aGQQn7YqTFrq2c_N4gPgE1lQ-qtTj0ukhrSuBeJRa_14pCcdWXECuYFoW4RGCvvaYZX201TcEMo8RExJ99d8O4n3mMuEx98YV03dPC8QlBh6ecQE8FlpVlMxcbmrvbfBsjkpvhhKEyKChSXnNl9-zSeqgIz9LMYSZlL8L72jtHK4zyRI0hKRG9u7eUHHDqHcfXSkPrJEjvPL0Eht7jbHR1FgAoVoLHh5ZUCtbPPjiZsAqVckqJkSHm7Vbjf14ChNO4G6GAd5tqzObkts9_XP26Z7UliVUHXG1SW_INKIi6xxMhGzsS5fAMK24O92yMFSfZIMh_au51yoVI8o5ebssmSgPHIFfq9JveQc6q6ai5GqgbtwmGm6pA2BsKfqgj9joHf9qftlMInvosd8cJLtTQRvdKYgFPgGOJpzdeXeGdgMMFtWdWwDHBAkteHemfZgY-nzlk1Dx66ug4fvw6vwdNn_gYDe5VBW-cwt2ISmGMRl1UmW8N0x0iXsQTvgiYYD2GLjv4XBF7Gn3W1dpOUZnTh-U0MMUV78GXAMLJ-LZFwPFKwFv4Xfsfq7jt5s12v7XNqKYxCtwgk9aUM82hYnfqWMI5WojVbWjj8kwPdHvrJkqR7Gb0Rtg2DL7xv3J67CAIqbu6sFba4rpPVejFUFV_tTGUKRjUy1qxkGyoH4o9GRvQcb2GpcqoMykB7oPWgGDu2Gv9U_OIQ0b0ESeuS7F-uAJ-E7-a-MPDsOfK5qZdlTnUEoA8GDtjHP-uk1onqkqAdAGeV0TZYqL_OlCvcaFyL9o4HARfgl-V__Rsui0XeFYaGTtEgOKaGZ_8HNXZUiu-_sKVJ-ixfA2eA3sGnyPfhQ2KsaQI05V6EaKp7HooJW9v7SnX4-LPga6ZqV0hT09xhbtx2Sm4OZe1lAaEFeDbvZqSfMGGTRVBguOXvQKadW8wWKYSDw2EKFJPTkavWQiOUYrIjCAhOgebrjv4lJUD0mw3s1jFIEPqJr6lzGUTIv4DnBIhJrG51u7kq-mgR-tyjWsdwkm-uiOCfQSgPMKhz2ci5_J8nNknSdynVN6-ZWi7aHJ5chdguHjN21jQuPxtzNqCWvYlwcalrL7GY8WV1_b-oihzUyCciaxhfDJw0MDWi_KsXL9hx5Upt_yBzwI7NrZigftr4lyv58UkYnd0nIPldY8KIWoepRK26d_V9FYDMpvnxMY55o00lD_9ce8GgHuF3CaeOQtlUzjAv7cFCHaDZpRj1Pu2vZ3tROH9xKdObaixyHz3b-0JQq0w3ivI9Y-3vd-ZLe_I_Qu-72aKRJSz3GOe0bNKkQn66fJ9_1Vs9gumC5Q-qS2S4SU5en6Mq7f8O_QWLshsv_pDDFwncSA3c1sVM4JsqXRyHeKZIciaEETFvYWSNGEy0MQ-a3oUlRv8-vBztUYkPRrU_ShBF9udwiu6KnzP5AzvMHHITbvantm0PkkjS6qd9GNMVdA_bjRJgBmFY2Nkw-Ga3IpB5JsKOyv_creh_TG4ZVEO5DZ2t8Jx7jWQiUtpcNQ925DxVW7Ol_CBDsvQBD9LlBHXKuHIS9i72B3lBxtqnKLJYoevDxAIOoEDghk29bvcrX_F2tts8un3Uck4MkDhSD2lvbxwsDky6W-U5I1QEyA3UAattOVviuDeMddIJD3yNnYPyYAuVBO_KzZip-2cHYv8ccHt41iG-rl_qe56TFi8ezcAZXX9HbJ0EeU7uyJ6zxVovyQ6pWpdy_rzfpDv-W434ucqY6qOOjNvYX1lwMdSeRD05_3H2zPK2RzufWimw9WbrJ8P1nJtceNsmA8r1arUP0o9Ba7qbzml0e0LN_R\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68654ffc8f5407-53183277','','','2025-07-02 15:28:23','2025-07-02 15:28:23','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43550',0,'cd-form-entry','',0),(43551,0,'2025-07-02 18:01:05','2025-07-02 18:01:05','{\"firstname\":\"Jane\",\"lastname\":\"Robson\",\"email\":\"Janeerobson@blueyonder.co.uk\",\"contactnumber\":\"01313127168\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4hDman7ewlPonMpBcjybKR9o_imMAGgf-qme63oZntdZ3-iYgepZrWWN3d5JAQTVr53hoTj4okPgb6gHfscvvSVXwhFctRFkfZdMZtRUmY6TKacJohbIK1E6WE-x1rCzEkFyQkEkDT3yAjyIpGU2KRpolXgqxPMfthi7761k3asadx8IOoSwWt_l2H87oZRDVDgt236s1lR1DSWGYxGNBBL6nEcvTeJ2P-KrF0wdhLlkPRMpwwkDTfLOuDst77C2LKhxCS-fpJ70pUaOuJNUAtGqNGExLYW1tcEWWkenKQwis5jKrS2L6rj4n2eLlZc6Xs0u9leX0_Q8GHvXqf8iYXMp8z9EaXj5Sv9KVDPQwon0jXx3aSaHPg2Jfn6L8rbEPtbkfyA6-C7dnA89szihD95hKIQMeG7AIMPZaSF4uzm9OsCVqoJptOrKqRJb2KTmPk4qQTmijbnz2ybq5cNb0xXXqlDK43fPktdL0NDOFRODpcOzgMdcjFN9JjcOUhcG2LwMKl5vE0i0_p1OXBPA3QXLlX7LcHsq1cDZ4pWiyVaCrv04va1pSfz2psEQ5AWVzbXLt4-lewDrNmnniK7J7SqUasWaOH3PvOMl9Y8_sbX8qx7iF6AnKRWG2uRPtK2NQLVzdoot3jqL6CsAH__ssREMhbwmIC_7LBmYWxEmAPNNMRD8iLuoeLkw0rlXvyE_OILbP8ORoW2nmEOU6srbWYsCPYRiwcXomFF9HE0Hh2o5XD28TAlPZqrmHRMDrAcE-tHkQgRnI_2bp73GyyiNdg3OzKXdAkS9o8I8xBIAUcHYF3MKPWjxAgqxVzz1uZ_OC9Oe0GMJQhEhri86h61sgqtbyyh2dTymLxrNPBOb0YCbGJC3KgHtsN9EhNRUOV3oPMLUd6NgSgAuXDdnsFWSetFwH01z8uI8Gz9v_QIyaBmVmRa1U7k27m2jonNclOTQDQcXSR4dCy70csovr3J-lEvwJsy7wvmzPPCL1xXOhXFFamxXkvHr4ugNjj9xSVgGk71KydONcMXZSRAvVfdID5S_TP-pep-Elolo9mQ6ldQndu4UsMcg1MlUT9_-MODH7o8X0z874KnOGF_I4jxdaSP2MGNzqNwIg-pnKd24FP5H-xOaPKzKAw-pqlBYUSeN3uDXbepfjXOmpeUrcdknQ7YGmSqca0AfQuT9C7Wt3OEh0DRFytF9SvIcSecAfsDXw-1zTSSZwddQm9nRO-A7g2Mc-7A1sVJVqEQYCnbelMGCP2Bgi6__JvorpEhz6O_fBf89UfM5TriJ35JX6PiVUqaH5RKrLqJO_08-3Jypz8SmZmmxonfxVn7rCfMwLMStu4_pIZZRmrkWqSjo4U7rh6EIKJ2gcY3N1Jovt_d8gGsDFV4WCZDRU7XYtQmcCsCHsRrR0EtWqXOmcJ-4mz4zFow75TR9LAiPBkic8yo8oKSSYXs5TllO-FHZsBrw_mYOYYyChJPXlX9naqusp8leHVNxX3802UP8TwJ2AFqUEW1IErYi1SJy3I0wn9RhDkE07XrzbzItNthx8UXcZTsDUCmGfxTMDOpqP3W2xicBef2htYF9oKnDMdM78JN_-8sP6ZvsProiawA9yGOIPCAu-9Hz6I5Lpkh1NhZ-5GzfjjlsD0f6r9h3xRUUbXKegVUFQACAYq4X1b71nGjLzYUSfAR1aL2tQVcu6-xREnDGNGGhKtLZB5mOO3c_kQ2rN2ktmzrWyk_05VsVuBH6IYiDI3SLKm7BMTHfYO8AiOfgm9QiS9vnFL4w9anaF5fNMzsnv1-MupJ8ZD8tQlcpsVo7xpYrLMLHjTegHKFO4Fh4EObaZkF5P2am90FuHsjWpMldq_iCxxRm_yr-7Q6iPz4IrVLvYK-QQiM9P2njFfio4c9wUXUfW9cbOq0ey-FtQVIApZpsdi37iap8cUC2TSRcVJBoAE4cEPWXJM-f2QlIkdHw0lzLTCzxFjYRXboewaM53rO2qMPiw8Lcj58iy9kE_lEa96RN64wQKeV5VXirEzPyH2NfSP7PMgFBa2kcHJM9TjerH7WRLy0EeqQWlnE2CapSHhFg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-686573ce7ee1c9-59557709','','','2025-07-02 18:01:05','2025-07-02 18:01:05','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43551',0,'cd-form-entry','',0),(43552,0,'2025-07-02 18:01:30','0000-00-00 00:00:00','{\"email\":\"Janeerobson@blueyonder.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"6\",\"genderidentify\":\"1\",\"regionlive\":\"9\",\"currentpostcode\":\"EH4 5BP\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA4WKpuuDDGLCnKWoORZ1DOgLRCgwdSNSb7VvY9Lqbh02AHglF3VtcC5OSAICa4uXc2XoUVwIlBbkCL61C1EJgn3MZ-luhV3oh_7VKPMt9v8iiVQKVrtcl29TGn3gdgB4-YFmbfG4wADsjhivnSgvxyCaKlgfez6UvDQDD3ZRe_rC-O8x3xupc9InsYv6ue28GL7m6rT9NYDnKaqeOB3sfKzYDqxYwftG4WnCB_j-BCLVw8KQmdBjr_cz_ygA4cCPwGHjPBQ9BYt49D3IVkoYalJW6oqkIddrEnk_8bDtpGfFbnDZUQhkXfKIxZCBOdHAuNOkYEO_STi3Aal-aVQcXcC-tojMov6AoqFxTB7dyj169jg44h08nMAbaw71Ah38WDTFpIer0gOn-a2TT_nf3csHEQuw79Ix32s1g4t8EW7YYXADgSVma78eg37WvbhTXnd0jKt3V74-IlzpsaZ2f4dPqf4MPJ9WcN1kEd72oIvSn5TA4FqHVQPKPHQDlsfKQN81FOPkAl14vm8LaF5wYajH8senrWKTK1dqNbSDdL8Xblw7Ig98gQq4eZLk4xthyL7m_-JJEEVQplKwQdj-KkbKDGRc2fTvElpmEbRY2qmV-ccdyIXTMQHALk7yGBP_t8BYPtdzFG0XKTY8kEzW2sOFYebbF-VpHExDS9jVxCuf1J36EALuLXPRdZSWD0YmB-e5Lfk6PaKJ-9jmU5CVMtj7UTt5lHAFW7WCDJ4nkRBrVwDBsRqHyeEiIInjP9uQUBsr6WVZ96aHg6J_wgP3hgdYbXueH_zTaWc6epqy7xFvhSOMx0GhHmqKsiHYXqpT2i6KZK27BFf_Slp2RZyqpyFISfONIvpLlN9JnI8eIgMdY2knfsCiTCpTkRwdKYUBCSv5_maol6eUmq2us2ZOE4DqhLDuR0m1gEmMOQOsH0SXw6jgkmd06E2qpzHxXWxl1Vh0ACPUWcbY2nk3XU2JsObGKPaDa4to5XErpV-OsWpvDAczbGyvwmezGW0rORjEOSGJklft3aqL1b3M6iVp_aWHGnbC9MLyMJI3_2athsmtd0Ew3Z8PeuuRM_YIbXIP_ytF5VIW0vo-NpHIxngti1Xb_iSn1bEx8BfhTtEM2vrCjMSsDn9wLcd9c1Zok7o5oH3MrzkWcyshLBCbQAEVouoTiy0v233nTyqqSbPtbf2pjym3geJVvLDi0tf-L1d38io7NYnhv3TiTQTFaVoIikWM6YBzrlGPqbSrxJ2I302S9i3H95ga2tUfRtb9ZjgwUzHecGalzdt0WUWXHWKxmyw0LW03NsnoyPmwUto6TxQSr_0WTvuoQ8dut5IvGyxwthWAtV0BrUiM_2D3W8MimGgGKiAfe81t9FwA1K2BdQ_Q0CnLtbpyu-qC8GMzI-9eLmT3JnB-QqxEWSmjd0OCwiGn12Yke3AfvmQR9zv8UqtHVwSMwNuTpk2M-gn_upArRtZ7vHNNzzvu5RTq1CIqzOiAzfLQ4yy1WRY9cFieRvrLAermYWNLpIoFQkrv0DjJc5vhUpBsdNqClZKSp07LjE1q3W1_TulDSMLWfHS50g4xPGUI5WhaYGsIU71lGqRZ87pvndzdqella78sPyqfhQqo3J1URC7zsp0ZVOpMsDBGZGQNF9kZQQl7TGCkUrgKThf7iKRrph23g4bkIdv2Nqo54zfgv8tIo9GMUnjSQ8keFOyLfG3D4mOHgoSX0dxzZm7JPf_vrWTcoKvaayEVbNxdGS83bNeXWRbJcuGnokYYOYOxPDD5EFxO4wJqJsEO8aAoGxCmaVLxmBo_YxG3KG6_ZLmzJPllM6bLk04knIvCXMHx7uUvLxUCOVLXvpDL9KbpOdRjcpM3z-nQsdomGVkFXfHMwtyQjuMTB3YusodlLmrYLkHxcjFYJhD8u67i2thq2p4S0Q__NFXRWJdfdZXxZ6TCBrAgJMQDgbI8iiMqWoNrqvjgUZIp2pdeqaAaucekZ4dJLLQyHvDR0dwHnzhWReC1zDRYzEIIgCScH32Tx63gPSme3GG-aNlxAMU8peq00E5OAAGAm6a1fD6gyiVXkz4og\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-686573fac12fa3-90912187','','','2025-07-02 18:01:30','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43552',0,'cd-form-entry','',0),(43553,0,'2025-07-02 18:16:14','0000-00-00 00:00:00','{\"firstname\":\"Jou00e3o\",\"lastname\":\"Alves\",\"email\":\"jpfalves@yahoo.co.uk\",\"contactnumber\":\"\",\"pageid\":\"41533\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA4OnidIEEzOXVwXtEDmfANWYHxNhnQx_Q_zof7aawxjJkLx-cok5iYLHbmap9UbQZo2YcvlFnli1a0sjFY8rZcHu1fJdczH6cGPB3YSeub3ROmQQBC814wJqHjQZck0juBfHSPnKyJaHrHy6UdgQd2T26agiaPMT6GOBIHakaRLn6wcifK0bO7TThv4qMJKpc6j-AtVOC69jU03MvJlPB4eBVoxIttel6UuGQNoIgtbhINCsegHVZecitODOenw0x0QcY9WhiXFWxsFHsNfpZEF9BPNuZguxRrI-pk7LQJcoit52Q0VOXiVF4SkRyDPQIMxLVA0UNYoh4ZPdYkepXgxf14ks754EawiWhHaEpYF8LqRnz0yWsb6QPspPbKQRRnwDdk5GWIHIyvmPaNX39fJvAXO8MUPi6_7sRmVIN0DuceaSpKbC2U72CTRUBj9zxN0lcd9EoIjzHyJv4-d39IXxwgURIyY2KP66zEI8q4CmWDbnlKht3FMwfy2fZ0dm9KioGMITNWw3c_4UFtOQYFu2j9FDkao00mQkjqLnTXlVZKean42UCfcnzQczcDtFPg-sCwq91usGtqsMilIZjsh4AF7Cdm6f2tBxPalrPSpyin0dPA9j7NsHCpowGL2467JJL9rX-R-gKH08RUyjcM0Kjd-SD3LM2cUKZoK3hXyOc8wdoCrPLg9SIiaCqS4v_D6zhTN4xzDO3xmTCcoFOA2NOPGvxslUswp9n37A_R2nhLvPgZdVrf5asH54bQKF61X1R9myYN7YhnQ_RIrQTOzIY52PCaj0HAsocwS0q9lwxdo5iZbdq5VaCbSmHdRxZoD5nIxAOx4sXRHFAntF6Z-JgwsPG4cHswzem7unH9Rj4M4Sr87kus394tikiOXTLVlXc-0RgZ-bdnK_FVeDYkCrWnIM4tyEnReG8W5dRk2ela8eVYaqZb_ltOSXzTyITL96Lhoe0AbYjG09zXNy3E3a7gzNWCKRX3ILc8AWFLTNTqFkHGjmAizhFL2r2vEHxbVZsSBh2TeReMGpz0uf-FMtKpcCprDfOFLQ1nZX30IKmlBAhoXrd993jrmvjB0Q33CklGFtd1SZVJ3N9sGb8VSwonk6r0TtRTY0bjzBA01vr4ZR1RMOTu_dNvBoNIuhRr8LAyJgcHD09725ATjEVL6EZVvHW1m3MRqDSwIRgpY0qp0hBaU3xtD_GGApc_T19W2m3hyi1Vy0jbib8w1Rlgx9S2voN6LrHxVoULltO5nwWocOLyA_Pl8yHBRGoWW0H0OSQZleGphJ2HWcxZgVbpM5qqJb0ZL7QF5QycvF-MN-wfcLhp6PlIXnpyX4yJvydV4Y_0CIKjQUX0qW0HF3Coz9iJBUa_MvkWm_KMzLGHDW2xLkwmvWnblwEVEKpSQDG7bLnRon2iRBOgcJcIhzs3T5Wgq4sOYpIVaydZkuAwkv3qK1BllaBPPzeNSax1jBFDB4FsM5rt-t9WNrt3Bf89UelNIB7OcCXezRjJLt5WIHe4hDKTO0Xsbxb8N3jtYoxb9oN_dst-zg-E8S5BJpGV7L5RCwZLtksdrgX00iUwVGIkGJe62WLSA7sz7RqUb-QCB_BZvfvEjYXGOb6nw0kd3wlzd98s8--D9M8A3fBZr7_4Bg1D8e4jUYPHNjmEEnEvSxxGeb4C11FVJVwa9v4lQuHqMaTN4rPBGEZzviI3ZEMlyQQUoq9PUyOz3nxfbcSYg3h9kQv41PA-126DRY-37MM0VV_D71ik6E7DThrjCKkw0C6OCBYcKgPSdLwlWLB7B1fYLrfcmlF5BHqZz1KMRGIfG7vQGGKUYUGQWjrzGnLkasA_5YLnTKsJfK5CiilZmAoYjllrLgDHkgP5vVaEicZ2eFUQCM7c0l_cacj-tIXUMDXgmv4ZHd9vmsSo9Fv3q3jOOJTyxrVeudDUc0A-pAqbByjsi3WQPbnTqhz1biJx-ftsikX2u5pjLbrqGStE5DgyxLaO3q7ZhlvRh-U7LlQmylM9GHTnU-0Rmaz6UgB1JasAYTSW8utqPbVv862nQ26JngD1dABDK4eg989XNmhg3XA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6865776e33abf9-44875217','','','2025-07-02 18:16:14','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43553',0,'cd-form-entry','',0),(43554,0,'2025-07-02 18:17:04','2025-07-02 18:17:04','{\"firstname\":\"Jou00e3o\",\"lastname\":\"Alves\",\"email\":\"jpfalves@yahoo.co.uk\",\"contactnumber\":\"962563666\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA6m6pCf5m1XfOGKSoGdqgGJRLD4OQJVf97FFDxcKTePSLe1iOMavXqHNNv0zYggcXItxgaNw8Km5l-LLZg_WYkvfzt8YYK7skOJL__HRBJvwWciXZ12OMDMfQC0BJ0XJBz2iNtjv_19qmMVGUU5NkA2rctifuSWy0CgQ3B_mg_6vkhDbY_j3O0FfFJxYOS_fSeXHUuCU-cOcuWEuA4vFiirAnksiMP0KN25Z2SczZVQXq8A0LER03kjbao2VXBh2XmbvhsAh60BDH93ABdJoe3zW2bARM36-nA6pub9FtY0Xf-ZQnZX1LN1mi6HQ4jB7HsheYzjo1dmAVi-GHWphxpF0hAPMTiIHD-BA4Xifx6D2DJtzMlCENWMd0_MDEVWVVe7ofo4_0GyDoJU_Z0qydP6hMM_eZ0dM1uLiFcnhbhQ6fFzb2BsX0N9UBs6v7czxxQmK47KTLDc1PAh3ir4F4F_wxi0OJd0a61FNlMFwV-BoAEyPOh0L7NyAaJLhOL_2l3JT-eVzIlS6-LJkuyoJumna3pepTsigjHb-wP_IzcsSNiPjjSTpDya5WR-J8fC0LhVJJLz-1CjaannfuqKM1S9G0iUSR_HCsIKgaS1hR11EjvMEcBUIU8r_7bHqK-rRvh5XOP1CRibJ2iBTNXDEHqs8cH7f60h1NAqoKj6bn2q2rizY40XFZhvqTT78mO2yprerFWXJQowmDljFmM8c3hORphqQqo6_oeaOYm479DQokxCmWp497EBakwtdqhz3R4alHjl4racSKRuv1_DKme_1h47uWrLyTReAuGfQTkKzBvtkeook3Mo6PN3XftLuswpyxTg3VGWKXz_gPWK5zphYwPLSoISUYaplLoWWg3XA6P-05eO_NOqGrOGgKps4Jr6UaC_IFP1xbCeiw-55g_wRpqnsvdClTvPb-B3Q2f81cRdYtlXUghMhJQutlANsqHja-aKnaPOdTy0GUEjT5nLY6tmSBCSTmXPAZSsGbp4HGAMtfAkKzC3Atv29PN0y8rUsEaoqAk7fAYN5lf0ztYdJUwoNunF8KHi-6s7Y9UV6nXMhy5LpTyKQ3du2hjasIf72qHONAsJvZTA0gtKi49xKjW9tNYlC4ZCrfFGXxgk6IFDUhXMUJMbMQljE8QN0q50U8lT_n6beqMg-d9CduNoMy4bH0HvGN9TKR_uCbArsL1dq-HNvy9BGccgz1tLvvZxITRw0nk26GAatnIL1ckIDvsgX9UOHH-rev-qJF7GF_beJrr0m7hJ_-LypWYIU_ydaE1LM_ubu8isLXvn9G8XJf41-DGBS5z36qbELi16gBvHQ27kvijYN_5MaI3nBLOUVYDO-szaos0TKVHLmz4LU4p8BqCaZftdRf_Q2kebHSXnHdq_BAqq781Z2P456gitVwl4iSO-XupUMqC-W8u-xVEGt3cMJp4Erxrx5kO1lLSSUK8KZo6Kt5np4o6fouD6AdlpTaqiw1lTYVWdkRjcjnu-hj4rq1EPXJa9wQ4z6xtYsKEPXws0NkczkMRrVSulKfF6jjXphToSs9pZ5cssBRlP57Q0k5JVnpV-5geZujqCfC68IqJstFFIDC8oyFZGND03F4iMrnyaEx4M47adcLS8firWekLp7YzE_Cws8SF8oYTI-XXETnujAdCq1ovLDJDmqrMzyPl5n48gnTon0gOZq-98-WY7l5i6mPJfXXdSaKDic4Qa-8YkoNzjXfeJP2N9i9dwMfnjRKROVerIMwjFxtISEM0iV1k6k7n-3L0y44YRxEeyh24nxajeyc7A1XdC5kRn2XaKP0Fe0Z3y8TuA_iQis_8V2o-8miDfQ3Ts4T13YzajHw7LktO4N0gk5YkdAeAVExVdR6ZzS5OK_T1ahkj3H13CVKQu_yD466XPMD8WUsZKLExFNnBHwumQaYyLBmjVyZvPAEyh9eM1VLi4NpMzGhd_70bWCuglMzoEN8Lknkf1xV8P5OQxObVlu2Tntqs1aa7AAZwptshqQAFoHNEuffB1iRlVjKzHgviHWivOg1TwGVL76P4Rlxg2zlOHUSUYgVXSCltM6FdazQmFeg\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6865779697e7f8-76519834','','','2025-07-02 18:17:04','2025-07-02 18:17:04','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43554',0,'cd-form-entry','',0),(43555,0,'2025-07-02 18:18:08','2025-07-02 18:18:08','{\"email\":\"jpfalves@yahoo.co.uk\",\"interestedbecause\":\"1\",\"agegroup\":\"1\",\"genderidentify\":\"0\",\"regionlive\":\"12\",\"currentpostcode\":\"2440-234\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/courses/online-cpd-courses/\",\"recaptcha_token\":\"03AFcWeA6YGrruXzo_IzoXe0Q3aSgcO-PpaD23nOv10CN1W_Aue4ZATpMlWrv15lEPjqW0RzOWSEx_oqQEn01AV6yhykeNaipdJBEHJw3UEzWl4hfi1_dP_3ojB0bGmxUHIZEwoTMSg9OeYQTOMS8wMD0PqlOJ4GuODcPAoyLiGLFqIgniQjt5ggGCh9Nh_OddX5ud8ayr8joIHfauPeJ-VIRXp2eZGxCdtJtFKeZLU75czTk46sax8RZnuzlmm6lPXEBrxUx_2nclP0KTKIERd838yij3c7rnHmxhdIxa0jg-czbkihIs_eXZ27w_f4pBVPRw91seEAmnHDC13meCd601qfKruK2wlUfWRwoyEFSc8F3272epqZzG1o51YxgSAt6ZF3ljvnfNU8I6L91CwNZdZI9UEpWmBqghZq--r640n_jsoTaPL2qVyKbKwRLyx70IK552AXzCJs-Gs1bGPxpVhiogoKJhJbmp5gGbnCcp_sxU89ZgRiG9Idfo6TgJkbHhSAcfNF12JgesPTterJVMQGZnfd3mMf-kUPTv0UxDi6tLIJ0agyB-dWAwa-p20occXYMS4aNstTNRL8c1Yon9RKnZp2T_qv9HVNz6cetvxGrZ6uQTIwexnYiqjzv-aySvTa_fP8aNbTzciruze0Ywm3pJ-Cn0gzyM1ItEs0aGLVjllIgSRetxFjgzg2qq8NvsPMtxcD7_pzw2RhYTpvXzdRLyQ9HvU8yXgbjYtVrGo9-VBiQpXEyNQ51GIjVhtehk8b1nZ15R6TVwwKm_8hXGsTKC69642kA_UQzBFT96jB6w11FEOovVm5oEp4ofurUC9rMP8G7Jd6UozhoSniw_eu6zs-w683QMR8JjvUZmTYNarh1rVltkrPUEf1PxkrpU54FTcF-NioKDj7ukQr0vG6eQ87MsvTaMlZonDou58gve8WNYoehJYv5CTPnlK9JZvQFJjFLUrw7y5bSqH25llZ_Kkbf76bjLqW-dv-AMLCDgP9bFyz2Md_HaP0gYRhTacPXhp0UVOACtDXttyLyXDMVH2WsAI3CKQlD7KWvro92rqb1O8XeIWo7RkU364XDJQrnEesxkfDPrzzKlOrzrk5LKg7j0wTny6EuKQdQrjrqWRCrTrv1y2fjkSbjcC_PWOZdWS2Xy2qTX2X_e7f3lij-fuKIk6k4rmtvt-WlKLqpdEo3Kff6wGN8eIQ5vzQQgpJNEoAxHLPMJR3qzzmzo49Fmt8rSmYmZgDvC_Aid0JNfMTFO7UVwSVZ1Pe0AgWJ25ItRbaUYK7te66LYV5TofLF81uc6pmcHtHyAWC3gY8mLksiwxvvnJmXBcZ-rPMHUBJ7cGtXzXdVVehjjrMO_qs2pCEs10LsgZ1rhp77XRUU8kH4e6suuxg8WiEHvgatBa75WuDRlxbuOkOc64pitg7oVhcor7oFNiTuBivZi4IxIZQloOY-TShvNHpmVfJortqdXTc88MpxD6R5oFmRA9AL_CmLDoOL9U7g6t8Wv5b91RKH0UMPVHS8uT8k6BDzKEudRrv6DsYBF-qqXMpy9P420uQVUqNSiUw7Nq9Vnk_i3xiy1h8zVN7oBqk8rxztBSKEp7qUMu0fzGNy4AFC5lOHo9dAWb14_0Fw2gB7Xxp-YHrL7NrXm81ylpOwSECYpZ0Uu76NZSBoA7tgRR5lI2WG1XT6yFz7OmWgYuD5vbAvYC-OlaDy_y_sTZvhhi_HCvAo5YAcZyaEDLySB5_Oe8GhGNz3ao-Ecuf7iQ8LUcAfj_rBk8zv2F0TCxDMad0I1jdeXJ-NCB5g5rgyC5ghkcmKWUJoWHf9UGqM2aRSvrtr4s88_4Sb1dGDrsxQuYDq3No6srZOVPCUmrkIr9BpqlUgcGKTmxa5olNtEmyw5L7QGwYbOmvyJilS3R-nZzqW-FqOUSwmf1_psvMCDOtj3tNAqriutcAXvNPb3skOcOG1TbIbCtCYQi3ATC4lTbUNMrWiSCfKi2diGXSoEmc4jC2IGeBO3ypEhFc71hnY7_lEkRh4Eb_g6WUHu9aJgwqpoEv4b_dHfZHZvSTGEV2gTLmSgvCwu8A\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true,\"livingcircumstances\":\"0\",\"childrenordependants\":\"1\",\"levelofeducation\":\"4\",\"qualification\":\"1\",\"employmentstatus\":\"4\",\"workindustry\":\"4\"}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','publish','closed','closed','','cd-form-entry-686577b79f4ba3-10142283','','','2025-07-02 18:18:08','2025-07-02 18:18:08','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43555',0,'cd-form-entry','',0),(43556,0,'2025-07-02 20:36:01','2025-07-02 20:36:01','{\"firstname\":\"Papia\",\"lastname\":\"Thomas\",\"email\":\"papia_sarkar@hotmail.com\",\"contactnumber\":\"07989322635\",\"pageid\":\"39214\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6s4nO-IPtOtq7qrF5-laQSQr&amp;gclid=CjwKCAjwsZPDBhBWEiwADuO6y44l18kZeQDm0BR-saoG_ErYXAy8oWLZTP4Wuu6edYzKIT0KHBBAgRoCfg4QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA4gAuUaNT6K5rNRbVLCBF8UC2oovp_E5va2F60n3UNxrTd4ugXk_748mhJU0hlRuuEZWzsRVLyUqpI5uMBXjf9Z5Jq72myGBdLGK61Hd5sQyPdbsNrKX6Uzi0AQWJNYyQPu0HMa5LDzQJYFwlRbt9ma7Fqt1WgpyAgJTgnrSAz1RIrjFHUJsk9bE_O13NSo7N4ECnAVdk1SVgBOWCVAMLX29kZpi2EXf7JGQqDCwU--PJD1rcWH4m_fgj_z_xUID52ZXnwzOulYBe8vVGdxs_SQ1kCbnh-f7R86Fe-d8N7Yy5TN6e18wcWLJlfkjOFu9ujxRUbmtu5lzyJBy-9t9LF6fue0RHyy0p95iYQvLV-ssWgVH0PXeyjbjYRGWbDM_I3e2yGMwVHUM7SmYAijtekzf9ikwz7JFrXQxuXh3zVXXuClmz0nZX6w3rAILP4cB4LU_qQmjKmO8KDK-BSyd-7MZN4uwI1V7iqvEj0HhXR0aNc2-ltSfOejdHsqSkEdXvv0gk_ldBCaKj_jYCXbH3K7WVFV_1CjZ9oCe9hKYCpeIxVhir_tuCUpuMiPCbrIZAxm8EbSwca_hTVZmjOpTs70bN8UVGe9v1dDkURbtAD8s6Aeg7eUB8a3PhUK7Ru7NefHsjbZLrLOUzCYYVcm_jUst1-EMcVRizVoQxqZe3Qc-f1Q7AacqCI67NpkrSq8jNUJ9eEDEGJzAU9Lh5q0W_fIbdoh2bBvAD5mzRtdlVQatyOHudT_GkFsv-PseufQbIlZ87epZ4mW9Y0NoNaN3DsVn64ERMM5GBnrjIPYlO5xqCr8NcNKHoF-rv5hLWuNVc_ySZzf3u3W46ZKTI3QDu8sqmqZmRRXs-qhms1GAJvoUnOIaX7cPp2jv4EFJ8tHKovGPGtAzZiLaIAZXWbTN97zS8ttPGnsv-ZfypOgFr-tOA_Pbj-d9nHYQ0YlU6M6H8kocjD2JdHP0eLXKDYKdUfMfqiFRrTxnRTDpM_4hmP8xYUBMD7ORQjWI8otyWwlsLgrryOlPLcTwSRYKbypfhBEY4fHowS9Zjx__85OLjZcpbl5CdYP7kXXOebyAQuF0m4EtHKECHY_298zmW7hyfxiPrScT5bpbxm0ZfnCzgpHbtCJQGP0-5RB700-2Hugbzo5oBDoJrkIw2Ht6h8OE6k5JIwANB7ytbLOO1_g_fYRsaDx9Wl5O2y1cUPWKFaHuQUsS2WsRjpXQvZ6_HZRp2fmCxqnVbVwH-V4PmKdARzJ25plmZTg1HFd3YyTWsxCKUCXUIIdJkv05HC4TvpZgiLmtb0FD08j9lpdEG2C40Dxv3J08tdP-15MANkEKoC2auIXm7TkQhLF-HLFcNDFwCcU83bMM-PgGoxJT2OfD8CGd4AQceFMFNhgEkAEoKhf405TQSVkOrOrQcGi8IHhP1HTKeHzLyVjW0KfWoPFVVfxeiXw28w1qZlKqgRYM0wBVuM2GNn7VCxKMkrUn6B1yw-Y2HgCClgim6n11Ak6RpOyp1Drr-H23HCPPjVMLYE8pkPYmhci-OZS2I8v-OKJDXSwryE1k76tD3N_0InX5uYsODG3XDaBb393_vxh7hNsvTAJJLBfPrzerE8zl9Olbv-NI3efVm_iqoRslON1tSR2tEobZtkaQ_DiYmkHNSklFPfB1nMUKg-AuUqvdfu5NGOI278Zq61dOfCJM8w8M-7-7iV4X2_Q7P1EDe07Hcwh1n7XIV4A2EZmjW0Ey_6VEpDlCn2NPxADa3zy55vdSBm9XIO6Mp_Ic7Oe51hTCNsAUJ2heRbfkCkMBTp-smRB2Zp16MJmPCne-0NFD1VMK-OlgTvvq78WRgS2-uVPcQBG2gjCme1YpDYKLmj8s1XhrEu01MxKUCB6P_I41O1OTgnjEUbSjeBEl_zgNIs-dcdF2ObygvbgnY96XFg1X1rhdaZ2-TIZGghjz2yDD-MaSxEWdw0ETCFcxaB034C6aA53DWdVulJPlHjF5QZlqHHWsxI_ZmvY03UvKQSe8Zq8hZDRaiHQuo4V0crpBY1fo6zRTktq7A1WX0l3StX73oO43lQowIRIzd-YZtd7Mg9cZ-oz0glnLuLwO9Et8WG77alnY6pocyqDNz1A6QNz-oXHddJkzB3Txri71ImPIUgdhJyccovsAPBYGGq_Efh5v8mzM0XsKO8W\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68659819568549-31294422','','','2025-07-02 20:36:01','2025-07-02 20:36:01','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43556',0,'cd-form-entry','',0),(43557,0,'2025-07-02 20:36:34','0000-00-00 00:00:00','{\"email\":\"papia_sarkar@hotmail.com\",\"interestedbecause\":\"4\",\"agegroup\":\"4\",\"genderidentify\":\"1\",\"regionlive\":\"7\",\"currentpostcode\":\"LU7 3JN\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6s4nO-IPtOtq7qrF5-laQSQr&amp;gclid=CjwKCAjwsZPDBhBWEiwADuO6y44l18kZeQDm0BR-saoG_ErYXAy8oWLZTP4Wuu6edYzKIT0KHBBAgRoCfg4QAvD_BwE\",\"recaptcha_token\":\"03AFcWeA73q-uwy4-Ab4rjzZf3pO-ZzmqqC0FpxklNHDRGXtlWpb3y4vAxnBi2lqiYBUzNHWyvRgyQ5y8Hh-bCsOsK1QnZwgJwYP5h6vmT0YPaUKLt1lCHdelKmK_LVMA-3cCtj9L1ocWgJwxTSrjZdYYxAPnzQok1NTJxX0cLqy9Ourtaf2tRMTZbkEQJw-jzWG9BIntFlt9kSwbaRuZUGwp2u2J9MFoLicfqQ9anARRZMG9gVZIzNXdRsHjEfwv407dqYjB9ibxOQJtEhrI-13DqJ4LMIX-ankzF84l3orQcaJIe-ZpU7ZnSiJ-D3UP-RjKu3C86xV0IY4osAgF9VqM91gl1XcaYrUOnZ-Tnj3mmc7ccHEed_btfuEwrDeyBw80hjaHWd97b1rX9TJQJKLIiK9bkmtzFweabWrQsX_lkUTUFhoq4kwdXS9seTHCVvHcRxVQ2HaGYKQDV6spvVkQLql4iJve_apLwysDlyGR2ht64_sU_baGM3OnCezL0FMO0q3Tq-6_FmwOaZMD5dOqQ7y31S-N1MKLS3FfyVq8v5LF3VJj8Hm87bYbFEiAIxf2VEsJjKHS0TELkFJJcn-5XtCAK_UD0MGAAxP9LLnd40boF4Dm2RKWJaoV9yzQdPWoGSpZILntNZV2wYVv0J_ZQx1UC6GGl1FTf6FB5xP4X-01hL_9h6xHFUyGudqUI5vhzFNbrL5SDAwDD9-pAghmigHZqCulXyIvbbFSOzNo0tX6ru6RwEn3_iuEOB3gpcM0mCj7fmPXgkG0cpSYQWlCi7J3PNGXtJEqp8fGXPwTtjhFQAUAR4p4RBqhtzTq0L7X0Hr998ShR6ybZ0Q5PyN_0cnwIo4Grrdf2vM6Kyzu2mXpWPEWFbIitPJpraQnuq5Kpy0HJFXzZaxtb4X5HIni4HeRNqSzhin_CiZiHgA8agsOci90N-HXF3FCEbYPn6JDDQckqcitvzwb7WdxRqtx4-_kmTlt6DUVVVc5I_CgLJAcHxGUGPIi_GvvVqcVx2ydcBhVn-7pe7X_JywFPoww0lzuIDBKsFdmm6Oe9CF70M96h1jm0HttD5XA_MtiYSAm4x8RNn2TsGD4Te84YRYnMO8XATDE5BRvFuyf2kK78SF7fRo3yqH4GfEpXD6eOe31SCqXA8NrZqXJepFIqcHfq8D0nY9YZiWRlsdW8n2MehGqO5neTWx3881QAwqQaaPzSFnUSUQWglbJrb7kzfkZ_wvrbFeLB6I915GE9D5AQXIHBSUoaN_PxjveXQv0Pe11pp-mpPvjioYgXw_4-Bo3Smqub0UhcxQ3LkPPCLz9iFGOBVN6o2pbPN8Oku0NisWaGJE-t9RkbPLX5HMSHlV-2ib3MGcOI41lFzUoY6-jEYHVBGtj-avyznv0UzAinBz-VO8uVNUnI7CqVw0FyjD6U636lzNLn9fzFBcoP7kWCpK6OyJqP5M9j2uebXEXyzpeCpqatIBvHche2uE9fNkHvB7YIaQ4EIZollKtYP8E1kkkvxFGkpyb3G7gJfuRfeaNNOGnmXLPYomSRw316iYkpFsP-Q0wnSlRgM0yZfcGQNrc85FYMtGiEtnZdV2FnyxOsuQpEOVBK76qhJJKSuIetu4mtoQBTWWjtfcmW-CXULurBGZOCVDC7Lrp8MeWFJpxUimEOdHmT6hQ2mDZrEgiJiV4WledTX9J9esoNJo1IZjUTyC8LHnZ-2sITA1YQ7zd_Jve0aDHXIvcS-nkSNaUDzbCPwJBnaPVOHIst9nSEIvLoN7cmytiecezH_NBYBGzPxbxYBptpsZuKxTlZA0zTjwAwCjqx8Q8x_xZB3TOziMd0gNNewA7sadYl9bz_iy1EKurnnIyLoRzbfLj_RjnmrRftmlsTKlQNIT9vaJ_wiu7k2EsWXboT6sVUBPTPkT1vgvmLazhcxTpQUatZNDEXxGKrlul4gZcSlgJMYfGqmWZ9XbsUi3SJhHMnVTU6kYpi1-pDuyMif_AoYIMDMxR_llOKnR0jyN-IUrZRq-ijeD6zuajmk4P5MX-FTM7wyqypv99QlQ1f8oXGSclK8JYB5daOMnX4V4bz4NWJAOfdPAsU-Jdv2q4NmuZf3iz5O50s9hCoLEldDgfR8F4yl7UzkQdFUWeWIfbVkWd2r5jL1vKVlIVkTVVr10vIjYPGZZ2DWMoiWw5T\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68659852b0d870-80325178','','','2025-07-02 20:36:34','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43557',0,'cd-form-entry','',0),(43558,0,'2025-07-02 21:30:13','0000-00-00 00:00:00','{\"firstname\":\"Nikolett\",\"lastname\":\"Forgacs\",\"email\":\"nikiaerobic@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=CjwKCAjwsZPDBhBWEiwADuO6y3fhnhSy3tzuo3f4ir9WMWyDIq3lwCvHKxQqTZhGov3CY-7oEbnC4hoCQzoQAvD_BwE\",\"recaptcha_token\":\"03AFcWeA7EJDaemxbe2Iz-wTZUyUzz4zK3tuVZPZ7NKRRBMoCDmwNbDa656QAlA_aVb5ZSL1O4Hbsp1Xn1xgj2txdHIa0T2q4R0vxdOtgDXREqb96DQhOZXziUsjHS2mx1Ryi447vNCJLWB9VdU03ulpR9beH-VMhkL58MfWp5lkGcAAXaWlvvDSxAJ7VNokuXKhVd72MZvM4gpAgQxhEdECY4ei-arXmdTBVGeu3wtEakcwMLHwofZPbjsypSvfjBfleIGCD-fC3Nu-NanTTiK_TzfHf071Bch2DJsJj7bn59GbPLRH-oShQfmxHT1HwqOQAHWdAsFgR8DCenUgKLeUHOLPsXQ41g-u7Rj05lAF4DPkUqaW8cftrmK7k2DY9hiSrRxKTHBqEDkR3Oem9Brqs_72Q4Arh0eE6frhxon3wq0QegF3DpI8M-w1NvoVPyPuU9VK-d6Z2KzZs0BT-tSRETLcvLD_gpHlLeEIoMmvvD4ZRT67jLifcSUdNFq8OSIYz_2Ln0VnMYo0CPQcVT9T9O2oGJHlYnlsUHwv0Qj2CaPsdVHFGkZPelLnixaBrUDM8jIKtTi9InpZ3RBJ3fGkP5i1K7cnH6StOU9YnB6gU_IDNFuEaSOczSvURJ1A1fM_8KqbC1dyHg83hlP_niqM5SenYeByh5fD6_jeIgmerd7_tZxKFRP2cwcLkwDFDgL9J-VmFe9Uqur6rYsrawdpJ1UUmVcdPqX_EpZgtAQXhrzCcPun4G-oj98POFJuMtvmWj0qpB5ScMBL5sqU64wQy5VATWDEqEHtr8VlpCvyICi_7Ayk67NeyTREjooJYp6iVGAgxGqM9cleRMycXzPBCG6VEpsjSjENDPEkQYLfzL6u5Se0HXpI_oB7HkHyRx9wnADXMFcZTCrUAjczf2ujGFdijqV-rRt4flmA8DKZqasbceb_pNXokLfucegBCN6aO0pBhoWaD8UCzcGaj7uELPakGAGkYFpVTlPrfCdm-YWVV1oqen3dQhPlQdE1z7-LY25oHQBF6MJrwYsQirwRUoFB9qxYVnWSMcxEF14CiESH4eCG5GV7jnx7MerbYj4oVzn4NwfTrNFT0nIw8ECUekRfE_SZgphyib7TpDFbWVFIY7sgHOT1qMQZVSKnCZjTz1PAXsST1oVXJqWtAv60iCMCI1RpU4mi2bsGgNG-FBln4wZnP3miVvbUkQBWXpJVDGjW05mssv8Wqa7bMutrhGWzOhY7xEDLNNfNGAPnvWhNPh-fE7LfGYx5M8FzA9yELnrIMoomTe5LHITb4U3LyVptP2Lvb2f8zmU0UGlXG77s7UeOR8BiKJHP1tzflbhS8jwHnUN07hFVPOB1ET-tvlEwgVDPUDEeI5ea15rLCbiF5dTzVtyc9tTlg1rF3u4eYvgUH8NJKOD6gcEZ71g4mOJYLw6m3HX8ypnMcywt5xEdaQVXy0X_pa8kMwFkV40stPJKtecjcY0RZl6JvjtxAj3y-x5vI3GPqcwtxPxzE6gjGoeq3qmJ9XikznqbGnzBwRwHb4Q04O_yKTyjyJNqrf2yOL4s7YUlOR3N1wbCx3ZHJrABiPOnyIVvQ-D2pS6gps_qdbHDpGlBY8h9KZDqaWSW82SygDy3jPpJd2mzfHHytyU-S-cky2VAJfPodV4ymqFkoYDvFk7jpIXjV8zRN0AdOMQvbxuHkQjejdeN97u7qkmrVgPYYUwpwY25L6qd78cx76-VjU9VIjmbokA94sUoMa7zc8Rl_05jybxS3VDLA3mDS0aqCbrav-eOEP8E_ZSlr888LrFbjUwQGCQ9bg0pQas_mw1eZf9L8UEmey0M2CJNrcSutWRcSZotDbNqwn7sJfRPfee6sWL6NIc-T4TJuRl83z_KwJSpmDq6MI4JSgviqYKCmSCUDnyWOY91xqr72E2TsRtItph9Dk_nO_YQexi4dtwZKDVoDwsQUuTaPwDnorOWQ36wH7Z_KSnRUbroOSeta6yu_QhCiL2KsHIcGhnk0X-Gi_7yTaRhBdMQXBU36-fEFGZl-zif0rxT-0y9sNQstc\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6865a4e55bc345-67481772','','','2025-07-02 21:30:13','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43558',0,'cd-form-entry','',0),(43559,0,'2025-07-03 00:35:39','2025-07-03 00:35:39','{\"firstname\":\"Tyriq\",\"lastname\":\"Lewis-Kentake\",\"email\":\"lewiskentaketyriq@gmail.com\",\"contactnumber\":\"07425935616\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6srjgaDEC1j7ln1RTixeXrYj\",\"recaptcha_token\":\"03AFcWeA58RechnZlEzaR7dWTlE1hn0iZyRislv19FHPrUlf4JLF7CYDXYEGek-kzDyC0hR2K09Ch9oeT-pHg-UB5xCBQgqejz5Er1mJ6K95_jowzBrDzry_iOZIEDIlTU2CpcbyKBMRO02JGYLGAd5iQHgZKfcBch8YTvMWAzqPE_J5-2DTGWXGJQ6wUX8NPdKs0vqdtxAjl-0h98t6Y5WiRdAmrda-tJVTNKPGgRVfI8oqK8jEd4uAnkyiOsiQ_mf7-9hXyeWhxfD6xK3BxQFfhhdN5zWYE3Ru6WoC2SgoeXHtUm0lvL_55p7Z8K--1Z0nlaPUHYxxkFtE67VKnEI5auc2T_OCb7lkry-1IYuqZx50YWJ_8mQLqHQmW4BOee_7zyJbMmmP95oZDJLdreh8RlRc5C7Pb5H1vNew32AsSrm1DryW7rQRD7hnZUcWFB0mbVNps6rZyzcPwelLv79bGSisH0NcXEfM6xk3icvC7pu5DvNfUKtI1GImI4UYY_jYeK4OQ21wKDxHxfkcfTrKasbK0ycO1lK4VFrNDXA3ZRP2eXqbtxJlWxzOOdGyN3qQbnK59f7WanlPRKYkWW8Ju1gxSWoZFQ90BOU-az9KuueYZ4yHDoMM0mJrUVc1tjvmkYlWIB9FaoiufwMI9aoslJz0D735d-oq1dXQXndeVmnczUv2JFz8D0UXWT7qgw8ipr0PL6qXSnRMMN21Y8OcF5NkQuK3j5lji0X3BuCg4pwFnQe_nM-vbqivOJAjWtAbjsUzULekEfOn1SvM0x-frjczdg7gPESu-XkfuROQ99woKJlAeWgAM7v9f0N6wwsSDW4yUDzEG3hMRzOQQTBBRyq4SOTaIkp8nhhHxUZBeDfDT0dz1CiXRbY3Symamb18rNTWNnjJfQPQB-ZmXRm7-xX8JANpjQ3La229LuGypLNMPcWnfSR1x2ap27KbhWE_w7zMw46fu_yWglERBUEsaUdYYk6keLfK67kCc7VipfRKAuiyEC-VhRnCaL2yZAmEUf7aW8-kMZmpe9vBOjzsw_qzePlwXaNygpn12boMRCDoc8OwQzHb3a6bpo-9m44arXoeN8VAf88bAi1AMalGwVHQN-lg8YWGnGyUfzpIsq3EVqPuk1PH69AIpr5hTTR769yXC6b-dV12uWDYBbfiIfBNdqeZKh-cqDQBlqO_NJLU0ztuc5mln2OckJslHDsEzx5LMqy2MGFa5xg3mHp7iuHdYZ461coxT0JO4YxqnX3zEwy6Gsp70GSmQp2Jiq1DLUl-3au_3cvgL0oXoZ0RC3q7cjdNmcI2VzD38JODOKrWY1Fw7YXVAT_vB9HOxpyc0tsIlrQNg1LUfsw3S5aVMxa6q3CK0qowdxgwwwIPmFaYTXjrmR1eGVV6KfSO-qmN7hx9tnReFk_6CRYaNWr7i47dKmKe8Fds3PqhNRsanFZzpF8lq0BOygfUqs8mLi9tw07ngdZGvk-s2xYXsbWxlVNeNGraPwGmbHr64svQBQNqCLWH-e5K-rdIEBOP1G-PvLpGf5wEepSwaXA76UdCUukx9FzZjt3PU2mxwriYvi_HW_L1lDBJi5fsNqbVZTwovYwLgKCGipzcRKqVru0SDN0-QTK8CmSKrxtjZK2dUfL7_VubmoUdlhBuTIHqXHXSuGs--iZaRcRK6RBM8Nx90tIJw3L7L0VwFhDr02tZFWqFAvriq3DBFwrqnn23bCQKExG64q3rUr9wYJpIuDpIvUjS0tQJC8d-StmLRhBVVDENydRyQkpOsFbIBsoR42h_AXvVcuteAUqdf1xNXRommu08xdTt2t95ZXy6F6VxU9OLlFI04lBdQWQEQWGNUDUUVECKJ5v2MF2ZpAG0LR7T8u3ohzTnIasLEjthB5qHOEHCa29GuThDjqWORwD0i5BjwsKKo-JlEwYdDFVIrgzlzPYBtQ6Om971PWze27s_yXFtZG5e3bskaRhH7Eqy9D8OnQrVOqenm1e__Z4LDjVBbkvZkTtRCGT-g8fuJrmuD4kWAOUt_VE7Yw4iTjT9wLaJjTEBWXMuc3MRo0BDJpR7K0o_nCiOFZtyWd0oDHSSETgjA5TbrIlf7YqvB4W4YCtctVDQm8-OL8qAUfO3Tr2k7IhdppRDvdOu_3Q9BTdRPfPB54Ib6Tiok\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6865d0519f8800-75511278','','','2025-07-03 00:35:39','2025-07-03 00:35:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43559',0,'cd-form-entry','',0),(43560,0,'2025-07-03 00:39:56','2025-07-03 00:39:56','{\"firstname\":\"Tyriq\",\"lastname\":\"Lewis kentake\",\"email\":\"lewiskentaketyriq@gmail.com\",\"contactnumber\":\"07425935616\",\"pageid\":\"41115\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6srjgaDEC1j7ln1RTixeXrYj\",\"recaptcha_token\":\"03AFcWeA5srpisrPFeLQGoeQUQiW1LYF9YvB7Au9UZbe4Vqz-dP3uPkyHhcDfNh3WS315D3v8C-YFnQXLmR58Po5Y5Se9iftHXG4ugQuEzT6jxbI3Y_I0Q6pP3xkcIQOXl2Hk7E94lE9hOenzfGTIHlgdJVczZ0-1eVyc9CiZElnQ2BrJiaURYq3wAH_CWYfMhELtGl8wvZjeoEGDupm6knzEE6rpfUm7CFTlakgy00xwY5Di6B3PwIaQ7UmNxsZGM5IysaerkRG95FlMobFopQ7TitPt5NcFBfp8jjZR3yFwR2cwXoC9TByc2cjLpCSPOPdtxIzu4VMjkHl9YX5YehDQIibaJk3-wKKEYLvFpa9cpMiYik5bihapVjGHULg7AEhPhwjZZPB-mbuScFK_4UrOk5wj1lDaYbfUuz0ZXRwx7AEHslAviEbB-qy4eMOanNVyL3pgxDqajuNw3jJPHWReuK2dRg3Q7Q-hStsQzvMRh30FXOzrS4NyGNeCUbMGCDdlq1WZYktMzc-8f2qwdEgwD8elK8tKeblGq_U7feeSZUEFh5wABogSg83nyqSRYN2Y3_U7HSlafReGhPUXgToSx-5qvxHFtW4zfVFxjFdl_0_FMV60PsceYEJZTZ_ayw2SxC7zsRxu0IGwCop94Gcbu5UGpUr04WFTuhI5URLS4Y_9wnqFn4bcPT3uvQV_j8KVMC-USsGERFqX3JFabfHHWVivw64Wz-73s61BLq2MezCaxka5bFd7C5qWVHMcM4h5DsiIbvHRXK_9dq7rjERdYQEXqmPJaM_k14VoMtwCiRUEUBtjLKsSr8S3ecV7MFDoyLfZTknfZvbxZ2lkGa06xLIXss4s7JRvd6clkT_WR_L2obPoyVc8ZN5JNBnWz-I-5woE2NEJFSdqahqLnY8MEfP_cIj3xVHMtKuxjPv1cDGSP9hRYVP7B4ygYz0kW03ruRtwe9t3vvwyxMkHby0V_7Qh-OVPLYDNz7O5tO_zEU4kP3NpYLflBjX8yTWaowJwOelrjOjHxMS7d5KO_rWlNU_vfN6AbUSEkTI4I0G7hjLWf-ega9VdrO9wbqVu5SYrm2bAaDv9t7dDv_VVv2OfFhk07IlWo2oMBf14qy8s71_gbUfjP7YtYVBsZTbvNA72LIbz1djOQKJ64YaPDhQOvN4xlhQESn6Ul-7JpSUccqAN7woCjsNIKiCoFELNlPOfIwH5KTRJRKajiZCnaIRQlLqL1n3UGRHeQsaMa20kEe92TN6yeGF17-XUrfm8hjgwm3sAGdbB-O8t4tB1bpBmiKAgZ3wunsylQfy5x2B6dTFIm8RflcgK7Cx7KVCnjyAEJSWw1LuBAxvr_5Gk61DRQE7-E3XSrDjt1U5Pd8r9pZojWSTFTiItr75hRy1ixB_k9EqXDbFIa09QhVFYUXjR0wcQDVskwpJWlXiIeB6R6CGaRsCZClqUGTiNXzWTBXEu5Kk-mPTZMLrWBLptD34vnih07DPwJomRJwRMPRkPyENrqyh6_FX7tE7zB1AxeFFFWXGRmPPw8y1cWkv5LsUwUePKFB6x1RWmtGuKv5YVk09HyTIKdgD3_4YMp1Olia5Cp_akxixGQ13NeCqjqcdPQxLLjlii9HQNksKwsRgBu5nCyV0kt05JnCa1hGvyaCGrgo6sgaXaE1Sq9j_IBSWnp7u3DEwA8MEu6Xuvhao58ikH6S8ifJ6NrBgPQCRchNmrq_MxaM756qfH5oMrCkYKmaDdxLiJ3cJnMBzUXwzcm4QtyIPZtVuHqTz4e14TA0Mnr4w-f3G2M-uBJXYPZ_2HWyZJ1_5Bt-GBSTsE7veO0YRIj1bhh_pqF8o_wfO8USjOq2i-zKw36_PHt5ofpiaAufMcWTFt7uouX2zUUC22NM1e91x7XeChtfe2XKs2CZ0awYPbnQsFodAqYoOh4I-TWW7aqnyge_PbdNF-23F5jRvEUo83BgGAc9An1zCbVfI_zrl7IlUse9d_-dR8PuPUAqwnqFuWOXWS-igHPKAtiqUMwYoVheQv7c0NKctyxr5NkEYM-V7P3nuobLoe3iXZaxSuVyv1jo6LuU6TM3CfFcBBJ-vRGY6j7m05odbFq7m0q_fjiscEQE1W7UzJbbSCfQ3yJ178vkkt8yuAf5XK5cI-qElQG6HsDdMA96m-MthAyZB9QkqVe\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6865d152f3b329-85610196','','','2025-07-03 00:39:56','2025-07-03 00:39:56','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43560',0,'cd-form-entry','',0),(43561,0,'2025-07-03 01:44:35','0000-00-00 00:00:00','{\"firstname\":\"Julio\",\"lastname\":\"Reveco\",\"email\":\"julio.reveco@gmail.com\",\"contactnumber\":\"\",\"pageid\":\"39231\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/\",\"recaptcha_token\":\"03AFcWeA6Gs7aa4AbNLWudvMMjh2V59f7edCyAX7TJkzN6oYIINTq_IPf8ccS8N6q5Lh0EPukQNkz-EghOdEZ6m-5w3do7mOGPmcQBGObuV3adbHeVHyo6xkGH2hWvxyt1qdlXJV7cqip5SW_sSkQZ6Rn80XljVssJAqeh9vT2jk-J0cFwAaM2C87Mm83GknqTdbDSNjE82WHyyfw0HoAo7GNg3anW8lEWtbdY8gFDXwlEHrRwzeO8qujqrVV_BY9JYfRY2SY3OfVhiSXtYKivkUfJsYE7RJMisRKiJlS4EyQGhr4h79jtv1DNTdDtGohH0RK91kWxqFys3rwqrxgsIAatj_z0Aj-Eq3oGWvQjtA0ccOIzK_5jUAhCTBlfEjx1qTA5O8mmKhPWzFG7qF7GS6xqK2r3p2DzlxTnWGpLlL_qO9gm0XzW8SKCewaaheMFCiEmX_MWWGYR-YRNVLd9ouMacmWnhW_pG_EvbMkepPxheAl07rlI6_E1e0T9wpNRCPdAykF-Ndm96F2DAGbCOdaIFhELlzLN75EJ4pvhhpadYre7DvUrXlivRD8cQwVYgtm30lOjKiQgU-sxO2TYR6_H6LYgRwkW3fRRG2FwvLONgf8RjtcIjUzyTztiZeSuNgSPEAzD5wKd52wQUDJNmViVPsH3qGK3g1Nz8DUGsPxGOh8NQT4TYuK_B1Eg51Vffvjg8-KyYTFBTZ8zBfd6eT3r-vXp86S2qATLzKHzFJHfD6MvFJqGP6yka5gaK5n2Dqay8qoEoAKMb1DTHEwI8ArxbUB18QEjeIzyyx-s9Tcq7h7ijQIjnvuC1lV5E7HqJ4lru7I3Ap0LfwrAHE-Xu52ddic8rAXh6ylDKrSbV4C_uSuazG0y13MM7YY4pYf0Vb3TBd34VbIwGA4GcgmrGCj4U2GYeOXjd-Hwnw5vtMr5n92CcrFhQOjUBUoXxQwunIkk9Q6kB1pCTnedFfno0b8kZbFCyA02nQLJZIpp2dVkvduZcuLYdtjB0071zWuSp6U0fp8ZhOS9n7b893dCVzb3EbXHkGl7xufvbIfR-kiIEwsSq3vDcHvaOvfhBW60PUoLQx-EIRgADUcjPuLeSDWOGvqVtn9_qBLfAygHTQ30O1bXBGYYzl9tBZ_6WNzjV5gC-4yLRcj_SjCWr_umS2kpyjnXgVK_YkfcR7Pn4JiOI3yCT9sT-gVztBqypn4xMbT61KeB6xAAJEdzWBZzG-H4tXimiwETFE0asvxrz-sB53_ybqXjKHRlUsJdNDH-R8GgwVrpdvdPtakzk1M2qmmklN-6MFfVkzB2fLWz07F4As0vNu5WVecERBPWFc---vLp-3YdNOQQWwUSGbbYUuLRGIlcUVPQ5W7UGvDtU2kx6ZmaeFZsIP-tIt0C9lzo8B2WpEvY_JUXJ2MJDKlm-9z7z8xTeVNOKU2PEUWpH6_oBlgozPbXf7YIDz1aHmIpMABcac-C_580UZAZaGAhFJGwbNHzpHSKtqWau1R9anHKOSlSw-LQsZkRs19_G7dPV7apwCp1UbPN9z_3XfNcnguhLhzdTrJ0kihgZhLs_IWKGKJsDjvVoCyLWI-1L3Ng4TCKSIjMBjOgPkpVBEjDCt1YPtP5M3U4dMrUlZOYCDdyNbPsev5LPqJmmxYQ-rj6DEghAUceubyGqCMpMLAcPKpLbJB9BTcfkmjVR8TLKeGaZBKQGAyi24e0JMrsHYz3cw7e4CYOVTCapgNkG6Xn_flsNLK9O6YFaItgnN-S6u3U4vjmqOON9P4SWntoT5SVXAJMlRIDAyG3Zbr5DmVKK9bB8pZyNCT5vaUUJ1P7_wPoZmz-8CeO4_ex4wlkb9UNBCuyuaoUg2iXP8-tKt98_wJHDgvOaN0UxqADgwx_tgL4O_FF9EUPFReQG35ouRVMllUmxUGrzGtI7L7e6HqmgGHfoSvXl8x5eTRflu04mXr71TEfjKZvFnB8p1bv0orz8JT5XC6ENWjIUpPwKjL07u6NxnLOwPlMM1X3VMhCAld0Am62nGYIUwDQHBV1k-gOhx3_xT4kun8EJeUZ7gF08BaovgCt6gFZEETCNKCC0wyDj9CQ-zFUPob5Ov0bbZtWIg-B0dRXGpWeiX-VPFRDcDahWQ76ZHekOsZza0sk9TXdvjb0ikS3rNk\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6865e077705600-02558525','','','2025-07-03 01:44:35','2025-07-03 01:44:35','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43561',0,'cd-form-entry','',0),(43562,0,'2025-07-03 02:31:17','2025-07-03 02:31:17','{\"firstname\":\"ilsa aiman\",\"lastname\":\"bhatti\",\"email\":\"ilsaaiman9@gmail.com\",\"contactnumber\":\"07512478944\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=3&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6t2R6AsKilG0TfWokAsUVvai\",\"recaptcha_token\":\"03AFcWeA6_Y7vOy1XmDAuPJu6hMiMi06NB3qnid3E195WWin8lo6AqB6Gx8zxjmdXzlAX4Ly_Q6R5L5JCK87w7fWVTPXsjYaXGdWfq3RzAa12Wkm6KZBwRqv5N0o9kMTs3O8Q9adRuPDmXMm2W3MGybVxJCCr7seKrFEQCMrm8bYAJ9BGhtQ3CAAT7dNY06-MuGSlEI1WS8JkdpFWjF65BujSIzg1njIfAsZP34wm4mN6g4bqz1A5QP637Sti_b482pABNT8QHpgENKAbUdmApY1m6tgLwH4fF8hOafwS7zZW4sQ_k4_OstP6akxKfsj7H8FqmVAi9uk0NBHufFtmzcvjP8kfPade_XMKleDjiPXGrYFbdRCfede5MlO-GfBCP0itzjOkrU57mpLdrFPX7rUUwHGwK3Rl0jU1bj2lITH9X0umgSxwEdn7nDRAvDUgTKQVBfEnMz5upvjhvF4fP54nYPa9oUUwC3GVokfJtyGpbEatLR30TXJs0u5Y7DNfKCMDBYnUC2ipuBYtvw28OKh1pxsqG4XXY20uje7B75zH_0IChOM30Cry54phdIoDUkzmf2194LvkAUDbf7LsyF8fbYZcnC9nUzX4unxnC1t-J7gWfGQfBI21UfPsipy3niGH-XpCXRE1hE8OqQ3fgCTaLemf4ScgVQlfcLp-sNB1vx99Fjg6rFKhmVusJQmhPMbWk1eXVHBAtdP4ceKs0GytYXRIC_MoW96EnhCysmUaHYGmUySdPM8e4FNY9H6S0hNNylwaGeNZx3vveTXvU8PnUHndhO2e7zjfXFCP6MvGIME4cOJJxxNjM3qS0nn9pXNVy_U3Jg250tvIYScrlxHt645atVh0Gr-Tz8Lc1ygKHNjdO4m4mZx9VsXhxrkLfekXGshuYjrk7MBd3oF4YbN81nBRENDcdceiltIlJqG1iLq-ItYN1VY7uZ_Qrg6EuU6sBuLxkuitfgmzHJ0A50eJh-cS3omL_3xh8GrNV8MwieJOJOWv9xWvQMKeFFhZvpAqbeF5g5hr6IsXDqoB2UflM1wl44TvPtoVaxgVWzWAOdCfkFkV3mvIBqj0O1BXXXLV179l8VFT0mDOlRHbaz1HcMprsTfKADCLE5PhOvhdDVzD6miRzLJc3a6gGdM51yEfLIwX8O3WISNKgzSCrHLQ4gRWMc5LqxWbbfvRbz7qL7DfSN9V0nYVA_VeBEOuIIqvgDwkQ7naea1ZiwbcnS8FQ8UrTWZBR5UkGCFPDIW1RY9JuxMGuZMHxp9tECK7jGsqvytq-LhkRXafsRNT8nMwBAEZKGjfOYdjL3YOKnPAI9xi7-Z3nccO8hWIMsMQnr_MrXv7KMnKR0wasrSkV2S83xK2Wx17ytI9cTsIRb0VzCg_8cYg8gAfGUe_2eaBEh96hvGwqqefzoUzEBEIelElofpmyc3uwpYtS19ePBt8v2N9p3UYzZB4s1c6Twy0zlEfwp8lBbqZGWydhdlYFztefKA7u4qFQdb6DiHWvxTkBO3VY9JjsQce0TOpUie4BocVVZOmfGE-fnIlbuOTBgUqdmPaXzt9pjmnpCzrAPwdLocov04GWYdTtZSxm0i6YVB6y_qiIBPGZ4QnySN0m5Sugz1bWj4kaaQpjJPkJ9Ba0s6NEZwDbAAk1xUemsv-cx7GUyMs0aqYIbpGTddcWfwtkmM5T_yvF4Hua97EcPkzxgLQEpkuUpgoWimh3C4EkENQPSAQhwOuQhCSLKs26ruNVToUVcfET5aytkIjWhwhl5sIuGsdt_iZZd_ocfMHGUdUULlrmP3AuM0kBOUDcHJRpCAapNFCQ2i2zr-AX9toxL1qSSFqpHHymILe3QZEIis6Wl07C7xI1MBM6VpjkGIb6QH67VuVbBht3Q6uVj-tRtM2RNnot0DTBY5bEgiAStF2vf4OdZA0Q62_7XC1UwVnpkQ7WmZ-Nw8Kc809rG_fdya8yed4hGsysjVc2BTH1-ii2bVx1CyGvueukeRNMm0cHOKmyTUk1ZLmuXg0uhD6pzBX8WJVDyIhdm24YITXPNyJdoJCvf7xJV1FMacwgypWb-aDcSLXt6FBiv2-krC5huJy36EZAxEKYgnW5ZySp8-tfC-gu86iQzZh1BIn8dRnD1ooTcAPkhHZ4s0MnhjzgzmaScajAsaKV2up6P8wGRyXrSNM3xPS9DvmcSRVfAZTVz0mYTmjtp-BlTa4EvvE2rDjIbMXqJIjScvPWVGoPhlhiOmNNdEdmkPG3qw-frymfAoz5EIFLvN1NhnuFVQPV_SHRN2Hd0ycyXY6ZfYOp71OGLeZpIboJonDllh_vkxSZ-_z2TkckJwqCWle4hZ0IIznjfB6qij-j9srCne-cMF6dEg3VWnnlyVZUCqajKwvzwXcdSB3N1nflwJLCljLNvMD5-mSkkao\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6865eb5c96ea46-96087983','','','2025-07-03 02:31:17','2025-07-03 02:31:17','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43562',0,'cd-form-entry','',0),(43563,0,'2025-07-03 03:48:34','2025-07-03 03:48:34','{\"firstname\":\"Cheyenne\",\"lastname\":\"Goh\",\"email\":\"cheyenne.gohxe@gmail.com\",\"contactnumber\":\"90935851\",\"pageid\":\"39270\",\"sourcetracking\":\"\",\"entrypage\":\"https://biomechanicseducation.com/how-to-choose-the-right-biomechanics-course-for-your-career-goals/\",\"recaptcha_token\":\"03AFcWeA6WWmvoF-xmgF3f0I-UiwEs5xtPwFvHplu-7D6Csl0VBvz_OWm3L9rX9Jnr3tL16Ym8AaVvZnx5SW36PU-hRkdmE3VidSdf4sximf1PYQ5moBEiYrhxvebJtJArw4qEnZNBl6XDLa9Ro2dtHZ9k8K_Qkui6JOVC_svKq_GC5ocbJks1W3v4itLL44_wshlFmo26ieYhF5hsKck5pVUsf-TBU_K_bd3oZRW-tXY6qlC-RKlCrfck8fPuw8ilacL3glGvPG9RaINw4sWwo5lNBGAH_9mt4ScyvSB1GH3ooh_OSG-PaTHH31ydSIHPopWwntCxAgKZhetY61R9iNqPHT2Rk62DaWbgXVhssX71RXZgWA9Lo0ySLvI3KtrpTog-JO4AcATMudmZctiOsENsYIKl1ciwa0hj5OV2awkLM_x-PHLjyQCM8bbb7EAWIFwHero8YmDlUmooLRGmdsmK5C1Df-XzDkdMiooRYr4QebCl42BBk3WWM6vZjY4n1yoiYFihyQO38u5mnp61Q1OYVEelPUxGzgFGCCUmO68Bbp3CO-cmlC4wSaj7KqXXgEZMXnGp1DMb-pwibytxSGGqtw9pCi2tA3SkySadqaKk7HPj2mCVPgAzJ9Ge_WKCmvmPwafdzkre3BOS8lsojNvstClq6pVsXzBiaEIv93Ukr6zsyhqT0p_PBDF8Glv04jbqP7OZZVdb7_OM_PBy6RUhE8s1VsEWJSjDjo5GO7O6ntdtL1bjeJ7a84K1AMC2ZKBwxud76mBnW-KmUkbv5h3Wy3jqUao9pAuCiVrpk_sQkit1kD15BxBBM_07iQTcP4TsUGX0GewEFzM_13G6gYpZaKpq57jc7zRc7-u8xexfoN3Z-nGX3RTPiYTdOJQjpSnpvrI3xZ9BzDTIHRaslLyYgzIWpWq7b4-27cv1ueLwMvZM4zksgmJFMpr09euu9hcaZvuAB9CZjoExDKQC3XyA_FUpZtBV0ZvcU-lpfXB3L7SfHyRDAxH8JAYB8PBTHvdhqP7hYXajGgws1RiYSI52oOVX-BRUojEvW0jJR3bbcxRWI-ltxIdKV01hzcKv8m16MrgF0iTzapgC5QTNcNSRwo6cut1BXQ7LoEfCILKIrzHOP4epOdES4ZfUiW3n-2wjQxiXdOzADtrdhZghTmdXcID9cYxw2M8eOPlos68UZ-hPd3CN75ZsvMvHfqxwc3-Q9ufFR0u_2UGRxUNRcmru3l3d7BArRfSrd_JwSGCSQ1kdB89RBSNczDNm_HvI45_y0L2oGJXm9CkH0IDj7Ub1Lw17OlG1zkpUzsGr_oACbS4on_HItRfzmZ26ZxE5w8Gf-yT4aIWyHw4tYZXf8BCV2pCqpFrwdY8HkataOVOa3zpFD1zuUsYfv0DGFLPvXLF5UGDcMtF3GG0Fz7ha5PuZ8alF_VV3gLf5rmfS1WQOMuUL-xMS3dTsM765EpErZ96XgqzPZnqa34vxo-h0BRqC6fadjipN5-zbeT68vf7CmwgfgwauFwLlpV1PWv561U_vXFnBLtrJUaU4afAQ8L8FgB_IEyzyKPWDxVEvppkV1DbByECo5zPRAbQRUr3DedLxsIV0XRDb91ay3j9SX5u0tQghwy3T3w6ZTgvqsuT6SMCd43-2uVzzXxnLd_l7Zmid8Ii60ql1E5Jlj6V4P4T6wjEOBavZApffzqBl85s62t9I-yB06sq2GmoeDjDJCfpP81yl0AKdn-Ex7ML1Hq12ytumoNL9Wsc4RFOIP_k3aOfgmk_9IDNBZBqIsN4bA34OcnmhbAhuKhHRVHtGnU_SlVzBs-VR60isrICyyfDdO4XH20OYwNK1k6WSetZ4nokdbjjqSQRcFUd9FCempKBcFBKPDxgq3N1I6m-5apvFQDt0QWrYxsJ_gsVDAoV-PmS2B09Vp-ZT-tPsLu1SdaErsQWU8ETOesnuzQQjNNojjaC-6SNgnl-_IjMr6fMtigQ0GGj63xBAL46880Qg51m035j5X01XkB67xaVl9NBYAoo3IpaJX0DIYoJox04Yl6CVAFjjIQakYIJKe7PB_VjDaegj5nCqSw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6865fd5ad9a8d0-29948558','','','2025-07-03 03:48:34','2025-07-03 03:48:34','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43563',0,'cd-form-entry','',0),(43564,0,'2025-07-03 12:25:39','2025-07-03 12:25:39','{\"firstname\":\"Jack\",\"lastname\":\"doyle\",\"email\":\"Jackdoyle4@aol.co.uk\",\"contactnumber\":\"07496146575\",\"pageid\":\"41115\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=1FFTOfferingsUSPs&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjw1JjDBhDjARIsABlM2SvlmiAb9QBW2kiWgiCumKJrRp8FffRrEvxn4zJ0CbjZmqyrnjmfFkoaAkCyEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7Sg_LDiwHgqwZLHBJ0Z-zXjRtSlPlt_LgZTCdyfDR0OT8xmzOtpgEYms-pxQnDiZDsHUJQAW6s8aBDJp6VrJgVgOC4J0D3XSc1PDd7eYZVdBS0yjZKXXLaDhH2x1uNDOCWjK74xTZdp0i5xv4gAHX1I5m1zztnbnqcW-_J3kc03dBJ3Oz1kWqE0CCXmkHAQjwwSKnsToWfUAQl-yd-zNbQzHq3AFQMEHFPxliZNw1FDTOOzLjV4f-LlLYioBkmx2wT1eBxlsnNqhf1yHRv3k4CX-MuLnm8kvnU8YvsOzFSek14IdrY-84HD3S3l_nV-EVQxRjcy8a5TIlQfcZu78Nz553bu9DoApdehDLxkLh_bReFnwGNJgiA4jGsLnepOnY6qOjOKhdM8MwKuTgH8AeGssfgrdUT8gSmb99tMhMxmMgYVMgxZtXMsgAX55o2vY61jnEtj96xuyp_Iwm2xocvezHO60irt6MAd0yKZAojWfUudHMqO02IhAdF1oiOXsWQfBwGcxGky0uedx5QF8AxDh9218T8hYWSzN0M-fg9oXMUR9BzXIn2fEaFJwZ4LyrCcYMM1B3eFN9Dxhg4EVPdv_KwuwpIZG-HyLftTCzYPU1okI-6HZXheQThz69g8fRdp_nscszOnWhDsfzNEenKUil4LIUjVpRtur-KZ9t8e9sZk7o-9w6X2x-2UaPChyKHq3N2_Jc15RKxDjV9gQhmKNufKuzo-mVfH0T2tzVnjo7Ond1frKet5JG9VFWpo1C9V-LCAQVhoKMNWy4-Beve_asfsSEVYzFUMPXxRd_Vbashr6qpF2VdaJ7FHtYtezWOGfTz_JbJK1Wgv2fB81-5KYg9Z9WkpR8unYqi74PSRrnLTGfoDJJtcDRANqysN4OPOTXnW5ccePZ2t2Zrz_IT9DfK6iDxW0y-dJgu7rfpgf33-nh1F5AHboi8tntEQfkHrN006DIjDaXkf9FjueiBhAqV6lsHxmCRT8jDKrwB_XZ6JNJOr4UDMr_-MJKJ0zQmyIRJkoJmQ--CdAIkRj0UTyT-fztV2I_QNSsqUr3zRGsTTCNi_JONgUoEMssCQYlzDiuiOCiQ1kw30OpjS4-67hYBTq4FZJt2rgR3mJdanVRLRRFSSF5LJq8aDiPFBmxM_EO8SpJ2m4Tn_NIqhehWeJK3AC0L6T4D_laYHtXA3d_DZhbBgCWXaQsu73mUo0_pxPR9zsZDdBTPhmJxlPSuhy0y4DovP2TZrtk4AlUIis2olI-oaI3Svaquh9y0UxFRKHsJRoRximIGVNDj8hAj9ua8wJZRzM94Fy56Rx2FNPu6SHnDIyhQPs6cC5fvwlNnrYyV7FIZyhN382iXUuS2TksN5M-S03fLQ3ViqOI5lbZYhtNDxa8jQIHH_--YrpNO3-pBATVf0mPbDxU--Eq3ht3q-C4nvJkYkSeUd4gSkyl0VDZkvkSxylbMoXts-7qrIQf9vPuhQzaPr_UG8KK0bCKfCso2u6MXAewxZhxO8noq7GIZlMt3cKdCuBtVLHpmGs1_9XxRtgKWEmFZl_Nu_ePx2xjxeXiLUs5ktc2sT0zSrq-TEnNoTF9_459PykrOxpCI3QYXxeUwH8noaAp92PK2SRAW8XXESwVYw-1A8fb3NOzHj8WrmKe4bft7wNw0A21uW28Qe1X_Z_lGATlnkBYMPS8vcWepDRjb3PiuSmpOFHMm_O3c4UcdN4_uqGmiP6XS71VJ27FzZJw0GNXSRn-zkbL867XR8Hoc4AMDrOMd59Wmnf-XUB2G1VASdUnpn9iBrAD8SqbHIg7w7T5Kia30y8FNfQZFRMAttufZYgZIdVDqqTLQYJV1lLTbQAlIs9f6L6nH1E9k33HptL4uC4A0FTSZfgd2C548tMWq0MPCV401h30V40h0gkSMfQ-SUnIBHMcyU2TWHPG5hRur9WidImLeIGSt_UkGy-yOLH28qwtI9TujslVepmoVeQzpR3bmfnCg2kkj2JzhawK4OUp3roafeYG8Nv0apvrOWI3saih3s2TiAjBpLu9bxL71mQxlxkbneIpZD4hxx9pLiRRSx6ZgVp-u2dzleUMn8qU_-tPxH9QgTa3Z5vpmUWZ4xj_Hv2gOPJno3JEH7L9DOl4d2tG6QhGBI6UB4L0QkHexFE2oPubOUi9IwjJJXHB8alx9igW7NHooySPgIReh5bDo5HgJvXVnLDQUglb_ZsBICd4xiiEBBvns6g54eAHL61e3fgg7lNGk9elR0Q1PHzIrj8y5tbQJwUvFpdNVTOI3AopsPYpXGozuwE0FpqjRUf_S_qvuOtexUcDLfWdZdhhXxw\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-686676a66d9fd8-65753819','','','2025-07-03 12:25:39','2025-07-03 12:25:39','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43564',0,'cd-form-entry','',0),(43565,0,'2025-07-03 13:01:31','2025-07-03 13:01:31','{\"firstname\":\"Antony\",\"lastname\":\"Jones\",\"email\":\"clothears1@mac.com\",\"contactnumber\":\"07508876885\",\"pageid\":\"39263\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-coach/\",\"recaptcha_token\":\"03AFcWeA5Gz9plLL78Yj4WGjmIYJHvWFW70AOmmVVEqzC8KuCVU8i11AE3xdLYobjwwBJBlh9crwFR5zGg51T74qtFNRobsOHD_Oz8J8VFFySrkri2zm1U0WS8VGyHqbEYGamqKqjwGFpr8_iCWtg0--K07hG15eY6N22Zbaq7mQOW-GJkPXjO9vUQma1emsBPZkoxp8x-1R1i_qBFHtGvpATETAIsfj8YeLX07P0HnM16XjWpiUliNvYKB7z1zVF1znmQESq_Z5zk9KwipIKX0591IO6q7_OZ8nTS_wMOgOQWEifkBgVpMAld0QO30VYmpDuX4CVuX4n7UFU7EGS2ysBZHyrycsGvfrA-qv-Zh4oqM_RnQB7AP6Sl1WYkfymcrikbdAG3rAO73NvFMIRUutJmiBTmzkFn6N5ees6eFlnvqPbs7fNIb84qGrxMzOyTzFTxvsmsHKMv0uRFO7Qq_l0BopttghOU-MO0nDFgEZqt3SsBKforrFIw3qmPFfo_AczAIT-S9ux0ApxyD-u6RSdNdc7n67eIZG5VtoOj4fmFbzBXoa4iL7TyLQK3weIeh5SSSeU0P9UDyTKvsYA-wY6qJDkH2mkvtUhf2v8ESOhb6nSoOwX6alPSnyzLyXgt0qFvPfri7fice2pVExKlv8QOjt9LvDl-ZMNNo0zJXWWJAtKM2IMRFNl7Y75R856UhfWCzwnGdtRf5sY-td9ayJGqywpm8M1UAJ_iM5h61rZWR_B1N0rbfmD07ellAhlCsoh9-oA22Bzpq3denV-V84o3yvIPFyrFrCK0Xm5GUvThpnjK-14b8qpZn-nJVNNyJIMXrGBpt1LTGii1ZYGSKROQwQAt1vYfvdyNJ8L3S4NKfxObXF7HEB5MsecLfLWdR3o0NJ40-0kQ3mXNbZSulX6KjcPt49mivW0eh98HAPSBxK4R8I3DAJ_hkyJkD2jWjgscOIgpn6Ri4UNZs_0xkVFZFLbTW2mBDaUsRQGFR56VflU9HTD3vhUwzr2rMcxCDa8_k0Mrj_SYcZV0g3CcEu5ZaRpgyXKz_sLxpwZBFIEoHWLdp5O2HDB_QDXK9I0SYPfDPEK9ZkXZQ3nTQ8fuiQ910DKNdP9_9OVPbq0oW5tk4NKRe_JMEXLScNccoZ9wUlIDwW1KxprPyGTLw-a_KkRJjv7eVI0lxs6hTF04hQ0_NZQxSEc9iOpJK3MuNPWcJNo1Q_RbgJ1JmX_87gmibDVyY4qR33oax8KGs6pQzeTMlETzWiAGPBD0FZ8TJvW4ntULOatyYseU_qWzTUisIvEgfWX595sbdcEnske4dtQZ2UU3oH3WlVxkDMBg7KiOaJF3zxt-GbzwGvdqcS-afU_NOhnN8VZ8pd0liuKxilBxgwZJwT-UPGcYFuSt37pfFcW0ifmyVrx0HCw-s8xgHUvGgplNtJX2kfzwxweHWHPv-qP16D19ap9jtObj5BUpgFcAQ8G4IYf-yKT2Jwao-oDctA63fM5aY90Tn41nh5OlZ9YKa_IboTLhcamV93YCnbKMIGfbnNaFOnLCyMBYD2LGhLp6Vs7MjD04nGQ-uaq9k7Fxq1D1T9xmYjGF0t5W6z2hLzuipRbykwoKkHcAWs9PpfrEdpkKILkUBBEe6PpaseWWTMVyv06tuFXx7W5gzOqPsS5gf6GSGZHsXsvwrBfzi9Q_F1j--aHMfxhIGT1URfM9lb4akivPiVOW92J286DF0khBr8ugrfjHHXI_Cvukk9SOmpigxx_zBB09nsSacbSABUEYEvw1ghV72Bwkvzbp3Gx0uq6iT2tAyqPC1A-rZh-uFtSFFVyOsus0belnPJy1yeinySxiONn7tfD4Ax_XbChRq_yAT_-bAilz0IczWMoNbIczev3xiQjmtCnJ8eRoVsjjI3s-eiD2vnZjRzaRnMdjdGvSUzvt7rbCKTC6Rgo0GbjWAMAm7g6l_4bRR7CtDBp8Z2eMq-BYmLy3tWCDVnz4o1_ItLzkoQ7WlHRXCRqoLhqBf9jugiJ839zsU5HOm3R88QPIhQM5KAud723CBCCMHHIiy9BJkSi5Sl1Xsh223P8W4G4f0OUPdmFnUSF6M3dDUiJcNDSXGA6q9ZefILBpeYZpo0Nb3ib0SN7PgsV928w_qjPFquvsJfFRRUbvM7idAII\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40417\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"6\"}','Biomechanics Education - How to Become - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68667f088083d7-11912160','','','2025-07-03 13:01:31','2025-07-03 13:01:31','',40417,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43565',0,'cd-form-entry','',0),(43566,0,'2025-07-03 14:14:20','0000-00-00 00:00:00','{\"firstname\":\"Benjamin\",\"lastname\":\"Augusto\",\"email\":\"Benjamin_augusto@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6srjgaDEC1j7ln1RTixeXrYj&amp;gclid=Cj0KCQjw1JjDBhDjARIsABlM2StilapxRoEr2O98RSGxtA0fKp6UFt51xSO4wYBprviWLzTp_lgLq2waAs7ZEALw_wcB\",\"recaptcha_token\":\"03AFcWeA7m1ZOW3bTNu8GDe-HEJnidLWwZgRQyfiM17oEjp0DXYvYRCU8Tdienu-Pzg3LF8ukeRS0Jp2jQR-eHPsdHsanDWza8JXhj4bBICafhuWUkUlXOLt1G-rgCvsOxACjjF-gxDWb3Mm2xk7rjOGy1qWvRy7gegJrT1DJoMjVFrMXwp9HiFo14XKCrz0KXa6hQ8yRgFkhiaTSXOUiI1nnndvwBpRTQyTp449koDbNawHoFOcGQ90S-E9-JF-iY_xy4NDSZURIzLcNRJOVAmRoj5OyqDUkz6mVk4_moK-mRPJXsW2r7DdYALwUNUpNfVcy-nuhd4EqSg80I6q9ibPISteQZoPupVN8wT5ddTq-4cWrPEGM8WRTMJ3ojWLnnhMYoflafpNUFVy_g91P8quE71eJJaJaXCGJa2TtBNxq3vf9hsuahRiut891knuBKPynLDMO3YBQblPMrbMmGEWS6jGNaVD_UgodEEsGN10SPzJh70HOKSH7cR-IfVQyNz8sfHIPIeOF8KP_cot4a4MSo3tWEpI8G8XVHB1rAonXRp-crKNEyaZISrjFMUk9_COAOKTCsWHxzwSJ5x6fOGu2iketkxw-y5iJ6CLQHYPelDcfDY-qq3B5fsN5lTO-bjWAloYD-Jpb12Ez2N5vrrpboXGJya51P5XciQzD0t7As2_yvWKbzCBiKe9AdgFFSWhQyEPa2ye6pv5YsPSB9yLGrwQahaglvqmAq43njOCu5aR2hUa5IuKZQlgnHaYMBgg5Rp1n3bT9YFdeldj1J7rnnhbId9RhxBRMK9kRdn-1Z7bMGgC7NM9alpct7WklbUhr2VuS3Qrm5SVViFdBp_Yau8GYGSYZTC47LOaHD_3toUZcAm5KF7rqy9f1TpjGoYuGHIaxYVC6CpXasqIRsNKiBDG5vLCbHGtAK7YwaywvBOI2FMPOuaTIDKr6BfP3rrj7-gsbW8JokpRPXu647ZBjRb2qQEXNj2WQ8Wi9ZsYSNi11IOhRH6BLODTRBAhhWC8c6aVeVfv6829hooGo0BjinIdJvzmuxgZFcQvHy-CDa0XXtsqS9YuTpe1XXtqPARx8p9btYk_oQII5TO6ieIGvHQemXg2srkjUiAwRfTlcp_99psBBlT4oh2fYuJK18Dolej2bWE6vmXvO98eAvaJwsQ6ViK6rH9FNGaczDKZ3OJ6rmDJ3mDWpIFIqxPwb-gxWNwNb0AnHby-ruHMllOuAsGz0Te9mqcUbCYBj2-x1aJOXNXKA8mQ6DNCGNNxIyHjOZ9Klvhn4FtcEPkPdVmk7sJ6eFy7U1OslVAxrMdTG-3cLEkw4_SqU9l64YT5vJ9dT_U_CPU_GtO8ZYMlErl8kB9XI3bMeOCHvEyzOQJFXAHas59zqUkbxECPwe06bzIiN_kJZSsMyqYsJEMfIb3rlrvZx2WNl1pdphO_qvVOwrW9lu1QvCxFUXf0e8eUJHWSRazb3v5pcv2Tq72UHrDRDI3yetpCUA7vVhzDgwpFJbz_x55DbJ2z0mSRgz98W3zgggzH1mRDceHs85eyJWCSbkVChBlhkNUiBrHe8Vvo10e4WQKXpnUpLUW63O1W_1Hwh68mCoal8Oq1QVatOIiX_cF3JuA5ryTBNQOEHZiUOKTbaVkKDna2rhhNSMmxRntShWYfkZPRvfrRi8EmjumEHS0xCqUptyAH_upDgj2gXMy86D2wJXgnKeQkYCUgr5QHDhApcEGGGQHkO1hEf4BQ4q_B00YJDDlCepekJ3Ua0zKmKKv82QP3DLzyPkxdRSmPD1p9b5Im6TCcdm5sAwcaw3fCHmZYIptPbV7rZ4IrNCeA5flUJb7DL5945_PDwGBI0HYaI3kbj8eoiit6KnpwNCbXsZbMEqOuT0Y32SxyMDU1MlDt-zUmYdswL1_HW4Aa3VspYKCxdaCibTm_CADkfb1KedcYu4WNP07VZ6xMHXl7MnDviFCVG_Hcwo5BylsrVlvVBUnA5-NRCjjWLL2HqleSNVrgOq2QCxKorzPXQ3lkKji7OxrHvjMpAH7Am4HMF-ykxhROVaNruwopUItD1njbMs1eRvgAczBB2WaQIGkbQ6_5GYJxpTzYWup21yPb5V43qoQk79H-PWMPqJzLa9zlNvx61lP8SeZFS2qLTXUgvC16ZG2ygNlx-Bo7-wOUpEnZWGBH7A\",\"recaptcha_score\":0.2,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-6866903cebcd54-59308837','','','2025-07-03 14:14:20','0000-00-00 00:00:00','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43566',0,'cd-form-entry','',0),(43567,0,'2025-07-03 14:14:59','0000-00-00 00:00:00','{\"firstname\":\"Benjamin\",\"lastname\":\"Augusto\",\"email\":\"Benjamin_augusto@hotmail.co.uk\",\"contactnumber\":\"\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/?utm_source=google&amp;utm_medium=ppc&amp;utm_campaign=BEPT&amp;utm_adgroup=2PTOutcomesBenefits&amp;utm_ad=2&amp;utm_term=search&amp;gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6srjgaDEC1j7ln1RTixeXrYj&amp;gclid=Cj0KCQjw1JjDBhDjARIsABlM2StilapxRoEr2O98RSGxtA0fKp6UFt51xSO4wYBprviWLzTp_lgLq2waAs7ZEALw_wcB\",\"recaptcha_token\":\"03AFcWeA6hEU0HkVrwhiHY5yjhRWDRxmH6Pu6rLPUOpGAKRx734EOq-2gdZAppZ2jFADRBCP6FT8KB2CbO44uTpPYo-nP15igYCfgV5ussZgCUNXVFa4Hesg6gMx7xOvFvo1upzdRfcqnHs7CWha-9Yioc4L3OnSOM8jfCkPNCqTjM3zT6aD52sqdBqxrGJcYgvcEsxFWjD43zsGkQT6uBTpX__LAcyBvzY8s8sPqF_sBixuLrfpwxCkgQT5of4twayoFbxhSamFMly80e6vv7YYyB2taqU6xYtx-lwooljpLLaPN4yA9kZKlD46ID_257OH556jC4BZ68x72U5LyR7b5SiGZNdIdPoTH01vHQcUZnKDgEvwSMplIBsDGUOOYjusAiRCp1xnqvmZtYbIDgJXyNAlVL7zPV_4nHki1-4P0605fdJVqWG7O7VLdEDxSZItBcJ0O2ZE9EMDDKpg_vOPdfvX8UnD_NjWUhoREbCl5JL_ldY8MPwUviEAd0GsDVBlgohcARYEY6ou_8vtoQFSk6BAl0xRSpL8Qd2E4cQWm66ej8URMLGD7KILXAnp1vP1CeyX5K9NLkFYsU8lOZhxoxtYH7-GEs4-yU6r-wXNmGEREfwJSs36wTynOSHRMVptlbpHti85mHIN32uWizFaTNpTJZTL9VMQQHUs52-TV6IxE0A8dTUqTJzXpTuwwc4UC5rzFFoWI9wZK3yiWS8OsJRbP_uwuI_vzulCXLEBauXIW5E54L2Nx97hT-u3lcJOFeGIZzlR304Ykv4oKuMDFTRb6jO05rNf8cB2dw-YEU9hn8tVA_tKEqQ1F85jnISn118LsoGy9dO1HI7ZE3vVr_DJhaThqbaztxkF3lhSCdl0FtI5lpaIDGd32zxvjb1TwrxxdZ-SAUhdEuJLOpZ1P2Zj86pyKdIYPyspXdihQ08AOc0rq-A2pbDpwQUOXrRn-ynpVtlDFwlM5mi_bTp4sQqmdnYbkbAtHBbDJaK_SXFq4t2yAys7xgpzVx5TCzsNuYReIbfuasTU20aTVN60HS3-gv1-u7qaAOjtLx8Abl2xw55QGSy-CvD7fKyb2-x1geCbDMiR-TGnoIV2jhQCAReSOS2he0AqYVFg4zL4ZsDvkpQg4c36DQcKMGrSpZeSWXg6ZFQSAyJ1EETvTKL9feoRHqCXaaGxXSvbLJHZa0tkLYbiQqiIkX6cRbpYcKd-EM1bjyjwdZC9n0L6VQPGpbFG-JoXHZ9w1jgQUZtpAVIr5AQ5rpST_to1WBqMkP7irJwyewXUe_dvY26T6DDVTjkda5_NxCLvd7zc_hbg_W_ZqU1MHT6OUc-pyBL9QiCGO2bR55JZa2K5w1kxd3mQ2zkOUHBtMUN4BD2Sc357d1_Gk4HL_dILo3xJ9_ZYRdXJ6e7L-hlfJeUYXi83FmHGbIEQrNS_7j4suw5ZOFZzKiad4Yw-gO-LDcSBgoTHL-Tb6oUr8UP3iKoQP6rAoZAifCTBomOqw7KBrr0O1TBLbRyJZO1mJJ0W1EX2OJtF9UUkpYH9iw_ynfRpyhh3NzxgFrVPn9OqEda-DMFHUBme0ltpep7pyGiaNX2zgxUB9sRs0-G2I6f6letSOhlrJh8AfNNdjwMzjtXWit2Vg2QPtUO02J_jsPKvn_PFdHm92WASZVLX_OiIoyNsxXPs__Hh9FsEVmiuF-0R6sbO3dTtc5bFxPMFuS5k8RFayzabYp3AZnuxEJuWs2ZUMaZTBULVcWuGaj0Z-Y5ewQRjkE0LdsuDa5EyWw3OFdJ44gydxXXDAHqibUMF9b56DGAn_xlCcV0C8JLhXIx9ZDG0Yjh0TSpqcCPNybfyjrAr4iXYEY6-q8IdPoIaYGEXGe8WqK3GYOY-twwRuYG5ol2J1wtrRzXaScunON6YuYmexxWcAhDSFgqxPfz0YzqR_YRC4kdGnQq_hPyuBAX5HOrGMW-GSL36ZOaFsTDGD3OatLPE8wJPL5LsVI4WashO-3OOFXTjhGrVZd_HDUG3Um3h0rURn08riF0x8MgFF_2JV5uqnXkgtXZWKsUKNZoHBJOuqVPHjP00PT3lBp57pgTYC8rAmBMT2N6jJuUBxmrfkrGne72DG2I_HhxZrlPnGu5cfmjwp5hKqKx8jKZOisFRBo7L4EQE2IqqbvejqHfdOPJa87IveRLRuygsEwy5L_gBWJICXF26Gd6CcClQ\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','draft','closed','closed','','cd-form-entry-686690602f1894-62112534','','','2025-07-03 14:14:59','2025-07-03 14:14:59','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43567',0,'cd-form-entry','',0),(43568,0,'2025-07-03 15:18:47','2025-07-03 15:18:47','{\"firstname\":\"Cheremie\",\"lastname\":\"Hamilton-Miller\",\"email\":\"cheremiehm@gmail.com\",\"contactnumber\":\"07989383997\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA647YrG-SUiIZ3Wa4Xb0QZ-WUdOoxNIWMs7kPOnfBKZXbPuRhEQSCu98y15LJRFYjkDgvBrG28yPwVsaE4daxi0ZjbOiaiZcKJHfzblB-4--xUgYataX0j0blwSKtLaMw2XmEFGJcss_v2nC-6kl9grACj-CsZduTk2O62Jam2fpRh-2yQcwlMCfORF1cXFD8EfCFkc9QpWjPQIklq2FtbMXUKgl7zXQVRf5ujOOqMa25AG10cy4dccPjvThnYduYO2aYpnES_k4toB7scVhKK97Mw6E-qNgHPxpt_cIBs5shGSRQTdMtz8hMpq9NGfMbZAFTm6SXKZVaZmqfwPzf2FxKjyh-WNGwX42IQu-yEnMC_Wk-bmu4hWFI2thLSBzLHlCGEnN0HdFQFqr-Cm52NtG0C1IOcqvjFWS1lDBmMu_RuzPkNO2jetvdioE5c1_OjqrSL5Qm5fgTJe6mLE1AzOUXl27UTfHRKJ5mVw5N-manS-93BN3Xfnw4COW7FwHS986gTCweUC6TwTgyYf9nFuuMW6e81sZnVb4PtycLJSSN3ELnKY_UEfNWFwXj45L5T8a1U5373txkasb-829CkpQcF8GG9Lv1lIsG6UqO3ToFa1qnyd1j1d37j6hcfWhybxXECbbLMpCcFs1WEwgQagba5n4cv4e1mVsrhXGeAK4b8L9ip0RbJHmQhPPjlWXgEowsgga-rGvj3RBM2Pu-Ds4fxJpuRDUzSaeNXp4qLWtJw9jbpCC02J4-8QpUo9LINn7Kew4u2b6zWN-toPapB1Evwds_SMemb9CNfto_tg4034mopCzxTqSsplIDmwIihnXk6xvC2n5J7tV-4YQaR-YGss80JOiS2XogXaahuZ1lF8xilJhcgeP2AiZK49G1hIP-Tnhfym1TfLbKphrozWwvYvDIqLRssIxA7V-Uce6ebBFeoO3A9WeJT5xnfKzBX-Zn8solucRzgyAOCr8esUokctOC8sXWlqJk3thFZVVmYNk3w0eKYw_cu3crfDUxfrVgLmFbm1M2sQGMlFE4WeiniMyivi7crm-XHVTfJpOJGHpI3yoY7YFhn1Ooj57MfzJr9DDCS61GKcq5C7LhRGed_cnbIwmKkK2GQhCc1WDaXnflYYT63jIqAz2TgKmKR_qCLgeK_CGBFgMle-8Wr7hICIP_JnrAXtyFrYnW5WiubVUc4wQbHpkazYOPMWcu3Jt7crDy0J47hku08EBgR7kL8HNwIWzHheoDMFpzu5hV--YdmoODASAlpxfAG1BLLh-sAuL4ZlBvEPDjutOQDditn6AvrwYZ7l5A10UaBuAhIvDJSZf81ewwb21sQoliE8QlixaNgO04AhXxVUEM4bm52vyqFAvhgcGu9iyJIn_jU-ftnAtuNMgbPtG4LSVJzV4hC67et6WvolZF-83lWblPbytWwcpcsnGyt4_z5y3H3-XIzXSEWExUWvCGAtUTVXEDyCRRcUs9iaR0VpSEPHQnPrsgT8L7_wziofeI0Opa7e9rSEnBJ5qvwzhAlEneRfBDcqvOppeHSkM1Z7EagSBSGpmdJodyKNgWKHiL9ASqICU-Up91X6TEAdA6nL5h6zdQ6cQsTYFmsUTcsm96CzFBjI1bbiMZUrHOWw2CnP7HZqOzUKJHyQRZsRFDue8IX6AlDzIzDrpjHUlc1zNGeKBytyIBUGTYonap67I8uuKW2GEdYnl-XAc6UWHYo70ETiKbX_R-9LfmpUh2rVTWY8tYr2e4wQ8qC5urW6zGGlvio_3rQU1dcCTHK26eSwf867hjQPxOgyzS_ZYaUsfY4XVDlys5Irt4Hg85layIy5L5Ag96aqJU971TXaT7mXEYHyEpy-ivO3TXTWMlhIC4nD_qbFAw06CH78T08y7znkmFnwf1Kl-ZtQ94dpkmI5c-vPCOg0AnOoW6FIPSBQtctMfbKFDC6c6z2RI_-CYS-8SneyD1v5ZdWL-_oIoRz1PFwfJG1HKll_IDHFM2tAa_cq9QG4U76pJp8tyejKw_WdqA3y9kGU9OuN_8HSaySyt5rzRPgBcLmIFSJRPfFkaOtJ1EcAG66etGaDtSDZCPDAd_lXvNXXLs10F7rH1hExyiMNw8yxOuUOglqxW8s4INJDVHi1jCrGP5XI3e6p-FO-yPQf_vnHWOL3tk0V8891zBb9VP3-feWm5pTt2pxcFlUu8CSR0X-TMQnu2gxT6VjF_Wkj5JgCnghJYMWOVQZSCFU6BxJkiSio2XATNB15bhUiaD3FXogeaFyB6tUKXQx2qFYBWylWOrUgVBhKd1tjCcPpJWAsWH21ycZfPiAOP4Fe_t4gXNOrO0eSOzCEPAcFXv0bGawNfH3YckYPMPoXBXQ81RhxMrLNvmF9cq5y08fzkZXBdA\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"0\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68669f3d791e78-33757674','','','2025-07-03 15:18:47','2025-07-03 15:18:47','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43568',0,'cd-form-entry','',0),(43569,0,'2025-07-03 15:19:52','0000-00-00 00:00:00','{\"email\":\"cheremiehm@gmail.com\",\"interestedbecause\":\"1\",\"agegroup\":\"5\",\"genderidentify\":\"1\",\"regionlive\":\"8\",\"currentpostcode\":\"PO21\",\"pageid\":\"40321\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/\",\"recaptcha_token\":\"03AFcWeA7_qQGGAKsv12TMGp7uAph_NWSsUwQTrBAcA2sY-8H-dSpFTOIu0sdI92MF5vc8JyZQD8WRDPCWZhFq7xZ37LxQjh58KNnJKJ2Ht6lMVhp9OfABEXnH__So3RWtVnOvK09IBA7s_4aKDYBt56zev-yHGqlPk4f2XLZ3k_DwgR13rvk427UKQFBd3o0VfUyNwYwCZgDw-F1YdD6BHWnr_XqHA9L92usYDUZqnMCvEKXXEA3KcoNp3tYWKhlK7HQ_vFYHxj8hi0MJ5VZa3Z8d6_JbcJViLpQFrX85PIq8Z29QLev37G9kWulWvy9SrIWGx66RIhupll7kpOV1Z67MlR6lcFtUCNExbnf2ybO7PE85T1hOMYdlUrp35majlJoMi5CzlboJV9lUjp1JhXjt_tpSXm9kyClBpIjyQSai1rqTXrITBYbEwv0j9TbOtjGjC3lEzVB-xIckhDboZ_X-jEC_CN4olAmDiWSjalitf9dqtg9_W68TjGfZdM4jTT0gMepuxyNa7tNLX0Ixonoj3ePMzQxXmW8evJQlyuAV9wifG2CQKFbDAq5QBTT8C5UpmWoayTSR84qesheTBN0fMtVzA9GXKgbaqXBRTeMaIOJ-Mu2nksoF7YQDXaST3Ebmrl_uS3qWQcVxeUOr1220Xh7BHGEFvJmk7b8EUHXx3xmPIDBx0qhLnG_g0TEnwP2UZKWMiNHjVunFQE4wnVVLo0P2CMD8KvKGdFliVUxCGSEZ0dfTwEaVRdIq_WNIUa4_egXoIuBq0O5VsbGlVET9Q2YTMLTlUh_7cwWG-J_mj2JcWdMKESAb3kUa4x6M9JbBsu7NDm5kpnAr2XU2kRfWgwZyO46wNS64U7qkiGM97C74QwWKTwgW6GqOYJMzVbDk5YCYG_SBniTaDJpZOiupXMQP8XR_kUHo4mxf9ZDPX3_PX9z9IKqe2OwwN3HvLMq7QbBzyxfw-75thtCMeWRtbz5Hs621f0gbwJeIcBljdAxVlWnQ5vtO3fCAEOn9IhhLHq57Icd4cpVmXZJvq37arsIx7UCn5FzIiejMy-gO4fNF9DXSxOXYY-sNc9MGlUuM6tEc0KqUqF6Uj2iUdUl2ORumm8eSuvG7xyBQmJAraI2FP7U1dcljQHFyjJXIXWlhL0KUhiCEmAiYuZhzCU9swPfpJaWs1o3xhhN6WiQn-b7_QFDDGHcI-16A1V60d9jCZzVfzqEaEs6ma9cyeSrLvkApVMC6Cv9iJdVAZrQZzoqHZE5nrGaOlNfiDxYnz1YucKjmOS7Y9e5WLHXIOG8u0mj3qh_lBACdfdXK4fjy5ukp6C4ZWhfPv-PeZI2FM4C9_cXqV0onbbTxgkML6EOfNJQ4CoEM_vqOxykwbhfA8rrUmU5lxDMWb_KkhyjpN7mgUFFD-6ENZPc2mk2RnP4FNAgMtYOoY8RZUHhdK5GzBnWkd0tw4E23xnHU-G4GsYMbSOExoJj8ty1UzkqVYKKth636Ra3MKONLZc9Gqy2l_7szwPFzMA8nbtKYwQNlpQ4r7m-p3tmCHrsh_Ba4oCLreNSOSh5_d6sQc943syyMZ0Fr_kBs2tTDiIOf_Nk-12phP6huApWBIrNXRcBvMpNGYRyh5t4Cobto3FOJ7fBskw8lr2GFROOnoCCZe_L3GhjzIkCyMFoPv0L3jvIWNVC4VaBc9zgV8KTBioM4xEwnjjqCmNduUfrnRQx-FO5OTK4tR0KnaonNzPv1GMSPqp4LZp5e6A1Cg_H2gSF28DcCbta8ldSUhsGXYfgE2ZNbzsCIO9OzzjmTJ_oQkapOP5PK-byeqs5TUHuhLQLjJdBlp2XACgRuPYEXcOTkRVrhffBHYCTtQ0qBUOe-x2Z2kL-Z2iZJRqCX57rTShVrMy3tVBJoQ0Mm62uz8nf6_5JQfXfSTQzAzQu03SvyTRi4UR6MAZ4r4ak_e4rCO-VUq6B5sgi5iP_MC54M7bESMm9YnmsJpSnGp3LzwhZEtfjH1kkKAuwJykqkDDigI2uRtGRwoxwJlRbH4_2CeSG0k45H2TbBWzqt-Ka14zoVRcqRiV4TUGN_j9sJIWoNjhGSZADkbBh-pP13CmSs56onmkGXLnP0-_ZPuc5EsPDhD3jDh3hwNtBJLB2Wb1NtbEaAL6xqniox26ibtp-9JDqO1FLnORPMjfIyVB88wuvOsCtC6BVlwPfOqBHtZoe33S1oagIr72S7sKT5HmyZ6coNXwiCpU6Pr4l7TyxEXQn5wuO5bIUm0tAIK8GwdeCgZiW3i7sYnP73f-AEPI99LOwiYOSOA88sK1PG4v56ZMX6U3d8cx0_6JHOhQSDp_Le_6YWTe7doUDWdFG42wNC2MWvURqJ1LLvV3C0W3a3sF77eaEc8f7420xX_qlZqQ\",\"recaptcha_score\":0.8,\"recaptcha_action\":\"submit_40410\",\"recaptcha_success\":true}','Survey - Persona Data - Targeted at Leads - September 2024 - EP','','draft','closed','closed','','cd-form-entry-68669f982af0e6-51264385','','','2025-07-03 15:19:52','0000-00-00 00:00:00','',40410,'https://biomechanicseducation.com/?post_type=cd-form-entry&p=43569',0,'cd-form-entry','',0),(43570,0,'2025-07-03 15:21:22','2025-07-03 15:21:22','{\"firstname\":\"Claire\",\"lastname\":\"McFarlane\",\"email\":\"clairemcfarlane16@gmail.com\",\"contactnumber\":\"07886925547\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gbraid=0AAAAA9_dL6vUxfjPIMqjbZGVevg0hAhlW&amp;gclid=Cj0KCQjw1JjDBhDjARIsABlM2SuO0QlDwfwEzUgMaUeqwNnfjcKmaMmmFcmWSBHUAtSa7ZdEuhHG4SQaAsWgEALw_wcB\",\"recaptcha_token\":\"03AFcWeA5oq8O4zuuAo1zWth6ykMaKmpteFBjp3JClqdFCt1YvtoJJwoSjUvNMu9Ag7M5rrgr56lgFk0SF2eG4K5FihsQBKq9fce_ATfM8T_PhkN3NJN80Ka4b7az8piOnobkhTadTowBgNt6UfTRibyE7-lDEhFJYLrMrT2WWQdb_zOHvJ9pPIf6P5hd71Quan8gbz_4YDp1M0ANUSvqjlrV17x8MgLk0oAuTZ87R5rrPipgYtgmQVQ0wwWME6uK7j8yDCRvcuv-Hinq2gELkHm-M1UZwFJUgc_ROTfLnBrOL9jHe8Lt7xgYZ5CD_JAXwypa1QqCKs90BLTFGWVqzqKpuvMRpNhCUbFv4jTpY6KtOyHR_nY6Cf-fEpqyaOa8FsqqFDorUUefoyhqzRt7LPPfd9XoTQfdHWiXZWHiclhHV5Q0yCdaPGsAlpIEhJPEAQFO0wfxGx5_MLndXf8nPwJvRQDDPVObvcZHJaERRGGeInAXArEepuwnK46-99mAwwJMv9qOl833suCd9Q5Z5WjQXnn6azRGOFGIN2xSkw8RR1XMcTqp_9d9puAe4VvMukUm50X5QDy6RG1BkyfWCZz_wkz4cvL7Izr2VZyu2R3XmPsGbOWNcOYtUL4BqfrogBC3qRPiNi6oFWGWLzpnWaGaNzoGYnhlvUW13CXQKBARCZ4oFhG9Q61BpHNbUFoAVlger8T0vX_GHzhAIB8qr9QS2LKlXFgVlUDKhj345nUjgsQEeLOFUan0FEeQ2ht_Rex4vwIPy-FlEwx83mBKDeCCxwInXhk5XgcLvAAp4d4dJTfAwIytyhV_pwgJLB41QV59UXHQerGsUgwBfQxwkFUbusNwHKO4c1_SMDVOrnL28x03u_nIwNLtrsnC2FlDanNQTdr526tUcseFyij5kHydymKii5t4TX1qwXBdknqZBjdByxKmEdbHuPAIgT-tXfjKUeIiAwekQmYf5OX0CJ1IE_G2Kx5weO0_0uXD7A0SnpwZCEDvIBZL5O4ejHLRG_ILjP2Y61OzcqLVwJdOspILlxMAAC6t_0G5wVwmj2Vc0PCDriwxgP51zGpPoZ0S1VyvChQlOwwnWdbY2XoFr1bFxtdBNXjOSVKbBkoNhYRyXwKRQVqaWwI8XIHiqT8hMLZPmM5kkINSEV88OtQE07O1J8_a-IaQuDYF2sIYprG7gHwy4rTTGvuXDEQS6FsI1QzjPJ1U20OSm6OkxzVkJ128qGnBZA43TUZfHsLSBsjrRJHZF8H1Qqrsshjcj0DVPUW9pDaO6JHcmeUikTfIA9qG8IPdvptf-cB7gvjglVLOWtuRUiCGH1M2ncSvAaY1ni_uaJjPLsEtxzlJkBhOJVp9DZbs99z624sLxZ-x_OSF06UQXfYrkUX0oghJm1jdlhh51AfVLx5b6BVlus6XEP400DEvzyLw2McJJunH9UQGrIpG3rUzN-7IZNQojEG_TKQsN3QUyR0lWimumqyQoyo9ksL70MSmLfpp9_G3PBe5BcSXJCpLYbw0yuerikSLV2Vy6q0p4fNnBf3jXBaLFqhflTy31TficbSrZIlQv1x4HEEzc_DKyKTwpnidH50UmWw3Cjs4CIoCTvL6ZEtV01Tq-3LJc0THVL8PVQLIIRL_reT1_Y8EQT3OMn7BQPFtjtnLcL1UnFWcYlUGkdBr3RuvuMeH4Z2TEliekGUO68dDfkfn-T4KlwuyKYPMXO30r0BuVRzJF37sxLFR6EaqflB6pOBx3kNJ2u94oY4GNMtXOyPFWpaVhSUgawrf0X4F5roqSt3rLWi9K-C-LC-ao_2_yByGwlv-_VV2iWQ3rjYaG25rzDNx6zFPJE2rp0pyI0dXKEsPPNatDMCsr50IsBFFVEWb8avMGWpNWbJYHKxez4Xa5uVZ15y1Kv5HqKJOj6WRfro70AKcjAtVfXJlAyHKGmvk_RMHeZo7NEzIxHpevXEz8YwAQPjifV0Qo5a3GlbOjNQV_bAf2_C0YyktPOzGa8qhM6pf-YRP1-RWsk7C2UfG6bakTaiM9m94P4QWGk48fJXi_dzZxFtuFKc6t3TyDILI21TVWU31bFGuDN6cqq0caprW-edbbAsIDGPb_6VNu0TuaSHCdHAdu6CQ64vECd6wP8yJaiLXIkKvfQGuGTRrIw53d6r_tC1bb8i2j0RENnjYL7SkeaCaNiTELB39BNyMZwNYDqYQab9tMztiCWR9BfJ8UYU-YM_MSz21U4JoaYU3u2ItkABJoFcu8wyGUQIA0ruJPMS0OF8BeeRbEqhQ-wGLakDX1x8NEL7QR56-SL7ODDldBEb5KydynM5Txa-0suunWIA\",\"recaptcha_score\":1,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-68669fca0ded40-37799740','','','2025-07-03 15:21:22','2025-07-03 15:21:22','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43570',0,'cd-form-entry','',0),(43571,0,'2025-07-03 15:57:06','2025-07-03 15:57:06','{\"firstname\":\"Lou\",\"lastname\":\"Lowe\",\"email\":\"Louski.lowe@gmail.com\",\"contactnumber\":\"07480864537\",\"pageid\":\"39270\",\"sourcetracking\":\"source=undefined | medium=undefined | term=undefined | content=undefined | campaign=undefined | gclid=\",\"entrypage\":\"https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/?gad_source=1&amp;gad_campaignid=21786533231&amp;gclid=Cj0KCQjw1JjDBhDjARIsABlM2SsxJdQaj0jNgBE4lePP2q5tvXD3Ebo7xNxiperc9_Gxs-fJg4NAYncaAok9EALw_wcB\",\"recaptcha_token\":\"03AFcWeA6kElLJalbbj1qp42cyaNGzJa-rHa6mrRl7ltVi2PkrcNwyBKU3abhdqkiODBd1gE1i4giGDyAb8H9EtW7Mo0r6BDzdFJutCNH5nV_NPdxZrZEosiVZZu__q2GmXfKqzq0s2qtAQcXZ9HBKZoIXYk6ab93OQST3-4pZgkcxsRwQLDronFZLgFjoXr54leLibKswXaZgr8bKOItmQ8Bi1KawWurgZN8Z4ms68JXmQ6LhppQ8nvH9_XkhaNBDoBqNL72GoPe0jKKgBlfPb2p_zo5XONyXbsdNGHUNCes8jZIczOx4Gr4YK5-zlsqm6vqAZLiDlFhZefZGZB18lMSqwX_DEVqmitiMlO6yz0uK2HITKaj0RVYzcjdCuwVenPQLpCdDe1K1bazyA7-Y4bA0X6QeCcZjePw7o6EF3v5EPqhp7tmPf3cwIrPLEF6Tp-QymY-X_kb0Jc3Y2XVox5WZbaufsB24tAlDw4XvMMqMshyOURBg8298c1H5XjMykJmHqauq-yRcT7ZNnlFC5tKH8fc1Ude6bGu3snJGrXTl7XPHo0xdfbD9x4Qj-ER5OYjxAp-4dD1TQ7N1o7W2vj2BRrOPV4q6gGgKIcf5-yXNMCBzLSo_e74_8O75it8eIqMxTYejLfOFsv5YjTVx82EkIQbPJhLALO4pyBz3X6Za2PZ0pwTE4x_7BguLjIqu46_et5wJ8W04m6xkSHykhk23eQYP27uxAgQr01PlhKT5XUTNXrxMwpSKtGQ_nxXCIdl7wR8-1NDTFuzHbhbGKebffahXbTMqUpIsoIZ8KvudGcBFOl8vktRTbfTlphTBabsf7vj7XP8JWuBNb7XtEXm8Q0EZt3OtnUKt7RTyZ8lkoNaX-ctgiYnLtJKgkOzW19dkAjhVBaKglO2NHtOLk1HNfXW0CQleVvvi-pBVSKSNv28Z91sbm-2SpVH1rbXyZRqFucINe_iLv7MbJkSNC-aWGd3jO9Q8zEw9nBauY5ltL7hPzIgo0UvSS0iqp1INofq8Xe69TNaqZjUAU7MAwO7BkiHiudu9MUS_hxznBCnun2H_DWcjiHehJGQ-44-kB_ei8LEekQjN5dCqMuQRK563GsaDWxoqcucszxEgq9OyWTuT00x_3elBh01eNFUhxVdr8kEokxOs5kv-bHga3xNGp1eMnoPdZ5FMF5SRTnbLJ5A3pQwnn--gMu5J6TGMm6_2E14X1PyR1J-fmxjwpPJDVN2k8RWlzi5bNkCXYdordeZS8M1jVSe8Of29xosXjWWqVbcm2NhWoq49lFCurTHGeNs2lFNbsUSIsvVmLDydIeJ34Tyv5UdfnR3BecKNaTDP4XAV0aLoO1BElxzVeSMeVa_DgqgzNc61JsmNI_L9BtX8FjHTv1trMI4EoGizJqxbRfTU_oa4XJQNf5off-EpriWXZBGLO58xz9YXUQUIgSAHr2jDxjHsFilR_ZhYnpQPudHbkbDcZsiNqS12k7kThehCW8gS_zqqIqQKqVZF0KoOXCA37CwU-_SiofxFqL5C8tEuluTtyuIXDrs4d_WfaToH1YWQkrNyfeeSfP72YQjDqPBdeAWZOaQ78fRUIncN3SAWDa8p9dTZrXYUKGBs9E467dibqiUIfR9BZZFXndLHiJF5YuAQ7Y_LSD_C3_WPi89p9aRyj0TJdFA5Cvh4KqFzHVuzbJFIWBzLASKZqvCWkLPOXnTWnfh4FLu8t2b-lInUWG3NqToeVLy1KrzrAXkiLPmpwNHYC6Okhv-4J4-E69H2vY48PfypW8dF-G_LcNXADgXiosWGqA4dJkVqrsMvpXYbSA1tlMrT83BK0tGfvfWw8q-dePounIR4joqxG_PipL0KLKJVIv_dTR04Vzj038s0qPFfiZTptRg_ndxF5JPqaKXXO5mSyDBIesYNUMTtvFY4GG82VQZvZdvB8p_MCcxHff3NE2Hv3xxitNB1llzKhNI_etIZRxGGoiKJkLOCLWV2LrecNDci5YwQnodDE2VMMXFiPuBXQy1Xo0ACa6V3R58BoUFGjBOw7Kh0YkIFwo9uC1SkTXLydqY04AkN3PqP5fFAzwtQFEU_dL4SQMSvTP4owWEmNW0tlMEh5mNRncFA858K1RRQfB99IWGlEv0hkiJo49M5n_soIwp7XuyoxDzVNm6Tfr0v20wdqY4cPlM-\",\"recaptcha_score\":0.9,\"recaptcha_action\":\"submit_40394\",\"recaptcha_success\":true,\"interestedinbiomechanics\":\"0\",\"currentwork\":\"1\"}','Biomechanics Education - Enquiry Form - Lead Gen - September 2024 - EP','','publish','closed','closed','','cd-form-entry-6866a8426f7ce8-52378709','','','2025-07-03 15:57:06','2025-07-03 15:57:06','',40394,'https://biomechanicseducation.com/?post_type=cd-form-entry&#038;p=43571',0,'cd-form-entry','',0);
/*!40000 ALTER TABLE `6m7_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_redirection_404`
--

DROP TABLE IF EXISTS `6m7_redirection_404`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_redirection_404` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `domain` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `agent` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `referrer` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `http_code` int unsigned NOT NULL DEFAULT '0',
  `request_method` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `request_data` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `referrer` (`referrer`(191)),
  KEY `ip` (`ip`)
) ENGINE=InnoDB AUTO_INCREMENT=182201 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_redirection_404`
--

LOCK TABLES `6m7_redirection_404` WRITE;
/*!40000 ALTER TABLE `6m7_redirection_404` DISABLE KEYS */;
INSERT INTO `6m7_redirection_404` VALUES (179941,'2025-06-27 10:04:02','/libido-max-return-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(179942,'2025-06-27 10:05:44','/meta.json','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(179943,'2025-06-27 10:06:56','/weight-shift-piriformis-lots-of-dollars/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(179944,'2025-06-27 10:07:11','/hes-a-stooge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(179945,'2025-06-27 10:23:42','/allmax-l-carnitine-reviews-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(179946,'2025-06-27 10:29:14','/improve-your-squat','https://biomechanicseducation.com','Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com)',NULL,404,'GET',NULL,''),(179947,'2025-06-27 10:30:21','/product/golf-biomechanics-workshop','https://biomechanicseducation.com','Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com)',NULL,404,'GET',NULL,''),(179948,'2025-06-27 10:33:21','/virility-ex-cost-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4211.982 Safari/537.36',NULL,404,'GET',NULL,''),(179949,'2025-06-27 10:45:07','/product/shoulder-knee-foot-biomechanics-online-cpd-training/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com)',NULL,404,'GET',NULL,''),(179950,'2025-06-27 10:47:36','/2017/05/03/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(179951,'2025-06-27 11:00:46','/my-horrific-halloween-earwax-experience/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(179952,'2025-06-27 11:07:04','/vitex-essential-oil-for-parkinsons-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1471.856 Safari/537.36',NULL,404,'GET',NULL,''),(179953,'2025-06-27 11:07:31','/extramedscom-review-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5835.290 Safari/537.36',NULL,404,'GET',NULL,''),(179954,'2025-06-27 11:10:11','/prilosec-rxlist-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1532.308 Safari/537.36',NULL,404,'GET',NULL,''),(179955,'2025-06-27 11:32:56','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(179956,'2025-06-27 11:37:39','/2023/06/28/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(179957,'2025-06-27 11:49:57','/foot-biomechanics-made-simple-part-2-how-to-test-correct-imbalances-in-foot-biomechanics/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(179958,'2025-06-27 11:55:15','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(179959,'2025-06-27 12:19:20','/category/uncategorized/feed/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(179960,'2025-06-27 12:28:46','/buy-tretinoin-cream-01-canada-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9991.858 Safari/537.36',NULL,404,'GET',NULL,''),(179961,'2025-06-27 12:43:56','/wwwmedluse-webmail-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(179962,'2025-06-27 12:51:16','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(179963,'2025-06-27 12:58:38','/high-dose-venlafaxine-xr-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6828.632 Safari/537.36',NULL,404,'GET',NULL,''),(179964,'2025-06-27 13:05:08','/product/performance-biomechanics-in-sport-swimming-live-webinar-nov-8th-2-4pm/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','https://www.biomechanicseducation.com/product/fundamental-principles-of-movement-analysis/',404,'GET',NULL,''),(179965,'2025-06-27 13:06:43','/commander-sildenafil-pf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(179966,'2025-06-27 13:06:50','/peut-on-commander-d','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(179967,'2025-06-27 13:06:57','/prix-cialis-pharmacie-sui','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(179968,'2025-06-27 13:07:04','/prix-du-cialis-en-pharma','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(179969,'2025-06-27 13:07:11','/prix-du-viagra-en-franc','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(179970,'2025-06-27 13:07:17','/prix-du-viagra-en-pharm','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(179971,'2025-06-27 13:10:29','/acetaminophen-ibuprofen-dose-chart-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(179972,'2025-06-27 13:12:11','/para-que-sirve-brubiol-ciprofloxacino-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2084.736 Safari/537.36',NULL,404,'GET',NULL,''),(179973,'2025-06-27 13:15:41','/eye-secrets-1-minute-lift-erfahrungen-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2084.736 Safari/537.36',NULL,404,'GET',NULL,''),(179974,'2025-06-27 13:16:01','/us2rxcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(179975,'2025-06-27 13:17:38','/prescription-drugs-america-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(179976,'2025-06-27 13:19:58','/vitabase-prostate-complete-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8813.691 Safari/537.36',NULL,404,'GET',NULL,''),(179977,'2025-06-27 13:24:49','/lek-cellcept-cena-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6473.935 Safari/537.36',NULL,404,'GET',NULL,''),(179978,'2025-06-27 13:27:09','/great-discussions-egos-trolls-the-2-sides-of-social-media/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(179979,'2025-06-27 13:39:44','/product/mindfulness-mindset-mental-health-live-online-event/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(179980,'2025-06-27 13:50:04','/cheap-cymbalta-prescription-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(179981,'2025-06-27 14:03:32','/genotropin-zapach-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5818.480 Safari/537.36',NULL,404,'GET',NULL,''),(179982,'2025-06-27 14:07:06','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(179983,'2025-06-27 14:09:57','/remedial-gymnastics/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(179984,'2025-06-27 14:15:05','/organ-shield-da-purus-lab-como-tomar-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(179985,'2025-06-27 14:29:09','/biaxin-xl-and-alcohol-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7244.518 Safari/537.36',NULL,404,'GET',NULL,''),(179986,'2025-06-27 14:35:14','/how-effective-is-clomid-to-get-pregnant-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5496.863 Safari/537.36',NULL,404,'GET',NULL,''),(179987,'2025-06-27 14:36:32','/generic-finasteride-walmart-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(179988,'2025-06-27 15:04:31','/us2rxcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(179989,'2025-06-27 15:07:14','/can-being-fit-stop-you-being-healthy/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(179990,'2025-06-27 15:10:23','/is-there-such-a-thing-as-caring-too-much/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(179991,'2025-06-27 15:11:44','/2016/12/19/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(179992,'2025-06-27 15:22:29','/prilosec-otc-recommended-dosage-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(179993,'2025-06-27 15:23:11','/ukmedicationscom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(179994,'2025-06-27 15:29:45','/2016/09/13/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(179995,'2025-06-27 15:43:48','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(179996,'2025-06-27 15:44:23','/fluoxetine-cvs-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7993.498 Safari/537.36',NULL,404,'GET',NULL,''),(179997,'2025-06-27 15:46:43','/knee-biomechanics-part-8-the-muscles-of-the-knee/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(179998,'2025-06-27 16:04:26','/organ-shield-da-purus-lab-como-tomar-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(179999,'2025-06-27 16:07:45','/medicine-voltaren-gel-side-effects-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180000,'2025-06-27 16:14:58','/calendar/action~oneday/exact_date~14-6-2020/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','https://biomechanicseducation.com/calendar/action~oneday/exact_date~14-6-2020/',404,'GET',NULL,''),(180001,'2025-06-27 16:35:26','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180002,'2025-06-27 16:35:26','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180003,'2025-06-27 16:35:26','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180004,'2025-06-27 16:35:27','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180005,'2025-06-27 16:40:31','/event/iba-discovery-day-workshop-2/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com)',NULL,404,'GET',NULL,''),(180006,'2025-06-27 16:41:04','/over-pronation-or-late-supination/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com)',NULL,404,'GET',NULL,''),(180007,'2025-06-27 16:43:11','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180008,'2025-06-27 16:46:34','/index.html','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180009,'2025-06-27 16:47:45','/avis-sur-achetermedicamentfr-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2445.523 Safari/537.36',NULL,404,'GET',NULL,''),(180010,'2025-06-27 16:48:25','/events/tmc16/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com)',NULL,404,'GET',NULL,''),(180011,'2025-06-27 16:56:11','/domainmanagercom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180012,'2025-06-27 16:56:37','/1333-2/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180013,'2025-06-27 17:14:35','/2017/11/19/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180014,'2025-06-27 17:18:57','/are-you-normalised/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(180015,'2025-06-27 17:19:00','/do-you-really-have-a-weak-core/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(180016,'2025-06-27 17:25:05','/what-does-edexcel-mean-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2764.951 Safari/537.36',NULL,404,'GET',NULL,''),(180017,'2025-06-27 17:26:33','/igf-1-hormone-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180018,'2025-06-27 17:50:52','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180019,'2025-06-27 17:51:46','/micardis-plus-40-mg-12-5-mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180020,'2025-06-27 17:54:22','/the-weak-core-myth-core-progressions-that-all-personal-trainers-should-know/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180021,'2025-06-27 17:57:36','/questioncould-using-machines-differently-hold-an-advantage-2/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180022,'2025-06-27 18:03:43','/c4-50x-pre-workout-watermelon-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7996.944 Safari/537.36',NULL,404,'GET',NULL,''),(180023,'2025-06-27 18:06:05','/do-you-feel-stressed-and-is-stress-actually-a-bad-thing/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Mobile/15E148 Safari/604.1 OPX/2.0.1',NULL,404,'GET',NULL,''),(180024,'2025-06-27 18:08:51','/a-personal-trainers-guide-to-7-styles-of-lunge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180025,'2025-06-27 18:15:51','/can-permethrin-kill-scabies-eggs-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180026,'2025-06-27 18:24:26','/kamagra-wien-apotheke-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8027.817 Safari/537.36',NULL,404,'GET',NULL,''),(180027,'2025-06-27 18:40:56','/pick-me-again-by-request/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36 Edg/101.0.1210.47','https://biomechanicseducation.com/pick-me-again-by-request/',404,'GET',NULL,''),(180028,'2025-06-27 18:41:00','/foot-biomechanics-part-9-the-bones-of-the-foot-ankle/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180029,'2025-06-27 18:53:34','/maxatin-cena-apteka-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180030,'2025-06-27 19:02:52','/marcomm-pillsro-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2600.614 Safari/537.36',NULL,404,'GET',NULL,''),(180031,'2025-06-27 19:05:29','/product-tag/webinar/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180032,'2025-06-27 19:07:57','/site/video-gallery/290-golf-biomechanics-workshop-4','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(180033,'2025-06-27 19:11:16','/do-we-need-to-massage-the-itb/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 5.1) brokenlinkcheck.com/1.2',NULL,404,'GET',NULL,''),(180034,'2025-06-27 19:11:17','/do-we-need-to-massage-the-itb/embed/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 5.1) brokenlinkcheck.com/1.2',NULL,404,'GET',NULL,''),(180035,'2025-06-27 19:15:04','/igf-1-hormone-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180036,'2025-06-27 19:20:55','/kontra-indikasi-prostaglandin-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180037,'2025-06-27 19:21:04','/purehealthcentralcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180038,'2025-06-27 19:31:46','/the-deadlift-which-variation-is-right-for-you/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180039,'2025-06-27 19:33:55','/precio-de-lopid-900-mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6701.156 Safari/537.36',NULL,404,'GET',NULL,''),(180040,'2025-06-27 19:38:24','/magnumer-daily-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9920.292 Safari/537.36',NULL,404,'GET',NULL,''),(180041,'2025-06-27 19:38:45','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180042,'2025-06-27 19:43:48','/commander-sildenafil-pf…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180043,'2025-06-27 19:48:44','/peut-on-commander-d…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180044,'2025-06-27 19:48:50','/prix-cialis-pharmacie-sui…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180045,'2025-06-27 19:48:56','/prix-du-cialis-en-pharma…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180046,'2025-06-27 19:49:02','/prix-du-viagra-en-franc…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180047,'2025-06-27 19:49:07','/prix-du-viagra-en-pharm…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180048,'2025-06-27 20:00:38','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180049,'2025-06-27 20:02:41','/plantar-fasciitis-what-is-it/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(180050,'2025-06-27 20:02:42','/plantar-fasciitis-what-is-it/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(180051,'2025-06-27 20:06:14','/thebemedcoza-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180052,'2025-06-27 20:06:21','/vimax-detox-reviews-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180053,'2025-06-27 20:20:34','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180054,'2025-06-27 20:20:35','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180055,'2025-06-27 20:20:35','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180056,'2025-06-27 20:20:36','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180057,'2025-06-27 20:29:24','/libido-max-return-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180058,'2025-06-27 20:38:04','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(180059,'2025-06-27 20:38:06','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,404,'GET',NULL,''),(180060,'2025-06-27 20:40:38','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180061,'2025-06-27 20:40:38','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180062,'2025-06-27 20:40:39','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180063,'2025-06-27 20:40:39','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180064,'2025-06-27 20:42:00','/thank-you-diploma/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180065,'2025-06-27 20:45:35','/2016/11/14/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180066,'2025-06-27 20:52:49','/the-cossack-movement-analysis-made-simple/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180067,'2025-06-27 20:54:14','/bimatoprost-online-australia-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1561.400 Safari/537.36',NULL,404,'GET',NULL,''),(180068,'2025-06-27 20:56:11','/a-pts-guide-to-sciatica/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180069,'2025-06-27 20:58:11','/the-squat-part-1/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180070,'2025-06-27 21:03:14','/product-tag/sumo/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180071,'2025-06-27 21:12:43','/thank-you-diploma/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180072,'2025-06-27 21:13:30','/a-pts-guide-to-sciatica/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180073,'2025-06-27 21:15:20','/how-should-personal-trainers-choose-exercises-for-their-clients/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(180074,'2025-06-27 21:15:53','/clarkspharmacyazcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3579.147 Safari/537.36',NULL,404,'GET',NULL,''),(180075,'2025-06-27 21:27:54','/pocket-pilltraptoidecom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180076,'2025-06-27 21:30:14','/site/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(180077,'2025-06-27 21:30:15','/site/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(180078,'2025-06-27 21:30:18','/site/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(180079,'2025-06-27 21:31:36','/site/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(180080,'2025-06-27 21:31:51','/the-ripple-effect-how-1-action-can-impact-hundreds-of-others/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180081,'2025-06-27 21:38:56','/2023/12/20/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180082,'2025-06-27 21:47:12','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180083,'2025-06-27 21:47:13','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180084,'2025-06-27 21:49:30','/dt_gallery/home-page/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,''),(180085,'2025-06-27 21:50:54','/realnaturalremediescom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180086,'2025-06-27 22:05:57','/100-beef-aminos-results-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','https://floridastateuniversitypillowpetekazak.blogspot.com/2017/05/?m=0',404,'GET',NULL,''),(180087,'2025-06-27 22:07:46','/bgi-insurance-benefits/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180088,'2025-06-27 22:28:30','/testo-xl-supplement-review-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180089,'2025-06-27 22:37:10','/manforce-ultra-thin-condom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5833.810 Safari/537.36',NULL,404,'GET',NULL,''),(180090,'2025-06-27 22:52:18','/best-full-coverage-drugstore-foundation-2012-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','https://www.stou.ac.th/schools/sla/is20stou/isboard/QuestionView.asp?GID=25746',404,'GET',NULL,''),(180091,'2025-06-27 23:07:44','/crawfordmedicalconz-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4901.896 Safari/537.36',NULL,404,'GET',NULL,''),(180092,'2025-06-27 23:09:51','/acheter-du-viagra-sur-paris-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7210.674 Safari/537.36',NULL,404,'GET',NULL,''),(180093,'2025-06-27 23:13:08','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180094,'2025-06-27 23:13:58','/how-to-ask-smart-questions-to-get-a-great-answer/','https://biomechanicseducation.com','Turnitin (https://bit.ly/2UvnfoQ)',NULL,404,'GET',NULL,''),(180095,'2025-06-27 23:28:18','/precio-champix-mexico-2013-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5499.431 Safari/537.36',NULL,404,'GET',NULL,''),(180096,'2025-06-27 23:30:33','/wordpress','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/wordpress',404,'HEAD',NULL,''),(180097,'2025-06-27 23:30:34','/wp','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/wp',404,'HEAD',NULL,''),(180098,'2025-06-27 23:30:35','/bc','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/bc',404,'HEAD',NULL,''),(180099,'2025-06-27 23:30:35','/bk','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/bk',404,'HEAD',NULL,''),(180100,'2025-06-27 23:30:36','/backup','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/backup',404,'HEAD',NULL,''),(180101,'2025-06-27 23:31:17','/remedial-gymnastics/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180102,'2025-06-27 23:33:36','/intrinsic-biomechanics-for-personal-trainers/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180103,'2025-06-27 23:38:46','/spine-mobility-project/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180104,'2025-06-27 23:43:39','/.well-known/security.txt','https://biomechanicseducation.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,''),(180105,'2025-06-27 23:48:14','/whats-stronger-omeprazole-or-lansoprazole-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36',NULL,404,'GET',NULL,''),(180106,'2025-06-28 00:14:31','/prince-pharmacom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2095.293 Safari/537.36',NULL,404,'GET',NULL,''),(180107,'2025-06-28 00:23:17','/do-we-need-to-massage-the-itb/embed/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36','https://santabarbaradeeptissue.com/',404,'GET',NULL,''),(180108,'2025-06-28 00:23:47','/promera-sports-con-cret-burn-review-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180109,'2025-06-28 00:24:09','/do-we-need-to-massage-the-itb/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36','https://santabarbaradeeptissue.com/',404,'GET',NULL,''),(180110,'2025-06-28 00:24:21','/do-we-need-to-massage-the-itb/embed/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36','https://santabarbaradeeptissue.com/',404,'GET',NULL,''),(180111,'2025-06-28 00:45:12','/how-to-stop-the-bad-habits-from-creeping-back-in-when-you-begin-your-fitness-journey/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180112,'2025-06-28 01:09:22','/product-tag/sumo/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180113,'2025-06-28 01:11:15','/commander-sildenafil-pf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180114,'2025-06-28 01:11:30','/peut-on-commander-d','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180115,'2025-06-28 01:11:46','/prix-cialis-pharmacie-sui','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180116,'2025-06-28 01:11:57','/prix-du-cialis-en-pharma','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180117,'2025-06-28 01:14:00','/grit-vs-talent-which-will-more-likely-result-in-achievement/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180118,'2025-06-28 01:14:20','/prix-du-viagra-en-franc','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180119,'2025-06-28 01:14:25','/prix-du-viagra-en-pharm','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180120,'2025-06-28 01:15:24','/can-you-buy-erythromycin-over-the-counter-uk-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://clanad.endinahosting.com/index.php?file=Guestbook&p=33429',404,'GET',NULL,''),(180121,'2025-06-28 01:15:45','/product/mindfulness-mindset-mental-health-live-online-event/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180122,'2025-06-28 01:17:39','/es','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(180123,'2025-06-28 01:17:39','/en','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(180124,'2025-06-28 01:18:18','/es/sitemap.html','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(180125,'2025-06-28 01:18:19','/api/sitemap','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(180126,'2025-06-28 01:18:19','/site_map_index.xml','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(180127,'2025-06-28 01:18:19','/site_map-index.xml','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(180128,'2025-06-28 01:18:20','/site_map.xml','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(180129,'2025-06-28 01:18:20','/site-map_index.xml','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(180130,'2025-06-28 01:18:20','/site-map-index.xml','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(180131,'2025-06-28 01:18:20','/site-map.xml','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(180132,'2025-06-28 01:18:21','/sitemap-index.xml','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(180133,'2025-06-28 01:21:10','/product-tag/webinar/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180134,'2025-06-28 01:23:04','/hes-a-stooge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180135,'2025-06-28 01:23:24','/adarshmedicalcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4855.112 Safari/537.36',NULL,404,'GET',NULL,''),(180136,'2025-06-28 01:31:08','/wwwtropmedresac-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5040.885 Safari/537.36',NULL,404,'GET',NULL,''),(180137,'2025-06-28 01:37:29','/prilosec-206-mg-dosage-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180138,'2025-06-28 01:44:39','/ironman-stcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3878.727 Safari/537.36',NULL,404,'GET',NULL,''),(180139,'2025-06-28 01:49:54','/k9healthycom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3234.968 Safari/537.36',NULL,404,'GET',NULL,''),(180140,'2025-06-28 01:51:40','/stop-stretching/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180141,'2025-06-28 01:52:51','/diclofenac-dispersible-tablets-50mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8222.609 Safari/537.36',NULL,404,'GET',NULL,''),(180142,'2025-06-28 02:01:59','/why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180143,'2025-06-28 02:04:10','/generics-pharmacy-philippines-list-of-medicines-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8081.269 Safari/537.36',NULL,404,'GET',NULL,''),(180144,'2025-06-28 02:10:02','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180145,'2025-06-28 02:14:35','/skinandlasertreatmentcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7324.278 Safari/537.36',NULL,404,'GET',NULL,''),(180146,'2025-06-28 02:39:06','/knee-biomechanics-part-7-the-bones-of-the-knee/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180147,'2025-06-28 02:40:56','/2016/06/09/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','https://biomechanicseducation.com/2016/06/09/',404,'GET',NULL,''),(180148,'2025-06-28 02:54:19','/project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180149,'2025-06-28 02:57:07','/can-permethrin-kill-scabies-eggs-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180150,'2025-06-28 03:02:10','/sunrisemedicaldealerscomau-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9070.354 Safari/537.36',NULL,404,'GET',NULL,''),(180151,'2025-06-28 04:08:35','/prescription-drugs-that-cause-ed-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180152,'2025-06-28 04:10:37','/ever-heard-of-occams-razor/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180153,'2025-06-28 04:23:46','/golf-biomechanics-workshops/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; TikTokSpider; ttspider-feedback@tiktok.com)',NULL,404,'GET',NULL,''),(180154,'2025-06-28 04:32:19','/famciclovir-famvir-side-effects-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9855.654 Safari/537.36',NULL,404,'GET',NULL,''),(180155,'2025-06-28 04:36:29','/weight-shift-piriformis-lots-of-dollars/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180156,'2025-06-28 04:39:04','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(180157,'2025-06-28 04:56:20','/great-discussions-egos-trolls-the-2-sides-of-social-media/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180158,'2025-06-28 04:58:19','/lifetimedentalhealthcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3736.727 Safari/537.36',NULL,404,'GET',NULL,''),(180159,'2025-06-28 05:00:29','/meta.json','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(180160,'2025-06-28 05:03:27','/tribulus-terrestris-tablets-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180161,'2025-06-28 05:08:33','/shoulder-biomechanics-part-5-the-bones-of-the-shoulder/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180162,'2025-06-28 05:20:56','/2016/05/09/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36 Edg/101.0.1210.47','https://biomechanicseducation.com/2016/05/09/',404,'GET',NULL,''),(180163,'2025-06-28 05:29:09','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180164,'2025-06-28 05:41:30','/can-clomid-help-you-get-pregnant-if-you-already-ovulate-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9428.516 Safari/537.36',NULL,404,'GET',NULL,''),(180165,'2025-06-28 05:45:05','/case-study-simon/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180166,'2025-06-28 05:56:12','/praziquantel-goodrx-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://clanad.endinahosting.com/index.php?file=Guestbook&p=33423',404,'GET',NULL,''),(180167,'2025-06-28 06:20:32','/priligy-fiyat-ne-kadar-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180168,'2025-06-28 06:29:11','/isotretinoin-gel-reviews-uk-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5193.447 Safari/537.36',NULL,404,'GET',NULL,''),(180169,'2025-06-28 06:29:37','/feminax-express-leaflet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180170,'2025-06-28 06:33:03','/knee-biomechanics-part-8-the-muscles-of-the-knee/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180171,'2025-06-28 06:39:16','/the-4-legs-of-life/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180172,'2025-06-28 06:48:50','/my-horrific-halloween-earwax-experience/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180173,'2025-06-28 06:58:57','/single-joint-vs-functional-assessments-a-personal-trainers-guide/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)',NULL,404,'GET',NULL,''),(180174,'2025-06-28 07:30:02','/can-being-fit-stop-you-being-healthy/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180175,'2025-06-28 07:36:21','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180176,'2025-06-28 07:39:59','/fat-shaming-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7896.886 Safari/537.36',NULL,404,'GET',NULL,''),(180177,'2025-06-28 07:47:48','/2023/12/20/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180178,'2025-06-28 07:48:50','/foot-biomechanics-part-9-the-bones-of-the-foot-ankle/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180179,'2025-06-28 07:51:29','/buy-maca-root-pills-online-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180180,'2025-06-28 07:51:33','/pumpkin-seed-oil-omega-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5275.254 Safari/537.36',NULL,404,'GET',NULL,''),(180181,'2025-06-28 07:52:02','/apo-clindamycin-150-mg-cap-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5851.371 Safari/537.36',NULL,404,'GET',NULL,''),(180182,'2025-06-28 07:53:56','/buy-effexor-xr-online-australia-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4073.941 Safari/537.36',NULL,404,'GET',NULL,''),(180183,'2025-06-28 08:02:39','/its-fatty-again','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','https://biomechanicseducation.com/its-fatty-again',404,'GET',NULL,''),(180184,'2025-06-28 08:03:55','/4-minutes-could-change-your-life-forever-breaking-bad-habits/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180185,'2025-06-28 08:06:48','/xenical-cap-120mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GoogleOther) Chrome/137.0.7151.103 Safari/537.36',NULL,404,'GET',NULL,''),(180186,'2025-06-28 08:11:31','/events/tmc16/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',NULL,404,'GET',NULL,''),(180187,'2025-06-28 08:13:20','/product/imovefreely-instructor-online-virtual-workshop/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',NULL,404,'GET',NULL,''),(180188,'2025-06-28 08:15:01','/product/deadlift-analysis-live-webinar-feb-23rd-12pm/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',NULL,404,'GET',NULL,''),(180189,'2025-06-28 08:16:11','/site/testimonials/biomechanics-coach-profiles/232-emma-westmacott-biomechanics-coach-october','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Barkrowler/0.9; +https://babbar.tech/crawler)',NULL,404,'GET',NULL,''),(180190,'2025-06-28 08:20:58','/methylcobalamin-rite-aid-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4153.305 Safari/537.36',NULL,404,'GET',NULL,''),(180191,'2025-06-28 08:38:47','/beef-aminos-vs-bcaa-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180192,'2025-06-28 08:47:11','/worthmedicinescom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180193,'2025-06-28 09:15:21','/online-order-deep-number-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5377.341 Safari/537.36',NULL,404,'GET',NULL,''),(180194,'2025-06-28 09:18:23','/refillwedgewoodpharmacycom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2833.493 Safari/537.36',NULL,404,'GET',NULL,''),(180195,'2025-06-28 09:22:35','/amlinhealthcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180196,'2025-06-28 09:22:41','/can-you-buy-finasteride-in-australia-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180197,'2025-06-28 09:22:47','/wellpharmcocn-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180198,'2025-06-28 09:22:59','/xzen-1200-gold-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180199,'2025-06-28 09:23:34','/proforce-leg-stretcher-for-sale-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4129.869 Safari/537.36',NULL,404,'GET',NULL,''),(180200,'2025-06-28 09:23:54','/top-20-generic-pharmaceutical-companies-2012-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6560.699 Safari/537.36',NULL,404,'GET',NULL,''),(180201,'2025-06-28 09:31:19','/product/introduction-to-the-foot-posture-index-online-cpd/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180202,'2025-06-28 09:32:19','/1333-2/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180203,'2025-06-28 09:39:00','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180204,'2025-06-28 09:44:19','/a-personal-trainers-guide-to-7-styles-of-lunge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180205,'2025-06-28 09:51:50','/12-simple-tips-for-feeling-happier-healthier-client-guide/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Safari/605.1.15',NULL,404,'GET',NULL,''),(180206,'2025-06-28 09:52:30','/product-category/prods/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180207,'2025-06-28 10:10:23','/acheter-viagra-au-canada-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180208,'2025-06-28 10:10:34','/revital-mens-side-effects-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180209,'2025-06-28 10:21:10','/cost-of-gynexin-capsules-bottle-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180210,'2025-06-28 10:31:39','/cipro-and-bactrim-at-the-same-time-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180211,'2025-06-28 10:35:18','/green-chef-meals-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3522.569 Safari/537.36',NULL,404,'GET',NULL,''),(180212,'2025-06-28 10:40:54','/2020/08/10/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','https://biomechanicseducation.com/2020/08/10/',404,'GET',NULL,''),(180213,'2025-06-28 10:51:32','/delprof2-profile-in-use-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5683.804 Safari/537.36',NULL,404,'GET',NULL,''),(180214,'2025-06-28 10:57:01','/personalhealthcombr-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180215,'2025-06-28 10:57:44','/libido-max-return-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180216,'2025-06-28 10:59:52','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180217,'2025-06-28 11:16:41','/buy-tretinoin-cream-usp-005-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8343.933 Safari/537.36',NULL,404,'GET',NULL,''),(180218,'2025-06-28 11:29:42','/becoming-a-biomechanics-coach-after-retiring-from-the-armed-forces/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(180219,'2025-06-28 11:30:36','/usersfiles/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180220,'2025-06-28 11:30:37','/sites/default/files/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180221,'2025-06-28 11:30:38','/upload/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180222,'2025-06-28 11:30:39','/index/function.php/img/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180223,'2025-06-28 11:30:39','/ALFA_DATA/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180224,'2025-06-28 11:30:41','/modules/mod_simplefileuploadv1.3/elements/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180225,'2025-06-28 11:30:44','/admin/controller/extension/extension/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180226,'2025-06-28 11:30:45','/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180227,'2025-06-28 11:30:45','/assets/images/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180228,'2025-06-28 11:30:46','/vendor/phpunit/phpunit/src/Util/PHP/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180229,'2025-06-28 11:30:47','/wp-includes/theme-compat/theme-compat/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180230,'2025-06-28 11:30:49','/templates/beez3/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180231,'2025-06-28 11:30:49','/admin/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180232,'2025-06-28 11:30:50','/.well-known/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180233,'2025-06-28 11:30:50','/plugins/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180234,'2025-06-28 11:30:52','/as/function','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180235,'2025-06-28 11:30:52','/.well-known/pki-validation/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180236,'2025-06-28 11:30:53','/wp-admin/meta/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180237,'2025-06-28 11:30:54','/up/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180238,'2025-06-28 11:30:55','/UserFiles/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180239,'2025-06-28 11:31:17','/live_env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180240,'2025-06-28 11:31:29','/phpinfo.php3','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180241,'2025-06-28 11:31:40','/wp-config.cache','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180242,'2025-06-28 11:31:41','/wp-config.dist','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180243,'2025-06-28 11:31:42','/root/infophp','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180244,'2025-06-28 11:31:42','/wp-config.php_old2014','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180245,'2025-06-28 11:31:50','/wp-config.php.2','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180246,'2025-06-28 11:31:51','/wp-config.php.8','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180247,'2025-06-28 11:31:51','/admin/config','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180248,'2025-06-28 11:31:52','/auth/bigquery','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180249,'2025-06-28 11:31:54','/api/shared/config/config.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180250,'2025-06-28 11:31:54','/wp-config.sublime-project','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180251,'2025-06-28 11:31:59','/wp-config.backup','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180252,'2025-06-28 11:32:06','/info','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180253,'2025-06-28 11:32:13','/wp-config.cust','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180254,'2025-06-28 11:32:21','/index.html','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180255,'2025-06-28 11:32:27','/bin','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180256,'2025-06-28 11:32:28','/wp-config.save','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180257,'2025-06-28 11:32:28','/wp-config.stage','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180258,'2025-06-28 11:32:29','/application.properties','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180259,'2025-06-28 11:32:30','/config/application.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180260,'2025-06-28 11:32:31','/app/config.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180261,'2025-06-28 11:32:32','/aws.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180262,'2025-06-28 11:32:32','/wp-config.php.staging','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180263,'2025-06-28 11:32:38','/api/v1/proxy','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180264,'2025-06-28 11:32:38','/src/main/resources/logback.xml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180265,'2025-06-28 11:32:39','/app.py','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180266,'2025-06-28 11:32:46','/main.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180267,'2025-06-28 11:32:47','/admin/proxy','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180268,'2025-06-28 11:32:47','/aws/credentials','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180269,'2025-06-28 11:32:54','/api/v2/proxy','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180270,'2025-06-28 11:32:55','/aws-secret.yaml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180271,'2025-06-28 11:32:55','/computeMetadata/v1','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180272,'2025-06-28 11:32:56','/backend/config/default.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180273,'2025-06-28 11:32:56','/testphpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180274,'2025-06-28 11:33:03','/app_dev.php/_profiler/phpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180275,'2025-06-28 11:33:04','/wp-config.old.old','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180276,'2025-06-28 11:33:05','/api/proxy','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180277,'2025-06-28 11:33:06','/my_env/chakaash.py','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180278,'2025-06-28 11:33:07','/debug/default/view','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180279,'2025-06-28 11:33:07','/wp-config.php.csproj','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180280,'2025-06-28 11:33:08','/wp-config.staging','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180281,'2025-06-28 11:33:08','/config/parameters.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180282,'2025-06-28 11:33:09','/app/config/parameters.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180283,'2025-06-28 11:33:11','/etc/apache2/mods-enabled/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180284,'2025-06-28 11:33:16','/api/objects/codes.php.save','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180285,'2025-06-28 11:33:16','/information','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180286,'2025-06-28 11:33:21','/bin/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180287,'2025-06-28 11:33:22','/phpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180288,'2025-06-28 11:33:27','/api/shared/config.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180289,'2025-06-28 11:33:27','/src/main/resources/application-dev.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180290,'2025-06-28 11:33:28','/admin/internal/api','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180291,'2025-06-28 11:33:29','/wp-config.phpd','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180292,'2025-06-28 11:33:29','/_profiler/phpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180293,'2025-06-28 11:33:41','/api/config/config.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180294,'2025-06-28 11:33:42','/latest/user-data','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180295,'2025-06-28 11:33:49','/wp-config.php.c','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180296,'2025-06-28 11:33:49','/configs/development.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180297,'2025-06-28 11:34:04','/wp-config.bak','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180298,'2025-06-28 11:34:05','/wp-config.swp','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180299,'2025-06-28 11:34:12','/google-cloud-sdk/lib/googlecloudsdk/gcloud.pyo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180300,'2025-06-28 11:34:13','/wp-config.php.sample','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180301,'2025-06-28 11:34:13','/wp-config.cfg','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180302,'2025-06-28 11:34:15','/api/config.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180303,'2025-06-28 11:34:15','/sendgrid.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180304,'2025-06-28 11:34:22','/backend/config/development.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180305,'2025-06-28 11:34:22','/env.development.local','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180306,'2025-06-28 11:34:23','/wp-config.b','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180307,'2025-06-28 11:34:24','/latest/meta-data','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180308,'2025-06-28 11:34:24','/php-info','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180309,'2025-06-28 11:34:25','/secrets.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180310,'2025-06-28 11:34:26','/wp-config.backup.txt','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180311,'2025-06-28 11:34:27','/latest/meta-data/iam/security-credentials/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180312,'2025-06-28 11:34:34','/wp-config.php-original','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180313,'2025-06-28 11:34:34','/admin/phpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180314,'2025-06-28 11:34:41','/wp-config','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180315,'2025-06-28 11:34:42','/my_env/palash.py','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180316,'2025-06-28 11:34:43','/wp-config.production','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180317,'2025-06-28 11:34:49','/wp-config.php_new','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180318,'2025-06-28 11:38:58','/commander-sildenafil-pf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180319,'2025-06-28 11:39:04','/peut-on-commander-d','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180320,'2025-06-28 11:39:09','/prix-cialis-pharmacie-sui','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180321,'2025-06-28 11:39:15','/prix-du-cialis-en-pharma','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180322,'2025-06-28 11:39:21','/prix-du-viagra-en-franc','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180323,'2025-06-28 11:39:27','/prix-du-viagra-en-pharm','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180324,'2025-06-28 11:46:03','/widepharmacombr-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180325,'2025-06-28 11:48:36','/celexa-costochondritis-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://emisoraurdimbre.org/index.php/component/k2/item/23-con-sisben-el-sitp-es-mas-barato/23-con-sisben-el-sitp-es-mas-barato?start=26550',404,'GET',NULL,''),(180326,'2025-06-28 11:50:48','/thuoc-methotrexate-25-mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6624.854 Safari/537.36',NULL,404,'GET',NULL,''),(180327,'2025-06-28 11:56:20','/testosterone-undecanoate-injection-fda-approval-2012-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5628.167 Safari/537.36',NULL,404,'GET',NULL,''),(180328,'2025-06-28 12:08:00','/steel-rod-band-schedule-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180329,'2025-06-28 12:11:06','/vitacost-ashwagandha-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6026.862 Safari/537.36',NULL,404,'GET',NULL,''),(180330,'2025-06-28 12:38:35','/pharmacy-practice-my-ce-online-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180331,'2025-06-28 12:44:27','/best-kamagra-supplier-uk-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6556.701 Safari/537.36',NULL,404,'GET',NULL,''),(180332,'2025-06-28 12:46:09','/cyx3-fat-burner-side-effects-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4965.464 Safari/537.36',NULL,404,'GET',NULL,''),(180333,'2025-06-28 13:15:19','/katamedir-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2845.173 Safari/537.36',NULL,404,'GET',NULL,''),(180334,'2025-06-28 13:25:44','/griseofulvin-webmd-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180335,'2025-06-28 13:35:50','/prozac-ohne-rezept-kaufen-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180336,'2025-06-28 13:36:03','/spark-naturals-essential-oils-reviews-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180337,'2025-06-28 13:38:58','/foundationhealthmedcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180338,'2025-06-28 13:45:51','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180339,'2025-06-28 13:51:56','/keeping-it-simple-with-8-things-to-remember/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(180340,'2025-06-28 13:51:56','/keeping-it-simple-with-8-things-to-remember/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(180341,'2025-06-28 14:12:47','/p57-hoodia-buy-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3468.393 Safari/537.36',NULL,404,'GET',NULL,''),(180342,'2025-06-28 14:18:12','/product/golf-biomechanics-workshop/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180343,'2025-06-28 14:18:20','/product/mindfulness-mindset-mental-health-live-online-event/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180344,'2025-06-28 14:18:26','/why-i-believe-best-selling-author-strength-guru-dan-john-was-wrong/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180345,'2025-06-28 14:24:08','/cheap-phd-pharma-whey-ht-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180346,'2025-06-28 14:25:32','/what-is-the-dosage-of-prilosec-for-dogs-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180347,'2025-06-28 14:26:24','/3c-pharmanet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180348,'2025-06-28 14:31:53','/pregnitude-for-endometriosis-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180349,'2025-06-28 14:41:24','/fematril-in-south-africa-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4525.284 Safari/537.36',NULL,404,'GET',NULL,''),(180350,'2025-06-28 14:59:03','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180351,'2025-06-28 15:12:36','/cheap-generic-viagra-fast-delivery-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180352,'2025-06-28 15:14:15','/griseofulvin-webmd-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180353,'2025-06-28 15:33:02','/product/iba-business-mentor-accountability-12-week-course/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(180354,'2025-06-28 15:33:36','/testo-xl-supplement-review-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180355,'2025-06-28 15:37:28','/para-que-sirve-metoprolol-50-mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180356,'2025-06-28 15:40:38','/precio-aciclovir-crema-generico-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6229.424 Safari/537.36',NULL,404,'GET',NULL,''),(180357,'2025-06-28 15:45:28','/admin/controller/extension/extension/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180358,'2025-06-28 15:45:28','/alfanew.PHP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180359,'2025-06-28 15:45:30','/admin.php1','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180360,'2025-06-28 15:45:31','/.well-known/pki-validation/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180361,'2025-06-28 15:45:32','/wp-content/plugins/wordfence/js/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180362,'2025-06-28 15:45:33','/config.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180363,'2025-06-28 15:45:35','/wp-content/uploads/2023/08/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180364,'2025-06-28 15:45:36','/randkeyword.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180365,'2025-06-28 15:45:38','/alfa-rexhp1.p','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180366,'2025-06-28 15:45:38','/1.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180367,'2025-06-28 15:45:41','/css/dmtixucz/golden-access/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180368,'2025-06-28 15:45:43','/gebase.php69','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180369,'2025-06-28 15:45:44','/wp-content/uploads/setup','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180370,'2025-06-28 15:45:45','/about.PHP','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180371,'2025-06-28 15:45:46','/alfa-rex.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180372,'2025-06-28 15:54:16','/do-we-need-to-massage-the-itb/embed/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.68 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','https://santabarbaradeeptissue.com/',404,'GET',NULL,''),(180373,'2025-06-28 15:54:17','/do-we-need-to-massage-the-itb/embed/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.68 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','https://santabarbaradeeptissue.com/',404,'GET',NULL,''),(180374,'2025-06-28 15:54:27','/do-we-need-to-massage-the-itb/embed/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.68 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','https://santabarbaradeeptissue.com/',404,'GET',NULL,''),(180375,'2025-06-28 15:54:29','/do-we-need-to-massage-the-itb/embed/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.68 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','https://santabarbaradeeptissue.com/',404,'GET',NULL,''),(180376,'2025-06-28 15:54:35','/do-we-need-to-massage-the-itb/embed/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.68 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','https://santabarbaradeeptissue.com/',404,'GET',NULL,''),(180377,'2025-06-28 16:00:33','/terbinafine-cream-rxlist-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180378,'2025-06-28 16:00:55','/formula-41-extreme-before-and-after-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180379,'2025-06-28 16:00:57','/product/weak-glutes-free-webinar/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180380,'2025-06-28 16:15:06','/its-fatty-again/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','https://biomechanicseducation.com/its-fatty-again/',404,'GET',NULL,''),(180381,'2025-06-28 16:19:21','/brain-peak-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4026.449 Safari/537.36',NULL,404,'GET',NULL,''),(180382,'2025-06-28 16:46:56','/a-pts-guide-to-sciatica/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180383,'2025-06-28 16:54:17','/dremedcom-email-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180384,'2025-06-28 16:56:23','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180385,'2025-06-28 17:10:34','/commander-sildenafil-pf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180386,'2025-06-28 17:10:40','/peut-on-commander-d','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180387,'2025-06-28 17:10:46','/prix-cialis-pharmacie-sui','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180388,'2025-06-28 17:10:52','/prix-du-cialis-en-pharma','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180389,'2025-06-28 17:10:57','/prix-du-viagra-en-franc','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180390,'2025-06-28 17:11:02','/prix-du-viagra-en-pharm','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180391,'2025-06-28 17:11:09','/meloxicam-same-as-metacam-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180392,'2025-06-28 17:11:24','/weight-shift-piriformis-lots-of-dollars/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180393,'2025-06-28 17:25:14','/spine-mobility-project/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180394,'2025-06-28 17:27:39','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180395,'2025-06-28 17:27:40','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(180396,'2025-06-28 17:35:57','/proargi-9-dosage-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2165.508 Safari/537.36',NULL,404,'GET',NULL,''),(180397,'2025-06-28 17:36:14','/product-tag/webinar/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180398,'2025-06-28 17:42:56','/kamagra-samen-met-xtc-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4956.470 Safari/537.36',NULL,404,'GET',NULL,''),(180399,'2025-06-28 17:48:03','/vinsanity-shred-ripped-in-90-days-reviews-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180400,'2025-06-28 17:49:35','/garcinia-rite-aid-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1985.844 Safari/537.36',NULL,404,'GET',NULL,''),(180401,'2025-06-28 17:51:47','/workshop/knee-foot-biomechanics-2/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,''),(180402,'2025-06-28 18:13:48','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Mobile Safari/537.36 EdgA/121.0.0.0',NULL,404,'GET',NULL,''),(180403,'2025-06-28 18:24:19','/can-you-get-pregnant-while-still-taking-clomid-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8484.702 Safari/537.36',NULL,404,'GET',NULL,''),(180404,'2025-06-28 18:37:08','/give-your-clients-an-excuse-to-stop-work/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180405,'2025-06-28 18:49:28','/are-biomechanics-coaches-becoming-gps/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.0; +https://openai.com/searchbot',NULL,404,'GET',NULL,''),(180406,'2025-06-28 18:59:10','/wp-content/uploads/media/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180407,'2025-06-28 18:59:10','/administrator/components/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180408,'2025-06-28 18:59:11','/components/com_media/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180409,'2025-06-28 18:59:11','/media/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180410,'2025-06-28 18:59:12','/media/upload/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180411,'2025-06-28 18:59:12','/images/stories/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180412,'2025-06-28 18:59:13','/tmp/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180413,'2025-06-28 18:59:13','/upload/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180414,'2025-06-28 18:59:14','/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180415,'2025-06-28 18:59:15','/upload/images/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180416,'2025-06-28 18:59:15','/content/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180417,'2025-06-28 18:59:16','/themes/default/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180418,'2025-06-28 18:59:16','/modules/mod_upload/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180419,'2025-06-28 18:59:16','/includes/upload/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180420,'2025-06-28 18:59:17','/webroot/upload/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180421,'2025-06-28 18:59:17','/public_html/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180422,'2025-06-28 18:59:18','/admin/upload/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180423,'2025-06-28 18:59:18','/admin/includes/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180424,'2025-06-28 18:59:19','/admin/assets/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180425,'2025-06-28 18:59:21','/wp-content/mu-plugins-old/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180426,'2025-06-28 18:59:22','/wp-content/themes/classic/inc/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180427,'2025-06-28 18:59:22','/wp-content/plugins/ninja-forms/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180428,'2025-06-28 18:59:23','/.well-known/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180429,'2025-06-28 18:59:23','/ALFA_DATA/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180430,'2025-06-28 18:59:24','/cgi-bin/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180431,'2025-06-28 18:59:24','/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180432,'2025-06-28 18:59:25','/upload/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180433,'2025-06-28 18:59:25','/admin/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180434,'2025-06-28 18:59:26','/Admin/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180435,'2025-06-28 18:59:26','/admin/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180436,'2025-06-28 18:59:28','/vendor/phpunit/phpunit/src/Util/PHP/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180437,'2025-06-28 18:59:29','/assets/images/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180438,'2025-06-28 18:59:29','/Public/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180439,'2025-06-28 18:59:30','/vendor/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180440,'2025-06-28 18:59:30','/local/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180441,'2025-06-28 18:59:31','/modules/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180442,'2025-06-28 18:59:31','/Site/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180443,'2025-06-28 18:59:32','/system/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180444,'2025-06-28 18:59:32','/template/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180445,'2025-06-28 18:59:33','/shop/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180446,'2025-06-28 18:59:33','/files/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180447,'2025-06-28 18:59:34','/admin/editor/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180448,'2025-06-28 18:59:34','/include/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180449,'2025-06-28 18:59:35','/Assets/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180450,'2025-06-28 18:59:35','/images/stories/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180451,'2025-06-28 18:59:36','/plugins/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180452,'2025-06-28 18:59:36','/php/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180453,'2025-06-28 18:59:37','/wp-includes/SimplePie/Cache/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180454,'2025-06-28 18:59:37','/wp-includes/SimplePie/Content/Type/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180455,'2025-06-28 18:59:38','/wp-includes/SimplePie/Content/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180456,'2025-06-28 18:59:38','/wp-includes/Requests/Cookie/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180457,'2025-06-28 18:59:39','/wp-includes/Requests/Proxy/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180458,'2025-06-28 18:59:39','/wp-includes/Requests/Response/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180459,'2025-06-28 18:59:40','/wp-includes/Requests/Transport/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180460,'2025-06-28 18:59:40','/wp-includes/Requests/Utility/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180461,'2025-06-28 18:59:41','/wp-includes/Requests/Exception/HTTP/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180462,'2025-06-28 18:59:42','/wp-includes/images/wlw/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180463,'2025-06-28 18:59:42','/wp-includes/Requests/Exception/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180464,'2025-06-28 18:59:43','/wp-includes/Requests/Auth/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180465,'2025-06-28 18:59:43','/wp-includes/Text/Diff/Engine/Engine/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180466,'2025-06-28 18:59:44','/wp-includes/random_compat/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180467,'2025-06-28 18:59:44','/admin/images/slider/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180468,'2025-06-28 18:59:45','/admin/fckeditor/editor/filemanager/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180469,'2025-06-28 18:59:45','/sites/default/files/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180470,'2025-06-28 18:59:46','/admin/controller/extension/extension/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180471,'2025-06-28 18:59:46','/modules/mod_simplefileuploadv1.3/elements/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180472,'2025-06-28 18:59:47','/components/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180473,'2025-06-28 18:59:47','/admin/uploads/images/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180474,'2025-06-28 18:59:48','/wp-admin/meta/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180475,'2025-06-28 18:59:52','/alfa-rex.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180476,'2025-06-28 18:59:53','/alfanew.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180477,'2025-06-28 18:59:54','/config.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180478,'2025-06-28 19:05:02','/do-we-need-to-massage-the-itb/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(180479,'2025-06-28 19:25:58','/magna-rx-greenhills-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5250.914 Safari/537.36',NULL,404,'GET',NULL,''),(180480,'2025-06-28 19:26:55','/healthynewmomsorg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180481,'2025-06-28 19:40:52','/index.html','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180482,'2025-06-28 19:48:59','/abruzi.php4','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(180483,'2025-06-28 19:49:24','/wp-includes/SimplePie/Nglish.ph','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(180484,'2025-06-28 19:50:31','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180485,'2025-06-28 19:53:16','/venlafaxine-xr-75-mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7684.695 Safari/537.36',NULL,404,'GET',NULL,''),(180486,'2025-06-28 20:08:23','/buy-ciprofloxacin-in-india-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2019.212 Safari/537.36',NULL,404,'GET',NULL,''),(180487,'2025-06-28 20:09:23','/comprar-arimidex-espaa-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7294.215 Safari/537.36',NULL,404,'GET',NULL,''),(180488,'2025-06-28 20:14:17','/drugstorecom-discount-promo-code-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180489,'2025-06-28 20:37:05','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,404,'GET',NULL,''),(180490,'2025-06-28 20:37:09','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(180491,'2025-06-28 20:37:13','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(180492,'2025-06-28 20:41:15','/thank-you-diploma/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180493,'2025-06-28 20:43:05','/roundcubemail/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36',NULL,404,'GET',NULL,''),(180494,'2025-06-28 20:47:42','/2016/07/12/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,''),(180495,'2025-06-28 20:53:14','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180496,'2025-06-28 20:53:31','/redustat-orlistat-60-mg-funciona-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180497,'2025-06-28 20:55:48','/…60-mg-','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180498,'2025-06-28 21:11:30','/generico-de-viagra-femenino-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180499,'2025-06-28 21:11:57','/thank-you-diploma/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180500,'2025-06-28 21:16:04','/precio-viagra-50-mg-pfizer-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1469.974 Safari/537.36',NULL,404,'GET',NULL,''),(180501,'2025-06-28 21:24:45','/imovefreely/sites/all/libraries/elfinder/elfinder.html','https://biomechanicseducation.com','ALittle Client',NULL,404,'GET',NULL,''),(180502,'2025-06-28 21:26:15','/_profiler/phpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180503,'2025-06-28 21:26:16','/admin/config','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180504,'2025-06-28 21:26:17','/admin/config?cmd=cat /root/.aws/credentials','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180505,'2025-06-28 21:26:18','/api/config/config.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180506,'2025-06-28 21:26:18','/api/config.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180507,'2025-06-28 21:26:19','/api/objects/codes.php.save','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180508,'2025-06-28 21:26:19','/api/shared/config.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180509,'2025-06-28 21:26:20','/api/shared/config/config.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180510,'2025-06-28 21:26:20','/app/config/parameters.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180511,'2025-06-28 21:26:21','/app_dev.php/_profiler/phpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180512,'2025-06-28 21:26:21','/appsettings.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180513,'2025-06-28 21:26:22','/application.properties','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180514,'2025-06-28 21:26:22','/aws-secret.yaml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180515,'2025-06-28 21:26:23','/aws.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180516,'2025-06-28 21:26:23','/aws/credentials','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180517,'2025-06-28 21:26:24','/backend/config/default.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180518,'2025-06-28 21:26:24','/backend/config/development.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180519,'2025-06-28 21:26:25','/backend/config/settings.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180520,'2025-06-28 21:26:25','/blog.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180521,'2025-06-28 21:26:26','/config/application.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180522,'2025-06-28 21:26:26','/config/aws.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180523,'2025-06-28 21:26:27','/config/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180524,'2025-06-28 21:26:27','/config/env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180525,'2025-06-28 21:26:28','/config/local.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180526,'2025-06-28 21:26:28','/config/parameters.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180527,'2025-06-28 21:26:29','/config/secrets.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180528,'2025-06-28 21:26:29','/config/settings.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180529,'2025-06-28 21:26:30','/config/settings.local','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180530,'2025-06-28 21:26:30','/config/settings.prod','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180531,'2025-06-28 21:26:31','/config/storage.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180532,'2025-06-28 21:26:31','/config.yaml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180533,'2025-06-28 21:26:32','/config.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180534,'2025-06-28 21:26:32','/debug/default/view','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180535,'2025-06-28 21:26:33','/env.backup','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180536,'2025-06-28 21:26:33','/getcpuutil.php-bakworking','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180537,'2025-06-28 21:26:34','/index.html','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180538,'2025-06-28 21:26:34','/karma.conf.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180539,'2025-06-28 21:26:35','/main.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180540,'2025-06-28 21:26:35','/my_env/chakaash.py','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180541,'2025-06-28 21:26:36','/my_env/newsletter.py','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180542,'2025-06-28 21:26:36','/my_env/palash.py','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180543,'2025-06-28 21:26:37','/phpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180544,'2025-06-28 21:26:37','/server-info','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180545,'2025-06-28 21:26:38','/service/email_service.py','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180546,'2025-06-28 21:26:38','/settings.py','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180547,'2025-06-28 21:26:39','/sms.py','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180548,'2025-06-28 21:26:39','/swagger.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180549,'2025-06-28 21:26:40','/wp-config','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180550,'2025-06-28 21:26:40','/wp-config.php.bak','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180551,'2025-06-28 21:26:41','/config.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180552,'2025-06-28 21:26:42','/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180553,'2025-06-28 21:26:42','/app.py','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180554,'2025-06-28 21:26:42','/configs/s3_config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180555,'2025-06-28 21:31:32','/prilosec-206-mg-dosage-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180556,'2025-06-28 21:38:49','/commander-sildenafil-pf…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180557,'2025-06-28 21:38:54','/peut-on-commander-d…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180558,'2025-06-28 21:38:59','/prix-cialis-pharmacie-sui…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180559,'2025-06-28 21:39:07','/prix-du-cialis-en-pharma…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180560,'2025-06-28 21:39:13','/prix-du-viagra-en-franc…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180561,'2025-06-28 21:39:19','/prix-du-viagra-en-pharm…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180562,'2025-06-28 21:47:33','/wordpress','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180563,'2025-06-28 21:47:35','/wp','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180564,'2025-06-28 21:47:37','/new','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180565,'2025-06-28 21:47:38','/old','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180566,'2025-06-28 21:47:39','/newsite','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180567,'2025-06-28 21:47:41','/main','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180568,'2025-06-28 21:47:42','/prod','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180569,'2025-06-28 21:47:43','/dev','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180570,'2025-06-28 21:47:44','/backup','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180571,'2025-06-28 21:47:44','/protal','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180572,'2025-06-28 21:47:47','/staging','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180573,'2025-06-28 21:47:47','/testing','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180574,'2025-06-28 21:47:49','/admin','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180575,'2025-06-28 21:55:10','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180576,'2025-06-28 21:59:41','/apo-omeprazole-20-mg-capsule-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180577,'2025-06-28 22:38:08','/2018/01/02/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180578,'2025-06-28 22:43:33','/primaviera-deluxe-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180579,'2025-06-28 22:53:35','/meta.json','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(180580,'2025-06-28 23:07:00','/muira-puama-bark-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180581,'2025-06-28 23:12:07','/case-study-elite-lifter-laura-hewitt/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; TikTokSpider; ttspider-feedback@tiktok.com)',NULL,404,'GET',NULL,''),(180582,'2025-06-28 23:20:02','/prilosec-206-mg-dosage-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180583,'2025-06-28 23:29:48','/prohealthcarehousecom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180584,'2025-06-28 23:30:45','/gh-advanced-plus-side-effects-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1814.278 Safari/537.36',NULL,404,'GET',NULL,''),(180585,'2025-06-28 23:31:59','/my-secret-revealed-how-menopause-has-affected-me/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(180586,'2025-06-28 23:32:46','/2018/09/10/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,''),(180587,'2025-06-28 23:39:52','/jamaican-stone-enhancer-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4111.726 Safari/537.36',NULL,404,'GET',NULL,''),(180588,'2025-06-28 23:45:12','/the-weak-core-myth-core-progressions-that-all-personal-trainers-should-know/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180589,'2025-06-28 23:46:35','/mark-blower-is-biomechanics-coach-of-the-month-july/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(180590,'2025-06-28 23:49:02','/product-category/prods/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180591,'2025-06-28 23:53:52','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180592,'2025-06-28 23:57:40','/foot-biomechanics-part-9-the-bones-of-the-foot-ankle/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180593,'2025-06-29 00:14:09','/1333-2/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180594,'2025-06-29 00:15:16','/propecia-canada-class-action-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180595,'2025-06-29 00:15:24','/proxeed-granule-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180596,'2025-06-29 00:16:00','/legalsteroidreviewercom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180597,'2025-06-29 00:20:24','/wordpress','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/wordpress',404,'HEAD',NULL,''),(180598,'2025-06-29 00:20:24','/wp','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/wp',404,'HEAD',NULL,''),(180599,'2025-06-29 00:20:25','/bc','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/bc',404,'HEAD',NULL,''),(180600,'2025-06-29 00:20:26','/bk','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/bk',404,'HEAD',NULL,''),(180601,'2025-06-29 00:20:26','/backup','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/backup',404,'HEAD',NULL,''),(180602,'2025-06-29 00:40:10','/acetaminophen-ibuprofen-dose-chart-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180603,'2025-06-29 00:46:42','/the-ripple-effect-how-1-action-can-impact-hundreds-of-others/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180604,'2025-06-29 00:56:49','/true-mass-1200-vs-carnivor-mass-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180605,'2025-06-29 00:58:48','/best-all-day-drugstore-foundation-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180606,'2025-06-29 01:01:03','/arginmax-or-staminol-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3107.281 Safari/537.36',NULL,404,'GET',NULL,''),(180607,'2025-06-29 01:10:02','/spine-mobility-project/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,''),(180608,'2025-06-29 01:15:46','/intrinsic-biomechanics-for-personal-trainers/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180609,'2025-06-29 01:24:11','/2017/05/03/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180610,'2025-06-29 01:32:39','/site/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; BLEXBot/1.0; +https://help.seranking.com/en/blex-crawler)',NULL,404,'GET',NULL,''),(180611,'2025-06-29 01:32:42','/my-horrific-halloween-earwax-experience/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180612,'2025-06-29 01:36:17','/intrinsic-biomechanics-association/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; BLEXBot/1.0; +https://help.seranking.com/en/blex-crawler)',NULL,404,'GET',NULL,''),(180613,'2025-06-29 01:36:30','/fluconazole-150-mg-bestellen-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6208.175 Safari/537.36',NULL,404,'GET',NULL,''),(180614,'2025-06-29 01:37:37','/erexaneri-erger-anelup-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GoogleOther) Chrome/137.0.7151.103 Safari/537.36',NULL,404,'GET',NULL,''),(180615,'2025-06-29 01:41:26','/2023/06/28/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180616,'2025-06-29 01:49:15','/libraryoumedicinecom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180617,'2025-06-29 01:53:15','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180618,'2025-06-29 01:55:04','/force-factor-fuego-pre-workout-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180619,'2025-06-29 02:12:27','/bgi-insurance-benefits/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180620,'2025-06-29 02:18:30','/product/fundamental-principles-of-movement-analysis/?add-to-cart=31460','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; TikTokSpider; ttspider-feedback@tiktok.com)',NULL,404,'GET',NULL,''),(180621,'2025-06-29 02:29:21','/product/mindfulness-mindset-mental-health-live-online-event/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180622,'2025-06-29 02:34:48','/aciclovir-comprimido-yahoo-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7024.925 Safari/537.36',NULL,404,'GET',NULL,''),(180623,'2025-06-29 02:36:53','/does-olanzapine-make-you-dumb-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180624,'2025-06-29 02:50:08','/the-cossack-movement-analysis-made-simple/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180625,'2025-06-29 02:58:39','/shoulder-biomechanics-part-5-the-bones-of-the-shoulder/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180626,'2025-06-29 03:03:53','/clotrimazole-10mg-cream-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8150.869 Safari/537.36',NULL,404,'GET',NULL,''),(180627,'2025-06-29 03:08:27','/elimite-yahoo-answers-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5112.529 Safari/537.36',NULL,404,'GET',NULL,''),(180628,'2025-06-29 03:13:29','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180629,'2025-06-29 03:21:12','/assumptions/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180630,'2025-06-29 03:26:14','/a-personal-trainers-guide-to-7-styles-of-lunge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180631,'2025-06-29 03:33:49','/stop-stretching/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180632,'2025-06-29 03:39:28','/product-tag/sciatic/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180633,'2025-06-29 03:42:14','/product/introduction-to-the-foot-posture-index-online-cpd/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180634,'2025-06-29 03:59:22','/climaxagen-in-india-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6824.567 Safari/537.36',NULL,404,'GET',NULL,''),(180635,'2025-06-29 04:05:06','/supplementpkcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5171.702 Safari/537.36',NULL,404,'GET',NULL,''),(180636,'2025-06-29 04:13:42','/edmontonsciaticatreatmentcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180637,'2025-06-29 04:18:51','/project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180638,'2025-06-29 04:22:38','/methotrexate-dosage-reactive-arthritis-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180639,'2025-06-29 04:32:03','/the-deadlift-which-variation-is-right-for-you/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180640,'2025-06-29 04:37:46','/knee-biomechanics-part-7-the-bones-of-the-knee/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180641,'2025-06-29 04:40:55','/ever-heard-of-occams-razor/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180642,'2025-06-29 04:42:41','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180643,'2025-06-29 04:52:57','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180644,'2025-06-29 04:55:54','/depo-medrol-cvs-meme-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6780.214 Safari/537.36',NULL,404,'GET',NULL,''),(180645,'2025-06-29 05:00:13','/androxyde-flashtool-09232-download-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4093.727 Safari/537.36',NULL,404,'GET',NULL,''),(180646,'2025-06-29 05:02:21','/2023/12/20/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180647,'2025-06-29 05:07:17','/how-many-days-do-you-take-cipro-for-uti-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GoogleOther) Chrome/137.0.7151.103 Safari/537.36',NULL,404,'GET',NULL,''),(180648,'2025-06-29 05:28:23','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180649,'2025-06-29 05:28:23','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180650,'2025-06-29 05:28:23','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180651,'2025-06-29 05:28:24','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180652,'2025-06-29 05:39:25','/levitra-discount-prices-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8675.994 Safari/537.36',NULL,404,'GET',NULL,''),(180653,'2025-06-29 05:43:56','/cannabinoid-hyperemesis-syndrome-icd-10-code-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6446.833 Safari/537.36',NULL,404,'GET',NULL,''),(180654,'2025-06-29 05:53:36','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180655,'2025-06-29 05:53:37','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180656,'2025-06-29 05:53:37','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180657,'2025-06-29 05:53:37','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180658,'2025-06-29 06:06:10','/buff-bake-flavor-reviews-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3022.167 Safari/537.36',NULL,404,'GET',NULL,''),(180659,'2025-06-29 06:24:40','/omeprazole-pediatric-dose-medscape-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180660,'2025-06-29 06:31:08','/knee-biomechanics-part-8-the-muscles-of-the-knee/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180661,'2025-06-29 06:36:25','/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(180662,'2025-06-29 06:37:23','/bestpharmacyinstituteorg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GoogleOther) Chrome/137.0.7151.103 Safari/537.36',NULL,404,'GET',NULL,''),(180663,'2025-06-29 06:39:24','/a-pts-guide-to-sciatica/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180664,'2025-06-29 06:53:07','/wp-admin/js/about.php7','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36Team Anon Force',NULL,404,'GET',NULL,''),(180665,'2025-06-29 06:54:00','/magna-rx-orjinal-sorgulama-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6214.171 Safari/537.36',NULL,404,'GET',NULL,''),(180666,'2025-06-29 06:55:51','/the-cadaver-experience/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1386.801 Safari/537.36',NULL,404,'GET',NULL,''),(180667,'2025-06-29 07:07:41','/wordpress','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180668,'2025-06-29 07:07:43','/wp','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180669,'2025-06-29 07:07:45','/new','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180670,'2025-06-29 07:07:47','/old','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180671,'2025-06-29 07:07:53','/old','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180672,'2025-06-29 07:08:02','/old','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180673,'2025-06-29 07:08:18','/main','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180674,'2025-06-29 07:08:21','/testing','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180675,'2025-06-29 07:16:01','/hes-a-stooge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180676,'2025-06-29 07:19:26','/can-being-fit-stop-you-being-healthy/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180677,'2025-06-29 07:26:10','/ashwagandha-capsules-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3250.828 Safari/537.36',NULL,404,'GET',NULL,''),(180678,'2025-06-29 07:26:37','/gold-leaf-nutritionalsreturns-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4142.773 Safari/537.36',NULL,404,'GET',NULL,''),(180679,'2025-06-29 07:31:56','/comprar-levitra-sin-receta-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9938.156 Safari/537.36',NULL,404,'GET',NULL,''),(180680,'2025-06-29 07:48:52','/the-4-legs-of-life/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180681,'2025-06-29 07:49:00','/pharma-choicecom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9327.934 Safari/537.36',NULL,404,'GET',NULL,''),(180682,'2025-06-29 07:57:40','/cleocin-solution-package-insert-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5418.356 Safari/537.36',NULL,404,'GET',NULL,''),(180683,'2025-06-29 07:59:04','/single-joint-vs-functional-assessments-a-personal-trainers-guide/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)',NULL,404,'GET',NULL,''),(180684,'2025-06-29 08:01:23','/pristiq-200-mg-dosage-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7041.716 Safari/537.36',NULL,404,'GET',NULL,''),(180685,'2025-06-29 08:04:45','/buy-finasteride-1mg-uk-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8321.241 Safari/537.36',NULL,404,'GET',NULL,''),(180686,'2025-06-29 08:11:03','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(180687,'2025-06-29 08:13:10','/omeprazole-pediatric-dose-medscape-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180688,'2025-06-29 08:15:49','/precio-lipitor-10-mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180689,'2025-06-29 08:20:10','/dare-to-dream-the-next-steps-in-the-biomechanics-education-story-the-academy/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','https://www.biomechanicseducation.com/intrinsic-biomechanics-coaching-strength-conditioning-the-ultimate-combination/',404,'GET',NULL,''),(180690,'2025-06-29 08:22:46','/tretinoin-micro-004-gel-pump-50gm-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2766.253 Safari/537.36',NULL,404,'GET',NULL,''),(180691,'2025-06-29 08:27:30','/medi-pharmpl-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5314.828 Safari/537.36',NULL,404,'GET',NULL,''),(180692,'2025-06-29 08:29:10','/viagrailacnet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180693,'2025-06-29 08:30:39','/sildenafil-viagra-works-by-quizlet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180694,'2025-06-29 08:30:43','/viagra-online-pharmacy-europe-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180695,'2025-06-29 08:32:28','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(180696,'2025-06-29 08:35:26','/dapoxetine-waldinger-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5119.115 Safari/537.36',NULL,404,'GET',NULL,''),(180697,'2025-06-29 08:43:14','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180698,'2025-06-29 08:54:07','/case-study-simon/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180699,'2025-06-29 08:57:18','/safetyandhealthltdcouk-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5876.943 Safari/537.36',NULL,404,'GET',NULL,''),(180700,'2025-06-29 09:01:29','/metoprolol-tartrate-50-mg-uses-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3061.423 Safari/537.36',NULL,404,'GET',NULL,''),(180701,'2025-06-29 09:18:01','/2016/11/14/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180702,'2025-06-29 09:30:46','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; ev-crawler/1.0; +https://headline.com/legal/crawler)',NULL,404,'GET',NULL,''),(180703,'2025-06-29 09:38:34','/prejudice-in-the-fitness-industry-lessons-from-jane-elliott/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://biomechanicseducation.com/prejudice-in-the-fitness-industry-lessons-from-jane-elliott/',404,'GET',NULL,''),(180704,'2025-06-29 09:41:20','/the-squat-part-1/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180705,'2025-06-29 09:44:21','/cialis-counterfeit-drugs-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180706,'2025-06-29 09:44:31','/product-tag/sumo/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180707,'2025-06-29 09:49:19','/10-minute-squat-test/?fbclid=PAAabmFGVzvSk4v4YhuDeHTU_KQ-_lNSj4IuUBGfuVwtjc6T5IyfsjQ-6MqLs_aem_AYjwle35jS_kb7Z5mHXBHcUXzSE412z32uuo7WqhO6WX4dWqxOvLvpycrH0XRci_2AM','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(180708,'2025-06-29 09:50:11','/shell=Dead','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,''),(180709,'2025-06-29 09:50:12','/shell=Dead','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,''),(180710,'2025-06-29 09:54:32','/4-minutes-could-change-your-life-forever-breaking-bad-habits/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180711,'2025-06-29 09:54:58','/levitra-20mg-uk-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2262.176 Safari/537.36',NULL,404,'GET',NULL,''),(180712,'2025-06-29 10:01:09','/brawn-nutrition-sarm-rad-opinie-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9004.399 Safari/537.36',NULL,404,'GET',NULL,''),(180713,'2025-06-29 10:02:56','/universal-jak39s-animal-stak-pak-review-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7140.343 Safari/537.36',NULL,404,'GET',NULL,''),(180714,'2025-06-29 10:04:40','/tribulus-terrestris-tablets-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180715,'2025-06-29 10:10:03','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180716,'2025-06-29 10:13:47','/wp-admin/js/about.php7','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36Team Anon Force',NULL,404,'GET',NULL,''),(180717,'2025-06-29 10:13:59','/quetiapine-25mg-tab-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180718,'2025-06-29 10:19:48','/segelininecom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180719,'2025-06-29 10:22:12','/champix-cena-na-recept-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4113.383 Safari/537.36',NULL,404,'GET',NULL,''),(180720,'2025-06-29 10:25:48','/prescription-drugs-that-cause-ed-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180721,'2025-06-29 10:42:27','/venegra-uk-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180722,'2025-06-29 10:45:00','/why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180723,'2025-06-29 10:52:54','/minoxidil-precio-mexico-df-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180724,'2025-06-29 11:07:29','/magna-rx-greenhills-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GoogleOther) Chrome/137.0.7151.103 Safari/537.36',NULL,404,'GET',NULL,''),(180725,'2025-06-29 11:08:59','/great-discussions-egos-trolls-the-2-sides-of-social-media/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180726,'2025-06-29 11:14:15','/boldenona-ciclo-efeitos-colaterais-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180727,'2025-06-29 11:14:21','/cheap-siagra-uk-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180728,'2025-06-29 11:14:27','/fluticasone-nasal-spray-pregnancy-class-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180729,'2025-06-29 11:14:35','/proti-farm-holding-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180730,'2025-06-29 11:29:20','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180731,'2025-06-29 11:29:21','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180732,'2025-06-29 11:29:21','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180733,'2025-06-29 11:29:21','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180734,'2025-06-29 11:40:54','/aciclovir-tabletten-online-bestellen-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3577.706 Safari/537.36',NULL,404,'GET',NULL,''),(180735,'2025-06-29 11:44:34','/mail-order-pharmacy-policy-procedures-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180736,'2025-06-29 11:46:11','/.well-known/assetlinks.json','https://biomechanicseducation.com','GoogleAssociationService',NULL,404,'GET',NULL,''),(180737,'2025-06-29 11:46:39','/glycomet-250-mg-tablet-uses-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2733.586 Safari/537.36',NULL,404,'GET',NULL,''),(180738,'2025-06-29 11:55:10','/rbbgearcom-scammer-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8309.123 Safari/537.36',NULL,404,'GET',NULL,''),(180739,'2025-06-29 12:01:51','/cognifocus-definition-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180740,'2025-06-29 12:07:16','/product-tag/muscle/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,''),(180741,'2025-06-29 12:12:01','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180742,'2025-06-29 12:55:18','/cardura-1-mg-cena-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5440.127 Safari/537.36',NULL,404,'GET',NULL,''),(180743,'2025-06-29 13:22:31','/fildenasnet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8572.286 Safari/537.36',NULL,404,'GET',NULL,''),(180744,'2025-06-29 13:47:37','/_profiler/phpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180745,'2025-06-29 13:47:37','/phpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180746,'2025-06-29 13:47:38','/info','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180747,'2025-06-29 13:49:27','/prostate-5lx-order-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180748,'2025-06-29 13:49:42','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180749,'2025-06-29 13:54:47','/fentanyl-patch-12-mcg-per-hour-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8328.148 Safari/537.36',NULL,404,'GET',NULL,''),(180750,'2025-06-29 14:06:15','/prime-nutrition-pwo-max-review-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1358.335 Safari/537.36',NULL,404,'GET',NULL,''),(180751,'2025-06-29 14:07:25','/what-does-vitrix-do-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5705.826 Safari/537.36',NULL,404,'GET',NULL,''),(180752,'2025-06-29 14:11:40','/intrinsa-patches-manufacturer-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5778.254 Safari/537.36',NULL,404,'GET',NULL,''),(180753,'2025-06-29 14:13:28','/100-beef-aminos-results-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,''),(180754,'2025-06-29 14:19:46','/you-just-never-know/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','https://biomechanicseducation.com/you-just-never-know/',404,'GET',NULL,''),(180755,'2025-06-29 14:46:00','/assumptions/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180756,'2025-06-29 14:47:06','/my-horrific-halloween-earwax-experience/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180757,'2025-06-29 14:48:55','/healthcostresearchcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8241.931 Safari/537.36',NULL,404,'GET',NULL,''),(180758,'2025-06-29 14:51:06','/propecia-tablets-australia-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1788.335 Safari/537.36',NULL,404,'GET',NULL,''),(180759,'2025-06-29 14:57:55','/the-weak-core-myth-core-progressions-that-all-personal-trainers-should-know/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180760,'2025-06-29 14:59:12','/desi-viagra-price-in-india-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7757.570 Safari/537.36',NULL,404,'GET',NULL,''),(180761,'2025-06-29 15:00:09','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180762,'2025-06-29 15:10:11','/bgi-insurance-benefits/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180763,'2025-06-29 15:21:15','/the-cossack-movement-analysis-made-simple/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180764,'2025-06-29 15:32:57','/my-account/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(180765,'2025-06-29 15:37:43','/?page_id=19915','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(180766,'2025-06-29 15:37:49','/events/tmc16/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; BLEXBot/1.0; +https://help.seranking.com/en/blex-crawler)',NULL,404,'GET',NULL,''),(180767,'2025-06-29 15:40:30','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; BLEXBot/1.0; +https://help.seranking.com/en/blex-crawler)',NULL,404,'GET',NULL,''),(180768,'2025-06-29 15:45:31','/want-to-learn-how-to-manage-time/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(180769,'2025-06-29 15:45:31','/want-to-learn-how-to-manage-time/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(180770,'2025-06-29 15:51:30','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180771,'2025-06-29 15:51:30','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180772,'2025-06-29 15:51:31','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180773,'2025-06-29 15:51:31','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180774,'2025-06-29 16:09:10','/calendar/action~oneday/exact_date~14-6-2020/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36','https://biomechanicseducation.com/calendar/action~oneday/exact_date~14-6-2020/',404,'GET',NULL,''),(180775,'2025-06-29 16:09:38','/whats-stronger-omeprazole-or-lansoprazole-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,''),(180776,'2025-06-29 16:10:06','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180777,'2025-06-29 16:40:09','/alfa-rex.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180778,'2025-06-29 16:40:10','/wp-admin/js/widgets/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180779,'2025-06-29 16:40:10','/wp-p.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180780,'2025-06-29 16:40:11','/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180781,'2025-06-29 16:40:12','/alfanew.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180782,'2025-06-29 16:40:12','/adminfuns.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180783,'2025-06-29 16:40:13','/ebs.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180784,'2025-06-29 16:40:13','/ws.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180785,'2025-06-29 16:40:14','/alfanew2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180786,'2025-06-29 16:40:14','/alfa-rex2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180787,'2025-06-29 16:42:51','/knee-biomechanics-part-7-the-bones-of-the-knee/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180788,'2025-06-29 16:50:57','/organic-maca-root-for-sale-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6590.306 Safari/537.36',NULL,404,'GET',NULL,''),(180789,'2025-06-29 16:55:37','/?author=2','https://biomechanicseducation.com','Mozilla/5.0',NULL,404,'GET',NULL,''),(180790,'2025-06-29 17:14:43','/para-que-sirve-metoprolol-50-mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180791,'2025-06-29 17:16:09','/grit-vs-talent-which-will-more-likely-result-in-achievement/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180792,'2025-06-29 17:17:29','/revatio-france-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8634.692 Safari/537.36',NULL,404,'GET',NULL,''),(180793,'2025-06-29 17:21:59','/meloxicam-same-as-metacam-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180794,'2025-06-29 17:34:09','/the-squat-part-1/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180795,'2025-06-29 17:42:30','/foot-biomechanics-part-9-the-bones-of-the-foot-ankle/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180796,'2025-06-29 18:01:30','/are-you-normalised','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36 Edg/101.0.1210.47','https://biomechanicseducation.com/are-you-normalised',404,'GET',NULL,''),(180797,'2025-06-29 18:02:19','/ever-heard-of-occams-razor/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180798,'2025-06-29 18:10:55','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180799,'2025-06-29 18:22:37','/can-being-fit-stop-you-being-healthy/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180800,'2025-06-29 18:24:55','/isatori-l-carnitine-ls3-side-effects-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2135.440 Safari/537.36',NULL,404,'GET',NULL,''),(180801,'2025-06-29 18:25:11','/feminax-express-leaflet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180802,'2025-06-29 18:35:32','/spine-mobility-project/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180803,'2025-06-29 18:42:37','/product/weak-glutes-free-webinar/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180804,'2025-06-29 18:50:16','/config/config.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180805,'2025-06-29 18:50:16','/aws/credentials','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180806,'2025-06-29 18:50:17','/config/aws.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180807,'2025-06-29 18:50:17','/config/aws.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180808,'2025-06-29 18:50:18','/docker-compose.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180809,'2025-06-29 18:50:18','/docker-compose.override.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180810,'2025-06-29 18:50:19','/docker-compose.prod.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180811,'2025-06-29 18:50:19','/docker-compose.dev.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180812,'2025-06-29 18:50:20','/config/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180813,'2025-06-29 18:50:20','/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180814,'2025-06-29 18:50:21','/config.yaml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180815,'2025-06-29 18:50:21','/config.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180816,'2025-06-29 18:50:22','/secrets.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180817,'2025-06-29 18:50:22','/secrets.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180818,'2025-06-29 18:50:23','/credentials.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180819,'2025-06-29 18:50:24','/backup.zip','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180820,'2025-06-29 18:50:24','/db.sql','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180821,'2025-06-29 18:50:25','/dump.sql','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180822,'2025-06-29 18:50:26','/database.sql','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180823,'2025-06-29 19:00:55','/2023/06/28/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180824,'2025-06-29 19:02:34','/4-minutes-could-change-your-life-forever-breaking-bad-habits/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180825,'2025-06-29 19:07:01','/magna-rx-greenhills-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GoogleOther) Chrome/137.0.7151.103 Safari/537.36',NULL,404,'GET',NULL,''),(180826,'2025-06-29 19:08:59','/fertilitypharmacyca-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8798.975 Safari/537.36',NULL,404,'GET',NULL,''),(180827,'2025-06-29 19:09:31','/meloxicam-precio-espaa-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7943.913 Safari/537.36',NULL,404,'GET',NULL,''),(180828,'2025-06-29 19:32:12','/sendgrid.env','https://biomechanicseducation.com','Mozilla/5.0 (X11; U; Linux i686; en-GB; rv:1.9.0.10) Gecko/2009042513 Ubuntu/8.04 (hardy) Firefox/3.0.10',NULL,404,'GET',NULL,''),(180829,'2025-06-29 19:33:40','/config/config.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180830,'2025-06-29 19:33:40','/aws/credentials','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180831,'2025-06-29 19:33:41','/config/aws.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180832,'2025-06-29 19:33:41','/config/aws.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180833,'2025-06-29 19:33:42','/docker-compose.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180834,'2025-06-29 19:33:42','/docker-compose.override.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180835,'2025-06-29 19:33:43','/docker-compose.prod.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180836,'2025-06-29 19:33:43','/docker-compose.dev.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180837,'2025-06-29 19:33:44','/config/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180838,'2025-06-29 19:33:44','/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180839,'2025-06-29 19:33:45','/config.yaml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180840,'2025-06-29 19:33:45','/config.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180841,'2025-06-29 19:33:46','/secrets.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180842,'2025-06-29 19:33:46','/secrets.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180843,'2025-06-29 19:33:47','/credentials.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180844,'2025-06-29 19:33:47','/backup.zip','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180845,'2025-06-29 19:33:48','/db.sql','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180846,'2025-06-29 19:33:48','/dump.sql','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180847,'2025-06-29 19:33:49','/database.sql','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(180848,'2025-06-29 19:34:26','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180849,'2025-06-29 19:34:27','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180850,'2025-06-29 19:34:27','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180851,'2025-06-29 19:34:27','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180852,'2025-06-29 19:39:49','/letrozole-price-in-india-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180853,'2025-06-29 19:41:28','/product/introduction-to-the-foot-posture-index-online-cpd/?add-to-cart=28279','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; TikTokSpider; ttspider-feedback@tiktok.com)',NULL,404,'GET',NULL,''),(180854,'2025-06-29 19:58:48','/product/introduction-to-the-foot-posture-index-online-cpd/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180855,'2025-06-29 20:23:31','/a-pts-guide-to-sciatica/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180856,'2025-06-29 20:36:52','/product/introduction-to-running-biomechanics-online-cpd-training/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180857,'2025-06-29 20:37:08','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,404,'GET',NULL,''),(180858,'2025-06-29 20:37:09','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(180859,'2025-06-29 20:39:30','/thank-you-diploma/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180860,'2025-06-29 20:48:51','/doctorsmail90orgtw-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5958.906 Safari/537.36',NULL,404,'GET',NULL,''),(180861,'2025-06-29 20:49:13','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180862,'2025-06-29 20:56:41','/1333-2/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180863,'2025-06-29 20:57:14','/the-deadlift-which-variation-is-right-for-you/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; TikTokSpider; ttspider-feedback@tiktok.com)',NULL,404,'GET',NULL,''),(180864,'2025-06-29 20:59:15','/promera-sports-con-cret-burn-review-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180865,'2025-06-29 21:02:59','/product/mindfulness-mindset-mental-health-live-online-event/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180866,'2025-06-29 21:09:47','/dermaflash-coupon-codes-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9238.521 Safari/537.36',NULL,404,'GET',NULL,''),(180867,'2025-06-29 21:10:54','/thank-you-diploma/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180868,'2025-06-29 21:11:11','/geriforte-webmdcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180869,'2025-06-29 21:29:59','/performer-5-tablets-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://clanad.endinahosting.com/index.php?file=Guestbook&p=33423',404,'GET',NULL,''),(180870,'2025-06-29 21:33:38','/the-4-legs-of-life/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180871,'2025-06-29 21:39:59','/product-tag/swing/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,''),(180872,'2025-06-29 21:44:21','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180873,'2025-06-29 22:03:50','/2020/08/10','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','https://biomechanicseducation.com/2020/08/10',404,'GET',NULL,''),(180874,'2025-06-29 22:17:38','/2023/12/20/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180875,'2025-06-29 22:23:45','/product-tag/workshop/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,''),(180876,'2025-06-29 22:26:31','/is-it-actually-an-injury-who-should-you-send-your-client-to-to-get-it-fixed/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; TikTokSpider; ttspider-feedback@tiktok.com)',NULL,404,'GET',NULL,''),(180877,'2025-06-29 22:37:04','/iqos-24-plus-bluetooth-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GoogleOther) Chrome/137.0.7151.103 Safari/537.36',NULL,404,'GET',NULL,''),(180878,'2025-06-29 22:41:27','/knee-biomechanics-part-8-the-muscles-of-the-knee/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180879,'2025-06-29 22:43:00','/sitemap.html','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180880,'2025-06-29 22:43:02','/sitemap.html','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180881,'2025-06-29 22:43:04','/sitemap.html','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180882,'2025-06-29 22:44:44','/cosmedfr-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5061.202 Safari/537.36',NULL,404,'GET',NULL,''),(180883,'2025-06-29 22:55:15','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180884,'2025-06-29 23:10:05','/keto-os-amped-blue-ocean-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4884.574 Safari/537.36',NULL,404,'GET',NULL,''),(180885,'2025-06-29 23:19:15','/tribulus-terrestris-tablets-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180886,'2025-06-29 23:29:13','/iqair-atem-personal-air-purifier-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1004.919 Safari/537.36',NULL,404,'GET',NULL,''),(180887,'2025-06-29 23:36:25','/weight-shift-piriformis-lots-of-dollars/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180888,'2025-06-30 00:02:37','/sentrydrugcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7691.175 Safari/537.36',NULL,404,'GET',NULL,''),(180889,'2025-06-30 00:09:50','/wordpress','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/wordpress',404,'HEAD',NULL,''),(180890,'2025-06-30 00:09:51','/wp','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/wp',404,'HEAD',NULL,''),(180891,'2025-06-30 00:09:51','/bc','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/bc',404,'HEAD',NULL,''),(180892,'2025-06-30 00:09:52','/bk','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/bk',404,'HEAD',NULL,''),(180893,'2025-06-30 00:10:53','/isotretinoin-capsule-side-effects-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1187.404 Safari/537.36',NULL,404,'GET',NULL,''),(180894,'2025-06-30 00:20:39','/usersfiles/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180895,'2025-06-30 00:20:40','/sites/default/files/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180896,'2025-06-30 00:20:41','/upload/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180897,'2025-06-30 00:20:42','/index/function.php/img/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180898,'2025-06-30 00:20:42','/ALFA_DATA/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180899,'2025-06-30 00:20:44','/modules/mod_simplefileuploadv1.3/elements/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180900,'2025-06-30 00:20:47','/admin/controller/extension/extension/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180901,'2025-06-30 00:20:47','/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180902,'2025-06-30 00:20:48','/assets/images/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180903,'2025-06-30 00:20:49','/vendor/phpunit/phpunit/src/Util/PHP/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180904,'2025-06-30 00:20:49','/wp-includes/theme-compat/theme-compat/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180905,'2025-06-30 00:20:51','/templates/beez3/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180906,'2025-06-30 00:20:52','/admin/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180907,'2025-06-30 00:20:52','/.well-known/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180908,'2025-06-30 00:20:53','/plugins/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180909,'2025-06-30 00:20:54','/as/function','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180910,'2025-06-30 00:20:55','/.well-known/pki-validation/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180911,'2025-06-30 00:20:55','/wp-admin/meta/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180912,'2025-06-30 00:20:57','/up/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180913,'2025-06-30 00:20:58','/UserFiles/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180914,'2025-06-30 00:29:32','/intrinsic-biomechanics-for-personal-trainers/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180915,'2025-06-30 00:44:38','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180916,'2025-06-30 00:44:39','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180917,'2025-06-30 00:44:39','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180918,'2025-06-30 00:44:39','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180919,'2025-06-30 00:59:44','/usersfiles/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180920,'2025-06-30 00:59:44','/sites/default/files/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180921,'2025-06-30 00:59:45','/upload/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180922,'2025-06-30 00:59:45','/index/function.php/img/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180923,'2025-06-30 00:59:46','/ALFA_DATA/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180924,'2025-06-30 00:59:48','/modules/mod_simplefileuploadv1.3/elements/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180925,'2025-06-30 00:59:50','/admin/controller/extension/extension/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180926,'2025-06-30 00:59:51','/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180927,'2025-06-30 00:59:52','/assets/images/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180928,'2025-06-30 00:59:52','/vendor/phpunit/phpunit/src/Util/PHP/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180929,'2025-06-30 00:59:53','/wp-includes/theme-compat/theme-compat/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180930,'2025-06-30 00:59:55','/templates/beez3/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180931,'2025-06-30 00:59:55','/admin/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180932,'2025-06-30 00:59:56','/.well-known/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180933,'2025-06-30 00:59:57','/plugins/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180934,'2025-06-30 00:59:58','/as/function','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180935,'2025-06-30 00:59:58','/.well-known/pki-validation/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180936,'2025-06-30 00:59:59','/wp-admin/meta/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180937,'2025-06-30 01:00:00','/up/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180938,'2025-06-30 01:00:02','/UserFiles/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(180939,'2025-06-30 01:01:03','/farmacieonlinemd-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4726.178 Safari/537.36',NULL,404,'GET',NULL,''),(180940,'2025-06-30 01:01:58','/wwwhealthfertilitycomsg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180941,'2025-06-30 01:07:10','/kamagra-efekti-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180942,'2025-06-30 01:08:52','/evol-nutrition-productions-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5470.968 Safari/537.36',NULL,404,'GET',NULL,''),(180943,'2025-06-30 01:10:19','/product-tag/sciatic/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180944,'2025-06-30 01:22:20','/product/shoulder-knee-foot-biomechanics-online-cpd-training/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','https://www.biomechanicseducation.com/product/shoulder-knee-foot-biomechanics-online-cpd-training/',404,'GET',NULL,''),(180945,'2025-06-30 01:27:15','/building-displaying-strength-theres-a-difference/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','https://www.biomechanicseducation.com/building-displaying-strength-theres-a-difference/',404,'GET',NULL,''),(180946,'2025-06-30 01:27:46','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180947,'2025-06-30 01:27:46','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180948,'2025-06-30 01:29:58','/checkout-result-2/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','https://www.biomechanicseducation.com/checkout-result-2/',404,'GET',NULL,''),(180949,'2025-06-30 01:31:59','/you-are-my-hero/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','https://www.biomechanicseducation.com/you-are-my-hero/',404,'GET',NULL,''),(180950,'2025-06-30 01:32:06','/celecoxib-200-mg-capsules-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4570.184 Safari/537.36',NULL,404,'GET',NULL,''),(180951,'2025-06-30 01:33:54','/downloadable-items/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','https://www.biomechanicseducation.com/downloadable-items/',404,'GET',NULL,''),(180952,'2025-06-30 01:35:31','/2019-a-year-in-review-for-biomechanics-education/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','https://www.biomechanicseducation.com/2019-a-year-in-review-for-biomechanics-education/',404,'GET',NULL,''),(180953,'2025-06-30 01:40:24','/apple-app-site-association','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)',NULL,404,'GET',NULL,''),(180954,'2025-06-30 01:45:46','/que-es-provera-5mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180955,'2025-06-30 02:01:29','/calendar/action~month/exact_date~1589932800/request_format~json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','https://biomechanicseducation.com/calendar/action~month/exact_date~1589932800/request_format~json',404,'GET',NULL,''),(180956,'2025-06-30 02:01:37','/mlkhealthorg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4032.893 Safari/537.36',NULL,404,'GET',NULL,''),(180957,'2025-06-30 02:02:52','/betnovate-n-crema-precio-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1973.642 Safari/537.36',NULL,404,'GET',NULL,''),(180958,'2025-06-30 02:26:22','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180959,'2025-06-30 02:44:37','/6-steps-to-improving-your-clients-metabolic-profile/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180960,'2025-06-30 02:49:16','/.well-known/apple-app-site-association','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)',NULL,404,'GET',NULL,''),(180961,'2025-06-30 02:50:40','/remedial-gymnastics/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180962,'2025-06-30 02:57:32','/gemfibrozil-600-mg-oral-tablet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4153.462 Safari/537.36',NULL,404,'GET',NULL,''),(180963,'2025-06-30 02:59:19','/buy-medik8-usa-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8786.702 Safari/537.36',NULL,404,'GET',NULL,''),(180964,'2025-06-30 03:00:44','/shoulder-biomechanics-part-5-the-bones-of-the-shoulder/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180965,'2025-06-30 03:01:06','/wellbutrin-300-mg-tablet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)',NULL,404,'GET',NULL,''),(180966,'2025-06-30 03:11:57','/ciprofloxacino-500-pra-que-serve-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1255.884 Safari/537.36',NULL,404,'GET',NULL,''),(180967,'2025-06-30 03:23:04','/malegra-100-reviews-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2375.926 Safari/537.36',NULL,404,'GET',NULL,''),(180968,'2025-06-30 03:30:55','/brahmi-bodybuilding-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9901.678 Safari/537.36',NULL,404,'GET',NULL,''),(180969,'2025-06-30 03:32:35','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180970,'2025-06-30 03:38:19','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.34 Safari/537.36','https://www.biosphericperformance.com',404,'HEAD',NULL,''),(180971,'2025-06-30 03:38:20','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.34 Safari/537.36','https://www.biosphericperformance.com',404,'GET',NULL,''),(180972,'2025-06-30 03:41:04','/?author=2','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.5790.102 Safari/537.36','https://biomechanicseducation.com',404,'GET',NULL,''),(180973,'2025-06-30 03:42:03','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180974,'2025-06-30 03:42:03','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180975,'2025-06-30 03:42:03','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180976,'2025-06-30 03:42:04','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180977,'2025-06-30 03:49:34','/great-discussions-egos-trolls-the-2-sides-of-social-media/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180978,'2025-06-30 03:58:18','/genpillscom-complaints-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3456.580 Safari/537.36',NULL,404,'GET',NULL,''),(180979,'2025-06-30 03:59:53','/quitoplan-bula-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7271.587 Safari/537.36',NULL,404,'GET',NULL,''),(180980,'2025-06-30 04:02:53','/?author=2','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.5735.134 Safari/537.36','https://biomechanicseducation.com',404,'GET',NULL,''),(180981,'2025-06-30 04:04:04','/calendar/action~month/exact_date~1596758400/request_format~json/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://biomechanicseducation.com/calendar/action~month/exact_date~1596758400/request_format~json/',404,'GET',NULL,''),(180982,'2025-06-30 04:07:08','/the-ripple-effect-how-1-action-can-impact-hundreds-of-others/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(180983,'2025-06-30 04:08:16','/viagra-online-without-pre-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8745.707 Safari/537.36',NULL,404,'GET',NULL,''),(180984,'2025-06-30 04:15:31','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180985,'2025-06-30 04:15:32','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(180986,'2025-06-30 04:15:32','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180987,'2025-06-30 04:15:32','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(180988,'2025-06-30 04:25:54','/benzac-gel-zonder-voorschrift-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(180989,'2025-06-30 04:26:26','/caverta-100-review-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8565.583 Safari/537.36',NULL,404,'GET',NULL,''),(180990,'2025-06-30 04:38:03','/high-dose-methotrexate-protocol-cns-lymphoma-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(180991,'2025-06-30 04:42:46','/aciclovir-400-rezeptpflichtig-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2128.101 Safari/537.36',NULL,404,'GET',NULL,''),(180992,'2025-06-30 04:52:50','/commander-sildenafil-pf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180993,'2025-06-30 04:52:57','/peut-on-commander-d','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180994,'2025-06-30 04:53:06','/prix-cialis-pharmacie-sui','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180995,'2025-06-30 04:53:16','/prix-du-cialis-en-pharma','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180996,'2025-06-30 04:53:28','/prix-du-viagra-en-franc','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180997,'2025-06-30 04:53:33','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(180998,'2025-06-30 04:53:38','/prix-du-viagra-en-pharm','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(180999,'2025-06-30 05:07:04','/iqos-24-plus-bluetooth-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GoogleOther) Chrome/137.0.7151.103 Safari/537.36',NULL,404,'GET',NULL,''),(181000,'2025-06-30 05:35:30','/project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181001,'2025-06-30 05:41:13','/case-study-simon/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181002,'2025-06-30 05:54:20','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181003,'2025-06-30 06:01:27','/category/uncategorized/page/2/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','https://biomechanicseducation.com/category/uncategorized/page/2/',404,'GET',NULL,''),(181004,'2025-06-30 06:11:39','/does-olanzapine-make-you-dumb-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181005,'2025-06-30 06:11:47','/losartan-hctz-medscape-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181006,'2025-06-30 06:14:32','/evidence-based-tyranny/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; TikTokSpider; ttspider-feedback@tiktok.com)',NULL,404,'GET',NULL,''),(181007,'2025-06-30 06:41:30','/proscar-5-mg-ohne-rezept-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7633.481 Safari/537.36',NULL,404,'GET',NULL,''),(181008,'2025-06-30 06:55:13','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181009,'2025-06-30 07:08:35','/h7-insomnia-control-review-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9335.173 Safari/537.36',NULL,404,'GET',NULL,''),(181010,'2025-06-30 07:19:17','/biomechanics-coach-diploma-2/?fbclid=IwZXh0bgNhZW0CMTEAAR5vLSMFEj7UBlS9TcxkxBahaTo4JlbEGkcW3lW8dMNQISIrfpzpBX748KIHDw_aem_K16h6ysTctOP1rteoYlzmw','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 12; Infinix X6516 Build/SP1A.210812.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/137.0.7151.115 Mobile Safari/537.36 [FBAN/AudienceNetworkForWindows;FBDV/Infinix X6516;FBSV/12;FBAV/464.0.0.16.111;FBLC/en_G',NULL,404,'GET',NULL,''),(181011,'2025-06-30 07:25:33','/remedial-gymnastics/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181012,'2025-06-30 07:27:42','/biomechanics-coach-diploma-2/?fbclid=IwZXh0bgNhZW0CMTEAAR6YuFTx1YkdYVBNMJPz0djl7Kt1cDsgm-jwn3prrQ89nfDtPKf5err2_wEfQg_aem_aY3UO16t12-3fZ8zwJrAtw','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 12; Infinix X6516 Build/SP1A.210812.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/137.0.7151.115 Mobile Safari/537.36 [FBAN/AudienceNetworkForWindows;FBDV/Infinix X6516;FBSV/12;FBAV/464.0.0.16.111;FBLC/en_G',NULL,404,'GET',NULL,''),(181013,'2025-06-30 07:33:40','/aciphex-rxlist-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://clanad.endinahosting.com/index.php?file=Guestbook&p=33433',404,'GET',NULL,''),(181014,'2025-06-30 07:37:16','/site/testimonials/biomechanics-coach-profiles/232-emma-westmacott-biomechanics-coach-october','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.34 Safari/537.36','https://www.biosphericperformance.com',404,'HEAD',NULL,''),(181015,'2025-06-30 07:37:17','/site/testimonials/biomechanics-coach-profiles/232-emma-westmacott-biomechanics-coach-october','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.34 Safari/537.36','https://www.biosphericperformance.com',404,'GET',NULL,''),(181016,'2025-06-30 07:42:41','/a-personal-trainers-guide-to-7-styles-of-lunge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181017,'2025-06-30 07:46:58','/doctorkeppelcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181018,'2025-06-30 07:47:04','/my-experience-of-being-a-level-4-strength-conditioning-learner-day-1-2/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181019,'2025-06-30 07:48:03','/true-mass-1200-vs-carnivor-mass-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181020,'2025-06-30 08:00:30','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181021,'2025-06-30 08:02:51','/the-squat-part-46/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36','https://biomechanicseducation.com/the-squat-part-46/',404,'GET',NULL,''),(181022,'2025-06-30 08:03:10','/AutoDiscover/autodiscover.xml','https://biomechanicseducation.com','Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.18827; Pro)',NULL,404,'POST',NULL,''),(181023,'2025-06-30 08:07:53','/clark-county-pharmacy-discount-card-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8483.739 Safari/537.36',NULL,404,'GET',NULL,''),(181024,'2025-06-30 08:14:01','/single-joint-vs-functional-assessments-a-personal-trainers-guide/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)',NULL,404,'GET',NULL,''),(181025,'2025-06-30 08:20:06','/coaching-diploma','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181026,'2025-06-30 08:20:07','/coaching-diploma','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181027,'2025-06-30 08:20:45','/coaching-diploma?fbclid=IwZXh0bgNhZW0CMTEAAR6zKIrniEYAMP8TO6ZVrSPUK4RlgXiuYRvtS0CLkkNzcR6BnoSNrlja2lFmeQ_aem_vDWcwp5byV-I8n8IzXhw1g','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181028,'2025-06-30 08:22:18','/coaching-diploma','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181029,'2025-06-30 08:22:19','/coaching-diploma','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181030,'2025-06-30 08:22:19','/coaching-diploma','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181031,'2025-06-30 08:22:54','/butea-superba-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3323.967 Safari/537.36',NULL,404,'GET',NULL,''),(181032,'2025-06-30 08:24:43','/how-to-stop-the-bad-habits-from-creeping-back-in-when-you-begin-your-fitness-journey/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181033,'2025-06-30 08:33:48','/pharmacycloudsiteir-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181034,'2025-06-30 08:34:28','/virmax-results-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181035,'2025-06-30 09:19:11','/virility-ex-cost-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181036,'2025-06-30 09:35:34','/1333-2/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181037,'2025-06-30 09:35:35','/1333-2/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181038,'2025-06-30 09:40:55','/buying-aciphex-online-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4729.679 Safari/537.36',NULL,404,'GET',NULL,''),(181039,'2025-06-30 09:42:47','/genacol-instant-reviews-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3063.365 Safari/537.36',NULL,404,'GET',NULL,''),(181040,'2025-06-30 09:50:19','/androderm-4-mg-patch-price-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1697.239 Safari/537.36',NULL,404,'GET',NULL,''),(181041,'2025-06-30 09:56:25','/how-does-the-fitness-industry-need-to-adapt/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','https://www.biomechanicseducation.com/how-does-the-fitness-industry-need-to-adapt/',404,'GET',NULL,''),(181042,'2025-06-30 09:57:37','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181043,'2025-06-30 09:57:37','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181044,'2025-06-30 09:57:38','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181045,'2025-06-30 09:57:38','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181046,'2025-06-30 09:59:26','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181047,'2025-06-30 09:59:27','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181048,'2025-06-30 09:59:27','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181049,'2025-06-30 09:59:27','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181050,'2025-06-30 10:03:41','/tribulus-terrestris-tablets-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181051,'2025-06-30 10:04:59','/heartland-nutrients-advanced-probiotics-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3783.274 Safari/537.36',NULL,404,'GET',NULL,''),(181052,'2025-06-30 10:08:24','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181053,'2025-06-30 10:08:53','/do-you-feel-stressed-and-is-stress-actually-a-bad-thing/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0',NULL,404,'GET',NULL,''),(181054,'2025-06-30 10:12:02','/minoxidil-precio-mexico-df-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181055,'2025-06-30 10:18:31','/follicle-rx-side-effects-in-hindi-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9639.278 Safari/537.36',NULL,404,'GET',NULL,''),(181056,'2025-06-30 10:23:22','/2016/02/01/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,''),(181057,'2025-06-30 10:33:13','/the-deadlift-which-variation-is-right-for-you/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181058,'2025-06-30 10:41:57','/2018/10/22/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181059,'2025-06-30 10:49:34','/rythmia-life-advancement-center-ayahuasca-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181060,'2025-06-30 10:51:34','/uncoupling-agent-2-4-dinitrophenol-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9090.692 Safari/537.36',NULL,404,'GET',NULL,''),(181061,'2025-06-30 10:54:11','/product-tag/webinar/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181062,'2025-06-30 11:06:46','/the-squat-part-46/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181063,'2025-06-30 11:07:56','/coaching-diploma','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181064,'2025-06-30 11:08:11','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181065,'2025-06-30 11:10:06','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181066,'2025-06-30 11:21:15','/site/blog/320-the-squat-part-6-6-the-conclusion','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181067,'2025-06-30 11:35:20','/level-4-lower-back-pain-specialist-diploma-in-biomechanics-coaching/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181068,'2025-06-30 11:35:34','/procalisx-india-contact-numbers-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181069,'2025-06-30 11:37:01','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181070,'2025-06-30 11:37:02','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181071,'2025-06-30 11:37:02','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181072,'2025-06-30 11:37:03','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181073,'2025-06-30 11:57:45','/apple-app-site-association','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html),gzip(gfe)',NULL,404,'GET',NULL,''),(181074,'2025-06-30 11:58:31','/tamsulosin-al-0-4-mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181075,'2025-06-30 12:01:54','/you-just-never-know/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','https://biomechanicseducation.com/you-just-never-know/',404,'GET',NULL,''),(181076,'2025-06-30 12:02:04','/insane-labz-quantum-protein-projection-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7688.426 Safari/537.36',NULL,404,'GET',NULL,''),(181077,'2025-06-30 12:06:23','/product-category/prods/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181078,'2025-06-30 12:10:20','/omeprazole-206-mg-side-effects-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7840.505 Safari/537.36',NULL,404,'GET',NULL,''),(181079,'2025-06-30 12:12:53','/amoxicillin-500-mg-suspension-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181080,'2025-06-30 12:15:52','/celexa-10-mg-no-side-effects-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7984.535 Safari/537.36',NULL,404,'GET',NULL,''),(181081,'2025-06-30 12:16:45','/hes-a-stooge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181082,'2025-06-30 12:24:52','/2016/11/14/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181083,'2025-06-30 12:30:03','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181084,'2025-06-30 12:30:46','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',NULL,404,'GET',NULL,''),(181085,'2025-06-30 12:46:03','/bladderwrack-amazon-uk-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4669.414 Safari/537.36',NULL,404,'GET',NULL,''),(181086,'2025-06-30 13:05:17','/andro-4000-testosterone-supplements-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6452.117 Safari/537.36',NULL,404,'GET',NULL,''),(181087,'2025-06-30 13:10:24','/puregym-purefun/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181088,'2025-06-30 13:10:25','/puregym-purefun/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181089,'2025-06-30 13:10:25','/puregym-purefun/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181090,'2025-06-30 13:10:25','/puregym-purefun/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181091,'2025-06-30 13:21:17','/acadpharmorg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181092,'2025-06-30 13:30:29','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181093,'2025-06-30 13:36:52','/@vite/env','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181094,'2025-06-30 13:36:53','/actuator/env','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181095,'2025-06-30 13:36:53','/server','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181096,'2025-06-30 13:36:56','/debug/default/view?panel=config','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181097,'2025-06-30 13:36:56','/v2/_catalog','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181098,'2025-06-30 13:36:57','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181099,'2025-06-30 13:36:57','/server-status','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181100,'2025-06-30 13:36:58','/login.action','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181101,'2025-06-30 13:36:58','/_all_dbs','https://biomechanicseducation.com','Mozilla/5.0 (l9scan/2.0.9333e21373e2730323e27363; +https://leakix.net)',NULL,404,'GET',NULL,''),(181102,'2025-06-30 13:36:59','/s/9333e21373e2730323e27363/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181103,'2025-06-30 13:37:00','/config.json','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181104,'2025-06-30 13:37:00','/telescope/requests','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181105,'2025-06-30 13:49:04','/product-tag/sumo/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181106,'2025-06-30 14:09:04','/site.zip','https://biomechanicseducation.com',NULL,NULL,404,'HEAD',NULL,''),(181107,'2025-06-30 14:09:13','/web.zip','https://biomechanicseducation.com',NULL,NULL,404,'HEAD',NULL,''),(181108,'2025-06-30 14:13:47','/stop-stretching/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181109,'2025-06-30 14:36:17','/wwwproject-meditationorglifeflowhtml-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1111.841 Safari/537.36',NULL,404,'GET',NULL,''),(181110,'2025-06-30 14:59:37','/buyantibiotics24hcom-review-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181111,'2025-06-30 15:03:30','/pristiq-side-effects-with-alcohol-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181112,'2025-06-30 15:03:46','/is-personal-training-personal-enough/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181113,'2025-06-30 15:07:52','/methotrexate--misoprostol-mtx-procedure-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181114,'2025-06-30 15:08:23','/lek-clopidogrel-cena-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1066.191 Safari/537.36',NULL,404,'GET',NULL,''),(181115,'2025-06-30 15:13:20','/404error_test.html','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36 OPR/109.0.0.0',NULL,404,'GET',NULL,''),(181116,'2025-06-30 15:14:09','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181117,'2025-06-30 15:26:01','/prescription-drugs-america-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181118,'2025-06-30 15:26:09','/venegra-uk-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181119,'2025-06-30 15:27:13','/salemnaturalmedicinenet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','https://www.biomechanicseducation.com/salemnaturalmedicinenet-7c44.pdf',404,'GET',NULL,''),(181120,'2025-06-30 15:32:37','/desvenlafaxine-crazy-meds-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3394.623 Safari/537.36',NULL,404,'GET',NULL,''),(181121,'2025-06-30 15:38:32','/genius-brain-power-mp3-audio-download-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.1565.113 Safari/537.36',NULL,404,'GET',NULL,''),(181122,'2025-06-30 15:39:58','/les-labs-prostate-health-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8474.236 Safari/537.36',NULL,404,'GET',NULL,''),(181123,'2025-06-30 15:49:41','/product/fundamental-principles-of-movement-analysis/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181124,'2025-06-30 15:50:04','/admin/controller/extension/extension/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181125,'2025-06-30 15:50:04','/alfanew.PHP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181126,'2025-06-30 15:50:06','/admin.php1','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181127,'2025-06-30 15:50:07','/.well-known/pki-validation/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181128,'2025-06-30 15:50:08','/wp-content/plugins/wordfence/js/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181129,'2025-06-30 15:50:10','/config.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181130,'2025-06-30 15:50:11','/wp-content/uploads/2023/08/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181131,'2025-06-30 15:50:13','/randkeyword.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181132,'2025-06-30 15:50:14','/alfa-rexhp1.p','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181133,'2025-06-30 15:50:15','/1.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181134,'2025-06-30 15:50:18','/css/dmtixucz/golden-access/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181135,'2025-06-30 15:50:20','/gebase.php69','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181136,'2025-06-30 15:50:22','/wp-content/uploads/setup','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181137,'2025-06-30 15:50:22','/about.PHP','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181138,'2025-06-30 15:50:23','/alfa-rex.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181139,'2025-06-30 15:59:00','/virectin-video-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','https://www.biomechanicseducation.com/virectin-video-7c44.pdf',404,'GET',NULL,''),(181140,'2025-06-30 16:10:08','/betamethasone-dipropionate-lotion-005-uses-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9106.735 Safari/537.36',NULL,404,'GET',NULL,''),(181141,'2025-06-30 16:22:45','/precio-calandra-industrial-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7769.415 Safari/537.36',NULL,404,'GET',NULL,''),(181142,'2025-06-30 16:35:40','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181143,'2025-06-30 16:38:35','/cefdinir-drugscom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2139.763 Safari/537.36',NULL,404,'GET',NULL,''),(181144,'2025-06-30 16:41:07','/betamethasone-valerate-cream-usp-01-uses-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7047.571 Safari/537.36',NULL,404,'GET',NULL,''),(181145,'2025-06-30 16:43:51','/efectos-secundarios-de-la-caverta-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3798.317 Safari/537.36',NULL,404,'GET',NULL,''),(181146,'2025-06-30 16:52:07','/jeansiagra-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181147,'2025-06-30 16:58:28','/want-to-increase-muscle-output-by-50-in-10-days/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; TikTokSpider; ttspider-feedback@tiktok.com)',NULL,404,'GET',NULL,''),(181148,'2025-06-30 17:18:20','/wwwviagra-kamagracompl-opinie-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181149,'2025-06-30 17:37:10','/product/performance-biomechanics-in-sport-swimming-live-webinar-nov-8th-2-4pm/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181150,'2025-06-30 17:37:10','/product/performance-biomechanics-in-sport-swimming-live-webinar-nov-8th-2-4pm/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181151,'2025-06-30 17:48:06','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181152,'2025-06-30 17:51:56','/the-deadlift-which-variation-is-right-for-you/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181153,'2025-06-30 17:56:20','/product-tag/webinar/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181154,'2025-06-30 18:05:16','/findallpillscom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181155,'2025-06-30 18:09:28','/dramamine-webmd-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://clanad.endinahosting.com/index.php?file=Guestbook&p=33429',404,'GET',NULL,''),(181156,'2025-06-30 18:16:33','/libido-max-return-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181157,'2025-06-30 18:19:48','/true-mass-1200-vs-carnivor-mass-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181158,'2025-06-30 18:38:41','/thank-you-diploma/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181159,'2025-06-30 18:43:48','/beforenaturalremedyforedcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5167.274 Safari/537.36',NULL,404,'GET',NULL,''),(181160,'2025-06-30 18:49:04','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181161,'2025-06-30 18:53:58','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181162,'2025-06-30 18:53:58','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181163,'2025-06-30 18:53:58','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181164,'2025-06-30 18:53:59','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181165,'2025-06-30 19:04:01','/meloxicam-arrow-cena-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7698.672 Safari/537.36',NULL,404,'GET',NULL,''),(181166,'2025-06-30 19:19:45','/2016/11/20/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181167,'2025-06-30 19:20:09','/level-4-lower-back-pain-specialist-diploma-in-biomechanics-coaching/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,''),(181168,'2025-06-30 19:26:24','/force-factor-fuego-pre-workout-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181169,'2025-06-30 19:28:24','/healthymalecom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3450.407 Safari/537.36',NULL,404,'GET',NULL,''),(181170,'2025-06-30 19:51:07','/kamagra-kopen-eindhoven-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2785.784 Safari/537.36',NULL,404,'GET',NULL,''),(181171,'2025-06-30 19:59:52','/k2healthcomwheretobuy-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5882.489 Safari/537.36',NULL,404,'GET',NULL,''),(181172,'2025-06-30 20:07:08','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181173,'2025-06-30 20:13:22','/tab-metformin-sr-500mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.6290.845 Safari/537.36',NULL,404,'GET',NULL,''),(181174,'2025-06-30 20:19:35','/4-minutes-could-change-your-life-forever-breaking-bad-habits/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181175,'2025-06-30 20:22:04','/budesonide-reddit-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181176,'2025-06-30 20:35:50','/healthportalsitecom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8271.689 Safari/537.36',NULL,404,'GET',NULL,''),(181177,'2025-06-30 20:37:22','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,404,'GET',NULL,''),(181178,'2025-06-30 20:37:24','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181179,'2025-06-30 20:37:28','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181180,'2025-06-30 20:46:20','/drugtestingorgau-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9325.300 Safari/537.36',NULL,404,'GET',NULL,''),(181181,'2025-06-30 20:51:02','/ah-medicalassistancecom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9505.282 Safari/537.36',NULL,404,'GET',NULL,''),(181182,'2025-06-30 20:52:57','/puretabletscom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2948.162 Safari/537.36',NULL,404,'GET',NULL,''),(181183,'2025-06-30 21:11:26','/wp-content/upioads/2019/01','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181184,'2025-06-30 21:17:05','/buy-aids-drugs-online-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.7953.184 Safari/537.36',NULL,404,'GET',NULL,''),(181185,'2025-06-30 21:17:31','/site/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181186,'2025-06-30 21:30:21','/config/config.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181187,'2025-06-30 21:30:22','/aws/credentials','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181188,'2025-06-30 21:30:22','/config/aws.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181189,'2025-06-30 21:30:23','/config/aws.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181190,'2025-06-30 21:30:23','/docker-compose.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181191,'2025-06-30 21:30:24','/docker-compose.override.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181192,'2025-06-30 21:30:24','/docker-compose.prod.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181193,'2025-06-30 21:30:25','/docker-compose.dev.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181194,'2025-06-30 21:30:26','/config/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181195,'2025-06-30 21:30:26','/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181196,'2025-06-30 21:30:27','/config.yaml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181197,'2025-06-30 21:30:27','/config.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181198,'2025-06-30 21:30:28','/secrets.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181199,'2025-06-30 21:30:28','/secrets.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181200,'2025-06-30 21:30:29','/credentials.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181201,'2025-06-30 21:30:29','/backup.zip','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181202,'2025-06-30 21:30:30','/db.sql','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181203,'2025-06-30 21:30:30','/dump.sql','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181204,'2025-06-30 21:30:31','/database.sql','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181205,'2025-06-30 21:31:59','/finasteride-prescription-online-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.5378.413 Safari/537.36',NULL,404,'GET',NULL,''),(181206,'2025-06-30 21:33:48','/ever-heard-of-occams-razor/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181207,'2025-06-30 21:43:33','/weight-shift-piriformis-lots-of-dollars/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181208,'2025-06-30 21:51:17','/2023/06/28/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181209,'2025-06-30 21:54:08','/product/free-pulseroll-imovefreely-sessions-live-dec-11th-1030-1230pm/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181210,'2025-06-30 21:57:28','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36',NULL,404,'GET',NULL,''),(181211,'2025-06-30 22:03:46','/product-tag/sumo/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181212,'2025-06-30 22:04:33','/the-squat-part-46/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181213,'2025-06-30 22:07:13','/is-there-such-a-thing-as-caring-too-much/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181214,'2025-06-30 22:09:17','/healthhopmusiccom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.9556.134 Safari/537.36',NULL,404,'GET',NULL,''),(181215,'2025-06-30 22:09:31','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181216,'2025-06-30 22:24:14','/beli-propecia-indonesia-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.8882.614 Safari/537.36',NULL,404,'GET',NULL,''),(181217,'2025-06-30 22:31:28','/my-horrific-halloween-earwax-experience/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181218,'2025-06-30 22:36:22','/extendor-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.3115.931 Safari/537.36',NULL,404,'GET',NULL,''),(181219,'2025-06-30 22:37:48','/product/introduction-to-running-biomechanics-online-cpd-training/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; TikTokSpider; ttspider-feedback@tiktok.com)',NULL,404,'GET',NULL,''),(181220,'2025-06-30 22:47:34','/drugprescription4ucom-reviews-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181221,'2025-06-30 22:55:27','/how-to-stop-the-bad-habits-from-creeping-back-in-when-you-begin-your-fitness-journey/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181222,'2025-06-30 23:06:48','/wwwpshrcmedsa-http-wwwpshrcmedsa-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.2388.674 Safari/537.36',NULL,404,'GET',NULL,''),(181223,'2025-06-30 23:53:11','/product-tag/sciatic/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181224,'2025-07-01 00:09:11','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181225,'2025-07-01 00:09:19','/ayurvedatreatmentsnet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0',NULL,404,'GET',NULL,''),(181226,'2025-07-01 00:09:25','/site/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181227,'2025-07-01 00:09:37','/ayurvedatreatmentsnet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0',NULL,404,'GET',NULL,''),(181228,'2025-07-01 00:18:08','/wp-admin/js/about.php7','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-admin/js/about.php7',404,'GET',NULL,''),(181229,'2025-07-01 00:18:22','/api/5572214/envelope/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/api/5572214/envelope/',404,'GET',NULL,''),(181230,'2025-07-01 00:18:41','/wp-content/x/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-content/x/',404,'GET',NULL,''),(181231,'2025-07-01 00:18:46','/wp-content/themes/twentytwenty/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-content/themes/twentytwenty/',404,'GET',NULL,''),(181232,'2025-07-01 00:19:31','/wp-includes/js/tinymce/themes/inlite/888xyz999','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-includes/js/tinymce/themes/inlite/888xyz999',404,'GET',NULL,''),(181233,'2025-07-01 00:19:40','/wp-content/plugins/ioxi/ioxi/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-content/plugins/ioxi/ioxi/',404,'GET',NULL,''),(181234,'2025-07-01 00:19:44','/chosen','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/chosen',404,'GET',NULL,''),(181235,'2025-07-01 00:19:55','/wp-includes/SimplePie/HTTP/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-includes/SimplePie/HTTP/',404,'GET',NULL,''),(181236,'2025-07-01 00:20:06','/shop/area/kanto/chiba/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/shop/area/kanto/chiba/',404,'GET',NULL,''),(181237,'2025-07-01 00:20:20','/wp-content/plugins/elementor/data/base/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-content/plugins/elementor/data/base/',404,'GET',NULL,''),(181238,'2025-07-01 00:20:45','/wp-includes/wp-class.php/wp-content/themes/travelscape/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-includes/wp-class.php/wp-content/themes/travelscape/',404,'GET',NULL,''),(181239,'2025-07-01 00:21:45','/wp-includes/blocks/page-list/page-list/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-includes/blocks/page-list/page-list/',404,'GET',NULL,''),(181240,'2025-07-01 00:21:49','/wp-content/themes/twentytwentyfour/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-content/themes/twentytwentyfour/',404,'GET',NULL,''),(181241,'2025-07-01 00:21:53','/firewall.php7','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/firewall.php7',404,'GET',NULL,''),(181242,'2025-07-01 00:22:05','/wp-content/plugins/linkpreview/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-content/plugins/linkpreview/',404,'GET',NULL,''),(181243,'2025-07-01 00:22:26','/pouyaasss.asp','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/pouyaasss.asp',404,'GET',NULL,''),(181244,'2025-07-01 00:22:38','/.well-known/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/.well-known/',404,'GET',NULL,''),(181245,'2025-07-01 00:22:42','/wp-includes/js/tinymce/plugins/wpemoji/about.php7','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-includes/js/tinymce/plugins/wpemoji/about.php7',404,'GET',NULL,''),(181246,'2025-07-01 00:22:50','/wp-content/plugins/WordPressCore/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-content/plugins/WordPressCore/',404,'GET',NULL,''),(181247,'2025-07-01 00:22:55','/wp-content/plugins/erinyani/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-content/plugins/erinyani/',404,'GET',NULL,''),(181248,'2025-07-01 00:22:59','/wp-includes/Text/about.php7','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/wp-includes/Text/about.php7',404,'GET',NULL,''),(181249,'2025-07-01 00:23:11','/admin/','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/admin/',404,'GET',NULL,''),(181250,'2025-07-01 00:23:22','/comro.php/ALFA_DATA/a','https://biomechanicseducation.com','Go-http-client/2.0','http://biomechanicseducation.com/comro.php/ALFA_DATA/a',404,'GET',NULL,''),(181251,'2025-07-01 01:06:14','/steel-rod-band-schedule-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181252,'2025-07-01 01:11:01','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181253,'2025-07-01 01:12:36','/a-personal-trainers-guide-to-7-styles-of-lunge/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181254,'2025-07-01 01:27:33','/avantor-sulfuric-acid-msds-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181255,'2025-07-01 01:43:30','/magna-rx-orjinal-sorgulama-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181256,'2025-07-01 02:03:51','/shoulder-biomechanics-part-5-the-bones-of-the-shoulder/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181257,'2025-07-01 02:22:38','/category/uncategorized/page/2','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36 Edg/101.0.1210.47','https://biomechanicseducation.com/category/uncategorized/page/2',404,'GET',NULL,''),(181258,'2025-07-01 02:24:46','/ezetimibe-medscape-reference-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181259,'2025-07-01 02:29:59','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181260,'2025-07-01 02:30:04','/how-a-paradigm-shift-can-change-how-you-feel-in-a-moment/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; TikTokSpider; ttspider-feedback@tiktok.com)',NULL,404,'GET',NULL,''),(181261,'2025-07-01 02:40:06','/an-anterior-tilt-of-the-pelvis-is-not-a-diagnosis/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181262,'2025-07-01 03:36:50','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181263,'2025-07-01 03:54:58','/the-cossack-movement-analysis-made-simple/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181264,'2025-07-01 04:00:00','/worm0.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181265,'2025-07-01 04:00:05','/gawean.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181266,'2025-07-01 04:00:11','/alfa-rex.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181267,'2025-07-01 04:00:23','/find-a-bm-coach/page/2/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.3',NULL,404,'GET',NULL,''),(181268,'2025-07-01 04:02:02','/1333-2/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181269,'2025-07-01 04:12:17','/calendar/action~oneday/exact_date~14-6-2020/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','https://biomechanicseducation.com/calendar/action~oneday/exact_date~14-6-2020/',404,'GET',NULL,''),(181270,'2025-07-01 04:22:46','/knee-biomechanics-part-8-the-muscles-of-the-knee/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181271,'2025-07-01 04:24:19','/2016/02/01/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181272,'2025-07-01 04:24:57','/intrinsic-biomechanics-for-personal-trainers/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181273,'2025-07-01 04:29:09','/product/introduction-to-the-foot-posture-index-online-cpd/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181274,'2025-07-01 04:43:19','/thank-you-diploma/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181275,'2025-07-01 04:43:33','/product/weak-glutes-free-webinar/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181276,'2025-07-01 05:06:03','/product/mindfulness-mindset-mental-health-live-online-event/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181277,'2025-07-01 05:15:54','/meta.json','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181278,'2025-07-01 05:27:03','/product-category/prods/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181279,'2025-07-01 05:28:57','/spiru-tein-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181280,'2025-07-01 05:48:17','/single-joint-vs-functional-assessments-a-personal-trainers-guide/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)',NULL,404,'GET',NULL,''),(181281,'2025-07-01 06:03:43','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181282,'2025-07-01 06:07:07','/the-squat-part-1/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181283,'2025-07-01 06:23:04','/calendar/action~month/exact_date~1589932800/request_format~json/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','https://biomechanicseducation.com/calendar/action~month/exact_date~1589932800/request_format~json/',404,'GET',NULL,''),(181284,'2025-07-01 06:36:43','/foot-biomechanics-part-9-the-bones-of-the-foot-ankle/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181285,'2025-07-01 06:42:24','/remedial-gymnastics/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181286,'2025-07-01 06:51:57','/do-we-need-to-massage-the-itb/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181287,'2025-07-01 06:52:44','/2017/05/03/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181288,'2025-07-01 06:54:20','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36',NULL,404,'GET',NULL,''),(181289,'2025-07-01 06:56:14','/do-we-need-to-massage-the-itb/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) EdgiOS/119.0.2151.96 Version/17.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(181290,'2025-07-01 06:59:09','/a-personal-trainers-guide-to-7-styles-of-lunge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181291,'2025-07-01 07:08:03','/do-we-need-to-massage-the-itb/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(181292,'2025-07-01 07:18:06','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181293,'2025-07-01 07:22:12','/do-we-need-to-massage-the-itb/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0 GLS/100.10.9850.99',NULL,404,'GET',NULL,''),(181294,'2025-07-01 07:32:27','/stop-stretching/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181295,'2025-07-01 07:49:06','/online-homeopathic-pharmacy-australia-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181296,'2025-07-01 08:10:21','/why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181297,'2025-07-01 08:14:02','/do-we-need-to-massage-the-itb/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36 Config/92.2.2788.20',NULL,404,'GET',NULL,''),(181298,'2025-07-01 08:21:15','/do-we-need-to-massage-the-itb/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181299,'2025-07-01 08:25:03','/the-4-legs-of-life/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181300,'2025-07-01 08:30:17','/can-being-fit-stop-you-being-healthy/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181301,'2025-07-01 08:33:56','/event/iba-discovery-day-workshop?ical=1','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','https://biomechanicseducation.com/event/iba-discovery-day-workshop?ical=1',404,'GET',NULL,''),(181302,'2025-07-01 08:35:38','/do-we-need-to-massage-the-itb/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) EdgiOS/121.0.2277.107 Version/17.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(181303,'2025-07-01 08:40:46','/do-we-need-to-massage-the-itb/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(181304,'2025-07-01 08:41:41','/spine-mobility-project/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181305,'2025-07-01 08:42:26','/2016/11/14/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181306,'2025-07-01 08:43:11','/hes-a-stooge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181307,'2025-07-01 08:47:39','/kamagra-100-mg-controindicazioni-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181308,'2025-07-01 08:50:10','/assumptions/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181309,'2025-07-01 08:55:18','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181310,'2025-07-01 08:58:13','/the-ripple-effect-how-1-action-can-impact-hundreds-of-others/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181311,'2025-07-01 09:01:14','/a-pts-guide-to-sciatica/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181312,'2025-07-01 09:05:24','/.well-known/apple-app-site-association','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html),gzip(gfe)',NULL,404,'GET',NULL,''),(181313,'2025-07-01 09:06:15','/forwardhealthsolutionscom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://clanad.endinahosting.com/index.php?file=Guestbook&p=33420',404,'GET',NULL,''),(181314,'2025-07-01 09:12:19','/do-we-need-to-massage-the-itb/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:123.0) Gecko/20100101 Firefox/123.0',NULL,404,'GET',NULL,''),(181315,'2025-07-01 09:20:05','/the-deadlift-should-we-or-shouldnt-we/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,''),(181316,'2025-07-01 09:38:53','/bitbucket-pipelines.yml','https://biomechanicseducation.com','Mozilla/5.0 (Linux; U; Android 1.5; en-us; SPH-M900 Build/CUPCAKE) AppleWebKit/528.5 (KHTML, like Gecko) Version/3.1.2 Mobile Safari/525.20.1',NULL,404,'GET',NULL,''),(181317,'2025-07-01 09:39:38','/package.json','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; U; CPU like Mac OS X; en) AppleWebKit/420 (KHTML, like Gecko) Version/3.0 Mobile/1A543a Safari/419.3',NULL,404,'GET',NULL,''),(181318,'2025-07-01 09:40:10','/2023/12/20/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181319,'2025-07-01 09:41:09','/gitlab-ci.yml','https://biomechanicseducation.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.90 Safari/537.36',NULL,404,'GET',NULL,''),(181320,'2025-07-01 09:51:14','/3c-pharmanet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181321,'2025-07-01 09:57:59','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181322,'2025-07-01 10:12:49','/&tenantid=R_YWUDV7EeyYHygYeLFIdQ&templateid=02d0ca133390ed11ac20cc60c8b203cf&excomponentid=Be3NpEVolLs_3suXH5Edhlj1ikjlAzEllWwvzk0jBH8&excomponenttype=Image&signature=dK3XoOHKnikqHwD40IuVH1fjmW_aCtvUxPq4jVmtGSK33kOTARs9pPpeAFBzcpYhprgIqkUsI2Id41TN9NAnE6E_T0Puc6uVFxtxIPb-QwCbYMG_s9Chn2WAhvU1BI7yVMyvmRYU5zzGUbHF68oQP2p_ziwi5ueERMvgXkDrjqSaN0ZRHGDbMMED6u_GyUZfPYXhKSqajDsLX_1XDEdtXKTKB5Ys6zbV6SX6W2JtdvUiucsqqDvSp25HQdCFkUzgf-CSxYGQk3rDc5BdsKPRhkyJ0urbu3CPCNoOeyOEhocBxcNOkQJB5nlH7fX8-4cJFI6KY2P5ExJEbvgUCsAtLA&v=1&imprintMessageId=dc52b392-d138-43bc-a01b-9c139f053603','https://biomechanicseducation.com','Python/3.11 aiohttp/3.11.16',NULL,404,'HEAD',NULL,''),(181323,'2025-07-01 10:12:49','/&tenantid=R_YWUDV7EeyYHygYeLFIdQ&templateid=02d0ca133390ed11ac20cc60c8b203cf&excomponentid=Be3NpEVolLs_3suXH5Edhlj1ikjlAzEllWwvzk0jBH8&excomponenttype=Image&signature=dK3XoOHKnikqHwD40IuVH1fjmW_aCtvUxPq4jVmtGSK33kOTARs9pPpeAFBzcpYhprgIqkUsI2Id41TN9NAnE6E_T0Puc6uVFxtxIPb-QwCbYMG_s9Chn2WAhvU1BI7yVMyvmRYU5zzGUbHF68oQP2p_ziwi5ueERMvgXkDrjqSaN0ZRHGDbMMED6u_GyUZfPYXhKSqajDsLX_1XDEdtXKTKB5Ys6zbV6SX6W2JtdvUiucsqqDvSp25HQdCFkUzgf-CSxYGQk3rDc5BdsKPRhkyJ0urbu3CPCNoOeyOEhocBxcNOkQJB5nlH7fX8-4cJFI6KY2P5ExJEbvgUCsAtLA&v=1&imprintMessageId=dc52b392-d138-43bc-a01b-9c139f053603','https://biomechanicseducation.com','Python/3.11 aiohttp/3.11.16',NULL,404,'GET',NULL,''),(181324,'2025-07-01 10:21:12','/is-there-a-generic-for-benicar-20-mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181325,'2025-07-01 10:21:18','/metoprolol-er-50-mg-used-for-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181326,'2025-07-01 10:44:15','/minoxidil-precio-mexico-df-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181327,'2025-07-01 10:50:48','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181328,'2025-07-01 10:55:43','/?p=36414','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36; compatible; OAI-SearchBot/1.0; +https://openai.com/searchbot',NULL,404,'GET',NULL,''),(181329,'2025-07-01 11:04:23','/product/what-the-hell-is-functional-training-anyway-live-webinar/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1','https://www.google.com/',404,'GET',NULL,''),(181330,'2025-07-01 11:04:34','/product/what-the-hell-is-functional-training-anyway-live-webinar/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1','https://www.google.com/',404,'GET',NULL,''),(181331,'2025-07-01 11:04:44','/product/what-the-hell-is-functional-training-anyway-live-webinar/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1','https://www.google.com/',404,'GET',NULL,''),(181332,'2025-07-01 11:06:50','/cytotec-for-sale-in-philippines-2015-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181333,'2025-07-01 11:07:15','/lady-prelone-bula-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181334,'2025-07-01 11:10:36','/omeprazole-or-prilosec-otc-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181335,'2025-07-01 11:17:39','/commander-sildenafil-pf…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181336,'2025-07-01 11:17:44','/peut-on-commander-d…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181337,'2025-07-01 11:17:50','/prix-cialis-pharmacie-sui…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181338,'2025-07-01 11:17:55','/prix-du-cialis-en-pharma…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181339,'2025-07-01 11:18:02','/prix-du-viagra-en-franc…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181340,'2025-07-01 11:18:08','/prix-du-viagra-en-pharm…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181341,'2025-07-01 11:18:18','/…60-mg-','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181342,'2025-07-01 11:21:08','/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181343,'2025-07-01 11:21:11','/product/pelvis-spine-biomechanics-3-day-workshop-entry-level-3/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181344,'2025-07-01 11:31:57','/how-does-the-fitness-industry-need-to-adapt/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','https://www.biomechanicseducation.com/how-does-the-fitness-industry-need-to-adapt/',404,'GET',NULL,''),(181345,'2025-07-01 11:36:16','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181346,'2025-07-01 11:41:51','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181347,'2025-07-01 11:41:51','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181348,'2025-07-01 11:41:52','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181349,'2025-07-01 11:41:52','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181350,'2025-07-01 11:46:18','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181351,'2025-07-01 11:46:19','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181352,'2025-07-01 11:46:19','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181353,'2025-07-01 11:46:20','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181354,'2025-07-01 11:54:15','/bluemoonhealthcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181355,'2025-07-01 12:14:19','/how-to-improve-your-front-squat-or-over-head-squat/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181356,'2025-07-01 12:32:11','/wordpress','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181357,'2025-07-01 12:32:12','/wp','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181358,'2025-07-01 12:32:15','/new','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181359,'2025-07-01 12:32:16','/old','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181360,'2025-07-01 12:32:16','/newsite','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181361,'2025-07-01 12:32:18','/main','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181362,'2025-07-01 12:32:19','/testing','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181363,'2025-07-01 12:32:19','/site','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181364,'2025-07-01 12:32:20','/backup','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181365,'2025-07-01 12:32:21','/demo','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181366,'2025-07-01 12:32:22','/tmp','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181367,'2025-07-01 12:32:22','/dev','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181368,'2025-07-01 12:32:23','/cms','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181369,'2025-07-01 12:32:23','/portal','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181370,'2025-07-01 12:32:24','/web','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181371,'2025-07-01 12:36:14','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181372,'2025-07-01 12:43:32','/ioxi002.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181373,'2025-07-01 12:43:33','/gank.php.PhP','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181374,'2025-07-01 12:48:43','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.81 Safari/537.36',NULL,404,'GET',NULL,''),(181375,'2025-07-01 12:50:57','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181376,'2025-07-01 12:58:24','/my-account/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15',NULL,404,'GET',NULL,''),(181377,'2025-07-01 12:59:33','/nitro-tech-performance-series-2-lbs-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181378,'2025-07-01 13:01:52','/the-cause-treatment-prevention-of-adductor-muscle-tears-in-sports-players-fitness-clients/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,''),(181379,'2025-07-01 13:31:45','/grit-vs-talent-which-will-more-likely-result-in-achievement/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181380,'2025-07-01 13:31:47','/provera-10-mg-tabletas-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181381,'2025-07-01 13:35:51','/waar-kan-ik-echte-kamagra-kopen-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','https://www.stou.ac.th/schools/sla/is20stou/isboard/question.asp?GID=26143',404,'GET',NULL,''),(181382,'2025-07-01 13:37:12','/text/html','https://biomechanicseducation.com','mozilla/5.0 (iphone; cpu iphone os 18_6 like mac os x) applewebkit/605.1.15 (khtml, like gecko) version/18.6 mobile/15e148 safari/604.1',NULL,404,'GET',NULL,''),(181383,'2025-07-01 13:37:12','/application/json','https://biomechanicseducation.com','mozilla/5.0 (iphone; cpu iphone os 18_6 like mac os x) applewebkit/605.1.15 (khtml, like gecko) version/18.6 mobile/15e148 safari/604.1',NULL,404,'GET',NULL,''),(181384,'2025-07-01 13:37:14','/wp-content/themes/fft/dist/js/text/html','https://biomechanicseducation.com','mozilla/5.0 (iphone; cpu iphone os 18_6 like mac os x) applewebkit/605.1.15 (khtml, like gecko) version/18.6 mobile/15e148 safari/604.1',NULL,404,'GET',NULL,''),(181385,'2025-07-01 13:37:14','/wp-content/themes/fft/dist/js/application/json','https://biomechanicseducation.com','mozilla/5.0 (iphone; cpu iphone os 18_6 like mac os x) applewebkit/605.1.15 (khtml, like gecko) version/18.6 mobile/15e148 safari/604.1',NULL,404,'GET',NULL,''),(181386,'2025-07-01 13:57:57','/great-discussions-egos-trolls-the-2-sides-of-social-media/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181387,'2025-07-01 14:07:07','/ioxi002.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181388,'2025-07-01 14:07:08','/gank.php.PhP','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181389,'2025-07-01 14:19:41','/2018/08/13/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181390,'2025-07-01 14:31:42','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181391,'2025-07-01 14:34:08','/priceline-pharmacy-gold-coast-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181392,'2025-07-01 14:38:44','/alfanew.php7','https://biomechanicseducation.com','python-requests/2.27.1',NULL,404,'GET',NULL,''),(181393,'2025-07-01 14:41:57','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181394,'2025-07-01 15:09:11','/hip-adduction-abduction-guide-for-personal-trainers/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36',NULL,404,'GET',NULL,''),(181395,'2025-07-01 15:12:03','/quest-coconut-powder-review-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181396,'2025-07-01 15:12:55','/stop-chasing-quick-fixes-gary-v-i-agree-on-this/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','https://www.biomechanicseducation.com/foot-biomechanics-made-simple-part-1-the-over-pronation-fallacy/',404,'GET',NULL,''),(181397,'2025-07-01 15:33:46','/amoxicillin-500-mg-suspension-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181398,'2025-07-01 15:47:51','/AutoDiscover/autodiscover.xml','https://biomechanicseducation.com','Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.18827; Pro)',NULL,404,'POST',NULL,''),(181399,'2025-07-01 15:50:49','/project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181400,'2025-07-01 15:54:05','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181401,'2025-07-01 16:14:33','/10-minute-squat-test/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36','https://biomechanicseducation.com/10-minute-squat-test/',404,'GET',NULL,''),(181402,'2025-07-01 16:14:34','/buy-maca-root-pills-online-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181403,'2025-07-01 16:14:40','/where-to-buy-prilosec-capsules-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181404,'2025-07-01 16:26:19','/2023/12/20/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181405,'2025-07-01 16:41:05','/wp-content/plugins/definite-unique/license.txt','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181406,'2025-07-01 17:19:10','/beef-aminos-vs-bcaa-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181407,'2025-07-01 17:21:27','/6-tips-guaranteed-to-improve-your-biomechanics/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181408,'2025-07-01 17:39:37','/zero-order-reaction-in-pharmacy-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://clanad.endinahosting.com/index.php?file=Guestbook&p=33434',404,'GET',NULL,''),(181409,'2025-07-01 17:50:59','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181410,'2025-07-01 17:51:35','/site/testimonials/biomechanics-coach-profiles/232-emma-westmacott-biomechanics-coach-october','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DataForSeoBot/1.0; +https://dataforseo.com/dataforseo-bot)',NULL,404,'GET',NULL,''),(181411,'2025-07-01 17:59:28','/product/introduction-to-running-biomechanics-online-cpd-training/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181412,'2025-07-01 18:04:19','/amlinhealthcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181413,'2025-07-01 18:04:25','/can-you-buy-finasteride-in-australia-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181414,'2025-07-01 18:04:31','/healthunlimitedonlinecom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181415,'2025-07-01 18:04:39','/wellpharmcocn-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181416,'2025-07-01 18:05:14','/xzen-1200-gold-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181417,'2025-07-01 18:05:31','/grit-vs-talent-which-will-more-likely-result-in-achievement/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181418,'2025-07-01 18:12:55','/how-back-pain-whilst-playing-golf-can-stem-from-a-dysfunction-in-the-median-nerve/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36','https://biomechanicseducation.com/how-back-pain-whilst-playing-golf-can-stem-from-a-dysfunction-in-the-median-nerve/',404,'GET',NULL,''),(181419,'2025-07-01 18:36:20','/my-horrific-halloween-earwax-experience/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181420,'2025-07-01 18:52:53','/knee-biomechanics-part-7-the-bones-of-the-knee/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181421,'2025-07-01 18:54:56','/acheter-viagra-au-canada-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181422,'2025-07-01 18:55:02','/revital-mens-side-effects-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181423,'2025-07-01 18:58:27','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(181424,'2025-07-01 19:04:00','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181425,'2025-07-01 19:18:37','/randkeyword.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181426,'2025-07-01 19:18:38','/alfa-rex.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181427,'2025-07-01 19:18:39','/wp-content/uploads/2023/08/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181428,'2025-07-01 19:18:40','/css/dmtixucz/golden-access/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181429,'2025-07-01 19:18:45','/.well-known/pki-validation/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181430,'2025-07-01 19:18:50','/admin/controller/extension/extension/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181431,'2025-07-01 19:18:51','/public/en','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181432,'2025-07-01 19:18:52','/about.PHP','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181433,'2025-07-01 19:18:54','/pki-validation/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181434,'2025-07-01 19:18:56','/class-php','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181435,'2025-07-01 19:19:04','/1.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181436,'2025-07-01 19:19:05','/gebase.php69','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181437,'2025-07-01 19:19:05','/admin.php1','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181438,'2025-07-01 19:19:06','/rbh/log','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181439,'2025-07-01 19:19:07','/alfanew.PHP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181440,'2025-07-01 19:19:08','/wq.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181441,'2025-07-01 19:19:09','/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181442,'2025-07-01 19:19:10','/ALFA_DATA/alfacgiapi/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181443,'2025-07-01 19:19:10','/test.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181444,'2025-07-01 19:19:11','/ws.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181445,'2025-07-01 19:19:12','/gawean.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181446,'2025-07-01 19:19:13','/themes/zMous','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181447,'2025-07-01 19:19:14','/ioxi001.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181448,'2025-07-01 19:19:15','/about.php525','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181449,'2025-07-01 19:19:17','/css/dist/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181450,'2025-07-01 19:19:18','/alfanew2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181451,'2025-07-01 19:19:18','/alfanew.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181452,'2025-07-01 19:19:20','/ioxi002.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181453,'2025-07-01 19:19:21','/wp-content/uploads/setup','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181454,'2025-07-01 19:19:22','/config.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181455,'2025-07-01 19:19:23','/wp-content/plugins/wordfence/js/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181456,'2025-07-01 19:56:19','/4-minutes-could-change-your-life-forever-breaking-bad-habits/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181457,'2025-07-01 20:05:35','/sitemap-1.xml','https://biomechanicseducation.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.69 Safari/537.36',NULL,404,'GET',NULL,''),(181458,'2025-07-01 20:05:36','/sitemap-1.xml','https://biomechanicseducation.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.69 Safari/537.36',NULL,404,'GET',NULL,''),(181459,'2025-07-01 20:05:39','/sitemap-1.xml','https://biomechanicseducation.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.69 Safari/537.36',NULL,404,'GET',NULL,''),(181460,'2025-07-01 20:09:28','/wp-content/up','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181461,'2025-07-01 20:10:43','/product/introduction-to-the-foot-posture-index-online-cpd/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181462,'2025-07-01 20:17:48','/product-tag/sumo/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181463,'2025-07-01 20:18:10','/product/mindfulness-mindset-mental-health-live-online-event/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181464,'2025-07-01 20:20:02','/acetaminophen-ibuprofen-dose-chart-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181465,'2025-07-01 20:35:46','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181466,'2025-07-01 20:39:33','/the-weak-core-myth-core-progressions-that-all-personal-trainers-should-know/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181467,'2025-07-01 20:39:56','/product/pelvic-spine-biomechanics-online-cpd-training/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181468,'2025-07-01 20:40:24','/healthfundinsokhhcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181469,'2025-07-01 20:40:39','/thank-you-diploma/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181470,'2025-07-01 20:41:21','/widepharmacombr-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181471,'2025-07-01 20:49:33','/prometheusmedae-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','https://www.stou.ac.th/schools/sla/is20stou/isboard/QuestionView.asp?GID=26497',404,'GET',NULL,''),(181472,'2025-07-01 20:50:21','/the-deadlift-which-variation-is-right-for-you/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181473,'2025-07-01 20:58:16','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181474,'2025-07-01 21:11:57','/thank-you-diploma/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181475,'2025-07-01 21:29:01','/harga-obat-irbesartan-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181476,'2025-07-01 21:29:51','/erectosil-100-nebenwirkungen-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181477,'2025-07-01 21:32:22','/pharmacy-practice-my-ce-online-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181478,'2025-07-01 21:41:58','/security.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Dataprovider.com)',NULL,404,'GET',NULL,''),(181479,'2025-07-01 21:41:59','/.well-known/security.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Dataprovider.com)',NULL,404,'GET',NULL,''),(181480,'2025-07-01 21:41:59','/llms.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Dataprovider.com)',NULL,404,'GET',NULL,''),(181481,'2025-07-01 21:42:00','/humans.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Dataprovider.com)',NULL,404,'GET',NULL,''),(181482,'2025-07-01 21:42:01','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Dataprovider.com)',NULL,404,'GET',NULL,''),(181483,'2025-07-01 21:44:09','/they-say-it-but-do-they-practice-it/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181484,'2025-07-01 21:53:08','/knee-biomechanics-part-8-the-muscles-of-the-knee/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.193 Safari/537.36',NULL,404,'GET',NULL,''),(181485,'2025-07-01 21:56:05','/why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181486,'2025-07-01 22:03:46','/how-to-add-value-to-your-business-charge-more/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; TikTokSpider; ttspider-feedback@tiktok.com)',NULL,404,'GET',NULL,''),(181487,'2025-07-01 22:05:08','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181488,'2025-07-01 22:05:50','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,404,'GET',NULL,''),(181489,'2025-07-01 22:08:52','/alfa-rex.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181490,'2025-07-01 22:08:53','/wp-admin/js/widgets/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181491,'2025-07-01 22:08:54','/wp-p.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181492,'2025-07-01 22:08:55','/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181493,'2025-07-01 22:08:55','/alfanew.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181494,'2025-07-01 22:08:56','/adminfuns.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181495,'2025-07-01 22:08:57','/ebs.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181496,'2025-07-01 22:08:57','/ws.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181497,'2025-07-01 22:08:58','/alfanew2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181498,'2025-07-01 22:08:58','/alfa-rex2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181499,'2025-07-01 22:11:16','/spine-mobility-project/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181500,'2025-07-01 22:14:27','/how-to-stop-the-bad-habits-from-creeping-back-in-when-you-begin-your-fitness-journey/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181501,'2025-07-01 22:19:03','/spark-naturals-essential-oils-reviews-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181502,'2025-07-01 22:34:19','/&tenantid=R_YWUDV7EeyYHygYeLFIdQ&templateid=02d0ca133390ed11ac20cc60c8b203cf&excomponentid=Be3NpEVolLs_3suXH5Edhlj1ikjlAzEllWwvzk0jBH8&excomponenttype=Image&signature=dK3XoOHKnikqHwD40IuVH1fjmW_aCtvUxPq4jVmtGSK33kOTARs9pPpeAFBzcpYhprgIqkUsI2Id41TN9NAnE6E_T0Puc6uVFxtxIPb-QwCbYMG_s9Chn2WAhvU1BI7yVMyvmRYU5zzGUbHF68oQP2p_ziwi5ueERMvgXkDrjqSaN0ZRHGDbMMED6u_GyUZfPYXhKSqajDsLX_1XDEdtXKTKB5Ys6zbV6SX6W2JtdvUiucsqqDvSp25HQdCFkUzgf-CSxYGQk3rDc5BdsKPRhkyJ0urbu3CPCNoOeyOEhocBxcNOkQJB5nlH7fX8-4cJFI6KY2P5ExJEbvgUCsAtLA&v=1&imprintMessageId=dc52b392-d138-43bc-a01b-9c139f053603','https://biomechanicseducation.com','Python/3.11 aiohttp/3.11.16',NULL,404,'HEAD',NULL,''),(181503,'2025-07-01 22:34:20','/&tenantid=R_YWUDV7EeyYHygYeLFIdQ&templateid=02d0ca133390ed11ac20cc60c8b203cf&excomponentid=Be3NpEVolLs_3suXH5Edhlj1ikjlAzEllWwvzk0jBH8&excomponenttype=Image&signature=dK3XoOHKnikqHwD40IuVH1fjmW_aCtvUxPq4jVmtGSK33kOTARs9pPpeAFBzcpYhprgIqkUsI2Id41TN9NAnE6E_T0Puc6uVFxtxIPb-QwCbYMG_s9Chn2WAhvU1BI7yVMyvmRYU5zzGUbHF68oQP2p_ziwi5ueERMvgXkDrjqSaN0ZRHGDbMMED6u_GyUZfPYXhKSqajDsLX_1XDEdtXKTKB5Ys6zbV6SX6W2JtdvUiucsqqDvSp25HQdCFkUzgf-CSxYGQk3rDc5BdsKPRhkyJ0urbu3CPCNoOeyOEhocBxcNOkQJB5nlH7fX8-4cJFI6KY2P5ExJEbvgUCsAtLA&v=1&imprintMessageId=dc52b392-d138-43bc-a01b-9c139f053603','https://biomechanicseducation.com','Python/3.11 aiohttp/3.11.16',NULL,404,'GET',NULL,''),(181504,'2025-07-01 22:34:41','/calendar/action~month/exact_date~1589932800/request_format~json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36','https://biomechanicseducation.com/calendar/action~month/exact_date~1589932800/request_format~json',404,'GET',NULL,''),(181505,'2025-07-01 22:43:05','/product-tag/webinar/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181506,'2025-07-01 23:03:22','/philthepillxyz-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://stjohnsgrinnell.org/blog/index.php?op=ViewArticle&articleId=2&blogId=1&page=53777',404,'GET',NULL,''),(181507,'2025-07-01 23:07:44','/usersfiles/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181508,'2025-07-01 23:07:46','/sites/default/files/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181509,'2025-07-01 23:07:46','/upload/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181510,'2025-07-01 23:07:47','/index/function.php/img/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181511,'2025-07-01 23:07:48','/ALFA_DATA/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181512,'2025-07-01 23:07:50','/modules/mod_simplefileuploadv1.3/elements/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181513,'2025-07-01 23:15:40','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181514,'2025-07-01 23:20:17','/knee-biomechanics-part-8-the-muscles-of-the-knee/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181515,'2025-07-01 23:21:39','/headlock-muscle-growth-3-year-old-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181516,'2025-07-01 23:25:39','/stop-stretching/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181517,'2025-07-01 23:28:37','/pregnitude-for-endometriosis-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181518,'2025-07-01 23:32:48','/wordpress','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/wordpress',404,'HEAD',NULL,''),(181519,'2025-07-01 23:32:48','/wp','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/wp',404,'HEAD',NULL,''),(181520,'2025-07-01 23:32:49','/bc','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/bc',404,'HEAD',NULL,''),(181521,'2025-07-01 23:32:50','/bk','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/bk',404,'HEAD',NULL,''),(181522,'2025-07-01 23:32:50','/backup','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.169 Safari/537.36','http://biomechanicseducation.com/backup',404,'HEAD',NULL,''),(181523,'2025-07-01 23:49:37','/phpinfo.php3','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181524,'2025-07-01 23:49:38','/wp-config.cache','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181525,'2025-07-01 23:49:39','/wp-config.dist','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181526,'2025-07-01 23:49:45','/root/infophp','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181527,'2025-07-01 23:49:45','/wp-config.php_old2014','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181528,'2025-07-01 23:49:46','/wp-config.php.2','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181529,'2025-07-01 23:49:46','/wp-config.php.8','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181530,'2025-07-01 23:49:52','/admin/config','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181531,'2025-07-01 23:49:53','/auth/bigquery','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181532,'2025-07-01 23:50:00','/api/shared/config/config.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181533,'2025-07-01 23:50:01','/wp-config.sublime-project','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181534,'2025-07-01 23:50:01','/wp-config.backup','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181535,'2025-07-01 23:50:02','/info','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181536,'2025-07-01 23:50:03','/wp-config.cust','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181537,'2025-07-01 23:50:08','/index.html','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181538,'2025-07-01 23:50:14','/bin','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181539,'2025-07-01 23:50:15','/wp-config.save','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181540,'2025-07-01 23:50:20','/wp-config.stage','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181541,'2025-07-01 23:50:21','/application.properties','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181542,'2025-07-01 23:50:26','/config/application.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181543,'2025-07-01 23:50:33','/app/config.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181544,'2025-07-01 23:50:38','/aws.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181545,'2025-07-01 23:50:38','/wp-config.php.staging','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181546,'2025-07-01 23:50:44','/api/v1/proxy','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181547,'2025-07-01 23:50:50','/src/main/resources/logback.xml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181548,'2025-07-01 23:50:57','/app.py','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181549,'2025-07-01 23:50:57','/main.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181550,'2025-07-01 23:50:58','/admin/proxy','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181551,'2025-07-01 23:50:58','/aws/credentials','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181552,'2025-07-01 23:50:59','/api/v2/proxy','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181553,'2025-07-01 23:51:07','/aws-secret.yaml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181554,'2025-07-01 23:51:07','/computeMetadata/v1','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181555,'2025-07-01 23:51:13','/backend/config/default.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181556,'2025-07-01 23:51:14','/testphpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181557,'2025-07-01 23:51:14','/app_dev.php/_profiler/phpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181558,'2025-07-01 23:51:15','/wp-config.old.old','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181559,'2025-07-01 23:51:15','/api/proxy','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181560,'2025-07-01 23:51:16','/my_env/chakaash.py','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181561,'2025-07-01 23:51:17','/debug/default/view','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181562,'2025-07-01 23:51:18','/wp-config.php.csproj','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181563,'2025-07-01 23:51:18','/wp-config.staging','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181564,'2025-07-01 23:51:19','/config/parameters.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181565,'2025-07-01 23:51:20','/app/config/parameters.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181566,'2025-07-01 23:51:20','/etc/apache2/mods-enabled/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181567,'2025-07-01 23:51:21','/api/objects/codes.php.save','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181568,'2025-07-01 23:51:22','/information','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181569,'2025-07-01 23:51:22','/bin/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181570,'2025-07-01 23:51:23','/phpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181571,'2025-07-01 23:51:29','/api/shared/config.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181572,'2025-07-01 23:51:34','/src/main/resources/application-dev.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181573,'2025-07-01 23:51:35','/admin/internal/api','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181574,'2025-07-01 23:51:36','/wp-config.phpd','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181575,'2025-07-01 23:51:37','/_profiler/phpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181576,'2025-07-01 23:51:42','/api/config/config.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181577,'2025-07-01 23:51:43','/latest/user-data','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181578,'2025-07-01 23:51:44','/wp-config.php.c','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181579,'2025-07-01 23:51:48','/configs/development.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181580,'2025-07-01 23:51:54','/wp-config.bak','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181581,'2025-07-01 23:51:59','/wp-config.swp','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181582,'2025-07-01 23:52:00','/google-cloud-sdk/lib/googlecloudsdk/gcloud.pyo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181583,'2025-07-01 23:52:01','/wp-config.php.sample','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181584,'2025-07-01 23:52:02','/wp-config.cfg','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181585,'2025-07-01 23:52:07','/api/config.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181586,'2025-07-01 23:52:08','/sendgrid.env','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181587,'2025-07-01 23:52:08','/backend/config/development.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181588,'2025-07-01 23:52:09','/env.development.local','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181589,'2025-07-01 23:52:10','/wp-config.b','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181590,'2025-07-01 23:52:11','/latest/meta-data','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181591,'2025-07-01 23:52:12','/php-info','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181592,'2025-07-01 23:52:12','/secrets.yml','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181593,'2025-07-01 23:52:13','/wp-config.backup.txt','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181594,'2025-07-01 23:52:13','/latest/meta-data/iam/security-credentials/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181595,'2025-07-01 23:52:14','/wp-config.php-original','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181596,'2025-07-01 23:52:15','/admin/phpinfo','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181597,'2025-07-01 23:52:15','/wp-config','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181598,'2025-07-01 23:52:20','/my_env/palash.py','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181599,'2025-07-01 23:52:21','/wp-config.production','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181600,'2025-07-01 23:52:22','/wp-config.php_new','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,''),(181601,'2025-07-01 23:55:20','/benzac-gel-zonder-voorschrift-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181602,'2025-07-02 00:05:32','/2023/06/28/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181603,'2025-07-02 00:09:02','/2016/11/14/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181604,'2025-07-02 00:11:21','/cheap-generic-viagra-fast-delivery-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181605,'2025-07-02 00:11:26','/comprar-viagra-generico-online-espaa-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181606,'2025-07-02 00:45:32','/2020/08/10','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','https://biomechanicseducation.com/2020/08/10',404,'GET',NULL,''),(181607,'2025-07-02 00:49:38','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181608,'2025-07-02 01:18:14','/who-would-like-access-to-85-more-clients/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181609,'2025-07-02 01:19:09','/site/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Thinkbot/0.5.8; +In_the_test_phase,_if_the_Thinkbot_brings_you_trouble,_please_block_its_IP_address._Thank_you.)','http://www.biomechanicseducation.com/site/',404,'GET',NULL,''),(181610,'2025-07-02 01:31:41','/are-your-clients-at-risk-of-knee-problems-quadricep-dominance/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Thinkbot/0.5.8; +In_the_test_phase,_if_the_Thinkbot_brings_you_trouble,_please_block_its_IP_address._Thank_you.)','https://www.biomechanicseducation.com/are-your-clients-at-risk-of-knee-problems-quadricep-dominance/',404,'GET',NULL,''),(181611,'2025-07-02 01:38:36','/2017/05/03/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181612,'2025-07-02 01:46:31','/elevate-2023-intrinsic-biomechanics-the-missing-piece-of-the-jigsaw-for-pts/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181613,'2025-07-02 01:48:20','/a-personal-trainers-guide-to-7-styles-of-lunge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181614,'2025-07-02 01:50:59','/great-discussions-egos-trolls-the-2-sides-of-social-media/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181615,'2025-07-02 01:58:15','/ever-heard-of-occams-razor/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181616,'2025-07-02 01:59:11','/product-tag/glutes/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181617,'2025-07-02 02:02:04','/can-you-be-fit-but-unhealthy-at-the-same-time/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181618,'2025-07-02 02:04:01','/do-we-need-to-massage-the-itb/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181619,'2025-07-02 02:18:52','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181620,'2025-07-02 02:29:39','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181621,'2025-07-02 02:31:18','/case-study-simon/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181622,'2025-07-02 02:33:50','/how-should-personal-trainers-choose-exercises-for-their-clients/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 6.1; WOW64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36','https://www.biomechanicseducation.com/how-should-personal-trainers-choose-exercises-for-their-clients/',404,'GET',NULL,''),(181623,'2025-07-02 02:44:27','/vinsanity-shred-ripped-in-90-days-reviews-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181624,'2025-07-02 02:50:40','/the-4-legs-of-life/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181625,'2025-07-02 02:56:29','/calendar/action~month/exact_date~1596758400/request_format~json/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36','https://biomechanicseducation.com/calendar/action~month/exact_date~1596758400/request_format~json/',404,'GET',NULL,''),(181626,'2025-07-02 02:59:37','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181627,'2025-07-02 02:59:37','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181628,'2025-07-02 02:59:38','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181629,'2025-07-02 02:59:38','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181630,'2025-07-02 03:02:50','/the-ripple-effect-how-1-action-can-impact-hundreds-of-others/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181631,'2025-07-02 03:25:35','/shoulder-biomechanics-part-5-the-bones-of-the-shoulder/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181632,'2025-07-02 03:30:21','/wordpress','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181633,'2025-07-02 03:30:22','/wp','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181634,'2025-07-02 03:30:24','/new','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181635,'2025-07-02 03:30:25','/old','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181636,'2025-07-02 03:30:27','/main','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181637,'2025-07-02 03:30:28','/testing','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181638,'2025-07-02 03:31:31','/give-your-clients-an-excuse-to-stop-work/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181639,'2025-07-02 03:47:18','/optimum-nutrition-platinum-hydrobuilder-amazon-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181640,'2025-07-02 03:51:25','/youre-surrounded-by-vampires-heres-what-to-do/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; TikTokSpider; ttspider-feedback@tiktok.com)',NULL,404,'GET',NULL,''),(181641,'2025-07-02 04:17:36','/apple-app-site-association','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)',NULL,404,'GET',NULL,''),(181642,'2025-07-02 04:24:54','/single-joint-vs-functional-assessments-a-personal-trainers-guide/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)',NULL,404,'GET',NULL,''),(181643,'2025-07-02 04:35:43','/weight-shift-piriformis-lots-of-dollars/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181644,'2025-07-02 04:42:25','/the-squat-part-46/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181645,'2025-07-02 04:49:01','/natural-alternative-to-flomax-for-kidney-stones-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)',NULL,404,'GET',NULL,''),(181646,'2025-07-02 05:02:36','/a-pts-guide-to-sciatica/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181647,'2025-07-02 05:06:37','/project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181648,'2025-07-02 05:06:56','/ever-heard-of-occams-razor/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181649,'2025-07-02 05:18:17','/.well-known/apple-app-site-association','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html)',NULL,404,'GET',NULL,''),(181650,'2025-07-02 05:20:56','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181651,'2025-07-02 05:37:50','/hes-a-stooge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181652,'2025-07-02 06:02:40','/shoulder-biomechanics-part-5-the-bones-of-the-shoulder/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181653,'2025-07-02 06:22:58','/apple-app-site-association','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; AdsBot-Google-Mobile; +http://www.google.com/mobile/adsbot.html),gzip(gfe)',NULL,404,'GET',NULL,''),(181654,'2025-07-02 06:41:05','/apo-omeprazole-20-mg-capsule-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181655,'2025-07-02 06:44:38','/remedial-gymnastics/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181656,'2025-07-02 06:44:49','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181657,'2025-07-02 06:45:34','/hip-adduction-abduction-guide-for-personal-trainers/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; BLEXBot/1.0; +https://help.seranking.com/en/blex-crawler)',NULL,404,'GET',NULL,''),(181658,'2025-07-02 07:07:03','/silecms/ueditor/net/controller.ashx?action=catchimage','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64)',NULL,404,'GET',NULL,''),(181659,'2025-07-02 07:08:16','/config.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181660,'2025-07-02 07:08:17','/classwithtostring.php/rbzccnnp.php/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181661,'2025-07-02 07:08:19','/wp-content/plugins/WordPressCore/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181662,'2025-07-02 07:08:21','/alfanew.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181663,'2025-07-02 07:09:22','/1333-2/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181664,'2025-07-02 07:18:17','/calendar/action~week/page_offset~2/time_limit~1619568000/request_format~json','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','https://biomechanicseducation.com/calendar/action~week/page_offset~2/time_limit~1619568000/request_format~json',404,'GET',NULL,''),(181665,'2025-07-02 07:25:16','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181666,'2025-07-02 07:25:17','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181667,'2025-07-02 07:25:17','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181668,'2025-07-02 07:25:17','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181669,'2025-07-02 07:26:36','/budesonide-reddit-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181670,'2025-07-02 07:36:22','/assumptions/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181671,'2025-07-02 07:38:19','/primaviera-deluxe-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181672,'2025-07-02 07:40:07','/myoptumhealthcomdukeenergy-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181673,'2025-07-02 07:46:05','/why-the-pelvis-should-be-the-first-place-you-look-when-assessing-clients/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181674,'2025-07-02 07:46:09','/the-squat-part-1/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181675,'2025-07-02 07:47:36','/true-mass-1200-vs-carnivor-mass-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181676,'2025-07-02 07:52:17','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181677,'2025-07-02 08:06:32','/can-being-fit-stop-you-being-healthy/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181678,'2025-07-02 08:24:22','/prohealthcarehousecom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181679,'2025-07-02 08:50:45','/index.html','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181680,'2025-07-02 08:57:44','/AutoDiscover/autodiscover.xml','https://biomechanicseducation.com','Microsoft Office/16.0 (Windows NT 10.0; Microsoft Word 16.0.18925; Pro)',NULL,404,'POST',NULL,''),(181681,'2025-07-02 09:06:12','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181682,'2025-07-02 09:06:12','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181683,'2025-07-02 09:06:12','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181684,'2025-07-02 09:06:13','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181685,'2025-07-02 09:08:56','/the-cossack-movement-analysis-made-simple/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181686,'2025-07-02 09:11:10','/propecia-canada-class-action-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181687,'2025-07-02 09:11:17','/proxeed-granule-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181688,'2025-07-02 09:11:49','/legalsteroidreviewercom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181689,'2025-07-02 09:32:24','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181690,'2025-07-02 09:51:47','/12-simple-tips-for-feeling-happier-healthier-client-guide/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Safari/605.1.15',NULL,404,'GET',NULL,''),(181691,'2025-07-02 10:46:46','/libraryoumedicinecom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181692,'2025-07-02 10:52:05','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181693,'2025-07-02 11:01:18','/the-weak-core-myth-core-progressions-that-all-personal-trainers-should-know/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181694,'2025-07-02 11:13:31','/commander-sildenafil-pf…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181695,'2025-07-02 11:13:34','/peut-on-commander-d…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181696,'2025-07-02 11:13:37','/prix-cialis-pharmacie-sui…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181697,'2025-07-02 11:13:40','/prix-du-cialis-en-pharma…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181698,'2025-07-02 11:13:43','/prix-du-viagra-en-franc…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181699,'2025-07-02 11:13:46','/prix-du-viagra-en-pharm…','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181700,'2025-07-02 11:13:50','/…60-mg-','https://biomechanicseducation.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,''),(181701,'2025-07-02 11:40:05','/movement-fitness-daft/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36 Edg/101.0.1210.47','https://biomechanicseducation.com/movement-fitness-daft/',404,'GET',NULL,''),(181702,'2025-07-02 11:47:03','/foot-biomechanics-made-simple-part-2-how-to-test-correct-imbalances-in-foot-biomechanics/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(181703,'2025-07-02 11:52:53','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181704,'2025-07-02 11:52:53','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181705,'2025-07-02 11:52:54','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181706,'2025-07-02 11:52:54','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181707,'2025-07-02 11:57:10','/onlinepharmacy-nz-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181708,'2025-07-02 12:08:12','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181709,'2025-07-02 13:21:58','/edmontonsciaticatreatmentcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181710,'2025-07-02 13:33:41','/allieddrugcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181711,'2025-07-02 13:33:51','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181712,'2025-07-02 13:35:30','/2018/09/10/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181713,'2025-07-02 13:36:56','/product/imovefreely-instructor-online-virtual-workshop/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,''),(181714,'2025-07-02 13:44:29','/the-turkish-get-up/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Safari/605.1.15',NULL,404,'GET',NULL,''),(181715,'2025-07-02 13:50:58','/calendar/action~oneday/exact_date~14-6-2020','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','https://biomechanicseducation.com/calendar/action~oneday/exact_date~14-6-2020',404,'GET',NULL,''),(181716,'2025-07-02 14:04:34','/is-there-a-generic-for-benicar-20-mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181717,'2025-07-02 14:31:11','/product/imovefreely-instructor-online-virtual-workshop/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181718,'2025-07-02 14:31:11','/product/imovefreely-instructor-online-virtual-workshop/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181719,'2025-07-02 14:31:20','/product/imovefreely-instructor-online-virtual-workshop/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181720,'2025-07-02 14:40:21','/wp-content/up','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181721,'2025-07-02 14:49:04','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181722,'2025-07-02 15:19:41','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181723,'2025-07-02 15:19:42','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181724,'2025-07-02 15:19:42','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181725,'2025-07-02 15:19:42','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181726,'2025-07-02 15:22:35','/why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36',NULL,404,'GET',NULL,''),(181727,'2025-07-02 15:29:15','/product/intrinsic-biomechanics-taster/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181728,'2025-07-02 15:36:58','/alfa-rex.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181729,'2025-07-02 15:37:00','/wp-admin/js/widgets/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181730,'2025-07-02 15:37:00','/wp-p.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181731,'2025-07-02 15:37:00','/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181732,'2025-07-02 15:37:01','/alfanew.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181733,'2025-07-02 15:37:01','/adminfuns.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181734,'2025-07-02 15:37:01','/ebs.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181735,'2025-07-02 15:37:01','/ws.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181736,'2025-07-02 15:37:02','/alfanew2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181737,'2025-07-02 15:37:02','/alfa-rex2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181738,'2025-07-02 15:37:03','/chosen','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181739,'2025-07-02 15:37:05','/ynz.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181740,'2025-07-02 15:37:06','/worm0.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181741,'2025-07-02 15:37:06','/wp-content/uploads/wp-login.php.suspected','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181742,'2025-07-02 15:37:07','/wp-includes/pomo/fgertreyersd.php.suspected','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181743,'2025-07-02 15:44:06','/wp-content/plugins/really-simple-ssl/readme.txt','https://biomechanicseducation.com','Mozilla/6.4 (Windows NT 11.1) Gecko/2010102 Firefox/99.0','www.google.com',404,'GET',NULL,''),(181744,'2025-07-02 15:44:17','/wp-content/plugins/really-simple-ssl-pro/readme.txt','https://biomechanicseducation.com','Mozilla/6.4 (Windows NT 11.1) Gecko/2010102 Firefox/99.0','www.google.com',404,'GET',NULL,''),(181745,'2025-07-02 15:44:24','/wp-content/plugins/really-simple-ssl-pro-multisite/readme.txt','https://biomechanicseducation.com','Mozilla/6.4 (Windows NT 11.1) Gecko/2010102 Firefox/99.0','www.google.com',404,'GET',NULL,''),(181746,'2025-07-02 15:48:59','/prescription-drugs-america-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181747,'2025-07-02 15:59:34','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181748,'2025-07-02 15:59:34','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181749,'2025-07-02 16:30:46','/@vite/env','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181750,'2025-07-02 16:30:47','/actuator/env','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181751,'2025-07-02 16:30:47','/server','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181752,'2025-07-02 16:30:47','/debug/default/view?panel=config','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181753,'2025-07-02 16:30:48','/v2/_catalog','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181754,'2025-07-02 16:30:48','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181755,'2025-07-02 16:30:48','/server-status','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181756,'2025-07-02 16:30:48','/login.action','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181757,'2025-07-02 16:30:49','/_all_dbs','https://biomechanicseducation.com','Mozilla/5.0 (l9scan/2.0.9333e21373e2730323e27363; +https://leakix.net)',NULL,404,'GET',NULL,''),(181758,'2025-07-02 16:30:49','/s/9333e21373e2730323e27363/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181759,'2025-07-02 16:30:49','/config.json','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181760,'2025-07-02 16:30:49','/telescope/requests','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(181761,'2025-07-02 16:42:18','/are-you-up-to-the-beyond-90-challenge/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148',NULL,404,'GET',NULL,''),(181762,'2025-07-02 16:42:23','/are-you-up-to-the-beyond-90-challenge/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(181763,'2025-07-02 16:44:21','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181764,'2025-07-02 16:44:22','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(181765,'2025-07-02 16:44:22','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181766,'2025-07-02 16:44:22','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(181767,'2025-07-02 17:02:15','/calendar/action~oneday/page_offset~-1/time_limit~1613350800/request_format~json/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36','https://biomechanicseducation.com/calendar/action~oneday/page_offset~-1/time_limit~1613350800/request_format~json/',404,'GET',NULL,''),(181768,'2025-07-02 17:19:04','/stop-stretching/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181769,'2025-07-02 17:20:00','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181770,'2025-07-02 17:46:23','/viagrailacnet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181771,'2025-07-02 17:47:30','/sildenafil-viagra-works-by-quizlet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181772,'2025-07-02 17:47:35','/viagra-online-pharmacy-europe-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181773,'2025-07-02 18:12:46','/abruzi.php4','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(181774,'2025-07-02 18:13:06','/wp-includes/SimplePie/Nglish.ph','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(181775,'2025-07-02 18:15:03','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181776,'2025-07-02 18:28:13','/budesonide-reddit-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181777,'2025-07-02 18:54:15','/category/uncategorized/page/4/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,''),(181778,'2025-07-02 19:15:55','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181779,'2025-07-02 19:24:53','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181780,'2025-07-02 19:25:02','/quetiapine-25mg-tab-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181781,'2025-07-02 19:30:44','/segelininecom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181782,'2025-07-02 19:38:23','/the-squat-part-1/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181783,'2025-07-02 19:46:57','/4-tactics-to-help-your-clients-stick-to-their-new-healthy-habits/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(181784,'2025-07-02 20:05:55','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181785,'2025-07-02 20:15:36','/is-there-such-a-thing-as-caring-too-much/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181786,'2025-07-02 20:20:23','/tribulus-terrestris-tablets-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181787,'2025-07-02 20:22:34','/boldenona-ciclo-efeitos-colaterais-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181788,'2025-07-02 20:22:39','/cheap-siagra-uk-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181789,'2025-07-02 20:22:44','/fluticasone-nasal-spray-pregnancy-class-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181790,'2025-07-02 20:22:48','/proti-farm-holding-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181791,'2025-07-02 20:28:24','/shoulder-biomechanics-part-5-the-bones-of-the-shoulder/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181792,'2025-07-02 20:32:30','/what-happens-if-methylprednisolone-acetate-is-given-iv-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 Edg/112.0.1722.68',NULL,404,'GET',NULL,''),(181793,'2025-07-02 20:43:06','/config/production.json','https://biomechanicseducation.com','Mozilla/5.0 (Debian; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181794,'2025-07-02 20:43:07','/settings.json','https://biomechanicseducation.com','Mozilla/5.0 (Mac OS X 13_2) AppleWebKit/537.36 (KHTML, like Gecko) Safari/129.0 Safari/537.36',NULL,404,'GET',NULL,''),(181795,'2025-07-02 20:43:07','/config.production.json','https://biomechanicseducation.com','Mozilla/5.0 (Knoppix; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181796,'2025-07-02 20:43:07','/config/app.json','https://biomechanicseducation.com','Mozilla/5.0 (Ubuntu; Linux i686; rv:122.0) Gecko/20100101 Firefox/122.0',NULL,404,'GET',NULL,''),(181797,'2025-07-02 20:43:07','/config.prod.json','https://biomechanicseducation.com','Mozilla/5.0 (Knoppix; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181798,'2025-07-02 20:43:07','/configuration.json','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,''),(181799,'2025-07-02 20:43:07','/configs.json','https://biomechanicseducation.com','Mozilla/5.0 (Kubuntu; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181800,'2025-07-02 20:43:07','/config/config.json','https://biomechanicseducation.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181801,'2025-07-02 20:43:07','/config.local.json','https://biomechanicseducation.com','Mozilla/5.0 (Ubuntu; Linux i686; rv:121.0) Gecko/20100101 Firefox/121.0',NULL,404,'GET',NULL,''),(181802,'2025-07-02 20:43:08','/config/prod.json','https://biomechanicseducation.com','Mozilla/5.0 (Debian; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181803,'2025-07-02 20:43:08','/config/development.json','https://biomechanicseducation.com','Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181804,'2025-07-02 20:43:08','/assets/configs.json','https://biomechanicseducation.com','Mozilla/5.0 (X11; Linux i686; rv:124.0) Gecko/20100101 Firefox/124.0',NULL,404,'GET',NULL,''),(181805,'2025-07-02 20:43:08','/config.development.json','https://biomechanicseducation.com','Mozilla/5.0 (Ubuntu; Linux x86_64; rv:129.0) Gecko/20100101 Firefox/129.0',NULL,404,'GET',NULL,''),(181806,'2025-07-02 20:43:08','/conf.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:107.0) Gecko/20100101 Firefox/107.0',NULL,404,'GET',NULL,''),(181807,'2025-07-02 20:43:08','/config/default.json','https://biomechanicseducation.com','Mozilla/5.0 (Fedora; Linux i686; rv:122.0) Gecko/20100101 Firefox/122.0',NULL,404,'GET',NULL,''),(181808,'2025-07-02 20:43:08','/config.staging.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 11.0) AppleWebKit/537.36 (KHTML, like Gecko) Safari/104.0 Safari/537.36',NULL,404,'GET',NULL,''),(181809,'2025-07-02 20:43:08','/application.json','https://biomechanicseducation.com','Mozilla/5.0 (Debian; Linux i686; rv:132.0) Gecko/20100101 Firefox/132.0',NULL,404,'GET',NULL,''),(181810,'2025-07-02 20:43:08','/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1.1 Safari/605.1.1',NULL,404,'GET',NULL,''),(181811,'2025-07-02 20:43:08','/app.config.json','https://biomechanicseducation.com','Mozilla/5.0 (Knoppix; Linux i686; rv:126.0) Gecko/20100101 Firefox/126.0',NULL,404,'GET',NULL,''),(181812,'2025-07-02 20:43:08','/config.test.json','https://biomechanicseducation.com','Mozilla/5.0 (Ubuntu; Linux i686; rv:120.0) Gecko/20100101 Firefox/120.0',NULL,404,'GET',NULL,''),(181813,'2025-07-02 20:43:08','/config.dev.json','https://biomechanicseducation.com','Mozilla/5.0 (Debian; Linux i686; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,''),(181814,'2025-07-02 20:43:08','/assets/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Debian; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181815,'2025-07-02 20:43:08','/assets/config.production.json','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(181816,'2025-07-02 20:43:08','/src/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko)Safari/537.36',NULL,404,'GET',NULL,''),(181817,'2025-07-02 20:43:09','/app/config.json','https://biomechanicseducation.com','Mozilla/5.0 (CentOS; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181818,'2025-07-02 20:43:49','/static/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 13_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.15',NULL,404,'GET',NULL,''),(181819,'2025-07-02 20:43:50','/js/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.8.1 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(181820,'2025-07-02 20:43:50','/api/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Mac OS X 13_2) AppleWebKit/537.36 (KHTML, like Gecko) Edge/114.0 Safari/537.36',NULL,404,'GET',NULL,''),(181821,'2025-07-02 20:43:51','/dist/config.json','https://biomechanicseducation.com','Mozilla/5.0 (CentOS; Linux x86_64; rv:132.0) Gecko/20100101 Firefox/132.0',NULL,404,'GET',NULL,''),(181822,'2025-07-02 20:43:51','/secrets/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Kubuntu; Linux i686; rv:123.0) Gecko/20100101 Firefox/123.0',NULL,404,'GET',NULL,''),(181823,'2025-07-02 20:43:51','/angular/config.json','https://biomechanicseducation.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181824,'2025-07-02 20:43:51','/vue/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181825,'2025-07-02 20:43:51','/credentials/config.json','https://biomechanicseducation.com','Mozilla/5.0 (ZZ; Linux x86_64; rv:132.0) Gecko/20100101 Firefox/132.0',NULL,404,'GET',NULL,''),(181826,'2025-07-02 20:43:51','/secret/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Safari/605.1.15',NULL,404,'GET',NULL,''),(181827,'2025-07-02 20:43:51','/react/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 11.0) AppleWebKit/537.36 (KHTML, like Gecko) Safari/103.0 Safari/537.36',NULL,404,'GET',NULL,''),(181828,'2025-07-02 20:43:51','/public/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:132.0) Gecko/20100101 Firefox/132.0',NULL,404,'GET',NULL,''),(181829,'2025-07-02 20:43:51','/apiconfig.json','https://biomechanicseducation.com','Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181830,'2025-07-02 20:43:51','/db/config.json','https://biomechanicseducation.com','Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0',NULL,404,'GET',NULL,''),(181831,'2025-07-02 20:43:52','/mysql/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Knoppix; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181832,'2025-07-02 20:43:52','/auth/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Mac OS X 13_2) AppleWebKit/537.36 (KHTML, like Gecko) Edge/119.0 Safari/537.36',NULL,404,'GET',NULL,''),(181833,'2025-07-02 20:43:52','/keys/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Ubuntu; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181834,'2025-07-02 20:43:52','/s3/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.4 Safari/605.1.15',NULL,404,'GET',NULL,''),(181835,'2025-07-02 20:43:52','/api/v1/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Knoppix; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181836,'2025-07-02 20:43:52','/database/config.json','https://biomechanicseducation.com','Mozilla/5.0 (CentOS; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181837,'2025-07-02 20:43:52','/cloud/config.json','https://biomechanicseducation.com','Mozilla/5.0 (SS; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181838,'2025-07-02 20:43:52','/aws/credentials.json','https://biomechanicseducation.com','Mozilla/5.0 (Fedora; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181839,'2025-07-02 20:43:52','/aws/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.7 Safari/605.1.15',NULL,404,'GET',NULL,''),(181840,'2025-07-02 20:43:52','/postgres/config.json','https://biomechanicseducation.com','Mozilla/5.0 (ZZ; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(181841,'2025-07-02 20:43:52','/api/v2/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 11.0) AppleWebKit/537.36 (KHTML, like Gecko) Safari/119.0 Safari/537.36',NULL,404,'GET',NULL,''),(181842,'2025-07-02 20:43:52','/mongodb/config.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 11.0) AppleWebKit/537.36 (KHTML, like Gecko) Safari/115.0 Safari/537.36',NULL,404,'GET',NULL,''),(181843,'2025-07-02 20:57:31','/ever-heard-of-occams-razor/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181844,'2025-07-02 21:09:37','/cognifocus-definition-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181845,'2025-07-02 21:20:38','/thank-you-diploma/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181846,'2025-07-02 21:28:41','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181847,'2025-07-02 21:36:09','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,404,'GET',NULL,''),(181848,'2025-07-02 21:48:03','/product-tag/sciatic/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181849,'2025-07-02 21:51:14','/thank-you-diploma/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181850,'2025-07-02 21:53:18','/minocycline-vs-doxycycline-for-acne-treatment-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181851,'2025-07-02 21:55:15','/how-does-the-fitness-industry-need-to-adapt/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','https://www.biomechanicseducation.com/how-does-the-fitness-industry-need-to-adapt/',404,'GET',NULL,''),(181852,'2025-07-02 22:04:44','/product/weak-glutes-free-webinar/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181853,'2025-07-02 22:34:13','/product/intrinsic-biomechanics-taster/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181854,'2025-07-02 22:55:51','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181855,'2025-07-02 22:56:06','/prostate-5lx-order-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181856,'2025-07-02 23:07:36','/assumptions/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181857,'2025-07-02 23:13:49','/online-learning-versus-face-to-face-education-in-the-fitness-industry-which-is-better/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','https://www.biomechanicseducation.com/online-learning-versus-face-to-face-education-in-the-fitness-industry-which-is-better/',404,'GET',NULL,''),(181858,'2025-07-02 23:26:35','/product-category/prods/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181859,'2025-07-03 00:14:28','/project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181860,'2025-07-03 00:25:01','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181861,'2025-07-03 00:25:01','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181862,'2025-07-03 00:36:17','/sites/default/files/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181863,'2025-07-03 00:36:17','/assets/images/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181864,'2025-07-03 00:36:17','/index/function.php/img/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181865,'2025-07-03 00:36:17','/upload/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181866,'2025-07-03 00:36:18','/ALFA_DATA/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181867,'2025-07-03 00:36:19','/vendor/phpunit/phpunit/src/Util/PHP/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181868,'2025-07-03 00:36:20','/as/function','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181869,'2025-07-03 00:36:20','/alfa-rex.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181870,'2025-07-03 00:36:20','/alfa-rex2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181871,'2025-07-03 00:36:20','/ws.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181872,'2025-07-03 00:36:21','/wp-admin/js/widgets/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181873,'2025-07-03 00:36:22','/alfanew2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181874,'2025-07-03 00:36:22','/admin/controller/extension/extension/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181875,'2025-07-03 00:36:23','/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181876,'2025-07-03 00:36:24','/usersfiles/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181877,'2025-07-03 00:36:24','/wp-p.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181878,'2025-07-03 00:36:25','/ebs.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181879,'2025-07-03 00:36:25','/wp-includes/theme-compat/theme-compat/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181880,'2025-07-03 00:36:25','/.well-known/pki-validation/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181881,'2025-07-03 00:36:26','/modules/mod_simplefileuploadv1.3/elements/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181882,'2025-07-03 00:36:26','/plugins/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181883,'2025-07-03 00:36:27','/wp-admin/meta/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181884,'2025-07-03 00:36:27','/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181885,'2025-07-03 00:36:28','/.well-known/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181886,'2025-07-03 00:36:28','/templates/beez3/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181887,'2025-07-03 00:36:28','/up/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181888,'2025-07-03 00:36:28','/admin/uploads/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181889,'2025-07-03 00:36:28','/alfanew.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181890,'2025-07-03 00:36:29','/adminfuns.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181891,'2025-07-03 00:40:15','/shoulder-biomechanics-part-5-the-bones-of-the-shoulder/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,404,'GET',NULL,''),(181892,'2025-07-03 01:15:06','/site/find-a-coach/biomechanics-coach-profiles/453-mairi-taylor-biomechanics-coach-january-2016','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181893,'2025-07-03 01:26:30','/are-your-clients-moving-too-much-or-not-enough/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,''),(181894,'2025-07-03 01:27:12','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181895,'2025-07-03 01:28:06','/quest-coconut-powder-review-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181896,'2025-07-03 01:39:38','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181897,'2025-07-03 01:52:30','/wwwoxfordhealthnhsuktissue-viability-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181898,'2025-07-03 01:55:12','/the-4-legs-of-life/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181899,'2025-07-03 02:05:23','/foot-biomechanics-part-9-the-bones-of-the-foot-ankle/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181900,'2025-07-03 02:17:27','/1333-2/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181901,'2025-07-03 02:43:55','/hes-a-stooge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181902,'2025-07-03 03:10:34','/2023/12/20/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181903,'2025-07-03 03:31:00','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181904,'2025-07-03 03:43:32','/organic-love-beets-costco-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181905,'2025-07-03 03:47:34','/is-there-a-right-shoe-for-you/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','https://www.biomechanicseducation.com/is-there-a-right-shoe-for-you/',404,'GET',NULL,''),(181906,'2025-07-03 03:47:42','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.34 Safari/537.36','https://www.biosphericperformance.com',404,'HEAD',NULL,''),(181907,'2025-07-03 03:47:43','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.34 Safari/537.36','https://www.biosphericperformance.com',404,'GET',NULL,''),(181908,'2025-07-03 03:50:12','/product-tag/webinar/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181909,'2025-07-03 03:58:12','/muellersportsmedcom-linkedin-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181910,'2025-07-03 04:14:08','/they-say-it-but-do-they-practice-it/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181911,'2025-07-03 04:23:42','/para-que-sirve-metoprolol-50-mg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181912,'2025-07-03 04:56:25','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181913,'2025-07-03 05:04:30','/product-tag/sumo/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181914,'2025-07-03 05:20:11','/wp-includes/wlwmanifest.xml','https://biomechanicseducation.com','python-requests/2.27.1',NULL,404,'GET',NULL,''),(181915,'2025-07-03 05:21:49','/prescription-drugs-that-cause-ed-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181916,'2025-07-03 05:27:20','/product-tag/sumo/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181917,'2025-07-03 05:45:38','/why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181918,'2025-07-03 05:57:03','/cheap-purchase-online-aquabolic-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 Vivaldi/5.3.2679.68','https://www.biomechanicseducation.com/cheap-purchase-online-aquabolic-7c44.pdf',404,'GET',NULL,''),(181919,'2025-07-03 06:11:27','/why-the-pelvis-should-be-the-first-place-you-look-when-assessing-clients/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181920,'2025-07-03 06:11:28','/why-the-pelvis-should-be-the-first-place-you-look-when-assessing-clients/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.84 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181921,'2025-07-03 06:22:03','/feminax-express-leaflet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181922,'2025-07-03 06:25:02','/randkeyword.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181923,'2025-07-03 06:25:02','/alfa-rex.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181924,'2025-07-03 06:25:04','/wp-content/uploads/2023/08/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181925,'2025-07-03 06:25:04','/css/dmtixucz/golden-access/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181926,'2025-07-03 06:25:07','/.well-known/pki-validation/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181927,'2025-07-03 06:25:10','/admin/controller/extension/extension/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181928,'2025-07-03 06:25:10','/public/en','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181929,'2025-07-03 06:25:11','/about.PHP','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181930,'2025-07-03 06:25:11','/pki-validation/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181931,'2025-07-03 06:25:12','/class-php','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181932,'2025-07-03 06:25:15','/1.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181933,'2025-07-03 06:25:16','/gebase.php69','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181934,'2025-07-03 06:25:16','/admin.php1','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181935,'2025-07-03 06:25:16','/rbh/log','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181936,'2025-07-03 06:25:17','/alfanew.PHP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181937,'2025-07-03 06:25:17','/wq.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181938,'2025-07-03 06:25:18','/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181939,'2025-07-03 06:25:18','/ALFA_DATA/alfacgiapi/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181940,'2025-07-03 06:25:19','/test.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181941,'2025-07-03 06:25:19','/ws.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181942,'2025-07-03 06:25:20','/gawean.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181943,'2025-07-03 06:25:20','/themes/zMous','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181944,'2025-07-03 06:25:20','/ioxi001.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181945,'2025-07-03 06:25:21','/about.php525','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181946,'2025-07-03 06:25:22','/css/dist/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181947,'2025-07-03 06:25:23','/alfanew2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181948,'2025-07-03 06:25:23','/alfanew.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181949,'2025-07-03 06:25:24','/ioxi002.PhP7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181950,'2025-07-03 06:25:25','/wp-content/uploads/setup','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181951,'2025-07-03 06:25:25','/config.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181952,'2025-07-03 06:25:26','/wp-content/plugins/wordfence/js/','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(181953,'2025-07-03 07:32:08','/wp-content/plugins/booking-calendar/readme.txt','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.1.2.3 Safari/537.36 Edg/121.0.623.86',NULL,404,'GET',NULL,''),(181954,'2025-07-03 07:42:34','/2016/11/14/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181955,'2025-07-03 07:43:15','/stop-stretching/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181956,'2025-07-03 07:47:03','/site/testimonials/biomechanics-coach-profiles/232-emma-westmacott-biomechanics-coach-october','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.34 Safari/537.36','https://www.biosphericperformance.com',404,'HEAD',NULL,''),(181957,'2025-07-03 07:47:04','/site/testimonials/biomechanics-coach-profiles/232-emma-westmacott-biomechanics-coach-october','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.34 Safari/537.36','https://www.biosphericperformance.com',404,'GET',NULL,''),(181958,'2025-07-03 07:51:53','/intrinsic-biomechanics-association/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; BLEXBot/1.0; +https://help.seranking.com/en/blex-crawler)',NULL,404,'GET',NULL,''),(181959,'2025-07-03 07:55:30','/intrinsic-biomechanics-for-personal-trainers/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181960,'2025-07-03 08:05:26','/little-griddle-sq180-universal-griddle-for-bbq-grills-stainless-formerly-the-sizzle-q-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36',NULL,404,'GET',NULL,''),(181961,'2025-07-03 08:10:25','/the-deadlift-which-variation-is-right-for-you/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181962,'2025-07-03 08:19:06','/product/shoulder-knee-foot-biomechanics-online-cpd-training/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_1) AppleWebKit/601.2.4 (KHTML, like Gecko) Version/9.0.1 Safari/601.2.4 facebookexternalhit/1.1 Facebot Twitterbot/1.0',NULL,404,'GET',NULL,''),(181963,'2025-07-03 08:19:30','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181964,'2025-07-03 08:20:52','/ever-been-attacked-a-keyboard-warrior/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181965,'2025-07-03 08:56:08','/a-pts-guide-to-sciatica/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181966,'2025-07-03 09:12:37','/single-joint-vs-functional-assessments-a-personal-trainers-guide/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)',NULL,404,'GET',NULL,''),(181967,'2025-07-03 09:22:49','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181968,'2025-07-03 09:47:24','/biomechanics-coach-diploma-2/?fbclid=IwZXh0bgNhZW0CMTEAAR5Y6xNNfF-rR5qwm-vxaQ3It37Dqy65eREqC7waXiShl8PupFH0-_AQpNuZCQ_aem_pwJIS-wYBYhWYCXK5s8yCg','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 12; SM-A032F Build/SP1A.210812.016; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/137.0.7151.115 Mobile Safari/537.36 [FBAN/AudienceNetworkForWindows;FBDV/SM-A032F;FBSV/12;FBAV/453.0.0.18.113;FBLC/en_US]',NULL,404,'GET',NULL,''),(181969,'2025-07-03 10:07:38','/product/shoulder-biomechanics-practical-anatomy-part-3-the-bones-muscles-actions/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',NULL,404,'GET',NULL,''),(181970,'2025-07-03 10:13:18','/the-franklin-method/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','https://biomechanicseducation.com/the-franklin-method/',404,'GET',NULL,''),(181971,'2025-07-03 10:41:48','/tadalafil-comprare-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181972,'2025-07-03 10:43:58','/minoxidil-precio-mexico-df-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181973,'2025-07-03 10:49:25','/my-horrific-halloween-earwax-experience/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181974,'2025-07-03 10:53:22','/meta.json','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181975,'2025-07-03 11:03:18','/esomeprazole-dr-40-mg-cap-tor-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181976,'2025-07-03 11:13:53','/AutoDiscover/autodiscover.xml','https://biomechanicseducation.com','Microsoft Office/16.0 (Windows NT 10.0; Microsoft Excel 16.0.18925; Pro)',NULL,404,'POST',NULL,''),(181977,'2025-07-03 11:16:15','/myoptumhealthcomdukeenergy-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181978,'2025-07-03 11:22:16','/force-factor-fuego-pre-workout-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181979,'2025-07-03 11:28:11','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181980,'2025-07-03 11:32:43','/online-learning-versus-face-to-face-education-in-the-fitness-industry-which-is-better/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','https://www.biomechanicseducation.com/online-learning-versus-face-to-face-education-in-the-fitness-industry-which-is-better/',404,'GET',NULL,''),(181981,'2025-07-03 11:56:10','/elbow-pain-when-pulling-gripping-or-pressing','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','https://biomechanicseducation.com/elbow-pain-when-pulling-gripping-or-pressing',404,'GET',NULL,''),(181982,'2025-07-03 12:17:51','/product/introduction-to-running-biomechanics-online-cpd-training/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181983,'2025-07-03 12:29:45','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181984,'2025-07-03 12:59:13','/the-windmill-vs-the-triangle/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181985,'2025-07-03 12:59:14','/the-windmill-vs-the-triangle/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(181986,'2025-07-03 13:17:21','/high-dose-methotrexate-protocol-cns-lymphoma-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181987,'2025-07-03 13:21:21','/true-mass-1200-vs-carnivor-mass-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181988,'2025-07-03 13:21:33','/venegra-uk-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181989,'2025-07-03 13:39:45','/want-to-learn-how-to-manage-time/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181990,'2025-07-03 13:39:45','/want-to-learn-how-to-manage-time/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181991,'2025-07-03 13:46:00','/10-minute-squat-test/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(181992,'2025-07-03 13:47:07','/calendar/action~month/exact_date~1589932800/request_format~json/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','https://biomechanicseducation.com/calendar/action~month/exact_date~1589932800/request_format~json/',404,'GET',NULL,''),(181993,'2025-07-03 13:58:55','/courses/cpd-courses/introduction-to-intrinsic-biomechanics/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.3',NULL,404,'GET',NULL,''),(181994,'2025-07-03 14:03:06','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181995,'2025-07-03 14:21:46','/product/working-with-shoulder-issues-webinar-dec-9th-2020-10am-12pm/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(181996,'2025-07-03 14:31:09','/great-discussions-egos-trolls-the-2-sides-of-social-media/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(181997,'2025-07-03 15:02:50','/losartan-hctz-medscape-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(181998,'2025-07-03 15:18:18','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(181999,'2025-07-03 15:37:58','/ALFA_DATA/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(182000,'2025-07-03 15:37:58','/alfacgiapi/perl.alfa','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,''),(182001,'2025-07-03 15:37:58','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(182002,'2025-07-03 15:37:59','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://biomechanicseducation.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,''),(182003,'2025-07-03 15:41:31','/sitemap.txt','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182004,'2025-07-03 15:57:11','/wp-content/up','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182005,'2025-07-03 16:22:53','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(182006,'2025-07-03 16:22:54','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(182007,'2025-07-03 16:27:35','/doctorkeppelcom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182008,'2025-07-03 16:27:44','/my-experience-of-being-a-level-4-strength-conditioning-learner-day-1-2/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182009,'2025-07-03 16:40:06','/sitemap.txt','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182010,'2025-07-03 16:58:54','/product-category/uncategorized/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Bytespider; spider-feedback@bytedance.com) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(182011,'2025-07-03 17:12:39','/pharmacycloudsiteir-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182012,'2025-07-03 17:13:10','/virmax-results-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182013,'2025-07-03 17:18:57','/can-being-fit-stop-you-being-healthy/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182014,'2025-07-03 17:45:46','/how-your-pectoralis-minor-can-affect-your-squat-depth/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182015,'2025-07-03 17:45:46','/how-your-pectoralis-minor-can-affect-your-squat-depth/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182016,'2025-07-03 17:54:26','/why-more-pulling-might-not-be-the-answer-to-those-rounded-shoulders/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182017,'2025-07-03 17:56:38','/?author=2','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7; rv:127.0) Gecko/20100101 Firefox/127.0','https://biomechanicseducation.com',404,'GET',NULL,''),(182018,'2025-07-03 17:59:04','/virility-ex-cost-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182019,'2025-07-03 18:01:56','/grit-vs-talent-which-will-more-likely-result-in-achievement/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182020,'2025-07-03 18:08:44','/alfa-rex.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182021,'2025-07-03 18:08:45','/wp-admin/js/widgets/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182022,'2025-07-03 18:08:45','/wp-p.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182023,'2025-07-03 18:08:45','/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182024,'2025-07-03 18:08:46','/alfanew.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182025,'2025-07-03 18:08:46','/adminfuns.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182026,'2025-07-03 18:08:46','/ebs.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182027,'2025-07-03 18:08:46','/ws.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182028,'2025-07-03 18:08:46','/alfanew2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182029,'2025-07-03 18:08:46','/alfa-rex2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182030,'2025-07-03 18:40:46','/sildenafil-ratiopharm-100-mg-filmtabletten-preis-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182031,'2025-07-03 18:41:49','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(182032,'2025-07-03 18:45:19','/sync-testosterone-booster-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182033,'2025-07-03 19:04:03','/obat-untuk-apakah-profertil-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182034,'2025-07-03 19:05:41','/grit-vs-talent-which-will-more-likely-result-in-achievement/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182035,'2025-07-03 19:08:21','/meta.json','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182036,'2025-07-03 19:36:05','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(182037,'2025-07-03 19:36:06','/ads.txt','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(182038,'2025-07-03 19:40:46','/rythmia-life-advancement-center-ayahuasca-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182039,'2025-07-03 19:48:16','/1333-2/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182040,'2025-07-03 20:03:47','/site/','https://biomechanicseducation.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,''),(182041,'2025-07-03 20:05:55','/what-is-the-difference-between-prescription-drugs-and-recreational-drugs-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182042,'2025-07-03 20:06:11','/magento_version','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0',NULL,404,'GET',NULL,''),(182043,'2025-07-03 20:06:11','/util/login.aspx','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0',NULL,404,'GET',NULL,''),(182044,'2025-07-03 20:06:50','/product-tag/sciatic/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182045,'2025-07-03 20:12:03','/calendar/action~month/exact_date~1596758400/request_format~json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36','https://biomechanicseducation.com/calendar/action~month/exact_date~1596758400/request_format~json',404,'GET',NULL,''),(182046,'2025-07-03 20:17:54','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(182047,'2025-07-03 20:23:39','/spine-mobility-project/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182048,'2025-07-03 20:24:03','/the-squat-part-46/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182049,'2025-07-03 20:24:53','/level-4-lower-back-pain-specialist-diploma-in-biomechanics-coaching/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182050,'2025-07-03 20:25:07','/procalisx-india-contact-numbers-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182051,'2025-07-03 20:33:18','/case-study-simon/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182052,'2025-07-03 20:51:19','/zycos-mgi-pharma-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)',NULL,404,'GET',NULL,''),(182053,'2025-07-03 21:10:34','/hemorrhostop-cream-how-to-apply-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182054,'2025-07-03 21:18:17','/golf-biomechanics-workshops','https://biomechanicseducation.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4298.0 Safari/537.36',NULL,404,'GET',NULL,''),(182055,'2025-07-03 21:36:34','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64)AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36',NULL,404,'GET',NULL,''),(182056,'2025-07-03 21:39:07','/wp-content/up','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182057,'2025-07-03 21:48:29','/elbow-pain-when-pulling-gripping-or-pressing/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','https://biomechanicseducation.com/elbow-pain-when-pulling-gripping-or-pressing/',404,'GET',NULL,''),(182058,'2025-07-03 21:56:56','/acadpharmorg-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182059,'2025-07-03 22:24:55','/doxycycline-uses-in-hindi-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://emisoraurdimbre.org/index.php/component/k2/item/23-con-sisben-el-sitp-es-mas-barato/23-con-sisben-el-sitp-es-mas-barato?start=26560',404,'GET',NULL,''),(182060,'2025-07-03 22:36:18','/.well-known/assetlinks.json','https://biomechanicseducation.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(182061,'2025-07-03 22:55:54','/wp-config.php_hlt','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(182062,'2025-07-03 22:55:55','/wp-config.php.tpl','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(182063,'2025-07-03 22:55:56','/wp-config.php.mlehr.bak','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(182064,'2025-07-03 22:55:57','/wp-config.php_old2','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(182065,'2025-07-03 22:55:58','/wp-config.php_OLD_BK','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(182066,'2025-07-03 22:55:59','/wp-config.php_antigo','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(182067,'2025-07-03 22:56:03','/wp-config.phpoldd','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(182068,'2025-07-03 22:56:04','/wp-config.php.old','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(182069,'2025-07-03 22:58:01','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(182070,'2025-07-03 23:07:35','/its-right-in-front-of-your-nose/','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182071,'2025-07-03 23:17:38','/abruzi.php4','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(182072,'2025-07-03 23:17:56','/wp-includes/SimplePie/Nglish.ph','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36',NULL,404,'GET',NULL,''),(182073,'2025-07-03 23:31:30','/you-just-never-know/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://biomechanicseducation.com/you-just-never-know/',404,'GET',NULL,''),(182074,'2025-07-03 23:41:02','/pristiq-side-effects-with-alcohol-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182075,'2025-07-03 23:41:15','/is-personal-training-personal-enough/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182076,'2025-07-03 23:44:50','/methotrexate--misoprostol-mtx-procedure-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182077,'2025-07-03 23:44:56','/paramedic-resource-centrecom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182078,'2025-07-03 23:49:56','/wp/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182079,'2025-07-03 23:49:57','/portal/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182080,'2025-07-03 23:49:57','/cms/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182081,'2025-07-03 23:49:57','/site/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182082,'2025-07-03 23:49:57','/staging/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182083,'2025-07-03 23:49:57','/dev/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182084,'2025-07-03 23:49:57','/web/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182085,'2025-07-03 23:49:57','/backup/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182086,'2025-07-03 23:49:58','/wordpress/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182087,'2025-07-03 23:49:58','/main/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182088,'2025-07-03 23:49:58','/new/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182089,'2025-07-03 23:49:58','/demo/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182090,'2025-07-03 23:49:58','/tmp/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182091,'2025-07-03 23:49:58','/old/','https://biomechanicseducation.com','Go-http-client/1.1',NULL,404,'GET',NULL,''),(182092,'2025-07-03 23:51:25','/weight-shift-piriformis-lots-of-dollars/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182093,'2025-07-04 00:26:02','/product/fundamental-principles-of-movement-analysis/','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182094,'2025-07-04 00:28:52','/can-being-fit-stop-you-being-healthy/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182095,'2025-07-04 00:53:19','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(182096,'2025-07-04 00:57:02','/estradiol-topical-cream-side-effects-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://clanad.endinahosting.com/index.php?file=Guestbook&p=33429',404,'GET',NULL,''),(182097,'2025-07-04 01:04:29','/17th-st-discount-pharmacy-hours-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182098,'2025-07-04 01:14:59','/2021/07/30/','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,''),(182099,'2025-07-04 01:32:40','/4-minutes-could-change-your-life-forever-breaking-bad-habits/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182100,'2025-07-04 01:35:05','/acetaminophen-ibuprofen-dose-chart-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182101,'2025-07-04 01:39:27','/3c-pharmanet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182102,'2025-07-04 01:54:44','/wwwviagra-kamagracompl-opinie-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182103,'2025-07-04 01:58:01','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(182104,'2025-07-04 02:06:11','/saponins-and-cholesterol-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://clanad.endinahosting.com/index.php?file=Guestbook&p=33418',404,'GET',NULL,''),(182105,'2025-07-04 02:39:57','/ezetimibe-medscape-reference-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182106,'2025-07-04 02:42:32','/findallpillscom-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182107,'2025-07-04 02:57:11','/2016/04/13/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','https://biomechanicseducation.com/2016/04/13/',404,'GET',NULL,''),(182108,'2025-07-04 03:03:42','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(182109,'2025-07-04 03:31:57','/the-cossack-movement-analysis-made-simple/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182110,'2025-07-04 03:35:50','/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182111,'2025-07-04 03:35:50','/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182112,'2025-07-04 03:35:51','/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182113,'2025-07-04 03:35:51','/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182114,'2025-07-04 03:35:51','/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182115,'2025-07-04 03:36:59','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182116,'2025-07-04 03:37:04','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182117,'2025-07-04 03:37:05','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182118,'2025-07-04 03:37:05','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182119,'2025-07-04 03:37:06','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182120,'2025-07-04 03:37:06','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182121,'2025-07-04 03:37:06','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182122,'2025-07-04 03:37:06','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182123,'2025-07-04 03:37:06','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182124,'2025-07-04 03:37:06','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182125,'2025-07-04 03:37:06','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182126,'2025-07-04 03:37:06','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182127,'2025-07-04 03:37:07','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182128,'2025-07-04 03:37:07','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182129,'2025-07-04 03:37:07','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182130,'2025-07-04 03:37:07','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182131,'2025-07-04 03:37:07','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182132,'2025-07-04 03:37:08','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182133,'2025-07-04 03:37:08','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182134,'2025-07-04 03:37:10','/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182135,'2025-07-04 03:37:10','/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182136,'2025-07-04 03:37:10','/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182137,'2025-07-04 03:37:14','/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182138,'2025-07-04 03:37:14','/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182139,'2025-07-04 03:37:14','/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182140,'2025-07-04 03:37:26','/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine/?fbclid=IwZXh0bgNhZW0CMTEAAR7VXGQVi9bgHDiVVj1DH9CkCMQ9lT6JUcrFof_XkfRgZOacvvk4NaZO_YVIHw_aem_QZ5iPFQuUmeZjLfOwd5AtQ','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(182141,'2025-07-04 03:38:25','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182142,'2025-07-04 03:38:26','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182143,'2025-07-04 03:39:24','/hes-a-stooge/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182144,'2025-07-04 03:39:46','/how-to-squat-ass-to-grass-a2g-project-squat-part-1/?platform=hootsuite','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,''),(182145,'2025-07-04 03:52:26','/project-squat-part-3-how-to-assess-for-dysfunction-in-the-spine','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182146,'2025-07-04 04:04:34','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(182147,'2025-07-04 04:14:06','/spine-mobility-project/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182148,'2025-07-04 04:19:33','/2016/11/14/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182149,'2025-07-04 04:24:25','/is-there-a-right-shoe-for-you/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','https://www.biomechanicseducation.com/author/bioadmin/page/18/',404,'GET',NULL,''),(182150,'2025-07-04 04:26:43','/knee-biomechanics-part-7-the-bones-of-the-knee/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182151,'2025-07-04 04:26:54','/chosen','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182152,'2025-07-04 04:27:03','/gallery','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182153,'2025-07-04 04:27:11','/cgi-bin/cgi-bin/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182154,'2025-07-04 04:27:16','/alfanew.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182155,'2025-07-04 04:27:24','/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182156,'2025-07-04 04:27:24','/adminfuns.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182157,'2025-07-04 04:27:25','/alfa-rex2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182158,'2025-07-04 04:27:25','/alfanew2.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182159,'2025-07-04 04:27:27','/ebs.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182160,'2025-07-04 04:27:32','/wp-admin/js/widgets/about.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182161,'2025-07-04 04:27:41','/wp-p.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182162,'2025-07-04 04:27:41','/ws.php7','https://biomechanicseducation.com',NULL,NULL,404,'GET',NULL,''),(182163,'2025-07-04 04:39:16','/product/introduction-to-the-foot-posture-index-online-cpd/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182164,'2025-07-04 04:40:31','/what-is-the-imovefreely-programme/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182165,'2025-07-04 04:44:24','/meta.json','https://biomechanicseducation.com','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,404,'GET',NULL,''),(182166,'2025-07-04 05:07:51','/world-healthnet-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182167,'2025-07-04 05:16:28','/the-weak-core-myth-core-progressions-that-all-personal-trainers-should-know/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182168,'2025-07-04 05:46:34','/my-horrific-halloween-earwax-experience/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182169,'2025-07-04 05:53:49','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(182170,'2025-07-04 06:10:04','/intrinsic-biomechanics-for-personal-trainers/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182171,'2025-07-04 06:22:55','/2020/08/10/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','https://biomechanicseducation.com/2020/08/10/',404,'GET',NULL,''),(182172,'2025-07-04 06:23:51','/sftp-config.json','https://biomechanicseducation.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,''),(182173,'2025-07-04 06:29:18','/assumptions/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182174,'2025-07-04 06:49:55','/the-deadlift-which-variation-is-right-for-you/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182175,'2025-07-04 06:54:49','/product-category/prods/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182176,'2025-07-04 07:00:41','/?author=2','https://biomechanicseducation.com','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,404,'GET',NULL,''),(182177,'2025-07-04 07:00:43','/?author=4','https://biomechanicseducation.com','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,404,'GET',NULL,''),(182178,'2025-07-04 07:00:44','/?author=5','https://biomechanicseducation.com','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,404,'GET',NULL,''),(182179,'2025-07-04 07:00:44','/?author=6','https://biomechanicseducation.com','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,404,'GET',NULL,''),(182180,'2025-07-04 07:00:45','/?author=7','https://biomechanicseducation.com','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,404,'GET',NULL,''),(182181,'2025-07-04 07:00:46','/?author=8','https://biomechanicseducation.com','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,404,'GET',NULL,''),(182182,'2025-07-04 07:00:47','/?author=9','https://biomechanicseducation.com','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,404,'GET',NULL,''),(182183,'2025-07-04 07:00:48','/?author=10','https://biomechanicseducation.com','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,404,'GET',NULL,''),(182184,'2025-07-04 07:00:49','/?author=13','https://biomechanicseducation.com','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,404,'GET',NULL,''),(182185,'2025-07-04 07:00:50','/?author=14','https://biomechanicseducation.com','Apache-HttpClient/4.5.2 (Java/1.8.0_151)',NULL,404,'GET',NULL,''),(182186,'2025-07-04 07:01:32','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(182187,'2025-07-04 07:20:18','/knee-biomechanics-part-8-the-muscles-of-the-knee/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182188,'2025-07-04 07:20:55','/drugprescription4ucom-reviews-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,404,'GET',NULL,''),(182189,'2025-07-04 07:27:27','/budesonide-reddit-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,''),(182190,'2025-07-04 07:45:04','/meds-andhealthnet-coupon-code-7c44.pdf','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://clanad.endinahosting.com/index.php?file=Guestbook&p=33046',404,'GET',NULL,''),(182191,'2025-07-04 07:46:11','/shoulder-biomechanics-part-5-the-bones-of-the-shoulder/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182192,'2025-07-04 07:48:49','/elevate-2023-intrinsic-biomechanics-the-missing-piece-of-the-jigsaw-for-pts/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,''),(182193,'2025-07-04 08:00:09','/how-to-stop-the-bad-habits-from-creeping-back-in-when-you-begin-your-fitness-journey/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182194,'2025-07-04 08:06:45','/calendar/action~oneday/exact_date~14-6-2020/','https://biomechanicseducation.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36','https://biomechanicseducation.com/calendar/action~oneday/exact_date~14-6-2020/',404,'GET',NULL,''),(182195,'2025-07-04 08:20:56','/the-4-legs-of-life/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182196,'2025-07-04 08:21:52','/.well-known/traffic-advice','https://biomechanicseducation.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,''),(182197,'2025-07-04 08:30:29','/the-squat-part-1/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182198,'2025-07-04 08:39:43','/2017/05/03/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182199,'2025-07-04 08:52:00','/2023/06/28/','https://biomechanicseducation.com','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,404,'GET',NULL,''),(182200,'2025-07-04 08:54:00','/single-joint-vs-functional-assessments-a-personal-trainers-guide/','https://biomechanicseducation.com','Mozilla/5.0 (Linux; Android 5.0) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; Bytespider; spider-feedback@bytedance.com)',NULL,404,'GET',NULL,'');
/*!40000 ALTER TABLE `6m7_redirection_404` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_redirection_groups`
--

DROP TABLE IF EXISTS `6m7_redirection_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_redirection_groups` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `tracking` int NOT NULL DEFAULT '1',
  `module_id` int unsigned NOT NULL DEFAULT '0',
  `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'enabled',
  `position` int unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `module_id` (`module_id`),
  KEY `status` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_redirection_groups`
--

LOCK TABLES `6m7_redirection_groups` WRITE;
/*!40000 ALTER TABLE `6m7_redirection_groups` DISABLE KEYS */;
INSERT INTO `6m7_redirection_groups` VALUES (1,'Redirections',1,1,'enabled',0),(2,'Modified Posts',1,1,'enabled',1);
/*!40000 ALTER TABLE `6m7_redirection_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_redirection_items`
--

DROP TABLE IF EXISTS `6m7_redirection_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_redirection_items` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `url` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `match_url` varchar(2000) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `match_data` text COLLATE utf8mb4_unicode_520_ci,
  `regex` int unsigned NOT NULL DEFAULT '0',
  `position` int unsigned NOT NULL DEFAULT '0',
  `last_count` int unsigned NOT NULL DEFAULT '0',
  `last_access` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
  `group_id` int NOT NULL DEFAULT '0',
  `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'enabled',
  `action_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `action_code` int unsigned NOT NULL,
  `action_data` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `match_type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `url` (`url`(191)),
  KEY `status` (`status`),
  KEY `regex` (`regex`),
  KEY `group_idpos` (`group_id`,`position`),
  KEY `group` (`group_id`),
  KEY `match_url` (`match_url`(191))
) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_redirection_items`
--

LOCK TABLES `6m7_redirection_items` WRITE;
/*!40000 ALTER TABLE `6m7_redirection_items` DISABLE KEYS */;
INSERT INTO `6m7_redirection_items` VALUES (1,'/how-to-reduce-your-own-back-pain-the-rugby-edition/','/how-to-reduce-your-own-back-pain-the-rugby-edition','{\"source\":{\"flag_regex\":false}}',0,0,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://biomechanicseducation.com/how-to-reduce-back-pain-rugby-edition/','url',NULL),(2,'/the-tight-hip-flexor-misconception/','/the-tight-hip-flexor-misconception','{\"source\":{\"flag_regex\":false}}',0,1,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://biomechanicseducation.com/the-tight-hip-flexor-misconception-modified-thomas-test/','url',NULL),(3,'/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability/','/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability','{\"source\":{\"flag_regex\":false}}',0,2,670,'2025-07-03 17:49:48',1,'enabled','url',301,'https://biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm/','url',NULL),(4,'/what-is-biomechanics/','/what-is-biomechanics','{\"source\":{\"flag_regex\":false}}',0,3,220,'2025-07-02 13:17:51',1,'enabled','url',301,'https://biomechanicseducation.com/what-is-biomechanics-biomechanics-education/','url',NULL),(5,'/hip-hitch-technique-biomechanics/','/hip-hitch-technique-biomechanics','{\"source\":{\"flag_regex\":false}}',0,4,353,'2025-07-03 23:50:09',1,'enabled','url',301,'https://biomechanicseducation.com/hip-hitching/','url',NULL),(6,'/find-a-bm-coach/','/find-a-bm-coach','{\"source\":{\"flag_regex\":false}}',0,5,260,'2025-07-03 21:04:59',1,'enabled','url',301,'/find-a-biomechanics-coach/','url',NULL),(7,'/biomechanics-education-coach-map/','/biomechanics-education-coach-map',NULL,0,6,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:63:\"https://www.biomechanicseducation.com/find-a-biomechanics-coach\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(8,'/intrinsic-biomechanics-association/','/intrinsic-biomechanics-association',NULL,0,7,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:70:\"https://biomechanicseducation.com/courses/biomechanics/iba-membership/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(9,'/product/deadlift-analysis-live-webinar-feb-23rd-12pm/','/product/deadlift-analysis-live-webinar-feb-23rd-12pm',NULL,0,8,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:84:\"https://biomechanicseducation.com/courses/cpd-courses/deadlift-analysis-made-simple/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(10,'/\"https://www.biomechanicseducation.com/product/introduction-to-the-foot-posture-index-online-cpd/ \"','/%22https://www.biomechanicseducation.com/product/introduction-to-the-foot-posture-index-online-cpd/%20%22',NULL,0,9,0,'1970-01-01 00:00:00',1,'enabled','url',301,'https://biomechanicseducation.com/courses/cpd-courses/the-foot-posture-index/','url',NULL),(11,'/product/foot-biomechanics-made-simple-live-webinar-mar-2nd-12pm/','/product/foot-biomechanics-made-simple-live-webinar-mar-2nd-12pm',NULL,0,10,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:84:\"https://biomechanicseducation.com/courses/cpd-courses/foot-biomechanics-made-simple/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(12,'/product/understanding-nerves-live-webinar-feb-16th-12pm/','/product/understanding-nerves-live-webinar-feb-16th-12pm',NULL,0,11,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:75:\"https://biomechanicseducation.com/courses/cpd-courses/understanding-nerves/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(13,'/product/what-the-hell-is-functional-training-anyway-live-webinar/','/product/what-the-hell-is-functional-training-anyway-live-webinar',NULL,0,12,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:98:\"https://biomechanicseducation.com/courses/cpd-courses/what-the-hell-is-functional-training-anyway/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(14,'/product/pain-science-made-simple-live-webinar-march-9th-12-1pm/','/product/pain-science-made-simple-live-webinar-march-9th-12-1pm',NULL,0,13,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:79:\"https://biomechanicseducation.com/courses/cpd-courses/pain-science-made-simple/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(15,'/product/weak-glutes-free-webinar/','/product/weak-glutes-free-webinar',NULL,0,14,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:66:\"https://biomechanicseducation.com/courses/cpd-courses/weak-glutes/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(16,'/product/imovefreely-instructor/','/product/imovefreely-instructor',NULL,0,15,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:96:\"https://biomechanicseducation.com/courses/cpd-courses/imovefreely-instructor-programme-workshop/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(17,'/product/running-biomechanics-workshop/','/product/running-biomechanics-workshop',NULL,0,16,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:84:\"https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(18,'/product/practical-anatomy-series-5-x-online-recorded-classrooms-5-x-e-zines/','/product/practical-anatomy-series-5-x-online-recorded-classrooms-5-x-e-zines',NULL,0,17,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:79:\"https://biomechanicseducation.com/courses/cpd-courses/practical-anatomy-series/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(19,'/product/fundamental-principles-of-movement-analysis/','/product/fundamental-principles-of-movement-analysis',NULL,0,18,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:89:\"https://biomechanicseducation.com/courses/cpd-courses/fundamental-principles-of-movement/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(20,'/product/introduction-to-intrinsic-biomechanics-online-course/','/product/introduction-to-intrinsic-biomechanics-online-course',NULL,0,19,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:93:\"https://biomechanicseducation.com/courses/cpd-courses/introduction-to-intrinsic-biomechanics/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(21,'/product/imovefreely-instructor-online-virtual-workshop/','/product/imovefreely-instructor-online-virtual-workshop',NULL,0,20,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:66:\"https://biomechanicseducation.com/courses/cpd-courses/imovefreely/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(22,'/product/introduction-to-running-biomechanics-online-cpd-training/','/product/introduction-to-running-biomechanics-online-cpd-training',NULL,0,21,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:75:\"https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(23,'/product/womens-health-menopause-and-programming/','/product/womens-health-menopause-and-programming',NULL,0,22,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:101:\"https://biomechanicseducation.com/courses/online-cpd-courses/womens-health-menopause-and-programming/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(24,'/product/level-4-elite-personal-trainer-course/','/product/level-4-elite-personal-trainer-course',NULL,0,23,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:87:\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(25,'/product/core-training/','/product/core-training',NULL,0,24,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:68:\"https://biomechanicseducation.com/courses/cpd-courses/core-training/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(26,'/product/coaching-fitness-online/','/product/coaching-fitness-online',NULL,0,25,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:78:\"https://biomechanicseducation.com/courses/cpd-courses/coaching-fitness-online/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(27,'/product/building-your-fitness-business/','/product/building-your-fitness-business',NULL,0,26,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:92:\"https://biomechanicseducation.com/courses/online-cpd-courses/building-your-fitness-business/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(28,'/product/introduction-to-behaviour-change-online-cpd/','/product/introduction-to-behaviour-change-online-cpd',NULL,0,27,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:87:\"https://biomechanicseducation.com/courses/online-cpd-courses/behaviour-change-coaching/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(29,'/online-cpd-education/','/online-cpd-education',NULL,0,28,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:54:\"https://biomechanicseducation.com/courses/cpd-courses/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(30,'/personal-training-cpd-courses/level-4-pt-biomechanics-bundle/','/personal-training-cpd-courses/level-4-pt-biomechanics-bundle',NULL,0,29,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:87:\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:27:\"https://www.futurefit.co.uk\";}','server',NULL),(31,'/level-4-personal-trainer-biomechanics-coaching-bundle/','/level-4-personal-trainer-biomechanics-coaching-bundle',NULL,0,30,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:87:\"https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(32,'/biomechanics-coach-diploma-2/','/biomechanics-coach-diploma-2',NULL,0,31,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:81:\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(33,'/personal-training-cpd-courses/biomechanics-coach-course/','/personal-training-cpd-courses/biomechanics-coach-course',NULL,0,32,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:81:\"https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:27:\"https://www.futurefit.co.uk\";}','server',NULL),(34,'/biomechanicseducation-emdreferral/','/biomechanicseducation-emdreferral',NULL,0,33,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:50:\"https://biomechanicseducation.com/emd-uk-referral/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:27:\"https://www.futurefit.co.uk\";}','server',NULL),(35,'/biomechanics-education-david-lloyd-referral/','/biomechanics-education-david-lloyd-referral',NULL,0,34,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:55:\"https://biomechanicseducation.com/david-lloyd-referral/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:27:\"https://www.futurefit.co.uk\";}','server',NULL),(36,'/wp-content/uploads/2023/06/Privacy-Policy_2023.pdf','/wp-content/uploads/2023/06/privacy-policy_2023.pdf',NULL,0,35,0,'1970-01-01 00:00:00',1,'enabled','url',301,'a:3:{s:8:\"url_from\";s:49:\"https://biomechanicseducation.com/privacy-policy/\";s:11:\"url_notfrom\";s:0:\"\";s:6:\"server\";s:37:\"https://www.biomechanicseducation.com\";}','server',NULL),(37,'/getting-started/biomechanics-and-personal-training-copy/','/getting-started/biomechanics-and-personal-training-copy',NULL,0,36,2,'2025-04-25 21:44:33',1,'enabled','url',301,'/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/','url',NULL),(38,'/biomechanics-coach-diploma-2/','/biomechanics-coach-diploma-2',NULL,0,37,485,'2025-07-03 10:42:29',1,'enabled','url',301,'https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/','url',NULL),(39,'/biomechanics-education-coach-map/','/biomechanics-education-coach-map',NULL,0,38,220,'2025-07-04 03:56:25',1,'enabled','url',301,'https://biomechanicseducation.com/find-a-biomechanics-coach/','url',NULL),(40,'/download-price-guide-2/','/download-price-guide-2',NULL,0,39,21,'2025-05-02 05:36:06',1,'enabled','url',301,'https://biomechanicseducation.com/download-price-guide/','url',NULL),(41,'/imovefreely-3/','/imovefreely-3',NULL,0,40,268,'2025-07-01 21:00:33',1,'enabled','url',301,'https://biomechanicseducation.com/courses/cpd-courses/imovefreely/','url',NULL),(42,'/imovefreely-3/?utm_source=organic&utm_medium=facebook&utm_campaign=The iMoveFreely Programme','/imovefreely-3',NULL,0,41,1,'2024-10-09 11:45:03',1,'enabled','url',301,'https://biomechanicseducation.com/courses/cpd-courses/imovefreely/?utm_source=organic&utm_medium=facebook&utm_campaign=The iMoveFreely Programme','url',NULL),(43,'/online-cpd-education/','/online-cpd-education',NULL,0,42,1439,'2025-07-04 04:05:55',1,'enabled','url',301,'https://biomechanicseducation.com/courses/online-cpd-courses/','url',NULL),(44,'/product/foot-biomechanics-made-simple-live-webinar-mar-2nd-12pm/','/product/foot-biomechanics-made-simple-live-webinar-mar-2nd-12pm',NULL,0,43,164,'2025-07-02 12:37:30',1,'enabled','url',301,'https://biomechanicseducation.com/courses/cpd-courses/foot-biomechanics-made-simple/','url',NULL),(45,'/product/pain-science-made-simple-live-webinar-march-9th-12-1pm/','/product/pain-science-made-simple-live-webinar-march-9th-12-1pm',NULL,0,44,166,'2025-07-03 21:46:38',1,'enabled','url',301,'https://biomechanicseducation.com/courses/cpd-courses/pain-science-made-simple/','url',NULL),(46,'/product/running-biomechanics-workshops/','/product/running-biomechanics-workshops',NULL,0,45,393,'2025-07-04 07:52:32',1,'enabled','url',301,'https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/','url',NULL),(47,'/running-biomechanics-workshops/','/running-biomechanics-workshops',NULL,0,46,100,'2025-07-02 18:37:41',1,'enabled','url',301,'https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/','url',NULL),(48,'/the-kaizen-project/','/the-kaizen-project',NULL,0,47,1957,'2025-07-02 17:12:47',1,'enabled','url',301,'https://biomechanicseducation.com/','url',NULL),(49,'/foot-width-in-the-squat-and-its-affect-on-quadricep-growth/','/foot-width-in-the-squat-and-its-affect-on-quadricep-growth','{\"source\":{\"flag_regex\":false}}',0,48,343,'2025-07-04 06:46:22',1,'enabled','url',301,'/foot-position-and-the-quadricep/','url',NULL),(50,'/tom-waldron-copy/','/tom-waldron-copy','{\"source\":{\"flag_regex\":false}}',0,49,1,'2025-04-25 21:44:22',1,'enabled','url',301,'/martin-haines/','url',NULL),(51,'/martin-haines/','/martin-haines','{\"source\":{\"flag_regex\":false}}',0,50,0,'1970-01-01 00:00:00',1,'enabled','url',301,'/our-team/martin-haines/','url',NULL),(52,'/blogs-copy/','/blogs-copy','{\"source\":{\"flag_regex\":false}}',0,51,1,'2025-04-25 21:44:17',1,'enabled','url',301,'/resources/blogs-copy/','url',NULL),(53,'/resources/blogs-copy/','/resources/blogs-copy','{\"source\":{\"flag_regex\":false}}',0,52,0,'1970-01-01 00:00:00',1,'enabled','url',301,'/resources/introduction-to-biomechanics/','url',NULL),(54,'/resources/introduction-to-biomechanics/','/resources/introduction-to-biomechanics','{\"source\":{\"flag_regex\":false}}',0,53,0,'1970-01-01 00:00:00',1,'enabled','url',301,'/blogs/introduction-to-biomechanics/','url',NULL),(55,'/blogs/introduction-to-biomechanics-copy/','/blogs/introduction-to-biomechanics-copy','{\"source\":{\"flag_regex\":false}}',0,54,1,'2025-04-25 21:44:07',1,'enabled','url',301,'/blogs/the-science-of-biomechanics/','url',NULL),(56,'/blogs/introduction-to-biomechanics-copy/','/blogs/introduction-to-biomechanics-copy','{\"source\":{\"flag_regex\":false}}',0,55,0,'1970-01-01 00:00:00',1,'enabled','url',301,'/blogs/biomechanics-for-sport-and-fitness/','url',NULL),(57,'/msk-education-courses-explained/','/msk-education-courses-explained','{\"source\":{\"flag_regex\":false}}',0,56,3,'2025-04-20 10:10:50',1,'enabled','url',301,'/musculoskeletal-msk-education-courses-explained/','url',NULL);
/*!40000 ALTER TABLE `6m7_redirection_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_redirection_logs`
--

DROP TABLE IF EXISTS `6m7_redirection_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_redirection_logs` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` mediumtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `domain` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `sent_to` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `agent` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `referrer` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `http_code` int unsigned NOT NULL DEFAULT '0',
  `request_method` varchar(10) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `request_data` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `redirect_by` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `redirection_id` int unsigned DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `redirection_id` (`redirection_id`),
  KEY `ip` (`ip`)
) ENGINE=InnoDB AUTO_INCREMENT=7069 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_redirection_logs`
--

LOCK TABLES `6m7_redirection_logs` WRITE;
/*!40000 ALTER TABLE `6m7_redirection_logs` DISABLE KEYS */;
INSERT INTO `6m7_redirection_logs` VALUES (7004,'2025-06-27 10:36:03','/online-cpd-education/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/online-cpd-courses/','Mozilla/5.0 (compatible; ImagesiftBot; +imagesift.com)',NULL,301,'GET',NULL,'redirection',43,''),(7005,'2025-06-27 11:00:04','/the-kaizen-project','https://biomechanicseducation.com','https://biomechanicseducation.com/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','https://www.biomechanicseducation.com/product/low-back-health-workshop/',301,'GET',NULL,'redirection',48,''),(7006,'2025-06-27 11:10:37','/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability/','https://biomechanicseducation.com','https://biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',3,''),(7007,'2025-06-27 15:07:53','/imovefreely-3','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/imovefreely/','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,301,'GET',NULL,'redirection',41,''),(7008,'2025-06-27 18:05:56','/foot-width-in-the-squat-and-its-affect-on-quadricep-growth/','https://biomechanicseducation.com','/foot-position-and-the-quadricep/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36',NULL,301,'GET',NULL,'redirection',49,''),(7009,'2025-06-27 22:48:57','/online-cpd-education','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/online-cpd-courses/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://www.biomechanicseducation.com/',301,'GET',NULL,'redirection',43,''),(7010,'2025-06-27 22:49:06','/product/running-biomechanics-workshops/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36',NULL,301,'GET',NULL,'redirection',46,''),(7011,'2025-06-27 22:50:29','/biomechanics-education-coach-map/','https://biomechanicseducation.com','https://biomechanicseducation.com/find-a-biomechanics-coach/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','https://www.nbkpilates.co.uk/about-nbk-pilates',301,'GET',NULL,'redirection',39,''),(7012,'2025-06-28 01:33:53','/what-is-biomechanics/','https://biomechanicseducation.com','https://biomechanicseducation.com/what-is-biomechanics-biomechanics-education/','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',NULL,301,'GET',NULL,'redirection',4,''),(7013,'2025-06-28 12:03:22','/find-a-bm-coach/','https://biomechanicseducation.com','/find-a-biomechanics-coach/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',6,''),(7014,'2025-06-28 12:45:03','/hip-hitch-technique-biomechanics/','https://biomechanicseducation.com','https://biomechanicseducation.com/hip-hitching/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',5,''),(7015,'2025-06-28 13:28:23','/product/foot-biomechanics-made-simple-live-webinar-mar-2nd-12pm/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/foot-biomechanics-made-simple/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',44,''),(7016,'2025-06-28 14:13:53','/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability/','https://biomechanicseducation.com','https://biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',3,''),(7017,'2025-06-29 01:32:00','/online-cpd-education/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/online-cpd-courses/','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,301,'GET',NULL,'redirection',43,''),(7018,'2025-06-29 03:38:26','/biomechanics-coach-diploma-2/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/','Mozilla/5.0 (compatible; MJ12bot/v2.0.2; http://mj12bot.com/)',NULL,301,'GET',NULL,'redirection',38,''),(7019,'2025-06-29 10:01:51','/what-is-biomechanics/','https://biomechanicseducation.com','https://biomechanicseducation.com/what-is-biomechanics-biomechanics-education/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',4,''),(7020,'2025-06-29 11:30:21','/the-kaizen-project/','https://biomechanicseducation.com','https://biomechanicseducation.com/','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,301,'GET',NULL,'redirection',48,''),(7021,'2025-06-29 13:11:28','/foot-width-in-the-squat-and-its-affect-on-quadricep-growth/','https://biomechanicseducation.com','/foot-position-and-the-quadricep/','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,301,'GET',NULL,'redirection',49,''),(7022,'2025-06-29 16:51:05','/hip-hitch-technique-biomechanics/','https://biomechanicseducation.com','https://biomechanicseducation.com/hip-hitching/','Mozilla/5.0 (iPhone; CPU iPhone OS 18_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.5 Mobile/15E148 Safari/604.1',NULL,301,'GET',NULL,'redirection',5,''),(7023,'2025-06-29 21:08:21','/product/foot-biomechanics-made-simple-live-webinar-mar-2nd-12pm/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/foot-biomechanics-made-simple/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','https://www.biomechanicseducation.com/you-want-to-move-more-freely-right/',301,'GET',NULL,'redirection',44,''),(7024,'2025-06-30 01:24:26','/product/pain-science-made-simple-live-webinar-march-9th-12-1pm/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/pain-science-made-simple/','Mozilla/5.0 (compatible; SemrushBot-BA; +http://www.semrush.com/bot.html)','https://www.biomechanicseducation.com/product/pain-science-made-simple-live-webinar-march-9th-12-1pm/',301,'GET',NULL,'redirection',45,''),(7025,'2025-06-30 02:44:37','/imovefreely-3/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/imovefreely/','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,301,'GET',NULL,'redirection',41,''),(7026,'2025-06-30 02:44:37','/imovefreely-3/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/imovefreely/','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,301,'GET',NULL,'redirection',41,''),(7027,'2025-06-30 03:23:11','/biomechanics-education-coach-map/','https://biomechanicseducation.com','https://biomechanicseducation.com/find-a-biomechanics-coach/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',39,''),(7028,'2025-06-30 06:17:52','/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability/','https://biomechanicseducation.com','https://biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://viatec.com.ar/augzn/multifidus-strain-special-tests.html',301,'GET',NULL,'redirection',3,''),(7029,'2025-06-30 06:27:29','/biomechanics-coach-diploma-2/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',38,''),(7030,'2025-06-30 08:32:42','/product/running-biomechanics-workshops/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',46,''),(7031,'2025-06-30 13:42:30','/find-a-bm-coach/','https://biomechanicseducation.com','/find-a-biomechanics-coach/','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,301,'GET',NULL,'redirection',6,''),(7032,'2025-06-30 19:46:11','/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability/','https://biomechanicseducation.com','https://biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; GoogleOther)',NULL,301,'GET',NULL,'redirection',3,''),(7033,'2025-06-30 20:58:49','/foot-width-in-the-squat-and-its-affect-on-quadricep-growth','https://biomechanicseducation.com','/foot-position-and-the-quadricep/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','https://www.biomechanicseducation.com/be-a-great-coach-by-being-an-even-better-student/',301,'GET',NULL,'redirection',49,''),(7034,'2025-06-30 21:20:48','/biomechanics-coach-diploma-2/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','https://www.nbkpilates.co.uk/',301,'GET',NULL,'redirection',38,''),(7035,'2025-06-30 21:20:49','/biomechanics-education-coach-map/','https://biomechanicseducation.com','https://biomechanicseducation.com/find-a-biomechanics-coach/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','https://www.nbkpilates.co.uk/',301,'GET',NULL,'redirection',39,''),(7036,'2025-06-30 23:11:06','/find-a-bm-coach','https://biomechanicseducation.com','/find-a-biomechanics-coach/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)',NULL,301,'GET',NULL,'redirection',6,''),(7037,'2025-07-01 00:15:19','/foot-width-in-the-squat-and-its-affect-on-quadricep-growth/','https://biomechanicseducation.com','/foot-position-and-the-quadricep/','Mozilla/5.0 (compatible; Bytespider; spider-feedback@bytedance.com) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.0.0 Safari/537.36',NULL,301,'GET',NULL,'redirection',49,''),(7038,'2025-07-01 01:58:30','/product/pain-science-made-simple-live-webinar-march-9th-12-1pm/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/pain-science-made-simple/','Mozilla/5.0 (compatible; Bytespider; spider-feedback@bytedance.com) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.0.0 Safari/537.36',NULL,301,'GET',NULL,'redirection',45,''),(7039,'2025-07-01 11:13:34','/imovefreely-3/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/imovefreely/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',41,''),(7040,'2025-07-01 11:43:53','/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability/','https://biomechanicseducation.com','https://biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',3,''),(7041,'2025-07-01 11:52:29','/hip-hitch-technique-biomechanics/','https://biomechanicseducation.com','https://biomechanicseducation.com/hip-hitching/','Mozilla/5.0 (compatible; Bytespider; spider-feedback@bytedance.com) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.0.0 Safari/537.36',NULL,301,'GET',NULL,'redirection',5,''),(7042,'2025-07-01 12:02:53','/biomechanics-coach-diploma-2/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/','Mozilla/5.0 (compatible; MJ12bot/v2.0.2; http://mj12bot.com/)',NULL,301,'GET',NULL,'redirection',38,''),(7043,'2025-07-01 13:37:26','/find-a-bm-coach/','https://biomechanicseducation.com','/find-a-biomechanics-coach/','mozilla/5.0 (iphone; cpu iphone os 18_6 like mac os x) applewebkit/605.1.15 (khtml, like gecko) version/18.6 mobile/15e148 safari/604.1','https://biomechanicseducation.com/courses/cpd-courses/deadlift-analysis-made-simple/',301,'GET',NULL,'redirection',6,''),(7044,'2025-07-01 17:06:19','/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability/','https://biomechanicseducation.com','https://biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.1',NULL,301,'GET',NULL,'redirection',3,''),(7045,'2025-07-01 18:35:06','/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability/','https://biomechanicseducation.com','https://biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm/','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.0',NULL,301,'GET',NULL,'redirection',3,''),(7046,'2025-07-01 19:51:28','/biomechanics-education-coach-map/','https://biomechanicseducation.com','https://biomechanicseducation.com/find-a-biomechanics-coach/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36 Edg/121.0.0.0 Trailer/92.3.3357.27',NULL,301,'GET',NULL,'redirection',39,''),(7047,'2025-07-01 20:00:33','/imovefreely-3','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/imovefreely/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',41,''),(7048,'2025-07-02 03:46:55','/hip-hitch-technique-biomechanics/','https://biomechanicseducation.com','https://biomechanicseducation.com/hip-hitching/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',5,''),(7049,'2025-07-02 08:17:29','/biomechanics-coach-diploma-2/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/','Mozilla/5.0 (compatible; AwarioBot/1.0; +https://awario.com/bots.html)',NULL,301,'GET',NULL,'redirection',38,''),(7050,'2025-07-02 09:29:09','/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability','https://biomechanicseducation.com','https://biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','https://biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability',301,'GET',NULL,'redirection',3,''),(7051,'2025-07-02 11:37:30','/product/foot-biomechanics-made-simple-live-webinar-mar-2nd-12pm/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/foot-biomechanics-made-simple/','Mozilla/5.0 (compatible; DotBot/1.2; +https://opensiteexplorer.org/dotbot; help@moz.com)',NULL,301,'GET',NULL,'redirection',44,''),(7052,'2025-07-02 12:17:51','/what-is-biomechanics/','https://biomechanicseducation.com','https://biomechanicseducation.com/what-is-biomechanics-biomechanics-education/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',4,''),(7053,'2025-07-02 15:10:24','/product/pain-science-made-simple-live-webinar-march-9th-12-1pm/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/pain-science-made-simple/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',45,''),(7054,'2025-07-02 16:11:08','/foot-width-in-the-squat-and-its-affect-on-quadricep-growth/','https://biomechanicseducation.com','/foot-position-and-the-quadricep/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',49,''),(7055,'2025-07-02 16:12:47','/the-kaizen-project/','https://biomechanicseducation.com','https://biomechanicseducation.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36','https://www.biomechanicseducation.com/the-kaizen-project/',301,'HEAD',NULL,'redirection',48,''),(7056,'2025-07-02 17:37:41','/running-biomechanics-workshops/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',47,''),(7057,'2025-07-02 22:20:08','/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability/','https://biomechanicseducation.com','https://biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm/','Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.1',NULL,301,'GET',NULL,'redirection',3,''),(7058,'2025-07-03 06:24:57','/find-a-bm-coach/','https://biomechanicseducation.com','/find-a-biomechanics-coach/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',6,''),(7059,'2025-07-03 08:01:24','/product/running-biomechanics-workshops','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://webmaster.petalsearch.com/site/petalbot)','http://www.biomechanicseducation.com/',301,'GET',NULL,'redirection',46,''),(7060,'2025-07-03 09:42:29','/biomechanics-coach-diploma-2/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,301,'GET',NULL,'redirection',38,''),(7061,'2025-07-03 16:49:48','/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm-its-effect-on-lower-back-pain-movement-ability/','https://biomechanicseducation.com','https://biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm/','facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)',NULL,301,'GET',NULL,'redirection',3,''),(7062,'2025-07-03 20:04:59','/find-a-bm-coach/','https://biomechanicseducation.com','/find-a-biomechanics-coach/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0',NULL,301,'GET',NULL,'redirection',6,''),(7063,'2025-07-03 20:46:38','/product/pain-science-made-simple-live-webinar-march-9th-12-1pm/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/pain-science-made-simple/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',45,''),(7064,'2025-07-03 22:50:09','/hip-hitch-technique-biomechanics/','https://biomechanicseducation.com','https://biomechanicseducation.com/hip-hitching/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.2; +https://openai.com/gptbot)',NULL,301,'GET',NULL,'redirection',5,''),(7065,'2025-07-04 02:56:25','/biomechanics-education-coach-map/','https://biomechanicseducation.com','https://biomechanicseducation.com/find-a-biomechanics-coach/','meta-externalagent/1.1 (+https://developers.facebook.com/docs/sharing/webmasters/crawler)',NULL,301,'GET',NULL,'redirection',39,''),(7066,'2025-07-04 03:05:55','/online-cpd-education/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/online-cpd-courses/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.7151.103 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',43,''),(7067,'2025-07-04 05:46:22','/foot-width-in-the-squat-and-its-affect-on-quadricep-growth/','https://biomechanicseducation.com','/foot-position-and-the-quadricep/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Amazonbot/0.1; +https://developer.amazon.com/support/amazonbot) Chrome/119.0.6045.214 Safari/537.36',NULL,301,'GET',NULL,'redirection',49,''),(7068,'2025-07-04 06:52:32','/product/running-biomechanics-workshops/','https://biomechanicseducation.com','https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,301,'GET',NULL,'redirection',46,'');
/*!40000 ALTER TABLE `6m7_redirection_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_term_relationships`
--

DROP TABLE IF EXISTS `6m7_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_term_relationships` (
  `object_id` bigint unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0',
  `term_order` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_term_relationships`
--

LOCK TABLES `6m7_term_relationships` WRITE;
/*!40000 ALTER TABLE `6m7_term_relationships` DISABLE KEYS */;
INSERT INTO `6m7_term_relationships` VALUES (164,5,0),(267,5,0),(286,5,0),(289,5,0),(293,5,0),(296,5,0),(456,5,0),(456,6,0),(456,7,0),(456,8,0),(556,5,0),(561,5,0),(575,5,0),(591,5,0),(595,5,0),(616,5,0),(616,9,0),(616,10,0),(616,11,0),(616,12,0),(616,13,0),(616,14,0),(616,15,0),(647,5,0),(651,5,0),(654,5,0),(674,5,0),(677,5,0),(682,5,0),(702,5,0),(705,5,0),(708,5,0),(711,5,0),(721,5,0),(734,5,0),(758,5,0),(761,2,0),(761,5,0),(761,450,0),(765,5,0),(769,5,0),(803,5,0),(813,5,0),(826,5,0),(829,5,0),(853,5,0),(856,5,0),(873,5,0),(936,5,0),(940,5,0),(1014,5,0),(1017,5,0),(1023,5,0),(1026,5,0),(1029,5,0),(1034,5,0),(1038,5,0),(1038,16,0),(1038,17,0),(1038,18,0),(1038,19,0),(1038,20,0),(1038,21,0),(1038,22,0),(1038,23,0),(1038,24,0),(1038,25,0),(1038,26,0),(1038,27,0),(1038,28,0),(1044,5,0),(1049,5,0),(1054,5,0),(1060,5,0),(1064,5,0),(1067,5,0),(1072,5,0),(1077,5,0),(1083,5,0),(1087,5,0),(1093,5,0),(1098,5,0),(1101,5,0),(1108,5,0),(1114,5,0),(1118,5,0),(1124,5,0),(1128,5,0),(1144,5,0),(1166,5,0),(1183,5,0),(1188,5,0),(1193,5,0),(1196,5,0),(1219,5,0),(1222,5,0),(1225,5,0),(1231,5,0),(1234,5,0),(1238,5,0),(1241,5,0),(1245,5,0),(1255,5,0),(1261,5,0),(1264,5,0),(1268,5,0),(1268,29,0),(1268,30,0),(1268,31,0),(1268,32,0),(1268,33,0),(1274,5,0),(1278,5,0),(1311,5,0),(1315,5,0),(1319,5,0),(1325,5,0),(1333,5,0),(1333,22,0),(1333,34,0),(1333,35,0),(1333,36,0),(1333,37,0),(1333,38,0),(1337,5,0),(1342,5,0),(1346,5,0),(1350,5,0),(1353,5,0),(1358,5,0),(1361,5,0),(1365,5,0),(1378,5,0),(1397,5,0),(1402,5,0),(1405,5,0),(1409,5,0),(1412,5,0),(1415,5,0),(1418,5,0),(1422,5,0),(1432,5,0),(1442,5,0),(1443,5,0),(1519,5,0),(1519,10,0),(1519,39,0),(1519,40,0),(1519,41,0),(1519,42,0),(1519,43,0),(1519,44,0),(1519,45,0),(1519,46,0),(1519,47,0),(1519,48,0),(1519,49,0),(1519,50,0),(1519,51,0),(1534,5,0),(1534,17,0),(1534,39,0),(1534,52,0),(1534,53,0),(1534,54,0),(1534,55,0),(1534,56,0),(1534,57,0),(1534,58,0),(1534,59,0),(1534,60,0),(1534,61,0),(1592,5,0),(1592,10,0),(1592,62,0),(1592,63,0),(1592,64,0),(1649,5,0),(1649,10,0),(1649,33,0),(1649,45,0),(1649,65,0),(1649,66,0),(1649,67,0),(1649,68,0),(1649,69,0),(1649,70,0),(1649,71,0),(1666,5,0),(1666,10,0),(1666,33,0),(1666,69,0),(1666,70,0),(1666,72,0),(1698,5,0),(2273,5,0),(2274,5,0),(2275,5,0),(2276,5,0),(2277,5,0),(2278,5,0),(2279,5,0),(2280,5,0),(2280,108,0),(2280,109,0),(2283,2,0),(2283,5,0),(2283,39,0),(2283,63,0),(2283,110,0),(2283,111,0),(2283,112,0),(2283,113,0),(2283,114,0),(2283,451,0),(2284,5,0),(2284,10,0),(2284,39,0),(2284,112,0),(2284,115,0),(2285,5,0),(2285,116,0),(2286,5,0),(2287,5,0),(2287,10,0),(2287,33,0),(2287,45,0),(2287,63,0),(2287,70,0),(2287,117,0),(2287,118,0),(2287,119,0),(2287,120,0),(2287,121,0),(2287,122,0),(2288,5,0),(2288,10,0),(2288,45,0),(2288,80,0),(2288,88,0),(2288,123,0),(2288,124,0),(2530,5,0),(2543,5,0),(2543,10,0),(2543,118,0),(2543,124,0),(2543,152,0),(2543,153,0),(2543,154,0),(2668,5,0),(2668,10,0),(2668,11,0),(2668,60,0),(2668,61,0),(2668,63,0),(2668,118,0),(2668,122,0),(2668,182,0),(2668,183,0),(2671,5,0),(2671,10,0),(2671,63,0),(2671,122,0),(2671,184,0),(2671,185,0),(2671,186,0),(2671,187,0),(2671,188,0),(2671,189,0),(2720,5,0),(2720,10,0),(2720,33,0),(2720,69,0),(2720,70,0),(2720,80,0),(2720,118,0),(2720,211,0),(2755,5,0),(2780,5,0),(2780,10,0),(2780,33,0),(2780,45,0),(2780,70,0),(2780,118,0),(2780,122,0),(2780,229,0),(2780,230,0),(2780,231,0),(2785,2,0),(2785,5,0),(2785,10,0),(2785,21,0),(2785,33,0),(2785,34,0),(2785,45,0),(2785,70,0),(2785,78,0),(2785,118,0),(2785,122,0),(2785,231,0),(2785,246,0),(2785,247,0),(2785,451,0),(2808,5,0),(2808,10,0),(2808,47,0),(2808,248,0),(2845,5,0),(2845,70,0),(2845,122,0),(2845,239,0),(2845,248,0),(2845,252,0),(2845,253,0),(2845,254,0),(2855,5,0),(2855,10,0),(2855,69,0),(2855,122,0),(2855,255,0),(2855,256,0),(2855,257,0),(2855,258,0),(2855,259,0),(2855,260,0),(2855,261,0),(2866,5,0),(2866,10,0),(2866,33,0),(2866,63,0),(2866,70,0),(2866,110,0),(2866,118,0),(2866,122,0),(2866,195,0),(2866,197,0),(2866,199,0),(2866,262,0),(2874,5,0),(2874,10,0),(2874,33,0),(2874,63,0),(2874,70,0),(2874,118,0),(2874,121,0),(2874,122,0),(2874,263,0),(2959,5,0),(2959,10,0),(2959,33,0),(2959,41,0),(2959,45,0),(2959,48,0),(2959,50,0),(2959,70,0),(2959,118,0),(2959,122,0),(2972,5,0),(2978,5,0),(3178,5,0),(3178,10,0),(3178,33,0),(3178,70,0),(3178,82,0),(3178,122,0),(3178,277,0),(3198,5,0),(3198,10,0),(3198,33,0),(3198,70,0),(3198,82,0),(3198,118,0),(3198,122,0),(3198,278,0),(3198,279,0),(3198,280,0),(3198,281,0),(3227,5,0),(3227,10,0),(3227,33,0),(3227,69,0),(3227,70,0),(3227,122,0),(3227,285,0),(3227,286,0),(3227,287,0),(3227,288,0),(3239,5,0),(3239,10,0),(3239,33,0),(3239,70,0),(3239,118,0),(3239,122,0),(3239,125,0),(3239,289,0),(3239,290,0),(3321,5,0),(3478,5,0),(3501,5,0),(3501,10,0),(3501,33,0),(3501,70,0),(3501,122,0),(3501,295,0),(3501,296,0),(3501,297,0),(3550,5,0),(3550,10,0),(3550,63,0),(3550,298,0),(3550,299,0),(3628,5,0),(3628,10,0),(3628,47,0),(3628,300,0),(3628,301,0),(3628,302,0),(3689,5,0),(3689,320,0),(3783,5,0),(3783,321,0),(3783,322,0),(3783,323,0),(3800,5,0),(3800,324,0),(3800,325,0),(3817,5,0),(3827,5,0),(3902,5,0),(3902,39,0),(3913,5,0),(3913,39,0),(3920,5,0),(3947,5,0),(3947,10,0),(3947,304,0),(3947,328,0),(3953,5,0),(3968,5,0),(4004,5,0),(4004,39,0),(4106,2,0),(4106,5,0),(4106,448,0),(4377,5,0),(4779,2,0),(4779,5,0),(4779,10,0),(4779,17,0),(4779,63,0),(4779,110,0),(4779,118,0),(4779,329,0),(4779,451,0),(4791,5,0),(4791,10,0),(4791,69,0),(5131,5,0),(5131,10,0),(5131,69,0),(5131,70,0),(5131,205,0),(5131,330,0),(5279,5,0),(5323,5,0),(5409,5,0),(6336,5,0),(6391,5,0),(6451,5,0),(6471,5,0),(6680,5,0),(6721,5,0),(6769,5,0),(6843,5,0),(7024,5,0),(7098,5,0),(7228,5,0),(7297,5,0),(7474,5,0),(7522,5,0),(7591,5,0),(7657,5,0),(7845,5,0),(7920,5,0),(7995,5,0),(8100,5,0),(8301,5,0),(8345,5,0),(8441,5,0),(8529,5,0),(8598,5,0),(8804,5,0),(8890,5,0),(9178,5,0),(9226,5,0),(9417,5,0),(9491,5,0),(9560,5,0),(9698,5,0),(9752,5,0),(9947,5,0),(10018,5,0),(10090,5,0),(10370,5,0),(10442,5,0),(10762,5,0),(10832,5,0),(10929,5,0),(11024,5,0),(11155,5,0),(11407,2,0),(11407,5,0),(11407,450,0),(11549,5,0),(11702,5,0),(11824,5,0),(12073,5,0),(12216,5,0),(12344,5,0),(12493,5,0),(12781,5,0),(12883,5,0),(13007,5,0),(13140,5,0),(13299,2,0),(13299,5,0),(13299,451,0),(13618,5,0),(13708,5,0),(14072,5,0),(14118,5,0),(14386,2,0),(14386,5,0),(14386,450,0),(14386,451,0),(14576,5,0),(14845,5,0),(15169,5,0),(15291,5,0),(15432,5,0),(15602,2,0),(15602,5,0),(15602,332,0),(15602,333,0),(15602,334,0),(15602,335,0),(15602,451,0),(15786,5,0),(16054,5,0),(16225,5,0),(16411,2,0),(16411,5,0),(16411,450,0),(16601,5,0),(16935,2,0),(16935,5,0),(16935,336,0),(16935,337,0),(16935,338,0),(16935,451,0),(17101,5,0),(17261,5,0),(17377,5,0),(17661,2,0),(17661,5,0),(17661,453,0),(17815,5,0),(17991,5,0),(18161,5,0),(18287,5,0),(18457,5,0),(18628,2,0),(18628,5,0),(18628,450,0),(18628,451,0),(18735,5,0),(18855,5,0),(19072,5,0),(19124,5,0),(19203,5,0),(19320,5,0),(19426,5,0),(19515,2,0),(19515,5,0),(19515,450,0),(19515,451,0),(19587,5,0),(19677,5,0),(19844,5,0),(19975,5,0),(20168,5,0),(20290,5,0),(20459,5,0),(20624,5,0),(21235,5,0),(21788,5,0),(21948,5,0),(22127,5,0),(22301,5,0),(22301,339,0),(22617,5,0),(22617,344,0),(22617,345,0),(22758,5,0),(22758,10,0),(22758,93,0),(22758,346,0),(22901,5,0),(22901,69,0),(22901,347,0),(23077,5,0),(23077,61,0),(23077,340,0),(23077,341,0),(23077,342,0),(23077,343,0),(23305,5,0),(23383,5,0),(23526,5,0),(23526,33,0),(23526,69,0),(23526,70,0),(23526,83,0),(23526,351,0),(23636,5,0),(23636,10,0),(23636,111,0),(23636,285,0),(23636,352,0),(23765,5,0),(23765,10,0),(23765,82,0),(23765,122,0),(23765,124,0),(23765,353,0),(23765,354,0),(23765,355,0),(23939,5,0),(23939,10,0),(23939,13,0),(23939,78,0),(23939,122,0),(23939,239,0),(23939,356,0),(24097,5,0),(24097,69,0),(24097,83,0),(24097,357,0),(24097,358,0),(24097,359,0),(24186,5,0),(24186,10,0),(24186,63,0),(24186,154,0),(24262,2,0),(24262,5,0),(24262,450,0),(24262,451,0),(24449,5,0),(24449,288,0),(24544,2,0),(24544,5,0),(24544,13,0),(24544,364,0),(24544,365,0),(24544,366,0),(24544,367,0),(24544,368,0),(24544,369,0),(24544,449,0),(24648,5,0),(24648,344,0),(24648,370,0),(24648,371,0),(24764,2,0),(24764,5,0),(24764,10,0),(24764,13,0),(24764,47,0),(24764,175,0),(24764,360,0),(24764,361,0),(24764,362,0),(24764,363,0),(24764,449,0),(24894,5,0),(24894,10,0),(24894,78,0),(24894,375,0),(24894,376,0),(24894,377,0),(24894,378,0),(24894,379,0),(24894,380,0),(24894,381,0),(24894,382,0),(24894,383,0),(25092,2,0),(25092,5,0),(25092,10,0),(25092,41,0),(25092,78,0),(25092,175,0),(25092,384,0),(25092,385,0),(25092,386,0),(25092,387,0),(25092,388,0),(25092,389,0),(25092,390,0),(25092,449,0),(25457,5,0),(25457,10,0),(25457,154,0),(25457,372,0),(25457,373,0),(25457,374,0),(25466,2,0),(25466,5,0),(25466,154,0),(25466,175,0),(25466,449,0),(25961,5,0),(25961,10,0),(25961,18,0),(25961,186,0),(25961,310,0),(25961,319,0),(25961,366,0),(25961,397,0),(25961,398,0),(25961,399,0),(25961,400,0),(25961,401,0),(26101,5,0),(26101,175,0),(26101,186,0),(26101,326,0),(26101,327,0),(26456,5,0),(26456,78,0),(26456,81,0),(26456,331,0),(26749,5,0),(26749,190,0),(26749,342,0),(26749,344,0),(26749,348,0),(26749,349,0),(26749,350,0),(26957,5,0),(26957,58,0),(26957,117,0),(26957,303,0),(26957,304,0),(26957,305,0),(27204,5,0),(27204,11,0),(27204,15,0),(27204,306,0),(27204,307,0),(27204,308,0),(27204,309,0),(27204,310,0),(27204,311,0),(27204,312,0),(27204,313,0),(27204,314,0),(27204,315,0),(27204,316,0),(27204,317,0),(27204,318,0),(27204,319,0),(27321,2,0),(27321,5,0),(27321,10,0),(27321,11,0),(27321,391,0),(27321,392,0),(27321,393,0),(27321,394,0),(27321,395,0),(27321,396,0),(27321,449,0),(27746,5,0),(27746,63,0),(27746,78,0),(27746,197,0),(27746,231,0),(27746,283,0),(27746,285,0),(27746,291,0),(27746,292,0),(27746,293,0),(27868,5,0),(27868,63,0),(27868,69,0),(27868,118,0),(27868,122,0),(27868,283,0),(27868,294,0),(28326,5,0),(28326,197,0),(28326,199,0),(28326,282,0),(28326,283,0),(28326,284,0),(28483,5,0),(28483,123,0),(28483,238,0),(28483,271,0),(28483,272,0),(28615,5,0),(28615,271,0),(28615,273,0),(28615,274,0),(28615,275,0),(28615,276,0),(28845,5,0),(28845,17,0),(28845,59,0),(28845,264,0),(28845,265,0),(28845,266,0),(28845,267,0),(29093,5,0),(29093,268,0),(29093,269,0),(29093,270,0),(29658,5,0),(29658,249,0),(29658,250,0),(29658,251,0),(29855,5,0),(29855,59,0),(29855,188,0),(29855,232,0),(29946,5,0),(29946,233,0),(29946,234,0),(29946,235,0),(30099,5,0),(30099,10,0),(30099,17,0),(30099,63,0),(30099,69,0),(30099,125,0),(30099,236,0),(30099,237,0),(30099,238,0),(30099,239,0),(30099,240,0),(30198,5,0),(30198,49,0),(30198,154,0),(30198,241,0),(30198,242,0),(30198,243,0),(30198,244,0),(30198,245,0),(30273,5,0),(30273,121,0),(30273,212,0),(30273,213,0),(30273,214,0),(30431,5,0),(30431,215,0),(30431,216,0),(30439,5,0),(30439,217,0),(30439,218,0),(30500,5,0),(30500,33,0),(30500,202,0),(30500,219,0),(30500,220,0),(30506,5,0),(30506,221,0),(30506,222,0),(30506,223,0),(30506,224,0),(30506,225,0),(30528,5,0),(30528,221,0),(30528,226,0),(30528,227,0),(30531,5,0),(30531,221,0),(30531,228,0),(30642,5,0),(30642,80,0),(30642,201,0),(30642,202,0),(30642,203,0),(30657,5,0),(30657,204,0),(30657,205,0),(30657,206,0),(30719,2,0),(30719,5,0),(30719,73,0),(30719,207,0),(30719,208,0),(30719,209,0),(30719,210,0),(30719,450,0),(30719,451,0),(31063,5,0),(31063,45,0),(31063,190,0),(31063,191,0),(31063,192,0),(31063,193,0),(31063,194,0),(31258,5,0),(31258,176,0),(31258,195,0),(31258,196,0),(31258,197,0),(31258,198,0),(31258,199,0),(31258,200,0),(31421,2,0),(31421,5,0),(31421,50,0),(31421,118,0),(31421,175,0),(31421,176,0),(31421,177,0),(31421,178,0),(31421,450,0),(31421,451,0),(31734,5,0),(31734,179,0),(31734,180,0),(31734,181,0),(32172,5,0),(32172,10,0),(32172,148,0),(32172,155,0),(32172,156,0),(32172,157,0),(32172,158,0),(32172,159,0),(32172,160,0),(32174,5,0),(32174,121,0),(32174,157,0),(32174,161,0),(32174,162,0),(32174,163,0),(32174,164,0),(32174,165,0),(32174,166,0),(32176,5,0),(32176,86,0),(32176,88,0),(32176,160,0),(32176,167,0),(32176,168,0),(32176,169,0),(32176,170,0),(32176,171,0),(32176,172,0),(32176,173,0),(32176,174,0),(32178,5,0),(32178,10,0),(32178,63,0),(32178,121,0),(32178,139,0),(32178,144,0),(32178,145,0),(32181,5,0),(32181,146,0),(32181,147,0),(32181,148,0),(32181,149,0),(33064,2,0),(33064,5,0),(33064,448,0),(33066,2,0),(33066,5,0),(33066,69,0),(33066,83,0),(33066,150,0),(33066,151,0),(33066,448,0),(33426,5,0),(33426,48,0),(33426,126,0),(33426,136,0),(33426,137,0),(33426,138,0),(33426,139,0),(33426,140,0),(33426,141,0),(33426,142,0),(33426,143,0),(33779,5,0),(34054,2,0),(34054,5,0),(34054,10,0),(34054,86,0),(34054,88,0),(34054,133,0),(34054,134,0),(34054,448,0),(34519,2,0),(34519,5,0),(34519,109,0),(34519,135,0),(34519,448,0),(35126,2,0),(35126,5,0),(35126,125,0),(35126,126,0),(35126,127,0),(35126,128,0),(35126,129,0),(35126,130,0),(35126,131,0),(35126,132,0),(35126,448,0),(35742,5,0),(35742,103,0),(35742,104,0),(35742,105,0),(35742,106,0),(35742,107,0),(36198,5,0),(36198,20,0),(36198,82,0),(36198,83,0),(36198,84,0),(36198,85,0),(36198,86,0),(36198,87,0),(36198,88,0),(36198,89,0),(36198,90,0),(36198,91,0),(36198,92,0),(36198,93,0),(36198,94,0),(36394,5,0),(36414,5,0),(36414,82,0),(36414,91,0),(36414,95,0),(36414,96,0),(36414,97,0),(36414,98,0),(36414,99,0),(36414,100,0),(36414,101,0),(36414,102,0),(36448,5,0),(36845,5,0),(36845,17,0),(36845,73,0),(36845,74,0),(36845,75,0),(36845,76,0),(36845,77,0),(36845,78,0),(36845,79,0),(36845,80,0),(37121,2,0),(37121,5,0),(37121,10,0),(37121,81,0),(37121,448,0),(37375,5,0),(37375,10,0),(37375,69,0),(37375,70,0),(37375,88,0),(39278,3,0),(39279,3,0),(39280,3,0),(39281,3,0),(39318,3,0),(39319,3,0),(39320,3,0),(39321,3,0),(39322,3,0),(39323,3,0),(39324,3,0),(39325,3,0),(39344,3,0),(39348,3,0),(39485,3,0),(39486,3,0),(39487,3,0),(39522,3,0),(39544,2,0),(39544,5,0),(39544,450,0),(40263,404,0),(40263,407,0),(40263,412,0),(40264,406,0),(40265,406,0),(40270,403,0),(40270,404,0),(40270,407,0),(40270,412,0),(40271,403,0),(40271,404,0),(40271,407,0),(40271,412,0),(40272,403,0),(40272,404,0),(40272,407,0),(40272,412,0),(40273,403,0),(40273,409,0),(40273,411,0),(40274,403,0),(40274,409,0),(40274,411,0),(40275,403,0),(40275,404,0),(40275,406,0),(40275,407,0),(40275,412,0),(40276,406,0),(40276,441,0),(40277,403,0),(40277,404,0),(40277,407,0),(40277,412,0),(40278,403,0),(40278,404,0),(40278,406,0),(40278,407,0),(40278,412,0),(40279,403,0),(40279,409,0),(40279,411,0),(40280,403,0),(40280,404,0),(40280,406,0),(40280,407,0),(40280,412,0),(40281,403,0),(40281,404,0),(40281,406,0),(40281,407,0),(40281,412,0),(40282,403,0),(40282,409,0),(40282,411,0),(40283,403,0),(40283,409,0),(40283,411,0),(40284,403,0),(40284,409,0),(40284,411,0),(40285,403,0),(40285,409,0),(40285,411,0),(40286,403,0),(40286,404,0),(40286,407,0),(40286,412,0),(40734,413,0),(40735,413,0),(40743,417,0),(40743,418,0),(40746,417,0),(40746,418,0),(40751,417,0),(40751,419,0),(40752,417,0),(40752,420,0),(40753,417,0),(40753,421,0),(40754,417,0),(40754,422,0),(40755,417,0),(40755,422,0),(40756,417,0),(40756,423,0),(40757,417,0),(40757,424,0),(40758,417,0),(40758,424,0),(40759,417,0),(40759,425,0),(40760,417,0),(40760,425,0),(40761,417,0),(40761,426,0),(40762,417,0),(40762,427,0),(40763,417,0),(40763,428,0),(40764,417,0),(40764,429,0),(40765,417,0),(40765,429,0),(40766,417,0),(40766,431,0),(40767,417,0),(40767,432,0),(40768,417,0),(40768,432,0),(40769,417,0),(40769,432,0),(40770,417,0),(40770,433,0),(40771,417,0),(40771,434,0),(40772,417,0),(40772,434,0),(40773,417,0),(40773,435,0),(40774,417,0),(40774,436,0),(40775,417,0),(40775,437,0),(40776,417,0),(40776,438,0),(40778,406,0),(40778,439,0),(40779,403,0),(40779,407,0),(40779,408,0),(40779,440,0),(40780,406,0),(40780,410,0),(40780,439,0),(40781,403,0),(40781,407,0),(40781,408,0),(40781,440,0),(40858,3,0),(40906,3,0),(41201,417,0),(41201,430,0),(41286,3,0),(41327,417,0),(41327,442,0),(41334,417,0),(41334,427,0),(41403,406,0),(41425,406,0),(41425,439,0),(41425,443,0),(41425,444,0),(41455,406,0),(41455,410,0),(41455,439,0),(41455,444,0),(41520,406,0),(41520,410,0),(41520,439,0),(41520,444,0),(41533,406,0),(41533,410,0),(41533,439,0),(41533,444,0),(41573,3,0),(41574,3,0),(41575,3,0),(41576,3,0),(41598,406,0),(41605,3,0),(42003,2,0),(42003,5,0),(42003,164,0),(42003,445,0),(42003,446,0),(42003,447,0),(42003,448,0),(42003,450,0),(42003,451,0),(42006,2,0),(42245,417,0),(42245,454,0),(42431,5,0),(42431,402,0),(42431,450,0),(42431,453,0),(42438,402,0),(42484,3,0),(42492,402,0),(42506,402,0),(42635,5,0),(42635,402,0),(42683,402,0),(42880,3,0),(42986,2,0),(42986,5,0),(42986,82,0),(42986,446,0),(42986,447,0),(42986,448,0),(42986,450,0),(42986,451,0),(43019,2,0),(43019,5,0),(43019,450,0),(43019,453,0),(43028,2,0),(43040,2,0),(43040,5,0),(43040,449,0),(43040,450,0),(43040,451,0),(43066,2,0),(43066,5,0),(43066,451,0),(43069,2,0),(43069,5,0),(43069,451,0),(43073,2,0),(43073,5,0),(43073,449,0),(43073,451,0),(43078,2,0),(43078,5,0),(43078,450,0),(43078,453,0),(43081,2,0),(43081,5,0),(43081,450,0),(43081,451,0),(43081,453,0);
/*!40000 ALTER TABLE `6m7_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_term_taxonomy`
--

DROP TABLE IF EXISTS `6m7_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_term_taxonomy` (
  `term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `parent` bigint unsigned NOT NULL DEFAULT '0',
  `count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=455 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_term_taxonomy`
--

LOCK TABLES `6m7_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `6m7_term_taxonomy` DISABLE KEYS */;
INSERT INTO `6m7_term_taxonomy` VALUES (2,2,'blog-format','',0,31),(3,3,'nav_menu','',0,28),(5,5,'category','',0,33),(6,6,'post_tag','',0,0),(7,7,'post_tag','',0,0),(8,8,'post_tag','',0,0),(9,9,'post_tag','',0,0),(10,10,'post_tag','',0,7),(11,11,'post_tag','',0,1),(12,12,'post_tag','',0,0),(13,13,'post_tag','',0,2),(14,14,'post_tag','',0,0),(15,15,'post_tag','',0,0),(16,16,'post_tag','',0,0),(17,17,'post_tag','',0,1),(18,18,'post_tag','',0,0),(19,19,'post_tag','',0,0),(20,20,'post_tag','',0,0),(21,21,'post_tag','',0,1),(22,22,'post_tag','',0,0),(23,23,'post_tag','',0,0),(24,24,'post_tag','',0,0),(25,25,'post_tag','',0,0),(26,26,'post_tag','',0,0),(27,27,'post_tag','',0,0),(28,28,'post_tag','',0,0),(29,29,'post_tag','',0,0),(30,30,'post_tag','',0,0),(31,31,'post_tag','',0,0),(32,32,'post_tag','',0,0),(33,33,'post_tag','',0,1),(34,34,'post_tag','',0,1),(35,35,'post_tag','',0,0),(36,36,'post_tag','',0,0),(37,37,'post_tag','',0,0),(38,38,'post_tag','',0,0),(39,39,'post_tag','',0,1),(40,40,'post_tag','',0,0),(41,41,'post_tag','',0,1),(42,42,'post_tag','',0,0),(43,43,'post_tag','',0,0),(44,44,'post_tag','',0,0),(45,45,'post_tag','',0,1),(46,46,'post_tag','',0,0),(47,47,'post_tag','',0,1),(48,48,'post_tag','',0,0),(49,49,'post_tag','',0,0),(50,50,'post_tag','',0,1),(51,51,'post_tag','',0,0),(52,52,'post_tag','',0,0),(53,53,'post_tag','',0,0),(54,54,'post_tag','',0,0),(55,55,'post_tag','',0,0),(56,56,'post_tag','',0,0),(57,57,'post_tag','',0,0),(58,58,'post_tag','',0,0),(59,59,'post_tag','',0,0),(60,60,'post_tag','',0,0),(61,61,'post_tag','',0,0),(62,62,'post_tag','',0,0),(63,63,'post_tag','',0,2),(64,64,'post_tag','',0,0),(65,65,'post_tag','',0,0),(66,66,'post_tag','',0,0),(67,67,'post_tag','',0,0),(68,68,'post_tag','',0,0),(69,69,'post_tag','',0,1),(70,70,'post_tag','',0,1),(71,71,'post_tag','',0,0),(72,72,'post_tag','',0,0),(73,73,'post_tag','',0,1),(74,74,'post_tag','',0,0),(75,75,'post_tag','',0,0),(76,76,'post_tag','',0,0),(77,77,'post_tag','',0,0),(78,78,'post_tag','',0,2),(79,79,'post_tag','',0,0),(80,80,'post_tag','',0,0),(81,81,'post_tag','',0,1),(82,82,'post_tag','',0,1),(83,83,'post_tag','',0,1),(84,84,'post_tag','',0,0),(85,85,'post_tag','',0,0),(86,86,'post_tag','',0,1),(87,87,'post_tag','',0,0),(88,88,'post_tag','',0,1),(89,89,'post_tag','',0,0),(90,90,'post_tag','',0,0),(91,91,'post_tag','',0,0),(92,92,'post_tag','',0,0),(93,93,'post_tag','',0,0),(94,94,'post_tag','',0,0),(95,95,'post_tag','',0,0),(96,96,'post_tag','',0,0),(97,97,'post_tag','',0,0),(98,98,'post_tag','',0,0),(99,99,'post_tag','',0,0),(100,100,'post_tag','',0,0),(101,101,'post_tag','',0,0),(102,102,'post_tag','',0,0),(103,103,'post_tag','',0,0),(104,104,'post_tag','',0,0),(105,105,'post_tag','',0,0),(106,106,'post_tag','',0,0),(107,107,'post_tag','',0,0),(108,108,'post_tag','',0,0),(109,109,'post_tag','',0,1),(110,110,'post_tag','',0,2),(111,111,'post_tag','',0,1),(112,112,'post_tag','',0,1),(113,113,'post_tag','',0,1),(114,114,'post_tag','',0,1),(115,115,'post_tag','',0,0),(116,116,'post_format','',0,0),(117,117,'post_tag','',0,0),(118,118,'post_tag','',0,3),(119,119,'post_tag','',0,0),(120,120,'post_tag','',0,0),(121,121,'post_tag','',0,0),(122,122,'post_tag','',0,1),(123,123,'post_tag','',0,0),(124,124,'post_tag','',0,0),(125,125,'post_tag','',0,1),(126,126,'post_tag','',0,1),(127,127,'post_tag','',0,1),(128,128,'post_tag','',0,1),(129,129,'post_tag','',0,1),(130,130,'post_tag','',0,1),(131,131,'post_tag','',0,1),(132,132,'post_tag','',0,1),(133,133,'post_tag','',0,1),(134,134,'post_tag','',0,1),(135,135,'post_tag','',0,1),(136,136,'post_tag','',0,0),(137,137,'post_tag','',0,0),(138,138,'post_tag','',0,0),(139,139,'post_tag','',0,0),(140,140,'post_tag','',0,0),(141,141,'post_tag','',0,0),(142,142,'post_tag','',0,0),(143,143,'post_tag','',0,0),(144,144,'post_tag','',0,0),(145,145,'post_tag','',0,0),(146,146,'post_tag','',0,0),(147,147,'post_tag','',0,0),(148,148,'post_tag','',0,0),(149,149,'post_tag','',0,0),(150,150,'post_tag','',0,1),(151,151,'post_tag','',0,1),(152,152,'post_tag','',0,0),(153,153,'post_tag','',0,0),(154,154,'post_tag','',0,1),(155,155,'post_tag','',0,0),(156,156,'post_tag','',0,0),(157,157,'post_tag','',0,0),(158,158,'post_tag','',0,0),(159,159,'post_tag','',0,0),(160,160,'post_tag','',0,0),(161,161,'post_tag','',0,0),(162,162,'post_tag','',0,0),(163,163,'post_tag','',0,0),(164,164,'post_tag','',0,1),(165,165,'post_tag','',0,0),(166,166,'post_tag','',0,0),(167,167,'post_tag','',0,0),(168,168,'post_tag','',0,0),(169,169,'post_tag','',0,0),(170,170,'post_tag','',0,0),(171,171,'post_tag','',0,0),(172,172,'post_tag','',0,0),(173,173,'post_tag','',0,0),(174,174,'post_tag','',0,0),(175,175,'post_tag','',0,4),(176,176,'post_tag','',0,1),(177,177,'post_tag','',0,1),(178,178,'post_tag','',0,1),(179,179,'post_tag','',0,0),(180,180,'post_tag','',0,0),(181,181,'post_tag','',0,0),(182,182,'post_tag','',0,0),(183,183,'post_tag','',0,0),(184,184,'post_tag','',0,0),(185,185,'post_tag','',0,0),(186,186,'post_tag','',0,0),(187,187,'post_tag','',0,0),(188,188,'post_tag','',0,0),(189,189,'post_tag','',0,0),(190,190,'post_tag','',0,0),(191,191,'post_tag','',0,0),(192,192,'post_tag','',0,0),(193,193,'post_tag','',0,0),(194,194,'post_tag','',0,0),(195,195,'post_tag','',0,0),(196,196,'post_tag','',0,0),(197,197,'post_tag','',0,0),(198,198,'post_tag','',0,0),(199,199,'post_tag','',0,0),(200,200,'post_tag','',0,0),(201,201,'post_tag','',0,0),(202,202,'post_tag','',0,0),(203,203,'post_tag','',0,0),(204,204,'post_tag','',0,0),(205,205,'post_tag','',0,0),(206,206,'post_tag','',0,0),(207,207,'post_tag','',0,1),(208,208,'post_tag','',0,1),(209,209,'post_tag','',0,1),(210,210,'post_tag','',0,1),(211,211,'post_tag','',0,0),(212,212,'post_tag','',0,0),(213,213,'post_tag','',0,0),(214,214,'post_tag','',0,0),(215,215,'post_tag','',0,0),(216,216,'post_tag','',0,0),(217,217,'post_tag','',0,0),(218,218,'post_tag','',0,0),(219,219,'post_tag','',0,0),(220,220,'post_tag','',0,0),(221,221,'post_tag','',0,0),(222,222,'post_tag','',0,0),(223,223,'post_tag','',0,0),(224,224,'post_tag','',0,0),(225,225,'post_tag','',0,0),(226,226,'post_tag','',0,0),(227,227,'post_tag','',0,0),(228,228,'post_tag','',0,0),(229,229,'post_tag','',0,0),(230,230,'post_tag','',0,0),(231,231,'post_tag','',0,1),(232,232,'post_tag','',0,0),(233,233,'post_tag','',0,0),(234,234,'post_tag','',0,0),(235,235,'post_tag','',0,0),(236,236,'post_tag','',0,0),(237,237,'post_tag','',0,0),(238,238,'post_tag','',0,0),(239,239,'post_tag','',0,0),(240,240,'post_tag','',0,0),(241,241,'post_tag','',0,0),(242,242,'post_tag','',0,0),(243,243,'post_tag','',0,0),(244,244,'post_tag','',0,0),(245,245,'post_tag','',0,0),(246,246,'post_tag','',0,1),(247,247,'post_tag','',0,1),(248,248,'post_tag','',0,0),(249,249,'post_tag','',0,0),(250,250,'post_tag','',0,0),(251,251,'post_tag','',0,0),(252,252,'post_tag','',0,0),(253,253,'post_tag','',0,0),(254,254,'post_tag','',0,0),(255,255,'post_tag','',0,0),(256,256,'post_tag','',0,0),(257,257,'post_tag','',0,0),(258,258,'post_tag','',0,0),(259,259,'post_tag','',0,0),(260,260,'post_tag','',0,0),(261,261,'post_tag','',0,0),(262,262,'post_tag','',0,0),(263,263,'post_tag','',0,0),(264,264,'post_tag','',0,0),(265,265,'post_tag','',0,0),(266,266,'post_tag','',0,0),(267,267,'post_tag','',0,0),(268,268,'post_tag','',0,0),(269,269,'post_tag','',0,0),(270,270,'post_tag','',0,0),(271,271,'post_tag','',0,0),(272,272,'post_tag','',0,0),(273,273,'post_tag','',0,0),(274,274,'post_tag','',0,0),(275,275,'post_tag','',0,0),(276,276,'post_tag','',0,0),(277,277,'post_tag','',0,0),(278,278,'post_tag','',0,0),(279,279,'post_tag','',0,0),(280,280,'post_tag','',0,0),(281,281,'post_tag','',0,0),(282,282,'post_tag','',0,0),(283,283,'post_tag','',0,0),(284,284,'post_tag','',0,0),(285,285,'post_tag','',0,0),(286,286,'post_tag','',0,0),(287,287,'post_tag','',0,0),(288,288,'post_tag','',0,0),(289,289,'post_tag','',0,0),(290,290,'post_tag','',0,0),(291,291,'post_tag','',0,0),(292,292,'post_tag','',0,0),(293,293,'post_tag','',0,0),(294,294,'post_tag','',0,0),(295,295,'post_tag','',0,0),(296,296,'post_tag','',0,0),(297,297,'post_tag','',0,0),(298,298,'post_tag','',0,0),(299,299,'post_tag','',0,0),(300,300,'post_tag','',0,0),(301,301,'post_tag','',0,0),(302,302,'post_tag','',0,0),(303,303,'post_tag','',0,0),(304,304,'post_tag','',0,0),(305,305,'post_tag','',0,0),(306,306,'post_tag','',0,0),(307,307,'post_tag','',0,0),(308,308,'post_tag','',0,0),(309,309,'post_tag','',0,0),(310,310,'post_tag','',0,0),(311,311,'post_tag','',0,0),(312,312,'post_tag','',0,0),(313,313,'post_tag','',0,0),(314,314,'post_tag','',0,0),(315,315,'post_tag','',0,0),(316,316,'post_tag','',0,0),(317,317,'post_tag','',0,0),(318,318,'post_tag','',0,0),(319,319,'post_tag','',0,0),(320,320,'post_tag','',0,0),(321,321,'post_tag','',0,0),(322,322,'post_tag','',0,0),(323,323,'post_tag','',0,0),(324,324,'post_tag','',0,0),(325,325,'post_tag','',0,0),(326,326,'post_tag','',0,0),(327,327,'post_tag','',0,0),(328,328,'post_tag','',0,0),(329,329,'post_tag','',0,1),(330,330,'post_tag','',0,0),(331,331,'post_tag','',0,0),(332,332,'post_tag','',0,1),(333,333,'post_tag','',0,1),(334,334,'post_tag','',0,1),(335,335,'post_tag','',0,1),(336,336,'post_tag','',0,1),(337,337,'post_tag','',0,1),(338,338,'post_tag','',0,1),(339,339,'post_tag','',0,0),(340,340,'post_tag','',0,0),(341,341,'post_tag','',0,0),(342,342,'post_tag','',0,0),(343,343,'post_tag','',0,0),(344,344,'post_tag','',0,0),(345,345,'post_tag','',0,0),(346,346,'post_tag','',0,0),(347,347,'post_tag','',0,0),(348,348,'post_tag','',0,0),(349,349,'post_tag','',0,0),(350,350,'post_tag','',0,0),(351,351,'post_tag','',0,0),(352,352,'post_tag','',0,0),(353,353,'post_tag','',0,0),(354,354,'post_tag','',0,0),(355,355,'post_tag','',0,0),(356,356,'post_tag','',0,0),(357,357,'post_tag','',0,0),(358,358,'post_tag','',0,0),(359,359,'post_tag','',0,0),(360,360,'post_tag','',0,1),(361,361,'post_tag','',0,1),(362,362,'post_tag','',0,1),(363,363,'post_tag','',0,1),(364,364,'post_tag','',0,1),(365,365,'post_tag','',0,1),(366,366,'post_tag','',0,1),(367,367,'post_tag','',0,1),(368,368,'post_tag','',0,1),(369,369,'post_tag','',0,1),(370,370,'post_tag','',0,0),(371,371,'post_tag','',0,0),(372,372,'post_tag','',0,0),(373,373,'post_tag','',0,0),(374,374,'post_tag','',0,0),(375,375,'post_tag','',0,0),(376,376,'post_tag','',0,0),(377,377,'post_tag','',0,0),(378,378,'post_tag','',0,0),(379,379,'post_tag','',0,0),(380,380,'post_tag','',0,0),(381,381,'post_tag','',0,0),(382,382,'post_tag','',0,0),(383,383,'post_tag','',0,0),(384,384,'post_tag','',0,1),(385,385,'post_tag','',0,1),(386,386,'post_tag','',0,1),(387,387,'post_tag','',0,1),(388,388,'post_tag','',0,1),(389,389,'post_tag','',0,1),(390,390,'post_tag','',0,1),(391,391,'post_tag','',0,1),(392,392,'post_tag','',0,1),(393,393,'post_tag','',0,1),(394,394,'post_tag','',0,1),(395,395,'post_tag','',0,1),(396,396,'post_tag','',0,1),(397,397,'post_tag','',0,0),(398,398,'post_tag','',0,0),(399,399,'post_tag','',0,0),(400,400,'post_tag','',0,0),(401,401,'post_tag','',0,0),(402,402,'blog-format','',0,2),(403,403,'course-cat','Online and In-Person CPD Courses tailored to suit your learning style.',0,17),(404,404,'course-cat','',403,9),(406,406,'course-cat','',0,14),(407,407,'course-level','',0,11),(408,408,'course-cat','',403,2),(409,409,'course-cat','',403,7),(410,410,'course-level','',0,4),(411,411,'course-level','',0,7),(412,412,'course-level','',0,9),(413,413,'nav_menu','',0,2),(415,415,'venue-category','',0,0),(417,417,'venue-category','',0,32),(418,418,'region','',0,2),(419,419,'region','',0,1),(420,420,'region','',0,1),(421,421,'region','',0,1),(422,422,'region','',0,2),(423,423,'region','',0,1),(424,424,'region','',0,2),(425,425,'region','',0,2),(426,426,'region','',0,1),(427,427,'region','',0,2),(428,428,'region','',0,1),(429,429,'region','',0,2),(430,430,'region','',0,1),(431,431,'region','',0,1),(432,432,'region','',0,3),(433,433,'region','',0,1),(434,434,'region','',0,2),(435,435,'region','',0,1),(436,436,'region','',0,1),(437,437,'region','',0,1),(438,438,'region','',0,1),(439,439,'course-level','',0,6),(440,440,'course-level','',0,2),(441,441,'course-level','',0,1),(442,442,'region','',0,1),(443,443,'course-level','',0,1),(444,444,'course-level','',0,4),(445,445,'post_tag','',0,1),(446,446,'post_tag','',0,2),(447,447,'post_tag','',0,2),(448,448,'category','',0,9),(449,449,'category','',0,5),(450,450,'category','',0,13),(451,451,'category','',0,14),(452,452,'category','',0,0),(453,453,'category','',0,2),(454,454,'region','',0,1);
/*!40000 ALTER TABLE `6m7_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_termmeta`
--

DROP TABLE IF EXISTS `6m7_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_termmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=1087 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_termmeta`
--

LOCK TABLES `6m7_termmeta` WRITE;
/*!40000 ALTER TABLE `6m7_termmeta` DISABLE KEYS */;
INSERT INTO `6m7_termmeta` VALUES (1,3,'nav_call_to_action','a:3:{s:5:\"title\";s:20:\"Download Price Guide\";s:3:\"url\";s:55:\"https://biomechanicseducation.com/download-price-guide/\";s:6:\"target\";s:0:\"\";}'),(2,3,'_nav_call_to_action','field_61964a256cb10'),(3,3,'nav_call_to_action_tooltip',''),(4,3,'_nav_call_to_action_tooltip','field_64d24ebb46f41'),(5,403,'hero_style','default'),(6,403,'_hero_style','field_62051d9dc5324'),(7,403,'_thumbnail_id','40475'),(8,403,'__thumbnail_id','field_617570855ddaf'),(9,403,'hero_image_pos_x','right'),(10,403,'_hero_image_pos_x','field_62ec3d05390bb'),(11,403,'hero_image_pos_y','top'),(12,403,'_hero_image_pos_y','field_62ec3d05390bc'),(13,403,'hero_image_pos',''),(14,403,'_hero_image_pos','field_62ec3d05390ba'),(15,403,'hero_title','CPD Courses'),(16,403,'_hero_title','field_617571fe285e8'),(17,403,'hero_text','Online and In-Person CPD Courses tailored to suit your learning style.'),(18,403,'_hero_text','field_6175723c285e9'),(19,403,'hero_actions',''),(20,403,'_hero_actions','field_61757270285ea'),(21,403,'hero_icon',''),(22,403,'_hero_icon','field_61a6182199d03'),(23,403,'blocks','a:7:{i:0;s:10:\"text_block\";i:1;s:5:\"cards\";i:2;s:10:\"text_block\";i:3;s:14:\"course_compare\";i:4;s:5:\"quote\";i:5;s:13:\"step_timeline\";i:6;s:5:\"quote\";}'),(24,403,'_blocks','field_6176696113096'),(25,403,'fft_page_format','default'),(26,403,'_fft_page_format','field_61ae213f1f218'),(27,403,'fft_hide_nav','0'),(28,403,'_fft_hide_nav','field_635bd5e43527c'),(29,403,'fft_hide_header_call_to_action','0'),(30,403,'_fft_hide_header_call_to_action','field_635bd6723527d'),(31,403,'fft_page_sitemap','0'),(32,403,'_fft_page_sitemap','field_61af9b34e8181'),(33,403,'blocks_0_acfe_flexible_toggle',''),(34,403,'_blocks_0_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(35,403,'blocks_0_acfe_flexible_layout_title','Text Block'),(36,403,'_blocks_0_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(37,403,'blocks_0_options_theme','#ffffff'),(38,403,'_blocks_0_options_theme','field_6176830e2ad17'),(39,403,'blocks_0_options',''),(40,403,'_blocks_0_options','field_6176830e2ad16'),(41,403,'blocks_0_text_block_heading','CPD Course Overview'),(42,403,'_blocks_0_text_block_heading','field_617669d413097'),(43,403,'blocks_0_text_block_content','Discover a world of professional growth with Biomechanics Education\'s diverse CPD offerings.\r\n\r\nFrom online courses like Behaviour Change Coaching and Core Training, to specialised webinars and in-person workshops on iMoveFreely and Running Biomechanics, our programmes empower exercise professionals to excel.\r\n\r\nJoin us to enhance your skills, expand your knowledge, and advance your career in the physical activity and health sector. Explore our courses today to elevate your expertise and transform your professional journey.'),(44,403,'_blocks_0_text_block_content','field_617669ec13098'),(87,404,'hero_style','default'),(88,404,'_hero_style','field_62051d9dc5324'),(89,404,'_thumbnail_id','39085'),(90,404,'__thumbnail_id','field_617570855ddaf'),(91,404,'hero_image_pos_x','right'),(92,404,'_hero_image_pos_x','field_62ec3d05390bb'),(93,404,'hero_image_pos_y','top'),(94,404,'_hero_image_pos_y','field_62ec3d05390bc'),(95,404,'hero_image_pos',''),(96,404,'_hero_image_pos','field_62ec3d05390ba'),(97,404,'hero_title','Online CPD Courses'),(98,404,'_hero_title','field_617571fe285e8'),(99,404,'hero_text','Elevate your skills with our expert-led online CPD courses – Anytime, anywhere, and at your pace. '),(100,404,'_hero_text','field_6175723c285e9'),(101,404,'hero_actions',''),(102,404,'_hero_actions','field_61757270285ea'),(103,404,'hero_icon',''),(104,404,'_hero_icon','field_61a6182199d03'),(105,404,'blocks_0_acfe_flexible_toggle',''),(106,404,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(107,404,'blocks_0_acfe_flexible_layout_title','Template'),(108,404,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(109,404,'blocks_0_template','39087'),(110,404,'_blocks_0_template','field_617bdd570fe01'),(111,404,'blocks_1_acfe_flexible_toggle',''),(112,404,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(113,404,'blocks_1_acfe_flexible_layout_title','Text Block'),(114,404,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(115,404,'blocks_1_options_theme','#ffffff'),(116,404,'_blocks_1_options_theme','field_6176830e2ad17'),(117,404,'blocks_1_options',''),(118,404,'_blocks_1_options','field_6176830e2ad16'),(119,404,'blocks_1_text_block_heading','Overview'),(120,404,'_blocks_1_text_block_heading','field_617669d413097'),(121,404,'blocks_1_text_block_content','Our online courses offer comprehensive, expert-led continuing professional development (CPD) designed for professionals seeking to advance their knowledge and skills.\r\n\r\nCovering topics from foundational principles to advanced applications, our interactive modules provide flexible learning opportunities, enabling you to study at your own pace and apply cutting-edge intrinsic biomechanics insights in your practice.'),(122,404,'_blocks_1_text_block_content','field_617669ec13098'),(153,404,'blocks','a:5:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:11:\"promo_panel\";i:3;s:10:\"text_block\";i:4;s:14:\"course_compare\";}'),(154,404,'_blocks','field_6176696113096'),(155,404,'fft_page_format','default'),(156,404,'_fft_page_format','field_61ae213f1f218'),(157,404,'fft_hide_nav','0'),(158,404,'_fft_hide_nav','field_635bd5e43527c'),(159,404,'fft_hide_header_call_to_action','0'),(160,404,'_fft_hide_header_call_to_action','field_635bd6723527d'),(161,404,'fft_page_sitemap','0'),(162,404,'_fft_page_sitemap','field_61af9b34e8181'),(163,408,'hero_style','default'),(164,408,'_hero_style','field_62051d9dc5324'),(165,408,'_thumbnail_id','39496'),(166,408,'__thumbnail_id','field_617570855ddaf'),(167,408,'hero_image_pos_x','right'),(168,408,'_hero_image_pos_x','field_62ec3d05390bb'),(169,408,'hero_image_pos_y','top'),(170,408,'_hero_image_pos_y','field_62ec3d05390bc'),(171,408,'hero_image_pos',''),(172,408,'_hero_image_pos','field_62ec3d05390ba'),(173,408,'hero_title','In-person CPD Courses'),(174,408,'_hero_title','field_617571fe285e8'),(175,408,'hero_text','Make movement intentional with our in-person training workshops, designed by experts – implemented by you.'),(176,408,'_hero_text','field_6175723c285e9'),(177,408,'hero_actions',''),(178,408,'_hero_actions','field_61757270285ea'),(179,408,'hero_icon',''),(180,408,'_hero_icon','field_61a6182199d03'),(181,408,'blocks','a:6:{i:0;s:10:\"split_5050\";i:1;s:5:\"cards\";i:2;s:10:\"text_block\";i:3;s:4:\"tabs\";i:4;s:10:\"text_block\";i:5;s:4:\"tabs\";}'),(182,408,'_blocks','field_6176696113096'),(183,408,'fft_page_format','default'),(184,408,'_fft_page_format','field_61ae213f1f218'),(185,408,'fft_hide_nav','0'),(186,408,'_fft_hide_nav','field_635bd5e43527c'),(187,408,'fft_hide_header_call_to_action','0'),(188,408,'_fft_hide_header_call_to_action','field_635bd6723527d'),(189,408,'fft_page_sitemap','0'),(190,408,'_fft_page_sitemap','field_61af9b34e8181'),(191,409,'hero_style','default'),(192,409,'_hero_style','field_62051d9dc5324'),(193,409,'_thumbnail_id','39483'),(194,409,'__thumbnail_id','field_617570855ddaf'),(195,409,'hero_image_pos_x',''),(196,409,'_hero_image_pos_x','field_62ec3d05390bb'),(197,409,'hero_image_pos_y',''),(198,409,'_hero_image_pos_y','field_62ec3d05390bc'),(199,409,'hero_image_pos',''),(200,409,'_hero_image_pos','field_62ec3d05390ba'),(201,409,'hero_title','Webinars'),(202,409,'_hero_title','field_617571fe285e8'),(203,409,'hero_text','Achieve peak performance with our webinars on Intrinsic Biomechanics, deadlifts, anatomy, movement mastery and more. Move better, live better.'),(204,409,'_hero_text','field_6175723c285e9'),(205,409,'hero_actions','1'),(206,409,'_hero_actions','field_61757270285ea'),(207,409,'hero_icon',''),(208,409,'_hero_icon','field_61a6182199d03'),(209,409,'blocks','a:4:{i:0;s:8:\"template\";i:1;s:10:\"text_block\";i:2;s:11:\"promo_panel\";i:3;s:14:\"course_compare\";}'),(210,409,'_blocks','field_6176696113096'),(211,409,'fft_page_format','default'),(212,409,'_fft_page_format','field_61ae213f1f218'),(213,409,'fft_hide_nav','0'),(214,409,'_fft_hide_nav','field_635bd5e43527c'),(215,409,'fft_hide_header_call_to_action','0'),(216,409,'_fft_hide_header_call_to_action','field_635bd6723527d'),(217,409,'fft_page_sitemap','0'),(218,409,'_fft_page_sitemap','field_61af9b34e8181'),(219,403,'hide_hero','0'),(220,403,'_hide_hero','field_66a2380fcda39'),(221,409,'hide_hero','0'),(222,409,'_hide_hero','field_66a2380fcda39'),(223,409,'hero_actions_0_button','a:3:{s:5:\"title\";s:17:\"View Our Webinars\";s:3:\"url\";s:10:\"#row-409-3\";s:6:\"target\";s:0:\"\";}'),(224,409,'_hero_actions_0_button','field_61757281285eb'),(255,404,'hide_hero','0'),(256,404,'_hide_hero','field_66a2380fcda39'),(257,408,'hide_hero','0'),(258,408,'_hide_hero','field_66a2380fcda39'),(259,408,'blocks_0_acfe_flexible_toggle',''),(260,408,'_blocks_0_acfe_flexible_toggle','field_layout_61767a94eb8b8_toggle'),(261,408,'blocks_0_acfe_flexible_layout_title','50/50 Split'),(262,408,'_blocks_0_acfe_flexible_layout_title','field_layout_61767a94eb8b8_title'),(263,408,'blocks_0_options_theme','#ffffff'),(264,408,'_blocks_0_options_theme','field_617682847c335_field_6176830e2ad17'),(265,408,'blocks_0_options_reverse','0'),(266,408,'_blocks_0_options_reverse','field_61768049bb8ac'),(267,408,'blocks_0_options',''),(268,408,'_blocks_0_options','field_617682517c334'),(269,408,'blocks_0_split_5050_image','40411'),(270,408,'_blocks_0_split_5050_image','field_6239f527a0c3a'),(271,408,'blocks_0_split_5050_video',''),(272,408,'_blocks_0_split_5050_video','field_6239f3160848a'),(273,408,'blocks_0_split_5050_content_title',''),(274,408,'_blocks_0_split_5050_content_title','field_61767bfca3fc0'),(275,408,'blocks_0_split_5050_content_heading','Overview'),(276,408,'_blocks_0_split_5050_content_heading','field_61767b26eb8bb'),(277,408,'blocks_0_split_5050_content_text','Welcome to our in-person Running Biomechanics and iMoveFreely® Instructor workshops, crafted to deepen your understanding of anatomy through intrinsic biomechanics. Ideal for professionals in the physical activity sector, these one-day sessions introduce advanced techniques to refine movement quality and address the specific challenges faced by your clients. Enhance your expertise and assist your clients in reaching peak performance with our expert-led, evidence-based programmes.'),(278,408,'_blocks_0_split_5050_content_text','field_61767b3beb8bc'),(279,408,'blocks_0_split_5050_content_actions',''),(280,408,'_blocks_0_split_5050_content_actions','field_61767b68eb8bd'),(281,408,'blocks_0_split_5050_content',''),(282,408,'_blocks_0_split_5050_content','field_61767afceb8ba'),(283,408,'blocks_1_acfe_flexible_toggle',''),(284,408,'_blocks_1_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(285,408,'blocks_1_acfe_flexible_layout_title','Cards'),(286,408,'_blocks_1_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(287,408,'blocks_1_options_theme','#ffffff'),(288,408,'_blocks_1_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(289,408,'blocks_1_options_format','carousel'),(290,408,'_blocks_1_options_format','field_617a7b15245b5'),(291,408,'blocks_1_options_style','default'),(292,408,'_blocks_1_options_style','field_6278ffb63484a'),(293,408,'blocks_1_options_cards_current_listing','0'),(294,408,'_blocks_1_options_cards_current_listing','field_6193d7effb7a4'),(295,408,'blocks_1_options_cards_content','term'),(296,408,'_blocks_1_options_cards_content','field_617aba6122688'),(297,408,'blocks_1_options',''),(298,408,'_blocks_1_options','field_617a7b15245b3'),(299,408,'blocks_1_cards_custom_0_image','13831'),(300,408,'_blocks_1_cards_custom_0_image','field_6194cc284d387'),(301,408,'blocks_1_cards_custom_0_title','iMoveFreely Instructor workshop'),(302,408,'_blocks_1_cards_custom_0_title','field_6194cc454d388'),(303,408,'blocks_1_cards_custom_0_text','Elevate your training with our iMoveFreely® Instructor Workshop, mastering advanced biomechanics to enhance movement patterns and prevent injuries.'),(304,408,'_blocks_1_cards_custom_0_text','field_6194cc4a4d389'),(305,408,'blocks_1_cards_custom_0_link',''),(306,408,'_blocks_1_cards_custom_0_link','field_6194cc534d38a'),(307,408,'blocks_1_cards_custom_1_image','13831'),(308,408,'_blocks_1_cards_custom_1_image','field_6194cc284d387'),(309,408,'blocks_1_cards_custom_1_title','Running Biomechanics Workshop'),(310,408,'_blocks_1_cards_custom_1_title','field_6194cc454d388'),(311,408,'blocks_1_cards_custom_1_text','Enhance your coaching with our Running Biomechanics Workshop, mastering gait analysis and personalised techniques to improve running efficiency and reduce injuries.'),(312,408,'_blocks_1_cards_custom_1_text','field_6194cc4a4d389'),(313,408,'blocks_1_cards_custom_1_link',''),(314,408,'_blocks_1_cards_custom_1_link','field_6194cc534d38a'),(315,408,'blocks_1_cards_custom','2'),(316,408,'_blocks_1_cards_custom','field_6194cbf84d386'),(469,404,'blocks_2_acfe_flexible_toggle',''),(470,404,'_blocks_2_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(471,404,'blocks_2_acfe_flexible_layout_title','Promo Panel'),(472,404,'_blocks_2_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(473,404,'blocks_2_options_alignment','center'),(474,404,'_blocks_2_options_alignment','field_61769449f5490'),(475,404,'blocks_2_options',''),(476,404,'_blocks_2_options','field_617693e1428f0'),(477,404,'blocks_2_promo_panel_image','31064'),(478,404,'_blocks_2_promo_panel_image','field_617693e1428f3'),(479,404,'blocks_2_promo_panel_content_heading','We also offer recorded webinars'),(480,404,'_blocks_2_promo_panel_content_heading','field_617693e1428f6'),(481,404,'blocks_2_promo_panel_content_text','Check them out below'),(482,404,'_blocks_2_promo_panel_content_text','field_617693e1428f7'),(483,404,'blocks_2_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:12:\"Our Webinars\";s:3:\"url\";s:51:\"https://biomechanicseducation.com/courses/webinars/\";s:6:\"target\";s:0:\"\";}'),(484,404,'_blocks_2_promo_panel_content_actions_0_button','field_617693e1428f9'),(485,404,'blocks_2_promo_panel_content_actions','1'),(486,404,'_blocks_2_promo_panel_content_actions','field_617693e1428f8'),(487,404,'blocks_2_promo_panel_content',''),(488,404,'_blocks_2_promo_panel_content','field_617693e1428f4'),(521,409,'blocks_0_acfe_flexible_toggle',''),(522,409,'_blocks_0_acfe_flexible_toggle','field_layout_617bdd500fe00_toggle'),(523,409,'blocks_0_acfe_flexible_layout_title','Template'),(524,409,'_blocks_0_acfe_flexible_layout_title','field_layout_617bdd500fe00_title'),(525,409,'blocks_0_template','39087'),(526,409,'_blocks_0_template','field_617bdd570fe01'),(527,409,'blocks_1_acfe_flexible_toggle',''),(528,409,'_blocks_1_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(529,409,'blocks_1_acfe_flexible_layout_title','Text Block'),(530,409,'_blocks_1_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(531,409,'blocks_1_options_theme','#ffffff'),(532,409,'_blocks_1_options_theme','field_6176830e2ad17'),(533,409,'blocks_1_options',''),(534,409,'_blocks_1_options','field_6176830e2ad16'),(535,409,'blocks_1_text_block_heading','Overview'),(536,409,'_blocks_1_text_block_heading','field_617669d413097'),(537,409,'blocks_1_text_block_content','Explore our seven recorded webinars designed to enhance your client\'s movement and performance. Learn how to truly strengthen glutes for better stability, grasp the fundamentals of pain science, and discover the principles of effective functional training. Gain insights into the nervous system, better understand foot mechanics, and assess foot posture using the Foot Posture Index. Finally, analyse your client\'s deadlift for maximum results with our comprehensive deadlift analysis webinar.'),(538,409,'_blocks_1_text_block_content','field_617669ec13098'),(633,403,'blocks_1_acfe_flexible_toggle',''),(634,403,'_blocks_1_acfe_flexible_toggle','field_layout_617a7ac4245b2_toggle'),(635,403,'blocks_1_acfe_flexible_layout_title','Cards'),(636,403,'_blocks_1_acfe_flexible_layout_title','field_layout_617a7ac4245b2_title'),(637,403,'blocks_1_options_theme','#ffffff'),(638,403,'_blocks_1_options_theme','field_617a7b15245b4_field_6176830e2ad17'),(639,403,'blocks_1_options_format','carousel'),(640,403,'_blocks_1_options_format','field_617a7b15245b5'),(641,403,'blocks_1_options_style','default'),(642,403,'_blocks_1_options_style','field_6278ffb63484a'),(643,403,'blocks_1_options_cards_current_listing','0'),(644,403,'_blocks_1_options_cards_current_listing','field_6193d7effb7a4'),(645,403,'blocks_1_options_cards_content','custom'),(646,403,'_blocks_1_options_cards_content','field_617aba6122688'),(647,403,'blocks_1_options',''),(648,403,'_blocks_1_options','field_617a7b15245b3'),(649,403,'blocks_1_cards_custom_0_image','39085'),(650,403,'_blocks_1_cards_custom_0_image','field_6194cc284d387'),(651,403,'blocks_1_cards_custom_0_title','Online CPD Courses'),(652,403,'_blocks_1_cards_custom_0_title','field_6194cc454d388'),(653,403,'blocks_1_cards_custom_0_text','Elevate your skills with our expert-led online CPD courses – Anytime, anywhere, and at your pace.\r\n\r\n'),(654,403,'_blocks_1_cards_custom_0_text','field_6194cc4a4d389'),(655,403,'blocks_1_cards_custom_0_link','a:3:{s:5:\"title\";s:32:\"Check out our Online CPD Courses\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/courses/online-cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(656,403,'_blocks_1_cards_custom_0_link','field_6194cc534d38a'),(657,403,'blocks_1_cards_custom_1_image','39496'),(658,403,'_blocks_1_cards_custom_1_image','field_6194cc284d387'),(659,403,'blocks_1_cards_custom_1_title','In-person CPD Courses'),(660,403,'_blocks_1_cards_custom_1_title','field_6194cc454d388'),(661,403,'blocks_1_cards_custom_1_text','Make movement intentional with our in-person training workshops, designed by experts – implemented by you.'),(662,403,'_blocks_1_cards_custom_1_text','field_6194cc4a4d389'),(663,403,'blocks_1_cards_custom_1_link','a:3:{s:5:\"title\";s:35:\"Check Out Our In-person CPD Courses\";s:3:\"url\";s:64:\"https://biomechanicseducation.com/courses/in-person-cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(664,403,'_blocks_1_cards_custom_1_link','field_6194cc534d38a'),(665,403,'blocks_1_cards_custom_2_image','39483'),(666,403,'_blocks_1_cards_custom_2_image','field_6194cc284d387'),(667,403,'blocks_1_cards_custom_2_title','Webinars'),(668,403,'_blocks_1_cards_custom_2_title','field_6194cc454d388'),(669,403,'blocks_1_cards_custom_2_text','Achieve peak performance with our webinars on Intrinsic Biomechanics, deadlifts, anatomy, movement mastery and more. Move better, live better.\r\n\r\n'),(670,403,'_blocks_1_cards_custom_2_text','field_6194cc4a4d389'),(671,403,'blocks_1_cards_custom_2_link','a:3:{s:5:\"title\";s:22:\"Check Out Our Webinars\";s:3:\"url\";s:51:\"https://biomechanicseducation.com/courses/webinars/\";s:6:\"target\";s:0:\"\";}'),(672,403,'_blocks_1_cards_custom_2_link','field_6194cc534d38a'),(673,403,'blocks_1_cards_custom','3'),(674,403,'_blocks_1_cards_custom','field_6194cbf84d386'),(715,403,'blocks_4_acfe_flexible_toggle',''),(716,403,'_blocks_4_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(717,403,'blocks_4_acfe_flexible_layout_title','Quote'),(718,403,'_blocks_4_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(719,403,'blocks_4_quote_content','It was incredibly interesting and informative, and i definitely feel it enhanced my understanding of both my own running form as well as helping me better understand my clients intrinsic and extrinsic movement.'),(720,403,'_blocks_4_quote_content','field_6177cdacdd67a'),(721,403,'blocks_4_quote_author','Running Biomechanics Workshop attendee.'),(722,403,'_blocks_4_quote_author','field_6177cdc6dd67b'),(723,403,'blocks_2_acfe_flexible_toggle',''),(724,403,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(725,403,'blocks_2_acfe_flexible_layout_title','Text Block'),(726,403,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(727,403,'blocks_2_options_theme','#ffffff'),(728,403,'_blocks_2_options_theme','field_6176830e2ad17'),(729,403,'blocks_2_options',''),(730,403,'_blocks_2_options','field_6176830e2ad16'),(731,403,'blocks_2_text_block_heading','Check Out Some of Our CPD Courses'),(732,403,'_blocks_2_text_block_heading','field_617669d413097'),(733,403,'blocks_2_text_block_content',''),(734,403,'_blocks_2_text_block_content','field_617669ec13098'),(735,403,'blocks_3_acfe_flexible_toggle',''),(736,403,'_blocks_3_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(737,403,'blocks_3_acfe_flexible_layout_title','Course Comparison'),(738,403,'_blocks_3_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(739,403,'blocks_3_options_theme','#ffffff'),(740,403,'_blocks_3_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(741,403,'blocks_3_options',''),(742,403,'_blocks_3_options','field_617ac0b7f6c08'),(743,403,'blocks_3_show','category'),(744,403,'_blocks_3_show','field_61a49cba9d946'),(745,403,'blocks_3_category','403'),(746,403,'_blocks_3_category','field_61a49cd79d947'),(747,403,'blocks_5_acfe_flexible_toggle',''),(748,403,'_blocks_5_acfe_flexible_toggle','field_layout_6177de52d1194_toggle'),(749,403,'blocks_5_acfe_flexible_layout_title','Timeline'),(750,403,'_blocks_5_acfe_flexible_layout_title','field_layout_6177de52d1194_title'),(751,403,'blocks_5_options_theme','#ffffff'),(752,403,'_blocks_5_options_theme','field_6177de53d1196_field_6176830e2ad17'),(753,403,'blocks_5_options',''),(754,403,'_blocks_5_options','field_6177de53d1195'),(755,403,'blocks_5_timeline_content_title',''),(756,403,'_blocks_5_timeline_content_title','field_6177de53d1198'),(757,403,'blocks_5_timeline_content_heading','Why study a Biomechanics Education course?'),(758,403,'_blocks_5_timeline_content_heading','field_6177de53d1199'),(759,403,'blocks_5_timeline_content_text',''),(760,403,'_blocks_5_timeline_content_text','field_6177de53d119a'),(761,403,'blocks_5_timeline_content_actions',''),(762,403,'_blocks_5_timeline_content_actions','field_6177de53d119b'),(763,403,'blocks_5_timeline_content',''),(764,403,'_blocks_5_timeline_content','field_6177de53d1197'),(765,403,'blocks_5_timeline_items_0_title','You’ll receive'),(766,403,'_blocks_5_timeline_items_0_title','field_6177de53d119f'),(767,403,'blocks_5_timeline_items_0_text','Gain a prestigious accreditation in biomechanics education. All our course qualifications are industry-recognised and respected. Our programmes adhere to rigorous standards set by leading accrediting bodies, including esteemed partners like CIMSPA. Your education with us is backed by reputable organisations, ensuring credibility and relevance in biomechanics (see our partner page for more information). '),(768,403,'_blocks_5_timeline_items_0_text','field_6177de53d11a0'),(769,403,'blocks_5_timeline_items_1_title','We’ll help you build a career'),(770,403,'_blocks_5_timeline_items_1_title','field_6177de53d119f'),(771,403,'blocks_5_timeline_items_1_text','We support you into your career with business modules, dedicated support, and packages that enhance your current skillset. '),(772,403,'_blocks_5_timeline_items_1_text','field_6177de53d11a0'),(773,403,'blocks_5_timeline_items_2_title','You could earn more money'),(774,403,'_blocks_5_timeline_items_2_title','field_6177de53d119f'),(775,403,'blocks_5_timeline_items_2_text','Our graduates stand out above the rest. Due to the hands-on nature of our practical learning in our in-person CPD courses, and the in-depth knowledge shared and education from our online training, students complete our courses with an elevated level of confidence and accomplishment. '),(776,403,'_blocks_5_timeline_items_2_text','field_6177de53d11a0'),(777,403,'blocks_5_timeline_items','3'),(778,403,'_blocks_5_timeline_items','field_6177de53d119d'),(779,403,'blocks_6_acfe_flexible_toggle',''),(780,403,'_blocks_6_acfe_flexible_toggle','field_layout_6177cda7dd679_toggle'),(781,403,'blocks_6_acfe_flexible_layout_title','Quote'),(782,403,'_blocks_6_acfe_flexible_layout_title','field_layout_6177cda7dd679_title'),(783,403,'blocks_6_quote_content','The content of the course was great; Biomechanics is something that I’ve been interested in for a long time now and I was certainly not disappointed with what I learnt! '),(784,403,'_blocks_6_quote_content','field_6177cdacdd67a'),(785,403,'blocks_6_quote_author',' Lee Scott, iMoveFreely Instructor workshop attendee.'),(786,403,'_blocks_6_quote_author','field_6177cdc6dd67b'),(787,404,'blocks_3_acfe_flexible_toggle',''),(788,404,'_blocks_3_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(789,404,'blocks_3_acfe_flexible_layout_title','Text Block'),(790,404,'_blocks_3_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(791,404,'blocks_3_options_theme','#ffffff'),(792,404,'_blocks_3_options_theme','field_6176830e2ad17'),(793,404,'blocks_3_options',''),(794,404,'_blocks_3_options','field_6176830e2ad16'),(795,404,'blocks_3_text_block_heading','Check Out Some of Our Online CPD Courses'),(796,404,'_blocks_3_text_block_heading','field_617669d413097'),(797,404,'blocks_3_text_block_content',''),(798,404,'_blocks_3_text_block_content','field_617669ec13098'),(799,404,'blocks_4_acfe_flexible_toggle',''),(800,404,'_blocks_4_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(801,404,'blocks_4_acfe_flexible_layout_title','Course Comparison'),(802,404,'_blocks_4_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(803,404,'blocks_4_options_theme','#ffffff'),(804,404,'_blocks_4_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(805,404,'blocks_4_options',''),(806,404,'_blocks_4_options','field_617ac0b7f6c08'),(807,404,'blocks_4_show','selection'),(808,404,'_blocks_4_show','field_61a49cba9d946'),(809,404,'blocks_4_courses',''),(810,404,'_blocks_4_courses','field_61b244781ee0a'),(811,409,'blocks_2_acfe_flexible_toggle',''),(812,409,'_blocks_2_acfe_flexible_toggle','field_layout_617693e1428ef_toggle'),(813,409,'blocks_2_acfe_flexible_layout_title','Promo Panel'),(814,409,'_blocks_2_acfe_flexible_layout_title','field_layout_617693e1428ef_title'),(815,409,'blocks_2_options_alignment','center'),(816,409,'_blocks_2_options_alignment','field_61769449f5490'),(817,409,'blocks_2_options',''),(818,409,'_blocks_2_options','field_617693e1428f0'),(819,409,'blocks_2_promo_panel_image','39085'),(820,409,'_blocks_2_promo_panel_image','field_617693e1428f3'),(821,409,'blocks_2_promo_panel_content_heading','We also offer online CPD courses'),(822,409,'_blocks_2_promo_panel_content_heading','field_617693e1428f6'),(823,409,'blocks_2_promo_panel_content_text','Check them out below'),(824,409,'_blocks_2_promo_panel_content_text','field_617693e1428f7'),(825,409,'blocks_2_promo_panel_content_actions_0_button','a:3:{s:5:\"title\";s:18:\"Online CPD Courses\";s:3:\"url\";s:61:\"https://biomechanicseducation.com/courses/online-cpd-courses/\";s:6:\"target\";s:0:\"\";}'),(826,409,'_blocks_2_promo_panel_content_actions_0_button','field_617693e1428f9'),(827,409,'blocks_2_promo_panel_content_actions','1'),(828,409,'_blocks_2_promo_panel_content_actions','field_617693e1428f8'),(829,409,'blocks_2_promo_panel_content',''),(830,409,'_blocks_2_promo_panel_content','field_617693e1428f4'),(831,409,'blocks_3_acfe_flexible_toggle',''),(832,409,'_blocks_3_acfe_flexible_toggle','field_layout_617ac0b7f6c07_toggle'),(833,409,'blocks_3_acfe_flexible_layout_title','Course Comparison'),(834,409,'_blocks_3_acfe_flexible_layout_title','field_layout_617ac0b7f6c07_title'),(835,409,'blocks_3_options_theme','#f5f5f5'),(836,409,'_blocks_3_options_theme','field_617ac0b7f6c09_field_6176830e2ad17'),(837,409,'blocks_3_options',''),(838,409,'_blocks_3_options','field_617ac0b7f6c08'),(839,409,'blocks_3_show','selection'),(840,409,'_blocks_3_show','field_61a49cba9d946'),(841,409,'blocks_3_courses','a:7:{i:0;s:5:\"40273\";i:1;s:5:\"40274\";i:2;s:5:\"40279\";i:3;s:5:\"40282\";i:4;s:5:\"40283\";i:5;s:5:\"40284\";i:6;s:5:\"40285\";}'),(842,409,'_blocks_3_courses','field_61b244781ee0a'),(847,418,'location','a:9:{s:7:\"address\";s:12:\"Cornwall, UK\";s:3:\"lat\";d:50.5036299;s:3:\"lng\";d:-4.6524982;s:4:\"zoom\";i:7;s:8:\"place_id\";s:27:\"ChIJyQ4nv_C3akgRcUVL2YU8Qm4\";s:4:\"name\";s:8:\"Cornwall\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(848,418,'_location','field_62e3bb68fd5be'),(849,419,'location','a:9:{s:7:\"address\";s:12:\"Somerset, UK\";s:3:\"lat\";d:51.0634565;s:3:\"lng\";d:-2.7546704;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJv5RA1diJbUgRmRrjBMtJxLg\";s:4:\"name\";s:8:\"Somerset\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(850,419,'_location','field_62e3bb68fd5be'),(851,420,'location','a:9:{s:7:\"address\";s:13:\"Wiltshire, UK\";s:3:\"lat\";d:51.2462714;s:3:\"lng\";d:-1.9922127;s:4:\"zoom\";i:7;s:8:\"place_id\";s:27:\"ChIJKcgiicI3cUgRNJe9kfg0iGQ\";s:4:\"name\";s:9:\"Wiltshire\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(852,420,'_location','field_62e3bb68fd5be'),(853,421,'location','a:9:{s:7:\"address\";s:13:\"Hampshire, UK\";s:3:\"lat\";d:51.0895203;s:3:\"lng\";d:-1.216844;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJCY_IX6x4c0gRjTozj4I7b1E\";s:4:\"name\";s:9:\"Hampshire\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(854,421,'_location','field_62e3bb68fd5be'),(855,422,'location','a:9:{s:7:\"address\";s:15:\"West Sussex, UK\";s:3:\"lat\";d:50.969873;s:3:\"lng\";d:-0.4159547;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJf5cWR0NY30cRwn257Oarqa4\";s:4:\"name\";s:11:\"West Sussex\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(856,422,'_location','field_62e3bb68fd5be'),(857,423,'location','a:10:{s:7:\"address\";s:11:\"Reading, UK\";s:3:\"lat\";d:51.45512009999999;s:3:\"lng\";d:-0.9787475;s:4:\"zoom\";i:7;s:8:\"place_id\";s:27:\"ChIJtz092XggdEgRlHn6zn-f4So\";s:4:\"name\";s:7:\"Reading\";s:4:\"city\";s:7:\"Reading\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(858,423,'_location','field_62e3bb68fd5be'),(859,424,'location','a:10:{s:7:\"address\";s:10:\"London, UK\";s:3:\"lat\";d:51.5072178;s:3:\"lng\";d:-0.1275862;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJdd4hrwug2EcRmSrV3Vo6llI\";s:4:\"name\";s:6:\"London\";s:4:\"city\";s:6:\"London\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(860,424,'_location','field_62e3bb68fd5be'),(861,425,'location','a:9:{s:7:\"address\";s:8:\"Kent, UK\";s:3:\"lat\";d:51.0928319;s:3:\"lng\";d:0.8392470999999999;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJl4Kx4hWo2EcRWRUgdmTnUZI\";s:4:\"name\";s:4:\"Kent\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(862,425,'_location','field_62e3bb68fd5be'),(863,426,'location','a:9:{s:7:\"address\";s:15:\"Oxfordshire, UK\";s:3:\"lat\";d:51.7612056;s:3:\"lng\";d:-1.2464674;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJ5xOOaNPUcEgRUY89nbaaqW8\";s:4:\"name\";s:11:\"Oxfordshire\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(864,426,'_location','field_62e3bb68fd5be'),(865,427,'location','a:9:{s:7:\"address\";s:26:\"West Midlands, England, UK\";s:3:\"lat\";d:52.4750743;s:3:\"lng\";d:-1.829833;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJ_dclMtSAcEgR5_O7OttvyI0\";s:4:\"name\";s:13:\"West Midlands\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(866,427,'_location','field_62e3bb68fd5be'),(867,428,'location','a:9:{s:7:\"address\";s:18:\"Leicestershire, UK\";s:3:\"lat\";d:52.74012279999999;s:3:\"lng\";d:-1.1405925;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJs3uVVC1Ad0gRK6-E8nGBOYQ\";s:4:\"name\";s:14:\"Leicestershire\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(868,428,'_location','field_62e3bb68fd5be'),(869,429,'location','a:9:{s:7:\"address\";s:19:\"Nottinghamshire, UK\";s:3:\"lat\";d:53.1285044;s:3:\"lng\";d:-0.9030999;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJzXkHOdIyeEgREinv5XDJr1Q\";s:4:\"name\";s:15:\"Nottinghamshire\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(870,429,'_location','field_62e3bb68fd5be'),(871,430,'location','a:9:{s:7:\"address\";s:14:\"Derbyshire, UK\";s:3:\"lat\";d:53.122322;s:3:\"lng\";d:-1.5136821;s:4:\"zoom\";i:6;s:8:\"place_id\";s:27:\"ChIJTRhgylBVd0gRYxzUrCNcT7w\";s:4:\"name\";s:10:\"Derbyshire\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(872,430,'_location','field_62e3bb68fd5be'),(873,431,'location','a:9:{s:7:\"address\";s:14:\"Shropshire, UK\";s:3:\"lat\";d:52.7063657;s:3:\"lng\";d:-2.7417849;s:4:\"zoom\";i:8;s:8:\"place_id\";s:27:\"ChIJLx3o1zdNZUgRIvHNaPOeniE\";s:4:\"name\";s:10:\"Shropshire\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(874,431,'_location','field_62e3bb68fd5be'),(875,432,'location','a:10:{s:7:\"address\";s:14:\"Manchester, UK\";s:3:\"lat\";d:53.4807593;s:3:\"lng\";d:-2.2426305;s:4:\"zoom\";i:8;s:8:\"place_id\";s:27:\"ChIJ2_UmUkxNekgRqmv-BDgUvtk\";s:4:\"name\";s:10:\"Manchester\";s:4:\"city\";s:10:\"Manchester\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(876,432,'_location','field_62e3bb68fd5be'),(877,433,'location','a:9:{s:7:\"address\";s:18:\"West Yorkshire, UK\";s:3:\"lat\";d:53.81081760000001;s:3:\"lng\";d:-1.76261;s:4:\"zoom\";i:8;s:8:\"place_id\";s:27:\"ChIJ8RhrwDkTeUgRlMFjPKK1F2U\";s:4:\"name\";s:14:\"West Yorkshire\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(878,433,'_location','field_62e3bb68fd5be'),(879,434,'location','a:9:{s:7:\"address\";s:19:\"North Yorkshire, UK\";s:3:\"lat\";d:54.25035949999999;s:3:\"lng\";d:-1.4708553;s:4:\"zoom\";i:8;s:8:\"place_id\";s:27:\"ChIJ8WWY4UDDeEgRt5-VyBki4MM\";s:4:\"name\";s:15:\"North Yorkshire\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(880,434,'_location','field_62e3bb68fd5be'),(881,435,'location','a:10:{s:7:\"address\";s:8:\"York, UK\";s:3:\"lat\";d:53.9614205;s:3:\"lng\";d:-1.0739108;s:4:\"zoom\";i:8;s:8:\"place_id\";s:27:\"ChIJ8WWY4UDDeEgR0eRUiomrdEc\";s:4:\"name\";s:4:\"York\";s:4:\"city\";s:4:\"York\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(882,435,'_location','field_62e3bb68fd5be'),(883,436,'location','a:9:{s:7:\"address\";s:11:\"Cumbria, UK\";s:3:\"lat\";d:54.5772323;s:3:\"lng\";d:-2.7974835;s:4:\"zoom\";i:8;s:8:\"place_id\";s:27:\"ChIJxec9obAqY0gRmoFEBVuS4RY\";s:4:\"name\";s:7:\"Cumbria\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(884,436,'_location','field_62e3bb68fd5be'),(885,437,'location','a:9:{s:7:\"address\";s:20:\"Northern Ireland, UK\";s:3:\"lat\";d:54.7877149;s:3:\"lng\";d:-6.4923145;s:4:\"zoom\";i:8;s:8:\"place_id\";s:27:\"ChIJdZmmmcoQXkgR2OO3bu8o5fc\";s:4:\"name\";s:16:\"Northern Ireland\";s:5:\"state\";s:16:\"Northern Ireland\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(886,437,'_location','field_62e3bb68fd5be'),(887,438,'location','a:11:{s:7:\"address\";s:22:\"Amsterdam, Netherlands\";s:3:\"lat\";d:52.3675734;s:3:\"lng\";d:4.9041389;s:4:\"zoom\";i:8;s:8:\"place_id\";s:27:\"ChIJVXealLU_xkcRja_At0z9AGY\";s:4:\"name\";s:9:\"Amsterdam\";s:4:\"city\";s:9:\"Amsterdam\";s:5:\"state\";s:13:\"North Holland\";s:11:\"state_short\";s:2:\"NH\";s:7:\"country\";s:11:\"Netherlands\";s:13:\"country_short\";s:2:\"NL\";}'),(888,438,'_location','field_62e3bb68fd5be'),(889,408,'blocks_1_options_cards_term','408'),(890,408,'_blocks_1_options_cards_term','field_6193f7c180895'),(891,408,'blocks_1_options_cards_posts_per_page',''),(892,408,'_blocks_1_options_cards_posts_per_page','field_61a7565b1a0f2'),(893,409,'blocks_3_open_whats_included','1'),(894,409,'_blocks_3_open_whats_included','field_66ebfd679450c'),(895,409,'blocks_3_open_key_information','0'),(896,409,'_blocks_3_open_key_information','field_66ebfd7f9450d'),(897,409,'blocks_3_open',''),(898,409,'_blocks_3_open','field_66ebfd009450b'),(913,442,'location','a:10:{s:7:\"address\";s:31:\"XP48+5J Baldernock, Glasgow, UK\";s:3:\"lat\";d:55.955391208031685;s:3:\"lng\";d:-4.28345055937499;s:4:\"zoom\";i:7;s:8:\"place_id\";s:27:\"GhIJbnFDQkr6S0ARViDE30AiEcA\";s:4:\"city\";s:7:\"Glasgow\";s:5:\"state\";s:8:\"Scotland\";s:9:\"post_code\";s:7:\"G62 6HA\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(914,442,'_location','field_62e3bb68fd5be'),(915,408,'blocks_3_acfe_flexible_toggle',''),(916,408,'_blocks_3_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(917,408,'blocks_3_acfe_flexible_layout_title','Tabs'),(918,408,'_blocks_3_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(919,408,'blocks_3_options_theme','#ffffff'),(920,408,'_blocks_3_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(921,408,'blocks_3_options',''),(922,408,'_blocks_3_options','field_6177cfcd8140f'),(923,408,'blocks_3_tabs_0_tab_label','Workshop Benefits: iMoveFreely® '),(924,408,'_blocks_3_tabs_0_tab_label','field_6177d0068141a'),(925,408,'blocks_3_tabs_0_tab_content_title','Workshop Benefits: iMoveFreely®'),(926,408,'_blocks_3_tabs_0_tab_content_title','field_6177cfcd81414'),(927,408,'blocks_3_tabs_0_tab_content_heading',''),(928,408,'_blocks_3_tabs_0_tab_content_heading','field_6177cfcd81415'),(929,408,'blocks_3_tabs_0_tab_content_text','<ul>\r\n 	<li><strong>Risk Reduction:</strong> Learn special techniques to reduce the risk of injury by addressing movement limitations and improving movement quality within your group classes.\r\n<strong>• Symptom Management:</strong> Discover a way to see pain relief as a side effect of movement optimisation. Perfect for those normalised modern ailments.\r\n•<strong> Performance Enhancement:</strong> Gain strategies to design your group classes to improve active daily task performance with consideration for\r\njoint strength ratio training.\r\n<strong>• Adaptable for All Clients:</strong> Techniques are versatile, suitable for beginners\r\nright up to recreational athletes.\r\n<strong>• Evidence-Based:</strong> Backed by over 20 years of biomechanical data and research.\r\n<strong>• Comprehensive Tools:</strong> Access systems to create iMoveFreely ‘flows’ within your present classes or design pure iMoveFreely clinics into a 6-18 week programme.\r\n• <strong>Practical Application:</strong> Skills can be applied immediately to add value to your group sessions.\r\n<strong>• Participant Retention:</strong> Scientifically-backed techniques keep participants engaged, improves attendance and participant satisfaction.\r\n• <strong>Professional Growth:</strong> Specialised iMoveFreely skills enhance your credibility and competitiveness in the group exercise industry.\r\n<strong>• Specialised skills:</strong> These techniques are the safest on the planet, offering individuals who maybe nervous or intimidated by regular classes, an opportunity to gain confidence in their movement quality.</li>\r\n</ul>'),(930,408,'_blocks_3_tabs_0_tab_content_text','field_6177cfcd81416'),(931,408,'blocks_3_tabs_0_tab_content_actions',''),(932,408,'_blocks_3_tabs_0_tab_content_actions','field_6177cfcd81417'),(933,408,'blocks_3_tabs_0_tab_content',''),(934,408,'_blocks_3_tabs_0_tab_content','field_6177cfcd81413'),(935,408,'blocks_3_tabs_0_tab_image','41329'),(936,408,'_blocks_3_tabs_0_tab_image','field_6177cfcd81412'),(937,408,'blocks_3_tabs_1_tab_label','Who can attend?'),(938,408,'_blocks_3_tabs_1_tab_label','field_6177d0068141a'),(939,408,'blocks_3_tabs_1_tab_content_title','Who can attend?'),(940,408,'_blocks_3_tabs_1_tab_content_title','field_6177cfcd81414'),(941,408,'blocks_3_tabs_1_tab_content_heading',''),(942,408,'_blocks_3_tabs_1_tab_content_heading','field_6177cfcd81415'),(943,408,'blocks_3_tabs_1_tab_content_text','&nbsp;\r\n\r\nThe iMoveFreely® instructor workshop is perfect for a wide range of practitioners looking to expand their expertise in movement and exercise within a group setting:\r\n\r\n<strong>• Group exercise instructors</strong> who want to deepen their understanding of human movement and improve their participants results with advanced\r\nspecial techniques from rehabilitation.\r\n<strong>• Personal Trainers</strong> looking to enhance their skills in group personal\r\ntraining session to provide a higher level of service to group PT clients.\r\n<strong>• Strength Coaches</strong> aiming to optimise performance by addressing movement limitations and improving overall biomechanics within groups.\r\n<strong>• Sports Coaches</strong> working with athletes who want to optimise their\r\nperformance reduce risk of injuries with a team sports or any group\r\nsetting.\r\n<strong>• Physiotherapists</strong> seeking to offer a group movement and exercise\r\nprogramme to their rehabilitation strategies.\r\n\r\nThis CPD course offers special techniques for group exercise practitioners, giving professionals the tools to enhance their class designheir practice.'),(944,408,'_blocks_3_tabs_1_tab_content_text','field_6177cfcd81416'),(945,408,'blocks_3_tabs_1_tab_content_actions',''),(946,408,'_blocks_3_tabs_1_tab_content_actions','field_6177cfcd81417'),(947,408,'blocks_3_tabs_1_tab_content',''),(948,408,'_blocks_3_tabs_1_tab_content','field_6177cfcd81413'),(949,408,'blocks_3_tabs_1_tab_image','41333'),(950,408,'_blocks_3_tabs_1_tab_image','field_6177cfcd81412'),(951,408,'blocks_3_tabs_2_tab_label','Accreditation and Evidence-Based Approach'),(952,408,'_blocks_3_tabs_2_tab_label','field_6177d0068141a'),(953,408,'blocks_3_tabs_2_tab_content_title','Accreditation and Evidence-Based Approach'),(954,408,'_blocks_3_tabs_2_tab_content_title','field_6177cfcd81414'),(955,408,'blocks_3_tabs_2_tab_content_heading',''),(956,408,'_blocks_3_tabs_2_tab_content_heading','field_6177cfcd81415'),(957,408,'blocks_3_tabs_2_tab_content_text','The iMoveFreely® instructor workshop is accredited by CIMSPA and adheres to the highest standards of professional development. It is backed by over 20 years of research, ensuring that you are learning from the most credible, evidence-based sources available.\r\n\r\n<strong>• Accreditation:</strong> Course is accredited by CIMSPA, ensuring they meet industry standards for continuing professional development.\r\n<strong>• Evidence-Based:</strong> Our training is grounded in real-world data from elite athletes to everyday participants, allowing for practical, proven application. These accredited course provide evidence-based training for movement professionals, ensuring that every technique and method taught is rooted in science and proven results'),(958,408,'_blocks_3_tabs_2_tab_content_text','field_6177cfcd81416'),(959,408,'blocks_3_tabs_2_tab_content_actions',''),(960,408,'_blocks_3_tabs_2_tab_content_actions','field_6177cfcd81417'),(961,408,'blocks_3_tabs_2_tab_content',''),(962,408,'_blocks_3_tabs_2_tab_content','field_6177cfcd81413'),(963,408,'blocks_3_tabs_2_tab_image','40430'),(964,408,'_blocks_3_tabs_2_tab_image','field_6177cfcd81412'),(965,408,'blocks_3_tabs_3_tab_label','Location & Availability'),(966,408,'_blocks_3_tabs_3_tab_label','field_6177d0068141a'),(967,408,'blocks_3_tabs_3_tab_content_title','Location & Availability'),(968,408,'_blocks_3_tabs_3_tab_content_title','field_6177cfcd81414'),(969,408,'blocks_3_tabs_3_tab_content_heading',''),(970,408,'_blocks_3_tabs_3_tab_content_heading','field_6177cfcd81415'),(971,408,'blocks_3_tabs_3_tab_content_text','Our iMoveFreely® instructor CPD workshop is exclusively available\r\nin Scotland and London, providing easy access for professionals in these regions.\r\n\r\n<strong>• Available Locations:</strong> Scotland and London.\r\n<strong>• Flexible Scheduling:</strong> We offer workshops throughout the year to\r\naccommodate busy professionals, with the option to inquire about\r\nbespoke sessions for organisations or groups.\r\n\r\nWhether you’re searching for CPD courses near me or in-person training in the UK, our workshops offer convenience and flexibility to fit your needs. See the individual workshop pages for further information.'),(972,408,'_blocks_3_tabs_3_tab_content_text','field_6177cfcd81416'),(973,408,'blocks_3_tabs_3_tab_content_actions',''),(974,408,'_blocks_3_tabs_3_tab_content_actions','field_6177cfcd81417'),(975,408,'blocks_3_tabs_3_tab_content',''),(976,408,'_blocks_3_tabs_3_tab_content','field_6177cfcd81413'),(977,408,'blocks_3_tabs_3_tab_image','40429'),(978,408,'_blocks_3_tabs_3_tab_image','field_6177cfcd81412'),(993,408,'blocks_3_tabs','4'),(994,408,'_blocks_3_tabs','field_6177cff281419'),(995,408,'blocks_2_acfe_flexible_toggle',''),(996,408,'_blocks_2_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(997,408,'blocks_2_acfe_flexible_layout_title','Text Block'),(998,408,'_blocks_2_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(999,408,'blocks_2_options_theme','#ffffff'),(1000,408,'_blocks_2_options_theme','field_6176830e2ad17'),(1001,408,'blocks_2_options',''),(1002,408,'_blocks_2_options','field_6176830e2ad16'),(1003,408,'blocks_2_text_block_heading','iMoveFreely®'),(1004,408,'_blocks_2_text_block_heading','field_617669d413097'),(1005,408,'blocks_2_text_block_content',''),(1006,408,'_blocks_2_text_block_content','field_617669ec13098'),(1007,408,'blocks_4_acfe_flexible_toggle',''),(1008,408,'_blocks_4_acfe_flexible_toggle','field_layout_6176699b30f76_toggle'),(1009,408,'blocks_4_acfe_flexible_layout_title','Text Block'),(1010,408,'_blocks_4_acfe_flexible_layout_title','field_layout_6176699b30f76_title'),(1011,408,'blocks_4_options_theme','#ffffff'),(1012,408,'_blocks_4_options_theme','field_6176830e2ad17'),(1013,408,'blocks_4_options',''),(1014,408,'_blocks_4_options','field_6176830e2ad16'),(1015,408,'blocks_4_text_block_heading','Running Biomechanics'),(1016,408,'_blocks_4_text_block_heading','field_617669d413097'),(1017,408,'blocks_4_text_block_content',''),(1018,408,'_blocks_4_text_block_content','field_617669ec13098'),(1019,408,'blocks_5_acfe_flexible_toggle',''),(1020,408,'_blocks_5_acfe_flexible_toggle','field_layout_6177cfcd8140e_toggle'),(1021,408,'blocks_5_acfe_flexible_layout_title','Tabs'),(1022,408,'_blocks_5_acfe_flexible_layout_title','field_layout_6177cfcd8140e_title'),(1023,408,'blocks_5_options_theme','#ffffff'),(1024,408,'_blocks_5_options_theme','field_6177cfcd81410_field_6176830e2ad17'),(1025,408,'blocks_5_options',''),(1026,408,'_blocks_5_options','field_6177cfcd8140f'),(1027,408,'blocks_5_tabs_0_tab_label','Workshop Benefits: Running Biomechanics'),(1028,408,'_blocks_5_tabs_0_tab_label','field_6177d0068141a'),(1029,408,'blocks_5_tabs_0_tab_content_title','Workshop Benefits: Running Biomechanics'),(1030,408,'_blocks_5_tabs_0_tab_content_title','field_6177cfcd81414'),(1031,408,'blocks_5_tabs_0_tab_content_heading',''),(1032,408,'_blocks_5_tabs_0_tab_content_heading','field_6177cfcd81415'),(1033,408,'blocks_5_tabs_0_tab_content_text','<ul>\r\n 	<li><strong> Risk Reduction:</strong> Learn techniques to reduce the risk of injury through assessment of movement limitations to optimise running biomechanics.\r\n•<strong> Performance Enhancement:</strong> Gain strategies to improve running efficiency and overall performance.\r\n• <strong>Adaptable for All Clients:</strong> Techniques are versatile, suitable for those new to running right up to elite athletes.\r\n<strong>• Evidence-Based:</strong> Backed by over 20 years of biomechanical data and research.\r\n<strong>• Comprehensive Tools:</strong> Access a robust assessment system for your runners, identifying areas for improvement. No expensive equipment required!\r\n•<strong> Practical Application:</strong> Skills can be applied immediately to add value to your sessions.\r\n<strong>• Client Retention:</strong> Scientifically-backed techniques to keep your runners engaged, improving outcomes and their running goals.\r\n<strong>• Professional Growth:</strong> Specialised skills in intrinsic biomechanics to elevate your credibility in a competitive industry.\r\n•<strong> Bespoke programming:</strong> Take away the ability to create bespoke running programmes based on a tried and tested system along with your evaluation process.</li>\r\n</ul>'),(1034,408,'_blocks_5_tabs_0_tab_content_text','field_6177cfcd81416'),(1035,408,'blocks_5_tabs_0_tab_content_actions',''),(1036,408,'_blocks_5_tabs_0_tab_content_actions','field_6177cfcd81417'),(1037,408,'blocks_5_tabs_0_tab_content',''),(1038,408,'_blocks_5_tabs_0_tab_content','field_6177cfcd81413'),(1039,408,'blocks_5_tabs_0_tab_image','41326'),(1040,408,'_blocks_5_tabs_0_tab_image','field_6177cfcd81412'),(1041,408,'blocks_5_tabs_1_tab_label','Who can attend?'),(1042,408,'_blocks_5_tabs_1_tab_label','field_6177d0068141a'),(1043,408,'blocks_5_tabs_1_tab_content_title','Who can attend?'),(1044,408,'_blocks_5_tabs_1_tab_content_title','field_6177cfcd81414'),(1045,408,'blocks_5_tabs_1_tab_content_heading',''),(1046,408,'_blocks_5_tabs_1_tab_content_heading','field_6177cfcd81415'),(1047,408,'blocks_5_tabs_1_tab_content_text','The Running Biomechanics workshop is perfect for a wide range of professionals looking to expand their expertise for coaching runners:\r\n<ul>\r\n 	<li>Personal Trainers looking to enhance their skills in biomechanical assessment and provide a bespoke service to runners.</li>\r\n 	<li>Strength Coaches aiming to optimise performance by addressing movement limitations and improving running mechanics.</li>\r\n 	<li>Running &amp; Sports Coaches working with runners or athletes who want to enhance their running mechanics and reduce risk while mitigating recurring injuries.</li>\r\n 	<li>Clinicians seeking to an alternative approach with practical tests and exercise techniques to compliment their treatment and rehabilitation\r\nstrategies.</li>\r\n</ul>\r\nThis CPD course offers advanced techniques for movement specialists, giving\r\npractitioners the tools to elevate their practice'),(1048,408,'_blocks_5_tabs_1_tab_content_text','field_6177cfcd81416'),(1049,408,'blocks_5_tabs_1_tab_content_actions',''),(1050,408,'_blocks_5_tabs_1_tab_content_actions','field_6177cfcd81417'),(1051,408,'blocks_5_tabs_1_tab_content',''),(1052,408,'_blocks_5_tabs_1_tab_content','field_6177cfcd81413'),(1053,408,'blocks_5_tabs_1_tab_image','40431'),(1054,408,'_blocks_5_tabs_1_tab_image','field_6177cfcd81412'),(1055,408,'blocks_5_tabs_2_tab_label','Accreditation and Evidence-Based Approach'),(1056,408,'_blocks_5_tabs_2_tab_label','field_6177d0068141a'),(1057,408,'blocks_5_tabs_2_tab_content_title','Accreditation and Evidence-Based Approach'),(1058,408,'_blocks_5_tabs_2_tab_content_title','field_6177cfcd81414'),(1059,408,'blocks_5_tabs_2_tab_content_heading',''),(1060,408,'_blocks_5_tabs_2_tab_content_heading','field_6177cfcd81415'),(1061,408,'blocks_5_tabs_2_tab_content_text','The Running Biomechanics workshop is accredited by CIMSPA and adheres to the highest standards of professional development. This evidence based system ensures that you are learning from the most credible and reliable sources available.\r\n\r\n• Accreditation: Courses are accredited by CIMSPA, ensuring they meet industry standards for continuing professional development.\r\n• Evidence-Based: This accredited running biomechanics course provides evidence-based training for movement professionals, ensuring that every technique and method taught is rooted in science and proven results.'),(1062,408,'_blocks_5_tabs_2_tab_content_text','field_6177cfcd81416'),(1063,408,'blocks_5_tabs_2_tab_content_actions',''),(1064,408,'_blocks_5_tabs_2_tab_content_actions','field_6177cfcd81417'),(1065,408,'blocks_5_tabs_2_tab_content',''),(1066,408,'_blocks_5_tabs_2_tab_content','field_6177cfcd81413'),(1067,408,'blocks_5_tabs_2_tab_image','40430'),(1068,408,'_blocks_5_tabs_2_tab_image','field_6177cfcd81412'),(1069,408,'blocks_5_tabs_3_tab_label','Location & Availability'),(1070,408,'_blocks_5_tabs_3_tab_label','field_6177d0068141a'),(1071,408,'blocks_5_tabs_3_tab_content_title','Location & Availability'),(1072,408,'_blocks_5_tabs_3_tab_content_title','field_6177cfcd81414'),(1073,408,'blocks_5_tabs_3_tab_content_heading',''),(1074,408,'_blocks_5_tabs_3_tab_content_heading','field_6177cfcd81415'),(1075,408,'blocks_5_tabs_3_tab_content_text','Our Running Biomechanics Workshops are exclusively available in London, providing easy access for professionals in these\r\nregions.\r\n\r\n<strong>• Available Locations:</strong> London.\r\n<strong>• Flexible Scheduling:</strong> We offer workshops throughout the year to\r\naccommodate busy professionals, with the option to inquire about\r\nbespoke sessions for organisations or groups.\r\n\r\nWhether you’re searching for CPD courses near me or in-person running biomechanics training in the UK, our workshops offer convenience and flexibility\r\nto fit your needs. See the individual workshop pages for further information.'),(1076,408,'_blocks_5_tabs_3_tab_content_text','field_6177cfcd81416'),(1077,408,'blocks_5_tabs_3_tab_content_actions',''),(1078,408,'_blocks_5_tabs_3_tab_content_actions','field_6177cfcd81417'),(1079,408,'blocks_5_tabs_3_tab_content',''),(1080,408,'_blocks_5_tabs_3_tab_content','field_6177cfcd81413'),(1081,408,'blocks_5_tabs_3_tab_image','40429'),(1082,408,'_blocks_5_tabs_3_tab_image','field_6177cfcd81412'),(1083,408,'blocks_5_tabs','4'),(1084,408,'_blocks_5_tabs','field_6177cff281419'),(1085,454,'location','a:9:{s:7:\"address\";s:10:\"Surrey, UK\";s:3:\"lat\";d:51.2622513;s:3:\"lng\";d:-0.4672517;s:4:\"zoom\";i:7;s:8:\"place_id\";s:27:\"ChIJgSUS1VpV30cRd0IDXESDUtU\";s:4:\"name\";s:6:\"Surrey\";s:5:\"state\";s:7:\"England\";s:7:\"country\";s:14:\"United Kingdom\";s:13:\"country_short\";s:2:\"GB\";}'),(1086,454,'_location','field_62e3bb68fd5be');
/*!40000 ALTER TABLE `6m7_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_terms`
--

DROP TABLE IF EXISTS `6m7_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_terms` (
  `term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `term_group` bigint NOT NULL DEFAULT '0',
  `term_order` int DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=455 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_terms`
--

LOCK TABLES `6m7_terms` WRITE;
/*!40000 ALTER TABLE `6m7_terms` DISABLE KEYS */;
INSERT INTO `6m7_terms` VALUES (2,'Standard Editorial','standard',0,0),(3,'Main Navigation','main-navigation',0,0),(5,'Blog','blog',0,0),(6,'cadaver labs','cadaver-labs',0,0),(7,'so what','so-what',0,0),(8,'what do you think','what-do-you-think',0,0),(9,'10 minute squat','10-minute-squat',0,0),(10,'biomechanics','biomechanics',0,0),(11,'foot','foot',0,0),(12,'kelly','kelly',0,0),(13,'pelvic','pelvic',0,0),(14,'starrett','starrett',0,0),(15,'subtalar joint','subtalar-joint',0,0),(16,'causation','causation',0,0),(17,'injury','injury',0,0),(18,'joint','joint',0,0),(19,'loading','loading',0,0),(20,'motion','motion',0,0),(21,'muscle','muscle',0,0),(22,'muscle spasm','muscle-spasm',0,0),(23,'nerve tension','nerve-tension',0,0),(24,'postural','postural',0,0),(25,'prevention','prevention',0,0),(26,'protection','protection',0,0),(27,'repetitive','repetitive',0,0),(28,'risk','risk',0,0),(29,'breath','breath',0,0),(30,'breathwork','breathwork',0,0),(31,'meditation','meditation',0,0),(32,'mind','mind',0,0),(33,'yoga','yoga',0,0),(34,'anti spasm','anti-spasm',0,0),(35,'MUSCLE ENERGY TECHNIQUE','muscle-energy-technique',0,0),(36,'SPINDLES','spindles',0,0),(37,'STRETCH','stretch',0,0),(38,'SUBCLINICAL','subclinical',0,0),(39,'blog','blog',0,0),(40,'conditioning','conditioning',0,0),(41,'core','core',0,0),(42,'core strength','core-strength',0,0),(43,'core weakness','core-weakness',0,0),(44,'dysfunction','dysfunction',0,0),(45,'education','education',0,0),(46,'pelvic dysfunction','pelvic-dysfunction',0,0),(47,'pelvis','pelvis',0,0),(48,'stability','stability',0,0),(49,'strength','strength',0,0),(50,'training','training',0,0),(51,'weakness','weakness',0,0),(52,'article','article',0,0),(53,'custom fit','custom-fit',0,0),(54,'custom fit insoles','custom-fit-insoles',0,0),(55,'insoles','insoles',0,0),(56,'orthotics','orthotics',0,0),(57,'Premier Podiatry','premier-podiatry',0,0),(58,'research','research',0,0),(59,'running','running',0,0),(60,'shoes','shoes',0,0),(61,'trainers','trainers',0,0),(62,'education quads','education-quads',0,0),(63,'pain','pain',0,0),(64,'shock denial','shock-denial',0,0),(65,'david butler','david-butler',0,0),(66,'karel lewitt','karel-lewitt',0,0),(67,'lorimer moseley','lorimer-moseley',0,0),(68,'mindset','mindset',0,0),(69,'personal trainer','personal-trainer',0,0),(70,'pilates','pilates',0,0),(71,'think differently','think-differently',0,0),(72,'exercise research read serge gracovetsky stuart mccill','exercise-research-read-serge-gracovetsky-stuart-mccill',0,0),(73,'deadlift','deadlift',0,0),(74,'lift','lift',0,0),(75,'lifting','lifting',0,0),(76,'lifting biomechanics','lifting-biomechanics',0,0),(77,'personal training','personal-training',0,0),(78,'spine','spine',0,0),(79,'sports coaching','sports-coaching',0,0),(80,'squat','squat',0,0),(81,'mobility','mobility',0,0),(82,'anatomy','anatomy',0,0),(83,'biomechanics coach','biomechanics-coach',0,0),(84,'components','components',0,0),(85,'equillibrium','equillibrium',0,0),(86,'extrinsic','extrinsic',0,0),(87,'force','force',0,0),(88,'intrinsic','intrinsic',0,0),(89,'kinematics','kinematics',0,0),(90,'kinetics','kinetics',0,0),(91,'levers','levers',0,0),(92,'momentum','momentum',0,0),(93,'PERSONAL TRAINERS','personal-trainers',0,0),(94,'why we move','why-we-move',0,0),(95,'adapting','adapting',0,0),(96,'angles','angles',0,0),(97,'differently','differently',0,0),(98,'fulcrum','fulcrum',0,0),(99,'gym machines','gym-machines',0,0),(100,'pivot','pivot',0,0),(101,'pulleys','pulleys',0,0),(102,'wrong','wrong',0,0),(103,'advanced personal trainer','advanced-personal-trainer',0,0),(104,'advanced personal training','advanced-personal-training',0,0),(105,'career','career',0,0),(106,'level','level',0,0),(107,'levels','levels',0,0),(108,'fitness','fitness',0,0),(109,'health','health',0,0),(110,'4-sign','4-sign',0,0),(111,'low back','low-back',0,0),(112,'pelvic function','pelvic-function',0,0),(113,'release','release',0,0),(114,'rugby','rugby',0,0),(115,'lunge','lunge',0,0),(116,'Image','post-format-image',0,0),(117,'evidence','evidence',0,0),(118,'exercise','exercise',0,0),(119,'free','free',0,0),(120,'freely','freely',0,0),(121,'move','move',0,0),(122,'pt','pt',0,0),(123,'debate','debate',0,0),(124,'movement','movement',0,0),(125,'assessment','assessment',0,0),(126,'biomechanical','biomechanical',0,0),(127,'COACH','coach',0,0),(128,'EQUINE','equine',0,0),(129,'GOLF','golf',0,0),(130,'PHYSIO','physio',0,0),(131,'PODIATRIST','podiatrist',0,0),(132,'RIDING','riding',0,0),(133,'CAREERS IN BIOMECHANICS','careers-in-biomechanics',0,0),(134,'DIFFERENCE','difference',0,0),(135,'WELLBEING','wellbeing',0,0),(136,'biomechanics principles','biomechanics-principles',0,0),(137,'capacity','capacity',0,0),(138,'control','control',0,0),(139,'function','function',0,0),(140,'performane','performane',0,0),(141,'preparation','preparation',0,0),(142,'pyramid','pyramid',0,0),(143,'understanding','understanding',0,0),(144,'position','position',0,0),(145,'posture','posture',0,0),(146,'chartered','chartered',0,0),(147,'good practise','good-practise',0,0),(148,'professionalise','professionalise',0,0),(149,'status','status',0,0),(150,'advanced pt','advanced-pt',0,0),(151,'intrinsic biomechanics','intrinsic-biomechanics',0,0),(152,'integrated system','integrated-system',0,0),(153,'pectoralis minor','pectoralis-minor',0,0),(154,'shoulder','shoulder',0,0),(155,'compensation','compensation',0,0),(156,'load management','load-management',0,0),(157,'NHS','nhs',0,0),(158,'professional','professional',0,0),(159,'regulation','regulation',0,0),(160,'tissue tolerance','tissue-tolerance',0,0),(161,'active','active',0,0),(162,'diabetes','diabetes',0,0),(163,'gp referral','gp-referral',0,0),(164,'mental health','mental-health',0,0),(165,'more clients','more-clients',0,0),(166,'obesity','obesity',0,0),(167,'athletic','athletic',0,0),(168,'forces','forces',0,0),(169,'gabbett','gabbett',0,0),(170,'load managment','load-managment',0,0),(171,'loads','loads',0,0),(172,'measure','measure',0,0),(173,'spreadsheet','spreadsheet',0,0),(174,'tim gabbett','tim-gabbett',0,0),(175,'muscles','muscles',0,0),(176,'nerves','nerves',0,0),(177,'neuromuscular','neuromuscular',0,0),(178,'progression','progression',0,0),(179,'listen','listen',0,0),(180,'power','power',0,0),(181,'words','words',0,0),(182,'pronator','pronator',0,0),(183,'supinator','supinator',0,0),(184,'exercsie','exercsie',0,0),(185,'jump','jump',0,0),(186,'knee','knee',0,0),(187,'medial','medial',0,0),(188,'run','run',0,0),(189,'valgus','valgus',0,0),(190,'CPD','cpd',0,0),(191,'experience','experience',0,0),(192,'face to face','face-to-face',0,0),(193,'learning','learning',0,0),(194,'online','online',0,0),(195,'median','median',0,0),(196,'mobilisations','mobilisations',0,0),(197,'nerve','nerve',0,0),(198,'radial','radial',0,0),(199,'sciatic','sciatic',0,0),(200,'ulna','ulna',0,0),(201,'hinge','hinge',0,0),(202,'KETTLEBELL','kettlebell',0,0),(203,'swing','swing',0,0),(204,'failure','failure',0,0),(205,'lessons','lessons',0,0),(206,'value','value',0,0),(207,'aeroplane','aeroplane',0,0),(208,'crane','crane',0,0),(209,'romanian deadlift','romanian-deadlift',0,0),(210,'sumo','sumo',0,0),(211,'adductor magnus','adductor-magnus',0,0),(212,'HIKE','hike',0,0),(213,'NATIONAL TAKE A HIKE DAY','national-take-a-hike-day',0,0),(214,'WALK','walk',0,0),(215,'TGU','tgu',0,0),(216,'TURKISH GET UP','turkish-get-up',0,0),(217,'mark laws','mark-laws',0,0),(218,'perfect day','perfect-day',0,0),(219,'TRIANGLE','triangle',0,0),(220,'WINDMILL','windmill',0,0),(221,'business','business',0,0),(222,'e myth','e-myth',0,0),(223,'end goal','end-goal',0,0),(224,'michael gerber','michael-gerber',0,0),(225,'primary aim','primary-aim',0,0),(226,'brian tracy','brian-tracy',0,0),(227,'time management','time-management',0,0),(228,'add vlaue','add-vlaue',0,0),(229,'adherence','adherence',0,0),(230,'clients','clients',0,0),(231,'therapy','therapy',0,0),(232,'runner','runner',0,0),(233,'beth','beth',0,0),(234,'digital marketing','digital-marketing',0,0),(235,'meet','meet',0,0),(236,'2022','2022',0,0),(237,'8 things','8-things',0,0),(238,'consultation','consultation',0,0),(239,'diploma','diploma',0,0),(240,'keep it simple','keep-it-simple',0,0),(241,'agonist','agonist',0,0),(242,'antagonist','antagonist',0,0),(243,'desk life','desk-life',0,0),(244,'exercise ideas','exercise-ideas',0,0),(245,'pec minor','pec-minor',0,0),(246,'ql','ql',0,0),(247,'quadratus lumborum','quadratus-lumborum',0,0),(248,'biomechanics education','biomechanics-education',0,0),(249,'50s','50s',0,0),(250,'aging','aging',0,0),(251,'older pops','older-pops',0,0),(252,'exams','exams',0,0),(253,'loughborough','loughborough',0,0),(254,'support','support',0,0),(255,'club','club',0,0),(256,'group exercise','group-exercise',0,0),(257,'gym','gym',0,0),(258,'re','re',0,0),(259,'referral','referral',0,0),(260,'rivalry','rivalry',0,0),(261,'system','system',0,0),(262,'carpel tunnel','carpel-tunnel',0,0),(263,'stewart mcgill','stewart-mcgill',0,0),(264,'calf','calf',0,0),(265,'hamstring','hamstring',0,0),(266,'issue','issue',0,0),(267,'sciatic nerve','sciatic-nerve',0,0),(268,'AHP','ahp',0,0),(269,'ALLIED HEALTH PROFESSIONALS','allied-health-professionals',0,0),(270,'LOCKDOWN','lockdown',0,0),(271,'dialectic','dialectic',0,0),(272,'discuss','discuss',0,0),(273,'behaviour change','behaviour-change',0,0),(274,'gary mendoza','gary-mendoza',0,0),(275,'kaizen','kaizen',0,0),(276,'motivational interviewing','motivational-interviewing',0,0),(277,'a&amp;p','ap',0,0),(278,'cadaver','cadaver',0,0),(279,'hospital','hospital',0,0),(280,'medical','medical',0,0),(281,'study','study',0,0),(282,'mobilisation','mobilisation',0,0),(283,'sciatica','sciatica',0,0),(284,'slr','slr',0,0),(285,'back pain','back-pain',0,0),(286,'core stability','core-stability',0,0),(287,'core training','core-training',0,0),(288,'weak core','weak-core',0,0),(289,'periodised','periodised',0,0),(290,'sexy','sexy',0,0),(291,'impingement','impingement',0,0),(292,'leg pain','leg-pain',0,0),(293,'radicular','radicular',0,0),(294,'remit','remit',0,0),(295,'2018','2018',0,0),(296,'scotland','scotland',0,0),(297,'testimonials','testimonials',0,0),(298,'evolution','evolution',0,0),(299,'injured','injured',0,0),(300,'challenge','challenge',0,0),(301,'hips','hips',0,0),(302,'sitting','sitting',0,0),(303,'GOOD QUESTIONS','good-questions',0,0),(304,'question','question',0,0),(305,'SMART GOAL','smart-goal',0,0),(306,'ankle','ankle',0,0),(307,'calcaneus','calcaneus',0,0),(308,'cuboid','cuboid',0,0),(309,'cuneiform','cuneiform',0,0),(310,'fibula','fibula',0,0),(311,'metatarsal','metatarsal',0,0),(312,'midtarsal joint','midtarsal-joint',0,0),(313,'MTJ','mtj',0,0),(314,'navicular','navicular',0,0),(315,'phalanges','phalanges',0,0),(316,'STJ','stj',0,0),(317,'talus','talus',0,0),(318,'tarsal','tarsal',0,0),(319,'tibia','tibia',0,0),(320,'Top tips -blog','top-tips-blog',0,0),(321,'Abdominal','abdominal',0,0),(322,'Hernia','hernia',0,0),(323,'Injuries','injuries',0,0),(324,'Check-up','check-up',0,0),(325,'dentist','dentist',0,0),(326,'HAMSTRINGS','hamstrings',0,0),(327,'quads','quads',0,0),(328,'missing','missing',0,0),(329,'risk reduction','risk-reduction',0,0),(330,'stop wishing','stop-wishing',0,0),(331,'project','project',0,0),(332,'FOOT BIOMECHANICS','foot-biomechanics',0,0),(333,'PODIATRY','podiatry',0,0),(334,'PRONATION','pronation',0,0),(335,'SUPINATION','supination',0,0),(336,'foot position','foot-position',0,0),(337,'quadricep','quadricep',0,0),(338,'squat width','squat-width',0,0),(339,'sports therapy','sports-therapy',0,0),(340,'adapt','adapt',0,0),(341,'coaches','coaches',0,0),(342,'covid','covid',0,0),(343,'industry','industry',0,0),(344,'covid 19','covid-19',0,0),(345,'future','future',0,0),(346,'lockdown bundle','lockdown-bundle',0,0),(347,'imovefreely','imovefreely',0,0),(348,'PROGRAMME','programme',0,0),(349,'RECONDITIONING','reconditioning',0,0),(350,'REHAB','rehab',0,0),(351,'plan','plan',0,0),(352,'pain science','pain-science',0,0),(353,'application theory','application-theory',0,0),(354,'complex','complex',0,0),(355,'simple','simple',0,0),(356,'Biomechanics Coach™ Training Camp','biomechanics-coach-training-camp',0,0),(357,'INTERVIEW','interview',0,0),(358,'SAM HICKERY','sam-hickery',0,0),(359,'STRENGTH CONDITIONING','strength-conditioning',0,0),(360,'abductors','abductors',0,0),(361,'adductors','adductors',0,0),(362,'glutes','glutes',0,0),(363,'piriformis','piriformis',0,0),(364,'coxa','coxa',0,0),(365,'femoral','femoral',0,0),(366,'femur','femur',0,0),(367,'valga','valga',0,0),(368,'vara','vara',0,0),(369,'version','version',0,0),(370,'ANXIETY','anxiety',0,0),(371,'FEAR','fear',0,0),(372,'CLAVICLE','clavicle',0,0),(373,'HUMERUS','humerus',0,0),(374,'SCAPULA','scapula',0,0),(375,'bones','bones',0,0),(376,'cervical','cervical',0,0),(377,'discs','discs',0,0),(378,'kyphosis','kyphosis',0,0),(379,'lordosis','lordosis',0,0),(380,'lumbar','lumbar',0,0),(381,'processes','processes',0,0),(382,'thoracic','thoracic',0,0),(383,'vertebrae','vertebrae',0,0),(384,'DIAPHRAGM','diaphragm',0,0),(385,'ERECTA','erecta',0,0),(386,'MULTIDIFUS','multidifus',0,0),(387,'OBLIQUE','oblique',0,0),(388,'PELVIC FLOOR','pelvic-floor',0,0),(389,'RECTUS','rectus',0,0),(390,'TRANSVERSOSPINALIS','transversospinalis',0,0),(391,'DIGITORUM','digitorum',0,0),(392,'EXTENSOR','extensor',0,0),(393,'FLEXOR','flexor',0,0),(394,'HALLUCIS','hallucis',0,0),(395,'POSTERIOR','posterior',0,0),(396,'TIBIALIS ANTERIOR','tibialis-anterior',0,0),(397,'bone','bone',0,0),(398,'knee cap','knee-cap',0,0),(399,'ligaments','ligaments',0,0),(400,'meniscus','meniscus',0,0),(401,'patella','patella',0,0),(402,'Blocks','blocks',0,0),(403,'CPD Courses','cpd-courses',0,0),(404,'Online CPD Courses','online-cpd-courses',0,0),(406,'Biomechanics','biomechanics',0,0),(407,'CPD','cpd',0,0),(408,'In-person CPD Courses','in-person-cpd-courses',0,0),(409,'Webinars','webinars',0,0),(410,'level 4','level-4',0,0),(411,'webinar','webinar',0,0),(412,'online cpd','online-cpd',0,0),(413,'Legal Links','legal-links',0,0),(415,'BM coach','bm-coach',0,0),(417,'Biomechanics Coach','biomechanics-coach',0,0),(418,'Cornwall','cornwall',0,0),(419,'Somerset','somerset',0,0),(420,'Wiltshire','wiltshire',0,0),(421,'Hampshire','hampshire',0,0),(422,'West Sussex','west-sussex',0,0),(423,'Reading','reading',0,0),(424,'London','london',0,0),(425,'Kent','kent',0,0),(426,'Oxfordshire','oxfordshire',0,0),(427,'West Midlands','west-midlands',0,0),(428,'Leicestershire','leicestershire',0,0),(429,'Nottinghamshire','nottinghamshire',0,0),(430,'Derbyshire','derbyshire',0,0),(431,'Shropshire','shropshire',0,0),(432,'Manchester','manchester',0,0),(433,'West Yorkshire','west-yorkshire',0,0),(434,'North Yorkshire','north-yorkshire',0,0),(435,'York','york',0,0),(436,'Cumbria','cumbria',0,0),(437,'Northern Ireland','northern-ireland',0,0),(438,'Amsterdam','amsterdam',0,0),(439,'biomechanics diploma','biomechanics-diploma',0,0),(440,'in-person cpd','in-person-cpd',0,0),(441,'IBA','iba',0,0),(442,'Stirlingshire','stirlingshire',0,0),(443,'level 3','level-3',0,0),(444,'sports massage','sports-massage',0,0),(445,'Blue Monday','blue-monday',0,0),(446,'Physical Health','physical-health',0,0),(447,'Pain Reduction','pain-reduction',0,0),(448,'Introduction to Biomechanics','introduction-to-biomechanics',0,0),(449,'The Science of Biomechanics','the-science-of-biomechanics',0,0),(450,'Biomechanics for Sport and Fitness','biomechanics-for-sport-and-fitness',0,0),(451,'Injury Prevention and Management','injury-prevention-and-management',0,0),(452,'Practical Training &amp; Workshops','practical-training-workshops',0,0),(453,'Professional Development','professional-development',0,0),(454,'Surrey','surrey',0,0);
/*!40000 ALTER TABLE `6m7_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_usermeta`
--

DROP TABLE IF EXISTS `6m7_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_usermeta` (
  `umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=496 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_usermeta`
--

LOCK TABLES `6m7_usermeta` WRITE;
/*!40000 ALTER TABLE `6m7_usermeta` DISABLE KEYS */;
INSERT INTO `6m7_usermeta` VALUES (1,1,'nickname','mattaxell'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','false'),(11,1,'locale',''),(12,1,'6m7_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'6m7_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','0'),(16,1,'session_tokens','a:4:{s:64:\"960ad4a13ab4309c5ab14dc1da1d760a6edf15f6ca9322f1788fc097ffbcbf6c\";a:4:{s:10:\"expiration\";i:1745748672;s:2:\"ip\";s:11:\"80.5.229.18\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36\";s:5:\"login\";i:1745575872;}s:64:\"bf7afa4d1b71db2a0b17cf097130c6a4e0b2a1e8385855f02fa7301a9ef9cd22\";a:4:{s:10:\"expiration\";i:1745748672;s:2:\"ip\";s:11:\"80.5.229.18\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36\";s:5:\"login\";i:1745575872;}s:64:\"fc7d05fa602c7f16be28e7ff084749dc7427d31fd002f00355761a7a7f485ab8\";a:4:{s:10:\"expiration\";i:1745749261;s:2:\"ip\";s:13:\"92.18.212.157\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36\";s:5:\"login\";i:1745576461;}s:64:\"89ec1f1a29f712f9bae116e4d92529c5a615870567eb2785898613aabef9c67f\";a:4:{s:10:\"expiration\";i:1745757179;s:2:\"ip\";s:13:\"92.18.212.157\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36\";s:5:\"login\";i:1745584379;}}'),(17,1,'6m7_dashboard_quick_press_last_post_id','43084'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"92.18.212.0\";}'),(19,1,'6m7_user-settings','libraryContent=browse&editor=tinymce&hidetb=1&advImgDetails=show'),(20,1,'6m7_user-settings-time','1721144524'),(21,1,'author_profile',''),(22,1,'_author_profile','field_62713ed614e72'),(23,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(24,1,'metaboxhidden_nav-menus','a:11:{i:0;s:20:\"add-post-type-course\";i:1;s:22:\"add-post-type-resource\";i:2;s:18:\"add-post-type-faqs\";i:3;s:25:\"add-post-type-testimonial\";i:4;s:24:\"add-post-type-ambassador\";i:5;s:19:\"add-post-type-tutor\";i:6;s:24:\"add-post-type-fft-author\";i:7;s:12:\"add-post_tag\";i:8;s:28:\"add-acf-field-group-category\";i:9;s:14:\"add-course-cat\";i:10;s:19:\"add-resource-format\";}'),(25,1,'_fft_messages',''),(40,3,'nickname','BioAdmin'),(41,3,'first_name','Rachel'),(42,3,'last_name','Frances Thompson'),(43,3,'description',''),(44,3,'rich_editing','true'),(45,3,'syntax_highlighting','true'),(46,3,'comment_shortcuts','false'),(47,3,'admin_color','fresh'),(48,3,'use_ssl','0'),(49,3,'show_admin_bar_front','true'),(50,3,'locale',''),(51,3,'6m7_capabilities','a:1:{s:10:\"site_owner\";b:1;}'),(52,3,'6m7_user_level','10'),(53,3,'dismissed_wp_pointers',''),(138,1,'closedpostboxes_page','a:1:{i:0;s:23:\"acf-group_6175707eced2d\";}'),(139,1,'metaboxhidden_page','a:2:{i:0;s:12:\"postimagediv\";i:1;s:7:\"slugdiv\";}'),(140,1,'wpmdb_licence_key','f9c1a42a-3932-42d9-a2fe-d6c007def30f'),(141,3,'author_profile',''),(142,3,'_author_profile','field_62713ed614e72'),(161,11,'nickname','lilythomas'),(162,11,'first_name','Lily'),(163,11,'last_name','Thomas'),(164,11,'description',''),(165,11,'rich_editing','true'),(166,11,'syntax_highlighting','true'),(167,11,'comment_shortcuts','false'),(168,11,'admin_color','fresh'),(169,11,'use_ssl','0'),(170,11,'show_admin_bar_front','true'),(171,11,'locale',''),(172,11,'6m7_capabilities','a:1:{s:10:\"site_owner\";b:1;}'),(173,11,'6m7_user_level','10'),(174,11,'author_profile',''),(175,11,'_author_profile','field_62713ed614e72'),(176,11,'dismissed_wp_pointers',''),(177,12,'nickname','tomphillips'),(178,12,'first_name','Tom'),(179,12,'last_name','Phillips'),(180,12,'description',''),(181,12,'rich_editing','true'),(182,12,'syntax_highlighting','true'),(183,12,'comment_shortcuts','false'),(184,12,'admin_color','fresh'),(185,12,'use_ssl','0'),(186,12,'show_admin_bar_front','true'),(187,12,'locale',''),(188,12,'6m7_capabilities','a:1:{s:6:\"editor\";b:1;}'),(189,12,'6m7_user_level','7'),(190,12,'author_profile',''),(191,12,'_author_profile','field_62713ed614e72'),(192,12,'dismissed_wp_pointers',''),(225,15,'nickname','eleanorpreston'),(226,15,'first_name','Eleanor'),(227,15,'last_name','Preston'),(228,15,'description',''),(229,15,'rich_editing','true'),(230,15,'syntax_highlighting','true'),(231,15,'comment_shortcuts','false'),(232,15,'admin_color','fresh'),(233,15,'use_ssl','0'),(234,15,'show_admin_bar_front','true'),(235,15,'locale',''),(236,15,'6m7_capabilities','a:1:{s:6:\"editor\";b:1;}'),(237,15,'6m7_user_level','7'),(238,15,'author_profile',''),(239,15,'_author_profile','field_62713ed614e72'),(240,15,'dismissed_wp_pointers',''),(249,1,'closedpostboxes_testimonial','a:1:{i:0;s:23:\"acf-group_6175707eced2d\";}'),(250,1,'metaboxhidden_testimonial','a:1:{i:0;s:7:\"slugdiv\";}'),(257,1,'closedpostboxes_course','a:1:{i:0;s:23:\"acf-group_6175707eced2d\";}'),(258,1,'metaboxhidden_course','a:1:{i:0;s:7:\"slugdiv\";}'),(262,16,'nickname','shukhanduja'),(263,16,'first_name','Shu'),(264,16,'last_name','Khanduja'),(265,16,'description',''),(266,16,'rich_editing','true'),(267,16,'syntax_highlighting','true'),(268,16,'comment_shortcuts','false'),(269,16,'admin_color','fresh'),(270,16,'use_ssl','0'),(271,16,'show_admin_bar_front','true'),(272,16,'locale',''),(273,16,'6m7_capabilities','a:1:{s:10:\"site_owner\";b:1;}'),(274,16,'6m7_user_level','10'),(275,16,'author_profile',''),(276,16,'_author_profile','field_62713ed614e72'),(277,16,'_yoast_wpseo_profile_updated','1741864954'),(278,16,'dismissed_wp_pointers',''),(279,16,'default_password_nag',''),(280,16,'session_tokens','a:1:{s:64:\"c78f0698705305f38d385c0da338a275320b11bb802c88395549cd915a86cfd0\";a:4:{s:10:\"expiration\";i:1743081393;s:2:\"ip\";s:14:\"91.224.190.194\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36\";s:5:\"login\";i:1741871793;}}'),(281,16,'6m7_dashboard_quick_press_last_post_id','42564'),(292,15,'default_password_nag',''),(294,15,'6m7_dashboard_quick_press_last_post_id','43372'),(297,11,'default_password_nag',''),(298,11,'session_tokens','a:2:{s:64:\"6b1f1ee36ebf93a2052b7646944ba850e5724115e630e8de64cb78f65fed8c4d\";a:4:{s:10:\"expiration\";i:1750179835;s:2:\"ip\";s:13:\"90.210.35.208\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 Edg/137.0.0.0\";s:5:\"login\";i:1750007035;}s:64:\"455ed1cbc83561442819f8e1d4adae33d6a137a9a083db7c38c9fafecc266553\";a:4:{s:10:\"expiration\";i:1750249538;s:2:\"ip\";s:14:\"91.224.190.194\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 Edg/137.0.0.0\";s:5:\"login\";i:1750076738;}}'),(299,11,'6m7_dashboard_quick_press_last_post_id','43420'),(303,11,'nav_menu_recently_edited','3'),(304,11,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(305,11,'metaboxhidden_nav-menus','a:11:{i:0;s:20:\"add-post-type-course\";i:1;s:22:\"add-post-type-resource\";i:2;s:18:\"add-post-type-faqs\";i:3;s:25:\"add-post-type-testimonial\";i:4;s:24:\"add-post-type-ambassador\";i:5;s:19:\"add-post-type-tutor\";i:6;s:24:\"add-post-type-fft-author\";i:7;s:12:\"add-post_tag\";i:8;s:28:\"add-acf-field-group-category\";i:9;s:14:\"add-course-cat\";i:10;s:19:\"add-resource-format\";}'),(306,11,'6m7_user-settings','libraryContent=browse&editor=tinymce'),(307,11,'6m7_user-settings-time','1726558806'),(310,1,'nav_menu_recently_edited','3'),(314,3,'_yoast_wpseo_profile_updated','1735911844'),(315,15,'_yoast_wpseo_profile_updated','1727251172'),(319,11,'_yoast_wpseo_profile_updated','1727251172'),(320,1,'_yoast_wpseo_profile_updated','1727251172'),(321,12,'_yoast_wpseo_profile_updated','1727251172'),(336,11,'_fft_messages',''),(337,17,'nickname','Tim Ryan'),(338,17,'first_name','Tim'),(339,17,'last_name','Ryan'),(340,17,'description',''),(341,17,'rich_editing','true'),(342,17,'syntax_highlighting','true'),(343,17,'comment_shortcuts','false'),(344,17,'admin_color','fresh'),(345,17,'use_ssl','0'),(346,17,'show_admin_bar_front','true'),(347,17,'locale',''),(348,17,'6m7_capabilities','a:1:{s:10:\"site_owner\";b:1;}'),(349,17,'6m7_user_level','10'),(350,17,'author_profile',''),(351,17,'_author_profile','field_62713ed614e72'),(352,17,'_yoast_wpseo_profile_updated','1731332868'),(353,17,'dismissed_wp_pointers',''),(363,1,'_yoast_wpseo_introductions','a:1:{s:25:\"ai-fix-assessments-upsell\";b:1;}'),(364,17,'default_password_nag',''),(365,17,'session_tokens','a:1:{s:64:\"a2bb6fc457de32c6a3319dc3c123febfa2bd7a60cb497e88cfd396820ecb1810\";a:4:{s:10:\"expiration\";i:1752490456;s:2:\"ip\";s:13:\"62.31.152.101\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36 Edg/138.0.0.0\";s:5:\"login\";i:1751280856;}}'),(366,17,'6m7_dashboard_quick_press_last_post_id','43512'),(367,18,'nickname','markmcaulay'),(368,18,'first_name','Mark'),(369,18,'last_name','McAuley'),(370,18,'description',''),(371,18,'rich_editing','true'),(372,18,'syntax_highlighting','true'),(373,18,'comment_shortcuts','false'),(374,18,'admin_color','fresh'),(375,18,'use_ssl','0'),(376,18,'show_admin_bar_front','true'),(377,18,'locale',''),(378,18,'6m7_capabilities','a:1:{s:10:\"site_owner\";b:1;}'),(379,18,'6m7_user_level','10'),(380,18,'author_profile',''),(381,18,'_author_profile','field_62713ed614e72'),(382,18,'_yoast_wpseo_profile_updated','1732880294'),(383,18,'dismissed_wp_pointers',''),(384,18,'default_password_nag',''),(385,18,'session_tokens','a:2:{s:64:\"3ccde01e8e5f6cace3e7c52ff0b03b25a140c4da4080dfb7abd44989f6faefdb\";a:4:{s:10:\"expiration\";i:1750246842;s:2:\"ip\";s:15:\"151.227.129.153\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 Edg/137.0.0.0\";s:5:\"login\";i:1750074042;}s:64:\"55d96afcc3f9b4279616f3760763d3424b901f9e744f2fc8722743d1f2e31f22\";a:4:{s:10:\"expiration\";i:1750409609;s:2:\"ip\";s:14:\"91.224.190.194\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36 Edg/137.0.0.0\";s:5:\"login\";i:1750236809;}}'),(386,18,'6m7_dashboard_quick_press_last_post_id','43388'),(387,18,'6m7_user-settings','libraryContent=browse&editor=tinymce&hidetb=1'),(388,18,'6m7_user-settings-time','1738672804'),(389,18,'closedpostboxes_course','a:1:{i:0;s:23:\"acf-group_617ac571396d0\";}'),(390,18,'metaboxhidden_course','a:1:{i:0;s:7:\"slugdiv\";}'),(391,18,'closedpostboxes_page','a:0:{}'),(392,18,'metaboxhidden_page','a:2:{i:0;s:12:\"revisionsdiv\";i:1;s:7:\"slugdiv\";}'),(393,3,'wpseo_metadesc',''),(394,3,'wpseo_title',''),(395,3,'wpseo_content_analysis_disable',''),(396,3,'wpseo_inclusive_language_analysis_disable',''),(397,3,'wpseo_keyword_analysis_disable',''),(398,19,'nickname','Morgan Hanness'),(399,19,'first_name','Morgan'),(400,19,'last_name','Hanness'),(401,19,'description',''),(402,19,'rich_editing','true'),(403,19,'syntax_highlighting','true'),(404,19,'comment_shortcuts','false'),(405,19,'admin_color','fresh'),(406,19,'use_ssl','0'),(407,19,'show_admin_bar_front','true'),(408,19,'locale',''),(409,19,'6m7_capabilities','a:1:{s:6:\"editor\";b:1;}'),(410,19,'6m7_user_level','7'),(411,19,'author_profile',''),(412,19,'_author_profile','field_62713ed614e72'),(413,19,'_yoast_wpseo_profile_updated','1734525650'),(414,19,'dismissed_wp_pointers',''),(415,19,'default_password_nag',''),(416,19,'session_tokens','a:1:{s:64:\"368939316dab6584543fc3d2a3a37e5003f788ed09484a9b209302eb537f6d8f\";a:4:{s:10:\"expiration\";i:1735742764;s:2:\"ip\";s:12:\"176.27.238.5\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0\";s:5:\"login\";i:1734533164;}}'),(417,19,'6m7_dashboard_quick_press_last_post_id','41821'),(418,17,'edit_post_per_page','200'),(419,17,'6m7_user-settings','posts_list_mode=list&libraryContent=browse&editor=tinymce'),(420,17,'6m7_user-settings-time','1738582738'),(421,3,'session_tokens','a:1:{s:64:\"6d445a934df39b2478e6586a03e9cf60e599c7a2dc2d00e38791c8cba2bb67a3\";a:4:{s:10:\"expiration\";i:1749233707;s:2:\"ip\";s:12:\"95.146.87.21\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36\";s:5:\"login\";i:1748024107;}}'),(422,3,'6m7_dashboard_quick_press_last_post_id','43245'),(423,15,'session_tokens','a:1:{s:64:\"82442387ae8ec9e3954e926a931a546eacdfba9a836455e80e2c3463e050e644\";a:4:{s:10:\"expiration\";i:1749991787;s:2:\"ip\";s:14:\"86.157.180.149\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36\";s:5:\"login\";i:1749818987;}}'),(424,17,'edit_page_per_page','200'),(425,20,'nickname','Rachel Butler'),(426,20,'first_name','Rachel'),(427,20,'last_name','Butler'),(428,20,'description',''),(429,20,'rich_editing','true'),(430,20,'syntax_highlighting','true'),(431,20,'comment_shortcuts','false'),(432,20,'admin_color','fresh'),(433,20,'use_ssl','0'),(434,20,'show_admin_bar_front','true'),(435,20,'locale',''),(436,20,'6m7_capabilities','a:1:{s:10:\"site_owner\";b:1;}'),(437,20,'6m7_user_level','10'),(438,20,'author_profile',''),(439,20,'_author_profile','field_62713ed614e72'),(440,20,'_yoast_wpseo_profile_updated','1737564760'),(441,20,'dismissed_wp_pointers',''),(442,17,'nav_menu_recently_edited','3'),(443,17,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(444,17,'metaboxhidden_nav-menus','a:11:{i:0;s:20:\"add-post-type-course\";i:1;s:22:\"add-post-type-resource\";i:2;s:18:\"add-post-type-faqs\";i:3;s:25:\"add-post-type-testimonial\";i:4;s:24:\"add-post-type-ambassador\";i:5;s:19:\"add-post-type-tutor\";i:6;s:24:\"add-post-type-fft-author\";i:7;s:12:\"add-post_tag\";i:8;s:28:\"add-acf-field-group-category\";i:9;s:14:\"add-course-cat\";i:10;s:19:\"add-resource-format\";}'),(445,17,'edit_faqs_per_page','200'),(446,18,'nav_menu_recently_edited','413'),(447,18,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(448,18,'metaboxhidden_nav-menus','a:11:{i:0;s:20:\"add-post-type-course\";i:1;s:22:\"add-post-type-resource\";i:2;s:18:\"add-post-type-faqs\";i:3;s:25:\"add-post-type-testimonial\";i:4;s:24:\"add-post-type-ambassador\";i:5;s:19:\"add-post-type-tutor\";i:6;s:24:\"add-post-type-fft-author\";i:7;s:12:\"add-post_tag\";i:8;s:28:\"add-acf-field-group-category\";i:9;s:14:\"add-course-cat\";i:10;s:19:\"add-resource-format\";}'),(449,18,'closedpostboxes_post','a:0:{}'),(450,18,'metaboxhidden_post','a:3:{i:0;s:12:\"revisionsdiv\";i:1;s:11:\"postexcerpt\";i:2;s:7:\"slugdiv\";}'),(451,16,'wpseo_metadesc',''),(452,16,'wpseo_title',''),(453,16,'wpseo_content_analysis_disable',''),(454,16,'wpseo_inclusive_language_analysis_disable',''),(455,16,'wpseo_keyword_analysis_disable',''),(456,21,'nickname','Jaz Humphreys'),(457,21,'first_name',''),(458,21,'last_name',''),(459,21,'description',''),(460,21,'rich_editing','true'),(461,21,'syntax_highlighting','true'),(462,21,'comment_shortcuts','false'),(463,21,'admin_color','fresh'),(464,21,'use_ssl','0'),(465,21,'show_admin_bar_front','true'),(466,21,'locale',''),(467,21,'6m7_capabilities','a:1:{s:10:\"site_owner\";b:1;}'),(468,21,'6m7_user_level','10'),(469,21,'author_profile',''),(470,21,'_author_profile','field_62713ed614e72'),(471,21,'_yoast_wpseo_profile_updated','1743590411'),(472,21,'dismissed_wp_pointers',''),(473,22,'nickname','DaveStead'),(474,22,'first_name','David'),(475,22,'last_name','Stead'),(476,22,'description',''),(477,22,'rich_editing','true'),(478,22,'syntax_highlighting','true'),(479,22,'comment_shortcuts','false'),(480,22,'admin_color','fresh'),(481,22,'use_ssl','0'),(482,22,'show_admin_bar_front','true'),(483,22,'locale',''),(484,22,'6m7_capabilities','a:1:{s:10:\"site_owner\";b:1;}'),(485,22,'6m7_user_level','10'),(486,22,'author_profile',''),(487,22,'_author_profile','field_62713ed614e72'),(488,22,'_yoast_wpseo_profile_updated','1745493270'),(489,22,'dismissed_wp_pointers',''),(490,22,'default_password_nag',''),(491,22,'session_tokens','a:2:{s:64:\"d533501b78fff6c2c20914de1cd69c1f5d8ee893f85b76d719259460b383bf97\";a:4:{s:10:\"expiration\";i:1745666955;s:2:\"ip\";s:14:\"51.179.194.165\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 Edg/135.0.0.0\";s:5:\"login\";i:1745494155;}s:64:\"09216fc9352345bf28817bea15bbdd4eab818c2dd8d755c93a59c9921dbe94f9\";a:4:{s:10:\"expiration\";i:1745750962;s:2:\"ip\";s:14:\"51.179.194.165\";s:2:\"ua\";s:125:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 Edg/135.0.0.0\";s:5:\"login\";i:1745578162;}}'),(492,22,'6m7_dashboard_quick_press_last_post_id','43003'),(493,22,'closedpostboxes_page','a:0:{}'),(494,22,'metaboxhidden_page','a:2:{i:0;s:12:\"revisionsdiv\";i:1;s:7:\"slugdiv\";}'),(495,22,'_yoast_wpseo_introductions','a:1:{s:25:\"ai-fix-assessments-upsell\";b:1;}');
/*!40000 ALTER TABLE `6m7_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_users`
--

DROP TABLE IF EXISTS `6m7_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_users` (
  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `user_status` int NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_users`
--

LOCK TABLES `6m7_users` WRITE;
/*!40000 ALTER TABLE `6m7_users` DISABLE KEYS */;
INSERT INTO `6m7_users` VALUES (1,'mattaxell','$wp$2y$10$ViI/r97SvJULY6XhAdv4s.04N7m56ehPvK8dLKhV.Jgketslwae4.','mattaxell','matt@studiofinesse.co.uk','https://biomechanicseducation.com','2024-07-15 11:26:32','',0,'mattaxell'),(3,'BioAdmin','$wp$2y$10$yH3oAW3IznJErIv4GsxqgOk7GSHQ5xHxn29W31VzevMiwrGL4gnju','bioadmin','rachel@biomechanicseducation.com','','2024-07-16 09:51:08','',0,'Rachel Frances Thomson'),(11,'lilythomas','$wp$2y$10$M/YCn8TMsOEocG6wGPzdYugbMo9BcWsxnOtw5dqx1qg15.kmwUqke','lilythomas','lily.thomas@futurefit.co.uk','','2024-07-16 12:39:09','',0,'Lily Thomas'),(12,'tomphillips','$P$BIBISKN.5jHvJ9U4oClgOXIduJ6kJW.','tomphillips','tom.phillips@futurefit.co.uk','','2024-07-16 12:39:36','',0,'Tom Phillips'),(15,'eleanorpreston','$wp$2y$10$LP3yGs77iYUKIlVWToSOdOQo6awFjhGoRpSHNhEtJxzSvdwuupo86','eleanorpreston','Eleanor.preston@futurefit.co.uk','','2024-07-16 12:47:43','',0,'Eleanor Preston'),(16,'shukhanduja','$P$B0slKpHoHZld14JfamjvgPOAFnekud0','shukhanduja','shu.khanduja@futurefit.co.uk','','2024-09-04 10:22:27','',0,'Shu Khanduja'),(17,'Tim Ryan','$wp$2y$10$j.IrszihFsc9ogRRRGDMY.b1L6gArlKj/8zxwCozGSmrFVnXpsagO','tim-ryan','tim.ryan@futurefit.co.uk','','2024-11-11 13:47:48','',0,'Tim Ryan'),(18,'markmcaulay','$wp$2y$10$.F5g5nnoy1TAqi5uk0TgKO/XwwmjSVYr.tSVl2.S9o1Umnp/Cswfq','markmcaulay','mark.mcaulay@futurefit.co.uk','','2024-11-29 11:38:14','',0,'Mark McAuley'),(19,'Morgan Hanness','$P$BB4P8E5Chou8Woia7Zh5im9s1h5Rkr0','morgan-hanness','morgan@biomechanicseducation.com','','2024-12-18 12:40:50','',0,'Morgan Hanness'),(20,'Rachel Butler','$P$Bnpx05dWOVWvUFoxoSpD0KrnBOrBtH.','rachel-butler','rachael.butler@futurefit.co.uk','','2025-01-22 16:52:40','1737564760:$P$BtbTN/eSWm4OSQafyY6./LD0twDpJe0',0,'Rachel Butler'),(21,'Jaz Humphreys','$P$BbCbCE/pyH0oiBH5kmqTldy7DTE1er1','jaz-humphreys','jasmine.humphreys@futurefit.co.uk','','2025-04-02 10:40:11','1743590411:$P$Blb./Cq9SkS1pS5AZ9bsYaNF7NqEEu/',0,'Jaz Humphreys'),(22,'DaveStead','$wp$2y$10$PtdNokjqzGHyeLFG/5Tzy.urv2o.Fzvk1DxQ9AnSs1aewsCEA8tSG','davestead','David.Stead@futurefit.co.uk','','2025-04-24 11:14:30','',0,'David Stead');
/*!40000 ALTER TABLE `6m7_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_yoast_indexable`
--

DROP TABLE IF EXISTS `6m7_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_yoast_indexable` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext COLLATE utf8mb4_unicode_520_ci,
  `permalink_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `object_id` bigint DEFAULT NULL,
  `object_type` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `object_sub_type` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `author_id` bigint DEFAULT NULL,
  `post_parent` bigint DEFAULT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci,
  `description` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `breadcrumb_title` text COLLATE utf8mb4_unicode_520_ci,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT '0',
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int unsigned DEFAULT NULL,
  `canonical` longtext COLLATE utf8mb4_unicode_520_ci,
  `primary_focus_keyword` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `primary_focus_keyword_score` int DEFAULT NULL,
  `readability_score` int DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT '0',
  `is_robots_noindex` tinyint(1) DEFAULT '0',
  `is_robots_nofollow` tinyint(1) DEFAULT '0',
  `is_robots_noarchive` tinyint(1) DEFAULT '0',
  `is_robots_noimageindex` tinyint(1) DEFAULT '0',
  `is_robots_nosnippet` tinyint(1) DEFAULT '0',
  `twitter_title` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `twitter_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_title` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `open_graph_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_meta` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `link_count` int DEFAULT NULL,
  `incoming_link_count` int DEFAULT NULL,
  `prominent_words_version` int unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint NOT NULL DEFAULT '1',
  `language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_page_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_article_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT '0',
  `estimated_reading_time_minutes` int DEFAULT NULL,
  `version` int DEFAULT '1',
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  `inclusive_language_score` int DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=InnoDB AUTO_INCREMENT=1357 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_yoast_indexable`
--

LOCK TABLES `6m7_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `6m7_yoast_indexable` DISABLE KEYS */;
INSERT INTO `6m7_yoast_indexable` VALUES (2,'https://biomechanicseducation.com/david-lloyd-referral/','55:bd9785430aea41d50f712a097abd35f5',38973,'post','page',3,0,'David Lloyd Referral | Biomechanics Education','Discover the David Lloyd referral for biomechanics education. Obtain exclusive discount to enhance your professional development through our partnership.','David Lloyd Referral','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/David-Lloyd-referral-page-hero-image.jpg',NULL,'38977','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/David-Lloyd-referral-page-hero-image.jpg','38977','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":351122,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/07/David-Lloyd-referral-page-hero-image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/07/David-Lloyd-referral-page-hero-image.jpg\",\"size\":\"full\",\"id\":38977,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 12:53:43','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-10-09 11:15:19','2024-07-23 11:14:24',90),(3,'https://biomechanicseducation.com/emd-uk-referral/','50:a87fc8e5a3022a6698e89135c848b597',39038,'post','page',3,0,'EMD Referral | Biomechanics Education','Explore the EMD referral for biomechanics education. Access exclusive offers and opportunities to advance your knowledge and skills through our partnership.','EMD UK Referral','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/David-Lloyd-referral-page-hero-image.jpg',NULL,'38977','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/David-Lloyd-referral-page-hero-image.jpg','38977','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":351122,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/07/David-Lloyd-referral-page-hero-image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/07/David-Lloyd-referral-page-hero-image.jpg\",\"size\":\"full\",\"id\":38977,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 12:53:43','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-10-09 11:34:55','2024-07-23 12:35:47',90),(4,'https://biomechanicseducation.com/events/','41:65d2cc8213e93a4fea1f345cd1d89605',39043,'post','page',3,0,'Events | Biomechanics Education','Join our biomechanics education event to explore the latest advancements and techniques. Network with professionals and gain insights to elevate your practice.','Event Referral Page','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/shutterstock_2485558527.jpg',NULL,'40310','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/shutterstock_2485558527.jpg','40310','featured-image','{\"width\":1000,\"height\":667,\"filesize\":442997,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/shutterstock_2485558527.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/shutterstock_2485558527.jpg\",\"size\":\"full\",\"id\":40310,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 12:53:43','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-10-09 12:46:16','2024-07-23 12:44:58',90),(5,'https://biomechanicseducation.com/','34:5f7b65296be12eed1c80541e34f7f288',7,'post','page',1,0,'Biomechanics Education %%sep%% Resources & Courses','Discover top resources and courses in human movement science. Enhance your biomechanics knowledge and skills with expert guidance.','Home','publish',NULL,0,NULL,NULL,NULL,'Biomechanics Education',39,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/BE-Home-page-hero-Image.jpg',NULL,'38951','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/BE-Home-page-hero-Image.jpg','38951','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":277187,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/07/BE-Home-page-hero-Image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/07/BE-Home-page-hero-Image.jpg\",\"size\":\"full\",\"id\":38951,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 12:53:43','2025-04-08 12:28:53',1,NULL,NULL,NULL,NULL,0,1,2,'2025-04-08 13:28:53','2024-07-15 11:42:19',90),(6,'https://biomechanicseducation.com/privacy-policy/','49:d3aef46a8a3195f0d24c15ba0fddd894',3,'post','page',1,0,'Privacy Policy | Biomechanics Education','Our privacy policy details how we handle your data responsibly, keeping your information secure and confidential.','Privacy Policy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 12:53:43','2024-10-09 12:42:42',1,NULL,NULL,NULL,NULL,0,3,2,'2024-10-09 12:42:42','2024-07-15 11:26:32',90),(7,'https://biomechanicseducation.com/','34:5f7b65296be12eed1c80541e34f7f288',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,1,NULL,'2024-07-23 12:53:46','2025-07-01 14:53:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-07-01 15:53:22','2016-04-20 13:44:09',NULL),(24,'https://biomechanicseducation.com/category/blog/','48:3e31b0b8bb86cc0bfff22184dc6cd184',5,'term','category',NULL,NULL,NULL,NULL,'Blog',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2025-07-01 14:53:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-07-01 15:53:22',NULL,NULL),(25,'https://biomechanicseducation.com/tag/cadaver-labs/','61:ad8de80bca44ccc020a85b1bda011bcf',6,'term','post_tag',NULL,NULL,NULL,NULL,'cadaver labs',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(26,'https://biomechanicseducation.com/tag/so-what/','56:4f969771ca36c1e815c95be27667362b',7,'term','post_tag',NULL,NULL,NULL,NULL,'so what',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(27,'https://biomechanicseducation.com/tag/what-do-you-think/','66:0e576acce2b2f2ecf95071b25990501f',8,'term','post_tag',NULL,NULL,NULL,NULL,'what do you think',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(28,'https://biomechanicseducation.com/tag/10-minute-squat/','64:69fbede3380fd44f55792fb127bef20c',9,'term','post_tag',NULL,NULL,NULL,NULL,'10 minute squat',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(29,'https://biomechanicseducation.com/tag/biomechanics/','51:daae5f9b26ff59eea6ae525f9e5f4498',10,'term','post_tag',NULL,NULL,NULL,NULL,'biomechanics',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(30,'https://biomechanicseducation.com/tag/foot/','43:edb9696f62aee3460e27e7a706157e7d',11,'term','post_tag',NULL,NULL,NULL,NULL,'foot',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(31,'https://biomechanicseducation.com/tag/kelly/','54:eacccfaf8a410fe0683394aa94d88e96',12,'term','post_tag',NULL,NULL,NULL,NULL,'kelly',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(32,'https://biomechanicseducation.com/tag/pelvic/','45:394c0d100baf63d63d3e5d29ddc27e8c',13,'term','post_tag',NULL,NULL,NULL,NULL,'pelvic',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2025-01-20 15:59:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(33,'https://biomechanicseducation.com/tag/starrett/','57:f4a4aa2e5961a73aba3e5fce4b1f1617',14,'term','post_tag',NULL,NULL,NULL,NULL,'starrett',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(34,'https://biomechanicseducation.com/tag/subtalar-joint/','63:6c7dbdbee8f80a48b998893d9118485a',15,'term','post_tag',NULL,NULL,NULL,NULL,'subtalar joint',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(35,'https://biomechanicseducation.com/tag/causation/','58:5314d3ac1d07e69fe1d5599cdd2447e7',16,'term','post_tag',NULL,NULL,NULL,NULL,'causation',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(36,'https://biomechanicseducation.com/tag/injury/','45:8694a64868ad4770475e36908572e6c5',17,'term','post_tag',NULL,NULL,NULL,NULL,'injury',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(37,'https://biomechanicseducation.com/tag/joint/','54:082fb77baa20cc455d1abf1e04fe63bb',18,'term','post_tag',NULL,NULL,NULL,NULL,'joint',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(38,'https://biomechanicseducation.com/tag/loading/','56:98d50b9e284c739432c7661a3d6c3dba',19,'term','post_tag',NULL,NULL,NULL,NULL,'loading',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(39,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 13:54:06','2024-07-23 13:54:06',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(40,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 13:54:06','2024-07-23 13:54:06',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(41,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 13:54:06','2024-07-23 13:54:06',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(43,'https://biomechanicseducation.com/success-stories/testimonial/','62:b7bde23fefa963a7275797f4fe05c08f',38964,'post','testimonial',3,0,NULL,'Thanks again for providing a fantastic course. I am really looking forward to the next courses. Read more about our courses here...','Course Learner','publish',NULL,0,NULL,NULL,NULL,'Testimonials',23,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2025-02-10 11:45:15',1,NULL,NULL,NULL,NULL,0,0,2,'2025-02-10 11:45:15','2024-07-23 10:41:22',90),(44,'https://biomechanicseducation.com/success-stories/biomechanics-education-testimonial/','85:c3e9b4c2ab7696f4e6630e8502b38535',38965,'post','testimonial',3,0,NULL,'I loved every aspect of the Diploma in Biomechanics Coaching Course! Read more about what our learners have to say here...','Course Learner','publish',NULL,0,NULL,NULL,NULL,'Testimonials',23,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 13:54:06','2025-02-10 11:45:10',1,NULL,NULL,NULL,NULL,0,0,2,'2025-02-10 11:45:10','2024-07-23 10:41:46',90),(45,'https://biomechanicseducation.com/courses/','42:777a18340f959f6888144015af3745f1',39066,'post','page',3,0,'Courses | Biomechanics Education','Accessible biomechanics courses for fitness professionals, offering clear insights into body function and promoting professional growth.','Courses','publish',NULL,0,NULL,NULL,NULL,'Biomechanics Courses',46,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Image-for-courses-page-hero.jpg',NULL,'39067','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Image-for-courses-page-hero.jpg','39067','featured-image','{\"width\":2560,\"height\":1710,\"filesize\":535585,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Image-for-courses-page-hero.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/07/Image-for-courses-page-hero.jpg\",\"size\":\"full\",\"id\":39067,\"alt\":\"\",\"pixels\":4377600,\"type\":\"image/jpeg\"}',0,2,NULL,'2024-07-23 14:06:14','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-23 14:21:17','2024-07-23 14:08:07',90),(61,'https://biomechanicseducation.com/tag/motion/','55:432c69714df84c9071f3f3cd7f3894d6',20,'term','post_tag',NULL,NULL,NULL,NULL,'motion',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(62,'https://biomechanicseducation.com/tag/muscle/','45:40f3c2058343c47ac62ae14e70cfb6cd',21,'term','post_tag',NULL,NULL,NULL,NULL,'muscle',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(63,'https://biomechanicseducation.com/tag/muscle-spasm/','61:749e5e2c4553bfb0b07da32d6bfc003f',22,'term','post_tag',NULL,NULL,NULL,NULL,'muscle spasm',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(64,'https://biomechanicseducation.com/tag/nerve-tension/','62:d7e28bec3863a30190dcd5c5fef40936',23,'term','post_tag',NULL,NULL,NULL,NULL,'nerve tension',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(65,'https://biomechanicseducation.com/tag/postural/','57:bf1eee24ef0922033a27a77a6a785819',24,'term','post_tag',NULL,NULL,NULL,NULL,'postural',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(66,'https://biomechanicseducation.com/tag/prevention/','59:2d3176ce6f8c0f34f748bcb27fcbd3d0',25,'term','post_tag',NULL,NULL,NULL,NULL,'prevention',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(67,'https://biomechanicseducation.com/tag/protection/','59:9c7a41e87d108e7e49462482778c8c4a',26,'term','post_tag',NULL,NULL,NULL,NULL,'protection',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(68,'https://biomechanicseducation.com/tag/repetitive/','59:f99d3b6784cb0b96fca85b28c7d09789',27,'term','post_tag',NULL,NULL,NULL,NULL,'repetitive',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(69,'https://biomechanicseducation.com/tag/risk/','53:816a6af562f5981c18a059ada29283ef',28,'term','post_tag',NULL,NULL,NULL,NULL,'risk',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(70,'https://biomechanicseducation.com/tag/breath/','55:6499453922a31a63e5045c6c30f60800',29,'term','post_tag',NULL,NULL,NULL,NULL,'breath',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(71,'https://biomechanicseducation.com/tag/breathwork/','59:61cc68f95571797ec0bc93797db3bd0e',30,'term','post_tag',NULL,NULL,NULL,NULL,'breathwork',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(72,'https://biomechanicseducation.com/tag/meditation/','59:6ffd83efeb63f798c9687ac143ebf917',31,'term','post_tag',NULL,NULL,NULL,NULL,'meditation',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(73,'https://biomechanicseducation.com/tag/mind/','53:2fe8ff5a0ec3b0b605df2d7c271e3fb1',32,'term','post_tag',NULL,NULL,NULL,NULL,'mind',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(74,'https://biomechanicseducation.com/tag/yoga/','43:70d2b6da149f3513ad61fda7835f7e44',33,'term','post_tag',NULL,NULL,NULL,NULL,'yoga',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(75,'https://biomechanicseducation.com/tag/anti-spasm/','49:e7bf70a43defb61d7d25e4c7ac03e97f',34,'term','post_tag',NULL,NULL,NULL,NULL,'anti spasm',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:09:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(91,'https://biomechanicseducation.com/tag/muscle-energy-technique/','72:fdfe63f9c5e74405db61ab41d1a03fd1',35,'term','post_tag',NULL,NULL,NULL,NULL,'MUSCLE ENERGY TECHNIQUE',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(92,'https://biomechanicseducation.com/tag/spindles/','57:53201e79a06db9e070afa0eaf64240fc',36,'term','post_tag',NULL,NULL,NULL,NULL,'SPINDLES',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(93,'https://biomechanicseducation.com/tag/stretch/','56:f8a0abf12da3b7458da03cf4abb7d724',37,'term','post_tag',NULL,NULL,NULL,NULL,'STRETCH',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(94,'https://biomechanicseducation.com/tag/subclinical/','60:e182a0b03a40262d31e6c26a22c341e7',38,'term','post_tag',NULL,NULL,NULL,NULL,'SUBCLINICAL',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(95,'https://biomechanicseducation.com/tag/blog/','43:636c9343f31f0be84d61c02afbd48fd9',39,'term','post_tag',NULL,NULL,NULL,NULL,'blog',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(96,'https://biomechanicseducation.com/tag/conditioning/','61:7fbeadaf63cd4f43e6b97e6744e81b0b',40,'term','post_tag',NULL,NULL,NULL,NULL,'conditioning',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(97,'https://biomechanicseducation.com/tag/core/','43:0c40c6d63b534fa6600bfc909f591a10',41,'term','post_tag',NULL,NULL,NULL,NULL,'core',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(98,'https://biomechanicseducation.com/tag/core-strength/','62:8362c0913daf0d209546e91e1046a4c0',42,'term','post_tag',NULL,NULL,NULL,NULL,'core strength',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(99,'https://biomechanicseducation.com/tag/core-weakness/','62:c255273573f7e06e0b54f7afedbffb35',43,'term','post_tag',NULL,NULL,NULL,NULL,'core weakness',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(100,'https://biomechanicseducation.com/tag/dysfunction/','60:608cf2deba7f83581951351d022a153e',44,'term','post_tag',NULL,NULL,NULL,NULL,'dysfunction',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(101,'https://biomechanicseducation.com/tag/education/','48:4bd70eeb1209c2b137b0e7fd24031146',45,'term','post_tag',NULL,NULL,NULL,NULL,'education',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(102,'https://biomechanicseducation.com/tag/pelvic-dysfunction/','67:54868c81efaeaf98af6a750e377d36d9',46,'term','post_tag',NULL,NULL,NULL,NULL,'pelvic dysfunction',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(103,'https://biomechanicseducation.com/tag/pelvis/','45:ed1bf0869272c1270b581e44a870d9a4',47,'term','post_tag',NULL,NULL,NULL,NULL,'pelvis',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(104,'https://biomechanicseducation.com/tag/stability/','58:a1d8676c485fd20dd987ef2737dc051b',48,'term','post_tag',NULL,NULL,NULL,NULL,'stability',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(105,'https://biomechanicseducation.com/tag/strength/','57:5039cfa0c83b8f637c69aed349ee6677',49,'term','post_tag',NULL,NULL,NULL,NULL,'strength',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(122,'https://biomechanicseducation.com/tag/training/','47:a82f1cea5cf4fea3e00a4435c1f58ceb',50,'term','post_tag',NULL,NULL,NULL,NULL,'training',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2025-01-20 16:01:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:56',NULL,NULL),(123,'https://biomechanicseducation.com/tag/weakness/','57:b13bbb425faa8befcf7157eeead0bc6e',51,'term','post_tag',NULL,NULL,NULL,NULL,'weakness',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(124,'https://biomechanicseducation.com/tag/article/','56:d7a85147a03e9472c6e50c7c0ea6662a',52,'term','post_tag',NULL,NULL,NULL,NULL,'article',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(125,'https://biomechanicseducation.com/tag/custom-fit/','59:b62823d94ad8ca80d74b53e953eec2cd',53,'term','post_tag',NULL,NULL,NULL,NULL,'custom fit',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(126,'https://biomechanicseducation.com/tag/custom-fit-insoles/','67:871e9abaf7c423ffbc6aeff6039e5e8e',54,'term','post_tag',NULL,NULL,NULL,NULL,'custom fit insoles',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(127,'https://biomechanicseducation.com/tag/insoles/','56:5a055fb62e7cc8c7ccec15694639994f',55,'term','post_tag',NULL,NULL,NULL,NULL,'insoles',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(128,'https://biomechanicseducation.com/tag/orthotics/','58:2c7577376b4e3117865bff8ee4a01724',56,'term','post_tag',NULL,NULL,NULL,NULL,'orthotics',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(129,'https://biomechanicseducation.com/tag/premier-podiatry/','65:d2710406ccb9825b0ff0e0a05a0e9eaa',57,'term','post_tag',NULL,NULL,NULL,NULL,'Premier Podiatry',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(130,'https://biomechanicseducation.com/tag/research/','57:035e9703ad8e36fa7133c82b5818a193',58,'term','post_tag',NULL,NULL,NULL,NULL,'research',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(131,'https://biomechanicseducation.com/tag/running/','56:68954b78f9309fe93d533e355567c1ab',59,'term','post_tag',NULL,NULL,NULL,NULL,'running',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(132,'https://biomechanicseducation.com/tag/shoes/','54:e937cdb85c89938e4eaa6fae98f087c0',60,'term','post_tag',NULL,NULL,NULL,NULL,'shoes',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(133,'https://biomechanicseducation.com/tag/trainers/','57:e4d5597af585c8ebf939eab82094b1ae',61,'term','post_tag',NULL,NULL,NULL,NULL,'trainers',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(134,'https://biomechanicseducation.com/tag/education-quads/','64:4aee0cf3e3b5ad12898927cc2e0d4cc5',62,'term','post_tag',NULL,NULL,NULL,NULL,'education quads',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(135,'https://biomechanicseducation.com/tag/pain/','43:2fdd0f85e06aa9e01ba73098795072c2',63,'term','post_tag',NULL,NULL,NULL,NULL,'pain',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(136,'https://biomechanicseducation.com/tag/shock-denial/','61:5771cb35171c0bac864233711b429b46',64,'term','post_tag',NULL,NULL,NULL,NULL,'shock denial',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(152,'https://biomechanicseducation.com/tag/david-butler/','61:d8dcc7c2cc621125bdb4d7df7569b06b',65,'term','post_tag',NULL,NULL,NULL,NULL,'david butler',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(153,'https://biomechanicseducation.com/tag/karel-lewitt/','61:c92e7e2821bcf5c3e71cb97f37cf4640',66,'term','post_tag',NULL,NULL,NULL,NULL,'karel lewitt',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(154,'https://biomechanicseducation.com/tag/lorimer-moseley/','64:04621376f4cef8a09b5415181a5baded',67,'term','post_tag',NULL,NULL,NULL,NULL,'lorimer moseley',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(155,'https://biomechanicseducation.com/tag/mindset/','56:da4e5c77c5440224c2c94484d0bd5a2d',68,'term','post_tag',NULL,NULL,NULL,NULL,'mindset',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(156,'https://biomechanicseducation.com/tag/personal-trainer/','55:358955a98eace76195809319c37809d1',69,'term','post_tag',NULL,NULL,NULL,NULL,'personal trainer',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(157,'https://biomechanicseducation.com/tag/pilates/','46:b69a05fc72e776811f495d63eaf99c1e',70,'term','post_tag',NULL,NULL,NULL,NULL,'pilates',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(158,'https://biomechanicseducation.com/tag/think-differently/','66:95a11fd1493855b8ce01c18309190da6',71,'term','post_tag',NULL,NULL,NULL,NULL,'think differently',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(159,'https://biomechanicseducation.com/tag/exercise-research-read-serge-gracovetsky-stuart-mccill/','103:e15fbb986867eaa7fa2694a7fc0c1d7a',72,'term','post_tag',NULL,NULL,NULL,NULL,'exercise research read serge gracovetsky stuart mccill',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(160,'https://biomechanicseducation.com/tag/deadlift/','47:acb5ec19786509ef4a01d6721809ab32',73,'term','post_tag',NULL,NULL,NULL,NULL,'deadlift',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2025-01-20 16:01:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:56',NULL,NULL),(161,'https://biomechanicseducation.com/tag/lift/','53:ec465ec459fd592ea211307f432f099f',74,'term','post_tag',NULL,NULL,NULL,NULL,'lift',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(162,'https://biomechanicseducation.com/tag/lifting/','56:3a5f6fde654ea4d3ca4e1003a16957ad',75,'term','post_tag',NULL,NULL,NULL,NULL,'lifting',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(163,'https://biomechanicseducation.com/tag/lifting-biomechanics/','69:e8942a9c51c785cb8935673e96d7712f',76,'term','post_tag',NULL,NULL,NULL,NULL,'lifting biomechanics',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(164,'https://biomechanicseducation.com/tag/personal-training/','66:5d96907386b33ae947fc8f0c796042ff',77,'term','post_tag',NULL,NULL,NULL,NULL,'personal training',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(165,'https://biomechanicseducation.com/tag/spine/','44:554d0892df3405cb5ce6e0056e311ff3',78,'term','post_tag',NULL,NULL,NULL,NULL,'spine',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(166,'https://biomechanicseducation.com/tag/sports-coaching/','64:dbc9b5cf027925ad6ffa335c04978d68',79,'term','post_tag',NULL,NULL,NULL,NULL,'sports coaching',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 14:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(182,'https://biomechanicseducation.com/tag/squat/','54:b292b4b197e07d9ab563f38b6efedeca',80,'term','post_tag',NULL,NULL,NULL,NULL,'squat',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(183,'https://biomechanicseducation.com/tag/mobility/','47:a01dbfd9c7a32d46b8f5b89afac5b722',81,'term','post_tag',NULL,NULL,NULL,NULL,'mobility',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(184,'https://biomechanicseducation.com/tag/anatomy/','46:e43135cfe09c11f7ee7eebc5f504c09b',82,'term','post_tag',NULL,NULL,NULL,NULL,'anatomy',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2025-07-01 14:53:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-07-01 15:53:22',NULL,NULL),(185,'https://biomechanicseducation.com/tag/biomechanics-coach/','57:834ef2e19f87ff8a8551c1d7af247e68',83,'term','post_tag',NULL,NULL,NULL,NULL,'biomechanics coach',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(186,'https://biomechanicseducation.com/tag/components/','59:6beb3a5f3b50cae6c7d7f8c47ad80646',84,'term','post_tag',NULL,NULL,NULL,NULL,'components',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(187,'https://biomechanicseducation.com/tag/equillibrium/','61:0b35dc5f3123ac17091f26b7a7a0dd6a',85,'term','post_tag',NULL,NULL,NULL,NULL,'equillibrium',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(188,'https://biomechanicseducation.com/tag/extrinsic/','48:5b34b598007fb49b84ca22a17bc1eb49',86,'term','post_tag',NULL,NULL,NULL,NULL,'extrinsic',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(189,'https://biomechanicseducation.com/tag/force/','54:1796955740c04a7ea368e59cf66cc48c',87,'term','post_tag',NULL,NULL,NULL,NULL,'force',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(190,'https://biomechanicseducation.com/tag/intrinsic/','48:d0ccdf514fb8734b9b27b73d7d350d31',88,'term','post_tag',NULL,NULL,NULL,NULL,'intrinsic',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(191,'https://biomechanicseducation.com/tag/kinematics/','59:e1ece3e0cb3c0e9885bec6917b7eca99',89,'term','post_tag',NULL,NULL,NULL,NULL,'kinematics',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(192,'https://biomechanicseducation.com/tag/kinetics/','57:ad305d26b05b55916c44e955eaa3f5fb',90,'term','post_tag',NULL,NULL,NULL,NULL,'kinetics',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(193,'https://biomechanicseducation.com/tag/levers/','55:7439a939d43d0a1990a2e6559f9545ea',91,'term','post_tag',NULL,NULL,NULL,NULL,'levers',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(194,'https://biomechanicseducation.com/tag/momentum/','57:d6ce89471c30d24a4d531629243a9fd9',92,'term','post_tag',NULL,NULL,NULL,NULL,'momentum',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(195,'https://biomechanicseducation.com/tag/personal-trainers/','66:42d12484f033e6edaf27d5cb7f55a179',93,'term','post_tag',NULL,NULL,NULL,NULL,'PERSONAL TRAINERS',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(196,'https://biomechanicseducation.com/tag/why-we-move/','60:bbc7a0a9a1a23caf2d40880970ff2fc9',94,'term','post_tag',NULL,NULL,NULL,NULL,'why we move',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(212,'https://biomechanicseducation.com/tag/adapting/','57:82a16557aaf787e68acd5ad2e5243ee5',95,'term','post_tag',NULL,NULL,NULL,NULL,'adapting',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(213,'https://biomechanicseducation.com/tag/angles/','55:2db9bad3c058c6d7d3fbd05960bc7e1d',96,'term','post_tag',NULL,NULL,NULL,NULL,'angles',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(214,'https://biomechanicseducation.com/tag/differently/','60:e02337c34b9889dcdc89ad4621708363',97,'term','post_tag',NULL,NULL,NULL,NULL,'differently',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(215,'https://biomechanicseducation.com/tag/fulcrum/','56:86a896de03c4b77c6a95e6bde19025ef',98,'term','post_tag',NULL,NULL,NULL,NULL,'fulcrum',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(216,'https://biomechanicseducation.com/tag/gym-machines/','61:9eae4159948cdf804d6a269b9ce22240',99,'term','post_tag',NULL,NULL,NULL,NULL,'gym machines',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(217,'https://biomechanicseducation.com/tag/pivot/','54:c3dd8a55692f966efef0551fbac5b304',100,'term','post_tag',NULL,NULL,NULL,NULL,'pivot',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(218,'https://biomechanicseducation.com/tag/pulleys/','56:96f4d1d908f059b80d4214910fb8f9b8',101,'term','post_tag',NULL,NULL,NULL,NULL,'pulleys',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(219,'https://biomechanicseducation.com/tag/wrong/','54:a482d6d4863de45443753543e27a04fe',102,'term','post_tag',NULL,NULL,NULL,NULL,'wrong',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(220,'https://biomechanicseducation.com/tag/advanced-personal-trainer/','74:af381ade9ea327e3a6775dcba8d489b5',103,'term','post_tag',NULL,NULL,NULL,NULL,'advanced personal trainer',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(221,'https://biomechanicseducation.com/tag/advanced-personal-training/','75:ea54c98f4990c6b033cfe45e1e9e7cca',104,'term','post_tag',NULL,NULL,NULL,NULL,'advanced personal training',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(222,'https://biomechanicseducation.com/tag/career/','55:c4c72213c7bc6817018d16a5b6b927e2',105,'term','post_tag',NULL,NULL,NULL,NULL,'career',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(223,'https://biomechanicseducation.com/tag/level/','54:5dc76579c2bb86c3911150965ac5f1c2',106,'term','post_tag',NULL,NULL,NULL,NULL,'level',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(224,'https://biomechanicseducation.com/tag/levels/','55:7f5068d5ceb0b506d416abf70ffdb959',107,'term','post_tag',NULL,NULL,NULL,NULL,'levels',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(225,'https://biomechanicseducation.com/tag/fitness/','56:aaf93f96c3b626f999df625b92e20e20',108,'term','post_tag',NULL,NULL,NULL,NULL,'fitness',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(226,'https://biomechanicseducation.com/tag/health/','45:9ca448dc5df97233149b7a47942e429a',109,'term','post_tag',NULL,NULL,NULL,NULL,'health',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:24:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(242,'https://biomechanicseducation.com/tag/4-sign/','45:bde7985388454b23fab2fcfa05e3816c',110,'term','post_tag',NULL,NULL,NULL,NULL,'4-sign',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(243,'https://biomechanicseducation.com/tag/low-back/','47:6714ce45441964ec3528f4f5ac3b4088',111,'term','post_tag',NULL,NULL,NULL,NULL,'low back',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(244,'https://biomechanicseducation.com/tag/pelvic-function/','54:5456896216f1c553e3f9d135ded22c90',112,'term','post_tag',NULL,NULL,NULL,NULL,'pelvic function',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(245,'https://biomechanicseducation.com/tag/release/','46:ac9d22c5f01466f96fe289e82fffe0ff',113,'term','post_tag',NULL,NULL,NULL,NULL,'release',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(246,'https://biomechanicseducation.com/tag/rugby/','44:344088272f324e50e915fee6b1ac1ba7',114,'term','post_tag',NULL,NULL,NULL,NULL,'rugby',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(247,'https://biomechanicseducation.com/tag/lunge/','54:bce0c8e51e753b24499271ae8ec1ab31',115,'term','post_tag',NULL,NULL,NULL,NULL,'lunge',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(248,'https://biomechanicseducation.com/type/image/','55:d07423b0b3511eeb14e29423249c1aa8',116,'term','post_format',NULL,NULL,NULL,NULL,'Image',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(249,'https://biomechanicseducation.com/tag/evidence/','57:755186a95dee8411fc433851adf882ee',117,'term','post_tag',NULL,NULL,NULL,NULL,'evidence',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(250,'https://biomechanicseducation.com/tag/exercise/','47:f7b33ab2ba72c740168cec7019802105',118,'term','post_tag',NULL,NULL,NULL,NULL,'exercise',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:07','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(251,'https://biomechanicseducation.com/tag/free/','53:05b16e75dff448236e5a555b1082b479',119,'term','post_tag',NULL,NULL,NULL,NULL,'free',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(252,'https://biomechanicseducation.com/tag/freely/','55:fffc8579c22c8a4bf0b395326a849c8f',120,'term','post_tag',NULL,NULL,NULL,NULL,'freely',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(253,'https://biomechanicseducation.com/tag/move/','53:582ae3a9d6ca7e44ccbea3980b891e56',121,'term','post_tag',NULL,NULL,NULL,NULL,'move',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(254,'https://biomechanicseducation.com/tag/pt/','41:f7f9a66d8fd891560f44e685be203115',122,'term','post_tag',NULL,NULL,NULL,NULL,'pt',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:07','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(255,'https://biomechanicseducation.com/tag/debate/','55:21fe39982e955e3cbcfcbf0a3e9337e6',123,'term','post_tag',NULL,NULL,NULL,NULL,'debate',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(256,'https://biomechanicseducation.com/tag/movement/','57:aa89e34229d1dfee16170cec05c25385',124,'term','post_tag',NULL,NULL,NULL,NULL,'movement',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:39:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(272,'https://biomechanicseducation.com/tag/assessment/','49:6f2d6ec171f70523c661e0558489ba76',125,'term','post_tag',NULL,NULL,NULL,NULL,'assessment',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:05','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(273,'https://biomechanicseducation.com/tag/biomechanical/','52:f94eb75e099ad7bf1978d4e2229443d2',126,'term','post_tag',NULL,NULL,NULL,NULL,'biomechanical',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:05','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(274,'https://biomechanicseducation.com/tag/coach/','44:77991e57b33ec54edd061ffba7552b9e',127,'term','post_tag',NULL,NULL,NULL,NULL,'COACH',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:05','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(275,'https://biomechanicseducation.com/tag/equine/','45:9b075fc377c26dff82552b0131b3841e',128,'term','post_tag',NULL,NULL,NULL,NULL,'EQUINE',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:05','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(276,'https://biomechanicseducation.com/tag/golf/','43:ca106c2c1d4c77b4ccc981c653a57cbb',129,'term','post_tag',NULL,NULL,NULL,NULL,'GOLF',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:05','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(277,'https://biomechanicseducation.com/tag/physio/','45:608de172d91613eb93b30499d5cbf7e3',130,'term','post_tag',NULL,NULL,NULL,NULL,'PHYSIO',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:05','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(278,'https://biomechanicseducation.com/tag/podiatrist/','49:4f005aeacfd0375ab9100b933b19a13a',131,'term','post_tag',NULL,NULL,NULL,NULL,'PODIATRIST',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(279,'https://biomechanicseducation.com/tag/riding/','45:d1a156a93b6064f668bf772be56f8fe6',132,'term','post_tag',NULL,NULL,NULL,NULL,'RIDING',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(280,'https://biomechanicseducation.com/tag/careers-in-biomechanics/','62:82b09fa1e9a02878f912dc319c3b3cf8',133,'term','post_tag',NULL,NULL,NULL,NULL,'CAREERS IN BIOMECHANICS',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(281,'https://biomechanicseducation.com/tag/difference/','49:5bf48dd57a9faccbfb384d422a7a5fd3',134,'term','post_tag',NULL,NULL,NULL,NULL,'DIFFERENCE',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(282,'https://biomechanicseducation.com/tag/wellbeing/','48:3f0b72e62c0287f75d1ec676b5806c8c',135,'term','post_tag',NULL,NULL,NULL,NULL,'WELLBEING',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(283,'https://biomechanicseducation.com/tag/biomechanics-principles/','72:2a1916a2ed088fa092cb0bb59f1fc551',136,'term','post_tag',NULL,NULL,NULL,NULL,'biomechanics principles',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(284,'https://biomechanicseducation.com/tag/capacity/','57:27543894368a0f9d8c72c374f9e8cfb3',137,'term','post_tag',NULL,NULL,NULL,NULL,'capacity',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(285,'https://biomechanicseducation.com/tag/control/','56:cd25c4899682babead78e1decdb7618a',138,'term','post_tag',NULL,NULL,NULL,NULL,'control',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(286,'https://biomechanicseducation.com/tag/function/','57:0f79cb8685548932c80a8fe104010fb4',139,'term','post_tag',NULL,NULL,NULL,NULL,'function',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 15:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(302,'https://biomechanicseducation.com/tag/performane/','59:160a2c3cd172ea34222e9c5f1e03f54d',140,'term','post_tag',NULL,NULL,NULL,NULL,'performane',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(303,'https://biomechanicseducation.com/tag/preparation/','60:fab0c609c78918bc98a278c5abef4018',141,'term','post_tag',NULL,NULL,NULL,NULL,'preparation',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(304,'https://biomechanicseducation.com/tag/pyramid/','56:ae9fab198e014adffe6ea7fbc20415d9',142,'term','post_tag',NULL,NULL,NULL,NULL,'pyramid',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(305,'https://biomechanicseducation.com/tag/understanding/','62:270877a18b860a15a380304974c87d58',143,'term','post_tag',NULL,NULL,NULL,NULL,'understanding',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(306,'https://biomechanicseducation.com/tag/position/','57:267a11e2777a5c493160fed19d9897d5',144,'term','post_tag',NULL,NULL,NULL,NULL,'position',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(307,'https://biomechanicseducation.com/tag/posture/','56:e0a367e4159cedbacdcfc3207ea4b839',145,'term','post_tag',NULL,NULL,NULL,NULL,'posture',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(308,'https://biomechanicseducation.com/tag/chartered/','58:02aac3352ac35b2ad0bec0a8d1aaa23a',146,'term','post_tag',NULL,NULL,NULL,NULL,'chartered',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(309,'https://biomechanicseducation.com/tag/good-practise/','62:ba6579943d87818677d567232a66fddb',147,'term','post_tag',NULL,NULL,NULL,NULL,'good practise',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(310,'https://biomechanicseducation.com/tag/professionalise/','64:320fde1e5cb0dc48b9591b10a52709c8',148,'term','post_tag',NULL,NULL,NULL,NULL,'professionalise',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(311,'https://biomechanicseducation.com/tag/status/','55:1796aa47f5c935a6a4ba5c7876c8a138',149,'term','post_tag',NULL,NULL,NULL,NULL,'status',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(312,'https://biomechanicseducation.com/tag/advanced-pt/','50:86323a8e14d928f4cab8765c652acb6d',150,'term','post_tag',NULL,NULL,NULL,NULL,'advanced pt',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(313,'https://biomechanicseducation.com/tag/intrinsic-biomechanics/','61:8a18d843d333aef821f150ee9503deb4',151,'term','post_tag',NULL,NULL,NULL,NULL,'intrinsic biomechanics',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:07',NULL,NULL),(314,'https://biomechanicseducation.com/tag/integrated-system/','66:0e5f4d2f0da7f36a0705c912078777ad',152,'term','post_tag',NULL,NULL,NULL,NULL,'integrated system',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(315,'https://biomechanicseducation.com/tag/pectoralis-minor/','65:d3f14dadd74a9f0491f3896cf7f45c33',153,'term','post_tag',NULL,NULL,NULL,NULL,'pectoralis minor',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(316,'https://biomechanicseducation.com/tag/shoulder/','47:d499682f02b6630618bd453f4f5d7d6d',154,'term','post_tag',NULL,NULL,NULL,NULL,'shoulder',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:09:06','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(317,'https://biomechanicseducation.com/?p=456','50:79b4db078cb8db206da3dcd5a3422dd6',456,'post','post',3,0,NULL,NULL,'What do you think&#8230;..?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-36-1.jpg',NULL,'36386','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-36-1.jpg','36386','featured-image','{\"width\":2016,\"height\":908,\"filesize\":360994,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-36-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2023/06/MicrosoftTeams-image-36-1.jpg\",\"size\":\"full\",\"id\":36386,\"alt\":\"\",\"pixels\":1830528,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-02-01 12:18:43',0),(318,'https://biomechanicseducation.com/?p=296','50:8bd856b4ad937b470c6a1a136dae0594',296,'post','post',3,0,NULL,NULL,'The Last 4 Days','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-02-02 11:10:11',0),(319,'https://biomechanicseducation.com/?p=267','50:45bd6bf4d1700d9d96d5eac64eec197b',267,'post','post',3,0,NULL,NULL,'Adductor Strain','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-02-04 09:52:59',0),(320,'https://biomechanicseducation.com/?p=293','50:0bccad07e647c8952228c13d1fc2617b',293,'post','post',3,0,NULL,NULL,'Nerve Tension?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-02-05 11:08:55',0),(321,'https://biomechanicseducation.com/?p=289','50:c690c7e500c7b5329e0806ef41dab6ee',289,'post','post',3,0,NULL,NULL,'Do You Love It?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-02-06 11:08:17',0),(322,'https://biomechanicseducation.com/?p=286','50:8b6e681df92582f052aee41477ca0d3d',286,'post','post',3,0,NULL,NULL,'Building &#038; Displaying Strength – There’s A Difference!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-02-11 11:06:22',0),(323,'https://biomechanicseducation.com/?p=164','50:e96930366ef8e83e14a28fc32dee3583',164,'post','post',3,0,NULL,NULL,'Hello world!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-03-05 14:37:06',0),(324,'https://biomechanicseducation.com/?p=556','50:673cba0bbf58e8ee7e706d76c15bddfd',556,'post','post',3,0,NULL,NULL,'Don&#8217;t Be Good..','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-03-09 08:37:56',0),(325,'https://biomechanicseducation.com/?p=561','50:4ef1325dee8a46da0c85b02e27788abf',561,'post','post',3,0,NULL,NULL,'Maura Knight is Biomechanics Coach™ of the Month!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-03-09 08:41:32',0),(326,'https://biomechanicseducation.com/?p=575','50:7978211aff9710beeda47f50cf575282',575,'post','post',3,0,NULL,NULL,'Do We Need To Massage The ITB?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2015-04-14-at-08.40.33.png',NULL,'569','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2015-04-14-at-08.40.33.png','569','featured-image','{\"width\":551,\"height\":491,\"filesize\":226140,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2015-04-14-at-08.40.33.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2016/03/Screen-Shot-2015-04-14-at-08.40.33.png\",\"size\":\"full\",\"id\":569,\"alt\":\"\",\"pixels\":270541,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-03-09 10:55:06',0),(327,'https://biomechanicseducation.com/?p=591','50:a150fd81c904f794c4f36967b0bddd3c',591,'post','post',3,0,NULL,NULL,'Health V’s Fitness &#8211; Can Being Fit Stop You Being Healthy?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/05/bewakoof-com-official-mtOMSpOWxRI-unsplash-scaled-1.jpg',NULL,'21887','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/05/bewakoof-com-official-mtOMSpOWxRI-unsplash-scaled-1.jpg','21887','featured-image','{\"width\":1681,\"height\":2560,\"filesize\":453082,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/05/bewakoof-com-official-mtOMSpOWxRI-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/05/bewakoof-com-official-mtOMSpOWxRI-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":21887,\"alt\":\"\",\"pixels\":4303360,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-03-11 08:31:58',0),(328,'https://biomechanicseducation.com/?p=595','50:6d23ec9e9165520cc6505bbee200dd26',595,'post','post',3,0,NULL,NULL,'Golf Biomechanics Workshop!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-03-13 07:40:04',0),(329,'https://biomechanicseducation.com/?p=616','50:6e0cd7335990cee59f4c992989ce71ba',616,'post','post',3,0,NULL,NULL,'The 10 Minute Squat Test&#8230;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-16-at-13.50.14.png',NULL,'644','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-16-at-13.50.14.png','644','featured-image','{\"width\":884,\"height\":464,\"filesize\":491735,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2016/03/Screen-Shot-2016-03-16-at-13.50.14.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2016/03/Screen-Shot-2016-03-16-at-13.50.14.png\",\"size\":\"full\",\"id\":644,\"alt\":\"\",\"pixels\":410176,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-03-15 11:35:21',0),(330,'https://biomechanicseducation.com/?p=647','50:1a1a023a7f1355c8807b1a2df84a2fba',647,'post','post',3,0,NULL,NULL,'Bother Me&#8230;..PLEASE!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-03-18 06:38:24',0),(331,'https://biomechanicseducation.com/?p=651','50:972c8f1431ee1aac1aa71d0a9824ab7d',651,'post','post',3,0,NULL,NULL,'The Squat Part 1','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-03-22 07:29:16',0),(332,'https://biomechanicseducation.com/tag/compensation/','61:d94d7e5603983742558a68d0f1e94bfc',155,'term','post_tag',NULL,NULL,NULL,NULL,'compensation',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(333,'https://biomechanicseducation.com/tag/load-management/','64:94a7f96839a559652079f5872b12f9a4',156,'term','post_tag',NULL,NULL,NULL,NULL,'load management',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(334,'https://biomechanicseducation.com/tag/nhs/','52:7255f7269e30740b3a84622c7a6669b5',157,'term','post_tag',NULL,NULL,NULL,NULL,'NHS',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(335,'https://biomechanicseducation.com/tag/professional/','61:260eef7a2b7c67d030454b48f0800020',158,'term','post_tag',NULL,NULL,NULL,NULL,'professional',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(336,'https://biomechanicseducation.com/tag/regulation/','59:2078d1fa42c2ab0bd46c0178834db81b',159,'term','post_tag',NULL,NULL,NULL,NULL,'regulation',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(337,'https://biomechanicseducation.com/tag/tissue-tolerance/','65:59e4dac792c94b70a3cd27ea12d948c1',160,'term','post_tag',NULL,NULL,NULL,NULL,'tissue tolerance',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(338,'https://biomechanicseducation.com/tag/active/','55:ebe0f35a4fbd27db31973b06cce15211',161,'term','post_tag',NULL,NULL,NULL,NULL,'active',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(339,'https://biomechanicseducation.com/tag/diabetes/','57:564102be62204512ae5d8d3e2d924df8',162,'term','post_tag',NULL,NULL,NULL,NULL,'diabetes',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(340,'https://biomechanicseducation.com/tag/gp-referral/','60:8f060744a7241e3cf7b61a1734eaaf50',163,'term','post_tag',NULL,NULL,NULL,NULL,'gp referral',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(341,'https://biomechanicseducation.com/tag/mental-health/','52:0befa60123fd505cc0360f6b737e7d09',164,'term','post_tag',NULL,NULL,NULL,NULL,'mental health',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2025-01-20 16:01:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:56',NULL,NULL),(342,'https://biomechanicseducation.com/tag/more-clients/','61:b12baed0635f8d5cc49c57a3fcff86e3',165,'term','post_tag',NULL,NULL,NULL,NULL,'more clients',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(343,'https://biomechanicseducation.com/tag/obesity/','56:be7783563cae6fd3df7925bf66bcb058',166,'term','post_tag',NULL,NULL,NULL,NULL,'obesity',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(344,'https://biomechanicseducation.com/tag/athletic/','57:97fa7ee3c6ad63edcdf38405570b8165',167,'term','post_tag',NULL,NULL,NULL,NULL,'athletic',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(345,'https://biomechanicseducation.com/tag/forces/','55:d8c47c5b1e3c19f30a4a4b119903029c',168,'term','post_tag',NULL,NULL,NULL,NULL,'forces',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(346,'https://biomechanicseducation.com/tag/gabbett/','56:f312cd11bbe33e0f4cd687e2422ea348',169,'term','post_tag',NULL,NULL,NULL,NULL,'gabbett',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(347,'https://biomechanicseducation.com/?p=654','50:21fa7343ba1aef3121371ba05caf29c7',654,'post','post',3,0,NULL,NULL,'Marketing For A Biomechanics Coach™','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-03-23 10:27:27',0),(348,'https://biomechanicseducation.com/?p=674','50:7492f1bfeccff049014ec2d155db03fd',674,'post','post',3,0,NULL,NULL,'Why Are You Here?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-03-25 07:44:59',0),(349,'https://biomechanicseducation.com/?p=677','50:88dc7c8b59c225de66ab60dcea34d77d',677,'post','post',3,0,NULL,NULL,'Strength Summit Report','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-03-26 20:03:06',0),(350,'https://biomechanicseducation.com/?p=682','50:349afcbb2c61c8e6df2938b02610bf73',682,'post','post',3,0,NULL,NULL,'Test Your Nerve','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:38','2016-03-30 08:11:53',0),(351,'https://biomechanicseducation.com/?p=702','50:f267c091a7c320da618722d1903280d0',702,'post','post',3,0,NULL,NULL,'Melt Mars Bars Over Crisps!?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-04-03 12:14:38',0),(352,'https://biomechanicseducation.com/?p=705','50:31fe730764e08d06eac70039b7e37267',705,'post','post',3,0,NULL,NULL,'We NEED Shock!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-04-04 09:10:01',0),(353,'https://biomechanicseducation.com/?p=708','50:afdd0cf839fe3cf253264e3cb1c66cbe',708,'post','post',3,0,NULL,NULL,'You Are My Hero!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-04-06 08:28:56',0),(354,'https://biomechanicseducation.com/?p=711','50:0610beb085ed8dfba41b7558c31f745a',711,'post','post',3,0,NULL,NULL,'The Squat Part 2/6','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.www.biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-08-at-20.57.10-300x111.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.www.biomechanicseducation.com/wp-content/uploads/2016/04/Screen-Shot-2016-04-08-at-20.57.10-300x111.png',NULL,'first-content-image',NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-04-09 05:31:20',0),(355,'https://biomechanicseducation.com/?p=721','50:1f4c0e6aed4622183fb5042d133aad83',721,'post','post',3,0,NULL,NULL,'Excitement Amplified!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-04-11 11:49:38',0),(356,'https://biomechanicseducation.com/?p=734','50:19e4195fca82fabddc18c830f533b462',734,'post','post',3,0,NULL,NULL,'100 Push Up&#8217;s Daily For 20yrs','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-04-13 04:47:53',0),(357,'https://biomechanicseducation.com/?p=758','50:85e07148e55635f274733886e2d8f48f',758,'post','post',3,0,NULL,NULL,'How Intelligent Are You?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-04-15 06:48:53',0),(358,'https://biomechanicseducation.com/the-evolution-of-functional-training/','71:248669910d88d319059a59a0caead195',761,'post','post',3,0,NULL,'Explore the evolution of personal training, functional training flaws, and biomechanics for safer, effective workouts.','The Evolution of Functional Training','publish',NULL,0,NULL,NULL,NULL,'Functional training',71,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/04/core-training-1.webp',NULL,'38316','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/04/core-training-1.webp','38316','featured-image','{\"width\":900,\"height\":600,\"filesize\":30556,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/04/core-training-1.webp\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/04/core-training-1.webp\",\"size\":\"full\",\"id\":38316,\"alt\":\"\",\"pixels\":540000,\"type\":\"image/webp\"}',1,NULL,NULL,'2024-07-23 16:39:06','2025-01-20 16:04:25',1,NULL,NULL,NULL,NULL,0,10,2,'2025-01-20 16:04:25','2016-04-20 13:44:09',0),(359,'https://biomechanicseducation.com/?p=765','50:13803997e748358a9de5fc5b2ec6fae5',765,'post','post',3,0,NULL,NULL,'Want A Sneak Peek..?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-04-22 05:04:17',0),(360,'https://biomechanicseducation.com/?p=769','50:43082674ca22c28e11d467f5a7845ef0',769,'post','post',3,0,NULL,NULL,'His Theory Report Made Public!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-04-24 05:35:00',0),(361,'https://biomechanicseducation.com/?p=803','50:b401b4cbc13411ff01f728721e6d2014',803,'post','post',3,0,NULL,NULL,'Plantar Fasciitis &#8211; What Is It?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-04-27 15:36:30',0),(362,'https://biomechanicseducation.com/tag/load-managment/','63:d989c9519fc09a37f6c6a67f9228616d',170,'term','post_tag',NULL,NULL,NULL,NULL,'load managment',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(363,'https://biomechanicseducation.com/tag/loads/','54:6f18b124e1964b113d5d91bdb74e1bb4',171,'term','post_tag',NULL,NULL,NULL,NULL,'loads',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(364,'https://biomechanicseducation.com/tag/measure/','56:d09360ef6961085caa9e5fb451586556',172,'term','post_tag',NULL,NULL,NULL,NULL,'measure',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(365,'https://biomechanicseducation.com/tag/spreadsheet/','60:7c1c80280c23d726a923904ebeeb950c',173,'term','post_tag',NULL,NULL,NULL,NULL,'spreadsheet',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(366,'https://biomechanicseducation.com/tag/tim-gabbett/','60:0c16ef0032da3f42e020ff45de4bcd11',174,'term','post_tag',NULL,NULL,NULL,NULL,'tim gabbett',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(367,'https://biomechanicseducation.com/tag/muscles/','46:0cfb272e4a397411ff537ff0718d65fa',175,'term','post_tag',NULL,NULL,NULL,NULL,'muscles',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2025-01-20 16:01:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:56',NULL,NULL),(368,'https://biomechanicseducation.com/tag/nerves/','45:59c77dd2035bb8b3a2ae18054c656310',176,'term','post_tag',NULL,NULL,NULL,NULL,'nerves',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2025-01-20 16:01:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:56',NULL,NULL),(369,'https://biomechanicseducation.com/tag/neuromuscular/','52:bb95d20b29b028bdb40a8db79c7fe717',177,'term','post_tag',NULL,NULL,NULL,NULL,'neuromuscular',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2025-01-20 16:01:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:56',NULL,NULL),(370,'https://biomechanicseducation.com/tag/progression/','50:d5ba0e1a048b8b7421326be16848fc59',178,'term','post_tag',NULL,NULL,NULL,NULL,'progression',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2025-01-20 16:01:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:56',NULL,NULL),(371,'https://biomechanicseducation.com/tag/listen/','55:7322bb3c9226cc1191651ab1535595bd',179,'term','post_tag',NULL,NULL,NULL,NULL,'listen',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(372,'https://biomechanicseducation.com/tag/power/','54:4d1e3fc41bae53b184487a55df4b7eb5',180,'term','post_tag',NULL,NULL,NULL,NULL,'power',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(373,'https://biomechanicseducation.com/tag/words/','54:aff19190d28ffcb7d707be2b8302dddd',181,'term','post_tag',NULL,NULL,NULL,NULL,'words',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(374,'https://biomechanicseducation.com/tag/pronator/','57:7c1055c2b3108e2639cace55e19f1889',182,'term','post_tag',NULL,NULL,NULL,NULL,'pronator',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(375,'https://biomechanicseducation.com/tag/supinator/','58:8d14a88765b06e151c51c81da91e2693',183,'term','post_tag',NULL,NULL,NULL,NULL,'supinator',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(376,'https://biomechanicseducation.com/tag/exercsie/','57:fec0660459656832ecfa10bdf96a1b64',184,'term','post_tag',NULL,NULL,NULL,NULL,'exercsie',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(377,'https://biomechanicseducation.com/?p=813','50:656b8de768415809b9b86f87634fef54',813,'post','post',3,0,NULL,NULL,'Weight Shift, Piriformis &#038; Lots of Dollars!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-04-29 10:22:07',0),(378,'https://biomechanicseducation.com/?p=826','50:a2d371f0703a618f0a5b81d5a586daac',826,'post','post',3,0,NULL,NULL,'&#8220;I Would Like To Be A Traffic Warden&#8221;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-05-02 06:42:17',0),(379,'https://biomechanicseducation.com/?p=829','50:a1af74cefac9da719f02bd4cbc982d75',829,'post','post',3,0,NULL,NULL,'The Squat Part 3/6','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-05-04 09:32:57',0),(380,'https://biomechanicseducation.com/?p=853','50:6b805670e44857d2bb2801f15a7f0761',853,'post','post',3,0,NULL,NULL,'What? When? Why?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-05-06 07:19:17',0),(381,'https://biomechanicseducation.com/?p=856','50:4dc8ee634712c01fa277c083d20a8e63',856,'post','post',3,0,NULL,NULL,'The 4 &#8216;Legs of Life&#8217;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-05-09 20:23:14',0),(382,'https://biomechanicseducation.com/?p=873','50:42c1209d0f9a98abf2e61613a7348bfd',873,'post','post',3,0,NULL,NULL,'How Professional Are You?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-05-12 16:24:04',0),(383,'https://biomechanicseducation.com/?p=936','50:f8e686294dd51650c6649cce7a27697f',936,'post','post',3,0,NULL,NULL,'Where Form Meets Function!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-05-15 05:34:32',0),(384,'https://biomechanicseducation.com/?p=940','50:ec11e27584d0bbdc3e30bce8719ae805',940,'post','post',3,0,NULL,NULL,'Assumptions','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-05-17 09:26:25',0),(385,'https://biomechanicseducation.com/?p=1014','51:5696ceed74243981f6ddb74b5e8bd08f',1014,'post','post',3,0,NULL,NULL,'Stop Stretching?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-05-22 10:34:12',0),(386,'https://biomechanicseducation.com/?p=1017','51:4801f57776a8edbf68f706ee5a57a577',1017,'post','post',3,0,NULL,NULL,'Are You Normalised?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-05-24 08:46:42',0),(387,'https://biomechanicseducation.com/?p=1023','51:f8f8885c194f829573daca9a5195ca45',1023,'post','post',3,0,NULL,NULL,'The Squat Part 4/6','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-05-31 07:50:36',0),(388,'https://biomechanicseducation.com/?p=1026','51:858bf91c1f5636264015ba9adf176fe5',1026,'post','post',3,0,NULL,NULL,'&#8220;Revolutionised My Approach&#8221;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-06-02 06:28:15',0),(389,'https://biomechanicseducation.com/?p=1029','51:7d0f0b4941def930104f95456937f737',1029,'post','post',3,0,NULL,NULL,'Pelvic Function Research Papers Simplified','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-06-05 06:30:42',0),(390,'https://biomechanicseducation.com/?p=1034','51:07dfcf2b55b57ccc488f344355f0ff0f',1034,'post','post',3,0,NULL,NULL,'Just Ridiculous!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-06-07 08:48:50',0),(391,'https://biomechanicseducation.com/?p=1038','51:9c0c6dd5dff947f36fa462f3360c66e3',1038,'post','post',3,0,NULL,NULL,'Repetitive Motion','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'34810','featured-image',NULL,NULL,NULL,'34810','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-06-09 06:04:32',0),(392,'https://biomechanicseducation.com/tag/jump/','53:8871605611c4d8a305a37ec1ae5569c8',185,'term','post_tag',NULL,NULL,NULL,NULL,'jump',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(393,'https://biomechanicseducation.com/tag/knee/','53:a45cec330e45abe135ce71b68f27515f',186,'term','post_tag',NULL,NULL,NULL,NULL,'knee',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(394,'https://biomechanicseducation.com/tag/medial/','55:8c69b359d1cd1b1b332ccd0f78b7904a',187,'term','post_tag',NULL,NULL,NULL,NULL,'medial',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(395,'https://biomechanicseducation.com/tag/run/','52:f9608e410fa6a54be2d13971025c4849',188,'term','post_tag',NULL,NULL,NULL,NULL,'run',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(396,'https://biomechanicseducation.com/tag/valgus/','55:f5eb40c46f93344b276c7e15f2d60df6',189,'term','post_tag',NULL,NULL,NULL,NULL,'valgus',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(397,'https://biomechanicseducation.com/tag/cpd/','52:9edf4a24211853fd7b38690cc3d481b6',190,'term','post_tag',NULL,NULL,NULL,NULL,'CPD',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(398,'https://biomechanicseducation.com/tag/experience/','59:3c185ac011c30578f8f87ea4a2550f8d',191,'term','post_tag',NULL,NULL,NULL,NULL,'experience',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(399,'https://biomechanicseducation.com/tag/face-to-face/','61:80ef6d71c3ac30b40b9713404f561abc',192,'term','post_tag',NULL,NULL,NULL,NULL,'face to face',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(400,'https://biomechanicseducation.com/tag/learning/','57:78e061bb0bab94c5022e1bf791dee3e2',193,'term','post_tag',NULL,NULL,NULL,NULL,'learning',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(401,'https://biomechanicseducation.com/tag/online/','55:194f7c6083f9e8b64bc83f2d5c26e6e9',194,'term','post_tag',NULL,NULL,NULL,NULL,'online',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(402,'https://biomechanicseducation.com/tag/median/','55:e5e644e81dcae9123980ab86631205e1',195,'term','post_tag',NULL,NULL,NULL,NULL,'median',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(403,'https://biomechanicseducation.com/tag/mobilisations/','62:75a767fd78c103d53cdc5dc348a20fde',196,'term','post_tag',NULL,NULL,NULL,NULL,'mobilisations',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(404,'https://biomechanicseducation.com/tag/nerve/','54:277f586433230c21c2fbcbf74136c7bf',197,'term','post_tag',NULL,NULL,NULL,NULL,'nerve',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(405,'https://biomechanicseducation.com/tag/radial/','55:87b84234c92caa5f1e0814fbff844fd6',198,'term','post_tag',NULL,NULL,NULL,NULL,'radial',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(406,'https://biomechanicseducation.com/tag/sciatic/','56:6f009a01289ee494043dd8e9d57149c8',199,'term','post_tag',NULL,NULL,NULL,NULL,'sciatic',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 16:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(407,'https://biomechanicseducation.com/?p=1044','51:586ecec94cd0b458da1acbbca4bc48c2',1044,'post','post',3,0,NULL,NULL,'Is Personal Training &#8216;Personal&#8217; Enough?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-06-12 06:38:29',0),(408,'https://biomechanicseducation.com/?p=1049','51:b5eae14dda2087f73d5d7e20297a4286',1049,'post','post',3,0,NULL,NULL,'Evidence Based Tyranny&#8230;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-06-14 10:34:36',0),(409,'https://biomechanicseducation.com/?p=1054','51:02f7b4c820bcb4d987dde40ca0537141',1054,'post','post',3,0,NULL,NULL,'OMG CONFIRMED!!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-06-16 06:05:09',0),(410,'https://biomechanicseducation.com/?p=1060','51:ce92454aed9cfe01614bc6b95f530977',1060,'post','post',3,0,NULL,NULL,'Worst Kept Secret In Our Industry ','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-06-20 05:05:32',0),(411,'https://biomechanicseducation.com/?p=1064','51:740558bc3948f32c2b9a24fafbccf7ce',1064,'post','post',3,0,NULL,NULL,'The Squat Part 5/6','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-06-22 08:17:58',0),(412,'https://biomechanicseducation.com/?p=1067','51:dca2dc425b9fc4ad10bb89dc934b6a51',1067,'post','post',3,0,NULL,NULL,'Well I Could Literally Explode!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-06-24 06:01:28',0),(413,'https://biomechanicseducation.com/?p=1072','51:550558a4c50da53a90340ce4779c3afe',1072,'post','post',3,0,NULL,NULL,'Largest Team of Qualified Biomechanics Coaches™ ','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-06-26 05:20:08',0),(414,'https://biomechanicseducation.com/?p=1077','51:40fddb6a647b5df362d8cef0ff760218',1077,'post','post',3,0,NULL,NULL,'Did I Say Ben Coomber &#8230;..','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-06-28 08:28:11',0),(415,'https://biomechanicseducation.com/?p=1083','51:9dccbf9fa5be11c91f24b928346b9b19',1083,'post','post',3,0,NULL,NULL,'PureGym PureFun!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:37','2016-06-30 08:11:26',0),(416,'https://biomechanicseducation.com/?p=1087','51:f9a8ef3d653cfcc988f1324bd2ba1581',1087,'post','post',3,0,NULL,NULL,'Mark Blower is Biomechanics Coach™ of the Month July!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-07-04 12:58:28',0),(417,'https://biomechanicseducation.com/?p=1093','51:2d1de63a35d2d3b79d82aeaae9e8ab91',1093,'post','post',3,0,NULL,NULL,'You Ski?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-07-08 10:20:19',0),(418,'https://biomechanicseducation.com/?p=1098','51:4169e5c73d939a60536bccb5569768c3',1098,'post','post',3,0,NULL,NULL,'A True Industry Leader','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-07-10 10:30:53',0),(419,'https://biomechanicseducation.com/?p=1101','51:1492da65c3effdf64bfbc9cafca2c4f9',1101,'post','post',3,0,NULL,NULL,'Sorry,  Biomechanics Coaches™ DON’T Promise Pain Relief!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-07-12 08:15:42',0),(420,'https://biomechanicseducation.com/?p=1108','51:6b2a5c27d7f95673b6ac85f7794d0b05',1108,'post','post',3,0,NULL,NULL,'The Squat Part 6/6 &#8211; The Conclusion &#038; References','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-07-14 08:00:41',0),(421,'https://biomechanicseducation.com/?p=1114','51:21086def7db2c279c74561f37c175e66',1114,'post','post',3,0,NULL,NULL,'Felt Like I Belonged','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-07-16 15:00:58',0),(422,'https://biomechanicseducation.com/tag/ulna/','53:c161d1eaba866508b4f8713cf8a45851',200,'term','post_tag',NULL,NULL,NULL,NULL,'ulna',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:09','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(423,'https://biomechanicseducation.com/tag/hinge/','54:42bab02c1205e8ff8ccef9372213513e',201,'term','post_tag',NULL,NULL,NULL,NULL,'hinge',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(424,'https://biomechanicseducation.com/tag/kettlebell/','59:1e30a87281d00afdd3dec544ac182974',202,'term','post_tag',NULL,NULL,NULL,NULL,'KETTLEBELL',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(425,'https://biomechanicseducation.com/tag/swing/','54:60e4b30992882bf011d74dc2a579954e',203,'term','post_tag',NULL,NULL,NULL,NULL,'swing',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(426,'https://biomechanicseducation.com/tag/failure/','56:ce2ddfa4c2c1875b5c786feca5e18446',204,'term','post_tag',NULL,NULL,NULL,NULL,'failure',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(427,'https://biomechanicseducation.com/tag/lessons/','56:ff9e7c7bd6499130ab1cf4b678285022',205,'term','post_tag',NULL,NULL,NULL,NULL,'lessons',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(428,'https://biomechanicseducation.com/tag/value/','54:fdbd13e9845f62dcc2dc5fc35b57e99c',206,'term','post_tag',NULL,NULL,NULL,NULL,'value',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(429,'https://biomechanicseducation.com/tag/aeroplane/','48:d6237b8452cabe336e5a490bcadb3154',207,'term','post_tag',NULL,NULL,NULL,NULL,'aeroplane',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2025-01-20 16:01:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:56',NULL,NULL),(430,'https://biomechanicseducation.com/tag/crane/','44:f6386b936bbfe4869dbd606b7b8e4f9f',208,'term','post_tag',NULL,NULL,NULL,NULL,'crane',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2025-01-20 16:01:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:56',NULL,NULL),(431,'https://biomechanicseducation.com/tag/romanian-deadlift/','56:171e891c6655ab875a2ef74e48f2ec76',209,'term','post_tag',NULL,NULL,NULL,NULL,'romanian deadlift',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2025-01-20 16:01:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:56',NULL,NULL),(432,'https://biomechanicseducation.com/tag/sumo/','43:b65044b83247386b927e183ad3ee76e6',210,'term','post_tag',NULL,NULL,NULL,NULL,'sumo',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2025-01-20 16:01:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:56',NULL,NULL),(433,'https://biomechanicseducation.com/tag/adductor-magnus/','64:9f09a69659ffa023ca082ec05237cb7b',211,'term','post_tag',NULL,NULL,NULL,NULL,'adductor magnus',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(434,'https://biomechanicseducation.com/tag/hike/','53:69c93c18602cc94f5ca229eb121dfdbb',212,'term','post_tag',NULL,NULL,NULL,NULL,'HIKE',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(435,'https://biomechanicseducation.com/tag/national-take-a-hike-day/','73:2006c537d1cc424d0c8c82243ce7e627',213,'term','post_tag',NULL,NULL,NULL,NULL,'NATIONAL TAKE A HIKE DAY',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(436,'https://biomechanicseducation.com/tag/walk/','53:5f33ee35664c068917eb7377fddd783e',214,'term','post_tag',NULL,NULL,NULL,NULL,'WALK',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:09:10','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(437,'https://biomechanicseducation.com/?p=1118','51:c6d863039f7635a81aa079d10965dc55',1118,'post','post',3,0,NULL,NULL,'Thank You Trolls!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-07-19 08:00:41',0),(438,'https://biomechanicseducation.com/?p=1124','51:bf3c01866babeb78deb753cc5f2e5e7d',1124,'post','post',3,0,NULL,NULL,'The Franklin Method','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-07-22 06:37:58',0),(439,'https://biomechanicseducation.com/?p=1128','51:d817fc9716c1982500da845469f65fb6',1128,'post','post',3,0,NULL,NULL,'Education Is Rubbish!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-07-25 07:42:41',0),(440,'https://biomechanicseducation.com/?p=1144','51:35eb5de8c526f8b76d9144e74cf2e5a6',1144,'post','post',3,0,NULL,NULL,'Sharing My Sensei','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-07-28 09:05:05',0),(441,'https://biomechanicseducation.com/?p=1166','51:d48262e86f7f5964e0b681fa2475a999',1166,'post','post',3,0,NULL,NULL,'Movement &#038; Fitness Daft!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-08-02 05:13:39',0),(442,'https://biomechanicseducation.com/?p=1183','51:ece7bb48b706a9dccb58e41bd1ce7dbb',1183,'post','post',3,0,NULL,NULL,'SHE&#8217;S BACK!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-08-07 18:32:36',0),(443,'https://biomechanicseducation.com/?p=1188','51:4de15a293d456d020e031dd3bef77404',1188,'post','post',3,0,NULL,NULL,'Lack of Confidence','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-08-10 06:23:37',0),(444,'https://biomechanicseducation.com/?p=1193','51:eafef167782091ba1e89b207afac69b9',1193,'post','post',3,0,NULL,NULL,'A Message From Fatty&#8230;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-08-12 06:13:41',0),(445,'https://biomechanicseducation.com/?p=1196','51:c8cdfd619b9db3e7857c70963292961b',1196,'post','post',3,0,NULL,NULL,'My Mind Was Blown..','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-08-15 16:58:08',0),(446,'https://biomechanicseducation.com/?p=1219','51:818a5d13df7e39869b21affe88f6cda8',1219,'post','post',3,0,NULL,NULL,'Remedial Gymnastics','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-08-19 11:42:03',0),(447,'https://biomechanicseducation.com/?p=1222','51:926bc7614c093c558101c867c35551a6',1222,'post','post',3,0,NULL,NULL,'Unwritten Grace','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-08-22 20:18:46',0),(448,'https://biomechanicseducation.com/?p=1225','51:815d62710da406e936817ede22a15996',1225,'post','post',3,0,NULL,NULL,'&#8220;It&#8217;s Right In Front Of Your Nose&#8221;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-08-24 08:32:15',0),(449,'https://biomechanicseducation.com/?p=1231','51:10c482314070246690e8e19332d79980',1231,'post','post',3,0,NULL,NULL,'Back Pain Playing Golf?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-08-26 07:02:02',0),(450,'https://biomechanicseducation.com/?p=1234','51:db30e3e0db19b3ea108ca4987e6dd64e',1234,'post','post',3,0,NULL,NULL,'Feeling Dead Bodies!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-08-28 06:37:54',0),(451,'https://biomechanicseducation.com/?p=1238','51:2f5d116ffbaadf39a61342ba951267d9',1238,'post','post',3,0,NULL,NULL,'The Big Cheese Society','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-08-31 05:52:28',0),(452,'https://biomechanicseducation.com/tag/tgu/','52:9300b825f18a4ea6ca6368a461290d88',215,'term','post_tag',NULL,NULL,NULL,NULL,'TGU',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(453,'https://biomechanicseducation.com/tag/turkish-get-up/','63:be21f1934230c6d3e05377c1eff8fe64',216,'term','post_tag',NULL,NULL,NULL,NULL,'TURKISH GET UP',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(454,'https://biomechanicseducation.com/tag/mark-laws/','58:d117dfb404e4b480ad2cf9bfb373e426',217,'term','post_tag',NULL,NULL,NULL,NULL,'mark laws',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(455,'https://biomechanicseducation.com/tag/perfect-day/','60:1f50c113dd60e54048a0cdcbe34d0522',218,'term','post_tag',NULL,NULL,NULL,NULL,'perfect day',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(456,'https://biomechanicseducation.com/tag/triangle/','57:e683f64edf41307aaea3f2508966f232',219,'term','post_tag',NULL,NULL,NULL,NULL,'TRIANGLE',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(457,'https://biomechanicseducation.com/tag/windmill/','57:a8c5560252a39fe4b3d06b3b49fc7f8c',220,'term','post_tag',NULL,NULL,NULL,NULL,'WINDMILL',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(458,'https://biomechanicseducation.com/tag/business/','57:839bc779e4483be788940cfc8961d092',221,'term','post_tag',NULL,NULL,NULL,NULL,'business',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(459,'https://biomechanicseducation.com/tag/e-myth/','55:9fcc1b2a0d7e1e4b7e0f70441f2cc13f',222,'term','post_tag',NULL,NULL,NULL,NULL,'e myth',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(460,'https://biomechanicseducation.com/tag/end-goal/','57:605521354e04b10e93b4cade3ffb5ef8',223,'term','post_tag',NULL,NULL,NULL,NULL,'end goal',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(461,'https://biomechanicseducation.com/tag/michael-gerber/','63:8599dc28ad4a39415a3b0fcbc60de861',224,'term','post_tag',NULL,NULL,NULL,NULL,'michael gerber',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(462,'https://biomechanicseducation.com/tag/primary-aim/','60:3074db83c0562eff2574cfc264b47719',225,'term','post_tag',NULL,NULL,NULL,NULL,'primary aim',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(463,'https://biomechanicseducation.com/tag/brian-tracy/','60:bfe121792e1c17b79d8a906a88507529',226,'term','post_tag',NULL,NULL,NULL,NULL,'brian tracy',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(464,'https://biomechanicseducation.com/tag/time-management/','64:7c963b45da6e88aadc059bc78b61c430',227,'term','post_tag',NULL,NULL,NULL,NULL,'time management',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(465,'https://biomechanicseducation.com/tag/add-vlaue/','58:0f47544f395374c6dcd6655a3119970c',228,'term','post_tag',NULL,NULL,NULL,NULL,'add vlaue',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(466,'https://biomechanicseducation.com/tag/adherence/','58:117fe2c78db3b37cd346333956c9d497',229,'term','post_tag',NULL,NULL,NULL,NULL,'adherence',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:24:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(467,'https://biomechanicseducation.com/?p=1241','51:81dd88008b764040d97e970953a5b187',1241,'post','post',3,0,NULL,NULL,'Lee Confesses His Secret..','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:39:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-09-02 08:17:13',0),(468,'https://biomechanicseducation.com/?p=1245','51:b97c7aa0de0c67fbed7a0b9a15ae32e6',1245,'post','post',3,0,NULL,NULL,'DOH!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:39:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-09-05 14:00:14',0),(469,'https://biomechanicseducation.com/?p=1255','51:521051ad88da9620b11161f7296e109f',1255,'post','post',3,0,NULL,NULL,'Game Changer!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:39:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-09-09 06:14:27',0),(470,'https://biomechanicseducation.com/?p=1261','51:b70aed03cd458a9a3eec3907d8a6dbb7',1261,'post','post',3,0,NULL,NULL,'Can You Survive The Industry..?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:39:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-09-13 05:37:44',0),(471,'https://biomechanicseducation.com/?p=1264','51:e3529e09369f7bd48475e7b3a4d5dc9b',1264,'post','post',3,0,NULL,NULL,'It&#8217;s Fatty Again..','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:39:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-09-14 07:33:07',0),(472,'https://biomechanicseducation.com/?p=1268','51:23c9257b2ba770873f5a273f827e85d6',1268,'post','post',3,0,NULL,NULL,'She Hoovered My Head!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/07/IMG_6257-1.jpeg',NULL,'28733','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/07/IMG_6257-1.jpeg','28733','featured-image','{\"width\":1272,\"height\":1125,\"filesize\":263053,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/07/IMG_6257-1.jpeg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/07/IMG_6257-1.jpeg\",\"size\":\"full\",\"id\":28733,\"alt\":\"\",\"pixels\":1431000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 17:39:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-09-16 06:36:59',0),(473,'https://biomechanicseducation.com/?p=1274','51:83a3c1741d38d3c128e0649f732ca5e3',1274,'post','post',3,0,NULL,NULL,'Wanting to &#8216;Caveman Squat&#8217;&#8230;&#8230;.!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2016/09/Screenshot-2023-02-07-at-15.05.56-1.png',NULL,'35837','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2016/09/Screenshot-2023-02-07-at-15.05.56-1.png','35837','featured-image','{\"width\":1144,\"height\":326,\"filesize\":477103,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2016/09/Screenshot-2023-02-07-at-15.05.56-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2016/09/Screenshot-2023-02-07-at-15.05.56-1.png\",\"size\":\"full\",\"id\":35837,\"alt\":\"\",\"pixels\":372944,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 17:39:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-09-21 07:50:57',0),(474,'https://biomechanicseducation.com/?p=1278','51:7c245bcc5a53184a457762a9507efb6d',1278,'post','post',3,0,NULL,NULL,'FREE Coffee &#038; Water!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:39:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-09-25 05:50:17',0),(475,'https://biomechanicseducation.com/?p=1311','51:5b410edc5771fb57649577018e08cc97',1311,'post','post',3,0,NULL,NULL,'He&#8217;s A Stooge!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:39:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-09-27 05:13:33',0),(476,'https://biomechanicseducation.com/?p=1315','51:5b9291b737640a3068acc7ee31b240c2',1315,'post','post',3,0,NULL,NULL,'YUP Check Out Ma Boys!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:39:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-09-29 06:55:58',0),(477,'https://biomechanicseducation.com/?p=1319','51:6ded8b79fcce80c59d09c6d23018fb0c',1319,'post','post',3,0,NULL,NULL,'What do Les Mills, Premier Inn and Crunchy McFlurry have in common?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'36690','featured-image',NULL,NULL,NULL,'36690','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 17:39:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-10-01 04:55:31',0),(478,'https://biomechanicseducation.com/?p=1325','51:19afb552f36d2d9ab2f0a7fe70dbcf86',1325,'post','post',3,0,NULL,NULL,'YOU seriously missed out&#8230;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:39:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-10-10 18:56:48',0),(479,'https://biomechanicseducation.com/?p=1333','51:9c0a43de4257b5de1f30dc703a4dd5e1',1333,'post','post',3,0,NULL,NULL,'Post-contraction Sensory Discharge','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'34919','featured-image',NULL,NULL,NULL,'34919','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-10-14 06:07:00',0),(480,'https://biomechanicseducation.com/?p=1337','51:063a47cc035066ff626801c364994d2f',1337,'post','post',3,0,NULL,NULL,'6 Tips GUARANTEED To Improve Your Intrinsic Biomechanics!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-10-17 05:44:44',0),(481,'https://biomechanicseducation.com/?p=1342','51:25156d95eab473c453e808c0e9c7ca7f',1342,'post','post',3,0,NULL,NULL,'Kinesio Tape Like A &#8216;Pro&#8217;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-10-19 07:44:34',0),(482,'https://biomechanicseducation.com/tag/clients/','56:3c2c9d596eb93a8d6e86f82d79c87ac4',230,'term','post_tag',NULL,NULL,NULL,NULL,'clients',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(483,'https://biomechanicseducation.com/tag/therapy/','46:cccb333afdbdf1b095dc9650a8ad5294',231,'term','post_tag',NULL,NULL,NULL,NULL,'therapy',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(484,'https://biomechanicseducation.com/tag/runner/','55:4e3f1bed780e320b12d41922d9e6472b',232,'term','post_tag',NULL,NULL,NULL,NULL,'runner',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(485,'https://biomechanicseducation.com/tag/beth/','53:fb26b6703031f1a2a2f68b9740b6568c',233,'term','post_tag',NULL,NULL,NULL,NULL,'beth',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(486,'https://biomechanicseducation.com/tag/digital-marketing/','66:c78b6453e634b1acd7320fd231fa6fcf',234,'term','post_tag',NULL,NULL,NULL,NULL,'digital marketing',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(487,'https://biomechanicseducation.com/tag/meet/','53:5fac81f6fb5ce4a659f642cb924800ac',235,'term','post_tag',NULL,NULL,NULL,NULL,'meet',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(488,'https://biomechanicseducation.com/tag/2022/','53:7f25b1e1dd9c9994761ef8a0cba513c1',236,'term','post_tag',NULL,NULL,NULL,NULL,'2022',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(489,'https://biomechanicseducation.com/tag/8-things/','57:c565aeeb40af0fbd6279009637b3f53d',237,'term','post_tag',NULL,NULL,NULL,NULL,'8 things',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(490,'https://biomechanicseducation.com/tag/consultation/','61:4aacfef2c1ab194d6a5dfe7733f0da19',238,'term','post_tag',NULL,NULL,NULL,NULL,'consultation',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(491,'https://biomechanicseducation.com/tag/diploma/','56:1d2f95b224cb7cf0dab669cd1109b605',239,'term','post_tag',NULL,NULL,NULL,NULL,'diploma',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(492,'https://biomechanicseducation.com/tag/keep-it-simple/','63:a029b7525727ee37cf5e04a753c98a12',240,'term','post_tag',NULL,NULL,NULL,NULL,'keep it simple',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(493,'https://biomechanicseducation.com/tag/agonist/','56:5c73cd49cdac55a71fd1590b042f39a9',241,'term','post_tag',NULL,NULL,NULL,NULL,'agonist',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(494,'https://biomechanicseducation.com/tag/antagonist/','59:98dba7ea4b07cf8f17aaf368c8370b70',242,'term','post_tag',NULL,NULL,NULL,NULL,'antagonist',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(495,'https://biomechanicseducation.com/tag/desk-life/','58:c75a5ac0ccc011731a15e57bce9c1dc2',243,'term','post_tag',NULL,NULL,NULL,NULL,'desk life',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(496,'https://biomechanicseducation.com/tag/exercise-ideas/','63:a92445d6582e6a326ef673754d3bdde6',244,'term','post_tag',NULL,NULL,NULL,NULL,'exercise ideas',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(497,'https://biomechanicseducation.com/?p=1346','51:13080a28d7227b3d8c4cbb348499fd06',1346,'post','post',3,0,NULL,NULL,'Less Stress in Amsterdam!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-10-21 05:41:00',0),(498,'https://biomechanicseducation.com/?p=1350','51:24f641bb584229bcceea2f2777d1c0a5',1350,'post','post',3,0,NULL,NULL,'&#8220;AM I CRAZY?&#8221;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-10-23 06:10:07',0),(499,'https://biomechanicseducation.com/?p=1353','51:935ae946d5e74da8d637225cc2af38db',1353,'post','post',3,0,NULL,NULL,'Are YOU a PT who wishes they could remember their A&#038;P?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:36','2016-10-26 07:01:29',0),(500,'https://biomechanicseducation.com/?p=1358','51:f504d83063812af483df957da4cef0bf',1358,'post','post',3,0,NULL,NULL,'Embrace YOUR Genetics! &#8211; I Confess &#8211; I’m A Geek!!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-10-28 11:31:22',0),(501,'https://biomechanicseducation.com/?p=1361','51:3403fb8f86862b927c9d62752c0c3915',1361,'post','post',3,0,NULL,NULL,'Have You Found Your Missing Link?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-10-31 14:56:29',0),(502,'https://biomechanicseducation.com/?p=1365','51:ff4009eefce272c128ba937d7eb1b884',1365,'post','post',3,0,NULL,NULL,'They SAY It But Do They &#8216;Practice&#8217; It?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-11-04 07:26:48',0),(503,'https://biomechanicseducation.com/?p=1378','51:e88b00be96c1b057fe4482b2624a6597',1378,'post','post',3,0,NULL,NULL,'FREE Low Back Health Workshop','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-11-08 07:11:30',0),(504,'https://biomechanicseducation.com/?p=1397','51:b69538a36c939f9d1849242ab0668b1c',1397,'post','post',3,0,NULL,NULL,'Ever Heard of Plantar Fasciitis?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-11-10 07:21:26',0),(505,'https://biomechanicseducation.com/?p=1402','51:eb6e473699e12bec8232c96c694f1354',1402,'post','post',3,0,NULL,NULL,'How Can Your Shoulder Contribute To Your Plantar Fasciitis?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-11-12 06:38:51',0),(506,'https://biomechanicseducation.com/?p=1405','51:35ebb21b07e764ce602710643f58233e',1405,'post','post',3,0,NULL,NULL,'WE ARE ALL GOING TO DIE!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-11-14 06:53:57',0),(507,'https://biomechanicseducation.com/?p=1409','51:8cc11fdab90766f95d3850470809e144',1409,'post','post',3,0,NULL,NULL,'Discovery Day Workshop in Scotland!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-11-17 07:19:27',0),(508,'https://biomechanicseducation.com/?p=1412','51:d8afb5bb6e9ea6c4771a7044ea5954e7',1412,'post','post',3,0,NULL,NULL,'How Do YOU Know?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-11-20 08:03:54',0),(509,'https://biomechanicseducation.com/?p=1415','51:91d4ca48c231ac234f59ab0f4a62e4db',1415,'post','post',3,0,NULL,NULL,'What Happens During An iMoveFreely® Instructor Workshop?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-11-22 10:48:58',0),(510,'https://biomechanicseducation.com/?p=1418','51:696f44218ebc265f24827cdb931f1598',1418,'post','post',3,0,NULL,NULL,'You Just Never Know','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-11-25 11:14:54',0),(511,'https://biomechanicseducation.com/?p=1422','51:90e4e21dd1e843cb60bbff73e2201465',1422,'post','post',3,0,NULL,NULL,'“ffs!?!?!”','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-11-27 06:48:47',0),(512,'https://biomechanicseducation.com/tag/pec-minor/','58:c7e06b6129bc6ffe064cce0bde5f0375',245,'term','post_tag',NULL,NULL,NULL,NULL,'pec minor',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(513,'https://biomechanicseducation.com/tag/ql/','41:b786399837e543289ad79068a45863f2',246,'term','post_tag',NULL,NULL,NULL,NULL,'ql',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(514,'https://biomechanicseducation.com/tag/quadratus-lumborum/','57:fdbe98db5bc118ba31354d158cd37312',247,'term','post_tag',NULL,NULL,NULL,NULL,'quadratus lumborum',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(515,'https://biomechanicseducation.com/tag/biomechanics-education/','71:a4e4da2e7996788191202eed42ee222a',248,'term','post_tag',NULL,NULL,NULL,NULL,'biomechanics education',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(516,'https://biomechanicseducation.com/tag/50s/','52:f30f4bd47ff14d4c31914860c0b7c8e3',249,'term','post_tag',NULL,NULL,NULL,NULL,'50s',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(517,'https://biomechanicseducation.com/tag/aging/','54:053a142b49b93cff0fc5a322c9b790a1',250,'term','post_tag',NULL,NULL,NULL,NULL,'aging',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(518,'https://biomechanicseducation.com/tag/older-pops/','59:a04a903aa8ae953e29ae258a66f472d6',251,'term','post_tag',NULL,NULL,NULL,NULL,'older pops',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(519,'https://biomechanicseducation.com/tag/exams/','54:546a13290cbd6be483dd01900aab4e30',252,'term','post_tag',NULL,NULL,NULL,NULL,'exams',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(520,'https://biomechanicseducation.com/tag/loughborough/','61:5817f84d513e88eeb321e30cedee3809',253,'term','post_tag',NULL,NULL,NULL,NULL,'loughborough',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(521,'https://biomechanicseducation.com/tag/support/','56:7e9bdba8ede57bb30f2f7b466031dee1',254,'term','post_tag',NULL,NULL,NULL,NULL,'support',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(522,'https://biomechanicseducation.com/tag/club/','53:20da9f7433ae795d8cf0b469ded2d1b3',255,'term','post_tag',NULL,NULL,NULL,NULL,'club',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(523,'https://biomechanicseducation.com/tag/group-exercise/','63:b9df5caa7bfa35053ea5f2577ab9b93d',256,'term','post_tag',NULL,NULL,NULL,NULL,'group exercise',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(524,'https://biomechanicseducation.com/tag/gym/','52:0c01871e85625dc240dad78d24f373b7',257,'term','post_tag',NULL,NULL,NULL,NULL,'gym',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(525,'https://biomechanicseducation.com/tag/re/','51:0e2da0a7d5b9538a0c7efbc98c683438',258,'term','post_tag',NULL,NULL,NULL,NULL,'re',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(526,'https://biomechanicseducation.com/tag/referral/','57:e12dd67250eb6fc968acc843ef996fbb',259,'term','post_tag',NULL,NULL,NULL,NULL,'referral',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 17:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(527,'https://biomechanicseducation.com/?p=1442','51:bfd16ba32d9f99ec3bc12b9ddbb9fcff',1442,'post','post',3,0,NULL,NULL,'Ever Injured Your Calf Muscle?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-11-29 06:44:31',0),(528,'https://biomechanicseducation.com/?p=1443','51:7cbbcfe8ab7d10c04c1ed56780b5503c',1443,'post','post',3,0,NULL,NULL,'Wanna Join The Cool Kids Table?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-12-01 06:46:30',0),(529,'https://biomechanicseducation.com/?p=1432','51:3074c424472cbc716b37f8059ad3c750',1432,'post','post',3,0,NULL,NULL,'Are Biomechanics Coaches™ Becoming GP&#8217;s&#8230;?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2016/02/logobg.jpg',NULL,'341','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2016/02/logobg.jpg','341','featured-image','{\"width\":770,\"height\":510,\"filesize\":121711,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2016/02/logobg.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2016/02/logobg.jpg\",\"size\":\"full\",\"id\":341,\"alt\":\"\",\"pixels\":392700,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-12-05 07:16:50',0),(530,'https://biomechanicseducation.com/?p=2273','51:100fc913b3d1c08f16e06aee45dbf85b',2273,'post','post',3,0,NULL,NULL,'BLOWN AWAY!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-12-10 07:01:13',0),(531,'https://biomechanicseducation.com/?p=2274','51:9ddb0f903ac27f155546fadb7e35ad0d',2274,'post','post',3,0,NULL,NULL,'Do You Know How Many&#8230;.?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-12-12 06:40:01',0),(532,'https://biomechanicseducation.com/?p=2275','51:cc773191068b9c8649806d3535515c36',2275,'post','post',3,0,NULL,NULL,'TADAAAAH!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-12-14 08:02:28',0),(533,'https://biomechanicseducation.com/?p=2276','51:b2bb34ab1054a75e1fe96a265c44831a',2276,'post','post',3,0,NULL,NULL,'Paradigm Shift','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-12-17 08:19:32',0),(534,'https://biomechanicseducation.com/?p=2277','51:47b32f2cd37cf26f9c4d40a7f01b7e5b',2277,'post','post',3,0,NULL,NULL,'Is It Legal?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-12-19 09:06:11',0),(535,'https://biomechanicseducation.com/?p=2278','51:f8756c3e9c1a5660e2bcaa9d18b4665c',2278,'post','post',3,0,NULL,NULL,'PICK ME! (AGAIN by request)','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-12-21 07:29:55',0),(536,'https://biomechanicseducation.com/?p=2279','51:b6e6b81cba8ffc1cf04e5a4a5bed34d7',2279,'post','post',3,0,NULL,NULL,'Sitting On Your Bum This Xmas?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2016-12-24 14:22:47',0),(537,'https://biomechanicseducation.com/?p=2280','51:1c47df44331fa6b3c17fa957310dc85b',2280,'post','post',3,0,NULL,NULL,'Can Being Fit Stop You Being Healthy?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-09-at-10.01.15-1.png',NULL,'2236','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-09-at-10.01.15-1.png','2236','featured-image','{\"width\":1152,\"height\":764,\"filesize\":1623020,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-09-at-10.01.15-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/01/Screen-Shot-2017-01-09-at-10.01.15-1.png\",\"size\":\"full\",\"id\":2236,\"alt\":\"\",\"pixels\":880128,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2017-01-09 10:02:26',0),(538,'https://biomechanicseducation.com/how-to-reduce-back-pain-rugby-edition/','72:7ddc908e49109478fffd41e5c7ca4254',2283,'post','post',3,0,NULL,'How to Alleviate Back Pain: A Guide for Rugby Players. Back pain is a widespread issue, affecting up to 80% of people at some point in their lives, including rugby players. Read more on our blog...','How To Reduce Your Own Back Pain: The Rugby Edition','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/01/tulang-ngilu-2.jpg',NULL,'2237','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/01/tulang-ngilu-2.jpg','2237','featured-image','{\"width\":576,\"height\":421,\"filesize\":42692,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/01/tulang-ngilu-2.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2017/01/tulang-ngilu-2.jpg\",\"size\":\"full\",\"id\":2237,\"alt\":\"\",\"pixels\":242496,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 18:09:07','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,4,2,'2025-01-20 16:03:29','2017-01-17 16:02:18',0),(539,'https://biomechanicseducation.com/?p=2284','51:561e6891277eeaf628d4e4d75bcc2e2c',2284,'post','post',3,0,NULL,NULL,'Why Can’t They Lunge..?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/01/WHY-2.png',NULL,'2248','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/01/WHY-2.png','2248','featured-image','{\"width\":1200,\"height\":628,\"filesize\":893996,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/01/WHY-2.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/01/WHY-2.png\",\"size\":\"full\",\"id\":2248,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2017-01-23 11:01:50',0),(540,'https://biomechanicseducation.com/?p=2285','51:d7e7bb296ce8a69cd2c3bfad144ddd6c',2285,'post','post',3,0,NULL,NULL,'&#8216;Out Of Our Minds&#8217;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/01/out-of-minds-1.png',NULL,'2307','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/01/out-of-minds-1.png','2307','featured-image','{\"width\":300,\"height\":186,\"filesize\":90017,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/01/out-of-minds-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/01/out-of-minds-1.png\",\"size\":\"full\",\"id\":2307,\"alt\":\"\",\"pixels\":55800,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2017-01-27 09:44:07',0),(541,'https://biomechanicseducation.com/?p=1519','51:f9c2dffc34c61acf9bb1b831c8f40510',1519,'post','post',3,0,NULL,NULL,'Do you REALLY have a &#8216;weak&#8217; core?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Do-you-really-have-a-weak-core-1-1-1.png',NULL,'2305','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/01/Do-you-really-have-a-weak-core-1-1-1.png','2305','featured-image','{\"width\":300,\"height\":157,\"filesize\":69744,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/01/Do-you-really-have-a-weak-core-1-1-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/01/Do-you-really-have-a-weak-core-1-1-1.png\",\"size\":\"full\",\"id\":2305,\"alt\":\"\",\"pixels\":47100,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2017-01-31 06:48:27',0),(542,'https://biomechanicseducation.com/tag/rivalry/','56:fbb1e0b75a851f5ff99c94cf8a6dd378',260,'term','post_tag',NULL,NULL,NULL,NULL,'rivalry',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(543,'https://biomechanicseducation.com/tag/system/','55:550f9b7b58980161e66aa8094a83f6b1',261,'term','post_tag',NULL,NULL,NULL,NULL,'system',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(544,'https://biomechanicseducation.com/tag/carpel-tunnel/','62:7ea69408471805705872e34dbe0ef54b',262,'term','post_tag',NULL,NULL,NULL,NULL,'carpel tunnel',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(545,'https://biomechanicseducation.com/tag/stewart-mcgill/','63:16bacf83b3d9885e1ef56b7b57df32b0',263,'term','post_tag',NULL,NULL,NULL,NULL,'stewart mcgill',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(546,'https://biomechanicseducation.com/tag/calf/','53:67040e44aae441c92679efc79beeaad9',264,'term','post_tag',NULL,NULL,NULL,NULL,'calf',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(547,'https://biomechanicseducation.com/tag/hamstring/','58:af985e7d8c31b305436866e61d2d4b2f',265,'term','post_tag',NULL,NULL,NULL,NULL,'hamstring',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(548,'https://biomechanicseducation.com/tag/issue/','54:bb4a4024329f46d38a47b15ee76d4838',266,'term','post_tag',NULL,NULL,NULL,NULL,'issue',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(549,'https://biomechanicseducation.com/tag/sciatic-nerve/','62:bc3324326563fea5459508f2b037afe3',267,'term','post_tag',NULL,NULL,NULL,NULL,'sciatic nerve',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(550,'https://biomechanicseducation.com/tag/ahp/','52:7c496f2e65e57a98a4297675bd44f419',268,'term','post_tag',NULL,NULL,NULL,NULL,'AHP',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(551,'https://biomechanicseducation.com/tag/allied-health-professionals/','76:af7eb72c16c772695607c432318b57c5',269,'term','post_tag',NULL,NULL,NULL,NULL,'ALLIED HEALTH PROFESSIONALS',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(552,'https://biomechanicseducation.com/tag/lockdown/','57:99db77ecfa40e8e927ebaf7998a1e626',270,'term','post_tag',NULL,NULL,NULL,NULL,'LOCKDOWN',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(553,'https://biomechanicseducation.com/tag/dialectic/','58:2a3fa91b2eebeb88a8eb8d50b2d3f102',271,'term','post_tag',NULL,NULL,NULL,NULL,'dialectic',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(554,'https://biomechanicseducation.com/tag/discuss/','56:b0b943a32a412424380668f455399a6c',272,'term','post_tag',NULL,NULL,NULL,NULL,'discuss',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(555,'https://biomechanicseducation.com/tag/behaviour-change/','65:8f3d73d14e4d29146fc2eb10b35c8ed2',273,'term','post_tag',NULL,NULL,NULL,NULL,'behaviour change',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(556,'https://biomechanicseducation.com/tag/gary-mendoza/','61:8c6fd6801f8ab32f1c3561c2f551b2ad',274,'term','post_tag',NULL,NULL,NULL,NULL,'gary mendoza',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:09:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(557,'https://biomechanicseducation.com/?p=1534','51:cdfd909465fc34fe9f3a654209c30141',1534,'post','post',3,0,NULL,NULL,'Can Your Custom Fit Insoles Really Be Damaging To Your Performance?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/02/insoles-2-1.png',NULL,'2303','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/02/insoles-2-1.png','2303','featured-image','{\"width\":300,\"height\":157,\"filesize\":100456,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/02/insoles-2-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/02/insoles-2-1.png\",\"size\":\"full\",\"id\":2303,\"alt\":\"\",\"pixels\":47100,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2017-02-07 09:32:51',0),(558,'https://biomechanicseducation.com/?p=2286','51:ca1dc7f9d7dfd63d565ff1b488c52427',2286,'post','post',3,0,NULL,NULL,'6 Tips Guaranteed To Improve Your Client&#8217;s Biomechanics','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/02/6-tips-1.png',NULL,'2301','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/02/6-tips-1.png','2301','featured-image','{\"width\":300,\"height\":153,\"filesize\":59835,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/02/6-tips-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/02/6-tips-1.png\",\"size\":\"full\",\"id\":2301,\"alt\":\"\",\"pixels\":45900,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2017-02-13 17:56:14',0),(559,'https://biomechanicseducation.com/?p=1592','51:361cd0cf373fbf94b6f9f6a03004aae2',1592,'post','post',3,0,NULL,NULL,'What’s That…? There Are 5 Quads?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/02/5-quads-1.jpg',NULL,'2299','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/02/5-quads-1.jpg','2299','featured-image','{\"width\":300,\"height\":225,\"filesize\":15524,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/02/5-quads-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/02/5-quads-1.jpg\",\"size\":\"full\",\"id\":2299,\"alt\":\"\",\"pixels\":67500,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2017-02-20 09:43:00',0),(560,'https://biomechanicseducation.com/?p=2287','51:9d5cde8a6f6c3122a62e2def5d6ae44b',2287,'post','post',3,0,NULL,NULL,'‘What Exactly Is The iMoveFreely® Programme?’','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/02/what-exactaly-1.png',NULL,'2297','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/02/what-exactaly-1.png','2297','featured-image','{\"width\":300,\"height\":169,\"filesize\":98062,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/02/what-exactaly-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/02/what-exactaly-1.png\",\"size\":\"full\",\"id\":2297,\"alt\":\"\",\"pixels\":50700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2017-02-28 08:24:50',0),(561,'https://biomechanicseducation.com/?p=1649','51:c142d73918e539701350b564a49c6cc7',1649,'post','post',3,0,NULL,NULL,'How A Simple Switch Of Language Can Foster Greater Results','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/03/mindset-blog-1-1.png',NULL,'2295','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/03/mindset-blog-1-1.png','2295','featured-image','{\"width\":300,\"height\":169,\"filesize\":87864,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/03/mindset-blog-1-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/03/mindset-blog-1-1.png\",\"size\":\"full\",\"id\":2295,\"alt\":\"\",\"pixels\":50700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2017-03-13 15:25:54',0),(562,'https://biomechanicseducation.com/?p=1666','51:015536690b80028131ed4206ec2ef2a1',1666,'post','post',3,0,NULL,NULL,'Why Doing Your Own Research Could Lead You To Become A Better Coach, Even If You Think You’re A ‘Non-Academic’ Like Me.','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Own-research-1.png',NULL,'2293','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Own-research-1.png','2293','featured-image','{\"width\":300,\"height\":170,\"filesize\":104419,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/03/Own-research-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/03/Own-research-1.png\",\"size\":\"full\",\"id\":2293,\"alt\":\"\",\"pixels\":51000,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2017-03-21 07:00:35',0),(563,'https://biomechanicseducation.com/?p=1698','51:5f890cb897bdee7f5e07216023150881',1698,'post','post',3,0,NULL,NULL,'A Weekend Presenting At The International Fitness Showcase','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/03/A-Weekend-Presenting-At-The-International-Fitness-Showcase-300x169-1.png',NULL,'2291','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/03/A-Weekend-Presenting-At-The-International-Fitness-Showcase-300x169-1.png','2291','featured-image','{\"width\":300,\"height\":169,\"filesize\":48978,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/03/A-Weekend-Presenting-At-The-International-Fitness-Showcase-300x169-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/03/A-Weekend-Presenting-At-The-International-Fitness-Showcase-300x169-1.png\",\"size\":\"full\",\"id\":2291,\"alt\":\"\",\"pixels\":50700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2017-03-27 15:40:30',0),(564,'https://biomechanicseducation.com/?p=2288','51:13da707b433e41ede36d2e678f3f0e7f',2288,'post','post',3,0,NULL,NULL,'The Struggles Being A Personal Trainer','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Struggles-1-1.png',NULL,'2289','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Struggles-1-1.png','2289','featured-image','{\"width\":300,\"height\":163,\"filesize\":79787,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/04/Struggles-1-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/04/Struggles-1-1.png\",\"size\":\"full\",\"id\":2289,\"alt\":\"\",\"pixels\":48900,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:35','2017-04-03 13:30:19',0),(565,'https://biomechanicseducation.com/?p=2530','51:1c7f8d6bf70aa7481db970fac5ef7308',2530,'post','post',3,0,NULL,NULL,'[Case Study] Elite Lifter Laura Hewitt','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-07-at-16.15.59-1.png',NULL,'2540','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-07-at-16.15.59-1.png','2540','featured-image','{\"width\":1200,\"height\":672,\"filesize\":1082019,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-07-at-16.15.59-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/04/Screen-Shot-2017-04-07-at-16.15.59-1.png\",\"size\":\"full\",\"id\":2540,\"alt\":\"\",\"pixels\":806400,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-04-13 12:29:09',0),(566,'https://biomechanicseducation.com/?p=2543','51:d72b5ba36f970457e315c8a844cfb224',2543,'post','post',3,0,NULL,NULL,'How Your Pectoralis Minor Can Affect Your Squat Depth','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-13.42.07-1.png',NULL,'2548','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-13.42.07-1.png','2548','featured-image','{\"width\":822,\"height\":572,\"filesize\":766661,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-13.42.07-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/04/Screen-Shot-2017-04-13-at-13.42.07-1.png\",\"size\":\"full\",\"id\":2548,\"alt\":\"\",\"pixels\":470184,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-05-01 20:04:29',0),(567,'https://biomechanicseducation.com/?p=2668','51:cd1814080773014947ab3188dc10fe09',2668,'post','post',3,0,NULL,NULL,'Over Pronation Or Late Supination?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-24-at-10.29.29-1.png',NULL,'2613','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-24-at-10.29.29-1.png','2613','featured-image','{\"width\":586,\"height\":300,\"filesize\":372087,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/04/Screen-Shot-2017-04-24-at-10.29.29-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/04/Screen-Shot-2017-04-24-at-10.29.29-1.png\",\"size\":\"full\",\"id\":2613,\"alt\":\"\",\"pixels\":175800,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-05-03 10:54:35',0),(568,'https://biomechanicseducation.com/?p=2671','51:30e8197b91d0fc9aa6743870353bc89f',2671,'post','post',3,0,NULL,NULL,'How To Measure Neuromuscular Imbalances &#038; Identify If Your Client Is At Risk Of ACL Injury','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/05/knee2FFoot-Biomechanics-blog-1.png',NULL,'2837','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/05/knee2FFoot-Biomechanics-blog-1.png','2837','featured-image','{\"width\":1024,\"height\":512,\"filesize\":759206,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/05/knee2FFoot-Biomechanics-blog-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/05/knee2FFoot-Biomechanics-blog-1.png\",\"size\":\"full\",\"id\":2837,\"alt\":\"\",\"pixels\":524288,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-05-03 10:56:33',0),(569,'https://biomechanicseducation.com/?p=2720','51:93a23d7be15e2e3d602cb7356b0484b7',2720,'post','post',3,0,NULL,NULL,'Anatomy 50 Shades Of Grey','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-16-at-06.15.24-1.png',NULL,'2723','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-16-at-06.15.24-1.png','2723','featured-image','{\"width\":826,\"height\":430,\"filesize\":444865,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-16-at-06.15.24-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/05/Screen-Shot-2017-05-16-at-06.15.24-1.png\",\"size\":\"full\",\"id\":2723,\"alt\":\"\",\"pixels\":355180,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-05-16 08:18:03',0),(570,'https://biomechanicseducation.com/?p=2755','51:fcd028ff0e723af3b56b20b0110e9b1a',2755,'post','post',3,0,NULL,NULL,'How Back Pain Whilst Playing Golf Can Stem From A Dysfunction In The Median Nerve','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-22-at-21.01.16-1.png',NULL,'2756','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-22-at-21.01.16-1.png','2756','featured-image','{\"width\":1542,\"height\":764,\"filesize\":1593767,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/05/Screen-Shot-2017-05-22-at-21.01.16-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/05/Screen-Shot-2017-05-22-at-21.01.16-1.png\",\"size\":\"full\",\"id\":2756,\"alt\":\"\",\"pixels\":1178088,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-05-22 20:02:25',0),(571,'https://biomechanicseducation.com/how-to-identify-if-your-quadratus-lumborum-muscle-is-in-spasm/','96:05b9014b959aec172d6e88ecfa66e955',2785,'post','post',3,0,'How To Identify If Your Quadratus Lumborum Muscle Is In Spasm','Learn how to identify and manage quadratus lumborum spasms to alleviate lower back pain and improve mobility with targeted techniques.','How To Identify If Your Quadratus Lumborum Muscle Is In Spasm &#038; It’s Effect On Lower Back Pain &#038; Movement Ability','publish',NULL,0,NULL,NULL,NULL,'Quadratus Lumborum Muscle spasm',60,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/pelvic-spine-image-1-scaled.jpg',NULL,'18476','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/pelvic-spine-image-1-scaled.jpg','18476','featured-image','{\"width\":2560,\"height\":1709,\"filesize\":650994,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/11/pelvic-spine-image-1-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2019/11/pelvic-spine-image-1-scaled.jpg\",\"size\":\"full\",\"id\":18476,\"alt\":\"\",\"pixels\":4375040,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 18:24:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,3,2,'2025-01-20 16:03:29','2017-05-29 19:08:02',0),(572,'https://biomechanicseducation.com/tag/kaizen/','55:c0894aff751673f780359daebc5c5676',275,'term','post_tag',NULL,NULL,NULL,NULL,'kaizen',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(573,'https://biomechanicseducation.com/tag/motivational-interviewing/','74:b55b490b142f13a01d564d9d02856e67',276,'term','post_tag',NULL,NULL,NULL,NULL,'motivational interviewing',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(574,'https://biomechanicseducation.com/tag/ap/','51:3a500eba272d64e6f011d1d33936c591',277,'term','post_tag',NULL,NULL,NULL,NULL,'a&amp;p',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(575,'https://biomechanicseducation.com/tag/cadaver/','56:72e7f817f4c4342807cd679329b1a3c9',278,'term','post_tag',NULL,NULL,NULL,NULL,'cadaver',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(576,'https://biomechanicseducation.com/tag/hospital/','57:36ee7b0a20eafdd2e0afc23eec38883b',279,'term','post_tag',NULL,NULL,NULL,NULL,'hospital',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(577,'https://biomechanicseducation.com/tag/medical/','56:cd16c202838092e88e2df47d892baa04',280,'term','post_tag',NULL,NULL,NULL,NULL,'medical',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(578,'https://biomechanicseducation.com/tag/study/','54:1eed2f2dacd0a98650f5916a3cf8f5c9',281,'term','post_tag',NULL,NULL,NULL,NULL,'study',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(579,'https://biomechanicseducation.com/tag/mobilisation/','61:7dc75012fdad183636e21ee71fd97251',282,'term','post_tag',NULL,NULL,NULL,NULL,'mobilisation',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(580,'https://biomechanicseducation.com/tag/sciatica/','57:cc63694e7f9bc9ecd3b702c49aab188b',283,'term','post_tag',NULL,NULL,NULL,NULL,'sciatica',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(581,'https://biomechanicseducation.com/tag/slr/','52:47e6200a8018bbdfd7346462e7cd08c3',284,'term','post_tag',NULL,NULL,NULL,NULL,'slr',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(582,'https://biomechanicseducation.com/tag/back-pain/','58:95b4c36091f0719d8ae913a6a89f8bef',285,'term','post_tag',NULL,NULL,NULL,NULL,'back pain',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(583,'https://biomechanicseducation.com/tag/core-stability/','63:8db87495091f0e333c33a9a994c8202e',286,'term','post_tag',NULL,NULL,NULL,NULL,'core stability',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(584,'https://biomechanicseducation.com/tag/core-training/','62:b0615137f98c4d5f5f814d160950c594',287,'term','post_tag',NULL,NULL,NULL,NULL,'core training',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(585,'https://biomechanicseducation.com/tag/weak-core/','58:b91f1a24956971cf9a719380b157338a',288,'term','post_tag',NULL,NULL,NULL,NULL,'weak core',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(586,'https://biomechanicseducation.com/tag/periodised/','59:28bd47bf757ea0cf21dd11d01b605487',289,'term','post_tag',NULL,NULL,NULL,NULL,'periodised',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(587,'https://biomechanicseducation.com/?p=2780','51:50ffd5e23823dd57796657911f1af2f2',2780,'post','post',3,0,NULL,NULL,'This Tough Lesson Could See Your Client Relationships &#038; Success Excel','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/05/This-Tough-Lesson-Could-See-Your-Client-Relationships-Excel-1.png',NULL,'2781','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/05/This-Tough-Lesson-Could-See-Your-Client-Relationships-Excel-1.png','2781','featured-image','{\"width\":1200,\"height\":628,\"filesize\":424739,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/05/This-Tough-Lesson-Could-See-Your-Client-Relationships-Excel-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/05/This-Tough-Lesson-Could-See-Your-Client-Relationships-Excel-1.png\",\"size\":\"full\",\"id\":2781,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-06-02 05:48:10',0),(588,'https://biomechanicseducation.com/?p=2808','51:e4c43b5e09a192c46f12c06de16e898d',2808,'post','post',3,0,NULL,NULL,'Why The Pelvis Should Be The First Place You Look When Assessing Clients','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-19-at-11.13.10-1.png',NULL,'2810','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-19-at-11.13.10-1.png','2810','featured-image','{\"width\":1206,\"height\":600,\"filesize\":999689,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-19-at-11.13.10-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/06/Screen-Shot-2017-06-19-at-11.13.10-1.png\",\"size\":\"full\",\"id\":2810,\"alt\":\"\",\"pixels\":723600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-06-19 10:20:09',0),(589,'https://biomechanicseducation.com/?p=2845','51:4d49b2a0557d00f2df7177d0c77bccdf',2845,'post','post',3,0,NULL,NULL,'Why You Shouldn&#8217;t Let Your Nerves Hold You Back From Living Your Dream','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Why-You-Shouldnt-Let-Your-Nerves-Hold-You-Back-From-Living-Your-Dream-1.png',NULL,'3174','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Why-You-Shouldnt-Let-Your-Nerves-Hold-You-Back-From-Living-Your-Dream-1.png','3174','featured-image','{\"width\":1200,\"height\":628,\"filesize\":1418103,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/06/Why-You-Shouldnt-Let-Your-Nerves-Hold-You-Back-From-Living-Your-Dream-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/06/Why-You-Shouldnt-Let-Your-Nerves-Hold-You-Back-From-Living-Your-Dream-1.png\",\"size\":\"full\",\"id\":3174,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-06-26 16:41:26',0),(590,'https://biomechanicseducation.com/?p=2855','51:404cc925da165e36085f17a3e20437f8',2855,'post','post',3,0,NULL,NULL,'Why Group Exercise Instructors &#038; PT&#8217;s Are Missing A Huge Referral Market!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.00.46-1.png',NULL,'2856','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.00.46-1.png','2856','featured-image','{\"width\":1200,\"height\":626,\"filesize\":1152563,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.00.46-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/06/Screen-Shot-2017-06-27-at-19.00.46-1.png\",\"size\":\"full\",\"id\":2856,\"alt\":\"\",\"pixels\":751200,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-07-03 11:09:47',0),(591,'https://biomechanicseducation.com/?p=2866','51:2c11d74917138b52aecbb9c7d3fadcd0',2866,'post','post',3,0,NULL,NULL,'Want To Increase Muscle Output By 50% In 10 Days?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/07/muscle-output-1.png',NULL,'3173','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/07/muscle-output-1.png','3173','featured-image','{\"width\":1200,\"height\":628,\"filesize\":932070,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/07/muscle-output-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/07/muscle-output-1.png\",\"size\":\"full\",\"id\":3173,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-07-11 07:13:00',0),(592,'https://biomechanicseducation.com/?p=2874','51:452f809ae8bdc4ed0b158081d5518845',2874,'post','post',3,0,NULL,NULL,'Are Your Client&#8217;s Moving Too Much Or Not Enough?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/07/clients-moving-1.png',NULL,'3002','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/07/clients-moving-1.png','3002','featured-image','{\"width\":1200,\"height\":628,\"filesize\":823481,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/07/clients-moving-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/07/clients-moving-1.png\",\"size\":\"full\",\"id\":3002,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-07-17 12:00:27',0),(593,'https://biomechanicseducation.com/?p=2978','51:87b91390eacd92671a89ad4d81a2e34f',2978,'post','post',3,0,NULL,NULL,'Extrinsic Technique V’s Intrinsic Biomechanics','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/07/ex-vs-in-1.png',NULL,'2999','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/07/ex-vs-in-1.png','2999','featured-image','{\"width\":1200,\"height\":628,\"filesize\":1015579,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/07/ex-vs-in-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/07/ex-vs-in-1.png\",\"size\":\"full\",\"id\":2999,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-07-24 12:00:01',0),(594,'https://biomechanicseducation.com/?p=2959','51:edeea8522db5670b42ab3ba34c93967c',2959,'post','post',3,0,NULL,NULL,'Could The Core Stability Training Your Prescribing Your Clients, Actually Be Damaging Them?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/08/core-stability-1.png',NULL,'2976','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/08/core-stability-1.png','2976','featured-image','{\"width\":1200,\"height\":628,\"filesize\":960177,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/08/core-stability-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/08/core-stability-1.png\",\"size\":\"full\",\"id\":2976,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-07-31 12:00:45',0),(595,'https://biomechanicseducation.com/?p=2972','51:e5e3b6a26d4138c0759224c3f68dc61c',2972,'post','post',3,0,NULL,NULL,'[CASE STUDY] How Simon Reduced His Low Back And Shoulder Pain','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/08/simon-case-study-2-1.png',NULL,'2986','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/08/simon-case-study-2-1.png','2986','featured-image','{\"width\":1200,\"height\":628,\"filesize\":495241,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/08/simon-case-study-2-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/08/simon-case-study-2-1.png\",\"size\":\"full\",\"id\":2986,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-08-07 12:00:25',0),(596,'https://biomechanicseducation.com/?p=3178','51:070f14025d72c998e38715fda351233a',3178,'post','post',3,0,NULL,NULL,'Do You Fear You Just Don&#8217;t Know Enough?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Do-you-fear-3-1.png',NULL,'3191','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Do-you-fear-3-1.png','3191','featured-image','{\"width\":1200,\"height\":628,\"filesize\":777092,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/08/Do-you-fear-3-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/08/Do-you-fear-3-1.png\",\"size\":\"full\",\"id\":3191,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-08-16 05:55:48',0),(597,'https://biomechanicseducation.com/?p=3198','51:a2c74a164f500bfaaa24e7a1375094c9',3198,'post','post',3,0,NULL,NULL,'THE Cadaver Experience','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Craftsmen-1-1-1.png',NULL,'3213','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/08/Craftsmen-1-1-1.png','3213','featured-image','{\"width\":1200,\"height\":628,\"filesize\":541814,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/08/Craftsmen-1-1-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/08/Craftsmen-1-1-1.png\",\"size\":\"full\",\"id\":3213,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-08-21 07:00:41',0),(598,'https://biomechanicseducation.com/?p=3227','51:8749167b637f5d6ec867bb36eb0ba192',3227,'post','post',3,0,NULL,NULL,'The ‘Weak Core’ Epidemic!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/08/The-Weak-Core-1.png',NULL,'3234','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/08/The-Weak-Core-1.png','3234','featured-image','{\"width\":1200,\"height\":628,\"filesize\":981294,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/08/The-Weak-Core-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/08/The-Weak-Core-1.png\",\"size\":\"full\",\"id\":3234,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-08-29 08:48:21',0),(599,'https://biomechanicseducation.com/?p=3239','51:2a22e573360c4ad2bcb19cf03cca5c82',3239,'post','post',3,0,NULL,NULL,'Warning For PT&#8217;s: Don’t Get Caught In The “Sexy” Trap','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/09/WARNING-For-PTs-Dont-Get-Caught-In-The-Sexy-Trap-1-1.png',NULL,'3243','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/09/WARNING-For-PTs-Dont-Get-Caught-In-The-Sexy-Trap-1-1.png','3243','featured-image','{\"width\":560,\"height\":315,\"filesize\":286272,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/09/WARNING-For-PTs-Dont-Get-Caught-In-The-Sexy-Trap-1-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/09/WARNING-For-PTs-Dont-Get-Caught-In-The-Sexy-Trap-1-1.png\",\"size\":\"full\",\"id\":3243,\"alt\":\"\",\"pixels\":176400,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-09-04 16:55:54',0),(600,'https://biomechanicseducation.com/?p=3321','51:ccb7382ad0b6a35af3ca2b714f54282b',3321,'post','post',3,0,NULL,NULL,'Did You Know Bacon Can Cure Nosebleeds?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Nose-Bleed-1.png',NULL,'3325','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Nose-Bleed-1.png','3325','featured-image','{\"width\":1200,\"height\":628,\"filesize\":807653,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Nose-Bleed-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/09/Nose-Bleed-1.png\",\"size\":\"full\",\"id\":3325,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-09-11 19:24:53',0),(601,'https://biomechanicseducation.com/?p=3478','51:1184c4dae24e0967e946ad70af737b3e',3478,'post','post',3,0,NULL,NULL,'Are You Confused?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Home-Brewing-2-1.png',NULL,'3479','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/09/Home-Brewing-2-1.png','3479','featured-image','{\"width\":1200,\"height\":628,\"filesize\":691772,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/09/Home-Brewing-2-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/09/Home-Brewing-2-1.png\",\"size\":\"full\",\"id\":3479,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-09-18 12:31:02',0),(602,'https://biomechanicseducation.com/tag/sexy/','53:46f4b1a66a5ef7b6b2ddd71eba3322c2',290,'term','post_tag',NULL,NULL,NULL,NULL,'sexy',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(603,'https://biomechanicseducation.com/tag/impingement/','60:e8f86b822869a2be9b7bfee67fb213e4',291,'term','post_tag',NULL,NULL,NULL,NULL,'impingement',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(604,'https://biomechanicseducation.com/tag/leg-pain/','57:0e7c59068cd6d923111e7b6ffb84a91d',292,'term','post_tag',NULL,NULL,NULL,NULL,'leg pain',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(605,'https://biomechanicseducation.com/tag/radicular/','58:280ccecb285c847bf4b78224c627bc05',293,'term','post_tag',NULL,NULL,NULL,NULL,'radicular',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(606,'https://biomechanicseducation.com/tag/remit/','54:9683834178c5c8971ac13bc7335531ad',294,'term','post_tag',NULL,NULL,NULL,NULL,'remit',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(607,'https://biomechanicseducation.com/tag/2018/','53:f0d57fa6722d69c3dfa8d16b0f2ee4bf',295,'term','post_tag',NULL,NULL,NULL,NULL,'2018',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(608,'https://biomechanicseducation.com/tag/scotland/','57:3526698781646f203145216b0c5c9702',296,'term','post_tag',NULL,NULL,NULL,NULL,'scotland',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(609,'https://biomechanicseducation.com/tag/testimonials/','61:f277454a2937064c149acfd92a94bdbf',297,'term','post_tag',NULL,NULL,NULL,NULL,'testimonials',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(610,'https://biomechanicseducation.com/tag/evolution/','58:5d110a579205f61361cb6570e8d3e713',298,'term','post_tag',NULL,NULL,NULL,NULL,'evolution',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(611,'https://biomechanicseducation.com/tag/injured/','56:f89d35da6d8f91a013cbe5dc454480a6',299,'term','post_tag',NULL,NULL,NULL,NULL,'injured',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(612,'https://biomechanicseducation.com/tag/challenge/','58:732be0bc0c658c420c327417f7410f55',300,'term','post_tag',NULL,NULL,NULL,NULL,'challenge',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(613,'https://biomechanicseducation.com/tag/hips/','53:6e3c8b443c01a65591e044957646fb98',301,'term','post_tag',NULL,NULL,NULL,NULL,'hips',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(614,'https://biomechanicseducation.com/tag/sitting/','56:d7f1e1075d1ebc338fb28993a7d2bdfc',302,'term','post_tag',NULL,NULL,NULL,NULL,'sitting',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(615,'https://biomechanicseducation.com/tag/good-questions/','63:d2272bcbbb4988867ab2628f51b87a6b',303,'term','post_tag',NULL,NULL,NULL,NULL,'GOOD QUESTIONS',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(616,'https://biomechanicseducation.com/tag/question/','57:2e64e7d202eb789760d1df1b855a9851',304,'term','post_tag',NULL,NULL,NULL,NULL,'question',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(617,'https://biomechanicseducation.com/?p=3501','51:d455a72be2b21f0a1634aff69c54c865',3501,'post','post',3,0,NULL,NULL,'I B***** LOVE This System!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/09/2018-locked-prices-1.png',NULL,'3502','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/09/2018-locked-prices-1.png','3502','featured-image','{\"width\":1200,\"height\":628,\"filesize\":218786,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/09/2018-locked-prices-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/09/2018-locked-prices-1.png\",\"size\":\"full\",\"id\":3502,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-09-25 21:59:21',0),(618,'https://biomechanicseducation.com/?p=3550','51:0b1e2afcd8a54c7b60d3de09007396fa',3550,'post','post',3,0,NULL,NULL,'Frustrated By Recurring Injuries?? Our bodies just can’t evolve quickly enough! In the meantime what should we do?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/10/Fustrated-by-Recurring-Injuries-1.png',NULL,'3551','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/10/Fustrated-by-Recurring-Injuries-1.png','3551','featured-image','{\"width\":1200,\"height\":628,\"filesize\":1262278,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/10/Fustrated-by-Recurring-Injuries-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/10/Fustrated-by-Recurring-Injuries-1.png\",\"size\":\"full\",\"id\":3551,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-10-09 13:03:05',0),(619,'https://biomechanicseducation.com/?p=3628','51:0b45e598d0e0b4944c50456873e68082',3628,'post','post',3,0,NULL,NULL,'Are You Up To The Beyond 90 Challenge?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/10/Beyond-90-Challenge-1.png',NULL,'3629','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/10/Beyond-90-Challenge-1.png','3629','featured-image','{\"width\":1200,\"height\":628,\"filesize\":623171,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/10/Beyond-90-Challenge-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/10/Beyond-90-Challenge-1.png\",\"size\":\"full\",\"id\":3629,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-10-17 05:50:46',0),(620,'https://biomechanicseducation.com/?p=3689','51:43b52b1f7448e5ad3d7990a9ba49adef',3689,'post','post',3,0,NULL,NULL,'You Want To Move More Freely, Right?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/10/move-freely-2-1.png',NULL,'3690','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/10/move-freely-2-1.png','3690','featured-image','{\"width\":1200,\"height\":628,\"filesize\":756244,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/10/move-freely-2-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/10/move-freely-2-1.png\",\"size\":\"full\",\"id\":3690,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-10-23 15:35:50',0),(621,'https://biomechanicseducation.com/?p=3783','51:5c4fbd087cee914e4b5db5d2486087b5',3783,'post','post',3,0,NULL,NULL,'Abdominal Injuries &#8211; Hernia','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/10/Abdominal-Injuries-1-1.png',NULL,'3784','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/10/Abdominal-Injuries-1-1.png','3784','featured-image','{\"width\":1200,\"height\":628,\"filesize\":709291,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/10/Abdominal-Injuries-1-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/10/Abdominal-Injuries-1-1.png\",\"size\":\"full\",\"id\":3784,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-10-31 06:09:12',0),(622,'https://biomechanicseducation.com/?p=3800','51:e47a1c42d6446b25704d51558391a2a3',3800,'post','post',3,0,NULL,NULL,'Why Go To The Dentist?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/11/Why-Go-to-The-Dentist-1-1.png',NULL,'3801','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/11/Why-Go-to-The-Dentist-1-1.png','3801','featured-image','{\"width\":1200,\"height\":628,\"filesize\":890650,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/11/Why-Go-to-The-Dentist-1-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/11/Why-Go-to-The-Dentist-1-1.png\",\"size\":\"full\",\"id\":3801,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-11-06 18:00:13',0),(623,'https://biomechanicseducation.com/?p=3817','51:bb84d4bbafe3c199d0d09feb8d3dcea5',3817,'post','post',3,0,NULL,NULL,'Is Your Choice Of Language Confusing Your Client?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/11/Home-Brewing-3-1.png',NULL,'3819','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/11/Home-Brewing-3-1.png','3819','featured-image','{\"width\":1200,\"height\":628,\"filesize\":758465,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/11/Home-Brewing-3-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/11/Home-Brewing-3-1.png\",\"size\":\"full\",\"id\":3819,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:34','2017-11-14 05:45:01',0),(624,'https://biomechanicseducation.com/?p=3827','51:ea97401348f72d779393ce417c0c4eb4',3827,'post','post',3,0,NULL,NULL,'NO, I DAMN WELL CAN&#8217;T!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/11/Home-Brewing-2-1.png',NULL,'3829','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/11/Home-Brewing-2-1.png','3829','featured-image','{\"width\":1200,\"height\":628,\"filesize\":954284,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/11/Home-Brewing-2-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/11/Home-Brewing-2-1.png\",\"size\":\"full\",\"id\":3829,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2017-11-19 22:42:45',0),(625,'https://biomechanicseducation.com/?p=3902','51:e98b748849af979b4e9e81d1a02378ff',3902,'post','post',3,0,NULL,NULL,'28/11 SO WHAT?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/11/Home-Brewing-1-1.png',NULL,'3903','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/11/Home-Brewing-1-1.png','3903','featured-image','{\"width\":1200,\"height\":628,\"filesize\":690675,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/11/Home-Brewing-1-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/11/Home-Brewing-1-1.png\",\"size\":\"full\",\"id\":3903,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2017-11-27 19:10:46',0),(626,'https://biomechanicseducation.com/?p=3913','51:0f35b5e8d5064062f8ec391d7327da53',3913,'post','post',3,0,NULL,NULL,'Understanding Your Nerves','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/12/Home-Brewing-3-1.png',NULL,'3915','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/12/Home-Brewing-3-1.png','3915','featured-image','{\"width\":1200,\"height\":628,\"filesize\":613672,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/12/Home-Brewing-3-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/12/Home-Brewing-3-1.png\",\"size\":\"full\",\"id\":3915,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2017-12-04 15:46:57',0),(627,'https://biomechanicseducation.com/?p=3920','51:82388144601986e09968b1276e868e25',3920,'post','post',3,0,NULL,NULL,'Ever Heard Of Occam’s Razor ?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/12/Find-us-at-homebrewing.com_-1.png',NULL,'3921','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/12/Find-us-at-homebrewing.com_-1.png','3921','featured-image','{\"width\":1200,\"height\":628,\"filesize\":434765,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/12/Find-us-at-homebrewing.com_-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/12/Find-us-at-homebrewing.com_-1.png\",\"size\":\"full\",\"id\":3921,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2017-12-11 12:29:26',0),(628,'https://biomechanicseducation.com/?p=3947','51:07d06a4b1e1d454e528b7bb748775faa',3947,'post','post',3,0,NULL,NULL,'Preparation &#038; Capacity &#8211; The Missing Link','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/12/19.12.17-Preparation-and-capacity-1.png',NULL,'3948','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/12/19.12.17-Preparation-and-capacity-1.png','3948','featured-image','{\"width\":1200,\"height\":628,\"filesize\":824059,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/12/19.12.17-Preparation-and-capacity-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/12/19.12.17-Preparation-and-capacity-1.png\",\"size\":\"full\",\"id\":3948,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2017-12-19 02:31:54',0),(629,'https://biomechanicseducation.com/?p=3953','51:7a5c43d63f3c649e72290af38c0a3d87',3953,'post','post',3,0,NULL,NULL,'How Strong Are Your Core Values?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/12/certificate-1.png',NULL,'3954','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/12/certificate-1.png','3954','featured-image','{\"width\":1200,\"height\":628,\"filesize\":1213922,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/12/certificate-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2017/12/certificate-1.png\",\"size\":\"full\",\"id\":3954,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2017-12-25 23:30:45',0),(630,'https://biomechanicseducation.com/?p=3968','51:62cb96df6c021eda09e84243c14b8f15',3968,'post','post',3,0,NULL,NULL,'What Could You Do 1% Better Today?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Find-us-at-homebrewing.com_-1.png',NULL,'3969','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Find-us-at-homebrewing.com_-1.png','3969','featured-image','{\"width\":1200,\"height\":628,\"filesize\":834806,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/01/Find-us-at-homebrewing.com_-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/01/Find-us-at-homebrewing.com_-1.png\",\"size\":\"full\",\"id\":3969,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-01-02 08:09:19',0),(631,'https://biomechanicseducation.com/?p=4004','51:5245a9e9bdec533dc994fe67e4ac22bd',4004,'post','post',3,0,NULL,NULL,'Do You Make Assumptions?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Which-Came-First-1.png',NULL,'4012','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/01/Which-Came-First-1.png','4012','featured-image','{\"width\":1200,\"height\":628,\"filesize\":923449,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/01/Which-Came-First-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/01/Which-Came-First-1.png\",\"size\":\"full\",\"id\":4012,\"alt\":\"\",\"pixels\":753600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-01-09 01:43:40',0),(632,'https://biomechanicseducation.com/tag/smart-goal/','59:8824efbab1a0c420f885c2bcaf1e5382',305,'term','post_tag',NULL,NULL,NULL,NULL,'SMART GOAL',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(633,'https://biomechanicseducation.com/tag/ankle/','54:955ae6b520ae32d2f2f79250b85e845b',306,'term','post_tag',NULL,NULL,NULL,NULL,'ankle',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(634,'https://biomechanicseducation.com/tag/calcaneus/','58:15e35daff560236dcdffcb0d7ecdfbf6',307,'term','post_tag',NULL,NULL,NULL,NULL,'calcaneus',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(635,'https://biomechanicseducation.com/tag/cuboid/','55:3ec6f580585d8f8f0967a25d973806ba',308,'term','post_tag',NULL,NULL,NULL,NULL,'cuboid',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(636,'https://biomechanicseducation.com/tag/cuneiform/','58:363eee6c2c9d1e79d80446aba763e6ab',309,'term','post_tag',NULL,NULL,NULL,NULL,'cuneiform',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(637,'https://biomechanicseducation.com/tag/fibula/','55:06c0dcac6a343f144cd666f24e882693',310,'term','post_tag',NULL,NULL,NULL,NULL,'fibula',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(638,'https://biomechanicseducation.com/tag/metatarsal/','59:c3610f92430ba953f6ecaaf7d112f215',311,'term','post_tag',NULL,NULL,NULL,NULL,'metatarsal',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(639,'https://biomechanicseducation.com/tag/midtarsal-joint/','64:922e0e7ad2cc5a569494dfdc7d6d2d93',312,'term','post_tag',NULL,NULL,NULL,NULL,'midtarsal joint',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(640,'https://biomechanicseducation.com/tag/mtj/','52:cb3999bf2d3810b6f33cdf59a9bfab09',313,'term','post_tag',NULL,NULL,NULL,NULL,'MTJ',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(641,'https://biomechanicseducation.com/tag/navicular/','58:278f7e730e2f4c429b02f8cdd30e1a41',314,'term','post_tag',NULL,NULL,NULL,NULL,'navicular',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(642,'https://biomechanicseducation.com/tag/phalanges/','58:27ad43152cbdabc3d480b89beac98e0f',315,'term','post_tag',NULL,NULL,NULL,NULL,'phalanges',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(643,'https://biomechanicseducation.com/tag/stj/','52:c147905d0f503d87ba512c2abb39bef4',316,'term','post_tag',NULL,NULL,NULL,NULL,'STJ',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(644,'https://biomechanicseducation.com/tag/talus/','54:b288c554bb70a6f864ec56962d859324',317,'term','post_tag',NULL,NULL,NULL,NULL,'talus',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(645,'https://biomechanicseducation.com/tag/tarsal/','55:2fa08c3c8afdb4d360083aa5b5401895',318,'term','post_tag',NULL,NULL,NULL,NULL,'tarsal',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(646,'https://biomechanicseducation.com/tag/tibia/','54:cf490f17bed1220196ecf84b15b4ec50',319,'term','post_tag',NULL,NULL,NULL,NULL,'tibia',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 18:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(647,'https://biomechanicseducation.com/what-exactly-is-intrinsic-biomechanics/','73:195c2ce7a3d36a27c70b4661c1a8b5ce',4106,'post','post',3,0,NULL,'Explore intrinsic biomechanics and its role in optimizing movement efficiency, injury prevention, and athletic performance.','What Exactly Is Intrinsic Biomechanics?','publish',NULL,0,NULL,NULL,NULL,'Intrinsic Biomehanics',57,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/01/What-exactly-is-Intrinsic-Biomechanics-2-1.png',NULL,'4108','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/01/What-exactly-is-Intrinsic-Biomechanics-2-1.png','4108','featured-image','{\"width\":1200,\"height\":628,\"filesize\":938800,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/01/What-exactly-is-Intrinsic-Biomechanics-2-1.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2018/01/What-exactly-is-Intrinsic-Biomechanics-2-1.png\",\"size\":\"full\",\"id\":4108,\"alt\":\"what-exactly-is-intrinsic-biomechanics-2\",\"pixels\":753600,\"type\":\"image/png\"}',1,NULL,NULL,'2024-07-23 19:09:06','2025-01-20 16:01:08',1,NULL,NULL,NULL,NULL,0,5,2,'2025-01-20 16:01:07','2018-01-15 19:18:55',90),(648,'https://biomechanicseducation.com/?p=4377','51:876ab287f7af838958e6120cc1bcf37b',4377,'post','post',3,0,NULL,NULL,'The Happiness Baseline','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.biomechanicseducation.com/wp-content/uploads/2018/01/hombre-con-dinero-1024x576.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://www.biomechanicseducation.com/wp-content/uploads/2018/01/hombre-con-dinero-1024x576.jpg',NULL,'first-content-image',NULL,NULL,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-01-23 01:36:21',0),(649,'https://biomechanicseducation.com/risk-reduction-intrinsic-biomechanics/','72:3a902cc46d92448973d05cf742f520bb',4779,'post','post',3,0,NULL,'Reduce injury risk with intrinsic biomechanics. Learn screening techniques to optimize client performance and safety.','Risk Reduction &#038; Intrinsic Biomechanics','publish',NULL,0,NULL,NULL,NULL,'Risk Reduction & Intrinsic Biomechanics',58,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Screen-Shot-2018-02-06-at-15.32.25-1.png',NULL,'4785','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Screen-Shot-2018-02-06-at-15.32.25-1.png','4785','featured-image','{\"width\":1202,\"height\":622,\"filesize\":1095211,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/02/Screen-Shot-2018-02-06-at-15.32.25-1.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2018/02/Screen-Shot-2018-02-06-at-15.32.25-1.png\",\"size\":\"full\",\"id\":4785,\"alt\":\"\",\"pixels\":747644,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-23 19:09:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,2,2,'2025-01-20 16:03:29','2018-02-06 15:33:19',0),(650,'https://biomechanicseducation.com/?p=4791','51:08f7cad0eb7a6048aaec232521da1a14',4791,'post','post',3,0,NULL,NULL,'As A Personal Trainer You Either Evolve Or You Become Obsolete…. What Will You Do?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Screen-Shot-2018-02-06-at-15.35.57-1.png',NULL,'4793','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Screen-Shot-2018-02-06-at-15.35.57-1.png','4793','featured-image','{\"width\":1210,\"height\":628,\"filesize\":1470017,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/02/Screen-Shot-2018-02-06-at-15.35.57-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/02/Screen-Shot-2018-02-06-at-15.35.57-1.png\",\"size\":\"full\",\"id\":4793,\"alt\":\"\",\"pixels\":759880,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-02-06 15:36:36',0),(651,'https://biomechanicseducation.com/?p=5131','51:49d2302b1f101ae7c5f792e5a9e193a6',5131,'post','post',3,0,NULL,NULL,'Stop Wishing For Someone Else’s Body…Make Yours The Best It Can Be!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Stop-Wishing-For-Someone-Elses-Body…Make-Yours-The-Best-It-Can-Be.png',NULL,'5255','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Stop-Wishing-For-Someone-Elses-Body…Make-Yours-The-Best-It-Can-Be.png','5255','featured-image','{\"width\":776,\"height\":388,\"filesize\":508799,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/02/Stop-Wishing-For-Someone-Elses-Body…Make-Yours-The-Best-It-Can-Be.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/02/Stop-Wishing-For-Someone-Elses-Body…Make-Yours-The-Best-It-Can-Be.png\",\"size\":\"full\",\"id\":5255,\"alt\":\"\",\"pixels\":301088,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-02-12 11:37:00',0),(652,'https://biomechanicseducation.com/?p=5279','51:e8361db374e0c885d2db58664909a08a',5279,'post','post',3,0,NULL,NULL,'Shoe&#8217;s &#8211; Fashion or Function?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Is-there-a-right-shoe-for-you_-1.png',NULL,'5309','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Is-there-a-right-shoe-for-you_-1.png','5309','featured-image','{\"width\":776,\"height\":388,\"filesize\":481878,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/02/Is-there-a-right-shoe-for-you_-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/02/Is-there-a-right-shoe-for-you_-1.png\",\"size\":\"full\",\"id\":5309,\"alt\":\"\",\"pixels\":301088,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-02-19 20:01:34',0),(653,'https://biomechanicseducation.com/?p=5323','51:2033fa5ce00373d6afd5af31de703ad0',5323,'post','post',3,0,NULL,NULL,'Do You Feel Stressed? And Is Stress Actually A Bad Thing?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Is-Stress-A-Bad-Thing_-Biomechanics-Coach-Biomechanics-Education-Personal-Trainers-1.png',NULL,'5329','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/02/Is-Stress-A-Bad-Thing_-Biomechanics-Coach-Biomechanics-Education-Personal-Trainers-1.png','5329','featured-image','{\"width\":1225,\"height\":612,\"filesize\":974337,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/02/Is-Stress-A-Bad-Thing_-Biomechanics-Coach-Biomechanics-Education-Personal-Trainers-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/02/Is-Stress-A-Bad-Thing_-Biomechanics-Coach-Biomechanics-Education-Personal-Trainers-1.png\",\"size\":\"full\",\"id\":5329,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-02-26 22:15:19',0),(654,'https://biomechanicseducation.com/?p=5409','51:459961ea9a8b8abf1568520d2dc15e2b',5409,'post','post',3,0,NULL,NULL,'Are Your Clients At Risk Of Knee Problems?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Are-your-clients-at-risk-of-knee-injury_-Do-the-quadriceps-dominant-test-and-find-out-1.png',NULL,'6309','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Are-your-clients-at-risk-of-knee-injury_-Do-the-quadriceps-dominant-test-and-find-out-1.png','6309','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1236767,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/03/Are-your-clients-at-risk-of-knee-injury_-Do-the-quadriceps-dominant-test-and-find-out-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/03/Are-your-clients-at-risk-of-knee-injury_-Do-the-quadriceps-dominant-test-and-find-out-1.png\",\"size\":\"full\",\"id\":6309,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-03-05 19:59:15',0),(655,'https://biomechanicseducation.com/?p=6336','51:25bb1530f2a6c0863050ebbca0e30815',6336,'post','post',3,0,NULL,NULL,'Discover How 1 Simple Shoulder Exercise Could Help Reduce Back Pain &#038; Improve Movement','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Discover-1-Simple-Shoulder-Exercise-That-Could-Help-Reduce-Back-Pain-Improve-Movement-1.png',NULL,'6342','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Discover-1-Simple-Shoulder-Exercise-That-Could-Help-Reduce-Back-Pain-Improve-Movement-1.png','6342','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1031366,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/03/Discover-1-Simple-Shoulder-Exercise-That-Could-Help-Reduce-Back-Pain-Improve-Movement-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/03/Discover-1-Simple-Shoulder-Exercise-That-Could-Help-Reduce-Back-Pain-Improve-Movement-1.png\",\"size\":\"full\",\"id\":6342,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-03-12 21:23:36',0),(656,'https://biomechanicseducation.com/?p=6391','51:a30f8f8c9fb866bd867ac84fa17f6529',6391,'post','post',3,0,NULL,NULL,'Why I Believe Best Selling Author &#038; Strength Guru, Dan John, Was Wrong&#8230;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Why-I-Believe-Best-Selling-Author-Strength-Guru-Dan-John-Was-Wrong.png',NULL,'6417','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/03/Why-I-Believe-Best-Selling-Author-Strength-Guru-Dan-John-Was-Wrong.png','6417','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1005872,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/03/Why-I-Believe-Best-Selling-Author-Strength-Guru-Dan-John-Was-Wrong.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/03/Why-I-Believe-Best-Selling-Author-Strength-Guru-Dan-John-Was-Wrong.png\",\"size\":\"full\",\"id\":6417,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-03-19 21:46:23',0),(657,'https://biomechanicseducation.com/?p=6451','51:6295fe2769b25e4827af6e24d0c165f4',6451,'post','post',3,0,NULL,NULL,'Do You Ever Feel Like A Fraud? 3 Steps To Learning Anatomy &#038; Physiology','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/03/3-Steps-To-Learn-Anatomy-Physiology-1-1.png',NULL,'6456','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/03/3-Steps-To-Learn-Anatomy-Physiology-1-1.png','6456','featured-image','{\"width\":1225,\"height\":612,\"filesize\":983162,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/03/3-Steps-To-Learn-Anatomy-Physiology-1-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/03/3-Steps-To-Learn-Anatomy-Physiology-1-1.png\",\"size\":\"full\",\"id\":6456,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-03-26 21:25:34',0),(658,'https://biomechanicseducation.com/?p=6471','51:f3ac36e50a67311b704986440a94d7fa',6471,'post','post',3,0,NULL,NULL,'The Cause, Treatment &#038; Prevention Of Adductor Muscle Tears In Sports Players &#038; Fitness Clients','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/03/The-Cause-Treatment-Prevention-Of-Adductor-Muscle-Tears-In-Sports-Players-Fitness-Clients-1.jpg',NULL,'6472','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/03/The-Cause-Treatment-Prevention-Of-Adductor-Muscle-Tears-In-Sports-Players-Fitness-Clients-1.jpg','6472','featured-image','{\"width\":1713,\"height\":1055,\"filesize\":529138,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/03/The-Cause-Treatment-Prevention-Of-Adductor-Muscle-Tears-In-Sports-Players-Fitness-Clients-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/03/The-Cause-Treatment-Prevention-Of-Adductor-Muscle-Tears-In-Sports-Players-Fitness-Clients-1.jpg\",\"size\":\"full\",\"id\":6472,\"alt\":\"\",\"pixels\":1807215,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-04-02 20:23:26',0),(659,'https://biomechanicseducation.com/?p=6680','51:1db92769366900168b95a24df9baf073',6680,'post','post',3,0,NULL,NULL,'Why Personal Trainers Need To Get Over Their Issues With Group Exercise','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/04/Why-personal-trainers-need-to-get-over-their-issues-with-group-exercise-1.png',NULL,'6681','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/04/Why-personal-trainers-need-to-get-over-their-issues-with-group-exercise-1.png','6681','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1255742,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/04/Why-personal-trainers-need-to-get-over-their-issues-with-group-exercise-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/04/Why-personal-trainers-need-to-get-over-their-issues-with-group-exercise-1.png\",\"size\":\"full\",\"id\":6681,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-04-10 07:14:44',0),(660,'https://biomechanicseducation.com/?p=6721','51:f92676450958eab44d2a8c2efd492712',6721,'post','post',3,0,NULL,NULL,'How A Paradigm Shift Can Change How You Feel In A Moment &#038; Why You Should Get The Whole Story First','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/04/Paradigm-Shift-1.png',NULL,'6724','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/04/Paradigm-Shift-1.png','6724','featured-image','{\"width\":1225,\"height\":612,\"filesize\":978226,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/04/Paradigm-Shift-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/04/Paradigm-Shift-1.png\",\"size\":\"full\",\"id\":6724,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-04-16 19:30:47',0),(661,'https://biomechanicseducation.com/?p=6769','51:2c80a325df7bddef6eb3a0ff75e1c101',6769,'post','post',3,0,NULL,NULL,'4 Tips To Better Serving Your Clients Through Referrals','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/04/4-Tips-To-Better-Serving-Your-Clients-Through-Referrals-1.png',NULL,'6771','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/04/4-Tips-To-Better-Serving-Your-Clients-Through-Referrals-1.png','6771','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1068163,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/04/4-Tips-To-Better-Serving-Your-Clients-Through-Referrals-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/04/4-Tips-To-Better-Serving-Your-Clients-Through-Referrals-1.png\",\"size\":\"full\",\"id\":6771,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-04-23 12:34:17',0),(662,'https://biomechanicseducation.com/tag/top-tips-blog/','62:a9f8cad8099d288c053598436612a4e5',320,'term','post_tag',NULL,NULL,NULL,NULL,'Top tips -blog',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(663,'https://biomechanicseducation.com/tag/abdominal/','58:50f3f3899eb09f73c78b7c0faf5abb95',321,'term','post_tag',NULL,NULL,NULL,NULL,'Abdominal',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(664,'https://biomechanicseducation.com/tag/hernia/','55:fee5d6bcfe84329735a0881fc7749c20',322,'term','post_tag',NULL,NULL,NULL,NULL,'Hernia',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(665,'https://biomechanicseducation.com/tag/injuries/','57:781ebe9be7fdb85ac3820c5fcae5f76b',323,'term','post_tag',NULL,NULL,NULL,NULL,'Injuries',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(666,'https://biomechanicseducation.com/tag/check-up/','57:7115ec0874eabb81ab51fbbc6c60ffdb',324,'term','post_tag',NULL,NULL,NULL,NULL,'Check-up',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(667,'https://biomechanicseducation.com/tag/dentist/','56:8fa9073ac4cfaa0eca946d4a52776411',325,'term','post_tag',NULL,NULL,NULL,NULL,'dentist',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(668,'https://biomechanicseducation.com/tag/hamstrings/','59:034780b67e0c6d3263232d0235e83f74',326,'term','post_tag',NULL,NULL,NULL,NULL,'HAMSTRINGS',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(669,'https://biomechanicseducation.com/tag/quads/','54:987c3baf4d81dc07488a790f6618dba9',327,'term','post_tag',NULL,NULL,NULL,NULL,'quads',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(670,'https://biomechanicseducation.com/tag/missing/','56:ed07a55b11b53940afa4a56c40cf324d',328,'term','post_tag',NULL,NULL,NULL,NULL,'missing',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(671,'https://biomechanicseducation.com/tag/risk-reduction/','53:5306134d3b1466d6306d7d830dc417ce',329,'term','post_tag',NULL,NULL,NULL,NULL,'risk reduction',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:29',NULL,NULL),(672,'https://biomechanicseducation.com/tag/stop-wishing/','61:79c7e50f9b687f08e0e6641568a9fa2b',330,'term','post_tag',NULL,NULL,NULL,NULL,'stop wishing',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(673,'https://biomechanicseducation.com/tag/project/','56:7473dd112c1d1331ffe5240ccb4aaaca',331,'term','post_tag',NULL,NULL,NULL,NULL,'project',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(674,'https://biomechanicseducation.com/tag/foot-biomechanics/','56:e41f2a9d031b38052d3c2246a5b9b60c',332,'term','post_tag',NULL,NULL,NULL,NULL,'FOOT BIOMECHANICS',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2025-01-20 16:03:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:28',NULL,NULL),(675,'https://biomechanicseducation.com/tag/podiatry/','47:1eaf9d9c499b9324872199cc2abaf6a9',333,'term','post_tag',NULL,NULL,NULL,NULL,'PODIATRY',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2025-01-20 16:03:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:28',NULL,NULL),(676,'https://biomechanicseducation.com/tag/pronation/','48:a3cc50d7cfa184f23ee69a570abe5335',334,'term','post_tag',NULL,NULL,NULL,NULL,'PRONATION',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:09:06','2025-01-20 16:03:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:28',NULL,NULL),(677,'https://biomechanicseducation.com/?p=6843','51:7fe135aaca6952096c61cb4e6afff714',6843,'post','post',3,0,NULL,NULL,'How Should Personal Trainer&#8217;s Choose Exercises For Their Client&#8217;s?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/04/Personal-Trainers-Exercise-Prescription-Tired-vs-Better-Biomechanics-Coaching-1.png',NULL,'6846','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/04/Personal-Trainers-Exercise-Prescription-Tired-vs-Better-Biomechanics-Coaching-1.png','6846','featured-image','{\"width\":1225,\"height\":612,\"filesize\":866988,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/04/Personal-Trainers-Exercise-Prescription-Tired-vs-Better-Biomechanics-Coaching-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/04/Personal-Trainers-Exercise-Prescription-Tired-vs-Better-Biomechanics-Coaching-1.png\",\"size\":\"full\",\"id\":6846,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-04-30 17:48:13',0),(678,'https://biomechanicseducation.com/?p=7024','51:d08654c10535c33cf40403a80feedd27',7024,'post','post',3,0,NULL,NULL,'What Do A Good Night Sleep, A Crunchy McFlurry &#038; An Amazing Learning Experience Have To Do With You?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/05/What-Is-Your-Personal-Training-Guarantee_-Biomechanics-Coaching-1.png',NULL,'7025','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/05/What-Is-Your-Personal-Training-Guarantee_-Biomechanics-Coaching-1.png','7025','featured-image','{\"width\":1225,\"height\":612,\"filesize\":942285,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/05/What-Is-Your-Personal-Training-Guarantee_-Biomechanics-Coaching-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/05/What-Is-Your-Personal-Training-Guarantee_-Biomechanics-Coaching-1.png\",\"size\":\"full\",\"id\":7025,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-05-07 19:31:54',0),(679,'https://biomechanicseducation.com/?p=7098','51:0efbb53183e5aa930664553896beb56b',7098,'post','post',3,0,NULL,NULL,'How &#8220;Intelligent&#8221; Are You? And Does It Actually Matter?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/05/How-intelligent-are-you_-And-does-it-actually-matter_-Biomechanics-Coach-Personal-Trainer-1.png',NULL,'7099','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/05/How-intelligent-are-you_-And-does-it-actually-matter_-Biomechanics-Coach-Personal-Trainer-1.png','7099','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1502595,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/05/How-intelligent-are-you_-And-does-it-actually-matter_-Biomechanics-Coach-Personal-Trainer-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/05/How-intelligent-are-you_-And-does-it-actually-matter_-Biomechanics-Coach-Personal-Trainer-1.png\",\"size\":\"full\",\"id\":7099,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-05-14 19:13:04',0),(680,'https://biomechanicseducation.com/?p=7228','51:54b2f2d2f994bae14d0c781e0a2cd950',7228,'post','post',3,0,NULL,NULL,'Embrace Your Genetics &#038; Imperfections &#038; Why Personal Trainers Should Treat Every Client As An Individual','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/05/Embrace-the-Imperfections-why-personal-trainers-need-to-treat-everyone-as-individuals-1.png',NULL,'7229','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/05/Embrace-the-Imperfections-why-personal-trainers-need-to-treat-everyone-as-individuals-1.png','7229','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1455573,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/05/Embrace-the-Imperfections-why-personal-trainers-need-to-treat-everyone-as-individuals-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/05/Embrace-the-Imperfections-why-personal-trainers-need-to-treat-everyone-as-individuals-1.png\",\"size\":\"full\",\"id\":7229,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-05-28 18:47:45',0),(681,'https://biomechanicseducation.com/?p=7297','51:1b9ecfe8b642f2c0110e25ac5323f19b',7297,'post','post',3,0,NULL,NULL,'Are All Biomechanical Studies Flawed? And Would You Like To Squat Better?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/06/Are-All-Biomechanical-Studies-Flawed_-And-Would-You-Like-To-Squat-Better_-Biomechanics-Coaching-1.png',NULL,'7303','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/06/Are-All-Biomechanical-Studies-Flawed_-And-Would-You-Like-To-Squat-Better_-Biomechanics-Coaching-1.png','7303','featured-image','{\"width\":1225,\"height\":612,\"filesize\":917980,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/06/Are-All-Biomechanical-Studies-Flawed_-And-Would-You-Like-To-Squat-Better_-Biomechanics-Coaching-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/06/Are-All-Biomechanical-Studies-Flawed_-And-Would-You-Like-To-Squat-Better_-Biomechanics-Coaching-1.png\",\"size\":\"full\",\"id\":7303,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-06-04 19:40:05',0),(682,'https://biomechanicseducation.com/?p=7474','51:2e60db4b005463a7737832654f3ce0bc',7474,'post','post',3,0,NULL,NULL,'Single Joint Vs Functional Assessments &#8211; A Personal Trainer&#8217;s Guide','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/06/Functional-Movement-Tests-vs-Single-Joint-Assessment-A-personal-trainers-guide-1.png',NULL,'7476','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/06/Functional-Movement-Tests-vs-Single-Joint-Assessment-A-personal-trainers-guide-1.png','7476','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1187539,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/06/Functional-Movement-Tests-vs-Single-Joint-Assessment-A-personal-trainers-guide-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/06/Functional-Movement-Tests-vs-Single-Joint-Assessment-A-personal-trainers-guide-1.png\",\"size\":\"full\",\"id\":7476,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-06-13 08:45:00',0),(683,'https://biomechanicseducation.com/?p=7522','51:675e28d2df8f7c337c1bd5ddfb62c231',7522,'post','post',3,0,NULL,NULL,'How To Squat Ass To Grass (A2G) &#8211; Project Squat &#8211; Part 1','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/06/How-To-Squat-Ass-To-Grass-Project-Squat-Part-1-1.png',NULL,'7523','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/06/How-To-Squat-Ass-To-Grass-Project-Squat-Part-1-1.png','7523','featured-image','{\"width\":1225,\"height\":612,\"filesize\":420394,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/06/How-To-Squat-Ass-To-Grass-Project-Squat-Part-1-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/06/How-To-Squat-Ass-To-Grass-Project-Squat-Part-1-1.png\",\"size\":\"full\",\"id\":7523,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-06-18 14:09:05',0),(684,'https://biomechanicseducation.com/?p=7591','51:f6ae44bda0b116f263931fafb75508ea',7591,'post','post',3,0,NULL,NULL,'Project Squat &#8211; Part 2 &#8211; How To Test For &#038; Improve Your Pelvic Function &#038; How It Affects Your Squat','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/06/Project-Squat-Part-2-How-To-Test-For-And-Improve-Pelvic-Function-1.png',NULL,'7592','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/06/Project-Squat-Part-2-How-To-Test-For-And-Improve-Pelvic-Function-1.png','7592','featured-image','{\"width\":1225,\"height\":612,\"filesize\":921675,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/06/Project-Squat-Part-2-How-To-Test-For-And-Improve-Pelvic-Function-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/06/Project-Squat-Part-2-How-To-Test-For-And-Improve-Pelvic-Function-1.png\",\"size\":\"full\",\"id\":7592,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:33','2018-06-25 20:46:24',0),(685,'https://biomechanicseducation.com/?p=7657','51:3f3aa91d01594ca7b5bf7da2c92cb401',7657,'post','post',3,0,NULL,NULL,'Project Squat A2G: Part 3 &#8211; How To Assess For Dysfunction In The Spine','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-Squat-Part-3-How-To-Test-For-And-Improve-Spine-Dysfunction-1.png',NULL,'7661','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-Squat-Part-3-How-To-Test-For-And-Improve-Spine-Dysfunction-1.png','7661','featured-image','{\"width\":1225,\"height\":612,\"filesize\":641478,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-Squat-Part-3-How-To-Test-For-And-Improve-Spine-Dysfunction-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/07/Project-Squat-Part-3-How-To-Test-For-And-Improve-Spine-Dysfunction-1.png\",\"size\":\"full\",\"id\":7661,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-07-02 20:13:21',0),(686,'https://biomechanicseducation.com/?p=7845','51:5503b2a484980599cceb2e7068c29d1c',7845,'post','post',3,0,NULL,NULL,'Project Squat A2G: Part 4 &#8211; The Nervous System &#038; How It Affects The Squat','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-Squat-Part-4-The-Nervous-System-And-How-It-Affects-The-Squat-1.png',NULL,'7852','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-Squat-Part-4-The-Nervous-System-And-How-It-Affects-The-Squat-1.png','7852','featured-image','{\"width\":1225,\"height\":612,\"filesize\":650319,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-Squat-Part-4-The-Nervous-System-And-How-It-Affects-The-Squat-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/07/Project-Squat-Part-4-The-Nervous-System-And-How-It-Affects-The-Squat-1.png\",\"size\":\"full\",\"id\":7852,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-07-09 17:00:57',0),(687,'https://biomechanicseducation.com/?p=7920','51:c3a652951482705375b5eb79fff9c656',7920,'post','post',3,0,NULL,NULL,'Project Squat A2G Part 5 &#8211; How Shoulder Mechanics Affects Your Squat','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-squat-a2g-how-your-shoulder-affects-your-squat-depth-1.png',NULL,'7923','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-squat-a2g-how-your-shoulder-affects-your-squat-depth-1.png','7923','featured-image','{\"width\":1225,\"height\":612,\"filesize\":426964,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-squat-a2g-how-your-shoulder-affects-your-squat-depth-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/07/Project-squat-a2g-how-your-shoulder-affects-your-squat-depth-1.png\",\"size\":\"full\",\"id\":7923,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-07-15 10:34:19',0),(688,'https://biomechanicseducation.com/?p=7995','51:d9bdab8d82fcbc6622b30a4500fede26',7995,'post','post',3,0,NULL,NULL,'Project Squat A2G Part 6 &#8211; The Knee &#038; Your Squat','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-squat-a2g-how-your-knees-affect-your-squat-1.png',NULL,'7997','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-squat-a2g-how-your-knees-affect-your-squat-1.png','7997','featured-image','{\"width\":1225,\"height\":612,\"filesize\":453286,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-squat-a2g-how-your-knees-affect-your-squat-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/07/Project-squat-a2g-how-your-knees-affect-your-squat-1.png\",\"size\":\"full\",\"id\":7997,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-07-23 13:15:09',0),(689,'https://biomechanicseducation.com/?p=8100','51:d5498afd65239c1222de4e4e87d6e92c',8100,'post','post',3,0,NULL,NULL,'Project Squat A2G Part 7 &#8211; How Your Ankles &#038; Feet Affect Your Squat','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat-1.png',NULL,'8104','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat-1.png','8104','featured-image','{\"width\":1225,\"height\":612,\"filesize\":538288,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/07/Project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/07/Project-squat-a2g-part-7-how-your-ankles-feet-affect-your-squat-1.png\",\"size\":\"full\",\"id\":8104,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-07-30 14:16:00',0),(690,'https://biomechanicseducation.com/?p=8301','51:8ac59b5ac316527f66d83c1161e9fd7f',8301,'post','post',3,0,NULL,NULL,'Project Squat A2G &#8211; Part 8 of 8 &#8211; When Getting A Deeper Squat Isn&#8217;t Just About What You Do In The Gym','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/08/Part-8-Project-Squat-When-Squatting-Deeper-Is-More-Than-Just-About-What-You-Do-In-The-Gym-1.png',NULL,'8302','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/08/Part-8-Project-Squat-When-Squatting-Deeper-Is-More-Than-Just-About-What-You-Do-In-The-Gym-1.png','8302','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1066558,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/08/Part-8-Project-Squat-When-Squatting-Deeper-Is-More-Than-Just-About-What-You-Do-In-The-Gym-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/08/Part-8-Project-Squat-When-Squatting-Deeper-Is-More-Than-Just-About-What-You-Do-In-The-Gym-1.png\",\"size\":\"full\",\"id\":8302,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-08-06 18:37:34',0),(691,'https://biomechanicseducation.com/?p=8345','51:18cee4f5af6a7f3ec5e9533978018712',8345,'post','post',3,0,NULL,NULL,'6 Ways To Improve Your Group Fitness Programmes &#8211; A Personal Trainers &#038; Group Instructors Guide','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/08/6-Tips-To-Improve-Your-Group-Fitness-Programmes-1.png',NULL,'8364','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/08/6-Tips-To-Improve-Your-Group-Fitness-Programmes-1.png','8364','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1247035,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/08/6-Tips-To-Improve-Your-Group-Fitness-Programmes-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/08/6-Tips-To-Improve-Your-Group-Fitness-Programmes-1.png\",\"size\":\"full\",\"id\":8364,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-08-13 13:47:21',0),(692,'https://biomechanicseducation.com/tag/supination/','49:2dbac5f885e8d4172a69bb5c77d6893b',335,'term','post_tag',NULL,NULL,NULL,NULL,'SUPINATION',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2025-01-20 16:03:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:28',NULL,NULL),(693,'https://biomechanicseducation.com/tag/foot-position/','52:1655c41fa7bcb1af4baf872acb052eff',336,'term','post_tag',NULL,NULL,NULL,NULL,'foot position',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2025-01-20 16:03:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:28',NULL,NULL),(694,'https://biomechanicseducation.com/tag/quadricep/','48:7f704d36c889ef33f58e21e835f8ed01',337,'term','post_tag',NULL,NULL,NULL,NULL,'quadricep',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2025-01-20 16:03:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:28',NULL,NULL),(695,'https://biomechanicseducation.com/tag/squat-width/','50:e510feab14a9d1cdf605ebae8b7508e5',338,'term','post_tag',NULL,NULL,NULL,NULL,'squat width',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2025-01-20 16:03:28',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:03:28',NULL,NULL),(696,'https://biomechanicseducation.com/tag/sports-therapy/','63:b7aff10ff7b3115d96b2c9cbd8cc289a',339,'term','post_tag',NULL,NULL,NULL,NULL,'sports therapy',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(697,'https://biomechanicseducation.com/tag/adapt/','54:84f2ec209cfc6c7c5e22f32f527c5b7d',340,'term','post_tag',NULL,NULL,NULL,NULL,'adapt',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(698,'https://biomechanicseducation.com/tag/coaches/','56:31470c0a8f110473f7478198ce0067c5',341,'term','post_tag',NULL,NULL,NULL,NULL,'coaches',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(699,'https://biomechanicseducation.com/tag/covid/','54:5b61a4c75c78043fe087e91db9c625fa',342,'term','post_tag',NULL,NULL,NULL,NULL,'covid',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(700,'https://biomechanicseducation.com/tag/industry/','57:0b0158b385f1fc35e4eb1f5c5ddae609',343,'term','post_tag',NULL,NULL,NULL,NULL,'industry',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(701,'https://biomechanicseducation.com/tag/covid-19/','57:25cd90247c054a43b119edca054651aa',344,'term','post_tag',NULL,NULL,NULL,NULL,'covid 19',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(702,'https://biomechanicseducation.com/tag/future/','55:0259dff7c31edacca6ae5e05d7a59535',345,'term','post_tag',NULL,NULL,NULL,NULL,'future',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(703,'https://biomechanicseducation.com/tag/lockdown-bundle/','64:687c40374d77381a6ce4d07ac3b86a83',346,'term','post_tag',NULL,NULL,NULL,NULL,'lockdown bundle',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(704,'https://biomechanicseducation.com/tag/imovefreely/','60:78af16c800b4cd22918e16265b5d98b0',347,'term','post_tag',NULL,NULL,NULL,NULL,'imovefreely',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(705,'https://biomechanicseducation.com/tag/programme/','58:fbab72bf3959546b714f5ec814724f06',348,'term','post_tag',NULL,NULL,NULL,NULL,'PROGRAMME',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(706,'https://biomechanicseducation.com/tag/reconditioning/','63:6e078706a52135d543ffdadd9a2880f7',349,'term','post_tag',NULL,NULL,NULL,NULL,'RECONDITIONING',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(707,'https://biomechanicseducation.com/?p=8441','51:dd15030626846fe9156c4ad565185dac',8441,'post','post',3,0,NULL,NULL,'How Do We As Fitness Professionals, Educate Our Clients Towards Behaviour Change?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/08/How-Do-We-As-Fitness-Professionals-Educate-Our-Clients-Towards-Behaviour-Change_-1.png',NULL,'8442','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/08/How-Do-We-As-Fitness-Professionals-Educate-Our-Clients-Towards-Behaviour-Change_-1.png','8442','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1008618,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/08/How-Do-We-As-Fitness-Professionals-Educate-Our-Clients-Towards-Behaviour-Change_-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/08/How-Do-We-As-Fitness-Professionals-Educate-Our-Clients-Towards-Behaviour-Change_-1.png\",\"size\":\"full\",\"id\":8442,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-08-20 18:47:46',0),(708,'https://biomechanicseducation.com/?p=8529','51:8cc7dc544dda1e6911bc7dfd7ba5d5b2',8529,'post','post',3,0,NULL,NULL,'Identifying The Root Problem, Accountability &#038; Owning It &#8211; A Guide To Helping Your Clients Achieve Their Goals','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/08/Revealed_-The-secret-to-helping-clients-reach-their-goals-1.png',NULL,'8531','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/08/Revealed_-The-secret-to-helping-clients-reach-their-goals-1.png','8531','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1032318,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/08/Revealed_-The-secret-to-helping-clients-reach-their-goals-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/08/Revealed_-The-secret-to-helping-clients-reach-their-goals-1.png\",\"size\":\"full\",\"id\":8531,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-08-27 10:22:00',0),(709,'https://biomechanicseducation.com/?p=8598','51:1c08bdd5a810b225ea1c4bef0b676706',8598,'post','post',3,0,NULL,NULL,'4 Tactics To Help Your Clients Stick To Their New Healthy Habits','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/08/4-Tactics-To-Help-Your-Clients-Stick-To-Their-New-Healthy-Habits-1.png',NULL,'8645','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/08/4-Tactics-To-Help-Your-Clients-Stick-To-Their-New-Healthy-Habits-1.png','8645','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1046322,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/08/4-Tactics-To-Help-Your-Clients-Stick-To-Their-New-Healthy-Habits-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/08/4-Tactics-To-Help-Your-Clients-Stick-To-Their-New-Healthy-Habits-1.png\",\"size\":\"full\",\"id\":8645,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-09-03 08:25:13',0),(710,'https://biomechanicseducation.com/?p=8804','51:76ced9577ccfdf489a47253b16e17110',8804,'post','post',3,0,NULL,NULL,'How To Stay Focused On Your Goals While The Voices In Your Head Battle It Out','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/09/How-To-Stay-Focused-On-Your-Goals-While-The-Voices-In-Your-Head-Battle-It-Out-1.png',NULL,'8805','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/09/How-To-Stay-Focused-On-Your-Goals-While-The-Voices-In-Your-Head-Battle-It-Out-1.png','8805','featured-image','{\"width\":1225,\"height\":612,\"filesize\":860706,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/09/How-To-Stay-Focused-On-Your-Goals-While-The-Voices-In-Your-Head-Battle-It-Out-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/09/How-To-Stay-Focused-On-Your-Goals-While-The-Voices-In-Your-Head-Battle-It-Out-1.png\",\"size\":\"full\",\"id\":8805,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-09-10 10:09:19',0),(711,'https://biomechanicseducation.com/?p=8890','51:6de021c7999f41fe2815083e0ebe293f',8890,'post','post',3,0,NULL,NULL,'How To Stop The Bad Habits From Creeping Back In When You Begin Your Fitness Journey','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/09/How-to-stop-giving-in-to-temptation-and-stay-on-track-to-your-goals-1.png',NULL,'8891','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/09/How-to-stop-giving-in-to-temptation-and-stay-on-track-to-your-goals-1.png','8891','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1218085,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/09/How-to-stop-giving-in-to-temptation-and-stay-on-track-to-your-goals-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/09/How-to-stop-giving-in-to-temptation-and-stay-on-track-to-your-goals-1.png\",\"size\":\"full\",\"id\":8891,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-09-17 07:08:24',0),(712,'https://biomechanicseducation.com/?p=9178','51:38d0dfb398dfe368c516a35e11d53ed7',9178,'post','post',3,0,NULL,NULL,'4 Minutes Could Change Your Life Forever &#8211; Breaking Bad Habits','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/09/Breaking-Bad-habits-with-the-4-minute-rule-1.png',NULL,'9179','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/09/Breaking-Bad-habits-with-the-4-minute-rule-1.png','9179','featured-image','{\"width\":1225,\"height\":612,\"filesize\":754609,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/09/Breaking-Bad-habits-with-the-4-minute-rule-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/09/Breaking-Bad-habits-with-the-4-minute-rule-1.png\",\"size\":\"full\",\"id\":9179,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-09-24 17:12:36',0),(713,'https://biomechanicseducation.com/?p=9226','51:b514bb924603e3034933f9e95b79b558',9226,'post','post',3,0,NULL,NULL,'Willpower &#038; Attitude When Dealing With Bad Attitudes On A Fitness Journey','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/10/Willpower-Attitude-When-Dealing-With-Bad-Attitudes-On-A-Fitness-Journey-1.png',NULL,'9257','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/10/Willpower-Attitude-When-Dealing-With-Bad-Attitudes-On-A-Fitness-Journey-1.png','9257','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1011791,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/10/Willpower-Attitude-When-Dealing-With-Bad-Attitudes-On-A-Fitness-Journey-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/10/Willpower-Attitude-When-Dealing-With-Bad-Attitudes-On-A-Fitness-Journey-1.png\",\"size\":\"full\",\"id\":9257,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-10-01 13:57:57',0),(714,'https://biomechanicseducation.com/?p=9417','51:2ad544c0b54ba9530e2db9c92610cd3f',9417,'post','post',3,0,NULL,NULL,'Putting Together A Plan Of Action To Ensure Success In Your Fitness Goals','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/10/Creating-a-plan-of-action-to-ensure-success-with-your-fitness-goals-1.png',NULL,'9422','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/10/Creating-a-plan-of-action-to-ensure-success-with-your-fitness-goals-1.png','9422','featured-image','{\"width\":1225,\"height\":612,\"filesize\":931600,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/10/Creating-a-plan-of-action-to-ensure-success-with-your-fitness-goals-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/10/Creating-a-plan-of-action-to-ensure-success-with-your-fitness-goals-1.png\",\"size\":\"full\",\"id\":9422,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-10-08 13:31:24',0),(715,'https://biomechanicseducation.com/?p=9491','51:f568351b160dcbe90f781e7e3a593216',9491,'post','post',3,0,NULL,NULL,'Stopping A Client&#8217;s Small Blip Becoming A Major Fail &#8211; Shifting Paradigms','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/10/Stopping-a-small-blip-becoming-a-major-fail-Personal-Trainers-Guide-To-Shifting-Paradigms-1.png',NULL,'9492','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/10/Stopping-a-small-blip-becoming-a-major-fail-Personal-Trainers-Guide-To-Shifting-Paradigms-1.png','9492','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1050813,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/10/Stopping-a-small-blip-becoming-a-major-fail-Personal-Trainers-Guide-To-Shifting-Paradigms-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/10/Stopping-a-small-blip-becoming-a-major-fail-Personal-Trainers-Guide-To-Shifting-Paradigms-1.png\",\"size\":\"full\",\"id\":9492,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-10-15 15:51:19',0),(716,'https://biomechanicseducation.com/?p=9560','51:04b5244d577315aef9b3e1fee26ad464',9560,'post','post',3,0,NULL,NULL,'The 4 Legs of Life &#8211; The Key To Creating Balance In Your Life','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/10/The-4-Legs-Of-Life-Creating-Balance-In-Your-Life-1.png',NULL,'9561','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/10/The-4-Legs-Of-Life-Creating-Balance-In-Your-Life-1.png','9561','featured-image','{\"width\":1225,\"height\":612,\"filesize\":895698,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/10/The-4-Legs-Of-Life-Creating-Balance-In-Your-Life-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/10/The-4-Legs-Of-Life-Creating-Balance-In-Your-Life-1.png\",\"size\":\"full\",\"id\":9561,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-10-22 16:16:00',0),(717,'https://biomechanicseducation.com/?p=9698','51:3a6e78b68c9b42540aa41c4335963b57',9698,'post','post',3,0,NULL,NULL,'The Ripple Effect &#8211; How 1 Action Can Impact Hundreds Of Others &#8211; What&#8217;s YOUR Ripple Effect?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/10/The-Ripple-Effect-How-1-action-can-impact-hundreds-of-people-1.png',NULL,'9701','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/10/The-Ripple-Effect-How-1-action-can-impact-hundreds-of-people-1.png','9701','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1205352,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/10/The-Ripple-Effect-How-1-action-can-impact-hundreds-of-people-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/10/The-Ripple-Effect-How-1-action-can-impact-hundreds-of-people-1.png\",\"size\":\"full\",\"id\":9701,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-10-29 19:08:42',0),(718,'https://biomechanicseducation.com/?p=9752','51:132763a87acc8ece16848929eee7a3f7',9752,'post','post',3,0,NULL,NULL,'The Personal Trainers Guide To Working With Clients Who Are In Pain','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/11/Personal-trainers-guide-to-dealing-with-a-client-who-is-in-pain-1.png',NULL,'9753','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/11/Personal-trainers-guide-to-dealing-with-a-client-who-is-in-pain-1.png','9753','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1127566,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/11/Personal-trainers-guide-to-dealing-with-a-client-who-is-in-pain-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/11/Personal-trainers-guide-to-dealing-with-a-client-who-is-in-pain-1.png\",\"size\":\"full\",\"id\":9753,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-11-05 20:21:01',0),(719,'https://biomechanicseducation.com/?p=9947','51:b2c26006cf955703ef36f26fa8ae8a2d',9947,'post','post',3,0,NULL,NULL,'Biomechanics Coaching &#038; Strength &#038; Conditioning &#8211; The Ultimate Combination','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/11/Strength-Conditioning-Education-Biomechanics-Coaching-1-300x78.png',NULL,NULL,'first-content-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/11/Strength-Conditioning-Education-Biomechanics-Coaching-1-300x78.png',NULL,'first-content-image',NULL,NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-11-12 17:00:07',0),(720,'https://biomechanicseducation.com/?p=10018','52:5c4ecfcf2c514ded7e73c736f42c18dd',10018,'post','post',3,0,NULL,NULL,'Dare To Dream &#8211; The Next Steps In The Biomechanics Education Story &#8211; The Academy','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/11/Biomechanics-Education-Academy-Dare-To-Dream-1.png',NULL,'10053','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/11/Biomechanics-Education-Academy-Dare-To-Dream-1.png','10053','featured-image','{\"width\":1225,\"height\":612,\"filesize\":697590,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/11/Biomechanics-Education-Academy-Dare-To-Dream-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/11/Biomechanics-Education-Academy-Dare-To-Dream-1.png\",\"size\":\"full\",\"id\":10053,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-11-19 11:04:46',0),(721,'https://biomechanicseducation.com/?p=10090','52:fb9e563d08a25c4e3274b0c069f6ff6f',10090,'post','post',3,0,NULL,NULL,'My Experience Of Being A Level 4 Strength &#038; Conditioning Learner &#8211; Day 1 &#038; 2','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/11/My-Experience-Of-Being-A-Level-4-Strength-Conditioning-Learner-Day-1-2-1.jpg',NULL,'10130','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/11/My-Experience-Of-Being-A-Level-4-Strength-Conditioning-Learner-Day-1-2-1.jpg','10130','featured-image','{\"width\":1600,\"height\":1200,\"filesize\":216394,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/11/My-Experience-Of-Being-A-Level-4-Strength-Conditioning-Learner-Day-1-2-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/11/My-Experience-Of-Being-A-Level-4-Strength-Conditioning-Learner-Day-1-2-1.jpg\",\"size\":\"full\",\"id\":10130,\"alt\":\"\",\"pixels\":1920000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-11-26 20:49:51',0),(722,'https://biomechanicseducation.com/tag/rehab/','54:e62e41c75a216597895c51cac0d9376e',350,'term','post_tag',NULL,NULL,NULL,NULL,'REHAB',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(723,'https://biomechanicseducation.com/tag/plan/','53:487b4feb652d6bd3120c65a97d3a08b4',351,'term','post_tag',NULL,NULL,NULL,NULL,'plan',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(724,'https://biomechanicseducation.com/tag/pain-science/','61:4dcdd347bad6813f5bae1c09a6ab7289',352,'term','post_tag',NULL,NULL,NULL,NULL,'pain science',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(725,'https://biomechanicseducation.com/tag/application-theory/','67:35d474c08a967e98587a8595bd8ed937',353,'term','post_tag',NULL,NULL,NULL,NULL,'application theory',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(726,'https://biomechanicseducation.com/tag/complex/','56:4104f4b521dede94037c33adf9480f74',354,'term','post_tag',NULL,NULL,NULL,NULL,'complex',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(727,'https://biomechanicseducation.com/tag/simple/','55:4ee7d869ab508d15445b202675111202',355,'term','post_tag',NULL,NULL,NULL,NULL,'simple',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(728,'https://biomechanicseducation.com/tag/biomechanics-coach-training-camp/','81:2b38005e6f9896a6c96bfd4931abbe2b',356,'term','post_tag',NULL,NULL,NULL,NULL,'Biomechanics Coach™ Training Camp',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(729,'https://biomechanicseducation.com/tag/interview/','58:37019e27c4519b903e901184062d81d2',357,'term','post_tag',NULL,NULL,NULL,NULL,'INTERVIEW',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(730,'https://biomechanicseducation.com/tag/sam-hickery/','60:2c432c307f1e940b062773ef881c5b32',358,'term','post_tag',NULL,NULL,NULL,NULL,'SAM HICKERY',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(731,'https://biomechanicseducation.com/tag/strength-conditioning/','70:c932c3a694c92fff6b207e0f5dffbff1',359,'term','post_tag',NULL,NULL,NULL,NULL,'STRENGTH CONDITIONING',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(732,'https://biomechanicseducation.com/tag/abductors/','48:056ca6586798668639fce179d1699a0b',360,'term','post_tag',NULL,NULL,NULL,NULL,'abductors',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(733,'https://biomechanicseducation.com/tag/adductors/','48:0704ca94ffd2e86fccd14a4bbba97fde',361,'term','post_tag',NULL,NULL,NULL,NULL,'adductors',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(734,'https://biomechanicseducation.com/tag/glutes/','45:1667894a056b15a73b83f03d04ca60f3',362,'term','post_tag',NULL,NULL,NULL,NULL,'glutes',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(735,'https://biomechanicseducation.com/tag/piriformis/','49:f256b611949c72aea87f031485323c18',363,'term','post_tag',NULL,NULL,NULL,NULL,'piriformis',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(736,'https://biomechanicseducation.com/tag/coxa/','43:2606478b1efbf1b153a8e487c7bc8b22',364,'term','post_tag',NULL,NULL,NULL,NULL,'coxa',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:39:06','2025-01-20 15:59:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(737,'https://biomechanicseducation.com/?p=10442','52:0cd2fe8cf1de0cba2a28695107a8bec1',10442,'post','post',3,0,NULL,NULL,'When You Take Risks &#038; Push Yourself To Grow','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/12/Taking-Risks.-Take-That-Leap-Of-Faith.png',NULL,'10443','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/12/Taking-Risks.-Take-That-Leap-Of-Faith.png','10443','featured-image','{\"width\":1225,\"height\":612,\"filesize\":914354,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/12/Taking-Risks.-Take-That-Leap-Of-Faith.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/12/Taking-Risks.-Take-That-Leap-Of-Faith.png\",\"size\":\"full\",\"id\":10443,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-12-17 17:53:39',0),(738,'https://biomechanicseducation.com/?p=10370','52:810db57ca82fca6264a12526383e7595',10370,'post','post',3,0,NULL,NULL,'VTCT Level 4 Certificate in Exercise for Management of Low Back Pain with Biomechanics Coaching Is Here!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/12/Level-4-Low-Back-Pain-Qualification-for-Personal-Trainers-1.png',NULL,'10372','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/12/Level-4-Low-Back-Pain-Qualification-for-Personal-Trainers-1.png','10372','featured-image','{\"width\":1225,\"height\":612,\"filesize\":872886,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/12/Level-4-Low-Back-Pain-Qualification-for-Personal-Trainers-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/12/Level-4-Low-Back-Pain-Qualification-for-Personal-Trainers-1.png\",\"size\":\"full\",\"id\":10372,\"alt\":\"Level 4 Low Back Pain Qualification for Personal Trainers\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2018-12-26 22:15:39',0),(739,'https://biomechanicseducation.com/?p=10762','52:f183496ee9512980d8899b71147e2d83',10762,'post','post',3,0,NULL,NULL,'AN ‘ANTERIOR TILT’ Of The Pelvis IS NOT A DIAGNOSIS!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/01/AN-‘ANTERIOR-TILT-Of-The-Pelvis-IS-NOT-A-DIAGNOSIS.png',NULL,'10763','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/01/AN-‘ANTERIOR-TILT-Of-The-Pelvis-IS-NOT-A-DIAGNOSIS.png','10763','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1173171,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/01/AN-‘ANTERIOR-TILT-Of-The-Pelvis-IS-NOT-A-DIAGNOSIS.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/01/AN-‘ANTERIOR-TILT-Of-The-Pelvis-IS-NOT-A-DIAGNOSIS.png\",\"size\":\"full\",\"id\":10763,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2019-01-07 15:02:19',0),(740,'https://biomechanicseducation.com/?p=10832','52:4ea1f00922bc6edfb166b09f36876d95',10832,'post','post',3,0,NULL,NULL,'Always, Always Start With Why','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png',NULL,'10836','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png','10836','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1017135,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png\",\"size\":\"full\",\"id\":10836,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2019-01-14 20:00:25',0),(741,'https://biomechanicseducation.com/?p=10929','52:e313feeaf98b130a73fe37ba558f70cb',10929,'post','post',3,0,NULL,NULL,'Rebel Against The Chair &#8211; How Avoiding Sitting Can Dramatically Improve Our Health','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Chair-Rebellion-Biomechanics-Education.png',NULL,'10930','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Chair-Rebellion-Biomechanics-Education.png','10930','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1126364,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Chair-Rebellion-Biomechanics-Education.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/01/Chair-Rebellion-Biomechanics-Education.png\",\"size\":\"full\",\"id\":10930,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2019-01-21 21:27:57',0),(742,'https://biomechanicseducation.com/?p=11024','52:cdcac67cfe3fb6c473c69f5521cbf3b7',11024,'post','post',3,0,NULL,NULL,'Grit Vs Talent: Which Will More Likely Result In Achievement?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Grit-Vs-Talent.png',NULL,'11025','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Grit-Vs-Talent.png','11025','featured-image','{\"width\":1225,\"height\":612,\"filesize\":442086,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/01/Grit-Vs-Talent.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/01/Grit-Vs-Talent.png\",\"size\":\"full\",\"id\":11025,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2019-01-28 15:19:58',0),(743,'https://biomechanicseducation.com/?p=11155','52:3cf3051ece0fd4bfbab36830029ec391',11155,'post','post',3,0,NULL,NULL,'How To Improve Your Front Squat Or Over Head Squat','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Overhead-Squat-Front-Squat-Why-we-do-them-and-how-to-improve-them.png',NULL,'11156','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Overhead-Squat-Front-Squat-Why-we-do-them-and-how-to-improve-them.png','11156','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1345462,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/02/Overhead-Squat-Front-Squat-Why-we-do-them-and-how-to-improve-them.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/02/Overhead-Squat-Front-Squat-Why-we-do-them-and-how-to-improve-them.png\",\"size\":\"full\",\"id\":11156,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2019-02-04 15:33:18',0),(744,'https://biomechanicseducation.com/personal-trainers-periodisation-what-is-it-and-why-should-they-be-using-it/','109:41d30ccdcf159c070e9e1d352eb4813a',11407,'post','post',3,0,'Personal Trainers & Periodisation %%sep%% Biomechanics Education','Discover periodisation training, its models, and how it optimizes performance while reducing injury risk in athletes.','Personal Trainers &#038; Periodisation: What Is It and Why Should We Be Using it?','publish',NULL,0,NULL,NULL,NULL,'Periodisation',80,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Periodisation-and-personal-trainers.png',NULL,'11408','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Periodisation-and-personal-trainers.png','11408','featured-image','{\"width\":1225,\"height\":612,\"filesize\":931600,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/02/Periodisation-and-personal-trainers.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2019/02/Periodisation-and-personal-trainers.png\",\"size\":\"full\",\"id\":11408,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',1,NULL,NULL,'2024-07-23 19:54:07','2025-01-20 16:04:17',1,NULL,NULL,NULL,NULL,0,4,2,'2025-01-20 16:04:17','2019-02-11 16:02:42',0),(745,'https://biomechanicseducation.com/?p=11549','52:b01fe023f68e8cc18e999f12bb43e6e2',11549,'post','post',3,0,NULL,NULL,'Funding For Ex-Military via ELCAS &#8211; Become A Level 4 Low Back Pain Specialist Biomechanics Coach','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/02/ELCAS-Funding-Ex-Military-Funding-For-Biomechanics-Education.png',NULL,'11550','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/02/ELCAS-Funding-Ex-Military-Funding-For-Biomechanics-Education.png','11550','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1412036,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/02/ELCAS-Funding-Ex-Military-Funding-For-Biomechanics-Education.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/02/ELCAS-Funding-Ex-Military-Funding-For-Biomechanics-Education.png\",\"size\":\"full\",\"id\":11550,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2019-02-18 18:33:51',0),(746,'https://biomechanicseducation.com/?p=11702','52:9d76ef2bdc1bb1b3b469047f06e3420e',11702,'post','post',3,0,NULL,NULL,'The BIG Biomechanics Coach Weekender! Master Trainers, Biomechanics Coach Training Camp &#038; The Kaizen Project','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Eddie-Hall-Kaizen-Project.jpeg',NULL,'11712','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Eddie-Hall-Kaizen-Project.jpeg','11712','featured-image','{\"width\":960,\"height\":540,\"filesize\":49518,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/02/Eddie-Hall-Kaizen-Project.jpeg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/02/Eddie-Hall-Kaizen-Project.jpeg\",\"size\":\"full\",\"id\":11712,\"alt\":\"\",\"pixels\":518400,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:32','2019-02-26 18:22:03',0),(747,'https://biomechanicseducation.com/?p=11824','52:38dedb91cff958bc03e32b778140e0a9',11824,'post','post',3,0,NULL,NULL,'My Secret Revealed… How Menopause Has Affected Me','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Menopause-Personal-Trainers-Biomechanics-Coach.png',NULL,'11825','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Menopause-Personal-Trainers-Biomechanics-Coach.png','11825','featured-image','{\"width\":1225,\"height\":612,\"filesize\":971793,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/03/Menopause-Personal-Trainers-Biomechanics-Coach.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/03/Menopause-Personal-Trainers-Biomechanics-Coach.png\",\"size\":\"full\",\"id\":11825,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-03-04 16:50:38',0),(748,'https://biomechanicseducation.com/?p=12073','52:61ee942bcf114d90a3becf465e321cbb',12073,'post','post',3,0,NULL,NULL,'Top 7 Squat Styles, When &#038; Why To Use Which With Your Personal Training Clients','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Top-7-Squat-Styles-For-Personal-Trainers-Biomechanics-Education.png',NULL,'12076','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Top-7-Squat-Styles-For-Personal-Trainers-Biomechanics-Education.png','12076','featured-image','{\"width\":1225,\"height\":612,\"filesize\":852872,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/03/Top-7-Squat-Styles-For-Personal-Trainers-Biomechanics-Education.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/03/Top-7-Squat-Styles-For-Personal-Trainers-Biomechanics-Education.png\",\"size\":\"full\",\"id\":12076,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-03-11 18:38:21',0),(749,'https://biomechanicseducation.com/?p=12216','52:2d7ff897f087ca821e444acda7ae0879',12216,'post','post',3,0,NULL,NULL,'A Personal Trainers Guide To 7 Styles Of Lunge: When &#038; Why To Use Which','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Personal-Trainers-Guide-To-Lunges.png',NULL,'12217','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Personal-Trainers-Guide-To-Lunges.png','12217','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1007820,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/03/Personal-Trainers-Guide-To-Lunges.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/03/Personal-Trainers-Guide-To-Lunges.png\",\"size\":\"full\",\"id\":12217,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-03-18 15:48:51',0),(750,'https://biomechanicseducation.com/?p=12344','52:7e4eedfb87cbcc551fb228554be134f4',12344,'post','post',3,0,NULL,NULL,'The Deadlift &#8211; Should We Or Shouldn’t We?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Personal-Trainers-Deadlift-Biomechanics-Coach.png',NULL,'12345','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/03/Personal-Trainers-Deadlift-Biomechanics-Coach.png','12345','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1016792,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/03/Personal-Trainers-Deadlift-Biomechanics-Coach.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/03/Personal-Trainers-Deadlift-Biomechanics-Coach.png\",\"size\":\"full\",\"id\":12345,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-03-25 12:29:45',0),(751,'https://biomechanicseducation.com/?p=12493','52:35998bd47b1d4c56a2a06508ccaa568c',12493,'post','post',3,0,NULL,NULL,'Frontal Plane Hip Conditioning &#8211; A Guide For Personal Trainers','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Hip-Abduction-Guide-For-Personal-Trainers.png',NULL,'12497','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Hip-Abduction-Guide-For-Personal-Trainers.png','12497','featured-image','{\"width\":1225,\"height\":612,\"filesize\":785210,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Hip-Abduction-Guide-For-Personal-Trainers.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/04/Hip-Abduction-Guide-For-Personal-Trainers.png\",\"size\":\"full\",\"id\":12497,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-04-01 17:40:31',0),(752,'https://biomechanicseducation.com/tag/femoral/','46:7a566dfe85fdcd71da006e8b4c3d939e',365,'term','post_tag',NULL,NULL,NULL,NULL,'femoral',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2025-01-20 15:59:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(753,'https://biomechanicseducation.com/tag/femur/','44:658746915e4d57708baa5badc7951e64',366,'term','post_tag',NULL,NULL,NULL,NULL,'femur',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2025-01-20 15:59:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(754,'https://biomechanicseducation.com/tag/valga/','44:982f41c3082f7281bcf6a0473a64f620',367,'term','post_tag',NULL,NULL,NULL,NULL,'valga',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2025-01-20 15:59:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(755,'https://biomechanicseducation.com/tag/vara/','43:b5dc93625f72ceb85f9b381a71f104bb',368,'term','post_tag',NULL,NULL,NULL,NULL,'vara',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2025-01-20 15:59:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(756,'https://biomechanicseducation.com/tag/version/','46:87fe07b7b7487c2f654d78ebf1ed89fa',369,'term','post_tag',NULL,NULL,NULL,NULL,'version',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2025-01-20 15:59:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(757,'https://biomechanicseducation.com/tag/anxiety/','56:0c17af546747567329eccc81ef401976',370,'term','post_tag',NULL,NULL,NULL,NULL,'ANXIETY',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(758,'https://biomechanicseducation.com/tag/fear/','53:d9efe95000b0affdcb15126afb8c7fff',371,'term','post_tag',NULL,NULL,NULL,NULL,'FEAR',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(759,'https://biomechanicseducation.com/tag/clavicle/','57:4b599d2ce731b82bde8af27e1f5097f9',372,'term','post_tag',NULL,NULL,NULL,NULL,'CLAVICLE',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(760,'https://biomechanicseducation.com/tag/humerus/','56:bccd020d17fe835e63390ab94b236e87',373,'term','post_tag',NULL,NULL,NULL,NULL,'HUMERUS',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(761,'https://biomechanicseducation.com/tag/scapula/','56:cbbf603cbfdbd64c7b24bbae3cb21635',374,'term','post_tag',NULL,NULL,NULL,NULL,'SCAPULA',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(762,'https://biomechanicseducation.com/tag/bones/','54:efee16bd0f14f0121040673aba7495c5',375,'term','post_tag',NULL,NULL,NULL,NULL,'bones',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(763,'https://biomechanicseducation.com/tag/cervical/','57:50dae2414ddcd1245c37fc6a0631b498',376,'term','post_tag',NULL,NULL,NULL,NULL,'cervical',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(764,'https://biomechanicseducation.com/tag/discs/','54:36f995c63ace21aa796dfb60bd63a6df',377,'term','post_tag',NULL,NULL,NULL,NULL,'discs',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(765,'https://biomechanicseducation.com/tag/kyphosis/','57:a2cf0df46c3a220f739ef64ea9317a71',378,'term','post_tag',NULL,NULL,NULL,NULL,'kyphosis',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(766,'https://biomechanicseducation.com/tag/lordosis/','57:ee635cb4c68bfcc66ed84cf94706e1dc',379,'term','post_tag',NULL,NULL,NULL,NULL,'lordosis',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 19:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(767,'https://biomechanicseducation.com/?p=12781','52:2e496d5d131b2241738953f04b374ea0',12781,'post','post',3,0,NULL,NULL,'Are Your Hip Flexors Contributing To Your Back Pain? And What Can You Do About It If They Are?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Hip-Flexors-Back-Pain.png',NULL,'12786','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Hip-Flexors-Back-Pain.png','12786','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1401681,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Hip-Flexors-Back-Pain.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/04/Hip-Flexors-Back-Pain.png\",\"size\":\"full\",\"id\":12786,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-04-08 18:08:48',0),(768,'https://biomechanicseducation.com/?p=12883','52:98cf7e1d4c0678e1db95e2c6a5d09d85',12883,'post','post',3,0,NULL,NULL,'Why More &#8220;Pulling&#8221; Might NOT Be The Answer To Those Rounded Shoulders','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/04/More-_Pulling_-Might-NOT-Be-The-Answer-To-Those-Rounded-Shoulders.png',NULL,'12889','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/04/More-_Pulling_-Might-NOT-Be-The-Answer-To-Those-Rounded-Shoulders.png','12889','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1226185,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/04/More-_Pulling_-Might-NOT-Be-The-Answer-To-Those-Rounded-Shoulders.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/04/More-_Pulling_-Might-NOT-Be-The-Answer-To-Those-Rounded-Shoulders.png\",\"size\":\"full\",\"id\":12889,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-04-15 10:47:26',0),(769,'https://biomechanicseducation.com/?p=13007','52:336838e1c149acd5ab0c0592ef9c788a',13007,'post','post',3,0,NULL,NULL,'Are Shoulder Problems Are The New Low Back Pain?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Are-Shoulder-Problems-Are-The-New-Low-Back-Pain_.png',NULL,'13010','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Are-Shoulder-Problems-Are-The-New-Low-Back-Pain_.png','13010','featured-image','{\"width\":1225,\"height\":612,\"filesize\":865724,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Are-Shoulder-Problems-Are-The-New-Low-Back-Pain_.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/04/Are-Shoulder-Problems-Are-The-New-Low-Back-Pain_.png\",\"size\":\"full\",\"id\":13010,\"alt\":\"Are Shoulder Problems Are The New Low Back Pain_\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-04-22 12:21:09',0),(770,'https://biomechanicseducation.com/?p=13140','52:d8bcfbb94becff6860882f2f1eb19995',13140,'post','post',3,0,NULL,NULL,'&#8216;The Piriformis Of The Shoulder&#8217; &#8211; Infraspinatus &#8211; Guide To Programming For Personal Trainers','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Infraspinatus-Biomechanics-Education-The-piriformis-of-the-shoulder.png',NULL,'13154','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/04/Infraspinatus-Biomechanics-Education-The-piriformis-of-the-shoulder.png','13154','featured-image','{\"width\":1200,\"height\":720,\"filesize\":569887,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/04/Infraspinatus-Biomechanics-Education-The-piriformis-of-the-shoulder.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/04/Infraspinatus-Biomechanics-Education-The-piriformis-of-the-shoulder.png\",\"size\":\"full\",\"id\":13154,\"alt\":\"\",\"pixels\":864000,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-04-29 15:25:06',0),(771,'https://biomechanicseducation.com/why-the-turkish-get-up-is-valuable-to-a-personal-trainers-programming/','104:07752f4b121c78a334797c2694e83e58',13299,'post','post',3,0,'The Turkish Get-up - Biomechanics Education','Discover the value of the Turkish Get-Up in personal training programs for enhancing strength, mobility, and client engagement.','Why The Turkish Get Up Is Valuable To A Personal Trainer’s Programming','publish',NULL,0,NULL,NULL,NULL,'Turkish Get-up',75,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Why-The-Turkish-Get-Up-Is-Valuable-To-A-Personal-Trainers-Programming-1.png',NULL,'13440','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Why-The-Turkish-Get-Up-Is-Valuable-To-A-Personal-Trainers-Programming-1.png','13440','featured-image','{\"width\":1225,\"height\":612,\"filesize\":755873,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Why-The-Turkish-Get-Up-Is-Valuable-To-A-Personal-Trainers-Programming-1.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2019/05/Why-The-Turkish-Get-Up-Is-Valuable-To-A-Personal-Trainers-Programming-1.png\",\"size\":\"full\",\"id\":13440,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',2,NULL,NULL,'2024-07-23 20:09:05','2025-01-20 16:03:29',1,NULL,NULL,NULL,NULL,0,6,2,'2025-01-20 16:03:29','2019-05-06 17:38:27',90),(772,'https://biomechanicseducation.com/?p=13618','52:e01a35815fe1d1f96949a1a381dfcf29',13618,'post','post',3,0,NULL,NULL,'Walking &#8211; THE Most Underestimated Medicine In Modern Culture?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Walking-THE-Most-Underestimated-Medicine-In-Modern-Culture-1.png',NULL,'13619','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Walking-THE-Most-Underestimated-Medicine-In-Modern-Culture-1.png','13619','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1184849,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Walking-THE-Most-Underestimated-Medicine-In-Modern-Culture-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/05/Walking-THE-Most-Underestimated-Medicine-In-Modern-Culture-1.png\",\"size\":\"full\",\"id\":13619,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-05-13 20:32:58',0),(773,'https://biomechanicseducation.com/?p=13708','52:0641ecfda3254ab66f0b158f01e976e8',13708,'post','post',3,0,NULL,NULL,'Running Biomechanics &#8211; “Run The Way Nature Intended”','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Running-Biomechanics-Biomechanics-Education-1.png',NULL,'13709','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Running-Biomechanics-Biomechanics-Education-1.png','13709','featured-image','{\"width\":1225,\"height\":612,\"filesize\":656190,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/05/Running-Biomechanics-Biomechanics-Education-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/05/Running-Biomechanics-Biomechanics-Education-1.png\",\"size\":\"full\",\"id\":13709,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-05-21 07:28:16',0),(774,'https://biomechanicseducation.com/?p=14072','52:8f8ad4e418b17a178a1c94e93b90a74a',14072,'post','post',3,0,NULL,NULL,'How I Knocked 10 Minutes Off My Half Marathon Time In Just 4 Weeks','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/06/How-I-Knocked-10-Minutes-Off-My-Half-Marathon-Time-In-Just-4-Weeks-1.png',NULL,'14075','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/06/How-I-Knocked-10-Minutes-Off-My-Half-Marathon-Time-In-Just-4-Weeks-1.png','14075','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1390443,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/06/How-I-Knocked-10-Minutes-Off-My-Half-Marathon-Time-In-Just-4-Weeks-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/06/How-I-Knocked-10-Minutes-Off-My-Half-Marathon-Time-In-Just-4-Weeks-1.png\",\"size\":\"full\",\"id\":14075,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-06-03 14:12:32',0),(775,'https://biomechanicseducation.com/?p=14118','52:4e4af3351192817d47c8a962767c5590',14118,'post','post',3,0,NULL,NULL,'6 Steps To Improving Your Clients Metabolic Profile','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/06/6-Steps-To-Improving-Your-Metabolic-Profile-Biomechanics-Education-1.png',NULL,'14133','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/06/6-Steps-To-Improving-Your-Metabolic-Profile-Biomechanics-Education-1.png','14133','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1546261,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/06/6-Steps-To-Improving-Your-Metabolic-Profile-Biomechanics-Education-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/06/6-Steps-To-Improving-Your-Metabolic-Profile-Biomechanics-Education-1.png\",\"size\":\"full\",\"id\":14133,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-06-05 19:25:06',0),(776,'https://biomechanicseducation.com/hip-hitching/','47:ed9e6d256cd8ad4001c27e1c2d4a2a57',14386,'post','post',3,0,NULL,'Read our blog: Why You Should Add Hip Hitching to Your Clients’ Programmes. Read more...','Why We Should Consider Adding Hip Hitching To Our Clients Programmes','publish',NULL,0,NULL,NULL,NULL,'Hip hitching',62,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/06/Why-You-Should-Consider-Adding-Hip-Hitching-To-Your-Clients-Programmes-1.png',NULL,'14387','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/06/Why-You-Should-Consider-Adding-Hip-Hitching-To-Your-Clients-Programmes-1.png','14387','featured-image','{\"width\":1225,\"height\":612,\"filesize\":711002,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/06/Why-You-Should-Consider-Adding-Hip-Hitching-To-Your-Clients-Programmes-1.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2019/06/Why-You-Should-Consider-Adding-Hip-Hitching-To-Your-Clients-Programmes-1.png\",\"size\":\"full\",\"id\":14387,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',1,NULL,NULL,'2024-07-23 20:09:05','2025-01-20 16:03:49',1,NULL,NULL,NULL,NULL,0,3,2,'2025-01-20 16:03:49','2019-06-12 16:42:20',90),(777,'https://biomechanicseducation.com/?p=14576','52:5f913b9aca7870965a262878481cb8f7',14576,'post','post',3,0,NULL,NULL,'Online Learning Versus Face To Face Education In The Fitness Industry. Which Is Better?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/06/Online-Education-Versus-Face-To-Face-Learning-Which-is-better_-1.png',NULL,'14577','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/06/Online-Education-Versus-Face-To-Face-Learning-Which-is-better_-1.png','14577','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1125301,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/06/Online-Education-Versus-Face-To-Face-Learning-Which-is-better_-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/06/Online-Education-Versus-Face-To-Face-Learning-Which-is-better_-1.png\",\"size\":\"full\",\"id\":14577,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-06-24 13:49:43',0),(778,'https://biomechanicseducation.com/?p=14845','52:7cde0033ab6093fc2e1c1c204e2fbc64',14845,'post','post',3,0,NULL,NULL,'Why Strengthening Might Not Be The Solution To Your Clients “Weak” Glutes&#8230; Or Weak Anything&#8230;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Why-Strengthening-_Weak_-Glutes-May-Not-Be-The-Answer-1.png',NULL,'14846','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Why-Strengthening-_Weak_-Glutes-May-Not-Be-The-Answer-1.png','14846','featured-image','{\"width\":1225,\"height\":612,\"filesize\":549074,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Why-Strengthening-_Weak_-Glutes-May-Not-Be-The-Answer-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/07/Why-Strengthening-_Weak_-Glutes-May-Not-Be-The-Answer-1.png\",\"size\":\"full\",\"id\":14846,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-07-01 14:14:52',0),(779,'https://biomechanicseducation.com/?p=15169','52:17cd956f239f4c0a5356597ca5c2cf8e',15169,'post','post',3,0,NULL,NULL,'Is It Actually An Injury? Who Should You Send Your Client To, To Get It Fixed?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Is-It-Actually-An-Injury_-1.png',NULL,'15175','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Is-It-Actually-An-Injury_-1.png','15175','featured-image','{\"width\":1225,\"height\":612,\"filesize\":775742,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Is-It-Actually-An-Injury_-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/07/Is-It-Actually-An-Injury_-1.png\",\"size\":\"full\",\"id\":15175,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-07-10 20:20:24',0),(780,'https://biomechanicseducation.com/?p=15291','52:cd40c809e0397447416cfa46acd7f06a',15291,'post','post',3,0,NULL,NULL,'Is There Such A Thing As Caring Too Much? And Can It Adversely Affect Your Client?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Is-There-Such-A-Thing-As-Caring-Too-Much_-And-Can-It-Adversely-Affect-Your-Client_-1.png',NULL,'15294','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Is-There-Such-A-Thing-As-Caring-Too-Much_-And-Can-It-Adversely-Affect-Your-Client_-1.png','15294','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1150771,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Is-There-Such-A-Thing-As-Caring-Too-Much_-And-Can-It-Adversely-Affect-Your-Client_-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/07/Is-There-Such-A-Thing-As-Caring-Too-Much_-And-Can-It-Adversely-Affect-Your-Client_-1.png\",\"size\":\"full\",\"id\":15294,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-07-15 16:32:38',0),(781,'https://biomechanicseducation.com/?p=15432','52:eed2ff7bce86be4fbe0d50972fa70eb5',15432,'post','post',3,0,NULL,NULL,'Stop Chasing Quick Fixes &#8211; Gary V &#038; I Agree On This','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Stop-Chasing-Quick-Fixes-Gary-V-I-Agree-On-This-1.png',NULL,'15434','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Stop-Chasing-Quick-Fixes-Gary-V-I-Agree-On-This-1.png','15434','featured-image','{\"width\":1225,\"height\":612,\"filesize\":517707,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Stop-Chasing-Quick-Fixes-Gary-V-I-Agree-On-This-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/07/Stop-Chasing-Quick-Fixes-Gary-V-I-Agree-On-This-1.png\",\"size\":\"full\",\"id\":15434,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-07-22 14:11:29',0),(782,'https://biomechanicseducation.com/tag/lumbar/','55:c2d52d8b36c6d6d2b7d3f8e07ffefb65',380,'term','post_tag',NULL,NULL,NULL,NULL,'lumbar',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(783,'https://biomechanicseducation.com/tag/processes/','58:626d63d8fbff78d464f7a9e8677700fa',381,'term','post_tag',NULL,NULL,NULL,NULL,'processes',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(784,'https://biomechanicseducation.com/tag/thoracic/','57:a84b306978bf5201f8f6ae7c301821ee',382,'term','post_tag',NULL,NULL,NULL,NULL,'thoracic',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(785,'https://biomechanicseducation.com/tag/vertebrae/','58:2ccf76882b4241a207eb85bb592c0145',383,'term','post_tag',NULL,NULL,NULL,NULL,'vertebrae',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(786,'https://biomechanicseducation.com/tag/diaphragm/','48:d539fd434c264d8eb16d0ac932ae06b5',384,'term','post_tag',NULL,NULL,NULL,NULL,'DIAPHRAGM',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(787,'https://biomechanicseducation.com/tag/erecta/','45:4cc224156d9f0a9c8ed9a43428a3a296',385,'term','post_tag',NULL,NULL,NULL,NULL,'ERECTA',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(788,'https://biomechanicseducation.com/tag/multidifus/','49:11805a9a3d005c07e7548270752ffe8e',386,'term','post_tag',NULL,NULL,NULL,NULL,'MULTIDIFUS',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(789,'https://biomechanicseducation.com/tag/oblique/','46:5307476dce86e50386e87d3f7d7313ff',387,'term','post_tag',NULL,NULL,NULL,NULL,'OBLIQUE',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(790,'https://biomechanicseducation.com/tag/pelvic-floor/','51:9bec2075225856d4e2a902aad976dd65',388,'term','post_tag',NULL,NULL,NULL,NULL,'PELVIC FLOOR',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(791,'https://biomechanicseducation.com/tag/rectus/','45:77a395489b810d06db70ae57ddd8bb04',389,'term','post_tag',NULL,NULL,NULL,NULL,'RECTUS',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(792,'https://biomechanicseducation.com/tag/transversospinalis/','57:099bda80399491a0b1316cbd68b4f141',390,'term','post_tag',NULL,NULL,NULL,NULL,'TRANSVERSOSPINALIS',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(793,'https://biomechanicseducation.com/tag/digitorum/','48:415382dca2e327c1323a7c07f72f35bc',391,'term','post_tag',NULL,NULL,NULL,NULL,'DIGITORUM',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(794,'https://biomechanicseducation.com/tag/extensor/','47:6465dd9f916f5e4592e8530d1b1325e7',392,'term','post_tag',NULL,NULL,NULL,NULL,'EXTENSOR',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(795,'https://biomechanicseducation.com/tag/flexor/','45:21007a261451fb573e6584ef9f9f3a41',393,'term','post_tag',NULL,NULL,NULL,NULL,'FLEXOR',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(796,'https://biomechanicseducation.com/tag/hallucis/','47:b3caa9d0b63163775f441940655bf1a8',394,'term','post_tag',NULL,NULL,NULL,NULL,'HALLUCIS',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:09:05','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(797,'https://biomechanicseducation.com/foot-biomechanics-made-simple-part-1-the-over-pronation-fallacy/','98:d989f166b8e9040330fe6639a878436e',15602,'post','post',3,0,NULL,'Debunk the over-pronation myth with this simple guide to foot biomechanics. Learn how foot motion really works!','Foot Biomechanics : The Over Pronation Fallacy','publish',NULL,0,NULL,NULL,NULL,'Foot biomechanics',76,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Foot-Biomechanics-Part-1-The-Over-Pronation-Fallacy-1.png',NULL,'15609','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Foot-Biomechanics-Part-1-The-Over-Pronation-Fallacy-1.png','15609','featured-image','{\"width\":1225,\"height\":612,\"filesize\":909748,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/07/Foot-Biomechanics-Part-1-The-Over-Pronation-Fallacy-1.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2019/07/Foot-Biomechanics-Part-1-The-Over-Pronation-Fallacy-1.png\",\"size\":\"full\",\"id\":15609,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',1,NULL,NULL,'2024-07-23 20:24:06','2025-01-20 16:03:28',1,NULL,NULL,NULL,NULL,0,4,2,'2025-01-20 16:03:28','2019-07-29 15:16:33',90),(798,'https://biomechanicseducation.com/?p=15786','52:92d16cfbdbb541cd1a890050853cc631',15786,'post','post',3,0,NULL,NULL,'Foot Biomechanics Made Simple &#8211; Part 2 &#8211; How To Test &#038; Correct Imbalances In Foot Biomechanics','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Foot-Biomechanics-Part-2-1.png',NULL,'15789','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Foot-Biomechanics-Part-2-1.png','15789','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1239569,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Foot-Biomechanics-Part-2-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/08/Foot-Biomechanics-Part-2-1.png\",\"size\":\"full\",\"id\":15789,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-08-05 18:07:29',0),(799,'https://biomechanicseducation.com/?p=16054','52:642febd17f6bd2eb50870b0252e1b905',16054,'post','post',3,0,NULL,NULL,'Biomechanics Education 1 Day Workshops For Personal Trainers, Sports Therapists, S&#038;C Coaches And More&#8230;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1-scaled.jpg',NULL,'7922','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1-scaled.jpg','7922','featured-image','{\"width\":2560,\"height\":1440,\"filesize\":423263,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1-scaled.jpg\",\"size\":\"full\",\"id\":7922,\"alt\":\"\",\"pixels\":3686400,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-08-14 13:04:47',0),(800,'https://biomechanicseducation.com/?p=16225','52:4e188267edd782468c6c49381281caa9',16225,'post','post',3,0,NULL,NULL,'The Weak Core Myth: Core Progressions That All Personal Trainers Should Know','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/08/The-Weak-Core-Myth_-Core-Progressions-That-All-Personal-Trainers-Should-Know-1.png',NULL,'16228','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/08/The-Weak-Core-Myth_-Core-Progressions-That-All-Personal-Trainers-Should-Know-1.png','16228','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1150409,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/08/The-Weak-Core-Myth_-Core-Progressions-That-All-Personal-Trainers-Should-Know-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/08/The-Weak-Core-Myth_-Core-Progressions-That-All-Personal-Trainers-Should-Know-1.png\",\"size\":\"full\",\"id\":16228,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-08-19 10:06:48',0),(801,'https://biomechanicseducation.com/the-core-ratios-the-personal-trainers-guide-to-assessing-programming-for-the-core/','116:e77fd67225cb01a6dac9dec7861cec47',16411,'post','post',3,0,'The Core Ratios - Biomechanics education','Master core strength ratios to enhance stability, reduce injury risk, and create balanced training programs for your clients.','The Core Ratios: The Personal Trainers Guide To Assessing &#038; Programming For The Core','publish',NULL,0,NULL,NULL,NULL,'The Core Ratios',67,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Ratios_-The-Personal-Trainers-Guide-To-Assessing-Programming-For-The-Core-1.png',NULL,'16415','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Ratios_-The-Personal-Trainers-Guide-To-Assessing-Programming-For-The-Core-1.png','16415','featured-image','{\"width\":1225,\"height\":612,\"filesize\":606625,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/08/Core-Ratios_-The-Personal-Trainers-Guide-To-Assessing-Programming-For-The-Core-1.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2019/08/Core-Ratios_-The-Personal-Trainers-Guide-To-Assessing-Programming-For-The-Core-1.png\",\"size\":\"full\",\"id\":16415,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-23 20:24:06','2025-01-20 16:03:43',1,NULL,NULL,NULL,NULL,0,2,2,'2025-01-20 16:03:43','2019-08-26 14:54:33',0),(802,'https://biomechanicseducation.com/?p=16601','52:e4b36de7f3f86d707b5197543df18f25',16601,'post','post',3,0,NULL,NULL,'Does Your Client Have Functional Stability? The Core Series Part 3','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'16613','featured-image',NULL,NULL,NULL,'16613','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-09-02 16:10:45',0),(803,'https://biomechanicseducation.com/foot-position-and-the-quadricep/','66:2341ad16d1d1f083fa85af43e6d0a343',16935,'post','post',3,0,'Foot Position and The Quadricep - Biomechanics Education','Discover how foot width in squats impacts quadricep growth and find the optimal stance for your fitness goals.','Can Changing Your Foot Position Isolate And Grow Different Quadricep Muscles?','publish',NULL,0,NULL,NULL,NULL,'quadricep muscles',62,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Overhead-Squat-Front-Squat-Why-we-do-them-and-how-to-improve-them.png',NULL,'11156','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/02/Overhead-Squat-Front-Squat-Why-we-do-them-and-how-to-improve-them.png','11156','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1345462,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/02/Overhead-Squat-Front-Squat-Why-we-do-them-and-how-to-improve-them.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2019/02/Overhead-Squat-Front-Squat-Why-we-do-them-and-how-to-improve-them.png\",\"size\":\"full\",\"id\":11156,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',1,NULL,NULL,'2024-07-23 20:24:06','2025-01-20 16:03:28',1,NULL,NULL,NULL,NULL,0,3,2,'2025-01-20 16:03:28','2019-09-09 12:54:46',90),(804,'https://biomechanicseducation.com/?p=17101','52:4b53a75ee0ee4b81ee23e07bd145cb9e',17101,'post','post',3,0,NULL,NULL,'Great Discussions vs Egos &#038; Trolls &#8211; The 2 Sides Of Social Media','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'17103','featured-image',NULL,NULL,NULL,'17103','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-09-16 15:51:11',0),(805,'https://biomechanicseducation.com/?p=17261','52:9113a5f8d81ee8a939754e012c40e605',17261,'post','post',3,0,NULL,NULL,'10 Ways To Feel Great At Any Age &#8211; Lessons Learned From 50 Years On This Planet','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'17262','featured-image',NULL,NULL,NULL,'17262','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-09-23 13:53:48',0),(806,'https://biomechanicseducation.com/?p=17377','52:e179bc57e0103897916034b437f935a0',17377,'post','post',3,0,NULL,NULL,'Prejudice In The Fitness Industry &#8211; Lessons From Jane Elliott','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'17389','featured-image',NULL,NULL,NULL,'17389','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-09-30 17:13:30',0),(807,'https://biomechanicseducation.com/guide-to-communication-skills-for-the-fitness-industry/','89:1f33186860943edd66e3bf2ee1de89e5',17661,'post','post',3,0,NULL,'Guide To Communication Skills For The Fitness Industry. How can we improve them? Read more on the blog...','Are communication skills, something we can improve?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/10/Communication-Skills-For-Personal-Trainers-Biomechanics-Coach-1-scaled.jpg',NULL,'17664','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/10/Communication-Skills-For-Personal-Trainers-Biomechanics-Coach-1-scaled.jpg','17664','featured-image','{\"width\":2560,\"height\":1214,\"filesize\":444055,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/10/Communication-Skills-For-Personal-Trainers-Biomechanics-Coach-1-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2019/10/Communication-Skills-For-Personal-Trainers-Biomechanics-Coach-1-scaled.jpg\",\"size\":\"full\",\"id\":17664,\"alt\":\"\",\"pixels\":3107840,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 20:24:06','2025-01-20 16:02:36',1,NULL,NULL,NULL,NULL,0,5,2,'2025-01-20 16:02:36','2019-10-07 13:41:11',0),(808,'https://biomechanicseducation.com/?p=17815','52:9bb98648d1102c49f3c55b63cbc07a3e',17815,'post','post',3,0,NULL,NULL,'The Cossack Movement Analysis Made Simple &#8211; Why You Should/Could/Would A Client Do It?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/10/The-Cossack-Should-it-be-in-your-or-your-clients-training-plans-1.png',NULL,'17850','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/10/The-Cossack-Should-it-be-in-your-or-your-clients-training-plans-1.png','17850','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1096355,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/10/The-Cossack-Should-it-be-in-your-or-your-clients-training-plans-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/10/The-Cossack-Should-it-be-in-your-or-your-clients-training-plans-1.png\",\"size\":\"full\",\"id\":17850,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-10-15 19:39:19',0),(809,'https://biomechanicseducation.com/?p=17991','52:c92e2fad2c8fccba77f42430d5c23b5b',17991,'post','post',3,0,NULL,NULL,'The Deadlift &#8211; Which Variation Is Right For You?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/10/The-Deadlift-Which-variation-is-right-for-you-Biomechanics-Coach-1.png',NULL,'17992','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/10/The-Deadlift-Which-variation-is-right-for-you-Biomechanics-Coach-1.png','17992','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1016805,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/10/The-Deadlift-Which-variation-is-right-for-you-Biomechanics-Coach-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/10/The-Deadlift-Which-variation-is-right-for-you-Biomechanics-Coach-1.png\",\"size\":\"full\",\"id\":17992,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:31','2019-10-21 10:47:13',0),(810,'https://biomechanicseducation.com/?p=18161','52:9e50da142f37137abbaecc3bc42e8070',18161,'post','post',3,0,NULL,NULL,'Be A Great Coach By Being An Even Better Student','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/10/Great-Coaches-are-Great-Students-1-scaled.jpg',NULL,'18162','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/10/Great-Coaches-are-Great-Students-1-scaled.jpg','18162','featured-image','{\"width\":2560,\"height\":1440,\"filesize\":478117,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/10/Great-Coaches-are-Great-Students-1-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/10/Great-Coaches-are-Great-Students-1-scaled.jpg\",\"size\":\"full\",\"id\":18162,\"alt\":\"\",\"pixels\":3686400,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2019-10-28 18:41:19',0),(811,'https://biomechanicseducation.com/?p=18287','52:3f4638ddc55e6a21981517e1031270ad',18287,'post','post',3,0,NULL,NULL,'My Horrific Halloween Earwax Experience','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Earwax-Experience-Halloween-Biomechanics-Education-1.png',NULL,'18288','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Earwax-Experience-Halloween-Biomechanics-Education-1.png','18288','featured-image','{\"width\":1225,\"height\":612,\"filesize\":946884,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/11/Earwax-Experience-Halloween-Biomechanics-Education-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/11/Earwax-Experience-Halloween-Biomechanics-Education-1.png\",\"size\":\"full\",\"id\":18288,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2019-11-04 11:12:30',0),(812,'https://biomechanicseducation.com/tag/posterior/','48:2c2ddc61631af042c13264643e23d98b',395,'term','post_tag',NULL,NULL,NULL,NULL,'POSTERIOR',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:24:06','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(813,'https://biomechanicseducation.com/tag/tibialis-anterior/','56:e685482cbd2f54a429cfe703f4b64a69',396,'term','post_tag',NULL,NULL,NULL,NULL,'TIBIALIS ANTERIOR',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:24:06','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(814,'https://biomechanicseducation.com/tag/bone/','53:ca2148840c44878cf7ccae7c6d698c83',397,'term','post_tag',NULL,NULL,NULL,NULL,'bone',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(815,'https://biomechanicseducation.com/tag/knee-cap/','57:075d8249b500001f6d503060b539aaaa',398,'term','post_tag',NULL,NULL,NULL,NULL,'knee cap',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(816,'https://biomechanicseducation.com/tag/ligaments/','58:02ed920156f8f024d0784ebd339a9791',399,'term','post_tag',NULL,NULL,NULL,NULL,'ligaments',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(817,'https://biomechanicseducation.com/tag/meniscus/','57:1a51c47d9f2d90819a82ac86836f10f3',400,'term','post_tag',NULL,NULL,NULL,NULL,'meniscus',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(818,'https://biomechanicseducation.com/tag/patella/','56:e37944735365ae5988a9ffd45e21388b',401,'term','post_tag',NULL,NULL,NULL,NULL,'patella',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-23 20:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(819,'https://biomechanicseducation.com/?p=18457','52:2d85747b1b671c45bc6caba24615d2fc',18457,'post','post',3,0,NULL,NULL,'The Biomechanics Of Running &#8211; Myths &#038; Advice','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png',NULL,'18460','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png','18460','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1028983,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png\",\"size\":\"full\",\"id\":18460,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2019-11-11 14:05:36',0),(820,'https://biomechanicseducation.com/the-tight-hip-flexor-misconception-modified-thomas-test/','90:2bfcab5c29e05e1e9433828cc286ca38',18628,'post','post',3,0,NULL,NULL,'Debunking the Tight Hip Flexor Myth: Understanding the Modified Thomas Test','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Hip-Flexors-Are-they-actually-tight_-1.png',NULL,'18633','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Hip-Flexors-Are-they-actually-tight_-1.png','18633','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1308802,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/11/Hip-Flexors-Are-they-actually-tight_-1.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2019/11/Hip-Flexors-Are-they-actually-tight_-1.png\",\"size\":\"full\",\"id\":18633,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',1,NULL,NULL,'2024-07-23 20:39:06','2025-01-20 16:01:57',1,NULL,NULL,NULL,NULL,0,2,2,'2025-01-20 16:01:57','2019-11-18 17:56:06',0),(821,'https://biomechanicseducation.com/?p=18735','52:2a99c3c2a44f48a3d7b05728f47d133d',18735,'post','post',3,0,NULL,NULL,'12 Simple Tips For Feeling Happier &#038; Healthier','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/iMoveFreely-12-tips-for-a-healthier-happier-life-1.png',NULL,'18736','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/iMoveFreely-12-tips-for-a-healthier-happier-life-1.png','18736','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1272668,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/11/iMoveFreely-12-tips-for-a-healthier-happier-life-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/11/iMoveFreely-12-tips-for-a-healthier-happier-life-1.png\",\"size\":\"full\",\"id\":18736,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2019-11-25 13:08:08',0),(822,'https://biomechanicseducation.com/?p=18855','52:b34412a9b80013dfa668d2e15b72277e',18855,'post','post',3,0,NULL,NULL,'How To Ask SMART Questions, To Get A Great Answer','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/12/Asking-SMART-Questions-Biomechanics-Coaching-1.png',NULL,'18856','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/12/Asking-SMART-Questions-Biomechanics-Coaching-1.png','18856','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1178630,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/12/Asking-SMART-Questions-Biomechanics-Coaching-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/12/Asking-SMART-Questions-Biomechanics-Coaching-1.png\",\"size\":\"full\",\"id\":18856,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2019-12-09 15:30:31',0),(823,'https://biomechanicseducation.com/?p=19072','52:a07dc06f17bff9e27fc612fd3d861a3d',19072,'post','post',3,0,NULL,NULL,'Intrinsic Biomechanics for Personal Trainers &#8211; Knowing The HOW &#038; The WHY For Exercise Prescription','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/12/Intrinsic-Biomechanics-For-Personal-Trainers-3-Phase-System-For-Health-Function-Performance-1.png',NULL,'19073','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/12/Intrinsic-Biomechanics-For-Personal-Trainers-3-Phase-System-For-Health-Function-Performance-1.png','19073','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1188437,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/12/Intrinsic-Biomechanics-For-Personal-Trainers-3-Phase-System-For-Health-Function-Performance-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/12/Intrinsic-Biomechanics-For-Personal-Trainers-3-Phase-System-For-Health-Function-Performance-1.png\",\"size\":\"full\",\"id\":19073,\"alt\":\"Intrinsic Biomechanics For Personal Trainers - 3 Phase System For Health, Function & Performance\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2019-12-18 17:08:13',0),(824,'https://biomechanicseducation.com/?p=19124','52:ca96846e9700367b8a4d54d2762b0137',19124,'post','post',3,0,NULL,NULL,'2019 A Year In Review For Biomechanics Education','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/12/2019-A-Year-In-Review-For-Biomechanics-Education-1.png',NULL,'19125','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/12/2019-A-Year-In-Review-For-Biomechanics-Education-1.png','19125','featured-image','{\"width\":1225,\"height\":612,\"filesize\":889768,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/12/2019-A-Year-In-Review-For-Biomechanics-Education-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/12/2019-A-Year-In-Review-For-Biomechanics-Education-1.png\",\"size\":\"full\",\"id\":19125,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2019-12-23 17:03:28',0),(825,'https://biomechanicseducation.com/?p=19203','52:c0f574694ade80c773c7ec95566d270b',19203,'post','post',3,0,NULL,NULL,'6 Questions To Ask Yourself To Make Sure 2020 Is Your Best Year Yet!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/12/6-Questions-To-Get-You-Started-In-2020-1.png',NULL,'19204','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/12/6-Questions-To-Get-You-Started-In-2020-1.png','19204','featured-image','{\"width\":1225,\"height\":612,\"filesize\":938890,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/12/6-Questions-To-Get-You-Started-In-2020-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/12/6-Questions-To-Get-You-Started-In-2020-1.png\",\"size\":\"full\",\"id\":19204,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2019-12-30 11:03:55',0),(826,'https://biomechanicseducation.com/?p=19320','52:e522e0b08003c2949840a95246ce65f9',19320,'post','post',3,0,NULL,NULL,'New Year, New You&#8230;Why It Sets Up Gym Goers To Fail','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/01/New-Year-New-You-Set-Up-To-Fail-1.png',NULL,'19321','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/01/New-Year-New-You-Set-Up-To-Fail-1.png','19321','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1114085,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/01/New-Year-New-You-Set-Up-To-Fail-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/01/New-Year-New-You-Set-Up-To-Fail-1.png\",\"size\":\"full\",\"id\":19321,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-01-06 17:52:26',0),(827,'https://biomechanicseducation.com/?p=19426','52:73219eac2a3c4bcbc8aba951510c97c3',19426,'post','post',3,0,NULL,NULL,'How To Add Mobility To Your Strength Training With No Extra Time Needed (NET Training)','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/01/NET-Training-How-to-fit-mobility-into-strength-training-programmes-1.png',NULL,'19427','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/01/NET-Training-How-to-fit-mobility-into-strength-training-programmes-1.png','19427','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1081252,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/01/NET-Training-How-to-fit-mobility-into-strength-training-programmes-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/01/NET-Training-How-to-fit-mobility-into-strength-training-programmes-1.png\",\"size\":\"full\",\"id\":19427,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-01-13 16:30:26',0),(828,'https://biomechanicseducation.com/when-stretching-a-tight-muscle-doesnt-work-a-look-at-the-gastrocnemius-soleus/','112:5e9e8934e8e37f4bada0e37c54d8bf2b',19515,'post','post',3,0,'When Stretching a Tight Muscle Doesn’t Work %%sep%% Biomechanics Blogs','Stretching tight muscles not working? Explore why tight calves persist and discover alternative solutions like nerve mobilization.','When Stretching a Tight Muscle Doesn’t Work – A Look at the Gastrocnemius &#038; Soleus','publish',NULL,0,NULL,NULL,NULL,'Stretching a tight muscle',65,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/01/When-stretching-doesnt-work-Gastrocnemius.png',NULL,'19518','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/01/When-stretching-doesnt-work-Gastrocnemius.png','19518','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1065769,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/01/When-stretching-doesnt-work-Gastrocnemius.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2020/01/When-stretching-doesnt-work-Gastrocnemius.png\",\"size\":\"full\",\"id\":19518,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',1,NULL,NULL,'2024-07-23 20:39:06','2025-01-20 16:01:57',1,NULL,NULL,NULL,NULL,0,3,2,'2025-01-20 16:01:57','2020-01-20 15:03:02',0),(829,'https://biomechanicseducation.com/?p=19587','52:32372dc4af24cb4b09087691220e5e69',19587,'post','post',3,0,NULL,NULL,'You’re Surrounded By Vampires… Here’s What To Do&#8230;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/01/Time-Energy-Vampires-Biomechanics-Education-1.png',NULL,'19588','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/01/Time-Energy-Vampires-Biomechanics-Education-1.png','19588','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1113510,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/01/Time-Energy-Vampires-Biomechanics-Education-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/01/Time-Energy-Vampires-Biomechanics-Education-1.png\",\"size\":\"full\",\"id\":19588,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-01-27 13:49:06',0),(830,'https://biomechanicseducation.com/?p=19677','52:bbb093feb9be76ac6a0d1adbeca49856',19677,'post','post',3,0,NULL,NULL,'Can We Actually Forget How To Move?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Can-we-forget-how-to-move-Biomechanics-Education-1.png',NULL,'19678','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Can-we-forget-how-to-move-Biomechanics-Education-1.png','19678','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1046546,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/02/Can-we-forget-how-to-move-Biomechanics-Education-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/02/Can-we-forget-how-to-move-Biomechanics-Education-1.png\",\"size\":\"full\",\"id\":19678,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-02-03 15:02:02',0),(831,'https://biomechanicseducation.com/?p=19844','52:615cace69f35dcf1a84adf40db2ee375',19844,'post','post',3,0,NULL,NULL,'Becoming A Biomechanics Coach After Retiring From The Armed Forces','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Retiring-From-Armed-Forces-Becoming-A-Biomechanics-Coach-1.png',NULL,'19852','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Retiring-From-Armed-Forces-Becoming-A-Biomechanics-Coach-1.png','19852','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1199920,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/02/Retiring-From-Armed-Forces-Becoming-A-Biomechanics-Coach-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/02/Retiring-From-Armed-Forces-Becoming-A-Biomechanics-Coach-1.png\",\"size\":\"full\",\"id\":19852,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-02-10 20:05:39',0),(832,'https://biomechanicseducation.com/?p=19975','52:b6a749c18621bb27e102725a15f477ce',19975,'post','post',3,0,NULL,NULL,'Can You Be Fit, But Unhealthy At The Same Time?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Can-You-Be-Fit-But-Unhealthy-At-The-Same-Time-Why-I-stopped-running-1.png',NULL,'19983','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Can-You-Be-Fit-But-Unhealthy-At-The-Same-Time-Why-I-stopped-running-1.png','19983','featured-image','{\"width\":1225,\"height\":612,\"filesize\":795868,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/02/Can-You-Be-Fit-But-Unhealthy-At-The-Same-Time-Why-I-stopped-running-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/02/Can-You-Be-Fit-But-Unhealthy-At-The-Same-Time-Why-I-stopped-running-1.png\",\"size\":\"full\",\"id\":19983,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-02-17 14:05:38',0),(833,'https://biomechanicseducation.com/?p=20168','52:10c76538057441c3f402758d9abf12c8',20168,'post','post',3,0,NULL,NULL,'Got Any Clients Who Experience Elbow Pain When Pulling, Gripping Or Pressing?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Elbow-pain-when-gripping-or-pulling_-1.png',NULL,'20169','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/02/Elbow-pain-when-gripping-or-pulling_-1.png','20169','featured-image','{\"width\":1225,\"height\":612,\"filesize\":993789,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/02/Elbow-pain-when-gripping-or-pulling_-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/02/Elbow-pain-when-gripping-or-pulling_-1.png\",\"size\":\"full\",\"id\":20169,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-02-24 14:46:19',0),(834,'https://biomechanicseducation.com/?p=20290','52:62ce0828e15f3d04ff345dd69dcef083',20290,'post','post',3,0,NULL,NULL,'Reduced Nerve Mobility Inhibits Muscle Performance &#8211; And What Can Personal Trainers Do About It?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Reduced-Nerve-Mobility-Inhibits-Muscle-Performance-1.png',NULL,'20291','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Reduced-Nerve-Mobility-Inhibits-Muscle-Performance-1.png','20291','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1019463,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/03/Reduced-Nerve-Mobility-Inhibits-Muscle-Performance-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/03/Reduced-Nerve-Mobility-Inhibits-Muscle-Performance-1.png\",\"size\":\"full\",\"id\":20291,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-03-02 14:59:08',0),(835,'https://biomechanicseducation.com/?p=20459','52:0bade1356b0366bcfa2ad6f6ff52c873',20459,'post','post',3,0,NULL,NULL,'Building New Healthy Habits &#038; Disrupting Old Unhealthy Habits','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Building-healthy-habits-Biomechanics-Education-1.png',NULL,'20461','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/03/Building-healthy-habits-Biomechanics-Education-1.png','20461','featured-image','{\"width\":1225,\"height\":612,\"filesize\":960290,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/03/Building-healthy-habits-Biomechanics-Education-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/03/Building-healthy-habits-Biomechanics-Education-1.png\",\"size\":\"full\",\"id\":20461,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-03-09 19:38:08',0),(836,'https://biomechanicseducation.com/?p=20624','52:f974303b5c3a8bf6a5ab84013b6d8c85',20624,'post','post',3,0,NULL,NULL,'6 Positive Actions To Take &#8211; RIGHT NOW!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/03/daoudi-aissa-absT1BNRDAI-unsplash-scaled-1.jpg',NULL,'20632','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/03/daoudi-aissa-absT1BNRDAI-unsplash-scaled-1.jpg','20632','featured-image','{\"width\":2101,\"height\":2560,\"filesize\":935805,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/03/daoudi-aissa-absT1BNRDAI-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/03/daoudi-aissa-absT1BNRDAI-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":20632,\"alt\":\"\",\"pixels\":5378560,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 20:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-03-18 16:51:23',0),(837,'https://biomechanicseducation.com/?p=21235','52:e92be31f80e4c001df71d8a8a0f2e56a',21235,'post','post',3,0,NULL,NULL,'6 Tips To Saving Your Business AND Improving It During Lockdown!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/04/kari-shea-qa1wvrlWCio-unsplash-1.jpg',NULL,'21237','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/04/kari-shea-qa1wvrlWCio-unsplash-1.jpg','21237','featured-image','{\"width\":800,\"height\":1200,\"filesize\":160655,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/04/kari-shea-qa1wvrlWCio-unsplash-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/04/kari-shea-qa1wvrlWCio-unsplash-1.jpg\",\"size\":\"full\",\"id\":21237,\"alt\":\"\",\"pixels\":960000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 20:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-04-13 14:54:03',0),(838,'https://biomechanicseducation.com/?p=21788','52:40249c67cfb0fff8eeef5485a1205bd9',21788,'post','post',3,0,NULL,NULL,'You Should Be Trying Get Rid Of All Of Your Clients As Quickly As You Can!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/05/Get-rid-of-your-clients-Biomechanics-Education-1.png',NULL,'21789','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/05/Get-rid-of-your-clients-Biomechanics-Education-1.png','21789','featured-image','{\"width\":1225,\"height\":612,\"filesize\":925551,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/05/Get-rid-of-your-clients-Biomechanics-Education-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/05/Get-rid-of-your-clients-Biomechanics-Education-1.png\",\"size\":\"full\",\"id\":21789,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-05-11 10:35:48',0),(839,'https://biomechanicseducation.com/?p=21948','52:415ed8f1b36f09514cce7f4f1eae0c1c',21948,'post','post',3,0,NULL,NULL,'What Is A MET, Why Would I Need To Know &#038; How Do We Do Them?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/05/MET-Muscle-Energy-Techniques-Biomechanics-Education-2020-1.png',NULL,'21949','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/05/MET-Muscle-Energy-Techniques-Biomechanics-Education-2020-1.png','21949','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1042806,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/05/MET-Muscle-Energy-Techniques-Biomechanics-Education-2020-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/05/MET-Muscle-Energy-Techniques-Biomechanics-Education-2020-1.png\",\"size\":\"full\",\"id\":21949,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-05-18 10:12:33',0),(840,'https://biomechanicseducation.com/?p=22127','52:04241679263db6212924120b7b70ac3b',22127,'post','post',3,0,NULL,NULL,'How The Personal Training Industry Is (Finally) Raising Standards','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/05/Raising-Standards-of-Personal-Trainers-in-the-UK-Biomechanics-Education-CIMPSA-1-1.png',NULL,'22132','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/05/Raising-Standards-of-Personal-Trainers-in-the-UK-Biomechanics-Education-CIMPSA-1-1.png','22132','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1326967,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/05/Raising-Standards-of-Personal-Trainers-in-the-UK-Biomechanics-Education-CIMPSA-1-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/05/Raising-Standards-of-Personal-Trainers-in-the-UK-Biomechanics-Education-CIMPSA-1-1.png\",\"size\":\"full\",\"id\":22132,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 20:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-05-26 15:08:32',0),(841,'https://biomechanicseducation.com/?p=22301','52:284b7799a774628a73a6f76e0323441e',22301,'post','post',3,0,NULL,NULL,'Sports Therapists… Are You Actually Qualified To “Treat” Injuries?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/06/jesper-aggergaard-CEM52sAHR80-unsplash-scaled-1.jpg',NULL,'22306','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/06/jesper-aggergaard-CEM52sAHR80-unsplash-scaled-1.jpg','22306','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":233531,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/06/jesper-aggergaard-CEM52sAHR80-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/06/jesper-aggergaard-CEM52sAHR80-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":22306,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 20:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-06-03 09:50:11',0),(842,'https://biomechanicseducation.com/?p=22617','52:b4f686bc96642bc8d1219fa6466ac778',22617,'post','post',3,0,NULL,NULL,'What Does The Future Look Like For The Fitness Industry?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/06/drew-beamer-xU5Mqq0Chck-unsplash-scaled-1.jpg',NULL,'22621','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/06/drew-beamer-xU5Mqq0Chck-unsplash-scaled-1.jpg','22621','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":329625,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/06/drew-beamer-xU5Mqq0Chck-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/06/drew-beamer-xU5Mqq0Chck-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":22621,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 20:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-06-15 14:25:09',0),(843,'https://biomechanicseducation.com/?p=22758','52:a88cb1f06d35a93636cdfb2b6c45dc80',22758,'post','post',3,0,NULL,NULL,'PICK ME! &#8211; Seeking Approval','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/06/felix-koutchinski-FOro6jhMw30-unsplash-1-1.jpg',NULL,'22780','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/06/felix-koutchinski-FOro6jhMw30-unsplash-1-1.jpg','22780','featured-image','{\"width\":2000,\"height\":1333,\"filesize\":980860,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/06/felix-koutchinski-FOro6jhMw30-unsplash-1-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/06/felix-koutchinski-FOro6jhMw30-unsplash-1-1.jpg\",\"size\":\"full\",\"id\":22780,\"alt\":\"\",\"pixels\":2666000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 20:54:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-06-23 04:37:17',0),(844,'https://biomechanicseducation.com/?p=22901','52:678a8bd99eac7e7851c7b13330c60f20',22901,'post','post',3,0,NULL,NULL,'Should We Encourage Clients To Exercise Less?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/06/lindsey-saenz-kR3X9NxgW7E-unsplash-scaled-1.jpg',NULL,'22619','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/06/lindsey-saenz-kR3X9NxgW7E-unsplash-scaled-1.jpg','22619','featured-image','{\"width\":1709,\"height\":2560,\"filesize\":465226,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/06/lindsey-saenz-kR3X9NxgW7E-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/06/lindsey-saenz-kR3X9NxgW7E-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":22619,\"alt\":\"\",\"pixels\":4375040,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 20:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-06-29 21:07:54',0),(845,'https://biomechanicseducation.com/?p=23077','52:de90a8a90dbd1abf3c26a3a173259608',23077,'post','post',3,0,NULL,NULL,'How Does The Fitness Industry Need To Adapt…?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/07/ani-kolleshi-vu-DaZVeny0-unsplash-scaled-1.jpg',NULL,'23081','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/07/ani-kolleshi-vu-DaZVeny0-unsplash-scaled-1.jpg','23081','featured-image','{\"width\":2560,\"height\":1529,\"filesize\":315847,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/07/ani-kolleshi-vu-DaZVeny0-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/07/ani-kolleshi-vu-DaZVeny0-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":23081,\"alt\":\"\",\"pixels\":3914240,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 20:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-07-07 16:05:06',0),(846,'https://biomechanicseducation.com/?p=23305','52:7dca92c9c25c132fd3dd3ea2a9b27bde',23305,'post','post',3,0,NULL,NULL,'Have You Considered Your Client&#8217;s Load Management Post Lockdown?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/07/shutterstock_238685191-scaled-1.jpg',NULL,'23317','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/07/shutterstock_238685191-scaled-1.jpg','23317','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":441849,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/07/shutterstock_238685191-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/07/shutterstock_238685191-scaled-1.jpg\",\"size\":\"full\",\"id\":23317,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 20:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-07-26 09:39:24',0),(847,'https://biomechanicseducation.com/?p=23383','52:7e17a4f6816d4d0ef2f0d4e4a1b6fe89',23383,'post','post',3,0,NULL,NULL,'Did You Know&#8230;.? 37,000 UK deaths annually from inactivity related causes!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/08/shutterstock_76949212-scaled-1.jpg',NULL,'23386','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/08/shutterstock_76949212-scaled-1.jpg','23386','featured-image','{\"width\":1707,\"height\":2560,\"filesize\":152684,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/08/shutterstock_76949212-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/08/shutterstock_76949212-scaled-1.jpg\",\"size\":\"full\",\"id\":23386,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 20:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-08-01 05:53:41',0),(848,'https://biomechanicseducation.com/?p=23526','52:785b45f2d62d23f34609883f998f2af5',23526,'post','post',3,0,NULL,NULL,'Don&#8217;t get left behind! Do you have a plan B? plan C? And maybe even a plan D?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/08/diggity-marketing-s8HyIEe7lF0-unsplash-scaled-1.jpg',NULL,'23541','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/08/diggity-marketing-s8HyIEe7lF0-unsplash-scaled-1.jpg','23541','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":338993,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/08/diggity-marketing-s8HyIEe7lF0-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/08/diggity-marketing-s8HyIEe7lF0-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":23541,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 20:54:07','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-08-10 14:42:53',0),(849,'https://biomechanicseducation.com/?p=23636','52:94642c70afacd41ab340a114faa238ea',23636,'post','post',3,0,NULL,NULL,'Does your client experience pain while training?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/08/blue-skele-man.jpg',NULL,'23637','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/08/blue-skele-man.jpg','23637','featured-image','{\"width\":900,\"height\":1200,\"filesize\":566872,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/08/blue-skele-man.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/08/blue-skele-man.jpg\",\"size\":\"full\",\"id\":23637,\"alt\":\"\",\"pixels\":1080000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:30','2020-08-17 14:44:54',0),(850,'https://biomechanicseducation.com/?p=23765','52:340096a812e9f9bebc0b3d029a702c32',23765,'post','post',3,0,NULL,NULL,'Does having a better understanding of the body make you a better coach?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/08/shutterstock_1176407491-2.jpg',NULL,'23770','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/08/shutterstock_1176407491-2.jpg','23770','featured-image','{\"width\":1000,\"height\":1333,\"filesize\":1696219,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/08/shutterstock_1176407491-2.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/08/shutterstock_1176407491-2.jpg\",\"size\":\"full\",\"id\":23770,\"alt\":\"\",\"pixels\":1333000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2020-08-25 05:44:20',0),(851,'https://biomechanicseducation.com/?p=23939','52:568a244a0b62999981ee08fd7395e702',23939,'post','post',3,0,NULL,NULL,'Do you wonder what&#8217;s going on when coaching technique just doesn&#8217;t work?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/09/IMG_3042-1-e1599560790546.jpeg',NULL,'23949','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/09/IMG_3042-1-e1599560790546.jpeg','23949','featured-image','{\"width\":1000,\"height\":1499,\"filesize\":182207,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/09/IMG_3042-1-e1599560790546.jpeg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/09/IMG_3042-1-e1599560790546.jpeg\",\"size\":\"full\",\"id\":23949,\"alt\":\"\",\"pixels\":1499000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:09:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2020-09-08 10:24:00',0),(852,'https://biomechanicseducation.com/?p=24097','52:8fcdac0672657fb8db1394050fd18461',24097,'post','post',3,0,NULL,NULL,'Will understanding biomechanics take me to the next level?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/09/DSC01482-scaled-1.jpg',NULL,'24100','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/09/DSC01482-scaled-1.jpg','24100','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":845774,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/09/DSC01482-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/09/DSC01482-scaled-1.jpg\",\"size\":\"full\",\"id\":24100,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2020-09-21 14:19:34',0),(853,'https://biomechanicseducation.com/?p=24186','52:5bcf07ede3d09ac2df9cd4f20d914b04',24186,'post','post',3,0,NULL,NULL,'Is shoulder pain the new back pain?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_172528928-scaled-1.jpg',NULL,'24189','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_172528928-scaled-1.jpg','24189','featured-image','{\"width\":2560,\"height\":2426,\"filesize\":171057,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_172528928-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/09/shutterstock_172528928-scaled-1.jpg\",\"size\":\"full\",\"id\":24189,\"alt\":\"\",\"pixels\":6210560,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2020-09-29 12:23:57',0),(854,'https://biomechanicseducation.com/did-you-know-some-people-have-6-quadricep-muscles/','84:7005ccec5eb939a1425a997594b6fc75',24262,'post','post',3,0,'Some People Have 6 Quadricep Muscles - Biomechanics Education','Discover the surprising existence of five or even six quadriceps muscles in some people, revealing new insights into human anatomy and movement.','Did You Know….some people have 6 Quadricep Muscles?','publish',NULL,0,NULL,NULL,NULL,'Quadricep Muscles',52,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/10/shutterstock_1401205709-scaled-1.jpg',NULL,'24268','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/10/shutterstock_1401205709-scaled-1.jpg','24268','featured-image','{\"width\":2560,\"height\":2560,\"filesize\":577676,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/10/shutterstock_1401205709-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2020/10/shutterstock_1401205709-scaled-1.jpg\",\"size\":\"full\",\"id\":24268,\"alt\":\"\",\"pixels\":6553600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 21:09:06','2025-01-20 16:01:57',1,NULL,NULL,NULL,NULL,0,3,2,'2025-01-20 16:01:57','2020-10-06 09:38:25',0),(855,'https://biomechanicseducation.com/?p=24449','52:ba2e50a4b9399bb4c0ad207d70f7341c',24449,'post','post',3,0,NULL,NULL,'Does Your Client Really Have A Weak Core?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/10/shutterstock_619010450-scaled-1.jpg',NULL,'24451','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/10/shutterstock_619010450-scaled-1.jpg','24451','featured-image','{\"width\":2560,\"height\":1741,\"filesize\":1253926,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/10/shutterstock_619010450-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/10/shutterstock_619010450-scaled-1.jpg\",\"size\":\"full\",\"id\":24451,\"alt\":\"\",\"pixels\":4456960,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2020-10-19 10:00:38',0),(856,'https://biomechanicseducation.com/pelvic-hip-biomechanics-part-1-the-bones/','75:c013cccd54584cff45508d4d16caaa68',24544,'post','post',3,0,NULL,'Deepen your anatomy knowledge with practical insights and techniques to enhance client training and performance.','Pelvic (Hip) Biomechanics &#8211; Part 1 &#8211; The Bones of the Hip','publish',NULL,0,NULL,NULL,NULL,'Bones of the hip',62,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.50.51.png',NULL,'24642','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.50.51.png','24642','featured-image','{\"width\":842,\"height\":726,\"filesize\":837751,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.50.51.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.50.51.png\",\"size\":\"full\",\"id\":24642,\"alt\":\"\",\"pixels\":611292,\"type\":\"image/png\"}',3,NULL,NULL,'2024-07-23 21:09:06','2025-01-20 15:59:56',1,NULL,NULL,NULL,NULL,0,7,2,'2025-01-20 15:59:55','2020-10-27 07:49:45',90),(857,'https://biomechanicseducation.com/?p=24648','52:a11a3ee77c22ca45f8b58ac9222f4b66',24648,'post','post',3,0,NULL,NULL,'5 Steps To Keep Your Clients During Lockdown 2.0','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/11/photo-boards-25QCezs8-oo-unsplash.jpg',NULL,'24653','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/11/photo-boards-25QCezs8-oo-unsplash.jpg','24653','featured-image','{\"width\":1000,\"height\":666,\"filesize\":117633,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/11/photo-boards-25QCezs8-oo-unsplash.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/11/photo-boards-25QCezs8-oo-unsplash.jpg\",\"size\":\"full\",\"id\":24653,\"alt\":\"\",\"pixels\":666000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2020-11-03 14:11:50',0),(858,'https://biomechanicseducation.com/pelvic-hip-biomechanics-part-1-the-muscles-of-the-hip/','88:1b4b588b74799073a03cd22cd51bef60',24764,'post','post',3,0,NULL,'In Part 2 of our series on pelvic biomechanics, we focus on the muscles controlling hip movement, vital for enhancing mobility and reducing pain.','Pelvic (Hip) Biomechanics – Part 2 – The Muscles of the Hip','publish',NULL,0,NULL,NULL,NULL,'Pelvic Biomechanics',64,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1757766335-scaled-1.jpg',NULL,'24781','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1757766335-scaled-1.jpg','24781','featured-image','{\"width\":2560,\"height\":2560,\"filesize\":642962,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1757766335-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2020/11/shutterstock_1757766335-scaled-1.jpg\",\"size\":\"full\",\"id\":24781,\"alt\":\"\",\"pixels\":6553600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 21:09:06','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,7,2,'2025-01-20 15:59:55','2020-11-09 09:23:52',0),(859,'https://biomechanicseducation.com/?p=24894','52:4254560d428a348cd6174b60938c4b03',24894,'post','post',3,0,NULL,NULL,'Spine Biomechanics &#8211; Part 3 &#8211; The Bones of the Spine','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_128700983.jpg',NULL,'24903','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_128700983.jpg','24903','featured-image','{\"width\":1000,\"height\":964,\"filesize\":118198,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_128700983.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/11/shutterstock_128700983.jpg\",\"size\":\"full\",\"id\":24903,\"alt\":\"\",\"pixels\":964000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2020-11-16 14:00:50',0),(860,'https://biomechanicseducation.com/spine-biomechanics-part-4-the-muscles-of-the-spine/','85:d8a13dfb4b761a0f89562844e06ee1fc',25092,'post','post',3,0,'Spine Biomechanics Part-4 %%sep%% %%sitename%%','Delve into spine biomechanics with an overview of the spine\'s muscles, their functions, and their impact on movement.','Spine Biomechanics Part 4 &#8211; The Muscles of the Spine','publish',NULL,0,NULL,NULL,NULL,'Spine Biomechanics',67,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1520541617-scaled-1.jpg',NULL,'25128','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1520541617-scaled-1.jpg','25128','featured-image','{\"width\":2560,\"height\":1964,\"filesize\":686135,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1520541617-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2020/12/shutterstock_1520541617-scaled-1.jpg\",\"size\":\"full\",\"id\":25128,\"alt\":\"\",\"pixels\":5027840,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 21:09:06','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,8,2,'2025-01-20 15:59:55','2020-12-01 07:53:39',90),(861,'https://biomechanicseducation.com/?p=25457','52:034bfdd9eac68a63f4f7e761dfff9b6f',25457,'post','post',3,0,NULL,NULL,'Shoulder Biomechanics Part 5 &#8211; The Bones of the Shoulder','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_172528928-scaled-1.jpg',NULL,'24189','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_172528928-scaled-1.jpg','24189','featured-image','{\"width\":2560,\"height\":2426,\"filesize\":171057,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_172528928-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/09/shutterstock_172528928-scaled-1.jpg\",\"size\":\"full\",\"id\":24189,\"alt\":\"\",\"pixels\":6210560,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2020-12-15 10:20:26',0),(862,'https://biomechanicseducation.com/shoulder-biomechanics-part-6-the-muscles-of-the-shoulder/','91:e9789a184e23b14f2d2be2e22cd3ac14',25466,'post','post',3,0,'%%title%% %%page%%','Explore shoulder biomechanics: understand the roles of key muscles for movement and stability in this detailed guide.','Shoulder Biomechanics Part 6 – The Muscles of the Shoulder','publish',NULL,0,NULL,NULL,NULL,'Muscles of the shoulder',69,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_147943874-scaled-1.jpg',NULL,'24188','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_147943874-scaled-1.jpg','24188','featured-image','{\"width\":2560,\"height\":2048,\"filesize\":264721,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_147943874-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2020/09/shutterstock_147943874-scaled-1.jpg\",\"size\":\"full\",\"id\":24188,\"alt\":\"\",\"pixels\":5242880,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 21:09:06','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,5,2,'2025-01-20 15:59:55','2021-01-04 15:12:00',0),(863,'https://biomechanicseducation.com/?p=25961','52:081ca50b352ba45cdf4947b20b3ead88',25961,'post','post',3,0,NULL,NULL,'Knee Biomechanics Part 7 &#8211; The Bones of the Knee','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1141946069-scaled-1.jpg',NULL,'25974','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1141946069-scaled-1.jpg','25974','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":253137,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1141946069-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/01/shutterstock_1141946069-scaled-1.jpg\",\"size\":\"full\",\"id\":25974,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2021-01-26 15:29:09',0),(864,'https://biomechanicseducation.com/?p=26101','52:4f55fe693bf97b96cfe605f0d77378de',26101,'post','post',3,0,NULL,NULL,'Knee Biomechanics Part 8 &#8211; The Muscles of the Knee','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_1401205709-scaled-1.jpg',NULL,'26106','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_1401205709-scaled-1.jpg','26106','featured-image','{\"width\":2560,\"height\":2560,\"filesize\":577838,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/02/shutterstock_1401205709-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/02/shutterstock_1401205709-scaled-1.jpg\",\"size\":\"full\",\"id\":26106,\"alt\":\"\",\"pixels\":6553600,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2021-02-02 13:20:43',0),(865,'https://biomechanicseducation.com/?p=26749','52:774d41afecaf189c0081fada0acabc7d',26749,'post','post',3,0,NULL,NULL,'Breath Biomechanics','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/03/shutterstock_1744603634-scaled-1.jpg',NULL,'26750','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/03/shutterstock_1744603634-scaled-1.jpg','26750','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":544572,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/03/shutterstock_1744603634-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/03/shutterstock_1744603634-scaled-1.jpg\",\"size\":\"full\",\"id\":26750,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2021-03-15 20:58:36',0),(866,'https://biomechanicseducation.com/?p=26957','52:02c7e7ed0052c70b8734e42da9494f44',26957,'post','post',3,0,NULL,NULL,'How SMART are your questions?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/03/mathew-schwartz-8rj4sz9YLCI-unsplash-scaled-1.jpg',NULL,'26965','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/03/mathew-schwartz-8rj4sz9YLCI-unsplash-scaled-1.jpg','26965','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":155835,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/03/mathew-schwartz-8rj4sz9YLCI-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/03/mathew-schwartz-8rj4sz9YLCI-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":26965,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2021-03-30 13:30:35',0),(867,'https://biomechanicseducation.com/?p=27204','52:a45aa0df8abe01d4420299b33784ac9a',27204,'post','post',3,0,NULL,NULL,'Foot Biomechanics Part 9 &#8211; The Bones of the Foot &#038; Ankle','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/04/Screenshot-2020-09-14-at-10.58.59-1.png',NULL,'27205','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/04/Screenshot-2020-09-14-at-10.58.59-1.png','27205','featured-image','{\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/04/Screenshot-2020-09-14-at-10.58.59-1.png\",\"width\":1200,\"height\":1212,\"size\":\"full\",\"id\":27205,\"alt\":\"\",\"pixels\":1454400,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2021-04-12 20:16:41',0),(868,'https://biomechanicseducation.com/foot-biomechanics-part-10-the-muscles-of-the-foot-ankle/','90:7c3679d5fda8d427ff7157f8e3615779',27321,'post','post',3,0,NULL,'Foot Biomechanics - Learn all about the Muscles of the Foot and Ankle on our blog. read more...','Foot Biomechanics Part 10 &#8211; The Muscles of the Foot &#038; Ankle','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-brevis-scaled-1.jpg',NULL,'27335','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-brevis-scaled-1.jpg','27335','featured-image','{\"width\":2560,\"height\":1920,\"filesize\":302455,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-brevis-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2021/04/flexor-digitorum-brevis-scaled-1.jpg\",\"size\":\"full\",\"id\":27335,\"alt\":\"\",\"pixels\":4915200,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-23 21:24:06','2025-01-20 15:59:55',1,NULL,NULL,NULL,NULL,0,10,2,'2025-01-20 15:59:55','2021-04-20 17:58:09',0),(869,'https://biomechanicseducation.com/?p=27746','52:0e0bd170f75bc9508de0c5e57fc874d0',27746,'post','post',3,0,NULL,NULL,'A PT&#8217;s Guide to Sciatica &#8211; Part 1','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1311339359-scaled-1.jpg',NULL,'27748','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1311339359-scaled-1.jpg','27748','featured-image','{\"width\":2560,\"height\":1896,\"filesize\":341869,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1311339359-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/05/shutterstock_1311339359-scaled-1.jpg\",\"size\":\"full\",\"id\":27748,\"alt\":\"\",\"pixels\":4853760,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2021-05-18 10:56:32',0),(870,'https://biomechanicseducation.com/?p=27868','52:252846cf46c2a23c54453bea162b5d9f',27868,'post','post',3,0,NULL,NULL,'A PT&#8217;s Guide to Sciatica &#8211; Part 2','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/01/DSC_7052-scaled-1.jpg',NULL,'23146','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/01/DSC_7052-scaled-1.jpg','23146','featured-image','{\"width\":2560,\"height\":1709,\"filesize\":598036,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/01/DSC_7052-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2018/01/DSC_7052-scaled-1.jpg\",\"size\":\"full\",\"id\":23146,\"alt\":\"\",\"pixels\":4375040,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2021-06-14 11:49:19',0),(871,'https://biomechanicseducation.com/?p=28326','52:2aa6ca7210a7c4df654aa3fc7d7b7e93',28326,'post','post',3,0,NULL,NULL,'A PT&#8217;s Guide to Sciatica &#8211; Part 3','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/06/annie-spratt-oQfSHQ2Uaic-unsplash-scaled-1.jpg',NULL,'27968','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/06/annie-spratt-oQfSHQ2Uaic-unsplash-scaled-1.jpg','27968','featured-image','{\"width\":1708,\"height\":2560,\"filesize\":385562,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/06/annie-spratt-oQfSHQ2Uaic-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/06/annie-spratt-oQfSHQ2Uaic-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":27968,\"alt\":\"\",\"pixels\":4372480,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2021-06-23 14:22:38',0),(872,'https://biomechanicseducation.com/?p=28483','52:d94363d250450056ec391de78d3b0377',28483,'post','post',3,0,NULL,NULL,'Ever been attacked a Keyboard Warrior?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_409451293-scaled-1.jpg',NULL,'28487','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_409451293-scaled-1.jpg','28487','featured-image','{\"width\":2560,\"height\":1619,\"filesize\":223521,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_409451293-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/07/shutterstock_409451293-scaled-1.jpg\",\"size\":\"full\",\"id\":28487,\"alt\":\"\",\"pixels\":4144640,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2021-07-05 13:28:09',0),(873,'https://biomechanicseducation.com/?p=28615','52:674c5e07d48c1991ed5810bf66d5f6c6',28615,'post','post',3,0,NULL,NULL,'Motivational Interviewing &#038; Dialectical (Behaviour Therapy) Techniques- Part 2','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_651221473-scaled-1.jpg',NULL,'28620','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_651221473-scaled-1.jpg','28620','featured-image','{\"width\":2560,\"height\":1870,\"filesize\":480354,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/07/shutterstock_651221473-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/07/shutterstock_651221473-scaled-1.jpg\",\"size\":\"full\",\"id\":28620,\"alt\":\"\",\"pixels\":4787200,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:29','2021-07-12 13:51:20',0),(874,'https://biomechanicseducation.com/?p=28845','52:5a2863d5ade8666f7e6d783397d4072a',28845,'post','post',3,0,NULL,NULL,'Running with an Injury or Over Training','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/07/filip-mroz-167499-unsplash-scaled-1.jpg',NULL,'28847','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/07/filip-mroz-167499-unsplash-scaled-1.jpg','28847','featured-image','{\"width\":1829,\"height\":2560,\"filesize\":193631,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/07/filip-mroz-167499-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/07/filip-mroz-167499-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":28847,\"alt\":\"\",\"pixels\":4682240,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-07-30 08:07:17',0),(875,'https://biomechanicseducation.com/?p=29093','52:d4bf211375f161425c53935359e008ee',29093,'post','post',3,0,NULL,NULL,'&#8216;Why didn&#8217;t Boris trust us enough to let us continue working?&#8217;','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'29095','featured-image',NULL,NULL,NULL,'29095','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-08-16 13:40:34',0),(876,'https://biomechanicseducation.com/?p=29658','52:e1b66f8faf66c58a1c0d5bc9db950e09',29658,'post','post',3,0,NULL,NULL,'10 Tips To Feeling Great In Your 50&#8217;s!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/07/IMG_6257-1.jpeg',NULL,'28733','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/07/IMG_6257-1.jpeg','28733','featured-image','{\"width\":1272,\"height\":1125,\"filesize\":263053,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/07/IMG_6257-1.jpeg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/07/IMG_6257-1.jpeg\",\"size\":\"full\",\"id\":28733,\"alt\":\"\",\"pixels\":1431000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-09-28 07:24:27',0),(877,'https://biomechanicseducation.com/?p=29855','52:524f1d580f95cee4afc523dd17736d3e',29855,'post','post',3,0,NULL,NULL,'Solutions for runner&#8217;s knee may not be what you think….','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png',NULL,'18460','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png','18460','featured-image','{\"width\":1225,\"height\":612,\"filesize\":1028983,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/11/Running-Biomechanics-Myths-Martin-Haines-1.png\",\"size\":\"full\",\"id\":18460,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-10-11 19:09:27',0),(878,'https://biomechanicseducation.com/?p=29946','52:4163186edd5d91e0b408f57f169d8a62',29946,'post','post',3,0,NULL,NULL,'Meet the Team&#8230;&#8230;. Beth, Digital Marketing Manager','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'29947','featured-image',NULL,NULL,NULL,'29947','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 21:24:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-10-19 11:00:14',0),(879,'https://biomechanicseducation.com/?p=30099','52:cb8fb142c67c566c4027f529d66d012e',30099,'post','post',3,0,NULL,NULL,'Keeping it simple with 8 things to remember!','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Modified-Thomas-Test-Biomechanics-Education-1.jpeg',NULL,'18634','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2019/11/Modified-Thomas-Test-Biomechanics-Education-1.jpeg','18634','featured-image','{\"width\":1280,\"height\":854,\"filesize\":293248,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2019/11/Modified-Thomas-Test-Biomechanics-Education-1.jpeg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2019/11/Modified-Thomas-Test-Biomechanics-Education-1.jpeg\",\"size\":\"full\",\"id\":18634,\"alt\":\"\",\"pixels\":1093120,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:39:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-11-02 08:10:10',0),(880,'https://biomechanicseducation.com/?p=30198','52:7b75235e1092c51821cf746aa68b8b0a',30198,'post','post',3,0,NULL,NULL,'Give your client&#8217;s an excuse to stop work&#8230;..','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'30202','featured-image',NULL,NULL,NULL,'30202','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 21:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-11-09 14:17:44',0),(881,'https://biomechanicseducation.com/?p=30273','52:d51558fc32c626e9c80a49862f027a76',30273,'post','post',3,0,NULL,NULL,'Would you like to know when, and how, to tell your client to GO AWAY…..?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'30274','featured-image',NULL,NULL,NULL,'30274','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 21:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-11-16 13:43:41',0),(882,'https://biomechanicseducation.com/?p=30431','52:81bacd473e6da6e7e3accc9749b57072',30431,'post','post',3,0,NULL,NULL,'The Turkish Get Up','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/05/diego-lozano-yZQ9PCabSoM-unsplash-scaled-1.jpg',NULL,'21937','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/05/diego-lozano-yZQ9PCabSoM-unsplash-scaled-1.jpg','21937','featured-image','{\"width\":1920,\"height\":2560,\"filesize\":769076,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/05/diego-lozano-yZQ9PCabSoM-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2020/05/diego-lozano-yZQ9PCabSoM-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":21937,\"alt\":\"\",\"pixels\":4915200,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-11-30 11:43:46',0),(883,'https://biomechanicseducation.com/?p=30439','52:b983ae7c2f6c2853ecec94052e36a28c',30439,'post','post',3,0,NULL,NULL,'The Perfect Day','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/02/emma-simpson-mNGaaLeWEp0-unsplash-scaled-1.jpg',NULL,'26161','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/02/emma-simpson-mNGaaLeWEp0-unsplash-scaled-1.jpg','26161','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":639078,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/02/emma-simpson-mNGaaLeWEp0-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/02/emma-simpson-mNGaaLeWEp0-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":26161,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-12-02 14:10:56',0),(884,'https://biomechanicseducation.com/?p=30500','52:33415a0c9ce0cf933f4202d895c44461',30500,'post','post',3,0,NULL,NULL,'The Windmill V’s The Triangle ','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/IMG_2288-scaled-1.jpg',NULL,'30503','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/IMG_2288-scaled-1.jpg','30503','featured-image','{\"width\":2560,\"height\":2560,\"filesize\":603028,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/12/IMG_2288-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/12/IMG_2288-scaled-1.jpg\",\"size\":\"full\",\"id\":30503,\"alt\":\"\",\"pixels\":6553600,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-12-04 08:10:43',0),(885,'https://biomechanicseducation.com/?p=30506','52:5b42e63d7b7819351f97508bb6d3096d',30506,'post','post',3,0,NULL,NULL,'End goal first&#8230;.','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-08.13.15.png',NULL,'30590','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-08.13.15.png','30590','featured-image','{\"width\":792,\"height\":682,\"filesize\":665002,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-08.13.15.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/12/Screenshot-2021-12-09-at-08.13.15.png\",\"size\":\"full\",\"id\":30590,\"alt\":\"\",\"pixels\":540144,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 21:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-12-09 08:20:46',0),(886,'https://biomechanicseducation.com/?p=30528','52:97ab06a390cadbd57d3dccbeb780ba14',30528,'post','post',3,0,NULL,NULL,'Want to learn how to manage time&#8230;?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/david-clode-2slBHG3HtdA-unsplash-scaled-1.jpg',NULL,'30611','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/david-clode-2slBHG3HtdA-unsplash-scaled-1.jpg','30611','featured-image','{\"width\":2560,\"height\":1643,\"filesize\":342399,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/12/david-clode-2slBHG3HtdA-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/12/david-clode-2slBHG3HtdA-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":30611,\"alt\":\"\",\"pixels\":4206080,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-12-09 21:23:20',0),(887,'https://biomechanicseducation.com/?p=30531','52:6f5399a5d598c0ca4fd74a02a4c15273',30531,'post','post',3,0,NULL,NULL,'How to add value to your business &#038; charge more','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/mathieu-stern-1zO4O3Z0UJA-unsplash-scaled-1.jpg',NULL,'30633','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/mathieu-stern-1zO4O3Z0UJA-unsplash-scaled-1.jpg','30633','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":318473,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/12/mathieu-stern-1zO4O3Z0UJA-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/12/mathieu-stern-1zO4O3Z0UJA-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":30633,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-12-11 19:24:04',0),(888,'https://biomechanicseducation.com/?p=30642','52:2e765e7c88109f303a0dc69e5d390aa8',30642,'post','post',3,0,NULL,NULL,'The Kettlebell Swing ','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/taco-fleur-qxoOajPS55U-unsplash-scaled-1.jpg',NULL,'30650','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/taco-fleur-qxoOajPS55U-unsplash-scaled-1.jpg','30650','featured-image','{\"width\":2560,\"height\":1920,\"filesize\":491807,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/12/taco-fleur-qxoOajPS55U-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/12/taco-fleur-qxoOajPS55U-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":30650,\"alt\":\"\",\"pixels\":4915200,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-12-13 11:14:38',0),(889,'https://biomechanicseducation.com/?p=30657','52:c1366b9afc9a50d0344c3786e04bcbe5',30657,'post','post',3,0,NULL,NULL,'Embracing Failure','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/brett-jordan-nd2fFCkXWTw-unsplash-scaled-1.jpg',NULL,'30660','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/brett-jordan-nd2fFCkXWTw-unsplash-scaled-1.jpg','30660','featured-image','{\"width\":2560,\"height\":1920,\"filesize\":324844,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/12/brett-jordan-nd2fFCkXWTw-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/12/brett-jordan-nd2fFCkXWTw-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":30660,\"alt\":\"\",\"pixels\":4915200,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2021-12-13 11:50:26',0),(890,'https://biomechanicseducation.com/the-deadlift/','47:4ecbb51ec87e39bcc9527ab654d6021d',30719,'post','post',3,0,NULL,'Master the deadlift with this comprehensive guide on form, biomechanics, and tips for strength and injury prevention.','The Deadlift: A Comprehensive Guide','publish',NULL,0,NULL,NULL,NULL,'The Deadlift',74,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/alora-griffiths-E3wehabi_B4-unsplash-scaled-1.jpg',NULL,'30721','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/alora-griffiths-E3wehabi_B4-unsplash-scaled-1.jpg','30721','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":654661,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/12/alora-griffiths-E3wehabi_B4-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2021/12/alora-griffiths-E3wehabi_B4-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":30721,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 21:39:06','2025-01-20 16:01:57',1,NULL,NULL,NULL,NULL,0,3,2,'2025-01-20 16:01:56','2021-12-16 20:24:37',90),(891,'https://biomechanicseducation.com/?p=31063','52:b4ce4501044b089bdabc4df627066235',31063,'post','post',3,0,NULL,NULL,'Online vs Face to Face','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/01/Screenshot-2022-01-19-at-08.56.42.png',NULL,'31083','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/01/Screenshot-2022-01-19-at-08.56.42.png','31083','featured-image','{\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2022/01/Screenshot-2022-01-19-at-08.56.42.png\",\"width\":1200,\"height\":438,\"size\":\"full\",\"id\":31083,\"alt\":\"\",\"pixels\":525600,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 21:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2022-01-18 14:19:59',0),(892,'https://biomechanicseducation.com/?p=31258','52:1b7d65e2e9f54298345451846fc8eb91',31258,'post','post',3,0,NULL,NULL,'Understanding Nerves','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1311339359-scaled-1.jpg',NULL,'27748','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1311339359-scaled-1.jpg','27748','featured-image','{\"width\":2560,\"height\":1896,\"filesize\":341869,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1311339359-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/05/shutterstock_1311339359-scaled-1.jpg\",\"size\":\"full\",\"id\":27748,\"alt\":\"\",\"pixels\":4853760,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:39:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2022-02-02 11:48:19',0),(893,'https://biomechanicseducation.com/neuromuscular-exercise/','57:29e152e197c898b9847edcd1083e5102',31421,'post','post',3,0,'Understanding Neuromuscular Exercise - Biomechanics education','Unlock the benefits of neuromuscular exercise with our guide: improve stability, coordination, and functional strength.','Understanding Neuromuscular Exercise: A Comprehensive Guide','publish',NULL,0,NULL,NULL,NULL,'Understanding Neuromuscular Exercise',60,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4529.jpg',NULL,'31422','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4529.jpg','31422','featured-image','{\"width\":1127,\"height\":1124,\"filesize\":137927,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4529.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2022/02/IMG_4529.jpg\",\"size\":\"full\",\"id\":31422,\"alt\":\"Neuromuscular Exercise - biomechanics education\",\"pixels\":1266748,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 21:39:06','2025-01-20 16:01:56',1,NULL,NULL,NULL,NULL,0,5,2,'2025-01-20 16:01:56','2022-02-14 14:12:21',0),(894,'https://biomechanicseducation.com/?p=31734','52:f88aab1f4ba8d3d5b0f776261066b334',31734,'post','post',3,0,NULL,NULL,'The Power of Words','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/03/brett-jordan-mgXsJEKse1A-unsplash-scaled-1.jpg',NULL,'31735','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/03/brett-jordan-mgXsJEKse1A-unsplash-scaled-1.jpg','31735','featured-image','{\"width\":2560,\"height\":1920,\"filesize\":210641,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2022/03/brett-jordan-mgXsJEKse1A-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2022/03/brett-jordan-mgXsJEKse1A-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":31735,\"alt\":\"\",\"pixels\":4915200,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2022-03-10 12:55:44',0),(895,'https://biomechanicseducation.com/?p=32172','52:f8b45fba8cb38e34d1399fd0229b87bd',32172,'post','post',3,0,NULL,NULL,'Let me introduce you to our Ultimate Master…','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2016/10/shutterstock_1054776068-scaled-1.jpg',NULL,'26985','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2016/10/shutterstock_1054776068-scaled-1.jpg','26985','featured-image','{\"width\":2560,\"height\":1004,\"filesize\":217684,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2016/10/shutterstock_1054776068-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2016/10/shutterstock_1054776068-scaled-1.jpg\",\"size\":\"full\",\"id\":26985,\"alt\":\"\",\"pixels\":2570240,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2022-05-10 09:11:04',0),(896,'https://biomechanicseducation.com/?p=32174','52:768674d896b89ee79d65bc07aebf4daf',32174,'post','post',3,0,NULL,NULL,'Would you like access to 85% more clients?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/01/gabin-vallet-J154nEkpzlQ-unsplash-scaled-1.jpg',NULL,'31068','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/01/gabin-vallet-J154nEkpzlQ-unsplash-scaled-1.jpg','31068','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":854586,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2022/01/gabin-vallet-J154nEkpzlQ-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2022/01/gabin-vallet-J154nEkpzlQ-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":31068,\"alt\":\"gabin-vallet - Online vs Face to Face- biomechanics education\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2022-05-18 11:40:37',0),(897,'https://biomechanicseducation.com/?p=32178','52:ff78e831e9762e8f33fde45c2959ca7d',32178,'post','post',3,0,NULL,NULL,'Why All The Fuss About Posture?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/04/IMG_8092.jpeg',NULL,'32179','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/04/IMG_8092.jpeg','32179','featured-image','{\"width\":1479,\"height\":727,\"filesize\":225138,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2022/04/IMG_8092.jpeg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2022/04/IMG_8092.jpeg\",\"size\":\"full\",\"id\":32179,\"alt\":\"Rachel France - exercising\",\"pixels\":1075233,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2022-05-19 11:40:39',0),(898,'https://biomechanicseducation.com/?p=32176','52:a48c30cb7eaac0a3dde5a00932a46996',32176,'post','post',3,0,NULL,NULL,'Tissue Tolerance &#038; Load Management &#8211; how can we measure?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4675.jpg',NULL,'31427','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4675.jpg','31427','featured-image','{\"width\":1283,\"height\":1277,\"filesize\":310145,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4675.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2022/02/IMG_4675.jpg\",\"size\":\"full\",\"id\":31427,\"alt\":\"\",\"pixels\":1638391,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2022-05-19 14:25:36',0),(899,'https://biomechanicseducation.com/?p=32181','52:06ce5144c1ecd8577101c156c1b02fb7',32181,'post','post',3,0,NULL,NULL,'A Pathway to Chartered Status..','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/04/Screenshot-2022-04-20-at-06.54.03.png',NULL,'32182','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/04/Screenshot-2022-04-20-at-06.54.03.png','32182','featured-image','{\"width\":1244,\"height\":870,\"filesize\":281191,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2022/04/Screenshot-2022-04-20-at-06.54.03.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2022/04/Screenshot-2022-04-20-at-06.54.03.png\",\"size\":\"full\",\"id\":32182,\"alt\":\"Rachel France - cimspa member profile\",\"pixels\":1082280,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 21:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:28','2022-05-19 14:56:08',0),(900,'https://biomechanicseducation.com/what-is-biomechanics-biomechanics-education/','78:446c312a3c1f11ef44a8ea7d4695ecf8',33064,'post','post',3,0,NULL,'Discover biomechanics: the science of movement. Learn its impact on performance, injury prevention, and careers.','What is biomechanics?','publish',NULL,0,NULL,NULL,NULL,'What is biomechanics',40,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/07/BE_Worshop_30thAug-14-scaled.jpg',NULL,'40398','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/07/BE_Worshop_30thAug-14-scaled.jpg','40398','featured-image','{\"width\":2560,\"height\":1710,\"filesize\":390280,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2022/07/BE_Worshop_30thAug-14-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2022/07/BE_Worshop_30thAug-14-scaled.jpg\",\"size\":\"full\",\"id\":40398,\"alt\":\"\",\"pixels\":4377600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 21:54:05','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,3,2,'2025-01-20 16:01:07','2022-07-14 13:36:57',0),(901,'https://biomechanicseducation.com/what-is-a-biomechanics-coach/','63:5be5720acaaff27e082a1aaee1e272b2',33066,'post','post',3,0,NULL,'Learn what a biomechanics coach does and how they improve movement, performance, and injury prevention in athletes.','What is a Biomechanics Coach?','publish',NULL,0,NULL,NULL,NULL,'What is Biomechanics',63,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6730-scaled-1.jpg',NULL,'23145','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6730-scaled-1.jpg','23145','featured-image','{\"width\":2560,\"height\":1709,\"filesize\":488841,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2018/01/DSC_6730-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2018/01/DSC_6730-scaled-1.jpg\",\"size\":\"full\",\"id\":23145,\"alt\":\"\",\"pixels\":4375040,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-07-23 21:54:05','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,4,2,'2025-01-20 16:01:07','2022-07-19 14:11:37',90),(902,'https://biomechanicseducation.com/?p=33426','52:ff9c43052c1e3b5cd2f8d4a15dcef008',33426,'post','post',3,0,NULL,NULL,'Understanding the importance of Intrinsic Biomechanical principles','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'33436','featured-image',NULL,NULL,NULL,'33436','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 21:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:27','2022-08-22 12:21:37',0),(903,'https://biomechanicseducation.com/?p=33779','52:bd67dbd236dbb1fe548b25ec5170e55c',33779,'post','post',3,0,NULL,NULL,'How can you get a job in biomechanics?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'33427','featured-image',NULL,NULL,NULL,'33427','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 21:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:27','2022-09-23 13:02:57',0),(904,'https://biomechanicseducation.com/what-is-the-difference-between-extrinsic-biomechanics-intrinsic-biomechanics/','111:8da197a1a8fb0da1c40c377bd8d9a7dd',34054,'post','post',3,0,'difference between extrinsic biomechanics & intrinsic biomechanics','Discover the differences between extrinsic and intrinsic biomechanics to enhance movement analysis and improve client outcomes.','What is the difference between extrinsic biomechanics &#038; intrinsic biomechanics?','publish',NULL,0,NULL,NULL,NULL,'Understanding the Difference Between Extrinsic and Intrinsic Biomechanics',64,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/10/BE_Worshop_30thAug-7-scaled.jpg',NULL,'40393','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/10/BE_Worshop_30thAug-7-scaled.jpg','40393','featured-image','{\"width\":2560,\"height\":1710,\"filesize\":584722,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2022/10/BE_Worshop_30thAug-7-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2022/10/BE_Worshop_30thAug-7-scaled.jpg\",\"size\":\"full\",\"id\":40393,\"alt\":\"\",\"pixels\":4377600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 21:54:05','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,3,2,'2025-01-20 16:01:07','2022-10-19 14:31:43',0),(905,'https://biomechanicseducation.com/how-does-understanding-intrinsic-biomechanics-improve-overall-health-wellbeing/','113:81be4a5da2bbd0837133b1d9da14f16a',34519,'post','post',3,0,'Understanding Intrinsic Biomechanics','Learn how understanding intrinsic biomechanics enhances overall health, wellbeing, and movement for clients across all demographics.','How Understanding Intrinsic Biomechanics Improves Overall Health and Wellbeing','publish',NULL,0,NULL,NULL,NULL,'How Understanding Intrinsic Biomechanics Improves',56,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/12/BiomechanicsEducation_Workshop_Fareham_web-12.jpg',NULL,'40396','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/12/BiomechanicsEducation_Workshop_Fareham_web-12.jpg','40396','featured-image','{\"width\":2048,\"height\":1368,\"filesize\":2084745,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2022/12/BiomechanicsEducation_Workshop_Fareham_web-12.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2022/12/BiomechanicsEducation_Workshop_Fareham_web-12.jpg\",\"size\":\"full\",\"id\":40396,\"alt\":\"\",\"pixels\":2801664,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 21:54:05','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,3,2,'2025-01-20 16:01:07','2022-12-10 22:12:46',0),(906,'https://biomechanicseducation.com/biomechanical-assessment-everything-you-need-to-know/','87:2d53144f55fe81d1e3dd850a73a98a63',35126,'post','post',3,0,'%%title%% %%page%%','Discover the essentials of biomechanical assessment: equipment-based vs. equipment-free, and who can help optimize your movement','Biomechanical assessment: everything you need to know','publish',NULL,0,NULL,NULL,NULL,'Biomechanical assessment',70,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/02/Photo-2021-11-20-09.56.15-am-scaled.jpg',NULL,'40391','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/02/Photo-2021-11-20-09.56.15-am-scaled.jpg','40391','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":544599,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2023/02/Photo-2021-11-20-09.56.15-am-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2023/02/Photo-2021-11-20-09.56.15-am-scaled.jpg\",\"size\":\"full\",\"id\":40391,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 21:54:05','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,4,2,'2025-01-20 16:01:07','2023-02-07 20:29:07',0),(907,'https://biomechanicseducation.com/?p=35742','52:3b620411b5e4d9fb8de7de1da7113e50',35742,'post','post',3,0,NULL,NULL,'How to become an advanced personal trainer','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/12/IMG_1564-scaled-1.jpg',NULL,'34558','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/12/IMG_1564-scaled-1.jpg','34558','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":404889,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2022/12/IMG_1564-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2022/12/IMG_1564-scaled-1.jpg\",\"size\":\"full\",\"id\":34558,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:27','2023-04-11 19:16:16',0),(908,'https://biomechanicseducation.com/?p=36198','52:a7bf8295a4516c4debf702f879d04811',36198,'post','post',3,0,NULL,NULL,'Intrinsic Biomechanics &#8211; Understanding The Components That Make Our Bodies Move','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/05/shutterstock_1067442071-300x200-1-1.jpg',NULL,'36214','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/05/shutterstock_1067442071-300x200-1-1.jpg','36214','featured-image','{\"width\":300,\"height\":200,\"filesize\":16852,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2023/05/shutterstock_1067442071-300x200-1-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2023/05/shutterstock_1067442071-300x200-1-1.jpg\",\"size\":\"full\",\"id\":36214,\"alt\":\"\",\"pixels\":60000,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 21:54:05','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:27','2023-05-23 08:39:47',0),(909,'https://biomechanicseducation.com/?p=36394','52:aa6125acd8af7869a9773af43c41610b',36394,'post','post',3,0,NULL,NULL,'Elevate 2023: Intrinsic Biomechanics &#8211; The Missing Piece of the Jigsaw for PTs?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-37-1-1.jpg',NULL,'36390','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-37-1-1.jpg','36390','featured-image','{\"width\":2016,\"height\":908,\"filesize\":261428,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-37-1-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2023/06/MicrosoftTeams-image-37-1-1.jpg\",\"size\":\"full\",\"id\":36390,\"alt\":\"\",\"pixels\":1830528,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 22:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:27','2023-06-22 11:02:18',0),(910,'https://biomechanicseducation.com/?p=36414','52:bb9d557643c36147cc79d7b5cf060a57',36414,'post','post',3,0,NULL,NULL,'Question…Could using machines differently hold an advantage?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/06/amol-sonar-wUyiLNXnNHY-unsplash-scaled-1.jpg',NULL,'36419','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/06/amol-sonar-wUyiLNXnNHY-unsplash-scaled-1.jpg','36419','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":279631,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2023/06/amol-sonar-wUyiLNXnNHY-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2023/06/amol-sonar-wUyiLNXnNHY-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":36419,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 22:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:27','2023-06-28 05:10:32',0),(911,'https://biomechanicseducation.com/?p=36448','52:d8fa98b5173292d3951bc3572da20be6',36448,'post','post',3,0,NULL,NULL,'Why Become a Biomechanics Coach?','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'',NULL,'36453','featured-image',NULL,NULL,NULL,'36453','featured-image',NULL,NULL,NULL,NULL,'2024-07-23 22:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:27','2023-07-05 06:57:51',0),(912,'https://biomechanicseducation.com/?p=36845','52:df2324f4d9f2f6dcb4a359af6f2aa79c',36845,'post','post',3,0,NULL,NULL,'Biomechanics of lifting: A guide for PTs &#038; Strength Coaches','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/alora-griffiths-E3wehabi_B4-unsplash-scaled-1.jpg',NULL,'30721','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/12/alora-griffiths-E3wehabi_B4-unsplash-scaled-1.jpg','30721','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":654661,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/12/alora-griffiths-E3wehabi_B4-unsplash-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/12/alora-griffiths-E3wehabi_B4-unsplash-scaled-1.jpg\",\"size\":\"full\",\"id\":30721,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 22:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:27','2023-09-12 08:32:48',0),(913,'https://biomechanicseducation.com/?p=26456','52:d9195aef3d37895d5652825990d44df7',26456,'post','post',3,0,NULL,NULL,'Spine Mobility Project &#8211; World Spine day','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.46.08-1.png',NULL,'26460','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.46.08-1.png','26460','featured-image','{\"width\":1102,\"height\":864,\"filesize\":1060252,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.46.08-1.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2021/02/Screenshot-2021-02-22-at-14.46.08-1.png\",\"size\":\"full\",\"id\":26460,\"alt\":\"\",\"pixels\":952128,\"type\":\"image/png\"}',NULL,NULL,NULL,'2024-07-23 22:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'2024-07-16 11:26:27','2023-10-13 15:51:05',0),(914,'https://biomechanicseducation.com/how-can-biomechanics-affect-mobility/','71:9c6cb6ed8b7bd8fe529ce75533e488eb',37121,'post','post',3,0,NULL,'Discover how biomechanics impacts mobility, enhances movement, and improves overall health through targeted assessments and exercises.','How can Biomechanics affect mobility?','publish',NULL,0,NULL,NULL,NULL,'Why Movement Matters',54,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/11/IMG_1565-scaled.jpg',NULL,'40387','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/11/IMG_1565-scaled.jpg','40387','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":370026,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2023/11/IMG_1565-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2023/11/IMG_1565-scaled.jpg\",\"size\":\"full\",\"id\":40387,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-23 22:09:06','2025-01-20 16:01:07',1,NULL,NULL,NULL,NULL,0,4,2,'2025-01-20 16:01:07','2023-11-08 10:00:09',0),(915,'https://biomechanicseducation.com/?p=37375','52:afb4dd5d0419b18039a637f072d3b1a4',37375,'post','post',3,0,NULL,NULL,'How does understanding intrinsic biomechanics help rehabilitation?','draft',0,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/12/IMG_1564-scaled-1.jpg',NULL,'34558','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2022/12/IMG_1564-scaled-1.jpg','34558','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":404889,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2022/12/IMG_1564-scaled-1.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2022/12/IMG_1564-scaled-1.jpg\",\"size\":\"full\",\"id\":34558,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2024-07-23 22:09:06','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,4,2,'2024-07-16 15:42:08','2023-12-20 10:00:43',0),(919,'https://biomechanicseducation.com/courses/cpd-courses/','54:6450a57e46a491e386e3a7cabe56e6fd',403,'term','course-cat',NULL,NULL,'CPD Courses | Biomechanics Education','Enhance your biomechanics expertise through our approachable and inclusive online CPD education platform.','CPD Courses',NULL,NULL,0,NULL,NULL,NULL,'CPD Courses',70,90,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 09:41:03','2025-04-07 10:32:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-02-19 10:17:10','2024-09-11 10:42:53',NULL),(920,'https://biomechanicseducation.com/courses/online-cpd-courses/','61:63910ff36855a6433d78dc260f991371',404,'term','course-cat',NULL,NULL,'%%term_title%% | %%sitename%%','Explore our online CPD courses. Enhance your skills with diverse topics in fitness and health, and stay current with the latest industry practices and knowledge.','Online CPD Courses',NULL,NULL,0,NULL,NULL,NULL,'Online Biomechanics Courses',38,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2024-07-24 09:41:23','2025-02-10 11:31:22',1,NULL,NULL,NULL,NULL,1,NULL,2,'2025-02-10 11:31:22','2024-09-11 10:42:53',NULL),(922,'https://biomechanicseducation.com/biomechanics/','47:02fa76c07b4dc279fc09a6f06122d217',406,'term','course-cat',NULL,NULL,NULL,NULL,'Biomechanics',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-24 09:42:22','2025-03-14 09:25:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-03-14 09:25:10',NULL,NULL),(923,'https://biomechanicseducation.com/courses/in-person-cpd-courses/','64:5decb3731bd6a28ac385e16e3d098875',408,'term','course-cat',NULL,NULL,'In Person CPD Courses | Biomechanics Education','Deepen your anatomy knowledge with our Practical Anatomy Series. Access 5 online recorded classrooms and 5 e-zines for comprehensive, interactive learning.','In-person CPD Courses',NULL,NULL,0,NULL,NULL,NULL,'In-person Biomechanics CPD Courses',42,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-25 12:25:16','2025-03-14 09:17:12',1,NULL,NULL,NULL,NULL,1,NULL,2,'2025-03-14 09:17:12','2024-09-19 10:59:14',90),(924,'https://biomechanicseducation.com/courses/webinars/','51:bd06fda582f4e084810d97c0474ad836',409,'term','course-cat',NULL,NULL,'%%term_title%% | %%sitename%%','Explore our biomechanics webinars. Gain insights into key concepts and practical applications to enhance your expertise and improve client outcomes.','Webinars',NULL,NULL,0,NULL,NULL,NULL,'Biomechanics Webinars',46,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-25 12:25:39','2025-04-07 10:32:19',1,NULL,NULL,NULL,NULL,1,NULL,2,'2024-10-23 13:25:40','2024-09-17 13:26:57',90),(925,'https://biomechanicseducation.com/getting-started/','60:cccdd2fa152bef0f6b166484fe20d6d0',39148,'post','page',3,0,'Getting Started | Biomechanics Education','Get started with our courses. Discover essential resources to begin your journey in biomechanics and fitness education with expert training.','Getting Started','publish',NULL,0,NULL,NULL,NULL,'Get started in Biomechanics Coaching',35,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechancis-and-sports-coaches-50.50-image.jpg',NULL,'39252','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechancis-and-sports-coaches-50.50-image.jpg','39252','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":725960,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechancis-and-sports-coaches-50.50-image.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2024/08/Biomechancis-and-sports-coaches-50.50-image.jpg\",\"size\":\"full\",\"id\":39252,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-25 12:33:32','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-18 12:49:58','2024-07-25 12:34:31',0),(926,'https://biomechanicseducation.com/resources/','54:9209529b6a169c26f974e13e595d897d',39154,'post','page',3,0,'Resources | Biomechanics Education','Access our resources page for valuable tools, and materials. Enhance your knowledge and your professional development with our comprehensive resource library.','Resources','publish',NULL,0,NULL,NULL,NULL,'Biomechanics resources',36,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/04/building-your-gitness-business-1.webp',NULL,'38321','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/04/building-your-gitness-business-1.webp','38321','featured-image','{\"width\":900,\"height\":600,\"filesize\":33796,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/04/building-your-gitness-business-1.webp\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2024/04/building-your-gitness-business-1.webp\",\"size\":\"full\",\"id\":38321,\"alt\":\"\",\"pixels\":540000,\"type\":\"image/webp\"}',0,NULL,NULL,'2024-07-25 12:46:46','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-19 12:57:55','2024-07-25 12:49:59',0),(927,'https://biomechanicseducation.com/success-stories/course-testimonial-biomechanics-education/','92:0239f24915e872e22611d66ec3e7d169',39168,'post','testimonial',3,0,NULL,'This course has opened my mind! Read more about what our learners think here...','Course Learner','publish',NULL,0,NULL,NULL,NULL,'Testimonials',20,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-25 13:06:12','2025-02-10 11:45:06',1,NULL,NULL,NULL,NULL,0,0,2,'2025-02-10 11:45:06','2024-07-25 13:06:31',90),(928,'https://biomechanicseducation.com/success-stories/testimonial-biomechanics-education/','95:b36563b92134b94a67d30d70b2e6d4db',39169,'post','testimonial',3,0,NULL,'You are amazing at what you do! Find out what our learners have to say here...','You are amazing at what you do','publish',NULL,0,NULL,NULL,NULL,'Testimonials',20,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-25 13:06:48','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,0,2,'2024-09-23 12:59:07','2024-07-25 13:07:13',0),(929,'https://biomechanicseducation.com/success-stories/tess-hoggar-testimonial/','84:3557b91a8cf406074371ba8f6ce1bb47',39170,'post','testimonial',3,0,NULL,'I cannot thank you enough for opening my eyes... Read more about what our learners have to say here...','Tess Hoggar','publish',NULL,0,NULL,NULL,NULL,'Testimonial | Biomechanics Education',30,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-07-25 13:08:03','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,0,2,'2024-09-23 12:58:39','2024-07-25 13:08:02',0),(930,'https://biomechanicseducation.com/about-us/','43:e150f0201e6878b8b6cc3fb9a93ab2c7',39172,'post','page',3,0,'About Us | Biomechanics Education','Learn more about us. Discover our mission, values, and team dedicated to advancing biomechanics education and supporting your professional growth.','About Us','publish',NULL,0,NULL,NULL,NULL,'About us',49,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Untitled-design-1.png',NULL,'40408','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Untitled-design-1.png','40408','featured-image','{\"width\":1280,\"height\":720,\"filesize\":564359,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Untitled-design-1.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/Untitled-design-1.png\",\"size\":\"full\",\"id\":40408,\"alt\":\"Rcahel, a woman, and a man, discussing biomechanics in a workshop setting.\",\"pixels\":921600,\"type\":\"image/png\"}',0,NULL,NULL,'2024-07-25 13:15:10','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-11-04 15:07:39','2024-07-25 13:16:14',90),(931,'https://biomechanicseducation.com/contact-us/','45:bc5c49efc3946728028db0ee26d8c516',39196,'post','page',3,0,'Contact Us | Biomechanics Education','Contact us for inquiries and support. We\'re here to assist with any questions about our courses, services, or anything else related to biomechanics education.','Contact Us','publish',NULL,0,NULL,NULL,NULL,'Contact us',44,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC07708-scaled.jpg',NULL,'40339','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC07708-scaled.jpg','40339','featured-image','{\"width\":2560,\"height\":1759,\"filesize\":582795,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/DSC07708-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/DSC07708-scaled.jpg\",\"size\":\"full\",\"id\":40339,\"alt\":\"Rachel and wo men discuss a biomechanics workshop - in a learning setting.\",\"pixels\":4503040,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-07-30 08:14:59','2025-05-13 08:42:05',1,NULL,NULL,NULL,NULL,0,1,2,'2025-05-13 09:42:05','2024-07-30 08:23:42',90),(933,'https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/','85:ae461b98cae52cfdd1bce3d476de98fd',39214,'post','page',3,39148,'Personal Training | Biomechanics Education','Start your journey in biomechanics with our courses for personal trainers. Discover key concepts and practical applications to enhance your training expertise.','Biomechanics and Personal Training','publish',NULL,0,NULL,NULL,NULL,'Biomechanics and Personal Training',38,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-hero-image.jpg',NULL,'39215','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-hero-image.jpg','39215','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":311381,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-hero-image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/07/Biomechanics-and-personal-training-hero-image.jpg\",\"size\":\"full\",\"id\":39215,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,1,NULL,'2024-07-31 11:07:29','2025-03-14 09:26:14',1,NULL,NULL,NULL,NULL,1,1,2,'2025-03-14 09:26:13','2024-07-31 11:09:43',90),(934,'https://biomechanicseducation.com/getting-started/biomechanics-and-pilates/','75:48db4e183aedbe611df1e983098e90a9',39231,'post','page',3,39148,'Pilates | Biomechanics Education','Get started in biomechanics in Pilates. Learn fundamental principles to enhance your teaching and improve client outcomes effectively.','Biomechanics and Pilates','publish',NULL,0,NULL,NULL,NULL,'Biomechanics and Pilates',44,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechanics-and-Pialtes-hero-image.jpg',NULL,'39243','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechanics-and-Pialtes-hero-image.jpg','39243','featured-image','{\"width\":2048,\"height\":1365,\"filesize\":205048,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechanics-and-Pialtes-hero-image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/08/Biomechanics-and-Pialtes-hero-image.jpg\",\"size\":\"full\",\"id\":39243,\"alt\":\"\",\"pixels\":2795520,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-01 08:18:48','2025-03-14 09:26:41',1,NULL,NULL,NULL,NULL,1,1,2,'2025-03-14 09:26:41','2024-08-01 08:18:48',90),(935,'https://biomechanicseducation.com/getting-started/sports-massage-therapy/','73:ea692389a7c1133dc60c5be9ad236313',39238,'post','page',3,39148,'Sports Massage Therapy | Biomechanics Education','Get started in biomechanics for SMT. Learn essential principles to enhance your practice and improve client results with expert techniques.','Biomechanics and Sports Massage','publish',NULL,0,NULL,NULL,NULL,'Biomechanics and Sports Massage',40,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/bIOMECHANICS-AND-smt-HERO-IMAGE.jpg',NULL,'39240','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/bIOMECHANICS-AND-smt-HERO-IMAGE.jpg','39240','featured-image','{\"width\":1024,\"height\":682,\"filesize\":127715,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/08/bIOMECHANICS-AND-smt-HERO-IMAGE.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/08/bIOMECHANICS-AND-smt-HERO-IMAGE.jpg\",\"size\":\"full\",\"id\":39240,\"alt\":\"\",\"pixels\":698368,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-01 08:32:58','2025-03-14 09:27:09',1,NULL,NULL,NULL,NULL,1,1,2,'2025-03-14 09:27:09','2024-08-01 08:32:58',90),(936,'https://biomechanicseducation.com/getting-started/podiatrists/','62:4a0c8b15a7701a5f680813fdf037b2ed',39245,'post','page',3,39148,'Podiatrists | Biomechanics Education','Get started in biomechanics for podiatrists. Explore key principles to enhance your practice and improve patient outcomes with advanced techniques.','Biomechanics and Podiatrists','publish',NULL,0,NULL,NULL,NULL,'Biomechanics and Podiatry',33,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechanics-and-podiatrists-hero-image.jpg',NULL,'39247','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechanics-and-podiatrists-hero-image.jpg','39247','featured-image','{\"width\":1024,\"height\":684,\"filesize\":177863,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechanics-and-podiatrists-hero-image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/08/Biomechanics-and-podiatrists-hero-image.jpg\",\"size\":\"full\",\"id\":39247,\"alt\":\"\",\"pixels\":700416,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-01 08:40:28','2025-03-14 09:27:36',1,NULL,NULL,NULL,NULL,1,1,2,'2025-03-14 09:27:35','2024-08-01 08:40:28',90),(937,'https://biomechanicseducation.com/getting-started/biomechanics-and-sports-coaches/','82:0b1b670571fd1e362c01f4482fdf64a8',39249,'post','page',3,39148,'Sports Coaches | Biomechanics Education','Biomechanics for sports coaches. Discover essential principles to optimize athletic performance and enhance training programs.','Biomechanics and Sports Coaches','publish',NULL,0,NULL,NULL,NULL,'Biomechanics and Sports coach',38,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechancis-and-sports-coaches-hero-image.jpg',NULL,'39251','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechancis-and-sports-coaches-hero-image.jpg','39251','featured-image','{\"width\":2560,\"height\":1553,\"filesize\":220139,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechancis-and-sports-coaches-hero-image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/08/Biomechancis-and-sports-coaches-hero-image.jpg\",\"size\":\"full\",\"id\":39251,\"alt\":\"\",\"pixels\":3975680,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-01 08:44:56','2025-03-14 09:28:02',1,NULL,NULL,NULL,NULL,1,1,2,'2025-03-14 09:28:02','2024-08-01 08:44:56',90),(938,'https://biomechanicseducation.com/getting-started/sc-coaches/','61:14300f6e4fa07d1effcb7b89727ac404',39254,'post','page',3,39148,'S&C coaches | Biomechanics Education','Get started in biomechanics for S&C. Learn essential principles to enhance your practice and improve client results with expert techniques.','Biomechanics and S&#038;C coaches','publish',NULL,0,NULL,NULL,NULL,'Biomechanics and Strength and conditioning',35,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechanics-and-SC-hero-image-scaled.jpg',NULL,'39256','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechanics-and-SC-hero-image-scaled.jpg','39256','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":324385,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/08/Biomechanics-and-SC-hero-image-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/08/Biomechanics-and-SC-hero-image-scaled.jpg\",\"size\":\"full\",\"id\":39256,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-01 08:52:06','2025-03-14 09:28:28',1,NULL,NULL,NULL,NULL,1,1,2,'2025-03-14 09:28:28','2024-08-01 08:52:06',90),(940,'https://biomechanicseducation.com/getting-started/biomechanics-coach/','69:f513b707841f0f809aec62a7e97fb806',39263,'post','page',3,39148,'How to Become a BE Coach | Biomechanics Education','Get started in biomechanics. Discover essential principles to optimize athletic performance and enhance training programs with.','How to Become a Biomechanics Coach','publish',NULL,0,NULL,NULL,NULL,'Biomechanics',44,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/How-to-become-a-biomechanics-coach-page-hero-iamge-1.jpg',NULL,'39454','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/How-to-become-a-biomechanics-coach-page-hero-iamge-1.jpg','39454','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":639525,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/08/How-to-become-a-biomechanics-coach-page-hero-iamge-1.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/08/How-to-become-a-biomechanics-coach-page-hero-iamge-1.jpg\",\"size\":\"full\",\"id\":39454,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,2,NULL,'2024-08-06 09:43:12','2025-03-14 09:28:58',1,NULL,NULL,NULL,NULL,1,1,2,'2025-03-14 09:28:57','2024-08-06 09:43:12',90),(941,'https://biomechanicseducation.com/download-price-guide/','55:d14380e086673f140af197b5d1b83e97',39270,'post','page',3,0,'Price Guide | Biomechanics Education','Explore our price guide to find detailed information on course fees and packages. Plan your professional development with comprehensive pricing options.','Download Price Guide','publish',NULL,0,NULL,NULL,NULL,'Download price guide',35,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-scaled.jpg',NULL,'40294','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-scaled.jpg','40294','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":291083,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-scaled.jpg\",\"size\":\"full\",\"id\":40294,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-06 09:58:29','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-23 14:44:33','2024-08-06 10:05:24',90),(942,'https://biomechanicseducation.com/about-us/our-partners/','56:fcef82b1e24f0ed0a684aa8ef57eec4b',39284,'post','page',3,39172,'Our Partners | Biomechanics Education','Explore our Partners page to see our valued collaborators. Discover how our partnerships enhance biomechanics education','Our Partners','publish',NULL,0,NULL,NULL,NULL,'biomechanics education partners',38,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg',NULL,'40503','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg','40503','featured-image','{\"width\":2560,\"height\":1710,\"filesize\":586812,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg\",\"size\":\"full\",\"id\":40503,\"alt\":\"Joseph and Rach walking up a green, grassy hill. Talking to each other and smiling.\",\"pixels\":4377600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-07 08:31:09','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,1,1,2,'2024-10-29 10:45:09','2024-08-07 08:32:28',90),(943,'https://biomechanicseducation.com/about-us/fees-and-funding/','60:33b011725656624fe576cf01c0442f21',39329,'post','page',3,39172,'Fees and Funding | Biomechanics Education','Explore our Fees and Funding page for detailed information on course costs and available financial support.','Fees and Funding','publish',NULL,0,NULL,NULL,NULL,'Biomechanics Funding',38,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Fees-and-funding-hero-image.webp',NULL,'39334','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/Fees-and-funding-hero-image.webp','39334','featured-image','{\"width\":1200,\"height\":675,\"filesize\":57630,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/08/Fees-and-funding-hero-image.webp\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/08/Fees-and-funding-hero-image.webp\",\"size\":\"full\",\"id\":39334,\"alt\":\"\",\"pixels\":810000,\"type\":\"image/webp\"}',0,NULL,NULL,'2024-08-07 09:24:20','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,1,1,2,'2024-10-09 11:53:47','2024-08-07 09:24:59',90),(944,'https://biomechanicseducation.com/rachel-frances-thompson/','68:def6d2388e8ad4e349d212e18a54d535',39349,'post','page',3,0,'Rachel Thompson | Biomechanics Education','Learn about Rachel Francis, our founder. Discover her vision, expertise, and the journey behind creating a leading resource in biomechanics education.','Rachel Frances Thompson','publish',NULL,0,NULL,NULL,NULL,'Rachel Thompson',40,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/rachel-e1723027806616.png',NULL,'39353','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/rachel-e1723027806616.png','39353','featured-image','{\"width\":1456,\"height\":1080,\"filesize\":1173445,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/08/rachel-e1723027806616.png\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2024/08/rachel-e1723027806616.png\",\"size\":\"full\",\"id\":39353,\"alt\":\"\",\"pixels\":1572480,\"type\":\"image/png\"}',0,NULL,NULL,'2024-08-07 10:33:21','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-06 14:29:23','2024-08-07 10:36:15',0),(945,'https://biomechanicseducation.com/tom-waldron/','56:79c50754acc9146ca565a8e21f3679b4',39364,'post','page',3,0,'Tom Waldron | Biomechanics Education','Learn about Tom Waldron, a master trainer at biomechanics education and his Pilates journey with us.','Tom Waldron','publish',NULL,0,NULL,NULL,NULL,'Tom Waldron',44,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/tom-waldron.png',NULL,'39366','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/08/tom-waldron-1200x675.png','39366','featured-image','{\"width\":1200,\"height\":675,\"filesize\":1170507,\"path\":\"2024/08/tom-waldron-1200x675.png\",\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/08/tom-waldron-1200x675.png\",\"size\":\"large\",\"id\":39366,\"alt\":\"\",\"pixels\":810000,\"type\":\"image/png\"}',0,NULL,NULL,'2024-08-07 10:53:12','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-06 14:31:07','2024-08-07 10:54:49',0),(948,'https://biomechanicseducation.com/our-team/','53:0333031f2158cc751335eb8505d1ef51',39488,'post','page',3,0,'Our Team | Biomechanics Education','Meet our team. Discover the experts behind biomechanics education, their credentials, and their commitment to advancing your professional development.','Our Team','publish',NULL,0,NULL,NULL,NULL,'Biomechanics team',35,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-08-15 09:20:56','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,0,2,'2024-08-15 09:22:21','2024-08-15 09:21:13',0),(949,'https://biomechanicseducation.com/find-a-biomechanics-coach/','60:538bd2989c4436f7b79d9ce81ea39a31',39493,'post','page',3,0,'Find a BioMechanics Coach | Biomechanics Education','Find certified biomechanics coaches on our interactive map. Connect with experts to enhance your training.','Find a Biomechanics Coach','publish',NULL,0,NULL,NULL,NULL,'Biomechanics coaches',40,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/imovefreely-hero-image-workhop.jpg',NULL,'40893','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/imovefreely-hero-image-workhop.jpg','40893','featured-image','{\"width\":2048,\"height\":1368,\"filesize\":362213,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/imovefreely-hero-image-workhop.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/imovefreely-hero-image-workhop.jpg\",\"size\":\"full\",\"id\":40893,\"alt\":\"\",\"pixels\":2801664,\"type\":\"image/jpeg\"}',0,1,NULL,'2024-08-15 09:27:32','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-10-29 10:47:13','2024-08-15 09:29:13',90),(950,'https://biomechanicseducation.com/blogs/','40:e14b7add79c08c6239b70f02cbf7f63a',39497,'post','page',3,0,'Blogs | Biomechanics Education','Explore our blogs to master biomechanics, enhance performance, and reduce injury risk with expert insights and practical tips.','Blogs','publish',NULL,0,NULL,NULL,NULL,'biomechanics blogs',46,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/blogs-hero-image.jpg',NULL,'40918','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/blogs-hero-image.jpg','40918','featured-image','{\"width\":1000,\"height\":667,\"filesize\":399265,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/blogs-hero-image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/blogs-hero-image.jpg\",\"size\":\"full\",\"id\":40918,\"alt\":\"\",\"pixels\":667000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-08-15 10:11:01','2025-01-20 16:09:16',1,NULL,NULL,NULL,NULL,0,1,2,'2025-01-20 16:09:09','2024-08-15 10:11:06',90),(957,'https://biomechanicseducation.com/author/bioadmin/','50:f9ee0c0306ab5ec8bd575a9360b1ea14',3,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/2938aeece9cfc1a58f9bb7410fd82715?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/2938aeece9cfc1a58f9bb7410fd82715?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2024-09-04 15:01:57','2025-07-03 08:23:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-07-01 15:53:22','2016-04-20 13:44:09',NULL),(958,'https://biomechanicseducation.com/hip-adduction-abduction-plus-internal-external-rotation-a-guide-for-personal-trainers/','120:95ffe9dd4edf912b12cf1e886110e165',39544,'post','post',3,0,'Hip Adduction / Abduction - A Guide for Personal Trainers','Frontal plane training improves pelvic stability, reduces injury risk, and enhances strength. Learn key exercises and techniques.','Hip Adduction/Abduction (Plus Internal/External Rotation) – A Guide for Personal Trainers','publish',NULL,0,NULL,NULL,NULL,'Hip Adduction / Abduction',65,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Worshop_24thAug-4-scaled.jpg',NULL,'40383','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Worshop_24thAug-4-scaled.jpg','40383','featured-image','{\"width\":2048,\"height\":2560,\"filesize\":531073,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Worshop_24thAug-4-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/BE_Worshop_24thAug-4-scaled.jpg\",\"size\":\"full\",\"id\":40383,\"alt\":\"\",\"pixels\":5242880,\"type\":\"image/jpeg\"}',1,NULL,NULL,'2024-09-04 15:26:03','2025-01-20 16:02:10',1,NULL,NULL,NULL,NULL,0,3,2,'2025-01-20 16:02:10','2024-09-04 15:28:37',0),(960,'https://biomechanicseducation.com/success-stories/sharon-clare-body-coach-fitness/','82:a63562e5c2f47ef6a0ebb81a2a5234f2',39585,'post','testimonial',3,0,NULL,NULL,'Sharon Clare – Body Coach Fitness','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-09-05 14:41:44','2025-02-10 11:44:07',1,NULL,NULL,NULL,NULL,0,1,2,'2025-02-10 11:44:07','2024-09-19 09:54:46',90),(1275,'https://biomechanicseducation.com/courses/online-cpd-courses/behaviour-change-coaching/','97:427047355488540c4d0045ead05e8180',40263,'post','course',3,0,NULL,'Advance your fitness career with expert guidance in Behaviour Change Coaching. Invest in your training and stand out with advanced skills.','Behaviour Change Coaching','publish',NULL,0,NULL,NULL,NULL,'Behaviour change coaching',47,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/behaviour-change-coaching-hero-image-scaled.jpg',NULL,'40561','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/behaviour-change-coaching-hero-image-scaled.jpg','40561','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":388625,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/behaviour-change-coaching-hero-image-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.thecanopy.dev/files/wp-content/uploads/2024/09/behaviour-change-coaching-hero-image-scaled.jpg\",\"size\":\"full\",\"id\":40561,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:55','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-18 11:35:36','2024-09-17 08:27:33',0),(1276,'https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-personal-trainers/','90:a8ac2e21ca131e5e1216d944c0e5550f',40264,'post','course',11,0,NULL,NULL,'Biomechanics for Personal Trainers','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_24thAug-2-scaled.jpg',NULL,'41505','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_24thAug-2-scaled.jpg','41505','featured-image','{\"width\":2560,\"height\":1710,\"filesize\":433644,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_24thAug-2-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/11/BE_Worshop_24thAug-2-scaled.jpg\",\"size\":\"full\",\"id\":41505,\"alt\":\"\",\"pixels\":4377600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:55','2024-12-18 09:34:22',1,NULL,NULL,NULL,NULL,0,1,2,'2024-12-18 09:34:22','2024-12-18 09:30:09',90),(1277,'https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-pilates-teachers/','89:a79ec4bea0e71736a63867777cab50db',40265,'post','course',3,0,NULL,'Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!','Biomechanics for Pilates Teachers','publish',NULL,0,NULL,NULL,NULL,'Introduction to Biomechanics Education Course',31,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/10/CourtX_Pilates_Web-47.jpg',NULL,'41400','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/10/CourtX_Pilates_Web-47.jpg','41400','featured-image','{\"width\":2048,\"height\":1365,\"filesize\":458971,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/10/CourtX_Pilates_Web-47.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/10/CourtX_Pilates_Web-47.jpg\",\"size\":\"full\",\"id\":41400,\"alt\":\"\",\"pixels\":2795520,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:55','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-11-06 15:30:32','2024-10-23 14:09:00',90),(1278,'https://biomechanicseducation.com/?post_type=course&p=40266','69:65b5fe6a1953f5da22d7c462442d81c5',40266,'post','course',0,0,NULL,NULL,'Biomechanics for Podiatrists','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-09-10 14:17:56','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'0000-00-00 00:00:00','0000-00-00 00:00:00',0),(1279,'https://biomechanicseducation.com/?post_type=course&p=40267','69:80042cdddf5358df68bff2bb7eaef8dd',40267,'post','course',0,0,NULL,NULL,'Biomechanics for Sports Coaches','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-09-10 14:17:56','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'0000-00-00 00:00:00','0000-00-00 00:00:00',0),(1280,'https://biomechanicseducation.com/?post_type=course&p=40268','69:fd3200b81d264880d0dbe434af19f2bc',40268,'post','course',0,0,NULL,NULL,'Biomechanics for Sports Massage Therapists','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-09-10 14:17:56','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'0000-00-00 00:00:00','0000-00-00 00:00:00',0),(1281,'https://biomechanicseducation.com/?post_type=course&p=40269','69:e692abcd1bebff1d890f2010034974c1',40269,'post','course',0,0,NULL,NULL,'Biomechanics for Strength and Conditioning Coaches','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2024-09-10 14:17:56','2024-09-25 07:22:25',1,NULL,NULL,NULL,NULL,0,NULL,2,'0000-00-00 00:00:00','0000-00-00 00:00:00',0),(1282,'https://biomechanicseducation.com/courses/online-cpd-courses/building-your-fitness-business/','92:ade805b4b28d57671e54602bef0a4479',40270,'post','course',3,0,NULL,'Train with Biomechanics Education to boost your fitness career. Get expert support and learn to build your fitness business.','Building Your Fitness Business','publish',NULL,0,NULL,NULL,NULL,'Fitness Business',44,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-scaled.jpg',NULL,'40576','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-scaled.jpg','40576','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":663487,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/BUILDING-YOUR-FITNESS-BUSINESS-HERO-IMAGE-scaled.jpg\",\"size\":\"full\",\"id\":40576,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:57','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-26 09:23:01','2024-09-17 09:01:39',0),(1283,'https://biomechanicseducation.com/courses/cpd-courses/coaching-fitness-online/','78:e8e575660739b7b4cc00b0edff26f21e',40271,'post','course',3,0,NULL,'Master online coaching management with our course on marketing, legalities, sales, online assessments, coaching, and insurance.','Coaching Fitness Online','publish',NULL,0,NULL,NULL,NULL,'COACHING FITNESS',46,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-09-10 14:17:57','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,0,2,'2024-09-26 09:23:34','2024-09-17 09:45:39',0),(1284,'https://biomechanicseducation.com/courses/cpd-courses/core-training/','68:69d36faaf8126906e20f9ffc617752c1',40272,'post','course',3,0,NULL,'Master torso anatomy, muscle balance, and core training techniques with practical exercises and equipment tips in our comprehensive course.','Core Training','publish',NULL,0,NULL,NULL,NULL,'Core Training',47,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Core-training-hero-iamge-scaled.jpg',NULL,'40604','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Core-training-hero-iamge-scaled.jpg','40604','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":495187,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Core-training-hero-iamge-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/Core-training-hero-iamge-scaled.jpg\",\"size\":\"full\",\"id\":40604,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:57','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-26 09:24:18','2024-09-17 10:08:04',0),(1285,'https://biomechanicseducation.com/courses/cpd-courses/deadlift-analysis-made-simple/','84:a93e99847c8fd0b549f42284fb83e84d',40273,'post','course',3,0,NULL,'Enhance your deadlift analysis skills with this webinar, designed for trainers and therapists. No equipment needed.','Deadlift Analysis Made Simple','publish',NULL,0,NULL,NULL,NULL,'deadlift analysis',47,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/deadlift-analysis-made-simple.jpg',NULL,'40675','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/deadlift-analysis-made-simple.jpg','40675','featured-image','{\"width\":2560,\"height\":1708,\"filesize\":393191,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/deadlift-analysis-made-simple.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/deadlift-analysis-made-simple.jpg\",\"size\":\"full\",\"id\":40675,\"alt\":\"\",\"pixels\":4372480,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:57','2025-04-07 10:32:19',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-26 08:45:36','2024-09-18 08:45:16',90),(1286,'https://biomechanicseducation.com/courses/cpd-courses/foot-biomechanics-made-simple/','84:32096ad9a5d0889d8fae299e3762b277',40274,'post','course',3,0,NULL,'Simplify foot biomechanics with this hands-on webinar, giving you practical tools to enhance client movement training.','Foot Biomechanics Made Simple','publish',NULL,0,NULL,NULL,NULL,'Foot Biomechanics',47,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Foot-biomechanics-hero.jpg',NULL,'40667','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Foot-biomechanics-hero.jpg','40667','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":204555,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Foot-biomechanics-hero.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/Foot-biomechanics-hero.jpg\",\"size\":\"full\",\"id\":40667,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:57','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-26 08:46:35','2024-09-17 15:49:18',0),(1287,'https://biomechanicseducation.com/courses/cpd-courses/fundamental-principles-of-movement/','89:20869f0e20e49f480d39243828209d79',40275,'post','course',3,0,NULL,'Deepen your understanding of human movement with our course, offering practical insights for analysing and improving movement quality.','Fundamental Principles of Movement','publish',NULL,0,NULL,NULL,NULL,'principles of movement',40,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/fundamental-principles-of-movement-hero.jpg',NULL,'40630','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/fundamental-principles-of-movement-hero.jpg','40630','featured-image','{\"width\":2048,\"height\":1368,\"filesize\":318177,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/fundamental-principles-of-movement-hero.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/fundamental-principles-of-movement-hero.jpg\",\"size\":\"full\",\"id\":40630,\"alt\":\"\",\"pixels\":2801664,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:57','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-26 09:24:54','2024-09-17 12:07:56',0),(1288,'https://biomechanicseducation.com/courses/biomechanics/iba-membership/','70:61592fee9f44c91c65a0eca5f077da19',40276,'post','course',3,0,'IBA Membership | Biomechanics Education','Join the Intrinsic Biomechanics Association to connect with professionals and access exclusive resources.','IBA Membership','publish',NULL,0,NULL,NULL,NULL,'IBA Membership',40,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg',NULL,'40503','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg','40503','featured-image','{\"width\":2560,\"height\":1710,\"filesize\":586812,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg\",\"size\":\"full\",\"id\":40503,\"alt\":\"Joseph and Rach walking up a green, grassy hill. Talking to each other and smiling.\",\"pixels\":4377600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:58','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-10-29 10:50:08','2024-09-19 12:07:38',90),(1289,'https://biomechanicseducation.com/courses/cpd-courses/imovefreely/','66:408551996a011dc97b62756ae827cf24',40277,'post','course',3,0,'%%title%% %%page%% CPD %%sep%% %%sitename%%','Become an iMoveFreely instructor with our online workshop. Gain the skills to deliver effective mobility and flexibility training in a virtual format.','Introduction to iMoveFreely','publish',NULL,0,NULL,NULL,NULL,'ImoveFreely CPD course',33,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Imovefreely-hero-iamge.jpg',NULL,'40615','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Imovefreely-hero-iamge.jpg','40615','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":373908,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Imovefreely-hero-iamge.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/Imovefreely-hero-iamge.jpg\",\"size\":\"full\",\"id\":40615,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,1,NULL,'2024-09-10 14:17:58','2025-02-10 11:31:22',1,NULL,NULL,NULL,NULL,0,1,2,'2025-02-10 11:31:22','2024-09-17 11:46:49',90),(1290,'https://biomechanicseducation.com/?post_type=course&p=40278','59:9496bddce582ba7836e4d70ad1c6d219',40278,'post','course',3,0,NULL,'Unlock better movement with our 2-hour virtual class, addressing squat and shoulder issues. Includes a downloadable handout!','Introduction to Intrinsic Biomechanics','draft',0,0,NULL,NULL,NULL,'Intrinsic biomechanics',40,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Introduction-to-intrinsic-BE-hero-iamge-scaled.jpg',NULL,'40628','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Introduction-to-intrinsic-BE-hero-iamge-scaled.jpg','40628','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":388625,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Introduction-to-intrinsic-BE-hero-iamge-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/Introduction-to-intrinsic-BE-hero-iamge-scaled.jpg\",\"size\":\"full\",\"id\":40628,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:58','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-10-07 09:48:07','2024-09-17 11:58:39',90),(1291,'https://biomechanicseducation.com/courses/cpd-courses/pain-science-made-simple/','79:4e57895361022c6c292884fc8afd7d79',40279,'post','course',3,0,NULL,'Discover pain science in this webinar, exploring the latest insights and practical guidance to support clients with persistent pain.','Pain Science Made Simple','publish',NULL,0,NULL,NULL,NULL,'Pain Science',47,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/pain-science-made-simple-hero-iamge.jpg',NULL,'40650','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/pain-science-made-simple-hero-iamge.jpg','40650','featured-image','{\"width\":2560,\"height\":1248,\"filesize\":105151,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/pain-science-made-simple-hero-iamge.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/pain-science-made-simple-hero-iamge.jpg\",\"size\":\"full\",\"id\":40650,\"alt\":\"\",\"pixels\":3194880,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:58','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-26 08:47:04','2024-09-17 14:11:00',0),(1292,'https://biomechanicseducation.com/courses/cpd-courses/practical-anatomy-series/','79:73ccb54748dfcb97f51fb2c32af72301',40280,'post','course',3,0,NULL,'Explore simplified anatomy with fun facts and memory tactics in this series of online classrooms and E-Zines for better learning.','Practical Anatomy Series','publish',NULL,0,NULL,NULL,NULL,'Practical Anatomy',42,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/practical-anatomy-series-hero-iamge.jpg',NULL,'40634','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/practical-anatomy-series-hero-iamge.jpg','40634','featured-image','{\"width\":600,\"height\":235,\"filesize\":16539,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/practical-anatomy-series-hero-iamge.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/practical-anatomy-series-hero-iamge.jpg\",\"size\":\"full\",\"id\":40634,\"alt\":\"\",\"pixels\":141000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:58','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-26 09:26:26','2024-09-17 12:59:06',0),(1293,'https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics/','75:94e001e4a9bf593ba389225cb21378a7',40281,'post','course',3,0,NULL,'Simplify running styles with our Intro to Running Biomechanics training. Learn running mechanics, terminology, and influence factors.','Running Biomechanics','publish',NULL,0,NULL,NULL,NULL,'Running Biomechanics',47,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Introduction-to-running-biomechanics-hero.jpg',NULL,'40611','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Introduction-to-running-biomechanics-hero.jpg','40611','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":525592,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Introduction-to-running-biomechanics-hero.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/Introduction-to-running-biomechanics-hero.jpg\",\"size\":\"full\",\"id\":40611,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:58','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-26 09:27:02','2024-09-17 11:10:50',0),(1294,'https://biomechanicseducation.com/courses/cpd-courses/the-foot-posture-index/','77:d9734b6900a6fef21b8f357d9839a5b8',40282,'post','course',3,0,NULL,'Learn the Foot Posture Index in this webinar, a simple, cost-effective tool for assessing foot biomechanics.','The Foot Posture Index','publish',NULL,0,NULL,NULL,NULL,'foot posture index',47,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Foot-posture-index-hero-iamge.jpg',NULL,'40670','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Foot-posture-index-hero-iamge.jpg','40670','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":357155,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Foot-posture-index-hero-iamge.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/Foot-posture-index-hero-iamge.jpg\",\"size\":\"full\",\"id\":40670,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,1,NULL,'2024-09-10 14:17:58','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-10-04 08:51:03','2024-09-17 15:58:24',0),(1295,'https://biomechanicseducation.com/courses/cpd-courses/understanding-nerves/','75:691dde068ab66e434b8a672028c4f8ae',40283,'post','course',3,0,NULL,'Join this live webinar for non-clinicians to assess and improve movement, exploring nerve health and hands-on techniques.','Understanding Nerves','publish',NULL,0,NULL,NULL,NULL,'Understanding Nerves',42,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Understanding-the-nerves-hero.jpg',NULL,'40665','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Understanding-the-nerves-hero.jpg','40665','featured-image','{\"width\":2560,\"height\":973,\"filesize\":136428,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Understanding-the-nerves-hero.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/Understanding-the-nerves-hero.jpg\",\"size\":\"full\",\"id\":40665,\"alt\":\"\",\"pixels\":2490880,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:59','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-26 08:47:49','2024-09-17 15:41:32',0),(1296,'https://biomechanicseducation.com/courses/cpd-courses/weak-glutes/','66:fb7bdc78897e1b4dc2c6b29a0863ce96',40284,'post','course',3,0,NULL,'Join our master class to debunk myths about \'Weak Glutes,\' uncover root causes, and learn effective strength strategies.','Weak Glutes Webinar','publish',NULL,0,NULL,NULL,NULL,'weak glutes',47,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/weak-glutes-hero-image.jpg',NULL,'40638','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/weak-glutes-hero-image.jpg','40638','featured-image','{\"width\":2560,\"height\":1708,\"filesize\":373285,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/weak-glutes-hero-image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/weak-glutes-hero-image.jpg\",\"size\":\"full\",\"id\":40638,\"alt\":\"\",\"pixels\":4372480,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:59','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-26 09:19:55','2024-09-17 13:26:57',0),(1297,'https://biomechanicseducation.com/courses/cpd-courses/what-the-hell-is-functional-training-anyway/','98:520e8188c061a2ba5ccb74f457c10ef9',40285,'post','course',3,0,NULL,'Explore the true meaning of functional training in this webinar with Biomechanics Coach Rachel Thomson. Redefine your approach!','What the hell is Functional Training anyway?','publish',NULL,0,NULL,NULL,NULL,'Functional Training',42,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/what-the-hell-is-functional-training-hero-iamge.jpg',NULL,'40659','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/what-the-hell-is-functional-training-hero-iamge.jpg','40659','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":370143,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/what-the-hell-is-functional-training-hero-iamge.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/what-the-hell-is-functional-training-hero-iamge.jpg\",\"size\":\"full\",\"id\":40659,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:59','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-26 09:20:42','2024-09-17 15:08:11',0),(1298,'https://biomechanicseducation.com/courses/online-cpd-courses/womens-health-menopause-and-programming/','101:c295e08eeebfd3e65c7672965db6f359',40286,'post','course',3,0,NULL,'Master women\'s health with our course on the menstrual cycle and menopause. Gain practical training and nutritional advice to enhance your coaching skills.','Womens Health &#8211; Menopause and Programming','publish',NULL,0,NULL,NULL,NULL,'Menopause',42,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Womens-health-menopause-and-programming-hero-image-scaled.jpg',NULL,'40288','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Womens-health-menopause-and-programming-hero-image-scaled.jpg','40288','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":466655,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Womens-health-menopause-and-programming-hero-image-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/Womens-health-menopause-and-programming-hero-image-scaled.jpg\",\"size\":\"full\",\"id\":40288,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-09-10 14:17:59','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-26 09:27:17','2024-09-11 10:42:53',0),(1299,'https://biomechanicseducation.com/download-price-guide/thank-you/','65:e1cf7f9f9678121ed5a63fce09ff76e0',40321,'post','page',3,39270,NULL,NULL,'Thank You','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/About-us-Hero-image.png',NULL,'39186','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/About-us-Hero-image.png','39186','featured-image','{\"width\":1280,\"height\":720,\"filesize\":911470,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/07/About-us-Hero-image.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/07/About-us-Hero-image.png\",\"size\":\"full\",\"id\":39186,\"alt\":\"\",\"pixels\":921600,\"type\":\"image/png\"}',0,NULL,NULL,'2024-09-12 11:40:16','2025-06-10 14:18:57',1,NULL,NULL,NULL,NULL,1,1,2,'2025-06-10 15:18:57','2024-09-12 11:40:16',90),(1300,'https://biomechanicseducation.com/error-form-submission/','66:ff632e87e3bbdb4409aacda5dc23a276',40327,'post','page',3,0,NULL,NULL,'Error Form Submission','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-09-12 11:48:46','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,0,2,'2024-09-12 11:52:21','2024-09-12 11:49:54',0),(1301,'https://biomechanicseducation.com/survey/','51:50c63b7cab5aa1f46b941cc65e5d6e31',40334,'post','page',3,0,NULL,NULL,'Survey','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-09-12 15:12:29','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,0,2,'2024-09-13 15:12:13','2024-09-12 15:13:14',0),(1303,'https://biomechanicseducation.com/terms-conditions/','61:72808128d5d6d941a3a9908f11900181',40732,'post','page',3,0,NULL,NULL,'Terms &#038; Conditions','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-09-18 13:12:04','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,0,2,'2024-09-18 13:25:23','2024-09-18 13:13:16',0),(1304,'https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/','81:ac53932a56024d21507c545b31d80ec1',40778,'post','course',3,0,NULL,'Comprehensive biomechanics education for fitness professionals, simplifying intricate concepts into digestible sections.','Biomechanics Coach Course','publish',NULL,0,NULL,NULL,NULL,'Biomechanics Coach Course',42,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Diploma-in-biomechanics-hero-image.jpg',NULL,'40863','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Diploma-in-biomechanics-hero-image.jpg','40863','featured-image','{\"width\":2560,\"height\":1709,\"filesize\":384182,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Diploma-in-biomechanics-hero-image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/Diploma-in-biomechanics-hero-image.jpg\",\"size\":\"full\",\"id\":40863,\"alt\":\"\",\"pixels\":4375040,\"type\":\"image/jpeg\"}',0,4,NULL,'2024-09-19 08:35:50','2025-03-14 09:22:44',1,NULL,NULL,NULL,NULL,0,1,2,'2025-03-14 09:22:44','2024-09-19 10:27:09',90),(1305,'https://biomechanicseducation.com/courses/cpd-courses/imovefreely-instructor-programme-workshop/','96:059764e704e231cdad49d4c50af9a7e1',40779,'post','course',3,0,NULL,'Elevate your training skills with the iMoveFreely® Instructor Workshop. Learn to support clients with long Covid symptoms.','IMoveFreely Instructor programme workshop','publish',NULL,0,NULL,NULL,NULL,'instructor workshop',44,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-02-27-at-12.26.26-1-1.png',NULL,'2246','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-02-27-at-12.26.26-1-1.png','2246','featured-image','{\"width\":1560,\"height\":632,\"filesize\":2031752,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2017/03/Screen-Shot-2017-02-27-at-12.26.26-1-1.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2017/03/Screen-Shot-2017-02-27-at-12.26.26-1-1.png\",\"size\":\"full\",\"id\":2246,\"alt\":\"\",\"pixels\":985920,\"type\":\"image/png\"}',0,NULL,NULL,'2024-09-19 08:35:50','2025-02-19 10:17:10',1,NULL,NULL,NULL,NULL,0,1,2,'2025-02-19 10:17:10','2024-09-19 12:28:24',90),(1306,'https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/','87:7932a03b5b52165b3aaa87cf25d5c9a9',40780,'post','course',3,0,'Lvl 4 PT + Biomechanics Diploma Bundle %%sep%% Biomechanics Education','Our comprehensive Diploma in Biomechanics Coaching designed to empower movement practitioners, strength coaches, personal trainers, and manual therapists.','LEVEL 4 PERSONAL TRAINER &#038; DIPLOMA IN BIOMECHANICS COACHING','publish',NULL,0,NULL,NULL,NULL,'Personal Trainer course',35,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/level-4-pt-bm-diploma-hero.jpg',NULL,'40848','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/level-4-pt-bm-diploma-hero.jpg','40848','featured-image','{\"width\":820,\"height\":547,\"filesize\":161210,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/level-4-pt-bm-diploma-hero.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/level-4-pt-bm-diploma-hero.jpg\",\"size\":\"full\",\"id\":40848,\"alt\":\"\",\"pixels\":448540,\"type\":\"image/jpeg\"}',0,1,NULL,'2024-09-19 08:35:50','2025-03-14 09:23:23',1,NULL,NULL,NULL,NULL,0,1,2,'2025-03-14 09:23:23','2024-09-19 08:39:50',90),(1307,'https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/','84:05604f492970efd68155e39ad88d57c0',40781,'post','course',3,0,NULL,'Discover tailored running techniques in our workshop. Learn evidence-based methods to find the best running style for your clients.','Running Biomechanics Workshop','publish',NULL,0,NULL,NULL,NULL,'Biomechanics Workshop',40,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/running-biomechanics-workshop-hero-image.jpg',NULL,'40877','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/running-biomechanics-workshop-hero-image.jpg','40877','featured-image','{\"width\":2560,\"height\":1709,\"filesize\":339390,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/running-biomechanics-workshop-hero-image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/running-biomechanics-workshop-hero-image.jpg\",\"size\":\"full\",\"id\":40877,\"alt\":\"\",\"pixels\":4375040,\"type\":\"image/jpeg\"}',0,1,NULL,'2024-09-19 08:35:50','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-09-19 12:44:39','2024-09-19 10:59:14',90),(1308,'https://biomechanicseducation.com/success-stories/joseph-bleetman/','66:3a688f667b272414b5ca1f1e0397d7bb',40816,'post','testimonial',3,0,NULL,NULL,'Joseph Bleetman','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-09-19 09:50:19','2025-02-10 11:44:12',1,NULL,NULL,NULL,NULL,0,0,2,'2025-02-10 11:44:12','2024-09-19 09:50:30',90),(1309,'https://biomechanicseducation.com/success-stories/milan-pun-testimonial/','72:5381f83fc201ec52cc8b6762c42f5792',40841,'post','testimonial',3,0,NULL,'Read more about what people have to say about our course here...','Milan Pun','publish',NULL,0,NULL,NULL,NULL,'Testimonials | Biomechanics Education',26,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-09-19 09:55:28','2025-02-10 11:43:51',1,NULL,NULL,NULL,NULL,0,0,2,'2025-02-10 11:43:51','2024-09-19 09:55:28',90),(1310,'https://biomechanicseducation.com/success-stories/anonymous-testimonial-biomechanics-education/','105:5d88299206d042a31351b33d485bbf84',40843,'post','testimonial',3,0,NULL,'Find out what other people think about our courses here. Read more...','Anonymous feedback','publish',NULL,0,NULL,NULL,NULL,'Testimonials | Biomechanics Education',30,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-09-19 09:56:55','2024-12-18 12:40:01',1,NULL,NULL,NULL,NULL,0,0,2,'2024-09-23 12:03:04','2024-09-19 09:56:55',0),(1311,'https://biomechanicseducation.com/success-stories/nichola-smith/','64:4cec1da8f3ba5f3b402e1f6f6c796cba',40845,'post','testimonial',3,0,NULL,'The team were good fun, and knowledgeable! Read more...','Nichola Smith','publish',NULL,0,NULL,NULL,NULL,'Testimonials',20,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2024-09-19 09:58:19','2025-02-10 11:45:49',1,NULL,NULL,NULL,NULL,0,0,2,'2025-02-10 11:45:49','2024-09-19 09:58:19',90),(1312,'https://biomechanicseducation.com/ppc-page-biomechanics-coaching-diploma-for-personal-trainers/','95:2bd0fd90fe60d38ed5bf65ae4bd00bca',41115,'post','page',3,0,'Personal Training | Biomechanics Education','Boost Your Personal Training Career with Our Industry-Leading Biomechanics Coaching Diploma.','Biomechanics Coaching Diploma for Personal Trainers','publish',NULL,0,NULL,NULL,NULL,'Biomechanics Coaching Diploma for Personal Trainers',33,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-hero-image.jpg',NULL,'39215','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-hero-image.jpg','39215','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":311381,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/07/Biomechanics-and-personal-training-hero-image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/07/Biomechanics-and-personal-training-hero-image.jpg\",\"size\":\"full\",\"id\":39215,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-10-07 12:10:02','2024-12-18 12:39:40',1,NULL,NULL,NULL,NULL,0,1,2,'2024-10-07 12:59:01','2024-10-07 12:10:02',90),(1313,'https://biomechanicseducation.com/elcas-courses/','48:a3bdb8c9a33f0495cbdcc6468111a77f',41179,'post','page',3,0,NULL,'ELCAS Courses - Training for the Armed Forces. Biomechanics Education is proud to be an approved ELCAS training provider.','ELCAS Courses &#8211; Training for the Armed Forces','publish',NULL,0,NULL,NULL,NULL,'ECLAS courses',35,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-8-scaled.jpg',NULL,'41183','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-8-scaled.jpg','41183','featured-image','{\"width\":2560,\"height\":1710,\"filesize\":611849,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-8-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/10/BE_Worshop_30thAug-8-scaled.jpg\",\"size\":\"full\",\"id\":41183,\"alt\":\"Two men in a biomechanics workshop setting\",\"pixels\":4377600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-10-16 15:03:56','2024-12-18 12:40:01',1,NULL,NULL,NULL,NULL,0,1,2,'2024-10-29 10:15:55','2024-10-16 15:40:49',90),(1314,'https://biomechanicseducation.com/iba-membership-info/','54:24ec74ec702bc77b166fdaabb73ac929',41280,'post','page',3,0,NULL,NULL,'IBA Membership Info','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg',NULL,'40503','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg','40503','featured-image','{\"width\":2560,\"height\":1710,\"filesize\":586812,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-15-scaled.jpg\",\"size\":\"full\",\"id\":40503,\"alt\":\"Joseph and Rach walking up a green, grassy hill. Talking to each other and smiling.\",\"pixels\":4377600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-10-28 09:27:39','2024-12-18 12:39:50',1,NULL,NULL,NULL,NULL,0,1,2,'2024-10-28 09:45:30','2024-10-28 09:30:08',90),(1315,'https://biomechanicseducation.com/our-team/martin-haines/','57:2f51a1fff126a3117c8dfff241aa3468',41370,'post','page',3,39488,'Martin Haines | Biomechanics Education','Learn about Martin Haines, Biomechanics Coach and Chartered Physiotherapist. Read more...','Martin Haines','publish',NULL,0,NULL,NULL,NULL,'Tom Waldron',26,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Martin-Side-on_-scaled.jpg',NULL,'41371','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Martin-Side-on_-scaled.jpg','41371','featured-image','{\"width\":2560,\"height\":1920,\"filesize\":314991,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/11/Martin-Side-on_-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/11/Martin-Side-on_-scaled.jpg\",\"size\":\"full\",\"id\":41371,\"alt\":\"Martin Haines, wearing a light blue shirt, smilng at the camera, white/grey hair, black rimmed glasses, white older male.\",\"pixels\":4915200,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-11-04 14:56:51','2024-12-18 12:40:01',1,NULL,NULL,NULL,NULL,1,1,2,'2024-11-04 15:05:58','2024-11-04 14:56:51',90),(1316,'https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-sports-massage-therapists/','98:9c695bb1f092aaf242a2247c6a11a1f3',41403,'post','course',3,0,NULL,'Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!','Biomechanics for Sports Massage Therapists','publish',NULL,0,NULL,NULL,NULL,'Introduction to Biomechanics Education Course',31,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-53.jpg',NULL,'41412','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-53.jpg','41412','featured-image','{\"width\":2048,\"height\":1365,\"filesize\":1857091,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-53.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-53.jpg\",\"size\":\"full\",\"id\":41412,\"alt\":\"\",\"pixels\":2795520,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-11-06 15:16:08','2024-12-18 12:40:01',1,NULL,NULL,NULL,NULL,0,1,2,'2024-11-07 15:06:17','2024-11-06 15:16:08',90),(1318,'https://biomechanicseducation.com/courses/biomechanics/level-3-sports-massage-diploma-in-biomechanics-coaching/','111:b9466e062d21dd8c00ad0029e8f6722a',41425,'post','course',3,0,'Level 3 SMT + Biomechanics Coaching Bundle %%sep%% Biomechanics Education','Enhance your skills with our advanced Sports Massage and Intrinsic Biomechanics course, designed to support athletic performance and improve movement quality through evidence-based assessment techniques.','Level 3 Sports Massage &#038; Diploma in Biomechanics Coaching','publish',NULL,0,NULL,NULL,NULL,'Sports Massage Therapist Course',27,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-45.jpg',NULL,'41428','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-45.jpg','41428','featured-image','{\"width\":2048,\"height\":1365,\"filesize\":2022563,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-45.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-45.jpg\",\"size\":\"full\",\"id\":41428,\"alt\":\"\",\"pixels\":2795520,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-11-07 15:37:06','2025-03-14 09:25:10',1,NULL,NULL,NULL,NULL,0,1,2,'2025-03-14 09:25:10','2024-11-07 15:37:06',90),(1319,'https://biomechanicseducation.com/courses/biomechanics/level-4-sports-massage-diploma-in-biomechanics-coaching/','111:f352ca7871add910bd836d5c19830f78',41455,'post','course',3,0,'Level 4 SMT + Biomechanics Coaching Bundle %%sep%% Biomechanics Education','Enhance your skills with our Level 4 Sports Massage and Intrinsic Biomechanics course, designed to support performance and improve movement quality through evidence-based assessment techniques.','Level 4 Sports Massage &#038; Diploma in Biomechanics Coaching','publish',NULL,0,NULL,NULL,NULL,'Sports Massage Therapist Course',27,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-61.jpg',NULL,'41473','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-61-1200x800.jpg','41473','featured-image','{\"width\":1200,\"height\":800,\"filesize\":153891,\"path\":\"2024/11/Sports_Massage_Therapy_Web-61-1200x800.jpg\",\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/11/Sports_Massage_Therapy_Web-61-1200x800.jpg\",\"size\":\"large\",\"id\":41473,\"alt\":\"\",\"pixels\":960000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-11-08 09:35:51','2025-03-14 09:22:00',1,NULL,NULL,NULL,NULL,0,1,2,'2025-03-14 09:22:00','2024-11-08 09:35:51',90),(1320,'https://biomechanicseducation.com/courses/biomechanics/level-4-pilates-diploma-in-biomechanics-coaching/','104:e1993277c39e60cddeb90523429d6db5',41520,'post','course',3,0,'Level 4 Pilates + Biomechanics Coaching Bundle %%sep%% Biomechanics Education','Enhance your skills with our Level 4 Sports Massage and Intrinsic Biomechanics course, designed to support performance and improve movement quality through evidence-based assessment techniques.','Level 4 Mat Pilates Instructor &#038; Diploma in Biomechanics Coaching','publish',NULL,0,NULL,NULL,NULL,'Level 4 Mat Pilates Course',29,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/CourtX_Pilates_Web-40.jpg',NULL,'41524','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/CourtX_Pilates_Web-40.jpg','41524','featured-image','{\"width\":2048,\"height\":1365,\"filesize\":473973,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/11/CourtX_Pilates_Web-40.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/11/CourtX_Pilates_Web-40.jpg\",\"size\":\"full\",\"id\":41524,\"alt\":\"\",\"pixels\":2795520,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-11-08 12:19:49','2025-03-14 09:24:09',1,NULL,NULL,NULL,NULL,0,1,2,'2025-03-14 09:24:09','2024-11-08 12:19:49',90),(1321,'https://biomechanicseducation.com/courses/biomechanics/level-4-sstrength-and-conditioning-diploma-in-biomechanics-coaching-copy/','128:e71fdf534ed8f9d886090fd1c6ce5dbd',41533,'post','course',3,0,'Level 4 Strength and Conditioning & Biomechanics Coaching Bundle %%sep%% Biomechanics Education','Enhance your skills with our Level 4 Strength & Conditioning and Intrinsic Biomechanics course. Ideal for existing PE teachers, physiotherapists, osteopaths, sports coaches, and personal trainers.','Level 4 Strength and Conditioning &#038; Diploma in Biomechanics Coaching','publish',NULL,0,NULL,NULL,NULL,'Level 4 Strength & Conditioning Course',33,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/FutureFitRebrand-Images-LV3PT-1-scaled.jpg',NULL,'41538','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/FutureFitRebrand-Images-LV3PT-1-scaled.jpg','41538','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":571264,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/11/FutureFitRebrand-Images-LV3PT-1-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/11/FutureFitRebrand-Images-LV3PT-1-scaled.jpg\",\"size\":\"full\",\"id\":41538,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-11-08 12:49:54','2025-03-14 09:24:37',1,NULL,NULL,NULL,NULL,0,1,2,'2025-03-14 09:24:37','2024-11-08 12:49:54',90),(1326,'https://biomechanicseducation.com/courses/biomechanics/biomechanics-for-strength-and-conditioning-coaches/','106:3f37ec436221d3c3824d8f9695090914',41598,'post','course',3,0,NULL,'Discover more about elevating your skillset and career with a free Intro to Biomechanics Education Course. Use code \'intro\' at check out to get the Course for free!','Biomechanics for Strength and Conditioning Coaches','publish',NULL,0,NULL,NULL,NULL,'Introduction to Biomechanics Education Course',28,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-8-scaled.jpg',NULL,'41496','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-8-scaled.jpg','41496','featured-image','{\"width\":2560,\"height\":1710,\"filesize\":611849,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/11/BE_Worshop_30thAug-8-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/11/BE_Worshop_30thAug-8-scaled.jpg\",\"size\":\"full\",\"id\":41496,\"alt\":\"\",\"pixels\":4377600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2024-11-15 10:42:38','2024-12-18 12:40:01',1,NULL,NULL,NULL,NULL,0,1,2,'2024-11-15 10:59:45','2024-11-15 10:42:38',90),(1327,'https://biomechanicseducation.com/think-the-body-move-the-mind/','63:826c3294aeec1d766104a2d5b0314a2c',42003,'post','post',3,0,NULL,NULL,'Think the Body / Move the Mind','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/10/CourtX_Pilates_Web-47.jpg',NULL,'41400','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/10/CourtX_Pilates_Web-47.jpg','41400','featured-image','{\"width\":2048,\"height\":1365,\"filesize\":458971,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/10/CourtX_Pilates_Web-47.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/10/CourtX_Pilates_Web-47.jpg\",\"size\":\"full\",\"id\":41400,\"alt\":\"\",\"pixels\":2795520,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2025-01-17 16:56:33','2025-01-20 16:01:56',1,NULL,NULL,NULL,NULL,0,5,2,'2025-01-20 16:01:56','2025-01-20 01:00:20',90),(1328,'https://biomechanicseducation.com/tag/blue-monday/','50:c3ee0eea557a815a71a02ebb191f10ad',445,'term','post_tag',NULL,NULL,NULL,NULL,'Blue Monday',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2025-01-17 17:02:00','2025-01-20 16:01:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 16:01:56',NULL,NULL),(1329,'https://biomechanicseducation.com/tag/physical-health/','54:796698e8bd732d1b3d90945e787105b0',446,'term','post_tag',NULL,NULL,NULL,NULL,'Physical Health',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2025-01-17 17:02:00','2025-07-01 14:53:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-07-01 15:53:22',NULL,NULL),(1330,'https://biomechanicseducation.com/tag/pain-reduction/','53:a04d2d0fffadb7c79ac95105ae453957',447,'term','post_tag',NULL,NULL,NULL,NULL,'Pain Reduction',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2025-01-17 17:02:00','2025-07-01 14:53:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-07-01 15:53:22',NULL,NULL),(1331,'https://biomechanicseducation.com/category/introduction-to-biomechanics/','72:1a24ef29a50b5b2e608bf1fb1123b55c',448,'term','category',NULL,NULL,NULL,NULL,'Introduction to Biomechanics',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2025-01-20 15:56:35','2025-07-01 14:53:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-07-01 15:53:22',NULL,NULL),(1332,'https://biomechanicseducation.com/category/the-science-of-biomechanics/','71:e10636f8e9de6f700305bc5e904163b3',449,'term','category',NULL,NULL,NULL,NULL,'The Science of Biomechanics',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2025-01-20 15:57:00','2025-01-20 15:59:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:59:55',NULL,NULL),(1333,'https://biomechanicseducation.com/category/biomechanics-for-sport-and-fitness/','78:c711a4d48ca614d8f934ffe7ee932c5a',450,'term','category',NULL,NULL,NULL,NULL,'Biomechanics for Sport and Fitness',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2025-01-20 15:57:13','2025-07-01 14:53:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-07-01 15:53:22',NULL,NULL),(1334,'https://biomechanicseducation.com/category/injury-prevention-and-management/','76:49dcd317d13f421d7807ed180c301502',451,'term','category',NULL,NULL,NULL,NULL,'Injury Prevention and Management',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2025-01-20 15:57:25','2025-07-01 14:53:23',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-07-01 15:53:22',NULL,NULL),(1335,'https://biomechanicseducation.com/category/practical-training-workshops/','72:e246fafb3d393669ac8cea5dffd23b5c',452,'term','category',NULL,NULL,NULL,NULL,'Practical Training &amp; Workshops',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2025-01-20 15:57:35','2025-01-20 15:57:35',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-01-20 15:57:35',NULL,NULL),(1336,'https://biomechanicseducation.com/category/professional-development/','68:2f404fd309c86f33bb0e2c4abd1b7318',453,'term','category',NULL,NULL,NULL,NULL,'Professional Development',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2025-01-20 15:57:45','2025-04-24 12:35:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2025-04-24 13:35:48',NULL,NULL),(1337,'https://biomechanicseducation.com/blogs/introduction-to-biomechanics/','69:a2ee947125f5184b89592acd996b0898',42037,'post','page',17,39497,'Introduction to Biomechanics | Biomechanics Education','Understand the principles of human movement, key concepts like force and motion, and their practical applications in exercise, sports, and injury prevention.','Introduction to Biomechanics','publish',NULL,0,NULL,NULL,NULL,'biomechanics blogs',28,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/deadlift-analysis-made-simple.jpg',NULL,'40675','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/deadlift-analysis-made-simple.jpg','40675','featured-image','{\"width\":2560,\"height\":1708,\"filesize\":393191,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/deadlift-analysis-made-simple.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/deadlift-analysis-made-simple.jpg\",\"size\":\"full\",\"id\":40675,\"alt\":\"\",\"pixels\":4372480,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2025-01-20 16:12:30','2025-01-20 16:24:06',1,NULL,NULL,NULL,NULL,1,1,2,'2025-01-20 16:24:06','2025-01-20 16:12:30',90),(1338,'https://biomechanicseducation.com/blogs/the-science-of-biomechanics/','68:52a469af076bd5f3c6455d7762f35cff',42041,'post','page',17,39497,'The Science of Biomechanics | Biomechanics Education','Delve into the mechanics of the human body, exploring the forces, motions, and structures that drive movement and performance.','The Science of Biomechanics','publish',NULL,0,NULL,NULL,NULL,'biomechanics blogs',30,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/behaviour-change-coaching-50.50-image-scaled.jpg',NULL,'40557','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/behaviour-change-coaching-50.50-image-scaled.jpg','40557','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":488694,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/behaviour-change-coaching-50.50-image-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/behaviour-change-coaching-50.50-image-scaled.jpg\",\"size\":\"full\",\"id\":40557,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2025-01-20 16:19:15','2025-01-20 16:23:17',1,NULL,NULL,NULL,NULL,1,1,2,'2025-01-20 16:23:16','2025-01-20 16:19:15',90),(1339,'https://biomechanicseducation.com/blogs/biomechanics-for-sport-and-fitness/','75:3e703ee4542c8d19ab445636da6554a8',42044,'post','page',17,39497,'Biomechanics for Sport and Fitness | Biomechanics Education','Applying movement science to optimise performance, prevent injury, and enhance training techniques in sport and fitness.','Biomechanics for Sport and Fitness','publish',NULL,0,NULL,NULL,NULL,'biomechanics blogs',30,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/what-the-hell-is-functional-training-hero-iamge.jpg',NULL,'40659','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/what-the-hell-is-functional-training-hero-iamge.jpg','40659','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":370143,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/what-the-hell-is-functional-training-hero-iamge.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/what-the-hell-is-functional-training-hero-iamge.jpg\",\"size\":\"full\",\"id\":40659,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2025-01-20 16:24:11','2025-01-20 16:26:22',1,NULL,NULL,NULL,NULL,1,1,2,'2025-01-20 16:26:22','2025-01-20 16:24:11',90),(1340,'https://biomechanicseducation.com/blogs/biomechanics-for-sport-and-fitness-copy/','80:41d9e6f35fb8da0d8502c719a21f8a72',42046,'post','page',17,39497,NULL,NULL,'Biomechanics for Sport and Fitness Copy','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2025-01-20 16:26:33','2025-01-20 16:26:33',1,NULL,NULL,NULL,NULL,1,NULL,2,'2025-01-20 16:26:33','2025-01-20 16:26:33',0),(1341,'https://biomechanicseducation.com/?page_id=42171','48:a3b0981c97b68e4af7f8dc9a79e48789',42171,'post','page',18,0,NULL,NULL,'Banner Template Draft','draft',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2025-02-04 12:02:01','2025-03-05 14:35:43',1,NULL,NULL,NULL,NULL,0,0,2,'2025-03-05 14:35:43','0000-00-00 00:00:00',90),(1342,'https://biomechanicseducation.com/musculoskeletal-msk-education-courses-explained/','82:8995bf43d95d6673ea1e53a041f9ed43',42431,'post','post',3,0,'Musculoskeletal (MSK) Courses Explained %%page%% %%sep%% %%sitename%%','Musculoskeletal (MSK) Courses and education provide new education opportunities for clinicians and fitness professionals.','Musculoskeletal (MSK) Education Courses Explained','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Imovefreely-50.50-image.jpg',NULL,'40618','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Imovefreely-50.50-image.jpg','40618','featured-image','{\"width\":2388,\"height\":1592,\"filesize\":260383,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Imovefreely-50.50-image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/Imovefreely-50.50-image.jpg\",\"size\":\"full\",\"id\":40618,\"alt\":\"\",\"pixels\":3801696,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2025-03-04 16:27:09','2025-04-24 12:35:48',1,NULL,NULL,NULL,NULL,0,1,2,'2025-04-24 13:35:48','2025-03-05 15:29:49',90),(1343,'https://biomechanicseducation.com/international-training-education/','67:297cb1fe9f5e75fac53944e774c7cdf1',42536,'post','page',17,0,NULL,NULL,'International Training &#038; Education','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-17-1-scaled.jpg',NULL,'40818','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-17-1-scaled.jpg','40818','featured-image','{\"width\":2560,\"height\":1710,\"filesize\":745859,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-17-1-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/BE_Tom_Joseph_Rachel-17-1-scaled.jpg\",\"size\":\"full\",\"id\":40818,\"alt\":\"\",\"pixels\":4377600,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2025-03-11 14:53:39','2025-05-07 13:14:58',1,NULL,NULL,NULL,NULL,0,1,2,'2025-05-07 14:14:58','2025-03-11 14:53:38',90),(1344,'https://biomechanicseducation.com/how-to-choose-the-right-biomechanics-course-for-your-career-goals/','100:505c63d4813e627d61204fac53df777b',42635,'post','post',3,0,'%%title%% %%sep%% %%sitename%%','Find the best biomechanics course for your career. Explore course content, accreditation, and hands-on learning for your professional growth.','How to Choose the Right Biomechanics Course for Your Career Goals','publish',NULL,0,NULL,NULL,NULL,'biomechanics course',40,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2025/03/Biomechanics-Education-Course-Selection-03-e1742298932288.png',NULL,'42680','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2025/03/Biomechanics-Education-Course-Selection-03-e1742298932288.png','42680','featured-image','{\"width\":1200,\"height\":800,\"filesize\":562072,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2025/03/Biomechanics-Education-Course-Selection-03-e1742298932288.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2025/03/Biomechanics-Education-Course-Selection-03-e1742298932288.png\",\"size\":\"full\",\"id\":42680,\"alt\":\"\",\"pixels\":960000,\"type\":\"image/png\"}',0,NULL,NULL,'2025-03-17 14:20:17','2025-03-31 12:08:54',1,NULL,NULL,NULL,NULL,0,1,2,'2025-03-31 13:08:53','2025-03-17 14:20:17',90),(1346,'https://biomechanicseducation.com/anatomy-for-personal-trainers-what-every-pt-should-know/','90:3dd17ba87a312639233e6b107c214a23',42986,'post','post',3,0,NULL,'Why anatomy matters for Personal Trainers: Improve results, reduce injury, and boost coaching confidence through movement analysis.','Anatomy for Personal Trainers: What Every PT Should Know','publish',NULL,0,NULL,NULL,NULL,'Anatomy for Personal Trainers',64,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/practical-anatomy-series-50.50-image.jpg',NULL,'40635','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/practical-anatomy-series-50.50-image.jpg','40635','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":290351,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/practical-anatomy-series-50.50-image.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/practical-anatomy-series-50.50-image.jpg\",\"size\":\"full\",\"id\":40635,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2025-04-24 10:56:17','2025-07-01 14:53:23',1,NULL,NULL,NULL,NULL,0,6,2,'2025-07-01 15:53:22','2025-04-24 10:56:16',90),(1347,'https://biomechanicseducation.com/download-price-guide-copy/','60:32df49e5469b359d59c6e429164410c4',42987,'post','page',17,0,'Price Guide | Biomechanics Education','Explore our price guide to find detailed information on course fees and packages. Plan your professional development with comprehensive pricing options.','Download Price Guide Validation Test','publish',NULL,0,NULL,NULL,NULL,'Download price guide',33,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-scaled.jpg',NULL,'40294','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-scaled.jpg','40294','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":291083,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/WOMENS-HEALTH-MENOPAUSE-AND-PROGRAMMING-50.50-2-IMAGE-min-scaled.jpg\",\"size\":\"full\",\"id\":40294,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2025-04-24 10:59:40','2025-04-24 14:32:43',1,NULL,NULL,NULL,NULL,0,1,2,'2025-04-24 15:32:43','2025-04-24 10:59:40',90),(1348,'https://biomechanicseducation.com/?p=43019','42:958078b782fc5dea158abba18898bdd8',43019,'post','post',3,0,NULL,'Discover how intrinsic biomechanics supports daily movement, reduces injury risk, and promotes long-term health—it\'s not just for athletes.','Intrinsic Biomechanics in Everyday Life: Why It’s Not Just for Athletes','future',0,0,NULL,NULL,NULL,'Intrinsic biomechanics in everyday life',73,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/05/Get-rid-of-your-clients-Biomechanics-Education-1.png',NULL,'21789','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2020/05/Get-rid-of-your-clients-Biomechanics-Education-1.png','21789','featured-image','{\"width\":1225,\"height\":612,\"filesize\":925551,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2020/05/Get-rid-of-your-clients-Biomechanics-Education-1.png\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2020/05/Get-rid-of-your-clients-Biomechanics-Education-1.png\",\"size\":\"full\",\"id\":21789,\"alt\":\"\",\"pixels\":749700,\"type\":\"image/png\"}',NULL,NULL,NULL,'2025-04-24 13:32:18','2025-07-03 08:21:16',1,NULL,NULL,NULL,NULL,0,3,2,'2025-07-03 09:21:16','2025-07-08 07:00:01',90),(1350,'https://biomechanicseducation.com/?p=43040','42:d3e204d941d6ed58b70fd1cf6e2fea16',43040,'post','post',3,0,NULL,'Discover how strength training builds resilience, improves joint stability, and reduces injury risk—essential for athletes and everyday movement alike.','Strength Training for Injury Prevention: Building Resilience and Joint Health','future',0,0,NULL,NULL,NULL,'Strength training for injury prevention',71,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/deadlift-analysis-made-simple.jpg',NULL,'40675','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/deadlift-analysis-made-simple.jpg','40675','featured-image','{\"width\":2560,\"height\":1708,\"filesize\":393191,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/deadlift-analysis-made-simple.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/deadlift-analysis-made-simple.jpg\",\"size\":\"full\",\"id\":40675,\"alt\":\"\",\"pixels\":4372480,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2025-04-24 14:22:45','2025-07-03 08:23:35',1,NULL,NULL,NULL,NULL,0,4,2,'2025-07-03 09:23:35','2025-08-19 08:00:32',90),(1351,'https://biomechanicseducation.com/?p=43066','42:33cace517082009b4ede3eca56ce6b7c',43066,'post','post',3,0,NULL,'Learn how understanding intrinsic biomechanics helps reduce injury risk, improve movement efficiency, and support long-term performance.','The Link Between Movement Biomechanics and Risk Reduction','future',0,0,NULL,NULL,NULL,'Movement biomechanics and injury prevention',64,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_24thAug-6-scaled.jpg',NULL,'41332','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_24thAug-6-scaled.jpg','41332','featured-image','{\"width\":2560,\"height\":1710,\"filesize\":431497,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_24thAug-6-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/10/BE_Worshop_24thAug-6-scaled.jpg\",\"size\":\"full\",\"id\":41332,\"alt\":\"\",\"pixels\":4377600,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2025-04-25 08:40:17','2025-07-03 08:15:24',1,NULL,NULL,NULL,NULL,0,4,2,'2025-07-03 09:15:24','2025-07-15 08:00:29',90),(1352,'https://biomechanicseducation.com/?p=43069','42:aa83fe3c041a1c57a3d52c95708f409f',43069,'post','post',3,0,NULL,'Learn how joint health reduces injury risk and boosts training performance. Support mobility, stability, and long-term movement.','The Role of Joint Health in Reducing Common Injuries','future',0,0,NULL,NULL,NULL,'Joint health and injury prevention',64,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Level-4-PT-50.50-3-IMAGE.webp',NULL,'40812','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Level-4-PT-50.50-3-IMAGE.webp','40812','featured-image','{\"width\":900,\"height\":600,\"filesize\":52510,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Level-4-PT-50.50-3-IMAGE.webp\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/Level-4-PT-50.50-3-IMAGE.webp\",\"size\":\"full\",\"id\":40812,\"alt\":\"\",\"pixels\":540000,\"type\":\"image/webp\"}',NULL,NULL,NULL,'2025-04-25 08:51:38','2025-07-03 08:22:47',1,NULL,NULL,NULL,NULL,0,4,2,'2025-07-03 09:22:46','2025-07-22 08:00:28',90),(1353,'https://biomechanicseducation.com/?p=43073','42:fbf310cd1c4ead6e0d63dd00976495ca',43073,'post','post',3,0,NULL,'Learn how preparation exercise uses biomechanics and neuromuscular science to improve movement and reduce symptoms.','The Science Behind Preparation Exercise: Understanding the Connection Between Movement and Symptoms','future',0,0,NULL,NULL,NULL,'Preparation exercise and symptom management',60,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/10/shutterstock_2168498877-scaled.jpg',NULL,'41326','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/10/shutterstock_2168498877-scaled.jpg','41326','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":495256,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/10/shutterstock_2168498877-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/10/shutterstock_2168498877-scaled.jpg\",\"size\":\"full\",\"id\":41326,\"alt\":\"photo of people in a running race\",\"pixels\":4369920,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2025-04-25 09:21:27','2025-07-03 08:17:38',1,NULL,NULL,NULL,NULL,0,4,2,'2025-07-03 09:17:38','2025-07-29 08:00:24',90),(1354,'https://biomechanicseducation.com/?p=43078','42:ec1a36db48364955408ae33d8e13329b',43078,'post','post',3,0,NULL,'Discover 5 essential preparation exercises every fitness trainer should use to improve movement, reduce injury risk, and enhance performance.','Top 5 Preparation Exercises Every Trainer Should Know','future',0,0,NULL,NULL,NULL,'Preparation exercises for trainers',69,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Imovefreely-hero-iamge.jpg',NULL,'40615','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/09/Imovefreely-hero-iamge.jpg','40615','featured-image','{\"width\":2560,\"height\":1706,\"filesize\":373908,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/09/Imovefreely-hero-iamge.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/09/Imovefreely-hero-iamge.jpg\",\"size\":\"full\",\"id\":40615,\"alt\":\"\",\"pixels\":4367360,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2025-04-25 09:33:38','2025-07-03 08:23:18',1,NULL,NULL,NULL,NULL,0,4,2,'2025-07-03 09:23:18','2025-08-12 08:00:30',90),(1355,'https://biomechanicseducation.com/?p=43081','42:77c9ed1f4ab57937dead6f33d9cc38a9',43081,'post','post',3,0,NULL,'Learn what ‘corrective’ exercise really means, how it supports movement quality, and why every fitness professional should include it.','What Is ‘Corrective’ Exercise and Is It Essential for Your Clients?','future',0,0,NULL,NULL,NULL,'Corrective exercise for personal trainers',64,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-28-scaled.jpg',NULL,'41189','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-28-scaled.jpg','41189','featured-image','{\"width\":2560,\"height\":1710,\"filesize\":524380,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2024/10/BE_Worshop_30thAug-28-scaled.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2024/10/BE_Worshop_30thAug-28-scaled.jpg\",\"size\":\"full\",\"id\":41189,\"alt\":\"\",\"pixels\":4377600,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2025-04-25 09:42:04','2025-07-03 08:23:04',1,NULL,NULL,NULL,NULL,0,4,2,'2025-07-03 09:23:04','2025-08-05 08:00:29',90),(1356,'https://biomechanicseducation.com/elevate-referral-page/','56:0489dcc3b6d1e2d2978035e96d79a4a1',43389,'post','page',18,0,NULL,NULL,'Elevate referral page','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-37-1-1.jpg',NULL,'36390','featured-image',NULL,NULL,'https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-37-1-1.jpg','36390','featured-image','{\"width\":2016,\"height\":908,\"filesize\":261428,\"url\":\"https://biomechanicseducation.com/wp-content/uploads/2023/06/MicrosoftTeams-image-37-1-1.jpg\",\"path\":\"/sites/biomechanicseducation.com/files/wp-content/uploads/2023/06/MicrosoftTeams-image-37-1-1.jpg\",\"size\":\"full\",\"id\":36390,\"alt\":\"\",\"pixels\":1830528,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2025-06-12 13:13:08','2025-06-16 14:06:19',1,NULL,NULL,NULL,NULL,0,1,2,'2025-06-16 15:06:19','2025-06-12 13:41:44',90);
/*!40000 ALTER TABLE `6m7_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `6m7_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_yoast_indexable_hierarchy` (
  `indexable_id` int unsigned NOT NULL,
  `ancestor_id` int unsigned NOT NULL,
  `depth` int unsigned DEFAULT NULL,
  `blog_id` bigint NOT NULL DEFAULT '1',
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_yoast_indexable_hierarchy`
--

LOCK TABLES `6m7_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `6m7_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `6m7_yoast_indexable_hierarchy` VALUES (2,0,0,1),(3,0,0,1),(4,0,0,1),(5,0,0,1),(6,0,0,1),(7,0,0,1),(24,0,0,1),(25,0,0,1),(26,0,0,1),(27,0,0,1),(28,0,0,1),(29,0,0,1),(30,0,0,1),(31,0,0,1),(32,0,0,1),(33,0,0,1),(34,0,0,1),(35,0,0,1),(36,0,0,1),(37,0,0,1),(38,0,0,1),(40,0,0,1),(41,0,0,1),(43,0,0,1),(44,0,0,1),(45,0,0,1),(61,0,0,1),(62,0,0,1),(63,0,0,1),(64,0,0,1),(65,0,0,1),(66,0,0,1),(67,0,0,1),(68,0,0,1),(69,0,0,1),(70,0,0,1),(71,0,0,1),(72,0,0,1),(73,0,0,1),(74,0,0,1),(75,0,0,1),(91,0,0,1),(92,0,0,1),(93,0,0,1),(94,0,0,1),(95,0,0,1),(96,0,0,1),(97,0,0,1),(98,0,0,1),(99,0,0,1),(100,0,0,1),(101,0,0,1),(102,0,0,1),(103,0,0,1),(104,0,0,1),(105,0,0,1),(122,0,0,1),(123,0,0,1),(124,0,0,1),(125,0,0,1),(126,0,0,1),(127,0,0,1),(128,0,0,1),(129,0,0,1),(130,0,0,1),(131,0,0,1),(132,0,0,1),(133,0,0,1),(134,0,0,1),(135,0,0,1),(136,0,0,1),(152,0,0,1),(153,0,0,1),(154,0,0,1),(155,0,0,1),(156,0,0,1),(157,0,0,1),(158,0,0,1),(159,0,0,1),(160,0,0,1),(161,0,0,1),(162,0,0,1),(163,0,0,1),(164,0,0,1),(165,0,0,1),(166,0,0,1),(182,0,0,1),(183,0,0,1),(184,0,0,1),(185,0,0,1),(186,0,0,1),(187,0,0,1),(188,0,0,1),(189,0,0,1),(190,0,0,1),(191,0,0,1),(192,0,0,1),(193,0,0,1),(194,0,0,1),(195,0,0,1),(196,0,0,1),(212,0,0,1),(213,0,0,1),(214,0,0,1),(215,0,0,1),(216,0,0,1),(217,0,0,1),(218,0,0,1),(219,0,0,1),(220,0,0,1),(221,0,0,1),(222,0,0,1),(223,0,0,1),(224,0,0,1),(225,0,0,1),(226,0,0,1),(242,0,0,1),(243,0,0,1),(244,0,0,1),(245,0,0,1),(246,0,0,1),(247,0,0,1),(248,0,0,1),(249,0,0,1),(250,0,0,1),(251,0,0,1),(252,0,0,1),(253,0,0,1),(254,0,0,1),(255,0,0,1),(256,0,0,1),(272,0,0,1),(273,0,0,1),(274,0,0,1),(275,0,0,1),(276,0,0,1),(277,0,0,1),(278,0,0,1),(279,0,0,1),(280,0,0,1),(281,0,0,1),(282,0,0,1),(283,0,0,1),(284,0,0,1),(285,0,0,1),(286,0,0,1),(302,0,0,1),(303,0,0,1),(304,0,0,1),(305,0,0,1),(306,0,0,1),(307,0,0,1),(308,0,0,1),(309,0,0,1),(310,0,0,1),(311,0,0,1),(312,0,0,1),(313,0,0,1),(314,0,0,1),(315,0,0,1),(316,0,0,1),(317,0,0,1),(318,0,0,1),(319,0,0,1),(320,0,0,1),(321,0,0,1),(322,0,0,1),(323,0,0,1),(324,0,0,1),(325,0,0,1),(326,0,0,1),(327,0,0,1),(328,0,0,1),(329,0,0,1),(330,0,0,1),(331,0,0,1),(332,0,0,1),(333,0,0,1),(334,0,0,1),(335,0,0,1),(336,0,0,1),(337,0,0,1),(338,0,0,1),(339,0,0,1),(340,0,0,1),(341,0,0,1),(342,0,0,1),(343,0,0,1),(344,0,0,1),(345,0,0,1),(346,0,0,1),(347,0,0,1),(348,0,0,1),(349,0,0,1),(350,0,0,1),(351,0,0,1),(352,0,0,1),(353,0,0,1),(354,0,0,1),(355,0,0,1),(356,0,0,1),(357,0,0,1),(358,0,0,1),(359,0,0,1),(360,0,0,1),(361,0,0,1),(362,0,0,1),(363,0,0,1),(364,0,0,1),(365,0,0,1),(366,0,0,1),(367,0,0,1),(368,0,0,1),(369,0,0,1),(370,0,0,1),(371,0,0,1),(372,0,0,1),(373,0,0,1),(374,0,0,1),(375,0,0,1),(376,0,0,1),(377,0,0,1),(378,0,0,1),(379,0,0,1),(380,0,0,1),(381,0,0,1),(382,0,0,1),(383,0,0,1),(384,0,0,1),(385,0,0,1),(386,0,0,1),(387,0,0,1),(388,0,0,1),(389,0,0,1),(390,0,0,1),(391,0,0,1),(392,0,0,1),(393,0,0,1),(394,0,0,1),(395,0,0,1),(396,0,0,1),(397,0,0,1),(398,0,0,1),(399,0,0,1),(400,0,0,1),(401,0,0,1),(402,0,0,1),(403,0,0,1),(404,0,0,1),(405,0,0,1),(406,0,0,1),(407,0,0,1),(408,0,0,1),(409,0,0,1),(410,0,0,1),(411,0,0,1),(412,0,0,1),(413,0,0,1),(414,0,0,1),(415,0,0,1),(416,0,0,1),(417,0,0,1),(418,0,0,1),(419,0,0,1),(420,0,0,1),(421,0,0,1),(422,0,0,1),(423,0,0,1),(424,0,0,1),(425,0,0,1),(426,0,0,1),(427,0,0,1),(428,0,0,1),(429,0,0,1),(430,0,0,1),(431,0,0,1),(432,0,0,1),(433,0,0,1),(434,0,0,1),(435,0,0,1),(436,0,0,1),(437,0,0,1),(438,0,0,1),(439,0,0,1),(440,0,0,1),(441,0,0,1),(442,0,0,1),(443,0,0,1),(444,0,0,1),(445,0,0,1),(446,0,0,1),(447,0,0,1),(448,0,0,1),(449,0,0,1),(450,0,0,1),(451,0,0,1),(452,0,0,1),(453,0,0,1),(454,0,0,1),(455,0,0,1),(456,0,0,1),(457,0,0,1),(458,0,0,1),(459,0,0,1),(460,0,0,1),(461,0,0,1),(462,0,0,1),(463,0,0,1),(464,0,0,1),(465,0,0,1),(466,0,0,1),(467,0,0,1),(468,0,0,1),(469,0,0,1),(470,0,0,1),(471,0,0,1),(472,0,0,1),(473,0,0,1),(474,0,0,1),(475,0,0,1),(476,0,0,1),(477,0,0,1),(478,0,0,1),(479,0,0,1),(480,0,0,1),(481,0,0,1),(482,0,0,1),(483,0,0,1),(484,0,0,1),(485,0,0,1),(486,0,0,1),(487,0,0,1),(488,0,0,1),(489,0,0,1),(490,0,0,1),(491,0,0,1),(492,0,0,1),(493,0,0,1),(494,0,0,1),(495,0,0,1),(496,0,0,1),(497,0,0,1),(498,0,0,1),(499,0,0,1),(500,0,0,1),(501,0,0,1),(502,0,0,1),(503,0,0,1),(504,0,0,1),(505,0,0,1),(506,0,0,1),(507,0,0,1),(508,0,0,1),(509,0,0,1),(510,0,0,1),(511,0,0,1),(512,0,0,1),(513,0,0,1),(514,0,0,1),(515,0,0,1),(516,0,0,1),(517,0,0,1),(518,0,0,1),(519,0,0,1),(520,0,0,1),(521,0,0,1),(522,0,0,1),(523,0,0,1),(524,0,0,1),(525,0,0,1),(526,0,0,1),(527,0,0,1),(528,0,0,1),(529,0,0,1),(530,0,0,1),(531,0,0,1),(532,0,0,1),(533,0,0,1),(534,0,0,1),(535,0,0,1),(536,0,0,1),(537,0,0,1),(538,0,0,1),(539,0,0,1),(540,0,0,1),(541,0,0,1),(542,0,0,1),(543,0,0,1),(544,0,0,1),(545,0,0,1),(546,0,0,1),(547,0,0,1),(548,0,0,1),(549,0,0,1),(550,0,0,1),(551,0,0,1),(552,0,0,1),(553,0,0,1),(554,0,0,1),(555,0,0,1),(556,0,0,1),(557,0,0,1),(558,0,0,1),(559,0,0,1),(560,0,0,1),(561,0,0,1),(562,0,0,1),(563,0,0,1),(564,0,0,1),(565,0,0,1),(566,0,0,1),(567,0,0,1),(568,0,0,1),(569,0,0,1),(570,0,0,1),(571,0,0,1),(572,0,0,1),(573,0,0,1),(574,0,0,1),(575,0,0,1),(576,0,0,1),(577,0,0,1),(578,0,0,1),(579,0,0,1),(580,0,0,1),(581,0,0,1),(582,0,0,1),(583,0,0,1),(584,0,0,1),(585,0,0,1),(586,0,0,1),(587,0,0,1),(588,0,0,1),(589,0,0,1),(590,0,0,1),(591,0,0,1),(592,0,0,1),(593,0,0,1),(594,0,0,1),(595,0,0,1),(596,0,0,1),(597,0,0,1),(598,0,0,1),(599,0,0,1),(600,0,0,1),(601,0,0,1),(602,0,0,1),(603,0,0,1),(604,0,0,1),(605,0,0,1),(606,0,0,1),(607,0,0,1),(608,0,0,1),(609,0,0,1),(610,0,0,1),(611,0,0,1),(612,0,0,1),(613,0,0,1),(614,0,0,1),(615,0,0,1),(616,0,0,1),(617,0,0,1),(618,0,0,1),(619,0,0,1),(620,0,0,1),(621,0,0,1),(622,0,0,1),(623,0,0,1),(624,0,0,1),(625,0,0,1),(626,0,0,1),(627,0,0,1),(628,0,0,1),(629,0,0,1),(630,0,0,1),(631,0,0,1),(632,0,0,1),(633,0,0,1),(634,0,0,1),(635,0,0,1),(636,0,0,1),(637,0,0,1),(638,0,0,1),(639,0,0,1),(640,0,0,1),(641,0,0,1),(642,0,0,1),(643,0,0,1),(644,0,0,1),(645,0,0,1),(646,0,0,1),(647,0,0,1),(648,0,0,1),(649,0,0,1),(650,0,0,1),(651,0,0,1),(652,0,0,1),(653,0,0,1),(654,0,0,1),(655,0,0,1),(656,0,0,1),(657,0,0,1),(658,0,0,1),(659,0,0,1),(660,0,0,1),(661,0,0,1),(662,0,0,1),(663,0,0,1),(664,0,0,1),(665,0,0,1),(666,0,0,1),(667,0,0,1),(668,0,0,1),(669,0,0,1),(670,0,0,1),(671,0,0,1),(672,0,0,1),(673,0,0,1),(674,0,0,1),(675,0,0,1),(676,0,0,1),(677,0,0,1),(678,0,0,1),(679,0,0,1),(680,0,0,1),(681,0,0,1),(682,0,0,1),(683,0,0,1),(684,0,0,1),(685,0,0,1),(686,0,0,1),(687,0,0,1),(688,0,0,1),(689,0,0,1),(690,0,0,1),(691,0,0,1),(692,0,0,1),(693,0,0,1),(694,0,0,1),(695,0,0,1),(696,0,0,1),(697,0,0,1),(698,0,0,1),(699,0,0,1),(700,0,0,1),(701,0,0,1),(702,0,0,1),(703,0,0,1),(704,0,0,1),(705,0,0,1),(706,0,0,1),(707,0,0,1),(708,0,0,1),(709,0,0,1),(710,0,0,1),(711,0,0,1),(712,0,0,1),(713,0,0,1),(714,0,0,1),(715,0,0,1),(716,0,0,1),(717,0,0,1),(718,0,0,1),(719,0,0,1),(720,0,0,1),(721,0,0,1),(722,0,0,1),(723,0,0,1),(724,0,0,1),(725,0,0,1),(726,0,0,1),(727,0,0,1),(728,0,0,1),(729,0,0,1),(730,0,0,1),(731,0,0,1),(732,0,0,1),(733,0,0,1),(734,0,0,1),(735,0,0,1),(736,0,0,1),(737,0,0,1),(738,0,0,1),(739,0,0,1),(740,0,0,1),(741,0,0,1),(742,0,0,1),(743,0,0,1),(744,0,0,1),(745,0,0,1),(746,0,0,1),(747,0,0,1),(748,0,0,1),(749,0,0,1),(750,0,0,1),(751,0,0,1),(752,0,0,1),(753,0,0,1),(754,0,0,1),(755,0,0,1),(756,0,0,1),(757,0,0,1),(758,0,0,1),(759,0,0,1),(760,0,0,1),(761,0,0,1),(762,0,0,1),(763,0,0,1),(764,0,0,1),(765,0,0,1),(766,0,0,1),(767,0,0,1),(768,0,0,1),(769,0,0,1),(770,0,0,1),(771,0,0,1),(772,0,0,1),(773,0,0,1),(774,0,0,1),(775,0,0,1),(776,0,0,1),(777,0,0,1),(778,0,0,1),(779,0,0,1),(780,0,0,1),(781,0,0,1),(782,0,0,1),(783,0,0,1),(784,0,0,1),(785,0,0,1),(786,0,0,1),(787,0,0,1),(788,0,0,1),(789,0,0,1),(790,0,0,1),(791,0,0,1),(792,0,0,1),(793,0,0,1),(794,0,0,1),(795,0,0,1),(796,0,0,1),(797,0,0,1),(798,0,0,1),(799,0,0,1),(800,0,0,1),(801,0,0,1),(802,0,0,1),(803,0,0,1),(804,0,0,1),(805,0,0,1),(806,0,0,1),(807,0,0,1),(808,0,0,1),(809,0,0,1),(810,0,0,1),(811,0,0,1),(812,0,0,1),(813,0,0,1),(814,0,0,1),(815,0,0,1),(816,0,0,1),(817,0,0,1),(818,0,0,1),(819,0,0,1),(820,0,0,1),(821,0,0,1),(822,0,0,1),(823,0,0,1),(824,0,0,1),(825,0,0,1),(826,0,0,1),(827,0,0,1),(828,0,0,1),(829,0,0,1),(830,0,0,1),(831,0,0,1),(832,0,0,1),(833,0,0,1),(834,0,0,1),(835,0,0,1),(836,0,0,1),(837,0,0,1),(838,0,0,1),(839,0,0,1),(840,0,0,1),(841,0,0,1),(842,0,0,1),(843,0,0,1),(844,0,0,1),(845,0,0,1),(846,0,0,1),(847,0,0,1),(848,0,0,1),(849,0,0,1),(850,0,0,1),(851,0,0,1),(852,0,0,1),(853,0,0,1),(854,0,0,1),(855,0,0,1),(856,0,0,1),(857,0,0,1),(858,0,0,1),(859,0,0,1),(860,0,0,1),(861,0,0,1),(862,0,0,1),(863,0,0,1),(864,0,0,1),(865,0,0,1),(866,0,0,1),(867,0,0,1),(868,0,0,1),(869,0,0,1),(870,0,0,1),(871,0,0,1),(872,0,0,1),(873,0,0,1),(874,0,0,1),(875,0,0,1),(876,0,0,1),(877,0,0,1),(878,0,0,1),(879,0,0,1),(880,0,0,1),(881,0,0,1),(882,0,0,1),(883,0,0,1),(884,0,0,1),(885,0,0,1),(886,0,0,1),(887,0,0,1),(888,0,0,1),(889,0,0,1),(890,0,0,1),(891,0,0,1),(892,0,0,1),(893,0,0,1),(894,0,0,1),(895,0,0,1),(896,0,0,1),(897,0,0,1),(898,0,0,1),(899,0,0,1),(900,0,0,1),(901,0,0,1),(902,0,0,1),(903,0,0,1),(904,0,0,1),(905,0,0,1),(906,0,0,1),(907,0,0,1),(908,0,0,1),(909,0,0,1),(910,0,0,1),(911,0,0,1),(912,0,0,1),(913,0,0,1),(914,0,0,1),(915,0,0,1),(919,0,0,1),(920,919,1,1),(922,0,0,1),(923,919,1,1),(924,919,1,1),(925,0,0,1),(926,0,0,1),(927,0,0,1),(928,0,0,1),(929,0,0,1),(930,0,0,1),(931,0,0,1),(933,925,1,1),(934,925,1,1),(935,925,1,1),(936,925,1,1),(937,925,1,1),(938,925,1,1),(940,925,1,1),(941,0,0,1),(942,930,1,1),(943,930,1,1),(944,0,0,1),(945,0,0,1),(948,0,0,1),(949,0,0,1),(950,0,0,1),(957,0,0,1),(958,0,0,1),(960,0,0,1),(1275,0,0,1),(1276,0,0,1),(1277,0,0,1),(1278,0,0,1),(1279,0,0,1),(1280,0,0,1),(1281,0,0,1),(1282,0,0,1),(1283,0,0,1),(1284,0,0,1),(1285,0,0,1),(1286,0,0,1),(1287,0,0,1),(1288,0,0,1),(1289,0,0,1),(1290,0,0,1),(1291,0,0,1),(1292,0,0,1),(1293,0,0,1),(1294,0,0,1),(1295,0,0,1),(1296,0,0,1),(1297,0,0,1),(1298,0,0,1),(1299,941,1,1),(1300,0,0,1),(1301,0,0,1),(1303,0,0,1),(1304,0,0,1),(1305,0,0,1),(1306,0,0,1),(1307,0,0,1),(1308,0,0,1),(1309,0,0,1),(1310,0,0,1),(1311,0,0,1),(1312,0,0,1),(1313,0,0,1),(1314,0,0,1),(1315,948,1,1),(1316,0,0,1),(1318,0,0,1),(1319,0,0,1),(1320,0,0,1),(1321,0,0,1),(1326,0,0,1),(1327,0,0,1),(1328,0,0,1),(1329,0,0,1),(1330,0,0,1),(1331,0,0,1),(1332,0,0,1),(1333,0,0,1),(1334,0,0,1),(1335,0,0,1),(1336,0,0,1),(1337,950,1,1),(1338,950,1,1),(1339,950,1,1),(1340,950,1,1),(1341,0,0,1),(1342,0,0,1),(1343,0,0,1),(1344,0,0,1),(1346,0,0,1),(1347,0,0,1),(1348,0,0,1),(1350,0,0,1),(1351,0,0,1),(1352,0,0,1),(1353,0,0,1),(1354,0,0,1),(1355,0,0,1),(1356,0,0,1);
/*!40000 ALTER TABLE `6m7_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_yoast_migrations`
--

DROP TABLE IF EXISTS `6m7_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_yoast_migrations` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `6m7_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_yoast_migrations`
--

LOCK TABLES `6m7_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `6m7_yoast_migrations` DISABLE KEYS */;
INSERT INTO `6m7_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404'),(24,'20230417083836');
/*!40000 ALTER TABLE `6m7_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_yoast_primary_term`
--

DROP TABLE IF EXISTS `6m7_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_yoast_primary_term` (
  `id` int unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint DEFAULT NULL,
  `term_id` bigint DEFAULT NULL,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_yoast_primary_term`
--

LOCK TABLES `6m7_yoast_primary_term` WRITE;
/*!40000 ALTER TABLE `6m7_yoast_primary_term` DISABLE KEYS */;
INSERT INTO `6m7_yoast_primary_term` VALUES (6,40286,404,'course-cat','2024-09-11 10:47:38','2024-09-26 09:27:18',1),(7,40263,404,'course-cat','2024-09-17 08:34:22','2024-09-18 11:35:36',1),(8,40270,404,'course-cat','2024-09-17 09:01:53','2024-09-26 09:23:01',1),(9,40271,403,'course-cat','2024-09-17 09:45:39','2024-09-26 09:23:34',1),(10,40272,403,'course-cat','2024-09-17 10:08:05','2024-09-26 09:24:18',1),(11,40281,403,'course-cat','2024-09-17 11:11:07','2024-09-26 09:27:02',1),(12,40277,403,'course-cat','2024-09-17 11:46:49','2025-02-10 11:31:22',1),(13,40278,403,'course-cat','2024-09-17 11:58:40','2024-10-07 09:48:07',1),(14,40275,403,'course-cat','2024-09-17 12:07:57','2024-09-26 09:24:54',1),(15,40280,403,'course-cat','2024-09-17 12:59:07','2024-09-26 09:26:26',1),(16,40284,403,'course-cat','2024-09-17 13:26:57','2024-09-26 09:19:55',1),(17,40279,403,'course-cat','2024-09-17 14:11:00','2024-09-26 08:47:04',1),(18,40285,403,'course-cat','2024-09-17 15:08:44','2024-09-26 09:20:43',1),(19,40283,403,'course-cat','2024-09-17 15:41:33','2024-09-26 08:47:49',1),(20,40274,403,'course-cat','2024-09-17 15:50:19','2024-09-26 08:46:36',1),(21,40282,403,'course-cat','2024-09-17 15:58:25','2024-10-04 08:51:03',1),(22,40273,403,'course-cat','2024-09-18 08:47:36','2025-04-07 10:32:19',1),(24,40780,406,'course-cat','2024-09-19 08:39:50','2025-03-14 09:23:23',1),(25,40778,406,'course-cat','2024-09-19 10:27:09','2025-03-14 09:22:44',1),(26,40781,403,'course-cat','2024-09-19 10:59:15','2024-10-16 15:18:50',1),(27,40276,406,'course-cat','2024-09-19 12:07:38','2024-10-29 10:50:08',1),(28,40779,403,'course-cat','2024-09-19 12:28:25','2025-02-19 10:17:10',1),(29,40265,406,'course-cat','2024-10-23 14:13:23','2024-11-06 15:30:33',1),(30,41403,406,'course-cat','2024-11-06 15:16:48','2024-11-07 15:06:17',1),(31,41425,406,'course-cat','2024-11-07 15:37:43','2025-03-14 09:25:10',1),(32,41455,406,'course-cat','2024-11-08 10:15:03','2025-03-14 09:22:00',1),(33,41520,406,'course-cat','2024-11-08 12:31:19','2025-03-14 09:24:09',1),(34,41533,406,'course-cat','2024-11-08 12:51:25','2025-03-14 09:24:37',1),(35,41598,406,'course-cat','2024-11-15 10:43:26','2024-11-15 10:59:45',1),(36,40264,406,'course-cat','2024-12-18 09:31:03','2024-12-18 09:34:22',1),(37,42003,5,'category','2025-01-17 17:00:40','2025-01-20 16:01:56',1),(38,42431,450,'category','2025-03-05 12:54:53','2025-04-24 12:35:48',1),(39,42635,5,'category','2025-03-17 14:24:13','2025-03-31 12:08:54',1),(40,42986,5,'category','2025-04-24 10:57:37','2025-07-01 14:53:23',1),(41,43066,5,'category','2025-07-03 09:15:24','2025-07-03 08:15:24',1),(42,43073,5,'category','2025-07-03 09:17:38','2025-07-03 08:17:38',1);
/*!40000 ALTER TABLE `6m7_yoast_primary_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `6m7_yoast_seo_links`
--

DROP TABLE IF EXISTS `6m7_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `6m7_yoast_seo_links` (
  `id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) DEFAULT NULL,
  `post_id` bigint unsigned DEFAULT NULL,
  `target_post_id` bigint unsigned DEFAULT NULL,
  `type` varchar(8) DEFAULT NULL,
  `indexable_id` int unsigned DEFAULT NULL,
  `target_indexable_id` int unsigned DEFAULT NULL,
  `height` int unsigned DEFAULT NULL,
  `width` int unsigned DEFAULT NULL,
  `size` int unsigned DEFAULT NULL,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=188 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `6m7_yoast_seo_links`
--

LOCK TABLES `6m7_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `6m7_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `6m7_yoast_seo_links` VALUES (1,'https://biomechanicseducation.com/getting-started/biomechanics-coach/',19515,39263,'internal',828,940,NULL,NULL,NULL,NULL,NULL),(2,'https://www.biomechanicseducation.com/wp-content/uploads/2022/10/sven-mieke-optBC2FxCfc-unsplash-300x200.jpg',34054,NULL,'image-ex',904,NULL,NULL,NULL,NULL,NULL,NULL),(3,'https://www.biomechanicseducation.com/wp-content/uploads/2022/09/shutterstock_1520541617-300x230.jpg',34054,NULL,'image-ex',904,NULL,NULL,NULL,NULL,NULL,NULL),(4,'https://www.biomechanicseducation.com/wp-content/uploads/2022/10/Screenshot-2022-10-19-at-15.15.36-300x167.png',34054,NULL,'image-ex',904,NULL,NULL,NULL,NULL,NULL,NULL),(5,'https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg',34054,NULL,'image-ex',904,NULL,NULL,NULL,NULL,NULL,NULL),(6,'https://biomechanicseducation.com/getting-started/biomechanics-and-personal-training/',11407,39214,'internal',744,933,NULL,NULL,NULL,NULL,NULL),(7,'https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back',11407,NULL,'external',744,NULL,NULL,NULL,NULL,NULL,NULL),(8,'https://lh3.googleusercontent.com/jx5IMOX39RqSg5mr2EtrHEKu7p4xnkLh4xcnNRN_iTxRZ9nlh97flQ6tCo3_8syidmpQu6N7HjBGh-d8sBrMrt6hIvAlI7eQitMID8ojuLJ_NELUEIT_UrWRUM7uiLdysH2xbTFC',11407,NULL,'image-ex',744,NULL,NULL,NULL,NULL,NULL,NULL),(9,'https://lh3.googleusercontent.com/7BSuu6WtrUyIJdxUw9jCqhIkJ6EFMfH_ivPmk0BmIFpXz7KBFkptzCMfDWCn6r2ZGjqGLYdmlQPXMZx9Q0BM9dN7yXj3DuNbiw93o-2Wg22H_8FPnbcRzRfyuq77XMf1bHwq5NPs',11407,NULL,'image-ex',744,NULL,NULL,NULL,NULL,NULL,NULL),(10,'https://lh5.googleusercontent.com/zckayMOEf2i91zbFSjTGVbtgugArh-ROo-KHyjuqPbc2ncfmc1YdS0loNz-7bHreJ01Fmu_gAQ8n3ZAyCM7fw43l6phKx65kL5X50K5EGoa7EGbKz0m7HS1sywsf50mOv5rlH_-N',11407,NULL,'image-ex',744,NULL,NULL,NULL,NULL,NULL,NULL),(11,'https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg',11407,NULL,'image-ex',744,NULL,NULL,NULL,NULL,NULL,NULL),(12,'https://www.biomechanicseducation.com/wp-content/uploads/2023/11/2-1-300x169.png',37121,NULL,'image-ex',914,NULL,NULL,NULL,NULL,NULL,NULL),(13,'https://www.biomechanicseducation.com/wp-content/uploads/2023/11/4-300x169.png',37121,NULL,'image-ex',914,NULL,NULL,NULL,NULL,NULL,NULL),(14,'https://www.biomechanicseducation.com/wp-content/uploads/2017/05/MG_9964-683x1024.jpg',2785,NULL,'image-ex',571,NULL,NULL,NULL,NULL,NULL,NULL),(15,'https://biomechanicseducation.com/wp-content/uploads/2020/10/TENSA-VASTUS-INTERMEDIUS.png',24262,24267,'image-in',854,NULL,1454,1512,1230242,NULL,NULL),(16,'https://biomechanicseducation.com/wp-content/uploads/2020/10/ARTICULARIS-GENUS.png',24262,24266,'image-in',854,NULL,1482,1496,1235022,NULL,NULL),(26,'https://biomechanicseducation.com/wp-content/uploads/2020/11/1401137150-huge-scaled-1.jpg',24764,24770,'image-in',858,NULL,2560,2560,606557,NULL,NULL),(27,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1377046316-scaled-1.jpg',24764,24771,'image-in',858,NULL,2560,1920,300735,NULL,NULL),(28,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1350320282-scaled-1.jpg',24764,24772,'image-in',858,NULL,2560,1920,310189,NULL,NULL),(29,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293557031-scaled-1.jpg',24764,24773,'image-in',858,NULL,2560,1920,369593,NULL,NULL),(30,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_223319263-scaled-1.jpg',24764,24774,'image-in',858,NULL,2560,1920,383077,NULL,NULL),(31,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_149230190-scaled-1.jpg',24764,24775,'image-in',858,NULL,2560,2048,247680,NULL,NULL),(32,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_303065684-scaled-1.jpg',24764,24776,'image-in',858,NULL,2560,1920,316439,NULL,NULL),(33,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_293555465-scaled-1.jpg',24764,24777,'image-in',858,NULL,2560,1920,357678,NULL,NULL),(34,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-09.03.16.png',24764,24786,'image-in',858,NULL,520,366,197706,NULL,NULL),(35,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.59.52.png',24764,24784,'image-in',858,NULL,524,390,233502,NULL,NULL),(36,'https://biomechanicseducation.com/wp-content/uploads/2020/11/Screenshot-2020-11-09-at-08.59.31.png',24764,24785,'image-in',858,NULL,532,364,230541,NULL,NULL),(37,'https://biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1757766335-scaled-1.jpg',24764,24781,'image-in',858,NULL,2560,2560,642962,NULL,NULL),(38,'https://biomechanicseducation.com/wp-content/uploads/2017/10/seek-a-professional-1.jpg',4779,3693,'image-in',649,NULL,533,800,111731,NULL,NULL),(39,'https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg',4779,NULL,'image-ex',649,NULL,NULL,NULL,NULL,NULL,NULL),(40,'https://www.biomechanicseducation.com/wp-content/uploads/2021/12/IMG_2288-300x300.jpg',33064,NULL,'image-ex',900,NULL,NULL,NULL,NULL,NULL,NULL),(41,'https://www.biomechanicseducation.com/wp-content/uploads/2021/05/shutterstock_1311339359-1-300x222.jpg',33064,NULL,'image-ex',900,NULL,NULL,NULL,NULL,NULL,NULL),(42,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1697704519-scaled-1.jpg',25466,25696,'image-in',862,NULL,2560,2560,854535,NULL,NULL),(43,'https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_293547812-scaled.jpg',25466,NULL,'image-ex',862,NULL,NULL,NULL,NULL,NULL,NULL),(44,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_293546465-scaled-1.jpg',25466,25698,'image-in',862,NULL,2560,1920,368908,NULL,NULL),(45,'https://biomechanicseducation.com/wp-content/uploads/2020/09/shutterstock_147943874-scaled-1.jpg',25466,24188,'image-in',862,NULL,2048,2560,264721,NULL,NULL),(46,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_1335929453-scaled-1.jpg',25466,25700,'image-in',862,NULL,2560,1920,237272,NULL,NULL),(47,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_145358134-scaled-1.jpg',25466,25701,'image-in',862,NULL,2560,2560,439374,NULL,NULL),(48,'https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1697704909-scaled.jpg',25466,NULL,'image-ex',862,NULL,NULL,NULL,NULL,NULL,NULL),(49,'https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_293547224-scaled.jpg',25466,NULL,'image-ex',862,NULL,NULL,NULL,NULL,NULL,NULL),(50,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1800822229-scaled-1.jpg',25466,25472,'image-in',862,NULL,2560,2560,701849,NULL,NULL),(51,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_293547815-scaled-1.jpg',25466,25703,'image-in',862,NULL,2560,1920,378233,NULL,NULL),(52,'https://biomechanicseducation.com/wp-content/uploads/2021/01/shutterstock_151422785-scaled-1.jpg',25466,25705,'image-in',862,NULL,2560,1920,326526,NULL,NULL),(53,'https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07008-300x169.jpg',35126,NULL,'image-ex',906,NULL,NULL,NULL,NULL,NULL,NULL),(54,'https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.19.48-256x300.png',35126,NULL,'image-ex',906,NULL,NULL,NULL,NULL,NULL,NULL),(55,'https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07295-181x300.jpg',35126,NULL,'image-ex',906,NULL,NULL,NULL,NULL,NULL,NULL),(56,'https://www.biomechanicseducation.com/wp-content/uploads/2023/02/DSC07278-300x169.jpg',35126,NULL,'image-ex',906,NULL,NULL,NULL,NULL,NULL,NULL),(57,'https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.19.56-277x300.png',35126,NULL,'image-ex',906,NULL,NULL,NULL,NULL,NULL,NULL),(58,'https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.14-257x300.png',35126,NULL,'image-ex',906,NULL,NULL,NULL,NULL,NULL,NULL),(59,'https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.28-269x300.png',35126,NULL,'image-ex',906,NULL,NULL,NULL,NULL,NULL,NULL),(60,'https://www.biomechanicseducation.com/wp-content/uploads/2021/08/GOLF-andrew-lomas-aGlpdQ2Yolk-unsplash-200x300.jpg',35126,NULL,'image-ex',906,NULL,NULL,NULL,NULL,NULL,NULL),(61,'https://www.biomechanicseducation.com/wp-content/uploads/2023/02/Screenshot-2023-02-07-at-15.20.42-278x300.png',35126,NULL,'image-ex',906,NULL,NULL,NULL,NULL,NULL,NULL),(62,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4665-300x102.jpg',31421,31433,'image-in',893,NULL,766,2257,326973,NULL,NULL),(63,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4666-300x159.jpg',31421,31429,'image-in',893,NULL,974,1832,305858,NULL,NULL),(64,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4667-300x137.jpg',31421,31430,'image-in',893,NULL,1005,2208,378821,NULL,NULL),(65,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4098-300x255.jpg',31421,31432,'image-in',893,NULL,1284,1509,331842,NULL,NULL),(66,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4103-300x214.jpg',31421,31428,'image-in',893,NULL,1284,1799,388082,NULL,NULL),(67,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_4675-300x300.jpg',31421,31427,'image-in',893,NULL,1277,1283,310145,NULL,NULL),(68,'https://biomechanicseducation.com/wp-content/uploads/2022/02/IMG_2336-300x176.jpeg',31421,31431,'image-in',893,NULL,1212,2071,555816,NULL,NULL),(69,'https://biomechanicseducation.com/getting-started/biomechanics-coach/',761,39263,'internal',358,940,NULL,NULL,NULL,NULL,NULL),(71,'https://biomechanicseducation.com/courses/online-cpd-courses/',24544,NULL,'internal',856,920,NULL,NULL,NULL,NULL,NULL),(73,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.18.14.png',24544,24547,'image-in',856,NULL,1284,1380,1881439,NULL,NULL),(74,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.50.51-2.png',24544,24645,'image-in',856,NULL,726,842,755272,NULL,NULL),(75,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-20.20.58.png',24544,24550,'image-in',856,NULL,1066,1142,686438,NULL,NULL),(76,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-11-03-at-11.57.12.png',24544,24646,'image-in',856,NULL,636,722,576322,NULL,NULL),(77,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.48.png',24544,24548,'image-in',856,NULL,358,520,99478,NULL,NULL),(78,'https://biomechanicseducation.com/wp-content/uploads/2020/10/Screenshot-2020-10-26-at-19.30.18.png',24544,24549,'image-in',856,NULL,408,866,213403,NULL,NULL),(80,'https://biomechanicseducation.clickfunnels.com/biomechanics-coach-l4-low-back',14386,NULL,'external',776,NULL,NULL,NULL,NULL,NULL,NULL),(81,'https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg',14386,NULL,'image-ex',776,NULL,NULL,NULL,NULL,NULL,NULL),(83,'https://www.biomechanicseducation.com/wp-content/uploads/2018/01/ankleinvsupine.jpg',4106,NULL,'image-ex',647,NULL,NULL,NULL,NULL,NULL,NULL),(84,'https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Picture1-1.png',4106,NULL,'image-ex',647,NULL,NULL,NULL,NULL,NULL,NULL),(85,'https://www.biomechanicseducation.com/wp-content/uploads/2018/01/IMG_3491-1024x768.jpg',4106,NULL,'image-ex',647,NULL,NULL,NULL,NULL,NULL,NULL),(86,'https://www.biomechanicseducation.com/wp-content/uploads/2018/01/23279787_145150382772305_2188784676288593920_n.jpg',4106,NULL,'image-ex',647,NULL,NULL,NULL,NULL,NULL,NULL),(87,'https://www.biomechanicseducation.com/wp-content/uploads/2018/01/Romanian-Deadlifts-Training-The-Other-Half-Of-Your-Leg-header-v2-1024x576.jpg',4106,NULL,'image-ex',647,NULL,NULL,NULL,NULL,NULL,NULL),(88,'https://www.biomechanicseducation.com/wp-content/uploads/2018/01/olympic-lifting-2.jpg',4106,NULL,'image-ex',647,NULL,NULL,NULL,NULL,NULL,NULL),(89,'https://biomechanicseducation.com/courses/',39544,39066,'internal',958,45,NULL,NULL,NULL,NULL,NULL),(90,'https://www.strongfirst.com/about/pavel-tsatsouline/',13299,NULL,'external',771,NULL,NULL,NULL,NULL,NULL,NULL),(91,'https://www.amazon.co.uk/Naked-Warrior-Pavel-Tsatsouline/dp/0938045555/ref=sr_1_1?keywords=Pavel+Tsatsouline&amp;qid=1556470624&amp;s=gateway&amp;sr=8-1',13299,NULL,'external',771,NULL,NULL,NULL,NULL,NULL,NULL),(92,'https://www.amazon.co.uk/Kettlebell-Simple-Sinister-Pavel-Tsatsouline-ebook/dp/B00GF2HP9G/ref=sr_1_2?keywords=Pavel+Tsatsouline&amp;qid=1556470651&amp;s=gateway&amp;sr=8-2',13299,NULL,'external',771,NULL,NULL,NULL,NULL,NULL,NULL),(93,'',13299,NULL,'internal',771,7,NULL,NULL,NULL,NULL,NULL),(95,'mailto:info@biomechanicseducation.com',13299,NULL,'external',771,NULL,NULL,NULL,NULL,NULL,NULL),(96,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-1.jpg',13299,13430,'image-in',771,NULL,725,1558,80021,NULL,NULL),(97,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-2-Biomechanics-Education.jpg',13299,13431,'image-in',771,NULL,632,1600,74987,NULL,NULL),(98,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-3-Biomechanics-Education.jpg',13299,13432,'image-in',771,NULL,898,1600,104210,NULL,NULL),(99,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-4-Biomechanics-Coach.jpg',13299,13434,'image-in',771,NULL,962,1600,109060,NULL,NULL),(100,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Instruction-Biomechanics-Coach.jpg',13299,13435,'image-in',771,NULL,1064,1600,130720,NULL,NULL),(101,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Guide-Biomechanics-Education.jpg',13299,13436,'image-in',771,NULL,1212,1505,122922,NULL,NULL),(102,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Turkish-Get-Up-Biomechanics-Education-Kneeling-lunge-position.jpg',13299,13437,'image-in',771,NULL,1169,1532,114823,NULL,NULL),(103,'https://biomechanicseducation.com/wp-content/uploads/2019/05/Biomechanics-Education-Turkish-Get-Up-Stand.jpg',13299,13438,'image-in',771,NULL,1202,1510,121721,NULL,NULL),(104,'https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg',13299,NULL,'image-ex',771,NULL,NULL,NULL,NULL,NULL,NULL),(105,'mailto:info@biomechanicseducation.com',15602,NULL,'external',797,NULL,NULL,NULL,NULL,NULL,NULL),(106,'https://biomechanicseducation.com/courses/biomechanics/level-4-personal-trainer-course/',15602,40780,'internal',797,1306,NULL,NULL,NULL,NULL,NULL),(107,'https://hersco.com/education-center/foot-biomechanics-root-theory/',15602,NULL,'external',797,NULL,NULL,NULL,NULL,NULL,NULL),(108,'mailto:info@biomechanicseducation.com',15602,NULL,'external',797,NULL,NULL,NULL,NULL,NULL,NULL),(109,'https://www.biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1024x576.jpg',15602,NULL,'image-ex',797,NULL,NULL,NULL,NULL,NULL,NULL),(110,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Pronation-of-the-foot-Foot-Biomechanics-104x300-1.png',15602,40932,'image-in',797,NULL,300,104,28346,NULL,NULL),(111,'https://biomechanicseducation.com/wp-content/uploads/2019/07/Supination-of-the-foot-Foot-Biomechanics-110x300-1.png',15602,40933,'image-in',797,NULL,300,110,33530,NULL,NULL),(112,'https://biomechanicseducation.com/wp-content/uploads/2019/07/The-Gait-Cycle-Foot-Biomechanics-768x487-1.png',15602,40931,'image-in',797,NULL,487,768,159427,NULL,NULL),(113,'https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/',18628,40778,'internal',820,1304,NULL,NULL,NULL,NULL,NULL),(114,'mailto:info@biomechanicseducation.com',18628,NULL,'external',820,NULL,NULL,NULL,NULL,NULL,NULL),(115,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png',18628,10836,'image-in',820,NULL,612,1225,1017135,NULL,NULL),(116,'https://biomechanicseducation.com/find-a-bm-coach/',33066,39493,'internal',901,949,NULL,NULL,NULL,NULL,NULL),(117,'mailto:info@biomechanicseducation',33066,NULL,'external',901,NULL,NULL,NULL,NULL,NULL,NULL),(119,'https://www.biomechanicseducation.com/wp-content/uploads/2016/10/Biomechanics-Coach-CMYK-300dpi-300x100.jpg',33066,NULL,'image-ex',901,NULL,NULL,NULL,NULL,NULL,NULL),(120,'https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6687-300x200.jpg',33066,NULL,'image-ex',901,NULL,NULL,NULL,NULL,NULL,NULL),(121,'https://www.biomechanicseducation.com/wp-content/uploads/2020/09/DSC01482-300x200.jpg',33066,NULL,'image-ex',901,NULL,NULL,NULL,NULL,NULL,NULL),(122,'https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.06.11-300x287.png',33066,NULL,'image-ex',901,NULL,NULL,NULL,NULL,NULL,NULL),(123,'https://www.biomechanicseducation.com/wp-content/uploads/2022/07/Screenshot-2022-07-19-at-15.07.28-300x213.png',33066,NULL,'image-ex',901,NULL,NULL,NULL,NULL,NULL,NULL),(124,'https://www.biomechanicseducation.com/wp-content/uploads/2021/12/DSC03820-300x200.jpg',33066,NULL,'image-ex',901,NULL,NULL,NULL,NULL,NULL,NULL),(125,'https://biomechanicseducation.com/wp-content/uploads/2021/12/fullsizeoutput_52ea-300x200.jpeg',33066,30682,'image-in',901,NULL,1592,2388,536973,NULL,NULL),(126,'https://www.biomechanicseducation.com/wp-content/uploads/2021/06/DSC_6770-300x200.jpg',33066,NULL,'image-ex',901,NULL,NULL,NULL,NULL,NULL,NULL),(127,'https://www.biomechanicseducation.com/wp-content/uploads/2016/01/4signtestexercisepdf_2016.pdf',2283,NULL,'external',538,NULL,NULL,NULL,NULL,NULL,NULL),(128,'https://www.youtube.com/watch?v=_Lkur9ZcNXw&amp;t=6s',2283,NULL,'external',538,NULL,NULL,NULL,NULL,NULL,NULL),(129,'https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.57.16-1024x576.png',2283,NULL,'image-ex',538,NULL,NULL,NULL,NULL,NULL,NULL),(130,'https://www.biomechanicseducation.com/wp-content/uploads/2017/01/Screen-Shot-2017-01-13-at-10.56.55-1024x577.png',2283,NULL,'image-ex',538,NULL,NULL,NULL,NULL,NULL,NULL),(131,'https://www.biomechanicseducation.com/pelvic-hip-biomechanics-part-1-the-muscles-of-the-hip/',25092,NULL,'external',860,NULL,NULL,NULL,NULL,NULL,NULL),(132,'https://www.biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1709130394-scaled.jpg',25092,NULL,'image-ex',860,NULL,NULL,NULL,NULL,NULL,NULL),(134,'https://biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1800824056-scaled-1.jpg',25092,25121,'image-in',860,NULL,2560,2560,702784,NULL,NULL),(135,'https://www.biomechanicseducation.com/wp-content/uploads/2020/11/shutterstock_1544639351-scaled.jpg',25092,NULL,'image-ex',860,NULL,NULL,NULL,NULL,NULL,NULL),(136,'https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641526-scaled.jpg',25092,NULL,'image-ex',860,NULL,NULL,NULL,NULL,NULL,NULL),(137,'https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666655449-scaled.jpg',25092,NULL,'image-ex',860,NULL,NULL,NULL,NULL,NULL,NULL),(138,'https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1666658332-scaled.jpg',25092,NULL,'image-ex',860,NULL,NULL,NULL,NULL,NULL,NULL),(139,'https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_1544641502-scaled.jpg',25092,NULL,'image-ex',860,NULL,NULL,NULL,NULL,NULL,NULL),(140,'https://www.biomechanicseducation.com/wp-content/uploads/2020/12/shutterstock_303082082-scaled.jpg',25092,NULL,'image-ex',860,NULL,NULL,NULL,NULL,NULL,NULL),(141,'https://biomechanicseducation.com/courses/cpd-courses/the-foot-posture-index/',27321,40282,'internal',868,1294,NULL,NULL,NULL,NULL,NULL),(142,'https://biomechanicseducation.com/wp-content/uploads/2021/04/Gastroc-scaled-1.jpg',27321,27322,'image-in',868,NULL,1440,2560,194595,NULL,NULL),(143,'https://biomechanicseducation.com/wp-content/uploads/2021/04/soleus-scaled-1.jpg',27321,27323,'image-in',868,NULL,2560,1920,208796,NULL,NULL),(144,'https://biomechanicseducation.com/wp-content/uploads/2021/04/plantaris-1-1.png',27321,27324,'image-in',868,NULL,742,528,267357,NULL,NULL),(145,'https://biomechanicseducation.com/wp-content/uploads/2021/04/Fibularis-longus-scaled-1.jpg',27321,27325,'image-in',868,NULL,2560,1920,286166,NULL,NULL),(146,'https://biomechanicseducation.com/wp-content/uploads/2021/04/fibularis-brevis-scaled-1.jpg',27321,27326,'image-in',868,NULL,2560,1920,265942,NULL,NULL),(147,'https://biomechanicseducation.com/wp-content/uploads/2021/04/tib-ant-scaled-1.jpg',27321,27327,'image-in',868,NULL,2560,1920,396484,NULL,NULL),(148,'https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-digitorum-longus-scaled-1.jpg',27321,27328,'image-in',868,NULL,2560,2560,321654,NULL,NULL),(149,'https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-hallucis-longus-scaled-1.jpg',27321,27329,'image-in',868,NULL,2560,1536,150014,NULL,NULL),(150,'https://biomechanicseducation.com/wp-content/uploads/2021/04/tib-post-scaled-1.jpg',27321,27330,'image-in',868,NULL,2560,2560,349969,NULL,NULL),(151,'https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-longus-scaled-1.jpg',27321,27331,'image-in',868,NULL,2560,1920,167620,NULL,NULL),(152,'https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-hallucis-longus-scaled-1.jpg',27321,27332,'image-in',868,NULL,2560,2560,290088,NULL,NULL),(153,'https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-hallucis-brevis-scaled-1.jpg',27321,27333,'image-in',868,NULL,1920,2560,218137,NULL,NULL),(154,'https://biomechanicseducation.com/wp-content/uploads/2021/04/extensor-digitorum-brevis-scaled-1.jpg',27321,27334,'image-in',868,NULL,1920,2560,137476,NULL,NULL),(155,'https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-digitorum-brevis-scaled-1.jpg',27321,27335,'image-in',868,NULL,1920,2560,302455,NULL,NULL),(156,'https://biomechanicseducation.com/wp-content/uploads/2021/04/flexor-hallucis-brevis-scaled-1.jpg',27321,27336,'image-in',868,NULL,1920,2560,287124,NULL,NULL),(157,'https://bmcsportsscimedrehabil.biomedcentral.com/track/pdf/10.1186/s13102-018-0103-7',16935,NULL,'external',803,NULL,NULL,NULL,NULL,NULL,NULL),(158,'https://www.strongerbyscience.com/squat-stance-width/amp/',16935,NULL,'external',803,NULL,NULL,NULL,NULL,NULL,NULL),(159,'https://www.ncbi.nlm.nih.gov/pubmed/19130646?_ga=2.106178947.1285553477.1717682013-558813559.1717682013',16935,NULL,'external',803,NULL,NULL,NULL,NULL,NULL,NULL),(160,'https://www.ncbi.nlm.nih.gov/pubmed/11528346?_ga=2.106178947.1285553477.1717682013-558813559.1717682013',16935,NULL,'external',803,NULL,NULL,NULL,NULL,NULL,NULL),(161,'https://www.ncbi.nlm.nih.gov/pubmed/10188748?_ga=2.106178947.1285553477.1717682013-558813559.1717682013',16935,NULL,'external',803,NULL,NULL,NULL,NULL,NULL,NULL),(162,'https://www.strongerbyscience.com/emg-amplitude-tell-us-muscle-hypertrophy/?_ga=2.106178947.1285553477.1717682013-558813559.1717682013',16935,NULL,'external',803,NULL,NULL,NULL,NULL,NULL,NULL),(163,'https://www.ncbi.nlm.nih.gov/pubmed/11404665',16935,NULL,'external',803,NULL,NULL,NULL,NULL,NULL,NULL),(164,'https://www.strongerbyscience.com/squats-adductors/',16935,NULL,'external',803,NULL,NULL,NULL,NULL,NULL,NULL),(165,'https://biomechanicseducation.com/courses/',16935,39066,'internal',803,45,NULL,NULL,NULL,NULL,NULL),(166,'https://www.biomechanicseducation.com/wp-content/uploads/2018/06/Project-Squat-Part-2-How-To-Test-For-And-Improve-Pelvic-Function-300x150.png',16935,NULL,'image-ex',803,NULL,NULL,NULL,NULL,NULL,NULL),(167,'https://biomechanicseducation.com/wp-content/uploads/2019/01/Always-Always-Start-With-Why.png',16935,10836,'image-in',803,NULL,612,1225,1017135,NULL,NULL),(168,'https://www.futurefit.co.uk/personal-training-cpd-courses/biomechanics-coach-course/?_ga=2.4785264.2129125191.1717683341-768987886.1717683341#row-8880-2',17661,NULL,'external',807,NULL,NULL,NULL,NULL,NULL,NULL),(169,'mailto:info@biomechanicseducation.com',17661,NULL,'external',807,NULL,NULL,NULL,NULL,NULL,NULL),(170,'https://biomechanicseducation.com/wp-content/uploads/2018/07/Biomechanics-Coaching-courses-UK-1-scaled.jpg',17661,7922,'image-in',807,NULL,1440,2560,423263,NULL,NULL),(171,'https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/',14386,40778,'internal',776,1304,NULL,NULL,NULL,NULL,NULL),(172,'https://biomechanicseducation.com/courses/cpd-courses/running-biomechanics-workshop/',24544,40781,'internal',856,1307,NULL,NULL,NULL,NULL,NULL),(173,'https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/',24544,40778,'internal',856,1304,NULL,NULL,NULL,NULL,NULL),(174,'https://biomechanicseducation.com/courses/cpd-courses/imovefreely/',4106,40277,'internal',647,1289,NULL,NULL,NULL,NULL,NULL),(175,'https://biomechanicseducation.com/courses/biomechanics/biomechanics-coach-course/',13299,40778,'internal',771,1304,NULL,NULL,NULL,NULL,NULL),(176,'https://www.imovefreely.com/',42003,NULL,'external',1327,NULL,NULL,NULL,NULL,NULL,NULL),(177,'https://www.imovefreely.com/',42003,NULL,'external',1327,NULL,NULL,NULL,NULL,NULL,NULL),(178,'https://www.imovefreely.com/',42003,NULL,'external',1327,NULL,NULL,NULL,NULL,NULL,NULL),(179,'https://www.imovefreely.com/',42003,NULL,'external',1327,NULL,NULL,NULL,NULL,NULL,NULL),(180,'https://www.researchgate.net/publication/377459155_Pathways_linking_physical_and_mental_health_The_role_of_brain_structure_and_environment',42003,NULL,'external',1327,NULL,NULL,NULL,NULL,NULL,NULL),(181,'https://pubmed.ncbi.nlm.nih.gov/38384331/',42003,NULL,'external',1327,NULL,NULL,NULL,NULL,NULL,NULL),(182,'https://pubmed.ncbi.nlm.nih.gov/20141301/',42003,NULL,'external',1327,NULL,NULL,NULL,NULL,NULL,NULL),(183,'https://fingertips.phe.org.uk/profile/physical-activity/data',42003,NULL,'external',1327,NULL,NULL,NULL,NULL,NULL,NULL),(184,'https://psychiatryonline.org/doi/full/10.1176/appi.ajp-rj.2018.130401',42003,NULL,'external',1327,NULL,NULL,NULL,NULL,NULL,NULL),(185,'https://pubmed.ncbi.nlm.nih.gov/20004298/',42003,NULL,'external',1327,NULL,NULL,NULL,NULL,NULL,NULL),(186,'https://bjsm.bmj.com/content/early/2023/03/02/bjsports-2022-106195',42003,NULL,'external',1327,NULL,NULL,NULL,NULL,NULL,NULL),(187,'https://biomechanicseducation.com/wp-content/uploads/2025/04/System-of-Exercise-Biomechanics-Education-2025.jpg',42986,43027,'image-in',1346,NULL,848,1200,68802,NULL,NULL);
/*!40000 ALTER TABLE `6m7_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2025-07-04 10:02:22
